From 0eaa74887ff332059e70f117ba08923e8612cb8c Mon Sep 17 00:00:00 2001 From: i0712326 Date: Mon, 23 Mar 2015 11:35:28 +0700 Subject: [PATCH] update for spring batch module --- .../com.springsource.sts.config.flow.prefs | 5 +- BcnxWebService/.springBeans | 8 +- BcnxWebService/batch/batch_configure.xml | 103 +- BcnxWebService/configure/datasource.xml | 2 +- .../configure/settleBcnx_context.xml | 19 + BcnxWebService/sample/router.audit.150320 | 1056418 ++++++++++++++ BcnxWebService/sample/verify.log.150318 | 15687 + BcnxWebService/sample/verify.log.150320 | 17583 + .../service/auditor/BcnxSettleAuditorImp.java | 25 +- .../app/service/auditor/BcnxTxnAuditor.java | 6 +- .../service/auditor/BncxTxnAuditorImp.java | 22 +- .../app/service/batch/BatchQuartzJobBean.java | 39 + .../web/app/service/batch/BatchTemplate.java | 25 + ...leanUpTasklet.java => BcnxFileDelete.java} | 16 +- .../web/app/service/batch/BcnxFileFetch.java | 36 + .../app/service/batch/BcnxSettleCleanUp.java | 17 - .../service/batch/BcnxSettleFetchItem.java | 17 - .../service/batch/BcnxSettleProcessItem.java | 15 - .../web/app/service/batch/BcnxSettleRead.java | 43 + .../service/batch/BcnxSettleReaderItem.java | 38 - .../service/batch/BcnxSettleWriteItem.java | 17 - .../app/service/batch/BcnxTxnFetchItem.java | 38 - .../app/service/batch/BcnxTxnProcessItem.java | 36 - .../web/app/service/batch/BcnxTxnRead.java | 35 + .../app/service/batch/BcnxTxnReaderItem.java | 141 - .../app/service/batch/BcnxTxnWirteItem.java | 38 - ...leanUpItem.java => NetSettlementTask.java} | 19 +- .../web/app/service/task/BatchJobTxn.java | 4 +- .../web/app/service/task/FileTransfer.java | 1 + .../web/app/service/task/FileTransferImp.java | 4 + .../{batch => test}/BatchApplication.java | 2 +- .../test/BcnxSettleAuditorImpTest.java | 4 +- .../service/test/BncxTxnAuditorImpTest.java | 3 +- .../app/service/user/RepresentController.java | 2 - BcnxWebService/webapp/META-INF/context.xml | 2 +- .../webapp/WEB-INF/applicationContext.xml | 3 +- BcnxWebService/webapp/WEB-INF/datasource.xml | 20 +- .../webapp/WEB-INF/quartz/batchJobSettle.xml | 19 - .../webapp/WEB-INF/quartz/batchJobTxn.xml | 19 - .../webapp/WEB-INF/quartz/batchReportGen.xml | 19 - .../webapp/WEB-INF/quartz/batchUpdateDisp.xml | 19 - .../webapp/WEB-INF/quartz/batch_context.xml | 48 - .../WEB-INF/quartz/batch_job_context.xml | 109 + .../WEB-INF/quartz/batch_job_scheduler.xml | 43 + .../webapp/WEB-INF/quartz/batch_scheduler.xml | 34 - .../webapp/WEB-INF/settleBcnx_context.xml | 19 + 46 files changed, 1090216 insertions(+), 606 deletions(-) create mode 100644 BcnxWebService/sample/router.audit.150320 create mode 100644 BcnxWebService/sample/verify.log.150318 create mode 100644 BcnxWebService/sample/verify.log.150320 create mode 100644 BcnxWebService/src/com/bcnx/web/app/service/batch/BatchQuartzJobBean.java create mode 100644 BcnxWebService/src/com/bcnx/web/app/service/batch/BatchTemplate.java rename BcnxWebService/src/com/bcnx/web/app/service/batch/{CleanUpTasklet.java => BcnxFileDelete.java} (55%) create mode 100644 BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxFileFetch.java delete mode 100644 BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleCleanUp.java delete mode 100644 BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleFetchItem.java delete mode 100644 BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleProcessItem.java create mode 100644 BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleRead.java delete mode 100644 BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleReaderItem.java delete mode 100644 BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleWriteItem.java delete mode 100644 BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnFetchItem.java delete mode 100644 BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnProcessItem.java create mode 100644 BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnRead.java delete mode 100644 BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnReaderItem.java delete mode 100644 BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnWirteItem.java rename BcnxWebService/src/com/bcnx/web/app/service/batch/{BcnxTxnCleanUpItem.java => NetSettlementTask.java} (54%) rename BcnxWebService/src/com/bcnx/web/app/service/{batch => test}/BatchApplication.java (92%) delete mode 100644 BcnxWebService/webapp/WEB-INF/quartz/batchJobSettle.xml delete mode 100644 BcnxWebService/webapp/WEB-INF/quartz/batchJobTxn.xml delete mode 100644 BcnxWebService/webapp/WEB-INF/quartz/batchReportGen.xml delete mode 100644 BcnxWebService/webapp/WEB-INF/quartz/batchUpdateDisp.xml delete mode 100644 BcnxWebService/webapp/WEB-INF/quartz/batch_context.xml create mode 100644 BcnxWebService/webapp/WEB-INF/quartz/batch_job_context.xml create mode 100644 BcnxWebService/webapp/WEB-INF/quartz/batch_job_scheduler.xml delete mode 100644 BcnxWebService/webapp/WEB-INF/quartz/batch_scheduler.xml diff --git a/BcnxWebService/.settings/com.springsource.sts.config.flow.prefs b/BcnxWebService/.settings/com.springsource.sts.config.flow.prefs index af42d2f..597cf1d 100644 --- a/BcnxWebService/.settings/com.springsource.sts.config.flow.prefs +++ b/BcnxWebService/.settings/com.springsource.sts.config.flow.prefs @@ -1,2 +1,5 @@ -//com.springsource.sts.config.flow.coordinates\:http\://www.springframework.org/schema/batch\:/BcnxWebService/batch/batch_configure.xml=\r\n\r\n\r\n\r\n\r\n\r\n +//com.springsource.sts.config.flow.coordinates\:http\://www.springframework.org/schema/batch\:/BcnxWebService/batch/batchContext.xml=\r\n\r\n\r\n\r\n\r\n\r\n +//com.springsource.sts.config.flow.coordinates\:http\://www.springframework.org/schema/batch\:/BcnxWebService/batch/batch_configure.xml=\r\n\r\n\r\n\r\n\r\n\r\n +//com.springsource.sts.config.flow.coordinates\:http\://www.springframework.org/schema/batch\:/BcnxWebService/webapp/WEB-INF/quartz/batch_context.xml=\r\n +//com.springsource.sts.config.flow.coordinates\:http\://www.springframework.org/schema/batch\:/BcnxWebService/webapp/WEB-INF/quartz/batch_job_context.xml=\r\n\r\n\r\n\r\n\r\n\r\n eclipse.preferences.version=1 diff --git a/BcnxWebService/.springBeans b/BcnxWebService/.springBeans index 5594ff0..8776e37 100644 --- a/BcnxWebService/.springBeans +++ b/BcnxWebService/.springBeans @@ -22,13 +22,9 @@ webapp/WEB-INF/card_type_context.xml webapp/WEB-INF/reasoncode_context.xml configure/cardProc_context.xml - webapp/WEB-INF/quartz/batchJobTxn.xml - webapp/WEB-INF/quartz/batch_scheduler.xml - webapp/WEB-INF/quartz/batchJobSettle.xml - webapp/WEB-INF/quartz/batch_context.xml - webapp/WEB-INF/quartz/batchReportGen.xml - webapp/WEB-INF/quartz/batchUpdateDisp.xml batch/batch_configure.xml + webapp/WEB-INF/quartz/batch_job_context.xml + webapp/WEB-INF/quartz/batch_job_scheduler.xml diff --git a/BcnxWebService/batch/batch_configure.xml b/BcnxWebService/batch/batch_configure.xml index 045c93c..af31a0e 100644 --- a/BcnxWebService/batch/batch_configure.xml +++ b/BcnxWebService/batch/batch_configure.xml @@ -17,34 +17,35 @@ - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -67,4 +68,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/BcnxWebService/configure/datasource.xml b/BcnxWebService/configure/datasource.xml index 2d4b0b2..8b975d2 100644 --- a/BcnxWebService/configure/datasource.xml +++ b/BcnxWebService/configure/datasource.xml @@ -11,7 +11,7 @@ - + diff --git a/BcnxWebService/configure/settleBcnx_context.xml b/BcnxWebService/configure/settleBcnx_context.xml index 430aa34..77cd52f 100644 --- a/BcnxWebService/configure/settleBcnx_context.xml +++ b/BcnxWebService/configure/settleBcnx_context.xml @@ -7,6 +7,25 @@ http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-4.1.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.1.xsd"> + + + + + + + + + + + + + + + + + + + diff --git a/BcnxWebService/sample/router.audit.150320 b/BcnxWebService/sample/router.audit.150320 new file mode 100644 index 0000000..ad42e55 --- /dev/null +++ b/BcnxWebService/sample/router.audit.150320 @@ -0,0 +1,1056418 @@ +00:00:06 ============================================================================ +00:00:06 Slot Id : <294> +00:00:06 Transaction Type : REQUEST +00:00:06 Received From : +00:00:06 ============================================================================ +00:00:06 FNo. Len. Field Value +00:00:06 ============================================================================ +00:00:06 [ 1] [ 4] [0800] +00:00:06 [ 7] [ 10] [0319045914] +00:00:06 [ 11] [ 6] [153018] +00:00:06 [ 70] [ 3] [301] +00:00:06 ============================================================================ +00:00:06 + + +waiting on router queue for slot.... +00:00:06 Sending to : +00:00:06 ============================================================================ +00:00:06 ============================================================================ +00:00:06 Slot Id : <294> +00:00:06 Transaction Type : RESPONSE +00:00:06 Received From : +00:00:06 ============================================================================ +00:00:06 FNo. Len. Field Value +00:00:06 ============================================================================ +00:00:06 [ 1] [ 4] [0810] +00:00:06 [ 7] [ 10] [0319045914] +00:00:06 [ 11] [ 6] [153018] +00:00:06 [ 39] [ 2] [00] +00:00:06 [ 70] [ 3] [301] +00:00:06 ============================================================================ +00:00:06 Calculate Source COMM Id = 2 +00:00:06 ============================================================================ +00:00:06 + + +waiting on router queue for slot.... +00:00:18 ============================================================================ +00:00:18 Slot Id : <257> +00:00:18 Transaction Type : REQUEST +00:00:18 Received From : +00:00:18 ============================================================================ +00:00:18 FNo. Len. Field Value +00:00:18 ============================================================================ +00:00:18 [ 1] [ 4] [0800] +00:00:18 [ 7] [ 10] [0319045926] +00:00:18 [ 11] [ 6] [153019] +00:00:18 [ 70] [ 3] [301] +00:00:18 ============================================================================ +00:00:18 + + +waiting on router queue for slot.... +00:00:18 Sending to : +00:00:18 ============================================================================ +00:00:18 ============================================================================ +00:00:18 Slot Id : <257> +00:00:18 Transaction Type : RESPONSE +00:00:18 Received From : +00:00:18 ============================================================================ +00:00:18 FNo. Len. Field Value +00:00:18 ============================================================================ +00:00:18 [ 1] [ 4] [0810] +00:00:18 [ 7] [ 10] [0319045926] +00:00:18 [ 11] [ 6] [153019] +00:00:18 [ 39] [ 2] [00] +00:00:18 [ 70] [ 3] [301] +00:00:18 ============================================================================ +00:00:18 Calculate Source COMM Id = 2 +00:00:18 ============================================================================ +00:00:18 + + +waiting on router queue for slot.... +00:00:34 ============================================================================ +00:00:34 Slot Id : <303> +00:00:34 Transaction Type : REQUEST +00:00:34 Received From : +00:00:34 ============================================================================ +00:00:34 FNo. Len. Field Value +00:00:34 ============================================================================ +00:00:34 [ 1] [ 4] [0800] +00:00:34 [ 7] [ 10] [0319045941] +00:00:34 [ 11] [ 6] [153020] +00:00:34 [ 70] [ 3] [301] +00:00:34 ============================================================================ +00:00:34 + + +waiting on router queue for slot.... +00:00:34 Sending to : +00:00:34 ============================================================================ +00:00:34 ============================================================================ +00:00:34 Slot Id : <303> +00:00:34 Transaction Type : RESPONSE +00:00:34 Received From : +00:00:34 ============================================================================ +00:00:34 FNo. Len. Field Value +00:00:34 ============================================================================ +00:00:34 [ 1] [ 4] [0810] +00:00:34 [ 7] [ 10] [0319045941] +00:00:34 [ 11] [ 6] [153020] +00:00:34 [ 39] [ 2] [00] +00:00:34 [ 70] [ 3] [301] +00:00:34 ============================================================================ +00:00:34 Calculate Source COMM Id = 2 +00:00:34 ============================================================================ +00:00:34 + + +waiting on router queue for slot.... +00:00:39 ============================================================================ +00:00:39 Slot Id : <299> +00:00:39 Transaction Type : REQUEST +00:00:39 Received From : +00:00:39 ============================================================================ +00:00:39 FNo. Len. Field Value +00:00:39 ============================================================================ +00:00:39 [ 1] [ 4] [0800] +00:00:39 [ 2] [ 5] [02531] +00:00:39 [ 3] [ 6] [900000] +00:00:39 [ 7] [ 10] [0319170039] +00:00:39 [ 11] [ 6] [806413] +00:00:39 [ 15] [ 10] [0319170039] +00:00:39 [ 37] [ 11] [57900806413] +00:00:39 [ 70] [ 3] [162] +00:00:39 ============================================================================ +00:00:39 + + +waiting on router queue for slot.... +00:00:39 Sending to : +00:00:39 ============================================================================ +00:00:39 ============================================================================ +00:00:39 Slot Id : <299> +00:00:39 Transaction Type : RESPONSE +00:00:39 Received From : +00:00:39 ============================================================================ +00:00:39 FNo. Len. Field Value +00:00:39 ============================================================================ +00:00:39 [ 0] [ 4] [0810] +00:00:39 [ 1] [ 4] [0810] +00:00:39 [ 2] [ 5] [02531] +00:00:39 [ 3] [ 6] [900000] +00:00:39 [ 7] [ 10] [0319170039] +00:00:39 [ 11] [ 6] [806413] +00:00:39 [ 15] [ 10] [0319170039] +00:00:39 [ 37] [ 11] [57900806413] +00:00:39 [ 39] [ 2] [91] +00:00:39 [ 70] [ 3] [162] +00:00:39 ============================================================================ +00:00:39 Successfully send the slot [299] To REVERSAL Process +00:00:39 + + +waiting on router queue for slot.... +00:00:44 ============================================================================ +00:00:44 Slot Id : <302> +00:00:44 Transaction Type : REQUEST +00:00:44 Received From : +00:00:44 ============================================================================ +00:00:44 FNo. Len. Field Value +00:00:44 ============================================================================ +00:00:44 [ 1] [ 4] [0800] +00:00:44 [ 7] [ 10] [0319045951] +00:00:44 [ 11] [ 6] [153021] +00:00:44 [ 70] [ 3] [301] +00:00:44 ============================================================================ +00:00:44 + + +waiting on router queue for slot.... +00:00:44 Sending to : +00:00:44 ============================================================================ +00:00:44 ============================================================================ +00:00:44 Slot Id : <302> +00:00:44 Transaction Type : RESPONSE +00:00:44 Received From : +00:00:44 ============================================================================ +00:00:44 FNo. Len. Field Value +00:00:44 ============================================================================ +00:00:44 [ 1] [ 4] [0810] +00:00:44 [ 7] [ 10] [0319045951] +00:00:44 [ 11] [ 6] [153021] +00:00:44 [ 39] [ 2] [00] +00:00:44 [ 70] [ 3] [301] +00:00:44 ============================================================================ +00:00:44 Calculate Source COMM Id = 2 +00:00:44 ============================================================================ +00:00:44 + + +waiting on router queue for slot.... +00:00:53 ============================================================================ +00:00:53 Slot Id : <292> +00:00:53 Transaction Type : REQUEST +00:00:53 Received From : +00:00:53 ============================================================================ +00:00:53 FNo. Len. Field Value +00:00:53 ============================================================================ +00:00:53 [ 1] [ 4] [0800] +00:00:53 [ 7] [ 10] [0320071240] +00:00:53 [ 11] [ 6] [001240] +00:00:53 [ 37] [ 12] [57900001240] +00:00:53 [ 70] [ 3] [301] +00:00:53 ============================================================================ +00:00:53 + + +waiting on router queue for slot.... +00:00:53 Sending to : +00:00:53 ============================================================================ +00:00:53 ============================================================================ +00:00:53 Slot Id : <292> +00:00:53 Transaction Type : RESPONSE +00:00:53 Received From : +00:00:53 ============================================================================ +00:00:53 FNo. Len. Field Value +00:00:53 ============================================================================ +00:00:53 [ 1] [ 4] [0810] +00:00:53 [ 7] [ 10] [0320071240] +00:00:53 [ 11] [ 6] [001240] +00:00:53 [ 37] [ 12] [579000012400] +00:00:53 [ 39] [ 2] [00] +00:00:53 [ 70] [ 3] [810] +00:00:53 ============================================================================ +00:00:53 Calculate Source COMM Id = 6 +00:00:53 ============================================================================ +00:00:53 + + +waiting on router queue for slot.... +00:01:01 ============================================================================ +00:01:01 Slot Id : <300> +00:01:01 Transaction Type : REQUEST +00:01:01 Received From : +00:01:01 ============================================================================ +00:01:01 FNo. Len. Field Value +00:01:01 ============================================================================ +00:01:01 [ 1] [ 4] [0800] +00:01:01 [ 7] [ 10] [0319050006] +00:01:01 [ 11] [ 6] [153022] +00:01:01 [ 70] [ 3] [301] +00:01:01 ============================================================================ +00:01:01 + + +waiting on router queue for slot.... +00:01:01 Sending to : +00:01:01 ============================================================================ +00:01:01 ============================================================================ +00:01:01 Slot Id : <300> +00:01:01 Transaction Type : RESPONSE +00:01:01 Received From : +00:01:01 ============================================================================ +00:01:01 FNo. Len. Field Value +00:01:01 ============================================================================ +00:01:01 [ 1] [ 4] [0810] +00:01:01 [ 7] [ 10] [0319050006] +00:01:01 [ 11] [ 6] [153022] +00:01:01 [ 39] [ 2] [00] +00:01:01 [ 70] [ 3] [301] +00:01:01 ============================================================================ +00:01:01 Calculate Source COMM Id = 2 +00:01:01 ============================================================================ +00:01:01 + + +waiting on router queue for slot.... +00:01:15 ============================================================================ +00:01:15 Slot Id : <281> +00:01:15 Transaction Type : REQUEST +00:01:15 Received From : +00:01:15 ============================================================================ +00:01:15 FNo. Len. Field Value +00:01:15 ============================================================================ +00:01:15 [ 1] [ 4] [0800] +00:01:15 [ 7] [ 10] [0319050022] +00:01:15 [ 11] [ 6] [153023] +00:01:15 [ 70] [ 3] [301] +00:01:15 ============================================================================ +00:01:15 + + +waiting on router queue for slot.... +00:01:15 Sending to : +00:01:15 ============================================================================ +00:01:15 ============================================================================ +00:01:15 Slot Id : <281> +00:01:15 Transaction Type : RESPONSE +00:01:15 Received From : +00:01:15 ============================================================================ +00:01:15 FNo. Len. Field Value +00:01:15 ============================================================================ +00:01:15 [ 1] [ 4] [0810] +00:01:15 [ 7] [ 10] [0319050022] +00:01:15 [ 11] [ 6] [153023] +00:01:15 [ 39] [ 2] [00] +00:01:15 [ 70] [ 3] [301] +00:01:15 ============================================================================ +00:01:15 Calculate Source COMM Id = 2 +00:01:15 ============================================================================ +00:01:15 + + +waiting on router queue for slot.... +00:01:21 ============================================================================ +00:01:21 Slot Id : <295> +00:01:21 Transaction Type : REQUEST +00:01:21 Received From : +00:01:21 ============================================================================ +00:01:21 FNo. Len. Field Value +00:01:21 ============================================================================ +00:01:21 [ 1] [ 4] [0800] +00:01:21 [ 7] [ 10] [0319165912] +00:01:21 [ 11] [ 6] [035787] +00:01:21 [ 37] [ 12] [57823035787] +00:01:21 [ 70] [ 3] [301] +00:01:21 ============================================================================ +00:01:21 + + +waiting on router queue for slot.... +00:01:21 Sending to : +00:01:21 ============================================================================ +00:01:21 ============================================================================ +00:01:21 Slot Id : <295> +00:01:21 Transaction Type : RESPONSE +00:01:21 Received From : +00:01:21 ============================================================================ +00:01:21 FNo. Len. Field Value +00:01:21 ============================================================================ +00:01:21 [ 1] [ 4] [0810] +00:01:21 [ 7] [ 10] [0319165912] +00:01:21 [ 11] [ 6] [035787] +00:01:21 [ 37] [ 12] [578230357870] +00:01:21 [ 39] [ 2] [00] +00:01:21 [ 70] [ 3] [810] +00:01:21 ============================================================================ +00:01:21 Calculate Source COMM Id = 4 +00:01:21 ============================================================================ +00:01:21 + + +waiting on router queue for slot.... +00:01:26 ============================================================================ +00:01:26 Slot Id : <308> +00:01:26 Transaction Type : REQUEST +00:01:26 Received From : +00:01:26 ============================================================================ +00:01:26 FNo. Len. Field Value +00:01:26 ============================================================================ +00:01:26 [ 1] [ 4] [0800] +00:01:26 [ 7] [ 10] [0319050033] +00:01:26 [ 11] [ 6] [153024] +00:01:26 [ 70] [ 3] [301] +00:01:26 ============================================================================ +00:01:26 + + +waiting on router queue for slot.... +00:01:26 Sending to : +00:01:26 ============================================================================ +00:01:26 ============================================================================ +00:01:26 Slot Id : <308> +00:01:26 Transaction Type : RESPONSE +00:01:26 Received From : +00:01:26 ============================================================================ +00:01:26 FNo. Len. Field Value +00:01:26 ============================================================================ +00:01:26 [ 1] [ 4] [0810] +00:01:26 [ 7] [ 10] [0319050033] +00:01:26 [ 11] [ 6] [153024] +00:01:26 [ 39] [ 2] [00] +00:01:26 [ 70] [ 3] [301] +00:01:26 ============================================================================ +00:01:26 Calculate Source COMM Id = 2 +00:01:26 ============================================================================ +00:01:26 + + +waiting on router queue for slot.... +00:01:37 ============================================================================ +00:01:37 Slot Id : <262> +00:01:37 Transaction Type : REQUEST +00:01:37 Received From : +00:01:37 ============================================================================ +00:01:37 FNo. Len. Field Value +00:01:37 ============================================================================ +00:01:37 [ 1] [ 4] [0800] +00:01:37 [ 7] [ 10] [0319050044] +00:01:37 [ 11] [ 6] [153025] +00:01:37 [ 70] [ 3] [301] +00:01:37 ============================================================================ +00:01:37 + + +waiting on router queue for slot.... +00:01:37 Sending to : +00:01:37 ============================================================================ +00:01:37 ============================================================================ +00:01:37 Slot Id : <262> +00:01:37 Transaction Type : RESPONSE +00:01:37 Received From : +00:01:37 ============================================================================ +00:01:37 FNo. Len. Field Value +00:01:37 ============================================================================ +00:01:37 [ 1] [ 4] [0810] +00:01:37 [ 7] [ 10] [0319050044] +00:01:37 [ 11] [ 6] [153025] +00:01:37 [ 39] [ 2] [00] +00:01:37 [ 70] [ 3] [301] +00:01:37 ============================================================================ +00:01:37 Calculate Source COMM Id = 2 +00:01:37 ============================================================================ +00:01:37 + + +waiting on router queue for slot.... +00:01:48 ============================================================================ +00:01:48 Slot Id : <296> +00:01:48 Transaction Type : REQUEST +00:01:48 Received From : +00:01:48 ============================================================================ +00:01:48 FNo. Len. Field Value +00:01:48 ============================================================================ +00:01:48 [ 1] [ 4] [0800] +00:01:48 [ 7] [ 10] [0319050055] +00:01:48 [ 11] [ 6] [153026] +00:01:48 [ 70] [ 3] [301] +00:01:48 ============================================================================ +00:01:48 + + +waiting on router queue for slot.... +00:01:48 Sending to : +00:01:48 ============================================================================ +00:01:48 ============================================================================ +00:01:48 Slot Id : <296> +00:01:48 Transaction Type : RESPONSE +00:01:48 Received From : +00:01:48 ============================================================================ +00:01:48 FNo. Len. Field Value +00:01:48 ============================================================================ +00:01:48 [ 1] [ 4] [0810] +00:01:48 [ 7] [ 10] [0319050055] +00:01:48 [ 11] [ 6] [153026] +00:01:48 [ 39] [ 2] [00] +00:01:48 [ 70] [ 3] [301] +00:01:48 ============================================================================ +00:01:48 Calculate Source COMM Id = 2 +00:01:48 ============================================================================ +00:01:48 + + +waiting on router queue for slot.... +00:01:58 ============================================================================ +00:01:58 Slot Id : <283> +00:01:58 Transaction Type : REQUEST +00:01:58 Received From : +00:01:58 ============================================================================ +00:01:58 FNo. Len. Field Value +00:01:58 ============================================================================ +00:01:58 [ 1] [ 4] [0800] +00:01:58 [ 7] [ 10] [0320071345] +00:01:58 [ 11] [ 6] [001345] +00:01:58 [ 37] [ 12] [57900001345] +00:01:58 [ 70] [ 3] [301] +00:01:58 ============================================================================ +00:01:58 + + +waiting on router queue for slot.... +00:01:58 Sending to : +00:01:58 ============================================================================ +00:01:58 ============================================================================ +00:01:58 Slot Id : <283> +00:01:58 Transaction Type : RESPONSE +00:01:58 Received From : +00:01:58 ============================================================================ +00:01:58 FNo. Len. Field Value +00:01:58 ============================================================================ +00:01:58 [ 1] [ 4] [0810] +00:01:58 [ 7] [ 10] [0320071345] +00:01:58 [ 11] [ 6] [001345] +00:01:58 [ 37] [ 12] [579000013450] +00:01:58 [ 39] [ 2] [00] +00:01:58 [ 70] [ 3] [810] +00:01:58 ============================================================================ +00:01:58 Calculate Source COMM Id = 6 +00:01:58 ============================================================================ +00:01:58 + + +waiting on router queue for slot.... +00:01:59 ============================================================================ +00:01:59 Slot Id : <311> +00:01:59 Transaction Type : REQUEST +00:01:59 Received From : +00:01:59 ============================================================================ +00:01:59 FNo. Len. Field Value +00:01:59 ============================================================================ +00:01:59 [ 1] [ 4] [0800] +00:01:59 [ 7] [ 10] [0319050106] +00:01:59 [ 11] [ 6] [153027] +00:01:59 [ 70] [ 3] [301] +00:01:59 ============================================================================ +00:01:59 + + +waiting on router queue for slot.... +00:01:59 Sending to : +00:01:59 ============================================================================ +00:01:59 ============================================================================ +00:01:59 Slot Id : <311> +00:01:59 Transaction Type : RESPONSE +00:01:59 Received From : +00:01:59 ============================================================================ +00:01:59 FNo. Len. Field Value +00:01:59 ============================================================================ +00:01:59 [ 1] [ 4] [0810] +00:01:59 [ 7] [ 10] [0319050106] +00:01:59 [ 11] [ 6] [153027] +00:01:59 [ 39] [ 2] [00] +00:01:59 [ 70] [ 3] [301] +00:01:59 ============================================================================ +00:01:59 Calculate Source COMM Id = 2 +00:01:59 ============================================================================ +00:01:59 + + +waiting on router queue for slot.... +00:02:14 ============================================================================ +00:02:14 Slot Id : <312> +00:02:14 Transaction Type : REQUEST +00:02:14 Received From : +00:02:14 ============================================================================ +00:02:14 FNo. Len. Field Value +00:02:14 ============================================================================ +00:02:14 [ 1] [ 4] [0800] +00:02:14 [ 7] [ 10] [0319050121] +00:02:14 [ 11] [ 6] [153028] +00:02:14 [ 70] [ 3] [301] +00:02:14 ============================================================================ +00:02:14 + + +waiting on router queue for slot.... +00:02:14 Sending to : +00:02:14 ============================================================================ +00:02:14 ============================================================================ +00:02:14 Slot Id : <312> +00:02:14 Transaction Type : RESPONSE +00:02:14 Received From : +00:02:14 ============================================================================ +00:02:14 FNo. Len. Field Value +00:02:14 ============================================================================ +00:02:14 [ 1] [ 4] [0810] +00:02:14 [ 7] [ 10] [0319050121] +00:02:14 [ 11] [ 6] [153028] +00:02:14 [ 39] [ 2] [00] +00:02:14 [ 70] [ 3] [301] +00:02:14 ============================================================================ +00:02:14 Calculate Source COMM Id = 2 +00:02:14 ============================================================================ +00:02:14 + + +waiting on router queue for slot.... +00:02:25 ============================================================================ +00:02:25 Slot Id : <316> +00:02:25 Transaction Type : REQUEST +00:02:25 Received From : +00:02:25 ============================================================================ +00:02:25 FNo. Len. Field Value +00:02:25 ============================================================================ +00:02:25 [ 1] [ 4] [0800] +00:02:25 [ 7] [ 10] [0319050132] +00:02:25 [ 11] [ 6] [153029] +00:02:25 [ 70] [ 3] [301] +00:02:25 ============================================================================ +00:02:25 + + +waiting on router queue for slot.... +00:02:25 Sending to : +00:02:25 ============================================================================ +00:02:25 ============================================================================ +00:02:25 Slot Id : <316> +00:02:25 Transaction Type : RESPONSE +00:02:25 Received From : +00:02:25 ============================================================================ +00:02:25 FNo. Len. Field Value +00:02:25 ============================================================================ +00:02:25 [ 1] [ 4] [0810] +00:02:25 [ 7] [ 10] [0319050132] +00:02:25 [ 11] [ 6] [153029] +00:02:25 [ 39] [ 2] [00] +00:02:25 [ 70] [ 3] [301] +00:02:25 ============================================================================ +00:02:25 Calculate Source COMM Id = 2 +00:02:25 ============================================================================ +00:02:25 + + +waiting on router queue for slot.... +00:02:36 ============================================================================ +00:02:36 Slot Id : <306> +00:02:36 Transaction Type : REQUEST +00:02:36 Received From : +00:02:36 ============================================================================ +00:02:36 FNo. Len. Field Value +00:02:36 ============================================================================ +00:02:36 [ 1] [ 4] [0800] +00:02:36 [ 7] [ 10] [0319050143] +00:02:36 [ 11] [ 6] [153030] +00:02:36 [ 70] [ 3] [301] +00:02:36 ============================================================================ +00:02:36 + + +waiting on router queue for slot.... +00:02:36 Sending to : +00:02:36 ============================================================================ +00:02:36 ============================================================================ +00:02:36 Slot Id : <306> +00:02:36 Transaction Type : RESPONSE +00:02:36 Received From : +00:02:36 ============================================================================ +00:02:36 FNo. Len. Field Value +00:02:36 ============================================================================ +00:02:36 [ 1] [ 4] [0810] +00:02:36 [ 7] [ 10] [0319050143] +00:02:36 [ 11] [ 6] [153030] +00:02:36 [ 39] [ 2] [00] +00:02:36 [ 70] [ 3] [301] +00:02:36 ============================================================================ +00:02:36 Calculate Source COMM Id = 2 +00:02:36 ============================================================================ +00:02:36 + + +waiting on router queue for slot.... +00:02:39 ============================================================================ +00:02:39 Slot Id : <286> +00:02:39 Transaction Type : REQUEST +00:02:39 Received From : +00:02:39 ============================================================================ +00:02:39 FNo. Len. Field Value +00:02:39 ============================================================================ +00:02:39 [ 1] [ 4] [0800] +00:02:39 [ 2] [ 5] [02531] +00:02:39 [ 3] [ 6] [579008] +00:02:39 [ 7] [ 10] [0319170239] +00:02:39 [ 11] [ 6] [806414] +00:02:39 [ 15] [ 10] [0319170239] +00:02:39 [ 37] [ 11] [57900806414] +00:02:39 [ 70] [ 3] [001] +00:02:39 ============================================================================ +00:02:39 + + +waiting on router queue for slot.... +00:02:39 ============================================================================ +00:02:39 Slot Id : <286> +00:02:39 Transaction Type : RESPONSE +00:02:39 Received From : +00:02:39 ============================================================================ +00:02:39 FNo. Len. Field Value +00:02:39 ============================================================================ +00:02:39 [ 1] [ 4] [0810] +00:02:39 [ 7] [ 10] [0319170239] +00:02:39 [ 11] [ 6] [806414] +00:02:39 [ 15] [ 4] [0319] +00:02:39 [ 37] [ 12] [57900806414] +00:02:39 [ 39] [ 2] [00] +00:02:39 [ 70] [ 3] [001] +00:02:39 ============================================================================ +00:02:39 Sending to : +00:02:39 ============================================================================ +00:02:39 + + +waiting on router queue for slot.... +00:02:53 ============================================================================ +00:02:53 Slot Id : <307> +00:02:53 Transaction Type : REQUEST +00:02:53 Received From : +00:02:53 ============================================================================ +00:02:53 FNo. Len. Field Value +00:02:53 ============================================================================ +00:02:53 [ 1] [ 4] [0800] +00:02:53 [ 7] [ 10] [0319050200] +00:02:53 [ 11] [ 6] [153031] +00:02:53 [ 70] [ 3] [301] +00:02:53 ============================================================================ +00:02:53 + + +waiting on router queue for slot.... +00:02:53 Sending to : +00:02:53 ============================================================================ +00:02:53 ============================================================================ +00:02:53 Slot Id : <307> +00:02:53 Transaction Type : RESPONSE +00:02:53 Received From : +00:02:53 ============================================================================ +00:02:53 FNo. Len. Field Value +00:02:53 ============================================================================ +00:02:53 [ 1] [ 4] [0810] +00:02:53 [ 7] [ 10] [0319050200] +00:02:53 [ 11] [ 6] [153031] +00:02:53 [ 39] [ 2] [00] +00:02:53 [ 70] [ 3] [301] +00:02:53 ============================================================================ +00:02:53 Calculate Source COMM Id = 2 +00:02:53 ============================================================================ +00:02:53 + + +waiting on router queue for slot.... +00:03:03 ============================================================================ +00:03:03 Slot Id : <317> +00:03:03 Transaction Type : REQUEST +00:03:03 Received From : +00:03:03 ============================================================================ +00:03:03 FNo. Len. Field Value +00:03:03 ============================================================================ +00:03:03 [ 1] [ 4] [0800] +00:03:03 [ 7] [ 10] [0320071450] +00:03:03 [ 11] [ 6] [001450] +00:03:03 [ 37] [ 12] [57900001450] +00:03:03 [ 70] [ 3] [301] +00:03:03 ============================================================================ +00:03:03 + + +waiting on router queue for slot.... +00:03:03 Sending to : +00:03:03 ============================================================================ +00:03:03 ============================================================================ +00:03:03 Slot Id : <317> +00:03:03 Transaction Type : RESPONSE +00:03:03 Received From : +00:03:03 ============================================================================ +00:03:03 FNo. Len. Field Value +00:03:03 ============================================================================ +00:03:03 [ 1] [ 4] [0810] +00:03:03 [ 7] [ 10] [0320071450] +00:03:03 [ 11] [ 6] [001450] +00:03:03 [ 37] [ 12] [579000014500] +00:03:03 [ 39] [ 2] [00] +00:03:03 [ 70] [ 3] [810] +00:03:03 ============================================================================ +00:03:03 Calculate Source COMM Id = 6 +00:03:03 ============================================================================ +00:03:03 + + +waiting on router queue for slot.... +00:03:04 ============================================================================ +00:03:04 Slot Id : <310> +00:03:04 Transaction Type : REQUEST +00:03:04 Received From : +00:03:04 ============================================================================ +00:03:04 FNo. Len. Field Value +00:03:04 ============================================================================ +00:03:04 [ 1] [ 4] [0800] +00:03:04 [ 7] [ 10] [0319050211] +00:03:04 [ 11] [ 6] [153032] +00:03:04 [ 70] [ 3] [301] +00:03:04 ============================================================================ +00:03:04 + + +waiting on router queue for slot.... +00:03:04 Sending to : +00:03:04 ============================================================================ +00:03:04 ============================================================================ +00:03:04 Slot Id : <310> +00:03:04 Transaction Type : RESPONSE +00:03:04 Received From : +00:03:04 ============================================================================ +00:03:04 FNo. Len. Field Value +00:03:04 ============================================================================ +00:03:04 [ 1] [ 4] [0810] +00:03:04 [ 7] [ 10] [0319050211] +00:03:04 [ 11] [ 6] [153032] +00:03:04 [ 39] [ 2] [00] +00:03:04 [ 70] [ 3] [301] +00:03:04 ============================================================================ +00:03:04 Calculate Source COMM Id = 2 +00:03:04 ============================================================================ +00:03:04 + + +waiting on router queue for slot.... +00:03:20 ============================================================================ +00:03:20 Slot Id : <318> +00:03:20 Transaction Type : REQUEST +00:03:20 Received From : +00:03:20 ============================================================================ +00:03:20 FNo. Len. Field Value +00:03:20 ============================================================================ +00:03:20 [ 1] [ 4] [0800] +00:03:20 [ 7] [ 10] [0319050227] +00:03:20 [ 11] [ 6] [153033] +00:03:20 [ 70] [ 3] [301] +00:03:20 ============================================================================ +00:03:20 + + +waiting on router queue for slot.... +00:03:20 Sending to : +00:03:20 ============================================================================ +00:03:20 ============================================================================ +00:03:20 Slot Id : <318> +00:03:20 Transaction Type : RESPONSE +00:03:20 Received From : +00:03:20 ============================================================================ +00:03:20 FNo. Len. Field Value +00:03:20 ============================================================================ +00:03:20 [ 1] [ 4] [0810] +00:03:20 [ 7] [ 10] [0319050227] +00:03:20 [ 11] [ 6] [153033] +00:03:20 [ 39] [ 2] [00] +00:03:20 [ 70] [ 3] [301] +00:03:20 ============================================================================ +00:03:20 Calculate Source COMM Id = 2 +00:03:20 ============================================================================ +00:03:20 + + +waiting on router queue for slot.... +00:03:31 ============================================================================ +00:03:31 Slot Id : <289> +00:03:31 Transaction Type : REQUEST +00:03:31 Received From : +00:03:31 ============================================================================ +00:03:31 FNo. Len. Field Value +00:03:31 ============================================================================ +00:03:31 [ 1] [ 4] [0800] +00:03:31 [ 7] [ 10] [0319050238] +00:03:31 [ 11] [ 6] [153034] +00:03:31 [ 70] [ 3] [301] +00:03:31 ============================================================================ +00:03:31 + + +waiting on router queue for slot.... +00:03:31 Sending to : +00:03:31 ============================================================================ +00:03:31 ============================================================================ +00:03:31 Slot Id : <289> +00:03:31 Transaction Type : RESPONSE +00:03:31 Received From : +00:03:31 ============================================================================ +00:03:31 FNo. Len. Field Value +00:03:31 ============================================================================ +00:03:31 [ 1] [ 4] [0810] +00:03:31 [ 7] [ 10] [0319050238] +00:03:31 [ 11] [ 6] [153034] +00:03:31 [ 39] [ 2] [00] +00:03:31 [ 70] [ 3] [301] +00:03:31 ============================================================================ +00:03:31 Calculate Source COMM Id = 2 +00:03:31 ============================================================================ +00:03:31 + + +waiting on router queue for slot.... +00:03:41 ============================================================================ +00:03:41 Slot Id : <304> +00:03:41 Transaction Type : REQUEST +00:03:41 Received From : +00:03:41 ============================================================================ +00:03:41 FNo. Len. Field Value +00:03:41 ============================================================================ +00:03:41 [ 1] [ 4] [0800] +00:03:41 [ 2] [ 5] [02531] +00:03:41 [ 3] [ 6] [579008] +00:03:41 [ 7] [ 10] [0319170341] +00:03:41 [ 11] [ 6] [806415] +00:03:41 [ 15] [ 10] [0319170341] +00:03:41 [ 37] [ 11] [57900806415] +00:03:41 [ 70] [ 3] [001] +00:03:41 ============================================================================ +00:03:41 + + +waiting on router queue for slot.... +00:03:41 ============================================================================ +00:03:41 Slot Id : <304> +00:03:41 Transaction Type : RESPONSE +00:03:41 Received From : +00:03:41 ============================================================================ +00:03:41 FNo. Len. Field Value +00:03:41 ============================================================================ +00:03:41 [ 1] [ 4] [0810] +00:03:41 [ 7] [ 10] [0319170341] +00:03:41 [ 11] [ 6] [806415] +00:03:41 [ 15] [ 4] [0319] +00:03:41 [ 37] [ 12] [57900806415] +00:03:41 [ 39] [ 2] [00] +00:03:41 [ 70] [ 3] [001] +00:03:41 ============================================================================ +00:03:41 Sending to : +00:03:41 ============================================================================ +00:03:41 + + +waiting on router queue for slot.... +00:03:41 ============================================================================ +00:03:41 Slot Id : <315> +00:03:41 Transaction Type : REQUEST +00:03:41 Received From : +00:03:41 ============================================================================ +00:03:41 FNo. Len. Field Value +00:03:41 ============================================================================ +00:03:41 [ 1] [ 4] [0800] +00:03:41 [ 7] [ 10] [0319050249] +00:03:41 [ 11] [ 6] [153035] +00:03:41 [ 70] [ 3] [301] +00:03:41 ============================================================================ +00:03:41 + + +waiting on router queue for slot.... +00:03:41 Sending to : +00:03:41 ============================================================================ +00:03:41 ============================================================================ +00:03:41 Slot Id : <315> +00:03:41 Transaction Type : RESPONSE +00:03:41 Received From : +00:03:41 ============================================================================ +00:03:41 FNo. Len. Field Value +00:03:41 ============================================================================ +00:03:41 [ 1] [ 4] [0810] +00:03:41 [ 7] [ 10] [0319050249] +00:03:41 [ 11] [ 6] [153035] +00:03:41 [ 39] [ 2] [00] +00:03:41 [ 70] [ 3] [301] +00:03:41 ============================================================================ +00:03:41 Calculate Source COMM Id = 2 +00:03:41 ============================================================================ +00:03:41 + + +waiting on router queue for slot.... +00:03:53 ============================================================================ +00:03:53 Slot Id : <322> +00:03:53 Transaction Type : REQUEST +00:03:53 Received From : +00:03:53 ============================================================================ +00:03:53 FNo. Len. Field Value +00:03:53 ============================================================================ +00:03:53 [ 1] [ 4] [0800] +00:03:53 [ 7] [ 10] [0319050300] +00:03:53 [ 11] [ 6] [153036] +00:03:53 [ 70] [ 3] [301] +00:03:53 ============================================================================ +00:03:53 + + +waiting on router queue for slot.... +00:03:53 Sending to : +00:03:53 ============================================================================ +00:03:53 ============================================================================ +00:03:53 Slot Id : <322> +00:03:53 Transaction Type : RESPONSE +00:03:53 Received From : +00:03:53 ============================================================================ +00:03:53 FNo. Len. Field Value +00:03:53 ============================================================================ +00:03:53 [ 1] [ 4] [0810] +00:03:53 [ 7] [ 10] [0319050300] +00:03:53 [ 11] [ 6] [153036] +00:03:53 [ 39] [ 2] [00] +00:03:53 [ 70] [ 3] [301] +00:03:53 ============================================================================ +00:03:53 Calculate Source COMM Id = 2 +00:03:53 ============================================================================ +00:03:53 + + +waiting on router queue for slot.... +00:04:04 ============================================================================ +00:04:04 Slot Id : <325> +00:04:04 Transaction Type : REQUEST +00:04:04 Received From : +00:04:04 ============================================================================ +00:04:04 FNo. Len. Field Value +00:04:04 ============================================================================ +00:04:04 [ 1] [ 4] [0800] +00:04:04 [ 7] [ 10] [0319050311] +00:04:04 [ 11] [ 6] [153037] +00:04:04 [ 70] [ 3] [301] +00:04:04 ============================================================================ +00:04:04 + + +waiting on router queue for slot.... +00:04:04 Sending to : +00:04:04 ============================================================================ +00:04:04 ============================================================================ +00:04:04 Slot Id : <325> +00:04:04 Transaction Type : RESPONSE +00:04:04 Received From : +00:04:04 ============================================================================ +00:04:04 FNo. Len. Field Value +00:04:04 ============================================================================ +00:04:04 [ 1] [ 4] [0810] +00:04:04 [ 7] [ 10] [0319050311] +00:04:04 [ 11] [ 6] [153037] +00:04:04 [ 39] [ 2] [00] +00:04:04 [ 70] [ 3] [301] +00:04:04 ============================================================================ +00:04:04 Calculate Source COMM Id = 2 +00:04:04 ============================================================================ +00:04:04 + + +waiting on router queue for slot.... +00:04:08 ============================================================================ +00:04:08 Slot Id : <285> +00:04:08 Transaction Type : REQUEST +00:04:08 Received From : +00:04:08 ============================================================================ +00:04:08 FNo. Len. Field Value +00:04:08 ============================================================================ +00:04:08 [ 1] [ 4] [0800] +00:04:08 [ 7] [ 10] [0320071555] +00:04:08 [ 11] [ 6] [001555] +00:04:08 [ 37] [ 12] [57900001555] +00:04:08 [ 70] [ 3] [301] +00:04:08 ============================================================================ +00:04:08 + + +waiting on router queue for slot.... +00:04:08 Sending to : +00:04:08 ============================================================================ +00:04:08 ============================================================================ +00:04:08 Slot Id : <285> +00:04:08 Transaction Type : RESPONSE +00:04:08 Received From : +00:04:08 ============================================================================ +00:04:08 FNo. Len. Field Value +00:04:08 ============================================================================ +00:04:08 [ 1] [ 4] [0810] +00:04:08 [ 7] [ 10] [0320071555] +00:04:08 [ 11] [ 6] [001555] +00:04:08 [ 37] [ 12] [579000015550] +00:04:08 [ 39] [ 2] [00] +00:04:08 [ 70] [ 3] [810] +00:04:08 ============================================================================ +00:04:08 Calculate Source COMM Id = 6 +00:04:08 ============================================================================ +00:04:08 + + +waiting on router queue for slot.... +00:04:16 ============================================================================ +00:04:16 Slot Id : <297> +00:04:16 Transaction Type : REQUEST +00:04:16 Received From : +00:04:16 ============================================================================ +00:04:16 FNo. Len. Field Value +00:04:16 ============================================================================ +00:04:16 [ 1] [ 4] [0800] +00:04:16 [ 7] [ 10] [0319050323] +00:04:16 [ 11] [ 6] [153038] +00:04:16 [ 70] [ 3] [301] +00:04:16 ============================================================================ +00:04:16 + + +waiting on router queue for slot.... +00:04:16 Sending to : +00:04:16 ============================================================================ +00:04:16 ============================================================================ +00:04:16 Slot Id : <297> +00:04:16 Transaction Type : RESPONSE +00:04:16 Received From : +00:04:16 ============================================================================ +00:04:16 FNo. Len. Field Value +00:04:16 ============================================================================ +00:04:16 [ 1] [ 4] [0810] +00:04:16 [ 7] [ 10] [0319050323] +00:04:16 [ 11] [ 6] [153038] +00:04:16 [ 39] [ 2] [00] +00:04:16 [ 70] [ 3] [301] +00:04:16 ============================================================================ +00:04:16 Calculate Source COMM Id = 2 +00:04:16 ============================================================================ +00:04:16 + + +waiting on router queue for slot.... +00:04:32 ============================================================================ +00:04:32 Slot Id : <291> +00:04:32 Transaction Type : REQUEST +00:04:32 Received From : +00:04:32 ============================================================================ +00:04:32 FNo. Len. Field Value +00:04:32 ============================================================================ +00:04:32 [ 1] [ 4] [0800] +00:04:32 [ 7] [ 10] [0319050339] +00:04:32 [ 11] [ 6] [153039] +00:04:32 [ 70] [ 3] [301] +00:04:32 ============================================================================ +00:04:32 + + +waiting on router queue for slot.... +00:04:32 Sending to : +00:04:32 ============================================================================ +00:04:32 ============================================================================ +00:04:32 Slot Id : <291> +00:04:32 Transaction Type : RESPONSE +00:04:32 Received From : +00:04:32 ============================================================================ +00:04:32 FNo. Len. Field Value +00:04:32 ============================================================================ +00:04:32 [ 1] [ 4] [0810] +00:04:32 [ 7] [ 10] [0319050339] +00:04:32 [ 11] [ 6] [153039] +00:04:32 [ 39] [ 2] [00] +00:04:32 [ 70] [ 3] [301] +00:04:32 ============================================================================ +00:04:32 Calculate Source COMM Id = 2 +00:04:32 ============================================================================ +00:04:32 + + +waiting on router queue for slot.... +00:04:43 ============================================================================ +00:04:43 Slot Id : <326> +00:04:43 Transaction Type : REQUEST +00:04:43 Received From : +00:04:43 ============================================================================ +00:04:43 FNo. Len. Field Value +00:04:43 ============================================================================ +00:04:43 [ 1] [ 4] [0800] +00:04:43 [ 2] [ 5] [02531] +00:04:43 [ 3] [ 6] [579008] +00:04:43 [ 7] [ 10] [0319170443] +00:04:43 [ 11] [ 6] [806416] +00:04:43 [ 15] [ 10] [0319170443] +00:04:43 [ 37] [ 11] [57900806416] +00:04:43 [ 70] [ 3] [001] +00:04:43 ============================================================================ +00:04:43 + + +waiting on router queue for slot.... +00:04:43 ============================================================================ +00:04:43 Slot Id : <326> +00:04:43 Transaction Type : RESPONSE +00:04:43 Received From : +00:04:43 ============================================================================ +00:04:43 FNo. Len. Field Value +00:04:43 ============================================================================ +00:04:43 [ 1] [ 4] [0810] +00:04:43 [ 7] [ 10] [0319170443] +00:04:43 [ 11] [ 6] [806416] +00:04:43 [ 15] [ 4] [0319] +00:04:43 [ 37] [ 12] [57900806416] +00:04:43 [ 39] [ 2] [00] +00:04:43 [ 70] [ 3] [001] +00:04:43 ============================================================================ +00:04:43 Sending to : +00:04:43 ============================================================================ +00:04:43 + + +waiting on router queue for slot.... +00:04:49 ============================================================================ +00:04:49 Slot Id : <305> +00:04:49 Transaction Type : REQUEST +00:04:49 Received From : +00:04:49 ============================================================================ +00:04:49 FNo. Len. Field Value +00:04:49 ============================================================================ +00:04:49 [ 1] [ 4] [0800] +00:04:49 [ 7] [ 10] [0319050356] +00:04:49 [ 11] [ 6] [153040] +00:04:49 [ 70] [ 3] [301] +00:04:49 ============================================================================ +00:04:49 + + +waiting on router queue for slot.... +00:04:49 Sending to : +00:04:49 ============================================================================ +00:04:49 ============================================================================ +00:04:49 Slot Id : <305> +00:04:49 Transaction Type : RESPONSE +00:04:49 Received From : +00:04:49 ============================================================================ +00:04:49 FNo. Len. Field Value +00:04:49 ============================================================================ +00:04:49 [ 1] [ 4] [0810] +00:04:49 [ 7] [ 10] [0319050356] +00:04:49 [ 11] [ 6] [153040] +00:04:49 [ 39] [ 2] [00] +00:04:49 [ 70] [ 3] [301] +00:04:49 ============================================================================ +00:04:49 Calculate Source COMM Id = 2 +00:04:49 ============================================================================ +00:04:49 + + +waiting on router queue for slot.... +00:04:56 ============================================================================ +00:04:56 Slot Id : <301> +00:04:56 Transaction Type : REQUEST +00:04:56 Received From : +00:04:56 ============================================================================ +00:04:56 FNo. Len. Field Value +00:04:56 ============================================================================ +00:04:56 [ 1] [ 4] [0800] +00:04:56 [ 7] [ 10] [0319171242] +00:04:56 [ 11] [ 6] [096341] +00:04:56 [ 37] [ 12] [57900096341] +00:04:56 [ 70] [ 3] [301] +00:04:56 ============================================================================ +00:04:56 + + +waiting on router queue for slot.... +00:04:56 Sending to : +00:04:56 ============================================================================ +00:04:56 ============================================================================ +00:04:56 Slot Id : <301> +00:04:56 Transaction Type : RESPONSE +00:04:56 Received From : +00:04:56 ============================================================================ +00:04:56 FNo. Len. Field Value +00:04:56 ============================================================================ +00:04:56 [ 1] [ 4] [0810] +00:04:56 [ 7] [ 10] [0319171242] +00:04:56 [ 11] [ 6] [096341] +00:04:56 [ 37] [ 12] [579000963410] +00:04:56 [ 39] [ 2] [00] +00:04:56 [ 70] [ 3] [810] +00:04:56 ============================================================================ +00:04:56 Calculate Source COMM Id = 1 +00:04:56 ============================================================================ +00:04:56 + + +waiting on router queue for slot.... +00:05:00 ============================================================================ +00:05:00 Slot Id : <327> +00:05:00 Transaction Type : REQUEST +00:05:00 Received From : +00:05:00 ============================================================================ +00:05:00 FNo. Len. Field Value +00:05:00 ============================================================================ +00:05:00 [ 1] [ 4] [0800] +00:05:00 [ 7] [ 10] [0319050407] +00:05:00 [ 11] [ 6] [153041] +00:05:00 [ 70] [ 3] [301] +00:05:00 ============================================================================ +00:05:00 + + +waiting on router queue for slot.... +00:05:00 Sending to : +00:05:00 ============================================================================ +00:05:00 ============================================================================ +00:05:00 Slot Id : <327> +00:05:00 Transaction Type : RESPONSE +00:05:00 Received From : +00:05:00 ============================================================================ +00:05:00 FNo. Len. Field Value +00:05:00 ============================================================================ +00:05:00 [ 1] [ 4] [0810] +00:05:00 [ 7] [ 10] [0319050407] +00:05:00 [ 11] [ 6] [153041] +00:05:00 [ 39] [ 2] [00] +00:05:00 [ 70] [ 3] [301] +00:05:00 ============================================================================ +00:05:00 Calculate Source COMM Id = 2 +00:05:00 ============================================================================ +00:05:00 + + +waiting on router queue for slot.... +00:05:13 ============================================================================ +00:05:13 Slot Id : <333> +00:05:13 Transaction Type : REQUEST +00:05:13 Received From : +00:05:13 ============================================================================ +00:05:13 FNo. Len. Field Value +00:05:13 ============================================================================ +00:05:13 [ 1] [ 4] [0800] +00:05:13 [ 7] [ 10] [0320071700] +00:05:13 [ 11] [ 6] [001700] +00:05:13 [ 37] [ 12] [57900001700] +00:05:13 [ 70] [ 3] [301] +00:05:13 ============================================================================ +00:05:13 + + +waiting on router queue for slot.... +00:05:13 Sending to : +00:05:13 ============================================================================ +00:05:13 ============================================================================ +00:05:13 Slot Id : <333> +00:05:13 Transaction Type : RESPONSE +00:05:13 Received From : +00:05:13 ============================================================================ +00:05:13 FNo. Len. Field Value +00:05:13 ============================================================================ +00:05:13 [ 1] [ 4] [0810] +00:05:13 [ 7] [ 10] [0320071700] +00:05:13 [ 11] [ 6] [001700] +00:05:13 [ 37] [ 12] [579000017000] +00:05:13 [ 39] [ 2] [00] +00:05:13 [ 70] [ 3] [810] +00:05:13 ============================================================================ +00:05:13 Calculate Source COMM Id = 6 +00:05:13 ============================================================================ +00:05:13 + + +waiting on router queue for slot.... +00:05:15 ============================================================================ +00:05:15 Slot Id : <314> +00:05:15 Transaction Type : REQUEST +00:05:15 Received From : +00:05:15 ============================================================================ +00:05:15 FNo. Len. Field Value +00:05:15 ============================================================================ +00:05:15 [ 1] [ 4] [0800] +00:05:15 [ 7] [ 10] [0319050422] +00:05:15 [ 11] [ 6] [153042] +00:05:15 [ 70] [ 3] [301] +00:05:15 ============================================================================ +00:05:15 + + +waiting on router queue for slot.... +00:05:15 Sending to : +00:05:15 ============================================================================ +00:05:15 ============================================================================ +00:05:15 Slot Id : <314> +00:05:15 Transaction Type : RESPONSE +00:05:15 Received From : +00:05:15 ============================================================================ +00:05:15 FNo. Len. Field Value +00:05:15 ============================================================================ +00:05:15 [ 1] [ 4] [0810] +00:05:15 [ 7] [ 10] [0319050422] +00:05:15 [ 11] [ 6] [153042] +00:05:15 [ 39] [ 2] [00] +00:05:15 [ 70] [ 3] [301] +00:05:15 ============================================================================ +00:05:15 Calculate Source COMM Id = 2 +00:05:15 ============================================================================ +00:05:15 + + +waiting on router queue for slot.... +00:05:25 ============================================================================ +00:05:25 Slot Id : <331> +00:05:25 Transaction Type : REQUEST +00:05:25 Received From : +00:05:25 ============================================================================ +00:05:25 FNo. Len. Field Value +00:05:25 ============================================================================ +00:05:25 [ 1] [ 4] [0800] +00:05:25 [ 7] [ 10] [0319050432] +00:05:25 [ 11] [ 6] [153043] +00:05:25 [ 70] [ 3] [301] +00:05:25 ============================================================================ +00:05:25 + + +waiting on router queue for slot.... +00:05:25 Sending to : +00:05:25 ============================================================================ +00:05:25 ============================================================================ +00:05:25 Slot Id : <331> +00:05:25 Transaction Type : RESPONSE +00:05:25 Received From : +00:05:25 ============================================================================ +00:05:25 FNo. Len. Field Value +00:05:25 ============================================================================ +00:05:25 [ 1] [ 4] [0810] +00:05:25 [ 7] [ 10] [0319050432] +00:05:25 [ 11] [ 6] [153043] +00:05:25 [ 39] [ 2] [00] +00:05:25 [ 70] [ 3] [301] +00:05:25 ============================================================================ +00:05:25 Calculate Source COMM Id = 2 +00:05:25 ============================================================================ +00:05:25 + + +waiting on router queue for slot.... +00:05:36 ============================================================================ +00:05:36 Slot Id : <321> +00:05:36 Transaction Type : REQUEST +00:05:36 Received From : +00:05:36 ============================================================================ +00:05:36 FNo. Len. Field Value +00:05:36 ============================================================================ +00:05:36 [ 1] [ 4] [0800] +00:05:36 [ 7] [ 10] [0319050443] +00:05:36 [ 11] [ 6] [153044] +00:05:36 [ 70] [ 3] [301] +00:05:36 ============================================================================ +00:05:36 + + +waiting on router queue for slot.... +00:05:36 Sending to : +00:05:36 ============================================================================ +00:05:36 ============================================================================ +00:05:36 Slot Id : <321> +00:05:36 Transaction Type : RESPONSE +00:05:36 Received From : +00:05:36 ============================================================================ +00:05:36 FNo. Len. Field Value +00:05:36 ============================================================================ +00:05:36 [ 1] [ 4] [0810] +00:05:36 [ 7] [ 10] [0319050443] +00:05:36 [ 11] [ 6] [153044] +00:05:36 [ 39] [ 2] [00] +00:05:36 [ 70] [ 3] [301] +00:05:36 ============================================================================ +00:05:36 Calculate Source COMM Id = 2 +00:05:36 ============================================================================ +00:05:36 + + +waiting on router queue for slot.... +00:05:45 ============================================================================ +00:05:45 Slot Id : <334> +00:05:45 Transaction Type : REQUEST +00:05:45 Received From : +00:05:45 ============================================================================ +00:05:45 FNo. Len. Field Value +00:05:45 ============================================================================ +00:05:45 [ 1] [ 4] [0800] +00:05:45 [ 2] [ 5] [02531] +00:05:45 [ 3] [ 6] [579008] +00:05:45 [ 7] [ 10] [0319170545] +00:05:45 [ 11] [ 6] [806417] +00:05:45 [ 15] [ 10] [0319170545] +00:05:45 [ 37] [ 11] [57900806417] +00:05:45 [ 70] [ 3] [001] +00:05:45 ============================================================================ +00:05:45 + + +waiting on router queue for slot.... +00:05:45 ============================================================================ +00:05:45 Slot Id : <334> +00:05:45 Transaction Type : RESPONSE +00:05:45 Received From : +00:05:45 ============================================================================ +00:05:45 FNo. Len. Field Value +00:05:45 ============================================================================ +00:05:45 [ 1] [ 4] [0810] +00:05:45 [ 7] [ 10] [0319170545] +00:05:45 [ 11] [ 6] [806417] +00:05:45 [ 15] [ 4] [0319] +00:05:45 [ 37] [ 12] [57900806417] +00:05:45 [ 39] [ 2] [00] +00:05:45 [ 70] [ 3] [001] +00:05:45 ============================================================================ +00:05:45 Sending to : +00:05:45 ============================================================================ +00:05:45 + + +waiting on router queue for slot.... +00:05:46 ============================================================================ +00:05:46 Slot Id : <336> +00:05:46 Transaction Type : REQUEST +00:05:46 Received From : +00:05:46 ============================================================================ +00:05:46 FNo. Len. Field Value +00:05:46 ============================================================================ +00:05:46 [ 1] [ 4] [0800] +00:05:46 [ 7] [ 10] [0319050453] +00:05:46 [ 11] [ 6] [153045] +00:05:46 [ 70] [ 3] [301] +00:05:46 ============================================================================ +00:05:46 + + +waiting on router queue for slot.... +00:05:46 Sending to : +00:05:46 ============================================================================ +00:05:46 ============================================================================ +00:05:46 Slot Id : <336> +00:05:46 Transaction Type : RESPONSE +00:05:46 Received From : +00:05:46 ============================================================================ +00:05:46 FNo. Len. Field Value +00:05:46 ============================================================================ +00:05:46 [ 1] [ 4] [0810] +00:05:46 [ 7] [ 10] [0319050453] +00:05:46 [ 11] [ 6] [153045] +00:05:46 [ 39] [ 2] [00] +00:05:46 [ 70] [ 3] [301] +00:05:46 ============================================================================ +00:05:46 Calculate Source COMM Id = 2 +00:05:46 ============================================================================ +00:05:46 + + +waiting on router queue for slot.... +00:05:57 ============================================================================ +00:05:57 Slot Id : <337> +00:05:57 Transaction Type : REQUEST +00:05:57 Received From : +00:05:57 ============================================================================ +00:05:57 FNo. Len. Field Value +00:05:57 ============================================================================ +00:05:57 [ 1] [ 4] [0800] +00:05:57 [ 7] [ 10] [0319050504] +00:05:57 [ 11] [ 6] [153046] +00:05:57 [ 70] [ 3] [301] +00:05:57 ============================================================================ +00:05:57 + + +waiting on router queue for slot.... +00:05:57 Sending to : +00:05:57 ============================================================================ +00:05:57 ============================================================================ +00:05:57 Slot Id : <337> +00:05:57 Transaction Type : RESPONSE +00:05:57 Received From : +00:05:57 ============================================================================ +00:05:57 FNo. Len. Field Value +00:05:57 ============================================================================ +00:05:57 [ 1] [ 4] [0810] +00:05:57 [ 7] [ 10] [0319050504] +00:05:57 [ 11] [ 6] [153046] +00:05:57 [ 39] [ 2] [00] +00:05:57 [ 70] [ 3] [301] +00:05:57 ============================================================================ +00:05:57 Calculate Source COMM Id = 2 +00:05:57 ============================================================================ +00:05:57 + + +waiting on router queue for slot.... +00:06:00 ============================================================================ +00:06:00 Slot Id : <335> +00:06:00 Transaction Type : REQUEST +00:06:00 Received From : +00:06:00 ============================================================================ +00:06:00 FNo. Len. Field Value +00:06:00 ============================================================================ +00:06:00 [ 1] [ 4] [0800] +00:06:00 [ 7] [ 10] [0319170556] +00:06:00 [ 11] [ 6] [035756] +00:06:00 [ 37] [ 12] [507900035756] +00:06:00 [ 70] [ 3] [001] +00:06:00 ============================================================================ +00:06:00 + + +waiting on router queue for slot.... +00:06:00 Sending to : +00:06:00 ============================================================================ +00:06:00 ============================================================================ +00:06:00 Slot Id : <335> +00:06:00 Transaction Type : RESPONSE +00:06:00 Received From : +00:06:00 ============================================================================ +00:06:00 FNo. Len. Field Value +00:06:00 ============================================================================ +00:06:00 [ 1] [ 4] [0810] +00:06:00 [ 7] [ 10] [0319170556] +00:06:00 [ 11] [ 6] [035756] +00:06:00 [ 37] [ 12] [507900035756] +00:06:00 [ 39] [ 2] [00] +00:06:00 [ 70] [ 3] [001] +00:06:00 ============================================================================ +00:06:00 Calculate Source COMM Id = 0 +00:06:00 ============================================================================ +00:06:00 + + +waiting on router queue for slot.... +00:06:07 ============================================================================ +00:06:07 Slot Id : <342> +00:06:07 Transaction Type : REQUEST +00:06:07 Received From : +00:06:07 ============================================================================ +00:06:07 FNo. Len. Field Value +00:06:07 ============================================================================ +00:06:07 [ 1] [ 4] [0800] +00:06:07 [ 7] [ 10] [0319050515] +00:06:07 [ 11] [ 6] [153047] +00:06:07 [ 70] [ 3] [301] +00:06:07 ============================================================================ +00:06:07 + + +waiting on router queue for slot.... +00:06:07 Sending to : +00:06:07 ============================================================================ +00:06:07 ============================================================================ +00:06:07 Slot Id : <342> +00:06:07 Transaction Type : RESPONSE +00:06:07 Received From : +00:06:07 ============================================================================ +00:06:07 FNo. Len. Field Value +00:06:07 ============================================================================ +00:06:07 [ 1] [ 4] [0810] +00:06:07 [ 7] [ 10] [0319050515] +00:06:07 [ 11] [ 6] [153047] +00:06:07 [ 39] [ 2] [00] +00:06:07 [ 70] [ 3] [301] +00:06:07 ============================================================================ +00:06:07 Calculate Source COMM Id = 2 +00:06:07 ============================================================================ +00:06:07 + + +waiting on router queue for slot.... +00:06:17 ============================================================================ +00:06:17 Slot Id : <320> +00:06:17 Transaction Type : REQUEST +00:06:17 Received From : +00:06:17 ============================================================================ +00:06:17 FNo. Len. Field Value +00:06:17 ============================================================================ +00:06:17 [ 1] [ 4] [0800] +00:06:17 [ 7] [ 10] [0319050525] +00:06:17 [ 11] [ 6] [153048] +00:06:17 [ 70] [ 3] [301] +00:06:17 ============================================================================ +00:06:17 + + +waiting on router queue for slot.... +00:06:17 Sending to : +00:06:17 ============================================================================ +00:06:17 ============================================================================ +00:06:17 Slot Id : <320> +00:06:17 Transaction Type : RESPONSE +00:06:17 Received From : +00:06:17 ============================================================================ +00:06:17 FNo. Len. Field Value +00:06:17 ============================================================================ +00:06:17 [ 1] [ 4] [0810] +00:06:17 [ 7] [ 10] [0319050525] +00:06:17 [ 11] [ 6] [153048] +00:06:17 [ 39] [ 2] [00] +00:06:17 [ 70] [ 3] [301] +00:06:17 ============================================================================ +00:06:17 Calculate Source COMM Id = 2 +00:06:17 ============================================================================ +00:06:17 + + +waiting on router queue for slot.... +00:06:18 ============================================================================ +00:06:18 Slot Id : <341> +00:06:18 Transaction Type : REQUEST +00:06:18 Received From : +00:06:18 ============================================================================ +00:06:18 FNo. Len. Field Value +00:06:18 ============================================================================ +00:06:18 [ 1] [ 4] [0800] +00:06:18 [ 7] [ 10] [0320071805] +00:06:18 [ 11] [ 6] [001805] +00:06:18 [ 37] [ 12] [57900001805] +00:06:18 [ 70] [ 3] [301] +00:06:18 ============================================================================ +00:06:18 + + +waiting on router queue for slot.... +00:06:18 Sending to : +00:06:18 ============================================================================ +00:06:18 ============================================================================ +00:06:18 Slot Id : <341> +00:06:18 Transaction Type : RESPONSE +00:06:18 Received From : +00:06:18 ============================================================================ +00:06:18 FNo. Len. Field Value +00:06:18 ============================================================================ +00:06:18 [ 1] [ 4] [0810] +00:06:18 [ 7] [ 10] [0320071805] +00:06:18 [ 11] [ 6] [001805] +00:06:18 [ 37] [ 12] [579000018050] +00:06:18 [ 39] [ 2] [00] +00:06:18 [ 70] [ 3] [810] +00:06:18 ============================================================================ +00:06:18 Calculate Source COMM Id = 6 +00:06:18 ============================================================================ +00:06:18 + + +waiting on router queue for slot.... +00:06:21 ============================================================================ +00:06:21 Slot Id : <268> +00:06:21 Transaction Type : REQUEST +00:06:21 Received From : +00:06:21 ============================================================================ +00:06:21 FNo. Len. Field Value +00:06:21 ============================================================================ +00:06:21 [ 1] [ 4] [0800] +00:06:21 [ 7] [ 10] [0319170412] +00:06:21 [ 11] [ 6] [060424] +00:06:21 [ 37] [ 12] [57900060424] +00:06:21 [ 70] [ 3] [301] +00:06:21 ============================================================================ +00:06:21 + + +waiting on router queue for slot.... +00:06:21 Sending to : +00:06:21 ============================================================================ +00:06:21 ============================================================================ +00:06:21 Slot Id : <268> +00:06:21 Transaction Type : RESPONSE +00:06:21 Received From : +00:06:21 ============================================================================ +00:06:21 FNo. Len. Field Value +00:06:21 ============================================================================ +00:06:21 [ 1] [ 4] [0810] +00:06:21 [ 7] [ 10] [0319170412] +00:06:21 [ 11] [ 6] [060424] +00:06:21 [ 37] [ 12] [579000604240] +00:06:21 [ 39] [ 2] [00] +00:06:21 [ 70] [ 3] [810] +00:06:21 ============================================================================ +00:06:21 Calculate Source COMM Id = 4 +00:06:21 ============================================================================ +00:06:21 + + +waiting on router queue for slot.... +00:06:28 ============================================================================ +00:06:28 Slot Id : <344> +00:06:28 Transaction Type : REQUEST +00:06:28 Received From : +00:06:28 ============================================================================ +00:06:28 FNo. Len. Field Value +00:06:28 ============================================================================ +00:06:28 [ 1] [ 4] [0800] +00:06:28 [ 7] [ 10] [0319050536] +00:06:28 [ 11] [ 6] [153049] +00:06:28 [ 70] [ 3] [301] +00:06:28 ============================================================================ +00:06:28 + + +waiting on router queue for slot.... +00:06:28 Sending to : +00:06:28 ============================================================================ +00:06:28 ============================================================================ +00:06:28 Slot Id : <344> +00:06:28 Transaction Type : RESPONSE +00:06:28 Received From : +00:06:28 ============================================================================ +00:06:28 FNo. Len. Field Value +00:06:28 ============================================================================ +00:06:28 [ 1] [ 4] [0810] +00:06:28 [ 7] [ 10] [0319050536] +00:06:28 [ 11] [ 6] [153049] +00:06:28 [ 39] [ 2] [00] +00:06:28 [ 70] [ 3] [301] +00:06:28 ============================================================================ +00:06:28 Calculate Source COMM Id = 2 +00:06:28 ============================================================================ +00:06:28 + + +waiting on router queue for slot.... +00:06:43 ============================================================================ +00:06:43 Slot Id : <345> +00:06:43 Transaction Type : REQUEST +00:06:43 Received From : +00:06:43 ============================================================================ +00:06:43 FNo. Len. Field Value +00:06:43 ============================================================================ +00:06:43 [ 1] [ 4] [0800] +00:06:43 [ 7] [ 10] [0319050551] +00:06:43 [ 11] [ 6] [153050] +00:06:43 [ 70] [ 3] [301] +00:06:43 ============================================================================ +00:06:43 + + +waiting on router queue for slot.... +00:06:43 Sending to : +00:06:43 ============================================================================ +00:06:43 ============================================================================ +00:06:43 Slot Id : <345> +00:06:43 Transaction Type : RESPONSE +00:06:43 Received From : +00:06:43 ============================================================================ +00:06:43 FNo. Len. Field Value +00:06:43 ============================================================================ +00:06:43 [ 1] [ 4] [0810] +00:06:43 [ 7] [ 10] [0319050551] +00:06:43 [ 11] [ 6] [153050] +00:06:43 [ 39] [ 2] [00] +00:06:43 [ 70] [ 3] [301] +00:06:43 ============================================================================ +00:06:43 Calculate Source COMM Id = 2 +00:06:43 ============================================================================ +00:06:43 + + +waiting on router queue for slot.... +00:06:47 ============================================================================ +00:06:47 Slot Id : <329> +00:06:47 Transaction Type : REQUEST +00:06:47 Received From : +00:06:47 ============================================================================ +00:06:47 FNo. Len. Field Value +00:06:47 ============================================================================ +00:06:47 [ 1] [ 4] [0800] +00:06:47 [ 2] [ 5] [02531] +00:06:47 [ 3] [ 6] [579008] +00:06:47 [ 7] [ 10] [0319170647] +00:06:47 [ 11] [ 6] [806418] +00:06:47 [ 15] [ 10] [0319170647] +00:06:47 [ 37] [ 11] [57900806418] +00:06:47 [ 70] [ 3] [001] +00:06:47 ============================================================================ +00:06:47 + + +waiting on router queue for slot.... +00:06:47 ============================================================================ +00:06:47 Slot Id : <329> +00:06:47 Transaction Type : RESPONSE +00:06:47 Received From : +00:06:47 ============================================================================ +00:06:47 FNo. Len. Field Value +00:06:47 ============================================================================ +00:06:47 [ 1] [ 4] [0810] +00:06:47 [ 7] [ 10] [0319170647] +00:06:47 [ 11] [ 6] [806418] +00:06:47 [ 15] [ 4] [0319] +00:06:47 [ 37] [ 12] [57900806418] +00:06:47 [ 39] [ 2] [00] +00:06:47 [ 70] [ 3] [001] +00:06:47 ============================================================================ +00:06:47 Sending to : +00:06:47 ============================================================================ +00:06:47 + + +waiting on router queue for slot.... +00:06:54 ============================================================================ +00:06:54 Slot Id : <339> +00:06:54 Transaction Type : REQUEST +00:06:54 Received From : +00:06:54 ============================================================================ +00:06:54 FNo. Len. Field Value +00:06:54 ============================================================================ +00:06:54 [ 1] [ 4] [0800] +00:06:54 [ 7] [ 10] [0319050602] +00:06:54 [ 11] [ 6] [153051] +00:06:54 [ 70] [ 3] [301] +00:06:54 ============================================================================ +00:06:54 + + +waiting on router queue for slot.... +00:06:54 Sending to : +00:06:54 ============================================================================ +00:06:54 ============================================================================ +00:06:54 Slot Id : <339> +00:06:54 Transaction Type : RESPONSE +00:06:54 Received From : +00:06:54 ============================================================================ +00:06:54 FNo. Len. Field Value +00:06:54 ============================================================================ +00:06:54 [ 1] [ 4] [0810] +00:06:54 [ 7] [ 10] [0319050602] +00:06:54 [ 11] [ 6] [153051] +00:06:54 [ 39] [ 2] [00] +00:06:54 [ 70] [ 3] [301] +00:06:54 ============================================================================ +00:06:54 Calculate Source COMM Id = 2 +00:06:54 ============================================================================ +00:06:54 + + +waiting on router queue for slot.... +00:07:05 ============================================================================ +00:07:05 Slot Id : <323> +00:07:05 Transaction Type : REQUEST +00:07:05 Received From : +00:07:05 ============================================================================ +00:07:05 FNo. Len. Field Value +00:07:05 ============================================================================ +00:07:05 [ 1] [ 4] [0800] +00:07:05 [ 7] [ 10] [0319050613] +00:07:05 [ 11] [ 6] [153052] +00:07:05 [ 70] [ 3] [301] +00:07:05 ============================================================================ +00:07:05 + + +waiting on router queue for slot.... +00:07:05 Sending to : +00:07:05 ============================================================================ +00:07:05 ============================================================================ +00:07:05 Slot Id : <323> +00:07:05 Transaction Type : RESPONSE +00:07:05 Received From : +00:07:05 ============================================================================ +00:07:05 FNo. Len. Field Value +00:07:05 ============================================================================ +00:07:05 [ 1] [ 4] [0810] +00:07:05 [ 7] [ 10] [0319050613] +00:07:05 [ 11] [ 6] [153052] +00:07:05 [ 39] [ 2] [00] +00:07:05 [ 70] [ 3] [301] +00:07:05 ============================================================================ +00:07:05 Calculate Source COMM Id = 2 +00:07:05 ============================================================================ +00:07:05 + + +waiting on router queue for slot.... +00:07:15 ============================================================================ +00:07:15 Slot Id : <309> +00:07:15 Transaction Type : REQUEST +00:07:15 Received From : +00:07:15 ============================================================================ +00:07:15 FNo. Len. Field Value +00:07:15 ============================================================================ +00:07:15 [ 1] [ 4] [0800] +00:07:15 [ 7] [ 10] [0320000702] +00:07:15 [ 11] [ 6] [001344] +00:07:15 [ 37] [ 12] [507900001344] +00:07:15 [ 70] [ 3] [ ] +00:07:15 ============================================================================ +00:07:15 + + +waiting on router queue for slot.... +00:07:15 Sending to : +00:07:15 ============================================================================ +00:07:15 ============================================================================ +00:07:15 Slot Id : <309> +00:07:15 Transaction Type : RESPONSE +00:07:15 Received From : +00:07:15 ============================================================================ +00:07:15 FNo. Len. Field Value +00:07:15 ============================================================================ +00:07:15 [ 1] [ 4] [0810] +00:07:15 [ 7] [ 10] [0320000702] +00:07:15 [ 11] [ 6] [001344] +00:07:15 [ 37] [ 12] [507900001344] +00:07:15 [ 39] [ 2] [91] +00:07:15 [ 70] [ 3] [ ] +00:07:15 ============================================================================ +00:07:15 Calculate Source COMM Id = 3 +00:07:15 ============================================================================ +00:07:15 + + +waiting on router queue for slot.... +00:07:16 ============================================================================ +00:07:16 Slot Id : <348> +00:07:16 Transaction Type : REQUEST +00:07:16 Received From : +00:07:16 ============================================================================ +00:07:16 FNo. Len. Field Value +00:07:16 ============================================================================ +00:07:16 [ 1] [ 4] [0800] +00:07:16 [ 7] [ 10] [0319050624] +00:07:16 [ 11] [ 6] [153053] +00:07:16 [ 70] [ 3] [301] +00:07:16 ============================================================================ +00:07:16 + + +waiting on router queue for slot.... +00:07:16 Sending to : +00:07:16 ============================================================================ +00:07:16 ============================================================================ +00:07:16 Slot Id : <348> +00:07:16 Transaction Type : RESPONSE +00:07:16 Received From : +00:07:16 ============================================================================ +00:07:16 FNo. Len. Field Value +00:07:16 ============================================================================ +00:07:16 [ 1] [ 4] [0810] +00:07:16 [ 7] [ 10] [0319050624] +00:07:16 [ 11] [ 6] [153053] +00:07:16 [ 39] [ 2] [00] +00:07:16 [ 70] [ 3] [301] +00:07:16 ============================================================================ +00:07:16 Calculate Source COMM Id = 2 +00:07:16 ============================================================================ +00:07:16 + + +waiting on router queue for slot.... +00:07:23 ============================================================================ +00:07:23 Slot Id : <352> +00:07:23 Transaction Type : REQUEST +00:07:23 Received From : +00:07:23 ============================================================================ +00:07:23 FNo. Len. Field Value +00:07:23 ============================================================================ +00:07:23 [ 1] [ 4] [0800] +00:07:23 [ 7] [ 10] [0320071910] +00:07:23 [ 11] [ 6] [001910] +00:07:23 [ 37] [ 12] [57900001910] +00:07:23 [ 70] [ 3] [301] +00:07:23 ============================================================================ +00:07:23 + + +waiting on router queue for slot.... +00:07:23 Sending to : +00:07:23 ============================================================================ +00:07:23 ============================================================================ +00:07:23 Slot Id : <352> +00:07:23 Transaction Type : RESPONSE +00:07:23 Received From : +00:07:23 ============================================================================ +00:07:23 FNo. Len. Field Value +00:07:23 ============================================================================ +00:07:23 [ 1] [ 4] [0810] +00:07:23 [ 7] [ 10] [0320071910] +00:07:23 [ 11] [ 6] [001910] +00:07:23 [ 37] [ 12] [579000019100] +00:07:23 [ 39] [ 2] [00] +00:07:23 [ 70] [ 3] [810] +00:07:23 ============================================================================ +00:07:23 Calculate Source COMM Id = 6 +00:07:23 ============================================================================ +00:07:23 + + +waiting on router queue for slot.... +00:07:31 ============================================================================ +00:07:31 Slot Id : <328> +00:07:31 Transaction Type : REQUEST +00:07:31 Received From : +00:07:31 ============================================================================ +00:07:31 FNo. Len. Field Value +00:07:31 ============================================================================ +00:07:31 [ 1] [ 4] [0800] +00:07:31 [ 7] [ 10] [0319050639] +00:07:31 [ 11] [ 6] [153054] +00:07:31 [ 70] [ 3] [301] +00:07:31 ============================================================================ +00:07:31 + + +waiting on router queue for slot.... +00:07:31 Sending to : +00:07:31 ============================================================================ +00:07:31 ============================================================================ +00:07:31 Slot Id : <328> +00:07:31 Transaction Type : RESPONSE +00:07:31 Received From : +00:07:31 ============================================================================ +00:07:31 FNo. Len. Field Value +00:07:31 ============================================================================ +00:07:31 [ 1] [ 4] [0810] +00:07:31 [ 7] [ 10] [0319050639] +00:07:31 [ 11] [ 6] [153054] +00:07:31 [ 39] [ 2] [00] +00:07:31 [ 70] [ 3] [301] +00:07:31 ============================================================================ +00:07:31 Calculate Source COMM Id = 2 +00:07:31 ============================================================================ +00:07:31 + + +waiting on router queue for slot.... +00:07:47 ============================================================================ +00:07:47 Slot Id : <350> +00:07:47 Transaction Type : REQUEST +00:07:47 Received From : +00:07:47 ============================================================================ +00:07:47 FNo. Len. Field Value +00:07:47 ============================================================================ +00:07:47 [ 1] [ 4] [0800] +00:07:47 [ 7] [ 10] [0319050654] +00:07:47 [ 11] [ 6] [153055] +00:07:47 [ 70] [ 3] [301] +00:07:47 ============================================================================ +00:07:47 + + +waiting on router queue for slot.... +00:07:47 Sending to : +00:07:47 ============================================================================ +00:07:47 ============================================================================ +00:07:47 Slot Id : <350> +00:07:47 Transaction Type : RESPONSE +00:07:47 Received From : +00:07:47 ============================================================================ +00:07:47 FNo. Len. Field Value +00:07:47 ============================================================================ +00:07:47 [ 1] [ 4] [0810] +00:07:47 [ 7] [ 10] [0319050654] +00:07:47 [ 11] [ 6] [153055] +00:07:47 [ 39] [ 2] [00] +00:07:47 [ 70] [ 3] [301] +00:07:47 ============================================================================ +00:07:47 Calculate Source COMM Id = 2 +00:07:47 ============================================================================ +00:07:47 + + +waiting on router queue for slot.... +00:07:49 ============================================================================ +00:07:49 Slot Id : <347> +00:07:49 Transaction Type : REQUEST +00:07:49 Received From : +00:07:49 ============================================================================ +00:07:49 FNo. Len. Field Value +00:07:49 ============================================================================ +00:07:49 [ 1] [ 4] [0800] +00:07:49 [ 2] [ 5] [02531] +00:07:49 [ 3] [ 6] [579008] +00:07:49 [ 7] [ 10] [0319170749] +00:07:49 [ 11] [ 6] [806419] +00:07:49 [ 15] [ 10] [0319170749] +00:07:49 [ 37] [ 11] [57900806419] +00:07:49 [ 70] [ 3] [001] +00:07:49 ============================================================================ +00:07:49 + + +waiting on router queue for slot.... +00:07:49 ============================================================================ +00:07:49 Slot Id : <347> +00:07:49 Transaction Type : RESPONSE +00:07:49 Received From : +00:07:49 ============================================================================ +00:07:49 FNo. Len. Field Value +00:07:49 ============================================================================ +00:07:49 [ 1] [ 4] [0810] +00:07:49 [ 7] [ 10] [0319170749] +00:07:49 [ 11] [ 6] [806419] +00:07:49 [ 15] [ 4] [0319] +00:07:49 [ 37] [ 12] [57900806419] +00:07:49 [ 39] [ 2] [00] +00:07:49 [ 70] [ 3] [001] +00:07:49 ============================================================================ +00:07:49 Sending to : +00:07:49 ============================================================================ +00:07:49 + + +waiting on router queue for slot.... +00:07:57 ============================================================================ +00:07:57 Slot Id : <319> +00:07:57 Transaction Type : REQUEST +00:07:57 Received From : +00:07:57 ============================================================================ +00:07:57 FNo. Len. Field Value +00:07:57 ============================================================================ +00:07:57 [ 1] [ 4] [0800] +00:07:57 [ 7] [ 10] [0319050705] +00:07:57 [ 11] [ 6] [153056] +00:07:57 [ 70] [ 3] [301] +00:07:57 ============================================================================ +00:07:57 + + +waiting on router queue for slot.... +00:07:57 Sending to : +00:07:57 ============================================================================ +00:07:57 ============================================================================ +00:07:57 Slot Id : <319> +00:07:57 Transaction Type : RESPONSE +00:07:57 Received From : +00:07:57 ============================================================================ +00:07:57 FNo. Len. Field Value +00:07:57 ============================================================================ +00:07:57 [ 1] [ 4] [0810] +00:07:57 [ 7] [ 10] [0319050705] +00:07:57 [ 11] [ 6] [153056] +00:07:57 [ 39] [ 2] [00] +00:07:57 [ 70] [ 3] [301] +00:07:57 ============================================================================ +00:07:57 Calculate Source COMM Id = 2 +00:07:57 ============================================================================ +00:07:57 + + +waiting on router queue for slot.... +00:08:08 ============================================================================ +00:08:08 Slot Id : <356> +00:08:08 Transaction Type : REQUEST +00:08:08 Received From : +00:08:08 ============================================================================ +00:08:08 FNo. Len. Field Value +00:08:08 ============================================================================ +00:08:08 [ 1] [ 4] [0800] +00:08:08 [ 7] [ 10] [0319050716] +00:08:08 [ 11] [ 6] [153057] +00:08:08 [ 70] [ 3] [301] +00:08:08 ============================================================================ +00:08:08 + + +waiting on router queue for slot.... +00:08:08 Sending to : +00:08:08 ============================================================================ +00:08:08 ============================================================================ +00:08:08 Slot Id : <356> +00:08:08 Transaction Type : RESPONSE +00:08:08 Received From : +00:08:08 ============================================================================ +00:08:08 FNo. Len. Field Value +00:08:08 ============================================================================ +00:08:08 [ 1] [ 4] [0810] +00:08:08 [ 7] [ 10] [0319050716] +00:08:08 [ 11] [ 6] [153057] +00:08:08 [ 39] [ 2] [00] +00:08:08 [ 70] [ 3] [301] +00:08:08 ============================================================================ +00:08:08 Calculate Source COMM Id = 2 +00:08:08 ============================================================================ +00:08:08 + + +waiting on router queue for slot.... +00:08:19 ============================================================================ +00:08:19 Slot Id : <332> +00:08:19 Transaction Type : REQUEST +00:08:19 Received From : +00:08:19 ============================================================================ +00:08:19 FNo. Len. Field Value +00:08:19 ============================================================================ +00:08:19 [ 1] [ 4] [0800] +00:08:19 [ 7] [ 10] [0319050727] +00:08:19 [ 11] [ 6] [153058] +00:08:19 [ 70] [ 3] [301] +00:08:19 ============================================================================ +00:08:19 + + +waiting on router queue for slot.... +00:08:19 Sending to : +00:08:19 ============================================================================ +00:08:19 ============================================================================ +00:08:19 Slot Id : <332> +00:08:19 Transaction Type : RESPONSE +00:08:19 Received From : +00:08:19 ============================================================================ +00:08:19 FNo. Len. Field Value +00:08:19 ============================================================================ +00:08:19 [ 1] [ 4] [0810] +00:08:19 [ 7] [ 10] [0319050727] +00:08:19 [ 11] [ 6] [153058] +00:08:19 [ 39] [ 2] [00] +00:08:19 [ 70] [ 3] [301] +00:08:19 ============================================================================ +00:08:19 Calculate Source COMM Id = 2 +00:08:19 ============================================================================ +00:08:19 + + +waiting on router queue for slot.... +00:08:28 ============================================================================ +00:08:28 Slot Id : <346> +00:08:28 Transaction Type : REQUEST +00:08:28 Received From : +00:08:28 ============================================================================ +00:08:28 FNo. Len. Field Value +00:08:28 ============================================================================ +00:08:28 [ 1] [ 4] [0800] +00:08:28 [ 7] [ 10] [0320072015] +00:08:28 [ 11] [ 6] [002015] +00:08:28 [ 37] [ 12] [57900002015] +00:08:28 [ 70] [ 3] [301] +00:08:28 ============================================================================ +00:08:28 + + +waiting on router queue for slot.... +00:08:28 Sending to : +00:08:28 ============================================================================ +00:08:28 ============================================================================ +00:08:28 Slot Id : <346> +00:08:28 Transaction Type : RESPONSE +00:08:28 Received From : +00:08:28 ============================================================================ +00:08:28 FNo. Len. Field Value +00:08:28 ============================================================================ +00:08:28 [ 1] [ 4] [0810] +00:08:28 [ 7] [ 10] [0320072015] +00:08:28 [ 11] [ 6] [002015] +00:08:28 [ 37] [ 12] [579000020150] +00:08:28 [ 39] [ 2] [00] +00:08:28 [ 70] [ 3] [810] +00:08:28 ============================================================================ +00:08:28 Calculate Source COMM Id = 6 +00:08:28 ============================================================================ +00:08:28 + + +waiting on router queue for slot.... +00:08:30 ============================================================================ +00:08:30 Slot Id : <330> +00:08:30 Transaction Type : REQUEST +00:08:30 Received From : +00:08:30 ============================================================================ +00:08:30 FNo. Len. Field Value +00:08:30 ============================================================================ +00:08:30 [ 1] [ 4] [0800] +00:08:30 [ 7] [ 10] [0319050738] +00:08:30 [ 11] [ 6] [153059] +00:08:30 [ 70] [ 3] [301] +00:08:30 ============================================================================ +00:08:30 + + +waiting on router queue for slot.... +00:08:30 Sending to : +00:08:30 ============================================================================ +00:08:30 ============================================================================ +00:08:30 Slot Id : <330> +00:08:30 Transaction Type : RESPONSE +00:08:30 Received From : +00:08:30 ============================================================================ +00:08:30 FNo. Len. Field Value +00:08:30 ============================================================================ +00:08:30 [ 1] [ 4] [0810] +00:08:30 [ 7] [ 10] [0319050738] +00:08:30 [ 11] [ 6] [153059] +00:08:30 [ 39] [ 2] [00] +00:08:30 [ 70] [ 3] [301] +00:08:30 ============================================================================ +00:08:30 Calculate Source COMM Id = 2 +00:08:30 ============================================================================ +00:08:30 + + +waiting on router queue for slot.... +00:08:41 ============================================================================ +00:08:41 Slot Id : <357> +00:08:41 Transaction Type : REQUEST +00:08:41 Received From : +00:08:41 ============================================================================ +00:08:41 FNo. Len. Field Value +00:08:41 ============================================================================ +00:08:41 [ 1] [ 4] [0800] +00:08:41 [ 7] [ 10] [0319050749] +00:08:41 [ 11] [ 6] [153060] +00:08:41 [ 70] [ 3] [301] +00:08:41 ============================================================================ +00:08:41 + + +waiting on router queue for slot.... +00:08:41 Sending to : +00:08:41 ============================================================================ +00:08:41 ============================================================================ +00:08:41 Slot Id : <357> +00:08:41 Transaction Type : RESPONSE +00:08:41 Received From : +00:08:41 ============================================================================ +00:08:41 FNo. Len. Field Value +00:08:41 ============================================================================ +00:08:41 [ 1] [ 4] [0810] +00:08:41 [ 7] [ 10] [0319050749] +00:08:41 [ 11] [ 6] [153060] +00:08:41 [ 39] [ 2] [00] +00:08:41 [ 70] [ 3] [301] +00:08:41 ============================================================================ +00:08:41 Calculate Source COMM Id = 2 +00:08:41 ============================================================================ +00:08:41 + + +waiting on router queue for slot.... +00:08:51 ============================================================================ +00:08:51 Slot Id : <343> +00:08:51 Transaction Type : REQUEST +00:08:51 Received From : +00:08:51 ============================================================================ +00:08:51 FNo. Len. Field Value +00:08:51 ============================================================================ +00:08:51 [ 1] [ 4] [0800] +00:08:51 [ 2] [ 5] [02531] +00:08:51 [ 3] [ 6] [579008] +00:08:51 [ 7] [ 10] [0319170851] +00:08:51 [ 11] [ 6] [806420] +00:08:51 [ 15] [ 10] [0319170851] +00:08:51 [ 37] [ 11] [57900806420] +00:08:51 [ 70] [ 3] [001] +00:08:51 ============================================================================ +00:08:51 + + +waiting on router queue for slot.... +00:08:51 ============================================================================ +00:08:51 Slot Id : <343> +00:08:51 Transaction Type : RESPONSE +00:08:51 Received From : +00:08:51 ============================================================================ +00:08:51 FNo. Len. Field Value +00:08:51 ============================================================================ +00:08:51 [ 1] [ 4] [0810] +00:08:51 [ 7] [ 10] [0319170851] +00:08:51 [ 11] [ 6] [806420] +00:08:51 [ 15] [ 4] [0319] +00:08:51 [ 37] [ 12] [57900806420] +00:08:51 [ 39] [ 2] [00] +00:08:51 [ 70] [ 3] [001] +00:08:51 ============================================================================ +00:08:51 Sending to : +00:08:51 ============================================================================ +00:08:51 + + +waiting on router queue for slot.... +00:08:52 ============================================================================ +00:08:52 Slot Id : <366> +00:08:52 Transaction Type : REQUEST +00:08:52 Received From : +00:08:52 ============================================================================ +00:08:52 FNo. Len. Field Value +00:08:52 ============================================================================ +00:08:52 [ 1] [ 4] [0800] +00:08:52 [ 7] [ 10] [0319050759] +00:08:52 [ 11] [ 6] [153061] +00:08:52 [ 70] [ 3] [301] +00:08:52 ============================================================================ +00:08:52 + + +waiting on router queue for slot.... +00:08:52 Sending to : +00:08:52 ============================================================================ +00:08:52 ============================================================================ +00:08:52 Slot Id : <366> +00:08:52 Transaction Type : RESPONSE +00:08:52 Received From : +00:08:52 ============================================================================ +00:08:52 FNo. Len. Field Value +00:08:52 ============================================================================ +00:08:52 [ 1] [ 4] [0810] +00:08:52 [ 7] [ 10] [0319050759] +00:08:52 [ 11] [ 6] [153061] +00:08:52 [ 39] [ 2] [00] +00:08:52 [ 70] [ 3] [301] +00:08:52 ============================================================================ +00:08:52 Calculate Source COMM Id = 2 +00:08:52 ============================================================================ +00:08:52 + + +waiting on router queue for slot.... +00:09:02 ============================================================================ +00:09:02 Slot Id : <365> +00:09:02 Transaction Type : REQUEST +00:09:02 Received From : +00:09:02 ============================================================================ +00:09:02 FNo. Len. Field Value +00:09:02 ============================================================================ +00:09:02 [ 1] [ 4] [0800] +00:09:02 [ 7] [ 10] [0319050809] +00:09:02 [ 11] [ 6] [153062] +00:09:02 [ 70] [ 3] [301] +00:09:02 ============================================================================ +00:09:02 + + +waiting on router queue for slot.... +00:09:02 Sending to : +00:09:02 ============================================================================ +00:09:02 ============================================================================ +00:09:02 Slot Id : <365> +00:09:02 Transaction Type : RESPONSE +00:09:02 Received From : +00:09:02 ============================================================================ +00:09:02 FNo. Len. Field Value +00:09:02 ============================================================================ +00:09:02 [ 1] [ 4] [0810] +00:09:02 [ 7] [ 10] [0319050809] +00:09:02 [ 11] [ 6] [153062] +00:09:02 [ 39] [ 2] [00] +00:09:02 [ 70] [ 3] [301] +00:09:02 ============================================================================ +00:09:02 Calculate Source COMM Id = 2 +00:09:02 ============================================================================ +00:09:02 + + +waiting on router queue for slot.... +00:09:13 ============================================================================ +00:09:13 Slot Id : <313> +00:09:13 Transaction Type : REQUEST +00:09:13 Received From : +00:09:13 ============================================================================ +00:09:13 FNo. Len. Field Value +00:09:13 ============================================================================ +00:09:13 [ 1] [ 4] [0800] +00:09:13 [ 7] [ 10] [0319050820] +00:09:13 [ 11] [ 6] [153063] +00:09:13 [ 70] [ 3] [301] +00:09:13 ============================================================================ +00:09:13 + + +waiting on router queue for slot.... +00:09:13 Sending to : +00:09:13 ============================================================================ +00:09:13 ============================================================================ +00:09:13 Slot Id : <313> +00:09:13 Transaction Type : RESPONSE +00:09:13 Received From : +00:09:13 ============================================================================ +00:09:13 FNo. Len. Field Value +00:09:13 ============================================================================ +00:09:13 [ 1] [ 4] [0810] +00:09:13 [ 7] [ 10] [0319050820] +00:09:13 [ 11] [ 6] [153063] +00:09:13 [ 39] [ 2] [00] +00:09:13 [ 70] [ 3] [301] +00:09:13 ============================================================================ +00:09:13 Calculate Source COMM Id = 2 +00:09:13 ============================================================================ +00:09:13 + + +waiting on router queue for slot.... +00:09:24 ============================================================================ +00:09:24 Slot Id : <371> +00:09:24 Transaction Type : REQUEST +00:09:24 Received From : +00:09:24 ============================================================================ +00:09:24 FNo. Len. Field Value +00:09:24 ============================================================================ +00:09:24 [ 1] [ 4] [0800] +00:09:24 [ 7] [ 10] [0319050831] +00:09:24 [ 11] [ 6] [153064] +00:09:24 [ 70] [ 3] [301] +00:09:24 ============================================================================ +00:09:24 + + +waiting on router queue for slot.... +00:09:24 Sending to : +00:09:24 ============================================================================ +00:09:24 ============================================================================ +00:09:24 Slot Id : <371> +00:09:24 Transaction Type : RESPONSE +00:09:24 Received From : +00:09:24 ============================================================================ +00:09:24 FNo. Len. Field Value +00:09:24 ============================================================================ +00:09:24 [ 1] [ 4] [0810] +00:09:24 [ 7] [ 10] [0319050831] +00:09:24 [ 11] [ 6] [153064] +00:09:24 [ 39] [ 2] [00] +00:09:24 [ 70] [ 3] [301] +00:09:24 ============================================================================ +00:09:24 Calculate Source COMM Id = 2 +00:09:24 ============================================================================ +00:09:24 + + +waiting on router queue for slot.... +00:09:33 ============================================================================ +00:09:33 Slot Id : <340> +00:09:33 Transaction Type : REQUEST +00:09:33 Received From : +00:09:33 ============================================================================ +00:09:33 FNo. Len. Field Value +00:09:33 ============================================================================ +00:09:33 [ 1] [ 4] [0800] +00:09:33 [ 7] [ 10] [0320072120] +00:09:33 [ 11] [ 6] [002120] +00:09:33 [ 37] [ 12] [57900002120] +00:09:33 [ 70] [ 3] [301] +00:09:33 ============================================================================ +00:09:33 + + +waiting on router queue for slot.... +00:09:33 Sending to : +00:09:33 ============================================================================ +00:09:33 ============================================================================ +00:09:33 Slot Id : <340> +00:09:33 Transaction Type : RESPONSE +00:09:33 Received From : +00:09:33 ============================================================================ +00:09:33 FNo. Len. Field Value +00:09:33 ============================================================================ +00:09:33 [ 1] [ 4] [0810] +00:09:33 [ 7] [ 10] [0320072120] +00:09:33 [ 11] [ 6] [002120] +00:09:33 [ 37] [ 12] [579000021200] +00:09:33 [ 39] [ 2] [00] +00:09:33 [ 70] [ 3] [810] +00:09:33 ============================================================================ +00:09:33 Calculate Source COMM Id = 6 +00:09:33 ============================================================================ +00:09:33 + + +waiting on router queue for slot.... +00:09:35 ============================================================================ +00:09:35 Slot Id : <324> +00:09:35 Transaction Type : REQUEST +00:09:35 Received From : +00:09:35 ============================================================================ +00:09:35 FNo. Len. Field Value +00:09:35 ============================================================================ +00:09:35 [ 1] [ 4] [0800] +00:09:35 [ 7] [ 10] [0319050842] +00:09:35 [ 11] [ 6] [153065] +00:09:35 [ 70] [ 3] [301] +00:09:35 ============================================================================ +00:09:35 + + +waiting on router queue for slot.... +00:09:35 Sending to : +00:09:35 ============================================================================ +00:09:35 ============================================================================ +00:09:35 Slot Id : <324> +00:09:35 Transaction Type : RESPONSE +00:09:35 Received From : +00:09:35 ============================================================================ +00:09:35 FNo. Len. Field Value +00:09:35 ============================================================================ +00:09:35 [ 1] [ 4] [0810] +00:09:35 [ 7] [ 10] [0319050842] +00:09:35 [ 11] [ 6] [153065] +00:09:35 [ 39] [ 2] [00] +00:09:35 [ 70] [ 3] [301] +00:09:35 ============================================================================ +00:09:35 Calculate Source COMM Id = 2 +00:09:35 ============================================================================ +00:09:35 + + +waiting on router queue for slot.... +00:09:50 ============================================================================ +00:09:50 Slot Id : <378> +00:09:50 Transaction Type : REQUEST +00:09:50 Received From : +00:09:50 ============================================================================ +00:09:50 FNo. Len. Field Value +00:09:50 ============================================================================ +00:09:50 [ 1] [ 4] [0800] +00:09:50 [ 7] [ 10] [0319050858] +00:09:50 [ 11] [ 6] [153066] +00:09:50 [ 70] [ 3] [301] +00:09:50 ============================================================================ +00:09:50 + + +waiting on router queue for slot.... +00:09:50 Sending to : +00:09:50 ============================================================================ +00:09:50 ============================================================================ +00:09:50 Slot Id : <378> +00:09:50 Transaction Type : RESPONSE +00:09:50 Received From : +00:09:50 ============================================================================ +00:09:50 FNo. Len. Field Value +00:09:50 ============================================================================ +00:09:50 [ 1] [ 4] [0810] +00:09:50 [ 7] [ 10] [0319050858] +00:09:50 [ 11] [ 6] [153066] +00:09:50 [ 39] [ 2] [00] +00:09:50 [ 70] [ 3] [301] +00:09:50 ============================================================================ +00:09:50 Calculate Source COMM Id = 2 +00:09:50 ============================================================================ +00:09:50 + + +waiting on router queue for slot.... +00:09:53 ============================================================================ +00:09:53 Slot Id : <353> +00:09:53 Transaction Type : REQUEST +00:09:53 Received From : +00:09:53 ============================================================================ +00:09:53 FNo. Len. Field Value +00:09:53 ============================================================================ +00:09:53 [ 1] [ 4] [0800] +00:09:53 [ 2] [ 5] [02531] +00:09:53 [ 3] [ 6] [579008] +00:09:53 [ 7] [ 10] [0319170953] +00:09:53 [ 11] [ 6] [806421] +00:09:53 [ 15] [ 10] [0319170953] +00:09:53 [ 37] [ 11] [57900806421] +00:09:53 [ 70] [ 3] [001] +00:09:53 ============================================================================ +00:09:53 + + +waiting on router queue for slot.... +00:09:53 ============================================================================ +00:09:53 Slot Id : <353> +00:09:53 Transaction Type : RESPONSE +00:09:53 Received From : +00:09:53 ============================================================================ +00:09:53 FNo. Len. Field Value +00:09:53 ============================================================================ +00:09:53 [ 1] [ 4] [0810] +00:09:53 [ 7] [ 10] [0319170953] +00:09:53 [ 11] [ 6] [806421] +00:09:53 [ 15] [ 4] [0319] +00:09:53 [ 37] [ 12] [57900806421] +00:09:53 [ 39] [ 2] [00] +00:09:53 [ 70] [ 3] [001] +00:09:53 ============================================================================ +00:09:53 Sending to : +00:09:53 ============================================================================ +00:09:53 + + +waiting on router queue for slot.... +00:09:56 ============================================================================ +00:09:56 Slot Id : <373> +00:09:56 Transaction Type : REQUEST +00:09:56 Received From : +00:09:56 ============================================================================ +00:09:56 FNo. Len. Field Value +00:09:56 ============================================================================ +00:09:56 [ 1] [ 4] [0800] +00:09:56 [ 7] [ 10] [0319171742] +00:09:56 [ 11] [ 6] [044042] +00:09:56 [ 37] [ 12] [57900044042] +00:09:56 [ 70] [ 3] [301] +00:09:56 ============================================================================ +00:09:56 + + +waiting on router queue for slot.... +00:09:56 Sending to : +00:09:56 ============================================================================ +00:09:56 ============================================================================ +00:09:56 Slot Id : <373> +00:09:56 Transaction Type : RESPONSE +00:09:56 Received From : +00:09:56 ============================================================================ +00:09:56 FNo. Len. Field Value +00:09:56 ============================================================================ +00:09:56 [ 1] [ 4] [0810] +00:09:56 [ 7] [ 10] [0319171742] +00:09:56 [ 11] [ 6] [044042] +00:09:56 [ 37] [ 12] [579000440420] +00:09:56 [ 39] [ 2] [00] +00:09:56 [ 70] [ 3] [810] +00:09:56 ============================================================================ +00:09:56 Calculate Source COMM Id = 1 +00:09:56 ============================================================================ +00:09:56 + + +waiting on router queue for slot.... +00:10:01 ============================================================================ +00:10:01 Slot Id : <355> +00:10:01 Transaction Type : REQUEST +00:10:01 Received From : +00:10:01 ============================================================================ +00:10:01 FNo. Len. Field Value +00:10:01 ============================================================================ +00:10:01 [ 1] [ 4] [0800] +00:10:01 [ 7] [ 10] [0319050908] +00:10:01 [ 11] [ 6] [153067] +00:10:01 [ 70] [ 3] [301] +00:10:01 ============================================================================ +00:10:01 + + +waiting on router queue for slot.... +00:10:01 Sending to : +00:10:01 ============================================================================ +00:10:01 ============================================================================ +00:10:01 Slot Id : <355> +00:10:01 Transaction Type : RESPONSE +00:10:01 Received From : +00:10:01 ============================================================================ +00:10:01 FNo. Len. Field Value +00:10:01 ============================================================================ +00:10:01 [ 1] [ 4] [0810] +00:10:01 [ 7] [ 10] [0319050908] +00:10:01 [ 11] [ 6] [153067] +00:10:01 [ 39] [ 2] [00] +00:10:01 [ 70] [ 3] [301] +00:10:01 ============================================================================ +00:10:01 Calculate Source COMM Id = 2 +00:10:01 ============================================================================ +00:10:01 + + +waiting on router queue for slot.... +00:10:12 ============================================================================ +00:10:12 Slot Id : <363> +00:10:12 Transaction Type : REQUEST +00:10:12 Received From : +00:10:12 ============================================================================ +00:10:12 FNo. Len. Field Value +00:10:12 ============================================================================ +00:10:12 [ 1] [ 4] [0800] +00:10:12 [ 7] [ 10] [0319050919] +00:10:12 [ 11] [ 6] [153068] +00:10:12 [ 70] [ 3] [301] +00:10:12 ============================================================================ +00:10:12 + + +waiting on router queue for slot.... +00:10:12 Sending to : +00:10:12 ============================================================================ +00:10:12 ============================================================================ +00:10:12 Slot Id : <363> +00:10:12 Transaction Type : RESPONSE +00:10:12 Received From : +00:10:12 ============================================================================ +00:10:12 FNo. Len. Field Value +00:10:12 ============================================================================ +00:10:12 [ 1] [ 4] [0810] +00:10:12 [ 7] [ 10] [0319050919] +00:10:12 [ 11] [ 6] [153068] +00:10:12 [ 39] [ 2] [00] +00:10:12 [ 70] [ 3] [301] +00:10:12 ============================================================================ +00:10:12 Calculate Source COMM Id = 2 +00:10:12 ============================================================================ +00:10:12 + + +waiting on router queue for slot.... +00:10:27 ============================================================================ +00:10:27 Slot Id : <382> +00:10:27 Transaction Type : REQUEST +00:10:27 Received From : +00:10:27 ============================================================================ +00:10:27 FNo. Len. Field Value +00:10:27 ============================================================================ +00:10:27 [ 1] [ 4] [0800] +00:10:27 [ 7] [ 10] [0319050935] +00:10:27 [ 11] [ 6] [153069] +00:10:27 [ 70] [ 3] [301] +00:10:27 ============================================================================ +00:10:27 + + +waiting on router queue for slot.... +00:10:27 Sending to : +00:10:27 ============================================================================ +00:10:27 ============================================================================ +00:10:27 Slot Id : <382> +00:10:27 Transaction Type : RESPONSE +00:10:27 Received From : +00:10:27 ============================================================================ +00:10:27 FNo. Len. Field Value +00:10:27 ============================================================================ +00:10:27 [ 1] [ 4] [0810] +00:10:27 [ 7] [ 10] [0319050935] +00:10:27 [ 11] [ 6] [153069] +00:10:27 [ 39] [ 2] [00] +00:10:27 [ 70] [ 3] [301] +00:10:27 ============================================================================ +00:10:27 Calculate Source COMM Id = 2 +00:10:27 ============================================================================ +00:10:27 + + +waiting on router queue for slot.... +00:10:38 ============================================================================ +00:10:38 Slot Id : <358> +00:10:38 Transaction Type : REQUEST +00:10:38 Received From : +00:10:38 ============================================================================ +00:10:38 FNo. Len. Field Value +00:10:38 ============================================================================ +00:10:38 [ 1] [ 4] [0800] +00:10:38 [ 7] [ 10] [0320072225] +00:10:38 [ 11] [ 6] [002225] +00:10:38 [ 37] [ 12] [57900002225] +00:10:38 [ 70] [ 3] [301] +00:10:38 ============================================================================ +00:10:38 + + +waiting on router queue for slot.... +00:10:38 Sending to : +00:10:38 ============================================================================ +00:10:38 ============================================================================ +00:10:38 Slot Id : <358> +00:10:38 Transaction Type : RESPONSE +00:10:38 Received From : +00:10:38 ============================================================================ +00:10:38 FNo. Len. Field Value +00:10:38 ============================================================================ +00:10:38 [ 1] [ 4] [0810] +00:10:38 [ 7] [ 10] [0320072225] +00:10:38 [ 11] [ 6] [002225] +00:10:38 [ 37] [ 12] [579000022250] +00:10:38 [ 39] [ 2] [00] +00:10:38 [ 70] [ 3] [810] +00:10:38 ============================================================================ +00:10:38 Calculate Source COMM Id = 6 +00:10:38 ============================================================================ +00:10:38 + + +waiting on router queue for slot.... +00:10:38 ============================================================================ +00:10:38 Slot Id : <338> +00:10:38 Transaction Type : REQUEST +00:10:38 Received From : +00:10:38 ============================================================================ +00:10:38 FNo. Len. Field Value +00:10:38 ============================================================================ +00:10:38 [ 1] [ 4] [0800] +00:10:38 [ 7] [ 10] [0319050946] +00:10:38 [ 11] [ 6] [153070] +00:10:38 [ 70] [ 3] [301] +00:10:38 ============================================================================ +00:10:38 + + +waiting on router queue for slot.... +00:10:38 Sending to : +00:10:38 ============================================================================ +00:10:38 ============================================================================ +00:10:38 Slot Id : <338> +00:10:38 Transaction Type : RESPONSE +00:10:38 Received From : +00:10:38 ============================================================================ +00:10:38 FNo. Len. Field Value +00:10:38 ============================================================================ +00:10:38 [ 1] [ 4] [0810] +00:10:38 [ 7] [ 10] [0319050946] +00:10:38 [ 11] [ 6] [153070] +00:10:38 [ 39] [ 2] [00] +00:10:38 [ 70] [ 3] [301] +00:10:38 ============================================================================ +00:10:38 Calculate Source COMM Id = 2 +00:10:38 ============================================================================ +00:10:38 + + +waiting on router queue for slot.... +00:10:49 ============================================================================ +00:10:49 Slot Id : <370> +00:10:49 Transaction Type : REQUEST +00:10:49 Received From : +00:10:49 ============================================================================ +00:10:49 FNo. Len. Field Value +00:10:49 ============================================================================ +00:10:49 [ 1] [ 4] [0800] +00:10:49 [ 7] [ 10] [0319050957] +00:10:49 [ 11] [ 6] [153071] +00:10:49 [ 70] [ 3] [301] +00:10:49 ============================================================================ +00:10:49 + + +waiting on router queue for slot.... +00:10:49 Sending to : +00:10:49 ============================================================================ +00:10:49 ============================================================================ +00:10:49 Slot Id : <370> +00:10:49 Transaction Type : RESPONSE +00:10:49 Received From : +00:10:49 ============================================================================ +00:10:49 FNo. Len. Field Value +00:10:49 ============================================================================ +00:10:49 [ 1] [ 4] [0810] +00:10:49 [ 7] [ 10] [0319050957] +00:10:49 [ 11] [ 6] [153071] +00:10:49 [ 39] [ 2] [00] +00:10:49 [ 70] [ 3] [301] +00:10:49 ============================================================================ +00:10:49 Calculate Source COMM Id = 2 +00:10:49 ============================================================================ +00:10:49 + + +waiting on router queue for slot.... +00:10:55 ============================================================================ +00:10:55 Slot Id : <360> +00:10:55 Transaction Type : REQUEST +00:10:55 Received From : +00:10:55 ============================================================================ +00:10:55 FNo. Len. Field Value +00:10:55 ============================================================================ +00:10:55 [ 1] [ 4] [0800] +00:10:55 [ 2] [ 5] [02531] +00:10:55 [ 3] [ 6] [579008] +00:10:55 [ 7] [ 10] [0319171055] +00:10:55 [ 11] [ 6] [806422] +00:10:55 [ 15] [ 10] [0319171055] +00:10:55 [ 37] [ 11] [57900806422] +00:10:55 [ 70] [ 3] [001] +00:10:55 ============================================================================ +00:10:55 + + +waiting on router queue for slot.... +00:10:55 ============================================================================ +00:10:55 Slot Id : <360> +00:10:55 Transaction Type : RESPONSE +00:10:55 Received From : +00:10:55 ============================================================================ +00:10:55 FNo. Len. Field Value +00:10:55 ============================================================================ +00:10:55 [ 1] [ 4] [0810] +00:10:55 [ 7] [ 10] [0319171055] +00:10:55 [ 11] [ 6] [806422] +00:10:55 [ 15] [ 4] [0319] +00:10:55 [ 37] [ 12] [57900806422] +00:10:55 [ 39] [ 2] [00] +00:10:55 [ 70] [ 3] [001] +00:10:55 ============================================================================ +00:10:55 Sending to : +00:10:55 ============================================================================ +00:10:55 + + +waiting on router queue for slot.... +00:11:06 ============================================================================ +00:11:06 Slot Id : <379> +00:11:06 Transaction Type : REQUEST +00:11:06 Received From : +00:11:06 ============================================================================ +00:11:06 FNo. Len. Field Value +00:11:06 ============================================================================ +00:11:06 [ 1] [ 4] [0800] +00:11:06 [ 7] [ 10] [0319051013] +00:11:06 [ 11] [ 6] [153072] +00:11:06 [ 70] [ 3] [301] +00:11:06 ============================================================================ +00:11:06 + + +waiting on router queue for slot.... +00:11:06 Sending to : +00:11:06 ============================================================================ +00:11:06 ============================================================================ +00:11:06 Slot Id : <379> +00:11:06 Transaction Type : RESPONSE +00:11:06 Received From : +00:11:06 ============================================================================ +00:11:06 FNo. Len. Field Value +00:11:06 ============================================================================ +00:11:06 [ 1] [ 4] [0810] +00:11:06 [ 7] [ 10] [0319051013] +00:11:06 [ 11] [ 6] [153072] +00:11:06 [ 39] [ 2] [00] +00:11:06 [ 70] [ 3] [301] +00:11:06 ============================================================================ +00:11:06 Calculate Source COMM Id = 2 +00:11:06 ============================================================================ +00:11:06 + + +waiting on router queue for slot.... +00:11:17 ============================================================================ +00:11:17 Slot Id : <396> +00:11:17 Transaction Type : REQUEST +00:11:17 Received From : +00:11:17 ============================================================================ +00:11:17 FNo. Len. Field Value +00:11:17 ============================================================================ +00:11:17 [ 1] [ 4] [0800] +00:11:17 [ 7] [ 10] [0319051024] +00:11:17 [ 11] [ 6] [153073] +00:11:17 [ 70] [ 3] [301] +00:11:17 ============================================================================ +00:11:17 + + +waiting on router queue for slot.... +00:11:17 Sending to : +00:11:17 ============================================================================ +00:11:17 ============================================================================ +00:11:17 Slot Id : <396> +00:11:17 Transaction Type : RESPONSE +00:11:17 Received From : +00:11:17 ============================================================================ +00:11:17 FNo. Len. Field Value +00:11:17 ============================================================================ +00:11:17 [ 1] [ 4] [0810] +00:11:17 [ 7] [ 10] [0319051024] +00:11:17 [ 11] [ 6] [153073] +00:11:17 [ 39] [ 2] [00] +00:11:17 [ 70] [ 3] [301] +00:11:17 ============================================================================ +00:11:17 Calculate Source COMM Id = 2 +00:11:17 ============================================================================ +00:11:17 + + +waiting on router queue for slot.... +00:11:21 ============================================================================ +00:11:21 Slot Id : <354> +00:11:21 Transaction Type : REQUEST +00:11:21 Received From : +00:11:21 ============================================================================ +00:11:21 FNo. Len. Field Value +00:11:21 ============================================================================ +00:11:21 [ 1] [ 4] [0800] +00:11:21 [ 7] [ 10] [0319170912] +00:11:21 [ 11] [ 6] [095384] +00:11:21 [ 37] [ 12] [57900095384] +00:11:21 [ 70] [ 3] [301] +00:11:21 ============================================================================ +00:11:21 + + +waiting on router queue for slot.... +00:11:21 Sending to : +00:11:21 ============================================================================ +00:11:21 ============================================================================ +00:11:21 Slot Id : <354> +00:11:21 Transaction Type : RESPONSE +00:11:21 Received From : +00:11:21 ============================================================================ +00:11:21 FNo. Len. Field Value +00:11:21 ============================================================================ +00:11:21 [ 1] [ 4] [0810] +00:11:21 [ 7] [ 10] [0319170912] +00:11:21 [ 11] [ 6] [095384] +00:11:21 [ 37] [ 12] [579000953840] +00:11:21 [ 39] [ 2] [00] +00:11:21 [ 70] [ 3] [810] +00:11:21 ============================================================================ +00:11:21 Calculate Source COMM Id = 4 +00:11:21 ============================================================================ +00:11:21 + + +waiting on router queue for slot.... +00:11:32 ============================================================================ +00:11:32 Slot Id : <369> +00:11:32 Transaction Type : REQUEST +00:11:32 Received From : +00:11:32 ============================================================================ +00:11:32 FNo. Len. Field Value +00:11:32 ============================================================================ +00:11:32 [ 1] [ 4] [0800] +00:11:32 [ 7] [ 10] [0319051039] +00:11:32 [ 11] [ 6] [153074] +00:11:32 [ 70] [ 3] [301] +00:11:32 ============================================================================ +00:11:32 + + +waiting on router queue for slot.... +00:11:32 Sending to : +00:11:32 ============================================================================ +00:11:32 ============================================================================ +00:11:32 Slot Id : <369> +00:11:32 Transaction Type : RESPONSE +00:11:32 Received From : +00:11:32 ============================================================================ +00:11:32 FNo. Len. Field Value +00:11:32 ============================================================================ +00:11:32 [ 1] [ 4] [0810] +00:11:32 [ 7] [ 10] [0319051039] +00:11:32 [ 11] [ 6] [153074] +00:11:32 [ 39] [ 2] [00] +00:11:32 [ 70] [ 3] [301] +00:11:32 ============================================================================ +00:11:32 Calculate Source COMM Id = 2 +00:11:32 ============================================================================ +00:11:32 + + +waiting on router queue for slot.... +00:11:43 ============================================================================ +00:11:43 Slot Id : <351> +00:11:43 Transaction Type : REQUEST +00:11:43 Received From : +00:11:43 ============================================================================ +00:11:43 FNo. Len. Field Value +00:11:43 ============================================================================ +00:11:43 [ 1] [ 4] [0800] +00:11:43 [ 7] [ 10] [0319051050] +00:11:43 [ 11] [ 6] [153075] +00:11:43 [ 70] [ 3] [301] +00:11:43 ============================================================================ +00:11:43 + + +waiting on router queue for slot.... +00:11:43 Sending to : +00:11:43 ============================================================================ +00:11:43 ============================================================================ +00:11:43 Slot Id : <351> +00:11:43 Transaction Type : RESPONSE +00:11:43 Received From : +00:11:43 ============================================================================ +00:11:43 FNo. Len. Field Value +00:11:43 ============================================================================ +00:11:43 [ 1] [ 4] [0810] +00:11:43 [ 7] [ 10] [0319051050] +00:11:43 [ 11] [ 6] [153075] +00:11:43 [ 39] [ 2] [00] +00:11:43 [ 70] [ 3] [301] +00:11:43 ============================================================================ +00:11:43 Calculate Source COMM Id = 2 +00:11:43 ============================================================================ +00:11:43 + + +waiting on router queue for slot.... +00:11:43 ============================================================================ +00:11:43 Slot Id : <374> +00:11:43 Transaction Type : REQUEST +00:11:43 Received From : +00:11:43 ============================================================================ +00:11:43 FNo. Len. Field Value +00:11:43 ============================================================================ +00:11:43 [ 1] [ 4] [0800] +00:11:43 [ 7] [ 10] [0320072330] +00:11:43 [ 11] [ 6] [002330] +00:11:43 [ 37] [ 12] [57900002330] +00:11:43 [ 70] [ 3] [301] +00:11:43 ============================================================================ +00:11:43 + + +waiting on router queue for slot.... +00:11:43 Sending to : +00:11:43 ============================================================================ +00:11:43 ============================================================================ +00:11:43 Slot Id : <374> +00:11:43 Transaction Type : RESPONSE +00:11:43 Received From : +00:11:43 ============================================================================ +00:11:43 FNo. Len. Field Value +00:11:43 ============================================================================ +00:11:43 [ 1] [ 4] [0810] +00:11:43 [ 7] [ 10] [0320072330] +00:11:43 [ 11] [ 6] [002330] +00:11:43 [ 37] [ 12] [579000023300] +00:11:43 [ 39] [ 2] [00] +00:11:43 [ 70] [ 3] [810] +00:11:43 ============================================================================ +00:11:43 Calculate Source COMM Id = 6 +00:11:43 ============================================================================ +00:11:43 + + +waiting on router queue for slot.... +00:11:53 ============================================================================ +00:11:53 Slot Id : <389> +00:11:53 Transaction Type : REQUEST +00:11:53 Received From : +00:11:53 ============================================================================ +00:11:53 FNo. Len. Field Value +00:11:53 ============================================================================ +00:11:53 [ 1] [ 4] [0800] +00:11:53 [ 7] [ 10] [0319051101] +00:11:53 [ 11] [ 6] [153076] +00:11:53 [ 70] [ 3] [301] +00:11:53 ============================================================================ +00:11:53 + + +waiting on router queue for slot.... +00:11:53 Sending to : +00:11:53 ============================================================================ +00:11:53 ============================================================================ +00:11:53 Slot Id : <389> +00:11:53 Transaction Type : RESPONSE +00:11:53 Received From : +00:11:53 ============================================================================ +00:11:53 FNo. Len. Field Value +00:11:53 ============================================================================ +00:11:53 [ 1] [ 4] [0810] +00:11:53 [ 7] [ 10] [0319051101] +00:11:53 [ 11] [ 6] [153076] +00:11:53 [ 39] [ 2] [00] +00:11:53 [ 70] [ 3] [301] +00:11:53 ============================================================================ +00:11:53 Calculate Source COMM Id = 2 +00:11:53 ============================================================================ +00:11:53 + + +waiting on router queue for slot.... +00:11:57 ============================================================================ +00:11:57 Slot Id : <390> +00:11:57 Transaction Type : REQUEST +00:11:57 Received From : +00:11:57 ============================================================================ +00:11:57 FNo. Len. Field Value +00:11:57 ============================================================================ +00:11:57 [ 1] [ 4] [0800] +00:11:57 [ 2] [ 5] [02531] +00:11:57 [ 3] [ 6] [579008] +00:11:57 [ 7] [ 10] [0319171157] +00:11:57 [ 11] [ 6] [806423] +00:11:57 [ 15] [ 10] [0319171157] +00:11:57 [ 37] [ 11] [57900806423] +00:11:57 [ 70] [ 3] [001] +00:11:57 ============================================================================ +00:11:57 + + +waiting on router queue for slot.... +00:11:57 ============================================================================ +00:11:57 Slot Id : <390> +00:11:57 Transaction Type : RESPONSE +00:11:57 Received From : +00:11:57 ============================================================================ +00:11:57 FNo. Len. Field Value +00:11:57 ============================================================================ +00:11:57 [ 1] [ 4] [0810] +00:11:57 [ 7] [ 10] [0319171157] +00:11:57 [ 11] [ 6] [806423] +00:11:57 [ 15] [ 4] [0319] +00:11:57 [ 37] [ 12] [57900806423] +00:11:57 [ 39] [ 2] [00] +00:11:57 [ 70] [ 3] [001] +00:11:57 ============================================================================ +00:11:57 Sending to : +00:11:57 ============================================================================ +00:11:57 + + +waiting on router queue for slot.... +00:12:08 ============================================================================ +00:12:08 Slot Id : <395> +00:12:08 Transaction Type : REQUEST +00:12:08 Received From : +00:12:08 ============================================================================ +00:12:08 FNo. Len. Field Value +00:12:08 ============================================================================ +00:12:08 [ 1] [ 4] [0200] +00:12:08 [ 2] [ 16] [6688990101664801] +00:12:08 [ 3] [ 6] [011000] +00:12:08 [ 4] [ 12] [000100000000] +00:12:08 [ 7] [ 10] [0320001204] +00:12:08 [ 11] [ 6] [661405] +00:12:08 [ 12] [ 6] [001204] +00:12:08 [ 13] [ 4] [0320] +00:12:08 [ 15] [ 4] [0320] +00:12:08 [ 18] [ 4] [6011] +00:12:08 [ 22] [ 3] [900] +00:12:08 [ 25] [ 2] [02] +00:12:08 [ 28] [ 9] [D00002000] +00:12:08 [ 32] [ 6] [621354] +00:12:08 [ 35] [ 37] [6688990101664801=42051231480134300000] +00:12:08 [ 37] [ 12] [507902826410] +00:12:08 [ 41] [ 8] [01007600] +00:12:08 [ 42] [ 15] [NATIVE ] +00:12:08 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +00:12:08 [ 49] [ 3] [418] +00:12:08 [ 52] [ 16] [9E34E9942DAA6158] +00:12:08 ============================================================================ +00:12:08 + + +waiting on router queue for slot.... +00:12:08 Sending to : +00:12:08 ============================================================================ +00:12:08 Sending to : +00:12:08 ============================================================================ +00:12:09 ============================================================================ +00:12:09 Slot Id : <395> +00:12:09 Transaction Type : REQUEST +00:12:09 Received From : +00:12:09 ============================================================================ +00:12:09 FNo. Len. Field Value +00:12:09 ============================================================================ +00:12:09 [ 1] [ 4] [0200] +00:12:09 [ 2] [ 16] [6688990101664801] +00:12:09 [ 3] [ 6] [011000] +00:12:09 [ 4] [ 12] [000100000000] +00:12:09 [ 7] [ 10] [0320001204] +00:12:09 [ 11] [ 6] [661405] +00:12:09 [ 12] [ 6] [001204] +00:12:09 [ 13] [ 4] [0320] +00:12:09 [ 15] [ 4] [0320] +00:12:09 [ 18] [ 4] [6011] +00:12:09 [ 22] [ 3] [900] +00:12:09 [ 25] [ 2] [02] +00:12:09 [ 28] [ 9] [D00002000] +00:12:09 [ 32] [ 6] [621354] +00:12:09 [ 35] [ 37] [6688990101664801=42051231480134300000] +00:12:09 [ 37] [ 12] [507902826410] +00:12:09 [ 41] [ 8] [01007600] +00:12:09 [ 42] [ 15] [NATIVE ] +00:12:09 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +00:12:09 [ 49] [ 3] [418] +00:12:09 [ 52] [ 16] [9E34E9942DAA6158] +00:12:09 ============================================================================ +00:12:09 + + +waiting on router queue for slot.... +00:12:09 Sending to : +00:12:09 ============================================================================ +00:12:09 ============================================================================ +00:12:09 Slot Id : <395> +00:12:09 Transaction Type : REQUEST +00:12:09 Received From : +00:12:09 ============================================================================ +00:12:09 FNo. Len. Field Value +00:12:09 ============================================================================ +00:12:09 [ 1] [ 4] [0200] +00:12:09 [ 2] [ 16] [6688990101664801] +00:12:09 [ 3] [ 6] [011000] +00:12:09 [ 4] [ 12] [000100000000] +00:12:09 [ 7] [ 10] [0320001204] +00:12:09 [ 11] [ 6] [661405] +00:12:09 [ 12] [ 6] [001204] +00:12:09 [ 13] [ 4] [0320] +00:12:09 [ 15] [ 4] [0320] +00:12:09 [ 18] [ 4] [6011] +00:12:09 [ 22] [ 3] [900] +00:12:09 [ 25] [ 2] [02] +00:12:09 [ 28] [ 9] [D00002000] +00:12:09 [ 32] [ 6] [621354] +00:12:09 [ 35] [ 37] [6688990101664801=42051231480134300000] +00:12:09 [ 37] [ 12] [507902826410] +00:12:09 [ 41] [ 8] [01007600] +00:12:09 [ 42] [ 15] [NATIVE ] +00:12:09 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +00:12:09 [ 49] [ 3] [418] +00:12:09 [ 52] [ 16] [5DA46ACF1B493566] +00:12:09 ============================================================================ +00:12:09 + + +waiting on router queue for slot.... +00:12:09 Sending to : <4> +00:12:09 ============================================================================ +00:12:09 ============================================================================ +00:12:09 Slot Id : <376> +00:12:09 Transaction Type : REQUEST +00:12:09 Received From : +00:12:09 ============================================================================ +00:12:09 FNo. Len. Field Value +00:12:09 ============================================================================ +00:12:09 [ 1] [ 4] [0800] +00:12:09 [ 7] [ 10] [0319051117] +00:12:09 [ 11] [ 6] [153077] +00:12:09 [ 70] [ 3] [301] +00:12:09 ============================================================================ +00:12:09 + + +waiting on router queue for slot.... +00:12:09 Sending to : +00:12:09 ============================================================================ +00:12:09 ============================================================================ +00:12:09 Slot Id : <376> +00:12:09 Transaction Type : RESPONSE +00:12:09 Received From : +00:12:09 ============================================================================ +00:12:09 FNo. Len. Field Value +00:12:09 ============================================================================ +00:12:09 [ 1] [ 4] [0810] +00:12:09 [ 7] [ 10] [0319051117] +00:12:09 [ 11] [ 6] [153077] +00:12:09 [ 39] [ 2] [00] +00:12:09 [ 70] [ 3] [301] +00:12:09 ============================================================================ +00:12:09 Calculate Source COMM Id = 2 +00:12:09 ============================================================================ +00:12:09 + + +waiting on router queue for slot.... +00:12:10 ============================================================================ +00:12:10 Slot Id : <395> +00:12:10 Transaction Type : RESPONSE +00:12:10 Received From : +00:12:10 ============================================================================ +00:12:10 FNo. Len. Field Value +00:12:10 ============================================================================ +00:12:10 [ 1] [ 4] [0210] +00:12:10 [ 2] [ 16] [6688990101664801] +00:12:10 [ 3] [ 6] [011000] +00:12:10 [ 4] [ 12] [000100000000] +00:12:10 [ 11] [ 6] [661405] +00:12:10 [ 12] [ 6] [001204] +00:12:10 [ 15] [ 4] [0320] +00:12:10 [ 18] [ 4] [6011] +00:12:10 [ 32] [ 6] [621354] +00:12:10 [ 35] [ 37] [6688990101664801=42051231480134300000] +00:12:10 [ 37] [ 12] [507902826410] +00:12:10 [ 38] [ 6] [033280] +00:12:10 [ 39] [ 2] [00] +00:12:10 [ 41] [ 8] [01007600] +00:12:10 [ 49] [ 3] [418] +00:12:10 [ 54] [ 20] [1002418C000074803795] +00:12:10 ============================================================================ +00:12:10 Sending to : +00:12:10 ============================================================================ +00:12:10 + + +waiting on router queue for slot.... +00:12:11 ============================================================================ +00:12:11 Slot Id : <395> +00:12:11 Transaction Type : RESPONSE +00:12:11 Received From : +00:12:11 ============================================================================ +00:12:11 FNo. Len. Field Value +00:12:11 ============================================================================ +00:12:11 [ 1] [ 4] [0210] +00:12:11 [ 2] [ 16] [6688990101664801] +00:12:11 [ 3] [ 6] [011000] +00:12:11 [ 4] [ 12] [000100000000] +00:12:11 [ 11] [ 6] [661405] +00:12:11 [ 12] [ 6] [001204] +00:12:11 [ 15] [ 4] [0320] +00:12:11 [ 18] [ 4] [6011] +00:12:11 [ 32] [ 6] [621354] +00:12:11 [ 35] [ 37] [6688990101664801=42051231480134300000] +00:12:11 [ 37] [ 12] [507902826410] +00:12:11 [ 38] [ 6] [033280] +00:12:11 [ 39] [ 2] [00] +00:12:11 [ 41] [ 8] [01007600] +00:12:11 [ 49] [ 3] [418] +00:12:11 [ 54] [ 20] [1002418C000074803795] +00:12:11 ============================================================================ +00:12:11 Calculate Source COMM Id = 0 +00:12:11 ============================================================================ +00:12:11 + + +waiting on router queue for slot.... +00:12:26 ============================================================================ +00:12:26 Slot Id : <359> +00:12:26 Transaction Type : REQUEST +00:12:26 Received From : +00:12:26 ============================================================================ +00:12:26 FNo. Len. Field Value +00:12:26 ============================================================================ +00:12:26 [ 1] [ 4] [0800] +00:12:26 [ 7] [ 10] [0319051133] +00:12:26 [ 11] [ 6] [153078] +00:12:26 [ 70] [ 3] [301] +00:12:26 ============================================================================ +00:12:26 + + +waiting on router queue for slot.... +00:12:26 Sending to : +00:12:26 ============================================================================ +00:12:26 ============================================================================ +00:12:26 Slot Id : <359> +00:12:26 Transaction Type : RESPONSE +00:12:26 Received From : +00:12:26 ============================================================================ +00:12:26 FNo. Len. Field Value +00:12:26 ============================================================================ +00:12:26 [ 1] [ 4] [0810] +00:12:26 [ 7] [ 10] [0319051133] +00:12:26 [ 11] [ 6] [153078] +00:12:26 [ 39] [ 2] [00] +00:12:26 [ 70] [ 3] [301] +00:12:26 ============================================================================ +00:12:26 Calculate Source COMM Id = 2 +00:12:26 ============================================================================ +00:12:26 + + +waiting on router queue for slot.... +00:12:42 ============================================================================ +00:12:42 Slot Id : <410> +00:12:42 Transaction Type : REQUEST +00:12:42 Received From : +00:12:42 ============================================================================ +00:12:42 FNo. Len. Field Value +00:12:42 ============================================================================ +00:12:42 [ 1] [ 4] [0800] +00:12:42 [ 7] [ 10] [0319051149] +00:12:42 [ 11] [ 6] [153079] +00:12:42 [ 70] [ 3] [301] +00:12:42 ============================================================================ +00:12:42 + + +waiting on router queue for slot.... +00:12:42 Sending to : +00:12:42 ============================================================================ +00:12:42 ============================================================================ +00:12:42 Slot Id : <410> +00:12:42 Transaction Type : RESPONSE +00:12:42 Received From : +00:12:42 ============================================================================ +00:12:42 FNo. Len. Field Value +00:12:42 ============================================================================ +00:12:42 [ 1] [ 4] [0810] +00:12:42 [ 7] [ 10] [0319051149] +00:12:42 [ 11] [ 6] [153079] +00:12:42 [ 39] [ 2] [00] +00:12:42 [ 70] [ 3] [301] +00:12:42 ============================================================================ +00:12:42 Calculate Source COMM Id = 2 +00:12:42 ============================================================================ +00:12:42 + + +waiting on router queue for slot.... +00:12:48 ============================================================================ +00:12:48 Slot Id : <361> +00:12:48 Transaction Type : REQUEST +00:12:48 Received From : +00:12:48 ============================================================================ +00:12:48 FNo. Len. Field Value +00:12:48 ============================================================================ +00:12:48 [ 1] [ 4] [0800] +00:12:48 [ 7] [ 10] [0320072435] +00:12:48 [ 11] [ 6] [002435] +00:12:48 [ 37] [ 12] [57900002435] +00:12:48 [ 70] [ 3] [301] +00:12:48 ============================================================================ +00:12:48 + + +waiting on router queue for slot.... +00:12:48 Sending to : +00:12:48 ============================================================================ +00:12:48 ============================================================================ +00:12:48 Slot Id : <361> +00:12:48 Transaction Type : RESPONSE +00:12:48 Received From : +00:12:48 ============================================================================ +00:12:48 FNo. Len. Field Value +00:12:48 ============================================================================ +00:12:48 [ 1] [ 4] [0810] +00:12:48 [ 7] [ 10] [0320072435] +00:12:48 [ 11] [ 6] [002435] +00:12:48 [ 37] [ 12] [579000024350] +00:12:48 [ 39] [ 2] [00] +00:12:48 [ 70] [ 3] [810] +00:12:48 ============================================================================ +00:12:48 Calculate Source COMM Id = 6 +00:12:48 ============================================================================ +00:12:48 + + +waiting on router queue for slot.... +00:12:52 ============================================================================ +00:12:52 Slot Id : <349> +00:12:52 Transaction Type : REQUEST +00:12:52 Received From : +00:12:52 ============================================================================ +00:12:52 FNo. Len. Field Value +00:12:52 ============================================================================ +00:12:52 [ 1] [ 4] [0800] +00:12:52 [ 7] [ 10] [0319051200] +00:12:52 [ 11] [ 6] [153080] +00:12:52 [ 70] [ 3] [301] +00:12:52 ============================================================================ +00:12:52 + + +waiting on router queue for slot.... +00:12:52 Sending to : +00:12:52 ============================================================================ +00:12:52 ============================================================================ +00:12:52 Slot Id : <349> +00:12:52 Transaction Type : RESPONSE +00:12:52 Received From : +00:12:52 ============================================================================ +00:12:52 FNo. Len. Field Value +00:12:52 ============================================================================ +00:12:52 [ 1] [ 4] [0810] +00:12:52 [ 7] [ 10] [0319051200] +00:12:52 [ 11] [ 6] [153080] +00:12:52 [ 39] [ 2] [00] +00:12:52 [ 70] [ 3] [301] +00:12:52 ============================================================================ +00:12:52 Calculate Source COMM Id = 2 +00:12:52 ============================================================================ +00:12:52 + + +waiting on router queue for slot.... +00:12:59 ============================================================================ +00:12:59 Slot Id : <383> +00:12:59 Transaction Type : REQUEST +00:12:59 Received From : +00:12:59 ============================================================================ +00:12:59 FNo. Len. Field Value +00:12:59 ============================================================================ +00:12:59 [ 1] [ 4] [0800] +00:12:59 [ 2] [ 5] [02531] +00:12:59 [ 3] [ 6] [579008] +00:12:59 [ 7] [ 10] [0319171259] +00:12:59 [ 11] [ 6] [806424] +00:12:59 [ 15] [ 10] [0319171259] +00:12:59 [ 37] [ 11] [57900806424] +00:12:59 [ 70] [ 3] [001] +00:12:59 ============================================================================ +00:12:59 + + +waiting on router queue for slot.... +00:12:59 ============================================================================ +00:12:59 Slot Id : <383> +00:12:59 Transaction Type : RESPONSE +00:12:59 Received From : +00:12:59 ============================================================================ +00:12:59 FNo. Len. Field Value +00:12:59 ============================================================================ +00:12:59 [ 1] [ 4] [0810] +00:12:59 [ 7] [ 10] [0319171259] +00:12:59 [ 11] [ 6] [806424] +00:12:59 [ 15] [ 4] [0319] +00:12:59 [ 37] [ 12] [57900806424] +00:12:59 [ 39] [ 2] [00] +00:12:59 [ 70] [ 3] [001] +00:12:59 ============================================================================ +00:12:59 Sending to : +00:12:59 ============================================================================ +00:12:59 + + +waiting on router queue for slot.... +00:13:03 ============================================================================ +00:13:03 Slot Id : <413> +00:13:03 Transaction Type : REQUEST +00:13:03 Received From : +00:13:03 ============================================================================ +00:13:03 FNo. Len. Field Value +00:13:03 ============================================================================ +00:13:03 [ 1] [ 4] [0800] +00:13:03 [ 7] [ 10] [0319051210] +00:13:03 [ 11] [ 6] [153081] +00:13:03 [ 70] [ 3] [301] +00:13:03 ============================================================================ +00:13:03 + + +waiting on router queue for slot.... +00:13:03 Sending to : +00:13:03 ============================================================================ +00:13:03 ============================================================================ +00:13:03 Slot Id : <413> +00:13:03 Transaction Type : RESPONSE +00:13:03 Received From : +00:13:03 ============================================================================ +00:13:03 FNo. Len. Field Value +00:13:03 ============================================================================ +00:13:03 [ 1] [ 4] [0810] +00:13:03 [ 7] [ 10] [0319051210] +00:13:03 [ 11] [ 6] [153081] +00:13:03 [ 39] [ 2] [00] +00:13:03 [ 70] [ 3] [301] +00:13:03 ============================================================================ +00:13:03 Calculate Source COMM Id = 2 +00:13:03 ============================================================================ +00:13:03 + + +waiting on router queue for slot.... +00:13:19 ============================================================================ +00:13:19 Slot Id : <393> +00:13:19 Transaction Type : REQUEST +00:13:19 Received From : +00:13:19 ============================================================================ +00:13:19 FNo. Len. Field Value +00:13:19 ============================================================================ +00:13:19 [ 1] [ 4] [0800] +00:13:19 [ 7] [ 10] [0319051227] +00:13:19 [ 11] [ 6] [153082] +00:13:19 [ 70] [ 3] [301] +00:13:19 ============================================================================ +00:13:19 + + +waiting on router queue for slot.... +00:13:19 Sending to : +00:13:19 ============================================================================ +00:13:19 ============================================================================ +00:13:19 Slot Id : <393> +00:13:19 Transaction Type : RESPONSE +00:13:19 Received From : +00:13:19 ============================================================================ +00:13:19 FNo. Len. Field Value +00:13:19 ============================================================================ +00:13:19 [ 1] [ 4] [0810] +00:13:19 [ 7] [ 10] [0319051227] +00:13:19 [ 11] [ 6] [153082] +00:13:19 [ 39] [ 2] [00] +00:13:19 [ 70] [ 3] [301] +00:13:19 ============================================================================ +00:13:19 Calculate Source COMM Id = 2 +00:13:19 ============================================================================ +00:13:19 + + +waiting on router queue for slot.... +00:13:34 ============================================================================ +00:13:34 Slot Id : <397> +00:13:34 Transaction Type : REQUEST +00:13:34 Received From : +00:13:34 ============================================================================ +00:13:34 FNo. Len. Field Value +00:13:34 ============================================================================ +00:13:34 [ 1] [ 4] [0800] +00:13:34 [ 7] [ 10] [0319051242] +00:13:34 [ 11] [ 6] [153083] +00:13:34 [ 70] [ 3] [301] +00:13:34 ============================================================================ +00:13:34 + + +waiting on router queue for slot.... +00:13:34 Sending to : +00:13:34 ============================================================================ +00:13:34 ============================================================================ +00:13:34 Slot Id : <397> +00:13:34 Transaction Type : RESPONSE +00:13:34 Received From : +00:13:34 ============================================================================ +00:13:34 FNo. Len. Field Value +00:13:34 ============================================================================ +00:13:34 [ 1] [ 4] [0810] +00:13:34 [ 7] [ 10] [0319051242] +00:13:34 [ 11] [ 6] [153083] +00:13:34 [ 39] [ 2] [00] +00:13:34 [ 70] [ 3] [301] +00:13:34 ============================================================================ +00:13:34 Calculate Source COMM Id = 2 +00:13:34 ============================================================================ +00:13:34 + + +waiting on router queue for slot.... +00:13:45 ============================================================================ +00:13:45 Slot Id : <400> +00:13:45 Transaction Type : REQUEST +00:13:45 Received From : +00:13:45 ============================================================================ +00:13:45 FNo. Len. Field Value +00:13:45 ============================================================================ +00:13:45 [ 1] [ 4] [0800] +00:13:45 [ 7] [ 10] [0319051252] +00:13:45 [ 11] [ 6] [153084] +00:13:45 [ 70] [ 3] [301] +00:13:45 ============================================================================ +00:13:45 + + +waiting on router queue for slot.... +00:13:45 Sending to : +00:13:45 ============================================================================ +00:13:45 ============================================================================ +00:13:45 Slot Id : <400> +00:13:45 Transaction Type : RESPONSE +00:13:45 Received From : +00:13:45 ============================================================================ +00:13:45 FNo. Len. Field Value +00:13:45 ============================================================================ +00:13:45 [ 1] [ 4] [0810] +00:13:45 [ 7] [ 10] [0319051252] +00:13:45 [ 11] [ 6] [153084] +00:13:45 [ 39] [ 2] [00] +00:13:45 [ 70] [ 3] [301] +00:13:45 ============================================================================ +00:13:45 Calculate Source COMM Id = 2 +00:13:45 ============================================================================ +00:13:45 + + +waiting on router queue for slot.... +00:13:53 ============================================================================ +00:13:53 Slot Id : <399> +00:13:53 Transaction Type : REQUEST +00:13:53 Received From : +00:13:53 ============================================================================ +00:13:53 FNo. Len. Field Value +00:13:53 ============================================================================ +00:13:53 [ 1] [ 4] [0800] +00:13:53 [ 7] [ 10] [0320072540] +00:13:53 [ 11] [ 6] [002540] +00:13:53 [ 37] [ 12] [57900002540] +00:13:53 [ 70] [ 3] [301] +00:13:53 ============================================================================ +00:13:53 + + +waiting on router queue for slot.... +00:13:53 Sending to : +00:13:53 ============================================================================ +00:13:53 ============================================================================ +00:13:53 Slot Id : <399> +00:13:53 Transaction Type : RESPONSE +00:13:53 Received From : +00:13:53 ============================================================================ +00:13:53 FNo. Len. Field Value +00:13:53 ============================================================================ +00:13:53 [ 1] [ 4] [0810] +00:13:53 [ 7] [ 10] [0320072540] +00:13:53 [ 11] [ 6] [002540] +00:13:53 [ 37] [ 12] [579000025400] +00:13:53 [ 39] [ 2] [00] +00:13:53 [ 70] [ 3] [810] +00:13:53 ============================================================================ +00:13:53 Calculate Source COMM Id = 6 +00:13:53 ============================================================================ +00:13:53 + + +waiting on router queue for slot.... +00:13:55 ============================================================================ +00:13:55 Slot Id : <414> +00:13:55 Transaction Type : REQUEST +00:13:55 Received From : +00:13:55 ============================================================================ +00:13:55 FNo. Len. Field Value +00:13:55 ============================================================================ +00:13:55 [ 1] [ 4] [0800] +00:13:55 [ 7] [ 10] [0319051302] +00:13:55 [ 11] [ 6] [153085] +00:13:55 [ 70] [ 3] [301] +00:13:55 ============================================================================ +00:13:55 + + +waiting on router queue for slot.... +00:13:55 Sending to : +00:13:55 ============================================================================ +00:13:55 ============================================================================ +00:13:55 Slot Id : <414> +00:13:55 Transaction Type : RESPONSE +00:13:55 Received From : +00:13:55 ============================================================================ +00:13:55 FNo. Len. Field Value +00:13:55 ============================================================================ +00:13:55 [ 1] [ 4] [0810] +00:13:55 [ 7] [ 10] [0319051302] +00:13:55 [ 11] [ 6] [153085] +00:13:55 [ 39] [ 2] [00] +00:13:55 [ 70] [ 3] [301] +00:13:55 ============================================================================ +00:13:55 Calculate Source COMM Id = 2 +00:13:55 ============================================================================ +00:13:55 + + +waiting on router queue for slot.... +00:14:01 ============================================================================ +00:14:01 Slot Id : <394> +00:14:01 Transaction Type : REQUEST +00:14:01 Received From : +00:14:01 ============================================================================ +00:14:01 FNo. Len. Field Value +00:14:01 ============================================================================ +00:14:01 [ 1] [ 4] [0800] +00:14:01 [ 2] [ 5] [02531] +00:14:01 [ 3] [ 6] [579008] +00:14:01 [ 7] [ 10] [0319171401] +00:14:01 [ 11] [ 6] [806425] +00:14:01 [ 15] [ 10] [0319171401] +00:14:01 [ 37] [ 11] [57900806425] +00:14:01 [ 70] [ 3] [001] +00:14:01 ============================================================================ +00:14:01 + + +waiting on router queue for slot.... +00:14:01 ============================================================================ +00:14:01 Slot Id : <394> +00:14:01 Transaction Type : RESPONSE +00:14:01 Received From : +00:14:01 ============================================================================ +00:14:01 FNo. Len. Field Value +00:14:01 ============================================================================ +00:14:01 [ 1] [ 4] [0810] +00:14:01 [ 7] [ 10] [0319171401] +00:14:01 [ 11] [ 6] [806425] +00:14:01 [ 15] [ 4] [0319] +00:14:01 [ 37] [ 12] [57900806425] +00:14:01 [ 39] [ 2] [00] +00:14:01 [ 70] [ 3] [001] +00:14:01 ============================================================================ +00:14:01 Sending to : +00:14:01 ============================================================================ +00:14:01 + + +waiting on router queue for slot.... +00:14:05 ============================================================================ +00:14:05 Slot Id : <387> +00:14:05 Transaction Type : REQUEST +00:14:05 Received From : +00:14:05 ============================================================================ +00:14:05 FNo. Len. Field Value +00:14:05 ============================================================================ +00:14:05 [ 1] [ 4] [0800] +00:14:05 [ 7] [ 10] [0319051312] +00:14:05 [ 11] [ 6] [153086] +00:14:05 [ 70] [ 3] [301] +00:14:05 ============================================================================ +00:14:05 + + +waiting on router queue for slot.... +00:14:05 Sending to : +00:14:05 ============================================================================ +00:14:05 ============================================================================ +00:14:05 Slot Id : <387> +00:14:05 Transaction Type : RESPONSE +00:14:05 Received From : +00:14:05 ============================================================================ +00:14:05 FNo. Len. Field Value +00:14:05 ============================================================================ +00:14:05 [ 1] [ 4] [0810] +00:14:05 [ 7] [ 10] [0319051312] +00:14:05 [ 11] [ 6] [153086] +00:14:05 [ 39] [ 2] [00] +00:14:05 [ 70] [ 3] [301] +00:14:05 ============================================================================ +00:14:05 Calculate Source COMM Id = 2 +00:14:05 ============================================================================ +00:14:05 + + +waiting on router queue for slot.... +00:14:20 ============================================================================ +00:14:20 Slot Id : <368> +00:14:20 Transaction Type : REQUEST +00:14:20 Received From : +00:14:20 ============================================================================ +00:14:20 FNo. Len. Field Value +00:14:20 ============================================================================ +00:14:20 [ 1] [ 4] [0800] +00:14:20 [ 7] [ 10] [0319051327] +00:14:20 [ 11] [ 6] [153087] +00:14:20 [ 70] [ 3] [301] +00:14:20 ============================================================================ +00:14:20 + + +waiting on router queue for slot.... +00:14:20 Sending to : +00:14:20 ============================================================================ +00:14:20 ============================================================================ +00:14:20 Slot Id : <368> +00:14:20 Transaction Type : RESPONSE +00:14:20 Received From : +00:14:20 ============================================================================ +00:14:20 FNo. Len. Field Value +00:14:20 ============================================================================ +00:14:20 [ 1] [ 4] [0810] +00:14:20 [ 7] [ 10] [0319051327] +00:14:20 [ 11] [ 6] [153087] +00:14:20 [ 39] [ 2] [00] +00:14:20 [ 70] [ 3] [301] +00:14:20 ============================================================================ +00:14:20 Calculate Source COMM Id = 2 +00:14:20 ============================================================================ +00:14:20 + + +waiting on router queue for slot.... +00:14:35 ============================================================================ +00:14:35 Slot Id : <418> +00:14:35 Transaction Type : REQUEST +00:14:35 Received From : +00:14:35 ============================================================================ +00:14:35 FNo. Len. Field Value +00:14:35 ============================================================================ +00:14:35 [ 1] [ 4] [0800] +00:14:35 [ 7] [ 10] [0319051342] +00:14:35 [ 11] [ 6] [153088] +00:14:35 [ 70] [ 3] [301] +00:14:35 ============================================================================ +00:14:35 + + +waiting on router queue for slot.... +00:14:35 Sending to : +00:14:35 ============================================================================ +00:14:35 ============================================================================ +00:14:35 Slot Id : <418> +00:14:35 Transaction Type : RESPONSE +00:14:35 Received From : +00:14:35 ============================================================================ +00:14:35 FNo. Len. Field Value +00:14:35 ============================================================================ +00:14:35 [ 1] [ 4] [0810] +00:14:35 [ 7] [ 10] [0319051342] +00:14:35 [ 11] [ 6] [153088] +00:14:35 [ 39] [ 2] [00] +00:14:35 [ 70] [ 3] [301] +00:14:35 ============================================================================ +00:14:35 Calculate Source COMM Id = 2 +00:14:35 ============================================================================ +00:14:35 + + +waiting on router queue for slot.... +00:14:45 ============================================================================ +00:14:45 Slot Id : <372> +00:14:45 Transaction Type : REQUEST +00:14:45 Received From : +00:14:45 ============================================================================ +00:14:45 FNo. Len. Field Value +00:14:45 ============================================================================ +00:14:45 [ 1] [ 4] [0800] +00:14:45 [ 7] [ 10] [0319051352] +00:14:45 [ 11] [ 6] [153089] +00:14:45 [ 70] [ 3] [301] +00:14:45 ============================================================================ +00:14:45 + + +waiting on router queue for slot.... +00:14:45 Sending to : +00:14:45 ============================================================================ +00:14:45 ============================================================================ +00:14:45 Slot Id : <372> +00:14:45 Transaction Type : RESPONSE +00:14:45 Received From : +00:14:45 ============================================================================ +00:14:45 FNo. Len. Field Value +00:14:45 ============================================================================ +00:14:45 [ 1] [ 4] [0810] +00:14:45 [ 7] [ 10] [0319051352] +00:14:45 [ 11] [ 6] [153089] +00:14:45 [ 39] [ 2] [00] +00:14:45 [ 70] [ 3] [301] +00:14:45 ============================================================================ +00:14:45 Calculate Source COMM Id = 2 +00:14:45 ============================================================================ +00:14:45 + + +waiting on router queue for slot.... +00:14:56 ============================================================================ +00:14:56 Slot Id : <406> +00:14:56 Transaction Type : REQUEST +00:14:56 Received From : +00:14:56 ============================================================================ +00:14:56 FNo. Len. Field Value +00:14:56 ============================================================================ +00:14:56 [ 1] [ 4] [0800] +00:14:56 [ 7] [ 10] [0319172242] +00:14:56 [ 11] [ 6] [027271] +00:14:56 [ 37] [ 12] [57900027271] +00:14:56 [ 70] [ 3] [301] +00:14:56 ============================================================================ +00:14:56 + + +waiting on router queue for slot.... +00:14:56 Sending to : +00:14:56 ============================================================================ +00:14:56 ============================================================================ +00:14:56 Slot Id : <406> +00:14:56 Transaction Type : RESPONSE +00:14:56 Received From : +00:14:56 ============================================================================ +00:14:56 FNo. Len. Field Value +00:14:56 ============================================================================ +00:14:56 [ 1] [ 4] [0810] +00:14:56 [ 7] [ 10] [0319172242] +00:14:56 [ 11] [ 6] [027271] +00:14:56 [ 37] [ 12] [579000272710] +00:14:56 [ 39] [ 2] [00] +00:14:56 [ 70] [ 3] [810] +00:14:56 ============================================================================ +00:14:56 Calculate Source COMM Id = 1 +00:14:56 ============================================================================ +00:14:56 + + +waiting on router queue for slot.... +00:14:58 ============================================================================ +00:14:58 Slot Id : <380> +00:14:58 Transaction Type : REQUEST +00:14:58 Received From : +00:14:58 ============================================================================ +00:14:58 FNo. Len. Field Value +00:14:58 ============================================================================ +00:14:58 [ 1] [ 4] [0800] +00:14:58 [ 7] [ 10] [0320072645] +00:14:58 [ 11] [ 6] [002645] +00:14:58 [ 37] [ 12] [57900002645] +00:14:58 [ 70] [ 3] [301] +00:14:58 ============================================================================ +00:14:58 + + +waiting on router queue for slot.... +00:14:58 Sending to : +00:14:58 ============================================================================ +00:14:58 ============================================================================ +00:14:58 Slot Id : <380> +00:14:58 Transaction Type : RESPONSE +00:14:58 Received From : +00:14:58 ============================================================================ +00:14:58 FNo. Len. Field Value +00:14:58 ============================================================================ +00:14:58 [ 1] [ 4] [0810] +00:14:58 [ 7] [ 10] [0320072645] +00:14:58 [ 11] [ 6] [002645] +00:14:58 [ 37] [ 12] [579000026450] +00:14:58 [ 39] [ 2] [00] +00:14:58 [ 70] [ 3] [810] +00:14:58 ============================================================================ +00:14:58 Calculate Source COMM Id = 6 +00:14:58 ============================================================================ +00:14:58 + + +waiting on router queue for slot.... +00:15:00 ============================================================================ +00:15:00 Slot Id : <419> +00:15:00 Transaction Type : REQUEST +00:15:00 Received From : +00:15:00 ============================================================================ +00:15:00 FNo. Len. Field Value +00:15:00 ============================================================================ +00:15:00 [ 1] [ 4] [0800] +00:15:00 [ 7] [ 10] [0319051408] +00:15:00 [ 11] [ 6] [153090] +00:15:00 [ 70] [ 3] [301] +00:15:00 ============================================================================ +00:15:00 + + +waiting on router queue for slot.... +00:15:00 Sending to : +00:15:00 ============================================================================ +00:15:00 ============================================================================ +00:15:00 Slot Id : <419> +00:15:00 Transaction Type : RESPONSE +00:15:00 Received From : +00:15:00 ============================================================================ +00:15:00 FNo. Len. Field Value +00:15:00 ============================================================================ +00:15:00 [ 1] [ 4] [0810] +00:15:00 [ 7] [ 10] [0319051408] +00:15:00 [ 11] [ 6] [153090] +00:15:00 [ 39] [ 2] [00] +00:15:00 [ 70] [ 3] [301] +00:15:00 ============================================================================ +00:15:00 Calculate Source COMM Id = 2 +00:15:00 ============================================================================ +00:15:00 + + +waiting on router queue for slot.... +00:15:03 ============================================================================ +00:15:03 Slot Id : <411> +00:15:03 Transaction Type : REQUEST +00:15:03 Received From : +00:15:03 ============================================================================ +00:15:03 FNo. Len. Field Value +00:15:03 ============================================================================ +00:15:03 [ 1] [ 4] [0800] +00:15:03 [ 2] [ 5] [02531] +00:15:03 [ 3] [ 6] [579008] +00:15:03 [ 7] [ 10] [0319171503] +00:15:03 [ 11] [ 6] [806426] +00:15:03 [ 15] [ 10] [0319171503] +00:15:03 [ 37] [ 11] [57900806426] +00:15:03 [ 70] [ 3] [001] +00:15:03 ============================================================================ +00:15:03 + + +waiting on router queue for slot.... +00:15:03 ============================================================================ +00:15:03 Slot Id : <411> +00:15:03 Transaction Type : RESPONSE +00:15:03 Received From : +00:15:03 ============================================================================ +00:15:03 FNo. Len. Field Value +00:15:03 ============================================================================ +00:15:03 [ 1] [ 4] [0810] +00:15:03 [ 7] [ 10] [0319171503] +00:15:03 [ 11] [ 6] [806426] +00:15:03 [ 15] [ 4] [0319] +00:15:03 [ 37] [ 12] [57900806426] +00:15:03 [ 39] [ 2] [00] +00:15:03 [ 70] [ 3] [001] +00:15:03 ============================================================================ +00:15:03 Sending to : +00:15:03 ============================================================================ +00:15:03 + + +waiting on router queue for slot.... +00:15:15 ============================================================================ +00:15:15 Slot Id : <407> +00:15:15 Transaction Type : REQUEST +00:15:15 Received From : +00:15:15 ============================================================================ +00:15:15 FNo. Len. Field Value +00:15:15 ============================================================================ +00:15:15 [ 1] [ 4] [0800] +00:15:15 [ 7] [ 10] [0319051423] +00:15:15 [ 11] [ 6] [153091] +00:15:15 [ 70] [ 3] [301] +00:15:15 ============================================================================ +00:15:15 + + +waiting on router queue for slot.... +00:15:15 Sending to : +00:15:15 ============================================================================ +00:15:15 ============================================================================ +00:15:15 Slot Id : <407> +00:15:15 Transaction Type : RESPONSE +00:15:15 Received From : +00:15:15 ============================================================================ +00:15:15 FNo. Len. Field Value +00:15:15 ============================================================================ +00:15:15 [ 1] [ 4] [0810] +00:15:15 [ 7] [ 10] [0319051423] +00:15:15 [ 11] [ 6] [153091] +00:15:15 [ 39] [ 2] [00] +00:15:15 [ 70] [ 3] [301] +00:15:15 ============================================================================ +00:15:15 Calculate Source COMM Id = 2 +00:15:15 ============================================================================ +00:15:15 + + +waiting on router queue for slot.... +00:15:27 ============================================================================ +00:15:27 Slot Id : <384> +00:15:27 Transaction Type : REQUEST +00:15:27 Received From : +00:15:27 ============================================================================ +00:15:27 FNo. Len. Field Value +00:15:27 ============================================================================ +00:15:27 [ 1] [ 4] [0800] +00:15:27 [ 7] [ 10] [0319051434] +00:15:27 [ 11] [ 6] [153092] +00:15:27 [ 70] [ 3] [301] +00:15:27 ============================================================================ +00:15:27 + + +waiting on router queue for slot.... +00:15:27 Sending to : +00:15:27 ============================================================================ +00:15:27 ============================================================================ +00:15:27 Slot Id : <384> +00:15:27 Transaction Type : RESPONSE +00:15:27 Received From : +00:15:27 ============================================================================ +00:15:27 FNo. Len. Field Value +00:15:27 ============================================================================ +00:15:27 [ 1] [ 4] [0810] +00:15:27 [ 7] [ 10] [0319051434] +00:15:27 [ 11] [ 6] [153092] +00:15:27 [ 39] [ 2] [00] +00:15:27 [ 70] [ 3] [301] +00:15:27 ============================================================================ +00:15:27 Calculate Source COMM Id = 2 +00:15:27 ============================================================================ +00:15:27 + + +waiting on router queue for slot.... +00:15:38 ============================================================================ +00:15:38 Slot Id : <401> +00:15:38 Transaction Type : REQUEST +00:15:38 Received From : +00:15:38 ============================================================================ +00:15:38 FNo. Len. Field Value +00:15:38 ============================================================================ +00:15:38 [ 1] [ 4] [0800] +00:15:38 [ 7] [ 10] [0319051445] +00:15:38 [ 11] [ 6] [153093] +00:15:38 [ 70] [ 3] [301] +00:15:38 ============================================================================ +00:15:38 + + +waiting on router queue for slot.... +00:15:38 Sending to : +00:15:38 ============================================================================ +00:15:38 ============================================================================ +00:15:38 Slot Id : <401> +00:15:38 Transaction Type : RESPONSE +00:15:38 Received From : +00:15:38 ============================================================================ +00:15:38 FNo. Len. Field Value +00:15:38 ============================================================================ +00:15:38 [ 1] [ 4] [0810] +00:15:38 [ 7] [ 10] [0319051445] +00:15:38 [ 11] [ 6] [153093] +00:15:38 [ 39] [ 2] [00] +00:15:38 [ 70] [ 3] [301] +00:15:38 ============================================================================ +00:15:38 Calculate Source COMM Id = 2 +00:15:38 ============================================================================ +00:15:38 + + +waiting on router queue for slot.... +00:15:39 ============================================================================ +00:15:39 Slot Id : <416> +00:15:39 Transaction Type : REQUEST +00:15:39 Received From : +00:15:39 ============================================================================ +00:15:39 FNo. Len. Field Value +00:15:39 ============================================================================ +00:15:39 [ 1] [ 4] [0200] +00:15:39 [ 2] [ 16] [1989010003167238] +00:15:39 [ 3] [ 6] [300000] +00:15:39 [ 4] [ 12] [000000000000] +00:15:39 [ 7] [ 10] [0320001535] +00:15:39 [ 11] [ 6] [661458] +00:15:39 [ 12] [ 6] [001535] +00:15:39 [ 13] [ 4] [0320] +00:15:39 [ 15] [ 4] [0320] +00:15:39 [ 18] [ 4] [6011] +00:15:39 [ 22] [ 3] [900] +00:15:39 [ 25] [ 2] [02] +00:15:39 [ 28] [ 9] [D00000000] +00:15:39 [ 32] [ 6] [621354] +00:15:39 [ 35] [ 32] [1989010003167238=000010100000501] +00:15:39 [ 37] [ 12] [507905090005] +00:15:39 [ 41] [ 8] [04004200] +00:15:39 [ 42] [ 15] [NATIVE ] +00:15:39 [ 43] [ 40] [Kam ngeun phark tay CPS Champasak LAO] +00:15:39 [ 49] [ 3] [418] +00:15:39 [ 52] [ 16] [D032B0E19747F2A5] +00:15:39 ============================================================================ +00:15:39 + + +waiting on router queue for slot.... +00:15:39 Sending to : +00:15:39 ============================================================================ +00:15:39 Sending to : +00:15:39 ============================================================================ +00:15:40 ============================================================================ +00:15:40 Slot Id : <416> +00:15:40 Transaction Type : REQUEST +00:15:40 Received From : +00:15:40 ============================================================================ +00:15:40 FNo. Len. Field Value +00:15:40 ============================================================================ +00:15:40 [ 1] [ 4] [0200] +00:15:40 [ 2] [ 16] [1989010003167238] +00:15:40 [ 3] [ 6] [300000] +00:15:40 [ 4] [ 12] [000000000000] +00:15:40 [ 7] [ 10] [0320001535] +00:15:40 [ 11] [ 6] [661458] +00:15:40 [ 12] [ 6] [001535] +00:15:40 [ 13] [ 4] [0320] +00:15:40 [ 15] [ 4] [0320] +00:15:40 [ 18] [ 4] [6011] +00:15:40 [ 22] [ 3] [900] +00:15:40 [ 25] [ 2] [02] +00:15:40 [ 28] [ 9] [D00000000] +00:15:40 [ 32] [ 6] [621354] +00:15:40 [ 35] [ 32] [1989010003167238=000010100000501] +00:15:40 [ 37] [ 12] [507905090005] +00:15:40 [ 41] [ 8] [04004200] +00:15:40 [ 42] [ 15] [NATIVE ] +00:15:40 [ 43] [ 40] [Kam ngeun phark tay CPS Champasak LAO] +00:15:40 [ 49] [ 3] [418] +00:15:40 [ 52] [ 16] [D032B0E19747F2A5] +00:15:40 ============================================================================ +00:15:40 + + +waiting on router queue for slot.... +00:15:40 Sending to : +00:15:40 ============================================================================ +00:15:40 ============================================================================ +00:15:40 Slot Id : <416> +00:15:40 Transaction Type : REQUEST +00:15:40 Received From : +00:15:40 ============================================================================ +00:15:40 FNo. Len. Field Value +00:15:40 ============================================================================ +00:15:40 [ 1] [ 4] [0200] +00:15:40 [ 2] [ 16] [1989010003167238] +00:15:40 [ 3] [ 6] [300000] +00:15:40 [ 4] [ 12] [000000000000] +00:15:40 [ 7] [ 10] [0320001535] +00:15:40 [ 11] [ 6] [661458] +00:15:40 [ 12] [ 6] [001535] +00:15:40 [ 13] [ 4] [0320] +00:15:40 [ 15] [ 4] [0320] +00:15:40 [ 18] [ 4] [6011] +00:15:40 [ 22] [ 3] [900] +00:15:40 [ 25] [ 2] [02] +00:15:40 [ 28] [ 9] [D00000000] +00:15:40 [ 32] [ 6] [621354] +00:15:40 [ 35] [ 32] [1989010003167238=000010100000501] +00:15:40 [ 37] [ 12] [507905090005] +00:15:40 [ 41] [ 8] [04004200] +00:15:40 [ 42] [ 15] [NATIVE ] +00:15:40 [ 43] [ 40] [Kam ngeun phark tay CPS Champasak LAO] +00:15:40 [ 49] [ 3] [418] +00:15:40 [ 52] [ 16] [BB403F0EF2C1826F] +00:15:40 ============================================================================ +00:15:40 + + +waiting on router queue for slot.... +00:15:40 Sending to : <5> +00:15:40 ============================================================================ +00:15:41 ============================================================================ +00:15:41 Slot Id : <416> +00:15:41 Transaction Type : RESPONSE +00:15:41 Received From : +00:15:41 ============================================================================ +00:15:41 FNo. Len. Field Value +00:15:41 ============================================================================ +00:15:41 [ 1] [ 4] [0210] +00:15:41 [ 2] [ 16] [1989010003167238] +00:15:41 [ 3] [ 6] [300000] +00:15:41 [ 4] [ 12] [000000000000] +00:15:41 [ 7] [ 10] [0320001535] +00:15:41 [ 11] [ 6] [661458] +00:15:41 [ 12] [ 6] [001535] +00:15:41 [ 13] [ 4] [0320] +00:15:41 [ 15] [ 4] [0320] +00:15:41 [ 18] [ 4] [6011] +00:15:41 [ 19] [ 3] [418] +00:15:41 [ 32] [ 6] [621354] +00:15:41 [ 37] [ 12] [507905090005] +00:15:41 [ 38] [ 6] [170223] +00:15:41 [ 39] [ 2] [00] +00:15:41 [ 41] [ 8] [04004200] +00:15:41 [ 49] [ 3] [418] +00:15:41 [ 54] [ 20] [1001418C000400253700] +00:15:41 ============================================================================ +00:15:41 Sending to : +00:15:41 ============================================================================ +00:15:41 + + +waiting on router queue for slot.... +00:15:43 ============================================================================ +00:15:43 Slot Id : <416> +00:15:43 Transaction Type : RESPONSE +00:15:43 Received From : +00:15:43 ============================================================================ +00:15:43 FNo. Len. Field Value +00:15:43 ============================================================================ +00:15:43 [ 1] [ 4] [0210] +00:15:43 [ 2] [ 16] [1989010003167238] +00:15:43 [ 3] [ 6] [300000] +00:15:43 [ 4] [ 12] [000000000000] +00:15:43 [ 7] [ 10] [0320001535] +00:15:43 [ 11] [ 6] [661458] +00:15:43 [ 12] [ 6] [001535] +00:15:43 [ 13] [ 4] [0320] +00:15:43 [ 15] [ 4] [0320] +00:15:43 [ 18] [ 4] [6011] +00:15:43 [ 19] [ 3] [418] +00:15:43 [ 32] [ 6] [621354] +00:15:43 [ 37] [ 12] [507905090005] +00:15:43 [ 38] [ 6] [170223] +00:15:43 [ 39] [ 2] [00] +00:15:43 [ 41] [ 8] [04004200] +00:15:43 [ 49] [ 3] [418] +00:15:43 [ 54] [ 20] [1001418C000400253700] +00:15:43 ============================================================================ +00:15:43 Calculate Source COMM Id = 0 +00:15:43 ============================================================================ +00:15:43 + + +waiting on router queue for slot.... +00:15:53 ============================================================================ +00:15:53 Slot Id : <420> +00:15:53 Transaction Type : REQUEST +00:15:53 Received From : +00:15:53 ============================================================================ +00:15:53 FNo. Len. Field Value +00:15:53 ============================================================================ +00:15:53 [ 1] [ 4] [0800] +00:15:53 [ 7] [ 10] [0319051501] +00:15:53 [ 11] [ 6] [153094] +00:15:53 [ 70] [ 3] [301] +00:15:53 ============================================================================ +00:15:53 + + +waiting on router queue for slot.... +00:15:53 Sending to : +00:15:53 ============================================================================ +00:15:53 ============================================================================ +00:15:53 Slot Id : <420> +00:15:53 Transaction Type : RESPONSE +00:15:53 Received From : +00:15:53 ============================================================================ +00:15:53 FNo. Len. Field Value +00:15:53 ============================================================================ +00:15:53 [ 1] [ 4] [0810] +00:15:53 [ 7] [ 10] [0319051501] +00:15:53 [ 11] [ 6] [153094] +00:15:53 [ 39] [ 2] [00] +00:15:53 [ 70] [ 3] [301] +00:15:53 ============================================================================ +00:15:53 Calculate Source COMM Id = 2 +00:15:53 ============================================================================ +00:15:53 + + +waiting on router queue for slot.... +00:16:03 ============================================================================ +00:16:03 Slot Id : <415> +00:16:03 Transaction Type : REQUEST +00:16:03 Received From : +00:16:03 ============================================================================ +00:16:03 FNo. Len. Field Value +00:16:03 ============================================================================ +00:16:03 [ 1] [ 4] [0800] +00:16:03 [ 7] [ 10] [0320072750] +00:16:03 [ 11] [ 6] [002750] +00:16:03 [ 37] [ 12] [57900002750] +00:16:03 [ 70] [ 3] [301] +00:16:03 ============================================================================ +00:16:03 + + +waiting on router queue for slot.... +00:16:03 Sending to : +00:16:03 ============================================================================ +00:16:03 ============================================================================ +00:16:03 Slot Id : <415> +00:16:03 Transaction Type : RESPONSE +00:16:03 Received From : +00:16:03 ============================================================================ +00:16:03 FNo. Len. Field Value +00:16:03 ============================================================================ +00:16:03 [ 1] [ 4] [0810] +00:16:03 [ 7] [ 10] [0320072750] +00:16:03 [ 11] [ 6] [002750] +00:16:03 [ 37] [ 12] [579000027500] +00:16:03 [ 39] [ 2] [00] +00:16:03 [ 70] [ 3] [810] +00:16:03 ============================================================================ +00:16:03 Calculate Source COMM Id = 6 +00:16:03 ============================================================================ +00:16:03 + + +waiting on router queue for slot.... +00:16:04 ============================================================================ +00:16:04 Slot Id : <381> +00:16:04 Transaction Type : REQUEST +00:16:04 Received From : +00:16:04 ============================================================================ +00:16:04 FNo. Len. Field Value +00:16:04 ============================================================================ +00:16:04 [ 1] [ 4] [0800] +00:16:04 [ 7] [ 10] [0319051512] +00:16:04 [ 11] [ 6] [153095] +00:16:04 [ 70] [ 3] [301] +00:16:04 ============================================================================ +00:16:04 + + +waiting on router queue for slot.... +00:16:04 Sending to : +00:16:04 ============================================================================ +00:16:04 ============================================================================ +00:16:04 Slot Id : <381> +00:16:04 Transaction Type : RESPONSE +00:16:04 Received From : +00:16:04 ============================================================================ +00:16:04 FNo. Len. Field Value +00:16:04 ============================================================================ +00:16:04 [ 1] [ 4] [0810] +00:16:04 [ 7] [ 10] [0319051512] +00:16:04 [ 11] [ 6] [153095] +00:16:04 [ 39] [ 2] [00] +00:16:04 [ 70] [ 3] [301] +00:16:04 ============================================================================ +00:16:04 Calculate Source COMM Id = 2 +00:16:04 ============================================================================ +00:16:04 + + +waiting on router queue for slot.... +00:16:05 ============================================================================ +00:16:05 Slot Id : <425> +00:16:05 Transaction Type : REQUEST +00:16:05 Received From : +00:16:05 ============================================================================ +00:16:05 FNo. Len. Field Value +00:16:05 ============================================================================ +00:16:05 [ 1] [ 4] [0800] +00:16:05 [ 2] [ 5] [02531] +00:16:05 [ 3] [ 6] [579008] +00:16:05 [ 7] [ 10] [0319171605] +00:16:05 [ 11] [ 6] [806427] +00:16:05 [ 15] [ 10] [0319171605] +00:16:05 [ 37] [ 11] [57900806427] +00:16:05 [ 70] [ 3] [001] +00:16:05 ============================================================================ +00:16:05 + + +waiting on router queue for slot.... +00:16:05 ============================================================================ +00:16:05 Slot Id : <425> +00:16:05 Transaction Type : RESPONSE +00:16:05 Received From : +00:16:05 ============================================================================ +00:16:05 FNo. Len. Field Value +00:16:05 ============================================================================ +00:16:05 [ 1] [ 4] [0810] +00:16:05 [ 7] [ 10] [0319171605] +00:16:05 [ 11] [ 6] [806427] +00:16:05 [ 15] [ 4] [0319] +00:16:05 [ 37] [ 12] [57900806427] +00:16:05 [ 39] [ 2] [00] +00:16:05 [ 70] [ 3] [001] +00:16:05 ============================================================================ +00:16:05 Sending to : +00:16:05 ============================================================================ +00:16:05 + + +waiting on router queue for slot.... +00:16:15 ============================================================================ +00:16:15 Slot Id : <388> +00:16:15 Transaction Type : REQUEST +00:16:15 Received From : +00:16:15 ============================================================================ +00:16:15 FNo. Len. Field Value +00:16:15 ============================================================================ +00:16:15 [ 1] [ 4] [0800] +00:16:15 [ 7] [ 10] [0319051523] +00:16:15 [ 11] [ 6] [153096] +00:16:15 [ 70] [ 3] [301] +00:16:15 ============================================================================ +00:16:15 + + +waiting on router queue for slot.... +00:16:15 Sending to : +00:16:15 ============================================================================ +00:16:15 ============================================================================ +00:16:15 Slot Id : <388> +00:16:15 Transaction Type : RESPONSE +00:16:15 Received From : +00:16:15 ============================================================================ +00:16:15 FNo. Len. Field Value +00:16:15 ============================================================================ +00:16:15 [ 1] [ 4] [0810] +00:16:15 [ 7] [ 10] [0319051523] +00:16:15 [ 11] [ 6] [153096] +00:16:15 [ 39] [ 2] [00] +00:16:15 [ 70] [ 3] [301] +00:16:15 ============================================================================ +00:16:15 Calculate Source COMM Id = 2 +00:16:15 ============================================================================ +00:16:15 + + +waiting on router queue for slot.... +00:16:21 ============================================================================ +00:16:21 Slot Id : <398> +00:16:21 Transaction Type : REQUEST +00:16:21 Received From : +00:16:21 ============================================================================ +00:16:21 FNo. Len. Field Value +00:16:21 ============================================================================ +00:16:21 [ 1] [ 4] [0800] +00:16:21 [ 7] [ 10] [0319171412] +00:16:21 [ 11] [ 6] [072187] +00:16:21 [ 37] [ 12] [57900072187] +00:16:21 [ 70] [ 3] [301] +00:16:21 ============================================================================ +00:16:21 + + +waiting on router queue for slot.... +00:16:21 Sending to : +00:16:21 ============================================================================ +00:16:21 ============================================================================ +00:16:21 Slot Id : <398> +00:16:21 Transaction Type : RESPONSE +00:16:21 Received From : +00:16:21 ============================================================================ +00:16:21 FNo. Len. Field Value +00:16:21 ============================================================================ +00:16:21 [ 1] [ 4] [0810] +00:16:21 [ 7] [ 10] [0319171412] +00:16:21 [ 11] [ 6] [072187] +00:16:21 [ 37] [ 12] [579000721870] +00:16:21 [ 39] [ 2] [00] +00:16:21 [ 70] [ 3] [810] +00:16:21 ============================================================================ +00:16:21 Calculate Source COMM Id = 4 +00:16:21 ============================================================================ +00:16:21 + + +waiting on router queue for slot.... +00:16:26 ============================================================================ +00:16:26 Slot Id : <433> +00:16:26 Transaction Type : REQUEST +00:16:26 Received From : +00:16:26 ============================================================================ +00:16:26 FNo. Len. Field Value +00:16:26 ============================================================================ +00:16:26 [ 1] [ 4] [0800] +00:16:26 [ 7] [ 10] [0319051533] +00:16:26 [ 11] [ 6] [153097] +00:16:26 [ 70] [ 3] [301] +00:16:26 ============================================================================ +00:16:26 + + +waiting on router queue for slot.... +00:16:26 Sending to : +00:16:26 ============================================================================ +00:16:26 ============================================================================ +00:16:26 Slot Id : <433> +00:16:26 Transaction Type : RESPONSE +00:16:26 Received From : +00:16:26 ============================================================================ +00:16:26 FNo. Len. Field Value +00:16:26 ============================================================================ +00:16:26 [ 1] [ 4] [0810] +00:16:26 [ 7] [ 10] [0319051533] +00:16:26 [ 11] [ 6] [153097] +00:16:26 [ 39] [ 2] [00] +00:16:26 [ 70] [ 3] [301] +00:16:26 ============================================================================ +00:16:26 Calculate Source COMM Id = 2 +00:16:26 ============================================================================ +00:16:26 + + +waiting on router queue for slot.... +00:16:41 ============================================================================ +00:16:41 Slot Id : <364> +00:16:41 Transaction Type : REQUEST +00:16:41 Received From : +00:16:41 ============================================================================ +00:16:41 FNo. Len. Field Value +00:16:41 ============================================================================ +00:16:41 [ 1] [ 4] [0800] +00:16:41 [ 7] [ 10] [0319051548] +00:16:41 [ 11] [ 6] [153098] +00:16:41 [ 70] [ 3] [301] +00:16:41 ============================================================================ +00:16:41 + + +waiting on router queue for slot.... +00:16:41 Sending to : +00:16:41 ============================================================================ +00:16:41 ============================================================================ +00:16:41 Slot Id : <364> +00:16:41 Transaction Type : RESPONSE +00:16:41 Received From : +00:16:41 ============================================================================ +00:16:41 FNo. Len. Field Value +00:16:41 ============================================================================ +00:16:41 [ 1] [ 4] [0810] +00:16:41 [ 7] [ 10] [0319051548] +00:16:41 [ 11] [ 6] [153098] +00:16:41 [ 39] [ 2] [00] +00:16:41 [ 70] [ 3] [301] +00:16:41 ============================================================================ +00:16:41 Calculate Source COMM Id = 2 +00:16:41 ============================================================================ +00:16:41 + + +waiting on router queue for slot.... +00:16:53 ============================================================================ +00:16:53 Slot Id : <367> +00:16:53 Transaction Type : REQUEST +00:16:53 Received From : +00:16:53 ============================================================================ +00:16:53 FNo. Len. Field Value +00:16:53 ============================================================================ +00:16:53 [ 1] [ 4] [0800] +00:16:53 [ 7] [ 10] [0319051559] +00:16:53 [ 11] [ 6] [153099] +00:16:53 [ 70] [ 3] [301] +00:16:53 ============================================================================ +00:16:53 + + +waiting on router queue for slot.... +00:16:53 Sending to : +00:16:53 ============================================================================ +00:16:53 ============================================================================ +00:16:53 Slot Id : <367> +00:16:53 Transaction Type : RESPONSE +00:16:53 Received From : +00:16:53 ============================================================================ +00:16:53 FNo. Len. Field Value +00:16:53 ============================================================================ +00:16:53 [ 1] [ 4] [0810] +00:16:53 [ 7] [ 10] [0319051559] +00:16:53 [ 11] [ 6] [153099] +00:16:53 [ 39] [ 2] [00] +00:16:53 [ 70] [ 3] [301] +00:16:53 ============================================================================ +00:16:53 Calculate Source COMM Id = 2 +00:16:53 ============================================================================ +00:16:53 + + +waiting on router queue for slot.... +00:17:07 ============================================================================ +00:17:07 Slot Id : <375> +00:17:07 Transaction Type : REQUEST +00:17:07 Received From : +00:17:07 ============================================================================ +00:17:07 FNo. Len. Field Value +00:17:07 ============================================================================ +00:17:07 [ 1] [ 4] [0800] +00:17:07 [ 2] [ 5] [02531] +00:17:07 [ 3] [ 6] [579008] +00:17:07 [ 7] [ 10] [0319171707] +00:17:07 [ 11] [ 6] [806428] +00:17:07 [ 15] [ 10] [0319171707] +00:17:07 [ 37] [ 11] [57900806428] +00:17:07 [ 70] [ 3] [001] +00:17:07 ============================================================================ +00:17:07 + + +waiting on router queue for slot.... +00:17:07 ============================================================================ +00:17:07 Slot Id : <375> +00:17:07 Transaction Type : RESPONSE +00:17:07 Received From : +00:17:07 ============================================================================ +00:17:07 FNo. Len. Field Value +00:17:07 ============================================================================ +00:17:07 [ 1] [ 4] [0810] +00:17:07 [ 7] [ 10] [0319171707] +00:17:07 [ 11] [ 6] [806428] +00:17:07 [ 15] [ 4] [0319] +00:17:07 [ 37] [ 12] [57900806428] +00:17:07 [ 39] [ 2] [00] +00:17:07 [ 70] [ 3] [001] +00:17:07 ============================================================================ +00:17:07 Sending to : +00:17:07 ============================================================================ +00:17:07 + + +waiting on router queue for slot.... +00:17:07 ============================================================================ +00:17:07 Slot Id : <430> +00:17:07 Transaction Type : REQUEST +00:17:07 Received From : +00:17:07 ============================================================================ +00:17:07 FNo. Len. Field Value +00:17:07 ============================================================================ +00:17:07 [ 1] [ 4] [0800] +00:17:07 [ 7] [ 10] [0319051615] +00:17:07 [ 11] [ 6] [153100] +00:17:07 [ 70] [ 3] [301] +00:17:07 ============================================================================ +00:17:07 + + +waiting on router queue for slot.... +00:17:07 Sending to : +00:17:07 ============================================================================ +00:17:07 ============================================================================ +00:17:07 Slot Id : <430> +00:17:07 Transaction Type : RESPONSE +00:17:07 Received From : +00:17:07 ============================================================================ +00:17:07 FNo. Len. Field Value +00:17:07 ============================================================================ +00:17:07 [ 1] [ 4] [0810] +00:17:07 [ 7] [ 10] [0319051615] +00:17:07 [ 11] [ 6] [153100] +00:17:07 [ 39] [ 2] [00] +00:17:07 [ 70] [ 3] [301] +00:17:07 ============================================================================ +00:17:07 Calculate Source COMM Id = 2 +00:17:07 ============================================================================ +00:17:07 + + +waiting on router queue for slot.... +00:17:08 ============================================================================ +00:17:08 Slot Id : <441> +00:17:08 Transaction Type : REQUEST +00:17:08 Received From : +00:17:08 ============================================================================ +00:17:08 FNo. Len. Field Value +00:17:08 ============================================================================ +00:17:08 [ 1] [ 4] [0800] +00:17:08 [ 7] [ 10] [0320072855] +00:17:08 [ 11] [ 6] [002855] +00:17:08 [ 37] [ 12] [57900002855] +00:17:08 [ 70] [ 3] [301] +00:17:08 ============================================================================ +00:17:08 + + +waiting on router queue for slot.... +00:17:08 Sending to : +00:17:08 ============================================================================ +00:17:08 ============================================================================ +00:17:08 Slot Id : <441> +00:17:08 Transaction Type : RESPONSE +00:17:08 Received From : +00:17:08 ============================================================================ +00:17:08 FNo. Len. Field Value +00:17:08 ============================================================================ +00:17:08 [ 1] [ 4] [0810] +00:17:08 [ 7] [ 10] [0320072855] +00:17:08 [ 11] [ 6] [002855] +00:17:08 [ 37] [ 12] [579000028550] +00:17:08 [ 39] [ 2] [00] +00:17:08 [ 70] [ 3] [810] +00:17:08 ============================================================================ +00:17:08 Calculate Source COMM Id = 6 +00:17:08 ============================================================================ +00:17:08 + + +waiting on router queue for slot.... +00:17:19 ============================================================================ +00:17:19 Slot Id : <402> +00:17:19 Transaction Type : REQUEST +00:17:19 Received From : +00:17:19 ============================================================================ +00:17:19 FNo. Len. Field Value +00:17:19 ============================================================================ +00:17:19 [ 1] [ 4] [0800] +00:17:19 [ 7] [ 10] [0319051626] +00:17:19 [ 11] [ 6] [153101] +00:17:19 [ 70] [ 3] [301] +00:17:19 ============================================================================ +00:17:19 + + +waiting on router queue for slot.... +00:17:19 Sending to : +00:17:19 ============================================================================ +00:17:19 ============================================================================ +00:17:19 Slot Id : <402> +00:17:19 Transaction Type : RESPONSE +00:17:19 Received From : +00:17:19 ============================================================================ +00:17:19 FNo. Len. Field Value +00:17:19 ============================================================================ +00:17:19 [ 1] [ 4] [0810] +00:17:19 [ 7] [ 10] [0319051626] +00:17:19 [ 11] [ 6] [153101] +00:17:19 [ 39] [ 2] [00] +00:17:19 [ 70] [ 3] [301] +00:17:19 ============================================================================ +00:17:19 Calculate Source COMM Id = 2 +00:17:19 ============================================================================ +00:17:19 + + +waiting on router queue for slot.... +00:17:31 ============================================================================ +00:17:31 Slot Id : <408> +00:17:31 Transaction Type : REQUEST +00:17:31 Received From : +00:17:31 ============================================================================ +00:17:31 FNo. Len. Field Value +00:17:31 ============================================================================ +00:17:31 [ 1] [ 4] [0800] +00:17:31 [ 7] [ 10] [0319051638] +00:17:31 [ 11] [ 6] [153102] +00:17:31 [ 70] [ 3] [301] +00:17:31 ============================================================================ +00:17:31 + + +waiting on router queue for slot.... +00:17:31 Sending to : +00:17:31 ============================================================================ +00:17:31 ============================================================================ +00:17:31 Slot Id : <408> +00:17:31 Transaction Type : RESPONSE +00:17:31 Received From : +00:17:31 ============================================================================ +00:17:31 FNo. Len. Field Value +00:17:31 ============================================================================ +00:17:31 [ 1] [ 4] [0810] +00:17:31 [ 7] [ 10] [0319051638] +00:17:31 [ 11] [ 6] [153102] +00:17:31 [ 39] [ 2] [00] +00:17:31 [ 70] [ 3] [301] +00:17:31 ============================================================================ +00:17:31 Calculate Source COMM Id = 2 +00:17:31 ============================================================================ +00:17:31 + + +waiting on router queue for slot.... +00:17:47 ============================================================================ +00:17:47 Slot Id : <437> +00:17:47 Transaction Type : REQUEST +00:17:47 Received From : +00:17:47 ============================================================================ +00:17:47 FNo. Len. Field Value +00:17:47 ============================================================================ +00:17:47 [ 1] [ 4] [0800] +00:17:47 [ 7] [ 10] [0319051654] +00:17:47 [ 11] [ 6] [153103] +00:17:47 [ 70] [ 3] [301] +00:17:47 ============================================================================ +00:17:47 + + +waiting on router queue for slot.... +00:17:47 Sending to : +00:17:47 ============================================================================ +00:17:47 ============================================================================ +00:17:47 Slot Id : <437> +00:17:47 Transaction Type : RESPONSE +00:17:47 Received From : +00:17:47 ============================================================================ +00:17:47 FNo. Len. Field Value +00:17:47 ============================================================================ +00:17:47 [ 1] [ 4] [0810] +00:17:47 [ 7] [ 10] [0319051654] +00:17:47 [ 11] [ 6] [153103] +00:17:47 [ 39] [ 2] [00] +00:17:47 [ 70] [ 3] [301] +00:17:47 ============================================================================ +00:17:47 Calculate Source COMM Id = 2 +00:17:47 ============================================================================ +00:17:47 + + +waiting on router queue for slot.... +00:17:58 ============================================================================ +00:17:58 Slot Id : <409> +00:17:58 Transaction Type : REQUEST +00:17:58 Received From : +00:17:58 ============================================================================ +00:17:58 FNo. Len. Field Value +00:17:58 ============================================================================ +00:17:58 [ 1] [ 4] [0800] +00:17:58 [ 7] [ 10] [0319051705] +00:17:58 [ 11] [ 6] [153104] +00:17:58 [ 70] [ 3] [301] +00:17:58 ============================================================================ +00:17:58 + + +waiting on router queue for slot.... +00:17:58 Sending to : +00:17:58 ============================================================================ +00:17:58 ============================================================================ +00:17:58 Slot Id : <409> +00:17:58 Transaction Type : RESPONSE +00:17:58 Received From : +00:17:58 ============================================================================ +00:17:58 FNo. Len. Field Value +00:17:58 ============================================================================ +00:17:58 [ 1] [ 4] [0810] +00:17:58 [ 7] [ 10] [0319051705] +00:17:58 [ 11] [ 6] [153104] +00:17:58 [ 39] [ 2] [00] +00:17:58 [ 70] [ 3] [301] +00:17:58 ============================================================================ +00:17:58 Calculate Source COMM Id = 2 +00:17:58 ============================================================================ +00:17:58 + + +waiting on router queue for slot.... +00:18:01 ============================================================================ +00:18:01 Slot Id : <385> +00:18:01 Transaction Type : REQUEST +00:18:01 Received From : +00:18:01 ============================================================================ +00:18:01 FNo. Len. Field Value +00:18:01 ============================================================================ +00:18:01 [ 1] [ 4] [0800] +00:18:01 [ 7] [ 10] [0320001747] +00:18:01 [ 11] [ 6] [003038] +00:18:01 [ 37] [ 12] [507900003038] +00:18:01 [ 70] [ 3] [ ] +00:18:01 ============================================================================ +00:18:01 + + +waiting on router queue for slot.... +00:18:01 Sending to : +00:18:01 ============================================================================ +00:18:01 ============================================================================ +00:18:01 Slot Id : <385> +00:18:01 Transaction Type : RESPONSE +00:18:01 Received From : +00:18:01 ============================================================================ +00:18:01 FNo. Len. Field Value +00:18:01 ============================================================================ +00:18:01 [ 1] [ 4] [0810] +00:18:01 [ 7] [ 10] [0320001747] +00:18:01 [ 11] [ 6] [003038] +00:18:01 [ 37] [ 12] [507900003038] +00:18:01 [ 39] [ 2] [91] +00:18:01 [ 70] [ 3] [ ] +00:18:01 ============================================================================ +00:18:01 Calculate Source COMM Id = 3 +00:18:01 ============================================================================ +00:18:01 + + +waiting on router queue for slot.... +00:18:09 ============================================================================ +00:18:09 Slot Id : <403> +00:18:09 Transaction Type : REQUEST +00:18:09 Received From : +00:18:09 ============================================================================ +00:18:09 FNo. Len. Field Value +00:18:09 ============================================================================ +00:18:09 [ 1] [ 4] [0800] +00:18:09 [ 2] [ 5] [02531] +00:18:09 [ 3] [ 6] [579008] +00:18:09 [ 7] [ 10] [0319171809] +00:18:09 [ 11] [ 6] [806429] +00:18:09 [ 15] [ 10] [0319171809] +00:18:09 [ 37] [ 11] [57900806429] +00:18:09 [ 70] [ 3] [001] +00:18:09 ============================================================================ +00:18:09 + + +waiting on router queue for slot.... +00:18:09 ============================================================================ +00:18:09 Slot Id : <403> +00:18:09 Transaction Type : RESPONSE +00:18:09 Received From : +00:18:09 ============================================================================ +00:18:09 FNo. Len. Field Value +00:18:09 ============================================================================ +00:18:09 [ 1] [ 4] [0810] +00:18:09 [ 7] [ 10] [0319171809] +00:18:09 [ 11] [ 6] [806429] +00:18:09 [ 15] [ 4] [0319] +00:18:09 [ 37] [ 12] [57900806429] +00:18:09 [ 39] [ 2] [00] +00:18:09 [ 70] [ 3] [001] +00:18:09 ============================================================================ +00:18:09 Sending to : +00:18:09 ============================================================================ +00:18:09 + + +waiting on router queue for slot.... +00:18:13 ============================================================================ +00:18:13 Slot Id : <362> +00:18:13 Transaction Type : REQUEST +00:18:13 Received From : +00:18:13 ============================================================================ +00:18:13 FNo. Len. Field Value +00:18:13 ============================================================================ +00:18:13 [ 1] [ 4] [0800] +00:18:13 [ 7] [ 10] [0320073001] +00:18:13 [ 11] [ 6] [003001] +00:18:13 [ 37] [ 12] [57900003001] +00:18:13 [ 70] [ 3] [301] +00:18:13 ============================================================================ +00:18:13 + + +waiting on router queue for slot.... +00:18:13 Sending to : +00:18:13 ============================================================================ +00:18:13 ============================================================================ +00:18:13 Slot Id : <362> +00:18:13 Transaction Type : RESPONSE +00:18:13 Received From : +00:18:13 ============================================================================ +00:18:13 FNo. Len. Field Value +00:18:13 ============================================================================ +00:18:13 [ 1] [ 4] [0810] +00:18:13 [ 7] [ 10] [0320073001] +00:18:13 [ 11] [ 6] [003001] +00:18:13 [ 37] [ 12] [579000030010] +00:18:13 [ 39] [ 2] [00] +00:18:13 [ 70] [ 3] [810] +00:18:13 ============================================================================ +00:18:13 Calculate Source COMM Id = 6 +00:18:13 ============================================================================ +00:18:13 + + +waiting on router queue for slot.... +00:18:14 ============================================================================ +00:18:14 Slot Id : <392> +00:18:14 Transaction Type : REQUEST +00:18:14 Received From : +00:18:14 ============================================================================ +00:18:14 FNo. Len. Field Value +00:18:14 ============================================================================ +00:18:14 [ 1] [ 4] [0800] +00:18:14 [ 7] [ 10] [0319051721] +00:18:14 [ 11] [ 6] [153105] +00:18:14 [ 70] [ 3] [301] +00:18:14 ============================================================================ +00:18:14 + + +waiting on router queue for slot.... +00:18:14 Sending to : +00:18:14 ============================================================================ +00:18:14 ============================================================================ +00:18:14 Slot Id : <392> +00:18:14 Transaction Type : RESPONSE +00:18:14 Received From : +00:18:14 ============================================================================ +00:18:14 FNo. Len. Field Value +00:18:14 ============================================================================ +00:18:14 [ 1] [ 4] [0810] +00:18:14 [ 7] [ 10] [0319051721] +00:18:14 [ 11] [ 6] [153105] +00:18:14 [ 39] [ 2] [00] +00:18:14 [ 70] [ 3] [301] +00:18:14 ============================================================================ +00:18:14 Calculate Source COMM Id = 2 +00:18:14 ============================================================================ +00:18:14 + + +waiting on router queue for slot.... +00:18:26 ============================================================================ +00:18:26 Slot Id : <412> +00:18:26 Transaction Type : REQUEST +00:18:26 Received From : +00:18:26 ============================================================================ +00:18:26 FNo. Len. Field Value +00:18:26 ============================================================================ +00:18:26 [ 1] [ 4] [0800] +00:18:26 [ 7] [ 10] [0319051732] +00:18:26 [ 11] [ 6] [153106] +00:18:26 [ 70] [ 3] [301] +00:18:26 ============================================================================ +00:18:26 + + +waiting on router queue for slot.... +00:18:26 Sending to : +00:18:26 ============================================================================ +00:18:26 ============================================================================ +00:18:26 Slot Id : <412> +00:18:26 Transaction Type : RESPONSE +00:18:26 Received From : +00:18:26 ============================================================================ +00:18:26 FNo. Len. Field Value +00:18:26 ============================================================================ +00:18:26 [ 1] [ 4] [0810] +00:18:26 [ 7] [ 10] [0319051732] +00:18:26 [ 11] [ 6] [153106] +00:18:26 [ 39] [ 2] [00] +00:18:26 [ 70] [ 3] [301] +00:18:26 ============================================================================ +00:18:26 Calculate Source COMM Id = 2 +00:18:26 ============================================================================ +00:18:26 + + +waiting on router queue for slot.... +00:18:40 ============================================================================ +00:18:40 Slot Id : <447> +00:18:40 Transaction Type : REQUEST +00:18:40 Received From : +00:18:40 ============================================================================ +00:18:40 FNo. Len. Field Value +00:18:40 ============================================================================ +00:18:40 [ 1] [ 4] [0800] +00:18:40 [ 7] [ 10] [0319051748] +00:18:40 [ 11] [ 6] [153107] +00:18:40 [ 70] [ 3] [301] +00:18:40 ============================================================================ +00:18:40 + + +waiting on router queue for slot.... +00:18:40 Sending to : +00:18:40 ============================================================================ +00:18:40 ============================================================================ +00:18:40 Slot Id : <447> +00:18:40 Transaction Type : RESPONSE +00:18:40 Received From : +00:18:40 ============================================================================ +00:18:40 FNo. Len. Field Value +00:18:40 ============================================================================ +00:18:40 [ 1] [ 4] [0810] +00:18:40 [ 7] [ 10] [0319051748] +00:18:40 [ 11] [ 6] [153107] +00:18:40 [ 39] [ 2] [00] +00:18:40 [ 70] [ 3] [301] +00:18:40 ============================================================================ +00:18:40 Calculate Source COMM Id = 2 +00:18:40 ============================================================================ +00:18:40 + + +waiting on router queue for slot.... +00:18:52 ============================================================================ +00:18:52 Slot Id : <450> +00:18:52 Transaction Type : REQUEST +00:18:52 Received From : +00:18:52 ============================================================================ +00:18:52 FNo. Len. Field Value +00:18:52 ============================================================================ +00:18:52 [ 1] [ 4] [0800] +00:18:52 [ 7] [ 10] [0319051759] +00:18:52 [ 11] [ 6] [153108] +00:18:52 [ 70] [ 3] [301] +00:18:52 ============================================================================ +00:18:52 + + +waiting on router queue for slot.... +00:18:52 Sending to : +00:18:52 ============================================================================ +00:18:52 ============================================================================ +00:18:52 Slot Id : <450> +00:18:52 Transaction Type : RESPONSE +00:18:52 Received From : +00:18:52 ============================================================================ +00:18:52 FNo. Len. Field Value +00:18:52 ============================================================================ +00:18:52 [ 1] [ 4] [0810] +00:18:52 [ 7] [ 10] [0319051759] +00:18:52 [ 11] [ 6] [153108] +00:18:52 [ 39] [ 2] [00] +00:18:52 [ 70] [ 3] [301] +00:18:52 ============================================================================ +00:18:52 Calculate Source COMM Id = 2 +00:18:52 ============================================================================ +00:18:52 + + +waiting on router queue for slot.... +00:19:02 ============================================================================ +00:19:02 Slot Id : <417> +00:19:02 Transaction Type : REQUEST +00:19:02 Received From : +00:19:02 ============================================================================ +00:19:02 FNo. Len. Field Value +00:19:02 ============================================================================ +00:19:02 [ 1] [ 4] [0800] +00:19:02 [ 7] [ 10] [0319051810] +00:19:02 [ 11] [ 6] [153109] +00:19:02 [ 70] [ 3] [301] +00:19:02 ============================================================================ +00:19:02 + + +waiting on router queue for slot.... +00:19:02 Sending to : +00:19:02 ============================================================================ +00:19:02 ============================================================================ +00:19:02 Slot Id : <417> +00:19:02 Transaction Type : RESPONSE +00:19:02 Received From : +00:19:02 ============================================================================ +00:19:02 FNo. Len. Field Value +00:19:02 ============================================================================ +00:19:02 [ 1] [ 4] [0810] +00:19:02 [ 7] [ 10] [0319051810] +00:19:02 [ 11] [ 6] [153109] +00:19:02 [ 39] [ 2] [00] +00:19:02 [ 70] [ 3] [301] +00:19:02 ============================================================================ +00:19:02 Calculate Source COMM Id = 2 +00:19:02 ============================================================================ +00:19:02 + + +waiting on router queue for slot.... +00:19:11 ============================================================================ +00:19:11 Slot Id : <386> +00:19:11 Transaction Type : REQUEST +00:19:11 Received From : +00:19:11 ============================================================================ +00:19:11 FNo. Len. Field Value +00:19:11 ============================================================================ +00:19:11 [ 1] [ 4] [0800] +00:19:11 [ 2] [ 5] [02531] +00:19:11 [ 3] [ 6] [579008] +00:19:11 [ 7] [ 10] [0319171911] +00:19:11 [ 11] [ 6] [806430] +00:19:11 [ 15] [ 10] [0319171911] +00:19:11 [ 37] [ 11] [57900806430] +00:19:11 [ 70] [ 3] [001] +00:19:11 ============================================================================ +00:19:11 + + +waiting on router queue for slot.... +00:19:11 ============================================================================ +00:19:11 Slot Id : <386> +00:19:11 Transaction Type : RESPONSE +00:19:11 Received From : +00:19:11 ============================================================================ +00:19:11 FNo. Len. Field Value +00:19:11 ============================================================================ +00:19:11 [ 1] [ 4] [0810] +00:19:11 [ 7] [ 10] [0319171911] +00:19:11 [ 11] [ 6] [806430] +00:19:11 [ 15] [ 4] [0319] +00:19:11 [ 37] [ 12] [57900806430] +00:19:11 [ 39] [ 2] [00] +00:19:11 [ 70] [ 3] [001] +00:19:11 ============================================================================ +00:19:11 Sending to : +00:19:11 ============================================================================ +00:19:11 + + +waiting on router queue for slot.... +00:19:13 ============================================================================ +00:19:13 Slot Id : <391> +00:19:13 Transaction Type : REQUEST +00:19:13 Received From : +00:19:13 ============================================================================ +00:19:13 FNo. Len. Field Value +00:19:13 ============================================================================ +00:19:13 [ 1] [ 4] [0800] +00:19:13 [ 7] [ 10] [0319051820] +00:19:13 [ 11] [ 6] [153110] +00:19:13 [ 70] [ 3] [301] +00:19:13 ============================================================================ +00:19:13 + + +waiting on router queue for slot.... +00:19:13 Sending to : +00:19:13 ============================================================================ +00:19:13 ============================================================================ +00:19:13 Slot Id : <391> +00:19:13 Transaction Type : RESPONSE +00:19:13 Received From : +00:19:13 ============================================================================ +00:19:13 FNo. Len. Field Value +00:19:13 ============================================================================ +00:19:13 [ 1] [ 4] [0810] +00:19:13 [ 7] [ 10] [0319051820] +00:19:13 [ 11] [ 6] [153110] +00:19:13 [ 39] [ 2] [00] +00:19:13 [ 70] [ 3] [301] +00:19:13 ============================================================================ +00:19:13 Calculate Source COMM Id = 2 +00:19:13 ============================================================================ +00:19:13 + + +waiting on router queue for slot.... +00:19:18 ============================================================================ +00:19:18 Slot Id : <377> +00:19:18 Transaction Type : REQUEST +00:19:18 Received From : +00:19:18 ============================================================================ +00:19:18 FNo. Len. Field Value +00:19:18 ============================================================================ +00:19:18 [ 1] [ 4] [0800] +00:19:18 [ 7] [ 10] [0320073106] +00:19:18 [ 11] [ 6] [003106] +00:19:18 [ 37] [ 12] [57900003106] +00:19:18 [ 70] [ 3] [301] +00:19:18 ============================================================================ +00:19:18 + + +waiting on router queue for slot.... +00:19:18 Sending to : +00:19:18 ============================================================================ +00:19:18 ============================================================================ +00:19:18 Slot Id : <377> +00:19:18 Transaction Type : RESPONSE +00:19:18 Received From : +00:19:18 ============================================================================ +00:19:18 FNo. Len. Field Value +00:19:18 ============================================================================ +00:19:18 [ 1] [ 4] [0810] +00:19:18 [ 7] [ 10] [0320073106] +00:19:18 [ 11] [ 6] [003106] +00:19:18 [ 37] [ 12] [579000031060] +00:19:18 [ 39] [ 2] [00] +00:19:18 [ 70] [ 3] [810] +00:19:18 ============================================================================ +00:19:18 Calculate Source COMM Id = 6 +00:19:18 ============================================================================ +00:19:18 + + +waiting on router queue for slot.... +00:19:24 ============================================================================ +00:19:24 Slot Id : <405> +00:19:24 Transaction Type : REQUEST +00:19:24 Received From : +00:19:24 ============================================================================ +00:19:24 FNo. Len. Field Value +00:19:24 ============================================================================ +00:19:24 [ 1] [ 4] [0800] +00:19:24 [ 7] [ 10] [0319051831] +00:19:24 [ 11] [ 6] [153111] +00:19:24 [ 70] [ 3] [301] +00:19:24 ============================================================================ +00:19:24 + + +waiting on router queue for slot.... +00:19:24 Sending to : +00:19:24 ============================================================================ +00:19:24 ============================================================================ +00:19:24 Slot Id : <405> +00:19:24 Transaction Type : RESPONSE +00:19:24 Received From : +00:19:24 ============================================================================ +00:19:24 FNo. Len. Field Value +00:19:24 ============================================================================ +00:19:24 [ 1] [ 4] [0810] +00:19:24 [ 7] [ 10] [0319051831] +00:19:24 [ 11] [ 6] [153111] +00:19:24 [ 39] [ 2] [00] +00:19:24 [ 70] [ 3] [301] +00:19:24 ============================================================================ +00:19:24 Calculate Source COMM Id = 2 +00:19:24 ============================================================================ +00:19:24 + + +waiting on router queue for slot.... +00:19:39 ============================================================================ +00:19:39 Slot Id : <443> +00:19:39 Transaction Type : REQUEST +00:19:39 Received From : +00:19:39 ============================================================================ +00:19:39 FNo. Len. Field Value +00:19:39 ============================================================================ +00:19:39 [ 1] [ 4] [0800] +00:19:39 [ 7] [ 10] [0319051846] +00:19:39 [ 11] [ 6] [153112] +00:19:39 [ 70] [ 3] [301] +00:19:39 ============================================================================ +00:19:39 + + +waiting on router queue for slot.... +00:19:39 Sending to : +00:19:39 ============================================================================ +00:19:39 ============================================================================ +00:19:39 Slot Id : <443> +00:19:39 Transaction Type : RESPONSE +00:19:39 Received From : +00:19:39 ============================================================================ +00:19:39 FNo. Len. Field Value +00:19:39 ============================================================================ +00:19:39 [ 1] [ 4] [0810] +00:19:39 [ 7] [ 10] [0319051846] +00:19:39 [ 11] [ 6] [153112] +00:19:39 [ 39] [ 2] [00] +00:19:39 [ 70] [ 3] [301] +00:19:39 ============================================================================ +00:19:39 Calculate Source COMM Id = 2 +00:19:39 ============================================================================ +00:19:39 + + +waiting on router queue for slot.... +00:19:54 ============================================================================ +00:19:54 Slot Id : <456> +00:19:54 Transaction Type : REQUEST +00:19:54 Received From : +00:19:54 ============================================================================ +00:19:54 FNo. Len. Field Value +00:19:54 ============================================================================ +00:19:54 [ 1] [ 4] [0800] +00:19:54 [ 7] [ 10] [0319051901] +00:19:54 [ 11] [ 6] [153113] +00:19:54 [ 70] [ 3] [301] +00:19:54 ============================================================================ +00:19:54 + + +waiting on router queue for slot.... +00:19:54 Sending to : +00:19:54 ============================================================================ +00:19:54 ============================================================================ +00:19:54 Slot Id : <456> +00:19:54 Transaction Type : RESPONSE +00:19:54 Received From : +00:19:54 ============================================================================ +00:19:54 FNo. Len. Field Value +00:19:54 ============================================================================ +00:19:54 [ 1] [ 4] [0810] +00:19:54 [ 7] [ 10] [0319051901] +00:19:54 [ 11] [ 6] [153113] +00:19:54 [ 39] [ 2] [00] +00:19:54 [ 70] [ 3] [301] +00:19:54 ============================================================================ +00:19:54 Calculate Source COMM Id = 2 +00:19:54 ============================================================================ +00:19:54 + + +waiting on router queue for slot.... +00:19:56 ============================================================================ +00:19:56 Slot Id : <446> +00:19:56 Transaction Type : REQUEST +00:19:56 Received From : +00:19:56 ============================================================================ +00:19:56 FNo. Len. Field Value +00:19:56 ============================================================================ +00:19:56 [ 1] [ 4] [0800] +00:19:56 [ 7] [ 10] [0319172742] +00:19:56 [ 11] [ 6] [099303] +00:19:56 [ 37] [ 12] [57900099303] +00:19:56 [ 70] [ 3] [301] +00:19:56 ============================================================================ +00:19:56 + + +waiting on router queue for slot.... +00:19:56 Sending to : +00:19:56 ============================================================================ +00:19:56 ============================================================================ +00:19:56 Slot Id : <446> +00:19:56 Transaction Type : RESPONSE +00:19:56 Received From : +00:19:56 ============================================================================ +00:19:56 FNo. Len. Field Value +00:19:56 ============================================================================ +00:19:56 [ 1] [ 4] [0810] +00:19:56 [ 7] [ 10] [0319172742] +00:19:56 [ 11] [ 6] [099303] +00:19:56 [ 37] [ 12] [579000993030] +00:19:56 [ 39] [ 2] [00] +00:19:56 [ 70] [ 3] [810] +00:19:56 ============================================================================ +00:19:56 Calculate Source COMM Id = 1 +00:19:56 ============================================================================ +00:19:56 + + +waiting on router queue for slot.... +00:20:04 ============================================================================ +00:20:04 Slot Id : <435> +00:20:04 Transaction Type : REQUEST +00:20:04 Received From : +00:20:04 ============================================================================ +00:20:04 FNo. Len. Field Value +00:20:04 ============================================================================ +00:20:04 [ 1] [ 4] [0800] +00:20:04 [ 7] [ 10] [0319051911] +00:20:04 [ 11] [ 6] [153114] +00:20:04 [ 70] [ 3] [301] +00:20:04 ============================================================================ +00:20:04 + + +waiting on router queue for slot.... +00:20:04 Sending to : +00:20:04 ============================================================================ +00:20:04 ============================================================================ +00:20:04 Slot Id : <435> +00:20:04 Transaction Type : RESPONSE +00:20:04 Received From : +00:20:04 ============================================================================ +00:20:04 FNo. Len. Field Value +00:20:04 ============================================================================ +00:20:04 [ 1] [ 4] [0810] +00:20:04 [ 7] [ 10] [0319051911] +00:20:04 [ 11] [ 6] [153114] +00:20:04 [ 39] [ 2] [00] +00:20:04 [ 70] [ 3] [301] +00:20:04 ============================================================================ +00:20:04 Calculate Source COMM Id = 2 +00:20:04 ============================================================================ +00:20:04 + + +waiting on router queue for slot.... +00:20:13 ============================================================================ +00:20:13 Slot Id : <424> +00:20:13 Transaction Type : REQUEST +00:20:13 Received From : +00:20:13 ============================================================================ +00:20:13 FNo. Len. Field Value +00:20:13 ============================================================================ +00:20:13 [ 1] [ 4] [0800] +00:20:13 [ 2] [ 5] [02531] +00:20:13 [ 3] [ 6] [579008] +00:20:13 [ 7] [ 10] [0319172013] +00:20:13 [ 11] [ 6] [806431] +00:20:13 [ 15] [ 10] [0319172013] +00:20:13 [ 37] [ 11] [57900806431] +00:20:13 [ 70] [ 3] [001] +00:20:13 ============================================================================ +00:20:13 + + +waiting on router queue for slot.... +00:20:13 ============================================================================ +00:20:13 Slot Id : <424> +00:20:13 Transaction Type : RESPONSE +00:20:13 Received From : +00:20:13 ============================================================================ +00:20:13 FNo. Len. Field Value +00:20:13 ============================================================================ +00:20:13 [ 1] [ 4] [0810] +00:20:13 [ 7] [ 10] [0319172013] +00:20:13 [ 11] [ 6] [806431] +00:20:13 [ 15] [ 4] [0319] +00:20:13 [ 37] [ 12] [57900806431] +00:20:13 [ 39] [ 2] [00] +00:20:13 [ 70] [ 3] [001] +00:20:13 ============================================================================ +00:20:13 Sending to : +00:20:13 ============================================================================ +00:20:13 + + +waiting on router queue for slot.... +00:20:15 ============================================================================ +00:20:15 Slot Id : <404> +00:20:15 Transaction Type : REQUEST +00:20:15 Received From : +00:20:15 ============================================================================ +00:20:15 FNo. Len. Field Value +00:20:15 ============================================================================ +00:20:15 [ 1] [ 4] [0800] +00:20:15 [ 7] [ 10] [0319051921] +00:20:15 [ 11] [ 6] [153115] +00:20:15 [ 70] [ 3] [301] +00:20:15 ============================================================================ +00:20:15 + + +waiting on router queue for slot.... +00:20:15 Sending to : +00:20:15 ============================================================================ +00:20:15 ============================================================================ +00:20:15 Slot Id : <404> +00:20:15 Transaction Type : RESPONSE +00:20:15 Received From : +00:20:15 ============================================================================ +00:20:15 FNo. Len. Field Value +00:20:15 ============================================================================ +00:20:15 [ 1] [ 4] [0810] +00:20:15 [ 7] [ 10] [0319051921] +00:20:15 [ 11] [ 6] [153115] +00:20:15 [ 39] [ 2] [00] +00:20:15 [ 70] [ 3] [301] +00:20:15 ============================================================================ +00:20:15 Calculate Source COMM Id = 2 +00:20:15 ============================================================================ +00:20:15 + + +waiting on router queue for slot.... +00:20:23 ============================================================================ +00:20:23 Slot Id : <429> +00:20:23 Transaction Type : REQUEST +00:20:23 Received From : +00:20:23 ============================================================================ +00:20:23 FNo. Len. Field Value +00:20:23 ============================================================================ +00:20:23 [ 1] [ 4] [0800] +00:20:23 [ 7] [ 10] [0320073211] +00:20:23 [ 11] [ 6] [003211] +00:20:23 [ 37] [ 12] [57900003211] +00:20:23 [ 70] [ 3] [301] +00:20:23 ============================================================================ +00:20:23 + + +waiting on router queue for slot.... +00:20:23 Sending to : +00:20:23 ============================================================================ +00:20:23 ============================================================================ +00:20:23 Slot Id : <429> +00:20:23 Transaction Type : RESPONSE +00:20:23 Received From : +00:20:23 ============================================================================ +00:20:23 FNo. Len. Field Value +00:20:23 ============================================================================ +00:20:23 [ 1] [ 4] [0810] +00:20:23 [ 7] [ 10] [0320073211] +00:20:23 [ 11] [ 6] [003211] +00:20:23 [ 37] [ 12] [579000032110] +00:20:23 [ 39] [ 2] [00] +00:20:23 [ 70] [ 3] [810] +00:20:23 ============================================================================ +00:20:23 Calculate Source COMM Id = 6 +00:20:23 ============================================================================ +00:20:23 + + +waiting on router queue for slot.... +00:20:30 ============================================================================ +00:20:30 Slot Id : <442> +00:20:30 Transaction Type : REQUEST +00:20:30 Received From : +00:20:30 ============================================================================ +00:20:30 FNo. Len. Field Value +00:20:30 ============================================================================ +00:20:30 [ 1] [ 4] [0800] +00:20:30 [ 7] [ 10] [0319051938] +00:20:30 [ 11] [ 6] [153116] +00:20:30 [ 70] [ 3] [301] +00:20:30 ============================================================================ +00:20:30 + + +waiting on router queue for slot.... +00:20:30 Sending to : +00:20:30 ============================================================================ +00:20:30 ============================================================================ +00:20:30 Slot Id : <442> +00:20:30 Transaction Type : RESPONSE +00:20:30 Received From : +00:20:30 ============================================================================ +00:20:30 FNo. Len. Field Value +00:20:30 ============================================================================ +00:20:30 [ 1] [ 4] [0810] +00:20:30 [ 7] [ 10] [0319051938] +00:20:30 [ 11] [ 6] [153116] +00:20:30 [ 39] [ 2] [00] +00:20:30 [ 70] [ 3] [301] +00:20:30 ============================================================================ +00:20:30 Calculate Source COMM Id = 2 +00:20:30 ============================================================================ +00:20:30 + + +waiting on router queue for slot.... +00:20:41 ============================================================================ +00:20:41 Slot Id : <445> +00:20:41 Transaction Type : REQUEST +00:20:41 Received From : +00:20:41 ============================================================================ +00:20:41 FNo. Len. Field Value +00:20:41 ============================================================================ +00:20:41 [ 1] [ 4] [0800] +00:20:41 [ 7] [ 10] [0319051949] +00:20:41 [ 11] [ 6] [153117] +00:20:41 [ 70] [ 3] [301] +00:20:41 ============================================================================ +00:20:41 + + +waiting on router queue for slot.... +00:20:41 Sending to : +00:20:41 ============================================================================ +00:20:41 ============================================================================ +00:20:41 Slot Id : <445> +00:20:41 Transaction Type : RESPONSE +00:20:41 Received From : +00:20:41 ============================================================================ +00:20:41 FNo. Len. Field Value +00:20:41 ============================================================================ +00:20:41 [ 1] [ 4] [0810] +00:20:41 [ 7] [ 10] [0319051949] +00:20:41 [ 11] [ 6] [153117] +00:20:41 [ 39] [ 2] [00] +00:20:41 [ 70] [ 3] [301] +00:20:41 ============================================================================ +00:20:41 Calculate Source COMM Id = 2 +00:20:41 ============================================================================ +00:20:41 + + +waiting on router queue for slot.... +00:20:52 ============================================================================ +00:20:52 Slot Id : <438> +00:20:52 Transaction Type : REQUEST +00:20:52 Received From : +00:20:52 ============================================================================ +00:20:52 FNo. Len. Field Value +00:20:52 ============================================================================ +00:20:52 [ 1] [ 4] [0800] +00:20:52 [ 7] [ 10] [0319052000] +00:20:52 [ 11] [ 6] [153118] +00:20:52 [ 70] [ 3] [301] +00:20:52 ============================================================================ +00:20:52 + + +waiting on router queue for slot.... +00:20:52 Sending to : +00:20:52 ============================================================================ +00:20:52 ============================================================================ +00:20:52 Slot Id : <438> +00:20:52 Transaction Type : RESPONSE +00:20:52 Received From : +00:20:52 ============================================================================ +00:20:52 FNo. Len. Field Value +00:20:52 ============================================================================ +00:20:52 [ 1] [ 4] [0810] +00:20:52 [ 7] [ 10] [0319052000] +00:20:52 [ 11] [ 6] [153118] +00:20:52 [ 39] [ 2] [00] +00:20:52 [ 70] [ 3] [301] +00:20:52 ============================================================================ +00:20:52 Calculate Source COMM Id = 2 +00:20:52 ============================================================================ +00:20:52 + + +waiting on router queue for slot.... +00:21:03 ============================================================================ +00:21:03 Slot Id : <434> +00:21:03 Transaction Type : REQUEST +00:21:03 Received From : +00:21:03 ============================================================================ +00:21:03 FNo. Len. Field Value +00:21:03 ============================================================================ +00:21:03 [ 1] [ 4] [0800] +00:21:03 [ 7] [ 10] [0319052010] +00:21:03 [ 11] [ 6] [153119] +00:21:03 [ 70] [ 3] [301] +00:21:03 ============================================================================ +00:21:03 + + +waiting on router queue for slot.... +00:21:03 Sending to : +00:21:03 ============================================================================ +00:21:03 ============================================================================ +00:21:03 Slot Id : <434> +00:21:03 Transaction Type : RESPONSE +00:21:03 Received From : +00:21:03 ============================================================================ +00:21:03 FNo. Len. Field Value +00:21:03 ============================================================================ +00:21:03 [ 1] [ 4] [0810] +00:21:03 [ 7] [ 10] [0319052010] +00:21:03 [ 11] [ 6] [153119] +00:21:03 [ 39] [ 2] [00] +00:21:03 [ 70] [ 3] [301] +00:21:03 ============================================================================ +00:21:03 Calculate Source COMM Id = 2 +00:21:03 ============================================================================ +00:21:03 + + +waiting on router queue for slot.... +00:21:14 ============================================================================ +00:21:14 Slot Id : <428> +00:21:14 Transaction Type : REQUEST +00:21:14 Received From : +00:21:14 ============================================================================ +00:21:14 FNo. Len. Field Value +00:21:14 ============================================================================ +00:21:14 [ 1] [ 4] [0800] +00:21:14 [ 7] [ 10] [0319052021] +00:21:14 [ 11] [ 6] [153120] +00:21:14 [ 70] [ 3] [301] +00:21:14 ============================================================================ +00:21:14 + + +waiting on router queue for slot.... +00:21:14 Sending to : +00:21:14 ============================================================================ +00:21:14 ============================================================================ +00:21:14 Slot Id : <428> +00:21:14 Transaction Type : RESPONSE +00:21:14 Received From : +00:21:14 ============================================================================ +00:21:14 FNo. Len. Field Value +00:21:14 ============================================================================ +00:21:14 [ 1] [ 4] [0810] +00:21:14 [ 7] [ 10] [0319052021] +00:21:14 [ 11] [ 6] [153120] +00:21:14 [ 39] [ 2] [00] +00:21:14 [ 70] [ 3] [301] +00:21:14 ============================================================================ +00:21:14 Calculate Source COMM Id = 2 +00:21:14 ============================================================================ +00:21:14 + + +waiting on router queue for slot.... +00:21:15 ============================================================================ +00:21:15 Slot Id : <427> +00:21:15 Transaction Type : REQUEST +00:21:15 Received From : +00:21:15 ============================================================================ +00:21:15 FNo. Len. Field Value +00:21:15 ============================================================================ +00:21:15 [ 1] [ 4] [0800] +00:21:15 [ 2] [ 5] [02531] +00:21:15 [ 3] [ 6] [579008] +00:21:15 [ 7] [ 10] [0319172115] +00:21:15 [ 11] [ 6] [806432] +00:21:15 [ 15] [ 10] [0319172115] +00:21:15 [ 37] [ 11] [57900806432] +00:21:15 [ 70] [ 3] [001] +00:21:15 ============================================================================ +00:21:15 + + +waiting on router queue for slot.... +00:21:15 ============================================================================ +00:21:15 Slot Id : <427> +00:21:15 Transaction Type : RESPONSE +00:21:15 Received From : +00:21:15 ============================================================================ +00:21:15 FNo. Len. Field Value +00:21:15 ============================================================================ +00:21:15 [ 1] [ 4] [0810] +00:21:15 [ 7] [ 10] [0319172115] +00:21:15 [ 11] [ 6] [806432] +00:21:15 [ 15] [ 4] [0319] +00:21:15 [ 37] [ 12] [57900806432] +00:21:15 [ 39] [ 2] [00] +00:21:15 [ 70] [ 3] [001] +00:21:15 ============================================================================ +00:21:15 Sending to : +00:21:15 ============================================================================ +00:21:15 + + +waiting on router queue for slot.... +00:21:20 ============================================================================ +00:21:20 Slot Id : <426> +00:21:20 Transaction Type : REQUEST +00:21:20 Received From : +00:21:20 ============================================================================ +00:21:20 FNo. Len. Field Value +00:21:20 ============================================================================ +00:21:20 [ 1] [ 4] [0800] +00:21:20 [ 7] [ 10] [0319171912] +00:21:20 [ 11] [ 6] [014776] +00:21:20 [ 37] [ 12] [57900014776] +00:21:20 [ 70] [ 3] [301] +00:21:20 ============================================================================ +00:21:20 + + +waiting on router queue for slot.... +00:21:20 Sending to : +00:21:20 ============================================================================ +00:21:20 ============================================================================ +00:21:20 Slot Id : <426> +00:21:20 Transaction Type : RESPONSE +00:21:20 Received From : +00:21:20 ============================================================================ +00:21:20 FNo. Len. Field Value +00:21:20 ============================================================================ +00:21:20 [ 1] [ 4] [0810] +00:21:20 [ 7] [ 10] [0319171912] +00:21:20 [ 11] [ 6] [014776] +00:21:20 [ 37] [ 12] [579000147760] +00:21:20 [ 39] [ 2] [00] +00:21:20 [ 70] [ 3] [810] +00:21:20 ============================================================================ +00:21:20 Calculate Source COMM Id = 4 +00:21:20 ============================================================================ +00:21:20 + + +waiting on router queue for slot.... +00:21:24 ============================================================================ +00:21:24 Slot Id : <431> +00:21:24 Transaction Type : REQUEST +00:21:24 Received From : +00:21:24 ============================================================================ +00:21:24 FNo. Len. Field Value +00:21:24 ============================================================================ +00:21:24 [ 1] [ 4] [0800] +00:21:24 [ 7] [ 10] [0319052031] +00:21:24 [ 11] [ 6] [153121] +00:21:24 [ 70] [ 3] [301] +00:21:24 ============================================================================ +00:21:24 + + +waiting on router queue for slot.... +00:21:24 Sending to : +00:21:24 ============================================================================ +00:21:24 ============================================================================ +00:21:24 Slot Id : <431> +00:21:24 Transaction Type : RESPONSE +00:21:24 Received From : +00:21:24 ============================================================================ +00:21:24 FNo. Len. Field Value +00:21:24 ============================================================================ +00:21:24 [ 1] [ 4] [0810] +00:21:24 [ 7] [ 10] [0319052031] +00:21:24 [ 11] [ 6] [153121] +00:21:24 [ 39] [ 2] [00] +00:21:24 [ 70] [ 3] [301] +00:21:24 ============================================================================ +00:21:24 Calculate Source COMM Id = 2 +00:21:24 ============================================================================ +00:21:24 + + +waiting on router queue for slot.... +00:21:28 ============================================================================ +00:21:28 Slot Id : <451> +00:21:28 Transaction Type : REQUEST +00:21:28 Received From : +00:21:28 ============================================================================ +00:21:28 FNo. Len. Field Value +00:21:28 ============================================================================ +00:21:28 [ 1] [ 4] [0800] +00:21:28 [ 7] [ 10] [0320073316] +00:21:28 [ 11] [ 6] [003316] +00:21:28 [ 37] [ 12] [57900003316] +00:21:28 [ 70] [ 3] [301] +00:21:28 ============================================================================ +00:21:28 + + +waiting on router queue for slot.... +00:21:28 Sending to : +00:21:28 ============================================================================ +00:21:28 ============================================================================ +00:21:28 Slot Id : <451> +00:21:28 Transaction Type : RESPONSE +00:21:28 Received From : +00:21:28 ============================================================================ +00:21:28 FNo. Len. Field Value +00:21:28 ============================================================================ +00:21:28 [ 1] [ 4] [0810] +00:21:28 [ 7] [ 10] [0320073316] +00:21:28 [ 11] [ 6] [003316] +00:21:28 [ 37] [ 12] [579000033160] +00:21:28 [ 39] [ 2] [00] +00:21:28 [ 70] [ 3] [810] +00:21:28 ============================================================================ +00:21:28 Calculate Source COMM Id = 6 +00:21:28 ============================================================================ +00:21:28 + + +waiting on router queue for slot.... +00:21:35 ============================================================================ +00:21:35 Slot Id : <457> +00:21:35 Transaction Type : REQUEST +00:21:35 Received From : +00:21:35 ============================================================================ +00:21:35 FNo. Len. Field Value +00:21:35 ============================================================================ +00:21:35 [ 1] [ 4] [0800] +00:21:35 [ 7] [ 10] [0319052042] +00:21:35 [ 11] [ 6] [153122] +00:21:35 [ 70] [ 3] [301] +00:21:35 ============================================================================ +00:21:35 + + +waiting on router queue for slot.... +00:21:35 Sending to : +00:21:35 ============================================================================ +00:21:35 ============================================================================ +00:21:35 Slot Id : <457> +00:21:35 Transaction Type : RESPONSE +00:21:35 Received From : +00:21:35 ============================================================================ +00:21:35 FNo. Len. Field Value +00:21:35 ============================================================================ +00:21:35 [ 1] [ 4] [0810] +00:21:35 [ 7] [ 10] [0319052042] +00:21:35 [ 11] [ 6] [153122] +00:21:35 [ 39] [ 2] [00] +00:21:35 [ 70] [ 3] [301] +00:21:35 ============================================================================ +00:21:35 Calculate Source COMM Id = 2 +00:21:35 ============================================================================ +00:21:35 + + +waiting on router queue for slot.... +00:21:51 ============================================================================ +00:21:51 Slot Id : <422> +00:21:51 Transaction Type : REQUEST +00:21:51 Received From : +00:21:51 ============================================================================ +00:21:51 FNo. Len. Field Value +00:21:51 ============================================================================ +00:21:51 [ 1] [ 4] [0800] +00:21:51 [ 7] [ 10] [0319052059] +00:21:51 [ 11] [ 6] [153123] +00:21:51 [ 70] [ 3] [301] +00:21:51 ============================================================================ +00:21:51 + + +waiting on router queue for slot.... +00:21:51 Sending to : +00:21:51 ============================================================================ +00:21:51 ============================================================================ +00:21:51 Slot Id : <422> +00:21:51 Transaction Type : RESPONSE +00:21:51 Received From : +00:21:51 ============================================================================ +00:21:51 FNo. Len. Field Value +00:21:51 ============================================================================ +00:21:51 [ 1] [ 4] [0810] +00:21:51 [ 7] [ 10] [0319052059] +00:21:51 [ 11] [ 6] [153123] +00:21:51 [ 39] [ 2] [00] +00:21:51 [ 70] [ 3] [301] +00:21:51 ============================================================================ +00:21:51 Calculate Source COMM Id = 2 +00:21:51 ============================================================================ +00:21:51 + + +waiting on router queue for slot.... +00:22:02 ============================================================================ +00:22:02 Slot Id : <462> +00:22:02 Transaction Type : REQUEST +00:22:02 Received From : +00:22:02 ============================================================================ +00:22:02 FNo. Len. Field Value +00:22:02 ============================================================================ +00:22:02 [ 1] [ 4] [0800] +00:22:02 [ 7] [ 10] [0319052109] +00:22:02 [ 11] [ 6] [153124] +00:22:02 [ 70] [ 3] [301] +00:22:02 ============================================================================ +00:22:02 + + +waiting on router queue for slot.... +00:22:02 Sending to : +00:22:02 ============================================================================ +00:22:02 ============================================================================ +00:22:02 Slot Id : <462> +00:22:02 Transaction Type : RESPONSE +00:22:02 Received From : +00:22:02 ============================================================================ +00:22:02 FNo. Len. Field Value +00:22:02 ============================================================================ +00:22:02 [ 1] [ 4] [0810] +00:22:02 [ 7] [ 10] [0319052109] +00:22:02 [ 11] [ 6] [153124] +00:22:02 [ 39] [ 2] [00] +00:22:02 [ 70] [ 3] [301] +00:22:02 ============================================================================ +00:22:02 Calculate Source COMM Id = 2 +00:22:02 ============================================================================ +00:22:02 + + +waiting on router queue for slot.... +00:22:17 ============================================================================ +00:22:17 Slot Id : <444> +00:22:17 Transaction Type : REQUEST +00:22:17 Received From : +00:22:17 ============================================================================ +00:22:17 FNo. Len. Field Value +00:22:17 ============================================================================ +00:22:17 [ 1] [ 4] [0800] +00:22:17 [ 2] [ 5] [02531] +00:22:17 [ 3] [ 6] [579008] +00:22:17 [ 7] [ 10] [0319172217] +00:22:17 [ 11] [ 6] [806433] +00:22:17 [ 15] [ 10] [0319172217] +00:22:17 [ 37] [ 11] [57900806433] +00:22:17 [ 70] [ 3] [001] +00:22:17 ============================================================================ +00:22:17 + + +waiting on router queue for slot.... +00:22:17 ============================================================================ +00:22:17 Slot Id : <444> +00:22:17 Transaction Type : RESPONSE +00:22:17 Received From : +00:22:17 ============================================================================ +00:22:17 FNo. Len. Field Value +00:22:17 ============================================================================ +00:22:17 [ 1] [ 4] [0810] +00:22:17 [ 7] [ 10] [0319172217] +00:22:17 [ 11] [ 6] [806433] +00:22:17 [ 15] [ 4] [0319] +00:22:17 [ 37] [ 12] [57900806433] +00:22:17 [ 39] [ 2] [00] +00:22:17 [ 70] [ 3] [001] +00:22:17 ============================================================================ +00:22:17 Sending to : +00:22:17 ============================================================================ +00:22:17 + + +waiting on router queue for slot.... +00:22:17 ============================================================================ +00:22:17 Slot Id : <465> +00:22:17 Transaction Type : REQUEST +00:22:17 Received From : +00:22:17 ============================================================================ +00:22:17 FNo. Len. Field Value +00:22:17 ============================================================================ +00:22:17 [ 1] [ 4] [0800] +00:22:17 [ 7] [ 10] [0319052125] +00:22:17 [ 11] [ 6] [153125] +00:22:17 [ 70] [ 3] [301] +00:22:17 ============================================================================ +00:22:17 + + +waiting on router queue for slot.... +00:22:17 Sending to : +00:22:17 ============================================================================ +00:22:17 ============================================================================ +00:22:17 Slot Id : <465> +00:22:17 Transaction Type : RESPONSE +00:22:17 Received From : +00:22:17 ============================================================================ +00:22:17 FNo. Len. Field Value +00:22:17 ============================================================================ +00:22:17 [ 1] [ 4] [0810] +00:22:17 [ 7] [ 10] [0319052125] +00:22:17 [ 11] [ 6] [153125] +00:22:17 [ 39] [ 2] [00] +00:22:17 [ 70] [ 3] [301] +00:22:17 ============================================================================ +00:22:17 Calculate Source COMM Id = 2 +00:22:17 ============================================================================ +00:22:17 + + +waiting on router queue for slot.... +00:22:33 ============================================================================ +00:22:33 Slot Id : <421> +00:22:33 Transaction Type : REQUEST +00:22:33 Received From : +00:22:33 ============================================================================ +00:22:33 FNo. Len. Field Value +00:22:33 ============================================================================ +00:22:33 [ 1] [ 4] [0800] +00:22:33 [ 7] [ 10] [0320073421] +00:22:33 [ 11] [ 6] [003421] +00:22:33 [ 37] [ 12] [57900003421] +00:22:33 [ 70] [ 3] [301] +00:22:33 ============================================================================ +00:22:33 + + +waiting on router queue for slot.... +00:22:33 Sending to : +00:22:33 ============================================================================ +00:22:33 ============================================================================ +00:22:33 Slot Id : <421> +00:22:33 Transaction Type : RESPONSE +00:22:33 Received From : +00:22:33 ============================================================================ +00:22:33 FNo. Len. Field Value +00:22:33 ============================================================================ +00:22:33 [ 1] [ 4] [0810] +00:22:33 [ 7] [ 10] [0320073421] +00:22:33 [ 11] [ 6] [003421] +00:22:33 [ 37] [ 12] [579000034210] +00:22:33 [ 39] [ 2] [00] +00:22:33 [ 70] [ 3] [810] +00:22:33 ============================================================================ +00:22:33 Calculate Source COMM Id = 6 +00:22:33 ============================================================================ +00:22:33 + + +waiting on router queue for slot.... +00:22:34 ============================================================================ +00:22:34 Slot Id : <439> +00:22:34 Transaction Type : REQUEST +00:22:34 Received From : +00:22:34 ============================================================================ +00:22:34 FNo. Len. Field Value +00:22:34 ============================================================================ +00:22:34 [ 1] [ 4] [0800] +00:22:34 [ 7] [ 10] [0319052141] +00:22:34 [ 11] [ 6] [153126] +00:22:34 [ 70] [ 3] [301] +00:22:34 ============================================================================ +00:22:34 + + +waiting on router queue for slot.... +00:22:34 Sending to : +00:22:34 ============================================================================ +00:22:34 ============================================================================ +00:22:34 Slot Id : <439> +00:22:34 Transaction Type : RESPONSE +00:22:34 Received From : +00:22:34 ============================================================================ +00:22:34 FNo. Len. Field Value +00:22:34 ============================================================================ +00:22:34 [ 1] [ 4] [0810] +00:22:34 [ 7] [ 10] [0319052141] +00:22:34 [ 11] [ 6] [153126] +00:22:34 [ 39] [ 2] [00] +00:22:34 [ 70] [ 3] [301] +00:22:34 ============================================================================ +00:22:34 Calculate Source COMM Id = 2 +00:22:34 ============================================================================ +00:22:34 + + +waiting on router queue for slot.... +00:22:42 ============================================================================ +00:22:42 Slot Id : <458> +00:22:42 Transaction Type : REQUEST +00:22:42 Received From : +00:22:42 ============================================================================ +00:22:42 FNo. Len. Field Value +00:22:42 ============================================================================ +00:22:42 [ 1] [ 4] [0800] +00:22:42 [ 7] [ 10] [0319172238] +00:22:42 [ 11] [ 6] [047206] +00:22:42 [ 37] [ 12] [507900047206] +00:22:42 [ 70] [ 3] [001] +00:22:42 ============================================================================ +00:22:42 + + +waiting on router queue for slot.... +00:22:42 Sending to : +00:22:42 ============================================================================ +00:22:42 ============================================================================ +00:22:42 Slot Id : <458> +00:22:42 Transaction Type : RESPONSE +00:22:42 Received From : +00:22:42 ============================================================================ +00:22:42 FNo. Len. Field Value +00:22:42 ============================================================================ +00:22:42 [ 1] [ 4] [0810] +00:22:42 [ 7] [ 10] [0319172238] +00:22:42 [ 11] [ 6] [047206] +00:22:42 [ 37] [ 12] [507900047206] +00:22:42 [ 39] [ 2] [00] +00:22:42 [ 70] [ 3] [001] +00:22:42 ============================================================================ +00:22:42 Calculate Source COMM Id = 0 +00:22:42 ============================================================================ +00:22:42 + + +waiting on router queue for slot.... +00:22:49 ============================================================================ +00:22:49 Slot Id : <423> +00:22:49 Transaction Type : REQUEST +00:22:49 Received From : +00:22:49 ============================================================================ +00:22:49 FNo. Len. Field Value +00:22:49 ============================================================================ +00:22:49 [ 1] [ 4] [0800] +00:22:49 [ 7] [ 10] [0319052156] +00:22:49 [ 11] [ 6] [153127] +00:22:49 [ 70] [ 3] [301] +00:22:49 ============================================================================ +00:22:49 + + +waiting on router queue for slot.... +00:22:49 Sending to : +00:22:49 ============================================================================ +00:22:49 ============================================================================ +00:22:49 Slot Id : <423> +00:22:49 Transaction Type : RESPONSE +00:22:49 Received From : +00:22:49 ============================================================================ +00:22:49 FNo. Len. Field Value +00:22:49 ============================================================================ +00:22:49 [ 1] [ 4] [0810] +00:22:49 [ 7] [ 10] [0319052156] +00:22:49 [ 11] [ 6] [153127] +00:22:49 [ 39] [ 2] [00] +00:22:49 [ 70] [ 3] [301] +00:22:49 ============================================================================ +00:22:49 Calculate Source COMM Id = 2 +00:22:49 ============================================================================ +00:22:49 + + +waiting on router queue for slot.... +00:22:59 ============================================================================ +00:22:59 Slot Id : <466> +00:22:59 Transaction Type : REQUEST +00:22:59 Received From : +00:22:59 ============================================================================ +00:22:59 FNo. Len. Field Value +00:22:59 ============================================================================ +00:22:59 [ 1] [ 4] [0800] +00:22:59 [ 7] [ 10] [0319052207] +00:22:59 [ 11] [ 6] [153128] +00:22:59 [ 70] [ 3] [301] +00:22:59 ============================================================================ +00:22:59 + + +waiting on router queue for slot.... +00:22:59 Sending to : +00:22:59 ============================================================================ +00:22:59 ============================================================================ +00:22:59 Slot Id : <466> +00:22:59 Transaction Type : RESPONSE +00:22:59 Received From : +00:22:59 ============================================================================ +00:22:59 FNo. Len. Field Value +00:22:59 ============================================================================ +00:22:59 [ 1] [ 4] [0810] +00:22:59 [ 7] [ 10] [0319052207] +00:22:59 [ 11] [ 6] [153128] +00:22:59 [ 39] [ 2] [00] +00:22:59 [ 70] [ 3] [301] +00:22:59 ============================================================================ +00:22:59 Calculate Source COMM Id = 2 +00:22:59 ============================================================================ +00:22:59 + + +waiting on router queue for slot.... +00:23:15 ============================================================================ +00:23:15 Slot Id : <436> +00:23:15 Transaction Type : REQUEST +00:23:15 Received From : +00:23:15 ============================================================================ +00:23:15 FNo. Len. Field Value +00:23:15 ============================================================================ +00:23:15 [ 1] [ 4] [0800] +00:23:15 [ 7] [ 10] [0319052222] +00:23:15 [ 11] [ 6] [153129] +00:23:15 [ 70] [ 3] [301] +00:23:15 ============================================================================ +00:23:15 + + +waiting on router queue for slot.... +00:23:15 Sending to : +00:23:15 ============================================================================ +00:23:15 ============================================================================ +00:23:15 Slot Id : <436> +00:23:15 Transaction Type : RESPONSE +00:23:15 Received From : +00:23:15 ============================================================================ +00:23:15 FNo. Len. Field Value +00:23:15 ============================================================================ +00:23:15 [ 1] [ 4] [0810] +00:23:15 [ 7] [ 10] [0319052222] +00:23:15 [ 11] [ 6] [153129] +00:23:15 [ 39] [ 2] [00] +00:23:15 [ 70] [ 3] [301] +00:23:15 ============================================================================ +00:23:15 Calculate Source COMM Id = 2 +00:23:15 ============================================================================ +00:23:15 + + +waiting on router queue for slot.... +00:23:19 ============================================================================ +00:23:19 Slot Id : <459> +00:23:19 Transaction Type : REQUEST +00:23:19 Received From : +00:23:19 ============================================================================ +00:23:19 FNo. Len. Field Value +00:23:19 ============================================================================ +00:23:19 [ 1] [ 4] [0800] +00:23:19 [ 2] [ 5] [02531] +00:23:19 [ 3] [ 6] [579008] +00:23:19 [ 7] [ 10] [0319172319] +00:23:19 [ 11] [ 6] [806434] +00:23:19 [ 15] [ 10] [0319172319] +00:23:19 [ 37] [ 11] [57900806434] +00:23:19 [ 70] [ 3] [001] +00:23:19 ============================================================================ +00:23:19 + + +waiting on router queue for slot.... +00:23:19 ============================================================================ +00:23:19 Slot Id : <459> +00:23:19 Transaction Type : RESPONSE +00:23:19 Received From : +00:23:19 ============================================================================ +00:23:19 FNo. Len. Field Value +00:23:19 ============================================================================ +00:23:19 [ 1] [ 4] [0810] +00:23:19 [ 7] [ 10] [0319172319] +00:23:19 [ 11] [ 6] [806434] +00:23:19 [ 15] [ 4] [0319] +00:23:19 [ 37] [ 12] [57900806434] +00:23:19 [ 39] [ 2] [00] +00:23:19 [ 70] [ 3] [001] +00:23:19 ============================================================================ +00:23:19 Sending to : +00:23:19 ============================================================================ +00:23:19 + + +waiting on router queue for slot.... +00:23:25 ============================================================================ +00:23:25 Slot Id : <475> +00:23:25 Transaction Type : REQUEST +00:23:25 Received From : +00:23:25 ============================================================================ +00:23:25 FNo. Len. Field Value +00:23:25 ============================================================================ +00:23:25 [ 1] [ 4] [0800] +00:23:25 [ 7] [ 10] [0319052232] +00:23:25 [ 11] [ 6] [153130] +00:23:25 [ 70] [ 3] [301] +00:23:25 ============================================================================ +00:23:25 + + +waiting on router queue for slot.... +00:23:25 Sending to : +00:23:25 ============================================================================ +00:23:25 ============================================================================ +00:23:25 Slot Id : <475> +00:23:25 Transaction Type : RESPONSE +00:23:25 Received From : +00:23:25 ============================================================================ +00:23:25 FNo. Len. Field Value +00:23:25 ============================================================================ +00:23:25 [ 1] [ 4] [0810] +00:23:25 [ 7] [ 10] [0319052232] +00:23:25 [ 11] [ 6] [153130] +00:23:25 [ 39] [ 2] [00] +00:23:25 [ 70] [ 3] [301] +00:23:25 ============================================================================ +00:23:25 Calculate Source COMM Id = 2 +00:23:25 ============================================================================ +00:23:25 + + +waiting on router queue for slot.... +00:23:38 ============================================================================ +00:23:38 Slot Id : <452> +00:23:38 Transaction Type : REQUEST +00:23:38 Received From : +00:23:38 ============================================================================ +00:23:38 FNo. Len. Field Value +00:23:38 ============================================================================ +00:23:38 [ 1] [ 4] [0800] +00:23:38 [ 7] [ 10] [0320073526] +00:23:38 [ 11] [ 6] [003526] +00:23:38 [ 37] [ 12] [57900003526] +00:23:38 [ 70] [ 3] [301] +00:23:38 ============================================================================ +00:23:38 + + +waiting on router queue for slot.... +00:23:38 Sending to : +00:23:38 ============================================================================ +00:23:38 ============================================================================ +00:23:38 Slot Id : <452> +00:23:38 Transaction Type : RESPONSE +00:23:38 Received From : +00:23:38 ============================================================================ +00:23:38 FNo. Len. Field Value +00:23:38 ============================================================================ +00:23:38 [ 1] [ 4] [0810] +00:23:38 [ 7] [ 10] [0320073526] +00:23:38 [ 11] [ 6] [003526] +00:23:38 [ 37] [ 12] [579000035260] +00:23:38 [ 39] [ 2] [00] +00:23:38 [ 70] [ 3] [810] +00:23:38 ============================================================================ +00:23:38 Calculate Source COMM Id = 6 +00:23:38 ============================================================================ +00:23:38 + + +waiting on router queue for slot.... +00:23:41 ============================================================================ +00:23:41 Slot Id : <468> +00:23:41 Transaction Type : REQUEST +00:23:41 Received From : +00:23:41 ============================================================================ +00:23:41 FNo. Len. Field Value +00:23:41 ============================================================================ +00:23:41 [ 1] [ 4] [0800] +00:23:41 [ 7] [ 10] [0319052248] +00:23:41 [ 11] [ 6] [153131] +00:23:41 [ 70] [ 3] [301] +00:23:41 ============================================================================ +00:23:41 + + +waiting on router queue for slot.... +00:23:41 Sending to : +00:23:41 ============================================================================ +00:23:41 ============================================================================ +00:23:41 Slot Id : <468> +00:23:41 Transaction Type : RESPONSE +00:23:41 Received From : +00:23:41 ============================================================================ +00:23:41 FNo. Len. Field Value +00:23:41 ============================================================================ +00:23:41 [ 1] [ 4] [0810] +00:23:41 [ 7] [ 10] [0319052248] +00:23:41 [ 11] [ 6] [153131] +00:23:41 [ 39] [ 2] [00] +00:23:41 [ 70] [ 3] [301] +00:23:41 ============================================================================ +00:23:41 Calculate Source COMM Id = 2 +00:23:41 ============================================================================ +00:23:41 + + +waiting on router queue for slot.... +00:23:52 ============================================================================ +00:23:52 Slot Id : <449> +00:23:52 Transaction Type : REQUEST +00:23:52 Received From : +00:23:52 ============================================================================ +00:23:52 FNo. Len. Field Value +00:23:52 ============================================================================ +00:23:52 [ 1] [ 4] [0800] +00:23:52 [ 7] [ 10] [0319052259] +00:23:52 [ 11] [ 6] [153132] +00:23:52 [ 70] [ 3] [301] +00:23:52 ============================================================================ +00:23:52 + + +waiting on router queue for slot.... +00:23:52 Sending to : +00:23:52 ============================================================================ +00:23:52 ============================================================================ +00:23:52 Slot Id : <449> +00:23:52 Transaction Type : RESPONSE +00:23:52 Received From : +00:23:52 ============================================================================ +00:23:52 FNo. Len. Field Value +00:23:52 ============================================================================ +00:23:52 [ 1] [ 4] [0810] +00:23:52 [ 7] [ 10] [0319052259] +00:23:52 [ 11] [ 6] [153132] +00:23:52 [ 39] [ 2] [00] +00:23:52 [ 70] [ 3] [301] +00:23:52 ============================================================================ +00:23:52 Calculate Source COMM Id = 2 +00:23:52 ============================================================================ +00:23:52 + + +waiting on router queue for slot.... +00:24:09 ============================================================================ +00:24:09 Slot Id : <455> +00:24:09 Transaction Type : REQUEST +00:24:09 Received From : +00:24:09 ============================================================================ +00:24:09 FNo. Len. Field Value +00:24:09 ============================================================================ +00:24:09 [ 1] [ 4] [0800] +00:24:09 [ 7] [ 10] [0319052316] +00:24:09 [ 11] [ 6] [153133] +00:24:09 [ 70] [ 3] [301] +00:24:09 ============================================================================ +00:24:09 + + +waiting on router queue for slot.... +00:24:09 Sending to : +00:24:09 ============================================================================ +00:24:09 ============================================================================ +00:24:09 Slot Id : <455> +00:24:09 Transaction Type : RESPONSE +00:24:09 Received From : +00:24:09 ============================================================================ +00:24:09 FNo. Len. Field Value +00:24:09 ============================================================================ +00:24:09 [ 1] [ 4] [0810] +00:24:09 [ 7] [ 10] [0319052316] +00:24:09 [ 11] [ 6] [153133] +00:24:09 [ 39] [ 2] [00] +00:24:09 [ 70] [ 3] [301] +00:24:09 ============================================================================ +00:24:09 Calculate Source COMM Id = 2 +00:24:09 ============================================================================ +00:24:09 + + +waiting on router queue for slot.... +00:24:20 ============================================================================ +00:24:20 Slot Id : <440> +00:24:20 Transaction Type : REQUEST +00:24:20 Received From : +00:24:20 ============================================================================ +00:24:20 FNo. Len. Field Value +00:24:20 ============================================================================ +00:24:20 [ 1] [ 4] [0800] +00:24:20 [ 7] [ 10] [0319052327] +00:24:20 [ 11] [ 6] [153134] +00:24:20 [ 70] [ 3] [301] +00:24:20 ============================================================================ +00:24:20 + + +waiting on router queue for slot.... +00:24:20 Sending to : +00:24:20 ============================================================================ +00:24:20 ============================================================================ +00:24:20 Slot Id : <440> +00:24:20 Transaction Type : RESPONSE +00:24:20 Received From : +00:24:20 ============================================================================ +00:24:20 FNo. Len. Field Value +00:24:20 ============================================================================ +00:24:20 [ 1] [ 4] [0810] +00:24:20 [ 7] [ 10] [0319052327] +00:24:20 [ 11] [ 6] [153134] +00:24:20 [ 39] [ 2] [00] +00:24:20 [ 70] [ 3] [301] +00:24:20 ============================================================================ +00:24:20 Calculate Source COMM Id = 2 +00:24:20 ============================================================================ +00:24:20 + + +waiting on router queue for slot.... +00:24:21 ============================================================================ +00:24:21 Slot Id : <460> +00:24:21 Transaction Type : REQUEST +00:24:21 Received From : +00:24:21 ============================================================================ +00:24:21 FNo. Len. Field Value +00:24:21 ============================================================================ +00:24:21 [ 1] [ 4] [0800] +00:24:21 [ 2] [ 5] [02531] +00:24:21 [ 3] [ 6] [579008] +00:24:21 [ 7] [ 10] [0319172421] +00:24:21 [ 11] [ 6] [806435] +00:24:21 [ 15] [ 10] [0319172421] +00:24:21 [ 37] [ 11] [57900806435] +00:24:21 [ 70] [ 3] [001] +00:24:21 ============================================================================ +00:24:21 + + +waiting on router queue for slot.... +00:24:21 ============================================================================ +00:24:21 Slot Id : <460> +00:24:21 Transaction Type : RESPONSE +00:24:21 Received From : +00:24:21 ============================================================================ +00:24:21 FNo. Len. Field Value +00:24:21 ============================================================================ +00:24:21 [ 1] [ 4] [0810] +00:24:21 [ 7] [ 10] [0319172421] +00:24:21 [ 11] [ 6] [806435] +00:24:21 [ 15] [ 4] [0319] +00:24:21 [ 37] [ 12] [57900806435] +00:24:21 [ 39] [ 2] [00] +00:24:21 [ 70] [ 3] [001] +00:24:21 ============================================================================ +00:24:21 Sending to : +00:24:21 ============================================================================ +00:24:21 + + +waiting on router queue for slot.... +00:24:34 ============================================================================ +00:24:34 Slot Id : <432> +00:24:34 Transaction Type : REQUEST +00:24:34 Received From : +00:24:34 ============================================================================ +00:24:34 FNo. Len. Field Value +00:24:34 ============================================================================ +00:24:34 [ 1] [ 4] [0800] +00:24:34 [ 7] [ 10] [0319052340] +00:24:34 [ 11] [ 6] [153135] +00:24:34 [ 70] [ 3] [301] +00:24:34 ============================================================================ +00:24:34 + + +waiting on router queue for slot.... +00:24:34 Sending to : +00:24:34 ============================================================================ +00:24:34 ============================================================================ +00:24:34 Slot Id : <432> +00:24:34 Transaction Type : RESPONSE +00:24:34 Received From : +00:24:34 ============================================================================ +00:24:34 FNo. Len. Field Value +00:24:34 ============================================================================ +00:24:34 [ 1] [ 4] [0810] +00:24:34 [ 7] [ 10] [0319052340] +00:24:34 [ 11] [ 6] [153135] +00:24:34 [ 39] [ 2] [00] +00:24:34 [ 70] [ 3] [301] +00:24:34 ============================================================================ +00:24:34 Calculate Source COMM Id = 2 +00:24:34 ============================================================================ +00:24:34 + + +waiting on router queue for slot.... +00:24:43 ============================================================================ +00:24:43 Slot Id : <453> +00:24:43 Transaction Type : REQUEST +00:24:43 Received From : +00:24:43 ============================================================================ +00:24:43 FNo. Len. Field Value +00:24:43 ============================================================================ +00:24:43 [ 1] [ 4] [0800] +00:24:43 [ 7] [ 10] [0320073631] +00:24:43 [ 11] [ 6] [003631] +00:24:43 [ 37] [ 12] [57900003631] +00:24:43 [ 70] [ 3] [301] +00:24:43 ============================================================================ +00:24:43 + + +waiting on router queue for slot.... +00:24:43 Sending to : +00:24:43 ============================================================================ +00:24:43 ============================================================================ +00:24:43 Slot Id : <453> +00:24:43 Transaction Type : RESPONSE +00:24:43 Received From : +00:24:43 ============================================================================ +00:24:43 FNo. Len. Field Value +00:24:43 ============================================================================ +00:24:43 [ 1] [ 4] [0810] +00:24:43 [ 7] [ 10] [0320073631] +00:24:43 [ 11] [ 6] [003631] +00:24:43 [ 37] [ 12] [579000036310] +00:24:43 [ 39] [ 2] [00] +00:24:43 [ 70] [ 3] [810] +00:24:43 ============================================================================ +00:24:43 Calculate Source COMM Id = 6 +00:24:43 ============================================================================ +00:24:43 + + +waiting on router queue for slot.... +00:24:48 ============================================================================ +00:24:48 Slot Id : <482> +00:24:48 Transaction Type : REQUEST +00:24:48 Received From : +00:24:48 ============================================================================ +00:24:48 FNo. Len. Field Value +00:24:48 ============================================================================ +00:24:48 [ 1] [ 4] [0800] +00:24:48 [ 7] [ 10] [0319052355] +00:24:48 [ 11] [ 6] [153136] +00:24:48 [ 70] [ 3] [301] +00:24:48 ============================================================================ +00:24:48 + + +waiting on router queue for slot.... +00:24:48 Sending to : +00:24:48 ============================================================================ +00:24:48 ============================================================================ +00:24:48 Slot Id : <482> +00:24:48 Transaction Type : RESPONSE +00:24:48 Received From : +00:24:48 ============================================================================ +00:24:48 FNo. Len. Field Value +00:24:48 ============================================================================ +00:24:48 [ 1] [ 4] [0810] +00:24:48 [ 7] [ 10] [0319052355] +00:24:48 [ 11] [ 6] [153136] +00:24:48 [ 39] [ 2] [00] +00:24:48 [ 70] [ 3] [301] +00:24:48 ============================================================================ +00:24:48 Calculate Source COMM Id = 2 +00:24:48 ============================================================================ +00:24:48 + + +waiting on router queue for slot.... +00:24:56 ============================================================================ +00:24:56 Slot Id : <488> +00:24:56 Transaction Type : REQUEST +00:24:56 Received From : +00:24:56 ============================================================================ +00:24:56 FNo. Len. Field Value +00:24:56 ============================================================================ +00:24:56 [ 1] [ 4] [0800] +00:24:56 [ 7] [ 10] [0319173242] +00:24:56 [ 11] [ 6] [074999] +00:24:56 [ 37] [ 12] [57900074999] +00:24:56 [ 70] [ 3] [301] +00:24:56 ============================================================================ +00:24:56 + + +waiting on router queue for slot.... +00:24:56 Sending to : +00:24:56 ============================================================================ +00:24:56 ============================================================================ +00:24:56 Slot Id : <488> +00:24:56 Transaction Type : RESPONSE +00:24:56 Received From : +00:24:56 ============================================================================ +00:24:56 FNo. Len. Field Value +00:24:56 ============================================================================ +00:24:56 [ 1] [ 4] [0810] +00:24:56 [ 7] [ 10] [0319173242] +00:24:56 [ 11] [ 6] [074999] +00:24:56 [ 37] [ 12] [579000749990] +00:24:56 [ 39] [ 2] [00] +00:24:56 [ 70] [ 3] [810] +00:24:56 ============================================================================ +00:24:56 Calculate Source COMM Id = 1 +00:24:56 ============================================================================ +00:24:56 + + +waiting on router queue for slot.... +00:24:59 ============================================================================ +00:24:59 Slot Id : <470> +00:24:59 Transaction Type : REQUEST +00:24:59 Received From : +00:24:59 ============================================================================ +00:24:59 FNo. Len. Field Value +00:24:59 ============================================================================ +00:24:59 [ 1] [ 4] [0800] +00:24:59 [ 7] [ 10] [0319052406] +00:24:59 [ 11] [ 6] [153137] +00:24:59 [ 70] [ 3] [301] +00:24:59 ============================================================================ +00:24:59 + + +waiting on router queue for slot.... +00:24:59 Sending to : +00:24:59 ============================================================================ +00:24:59 ============================================================================ +00:24:59 Slot Id : <470> +00:24:59 Transaction Type : RESPONSE +00:24:59 Received From : +00:24:59 ============================================================================ +00:24:59 FNo. Len. Field Value +00:24:59 ============================================================================ +00:24:59 [ 1] [ 4] [0810] +00:24:59 [ 7] [ 10] [0319052406] +00:24:59 [ 11] [ 6] [153137] +00:24:59 [ 39] [ 2] [00] +00:24:59 [ 70] [ 3] [301] +00:24:59 ============================================================================ +00:24:59 Calculate Source COMM Id = 2 +00:24:59 ============================================================================ +00:24:59 + + +waiting on router queue for slot.... +00:25:10 ============================================================================ +00:25:10 Slot Id : <495> +00:25:10 Transaction Type : REQUEST +00:25:10 Received From : +00:25:10 ============================================================================ +00:25:10 FNo. Len. Field Value +00:25:10 ============================================================================ +00:25:10 [ 1] [ 4] [0800] +00:25:10 [ 7] [ 10] [0319052417] +00:25:10 [ 11] [ 6] [153138] +00:25:10 [ 70] [ 3] [301] +00:25:10 ============================================================================ +00:25:10 + + +waiting on router queue for slot.... +00:25:10 Sending to : +00:25:10 ============================================================================ +00:25:10 ============================================================================ +00:25:10 Slot Id : <495> +00:25:10 Transaction Type : RESPONSE +00:25:10 Received From : +00:25:10 ============================================================================ +00:25:10 FNo. Len. Field Value +00:25:10 ============================================================================ +00:25:10 [ 1] [ 4] [0810] +00:25:10 [ 7] [ 10] [0319052417] +00:25:10 [ 11] [ 6] [153138] +00:25:10 [ 39] [ 2] [00] +00:25:10 [ 70] [ 3] [301] +00:25:10 ============================================================================ +00:25:10 Calculate Source COMM Id = 2 +00:25:10 ============================================================================ +00:25:10 + + +waiting on router queue for slot.... +00:25:20 ============================================================================ +00:25:20 Slot Id : <490> +00:25:20 Transaction Type : REQUEST +00:25:20 Received From : +00:25:20 ============================================================================ +00:25:20 FNo. Len. Field Value +00:25:20 ============================================================================ +00:25:20 [ 1] [ 4] [0800] +00:25:20 [ 7] [ 10] [0319052427] +00:25:20 [ 11] [ 6] [153139] +00:25:20 [ 70] [ 3] [301] +00:25:20 ============================================================================ +00:25:20 + + +waiting on router queue for slot.... +00:25:20 Sending to : +00:25:20 ============================================================================ +00:25:20 ============================================================================ +00:25:20 Slot Id : <490> +00:25:20 Transaction Type : RESPONSE +00:25:20 Received From : +00:25:20 ============================================================================ +00:25:20 FNo. Len. Field Value +00:25:20 ============================================================================ +00:25:20 [ 1] [ 4] [0810] +00:25:20 [ 7] [ 10] [0319052427] +00:25:20 [ 11] [ 6] [153139] +00:25:20 [ 39] [ 2] [00] +00:25:20 [ 70] [ 3] [301] +00:25:20 ============================================================================ +00:25:20 Calculate Source COMM Id = 2 +00:25:20 ============================================================================ +00:25:20 + + +waiting on router queue for slot.... +00:25:23 ============================================================================ +00:25:23 Slot Id : <463> +00:25:23 Transaction Type : REQUEST +00:25:23 Received From : +00:25:23 ============================================================================ +00:25:23 FNo. Len. Field Value +00:25:23 ============================================================================ +00:25:23 [ 1] [ 4] [0800] +00:25:23 [ 2] [ 5] [02531] +00:25:23 [ 3] [ 6] [579008] +00:25:23 [ 7] [ 10] [0319172523] +00:25:23 [ 11] [ 6] [806436] +00:25:23 [ 15] [ 10] [0319172523] +00:25:23 [ 37] [ 11] [57900806436] +00:25:23 [ 70] [ 3] [001] +00:25:23 ============================================================================ +00:25:23 + + +waiting on router queue for slot.... +00:25:23 ============================================================================ +00:25:23 Slot Id : <463> +00:25:23 Transaction Type : RESPONSE +00:25:23 Received From : +00:25:23 ============================================================================ +00:25:23 FNo. Len. Field Value +00:25:23 ============================================================================ +00:25:23 [ 1] [ 4] [0810] +00:25:23 [ 7] [ 10] [0319172523] +00:25:23 [ 11] [ 6] [806436] +00:25:23 [ 15] [ 4] [0319] +00:25:23 [ 37] [ 12] [57900806436] +00:25:23 [ 39] [ 2] [00] +00:25:23 [ 70] [ 3] [001] +00:25:23 ============================================================================ +00:25:23 Sending to : +00:25:23 ============================================================================ +00:25:23 + + +waiting on router queue for slot.... +00:25:30 ============================================================================ +00:25:30 Slot Id : <448> +00:25:30 Transaction Type : REQUEST +00:25:30 Received From : +00:25:30 ============================================================================ +00:25:30 FNo. Len. Field Value +00:25:30 ============================================================================ +00:25:30 [ 1] [ 4] [0800] +00:25:30 [ 7] [ 10] [0319052437] +00:25:30 [ 11] [ 6] [153140] +00:25:30 [ 70] [ 3] [301] +00:25:30 ============================================================================ +00:25:30 + + +waiting on router queue for slot.... +00:25:30 Sending to : +00:25:30 ============================================================================ +00:25:30 ============================================================================ +00:25:30 Slot Id : <448> +00:25:30 Transaction Type : RESPONSE +00:25:30 Received From : +00:25:30 ============================================================================ +00:25:30 FNo. Len. Field Value +00:25:30 ============================================================================ +00:25:30 [ 1] [ 4] [0810] +00:25:30 [ 7] [ 10] [0319052437] +00:25:30 [ 11] [ 6] [153140] +00:25:30 [ 39] [ 2] [00] +00:25:30 [ 70] [ 3] [301] +00:25:30 ============================================================================ +00:25:30 Calculate Source COMM Id = 2 +00:25:30 ============================================================================ +00:25:30 + + +waiting on router queue for slot.... +00:25:41 ============================================================================ +00:25:41 Slot Id : <484> +00:25:41 Transaction Type : REQUEST +00:25:41 Received From : +00:25:41 ============================================================================ +00:25:41 FNo. Len. Field Value +00:25:41 ============================================================================ +00:25:41 [ 1] [ 4] [0800] +00:25:41 [ 7] [ 10] [0319052448] +00:25:41 [ 11] [ 6] [153141] +00:25:41 [ 70] [ 3] [301] +00:25:41 ============================================================================ +00:25:41 + + +waiting on router queue for slot.... +00:25:41 Sending to : +00:25:41 ============================================================================ +00:25:41 ============================================================================ +00:25:41 Slot Id : <484> +00:25:41 Transaction Type : RESPONSE +00:25:41 Received From : +00:25:41 ============================================================================ +00:25:41 FNo. Len. Field Value +00:25:41 ============================================================================ +00:25:41 [ 1] [ 4] [0810] +00:25:41 [ 7] [ 10] [0319052448] +00:25:41 [ 11] [ 6] [153141] +00:25:41 [ 39] [ 2] [00] +00:25:41 [ 70] [ 3] [301] +00:25:41 ============================================================================ +00:25:41 Calculate Source COMM Id = 2 +00:25:41 ============================================================================ +00:25:41 + + +waiting on router queue for slot.... +00:25:48 ============================================================================ +00:25:48 Slot Id : <471> +00:25:48 Transaction Type : REQUEST +00:25:48 Received From : +00:25:48 ============================================================================ +00:25:48 FNo. Len. Field Value +00:25:48 ============================================================================ +00:25:48 [ 1] [ 4] [0800] +00:25:48 [ 7] [ 10] [0320073736] +00:25:48 [ 11] [ 6] [003736] +00:25:48 [ 37] [ 12] [57900003736] +00:25:48 [ 70] [ 3] [301] +00:25:48 ============================================================================ +00:25:48 + + +waiting on router queue for slot.... +00:25:48 Sending to : +00:25:48 ============================================================================ +00:25:48 ============================================================================ +00:25:48 Slot Id : <471> +00:25:48 Transaction Type : RESPONSE +00:25:48 Received From : +00:25:48 ============================================================================ +00:25:48 FNo. Len. Field Value +00:25:48 ============================================================================ +00:25:48 [ 1] [ 4] [0810] +00:25:48 [ 7] [ 10] [0320073736] +00:25:48 [ 11] [ 6] [003736] +00:25:48 [ 37] [ 12] [579000037360] +00:25:48 [ 39] [ 2] [00] +00:25:48 [ 70] [ 3] [810] +00:25:48 ============================================================================ +00:25:48 Calculate Source COMM Id = 6 +00:25:48 ============================================================================ +00:25:48 + + +waiting on router queue for slot.... +00:25:51 ============================================================================ +00:25:51 Slot Id : <480> +00:25:51 Transaction Type : REQUEST +00:25:51 Received From : +00:25:51 ============================================================================ +00:25:51 FNo. Len. Field Value +00:25:51 ============================================================================ +00:25:51 [ 1] [ 4] [0800] +00:25:51 [ 7] [ 10] [0319052459] +00:25:51 [ 11] [ 6] [153142] +00:25:51 [ 70] [ 3] [301] +00:25:51 ============================================================================ +00:25:51 + + +waiting on router queue for slot.... +00:25:51 Sending to : +00:25:51 ============================================================================ +00:25:51 ============================================================================ +00:25:51 Slot Id : <480> +00:25:51 Transaction Type : RESPONSE +00:25:51 Received From : +00:25:51 ============================================================================ +00:25:51 FNo. Len. Field Value +00:25:51 ============================================================================ +00:25:51 [ 1] [ 4] [0810] +00:25:51 [ 7] [ 10] [0319052459] +00:25:51 [ 11] [ 6] [153142] +00:25:51 [ 39] [ 2] [00] +00:25:51 [ 70] [ 3] [301] +00:25:51 ============================================================================ +00:25:51 Calculate Source COMM Id = 2 +00:25:51 ============================================================================ +00:25:51 + + +waiting on router queue for slot.... +00:26:02 ============================================================================ +00:26:02 Slot Id : <479> +00:26:02 Transaction Type : REQUEST +00:26:02 Received From : +00:26:02 ============================================================================ +00:26:02 FNo. Len. Field Value +00:26:02 ============================================================================ +00:26:02 [ 1] [ 4] [0800] +00:26:02 [ 7] [ 10] [0319052510] +00:26:02 [ 11] [ 6] [153143] +00:26:02 [ 70] [ 3] [301] +00:26:02 ============================================================================ +00:26:02 + + +waiting on router queue for slot.... +00:26:02 Sending to : +00:26:02 ============================================================================ +00:26:02 ============================================================================ +00:26:02 Slot Id : <479> +00:26:02 Transaction Type : RESPONSE +00:26:02 Received From : +00:26:02 ============================================================================ +00:26:02 FNo. Len. Field Value +00:26:02 ============================================================================ +00:26:02 [ 1] [ 4] [0810] +00:26:02 [ 7] [ 10] [0319052510] +00:26:02 [ 11] [ 6] [153143] +00:26:02 [ 39] [ 2] [00] +00:26:02 [ 70] [ 3] [301] +00:26:02 ============================================================================ +00:26:02 Calculate Source COMM Id = 2 +00:26:02 ============================================================================ +00:26:02 + + +waiting on router queue for slot.... +00:26:17 ============================================================================ +00:26:17 Slot Id : <498> +00:26:17 Transaction Type : REQUEST +00:26:17 Received From : +00:26:17 ============================================================================ +00:26:17 FNo. Len. Field Value +00:26:17 ============================================================================ +00:26:17 [ 1] [ 4] [0800] +00:26:17 [ 7] [ 10] [0319052525] +00:26:17 [ 11] [ 6] [153144] +00:26:17 [ 70] [ 3] [301] +00:26:17 ============================================================================ +00:26:17 + + +waiting on router queue for slot.... +00:26:17 Sending to : +00:26:17 ============================================================================ +00:26:17 ============================================================================ +00:26:17 Slot Id : <498> +00:26:17 Transaction Type : RESPONSE +00:26:17 Received From : +00:26:17 ============================================================================ +00:26:17 FNo. Len. Field Value +00:26:17 ============================================================================ +00:26:17 [ 1] [ 4] [0810] +00:26:17 [ 7] [ 10] [0319052525] +00:26:17 [ 11] [ 6] [153144] +00:26:17 [ 39] [ 2] [00] +00:26:17 [ 70] [ 3] [301] +00:26:17 ============================================================================ +00:26:17 Calculate Source COMM Id = 2 +00:26:17 ============================================================================ +00:26:17 + + +waiting on router queue for slot.... +00:26:21 ============================================================================ +00:26:21 Slot Id : <0> +00:26:21 Transaction Type : REQUEST +00:26:21 Received From : +00:26:21 ============================================================================ +00:26:21 FNo. Len. Field Value +00:26:21 ============================================================================ +00:26:21 [ 1] [ 4] [0800] +00:26:21 [ 7] [ 10] [0319172412] +00:26:21 [ 11] [ 6] [002985] +00:26:21 [ 37] [ 12] [57900002985] +00:26:21 [ 70] [ 3] [301] +00:26:21 ============================================================================ +00:26:21 + + +waiting on router queue for slot.... +00:26:21 Sending to : +00:26:21 ============================================================================ +00:26:21 ============================================================================ +00:26:21 Slot Id : <0> +00:26:21 Transaction Type : RESPONSE +00:26:21 Received From : +00:26:21 ============================================================================ +00:26:21 FNo. Len. Field Value +00:26:21 ============================================================================ +00:26:21 [ 1] [ 4] [0810] +00:26:21 [ 7] [ 10] [0319172412] +00:26:21 [ 11] [ 6] [002985] +00:26:21 [ 37] [ 12] [579000029850] +00:26:21 [ 39] [ 2] [00] +00:26:21 [ 70] [ 3] [810] +00:26:21 ============================================================================ +00:26:21 Calculate Source COMM Id = 4 +00:26:21 ============================================================================ +00:26:21 + + +waiting on router queue for slot.... +00:26:25 ============================================================================ +00:26:25 Slot Id : <2> +00:26:25 Transaction Type : REQUEST +00:26:25 Received From : +00:26:25 ============================================================================ +00:26:25 FNo. Len. Field Value +00:26:25 ============================================================================ +00:26:25 [ 1] [ 4] [0800] +00:26:25 [ 2] [ 5] [02531] +00:26:25 [ 3] [ 6] [579008] +00:26:25 [ 7] [ 10] [0319172625] +00:26:25 [ 11] [ 6] [806437] +00:26:25 [ 15] [ 10] [0319172625] +00:26:25 [ 37] [ 11] [57900806437] +00:26:25 [ 70] [ 3] [001] +00:26:25 ============================================================================ +00:26:25 + + +waiting on router queue for slot.... +00:26:25 ============================================================================ +00:26:25 Slot Id : <2> +00:26:25 Transaction Type : RESPONSE +00:26:25 Received From : +00:26:25 ============================================================================ +00:26:25 FNo. Len. Field Value +00:26:25 ============================================================================ +00:26:25 [ 1] [ 4] [0810] +00:26:25 [ 7] [ 10] [0319172625] +00:26:25 [ 11] [ 6] [806437] +00:26:25 [ 15] [ 4] [0319] +00:26:25 [ 37] [ 12] [57900806437] +00:26:25 [ 39] [ 2] [00] +00:26:25 [ 70] [ 3] [001] +00:26:25 ============================================================================ +00:26:25 Sending to : +00:26:25 ============================================================================ +00:26:25 + + +waiting on router queue for slot.... +00:26:30 ============================================================================ +00:26:30 Slot Id : <493> +00:26:30 Transaction Type : REQUEST +00:26:30 Received From : +00:26:30 ============================================================================ +00:26:30 FNo. Len. Field Value +00:26:30 ============================================================================ +00:26:30 [ 1] [ 4] [0800] +00:26:30 [ 7] [ 10] [0319052535] +00:26:30 [ 11] [ 6] [153145] +00:26:30 [ 70] [ 3] [301] +00:26:30 ============================================================================ +00:26:30 + + +waiting on router queue for slot.... +00:26:30 Sending to : +00:26:30 ============================================================================ +00:26:30 ============================================================================ +00:26:30 Slot Id : <493> +00:26:30 Transaction Type : RESPONSE +00:26:30 Received From : +00:26:30 ============================================================================ +00:26:30 FNo. Len. Field Value +00:26:30 ============================================================================ +00:26:30 [ 1] [ 4] [0810] +00:26:30 [ 7] [ 10] [0319052535] +00:26:30 [ 11] [ 6] [153145] +00:26:30 [ 39] [ 2] [00] +00:26:30 [ 70] [ 3] [301] +00:26:30 ============================================================================ +00:26:30 Calculate Source COMM Id = 2 +00:26:30 ============================================================================ +00:26:30 + + +waiting on router queue for slot.... +00:26:44 ============================================================================ +00:26:44 Slot Id : <473> +00:26:44 Transaction Type : REQUEST +00:26:44 Received From : +00:26:44 ============================================================================ +00:26:44 FNo. Len. Field Value +00:26:44 ============================================================================ +00:26:44 [ 1] [ 4] [0800] +00:26:44 [ 7] [ 10] [0319052552] +00:26:44 [ 11] [ 6] [153146] +00:26:44 [ 70] [ 3] [301] +00:26:44 ============================================================================ +00:26:44 + + +waiting on router queue for slot.... +00:26:44 Sending to : +00:26:44 ============================================================================ +00:26:44 ============================================================================ +00:26:44 Slot Id : <473> +00:26:44 Transaction Type : RESPONSE +00:26:44 Received From : +00:26:44 ============================================================================ +00:26:44 FNo. Len. Field Value +00:26:44 ============================================================================ +00:26:44 [ 1] [ 4] [0810] +00:26:44 [ 7] [ 10] [0319052552] +00:26:44 [ 11] [ 6] [153146] +00:26:44 [ 39] [ 2] [00] +00:26:44 [ 70] [ 3] [301] +00:26:44 ============================================================================ +00:26:44 Calculate Source COMM Id = 2 +00:26:44 ============================================================================ +00:26:44 + + +waiting on router queue for slot.... +00:26:53 ============================================================================ +00:26:53 Slot Id : <1> +00:26:53 Transaction Type : REQUEST +00:26:53 Received From : +00:26:53 ============================================================================ +00:26:53 FNo. Len. Field Value +00:26:53 ============================================================================ +00:26:53 [ 1] [ 4] [0800] +00:26:53 [ 7] [ 10] [0320073841] +00:26:53 [ 11] [ 6] [003841] +00:26:53 [ 37] [ 12] [57900003841] +00:26:53 [ 70] [ 3] [301] +00:26:54 ============================================================================ +00:26:54 + + +waiting on router queue for slot.... +00:26:54 Sending to : +00:26:54 ============================================================================ +00:26:54 ============================================================================ +00:26:54 Slot Id : <1> +00:26:54 Transaction Type : RESPONSE +00:26:54 Received From : +00:26:54 ============================================================================ +00:26:54 FNo. Len. Field Value +00:26:54 ============================================================================ +00:26:54 [ 1] [ 4] [0810] +00:26:54 [ 7] [ 10] [0320073841] +00:26:54 [ 11] [ 6] [003841] +00:26:54 [ 37] [ 12] [579000038410] +00:26:54 [ 39] [ 2] [00] +00:26:54 [ 70] [ 3] [810] +00:26:54 ============================================================================ +00:26:54 Calculate Source COMM Id = 6 +00:26:54 ============================================================================ +00:26:54 + + +waiting on router queue for slot.... +00:26:55 ============================================================================ +00:26:55 Slot Id : <4> +00:26:55 Transaction Type : REQUEST +00:26:55 Received From : +00:26:55 ============================================================================ +00:26:55 FNo. Len. Field Value +00:26:55 ============================================================================ +00:26:55 [ 1] [ 4] [0800] +00:26:55 [ 7] [ 10] [0319052602] +00:26:55 [ 11] [ 6] [153147] +00:26:55 [ 70] [ 3] [301] +00:26:55 ============================================================================ +00:26:55 + + +waiting on router queue for slot.... +00:26:55 Sending to : +00:26:55 ============================================================================ +00:26:55 ============================================================================ +00:26:55 Slot Id : <4> +00:26:55 Transaction Type : RESPONSE +00:26:55 Received From : +00:26:55 ============================================================================ +00:26:55 FNo. Len. Field Value +00:26:55 ============================================================================ +00:26:55 [ 1] [ 4] [0810] +00:26:55 [ 7] [ 10] [0319052602] +00:26:55 [ 11] [ 6] [153147] +00:26:55 [ 39] [ 2] [00] +00:26:55 [ 70] [ 3] [301] +00:26:55 ============================================================================ +00:26:55 Calculate Source COMM Id = 2 +00:26:55 ============================================================================ +00:26:55 + + +waiting on router queue for slot.... +00:27:06 ============================================================================ +00:27:06 Slot Id : <474> +00:27:06 Transaction Type : REQUEST +00:27:06 Received From : +00:27:06 ============================================================================ +00:27:06 FNo. Len. Field Value +00:27:06 ============================================================================ +00:27:06 [ 1] [ 4] [0800] +00:27:06 [ 7] [ 10] [0319052613] +00:27:06 [ 11] [ 6] [153148] +00:27:06 [ 70] [ 3] [301] +00:27:06 ============================================================================ +00:27:06 + + +waiting on router queue for slot.... +00:27:06 Sending to : +00:27:06 ============================================================================ +00:27:06 ============================================================================ +00:27:06 Slot Id : <474> +00:27:06 Transaction Type : RESPONSE +00:27:06 Received From : +00:27:06 ============================================================================ +00:27:06 FNo. Len. Field Value +00:27:06 ============================================================================ +00:27:06 [ 1] [ 4] [0810] +00:27:06 [ 7] [ 10] [0319052613] +00:27:06 [ 11] [ 6] [153148] +00:27:06 [ 39] [ 2] [00] +00:27:06 [ 70] [ 3] [301] +00:27:06 ============================================================================ +00:27:06 Calculate Source COMM Id = 2 +00:27:06 ============================================================================ +00:27:06 + + +waiting on router queue for slot.... +00:27:21 ============================================================================ +00:27:21 Slot Id : <483> +00:27:21 Transaction Type : REQUEST +00:27:21 Received From : +00:27:21 ============================================================================ +00:27:21 FNo. Len. Field Value +00:27:21 ============================================================================ +00:27:21 [ 1] [ 4] [0800] +00:27:21 [ 7] [ 10] [0319052628] +00:27:21 [ 11] [ 6] [153149] +00:27:21 [ 70] [ 3] [301] +00:27:21 ============================================================================ +00:27:21 + + +waiting on router queue for slot.... +00:27:21 Sending to : +00:27:21 ============================================================================ +00:27:21 ============================================================================ +00:27:21 Slot Id : <483> +00:27:21 Transaction Type : RESPONSE +00:27:21 Received From : +00:27:21 ============================================================================ +00:27:21 FNo. Len. Field Value +00:27:21 ============================================================================ +00:27:21 [ 1] [ 4] [0810] +00:27:21 [ 7] [ 10] [0319052628] +00:27:21 [ 11] [ 6] [153149] +00:27:21 [ 39] [ 2] [00] +00:27:21 [ 70] [ 3] [301] +00:27:21 ============================================================================ +00:27:21 Calculate Source COMM Id = 2 +00:27:21 ============================================================================ +00:27:21 + + +waiting on router queue for slot.... +00:27:27 ============================================================================ +00:27:27 Slot Id : <476> +00:27:27 Transaction Type : REQUEST +00:27:27 Received From : +00:27:27 ============================================================================ +00:27:27 FNo. Len. Field Value +00:27:27 ============================================================================ +00:27:27 [ 1] [ 4] [0800] +00:27:27 [ 2] [ 5] [02531] +00:27:27 [ 3] [ 6] [579008] +00:27:27 [ 7] [ 10] [0319172727] +00:27:27 [ 11] [ 6] [806438] +00:27:27 [ 15] [ 10] [0319172727] +00:27:27 [ 37] [ 11] [57900806438] +00:27:27 [ 70] [ 3] [001] +00:27:27 ============================================================================ +00:27:27 + + +waiting on router queue for slot.... +00:27:27 ============================================================================ +00:27:27 Slot Id : <476> +00:27:27 Transaction Type : RESPONSE +00:27:27 Received From : +00:27:27 ============================================================================ +00:27:27 FNo. Len. Field Value +00:27:27 ============================================================================ +00:27:27 [ 1] [ 4] [0810] +00:27:27 [ 7] [ 10] [0319172727] +00:27:27 [ 11] [ 6] [806438] +00:27:27 [ 15] [ 4] [0319] +00:27:27 [ 37] [ 12] [57900806438] +00:27:27 [ 39] [ 2] [00] +00:27:27 [ 70] [ 3] [001] +00:27:27 ============================================================================ +00:27:27 Sending to : +00:27:27 ============================================================================ +00:27:27 + + +waiting on router queue for slot.... +00:27:32 ============================================================================ +00:27:32 Slot Id : <489> +00:27:32 Transaction Type : REQUEST +00:27:32 Received From : +00:27:32 ============================================================================ +00:27:32 FNo. Len. Field Value +00:27:32 ============================================================================ +00:27:32 [ 1] [ 4] [0800] +00:27:32 [ 7] [ 10] [0319052639] +00:27:32 [ 11] [ 6] [153150] +00:27:32 [ 70] [ 3] [301] +00:27:32 ============================================================================ +00:27:32 + + +waiting on router queue for slot.... +00:27:32 Sending to : +00:27:32 ============================================================================ +00:27:32 ============================================================================ +00:27:32 Slot Id : <489> +00:27:32 Transaction Type : RESPONSE +00:27:32 Received From : +00:27:32 ============================================================================ +00:27:32 FNo. Len. Field Value +00:27:32 ============================================================================ +00:27:32 [ 1] [ 4] [0810] +00:27:32 [ 7] [ 10] [0319052639] +00:27:32 [ 11] [ 6] [153150] +00:27:32 [ 39] [ 2] [00] +00:27:32 [ 70] [ 3] [301] +00:27:32 ============================================================================ +00:27:32 Calculate Source COMM Id = 2 +00:27:32 ============================================================================ +00:27:32 + + +waiting on router queue for slot.... +00:27:43 ============================================================================ +00:27:43 Slot Id : <477> +00:27:43 Transaction Type : REQUEST +00:27:43 Received From : +00:27:43 ============================================================================ +00:27:43 FNo. Len. Field Value +00:27:43 ============================================================================ +00:27:43 [ 1] [ 4] [0800] +00:27:43 [ 7] [ 10] [0319052650] +00:27:43 [ 11] [ 6] [153151] +00:27:43 [ 70] [ 3] [301] +00:27:43 ============================================================================ +00:27:43 + + +waiting on router queue for slot.... +00:27:43 Sending to : +00:27:43 ============================================================================ +00:27:43 ============================================================================ +00:27:43 Slot Id : <477> +00:27:43 Transaction Type : RESPONSE +00:27:43 Received From : +00:27:43 ============================================================================ +00:27:43 FNo. Len. Field Value +00:27:43 ============================================================================ +00:27:43 [ 1] [ 4] [0810] +00:27:43 [ 7] [ 10] [0319052650] +00:27:43 [ 11] [ 6] [153151] +00:27:43 [ 39] [ 2] [00] +00:27:43 [ 70] [ 3] [301] +00:27:43 ============================================================================ +00:27:43 Calculate Source COMM Id = 2 +00:27:43 ============================================================================ +00:27:43 + + +waiting on router queue for slot.... +00:27:54 ============================================================================ +00:27:54 Slot Id : <472> +00:27:54 Transaction Type : REQUEST +00:27:54 Received From : +00:27:54 ============================================================================ +00:27:54 FNo. Len. Field Value +00:27:54 ============================================================================ +00:27:54 [ 1] [ 4] [0800] +00:27:54 [ 7] [ 10] [0319052701] +00:27:54 [ 11] [ 6] [153152] +00:27:54 [ 70] [ 3] [301] +00:27:54 ============================================================================ +00:27:54 + + +waiting on router queue for slot.... +00:27:54 Sending to : +00:27:54 ============================================================================ +00:27:54 ============================================================================ +00:27:54 Slot Id : <472> +00:27:54 Transaction Type : RESPONSE +00:27:54 Received From : +00:27:54 ============================================================================ +00:27:54 FNo. Len. Field Value +00:27:54 ============================================================================ +00:27:54 [ 1] [ 4] [0810] +00:27:54 [ 7] [ 10] [0319052701] +00:27:54 [ 11] [ 6] [153152] +00:27:54 [ 39] [ 2] [00] +00:27:54 [ 70] [ 3] [301] +00:27:54 ============================================================================ +00:27:54 Calculate Source COMM Id = 2 +00:27:54 ============================================================================ +00:27:54 + + +waiting on router queue for slot.... +00:27:59 ============================================================================ +00:27:59 Slot Id : <486> +00:27:59 Transaction Type : REQUEST +00:27:59 Received From : +00:27:59 ============================================================================ +00:27:59 FNo. Len. Field Value +00:27:59 ============================================================================ +00:27:59 [ 1] [ 4] [0800] +00:27:59 [ 7] [ 10] [0320073946] +00:27:59 [ 11] [ 6] [003946] +00:27:59 [ 37] [ 12] [57900003946] +00:27:59 [ 70] [ 3] [301] +00:27:59 ============================================================================ +00:27:59 + + +waiting on router queue for slot.... +00:27:59 Sending to : +00:27:59 ============================================================================ +00:27:59 ============================================================================ +00:27:59 Slot Id : <486> +00:27:59 Transaction Type : RESPONSE +00:27:59 Received From : +00:27:59 ============================================================================ +00:27:59 FNo. Len. Field Value +00:27:59 ============================================================================ +00:27:59 [ 1] [ 4] [0810] +00:27:59 [ 7] [ 10] [0320073946] +00:27:59 [ 11] [ 6] [003946] +00:27:59 [ 37] [ 12] [579000039460] +00:27:59 [ 39] [ 2] [00] +00:27:59 [ 70] [ 3] [810] +00:27:59 ============================================================================ +00:27:59 Calculate Source COMM Id = 6 +00:27:59 ============================================================================ +00:27:59 + + +waiting on router queue for slot.... +00:28:06 ============================================================================ +00:28:06 Slot Id : <492> +00:28:06 Transaction Type : REQUEST +00:28:06 Received From : +00:28:06 ============================================================================ +00:28:06 FNo. Len. Field Value +00:28:06 ============================================================================ +00:28:06 [ 1] [ 4] [0800] +00:28:06 [ 7] [ 10] [0319052712] +00:28:06 [ 11] [ 6] [153153] +00:28:06 [ 70] [ 3] [301] +00:28:06 ============================================================================ +00:28:06 + + +waiting on router queue for slot.... +00:28:06 Sending to : +00:28:06 ============================================================================ +00:28:06 ============================================================================ +00:28:06 Slot Id : <492> +00:28:06 Transaction Type : RESPONSE +00:28:06 Received From : +00:28:06 ============================================================================ +00:28:06 FNo. Len. Field Value +00:28:06 ============================================================================ +00:28:06 [ 1] [ 4] [0810] +00:28:06 [ 7] [ 10] [0319052712] +00:28:06 [ 11] [ 6] [153153] +00:28:06 [ 39] [ 2] [00] +00:28:06 [ 70] [ 3] [301] +00:28:06 ============================================================================ +00:28:06 Calculate Source COMM Id = 2 +00:28:06 ============================================================================ +00:28:06 + + +waiting on router queue for slot.... +00:28:21 ============================================================================ +00:28:21 Slot Id : <6> +00:28:21 Transaction Type : REQUEST +00:28:21 Received From : +00:28:21 ============================================================================ +00:28:21 FNo. Len. Field Value +00:28:21 ============================================================================ +00:28:21 [ 1] [ 4] [0800] +00:28:21 [ 7] [ 10] [0319052728] +00:28:21 [ 11] [ 6] [153154] +00:28:21 [ 70] [ 3] [301] +00:28:21 ============================================================================ +00:28:21 + + +waiting on router queue for slot.... +00:28:21 Sending to : +00:28:21 ============================================================================ +00:28:21 ============================================================================ +00:28:21 Slot Id : <6> +00:28:21 Transaction Type : RESPONSE +00:28:21 Received From : +00:28:21 ============================================================================ +00:28:21 FNo. Len. Field Value +00:28:21 ============================================================================ +00:28:21 [ 1] [ 4] [0810] +00:28:21 [ 7] [ 10] [0319052728] +00:28:21 [ 11] [ 6] [153154] +00:28:21 [ 39] [ 2] [00] +00:28:21 [ 70] [ 3] [301] +00:28:21 ============================================================================ +00:28:21 Calculate Source COMM Id = 2 +00:28:21 ============================================================================ +00:28:21 + + +waiting on router queue for slot.... +00:28:29 ============================================================================ +00:28:29 Slot Id : <485> +00:28:29 Transaction Type : REQUEST +00:28:29 Received From : +00:28:29 ============================================================================ +00:28:29 FNo. Len. Field Value +00:28:29 ============================================================================ +00:28:29 [ 1] [ 4] [0800] +00:28:29 [ 2] [ 5] [02531] +00:28:29 [ 3] [ 6] [579008] +00:28:29 [ 7] [ 10] [0319172829] +00:28:29 [ 11] [ 6] [806439] +00:28:29 [ 15] [ 10] [0319172829] +00:28:29 [ 37] [ 11] [57900806439] +00:28:29 [ 70] [ 3] [001] +00:28:29 ============================================================================ +00:28:29 + + +waiting on router queue for slot.... +00:28:29 ============================================================================ +00:28:29 Slot Id : <485> +00:28:29 Transaction Type : RESPONSE +00:28:29 Received From : +00:28:29 ============================================================================ +00:28:29 FNo. Len. Field Value +00:28:29 ============================================================================ +00:28:29 [ 1] [ 4] [0810] +00:28:29 [ 7] [ 10] [0319172829] +00:28:29 [ 11] [ 6] [806439] +00:28:29 [ 15] [ 4] [0319] +00:28:29 [ 37] [ 12] [57900806439] +00:28:29 [ 39] [ 2] [00] +00:28:29 [ 70] [ 3] [001] +00:28:29 ============================================================================ +00:28:29 Sending to : +00:28:29 ============================================================================ +00:28:29 + + +waiting on router queue for slot.... +00:28:35 ============================================================================ +00:28:35 Slot Id : <454> +00:28:35 Transaction Type : REQUEST +00:28:35 Received From : +00:28:35 ============================================================================ +00:28:35 FNo. Len. Field Value +00:28:35 ============================================================================ +00:28:35 [ 1] [ 4] [0800] +00:28:35 [ 7] [ 10] [0319052740] +00:28:35 [ 11] [ 6] [153155] +00:28:35 [ 70] [ 3] [301] +00:28:35 ============================================================================ +00:28:35 + + +waiting on router queue for slot.... +00:28:35 Sending to : +00:28:35 ============================================================================ +00:28:35 ============================================================================ +00:28:35 Slot Id : <454> +00:28:35 Transaction Type : RESPONSE +00:28:35 Received From : +00:28:35 ============================================================================ +00:28:35 FNo. Len. Field Value +00:28:35 ============================================================================ +00:28:35 [ 1] [ 4] [0810] +00:28:35 [ 7] [ 10] [0319052740] +00:28:35 [ 11] [ 6] [153155] +00:28:35 [ 39] [ 2] [00] +00:28:35 [ 70] [ 3] [301] +00:28:35 ============================================================================ +00:28:35 Calculate Source COMM Id = 2 +00:28:35 ============================================================================ +00:28:35 + + +waiting on router queue for slot.... +00:28:45 ============================================================================ +00:28:45 Slot Id : <13> +00:28:45 Transaction Type : REQUEST +00:28:45 Received From : +00:28:45 ============================================================================ +00:28:45 FNo. Len. Field Value +00:28:45 ============================================================================ +00:28:45 [ 1] [ 4] [0800] +00:28:45 [ 7] [ 10] [0319052752] +00:28:45 [ 11] [ 6] [153156] +00:28:45 [ 70] [ 3] [301] +00:28:45 ============================================================================ +00:28:45 + + +waiting on router queue for slot.... +00:28:45 Sending to : +00:28:45 ============================================================================ +00:28:45 ============================================================================ +00:28:45 Slot Id : <13> +00:28:45 Transaction Type : RESPONSE +00:28:45 Received From : +00:28:45 ============================================================================ +00:28:45 FNo. Len. Field Value +00:28:45 ============================================================================ +00:28:45 [ 1] [ 4] [0810] +00:28:45 [ 7] [ 10] [0319052752] +00:28:45 [ 11] [ 6] [153156] +00:28:45 [ 39] [ 2] [00] +00:28:45 [ 70] [ 3] [301] +00:28:45 ============================================================================ +00:28:45 Calculate Source COMM Id = 2 +00:28:45 ============================================================================ +00:28:45 + + +waiting on router queue for slot.... +00:28:47 ============================================================================ +00:28:47 Slot Id : <14> +00:28:47 Transaction Type : REQUEST +00:28:47 Received From : +00:28:47 ============================================================================ +00:28:47 FNo. Len. Field Value +00:28:47 ============================================================================ +00:28:47 [ 1] [ 4] [0800] +00:28:47 [ 7] [ 10] [0320002833] +00:28:47 [ 11] [ 6] [004548] +00:28:47 [ 37] [ 12] [507900004548] +00:28:47 [ 70] [ 3] [ ] +00:28:47 ============================================================================ +00:28:47 + + +waiting on router queue for slot.... +00:28:47 Sending to : +00:28:47 ============================================================================ +00:28:47 ============================================================================ +00:28:47 Slot Id : <14> +00:28:47 Transaction Type : RESPONSE +00:28:47 Received From : +00:28:47 ============================================================================ +00:28:47 FNo. Len. Field Value +00:28:47 ============================================================================ +00:28:47 [ 1] [ 4] [0810] +00:28:47 [ 7] [ 10] [0320002833] +00:28:47 [ 11] [ 6] [004548] +00:28:47 [ 37] [ 12] [507900004548] +00:28:47 [ 39] [ 2] [91] +00:28:47 [ 70] [ 3] [ ] +00:28:47 ============================================================================ +00:28:47 Calculate Source COMM Id = 3 +00:28:47 ============================================================================ +00:28:47 + + +waiting on router queue for slot.... +00:28:57 ============================================================================ +00:28:57 Slot Id : <12> +00:28:57 Transaction Type : REQUEST +00:28:57 Received From : +00:28:57 ============================================================================ +00:28:57 FNo. Len. Field Value +00:28:57 ============================================================================ +00:28:57 [ 1] [ 4] [0800] +00:28:57 [ 7] [ 10] [0319052804] +00:28:57 [ 11] [ 6] [153157] +00:28:57 [ 70] [ 3] [301] +00:28:57 ============================================================================ +00:28:57 + + +waiting on router queue for slot.... +00:28:57 Sending to : +00:28:57 ============================================================================ +00:28:57 ============================================================================ +00:28:57 Slot Id : <12> +00:28:57 Transaction Type : RESPONSE +00:28:57 Received From : +00:28:57 ============================================================================ +00:28:57 FNo. Len. Field Value +00:28:57 ============================================================================ +00:28:57 [ 1] [ 4] [0810] +00:28:57 [ 7] [ 10] [0319052804] +00:28:57 [ 11] [ 6] [153157] +00:28:57 [ 39] [ 2] [00] +00:28:57 [ 70] [ 3] [301] +00:28:57 ============================================================================ +00:28:57 Calculate Source COMM Id = 2 +00:28:57 ============================================================================ +00:28:57 + + +waiting on router queue for slot.... +00:29:04 ============================================================================ +00:29:04 Slot Id : <16> +00:29:04 Transaction Type : REQUEST +00:29:04 Received From : +00:29:04 ============================================================================ +00:29:04 FNo. Len. Field Value +00:29:04 ============================================================================ +00:29:04 [ 1] [ 4] [0800] +00:29:04 [ 7] [ 10] [0320074051] +00:29:04 [ 11] [ 6] [004051] +00:29:04 [ 37] [ 12] [57900004051] +00:29:04 [ 70] [ 3] [301] +00:29:04 ============================================================================ +00:29:04 + + +waiting on router queue for slot.... +00:29:04 Sending to : +00:29:04 ============================================================================ +00:29:04 ============================================================================ +00:29:04 Slot Id : <16> +00:29:04 Transaction Type : RESPONSE +00:29:04 Received From : +00:29:04 ============================================================================ +00:29:04 FNo. Len. Field Value +00:29:04 ============================================================================ +00:29:04 [ 1] [ 4] [0810] +00:29:04 [ 7] [ 10] [0320074051] +00:29:04 [ 11] [ 6] [004051] +00:29:04 [ 37] [ 12] [579000040510] +00:29:04 [ 39] [ 2] [00] +00:29:04 [ 70] [ 3] [810] +00:29:04 ============================================================================ +00:29:04 Calculate Source COMM Id = 6 +00:29:04 ============================================================================ +00:29:04 + + +waiting on router queue for slot.... +00:29:07 ============================================================================ +00:29:07 Slot Id : <469> +00:29:07 Transaction Type : REQUEST +00:29:07 Received From : +00:29:07 ============================================================================ +00:29:07 FNo. Len. Field Value +00:29:07 ============================================================================ +00:29:07 [ 1] [ 4] [0800] +00:29:07 [ 7] [ 10] [0319052815] +00:29:07 [ 11] [ 6] [153158] +00:29:07 [ 70] [ 3] [301] +00:29:07 ============================================================================ +00:29:07 + + +waiting on router queue for slot.... +00:29:07 Sending to : +00:29:07 ============================================================================ +00:29:07 ============================================================================ +00:29:07 Slot Id : <469> +00:29:07 Transaction Type : RESPONSE +00:29:07 Received From : +00:29:07 ============================================================================ +00:29:07 FNo. Len. Field Value +00:29:07 ============================================================================ +00:29:07 [ 1] [ 4] [0810] +00:29:07 [ 7] [ 10] [0319052815] +00:29:07 [ 11] [ 6] [153158] +00:29:07 [ 39] [ 2] [00] +00:29:07 [ 70] [ 3] [301] +00:29:07 ============================================================================ +00:29:07 Calculate Source COMM Id = 2 +00:29:07 ============================================================================ +00:29:07 + + +waiting on router queue for slot.... +00:29:18 ============================================================================ +00:29:18 Slot Id : <494> +00:29:18 Transaction Type : REQUEST +00:29:18 Received From : +00:29:18 ============================================================================ +00:29:18 FNo. Len. Field Value +00:29:18 ============================================================================ +00:29:18 [ 1] [ 4] [0800] +00:29:18 [ 7] [ 10] [0319052826] +00:29:18 [ 11] [ 6] [153159] +00:29:18 [ 70] [ 3] [301] +00:29:18 ============================================================================ +00:29:18 + + +waiting on router queue for slot.... +00:29:18 Sending to : +00:29:18 ============================================================================ +00:29:18 ============================================================================ +00:29:18 Slot Id : <494> +00:29:18 Transaction Type : RESPONSE +00:29:18 Received From : +00:29:18 ============================================================================ +00:29:18 FNo. Len. Field Value +00:29:18 ============================================================================ +00:29:18 [ 1] [ 4] [0810] +00:29:18 [ 7] [ 10] [0319052826] +00:29:18 [ 11] [ 6] [153159] +00:29:18 [ 39] [ 2] [00] +00:29:18 [ 70] [ 3] [301] +00:29:18 ============================================================================ +00:29:18 Calculate Source COMM Id = 2 +00:29:18 ============================================================================ +00:29:18 + + +waiting on router queue for slot.... +00:29:30 ============================================================================ +00:29:30 Slot Id : <22> +00:29:30 Transaction Type : REQUEST +00:29:30 Received From : +00:29:30 ============================================================================ +00:29:30 FNo. Len. Field Value +00:29:30 ============================================================================ +00:29:30 [ 1] [ 4] [0800] +00:29:30 [ 7] [ 10] [0319052837] +00:29:30 [ 11] [ 6] [153160] +00:29:30 [ 70] [ 3] [301] +00:29:30 ============================================================================ +00:29:30 + + +waiting on router queue for slot.... +00:29:30 Sending to : +00:29:30 ============================================================================ +00:29:30 ============================================================================ +00:29:30 Slot Id : <22> +00:29:30 Transaction Type : RESPONSE +00:29:30 Received From : +00:29:30 ============================================================================ +00:29:30 FNo. Len. Field Value +00:29:30 ============================================================================ +00:29:30 [ 1] [ 4] [0810] +00:29:30 [ 7] [ 10] [0319052837] +00:29:30 [ 11] [ 6] [153160] +00:29:30 [ 39] [ 2] [00] +00:29:30 [ 70] [ 3] [301] +00:29:30 ============================================================================ +00:29:30 Calculate Source COMM Id = 2 +00:29:30 ============================================================================ +00:29:30 + + +waiting on router queue for slot.... +00:29:31 ============================================================================ +00:29:31 Slot Id : <491> +00:29:31 Transaction Type : REQUEST +00:29:31 Received From : +00:29:31 ============================================================================ +00:29:31 FNo. Len. Field Value +00:29:31 ============================================================================ +00:29:31 [ 1] [ 4] [0800] +00:29:31 [ 2] [ 5] [02531] +00:29:31 [ 3] [ 6] [579008] +00:29:31 [ 7] [ 10] [0319172931] +00:29:31 [ 11] [ 6] [806440] +00:29:31 [ 15] [ 10] [0319172931] +00:29:31 [ 37] [ 11] [57900806440] +00:29:31 [ 70] [ 3] [001] +00:29:31 ============================================================================ +00:29:31 + + +waiting on router queue for slot.... +00:29:31 ============================================================================ +00:29:31 Slot Id : <491> +00:29:31 Transaction Type : RESPONSE +00:29:31 Received From : +00:29:31 ============================================================================ +00:29:31 FNo. Len. Field Value +00:29:31 ============================================================================ +00:29:31 [ 1] [ 4] [0810] +00:29:31 [ 7] [ 10] [0319172931] +00:29:31 [ 11] [ 6] [806440] +00:29:31 [ 15] [ 4] [0319] +00:29:31 [ 37] [ 12] [57900806440] +00:29:31 [ 39] [ 2] [00] +00:29:31 [ 70] [ 3] [001] +00:29:31 ============================================================================ +00:29:31 Sending to : +00:29:31 ============================================================================ +00:29:31 + + +waiting on router queue for slot.... +00:29:40 ============================================================================ +00:29:40 Slot Id : <17> +00:29:40 Transaction Type : REQUEST +00:29:40 Received From : +00:29:40 ============================================================================ +00:29:40 FNo. Len. Field Value +00:29:40 ============================================================================ +00:29:40 [ 1] [ 4] [0800] +00:29:40 [ 7] [ 10] [0319052848] +00:29:40 [ 11] [ 6] [153161] +00:29:40 [ 70] [ 3] [301] +00:29:40 ============================================================================ +00:29:40 + + +waiting on router queue for slot.... +00:29:40 Sending to : +00:29:40 ============================================================================ +00:29:40 ============================================================================ +00:29:40 Slot Id : <17> +00:29:40 Transaction Type : RESPONSE +00:29:40 Received From : +00:29:40 ============================================================================ +00:29:40 FNo. Len. Field Value +00:29:40 ============================================================================ +00:29:40 [ 1] [ 4] [0810] +00:29:40 [ 7] [ 10] [0319052848] +00:29:40 [ 11] [ 6] [153161] +00:29:40 [ 39] [ 2] [00] +00:29:40 [ 70] [ 3] [301] +00:29:40 ============================================================================ +00:29:40 Calculate Source COMM Id = 2 +00:29:40 ============================================================================ +00:29:40 + + +waiting on router queue for slot.... +00:29:51 ============================================================================ +00:29:51 Slot Id : <499> +00:29:51 Transaction Type : REQUEST +00:29:51 Received From : +00:29:51 ============================================================================ +00:29:51 FNo. Len. Field Value +00:29:51 ============================================================================ +00:29:51 [ 1] [ 4] [0800] +00:29:51 [ 7] [ 10] [0319052859] +00:29:51 [ 11] [ 6] [153162] +00:29:51 [ 70] [ 3] [301] +00:29:51 ============================================================================ +00:29:51 + + +waiting on router queue for slot.... +00:29:51 Sending to : +00:29:51 ============================================================================ +00:29:51 ============================================================================ +00:29:51 Slot Id : <499> +00:29:51 Transaction Type : RESPONSE +00:29:51 Received From : +00:29:51 ============================================================================ +00:29:51 FNo. Len. Field Value +00:29:51 ============================================================================ +00:29:51 [ 1] [ 4] [0810] +00:29:51 [ 7] [ 10] [0319052859] +00:29:51 [ 11] [ 6] [153162] +00:29:51 [ 39] [ 2] [00] +00:29:51 [ 70] [ 3] [301] +00:29:51 ============================================================================ +00:29:51 Calculate Source COMM Id = 2 +00:29:51 ============================================================================ +00:29:51 + + +waiting on router queue for slot.... +00:29:56 ============================================================================ +00:29:56 Slot Id : <10> +00:29:56 Transaction Type : REQUEST +00:29:56 Received From : +00:29:56 ============================================================================ +00:29:56 FNo. Len. Field Value +00:29:56 ============================================================================ +00:29:56 [ 1] [ 4] [0800] +00:29:56 [ 7] [ 10] [0319173742] +00:29:56 [ 11] [ 6] [069995] +00:29:56 [ 37] [ 12] [57900069995] +00:29:56 [ 70] [ 3] [301] +00:29:56 ============================================================================ +00:29:56 + + +waiting on router queue for slot.... +00:29:56 Sending to : +00:29:56 ============================================================================ +00:29:56 ============================================================================ +00:29:56 Slot Id : <10> +00:29:56 Transaction Type : RESPONSE +00:29:56 Received From : +00:29:56 ============================================================================ +00:29:56 FNo. Len. Field Value +00:29:56 ============================================================================ +00:29:56 [ 1] [ 4] [0810] +00:29:56 [ 7] [ 10] [0319173742] +00:29:56 [ 11] [ 6] [069995] +00:29:56 [ 37] [ 12] [579000699950] +00:29:56 [ 39] [ 2] [00] +00:29:56 [ 70] [ 3] [810] +00:29:56 ============================================================================ +00:29:56 Calculate Source COMM Id = 1 +00:29:56 ============================================================================ +00:29:56 + + +waiting on router queue for slot.... +00:30:02 ============================================================================ +00:30:02 Slot Id : <23> +00:30:02 Transaction Type : REQUEST +00:30:02 Received From : +00:30:02 ============================================================================ +00:30:02 FNo. Len. Field Value +00:30:02 ============================================================================ +00:30:02 [ 1] [ 4] [0800] +00:30:02 [ 7] [ 10] [0319052909] +00:30:02 [ 11] [ 6] [153163] +00:30:02 [ 70] [ 3] [301] +00:30:02 ============================================================================ +00:30:02 + + +waiting on router queue for slot.... +00:30:02 Sending to : +00:30:02 ============================================================================ +00:30:02 ============================================================================ +00:30:02 Slot Id : <23> +00:30:02 Transaction Type : RESPONSE +00:30:02 Received From : +00:30:02 ============================================================================ +00:30:02 FNo. Len. Field Value +00:30:02 ============================================================================ +00:30:02 [ 1] [ 4] [0810] +00:30:02 [ 7] [ 10] [0319052909] +00:30:02 [ 11] [ 6] [153163] +00:30:02 [ 39] [ 2] [00] +00:30:02 [ 70] [ 3] [301] +00:30:02 ============================================================================ +00:30:02 Calculate Source COMM Id = 2 +00:30:02 ============================================================================ +00:30:02 + + +waiting on router queue for slot.... +00:30:09 ============================================================================ +00:30:09 Slot Id : <31> +00:30:09 Transaction Type : REQUEST +00:30:09 Received From : +00:30:09 ============================================================================ +00:30:09 FNo. Len. Field Value +00:30:09 ============================================================================ +00:30:09 [ 1] [ 4] [0800] +00:30:09 [ 7] [ 10] [0320074156] +00:30:09 [ 11] [ 6] [004156] +00:30:09 [ 37] [ 12] [57900004156] +00:30:09 [ 70] [ 3] [301] +00:30:09 ============================================================================ +00:30:09 + + +waiting on router queue for slot.... +00:30:09 Sending to : +00:30:09 ============================================================================ +00:30:09 ============================================================================ +00:30:09 Slot Id : <31> +00:30:09 Transaction Type : RESPONSE +00:30:09 Received From : +00:30:09 ============================================================================ +00:30:09 FNo. Len. Field Value +00:30:09 ============================================================================ +00:30:09 [ 1] [ 4] [0810] +00:30:09 [ 7] [ 10] [0320074156] +00:30:09 [ 11] [ 6] [004156] +00:30:09 [ 37] [ 12] [579000041560] +00:30:09 [ 39] [ 2] [00] +00:30:09 [ 70] [ 3] [810] +00:30:09 ============================================================================ +00:30:09 Calculate Source COMM Id = 6 +00:30:09 ============================================================================ +00:30:09 + + +waiting on router queue for slot.... +00:30:13 ============================================================================ +00:30:13 Slot Id : <3> +00:30:13 Transaction Type : REQUEST +00:30:13 Received From : +00:30:13 ============================================================================ +00:30:13 FNo. Len. Field Value +00:30:13 ============================================================================ +00:30:13 [ 1] [ 4] [0800] +00:30:13 [ 7] [ 10] [0319052921] +00:30:13 [ 11] [ 6] [153164] +00:30:13 [ 70] [ 3] [301] +00:30:13 ============================================================================ +00:30:13 + + +waiting on router queue for slot.... +00:30:13 Sending to : +00:30:13 ============================================================================ +00:30:13 ============================================================================ +00:30:13 Slot Id : <3> +00:30:13 Transaction Type : RESPONSE +00:30:13 Received From : +00:30:13 ============================================================================ +00:30:13 FNo. Len. Field Value +00:30:13 ============================================================================ +00:30:13 [ 1] [ 4] [0810] +00:30:13 [ 7] [ 10] [0319052921] +00:30:13 [ 11] [ 6] [153164] +00:30:13 [ 39] [ 2] [00] +00:30:13 [ 70] [ 3] [301] +00:30:13 ============================================================================ +00:30:13 Calculate Source COMM Id = 2 +00:30:13 ============================================================================ +00:30:13 + + +waiting on router queue for slot.... +00:30:24 ============================================================================ +00:30:24 Slot Id : <481> +00:30:24 Transaction Type : REQUEST +00:30:24 Received From : +00:30:24 ============================================================================ +00:30:24 FNo. Len. Field Value +00:30:24 ============================================================================ +00:30:24 [ 1] [ 4] [0800] +00:30:24 [ 7] [ 10] [0319052931] +00:30:24 [ 11] [ 6] [153165] +00:30:24 [ 70] [ 3] [301] +00:30:24 ============================================================================ +00:30:24 + + +waiting on router queue for slot.... +00:30:24 Sending to : +00:30:24 ============================================================================ +00:30:24 ============================================================================ +00:30:24 Slot Id : <481> +00:30:24 Transaction Type : RESPONSE +00:30:24 Received From : +00:30:24 ============================================================================ +00:30:24 FNo. Len. Field Value +00:30:24 ============================================================================ +00:30:24 [ 1] [ 4] [0810] +00:30:24 [ 7] [ 10] [0319052931] +00:30:24 [ 11] [ 6] [153165] +00:30:24 [ 39] [ 2] [00] +00:30:24 [ 70] [ 3] [301] +00:30:24 ============================================================================ +00:30:24 Calculate Source COMM Id = 2 +00:30:24 ============================================================================ +00:30:24 + + +waiting on router queue for slot.... +00:30:33 ============================================================================ +00:30:33 Slot Id : <29> +00:30:33 Transaction Type : REQUEST +00:30:33 Received From : +00:30:33 ============================================================================ +00:30:33 FNo. Len. Field Value +00:30:33 ============================================================================ +00:30:33 [ 1] [ 4] [0800] +00:30:33 [ 2] [ 5] [02531] +00:30:33 [ 3] [ 6] [579008] +00:30:33 [ 7] [ 10] [0319173033] +00:30:33 [ 11] [ 6] [806441] +00:30:33 [ 15] [ 10] [0319173033] +00:30:33 [ 37] [ 11] [57900806441] +00:30:33 [ 70] [ 3] [001] +00:30:33 ============================================================================ +00:30:33 + + +waiting on router queue for slot.... +00:30:33 ============================================================================ +00:30:33 Slot Id : <29> +00:30:33 Transaction Type : RESPONSE +00:30:33 Received From : +00:30:33 ============================================================================ +00:30:33 FNo. Len. Field Value +00:30:33 ============================================================================ +00:30:33 [ 1] [ 4] [0810] +00:30:33 [ 7] [ 10] [0319173033] +00:30:33 [ 11] [ 6] [806441] +00:30:33 [ 15] [ 4] [0319] +00:30:33 [ 37] [ 12] [57900806441] +00:30:33 [ 39] [ 2] [00] +00:30:33 [ 70] [ 3] [001] +00:30:33 ============================================================================ +00:30:33 Sending to : +00:30:33 ============================================================================ +00:30:33 + + +waiting on router queue for slot.... +00:30:35 ============================================================================ +00:30:35 Slot Id : <21> +00:30:35 Transaction Type : REQUEST +00:30:35 Received From : +00:30:35 ============================================================================ +00:30:35 FNo. Len. Field Value +00:30:35 ============================================================================ +00:30:35 [ 1] [ 4] [0800] +00:30:35 [ 7] [ 10] [0319052942] +00:30:35 [ 11] [ 6] [153166] +00:30:35 [ 70] [ 3] [301] +00:30:35 ============================================================================ +00:30:35 + + +waiting on router queue for slot.... +00:30:35 Sending to : +00:30:35 ============================================================================ +00:30:35 ============================================================================ +00:30:35 Slot Id : <21> +00:30:35 Transaction Type : RESPONSE +00:30:35 Received From : +00:30:35 ============================================================================ +00:30:35 FNo. Len. Field Value +00:30:35 ============================================================================ +00:30:35 [ 1] [ 4] [0810] +00:30:35 [ 7] [ 10] [0319052942] +00:30:35 [ 11] [ 6] [153166] +00:30:35 [ 39] [ 2] [00] +00:30:35 [ 70] [ 3] [301] +00:30:35 ============================================================================ +00:30:35 Calculate Source COMM Id = 2 +00:30:35 ============================================================================ +00:30:35 + + +waiting on router queue for slot.... +00:30:46 ============================================================================ +00:30:46 Slot Id : <7> +00:30:46 Transaction Type : REQUEST +00:30:46 Received From : +00:30:46 ============================================================================ +00:30:46 FNo. Len. Field Value +00:30:46 ============================================================================ +00:30:46 [ 1] [ 4] [0800] +00:30:46 [ 7] [ 10] [0319052953] +00:30:46 [ 11] [ 6] [153167] +00:30:46 [ 70] [ 3] [301] +00:30:46 ============================================================================ +00:30:46 + + +waiting on router queue for slot.... +00:30:46 Sending to : +00:30:46 ============================================================================ +00:30:46 ============================================================================ +00:30:46 Slot Id : <7> +00:30:46 Transaction Type : RESPONSE +00:30:46 Received From : +00:30:46 ============================================================================ +00:30:46 FNo. Len. Field Value +00:30:46 ============================================================================ +00:30:46 [ 1] [ 4] [0810] +00:30:46 [ 7] [ 10] [0319052953] +00:30:46 [ 11] [ 6] [153167] +00:30:46 [ 39] [ 2] [00] +00:30:46 [ 70] [ 3] [301] +00:30:46 ============================================================================ +00:30:46 Calculate Source COMM Id = 2 +00:30:46 ============================================================================ +00:30:46 + + +waiting on router queue for slot.... +00:31:01 ============================================================================ +00:31:01 Slot Id : <33> +00:31:01 Transaction Type : REQUEST +00:31:01 Received From : +00:31:01 ============================================================================ +00:31:01 FNo. Len. Field Value +00:31:01 ============================================================================ +00:31:01 [ 1] [ 4] [0800] +00:31:01 [ 7] [ 10] [0319053008] +00:31:01 [ 11] [ 6] [153168] +00:31:01 [ 70] [ 3] [301] +00:31:01 ============================================================================ +00:31:01 + + +waiting on router queue for slot.... +00:31:01 Sending to : +00:31:01 ============================================================================ +00:31:01 ============================================================================ +00:31:01 Slot Id : <33> +00:31:01 Transaction Type : RESPONSE +00:31:01 Received From : +00:31:01 ============================================================================ +00:31:01 FNo. Len. Field Value +00:31:01 ============================================================================ +00:31:01 [ 1] [ 4] [0810] +00:31:01 [ 7] [ 10] [0319053008] +00:31:01 [ 11] [ 6] [153168] +00:31:01 [ 39] [ 2] [00] +00:31:01 [ 70] [ 3] [301] +00:31:01 ============================================================================ +00:31:01 Calculate Source COMM Id = 2 +00:31:01 ============================================================================ +00:31:01 + + +waiting on router queue for slot.... +00:31:11 ============================================================================ +00:31:11 Slot Id : <11> +00:31:11 Transaction Type : REQUEST +00:31:11 Received From : +00:31:11 ============================================================================ +00:31:11 FNo. Len. Field Value +00:31:11 ============================================================================ +00:31:11 [ 1] [ 4] [0800] +00:31:11 [ 7] [ 10] [0319053019] +00:31:11 [ 11] [ 6] [153169] +00:31:11 [ 70] [ 3] [301] +00:31:11 ============================================================================ +00:31:11 + + +waiting on router queue for slot.... +00:31:11 Sending to : +00:31:11 ============================================================================ +00:31:11 ============================================================================ +00:31:11 Slot Id : <11> +00:31:11 Transaction Type : RESPONSE +00:31:11 Received From : +00:31:11 ============================================================================ +00:31:11 FNo. Len. Field Value +00:31:11 ============================================================================ +00:31:11 [ 1] [ 4] [0810] +00:31:11 [ 7] [ 10] [0319053019] +00:31:11 [ 11] [ 6] [153169] +00:31:11 [ 39] [ 2] [00] +00:31:11 [ 70] [ 3] [301] +00:31:11 ============================================================================ +00:31:11 Calculate Source COMM Id = 2 +00:31:11 ============================================================================ +00:31:11 + + +waiting on router queue for slot.... +00:31:14 ============================================================================ +00:31:14 Slot Id : <35> +00:31:14 Transaction Type : REQUEST +00:31:14 Received From : +00:31:14 ============================================================================ +00:31:14 FNo. Len. Field Value +00:31:14 ============================================================================ +00:31:14 [ 1] [ 4] [0800] +00:31:14 [ 7] [ 10] [0320074301] +00:31:14 [ 11] [ 6] [004301] +00:31:14 [ 37] [ 12] [57900004301] +00:31:14 [ 70] [ 3] [301] +00:31:14 ============================================================================ +00:31:14 + + +waiting on router queue for slot.... +00:31:14 Sending to : +00:31:14 ============================================================================ +00:31:14 ============================================================================ +00:31:14 Slot Id : <35> +00:31:14 Transaction Type : RESPONSE +00:31:14 Received From : +00:31:14 ============================================================================ +00:31:14 FNo. Len. Field Value +00:31:14 ============================================================================ +00:31:14 [ 1] [ 4] [0810] +00:31:14 [ 7] [ 10] [0320074301] +00:31:14 [ 11] [ 6] [004301] +00:31:14 [ 37] [ 12] [579000043010] +00:31:14 [ 39] [ 2] [00] +00:31:14 [ 70] [ 3] [810] +00:31:14 ============================================================================ +00:31:14 Calculate Source COMM Id = 6 +00:31:14 ============================================================================ +00:31:14 + + +waiting on router queue for slot.... +00:31:21 ============================================================================ +00:31:21 Slot Id : <496> +00:31:21 Transaction Type : REQUEST +00:31:21 Received From : +00:31:21 ============================================================================ +00:31:21 FNo. Len. Field Value +00:31:21 ============================================================================ +00:31:21 [ 1] [ 4] [0800] +00:31:21 [ 7] [ 10] [0319172912] +00:31:21 [ 11] [ 6] [033885] +00:31:21 [ 37] [ 12] [57900033885] +00:31:21 [ 70] [ 3] [301] +00:31:21 ============================================================================ +00:31:21 + + +waiting on router queue for slot.... +00:31:21 Sending to : +00:31:21 ============================================================================ +00:31:21 ============================================================================ +00:31:21 Slot Id : <496> +00:31:21 Transaction Type : RESPONSE +00:31:21 Received From : +00:31:21 ============================================================================ +00:31:21 FNo. Len. Field Value +00:31:21 ============================================================================ +00:31:21 [ 1] [ 4] [0810] +00:31:21 [ 7] [ 10] [0319172912] +00:31:21 [ 11] [ 6] [033885] +00:31:21 [ 37] [ 12] [579000338850] +00:31:21 [ 39] [ 2] [00] +00:31:21 [ 70] [ 3] [810] +00:31:21 ============================================================================ +00:31:21 Calculate Source COMM Id = 4 +00:31:21 ============================================================================ +00:31:21 + + +waiting on router queue for slot.... +00:31:22 ============================================================================ +00:31:22 Slot Id : <30> +00:31:22 Transaction Type : REQUEST +00:31:22 Received From : +00:31:22 ============================================================================ +00:31:22 FNo. Len. Field Value +00:31:22 ============================================================================ +00:31:22 [ 1] [ 4] [0800] +00:31:22 [ 7] [ 10] [0319053029] +00:31:22 [ 11] [ 6] [153170] +00:31:22 [ 70] [ 3] [301] +00:31:22 ============================================================================ +00:31:22 + + +waiting on router queue for slot.... +00:31:22 Sending to : +00:31:22 ============================================================================ +00:31:22 ============================================================================ +00:31:22 Slot Id : <30> +00:31:22 Transaction Type : RESPONSE +00:31:22 Received From : +00:31:22 ============================================================================ +00:31:22 FNo. Len. Field Value +00:31:22 ============================================================================ +00:31:22 [ 1] [ 4] [0810] +00:31:22 [ 7] [ 10] [0319053029] +00:31:22 [ 11] [ 6] [153170] +00:31:22 [ 39] [ 2] [00] +00:31:22 [ 70] [ 3] [301] +00:31:22 ============================================================================ +00:31:22 Calculate Source COMM Id = 2 +00:31:22 ============================================================================ +00:31:22 + + +waiting on router queue for slot.... +00:31:33 ============================================================================ +00:31:33 Slot Id : <36> +00:31:33 Transaction Type : REQUEST +00:31:33 Received From : +00:31:33 ============================================================================ +00:31:33 FNo. Len. Field Value +00:31:33 ============================================================================ +00:31:33 [ 1] [ 4] [0800] +00:31:33 [ 7] [ 10] [0319053040] +00:31:33 [ 11] [ 6] [153171] +00:31:33 [ 70] [ 3] [301] +00:31:33 ============================================================================ +00:31:33 + + +waiting on router queue for slot.... +00:31:33 Sending to : +00:31:33 ============================================================================ +00:31:33 ============================================================================ +00:31:33 Slot Id : <36> +00:31:33 Transaction Type : RESPONSE +00:31:33 Received From : +00:31:33 ============================================================================ +00:31:33 FNo. Len. Field Value +00:31:33 ============================================================================ +00:31:33 [ 1] [ 4] [0810] +00:31:33 [ 7] [ 10] [0319053040] +00:31:33 [ 11] [ 6] [153171] +00:31:33 [ 39] [ 2] [00] +00:31:33 [ 70] [ 3] [301] +00:31:33 ============================================================================ +00:31:33 Calculate Source COMM Id = 2 +00:31:33 ============================================================================ +00:31:33 + + +waiting on router queue for slot.... +00:31:35 ============================================================================ +00:31:35 Slot Id : <37> +00:31:35 Transaction Type : REQUEST +00:31:35 Received From : +00:31:35 ============================================================================ +00:31:35 FNo. Len. Field Value +00:31:35 ============================================================================ +00:31:35 [ 1] [ 4] [0800] +00:31:35 [ 2] [ 5] [02531] +00:31:35 [ 3] [ 6] [579008] +00:31:35 [ 7] [ 10] [0319173135] +00:31:35 [ 11] [ 6] [806442] +00:31:35 [ 15] [ 10] [0319173135] +00:31:35 [ 37] [ 11] [57900806442] +00:31:35 [ 70] [ 3] [001] +00:31:35 ============================================================================ +00:31:35 + + +waiting on router queue for slot.... +00:31:35 ============================================================================ +00:31:35 Slot Id : <37> +00:31:35 Transaction Type : RESPONSE +00:31:35 Received From : +00:31:35 ============================================================================ +00:31:35 FNo. Len. Field Value +00:31:35 ============================================================================ +00:31:35 [ 1] [ 4] [0810] +00:31:35 [ 7] [ 10] [0319173135] +00:31:35 [ 11] [ 6] [806442] +00:31:35 [ 15] [ 4] [0319] +00:31:35 [ 37] [ 12] [57900806442] +00:31:35 [ 39] [ 2] [00] +00:31:35 [ 70] [ 3] [001] +00:31:35 ============================================================================ +00:31:35 Sending to : +00:31:35 ============================================================================ +00:31:35 + + +waiting on router queue for slot.... +00:31:48 ============================================================================ +00:31:48 Slot Id : <32> +00:31:48 Transaction Type : REQUEST +00:31:48 Received From : +00:31:48 ============================================================================ +00:31:48 FNo. Len. Field Value +00:31:48 ============================================================================ +00:31:48 [ 1] [ 4] [0800] +00:31:48 [ 7] [ 10] [0319053055] +00:31:48 [ 11] [ 6] [153172] +00:31:48 [ 70] [ 3] [301] +00:31:48 ============================================================================ +00:31:48 + + +waiting on router queue for slot.... +00:31:48 Sending to : +00:31:48 ============================================================================ +00:31:48 ============================================================================ +00:31:48 Slot Id : <32> +00:31:48 Transaction Type : RESPONSE +00:31:48 Received From : +00:31:48 ============================================================================ +00:31:48 FNo. Len. Field Value +00:31:48 ============================================================================ +00:31:48 [ 1] [ 4] [0810] +00:31:48 [ 7] [ 10] [0319053055] +00:31:48 [ 11] [ 6] [153172] +00:31:48 [ 39] [ 2] [00] +00:31:48 [ 70] [ 3] [301] +00:31:48 ============================================================================ +00:31:48 Calculate Source COMM Id = 2 +00:31:48 ============================================================================ +00:31:48 + + +waiting on router queue for slot.... +00:31:58 ============================================================================ +00:31:58 Slot Id : <461> +00:31:58 Transaction Type : REQUEST +00:31:58 Received From : +00:31:58 ============================================================================ +00:31:58 FNo. Len. Field Value +00:31:58 ============================================================================ +00:31:58 [ 1] [ 4] [0800] +00:31:58 [ 7] [ 10] [0319053106] +00:31:58 [ 11] [ 6] [153173] +00:31:58 [ 70] [ 3] [301] +00:31:58 ============================================================================ +00:31:58 + + +waiting on router queue for slot.... +00:31:58 Sending to : +00:31:58 ============================================================================ +00:31:58 ============================================================================ +00:31:58 Slot Id : <461> +00:31:58 Transaction Type : RESPONSE +00:31:58 Received From : +00:31:58 ============================================================================ +00:31:58 FNo. Len. Field Value +00:31:58 ============================================================================ +00:31:58 [ 1] [ 4] [0810] +00:31:58 [ 7] [ 10] [0319053106] +00:31:58 [ 11] [ 6] [153173] +00:31:58 [ 39] [ 2] [00] +00:31:58 [ 70] [ 3] [301] +00:31:58 ============================================================================ +00:31:58 Calculate Source COMM Id = 2 +00:31:58 ============================================================================ +00:31:58 + + +waiting on router queue for slot.... +00:32:10 ============================================================================ +00:32:10 Slot Id : <9> +00:32:10 Transaction Type : REQUEST +00:32:10 Received From : +00:32:10 ============================================================================ +00:32:10 FNo. Len. Field Value +00:32:10 ============================================================================ +00:32:10 [ 1] [ 4] [0800] +00:32:10 [ 7] [ 10] [0319053117] +00:32:10 [ 11] [ 6] [153174] +00:32:10 [ 70] [ 3] [301] +00:32:10 ============================================================================ +00:32:10 + + +waiting on router queue for slot.... +00:32:10 Sending to : +00:32:10 ============================================================================ +00:32:10 ============================================================================ +00:32:10 Slot Id : <9> +00:32:10 Transaction Type : RESPONSE +00:32:10 Received From : +00:32:10 ============================================================================ +00:32:10 FNo. Len. Field Value +00:32:10 ============================================================================ +00:32:10 [ 1] [ 4] [0810] +00:32:10 [ 7] [ 10] [0319053117] +00:32:10 [ 11] [ 6] [153174] +00:32:10 [ 39] [ 2] [00] +00:32:10 [ 70] [ 3] [301] +00:32:10 ============================================================================ +00:32:10 Calculate Source COMM Id = 2 +00:32:10 ============================================================================ +00:32:10 + + +waiting on router queue for slot.... +00:32:19 ============================================================================ +00:32:19 Slot Id : <467> +00:32:19 Transaction Type : REQUEST +00:32:19 Received From : +00:32:19 ============================================================================ +00:32:19 FNo. Len. Field Value +00:32:19 ============================================================================ +00:32:19 [ 1] [ 4] [0800] +00:32:19 [ 7] [ 10] [0320074406] +00:32:19 [ 11] [ 6] [004406] +00:32:19 [ 37] [ 12] [57900004406] +00:32:19 [ 70] [ 3] [301] +00:32:19 ============================================================================ +00:32:19 + + +waiting on router queue for slot.... +00:32:19 Sending to : +00:32:19 ============================================================================ +00:32:19 ============================================================================ +00:32:19 Slot Id : <467> +00:32:19 Transaction Type : RESPONSE +00:32:19 Received From : +00:32:19 ============================================================================ +00:32:19 FNo. Len. Field Value +00:32:19 ============================================================================ +00:32:19 [ 1] [ 4] [0810] +00:32:19 [ 7] [ 10] [0320074406] +00:32:19 [ 11] [ 6] [004406] +00:32:19 [ 37] [ 12] [579000044060] +00:32:19 [ 39] [ 2] [00] +00:32:19 [ 70] [ 3] [810] +00:32:19 ============================================================================ +00:32:19 Calculate Source COMM Id = 6 +00:32:19 ============================================================================ +00:32:19 + + +waiting on router queue for slot.... +00:32:20 ============================================================================ +00:32:20 Slot Id : <45> +00:32:20 Transaction Type : REQUEST +00:32:20 Received From : +00:32:20 ============================================================================ +00:32:20 FNo. Len. Field Value +00:32:20 ============================================================================ +00:32:20 [ 1] [ 4] [0800] +00:32:20 [ 7] [ 10] [0319053128] +00:32:20 [ 11] [ 6] [153175] +00:32:20 [ 70] [ 3] [301] +00:32:20 ============================================================================ +00:32:20 + + +waiting on router queue for slot.... +00:32:20 Sending to : +00:32:20 ============================================================================ +00:32:20 ============================================================================ +00:32:20 Slot Id : <45> +00:32:20 Transaction Type : RESPONSE +00:32:20 Received From : +00:32:20 ============================================================================ +00:32:20 FNo. Len. Field Value +00:32:20 ============================================================================ +00:32:20 [ 1] [ 4] [0810] +00:32:20 [ 7] [ 10] [0319053128] +00:32:20 [ 11] [ 6] [153175] +00:32:20 [ 39] [ 2] [00] +00:32:20 [ 70] [ 3] [301] +00:32:20 ============================================================================ +00:32:20 Calculate Source COMM Id = 2 +00:32:20 ============================================================================ +00:32:20 + + +waiting on router queue for slot.... +00:32:30 ============================================================================ +00:32:30 Slot Id : <40> +00:32:30 Transaction Type : REQUEST +00:32:30 Received From : +00:32:30 ============================================================================ +00:32:30 FNo. Len. Field Value +00:32:30 ============================================================================ +00:32:30 [ 1] [ 4] [0800] +00:32:30 [ 7] [ 10] [0319053138] +00:32:30 [ 11] [ 6] [153176] +00:32:30 [ 70] [ 3] [301] +00:32:30 ============================================================================ +00:32:30 + + +waiting on router queue for slot.... +00:32:30 Sending to : +00:32:30 ============================================================================ +00:32:30 ============================================================================ +00:32:30 Slot Id : <40> +00:32:30 Transaction Type : RESPONSE +00:32:30 Received From : +00:32:30 ============================================================================ +00:32:30 FNo. Len. Field Value +00:32:30 ============================================================================ +00:32:30 [ 1] [ 4] [0810] +00:32:30 [ 7] [ 10] [0319053138] +00:32:30 [ 11] [ 6] [153176] +00:32:30 [ 39] [ 2] [00] +00:32:30 [ 70] [ 3] [301] +00:32:30 ============================================================================ +00:32:30 Calculate Source COMM Id = 2 +00:32:30 ============================================================================ +00:32:30 + + +waiting on router queue for slot.... +00:32:37 ============================================================================ +00:32:37 Slot Id : <18> +00:32:37 Transaction Type : REQUEST +00:32:37 Received From : +00:32:37 ============================================================================ +00:32:37 FNo. Len. Field Value +00:32:37 ============================================================================ +00:32:37 [ 1] [ 4] [0800] +00:32:37 [ 2] [ 5] [02531] +00:32:37 [ 3] [ 6] [579008] +00:32:37 [ 7] [ 10] [0319173237] +00:32:37 [ 11] [ 6] [806443] +00:32:37 [ 15] [ 10] [0319173237] +00:32:37 [ 37] [ 11] [57900806443] +00:32:37 [ 70] [ 3] [001] +00:32:37 ============================================================================ +00:32:37 + + +waiting on router queue for slot.... +00:32:37 ============================================================================ +00:32:37 Slot Id : <18> +00:32:37 Transaction Type : RESPONSE +00:32:37 Received From : +00:32:37 ============================================================================ +00:32:37 FNo. Len. Field Value +00:32:37 ============================================================================ +00:32:37 [ 1] [ 4] [0810] +00:32:37 [ 7] [ 10] [0319173237] +00:32:37 [ 11] [ 6] [806443] +00:32:37 [ 15] [ 4] [0319] +00:32:37 [ 37] [ 12] [57900806443] +00:32:37 [ 39] [ 2] [00] +00:32:37 [ 70] [ 3] [001] +00:32:37 ============================================================================ +00:32:37 Sending to : +00:32:37 ============================================================================ +00:32:37 + + +waiting on router queue for slot.... +00:32:42 ============================================================================ +00:32:42 Slot Id : <497> +00:32:42 Transaction Type : REQUEST +00:32:42 Received From : +00:32:42 ============================================================================ +00:32:42 FNo. Len. Field Value +00:32:42 ============================================================================ +00:32:42 [ 1] [ 4] [0800] +00:32:42 [ 7] [ 10] [0319053150] +00:32:42 [ 11] [ 6] [153177] +00:32:42 [ 70] [ 3] [301] +00:32:42 ============================================================================ +00:32:42 + + +waiting on router queue for slot.... +00:32:42 Sending to : +00:32:42 ============================================================================ +00:32:42 ============================================================================ +00:32:42 Slot Id : <497> +00:32:42 Transaction Type : RESPONSE +00:32:42 Received From : +00:32:42 ============================================================================ +00:32:42 FNo. Len. Field Value +00:32:42 ============================================================================ +00:32:42 [ 1] [ 4] [0810] +00:32:42 [ 7] [ 10] [0319053150] +00:32:42 [ 11] [ 6] [153177] +00:32:42 [ 39] [ 2] [00] +00:32:42 [ 70] [ 3] [301] +00:32:42 ============================================================================ +00:32:42 Calculate Source COMM Id = 2 +00:32:42 ============================================================================ +00:32:42 + + +waiting on router queue for slot.... +00:32:53 ============================================================================ +00:32:53 Slot Id : <28> +00:32:53 Transaction Type : REQUEST +00:32:53 Received From : +00:32:53 ============================================================================ +00:32:53 FNo. Len. Field Value +00:32:53 ============================================================================ +00:32:53 [ 1] [ 4] [0800] +00:32:53 [ 7] [ 10] [0319053201] +00:32:53 [ 11] [ 6] [153178] +00:32:53 [ 70] [ 3] [301] +00:32:53 ============================================================================ +00:32:53 + + +waiting on router queue for slot.... +00:32:53 Sending to : +00:32:53 ============================================================================ +00:32:53 ============================================================================ +00:32:53 Slot Id : <28> +00:32:53 Transaction Type : RESPONSE +00:32:53 Received From : +00:32:53 ============================================================================ +00:32:53 FNo. Len. Field Value +00:32:53 ============================================================================ +00:32:53 [ 1] [ 4] [0810] +00:32:53 [ 7] [ 10] [0319053201] +00:32:53 [ 11] [ 6] [153178] +00:32:53 [ 39] [ 2] [00] +00:32:53 [ 70] [ 3] [301] +00:32:53 ============================================================================ +00:32:53 Calculate Source COMM Id = 2 +00:32:53 ============================================================================ +00:32:53 + + +waiting on router queue for slot.... +00:33:09 ============================================================================ +00:33:09 Slot Id : <43> +00:33:09 Transaction Type : REQUEST +00:33:09 Received From : +00:33:09 ============================================================================ +00:33:09 FNo. Len. Field Value +00:33:09 ============================================================================ +00:33:09 [ 1] [ 4] [0800] +00:33:09 [ 7] [ 10] [0319053216] +00:33:09 [ 11] [ 6] [153179] +00:33:09 [ 70] [ 3] [301] +00:33:09 ============================================================================ +00:33:09 + + +waiting on router queue for slot.... +00:33:09 Sending to : +00:33:09 ============================================================================ +00:33:09 ============================================================================ +00:33:09 Slot Id : <43> +00:33:09 Transaction Type : RESPONSE +00:33:09 Received From : +00:33:09 ============================================================================ +00:33:09 FNo. Len. Field Value +00:33:09 ============================================================================ +00:33:09 [ 1] [ 4] [0810] +00:33:09 [ 7] [ 10] [0319053216] +00:33:09 [ 11] [ 6] [153179] +00:33:09 [ 39] [ 2] [00] +00:33:09 [ 70] [ 3] [301] +00:33:09 ============================================================================ +00:33:09 Calculate Source COMM Id = 2 +00:33:09 ============================================================================ +00:33:09 + + +waiting on router queue for slot.... +00:33:24 ============================================================================ +00:33:24 Slot Id : <50> +00:33:24 Transaction Type : REQUEST +00:33:24 Received From : +00:33:24 ============================================================================ +00:33:24 FNo. Len. Field Value +00:33:24 ============================================================================ +00:33:24 [ 1] [ 4] [0800] +00:33:24 [ 7] [ 10] [0320074511] +00:33:24 [ 11] [ 6] [004511] +00:33:24 [ 37] [ 12] [57900004511] +00:33:24 [ 70] [ 3] [301] +00:33:24 ============================================================================ +00:33:24 + + +waiting on router queue for slot.... +00:33:24 Sending to : +00:33:24 ============================================================================ +00:33:24 ============================================================================ +00:33:24 Slot Id : <50> +00:33:24 Transaction Type : RESPONSE +00:33:24 Received From : +00:33:24 ============================================================================ +00:33:24 FNo. Len. Field Value +00:33:24 ============================================================================ +00:33:24 [ 1] [ 4] [0810] +00:33:24 [ 7] [ 10] [0320074511] +00:33:24 [ 11] [ 6] [004511] +00:33:24 [ 37] [ 12] [579000045110] +00:33:24 [ 39] [ 2] [00] +00:33:24 [ 70] [ 3] [810] +00:33:24 ============================================================================ +00:33:24 Calculate Source COMM Id = 6 +00:33:24 ============================================================================ +00:33:24 + + +waiting on router queue for slot.... +00:33:25 ============================================================================ +00:33:25 Slot Id : <8> +00:33:25 Transaction Type : REQUEST +00:33:25 Received From : +00:33:25 ============================================================================ +00:33:25 FNo. Len. Field Value +00:33:25 ============================================================================ +00:33:25 [ 1] [ 4] [0800] +00:33:25 [ 7] [ 10] [0319053232] +00:33:25 [ 11] [ 6] [153180] +00:33:25 [ 70] [ 3] [301] +00:33:25 ============================================================================ +00:33:25 + + +waiting on router queue for slot.... +00:33:25 Sending to : +00:33:25 ============================================================================ +00:33:25 ============================================================================ +00:33:25 Slot Id : <8> +00:33:25 Transaction Type : RESPONSE +00:33:25 Received From : +00:33:25 ============================================================================ +00:33:25 FNo. Len. Field Value +00:33:25 ============================================================================ +00:33:25 [ 1] [ 4] [0810] +00:33:25 [ 7] [ 10] [0319053232] +00:33:25 [ 11] [ 6] [153180] +00:33:25 [ 39] [ 2] [00] +00:33:25 [ 70] [ 3] [301] +00:33:25 ============================================================================ +00:33:25 Calculate Source COMM Id = 2 +00:33:25 ============================================================================ +00:33:25 + + +waiting on router queue for slot.... +00:33:39 ============================================================================ +00:33:39 Slot Id : <52> +00:33:39 Transaction Type : REQUEST +00:33:39 Received From : +00:33:39 ============================================================================ +00:33:39 FNo. Len. Field Value +00:33:39 ============================================================================ +00:33:39 [ 1] [ 4] [0800] +00:33:39 [ 2] [ 5] [02531] +00:33:39 [ 3] [ 6] [579008] +00:33:39 [ 7] [ 10] [0319173339] +00:33:39 [ 11] [ 6] [806444] +00:33:39 [ 15] [ 10] [0319173339] +00:33:39 [ 37] [ 11] [57900806444] +00:33:39 [ 70] [ 3] [001] +00:33:39 ============================================================================ +00:33:39 + + +waiting on router queue for slot.... +00:33:39 ============================================================================ +00:33:39 Slot Id : <52> +00:33:39 Transaction Type : RESPONSE +00:33:39 Received From : +00:33:39 ============================================================================ +00:33:39 FNo. Len. Field Value +00:33:39 ============================================================================ +00:33:39 [ 1] [ 4] [0810] +00:33:39 [ 7] [ 10] [0319173339] +00:33:39 [ 11] [ 6] [806444] +00:33:39 [ 15] [ 4] [0319] +00:33:39 [ 37] [ 12] [57900806444] +00:33:39 [ 39] [ 2] [00] +00:33:39 [ 70] [ 3] [001] +00:33:39 ============================================================================ +00:33:39 Sending to : +00:33:39 ============================================================================ +00:33:39 + + +waiting on router queue for slot.... +00:33:41 ============================================================================ +00:33:41 Slot Id : <44> +00:33:41 Transaction Type : REQUEST +00:33:41 Received From : +00:33:41 ============================================================================ +00:33:41 FNo. Len. Field Value +00:33:41 ============================================================================ +00:33:41 [ 1] [ 4] [0800] +00:33:41 [ 7] [ 10] [0319053247] +00:33:41 [ 11] [ 6] [153181] +00:33:41 [ 70] [ 3] [301] +00:33:41 ============================================================================ +00:33:41 + + +waiting on router queue for slot.... +00:33:41 Sending to : +00:33:41 ============================================================================ +00:33:41 ============================================================================ +00:33:41 Slot Id : <44> +00:33:41 Transaction Type : RESPONSE +00:33:41 Received From : +00:33:41 ============================================================================ +00:33:41 FNo. Len. Field Value +00:33:41 ============================================================================ +00:33:41 [ 1] [ 4] [0810] +00:33:41 [ 7] [ 10] [0319053247] +00:33:41 [ 11] [ 6] [153181] +00:33:41 [ 39] [ 2] [00] +00:33:41 [ 70] [ 3] [301] +00:33:41 ============================================================================ +00:33:41 Calculate Source COMM Id = 2 +00:33:41 ============================================================================ +00:33:41 + + +waiting on router queue for slot.... +00:33:56 ============================================================================ +00:33:56 Slot Id : <61> +00:33:56 Transaction Type : REQUEST +00:33:56 Received From : +00:33:56 ============================================================================ +00:33:56 FNo. Len. Field Value +00:33:56 ============================================================================ +00:33:56 [ 1] [ 4] [0800] +00:33:56 [ 7] [ 10] [0319053303] +00:33:56 [ 11] [ 6] [153182] +00:33:56 [ 70] [ 3] [301] +00:33:56 ============================================================================ +00:33:56 + + +waiting on router queue for slot.... +00:33:56 Sending to : +00:33:56 ============================================================================ +00:33:56 ============================================================================ +00:33:56 Slot Id : <61> +00:33:56 Transaction Type : RESPONSE +00:33:56 Received From : +00:33:56 ============================================================================ +00:33:56 FNo. Len. Field Value +00:33:56 ============================================================================ +00:33:56 [ 1] [ 4] [0810] +00:33:56 [ 7] [ 10] [0319053303] +00:33:56 [ 11] [ 6] [153182] +00:33:56 [ 39] [ 2] [00] +00:33:56 [ 70] [ 3] [301] +00:33:56 ============================================================================ +00:33:56 Calculate Source COMM Id = 2 +00:33:56 ============================================================================ +00:33:56 + + +waiting on router queue for slot.... +00:34:06 ============================================================================ +00:34:06 Slot Id : <25> +00:34:06 Transaction Type : REQUEST +00:34:06 Received From : +00:34:06 ============================================================================ +00:34:06 FNo. Len. Field Value +00:34:06 ============================================================================ +00:34:06 [ 1] [ 4] [0800] +00:34:06 [ 7] [ 10] [0319053314] +00:34:06 [ 11] [ 6] [153183] +00:34:06 [ 70] [ 3] [301] +00:34:06 ============================================================================ +00:34:06 + + +waiting on router queue for slot.... +00:34:06 Sending to : +00:34:06 ============================================================================ +00:34:06 ============================================================================ +00:34:06 Slot Id : <25> +00:34:06 Transaction Type : RESPONSE +00:34:06 Received From : +00:34:06 ============================================================================ +00:34:06 FNo. Len. Field Value +00:34:06 ============================================================================ +00:34:06 [ 1] [ 4] [0810] +00:34:06 [ 7] [ 10] [0319053314] +00:34:06 [ 11] [ 6] [153183] +00:34:06 [ 39] [ 2] [00] +00:34:06 [ 70] [ 3] [301] +00:34:06 ============================================================================ +00:34:06 Calculate Source COMM Id = 2 +00:34:06 ============================================================================ +00:34:06 + + +waiting on router queue for slot.... +00:34:17 ============================================================================ +00:34:17 Slot Id : <15> +00:34:17 Transaction Type : REQUEST +00:34:17 Received From : +00:34:17 ============================================================================ +00:34:17 FNo. Len. Field Value +00:34:17 ============================================================================ +00:34:17 [ 1] [ 4] [0800] +00:34:17 [ 7] [ 10] [0319053325] +00:34:17 [ 11] [ 6] [153184] +00:34:17 [ 70] [ 3] [301] +00:34:17 ============================================================================ +00:34:17 + + +waiting on router queue for slot.... +00:34:17 Sending to : +00:34:17 ============================================================================ +00:34:17 ============================================================================ +00:34:17 Slot Id : <15> +00:34:17 Transaction Type : RESPONSE +00:34:17 Received From : +00:34:17 ============================================================================ +00:34:17 FNo. Len. Field Value +00:34:17 ============================================================================ +00:34:17 [ 1] [ 4] [0810] +00:34:17 [ 7] [ 10] [0319053325] +00:34:17 [ 11] [ 6] [153184] +00:34:17 [ 39] [ 2] [00] +00:34:17 [ 70] [ 3] [301] +00:34:17 ============================================================================ +00:34:17 Calculate Source COMM Id = 2 +00:34:17 ============================================================================ +00:34:17 + + +waiting on router queue for slot.... +00:34:28 ============================================================================ +00:34:28 Slot Id : <55> +00:34:28 Transaction Type : REQUEST +00:34:28 Received From : +00:34:28 ============================================================================ +00:34:28 FNo. Len. Field Value +00:34:28 ============================================================================ +00:34:28 [ 1] [ 4] [0800] +00:34:28 [ 7] [ 10] [0319053336] +00:34:28 [ 11] [ 6] [153185] +00:34:28 [ 70] [ 3] [301] +00:34:28 ============================================================================ +00:34:28 + + +waiting on router queue for slot.... +00:34:28 Sending to : +00:34:28 ============================================================================ +00:34:28 ============================================================================ +00:34:28 Slot Id : <55> +00:34:28 Transaction Type : RESPONSE +00:34:28 Received From : +00:34:28 ============================================================================ +00:34:28 FNo. Len. Field Value +00:34:28 ============================================================================ +00:34:28 [ 1] [ 4] [0810] +00:34:28 [ 7] [ 10] [0319053336] +00:34:28 [ 11] [ 6] [153185] +00:34:28 [ 39] [ 2] [00] +00:34:28 [ 70] [ 3] [301] +00:34:28 ============================================================================ +00:34:28 Calculate Source COMM Id = 2 +00:34:28 ============================================================================ +00:34:28 + + +waiting on router queue for slot.... +00:34:29 ============================================================================ +00:34:29 Slot Id : <478> +00:34:29 Transaction Type : REQUEST +00:34:29 Received From : +00:34:29 ============================================================================ +00:34:29 FNo. Len. Field Value +00:34:29 ============================================================================ +00:34:29 [ 1] [ 4] [0800] +00:34:29 [ 7] [ 10] [0320074616] +00:34:29 [ 11] [ 6] [004616] +00:34:29 [ 37] [ 12] [57900004616] +00:34:29 [ 70] [ 3] [301] +00:34:29 ============================================================================ +00:34:29 + + +waiting on router queue for slot.... +00:34:29 Sending to : +00:34:29 ============================================================================ +00:34:29 ============================================================================ +00:34:29 Slot Id : <478> +00:34:29 Transaction Type : RESPONSE +00:34:29 Received From : +00:34:29 ============================================================================ +00:34:29 FNo. Len. Field Value +00:34:29 ============================================================================ +00:34:29 [ 1] [ 4] [0810] +00:34:29 [ 7] [ 10] [0320074616] +00:34:29 [ 11] [ 6] [004616] +00:34:29 [ 37] [ 12] [579000046160] +00:34:29 [ 39] [ 2] [00] +00:34:29 [ 70] [ 3] [810] +00:34:29 ============================================================================ +00:34:29 Calculate Source COMM Id = 6 +00:34:29 ============================================================================ +00:34:29 + + +waiting on router queue for slot.... +00:34:39 ============================================================================ +00:34:39 Slot Id : <68> +00:34:39 Transaction Type : REQUEST +00:34:39 Received From : +00:34:39 ============================================================================ +00:34:39 FNo. Len. Field Value +00:34:39 ============================================================================ +00:34:39 [ 1] [ 4] [0800] +00:34:39 [ 7] [ 10] [0319053346] +00:34:39 [ 11] [ 6] [153186] +00:34:39 [ 70] [ 3] [301] +00:34:39 ============================================================================ +00:34:39 + + +waiting on router queue for slot.... +00:34:39 Sending to : +00:34:39 ============================================================================ +00:34:39 ============================================================================ +00:34:39 Slot Id : <68> +00:34:39 Transaction Type : RESPONSE +00:34:39 Received From : +00:34:39 ============================================================================ +00:34:39 FNo. Len. Field Value +00:34:39 ============================================================================ +00:34:39 [ 1] [ 4] [0810] +00:34:39 [ 7] [ 10] [0319053346] +00:34:39 [ 11] [ 6] [153186] +00:34:39 [ 39] [ 2] [00] +00:34:39 [ 70] [ 3] [301] +00:34:39 ============================================================================ +00:34:39 Calculate Source COMM Id = 2 +00:34:39 ============================================================================ +00:34:39 + + +waiting on router queue for slot.... +00:34:41 ============================================================================ +00:34:41 Slot Id : <63> +00:34:41 Transaction Type : REQUEST +00:34:41 Received From : +00:34:41 ============================================================================ +00:34:41 FNo. Len. Field Value +00:34:41 ============================================================================ +00:34:41 [ 1] [ 4] [0800] +00:34:41 [ 2] [ 5] [02531] +00:34:41 [ 3] [ 6] [579008] +00:34:41 [ 7] [ 10] [0319173441] +00:34:41 [ 11] [ 6] [806445] +00:34:41 [ 15] [ 10] [0319173441] +00:34:41 [ 37] [ 11] [57900806445] +00:34:41 [ 70] [ 3] [001] +00:34:41 ============================================================================ +00:34:41 + + +waiting on router queue for slot.... +00:34:41 ============================================================================ +00:34:41 Slot Id : <63> +00:34:41 Transaction Type : RESPONSE +00:34:41 Received From : +00:34:41 ============================================================================ +00:34:41 FNo. Len. Field Value +00:34:41 ============================================================================ +00:34:41 [ 1] [ 4] [0810] +00:34:41 [ 7] [ 10] [0319173441] +00:34:41 [ 11] [ 6] [806445] +00:34:41 [ 15] [ 4] [0319] +00:34:41 [ 37] [ 12] [57900806445] +00:34:41 [ 39] [ 2] [00] +00:34:41 [ 70] [ 3] [001] +00:34:41 ============================================================================ +00:34:41 Sending to : +00:34:41 ============================================================================ +00:34:41 + + +waiting on router queue for slot.... +00:34:55 ============================================================================ +00:34:55 Slot Id : <60> +00:34:55 Transaction Type : REQUEST +00:34:55 Received From : +00:34:55 ============================================================================ +00:34:55 FNo. Len. Field Value +00:34:55 ============================================================================ +00:34:55 [ 1] [ 4] [0800] +00:34:55 [ 7] [ 10] [0319053402] +00:34:55 [ 11] [ 6] [153187] +00:34:55 [ 70] [ 3] [301] +00:34:55 ============================================================================ +00:34:55 + + +waiting on router queue for slot.... +00:34:55 Sending to : +00:34:55 ============================================================================ +00:34:55 ============================================================================ +00:34:55 Slot Id : <60> +00:34:55 Transaction Type : RESPONSE +00:34:55 Received From : +00:34:55 ============================================================================ +00:34:55 FNo. Len. Field Value +00:34:55 ============================================================================ +00:34:55 [ 1] [ 4] [0810] +00:34:55 [ 7] [ 10] [0319053402] +00:34:55 [ 11] [ 6] [153187] +00:34:55 [ 39] [ 2] [00] +00:34:55 [ 70] [ 3] [301] +00:34:55 ============================================================================ +00:34:55 Calculate Source COMM Id = 2 +00:34:55 ============================================================================ +00:34:55 + + +waiting on router queue for slot.... +00:34:56 ============================================================================ +00:34:56 Slot Id : <464> +00:34:56 Transaction Type : REQUEST +00:34:56 Received From : +00:34:56 ============================================================================ +00:34:56 FNo. Len. Field Value +00:34:56 ============================================================================ +00:34:56 [ 1] [ 4] [0800] +00:34:56 [ 7] [ 10] [0319174242] +00:34:56 [ 11] [ 6] [052545] +00:34:56 [ 37] [ 12] [57900052545] +00:34:56 [ 70] [ 3] [301] +00:34:56 ============================================================================ +00:34:56 + + +waiting on router queue for slot.... +00:34:56 Sending to : +00:34:56 ============================================================================ +00:34:56 ============================================================================ +00:34:56 Slot Id : <464> +00:34:56 Transaction Type : RESPONSE +00:34:56 Received From : +00:34:56 ============================================================================ +00:34:56 FNo. Len. Field Value +00:34:56 ============================================================================ +00:34:56 [ 1] [ 4] [0810] +00:34:56 [ 7] [ 10] [0319174242] +00:34:56 [ 11] [ 6] [052545] +00:34:56 [ 37] [ 12] [579000525450] +00:34:56 [ 39] [ 2] [00] +00:34:56 [ 70] [ 3] [810] +00:34:56 ============================================================================ +00:34:56 Calculate Source COMM Id = 1 +00:34:56 ============================================================================ +00:34:56 + + +waiting on router queue for slot.... +00:35:05 ============================================================================ +00:35:05 Slot Id : <41> +00:35:05 Transaction Type : REQUEST +00:35:05 Received From : +00:35:05 ============================================================================ +00:35:05 FNo. Len. Field Value +00:35:05 ============================================================================ +00:35:05 [ 1] [ 4] [0800] +00:35:05 [ 7] [ 10] [0319053412] +00:35:05 [ 11] [ 6] [153188] +00:35:05 [ 70] [ 3] [301] +00:35:05 ============================================================================ +00:35:05 + + +waiting on router queue for slot.... +00:35:05 Sending to : +00:35:05 ============================================================================ +00:35:05 ============================================================================ +00:35:05 Slot Id : <41> +00:35:05 Transaction Type : RESPONSE +00:35:05 Received From : +00:35:05 ============================================================================ +00:35:05 FNo. Len. Field Value +00:35:05 ============================================================================ +00:35:05 [ 1] [ 4] [0810] +00:35:05 [ 7] [ 10] [0319053412] +00:35:05 [ 11] [ 6] [153188] +00:35:05 [ 39] [ 2] [00] +00:35:05 [ 70] [ 3] [301] +00:35:05 ============================================================================ +00:35:05 Calculate Source COMM Id = 2 +00:35:05 ============================================================================ +00:35:05 + + +waiting on router queue for slot.... +00:35:20 ============================================================================ +00:35:20 Slot Id : <38> +00:35:20 Transaction Type : REQUEST +00:35:20 Received From : +00:35:20 ============================================================================ +00:35:20 FNo. Len. Field Value +00:35:20 ============================================================================ +00:35:20 [ 1] [ 4] [0800] +00:35:20 [ 7] [ 10] [0319053428] +00:35:20 [ 11] [ 6] [153189] +00:35:20 [ 70] [ 3] [301] +00:35:20 ============================================================================ +00:35:20 + + +waiting on router queue for slot.... +00:35:20 Sending to : +00:35:20 ============================================================================ +00:35:20 ============================================================================ +00:35:20 Slot Id : <38> +00:35:20 Transaction Type : RESPONSE +00:35:20 Received From : +00:35:20 ============================================================================ +00:35:20 FNo. Len. Field Value +00:35:20 ============================================================================ +00:35:20 [ 1] [ 4] [0810] +00:35:20 [ 7] [ 10] [0319053428] +00:35:20 [ 11] [ 6] [153189] +00:35:20 [ 39] [ 2] [00] +00:35:20 [ 70] [ 3] [301] +00:35:20 ============================================================================ +00:35:20 Calculate Source COMM Id = 2 +00:35:20 ============================================================================ +00:35:20 + + +waiting on router queue for slot.... +00:35:34 ============================================================================ +00:35:34 Slot Id : <73> +00:35:34 Transaction Type : REQUEST +00:35:34 Received From : +00:35:34 ============================================================================ +00:35:34 FNo. Len. Field Value +00:35:34 ============================================================================ +00:35:34 [ 1] [ 4] [0800] +00:35:34 [ 7] [ 10] [0320074721] +00:35:34 [ 11] [ 6] [004721] +00:35:34 [ 37] [ 12] [57900004721] +00:35:34 [ 70] [ 3] [301] +00:35:34 ============================================================================ +00:35:34 + + +waiting on router queue for slot.... +00:35:34 Sending to : +00:35:34 ============================================================================ +00:35:34 ============================================================================ +00:35:34 Slot Id : <73> +00:35:34 Transaction Type : RESPONSE +00:35:34 Received From : +00:35:34 ============================================================================ +00:35:34 FNo. Len. Field Value +00:35:34 ============================================================================ +00:35:34 [ 1] [ 4] [0810] +00:35:34 [ 7] [ 10] [0320074721] +00:35:34 [ 11] [ 6] [004721] +00:35:34 [ 37] [ 12] [579000047210] +00:35:34 [ 39] [ 2] [00] +00:35:34 [ 70] [ 3] [810] +00:35:34 ============================================================================ +00:35:34 Calculate Source COMM Id = 6 +00:35:34 ============================================================================ +00:35:34 + + +waiting on router queue for slot.... +00:35:36 ============================================================================ +00:35:36 Slot Id : <20> +00:35:36 Transaction Type : REQUEST +00:35:36 Received From : +00:35:36 ============================================================================ +00:35:36 FNo. Len. Field Value +00:35:36 ============================================================================ +00:35:36 [ 1] [ 4] [0800] +00:35:36 [ 7] [ 10] [0319053443] +00:35:36 [ 11] [ 6] [153190] +00:35:36 [ 70] [ 3] [301] +00:35:36 ============================================================================ +00:35:36 + + +waiting on router queue for slot.... +00:35:36 Sending to : +00:35:36 ============================================================================ +00:35:36 ============================================================================ +00:35:36 Slot Id : <20> +00:35:36 Transaction Type : RESPONSE +00:35:36 Received From : +00:35:36 ============================================================================ +00:35:36 FNo. Len. Field Value +00:35:36 ============================================================================ +00:35:36 [ 1] [ 4] [0810] +00:35:36 [ 7] [ 10] [0319053443] +00:35:36 [ 11] [ 6] [153190] +00:35:36 [ 39] [ 2] [00] +00:35:36 [ 70] [ 3] [301] +00:35:36 ============================================================================ +00:35:36 Calculate Source COMM Id = 2 +00:35:36 ============================================================================ +00:35:36 + + +waiting on router queue for slot.... +00:35:43 ============================================================================ +00:35:43 Slot Id : <487> +00:35:43 Transaction Type : REQUEST +00:35:43 Received From : +00:35:43 ============================================================================ +00:35:43 FNo. Len. Field Value +00:35:43 ============================================================================ +00:35:43 [ 1] [ 4] [0800] +00:35:43 [ 2] [ 5] [02531] +00:35:43 [ 3] [ 6] [579008] +00:35:43 [ 7] [ 10] [0319173543] +00:35:43 [ 11] [ 6] [806446] +00:35:43 [ 15] [ 10] [0319173543] +00:35:43 [ 37] [ 11] [57900806446] +00:35:43 [ 70] [ 3] [001] +00:35:43 ============================================================================ +00:35:43 + + +waiting on router queue for slot.... +00:35:43 ============================================================================ +00:35:43 Slot Id : <487> +00:35:43 Transaction Type : RESPONSE +00:35:43 Received From : +00:35:43 ============================================================================ +00:35:43 FNo. Len. Field Value +00:35:43 ============================================================================ +00:35:43 [ 1] [ 4] [0810] +00:35:43 [ 7] [ 10] [0319173543] +00:35:43 [ 11] [ 6] [806446] +00:35:43 [ 15] [ 4] [0319] +00:35:43 [ 37] [ 12] [57900806446] +00:35:43 [ 39] [ 2] [00] +00:35:43 [ 70] [ 3] [001] +00:35:43 ============================================================================ +00:35:43 Sending to : +00:35:43 ============================================================================ +00:35:43 + + +waiting on router queue for slot.... +00:35:52 ============================================================================ +00:35:52 Slot Id : <27> +00:35:52 Transaction Type : REQUEST +00:35:52 Received From : +00:35:52 ============================================================================ +00:35:52 FNo. Len. Field Value +00:35:52 ============================================================================ +00:35:52 [ 1] [ 4] [0800] +00:35:52 [ 7] [ 10] [0319053459] +00:35:52 [ 11] [ 6] [153191] +00:35:52 [ 70] [ 3] [301] +00:35:52 ============================================================================ +00:35:52 + + +waiting on router queue for slot.... +00:35:52 Sending to : +00:35:52 ============================================================================ +00:35:52 ============================================================================ +00:35:52 Slot Id : <27> +00:35:52 Transaction Type : RESPONSE +00:35:52 Received From : +00:35:52 ============================================================================ +00:35:52 FNo. Len. Field Value +00:35:52 ============================================================================ +00:35:52 [ 1] [ 4] [0810] +00:35:52 [ 7] [ 10] [0319053459] +00:35:52 [ 11] [ 6] [153191] +00:35:52 [ 39] [ 2] [00] +00:35:52 [ 70] [ 3] [301] +00:35:52 ============================================================================ +00:35:52 Calculate Source COMM Id = 2 +00:35:52 ============================================================================ +00:35:52 + + +waiting on router queue for slot.... +00:36:02 ============================================================================ +00:36:02 Slot Id : <48> +00:36:02 Transaction Type : REQUEST +00:36:02 Received From : +00:36:02 ============================================================================ +00:36:02 FNo. Len. Field Value +00:36:02 ============================================================================ +00:36:02 [ 1] [ 4] [0800] +00:36:02 [ 7] [ 10] [0319053510] +00:36:02 [ 11] [ 6] [153192] +00:36:02 [ 70] [ 3] [301] +00:36:02 ============================================================================ +00:36:02 + + +waiting on router queue for slot.... +00:36:02 Sending to : +00:36:02 ============================================================================ +00:36:02 ============================================================================ +00:36:02 Slot Id : <48> +00:36:02 Transaction Type : RESPONSE +00:36:02 Received From : +00:36:02 ============================================================================ +00:36:02 FNo. Len. Field Value +00:36:02 ============================================================================ +00:36:02 [ 1] [ 4] [0810] +00:36:02 [ 7] [ 10] [0319053510] +00:36:02 [ 11] [ 6] [153192] +00:36:02 [ 39] [ 2] [00] +00:36:02 [ 70] [ 3] [301] +00:36:02 ============================================================================ +00:36:02 Calculate Source COMM Id = 2 +00:36:02 ============================================================================ +00:36:02 + + +waiting on router queue for slot.... +00:36:15 ============================================================================ +00:36:15 Slot Id : <26> +00:36:15 Transaction Type : REQUEST +00:36:15 Received From : +00:36:15 ============================================================================ +00:36:15 FNo. Len. Field Value +00:36:15 ============================================================================ +00:36:15 [ 1] [ 4] [0800] +00:36:15 [ 7] [ 10] [0319053522] +00:36:15 [ 11] [ 6] [153193] +00:36:15 [ 70] [ 3] [301] +00:36:15 ============================================================================ +00:36:15 + + +waiting on router queue for slot.... +00:36:15 Sending to : +00:36:15 ============================================================================ +00:36:15 ============================================================================ +00:36:15 Slot Id : <26> +00:36:15 Transaction Type : RESPONSE +00:36:15 Received From : +00:36:15 ============================================================================ +00:36:15 FNo. Len. Field Value +00:36:15 ============================================================================ +00:36:15 [ 1] [ 4] [0810] +00:36:15 [ 7] [ 10] [0319053522] +00:36:15 [ 11] [ 6] [153193] +00:36:15 [ 39] [ 2] [00] +00:36:15 [ 70] [ 3] [301] +00:36:15 ============================================================================ +00:36:15 Calculate Source COMM Id = 2 +00:36:15 ============================================================================ +00:36:15 + + +waiting on router queue for slot.... +00:36:21 ============================================================================ +00:36:21 Slot Id : <46> +00:36:21 Transaction Type : REQUEST +00:36:21 Received From : +00:36:21 ============================================================================ +00:36:21 FNo. Len. Field Value +00:36:21 ============================================================================ +00:36:21 [ 1] [ 4] [0800] +00:36:21 [ 7] [ 10] [0319173412] +00:36:21 [ 11] [ 6] [068890] +00:36:21 [ 37] [ 12] [57900068890] +00:36:21 [ 70] [ 3] [301] +00:36:21 ============================================================================ +00:36:21 + + +waiting on router queue for slot.... +00:36:21 Sending to : +00:36:21 ============================================================================ +00:36:21 ============================================================================ +00:36:21 Slot Id : <46> +00:36:21 Transaction Type : RESPONSE +00:36:21 Received From : +00:36:21 ============================================================================ +00:36:21 FNo. Len. Field Value +00:36:21 ============================================================================ +00:36:21 [ 1] [ 4] [0810] +00:36:21 [ 7] [ 10] [0319173412] +00:36:21 [ 11] [ 6] [068890] +00:36:21 [ 37] [ 12] [579000688900] +00:36:21 [ 39] [ 2] [00] +00:36:21 [ 70] [ 3] [810] +00:36:21 ============================================================================ +00:36:21 Calculate Source COMM Id = 4 +00:36:21 ============================================================================ +00:36:21 + + +waiting on router queue for slot.... +00:36:26 ============================================================================ +00:36:26 Slot Id : <19> +00:36:26 Transaction Type : REQUEST +00:36:26 Received From : +00:36:26 ============================================================================ +00:36:26 FNo. Len. Field Value +00:36:26 ============================================================================ +00:36:26 [ 1] [ 4] [0800] +00:36:26 [ 7] [ 10] [0319053533] +00:36:26 [ 11] [ 6] [153194] +00:36:26 [ 70] [ 3] [301] +00:36:26 ============================================================================ +00:36:26 + + +waiting on router queue for slot.... +00:36:26 Sending to : +00:36:26 ============================================================================ +00:36:26 ============================================================================ +00:36:26 Slot Id : <19> +00:36:26 Transaction Type : RESPONSE +00:36:26 Received From : +00:36:26 ============================================================================ +00:36:26 FNo. Len. Field Value +00:36:26 ============================================================================ +00:36:26 [ 1] [ 4] [0810] +00:36:26 [ 7] [ 10] [0319053533] +00:36:26 [ 11] [ 6] [153194] +00:36:26 [ 39] [ 2] [00] +00:36:26 [ 70] [ 3] [301] +00:36:26 ============================================================================ +00:36:26 Calculate Source COMM Id = 2 +00:36:26 ============================================================================ +00:36:26 + + +waiting on router queue for slot.... +00:36:36 ============================================================================ +00:36:36 Slot Id : <69> +00:36:36 Transaction Type : REQUEST +00:36:36 Received From : +00:36:36 ============================================================================ +00:36:36 FNo. Len. Field Value +00:36:36 ============================================================================ +00:36:36 [ 1] [ 4] [0800] +00:36:36 [ 7] [ 10] [0319053544] +00:36:36 [ 11] [ 6] [153195] +00:36:36 [ 70] [ 3] [301] +00:36:36 ============================================================================ +00:36:36 + + +waiting on router queue for slot.... +00:36:36 Sending to : +00:36:36 ============================================================================ +00:36:36 ============================================================================ +00:36:36 Slot Id : <69> +00:36:36 Transaction Type : RESPONSE +00:36:36 Received From : +00:36:36 ============================================================================ +00:36:36 FNo. Len. Field Value +00:36:36 ============================================================================ +00:36:36 [ 1] [ 4] [0810] +00:36:36 [ 7] [ 10] [0319053544] +00:36:36 [ 11] [ 6] [153195] +00:36:36 [ 39] [ 2] [00] +00:36:36 [ 70] [ 3] [301] +00:36:36 ============================================================================ +00:36:36 Calculate Source COMM Id = 2 +00:36:36 ============================================================================ +00:36:36 + + +waiting on router queue for slot.... +00:36:39 ============================================================================ +00:36:39 Slot Id : <47> +00:36:39 Transaction Type : REQUEST +00:36:39 Received From : +00:36:39 ============================================================================ +00:36:39 FNo. Len. Field Value +00:36:39 ============================================================================ +00:36:39 [ 1] [ 4] [0800] +00:36:39 [ 7] [ 10] [0320074826] +00:36:39 [ 11] [ 6] [004826] +00:36:39 [ 37] [ 12] [57900004826] +00:36:39 [ 70] [ 3] [301] +00:36:39 ============================================================================ +00:36:39 + + +waiting on router queue for slot.... +00:36:39 Sending to : +00:36:39 ============================================================================ +00:36:39 ============================================================================ +00:36:39 Slot Id : <47> +00:36:39 Transaction Type : RESPONSE +00:36:39 Received From : +00:36:39 ============================================================================ +00:36:39 FNo. Len. Field Value +00:36:39 ============================================================================ +00:36:39 [ 1] [ 4] [0810] +00:36:39 [ 7] [ 10] [0320074826] +00:36:39 [ 11] [ 6] [004826] +00:36:39 [ 37] [ 12] [579000048260] +00:36:39 [ 39] [ 2] [00] +00:36:39 [ 70] [ 3] [810] +00:36:39 ============================================================================ +00:36:39 Calculate Source COMM Id = 6 +00:36:39 ============================================================================ +00:36:39 + + +waiting on router queue for slot.... +00:36:45 ============================================================================ +00:36:45 Slot Id : <78> +00:36:45 Transaction Type : REQUEST +00:36:45 Received From : +00:36:45 ============================================================================ +00:36:45 FNo. Len. Field Value +00:36:45 ============================================================================ +00:36:45 [ 1] [ 4] [0800] +00:36:45 [ 2] [ 5] [02531] +00:36:45 [ 3] [ 6] [579008] +00:36:45 [ 7] [ 10] [0319173645] +00:36:45 [ 11] [ 6] [806447] +00:36:45 [ 15] [ 10] [0319173645] +00:36:45 [ 37] [ 11] [57900806447] +00:36:45 [ 70] [ 3] [001] +00:36:45 ============================================================================ +00:36:45 + + +waiting on router queue for slot.... +00:36:45 ============================================================================ +00:36:45 Slot Id : <78> +00:36:45 Transaction Type : RESPONSE +00:36:45 Received From : +00:36:45 ============================================================================ +00:36:45 FNo. Len. Field Value +00:36:45 ============================================================================ +00:36:45 [ 1] [ 4] [0810] +00:36:45 [ 7] [ 10] [0319173645] +00:36:45 [ 11] [ 6] [806447] +00:36:45 [ 15] [ 4] [0319] +00:36:45 [ 37] [ 12] [57900806447] +00:36:45 [ 39] [ 2] [00] +00:36:45 [ 70] [ 3] [001] +00:36:45 ============================================================================ +00:36:45 Sending to : +00:36:45 ============================================================================ +00:36:45 + + +waiting on router queue for slot.... +00:36:47 ============================================================================ +00:36:47 Slot Id : <58> +00:36:47 Transaction Type : REQUEST +00:36:47 Received From : +00:36:47 ============================================================================ +00:36:47 FNo. Len. Field Value +00:36:47 ============================================================================ +00:36:47 [ 1] [ 4] [0800] +00:36:47 [ 7] [ 10] [0319053554] +00:36:47 [ 11] [ 6] [153196] +00:36:47 [ 70] [ 3] [301] +00:36:47 ============================================================================ +00:36:47 + + +waiting on router queue for slot.... +00:36:47 Sending to : +00:36:47 ============================================================================ +00:36:47 ============================================================================ +00:36:47 Slot Id : <58> +00:36:47 Transaction Type : RESPONSE +00:36:47 Received From : +00:36:47 ============================================================================ +00:36:47 FNo. Len. Field Value +00:36:47 ============================================================================ +00:36:47 [ 1] [ 4] [0810] +00:36:47 [ 7] [ 10] [0319053554] +00:36:47 [ 11] [ 6] [153196] +00:36:47 [ 39] [ 2] [00] +00:36:47 [ 70] [ 3] [301] +00:36:47 ============================================================================ +00:36:47 Calculate Source COMM Id = 2 +00:36:47 ============================================================================ +00:36:47 + + +waiting on router queue for slot.... +00:37:03 ============================================================================ +00:37:03 Slot Id : <54> +00:37:03 Transaction Type : REQUEST +00:37:03 Received From : +00:37:03 ============================================================================ +00:37:03 FNo. Len. Field Value +00:37:03 ============================================================================ +00:37:03 [ 1] [ 4] [0800] +00:37:03 [ 7] [ 10] [0319053610] +00:37:03 [ 11] [ 6] [153197] +00:37:03 [ 70] [ 3] [301] +00:37:03 ============================================================================ +00:37:03 + + +waiting on router queue for slot.... +00:37:03 Sending to : +00:37:03 ============================================================================ +00:37:03 ============================================================================ +00:37:03 Slot Id : <54> +00:37:03 Transaction Type : RESPONSE +00:37:03 Received From : +00:37:03 ============================================================================ +00:37:03 FNo. Len. Field Value +00:37:03 ============================================================================ +00:37:03 [ 1] [ 4] [0810] +00:37:03 [ 7] [ 10] [0319053610] +00:37:03 [ 11] [ 6] [153197] +00:37:03 [ 39] [ 2] [00] +00:37:03 [ 70] [ 3] [301] +00:37:03 ============================================================================ +00:37:03 Calculate Source COMM Id = 2 +00:37:03 ============================================================================ +00:37:03 + + +waiting on router queue for slot.... +00:37:18 ============================================================================ +00:37:18 Slot Id : <81> +00:37:18 Transaction Type : REQUEST +00:37:18 Received From : +00:37:18 ============================================================================ +00:37:18 FNo. Len. Field Value +00:37:18 ============================================================================ +00:37:18 [ 1] [ 4] [0800] +00:37:18 [ 7] [ 10] [0319053625] +00:37:18 [ 11] [ 6] [153198] +00:37:18 [ 70] [ 3] [301] +00:37:18 ============================================================================ +00:37:18 + + +waiting on router queue for slot.... +00:37:18 Sending to : +00:37:18 ============================================================================ +00:37:18 ============================================================================ +00:37:18 Slot Id : <81> +00:37:18 Transaction Type : RESPONSE +00:37:18 Received From : +00:37:18 ============================================================================ +00:37:18 FNo. Len. Field Value +00:37:18 ============================================================================ +00:37:18 [ 1] [ 4] [0810] +00:37:18 [ 7] [ 10] [0319053625] +00:37:18 [ 11] [ 6] [153198] +00:37:18 [ 39] [ 2] [00] +00:37:18 [ 70] [ 3] [301] +00:37:18 ============================================================================ +00:37:18 Calculate Source COMM Id = 2 +00:37:18 ============================================================================ +00:37:18 + + +waiting on router queue for slot.... +00:37:29 ============================================================================ +00:37:29 Slot Id : <24> +00:37:29 Transaction Type : REQUEST +00:37:29 Received From : +00:37:29 ============================================================================ +00:37:29 FNo. Len. Field Value +00:37:29 ============================================================================ +00:37:29 [ 1] [ 4] [0800] +00:37:29 [ 7] [ 10] [0319053636] +00:37:29 [ 11] [ 6] [153199] +00:37:29 [ 70] [ 3] [301] +00:37:29 ============================================================================ +00:37:29 + + +waiting on router queue for slot.... +00:37:29 Sending to : +00:37:29 ============================================================================ +00:37:29 ============================================================================ +00:37:29 Slot Id : <24> +00:37:29 Transaction Type : RESPONSE +00:37:29 Received From : +00:37:29 ============================================================================ +00:37:29 FNo. Len. Field Value +00:37:29 ============================================================================ +00:37:29 [ 1] [ 4] [0810] +00:37:29 [ 7] [ 10] [0319053636] +00:37:29 [ 11] [ 6] [153199] +00:37:29 [ 39] [ 2] [00] +00:37:29 [ 70] [ 3] [301] +00:37:29 ============================================================================ +00:37:29 Calculate Source COMM Id = 2 +00:37:29 ============================================================================ +00:37:29 + + +waiting on router queue for slot.... +00:37:40 ============================================================================ +00:37:40 Slot Id : <34> +00:37:40 Transaction Type : REQUEST +00:37:40 Received From : +00:37:40 ============================================================================ +00:37:40 FNo. Len. Field Value +00:37:40 ============================================================================ +00:37:40 [ 1] [ 4] [0800] +00:37:40 [ 7] [ 10] [0319053647] +00:37:40 [ 11] [ 6] [153200] +00:37:40 [ 70] [ 3] [301] +00:37:40 ============================================================================ +00:37:40 + + +waiting on router queue for slot.... +00:37:40 Sending to : +00:37:40 ============================================================================ +00:37:40 ============================================================================ +00:37:40 Slot Id : <34> +00:37:40 Transaction Type : RESPONSE +00:37:40 Received From : +00:37:40 ============================================================================ +00:37:40 FNo. Len. Field Value +00:37:40 ============================================================================ +00:37:40 [ 1] [ 4] [0810] +00:37:40 [ 7] [ 10] [0319053647] +00:37:40 [ 11] [ 6] [153200] +00:37:40 [ 39] [ 2] [00] +00:37:40 [ 70] [ 3] [301] +00:37:40 ============================================================================ +00:37:40 Calculate Source COMM Id = 2 +00:37:40 ============================================================================ +00:37:40 + + +waiting on router queue for slot.... +00:37:44 ============================================================================ +00:37:44 Slot Id : <57> +00:37:44 Transaction Type : REQUEST +00:37:44 Received From : +00:37:44 ============================================================================ +00:37:44 FNo. Len. Field Value +00:37:44 ============================================================================ +00:37:44 [ 1] [ 4] [0800] +00:37:44 [ 7] [ 10] [0320074931] +00:37:44 [ 11] [ 6] [004931] +00:37:44 [ 37] [ 12] [57900004931] +00:37:44 [ 70] [ 3] [301] +00:37:44 ============================================================================ +00:37:44 + + +waiting on router queue for slot.... +00:37:44 Sending to : +00:37:44 ============================================================================ +00:37:44 ============================================================================ +00:37:44 Slot Id : <57> +00:37:44 Transaction Type : RESPONSE +00:37:44 Received From : +00:37:44 ============================================================================ +00:37:44 FNo. Len. Field Value +00:37:44 ============================================================================ +00:37:44 [ 1] [ 4] [0810] +00:37:44 [ 7] [ 10] [0320074931] +00:37:44 [ 11] [ 6] [004931] +00:37:44 [ 37] [ 12] [579000049310] +00:37:44 [ 39] [ 2] [00] +00:37:44 [ 70] [ 3] [810] +00:37:44 ============================================================================ +00:37:44 Calculate Source COMM Id = 6 +00:37:44 ============================================================================ +00:37:44 + + +waiting on router queue for slot.... +00:37:47 ============================================================================ +00:37:47 Slot Id : <86> +00:37:47 Transaction Type : REQUEST +00:37:47 Received From : +00:37:47 ============================================================================ +00:37:47 FNo. Len. Field Value +00:37:47 ============================================================================ +00:37:47 [ 1] [ 4] [0800] +00:37:47 [ 2] [ 5] [02531] +00:37:47 [ 3] [ 6] [579008] +00:37:47 [ 7] [ 10] [0319173747] +00:37:47 [ 11] [ 6] [806448] +00:37:47 [ 15] [ 10] [0319173747] +00:37:47 [ 37] [ 11] [57900806448] +00:37:47 [ 70] [ 3] [001] +00:37:47 ============================================================================ +00:37:47 + + +waiting on router queue for slot.... +00:37:47 ============================================================================ +00:37:47 Slot Id : <86> +00:37:47 Transaction Type : RESPONSE +00:37:47 Received From : +00:37:47 ============================================================================ +00:37:47 FNo. Len. Field Value +00:37:47 ============================================================================ +00:37:47 [ 1] [ 4] [0810] +00:37:47 [ 7] [ 10] [0319173747] +00:37:47 [ 11] [ 6] [806448] +00:37:47 [ 15] [ 4] [0319] +00:37:47 [ 37] [ 12] [57900806448] +00:37:47 [ 39] [ 2] [00] +00:37:47 [ 70] [ 3] [001] +00:37:47 ============================================================================ +00:37:47 Sending to : +00:37:47 ============================================================================ +00:37:47 + + +waiting on router queue for slot.... +00:37:51 ============================================================================ +00:37:51 Slot Id : <42> +00:37:51 Transaction Type : REQUEST +00:37:51 Received From : +00:37:51 ============================================================================ +00:37:51 FNo. Len. Field Value +00:37:51 ============================================================================ +00:37:51 [ 1] [ 4] [0800] +00:37:51 [ 7] [ 10] [0319053658] +00:37:51 [ 11] [ 6] [153201] +00:37:51 [ 70] [ 3] [301] +00:37:51 ============================================================================ +00:37:51 + + +waiting on router queue for slot.... +00:37:51 Sending to : +00:37:51 ============================================================================ +00:37:51 ============================================================================ +00:37:51 Slot Id : <42> +00:37:51 Transaction Type : RESPONSE +00:37:51 Received From : +00:37:51 ============================================================================ +00:37:51 FNo. Len. Field Value +00:37:51 ============================================================================ +00:37:51 [ 1] [ 4] [0810] +00:37:51 [ 7] [ 10] [0319053658] +00:37:51 [ 11] [ 6] [153201] +00:37:51 [ 39] [ 2] [00] +00:37:51 [ 70] [ 3] [301] +00:37:51 ============================================================================ +00:37:51 Calculate Source COMM Id = 2 +00:37:51 ============================================================================ +00:37:51 + + +waiting on router queue for slot.... +00:38:03 ============================================================================ +00:38:03 Slot Id : <88> +00:38:03 Transaction Type : REQUEST +00:38:03 Received From : +00:38:03 ============================================================================ +00:38:03 FNo. Len. Field Value +00:38:03 ============================================================================ +00:38:03 [ 1] [ 4] [0800] +00:38:03 [ 7] [ 10] [0319053709] +00:38:03 [ 11] [ 6] [153202] +00:38:03 [ 70] [ 3] [301] +00:38:03 ============================================================================ +00:38:03 + + +waiting on router queue for slot.... +00:38:03 Sending to : +00:38:03 ============================================================================ +00:38:03 ============================================================================ +00:38:03 Slot Id : <88> +00:38:03 Transaction Type : RESPONSE +00:38:03 Received From : +00:38:03 ============================================================================ +00:38:03 FNo. Len. Field Value +00:38:03 ============================================================================ +00:38:03 [ 1] [ 4] [0810] +00:38:03 [ 7] [ 10] [0319053709] +00:38:03 [ 11] [ 6] [153202] +00:38:03 [ 39] [ 2] [00] +00:38:03 [ 70] [ 3] [301] +00:38:03 ============================================================================ +00:38:03 Calculate Source COMM Id = 2 +00:38:03 ============================================================================ +00:38:03 + + +waiting on router queue for slot.... +00:38:17 ============================================================================ +00:38:17 Slot Id : <49> +00:38:17 Transaction Type : REQUEST +00:38:17 Received From : +00:38:17 ============================================================================ +00:38:17 FNo. Len. Field Value +00:38:17 ============================================================================ +00:38:17 [ 1] [ 4] [0800] +00:38:17 [ 7] [ 10] [0319053724] +00:38:17 [ 11] [ 6] [153203] +00:38:17 [ 70] [ 3] [301] +00:38:17 ============================================================================ +00:38:17 + + +waiting on router queue for slot.... +00:38:17 Sending to : +00:38:17 ============================================================================ +00:38:17 ============================================================================ +00:38:17 Slot Id : <49> +00:38:17 Transaction Type : RESPONSE +00:38:17 Received From : +00:38:17 ============================================================================ +00:38:17 FNo. Len. Field Value +00:38:17 ============================================================================ +00:38:17 [ 1] [ 4] [0810] +00:38:17 [ 7] [ 10] [0319053724] +00:38:17 [ 11] [ 6] [153203] +00:38:17 [ 39] [ 2] [00] +00:38:17 [ 70] [ 3] [301] +00:38:17 ============================================================================ +00:38:17 Calculate Source COMM Id = 2 +00:38:17 ============================================================================ +00:38:17 + + +waiting on router queue for slot.... +00:38:28 ============================================================================ +00:38:28 Slot Id : <5> +00:38:28 Transaction Type : REQUEST +00:38:28 Received From : +00:38:28 ============================================================================ +00:38:28 FNo. Len. Field Value +00:38:28 ============================================================================ +00:38:28 [ 1] [ 4] [0800] +00:38:28 [ 7] [ 10] [0319053735] +00:38:28 [ 11] [ 6] [153204] +00:38:28 [ 70] [ 3] [301] +00:38:28 ============================================================================ +00:38:28 + + +waiting on router queue for slot.... +00:38:28 Sending to : +00:38:28 ============================================================================ +00:38:28 ============================================================================ +00:38:28 Slot Id : <5> +00:38:28 Transaction Type : RESPONSE +00:38:28 Received From : +00:38:28 ============================================================================ +00:38:28 FNo. Len. Field Value +00:38:28 ============================================================================ +00:38:28 [ 1] [ 4] [0810] +00:38:28 [ 7] [ 10] [0319053735] +00:38:28 [ 11] [ 6] [153204] +00:38:28 [ 39] [ 2] [00] +00:38:28 [ 70] [ 3] [301] +00:38:28 ============================================================================ +00:38:28 Calculate Source COMM Id = 2 +00:38:28 ============================================================================ +00:38:28 + + +waiting on router queue for slot.... +00:38:41 ============================================================================ +00:38:41 Slot Id : <89> +00:38:41 Transaction Type : REQUEST +00:38:41 Received From : +00:38:41 ============================================================================ +00:38:41 FNo. Len. Field Value +00:38:41 ============================================================================ +00:38:41 [ 1] [ 4] [0800] +00:38:41 [ 7] [ 10] [0319053748] +00:38:41 [ 11] [ 6] [153205] +00:38:41 [ 70] [ 3] [301] +00:38:41 ============================================================================ +00:38:41 + + +waiting on router queue for slot.... +00:38:41 Sending to : +00:38:41 ============================================================================ +00:38:41 ============================================================================ +00:38:41 Slot Id : <89> +00:38:41 Transaction Type : RESPONSE +00:38:41 Received From : +00:38:41 ============================================================================ +00:38:41 FNo. Len. Field Value +00:38:41 ============================================================================ +00:38:41 [ 1] [ 4] [0810] +00:38:41 [ 7] [ 10] [0319053748] +00:38:41 [ 11] [ 6] [153205] +00:38:41 [ 39] [ 2] [00] +00:38:41 [ 70] [ 3] [301] +00:38:41 ============================================================================ +00:38:41 Calculate Source COMM Id = 2 +00:38:41 ============================================================================ +00:38:41 + + +waiting on router queue for slot.... +00:38:49 ============================================================================ +00:38:49 Slot Id : <79> +00:38:49 Transaction Type : REQUEST +00:38:49 Received From : +00:38:49 ============================================================================ +00:38:49 FNo. Len. Field Value +00:38:49 ============================================================================ +00:38:49 [ 1] [ 4] [0800] +00:38:49 [ 7] [ 10] [0320075036] +00:38:49 [ 11] [ 6] [005036] +00:38:49 [ 37] [ 12] [57900005036] +00:38:49 [ 70] [ 3] [301] +00:38:49 ============================================================================ +00:38:49 + + +waiting on router queue for slot.... +00:38:49 Sending to : +00:38:49 ============================================================================ +00:38:49 ============================================================================ +00:38:49 Slot Id : <79> +00:38:49 Transaction Type : RESPONSE +00:38:49 Received From : +00:38:49 ============================================================================ +00:38:49 FNo. Len. Field Value +00:38:49 ============================================================================ +00:38:49 [ 1] [ 4] [0810] +00:38:49 [ 7] [ 10] [0320075036] +00:38:49 [ 11] [ 6] [005036] +00:38:49 [ 37] [ 12] [579000050360] +00:38:49 [ 39] [ 2] [00] +00:38:49 [ 70] [ 3] [810] +00:38:49 ============================================================================ +00:38:49 Calculate Source COMM Id = 6 +00:38:49 ============================================================================ +00:38:49 + + +waiting on router queue for slot.... +00:38:49 ============================================================================ +00:38:49 Slot Id : <59> +00:38:49 Transaction Type : REQUEST +00:38:49 Received From : +00:38:49 ============================================================================ +00:38:49 FNo. Len. Field Value +00:38:49 ============================================================================ +00:38:49 [ 1] [ 4] [0800] +00:38:49 [ 2] [ 5] [02531] +00:38:49 [ 3] [ 6] [579008] +00:38:49 [ 7] [ 10] [0319173849] +00:38:49 [ 11] [ 6] [806449] +00:38:49 [ 15] [ 10] [0319173849] +00:38:49 [ 37] [ 11] [57900806449] +00:38:49 [ 70] [ 3] [001] +00:38:49 ============================================================================ +00:38:49 + + +waiting on router queue for slot.... +00:38:49 ============================================================================ +00:38:49 Slot Id : <59> +00:38:49 Transaction Type : RESPONSE +00:38:49 Received From : +00:38:49 ============================================================================ +00:38:49 FNo. Len. Field Value +00:38:49 ============================================================================ +00:38:49 [ 1] [ 4] [0810] +00:38:49 [ 7] [ 10] [0319173849] +00:38:49 [ 11] [ 6] [806449] +00:38:49 [ 15] [ 4] [0319] +00:38:49 [ 37] [ 12] [57900806449] +00:38:49 [ 39] [ 2] [00] +00:38:49 [ 70] [ 3] [001] +00:38:49 ============================================================================ +00:38:49 Sending to : +00:38:49 ============================================================================ +00:38:49 + + +waiting on router queue for slot.... +00:38:54 ============================================================================ +00:38:54 Slot Id : <84> +00:38:54 Transaction Type : REQUEST +00:38:54 Received From : +00:38:54 ============================================================================ +00:38:54 FNo. Len. Field Value +00:38:54 ============================================================================ +00:38:54 [ 1] [ 4] [0800] +00:38:54 [ 7] [ 10] [0319053801] +00:38:54 [ 11] [ 6] [153206] +00:38:54 [ 70] [ 3] [301] +00:38:54 ============================================================================ +00:38:54 + + +waiting on router queue for slot.... +00:38:54 Sending to : +00:38:54 ============================================================================ +00:38:54 ============================================================================ +00:38:54 Slot Id : <84> +00:38:54 Transaction Type : RESPONSE +00:38:54 Received From : +00:38:54 ============================================================================ +00:38:54 FNo. Len. Field Value +00:38:54 ============================================================================ +00:38:54 [ 1] [ 4] [0810] +00:38:54 [ 7] [ 10] [0319053801] +00:38:54 [ 11] [ 6] [153206] +00:38:54 [ 39] [ 2] [00] +00:38:54 [ 70] [ 3] [301] +00:38:54 ============================================================================ +00:38:54 Calculate Source COMM Id = 2 +00:38:54 ============================================================================ +00:38:54 + + +waiting on router queue for slot.... +00:39:09 ============================================================================ +00:39:09 Slot Id : <62> +00:39:09 Transaction Type : REQUEST +00:39:09 Received From : +00:39:09 ============================================================================ +00:39:09 FNo. Len. Field Value +00:39:09 ============================================================================ +00:39:09 [ 1] [ 4] [0800] +00:39:09 [ 7] [ 10] [0319053816] +00:39:09 [ 11] [ 6] [153207] +00:39:09 [ 70] [ 3] [301] +00:39:09 ============================================================================ +00:39:09 + + +waiting on router queue for slot.... +00:39:09 Sending to : +00:39:09 ============================================================================ +00:39:09 ============================================================================ +00:39:09 Slot Id : <62> +00:39:09 Transaction Type : RESPONSE +00:39:09 Received From : +00:39:09 ============================================================================ +00:39:09 FNo. Len. Field Value +00:39:09 ============================================================================ +00:39:09 [ 1] [ 4] [0810] +00:39:09 [ 7] [ 10] [0319053816] +00:39:09 [ 11] [ 6] [153207] +00:39:09 [ 39] [ 2] [00] +00:39:09 [ 70] [ 3] [301] +00:39:09 ============================================================================ +00:39:09 Calculate Source COMM Id = 2 +00:39:09 ============================================================================ +00:39:09 + + +waiting on router queue for slot.... +00:39:21 ============================================================================ +00:39:21 Slot Id : <67> +00:39:21 Transaction Type : REQUEST +00:39:21 Received From : +00:39:21 ============================================================================ +00:39:21 FNo. Len. Field Value +00:39:21 ============================================================================ +00:39:21 [ 1] [ 4] [0800] +00:39:21 [ 7] [ 10] [0319053828] +00:39:21 [ 11] [ 6] [153208] +00:39:21 [ 70] [ 3] [301] +00:39:21 ============================================================================ +00:39:21 + + +waiting on router queue for slot.... +00:39:21 Sending to : +00:39:21 ============================================================================ +00:39:21 ============================================================================ +00:39:21 Slot Id : <67> +00:39:21 Transaction Type : RESPONSE +00:39:21 Received From : +00:39:21 ============================================================================ +00:39:21 FNo. Len. Field Value +00:39:21 ============================================================================ +00:39:21 [ 1] [ 4] [0810] +00:39:21 [ 7] [ 10] [0319053828] +00:39:21 [ 11] [ 6] [153208] +00:39:21 [ 39] [ 2] [00] +00:39:21 [ 70] [ 3] [301] +00:39:21 ============================================================================ +00:39:21 Calculate Source COMM Id = 2 +00:39:21 ============================================================================ +00:39:21 + + +waiting on router queue for slot.... +00:39:24 ============================================================================ +00:39:24 Slot Id : <99> +00:39:24 Transaction Type : REQUEST +00:39:24 Received From : +00:39:24 ============================================================================ +00:39:24 FNo. Len. Field Value +00:39:24 ============================================================================ +00:39:24 [ 1] [ 4] [0800] +00:39:24 [ 7] [ 10] [0319173920] +00:39:24 [ 11] [ 6] [027821] +00:39:24 [ 37] [ 12] [507900027821] +00:39:24 [ 70] [ 3] [001] +00:39:24 ============================================================================ +00:39:24 + + +waiting on router queue for slot.... +00:39:24 Sending to : +00:39:24 ============================================================================ +00:39:24 ============================================================================ +00:39:24 Slot Id : <99> +00:39:24 Transaction Type : RESPONSE +00:39:24 Received From : +00:39:24 ============================================================================ +00:39:24 FNo. Len. Field Value +00:39:24 ============================================================================ +00:39:24 [ 1] [ 4] [0810] +00:39:24 [ 7] [ 10] [0319173920] +00:39:24 [ 11] [ 6] [027821] +00:39:24 [ 37] [ 12] [507900027821] +00:39:24 [ 39] [ 2] [00] +00:39:24 [ 70] [ 3] [001] +00:39:24 ============================================================================ +00:39:24 Calculate Source COMM Id = 0 +00:39:24 ============================================================================ +00:39:24 + + +waiting on router queue for slot.... +00:39:32 ============================================================================ +00:39:32 Slot Id : <39> +00:39:32 Transaction Type : REQUEST +00:39:32 Received From : +00:39:32 ============================================================================ +00:39:32 FNo. Len. Field Value +00:39:32 ============================================================================ +00:39:32 [ 1] [ 4] [0800] +00:39:32 [ 7] [ 10] [0319053839] +00:39:32 [ 11] [ 6] [153209] +00:39:32 [ 70] [ 3] [301] +00:39:32 ============================================================================ +00:39:32 + + +waiting on router queue for slot.... +00:39:32 Sending to : +00:39:32 ============================================================================ +00:39:32 ============================================================================ +00:39:32 Slot Id : <39> +00:39:32 Transaction Type : RESPONSE +00:39:32 Received From : +00:39:32 ============================================================================ +00:39:32 FNo. Len. Field Value +00:39:32 ============================================================================ +00:39:32 [ 1] [ 4] [0810] +00:39:32 [ 7] [ 10] [0319053839] +00:39:32 [ 11] [ 6] [153209] +00:39:32 [ 39] [ 2] [00] +00:39:32 [ 70] [ 3] [301] +00:39:32 ============================================================================ +00:39:32 Calculate Source COMM Id = 2 +00:39:32 ============================================================================ +00:39:32 + + +waiting on router queue for slot.... +00:39:32 ============================================================================ +00:39:32 Slot Id : <51> +00:39:32 Transaction Type : REQUEST +00:39:32 Received From : +00:39:32 ============================================================================ +00:39:32 FNo. Len. Field Value +00:39:32 ============================================================================ +00:39:32 [ 1] [ 4] [0800] +00:39:32 [ 7] [ 10] [0320003919] +00:39:32 [ 11] [ 6] [005979] +00:39:32 [ 37] [ 12] [507900005979] +00:39:32 [ 70] [ 3] [ ] +00:39:32 ============================================================================ +00:39:32 + + +waiting on router queue for slot.... +00:39:32 Sending to : +00:39:32 ============================================================================ +00:39:32 ============================================================================ +00:39:32 Slot Id : <51> +00:39:32 Transaction Type : RESPONSE +00:39:32 Received From : +00:39:32 ============================================================================ +00:39:32 FNo. Len. Field Value +00:39:32 ============================================================================ +00:39:32 [ 1] [ 4] [0810] +00:39:32 [ 7] [ 10] [0320003919] +00:39:32 [ 11] [ 6] [005979] +00:39:32 [ 37] [ 12] [507900005979] +00:39:32 [ 39] [ 2] [91] +00:39:32 [ 70] [ 3] [ ] +00:39:32 ============================================================================ +00:39:32 Calculate Source COMM Id = 3 +00:39:32 ============================================================================ +00:39:32 + + +waiting on router queue for slot.... +00:39:47 ============================================================================ +00:39:47 Slot Id : <82> +00:39:47 Transaction Type : REQUEST +00:39:47 Received From : +00:39:47 ============================================================================ +00:39:47 FNo. Len. Field Value +00:39:47 ============================================================================ +00:39:47 [ 1] [ 4] [0800] +00:39:47 [ 7] [ 10] [0319053855] +00:39:47 [ 11] [ 6] [153210] +00:39:47 [ 70] [ 3] [301] +00:39:47 ============================================================================ +00:39:47 + + +waiting on router queue for slot.... +00:39:47 Sending to : +00:39:47 ============================================================================ +00:39:47 ============================================================================ +00:39:47 Slot Id : <82> +00:39:47 Transaction Type : RESPONSE +00:39:47 Received From : +00:39:47 ============================================================================ +00:39:47 FNo. Len. Field Value +00:39:47 ============================================================================ +00:39:47 [ 1] [ 4] [0810] +00:39:47 [ 7] [ 10] [0319053855] +00:39:47 [ 11] [ 6] [153210] +00:39:47 [ 39] [ 2] [00] +00:39:47 [ 70] [ 3] [301] +00:39:47 ============================================================================ +00:39:47 Calculate Source COMM Id = 2 +00:39:47 ============================================================================ +00:39:47 + + +waiting on router queue for slot.... +00:39:51 ============================================================================ +00:39:51 Slot Id : <64> +00:39:51 Transaction Type : REQUEST +00:39:51 Received From : +00:39:51 ============================================================================ +00:39:51 FNo. Len. Field Value +00:39:51 ============================================================================ +00:39:51 [ 1] [ 4] [0800] +00:39:51 [ 2] [ 5] [02531] +00:39:51 [ 3] [ 6] [579008] +00:39:51 [ 7] [ 10] [0319173951] +00:39:51 [ 11] [ 6] [806450] +00:39:51 [ 15] [ 10] [0319173951] +00:39:51 [ 37] [ 11] [57900806450] +00:39:51 [ 70] [ 3] [001] +00:39:51 ============================================================================ +00:39:51 + + +waiting on router queue for slot.... +00:39:51 ============================================================================ +00:39:51 Slot Id : <64> +00:39:51 Transaction Type : RESPONSE +00:39:51 Received From : +00:39:51 ============================================================================ +00:39:51 FNo. Len. Field Value +00:39:51 ============================================================================ +00:39:51 [ 1] [ 4] [0810] +00:39:51 [ 7] [ 10] [0319173951] +00:39:51 [ 11] [ 6] [806450] +00:39:51 [ 15] [ 4] [0319] +00:39:51 [ 37] [ 12] [57900806450] +00:39:51 [ 39] [ 2] [00] +00:39:51 [ 70] [ 3] [001] +00:39:51 ============================================================================ +00:39:51 Sending to : +00:39:51 ============================================================================ +00:39:51 + + +waiting on router queue for slot.... +00:39:54 ============================================================================ +00:39:54 Slot Id : <93> +00:39:54 Transaction Type : REQUEST +00:39:54 Received From : +00:39:54 ============================================================================ +00:39:54 FNo. Len. Field Value +00:39:54 ============================================================================ +00:39:54 [ 1] [ 4] [0800] +00:39:54 [ 7] [ 10] [0320075141] +00:39:54 [ 11] [ 6] [005141] +00:39:54 [ 37] [ 12] [57900005141] +00:39:54 [ 70] [ 3] [301] +00:39:54 ============================================================================ +00:39:54 + + +waiting on router queue for slot.... +00:39:54 Sending to : +00:39:54 ============================================================================ +00:39:54 ============================================================================ +00:39:54 Slot Id : <93> +00:39:54 Transaction Type : RESPONSE +00:39:54 Received From : +00:39:54 ============================================================================ +00:39:54 FNo. Len. Field Value +00:39:54 ============================================================================ +00:39:54 [ 1] [ 4] [0810] +00:39:54 [ 7] [ 10] [0320075141] +00:39:54 [ 11] [ 6] [005141] +00:39:54 [ 37] [ 12] [579000051410] +00:39:54 [ 39] [ 2] [00] +00:39:54 [ 70] [ 3] [810] +00:39:54 ============================================================================ +00:39:54 Calculate Source COMM Id = 6 +00:39:54 ============================================================================ +00:39:54 + + +waiting on router queue for slot.... +00:39:56 ============================================================================ +00:39:56 Slot Id : <56> +00:39:56 Transaction Type : REQUEST +00:39:56 Received From : +00:39:56 ============================================================================ +00:39:56 FNo. Len. Field Value +00:39:56 ============================================================================ +00:39:56 [ 1] [ 4] [0800] +00:39:56 [ 7] [ 10] [0319174742] +00:39:56 [ 11] [ 6] [069260] +00:39:56 [ 37] [ 12] [57900069260] +00:39:56 [ 70] [ 3] [301] +00:39:56 ============================================================================ +00:39:56 + + +waiting on router queue for slot.... +00:39:56 Sending to : +00:39:56 ============================================================================ +00:39:56 ============================================================================ +00:39:56 Slot Id : <56> +00:39:56 Transaction Type : RESPONSE +00:39:56 Received From : +00:39:56 ============================================================================ +00:39:56 FNo. Len. Field Value +00:39:56 ============================================================================ +00:39:56 [ 1] [ 4] [0810] +00:39:56 [ 7] [ 10] [0319174742] +00:39:56 [ 11] [ 6] [069260] +00:39:56 [ 37] [ 12] [579000692600] +00:39:56 [ 39] [ 2] [00] +00:39:56 [ 70] [ 3] [810] +00:39:56 ============================================================================ +00:39:56 Calculate Source COMM Id = 1 +00:39:56 ============================================================================ +00:39:56 + + +waiting on router queue for slot.... +00:39:58 ============================================================================ +00:39:58 Slot Id : <91> +00:39:58 Transaction Type : REQUEST +00:39:58 Received From : +00:39:58 ============================================================================ +00:39:58 FNo. Len. Field Value +00:39:58 ============================================================================ +00:39:58 [ 1] [ 4] [0800] +00:39:58 [ 7] [ 10] [0319053905] +00:39:58 [ 11] [ 6] [153211] +00:39:58 [ 70] [ 3] [301] +00:39:58 ============================================================================ +00:39:58 + + +waiting on router queue for slot.... +00:39:58 Sending to : +00:39:58 ============================================================================ +00:39:58 ============================================================================ +00:39:58 Slot Id : <91> +00:39:58 Transaction Type : RESPONSE +00:39:58 Received From : +00:39:58 ============================================================================ +00:39:58 FNo. Len. Field Value +00:39:58 ============================================================================ +00:39:58 [ 1] [ 4] [0810] +00:39:58 [ 7] [ 10] [0319053905] +00:39:58 [ 11] [ 6] [153211] +00:39:58 [ 39] [ 2] [00] +00:39:58 [ 70] [ 3] [301] +00:39:58 ============================================================================ +00:39:58 Calculate Source COMM Id = 2 +00:39:58 ============================================================================ +00:39:58 + + +waiting on router queue for slot.... +00:40:08 ============================================================================ +00:40:08 Slot Id : <100> +00:40:08 Transaction Type : REQUEST +00:40:08 Received From : +00:40:08 ============================================================================ +00:40:08 FNo. Len. Field Value +00:40:08 ============================================================================ +00:40:08 [ 1] [ 4] [0800] +00:40:08 [ 7] [ 10] [0319053916] +00:40:08 [ 11] [ 6] [153212] +00:40:08 [ 70] [ 3] [301] +00:40:08 ============================================================================ +00:40:08 + + +waiting on router queue for slot.... +00:40:08 Sending to : +00:40:08 ============================================================================ +00:40:08 ============================================================================ +00:40:08 Slot Id : <100> +00:40:08 Transaction Type : RESPONSE +00:40:08 Received From : +00:40:08 ============================================================================ +00:40:08 FNo. Len. Field Value +00:40:08 ============================================================================ +00:40:08 [ 1] [ 4] [0810] +00:40:08 [ 7] [ 10] [0319053916] +00:40:08 [ 11] [ 6] [153212] +00:40:08 [ 39] [ 2] [00] +00:40:08 [ 70] [ 3] [301] +00:40:08 ============================================================================ +00:40:08 Calculate Source COMM Id = 2 +00:40:08 ============================================================================ +00:40:08 + + +waiting on router queue for slot.... +00:40:19 ============================================================================ +00:40:19 Slot Id : <65> +00:40:19 Transaction Type : REQUEST +00:40:19 Received From : +00:40:19 ============================================================================ +00:40:19 FNo. Len. Field Value +00:40:19 ============================================================================ +00:40:19 [ 1] [ 4] [0800] +00:40:19 [ 7] [ 10] [0319053926] +00:40:19 [ 11] [ 6] [153213] +00:40:19 [ 70] [ 3] [301] +00:40:19 ============================================================================ +00:40:19 + + +waiting on router queue for slot.... +00:40:19 Sending to : +00:40:19 ============================================================================ +00:40:19 ============================================================================ +00:40:19 Slot Id : <65> +00:40:19 Transaction Type : RESPONSE +00:40:19 Received From : +00:40:19 ============================================================================ +00:40:19 FNo. Len. Field Value +00:40:19 ============================================================================ +00:40:19 [ 1] [ 4] [0810] +00:40:19 [ 7] [ 10] [0319053926] +00:40:19 [ 11] [ 6] [153213] +00:40:19 [ 39] [ 2] [00] +00:40:19 [ 70] [ 3] [301] +00:40:19 ============================================================================ +00:40:19 Calculate Source COMM Id = 2 +00:40:19 ============================================================================ +00:40:19 + + +waiting on router queue for slot.... +00:40:34 ============================================================================ +00:40:34 Slot Id : <77> +00:40:34 Transaction Type : REQUEST +00:40:34 Received From : +00:40:34 ============================================================================ +00:40:34 FNo. Len. Field Value +00:40:34 ============================================================================ +00:40:34 [ 1] [ 4] [0800] +00:40:34 [ 7] [ 10] [0319053942] +00:40:34 [ 11] [ 6] [153214] +00:40:34 [ 70] [ 3] [301] +00:40:34 ============================================================================ +00:40:34 + + +waiting on router queue for slot.... +00:40:34 Sending to : +00:40:34 ============================================================================ +00:40:34 ============================================================================ +00:40:34 Slot Id : <77> +00:40:34 Transaction Type : RESPONSE +00:40:34 Received From : +00:40:34 ============================================================================ +00:40:34 FNo. Len. Field Value +00:40:34 ============================================================================ +00:40:34 [ 1] [ 4] [0810] +00:40:34 [ 7] [ 10] [0319053942] +00:40:34 [ 11] [ 6] [153214] +00:40:34 [ 39] [ 2] [00] +00:40:34 [ 70] [ 3] [301] +00:40:34 ============================================================================ +00:40:34 Calculate Source COMM Id = 2 +00:40:34 ============================================================================ +00:40:34 + + +waiting on router queue for slot.... +00:40:50 ============================================================================ +00:40:50 Slot Id : <72> +00:40:50 Transaction Type : REQUEST +00:40:50 Received From : +00:40:50 ============================================================================ +00:40:50 FNo. Len. Field Value +00:40:50 ============================================================================ +00:40:50 [ 1] [ 4] [0800] +00:40:50 [ 7] [ 10] [0319053957] +00:40:50 [ 11] [ 6] [153215] +00:40:50 [ 70] [ 3] [301] +00:40:50 ============================================================================ +00:40:50 + + +waiting on router queue for slot.... +00:40:50 Sending to : +00:40:50 ============================================================================ +00:40:50 ============================================================================ +00:40:50 Slot Id : <72> +00:40:50 Transaction Type : RESPONSE +00:40:50 Received From : +00:40:50 ============================================================================ +00:40:50 FNo. Len. Field Value +00:40:50 ============================================================================ +00:40:50 [ 1] [ 4] [0810] +00:40:50 [ 7] [ 10] [0319053957] +00:40:50 [ 11] [ 6] [153215] +00:40:50 [ 39] [ 2] [00] +00:40:50 [ 70] [ 3] [301] +00:40:50 ============================================================================ +00:40:50 Calculate Source COMM Id = 2 +00:40:50 ============================================================================ +00:40:50 + + +waiting on router queue for slot.... +00:40:53 ============================================================================ +00:40:53 Slot Id : <106> +00:40:53 Transaction Type : REQUEST +00:40:53 Received From : +00:40:53 ============================================================================ +00:40:53 FNo. Len. Field Value +00:40:53 ============================================================================ +00:40:53 [ 1] [ 4] [0800] +00:40:53 [ 2] [ 5] [02531] +00:40:53 [ 3] [ 6] [579008] +00:40:53 [ 7] [ 10] [0319174053] +00:40:53 [ 11] [ 6] [806451] +00:40:53 [ 15] [ 10] [0319174053] +00:40:53 [ 37] [ 11] [57900806451] +00:40:53 [ 70] [ 3] [001] +00:40:53 ============================================================================ +00:40:53 + + +waiting on router queue for slot.... +00:40:53 ============================================================================ +00:40:53 Slot Id : <106> +00:40:53 Transaction Type : RESPONSE +00:40:53 Received From : +00:40:53 ============================================================================ +00:40:53 FNo. Len. Field Value +00:40:53 ============================================================================ +00:40:53 [ 1] [ 4] [0810] +00:40:53 [ 7] [ 10] [0319174053] +00:40:53 [ 11] [ 6] [806451] +00:40:53 [ 15] [ 4] [0319] +00:40:53 [ 37] [ 12] [57900806451] +00:40:53 [ 39] [ 2] [00] +00:40:53 [ 70] [ 3] [001] +00:40:53 ============================================================================ +00:40:53 Sending to : +00:40:53 ============================================================================ +00:40:53 + + +waiting on router queue for slot.... +00:40:59 ============================================================================ +00:40:59 Slot Id : <76> +00:40:59 Transaction Type : REQUEST +00:40:59 Received From : +00:40:59 ============================================================================ +00:40:59 FNo. Len. Field Value +00:40:59 ============================================================================ +00:40:59 [ 1] [ 4] [0800] +00:40:59 [ 7] [ 10] [0320075246] +00:40:59 [ 11] [ 6] [005246] +00:40:59 [ 37] [ 12] [57900005246] +00:40:59 [ 70] [ 3] [301] +00:40:59 ============================================================================ +00:40:59 + + +waiting on router queue for slot.... +00:40:59 Sending to : +00:40:59 ============================================================================ +00:40:59 ============================================================================ +00:40:59 Slot Id : <76> +00:40:59 Transaction Type : RESPONSE +00:40:59 Received From : +00:40:59 ============================================================================ +00:40:59 FNo. Len. Field Value +00:40:59 ============================================================================ +00:40:59 [ 1] [ 4] [0810] +00:40:59 [ 7] [ 10] [0320075246] +00:40:59 [ 11] [ 6] [005246] +00:40:59 [ 37] [ 12] [579000052460] +00:40:59 [ 39] [ 2] [00] +00:40:59 [ 70] [ 3] [810] +00:40:59 ============================================================================ +00:40:59 Calculate Source COMM Id = 6 +00:40:59 ============================================================================ +00:40:59 + + +waiting on router queue for slot.... +00:41:02 ============================================================================ +00:41:02 Slot Id : <66> +00:41:02 Transaction Type : REQUEST +00:41:02 Received From : +00:41:02 ============================================================================ +00:41:02 FNo. Len. Field Value +00:41:02 ============================================================================ +00:41:02 [ 1] [ 4] [0800] +00:41:02 [ 7] [ 10] [0319054010] +00:41:02 [ 11] [ 6] [153216] +00:41:02 [ 70] [ 3] [301] +00:41:02 ============================================================================ +00:41:02 + + +waiting on router queue for slot.... +00:41:02 Sending to : +00:41:02 ============================================================================ +00:41:02 ============================================================================ +00:41:02 Slot Id : <66> +00:41:02 Transaction Type : RESPONSE +00:41:02 Received From : +00:41:02 ============================================================================ +00:41:02 FNo. Len. Field Value +00:41:02 ============================================================================ +00:41:02 [ 1] [ 4] [0810] +00:41:02 [ 7] [ 10] [0319054010] +00:41:02 [ 11] [ 6] [153216] +00:41:02 [ 39] [ 2] [00] +00:41:02 [ 70] [ 3] [301] +00:41:02 ============================================================================ +00:41:02 Calculate Source COMM Id = 2 +00:41:02 ============================================================================ +00:41:02 + + +waiting on router queue for slot.... +00:41:18 ============================================================================ +00:41:18 Slot Id : <90> +00:41:18 Transaction Type : REQUEST +00:41:18 Received From : +00:41:18 ============================================================================ +00:41:18 FNo. Len. Field Value +00:41:18 ============================================================================ +00:41:18 [ 1] [ 4] [0800] +00:41:18 [ 7] [ 10] [0319054025] +00:41:18 [ 11] [ 6] [153217] +00:41:18 [ 70] [ 3] [301] +00:41:18 ============================================================================ +00:41:18 + + +waiting on router queue for slot.... +00:41:18 Sending to : +00:41:18 ============================================================================ +00:41:18 ============================================================================ +00:41:18 Slot Id : <90> +00:41:18 Transaction Type : RESPONSE +00:41:18 Received From : +00:41:18 ============================================================================ +00:41:18 FNo. Len. Field Value +00:41:18 ============================================================================ +00:41:18 [ 1] [ 4] [0810] +00:41:18 [ 7] [ 10] [0319054025] +00:41:18 [ 11] [ 6] [153217] +00:41:18 [ 39] [ 2] [00] +00:41:18 [ 70] [ 3] [301] +00:41:18 ============================================================================ +00:41:18 Calculate Source COMM Id = 2 +00:41:18 ============================================================================ +00:41:18 + + +waiting on router queue for slot.... +00:41:21 ============================================================================ +00:41:21 Slot Id : <114> +00:41:21 Transaction Type : REQUEST +00:41:21 Received From : +00:41:21 ============================================================================ +00:41:21 FNo. Len. Field Value +00:41:21 ============================================================================ +00:41:21 [ 1] [ 4] [0800] +00:41:21 [ 7] [ 10] [0319173912] +00:41:21 [ 11] [ 6] [023729] +00:41:21 [ 37] [ 12] [57900023729] +00:41:21 [ 70] [ 3] [301] +00:41:21 ============================================================================ +00:41:21 + + +waiting on router queue for slot.... +00:41:21 Sending to : +00:41:21 ============================================================================ +00:41:21 ============================================================================ +00:41:21 Slot Id : <114> +00:41:21 Transaction Type : RESPONSE +00:41:21 Received From : +00:41:21 ============================================================================ +00:41:21 FNo. Len. Field Value +00:41:21 ============================================================================ +00:41:21 [ 1] [ 4] [0810] +00:41:21 [ 7] [ 10] [0319173912] +00:41:21 [ 11] [ 6] [023729] +00:41:21 [ 37] [ 12] [579000237290] +00:41:21 [ 39] [ 2] [00] +00:41:21 [ 70] [ 3] [810] +00:41:21 ============================================================================ +00:41:21 Calculate Source COMM Id = 4 +00:41:21 ============================================================================ +00:41:21 + + +waiting on router queue for slot.... +00:41:29 ============================================================================ +00:41:29 Slot Id : <74> +00:41:29 Transaction Type : REQUEST +00:41:29 Received From : +00:41:29 ============================================================================ +00:41:29 FNo. Len. Field Value +00:41:29 ============================================================================ +00:41:29 [ 1] [ 4] [0800] +00:41:29 [ 7] [ 10] [0319054037] +00:41:29 [ 11] [ 6] [153218] +00:41:29 [ 70] [ 3] [301] +00:41:29 ============================================================================ +00:41:29 + + +waiting on router queue for slot.... +00:41:29 Sending to : +00:41:29 ============================================================================ +00:41:29 ============================================================================ +00:41:29 Slot Id : <74> +00:41:29 Transaction Type : RESPONSE +00:41:29 Received From : +00:41:29 ============================================================================ +00:41:29 FNo. Len. Field Value +00:41:29 ============================================================================ +00:41:29 [ 1] [ 4] [0810] +00:41:29 [ 7] [ 10] [0319054037] +00:41:29 [ 11] [ 6] [153218] +00:41:29 [ 39] [ 2] [00] +00:41:29 [ 70] [ 3] [301] +00:41:29 ============================================================================ +00:41:29 Calculate Source COMM Id = 2 +00:41:29 ============================================================================ +00:41:29 + + +waiting on router queue for slot.... +00:41:45 ============================================================================ +00:41:45 Slot Id : <107> +00:41:45 Transaction Type : REQUEST +00:41:45 Received From : +00:41:45 ============================================================================ +00:41:45 FNo. Len. Field Value +00:41:45 ============================================================================ +00:41:45 [ 1] [ 4] [0800] +00:41:45 [ 7] [ 10] [0319054052] +00:41:45 [ 11] [ 6] [153219] +00:41:45 [ 70] [ 3] [301] +00:41:45 ============================================================================ +00:41:45 + + +waiting on router queue for slot.... +00:41:45 Sending to : +00:41:45 ============================================================================ +00:41:45 ============================================================================ +00:41:45 Slot Id : <107> +00:41:45 Transaction Type : RESPONSE +00:41:45 Received From : +00:41:45 ============================================================================ +00:41:45 FNo. Len. Field Value +00:41:45 ============================================================================ +00:41:45 [ 1] [ 4] [0810] +00:41:45 [ 7] [ 10] [0319054052] +00:41:45 [ 11] [ 6] [153219] +00:41:45 [ 39] [ 2] [00] +00:41:45 [ 70] [ 3] [301] +00:41:45 ============================================================================ +00:41:45 Calculate Source COMM Id = 2 +00:41:45 ============================================================================ +00:41:45 + + +waiting on router queue for slot.... +00:41:55 ============================================================================ +00:41:55 Slot Id : <83> +00:41:55 Transaction Type : REQUEST +00:41:55 Received From : +00:41:55 ============================================================================ +00:41:55 FNo. Len. Field Value +00:41:55 ============================================================================ +00:41:55 [ 1] [ 4] [0800] +00:41:55 [ 2] [ 5] [02531] +00:41:55 [ 3] [ 6] [579008] +00:41:55 [ 7] [ 10] [0319174155] +00:41:55 [ 11] [ 6] [806452] +00:41:55 [ 15] [ 10] [0319174155] +00:41:55 [ 37] [ 11] [57900806452] +00:41:55 [ 70] [ 3] [001] +00:41:55 ============================================================================ +00:41:55 + + +waiting on router queue for slot.... +00:41:55 ============================================================================ +00:41:55 Slot Id : <83> +00:41:55 Transaction Type : RESPONSE +00:41:55 Received From : +00:41:55 ============================================================================ +00:41:55 FNo. Len. Field Value +00:41:55 ============================================================================ +00:41:55 [ 1] [ 4] [0810] +00:41:55 [ 7] [ 10] [0319174155] +00:41:55 [ 11] [ 6] [806452] +00:41:55 [ 15] [ 4] [0319] +00:41:55 [ 37] [ 12] [57900806452] +00:41:55 [ 39] [ 2] [00] +00:41:55 [ 70] [ 3] [001] +00:41:55 ============================================================================ +00:41:55 Sending to : +00:41:55 ============================================================================ +00:41:55 + + +waiting on router queue for slot.... +00:42:03 ============================================================================ +00:42:03 Slot Id : <92> +00:42:03 Transaction Type : REQUEST +00:42:03 Received From : +00:42:03 ============================================================================ +00:42:03 FNo. Len. Field Value +00:42:03 ============================================================================ +00:42:03 [ 1] [ 4] [0800] +00:42:03 [ 7] [ 10] [0319054108] +00:42:03 [ 11] [ 6] [153220] +00:42:03 [ 70] [ 3] [301] +00:42:03 ============================================================================ +00:42:03 + + +waiting on router queue for slot.... +00:42:03 Sending to : +00:42:03 ============================================================================ +00:42:03 ============================================================================ +00:42:03 Slot Id : <92> +00:42:03 Transaction Type : RESPONSE +00:42:03 Received From : +00:42:03 ============================================================================ +00:42:03 FNo. Len. Field Value +00:42:03 ============================================================================ +00:42:03 [ 1] [ 4] [0810] +00:42:03 [ 7] [ 10] [0319054108] +00:42:03 [ 11] [ 6] [153220] +00:42:03 [ 39] [ 2] [00] +00:42:03 [ 70] [ 3] [301] +00:42:03 ============================================================================ +00:42:03 Calculate Source COMM Id = 2 +00:42:03 ============================================================================ +00:42:03 + + +waiting on router queue for slot.... +00:42:04 ============================================================================ +00:42:04 Slot Id : <118> +00:42:04 Transaction Type : REQUEST +00:42:04 Received From : +00:42:04 ============================================================================ +00:42:04 FNo. Len. Field Value +00:42:04 ============================================================================ +00:42:04 [ 1] [ 4] [0800] +00:42:04 [ 7] [ 10] [0320075352] +00:42:04 [ 11] [ 6] [005352] +00:42:04 [ 37] [ 12] [57900005352] +00:42:04 [ 70] [ 3] [301] +00:42:04 ============================================================================ +00:42:04 + + +waiting on router queue for slot.... +00:42:04 Sending to : +00:42:04 ============================================================================ +00:42:04 ============================================================================ +00:42:04 Slot Id : <118> +00:42:04 Transaction Type : RESPONSE +00:42:04 Received From : +00:42:04 ============================================================================ +00:42:04 FNo. Len. Field Value +00:42:04 ============================================================================ +00:42:04 [ 1] [ 4] [0810] +00:42:04 [ 7] [ 10] [0320075352] +00:42:04 [ 11] [ 6] [005352] +00:42:04 [ 37] [ 12] [579000053520] +00:42:04 [ 39] [ 2] [00] +00:42:04 [ 70] [ 3] [810] +00:42:04 ============================================================================ +00:42:04 Calculate Source COMM Id = 6 +00:42:04 ============================================================================ +00:42:04 + + +waiting on router queue for slot.... +00:42:17 ============================================================================ +00:42:17 Slot Id : <121> +00:42:17 Transaction Type : REQUEST +00:42:17 Received From : +00:42:17 ============================================================================ +00:42:17 FNo. Len. Field Value +00:42:17 ============================================================================ +00:42:17 [ 1] [ 4] [0800] +00:42:17 [ 7] [ 10] [0319054125] +00:42:17 [ 11] [ 6] [153221] +00:42:17 [ 70] [ 3] [301] +00:42:17 ============================================================================ +00:42:17 + + +waiting on router queue for slot.... +00:42:17 Sending to : +00:42:17 ============================================================================ +00:42:17 ============================================================================ +00:42:17 Slot Id : <121> +00:42:17 Transaction Type : RESPONSE +00:42:17 Received From : +00:42:17 ============================================================================ +00:42:17 FNo. Len. Field Value +00:42:17 ============================================================================ +00:42:17 [ 1] [ 4] [0810] +00:42:17 [ 7] [ 10] [0319054125] +00:42:17 [ 11] [ 6] [153221] +00:42:17 [ 39] [ 2] [00] +00:42:17 [ 70] [ 3] [301] +00:42:17 ============================================================================ +00:42:17 Calculate Source COMM Id = 2 +00:42:17 ============================================================================ +00:42:17 + + +waiting on router queue for slot.... +00:42:28 ============================================================================ +00:42:28 Slot Id : <113> +00:42:28 Transaction Type : REQUEST +00:42:28 Received From : +00:42:28 ============================================================================ +00:42:28 FNo. Len. Field Value +00:42:28 ============================================================================ +00:42:28 [ 1] [ 4] [0800] +00:42:28 [ 7] [ 10] [0319054135] +00:42:28 [ 11] [ 6] [153222] +00:42:28 [ 70] [ 3] [301] +00:42:28 ============================================================================ +00:42:28 + + +waiting on router queue for slot.... +00:42:28 Sending to : +00:42:28 ============================================================================ +00:42:28 ============================================================================ +00:42:28 Slot Id : <113> +00:42:28 Transaction Type : RESPONSE +00:42:28 Received From : +00:42:28 ============================================================================ +00:42:28 FNo. Len. Field Value +00:42:28 ============================================================================ +00:42:28 [ 1] [ 4] [0810] +00:42:28 [ 7] [ 10] [0319054135] +00:42:28 [ 11] [ 6] [153222] +00:42:28 [ 39] [ 2] [00] +00:42:28 [ 70] [ 3] [301] +00:42:28 ============================================================================ +00:42:28 Calculate Source COMM Id = 2 +00:42:28 ============================================================================ +00:42:28 + + +waiting on router queue for slot.... +00:42:39 ============================================================================ +00:42:39 Slot Id : <108> +00:42:39 Transaction Type : REQUEST +00:42:39 Received From : +00:42:39 ============================================================================ +00:42:39 FNo. Len. Field Value +00:42:39 ============================================================================ +00:42:39 [ 1] [ 4] [0800] +00:42:39 [ 7] [ 10] [0319054146] +00:42:39 [ 11] [ 6] [153223] +00:42:39 [ 70] [ 3] [301] +00:42:39 ============================================================================ +00:42:39 + + +waiting on router queue for slot.... +00:42:39 Sending to : +00:42:39 ============================================================================ +00:42:39 ============================================================================ +00:42:39 Slot Id : <108> +00:42:39 Transaction Type : RESPONSE +00:42:39 Received From : +00:42:39 ============================================================================ +00:42:39 FNo. Len. Field Value +00:42:39 ============================================================================ +00:42:39 [ 1] [ 4] [0810] +00:42:39 [ 7] [ 10] [0319054146] +00:42:39 [ 11] [ 6] [153223] +00:42:39 [ 39] [ 2] [00] +00:42:39 [ 70] [ 3] [301] +00:42:39 ============================================================================ +00:42:39 Calculate Source COMM Id = 2 +00:42:39 ============================================================================ +00:42:39 + + +waiting on router queue for slot.... +00:42:54 ============================================================================ +00:42:54 Slot Id : <94> +00:42:54 Transaction Type : REQUEST +00:42:54 Received From : +00:42:54 ============================================================================ +00:42:54 FNo. Len. Field Value +00:42:54 ============================================================================ +00:42:54 [ 1] [ 4] [0800] +00:42:54 [ 7] [ 10] [0319054201] +00:42:54 [ 11] [ 6] [153224] +00:42:54 [ 70] [ 3] [301] +00:42:54 ============================================================================ +00:42:54 + + +waiting on router queue for slot.... +00:42:54 Sending to : +00:42:54 ============================================================================ +00:42:54 ============================================================================ +00:42:54 Slot Id : <94> +00:42:54 Transaction Type : RESPONSE +00:42:54 Received From : +00:42:54 ============================================================================ +00:42:54 FNo. Len. Field Value +00:42:54 ============================================================================ +00:42:54 [ 1] [ 4] [0810] +00:42:54 [ 7] [ 10] [0319054201] +00:42:54 [ 11] [ 6] [153224] +00:42:54 [ 39] [ 2] [00] +00:42:54 [ 70] [ 3] [301] +00:42:54 ============================================================================ +00:42:54 Calculate Source COMM Id = 2 +00:42:54 ============================================================================ +00:42:54 + + +waiting on router queue for slot.... +00:42:57 ============================================================================ +00:42:57 Slot Id : <115> +00:42:57 Transaction Type : REQUEST +00:42:57 Received From : +00:42:57 ============================================================================ +00:42:57 FNo. Len. Field Value +00:42:57 ============================================================================ +00:42:57 [ 1] [ 4] [0800] +00:42:57 [ 2] [ 5] [02531] +00:42:57 [ 3] [ 6] [579008] +00:42:57 [ 7] [ 10] [0319174257] +00:42:57 [ 11] [ 6] [806453] +00:42:57 [ 15] [ 10] [0319174257] +00:42:57 [ 37] [ 11] [57900806453] +00:42:57 [ 70] [ 3] [001] +00:42:57 ============================================================================ +00:42:57 + + +waiting on router queue for slot.... +00:42:57 ============================================================================ +00:42:57 Slot Id : <115> +00:42:57 Transaction Type : RESPONSE +00:42:57 Received From : +00:42:57 ============================================================================ +00:42:57 FNo. Len. Field Value +00:42:57 ============================================================================ +00:42:57 [ 1] [ 4] [0810] +00:42:57 [ 7] [ 10] [0319174257] +00:42:57 [ 11] [ 6] [806453] +00:42:57 [ 15] [ 4] [0319] +00:42:57 [ 37] [ 12] [57900806453] +00:42:57 [ 39] [ 2] [00] +00:42:57 [ 70] [ 3] [001] +00:42:57 ============================================================================ +00:42:57 Sending to : +00:42:57 ============================================================================ +00:42:57 + + +waiting on router queue for slot.... +00:43:05 ============================================================================ +00:43:05 Slot Id : <127> +00:43:05 Transaction Type : REQUEST +00:43:05 Received From : +00:43:05 ============================================================================ +00:43:05 FNo. Len. Field Value +00:43:05 ============================================================================ +00:43:05 [ 1] [ 4] [0800] +00:43:05 [ 7] [ 10] [0319054213] +00:43:05 [ 11] [ 6] [153225] +00:43:05 [ 70] [ 3] [301] +00:43:05 ============================================================================ +00:43:05 + + +waiting on router queue for slot.... +00:43:05 Sending to : +00:43:05 ============================================================================ +00:43:05 ============================================================================ +00:43:05 Slot Id : <127> +00:43:05 Transaction Type : RESPONSE +00:43:05 Received From : +00:43:05 ============================================================================ +00:43:05 FNo. Len. Field Value +00:43:05 ============================================================================ +00:43:05 [ 1] [ 4] [0810] +00:43:05 [ 7] [ 10] [0319054213] +00:43:05 [ 11] [ 6] [153225] +00:43:05 [ 39] [ 2] [00] +00:43:05 [ 70] [ 3] [301] +00:43:05 ============================================================================ +00:43:05 Calculate Source COMM Id = 2 +00:43:05 ============================================================================ +00:43:05 + + +waiting on router queue for slot.... +00:43:09 ============================================================================ +00:43:09 Slot Id : <125> +00:43:09 Transaction Type : REQUEST +00:43:09 Received From : +00:43:09 ============================================================================ +00:43:09 FNo. Len. Field Value +00:43:09 ============================================================================ +00:43:09 [ 1] [ 4] [0800] +00:43:09 [ 7] [ 10] [0320075457] +00:43:09 [ 11] [ 6] [005457] +00:43:09 [ 37] [ 12] [57900005457] +00:43:09 [ 70] [ 3] [301] +00:43:09 ============================================================================ +00:43:09 + + +waiting on router queue for slot.... +00:43:09 Sending to : +00:43:09 ============================================================================ +00:43:09 ============================================================================ +00:43:09 Slot Id : <125> +00:43:09 Transaction Type : RESPONSE +00:43:09 Received From : +00:43:09 ============================================================================ +00:43:09 FNo. Len. Field Value +00:43:09 ============================================================================ +00:43:09 [ 1] [ 4] [0810] +00:43:09 [ 7] [ 10] [0320075457] +00:43:09 [ 11] [ 6] [005457] +00:43:09 [ 37] [ 12] [579000054570] +00:43:09 [ 39] [ 2] [00] +00:43:09 [ 70] [ 3] [810] +00:43:09 ============================================================================ +00:43:09 Calculate Source COMM Id = 6 +00:43:09 ============================================================================ +00:43:09 + + +waiting on router queue for slot.... +00:43:22 ============================================================================ +00:43:22 Slot Id : <95> +00:43:22 Transaction Type : REQUEST +00:43:22 Received From : +00:43:22 ============================================================================ +00:43:22 FNo. Len. Field Value +00:43:22 ============================================================================ +00:43:22 [ 1] [ 4] [0800] +00:43:22 [ 7] [ 10] [0319054229] +00:43:22 [ 11] [ 6] [153226] +00:43:22 [ 70] [ 3] [301] +00:43:22 ============================================================================ +00:43:22 + + +waiting on router queue for slot.... +00:43:22 Sending to : +00:43:22 ============================================================================ +00:43:22 ============================================================================ +00:43:22 Slot Id : <95> +00:43:22 Transaction Type : RESPONSE +00:43:22 Received From : +00:43:22 ============================================================================ +00:43:22 FNo. Len. Field Value +00:43:22 ============================================================================ +00:43:22 [ 1] [ 4] [0810] +00:43:22 [ 7] [ 10] [0319054229] +00:43:22 [ 11] [ 6] [153226] +00:43:22 [ 39] [ 2] [00] +00:43:22 [ 70] [ 3] [301] +00:43:22 ============================================================================ +00:43:22 Calculate Source COMM Id = 2 +00:43:22 ============================================================================ +00:43:22 + + +waiting on router queue for slot.... +00:43:33 ============================================================================ +00:43:33 Slot Id : <75> +00:43:33 Transaction Type : REQUEST +00:43:33 Received From : +00:43:33 ============================================================================ +00:43:33 FNo. Len. Field Value +00:43:33 ============================================================================ +00:43:33 [ 1] [ 4] [0800] +00:43:33 [ 7] [ 10] [0319054240] +00:43:33 [ 11] [ 6] [153227] +00:43:33 [ 70] [ 3] [301] +00:43:33 ============================================================================ +00:43:33 + + +waiting on router queue for slot.... +00:43:33 Sending to : +00:43:33 ============================================================================ +00:43:33 ============================================================================ +00:43:33 Slot Id : <75> +00:43:33 Transaction Type : RESPONSE +00:43:33 Received From : +00:43:33 ============================================================================ +00:43:33 FNo. Len. Field Value +00:43:33 ============================================================================ +00:43:33 [ 1] [ 4] [0810] +00:43:33 [ 7] [ 10] [0319054240] +00:43:33 [ 11] [ 6] [153227] +00:43:33 [ 39] [ 2] [00] +00:43:33 [ 70] [ 3] [301] +00:43:33 ============================================================================ +00:43:33 Calculate Source COMM Id = 2 +00:43:33 ============================================================================ +00:43:33 + + +waiting on router queue for slot.... +00:43:48 ============================================================================ +00:43:48 Slot Id : <53> +00:43:48 Transaction Type : REQUEST +00:43:48 Received From : +00:43:48 ============================================================================ +00:43:48 FNo. Len. Field Value +00:43:48 ============================================================================ +00:43:48 [ 1] [ 4] [0800] +00:43:48 [ 7] [ 10] [0319054255] +00:43:48 [ 11] [ 6] [153228] +00:43:48 [ 70] [ 3] [301] +00:43:48 ============================================================================ +00:43:48 + + +waiting on router queue for slot.... +00:43:48 Sending to : +00:43:48 ============================================================================ +00:43:48 ============================================================================ +00:43:48 Slot Id : <53> +00:43:48 Transaction Type : RESPONSE +00:43:48 Received From : +00:43:48 ============================================================================ +00:43:48 FNo. Len. Field Value +00:43:48 ============================================================================ +00:43:48 [ 1] [ 4] [0810] +00:43:48 [ 7] [ 10] [0319054255] +00:43:48 [ 11] [ 6] [153228] +00:43:48 [ 39] [ 2] [00] +00:43:48 [ 70] [ 3] [301] +00:43:48 ============================================================================ +00:43:48 Calculate Source COMM Id = 2 +00:43:48 ============================================================================ +00:43:48 + + +waiting on router queue for slot.... +00:43:59 ============================================================================ +00:43:59 Slot Id : <134> +00:43:59 Transaction Type : REQUEST +00:43:59 Received From : +00:43:59 ============================================================================ +00:43:59 FNo. Len. Field Value +00:43:59 ============================================================================ +00:43:59 [ 1] [ 4] [0800] +00:43:59 [ 7] [ 10] [0319054306] +00:43:59 [ 11] [ 6] [153229] +00:43:59 [ 70] [ 3] [301] +00:43:59 ============================================================================ +00:43:59 + + +waiting on router queue for slot.... +00:43:59 Sending to : +00:43:59 ============================================================================ +00:43:59 ============================================================================ +00:43:59 Slot Id : <134> +00:43:59 Transaction Type : RESPONSE +00:43:59 Received From : +00:43:59 ============================================================================ +00:43:59 FNo. Len. Field Value +00:43:59 ============================================================================ +00:43:59 [ 1] [ 4] [0810] +00:43:59 [ 7] [ 10] [0319054306] +00:43:59 [ 11] [ 6] [153229] +00:43:59 [ 39] [ 2] [00] +00:43:59 [ 70] [ 3] [301] +00:43:59 ============================================================================ +00:43:59 Calculate Source COMM Id = 2 +00:43:59 ============================================================================ +00:43:59 + + +waiting on router queue for slot.... +00:43:59 ============================================================================ +00:43:59 Slot Id : <96> +00:43:59 Transaction Type : REQUEST +00:43:59 Received From : +00:43:59 ============================================================================ +00:43:59 FNo. Len. Field Value +00:43:59 ============================================================================ +00:43:59 [ 1] [ 4] [0800] +00:43:59 [ 2] [ 5] [02531] +00:43:59 [ 3] [ 6] [579008] +00:43:59 [ 7] [ 10] [0319174359] +00:43:59 [ 11] [ 6] [806454] +00:43:59 [ 15] [ 10] [0319174359] +00:43:59 [ 37] [ 11] [57900806454] +00:43:59 [ 70] [ 3] [001] +00:43:59 ============================================================================ +00:43:59 + + +waiting on router queue for slot.... +00:43:59 ============================================================================ +00:43:59 Slot Id : <96> +00:43:59 Transaction Type : RESPONSE +00:43:59 Received From : +00:43:59 ============================================================================ +00:43:59 FNo. Len. Field Value +00:43:59 ============================================================================ +00:43:59 [ 1] [ 4] [0810] +00:43:59 [ 7] [ 10] [0319174359] +00:43:59 [ 11] [ 6] [806454] +00:43:59 [ 15] [ 4] [0319] +00:43:59 [ 37] [ 12] [57900806454] +00:43:59 [ 39] [ 2] [00] +00:43:59 [ 70] [ 3] [001] +00:43:59 ============================================================================ +00:43:59 Sending to : +00:43:59 ============================================================================ +00:43:59 + + +waiting on router queue for slot.... +00:44:14 ============================================================================ +00:44:14 Slot Id : <98> +00:44:14 Transaction Type : REQUEST +00:44:14 Received From : +00:44:14 ============================================================================ +00:44:14 FNo. Len. Field Value +00:44:14 ============================================================================ +00:44:14 [ 1] [ 4] [0800] +00:44:14 [ 7] [ 10] [0320075602] +00:44:14 [ 11] [ 6] [005602] +00:44:14 [ 37] [ 12] [57900005602] +00:44:14 [ 70] [ 3] [301] +00:44:14 ============================================================================ +00:44:14 + + +waiting on router queue for slot.... +00:44:14 Sending to : +00:44:14 ============================================================================ +00:44:14 ============================================================================ +00:44:14 Slot Id : <98> +00:44:14 Transaction Type : RESPONSE +00:44:14 Received From : +00:44:14 ============================================================================ +00:44:14 FNo. Len. Field Value +00:44:14 ============================================================================ +00:44:14 [ 1] [ 4] [0810] +00:44:14 [ 7] [ 10] [0320075602] +00:44:14 [ 11] [ 6] [005602] +00:44:14 [ 37] [ 12] [579000056020] +00:44:14 [ 39] [ 2] [00] +00:44:14 [ 70] [ 3] [810] +00:44:14 ============================================================================ +00:44:14 Calculate Source COMM Id = 6 +00:44:14 ============================================================================ +00:44:14 + + +waiting on router queue for slot.... +00:44:16 ============================================================================ +00:44:16 Slot Id : <103> +00:44:16 Transaction Type : REQUEST +00:44:16 Received From : +00:44:16 ============================================================================ +00:44:16 FNo. Len. Field Value +00:44:16 ============================================================================ +00:44:16 [ 1] [ 4] [0800] +00:44:16 [ 7] [ 10] [0319054323] +00:44:16 [ 11] [ 6] [153230] +00:44:16 [ 70] [ 3] [301] +00:44:16 ============================================================================ +00:44:16 + + +waiting on router queue for slot.... +00:44:16 Sending to : +00:44:16 ============================================================================ +00:44:16 ============================================================================ +00:44:16 Slot Id : <103> +00:44:16 Transaction Type : RESPONSE +00:44:16 Received From : +00:44:16 ============================================================================ +00:44:16 FNo. Len. Field Value +00:44:16 ============================================================================ +00:44:16 [ 1] [ 4] [0810] +00:44:16 [ 7] [ 10] [0319054323] +00:44:16 [ 11] [ 6] [153230] +00:44:16 [ 39] [ 2] [00] +00:44:16 [ 70] [ 3] [301] +00:44:16 ============================================================================ +00:44:16 Calculate Source COMM Id = 2 +00:44:16 ============================================================================ +00:44:16 + + +waiting on router queue for slot.... +00:44:32 ============================================================================ +00:44:32 Slot Id : <71> +00:44:32 Transaction Type : REQUEST +00:44:32 Received From : +00:44:32 ============================================================================ +00:44:32 FNo. Len. Field Value +00:44:32 ============================================================================ +00:44:32 [ 1] [ 4] [0800] +00:44:32 [ 7] [ 10] [0319054339] +00:44:32 [ 11] [ 6] [153231] +00:44:32 [ 70] [ 3] [301] +00:44:32 ============================================================================ +00:44:32 + + +waiting on router queue for slot.... +00:44:32 Sending to : +00:44:32 ============================================================================ +00:44:32 ============================================================================ +00:44:32 Slot Id : <71> +00:44:32 Transaction Type : RESPONSE +00:44:32 Received From : +00:44:32 ============================================================================ +00:44:32 FNo. Len. Field Value +00:44:32 ============================================================================ +00:44:32 [ 1] [ 4] [0810] +00:44:32 [ 7] [ 10] [0319054339] +00:44:32 [ 11] [ 6] [153231] +00:44:32 [ 39] [ 2] [00] +00:44:32 [ 70] [ 3] [301] +00:44:32 ============================================================================ +00:44:32 Calculate Source COMM Id = 2 +00:44:32 ============================================================================ +00:44:32 + + +waiting on router queue for slot.... +00:44:43 ============================================================================ +00:44:43 Slot Id : <101> +00:44:43 Transaction Type : REQUEST +00:44:43 Received From : +00:44:43 ============================================================================ +00:44:43 FNo. Len. Field Value +00:44:43 ============================================================================ +00:44:43 [ 1] [ 4] [0800] +00:44:43 [ 7] [ 10] [0319054350] +00:44:43 [ 11] [ 6] [153232] +00:44:43 [ 70] [ 3] [301] +00:44:43 ============================================================================ +00:44:43 + + +waiting on router queue for slot.... +00:44:43 Sending to : +00:44:43 ============================================================================ +00:44:43 ============================================================================ +00:44:43 Slot Id : <101> +00:44:43 Transaction Type : RESPONSE +00:44:43 Received From : +00:44:43 ============================================================================ +00:44:43 FNo. Len. Field Value +00:44:43 ============================================================================ +00:44:43 [ 1] [ 4] [0810] +00:44:43 [ 7] [ 10] [0319054350] +00:44:43 [ 11] [ 6] [153232] +00:44:43 [ 39] [ 2] [00] +00:44:43 [ 70] [ 3] [301] +00:44:43 ============================================================================ +00:44:43 Calculate Source COMM Id = 2 +00:44:43 ============================================================================ +00:44:43 + + +waiting on router queue for slot.... +00:44:53 ============================================================================ +00:44:53 Slot Id : <102> +00:44:53 Transaction Type : REQUEST +00:44:53 Received From : +00:44:53 ============================================================================ +00:44:53 FNo. Len. Field Value +00:44:53 ============================================================================ +00:44:53 [ 1] [ 4] [0800] +00:44:53 [ 7] [ 10] [0319054400] +00:44:53 [ 11] [ 6] [153233] +00:44:53 [ 70] [ 3] [301] +00:44:53 ============================================================================ +00:44:53 + + +waiting on router queue for slot.... +00:44:53 Sending to : +00:44:53 ============================================================================ +00:44:53 ============================================================================ +00:44:53 Slot Id : <102> +00:44:53 Transaction Type : RESPONSE +00:44:53 Received From : +00:44:53 ============================================================================ +00:44:53 FNo. Len. Field Value +00:44:53 ============================================================================ +00:44:53 [ 1] [ 4] [0810] +00:44:53 [ 7] [ 10] [0319054400] +00:44:53 [ 11] [ 6] [153233] +00:44:53 [ 39] [ 2] [00] +00:44:53 [ 70] [ 3] [301] +00:44:53 ============================================================================ +00:44:53 Calculate Source COMM Id = 2 +00:44:53 ============================================================================ +00:44:53 + + +waiting on router queue for slot.... +00:44:56 ============================================================================ +00:44:56 Slot Id : <109> +00:44:56 Transaction Type : REQUEST +00:44:56 Received From : +00:44:56 ============================================================================ +00:44:56 FNo. Len. Field Value +00:44:56 ============================================================================ +00:44:56 [ 1] [ 4] [0800] +00:44:56 [ 7] [ 10] [0319175242] +00:44:56 [ 11] [ 6] [013904] +00:44:56 [ 37] [ 12] [57900013904] +00:44:56 [ 70] [ 3] [301] +00:44:56 ============================================================================ +00:44:56 + + +waiting on router queue for slot.... +00:44:56 Sending to : +00:44:56 ============================================================================ +00:44:56 ============================================================================ +00:44:56 Slot Id : <109> +00:44:56 Transaction Type : RESPONSE +00:44:56 Received From : +00:44:56 ============================================================================ +00:44:56 FNo. Len. Field Value +00:44:56 ============================================================================ +00:44:56 [ 1] [ 4] [0810] +00:44:56 [ 7] [ 10] [0319175242] +00:44:56 [ 11] [ 6] [013904] +00:44:56 [ 37] [ 12] [579000139040] +00:44:56 [ 39] [ 2] [00] +00:44:56 [ 70] [ 3] [810] +00:44:56 ============================================================================ +00:44:56 Calculate Source COMM Id = 1 +00:44:56 ============================================================================ +00:44:56 + + +waiting on router queue for slot.... +00:45:01 ============================================================================ +00:45:01 Slot Id : <70> +00:45:01 Transaction Type : REQUEST +00:45:01 Received From : +00:45:01 ============================================================================ +00:45:01 FNo. Len. Field Value +00:45:01 ============================================================================ +00:45:01 [ 1] [ 4] [0800] +00:45:01 [ 2] [ 5] [02531] +00:45:01 [ 3] [ 6] [579008] +00:45:01 [ 7] [ 10] [0319174501] +00:45:01 [ 11] [ 6] [806455] +00:45:01 [ 15] [ 10] [0319174501] +00:45:01 [ 37] [ 11] [57900806455] +00:45:01 [ 70] [ 3] [001] +00:45:01 ============================================================================ +00:45:01 + + +waiting on router queue for slot.... +00:45:01 ============================================================================ +00:45:01 Slot Id : <70> +00:45:01 Transaction Type : RESPONSE +00:45:01 Received From : +00:45:01 ============================================================================ +00:45:01 FNo. Len. Field Value +00:45:01 ============================================================================ +00:45:01 [ 1] [ 4] [0810] +00:45:01 [ 7] [ 10] [0319174501] +00:45:01 [ 11] [ 6] [806455] +00:45:01 [ 15] [ 4] [0319] +00:45:01 [ 37] [ 12] [57900806455] +00:45:01 [ 39] [ 2] [00] +00:45:01 [ 70] [ 3] [001] +00:45:01 ============================================================================ +00:45:01 Sending to : +00:45:01 ============================================================================ +00:45:01 + + +waiting on router queue for slot.... +00:45:04 ============================================================================ +00:45:04 Slot Id : <136> +00:45:04 Transaction Type : REQUEST +00:45:04 Received From : +00:45:04 ============================================================================ +00:45:04 FNo. Len. Field Value +00:45:04 ============================================================================ +00:45:04 [ 1] [ 4] [0800] +00:45:04 [ 7] [ 10] [0319054411] +00:45:04 [ 11] [ 6] [153234] +00:45:04 [ 70] [ 3] [301] +00:45:04 ============================================================================ +00:45:04 + + +waiting on router queue for slot.... +00:45:04 Sending to : +00:45:04 ============================================================================ +00:45:04 ============================================================================ +00:45:04 Slot Id : <136> +00:45:04 Transaction Type : RESPONSE +00:45:04 Received From : +00:45:04 ============================================================================ +00:45:04 FNo. Len. Field Value +00:45:04 ============================================================================ +00:45:04 [ 1] [ 4] [0810] +00:45:04 [ 7] [ 10] [0319054411] +00:45:04 [ 11] [ 6] [153234] +00:45:04 [ 39] [ 2] [00] +00:45:04 [ 70] [ 3] [301] +00:45:04 ============================================================================ +00:45:04 Calculate Source COMM Id = 2 +00:45:04 ============================================================================ +00:45:04 + + +waiting on router queue for slot.... +00:45:17 ============================================================================ +00:45:17 Slot Id : <131> +00:45:17 Transaction Type : REQUEST +00:45:17 Received From : +00:45:17 ============================================================================ +00:45:17 FNo. Len. Field Value +00:45:17 ============================================================================ +00:45:17 [ 1] [ 4] [0800] +00:45:17 [ 7] [ 10] [0319054423] +00:45:17 [ 11] [ 6] [153235] +00:45:17 [ 70] [ 3] [301] +00:45:17 ============================================================================ +00:45:17 + + +waiting on router queue for slot.... +00:45:17 Sending to : +00:45:17 ============================================================================ +00:45:17 ============================================================================ +00:45:17 Slot Id : <131> +00:45:17 Transaction Type : RESPONSE +00:45:17 Received From : +00:45:17 ============================================================================ +00:45:17 FNo. Len. Field Value +00:45:17 ============================================================================ +00:45:17 [ 1] [ 4] [0810] +00:45:17 [ 7] [ 10] [0319054423] +00:45:17 [ 11] [ 6] [153235] +00:45:17 [ 39] [ 2] [00] +00:45:17 [ 70] [ 3] [301] +00:45:17 ============================================================================ +00:45:17 Calculate Source COMM Id = 2 +00:45:17 ============================================================================ +00:45:17 + + +waiting on router queue for slot.... +00:45:19 ============================================================================ +00:45:19 Slot Id : <129> +00:45:19 Transaction Type : REQUEST +00:45:19 Received From : +00:45:19 ============================================================================ +00:45:19 FNo. Len. Field Value +00:45:19 ============================================================================ +00:45:19 [ 1] [ 4] [0800] +00:45:19 [ 7] [ 10] [0320075707] +00:45:19 [ 11] [ 6] [005707] +00:45:19 [ 37] [ 12] [57900005707] +00:45:19 [ 70] [ 3] [301] +00:45:19 ============================================================================ +00:45:19 + + +waiting on router queue for slot.... +00:45:19 Sending to : +00:45:19 ============================================================================ +00:45:19 ============================================================================ +00:45:19 Slot Id : <129> +00:45:19 Transaction Type : RESPONSE +00:45:19 Received From : +00:45:19 ============================================================================ +00:45:19 FNo. Len. Field Value +00:45:19 ============================================================================ +00:45:19 [ 1] [ 4] [0810] +00:45:19 [ 7] [ 10] [0320075707] +00:45:19 [ 11] [ 6] [005707] +00:45:19 [ 37] [ 12] [579000057070] +00:45:19 [ 39] [ 2] [00] +00:45:19 [ 70] [ 3] [810] +00:45:19 ============================================================================ +00:45:19 Calculate Source COMM Id = 6 +00:45:19 ============================================================================ +00:45:19 + + +waiting on router queue for slot.... +00:45:32 ============================================================================ +00:45:32 Slot Id : <85> +00:45:32 Transaction Type : REQUEST +00:45:32 Received From : +00:45:32 ============================================================================ +00:45:32 FNo. Len. Field Value +00:45:32 ============================================================================ +00:45:32 [ 1] [ 4] [0800] +00:45:32 [ 7] [ 10] [0319054439] +00:45:32 [ 11] [ 6] [153236] +00:45:32 [ 70] [ 3] [301] +00:45:32 ============================================================================ +00:45:32 + + +waiting on router queue for slot.... +00:45:32 Sending to : +00:45:32 ============================================================================ +00:45:32 ============================================================================ +00:45:32 Slot Id : <85> +00:45:32 Transaction Type : RESPONSE +00:45:32 Received From : +00:45:32 ============================================================================ +00:45:32 FNo. Len. Field Value +00:45:32 ============================================================================ +00:45:32 [ 1] [ 4] [0810] +00:45:32 [ 7] [ 10] [0319054439] +00:45:32 [ 11] [ 6] [153236] +00:45:32 [ 39] [ 2] [00] +00:45:32 [ 70] [ 3] [301] +00:45:32 ============================================================================ +00:45:32 Calculate Source COMM Id = 2 +00:45:32 ============================================================================ +00:45:32 + + +waiting on router queue for slot.... +00:45:44 ============================================================================ +00:45:44 Slot Id : <105> +00:45:44 Transaction Type : REQUEST +00:45:44 Received From : +00:45:44 ============================================================================ +00:45:44 FNo. Len. Field Value +00:45:44 ============================================================================ +00:45:44 [ 1] [ 4] [0800] +00:45:44 [ 7] [ 10] [0319054450] +00:45:44 [ 11] [ 6] [153237] +00:45:44 [ 70] [ 3] [301] +00:45:44 ============================================================================ +00:45:44 + + +waiting on router queue for slot.... +00:45:44 Sending to : +00:45:44 ============================================================================ +00:45:44 ============================================================================ +00:45:44 Slot Id : <105> +00:45:44 Transaction Type : RESPONSE +00:45:44 Received From : +00:45:44 ============================================================================ +00:45:44 FNo. Len. Field Value +00:45:44 ============================================================================ +00:45:44 [ 1] [ 4] [0810] +00:45:44 [ 7] [ 10] [0319054450] +00:45:44 [ 11] [ 6] [153237] +00:45:44 [ 39] [ 2] [00] +00:45:44 [ 70] [ 3] [301] +00:45:44 ============================================================================ +00:45:44 Calculate Source COMM Id = 2 +00:45:44 ============================================================================ +00:45:44 + + +waiting on router queue for slot.... +00:45:59 ============================================================================ +00:45:59 Slot Id : <87> +00:45:59 Transaction Type : REQUEST +00:45:59 Received From : +00:45:59 ============================================================================ +00:45:59 FNo. Len. Field Value +00:45:59 ============================================================================ +00:45:59 [ 1] [ 4] [0800] +00:45:59 [ 7] [ 10] [0319054507] +00:45:59 [ 11] [ 6] [153238] +00:45:59 [ 70] [ 3] [301] +00:45:59 ============================================================================ +00:45:59 + + +waiting on router queue for slot.... +00:45:59 Sending to : +00:45:59 ============================================================================ +00:45:59 ============================================================================ +00:45:59 Slot Id : <87> +00:45:59 Transaction Type : RESPONSE +00:45:59 Received From : +00:45:59 ============================================================================ +00:45:59 FNo. Len. Field Value +00:45:59 ============================================================================ +00:45:59 [ 1] [ 4] [0810] +00:45:59 [ 7] [ 10] [0319054507] +00:45:59 [ 11] [ 6] [153238] +00:45:59 [ 39] [ 2] [00] +00:45:59 [ 70] [ 3] [301] +00:45:59 ============================================================================ +00:45:59 Calculate Source COMM Id = 2 +00:45:59 ============================================================================ +00:45:59 + + +waiting on router queue for slot.... +00:46:03 ============================================================================ +00:46:03 Slot Id : <104> +00:46:03 Transaction Type : REQUEST +00:46:03 Received From : +00:46:03 ============================================================================ +00:46:03 FNo. Len. Field Value +00:46:03 ============================================================================ +00:46:03 [ 1] [ 4] [0800] +00:46:03 [ 2] [ 5] [02531] +00:46:03 [ 3] [ 6] [579008] +00:46:03 [ 7] [ 10] [0319174603] +00:46:03 [ 11] [ 6] [806456] +00:46:03 [ 15] [ 10] [0319174603] +00:46:03 [ 37] [ 11] [57900806456] +00:46:03 [ 70] [ 3] [001] +00:46:03 ============================================================================ +00:46:03 + + +waiting on router queue for slot.... +00:46:03 ============================================================================ +00:46:03 Slot Id : <104> +00:46:03 Transaction Type : RESPONSE +00:46:03 Received From : +00:46:03 ============================================================================ +00:46:03 FNo. Len. Field Value +00:46:03 ============================================================================ +00:46:03 [ 1] [ 4] [0810] +00:46:03 [ 7] [ 10] [0319174603] +00:46:03 [ 11] [ 6] [806456] +00:46:03 [ 15] [ 4] [0319] +00:46:03 [ 37] [ 12] [57900806456] +00:46:03 [ 39] [ 2] [00] +00:46:03 [ 70] [ 3] [001] +00:46:03 ============================================================================ +00:46:03 Sending to : +00:46:03 ============================================================================ +00:46:03 + + +waiting on router queue for slot.... +00:46:10 ============================================================================ +00:46:10 Slot Id : <138> +00:46:10 Transaction Type : REQUEST +00:46:10 Received From : +00:46:10 ============================================================================ +00:46:10 FNo. Len. Field Value +00:46:10 ============================================================================ +00:46:10 [ 1] [ 4] [0800] +00:46:10 [ 7] [ 10] [0319054518] +00:46:10 [ 11] [ 6] [153239] +00:46:10 [ 70] [ 3] [301] +00:46:10 ============================================================================ +00:46:10 + + +waiting on router queue for slot.... +00:46:10 Sending to : +00:46:10 ============================================================================ +00:46:10 ============================================================================ +00:46:10 Slot Id : <138> +00:46:10 Transaction Type : RESPONSE +00:46:10 Received From : +00:46:10 ============================================================================ +00:46:10 FNo. Len. Field Value +00:46:10 ============================================================================ +00:46:10 [ 1] [ 4] [0810] +00:46:10 [ 7] [ 10] [0319054518] +00:46:10 [ 11] [ 6] [153239] +00:46:10 [ 39] [ 2] [00] +00:46:10 [ 70] [ 3] [301] +00:46:10 ============================================================================ +00:46:10 Calculate Source COMM Id = 2 +00:46:10 ============================================================================ +00:46:10 + + +waiting on router queue for slot.... +00:46:21 ============================================================================ +00:46:21 Slot Id : <97> +00:46:21 Transaction Type : REQUEST +00:46:21 Received From : +00:46:21 ============================================================================ +00:46:21 FNo. Len. Field Value +00:46:21 ============================================================================ +00:46:21 [ 1] [ 4] [0800] +00:46:21 [ 7] [ 10] [0319174412] +00:46:21 [ 11] [ 6] [058567] +00:46:21 [ 37] [ 12] [57900058567] +00:46:21 [ 70] [ 3] [301] +00:46:21 ============================================================================ +00:46:21 + + +waiting on router queue for slot.... +00:46:21 Sending to : +00:46:21 ============================================================================ +00:46:21 ============================================================================ +00:46:21 Slot Id : <97> +00:46:21 Transaction Type : RESPONSE +00:46:21 Received From : +00:46:21 ============================================================================ +00:46:21 FNo. Len. Field Value +00:46:21 ============================================================================ +00:46:21 [ 1] [ 4] [0810] +00:46:21 [ 7] [ 10] [0319174412] +00:46:21 [ 11] [ 6] [058567] +00:46:21 [ 37] [ 12] [579000585670] +00:46:21 [ 39] [ 2] [00] +00:46:21 [ 70] [ 3] [810] +00:46:21 ============================================================================ +00:46:21 Calculate Source COMM Id = 4 +00:46:21 ============================================================================ +00:46:21 + + +waiting on router queue for slot.... +00:46:24 ============================================================================ +00:46:24 Slot Id : <117> +00:46:24 Transaction Type : REQUEST +00:46:24 Received From : +00:46:24 ============================================================================ +00:46:24 FNo. Len. Field Value +00:46:24 ============================================================================ +00:46:24 [ 1] [ 4] [0800] +00:46:24 [ 7] [ 10] [0320075812] +00:46:24 [ 11] [ 6] [005812] +00:46:24 [ 37] [ 12] [57900005812] +00:46:24 [ 70] [ 3] [301] +00:46:24 ============================================================================ +00:46:24 + + +waiting on router queue for slot.... +00:46:24 Sending to : +00:46:24 ============================================================================ +00:46:24 ============================================================================ +00:46:24 Slot Id : <117> +00:46:24 Transaction Type : RESPONSE +00:46:24 Received From : +00:46:24 ============================================================================ +00:46:24 FNo. Len. Field Value +00:46:24 ============================================================================ +00:46:24 [ 1] [ 4] [0810] +00:46:24 [ 7] [ 10] [0320075812] +00:46:24 [ 11] [ 6] [005812] +00:46:24 [ 37] [ 12] [579000058120] +00:46:24 [ 39] [ 2] [00] +00:46:24 [ 70] [ 3] [810] +00:46:24 ============================================================================ +00:46:24 Calculate Source COMM Id = 6 +00:46:24 ============================================================================ +00:46:24 + + +waiting on router queue for slot.... +00:46:26 ============================================================================ +00:46:26 Slot Id : <112> +00:46:26 Transaction Type : REQUEST +00:46:26 Received From : +00:46:26 ============================================================================ +00:46:26 FNo. Len. Field Value +00:46:26 ============================================================================ +00:46:26 [ 1] [ 4] [0800] +00:46:26 [ 7] [ 10] [0319054534] +00:46:26 [ 11] [ 6] [153240] +00:46:26 [ 70] [ 3] [301] +00:46:26 ============================================================================ +00:46:26 + + +waiting on router queue for slot.... +00:46:26 Sending to : +00:46:26 ============================================================================ +00:46:26 ============================================================================ +00:46:26 Slot Id : <112> +00:46:26 Transaction Type : RESPONSE +00:46:26 Received From : +00:46:26 ============================================================================ +00:46:26 FNo. Len. Field Value +00:46:26 ============================================================================ +00:46:26 [ 1] [ 4] [0810] +00:46:26 [ 7] [ 10] [0319054534] +00:46:26 [ 11] [ 6] [153240] +00:46:26 [ 39] [ 2] [00] +00:46:26 [ 70] [ 3] [301] +00:46:26 ============================================================================ +00:46:26 Calculate Source COMM Id = 2 +00:46:26 ============================================================================ +00:46:26 + + +waiting on router queue for slot.... +00:46:37 ============================================================================ +00:46:37 Slot Id : <140> +00:46:37 Transaction Type : REQUEST +00:46:37 Received From : +00:46:37 ============================================================================ +00:46:37 FNo. Len. Field Value +00:46:37 ============================================================================ +00:46:37 [ 1] [ 4] [0800] +00:46:37 [ 7] [ 10] [0319054544] +00:46:37 [ 11] [ 6] [153241] +00:46:37 [ 70] [ 3] [301] +00:46:37 ============================================================================ +00:46:37 + + +waiting on router queue for slot.... +00:46:37 Sending to : +00:46:37 ============================================================================ +00:46:37 ============================================================================ +00:46:37 Slot Id : <140> +00:46:37 Transaction Type : RESPONSE +00:46:37 Received From : +00:46:37 ============================================================================ +00:46:37 FNo. Len. Field Value +00:46:37 ============================================================================ +00:46:37 [ 1] [ 4] [0810] +00:46:37 [ 7] [ 10] [0319054544] +00:46:37 [ 11] [ 6] [153241] +00:46:37 [ 39] [ 2] [00] +00:46:37 [ 70] [ 3] [301] +00:46:37 ============================================================================ +00:46:37 Calculate Source COMM Id = 2 +00:46:37 ============================================================================ +00:46:37 + + +waiting on router queue for slot.... +00:46:48 ============================================================================ +00:46:48 Slot Id : <116> +00:46:48 Transaction Type : REQUEST +00:46:48 Received From : +00:46:48 ============================================================================ +00:46:48 FNo. Len. Field Value +00:46:48 ============================================================================ +00:46:48 [ 1] [ 4] [0800] +00:46:48 [ 7] [ 10] [0319054555] +00:46:48 [ 11] [ 6] [153242] +00:46:48 [ 70] [ 3] [301] +00:46:48 ============================================================================ +00:46:48 + + +waiting on router queue for slot.... +00:46:48 Sending to : +00:46:48 ============================================================================ +00:46:48 ============================================================================ +00:46:48 Slot Id : <116> +00:46:48 Transaction Type : RESPONSE +00:46:48 Received From : +00:46:48 ============================================================================ +00:46:48 FNo. Len. Field Value +00:46:48 ============================================================================ +00:46:48 [ 1] [ 4] [0810] +00:46:48 [ 7] [ 10] [0319054555] +00:46:48 [ 11] [ 6] [153242] +00:46:48 [ 39] [ 2] [00] +00:46:48 [ 70] [ 3] [301] +00:46:48 ============================================================================ +00:46:48 Calculate Source COMM Id = 2 +00:46:48 ============================================================================ +00:46:48 + + +waiting on router queue for slot.... +00:46:59 ============================================================================ +00:46:59 Slot Id : <111> +00:46:59 Transaction Type : REQUEST +00:46:59 Received From : +00:46:59 ============================================================================ +00:46:59 FNo. Len. Field Value +00:46:59 ============================================================================ +00:46:59 [ 1] [ 4] [0800] +00:46:59 [ 7] [ 10] [0319054606] +00:46:59 [ 11] [ 6] [153243] +00:46:59 [ 70] [ 3] [301] +00:46:59 ============================================================================ +00:46:59 + + +waiting on router queue for slot.... +00:46:59 Sending to : +00:46:59 ============================================================================ +00:46:59 ============================================================================ +00:46:59 Slot Id : <111> +00:46:59 Transaction Type : RESPONSE +00:46:59 Received From : +00:46:59 ============================================================================ +00:46:59 FNo. Len. Field Value +00:46:59 ============================================================================ +00:46:59 [ 1] [ 4] [0810] +00:46:59 [ 7] [ 10] [0319054606] +00:46:59 [ 11] [ 6] [153243] +00:46:59 [ 39] [ 2] [00] +00:46:59 [ 70] [ 3] [301] +00:46:59 ============================================================================ +00:46:59 Calculate Source COMM Id = 2 +00:46:59 ============================================================================ +00:46:59 + + +waiting on router queue for slot.... +00:47:05 ============================================================================ +00:47:05 Slot Id : <124> +00:47:05 Transaction Type : REQUEST +00:47:05 Received From : +00:47:05 ============================================================================ +00:47:05 FNo. Len. Field Value +00:47:05 ============================================================================ +00:47:05 [ 1] [ 4] [0800] +00:47:05 [ 2] [ 5] [02531] +00:47:05 [ 3] [ 6] [579008] +00:47:05 [ 7] [ 10] [0319174705] +00:47:05 [ 11] [ 6] [806457] +00:47:05 [ 15] [ 10] [0319174705] +00:47:05 [ 37] [ 11] [57900806457] +00:47:05 [ 70] [ 3] [001] +00:47:05 ============================================================================ +00:47:05 + + +waiting on router queue for slot.... +00:47:05 ============================================================================ +00:47:05 Slot Id : <124> +00:47:05 Transaction Type : RESPONSE +00:47:05 Received From : +00:47:05 ============================================================================ +00:47:05 FNo. Len. Field Value +00:47:05 ============================================================================ +00:47:05 [ 1] [ 4] [0810] +00:47:05 [ 7] [ 10] [0319174705] +00:47:05 [ 11] [ 6] [806457] +00:47:05 [ 15] [ 4] [0319] +00:47:05 [ 37] [ 12] [57900806457] +00:47:05 [ 39] [ 2] [00] +00:47:05 [ 70] [ 3] [001] +00:47:05 ============================================================================ +00:47:05 Sending to : +00:47:05 ============================================================================ +00:47:05 + + +waiting on router queue for slot.... +00:47:09 ============================================================================ +00:47:09 Slot Id : <147> +00:47:09 Transaction Type : REQUEST +00:47:09 Received From : +00:47:09 ============================================================================ +00:47:09 FNo. Len. Field Value +00:47:09 ============================================================================ +00:47:09 [ 1] [ 4] [0800] +00:47:09 [ 7] [ 10] [0319054617] +00:47:09 [ 11] [ 6] [153244] +00:47:09 [ 70] [ 3] [301] +00:47:09 ============================================================================ +00:47:09 + + +waiting on router queue for slot.... +00:47:09 Sending to : +00:47:09 ============================================================================ +00:47:09 ============================================================================ +00:47:09 Slot Id : <147> +00:47:09 Transaction Type : RESPONSE +00:47:09 Received From : +00:47:09 ============================================================================ +00:47:09 FNo. Len. Field Value +00:47:09 ============================================================================ +00:47:09 [ 1] [ 4] [0810] +00:47:09 [ 7] [ 10] [0319054617] +00:47:09 [ 11] [ 6] [153244] +00:47:09 [ 39] [ 2] [00] +00:47:09 [ 70] [ 3] [301] +00:47:09 ============================================================================ +00:47:09 Calculate Source COMM Id = 2 +00:47:09 ============================================================================ +00:47:09 + + +waiting on router queue for slot.... +00:47:20 ============================================================================ +00:47:20 Slot Id : <80> +00:47:20 Transaction Type : REQUEST +00:47:20 Received From : +00:47:20 ============================================================================ +00:47:20 FNo. Len. Field Value +00:47:20 ============================================================================ +00:47:20 [ 1] [ 4] [0800] +00:47:20 [ 7] [ 10] [0319054627] +00:47:20 [ 11] [ 6] [153245] +00:47:20 [ 70] [ 3] [301] +00:47:20 ============================================================================ +00:47:20 + + +waiting on router queue for slot.... +00:47:20 Sending to : +00:47:20 ============================================================================ +00:47:20 ============================================================================ +00:47:20 Slot Id : <80> +00:47:20 Transaction Type : RESPONSE +00:47:20 Received From : +00:47:20 ============================================================================ +00:47:20 FNo. Len. Field Value +00:47:20 ============================================================================ +00:47:20 [ 1] [ 4] [0810] +00:47:20 [ 7] [ 10] [0319054627] +00:47:20 [ 11] [ 6] [153245] +00:47:20 [ 39] [ 2] [00] +00:47:20 [ 70] [ 3] [301] +00:47:20 ============================================================================ +00:47:20 Calculate Source COMM Id = 2 +00:47:20 ============================================================================ +00:47:20 + + +waiting on router queue for slot.... +00:47:29 ============================================================================ +00:47:29 Slot Id : <123> +00:47:29 Transaction Type : REQUEST +00:47:29 Received From : +00:47:29 ============================================================================ +00:47:29 FNo. Len. Field Value +00:47:29 ============================================================================ +00:47:29 [ 1] [ 4] [0800] +00:47:29 [ 7] [ 10] [0320075917] +00:47:29 [ 11] [ 6] [005917] +00:47:29 [ 37] [ 12] [57900005917] +00:47:29 [ 70] [ 3] [301] +00:47:29 ============================================================================ +00:47:29 + + +waiting on router queue for slot.... +00:47:29 Sending to : +00:47:29 ============================================================================ +00:47:29 ============================================================================ +00:47:29 Slot Id : <123> +00:47:29 Transaction Type : RESPONSE +00:47:29 Received From : +00:47:29 ============================================================================ +00:47:29 FNo. Len. Field Value +00:47:29 ============================================================================ +00:47:29 [ 1] [ 4] [0810] +00:47:29 [ 7] [ 10] [0320075917] +00:47:29 [ 11] [ 6] [005917] +00:47:29 [ 37] [ 12] [579000059170] +00:47:29 [ 39] [ 2] [00] +00:47:29 [ 70] [ 3] [810] +00:47:29 ============================================================================ +00:47:29 Calculate Source COMM Id = 6 +00:47:29 ============================================================================ +00:47:29 + + +waiting on router queue for slot.... +00:47:31 ============================================================================ +00:47:31 Slot Id : <122> +00:47:31 Transaction Type : REQUEST +00:47:31 Received From : +00:47:31 ============================================================================ +00:47:31 FNo. Len. Field Value +00:47:31 ============================================================================ +00:47:31 [ 1] [ 4] [0800] +00:47:31 [ 7] [ 10] [0319054638] +00:47:31 [ 11] [ 6] [153246] +00:47:31 [ 70] [ 3] [301] +00:47:31 ============================================================================ +00:47:31 + + +waiting on router queue for slot.... +00:47:31 Sending to : +00:47:31 ============================================================================ +00:47:31 ============================================================================ +00:47:31 Slot Id : <122> +00:47:31 Transaction Type : RESPONSE +00:47:31 Received From : +00:47:31 ============================================================================ +00:47:31 FNo. Len. Field Value +00:47:31 ============================================================================ +00:47:31 [ 1] [ 4] [0810] +00:47:31 [ 7] [ 10] [0319054638] +00:47:31 [ 11] [ 6] [153246] +00:47:31 [ 39] [ 2] [00] +00:47:31 [ 70] [ 3] [301] +00:47:31 ============================================================================ +00:47:31 Calculate Source COMM Id = 2 +00:47:31 ============================================================================ +00:47:31 + + +waiting on router queue for slot.... +00:47:41 ============================================================================ +00:47:41 Slot Id : <161> +00:47:41 Transaction Type : REQUEST +00:47:41 Received From : +00:47:41 ============================================================================ +00:47:41 FNo. Len. Field Value +00:47:41 ============================================================================ +00:47:41 [ 1] [ 4] [0800] +00:47:41 [ 7] [ 10] [0319054649] +00:47:41 [ 11] [ 6] [153247] +00:47:41 [ 70] [ 3] [301] +00:47:41 ============================================================================ +00:47:41 + + +waiting on router queue for slot.... +00:47:41 Sending to : +00:47:41 ============================================================================ +00:47:41 ============================================================================ +00:47:41 Slot Id : <161> +00:47:41 Transaction Type : RESPONSE +00:47:41 Received From : +00:47:41 ============================================================================ +00:47:41 FNo. Len. Field Value +00:47:41 ============================================================================ +00:47:41 [ 1] [ 4] [0810] +00:47:41 [ 7] [ 10] [0319054649] +00:47:41 [ 11] [ 6] [153247] +00:47:41 [ 39] [ 2] [00] +00:47:41 [ 70] [ 3] [301] +00:47:41 ============================================================================ +00:47:41 Calculate Source COMM Id = 2 +00:47:41 ============================================================================ +00:47:41 + + +waiting on router queue for slot.... +00:47:52 ============================================================================ +00:47:52 Slot Id : <154> +00:47:52 Transaction Type : REQUEST +00:47:52 Received From : +00:47:52 ============================================================================ +00:47:52 FNo. Len. Field Value +00:47:52 ============================================================================ +00:47:52 [ 1] [ 4] [0800] +00:47:52 [ 7] [ 10] [0319054659] +00:47:52 [ 11] [ 6] [153248] +00:47:52 [ 70] [ 3] [301] +00:47:52 ============================================================================ +00:47:52 + + +waiting on router queue for slot.... +00:47:52 Sending to : +00:47:52 ============================================================================ +00:47:52 ============================================================================ +00:47:52 Slot Id : <154> +00:47:52 Transaction Type : RESPONSE +00:47:52 Received From : +00:47:52 ============================================================================ +00:47:52 FNo. Len. Field Value +00:47:52 ============================================================================ +00:47:52 [ 1] [ 4] [0810] +00:47:52 [ 7] [ 10] [0319054659] +00:47:52 [ 11] [ 6] [153248] +00:47:52 [ 39] [ 2] [00] +00:47:52 [ 70] [ 3] [301] +00:47:52 ============================================================================ +00:47:52 Calculate Source COMM Id = 2 +00:47:52 ============================================================================ +00:47:52 + + +waiting on router queue for slot.... +00:48:07 ============================================================================ +00:48:07 Slot Id : <132> +00:48:07 Transaction Type : REQUEST +00:48:07 Received From : +00:48:07 ============================================================================ +00:48:07 FNo. Len. Field Value +00:48:07 ============================================================================ +00:48:07 [ 1] [ 4] [0800] +00:48:07 [ 2] [ 5] [02531] +00:48:07 [ 3] [ 6] [579008] +00:48:07 [ 7] [ 10] [0319174807] +00:48:07 [ 11] [ 6] [806458] +00:48:07 [ 15] [ 10] [0319174807] +00:48:07 [ 37] [ 11] [57900806458] +00:48:07 [ 70] [ 3] [001] +00:48:07 ============================================================================ +00:48:07 + + +waiting on router queue for slot.... +00:48:07 ============================================================================ +00:48:07 Slot Id : <132> +00:48:07 Transaction Type : RESPONSE +00:48:07 Received From : +00:48:07 ============================================================================ +00:48:07 FNo. Len. Field Value +00:48:07 ============================================================================ +00:48:07 [ 1] [ 4] [0810] +00:48:07 [ 7] [ 10] [0319174807] +00:48:07 [ 11] [ 6] [806458] +00:48:07 [ 15] [ 4] [0319] +00:48:07 [ 37] [ 12] [57900806458] +00:48:07 [ 39] [ 2] [00] +00:48:07 [ 70] [ 3] [001] +00:48:07 ============================================================================ +00:48:07 Sending to : +00:48:07 ============================================================================ +00:48:07 + + +waiting on router queue for slot.... +00:48:07 ============================================================================ +00:48:07 Slot Id : <162> +00:48:07 Transaction Type : REQUEST +00:48:07 Received From : +00:48:07 ============================================================================ +00:48:07 FNo. Len. Field Value +00:48:07 ============================================================================ +00:48:07 [ 1] [ 4] [0800] +00:48:07 [ 7] [ 10] [0319054715] +00:48:07 [ 11] [ 6] [153249] +00:48:07 [ 70] [ 3] [301] +00:48:07 ============================================================================ +00:48:07 + + +waiting on router queue for slot.... +00:48:07 Sending to : +00:48:07 ============================================================================ +00:48:07 ============================================================================ +00:48:07 Slot Id : <162> +00:48:07 Transaction Type : RESPONSE +00:48:07 Received From : +00:48:07 ============================================================================ +00:48:07 FNo. Len. Field Value +00:48:07 ============================================================================ +00:48:07 [ 1] [ 4] [0810] +00:48:07 [ 7] [ 10] [0319054715] +00:48:07 [ 11] [ 6] [153249] +00:48:07 [ 39] [ 2] [00] +00:48:07 [ 70] [ 3] [301] +00:48:07 ============================================================================ +00:48:07 Calculate Source COMM Id = 2 +00:48:07 ============================================================================ +00:48:07 + + +waiting on router queue for slot.... +00:48:18 ============================================================================ +00:48:18 Slot Id : <145> +00:48:18 Transaction Type : REQUEST +00:48:18 Received From : +00:48:18 ============================================================================ +00:48:18 FNo. Len. Field Value +00:48:18 ============================================================================ +00:48:18 [ 1] [ 4] [0800] +00:48:18 [ 7] [ 10] [0319054725] +00:48:18 [ 11] [ 6] [153250] +00:48:18 [ 70] [ 3] [301] +00:48:18 ============================================================================ +00:48:18 + + +waiting on router queue for slot.... +00:48:18 Sending to : +00:48:18 ============================================================================ +00:48:18 ============================================================================ +00:48:18 Slot Id : <145> +00:48:18 Transaction Type : RESPONSE +00:48:18 Received From : +00:48:18 ============================================================================ +00:48:18 FNo. Len. Field Value +00:48:18 ============================================================================ +00:48:18 [ 1] [ 4] [0810] +00:48:18 [ 7] [ 10] [0319054725] +00:48:18 [ 11] [ 6] [153250] +00:48:18 [ 39] [ 2] [00] +00:48:18 [ 70] [ 3] [301] +00:48:18 ============================================================================ +00:48:18 Calculate Source COMM Id = 2 +00:48:18 ============================================================================ +00:48:18 + + +waiting on router queue for slot.... +00:48:29 ============================================================================ +00:48:29 Slot Id : <143> +00:48:29 Transaction Type : REQUEST +00:48:29 Received From : +00:48:29 ============================================================================ +00:48:29 FNo. Len. Field Value +00:48:29 ============================================================================ +00:48:29 [ 1] [ 4] [0800] +00:48:29 [ 7] [ 10] [0319054736] +00:48:29 [ 11] [ 6] [153251] +00:48:29 [ 70] [ 3] [301] +00:48:29 ============================================================================ +00:48:29 + + +waiting on router queue for slot.... +00:48:29 Sending to : +00:48:29 ============================================================================ +00:48:29 ============================================================================ +00:48:29 Slot Id : <143> +00:48:29 Transaction Type : RESPONSE +00:48:29 Received From : +00:48:29 ============================================================================ +00:48:29 FNo. Len. Field Value +00:48:29 ============================================================================ +00:48:29 [ 1] [ 4] [0810] +00:48:29 [ 7] [ 10] [0319054736] +00:48:29 [ 11] [ 6] [153251] +00:48:29 [ 39] [ 2] [00] +00:48:29 [ 70] [ 3] [301] +00:48:29 ============================================================================ +00:48:29 Calculate Source COMM Id = 2 +00:48:29 ============================================================================ +00:48:29 + + +waiting on router queue for slot.... +00:48:34 ============================================================================ +00:48:34 Slot Id : <158> +00:48:34 Transaction Type : REQUEST +00:48:34 Received From : +00:48:34 ============================================================================ +00:48:34 FNo. Len. Field Value +00:48:34 ============================================================================ +00:48:34 [ 1] [ 4] [0800] +00:48:34 [ 7] [ 10] [0320080022] +00:48:34 [ 11] [ 6] [010022] +00:48:34 [ 37] [ 12] [57901010022] +00:48:34 [ 70] [ 3] [301] +00:48:34 ============================================================================ +00:48:34 + + +waiting on router queue for slot.... +00:48:34 Sending to : +00:48:34 ============================================================================ +00:48:34 ============================================================================ +00:48:34 Slot Id : <158> +00:48:34 Transaction Type : RESPONSE +00:48:34 Received From : +00:48:34 ============================================================================ +00:48:34 FNo. Len. Field Value +00:48:34 ============================================================================ +00:48:34 [ 1] [ 4] [0810] +00:48:34 [ 7] [ 10] [0320080022] +00:48:34 [ 11] [ 6] [010022] +00:48:34 [ 37] [ 12] [579010100220] +00:48:34 [ 39] [ 2] [00] +00:48:34 [ 70] [ 3] [810] +00:48:34 ============================================================================ +00:48:34 Calculate Source COMM Id = 6 +00:48:34 ============================================================================ +00:48:34 + + +waiting on router queue for slot.... +00:48:39 ============================================================================ +00:48:39 Slot Id : <120> +00:48:39 Transaction Type : REQUEST +00:48:39 Received From : +00:48:39 ============================================================================ +00:48:39 FNo. Len. Field Value +00:48:39 ============================================================================ +00:48:39 [ 1] [ 4] [0800] +00:48:39 [ 7] [ 10] [0319054747] +00:48:39 [ 11] [ 6] [153252] +00:48:39 [ 70] [ 3] [301] +00:48:39 ============================================================================ +00:48:39 + + +waiting on router queue for slot.... +00:48:39 Sending to : +00:48:39 ============================================================================ +00:48:39 ============================================================================ +00:48:39 Slot Id : <120> +00:48:39 Transaction Type : RESPONSE +00:48:39 Received From : +00:48:39 ============================================================================ +00:48:39 FNo. Len. Field Value +00:48:39 ============================================================================ +00:48:39 [ 1] [ 4] [0810] +00:48:39 [ 7] [ 10] [0319054747] +00:48:39 [ 11] [ 6] [153252] +00:48:39 [ 39] [ 2] [00] +00:48:39 [ 70] [ 3] [301] +00:48:39 ============================================================================ +00:48:39 Calculate Source COMM Id = 2 +00:48:39 ============================================================================ +00:48:39 + + +waiting on router queue for slot.... +00:48:51 ============================================================================ +00:48:51 Slot Id : <150> +00:48:51 Transaction Type : REQUEST +00:48:51 Received From : +00:48:51 ============================================================================ +00:48:51 FNo. Len. Field Value +00:48:51 ============================================================================ +00:48:51 [ 1] [ 4] [0800] +00:48:51 [ 7] [ 10] [0319054759] +00:48:51 [ 11] [ 6] [153253] +00:48:51 [ 70] [ 3] [301] +00:48:51 ============================================================================ +00:48:51 + + +waiting on router queue for slot.... +00:48:51 Sending to : +00:48:51 ============================================================================ +00:48:51 ============================================================================ +00:48:51 Slot Id : <150> +00:48:51 Transaction Type : RESPONSE +00:48:51 Received From : +00:48:51 ============================================================================ +00:48:51 FNo. Len. Field Value +00:48:51 ============================================================================ +00:48:51 [ 1] [ 4] [0810] +00:48:51 [ 7] [ 10] [0319054759] +00:48:51 [ 11] [ 6] [153253] +00:48:51 [ 39] [ 2] [00] +00:48:51 [ 70] [ 3] [301] +00:48:51 ============================================================================ +00:48:51 Calculate Source COMM Id = 2 +00:48:51 ============================================================================ +00:48:51 + + +waiting on router queue for slot.... +00:49:06 ============================================================================ +00:49:06 Slot Id : <166> +00:49:06 Transaction Type : REQUEST +00:49:06 Received From : +00:49:06 ============================================================================ +00:49:06 FNo. Len. Field Value +00:49:06 ============================================================================ +00:49:06 [ 1] [ 4] [0800] +00:49:06 [ 7] [ 10] [0319054814] +00:49:06 [ 11] [ 6] [153254] +00:49:06 [ 70] [ 3] [301] +00:49:06 ============================================================================ +00:49:06 + + +waiting on router queue for slot.... +00:49:06 Sending to : +00:49:06 ============================================================================ +00:49:06 ============================================================================ +00:49:06 Slot Id : <166> +00:49:06 Transaction Type : RESPONSE +00:49:06 Received From : +00:49:06 ============================================================================ +00:49:06 FNo. Len. Field Value +00:49:06 ============================================================================ +00:49:06 [ 1] [ 4] [0810] +00:49:06 [ 7] [ 10] [0319054814] +00:49:06 [ 11] [ 6] [153254] +00:49:06 [ 39] [ 2] [00] +00:49:06 [ 70] [ 3] [301] +00:49:06 ============================================================================ +00:49:06 Calculate Source COMM Id = 2 +00:49:06 ============================================================================ +00:49:06 + + +waiting on router queue for slot.... +00:49:09 ============================================================================ +00:49:09 Slot Id : <130> +00:49:09 Transaction Type : REQUEST +00:49:09 Received From : +00:49:09 ============================================================================ +00:49:09 FNo. Len. Field Value +00:49:09 ============================================================================ +00:49:09 [ 1] [ 4] [0800] +00:49:09 [ 2] [ 5] [02531] +00:49:09 [ 3] [ 6] [579008] +00:49:09 [ 7] [ 10] [0319174909] +00:49:09 [ 11] [ 6] [806459] +00:49:09 [ 15] [ 10] [0319174909] +00:49:09 [ 37] [ 11] [57900806459] +00:49:09 [ 70] [ 3] [001] +00:49:09 ============================================================================ +00:49:09 + + +waiting on router queue for slot.... +00:49:09 ============================================================================ +00:49:09 Slot Id : <130> +00:49:09 Transaction Type : RESPONSE +00:49:09 Received From : +00:49:09 ============================================================================ +00:49:09 FNo. Len. Field Value +00:49:09 ============================================================================ +00:49:09 [ 1] [ 4] [0810] +00:49:09 [ 7] [ 10] [0319174909] +00:49:09 [ 11] [ 6] [806459] +00:49:09 [ 15] [ 4] [0319] +00:49:09 [ 37] [ 12] [57900806459] +00:49:09 [ 39] [ 2] [00] +00:49:09 [ 70] [ 3] [001] +00:49:09 ============================================================================ +00:49:09 Sending to : +00:49:09 ============================================================================ +00:49:09 + + +waiting on router queue for slot.... +00:49:17 ============================================================================ +00:49:17 Slot Id : <133> +00:49:17 Transaction Type : REQUEST +00:49:17 Received From : +00:49:17 ============================================================================ +00:49:17 FNo. Len. Field Value +00:49:17 ============================================================================ +00:49:17 [ 1] [ 4] [0800] +00:49:17 [ 7] [ 10] [0319054824] +00:49:17 [ 11] [ 6] [153255] +00:49:17 [ 70] [ 3] [301] +00:49:17 ============================================================================ +00:49:17 + + +waiting on router queue for slot.... +00:49:17 Sending to : +00:49:17 ============================================================================ +00:49:17 ============================================================================ +00:49:17 Slot Id : <133> +00:49:17 Transaction Type : RESPONSE +00:49:17 Received From : +00:49:17 ============================================================================ +00:49:17 FNo. Len. Field Value +00:49:17 ============================================================================ +00:49:17 [ 1] [ 4] [0810] +00:49:17 [ 7] [ 10] [0319054824] +00:49:17 [ 11] [ 6] [153255] +00:49:17 [ 39] [ 2] [00] +00:49:17 [ 70] [ 3] [301] +00:49:17 ============================================================================ +00:49:17 Calculate Source COMM Id = 2 +00:49:17 ============================================================================ +00:49:17 + + +waiting on router queue for slot.... +00:49:33 ============================================================================ +00:49:33 Slot Id : <142> +00:49:33 Transaction Type : REQUEST +00:49:33 Received From : +00:49:33 ============================================================================ +00:49:33 FNo. Len. Field Value +00:49:33 ============================================================================ +00:49:33 [ 1] [ 4] [0800] +00:49:33 [ 7] [ 10] [0319054840] +00:49:33 [ 11] [ 6] [153256] +00:49:33 [ 70] [ 3] [301] +00:49:33 ============================================================================ +00:49:33 + + +waiting on router queue for slot.... +00:49:33 Sending to : +00:49:33 ============================================================================ +00:49:33 ============================================================================ +00:49:33 Slot Id : <142> +00:49:33 Transaction Type : RESPONSE +00:49:33 Received From : +00:49:33 ============================================================================ +00:49:33 FNo. Len. Field Value +00:49:33 ============================================================================ +00:49:33 [ 1] [ 4] [0810] +00:49:33 [ 7] [ 10] [0319054840] +00:49:33 [ 11] [ 6] [153256] +00:49:33 [ 39] [ 2] [00] +00:49:33 [ 70] [ 3] [301] +00:49:33 ============================================================================ +00:49:33 Calculate Source COMM Id = 2 +00:49:33 ============================================================================ +00:49:33 + + +waiting on router queue for slot.... +00:49:39 ============================================================================ +00:49:39 Slot Id : <153> +00:49:39 Transaction Type : REQUEST +00:49:39 Received From : +00:49:39 ============================================================================ +00:49:39 FNo. Len. Field Value +00:49:39 ============================================================================ +00:49:39 [ 1] [ 4] [0800] +00:49:39 [ 7] [ 10] [0320080127] +00:49:39 [ 11] [ 6] [010127] +00:49:39 [ 37] [ 12] [57901010127] +00:49:39 [ 70] [ 3] [301] +00:49:39 ============================================================================ +00:49:39 + + +waiting on router queue for slot.... +00:49:39 Sending to : +00:49:39 ============================================================================ +00:49:39 ============================================================================ +00:49:39 Slot Id : <153> +00:49:39 Transaction Type : RESPONSE +00:49:39 Received From : +00:49:39 ============================================================================ +00:49:39 FNo. Len. Field Value +00:49:39 ============================================================================ +00:49:39 [ 1] [ 4] [0810] +00:49:39 [ 7] [ 10] [0320080127] +00:49:39 [ 11] [ 6] [010127] +00:49:39 [ 37] [ 12] [579010101270] +00:49:39 [ 39] [ 2] [00] +00:49:39 [ 70] [ 3] [810] +00:49:39 ============================================================================ +00:49:39 Calculate Source COMM Id = 6 +00:49:39 ============================================================================ +00:49:39 + + +waiting on router queue for slot.... +00:49:48 ============================================================================ +00:49:48 Slot Id : <110> +00:49:48 Transaction Type : REQUEST +00:49:48 Received From : +00:49:48 ============================================================================ +00:49:48 FNo. Len. Field Value +00:49:48 ============================================================================ +00:49:48 [ 1] [ 4] [0800] +00:49:48 [ 7] [ 10] [0319054856] +00:49:48 [ 11] [ 6] [153257] +00:49:48 [ 70] [ 3] [301] +00:49:48 ============================================================================ +00:49:48 + + +waiting on router queue for slot.... +00:49:48 Sending to : +00:49:48 ============================================================================ +00:49:48 ============================================================================ +00:49:48 Slot Id : <110> +00:49:48 Transaction Type : RESPONSE +00:49:48 Received From : +00:49:48 ============================================================================ +00:49:48 FNo. Len. Field Value +00:49:48 ============================================================================ +00:49:48 [ 1] [ 4] [0810] +00:49:48 [ 7] [ 10] [0319054856] +00:49:48 [ 11] [ 6] [153257] +00:49:48 [ 39] [ 2] [00] +00:49:48 [ 70] [ 3] [301] +00:49:48 ============================================================================ +00:49:48 Calculate Source COMM Id = 2 +00:49:48 ============================================================================ +00:49:48 + + +waiting on router queue for slot.... +00:49:56 ============================================================================ +00:49:56 Slot Id : <167> +00:49:56 Transaction Type : REQUEST +00:49:56 Received From : +00:49:56 ============================================================================ +00:49:56 FNo. Len. Field Value +00:49:56 ============================================================================ +00:49:56 [ 1] [ 4] [0800] +00:49:56 [ 7] [ 10] [0319175742] +00:49:56 [ 11] [ 6] [046113] +00:49:56 [ 37] [ 12] [57900046113] +00:49:56 [ 70] [ 3] [301] +00:49:56 ============================================================================ +00:49:56 + + +waiting on router queue for slot.... +00:49:56 Sending to : +00:49:56 ============================================================================ +00:49:56 ============================================================================ +00:49:56 Slot Id : <167> +00:49:56 Transaction Type : RESPONSE +00:49:56 Received From : +00:49:56 ============================================================================ +00:49:56 FNo. Len. Field Value +00:49:56 ============================================================================ +00:49:56 [ 1] [ 4] [0810] +00:49:56 [ 7] [ 10] [0319175742] +00:49:56 [ 11] [ 6] [046113] +00:49:56 [ 37] [ 12] [579000461130] +00:49:56 [ 39] [ 2] [00] +00:49:56 [ 70] [ 3] [810] +00:49:56 ============================================================================ +00:49:56 Calculate Source COMM Id = 1 +00:49:56 ============================================================================ +00:49:56 + + +waiting on router queue for slot.... +00:50:01 ============================================================================ +00:50:01 Slot Id : <137> +00:50:01 Transaction Type : REQUEST +00:50:01 Received From : +00:50:01 ============================================================================ +00:50:01 FNo. Len. Field Value +00:50:01 ============================================================================ +00:50:01 [ 1] [ 4] [0800] +00:50:01 [ 7] [ 10] [0319054908] +00:50:01 [ 11] [ 6] [153258] +00:50:01 [ 70] [ 3] [301] +00:50:01 ============================================================================ +00:50:01 + + +waiting on router queue for slot.... +00:50:01 Sending to : +00:50:01 ============================================================================ +00:50:01 ============================================================================ +00:50:01 Slot Id : <137> +00:50:01 Transaction Type : RESPONSE +00:50:01 Received From : +00:50:01 ============================================================================ +00:50:01 FNo. Len. Field Value +00:50:01 ============================================================================ +00:50:01 [ 1] [ 4] [0810] +00:50:01 [ 7] [ 10] [0319054908] +00:50:01 [ 11] [ 6] [153258] +00:50:01 [ 39] [ 2] [00] +00:50:01 [ 70] [ 3] [301] +00:50:01 ============================================================================ +00:50:01 Calculate Source COMM Id = 2 +00:50:01 ============================================================================ +00:50:01 + + +waiting on router queue for slot.... +00:50:11 ============================================================================ +00:50:11 Slot Id : <128> +00:50:11 Transaction Type : REQUEST +00:50:11 Received From : +00:50:11 ============================================================================ +00:50:11 FNo. Len. Field Value +00:50:11 ============================================================================ +00:50:11 [ 1] [ 4] [0800] +00:50:11 [ 2] [ 5] [02531] +00:50:11 [ 3] [ 6] [579008] +00:50:11 [ 7] [ 10] [0319175011] +00:50:11 [ 11] [ 6] [806460] +00:50:11 [ 15] [ 10] [0319175011] +00:50:11 [ 37] [ 11] [57900806460] +00:50:11 [ 70] [ 3] [001] +00:50:11 ============================================================================ +00:50:11 + + +waiting on router queue for slot.... +00:50:11 ============================================================================ +00:50:11 Slot Id : <128> +00:50:11 Transaction Type : RESPONSE +00:50:11 Received From : +00:50:11 ============================================================================ +00:50:11 FNo. Len. Field Value +00:50:11 ============================================================================ +00:50:11 [ 1] [ 4] [0810] +00:50:11 [ 7] [ 10] [0319175011] +00:50:11 [ 11] [ 6] [806460] +00:50:11 [ 15] [ 4] [0319] +00:50:11 [ 37] [ 12] [57900806460] +00:50:11 [ 39] [ 2] [00] +00:50:11 [ 70] [ 3] [001] +00:50:11 ============================================================================ +00:50:11 Sending to : +00:50:11 ============================================================================ +00:50:11 + + +waiting on router queue for slot.... +00:50:16 ============================================================================ +00:50:16 Slot Id : <146> +00:50:16 Transaction Type : REQUEST +00:50:16 Received From : +00:50:16 ============================================================================ +00:50:16 FNo. Len. Field Value +00:50:16 ============================================================================ +00:50:16 [ 1] [ 4] [0800] +00:50:16 [ 7] [ 10] [0319054923] +00:50:16 [ 11] [ 6] [153259] +00:50:16 [ 70] [ 3] [301] +00:50:16 ============================================================================ +00:50:16 + + +waiting on router queue for slot.... +00:50:16 Sending to : +00:50:16 ============================================================================ +00:50:16 ============================================================================ +00:50:16 Slot Id : <146> +00:50:16 Transaction Type : RESPONSE +00:50:16 Received From : +00:50:16 ============================================================================ +00:50:16 FNo. Len. Field Value +00:50:16 ============================================================================ +00:50:16 [ 1] [ 4] [0810] +00:50:16 [ 7] [ 10] [0319054923] +00:50:16 [ 11] [ 6] [153259] +00:50:16 [ 39] [ 2] [00] +00:50:16 [ 70] [ 3] [301] +00:50:16 ============================================================================ +00:50:16 Calculate Source COMM Id = 2 +00:50:16 ============================================================================ +00:50:16 + + +waiting on router queue for slot.... +00:50:18 ============================================================================ +00:50:18 Slot Id : <159> +00:50:18 Transaction Type : REQUEST +00:50:18 Received From : +00:50:18 ============================================================================ +00:50:18 FNo. Len. Field Value +00:50:18 ============================================================================ +00:50:18 [ 1] [ 4] [0800] +00:50:18 [ 7] [ 10] [0320005005] +00:50:18 [ 11] [ 6] [007149] +00:50:18 [ 37] [ 12] [507900007149] +00:50:18 [ 70] [ 3] [ ] +00:50:18 ============================================================================ +00:50:18 + + +waiting on router queue for slot.... +00:50:18 Sending to : +00:50:18 ============================================================================ +00:50:18 ============================================================================ +00:50:18 Slot Id : <159> +00:50:18 Transaction Type : RESPONSE +00:50:18 Received From : +00:50:18 ============================================================================ +00:50:18 FNo. Len. Field Value +00:50:18 ============================================================================ +00:50:18 [ 1] [ 4] [0810] +00:50:18 [ 7] [ 10] [0320005005] +00:50:18 [ 11] [ 6] [007149] +00:50:18 [ 37] [ 12] [507900007149] +00:50:18 [ 39] [ 2] [91] +00:50:18 [ 70] [ 3] [ ] +00:50:18 ============================================================================ +00:50:18 Calculate Source COMM Id = 3 +00:50:18 ============================================================================ +00:50:18 + + +waiting on router queue for slot.... +00:50:26 ============================================================================ +00:50:26 Slot Id : <175> +00:50:26 Transaction Type : REQUEST +00:50:26 Received From : +00:50:26 ============================================================================ +00:50:26 FNo. Len. Field Value +00:50:26 ============================================================================ +00:50:26 [ 1] [ 4] [0800] +00:50:26 [ 7] [ 10] [0319054934] +00:50:26 [ 11] [ 6] [153260] +00:50:26 [ 70] [ 3] [301] +00:50:26 ============================================================================ +00:50:26 + + +waiting on router queue for slot.... +00:50:26 Sending to : +00:50:26 ============================================================================ +00:50:26 ============================================================================ +00:50:26 Slot Id : <175> +00:50:26 Transaction Type : RESPONSE +00:50:26 Received From : +00:50:26 ============================================================================ +00:50:26 FNo. Len. Field Value +00:50:26 ============================================================================ +00:50:26 [ 1] [ 4] [0810] +00:50:26 [ 7] [ 10] [0319054934] +00:50:26 [ 11] [ 6] [153260] +00:50:26 [ 39] [ 2] [00] +00:50:26 [ 70] [ 3] [301] +00:50:26 ============================================================================ +00:50:26 Calculate Source COMM Id = 2 +00:50:26 ============================================================================ +00:50:26 + + +waiting on router queue for slot.... +00:50:42 ============================================================================ +00:50:42 Slot Id : <170> +00:50:42 Transaction Type : REQUEST +00:50:42 Received From : +00:50:42 ============================================================================ +00:50:42 FNo. Len. Field Value +00:50:42 ============================================================================ +00:50:42 [ 1] [ 4] [0800] +00:50:42 [ 7] [ 10] [0319054949] +00:50:42 [ 11] [ 6] [153261] +00:50:42 [ 70] [ 3] [301] +00:50:42 ============================================================================ +00:50:42 + + +waiting on router queue for slot.... +00:50:42 Sending to : +00:50:42 ============================================================================ +00:50:42 ============================================================================ +00:50:42 Slot Id : <170> +00:50:42 Transaction Type : RESPONSE +00:50:42 Received From : +00:50:42 ============================================================================ +00:50:42 FNo. Len. Field Value +00:50:42 ============================================================================ +00:50:42 [ 1] [ 4] [0810] +00:50:42 [ 7] [ 10] [0319054949] +00:50:42 [ 11] [ 6] [153261] +00:50:42 [ 39] [ 2] [00] +00:50:42 [ 70] [ 3] [301] +00:50:42 ============================================================================ +00:50:42 Calculate Source COMM Id = 2 +00:50:42 ============================================================================ +00:50:42 + + +waiting on router queue for slot.... +00:50:44 ============================================================================ +00:50:44 Slot Id : <141> +00:50:44 Transaction Type : REQUEST +00:50:44 Received From : +00:50:44 ============================================================================ +00:50:44 FNo. Len. Field Value +00:50:44 ============================================================================ +00:50:44 [ 1] [ 4] [0800] +00:50:44 [ 7] [ 10] [0320080232] +00:50:44 [ 11] [ 6] [010232] +00:50:44 [ 37] [ 12] [57901010232] +00:50:44 [ 70] [ 3] [301] +00:50:44 ============================================================================ +00:50:44 + + +waiting on router queue for slot.... +00:50:44 Sending to : +00:50:44 ============================================================================ +00:50:44 ============================================================================ +00:50:44 Slot Id : <141> +00:50:44 Transaction Type : RESPONSE +00:50:44 Received From : +00:50:44 ============================================================================ +00:50:44 FNo. Len. Field Value +00:50:44 ============================================================================ +00:50:44 [ 1] [ 4] [0810] +00:50:44 [ 7] [ 10] [0320080232] +00:50:44 [ 11] [ 6] [010232] +00:50:44 [ 37] [ 12] [579010102320] +00:50:44 [ 39] [ 2] [00] +00:50:44 [ 70] [ 3] [810] +00:50:44 ============================================================================ +00:50:44 Calculate Source COMM Id = 6 +00:50:44 ============================================================================ +00:50:44 + + +waiting on router queue for slot.... +00:50:53 ============================================================================ +00:50:53 Slot Id : <151> +00:50:53 Transaction Type : REQUEST +00:50:53 Received From : +00:50:53 ============================================================================ +00:50:53 FNo. Len. Field Value +00:50:53 ============================================================================ +00:50:53 [ 1] [ 4] [0800] +00:50:53 [ 7] [ 10] [0319054959] +00:50:53 [ 11] [ 6] [153262] +00:50:53 [ 70] [ 3] [301] +00:50:53 ============================================================================ +00:50:53 + + +waiting on router queue for slot.... +00:50:53 Sending to : +00:50:53 ============================================================================ +00:50:53 ============================================================================ +00:50:53 Slot Id : <151> +00:50:53 Transaction Type : RESPONSE +00:50:53 Received From : +00:50:53 ============================================================================ +00:50:53 FNo. Len. Field Value +00:50:53 ============================================================================ +00:50:53 [ 1] [ 4] [0810] +00:50:53 [ 7] [ 10] [0319054959] +00:50:53 [ 11] [ 6] [153262] +00:50:53 [ 39] [ 2] [00] +00:50:53 [ 70] [ 3] [301] +00:50:53 ============================================================================ +00:50:53 Calculate Source COMM Id = 2 +00:50:53 ============================================================================ +00:50:53 + + +waiting on router queue for slot.... +00:51:07 ============================================================================ +00:51:07 Slot Id : <164> +00:51:07 Transaction Type : REQUEST +00:51:07 Received From : +00:51:07 ============================================================================ +00:51:07 FNo. Len. Field Value +00:51:07 ============================================================================ +00:51:07 [ 1] [ 4] [0800] +00:51:07 [ 7] [ 10] [0319055014] +00:51:07 [ 11] [ 6] [153263] +00:51:07 [ 70] [ 3] [301] +00:51:07 ============================================================================ +00:51:07 + + +waiting on router queue for slot.... +00:51:07 Sending to : +00:51:07 ============================================================================ +00:51:07 ============================================================================ +00:51:07 Slot Id : <164> +00:51:07 Transaction Type : RESPONSE +00:51:07 Received From : +00:51:07 ============================================================================ +00:51:07 FNo. Len. Field Value +00:51:07 ============================================================================ +00:51:07 [ 1] [ 4] [0810] +00:51:07 [ 7] [ 10] [0319055014] +00:51:07 [ 11] [ 6] [153263] +00:51:07 [ 39] [ 2] [00] +00:51:07 [ 70] [ 3] [301] +00:51:07 ============================================================================ +00:51:07 Calculate Source COMM Id = 2 +00:51:07 ============================================================================ +00:51:07 + + +waiting on router queue for slot.... +00:51:13 ============================================================================ +00:51:13 Slot Id : <157> +00:51:13 Transaction Type : REQUEST +00:51:13 Received From : +00:51:13 ============================================================================ +00:51:13 FNo. Len. Field Value +00:51:13 ============================================================================ +00:51:13 [ 1] [ 4] [0800] +00:51:13 [ 2] [ 5] [02531] +00:51:13 [ 3] [ 6] [579008] +00:51:13 [ 7] [ 10] [0319175113] +00:51:13 [ 11] [ 6] [806461] +00:51:13 [ 15] [ 10] [0319175113] +00:51:13 [ 37] [ 11] [57900806461] +00:51:13 [ 70] [ 3] [001] +00:51:13 ============================================================================ +00:51:13 + + +waiting on router queue for slot.... +00:51:13 ============================================================================ +00:51:13 Slot Id : <157> +00:51:13 Transaction Type : RESPONSE +00:51:13 Received From : +00:51:13 ============================================================================ +00:51:13 FNo. Len. Field Value +00:51:13 ============================================================================ +00:51:13 [ 1] [ 4] [0810] +00:51:13 [ 7] [ 10] [0319175113] +00:51:13 [ 11] [ 6] [806461] +00:51:13 [ 15] [ 4] [0319] +00:51:13 [ 37] [ 12] [57900806461] +00:51:13 [ 39] [ 2] [00] +00:51:13 [ 70] [ 3] [001] +00:51:13 ============================================================================ +00:51:13 Sending to : +00:51:13 ============================================================================ +00:51:13 + + +waiting on router queue for slot.... +00:51:17 ============================================================================ +00:51:17 Slot Id : <172> +00:51:17 Transaction Type : REQUEST +00:51:17 Received From : +00:51:17 ============================================================================ +00:51:17 FNo. Len. Field Value +00:51:17 ============================================================================ +00:51:17 [ 1] [ 4] [0800] +00:51:17 [ 7] [ 10] [0319055025] +00:51:17 [ 11] [ 6] [153264] +00:51:17 [ 70] [ 3] [301] +00:51:17 ============================================================================ +00:51:17 + + +waiting on router queue for slot.... +00:51:17 Sending to : +00:51:17 ============================================================================ +00:51:17 ============================================================================ +00:51:17 Slot Id : <172> +00:51:17 Transaction Type : RESPONSE +00:51:17 Received From : +00:51:17 ============================================================================ +00:51:17 FNo. Len. Field Value +00:51:17 ============================================================================ +00:51:17 [ 1] [ 4] [0810] +00:51:17 [ 7] [ 10] [0319055025] +00:51:17 [ 11] [ 6] [153264] +00:51:17 [ 39] [ 2] [00] +00:51:17 [ 70] [ 3] [301] +00:51:17 ============================================================================ +00:51:17 Calculate Source COMM Id = 2 +00:51:17 ============================================================================ +00:51:17 + + +waiting on router queue for slot.... +00:51:21 ============================================================================ +00:51:21 Slot Id : <148> +00:51:21 Transaction Type : REQUEST +00:51:21 Received From : +00:51:21 ============================================================================ +00:51:21 FNo. Len. Field Value +00:51:21 ============================================================================ +00:51:21 [ 1] [ 4] [0800] +00:51:21 [ 7] [ 10] [0319174912] +00:51:21 [ 11] [ 6] [007423] +00:51:21 [ 37] [ 12] [57900007423] +00:51:21 [ 70] [ 3] [301] +00:51:21 ============================================================================ +00:51:21 + + +waiting on router queue for slot.... +00:51:21 Sending to : +00:51:21 ============================================================================ +00:51:21 ============================================================================ +00:51:21 Slot Id : <148> +00:51:21 Transaction Type : RESPONSE +00:51:21 Received From : +00:51:21 ============================================================================ +00:51:21 FNo. Len. Field Value +00:51:21 ============================================================================ +00:51:21 [ 1] [ 4] [0810] +00:51:21 [ 7] [ 10] [0319174912] +00:51:21 [ 11] [ 6] [007423] +00:51:21 [ 37] [ 12] [579000074230] +00:51:21 [ 39] [ 2] [00] +00:51:21 [ 70] [ 3] [810] +00:51:21 ============================================================================ +00:51:21 Calculate Source COMM Id = 4 +00:51:21 ============================================================================ +00:51:21 + + +waiting on router queue for slot.... +00:51:28 ============================================================================ +00:51:28 Slot Id : <182> +00:51:28 Transaction Type : REQUEST +00:51:28 Received From : +00:51:28 ============================================================================ +00:51:28 FNo. Len. Field Value +00:51:28 ============================================================================ +00:51:28 [ 1] [ 4] [0800] +00:51:28 [ 7] [ 10] [0319055036] +00:51:28 [ 11] [ 6] [153265] +00:51:28 [ 70] [ 3] [301] +00:51:28 ============================================================================ +00:51:28 + + +waiting on router queue for slot.... +00:51:28 Sending to : +00:51:28 ============================================================================ +00:51:28 ============================================================================ +00:51:28 Slot Id : <182> +00:51:28 Transaction Type : RESPONSE +00:51:28 Received From : +00:51:28 ============================================================================ +00:51:28 FNo. Len. Field Value +00:51:28 ============================================================================ +00:51:28 [ 1] [ 4] [0810] +00:51:28 [ 7] [ 10] [0319055036] +00:51:28 [ 11] [ 6] [153265] +00:51:28 [ 39] [ 2] [00] +00:51:28 [ 70] [ 3] [301] +00:51:28 ============================================================================ +00:51:28 Calculate Source COMM Id = 2 +00:51:28 ============================================================================ +00:51:28 + + +waiting on router queue for slot.... +00:51:44 ============================================================================ +00:51:44 Slot Id : <186> +00:51:44 Transaction Type : REQUEST +00:51:44 Received From : +00:51:44 ============================================================================ +00:51:44 FNo. Len. Field Value +00:51:44 ============================================================================ +00:51:44 [ 1] [ 4] [0800] +00:51:44 [ 7] [ 10] [0319055051] +00:51:44 [ 11] [ 6] [153266] +00:51:44 [ 70] [ 3] [301] +00:51:44 ============================================================================ +00:51:44 + + +waiting on router queue for slot.... +00:51:44 Sending to : +00:51:44 ============================================================================ +00:51:44 ============================================================================ +00:51:44 Slot Id : <186> +00:51:44 Transaction Type : RESPONSE +00:51:44 Received From : +00:51:44 ============================================================================ +00:51:44 FNo. Len. Field Value +00:51:44 ============================================================================ +00:51:44 [ 1] [ 4] [0810] +00:51:44 [ 7] [ 10] [0319055051] +00:51:44 [ 11] [ 6] [153266] +00:51:44 [ 39] [ 2] [00] +00:51:44 [ 70] [ 3] [301] +00:51:44 ============================================================================ +00:51:44 Calculate Source COMM Id = 2 +00:51:44 ============================================================================ +00:51:44 + + +waiting on router queue for slot.... +00:51:49 ============================================================================ +00:51:49 Slot Id : <126> +00:51:49 Transaction Type : REQUEST +00:51:49 Received From : +00:51:49 ============================================================================ +00:51:49 FNo. Len. Field Value +00:51:49 ============================================================================ +00:51:49 [ 1] [ 4] [0800] +00:51:49 [ 7] [ 10] [0320080337] +00:51:49 [ 11] [ 6] [010337] +00:51:49 [ 37] [ 12] [57901010337] +00:51:49 [ 70] [ 3] [301] +00:51:49 ============================================================================ +00:51:49 + + +waiting on router queue for slot.... +00:51:49 Sending to : +00:51:49 ============================================================================ +00:51:49 ============================================================================ +00:51:49 Slot Id : <126> +00:51:49 Transaction Type : RESPONSE +00:51:49 Received From : +00:51:49 ============================================================================ +00:51:49 FNo. Len. Field Value +00:51:49 ============================================================================ +00:51:49 [ 1] [ 4] [0810] +00:51:49 [ 7] [ 10] [0320080337] +00:51:49 [ 11] [ 6] [010337] +00:51:49 [ 37] [ 12] [579010103370] +00:51:49 [ 39] [ 2] [00] +00:51:49 [ 70] [ 3] [810] +00:51:49 ============================================================================ +00:51:49 Calculate Source COMM Id = 6 +00:51:49 ============================================================================ +00:51:49 + + +waiting on router queue for slot.... +00:51:55 ============================================================================ +00:51:55 Slot Id : <171> +00:51:55 Transaction Type : REQUEST +00:51:55 Received From : +00:51:55 ============================================================================ +00:51:55 FNo. Len. Field Value +00:51:55 ============================================================================ +00:51:55 [ 1] [ 4] [0800] +00:51:55 [ 7] [ 10] [0319055102] +00:51:55 [ 11] [ 6] [153267] +00:51:55 [ 70] [ 3] [301] +00:51:55 ============================================================================ +00:51:55 + + +waiting on router queue for slot.... +00:51:55 Sending to : +00:51:55 ============================================================================ +00:51:55 ============================================================================ +00:51:55 Slot Id : <171> +00:51:55 Transaction Type : RESPONSE +00:51:55 Received From : +00:51:55 ============================================================================ +00:51:55 FNo. Len. Field Value +00:51:55 ============================================================================ +00:51:55 [ 1] [ 4] [0810] +00:51:55 [ 7] [ 10] [0319055102] +00:51:55 [ 11] [ 6] [153267] +00:51:55 [ 39] [ 2] [00] +00:51:55 [ 70] [ 3] [301] +00:51:55 ============================================================================ +00:51:55 Calculate Source COMM Id = 2 +00:51:55 ============================================================================ +00:51:55 + + +waiting on router queue for slot.... +00:52:05 ============================================================================ +00:52:05 Slot Id : <119> +00:52:05 Transaction Type : REQUEST +00:52:05 Received From : +00:52:05 ============================================================================ +00:52:05 FNo. Len. Field Value +00:52:05 ============================================================================ +00:52:05 [ 1] [ 4] [0800] +00:52:05 [ 7] [ 10] [0319055112] +00:52:05 [ 11] [ 6] [153268] +00:52:05 [ 70] [ 3] [301] +00:52:05 ============================================================================ +00:52:05 + + +waiting on router queue for slot.... +00:52:05 Sending to : +00:52:05 ============================================================================ +00:52:05 ============================================================================ +00:52:05 Slot Id : <119> +00:52:05 Transaction Type : RESPONSE +00:52:05 Received From : +00:52:05 ============================================================================ +00:52:05 FNo. Len. Field Value +00:52:05 ============================================================================ +00:52:05 [ 1] [ 4] [0810] +00:52:05 [ 7] [ 10] [0319055112] +00:52:05 [ 11] [ 6] [153268] +00:52:05 [ 39] [ 2] [00] +00:52:05 [ 70] [ 3] [301] +00:52:05 ============================================================================ +00:52:05 Calculate Source COMM Id = 2 +00:52:05 ============================================================================ +00:52:05 + + +waiting on router queue for slot.... +00:52:15 ============================================================================ +00:52:15 Slot Id : <156> +00:52:15 Transaction Type : REQUEST +00:52:15 Received From : +00:52:15 ============================================================================ +00:52:15 FNo. Len. Field Value +00:52:15 ============================================================================ +00:52:15 [ 1] [ 4] [0800] +00:52:15 [ 2] [ 5] [02531] +00:52:15 [ 3] [ 6] [579008] +00:52:15 [ 7] [ 10] [0319175215] +00:52:15 [ 11] [ 6] [806462] +00:52:15 [ 15] [ 10] [0319175215] +00:52:15 [ 37] [ 11] [57900806462] +00:52:15 [ 70] [ 3] [001] +00:52:15 ============================================================================ +00:52:15 + + +waiting on router queue for slot.... +00:52:15 ============================================================================ +00:52:15 Slot Id : <156> +00:52:15 Transaction Type : RESPONSE +00:52:15 Received From : +00:52:15 ============================================================================ +00:52:15 FNo. Len. Field Value +00:52:15 ============================================================================ +00:52:15 [ 1] [ 4] [0810] +00:52:15 [ 7] [ 10] [0319175215] +00:52:15 [ 11] [ 6] [806462] +00:52:15 [ 15] [ 4] [0319] +00:52:15 [ 37] [ 12] [57900806462] +00:52:15 [ 39] [ 2] [00] +00:52:15 [ 70] [ 3] [001] +00:52:15 ============================================================================ +00:52:15 Sending to : +00:52:15 ============================================================================ +00:52:15 + + +waiting on router queue for slot.... +00:52:15 ============================================================================ +00:52:15 Slot Id : <139> +00:52:15 Transaction Type : REQUEST +00:52:15 Received From : +00:52:15 ============================================================================ +00:52:15 FNo. Len. Field Value +00:52:15 ============================================================================ +00:52:15 [ 1] [ 4] [0800] +00:52:15 [ 7] [ 10] [0319055123] +00:52:15 [ 11] [ 6] [153269] +00:52:15 [ 70] [ 3] [301] +00:52:15 ============================================================================ +00:52:15 + + +waiting on router queue for slot.... +00:52:15 Sending to : +00:52:15 ============================================================================ +00:52:15 ============================================================================ +00:52:15 Slot Id : <139> +00:52:15 Transaction Type : RESPONSE +00:52:15 Received From : +00:52:15 ============================================================================ +00:52:15 FNo. Len. Field Value +00:52:15 ============================================================================ +00:52:15 [ 1] [ 4] [0810] +00:52:15 [ 7] [ 10] [0319055123] +00:52:15 [ 11] [ 6] [153269] +00:52:15 [ 39] [ 2] [00] +00:52:15 [ 70] [ 3] [301] +00:52:15 ============================================================================ +00:52:15 Calculate Source COMM Id = 2 +00:52:15 ============================================================================ +00:52:15 + + +waiting on router queue for slot.... +00:52:31 ============================================================================ +00:52:31 Slot Id : <176> +00:52:31 Transaction Type : REQUEST +00:52:31 Received From : +00:52:31 ============================================================================ +00:52:31 FNo. Len. Field Value +00:52:31 ============================================================================ +00:52:31 [ 1] [ 4] [0800] +00:52:31 [ 7] [ 10] [0319055138] +00:52:31 [ 11] [ 6] [153270] +00:52:31 [ 70] [ 3] [301] +00:52:31 ============================================================================ +00:52:31 + + +waiting on router queue for slot.... +00:52:31 Sending to : +00:52:31 ============================================================================ +00:52:31 ============================================================================ +00:52:31 Slot Id : <176> +00:52:31 Transaction Type : RESPONSE +00:52:31 Received From : +00:52:31 ============================================================================ +00:52:31 FNo. Len. Field Value +00:52:31 ============================================================================ +00:52:31 [ 1] [ 4] [0810] +00:52:31 [ 7] [ 10] [0319055138] +00:52:31 [ 11] [ 6] [153270] +00:52:31 [ 39] [ 2] [00] +00:52:31 [ 70] [ 3] [301] +00:52:31 ============================================================================ +00:52:31 Calculate Source COMM Id = 2 +00:52:31 ============================================================================ +00:52:31 + + +waiting on router queue for slot.... +00:52:46 ============================================================================ +00:52:46 Slot Id : <202> +00:52:46 Transaction Type : REQUEST +00:52:46 Received From : +00:52:46 ============================================================================ +00:52:46 FNo. Len. Field Value +00:52:46 ============================================================================ +00:52:46 [ 1] [ 4] [0800] +00:52:46 [ 7] [ 10] [0319055153] +00:52:46 [ 11] [ 6] [153271] +00:52:46 [ 70] [ 3] [301] +00:52:46 ============================================================================ +00:52:46 + + +waiting on router queue for slot.... +00:52:46 Sending to : +00:52:46 ============================================================================ +00:52:46 ============================================================================ +00:52:46 Slot Id : <202> +00:52:46 Transaction Type : RESPONSE +00:52:46 Received From : +00:52:46 ============================================================================ +00:52:46 FNo. Len. Field Value +00:52:46 ============================================================================ +00:52:46 [ 1] [ 4] [0810] +00:52:46 [ 7] [ 10] [0319055153] +00:52:46 [ 11] [ 6] [153271] +00:52:46 [ 39] [ 2] [00] +00:52:46 [ 70] [ 3] [301] +00:52:46 ============================================================================ +00:52:46 Calculate Source COMM Id = 2 +00:52:46 ============================================================================ +00:52:46 + + +waiting on router queue for slot.... +00:52:54 ============================================================================ +00:52:54 Slot Id : <187> +00:52:54 Transaction Type : REQUEST +00:52:54 Received From : +00:52:54 ============================================================================ +00:52:54 FNo. Len. Field Value +00:52:54 ============================================================================ +00:52:54 [ 1] [ 4] [0800] +00:52:54 [ 7] [ 10] [0320080442] +00:52:54 [ 11] [ 6] [010442] +00:52:54 [ 37] [ 12] [57901010442] +00:52:54 [ 70] [ 3] [301] +00:52:54 ============================================================================ +00:52:54 + + +waiting on router queue for slot.... +00:52:54 Sending to : +00:52:54 ============================================================================ +00:52:54 ============================================================================ +00:52:54 Slot Id : <187> +00:52:54 Transaction Type : RESPONSE +00:52:54 Received From : +00:52:54 ============================================================================ +00:52:54 FNo. Len. Field Value +00:52:54 ============================================================================ +00:52:54 [ 1] [ 4] [0810] +00:52:54 [ 7] [ 10] [0320080442] +00:52:54 [ 11] [ 6] [010442] +00:52:54 [ 37] [ 12] [579010104420] +00:52:54 [ 39] [ 2] [00] +00:52:54 [ 70] [ 3] [810] +00:52:54 ============================================================================ +00:52:54 Calculate Source COMM Id = 6 +00:52:54 ============================================================================ +00:52:54 + + +waiting on router queue for slot.... +00:52:59 ============================================================================ +00:52:59 Slot Id : <163> +00:52:59 Transaction Type : REQUEST +00:52:59 Received From : +00:52:59 ============================================================================ +00:52:59 FNo. Len. Field Value +00:52:59 ============================================================================ +00:52:59 [ 1] [ 4] [0800] +00:52:59 [ 7] [ 10] [0319055206] +00:52:59 [ 11] [ 6] [153272] +00:52:59 [ 70] [ 3] [301] +00:52:59 ============================================================================ +00:52:59 + + +waiting on router queue for slot.... +00:52:59 Sending to : +00:52:59 ============================================================================ +00:52:59 ============================================================================ +00:52:59 Slot Id : <163> +00:52:59 Transaction Type : RESPONSE +00:52:59 Received From : +00:52:59 ============================================================================ +00:52:59 FNo. Len. Field Value +00:52:59 ============================================================================ +00:52:59 [ 1] [ 4] [0810] +00:52:59 [ 7] [ 10] [0319055206] +00:52:59 [ 11] [ 6] [153272] +00:52:59 [ 39] [ 2] [00] +00:52:59 [ 70] [ 3] [301] +00:52:59 ============================================================================ +00:52:59 Calculate Source COMM Id = 2 +00:52:59 ============================================================================ +00:52:59 + + +waiting on router queue for slot.... +00:53:14 ============================================================================ +00:53:14 Slot Id : <203> +00:53:14 Transaction Type : REQUEST +00:53:14 Received From : +00:53:14 ============================================================================ +00:53:14 FNo. Len. Field Value +00:53:14 ============================================================================ +00:53:14 [ 1] [ 4] [0800] +00:53:14 [ 7] [ 10] [0319055221] +00:53:14 [ 11] [ 6] [153273] +00:53:14 [ 70] [ 3] [301] +00:53:14 ============================================================================ +00:53:14 + + +waiting on router queue for slot.... +00:53:14 Sending to : +00:53:14 ============================================================================ +00:53:14 ============================================================================ +00:53:14 Slot Id : <203> +00:53:14 Transaction Type : RESPONSE +00:53:14 Received From : +00:53:14 ============================================================================ +00:53:14 FNo. Len. Field Value +00:53:14 ============================================================================ +00:53:14 [ 1] [ 4] [0810] +00:53:14 [ 7] [ 10] [0319055221] +00:53:14 [ 11] [ 6] [153273] +00:53:14 [ 39] [ 2] [00] +00:53:14 [ 70] [ 3] [301] +00:53:14 ============================================================================ +00:53:14 Calculate Source COMM Id = 2 +00:53:14 ============================================================================ +00:53:14 + + +waiting on router queue for slot.... +00:53:17 ============================================================================ +00:53:17 Slot Id : <160> +00:53:17 Transaction Type : REQUEST +00:53:17 Received From : +00:53:17 ============================================================================ +00:53:17 FNo. Len. Field Value +00:53:17 ============================================================================ +00:53:17 [ 1] [ 4] [0800] +00:53:17 [ 2] [ 5] [02531] +00:53:17 [ 3] [ 6] [579008] +00:53:17 [ 7] [ 10] [0319175317] +00:53:17 [ 11] [ 6] [806463] +00:53:17 [ 15] [ 10] [0319175317] +00:53:17 [ 37] [ 11] [57900806463] +00:53:17 [ 70] [ 3] [001] +00:53:17 ============================================================================ +00:53:17 + + +waiting on router queue for slot.... +00:53:17 ============================================================================ +00:53:17 Slot Id : <160> +00:53:17 Transaction Type : RESPONSE +00:53:17 Received From : +00:53:17 ============================================================================ +00:53:17 FNo. Len. Field Value +00:53:17 ============================================================================ +00:53:17 [ 1] [ 4] [0810] +00:53:17 [ 7] [ 10] [0319175317] +00:53:17 [ 11] [ 6] [806463] +00:53:17 [ 15] [ 4] [0319] +00:53:17 [ 37] [ 12] [57900806463] +00:53:17 [ 39] [ 2] [00] +00:53:17 [ 70] [ 3] [001] +00:53:17 ============================================================================ +00:53:17 Sending to : +00:53:17 ============================================================================ +00:53:17 + + +waiting on router queue for slot.... +00:53:25 ============================================================================ +00:53:25 Slot Id : <179> +00:53:25 Transaction Type : REQUEST +00:53:25 Received From : +00:53:25 ============================================================================ +00:53:25 FNo. Len. Field Value +00:53:25 ============================================================================ +00:53:25 [ 1] [ 4] [0800] +00:53:25 [ 7] [ 10] [0319055232] +00:53:25 [ 11] [ 6] [153274] +00:53:25 [ 70] [ 3] [301] +00:53:25 ============================================================================ +00:53:25 + + +waiting on router queue for slot.... +00:53:25 Sending to : +00:53:25 ============================================================================ +00:53:25 ============================================================================ +00:53:25 Slot Id : <179> +00:53:25 Transaction Type : RESPONSE +00:53:25 Received From : +00:53:25 ============================================================================ +00:53:25 FNo. Len. Field Value +00:53:25 ============================================================================ +00:53:25 [ 1] [ 4] [0810] +00:53:25 [ 7] [ 10] [0319055232] +00:53:25 [ 11] [ 6] [153274] +00:53:25 [ 39] [ 2] [00] +00:53:25 [ 70] [ 3] [301] +00:53:25 ============================================================================ +00:53:25 Calculate Source COMM Id = 2 +00:53:25 ============================================================================ +00:53:25 + + +waiting on router queue for slot.... +00:53:40 ============================================================================ +00:53:40 Slot Id : <192> +00:53:40 Transaction Type : REQUEST +00:53:40 Received From : +00:53:40 ============================================================================ +00:53:40 FNo. Len. Field Value +00:53:40 ============================================================================ +00:53:40 [ 1] [ 4] [0800] +00:53:40 [ 7] [ 10] [0319055247] +00:53:40 [ 11] [ 6] [153275] +00:53:40 [ 70] [ 3] [301] +00:53:40 ============================================================================ +00:53:40 + + +waiting on router queue for slot.... +00:53:40 Sending to : +00:53:40 ============================================================================ +00:53:40 ============================================================================ +00:53:40 Slot Id : <192> +00:53:40 Transaction Type : RESPONSE +00:53:40 Received From : +00:53:40 ============================================================================ +00:53:40 FNo. Len. Field Value +00:53:40 ============================================================================ +00:53:40 [ 1] [ 4] [0810] +00:53:40 [ 7] [ 10] [0319055247] +00:53:40 [ 11] [ 6] [153275] +00:53:40 [ 39] [ 2] [00] +00:53:40 [ 70] [ 3] [301] +00:53:40 ============================================================================ +00:53:40 Calculate Source COMM Id = 2 +00:53:40 ============================================================================ +00:53:40 + + +waiting on router queue for slot.... +00:53:56 ============================================================================ +00:53:56 Slot Id : <135> +00:53:56 Transaction Type : REQUEST +00:53:56 Received From : +00:53:56 ============================================================================ +00:53:56 FNo. Len. Field Value +00:53:56 ============================================================================ +00:53:56 [ 1] [ 4] [0800] +00:53:56 [ 7] [ 10] [0319055303] +00:53:56 [ 11] [ 6] [153276] +00:53:56 [ 70] [ 3] [301] +00:53:56 ============================================================================ +00:53:56 + + +waiting on router queue for slot.... +00:53:56 Sending to : +00:53:56 ============================================================================ +00:53:56 ============================================================================ +00:53:56 Slot Id : <135> +00:53:56 Transaction Type : RESPONSE +00:53:56 Received From : +00:53:56 ============================================================================ +00:53:56 FNo. Len. Field Value +00:53:56 ============================================================================ +00:53:56 [ 1] [ 4] [0810] +00:53:56 [ 7] [ 10] [0319055303] +00:53:56 [ 11] [ 6] [153276] +00:53:56 [ 39] [ 2] [00] +00:53:56 [ 70] [ 3] [301] +00:53:56 ============================================================================ +00:53:56 Calculate Source COMM Id = 2 +00:53:56 ============================================================================ +00:53:56 + + +waiting on router queue for slot.... +00:53:59 ============================================================================ +00:53:59 Slot Id : <144> +00:53:59 Transaction Type : REQUEST +00:53:59 Received From : +00:53:59 ============================================================================ +00:53:59 FNo. Len. Field Value +00:53:59 ============================================================================ +00:53:59 [ 1] [ 4] [0800] +00:53:59 [ 7] [ 10] [0320080547] +00:53:59 [ 11] [ 6] [010547] +00:53:59 [ 37] [ 12] [57901010547] +00:53:59 [ 70] [ 3] [301] +00:53:59 ============================================================================ +00:53:59 + + +waiting on router queue for slot.... +00:53:59 Sending to : +00:53:59 ============================================================================ +00:53:59 ============================================================================ +00:53:59 Slot Id : <144> +00:53:59 Transaction Type : RESPONSE +00:53:59 Received From : +00:53:59 ============================================================================ +00:53:59 FNo. Len. Field Value +00:53:59 ============================================================================ +00:53:59 [ 1] [ 4] [0810] +00:53:59 [ 7] [ 10] [0320080547] +00:53:59 [ 11] [ 6] [010547] +00:53:59 [ 37] [ 12] [579010105470] +00:53:59 [ 39] [ 2] [00] +00:53:59 [ 70] [ 3] [810] +00:53:59 ============================================================================ +00:53:59 Calculate Source COMM Id = 6 +00:53:59 ============================================================================ +00:53:59 + + +waiting on router queue for slot.... +00:54:10 ============================================================================ +00:54:10 Slot Id : <204> +00:54:10 Transaction Type : REQUEST +00:54:10 Received From : +00:54:10 ============================================================================ +00:54:10 FNo. Len. Field Value +00:54:10 ============================================================================ +00:54:10 [ 1] [ 4] [0800] +00:54:10 [ 7] [ 10] [0319055318] +00:54:10 [ 11] [ 6] [153277] +00:54:10 [ 70] [ 3] [301] +00:54:10 ============================================================================ +00:54:10 + + +waiting on router queue for slot.... +00:54:10 Sending to : +00:54:10 ============================================================================ +00:54:10 ============================================================================ +00:54:10 Slot Id : <204> +00:54:10 Transaction Type : RESPONSE +00:54:10 Received From : +00:54:10 ============================================================================ +00:54:10 FNo. Len. Field Value +00:54:10 ============================================================================ +00:54:10 [ 1] [ 4] [0810] +00:54:10 [ 7] [ 10] [0319055318] +00:54:10 [ 11] [ 6] [153277] +00:54:10 [ 39] [ 2] [00] +00:54:10 [ 70] [ 3] [301] +00:54:10 ============================================================================ +00:54:10 Calculate Source COMM Id = 2 +00:54:10 ============================================================================ +00:54:10 + + +waiting on router queue for slot.... +00:54:19 ============================================================================ +00:54:19 Slot Id : <152> +00:54:19 Transaction Type : REQUEST +00:54:19 Received From : +00:54:19 ============================================================================ +00:54:19 FNo. Len. Field Value +00:54:19 ============================================================================ +00:54:19 [ 1] [ 4] [0800] +00:54:19 [ 2] [ 5] [02531] +00:54:19 [ 3] [ 6] [579008] +00:54:19 [ 7] [ 10] [0319175419] +00:54:19 [ 11] [ 6] [806464] +00:54:19 [ 15] [ 10] [0319175419] +00:54:19 [ 37] [ 11] [57900806464] +00:54:19 [ 70] [ 3] [001] +00:54:19 ============================================================================ +00:54:19 + + +waiting on router queue for slot.... +00:54:19 ============================================================================ +00:54:19 Slot Id : <152> +00:54:19 Transaction Type : RESPONSE +00:54:19 Received From : +00:54:19 ============================================================================ +00:54:19 FNo. Len. Field Value +00:54:19 ============================================================================ +00:54:19 [ 1] [ 4] [0810] +00:54:19 [ 7] [ 10] [0319175419] +00:54:19 [ 11] [ 6] [806464] +00:54:19 [ 15] [ 4] [0319] +00:54:19 [ 37] [ 12] [57900806464] +00:54:19 [ 39] [ 2] [00] +00:54:19 [ 70] [ 3] [001] +00:54:19 ============================================================================ +00:54:19 Sending to : +00:54:19 ============================================================================ +00:54:19 + + +waiting on router queue for slot.... +00:54:22 ============================================================================ +00:54:22 Slot Id : <196> +00:54:22 Transaction Type : REQUEST +00:54:22 Received From : +00:54:22 ============================================================================ +00:54:22 FNo. Len. Field Value +00:54:22 ============================================================================ +00:54:22 [ 1] [ 4] [0800] +00:54:22 [ 7] [ 10] [0319055329] +00:54:22 [ 11] [ 6] [153278] +00:54:22 [ 70] [ 3] [301] +00:54:22 ============================================================================ +00:54:22 + + +waiting on router queue for slot.... +00:54:22 Sending to : +00:54:22 ============================================================================ +00:54:22 ============================================================================ +00:54:22 Slot Id : <196> +00:54:22 Transaction Type : RESPONSE +00:54:22 Received From : +00:54:22 ============================================================================ +00:54:22 FNo. Len. Field Value +00:54:22 ============================================================================ +00:54:22 [ 1] [ 4] [0810] +00:54:22 [ 7] [ 10] [0319055329] +00:54:22 [ 11] [ 6] [153278] +00:54:22 [ 39] [ 2] [00] +00:54:22 [ 70] [ 3] [301] +00:54:22 ============================================================================ +00:54:22 Calculate Source COMM Id = 2 +00:54:22 ============================================================================ +00:54:22 + + +waiting on router queue for slot.... +00:54:33 ============================================================================ +00:54:33 Slot Id : <191> +00:54:33 Transaction Type : REQUEST +00:54:33 Received From : +00:54:33 ============================================================================ +00:54:33 FNo. Len. Field Value +00:54:33 ============================================================================ +00:54:33 [ 1] [ 4] [0800] +00:54:33 [ 7] [ 10] [0319055341] +00:54:33 [ 11] [ 6] [153279] +00:54:33 [ 70] [ 3] [301] +00:54:33 ============================================================================ +00:54:33 + + +waiting on router queue for slot.... +00:54:33 Sending to : +00:54:33 ============================================================================ +00:54:33 ============================================================================ +00:54:33 Slot Id : <191> +00:54:33 Transaction Type : RESPONSE +00:54:33 Received From : +00:54:33 ============================================================================ +00:54:33 FNo. Len. Field Value +00:54:33 ============================================================================ +00:54:33 [ 1] [ 4] [0810] +00:54:33 [ 7] [ 10] [0319055341] +00:54:33 [ 11] [ 6] [153279] +00:54:33 [ 39] [ 2] [00] +00:54:33 [ 70] [ 3] [301] +00:54:33 ============================================================================ +00:54:33 Calculate Source COMM Id = 2 +00:54:33 ============================================================================ +00:54:33 + + +waiting on router queue for slot.... +00:54:43 ============================================================================ +00:54:43 Slot Id : <190> +00:54:43 Transaction Type : REQUEST +00:54:43 Received From : +00:54:43 ============================================================================ +00:54:43 FNo. Len. Field Value +00:54:43 ============================================================================ +00:54:43 [ 1] [ 4] [0800] +00:54:43 [ 7] [ 10] [0319055351] +00:54:43 [ 11] [ 6] [153280] +00:54:43 [ 70] [ 3] [301] +00:54:43 ============================================================================ +00:54:43 + + +waiting on router queue for slot.... +00:54:43 Sending to : +00:54:43 ============================================================================ +00:54:43 ============================================================================ +00:54:43 Slot Id : <190> +00:54:43 Transaction Type : RESPONSE +00:54:43 Received From : +00:54:43 ============================================================================ +00:54:43 FNo. Len. Field Value +00:54:43 ============================================================================ +00:54:43 [ 1] [ 4] [0810] +00:54:43 [ 7] [ 10] [0319055351] +00:54:43 [ 11] [ 6] [153280] +00:54:43 [ 39] [ 2] [00] +00:54:43 [ 70] [ 3] [301] +00:54:43 ============================================================================ +00:54:43 Calculate Source COMM Id = 2 +00:54:43 ============================================================================ +00:54:43 + + +waiting on router queue for slot.... +00:54:55 ============================================================================ +00:54:55 Slot Id : <155> +00:54:55 Transaction Type : REQUEST +00:54:55 Received From : +00:54:55 ============================================================================ +00:54:55 FNo. Len. Field Value +00:54:55 ============================================================================ +00:54:55 [ 1] [ 4] [0800] +00:54:55 [ 7] [ 10] [0319055402] +00:54:55 [ 11] [ 6] [153281] +00:54:55 [ 70] [ 3] [301] +00:54:55 ============================================================================ +00:54:55 + + +waiting on router queue for slot.... +00:54:55 Sending to : +00:54:55 ============================================================================ +00:54:55 ============================================================================ +00:54:55 Slot Id : <155> +00:54:55 Transaction Type : RESPONSE +00:54:55 Received From : +00:54:55 ============================================================================ +00:54:55 FNo. Len. Field Value +00:54:55 ============================================================================ +00:54:55 [ 1] [ 4] [0810] +00:54:55 [ 7] [ 10] [0319055402] +00:54:55 [ 11] [ 6] [153281] +00:54:55 [ 39] [ 2] [00] +00:54:55 [ 70] [ 3] [301] +00:54:55 ============================================================================ +00:54:55 Calculate Source COMM Id = 2 +00:54:55 ============================================================================ +00:54:55 + + +waiting on router queue for slot.... +00:54:56 ============================================================================ +00:54:56 Slot Id : <181> +00:54:56 Transaction Type : REQUEST +00:54:56 Received From : +00:54:56 ============================================================================ +00:54:56 FNo. Len. Field Value +00:54:56 ============================================================================ +00:54:56 [ 1] [ 4] [0800] +00:54:56 [ 7] [ 10] [0319180242] +00:54:56 [ 11] [ 6] [048588] +00:54:56 [ 37] [ 12] [57901048588] +00:54:56 [ 70] [ 3] [301] +00:54:56 ============================================================================ +00:54:56 + + +waiting on router queue for slot.... +00:54:56 Sending to : +00:54:56 ============================================================================ +00:54:56 ============================================================================ +00:54:56 Slot Id : <181> +00:54:56 Transaction Type : RESPONSE +00:54:56 Received From : +00:54:56 ============================================================================ +00:54:56 FNo. Len. Field Value +00:54:56 ============================================================================ +00:54:56 [ 1] [ 4] [0810] +00:54:56 [ 7] [ 10] [0319180242] +00:54:56 [ 11] [ 6] [048588] +00:54:56 [ 37] [ 12] [579010485880] +00:54:56 [ 39] [ 2] [00] +00:54:56 [ 70] [ 3] [810] +00:54:56 ============================================================================ +00:54:56 Calculate Source COMM Id = 1 +00:54:56 ============================================================================ +00:54:56 + + +waiting on router queue for slot.... +00:55:04 ============================================================================ +00:55:04 Slot Id : <198> +00:55:04 Transaction Type : REQUEST +00:55:04 Received From : +00:55:04 ============================================================================ +00:55:04 FNo. Len. Field Value +00:55:04 ============================================================================ +00:55:04 [ 1] [ 4] [0800] +00:55:04 [ 7] [ 10] [0320080652] +00:55:04 [ 11] [ 6] [010652] +00:55:04 [ 37] [ 12] [57901010652] +00:55:04 [ 70] [ 3] [301] +00:55:04 ============================================================================ +00:55:04 + + +waiting on router queue for slot.... +00:55:04 Sending to : +00:55:04 ============================================================================ +00:55:04 ============================================================================ +00:55:04 Slot Id : <198> +00:55:04 Transaction Type : RESPONSE +00:55:04 Received From : +00:55:04 ============================================================================ +00:55:04 FNo. Len. Field Value +00:55:04 ============================================================================ +00:55:04 [ 1] [ 4] [0810] +00:55:04 [ 7] [ 10] [0320080652] +00:55:04 [ 11] [ 6] [010652] +00:55:04 [ 37] [ 12] [579010106520] +00:55:04 [ 39] [ 2] [00] +00:55:04 [ 70] [ 3] [810] +00:55:04 ============================================================================ +00:55:04 Calculate Source COMM Id = 6 +00:55:04 ============================================================================ +00:55:04 + + +waiting on router queue for slot.... +00:55:11 ============================================================================ +00:55:11 Slot Id : <201> +00:55:11 Transaction Type : REQUEST +00:55:11 Received From : +00:55:11 ============================================================================ +00:55:11 FNo. Len. Field Value +00:55:11 ============================================================================ +00:55:11 [ 1] [ 4] [0800] +00:55:11 [ 7] [ 10] [0319055418] +00:55:11 [ 11] [ 6] [153282] +00:55:11 [ 70] [ 3] [301] +00:55:11 ============================================================================ +00:55:11 + + +waiting on router queue for slot.... +00:55:11 Sending to : +00:55:11 ============================================================================ +00:55:11 ============================================================================ +00:55:11 Slot Id : <201> +00:55:11 Transaction Type : RESPONSE +00:55:11 Received From : +00:55:11 ============================================================================ +00:55:11 FNo. Len. Field Value +00:55:11 ============================================================================ +00:55:11 [ 1] [ 4] [0810] +00:55:11 [ 7] [ 10] [0319055418] +00:55:11 [ 11] [ 6] [153282] +00:55:11 [ 39] [ 2] [00] +00:55:11 [ 70] [ 3] [301] +00:55:11 ============================================================================ +00:55:11 Calculate Source COMM Id = 2 +00:55:11 ============================================================================ +00:55:11 + + +waiting on router queue for slot.... +00:55:21 ============================================================================ +00:55:21 Slot Id : <194> +00:55:21 Transaction Type : REQUEST +00:55:21 Received From : +00:55:21 ============================================================================ +00:55:21 FNo. Len. Field Value +00:55:21 ============================================================================ +00:55:21 [ 1] [ 4] [0800] +00:55:21 [ 7] [ 10] [0319055428] +00:55:21 [ 11] [ 6] [153283] +00:55:21 [ 70] [ 3] [301] +00:55:21 ============================================================================ +00:55:21 + + +waiting on router queue for slot.... +00:55:21 Sending to : +00:55:21 ============================================================================ +00:55:21 ============================================================================ +00:55:21 Slot Id : <194> +00:55:21 Transaction Type : RESPONSE +00:55:21 Received From : +00:55:21 ============================================================================ +00:55:21 FNo. Len. Field Value +00:55:21 ============================================================================ +00:55:21 [ 1] [ 4] [0810] +00:55:21 [ 7] [ 10] [0319055428] +00:55:21 [ 11] [ 6] [153283] +00:55:21 [ 39] [ 2] [00] +00:55:21 [ 70] [ 3] [301] +00:55:21 ============================================================================ +00:55:21 Calculate Source COMM Id = 2 +00:55:21 ============================================================================ +00:55:21 + + +waiting on router queue for slot.... +00:55:21 ============================================================================ +00:55:21 Slot Id : <214> +00:55:21 Transaction Type : REQUEST +00:55:21 Received From : +00:55:21 ============================================================================ +00:55:21 FNo. Len. Field Value +00:55:21 ============================================================================ +00:55:21 [ 1] [ 4] [0800] +00:55:21 [ 2] [ 5] [02531] +00:55:21 [ 3] [ 6] [579008] +00:55:21 [ 7] [ 10] [0319175521] +00:55:21 [ 11] [ 6] [806465] +00:55:21 [ 15] [ 10] [0319175521] +00:55:21 [ 37] [ 11] [57900806465] +00:55:21 [ 70] [ 3] [001] +00:55:21 ============================================================================ +00:55:21 + + +waiting on router queue for slot.... +00:55:21 ============================================================================ +00:55:21 Slot Id : <214> +00:55:21 Transaction Type : RESPONSE +00:55:21 Received From : +00:55:21 ============================================================================ +00:55:21 FNo. Len. Field Value +00:55:21 ============================================================================ +00:55:21 [ 1] [ 4] [0810] +00:55:21 [ 7] [ 10] [0319175521] +00:55:21 [ 11] [ 6] [806465] +00:55:21 [ 15] [ 4] [0319] +00:55:21 [ 37] [ 12] [57900806465] +00:55:21 [ 39] [ 2] [00] +00:55:21 [ 70] [ 3] [001] +00:55:21 ============================================================================ +00:55:21 Sending to : +00:55:21 ============================================================================ +00:55:21 + + +waiting on router queue for slot.... +00:55:31 ============================================================================ +00:55:31 Slot Id : <165> +00:55:31 Transaction Type : REQUEST +00:55:31 Received From : +00:55:31 ============================================================================ +00:55:31 FNo. Len. Field Value +00:55:31 ============================================================================ +00:55:31 [ 1] [ 4] [0800] +00:55:31 [ 7] [ 10] [0319055439] +00:55:31 [ 11] [ 6] [153284] +00:55:31 [ 70] [ 3] [301] +00:55:31 ============================================================================ +00:55:31 + + +waiting on router queue for slot.... +00:55:31 Sending to : +00:55:31 ============================================================================ +00:55:31 ============================================================================ +00:55:31 Slot Id : <165> +00:55:31 Transaction Type : RESPONSE +00:55:31 Received From : +00:55:31 ============================================================================ +00:55:31 FNo. Len. Field Value +00:55:31 ============================================================================ +00:55:31 [ 1] [ 4] [0810] +00:55:31 [ 7] [ 10] [0319055439] +00:55:31 [ 11] [ 6] [153284] +00:55:31 [ 39] [ 2] [00] +00:55:31 [ 70] [ 3] [301] +00:55:31 ============================================================================ +00:55:31 Calculate Source COMM Id = 2 +00:55:31 ============================================================================ +00:55:31 + + +waiting on router queue for slot.... +00:55:46 ============================================================================ +00:55:46 Slot Id : <195> +00:55:46 Transaction Type : REQUEST +00:55:46 Received From : +00:55:46 ============================================================================ +00:55:46 FNo. Len. Field Value +00:55:46 ============================================================================ +00:55:46 [ 1] [ 4] [0800] +00:55:46 [ 7] [ 10] [0319055454] +00:55:46 [ 11] [ 6] [153285] +00:55:46 [ 70] [ 3] [301] +00:55:46 ============================================================================ +00:55:46 + + +waiting on router queue for slot.... +00:55:46 Sending to : +00:55:46 ============================================================================ +00:55:46 ============================================================================ +00:55:46 Slot Id : <195> +00:55:46 Transaction Type : RESPONSE +00:55:46 Received From : +00:55:46 ============================================================================ +00:55:46 FNo. Len. Field Value +00:55:46 ============================================================================ +00:55:46 [ 1] [ 4] [0810] +00:55:46 [ 7] [ 10] [0319055454] +00:55:46 [ 11] [ 6] [153285] +00:55:46 [ 39] [ 2] [00] +00:55:46 [ 70] [ 3] [301] +00:55:46 ============================================================================ +00:55:46 Calculate Source COMM Id = 2 +00:55:46 ============================================================================ +00:55:46 + + +waiting on router queue for slot.... +00:55:57 ============================================================================ +00:55:57 Slot Id : <184> +00:55:57 Transaction Type : REQUEST +00:55:57 Received From : +00:55:57 ============================================================================ +00:55:57 FNo. Len. Field Value +00:55:57 ============================================================================ +00:55:57 [ 1] [ 4] [0800] +00:55:57 [ 7] [ 10] [0319055504] +00:55:57 [ 11] [ 6] [153286] +00:55:57 [ 70] [ 3] [301] +00:55:57 ============================================================================ +00:55:57 + + +waiting on router queue for slot.... +00:55:57 Sending to : +00:55:57 ============================================================================ +00:55:57 ============================================================================ +00:55:57 Slot Id : <184> +00:55:57 Transaction Type : RESPONSE +00:55:57 Received From : +00:55:57 ============================================================================ +00:55:57 FNo. Len. Field Value +00:55:57 ============================================================================ +00:55:57 [ 1] [ 4] [0810] +00:55:57 [ 7] [ 10] [0319055504] +00:55:57 [ 11] [ 6] [153286] +00:55:57 [ 39] [ 2] [00] +00:55:57 [ 70] [ 3] [301] +00:55:57 ============================================================================ +00:55:57 Calculate Source COMM Id = 2 +00:55:57 ============================================================================ +00:55:57 + + +waiting on router queue for slot.... +00:56:06 ============================================================================ +00:56:06 Slot Id : <209> +00:56:06 Transaction Type : REQUEST +00:56:06 Received From : +00:56:06 ============================================================================ +00:56:06 FNo. Len. Field Value +00:56:06 ============================================================================ +00:56:06 [ 1] [ 4] [0800] +00:56:06 [ 7] [ 10] [0319175602] +00:56:06 [ 11] [ 6] [000442] +00:56:06 [ 37] [ 12] [507900000442] +00:56:06 [ 70] [ 3] [001] +00:56:06 ============================================================================ +00:56:06 + + +waiting on router queue for slot.... +00:56:06 Sending to : +00:56:06 ============================================================================ +00:56:06 ============================================================================ +00:56:06 Slot Id : <209> +00:56:06 Transaction Type : RESPONSE +00:56:06 Received From : +00:56:06 ============================================================================ +00:56:06 FNo. Len. Field Value +00:56:06 ============================================================================ +00:56:06 [ 1] [ 4] [0810] +00:56:06 [ 7] [ 10] [0319175602] +00:56:06 [ 11] [ 6] [000442] +00:56:06 [ 37] [ 12] [507900000442] +00:56:06 [ 39] [ 2] [00] +00:56:06 [ 70] [ 3] [001] +00:56:06 ============================================================================ +00:56:06 Calculate Source COMM Id = 0 +00:56:06 ============================================================================ +00:56:06 + + +waiting on router queue for slot.... +00:56:08 ============================================================================ +00:56:08 Slot Id : <213> +00:56:08 Transaction Type : REQUEST +00:56:08 Received From : +00:56:08 ============================================================================ +00:56:08 FNo. Len. Field Value +00:56:08 ============================================================================ +00:56:08 [ 1] [ 4] [0800] +00:56:08 [ 7] [ 10] [0319055515] +00:56:08 [ 11] [ 6] [153287] +00:56:08 [ 70] [ 3] [301] +00:56:08 ============================================================================ +00:56:08 + + +waiting on router queue for slot.... +00:56:08 Sending to : +00:56:08 ============================================================================ +00:56:08 ============================================================================ +00:56:08 Slot Id : <213> +00:56:08 Transaction Type : RESPONSE +00:56:08 Received From : +00:56:08 ============================================================================ +00:56:08 FNo. Len. Field Value +00:56:08 ============================================================================ +00:56:08 [ 1] [ 4] [0810] +00:56:08 [ 7] [ 10] [0319055515] +00:56:08 [ 11] [ 6] [153287] +00:56:08 [ 39] [ 2] [00] +00:56:08 [ 70] [ 3] [301] +00:56:08 ============================================================================ +00:56:08 Calculate Source COMM Id = 2 +00:56:08 ============================================================================ +00:56:08 + + +waiting on router queue for slot.... +00:56:09 ============================================================================ +00:56:09 Slot Id : <178> +00:56:09 Transaction Type : REQUEST +00:56:09 Received From : +00:56:09 ============================================================================ +00:56:09 FNo. Len. Field Value +00:56:09 ============================================================================ +00:56:09 [ 1] [ 4] [0800] +00:56:09 [ 7] [ 10] [0320080757] +00:56:09 [ 11] [ 6] [010757] +00:56:09 [ 37] [ 12] [57901010757] +00:56:09 [ 70] [ 3] [301] +00:56:09 ============================================================================ +00:56:09 + + +waiting on router queue for slot.... +00:56:09 Sending to : +00:56:09 ============================================================================ +00:56:09 ============================================================================ +00:56:09 Slot Id : <178> +00:56:09 Transaction Type : RESPONSE +00:56:09 Received From : +00:56:09 ============================================================================ +00:56:09 FNo. Len. Field Value +00:56:09 ============================================================================ +00:56:09 [ 1] [ 4] [0810] +00:56:09 [ 7] [ 10] [0320080757] +00:56:09 [ 11] [ 6] [010757] +00:56:09 [ 37] [ 12] [579010107570] +00:56:09 [ 39] [ 2] [00] +00:56:09 [ 70] [ 3] [810] +00:56:09 ============================================================================ +00:56:09 Calculate Source COMM Id = 6 +00:56:09 ============================================================================ +00:56:09 + + +waiting on router queue for slot.... +00:56:18 ============================================================================ +00:56:18 Slot Id : <208> +00:56:18 Transaction Type : REQUEST +00:56:18 Received From : +00:56:18 ============================================================================ +00:56:18 FNo. Len. Field Value +00:56:18 ============================================================================ +00:56:18 [ 1] [ 4] [0800] +00:56:18 [ 7] [ 10] [0319055525] +00:56:18 [ 11] [ 6] [153288] +00:56:18 [ 70] [ 3] [301] +00:56:18 ============================================================================ +00:56:18 + + +waiting on router queue for slot.... +00:56:18 Sending to : +00:56:18 ============================================================================ +00:56:18 ============================================================================ +00:56:18 Slot Id : <208> +00:56:18 Transaction Type : RESPONSE +00:56:18 Received From : +00:56:18 ============================================================================ +00:56:18 FNo. Len. Field Value +00:56:18 ============================================================================ +00:56:18 [ 1] [ 4] [0810] +00:56:18 [ 7] [ 10] [0319055525] +00:56:18 [ 11] [ 6] [153288] +00:56:18 [ 39] [ 2] [00] +00:56:18 [ 70] [ 3] [301] +00:56:18 ============================================================================ +00:56:18 Calculate Source COMM Id = 2 +00:56:18 ============================================================================ +00:56:18 + + +waiting on router queue for slot.... +00:56:21 ============================================================================ +00:56:21 Slot Id : <193> +00:56:21 Transaction Type : REQUEST +00:56:21 Received From : +00:56:21 ============================================================================ +00:56:21 FNo. Len. Field Value +00:56:21 ============================================================================ +00:56:21 [ 1] [ 4] [0800] +00:56:21 [ 7] [ 10] [0319175412] +00:56:21 [ 11] [ 6] [066601] +00:56:21 [ 37] [ 12] [57900066601] +00:56:21 [ 70] [ 3] [301] +00:56:21 ============================================================================ +00:56:21 + + +waiting on router queue for slot.... +00:56:21 Sending to : +00:56:21 ============================================================================ +00:56:21 ============================================================================ +00:56:21 Slot Id : <193> +00:56:21 Transaction Type : RESPONSE +00:56:21 Received From : +00:56:21 ============================================================================ +00:56:21 FNo. Len. Field Value +00:56:21 ============================================================================ +00:56:21 [ 1] [ 4] [0810] +00:56:21 [ 7] [ 10] [0319175412] +00:56:21 [ 11] [ 6] [066601] +00:56:21 [ 37] [ 12] [579000666010] +00:56:21 [ 39] [ 2] [00] +00:56:21 [ 70] [ 3] [810] +00:56:21 ============================================================================ +00:56:21 Calculate Source COMM Id = 4 +00:56:21 ============================================================================ +00:56:21 + + +waiting on router queue for slot.... +00:56:23 ============================================================================ +00:56:23 Slot Id : <211> +00:56:23 Transaction Type : REQUEST +00:56:23 Received From : +00:56:23 ============================================================================ +00:56:23 FNo. Len. Field Value +00:56:23 ============================================================================ +00:56:23 [ 1] [ 4] [0800] +00:56:23 [ 2] [ 5] [02531] +00:56:23 [ 3] [ 6] [579008] +00:56:23 [ 7] [ 10] [0319175623] +00:56:23 [ 11] [ 6] [806466] +00:56:23 [ 15] [ 10] [0319175623] +00:56:23 [ 37] [ 11] [57900806466] +00:56:23 [ 70] [ 3] [001] +00:56:23 ============================================================================ +00:56:23 + + +waiting on router queue for slot.... +00:56:23 ============================================================================ +00:56:23 Slot Id : <211> +00:56:23 Transaction Type : RESPONSE +00:56:23 Received From : +00:56:23 ============================================================================ +00:56:23 FNo. Len. Field Value +00:56:23 ============================================================================ +00:56:23 [ 1] [ 4] [0810] +00:56:23 [ 7] [ 10] [0319175623] +00:56:23 [ 11] [ 6] [806466] +00:56:23 [ 15] [ 4] [0319] +00:56:23 [ 37] [ 12] [57900806466] +00:56:23 [ 39] [ 2] [00] +00:56:23 [ 70] [ 3] [001] +00:56:23 ============================================================================ +00:56:23 Sending to : +00:56:23 ============================================================================ +00:56:23 + + +waiting on router queue for slot.... +00:56:31 ============================================================================ +00:56:31 Slot Id : <206> +00:56:31 Transaction Type : REQUEST +00:56:31 Received From : +00:56:31 ============================================================================ +00:56:31 FNo. Len. Field Value +00:56:31 ============================================================================ +00:56:31 [ 1] [ 4] [0800] +00:56:31 [ 7] [ 10] [0319055536] +00:56:31 [ 11] [ 6] [153289] +00:56:31 [ 70] [ 3] [301] +00:56:31 ============================================================================ +00:56:31 + + +waiting on router queue for slot.... +00:56:31 Sending to : +00:56:31 ============================================================================ +00:56:31 ============================================================================ +00:56:31 Slot Id : <206> +00:56:31 Transaction Type : RESPONSE +00:56:31 Received From : +00:56:31 ============================================================================ +00:56:31 FNo. Len. Field Value +00:56:31 ============================================================================ +00:56:31 [ 1] [ 4] [0810] +00:56:31 [ 7] [ 10] [0319055536] +00:56:31 [ 11] [ 6] [153289] +00:56:31 [ 39] [ 2] [00] +00:56:31 [ 70] [ 3] [301] +00:56:31 ============================================================================ +00:56:31 Calculate Source COMM Id = 2 +00:56:31 ============================================================================ +00:56:31 + + +waiting on router queue for slot.... +00:56:44 ============================================================================ +00:56:44 Slot Id : <185> +00:56:44 Transaction Type : REQUEST +00:56:44 Received From : +00:56:44 ============================================================================ +00:56:44 FNo. Len. Field Value +00:56:44 ============================================================================ +00:56:44 [ 1] [ 4] [0800] +00:56:44 [ 7] [ 10] [0319055551] +00:56:44 [ 11] [ 6] [153290] +00:56:44 [ 70] [ 3] [301] +00:56:44 ============================================================================ +00:56:44 + + +waiting on router queue for slot.... +00:56:44 Sending to : +00:56:44 ============================================================================ +00:56:44 ============================================================================ +00:56:44 Slot Id : <185> +00:56:44 Transaction Type : RESPONSE +00:56:44 Received From : +00:56:44 ============================================================================ +00:56:44 FNo. Len. Field Value +00:56:44 ============================================================================ +00:56:44 [ 1] [ 4] [0810] +00:56:44 [ 7] [ 10] [0319055551] +00:56:44 [ 11] [ 6] [153290] +00:56:44 [ 39] [ 2] [00] +00:56:44 [ 70] [ 3] [301] +00:56:44 ============================================================================ +00:56:44 Calculate Source COMM Id = 2 +00:56:44 ============================================================================ +00:56:44 + + +waiting on router queue for slot.... +00:56:55 ============================================================================ +00:56:55 Slot Id : <221> +00:56:55 Transaction Type : REQUEST +00:56:55 Received From : +00:56:55 ============================================================================ +00:56:55 FNo. Len. Field Value +00:56:55 ============================================================================ +00:56:55 [ 1] [ 4] [0800] +00:56:55 [ 7] [ 10] [0319055602] +00:56:55 [ 11] [ 6] [153291] +00:56:55 [ 70] [ 3] [301] +00:56:55 ============================================================================ +00:56:55 + + +waiting on router queue for slot.... +00:56:55 Sending to : +00:56:55 ============================================================================ +00:56:55 ============================================================================ +00:56:55 Slot Id : <221> +00:56:55 Transaction Type : RESPONSE +00:56:55 Received From : +00:56:55 ============================================================================ +00:56:55 FNo. Len. Field Value +00:56:55 ============================================================================ +00:56:55 [ 1] [ 4] [0810] +00:56:55 [ 7] [ 10] [0319055602] +00:56:55 [ 11] [ 6] [153291] +00:56:55 [ 39] [ 2] [00] +00:56:55 [ 70] [ 3] [301] +00:56:55 ============================================================================ +00:56:55 Calculate Source COMM Id = 2 +00:56:55 ============================================================================ +00:56:55 + + +waiting on router queue for slot.... +00:57:06 ============================================================================ +00:57:06 Slot Id : <183> +00:57:06 Transaction Type : REQUEST +00:57:06 Received From : +00:57:06 ============================================================================ +00:57:06 FNo. Len. Field Value +00:57:06 ============================================================================ +00:57:06 [ 1] [ 4] [0800] +00:57:06 [ 7] [ 10] [0319055613] +00:57:06 [ 11] [ 6] [153292] +00:57:06 [ 70] [ 3] [301] +00:57:06 ============================================================================ +00:57:06 + + +waiting on router queue for slot.... +00:57:06 Sending to : +00:57:06 ============================================================================ +00:57:06 ============================================================================ +00:57:06 Slot Id : <183> +00:57:06 Transaction Type : RESPONSE +00:57:06 Received From : +00:57:06 ============================================================================ +00:57:06 FNo. Len. Field Value +00:57:06 ============================================================================ +00:57:06 [ 1] [ 4] [0810] +00:57:06 [ 7] [ 10] [0319055613] +00:57:06 [ 11] [ 6] [153292] +00:57:06 [ 39] [ 2] [00] +00:57:06 [ 70] [ 3] [301] +00:57:06 ============================================================================ +00:57:06 Calculate Source COMM Id = 2 +00:57:06 ============================================================================ +00:57:06 + + +waiting on router queue for slot.... +00:57:14 ============================================================================ +00:57:14 Slot Id : <212> +00:57:14 Transaction Type : REQUEST +00:57:14 Received From : +00:57:14 ============================================================================ +00:57:14 FNo. Len. Field Value +00:57:14 ============================================================================ +00:57:14 [ 1] [ 4] [0800] +00:57:14 [ 7] [ 10] [0320080902] +00:57:14 [ 11] [ 6] [010902] +00:57:14 [ 37] [ 12] [57901010902] +00:57:14 [ 70] [ 3] [301] +00:57:14 ============================================================================ +00:57:14 + + +waiting on router queue for slot.... +00:57:14 Sending to : +00:57:14 ============================================================================ +00:57:14 ============================================================================ +00:57:14 Slot Id : <212> +00:57:14 Transaction Type : RESPONSE +00:57:14 Received From : +00:57:14 ============================================================================ +00:57:14 FNo. Len. Field Value +00:57:14 ============================================================================ +00:57:14 [ 1] [ 4] [0810] +00:57:14 [ 7] [ 10] [0320080902] +00:57:14 [ 11] [ 6] [010902] +00:57:14 [ 37] [ 12] [579010109020] +00:57:14 [ 39] [ 2] [00] +00:57:14 [ 70] [ 3] [810] +00:57:14 ============================================================================ +00:57:14 Calculate Source COMM Id = 6 +00:57:14 ============================================================================ +00:57:14 + + +waiting on router queue for slot.... +00:57:21 ============================================================================ +00:57:21 Slot Id : <207> +00:57:21 Transaction Type : REQUEST +00:57:21 Received From : +00:57:21 ============================================================================ +00:57:21 FNo. Len. Field Value +00:57:21 ============================================================================ +00:57:21 [ 1] [ 4] [0800] +00:57:21 [ 7] [ 10] [0319055628] +00:57:21 [ 11] [ 6] [153293] +00:57:21 [ 70] [ 3] [301] +00:57:21 ============================================================================ +00:57:21 + + +waiting on router queue for slot.... +00:57:21 Sending to : +00:57:21 ============================================================================ +00:57:21 ============================================================================ +00:57:21 Slot Id : <207> +00:57:21 Transaction Type : RESPONSE +00:57:21 Received From : +00:57:21 ============================================================================ +00:57:21 FNo. Len. Field Value +00:57:21 ============================================================================ +00:57:21 [ 1] [ 4] [0810] +00:57:21 [ 7] [ 10] [0319055628] +00:57:21 [ 11] [ 6] [153293] +00:57:21 [ 39] [ 2] [00] +00:57:21 [ 70] [ 3] [301] +00:57:21 ============================================================================ +00:57:21 Calculate Source COMM Id = 2 +00:57:21 ============================================================================ +00:57:21 + + +waiting on router queue for slot.... +00:57:25 ============================================================================ +00:57:25 Slot Id : <174> +00:57:25 Transaction Type : REQUEST +00:57:25 Received From : +00:57:25 ============================================================================ +00:57:25 FNo. Len. Field Value +00:57:25 ============================================================================ +00:57:25 [ 1] [ 4] [0800] +00:57:25 [ 2] [ 5] [02531] +00:57:25 [ 3] [ 6] [579008] +00:57:25 [ 7] [ 10] [0319175725] +00:57:25 [ 11] [ 6] [806467] +00:57:25 [ 15] [ 10] [0319175725] +00:57:25 [ 37] [ 11] [57900806467] +00:57:25 [ 70] [ 3] [001] +00:57:25 ============================================================================ +00:57:25 + + +waiting on router queue for slot.... +00:57:25 ============================================================================ +00:57:25 Slot Id : <174> +00:57:25 Transaction Type : RESPONSE +00:57:25 Received From : +00:57:25 ============================================================================ +00:57:25 FNo. Len. Field Value +00:57:25 ============================================================================ +00:57:25 [ 1] [ 4] [0810] +00:57:25 [ 7] [ 10] [0319175725] +00:57:25 [ 11] [ 6] [806467] +00:57:25 [ 15] [ 4] [0319] +00:57:25 [ 37] [ 12] [57900806467] +00:57:25 [ 39] [ 2] [00] +00:57:25 [ 70] [ 3] [001] +00:57:25 ============================================================================ +00:57:25 Sending to : +00:57:25 ============================================================================ +00:57:25 + + +waiting on router queue for slot.... +00:57:34 ============================================================================ +00:57:34 Slot Id : <149> +00:57:34 Transaction Type : REQUEST +00:57:34 Received From : +00:57:34 ============================================================================ +00:57:34 FNo. Len. Field Value +00:57:34 ============================================================================ +00:57:34 [ 1] [ 4] [0800] +00:57:34 [ 7] [ 10] [0319055640] +00:57:34 [ 11] [ 6] [153294] +00:57:34 [ 70] [ 3] [301] +00:57:34 ============================================================================ +00:57:34 + + +waiting on router queue for slot.... +00:57:34 Sending to : +00:57:34 ============================================================================ +00:57:34 ============================================================================ +00:57:34 Slot Id : <149> +00:57:34 Transaction Type : RESPONSE +00:57:34 Received From : +00:57:34 ============================================================================ +00:57:34 FNo. Len. Field Value +00:57:34 ============================================================================ +00:57:34 [ 1] [ 4] [0810] +00:57:34 [ 7] [ 10] [0319055640] +00:57:34 [ 11] [ 6] [153294] +00:57:34 [ 39] [ 2] [00] +00:57:34 [ 70] [ 3] [301] +00:57:34 ============================================================================ +00:57:34 Calculate Source COMM Id = 2 +00:57:34 ============================================================================ +00:57:34 + + +waiting on router queue for slot.... +00:57:48 ============================================================================ +00:57:48 Slot Id : <168> +00:57:48 Transaction Type : REQUEST +00:57:48 Received From : +00:57:48 ============================================================================ +00:57:48 FNo. Len. Field Value +00:57:48 ============================================================================ +00:57:48 [ 1] [ 4] [0800] +00:57:48 [ 7] [ 10] [0319055656] +00:57:48 [ 11] [ 6] [153295] +00:57:48 [ 70] [ 3] [301] +00:57:48 ============================================================================ +00:57:48 + + +waiting on router queue for slot.... +00:57:48 Sending to : +00:57:48 ============================================================================ +00:57:48 ============================================================================ +00:57:48 Slot Id : <168> +00:57:48 Transaction Type : RESPONSE +00:57:48 Received From : +00:57:48 ============================================================================ +00:57:48 FNo. Len. Field Value +00:57:48 ============================================================================ +00:57:48 [ 1] [ 4] [0810] +00:57:48 [ 7] [ 10] [0319055656] +00:57:48 [ 11] [ 6] [153295] +00:57:48 [ 39] [ 2] [00] +00:57:48 [ 70] [ 3] [301] +00:57:48 ============================================================================ +00:57:48 Calculate Source COMM Id = 2 +00:57:48 ============================================================================ +00:57:48 + + +waiting on router queue for slot.... +00:57:58 ============================================================================ +00:57:58 Slot Id : <180> +00:57:58 Transaction Type : REQUEST +00:57:58 Received From : +00:57:58 ============================================================================ +00:57:58 FNo. Len. Field Value +00:57:58 ============================================================================ +00:57:58 [ 1] [ 4] [0800] +00:57:58 [ 7] [ 10] [0319055706] +00:57:58 [ 11] [ 6] [153296] +00:57:58 [ 70] [ 3] [301] +00:57:58 ============================================================================ +00:57:58 + + +waiting on router queue for slot.... +00:57:58 Sending to : +00:57:58 ============================================================================ +00:57:58 ============================================================================ +00:57:58 Slot Id : <180> +00:57:58 Transaction Type : RESPONSE +00:57:58 Received From : +00:57:58 ============================================================================ +00:57:58 FNo. Len. Field Value +00:57:58 ============================================================================ +00:57:58 [ 1] [ 4] [0810] +00:57:58 [ 7] [ 10] [0319055706] +00:57:58 [ 11] [ 6] [153296] +00:57:58 [ 39] [ 2] [00] +00:57:58 [ 70] [ 3] [301] +00:57:58 ============================================================================ +00:57:58 Calculate Source COMM Id = 2 +00:57:58 ============================================================================ +00:57:58 + + +waiting on router queue for slot.... +00:58:11 ============================================================================ +00:58:11 Slot Id : <222> +00:58:11 Transaction Type : REQUEST +00:58:11 Received From : +00:58:11 ============================================================================ +00:58:11 FNo. Len. Field Value +00:58:11 ============================================================================ +00:58:11 [ 1] [ 4] [0800] +00:58:11 [ 7] [ 10] [0319055716] +00:58:11 [ 11] [ 6] [153297] +00:58:11 [ 70] [ 3] [301] +00:58:11 ============================================================================ +00:58:11 + + +waiting on router queue for slot.... +00:58:11 Sending to : +00:58:11 ============================================================================ +00:58:11 ============================================================================ +00:58:11 Slot Id : <222> +00:58:11 Transaction Type : RESPONSE +00:58:11 Received From : +00:58:11 ============================================================================ +00:58:11 FNo. Len. Field Value +00:58:11 ============================================================================ +00:58:11 [ 1] [ 4] [0810] +00:58:11 [ 7] [ 10] [0319055716] +00:58:11 [ 11] [ 6] [153297] +00:58:11 [ 39] [ 2] [00] +00:58:11 [ 70] [ 3] [301] +00:58:11 ============================================================================ +00:58:11 Calculate Source COMM Id = 2 +00:58:11 ============================================================================ +00:58:11 + + +waiting on router queue for slot.... +00:58:19 ============================================================================ +00:58:19 Slot Id : <189> +00:58:19 Transaction Type : REQUEST +00:58:19 Received From : +00:58:19 ============================================================================ +00:58:19 FNo. Len. Field Value +00:58:19 ============================================================================ +00:58:19 [ 1] [ 4] [0800] +00:58:19 [ 7] [ 10] [0320081007] +00:58:19 [ 11] [ 6] [011007] +00:58:19 [ 37] [ 12] [57901011007] +00:58:19 [ 70] [ 3] [301] +00:58:19 ============================================================================ +00:58:19 + + +waiting on router queue for slot.... +00:58:19 Sending to : +00:58:19 ============================================================================ +00:58:19 ============================================================================ +00:58:19 Slot Id : <189> +00:58:19 Transaction Type : RESPONSE +00:58:19 Received From : +00:58:19 ============================================================================ +00:58:19 FNo. Len. Field Value +00:58:19 ============================================================================ +00:58:19 [ 1] [ 4] [0810] +00:58:19 [ 7] [ 10] [0320081007] +00:58:19 [ 11] [ 6] [011007] +00:58:19 [ 37] [ 12] [579010110070] +00:58:19 [ 39] [ 2] [00] +00:58:19 [ 70] [ 3] [810] +00:58:19 ============================================================================ +00:58:19 Calculate Source COMM Id = 6 +00:58:19 ============================================================================ +00:58:19 + + +waiting on router queue for slot.... +00:58:26 ============================================================================ +00:58:26 Slot Id : <169> +00:58:26 Transaction Type : REQUEST +00:58:26 Received From : +00:58:26 ============================================================================ +00:58:26 FNo. Len. Field Value +00:58:26 ============================================================================ +00:58:26 [ 1] [ 4] [0800] +00:58:26 [ 7] [ 10] [0319055733] +00:58:26 [ 11] [ 6] [153298] +00:58:26 [ 70] [ 3] [301] +00:58:26 ============================================================================ +00:58:26 + + +waiting on router queue for slot.... +00:58:26 Sending to : +00:58:26 ============================================================================ +00:58:26 ============================================================================ +00:58:26 Slot Id : <169> +00:58:26 Transaction Type : RESPONSE +00:58:26 Received From : +00:58:26 ============================================================================ +00:58:26 FNo. Len. Field Value +00:58:26 ============================================================================ +00:58:26 [ 1] [ 4] [0810] +00:58:26 [ 7] [ 10] [0319055733] +00:58:26 [ 11] [ 6] [153298] +00:58:26 [ 39] [ 2] [00] +00:58:26 [ 70] [ 3] [301] +00:58:26 ============================================================================ +00:58:26 Calculate Source COMM Id = 2 +00:58:26 ============================================================================ +00:58:26 + + +waiting on router queue for slot.... +00:58:27 ============================================================================ +00:58:27 Slot Id : <225> +00:58:27 Transaction Type : REQUEST +00:58:27 Received From : +00:58:27 ============================================================================ +00:58:27 FNo. Len. Field Value +00:58:27 ============================================================================ +00:58:27 [ 1] [ 4] [0800] +00:58:27 [ 2] [ 5] [02531] +00:58:27 [ 3] [ 6] [579008] +00:58:27 [ 7] [ 10] [0319175827] +00:58:27 [ 11] [ 6] [806468] +00:58:27 [ 15] [ 10] [0319175827] +00:58:27 [ 37] [ 11] [57900806468] +00:58:27 [ 70] [ 3] [001] +00:58:27 ============================================================================ +00:58:27 + + +waiting on router queue for slot.... +00:58:27 ============================================================================ +00:58:27 Slot Id : <225> +00:58:27 Transaction Type : RESPONSE +00:58:27 Received From : +00:58:27 ============================================================================ +00:58:27 FNo. Len. Field Value +00:58:27 ============================================================================ +00:58:27 [ 1] [ 4] [0810] +00:58:27 [ 7] [ 10] [0319175827] +00:58:27 [ 11] [ 6] [806468] +00:58:27 [ 15] [ 4] [0319] +00:58:27 [ 37] [ 12] [57900806468] +00:58:27 [ 39] [ 2] [00] +00:58:27 [ 70] [ 3] [001] +00:58:27 ============================================================================ +00:58:27 Sending to : +00:58:27 ============================================================================ +00:58:27 + + +waiting on router queue for slot.... +00:58:36 ============================================================================ +00:58:36 Slot Id : <232> +00:58:36 Transaction Type : REQUEST +00:58:36 Received From : +00:58:36 ============================================================================ +00:58:36 FNo. Len. Field Value +00:58:36 ============================================================================ +00:58:36 [ 1] [ 4] [0800] +00:58:36 [ 7] [ 10] [0319055744] +00:58:36 [ 11] [ 6] [153299] +00:58:36 [ 70] [ 3] [301] +00:58:36 ============================================================================ +00:58:36 + + +waiting on router queue for slot.... +00:58:36 Sending to : +00:58:36 ============================================================================ +00:58:36 ============================================================================ +00:58:36 Slot Id : <232> +00:58:36 Transaction Type : RESPONSE +00:58:36 Received From : +00:58:36 ============================================================================ +00:58:36 FNo. Len. Field Value +00:58:36 ============================================================================ +00:58:36 [ 1] [ 4] [0810] +00:58:36 [ 7] [ 10] [0319055744] +00:58:36 [ 11] [ 6] [153299] +00:58:36 [ 39] [ 2] [00] +00:58:36 [ 70] [ 3] [301] +00:58:36 ============================================================================ +00:58:36 Calculate Source COMM Id = 2 +00:58:36 ============================================================================ +00:58:36 + + +waiting on router queue for slot.... +00:58:47 ============================================================================ +00:58:47 Slot Id : <205> +00:58:47 Transaction Type : REQUEST +00:58:47 Received From : +00:58:47 ============================================================================ +00:58:47 FNo. Len. Field Value +00:58:47 ============================================================================ +00:58:47 [ 1] [ 4] [0800] +00:58:47 [ 7] [ 10] [0319055754] +00:58:47 [ 11] [ 6] [153300] +00:58:47 [ 70] [ 3] [301] +00:58:47 ============================================================================ +00:58:47 + + +waiting on router queue for slot.... +00:58:47 Sending to : +00:58:47 ============================================================================ +00:58:47 ============================================================================ +00:58:47 Slot Id : <205> +00:58:47 Transaction Type : RESPONSE +00:58:47 Received From : +00:58:47 ============================================================================ +00:58:47 FNo. Len. Field Value +00:58:47 ============================================================================ +00:58:47 [ 1] [ 4] [0810] +00:58:47 [ 7] [ 10] [0319055754] +00:58:47 [ 11] [ 6] [153300] +00:58:47 [ 39] [ 2] [00] +00:58:47 [ 70] [ 3] [301] +00:58:47 ============================================================================ +00:58:47 Calculate Source COMM Id = 2 +00:58:47 ============================================================================ +00:58:47 + + +waiting on router queue for slot.... +00:58:57 ============================================================================ +00:58:57 Slot Id : <173> +00:58:57 Transaction Type : REQUEST +00:58:57 Received From : +00:58:57 ============================================================================ +00:58:57 FNo. Len. Field Value +00:58:57 ============================================================================ +00:58:57 [ 1] [ 4] [0800] +00:58:57 [ 7] [ 10] [0319055804] +00:58:57 [ 11] [ 6] [153301] +00:58:57 [ 70] [ 3] [301] +00:58:57 ============================================================================ +00:58:57 + + +waiting on router queue for slot.... +00:58:57 Sending to : +00:58:57 ============================================================================ +00:58:57 ============================================================================ +00:58:57 Slot Id : <173> +00:58:57 Transaction Type : RESPONSE +00:58:57 Received From : +00:58:57 ============================================================================ +00:58:57 FNo. Len. Field Value +00:58:57 ============================================================================ +00:58:57 [ 1] [ 4] [0810] +00:58:57 [ 7] [ 10] [0319055804] +00:58:57 [ 11] [ 6] [153301] +00:58:57 [ 39] [ 2] [00] +00:58:57 [ 70] [ 3] [301] +00:58:57 ============================================================================ +00:58:57 Calculate Source COMM Id = 2 +00:58:57 ============================================================================ +00:58:57 + + +waiting on router queue for slot.... +00:59:08 ============================================================================ +00:59:08 Slot Id : <230> +00:59:08 Transaction Type : REQUEST +00:59:08 Received From : +00:59:08 ============================================================================ +00:59:08 FNo. Len. Field Value +00:59:08 ============================================================================ +00:59:08 [ 1] [ 4] [0800] +00:59:08 [ 7] [ 10] [0319055815] +00:59:08 [ 11] [ 6] [153302] +00:59:08 [ 70] [ 3] [301] +00:59:08 ============================================================================ +00:59:08 + + +waiting on router queue for slot.... +00:59:08 Sending to : +00:59:08 ============================================================================ +00:59:08 ============================================================================ +00:59:08 Slot Id : <230> +00:59:08 Transaction Type : RESPONSE +00:59:08 Received From : +00:59:08 ============================================================================ +00:59:08 FNo. Len. Field Value +00:59:08 ============================================================================ +00:59:08 [ 1] [ 4] [0810] +00:59:08 [ 7] [ 10] [0319055815] +00:59:08 [ 11] [ 6] [153302] +00:59:08 [ 39] [ 2] [00] +00:59:08 [ 70] [ 3] [301] +00:59:08 ============================================================================ +00:59:08 Calculate Source COMM Id = 2 +00:59:08 ============================================================================ +00:59:08 + + +waiting on router queue for slot.... +00:59:19 ============================================================================ +00:59:19 Slot Id : <188> +00:59:19 Transaction Type : REQUEST +00:59:19 Received From : +00:59:19 ============================================================================ +00:59:19 FNo. Len. Field Value +00:59:19 ============================================================================ +00:59:19 [ 1] [ 4] [0800] +00:59:19 [ 7] [ 10] [0319055826] +00:59:19 [ 11] [ 6] [153303] +00:59:19 [ 70] [ 3] [301] +00:59:19 ============================================================================ +00:59:19 + + +waiting on router queue for slot.... +00:59:19 Sending to : +00:59:19 ============================================================================ +00:59:19 ============================================================================ +00:59:19 Slot Id : <188> +00:59:19 Transaction Type : RESPONSE +00:59:19 Received From : +00:59:19 ============================================================================ +00:59:19 FNo. Len. Field Value +00:59:19 ============================================================================ +00:59:19 [ 1] [ 4] [0810] +00:59:19 [ 7] [ 10] [0319055826] +00:59:19 [ 11] [ 6] [153303] +00:59:19 [ 39] [ 2] [00] +00:59:19 [ 70] [ 3] [301] +00:59:19 ============================================================================ +00:59:19 Calculate Source COMM Id = 2 +00:59:19 ============================================================================ +00:59:19 + + +waiting on router queue for slot.... +00:59:24 ============================================================================ +00:59:24 Slot Id : <229> +00:59:24 Transaction Type : REQUEST +00:59:24 Received From : +00:59:24 ============================================================================ +00:59:24 FNo. Len. Field Value +00:59:24 ============================================================================ +00:59:24 [ 1] [ 4] [0800] +00:59:24 [ 7] [ 10] [0320081112] +00:59:24 [ 11] [ 6] [011112] +00:59:24 [ 37] [ 12] [57901011112] +00:59:24 [ 70] [ 3] [301] +00:59:24 ============================================================================ +00:59:24 + + +waiting on router queue for slot.... +00:59:24 Sending to : +00:59:24 ============================================================================ +00:59:24 ============================================================================ +00:59:24 Slot Id : <229> +00:59:24 Transaction Type : RESPONSE +00:59:24 Received From : +00:59:24 ============================================================================ +00:59:24 FNo. Len. Field Value +00:59:24 ============================================================================ +00:59:24 [ 1] [ 4] [0810] +00:59:24 [ 7] [ 10] [0320081112] +00:59:24 [ 11] [ 6] [011112] +00:59:24 [ 37] [ 12] [579010111120] +00:59:24 [ 39] [ 2] [00] +00:59:24 [ 70] [ 3] [810] +00:59:24 ============================================================================ +00:59:24 Calculate Source COMM Id = 6 +00:59:24 ============================================================================ +00:59:24 + + +waiting on router queue for slot.... +00:59:29 ============================================================================ +00:59:29 Slot Id : <223> +00:59:29 Transaction Type : REQUEST +00:59:29 Received From : +00:59:29 ============================================================================ +00:59:29 FNo. Len. Field Value +00:59:29 ============================================================================ +00:59:29 [ 1] [ 4] [0800] +00:59:29 [ 2] [ 5] [02531] +00:59:29 [ 3] [ 6] [579008] +00:59:29 [ 7] [ 10] [0319175929] +00:59:29 [ 11] [ 6] [806469] +00:59:29 [ 15] [ 10] [0319175929] +00:59:29 [ 37] [ 11] [57900806469] +00:59:29 [ 70] [ 3] [001] +00:59:29 ============================================================================ +00:59:29 + + +waiting on router queue for slot.... +00:59:29 ============================================================================ +00:59:29 Slot Id : <223> +00:59:29 Transaction Type : RESPONSE +00:59:29 Received From : +00:59:29 ============================================================================ +00:59:29 FNo. Len. Field Value +00:59:29 ============================================================================ +00:59:29 [ 1] [ 4] [0810] +00:59:29 [ 7] [ 10] [0319175929] +00:59:29 [ 11] [ 6] [806469] +00:59:29 [ 15] [ 4] [0319] +00:59:29 [ 37] [ 12] [57900806469] +00:59:29 [ 39] [ 2] [00] +00:59:29 [ 70] [ 3] [001] +00:59:29 ============================================================================ +00:59:29 Sending to : +00:59:29 ============================================================================ +00:59:29 + + +waiting on router queue for slot.... +00:59:31 ============================================================================ +00:59:31 Slot Id : <177> +00:59:31 Transaction Type : REQUEST +00:59:31 Received From : +00:59:31 ============================================================================ +00:59:31 FNo. Len. Field Value +00:59:31 ============================================================================ +00:59:31 [ 1] [ 4] [0800] +00:59:31 [ 7] [ 10] [0319055838] +00:59:31 [ 11] [ 6] [153304] +00:59:31 [ 70] [ 3] [301] +00:59:31 ============================================================================ +00:59:31 + + +waiting on router queue for slot.... +00:59:31 Sending to : +00:59:31 ============================================================================ +00:59:31 ============================================================================ +00:59:31 Slot Id : <177> +00:59:31 Transaction Type : RESPONSE +00:59:31 Received From : +00:59:31 ============================================================================ +00:59:31 FNo. Len. Field Value +00:59:31 ============================================================================ +00:59:31 [ 1] [ 4] [0810] +00:59:31 [ 7] [ 10] [0319055838] +00:59:31 [ 11] [ 6] [153304] +00:59:31 [ 39] [ 2] [00] +00:59:31 [ 70] [ 3] [301] +00:59:31 ============================================================================ +00:59:31 Calculate Source COMM Id = 2 +00:59:31 ============================================================================ +00:59:31 + + +waiting on router queue for slot.... +00:59:42 ============================================================================ +00:59:42 Slot Id : <215> +00:59:42 Transaction Type : REQUEST +00:59:42 Received From : +00:59:42 ============================================================================ +00:59:42 FNo. Len. Field Value +00:59:42 ============================================================================ +00:59:42 [ 1] [ 4] [0800] +00:59:42 [ 7] [ 10] [0319055849] +00:59:42 [ 11] [ 6] [153305] +00:59:42 [ 70] [ 3] [301] +00:59:42 ============================================================================ +00:59:42 + + +waiting on router queue for slot.... +00:59:42 Sending to : +00:59:42 ============================================================================ +00:59:42 ============================================================================ +00:59:42 Slot Id : <215> +00:59:42 Transaction Type : RESPONSE +00:59:42 Received From : +00:59:42 ============================================================================ +00:59:42 FNo. Len. Field Value +00:59:42 ============================================================================ +00:59:42 [ 1] [ 4] [0810] +00:59:42 [ 7] [ 10] [0319055849] +00:59:42 [ 11] [ 6] [153305] +00:59:42 [ 39] [ 2] [00] +00:59:42 [ 70] [ 3] [301] +00:59:42 ============================================================================ +00:59:42 Calculate Source COMM Id = 2 +00:59:42 ============================================================================ +00:59:42 + + +waiting on router queue for slot.... +00:59:53 ============================================================================ +00:59:53 Slot Id : <235> +00:59:53 Transaction Type : REQUEST +00:59:53 Received From : +00:59:53 ============================================================================ +00:59:53 FNo. Len. Field Value +00:59:53 ============================================================================ +00:59:53 [ 1] [ 4] [0800] +00:59:53 [ 7] [ 10] [0319055900] +00:59:53 [ 11] [ 6] [153306] +00:59:53 [ 70] [ 3] [301] +00:59:53 ============================================================================ +00:59:53 + + +waiting on router queue for slot.... +00:59:53 Sending to : +00:59:53 ============================================================================ +00:59:53 ============================================================================ +00:59:53 Slot Id : <235> +00:59:53 Transaction Type : RESPONSE +00:59:53 Received From : +00:59:53 ============================================================================ +00:59:53 FNo. Len. Field Value +00:59:53 ============================================================================ +00:59:53 [ 1] [ 4] [0810] +00:59:53 [ 7] [ 10] [0319055900] +00:59:53 [ 11] [ 6] [153306] +00:59:53 [ 39] [ 2] [00] +00:59:53 [ 70] [ 3] [301] +00:59:53 ============================================================================ +00:59:53 Calculate Source COMM Id = 2 +00:59:53 ============================================================================ +00:59:53 + + +waiting on router queue for slot.... +00:59:56 ============================================================================ +00:59:56 Slot Id : <243> +00:59:56 Transaction Type : REQUEST +00:59:56 Received From : +00:59:56 ============================================================================ +00:59:56 FNo. Len. Field Value +00:59:56 ============================================================================ +00:59:56 [ 1] [ 4] [0800] +00:59:56 [ 7] [ 10] [0319180742] +00:59:56 [ 11] [ 6] [064447] +00:59:56 [ 37] [ 12] [57901064447] +00:59:56 [ 70] [ 3] [301] +00:59:56 ============================================================================ +00:59:56 + + +waiting on router queue for slot.... +00:59:56 Sending to : +00:59:56 ============================================================================ +00:59:56 ============================================================================ +00:59:56 Slot Id : <243> +00:59:56 Transaction Type : RESPONSE +00:59:56 Received From : +00:59:56 ============================================================================ +00:59:56 FNo. Len. Field Value +00:59:56 ============================================================================ +00:59:56 [ 1] [ 4] [0810] +00:59:56 [ 7] [ 10] [0319180742] +00:59:56 [ 11] [ 6] [064447] +00:59:56 [ 37] [ 12] [579010644470] +00:59:56 [ 39] [ 2] [00] +00:59:56 [ 70] [ 3] [810] +00:59:56 ============================================================================ +00:59:56 Calculate Source COMM Id = 1 +00:59:56 ============================================================================ +00:59:56 + + +waiting on router queue for slot.... +01:00:04 ============================================================================ +01:00:04 Slot Id : <246> +01:00:04 Transaction Type : REQUEST +01:00:04 Received From : +01:00:04 ============================================================================ +01:00:04 FNo. Len. Field Value +01:00:04 ============================================================================ +01:00:04 [ 1] [ 4] [0800] +01:00:04 [ 7] [ 10] [0319055911] +01:00:04 [ 11] [ 6] [153307] +01:00:04 [ 70] [ 3] [301] +01:00:04 ============================================================================ +01:00:04 + + +waiting on router queue for slot.... +01:00:04 Sending to : +01:00:04 ============================================================================ +01:00:04 ============================================================================ +01:00:04 Slot Id : <246> +01:00:04 Transaction Type : RESPONSE +01:00:04 Received From : +01:00:04 ============================================================================ +01:00:04 FNo. Len. Field Value +01:00:04 ============================================================================ +01:00:04 [ 1] [ 4] [0810] +01:00:04 [ 7] [ 10] [0319055911] +01:00:04 [ 11] [ 6] [153307] +01:00:04 [ 39] [ 2] [00] +01:00:04 [ 70] [ 3] [301] +01:00:04 ============================================================================ +01:00:04 Calculate Source COMM Id = 2 +01:00:04 ============================================================================ +01:00:04 + + +waiting on router queue for slot.... +01:00:19 ============================================================================ +01:00:19 Slot Id : <242> +01:00:19 Transaction Type : REQUEST +01:00:19 Received From : +01:00:19 ============================================================================ +01:00:19 FNo. Len. Field Value +01:00:19 ============================================================================ +01:00:19 [ 1] [ 4] [0800] +01:00:19 [ 7] [ 10] [0319055926] +01:00:19 [ 11] [ 6] [153308] +01:00:19 [ 70] [ 3] [301] +01:00:19 ============================================================================ +01:00:19 + + +waiting on router queue for slot.... +01:00:19 Sending to : +01:00:19 ============================================================================ +01:00:19 ============================================================================ +01:00:19 Slot Id : <242> +01:00:19 Transaction Type : RESPONSE +01:00:19 Received From : +01:00:19 ============================================================================ +01:00:19 FNo. Len. Field Value +01:00:19 ============================================================================ +01:00:19 [ 1] [ 4] [0810] +01:00:19 [ 7] [ 10] [0319055926] +01:00:19 [ 11] [ 6] [153308] +01:00:19 [ 39] [ 2] [00] +01:00:19 [ 70] [ 3] [301] +01:00:19 ============================================================================ +01:00:19 Calculate Source COMM Id = 2 +01:00:19 ============================================================================ +01:00:19 + + +waiting on router queue for slot.... +01:00:29 ============================================================================ +01:00:29 Slot Id : <248> +01:00:29 Transaction Type : REQUEST +01:00:29 Received From : +01:00:29 ============================================================================ +01:00:29 FNo. Len. Field Value +01:00:29 ============================================================================ +01:00:29 [ 1] [ 4] [0800] +01:00:29 [ 7] [ 10] [0319055936] +01:00:29 [ 11] [ 6] [153309] +01:00:29 [ 70] [ 3] [301] +01:00:29 ============================================================================ +01:00:29 + + +waiting on router queue for slot.... +01:00:29 Sending to : +01:00:29 ============================================================================ +01:00:29 ============================================================================ +01:00:29 Slot Id : <248> +01:00:29 Transaction Type : RESPONSE +01:00:29 Received From : +01:00:29 ============================================================================ +01:00:29 FNo. Len. Field Value +01:00:29 ============================================================================ +01:00:29 [ 1] [ 4] [0810] +01:00:29 [ 7] [ 10] [0319055936] +01:00:29 [ 11] [ 6] [153309] +01:00:29 [ 39] [ 2] [00] +01:00:29 [ 70] [ 3] [301] +01:00:29 ============================================================================ +01:00:29 Calculate Source COMM Id = 2 +01:00:29 ============================================================================ +01:00:29 + + +waiting on router queue for slot.... +01:00:29 ============================================================================ +01:00:29 Slot Id : <244> +01:00:29 Transaction Type : REQUEST +01:00:29 Received From : +01:00:29 ============================================================================ +01:00:29 FNo. Len. Field Value +01:00:29 ============================================================================ +01:00:29 [ 1] [ 4] [0800] +01:00:29 [ 7] [ 10] [0320081217] +01:00:29 [ 11] [ 6] [011217] +01:00:29 [ 37] [ 12] [57901011217] +01:00:29 [ 70] [ 3] [301] +01:00:29 ============================================================================ +01:00:29 + + +waiting on router queue for slot.... +01:00:29 Sending to : +01:00:29 ============================================================================ +01:00:29 ============================================================================ +01:00:29 Slot Id : <244> +01:00:29 Transaction Type : RESPONSE +01:00:29 Received From : +01:00:29 ============================================================================ +01:00:29 FNo. Len. Field Value +01:00:29 ============================================================================ +01:00:29 [ 1] [ 4] [0810] +01:00:29 [ 7] [ 10] [0320081217] +01:00:29 [ 11] [ 6] [011217] +01:00:29 [ 37] [ 12] [579010112170] +01:00:29 [ 39] [ 2] [00] +01:00:29 [ 70] [ 3] [810] +01:00:29 ============================================================================ +01:00:29 Calculate Source COMM Id = 6 +01:00:29 ============================================================================ +01:00:29 + + +waiting on router queue for slot.... +01:00:31 ============================================================================ +01:00:31 Slot Id : <227> +01:00:31 Transaction Type : REQUEST +01:00:31 Received From : +01:00:31 ============================================================================ +01:00:31 FNo. Len. Field Value +01:00:31 ============================================================================ +01:00:31 [ 1] [ 4] [0800] +01:00:31 [ 2] [ 5] [02531] +01:00:31 [ 3] [ 6] [579018] +01:00:31 [ 7] [ 10] [0319180031] +01:00:31 [ 11] [ 6] [806470] +01:00:31 [ 15] [ 10] [0319180031] +01:00:31 [ 37] [ 11] [57901806470] +01:00:31 [ 70] [ 3] [001] +01:00:31 ============================================================================ +01:00:31 + + +waiting on router queue for slot.... +01:00:31 ============================================================================ +01:00:31 Slot Id : <227> +01:00:31 Transaction Type : RESPONSE +01:00:31 Received From : +01:00:31 ============================================================================ +01:00:31 FNo. Len. Field Value +01:00:31 ============================================================================ +01:00:31 [ 1] [ 4] [0810] +01:00:31 [ 7] [ 10] [0319180031] +01:00:31 [ 11] [ 6] [806470] +01:00:31 [ 15] [ 4] [0319] +01:00:31 [ 37] [ 12] [57901806470] +01:00:31 [ 39] [ 2] [00] +01:00:31 [ 70] [ 3] [001] +01:00:31 ============================================================================ +01:00:31 Sending to : +01:00:31 ============================================================================ +01:00:31 + + +waiting on router queue for slot.... +01:00:41 ============================================================================ +01:00:41 Slot Id : <250> +01:00:41 Transaction Type : REQUEST +01:00:41 Received From : +01:00:41 ============================================================================ +01:00:41 FNo. Len. Field Value +01:00:41 ============================================================================ +01:00:41 [ 1] [ 4] [0800] +01:00:41 [ 7] [ 10] [0319055948] +01:00:41 [ 11] [ 6] [153310] +01:00:41 [ 70] [ 3] [301] +01:00:41 ============================================================================ +01:00:41 + + +waiting on router queue for slot.... +01:00:41 Sending to : +01:00:41 ============================================================================ +01:00:41 ============================================================================ +01:00:41 Slot Id : <250> +01:00:41 Transaction Type : RESPONSE +01:00:41 Received From : +01:00:41 ============================================================================ +01:00:41 FNo. Len. Field Value +01:00:41 ============================================================================ +01:00:41 [ 1] [ 4] [0810] +01:00:41 [ 7] [ 10] [0319055948] +01:00:41 [ 11] [ 6] [153310] +01:00:41 [ 39] [ 2] [00] +01:00:41 [ 70] [ 3] [301] +01:00:41 ============================================================================ +01:00:41 Calculate Source COMM Id = 2 +01:00:41 ============================================================================ +01:00:41 + + +waiting on router queue for slot.... +01:00:52 ============================================================================ +01:00:52 Slot Id : <251> +01:00:52 Transaction Type : REQUEST +01:00:52 Received From : +01:00:52 ============================================================================ +01:00:52 FNo. Len. Field Value +01:00:52 ============================================================================ +01:00:52 [ 1] [ 4] [0800] +01:00:52 [ 7] [ 10] [0319055959] +01:00:52 [ 11] [ 6] [153311] +01:00:52 [ 70] [ 3] [301] +01:00:52 ============================================================================ +01:00:52 + + +waiting on router queue for slot.... +01:00:52 Sending to : +01:00:52 ============================================================================ +01:00:52 ============================================================================ +01:00:52 Slot Id : <251> +01:00:52 Transaction Type : RESPONSE +01:00:52 Received From : +01:00:52 ============================================================================ +01:00:52 FNo. Len. Field Value +01:00:52 ============================================================================ +01:00:52 [ 1] [ 4] [0810] +01:00:52 [ 7] [ 10] [0319055959] +01:00:52 [ 11] [ 6] [153311] +01:00:52 [ 39] [ 2] [00] +01:00:52 [ 70] [ 3] [301] +01:00:52 ============================================================================ +01:00:52 Calculate Source COMM Id = 2 +01:00:52 ============================================================================ +01:00:52 + + +waiting on router queue for slot.... +01:01:04 ============================================================================ +01:01:04 Slot Id : <200> +01:01:04 Transaction Type : REQUEST +01:01:04 Received From : +01:01:04 ============================================================================ +01:01:04 FNo. Len. Field Value +01:01:04 ============================================================================ +01:01:04 [ 1] [ 4] [0800] +01:01:04 [ 7] [ 10] [0320010051] +01:01:04 [ 11] [ 6] [008142] +01:01:04 [ 37] [ 12] [507901008142] +01:01:04 [ 70] [ 3] [ ] +01:01:04 ============================================================================ +01:01:04 + + +waiting on router queue for slot.... +01:01:04 Sending to : +01:01:04 ============================================================================ +01:01:04 ============================================================================ +01:01:04 Slot Id : <200> +01:01:04 Transaction Type : RESPONSE +01:01:04 Received From : +01:01:04 ============================================================================ +01:01:04 FNo. Len. Field Value +01:01:04 ============================================================================ +01:01:04 [ 1] [ 4] [0810] +01:01:04 [ 7] [ 10] [0320010051] +01:01:04 [ 11] [ 6] [008142] +01:01:04 [ 37] [ 12] [507901008142] +01:01:04 [ 39] [ 2] [91] +01:01:04 [ 70] [ 3] [ ] +01:01:04 ============================================================================ +01:01:04 Calculate Source COMM Id = 3 +01:01:04 ============================================================================ +01:01:04 + + +waiting on router queue for slot.... +01:01:07 ============================================================================ +01:01:07 Slot Id : <226> +01:01:07 Transaction Type : REQUEST +01:01:07 Received From : +01:01:07 ============================================================================ +01:01:07 FNo. Len. Field Value +01:01:07 ============================================================================ +01:01:07 [ 1] [ 4] [0800] +01:01:07 [ 7] [ 10] [0319060015] +01:01:07 [ 11] [ 6] [153312] +01:01:07 [ 70] [ 3] [301] +01:01:07 ============================================================================ +01:01:07 + + +waiting on router queue for slot.... +01:01:07 Sending to : +01:01:07 ============================================================================ +01:01:07 ============================================================================ +01:01:07 Slot Id : <226> +01:01:07 Transaction Type : RESPONSE +01:01:07 Received From : +01:01:07 ============================================================================ +01:01:07 FNo. Len. Field Value +01:01:07 ============================================================================ +01:01:07 [ 1] [ 4] [0810] +01:01:07 [ 7] [ 10] [0319060015] +01:01:07 [ 11] [ 6] [153312] +01:01:07 [ 39] [ 2] [00] +01:01:07 [ 70] [ 3] [301] +01:01:07 ============================================================================ +01:01:07 Calculate Source COMM Id = 2 +01:01:07 ============================================================================ +01:01:07 + + +waiting on router queue for slot.... +01:01:21 ============================================================================ +01:01:21 Slot Id : <255> +01:01:21 Transaction Type : REQUEST +01:01:21 Received From : +01:01:21 ============================================================================ +01:01:21 FNo. Len. Field Value +01:01:21 ============================================================================ +01:01:21 [ 1] [ 4] [0800] +01:01:21 [ 7] [ 10] [0319175912] +01:01:21 [ 11] [ 6] [064664] +01:01:21 [ 37] [ 12] [57900064664] +01:01:21 [ 70] [ 3] [301] +01:01:21 ============================================================================ +01:01:21 + + +waiting on router queue for slot.... +01:01:21 Sending to : +01:01:21 ============================================================================ +01:01:21 ============================================================================ +01:01:21 Slot Id : <255> +01:01:21 Transaction Type : RESPONSE +01:01:21 Received From : +01:01:21 ============================================================================ +01:01:21 FNo. Len. Field Value +01:01:21 ============================================================================ +01:01:21 [ 1] [ 4] [0810] +01:01:21 [ 7] [ 10] [0319175912] +01:01:21 [ 11] [ 6] [064664] +01:01:21 [ 37] [ 12] [579000646640] +01:01:21 [ 39] [ 2] [00] +01:01:21 [ 70] [ 3] [810] +01:01:21 ============================================================================ +01:01:21 Calculate Source COMM Id = 4 +01:01:21 ============================================================================ +01:01:21 + + +waiting on router queue for slot.... +01:01:24 ============================================================================ +01:01:24 Slot Id : <233> +01:01:24 Transaction Type : REQUEST +01:01:24 Received From : +01:01:24 ============================================================================ +01:01:24 FNo. Len. Field Value +01:01:24 ============================================================================ +01:01:24 [ 1] [ 4] [0800] +01:01:24 [ 7] [ 10] [0319060031] +01:01:24 [ 11] [ 6] [153313] +01:01:24 [ 70] [ 3] [301] +01:01:24 ============================================================================ +01:01:24 + + +waiting on router queue for slot.... +01:01:24 Sending to : +01:01:24 ============================================================================ +01:01:24 ============================================================================ +01:01:24 Slot Id : <233> +01:01:24 Transaction Type : RESPONSE +01:01:24 Received From : +01:01:24 ============================================================================ +01:01:24 FNo. Len. Field Value +01:01:24 ============================================================================ +01:01:24 [ 1] [ 4] [0810] +01:01:24 [ 7] [ 10] [0319060031] +01:01:24 [ 11] [ 6] [153313] +01:01:24 [ 39] [ 2] [00] +01:01:24 [ 70] [ 3] [301] +01:01:24 ============================================================================ +01:01:24 Calculate Source COMM Id = 2 +01:01:24 ============================================================================ +01:01:24 + + +waiting on router queue for slot.... +01:01:33 ============================================================================ +01:01:33 Slot Id : <234> +01:01:33 Transaction Type : REQUEST +01:01:33 Received From : +01:01:33 ============================================================================ +01:01:33 FNo. Len. Field Value +01:01:33 ============================================================================ +01:01:33 [ 1] [ 4] [0800] +01:01:33 [ 2] [ 5] [02531] +01:01:33 [ 3] [ 6] [579018] +01:01:33 [ 7] [ 10] [0319180133] +01:01:33 [ 11] [ 6] [806471] +01:01:33 [ 15] [ 10] [0319180133] +01:01:33 [ 37] [ 11] [57901806471] +01:01:33 [ 70] [ 3] [001] +01:01:33 ============================================================================ +01:01:33 + + +waiting on router queue for slot.... +01:01:33 ============================================================================ +01:01:33 Slot Id : <234> +01:01:33 Transaction Type : RESPONSE +01:01:33 Received From : +01:01:33 ============================================================================ +01:01:33 FNo. Len. Field Value +01:01:33 ============================================================================ +01:01:33 [ 1] [ 4] [0810] +01:01:33 [ 7] [ 10] [0319180133] +01:01:33 [ 11] [ 6] [806471] +01:01:33 [ 15] [ 4] [0319] +01:01:33 [ 37] [ 12] [57901806471] +01:01:33 [ 39] [ 2] [00] +01:01:33 [ 70] [ 3] [001] +01:01:33 ============================================================================ +01:01:33 Sending to : +01:01:33 ============================================================================ +01:01:33 + + +waiting on router queue for slot.... +01:01:34 ============================================================================ +01:01:34 Slot Id : <238> +01:01:34 Transaction Type : REQUEST +01:01:34 Received From : +01:01:34 ============================================================================ +01:01:34 FNo. Len. Field Value +01:01:34 ============================================================================ +01:01:34 [ 1] [ 4] [0800] +01:01:34 [ 7] [ 10] [0320081322] +01:01:34 [ 11] [ 6] [011322] +01:01:34 [ 37] [ 12] [57901011322] +01:01:34 [ 70] [ 3] [301] +01:01:34 ============================================================================ +01:01:34 + + +waiting on router queue for slot.... +01:01:34 Sending to : +01:01:34 ============================================================================ +01:01:34 ============================================================================ +01:01:34 Slot Id : <238> +01:01:34 Transaction Type : RESPONSE +01:01:34 Received From : +01:01:34 ============================================================================ +01:01:34 FNo. Len. Field Value +01:01:34 ============================================================================ +01:01:34 [ 1] [ 4] [0810] +01:01:34 [ 7] [ 10] [0320081322] +01:01:34 [ 11] [ 6] [011322] +01:01:34 [ 37] [ 12] [579010113220] +01:01:34 [ 39] [ 2] [00] +01:01:34 [ 70] [ 3] [810] +01:01:34 ============================================================================ +01:01:34 Calculate Source COMM Id = 6 +01:01:34 ============================================================================ +01:01:34 + + +waiting on router queue for slot.... +01:01:35 ============================================================================ +01:01:35 Slot Id : <216> +01:01:35 Transaction Type : REQUEST +01:01:35 Received From : +01:01:35 ============================================================================ +01:01:35 FNo. Len. Field Value +01:01:35 ============================================================================ +01:01:35 [ 1] [ 4] [0800] +01:01:35 [ 7] [ 10] [0319060042] +01:01:35 [ 11] [ 6] [153314] +01:01:35 [ 70] [ 3] [301] +01:01:35 ============================================================================ +01:01:35 + + +waiting on router queue for slot.... +01:01:35 Sending to : +01:01:35 ============================================================================ +01:01:35 ============================================================================ +01:01:35 Slot Id : <216> +01:01:35 Transaction Type : RESPONSE +01:01:35 Received From : +01:01:35 ============================================================================ +01:01:35 FNo. Len. Field Value +01:01:35 ============================================================================ +01:01:35 [ 1] [ 4] [0810] +01:01:35 [ 7] [ 10] [0319060042] +01:01:35 [ 11] [ 6] [153314] +01:01:35 [ 39] [ 2] [00] +01:01:35 [ 70] [ 3] [301] +01:01:35 ============================================================================ +01:01:35 Calculate Source COMM Id = 2 +01:01:35 ============================================================================ +01:01:35 + + +waiting on router queue for slot.... +01:01:46 ============================================================================ +01:01:46 Slot Id : <253> +01:01:46 Transaction Type : REQUEST +01:01:46 Received From : +01:01:46 ============================================================================ +01:01:46 FNo. Len. Field Value +01:01:46 ============================================================================ +01:01:46 [ 1] [ 4] [0800] +01:01:46 [ 7] [ 10] [0319060053] +01:01:46 [ 11] [ 6] [153315] +01:01:46 [ 70] [ 3] [301] +01:01:46 ============================================================================ +01:01:46 + + +waiting on router queue for slot.... +01:01:46 Sending to : +01:01:46 ============================================================================ +01:01:46 ============================================================================ +01:01:46 Slot Id : <253> +01:01:46 Transaction Type : RESPONSE +01:01:46 Received From : +01:01:46 ============================================================================ +01:01:46 FNo. Len. Field Value +01:01:46 ============================================================================ +01:01:46 [ 1] [ 4] [0810] +01:01:46 [ 7] [ 10] [0319060053] +01:01:46 [ 11] [ 6] [153315] +01:01:46 [ 39] [ 2] [00] +01:01:46 [ 70] [ 3] [301] +01:01:46 ============================================================================ +01:01:46 Calculate Source COMM Id = 2 +01:01:46 ============================================================================ +01:01:46 + + +waiting on router queue for slot.... +01:02:03 ============================================================================ +01:02:03 Slot Id : <237> +01:02:03 Transaction Type : REQUEST +01:02:03 Received From : +01:02:03 ============================================================================ +01:02:03 FNo. Len. Field Value +01:02:03 ============================================================================ +01:02:03 [ 1] [ 4] [0800] +01:02:03 [ 7] [ 10] [0319060110] +01:02:03 [ 11] [ 6] [153316] +01:02:03 [ 70] [ 3] [301] +01:02:03 ============================================================================ +01:02:03 + + +waiting on router queue for slot.... +01:02:03 Sending to : +01:02:03 ============================================================================ +01:02:03 ============================================================================ +01:02:03 Slot Id : <237> +01:02:03 Transaction Type : RESPONSE +01:02:03 Received From : +01:02:03 ============================================================================ +01:02:03 FNo. Len. Field Value +01:02:03 ============================================================================ +01:02:03 [ 1] [ 4] [0810] +01:02:03 [ 7] [ 10] [0319060110] +01:02:03 [ 11] [ 6] [153316] +01:02:03 [ 39] [ 2] [00] +01:02:03 [ 70] [ 3] [301] +01:02:03 ============================================================================ +01:02:03 Calculate Source COMM Id = 2 +01:02:03 ============================================================================ +01:02:03 + + +waiting on router queue for slot.... +01:02:13 ============================================================================ +01:02:13 Slot Id : <220> +01:02:13 Transaction Type : REQUEST +01:02:13 Received From : +01:02:13 ============================================================================ +01:02:13 FNo. Len. Field Value +01:02:13 ============================================================================ +01:02:13 [ 1] [ 4] [0800] +01:02:13 [ 7] [ 10] [0319060120] +01:02:13 [ 11] [ 6] [153317] +01:02:13 [ 70] [ 3] [301] +01:02:13 ============================================================================ +01:02:13 + + +waiting on router queue for slot.... +01:02:13 Sending to : +01:02:13 ============================================================================ +01:02:13 ============================================================================ +01:02:13 Slot Id : <220> +01:02:13 Transaction Type : RESPONSE +01:02:13 Received From : +01:02:13 ============================================================================ +01:02:13 FNo. Len. Field Value +01:02:13 ============================================================================ +01:02:13 [ 1] [ 4] [0810] +01:02:13 [ 7] [ 10] [0319060120] +01:02:13 [ 11] [ 6] [153317] +01:02:13 [ 39] [ 2] [00] +01:02:13 [ 70] [ 3] [301] +01:02:13 ============================================================================ +01:02:13 Calculate Source COMM Id = 2 +01:02:13 ============================================================================ +01:02:13 + + +waiting on router queue for slot.... +01:02:29 ============================================================================ +01:02:29 Slot Id : <210> +01:02:29 Transaction Type : REQUEST +01:02:29 Received From : +01:02:29 ============================================================================ +01:02:29 FNo. Len. Field Value +01:02:29 ============================================================================ +01:02:29 [ 1] [ 4] [0800] +01:02:29 [ 7] [ 10] [0319060136] +01:02:29 [ 11] [ 6] [153318] +01:02:29 [ 70] [ 3] [301] +01:02:29 ============================================================================ +01:02:29 + + +waiting on router queue for slot.... +01:02:29 Sending to : +01:02:29 ============================================================================ +01:02:29 ============================================================================ +01:02:29 Slot Id : <210> +01:02:29 Transaction Type : RESPONSE +01:02:29 Received From : +01:02:29 ============================================================================ +01:02:29 FNo. Len. Field Value +01:02:29 ============================================================================ +01:02:29 [ 1] [ 4] [0810] +01:02:29 [ 7] [ 10] [0319060136] +01:02:29 [ 11] [ 6] [153318] +01:02:29 [ 39] [ 2] [00] +01:02:29 [ 70] [ 3] [301] +01:02:29 ============================================================================ +01:02:29 Calculate Source COMM Id = 2 +01:02:29 ============================================================================ +01:02:29 + + +waiting on router queue for slot.... +01:02:35 ============================================================================ +01:02:35 Slot Id : <249> +01:02:35 Transaction Type : REQUEST +01:02:35 Received From : +01:02:35 ============================================================================ +01:02:35 FNo. Len. Field Value +01:02:35 ============================================================================ +01:02:35 [ 1] [ 4] [0800] +01:02:35 [ 2] [ 5] [02531] +01:02:35 [ 3] [ 6] [579018] +01:02:35 [ 7] [ 10] [0319180235] +01:02:35 [ 11] [ 6] [806472] +01:02:35 [ 15] [ 10] [0319180235] +01:02:35 [ 37] [ 11] [57901806472] +01:02:35 [ 70] [ 3] [001] +01:02:35 ============================================================================ +01:02:35 + + +waiting on router queue for slot.... +01:02:35 ============================================================================ +01:02:35 Slot Id : <249> +01:02:35 Transaction Type : RESPONSE +01:02:35 Received From : +01:02:35 ============================================================================ +01:02:35 FNo. Len. Field Value +01:02:35 ============================================================================ +01:02:35 [ 1] [ 4] [0810] +01:02:35 [ 7] [ 10] [0319180235] +01:02:35 [ 11] [ 6] [806472] +01:02:35 [ 15] [ 4] [0319] +01:02:35 [ 37] [ 12] [57901806472] +01:02:35 [ 39] [ 2] [00] +01:02:35 [ 70] [ 3] [001] +01:02:35 ============================================================================ +01:02:35 Sending to : +01:02:35 ============================================================================ +01:02:35 + + +waiting on router queue for slot.... +01:02:39 ============================================================================ +01:02:39 Slot Id : <260> +01:02:39 Transaction Type : REQUEST +01:02:39 Received From : +01:02:39 ============================================================================ +01:02:39 FNo. Len. Field Value +01:02:39 ============================================================================ +01:02:39 [ 1] [ 4] [0800] +01:02:39 [ 7] [ 10] [0320081427] +01:02:39 [ 11] [ 6] [011427] +01:02:39 [ 37] [ 12] [57901011427] +01:02:39 [ 70] [ 3] [301] +01:02:39 ============================================================================ +01:02:39 + + +waiting on router queue for slot.... +01:02:39 Sending to : +01:02:39 ============================================================================ +01:02:39 ============================================================================ +01:02:39 Slot Id : <260> +01:02:39 Transaction Type : RESPONSE +01:02:39 Received From : +01:02:39 ============================================================================ +01:02:39 FNo. Len. Field Value +01:02:39 ============================================================================ +01:02:39 [ 1] [ 4] [0810] +01:02:39 [ 7] [ 10] [0320081427] +01:02:39 [ 11] [ 6] [011427] +01:02:39 [ 37] [ 12] [579010114270] +01:02:39 [ 39] [ 2] [00] +01:02:39 [ 70] [ 3] [810] +01:02:39 ============================================================================ +01:02:39 Calculate Source COMM Id = 6 +01:02:39 ============================================================================ +01:02:39 + + +waiting on router queue for slot.... +01:02:40 ============================================================================ +01:02:40 Slot Id : <199> +01:02:40 Transaction Type : REQUEST +01:02:40 Received From : +01:02:40 ============================================================================ +01:02:40 FNo. Len. Field Value +01:02:40 ============================================================================ +01:02:40 [ 1] [ 4] [0800] +01:02:40 [ 7] [ 10] [0319060147] +01:02:40 [ 11] [ 6] [153319] +01:02:40 [ 70] [ 3] [301] +01:02:40 ============================================================================ +01:02:40 + + +waiting on router queue for slot.... +01:02:40 Sending to : +01:02:40 ============================================================================ +01:02:40 ============================================================================ +01:02:40 Slot Id : <199> +01:02:40 Transaction Type : RESPONSE +01:02:40 Received From : +01:02:40 ============================================================================ +01:02:40 FNo. Len. Field Value +01:02:40 ============================================================================ +01:02:40 [ 1] [ 4] [0810] +01:02:40 [ 7] [ 10] [0319060147] +01:02:40 [ 11] [ 6] [153319] +01:02:40 [ 39] [ 2] [00] +01:02:40 [ 70] [ 3] [301] +01:02:40 ============================================================================ +01:02:40 Calculate Source COMM Id = 2 +01:02:40 ============================================================================ +01:02:40 + + +waiting on router queue for slot.... +01:02:51 ============================================================================ +01:02:51 Slot Id : <259> +01:02:51 Transaction Type : REQUEST +01:02:51 Received From : +01:02:51 ============================================================================ +01:02:51 FNo. Len. Field Value +01:02:51 ============================================================================ +01:02:51 [ 1] [ 4] [0800] +01:02:51 [ 7] [ 10] [0319060158] +01:02:51 [ 11] [ 6] [153320] +01:02:51 [ 70] [ 3] [301] +01:02:51 ============================================================================ +01:02:51 + + +waiting on router queue for slot.... +01:02:51 Sending to : +01:02:51 ============================================================================ +01:02:51 ============================================================================ +01:02:51 Slot Id : <259> +01:02:51 Transaction Type : RESPONSE +01:02:51 Received From : +01:02:51 ============================================================================ +01:02:51 FNo. Len. Field Value +01:02:51 ============================================================================ +01:02:51 [ 1] [ 4] [0810] +01:02:51 [ 7] [ 10] [0319060158] +01:02:51 [ 11] [ 6] [153320] +01:02:51 [ 39] [ 2] [00] +01:02:51 [ 70] [ 3] [301] +01:02:51 ============================================================================ +01:02:51 Calculate Source COMM Id = 2 +01:02:51 ============================================================================ +01:02:51 + + +waiting on router queue for slot.... +01:03:07 ============================================================================ +01:03:07 Slot Id : <263> +01:03:07 Transaction Type : REQUEST +01:03:07 Received From : +01:03:07 ============================================================================ +01:03:07 FNo. Len. Field Value +01:03:07 ============================================================================ +01:03:07 [ 1] [ 4] [0800] +01:03:07 [ 7] [ 10] [0319060214] +01:03:07 [ 11] [ 6] [153321] +01:03:07 [ 70] [ 3] [301] +01:03:07 ============================================================================ +01:03:07 + + +waiting on router queue for slot.... +01:03:07 Sending to : +01:03:07 ============================================================================ +01:03:07 ============================================================================ +01:03:07 Slot Id : <263> +01:03:07 Transaction Type : RESPONSE +01:03:07 Received From : +01:03:07 ============================================================================ +01:03:07 FNo. Len. Field Value +01:03:07 ============================================================================ +01:03:07 [ 1] [ 4] [0810] +01:03:07 [ 7] [ 10] [0319060214] +01:03:07 [ 11] [ 6] [153321] +01:03:07 [ 39] [ 2] [00] +01:03:07 [ 70] [ 3] [301] +01:03:07 ============================================================================ +01:03:07 Calculate Source COMM Id = 2 +01:03:07 ============================================================================ +01:03:07 + + +waiting on router queue for slot.... +01:03:17 ============================================================================ +01:03:17 Slot Id : <261> +01:03:17 Transaction Type : REQUEST +01:03:17 Received From : +01:03:17 ============================================================================ +01:03:17 FNo. Len. Field Value +01:03:17 ============================================================================ +01:03:17 [ 1] [ 4] [0800] +01:03:17 [ 7] [ 10] [0319060225] +01:03:17 [ 11] [ 6] [153322] +01:03:17 [ 70] [ 3] [301] +01:03:17 ============================================================================ +01:03:17 + + +waiting on router queue for slot.... +01:03:17 Sending to : +01:03:17 ============================================================================ +01:03:17 ============================================================================ +01:03:17 Slot Id : <261> +01:03:17 Transaction Type : RESPONSE +01:03:17 Received From : +01:03:17 ============================================================================ +01:03:17 FNo. Len. Field Value +01:03:17 ============================================================================ +01:03:17 [ 1] [ 4] [0810] +01:03:17 [ 7] [ 10] [0319060225] +01:03:17 [ 11] [ 6] [153322] +01:03:17 [ 39] [ 2] [00] +01:03:17 [ 70] [ 3] [301] +01:03:17 ============================================================================ +01:03:17 Calculate Source COMM Id = 2 +01:03:17 ============================================================================ +01:03:17 + + +waiting on router queue for slot.... +01:03:28 ============================================================================ +01:03:28 Slot Id : <270> +01:03:28 Transaction Type : REQUEST +01:03:28 Received From : +01:03:28 ============================================================================ +01:03:28 FNo. Len. Field Value +01:03:28 ============================================================================ +01:03:28 [ 1] [ 4] [0800] +01:03:28 [ 7] [ 10] [0319060235] +01:03:28 [ 11] [ 6] [153323] +01:03:28 [ 70] [ 3] [301] +01:03:28 ============================================================================ +01:03:28 + + +waiting on router queue for slot.... +01:03:28 Sending to : +01:03:28 ============================================================================ +01:03:28 ============================================================================ +01:03:28 Slot Id : <270> +01:03:28 Transaction Type : RESPONSE +01:03:28 Received From : +01:03:28 ============================================================================ +01:03:28 FNo. Len. Field Value +01:03:28 ============================================================================ +01:03:28 [ 1] [ 4] [0810] +01:03:28 [ 7] [ 10] [0319060235] +01:03:28 [ 11] [ 6] [153323] +01:03:28 [ 39] [ 2] [00] +01:03:28 [ 70] [ 3] [301] +01:03:28 ============================================================================ +01:03:28 Calculate Source COMM Id = 2 +01:03:28 ============================================================================ +01:03:28 + + +waiting on router queue for slot.... +01:03:37 ============================================================================ +01:03:37 Slot Id : <269> +01:03:37 Transaction Type : REQUEST +01:03:37 Received From : +01:03:37 ============================================================================ +01:03:37 FNo. Len. Field Value +01:03:37 ============================================================================ +01:03:37 [ 1] [ 4] [0800] +01:03:37 [ 2] [ 5] [02531] +01:03:37 [ 3] [ 6] [579018] +01:03:37 [ 7] [ 10] [0319180337] +01:03:37 [ 11] [ 6] [806473] +01:03:37 [ 15] [ 10] [0319180337] +01:03:37 [ 37] [ 11] [57901806473] +01:03:37 [ 70] [ 3] [001] +01:03:37 ============================================================================ +01:03:37 + + +waiting on router queue for slot.... +01:03:37 ============================================================================ +01:03:37 Slot Id : <269> +01:03:37 Transaction Type : RESPONSE +01:03:37 Received From : +01:03:37 ============================================================================ +01:03:37 FNo. Len. Field Value +01:03:37 ============================================================================ +01:03:37 [ 1] [ 4] [0810] +01:03:37 [ 7] [ 10] [0319180337] +01:03:37 [ 11] [ 6] [806473] +01:03:37 [ 15] [ 4] [0319] +01:03:37 [ 37] [ 12] [57901806473] +01:03:37 [ 39] [ 2] [00] +01:03:37 [ 70] [ 3] [001] +01:03:37 ============================================================================ +01:03:37 Sending to : +01:03:37 ============================================================================ +01:03:37 + + +waiting on router queue for slot.... +01:03:39 ============================================================================ +01:03:39 Slot Id : <256> +01:03:39 Transaction Type : REQUEST +01:03:39 Received From : +01:03:39 ============================================================================ +01:03:39 FNo. Len. Field Value +01:03:39 ============================================================================ +01:03:39 [ 1] [ 4] [0800] +01:03:39 [ 7] [ 10] [0319060247] +01:03:39 [ 11] [ 6] [153324] +01:03:39 [ 70] [ 3] [301] +01:03:39 ============================================================================ +01:03:39 + + +waiting on router queue for slot.... +01:03:39 Sending to : +01:03:39 ============================================================================ +01:03:39 ============================================================================ +01:03:39 Slot Id : <256> +01:03:39 Transaction Type : RESPONSE +01:03:39 Received From : +01:03:39 ============================================================================ +01:03:39 FNo. Len. Field Value +01:03:39 ============================================================================ +01:03:39 [ 1] [ 4] [0810] +01:03:39 [ 7] [ 10] [0319060247] +01:03:39 [ 11] [ 6] [153324] +01:03:39 [ 39] [ 2] [00] +01:03:39 [ 70] [ 3] [301] +01:03:39 ============================================================================ +01:03:39 Calculate Source COMM Id = 2 +01:03:39 ============================================================================ +01:03:39 + + +waiting on router queue for slot.... +01:03:44 ============================================================================ +01:03:44 Slot Id : <197> +01:03:44 Transaction Type : REQUEST +01:03:44 Received From : +01:03:44 ============================================================================ +01:03:44 FNo. Len. Field Value +01:03:44 ============================================================================ +01:03:44 [ 1] [ 4] [0800] +01:03:44 [ 7] [ 10] [0320081532] +01:03:44 [ 11] [ 6] [011532] +01:03:44 [ 37] [ 12] [57901011532] +01:03:44 [ 70] [ 3] [301] +01:03:44 ============================================================================ +01:03:44 + + +waiting on router queue for slot.... +01:03:44 Sending to : +01:03:44 ============================================================================ +01:03:44 ============================================================================ +01:03:44 Slot Id : <197> +01:03:44 Transaction Type : RESPONSE +01:03:44 Received From : +01:03:44 ============================================================================ +01:03:44 FNo. Len. Field Value +01:03:44 ============================================================================ +01:03:44 [ 1] [ 4] [0810] +01:03:44 [ 7] [ 10] [0320081532] +01:03:44 [ 11] [ 6] [011532] +01:03:44 [ 37] [ 12] [579010115320] +01:03:44 [ 39] [ 2] [00] +01:03:44 [ 70] [ 3] [810] +01:03:44 ============================================================================ +01:03:44 Calculate Source COMM Id = 6 +01:03:44 ============================================================================ +01:03:44 + + +waiting on router queue for slot.... +01:03:50 ============================================================================ +01:03:50 Slot Id : <240> +01:03:50 Transaction Type : REQUEST +01:03:50 Received From : +01:03:50 ============================================================================ +01:03:50 FNo. Len. Field Value +01:03:50 ============================================================================ +01:03:50 [ 1] [ 4] [0800] +01:03:50 [ 7] [ 10] [0319060258] +01:03:50 [ 11] [ 6] [153325] +01:03:50 [ 70] [ 3] [301] +01:03:50 ============================================================================ +01:03:50 + + +waiting on router queue for slot.... +01:03:50 Sending to : +01:03:50 ============================================================================ +01:03:50 ============================================================================ +01:03:50 Slot Id : <240> +01:03:50 Transaction Type : RESPONSE +01:03:50 Received From : +01:03:50 ============================================================================ +01:03:50 FNo. Len. Field Value +01:03:50 ============================================================================ +01:03:50 [ 1] [ 4] [0810] +01:03:50 [ 7] [ 10] [0319060258] +01:03:50 [ 11] [ 6] [153325] +01:03:50 [ 39] [ 2] [00] +01:03:50 [ 70] [ 3] [301] +01:03:50 ============================================================================ +01:03:50 Calculate Source COMM Id = 2 +01:03:50 ============================================================================ +01:03:50 + + +waiting on router queue for slot.... +01:04:01 ============================================================================ +01:04:01 Slot Id : <228> +01:04:01 Transaction Type : REQUEST +01:04:01 Received From : +01:04:01 ============================================================================ +01:04:01 FNo. Len. Field Value +01:04:01 ============================================================================ +01:04:01 [ 1] [ 4] [0800] +01:04:01 [ 7] [ 10] [0319060308] +01:04:01 [ 11] [ 6] [153326] +01:04:01 [ 70] [ 3] [301] +01:04:01 ============================================================================ +01:04:01 + + +waiting on router queue for slot.... +01:04:01 Sending to : +01:04:01 ============================================================================ +01:04:01 ============================================================================ +01:04:01 Slot Id : <228> +01:04:01 Transaction Type : RESPONSE +01:04:01 Received From : +01:04:01 ============================================================================ +01:04:01 FNo. Len. Field Value +01:04:01 ============================================================================ +01:04:01 [ 1] [ 4] [0810] +01:04:01 [ 7] [ 10] [0319060308] +01:04:01 [ 11] [ 6] [153326] +01:04:01 [ 39] [ 2] [00] +01:04:01 [ 70] [ 3] [301] +01:04:01 ============================================================================ +01:04:01 Calculate Source COMM Id = 2 +01:04:01 ============================================================================ +01:04:01 + + +waiting on router queue for slot.... +01:04:11 ============================================================================ +01:04:11 Slot Id : <265> +01:04:11 Transaction Type : REQUEST +01:04:11 Received From : +01:04:11 ============================================================================ +01:04:11 FNo. Len. Field Value +01:04:11 ============================================================================ +01:04:11 [ 1] [ 4] [0800] +01:04:11 [ 7] [ 10] [0319060319] +01:04:11 [ 11] [ 6] [153327] +01:04:11 [ 70] [ 3] [301] +01:04:11 ============================================================================ +01:04:11 + + +waiting on router queue for slot.... +01:04:11 Sending to : +01:04:11 ============================================================================ +01:04:11 ============================================================================ +01:04:11 Slot Id : <265> +01:04:11 Transaction Type : RESPONSE +01:04:11 Received From : +01:04:11 ============================================================================ +01:04:11 FNo. Len. Field Value +01:04:11 ============================================================================ +01:04:11 [ 1] [ 4] [0810] +01:04:11 [ 7] [ 10] [0319060319] +01:04:11 [ 11] [ 6] [153327] +01:04:11 [ 39] [ 2] [00] +01:04:11 [ 70] [ 3] [301] +01:04:11 ============================================================================ +01:04:11 Calculate Source COMM Id = 2 +01:04:11 ============================================================================ +01:04:11 + + +waiting on router queue for slot.... +01:04:23 ============================================================================ +01:04:23 Slot Id : <275> +01:04:23 Transaction Type : REQUEST +01:04:23 Received From : +01:04:23 ============================================================================ +01:04:23 FNo. Len. Field Value +01:04:23 ============================================================================ +01:04:23 [ 1] [ 4] [0800] +01:04:23 [ 7] [ 10] [0319060329] +01:04:23 [ 11] [ 6] [153328] +01:04:23 [ 70] [ 3] [301] +01:04:23 ============================================================================ +01:04:23 + + +waiting on router queue for slot.... +01:04:23 Sending to : +01:04:23 ============================================================================ +01:04:23 ============================================================================ +01:04:23 Slot Id : <275> +01:04:23 Transaction Type : RESPONSE +01:04:23 Received From : +01:04:23 ============================================================================ +01:04:23 FNo. Len. Field Value +01:04:23 ============================================================================ +01:04:23 [ 1] [ 4] [0810] +01:04:23 [ 7] [ 10] [0319060329] +01:04:23 [ 11] [ 6] [153328] +01:04:23 [ 39] [ 2] [00] +01:04:23 [ 70] [ 3] [301] +01:04:23 ============================================================================ +01:04:23 Calculate Source COMM Id = 2 +01:04:23 ============================================================================ +01:04:23 + + +waiting on router queue for slot.... +01:04:38 ============================================================================ +01:04:38 Slot Id : <247> +01:04:38 Transaction Type : REQUEST +01:04:38 Received From : +01:04:38 ============================================================================ +01:04:38 FNo. Len. Field Value +01:04:38 ============================================================================ +01:04:38 [ 1] [ 4] [0800] +01:04:38 [ 7] [ 10] [0319060345] +01:04:38 [ 11] [ 6] [153329] +01:04:38 [ 70] [ 3] [301] +01:04:38 ============================================================================ +01:04:38 + + +waiting on router queue for slot.... +01:04:38 Sending to : +01:04:38 ============================================================================ +01:04:38 ============================================================================ +01:04:38 Slot Id : <247> +01:04:38 Transaction Type : RESPONSE +01:04:38 Received From : +01:04:38 ============================================================================ +01:04:38 FNo. Len. Field Value +01:04:38 ============================================================================ +01:04:38 [ 1] [ 4] [0810] +01:04:38 [ 7] [ 10] [0319060345] +01:04:38 [ 11] [ 6] [153329] +01:04:38 [ 39] [ 2] [00] +01:04:38 [ 70] [ 3] [301] +01:04:38 ============================================================================ +01:04:38 Calculate Source COMM Id = 2 +01:04:38 ============================================================================ +01:04:38 + + +waiting on router queue for slot.... +01:04:39 ============================================================================ +01:04:39 Slot Id : <218> +01:04:39 Transaction Type : REQUEST +01:04:39 Received From : +01:04:39 ============================================================================ +01:04:39 FNo. Len. Field Value +01:04:39 ============================================================================ +01:04:39 [ 1] [ 4] [0800] +01:04:39 [ 2] [ 5] [02531] +01:04:39 [ 3] [ 6] [579018] +01:04:39 [ 7] [ 10] [0319180439] +01:04:39 [ 11] [ 6] [806474] +01:04:39 [ 15] [ 10] [0319180439] +01:04:39 [ 37] [ 11] [57901806474] +01:04:39 [ 70] [ 3] [001] +01:04:39 ============================================================================ +01:04:39 + + +waiting on router queue for slot.... +01:04:39 ============================================================================ +01:04:39 Slot Id : <218> +01:04:39 Transaction Type : RESPONSE +01:04:39 Received From : +01:04:39 ============================================================================ +01:04:39 FNo. Len. Field Value +01:04:39 ============================================================================ +01:04:39 [ 1] [ 4] [0810] +01:04:39 [ 7] [ 10] [0319180439] +01:04:39 [ 11] [ 6] [806474] +01:04:39 [ 15] [ 4] [0319] +01:04:39 [ 37] [ 12] [57901806474] +01:04:39 [ 39] [ 2] [00] +01:04:39 [ 70] [ 3] [001] +01:04:39 ============================================================================ +01:04:39 Sending to : +01:04:39 ============================================================================ +01:04:39 + + +waiting on router queue for slot.... +01:04:48 ============================================================================ +01:04:48 Slot Id : <274> +01:04:48 Transaction Type : REQUEST +01:04:48 Received From : +01:04:48 ============================================================================ +01:04:48 FNo. Len. Field Value +01:04:48 ============================================================================ +01:04:48 [ 1] [ 4] [0800] +01:04:48 [ 7] [ 10] [0319060355] +01:04:48 [ 11] [ 6] [153330] +01:04:48 [ 70] [ 3] [301] +01:04:48 ============================================================================ +01:04:48 + + +waiting on router queue for slot.... +01:04:48 Sending to : +01:04:48 ============================================================================ +01:04:48 ============================================================================ +01:04:48 Slot Id : <274> +01:04:48 Transaction Type : RESPONSE +01:04:48 Received From : +01:04:48 ============================================================================ +01:04:48 FNo. Len. Field Value +01:04:48 ============================================================================ +01:04:48 [ 1] [ 4] [0810] +01:04:48 [ 7] [ 10] [0319060355] +01:04:48 [ 11] [ 6] [153330] +01:04:48 [ 39] [ 2] [00] +01:04:48 [ 70] [ 3] [301] +01:04:48 ============================================================================ +01:04:48 Calculate Source COMM Id = 2 +01:04:48 ============================================================================ +01:04:48 + + +waiting on router queue for slot.... +01:04:49 ============================================================================ +01:04:49 Slot Id : <264> +01:04:49 Transaction Type : REQUEST +01:04:49 Received From : +01:04:49 ============================================================================ +01:04:49 FNo. Len. Field Value +01:04:49 ============================================================================ +01:04:49 [ 1] [ 4] [0800] +01:04:49 [ 7] [ 10] [0320081637] +01:04:49 [ 11] [ 6] [011637] +01:04:49 [ 37] [ 12] [57901011637] +01:04:49 [ 70] [ 3] [301] +01:04:49 ============================================================================ +01:04:49 + + +waiting on router queue for slot.... +01:04:49 Sending to : +01:04:49 ============================================================================ +01:04:49 ============================================================================ +01:04:49 Slot Id : <264> +01:04:49 Transaction Type : RESPONSE +01:04:49 Received From : +01:04:49 ============================================================================ +01:04:49 FNo. Len. Field Value +01:04:49 ============================================================================ +01:04:49 [ 1] [ 4] [0810] +01:04:49 [ 7] [ 10] [0320081637] +01:04:49 [ 11] [ 6] [011637] +01:04:49 [ 37] [ 12] [579010116370] +01:04:49 [ 39] [ 2] [00] +01:04:49 [ 70] [ 3] [810] +01:04:49 ============================================================================ +01:04:49 Calculate Source COMM Id = 6 +01:04:49 ============================================================================ +01:04:49 + + +waiting on router queue for slot.... +01:04:56 ============================================================================ +01:04:56 Slot Id : <231> +01:04:56 Transaction Type : REQUEST +01:04:56 Received From : +01:04:56 ============================================================================ +01:04:56 FNo. Len. Field Value +01:04:56 ============================================================================ +01:04:56 [ 1] [ 4] [0800] +01:04:56 [ 7] [ 10] [0319181242] +01:04:56 [ 11] [ 6] [071207] +01:04:56 [ 37] [ 12] [57901071207] +01:04:56 [ 70] [ 3] [301] +01:04:56 ============================================================================ +01:04:56 + + +waiting on router queue for slot.... +01:04:56 Sending to : +01:04:56 ============================================================================ +01:04:56 ============================================================================ +01:04:56 Slot Id : <231> +01:04:56 Transaction Type : RESPONSE +01:04:56 Received From : +01:04:56 ============================================================================ +01:04:56 FNo. Len. Field Value +01:04:56 ============================================================================ +01:04:56 [ 1] [ 4] [0810] +01:04:56 [ 7] [ 10] [0319181242] +01:04:56 [ 11] [ 6] [071207] +01:04:56 [ 37] [ 12] [579010712070] +01:04:56 [ 39] [ 2] [00] +01:04:56 [ 70] [ 3] [810] +01:04:56 ============================================================================ +01:04:56 Calculate Source COMM Id = 1 +01:04:56 ============================================================================ +01:04:56 + + +waiting on router queue for slot.... +01:05:04 ============================================================================ +01:05:04 Slot Id : <279> +01:05:04 Transaction Type : REQUEST +01:05:04 Received From : +01:05:04 ============================================================================ +01:05:04 FNo. Len. Field Value +01:05:04 ============================================================================ +01:05:04 [ 1] [ 4] [0800] +01:05:04 [ 7] [ 10] [0319060411] +01:05:04 [ 11] [ 6] [153331] +01:05:04 [ 70] [ 3] [301] +01:05:04 ============================================================================ +01:05:04 + + +waiting on router queue for slot.... +01:05:04 Sending to : +01:05:04 ============================================================================ +01:05:04 ============================================================================ +01:05:04 Slot Id : <279> +01:05:04 Transaction Type : RESPONSE +01:05:04 Received From : +01:05:04 ============================================================================ +01:05:04 FNo. Len. Field Value +01:05:04 ============================================================================ +01:05:04 [ 1] [ 4] [0810] +01:05:04 [ 7] [ 10] [0319060411] +01:05:04 [ 11] [ 6] [153331] +01:05:04 [ 39] [ 2] [00] +01:05:04 [ 70] [ 3] [301] +01:05:04 ============================================================================ +01:05:04 Calculate Source COMM Id = 2 +01:05:04 ============================================================================ +01:05:04 + + +waiting on router queue for slot.... +01:05:19 ============================================================================ +01:05:19 Slot Id : <254> +01:05:19 Transaction Type : REQUEST +01:05:19 Received From : +01:05:19 ============================================================================ +01:05:19 FNo. Len. Field Value +01:05:19 ============================================================================ +01:05:19 [ 1] [ 4] [0800] +01:05:19 [ 7] [ 10] [0319060426] +01:05:19 [ 11] [ 6] [153332] +01:05:19 [ 70] [ 3] [301] +01:05:19 ============================================================================ +01:05:19 + + +waiting on router queue for slot.... +01:05:19 Sending to : +01:05:19 ============================================================================ +01:05:19 ============================================================================ +01:05:19 Slot Id : <254> +01:05:19 Transaction Type : RESPONSE +01:05:19 Received From : +01:05:19 ============================================================================ +01:05:19 FNo. Len. Field Value +01:05:19 ============================================================================ +01:05:19 [ 1] [ 4] [0810] +01:05:19 [ 7] [ 10] [0319060426] +01:05:19 [ 11] [ 6] [153332] +01:05:19 [ 39] [ 2] [00] +01:05:19 [ 70] [ 3] [301] +01:05:19 ============================================================================ +01:05:19 Calculate Source COMM Id = 2 +01:05:19 ============================================================================ +01:05:19 + + +waiting on router queue for slot.... +01:05:35 ============================================================================ +01:05:35 Slot Id : <239> +01:05:35 Transaction Type : REQUEST +01:05:35 Received From : +01:05:35 ============================================================================ +01:05:35 FNo. Len. Field Value +01:05:35 ============================================================================ +01:05:35 [ 1] [ 4] [0800] +01:05:35 [ 7] [ 10] [0319060443] +01:05:35 [ 11] [ 6] [153333] +01:05:35 [ 70] [ 3] [301] +01:05:35 ============================================================================ +01:05:35 + + +waiting on router queue for slot.... +01:05:35 Sending to : +01:05:35 ============================================================================ +01:05:35 ============================================================================ +01:05:35 Slot Id : <239> +01:05:35 Transaction Type : RESPONSE +01:05:35 Received From : +01:05:35 ============================================================================ +01:05:35 FNo. Len. Field Value +01:05:35 ============================================================================ +01:05:35 [ 1] [ 4] [0810] +01:05:35 [ 7] [ 10] [0319060443] +01:05:35 [ 11] [ 6] [153333] +01:05:35 [ 39] [ 2] [00] +01:05:35 [ 70] [ 3] [301] +01:05:35 ============================================================================ +01:05:35 Calculate Source COMM Id = 2 +01:05:35 ============================================================================ +01:05:35 + + +waiting on router queue for slot.... +01:05:41 ============================================================================ +01:05:41 Slot Id : <273> +01:05:41 Transaction Type : REQUEST +01:05:41 Received From : +01:05:41 ============================================================================ +01:05:41 FNo. Len. Field Value +01:05:41 ============================================================================ +01:05:41 [ 1] [ 4] [0800] +01:05:41 [ 2] [ 5] [02531] +01:05:41 [ 3] [ 6] [579018] +01:05:41 [ 7] [ 10] [0319180541] +01:05:41 [ 11] [ 6] [806475] +01:05:41 [ 15] [ 10] [0319180541] +01:05:41 [ 37] [ 11] [57901806475] +01:05:41 [ 70] [ 3] [001] +01:05:41 ============================================================================ +01:05:41 + + +waiting on router queue for slot.... +01:05:41 ============================================================================ +01:05:41 Slot Id : <273> +01:05:41 Transaction Type : RESPONSE +01:05:41 Received From : +01:05:41 ============================================================================ +01:05:41 FNo. Len. Field Value +01:05:41 ============================================================================ +01:05:41 [ 1] [ 4] [0810] +01:05:41 [ 7] [ 10] [0319180541] +01:05:41 [ 11] [ 6] [806475] +01:05:41 [ 15] [ 4] [0319] +01:05:41 [ 37] [ 12] [57901806475] +01:05:41 [ 39] [ 2] [00] +01:05:41 [ 70] [ 3] [001] +01:05:41 ============================================================================ +01:05:41 Sending to : +01:05:41 ============================================================================ +01:05:41 + + +waiting on router queue for slot.... +01:05:46 ============================================================================ +01:05:46 Slot Id : <266> +01:05:46 Transaction Type : REQUEST +01:05:46 Received From : +01:05:46 ============================================================================ +01:05:46 FNo. Len. Field Value +01:05:46 ============================================================================ +01:05:46 [ 1] [ 4] [0800] +01:05:46 [ 7] [ 10] [0319060453] +01:05:46 [ 11] [ 6] [153334] +01:05:46 [ 70] [ 3] [301] +01:05:46 ============================================================================ +01:05:46 + + +waiting on router queue for slot.... +01:05:46 Sending to : +01:05:46 ============================================================================ +01:05:46 ============================================================================ +01:05:46 Slot Id : <266> +01:05:46 Transaction Type : RESPONSE +01:05:46 Received From : +01:05:46 ============================================================================ +01:05:46 FNo. Len. Field Value +01:05:46 ============================================================================ +01:05:46 [ 1] [ 4] [0810] +01:05:46 [ 7] [ 10] [0319060453] +01:05:46 [ 11] [ 6] [153334] +01:05:46 [ 39] [ 2] [00] +01:05:46 [ 70] [ 3] [301] +01:05:46 ============================================================================ +01:05:46 Calculate Source COMM Id = 2 +01:05:46 ============================================================================ +01:05:46 + + +waiting on router queue for slot.... +01:05:54 ============================================================================ +01:05:54 Slot Id : <282> +01:05:54 Transaction Type : REQUEST +01:05:54 Received From : +01:05:54 ============================================================================ +01:05:54 FNo. Len. Field Value +01:05:54 ============================================================================ +01:05:54 [ 1] [ 4] [0800] +01:05:54 [ 7] [ 10] [0320081742] +01:05:54 [ 11] [ 6] [011742] +01:05:54 [ 37] [ 12] [57901011742] +01:05:54 [ 70] [ 3] [301] +01:05:54 ============================================================================ +01:05:54 + + +waiting on router queue for slot.... +01:05:54 Sending to : +01:05:54 ============================================================================ +01:05:54 ============================================================================ +01:05:54 Slot Id : <282> +01:05:54 Transaction Type : RESPONSE +01:05:54 Received From : +01:05:54 ============================================================================ +01:05:54 FNo. Len. Field Value +01:05:54 ============================================================================ +01:05:54 [ 1] [ 4] [0810] +01:05:54 [ 7] [ 10] [0320081742] +01:05:54 [ 11] [ 6] [011742] +01:05:54 [ 37] [ 12] [579010117420] +01:05:54 [ 39] [ 2] [00] +01:05:54 [ 70] [ 3] [810] +01:05:54 ============================================================================ +01:05:54 Calculate Source COMM Id = 6 +01:05:54 ============================================================================ +01:05:54 + + +waiting on router queue for slot.... +01:06:02 ============================================================================ +01:06:02 Slot Id : <272> +01:06:02 Transaction Type : REQUEST +01:06:02 Received From : +01:06:02 ============================================================================ +01:06:02 FNo. Len. Field Value +01:06:02 ============================================================================ +01:06:02 [ 1] [ 4] [0800] +01:06:02 [ 7] [ 10] [0319060509] +01:06:02 [ 11] [ 6] [153335] +01:06:02 [ 70] [ 3] [301] +01:06:02 ============================================================================ +01:06:02 + + +waiting on router queue for slot.... +01:06:02 Sending to : +01:06:02 ============================================================================ +01:06:02 ============================================================================ +01:06:02 Slot Id : <272> +01:06:02 Transaction Type : RESPONSE +01:06:02 Received From : +01:06:02 ============================================================================ +01:06:02 FNo. Len. Field Value +01:06:02 ============================================================================ +01:06:02 [ 1] [ 4] [0810] +01:06:02 [ 7] [ 10] [0319060509] +01:06:02 [ 11] [ 6] [153335] +01:06:02 [ 39] [ 2] [00] +01:06:02 [ 70] [ 3] [301] +01:06:02 ============================================================================ +01:06:02 Calculate Source COMM Id = 2 +01:06:02 ============================================================================ +01:06:02 + + +waiting on router queue for slot.... +01:06:12 ============================================================================ +01:06:12 Slot Id : <241> +01:06:12 Transaction Type : REQUEST +01:06:12 Received From : +01:06:12 ============================================================================ +01:06:12 FNo. Len. Field Value +01:06:12 ============================================================================ +01:06:12 [ 1] [ 4] [0800] +01:06:12 [ 7] [ 10] [0319060519] +01:06:12 [ 11] [ 6] [153336] +01:06:12 [ 70] [ 3] [301] +01:06:12 ============================================================================ +01:06:12 + + +waiting on router queue for slot.... +01:06:12 Sending to : +01:06:12 ============================================================================ +01:06:12 ============================================================================ +01:06:12 Slot Id : <241> +01:06:12 Transaction Type : RESPONSE +01:06:12 Received From : +01:06:12 ============================================================================ +01:06:12 FNo. Len. Field Value +01:06:12 ============================================================================ +01:06:12 [ 1] [ 4] [0810] +01:06:12 [ 7] [ 10] [0319060519] +01:06:12 [ 11] [ 6] [153336] +01:06:12 [ 39] [ 2] [00] +01:06:12 [ 70] [ 3] [301] +01:06:12 ============================================================================ +01:06:12 Calculate Source COMM Id = 2 +01:06:12 ============================================================================ +01:06:12 + + +waiting on router queue for slot.... +01:06:21 ============================================================================ +01:06:21 Slot Id : <245> +01:06:21 Transaction Type : REQUEST +01:06:21 Received From : +01:06:21 ============================================================================ +01:06:21 FNo. Len. Field Value +01:06:21 ============================================================================ +01:06:21 [ 1] [ 4] [0800] +01:06:21 [ 7] [ 10] [0319180412] +01:06:21 [ 11] [ 6] [059155] +01:06:21 [ 37] [ 12] [57901059155] +01:06:21 [ 70] [ 3] [301] +01:06:21 ============================================================================ +01:06:21 + + +waiting on router queue for slot.... +01:06:21 Sending to : +01:06:21 ============================================================================ +01:06:21 ============================================================================ +01:06:21 Slot Id : <245> +01:06:21 Transaction Type : RESPONSE +01:06:21 Received From : +01:06:21 ============================================================================ +01:06:21 FNo. Len. Field Value +01:06:21 ============================================================================ +01:06:21 [ 1] [ 4] [0810] +01:06:21 [ 7] [ 10] [0319180412] +01:06:21 [ 11] [ 6] [059155] +01:06:21 [ 37] [ 12] [579010591550] +01:06:21 [ 39] [ 2] [00] +01:06:21 [ 70] [ 3] [810] +01:06:21 ============================================================================ +01:06:21 Calculate Source COMM Id = 4 +01:06:21 ============================================================================ +01:06:21 + + +waiting on router queue for slot.... +01:06:22 ============================================================================ +01:06:22 Slot Id : <252> +01:06:22 Transaction Type : REQUEST +01:06:22 Received From : +01:06:22 ============================================================================ +01:06:22 FNo. Len. Field Value +01:06:22 ============================================================================ +01:06:22 [ 1] [ 4] [0800] +01:06:22 [ 7] [ 10] [0319060530] +01:06:22 [ 11] [ 6] [153337] +01:06:22 [ 70] [ 3] [301] +01:06:22 ============================================================================ +01:06:22 + + +waiting on router queue for slot.... +01:06:22 Sending to : +01:06:22 ============================================================================ +01:06:22 ============================================================================ +01:06:22 Slot Id : <252> +01:06:22 Transaction Type : RESPONSE +01:06:22 Received From : +01:06:22 ============================================================================ +01:06:22 FNo. Len. Field Value +01:06:22 ============================================================================ +01:06:22 [ 1] [ 4] [0810] +01:06:22 [ 7] [ 10] [0319060530] +01:06:22 [ 11] [ 6] [153337] +01:06:22 [ 39] [ 2] [00] +01:06:22 [ 70] [ 3] [301] +01:06:22 ============================================================================ +01:06:22 Calculate Source COMM Id = 2 +01:06:22 ============================================================================ +01:06:22 + + +waiting on router queue for slot.... +01:06:33 ============================================================================ +01:06:33 Slot Id : <276> +01:06:33 Transaction Type : REQUEST +01:06:33 Received From : +01:06:33 ============================================================================ +01:06:33 FNo. Len. Field Value +01:06:33 ============================================================================ +01:06:33 [ 1] [ 4] [0800] +01:06:33 [ 7] [ 10] [0319060541] +01:06:33 [ 11] [ 6] [153338] +01:06:33 [ 70] [ 3] [301] +01:06:33 ============================================================================ +01:06:33 + + +waiting on router queue for slot.... +01:06:33 Sending to : +01:06:33 ============================================================================ +01:06:33 ============================================================================ +01:06:33 Slot Id : <276> +01:06:33 Transaction Type : RESPONSE +01:06:33 Received From : +01:06:33 ============================================================================ +01:06:33 FNo. Len. Field Value +01:06:33 ============================================================================ +01:06:33 [ 1] [ 4] [0810] +01:06:33 [ 7] [ 10] [0319060541] +01:06:33 [ 11] [ 6] [153338] +01:06:33 [ 39] [ 2] [00] +01:06:33 [ 70] [ 3] [301] +01:06:33 ============================================================================ +01:06:33 Calculate Source COMM Id = 2 +01:06:33 ============================================================================ +01:06:33 + + +waiting on router queue for slot.... +01:06:43 ============================================================================ +01:06:43 Slot Id : <284> +01:06:43 Transaction Type : REQUEST +01:06:43 Received From : +01:06:43 ============================================================================ +01:06:43 FNo. Len. Field Value +01:06:43 ============================================================================ +01:06:43 [ 1] [ 4] [0800] +01:06:43 [ 2] [ 5] [02531] +01:06:43 [ 3] [ 6] [579018] +01:06:43 [ 7] [ 10] [0319180643] +01:06:43 [ 11] [ 6] [806476] +01:06:43 [ 15] [ 10] [0319180643] +01:06:43 [ 37] [ 11] [57901806476] +01:06:43 [ 70] [ 3] [001] +01:06:43 ============================================================================ +01:06:43 + + +waiting on router queue for slot.... +01:06:43 ============================================================================ +01:06:43 Slot Id : <284> +01:06:43 Transaction Type : RESPONSE +01:06:43 Received From : +01:06:43 ============================================================================ +01:06:43 FNo. Len. Field Value +01:06:43 ============================================================================ +01:06:43 [ 1] [ 4] [0810] +01:06:43 [ 7] [ 10] [0319180643] +01:06:43 [ 11] [ 6] [806476] +01:06:43 [ 15] [ 4] [0319] +01:06:43 [ 37] [ 12] [57901806476] +01:06:43 [ 39] [ 2] [00] +01:06:43 [ 70] [ 3] [001] +01:06:43 ============================================================================ +01:06:43 Sending to : +01:06:43 ============================================================================ +01:06:43 + + +waiting on router queue for slot.... +01:06:43 ============================================================================ +01:06:43 Slot Id : <280> +01:06:43 Transaction Type : REQUEST +01:06:43 Received From : +01:06:43 ============================================================================ +01:06:43 FNo. Len. Field Value +01:06:43 ============================================================================ +01:06:43 [ 1] [ 4] [0800] +01:06:43 [ 7] [ 10] [0319060551] +01:06:43 [ 11] [ 6] [153339] +01:06:43 [ 70] [ 3] [301] +01:06:43 ============================================================================ +01:06:43 + + +waiting on router queue for slot.... +01:06:43 Sending to : +01:06:43 ============================================================================ +01:06:43 ============================================================================ +01:06:43 Slot Id : <280> +01:06:43 Transaction Type : RESPONSE +01:06:43 Received From : +01:06:43 ============================================================================ +01:06:43 FNo. Len. Field Value +01:06:43 ============================================================================ +01:06:43 [ 1] [ 4] [0810] +01:06:43 [ 7] [ 10] [0319060551] +01:06:43 [ 11] [ 6] [153339] +01:06:43 [ 39] [ 2] [00] +01:06:43 [ 70] [ 3] [301] +01:06:43 ============================================================================ +01:06:43 Calculate Source COMM Id = 2 +01:06:43 ============================================================================ +01:06:43 + + +waiting on router queue for slot.... +01:06:55 ============================================================================ +01:06:55 Slot Id : <258> +01:06:55 Transaction Type : REQUEST +01:06:55 Received From : +01:06:55 ============================================================================ +01:06:55 FNo. Len. Field Value +01:06:55 ============================================================================ +01:06:55 [ 1] [ 4] [0800] +01:06:55 [ 7] [ 10] [0319060602] +01:06:55 [ 11] [ 6] [153340] +01:06:55 [ 70] [ 3] [301] +01:06:55 ============================================================================ +01:06:55 + + +waiting on router queue for slot.... +01:06:55 Sending to : +01:06:55 ============================================================================ +01:06:55 ============================================================================ +01:06:55 Slot Id : <258> +01:06:55 Transaction Type : RESPONSE +01:06:55 Received From : +01:06:55 ============================================================================ +01:06:55 FNo. Len. Field Value +01:06:55 ============================================================================ +01:06:55 [ 1] [ 4] [0810] +01:06:55 [ 7] [ 10] [0319060602] +01:06:55 [ 11] [ 6] [153340] +01:06:55 [ 39] [ 2] [00] +01:06:55 [ 70] [ 3] [301] +01:06:55 ============================================================================ +01:06:55 Calculate Source COMM Id = 2 +01:06:55 ============================================================================ +01:06:55 + + +waiting on router queue for slot.... +01:06:59 ============================================================================ +01:06:59 Slot Id : <219> +01:06:59 Transaction Type : REQUEST +01:06:59 Received From : +01:06:59 ============================================================================ +01:06:59 FNo. Len. Field Value +01:06:59 ============================================================================ +01:06:59 [ 1] [ 4] [0800] +01:06:59 [ 7] [ 10] [0320081848] +01:06:59 [ 11] [ 6] [011848] +01:06:59 [ 37] [ 12] [57901011848] +01:06:59 [ 70] [ 3] [301] +01:06:59 ============================================================================ +01:06:59 + + +waiting on router queue for slot.... +01:06:59 Sending to : +01:06:59 ============================================================================ +01:06:59 ============================================================================ +01:06:59 Slot Id : <219> +01:06:59 Transaction Type : RESPONSE +01:06:59 Received From : +01:06:59 ============================================================================ +01:06:59 FNo. Len. Field Value +01:06:59 ============================================================================ +01:06:59 [ 1] [ 4] [0810] +01:06:59 [ 7] [ 10] [0320081848] +01:06:59 [ 11] [ 6] [011848] +01:06:59 [ 37] [ 12] [579010118480] +01:06:59 [ 39] [ 2] [00] +01:06:59 [ 70] [ 3] [810] +01:06:59 ============================================================================ +01:06:59 Calculate Source COMM Id = 6 +01:06:59 ============================================================================ +01:06:59 + + +waiting on router queue for slot.... +01:07:10 ============================================================================ +01:07:10 Slot Id : <224> +01:07:10 Transaction Type : REQUEST +01:07:10 Received From : +01:07:10 ============================================================================ +01:07:10 FNo. Len. Field Value +01:07:10 ============================================================================ +01:07:10 [ 1] [ 4] [0800] +01:07:10 [ 7] [ 10] [0319060618] +01:07:10 [ 11] [ 6] [153341] +01:07:10 [ 70] [ 3] [301] +01:07:10 ============================================================================ +01:07:10 + + +waiting on router queue for slot.... +01:07:10 Sending to : +01:07:10 ============================================================================ +01:07:10 ============================================================================ +01:07:10 Slot Id : <224> +01:07:10 Transaction Type : RESPONSE +01:07:10 Received From : +01:07:10 ============================================================================ +01:07:10 FNo. Len. Field Value +01:07:10 ============================================================================ +01:07:10 [ 1] [ 4] [0810] +01:07:10 [ 7] [ 10] [0319060618] +01:07:10 [ 11] [ 6] [153341] +01:07:10 [ 39] [ 2] [00] +01:07:10 [ 70] [ 3] [301] +01:07:10 ============================================================================ +01:07:10 Calculate Source COMM Id = 2 +01:07:10 ============================================================================ +01:07:10 + + +waiting on router queue for slot.... +01:07:22 ============================================================================ +01:07:22 Slot Id : <287> +01:07:22 Transaction Type : REQUEST +01:07:22 Received From : +01:07:22 ============================================================================ +01:07:22 FNo. Len. Field Value +01:07:22 ============================================================================ +01:07:22 [ 1] [ 4] [0800] +01:07:22 [ 7] [ 10] [0319060629] +01:07:22 [ 11] [ 6] [153342] +01:07:22 [ 70] [ 3] [301] +01:07:22 ============================================================================ +01:07:22 + + +waiting on router queue for slot.... +01:07:22 Sending to : +01:07:22 ============================================================================ +01:07:22 ============================================================================ +01:07:22 Slot Id : <287> +01:07:22 Transaction Type : RESPONSE +01:07:22 Received From : +01:07:22 ============================================================================ +01:07:22 FNo. Len. Field Value +01:07:22 ============================================================================ +01:07:22 [ 1] [ 4] [0810] +01:07:22 [ 7] [ 10] [0319060629] +01:07:22 [ 11] [ 6] [153342] +01:07:22 [ 39] [ 2] [00] +01:07:22 [ 70] [ 3] [301] +01:07:22 ============================================================================ +01:07:22 Calculate Source COMM Id = 2 +01:07:22 ============================================================================ +01:07:22 + + +waiting on router queue for slot.... +01:07:32 ============================================================================ +01:07:32 Slot Id : <290> +01:07:32 Transaction Type : REQUEST +01:07:32 Received From : +01:07:32 ============================================================================ +01:07:32 FNo. Len. Field Value +01:07:32 ============================================================================ +01:07:32 [ 1] [ 4] [0800] +01:07:32 [ 7] [ 10] [0319060640] +01:07:32 [ 11] [ 6] [153343] +01:07:32 [ 70] [ 3] [301] +01:07:32 ============================================================================ +01:07:32 + + +waiting on router queue for slot.... +01:07:32 Sending to : +01:07:32 ============================================================================ +01:07:32 ============================================================================ +01:07:32 Slot Id : <290> +01:07:32 Transaction Type : RESPONSE +01:07:32 Received From : +01:07:32 ============================================================================ +01:07:32 FNo. Len. Field Value +01:07:32 ============================================================================ +01:07:32 [ 1] [ 4] [0810] +01:07:32 [ 7] [ 10] [0319060640] +01:07:32 [ 11] [ 6] [153343] +01:07:32 [ 39] [ 2] [00] +01:07:32 [ 70] [ 3] [301] +01:07:32 ============================================================================ +01:07:32 Calculate Source COMM Id = 2 +01:07:32 ============================================================================ +01:07:32 + + +waiting on router queue for slot.... +01:07:43 ============================================================================ +01:07:43 Slot Id : <288> +01:07:43 Transaction Type : REQUEST +01:07:43 Received From : +01:07:43 ============================================================================ +01:07:43 FNo. Len. Field Value +01:07:43 ============================================================================ +01:07:43 [ 1] [ 4] [0800] +01:07:43 [ 7] [ 10] [0319060650] +01:07:43 [ 11] [ 6] [153344] +01:07:43 [ 70] [ 3] [301] +01:07:43 ============================================================================ +01:07:43 + + +waiting on router queue for slot.... +01:07:43 Sending to : +01:07:43 ============================================================================ +01:07:43 ============================================================================ +01:07:43 Slot Id : <288> +01:07:43 Transaction Type : RESPONSE +01:07:43 Received From : +01:07:43 ============================================================================ +01:07:43 FNo. Len. Field Value +01:07:43 ============================================================================ +01:07:43 [ 1] [ 4] [0810] +01:07:43 [ 7] [ 10] [0319060650] +01:07:43 [ 11] [ 6] [153344] +01:07:43 [ 39] [ 2] [00] +01:07:43 [ 70] [ 3] [301] +01:07:43 ============================================================================ +01:07:43 Calculate Source COMM Id = 2 +01:07:43 ============================================================================ +01:07:43 + + +waiting on router queue for slot.... +01:07:45 ============================================================================ +01:07:45 Slot Id : <271> +01:07:45 Transaction Type : REQUEST +01:07:45 Received From : +01:07:45 ============================================================================ +01:07:45 FNo. Len. Field Value +01:07:45 ============================================================================ +01:07:45 [ 1] [ 4] [0800] +01:07:45 [ 2] [ 5] [02531] +01:07:45 [ 3] [ 6] [579018] +01:07:45 [ 7] [ 10] [0319180745] +01:07:45 [ 11] [ 6] [806477] +01:07:45 [ 15] [ 10] [0319180745] +01:07:45 [ 37] [ 11] [57901806477] +01:07:45 [ 70] [ 3] [001] +01:07:45 ============================================================================ +01:07:45 + + +waiting on router queue for slot.... +01:07:45 ============================================================================ +01:07:45 Slot Id : <271> +01:07:45 Transaction Type : RESPONSE +01:07:45 Received From : +01:07:45 ============================================================================ +01:07:45 FNo. Len. Field Value +01:07:45 ============================================================================ +01:07:45 [ 1] [ 4] [0810] +01:07:45 [ 7] [ 10] [0319180745] +01:07:45 [ 11] [ 6] [806477] +01:07:45 [ 15] [ 4] [0319] +01:07:45 [ 37] [ 12] [57901806477] +01:07:45 [ 39] [ 2] [00] +01:07:45 [ 70] [ 3] [001] +01:07:45 ============================================================================ +01:07:45 Sending to : +01:07:45 ============================================================================ +01:07:45 + + +waiting on router queue for slot.... +01:07:53 ============================================================================ +01:07:53 Slot Id : <277> +01:07:53 Transaction Type : REQUEST +01:07:53 Received From : +01:07:53 ============================================================================ +01:07:53 FNo. Len. Field Value +01:07:53 ============================================================================ +01:07:53 [ 1] [ 4] [0800] +01:07:53 [ 7] [ 10] [0319060700] +01:07:53 [ 11] [ 6] [153345] +01:07:53 [ 70] [ 3] [301] +01:07:53 ============================================================================ +01:07:53 + + +waiting on router queue for slot.... +01:07:53 Sending to : +01:07:53 ============================================================================ +01:07:53 ============================================================================ +01:07:53 Slot Id : <277> +01:07:53 Transaction Type : RESPONSE +01:07:53 Received From : +01:07:53 ============================================================================ +01:07:53 FNo. Len. Field Value +01:07:53 ============================================================================ +01:07:53 [ 1] [ 4] [0810] +01:07:53 [ 7] [ 10] [0319060700] +01:07:53 [ 11] [ 6] [153345] +01:07:53 [ 39] [ 2] [00] +01:07:53 [ 70] [ 3] [301] +01:07:53 ============================================================================ +01:07:53 Calculate Source COMM Id = 2 +01:07:53 ============================================================================ +01:07:53 + + +waiting on router queue for slot.... +01:08:04 ============================================================================ +01:08:04 Slot Id : <267> +01:08:04 Transaction Type : REQUEST +01:08:04 Received From : +01:08:04 ============================================================================ +01:08:04 FNo. Len. Field Value +01:08:04 ============================================================================ +01:08:04 [ 1] [ 4] [0800] +01:08:04 [ 7] [ 10] [0319060711] +01:08:04 [ 11] [ 6] [153346] +01:08:04 [ 70] [ 3] [301] +01:08:04 ============================================================================ +01:08:04 + + +waiting on router queue for slot.... +01:08:04 Sending to : +01:08:04 ============================================================================ +01:08:04 ============================================================================ +01:08:04 Slot Id : <267> +01:08:04 Transaction Type : RESPONSE +01:08:04 Received From : +01:08:04 ============================================================================ +01:08:04 FNo. Len. Field Value +01:08:04 ============================================================================ +01:08:04 [ 1] [ 4] [0810] +01:08:04 [ 7] [ 10] [0319060711] +01:08:04 [ 11] [ 6] [153346] +01:08:04 [ 39] [ 2] [00] +01:08:04 [ 70] [ 3] [301] +01:08:04 ============================================================================ +01:08:04 Calculate Source COMM Id = 2 +01:08:04 ============================================================================ +01:08:04 + + +waiting on router queue for slot.... +01:08:06 ============================================================================ +01:08:06 Slot Id : <217> +01:08:06 Transaction Type : REQUEST +01:08:06 Received From : +01:08:06 ============================================================================ +01:08:06 FNo. Len. Field Value +01:08:06 ============================================================================ +01:08:06 [ 1] [ 4] [0800] +01:08:06 [ 7] [ 10] [0320081953] +01:08:06 [ 11] [ 6] [011953] +01:08:06 [ 37] [ 12] [57901011953] +01:08:06 [ 70] [ 3] [301] +01:08:06 ============================================================================ +01:08:06 + + +waiting on router queue for slot.... +01:08:06 Sending to : +01:08:06 ============================================================================ +01:08:06 ============================================================================ +01:08:06 Slot Id : <217> +01:08:06 Transaction Type : RESPONSE +01:08:06 Received From : +01:08:06 ============================================================================ +01:08:06 FNo. Len. Field Value +01:08:06 ============================================================================ +01:08:06 [ 1] [ 4] [0810] +01:08:06 [ 7] [ 10] [0320081953] +01:08:06 [ 11] [ 6] [011953] +01:08:06 [ 37] [ 12] [579010119530] +01:08:06 [ 39] [ 2] [00] +01:08:06 [ 70] [ 3] [810] +01:08:06 ============================================================================ +01:08:06 Calculate Source COMM Id = 6 +01:08:06 ============================================================================ +01:08:06 + + +waiting on router queue for slot.... +01:08:14 ============================================================================ +01:08:14 Slot Id : <236> +01:08:14 Transaction Type : REQUEST +01:08:14 Received From : +01:08:14 ============================================================================ +01:08:14 FNo. Len. Field Value +01:08:14 ============================================================================ +01:08:14 [ 1] [ 4] [0800] +01:08:14 [ 7] [ 10] [0319060721] +01:08:14 [ 11] [ 6] [153347] +01:08:14 [ 70] [ 3] [301] +01:08:14 ============================================================================ +01:08:14 + + +waiting on router queue for slot.... +01:08:14 Sending to : +01:08:14 ============================================================================ +01:08:14 ============================================================================ +01:08:14 Slot Id : <236> +01:08:14 Transaction Type : RESPONSE +01:08:14 Received From : +01:08:14 ============================================================================ +01:08:14 FNo. Len. Field Value +01:08:14 ============================================================================ +01:08:14 [ 1] [ 4] [0810] +01:08:14 [ 7] [ 10] [0319060721] +01:08:14 [ 11] [ 6] [153347] +01:08:14 [ 39] [ 2] [00] +01:08:14 [ 70] [ 3] [301] +01:08:14 ============================================================================ +01:08:14 Calculate Source COMM Id = 2 +01:08:14 ============================================================================ +01:08:14 + + +waiting on router queue for slot.... +01:08:25 ============================================================================ +01:08:25 Slot Id : <278> +01:08:25 Transaction Type : REQUEST +01:08:25 Received From : +01:08:25 ============================================================================ +01:08:25 FNo. Len. Field Value +01:08:25 ============================================================================ +01:08:25 [ 1] [ 4] [0800] +01:08:25 [ 7] [ 10] [0319060732] +01:08:25 [ 11] [ 6] [153348] +01:08:25 [ 70] [ 3] [301] +01:08:25 ============================================================================ +01:08:25 + + +waiting on router queue for slot.... +01:08:25 Sending to : +01:08:25 ============================================================================ +01:08:25 ============================================================================ +01:08:25 Slot Id : <278> +01:08:25 Transaction Type : RESPONSE +01:08:25 Received From : +01:08:25 ============================================================================ +01:08:25 FNo. Len. Field Value +01:08:25 ============================================================================ +01:08:25 [ 1] [ 4] [0810] +01:08:25 [ 7] [ 10] [0319060732] +01:08:25 [ 11] [ 6] [153348] +01:08:25 [ 39] [ 2] [00] +01:08:25 [ 70] [ 3] [301] +01:08:25 ============================================================================ +01:08:25 Calculate Source COMM Id = 2 +01:08:25 ============================================================================ +01:08:25 + + +waiting on router queue for slot.... +01:08:36 ============================================================================ +01:08:36 Slot Id : <293> +01:08:36 Transaction Type : REQUEST +01:08:36 Received From : +01:08:36 ============================================================================ +01:08:36 FNo. Len. Field Value +01:08:36 ============================================================================ +01:08:36 [ 1] [ 4] [0800] +01:08:36 [ 7] [ 10] [0319060743] +01:08:36 [ 11] [ 6] [153349] +01:08:36 [ 70] [ 3] [301] +01:08:36 ============================================================================ +01:08:36 + + +waiting on router queue for slot.... +01:08:36 Sending to : +01:08:36 ============================================================================ +01:08:36 ============================================================================ +01:08:36 Slot Id : <293> +01:08:36 Transaction Type : RESPONSE +01:08:36 Received From : +01:08:36 ============================================================================ +01:08:36 FNo. Len. Field Value +01:08:36 ============================================================================ +01:08:36 [ 1] [ 4] [0810] +01:08:36 [ 7] [ 10] [0319060743] +01:08:36 [ 11] [ 6] [153349] +01:08:36 [ 39] [ 2] [00] +01:08:36 [ 70] [ 3] [301] +01:08:36 ============================================================================ +01:08:36 Calculate Source COMM Id = 2 +01:08:36 ============================================================================ +01:08:36 + + +waiting on router queue for slot.... +01:08:47 ============================================================================ +01:08:47 Slot Id : <298> +01:08:47 Transaction Type : REQUEST +01:08:47 Received From : +01:08:47 ============================================================================ +01:08:47 FNo. Len. Field Value +01:08:47 ============================================================================ +01:08:47 [ 1] [ 4] [0800] +01:08:47 [ 2] [ 5] [02531] +01:08:47 [ 3] [ 6] [579018] +01:08:47 [ 7] [ 10] [0319180847] +01:08:47 [ 11] [ 6] [806478] +01:08:47 [ 15] [ 10] [0319180847] +01:08:47 [ 37] [ 11] [57901806478] +01:08:47 [ 70] [ 3] [001] +01:08:47 ============================================================================ +01:08:47 + + +waiting on router queue for slot.... +01:08:47 ============================================================================ +01:08:47 Slot Id : <294> +01:08:47 Transaction Type : REQUEST +01:08:47 Received From : +01:08:47 ============================================================================ +01:08:47 FNo. Len. Field Value +01:08:47 ============================================================================ +01:08:47 [ 1] [ 4] [0800] +01:08:47 [ 7] [ 10] [0319060754] +01:08:47 [ 11] [ 6] [153350] +01:08:47 [ 70] [ 3] [301] +01:08:47 ============================================================================ +01:08:47 + + +waiting on router queue for slot.... +01:08:47 Sending to : +01:08:47 ============================================================================ +01:08:47 ============================================================================ +01:08:47 Slot Id : <294> +01:08:47 Transaction Type : RESPONSE +01:08:47 Received From : +01:08:47 ============================================================================ +01:08:47 FNo. Len. Field Value +01:08:47 ============================================================================ +01:08:47 [ 1] [ 4] [0810] +01:08:47 [ 7] [ 10] [0319060754] +01:08:47 [ 11] [ 6] [153350] +01:08:47 [ 39] [ 2] [00] +01:08:47 [ 70] [ 3] [301] +01:08:47 ============================================================================ +01:08:47 Calculate Source COMM Id = 2 +01:08:47 ============================================================================ +01:08:47 + + +waiting on router queue for slot.... +01:08:47 ============================================================================ +01:08:47 Slot Id : <298> +01:08:47 Transaction Type : RESPONSE +01:08:47 Received From : +01:08:47 ============================================================================ +01:08:47 FNo. Len. Field Value +01:08:47 ============================================================================ +01:08:47 [ 1] [ 4] [0810] +01:08:47 [ 7] [ 10] [0319180847] +01:08:47 [ 11] [ 6] [806478] +01:08:47 [ 15] [ 4] [0319] +01:08:47 [ 37] [ 12] [57901806478] +01:08:47 [ 39] [ 2] [00] +01:08:47 [ 70] [ 3] [001] +01:08:47 ============================================================================ +01:08:47 Sending to : +01:08:47 ============================================================================ +01:08:47 + + +waiting on router queue for slot.... +01:09:00 ============================================================================ +01:09:00 Slot Id : <257> +01:09:00 Transaction Type : REQUEST +01:09:00 Received From : +01:09:00 ============================================================================ +01:09:00 FNo. Len. Field Value +01:09:00 ============================================================================ +01:09:00 [ 1] [ 4] [0800] +01:09:00 [ 7] [ 10] [0319060806] +01:09:00 [ 11] [ 6] [153351] +01:09:00 [ 70] [ 3] [301] +01:09:00 ============================================================================ +01:09:00 + + +waiting on router queue for slot.... +01:09:00 Sending to : +01:09:00 ============================================================================ +01:09:00 ============================================================================ +01:09:00 Slot Id : <257> +01:09:00 Transaction Type : RESPONSE +01:09:00 Received From : +01:09:00 ============================================================================ +01:09:00 FNo. Len. Field Value +01:09:00 ============================================================================ +01:09:00 [ 1] [ 4] [0810] +01:09:00 [ 7] [ 10] [0319060806] +01:09:00 [ 11] [ 6] [153351] +01:09:00 [ 39] [ 2] [00] +01:09:00 [ 70] [ 3] [301] +01:09:00 ============================================================================ +01:09:00 Calculate Source COMM Id = 2 +01:09:00 ============================================================================ +01:09:00 + + +waiting on router queue for slot.... +01:09:11 ============================================================================ +01:09:11 Slot Id : <303> +01:09:11 Transaction Type : REQUEST +01:09:11 Received From : +01:09:11 ============================================================================ +01:09:11 FNo. Len. Field Value +01:09:11 ============================================================================ +01:09:11 [ 1] [ 4] [0800] +01:09:11 [ 7] [ 10] [0320082058] +01:09:11 [ 11] [ 6] [012058] +01:09:11 [ 37] [ 12] [57901012058] +01:09:11 [ 70] [ 3] [301] +01:09:11 ============================================================================ +01:09:11 + + +waiting on router queue for slot.... +01:09:11 Sending to : +01:09:11 ============================================================================ +01:09:11 ============================================================================ +01:09:11 Slot Id : <303> +01:09:11 Transaction Type : RESPONSE +01:09:11 Received From : +01:09:11 ============================================================================ +01:09:11 FNo. Len. Field Value +01:09:11 ============================================================================ +01:09:11 [ 1] [ 4] [0810] +01:09:11 [ 7] [ 10] [0320082058] +01:09:11 [ 11] [ 6] [012058] +01:09:11 [ 37] [ 12] [579010120580] +01:09:11 [ 39] [ 2] [00] +01:09:11 [ 70] [ 3] [810] +01:09:11 ============================================================================ +01:09:11 Calculate Source COMM Id = 6 +01:09:11 ============================================================================ +01:09:11 + + +waiting on router queue for slot.... +01:09:15 ============================================================================ +01:09:15 Slot Id : <299> +01:09:15 Transaction Type : REQUEST +01:09:15 Received From : +01:09:15 ============================================================================ +01:09:15 FNo. Len. Field Value +01:09:15 ============================================================================ +01:09:15 [ 1] [ 4] [0800] +01:09:15 [ 7] [ 10] [0319060823] +01:09:15 [ 11] [ 6] [153352] +01:09:15 [ 70] [ 3] [301] +01:09:15 ============================================================================ +01:09:15 + + +waiting on router queue for slot.... +01:09:15 Sending to : +01:09:15 ============================================================================ +01:09:15 ============================================================================ +01:09:15 Slot Id : <299> +01:09:15 Transaction Type : RESPONSE +01:09:15 Received From : +01:09:15 ============================================================================ +01:09:15 FNo. Len. Field Value +01:09:15 ============================================================================ +01:09:15 [ 1] [ 4] [0810] +01:09:15 [ 7] [ 10] [0319060823] +01:09:15 [ 11] [ 6] [153352] +01:09:15 [ 39] [ 2] [00] +01:09:15 [ 70] [ 3] [301] +01:09:15 ============================================================================ +01:09:15 Calculate Source COMM Id = 2 +01:09:15 ============================================================================ +01:09:15 + + +waiting on router queue for slot.... +01:09:26 ============================================================================ +01:09:26 Slot Id : <302> +01:09:26 Transaction Type : REQUEST +01:09:26 Received From : +01:09:26 ============================================================================ +01:09:26 FNo. Len. Field Value +01:09:26 ============================================================================ +01:09:26 [ 1] [ 4] [0800] +01:09:26 [ 7] [ 10] [0319060833] +01:09:26 [ 11] [ 6] [153353] +01:09:26 [ 70] [ 3] [301] +01:09:26 ============================================================================ +01:09:26 + + +waiting on router queue for slot.... +01:09:26 Sending to : +01:09:26 ============================================================================ +01:09:26 ============================================================================ +01:09:26 Slot Id : <302> +01:09:26 Transaction Type : RESPONSE +01:09:26 Received From : +01:09:26 ============================================================================ +01:09:26 FNo. Len. Field Value +01:09:26 ============================================================================ +01:09:26 [ 1] [ 4] [0810] +01:09:26 [ 7] [ 10] [0319060833] +01:09:26 [ 11] [ 6] [153353] +01:09:26 [ 39] [ 2] [00] +01:09:26 [ 70] [ 3] [301] +01:09:26 ============================================================================ +01:09:26 Calculate Source COMM Id = 2 +01:09:26 ============================================================================ +01:09:26 + + +waiting on router queue for slot.... +01:09:42 ============================================================================ +01:09:42 Slot Id : <292> +01:09:42 Transaction Type : REQUEST +01:09:42 Received From : +01:09:42 ============================================================================ +01:09:42 FNo. Len. Field Value +01:09:42 ============================================================================ +01:09:42 [ 1] [ 4] [0800] +01:09:42 [ 7] [ 10] [0319060849] +01:09:42 [ 11] [ 6] [153354] +01:09:42 [ 70] [ 3] [301] +01:09:42 ============================================================================ +01:09:42 + + +waiting on router queue for slot.... +01:09:42 Sending to : +01:09:42 ============================================================================ +01:09:42 ============================================================================ +01:09:42 Slot Id : <292> +01:09:42 Transaction Type : RESPONSE +01:09:42 Received From : +01:09:42 ============================================================================ +01:09:42 FNo. Len. Field Value +01:09:42 ============================================================================ +01:09:42 [ 1] [ 4] [0810] +01:09:42 [ 7] [ 10] [0319060849] +01:09:42 [ 11] [ 6] [153354] +01:09:42 [ 39] [ 2] [00] +01:09:42 [ 70] [ 3] [301] +01:09:42 ============================================================================ +01:09:42 Calculate Source COMM Id = 2 +01:09:42 ============================================================================ +01:09:42 + + +waiting on router queue for slot.... +01:09:49 ============================================================================ +01:09:49 Slot Id : <300> +01:09:49 Transaction Type : REQUEST +01:09:49 Received From : +01:09:49 ============================================================================ +01:09:49 FNo. Len. Field Value +01:09:49 ============================================================================ +01:09:49 [ 1] [ 4] [0800] +01:09:49 [ 2] [ 5] [02531] +01:09:49 [ 3] [ 6] [579018] +01:09:49 [ 7] [ 10] [0319180949] +01:09:49 [ 11] [ 6] [806479] +01:09:49 [ 15] [ 10] [0319180949] +01:09:49 [ 37] [ 11] [57901806479] +01:09:49 [ 70] [ 3] [001] +01:09:49 ============================================================================ +01:09:49 + + +waiting on router queue for slot.... +01:09:49 ============================================================================ +01:09:49 Slot Id : <300> +01:09:49 Transaction Type : RESPONSE +01:09:49 Received From : +01:09:49 ============================================================================ +01:09:49 FNo. Len. Field Value +01:09:49 ============================================================================ +01:09:49 [ 1] [ 4] [0810] +01:09:49 [ 7] [ 10] [0319180949] +01:09:49 [ 11] [ 6] [806479] +01:09:49 [ 15] [ 4] [0319] +01:09:49 [ 37] [ 12] [57901806479] +01:09:49 [ 39] [ 2] [00] +01:09:49 [ 70] [ 3] [001] +01:09:49 ============================================================================ +01:09:49 Sending to : +01:09:49 ============================================================================ +01:09:49 + + +waiting on router queue for slot.... +01:09:56 ============================================================================ +01:09:56 Slot Id : <281> +01:09:56 Transaction Type : REQUEST +01:09:56 Received From : +01:09:56 ============================================================================ +01:09:56 FNo. Len. Field Value +01:09:56 ============================================================================ +01:09:56 [ 1] [ 4] [0800] +01:09:56 [ 7] [ 10] [0319181742] +01:09:56 [ 11] [ 6] [064228] +01:09:56 [ 37] [ 12] [57901064228] +01:09:56 [ 70] [ 3] [301] +01:09:56 ============================================================================ +01:09:56 + + +waiting on router queue for slot.... +01:09:56 Sending to : +01:09:56 ============================================================================ +01:09:56 ============================================================================ +01:09:56 Slot Id : <281> +01:09:56 Transaction Type : RESPONSE +01:09:56 Received From : +01:09:56 ============================================================================ +01:09:56 FNo. Len. Field Value +01:09:56 ============================================================================ +01:09:56 [ 1] [ 4] [0810] +01:09:56 [ 7] [ 10] [0319181742] +01:09:56 [ 11] [ 6] [064228] +01:09:56 [ 37] [ 12] [579010642280] +01:09:56 [ 39] [ 2] [00] +01:09:56 [ 70] [ 3] [810] +01:09:56 ============================================================================ +01:09:56 Calculate Source COMM Id = 1 +01:09:56 ============================================================================ +01:09:56 + + +waiting on router queue for slot.... +01:09:57 ============================================================================ +01:09:57 Slot Id : <295> +01:09:57 Transaction Type : REQUEST +01:09:57 Received From : +01:09:57 ============================================================================ +01:09:57 FNo. Len. Field Value +01:09:57 ============================================================================ +01:09:57 [ 1] [ 4] [0800] +01:09:57 [ 7] [ 10] [0319060904] +01:09:57 [ 11] [ 6] [153355] +01:09:57 [ 70] [ 3] [301] +01:09:57 ============================================================================ +01:09:57 + + +waiting on router queue for slot.... +01:09:57 Sending to : +01:09:57 ============================================================================ +01:09:57 ============================================================================ +01:09:57 Slot Id : <295> +01:09:57 Transaction Type : RESPONSE +01:09:57 Received From : +01:09:57 ============================================================================ +01:09:57 FNo. Len. Field Value +01:09:57 ============================================================================ +01:09:57 [ 1] [ 4] [0810] +01:09:57 [ 7] [ 10] [0319060904] +01:09:57 [ 11] [ 6] [153355] +01:09:57 [ 39] [ 2] [00] +01:09:57 [ 70] [ 3] [301] +01:09:57 ============================================================================ +01:09:57 Calculate Source COMM Id = 2 +01:09:57 ============================================================================ +01:09:57 + + +waiting on router queue for slot.... +01:10:08 ============================================================================ +01:10:08 Slot Id : <308> +01:10:08 Transaction Type : REQUEST +01:10:08 Received From : +01:10:08 ============================================================================ +01:10:08 FNo. Len. Field Value +01:10:08 ============================================================================ +01:10:08 [ 1] [ 4] [0800] +01:10:08 [ 7] [ 10] [0319060915] +01:10:08 [ 11] [ 6] [153356] +01:10:08 [ 70] [ 3] [301] +01:10:08 ============================================================================ +01:10:08 + + +waiting on router queue for slot.... +01:10:08 Sending to : +01:10:08 ============================================================================ +01:10:08 ============================================================================ +01:10:08 Slot Id : <308> +01:10:08 Transaction Type : RESPONSE +01:10:08 Received From : +01:10:08 ============================================================================ +01:10:08 FNo. Len. Field Value +01:10:08 ============================================================================ +01:10:08 [ 1] [ 4] [0810] +01:10:08 [ 7] [ 10] [0319060915] +01:10:08 [ 11] [ 6] [153356] +01:10:08 [ 39] [ 2] [00] +01:10:08 [ 70] [ 3] [301] +01:10:08 ============================================================================ +01:10:08 Calculate Source COMM Id = 2 +01:10:08 ============================================================================ +01:10:08 + + +waiting on router queue for slot.... +01:10:16 ============================================================================ +01:10:16 Slot Id : <262> +01:10:16 Transaction Type : REQUEST +01:10:16 Received From : +01:10:16 ============================================================================ +01:10:16 FNo. Len. Field Value +01:10:16 ============================================================================ +01:10:16 [ 1] [ 4] [0800] +01:10:16 [ 7] [ 10] [0320082203] +01:10:16 [ 11] [ 6] [012203] +01:10:16 [ 37] [ 12] [57901012203] +01:10:16 [ 70] [ 3] [301] +01:10:16 ============================================================================ +01:10:16 + + +waiting on router queue for slot.... +01:10:16 Sending to : +01:10:16 ============================================================================ +01:10:16 ============================================================================ +01:10:16 Slot Id : <262> +01:10:16 Transaction Type : RESPONSE +01:10:16 Received From : +01:10:16 ============================================================================ +01:10:16 FNo. Len. Field Value +01:10:16 ============================================================================ +01:10:16 [ 1] [ 4] [0810] +01:10:16 [ 7] [ 10] [0320082203] +01:10:16 [ 11] [ 6] [012203] +01:10:16 [ 37] [ 12] [579010122030] +01:10:16 [ 39] [ 2] [00] +01:10:16 [ 70] [ 3] [810] +01:10:16 ============================================================================ +01:10:16 Calculate Source COMM Id = 6 +01:10:16 ============================================================================ +01:10:16 + + +waiting on router queue for slot.... +01:10:18 ============================================================================ +01:10:18 Slot Id : <296> +01:10:18 Transaction Type : REQUEST +01:10:18 Received From : +01:10:18 ============================================================================ +01:10:18 FNo. Len. Field Value +01:10:18 ============================================================================ +01:10:18 [ 1] [ 4] [0800] +01:10:18 [ 7] [ 10] [0319060926] +01:10:18 [ 11] [ 6] [153357] +01:10:18 [ 70] [ 3] [301] +01:10:18 ============================================================================ +01:10:18 + + +waiting on router queue for slot.... +01:10:18 Sending to : +01:10:18 ============================================================================ +01:10:18 ============================================================================ +01:10:18 Slot Id : <296> +01:10:18 Transaction Type : RESPONSE +01:10:18 Received From : +01:10:18 ============================================================================ +01:10:18 FNo. Len. Field Value +01:10:18 ============================================================================ +01:10:18 [ 1] [ 4] [0810] +01:10:18 [ 7] [ 10] [0319060926] +01:10:18 [ 11] [ 6] [153357] +01:10:18 [ 39] [ 2] [00] +01:10:18 [ 70] [ 3] [301] +01:10:18 ============================================================================ +01:10:18 Calculate Source COMM Id = 2 +01:10:18 ============================================================================ +01:10:18 + + +waiting on router queue for slot.... +01:10:29 ============================================================================ +01:10:29 Slot Id : <283> +01:10:29 Transaction Type : REQUEST +01:10:29 Received From : +01:10:29 ============================================================================ +01:10:29 FNo. Len. Field Value +01:10:29 ============================================================================ +01:10:29 [ 1] [ 4] [0800] +01:10:29 [ 7] [ 10] [0319060936] +01:10:29 [ 11] [ 6] [153358] +01:10:29 [ 70] [ 3] [301] +01:10:29 ============================================================================ +01:10:29 + + +waiting on router queue for slot.... +01:10:29 Sending to : +01:10:29 ============================================================================ +01:10:29 ============================================================================ +01:10:29 Slot Id : <283> +01:10:29 Transaction Type : RESPONSE +01:10:29 Received From : +01:10:29 ============================================================================ +01:10:29 FNo. Len. Field Value +01:10:29 ============================================================================ +01:10:29 [ 1] [ 4] [0810] +01:10:29 [ 7] [ 10] [0319060936] +01:10:29 [ 11] [ 6] [153358] +01:10:29 [ 39] [ 2] [00] +01:10:29 [ 70] [ 3] [301] +01:10:29 ============================================================================ +01:10:29 Calculate Source COMM Id = 2 +01:10:29 ============================================================================ +01:10:29 + + +waiting on router queue for slot.... +01:10:44 ============================================================================ +01:10:44 Slot Id : <311> +01:10:44 Transaction Type : REQUEST +01:10:44 Received From : +01:10:44 ============================================================================ +01:10:44 FNo. Len. Field Value +01:10:44 ============================================================================ +01:10:44 [ 1] [ 4] [0800] +01:10:44 [ 7] [ 10] [0319060951] +01:10:44 [ 11] [ 6] [153359] +01:10:44 [ 70] [ 3] [301] +01:10:44 ============================================================================ +01:10:44 + + +waiting on router queue for slot.... +01:10:44 Sending to : +01:10:44 ============================================================================ +01:10:44 ============================================================================ +01:10:44 Slot Id : <311> +01:10:44 Transaction Type : RESPONSE +01:10:44 Received From : +01:10:44 ============================================================================ +01:10:44 FNo. Len. Field Value +01:10:44 ============================================================================ +01:10:44 [ 1] [ 4] [0810] +01:10:44 [ 7] [ 10] [0319060951] +01:10:44 [ 11] [ 6] [153359] +01:10:44 [ 39] [ 2] [00] +01:10:44 [ 70] [ 3] [301] +01:10:44 ============================================================================ +01:10:44 Calculate Source COMM Id = 2 +01:10:44 ============================================================================ +01:10:44 + + +waiting on router queue for slot.... +01:10:51 ============================================================================ +01:10:51 Slot Id : <312> +01:10:51 Transaction Type : REQUEST +01:10:51 Received From : +01:10:51 ============================================================================ +01:10:51 FNo. Len. Field Value +01:10:51 ============================================================================ +01:10:51 [ 1] [ 4] [0800] +01:10:51 [ 2] [ 5] [02531] +01:10:51 [ 3] [ 6] [579018] +01:10:51 [ 7] [ 10] [0319181051] +01:10:51 [ 11] [ 6] [806480] +01:10:51 [ 15] [ 10] [0319181051] +01:10:51 [ 37] [ 11] [57901806480] +01:10:51 [ 70] [ 3] [001] +01:10:51 ============================================================================ +01:10:51 + + +waiting on router queue for slot.... +01:10:51 ============================================================================ +01:10:51 Slot Id : <312> +01:10:51 Transaction Type : RESPONSE +01:10:51 Received From : +01:10:51 ============================================================================ +01:10:51 FNo. Len. Field Value +01:10:51 ============================================================================ +01:10:51 [ 1] [ 4] [0810] +01:10:51 [ 7] [ 10] [0319181051] +01:10:51 [ 11] [ 6] [806480] +01:10:51 [ 15] [ 4] [0319] +01:10:51 [ 37] [ 12] [57901806480] +01:10:51 [ 39] [ 2] [00] +01:10:51 [ 70] [ 3] [001] +01:10:51 ============================================================================ +01:10:51 Sending to : +01:10:51 ============================================================================ +01:10:51 + + +waiting on router queue for slot.... +01:11:00 ============================================================================ +01:11:00 Slot Id : <316> +01:11:00 Transaction Type : REQUEST +01:11:00 Received From : +01:11:00 ============================================================================ +01:11:00 FNo. Len. Field Value +01:11:00 ============================================================================ +01:11:00 [ 1] [ 4] [0800] +01:11:00 [ 7] [ 10] [0319061007] +01:11:00 [ 11] [ 6] [153360] +01:11:00 [ 70] [ 3] [301] +01:11:00 ============================================================================ +01:11:00 + + +waiting on router queue for slot.... +01:11:00 Sending to : +01:11:00 ============================================================================ +01:11:00 ============================================================================ +01:11:00 Slot Id : <316> +01:11:00 Transaction Type : RESPONSE +01:11:00 Received From : +01:11:00 ============================================================================ +01:11:00 FNo. Len. Field Value +01:11:00 ============================================================================ +01:11:00 [ 1] [ 4] [0810] +01:11:00 [ 7] [ 10] [0319061007] +01:11:00 [ 11] [ 6] [153360] +01:11:00 [ 39] [ 2] [00] +01:11:00 [ 70] [ 3] [301] +01:11:00 ============================================================================ +01:11:00 Calculate Source COMM Id = 2 +01:11:00 ============================================================================ +01:11:00 + + +waiting on router queue for slot.... +01:11:10 ============================================================================ +01:11:10 Slot Id : <306> +01:11:10 Transaction Type : REQUEST +01:11:10 Received From : +01:11:10 ============================================================================ +01:11:10 FNo. Len. Field Value +01:11:10 ============================================================================ +01:11:10 [ 1] [ 4] [0800] +01:11:10 [ 7] [ 10] [0319061017] +01:11:10 [ 11] [ 6] [153361] +01:11:10 [ 70] [ 3] [301] +01:11:10 ============================================================================ +01:11:10 + + +waiting on router queue for slot.... +01:11:10 Sending to : +01:11:10 ============================================================================ +01:11:10 ============================================================================ +01:11:10 Slot Id : <306> +01:11:10 Transaction Type : RESPONSE +01:11:10 Received From : +01:11:10 ============================================================================ +01:11:10 FNo. Len. Field Value +01:11:10 ============================================================================ +01:11:10 [ 1] [ 4] [0810] +01:11:10 [ 7] [ 10] [0319061017] +01:11:10 [ 11] [ 6] [153361] +01:11:10 [ 39] [ 2] [00] +01:11:10 [ 70] [ 3] [301] +01:11:10 ============================================================================ +01:11:10 Calculate Source COMM Id = 2 +01:11:10 ============================================================================ +01:11:10 + + +waiting on router queue for slot.... +01:11:21 ============================================================================ +01:11:21 Slot Id : <286> +01:11:21 Transaction Type : REQUEST +01:11:21 Received From : +01:11:21 ============================================================================ +01:11:21 FNo. Len. Field Value +01:11:21 ============================================================================ +01:11:21 [ 1] [ 4] [0800] +01:11:21 [ 7] [ 10] [0320082308] +01:11:21 [ 11] [ 6] [012308] +01:11:21 [ 37] [ 12] [57901012308] +01:11:21 [ 70] [ 3] [301] +01:11:21 ============================================================================ +01:11:21 + + +waiting on router queue for slot.... +01:11:21 Sending to : +01:11:21 ============================================================================ +01:11:21 ============================================================================ +01:11:21 Slot Id : <286> +01:11:21 Transaction Type : RESPONSE +01:11:21 Received From : +01:11:21 ============================================================================ +01:11:21 FNo. Len. Field Value +01:11:21 ============================================================================ +01:11:21 [ 1] [ 4] [0810] +01:11:21 [ 7] [ 10] [0320082308] +01:11:21 [ 11] [ 6] [012308] +01:11:21 [ 37] [ 12] [579010123080] +01:11:21 [ 39] [ 2] [00] +01:11:21 [ 70] [ 3] [810] +01:11:21 ============================================================================ +01:11:21 Calculate Source COMM Id = 6 +01:11:21 ============================================================================ +01:11:21 + + +waiting on router queue for slot.... +01:11:21 ============================================================================ +01:11:21 Slot Id : <307> +01:11:21 Transaction Type : REQUEST +01:11:21 Received From : +01:11:21 ============================================================================ +01:11:21 FNo. Len. Field Value +01:11:21 ============================================================================ +01:11:21 [ 1] [ 4] [0800] +01:11:21 [ 7] [ 10] [0319180912] +01:11:21 [ 11] [ 6] [090057] +01:11:21 [ 37] [ 12] [57901090057] +01:11:21 [ 70] [ 3] [301] +01:11:21 ============================================================================ +01:11:21 + + +waiting on router queue for slot.... +01:11:21 Sending to : +01:11:21 ============================================================================ +01:11:21 ============================================================================ +01:11:21 Slot Id : <307> +01:11:21 Transaction Type : RESPONSE +01:11:21 Received From : +01:11:21 ============================================================================ +01:11:21 FNo. Len. Field Value +01:11:21 ============================================================================ +01:11:21 [ 1] [ 4] [0810] +01:11:21 [ 7] [ 10] [0319180912] +01:11:21 [ 11] [ 6] [090057] +01:11:21 [ 37] [ 12] [579010900570] +01:11:21 [ 39] [ 2] [00] +01:11:21 [ 70] [ 3] [810] +01:11:21 ============================================================================ +01:11:21 Calculate Source COMM Id = 4 +01:11:21 ============================================================================ +01:11:21 + + +waiting on router queue for slot.... +01:11:26 ============================================================================ +01:11:26 Slot Id : <317> +01:11:26 Transaction Type : REQUEST +01:11:26 Received From : +01:11:26 ============================================================================ +01:11:26 FNo. Len. Field Value +01:11:26 ============================================================================ +01:11:26 [ 1] [ 4] [0800] +01:11:26 [ 7] [ 10] [0319061033] +01:11:26 [ 11] [ 6] [153362] +01:11:26 [ 70] [ 3] [301] +01:11:26 ============================================================================ +01:11:26 + + +waiting on router queue for slot.... +01:11:26 Sending to : +01:11:26 ============================================================================ +01:11:26 ============================================================================ +01:11:26 Slot Id : <317> +01:11:26 Transaction Type : RESPONSE +01:11:26 Received From : +01:11:26 ============================================================================ +01:11:26 FNo. Len. Field Value +01:11:26 ============================================================================ +01:11:26 [ 1] [ 4] [0810] +01:11:26 [ 7] [ 10] [0319061033] +01:11:26 [ 11] [ 6] [153362] +01:11:26 [ 39] [ 2] [00] +01:11:26 [ 70] [ 3] [301] +01:11:26 ============================================================================ +01:11:26 Calculate Source COMM Id = 2 +01:11:26 ============================================================================ +01:11:26 + + +waiting on router queue for slot.... +01:11:41 ============================================================================ +01:11:41 Slot Id : <310> +01:11:41 Transaction Type : REQUEST +01:11:41 Received From : +01:11:41 ============================================================================ +01:11:41 FNo. Len. Field Value +01:11:41 ============================================================================ +01:11:41 [ 1] [ 4] [0800] +01:11:41 [ 7] [ 10] [0319061048] +01:11:41 [ 11] [ 6] [153363] +01:11:41 [ 70] [ 3] [301] +01:11:41 ============================================================================ +01:11:41 + + +waiting on router queue for slot.... +01:11:41 Sending to : +01:11:41 ============================================================================ +01:11:41 ============================================================================ +01:11:41 Slot Id : <310> +01:11:41 Transaction Type : RESPONSE +01:11:41 Received From : +01:11:41 ============================================================================ +01:11:41 FNo. Len. Field Value +01:11:41 ============================================================================ +01:11:41 [ 1] [ 4] [0810] +01:11:41 [ 7] [ 10] [0319061048] +01:11:41 [ 11] [ 6] [153363] +01:11:41 [ 39] [ 2] [00] +01:11:41 [ 70] [ 3] [301] +01:11:41 ============================================================================ +01:11:41 Calculate Source COMM Id = 2 +01:11:41 ============================================================================ +01:11:41 + + +waiting on router queue for slot.... +01:11:50 ============================================================================ +01:11:50 Slot Id : <318> +01:11:50 Transaction Type : REQUEST +01:11:50 Received From : +01:11:50 ============================================================================ +01:11:50 FNo. Len. Field Value +01:11:50 ============================================================================ +01:11:50 [ 1] [ 4] [0800] +01:11:50 [ 7] [ 10] [0320011137] +01:11:50 [ 11] [ 6] [009050] +01:11:50 [ 37] [ 12] [507901009050] +01:11:50 [ 70] [ 3] [ ] +01:11:50 ============================================================================ +01:11:50 + + +waiting on router queue for slot.... +01:11:50 Sending to : +01:11:50 ============================================================================ +01:11:50 ============================================================================ +01:11:50 Slot Id : <318> +01:11:50 Transaction Type : RESPONSE +01:11:50 Received From : +01:11:50 ============================================================================ +01:11:50 FNo. Len. Field Value +01:11:50 ============================================================================ +01:11:50 [ 1] [ 4] [0810] +01:11:50 [ 7] [ 10] [0320011137] +01:11:50 [ 11] [ 6] [009050] +01:11:50 [ 37] [ 12] [507901009050] +01:11:50 [ 39] [ 2] [91] +01:11:50 [ 70] [ 3] [ ] +01:11:50 ============================================================================ +01:11:50 Calculate Source COMM Id = 3 +01:11:50 ============================================================================ +01:11:50 + + +waiting on router queue for slot.... +01:11:53 ============================================================================ +01:11:53 Slot Id : <289> +01:11:53 Transaction Type : REQUEST +01:11:53 Received From : +01:11:53 ============================================================================ +01:11:53 FNo. Len. Field Value +01:11:53 ============================================================================ +01:11:53 [ 1] [ 4] [0800] +01:11:53 [ 2] [ 5] [02531] +01:11:53 [ 3] [ 6] [579018] +01:11:53 [ 7] [ 10] [0319181153] +01:11:53 [ 11] [ 6] [806481] +01:11:53 [ 15] [ 10] [0319181153] +01:11:53 [ 37] [ 11] [57901806481] +01:11:53 [ 70] [ 3] [001] +01:11:53 ============================================================================ +01:11:53 + + +waiting on router queue for slot.... +01:11:53 ============================================================================ +01:11:53 Slot Id : <289> +01:11:53 Transaction Type : RESPONSE +01:11:53 Received From : +01:11:53 ============================================================================ +01:11:53 FNo. Len. Field Value +01:11:53 ============================================================================ +01:11:53 [ 1] [ 4] [0810] +01:11:53 [ 7] [ 10] [0319181153] +01:11:53 [ 11] [ 6] [806481] +01:11:53 [ 15] [ 4] [0319] +01:11:53 [ 37] [ 12] [57901806481] +01:11:53 [ 39] [ 2] [00] +01:11:53 [ 70] [ 3] [001] +01:11:53 ============================================================================ +01:11:53 Sending to : +01:11:53 ============================================================================ +01:11:53 + + +waiting on router queue for slot.... +01:11:56 ============================================================================ +01:11:56 Slot Id : <315> +01:11:56 Transaction Type : REQUEST +01:11:56 Received From : +01:11:56 ============================================================================ +01:11:56 FNo. Len. Field Value +01:11:56 ============================================================================ +01:11:56 [ 1] [ 4] [0800] +01:11:56 [ 7] [ 10] [0319061103] +01:11:56 [ 11] [ 6] [153364] +01:11:56 [ 70] [ 3] [301] +01:11:56 ============================================================================ +01:11:56 + + +waiting on router queue for slot.... +01:11:56 Sending to : +01:11:56 ============================================================================ +01:11:56 ============================================================================ +01:11:56 Slot Id : <315> +01:11:56 Transaction Type : RESPONSE +01:11:56 Received From : +01:11:56 ============================================================================ +01:11:56 FNo. Len. Field Value +01:11:56 ============================================================================ +01:11:56 [ 1] [ 4] [0810] +01:11:56 [ 7] [ 10] [0319061103] +01:11:56 [ 11] [ 6] [153364] +01:11:56 [ 39] [ 2] [00] +01:11:56 [ 70] [ 3] [301] +01:11:56 ============================================================================ +01:11:56 Calculate Source COMM Id = 2 +01:11:56 ============================================================================ +01:11:56 + + +waiting on router queue for slot.... +01:12:13 ============================================================================ +01:12:13 Slot Id : <304> +01:12:13 Transaction Type : REQUEST +01:12:13 Received From : +01:12:13 ============================================================================ +01:12:13 FNo. Len. Field Value +01:12:13 ============================================================================ +01:12:13 [ 1] [ 4] [0800] +01:12:13 [ 7] [ 10] [0319061119] +01:12:13 [ 11] [ 6] [153365] +01:12:13 [ 70] [ 3] [301] +01:12:13 ============================================================================ +01:12:13 + + +waiting on router queue for slot.... +01:12:13 Sending to : +01:12:13 ============================================================================ +01:12:13 ============================================================================ +01:12:13 Slot Id : <304> +01:12:13 Transaction Type : RESPONSE +01:12:13 Received From : +01:12:13 ============================================================================ +01:12:13 FNo. Len. Field Value +01:12:13 ============================================================================ +01:12:13 [ 1] [ 4] [0810] +01:12:13 [ 7] [ 10] [0319061119] +01:12:13 [ 11] [ 6] [153365] +01:12:13 [ 39] [ 2] [00] +01:12:13 [ 70] [ 3] [301] +01:12:13 ============================================================================ +01:12:13 Calculate Source COMM Id = 2 +01:12:13 ============================================================================ +01:12:13 + + +waiting on router queue for slot.... +01:12:26 ============================================================================ +01:12:26 Slot Id : <322> +01:12:26 Transaction Type : REQUEST +01:12:26 Received From : +01:12:26 ============================================================================ +01:12:26 FNo. Len. Field Value +01:12:26 ============================================================================ +01:12:26 [ 1] [ 4] [0800] +01:12:26 [ 7] [ 10] [0320082413] +01:12:26 [ 11] [ 6] [012413] +01:12:26 [ 37] [ 12] [57901012413] +01:12:26 [ 70] [ 3] [301] +01:12:26 ============================================================================ +01:12:26 + + +waiting on router queue for slot.... +01:12:26 Sending to : +01:12:26 ============================================================================ +01:12:26 ============================================================================ +01:12:26 Slot Id : <322> +01:12:26 Transaction Type : RESPONSE +01:12:26 Received From : +01:12:26 ============================================================================ +01:12:26 FNo. Len. Field Value +01:12:26 ============================================================================ +01:12:26 [ 1] [ 4] [0810] +01:12:26 [ 7] [ 10] [0320082413] +01:12:26 [ 11] [ 6] [012413] +01:12:26 [ 37] [ 12] [579010124130] +01:12:26 [ 39] [ 2] [00] +01:12:26 [ 70] [ 3] [810] +01:12:26 ============================================================================ +01:12:26 Calculate Source COMM Id = 6 +01:12:26 ============================================================================ +01:12:26 + + +waiting on router queue for slot.... +01:12:28 ============================================================================ +01:12:28 Slot Id : <325> +01:12:28 Transaction Type : REQUEST +01:12:28 Received From : +01:12:28 ============================================================================ +01:12:28 FNo. Len. Field Value +01:12:28 ============================================================================ +01:12:28 [ 1] [ 4] [0800] +01:12:28 [ 7] [ 10] [0319061135] +01:12:28 [ 11] [ 6] [153366] +01:12:28 [ 70] [ 3] [301] +01:12:28 ============================================================================ +01:12:28 + + +waiting on router queue for slot.... +01:12:28 Sending to : +01:12:28 ============================================================================ +01:12:28 ============================================================================ +01:12:28 Slot Id : <325> +01:12:28 Transaction Type : RESPONSE +01:12:28 Received From : +01:12:28 ============================================================================ +01:12:28 FNo. Len. Field Value +01:12:28 ============================================================================ +01:12:28 [ 1] [ 4] [0810] +01:12:28 [ 7] [ 10] [0319061135] +01:12:28 [ 11] [ 6] [153366] +01:12:28 [ 39] [ 2] [00] +01:12:28 [ 70] [ 3] [301] +01:12:28 ============================================================================ +01:12:28 Calculate Source COMM Id = 2 +01:12:28 ============================================================================ +01:12:28 + + +waiting on router queue for slot.... +01:12:39 ============================================================================ +01:12:39 Slot Id : <285> +01:12:39 Transaction Type : REQUEST +01:12:39 Received From : +01:12:39 ============================================================================ +01:12:39 FNo. Len. Field Value +01:12:39 ============================================================================ +01:12:39 [ 1] [ 4] [0800] +01:12:39 [ 7] [ 10] [0319061146] +01:12:39 [ 11] [ 6] [153367] +01:12:39 [ 70] [ 3] [301] +01:12:39 ============================================================================ +01:12:39 + + +waiting on router queue for slot.... +01:12:39 Sending to : +01:12:39 ============================================================================ +01:12:39 ============================================================================ +01:12:39 Slot Id : <285> +01:12:39 Transaction Type : RESPONSE +01:12:39 Received From : +01:12:39 ============================================================================ +01:12:39 FNo. Len. Field Value +01:12:39 ============================================================================ +01:12:39 [ 1] [ 4] [0810] +01:12:39 [ 7] [ 10] [0319061146] +01:12:39 [ 11] [ 6] [153367] +01:12:39 [ 39] [ 2] [00] +01:12:39 [ 70] [ 3] [301] +01:12:39 ============================================================================ +01:12:39 Calculate Source COMM Id = 2 +01:12:39 ============================================================================ +01:12:39 + + +waiting on router queue for slot.... +01:12:48 ============================================================================ +01:12:48 Slot Id : <297> +01:12:48 Transaction Type : REQUEST +01:12:48 Received From : +01:12:48 ============================================================================ +01:12:48 FNo. Len. Field Value +01:12:48 ============================================================================ +01:12:48 [ 1] [ 4] [0800] +01:12:48 [ 7] [ 10] [0319181244] +01:12:48 [ 11] [ 6] [063645] +01:12:48 [ 37] [ 12] [507901063645] +01:12:48 [ 70] [ 3] [001] +01:12:48 ============================================================================ +01:12:48 + + +waiting on router queue for slot.... +01:12:48 Sending to : +01:12:48 ============================================================================ +01:12:48 ============================================================================ +01:12:48 Slot Id : <297> +01:12:48 Transaction Type : RESPONSE +01:12:48 Received From : +01:12:48 ============================================================================ +01:12:48 FNo. Len. Field Value +01:12:48 ============================================================================ +01:12:48 [ 1] [ 4] [0810] +01:12:48 [ 7] [ 10] [0319181244] +01:12:48 [ 11] [ 6] [063645] +01:12:48 [ 37] [ 12] [507901063645] +01:12:48 [ 39] [ 2] [00] +01:12:48 [ 70] [ 3] [001] +01:12:48 ============================================================================ +01:12:48 Calculate Source COMM Id = 0 +01:12:48 ============================================================================ +01:12:48 + + +waiting on router queue for slot.... +01:12:49 ============================================================================ +01:12:49 Slot Id : <291> +01:12:49 Transaction Type : REQUEST +01:12:49 Received From : +01:12:49 ============================================================================ +01:12:49 FNo. Len. Field Value +01:12:49 ============================================================================ +01:12:49 [ 1] [ 4] [0800] +01:12:49 [ 7] [ 10] [0319061156] +01:12:49 [ 11] [ 6] [153368] +01:12:49 [ 70] [ 3] [301] +01:12:49 ============================================================================ +01:12:49 + + +waiting on router queue for slot.... +01:12:49 Sending to : +01:12:49 ============================================================================ +01:12:49 ============================================================================ +01:12:49 Slot Id : <291> +01:12:49 Transaction Type : RESPONSE +01:12:49 Received From : +01:12:49 ============================================================================ +01:12:49 FNo. Len. Field Value +01:12:49 ============================================================================ +01:12:49 [ 1] [ 4] [0810] +01:12:49 [ 7] [ 10] [0319061156] +01:12:49 [ 11] [ 6] [153368] +01:12:49 [ 39] [ 2] [00] +01:12:49 [ 70] [ 3] [301] +01:12:49 ============================================================================ +01:12:49 Calculate Source COMM Id = 2 +01:12:49 ============================================================================ +01:12:49 + + +waiting on router queue for slot.... +01:12:55 ============================================================================ +01:12:55 Slot Id : <326> +01:12:55 Transaction Type : REQUEST +01:12:55 Received From : +01:12:55 ============================================================================ +01:12:55 FNo. Len. Field Value +01:12:55 ============================================================================ +01:12:55 [ 1] [ 4] [0800] +01:12:55 [ 2] [ 5] [02531] +01:12:55 [ 3] [ 6] [579018] +01:12:55 [ 7] [ 10] [0319181255] +01:12:55 [ 11] [ 6] [806482] +01:12:55 [ 15] [ 10] [0319181255] +01:12:55 [ 37] [ 11] [57901806482] +01:12:55 [ 70] [ 3] [001] +01:12:55 ============================================================================ +01:12:55 + + +waiting on router queue for slot.... +01:12:55 ============================================================================ +01:12:55 Slot Id : <326> +01:12:55 Transaction Type : RESPONSE +01:12:55 Received From : +01:12:55 ============================================================================ +01:12:55 FNo. Len. Field Value +01:12:55 ============================================================================ +01:12:55 [ 1] [ 4] [0810] +01:12:55 [ 7] [ 10] [0319181255] +01:12:55 [ 11] [ 6] [806482] +01:12:55 [ 15] [ 4] [0319] +01:12:55 [ 37] [ 12] [57901806482] +01:12:55 [ 39] [ 2] [00] +01:12:55 [ 70] [ 3] [001] +01:12:55 ============================================================================ +01:12:55 Sending to : +01:12:55 ============================================================================ +01:12:55 + + +waiting on router queue for slot.... +01:13:00 ============================================================================ +01:13:00 Slot Id : <305> +01:13:00 Transaction Type : REQUEST +01:13:00 Received From : +01:13:00 ============================================================================ +01:13:00 FNo. Len. Field Value +01:13:00 ============================================================================ +01:13:00 [ 1] [ 4] [0800] +01:13:00 [ 7] [ 10] [0319061207] +01:13:00 [ 11] [ 6] [153369] +01:13:00 [ 70] [ 3] [301] +01:13:00 ============================================================================ +01:13:00 + + +waiting on router queue for slot.... +01:13:00 Sending to : +01:13:00 ============================================================================ +01:13:00 ============================================================================ +01:13:00 Slot Id : <305> +01:13:00 Transaction Type : RESPONSE +01:13:00 Received From : +01:13:00 ============================================================================ +01:13:00 FNo. Len. Field Value +01:13:00 ============================================================================ +01:13:00 [ 1] [ 4] [0810] +01:13:00 [ 7] [ 10] [0319061207] +01:13:00 [ 11] [ 6] [153369] +01:13:00 [ 39] [ 2] [00] +01:13:00 [ 70] [ 3] [301] +01:13:00 ============================================================================ +01:13:00 Calculate Source COMM Id = 2 +01:13:00 ============================================================================ +01:13:00 + + +waiting on router queue for slot.... +01:13:16 ============================================================================ +01:13:16 Slot Id : <301> +01:13:16 Transaction Type : REQUEST +01:13:16 Received From : +01:13:16 ============================================================================ +01:13:16 FNo. Len. Field Value +01:13:16 ============================================================================ +01:13:16 [ 1] [ 4] [0800] +01:13:16 [ 7] [ 10] [0319061223] +01:13:16 [ 11] [ 6] [153370] +01:13:16 [ 70] [ 3] [301] +01:13:16 ============================================================================ +01:13:16 + + +waiting on router queue for slot.... +01:13:16 Sending to : +01:13:16 ============================================================================ +01:13:16 ============================================================================ +01:13:16 Slot Id : <301> +01:13:16 Transaction Type : RESPONSE +01:13:16 Received From : +01:13:16 ============================================================================ +01:13:16 FNo. Len. Field Value +01:13:16 ============================================================================ +01:13:16 [ 1] [ 4] [0810] +01:13:16 [ 7] [ 10] [0319061223] +01:13:16 [ 11] [ 6] [153370] +01:13:16 [ 39] [ 2] [00] +01:13:16 [ 70] [ 3] [301] +01:13:16 ============================================================================ +01:13:16 Calculate Source COMM Id = 2 +01:13:16 ============================================================================ +01:13:16 + + +waiting on router queue for slot.... +01:13:31 ============================================================================ +01:13:31 Slot Id : <327> +01:13:31 Transaction Type : REQUEST +01:13:31 Received From : +01:13:31 ============================================================================ +01:13:31 FNo. Len. Field Value +01:13:31 ============================================================================ +01:13:31 [ 1] [ 4] [0800] +01:13:31 [ 7] [ 10] [0320082518] +01:13:31 [ 11] [ 6] [012518] +01:13:31 [ 37] [ 12] [57901012518] +01:13:31 [ 70] [ 3] [301] +01:13:31 ============================================================================ +01:13:31 + + +waiting on router queue for slot.... +01:13:31 Sending to : +01:13:31 ============================================================================ +01:13:31 ============================================================================ +01:13:31 Slot Id : <327> +01:13:31 Transaction Type : RESPONSE +01:13:31 Received From : +01:13:31 ============================================================================ +01:13:31 FNo. Len. Field Value +01:13:31 ============================================================================ +01:13:31 [ 1] [ 4] [0810] +01:13:31 [ 7] [ 10] [0320082518] +01:13:31 [ 11] [ 6] [012518] +01:13:31 [ 37] [ 12] [579010125180] +01:13:31 [ 39] [ 2] [00] +01:13:31 [ 70] [ 3] [810] +01:13:31 ============================================================================ +01:13:31 Calculate Source COMM Id = 6 +01:13:31 ============================================================================ +01:13:31 + + +waiting on router queue for slot.... +01:13:32 ============================================================================ +01:13:32 Slot Id : <333> +01:13:32 Transaction Type : REQUEST +01:13:32 Received From : +01:13:32 ============================================================================ +01:13:32 FNo. Len. Field Value +01:13:32 ============================================================================ +01:13:32 [ 1] [ 4] [0800] +01:13:32 [ 7] [ 10] [0319061239] +01:13:32 [ 11] [ 6] [153371] +01:13:32 [ 70] [ 3] [301] +01:13:32 ============================================================================ +01:13:32 + + +waiting on router queue for slot.... +01:13:32 Sending to : +01:13:32 ============================================================================ +01:13:32 ============================================================================ +01:13:32 Slot Id : <333> +01:13:32 Transaction Type : RESPONSE +01:13:32 Received From : +01:13:32 ============================================================================ +01:13:32 FNo. Len. Field Value +01:13:32 ============================================================================ +01:13:32 [ 1] [ 4] [0810] +01:13:32 [ 7] [ 10] [0319061239] +01:13:32 [ 11] [ 6] [153371] +01:13:32 [ 39] [ 2] [00] +01:13:32 [ 70] [ 3] [301] +01:13:32 ============================================================================ +01:13:32 Calculate Source COMM Id = 2 +01:13:32 ============================================================================ +01:13:32 + + +waiting on router queue for slot.... +01:13:48 ============================================================================ +01:13:48 Slot Id : <314> +01:13:48 Transaction Type : REQUEST +01:13:48 Received From : +01:13:48 ============================================================================ +01:13:48 FNo. Len. Field Value +01:13:48 ============================================================================ +01:13:48 [ 1] [ 4] [0800] +01:13:48 [ 7] [ 10] [0319061255] +01:13:48 [ 11] [ 6] [153372] +01:13:48 [ 70] [ 3] [301] +01:13:48 ============================================================================ +01:13:48 + + +waiting on router queue for slot.... +01:13:48 Sending to : +01:13:48 ============================================================================ +01:13:48 ============================================================================ +01:13:48 Slot Id : <314> +01:13:48 Transaction Type : RESPONSE +01:13:48 Received From : +01:13:48 ============================================================================ +01:13:48 FNo. Len. Field Value +01:13:48 ============================================================================ +01:13:48 [ 1] [ 4] [0810] +01:13:48 [ 7] [ 10] [0319061255] +01:13:48 [ 11] [ 6] [153372] +01:13:48 [ 39] [ 2] [00] +01:13:48 [ 70] [ 3] [301] +01:13:48 ============================================================================ +01:13:48 Calculate Source COMM Id = 2 +01:13:48 ============================================================================ +01:13:48 + + +waiting on router queue for slot.... +01:13:57 ============================================================================ +01:13:57 Slot Id : <331> +01:13:57 Transaction Type : REQUEST +01:13:57 Received From : +01:13:57 ============================================================================ +01:13:57 FNo. Len. Field Value +01:13:57 ============================================================================ +01:13:57 [ 1] [ 4] [0800] +01:13:57 [ 2] [ 5] [02531] +01:13:57 [ 3] [ 6] [579018] +01:13:57 [ 7] [ 10] [0319181357] +01:13:57 [ 11] [ 6] [806483] +01:13:57 [ 15] [ 10] [0319181357] +01:13:57 [ 37] [ 11] [57901806483] +01:13:57 [ 70] [ 3] [001] +01:13:57 ============================================================================ +01:13:57 + + +waiting on router queue for slot.... +01:13:57 ============================================================================ +01:13:57 Slot Id : <331> +01:13:57 Transaction Type : RESPONSE +01:13:57 Received From : +01:13:57 ============================================================================ +01:13:57 FNo. Len. Field Value +01:13:57 ============================================================================ +01:13:57 [ 1] [ 4] [0810] +01:13:57 [ 7] [ 10] [0319181357] +01:13:57 [ 11] [ 6] [806483] +01:13:57 [ 15] [ 4] [0319] +01:13:57 [ 37] [ 12] [57901806483] +01:13:57 [ 39] [ 2] [00] +01:13:57 [ 70] [ 3] [001] +01:13:57 ============================================================================ +01:13:57 Sending to : +01:13:57 ============================================================================ +01:13:57 + + +waiting on router queue for slot.... +01:13:59 ============================================================================ +01:13:59 Slot Id : <321> +01:13:59 Transaction Type : REQUEST +01:13:59 Received From : +01:13:59 ============================================================================ +01:13:59 FNo. Len. Field Value +01:13:59 ============================================================================ +01:13:59 [ 1] [ 4] [0800] +01:13:59 [ 7] [ 10] [0319061306] +01:13:59 [ 11] [ 6] [153373] +01:13:59 [ 70] [ 3] [301] +01:13:59 ============================================================================ +01:13:59 + + +waiting on router queue for slot.... +01:13:59 Sending to : +01:13:59 ============================================================================ +01:13:59 ============================================================================ +01:13:59 Slot Id : <321> +01:13:59 Transaction Type : RESPONSE +01:13:59 Received From : +01:13:59 ============================================================================ +01:13:59 FNo. Len. Field Value +01:13:59 ============================================================================ +01:13:59 [ 1] [ 4] [0810] +01:13:59 [ 7] [ 10] [0319061306] +01:13:59 [ 11] [ 6] [153373] +01:13:59 [ 39] [ 2] [00] +01:13:59 [ 70] [ 3] [301] +01:13:59 ============================================================================ +01:13:59 Calculate Source COMM Id = 2 +01:13:59 ============================================================================ +01:13:59 + + +waiting on router queue for slot.... +01:14:09 ============================================================================ +01:14:09 Slot Id : <336> +01:14:09 Transaction Type : REQUEST +01:14:09 Received From : +01:14:09 ============================================================================ +01:14:09 FNo. Len. Field Value +01:14:09 ============================================================================ +01:14:09 [ 1] [ 4] [0800] +01:14:09 [ 7] [ 10] [0319061317] +01:14:09 [ 11] [ 6] [153374] +01:14:09 [ 70] [ 3] [301] +01:14:09 ============================================================================ +01:14:09 + + +waiting on router queue for slot.... +01:14:09 Sending to : +01:14:09 ============================================================================ +01:14:09 ============================================================================ +01:14:09 Slot Id : <336> +01:14:09 Transaction Type : RESPONSE +01:14:09 Received From : +01:14:09 ============================================================================ +01:14:09 FNo. Len. Field Value +01:14:09 ============================================================================ +01:14:09 [ 1] [ 4] [0810] +01:14:09 [ 7] [ 10] [0319061317] +01:14:09 [ 11] [ 6] [153374] +01:14:09 [ 39] [ 2] [00] +01:14:09 [ 70] [ 3] [301] +01:14:09 ============================================================================ +01:14:09 Calculate Source COMM Id = 2 +01:14:09 ============================================================================ +01:14:09 + + +waiting on router queue for slot.... +01:14:20 ============================================================================ +01:14:20 Slot Id : <334> +01:14:20 Transaction Type : REQUEST +01:14:20 Received From : +01:14:20 ============================================================================ +01:14:20 FNo. Len. Field Value +01:14:20 ============================================================================ +01:14:20 [ 1] [ 4] [0800] +01:14:20 [ 7] [ 10] [0319061327] +01:14:20 [ 11] [ 6] [153375] +01:14:20 [ 70] [ 3] [301] +01:14:20 ============================================================================ +01:14:20 + + +waiting on router queue for slot.... +01:14:20 Sending to : +01:14:20 ============================================================================ +01:14:20 ============================================================================ +01:14:20 Slot Id : <334> +01:14:20 Transaction Type : RESPONSE +01:14:20 Received From : +01:14:20 ============================================================================ +01:14:20 FNo. Len. Field Value +01:14:20 ============================================================================ +01:14:20 [ 1] [ 4] [0810] +01:14:20 [ 7] [ 10] [0319061327] +01:14:20 [ 11] [ 6] [153375] +01:14:20 [ 39] [ 2] [00] +01:14:20 [ 70] [ 3] [301] +01:14:20 ============================================================================ +01:14:20 Calculate Source COMM Id = 2 +01:14:20 ============================================================================ +01:14:20 + + +waiting on router queue for slot.... +01:14:31 ============================================================================ +01:14:31 Slot Id : <337> +01:14:31 Transaction Type : REQUEST +01:14:31 Received From : +01:14:31 ============================================================================ +01:14:31 FNo. Len. Field Value +01:14:31 ============================================================================ +01:14:31 [ 1] [ 4] [0800] +01:14:31 [ 7] [ 10] [0319061338] +01:14:31 [ 11] [ 6] [153376] +01:14:31 [ 70] [ 3] [301] +01:14:31 ============================================================================ +01:14:31 + + +waiting on router queue for slot.... +01:14:31 Sending to : +01:14:31 ============================================================================ +01:14:31 ============================================================================ +01:14:31 Slot Id : <337> +01:14:31 Transaction Type : RESPONSE +01:14:31 Received From : +01:14:31 ============================================================================ +01:14:31 FNo. Len. Field Value +01:14:31 ============================================================================ +01:14:31 [ 1] [ 4] [0810] +01:14:31 [ 7] [ 10] [0319061338] +01:14:31 [ 11] [ 6] [153376] +01:14:31 [ 39] [ 2] [00] +01:14:31 [ 70] [ 3] [301] +01:14:31 ============================================================================ +01:14:31 Calculate Source COMM Id = 2 +01:14:31 ============================================================================ +01:14:31 + + +waiting on router queue for slot.... +01:14:36 ============================================================================ +01:14:36 Slot Id : <335> +01:14:36 Transaction Type : REQUEST +01:14:36 Received From : +01:14:36 ============================================================================ +01:14:36 FNo. Len. Field Value +01:14:36 ============================================================================ +01:14:36 [ 1] [ 4] [0800] +01:14:36 [ 7] [ 10] [0320082623] +01:14:36 [ 11] [ 6] [012623] +01:14:36 [ 37] [ 12] [57901012623] +01:14:36 [ 70] [ 3] [301] +01:14:36 ============================================================================ +01:14:36 + + +waiting on router queue for slot.... +01:14:36 Sending to : +01:14:36 ============================================================================ +01:14:36 ============================================================================ +01:14:36 Slot Id : <335> +01:14:36 Transaction Type : RESPONSE +01:14:36 Received From : +01:14:36 ============================================================================ +01:14:36 FNo. Len. Field Value +01:14:36 ============================================================================ +01:14:36 [ 1] [ 4] [0810] +01:14:36 [ 7] [ 10] [0320082623] +01:14:36 [ 11] [ 6] [012623] +01:14:36 [ 37] [ 12] [579010126230] +01:14:36 [ 39] [ 2] [00] +01:14:36 [ 70] [ 3] [810] +01:14:36 ============================================================================ +01:14:36 Calculate Source COMM Id = 6 +01:14:36 ============================================================================ +01:14:36 + + +waiting on router queue for slot.... +01:14:42 ============================================================================ +01:14:42 Slot Id : <342> +01:14:42 Transaction Type : REQUEST +01:14:42 Received From : +01:14:42 ============================================================================ +01:14:42 FNo. Len. Field Value +01:14:42 ============================================================================ +01:14:42 [ 1] [ 4] [0800] +01:14:42 [ 7] [ 10] [0319061349] +01:14:42 [ 11] [ 6] [153377] +01:14:42 [ 70] [ 3] [301] +01:14:42 ============================================================================ +01:14:42 + + +waiting on router queue for slot.... +01:14:42 Sending to : +01:14:42 ============================================================================ +01:14:42 ============================================================================ +01:14:42 Slot Id : <342> +01:14:42 Transaction Type : RESPONSE +01:14:42 Received From : +01:14:42 ============================================================================ +01:14:42 FNo. Len. Field Value +01:14:42 ============================================================================ +01:14:42 [ 1] [ 4] [0810] +01:14:42 [ 7] [ 10] [0319061349] +01:14:42 [ 11] [ 6] [153377] +01:14:42 [ 39] [ 2] [00] +01:14:42 [ 70] [ 3] [301] +01:14:42 ============================================================================ +01:14:42 Calculate Source COMM Id = 2 +01:14:42 ============================================================================ +01:14:42 + + +waiting on router queue for slot.... +01:14:52 ============================================================================ +01:14:52 Slot Id : <320> +01:14:52 Transaction Type : REQUEST +01:14:52 Received From : +01:14:52 ============================================================================ +01:14:52 FNo. Len. Field Value +01:14:52 ============================================================================ +01:14:52 [ 1] [ 4] [0800] +01:14:52 [ 7] [ 10] [0319061359] +01:14:52 [ 11] [ 6] [153378] +01:14:52 [ 70] [ 3] [301] +01:14:52 ============================================================================ +01:14:52 + + +waiting on router queue for slot.... +01:14:52 Sending to : +01:14:52 ============================================================================ +01:14:52 ============================================================================ +01:14:52 Slot Id : <320> +01:14:52 Transaction Type : RESPONSE +01:14:52 Received From : +01:14:52 ============================================================================ +01:14:52 FNo. Len. Field Value +01:14:52 ============================================================================ +01:14:52 [ 1] [ 4] [0810] +01:14:52 [ 7] [ 10] [0319061359] +01:14:52 [ 11] [ 6] [153378] +01:14:52 [ 39] [ 2] [00] +01:14:52 [ 70] [ 3] [301] +01:14:52 ============================================================================ +01:14:52 Calculate Source COMM Id = 2 +01:14:52 ============================================================================ +01:14:52 + + +waiting on router queue for slot.... +01:14:56 ============================================================================ +01:14:56 Slot Id : <341> +01:14:56 Transaction Type : REQUEST +01:14:56 Received From : +01:14:56 ============================================================================ +01:14:56 FNo. Len. Field Value +01:14:56 ============================================================================ +01:14:56 [ 1] [ 4] [0800] +01:14:56 [ 7] [ 10] [0319182242] +01:14:56 [ 11] [ 6] [023188] +01:14:56 [ 37] [ 12] [57901023188] +01:14:56 [ 70] [ 3] [301] +01:14:56 ============================================================================ +01:14:56 + + +waiting on router queue for slot.... +01:14:56 Sending to : +01:14:56 ============================================================================ +01:14:56 ============================================================================ +01:14:56 Slot Id : <341> +01:14:56 Transaction Type : RESPONSE +01:14:56 Received From : +01:14:56 ============================================================================ +01:14:56 FNo. Len. Field Value +01:14:56 ============================================================================ +01:14:56 [ 1] [ 4] [0810] +01:14:56 [ 7] [ 10] [0319182242] +01:14:56 [ 11] [ 6] [023188] +01:14:56 [ 37] [ 12] [579010231880] +01:14:56 [ 39] [ 2] [00] +01:14:56 [ 70] [ 3] [810] +01:14:56 ============================================================================ +01:14:56 Calculate Source COMM Id = 1 +01:14:56 ============================================================================ +01:14:56 + + +waiting on router queue for slot.... +01:14:59 ============================================================================ +01:14:59 Slot Id : <268> +01:14:59 Transaction Type : REQUEST +01:14:59 Received From : +01:14:59 ============================================================================ +01:14:59 FNo. Len. Field Value +01:14:59 ============================================================================ +01:14:59 [ 1] [ 4] [0800] +01:14:59 [ 2] [ 5] [02531] +01:14:59 [ 3] [ 6] [579018] +01:14:59 [ 7] [ 10] [0319181459] +01:14:59 [ 11] [ 6] [806484] +01:14:59 [ 15] [ 10] [0319181459] +01:14:59 [ 37] [ 11] [57901806484] +01:14:59 [ 70] [ 3] [001] +01:14:59 ============================================================================ +01:14:59 + + +waiting on router queue for slot.... +01:14:59 ============================================================================ +01:14:59 Slot Id : <268> +01:14:59 Transaction Type : RESPONSE +01:14:59 Received From : +01:14:59 ============================================================================ +01:14:59 FNo. Len. Field Value +01:14:59 ============================================================================ +01:14:59 [ 1] [ 4] [0810] +01:14:59 [ 7] [ 10] [0319181459] +01:14:59 [ 11] [ 6] [806484] +01:14:59 [ 15] [ 4] [0319] +01:14:59 [ 37] [ 12] [57901806484] +01:14:59 [ 39] [ 2] [00] +01:14:59 [ 70] [ 3] [001] +01:14:59 ============================================================================ +01:14:59 Sending to : +01:14:59 ============================================================================ +01:14:59 + + +waiting on router queue for slot.... +01:15:03 ============================================================================ +01:15:03 Slot Id : <344> +01:15:03 Transaction Type : REQUEST +01:15:03 Received From : +01:15:03 ============================================================================ +01:15:03 FNo. Len. Field Value +01:15:03 ============================================================================ +01:15:03 [ 1] [ 4] [0800] +01:15:03 [ 7] [ 10] [0319061410] +01:15:03 [ 11] [ 6] [153379] +01:15:03 [ 70] [ 3] [301] +01:15:03 ============================================================================ +01:15:03 + + +waiting on router queue for slot.... +01:15:03 Sending to : +01:15:03 ============================================================================ +01:15:03 ============================================================================ +01:15:03 Slot Id : <344> +01:15:03 Transaction Type : RESPONSE +01:15:03 Received From : +01:15:03 ============================================================================ +01:15:03 FNo. Len. Field Value +01:15:03 ============================================================================ +01:15:03 [ 1] [ 4] [0810] +01:15:03 [ 7] [ 10] [0319061410] +01:15:03 [ 11] [ 6] [153379] +01:15:03 [ 39] [ 2] [00] +01:15:03 [ 70] [ 3] [301] +01:15:03 ============================================================================ +01:15:03 Calculate Source COMM Id = 2 +01:15:03 ============================================================================ +01:15:03 + + +waiting on router queue for slot.... +01:15:14 ============================================================================ +01:15:14 Slot Id : <345> +01:15:14 Transaction Type : REQUEST +01:15:14 Received From : +01:15:14 ============================================================================ +01:15:14 FNo. Len. Field Value +01:15:14 ============================================================================ +01:15:14 [ 1] [ 4] [0800] +01:15:14 [ 7] [ 10] [0319061421] +01:15:14 [ 11] [ 6] [153380] +01:15:14 [ 70] [ 3] [301] +01:15:14 ============================================================================ +01:15:14 + + +waiting on router queue for slot.... +01:15:14 Sending to : +01:15:14 ============================================================================ +01:15:14 ============================================================================ +01:15:14 Slot Id : <345> +01:15:14 Transaction Type : RESPONSE +01:15:14 Received From : +01:15:14 ============================================================================ +01:15:14 FNo. Len. Field Value +01:15:14 ============================================================================ +01:15:14 [ 1] [ 4] [0810] +01:15:14 [ 7] [ 10] [0319061421] +01:15:14 [ 11] [ 6] [153380] +01:15:14 [ 39] [ 2] [00] +01:15:14 [ 70] [ 3] [301] +01:15:14 ============================================================================ +01:15:14 Calculate Source COMM Id = 2 +01:15:14 ============================================================================ +01:15:14 + + +waiting on router queue for slot.... +01:15:24 ============================================================================ +01:15:24 Slot Id : <329> +01:15:24 Transaction Type : REQUEST +01:15:24 Received From : +01:15:24 ============================================================================ +01:15:24 FNo. Len. Field Value +01:15:24 ============================================================================ +01:15:24 [ 1] [ 4] [0800] +01:15:24 [ 7] [ 10] [0319061432] +01:15:24 [ 11] [ 6] [153381] +01:15:24 [ 70] [ 3] [301] +01:15:24 ============================================================================ +01:15:24 + + +waiting on router queue for slot.... +01:15:24 Sending to : +01:15:24 ============================================================================ +01:15:24 ============================================================================ +01:15:24 Slot Id : <329> +01:15:24 Transaction Type : RESPONSE +01:15:24 Received From : +01:15:24 ============================================================================ +01:15:24 FNo. Len. Field Value +01:15:24 ============================================================================ +01:15:24 [ 1] [ 4] [0810] +01:15:24 [ 7] [ 10] [0319061432] +01:15:24 [ 11] [ 6] [153381] +01:15:24 [ 39] [ 2] [00] +01:15:24 [ 70] [ 3] [301] +01:15:24 ============================================================================ +01:15:24 Calculate Source COMM Id = 2 +01:15:24 ============================================================================ +01:15:24 + + +waiting on router queue for slot.... +01:15:35 ============================================================================ +01:15:35 Slot Id : <339> +01:15:35 Transaction Type : REQUEST +01:15:35 Received From : +01:15:35 ============================================================================ +01:15:35 FNo. Len. Field Value +01:15:35 ============================================================================ +01:15:35 [ 1] [ 4] [0800] +01:15:35 [ 7] [ 10] [0319061442] +01:15:35 [ 11] [ 6] [153382] +01:15:35 [ 70] [ 3] [301] +01:15:35 ============================================================================ +01:15:35 + + +waiting on router queue for slot.... +01:15:35 Sending to : +01:15:35 ============================================================================ +01:15:35 ============================================================================ +01:15:35 Slot Id : <339> +01:15:35 Transaction Type : RESPONSE +01:15:35 Received From : +01:15:35 ============================================================================ +01:15:35 FNo. Len. Field Value +01:15:35 ============================================================================ +01:15:35 [ 1] [ 4] [0810] +01:15:35 [ 7] [ 10] [0319061442] +01:15:35 [ 11] [ 6] [153382] +01:15:35 [ 39] [ 2] [00] +01:15:35 [ 70] [ 3] [301] +01:15:35 ============================================================================ +01:15:35 Calculate Source COMM Id = 2 +01:15:35 ============================================================================ +01:15:35 + + +waiting on router queue for slot.... +01:15:41 ============================================================================ +01:15:41 Slot Id : <323> +01:15:41 Transaction Type : REQUEST +01:15:41 Received From : +01:15:41 ============================================================================ +01:15:41 FNo. Len. Field Value +01:15:41 ============================================================================ +01:15:41 [ 1] [ 4] [0800] +01:15:41 [ 7] [ 10] [0320082728] +01:15:41 [ 11] [ 6] [012728] +01:15:41 [ 37] [ 12] [57901012728] +01:15:41 [ 70] [ 3] [301] +01:15:41 ============================================================================ +01:15:41 + + +waiting on router queue for slot.... +01:15:41 Sending to : +01:15:41 ============================================================================ +01:15:41 ============================================================================ +01:15:41 Slot Id : <323> +01:15:41 Transaction Type : RESPONSE +01:15:41 Received From : +01:15:41 ============================================================================ +01:15:41 FNo. Len. Field Value +01:15:41 ============================================================================ +01:15:41 [ 1] [ 4] [0810] +01:15:41 [ 7] [ 10] [0320082728] +01:15:41 [ 11] [ 6] [012728] +01:15:41 [ 37] [ 12] [579010127280] +01:15:41 [ 39] [ 2] [00] +01:15:41 [ 70] [ 3] [810] +01:15:41 ============================================================================ +01:15:41 Calculate Source COMM Id = 6 +01:15:41 ============================================================================ +01:15:41 + + +waiting on router queue for slot.... +01:15:50 ============================================================================ +01:15:50 Slot Id : <309> +01:15:50 Transaction Type : REQUEST +01:15:50 Received From : +01:15:50 ============================================================================ +01:15:50 FNo. Len. Field Value +01:15:50 ============================================================================ +01:15:50 [ 1] [ 4] [0800] +01:15:50 [ 7] [ 10] [0319061457] +01:15:50 [ 11] [ 6] [153383] +01:15:50 [ 70] [ 3] [301] +01:15:50 ============================================================================ +01:15:50 + + +waiting on router queue for slot.... +01:15:50 Sending to : +01:15:50 ============================================================================ +01:15:50 ============================================================================ +01:15:50 Slot Id : <309> +01:15:50 Transaction Type : RESPONSE +01:15:50 Received From : +01:15:50 ============================================================================ +01:15:50 FNo. Len. Field Value +01:15:50 ============================================================================ +01:15:50 [ 1] [ 4] [0810] +01:15:50 [ 7] [ 10] [0319061457] +01:15:50 [ 11] [ 6] [153383] +01:15:50 [ 39] [ 2] [00] +01:15:50 [ 70] [ 3] [301] +01:15:50 ============================================================================ +01:15:50 Calculate Source COMM Id = 2 +01:15:50 ============================================================================ +01:15:50 + + +waiting on router queue for slot.... +01:16:00 ============================================================================ +01:16:00 Slot Id : <348> +01:16:00 Transaction Type : REQUEST +01:16:00 Received From : +01:16:00 ============================================================================ +01:16:00 FNo. Len. Field Value +01:16:00 ============================================================================ +01:16:00 [ 1] [ 4] [0800] +01:16:00 [ 7] [ 10] [0319061508] +01:16:00 [ 11] [ 6] [153384] +01:16:00 [ 70] [ 3] [301] +01:16:00 ============================================================================ +01:16:00 + + +waiting on router queue for slot.... +01:16:00 Sending to : +01:16:00 ============================================================================ +01:16:00 ============================================================================ +01:16:00 Slot Id : <348> +01:16:00 Transaction Type : RESPONSE +01:16:00 Received From : +01:16:00 ============================================================================ +01:16:00 FNo. Len. Field Value +01:16:00 ============================================================================ +01:16:00 [ 1] [ 4] [0810] +01:16:00 [ 7] [ 10] [0319061508] +01:16:00 [ 11] [ 6] [153384] +01:16:00 [ 39] [ 2] [00] +01:16:00 [ 70] [ 3] [301] +01:16:00 ============================================================================ +01:16:00 Calculate Source COMM Id = 2 +01:16:00 ============================================================================ +01:16:00 + + +waiting on router queue for slot.... +01:16:01 ============================================================================ +01:16:01 Slot Id : <352> +01:16:01 Transaction Type : REQUEST +01:16:01 Received From : +01:16:01 ============================================================================ +01:16:01 FNo. Len. Field Value +01:16:01 ============================================================================ +01:16:01 [ 1] [ 4] [0800] +01:16:01 [ 2] [ 5] [02531] +01:16:01 [ 3] [ 6] [579018] +01:16:01 [ 7] [ 10] [0319181601] +01:16:01 [ 11] [ 6] [806485] +01:16:01 [ 15] [ 10] [0319181601] +01:16:01 [ 37] [ 11] [57901806485] +01:16:01 [ 70] [ 3] [001] +01:16:01 ============================================================================ +01:16:01 + + +waiting on router queue for slot.... +01:16:01 ============================================================================ +01:16:01 Slot Id : <352> +01:16:01 Transaction Type : RESPONSE +01:16:01 Received From : +01:16:01 ============================================================================ +01:16:01 FNo. Len. Field Value +01:16:01 ============================================================================ +01:16:01 [ 1] [ 4] [0810] +01:16:01 [ 7] [ 10] [0319181601] +01:16:01 [ 11] [ 6] [806485] +01:16:01 [ 15] [ 4] [0319] +01:16:01 [ 37] [ 12] [57901806485] +01:16:01 [ 39] [ 2] [00] +01:16:01 [ 70] [ 3] [001] +01:16:01 ============================================================================ +01:16:01 Sending to : +01:16:01 ============================================================================ +01:16:01 + + +waiting on router queue for slot.... +01:16:11 ============================================================================ +01:16:11 Slot Id : <328> +01:16:11 Transaction Type : REQUEST +01:16:11 Received From : +01:16:11 ============================================================================ +01:16:11 FNo. Len. Field Value +01:16:11 ============================================================================ +01:16:11 [ 1] [ 4] [0800] +01:16:11 [ 7] [ 10] [0319061519] +01:16:11 [ 11] [ 6] [153385] +01:16:11 [ 70] [ 3] [301] +01:16:11 ============================================================================ +01:16:11 + + +waiting on router queue for slot.... +01:16:11 Sending to : +01:16:11 ============================================================================ +01:16:11 ============================================================================ +01:16:11 Slot Id : <328> +01:16:11 Transaction Type : RESPONSE +01:16:11 Received From : +01:16:11 ============================================================================ +01:16:11 FNo. Len. Field Value +01:16:11 ============================================================================ +01:16:11 [ 1] [ 4] [0810] +01:16:11 [ 7] [ 10] [0319061519] +01:16:11 [ 11] [ 6] [153385] +01:16:11 [ 39] [ 2] [00] +01:16:11 [ 70] [ 3] [301] +01:16:11 ============================================================================ +01:16:11 Calculate Source COMM Id = 2 +01:16:11 ============================================================================ +01:16:11 + + +waiting on router queue for slot.... +01:16:21 ============================================================================ +01:16:21 Slot Id : <350> +01:16:21 Transaction Type : REQUEST +01:16:21 Received From : +01:16:21 ============================================================================ +01:16:21 FNo. Len. Field Value +01:16:21 ============================================================================ +01:16:21 [ 1] [ 4] [0800] +01:16:21 [ 7] [ 10] [0319181412] +01:16:21 [ 11] [ 6] [040069] +01:16:21 [ 37] [ 12] [57901040069] +01:16:21 [ 70] [ 3] [301] +01:16:21 ============================================================================ +01:16:21 + + +waiting on router queue for slot.... +01:16:21 Sending to : +01:16:21 ============================================================================ +01:16:21 ============================================================================ +01:16:21 Slot Id : <350> +01:16:21 Transaction Type : RESPONSE +01:16:21 Received From : +01:16:21 ============================================================================ +01:16:21 FNo. Len. Field Value +01:16:21 ============================================================================ +01:16:21 [ 1] [ 4] [0810] +01:16:21 [ 7] [ 10] [0319181412] +01:16:21 [ 11] [ 6] [040069] +01:16:21 [ 37] [ 12] [579010400690] +01:16:21 [ 39] [ 2] [00] +01:16:21 [ 70] [ 3] [810] +01:16:21 ============================================================================ +01:16:21 Calculate Source COMM Id = 4 +01:16:21 ============================================================================ +01:16:21 + + +waiting on router queue for slot.... +01:16:22 ============================================================================ +01:16:22 Slot Id : <347> +01:16:22 Transaction Type : REQUEST +01:16:22 Received From : +01:16:22 ============================================================================ +01:16:22 FNo. Len. Field Value +01:16:22 ============================================================================ +01:16:22 [ 1] [ 4] [0800] +01:16:22 [ 7] [ 10] [0319061529] +01:16:22 [ 11] [ 6] [153386] +01:16:22 [ 70] [ 3] [301] +01:16:22 ============================================================================ +01:16:22 + + +waiting on router queue for slot.... +01:16:22 Sending to : +01:16:22 ============================================================================ +01:16:22 ============================================================================ +01:16:22 Slot Id : <347> +01:16:22 Transaction Type : RESPONSE +01:16:22 Received From : +01:16:22 ============================================================================ +01:16:22 FNo. Len. Field Value +01:16:22 ============================================================================ +01:16:22 [ 1] [ 4] [0810] +01:16:22 [ 7] [ 10] [0319061529] +01:16:22 [ 11] [ 6] [153386] +01:16:22 [ 39] [ 2] [00] +01:16:22 [ 70] [ 3] [301] +01:16:22 ============================================================================ +01:16:22 Calculate Source COMM Id = 2 +01:16:22 ============================================================================ +01:16:22 + + +waiting on router queue for slot.... +01:16:33 ============================================================================ +01:16:33 Slot Id : <319> +01:16:33 Transaction Type : REQUEST +01:16:33 Received From : +01:16:33 ============================================================================ +01:16:33 FNo. Len. Field Value +01:16:33 ============================================================================ +01:16:33 [ 1] [ 4] [0800] +01:16:33 [ 7] [ 10] [0319061540] +01:16:33 [ 11] [ 6] [153387] +01:16:33 [ 70] [ 3] [301] +01:16:33 ============================================================================ +01:16:33 + + +waiting on router queue for slot.... +01:16:33 Sending to : +01:16:33 ============================================================================ +01:16:33 ============================================================================ +01:16:33 Slot Id : <319> +01:16:33 Transaction Type : RESPONSE +01:16:33 Received From : +01:16:33 ============================================================================ +01:16:33 FNo. Len. Field Value +01:16:33 ============================================================================ +01:16:33 [ 1] [ 4] [0810] +01:16:33 [ 7] [ 10] [0319061540] +01:16:33 [ 11] [ 6] [153387] +01:16:33 [ 39] [ 2] [00] +01:16:33 [ 70] [ 3] [301] +01:16:33 ============================================================================ +01:16:33 Calculate Source COMM Id = 2 +01:16:33 ============================================================================ +01:16:33 + + +waiting on router queue for slot.... +01:16:46 ============================================================================ +01:16:46 Slot Id : <356> +01:16:46 Transaction Type : REQUEST +01:16:46 Received From : +01:16:46 ============================================================================ +01:16:46 FNo. Len. Field Value +01:16:46 ============================================================================ +01:16:46 [ 1] [ 4] [0800] +01:16:46 [ 7] [ 10] [0319061553] +01:16:46 [ 11] [ 6] [153388] +01:16:46 [ 70] [ 3] [301] +01:16:46 ============================================================================ +01:16:46 + + +waiting on router queue for slot.... +01:16:46 Sending to : +01:16:46 ============================================================================ +01:16:46 ============================================================================ +01:16:46 Slot Id : <356> +01:16:46 Transaction Type : RESPONSE +01:16:46 Received From : +01:16:46 ============================================================================ +01:16:46 FNo. Len. Field Value +01:16:46 ============================================================================ +01:16:46 [ 1] [ 4] [0810] +01:16:46 [ 7] [ 10] [0319061553] +01:16:46 [ 11] [ 6] [153388] +01:16:46 [ 39] [ 2] [00] +01:16:46 [ 70] [ 3] [301] +01:16:46 ============================================================================ +01:16:46 Calculate Source COMM Id = 2 +01:16:46 ============================================================================ +01:16:46 + + +waiting on router queue for slot.... +01:16:46 ============================================================================ +01:16:46 Slot Id : <332> +01:16:46 Transaction Type : REQUEST +01:16:46 Received From : +01:16:46 ============================================================================ +01:16:46 FNo. Len. Field Value +01:16:46 ============================================================================ +01:16:46 [ 1] [ 4] [0800] +01:16:46 [ 7] [ 10] [0320082833] +01:16:46 [ 11] [ 6] [012833] +01:16:46 [ 37] [ 12] [57901012833] +01:16:46 [ 70] [ 3] [301] +01:16:46 ============================================================================ +01:16:46 + + +waiting on router queue for slot.... +01:16:46 Sending to : +01:16:46 ============================================================================ +01:16:46 ============================================================================ +01:16:46 Slot Id : <332> +01:16:46 Transaction Type : RESPONSE +01:16:46 Received From : +01:16:46 ============================================================================ +01:16:46 FNo. Len. Field Value +01:16:46 ============================================================================ +01:16:46 [ 1] [ 4] [0810] +01:16:46 [ 7] [ 10] [0320082833] +01:16:46 [ 11] [ 6] [012833] +01:16:46 [ 37] [ 12] [579010128330] +01:16:46 [ 39] [ 2] [00] +01:16:46 [ 70] [ 3] [810] +01:16:46 ============================================================================ +01:16:46 Calculate Source COMM Id = 6 +01:16:46 ============================================================================ +01:16:46 + + +waiting on router queue for slot.... +01:17:02 ============================================================================ +01:17:02 Slot Id : <346> +01:17:02 Transaction Type : REQUEST +01:17:02 Received From : +01:17:02 ============================================================================ +01:17:02 FNo. Len. Field Value +01:17:02 ============================================================================ +01:17:02 [ 1] [ 4] [0800] +01:17:02 [ 7] [ 10] [0319061609] +01:17:02 [ 11] [ 6] [153389] +01:17:02 [ 70] [ 3] [301] +01:17:02 ============================================================================ +01:17:02 + + +waiting on router queue for slot.... +01:17:02 Sending to : +01:17:02 ============================================================================ +01:17:02 ============================================================================ +01:17:02 Slot Id : <346> +01:17:02 Transaction Type : RESPONSE +01:17:02 Received From : +01:17:02 ============================================================================ +01:17:02 FNo. Len. Field Value +01:17:02 ============================================================================ +01:17:02 [ 1] [ 4] [0810] +01:17:02 [ 7] [ 10] [0319061609] +01:17:02 [ 11] [ 6] [153389] +01:17:02 [ 39] [ 2] [00] +01:17:02 [ 70] [ 3] [301] +01:17:02 ============================================================================ +01:17:02 Calculate Source COMM Id = 2 +01:17:02 ============================================================================ +01:17:02 + + +waiting on router queue for slot.... +01:17:03 ============================================================================ +01:17:03 Slot Id : <330> +01:17:03 Transaction Type : REQUEST +01:17:03 Received From : +01:17:03 ============================================================================ +01:17:03 FNo. Len. Field Value +01:17:03 ============================================================================ +01:17:03 [ 1] [ 4] [0800] +01:17:03 [ 2] [ 5] [02531] +01:17:03 [ 3] [ 6] [579018] +01:17:03 [ 7] [ 10] [0319181703] +01:17:03 [ 11] [ 6] [806486] +01:17:03 [ 15] [ 10] [0319181703] +01:17:03 [ 37] [ 11] [57901806486] +01:17:03 [ 70] [ 3] [001] +01:17:03 ============================================================================ +01:17:03 + + +waiting on router queue for slot.... +01:17:03 ============================================================================ +01:17:03 Slot Id : <330> +01:17:03 Transaction Type : RESPONSE +01:17:03 Received From : +01:17:03 ============================================================================ +01:17:03 FNo. Len. Field Value +01:17:03 ============================================================================ +01:17:03 [ 1] [ 4] [0810] +01:17:03 [ 7] [ 10] [0319181703] +01:17:03 [ 11] [ 6] [806486] +01:17:03 [ 15] [ 4] [0319] +01:17:03 [ 37] [ 12] [57901806486] +01:17:03 [ 39] [ 2] [00] +01:17:03 [ 70] [ 3] [001] +01:17:03 ============================================================================ +01:17:03 Sending to : +01:17:03 ============================================================================ +01:17:03 + + +waiting on router queue for slot.... +01:17:18 ============================================================================ +01:17:18 Slot Id : <357> +01:17:18 Transaction Type : REQUEST +01:17:18 Received From : +01:17:18 ============================================================================ +01:17:18 FNo. Len. Field Value +01:17:18 ============================================================================ +01:17:18 [ 1] [ 4] [0800] +01:17:18 [ 7] [ 10] [0319061626] +01:17:18 [ 11] [ 6] [153390] +01:17:18 [ 70] [ 3] [301] +01:17:18 ============================================================================ +01:17:18 + + +waiting on router queue for slot.... +01:17:18 Sending to : +01:17:18 ============================================================================ +01:17:18 ============================================================================ +01:17:18 Slot Id : <357> +01:17:18 Transaction Type : RESPONSE +01:17:18 Received From : +01:17:18 ============================================================================ +01:17:18 FNo. Len. Field Value +01:17:18 ============================================================================ +01:17:18 [ 1] [ 4] [0810] +01:17:18 [ 7] [ 10] [0319061626] +01:17:18 [ 11] [ 6] [153390] +01:17:18 [ 39] [ 2] [00] +01:17:18 [ 70] [ 3] [301] +01:17:18 ============================================================================ +01:17:18 Calculate Source COMM Id = 2 +01:17:18 ============================================================================ +01:17:18 + + +waiting on router queue for slot.... +01:17:29 ============================================================================ +01:17:29 Slot Id : <366> +01:17:29 Transaction Type : REQUEST +01:17:29 Received From : +01:17:29 ============================================================================ +01:17:29 FNo. Len. Field Value +01:17:29 ============================================================================ +01:17:29 [ 1] [ 4] [0800] +01:17:29 [ 7] [ 10] [0319061636] +01:17:29 [ 11] [ 6] [153391] +01:17:29 [ 70] [ 3] [301] +01:17:29 ============================================================================ +01:17:29 + + +waiting on router queue for slot.... +01:17:29 Sending to : +01:17:29 ============================================================================ +01:17:29 ============================================================================ +01:17:29 Slot Id : <366> +01:17:29 Transaction Type : RESPONSE +01:17:29 Received From : +01:17:29 ============================================================================ +01:17:29 FNo. Len. Field Value +01:17:29 ============================================================================ +01:17:29 [ 1] [ 4] [0810] +01:17:29 [ 7] [ 10] [0319061636] +01:17:29 [ 11] [ 6] [153391] +01:17:29 [ 39] [ 2] [00] +01:17:29 [ 70] [ 3] [301] +01:17:29 ============================================================================ +01:17:29 Calculate Source COMM Id = 2 +01:17:29 ============================================================================ +01:17:29 + + +waiting on router queue for slot.... +01:17:40 ============================================================================ +01:17:40 Slot Id : <343> +01:17:40 Transaction Type : REQUEST +01:17:40 Received From : +01:17:40 ============================================================================ +01:17:40 FNo. Len. Field Value +01:17:40 ============================================================================ +01:17:40 [ 1] [ 4] [0800] +01:17:40 [ 7] [ 10] [0319061647] +01:17:40 [ 11] [ 6] [153392] +01:17:40 [ 70] [ 3] [301] +01:17:40 ============================================================================ +01:17:40 + + +waiting on router queue for slot.... +01:17:40 Sending to : +01:17:40 ============================================================================ +01:17:40 ============================================================================ +01:17:40 Slot Id : <343> +01:17:40 Transaction Type : RESPONSE +01:17:40 Received From : +01:17:40 ============================================================================ +01:17:40 FNo. Len. Field Value +01:17:40 ============================================================================ +01:17:40 [ 1] [ 4] [0810] +01:17:40 [ 7] [ 10] [0319061647] +01:17:40 [ 11] [ 6] [153392] +01:17:40 [ 39] [ 2] [00] +01:17:40 [ 70] [ 3] [301] +01:17:40 ============================================================================ +01:17:40 Calculate Source COMM Id = 2 +01:17:40 ============================================================================ +01:17:40 + + +waiting on router queue for slot.... +01:17:51 ============================================================================ +01:17:51 Slot Id : <365> +01:17:51 Transaction Type : REQUEST +01:17:51 Received From : +01:17:51 ============================================================================ +01:17:51 FNo. Len. Field Value +01:17:51 ============================================================================ +01:17:51 [ 1] [ 4] [0800] +01:17:51 [ 7] [ 10] [0320082938] +01:17:51 [ 11] [ 6] [012938] +01:17:51 [ 37] [ 12] [57901012938] +01:17:51 [ 70] [ 3] [301] +01:17:51 ============================================================================ +01:17:51 + + +waiting on router queue for slot.... +01:17:51 Sending to : +01:17:51 ============================================================================ +01:17:51 ============================================================================ +01:17:51 Slot Id : <365> +01:17:51 Transaction Type : RESPONSE +01:17:51 Received From : +01:17:51 ============================================================================ +01:17:51 FNo. Len. Field Value +01:17:51 ============================================================================ +01:17:51 [ 1] [ 4] [0810] +01:17:51 [ 7] [ 10] [0320082938] +01:17:51 [ 11] [ 6] [012938] +01:17:51 [ 37] [ 12] [579010129380] +01:17:51 [ 39] [ 2] [00] +01:17:51 [ 70] [ 3] [810] +01:17:51 ============================================================================ +01:17:51 Calculate Source COMM Id = 6 +01:17:51 ============================================================================ +01:17:51 + + +waiting on router queue for slot.... +01:17:55 ============================================================================ +01:17:55 Slot Id : <313> +01:17:55 Transaction Type : REQUEST +01:17:55 Received From : +01:17:55 ============================================================================ +01:17:55 FNo. Len. Field Value +01:17:55 ============================================================================ +01:17:55 [ 1] [ 4] [0800] +01:17:55 [ 7] [ 10] [0319061702] +01:17:55 [ 11] [ 6] [153393] +01:17:55 [ 70] [ 3] [301] +01:17:55 ============================================================================ +01:17:55 + + +waiting on router queue for slot.... +01:17:55 Sending to : +01:17:55 ============================================================================ +01:17:55 ============================================================================ +01:17:55 Slot Id : <313> +01:17:55 Transaction Type : RESPONSE +01:17:55 Received From : +01:17:55 ============================================================================ +01:17:55 FNo. Len. Field Value +01:17:55 ============================================================================ +01:17:55 [ 1] [ 4] [0810] +01:17:55 [ 7] [ 10] [0319061702] +01:17:55 [ 11] [ 6] [153393] +01:17:55 [ 39] [ 2] [00] +01:17:55 [ 70] [ 3] [301] +01:17:55 ============================================================================ +01:17:55 Calculate Source COMM Id = 2 +01:17:55 ============================================================================ +01:17:55 + + +waiting on router queue for slot.... +01:18:05 ============================================================================ +01:18:05 Slot Id : <371> +01:18:05 Transaction Type : REQUEST +01:18:05 Received From : +01:18:05 ============================================================================ +01:18:05 FNo. Len. Field Value +01:18:05 ============================================================================ +01:18:05 [ 1] [ 4] [0800] +01:18:05 [ 2] [ 5] [02531] +01:18:05 [ 3] [ 6] [579018] +01:18:05 [ 7] [ 10] [0319181805] +01:18:05 [ 11] [ 6] [806487] +01:18:05 [ 15] [ 10] [0319181805] +01:18:05 [ 37] [ 11] [57901806487] +01:18:05 [ 70] [ 3] [001] +01:18:05 ============================================================================ +01:18:05 + + +waiting on router queue for slot.... +01:18:05 ============================================================================ +01:18:05 Slot Id : <371> +01:18:05 Transaction Type : RESPONSE +01:18:05 Received From : +01:18:05 ============================================================================ +01:18:05 FNo. Len. Field Value +01:18:05 ============================================================================ +01:18:05 [ 1] [ 4] [0810] +01:18:05 [ 7] [ 10] [0319181805] +01:18:05 [ 11] [ 6] [806487] +01:18:05 [ 15] [ 4] [0319] +01:18:05 [ 37] [ 12] [57901806487] +01:18:05 [ 39] [ 2] [00] +01:18:05 [ 70] [ 3] [001] +01:18:05 ============================================================================ +01:18:05 Sending to : +01:18:05 ============================================================================ +01:18:05 + + +waiting on router queue for slot.... +01:18:05 ============================================================================ +01:18:05 Slot Id : <340> +01:18:05 Transaction Type : REQUEST +01:18:05 Received From : +01:18:05 ============================================================================ +01:18:05 FNo. Len. Field Value +01:18:05 ============================================================================ +01:18:05 [ 1] [ 4] [0800] +01:18:05 [ 7] [ 10] [0319061712] +01:18:05 [ 11] [ 6] [153394] +01:18:05 [ 70] [ 3] [301] +01:18:05 ============================================================================ +01:18:05 + + +waiting on router queue for slot.... +01:18:05 Sending to : +01:18:05 ============================================================================ +01:18:05 ============================================================================ +01:18:05 Slot Id : <340> +01:18:05 Transaction Type : RESPONSE +01:18:05 Received From : +01:18:05 ============================================================================ +01:18:05 FNo. Len. Field Value +01:18:05 ============================================================================ +01:18:05 [ 1] [ 4] [0810] +01:18:05 [ 7] [ 10] [0319061712] +01:18:05 [ 11] [ 6] [153394] +01:18:05 [ 39] [ 2] [00] +01:18:05 [ 70] [ 3] [301] +01:18:05 ============================================================================ +01:18:05 Calculate Source COMM Id = 2 +01:18:05 ============================================================================ +01:18:05 + + +waiting on router queue for slot.... +01:18:16 ============================================================================ +01:18:16 Slot Id : <324> +01:18:16 Transaction Type : REQUEST +01:18:16 Received From : +01:18:16 ============================================================================ +01:18:16 FNo. Len. Field Value +01:18:16 ============================================================================ +01:18:16 [ 1] [ 4] [0800] +01:18:16 [ 7] [ 10] [0319061723] +01:18:16 [ 11] [ 6] [153395] +01:18:16 [ 70] [ 3] [301] +01:18:16 ============================================================================ +01:18:16 + + +waiting on router queue for slot.... +01:18:16 Sending to : +01:18:16 ============================================================================ +01:18:16 ============================================================================ +01:18:16 Slot Id : <324> +01:18:16 Transaction Type : RESPONSE +01:18:16 Received From : +01:18:16 ============================================================================ +01:18:16 FNo. Len. Field Value +01:18:16 ============================================================================ +01:18:16 [ 1] [ 4] [0810] +01:18:16 [ 7] [ 10] [0319061723] +01:18:16 [ 11] [ 6] [153395] +01:18:16 [ 39] [ 2] [00] +01:18:16 [ 70] [ 3] [301] +01:18:16 ============================================================================ +01:18:16 Calculate Source COMM Id = 2 +01:18:16 ============================================================================ +01:18:16 + + +waiting on router queue for slot.... +01:18:31 ============================================================================ +01:18:31 Slot Id : <378> +01:18:31 Transaction Type : REQUEST +01:18:31 Received From : +01:18:31 ============================================================================ +01:18:31 FNo. Len. Field Value +01:18:31 ============================================================================ +01:18:31 [ 1] [ 4] [0800] +01:18:31 [ 7] [ 10] [0319061738] +01:18:31 [ 11] [ 6] [153396] +01:18:31 [ 70] [ 3] [301] +01:18:31 ============================================================================ +01:18:31 + + +waiting on router queue for slot.... +01:18:31 Sending to : +01:18:31 ============================================================================ +01:18:31 ============================================================================ +01:18:31 Slot Id : <378> +01:18:31 Transaction Type : RESPONSE +01:18:31 Received From : +01:18:31 ============================================================================ +01:18:31 FNo. Len. Field Value +01:18:31 ============================================================================ +01:18:31 [ 1] [ 4] [0810] +01:18:31 [ 7] [ 10] [0319061738] +01:18:31 [ 11] [ 6] [153396] +01:18:31 [ 39] [ 2] [00] +01:18:31 [ 70] [ 3] [301] +01:18:31 ============================================================================ +01:18:31 Calculate Source COMM Id = 2 +01:18:31 ============================================================================ +01:18:31 + + +waiting on router queue for slot.... +01:18:47 ============================================================================ +01:18:47 Slot Id : <353> +01:18:47 Transaction Type : REQUEST +01:18:47 Received From : +01:18:47 ============================================================================ +01:18:47 FNo. Len. Field Value +01:18:47 ============================================================================ +01:18:47 [ 1] [ 4] [0800] +01:18:47 [ 7] [ 10] [0319061754] +01:18:47 [ 11] [ 6] [153397] +01:18:47 [ 70] [ 3] [301] +01:18:47 ============================================================================ +01:18:47 + + +waiting on router queue for slot.... +01:18:47 Sending to : +01:18:47 ============================================================================ +01:18:47 ============================================================================ +01:18:47 Slot Id : <353> +01:18:47 Transaction Type : RESPONSE +01:18:47 Received From : +01:18:47 ============================================================================ +01:18:47 FNo. Len. Field Value +01:18:47 ============================================================================ +01:18:47 [ 1] [ 4] [0810] +01:18:47 [ 7] [ 10] [0319061754] +01:18:47 [ 11] [ 6] [153397] +01:18:47 [ 39] [ 2] [00] +01:18:47 [ 70] [ 3] [301] +01:18:47 ============================================================================ +01:18:47 Calculate Source COMM Id = 2 +01:18:47 ============================================================================ +01:18:47 + + +waiting on router queue for slot.... +01:18:56 ============================================================================ +01:18:56 Slot Id : <373> +01:18:56 Transaction Type : REQUEST +01:18:56 Received From : +01:18:56 ============================================================================ +01:18:56 FNo. Len. Field Value +01:18:56 ============================================================================ +01:18:56 [ 1] [ 4] [0800] +01:18:56 [ 7] [ 10] [0320083043] +01:18:56 [ 11] [ 6] [013043] +01:18:56 [ 37] [ 12] [57901013043] +01:18:56 [ 70] [ 3] [301] +01:18:56 ============================================================================ +01:18:56 + + +waiting on router queue for slot.... +01:18:56 Sending to : +01:18:56 ============================================================================ +01:18:56 ============================================================================ +01:18:56 Slot Id : <373> +01:18:56 Transaction Type : RESPONSE +01:18:56 Received From : +01:18:56 ============================================================================ +01:18:56 FNo. Len. Field Value +01:18:56 ============================================================================ +01:18:56 [ 1] [ 4] [0810] +01:18:56 [ 7] [ 10] [0320083043] +01:18:56 [ 11] [ 6] [013043] +01:18:56 [ 37] [ 12] [579010130430] +01:18:56 [ 39] [ 2] [00] +01:18:56 [ 70] [ 3] [810] +01:18:56 ============================================================================ +01:18:56 Calculate Source COMM Id = 6 +01:18:56 ============================================================================ +01:18:56 + + +waiting on router queue for slot.... +01:18:57 ============================================================================ +01:18:57 Slot Id : <355> +01:18:57 Transaction Type : REQUEST +01:18:57 Received From : +01:18:57 ============================================================================ +01:18:57 FNo. Len. Field Value +01:18:57 ============================================================================ +01:18:57 [ 1] [ 4] [0800] +01:18:57 [ 7] [ 10] [0319061805] +01:18:57 [ 11] [ 6] [153398] +01:18:57 [ 70] [ 3] [301] +01:18:57 ============================================================================ +01:18:57 + + +waiting on router queue for slot.... +01:18:57 Sending to : +01:18:57 ============================================================================ +01:18:57 ============================================================================ +01:18:57 Slot Id : <355> +01:18:57 Transaction Type : RESPONSE +01:18:57 Received From : +01:18:57 ============================================================================ +01:18:57 FNo. Len. Field Value +01:18:57 ============================================================================ +01:18:57 [ 1] [ 4] [0810] +01:18:57 [ 7] [ 10] [0319061805] +01:18:57 [ 11] [ 6] [153398] +01:18:57 [ 39] [ 2] [00] +01:18:57 [ 70] [ 3] [301] +01:18:57 ============================================================================ +01:18:57 Calculate Source COMM Id = 2 +01:18:57 ============================================================================ +01:18:57 + + +waiting on router queue for slot.... +01:19:07 ============================================================================ +01:19:07 Slot Id : <363> +01:19:07 Transaction Type : REQUEST +01:19:07 Received From : +01:19:07 ============================================================================ +01:19:07 FNo. Len. Field Value +01:19:07 ============================================================================ +01:19:07 [ 1] [ 4] [0800] +01:19:07 [ 2] [ 5] [02531] +01:19:07 [ 3] [ 6] [579018] +01:19:07 [ 7] [ 10] [0319181907] +01:19:07 [ 11] [ 6] [806488] +01:19:07 [ 15] [ 10] [0319181907] +01:19:07 [ 37] [ 11] [57901806488] +01:19:07 [ 70] [ 3] [001] +01:19:07 ============================================================================ +01:19:07 + + +waiting on router queue for slot.... +01:19:07 ============================================================================ +01:19:07 Slot Id : <363> +01:19:07 Transaction Type : RESPONSE +01:19:07 Received From : +01:19:07 ============================================================================ +01:19:07 FNo. Len. Field Value +01:19:07 ============================================================================ +01:19:07 [ 1] [ 4] [0810] +01:19:07 [ 7] [ 10] [0319181907] +01:19:07 [ 11] [ 6] [806488] +01:19:07 [ 15] [ 4] [0319] +01:19:07 [ 37] [ 12] [57901806488] +01:19:07 [ 39] [ 2] [00] +01:19:07 [ 70] [ 3] [001] +01:19:07 ============================================================================ +01:19:07 Sending to : +01:19:07 ============================================================================ +01:19:07 + + +waiting on router queue for slot.... +01:19:08 ============================================================================ +01:19:08 Slot Id : <382> +01:19:08 Transaction Type : REQUEST +01:19:08 Received From : +01:19:08 ============================================================================ +01:19:08 FNo. Len. Field Value +01:19:08 ============================================================================ +01:19:08 [ 1] [ 4] [0800] +01:19:08 [ 7] [ 10] [0319061815] +01:19:08 [ 11] [ 6] [153399] +01:19:08 [ 70] [ 3] [301] +01:19:08 ============================================================================ +01:19:08 + + +waiting on router queue for slot.... +01:19:08 Sending to : +01:19:08 ============================================================================ +01:19:08 ============================================================================ +01:19:08 Slot Id : <382> +01:19:08 Transaction Type : RESPONSE +01:19:08 Received From : +01:19:08 ============================================================================ +01:19:08 FNo. Len. Field Value +01:19:08 ============================================================================ +01:19:08 [ 1] [ 4] [0810] +01:19:08 [ 7] [ 10] [0319061815] +01:19:08 [ 11] [ 6] [153399] +01:19:08 [ 39] [ 2] [00] +01:19:08 [ 70] [ 3] [301] +01:19:08 ============================================================================ +01:19:08 Calculate Source COMM Id = 2 +01:19:08 ============================================================================ +01:19:08 + + +waiting on router queue for slot.... +01:19:20 ============================================================================ +01:19:20 Slot Id : <358> +01:19:20 Transaction Type : REQUEST +01:19:20 Received From : +01:19:20 ============================================================================ +01:19:20 FNo. Len. Field Value +01:19:20 ============================================================================ +01:19:20 [ 1] [ 4] [0800] +01:19:20 [ 7] [ 10] [0319061827] +01:19:20 [ 11] [ 6] [153400] +01:19:20 [ 70] [ 3] [301] +01:19:20 ============================================================================ +01:19:20 + + +waiting on router queue for slot.... +01:19:20 Sending to : +01:19:20 ============================================================================ +01:19:20 ============================================================================ +01:19:20 Slot Id : <358> +01:19:20 Transaction Type : RESPONSE +01:19:20 Received From : +01:19:20 ============================================================================ +01:19:20 FNo. Len. Field Value +01:19:20 ============================================================================ +01:19:20 [ 1] [ 4] [0810] +01:19:20 [ 7] [ 10] [0319061827] +01:19:20 [ 11] [ 6] [153400] +01:19:20 [ 39] [ 2] [00] +01:19:20 [ 70] [ 3] [301] +01:19:20 ============================================================================ +01:19:20 Calculate Source COMM Id = 2 +01:19:20 ============================================================================ +01:19:20 + + +waiting on router queue for slot.... +01:19:31 ============================================================================ +01:19:31 Slot Id : <338> +01:19:31 Transaction Type : REQUEST +01:19:31 Received From : +01:19:31 ============================================================================ +01:19:31 FNo. Len. Field Value +01:19:31 ============================================================================ +01:19:31 [ 1] [ 4] [0800] +01:19:31 [ 7] [ 10] [0319061838] +01:19:31 [ 11] [ 6] [153401] +01:19:31 [ 70] [ 3] [301] +01:19:31 ============================================================================ +01:19:31 + + +waiting on router queue for slot.... +01:19:31 Sending to : +01:19:31 ============================================================================ +01:19:31 ============================================================================ +01:19:31 Slot Id : <338> +01:19:31 Transaction Type : RESPONSE +01:19:31 Received From : +01:19:31 ============================================================================ +01:19:31 FNo. Len. Field Value +01:19:31 ============================================================================ +01:19:31 [ 1] [ 4] [0810] +01:19:31 [ 7] [ 10] [0319061838] +01:19:31 [ 11] [ 6] [153401] +01:19:31 [ 39] [ 2] [00] +01:19:31 [ 70] [ 3] [301] +01:19:31 ============================================================================ +01:19:31 Calculate Source COMM Id = 2 +01:19:31 ============================================================================ +01:19:31 + + +waiting on router queue for slot.... +01:19:46 ============================================================================ +01:19:46 Slot Id : <370> +01:19:46 Transaction Type : REQUEST +01:19:46 Received From : +01:19:46 ============================================================================ +01:19:46 FNo. Len. Field Value +01:19:46 ============================================================================ +01:19:46 [ 1] [ 4] [0800] +01:19:46 [ 7] [ 10] [0319061853] +01:19:46 [ 11] [ 6] [153402] +01:19:46 [ 70] [ 3] [301] +01:19:46 ============================================================================ +01:19:46 + + +waiting on router queue for slot.... +01:19:46 Sending to : +01:19:46 ============================================================================ +01:19:46 ============================================================================ +01:19:46 Slot Id : <370> +01:19:46 Transaction Type : RESPONSE +01:19:46 Received From : +01:19:46 ============================================================================ +01:19:46 FNo. Len. Field Value +01:19:46 ============================================================================ +01:19:46 [ 1] [ 4] [0810] +01:19:46 [ 7] [ 10] [0319061853] +01:19:46 [ 11] [ 6] [153402] +01:19:46 [ 39] [ 2] [00] +01:19:46 [ 70] [ 3] [301] +01:19:46 ============================================================================ +01:19:46 Calculate Source COMM Id = 2 +01:19:46 ============================================================================ +01:19:46 + + +waiting on router queue for slot.... +01:19:57 ============================================================================ +01:19:57 Slot Id : <360> +01:19:57 Transaction Type : REQUEST +01:19:57 Received From : +01:19:57 ============================================================================ +01:19:57 FNo. Len. Field Value +01:19:57 ============================================================================ +01:19:57 [ 1] [ 4] [0800] +01:19:57 [ 7] [ 10] [0319182742] +01:19:57 [ 11] [ 6] [013393] +01:19:57 [ 37] [ 12] [57901013393] +01:19:57 [ 70] [ 3] [301] +01:19:57 ============================================================================ +01:19:57 + + +waiting on router queue for slot.... +01:19:57 Sending to : +01:19:57 ============================================================================ +01:19:57 ============================================================================ +01:19:57 Slot Id : <360> +01:19:57 Transaction Type : RESPONSE +01:19:57 Received From : +01:19:57 ============================================================================ +01:19:57 FNo. Len. Field Value +01:19:57 ============================================================================ +01:19:57 [ 1] [ 4] [0810] +01:19:57 [ 7] [ 10] [0319182742] +01:19:57 [ 11] [ 6] [013393] +01:19:57 [ 37] [ 12] [579010133930] +01:19:57 [ 39] [ 2] [00] +01:19:57 [ 70] [ 3] [810] +01:19:57 ============================================================================ +01:19:57 Calculate Source COMM Id = 1 +01:19:57 ============================================================================ +01:19:57 + + +waiting on router queue for slot.... +01:20:01 ============================================================================ +01:20:01 Slot Id : <379> +01:20:01 Transaction Type : REQUEST +01:20:01 Received From : +01:20:01 ============================================================================ +01:20:01 FNo. Len. Field Value +01:20:01 ============================================================================ +01:20:01 [ 1] [ 4] [0800] +01:20:01 [ 7] [ 10] [0319061909] +01:20:01 [ 11] [ 6] [153403] +01:20:01 [ 70] [ 3] [301] +01:20:01 ============================================================================ +01:20:01 + + +waiting on router queue for slot.... +01:20:01 Sending to : +01:20:01 ============================================================================ +01:20:01 ============================================================================ +01:20:01 Slot Id : <379> +01:20:01 Transaction Type : RESPONSE +01:20:01 Received From : +01:20:01 ============================================================================ +01:20:01 FNo. Len. Field Value +01:20:01 ============================================================================ +01:20:01 [ 1] [ 4] [0810] +01:20:01 [ 7] [ 10] [0319061909] +01:20:01 [ 11] [ 6] [153403] +01:20:01 [ 39] [ 2] [00] +01:20:01 [ 70] [ 3] [301] +01:20:01 ============================================================================ +01:20:01 Calculate Source COMM Id = 2 +01:20:01 ============================================================================ +01:20:01 + + +waiting on router queue for slot.... +01:20:01 ============================================================================ +01:20:01 Slot Id : <396> +01:20:01 Transaction Type : REQUEST +01:20:01 Received From : +01:20:01 ============================================================================ +01:20:01 FNo. Len. Field Value +01:20:01 ============================================================================ +01:20:01 [ 1] [ 4] [0800] +01:20:01 [ 7] [ 10] [0320083148] +01:20:01 [ 11] [ 6] [013148] +01:20:01 [ 37] [ 12] [57901013148] +01:20:01 [ 70] [ 3] [301] +01:20:01 ============================================================================ +01:20:01 + + +waiting on router queue for slot.... +01:20:01 Sending to : +01:20:01 ============================================================================ +01:20:01 ============================================================================ +01:20:01 Slot Id : <396> +01:20:01 Transaction Type : RESPONSE +01:20:01 Received From : +01:20:01 ============================================================================ +01:20:01 FNo. Len. Field Value +01:20:01 ============================================================================ +01:20:01 [ 1] [ 4] [0810] +01:20:01 [ 7] [ 10] [0320083148] +01:20:01 [ 11] [ 6] [013148] +01:20:01 [ 37] [ 12] [579010131480] +01:20:01 [ 39] [ 2] [00] +01:20:01 [ 70] [ 3] [810] +01:20:01 ============================================================================ +01:20:01 Calculate Source COMM Id = 6 +01:20:01 ============================================================================ +01:20:01 + + +waiting on router queue for slot.... +01:20:09 ============================================================================ +01:20:09 Slot Id : <354> +01:20:09 Transaction Type : REQUEST +01:20:09 Received From : +01:20:09 ============================================================================ +01:20:09 FNo. Len. Field Value +01:20:09 ============================================================================ +01:20:09 [ 1] [ 4] [0800] +01:20:09 [ 2] [ 5] [02531] +01:20:09 [ 3] [ 6] [579018] +01:20:09 [ 7] [ 10] [0319182009] +01:20:09 [ 11] [ 6] [806489] +01:20:09 [ 15] [ 10] [0319182009] +01:20:09 [ 37] [ 11] [57901806489] +01:20:09 [ 70] [ 3] [001] +01:20:09 ============================================================================ +01:20:09 + + +waiting on router queue for slot.... +01:20:09 ============================================================================ +01:20:09 Slot Id : <354> +01:20:09 Transaction Type : RESPONSE +01:20:09 Received From : +01:20:09 ============================================================================ +01:20:09 FNo. Len. Field Value +01:20:09 ============================================================================ +01:20:09 [ 1] [ 4] [0810] +01:20:09 [ 7] [ 10] [0319182009] +01:20:09 [ 11] [ 6] [806489] +01:20:09 [ 15] [ 4] [0319] +01:20:09 [ 37] [ 12] [57901806489] +01:20:09 [ 39] [ 2] [00] +01:20:09 [ 70] [ 3] [001] +01:20:09 ============================================================================ +01:20:09 Sending to : +01:20:09 ============================================================================ +01:20:09 + + +waiting on router queue for slot.... +01:20:13 ============================================================================ +01:20:13 Slot Id : <369> +01:20:13 Transaction Type : REQUEST +01:20:13 Received From : +01:20:13 ============================================================================ +01:20:13 FNo. Len. Field Value +01:20:13 ============================================================================ +01:20:13 [ 1] [ 4] [0800] +01:20:13 [ 7] [ 10] [0319061919] +01:20:13 [ 11] [ 6] [153404] +01:20:13 [ 70] [ 3] [301] +01:20:13 ============================================================================ +01:20:13 + + +waiting on router queue for slot.... +01:20:13 Sending to : +01:20:13 ============================================================================ +01:20:13 ============================================================================ +01:20:13 Slot Id : <369> +01:20:13 Transaction Type : RESPONSE +01:20:13 Received From : +01:20:13 ============================================================================ +01:20:13 FNo. Len. Field Value +01:20:13 ============================================================================ +01:20:13 [ 1] [ 4] [0810] +01:20:13 [ 7] [ 10] [0319061919] +01:20:13 [ 11] [ 6] [153404] +01:20:13 [ 39] [ 2] [00] +01:20:13 [ 70] [ 3] [301] +01:20:13 ============================================================================ +01:20:13 Calculate Source COMM Id = 2 +01:20:13 ============================================================================ +01:20:13 + + +waiting on router queue for slot.... +01:20:23 ============================================================================ +01:20:23 Slot Id : <351> +01:20:23 Transaction Type : REQUEST +01:20:23 Received From : +01:20:23 ============================================================================ +01:20:23 FNo. Len. Field Value +01:20:23 ============================================================================ +01:20:23 [ 1] [ 4] [0800] +01:20:23 [ 7] [ 10] [0319061930] +01:20:23 [ 11] [ 6] [153405] +01:20:23 [ 70] [ 3] [301] +01:20:23 ============================================================================ +01:20:23 + + +waiting on router queue for slot.... +01:20:23 Sending to : +01:20:23 ============================================================================ +01:20:23 ============================================================================ +01:20:23 Slot Id : <351> +01:20:23 Transaction Type : RESPONSE +01:20:23 Received From : +01:20:23 ============================================================================ +01:20:23 FNo. Len. Field Value +01:20:23 ============================================================================ +01:20:23 [ 1] [ 4] [0810] +01:20:23 [ 7] [ 10] [0319061930] +01:20:23 [ 11] [ 6] [153405] +01:20:23 [ 39] [ 2] [00] +01:20:23 [ 70] [ 3] [301] +01:20:23 ============================================================================ +01:20:23 Calculate Source COMM Id = 2 +01:20:23 ============================================================================ +01:20:23 + + +waiting on router queue for slot.... +01:20:34 ============================================================================ +01:20:34 Slot Id : <374> +01:20:34 Transaction Type : REQUEST +01:20:34 Received From : +01:20:34 ============================================================================ +01:20:34 FNo. Len. Field Value +01:20:34 ============================================================================ +01:20:34 [ 1] [ 4] [0800] +01:20:34 [ 7] [ 10] [0319061941] +01:20:34 [ 11] [ 6] [153406] +01:20:34 [ 70] [ 3] [301] +01:20:34 ============================================================================ +01:20:34 + + +waiting on router queue for slot.... +01:20:34 Sending to : +01:20:34 ============================================================================ +01:20:34 ============================================================================ +01:20:34 Slot Id : <374> +01:20:34 Transaction Type : RESPONSE +01:20:34 Received From : +01:20:34 ============================================================================ +01:20:34 FNo. Len. Field Value +01:20:34 ============================================================================ +01:20:34 [ 1] [ 4] [0810] +01:20:34 [ 7] [ 10] [0319061941] +01:20:34 [ 11] [ 6] [153406] +01:20:34 [ 39] [ 2] [00] +01:20:34 [ 70] [ 3] [301] +01:20:34 ============================================================================ +01:20:34 Calculate Source COMM Id = 2 +01:20:34 ============================================================================ +01:20:34 + + +waiting on router queue for slot.... +01:20:47 ============================================================================ +01:20:47 Slot Id : <389> +01:20:47 Transaction Type : REQUEST +01:20:47 Received From : +01:20:47 ============================================================================ +01:20:47 FNo. Len. Field Value +01:20:47 ============================================================================ +01:20:47 [ 1] [ 4] [0800] +01:20:47 [ 7] [ 10] [0319061953] +01:20:47 [ 11] [ 6] [153407] +01:20:47 [ 70] [ 3] [301] +01:20:47 ============================================================================ +01:20:47 + + +waiting on router queue for slot.... +01:20:47 Sending to : +01:20:47 ============================================================================ +01:20:47 ============================================================================ +01:20:47 Slot Id : <389> +01:20:47 Transaction Type : RESPONSE +01:20:47 Received From : +01:20:47 ============================================================================ +01:20:47 FNo. Len. Field Value +01:20:47 ============================================================================ +01:20:47 [ 1] [ 4] [0810] +01:20:47 [ 7] [ 10] [0319061953] +01:20:47 [ 11] [ 6] [153407] +01:20:47 [ 39] [ 2] [00] +01:20:47 [ 70] [ 3] [301] +01:20:47 ============================================================================ +01:20:47 Calculate Source COMM Id = 2 +01:20:47 ============================================================================ +01:20:47 + + +waiting on router queue for slot.... +01:21:02 ============================================================================ +01:21:02 Slot Id : <390> +01:21:02 Transaction Type : REQUEST +01:21:02 Received From : +01:21:02 ============================================================================ +01:21:02 FNo. Len. Field Value +01:21:02 ============================================================================ +01:21:02 [ 1] [ 4] [0800] +01:21:02 [ 7] [ 10] [0319062009] +01:21:02 [ 11] [ 6] [153408] +01:21:02 [ 70] [ 3] [301] +01:21:02 ============================================================================ +01:21:02 + + +waiting on router queue for slot.... +01:21:02 Sending to : +01:21:02 ============================================================================ +01:21:02 ============================================================================ +01:21:02 Slot Id : <390> +01:21:02 Transaction Type : RESPONSE +01:21:02 Received From : +01:21:02 ============================================================================ +01:21:02 FNo. Len. Field Value +01:21:02 ============================================================================ +01:21:02 [ 1] [ 4] [0810] +01:21:02 [ 7] [ 10] [0319062009] +01:21:02 [ 11] [ 6] [153408] +01:21:02 [ 39] [ 2] [00] +01:21:02 [ 70] [ 3] [301] +01:21:02 ============================================================================ +01:21:02 Calculate Source COMM Id = 2 +01:21:02 ============================================================================ +01:21:02 + + +waiting on router queue for slot.... +01:21:06 ============================================================================ +01:21:06 Slot Id : <376> +01:21:06 Transaction Type : REQUEST +01:21:06 Received From : +01:21:06 ============================================================================ +01:21:06 FNo. Len. Field Value +01:21:06 ============================================================================ +01:21:06 [ 1] [ 4] [0800] +01:21:06 [ 7] [ 10] [0320083253] +01:21:06 [ 11] [ 6] [013253] +01:21:06 [ 37] [ 12] [57901013253] +01:21:06 [ 70] [ 3] [301] +01:21:06 ============================================================================ +01:21:06 + + +waiting on router queue for slot.... +01:21:06 Sending to : +01:21:06 ============================================================================ +01:21:06 ============================================================================ +01:21:06 Slot Id : <376> +01:21:06 Transaction Type : RESPONSE +01:21:06 Received From : +01:21:06 ============================================================================ +01:21:06 FNo. Len. Field Value +01:21:06 ============================================================================ +01:21:06 [ 1] [ 4] [0810] +01:21:06 [ 7] [ 10] [0320083253] +01:21:06 [ 11] [ 6] [013253] +01:21:06 [ 37] [ 12] [579010132530] +01:21:06 [ 39] [ 2] [00] +01:21:06 [ 70] [ 3] [810] +01:21:06 ============================================================================ +01:21:06 Calculate Source COMM Id = 6 +01:21:06 ============================================================================ +01:21:06 + + +waiting on router queue for slot.... +01:21:11 ============================================================================ +01:21:11 Slot Id : <395> +01:21:11 Transaction Type : REQUEST +01:21:11 Received From : +01:21:11 ============================================================================ +01:21:11 FNo. Len. Field Value +01:21:11 ============================================================================ +01:21:11 [ 1] [ 4] [0800] +01:21:11 [ 2] [ 5] [02531] +01:21:11 [ 3] [ 6] [579018] +01:21:11 [ 7] [ 10] [0319182111] +01:21:11 [ 11] [ 6] [806490] +01:21:11 [ 15] [ 10] [0319182111] +01:21:11 [ 37] [ 11] [57901806490] +01:21:11 [ 70] [ 3] [001] +01:21:11 ============================================================================ +01:21:11 + + +waiting on router queue for slot.... +01:21:11 ============================================================================ +01:21:11 Slot Id : <395> +01:21:11 Transaction Type : RESPONSE +01:21:11 Received From : +01:21:11 ============================================================================ +01:21:11 FNo. Len. Field Value +01:21:11 ============================================================================ +01:21:11 [ 1] [ 4] [0810] +01:21:11 [ 7] [ 10] [0319182111] +01:21:11 [ 11] [ 6] [806490] +01:21:11 [ 15] [ 4] [0319] +01:21:11 [ 37] [ 12] [57901806490] +01:21:11 [ 39] [ 2] [00] +01:21:11 [ 70] [ 3] [001] +01:21:11 ============================================================================ +01:21:11 Sending to : +01:21:11 ============================================================================ +01:21:11 + + +waiting on router queue for slot.... +01:21:13 ============================================================================ +01:21:13 Slot Id : <359> +01:21:13 Transaction Type : REQUEST +01:21:13 Received From : +01:21:13 ============================================================================ +01:21:13 FNo. Len. Field Value +01:21:13 ============================================================================ +01:21:13 [ 1] [ 4] [0800] +01:21:13 [ 7] [ 10] [0319062020] +01:21:13 [ 11] [ 6] [153409] +01:21:13 [ 70] [ 3] [301] +01:21:13 ============================================================================ +01:21:13 + + +waiting on router queue for slot.... +01:21:13 Sending to : +01:21:13 ============================================================================ +01:21:13 ============================================================================ +01:21:13 Slot Id : <359> +01:21:13 Transaction Type : RESPONSE +01:21:13 Received From : +01:21:13 ============================================================================ +01:21:13 FNo. Len. Field Value +01:21:13 ============================================================================ +01:21:13 [ 1] [ 4] [0810] +01:21:13 [ 7] [ 10] [0319062020] +01:21:13 [ 11] [ 6] [153409] +01:21:13 [ 39] [ 2] [00] +01:21:13 [ 70] [ 3] [301] +01:21:13 ============================================================================ +01:21:13 Calculate Source COMM Id = 2 +01:21:13 ============================================================================ +01:21:13 + + +waiting on router queue for slot.... +01:21:22 ============================================================================ +01:21:22 Slot Id : <410> +01:21:22 Transaction Type : REQUEST +01:21:22 Received From : +01:21:22 ============================================================================ +01:21:22 FNo. Len. Field Value +01:21:22 ============================================================================ +01:21:22 [ 1] [ 4] [0800] +01:21:22 [ 7] [ 10] [0319181912] +01:21:22 [ 11] [ 6] [091379] +01:21:22 [ 37] [ 12] [57901091379] +01:21:22 [ 70] [ 3] [301] +01:21:22 ============================================================================ +01:21:22 + + +waiting on router queue for slot.... +01:21:22 Sending to : +01:21:22 ============================================================================ +01:21:22 ============================================================================ +01:21:22 Slot Id : <410> +01:21:22 Transaction Type : RESPONSE +01:21:22 Received From : +01:21:22 ============================================================================ +01:21:22 FNo. Len. Field Value +01:21:22 ============================================================================ +01:21:22 [ 1] [ 4] [0810] +01:21:22 [ 7] [ 10] [0319181912] +01:21:22 [ 11] [ 6] [091379] +01:21:22 [ 37] [ 12] [579010913790] +01:21:22 [ 39] [ 2] [00] +01:21:22 [ 70] [ 3] [810] +01:21:22 ============================================================================ +01:21:22 Calculate Source COMM Id = 4 +01:21:22 ============================================================================ +01:21:22 + + +waiting on router queue for slot.... +01:21:29 ============================================================================ +01:21:29 Slot Id : <361> +01:21:29 Transaction Type : REQUEST +01:21:29 Received From : +01:21:29 ============================================================================ +01:21:29 FNo. Len. Field Value +01:21:29 ============================================================================ +01:21:29 [ 1] [ 4] [0800] +01:21:29 [ 7] [ 10] [0319062036] +01:21:29 [ 11] [ 6] [153410] +01:21:29 [ 70] [ 3] [301] +01:21:29 ============================================================================ +01:21:29 + + +waiting on router queue for slot.... +01:21:29 Sending to : +01:21:29 ============================================================================ +01:21:29 ============================================================================ +01:21:29 Slot Id : <361> +01:21:29 Transaction Type : RESPONSE +01:21:29 Received From : +01:21:29 ============================================================================ +01:21:29 FNo. Len. Field Value +01:21:29 ============================================================================ +01:21:29 [ 1] [ 4] [0810] +01:21:29 [ 7] [ 10] [0319062036] +01:21:29 [ 11] [ 6] [153410] +01:21:29 [ 39] [ 2] [00] +01:21:29 [ 70] [ 3] [301] +01:21:29 ============================================================================ +01:21:29 Calculate Source COMM Id = 2 +01:21:29 ============================================================================ +01:21:29 + + +waiting on router queue for slot.... +01:21:42 ============================================================================ +01:21:42 Slot Id : <349> +01:21:42 Transaction Type : REQUEST +01:21:42 Received From : +01:21:42 ============================================================================ +01:21:42 FNo. Len. Field Value +01:21:42 ============================================================================ +01:21:42 [ 1] [ 4] [0800] +01:21:42 [ 7] [ 10] [0319062049] +01:21:42 [ 11] [ 6] [153411] +01:21:42 [ 70] [ 3] [301] +01:21:42 ============================================================================ +01:21:42 + + +waiting on router queue for slot.... +01:21:42 Sending to : +01:21:42 ============================================================================ +01:21:42 ============================================================================ +01:21:42 Slot Id : <349> +01:21:42 Transaction Type : RESPONSE +01:21:42 Received From : +01:21:42 ============================================================================ +01:21:42 FNo. Len. Field Value +01:21:42 ============================================================================ +01:21:42 [ 1] [ 4] [0810] +01:21:42 [ 7] [ 10] [0319062049] +01:21:42 [ 11] [ 6] [153411] +01:21:42 [ 39] [ 2] [00] +01:21:42 [ 70] [ 3] [301] +01:21:42 ============================================================================ +01:21:42 Calculate Source COMM Id = 2 +01:21:42 ============================================================================ +01:21:42 + + +waiting on router queue for slot.... +01:21:55 ============================================================================ +01:21:55 Slot Id : <383> +01:21:55 Transaction Type : REQUEST +01:21:55 Received From : +01:21:55 ============================================================================ +01:21:55 FNo. Len. Field Value +01:21:55 ============================================================================ +01:21:55 [ 1] [ 4] [0800] +01:21:55 [ 7] [ 10] [0319062103] +01:21:55 [ 11] [ 6] [153412] +01:21:55 [ 70] [ 3] [301] +01:21:55 ============================================================================ +01:21:55 + + +waiting on router queue for slot.... +01:21:55 Sending to : +01:21:55 ============================================================================ +01:21:55 ============================================================================ +01:21:55 Slot Id : <383> +01:21:55 Transaction Type : RESPONSE +01:21:55 Received From : +01:21:55 ============================================================================ +01:21:55 FNo. Len. Field Value +01:21:55 ============================================================================ +01:21:55 [ 1] [ 4] [0810] +01:21:55 [ 7] [ 10] [0319062103] +01:21:55 [ 11] [ 6] [153412] +01:21:55 [ 39] [ 2] [00] +01:21:55 [ 70] [ 3] [301] +01:21:55 ============================================================================ +01:21:55 Calculate Source COMM Id = 2 +01:21:55 ============================================================================ +01:21:55 + + +waiting on router queue for slot.... +01:22:05 ============================================================================ +01:22:05 Slot Id : <413> +01:22:05 Transaction Type : REQUEST +01:22:05 Received From : +01:22:05 ============================================================================ +01:22:05 FNo. Len. Field Value +01:22:05 ============================================================================ +01:22:05 [ 1] [ 4] [0800] +01:22:05 [ 7] [ 10] [0319062113] +01:22:05 [ 11] [ 6] [153413] +01:22:05 [ 70] [ 3] [301] +01:22:05 ============================================================================ +01:22:05 + + +waiting on router queue for slot.... +01:22:05 Sending to : +01:22:05 ============================================================================ +01:22:05 ============================================================================ +01:22:05 Slot Id : <413> +01:22:05 Transaction Type : RESPONSE +01:22:05 Received From : +01:22:05 ============================================================================ +01:22:05 FNo. Len. Field Value +01:22:05 ============================================================================ +01:22:05 [ 1] [ 4] [0810] +01:22:05 [ 7] [ 10] [0319062113] +01:22:05 [ 11] [ 6] [153413] +01:22:05 [ 39] [ 2] [00] +01:22:05 [ 70] [ 3] [301] +01:22:05 ============================================================================ +01:22:05 Calculate Source COMM Id = 2 +01:22:05 ============================================================================ +01:22:05 + + +waiting on router queue for slot.... +01:22:11 ============================================================================ +01:22:11 Slot Id : <393> +01:22:11 Transaction Type : REQUEST +01:22:11 Received From : +01:22:11 ============================================================================ +01:22:11 FNo. Len. Field Value +01:22:11 ============================================================================ +01:22:11 [ 1] [ 4] [0800] +01:22:11 [ 7] [ 10] [0320083358] +01:22:11 [ 11] [ 6] [013358] +01:22:11 [ 37] [ 12] [57901013358] +01:22:11 [ 70] [ 3] [301] +01:22:11 ============================================================================ +01:22:11 + + +waiting on router queue for slot.... +01:22:11 Sending to : +01:22:11 ============================================================================ +01:22:11 ============================================================================ +01:22:11 Slot Id : <393> +01:22:11 Transaction Type : RESPONSE +01:22:11 Received From : +01:22:11 ============================================================================ +01:22:11 FNo. Len. Field Value +01:22:11 ============================================================================ +01:22:11 [ 1] [ 4] [0810] +01:22:11 [ 7] [ 10] [0320083358] +01:22:11 [ 11] [ 6] [013358] +01:22:11 [ 37] [ 12] [579010133580] +01:22:11 [ 39] [ 2] [00] +01:22:11 [ 70] [ 3] [810] +01:22:11 ============================================================================ +01:22:11 Calculate Source COMM Id = 6 +01:22:11 ============================================================================ +01:22:11 + + +waiting on router queue for slot.... +01:22:13 ============================================================================ +01:22:13 Slot Id : <397> +01:22:13 Transaction Type : REQUEST +01:22:13 Received From : +01:22:13 ============================================================================ +01:22:13 FNo. Len. Field Value +01:22:13 ============================================================================ +01:22:13 [ 1] [ 4] [0800] +01:22:13 [ 2] [ 5] [02531] +01:22:13 [ 3] [ 6] [579018] +01:22:13 [ 7] [ 10] [0319182213] +01:22:13 [ 11] [ 6] [806491] +01:22:13 [ 15] [ 10] [0319182213] +01:22:13 [ 37] [ 11] [57901806491] +01:22:13 [ 70] [ 3] [001] +01:22:13 ============================================================================ +01:22:13 + + +waiting on router queue for slot.... +01:22:13 ============================================================================ +01:22:13 Slot Id : <397> +01:22:13 Transaction Type : RESPONSE +01:22:13 Received From : +01:22:13 ============================================================================ +01:22:13 FNo. Len. Field Value +01:22:13 ============================================================================ +01:22:13 [ 1] [ 4] [0810] +01:22:13 [ 7] [ 10] [0319182213] +01:22:13 [ 11] [ 6] [806491] +01:22:13 [ 15] [ 4] [0319] +01:22:13 [ 37] [ 12] [57901806491] +01:22:13 [ 39] [ 2] [00] +01:22:13 [ 70] [ 3] [001] +01:22:13 ============================================================================ +01:22:13 Sending to : +01:22:13 ============================================================================ +01:22:13 + + +waiting on router queue for slot.... +01:22:16 ============================================================================ +01:22:16 Slot Id : <400> +01:22:16 Transaction Type : REQUEST +01:22:16 Received From : +01:22:16 ============================================================================ +01:22:16 FNo. Len. Field Value +01:22:16 ============================================================================ +01:22:16 [ 1] [ 4] [0800] +01:22:16 [ 7] [ 10] [0319062123] +01:22:16 [ 11] [ 6] [153414] +01:22:16 [ 70] [ 3] [301] +01:22:16 ============================================================================ +01:22:16 + + +waiting on router queue for slot.... +01:22:16 Sending to : +01:22:16 ============================================================================ +01:22:16 ============================================================================ +01:22:16 Slot Id : <400> +01:22:16 Transaction Type : RESPONSE +01:22:16 Received From : +01:22:16 ============================================================================ +01:22:16 FNo. Len. Field Value +01:22:16 ============================================================================ +01:22:16 [ 1] [ 4] [0810] +01:22:16 [ 7] [ 10] [0319062123] +01:22:16 [ 11] [ 6] [153414] +01:22:16 [ 39] [ 2] [00] +01:22:16 [ 70] [ 3] [301] +01:22:16 ============================================================================ +01:22:16 Calculate Source COMM Id = 2 +01:22:16 ============================================================================ +01:22:16 + + +waiting on router queue for slot.... +01:22:27 ============================================================================ +01:22:27 Slot Id : <399> +01:22:27 Transaction Type : REQUEST +01:22:27 Received From : +01:22:27 ============================================================================ +01:22:27 FNo. Len. Field Value +01:22:27 ============================================================================ +01:22:27 [ 1] [ 4] [0800] +01:22:27 [ 7] [ 10] [0319062134] +01:22:27 [ 11] [ 6] [153415] +01:22:27 [ 70] [ 3] [301] +01:22:27 ============================================================================ +01:22:27 + + +waiting on router queue for slot.... +01:22:27 Sending to : +01:22:27 ============================================================================ +01:22:27 ============================================================================ +01:22:27 Slot Id : <399> +01:22:27 Transaction Type : RESPONSE +01:22:27 Received From : +01:22:27 ============================================================================ +01:22:27 FNo. Len. Field Value +01:22:27 ============================================================================ +01:22:27 [ 1] [ 4] [0810] +01:22:27 [ 7] [ 10] [0319062134] +01:22:27 [ 11] [ 6] [153415] +01:22:27 [ 39] [ 2] [00] +01:22:27 [ 70] [ 3] [301] +01:22:27 ============================================================================ +01:22:27 Calculate Source COMM Id = 2 +01:22:27 ============================================================================ +01:22:27 + + +waiting on router queue for slot.... +01:22:37 ============================================================================ +01:22:37 Slot Id : <414> +01:22:37 Transaction Type : REQUEST +01:22:37 Received From : +01:22:37 ============================================================================ +01:22:37 FNo. Len. Field Value +01:22:37 ============================================================================ +01:22:37 [ 1] [ 4] [0800] +01:22:37 [ 7] [ 10] [0320012223] +01:22:37 [ 11] [ 6] [009899] +01:22:37 [ 37] [ 12] [507901009899] +01:22:37 [ 70] [ 3] [ ] +01:22:37 ============================================================================ +01:22:37 + + +waiting on router queue for slot.... +01:22:37 Sending to : +01:22:37 ============================================================================ +01:22:37 ============================================================================ +01:22:37 Slot Id : <414> +01:22:37 Transaction Type : RESPONSE +01:22:37 Received From : +01:22:37 ============================================================================ +01:22:37 FNo. Len. Field Value +01:22:37 ============================================================================ +01:22:37 [ 1] [ 4] [0810] +01:22:37 [ 7] [ 10] [0320012223] +01:22:37 [ 11] [ 6] [009899] +01:22:37 [ 37] [ 12] [507901009899] +01:22:37 [ 39] [ 2] [91] +01:22:37 [ 70] [ 3] [ ] +01:22:37 ============================================================================ +01:22:37 Calculate Source COMM Id = 3 +01:22:37 ============================================================================ +01:22:37 + + +waiting on router queue for slot.... +01:22:42 ============================================================================ +01:22:42 Slot Id : <394> +01:22:42 Transaction Type : REQUEST +01:22:42 Received From : +01:22:42 ============================================================================ +01:22:42 FNo. Len. Field Value +01:22:42 ============================================================================ +01:22:42 [ 1] [ 4] [0800] +01:22:42 [ 7] [ 10] [0319062150] +01:22:42 [ 11] [ 6] [153416] +01:22:42 [ 70] [ 3] [301] +01:22:42 ============================================================================ +01:22:42 + + +waiting on router queue for slot.... +01:22:42 Sending to : +01:22:42 ============================================================================ +01:22:42 ============================================================================ +01:22:42 Slot Id : <394> +01:22:42 Transaction Type : RESPONSE +01:22:42 Received From : +01:22:42 ============================================================================ +01:22:42 FNo. Len. Field Value +01:22:42 ============================================================================ +01:22:42 [ 1] [ 4] [0810] +01:22:42 [ 7] [ 10] [0319062150] +01:22:42 [ 11] [ 6] [153416] +01:22:42 [ 39] [ 2] [00] +01:22:42 [ 70] [ 3] [301] +01:22:42 ============================================================================ +01:22:42 Calculate Source COMM Id = 2 +01:22:42 ============================================================================ +01:22:42 + + +waiting on router queue for slot.... +01:22:53 ============================================================================ +01:22:53 Slot Id : <387> +01:22:53 Transaction Type : REQUEST +01:22:53 Received From : +01:22:53 ============================================================================ +01:22:53 FNo. Len. Field Value +01:22:53 ============================================================================ +01:22:53 [ 1] [ 4] [0800] +01:22:53 [ 7] [ 10] [0319062200] +01:22:53 [ 11] [ 6] [153417] +01:22:53 [ 70] [ 3] [301] +01:22:53 ============================================================================ +01:22:53 + + +waiting on router queue for slot.... +01:22:53 Sending to : +01:22:53 ============================================================================ +01:22:53 ============================================================================ +01:22:53 Slot Id : <387> +01:22:53 Transaction Type : RESPONSE +01:22:53 Received From : +01:22:53 ============================================================================ +01:22:53 FNo. Len. Field Value +01:22:53 ============================================================================ +01:22:53 [ 1] [ 4] [0810] +01:22:53 [ 7] [ 10] [0319062200] +01:22:53 [ 11] [ 6] [153417] +01:22:53 [ 39] [ 2] [00] +01:22:53 [ 70] [ 3] [301] +01:22:53 ============================================================================ +01:22:53 Calculate Source COMM Id = 2 +01:22:53 ============================================================================ +01:22:53 + + +waiting on router queue for slot.... +01:23:08 ============================================================================ +01:23:08 Slot Id : <368> +01:23:08 Transaction Type : REQUEST +01:23:08 Received From : +01:23:08 ============================================================================ +01:23:08 FNo. Len. Field Value +01:23:08 ============================================================================ +01:23:08 [ 1] [ 4] [0800] +01:23:08 [ 7] [ 10] [0319062216] +01:23:08 [ 11] [ 6] [153418] +01:23:08 [ 70] [ 3] [301] +01:23:08 ============================================================================ +01:23:08 + + +waiting on router queue for slot.... +01:23:08 Sending to : +01:23:08 ============================================================================ +01:23:08 ============================================================================ +01:23:08 Slot Id : <368> +01:23:08 Transaction Type : RESPONSE +01:23:08 Received From : +01:23:08 ============================================================================ +01:23:08 FNo. Len. Field Value +01:23:08 ============================================================================ +01:23:08 [ 1] [ 4] [0810] +01:23:08 [ 7] [ 10] [0319062216] +01:23:08 [ 11] [ 6] [153418] +01:23:08 [ 39] [ 2] [00] +01:23:08 [ 70] [ 3] [301] +01:23:08 ============================================================================ +01:23:08 Calculate Source COMM Id = 2 +01:23:08 ============================================================================ +01:23:08 + + +waiting on router queue for slot.... +01:23:15 ============================================================================ +01:23:15 Slot Id : <418> +01:23:15 Transaction Type : REQUEST +01:23:15 Received From : +01:23:15 ============================================================================ +01:23:15 FNo. Len. Field Value +01:23:15 ============================================================================ +01:23:15 [ 1] [ 4] [0800] +01:23:15 [ 2] [ 5] [02531] +01:23:15 [ 3] [ 6] [579018] +01:23:15 [ 7] [ 10] [0319182315] +01:23:15 [ 11] [ 6] [806492] +01:23:15 [ 15] [ 10] [0319182315] +01:23:15 [ 37] [ 11] [57901806492] +01:23:15 [ 70] [ 3] [001] +01:23:15 ============================================================================ +01:23:15 + + +waiting on router queue for slot.... +01:23:15 ============================================================================ +01:23:15 Slot Id : <418> +01:23:15 Transaction Type : RESPONSE +01:23:15 Received From : +01:23:15 ============================================================================ +01:23:15 FNo. Len. Field Value +01:23:15 ============================================================================ +01:23:15 [ 1] [ 4] [0810] +01:23:15 [ 7] [ 10] [0319182315] +01:23:15 [ 11] [ 6] [806492] +01:23:15 [ 15] [ 4] [0319] +01:23:15 [ 37] [ 12] [57901806492] +01:23:15 [ 39] [ 2] [00] +01:23:15 [ 70] [ 3] [001] +01:23:15 ============================================================================ +01:23:15 Sending to : +01:23:15 ============================================================================ +01:23:15 + + +waiting on router queue for slot.... +01:23:16 ============================================================================ +01:23:16 Slot Id : <372> +01:23:16 Transaction Type : REQUEST +01:23:16 Received From : +01:23:16 ============================================================================ +01:23:16 FNo. Len. Field Value +01:23:16 ============================================================================ +01:23:16 [ 1] [ 4] [0800] +01:23:16 [ 7] [ 10] [0320083503] +01:23:16 [ 11] [ 6] [013503] +01:23:16 [ 37] [ 12] [57901013503] +01:23:16 [ 70] [ 3] [301] +01:23:16 ============================================================================ +01:23:16 + + +waiting on router queue for slot.... +01:23:16 Sending to : +01:23:16 ============================================================================ +01:23:16 ============================================================================ +01:23:16 Slot Id : <372> +01:23:16 Transaction Type : RESPONSE +01:23:16 Received From : +01:23:16 ============================================================================ +01:23:16 FNo. Len. Field Value +01:23:16 ============================================================================ +01:23:16 [ 1] [ 4] [0810] +01:23:16 [ 7] [ 10] [0320083503] +01:23:16 [ 11] [ 6] [013503] +01:23:16 [ 37] [ 12] [579010135030] +01:23:16 [ 39] [ 2] [00] +01:23:16 [ 70] [ 3] [810] +01:23:16 ============================================================================ +01:23:16 Calculate Source COMM Id = 6 +01:23:16 ============================================================================ +01:23:16 + + +waiting on router queue for slot.... +01:23:19 ============================================================================ +01:23:19 Slot Id : <406> +01:23:19 Transaction Type : REQUEST +01:23:19 Received From : +01:23:19 ============================================================================ +01:23:19 FNo. Len. Field Value +01:23:19 ============================================================================ +01:23:19 [ 1] [ 4] [0800] +01:23:19 [ 7] [ 10] [0319062226] +01:23:19 [ 11] [ 6] [153419] +01:23:19 [ 70] [ 3] [301] +01:23:19 ============================================================================ +01:23:19 + + +waiting on router queue for slot.... +01:23:19 Sending to : +01:23:19 ============================================================================ +01:23:19 ============================================================================ +01:23:19 Slot Id : <406> +01:23:19 Transaction Type : RESPONSE +01:23:19 Received From : +01:23:19 ============================================================================ +01:23:19 FNo. Len. Field Value +01:23:19 ============================================================================ +01:23:19 [ 1] [ 4] [0810] +01:23:19 [ 7] [ 10] [0319062226] +01:23:19 [ 11] [ 6] [153419] +01:23:19 [ 39] [ 2] [00] +01:23:19 [ 70] [ 3] [301] +01:23:19 ============================================================================ +01:23:19 Calculate Source COMM Id = 2 +01:23:19 ============================================================================ +01:23:19 + + +waiting on router queue for slot.... +01:23:29 ============================================================================ +01:23:29 Slot Id : <380> +01:23:29 Transaction Type : REQUEST +01:23:29 Received From : +01:23:29 ============================================================================ +01:23:29 FNo. Len. Field Value +01:23:29 ============================================================================ +01:23:29 [ 1] [ 4] [0800] +01:23:29 [ 7] [ 10] [0319062236] +01:23:29 [ 11] [ 6] [153420] +01:23:29 [ 70] [ 3] [301] +01:23:29 ============================================================================ +01:23:29 + + +waiting on router queue for slot.... +01:23:29 Sending to : +01:23:29 ============================================================================ +01:23:29 ============================================================================ +01:23:29 Slot Id : <380> +01:23:29 Transaction Type : RESPONSE +01:23:29 Received From : +01:23:29 ============================================================================ +01:23:29 FNo. Len. Field Value +01:23:29 ============================================================================ +01:23:29 [ 1] [ 4] [0810] +01:23:29 [ 7] [ 10] [0319062236] +01:23:29 [ 11] [ 6] [153420] +01:23:29 [ 39] [ 2] [00] +01:23:29 [ 70] [ 3] [301] +01:23:29 ============================================================================ +01:23:29 Calculate Source COMM Id = 2 +01:23:29 ============================================================================ +01:23:29 + + +waiting on router queue for slot.... +01:23:39 ============================================================================ +01:23:39 Slot Id : <419> +01:23:39 Transaction Type : REQUEST +01:23:39 Received From : +01:23:39 ============================================================================ +01:23:39 FNo. Len. Field Value +01:23:39 ============================================================================ +01:23:39 [ 1] [ 4] [0800] +01:23:39 [ 7] [ 10] [0319062247] +01:23:39 [ 11] [ 6] [153421] +01:23:39 [ 70] [ 3] [301] +01:23:39 ============================================================================ +01:23:39 + + +waiting on router queue for slot.... +01:23:39 Sending to : +01:23:39 ============================================================================ +01:23:39 ============================================================================ +01:23:39 Slot Id : <419> +01:23:39 Transaction Type : RESPONSE +01:23:39 Received From : +01:23:39 ============================================================================ +01:23:39 FNo. Len. Field Value +01:23:39 ============================================================================ +01:23:39 [ 1] [ 4] [0810] +01:23:39 [ 7] [ 10] [0319062247] +01:23:39 [ 11] [ 6] [153421] +01:23:39 [ 39] [ 2] [00] +01:23:39 [ 70] [ 3] [301] +01:23:39 ============================================================================ +01:23:39 Calculate Source COMM Id = 2 +01:23:39 ============================================================================ +01:23:39 + + +waiting on router queue for slot.... +01:23:52 ============================================================================ +01:23:52 Slot Id : <411> +01:23:52 Transaction Type : REQUEST +01:23:52 Received From : +01:23:52 ============================================================================ +01:23:52 FNo. Len. Field Value +01:23:52 ============================================================================ +01:23:52 [ 1] [ 4] [0800] +01:23:52 [ 7] [ 10] [0319062259] +01:23:52 [ 11] [ 6] [153422] +01:23:52 [ 70] [ 3] [301] +01:23:52 ============================================================================ +01:23:52 + + +waiting on router queue for slot.... +01:23:52 Sending to : +01:23:52 ============================================================================ +01:23:52 ============================================================================ +01:23:52 Slot Id : <411> +01:23:52 Transaction Type : RESPONSE +01:23:52 Received From : +01:23:52 ============================================================================ +01:23:52 FNo. Len. Field Value +01:23:52 ============================================================================ +01:23:52 [ 1] [ 4] [0810] +01:23:52 [ 7] [ 10] [0319062259] +01:23:52 [ 11] [ 6] [153422] +01:23:52 [ 39] [ 2] [00] +01:23:52 [ 70] [ 3] [301] +01:23:52 ============================================================================ +01:23:52 Calculate Source COMM Id = 2 +01:23:52 ============================================================================ +01:23:52 + + +waiting on router queue for slot.... +01:24:04 ============================================================================ +01:24:04 Slot Id : <407> +01:24:04 Transaction Type : REQUEST +01:24:04 Received From : +01:24:04 ============================================================================ +01:24:04 FNo. Len. Field Value +01:24:04 ============================================================================ +01:24:04 [ 1] [ 4] [0800] +01:24:04 [ 7] [ 10] [0319062311] +01:24:04 [ 11] [ 6] [153423] +01:24:04 [ 70] [ 3] [301] +01:24:04 ============================================================================ +01:24:04 + + +waiting on router queue for slot.... +01:24:04 Sending to : +01:24:04 ============================================================================ +01:24:04 ============================================================================ +01:24:04 Slot Id : <407> +01:24:04 Transaction Type : RESPONSE +01:24:04 Received From : +01:24:04 ============================================================================ +01:24:04 FNo. Len. Field Value +01:24:04 ============================================================================ +01:24:04 [ 1] [ 4] [0810] +01:24:04 [ 7] [ 10] [0319062311] +01:24:04 [ 11] [ 6] [153423] +01:24:04 [ 39] [ 2] [00] +01:24:04 [ 70] [ 3] [301] +01:24:04 ============================================================================ +01:24:04 Calculate Source COMM Id = 2 +01:24:04 ============================================================================ +01:24:04 + + +waiting on router queue for slot.... +01:24:17 ============================================================================ +01:24:17 Slot Id : <384> +01:24:17 Transaction Type : REQUEST +01:24:17 Received From : +01:24:17 ============================================================================ +01:24:17 FNo. Len. Field Value +01:24:17 ============================================================================ +01:24:17 [ 1] [ 4] [0800] +01:24:17 [ 2] [ 5] [02531] +01:24:17 [ 3] [ 6] [579018] +01:24:17 [ 7] [ 10] [0319182417] +01:24:17 [ 11] [ 6] [806493] +01:24:17 [ 15] [ 10] [0319182417] +01:24:17 [ 37] [ 11] [57901806493] +01:24:17 [ 70] [ 3] [001] +01:24:17 ============================================================================ +01:24:17 + + +waiting on router queue for slot.... +01:24:17 ============================================================================ +01:24:17 Slot Id : <384> +01:24:17 Transaction Type : RESPONSE +01:24:17 Received From : +01:24:17 ============================================================================ +01:24:17 FNo. Len. Field Value +01:24:17 ============================================================================ +01:24:17 [ 1] [ 4] [0810] +01:24:17 [ 7] [ 10] [0319182417] +01:24:17 [ 11] [ 6] [806493] +01:24:17 [ 15] [ 4] [0319] +01:24:17 [ 37] [ 12] [57901806493] +01:24:17 [ 39] [ 2] [00] +01:24:17 [ 70] [ 3] [001] +01:24:17 ============================================================================ +01:24:17 Sending to : +01:24:17 ============================================================================ +01:24:17 + + +waiting on router queue for slot.... +01:24:20 ============================================================================ +01:24:20 Slot Id : <401> +01:24:20 Transaction Type : REQUEST +01:24:20 Received From : +01:24:20 ============================================================================ +01:24:20 FNo. Len. Field Value +01:24:20 ============================================================================ +01:24:20 [ 1] [ 4] [0800] +01:24:20 [ 7] [ 10] [0319062327] +01:24:20 [ 11] [ 6] [153424] +01:24:20 [ 70] [ 3] [301] +01:24:20 ============================================================================ +01:24:20 + + +waiting on router queue for slot.... +01:24:20 Sending to : +01:24:20 ============================================================================ +01:24:20 ============================================================================ +01:24:20 Slot Id : <401> +01:24:20 Transaction Type : RESPONSE +01:24:20 Received From : +01:24:20 ============================================================================ +01:24:20 FNo. Len. Field Value +01:24:20 ============================================================================ +01:24:20 [ 1] [ 4] [0810] +01:24:20 [ 7] [ 10] [0319062327] +01:24:20 [ 11] [ 6] [153424] +01:24:20 [ 39] [ 2] [00] +01:24:20 [ 70] [ 3] [301] +01:24:20 ============================================================================ +01:24:20 Calculate Source COMM Id = 2 +01:24:20 ============================================================================ +01:24:20 + + +waiting on router queue for slot.... +01:24:21 ============================================================================ +01:24:21 Slot Id : <416> +01:24:21 Transaction Type : REQUEST +01:24:21 Received From : +01:24:21 ============================================================================ +01:24:21 FNo. Len. Field Value +01:24:21 ============================================================================ +01:24:21 [ 1] [ 4] [0800] +01:24:21 [ 7] [ 10] [0320083608] +01:24:21 [ 11] [ 6] [013608] +01:24:21 [ 37] [ 12] [57901013608] +01:24:21 [ 70] [ 3] [301] +01:24:21 ============================================================================ +01:24:21 + + +waiting on router queue for slot.... +01:24:21 Sending to : +01:24:21 ============================================================================ +01:24:21 ============================================================================ +01:24:21 Slot Id : <416> +01:24:21 Transaction Type : RESPONSE +01:24:21 Received From : +01:24:21 ============================================================================ +01:24:21 FNo. Len. Field Value +01:24:21 ============================================================================ +01:24:21 [ 1] [ 4] [0810] +01:24:21 [ 7] [ 10] [0320083608] +01:24:21 [ 11] [ 6] [013608] +01:24:21 [ 37] [ 12] [579010136080] +01:24:21 [ 39] [ 2] [00] +01:24:21 [ 70] [ 3] [810] +01:24:21 ============================================================================ +01:24:21 Calculate Source COMM Id = 6 +01:24:21 ============================================================================ +01:24:21 + + +waiting on router queue for slot.... +01:24:30 ============================================================================ +01:24:30 Slot Id : <420> +01:24:30 Transaction Type : REQUEST +01:24:30 Received From : +01:24:30 ============================================================================ +01:24:30 FNo. Len. Field Value +01:24:30 ============================================================================ +01:24:30 [ 1] [ 4] [0800] +01:24:30 [ 7] [ 10] [0319062338] +01:24:30 [ 11] [ 6] [153425] +01:24:30 [ 70] [ 3] [301] +01:24:30 ============================================================================ +01:24:30 + + +waiting on router queue for slot.... +01:24:30 Sending to : +01:24:30 ============================================================================ +01:24:30 ============================================================================ +01:24:30 Slot Id : <420> +01:24:30 Transaction Type : RESPONSE +01:24:30 Received From : +01:24:30 ============================================================================ +01:24:30 FNo. Len. Field Value +01:24:30 ============================================================================ +01:24:30 [ 1] [ 4] [0810] +01:24:30 [ 7] [ 10] [0319062338] +01:24:30 [ 11] [ 6] [153425] +01:24:30 [ 39] [ 2] [00] +01:24:30 [ 70] [ 3] [301] +01:24:30 ============================================================================ +01:24:30 Calculate Source COMM Id = 2 +01:24:30 ============================================================================ +01:24:30 + + +waiting on router queue for slot.... +01:24:41 ============================================================================ +01:24:41 Slot Id : <415> +01:24:41 Transaction Type : REQUEST +01:24:41 Received From : +01:24:41 ============================================================================ +01:24:41 FNo. Len. Field Value +01:24:41 ============================================================================ +01:24:41 [ 1] [ 4] [0800] +01:24:41 [ 7] [ 10] [0319062348] +01:24:41 [ 11] [ 6] [153426] +01:24:41 [ 70] [ 3] [301] +01:24:41 ============================================================================ +01:24:41 + + +waiting on router queue for slot.... +01:24:41 Sending to : +01:24:41 ============================================================================ +01:24:41 ============================================================================ +01:24:41 Slot Id : <415> +01:24:41 Transaction Type : RESPONSE +01:24:41 Received From : +01:24:41 ============================================================================ +01:24:41 FNo. Len. Field Value +01:24:41 ============================================================================ +01:24:41 [ 1] [ 4] [0810] +01:24:41 [ 7] [ 10] [0319062348] +01:24:41 [ 11] [ 6] [153426] +01:24:41 [ 39] [ 2] [00] +01:24:41 [ 70] [ 3] [301] +01:24:41 ============================================================================ +01:24:41 Calculate Source COMM Id = 2 +01:24:41 ============================================================================ +01:24:41 + + +waiting on router queue for slot.... +01:24:52 ============================================================================ +01:24:52 Slot Id : <381> +01:24:52 Transaction Type : REQUEST +01:24:52 Received From : +01:24:52 ============================================================================ +01:24:52 FNo. Len. Field Value +01:24:52 ============================================================================ +01:24:52 [ 1] [ 4] [0800] +01:24:52 [ 7] [ 10] [0319062359] +01:24:52 [ 11] [ 6] [153427] +01:24:52 [ 70] [ 3] [301] +01:24:52 ============================================================================ +01:24:52 + + +waiting on router queue for slot.... +01:24:52 Sending to : +01:24:52 ============================================================================ +01:24:52 ============================================================================ +01:24:52 Slot Id : <381> +01:24:52 Transaction Type : RESPONSE +01:24:52 Received From : +01:24:52 ============================================================================ +01:24:52 FNo. Len. Field Value +01:24:52 ============================================================================ +01:24:52 [ 1] [ 4] [0810] +01:24:52 [ 7] [ 10] [0319062359] +01:24:52 [ 11] [ 6] [153427] +01:24:52 [ 39] [ 2] [00] +01:24:52 [ 70] [ 3] [301] +01:24:52 ============================================================================ +01:24:52 Calculate Source COMM Id = 2 +01:24:52 ============================================================================ +01:24:52 + + +waiting on router queue for slot.... +01:24:57 ============================================================================ +01:24:57 Slot Id : <425> +01:24:57 Transaction Type : REQUEST +01:24:57 Received From : +01:24:57 ============================================================================ +01:24:57 FNo. Len. Field Value +01:24:57 ============================================================================ +01:24:57 [ 1] [ 4] [0800] +01:24:57 [ 7] [ 10] [0319183242] +01:24:57 [ 11] [ 6] [059891] +01:24:57 [ 37] [ 12] [57901059891] +01:24:57 [ 70] [ 3] [301] +01:24:57 ============================================================================ +01:24:57 + + +waiting on router queue for slot.... +01:24:57 Sending to : +01:24:57 ============================================================================ +01:24:57 ============================================================================ +01:24:57 Slot Id : <425> +01:24:57 Transaction Type : RESPONSE +01:24:57 Received From : +01:24:57 ============================================================================ +01:24:57 FNo. Len. Field Value +01:24:57 ============================================================================ +01:24:57 [ 1] [ 4] [0810] +01:24:57 [ 7] [ 10] [0319183242] +01:24:57 [ 11] [ 6] [059891] +01:24:57 [ 37] [ 12] [579010598910] +01:24:57 [ 39] [ 2] [00] +01:24:57 [ 70] [ 3] [810] +01:24:57 ============================================================================ +01:24:57 Calculate Source COMM Id = 1 +01:24:57 ============================================================================ +01:24:57 + + +waiting on router queue for slot.... +01:25:02 ============================================================================ +01:25:02 Slot Id : <388> +01:25:02 Transaction Type : REQUEST +01:25:02 Received From : +01:25:02 ============================================================================ +01:25:02 FNo. Len. Field Value +01:25:02 ============================================================================ +01:25:02 [ 1] [ 4] [0800] +01:25:02 [ 7] [ 10] [0319062410] +01:25:02 [ 11] [ 6] [153428] +01:25:02 [ 70] [ 3] [301] +01:25:02 ============================================================================ +01:25:02 + + +waiting on router queue for slot.... +01:25:02 Sending to : +01:25:02 ============================================================================ +01:25:02 ============================================================================ +01:25:02 Slot Id : <388> +01:25:02 Transaction Type : RESPONSE +01:25:02 Received From : +01:25:02 ============================================================================ +01:25:02 FNo. Len. Field Value +01:25:02 ============================================================================ +01:25:02 [ 1] [ 4] [0810] +01:25:02 [ 7] [ 10] [0319062410] +01:25:02 [ 11] [ 6] [153428] +01:25:02 [ 39] [ 2] [00] +01:25:02 [ 70] [ 3] [301] +01:25:02 ============================================================================ +01:25:02 Calculate Source COMM Id = 2 +01:25:02 ============================================================================ +01:25:02 + + +waiting on router queue for slot.... +01:25:13 ============================================================================ +01:25:13 Slot Id : <398> +01:25:13 Transaction Type : REQUEST +01:25:13 Received From : +01:25:13 ============================================================================ +01:25:13 FNo. Len. Field Value +01:25:13 ============================================================================ +01:25:13 [ 1] [ 4] [0800] +01:25:13 [ 7] [ 10] [0319062420] +01:25:13 [ 11] [ 6] [153429] +01:25:13 [ 70] [ 3] [301] +01:25:13 ============================================================================ +01:25:13 + + +waiting on router queue for slot.... +01:25:13 Sending to : +01:25:13 ============================================================================ +01:25:13 ============================================================================ +01:25:13 Slot Id : <398> +01:25:13 Transaction Type : RESPONSE +01:25:13 Received From : +01:25:13 ============================================================================ +01:25:13 FNo. Len. Field Value +01:25:13 ============================================================================ +01:25:13 [ 1] [ 4] [0810] +01:25:13 [ 7] [ 10] [0319062420] +01:25:13 [ 11] [ 6] [153429] +01:25:13 [ 39] [ 2] [00] +01:25:13 [ 70] [ 3] [301] +01:25:13 ============================================================================ +01:25:13 Calculate Source COMM Id = 2 +01:25:13 ============================================================================ +01:25:13 + + +waiting on router queue for slot.... +01:25:19 ============================================================================ +01:25:19 Slot Id : <433> +01:25:19 Transaction Type : REQUEST +01:25:19 Received From : +01:25:19 ============================================================================ +01:25:19 FNo. Len. Field Value +01:25:19 ============================================================================ +01:25:19 [ 1] [ 4] [0800] +01:25:19 [ 2] [ 5] [02531] +01:25:19 [ 3] [ 6] [579018] +01:25:19 [ 7] [ 10] [0319182519] +01:25:19 [ 11] [ 6] [806494] +01:25:19 [ 15] [ 10] [0319182519] +01:25:19 [ 37] [ 11] [57901806494] +01:25:19 [ 70] [ 3] [001] +01:25:19 ============================================================================ +01:25:19 + + +waiting on router queue for slot.... +01:25:19 ============================================================================ +01:25:19 Slot Id : <433> +01:25:19 Transaction Type : RESPONSE +01:25:19 Received From : +01:25:19 ============================================================================ +01:25:19 FNo. Len. Field Value +01:25:19 ============================================================================ +01:25:19 [ 1] [ 4] [0810] +01:25:19 [ 7] [ 10] [0319182519] +01:25:19 [ 11] [ 6] [806494] +01:25:19 [ 15] [ 4] [0319] +01:25:19 [ 37] [ 12] [57901806494] +01:25:19 [ 39] [ 2] [00] +01:25:19 [ 70] [ 3] [001] +01:25:19 ============================================================================ +01:25:19 Sending to : +01:25:19 ============================================================================ +01:25:19 + + +waiting on router queue for slot.... +01:25:24 ============================================================================ +01:25:24 Slot Id : <364> +01:25:24 Transaction Type : REQUEST +01:25:24 Received From : +01:25:24 ============================================================================ +01:25:24 FNo. Len. Field Value +01:25:24 ============================================================================ +01:25:24 [ 1] [ 4] [0800] +01:25:24 [ 7] [ 10] [0319062431] +01:25:24 [ 11] [ 6] [153430] +01:25:24 [ 70] [ 3] [301] +01:25:24 ============================================================================ +01:25:24 + + +waiting on router queue for slot.... +01:25:24 Sending to : +01:25:24 ============================================================================ +01:25:24 ============================================================================ +01:25:24 Slot Id : <364> +01:25:24 Transaction Type : RESPONSE +01:25:24 Received From : +01:25:24 ============================================================================ +01:25:24 FNo. Len. Field Value +01:25:24 ============================================================================ +01:25:24 [ 1] [ 4] [0810] +01:25:24 [ 7] [ 10] [0319062431] +01:25:24 [ 11] [ 6] [153430] +01:25:24 [ 39] [ 2] [00] +01:25:24 [ 70] [ 3] [301] +01:25:24 ============================================================================ +01:25:24 Calculate Source COMM Id = 2 +01:25:24 ============================================================================ +01:25:24 + + +waiting on router queue for slot.... +01:25:26 ============================================================================ +01:25:26 Slot Id : <367> +01:25:26 Transaction Type : REQUEST +01:25:26 Received From : +01:25:26 ============================================================================ +01:25:26 FNo. Len. Field Value +01:25:26 ============================================================================ +01:25:26 [ 1] [ 4] [0800] +01:25:26 [ 7] [ 10] [0320083713] +01:25:26 [ 11] [ 6] [013713] +01:25:26 [ 37] [ 12] [57901013713] +01:25:26 [ 70] [ 3] [301] +01:25:26 ============================================================================ +01:25:26 + + +waiting on router queue for slot.... +01:25:26 Sending to : +01:25:26 ============================================================================ +01:25:26 ============================================================================ +01:25:26 Slot Id : <367> +01:25:26 Transaction Type : RESPONSE +01:25:26 Received From : +01:25:26 ============================================================================ +01:25:26 FNo. Len. Field Value +01:25:26 ============================================================================ +01:25:26 [ 1] [ 4] [0810] +01:25:26 [ 7] [ 10] [0320083713] +01:25:26 [ 11] [ 6] [013713] +01:25:26 [ 37] [ 12] [579010137130] +01:25:26 [ 39] [ 2] [00] +01:25:26 [ 70] [ 3] [810] +01:25:26 ============================================================================ +01:25:26 Calculate Source COMM Id = 6 +01:25:26 ============================================================================ +01:25:26 + + +waiting on router queue for slot.... +01:25:37 ============================================================================ +01:25:37 Slot Id : <430> +01:25:37 Transaction Type : REQUEST +01:25:37 Received From : +01:25:37 ============================================================================ +01:25:37 FNo. Len. Field Value +01:25:37 ============================================================================ +01:25:37 [ 1] [ 4] [0800] +01:25:37 [ 7] [ 10] [0319062444] +01:25:37 [ 11] [ 6] [153431] +01:25:37 [ 70] [ 3] [301] +01:25:37 ============================================================================ +01:25:37 + + +waiting on router queue for slot.... +01:25:37 Sending to : +01:25:37 ============================================================================ +01:25:37 ============================================================================ +01:25:37 Slot Id : <430> +01:25:37 Transaction Type : RESPONSE +01:25:37 Received From : +01:25:37 ============================================================================ +01:25:37 FNo. Len. Field Value +01:25:37 ============================================================================ +01:25:37 [ 1] [ 4] [0810] +01:25:37 [ 7] [ 10] [0319062444] +01:25:37 [ 11] [ 6] [153431] +01:25:37 [ 39] [ 2] [00] +01:25:37 [ 70] [ 3] [301] +01:25:37 ============================================================================ +01:25:37 Calculate Source COMM Id = 2 +01:25:37 ============================================================================ +01:25:37 + + +waiting on router queue for slot.... +01:25:47 ============================================================================ +01:25:47 Slot Id : <441> +01:25:47 Transaction Type : REQUEST +01:25:47 Received From : +01:25:47 ============================================================================ +01:25:47 FNo. Len. Field Value +01:25:47 ============================================================================ +01:25:47 [ 1] [ 4] [0800] +01:25:47 [ 7] [ 10] [0319062455] +01:25:47 [ 11] [ 6] [153432] +01:25:47 [ 70] [ 3] [301] +01:25:47 ============================================================================ +01:25:47 + + +waiting on router queue for slot.... +01:25:47 Sending to : +01:25:47 ============================================================================ +01:25:47 ============================================================================ +01:25:47 Slot Id : <441> +01:25:47 Transaction Type : RESPONSE +01:25:47 Received From : +01:25:47 ============================================================================ +01:25:47 FNo. Len. Field Value +01:25:47 ============================================================================ +01:25:47 [ 1] [ 4] [0810] +01:25:47 [ 7] [ 10] [0319062455] +01:25:47 [ 11] [ 6] [153432] +01:25:47 [ 39] [ 2] [00] +01:25:47 [ 70] [ 3] [301] +01:25:47 ============================================================================ +01:25:47 Calculate Source COMM Id = 2 +01:25:47 ============================================================================ +01:25:47 + + +waiting on router queue for slot.... +01:25:58 ============================================================================ +01:25:58 Slot Id : <375> +01:25:58 Transaction Type : REQUEST +01:25:58 Received From : +01:25:58 ============================================================================ +01:25:58 FNo. Len. Field Value +01:25:58 ============================================================================ +01:25:58 [ 1] [ 4] [0800] +01:25:58 [ 7] [ 10] [0319062505] +01:25:58 [ 11] [ 6] [153433] +01:25:58 [ 70] [ 3] [301] +01:25:58 ============================================================================ +01:25:58 + + +waiting on router queue for slot.... +01:25:58 Sending to : +01:25:58 ============================================================================ +01:25:58 ============================================================================ +01:25:58 Slot Id : <375> +01:25:58 Transaction Type : RESPONSE +01:25:58 Received From : +01:25:58 ============================================================================ +01:25:58 FNo. Len. Field Value +01:25:58 ============================================================================ +01:25:58 [ 1] [ 4] [0810] +01:25:58 [ 7] [ 10] [0319062505] +01:25:58 [ 11] [ 6] [153433] +01:25:58 [ 39] [ 2] [00] +01:25:58 [ 70] [ 3] [301] +01:25:58 ============================================================================ +01:25:58 Calculate Source COMM Id = 2 +01:25:58 ============================================================================ +01:25:58 + + +waiting on router queue for slot.... +01:26:14 ============================================================================ +01:26:14 Slot Id : <402> +01:26:14 Transaction Type : REQUEST +01:26:14 Received From : +01:26:14 ============================================================================ +01:26:14 FNo. Len. Field Value +01:26:14 ============================================================================ +01:26:14 [ 1] [ 4] [0800] +01:26:14 [ 7] [ 10] [0319062520] +01:26:14 [ 11] [ 6] [153434] +01:26:14 [ 70] [ 3] [301] +01:26:14 ============================================================================ +01:26:14 + + +waiting on router queue for slot.... +01:26:14 Sending to : +01:26:14 ============================================================================ +01:26:14 ============================================================================ +01:26:14 Slot Id : <402> +01:26:14 Transaction Type : RESPONSE +01:26:14 Received From : +01:26:14 ============================================================================ +01:26:14 FNo. Len. Field Value +01:26:14 ============================================================================ +01:26:14 [ 1] [ 4] [0810] +01:26:14 [ 7] [ 10] [0319062520] +01:26:14 [ 11] [ 6] [153434] +01:26:14 [ 39] [ 2] [00] +01:26:14 [ 70] [ 3] [301] +01:26:14 ============================================================================ +01:26:14 Calculate Source COMM Id = 2 +01:26:14 ============================================================================ +01:26:14 + + +waiting on router queue for slot.... +01:26:21 ============================================================================ +01:26:21 Slot Id : <408> +01:26:21 Transaction Type : REQUEST +01:26:21 Received From : +01:26:21 ============================================================================ +01:26:21 FNo. Len. Field Value +01:26:21 ============================================================================ +01:26:21 [ 1] [ 4] [0800] +01:26:21 [ 7] [ 10] [0319182412] +01:26:21 [ 11] [ 6] [069136] +01:26:21 [ 37] [ 12] [57901069136] +01:26:21 [ 70] [ 3] [301] +01:26:21 ============================================================================ +01:26:21 + + +waiting on router queue for slot.... +01:26:21 Sending to : +01:26:21 ============================================================================ +01:26:21 ============================================================================ +01:26:21 Slot Id : <408> +01:26:21 Transaction Type : RESPONSE +01:26:21 Received From : +01:26:21 ============================================================================ +01:26:21 FNo. Len. Field Value +01:26:21 ============================================================================ +01:26:21 [ 1] [ 4] [0810] +01:26:21 [ 7] [ 10] [0319182412] +01:26:21 [ 11] [ 6] [069136] +01:26:21 [ 37] [ 12] [579010691360] +01:26:21 [ 39] [ 2] [00] +01:26:21 [ 70] [ 3] [810] +01:26:21 ============================================================================ +01:26:21 Calculate Source COMM Id = 4 +01:26:21 ============================================================================ +01:26:21 + + +waiting on router queue for slot.... +01:26:21 ============================================================================ +01:26:21 Slot Id : <437> +01:26:21 Transaction Type : REQUEST +01:26:21 Received From : +01:26:21 ============================================================================ +01:26:21 FNo. Len. Field Value +01:26:21 ============================================================================ +01:26:21 [ 1] [ 4] [0800] +01:26:21 [ 2] [ 5] [02531] +01:26:21 [ 3] [ 6] [579018] +01:26:21 [ 7] [ 10] [0319182621] +01:26:21 [ 11] [ 6] [806495] +01:26:21 [ 15] [ 10] [0319182621] +01:26:21 [ 37] [ 11] [57901806495] +01:26:21 [ 70] [ 3] [001] +01:26:21 ============================================================================ +01:26:21 + + +waiting on router queue for slot.... +01:26:21 ============================================================================ +01:26:21 Slot Id : <437> +01:26:21 Transaction Type : RESPONSE +01:26:21 Received From : +01:26:21 ============================================================================ +01:26:21 FNo. Len. Field Value +01:26:21 ============================================================================ +01:26:21 [ 1] [ 4] [0810] +01:26:21 [ 7] [ 10] [0319182621] +01:26:21 [ 11] [ 6] [806495] +01:26:21 [ 15] [ 4] [0319] +01:26:21 [ 37] [ 12] [57901806495] +01:26:21 [ 39] [ 2] [00] +01:26:21 [ 70] [ 3] [001] +01:26:21 ============================================================================ +01:26:21 Sending to : +01:26:21 ============================================================================ +01:26:21 + + +waiting on router queue for slot.... +01:26:29 ============================================================================ +01:26:29 Slot Id : <409> +01:26:29 Transaction Type : REQUEST +01:26:29 Received From : +01:26:29 ============================================================================ +01:26:29 FNo. Len. Field Value +01:26:29 ============================================================================ +01:26:29 [ 1] [ 4] [0800] +01:26:29 [ 7] [ 10] [0319062536] +01:26:29 [ 11] [ 6] [153435] +01:26:29 [ 70] [ 3] [301] +01:26:29 ============================================================================ +01:26:29 + + +waiting on router queue for slot.... +01:26:29 Sending to : +01:26:29 ============================================================================ +01:26:29 ============================================================================ +01:26:29 Slot Id : <409> +01:26:29 Transaction Type : RESPONSE +01:26:29 Received From : +01:26:29 ============================================================================ +01:26:29 FNo. Len. Field Value +01:26:29 ============================================================================ +01:26:29 [ 1] [ 4] [0810] +01:26:29 [ 7] [ 10] [0319062536] +01:26:29 [ 11] [ 6] [153435] +01:26:29 [ 39] [ 2] [00] +01:26:29 [ 70] [ 3] [301] +01:26:29 ============================================================================ +01:26:29 Calculate Source COMM Id = 2 +01:26:29 ============================================================================ +01:26:29 + + +waiting on router queue for slot.... +01:26:31 ============================================================================ +01:26:31 Slot Id : <385> +01:26:31 Transaction Type : REQUEST +01:26:31 Received From : +01:26:31 ============================================================================ +01:26:31 FNo. Len. Field Value +01:26:31 ============================================================================ +01:26:31 [ 1] [ 4] [0800] +01:26:31 [ 7] [ 10] [0320083818] +01:26:31 [ 11] [ 6] [013818] +01:26:31 [ 37] [ 12] [57901013818] +01:26:31 [ 70] [ 3] [301] +01:26:31 ============================================================================ +01:26:31 + + +waiting on router queue for slot.... +01:26:31 Sending to : +01:26:31 ============================================================================ +01:26:31 ============================================================================ +01:26:31 Slot Id : <385> +01:26:31 Transaction Type : RESPONSE +01:26:31 Received From : +01:26:31 ============================================================================ +01:26:31 FNo. Len. Field Value +01:26:31 ============================================================================ +01:26:31 [ 1] [ 4] [0810] +01:26:31 [ 7] [ 10] [0320083818] +01:26:31 [ 11] [ 6] [013818] +01:26:31 [ 37] [ 12] [579010138180] +01:26:31 [ 39] [ 2] [00] +01:26:31 [ 70] [ 3] [810] +01:26:31 ============================================================================ +01:26:31 Calculate Source COMM Id = 6 +01:26:31 ============================================================================ +01:26:31 + + +waiting on router queue for slot.... +01:26:40 ============================================================================ +01:26:40 Slot Id : <403> +01:26:40 Transaction Type : REQUEST +01:26:40 Received From : +01:26:40 ============================================================================ +01:26:40 FNo. Len. Field Value +01:26:40 ============================================================================ +01:26:40 [ 1] [ 4] [0800] +01:26:40 [ 7] [ 10] [0319062547] +01:26:40 [ 11] [ 6] [153436] +01:26:40 [ 70] [ 3] [301] +01:26:40 ============================================================================ +01:26:40 + + +waiting on router queue for slot.... +01:26:40 Sending to : +01:26:40 ============================================================================ +01:26:40 ============================================================================ +01:26:40 Slot Id : <403> +01:26:40 Transaction Type : RESPONSE +01:26:40 Received From : +01:26:40 ============================================================================ +01:26:40 FNo. Len. Field Value +01:26:40 ============================================================================ +01:26:40 [ 1] [ 4] [0810] +01:26:40 [ 7] [ 10] [0319062547] +01:26:40 [ 11] [ 6] [153436] +01:26:40 [ 39] [ 2] [00] +01:26:40 [ 70] [ 3] [301] +01:26:40 ============================================================================ +01:26:40 Calculate Source COMM Id = 2 +01:26:40 ============================================================================ +01:26:40 + + +waiting on router queue for slot.... +01:26:55 ============================================================================ +01:26:55 Slot Id : <362> +01:26:55 Transaction Type : REQUEST +01:26:55 Received From : +01:26:55 ============================================================================ +01:26:55 FNo. Len. Field Value +01:26:55 ============================================================================ +01:26:55 [ 1] [ 4] [0800] +01:26:55 [ 7] [ 10] [0319062602] +01:26:55 [ 11] [ 6] [153437] +01:26:55 [ 70] [ 3] [301] +01:26:55 ============================================================================ +01:26:55 + + +waiting on router queue for slot.... +01:26:55 Sending to : +01:26:55 ============================================================================ +01:26:55 ============================================================================ +01:26:55 Slot Id : <362> +01:26:55 Transaction Type : RESPONSE +01:26:55 Received From : +01:26:55 ============================================================================ +01:26:55 FNo. Len. Field Value +01:26:55 ============================================================================ +01:26:55 [ 1] [ 4] [0810] +01:26:55 [ 7] [ 10] [0319062602] +01:26:55 [ 11] [ 6] [153437] +01:26:55 [ 39] [ 2] [00] +01:26:55 [ 70] [ 3] [301] +01:26:55 ============================================================================ +01:26:55 Calculate Source COMM Id = 2 +01:26:55 ============================================================================ +01:26:55 + + +waiting on router queue for slot.... +01:27:11 ============================================================================ +01:27:11 Slot Id : <392> +01:27:11 Transaction Type : REQUEST +01:27:11 Received From : +01:27:11 ============================================================================ +01:27:11 FNo. Len. Field Value +01:27:11 ============================================================================ +01:27:11 [ 1] [ 4] [0800] +01:27:11 [ 7] [ 10] [0319062619] +01:27:11 [ 11] [ 6] [153438] +01:27:11 [ 70] [ 3] [301] +01:27:11 ============================================================================ +01:27:11 + + +waiting on router queue for slot.... +01:27:11 Sending to : +01:27:11 ============================================================================ +01:27:11 ============================================================================ +01:27:11 Slot Id : <392> +01:27:11 Transaction Type : RESPONSE +01:27:11 Received From : +01:27:11 ============================================================================ +01:27:11 FNo. Len. Field Value +01:27:11 ============================================================================ +01:27:11 [ 1] [ 4] [0810] +01:27:11 [ 7] [ 10] [0319062619] +01:27:11 [ 11] [ 6] [153438] +01:27:11 [ 39] [ 2] [00] +01:27:11 [ 70] [ 3] [301] +01:27:11 ============================================================================ +01:27:11 Calculate Source COMM Id = 2 +01:27:11 ============================================================================ +01:27:11 + + +waiting on router queue for slot.... +01:27:22 ============================================================================ +01:27:22 Slot Id : <412> +01:27:22 Transaction Type : REQUEST +01:27:22 Received From : +01:27:22 ============================================================================ +01:27:22 FNo. Len. Field Value +01:27:22 ============================================================================ +01:27:22 [ 1] [ 4] [0800] +01:27:22 [ 7] [ 10] [0319062629] +01:27:22 [ 11] [ 6] [153439] +01:27:22 [ 70] [ 3] [301] +01:27:22 ============================================================================ +01:27:22 + + +waiting on router queue for slot.... +01:27:22 Sending to : +01:27:22 ============================================================================ +01:27:22 ============================================================================ +01:27:22 Slot Id : <412> +01:27:22 Transaction Type : RESPONSE +01:27:22 Received From : +01:27:22 ============================================================================ +01:27:22 FNo. Len. Field Value +01:27:22 ============================================================================ +01:27:22 [ 1] [ 4] [0810] +01:27:22 [ 7] [ 10] [0319062629] +01:27:22 [ 11] [ 6] [153439] +01:27:22 [ 39] [ 2] [00] +01:27:22 [ 70] [ 3] [301] +01:27:22 ============================================================================ +01:27:22 Calculate Source COMM Id = 2 +01:27:22 ============================================================================ +01:27:22 + + +waiting on router queue for slot.... +01:27:23 ============================================================================ +01:27:23 Slot Id : <447> +01:27:23 Transaction Type : REQUEST +01:27:23 Received From : +01:27:23 ============================================================================ +01:27:23 FNo. Len. Field Value +01:27:23 ============================================================================ +01:27:23 [ 1] [ 4] [0800] +01:27:23 [ 2] [ 5] [02531] +01:27:23 [ 3] [ 6] [579018] +01:27:23 [ 7] [ 10] [0319182723] +01:27:23 [ 11] [ 6] [806496] +01:27:23 [ 15] [ 10] [0319182723] +01:27:23 [ 37] [ 11] [57901806496] +01:27:23 [ 70] [ 3] [001] +01:27:23 ============================================================================ +01:27:23 + + +waiting on router queue for slot.... +01:27:23 ============================================================================ +01:27:23 Slot Id : <447> +01:27:23 Transaction Type : RESPONSE +01:27:23 Received From : +01:27:23 ============================================================================ +01:27:23 FNo. Len. Field Value +01:27:23 ============================================================================ +01:27:23 [ 1] [ 4] [0810] +01:27:23 [ 7] [ 10] [0319182723] +01:27:23 [ 11] [ 6] [806496] +01:27:23 [ 15] [ 4] [0319] +01:27:23 [ 37] [ 12] [57901806496] +01:27:23 [ 39] [ 2] [00] +01:27:23 [ 70] [ 3] [001] +01:27:23 ============================================================================ +01:27:23 Sending to : +01:27:23 ============================================================================ +01:27:23 + + +waiting on router queue for slot.... +01:27:36 ============================================================================ +01:27:36 Slot Id : <450> +01:27:36 Transaction Type : REQUEST +01:27:36 Received From : +01:27:36 ============================================================================ +01:27:36 FNo. Len. Field Value +01:27:36 ============================================================================ +01:27:36 [ 1] [ 4] [0800] +01:27:36 [ 7] [ 10] [0320083923] +01:27:36 [ 11] [ 6] [013923] +01:27:36 [ 37] [ 12] [57901013923] +01:27:36 [ 70] [ 3] [301] +01:27:36 ============================================================================ +01:27:36 + + +waiting on router queue for slot.... +01:27:36 Sending to : +01:27:36 ============================================================================ +01:27:36 ============================================================================ +01:27:36 Slot Id : <450> +01:27:36 Transaction Type : RESPONSE +01:27:36 Received From : +01:27:36 ============================================================================ +01:27:36 FNo. Len. Field Value +01:27:36 ============================================================================ +01:27:36 [ 1] [ 4] [0810] +01:27:36 [ 7] [ 10] [0320083923] +01:27:36 [ 11] [ 6] [013923] +01:27:36 [ 37] [ 12] [579010139230] +01:27:36 [ 39] [ 2] [00] +01:27:36 [ 70] [ 3] [810] +01:27:36 ============================================================================ +01:27:36 Calculate Source COMM Id = 6 +01:27:36 ============================================================================ +01:27:36 + + +waiting on router queue for slot.... +01:27:37 ============================================================================ +01:27:37 Slot Id : <417> +01:27:37 Transaction Type : REQUEST +01:27:37 Received From : +01:27:37 ============================================================================ +01:27:37 FNo. Len. Field Value +01:27:37 ============================================================================ +01:27:37 [ 1] [ 4] [0800] +01:27:37 [ 7] [ 10] [0319062645] +01:27:37 [ 11] [ 6] [153440] +01:27:37 [ 70] [ 3] [301] +01:27:37 ============================================================================ +01:27:37 + + +waiting on router queue for slot.... +01:27:37 Sending to : +01:27:37 ============================================================================ +01:27:37 ============================================================================ +01:27:37 Slot Id : <417> +01:27:37 Transaction Type : RESPONSE +01:27:37 Received From : +01:27:37 ============================================================================ +01:27:37 FNo. Len. Field Value +01:27:37 ============================================================================ +01:27:37 [ 1] [ 4] [0810] +01:27:37 [ 7] [ 10] [0319062645] +01:27:37 [ 11] [ 6] [153440] +01:27:37 [ 39] [ 2] [00] +01:27:37 [ 70] [ 3] [301] +01:27:37 ============================================================================ +01:27:37 Calculate Source COMM Id = 2 +01:27:37 ============================================================================ +01:27:37 + + +waiting on router queue for slot.... +01:27:48 ============================================================================ +01:27:48 Slot Id : <386> +01:27:48 Transaction Type : REQUEST +01:27:48 Received From : +01:27:48 ============================================================================ +01:27:48 FNo. Len. Field Value +01:27:48 ============================================================================ +01:27:48 [ 1] [ 4] [0800] +01:27:48 [ 7] [ 10] [0319062655] +01:27:48 [ 11] [ 6] [153441] +01:27:48 [ 70] [ 3] [301] +01:27:48 ============================================================================ +01:27:48 + + +waiting on router queue for slot.... +01:27:48 Sending to : +01:27:48 ============================================================================ +01:27:48 ============================================================================ +01:27:48 Slot Id : <386> +01:27:48 Transaction Type : RESPONSE +01:27:48 Received From : +01:27:48 ============================================================================ +01:27:48 FNo. Len. Field Value +01:27:48 ============================================================================ +01:27:48 [ 1] [ 4] [0810] +01:27:48 [ 7] [ 10] [0319062655] +01:27:48 [ 11] [ 6] [153441] +01:27:48 [ 39] [ 2] [00] +01:27:48 [ 70] [ 3] [301] +01:27:48 ============================================================================ +01:27:48 Calculate Source COMM Id = 2 +01:27:48 ============================================================================ +01:27:48 + + +waiting on router queue for slot.... +01:28:03 ============================================================================ +01:28:03 Slot Id : <391> +01:28:03 Transaction Type : REQUEST +01:28:03 Received From : +01:28:03 ============================================================================ +01:28:03 FNo. Len. Field Value +01:28:03 ============================================================================ +01:28:03 [ 1] [ 4] [0800] +01:28:03 [ 7] [ 10] [0319062711] +01:28:03 [ 11] [ 6] [153442] +01:28:03 [ 70] [ 3] [301] +01:28:03 ============================================================================ +01:28:03 + + +waiting on router queue for slot.... +01:28:03 Sending to : +01:28:03 ============================================================================ +01:28:03 ============================================================================ +01:28:03 Slot Id : <391> +01:28:03 Transaction Type : RESPONSE +01:28:03 Received From : +01:28:03 ============================================================================ +01:28:03 FNo. Len. Field Value +01:28:03 ============================================================================ +01:28:03 [ 1] [ 4] [0810] +01:28:03 [ 7] [ 10] [0319062711] +01:28:03 [ 11] [ 6] [153442] +01:28:03 [ 39] [ 2] [00] +01:28:03 [ 70] [ 3] [301] +01:28:03 ============================================================================ +01:28:03 Calculate Source COMM Id = 2 +01:28:03 ============================================================================ +01:28:03 + + +waiting on router queue for slot.... +01:28:14 ============================================================================ +01:28:14 Slot Id : <377> +01:28:14 Transaction Type : REQUEST +01:28:14 Received From : +01:28:14 ============================================================================ +01:28:14 FNo. Len. Field Value +01:28:14 ============================================================================ +01:28:14 [ 1] [ 4] [0800] +01:28:14 [ 7] [ 10] [0319062721] +01:28:14 [ 11] [ 6] [153443] +01:28:14 [ 70] [ 3] [301] +01:28:14 ============================================================================ +01:28:14 + + +waiting on router queue for slot.... +01:28:14 Sending to : +01:28:14 ============================================================================ +01:28:14 ============================================================================ +01:28:14 Slot Id : <377> +01:28:14 Transaction Type : RESPONSE +01:28:14 Received From : +01:28:14 ============================================================================ +01:28:14 FNo. Len. Field Value +01:28:14 ============================================================================ +01:28:14 [ 1] [ 4] [0810] +01:28:14 [ 7] [ 10] [0319062721] +01:28:14 [ 11] [ 6] [153443] +01:28:14 [ 39] [ 2] [00] +01:28:14 [ 70] [ 3] [301] +01:28:14 ============================================================================ +01:28:14 Calculate Source COMM Id = 2 +01:28:14 ============================================================================ +01:28:14 + + +waiting on router queue for slot.... +01:28:25 ============================================================================ +01:28:25 Slot Id : <405> +01:28:25 Transaction Type : REQUEST +01:28:25 Received From : +01:28:25 ============================================================================ +01:28:25 FNo. Len. Field Value +01:28:25 ============================================================================ +01:28:25 [ 1] [ 4] [0800] +01:28:25 [ 7] [ 10] [0319062732] +01:28:25 [ 11] [ 6] [153444] +01:28:25 [ 70] [ 3] [301] +01:28:25 ============================================================================ +01:28:25 + + +waiting on router queue for slot.... +01:28:25 Sending to : +01:28:25 ============================================================================ +01:28:25 ============================================================================ +01:28:25 Slot Id : <405> +01:28:25 Transaction Type : RESPONSE +01:28:25 Received From : +01:28:25 ============================================================================ +01:28:25 FNo. Len. Field Value +01:28:25 ============================================================================ +01:28:25 [ 1] [ 4] [0810] +01:28:25 [ 7] [ 10] [0319062732] +01:28:25 [ 11] [ 6] [153444] +01:28:25 [ 39] [ 2] [00] +01:28:25 [ 70] [ 3] [301] +01:28:25 ============================================================================ +01:28:25 Calculate Source COMM Id = 2 +01:28:25 ============================================================================ +01:28:25 + + +waiting on router queue for slot.... +01:28:25 ============================================================================ +01:28:25 Slot Id : <443> +01:28:25 Transaction Type : REQUEST +01:28:25 Received From : +01:28:25 ============================================================================ +01:28:25 FNo. Len. Field Value +01:28:25 ============================================================================ +01:28:25 [ 1] [ 4] [0800] +01:28:25 [ 2] [ 5] [02531] +01:28:25 [ 3] [ 6] [579018] +01:28:25 [ 7] [ 10] [0319182825] +01:28:25 [ 11] [ 6] [806497] +01:28:25 [ 15] [ 10] [0319182825] +01:28:25 [ 37] [ 11] [57901806497] +01:28:25 [ 70] [ 3] [001] +01:28:25 ============================================================================ +01:28:25 + + +waiting on router queue for slot.... +01:28:25 ============================================================================ +01:28:25 Slot Id : <443> +01:28:25 Transaction Type : RESPONSE +01:28:25 Received From : +01:28:25 ============================================================================ +01:28:25 FNo. Len. Field Value +01:28:25 ============================================================================ +01:28:25 [ 1] [ 4] [0810] +01:28:25 [ 7] [ 10] [0319182825] +01:28:25 [ 11] [ 6] [806497] +01:28:25 [ 15] [ 4] [0319] +01:28:25 [ 37] [ 12] [57901806497] +01:28:25 [ 39] [ 2] [00] +01:28:25 [ 70] [ 3] [001] +01:28:25 ============================================================================ +01:28:25 Sending to : +01:28:25 ============================================================================ +01:28:25 + + +waiting on router queue for slot.... +01:28:41 ============================================================================ +01:28:41 Slot Id : <456> +01:28:41 Transaction Type : REQUEST +01:28:41 Received From : +01:28:41 ============================================================================ +01:28:41 FNo. Len. Field Value +01:28:41 ============================================================================ +01:28:41 [ 1] [ 4] [0800] +01:28:41 [ 7] [ 10] [0319062748] +01:28:41 [ 11] [ 6] [153445] +01:28:41 [ 70] [ 3] [301] +01:28:41 ============================================================================ +01:28:41 + + +waiting on router queue for slot.... +01:28:41 Sending to : +01:28:41 ============================================================================ +01:28:41 ============================================================================ +01:28:41 Slot Id : <456> +01:28:41 Transaction Type : RESPONSE +01:28:41 Received From : +01:28:41 ============================================================================ +01:28:41 FNo. Len. Field Value +01:28:41 ============================================================================ +01:28:41 [ 1] [ 4] [0810] +01:28:41 [ 7] [ 10] [0319062748] +01:28:41 [ 11] [ 6] [153445] +01:28:41 [ 39] [ 2] [00] +01:28:41 [ 70] [ 3] [301] +01:28:41 ============================================================================ +01:28:41 Calculate Source COMM Id = 2 +01:28:41 ============================================================================ +01:28:41 + + +waiting on router queue for slot.... +01:28:41 ============================================================================ +01:28:41 Slot Id : <446> +01:28:41 Transaction Type : REQUEST +01:28:41 Received From : +01:28:41 ============================================================================ +01:28:41 FNo. Len. Field Value +01:28:41 ============================================================================ +01:28:41 [ 1] [ 4] [0800] +01:28:41 [ 7] [ 10] [0320084028] +01:28:41 [ 11] [ 6] [014028] +01:28:41 [ 37] [ 12] [57901014028] +01:28:41 [ 70] [ 3] [301] +01:28:41 ============================================================================ +01:28:41 + + +waiting on router queue for slot.... +01:28:41 Sending to : +01:28:41 ============================================================================ +01:28:41 ============================================================================ +01:28:41 Slot Id : <446> +01:28:41 Transaction Type : RESPONSE +01:28:41 Received From : +01:28:41 ============================================================================ +01:28:41 FNo. Len. Field Value +01:28:41 ============================================================================ +01:28:41 [ 1] [ 4] [0810] +01:28:41 [ 7] [ 10] [0320084028] +01:28:41 [ 11] [ 6] [014028] +01:28:41 [ 37] [ 12] [579010140280] +01:28:41 [ 39] [ 2] [00] +01:28:41 [ 70] [ 3] [810] +01:28:41 ============================================================================ +01:28:41 Calculate Source COMM Id = 6 +01:28:41 ============================================================================ +01:28:41 + + +waiting on router queue for slot.... +01:28:52 ============================================================================ +01:28:52 Slot Id : <435> +01:28:52 Transaction Type : REQUEST +01:28:52 Received From : +01:28:52 ============================================================================ +01:28:52 FNo. Len. Field Value +01:28:52 ============================================================================ +01:28:52 [ 1] [ 4] [0800] +01:28:52 [ 7] [ 10] [0319062759] +01:28:52 [ 11] [ 6] [153446] +01:28:52 [ 70] [ 3] [301] +01:28:52 ============================================================================ +01:28:52 + + +waiting on router queue for slot.... +01:28:52 Sending to : +01:28:52 ============================================================================ +01:28:52 ============================================================================ +01:28:52 Slot Id : <435> +01:28:52 Transaction Type : RESPONSE +01:28:52 Received From : +01:28:52 ============================================================================ +01:28:52 FNo. Len. Field Value +01:28:52 ============================================================================ +01:28:52 [ 1] [ 4] [0810] +01:28:52 [ 7] [ 10] [0319062759] +01:28:52 [ 11] [ 6] [153446] +01:28:52 [ 39] [ 2] [00] +01:28:52 [ 70] [ 3] [301] +01:28:52 ============================================================================ +01:28:52 Calculate Source COMM Id = 2 +01:28:52 ============================================================================ +01:28:52 + + +waiting on router queue for slot.... +01:29:02 ============================================================================ +01:29:02 Slot Id : <404> +01:29:02 Transaction Type : REQUEST +01:29:02 Received From : +01:29:02 ============================================================================ +01:29:02 FNo. Len. Field Value +01:29:02 ============================================================================ +01:29:02 [ 1] [ 4] [0800] +01:29:02 [ 7] [ 10] [0319062809] +01:29:02 [ 11] [ 6] [153447] +01:29:02 [ 70] [ 3] [301] +01:29:02 ============================================================================ +01:29:02 + + +waiting on router queue for slot.... +01:29:02 Sending to : +01:29:02 ============================================================================ +01:29:02 ============================================================================ +01:29:02 Slot Id : <404> +01:29:02 Transaction Type : RESPONSE +01:29:02 Received From : +01:29:02 ============================================================================ +01:29:02 FNo. Len. Field Value +01:29:02 ============================================================================ +01:29:02 [ 1] [ 4] [0810] +01:29:02 [ 7] [ 10] [0319062809] +01:29:02 [ 11] [ 6] [153447] +01:29:02 [ 39] [ 2] [00] +01:29:02 [ 70] [ 3] [301] +01:29:02 ============================================================================ +01:29:02 Calculate Source COMM Id = 2 +01:29:02 ============================================================================ +01:29:02 + + +waiting on router queue for slot.... +01:29:13 ============================================================================ +01:29:13 Slot Id : <424> +01:29:13 Transaction Type : REQUEST +01:29:13 Received From : +01:29:13 ============================================================================ +01:29:13 FNo. Len. Field Value +01:29:13 ============================================================================ +01:29:13 [ 1] [ 4] [0800] +01:29:13 [ 7] [ 10] [0319062820] +01:29:13 [ 11] [ 6] [153448] +01:29:13 [ 70] [ 3] [301] +01:29:13 ============================================================================ +01:29:13 + + +waiting on router queue for slot.... +01:29:13 Sending to : +01:29:13 ============================================================================ +01:29:13 ============================================================================ +01:29:13 Slot Id : <424> +01:29:13 Transaction Type : RESPONSE +01:29:13 Received From : +01:29:13 ============================================================================ +01:29:13 FNo. Len. Field Value +01:29:13 ============================================================================ +01:29:13 [ 1] [ 4] [0810] +01:29:13 [ 7] [ 10] [0319062820] +01:29:13 [ 11] [ 6] [153448] +01:29:13 [ 39] [ 2] [00] +01:29:13 [ 70] [ 3] [301] +01:29:13 ============================================================================ +01:29:13 Calculate Source COMM Id = 2 +01:29:13 ============================================================================ +01:29:13 + + +waiting on router queue for slot.... +01:29:27 ============================================================================ +01:29:27 Slot Id : <429> +01:29:27 Transaction Type : REQUEST +01:29:27 Received From : +01:29:27 ============================================================================ +01:29:27 FNo. Len. Field Value +01:29:27 ============================================================================ +01:29:27 [ 1] [ 4] [0800] +01:29:27 [ 2] [ 5] [02531] +01:29:27 [ 3] [ 6] [579018] +01:29:27 [ 7] [ 10] [0319182927] +01:29:27 [ 11] [ 6] [806498] +01:29:27 [ 15] [ 10] [0319182927] +01:29:27 [ 37] [ 11] [57901806498] +01:29:27 [ 70] [ 3] [001] +01:29:27 ============================================================================ +01:29:27 + + +waiting on router queue for slot.... +01:29:27 ============================================================================ +01:29:27 Slot Id : <429> +01:29:27 Transaction Type : RESPONSE +01:29:27 Received From : +01:29:27 ============================================================================ +01:29:27 FNo. Len. Field Value +01:29:27 ============================================================================ +01:29:27 [ 1] [ 4] [0810] +01:29:27 [ 7] [ 10] [0319182927] +01:29:27 [ 11] [ 6] [806498] +01:29:27 [ 15] [ 4] [0319] +01:29:27 [ 37] [ 12] [57901806498] +01:29:27 [ 39] [ 2] [00] +01:29:27 [ 70] [ 3] [001] +01:29:27 ============================================================================ +01:29:27 Sending to : +01:29:27 ============================================================================ +01:29:27 + + +waiting on router queue for slot.... +01:29:28 ============================================================================ +01:29:28 Slot Id : <442> +01:29:28 Transaction Type : REQUEST +01:29:28 Received From : +01:29:28 ============================================================================ +01:29:28 FNo. Len. Field Value +01:29:28 ============================================================================ +01:29:28 [ 1] [ 4] [0800] +01:29:28 [ 7] [ 10] [0319062836] +01:29:28 [ 11] [ 6] [153449] +01:29:28 [ 70] [ 3] [301] +01:29:28 ============================================================================ +01:29:28 + + +waiting on router queue for slot.... +01:29:28 Sending to : +01:29:28 ============================================================================ +01:29:28 ============================================================================ +01:29:28 Slot Id : <442> +01:29:28 Transaction Type : RESPONSE +01:29:28 Received From : +01:29:28 ============================================================================ +01:29:28 FNo. Len. Field Value +01:29:28 ============================================================================ +01:29:28 [ 1] [ 4] [0810] +01:29:28 [ 7] [ 10] [0319062836] +01:29:28 [ 11] [ 6] [153449] +01:29:28 [ 39] [ 2] [00] +01:29:28 [ 70] [ 3] [301] +01:29:28 ============================================================================ +01:29:28 Calculate Source COMM Id = 2 +01:29:28 ============================================================================ +01:29:28 + + +waiting on router queue for slot.... +01:29:30 ============================================================================ +01:29:30 Slot Id : <445> +01:29:30 Transaction Type : REQUEST +01:29:30 Received From : +01:29:30 ============================================================================ +01:29:30 FNo. Len. Field Value +01:29:30 ============================================================================ +01:29:30 [ 1] [ 4] [0800] +01:29:30 [ 7] [ 10] [0319182926] +01:29:30 [ 11] [ 6] [066880] +01:29:30 [ 37] [ 12] [507901066880] +01:29:30 [ 70] [ 3] [001] +01:29:30 ============================================================================ +01:29:30 + + +waiting on router queue for slot.... +01:29:30 Sending to : +01:29:30 ============================================================================ +01:29:30 ============================================================================ +01:29:30 Slot Id : <445> +01:29:30 Transaction Type : RESPONSE +01:29:30 Received From : +01:29:30 ============================================================================ +01:29:30 FNo. Len. Field Value +01:29:30 ============================================================================ +01:29:30 [ 1] [ 4] [0810] +01:29:30 [ 7] [ 10] [0319182926] +01:29:30 [ 11] [ 6] [066880] +01:29:30 [ 37] [ 12] [507901066880] +01:29:30 [ 39] [ 2] [00] +01:29:30 [ 70] [ 3] [001] +01:29:30 ============================================================================ +01:29:30 Calculate Source COMM Id = 0 +01:29:30 ============================================================================ +01:29:30 + + +waiting on router queue for slot.... +01:29:39 ============================================================================ +01:29:39 Slot Id : <438> +01:29:39 Transaction Type : REQUEST +01:29:39 Received From : +01:29:39 ============================================================================ +01:29:39 FNo. Len. Field Value +01:29:39 ============================================================================ +01:29:39 [ 1] [ 4] [0800] +01:29:39 [ 7] [ 10] [0319062846] +01:29:39 [ 11] [ 6] [153450] +01:29:39 [ 70] [ 3] [301] +01:29:39 ============================================================================ +01:29:39 + + +waiting on router queue for slot.... +01:29:39 Sending to : +01:29:39 ============================================================================ +01:29:39 ============================================================================ +01:29:39 Slot Id : <438> +01:29:39 Transaction Type : RESPONSE +01:29:39 Received From : +01:29:39 ============================================================================ +01:29:39 FNo. Len. Field Value +01:29:39 ============================================================================ +01:29:39 [ 1] [ 4] [0810] +01:29:39 [ 7] [ 10] [0319062846] +01:29:39 [ 11] [ 6] [153450] +01:29:39 [ 39] [ 2] [00] +01:29:39 [ 70] [ 3] [301] +01:29:39 ============================================================================ +01:29:39 Calculate Source COMM Id = 2 +01:29:39 ============================================================================ +01:29:39 + + +waiting on router queue for slot.... +01:29:46 ============================================================================ +01:29:46 Slot Id : <434> +01:29:46 Transaction Type : REQUEST +01:29:46 Received From : +01:29:46 ============================================================================ +01:29:46 FNo. Len. Field Value +01:29:46 ============================================================================ +01:29:46 [ 1] [ 4] [0800] +01:29:46 [ 7] [ 10] [0320084133] +01:29:46 [ 11] [ 6] [014133] +01:29:46 [ 37] [ 12] [57901014133] +01:29:46 [ 70] [ 3] [301] +01:29:46 ============================================================================ +01:29:47 + + +waiting on router queue for slot.... +01:29:47 Sending to : +01:29:47 ============================================================================ +01:29:47 ============================================================================ +01:29:47 Slot Id : <434> +01:29:47 Transaction Type : RESPONSE +01:29:47 Received From : +01:29:47 ============================================================================ +01:29:47 FNo. Len. Field Value +01:29:47 ============================================================================ +01:29:47 [ 1] [ 4] [0810] +01:29:47 [ 7] [ 10] [0320084133] +01:29:47 [ 11] [ 6] [014133] +01:29:47 [ 37] [ 12] [579010141330] +01:29:47 [ 39] [ 2] [00] +01:29:47 [ 70] [ 3] [810] +01:29:47 ============================================================================ +01:29:47 Calculate Source COMM Id = 6 +01:29:47 ============================================================================ +01:29:47 + + +waiting on router queue for slot.... +01:29:49 ============================================================================ +01:29:49 Slot Id : <428> +01:29:49 Transaction Type : REQUEST +01:29:49 Received From : +01:29:49 ============================================================================ +01:29:49 FNo. Len. Field Value +01:29:49 ============================================================================ +01:29:49 [ 1] [ 4] [0800] +01:29:49 [ 7] [ 10] [0319062856] +01:29:49 [ 11] [ 6] [153451] +01:29:49 [ 70] [ 3] [301] +01:29:49 ============================================================================ +01:29:49 + + +waiting on router queue for slot.... +01:29:49 Sending to : +01:29:49 ============================================================================ +01:29:49 ============================================================================ +01:29:49 Slot Id : <428> +01:29:49 Transaction Type : RESPONSE +01:29:49 Received From : +01:29:49 ============================================================================ +01:29:49 FNo. Len. Field Value +01:29:49 ============================================================================ +01:29:49 [ 1] [ 4] [0810] +01:29:49 [ 7] [ 10] [0319062856] +01:29:49 [ 11] [ 6] [153451] +01:29:49 [ 39] [ 2] [00] +01:29:49 [ 70] [ 3] [301] +01:29:49 ============================================================================ +01:29:49 Calculate Source COMM Id = 2 +01:29:49 ============================================================================ +01:29:49 + + +waiting on router queue for slot.... +01:29:57 ============================================================================ +01:29:57 Slot Id : <427> +01:29:57 Transaction Type : REQUEST +01:29:57 Received From : +01:29:57 ============================================================================ +01:29:57 FNo. Len. Field Value +01:29:57 ============================================================================ +01:29:57 [ 1] [ 4] [0800] +01:29:57 [ 7] [ 10] [0319183742] +01:29:57 [ 11] [ 6] [090790] +01:29:57 [ 37] [ 12] [57901090790] +01:29:57 [ 70] [ 3] [301] +01:29:57 ============================================================================ +01:29:57 + + +waiting on router queue for slot.... +01:29:57 Sending to : +01:29:57 ============================================================================ +01:29:57 ============================================================================ +01:29:57 Slot Id : <427> +01:29:57 Transaction Type : RESPONSE +01:29:57 Received From : +01:29:57 ============================================================================ +01:29:57 FNo. Len. Field Value +01:29:57 ============================================================================ +01:29:57 [ 1] [ 4] [0810] +01:29:57 [ 7] [ 10] [0319183742] +01:29:57 [ 11] [ 6] [090790] +01:29:57 [ 37] [ 12] [579010907900] +01:29:57 [ 39] [ 2] [00] +01:29:57 [ 70] [ 3] [810] +01:29:57 ============================================================================ +01:29:57 Calculate Source COMM Id = 1 +01:29:57 ============================================================================ +01:29:57 + + +waiting on router queue for slot.... +01:30:00 ============================================================================ +01:30:00 Slot Id : <426> +01:30:00 Transaction Type : REQUEST +01:30:00 Received From : +01:30:00 ============================================================================ +01:30:00 FNo. Len. Field Value +01:30:00 ============================================================================ +01:30:00 [ 1] [ 4] [0800] +01:30:00 [ 7] [ 10] [0319062907] +01:30:00 [ 11] [ 6] [153452] +01:30:00 [ 70] [ 3] [301] +01:30:00 ============================================================================ +01:30:00 + + +waiting on router queue for slot.... +01:30:00 Sending to : +01:30:00 ============================================================================ +01:30:00 ============================================================================ +01:30:00 Slot Id : <426> +01:30:00 Transaction Type : RESPONSE +01:30:00 Received From : +01:30:00 ============================================================================ +01:30:00 FNo. Len. Field Value +01:30:00 ============================================================================ +01:30:00 [ 1] [ 4] [0810] +01:30:00 [ 7] [ 10] [0319062907] +01:30:00 [ 11] [ 6] [153452] +01:30:00 [ 39] [ 2] [00] +01:30:00 [ 70] [ 3] [301] +01:30:00 ============================================================================ +01:30:00 Calculate Source COMM Id = 2 +01:30:00 ============================================================================ +01:30:00 + + +waiting on router queue for slot.... +01:30:12 ============================================================================ +01:30:12 Slot Id : <431> +01:30:12 Transaction Type : REQUEST +01:30:12 Received From : +01:30:12 ============================================================================ +01:30:12 FNo. Len. Field Value +01:30:12 ============================================================================ +01:30:12 [ 1] [ 4] [0800] +01:30:12 [ 7] [ 10] [0319062919] +01:30:12 [ 11] [ 6] [153453] +01:30:12 [ 70] [ 3] [301] +01:30:12 ============================================================================ +01:30:12 + + +waiting on router queue for slot.... +01:30:12 Sending to : +01:30:12 ============================================================================ +01:30:12 ============================================================================ +01:30:12 Slot Id : <431> +01:30:12 Transaction Type : RESPONSE +01:30:12 Received From : +01:30:12 ============================================================================ +01:30:12 FNo. Len. Field Value +01:30:12 ============================================================================ +01:30:12 [ 1] [ 4] [0810] +01:30:12 [ 7] [ 10] [0319062919] +01:30:12 [ 11] [ 6] [153453] +01:30:12 [ 39] [ 2] [00] +01:30:12 [ 70] [ 3] [301] +01:30:12 ============================================================================ +01:30:12 Calculate Source COMM Id = 2 +01:30:12 ============================================================================ +01:30:12 + + +waiting on router queue for slot.... +01:30:23 ============================================================================ +01:30:23 Slot Id : <451> +01:30:23 Transaction Type : REQUEST +01:30:23 Received From : +01:30:23 ============================================================================ +01:30:23 FNo. Len. Field Value +01:30:23 ============================================================================ +01:30:23 [ 1] [ 4] [0800] +01:30:23 [ 7] [ 10] [0319062930] +01:30:23 [ 11] [ 6] [153454] +01:30:23 [ 70] [ 3] [301] +01:30:23 ============================================================================ +01:30:23 + + +waiting on router queue for slot.... +01:30:23 Sending to : +01:30:23 ============================================================================ +01:30:23 ============================================================================ +01:30:23 Slot Id : <451> +01:30:23 Transaction Type : RESPONSE +01:30:23 Received From : +01:30:23 ============================================================================ +01:30:23 FNo. Len. Field Value +01:30:23 ============================================================================ +01:30:23 [ 1] [ 4] [0810] +01:30:23 [ 7] [ 10] [0319062930] +01:30:23 [ 11] [ 6] [153454] +01:30:23 [ 39] [ 2] [00] +01:30:23 [ 70] [ 3] [301] +01:30:23 ============================================================================ +01:30:23 Calculate Source COMM Id = 2 +01:30:23 ============================================================================ +01:30:23 + + +waiting on router queue for slot.... +01:30:29 ============================================================================ +01:30:29 Slot Id : <457> +01:30:29 Transaction Type : REQUEST +01:30:29 Received From : +01:30:29 ============================================================================ +01:30:29 FNo. Len. Field Value +01:30:29 ============================================================================ +01:30:29 [ 1] [ 4] [0800] +01:30:29 [ 2] [ 5] [02531] +01:30:29 [ 3] [ 6] [579018] +01:30:29 [ 7] [ 10] [0319183029] +01:30:29 [ 11] [ 6] [806499] +01:30:29 [ 15] [ 10] [0319183029] +01:30:29 [ 37] [ 11] [57901806499] +01:30:29 [ 70] [ 3] [001] +01:30:29 ============================================================================ +01:30:29 + + +waiting on router queue for slot.... +01:30:29 ============================================================================ +01:30:29 Slot Id : <457> +01:30:29 Transaction Type : RESPONSE +01:30:29 Received From : +01:30:29 ============================================================================ +01:30:29 FNo. Len. Field Value +01:30:29 ============================================================================ +01:30:29 [ 1] [ 4] [0810] +01:30:29 [ 7] [ 10] [0319183029] +01:30:29 [ 11] [ 6] [806499] +01:30:29 [ 15] [ 4] [0319] +01:30:29 [ 37] [ 12] [57901806499] +01:30:29 [ 39] [ 2] [00] +01:30:29 [ 70] [ 3] [001] +01:30:29 ============================================================================ +01:30:29 Sending to : +01:30:29 ============================================================================ +01:30:29 + + +waiting on router queue for slot.... +01:30:34 ============================================================================ +01:30:34 Slot Id : <422> +01:30:34 Transaction Type : REQUEST +01:30:34 Received From : +01:30:34 ============================================================================ +01:30:34 FNo. Len. Field Value +01:30:34 ============================================================================ +01:30:34 [ 1] [ 4] [0800] +01:30:34 [ 7] [ 10] [0319062941] +01:30:34 [ 11] [ 6] [153455] +01:30:34 [ 70] [ 3] [301] +01:30:34 ============================================================================ +01:30:34 + + +waiting on router queue for slot.... +01:30:34 Sending to : +01:30:34 ============================================================================ +01:30:34 ============================================================================ +01:30:34 Slot Id : <422> +01:30:34 Transaction Type : RESPONSE +01:30:34 Received From : +01:30:34 ============================================================================ +01:30:34 FNo. Len. Field Value +01:30:34 ============================================================================ +01:30:34 [ 1] [ 4] [0810] +01:30:34 [ 7] [ 10] [0319062941] +01:30:34 [ 11] [ 6] [153455] +01:30:34 [ 39] [ 2] [00] +01:30:34 [ 70] [ 3] [301] +01:30:34 ============================================================================ +01:30:34 Calculate Source COMM Id = 2 +01:30:34 ============================================================================ +01:30:34 + + +waiting on router queue for slot.... +01:30:45 ============================================================================ +01:30:45 Slot Id : <462> +01:30:45 Transaction Type : REQUEST +01:30:45 Received From : +01:30:45 ============================================================================ +01:30:45 FNo. Len. Field Value +01:30:45 ============================================================================ +01:30:45 [ 1] [ 4] [0800] +01:30:45 [ 7] [ 10] [0319062952] +01:30:45 [ 11] [ 6] [153456] +01:30:45 [ 70] [ 3] [301] +01:30:45 ============================================================================ +01:30:45 + + +waiting on router queue for slot.... +01:30:45 Sending to : +01:30:45 ============================================================================ +01:30:45 ============================================================================ +01:30:45 Slot Id : <462> +01:30:45 Transaction Type : RESPONSE +01:30:45 Received From : +01:30:45 ============================================================================ +01:30:45 FNo. Len. Field Value +01:30:45 ============================================================================ +01:30:45 [ 1] [ 4] [0810] +01:30:45 [ 7] [ 10] [0319062952] +01:30:45 [ 11] [ 6] [153456] +01:30:45 [ 39] [ 2] [00] +01:30:45 [ 70] [ 3] [301] +01:30:45 ============================================================================ +01:30:45 Calculate Source COMM Id = 2 +01:30:45 ============================================================================ +01:30:45 + + +waiting on router queue for slot.... +01:30:52 ============================================================================ +01:30:52 Slot Id : <465> +01:30:52 Transaction Type : REQUEST +01:30:52 Received From : +01:30:52 ============================================================================ +01:30:52 FNo. Len. Field Value +01:30:52 ============================================================================ +01:30:52 [ 1] [ 4] [0800] +01:30:52 [ 7] [ 10] [0320084238] +01:30:52 [ 11] [ 6] [014238] +01:30:52 [ 37] [ 12] [57901014238] +01:30:52 [ 70] [ 3] [301] +01:30:52 ============================================================================ +01:30:52 + + +waiting on router queue for slot.... +01:30:52 Sending to : +01:30:52 ============================================================================ +01:30:52 ============================================================================ +01:30:52 Slot Id : <465> +01:30:52 Transaction Type : RESPONSE +01:30:52 Received From : +01:30:52 ============================================================================ +01:30:52 FNo. Len. Field Value +01:30:52 ============================================================================ +01:30:52 [ 1] [ 4] [0810] +01:30:52 [ 7] [ 10] [0320084238] +01:30:52 [ 11] [ 6] [014238] +01:30:52 [ 37] [ 12] [579010142380] +01:30:52 [ 39] [ 2] [00] +01:30:52 [ 70] [ 3] [810] +01:30:52 ============================================================================ +01:30:52 Calculate Source COMM Id = 6 +01:30:52 ============================================================================ +01:30:52 + + +waiting on router queue for slot.... +01:30:57 ============================================================================ +01:30:57 Slot Id : <444> +01:30:57 Transaction Type : REQUEST +01:30:57 Received From : +01:30:57 ============================================================================ +01:30:57 FNo. Len. Field Value +01:30:57 ============================================================================ +01:30:57 [ 1] [ 4] [0800] +01:30:57 [ 7] [ 10] [0319063004] +01:30:57 [ 11] [ 6] [153457] +01:30:57 [ 70] [ 3] [301] +01:30:57 ============================================================================ +01:30:57 + + +waiting on router queue for slot.... +01:30:57 Sending to : +01:30:57 ============================================================================ +01:30:57 ============================================================================ +01:30:57 Slot Id : <444> +01:30:57 Transaction Type : RESPONSE +01:30:57 Received From : +01:30:57 ============================================================================ +01:30:57 FNo. Len. Field Value +01:30:57 ============================================================================ +01:30:57 [ 1] [ 4] [0810] +01:30:57 [ 7] [ 10] [0319063004] +01:30:57 [ 11] [ 6] [153457] +01:30:57 [ 39] [ 2] [00] +01:30:57 [ 70] [ 3] [301] +01:30:57 ============================================================================ +01:30:57 Calculate Source COMM Id = 2 +01:30:57 ============================================================================ +01:30:57 + + +waiting on router queue for slot.... +01:31:13 ============================================================================ +01:31:13 Slot Id : <421> +01:31:13 Transaction Type : REQUEST +01:31:13 Received From : +01:31:13 ============================================================================ +01:31:13 FNo. Len. Field Value +01:31:13 ============================================================================ +01:31:13 [ 1] [ 4] [0800] +01:31:13 [ 7] [ 10] [0319063020] +01:31:13 [ 11] [ 6] [153458] +01:31:13 [ 70] [ 3] [301] +01:31:13 ============================================================================ +01:31:13 + + +waiting on router queue for slot.... +01:31:13 Sending to : +01:31:13 ============================================================================ +01:31:13 ============================================================================ +01:31:13 Slot Id : <421> +01:31:13 Transaction Type : RESPONSE +01:31:13 Received From : +01:31:13 ============================================================================ +01:31:13 FNo. Len. Field Value +01:31:13 ============================================================================ +01:31:13 [ 1] [ 4] [0810] +01:31:13 [ 7] [ 10] [0319063020] +01:31:13 [ 11] [ 6] [153458] +01:31:13 [ 39] [ 2] [00] +01:31:13 [ 70] [ 3] [301] +01:31:13 ============================================================================ +01:31:13 Calculate Source COMM Id = 2 +01:31:13 ============================================================================ +01:31:13 + + +waiting on router queue for slot.... +01:31:21 ============================================================================ +01:31:21 Slot Id : <439> +01:31:21 Transaction Type : REQUEST +01:31:21 Received From : +01:31:21 ============================================================================ +01:31:21 FNo. Len. Field Value +01:31:21 ============================================================================ +01:31:21 [ 1] [ 4] [0800] +01:31:21 [ 7] [ 10] [0319182912] +01:31:21 [ 11] [ 6] [075607] +01:31:21 [ 37] [ 12] [57901075607] +01:31:21 [ 70] [ 3] [301] +01:31:21 ============================================================================ +01:31:21 + + +waiting on router queue for slot.... +01:31:21 Sending to : +01:31:21 ============================================================================ +01:31:21 ============================================================================ +01:31:21 Slot Id : <439> +01:31:21 Transaction Type : RESPONSE +01:31:21 Received From : +01:31:21 ============================================================================ +01:31:21 FNo. Len. Field Value +01:31:21 ============================================================================ +01:31:21 [ 1] [ 4] [0810] +01:31:21 [ 7] [ 10] [0319182912] +01:31:21 [ 11] [ 6] [075607] +01:31:21 [ 37] [ 12] [579010756070] +01:31:21 [ 39] [ 2] [00] +01:31:21 [ 70] [ 3] [810] +01:31:21 ============================================================================ +01:31:21 Calculate Source COMM Id = 4 +01:31:21 ============================================================================ +01:31:21 + + +waiting on router queue for slot.... +01:31:24 ============================================================================ +01:31:24 Slot Id : <458> +01:31:24 Transaction Type : REQUEST +01:31:24 Received From : +01:31:24 ============================================================================ +01:31:24 FNo. Len. Field Value +01:31:24 ============================================================================ +01:31:24 [ 1] [ 4] [0800] +01:31:24 [ 7] [ 10] [0319063031] +01:31:24 [ 11] [ 6] [153459] +01:31:24 [ 70] [ 3] [301] +01:31:24 ============================================================================ +01:31:24 + + +waiting on router queue for slot.... +01:31:24 Sending to : +01:31:24 ============================================================================ +01:31:24 ============================================================================ +01:31:24 Slot Id : <458> +01:31:24 Transaction Type : RESPONSE +01:31:24 Received From : +01:31:24 ============================================================================ +01:31:24 FNo. Len. Field Value +01:31:24 ============================================================================ +01:31:24 [ 1] [ 4] [0810] +01:31:24 [ 7] [ 10] [0319063031] +01:31:24 [ 11] [ 6] [153459] +01:31:24 [ 39] [ 2] [00] +01:31:24 [ 70] [ 3] [301] +01:31:24 ============================================================================ +01:31:24 Calculate Source COMM Id = 2 +01:31:24 ============================================================================ +01:31:24 + + +waiting on router queue for slot.... +01:31:31 ============================================================================ +01:31:31 Slot Id : <423> +01:31:31 Transaction Type : REQUEST +01:31:31 Received From : +01:31:31 ============================================================================ +01:31:31 FNo. Len. Field Value +01:31:31 ============================================================================ +01:31:31 [ 1] [ 4] [0800] +01:31:31 [ 2] [ 5] [02531] +01:31:31 [ 3] [ 6] [579018] +01:31:31 [ 7] [ 10] [0319183131] +01:31:31 [ 11] [ 6] [806500] +01:31:31 [ 15] [ 10] [0319183131] +01:31:31 [ 37] [ 11] [57901806500] +01:31:31 [ 70] [ 3] [001] +01:31:31 ============================================================================ +01:31:31 + + +waiting on router queue for slot.... +01:31:31 ============================================================================ +01:31:31 Slot Id : <423> +01:31:31 Transaction Type : RESPONSE +01:31:31 Received From : +01:31:31 ============================================================================ +01:31:31 FNo. Len. Field Value +01:31:31 ============================================================================ +01:31:31 [ 1] [ 4] [0810] +01:31:31 [ 7] [ 10] [0319183131] +01:31:31 [ 11] [ 6] [806500] +01:31:31 [ 15] [ 4] [0319] +01:31:31 [ 37] [ 12] [57901806500] +01:31:31 [ 39] [ 2] [00] +01:31:31 [ 70] [ 3] [001] +01:31:31 ============================================================================ +01:31:31 Sending to : +01:31:31 ============================================================================ +01:31:31 + + +waiting on router queue for slot.... +01:31:40 ============================================================================ +01:31:40 Slot Id : <466> +01:31:40 Transaction Type : REQUEST +01:31:40 Received From : +01:31:40 ============================================================================ +01:31:40 FNo. Len. Field Value +01:31:40 ============================================================================ +01:31:40 [ 1] [ 4] [0800] +01:31:40 [ 7] [ 10] [0319063048] +01:31:40 [ 11] [ 6] [153460] +01:31:40 [ 70] [ 3] [301] +01:31:40 ============================================================================ +01:31:40 + + +waiting on router queue for slot.... +01:31:40 Sending to : +01:31:40 ============================================================================ +01:31:41 ============================================================================ +01:31:41 Slot Id : <466> +01:31:41 Transaction Type : RESPONSE +01:31:41 Received From : +01:31:41 ============================================================================ +01:31:41 FNo. Len. Field Value +01:31:41 ============================================================================ +01:31:41 [ 1] [ 4] [0810] +01:31:41 [ 7] [ 10] [0319063048] +01:31:41 [ 11] [ 6] [153460] +01:31:41 [ 39] [ 2] [00] +01:31:41 [ 70] [ 3] [301] +01:31:41 ============================================================================ +01:31:41 Calculate Source COMM Id = 2 +01:31:41 ============================================================================ +01:31:41 + + +waiting on router queue for slot.... +01:31:51 ============================================================================ +01:31:51 Slot Id : <436> +01:31:51 Transaction Type : REQUEST +01:31:51 Received From : +01:31:51 ============================================================================ +01:31:51 FNo. Len. Field Value +01:31:51 ============================================================================ +01:31:51 [ 1] [ 4] [0800] +01:31:51 [ 7] [ 10] [0319063059] +01:31:51 [ 11] [ 6] [153461] +01:31:51 [ 70] [ 3] [301] +01:31:51 ============================================================================ +01:31:51 + + +waiting on router queue for slot.... +01:31:51 Sending to : +01:31:51 ============================================================================ +01:31:51 ============================================================================ +01:31:51 Slot Id : <436> +01:31:51 Transaction Type : RESPONSE +01:31:51 Received From : +01:31:51 ============================================================================ +01:31:51 FNo. Len. Field Value +01:31:51 ============================================================================ +01:31:51 [ 1] [ 4] [0810] +01:31:51 [ 7] [ 10] [0319063059] +01:31:51 [ 11] [ 6] [153461] +01:31:51 [ 39] [ 2] [00] +01:31:51 [ 70] [ 3] [301] +01:31:51 ============================================================================ +01:31:51 Calculate Source COMM Id = 2 +01:31:51 ============================================================================ +01:31:51 + + +waiting on router queue for slot.... +01:31:57 ============================================================================ +01:31:57 Slot Id : <459> +01:31:57 Transaction Type : REQUEST +01:31:57 Received From : +01:31:57 ============================================================================ +01:31:57 FNo. Len. Field Value +01:31:57 ============================================================================ +01:31:57 [ 1] [ 4] [0800] +01:31:57 [ 7] [ 10] [0320084343] +01:31:57 [ 11] [ 6] [014343] +01:31:57 [ 37] [ 12] [57901014343] +01:31:57 [ 70] [ 3] [301] +01:31:57 ============================================================================ +01:31:57 + + +waiting on router queue for slot.... +01:31:57 Sending to : +01:31:57 ============================================================================ +01:31:57 ============================================================================ +01:31:57 Slot Id : <459> +01:31:57 Transaction Type : RESPONSE +01:31:57 Received From : +01:31:57 ============================================================================ +01:31:57 FNo. Len. Field Value +01:31:57 ============================================================================ +01:31:57 [ 1] [ 4] [0810] +01:31:57 [ 7] [ 10] [0320084343] +01:31:57 [ 11] [ 6] [014343] +01:31:57 [ 37] [ 12] [579010143430] +01:31:57 [ 39] [ 2] [00] +01:31:57 [ 70] [ 3] [810] +01:31:57 ============================================================================ +01:31:57 Calculate Source COMM Id = 6 +01:31:57 ============================================================================ +01:31:57 + + +waiting on router queue for slot.... +01:32:02 ============================================================================ +01:32:02 Slot Id : <475> +01:32:02 Transaction Type : REQUEST +01:32:02 Received From : +01:32:02 ============================================================================ +01:32:02 FNo. Len. Field Value +01:32:02 ============================================================================ +01:32:02 [ 1] [ 4] [0800] +01:32:02 [ 7] [ 10] [0319063109] +01:32:02 [ 11] [ 6] [153462] +01:32:02 [ 70] [ 3] [301] +01:32:02 ============================================================================ +01:32:02 + + +waiting on router queue for slot.... +01:32:02 Sending to : +01:32:02 ============================================================================ +01:32:02 ============================================================================ +01:32:02 Slot Id : <475> +01:32:02 Transaction Type : RESPONSE +01:32:02 Received From : +01:32:02 ============================================================================ +01:32:02 FNo. Len. Field Value +01:32:02 ============================================================================ +01:32:02 [ 1] [ 4] [0810] +01:32:02 [ 7] [ 10] [0319063109] +01:32:02 [ 11] [ 6] [153462] +01:32:02 [ 39] [ 2] [00] +01:32:02 [ 70] [ 3] [301] +01:32:02 ============================================================================ +01:32:02 Calculate Source COMM Id = 2 +01:32:02 ============================================================================ +01:32:02 + + +waiting on router queue for slot.... +01:32:13 ============================================================================ +01:32:13 Slot Id : <452> +01:32:13 Transaction Type : REQUEST +01:32:13 Received From : +01:32:13 ============================================================================ +01:32:13 FNo. Len. Field Value +01:32:13 ============================================================================ +01:32:13 [ 1] [ 4] [0800] +01:32:13 [ 7] [ 10] [0319063120] +01:32:13 [ 11] [ 6] [153463] +01:32:13 [ 70] [ 3] [301] +01:32:13 ============================================================================ +01:32:13 + + +waiting on router queue for slot.... +01:32:13 Sending to : +01:32:13 ============================================================================ +01:32:13 ============================================================================ +01:32:13 Slot Id : <452> +01:32:13 Transaction Type : RESPONSE +01:32:13 Received From : +01:32:13 ============================================================================ +01:32:13 FNo. Len. Field Value +01:32:13 ============================================================================ +01:32:13 [ 1] [ 4] [0810] +01:32:13 [ 7] [ 10] [0319063120] +01:32:13 [ 11] [ 6] [153463] +01:32:13 [ 39] [ 2] [00] +01:32:13 [ 70] [ 3] [301] +01:32:13 ============================================================================ +01:32:13 Calculate Source COMM Id = 2 +01:32:13 ============================================================================ +01:32:13 + + +waiting on router queue for slot.... +01:32:28 ============================================================================ +01:32:28 Slot Id : <468> +01:32:28 Transaction Type : REQUEST +01:32:28 Received From : +01:32:28 ============================================================================ +01:32:28 FNo. Len. Field Value +01:32:28 ============================================================================ +01:32:28 [ 1] [ 4] [0800] +01:32:28 [ 7] [ 10] [0319063135] +01:32:28 [ 11] [ 6] [153464] +01:32:28 [ 70] [ 3] [301] +01:32:28 ============================================================================ +01:32:28 + + +waiting on router queue for slot.... +01:32:28 Sending to : +01:32:28 ============================================================================ +01:32:28 ============================================================================ +01:32:28 Slot Id : <468> +01:32:28 Transaction Type : RESPONSE +01:32:28 Received From : +01:32:28 ============================================================================ +01:32:28 FNo. Len. Field Value +01:32:28 ============================================================================ +01:32:28 [ 1] [ 4] [0810] +01:32:28 [ 7] [ 10] [0319063135] +01:32:28 [ 11] [ 6] [153464] +01:32:28 [ 39] [ 2] [00] +01:32:28 [ 70] [ 3] [301] +01:32:28 ============================================================================ +01:32:28 Calculate Source COMM Id = 2 +01:32:28 ============================================================================ +01:32:28 + + +waiting on router queue for slot.... +01:32:33 ============================================================================ +01:32:33 Slot Id : <449> +01:32:33 Transaction Type : REQUEST +01:32:33 Received From : +01:32:33 ============================================================================ +01:32:33 FNo. Len. Field Value +01:32:33 ============================================================================ +01:32:33 [ 1] [ 4] [0800] +01:32:33 [ 2] [ 5] [02531] +01:32:33 [ 3] [ 6] [579018] +01:32:33 [ 7] [ 10] [0319183233] +01:32:33 [ 11] [ 6] [806501] +01:32:33 [ 15] [ 10] [0319183233] +01:32:33 [ 37] [ 11] [57901806501] +01:32:33 [ 70] [ 3] [001] +01:32:33 ============================================================================ +01:32:33 + + +waiting on router queue for slot.... +01:32:33 ============================================================================ +01:32:33 Slot Id : <449> +01:32:33 Transaction Type : RESPONSE +01:32:33 Received From : +01:32:33 ============================================================================ +01:32:33 FNo. Len. Field Value +01:32:33 ============================================================================ +01:32:33 [ 1] [ 4] [0810] +01:32:33 [ 7] [ 10] [0319183233] +01:32:33 [ 11] [ 6] [806501] +01:32:33 [ 15] [ 4] [0319] +01:32:33 [ 37] [ 12] [57901806501] +01:32:33 [ 39] [ 2] [00] +01:32:33 [ 70] [ 3] [001] +01:32:33 ============================================================================ +01:32:33 Sending to : +01:32:33 ============================================================================ +01:32:33 + + +waiting on router queue for slot.... +01:32:39 ============================================================================ +01:32:39 Slot Id : <455> +01:32:39 Transaction Type : REQUEST +01:32:39 Received From : +01:32:39 ============================================================================ +01:32:39 FNo. Len. Field Value +01:32:39 ============================================================================ +01:32:39 [ 1] [ 4] [0800] +01:32:39 [ 7] [ 10] [0319063145] +01:32:39 [ 11] [ 6] [153465] +01:32:39 [ 70] [ 3] [301] +01:32:39 ============================================================================ +01:32:39 + + +waiting on router queue for slot.... +01:32:39 Sending to : +01:32:39 ============================================================================ +01:32:39 ============================================================================ +01:32:39 Slot Id : <455> +01:32:39 Transaction Type : RESPONSE +01:32:39 Received From : +01:32:39 ============================================================================ +01:32:39 FNo. Len. Field Value +01:32:39 ============================================================================ +01:32:39 [ 1] [ 4] [0810] +01:32:39 [ 7] [ 10] [0319063145] +01:32:39 [ 11] [ 6] [153465] +01:32:39 [ 39] [ 2] [00] +01:32:39 [ 70] [ 3] [301] +01:32:39 ============================================================================ +01:32:39 Calculate Source COMM Id = 2 +01:32:39 ============================================================================ +01:32:39 + + +waiting on router queue for slot.... +01:32:49 ============================================================================ +01:32:49 Slot Id : <440> +01:32:49 Transaction Type : REQUEST +01:32:49 Received From : +01:32:49 ============================================================================ +01:32:49 FNo. Len. Field Value +01:32:49 ============================================================================ +01:32:49 [ 1] [ 4] [0800] +01:32:49 [ 7] [ 10] [0319063156] +01:32:49 [ 11] [ 6] [153466] +01:32:49 [ 70] [ 3] [301] +01:32:49 ============================================================================ +01:32:49 + + +waiting on router queue for slot.... +01:32:49 Sending to : +01:32:49 ============================================================================ +01:32:49 ============================================================================ +01:32:49 Slot Id : <440> +01:32:49 Transaction Type : RESPONSE +01:32:49 Received From : +01:32:49 ============================================================================ +01:32:49 FNo. Len. Field Value +01:32:49 ============================================================================ +01:32:49 [ 1] [ 4] [0810] +01:32:49 [ 7] [ 10] [0319063156] +01:32:49 [ 11] [ 6] [153466] +01:32:49 [ 39] [ 2] [00] +01:32:49 [ 70] [ 3] [301] +01:32:49 ============================================================================ +01:32:49 Calculate Source COMM Id = 2 +01:32:49 ============================================================================ +01:32:49 + + +waiting on router queue for slot.... +01:33:02 ============================================================================ +01:33:02 Slot Id : <460> +01:33:02 Transaction Type : REQUEST +01:33:02 Received From : +01:33:02 ============================================================================ +01:33:02 FNo. Len. Field Value +01:33:02 ============================================================================ +01:33:02 [ 1] [ 4] [0800] +01:33:02 [ 7] [ 10] [0320084448] +01:33:02 [ 11] [ 6] [014448] +01:33:02 [ 37] [ 12] [57901014448] +01:33:02 [ 70] [ 3] [301] +01:33:02 ============================================================================ +01:33:02 + + +waiting on router queue for slot.... +01:33:02 Sending to : +01:33:02 ============================================================================ +01:33:02 ============================================================================ +01:33:02 Slot Id : <460> +01:33:02 Transaction Type : RESPONSE +01:33:02 Received From : +01:33:02 ============================================================================ +01:33:02 FNo. Len. Field Value +01:33:02 ============================================================================ +01:33:02 [ 1] [ 4] [0810] +01:33:02 [ 7] [ 10] [0320084448] +01:33:02 [ 11] [ 6] [014448] +01:33:02 [ 37] [ 12] [579010144480] +01:33:02 [ 39] [ 2] [00] +01:33:02 [ 70] [ 3] [810] +01:33:02 ============================================================================ +01:33:02 Calculate Source COMM Id = 6 +01:33:02 ============================================================================ +01:33:02 + + +waiting on router queue for slot.... +01:33:02 ============================================================================ +01:33:02 Slot Id : <432> +01:33:02 Transaction Type : REQUEST +01:33:02 Received From : +01:33:02 ============================================================================ +01:33:02 FNo. Len. Field Value +01:33:02 ============================================================================ +01:33:02 [ 1] [ 4] [0800] +01:33:02 [ 7] [ 10] [0319063207] +01:33:02 [ 11] [ 6] [153467] +01:33:02 [ 70] [ 3] [301] +01:33:02 ============================================================================ +01:33:02 + + +waiting on router queue for slot.... +01:33:02 Sending to : +01:33:02 ============================================================================ +01:33:02 ============================================================================ +01:33:02 Slot Id : <432> +01:33:02 Transaction Type : RESPONSE +01:33:02 Received From : +01:33:02 ============================================================================ +01:33:02 FNo. Len. Field Value +01:33:02 ============================================================================ +01:33:02 [ 1] [ 4] [0810] +01:33:02 [ 7] [ 10] [0319063207] +01:33:02 [ 11] [ 6] [153467] +01:33:02 [ 39] [ 2] [00] +01:33:02 [ 70] [ 3] [301] +01:33:02 ============================================================================ +01:33:02 Calculate Source COMM Id = 2 +01:33:02 ============================================================================ +01:33:02 + + +waiting on router queue for slot.... +01:33:16 ============================================================================ +01:33:16 Slot Id : <453> +01:33:16 Transaction Type : REQUEST +01:33:16 Received From : +01:33:16 ============================================================================ +01:33:16 FNo. Len. Field Value +01:33:16 ============================================================================ +01:33:16 [ 1] [ 4] [0800] +01:33:16 [ 7] [ 10] [0319063223] +01:33:16 [ 11] [ 6] [153468] +01:33:16 [ 70] [ 3] [301] +01:33:16 ============================================================================ +01:33:16 + + +waiting on router queue for slot.... +01:33:16 Sending to : +01:33:16 ============================================================================ +01:33:16 ============================================================================ +01:33:16 Slot Id : <453> +01:33:16 Transaction Type : RESPONSE +01:33:16 Received From : +01:33:16 ============================================================================ +01:33:16 FNo. Len. Field Value +01:33:16 ============================================================================ +01:33:16 [ 1] [ 4] [0810] +01:33:16 [ 7] [ 10] [0319063223] +01:33:16 [ 11] [ 6] [153468] +01:33:16 [ 39] [ 2] [00] +01:33:16 [ 70] [ 3] [301] +01:33:16 ============================================================================ +01:33:16 Calculate Source COMM Id = 2 +01:33:16 ============================================================================ +01:33:16 + + +waiting on router queue for slot.... +01:33:23 ============================================================================ +01:33:23 Slot Id : <482> +01:33:23 Transaction Type : REQUEST +01:33:23 Received From : +01:33:23 ============================================================================ +01:33:23 FNo. Len. Field Value +01:33:23 ============================================================================ +01:33:23 [ 1] [ 4] [0800] +01:33:23 [ 7] [ 10] [0320013309] +01:33:23 [ 11] [ 6] [010874] +01:33:23 [ 37] [ 12] [507901010874] +01:33:23 [ 70] [ 3] [ ] +01:33:23 ============================================================================ +01:33:23 + + +waiting on router queue for slot.... +01:33:23 Sending to : +01:33:23 ============================================================================ +01:33:23 ============================================================================ +01:33:23 Slot Id : <482> +01:33:23 Transaction Type : RESPONSE +01:33:23 Received From : +01:33:23 ============================================================================ +01:33:23 FNo. Len. Field Value +01:33:23 ============================================================================ +01:33:23 [ 1] [ 4] [0810] +01:33:23 [ 7] [ 10] [0320013309] +01:33:23 [ 11] [ 6] [010874] +01:33:23 [ 37] [ 12] [507901010874] +01:33:23 [ 39] [ 2] [91] +01:33:23 [ 70] [ 3] [ ] +01:33:23 ============================================================================ +01:33:23 Calculate Source COMM Id = 3 +01:33:23 ============================================================================ +01:33:23 + + +waiting on router queue for slot.... +01:33:27 ============================================================================ +01:33:27 Slot Id : <488> +01:33:27 Transaction Type : REQUEST +01:33:27 Received From : +01:33:27 ============================================================================ +01:33:27 FNo. Len. Field Value +01:33:27 ============================================================================ +01:33:27 [ 1] [ 4] [0800] +01:33:27 [ 7] [ 10] [0319063234] +01:33:27 [ 11] [ 6] [153469] +01:33:27 [ 70] [ 3] [301] +01:33:27 ============================================================================ +01:33:27 + + +waiting on router queue for slot.... +01:33:27 Sending to : +01:33:27 ============================================================================ +01:33:27 ============================================================================ +01:33:27 Slot Id : <488> +01:33:27 Transaction Type : RESPONSE +01:33:27 Received From : +01:33:27 ============================================================================ +01:33:27 FNo. Len. Field Value +01:33:27 ============================================================================ +01:33:27 [ 1] [ 4] [0810] +01:33:27 [ 7] [ 10] [0319063234] +01:33:27 [ 11] [ 6] [153469] +01:33:27 [ 39] [ 2] [00] +01:33:27 [ 70] [ 3] [301] +01:33:27 ============================================================================ +01:33:27 Calculate Source COMM Id = 2 +01:33:27 ============================================================================ +01:33:27 + + +waiting on router queue for slot.... +01:33:35 ============================================================================ +01:33:35 Slot Id : <470> +01:33:35 Transaction Type : REQUEST +01:33:35 Received From : +01:33:35 ============================================================================ +01:33:35 FNo. Len. Field Value +01:33:35 ============================================================================ +01:33:35 [ 1] [ 4] [0800] +01:33:35 [ 2] [ 5] [02531] +01:33:35 [ 3] [ 6] [579018] +01:33:35 [ 7] [ 10] [0319183335] +01:33:35 [ 11] [ 6] [806502] +01:33:35 [ 15] [ 10] [0319183335] +01:33:35 [ 37] [ 11] [57901806502] +01:33:35 [ 70] [ 3] [001] +01:33:35 ============================================================================ +01:33:35 + + +waiting on router queue for slot.... +01:33:35 ============================================================================ +01:33:35 Slot Id : <470> +01:33:35 Transaction Type : RESPONSE +01:33:35 Received From : +01:33:35 ============================================================================ +01:33:35 FNo. Len. Field Value +01:33:35 ============================================================================ +01:33:35 [ 1] [ 4] [0810] +01:33:35 [ 7] [ 10] [0319183335] +01:33:35 [ 11] [ 6] [806502] +01:33:35 [ 15] [ 4] [0319] +01:33:35 [ 37] [ 12] [57901806502] +01:33:35 [ 39] [ 2] [00] +01:33:35 [ 70] [ 3] [001] +01:33:35 ============================================================================ +01:33:35 Sending to : +01:33:35 ============================================================================ +01:33:35 + + +waiting on router queue for slot.... +01:33:42 ============================================================================ +01:33:42 Slot Id : <495> +01:33:42 Transaction Type : REQUEST +01:33:42 Received From : +01:33:42 ============================================================================ +01:33:42 FNo. Len. Field Value +01:33:42 ============================================================================ +01:33:42 [ 1] [ 4] [0800] +01:33:42 [ 7] [ 10] [0319063249] +01:33:42 [ 11] [ 6] [153470] +01:33:42 [ 70] [ 3] [301] +01:33:42 ============================================================================ +01:33:42 + + +waiting on router queue for slot.... +01:33:42 Sending to : +01:33:42 ============================================================================ +01:33:42 ============================================================================ +01:33:42 Slot Id : <495> +01:33:42 Transaction Type : RESPONSE +01:33:42 Received From : +01:33:42 ============================================================================ +01:33:42 FNo. Len. Field Value +01:33:42 ============================================================================ +01:33:42 [ 1] [ 4] [0810] +01:33:42 [ 7] [ 10] [0319063249] +01:33:42 [ 11] [ 6] [153470] +01:33:42 [ 39] [ 2] [00] +01:33:42 [ 70] [ 3] [301] +01:33:42 ============================================================================ +01:33:42 Calculate Source COMM Id = 2 +01:33:42 ============================================================================ +01:33:42 + + +waiting on router queue for slot.... +01:33:53 ============================================================================ +01:33:53 Slot Id : <490> +01:33:53 Transaction Type : REQUEST +01:33:53 Received From : +01:33:53 ============================================================================ +01:33:53 FNo. Len. Field Value +01:33:53 ============================================================================ +01:33:53 [ 1] [ 4] [0800] +01:33:53 [ 7] [ 10] [0319063300] +01:33:53 [ 11] [ 6] [153471] +01:33:53 [ 70] [ 3] [301] +01:33:53 ============================================================================ +01:33:53 + + +waiting on router queue for slot.... +01:33:53 Sending to : +01:33:53 ============================================================================ +01:33:53 ============================================================================ +01:33:53 Slot Id : <490> +01:33:53 Transaction Type : RESPONSE +01:33:53 Received From : +01:33:53 ============================================================================ +01:33:53 FNo. Len. Field Value +01:33:53 ============================================================================ +01:33:53 [ 1] [ 4] [0810] +01:33:53 [ 7] [ 10] [0319063300] +01:33:53 [ 11] [ 6] [153471] +01:33:53 [ 39] [ 2] [00] +01:33:53 [ 70] [ 3] [301] +01:33:53 ============================================================================ +01:33:53 Calculate Source COMM Id = 2 +01:33:53 ============================================================================ +01:33:53 + + +waiting on router queue for slot.... +01:34:03 ============================================================================ +01:34:03 Slot Id : <463> +01:34:03 Transaction Type : REQUEST +01:34:03 Received From : +01:34:03 ============================================================================ +01:34:03 FNo. Len. Field Value +01:34:03 ============================================================================ +01:34:03 [ 1] [ 4] [0800] +01:34:03 [ 7] [ 10] [0319063310] +01:34:03 [ 11] [ 6] [153472] +01:34:03 [ 70] [ 3] [301] +01:34:03 ============================================================================ +01:34:03 + + +waiting on router queue for slot.... +01:34:03 Sending to : +01:34:03 ============================================================================ +01:34:03 ============================================================================ +01:34:03 Slot Id : <463> +01:34:03 Transaction Type : RESPONSE +01:34:03 Received From : +01:34:03 ============================================================================ +01:34:03 FNo. Len. Field Value +01:34:03 ============================================================================ +01:34:03 [ 1] [ 4] [0810] +01:34:03 [ 7] [ 10] [0319063310] +01:34:03 [ 11] [ 6] [153472] +01:34:03 [ 39] [ 2] [00] +01:34:03 [ 70] [ 3] [301] +01:34:03 ============================================================================ +01:34:03 Calculate Source COMM Id = 2 +01:34:03 ============================================================================ +01:34:03 + + +waiting on router queue for slot.... +01:34:07 ============================================================================ +01:34:07 Slot Id : <448> +01:34:07 Transaction Type : REQUEST +01:34:07 Received From : +01:34:07 ============================================================================ +01:34:07 FNo. Len. Field Value +01:34:07 ============================================================================ +01:34:07 [ 1] [ 4] [0800] +01:34:07 [ 7] [ 10] [0320084554] +01:34:07 [ 11] [ 6] [014554] +01:34:07 [ 37] [ 12] [57901014554] +01:34:07 [ 70] [ 3] [301] +01:34:07 ============================================================================ +01:34:07 + + +waiting on router queue for slot.... +01:34:07 Sending to : +01:34:07 ============================================================================ +01:34:07 ============================================================================ +01:34:07 Slot Id : <448> +01:34:07 Transaction Type : RESPONSE +01:34:07 Received From : +01:34:07 ============================================================================ +01:34:07 FNo. Len. Field Value +01:34:07 ============================================================================ +01:34:07 [ 1] [ 4] [0810] +01:34:07 [ 7] [ 10] [0320084554] +01:34:07 [ 11] [ 6] [014554] +01:34:07 [ 37] [ 12] [579010145540] +01:34:07 [ 39] [ 2] [00] +01:34:07 [ 70] [ 3] [810] +01:34:07 ============================================================================ +01:34:07 Calculate Source COMM Id = 6 +01:34:07 ============================================================================ +01:34:07 + + +waiting on router queue for slot.... +01:34:14 ============================================================================ +01:34:14 Slot Id : <484> +01:34:14 Transaction Type : REQUEST +01:34:14 Received From : +01:34:14 ============================================================================ +01:34:14 FNo. Len. Field Value +01:34:14 ============================================================================ +01:34:14 [ 1] [ 4] [0800] +01:34:14 [ 7] [ 10] [0319063321] +01:34:14 [ 11] [ 6] [153473] +01:34:14 [ 70] [ 3] [301] +01:34:14 ============================================================================ +01:34:14 + + +waiting on router queue for slot.... +01:34:14 Sending to : +01:34:14 ============================================================================ +01:34:14 ============================================================================ +01:34:14 Slot Id : <484> +01:34:14 Transaction Type : RESPONSE +01:34:14 Received From : +01:34:14 ============================================================================ +01:34:14 FNo. Len. Field Value +01:34:14 ============================================================================ +01:34:14 [ 1] [ 4] [0810] +01:34:14 [ 7] [ 10] [0319063321] +01:34:14 [ 11] [ 6] [153473] +01:34:14 [ 39] [ 2] [00] +01:34:14 [ 70] [ 3] [301] +01:34:14 ============================================================================ +01:34:14 Calculate Source COMM Id = 2 +01:34:14 ============================================================================ +01:34:14 + + +waiting on router queue for slot.... +01:34:25 ============================================================================ +01:34:25 Slot Id : <471> +01:34:25 Transaction Type : REQUEST +01:34:25 Received From : +01:34:25 ============================================================================ +01:34:25 FNo. Len. Field Value +01:34:25 ============================================================================ +01:34:25 [ 1] [ 4] [0800] +01:34:25 [ 7] [ 10] [0319063333] +01:34:25 [ 11] [ 6] [153474] +01:34:25 [ 70] [ 3] [301] +01:34:25 ============================================================================ +01:34:25 + + +waiting on router queue for slot.... +01:34:25 Sending to : +01:34:25 ============================================================================ +01:34:25 ============================================================================ +01:34:25 Slot Id : <471> +01:34:25 Transaction Type : RESPONSE +01:34:25 Received From : +01:34:25 ============================================================================ +01:34:25 FNo. Len. Field Value +01:34:25 ============================================================================ +01:34:25 [ 1] [ 4] [0810] +01:34:25 [ 7] [ 10] [0319063333] +01:34:25 [ 11] [ 6] [153474] +01:34:25 [ 39] [ 2] [00] +01:34:25 [ 70] [ 3] [301] +01:34:25 ============================================================================ +01:34:25 Calculate Source COMM Id = 2 +01:34:25 ============================================================================ +01:34:25 + + +waiting on router queue for slot.... +01:34:36 ============================================================================ +01:34:36 Slot Id : <480> +01:34:36 Transaction Type : REQUEST +01:34:36 Received From : +01:34:36 ============================================================================ +01:34:36 FNo. Len. Field Value +01:34:36 ============================================================================ +01:34:36 [ 1] [ 4] [0800] +01:34:36 [ 7] [ 10] [0319063343] +01:34:36 [ 11] [ 6] [153475] +01:34:36 [ 70] [ 3] [301] +01:34:36 ============================================================================ +01:34:36 + + +waiting on router queue for slot.... +01:34:36 Sending to : +01:34:36 ============================================================================ +01:34:36 ============================================================================ +01:34:36 Slot Id : <480> +01:34:36 Transaction Type : RESPONSE +01:34:36 Received From : +01:34:36 ============================================================================ +01:34:36 FNo. Len. Field Value +01:34:36 ============================================================================ +01:34:36 [ 1] [ 4] [0810] +01:34:36 [ 7] [ 10] [0319063343] +01:34:36 [ 11] [ 6] [153475] +01:34:36 [ 39] [ 2] [00] +01:34:36 [ 70] [ 3] [301] +01:34:36 ============================================================================ +01:34:36 Calculate Source COMM Id = 2 +01:34:36 ============================================================================ +01:34:36 + + +waiting on router queue for slot.... +01:34:37 ============================================================================ +01:34:37 Slot Id : <479> +01:34:37 Transaction Type : REQUEST +01:34:37 Received From : +01:34:37 ============================================================================ +01:34:37 FNo. Len. Field Value +01:34:37 ============================================================================ +01:34:37 [ 1] [ 4] [0800] +01:34:37 [ 2] [ 5] [02531] +01:34:37 [ 3] [ 6] [579018] +01:34:37 [ 7] [ 10] [0319183437] +01:34:37 [ 11] [ 6] [806503] +01:34:37 [ 15] [ 10] [0319183437] +01:34:37 [ 37] [ 11] [57901806503] +01:34:37 [ 70] [ 3] [001] +01:34:37 ============================================================================ +01:34:37 + + +waiting on router queue for slot.... +01:34:37 ============================================================================ +01:34:37 Slot Id : <479> +01:34:37 Transaction Type : RESPONSE +01:34:37 Received From : +01:34:37 ============================================================================ +01:34:37 FNo. Len. Field Value +01:34:37 ============================================================================ +01:34:37 [ 1] [ 4] [0810] +01:34:37 [ 7] [ 10] [0319183437] +01:34:37 [ 11] [ 6] [806503] +01:34:37 [ 15] [ 4] [0319] +01:34:37 [ 37] [ 12] [57901806503] +01:34:37 [ 39] [ 2] [00] +01:34:37 [ 70] [ 3] [001] +01:34:37 ============================================================================ +01:34:37 Sending to : +01:34:37 ============================================================================ +01:34:37 + + +waiting on router queue for slot.... +01:34:46 ============================================================================ +01:34:46 Slot Id : <498> +01:34:46 Transaction Type : REQUEST +01:34:46 Received From : +01:34:46 ============================================================================ +01:34:46 FNo. Len. Field Value +01:34:46 ============================================================================ +01:34:46 [ 1] [ 4] [0800] +01:34:46 [ 7] [ 10] [0319063354] +01:34:46 [ 11] [ 6] [153476] +01:34:46 [ 70] [ 3] [301] +01:34:46 ============================================================================ +01:34:46 + + +waiting on router queue for slot.... +01:34:46 Sending to : +01:34:46 ============================================================================ +01:34:46 ============================================================================ +01:34:46 Slot Id : <498> +01:34:46 Transaction Type : RESPONSE +01:34:46 Received From : +01:34:46 ============================================================================ +01:34:46 FNo. Len. Field Value +01:34:46 ============================================================================ +01:34:46 [ 1] [ 4] [0810] +01:34:46 [ 7] [ 10] [0319063354] +01:34:46 [ 11] [ 6] [153476] +01:34:46 [ 39] [ 2] [00] +01:34:46 [ 70] [ 3] [301] +01:34:46 ============================================================================ +01:34:46 Calculate Source COMM Id = 2 +01:34:46 ============================================================================ +01:34:46 + + +waiting on router queue for slot.... +01:34:56 ============================================================================ +01:34:56 Slot Id : <0> +01:34:56 Transaction Type : REQUEST +01:34:56 Received From : +01:34:56 ============================================================================ +01:34:56 FNo. Len. Field Value +01:34:56 ============================================================================ +01:34:56 [ 1] [ 4] [0800] +01:34:56 [ 7] [ 10] [0319184242] +01:34:56 [ 11] [ 6] [032377] +01:34:56 [ 37] [ 12] [57901032377] +01:34:56 [ 70] [ 3] [301] +01:34:56 ============================================================================ +01:34:56 + + +waiting on router queue for slot.... +01:34:56 Sending to : +01:34:56 ============================================================================ +01:34:56 ============================================================================ +01:34:56 Slot Id : <0> +01:34:56 Transaction Type : RESPONSE +01:34:56 Received From : +01:34:56 ============================================================================ +01:34:56 FNo. Len. Field Value +01:34:56 ============================================================================ +01:34:56 [ 1] [ 4] [0810] +01:34:56 [ 7] [ 10] [0319184242] +01:34:56 [ 11] [ 6] [032377] +01:34:56 [ 37] [ 12] [579010323770] +01:34:56 [ 39] [ 2] [00] +01:34:56 [ 70] [ 3] [810] +01:34:56 ============================================================================ +01:34:56 Calculate Source COMM Id = 1 +01:34:56 ============================================================================ +01:34:56 + + +waiting on router queue for slot.... +01:34:57 ============================================================================ +01:34:57 Slot Id : <2> +01:34:57 Transaction Type : REQUEST +01:34:57 Received From : +01:34:57 ============================================================================ +01:34:57 FNo. Len. Field Value +01:34:57 ============================================================================ +01:34:57 [ 1] [ 4] [0800] +01:34:57 [ 7] [ 10] [0319063404] +01:34:57 [ 11] [ 6] [153477] +01:34:57 [ 70] [ 3] [301] +01:34:57 ============================================================================ +01:34:57 + + +waiting on router queue for slot.... +01:34:57 Sending to : +01:34:57 ============================================================================ +01:34:57 ============================================================================ +01:34:57 Slot Id : <2> +01:34:57 Transaction Type : RESPONSE +01:34:57 Received From : +01:34:57 ============================================================================ +01:34:57 FNo. Len. Field Value +01:34:57 ============================================================================ +01:34:57 [ 1] [ 4] [0810] +01:34:57 [ 7] [ 10] [0319063404] +01:34:57 [ 11] [ 6] [153477] +01:34:57 [ 39] [ 2] [00] +01:34:57 [ 70] [ 3] [301] +01:34:57 ============================================================================ +01:34:57 Calculate Source COMM Id = 2 +01:34:57 ============================================================================ +01:34:57 + + +waiting on router queue for slot.... +01:35:12 ============================================================================ +01:35:12 Slot Id : <493> +01:35:12 Transaction Type : REQUEST +01:35:12 Received From : +01:35:12 ============================================================================ +01:35:12 FNo. Len. Field Value +01:35:12 ============================================================================ +01:35:12 [ 1] [ 4] [0800] +01:35:12 [ 7] [ 10] [0320084659] +01:35:12 [ 11] [ 6] [014659] +01:35:12 [ 37] [ 12] [57901014659] +01:35:12 [ 70] [ 3] [301] +01:35:12 ============================================================================ +01:35:12 + + +waiting on router queue for slot.... +01:35:12 Sending to : +01:35:12 ============================================================================ +01:35:12 ============================================================================ +01:35:12 Slot Id : <493> +01:35:12 Transaction Type : RESPONSE +01:35:12 Received From : +01:35:12 ============================================================================ +01:35:12 FNo. Len. Field Value +01:35:12 ============================================================================ +01:35:12 [ 1] [ 4] [0810] +01:35:12 [ 7] [ 10] [0320084659] +01:35:12 [ 11] [ 6] [014659] +01:35:12 [ 37] [ 12] [579010146590] +01:35:12 [ 39] [ 2] [00] +01:35:12 [ 70] [ 3] [810] +01:35:12 ============================================================================ +01:35:12 Calculate Source COMM Id = 6 +01:35:12 ============================================================================ +01:35:12 + + +waiting on router queue for slot.... +01:35:13 ============================================================================ +01:35:13 Slot Id : <473> +01:35:13 Transaction Type : REQUEST +01:35:13 Received From : +01:35:13 ============================================================================ +01:35:13 FNo. Len. Field Value +01:35:13 ============================================================================ +01:35:13 [ 1] [ 4] [0800] +01:35:13 [ 7] [ 10] [0319063420] +01:35:13 [ 11] [ 6] [153478] +01:35:13 [ 70] [ 3] [301] +01:35:13 ============================================================================ +01:35:13 + + +waiting on router queue for slot.... +01:35:13 Sending to : +01:35:13 ============================================================================ +01:35:13 ============================================================================ +01:35:13 Slot Id : <473> +01:35:13 Transaction Type : RESPONSE +01:35:13 Received From : +01:35:13 ============================================================================ +01:35:13 FNo. Len. Field Value +01:35:13 ============================================================================ +01:35:13 [ 1] [ 4] [0810] +01:35:13 [ 7] [ 10] [0319063420] +01:35:13 [ 11] [ 6] [153478] +01:35:13 [ 39] [ 2] [00] +01:35:13 [ 70] [ 3] [301] +01:35:13 ============================================================================ +01:35:13 Calculate Source COMM Id = 2 +01:35:13 ============================================================================ +01:35:13 + + +waiting on router queue for slot.... +01:35:24 ============================================================================ +01:35:24 Slot Id : <1> +01:35:24 Transaction Type : REQUEST +01:35:24 Received From : +01:35:24 ============================================================================ +01:35:24 FNo. Len. Field Value +01:35:24 ============================================================================ +01:35:24 [ 1] [ 4] [0800] +01:35:24 [ 7] [ 10] [0319063431] +01:35:24 [ 11] [ 6] [153479] +01:35:24 [ 70] [ 3] [301] +01:35:24 ============================================================================ +01:35:24 + + +waiting on router queue for slot.... +01:35:24 Sending to : +01:35:24 ============================================================================ +01:35:24 ============================================================================ +01:35:24 Slot Id : <1> +01:35:24 Transaction Type : RESPONSE +01:35:24 Received From : +01:35:24 ============================================================================ +01:35:24 FNo. Len. Field Value +01:35:24 ============================================================================ +01:35:24 [ 1] [ 4] [0810] +01:35:24 [ 7] [ 10] [0319063431] +01:35:24 [ 11] [ 6] [153479] +01:35:24 [ 39] [ 2] [00] +01:35:24 [ 70] [ 3] [301] +01:35:24 ============================================================================ +01:35:24 Calculate Source COMM Id = 2 +01:35:24 ============================================================================ +01:35:24 + + +waiting on router queue for slot.... +01:35:35 ============================================================================ +01:35:35 Slot Id : <4> +01:35:35 Transaction Type : REQUEST +01:35:35 Received From : +01:35:35 ============================================================================ +01:35:35 FNo. Len. Field Value +01:35:35 ============================================================================ +01:35:35 [ 1] [ 4] [0800] +01:35:35 [ 7] [ 10] [0319063442] +01:35:35 [ 11] [ 6] [153480] +01:35:35 [ 70] [ 3] [301] +01:35:35 ============================================================================ +01:35:35 + + +waiting on router queue for slot.... +01:35:35 Sending to : +01:35:35 ============================================================================ +01:35:35 ============================================================================ +01:35:35 Slot Id : <4> +01:35:35 Transaction Type : RESPONSE +01:35:35 Received From : +01:35:35 ============================================================================ +01:35:35 FNo. Len. Field Value +01:35:35 ============================================================================ +01:35:35 [ 1] [ 4] [0810] +01:35:35 [ 7] [ 10] [0319063442] +01:35:35 [ 11] [ 6] [153480] +01:35:35 [ 39] [ 2] [00] +01:35:35 [ 70] [ 3] [301] +01:35:35 ============================================================================ +01:35:35 Calculate Source COMM Id = 2 +01:35:35 ============================================================================ +01:35:35 + + +waiting on router queue for slot.... +01:35:39 ============================================================================ +01:35:39 Slot Id : <474> +01:35:39 Transaction Type : REQUEST +01:35:39 Received From : +01:35:39 ============================================================================ +01:35:39 FNo. Len. Field Value +01:35:39 ============================================================================ +01:35:39 [ 1] [ 4] [0800] +01:35:39 [ 2] [ 5] [02531] +01:35:39 [ 3] [ 6] [579018] +01:35:39 [ 7] [ 10] [0319183539] +01:35:39 [ 11] [ 6] [806504] +01:35:39 [ 15] [ 10] [0319183539] +01:35:39 [ 37] [ 11] [57901806504] +01:35:39 [ 70] [ 3] [001] +01:35:39 ============================================================================ +01:35:39 + + +waiting on router queue for slot.... +01:35:39 ============================================================================ +01:35:39 Slot Id : <474> +01:35:39 Transaction Type : RESPONSE +01:35:39 Received From : +01:35:39 ============================================================================ +01:35:39 FNo. Len. Field Value +01:35:39 ============================================================================ +01:35:39 [ 1] [ 4] [0810] +01:35:39 [ 7] [ 10] [0319183539] +01:35:39 [ 11] [ 6] [806504] +01:35:39 [ 15] [ 4] [0319] +01:35:39 [ 37] [ 12] [57901806504] +01:35:39 [ 39] [ 2] [00] +01:35:39 [ 70] [ 3] [001] +01:35:39 ============================================================================ +01:35:39 Sending to : +01:35:39 ============================================================================ +01:35:39 + + +waiting on router queue for slot.... +01:35:45 ============================================================================ +01:35:45 Slot Id : <483> +01:35:45 Transaction Type : REQUEST +01:35:45 Received From : +01:35:45 ============================================================================ +01:35:45 FNo. Len. Field Value +01:35:45 ============================================================================ +01:35:45 [ 1] [ 4] [0800] +01:35:45 [ 7] [ 10] [0319063453] +01:35:45 [ 11] [ 6] [153481] +01:35:45 [ 70] [ 3] [301] +01:35:45 ============================================================================ +01:35:45 + + +waiting on router queue for slot.... +01:35:45 Sending to : +01:35:45 ============================================================================ +01:35:45 ============================================================================ +01:35:45 Slot Id : <483> +01:35:45 Transaction Type : RESPONSE +01:35:45 Received From : +01:35:45 ============================================================================ +01:35:45 FNo. Len. Field Value +01:35:45 ============================================================================ +01:35:45 [ 1] [ 4] [0810] +01:35:45 [ 7] [ 10] [0319063453] +01:35:45 [ 11] [ 6] [153481] +01:35:45 [ 39] [ 2] [00] +01:35:45 [ 70] [ 3] [301] +01:35:45 ============================================================================ +01:35:45 Calculate Source COMM Id = 2 +01:35:45 ============================================================================ +01:35:45 + + +waiting on router queue for slot.... +01:35:56 ============================================================================ +01:35:56 Slot Id : <476> +01:35:56 Transaction Type : REQUEST +01:35:56 Received From : +01:35:56 ============================================================================ +01:35:56 FNo. Len. Field Value +01:35:56 ============================================================================ +01:35:56 [ 1] [ 4] [0800] +01:35:56 [ 7] [ 10] [0319063504] +01:35:56 [ 11] [ 6] [153482] +01:35:56 [ 70] [ 3] [301] +01:35:56 ============================================================================ +01:35:56 + + +waiting on router queue for slot.... +01:35:56 Sending to : +01:35:56 ============================================================================ +01:35:56 ============================================================================ +01:35:56 Slot Id : <476> +01:35:56 Transaction Type : RESPONSE +01:35:56 Received From : +01:35:56 ============================================================================ +01:35:56 FNo. Len. Field Value +01:35:56 ============================================================================ +01:35:56 [ 1] [ 4] [0810] +01:35:56 [ 7] [ 10] [0319063504] +01:35:56 [ 11] [ 6] [153482] +01:35:56 [ 39] [ 2] [00] +01:35:56 [ 70] [ 3] [301] +01:35:56 ============================================================================ +01:35:56 Calculate Source COMM Id = 2 +01:35:56 ============================================================================ +01:35:56 + + +waiting on router queue for slot.... +01:36:11 ============================================================================ +01:36:11 Slot Id : <489> +01:36:11 Transaction Type : REQUEST +01:36:11 Received From : +01:36:11 ============================================================================ +01:36:11 FNo. Len. Field Value +01:36:11 ============================================================================ +01:36:11 [ 1] [ 4] [0800] +01:36:11 [ 7] [ 10] [0319063519] +01:36:11 [ 11] [ 6] [153483] +01:36:11 [ 70] [ 3] [301] +01:36:11 ============================================================================ +01:36:11 + + +waiting on router queue for slot.... +01:36:11 Sending to : +01:36:11 ============================================================================ +01:36:11 ============================================================================ +01:36:11 Slot Id : <489> +01:36:11 Transaction Type : RESPONSE +01:36:11 Received From : +01:36:11 ============================================================================ +01:36:11 FNo. Len. Field Value +01:36:11 ============================================================================ +01:36:11 [ 1] [ 4] [0810] +01:36:11 [ 7] [ 10] [0319063519] +01:36:11 [ 11] [ 6] [153483] +01:36:11 [ 39] [ 2] [00] +01:36:11 [ 70] [ 3] [301] +01:36:11 ============================================================================ +01:36:11 Calculate Source COMM Id = 2 +01:36:11 ============================================================================ +01:36:11 + + +waiting on router queue for slot.... +01:36:17 ============================================================================ +01:36:17 Slot Id : <477> +01:36:17 Transaction Type : REQUEST +01:36:17 Received From : +01:36:17 ============================================================================ +01:36:17 FNo. Len. Field Value +01:36:17 ============================================================================ +01:36:17 [ 1] [ 4] [0800] +01:36:17 [ 7] [ 10] [0320084804] +01:36:17 [ 11] [ 6] [014804] +01:36:17 [ 37] [ 12] [57901014804] +01:36:17 [ 70] [ 3] [301] +01:36:17 ============================================================================ +01:36:17 + + +waiting on router queue for slot.... +01:36:17 Sending to : +01:36:17 ============================================================================ +01:36:17 ============================================================================ +01:36:17 Slot Id : <477> +01:36:17 Transaction Type : RESPONSE +01:36:17 Received From : +01:36:17 ============================================================================ +01:36:17 FNo. Len. Field Value +01:36:17 ============================================================================ +01:36:17 [ 1] [ 4] [0810] +01:36:17 [ 7] [ 10] [0320084804] +01:36:17 [ 11] [ 6] [014804] +01:36:17 [ 37] [ 12] [579010148040] +01:36:17 [ 39] [ 2] [00] +01:36:17 [ 70] [ 3] [810] +01:36:17 ============================================================================ +01:36:17 Calculate Source COMM Id = 6 +01:36:17 ============================================================================ +01:36:17 + + +waiting on router queue for slot.... +01:36:21 ============================================================================ +01:36:21 Slot Id : <472> +01:36:21 Transaction Type : REQUEST +01:36:21 Received From : +01:36:21 ============================================================================ +01:36:21 FNo. Len. Field Value +01:36:21 ============================================================================ +01:36:21 [ 1] [ 4] [0800] +01:36:21 [ 7] [ 10] [0319183412] +01:36:21 [ 11] [ 6] [041937] +01:36:21 [ 37] [ 12] [57901041937] +01:36:21 [ 70] [ 3] [301] +01:36:21 ============================================================================ +01:36:21 + + +waiting on router queue for slot.... +01:36:21 Sending to : +01:36:21 ============================================================================ +01:36:21 ============================================================================ +01:36:21 Slot Id : <472> +01:36:21 Transaction Type : RESPONSE +01:36:21 Received From : +01:36:21 ============================================================================ +01:36:21 FNo. Len. Field Value +01:36:21 ============================================================================ +01:36:21 [ 1] [ 4] [0810] +01:36:21 [ 7] [ 10] [0319183412] +01:36:21 [ 11] [ 6] [041937] +01:36:21 [ 37] [ 12] [579010419370] +01:36:21 [ 39] [ 2] [00] +01:36:21 [ 70] [ 3] [810] +01:36:21 ============================================================================ +01:36:21 Calculate Source COMM Id = 4 +01:36:21 ============================================================================ +01:36:21 + + +waiting on router queue for slot.... +01:36:22 ============================================================================ +01:36:22 Slot Id : <486> +01:36:22 Transaction Type : REQUEST +01:36:22 Received From : +01:36:22 ============================================================================ +01:36:22 FNo. Len. Field Value +01:36:22 ============================================================================ +01:36:22 [ 1] [ 4] [0800] +01:36:22 [ 7] [ 10] [0319063530] +01:36:22 [ 11] [ 6] [153484] +01:36:22 [ 70] [ 3] [301] +01:36:22 ============================================================================ +01:36:22 + + +waiting on router queue for slot.... +01:36:22 Sending to : +01:36:22 ============================================================================ +01:36:22 ============================================================================ +01:36:22 Slot Id : <486> +01:36:22 Transaction Type : RESPONSE +01:36:22 Received From : +01:36:22 ============================================================================ +01:36:22 FNo. Len. Field Value +01:36:22 ============================================================================ +01:36:22 [ 1] [ 4] [0810] +01:36:22 [ 7] [ 10] [0319063530] +01:36:22 [ 11] [ 6] [153484] +01:36:22 [ 39] [ 2] [00] +01:36:22 [ 70] [ 3] [301] +01:36:22 ============================================================================ +01:36:22 Calculate Source COMM Id = 2 +01:36:22 ============================================================================ +01:36:22 + + +waiting on router queue for slot.... +01:36:33 ============================================================================ +01:36:33 Slot Id : <492> +01:36:33 Transaction Type : REQUEST +01:36:33 Received From : +01:36:33 ============================================================================ +01:36:33 FNo. Len. Field Value +01:36:33 ============================================================================ +01:36:33 [ 1] [ 4] [0800] +01:36:33 [ 7] [ 10] [0319063541] +01:36:33 [ 11] [ 6] [153485] +01:36:33 [ 70] [ 3] [301] +01:36:33 ============================================================================ +01:36:33 + + +waiting on router queue for slot.... +01:36:33 Sending to : +01:36:33 ============================================================================ +01:36:33 ============================================================================ +01:36:33 Slot Id : <492> +01:36:33 Transaction Type : RESPONSE +01:36:33 Received From : +01:36:33 ============================================================================ +01:36:33 FNo. Len. Field Value +01:36:33 ============================================================================ +01:36:33 [ 1] [ 4] [0810] +01:36:33 [ 7] [ 10] [0319063541] +01:36:33 [ 11] [ 6] [153485] +01:36:33 [ 39] [ 2] [00] +01:36:33 [ 70] [ 3] [301] +01:36:33 ============================================================================ +01:36:33 Calculate Source COMM Id = 2 +01:36:33 ============================================================================ +01:36:33 + + +waiting on router queue for slot.... +01:36:41 ============================================================================ +01:36:41 Slot Id : <6> +01:36:41 Transaction Type : REQUEST +01:36:41 Received From : +01:36:41 ============================================================================ +01:36:41 FNo. Len. Field Value +01:36:41 ============================================================================ +01:36:41 [ 1] [ 4] [0800] +01:36:41 [ 2] [ 5] [02531] +01:36:41 [ 3] [ 6] [579018] +01:36:41 [ 7] [ 10] [0319183641] +01:36:41 [ 11] [ 6] [806505] +01:36:41 [ 15] [ 10] [0319183641] +01:36:41 [ 37] [ 11] [57901806505] +01:36:41 [ 70] [ 3] [001] +01:36:41 ============================================================================ +01:36:41 + + +waiting on router queue for slot.... +01:36:41 ============================================================================ +01:36:41 Slot Id : <6> +01:36:41 Transaction Type : RESPONSE +01:36:41 Received From : +01:36:41 ============================================================================ +01:36:41 FNo. Len. Field Value +01:36:41 ============================================================================ +01:36:41 [ 1] [ 4] [0810] +01:36:41 [ 7] [ 10] [0319183641] +01:36:41 [ 11] [ 6] [806505] +01:36:41 [ 15] [ 4] [0319] +01:36:41 [ 37] [ 12] [57901806505] +01:36:41 [ 39] [ 2] [00] +01:36:41 [ 70] [ 3] [001] +01:36:41 ============================================================================ +01:36:41 Sending to : +01:36:41 ============================================================================ +01:36:41 + + +waiting on router queue for slot.... +01:36:45 ============================================================================ +01:36:45 Slot Id : <485> +01:36:45 Transaction Type : REQUEST +01:36:45 Received From : +01:36:45 ============================================================================ +01:36:45 FNo. Len. Field Value +01:36:45 ============================================================================ +01:36:45 [ 1] [ 4] [0800] +01:36:45 [ 7] [ 10] [0319063551] +01:36:45 [ 11] [ 6] [153486] +01:36:45 [ 70] [ 3] [301] +01:36:45 ============================================================================ +01:36:45 + + +waiting on router queue for slot.... +01:36:45 Sending to : +01:36:45 ============================================================================ +01:36:45 ============================================================================ +01:36:45 Slot Id : <485> +01:36:45 Transaction Type : RESPONSE +01:36:45 Received From : +01:36:45 ============================================================================ +01:36:45 FNo. Len. Field Value +01:36:45 ============================================================================ +01:36:45 [ 1] [ 4] [0810] +01:36:45 [ 7] [ 10] [0319063551] +01:36:45 [ 11] [ 6] [153486] +01:36:45 [ 39] [ 2] [00] +01:36:45 [ 70] [ 3] [301] +01:36:45 ============================================================================ +01:36:45 Calculate Source COMM Id = 2 +01:36:45 ============================================================================ +01:36:45 + + +waiting on router queue for slot.... +01:36:59 ============================================================================ +01:36:59 Slot Id : <454> +01:36:59 Transaction Type : REQUEST +01:36:59 Received From : +01:36:59 ============================================================================ +01:36:59 FNo. Len. Field Value +01:36:59 ============================================================================ +01:36:59 [ 1] [ 4] [0800] +01:36:59 [ 7] [ 10] [0319063607] +01:36:59 [ 11] [ 6] [153487] +01:36:59 [ 70] [ 3] [301] +01:36:59 ============================================================================ +01:36:59 + + +waiting on router queue for slot.... +01:36:59 Sending to : +01:36:59 ============================================================================ +01:36:59 ============================================================================ +01:36:59 Slot Id : <454> +01:36:59 Transaction Type : RESPONSE +01:36:59 Received From : +01:36:59 ============================================================================ +01:36:59 FNo. Len. Field Value +01:36:59 ============================================================================ +01:36:59 [ 1] [ 4] [0810] +01:36:59 [ 7] [ 10] [0319063607] +01:36:59 [ 11] [ 6] [153487] +01:36:59 [ 39] [ 2] [00] +01:36:59 [ 70] [ 3] [301] +01:36:59 ============================================================================ +01:36:59 Calculate Source COMM Id = 2 +01:36:59 ============================================================================ +01:36:59 + + +waiting on router queue for slot.... +01:37:10 ============================================================================ +01:37:10 Slot Id : <13> +01:37:10 Transaction Type : REQUEST +01:37:10 Received From : +01:37:10 ============================================================================ +01:37:10 FNo. Len. Field Value +01:37:10 ============================================================================ +01:37:10 [ 1] [ 4] [0800] +01:37:10 [ 7] [ 10] [0319063617] +01:37:10 [ 11] [ 6] [153488] +01:37:10 [ 70] [ 3] [301] +01:37:10 ============================================================================ +01:37:10 + + +waiting on router queue for slot.... +01:37:10 Sending to : +01:37:10 ============================================================================ +01:37:10 ============================================================================ +01:37:10 Slot Id : <13> +01:37:10 Transaction Type : RESPONSE +01:37:10 Received From : +01:37:10 ============================================================================ +01:37:10 FNo. Len. Field Value +01:37:10 ============================================================================ +01:37:10 [ 1] [ 4] [0810] +01:37:10 [ 7] [ 10] [0319063617] +01:37:10 [ 11] [ 6] [153488] +01:37:10 [ 39] [ 2] [00] +01:37:10 [ 70] [ 3] [301] +01:37:10 ============================================================================ +01:37:10 Calculate Source COMM Id = 2 +01:37:10 ============================================================================ +01:37:10 + + +waiting on router queue for slot.... +01:37:22 ============================================================================ +01:37:22 Slot Id : <14> +01:37:22 Transaction Type : REQUEST +01:37:22 Received From : +01:37:22 ============================================================================ +01:37:22 FNo. Len. Field Value +01:37:22 ============================================================================ +01:37:22 [ 1] [ 4] [0800] +01:37:22 [ 7] [ 10] [0320084909] +01:37:22 [ 11] [ 6] [014909] +01:37:22 [ 37] [ 12] [57901014909] +01:37:22 [ 70] [ 3] [301] +01:37:22 ============================================================================ +01:37:22 + + +waiting on router queue for slot.... +01:37:22 Sending to : +01:37:22 ============================================================================ +01:37:22 ============================================================================ +01:37:22 Slot Id : <14> +01:37:22 Transaction Type : RESPONSE +01:37:22 Received From : +01:37:22 ============================================================================ +01:37:22 FNo. Len. Field Value +01:37:22 ============================================================================ +01:37:22 [ 1] [ 4] [0810] +01:37:22 [ 7] [ 10] [0320084909] +01:37:22 [ 11] [ 6] [014909] +01:37:22 [ 37] [ 12] [579010149090] +01:37:22 [ 39] [ 2] [00] +01:37:22 [ 70] [ 3] [810] +01:37:22 ============================================================================ +01:37:22 Calculate Source COMM Id = 6 +01:37:22 ============================================================================ +01:37:22 + + +waiting on router queue for slot.... +01:37:22 ============================================================================ +01:37:22 Slot Id : <12> +01:37:22 Transaction Type : REQUEST +01:37:22 Received From : +01:37:22 ============================================================================ +01:37:22 FNo. Len. Field Value +01:37:22 ============================================================================ +01:37:22 [ 1] [ 4] [0800] +01:37:22 [ 7] [ 10] [0319063629] +01:37:22 [ 11] [ 6] [153489] +01:37:22 [ 70] [ 3] [301] +01:37:22 ============================================================================ +01:37:22 + + +waiting on router queue for slot.... +01:37:22 Sending to : +01:37:22 ============================================================================ +01:37:22 ============================================================================ +01:37:22 Slot Id : <12> +01:37:22 Transaction Type : RESPONSE +01:37:22 Received From : +01:37:22 ============================================================================ +01:37:22 FNo. Len. Field Value +01:37:22 ============================================================================ +01:37:22 [ 1] [ 4] [0810] +01:37:22 [ 7] [ 10] [0319063629] +01:37:22 [ 11] [ 6] [153489] +01:37:22 [ 39] [ 2] [00] +01:37:22 [ 70] [ 3] [301] +01:37:22 ============================================================================ +01:37:22 Calculate Source COMM Id = 2 +01:37:22 ============================================================================ +01:37:22 + + +waiting on router queue for slot.... +01:37:32 ============================================================================ +01:37:32 Slot Id : <16> +01:37:32 Transaction Type : REQUEST +01:37:32 Received From : +01:37:32 ============================================================================ +01:37:32 FNo. Len. Field Value +01:37:32 ============================================================================ +01:37:32 [ 1] [ 4] [0800] +01:37:32 [ 7] [ 10] [0319063640] +01:37:32 [ 11] [ 6] [153490] +01:37:32 [ 70] [ 3] [301] +01:37:32 ============================================================================ +01:37:32 + + +waiting on router queue for slot.... +01:37:32 Sending to : +01:37:32 ============================================================================ +01:37:32 ============================================================================ +01:37:32 Slot Id : <16> +01:37:32 Transaction Type : RESPONSE +01:37:32 Received From : +01:37:32 ============================================================================ +01:37:32 FNo. Len. Field Value +01:37:32 ============================================================================ +01:37:32 [ 1] [ 4] [0810] +01:37:32 [ 7] [ 10] [0319063640] +01:37:32 [ 11] [ 6] [153490] +01:37:32 [ 39] [ 2] [00] +01:37:32 [ 70] [ 3] [301] +01:37:32 ============================================================================ +01:37:32 Calculate Source COMM Id = 2 +01:37:32 ============================================================================ +01:37:32 + + +waiting on router queue for slot.... +01:37:43 ============================================================================ +01:37:43 Slot Id : <469> +01:37:43 Transaction Type : REQUEST +01:37:43 Received From : +01:37:43 ============================================================================ +01:37:43 FNo. Len. Field Value +01:37:43 ============================================================================ +01:37:43 [ 1] [ 4] [0800] +01:37:43 [ 2] [ 5] [02531] +01:37:43 [ 3] [ 6] [579018] +01:37:43 [ 7] [ 10] [0319183743] +01:37:43 [ 11] [ 6] [806506] +01:37:43 [ 15] [ 10] [0319183743] +01:37:43 [ 37] [ 11] [57901806506] +01:37:43 [ 70] [ 3] [001] +01:37:43 ============================================================================ +01:37:43 + + +waiting on router queue for slot.... +01:37:43 ============================================================================ +01:37:43 Slot Id : <469> +01:37:43 Transaction Type : RESPONSE +01:37:43 Received From : +01:37:43 ============================================================================ +01:37:43 FNo. Len. Field Value +01:37:43 ============================================================================ +01:37:43 [ 1] [ 4] [0810] +01:37:43 [ 7] [ 10] [0319183743] +01:37:43 [ 11] [ 6] [806506] +01:37:43 [ 15] [ 4] [0319] +01:37:43 [ 37] [ 12] [57901806506] +01:37:43 [ 39] [ 2] [00] +01:37:43 [ 70] [ 3] [001] +01:37:43 ============================================================================ +01:37:43 Sending to : +01:37:43 ============================================================================ +01:37:43 + + +waiting on router queue for slot.... +01:37:47 ============================================================================ +01:37:47 Slot Id : <494> +01:37:47 Transaction Type : REQUEST +01:37:47 Received From : +01:37:47 ============================================================================ +01:37:47 FNo. Len. Field Value +01:37:47 ============================================================================ +01:37:47 [ 1] [ 4] [0800] +01:37:47 [ 7] [ 10] [0319063652] +01:37:47 [ 11] [ 6] [153491] +01:37:47 [ 70] [ 3] [301] +01:37:47 ============================================================================ +01:37:47 + + +waiting on router queue for slot.... +01:37:47 Sending to : +01:37:47 ============================================================================ +01:37:47 ============================================================================ +01:37:47 Slot Id : <494> +01:37:47 Transaction Type : RESPONSE +01:37:47 Received From : +01:37:47 ============================================================================ +01:37:47 FNo. Len. Field Value +01:37:47 ============================================================================ +01:37:47 [ 1] [ 4] [0810] +01:37:47 [ 7] [ 10] [0319063652] +01:37:47 [ 11] [ 6] [153491] +01:37:47 [ 39] [ 2] [00] +01:37:47 [ 70] [ 3] [301] +01:37:47 ============================================================================ +01:37:47 Calculate Source COMM Id = 2 +01:37:47 ============================================================================ +01:37:47 + + +waiting on router queue for slot.... +01:38:01 ============================================================================ +01:38:01 Slot Id : <22> +01:38:01 Transaction Type : REQUEST +01:38:01 Received From : +01:38:01 ============================================================================ +01:38:01 FNo. Len. Field Value +01:38:01 ============================================================================ +01:38:01 [ 1] [ 4] [0800] +01:38:01 [ 7] [ 10] [0319063709] +01:38:01 [ 11] [ 6] [153492] +01:38:01 [ 70] [ 3] [301] +01:38:01 ============================================================================ +01:38:01 + + +waiting on router queue for slot.... +01:38:01 Sending to : +01:38:01 ============================================================================ +01:38:01 ============================================================================ +01:38:01 Slot Id : <22> +01:38:01 Transaction Type : RESPONSE +01:38:01 Received From : +01:38:01 ============================================================================ +01:38:01 FNo. Len. Field Value +01:38:01 ============================================================================ +01:38:01 [ 1] [ 4] [0810] +01:38:01 [ 7] [ 10] [0319063709] +01:38:01 [ 11] [ 6] [153492] +01:38:01 [ 39] [ 2] [00] +01:38:01 [ 70] [ 3] [301] +01:38:01 ============================================================================ +01:38:01 Calculate Source COMM Id = 2 +01:38:01 ============================================================================ +01:38:01 + + +waiting on router queue for slot.... +01:38:12 ============================================================================ +01:38:12 Slot Id : <491> +01:38:12 Transaction Type : REQUEST +01:38:12 Received From : +01:38:12 ============================================================================ +01:38:12 FNo. Len. Field Value +01:38:12 ============================================================================ +01:38:12 [ 1] [ 4] [0800] +01:38:12 [ 7] [ 10] [0319063720] +01:38:12 [ 11] [ 6] [153493] +01:38:12 [ 70] [ 3] [301] +01:38:12 ============================================================================ +01:38:12 + + +waiting on router queue for slot.... +01:38:12 Sending to : +01:38:12 ============================================================================ +01:38:12 ============================================================================ +01:38:12 Slot Id : <491> +01:38:12 Transaction Type : RESPONSE +01:38:12 Received From : +01:38:12 ============================================================================ +01:38:12 FNo. Len. Field Value +01:38:12 ============================================================================ +01:38:12 [ 1] [ 4] [0810] +01:38:12 [ 7] [ 10] [0319063720] +01:38:12 [ 11] [ 6] [153493] +01:38:12 [ 39] [ 2] [00] +01:38:12 [ 70] [ 3] [301] +01:38:12 ============================================================================ +01:38:12 Calculate Source COMM Id = 2 +01:38:12 ============================================================================ +01:38:12 + + +waiting on router queue for slot.... +01:38:23 ============================================================================ +01:38:23 Slot Id : <17> +01:38:23 Transaction Type : REQUEST +01:38:23 Received From : +01:38:23 ============================================================================ +01:38:23 FNo. Len. Field Value +01:38:23 ============================================================================ +01:38:23 [ 1] [ 4] [0800] +01:38:23 [ 7] [ 10] [0319063730] +01:38:23 [ 11] [ 6] [153494] +01:38:23 [ 70] [ 3] [301] +01:38:23 ============================================================================ +01:38:23 + + +waiting on router queue for slot.... +01:38:23 Sending to : +01:38:23 ============================================================================ +01:38:23 ============================================================================ +01:38:23 Slot Id : <17> +01:38:23 Transaction Type : RESPONSE +01:38:23 Received From : +01:38:23 ============================================================================ +01:38:23 FNo. Len. Field Value +01:38:23 ============================================================================ +01:38:23 [ 1] [ 4] [0810] +01:38:23 [ 7] [ 10] [0319063730] +01:38:23 [ 11] [ 6] [153494] +01:38:23 [ 39] [ 2] [00] +01:38:23 [ 70] [ 3] [301] +01:38:23 ============================================================================ +01:38:23 Calculate Source COMM Id = 2 +01:38:23 ============================================================================ +01:38:23 + + +waiting on router queue for slot.... +01:38:27 ============================================================================ +01:38:27 Slot Id : <499> +01:38:27 Transaction Type : REQUEST +01:38:27 Received From : +01:38:27 ============================================================================ +01:38:27 FNo. Len. Field Value +01:38:27 ============================================================================ +01:38:27 [ 1] [ 4] [0800] +01:38:27 [ 7] [ 10] [0320085014] +01:38:27 [ 11] [ 6] [015014] +01:38:27 [ 37] [ 12] [57901015014] +01:38:27 [ 70] [ 3] [301] +01:38:27 ============================================================================ +01:38:27 + + +waiting on router queue for slot.... +01:38:27 Sending to : +01:38:27 ============================================================================ +01:38:27 ============================================================================ +01:38:27 Slot Id : <499> +01:38:27 Transaction Type : RESPONSE +01:38:27 Received From : +01:38:27 ============================================================================ +01:38:27 FNo. Len. Field Value +01:38:27 ============================================================================ +01:38:27 [ 1] [ 4] [0810] +01:38:27 [ 7] [ 10] [0320085014] +01:38:27 [ 11] [ 6] [015014] +01:38:27 [ 37] [ 12] [579010150140] +01:38:27 [ 39] [ 2] [00] +01:38:27 [ 70] [ 3] [810] +01:38:27 ============================================================================ +01:38:27 Calculate Source COMM Id = 6 +01:38:27 ============================================================================ +01:38:27 + + +waiting on router queue for slot.... +01:38:34 ============================================================================ +01:38:34 Slot Id : <10> +01:38:34 Transaction Type : REQUEST +01:38:34 Received From : +01:38:34 ============================================================================ +01:38:34 FNo. Len. Field Value +01:38:34 ============================================================================ +01:38:34 [ 1] [ 4] [0800] +01:38:34 [ 7] [ 10] [0319063741] +01:38:34 [ 11] [ 6] [153495] +01:38:34 [ 70] [ 3] [301] +01:38:34 ============================================================================ +01:38:34 + + +waiting on router queue for slot.... +01:38:34 Sending to : +01:38:34 ============================================================================ +01:38:34 ============================================================================ +01:38:34 Slot Id : <10> +01:38:34 Transaction Type : RESPONSE +01:38:34 Received From : +01:38:34 ============================================================================ +01:38:34 FNo. Len. Field Value +01:38:34 ============================================================================ +01:38:34 [ 1] [ 4] [0810] +01:38:34 [ 7] [ 10] [0319063741] +01:38:34 [ 11] [ 6] [153495] +01:38:34 [ 39] [ 2] [00] +01:38:34 [ 70] [ 3] [301] +01:38:34 ============================================================================ +01:38:34 Calculate Source COMM Id = 2 +01:38:34 ============================================================================ +01:38:34 + + +waiting on router queue for slot.... +01:38:45 ============================================================================ +01:38:45 Slot Id : <23> +01:38:45 Transaction Type : REQUEST +01:38:45 Received From : +01:38:45 ============================================================================ +01:38:45 FNo. Len. Field Value +01:38:45 ============================================================================ +01:38:45 [ 1] [ 4] [0800] +01:38:45 [ 2] [ 5] [02531] +01:38:45 [ 3] [ 6] [579018] +01:38:45 [ 7] [ 10] [0319183845] +01:38:45 [ 11] [ 6] [806507] +01:38:45 [ 15] [ 10] [0319183845] +01:38:45 [ 37] [ 11] [57901806507] +01:38:45 [ 70] [ 3] [001] +01:38:45 ============================================================================ +01:38:45 + + +waiting on router queue for slot.... +01:38:45 ============================================================================ +01:38:45 Slot Id : <23> +01:38:45 Transaction Type : RESPONSE +01:38:45 Received From : +01:38:45 ============================================================================ +01:38:45 FNo. Len. Field Value +01:38:45 ============================================================================ +01:38:45 [ 1] [ 4] [0810] +01:38:45 [ 7] [ 10] [0319183845] +01:38:45 [ 11] [ 6] [806507] +01:38:45 [ 15] [ 4] [0319] +01:38:45 [ 37] [ 12] [57901806507] +01:38:45 [ 39] [ 2] [00] +01:38:45 [ 70] [ 3] [001] +01:38:45 ============================================================================ +01:38:45 Sending to : +01:38:45 ============================================================================ +01:38:45 + + +waiting on router queue for slot.... +01:38:45 ============================================================================ +01:38:45 Slot Id : <31> +01:38:45 Transaction Type : REQUEST +01:38:45 Received From : +01:38:45 ============================================================================ +01:38:45 FNo. Len. Field Value +01:38:45 ============================================================================ +01:38:45 [ 1] [ 4] [0800] +01:38:45 [ 7] [ 10] [0319063752] +01:38:45 [ 11] [ 6] [153496] +01:38:45 [ 70] [ 3] [301] +01:38:45 ============================================================================ +01:38:45 + + +waiting on router queue for slot.... +01:38:45 Sending to : +01:38:45 ============================================================================ +01:38:45 ============================================================================ +01:38:45 Slot Id : <31> +01:38:45 Transaction Type : RESPONSE +01:38:45 Received From : +01:38:45 ============================================================================ +01:38:45 FNo. Len. Field Value +01:38:45 ============================================================================ +01:38:45 [ 1] [ 4] [0810] +01:38:45 [ 7] [ 10] [0319063752] +01:38:45 [ 11] [ 6] [153496] +01:38:45 [ 39] [ 2] [00] +01:38:45 [ 70] [ 3] [301] +01:38:45 ============================================================================ +01:38:45 Calculate Source COMM Id = 2 +01:38:45 ============================================================================ +01:38:45 + + +waiting on router queue for slot.... +01:38:56 ============================================================================ +01:38:56 Slot Id : <3> +01:38:56 Transaction Type : REQUEST +01:38:56 Received From : +01:38:56 ============================================================================ +01:38:56 FNo. Len. Field Value +01:38:56 ============================================================================ +01:38:56 [ 1] [ 4] [0800] +01:38:56 [ 7] [ 10] [0319063803] +01:38:56 [ 11] [ 6] [153497] +01:38:56 [ 70] [ 3] [301] +01:38:56 ============================================================================ +01:38:56 + + +waiting on router queue for slot.... +01:38:56 Sending to : +01:38:56 ============================================================================ +01:38:56 ============================================================================ +01:38:56 Slot Id : <3> +01:38:56 Transaction Type : RESPONSE +01:38:56 Received From : +01:38:56 ============================================================================ +01:38:56 FNo. Len. Field Value +01:38:56 ============================================================================ +01:38:56 [ 1] [ 4] [0810] +01:38:56 [ 7] [ 10] [0319063803] +01:38:56 [ 11] [ 6] [153497] +01:38:56 [ 39] [ 2] [00] +01:38:56 [ 70] [ 3] [301] +01:38:56 ============================================================================ +01:38:56 Calculate Source COMM Id = 2 +01:38:56 ============================================================================ +01:38:56 + + +waiting on router queue for slot.... +01:39:08 ============================================================================ +01:39:08 Slot Id : <481> +01:39:08 Transaction Type : REQUEST +01:39:08 Received From : +01:39:08 ============================================================================ +01:39:08 FNo. Len. Field Value +01:39:08 ============================================================================ +01:39:08 [ 1] [ 4] [0800] +01:39:08 [ 7] [ 10] [0319063815] +01:39:08 [ 11] [ 6] [153498] +01:39:08 [ 70] [ 3] [301] +01:39:08 ============================================================================ +01:39:08 + + +waiting on router queue for slot.... +01:39:08 Sending to : +01:39:08 ============================================================================ +01:39:08 ============================================================================ +01:39:08 Slot Id : <481> +01:39:08 Transaction Type : RESPONSE +01:39:08 Received From : +01:39:08 ============================================================================ +01:39:08 FNo. Len. Field Value +01:39:08 ============================================================================ +01:39:08 [ 1] [ 4] [0810] +01:39:08 [ 7] [ 10] [0319063815] +01:39:08 [ 11] [ 6] [153498] +01:39:08 [ 39] [ 2] [00] +01:39:08 [ 70] [ 3] [301] +01:39:08 ============================================================================ +01:39:08 Calculate Source COMM Id = 2 +01:39:08 ============================================================================ +01:39:08 + + +waiting on router queue for slot.... +01:39:20 ============================================================================ +01:39:20 Slot Id : <29> +01:39:20 Transaction Type : REQUEST +01:39:20 Received From : +01:39:20 ============================================================================ +01:39:20 FNo. Len. Field Value +01:39:20 ============================================================================ +01:39:20 [ 1] [ 4] [0800] +01:39:20 [ 7] [ 10] [0319063827] +01:39:20 [ 11] [ 6] [153499] +01:39:20 [ 70] [ 3] [301] +01:39:20 ============================================================================ +01:39:20 + + +waiting on router queue for slot.... +01:39:20 Sending to : +01:39:20 ============================================================================ +01:39:20 ============================================================================ +01:39:20 Slot Id : <29> +01:39:20 Transaction Type : RESPONSE +01:39:20 Received From : +01:39:20 ============================================================================ +01:39:20 FNo. Len. Field Value +01:39:20 ============================================================================ +01:39:20 [ 1] [ 4] [0810] +01:39:20 [ 7] [ 10] [0319063827] +01:39:20 [ 11] [ 6] [153499] +01:39:20 [ 39] [ 2] [00] +01:39:20 [ 70] [ 3] [301] +01:39:20 ============================================================================ +01:39:20 Calculate Source COMM Id = 2 +01:39:20 ============================================================================ +01:39:20 + + +waiting on router queue for slot.... +01:39:32 ============================================================================ +01:39:32 Slot Id : <21> +01:39:32 Transaction Type : REQUEST +01:39:32 Received From : +01:39:32 ============================================================================ +01:39:32 FNo. Len. Field Value +01:39:32 ============================================================================ +01:39:32 [ 1] [ 4] [0800] +01:39:32 [ 7] [ 10] [0320085119] +01:39:32 [ 11] [ 6] [015119] +01:39:32 [ 37] [ 12] [57901015119] +01:39:32 [ 70] [ 3] [301] +01:39:32 ============================================================================ +01:39:32 + + +waiting on router queue for slot.... +01:39:32 Sending to : +01:39:32 ============================================================================ +01:39:32 ============================================================================ +01:39:32 Slot Id : <21> +01:39:32 Transaction Type : RESPONSE +01:39:32 Received From : +01:39:32 ============================================================================ +01:39:32 FNo. Len. Field Value +01:39:32 ============================================================================ +01:39:32 [ 1] [ 4] [0810] +01:39:32 [ 7] [ 10] [0320085119] +01:39:32 [ 11] [ 6] [015119] +01:39:32 [ 37] [ 12] [579010151190] +01:39:32 [ 39] [ 2] [00] +01:39:32 [ 70] [ 3] [810] +01:39:32 ============================================================================ +01:39:32 Calculate Source COMM Id = 6 +01:39:32 ============================================================================ +01:39:32 + + +waiting on router queue for slot.... +01:39:35 ============================================================================ +01:39:35 Slot Id : <7> +01:39:35 Transaction Type : REQUEST +01:39:35 Received From : +01:39:35 ============================================================================ +01:39:35 FNo. Len. Field Value +01:39:35 ============================================================================ +01:39:35 [ 1] [ 4] [0800] +01:39:35 [ 7] [ 10] [0319063842] +01:39:35 [ 11] [ 6] [153500] +01:39:35 [ 70] [ 3] [301] +01:39:35 ============================================================================ +01:39:35 + + +waiting on router queue for slot.... +01:39:35 Sending to : +01:39:35 ============================================================================ +01:39:35 ============================================================================ +01:39:35 Slot Id : <7> +01:39:35 Transaction Type : RESPONSE +01:39:35 Received From : +01:39:35 ============================================================================ +01:39:35 FNo. Len. Field Value +01:39:35 ============================================================================ +01:39:35 [ 1] [ 4] [0810] +01:39:35 [ 7] [ 10] [0319063842] +01:39:35 [ 11] [ 6] [153500] +01:39:35 [ 39] [ 2] [00] +01:39:35 [ 70] [ 3] [301] +01:39:35 ============================================================================ +01:39:35 Calculate Source COMM Id = 2 +01:39:35 ============================================================================ +01:39:35 + + +waiting on router queue for slot.... +01:39:46 ============================================================================ +01:39:46 Slot Id : <33> +01:39:46 Transaction Type : REQUEST +01:39:46 Received From : +01:39:46 ============================================================================ +01:39:46 FNo. Len. Field Value +01:39:46 ============================================================================ +01:39:46 [ 1] [ 4] [0800] +01:39:46 [ 7] [ 10] [0319063853] +01:39:46 [ 11] [ 6] [153501] +01:39:46 [ 70] [ 3] [301] +01:39:46 ============================================================================ +01:39:46 + + +waiting on router queue for slot.... +01:39:46 Sending to : +01:39:46 ============================================================================ +01:39:46 ============================================================================ +01:39:46 Slot Id : <33> +01:39:46 Transaction Type : RESPONSE +01:39:46 Received From : +01:39:46 ============================================================================ +01:39:46 FNo. Len. Field Value +01:39:46 ============================================================================ +01:39:46 [ 1] [ 4] [0810] +01:39:46 [ 7] [ 10] [0319063853] +01:39:46 [ 11] [ 6] [153501] +01:39:46 [ 39] [ 2] [00] +01:39:46 [ 70] [ 3] [301] +01:39:46 ============================================================================ +01:39:46 Calculate Source COMM Id = 2 +01:39:46 ============================================================================ +01:39:46 + + +waiting on router queue for slot.... +01:39:47 ============================================================================ +01:39:47 Slot Id : <11> +01:39:47 Transaction Type : REQUEST +01:39:47 Received From : +01:39:47 ============================================================================ +01:39:47 FNo. Len. Field Value +01:39:47 ============================================================================ +01:39:47 [ 1] [ 4] [0800] +01:39:47 [ 2] [ 5] [02531] +01:39:47 [ 3] [ 6] [579018] +01:39:47 [ 7] [ 10] [0319183947] +01:39:47 [ 11] [ 6] [806508] +01:39:47 [ 15] [ 10] [0319183947] +01:39:47 [ 37] [ 11] [57901806508] +01:39:47 [ 70] [ 3] [001] +01:39:47 ============================================================================ +01:39:47 + + +waiting on router queue for slot.... +01:39:47 ============================================================================ +01:39:47 Slot Id : <11> +01:39:47 Transaction Type : RESPONSE +01:39:47 Received From : +01:39:47 ============================================================================ +01:39:47 FNo. Len. Field Value +01:39:47 ============================================================================ +01:39:47 [ 1] [ 4] [0810] +01:39:47 [ 7] [ 10] [0319183947] +01:39:47 [ 11] [ 6] [806508] +01:39:47 [ 15] [ 4] [0319] +01:39:47 [ 37] [ 12] [57901806508] +01:39:47 [ 39] [ 2] [00] +01:39:47 [ 70] [ 3] [001] +01:39:47 ============================================================================ +01:39:47 Sending to : +01:39:47 ============================================================================ +01:39:47 + + +waiting on router queue for slot.... +01:39:56 ============================================================================ +01:39:56 Slot Id : <35> +01:39:56 Transaction Type : REQUEST +01:39:56 Received From : +01:39:56 ============================================================================ +01:39:56 FNo. Len. Field Value +01:39:56 ============================================================================ +01:39:56 [ 1] [ 4] [0800] +01:39:56 [ 7] [ 10] [0319184742] +01:39:56 [ 11] [ 6] [047858] +01:39:56 [ 37] [ 12] [57901047858] +01:39:56 [ 70] [ 3] [301] +01:39:56 ============================================================================ +01:39:56 + + +waiting on router queue for slot.... +01:39:56 Sending to : +01:39:56 ============================================================================ +01:39:56 ============================================================================ +01:39:56 Slot Id : <35> +01:39:56 Transaction Type : RESPONSE +01:39:56 Received From : +01:39:56 ============================================================================ +01:39:56 FNo. Len. Field Value +01:39:56 ============================================================================ +01:39:56 [ 1] [ 4] [0810] +01:39:56 [ 7] [ 10] [0319184742] +01:39:56 [ 11] [ 6] [047858] +01:39:56 [ 37] [ 12] [579010478580] +01:39:56 [ 39] [ 2] [00] +01:39:56 [ 70] [ 3] [810] +01:39:56 ============================================================================ +01:39:56 Calculate Source COMM Id = 1 +01:39:56 ============================================================================ +01:39:56 + + +waiting on router queue for slot.... +01:39:56 ============================================================================ +01:39:56 Slot Id : <496> +01:39:56 Transaction Type : REQUEST +01:39:56 Received From : +01:39:56 ============================================================================ +01:39:56 FNo. Len. Field Value +01:39:56 ============================================================================ +01:39:56 [ 1] [ 4] [0800] +01:39:56 [ 7] [ 10] [0319063904] +01:39:56 [ 11] [ 6] [153502] +01:39:56 [ 70] [ 3] [301] +01:39:56 ============================================================================ +01:39:56 + + +waiting on router queue for slot.... +01:39:56 Sending to : +01:39:56 ============================================================================ +01:39:56 ============================================================================ +01:39:56 Slot Id : <496> +01:39:56 Transaction Type : RESPONSE +01:39:56 Received From : +01:39:56 ============================================================================ +01:39:56 FNo. Len. Field Value +01:39:56 ============================================================================ +01:39:56 [ 1] [ 4] [0810] +01:39:56 [ 7] [ 10] [0319063904] +01:39:56 [ 11] [ 6] [153502] +01:39:56 [ 39] [ 2] [00] +01:39:56 [ 70] [ 3] [301] +01:39:56 ============================================================================ +01:39:56 Calculate Source COMM Id = 2 +01:39:56 ============================================================================ +01:39:56 + + +waiting on router queue for slot.... +01:40:07 ============================================================================ +01:40:07 Slot Id : <30> +01:40:07 Transaction Type : REQUEST +01:40:07 Received From : +01:40:07 ============================================================================ +01:40:07 FNo. Len. Field Value +01:40:07 ============================================================================ +01:40:07 [ 1] [ 4] [0800] +01:40:07 [ 7] [ 10] [0319063914] +01:40:07 [ 11] [ 6] [153503] +01:40:07 [ 70] [ 3] [301] +01:40:07 ============================================================================ +01:40:07 + + +waiting on router queue for slot.... +01:40:07 Sending to : +01:40:07 ============================================================================ +01:40:07 ============================================================================ +01:40:07 Slot Id : <30> +01:40:07 Transaction Type : RESPONSE +01:40:07 Received From : +01:40:07 ============================================================================ +01:40:07 FNo. Len. Field Value +01:40:07 ============================================================================ +01:40:07 [ 1] [ 4] [0810] +01:40:07 [ 7] [ 10] [0319063914] +01:40:07 [ 11] [ 6] [153503] +01:40:07 [ 39] [ 2] [00] +01:40:07 [ 70] [ 3] [301] +01:40:07 ============================================================================ +01:40:07 Calculate Source COMM Id = 2 +01:40:07 ============================================================================ +01:40:07 + + +waiting on router queue for slot.... +01:40:23 ============================================================================ +01:40:23 Slot Id : <36> +01:40:23 Transaction Type : REQUEST +01:40:23 Received From : +01:40:23 ============================================================================ +01:40:23 FNo. Len. Field Value +01:40:23 ============================================================================ +01:40:23 [ 1] [ 4] [0800] +01:40:23 [ 7] [ 10] [0319063930] +01:40:23 [ 11] [ 6] [153504] +01:40:23 [ 70] [ 3] [301] +01:40:23 ============================================================================ +01:40:23 + + +waiting on router queue for slot.... +01:40:23 Sending to : +01:40:23 ============================================================================ +01:40:23 ============================================================================ +01:40:23 Slot Id : <36> +01:40:23 Transaction Type : RESPONSE +01:40:23 Received From : +01:40:23 ============================================================================ +01:40:23 FNo. Len. Field Value +01:40:23 ============================================================================ +01:40:23 [ 1] [ 4] [0810] +01:40:23 [ 7] [ 10] [0319063930] +01:40:23 [ 11] [ 6] [153504] +01:40:23 [ 39] [ 2] [00] +01:40:23 [ 70] [ 3] [301] +01:40:23 ============================================================================ +01:40:23 Calculate Source COMM Id = 2 +01:40:23 ============================================================================ +01:40:23 + + +waiting on router queue for slot.... +01:40:33 ============================================================================ +01:40:33 Slot Id : <37> +01:40:33 Transaction Type : REQUEST +01:40:33 Received From : +01:40:33 ============================================================================ +01:40:33 FNo. Len. Field Value +01:40:33 ============================================================================ +01:40:33 [ 1] [ 4] [0800] +01:40:33 [ 7] [ 10] [0319063940] +01:40:33 [ 11] [ 6] [153505] +01:40:33 [ 70] [ 3] [301] +01:40:33 ============================================================================ +01:40:33 + + +waiting on router queue for slot.... +01:40:33 Sending to : +01:40:33 ============================================================================ +01:40:33 ============================================================================ +01:40:33 Slot Id : <37> +01:40:33 Transaction Type : RESPONSE +01:40:33 Received From : +01:40:33 ============================================================================ +01:40:33 FNo. Len. Field Value +01:40:33 ============================================================================ +01:40:33 [ 1] [ 4] [0810] +01:40:33 [ 7] [ 10] [0319063940] +01:40:33 [ 11] [ 6] [153505] +01:40:33 [ 39] [ 2] [00] +01:40:33 [ 70] [ 3] [301] +01:40:33 ============================================================================ +01:40:33 Calculate Source COMM Id = 2 +01:40:33 ============================================================================ +01:40:33 + + +waiting on router queue for slot.... +01:40:37 ============================================================================ +01:40:37 Slot Id : <32> +01:40:37 Transaction Type : REQUEST +01:40:37 Received From : +01:40:37 ============================================================================ +01:40:37 FNo. Len. Field Value +01:40:37 ============================================================================ +01:40:37 [ 1] [ 4] [0800] +01:40:37 [ 7] [ 10] [0320085224] +01:40:37 [ 11] [ 6] [015224] +01:40:37 [ 37] [ 12] [57901015224] +01:40:37 [ 70] [ 3] [301] +01:40:37 ============================================================================ +01:40:37 + + +waiting on router queue for slot.... +01:40:37 Sending to : +01:40:37 ============================================================================ +01:40:37 ============================================================================ +01:40:37 Slot Id : <32> +01:40:37 Transaction Type : RESPONSE +01:40:37 Received From : +01:40:37 ============================================================================ +01:40:37 FNo. Len. Field Value +01:40:37 ============================================================================ +01:40:37 [ 1] [ 4] [0810] +01:40:37 [ 7] [ 10] [0320085224] +01:40:37 [ 11] [ 6] [015224] +01:40:37 [ 37] [ 12] [579010152240] +01:40:37 [ 39] [ 2] [00] +01:40:37 [ 70] [ 3] [810] +01:40:37 ============================================================================ +01:40:37 Calculate Source COMM Id = 6 +01:40:37 ============================================================================ +01:40:37 + + +waiting on router queue for slot.... +01:40:45 ============================================================================ +01:40:45 Slot Id : <461> +01:40:45 Transaction Type : REQUEST +01:40:45 Received From : +01:40:45 ============================================================================ +01:40:45 FNo. Len. Field Value +01:40:45 ============================================================================ +01:40:45 [ 1] [ 4] [0800] +01:40:45 [ 7] [ 10] [0319063952] +01:40:45 [ 11] [ 6] [153506] +01:40:45 [ 70] [ 3] [301] +01:40:45 ============================================================================ +01:40:45 + + +waiting on router queue for slot.... +01:40:45 Sending to : +01:40:45 ============================================================================ +01:40:45 ============================================================================ +01:40:45 Slot Id : <461> +01:40:45 Transaction Type : RESPONSE +01:40:45 Received From : +01:40:45 ============================================================================ +01:40:45 FNo. Len. Field Value +01:40:45 ============================================================================ +01:40:45 [ 1] [ 4] [0810] +01:40:45 [ 7] [ 10] [0319063952] +01:40:45 [ 11] [ 6] [153506] +01:40:45 [ 39] [ 2] [00] +01:40:45 [ 70] [ 3] [301] +01:40:45 ============================================================================ +01:40:45 Calculate Source COMM Id = 2 +01:40:45 ============================================================================ +01:40:45 + + +waiting on router queue for slot.... +01:40:49 ============================================================================ +01:40:49 Slot Id : <9> +01:40:49 Transaction Type : REQUEST +01:40:49 Received From : +01:40:49 ============================================================================ +01:40:49 FNo. Len. Field Value +01:40:49 ============================================================================ +01:40:49 [ 1] [ 4] [0800] +01:40:49 [ 2] [ 5] [02531] +01:40:49 [ 3] [ 6] [579018] +01:40:49 [ 7] [ 10] [0319184049] +01:40:49 [ 11] [ 6] [806509] +01:40:49 [ 15] [ 10] [0319184049] +01:40:49 [ 37] [ 11] [57901806509] +01:40:49 [ 70] [ 3] [001] +01:40:49 ============================================================================ +01:40:49 + + +waiting on router queue for slot.... +01:40:49 ============================================================================ +01:40:49 Slot Id : <9> +01:40:49 Transaction Type : RESPONSE +01:40:49 Received From : +01:40:49 ============================================================================ +01:40:49 FNo. Len. Field Value +01:40:49 ============================================================================ +01:40:49 [ 1] [ 4] [0810] +01:40:49 [ 7] [ 10] [0319184049] +01:40:49 [ 11] [ 6] [806509] +01:40:49 [ 15] [ 4] [0319] +01:40:49 [ 37] [ 12] [57901806509] +01:40:49 [ 39] [ 2] [00] +01:40:49 [ 70] [ 3] [001] +01:40:49 ============================================================================ +01:40:49 Sending to : +01:40:49 ============================================================================ +01:40:49 + + +waiting on router queue for slot.... +01:41:00 ============================================================================ +01:41:00 Slot Id : <467> +01:41:00 Transaction Type : REQUEST +01:41:00 Received From : +01:41:00 ============================================================================ +01:41:00 FNo. Len. Field Value +01:41:00 ============================================================================ +01:41:00 [ 1] [ 4] [0800] +01:41:00 [ 7] [ 10] [0319064007] +01:41:00 [ 11] [ 6] [153507] +01:41:00 [ 70] [ 3] [301] +01:41:00 ============================================================================ +01:41:00 + + +waiting on router queue for slot.... +01:41:00 Sending to : +01:41:00 ============================================================================ +01:41:00 ============================================================================ +01:41:00 Slot Id : <467> +01:41:00 Transaction Type : RESPONSE +01:41:00 Received From : +01:41:00 ============================================================================ +01:41:00 FNo. Len. Field Value +01:41:00 ============================================================================ +01:41:00 [ 1] [ 4] [0810] +01:41:00 [ 7] [ 10] [0319064007] +01:41:00 [ 11] [ 6] [153507] +01:41:00 [ 39] [ 2] [00] +01:41:00 [ 70] [ 3] [301] +01:41:00 ============================================================================ +01:41:00 Calculate Source COMM Id = 2 +01:41:00 ============================================================================ +01:41:00 + + +waiting on router queue for slot.... +01:41:11 ============================================================================ +01:41:11 Slot Id : <45> +01:41:11 Transaction Type : REQUEST +01:41:11 Received From : +01:41:11 ============================================================================ +01:41:11 FNo. Len. Field Value +01:41:11 ============================================================================ +01:41:11 [ 1] [ 4] [0800] +01:41:11 [ 7] [ 10] [0319064018] +01:41:11 [ 11] [ 6] [153508] +01:41:11 [ 70] [ 3] [301] +01:41:11 ============================================================================ +01:41:11 + + +waiting on router queue for slot.... +01:41:11 Sending to : +01:41:11 ============================================================================ +01:41:11 ============================================================================ +01:41:11 Slot Id : <45> +01:41:11 Transaction Type : RESPONSE +01:41:11 Received From : +01:41:11 ============================================================================ +01:41:11 FNo. Len. Field Value +01:41:11 ============================================================================ +01:41:11 [ 1] [ 4] [0810] +01:41:11 [ 7] [ 10] [0319064018] +01:41:11 [ 11] [ 6] [153508] +01:41:11 [ 39] [ 2] [00] +01:41:11 [ 70] [ 3] [301] +01:41:11 ============================================================================ +01:41:11 Calculate Source COMM Id = 2 +01:41:11 ============================================================================ +01:41:11 + + +waiting on router queue for slot.... +01:41:21 ============================================================================ +01:41:21 Slot Id : <40> +01:41:21 Transaction Type : REQUEST +01:41:21 Received From : +01:41:21 ============================================================================ +01:41:21 FNo. Len. Field Value +01:41:21 ============================================================================ +01:41:21 [ 1] [ 4] [0800] +01:41:21 [ 7] [ 10] [0319183912] +01:41:21 [ 11] [ 6] [008184] +01:41:21 [ 37] [ 12] [57901008184] +01:41:21 [ 70] [ 3] [301] +01:41:21 ============================================================================ +01:41:21 + + +waiting on router queue for slot.... +01:41:21 Sending to : +01:41:21 ============================================================================ +01:41:21 ============================================================================ +01:41:21 Slot Id : <40> +01:41:21 Transaction Type : RESPONSE +01:41:21 Received From : +01:41:21 ============================================================================ +01:41:21 FNo. Len. Field Value +01:41:21 ============================================================================ +01:41:21 [ 1] [ 4] [0810] +01:41:21 [ 7] [ 10] [0319183912] +01:41:21 [ 11] [ 6] [008184] +01:41:21 [ 37] [ 12] [579010081840] +01:41:21 [ 39] [ 2] [00] +01:41:21 [ 70] [ 3] [810] +01:41:21 ============================================================================ +01:41:21 Calculate Source COMM Id = 4 +01:41:21 ============================================================================ +01:41:21 + + +waiting on router queue for slot.... +01:41:26 ============================================================================ +01:41:26 Slot Id : <18> +01:41:26 Transaction Type : REQUEST +01:41:26 Received From : +01:41:26 ============================================================================ +01:41:26 FNo. Len. Field Value +01:41:26 ============================================================================ +01:41:26 [ 1] [ 4] [0800] +01:41:26 [ 7] [ 10] [0319064034] +01:41:26 [ 11] [ 6] [153509] +01:41:26 [ 70] [ 3] [301] +01:41:26 ============================================================================ +01:41:26 + + +waiting on router queue for slot.... +01:41:26 Sending to : +01:41:26 ============================================================================ +01:41:26 ============================================================================ +01:41:26 Slot Id : <18> +01:41:26 Transaction Type : RESPONSE +01:41:26 Received From : +01:41:26 ============================================================================ +01:41:26 FNo. Len. Field Value +01:41:26 ============================================================================ +01:41:26 [ 1] [ 4] [0810] +01:41:26 [ 7] [ 10] [0319064034] +01:41:26 [ 11] [ 6] [153509] +01:41:26 [ 39] [ 2] [00] +01:41:26 [ 70] [ 3] [301] +01:41:26 ============================================================================ +01:41:26 Calculate Source COMM Id = 2 +01:41:26 ============================================================================ +01:41:26 + + +waiting on router queue for slot.... +01:41:37 ============================================================================ +01:41:37 Slot Id : <497> +01:41:37 Transaction Type : REQUEST +01:41:37 Received From : +01:41:37 ============================================================================ +01:41:37 FNo. Len. Field Value +01:41:37 ============================================================================ +01:41:37 [ 1] [ 4] [0800] +01:41:37 [ 7] [ 10] [0319064045] +01:41:37 [ 11] [ 6] [153510] +01:41:37 [ 70] [ 3] [301] +01:41:37 ============================================================================ +01:41:37 + + +waiting on router queue for slot.... +01:41:37 Sending to : +01:41:37 ============================================================================ +01:41:37 ============================================================================ +01:41:37 Slot Id : <497> +01:41:37 Transaction Type : RESPONSE +01:41:37 Received From : +01:41:37 ============================================================================ +01:41:37 FNo. Len. Field Value +01:41:37 ============================================================================ +01:41:37 [ 1] [ 4] [0810] +01:41:37 [ 7] [ 10] [0319064045] +01:41:37 [ 11] [ 6] [153510] +01:41:37 [ 39] [ 2] [00] +01:41:37 [ 70] [ 3] [301] +01:41:37 ============================================================================ +01:41:37 Calculate Source COMM Id = 2 +01:41:37 ============================================================================ +01:41:37 + + +waiting on router queue for slot.... +01:41:42 ============================================================================ +01:41:42 Slot Id : <28> +01:41:42 Transaction Type : REQUEST +01:41:42 Received From : +01:41:42 ============================================================================ +01:41:42 FNo. Len. Field Value +01:41:42 ============================================================================ +01:41:42 [ 1] [ 4] [0800] +01:41:42 [ 7] [ 10] [0320085329] +01:41:42 [ 11] [ 6] [015329] +01:41:42 [ 37] [ 12] [57901015329] +01:41:42 [ 70] [ 3] [301] +01:41:42 ============================================================================ +01:41:42 + + +waiting on router queue for slot.... +01:41:42 Sending to : +01:41:42 ============================================================================ +01:41:42 ============================================================================ +01:41:42 Slot Id : <28> +01:41:42 Transaction Type : RESPONSE +01:41:42 Received From : +01:41:42 ============================================================================ +01:41:42 FNo. Len. Field Value +01:41:42 ============================================================================ +01:41:42 [ 1] [ 4] [0810] +01:41:42 [ 7] [ 10] [0320085329] +01:41:42 [ 11] [ 6] [015329] +01:41:42 [ 37] [ 12] [579010153290] +01:41:42 [ 39] [ 2] [00] +01:41:42 [ 70] [ 3] [810] +01:41:42 ============================================================================ +01:41:42 Calculate Source COMM Id = 6 +01:41:42 ============================================================================ +01:41:42 + + +waiting on router queue for slot.... +01:41:48 ============================================================================ +01:41:48 Slot Id : <43> +01:41:48 Transaction Type : REQUEST +01:41:48 Received From : +01:41:48 ============================================================================ +01:41:48 FNo. Len. Field Value +01:41:48 ============================================================================ +01:41:48 [ 1] [ 4] [0800] +01:41:48 [ 7] [ 10] [0319064056] +01:41:48 [ 11] [ 6] [153511] +01:41:48 [ 70] [ 3] [301] +01:41:48 ============================================================================ +01:41:48 + + +waiting on router queue for slot.... +01:41:48 Sending to : +01:41:48 ============================================================================ +01:41:48 ============================================================================ +01:41:48 Slot Id : <43> +01:41:48 Transaction Type : RESPONSE +01:41:48 Received From : +01:41:48 ============================================================================ +01:41:48 FNo. Len. Field Value +01:41:48 ============================================================================ +01:41:48 [ 1] [ 4] [0810] +01:41:48 [ 7] [ 10] [0319064056] +01:41:48 [ 11] [ 6] [153511] +01:41:48 [ 39] [ 2] [00] +01:41:48 [ 70] [ 3] [301] +01:41:48 ============================================================================ +01:41:48 Calculate Source COMM Id = 2 +01:41:48 ============================================================================ +01:41:48 + + +waiting on router queue for slot.... +01:41:51 ============================================================================ +01:41:51 Slot Id : <50> +01:41:51 Transaction Type : REQUEST +01:41:51 Received From : +01:41:51 ============================================================================ +01:41:51 FNo. Len. Field Value +01:41:51 ============================================================================ +01:41:51 [ 1] [ 4] [0800] +01:41:51 [ 2] [ 5] [02531] +01:41:51 [ 3] [ 6] [579018] +01:41:51 [ 7] [ 10] [0319184151] +01:41:51 [ 11] [ 6] [806510] +01:41:51 [ 15] [ 10] [0319184151] +01:41:51 [ 37] [ 11] [57901806510] +01:41:51 [ 70] [ 3] [001] +01:41:51 ============================================================================ +01:41:51 + + +waiting on router queue for slot.... +01:41:51 ============================================================================ +01:41:51 Slot Id : <50> +01:41:51 Transaction Type : RESPONSE +01:41:51 Received From : +01:41:51 ============================================================================ +01:41:51 FNo. Len. Field Value +01:41:51 ============================================================================ +01:41:51 [ 1] [ 4] [0810] +01:41:51 [ 7] [ 10] [0319184151] +01:41:51 [ 11] [ 6] [806510] +01:41:51 [ 15] [ 4] [0319] +01:41:51 [ 37] [ 12] [57901806510] +01:41:51 [ 39] [ 2] [00] +01:41:51 [ 70] [ 3] [001] +01:41:51 ============================================================================ +01:41:51 Sending to : +01:41:51 ============================================================================ +01:41:51 + + +waiting on router queue for slot.... +01:42:04 ============================================================================ +01:42:04 Slot Id : <8> +01:42:04 Transaction Type : REQUEST +01:42:04 Received From : +01:42:04 ============================================================================ +01:42:04 FNo. Len. Field Value +01:42:04 ============================================================================ +01:42:04 [ 1] [ 4] [0800] +01:42:04 [ 7] [ 10] [0319064112] +01:42:04 [ 11] [ 6] [153512] +01:42:04 [ 70] [ 3] [301] +01:42:04 ============================================================================ +01:42:04 + + +waiting on router queue for slot.... +01:42:04 Sending to : +01:42:04 ============================================================================ +01:42:04 ============================================================================ +01:42:04 Slot Id : <8> +01:42:04 Transaction Type : RESPONSE +01:42:04 Received From : +01:42:04 ============================================================================ +01:42:04 FNo. Len. Field Value +01:42:04 ============================================================================ +01:42:04 [ 1] [ 4] [0810] +01:42:04 [ 7] [ 10] [0319064112] +01:42:04 [ 11] [ 6] [153512] +01:42:04 [ 39] [ 2] [00] +01:42:04 [ 70] [ 3] [301] +01:42:04 ============================================================================ +01:42:04 Calculate Source COMM Id = 2 +01:42:04 ============================================================================ +01:42:04 + + +waiting on router queue for slot.... +01:42:21 ============================================================================ +01:42:21 Slot Id : <52> +01:42:21 Transaction Type : REQUEST +01:42:21 Received From : +01:42:21 ============================================================================ +01:42:21 FNo. Len. Field Value +01:42:21 ============================================================================ +01:42:21 [ 1] [ 4] [0800] +01:42:21 [ 7] [ 10] [0319064128] +01:42:21 [ 11] [ 6] [153513] +01:42:21 [ 70] [ 3] [301] +01:42:21 ============================================================================ +01:42:21 + + +waiting on router queue for slot.... +01:42:21 Sending to : +01:42:21 ============================================================================ +01:42:21 ============================================================================ +01:42:21 Slot Id : <52> +01:42:21 Transaction Type : RESPONSE +01:42:21 Received From : +01:42:21 ============================================================================ +01:42:21 FNo. Len. Field Value +01:42:21 ============================================================================ +01:42:21 [ 1] [ 4] [0810] +01:42:21 [ 7] [ 10] [0319064128] +01:42:21 [ 11] [ 6] [153513] +01:42:21 [ 39] [ 2] [00] +01:42:21 [ 70] [ 3] [301] +01:42:21 ============================================================================ +01:42:21 Calculate Source COMM Id = 2 +01:42:21 ============================================================================ +01:42:21 + + +waiting on router queue for slot.... +01:42:36 ============================================================================ +01:42:36 Slot Id : <44> +01:42:36 Transaction Type : REQUEST +01:42:36 Received From : +01:42:36 ============================================================================ +01:42:36 FNo. Len. Field Value +01:42:36 ============================================================================ +01:42:36 [ 1] [ 4] [0800] +01:42:36 [ 7] [ 10] [0319064143] +01:42:36 [ 11] [ 6] [153514] +01:42:36 [ 70] [ 3] [301] +01:42:36 ============================================================================ +01:42:36 + + +waiting on router queue for slot.... +01:42:36 Sending to : +01:42:36 ============================================================================ +01:42:36 ============================================================================ +01:42:36 Slot Id : <44> +01:42:36 Transaction Type : RESPONSE +01:42:36 Received From : +01:42:36 ============================================================================ +01:42:36 FNo. Len. Field Value +01:42:36 ============================================================================ +01:42:36 [ 1] [ 4] [0810] +01:42:36 [ 7] [ 10] [0319064143] +01:42:36 [ 11] [ 6] [153514] +01:42:36 [ 39] [ 2] [00] +01:42:36 [ 70] [ 3] [301] +01:42:36 ============================================================================ +01:42:36 Calculate Source COMM Id = 2 +01:42:36 ============================================================================ +01:42:36 + + +waiting on router queue for slot.... +01:42:47 ============================================================================ +01:42:47 Slot Id : <61> +01:42:47 Transaction Type : REQUEST +01:42:47 Received From : +01:42:47 ============================================================================ +01:42:47 FNo. Len. Field Value +01:42:47 ============================================================================ +01:42:47 [ 1] [ 4] [0800] +01:42:47 [ 7] [ 10] [0320085434] +01:42:47 [ 11] [ 6] [015434] +01:42:47 [ 37] [ 12] [57901015434] +01:42:47 [ 70] [ 3] [301] +01:42:47 ============================================================================ +01:42:47 + + +waiting on router queue for slot.... +01:42:47 Sending to : +01:42:47 ============================================================================ +01:42:47 ============================================================================ +01:42:47 Slot Id : <61> +01:42:47 Transaction Type : RESPONSE +01:42:47 Received From : +01:42:47 ============================================================================ +01:42:47 FNo. Len. Field Value +01:42:47 ============================================================================ +01:42:47 [ 1] [ 4] [0810] +01:42:47 [ 7] [ 10] [0320085434] +01:42:47 [ 11] [ 6] [015434] +01:42:47 [ 37] [ 12] [579010154340] +01:42:47 [ 39] [ 2] [00] +01:42:47 [ 70] [ 3] [810] +01:42:47 ============================================================================ +01:42:47 Calculate Source COMM Id = 6 +01:42:47 ============================================================================ +01:42:47 + + +waiting on router queue for slot.... +01:42:52 ============================================================================ +01:42:52 Slot Id : <25> +01:42:52 Transaction Type : REQUEST +01:42:52 Received From : +01:42:52 ============================================================================ +01:42:52 FNo. Len. Field Value +01:42:52 ============================================================================ +01:42:52 [ 1] [ 4] [0800] +01:42:52 [ 7] [ 10] [0319064159] +01:42:52 [ 11] [ 6] [153515] +01:42:52 [ 70] [ 3] [301] +01:42:52 ============================================================================ +01:42:52 + + +waiting on router queue for slot.... +01:42:52 Sending to : +01:42:52 ============================================================================ +01:42:52 ============================================================================ +01:42:52 Slot Id : <25> +01:42:52 Transaction Type : RESPONSE +01:42:52 Received From : +01:42:52 ============================================================================ +01:42:52 FNo. Len. Field Value +01:42:52 ============================================================================ +01:42:52 [ 1] [ 4] [0810] +01:42:52 [ 7] [ 10] [0319064159] +01:42:52 [ 11] [ 6] [153515] +01:42:52 [ 39] [ 2] [00] +01:42:52 [ 70] [ 3] [301] +01:42:52 ============================================================================ +01:42:52 Calculate Source COMM Id = 2 +01:42:52 ============================================================================ +01:42:52 + + +waiting on router queue for slot.... +01:42:53 ============================================================================ +01:42:53 Slot Id : <15> +01:42:53 Transaction Type : REQUEST +01:42:53 Received From : +01:42:53 ============================================================================ +01:42:53 FNo. Len. Field Value +01:42:53 ============================================================================ +01:42:53 [ 1] [ 4] [0800] +01:42:53 [ 2] [ 5] [02531] +01:42:53 [ 3] [ 6] [579018] +01:42:53 [ 7] [ 10] [0319184253] +01:42:53 [ 11] [ 6] [806511] +01:42:53 [ 15] [ 10] [0319184253] +01:42:53 [ 37] [ 11] [57901806511] +01:42:53 [ 70] [ 3] [001] +01:42:53 ============================================================================ +01:42:53 + + +waiting on router queue for slot.... +01:42:53 ============================================================================ +01:42:53 Slot Id : <15> +01:42:53 Transaction Type : RESPONSE +01:42:53 Received From : +01:42:53 ============================================================================ +01:42:53 FNo. Len. Field Value +01:42:53 ============================================================================ +01:42:53 [ 1] [ 4] [0810] +01:42:53 [ 7] [ 10] [0319184253] +01:42:53 [ 11] [ 6] [806511] +01:42:53 [ 15] [ 4] [0319] +01:42:53 [ 37] [ 12] [57901806511] +01:42:53 [ 39] [ 2] [00] +01:42:53 [ 70] [ 3] [001] +01:42:53 ============================================================================ +01:42:53 Sending to : +01:42:53 ============================================================================ +01:42:53 + + +waiting on router queue for slot.... +01:43:03 ============================================================================ +01:43:03 Slot Id : <55> +01:43:03 Transaction Type : REQUEST +01:43:03 Received From : +01:43:03 ============================================================================ +01:43:03 FNo. Len. Field Value +01:43:03 ============================================================================ +01:43:03 [ 1] [ 4] [0800] +01:43:03 [ 7] [ 10] [0319064210] +01:43:03 [ 11] [ 6] [153516] +01:43:03 [ 70] [ 3] [301] +01:43:03 ============================================================================ +01:43:03 + + +waiting on router queue for slot.... +01:43:03 Sending to : +01:43:03 ============================================================================ +01:43:03 ============================================================================ +01:43:03 Slot Id : <55> +01:43:03 Transaction Type : RESPONSE +01:43:03 Received From : +01:43:03 ============================================================================ +01:43:03 FNo. Len. Field Value +01:43:03 ============================================================================ +01:43:03 [ 1] [ 4] [0810] +01:43:03 [ 7] [ 10] [0319064210] +01:43:03 [ 11] [ 6] [153516] +01:43:03 [ 39] [ 2] [00] +01:43:03 [ 70] [ 3] [301] +01:43:03 ============================================================================ +01:43:03 Calculate Source COMM Id = 2 +01:43:03 ============================================================================ +01:43:03 + + +waiting on router queue for slot.... +01:43:13 ============================================================================ +01:43:13 Slot Id : <478> +01:43:13 Transaction Type : REQUEST +01:43:13 Received From : +01:43:13 ============================================================================ +01:43:13 FNo. Len. Field Value +01:43:13 ============================================================================ +01:43:13 [ 1] [ 4] [0800] +01:43:13 [ 7] [ 10] [0319064220] +01:43:13 [ 11] [ 6] [153517] +01:43:13 [ 70] [ 3] [301] +01:43:13 ============================================================================ +01:43:13 + + +waiting on router queue for slot.... +01:43:13 Sending to : +01:43:13 ============================================================================ +01:43:13 ============================================================================ +01:43:13 Slot Id : <478> +01:43:13 Transaction Type : RESPONSE +01:43:13 Received From : +01:43:13 ============================================================================ +01:43:13 FNo. Len. Field Value +01:43:13 ============================================================================ +01:43:13 [ 1] [ 4] [0810] +01:43:13 [ 7] [ 10] [0319064220] +01:43:13 [ 11] [ 6] [153517] +01:43:13 [ 39] [ 2] [00] +01:43:13 [ 70] [ 3] [301] +01:43:13 ============================================================================ +01:43:13 Calculate Source COMM Id = 2 +01:43:13 ============================================================================ +01:43:13 + + +waiting on router queue for slot.... +01:43:24 ============================================================================ +01:43:24 Slot Id : <68> +01:43:24 Transaction Type : REQUEST +01:43:24 Received From : +01:43:24 ============================================================================ +01:43:24 FNo. Len. Field Value +01:43:24 ============================================================================ +01:43:24 [ 1] [ 4] [0800] +01:43:24 [ 7] [ 10] [0319064231] +01:43:24 [ 11] [ 6] [153518] +01:43:24 [ 70] [ 3] [301] +01:43:24 ============================================================================ +01:43:24 + + +waiting on router queue for slot.... +01:43:24 Sending to : +01:43:24 ============================================================================ +01:43:24 ============================================================================ +01:43:24 Slot Id : <68> +01:43:24 Transaction Type : RESPONSE +01:43:24 Received From : +01:43:24 ============================================================================ +01:43:24 FNo. Len. Field Value +01:43:24 ============================================================================ +01:43:24 [ 1] [ 4] [0810] +01:43:24 [ 7] [ 10] [0319064231] +01:43:24 [ 11] [ 6] [153518] +01:43:24 [ 39] [ 2] [00] +01:43:24 [ 70] [ 3] [301] +01:43:24 ============================================================================ +01:43:24 Calculate Source COMM Id = 2 +01:43:24 ============================================================================ +01:43:24 + + +waiting on router queue for slot.... +01:43:35 ============================================================================ +01:43:35 Slot Id : <63> +01:43:35 Transaction Type : REQUEST +01:43:35 Received From : +01:43:35 ============================================================================ +01:43:35 FNo. Len. Field Value +01:43:35 ============================================================================ +01:43:35 [ 1] [ 4] [0800] +01:43:35 [ 7] [ 10] [0319064242] +01:43:35 [ 11] [ 6] [153519] +01:43:35 [ 70] [ 3] [301] +01:43:35 ============================================================================ +01:43:35 + + +waiting on router queue for slot.... +01:43:35 Sending to : +01:43:35 ============================================================================ +01:43:35 ============================================================================ +01:43:35 Slot Id : <63> +01:43:35 Transaction Type : RESPONSE +01:43:35 Received From : +01:43:35 ============================================================================ +01:43:35 FNo. Len. Field Value +01:43:35 ============================================================================ +01:43:35 [ 1] [ 4] [0810] +01:43:35 [ 7] [ 10] [0319064242] +01:43:35 [ 11] [ 6] [153519] +01:43:35 [ 39] [ 2] [00] +01:43:35 [ 70] [ 3] [301] +01:43:35 ============================================================================ +01:43:35 Calculate Source COMM Id = 2 +01:43:35 ============================================================================ +01:43:35 + + +waiting on router queue for slot.... +01:43:45 ============================================================================ +01:43:45 Slot Id : <60> +01:43:45 Transaction Type : REQUEST +01:43:45 Received From : +01:43:45 ============================================================================ +01:43:45 FNo. Len. Field Value +01:43:45 ============================================================================ +01:43:45 [ 1] [ 4] [0800] +01:43:45 [ 7] [ 10] [0319064253] +01:43:45 [ 11] [ 6] [153520] +01:43:45 [ 70] [ 3] [301] +01:43:45 ============================================================================ +01:43:45 + + +waiting on router queue for slot.... +01:43:45 Sending to : +01:43:45 ============================================================================ +01:43:45 ============================================================================ +01:43:45 Slot Id : <60> +01:43:45 Transaction Type : RESPONSE +01:43:45 Received From : +01:43:45 ============================================================================ +01:43:45 FNo. Len. Field Value +01:43:45 ============================================================================ +01:43:45 [ 1] [ 4] [0810] +01:43:45 [ 7] [ 10] [0319064253] +01:43:45 [ 11] [ 6] [153520] +01:43:45 [ 39] [ 2] [00] +01:43:45 [ 70] [ 3] [301] +01:43:45 ============================================================================ +01:43:45 Calculate Source COMM Id = 2 +01:43:45 ============================================================================ +01:43:45 + + +waiting on router queue for slot.... +01:43:52 ============================================================================ +01:43:52 Slot Id : <464> +01:43:52 Transaction Type : REQUEST +01:43:52 Received From : +01:43:52 ============================================================================ +01:43:52 FNo. Len. Field Value +01:43:52 ============================================================================ +01:43:52 [ 1] [ 4] [0800] +01:43:52 [ 7] [ 10] [0320085539] +01:43:52 [ 11] [ 6] [015539] +01:43:52 [ 37] [ 12] [57901015539] +01:43:52 [ 70] [ 3] [301] +01:43:52 ============================================================================ +01:43:52 + + +waiting on router queue for slot.... +01:43:52 Sending to : +01:43:52 ============================================================================ +01:43:52 ============================================================================ +01:43:52 Slot Id : <464> +01:43:52 Transaction Type : RESPONSE +01:43:52 Received From : +01:43:52 ============================================================================ +01:43:52 FNo. Len. Field Value +01:43:52 ============================================================================ +01:43:52 [ 1] [ 4] [0810] +01:43:52 [ 7] [ 10] [0320085539] +01:43:52 [ 11] [ 6] [015539] +01:43:52 [ 37] [ 12] [579010155390] +01:43:52 [ 39] [ 2] [00] +01:43:52 [ 70] [ 3] [810] +01:43:52 ============================================================================ +01:43:52 Calculate Source COMM Id = 6 +01:43:52 ============================================================================ +01:43:52 + + +waiting on router queue for slot.... +01:43:55 ============================================================================ +01:43:55 Slot Id : <41> +01:43:55 Transaction Type : REQUEST +01:43:55 Received From : +01:43:55 ============================================================================ +01:43:55 FNo. Len. Field Value +01:43:55 ============================================================================ +01:43:55 [ 1] [ 4] [0800] +01:43:55 [ 2] [ 5] [02531] +01:43:55 [ 3] [ 6] [579018] +01:43:55 [ 7] [ 10] [0319184355] +01:43:55 [ 11] [ 6] [806512] +01:43:55 [ 15] [ 10] [0319184355] +01:43:55 [ 37] [ 11] [57901806512] +01:43:55 [ 70] [ 3] [001] +01:43:55 ============================================================================ +01:43:55 + + +waiting on router queue for slot.... +01:43:55 ============================================================================ +01:43:55 Slot Id : <41> +01:43:55 Transaction Type : RESPONSE +01:43:55 Received From : +01:43:55 ============================================================================ +01:43:55 FNo. Len. Field Value +01:43:55 ============================================================================ +01:43:55 [ 1] [ 4] [0810] +01:43:55 [ 7] [ 10] [0319184355] +01:43:55 [ 11] [ 6] [806512] +01:43:55 [ 15] [ 4] [0319] +01:43:55 [ 37] [ 12] [57901806512] +01:43:55 [ 39] [ 2] [00] +01:43:55 [ 70] [ 3] [001] +01:43:55 ============================================================================ +01:43:55 Sending to : +01:43:55 ============================================================================ +01:43:55 + + +waiting on router queue for slot.... +01:44:01 ============================================================================ +01:44:01 Slot Id : <38> +01:44:01 Transaction Type : REQUEST +01:44:01 Received From : +01:44:01 ============================================================================ +01:44:01 FNo. Len. Field Value +01:44:01 ============================================================================ +01:44:01 [ 1] [ 4] [0800] +01:44:01 [ 7] [ 10] [0319064308] +01:44:01 [ 11] [ 6] [153521] +01:44:01 [ 70] [ 3] [301] +01:44:01 ============================================================================ +01:44:01 + + +waiting on router queue for slot.... +01:44:01 Sending to : +01:44:01 ============================================================================ +01:44:01 ============================================================================ +01:44:01 Slot Id : <38> +01:44:01 Transaction Type : RESPONSE +01:44:01 Received From : +01:44:01 ============================================================================ +01:44:01 FNo. Len. Field Value +01:44:01 ============================================================================ +01:44:01 [ 1] [ 4] [0810] +01:44:01 [ 7] [ 10] [0319064308] +01:44:01 [ 11] [ 6] [153521] +01:44:01 [ 39] [ 2] [00] +01:44:01 [ 70] [ 3] [301] +01:44:01 ============================================================================ +01:44:01 Calculate Source COMM Id = 2 +01:44:01 ============================================================================ +01:44:01 + + +waiting on router queue for slot.... +01:44:12 ============================================================================ +01:44:12 Slot Id : <73> +01:44:12 Transaction Type : REQUEST +01:44:12 Received From : +01:44:12 ============================================================================ +01:44:12 FNo. Len. Field Value +01:44:12 ============================================================================ +01:44:12 [ 1] [ 4] [0800] +01:44:12 [ 7] [ 10] [0319064319] +01:44:12 [ 11] [ 6] [153522] +01:44:12 [ 70] [ 3] [301] +01:44:12 ============================================================================ +01:44:12 + + +waiting on router queue for slot.... +01:44:12 Sending to : +01:44:12 ============================================================================ +01:44:12 ============================================================================ +01:44:12 Slot Id : <73> +01:44:12 Transaction Type : RESPONSE +01:44:12 Received From : +01:44:12 ============================================================================ +01:44:12 FNo. Len. Field Value +01:44:12 ============================================================================ +01:44:12 [ 1] [ 4] [0810] +01:44:12 [ 7] [ 10] [0319064319] +01:44:12 [ 11] [ 6] [153522] +01:44:12 [ 39] [ 2] [00] +01:44:12 [ 70] [ 3] [301] +01:44:12 ============================================================================ +01:44:12 Calculate Source COMM Id = 2 +01:44:12 ============================================================================ +01:44:12 + + +waiting on router queue for slot.... +01:44:22 ============================================================================ +01:44:22 Slot Id : <20> +01:44:22 Transaction Type : REQUEST +01:44:22 Received From : +01:44:22 ============================================================================ +01:44:22 FNo. Len. Field Value +01:44:22 ============================================================================ +01:44:22 [ 1] [ 4] [0800] +01:44:22 [ 7] [ 10] [0319064329] +01:44:22 [ 11] [ 6] [153523] +01:44:22 [ 70] [ 3] [301] +01:44:22 ============================================================================ +01:44:22 + + +waiting on router queue for slot.... +01:44:22 Sending to : +01:44:22 ============================================================================ +01:44:22 ============================================================================ +01:44:22 Slot Id : <20> +01:44:22 Transaction Type : RESPONSE +01:44:22 Received From : +01:44:22 ============================================================================ +01:44:22 FNo. Len. Field Value +01:44:22 ============================================================================ +01:44:22 [ 1] [ 4] [0810] +01:44:22 [ 7] [ 10] [0319064329] +01:44:22 [ 11] [ 6] [153523] +01:44:22 [ 39] [ 2] [00] +01:44:22 [ 70] [ 3] [301] +01:44:22 ============================================================================ +01:44:22 Calculate Source COMM Id = 2 +01:44:22 ============================================================================ +01:44:22 + + +waiting on router queue for slot.... +01:44:33 ============================================================================ +01:44:33 Slot Id : <487> +01:44:33 Transaction Type : REQUEST +01:44:33 Received From : +01:44:33 ============================================================================ +01:44:33 FNo. Len. Field Value +01:44:33 ============================================================================ +01:44:33 [ 1] [ 4] [0800] +01:44:33 [ 7] [ 10] [0319064340] +01:44:33 [ 11] [ 6] [153524] +01:44:33 [ 70] [ 3] [301] +01:44:33 ============================================================================ +01:44:33 + + +waiting on router queue for slot.... +01:44:33 Sending to : +01:44:33 ============================================================================ +01:44:33 ============================================================================ +01:44:33 Slot Id : <487> +01:44:33 Transaction Type : RESPONSE +01:44:33 Received From : +01:44:33 ============================================================================ +01:44:33 FNo. Len. Field Value +01:44:33 ============================================================================ +01:44:33 [ 1] [ 4] [0810] +01:44:33 [ 7] [ 10] [0319064340] +01:44:33 [ 11] [ 6] [153524] +01:44:33 [ 39] [ 2] [00] +01:44:33 [ 70] [ 3] [301] +01:44:33 ============================================================================ +01:44:33 Calculate Source COMM Id = 2 +01:44:33 ============================================================================ +01:44:33 + + +waiting on router queue for slot.... +01:44:44 ============================================================================ +01:44:44 Slot Id : <27> +01:44:44 Transaction Type : REQUEST +01:44:44 Received From : +01:44:44 ============================================================================ +01:44:44 FNo. Len. Field Value +01:44:44 ============================================================================ +01:44:44 [ 1] [ 4] [0800] +01:44:44 [ 7] [ 10] [0319064351] +01:44:44 [ 11] [ 6] [153525] +01:44:44 [ 70] [ 3] [301] +01:44:44 ============================================================================ +01:44:44 + + +waiting on router queue for slot.... +01:44:44 Sending to : +01:44:44 ============================================================================ +01:44:44 ============================================================================ +01:44:44 Slot Id : <27> +01:44:44 Transaction Type : RESPONSE +01:44:44 Received From : +01:44:44 ============================================================================ +01:44:44 FNo. Len. Field Value +01:44:44 ============================================================================ +01:44:44 [ 1] [ 4] [0810] +01:44:44 [ 7] [ 10] [0319064351] +01:44:44 [ 11] [ 6] [153525] +01:44:44 [ 39] [ 2] [00] +01:44:44 [ 70] [ 3] [301] +01:44:44 ============================================================================ +01:44:44 Calculate Source COMM Id = 2 +01:44:44 ============================================================================ +01:44:44 + + +waiting on router queue for slot.... +01:44:55 ============================================================================ +01:44:55 Slot Id : <48> +01:44:55 Transaction Type : REQUEST +01:44:55 Received From : +01:44:55 ============================================================================ +01:44:55 FNo. Len. Field Value +01:44:55 ============================================================================ +01:44:55 [ 1] [ 4] [0800] +01:44:55 [ 7] [ 10] [0319064402] +01:44:55 [ 11] [ 6] [153526] +01:44:55 [ 70] [ 3] [301] +01:44:55 ============================================================================ +01:44:55 + + +waiting on router queue for slot.... +01:44:55 Sending to : +01:44:55 ============================================================================ +01:44:55 ============================================================================ +01:44:55 Slot Id : <48> +01:44:55 Transaction Type : RESPONSE +01:44:55 Received From : +01:44:55 ============================================================================ +01:44:55 FNo. Len. Field Value +01:44:55 ============================================================================ +01:44:55 [ 1] [ 4] [0810] +01:44:55 [ 7] [ 10] [0319064402] +01:44:55 [ 11] [ 6] [153526] +01:44:55 [ 39] [ 2] [00] +01:44:55 [ 70] [ 3] [301] +01:44:55 ============================================================================ +01:44:55 Calculate Source COMM Id = 2 +01:44:55 ============================================================================ +01:44:55 + + +waiting on router queue for slot.... +01:44:56 ============================================================================ +01:44:56 Slot Id : <26> +01:44:56 Transaction Type : REQUEST +01:44:56 Received From : +01:44:56 ============================================================================ +01:44:56 FNo. Len. Field Value +01:44:56 ============================================================================ +01:44:56 [ 1] [ 4] [0800] +01:44:56 [ 7] [ 10] [0319185242] +01:44:56 [ 11] [ 6] [013475] +01:44:56 [ 37] [ 12] [57901013475] +01:44:56 [ 70] [ 3] [301] +01:44:56 ============================================================================ +01:44:56 + + +waiting on router queue for slot.... +01:44:56 Sending to : +01:44:56 ============================================================================ +01:44:56 ============================================================================ +01:44:56 Slot Id : <26> +01:44:56 Transaction Type : RESPONSE +01:44:56 Received From : +01:44:56 ============================================================================ +01:44:56 FNo. Len. Field Value +01:44:56 ============================================================================ +01:44:56 [ 1] [ 4] [0810] +01:44:56 [ 7] [ 10] [0319185242] +01:44:56 [ 11] [ 6] [013475] +01:44:56 [ 37] [ 12] [579010134750] +01:44:56 [ 39] [ 2] [00] +01:44:56 [ 70] [ 3] [810] +01:44:56 ============================================================================ +01:44:56 Calculate Source COMM Id = 1 +01:44:56 ============================================================================ +01:44:56 + + +waiting on router queue for slot.... +01:44:57 ============================================================================ +01:44:57 Slot Id : <46> +01:44:57 Transaction Type : REQUEST +01:44:57 Received From : +01:44:57 ============================================================================ +01:44:57 FNo. Len. Field Value +01:44:57 ============================================================================ +01:44:57 [ 1] [ 4] [0800] +01:44:57 [ 7] [ 10] [0320085644] +01:44:57 [ 11] [ 6] [015644] +01:44:57 [ 37] [ 12] [57901015644] +01:44:57 [ 70] [ 3] [301] +01:44:57 ============================================================================ +01:44:57 + + +waiting on router queue for slot.... +01:44:57 Sending to : +01:44:57 ============================================================================ +01:44:57 ============================================================================ +01:44:57 Slot Id : <46> +01:44:57 Transaction Type : RESPONSE +01:44:57 Received From : +01:44:57 ============================================================================ +01:44:57 FNo. Len. Field Value +01:44:57 ============================================================================ +01:44:57 [ 1] [ 4] [0810] +01:44:57 [ 7] [ 10] [0320085644] +01:44:57 [ 11] [ 6] [015644] +01:44:57 [ 37] [ 12] [579010156440] +01:44:57 [ 39] [ 2] [00] +01:44:57 [ 70] [ 3] [810] +01:44:57 ============================================================================ +01:44:57 Calculate Source COMM Id = 6 +01:44:57 ============================================================================ +01:44:57 + + +waiting on router queue for slot.... +01:44:57 ============================================================================ +01:44:57 Slot Id : <19> +01:44:57 Transaction Type : REQUEST +01:44:57 Received From : +01:44:57 ============================================================================ +01:44:57 FNo. Len. Field Value +01:44:57 ============================================================================ +01:44:57 [ 1] [ 4] [0800] +01:44:57 [ 2] [ 5] [02531] +01:44:57 [ 3] [ 6] [579018] +01:44:57 [ 7] [ 10] [0319184457] +01:44:57 [ 11] [ 6] [806513] +01:44:57 [ 15] [ 10] [0319184457] +01:44:57 [ 37] [ 11] [57901806513] +01:44:57 [ 70] [ 3] [001] +01:44:57 ============================================================================ +01:44:57 + + +waiting on router queue for slot.... +01:44:57 ============================================================================ +01:44:57 Slot Id : <19> +01:44:57 Transaction Type : RESPONSE +01:44:57 Received From : +01:44:57 ============================================================================ +01:44:57 FNo. Len. Field Value +01:44:57 ============================================================================ +01:44:57 [ 1] [ 4] [0810] +01:44:57 [ 7] [ 10] [0319184457] +01:44:57 [ 11] [ 6] [806513] +01:44:57 [ 15] [ 4] [0319] +01:44:57 [ 37] [ 12] [57901806513] +01:44:57 [ 39] [ 2] [00] +01:44:57 [ 70] [ 3] [001] +01:44:57 ============================================================================ +01:44:57 Sending to : +01:44:57 ============================================================================ +01:44:57 + + +waiting on router queue for slot.... +01:45:06 ============================================================================ +01:45:06 Slot Id : <69> +01:45:06 Transaction Type : REQUEST +01:45:06 Received From : +01:45:06 ============================================================================ +01:45:06 FNo. Len. Field Value +01:45:06 ============================================================================ +01:45:06 [ 1] [ 4] [0800] +01:45:06 [ 7] [ 10] [0319064413] +01:45:06 [ 11] [ 6] [153527] +01:45:06 [ 70] [ 3] [301] +01:45:06 ============================================================================ +01:45:06 + + +waiting on router queue for slot.... +01:45:06 Sending to : +01:45:06 ============================================================================ +01:45:06 ============================================================================ +01:45:06 Slot Id : <69> +01:45:06 Transaction Type : RESPONSE +01:45:06 Received From : +01:45:06 ============================================================================ +01:45:06 FNo. Len. Field Value +01:45:06 ============================================================================ +01:45:06 [ 1] [ 4] [0810] +01:45:06 [ 7] [ 10] [0319064413] +01:45:06 [ 11] [ 6] [153527] +01:45:06 [ 39] [ 2] [00] +01:45:06 [ 70] [ 3] [301] +01:45:06 ============================================================================ +01:45:06 Calculate Source COMM Id = 2 +01:45:06 ============================================================================ +01:45:06 + + +waiting on router queue for slot.... +01:45:18 ============================================================================ +01:45:18 Slot Id : <47> +01:45:18 Transaction Type : REQUEST +01:45:18 Received From : +01:45:18 ============================================================================ +01:45:18 FNo. Len. Field Value +01:45:18 ============================================================================ +01:45:18 [ 1] [ 4] [0800] +01:45:18 [ 7] [ 10] [0319064424] +01:45:18 [ 11] [ 6] [153528] +01:45:18 [ 70] [ 3] [301] +01:45:18 ============================================================================ +01:45:18 + + +waiting on router queue for slot.... +01:45:18 Sending to : +01:45:18 ============================================================================ +01:45:18 ============================================================================ +01:45:18 Slot Id : <47> +01:45:18 Transaction Type : RESPONSE +01:45:18 Received From : +01:45:18 ============================================================================ +01:45:18 FNo. Len. Field Value +01:45:18 ============================================================================ +01:45:18 [ 1] [ 4] [0810] +01:45:18 [ 7] [ 10] [0319064424] +01:45:18 [ 11] [ 6] [153528] +01:45:18 [ 39] [ 2] [00] +01:45:18 [ 70] [ 3] [301] +01:45:18 ============================================================================ +01:45:18 Calculate Source COMM Id = 2 +01:45:18 ============================================================================ +01:45:18 + + +waiting on router queue for slot.... +01:45:29 ============================================================================ +01:45:29 Slot Id : <58> +01:45:29 Transaction Type : REQUEST +01:45:29 Received From : +01:45:29 ============================================================================ +01:45:29 FNo. Len. Field Value +01:45:29 ============================================================================ +01:45:29 [ 1] [ 4] [0800] +01:45:29 [ 7] [ 10] [0319064436] +01:45:29 [ 11] [ 6] [153529] +01:45:29 [ 70] [ 3] [301] +01:45:29 ============================================================================ +01:45:29 + + +waiting on router queue for slot.... +01:45:29 Sending to : +01:45:29 ============================================================================ +01:45:29 ============================================================================ +01:45:29 Slot Id : <58> +01:45:29 Transaction Type : RESPONSE +01:45:29 Received From : +01:45:29 ============================================================================ +01:45:29 FNo. Len. Field Value +01:45:29 ============================================================================ +01:45:29 [ 1] [ 4] [0810] +01:45:29 [ 7] [ 10] [0319064436] +01:45:29 [ 11] [ 6] [153529] +01:45:29 [ 39] [ 2] [00] +01:45:29 [ 70] [ 3] [301] +01:45:29 ============================================================================ +01:45:29 Calculate Source COMM Id = 2 +01:45:29 ============================================================================ +01:45:29 + + +waiting on router queue for slot.... +01:45:44 ============================================================================ +01:45:44 Slot Id : <78> +01:45:44 Transaction Type : REQUEST +01:45:44 Received From : +01:45:44 ============================================================================ +01:45:44 FNo. Len. Field Value +01:45:44 ============================================================================ +01:45:44 [ 1] [ 4] [0800] +01:45:44 [ 7] [ 10] [0319064451] +01:45:44 [ 11] [ 6] [153530] +01:45:44 [ 70] [ 3] [301] +01:45:44 ============================================================================ +01:45:44 + + +waiting on router queue for slot.... +01:45:44 Sending to : +01:45:44 ============================================================================ +01:45:44 ============================================================================ +01:45:44 Slot Id : <78> +01:45:44 Transaction Type : RESPONSE +01:45:44 Received From : +01:45:44 ============================================================================ +01:45:44 FNo. Len. Field Value +01:45:44 ============================================================================ +01:45:44 [ 1] [ 4] [0810] +01:45:44 [ 7] [ 10] [0319064451] +01:45:44 [ 11] [ 6] [153530] +01:45:44 [ 39] [ 2] [00] +01:45:44 [ 70] [ 3] [301] +01:45:44 ============================================================================ +01:45:44 Calculate Source COMM Id = 2 +01:45:44 ============================================================================ +01:45:44 + + +waiting on router queue for slot.... +01:45:55 ============================================================================ +01:45:55 Slot Id : <54> +01:45:55 Transaction Type : REQUEST +01:45:55 Received From : +01:45:55 ============================================================================ +01:45:55 FNo. Len. Field Value +01:45:55 ============================================================================ +01:45:55 [ 1] [ 4] [0800] +01:45:55 [ 7] [ 10] [0319064502] +01:45:55 [ 11] [ 6] [153531] +01:45:55 [ 70] [ 3] [301] +01:45:55 ============================================================================ +01:45:55 + + +waiting on router queue for slot.... +01:45:55 Sending to : +01:45:55 ============================================================================ +01:45:55 ============================================================================ +01:45:55 Slot Id : <54> +01:45:55 Transaction Type : RESPONSE +01:45:55 Received From : +01:45:55 ============================================================================ +01:45:55 FNo. Len. Field Value +01:45:55 ============================================================================ +01:45:55 [ 1] [ 4] [0810] +01:45:55 [ 7] [ 10] [0319064502] +01:45:55 [ 11] [ 6] [153531] +01:45:55 [ 39] [ 2] [00] +01:45:55 [ 70] [ 3] [301] +01:45:55 ============================================================================ +01:45:55 Calculate Source COMM Id = 2 +01:45:55 ============================================================================ +01:45:55 + + +waiting on router queue for slot.... +01:45:59 ============================================================================ +01:45:59 Slot Id : <81> +01:45:59 Transaction Type : REQUEST +01:45:59 Received From : +01:45:59 ============================================================================ +01:45:59 FNo. Len. Field Value +01:45:59 ============================================================================ +01:45:59 [ 1] [ 4] [0800] +01:45:59 [ 2] [ 5] [02531] +01:45:59 [ 3] [ 6] [579018] +01:45:59 [ 7] [ 10] [0319184559] +01:45:59 [ 11] [ 6] [806514] +01:45:59 [ 15] [ 10] [0319184559] +01:45:59 [ 37] [ 11] [57901806514] +01:45:59 [ 70] [ 3] [001] +01:45:59 ============================================================================ +01:45:59 + + +waiting on router queue for slot.... +01:45:59 ============================================================================ +01:45:59 Slot Id : <81> +01:45:59 Transaction Type : RESPONSE +01:45:59 Received From : +01:45:59 ============================================================================ +01:45:59 FNo. Len. Field Value +01:45:59 ============================================================================ +01:45:59 [ 1] [ 4] [0810] +01:45:59 [ 7] [ 10] [0319184559] +01:45:59 [ 11] [ 6] [806514] +01:45:59 [ 15] [ 4] [0319] +01:45:59 [ 37] [ 12] [57901806514] +01:45:59 [ 39] [ 2] [00] +01:45:59 [ 70] [ 3] [001] +01:45:59 ============================================================================ +01:45:59 Sending to : +01:45:59 ============================================================================ +01:45:59 + + +waiting on router queue for slot.... +01:46:02 ============================================================================ +01:46:02 Slot Id : <24> +01:46:02 Transaction Type : REQUEST +01:46:02 Received From : +01:46:02 ============================================================================ +01:46:02 FNo. Len. Field Value +01:46:02 ============================================================================ +01:46:02 [ 1] [ 4] [0800] +01:46:02 [ 7] [ 10] [0320085749] +01:46:02 [ 11] [ 6] [015749] +01:46:02 [ 37] [ 12] [57901015749] +01:46:02 [ 70] [ 3] [301] +01:46:02 ============================================================================ +01:46:02 + + +waiting on router queue for slot.... +01:46:02 Sending to : +01:46:02 ============================================================================ +01:46:02 ============================================================================ +01:46:02 Slot Id : <24> +01:46:02 Transaction Type : RESPONSE +01:46:02 Received From : +01:46:02 ============================================================================ +01:46:02 FNo. Len. Field Value +01:46:02 ============================================================================ +01:46:02 [ 1] [ 4] [0810] +01:46:02 [ 7] [ 10] [0320085749] +01:46:02 [ 11] [ 6] [015749] +01:46:02 [ 37] [ 12] [579010157490] +01:46:02 [ 39] [ 2] [00] +01:46:02 [ 70] [ 3] [810] +01:46:02 ============================================================================ +01:46:02 Calculate Source COMM Id = 6 +01:46:02 ============================================================================ +01:46:02 + + +waiting on router queue for slot.... +01:46:03 ============================================================================ +01:46:03 Slot Id : <34> +01:46:03 Transaction Type : REQUEST +01:46:03 Received From : +01:46:03 ============================================================================ +01:46:03 FNo. Len. Field Value +01:46:03 ============================================================================ +01:46:03 [ 1] [ 4] [0200] +01:46:03 [ 2] [ 16] [6213545000819940] +01:46:03 [ 3] [ 6] [010000] +01:46:03 [ 4] [ 12] [000020000000] +01:46:03 [ 7] [ 10] [0320014354] +01:46:03 [ 11] [ 6] [928496] +01:46:03 [ 12] [ 6] [014354] +01:46:03 [ 13] [ 4] [0320] +01:46:03 [ 15] [ 4] [0320] +01:46:03 [ 18] [ 4] [6011] +01:46:03 [ 19] [ 3] [418] +01:46:03 [ 22] [ 3] [021] +01:46:03 [ 25] [ 2] [01] +01:46:03 [ 28] [ 9] [D00002000] +01:46:03 [ 32] [ 6] [668899] +01:46:03 [ 35] [ 32] [6213545000819940=491212011994633] +01:46:03 [ 37] [ 12] [507902435574] +01:46:03 [ 41] [ 8] [03020031] +01:46:03 [ 42] [ 15] [APT ] +01:46:03 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +01:46:03 [ 49] [ 3] [418] +01:46:03 [ 52] [ 16] [9520F3BD3E856D83] +01:46:03 ============================================================================ +01:46:03 + + +waiting on router queue for slot.... +01:46:03 Sending to : +01:46:03 ============================================================================ +01:46:03 Sending to : +01:46:03 ============================================================================ +01:46:03 ============================================================================ +01:46:03 Slot Id : <34> +01:46:03 Transaction Type : REQUEST +01:46:03 Received From : +01:46:03 ============================================================================ +01:46:03 FNo. Len. Field Value +01:46:03 ============================================================================ +01:46:03 [ 1] [ 4] [0200] +01:46:03 [ 2] [ 16] [6213545000819940] +01:46:03 [ 3] [ 6] [010000] +01:46:03 [ 4] [ 12] [000020000000] +01:46:03 [ 7] [ 10] [0320014354] +01:46:03 [ 11] [ 6] [928496] +01:46:03 [ 12] [ 6] [014354] +01:46:03 [ 13] [ 4] [0320] +01:46:03 [ 15] [ 4] [0320] +01:46:03 [ 18] [ 4] [6011] +01:46:03 [ 19] [ 3] [418] +01:46:03 [ 22] [ 3] [021] +01:46:03 [ 25] [ 2] [01] +01:46:03 [ 28] [ 9] [D00002000] +01:46:03 [ 32] [ 6] [668899] +01:46:03 [ 35] [ 32] [6213545000819940=491212011994633] +01:46:03 [ 37] [ 12] [507902435574] +01:46:03 [ 41] [ 8] [03020031] +01:46:03 [ 42] [ 15] [APT ] +01:46:03 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +01:46:03 [ 49] [ 3] [418] +01:46:03 [ 52] [ 16] [9520F3BD3E856D83] +01:46:03 ============================================================================ +01:46:03 + + +waiting on router queue for slot.... +01:46:03 Sending to : +01:46:03 ============================================================================ +01:46:03 ============================================================================ +01:46:03 Slot Id : <34> +01:46:03 Transaction Type : REQUEST +01:46:03 Received From : +01:46:03 ============================================================================ +01:46:03 FNo. Len. Field Value +01:46:03 ============================================================================ +01:46:03 [ 1] [ 4] [0200] +01:46:03 [ 2] [ 16] [6213545000819940] +01:46:03 [ 3] [ 6] [010000] +01:46:03 [ 4] [ 12] [000020000000] +01:46:03 [ 7] [ 10] [0320014354] +01:46:03 [ 11] [ 6] [928496] +01:46:03 [ 12] [ 6] [014354] +01:46:03 [ 13] [ 4] [0320] +01:46:03 [ 15] [ 4] [0320] +01:46:03 [ 18] [ 4] [6011] +01:46:03 [ 19] [ 3] [418] +01:46:03 [ 22] [ 3] [021] +01:46:03 [ 25] [ 2] [01] +01:46:03 [ 28] [ 9] [D00002000] +01:46:03 [ 32] [ 6] [668899] +01:46:03 [ 35] [ 32] [6213545000819940=491212011994633] +01:46:03 [ 37] [ 12] [507902435574] +01:46:03 [ 41] [ 8] [03020031] +01:46:03 [ 42] [ 15] [APT ] +01:46:03 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +01:46:03 [ 49] [ 3] [418] +01:46:03 [ 52] [ 16] [D880D8F4DBF4DA8D] +01:46:03 ============================================================================ +01:46:03 + + +waiting on router queue for slot.... +01:46:03 Sending to : <0> +01:46:03 ============================================================================ +01:46:06 ============================================================================ +01:46:06 Slot Id : <57> +01:46:06 Transaction Type : REQUEST +01:46:06 Received From : +01:46:06 ============================================================================ +01:46:06 FNo. Len. Field Value +01:46:06 ============================================================================ +01:46:06 [ 1] [ 4] [0800] +01:46:06 [ 7] [ 10] [0319064513] +01:46:06 [ 11] [ 6] [153532] +01:46:06 [ 70] [ 3] [301] +01:46:06 ============================================================================ +01:46:06 + + +waiting on router queue for slot.... +01:46:06 Sending to : +01:46:06 ============================================================================ +01:46:06 ============================================================================ +01:46:06 Slot Id : <57> +01:46:06 Transaction Type : RESPONSE +01:46:06 Received From : +01:46:06 ============================================================================ +01:46:06 FNo. Len. Field Value +01:46:06 ============================================================================ +01:46:06 [ 1] [ 4] [0810] +01:46:06 [ 7] [ 10] [0319064513] +01:46:06 [ 11] [ 6] [153532] +01:46:06 [ 39] [ 2] [00] +01:46:06 [ 70] [ 3] [301] +01:46:06 ============================================================================ +01:46:06 Calculate Source COMM Id = 2 +01:46:06 ============================================================================ +01:46:06 + + +waiting on router queue for slot.... +01:46:07 ============================================================================ +01:46:07 Slot Id : <34> +01:46:07 Transaction Type : RESPONSE +01:46:07 Received From : +01:46:07 ============================================================================ +01:46:07 FNo. Len. Field Value +01:46:07 ============================================================================ +01:46:07 [ 1] [ 4] [0210] +01:46:07 [ 2] [ 16] [6213545000819940] +01:46:07 [ 3] [ 6] [010000] +01:46:07 [ 4] [ 12] [000020000000] +01:46:07 [ 7] [ 10] [0320014354] +01:46:07 [ 11] [ 6] [928496] +01:46:07 [ 12] [ 6] [014354] +01:46:07 [ 13] [ 4] [0320] +01:46:07 [ 15] [ 4] [0320] +01:46:07 [ 18] [ 4] [6011] +01:46:07 [ 19] [ 3] [418] +01:46:07 [ 32] [ 6] [668899] +01:46:07 [ 35] [ 32] [6213545000819940=491212011994633] +01:46:07 [ 37] [ 12] [507902435574] +01:46:07 [ 38] [ 6] [056535] +01:46:07 [ 39] [ 2] [00] +01:46:07 [ 41] [ 8] [03020031] +01:46:07 [ 49] [ 3] [418] +01:46:07 [ 54] [ 40] [0001418C0000436125790002418C000043612579] +01:46:07 ============================================================================ +01:46:07 Sending to : +01:46:07 ============================================================================ +01:46:07 + + +waiting on router queue for slot.... +01:46:08 ============================================================================ +01:46:08 Slot Id : <34> +01:46:08 Transaction Type : RESPONSE +01:46:08 Received From : +01:46:08 ============================================================================ +01:46:08 FNo. Len. Field Value +01:46:08 ============================================================================ +01:46:08 [ 1] [ 4] [0210] +01:46:08 [ 2] [ 16] [6213545000819940] +01:46:08 [ 3] [ 6] [010000] +01:46:08 [ 4] [ 12] [000020000000] +01:46:08 [ 7] [ 10] [0320014354] +01:46:08 [ 11] [ 6] [928496] +01:46:08 [ 12] [ 6] [014354] +01:46:08 [ 13] [ 4] [0320] +01:46:08 [ 15] [ 4] [0320] +01:46:08 [ 18] [ 4] [6011] +01:46:08 [ 19] [ 3] [418] +01:46:08 [ 32] [ 6] [668899] +01:46:08 [ 35] [ 32] [6213545000819940=491212011994633] +01:46:08 [ 37] [ 12] [507902435574] +01:46:08 [ 38] [ 6] [056535] +01:46:08 [ 39] [ 2] [00] +01:46:08 [ 41] [ 8] [03020031] +01:46:08 [ 49] [ 3] [418] +01:46:08 [ 54] [ 40] [0001418C0000436125790002418C000043612579] +01:46:08 ============================================================================ +01:46:08 Calculate Source COMM Id = 4 +01:46:08 ============================================================================ +01:46:08 + + +waiting on router queue for slot.... +01:46:12 ============================================================================ +01:46:12 Slot Id : <86> +01:46:12 Transaction Type : REQUEST +01:46:12 Received From : +01:46:12 ============================================================================ +01:46:12 FNo. Len. Field Value +01:46:12 ============================================================================ +01:46:12 [ 1] [ 4] [0800] +01:46:12 [ 7] [ 10] [0319184608] +01:46:12 [ 11] [ 6] [044534] +01:46:12 [ 37] [ 12] [507901044534] +01:46:12 [ 70] [ 3] [001] +01:46:12 ============================================================================ +01:46:12 + + +waiting on router queue for slot.... +01:46:12 Sending to : +01:46:12 ============================================================================ +01:46:12 ============================================================================ +01:46:12 Slot Id : <86> +01:46:12 Transaction Type : RESPONSE +01:46:12 Received From : +01:46:12 ============================================================================ +01:46:12 FNo. Len. Field Value +01:46:12 ============================================================================ +01:46:12 [ 1] [ 4] [0810] +01:46:12 [ 7] [ 10] [0319184608] +01:46:12 [ 11] [ 6] [044534] +01:46:12 [ 37] [ 12] [507901044534] +01:46:12 [ 39] [ 2] [00] +01:46:12 [ 70] [ 3] [001] +01:46:12 ============================================================================ +01:46:12 Calculate Source COMM Id = 0 +01:46:12 ============================================================================ +01:46:12 + + +waiting on router queue for slot.... +01:46:16 ============================================================================ +01:46:16 Slot Id : <42> +01:46:16 Transaction Type : REQUEST +01:46:16 Received From : +01:46:16 ============================================================================ +01:46:16 FNo. Len. Field Value +01:46:16 ============================================================================ +01:46:16 [ 1] [ 4] [0800] +01:46:16 [ 7] [ 10] [0319064523] +01:46:16 [ 11] [ 6] [153533] +01:46:16 [ 70] [ 3] [301] +01:46:16 ============================================================================ +01:46:16 + + +waiting on router queue for slot.... +01:46:16 Sending to : +01:46:16 ============================================================================ +01:46:16 ============================================================================ +01:46:16 Slot Id : <42> +01:46:16 Transaction Type : RESPONSE +01:46:16 Received From : +01:46:16 ============================================================================ +01:46:16 FNo. Len. Field Value +01:46:16 ============================================================================ +01:46:16 [ 1] [ 4] [0810] +01:46:16 [ 7] [ 10] [0319064523] +01:46:16 [ 11] [ 6] [153533] +01:46:16 [ 39] [ 2] [00] +01:46:16 [ 70] [ 3] [301] +01:46:16 ============================================================================ +01:46:16 Calculate Source COMM Id = 2 +01:46:16 ============================================================================ +01:46:16 + + +waiting on router queue for slot.... +01:46:21 ============================================================================ +01:46:21 Slot Id : <88> +01:46:21 Transaction Type : REQUEST +01:46:21 Received From : +01:46:21 ============================================================================ +01:46:21 FNo. Len. Field Value +01:46:21 ============================================================================ +01:46:21 [ 1] [ 4] [0800] +01:46:21 [ 7] [ 10] [0319184412] +01:46:21 [ 11] [ 6] [087499] +01:46:21 [ 37] [ 12] [57901087499] +01:46:21 [ 70] [ 3] [301] +01:46:21 ============================================================================ +01:46:21 + + +waiting on router queue for slot.... +01:46:21 Sending to : +01:46:21 ============================================================================ +01:46:21 ============================================================================ +01:46:21 Slot Id : <88> +01:46:21 Transaction Type : RESPONSE +01:46:21 Received From : +01:46:21 ============================================================================ +01:46:21 FNo. Len. Field Value +01:46:21 ============================================================================ +01:46:21 [ 1] [ 4] [0810] +01:46:21 [ 7] [ 10] [0319184412] +01:46:21 [ 11] [ 6] [087499] +01:46:21 [ 37] [ 12] [579010874990] +01:46:21 [ 39] [ 2] [00] +01:46:21 [ 70] [ 3] [810] +01:46:21 ============================================================================ +01:46:21 Calculate Source COMM Id = 4 +01:46:21 ============================================================================ +01:46:21 + + +waiting on router queue for slot.... +01:46:27 ============================================================================ +01:46:27 Slot Id : <49> +01:46:27 Transaction Type : REQUEST +01:46:27 Received From : +01:46:27 ============================================================================ +01:46:27 FNo. Len. Field Value +01:46:27 ============================================================================ +01:46:27 [ 1] [ 4] [0800] +01:46:27 [ 7] [ 10] [0319064534] +01:46:27 [ 11] [ 6] [153534] +01:46:27 [ 70] [ 3] [301] +01:46:27 ============================================================================ +01:46:27 + + +waiting on router queue for slot.... +01:46:27 Sending to : +01:46:27 ============================================================================ +01:46:27 ============================================================================ +01:46:27 Slot Id : <49> +01:46:27 Transaction Type : RESPONSE +01:46:27 Received From : +01:46:27 ============================================================================ +01:46:27 FNo. Len. Field Value +01:46:27 ============================================================================ +01:46:27 [ 1] [ 4] [0810] +01:46:27 [ 7] [ 10] [0319064534] +01:46:27 [ 11] [ 6] [153534] +01:46:27 [ 39] [ 2] [00] +01:46:27 [ 70] [ 3] [301] +01:46:27 ============================================================================ +01:46:27 Calculate Source COMM Id = 2 +01:46:27 ============================================================================ +01:46:27 + + +waiting on router queue for slot.... +01:46:43 ============================================================================ +01:46:43 Slot Id : <5> +01:46:43 Transaction Type : REQUEST +01:46:43 Received From : +01:46:43 ============================================================================ +01:46:43 FNo. Len. Field Value +01:46:43 ============================================================================ +01:46:43 [ 1] [ 4] [0800] +01:46:43 [ 7] [ 10] [0319064550] +01:46:43 [ 11] [ 6] [153535] +01:46:43 [ 70] [ 3] [301] +01:46:43 ============================================================================ +01:46:43 + + +waiting on router queue for slot.... +01:46:43 Sending to : +01:46:43 ============================================================================ +01:46:43 ============================================================================ +01:46:43 Slot Id : <5> +01:46:43 Transaction Type : RESPONSE +01:46:43 Received From : +01:46:43 ============================================================================ +01:46:43 FNo. Len. Field Value +01:46:43 ============================================================================ +01:46:43 [ 1] [ 4] [0810] +01:46:43 [ 7] [ 10] [0319064550] +01:46:43 [ 11] [ 6] [153535] +01:46:43 [ 39] [ 2] [00] +01:46:43 [ 70] [ 3] [301] +01:46:43 ============================================================================ +01:46:43 Calculate Source COMM Id = 2 +01:46:43 ============================================================================ +01:46:43 + + +waiting on router queue for slot.... +01:46:54 ============================================================================ +01:46:54 Slot Id : <89> +01:46:54 Transaction Type : REQUEST +01:46:54 Received From : +01:46:54 ============================================================================ +01:46:54 FNo. Len. Field Value +01:46:54 ============================================================================ +01:46:54 [ 1] [ 4] [0800] +01:46:54 [ 7] [ 10] [0319064601] +01:46:54 [ 11] [ 6] [153536] +01:46:54 [ 70] [ 3] [301] +01:46:54 ============================================================================ +01:46:54 + + +waiting on router queue for slot.... +01:46:54 Sending to : +01:46:54 ============================================================================ +01:46:54 ============================================================================ +01:46:54 Slot Id : <89> +01:46:54 Transaction Type : RESPONSE +01:46:54 Received From : +01:46:54 ============================================================================ +01:46:54 FNo. Len. Field Value +01:46:54 ============================================================================ +01:46:54 [ 1] [ 4] [0810] +01:46:54 [ 7] [ 10] [0319064601] +01:46:54 [ 11] [ 6] [153536] +01:46:54 [ 39] [ 2] [00] +01:46:54 [ 70] [ 3] [301] +01:46:54 ============================================================================ +01:46:54 Calculate Source COMM Id = 2 +01:46:54 ============================================================================ +01:46:54 + + +waiting on router queue for slot.... +01:47:01 ============================================================================ +01:47:01 Slot Id : <79> +01:47:01 Transaction Type : REQUEST +01:47:01 Received From : +01:47:01 ============================================================================ +01:47:01 FNo. Len. Field Value +01:47:01 ============================================================================ +01:47:01 [ 1] [ 4] [0800] +01:47:01 [ 2] [ 5] [02531] +01:47:01 [ 3] [ 6] [579018] +01:47:01 [ 7] [ 10] [0319184701] +01:47:01 [ 11] [ 6] [806515] +01:47:01 [ 15] [ 10] [0319184701] +01:47:01 [ 37] [ 11] [57901806515] +01:47:01 [ 70] [ 3] [001] +01:47:01 ============================================================================ +01:47:01 + + +waiting on router queue for slot.... +01:47:01 ============================================================================ +01:47:01 Slot Id : <79> +01:47:01 Transaction Type : RESPONSE +01:47:01 Received From : +01:47:01 ============================================================================ +01:47:01 FNo. Len. Field Value +01:47:01 ============================================================================ +01:47:01 [ 1] [ 4] [0810] +01:47:01 [ 7] [ 10] [0319184701] +01:47:01 [ 11] [ 6] [806515] +01:47:01 [ 15] [ 4] [0319] +01:47:01 [ 37] [ 12] [57901806515] +01:47:01 [ 39] [ 2] [00] +01:47:01 [ 70] [ 3] [001] +01:47:01 ============================================================================ +01:47:01 Sending to : +01:47:01 ============================================================================ +01:47:01 + + +waiting on router queue for slot.... +01:47:07 ============================================================================ +01:47:07 Slot Id : <59> +01:47:07 Transaction Type : REQUEST +01:47:07 Received From : +01:47:07 ============================================================================ +01:47:07 FNo. Len. Field Value +01:47:07 ============================================================================ +01:47:07 [ 1] [ 4] [0800] +01:47:07 [ 7] [ 10] [0320085854] +01:47:07 [ 11] [ 6] [015854] +01:47:07 [ 37] [ 12] [57901015854] +01:47:07 [ 70] [ 3] [301] +01:47:07 ============================================================================ +01:47:07 + + +waiting on router queue for slot.... +01:47:07 Sending to : +01:47:07 ============================================================================ +01:47:07 ============================================================================ +01:47:07 Slot Id : <59> +01:47:07 Transaction Type : RESPONSE +01:47:07 Received From : +01:47:07 ============================================================================ +01:47:07 FNo. Len. Field Value +01:47:07 ============================================================================ +01:47:07 [ 1] [ 4] [0810] +01:47:07 [ 7] [ 10] [0320085854] +01:47:07 [ 11] [ 6] [015854] +01:47:07 [ 37] [ 12] [579010158540] +01:47:07 [ 39] [ 2] [00] +01:47:07 [ 70] [ 3] [810] +01:47:07 ============================================================================ +01:47:07 Calculate Source COMM Id = 6 +01:47:07 ============================================================================ +01:47:07 + + +waiting on router queue for slot.... +01:47:10 ============================================================================ +01:47:10 Slot Id : <84> +01:47:10 Transaction Type : REQUEST +01:47:10 Received From : +01:47:10 ============================================================================ +01:47:10 FNo. Len. Field Value +01:47:10 ============================================================================ +01:47:10 [ 1] [ 4] [0800] +01:47:10 [ 7] [ 10] [0319064617] +01:47:10 [ 11] [ 6] [153537] +01:47:10 [ 70] [ 3] [301] +01:47:10 ============================================================================ +01:47:10 + + +waiting on router queue for slot.... +01:47:10 Sending to : +01:47:10 ============================================================================ +01:47:10 ============================================================================ +01:47:10 Slot Id : <84> +01:47:10 Transaction Type : RESPONSE +01:47:10 Received From : +01:47:10 ============================================================================ +01:47:10 FNo. Len. Field Value +01:47:10 ============================================================================ +01:47:10 [ 1] [ 4] [0810] +01:47:10 [ 7] [ 10] [0319064617] +01:47:10 [ 11] [ 6] [153537] +01:47:10 [ 39] [ 2] [00] +01:47:10 [ 70] [ 3] [301] +01:47:10 ============================================================================ +01:47:10 Calculate Source COMM Id = 2 +01:47:10 ============================================================================ +01:47:10 + + +waiting on router queue for slot.... +01:47:20 ============================================================================ +01:47:20 Slot Id : <62> +01:47:20 Transaction Type : REQUEST +01:47:20 Received From : +01:47:20 ============================================================================ +01:47:20 FNo. Len. Field Value +01:47:20 ============================================================================ +01:47:20 [ 1] [ 4] [0800] +01:47:20 [ 7] [ 10] [0319064627] +01:47:20 [ 11] [ 6] [153538] +01:47:20 [ 70] [ 3] [301] +01:47:20 ============================================================================ +01:47:20 + + +waiting on router queue for slot.... +01:47:20 Sending to : +01:47:20 ============================================================================ +01:47:20 ============================================================================ +01:47:20 Slot Id : <62> +01:47:20 Transaction Type : RESPONSE +01:47:20 Received From : +01:47:20 ============================================================================ +01:47:20 FNo. Len. Field Value +01:47:20 ============================================================================ +01:47:20 [ 1] [ 4] [0810] +01:47:20 [ 7] [ 10] [0319064627] +01:47:20 [ 11] [ 6] [153538] +01:47:20 [ 39] [ 2] [00] +01:47:20 [ 70] [ 3] [301] +01:47:20 ============================================================================ +01:47:20 Calculate Source COMM Id = 2 +01:47:20 ============================================================================ +01:47:20 + + +waiting on router queue for slot.... +01:47:30 ============================================================================ +01:47:30 Slot Id : <67> +01:47:30 Transaction Type : REQUEST +01:47:30 Received From : +01:47:30 ============================================================================ +01:47:30 FNo. Len. Field Value +01:47:30 ============================================================================ +01:47:30 [ 1] [ 4] [0800] +01:47:30 [ 7] [ 10] [0319064637] +01:47:30 [ 11] [ 6] [153539] +01:47:30 [ 70] [ 3] [301] +01:47:30 ============================================================================ +01:47:30 + + +waiting on router queue for slot.... +01:47:30 Sending to : +01:47:30 ============================================================================ +01:47:30 ============================================================================ +01:47:30 Slot Id : <67> +01:47:30 Transaction Type : RESPONSE +01:47:30 Received From : +01:47:30 ============================================================================ +01:47:30 FNo. Len. Field Value +01:47:30 ============================================================================ +01:47:30 [ 1] [ 4] [0810] +01:47:30 [ 7] [ 10] [0319064637] +01:47:30 [ 11] [ 6] [153539] +01:47:30 [ 39] [ 2] [00] +01:47:30 [ 70] [ 3] [301] +01:47:30 ============================================================================ +01:47:30 Calculate Source COMM Id = 2 +01:47:30 ============================================================================ +01:47:30 + + +waiting on router queue for slot.... +01:47:46 ============================================================================ +01:47:46 Slot Id : <99> +01:47:46 Transaction Type : REQUEST +01:47:46 Received From : +01:47:46 ============================================================================ +01:47:46 FNo. Len. Field Value +01:47:46 ============================================================================ +01:47:46 [ 1] [ 4] [0800] +01:47:46 [ 7] [ 10] [0319064653] +01:47:46 [ 11] [ 6] [153540] +01:47:46 [ 70] [ 3] [301] +01:47:46 ============================================================================ +01:47:46 + + +waiting on router queue for slot.... +01:47:46 Sending to : +01:47:46 ============================================================================ +01:47:46 ============================================================================ +01:47:46 Slot Id : <99> +01:47:46 Transaction Type : RESPONSE +01:47:46 Received From : +01:47:46 ============================================================================ +01:47:46 FNo. Len. Field Value +01:47:46 ============================================================================ +01:47:46 [ 1] [ 4] [0810] +01:47:46 [ 7] [ 10] [0319064653] +01:47:46 [ 11] [ 6] [153540] +01:47:46 [ 39] [ 2] [00] +01:47:46 [ 70] [ 3] [301] +01:47:46 ============================================================================ +01:47:46 Calculate Source COMM Id = 2 +01:47:46 ============================================================================ +01:47:46 + + +waiting on router queue for slot.... +01:48:01 ============================================================================ +01:48:01 Slot Id : <39> +01:48:01 Transaction Type : REQUEST +01:48:01 Received From : +01:48:01 ============================================================================ +01:48:01 FNo. Len. Field Value +01:48:01 ============================================================================ +01:48:01 [ 1] [ 4] [0800] +01:48:01 [ 7] [ 10] [0319064708] +01:48:01 [ 11] [ 6] [153541] +01:48:01 [ 70] [ 3] [301] +01:48:01 ============================================================================ +01:48:01 + + +waiting on router queue for slot.... +01:48:01 Sending to : +01:48:01 ============================================================================ +01:48:01 ============================================================================ +01:48:01 Slot Id : <39> +01:48:01 Transaction Type : RESPONSE +01:48:01 Received From : +01:48:01 ============================================================================ +01:48:01 FNo. Len. Field Value +01:48:01 ============================================================================ +01:48:01 [ 1] [ 4] [0810] +01:48:01 [ 7] [ 10] [0319064708] +01:48:01 [ 11] [ 6] [153541] +01:48:01 [ 39] [ 2] [00] +01:48:01 [ 70] [ 3] [301] +01:48:01 ============================================================================ +01:48:01 Calculate Source COMM Id = 2 +01:48:01 ============================================================================ +01:48:01 + + +waiting on router queue for slot.... +01:48:03 ============================================================================ +01:48:03 Slot Id : <51> +01:48:03 Transaction Type : REQUEST +01:48:03 Received From : +01:48:03 ============================================================================ +01:48:03 FNo. Len. Field Value +01:48:03 ============================================================================ +01:48:03 [ 1] [ 4] [0800] +01:48:03 [ 2] [ 5] [02531] +01:48:03 [ 3] [ 6] [579018] +01:48:03 [ 7] [ 10] [0319184803] +01:48:03 [ 11] [ 6] [806516] +01:48:03 [ 15] [ 10] [0319184803] +01:48:03 [ 37] [ 11] [57901806516] +01:48:03 [ 70] [ 3] [001] +01:48:03 ============================================================================ +01:48:03 + + +waiting on router queue for slot.... +01:48:03 ============================================================================ +01:48:03 Slot Id : <51> +01:48:03 Transaction Type : RESPONSE +01:48:03 Received From : +01:48:03 ============================================================================ +01:48:03 FNo. Len. Field Value +01:48:03 ============================================================================ +01:48:03 [ 1] [ 4] [0810] +01:48:03 [ 7] [ 10] [0319184803] +01:48:03 [ 11] [ 6] [806516] +01:48:03 [ 15] [ 4] [0319] +01:48:03 [ 37] [ 12] [57901806516] +01:48:03 [ 39] [ 2] [00] +01:48:03 [ 70] [ 3] [001] +01:48:03 ============================================================================ +01:48:03 Sending to : +01:48:03 ============================================================================ +01:48:03 + + +waiting on router queue for slot.... +01:48:12 ============================================================================ +01:48:12 Slot Id : <82> +01:48:12 Transaction Type : REQUEST +01:48:12 Received From : +01:48:12 ============================================================================ +01:48:12 FNo. Len. Field Value +01:48:12 ============================================================================ +01:48:12 [ 1] [ 4] [0800] +01:48:12 [ 7] [ 10] [0320085959] +01:48:12 [ 11] [ 6] [015959] +01:48:12 [ 37] [ 12] [57901015959] +01:48:12 [ 70] [ 3] [301] +01:48:12 ============================================================================ +01:48:12 + + +waiting on router queue for slot.... +01:48:12 ============================================================================ +01:48:12 Slot Id : <64> +01:48:12 Transaction Type : REQUEST +01:48:12 Received From : +01:48:12 ============================================================================ +01:48:12 FNo. Len. Field Value +01:48:12 ============================================================================ +01:48:12 [ 1] [ 4] [0800] +01:48:12 [ 7] [ 10] [0319064719] +01:48:12 [ 11] [ 6] [153542] +01:48:12 [ 70] [ 3] [301] +01:48:12 ============================================================================ +01:48:12 + + +waiting on router queue for slot.... +01:48:12 Sending to : +01:48:12 ============================================================================ +01:48:12 Sending to : +01:48:12 ============================================================================ +01:48:12 ============================================================================ +01:48:12 Slot Id : <64> +01:48:12 Transaction Type : RESPONSE +01:48:12 Received From : +01:48:12 ============================================================================ +01:48:12 FNo. Len. Field Value +01:48:12 ============================================================================ +01:48:12 [ 1] [ 4] [0810] +01:48:12 [ 7] [ 10] [0319064719] +01:48:12 [ 11] [ 6] [153542] +01:48:12 [ 39] [ 2] [00] +01:48:12 [ 70] [ 3] [301] +01:48:12 ============================================================================ +01:48:12 Calculate Source COMM Id = 2 +01:48:12 ============================================================================ +01:48:12 + + +waiting on router queue for slot.... +01:48:12 ============================================================================ +01:48:12 Slot Id : <82> +01:48:12 Transaction Type : RESPONSE +01:48:12 Received From : +01:48:12 ============================================================================ +01:48:12 FNo. Len. Field Value +01:48:12 ============================================================================ +01:48:12 [ 1] [ 4] [0810] +01:48:12 [ 7] [ 10] [0320085959] +01:48:12 [ 11] [ 6] [015959] +01:48:12 [ 37] [ 12] [579010159590] +01:48:12 [ 39] [ 2] [00] +01:48:12 [ 70] [ 3] [810] +01:48:12 ============================================================================ +01:48:12 Calculate Source COMM Id = 6 +01:48:12 ============================================================================ +01:48:12 + + +waiting on router queue for slot.... +01:48:22 ============================================================================ +01:48:22 Slot Id : <93> +01:48:22 Transaction Type : REQUEST +01:48:22 Received From : +01:48:22 ============================================================================ +01:48:22 FNo. Len. Field Value +01:48:22 ============================================================================ +01:48:22 [ 1] [ 4] [0800] +01:48:22 [ 7] [ 10] [0319064730] +01:48:22 [ 11] [ 6] [153543] +01:48:22 [ 70] [ 3] [301] +01:48:22 ============================================================================ +01:48:22 + + +waiting on router queue for slot.... +01:48:22 Sending to : +01:48:22 ============================================================================ +01:48:22 ============================================================================ +01:48:22 Slot Id : <93> +01:48:22 Transaction Type : RESPONSE +01:48:22 Received From : +01:48:22 ============================================================================ +01:48:22 FNo. Len. Field Value +01:48:22 ============================================================================ +01:48:22 [ 1] [ 4] [0810] +01:48:22 [ 7] [ 10] [0319064730] +01:48:22 [ 11] [ 6] [153543] +01:48:22 [ 39] [ 2] [00] +01:48:22 [ 70] [ 3] [301] +01:48:22 ============================================================================ +01:48:22 Calculate Source COMM Id = 2 +01:48:22 ============================================================================ +01:48:22 + + +waiting on router queue for slot.... +01:48:33 ============================================================================ +01:48:33 Slot Id : <56> +01:48:33 Transaction Type : REQUEST +01:48:33 Received From : +01:48:33 ============================================================================ +01:48:33 FNo. Len. Field Value +01:48:33 ============================================================================ +01:48:33 [ 1] [ 4] [0800] +01:48:33 [ 7] [ 10] [0319064740] +01:48:33 [ 11] [ 6] [153544] +01:48:33 [ 70] [ 3] [301] +01:48:33 ============================================================================ +01:48:33 + + +waiting on router queue for slot.... +01:48:33 Sending to : +01:48:33 ============================================================================ +01:48:33 ============================================================================ +01:48:33 Slot Id : <56> +01:48:33 Transaction Type : RESPONSE +01:48:33 Received From : +01:48:33 ============================================================================ +01:48:33 FNo. Len. Field Value +01:48:33 ============================================================================ +01:48:33 [ 1] [ 4] [0810] +01:48:33 [ 7] [ 10] [0319064740] +01:48:33 [ 11] [ 6] [153544] +01:48:33 [ 39] [ 2] [00] +01:48:33 [ 70] [ 3] [301] +01:48:33 ============================================================================ +01:48:33 Calculate Source COMM Id = 2 +01:48:33 ============================================================================ +01:48:33 + + +waiting on router queue for slot.... +01:48:44 ============================================================================ +01:48:44 Slot Id : <91> +01:48:44 Transaction Type : REQUEST +01:48:44 Received From : +01:48:44 ============================================================================ +01:48:44 FNo. Len. Field Value +01:48:44 ============================================================================ +01:48:44 [ 1] [ 4] [0800] +01:48:44 [ 7] [ 10] [0319064752] +01:48:44 [ 11] [ 6] [153545] +01:48:44 [ 70] [ 3] [301] +01:48:44 ============================================================================ +01:48:44 + + +waiting on router queue for slot.... +01:48:44 Sending to : +01:48:44 ============================================================================ +01:48:44 ============================================================================ +01:48:44 Slot Id : <91> +01:48:44 Transaction Type : RESPONSE +01:48:44 Received From : +01:48:44 ============================================================================ +01:48:44 FNo. Len. Field Value +01:48:44 ============================================================================ +01:48:44 [ 1] [ 4] [0810] +01:48:44 [ 7] [ 10] [0319064752] +01:48:44 [ 11] [ 6] [153545] +01:48:44 [ 39] [ 2] [00] +01:48:44 [ 70] [ 3] [301] +01:48:44 ============================================================================ +01:48:44 Calculate Source COMM Id = 2 +01:48:44 ============================================================================ +01:48:44 + + +waiting on router queue for slot.... +01:48:55 ============================================================================ +01:48:55 Slot Id : <100> +01:48:55 Transaction Type : REQUEST +01:48:55 Received From : +01:48:55 ============================================================================ +01:48:55 FNo. Len. Field Value +01:48:55 ============================================================================ +01:48:55 [ 1] [ 4] [0800] +01:48:55 [ 7] [ 10] [0319064803] +01:48:55 [ 11] [ 6] [153546] +01:48:55 [ 70] [ 3] [301] +01:48:55 ============================================================================ +01:48:55 + + +waiting on router queue for slot.... +01:48:55 Sending to : +01:48:55 ============================================================================ +01:48:55 ============================================================================ +01:48:55 Slot Id : <100> +01:48:55 Transaction Type : RESPONSE +01:48:55 Received From : +01:48:55 ============================================================================ +01:48:55 FNo. Len. Field Value +01:48:55 ============================================================================ +01:48:55 [ 1] [ 4] [0810] +01:48:55 [ 7] [ 10] [0319064803] +01:48:55 [ 11] [ 6] [153546] +01:48:55 [ 39] [ 2] [00] +01:48:55 [ 70] [ 3] [301] +01:48:55 ============================================================================ +01:48:55 Calculate Source COMM Id = 2 +01:48:55 ============================================================================ +01:48:55 + + +waiting on router queue for slot.... +01:49:05 ============================================================================ +01:49:05 Slot Id : <65> +01:49:05 Transaction Type : REQUEST +01:49:05 Received From : +01:49:05 ============================================================================ +01:49:05 FNo. Len. Field Value +01:49:05 ============================================================================ +01:49:05 [ 1] [ 4] [0800] +01:49:05 [ 2] [ 5] [02531] +01:49:05 [ 3] [ 6] [579018] +01:49:05 [ 7] [ 10] [0319184905] +01:49:05 [ 11] [ 6] [806517] +01:49:05 [ 15] [ 10] [0319184905] +01:49:05 [ 37] [ 11] [57901806517] +01:49:05 [ 70] [ 3] [001] +01:49:05 ============================================================================ +01:49:05 + + +waiting on router queue for slot.... +01:49:05 ============================================================================ +01:49:05 Slot Id : <65> +01:49:05 Transaction Type : RESPONSE +01:49:05 Received From : +01:49:05 ============================================================================ +01:49:05 FNo. Len. Field Value +01:49:05 ============================================================================ +01:49:05 [ 1] [ 4] [0810] +01:49:05 [ 7] [ 10] [0319184905] +01:49:05 [ 11] [ 6] [806517] +01:49:05 [ 15] [ 4] [0319] +01:49:05 [ 37] [ 12] [57901806517] +01:49:05 [ 39] [ 2] [00] +01:49:05 [ 70] [ 3] [001] +01:49:05 ============================================================================ +01:49:05 Sending to : +01:49:05 ============================================================================ +01:49:05 + + +waiting on router queue for slot.... +01:49:06 ============================================================================ +01:49:06 Slot Id : <77> +01:49:06 Transaction Type : REQUEST +01:49:06 Received From : +01:49:06 ============================================================================ +01:49:06 FNo. Len. Field Value +01:49:06 ============================================================================ +01:49:06 [ 1] [ 4] [0800] +01:49:06 [ 7] [ 10] [0319064813] +01:49:06 [ 11] [ 6] [153547] +01:49:06 [ 70] [ 3] [301] +01:49:06 ============================================================================ +01:49:06 + + +waiting on router queue for slot.... +01:49:06 Sending to : +01:49:06 ============================================================================ +01:49:06 ============================================================================ +01:49:06 Slot Id : <77> +01:49:06 Transaction Type : RESPONSE +01:49:06 Received From : +01:49:06 ============================================================================ +01:49:06 FNo. Len. Field Value +01:49:06 ============================================================================ +01:49:06 [ 1] [ 4] [0810] +01:49:06 [ 7] [ 10] [0319064813] +01:49:06 [ 11] [ 6] [153547] +01:49:06 [ 39] [ 2] [00] +01:49:06 [ 70] [ 3] [301] +01:49:06 ============================================================================ +01:49:06 Calculate Source COMM Id = 2 +01:49:06 ============================================================================ +01:49:06 + + +waiting on router queue for slot.... +01:49:17 ============================================================================ +01:49:17 Slot Id : <72> +01:49:17 Transaction Type : REQUEST +01:49:17 Received From : +01:49:17 ============================================================================ +01:49:17 FNo. Len. Field Value +01:49:17 ============================================================================ +01:49:17 [ 1] [ 4] [0800] +01:49:17 [ 7] [ 10] [0320090104] +01:49:17 [ 11] [ 6] [020104] +01:49:17 [ 37] [ 12] [57902020104] +01:49:17 [ 70] [ 3] [301] +01:49:17 ============================================================================ +01:49:17 + + +waiting on router queue for slot.... +01:49:17 Sending to : +01:49:17 ============================================================================ +01:49:17 ============================================================================ +01:49:17 Slot Id : <72> +01:49:17 Transaction Type : RESPONSE +01:49:17 Received From : +01:49:17 ============================================================================ +01:49:17 FNo. Len. Field Value +01:49:17 ============================================================================ +01:49:17 [ 1] [ 4] [0810] +01:49:17 [ 7] [ 10] [0320090104] +01:49:17 [ 11] [ 6] [020104] +01:49:17 [ 37] [ 12] [579020201040] +01:49:17 [ 39] [ 2] [00] +01:49:17 [ 70] [ 3] [810] +01:49:17 ============================================================================ +01:49:17 Calculate Source COMM Id = 6 +01:49:17 ============================================================================ +01:49:17 + + +waiting on router queue for slot.... +01:49:21 ============================================================================ +01:49:21 Slot Id : <106> +01:49:21 Transaction Type : REQUEST +01:49:21 Received From : +01:49:21 ============================================================================ +01:49:21 FNo. Len. Field Value +01:49:21 ============================================================================ +01:49:21 [ 1] [ 4] [0800] +01:49:21 [ 7] [ 10] [0319064829] +01:49:21 [ 11] [ 6] [153548] +01:49:21 [ 70] [ 3] [301] +01:49:21 ============================================================================ +01:49:21 + + +waiting on router queue for slot.... +01:49:21 Sending to : +01:49:21 ============================================================================ +01:49:21 ============================================================================ +01:49:21 Slot Id : <106> +01:49:21 Transaction Type : RESPONSE +01:49:21 Received From : +01:49:21 ============================================================================ +01:49:21 FNo. Len. Field Value +01:49:21 ============================================================================ +01:49:21 [ 1] [ 4] [0810] +01:49:21 [ 7] [ 10] [0319064829] +01:49:21 [ 11] [ 6] [153548] +01:49:21 [ 39] [ 2] [00] +01:49:21 [ 70] [ 3] [301] +01:49:21 ============================================================================ +01:49:21 Calculate Source COMM Id = 2 +01:49:21 ============================================================================ +01:49:21 + + +waiting on router queue for slot.... +01:49:39 ============================================================================ +01:49:39 Slot Id : <76> +01:49:39 Transaction Type : REQUEST +01:49:39 Received From : +01:49:39 ============================================================================ +01:49:39 FNo. Len. Field Value +01:49:39 ============================================================================ +01:49:39 [ 1] [ 4] [0800] +01:49:39 [ 7] [ 10] [0319064845] +01:49:39 [ 11] [ 6] [153549] +01:49:39 [ 70] [ 3] [301] +01:49:39 ============================================================================ +01:49:39 + + +waiting on router queue for slot.... +01:49:39 Sending to : +01:49:39 ============================================================================ +01:49:39 ============================================================================ +01:49:39 Slot Id : <76> +01:49:39 Transaction Type : RESPONSE +01:49:39 Received From : +01:49:39 ============================================================================ +01:49:39 FNo. Len. Field Value +01:49:39 ============================================================================ +01:49:39 [ 1] [ 4] [0810] +01:49:39 [ 7] [ 10] [0319064845] +01:49:39 [ 11] [ 6] [153549] +01:49:39 [ 39] [ 2] [00] +01:49:39 [ 70] [ 3] [301] +01:49:39 ============================================================================ +01:49:39 Calculate Source COMM Id = 2 +01:49:39 ============================================================================ +01:49:39 + + +waiting on router queue for slot.... +01:49:53 ============================================================================ +01:49:53 Slot Id : <66> +01:49:53 Transaction Type : REQUEST +01:49:53 Received From : +01:49:53 ============================================================================ +01:49:53 FNo. Len. Field Value +01:49:53 ============================================================================ +01:49:53 [ 1] [ 4] [0800] +01:49:53 [ 7] [ 10] [0319064900] +01:49:53 [ 11] [ 6] [153550] +01:49:53 [ 70] [ 3] [301] +01:49:53 ============================================================================ +01:49:53 + + +waiting on router queue for slot.... +01:49:53 Sending to : +01:49:53 ============================================================================ +01:49:53 ============================================================================ +01:49:53 Slot Id : <66> +01:49:53 Transaction Type : RESPONSE +01:49:53 Received From : +01:49:53 ============================================================================ +01:49:53 FNo. Len. Field Value +01:49:53 ============================================================================ +01:49:53 [ 1] [ 4] [0810] +01:49:53 [ 7] [ 10] [0319064900] +01:49:53 [ 11] [ 6] [153550] +01:49:53 [ 39] [ 2] [00] +01:49:53 [ 70] [ 3] [301] +01:49:53 ============================================================================ +01:49:53 Calculate Source COMM Id = 2 +01:49:53 ============================================================================ +01:49:53 + + +waiting on router queue for slot.... +01:49:56 ============================================================================ +01:49:56 Slot Id : <90> +01:49:56 Transaction Type : REQUEST +01:49:56 Received From : +01:49:56 ============================================================================ +01:49:56 FNo. Len. Field Value +01:49:56 ============================================================================ +01:49:56 [ 1] [ 4] [0800] +01:49:56 [ 7] [ 10] [0319185742] +01:49:56 [ 11] [ 6] [009530] +01:49:56 [ 37] [ 12] [57901009530] +01:49:56 [ 70] [ 3] [301] +01:49:56 ============================================================================ +01:49:56 + + +waiting on router queue for slot.... +01:49:56 Sending to : +01:49:56 ============================================================================ +01:49:56 ============================================================================ +01:49:56 Slot Id : <90> +01:49:56 Transaction Type : RESPONSE +01:49:56 Received From : +01:49:56 ============================================================================ +01:49:56 FNo. Len. Field Value +01:49:56 ============================================================================ +01:49:56 [ 1] [ 4] [0810] +01:49:56 [ 7] [ 10] [0319185742] +01:49:56 [ 11] [ 6] [009530] +01:49:56 [ 37] [ 12] [579010095300] +01:49:56 [ 39] [ 2] [00] +01:49:56 [ 70] [ 3] [810] +01:49:56 ============================================================================ +01:49:56 Calculate Source COMM Id = 1 +01:49:56 ============================================================================ +01:49:56 + + +waiting on router queue for slot.... +01:50:04 ============================================================================ +01:50:04 Slot Id : <114> +01:50:04 Transaction Type : REQUEST +01:50:04 Received From : +01:50:04 ============================================================================ +01:50:04 FNo. Len. Field Value +01:50:04 ============================================================================ +01:50:04 [ 1] [ 4] [0800] +01:50:04 [ 7] [ 10] [0319064911] +01:50:04 [ 11] [ 6] [153551] +01:50:04 [ 70] [ 3] [301] +01:50:04 ============================================================================ +01:50:04 + + +waiting on router queue for slot.... +01:50:04 Sending to : +01:50:04 ============================================================================ +01:50:04 ============================================================================ +01:50:04 Slot Id : <114> +01:50:04 Transaction Type : RESPONSE +01:50:04 Received From : +01:50:04 ============================================================================ +01:50:04 FNo. Len. Field Value +01:50:04 ============================================================================ +01:50:04 [ 1] [ 4] [0810] +01:50:04 [ 7] [ 10] [0319064911] +01:50:04 [ 11] [ 6] [153551] +01:50:04 [ 39] [ 2] [00] +01:50:04 [ 70] [ 3] [301] +01:50:04 ============================================================================ +01:50:04 Calculate Source COMM Id = 2 +01:50:04 ============================================================================ +01:50:04 + + +waiting on router queue for slot.... +01:50:07 ============================================================================ +01:50:07 Slot Id : <74> +01:50:07 Transaction Type : REQUEST +01:50:07 Received From : +01:50:07 ============================================================================ +01:50:07 FNo. Len. Field Value +01:50:07 ============================================================================ +01:50:07 [ 1] [ 4] [0800] +01:50:07 [ 2] [ 5] [02531] +01:50:07 [ 3] [ 6] [579018] +01:50:07 [ 7] [ 10] [0319185007] +01:50:07 [ 11] [ 6] [806518] +01:50:07 [ 15] [ 10] [0319185007] +01:50:07 [ 37] [ 11] [57901806518] +01:50:07 [ 70] [ 3] [001] +01:50:07 ============================================================================ +01:50:07 + + +waiting on router queue for slot.... +01:50:07 ============================================================================ +01:50:07 Slot Id : <74> +01:50:07 Transaction Type : RESPONSE +01:50:07 Received From : +01:50:07 ============================================================================ +01:50:07 FNo. Len. Field Value +01:50:07 ============================================================================ +01:50:07 [ 1] [ 4] [0810] +01:50:07 [ 7] [ 10] [0319185007] +01:50:07 [ 11] [ 6] [806518] +01:50:07 [ 15] [ 4] [0319] +01:50:07 [ 37] [ 12] [57901806518] +01:50:07 [ 39] [ 2] [00] +01:50:07 [ 70] [ 3] [001] +01:50:07 ============================================================================ +01:50:07 Sending to : +01:50:07 ============================================================================ +01:50:07 + + +waiting on router queue for slot.... +01:50:15 ============================================================================ +01:50:15 Slot Id : <107> +01:50:15 Transaction Type : REQUEST +01:50:15 Received From : +01:50:15 ============================================================================ +01:50:15 FNo. Len. Field Value +01:50:15 ============================================================================ +01:50:15 [ 1] [ 4] [0800] +01:50:15 [ 7] [ 10] [0319064922] +01:50:15 [ 11] [ 6] [153552] +01:50:15 [ 70] [ 3] [301] +01:50:15 ============================================================================ +01:50:15 + + +waiting on router queue for slot.... +01:50:15 Sending to : +01:50:15 ============================================================================ +01:50:15 ============================================================================ +01:50:15 Slot Id : <107> +01:50:15 Transaction Type : RESPONSE +01:50:15 Received From : +01:50:15 ============================================================================ +01:50:15 FNo. Len. Field Value +01:50:15 ============================================================================ +01:50:15 [ 1] [ 4] [0810] +01:50:15 [ 7] [ 10] [0319064922] +01:50:15 [ 11] [ 6] [153552] +01:50:15 [ 39] [ 2] [00] +01:50:15 [ 70] [ 3] [301] +01:50:15 ============================================================================ +01:50:15 Calculate Source COMM Id = 2 +01:50:15 ============================================================================ +01:50:15 + + +waiting on router queue for slot.... +01:50:22 ============================================================================ +01:50:22 Slot Id : <83> +01:50:22 Transaction Type : REQUEST +01:50:22 Received From : +01:50:22 ============================================================================ +01:50:22 FNo. Len. Field Value +01:50:22 ============================================================================ +01:50:22 [ 1] [ 4] [0800] +01:50:22 [ 7] [ 10] [0320090209] +01:50:22 [ 11] [ 6] [020209] +01:50:22 [ 37] [ 12] [57902020209] +01:50:22 [ 70] [ 3] [301] +01:50:22 ============================================================================ +01:50:22 + + +waiting on router queue for slot.... +01:50:22 Sending to : +01:50:22 ============================================================================ +01:50:22 ============================================================================ +01:50:22 Slot Id : <83> +01:50:22 Transaction Type : RESPONSE +01:50:22 Received From : +01:50:22 ============================================================================ +01:50:22 FNo. Len. Field Value +01:50:22 ============================================================================ +01:50:22 [ 1] [ 4] [0810] +01:50:22 [ 7] [ 10] [0320090209] +01:50:22 [ 11] [ 6] [020209] +01:50:22 [ 37] [ 12] [579020202090] +01:50:22 [ 39] [ 2] [00] +01:50:22 [ 70] [ 3] [810] +01:50:22 ============================================================================ +01:50:22 Calculate Source COMM Id = 6 +01:50:22 ============================================================================ +01:50:22 + + +waiting on router queue for slot.... +01:50:26 ============================================================================ +01:50:26 Slot Id : <92> +01:50:26 Transaction Type : REQUEST +01:50:26 Received From : +01:50:26 ============================================================================ +01:50:26 FNo. Len. Field Value +01:50:26 ============================================================================ +01:50:26 [ 1] [ 4] [0800] +01:50:26 [ 7] [ 10] [0319064933] +01:50:26 [ 11] [ 6] [153553] +01:50:26 [ 70] [ 3] [301] +01:50:26 ============================================================================ +01:50:26 + + +waiting on router queue for slot.... +01:50:26 Sending to : +01:50:26 ============================================================================ +01:50:26 ============================================================================ +01:50:26 Slot Id : <92> +01:50:26 Transaction Type : RESPONSE +01:50:26 Received From : +01:50:26 ============================================================================ +01:50:26 FNo. Len. Field Value +01:50:26 ============================================================================ +01:50:26 [ 1] [ 4] [0810] +01:50:26 [ 7] [ 10] [0319064933] +01:50:26 [ 11] [ 6] [153553] +01:50:26 [ 39] [ 2] [00] +01:50:26 [ 70] [ 3] [301] +01:50:26 ============================================================================ +01:50:26 Calculate Source COMM Id = 2 +01:50:26 ============================================================================ +01:50:26 + + +waiting on router queue for slot.... +01:50:36 ============================================================================ +01:50:36 Slot Id : <118> +01:50:36 Transaction Type : REQUEST +01:50:36 Received From : +01:50:36 ============================================================================ +01:50:36 FNo. Len. Field Value +01:50:36 ============================================================================ +01:50:36 [ 1] [ 4] [0800] +01:50:36 [ 7] [ 10] [0319064944] +01:50:36 [ 11] [ 6] [153554] +01:50:36 [ 70] [ 3] [301] +01:50:36 ============================================================================ +01:50:36 + + +waiting on router queue for slot.... +01:50:36 Sending to : +01:50:36 ============================================================================ +01:50:36 ============================================================================ +01:50:36 Slot Id : <118> +01:50:36 Transaction Type : RESPONSE +01:50:36 Received From : +01:50:36 ============================================================================ +01:50:36 FNo. Len. Field Value +01:50:36 ============================================================================ +01:50:36 [ 1] [ 4] [0810] +01:50:36 [ 7] [ 10] [0319064944] +01:50:36 [ 11] [ 6] [153554] +01:50:36 [ 39] [ 2] [00] +01:50:36 [ 70] [ 3] [301] +01:50:36 ============================================================================ +01:50:36 Calculate Source COMM Id = 2 +01:50:36 ============================================================================ +01:50:36 + + +waiting on router queue for slot.... +01:50:47 ============================================================================ +01:50:47 Slot Id : <121> +01:50:47 Transaction Type : REQUEST +01:50:47 Received From : +01:50:47 ============================================================================ +01:50:47 FNo. Len. Field Value +01:50:47 ============================================================================ +01:50:47 [ 1] [ 4] [0800] +01:50:47 [ 7] [ 10] [0319064954] +01:50:47 [ 11] [ 6] [153555] +01:50:47 [ 70] [ 3] [301] +01:50:47 ============================================================================ +01:50:47 + + +waiting on router queue for slot.... +01:50:47 Sending to : +01:50:47 ============================================================================ +01:50:47 ============================================================================ +01:50:47 Slot Id : <121> +01:50:47 Transaction Type : RESPONSE +01:50:47 Received From : +01:50:47 ============================================================================ +01:50:47 FNo. Len. Field Value +01:50:47 ============================================================================ +01:50:47 [ 1] [ 4] [0810] +01:50:47 [ 7] [ 10] [0319064954] +01:50:47 [ 11] [ 6] [153555] +01:50:47 [ 39] [ 2] [00] +01:50:47 [ 70] [ 3] [301] +01:50:47 ============================================================================ +01:50:47 Calculate Source COMM Id = 2 +01:50:47 ============================================================================ +01:50:47 + + +waiting on router queue for slot.... +01:50:58 ============================================================================ +01:50:58 Slot Id : <113> +01:50:58 Transaction Type : REQUEST +01:50:58 Received From : +01:50:58 ============================================================================ +01:50:58 FNo. Len. Field Value +01:50:58 ============================================================================ +01:50:58 [ 1] [ 4] [0800] +01:50:58 [ 7] [ 10] [0319065005] +01:50:58 [ 11] [ 6] [153556] +01:50:58 [ 70] [ 3] [301] +01:50:58 ============================================================================ +01:50:58 + + +waiting on router queue for slot.... +01:50:58 Sending to : +01:50:58 ============================================================================ +01:50:58 ============================================================================ +01:50:58 Slot Id : <113> +01:50:58 Transaction Type : RESPONSE +01:50:58 Received From : +01:50:58 ============================================================================ +01:50:58 FNo. Len. Field Value +01:50:58 ============================================================================ +01:50:58 [ 1] [ 4] [0810] +01:50:58 [ 7] [ 10] [0319065005] +01:50:58 [ 11] [ 6] [153556] +01:50:58 [ 39] [ 2] [00] +01:50:58 [ 70] [ 3] [301] +01:50:58 ============================================================================ +01:50:58 Calculate Source COMM Id = 2 +01:50:58 ============================================================================ +01:50:58 + + +waiting on router queue for slot.... +01:51:08 ============================================================================ +01:51:08 Slot Id : <108> +01:51:08 Transaction Type : REQUEST +01:51:08 Received From : +01:51:08 ============================================================================ +01:51:08 FNo. Len. Field Value +01:51:08 ============================================================================ +01:51:08 [ 1] [ 4] [0800] +01:51:08 [ 7] [ 10] [0319065015] +01:51:08 [ 11] [ 6] [153557] +01:51:08 [ 70] [ 3] [301] +01:51:08 ============================================================================ +01:51:08 + + +waiting on router queue for slot.... +01:51:08 Sending to : +01:51:08 ============================================================================ +01:51:08 ============================================================================ +01:51:08 Slot Id : <108> +01:51:08 Transaction Type : RESPONSE +01:51:08 Received From : +01:51:08 ============================================================================ +01:51:08 FNo. Len. Field Value +01:51:08 ============================================================================ +01:51:08 [ 1] [ 4] [0810] +01:51:08 [ 7] [ 10] [0319065015] +01:51:08 [ 11] [ 6] [153557] +01:51:08 [ 39] [ 2] [00] +01:51:08 [ 70] [ 3] [301] +01:51:08 ============================================================================ +01:51:08 Calculate Source COMM Id = 2 +01:51:08 ============================================================================ +01:51:08 + + +waiting on router queue for slot.... +01:51:09 ============================================================================ +01:51:09 Slot Id : <94> +01:51:09 Transaction Type : REQUEST +01:51:09 Received From : +01:51:09 ============================================================================ +01:51:09 FNo. Len. Field Value +01:51:09 ============================================================================ +01:51:09 [ 1] [ 4] [0800] +01:51:09 [ 2] [ 5] [02531] +01:51:09 [ 3] [ 6] [579018] +01:51:09 [ 7] [ 10] [0319185109] +01:51:09 [ 11] [ 6] [806519] +01:51:09 [ 15] [ 10] [0319185109] +01:51:09 [ 37] [ 11] [57901806519] +01:51:09 [ 70] [ 3] [001] +01:51:09 ============================================================================ +01:51:09 + + +waiting on router queue for slot.... +01:51:09 ============================================================================ +01:51:09 Slot Id : <94> +01:51:09 Transaction Type : RESPONSE +01:51:09 Received From : +01:51:09 ============================================================================ +01:51:09 FNo. Len. Field Value +01:51:09 ============================================================================ +01:51:09 [ 1] [ 4] [0810] +01:51:09 [ 7] [ 10] [0319185109] +01:51:09 [ 11] [ 6] [806519] +01:51:09 [ 15] [ 4] [0319] +01:51:09 [ 37] [ 12] [57901806519] +01:51:09 [ 39] [ 2] [00] +01:51:09 [ 70] [ 3] [001] +01:51:09 ============================================================================ +01:51:09 Sending to : +01:51:09 ============================================================================ +01:51:09 + + +waiting on router queue for slot.... +01:51:19 ============================================================================ +01:51:19 Slot Id : <115> +01:51:19 Transaction Type : REQUEST +01:51:19 Received From : +01:51:19 ============================================================================ +01:51:19 FNo. Len. Field Value +01:51:19 ============================================================================ +01:51:19 [ 1] [ 4] [0800] +01:51:19 [ 7] [ 10] [0319065026] +01:51:19 [ 11] [ 6] [153558] +01:51:19 [ 70] [ 3] [301] +01:51:19 ============================================================================ +01:51:19 + + +waiting on router queue for slot.... +01:51:19 Sending to : +01:51:19 ============================================================================ +01:51:19 ============================================================================ +01:51:19 Slot Id : <115> +01:51:19 Transaction Type : RESPONSE +01:51:19 Received From : +01:51:19 ============================================================================ +01:51:19 FNo. Len. Field Value +01:51:19 ============================================================================ +01:51:19 [ 1] [ 4] [0810] +01:51:19 [ 7] [ 10] [0319065026] +01:51:19 [ 11] [ 6] [153558] +01:51:19 [ 39] [ 2] [00] +01:51:19 [ 70] [ 3] [301] +01:51:19 ============================================================================ +01:51:19 Calculate Source COMM Id = 2 +01:51:19 ============================================================================ +01:51:19 + + +waiting on router queue for slot.... +01:51:21 ============================================================================ +01:51:21 Slot Id : <127> +01:51:21 Transaction Type : REQUEST +01:51:21 Received From : +01:51:21 ============================================================================ +01:51:21 FNo. Len. Field Value +01:51:21 ============================================================================ +01:51:21 [ 1] [ 4] [0800] +01:51:21 [ 7] [ 10] [0319184912] +01:51:21 [ 11] [ 6] [035540] +01:51:21 [ 37] [ 12] [57901035540] +01:51:21 [ 70] [ 3] [301] +01:51:21 ============================================================================ +01:51:21 + + +waiting on router queue for slot.... +01:51:21 Sending to : +01:51:21 ============================================================================ +01:51:21 ============================================================================ +01:51:21 Slot Id : <127> +01:51:21 Transaction Type : RESPONSE +01:51:21 Received From : +01:51:21 ============================================================================ +01:51:21 FNo. Len. Field Value +01:51:21 ============================================================================ +01:51:21 [ 1] [ 4] [0810] +01:51:21 [ 7] [ 10] [0319184912] +01:51:21 [ 11] [ 6] [035540] +01:51:21 [ 37] [ 12] [579010355400] +01:51:21 [ 39] [ 2] [00] +01:51:21 [ 70] [ 3] [810] +01:51:21 ============================================================================ +01:51:21 Calculate Source COMM Id = 4 +01:51:21 ============================================================================ +01:51:21 + + +waiting on router queue for slot.... +01:51:27 ============================================================================ +01:51:27 Slot Id : <125> +01:51:27 Transaction Type : REQUEST +01:51:27 Received From : +01:51:27 ============================================================================ +01:51:27 FNo. Len. Field Value +01:51:27 ============================================================================ +01:51:27 [ 1] [ 4] [0800] +01:51:27 [ 7] [ 10] [0320090314] +01:51:27 [ 11] [ 6] [020314] +01:51:27 [ 37] [ 12] [57902020314] +01:51:27 [ 70] [ 3] [301] +01:51:27 ============================================================================ +01:51:27 + + +waiting on router queue for slot.... +01:51:27 Sending to : +01:51:27 ============================================================================ +01:51:27 ============================================================================ +01:51:27 Slot Id : <125> +01:51:27 Transaction Type : RESPONSE +01:51:27 Received From : +01:51:27 ============================================================================ +01:51:27 FNo. Len. Field Value +01:51:27 ============================================================================ +01:51:27 [ 1] [ 4] [0810] +01:51:27 [ 7] [ 10] [0320090314] +01:51:27 [ 11] [ 6] [020314] +01:51:27 [ 37] [ 12] [579020203140] +01:51:27 [ 39] [ 2] [00] +01:51:27 [ 70] [ 3] [810] +01:51:27 ============================================================================ +01:51:27 Calculate Source COMM Id = 6 +01:51:27 ============================================================================ +01:51:27 + + +waiting on router queue for slot.... +01:51:36 ============================================================================ +01:51:36 Slot Id : <95> +01:51:36 Transaction Type : REQUEST +01:51:36 Received From : +01:51:36 ============================================================================ +01:51:36 FNo. Len. Field Value +01:51:36 ============================================================================ +01:51:36 [ 1] [ 4] [0800] +01:51:36 [ 7] [ 10] [0319065043] +01:51:36 [ 11] [ 6] [153559] +01:51:36 [ 70] [ 3] [301] +01:51:36 ============================================================================ +01:51:36 + + +waiting on router queue for slot.... +01:51:36 Sending to : +01:51:36 ============================================================================ +01:51:36 ============================================================================ +01:51:36 Slot Id : <95> +01:51:36 Transaction Type : RESPONSE +01:51:36 Received From : +01:51:36 ============================================================================ +01:51:36 FNo. Len. Field Value +01:51:36 ============================================================================ +01:51:36 [ 1] [ 4] [0810] +01:51:36 [ 7] [ 10] [0319065043] +01:51:36 [ 11] [ 6] [153559] +01:51:36 [ 39] [ 2] [00] +01:51:36 [ 70] [ 3] [301] +01:51:36 ============================================================================ +01:51:36 Calculate Source COMM Id = 2 +01:51:36 ============================================================================ +01:51:36 + + +waiting on router queue for slot.... +01:51:51 ============================================================================ +01:51:51 Slot Id : <75> +01:51:51 Transaction Type : REQUEST +01:51:51 Received From : +01:51:51 ============================================================================ +01:51:51 FNo. Len. Field Value +01:51:51 ============================================================================ +01:51:51 [ 1] [ 4] [0800] +01:51:51 [ 7] [ 10] [0319065058] +01:51:51 [ 11] [ 6] [153560] +01:51:51 [ 70] [ 3] [301] +01:51:51 ============================================================================ +01:51:51 + + +waiting on router queue for slot.... +01:51:51 Sending to : +01:51:51 ============================================================================ +01:51:51 ============================================================================ +01:51:51 Slot Id : <75> +01:51:51 Transaction Type : RESPONSE +01:51:51 Received From : +01:51:51 ============================================================================ +01:51:51 FNo. Len. Field Value +01:51:51 ============================================================================ +01:51:51 [ 1] [ 4] [0810] +01:51:51 [ 7] [ 10] [0319065058] +01:51:51 [ 11] [ 6] [153560] +01:51:51 [ 39] [ 2] [00] +01:51:51 [ 70] [ 3] [301] +01:51:51 ============================================================================ +01:51:51 Calculate Source COMM Id = 2 +01:51:51 ============================================================================ +01:51:51 + + +waiting on router queue for slot.... +01:52:07 ============================================================================ +01:52:07 Slot Id : <53> +01:52:07 Transaction Type : REQUEST +01:52:07 Received From : +01:52:07 ============================================================================ +01:52:07 FNo. Len. Field Value +01:52:07 ============================================================================ +01:52:07 [ 1] [ 4] [0800] +01:52:07 [ 7] [ 10] [0319065114] +01:52:07 [ 11] [ 6] [153561] +01:52:07 [ 70] [ 3] [301] +01:52:07 ============================================================================ +01:52:07 + + +waiting on router queue for slot.... +01:52:07 Sending to : +01:52:07 ============================================================================ +01:52:07 ============================================================================ +01:52:07 Slot Id : <53> +01:52:07 Transaction Type : RESPONSE +01:52:07 Received From : +01:52:07 ============================================================================ +01:52:07 FNo. Len. Field Value +01:52:07 ============================================================================ +01:52:07 [ 1] [ 4] [0810] +01:52:07 [ 7] [ 10] [0319065114] +01:52:07 [ 11] [ 6] [153561] +01:52:07 [ 39] [ 2] [00] +01:52:07 [ 70] [ 3] [301] +01:52:07 ============================================================================ +01:52:07 Calculate Source COMM Id = 2 +01:52:07 ============================================================================ +01:52:07 + + +waiting on router queue for slot.... +01:52:11 ============================================================================ +01:52:11 Slot Id : <134> +01:52:11 Transaction Type : REQUEST +01:52:11 Received From : +01:52:11 ============================================================================ +01:52:11 FNo. Len. Field Value +01:52:11 ============================================================================ +01:52:11 [ 1] [ 4] [0800] +01:52:11 [ 2] [ 5] [02531] +01:52:11 [ 3] [ 6] [579018] +01:52:11 [ 7] [ 10] [0319185211] +01:52:11 [ 11] [ 6] [806520] +01:52:11 [ 15] [ 10] [0319185211] +01:52:11 [ 37] [ 11] [57901806520] +01:52:11 [ 70] [ 3] [001] +01:52:11 ============================================================================ +01:52:11 + + +waiting on router queue for slot.... +01:52:11 ============================================================================ +01:52:11 Slot Id : <134> +01:52:11 Transaction Type : RESPONSE +01:52:11 Received From : +01:52:11 ============================================================================ +01:52:11 FNo. Len. Field Value +01:52:11 ============================================================================ +01:52:11 [ 1] [ 4] [0810] +01:52:11 [ 7] [ 10] [0319185211] +01:52:11 [ 11] [ 6] [806520] +01:52:11 [ 15] [ 4] [0319] +01:52:11 [ 37] [ 12] [57901806520] +01:52:11 [ 39] [ 2] [00] +01:52:11 [ 70] [ 3] [001] +01:52:11 ============================================================================ +01:52:11 Sending to : +01:52:11 ============================================================================ +01:52:11 + + +waiting on router queue for slot.... +01:52:23 ============================================================================ +01:52:23 Slot Id : <96> +01:52:23 Transaction Type : REQUEST +01:52:23 Received From : +01:52:23 ============================================================================ +01:52:23 FNo. Len. Field Value +01:52:23 ============================================================================ +01:52:23 [ 1] [ 4] [0800] +01:52:23 [ 7] [ 10] [0319065130] +01:52:23 [ 11] [ 6] [153562] +01:52:23 [ 70] [ 3] [301] +01:52:23 ============================================================================ +01:52:23 + + +waiting on router queue for slot.... +01:52:23 Sending to : +01:52:23 ============================================================================ +01:52:23 ============================================================================ +01:52:23 Slot Id : <96> +01:52:23 Transaction Type : RESPONSE +01:52:23 Received From : +01:52:23 ============================================================================ +01:52:23 FNo. Len. Field Value +01:52:23 ============================================================================ +01:52:23 [ 1] [ 4] [0810] +01:52:23 [ 7] [ 10] [0319065130] +01:52:23 [ 11] [ 6] [153562] +01:52:23 [ 39] [ 2] [00] +01:52:23 [ 70] [ 3] [301] +01:52:23 ============================================================================ +01:52:23 Calculate Source COMM Id = 2 +01:52:23 ============================================================================ +01:52:23 + + +waiting on router queue for slot.... +01:52:32 ============================================================================ +01:52:32 Slot Id : <98> +01:52:32 Transaction Type : REQUEST +01:52:32 Received From : +01:52:32 ============================================================================ +01:52:32 FNo. Len. Field Value +01:52:32 ============================================================================ +01:52:32 [ 1] [ 4] [0800] +01:52:32 [ 7] [ 10] [0320090419] +01:52:32 [ 11] [ 6] [020419] +01:52:32 [ 37] [ 12] [57902020419] +01:52:32 [ 70] [ 3] [301] +01:52:32 ============================================================================ +01:52:32 + + +waiting on router queue for slot.... +01:52:32 Sending to : +01:52:32 ============================================================================ +01:52:32 ============================================================================ +01:52:32 Slot Id : <98> +01:52:32 Transaction Type : RESPONSE +01:52:32 Received From : +01:52:32 ============================================================================ +01:52:32 FNo. Len. Field Value +01:52:32 ============================================================================ +01:52:32 [ 1] [ 4] [0810] +01:52:32 [ 7] [ 10] [0320090419] +01:52:32 [ 11] [ 6] [020419] +01:52:32 [ 37] [ 12] [579020204190] +01:52:32 [ 39] [ 2] [00] +01:52:32 [ 70] [ 3] [810] +01:52:32 ============================================================================ +01:52:32 Calculate Source COMM Id = 6 +01:52:32 ============================================================================ +01:52:32 + + +waiting on router queue for slot.... +01:52:34 ============================================================================ +01:52:34 Slot Id : <103> +01:52:34 Transaction Type : REQUEST +01:52:34 Received From : +01:52:34 ============================================================================ +01:52:34 FNo. Len. Field Value +01:52:34 ============================================================================ +01:52:34 [ 1] [ 4] [0800] +01:52:34 [ 7] [ 10] [0319065141] +01:52:34 [ 11] [ 6] [153563] +01:52:34 [ 70] [ 3] [301] +01:52:34 ============================================================================ +01:52:34 + + +waiting on router queue for slot.... +01:52:34 Sending to : +01:52:34 ============================================================================ +01:52:34 ============================================================================ +01:52:34 Slot Id : <103> +01:52:34 Transaction Type : RESPONSE +01:52:34 Received From : +01:52:34 ============================================================================ +01:52:34 FNo. Len. Field Value +01:52:34 ============================================================================ +01:52:34 [ 1] [ 4] [0810] +01:52:34 [ 7] [ 10] [0319065141] +01:52:34 [ 11] [ 6] [153563] +01:52:34 [ 39] [ 2] [00] +01:52:34 [ 70] [ 3] [301] +01:52:34 ============================================================================ +01:52:34 Calculate Source COMM Id = 2 +01:52:34 ============================================================================ +01:52:34 + + +waiting on router queue for slot.... +01:52:45 ============================================================================ +01:52:45 Slot Id : <71> +01:52:45 Transaction Type : REQUEST +01:52:45 Received From : +01:52:45 ============================================================================ +01:52:45 FNo. Len. Field Value +01:52:45 ============================================================================ +01:52:45 [ 1] [ 4] [0800] +01:52:45 [ 7] [ 10] [0319065152] +01:52:45 [ 11] [ 6] [153564] +01:52:45 [ 70] [ 3] [301] +01:52:45 ============================================================================ +01:52:45 + + +waiting on router queue for slot.... +01:52:45 Sending to : +01:52:45 ============================================================================ +01:52:45 ============================================================================ +01:52:45 Slot Id : <71> +01:52:45 Transaction Type : RESPONSE +01:52:45 Received From : +01:52:45 ============================================================================ +01:52:45 FNo. Len. Field Value +01:52:45 ============================================================================ +01:52:45 [ 1] [ 4] [0810] +01:52:45 [ 7] [ 10] [0319065152] +01:52:45 [ 11] [ 6] [153564] +01:52:45 [ 39] [ 2] [00] +01:52:45 [ 70] [ 3] [301] +01:52:45 ============================================================================ +01:52:45 Calculate Source COMM Id = 2 +01:52:45 ============================================================================ +01:52:45 + + +waiting on router queue for slot.... +01:52:56 ============================================================================ +01:52:56 Slot Id : <101> +01:52:56 Transaction Type : REQUEST +01:52:56 Received From : +01:52:56 ============================================================================ +01:52:56 FNo. Len. Field Value +01:52:56 ============================================================================ +01:52:56 [ 1] [ 4] [0800] +01:52:56 [ 7] [ 10] [0319065203] +01:52:56 [ 11] [ 6] [153565] +01:52:56 [ 70] [ 3] [301] +01:52:56 ============================================================================ +01:52:56 + + +waiting on router queue for slot.... +01:52:56 Sending to : +01:52:56 ============================================================================ +01:52:56 ============================================================================ +01:52:56 Slot Id : <101> +01:52:56 Transaction Type : RESPONSE +01:52:56 Received From : +01:52:56 ============================================================================ +01:52:56 FNo. Len. Field Value +01:52:56 ============================================================================ +01:52:56 [ 1] [ 4] [0810] +01:52:56 [ 7] [ 10] [0319065203] +01:52:56 [ 11] [ 6] [153565] +01:52:56 [ 39] [ 2] [00] +01:52:56 [ 70] [ 3] [301] +01:52:56 ============================================================================ +01:52:56 Calculate Source COMM Id = 2 +01:52:56 ============================================================================ +01:52:56 + + +waiting on router queue for slot.... +01:53:12 ============================================================================ +01:53:12 Slot Id : <102> +01:53:12 Transaction Type : REQUEST +01:53:12 Received From : +01:53:12 ============================================================================ +01:53:12 FNo. Len. Field Value +01:53:12 ============================================================================ +01:53:12 [ 1] [ 4] [0800] +01:53:12 [ 7] [ 10] [0319065219] +01:53:12 [ 11] [ 6] [153566] +01:53:12 [ 70] [ 3] [301] +01:53:12 ============================================================================ +01:53:12 + + +waiting on router queue for slot.... +01:53:12 Sending to : +01:53:12 ============================================================================ +01:53:12 ============================================================================ +01:53:12 Slot Id : <102> +01:53:12 Transaction Type : RESPONSE +01:53:12 Received From : +01:53:12 ============================================================================ +01:53:12 FNo. Len. Field Value +01:53:12 ============================================================================ +01:53:12 [ 1] [ 4] [0810] +01:53:12 [ 7] [ 10] [0319065219] +01:53:12 [ 11] [ 6] [153566] +01:53:12 [ 39] [ 2] [00] +01:53:12 [ 70] [ 3] [301] +01:53:12 ============================================================================ +01:53:12 Calculate Source COMM Id = 2 +01:53:12 ============================================================================ +01:53:12 + + +waiting on router queue for slot.... +01:53:13 ============================================================================ +01:53:13 Slot Id : <109> +01:53:13 Transaction Type : REQUEST +01:53:13 Received From : +01:53:13 ============================================================================ +01:53:13 FNo. Len. Field Value +01:53:13 ============================================================================ +01:53:13 [ 1] [ 4] [0800] +01:53:13 [ 2] [ 5] [02531] +01:53:13 [ 3] [ 6] [579018] +01:53:13 [ 7] [ 10] [0319185313] +01:53:13 [ 11] [ 6] [806521] +01:53:13 [ 15] [ 10] [0319185313] +01:53:13 [ 37] [ 11] [57901806521] +01:53:13 [ 70] [ 3] [001] +01:53:13 ============================================================================ +01:53:13 + + +waiting on router queue for slot.... +01:53:13 ============================================================================ +01:53:13 Slot Id : <109> +01:53:13 Transaction Type : RESPONSE +01:53:13 Received From : +01:53:13 ============================================================================ +01:53:13 FNo. Len. Field Value +01:53:13 ============================================================================ +01:53:13 [ 1] [ 4] [0810] +01:53:13 [ 7] [ 10] [0319185313] +01:53:13 [ 11] [ 6] [806521] +01:53:13 [ 15] [ 4] [0319] +01:53:13 [ 37] [ 12] [57901806521] +01:53:13 [ 39] [ 2] [00] +01:53:13 [ 70] [ 3] [001] +01:53:13 ============================================================================ +01:53:13 Sending to : +01:53:13 ============================================================================ +01:53:13 + + +waiting on router queue for slot.... +01:53:27 ============================================================================ +01:53:27 Slot Id : <70> +01:53:27 Transaction Type : REQUEST +01:53:27 Received From : +01:53:27 ============================================================================ +01:53:27 FNo. Len. Field Value +01:53:27 ============================================================================ +01:53:27 [ 1] [ 4] [0800] +01:53:27 [ 7] [ 10] [0319065235] +01:53:27 [ 11] [ 6] [153567] +01:53:27 [ 70] [ 3] [301] +01:53:27 ============================================================================ +01:53:28 + + +waiting on router queue for slot.... +01:53:28 Sending to : +01:53:28 ============================================================================ +01:53:28 ============================================================================ +01:53:28 Slot Id : <70> +01:53:28 Transaction Type : RESPONSE +01:53:28 Received From : +01:53:28 ============================================================================ +01:53:28 FNo. Len. Field Value +01:53:28 ============================================================================ +01:53:28 [ 1] [ 4] [0810] +01:53:28 [ 7] [ 10] [0319065235] +01:53:28 [ 11] [ 6] [153567] +01:53:28 [ 39] [ 2] [00] +01:53:28 [ 70] [ 3] [301] +01:53:28 ============================================================================ +01:53:28 Calculate Source COMM Id = 2 +01:53:28 ============================================================================ +01:53:28 + + +waiting on router queue for slot.... +01:53:37 ============================================================================ +01:53:37 Slot Id : <136> +01:53:37 Transaction Type : REQUEST +01:53:37 Received From : +01:53:37 ============================================================================ +01:53:37 FNo. Len. Field Value +01:53:37 ============================================================================ +01:53:37 [ 1] [ 4] [0800] +01:53:37 [ 7] [ 10] [0320090524] +01:53:37 [ 11] [ 6] [020524] +01:53:37 [ 37] [ 12] [57902020524] +01:53:37 [ 70] [ 3] [301] +01:53:37 ============================================================================ +01:53:37 + + +waiting on router queue for slot.... +01:53:37 Sending to : +01:53:37 ============================================================================ +01:53:37 ============================================================================ +01:53:37 Slot Id : <136> +01:53:37 Transaction Type : RESPONSE +01:53:37 Received From : +01:53:37 ============================================================================ +01:53:37 FNo. Len. Field Value +01:53:37 ============================================================================ +01:53:37 [ 1] [ 4] [0810] +01:53:37 [ 7] [ 10] [0320090524] +01:53:37 [ 11] [ 6] [020524] +01:53:37 [ 37] [ 12] [579020205240] +01:53:37 [ 39] [ 2] [00] +01:53:37 [ 70] [ 3] [810] +01:53:37 ============================================================================ +01:53:37 Calculate Source COMM Id = 6 +01:53:37 ============================================================================ +01:53:37 + + +waiting on router queue for slot.... +01:53:39 ============================================================================ +01:53:39 Slot Id : <131> +01:53:39 Transaction Type : REQUEST +01:53:39 Received From : +01:53:39 ============================================================================ +01:53:39 FNo. Len. Field Value +01:53:39 ============================================================================ +01:53:39 [ 1] [ 4] [0800] +01:53:39 [ 7] [ 10] [0319065247] +01:53:39 [ 11] [ 6] [153568] +01:53:39 [ 70] [ 3] [301] +01:53:39 ============================================================================ +01:53:39 + + +waiting on router queue for slot.... +01:53:39 Sending to : +01:53:39 ============================================================================ +01:53:39 ============================================================================ +01:53:39 Slot Id : <131> +01:53:39 Transaction Type : RESPONSE +01:53:39 Received From : +01:53:39 ============================================================================ +01:53:39 FNo. Len. Field Value +01:53:39 ============================================================================ +01:53:39 [ 1] [ 4] [0810] +01:53:39 [ 7] [ 10] [0319065247] +01:53:39 [ 11] [ 6] [153568] +01:53:39 [ 39] [ 2] [00] +01:53:39 [ 70] [ 3] [301] +01:53:39 ============================================================================ +01:53:39 Calculate Source COMM Id = 2 +01:53:39 ============================================================================ +01:53:39 + + +waiting on router queue for slot.... +01:53:57 ============================================================================ +01:53:57 Slot Id : <129> +01:53:57 Transaction Type : REQUEST +01:53:57 Received From : +01:53:57 ============================================================================ +01:53:57 FNo. Len. Field Value +01:53:57 ============================================================================ +01:53:57 [ 1] [ 4] [0800] +01:53:57 [ 7] [ 10] [0319065304] +01:53:57 [ 11] [ 6] [153569] +01:53:57 [ 70] [ 3] [301] +01:53:57 ============================================================================ +01:53:57 + + +waiting on router queue for slot.... +01:53:57 Sending to : +01:53:57 ============================================================================ +01:53:57 ============================================================================ +01:53:57 Slot Id : <129> +01:53:57 Transaction Type : RESPONSE +01:53:57 Received From : +01:53:57 ============================================================================ +01:53:57 FNo. Len. Field Value +01:53:57 ============================================================================ +01:53:57 [ 1] [ 4] [0810] +01:53:57 [ 7] [ 10] [0319065304] +01:53:57 [ 11] [ 6] [153569] +01:53:57 [ 39] [ 2] [00] +01:53:57 [ 70] [ 3] [301] +01:53:57 ============================================================================ +01:53:57 Calculate Source COMM Id = 2 +01:53:57 ============================================================================ +01:53:57 + + +waiting on router queue for slot.... +01:54:10 ============================================================================ +01:54:10 Slot Id : <85> +01:54:10 Transaction Type : REQUEST +01:54:10 Received From : +01:54:10 ============================================================================ +01:54:10 FNo. Len. Field Value +01:54:10 ============================================================================ +01:54:10 [ 1] [ 4] [0800] +01:54:10 [ 7] [ 10] [0319065316] +01:54:10 [ 11] [ 6] [153570] +01:54:10 [ 70] [ 3] [301] +01:54:10 ============================================================================ +01:54:10 + + +waiting on router queue for slot.... +01:54:10 Sending to : +01:54:10 ============================================================================ +01:54:10 ============================================================================ +01:54:10 Slot Id : <85> +01:54:10 Transaction Type : RESPONSE +01:54:10 Received From : +01:54:10 ============================================================================ +01:54:10 FNo. Len. Field Value +01:54:10 ============================================================================ +01:54:10 [ 1] [ 4] [0810] +01:54:10 [ 7] [ 10] [0319065316] +01:54:10 [ 11] [ 6] [153570] +01:54:10 [ 39] [ 2] [00] +01:54:10 [ 70] [ 3] [301] +01:54:10 ============================================================================ +01:54:10 Calculate Source COMM Id = 2 +01:54:10 ============================================================================ +01:54:10 + + +waiting on router queue for slot.... +01:54:15 ============================================================================ +01:54:15 Slot Id : <105> +01:54:15 Transaction Type : REQUEST +01:54:15 Received From : +01:54:15 ============================================================================ +01:54:15 FNo. Len. Field Value +01:54:15 ============================================================================ +01:54:15 [ 1] [ 4] [0800] +01:54:15 [ 2] [ 5] [02531] +01:54:15 [ 3] [ 6] [579018] +01:54:15 [ 7] [ 10] [0319185415] +01:54:15 [ 11] [ 6] [806522] +01:54:15 [ 15] [ 10] [0319185415] +01:54:15 [ 37] [ 11] [57901806522] +01:54:15 [ 70] [ 3] [001] +01:54:15 ============================================================================ +01:54:15 + + +waiting on router queue for slot.... +01:54:15 ============================================================================ +01:54:15 Slot Id : <105> +01:54:15 Transaction Type : RESPONSE +01:54:15 Received From : +01:54:15 ============================================================================ +01:54:15 FNo. Len. Field Value +01:54:15 ============================================================================ +01:54:15 [ 1] [ 4] [0810] +01:54:15 [ 7] [ 10] [0319185415] +01:54:15 [ 11] [ 6] [806522] +01:54:15 [ 15] [ 4] [0319] +01:54:15 [ 37] [ 12] [57901806522] +01:54:15 [ 39] [ 2] [00] +01:54:15 [ 70] [ 3] [001] +01:54:15 ============================================================================ +01:54:15 Sending to : +01:54:15 ============================================================================ +01:54:15 + + +waiting on router queue for slot.... +01:54:25 ============================================================================ +01:54:25 Slot Id : <87> +01:54:25 Transaction Type : REQUEST +01:54:25 Received From : +01:54:25 ============================================================================ +01:54:25 FNo. Len. Field Value +01:54:25 ============================================================================ +01:54:25 [ 1] [ 4] [0800] +01:54:25 [ 7] [ 10] [0319065332] +01:54:25 [ 11] [ 6] [153571] +01:54:25 [ 70] [ 3] [301] +01:54:25 ============================================================================ +01:54:25 + + +waiting on router queue for slot.... +01:54:25 Sending to : +01:54:25 ============================================================================ +01:54:25 ============================================================================ +01:54:25 Slot Id : <87> +01:54:25 Transaction Type : RESPONSE +01:54:25 Received From : +01:54:25 ============================================================================ +01:54:25 FNo. Len. Field Value +01:54:25 ============================================================================ +01:54:25 [ 1] [ 4] [0810] +01:54:25 [ 7] [ 10] [0319065332] +01:54:25 [ 11] [ 6] [153571] +01:54:25 [ 39] [ 2] [00] +01:54:25 [ 70] [ 3] [301] +01:54:25 ============================================================================ +01:54:25 Calculate Source COMM Id = 2 +01:54:25 ============================================================================ +01:54:25 + + +waiting on router queue for slot.... +01:54:36 ============================================================================ +01:54:36 Slot Id : <104> +01:54:36 Transaction Type : REQUEST +01:54:36 Received From : +01:54:36 ============================================================================ +01:54:36 FNo. Len. Field Value +01:54:36 ============================================================================ +01:54:36 [ 1] [ 4] [0800] +01:54:36 [ 7] [ 10] [0319065343] +01:54:36 [ 11] [ 6] [153572] +01:54:36 [ 70] [ 3] [301] +01:54:36 ============================================================================ +01:54:36 + + +waiting on router queue for slot.... +01:54:36 Sending to : +01:54:36 ============================================================================ +01:54:36 ============================================================================ +01:54:36 Slot Id : <104> +01:54:36 Transaction Type : RESPONSE +01:54:36 Received From : +01:54:36 ============================================================================ +01:54:36 FNo. Len. Field Value +01:54:36 ============================================================================ +01:54:36 [ 1] [ 4] [0810] +01:54:36 [ 7] [ 10] [0319065343] +01:54:36 [ 11] [ 6] [153572] +01:54:36 [ 39] [ 2] [00] +01:54:36 [ 70] [ 3] [301] +01:54:36 ============================================================================ +01:54:36 Calculate Source COMM Id = 2 +01:54:36 ============================================================================ +01:54:36 + + +waiting on router queue for slot.... +01:54:42 ============================================================================ +01:54:42 Slot Id : <138> +01:54:42 Transaction Type : REQUEST +01:54:42 Received From : +01:54:42 ============================================================================ +01:54:42 FNo. Len. Field Value +01:54:42 ============================================================================ +01:54:42 [ 1] [ 4] [0800] +01:54:42 [ 7] [ 10] [0320090629] +01:54:42 [ 11] [ 6] [020629] +01:54:42 [ 37] [ 12] [57902020629] +01:54:42 [ 70] [ 3] [301] +01:54:42 ============================================================================ +01:54:42 + + +waiting on router queue for slot.... +01:54:42 Sending to : +01:54:42 ============================================================================ +01:54:42 ============================================================================ +01:54:42 Slot Id : <138> +01:54:42 Transaction Type : RESPONSE +01:54:42 Received From : +01:54:42 ============================================================================ +01:54:42 FNo. Len. Field Value +01:54:42 ============================================================================ +01:54:42 [ 1] [ 4] [0810] +01:54:42 [ 7] [ 10] [0320090629] +01:54:42 [ 11] [ 6] [020629] +01:54:42 [ 37] [ 12] [579020206290] +01:54:42 [ 39] [ 2] [00] +01:54:42 [ 70] [ 3] [810] +01:54:42 ============================================================================ +01:54:42 Calculate Source COMM Id = 6 +01:54:42 ============================================================================ +01:54:42 + + +waiting on router queue for slot.... +01:54:47 ============================================================================ +01:54:47 Slot Id : <97> +01:54:47 Transaction Type : REQUEST +01:54:47 Received From : +01:54:47 ============================================================================ +01:54:47 FNo. Len. Field Value +01:54:47 ============================================================================ +01:54:47 [ 1] [ 4] [0800] +01:54:47 [ 7] [ 10] [0319065354] +01:54:47 [ 11] [ 6] [153573] +01:54:47 [ 70] [ 3] [301] +01:54:47 ============================================================================ +01:54:47 + + +waiting on router queue for slot.... +01:54:47 Sending to : +01:54:47 ============================================================================ +01:54:47 ============================================================================ +01:54:47 Slot Id : <97> +01:54:47 Transaction Type : RESPONSE +01:54:47 Received From : +01:54:47 ============================================================================ +01:54:47 FNo. Len. Field Value +01:54:47 ============================================================================ +01:54:47 [ 1] [ 4] [0810] +01:54:47 [ 7] [ 10] [0319065354] +01:54:47 [ 11] [ 6] [153573] +01:54:47 [ 39] [ 2] [00] +01:54:47 [ 70] [ 3] [301] +01:54:47 ============================================================================ +01:54:47 Calculate Source COMM Id = 2 +01:54:47 ============================================================================ +01:54:47 + + +waiting on router queue for slot.... +01:54:56 ============================================================================ +01:54:56 Slot Id : <117> +01:54:56 Transaction Type : REQUEST +01:54:56 Received From : +01:54:56 ============================================================================ +01:54:56 FNo. Len. Field Value +01:54:56 ============================================================================ +01:54:56 [ 1] [ 4] [0800] +01:54:56 [ 7] [ 10] [0319190242] +01:54:56 [ 11] [ 6] [037495] +01:54:56 [ 37] [ 12] [57902037495] +01:54:56 [ 70] [ 3] [301] +01:54:56 ============================================================================ +01:54:56 + + +waiting on router queue for slot.... +01:54:56 Sending to : +01:54:56 ============================================================================ +01:54:56 ============================================================================ +01:54:56 Slot Id : <117> +01:54:56 Transaction Type : RESPONSE +01:54:56 Received From : +01:54:56 ============================================================================ +01:54:56 FNo. Len. Field Value +01:54:56 ============================================================================ +01:54:56 [ 1] [ 4] [0810] +01:54:56 [ 7] [ 10] [0319190242] +01:54:56 [ 11] [ 6] [037495] +01:54:56 [ 37] [ 12] [579020374950] +01:54:56 [ 39] [ 2] [00] +01:54:56 [ 70] [ 3] [810] +01:54:56 ============================================================================ +01:54:56 Calculate Source COMM Id = 1 +01:54:56 ============================================================================ +01:54:56 + + +waiting on router queue for slot.... +01:54:57 ============================================================================ +01:54:57 Slot Id : <112> +01:54:57 Transaction Type : REQUEST +01:54:57 Received From : +01:54:57 ============================================================================ +01:54:57 FNo. Len. Field Value +01:54:57 ============================================================================ +01:54:57 [ 1] [ 4] [0800] +01:54:57 [ 7] [ 10] [0319065404] +01:54:57 [ 11] [ 6] [153574] +01:54:57 [ 70] [ 3] [301] +01:54:57 ============================================================================ +01:54:57 + + +waiting on router queue for slot.... +01:54:57 Sending to : +01:54:57 ============================================================================ +01:54:57 ============================================================================ +01:54:57 Slot Id : <112> +01:54:57 Transaction Type : RESPONSE +01:54:57 Received From : +01:54:57 ============================================================================ +01:54:57 FNo. Len. Field Value +01:54:57 ============================================================================ +01:54:57 [ 1] [ 4] [0810] +01:54:57 [ 7] [ 10] [0319065404] +01:54:57 [ 11] [ 6] [153574] +01:54:57 [ 39] [ 2] [00] +01:54:57 [ 70] [ 3] [301] +01:54:57 ============================================================================ +01:54:57 Calculate Source COMM Id = 2 +01:54:57 ============================================================================ +01:54:57 + + +waiting on router queue for slot.... +01:55:09 ============================================================================ +01:55:09 Slot Id : <140> +01:55:09 Transaction Type : REQUEST +01:55:09 Received From : +01:55:09 ============================================================================ +01:55:09 FNo. Len. Field Value +01:55:09 ============================================================================ +01:55:09 [ 1] [ 4] [0800] +01:55:09 [ 7] [ 10] [0319065416] +01:55:09 [ 11] [ 6] [153575] +01:55:09 [ 70] [ 3] [301] +01:55:09 ============================================================================ +01:55:09 + + +waiting on router queue for slot.... +01:55:09 Sending to : +01:55:09 ============================================================================ +01:55:09 ============================================================================ +01:55:09 Slot Id : <140> +01:55:09 Transaction Type : RESPONSE +01:55:09 Received From : +01:55:09 ============================================================================ +01:55:09 FNo. Len. Field Value +01:55:09 ============================================================================ +01:55:09 [ 1] [ 4] [0810] +01:55:09 [ 7] [ 10] [0319065416] +01:55:09 [ 11] [ 6] [153575] +01:55:09 [ 39] [ 2] [00] +01:55:09 [ 70] [ 3] [301] +01:55:09 ============================================================================ +01:55:09 Calculate Source COMM Id = 2 +01:55:09 ============================================================================ +01:55:09 + + +waiting on router queue for slot.... +01:55:17 ============================================================================ +01:55:17 Slot Id : <116> +01:55:17 Transaction Type : REQUEST +01:55:17 Received From : +01:55:17 ============================================================================ +01:55:17 FNo. Len. Field Value +01:55:17 ============================================================================ +01:55:17 [ 1] [ 4] [0800] +01:55:17 [ 2] [ 5] [02531] +01:55:17 [ 3] [ 6] [579018] +01:55:17 [ 7] [ 10] [0319185517] +01:55:17 [ 11] [ 6] [806523] +01:55:17 [ 15] [ 10] [0319185517] +01:55:17 [ 37] [ 11] [57901806523] +01:55:17 [ 70] [ 3] [001] +01:55:17 ============================================================================ +01:55:17 + + +waiting on router queue for slot.... +01:55:17 ============================================================================ +01:55:17 Slot Id : <116> +01:55:17 Transaction Type : RESPONSE +01:55:17 Received From : +01:55:17 ============================================================================ +01:55:17 FNo. Len. Field Value +01:55:17 ============================================================================ +01:55:17 [ 1] [ 4] [0810] +01:55:17 [ 7] [ 10] [0319185517] +01:55:17 [ 11] [ 6] [806523] +01:55:17 [ 15] [ 4] [0319] +01:55:17 [ 37] [ 12] [57901806523] +01:55:17 [ 39] [ 2] [00] +01:55:17 [ 70] [ 3] [001] +01:55:17 ============================================================================ +01:55:17 Sending to : +01:55:17 ============================================================================ +01:55:17 + + +waiting on router queue for slot.... +01:55:19 ============================================================================ +01:55:19 Slot Id : <111> +01:55:19 Transaction Type : REQUEST +01:55:19 Received From : +01:55:19 ============================================================================ +01:55:19 FNo. Len. Field Value +01:55:19 ============================================================================ +01:55:19 [ 1] [ 4] [0800] +01:55:19 [ 7] [ 10] [0319065426] +01:55:19 [ 11] [ 6] [153576] +01:55:19 [ 70] [ 3] [301] +01:55:19 ============================================================================ +01:55:19 + + +waiting on router queue for slot.... +01:55:19 Sending to : +01:55:19 ============================================================================ +01:55:19 ============================================================================ +01:55:19 Slot Id : <111> +01:55:19 Transaction Type : RESPONSE +01:55:19 Received From : +01:55:19 ============================================================================ +01:55:19 FNo. Len. Field Value +01:55:19 ============================================================================ +01:55:19 [ 1] [ 4] [0810] +01:55:19 [ 7] [ 10] [0319065426] +01:55:19 [ 11] [ 6] [153576] +01:55:19 [ 39] [ 2] [00] +01:55:19 [ 70] [ 3] [301] +01:55:19 ============================================================================ +01:55:19 Calculate Source COMM Id = 2 +01:55:19 ============================================================================ +01:55:19 + + +waiting on router queue for slot.... +01:55:30 ============================================================================ +01:55:30 Slot Id : <124> +01:55:30 Transaction Type : REQUEST +01:55:30 Received From : +01:55:30 ============================================================================ +01:55:30 FNo. Len. Field Value +01:55:30 ============================================================================ +01:55:30 [ 1] [ 4] [0800] +01:55:30 [ 7] [ 10] [0319065437] +01:55:30 [ 11] [ 6] [153577] +01:55:30 [ 70] [ 3] [301] +01:55:30 ============================================================================ +01:55:30 + + +waiting on router queue for slot.... +01:55:30 Sending to : +01:55:30 ============================================================================ +01:55:30 ============================================================================ +01:55:30 Slot Id : <124> +01:55:30 Transaction Type : RESPONSE +01:55:30 Received From : +01:55:30 ============================================================================ +01:55:30 FNo. Len. Field Value +01:55:30 ============================================================================ +01:55:30 [ 1] [ 4] [0810] +01:55:30 [ 7] [ 10] [0319065437] +01:55:30 [ 11] [ 6] [153577] +01:55:30 [ 39] [ 2] [00] +01:55:30 [ 70] [ 3] [301] +01:55:30 ============================================================================ +01:55:30 Calculate Source COMM Id = 2 +01:55:30 ============================================================================ +01:55:30 + + +waiting on router queue for slot.... +01:55:41 ============================================================================ +01:55:41 Slot Id : <147> +01:55:41 Transaction Type : REQUEST +01:55:41 Received From : +01:55:41 ============================================================================ +01:55:41 FNo. Len. Field Value +01:55:41 ============================================================================ +01:55:41 [ 1] [ 4] [0800] +01:55:41 [ 7] [ 10] [0319065448] +01:55:41 [ 11] [ 6] [153578] +01:55:41 [ 70] [ 3] [301] +01:55:41 ============================================================================ +01:55:41 + + +waiting on router queue for slot.... +01:55:41 Sending to : +01:55:41 ============================================================================ +01:55:41 ============================================================================ +01:55:41 Slot Id : <147> +01:55:41 Transaction Type : RESPONSE +01:55:41 Received From : +01:55:41 ============================================================================ +01:55:41 FNo. Len. Field Value +01:55:41 ============================================================================ +01:55:41 [ 1] [ 4] [0810] +01:55:41 [ 7] [ 10] [0319065448] +01:55:41 [ 11] [ 6] [153578] +01:55:41 [ 39] [ 2] [00] +01:55:41 [ 70] [ 3] [301] +01:55:41 ============================================================================ +01:55:41 Calculate Source COMM Id = 2 +01:55:41 ============================================================================ +01:55:41 + + +waiting on router queue for slot.... +01:55:47 ============================================================================ +01:55:47 Slot Id : <80> +01:55:47 Transaction Type : REQUEST +01:55:47 Received From : +01:55:47 ============================================================================ +01:55:47 FNo. Len. Field Value +01:55:47 ============================================================================ +01:55:47 [ 1] [ 4] [0800] +01:55:47 [ 7] [ 10] [0320090734] +01:55:47 [ 11] [ 6] [020734] +01:55:47 [ 37] [ 12] [57902020734] +01:55:47 [ 70] [ 3] [301] +01:55:47 ============================================================================ +01:55:47 + + +waiting on router queue for slot.... +01:55:47 Sending to : +01:55:47 ============================================================================ +01:55:47 ============================================================================ +01:55:47 Slot Id : <80> +01:55:47 Transaction Type : RESPONSE +01:55:47 Received From : +01:55:47 ============================================================================ +01:55:47 FNo. Len. Field Value +01:55:47 ============================================================================ +01:55:47 [ 1] [ 4] [0810] +01:55:47 [ 7] [ 10] [0320090734] +01:55:47 [ 11] [ 6] [020734] +01:55:47 [ 37] [ 12] [579020207340] +01:55:47 [ 39] [ 2] [00] +01:55:47 [ 70] [ 3] [810] +01:55:47 ============================================================================ +01:55:47 Calculate Source COMM Id = 6 +01:55:47 ============================================================================ +01:55:47 + + +waiting on router queue for slot.... +01:55:56 ============================================================================ +01:55:56 Slot Id : <123> +01:55:56 Transaction Type : REQUEST +01:55:56 Received From : +01:55:56 ============================================================================ +01:55:56 FNo. Len. Field Value +01:55:56 ============================================================================ +01:55:56 [ 1] [ 4] [0800] +01:55:56 [ 7] [ 10] [0319065503] +01:55:56 [ 11] [ 6] [153579] +01:55:56 [ 70] [ 3] [301] +01:55:56 ============================================================================ +01:55:56 + + +waiting on router queue for slot.... +01:55:56 Sending to : +01:55:56 ============================================================================ +01:55:56 ============================================================================ +01:55:56 Slot Id : <123> +01:55:56 Transaction Type : RESPONSE +01:55:56 Received From : +01:55:56 ============================================================================ +01:55:56 FNo. Len. Field Value +01:55:56 ============================================================================ +01:55:56 [ 1] [ 4] [0810] +01:55:56 [ 7] [ 10] [0319065503] +01:55:56 [ 11] [ 6] [153579] +01:55:56 [ 39] [ 2] [00] +01:55:56 [ 70] [ 3] [301] +01:55:56 ============================================================================ +01:55:56 Calculate Source COMM Id = 2 +01:55:56 ============================================================================ +01:55:56 + + +waiting on router queue for slot.... +01:56:13 ============================================================================ +01:56:13 Slot Id : <122> +01:56:13 Transaction Type : REQUEST +01:56:13 Received From : +01:56:13 ============================================================================ +01:56:13 FNo. Len. Field Value +01:56:13 ============================================================================ +01:56:13 [ 1] [ 4] [0800] +01:56:13 [ 7] [ 10] [0319065519] +01:56:13 [ 11] [ 6] [153580] +01:56:13 [ 70] [ 3] [301] +01:56:13 ============================================================================ +01:56:13 + + +waiting on router queue for slot.... +01:56:13 Sending to : +01:56:13 ============================================================================ +01:56:13 ============================================================================ +01:56:13 Slot Id : <122> +01:56:13 Transaction Type : RESPONSE +01:56:13 Received From : +01:56:13 ============================================================================ +01:56:13 FNo. Len. Field Value +01:56:13 ============================================================================ +01:56:13 [ 1] [ 4] [0810] +01:56:13 [ 7] [ 10] [0319065519] +01:56:13 [ 11] [ 6] [153580] +01:56:13 [ 39] [ 2] [00] +01:56:13 [ 70] [ 3] [301] +01:56:13 ============================================================================ +01:56:13 Calculate Source COMM Id = 2 +01:56:13 ============================================================================ +01:56:13 + + +waiting on router queue for slot.... +01:56:19 ============================================================================ +01:56:19 Slot Id : <161> +01:56:19 Transaction Type : REQUEST +01:56:19 Received From : +01:56:19 ============================================================================ +01:56:19 FNo. Len. Field Value +01:56:19 ============================================================================ +01:56:19 [ 1] [ 4] [0800] +01:56:19 [ 2] [ 5] [02531] +01:56:19 [ 3] [ 6] [579018] +01:56:19 [ 7] [ 10] [0319185619] +01:56:19 [ 11] [ 6] [806524] +01:56:19 [ 15] [ 10] [0319185619] +01:56:19 [ 37] [ 11] [57901806524] +01:56:19 [ 70] [ 3] [001] +01:56:19 ============================================================================ +01:56:19 + + +waiting on router queue for slot.... +01:56:19 ============================================================================ +01:56:19 Slot Id : <161> +01:56:19 Transaction Type : RESPONSE +01:56:19 Received From : +01:56:19 ============================================================================ +01:56:19 FNo. Len. Field Value +01:56:19 ============================================================================ +01:56:19 [ 1] [ 4] [0810] +01:56:19 [ 7] [ 10] [0319185619] +01:56:19 [ 11] [ 6] [806524] +01:56:19 [ 15] [ 4] [0319] +01:56:19 [ 37] [ 12] [57901806524] +01:56:19 [ 39] [ 2] [00] +01:56:19 [ 70] [ 3] [001] +01:56:19 ============================================================================ +01:56:19 Sending to : +01:56:19 ============================================================================ +01:56:19 + + +waiting on router queue for slot.... +01:56:21 ============================================================================ +01:56:21 Slot Id : <154> +01:56:21 Transaction Type : REQUEST +01:56:21 Received From : +01:56:21 ============================================================================ +01:56:21 FNo. Len. Field Value +01:56:21 ============================================================================ +01:56:21 [ 1] [ 4] [0800] +01:56:21 [ 7] [ 10] [0319185412] +01:56:21 [ 11] [ 6] [058138] +01:56:21 [ 37] [ 12] [57901058138] +01:56:21 [ 70] [ 3] [301] +01:56:21 ============================================================================ +01:56:21 + + +waiting on router queue for slot.... +01:56:21 Sending to : +01:56:21 ============================================================================ +01:56:21 ============================================================================ +01:56:21 Slot Id : <154> +01:56:21 Transaction Type : RESPONSE +01:56:21 Received From : +01:56:21 ============================================================================ +01:56:21 FNo. Len. Field Value +01:56:21 ============================================================================ +01:56:21 [ 1] [ 4] [0810] +01:56:21 [ 7] [ 10] [0319185412] +01:56:21 [ 11] [ 6] [058138] +01:56:21 [ 37] [ 12] [579010581380] +01:56:21 [ 39] [ 2] [00] +01:56:21 [ 70] [ 3] [810] +01:56:21 ============================================================================ +01:56:21 Calculate Source COMM Id = 4 +01:56:21 ============================================================================ +01:56:21 + + +waiting on router queue for slot.... +01:56:27 ============================================================================ +01:56:27 Slot Id : <162> +01:56:27 Transaction Type : REQUEST +01:56:27 Received From : +01:56:27 ============================================================================ +01:56:27 FNo. Len. Field Value +01:56:27 ============================================================================ +01:56:27 [ 1] [ 4] [0800] +01:56:27 [ 7] [ 10] [0319065534] +01:56:27 [ 11] [ 6] [153581] +01:56:27 [ 70] [ 3] [301] +01:56:27 ============================================================================ +01:56:27 + + +waiting on router queue for slot.... +01:56:27 Sending to : +01:56:27 ============================================================================ +01:56:27 ============================================================================ +01:56:27 Slot Id : <162> +01:56:27 Transaction Type : RESPONSE +01:56:27 Received From : +01:56:27 ============================================================================ +01:56:27 FNo. Len. Field Value +01:56:27 ============================================================================ +01:56:27 [ 1] [ 4] [0810] +01:56:27 [ 7] [ 10] [0319065534] +01:56:27 [ 11] [ 6] [153581] +01:56:27 [ 39] [ 2] [00] +01:56:27 [ 70] [ 3] [301] +01:56:27 ============================================================================ +01:56:27 Calculate Source COMM Id = 2 +01:56:27 ============================================================================ +01:56:27 + + +waiting on router queue for slot.... +01:56:38 ============================================================================ +01:56:38 Slot Id : <132> +01:56:38 Transaction Type : REQUEST +01:56:38 Received From : +01:56:38 ============================================================================ +01:56:38 FNo. Len. Field Value +01:56:38 ============================================================================ +01:56:38 [ 1] [ 4] [0800] +01:56:38 [ 7] [ 10] [0319065545] +01:56:38 [ 11] [ 6] [153582] +01:56:38 [ 70] [ 3] [301] +01:56:38 ============================================================================ +01:56:38 + + +waiting on router queue for slot.... +01:56:38 Sending to : +01:56:38 ============================================================================ +01:56:38 ============================================================================ +01:56:38 Slot Id : <132> +01:56:38 Transaction Type : RESPONSE +01:56:38 Received From : +01:56:38 ============================================================================ +01:56:38 FNo. Len. Field Value +01:56:38 ============================================================================ +01:56:38 [ 1] [ 4] [0810] +01:56:38 [ 7] [ 10] [0319065545] +01:56:38 [ 11] [ 6] [153582] +01:56:38 [ 39] [ 2] [00] +01:56:38 [ 70] [ 3] [301] +01:56:38 ============================================================================ +01:56:38 Calculate Source COMM Id = 2 +01:56:38 ============================================================================ +01:56:38 + + +waiting on router queue for slot.... +01:56:48 ============================================================================ +01:56:48 Slot Id : <145> +01:56:48 Transaction Type : REQUEST +01:56:48 Received From : +01:56:48 ============================================================================ +01:56:48 FNo. Len. Field Value +01:56:48 ============================================================================ +01:56:48 [ 1] [ 4] [0800] +01:56:48 [ 7] [ 10] [0319065555] +01:56:48 [ 11] [ 6] [153583] +01:56:48 [ 70] [ 3] [301] +01:56:48 ============================================================================ +01:56:48 + + +waiting on router queue for slot.... +01:56:48 Sending to : +01:56:48 ============================================================================ +01:56:48 ============================================================================ +01:56:48 Slot Id : <145> +01:56:48 Transaction Type : RESPONSE +01:56:48 Received From : +01:56:48 ============================================================================ +01:56:48 FNo. Len. Field Value +01:56:48 ============================================================================ +01:56:48 [ 1] [ 4] [0810] +01:56:48 [ 7] [ 10] [0319065555] +01:56:48 [ 11] [ 6] [153583] +01:56:48 [ 39] [ 2] [00] +01:56:48 [ 70] [ 3] [301] +01:56:48 ============================================================================ +01:56:48 Calculate Source COMM Id = 2 +01:56:48 ============================================================================ +01:56:48 + + +waiting on router queue for slot.... +01:56:52 ============================================================================ +01:56:52 Slot Id : <143> +01:56:52 Transaction Type : REQUEST +01:56:52 Received From : +01:56:52 ============================================================================ +01:56:52 FNo. Len. Field Value +01:56:52 ============================================================================ +01:56:52 [ 1] [ 4] [0800] +01:56:52 [ 7] [ 10] [0320090839] +01:56:52 [ 11] [ 6] [020839] +01:56:52 [ 37] [ 12] [57902020839] +01:56:52 [ 70] [ 3] [301] +01:56:52 ============================================================================ +01:56:52 + + +waiting on router queue for slot.... +01:56:52 Sending to : +01:56:52 ============================================================================ +01:56:52 ============================================================================ +01:56:52 Slot Id : <143> +01:56:52 Transaction Type : RESPONSE +01:56:52 Received From : +01:56:52 ============================================================================ +01:56:52 FNo. Len. Field Value +01:56:52 ============================================================================ +01:56:52 [ 1] [ 4] [0810] +01:56:52 [ 7] [ 10] [0320090839] +01:56:52 [ 11] [ 6] [020839] +01:56:52 [ 37] [ 12] [579020208390] +01:56:52 [ 39] [ 2] [00] +01:56:52 [ 70] [ 3] [810] +01:56:52 ============================================================================ +01:56:52 Calculate Source COMM Id = 6 +01:56:52 ============================================================================ +01:56:52 + + +waiting on router queue for slot.... +01:57:04 ============================================================================ +01:57:04 Slot Id : <158> +01:57:04 Transaction Type : REQUEST +01:57:04 Received From : +01:57:04 ============================================================================ +01:57:04 FNo. Len. Field Value +01:57:04 ============================================================================ +01:57:04 [ 1] [ 4] [0800] +01:57:04 [ 7] [ 10] [0319065611] +01:57:04 [ 11] [ 6] [153584] +01:57:04 [ 70] [ 3] [301] +01:57:04 ============================================================================ +01:57:04 + + +waiting on router queue for slot.... +01:57:04 Sending to : +01:57:04 ============================================================================ +01:57:04 ============================================================================ +01:57:04 Slot Id : <158> +01:57:04 Transaction Type : RESPONSE +01:57:04 Received From : +01:57:04 ============================================================================ +01:57:04 FNo. Len. Field Value +01:57:04 ============================================================================ +01:57:04 [ 1] [ 4] [0810] +01:57:04 [ 7] [ 10] [0319065611] +01:57:04 [ 11] [ 6] [153584] +01:57:04 [ 39] [ 2] [00] +01:57:04 [ 70] [ 3] [301] +01:57:04 ============================================================================ +01:57:04 Calculate Source COMM Id = 2 +01:57:04 ============================================================================ +01:57:04 + + +waiting on router queue for slot.... +01:57:19 ============================================================================ +01:57:19 Slot Id : <120> +01:57:19 Transaction Type : REQUEST +01:57:19 Received From : +01:57:19 ============================================================================ +01:57:19 FNo. Len. Field Value +01:57:19 ============================================================================ +01:57:19 [ 1] [ 4] [0800] +01:57:19 [ 7] [ 10] [0319065627] +01:57:19 [ 11] [ 6] [153585] +01:57:19 [ 70] [ 3] [301] +01:57:19 ============================================================================ +01:57:19 + + +waiting on router queue for slot.... +01:57:19 Sending to : +01:57:19 ============================================================================ +01:57:19 ============================================================================ +01:57:19 Slot Id : <120> +01:57:19 Transaction Type : RESPONSE +01:57:19 Received From : +01:57:19 ============================================================================ +01:57:19 FNo. Len. Field Value +01:57:19 ============================================================================ +01:57:19 [ 1] [ 4] [0810] +01:57:19 [ 7] [ 10] [0319065627] +01:57:19 [ 11] [ 6] [153585] +01:57:19 [ 39] [ 2] [00] +01:57:19 [ 70] [ 3] [301] +01:57:19 ============================================================================ +01:57:19 Calculate Source COMM Id = 2 +01:57:19 ============================================================================ +01:57:19 + + +waiting on router queue for slot.... +01:57:21 ============================================================================ +01:57:21 Slot Id : <150> +01:57:21 Transaction Type : REQUEST +01:57:21 Received From : +01:57:21 ============================================================================ +01:57:21 FNo. Len. Field Value +01:57:21 ============================================================================ +01:57:21 [ 1] [ 4] [0800] +01:57:21 [ 2] [ 5] [02531] +01:57:21 [ 3] [ 6] [579018] +01:57:21 [ 7] [ 10] [0319185721] +01:57:21 [ 11] [ 6] [806525] +01:57:21 [ 15] [ 10] [0319185721] +01:57:21 [ 37] [ 11] [57901806525] +01:57:21 [ 70] [ 3] [001] +01:57:21 ============================================================================ +01:57:21 + + +waiting on router queue for slot.... +01:57:21 ============================================================================ +01:57:21 Slot Id : <150> +01:57:21 Transaction Type : RESPONSE +01:57:21 Received From : +01:57:21 ============================================================================ +01:57:21 FNo. Len. Field Value +01:57:21 ============================================================================ +01:57:21 [ 1] [ 4] [0810] +01:57:21 [ 7] [ 10] [0319185721] +01:57:21 [ 11] [ 6] [806525] +01:57:21 [ 15] [ 4] [0319] +01:57:21 [ 37] [ 12] [57901806525] +01:57:21 [ 39] [ 2] [00] +01:57:21 [ 70] [ 3] [001] +01:57:21 ============================================================================ +01:57:21 Sending to : +01:57:21 ============================================================================ +01:57:21 + + +waiting on router queue for slot.... +01:57:30 ============================================================================ +01:57:30 Slot Id : <166> +01:57:30 Transaction Type : REQUEST +01:57:30 Received From : +01:57:30 ============================================================================ +01:57:30 FNo. Len. Field Value +01:57:30 ============================================================================ +01:57:30 [ 1] [ 4] [0800] +01:57:30 [ 7] [ 10] [0319065637] +01:57:30 [ 11] [ 6] [153586] +01:57:30 [ 70] [ 3] [301] +01:57:30 ============================================================================ +01:57:30 + + +waiting on router queue for slot.... +01:57:30 Sending to : +01:57:30 ============================================================================ +01:57:30 ============================================================================ +01:57:30 Slot Id : <166> +01:57:30 Transaction Type : RESPONSE +01:57:30 Received From : +01:57:30 ============================================================================ +01:57:30 FNo. Len. Field Value +01:57:30 ============================================================================ +01:57:30 [ 1] [ 4] [0810] +01:57:30 [ 7] [ 10] [0319065637] +01:57:30 [ 11] [ 6] [153586] +01:57:30 [ 39] [ 2] [00] +01:57:30 [ 70] [ 3] [301] +01:57:30 ============================================================================ +01:57:30 Calculate Source COMM Id = 2 +01:57:30 ============================================================================ +01:57:30 + + +waiting on router queue for slot.... +01:57:41 ============================================================================ +01:57:41 Slot Id : <130> +01:57:41 Transaction Type : REQUEST +01:57:41 Received From : +01:57:41 ============================================================================ +01:57:41 FNo. Len. Field Value +01:57:41 ============================================================================ +01:57:41 [ 1] [ 4] [0800] +01:57:41 [ 7] [ 10] [0319065648] +01:57:41 [ 11] [ 6] [153587] +01:57:41 [ 70] [ 3] [301] +01:57:41 ============================================================================ +01:57:41 + + +waiting on router queue for slot.... +01:57:41 Sending to : +01:57:41 ============================================================================ +01:57:41 ============================================================================ +01:57:41 Slot Id : <130> +01:57:41 Transaction Type : RESPONSE +01:57:41 Received From : +01:57:41 ============================================================================ +01:57:41 FNo. Len. Field Value +01:57:41 ============================================================================ +01:57:41 [ 1] [ 4] [0810] +01:57:41 [ 7] [ 10] [0319065648] +01:57:41 [ 11] [ 6] [153587] +01:57:41 [ 39] [ 2] [00] +01:57:41 [ 70] [ 3] [301] +01:57:41 ============================================================================ +01:57:41 Calculate Source COMM Id = 2 +01:57:41 ============================================================================ +01:57:41 + + +waiting on router queue for slot.... +01:57:56 ============================================================================ +01:57:56 Slot Id : <133> +01:57:56 Transaction Type : REQUEST +01:57:56 Received From : +01:57:56 ============================================================================ +01:57:56 FNo. Len. Field Value +01:57:56 ============================================================================ +01:57:56 [ 1] [ 4] [0800] +01:57:56 [ 7] [ 10] [0319065703] +01:57:56 [ 11] [ 6] [153588] +01:57:56 [ 70] [ 3] [301] +01:57:56 ============================================================================ +01:57:56 + + +waiting on router queue for slot.... +01:57:56 Sending to : +01:57:56 ============================================================================ +01:57:56 ============================================================================ +01:57:56 Slot Id : <133> +01:57:56 Transaction Type : RESPONSE +01:57:56 Received From : +01:57:56 ============================================================================ +01:57:56 FNo. Len. Field Value +01:57:56 ============================================================================ +01:57:56 [ 1] [ 4] [0810] +01:57:56 [ 7] [ 10] [0319065703] +01:57:56 [ 11] [ 6] [153588] +01:57:56 [ 39] [ 2] [00] +01:57:56 [ 70] [ 3] [301] +01:57:56 ============================================================================ +01:57:56 Calculate Source COMM Id = 2 +01:57:56 ============================================================================ +01:57:56 + + +waiting on router queue for slot.... +01:57:57 ============================================================================ +01:57:57 Slot Id : <142> +01:57:57 Transaction Type : REQUEST +01:57:57 Received From : +01:57:57 ============================================================================ +01:57:57 FNo. Len. Field Value +01:57:57 ============================================================================ +01:57:57 [ 1] [ 4] [0800] +01:57:57 [ 7] [ 10] [0320090944] +01:57:57 [ 11] [ 6] [020944] +01:57:57 [ 37] [ 12] [57902020944] +01:57:57 [ 70] [ 3] [301] +01:57:57 ============================================================================ +01:57:57 + + +waiting on router queue for slot.... +01:57:57 Sending to : +01:57:57 ============================================================================ +01:57:57 ============================================================================ +01:57:57 Slot Id : <142> +01:57:57 Transaction Type : RESPONSE +01:57:57 Received From : +01:57:57 ============================================================================ +01:57:57 FNo. Len. Field Value +01:57:57 ============================================================================ +01:57:57 [ 1] [ 4] [0810] +01:57:57 [ 7] [ 10] [0320090944] +01:57:57 [ 11] [ 6] [020944] +01:57:57 [ 37] [ 12] [579020209440] +01:57:57 [ 39] [ 2] [00] +01:57:57 [ 70] [ 3] [810] +01:57:57 ============================================================================ +01:57:57 Calculate Source COMM Id = 6 +01:57:57 ============================================================================ +01:57:57 + + +waiting on router queue for slot.... +01:58:06 ============================================================================ +01:58:06 Slot Id : <153> +01:58:06 Transaction Type : REQUEST +01:58:06 Received From : +01:58:06 ============================================================================ +01:58:06 FNo. Len. Field Value +01:58:06 ============================================================================ +01:58:06 [ 1] [ 4] [0800] +01:58:06 [ 7] [ 10] [0319065714] +01:58:06 [ 11] [ 6] [153589] +01:58:06 [ 70] [ 3] [301] +01:58:06 ============================================================================ +01:58:06 + + +waiting on router queue for slot.... +01:58:06 Sending to : +01:58:06 ============================================================================ +01:58:06 ============================================================================ +01:58:06 Slot Id : <153> +01:58:06 Transaction Type : RESPONSE +01:58:06 Received From : +01:58:06 ============================================================================ +01:58:06 FNo. Len. Field Value +01:58:06 ============================================================================ +01:58:06 [ 1] [ 4] [0810] +01:58:06 [ 7] [ 10] [0319065714] +01:58:06 [ 11] [ 6] [153589] +01:58:06 [ 39] [ 2] [00] +01:58:06 [ 70] [ 3] [301] +01:58:06 ============================================================================ +01:58:06 Calculate Source COMM Id = 2 +01:58:06 ============================================================================ +01:58:06 + + +waiting on router queue for slot.... +01:58:17 ============================================================================ +01:58:17 Slot Id : <110> +01:58:17 Transaction Type : REQUEST +01:58:17 Received From : +01:58:17 ============================================================================ +01:58:17 FNo. Len. Field Value +01:58:17 ============================================================================ +01:58:17 [ 1] [ 4] [0800] +01:58:17 [ 7] [ 10] [0319065724] +01:58:17 [ 11] [ 6] [153590] +01:58:17 [ 70] [ 3] [301] +01:58:17 ============================================================================ +01:58:17 + + +waiting on router queue for slot.... +01:58:17 Sending to : +01:58:17 ============================================================================ +01:58:17 ============================================================================ +01:58:17 Slot Id : <110> +01:58:17 Transaction Type : RESPONSE +01:58:17 Received From : +01:58:17 ============================================================================ +01:58:17 FNo. Len. Field Value +01:58:17 ============================================================================ +01:58:17 [ 1] [ 4] [0810] +01:58:17 [ 7] [ 10] [0319065724] +01:58:17 [ 11] [ 6] [153590] +01:58:17 [ 39] [ 2] [00] +01:58:17 [ 70] [ 3] [301] +01:58:17 ============================================================================ +01:58:17 Calculate Source COMM Id = 2 +01:58:17 ============================================================================ +01:58:17 + + +waiting on router queue for slot.... +01:58:23 ============================================================================ +01:58:23 Slot Id : <167> +01:58:23 Transaction Type : REQUEST +01:58:23 Received From : +01:58:23 ============================================================================ +01:58:23 FNo. Len. Field Value +01:58:23 ============================================================================ +01:58:23 [ 1] [ 4] [0800] +01:58:23 [ 2] [ 5] [02531] +01:58:23 [ 3] [ 6] [579018] +01:58:23 [ 7] [ 10] [0319185823] +01:58:23 [ 11] [ 6] [806526] +01:58:23 [ 15] [ 10] [0319185823] +01:58:23 [ 37] [ 11] [57901806526] +01:58:23 [ 70] [ 3] [001] +01:58:23 ============================================================================ +01:58:23 + + +waiting on router queue for slot.... +01:58:23 ============================================================================ +01:58:23 Slot Id : <167> +01:58:23 Transaction Type : RESPONSE +01:58:23 Received From : +01:58:23 ============================================================================ +01:58:23 FNo. Len. Field Value +01:58:23 ============================================================================ +01:58:23 [ 1] [ 4] [0810] +01:58:23 [ 7] [ 10] [0319185823] +01:58:23 [ 11] [ 6] [806526] +01:58:23 [ 15] [ 4] [0319] +01:58:23 [ 37] [ 12] [57901806526] +01:58:23 [ 39] [ 2] [00] +01:58:23 [ 70] [ 3] [001] +01:58:23 ============================================================================ +01:58:23 Sending to : +01:58:23 ============================================================================ +01:58:23 + + +waiting on router queue for slot.... +01:58:34 ============================================================================ +01:58:34 Slot Id : <137> +01:58:34 Transaction Type : REQUEST +01:58:34 Received From : +01:58:34 ============================================================================ +01:58:34 FNo. Len. Field Value +01:58:34 ============================================================================ +01:58:34 [ 1] [ 4] [0800] +01:58:34 [ 7] [ 10] [0319065739] +01:58:34 [ 11] [ 6] [153591] +01:58:34 [ 70] [ 3] [301] +01:58:34 ============================================================================ +01:58:34 + + +waiting on router queue for slot.... +01:58:34 Sending to : +01:58:34 ============================================================================ +01:58:34 ============================================================================ +01:58:34 Slot Id : <137> +01:58:34 Transaction Type : RESPONSE +01:58:34 Received From : +01:58:34 ============================================================================ +01:58:34 FNo. Len. Field Value +01:58:34 ============================================================================ +01:58:34 [ 1] [ 4] [0810] +01:58:34 [ 7] [ 10] [0319065739] +01:58:34 [ 11] [ 6] [153591] +01:58:34 [ 39] [ 2] [00] +01:58:34 [ 70] [ 3] [301] +01:58:34 ============================================================================ +01:58:34 Calculate Source COMM Id = 2 +01:58:34 ============================================================================ +01:58:34 + + +waiting on router queue for slot.... +01:58:49 ============================================================================ +01:58:49 Slot Id : <128> +01:58:49 Transaction Type : REQUEST +01:58:49 Received From : +01:58:49 ============================================================================ +01:58:49 FNo. Len. Field Value +01:58:49 ============================================================================ +01:58:49 [ 1] [ 4] [0800] +01:58:49 [ 7] [ 10] [0319065755] +01:58:49 [ 11] [ 6] [153592] +01:58:49 [ 70] [ 3] [301] +01:58:49 ============================================================================ +01:58:49 + + +waiting on router queue for slot.... +01:58:49 Sending to : +01:58:49 ============================================================================ +01:58:49 ============================================================================ +01:58:49 Slot Id : <128> +01:58:49 Transaction Type : RESPONSE +01:58:49 Received From : +01:58:49 ============================================================================ +01:58:49 FNo. Len. Field Value +01:58:49 ============================================================================ +01:58:49 [ 1] [ 4] [0810] +01:58:49 [ 7] [ 10] [0319065755] +01:58:49 [ 11] [ 6] [153592] +01:58:49 [ 39] [ 2] [00] +01:58:49 [ 70] [ 3] [301] +01:58:49 ============================================================================ +01:58:49 Calculate Source COMM Id = 2 +01:58:49 ============================================================================ +01:58:49 + + +waiting on router queue for slot.... +01:59:02 ============================================================================ +01:59:02 Slot Id : <146> +01:59:02 Transaction Type : REQUEST +01:59:02 Received From : +01:59:02 ============================================================================ +01:59:02 FNo. Len. Field Value +01:59:02 ============================================================================ +01:59:02 [ 1] [ 4] [0800] +01:59:02 [ 7] [ 10] [0320091049] +01:59:02 [ 11] [ 6] [021049] +01:59:02 [ 37] [ 12] [57902021049] +01:59:02 [ 70] [ 3] [301] +01:59:02 ============================================================================ +01:59:02 + + +waiting on router queue for slot.... +01:59:02 Sending to : +01:59:02 ============================================================================ +01:59:02 ============================================================================ +01:59:02 Slot Id : <146> +01:59:02 Transaction Type : RESPONSE +01:59:02 Received From : +01:59:02 ============================================================================ +01:59:02 FNo. Len. Field Value +01:59:02 ============================================================================ +01:59:02 [ 1] [ 4] [0810] +01:59:02 [ 7] [ 10] [0320091049] +01:59:02 [ 11] [ 6] [021049] +01:59:02 [ 37] [ 12] [579020210490] +01:59:02 [ 39] [ 2] [00] +01:59:02 [ 70] [ 3] [810] +01:59:02 ============================================================================ +01:59:02 Calculate Source COMM Id = 6 +01:59:02 ============================================================================ +01:59:02 + + +waiting on router queue for slot.... +01:59:04 ============================================================================ +01:59:04 Slot Id : <159> +01:59:04 Transaction Type : REQUEST +01:59:04 Received From : +01:59:04 ============================================================================ +01:59:04 FNo. Len. Field Value +01:59:04 ============================================================================ +01:59:04 [ 1] [ 4] [0800] +01:59:04 [ 7] [ 10] [0319065811] +01:59:04 [ 11] [ 6] [153593] +01:59:04 [ 70] [ 3] [301] +01:59:04 ============================================================================ +01:59:04 + + +waiting on router queue for slot.... +01:59:04 Sending to : +01:59:04 ============================================================================ +01:59:04 ============================================================================ +01:59:04 Slot Id : <159> +01:59:04 Transaction Type : RESPONSE +01:59:04 Received From : +01:59:04 ============================================================================ +01:59:04 FNo. Len. Field Value +01:59:04 ============================================================================ +01:59:04 [ 1] [ 4] [0810] +01:59:04 [ 7] [ 10] [0319065811] +01:59:04 [ 11] [ 6] [153593] +01:59:04 [ 39] [ 2] [00] +01:59:04 [ 70] [ 3] [301] +01:59:04 ============================================================================ +01:59:04 Calculate Source COMM Id = 2 +01:59:04 ============================================================================ +01:59:04 + + +waiting on router queue for slot.... +01:59:15 ============================================================================ +01:59:15 Slot Id : <175> +01:59:15 Transaction Type : REQUEST +01:59:15 Received From : +01:59:15 ============================================================================ +01:59:15 FNo. Len. Field Value +01:59:15 ============================================================================ +01:59:15 [ 1] [ 4] [0800] +01:59:15 [ 7] [ 10] [0319065822] +01:59:15 [ 11] [ 6] [153594] +01:59:15 [ 70] [ 3] [301] +01:59:15 ============================================================================ +01:59:15 + + +waiting on router queue for slot.... +01:59:15 Sending to : +01:59:15 ============================================================================ +01:59:15 ============================================================================ +01:59:15 Slot Id : <175> +01:59:15 Transaction Type : RESPONSE +01:59:15 Received From : +01:59:15 ============================================================================ +01:59:15 FNo. Len. Field Value +01:59:15 ============================================================================ +01:59:15 [ 1] [ 4] [0810] +01:59:15 [ 7] [ 10] [0319065822] +01:59:15 [ 11] [ 6] [153594] +01:59:15 [ 39] [ 2] [00] +01:59:15 [ 70] [ 3] [301] +01:59:15 ============================================================================ +01:59:15 Calculate Source COMM Id = 2 +01:59:15 ============================================================================ +01:59:15 + + +waiting on router queue for slot.... +01:59:25 ============================================================================ +01:59:25 Slot Id : <170> +01:59:25 Transaction Type : REQUEST +01:59:25 Received From : +01:59:25 ============================================================================ +01:59:25 FNo. Len. Field Value +01:59:25 ============================================================================ +01:59:25 [ 1] [ 4] [0800] +01:59:25 [ 2] [ 5] [02531] +01:59:25 [ 3] [ 6] [579018] +01:59:25 [ 7] [ 10] [0319185925] +01:59:25 [ 11] [ 6] [806527] +01:59:25 [ 15] [ 10] [0319185925] +01:59:25 [ 37] [ 11] [57901806527] +01:59:25 [ 70] [ 3] [001] +01:59:25 ============================================================================ +01:59:25 + + +waiting on router queue for slot.... +01:59:25 ============================================================================ +01:59:25 Slot Id : <170> +01:59:25 Transaction Type : RESPONSE +01:59:25 Received From : +01:59:25 ============================================================================ +01:59:25 FNo. Len. Field Value +01:59:25 ============================================================================ +01:59:25 [ 1] [ 4] [0810] +01:59:25 [ 7] [ 10] [0319185925] +01:59:25 [ 11] [ 6] [806527] +01:59:25 [ 15] [ 4] [0319] +01:59:25 [ 37] [ 12] [57901806527] +01:59:25 [ 39] [ 2] [00] +01:59:25 [ 70] [ 3] [001] +01:59:25 ============================================================================ +01:59:25 Sending to : +01:59:25 ============================================================================ +01:59:25 + + +waiting on router queue for slot.... +01:59:30 ============================================================================ +01:59:30 Slot Id : <141> +01:59:30 Transaction Type : REQUEST +01:59:30 Received From : +01:59:30 ============================================================================ +01:59:30 FNo. Len. Field Value +01:59:30 ============================================================================ +01:59:30 [ 1] [ 4] [0800] +01:59:30 [ 7] [ 10] [0319065837] +01:59:30 [ 11] [ 6] [153595] +01:59:30 [ 70] [ 3] [301] +01:59:30 ============================================================================ +01:59:30 + + +waiting on router queue for slot.... +01:59:30 Sending to : +01:59:30 ============================================================================ +01:59:30 ============================================================================ +01:59:30 Slot Id : <141> +01:59:30 Transaction Type : RESPONSE +01:59:30 Received From : +01:59:30 ============================================================================ +01:59:30 FNo. Len. Field Value +01:59:30 ============================================================================ +01:59:30 [ 1] [ 4] [0810] +01:59:30 [ 7] [ 10] [0319065837] +01:59:30 [ 11] [ 6] [153595] +01:59:30 [ 39] [ 2] [00] +01:59:30 [ 70] [ 3] [301] +01:59:30 ============================================================================ +01:59:30 Calculate Source COMM Id = 2 +01:59:30 ============================================================================ +01:59:30 + + +waiting on router queue for slot.... +01:59:41 ============================================================================ +01:59:41 Slot Id : <151> +01:59:41 Transaction Type : REQUEST +01:59:41 Received From : +01:59:41 ============================================================================ +01:59:41 FNo. Len. Field Value +01:59:41 ============================================================================ +01:59:41 [ 1] [ 4] [0800] +01:59:41 [ 7] [ 10] [0319065848] +01:59:41 [ 11] [ 6] [153596] +01:59:41 [ 70] [ 3] [301] +01:59:41 ============================================================================ +01:59:41 + + +waiting on router queue for slot.... +01:59:41 Sending to : +01:59:41 ============================================================================ +01:59:41 ============================================================================ +01:59:41 Slot Id : <151> +01:59:41 Transaction Type : RESPONSE +01:59:41 Received From : +01:59:41 ============================================================================ +01:59:41 FNo. Len. Field Value +01:59:41 ============================================================================ +01:59:41 [ 1] [ 4] [0810] +01:59:41 [ 7] [ 10] [0319065848] +01:59:41 [ 11] [ 6] [153596] +01:59:41 [ 39] [ 2] [00] +01:59:41 [ 70] [ 3] [301] +01:59:41 ============================================================================ +01:59:41 Calculate Source COMM Id = 2 +01:59:41 ============================================================================ +01:59:41 + + +waiting on router queue for slot.... +01:59:56 ============================================================================ +01:59:56 Slot Id : <164> +01:59:56 Transaction Type : REQUEST +01:59:56 Received From : +01:59:56 ============================================================================ +01:59:56 FNo. Len. Field Value +01:59:56 ============================================================================ +01:59:56 [ 1] [ 4] [0800] +01:59:56 [ 7] [ 10] [0319190742] +01:59:56 [ 11] [ 6] [058974] +01:59:56 [ 37] [ 12] [57902058974] +01:59:56 [ 70] [ 3] [301] +01:59:56 ============================================================================ +01:59:56 + + +waiting on router queue for slot.... +01:59:56 Sending to : +01:59:56 ============================================================================ +01:59:56 ============================================================================ +01:59:56 Slot Id : <164> +01:59:56 Transaction Type : RESPONSE +01:59:56 Received From : +01:59:56 ============================================================================ +01:59:56 FNo. Len. Field Value +01:59:56 ============================================================================ +01:59:56 [ 1] [ 4] [0810] +01:59:56 [ 7] [ 10] [0319190742] +01:59:56 [ 11] [ 6] [058974] +01:59:56 [ 37] [ 12] [579020589740] +01:59:56 [ 39] [ 2] [00] +01:59:56 [ 70] [ 3] [810] +01:59:56 ============================================================================ +01:59:56 Calculate Source COMM Id = 1 +01:59:56 ============================================================================ +01:59:56 + + +waiting on router queue for slot.... +01:59:56 ============================================================================ +01:59:56 Slot Id : <157> +01:59:56 Transaction Type : REQUEST +01:59:56 Received From : +01:59:56 ============================================================================ +01:59:56 FNo. Len. Field Value +01:59:56 ============================================================================ +01:59:56 [ 1] [ 4] [0800] +01:59:56 [ 7] [ 10] [0319065903] +01:59:56 [ 11] [ 6] [153597] +01:59:56 [ 70] [ 3] [301] +01:59:56 ============================================================================ +01:59:56 + + +waiting on router queue for slot.... +01:59:56 Sending to : +01:59:56 ============================================================================ +01:59:56 ============================================================================ +01:59:56 Slot Id : <157> +01:59:56 Transaction Type : RESPONSE +01:59:56 Received From : +01:59:56 ============================================================================ +01:59:56 FNo. Len. Field Value +01:59:56 ============================================================================ +01:59:56 [ 1] [ 4] [0810] +01:59:56 [ 7] [ 10] [0319065903] +01:59:56 [ 11] [ 6] [153597] +01:59:56 [ 39] [ 2] [00] +01:59:56 [ 70] [ 3] [301] +01:59:56 ============================================================================ +01:59:56 Calculate Source COMM Id = 2 +01:59:56 ============================================================================ +01:59:56 + + +waiting on router queue for slot.... +02:00:06 ============================================================================ +02:00:06 Slot Id : <172> +02:00:06 Transaction Type : REQUEST +02:00:06 Received From : +02:00:06 ============================================================================ +02:00:06 FNo. Len. Field Value +02:00:06 ============================================================================ +02:00:06 [ 1] [ 4] [0800] +02:00:06 [ 7] [ 10] [0319065914] +02:00:06 [ 11] [ 6] [153598] +02:00:06 [ 70] [ 3] [301] +02:00:06 ============================================================================ +02:00:06 + + +waiting on router queue for slot.... +02:00:06 Sending to : +02:00:06 ============================================================================ +02:00:06 ============================================================================ +02:00:06 Slot Id : <172> +02:00:06 Transaction Type : RESPONSE +02:00:06 Received From : +02:00:06 ============================================================================ +02:00:06 FNo. Len. Field Value +02:00:06 ============================================================================ +02:00:06 [ 1] [ 4] [0810] +02:00:06 [ 7] [ 10] [0319065914] +02:00:06 [ 11] [ 6] [153598] +02:00:06 [ 39] [ 2] [00] +02:00:06 [ 70] [ 3] [301] +02:00:06 ============================================================================ +02:00:06 Calculate Source COMM Id = 2 +02:00:06 ============================================================================ +02:00:06 + + +waiting on router queue for slot.... +02:00:07 ============================================================================ +02:00:07 Slot Id : <148> +02:00:07 Transaction Type : REQUEST +02:00:07 Received From : +02:00:07 ============================================================================ +02:00:07 FNo. Len. Field Value +02:00:07 ============================================================================ +02:00:07 [ 1] [ 4] [0800] +02:00:07 [ 7] [ 10] [0320091154] +02:00:07 [ 11] [ 6] [021154] +02:00:07 [ 37] [ 12] [57902021154] +02:00:07 [ 70] [ 3] [301] +02:00:07 ============================================================================ +02:00:07 + + +waiting on router queue for slot.... +02:00:07 Sending to : +02:00:07 ============================================================================ +02:00:07 ============================================================================ +02:00:07 Slot Id : <148> +02:00:07 Transaction Type : RESPONSE +02:00:07 Received From : +02:00:07 ============================================================================ +02:00:07 FNo. Len. Field Value +02:00:07 ============================================================================ +02:00:07 [ 1] [ 4] [0810] +02:00:07 [ 7] [ 10] [0320091154] +02:00:07 [ 11] [ 6] [021154] +02:00:07 [ 37] [ 12] [579020211540] +02:00:07 [ 39] [ 2] [00] +02:00:07 [ 70] [ 3] [810] +02:00:07 ============================================================================ +02:00:07 Calculate Source COMM Id = 6 +02:00:07 ============================================================================ +02:00:07 + + +waiting on router queue for slot.... +02:00:17 ============================================================================ +02:00:17 Slot Id : <182> +02:00:17 Transaction Type : REQUEST +02:00:17 Received From : +02:00:17 ============================================================================ +02:00:17 FNo. Len. Field Value +02:00:17 ============================================================================ +02:00:17 [ 1] [ 4] [0800] +02:00:17 [ 7] [ 10] [0319065925] +02:00:17 [ 11] [ 6] [153599] +02:00:17 [ 70] [ 3] [301] +02:00:17 ============================================================================ +02:00:17 + + +waiting on router queue for slot.... +02:00:17 Sending to : +02:00:17 ============================================================================ +02:00:17 ============================================================================ +02:00:17 Slot Id : <182> +02:00:17 Transaction Type : RESPONSE +02:00:17 Received From : +02:00:17 ============================================================================ +02:00:17 FNo. Len. Field Value +02:00:17 ============================================================================ +02:00:17 [ 1] [ 4] [0810] +02:00:17 [ 7] [ 10] [0319065925] +02:00:17 [ 11] [ 6] [153599] +02:00:17 [ 39] [ 2] [00] +02:00:17 [ 70] [ 3] [301] +02:00:17 ============================================================================ +02:00:17 Calculate Source COMM Id = 2 +02:00:17 ============================================================================ +02:00:17 + + +waiting on router queue for slot.... +02:00:27 ============================================================================ +02:00:27 Slot Id : <186> +02:00:27 Transaction Type : REQUEST +02:00:27 Received From : +02:00:27 ============================================================================ +02:00:27 FNo. Len. Field Value +02:00:27 ============================================================================ +02:00:27 [ 1] [ 4] [0800] +02:00:27 [ 2] [ 5] [02531] +02:00:27 [ 3] [ 6] [579028] +02:00:27 [ 7] [ 10] [0319190027] +02:00:27 [ 11] [ 6] [806528] +02:00:27 [ 15] [ 10] [0319190027] +02:00:27 [ 37] [ 11] [57902806528] +02:00:27 [ 70] [ 3] [001] +02:00:27 ============================================================================ +02:00:27 + + +waiting on router queue for slot.... +02:00:27 ============================================================================ +02:00:27 Slot Id : <186> +02:00:27 Transaction Type : RESPONSE +02:00:27 Received From : +02:00:27 ============================================================================ +02:00:27 FNo. Len. Field Value +02:00:27 ============================================================================ +02:00:27 [ 1] [ 4] [0810] +02:00:27 [ 7] [ 10] [0319190027] +02:00:27 [ 11] [ 6] [806528] +02:00:27 [ 15] [ 4] [0319] +02:00:27 [ 37] [ 12] [57902806528] +02:00:27 [ 39] [ 2] [00] +02:00:27 [ 70] [ 3] [001] +02:00:27 ============================================================================ +02:00:27 Sending to : +02:00:27 ============================================================================ +02:00:27 + + +waiting on router queue for slot.... +02:00:34 ============================================================================ +02:00:34 Slot Id : <126> +02:00:34 Transaction Type : REQUEST +02:00:34 Received From : +02:00:34 ============================================================================ +02:00:34 FNo. Len. Field Value +02:00:34 ============================================================================ +02:00:34 [ 1] [ 4] [0800] +02:00:34 [ 7] [ 10] [0319065941] +02:00:34 [ 11] [ 6] [153600] +02:00:34 [ 70] [ 3] [301] +02:00:34 ============================================================================ +02:00:34 + + +waiting on router queue for slot.... +02:00:34 Sending to : +02:00:34 ============================================================================ +02:00:34 ============================================================================ +02:00:34 Slot Id : <126> +02:00:34 Transaction Type : RESPONSE +02:00:34 Received From : +02:00:34 ============================================================================ +02:00:34 FNo. Len. Field Value +02:00:34 ============================================================================ +02:00:34 [ 1] [ 4] [0810] +02:00:34 [ 7] [ 10] [0319065941] +02:00:34 [ 11] [ 6] [153600] +02:00:34 [ 39] [ 2] [00] +02:00:34 [ 70] [ 3] [301] +02:00:34 ============================================================================ +02:00:34 Calculate Source COMM Id = 2 +02:00:34 ============================================================================ +02:00:34 + + +waiting on router queue for slot.... +02:00:44 ============================================================================ +02:00:44 Slot Id : <171> +02:00:44 Transaction Type : REQUEST +02:00:44 Received From : +02:00:44 ============================================================================ +02:00:44 FNo. Len. Field Value +02:00:44 ============================================================================ +02:00:44 [ 1] [ 4] [0800] +02:00:44 [ 7] [ 10] [0319065951] +02:00:44 [ 11] [ 6] [153601] +02:00:44 [ 70] [ 3] [301] +02:00:44 ============================================================================ +02:00:44 + + +waiting on router queue for slot.... +02:00:44 Sending to : +02:00:44 ============================================================================ +02:00:44 ============================================================================ +02:00:44 Slot Id : <171> +02:00:44 Transaction Type : RESPONSE +02:00:44 Received From : +02:00:44 ============================================================================ +02:00:44 FNo. Len. Field Value +02:00:44 ============================================================================ +02:00:44 [ 1] [ 4] [0810] +02:00:44 [ 7] [ 10] [0319065951] +02:00:44 [ 11] [ 6] [153601] +02:00:44 [ 39] [ 2] [00] +02:00:44 [ 70] [ 3] [301] +02:00:44 ============================================================================ +02:00:44 Calculate Source COMM Id = 2 +02:00:44 ============================================================================ +02:00:44 + + +waiting on router queue for slot.... +02:01:01 ============================================================================ +02:01:01 Slot Id : <119> +02:01:01 Transaction Type : REQUEST +02:01:01 Received From : +02:01:01 ============================================================================ +02:01:01 FNo. Len. Field Value +02:01:01 ============================================================================ +02:01:01 [ 1] [ 4] [0800] +02:01:01 [ 7] [ 10] [0319070007] +02:01:01 [ 11] [ 6] [153602] +02:01:01 [ 70] [ 3] [301] +02:01:01 ============================================================================ +02:01:01 + + +waiting on router queue for slot.... +02:01:01 Sending to : +02:01:01 ============================================================================ +02:01:01 ============================================================================ +02:01:01 Slot Id : <119> +02:01:01 Transaction Type : RESPONSE +02:01:01 Received From : +02:01:01 ============================================================================ +02:01:01 FNo. Len. Field Value +02:01:01 ============================================================================ +02:01:01 [ 1] [ 4] [0810] +02:01:01 [ 7] [ 10] [0319070007] +02:01:01 [ 11] [ 6] [153602] +02:01:01 [ 39] [ 2] [00] +02:01:01 [ 70] [ 3] [301] +02:01:01 ============================================================================ +02:01:01 Calculate Source COMM Id = 2 +02:01:01 ============================================================================ +02:01:01 + + +waiting on router queue for slot.... +02:01:12 ============================================================================ +02:01:12 Slot Id : <139> +02:01:12 Transaction Type : REQUEST +02:01:12 Received From : +02:01:12 ============================================================================ +02:01:12 FNo. Len. Field Value +02:01:12 ============================================================================ +02:01:12 [ 1] [ 4] [0800] +02:01:12 [ 7] [ 10] [0320091300] +02:01:12 [ 11] [ 6] [021300] +02:01:12 [ 37] [ 12] [57902021300] +02:01:12 [ 70] [ 3] [301] +02:01:12 ============================================================================ +02:01:12 + + +waiting on router queue for slot.... +02:01:12 Sending to : +02:01:12 ============================================================================ +02:01:12 ============================================================================ +02:01:12 Slot Id : <139> +02:01:12 Transaction Type : RESPONSE +02:01:12 Received From : +02:01:12 ============================================================================ +02:01:12 FNo. Len. Field Value +02:01:12 ============================================================================ +02:01:12 [ 1] [ 4] [0810] +02:01:12 [ 7] [ 10] [0320091300] +02:01:12 [ 11] [ 6] [021300] +02:01:12 [ 37] [ 12] [579020213000] +02:01:12 [ 39] [ 2] [00] +02:01:12 [ 70] [ 3] [810] +02:01:12 ============================================================================ +02:01:12 Calculate Source COMM Id = 6 +02:01:12 ============================================================================ +02:01:12 + + +waiting on router queue for slot.... +02:01:17 ============================================================================ +02:01:17 Slot Id : <156> +02:01:17 Transaction Type : REQUEST +02:01:17 Received From : +02:01:17 ============================================================================ +02:01:17 FNo. Len. Field Value +02:01:17 ============================================================================ +02:01:17 [ 1] [ 4] [0800] +02:01:17 [ 7] [ 10] [0319070024] +02:01:17 [ 11] [ 6] [153603] +02:01:17 [ 70] [ 3] [301] +02:01:17 ============================================================================ +02:01:17 + + +waiting on router queue for slot.... +02:01:17 Sending to : +02:01:17 ============================================================================ +02:01:17 ============================================================================ +02:01:17 Slot Id : <156> +02:01:17 Transaction Type : RESPONSE +02:01:17 Received From : +02:01:17 ============================================================================ +02:01:17 FNo. Len. Field Value +02:01:17 ============================================================================ +02:01:17 [ 1] [ 4] [0810] +02:01:17 [ 7] [ 10] [0319070024] +02:01:17 [ 11] [ 6] [153603] +02:01:17 [ 39] [ 2] [00] +02:01:17 [ 70] [ 3] [301] +02:01:17 ============================================================================ +02:01:17 Calculate Source COMM Id = 2 +02:01:17 ============================================================================ +02:01:17 + + +waiting on router queue for slot.... +02:01:21 ============================================================================ +02:01:21 Slot Id : <176> +02:01:21 Transaction Type : REQUEST +02:01:21 Received From : +02:01:21 ============================================================================ +02:01:21 FNo. Len. Field Value +02:01:21 ============================================================================ +02:01:21 [ 1] [ 4] [0800] +02:01:21 [ 7] [ 10] [0319185912] +02:01:21 [ 11] [ 6] [091435] +02:01:21 [ 37] [ 12] [57901091435] +02:01:21 [ 70] [ 3] [301] +02:01:21 ============================================================================ +02:01:21 + + +waiting on router queue for slot.... +02:01:21 Sending to : +02:01:21 ============================================================================ +02:01:21 ============================================================================ +02:01:21 Slot Id : <176> +02:01:21 Transaction Type : RESPONSE +02:01:21 Received From : +02:01:21 ============================================================================ +02:01:21 FNo. Len. Field Value +02:01:21 ============================================================================ +02:01:21 [ 1] [ 4] [0810] +02:01:21 [ 7] [ 10] [0319185912] +02:01:21 [ 11] [ 6] [091435] +02:01:21 [ 37] [ 12] [579010914350] +02:01:21 [ 39] [ 2] [00] +02:01:21 [ 70] [ 3] [810] +02:01:21 ============================================================================ +02:01:21 Calculate Source COMM Id = 4 +02:01:21 ============================================================================ +02:01:21 + + +waiting on router queue for slot.... +02:01:28 ============================================================================ +02:01:28 Slot Id : <202> +02:01:28 Transaction Type : REQUEST +02:01:28 Received From : +02:01:28 ============================================================================ +02:01:28 FNo. Len. Field Value +02:01:28 ============================================================================ +02:01:28 [ 1] [ 4] [0800] +02:01:28 [ 7] [ 10] [0319070035] +02:01:28 [ 11] [ 6] [153604] +02:01:28 [ 70] [ 3] [301] +02:01:28 ============================================================================ +02:01:28 + + +waiting on router queue for slot.... +02:01:28 Sending to : +02:01:28 ============================================================================ +02:01:28 ============================================================================ +02:01:28 Slot Id : <202> +02:01:28 Transaction Type : RESPONSE +02:01:28 Received From : +02:01:28 ============================================================================ +02:01:28 FNo. Len. Field Value +02:01:28 ============================================================================ +02:01:28 [ 1] [ 4] [0810] +02:01:28 [ 7] [ 10] [0319070035] +02:01:28 [ 11] [ 6] [153604] +02:01:28 [ 39] [ 2] [00] +02:01:28 [ 70] [ 3] [301] +02:01:28 ============================================================================ +02:01:28 Calculate Source COMM Id = 2 +02:01:28 ============================================================================ +02:01:28 + + +waiting on router queue for slot.... +02:01:29 ============================================================================ +02:01:29 Slot Id : <187> +02:01:29 Transaction Type : REQUEST +02:01:29 Received From : +02:01:29 ============================================================================ +02:01:29 FNo. Len. Field Value +02:01:29 ============================================================================ +02:01:29 [ 1] [ 4] [0800] +02:01:29 [ 2] [ 5] [02531] +02:01:29 [ 3] [ 6] [579028] +02:01:29 [ 7] [ 10] [0319190129] +02:01:29 [ 11] [ 6] [806529] +02:01:29 [ 15] [ 10] [0319190129] +02:01:29 [ 37] [ 11] [57902806529] +02:01:29 [ 70] [ 3] [001] +02:01:29 ============================================================================ +02:01:29 + + +waiting on router queue for slot.... +02:01:29 ============================================================================ +02:01:29 Slot Id : <187> +02:01:29 Transaction Type : RESPONSE +02:01:29 Received From : +02:01:29 ============================================================================ +02:01:29 FNo. Len. Field Value +02:01:29 ============================================================================ +02:01:29 [ 1] [ 4] [0810] +02:01:29 [ 7] [ 10] [0319190129] +02:01:29 [ 11] [ 6] [806529] +02:01:29 [ 15] [ 4] [0319] +02:01:29 [ 37] [ 12] [57902806529] +02:01:29 [ 39] [ 2] [00] +02:01:29 [ 70] [ 3] [001] +02:01:29 ============================================================================ +02:01:29 Sending to : +02:01:29 ============================================================================ +02:01:29 + + +waiting on router queue for slot.... +02:01:43 ============================================================================ +02:01:43 Slot Id : <163> +02:01:43 Transaction Type : REQUEST +02:01:43 Received From : +02:01:43 ============================================================================ +02:01:43 FNo. Len. Field Value +02:01:43 ============================================================================ +02:01:43 [ 1] [ 4] [0800] +02:01:43 [ 7] [ 10] [0319070051] +02:01:43 [ 11] [ 6] [153605] +02:01:43 [ 70] [ 3] [301] +02:01:43 ============================================================================ +02:01:43 + + +waiting on router queue for slot.... +02:01:43 Sending to : +02:01:43 ============================================================================ +02:01:43 ============================================================================ +02:01:43 Slot Id : <163> +02:01:43 Transaction Type : RESPONSE +02:01:43 Received From : +02:01:43 ============================================================================ +02:01:43 FNo. Len. Field Value +02:01:43 ============================================================================ +02:01:43 [ 1] [ 4] [0810] +02:01:43 [ 7] [ 10] [0319070051] +02:01:43 [ 11] [ 6] [153605] +02:01:43 [ 39] [ 2] [00] +02:01:43 [ 70] [ 3] [301] +02:01:43 ============================================================================ +02:01:43 Calculate Source COMM Id = 2 +02:01:43 ============================================================================ +02:01:43 + + +waiting on router queue for slot.... +02:01:55 ============================================================================ +02:01:55 Slot Id : <203> +02:01:55 Transaction Type : REQUEST +02:01:55 Received From : +02:01:55 ============================================================================ +02:01:55 FNo. Len. Field Value +02:01:55 ============================================================================ +02:01:55 [ 1] [ 4] [0800] +02:01:55 [ 7] [ 10] [0319070101] +02:01:55 [ 11] [ 6] [153606] +02:01:55 [ 70] [ 3] [301] +02:01:55 ============================================================================ +02:01:55 + + +waiting on router queue for slot.... +02:01:55 Sending to : +02:01:55 ============================================================================ +02:01:55 ============================================================================ +02:01:55 Slot Id : <203> +02:01:55 Transaction Type : RESPONSE +02:01:55 Received From : +02:01:55 ============================================================================ +02:01:55 FNo. Len. Field Value +02:01:55 ============================================================================ +02:01:55 [ 1] [ 4] [0810] +02:01:55 [ 7] [ 10] [0319070101] +02:01:55 [ 11] [ 6] [153606] +02:01:55 [ 39] [ 2] [00] +02:01:55 [ 70] [ 3] [301] +02:01:55 ============================================================================ +02:01:55 Calculate Source COMM Id = 2 +02:01:55 ============================================================================ +02:01:55 + + +waiting on router queue for slot.... +02:02:12 ============================================================================ +02:02:12 Slot Id : <160> +02:02:12 Transaction Type : REQUEST +02:02:12 Received From : +02:02:12 ============================================================================ +02:02:12 FNo. Len. Field Value +02:02:12 ============================================================================ +02:02:12 [ 1] [ 4] [0800] +02:02:12 [ 7] [ 10] [0319070119] +02:02:12 [ 11] [ 6] [153607] +02:02:12 [ 70] [ 3] [301] +02:02:12 ============================================================================ +02:02:12 + + +waiting on router queue for slot.... +02:02:12 Sending to : +02:02:12 ============================================================================ +02:02:12 ============================================================================ +02:02:12 Slot Id : <160> +02:02:12 Transaction Type : RESPONSE +02:02:12 Received From : +02:02:12 ============================================================================ +02:02:12 FNo. Len. Field Value +02:02:12 ============================================================================ +02:02:12 [ 1] [ 4] [0810] +02:02:12 [ 7] [ 10] [0319070119] +02:02:12 [ 11] [ 6] [153607] +02:02:12 [ 39] [ 2] [00] +02:02:12 [ 70] [ 3] [301] +02:02:12 ============================================================================ +02:02:12 Calculate Source COMM Id = 2 +02:02:12 ============================================================================ +02:02:12 + + +waiting on router queue for slot.... +02:02:17 ============================================================================ +02:02:17 Slot Id : <179> +02:02:17 Transaction Type : REQUEST +02:02:17 Received From : +02:02:17 ============================================================================ +02:02:17 FNo. Len. Field Value +02:02:17 ============================================================================ +02:02:17 [ 1] [ 4] [0800] +02:02:17 [ 7] [ 10] [0320091405] +02:02:17 [ 11] [ 6] [021405] +02:02:17 [ 37] [ 12] [57902021405] +02:02:17 [ 70] [ 3] [301] +02:02:17 ============================================================================ +02:02:17 + + +waiting on router queue for slot.... +02:02:17 Sending to : +02:02:17 ============================================================================ +02:02:17 ============================================================================ +02:02:17 Slot Id : <179> +02:02:17 Transaction Type : RESPONSE +02:02:17 Received From : +02:02:17 ============================================================================ +02:02:17 FNo. Len. Field Value +02:02:17 ============================================================================ +02:02:17 [ 1] [ 4] [0810] +02:02:17 [ 7] [ 10] [0320091405] +02:02:17 [ 11] [ 6] [021405] +02:02:17 [ 37] [ 12] [579020214050] +02:02:17 [ 39] [ 2] [00] +02:02:17 [ 70] [ 3] [810] +02:02:17 ============================================================================ +02:02:17 Calculate Source COMM Id = 6 +02:02:17 ============================================================================ +02:02:17 + + +waiting on router queue for slot.... +02:02:23 ============================================================================ +02:02:23 Slot Id : <192> +02:02:23 Transaction Type : REQUEST +02:02:23 Received From : +02:02:23 ============================================================================ +02:02:23 FNo. Len. Field Value +02:02:23 ============================================================================ +02:02:23 [ 1] [ 4] [0800] +02:02:23 [ 7] [ 10] [0319070130] +02:02:23 [ 11] [ 6] [153608] +02:02:23 [ 70] [ 3] [301] +02:02:23 ============================================================================ +02:02:23 + + +waiting on router queue for slot.... +02:02:23 Sending to : +02:02:23 ============================================================================ +02:02:23 ============================================================================ +02:02:23 Slot Id : <192> +02:02:23 Transaction Type : RESPONSE +02:02:23 Received From : +02:02:23 ============================================================================ +02:02:23 FNo. Len. Field Value +02:02:23 ============================================================================ +02:02:23 [ 1] [ 4] [0810] +02:02:23 [ 7] [ 10] [0319070130] +02:02:23 [ 11] [ 6] [153608] +02:02:23 [ 39] [ 2] [00] +02:02:23 [ 70] [ 3] [301] +02:02:23 ============================================================================ +02:02:23 Calculate Source COMM Id = 2 +02:02:23 ============================================================================ +02:02:23 + + +waiting on router queue for slot.... +02:02:31 ============================================================================ +02:02:31 Slot Id : <135> +02:02:31 Transaction Type : REQUEST +02:02:31 Received From : +02:02:31 ============================================================================ +02:02:31 FNo. Len. Field Value +02:02:31 ============================================================================ +02:02:31 [ 1] [ 4] [0800] +02:02:31 [ 2] [ 5] [02531] +02:02:31 [ 3] [ 6] [579028] +02:02:31 [ 7] [ 10] [0319190231] +02:02:31 [ 11] [ 6] [806530] +02:02:31 [ 15] [ 10] [0319190231] +02:02:31 [ 37] [ 11] [57902806530] +02:02:31 [ 70] [ 3] [001] +02:02:31 ============================================================================ +02:02:31 + + +waiting on router queue for slot.... +02:02:31 ============================================================================ +02:02:31 Slot Id : <135> +02:02:31 Transaction Type : RESPONSE +02:02:31 Received From : +02:02:31 ============================================================================ +02:02:31 FNo. Len. Field Value +02:02:31 ============================================================================ +02:02:31 [ 1] [ 4] [0810] +02:02:31 [ 7] [ 10] [0319190231] +02:02:31 [ 11] [ 6] [806530] +02:02:31 [ 15] [ 4] [0319] +02:02:31 [ 37] [ 12] [57902806530] +02:02:31 [ 39] [ 2] [00] +02:02:31 [ 70] [ 3] [001] +02:02:31 ============================================================================ +02:02:31 Sending to : +02:02:31 ============================================================================ +02:02:31 + + +waiting on router queue for slot.... +02:02:33 ============================================================================ +02:02:33 Slot Id : <144> +02:02:33 Transaction Type : REQUEST +02:02:33 Received From : +02:02:33 ============================================================================ +02:02:33 FNo. Len. Field Value +02:02:33 ============================================================================ +02:02:33 [ 1] [ 4] [0800] +02:02:33 [ 7] [ 10] [0319070141] +02:02:33 [ 11] [ 6] [153609] +02:02:33 [ 70] [ 3] [301] +02:02:33 ============================================================================ +02:02:33 + + +waiting on router queue for slot.... +02:02:33 Sending to : +02:02:33 ============================================================================ +02:02:33 ============================================================================ +02:02:33 Slot Id : <144> +02:02:33 Transaction Type : RESPONSE +02:02:33 Received From : +02:02:33 ============================================================================ +02:02:33 FNo. Len. Field Value +02:02:33 ============================================================================ +02:02:33 [ 1] [ 4] [0810] +02:02:33 [ 7] [ 10] [0319070141] +02:02:33 [ 11] [ 6] [153609] +02:02:33 [ 39] [ 2] [00] +02:02:33 [ 70] [ 3] [301] +02:02:33 ============================================================================ +02:02:33 Calculate Source COMM Id = 2 +02:02:33 ============================================================================ +02:02:33 + + +waiting on router queue for slot.... +02:02:44 ============================================================================ +02:02:44 Slot Id : <204> +02:02:44 Transaction Type : REQUEST +02:02:44 Received From : +02:02:44 ============================================================================ +02:02:44 FNo. Len. Field Value +02:02:44 ============================================================================ +02:02:44 [ 1] [ 4] [0800] +02:02:44 [ 7] [ 10] [0319070151] +02:02:44 [ 11] [ 6] [153610] +02:02:44 [ 70] [ 3] [301] +02:02:44 ============================================================================ +02:02:44 + + +waiting on router queue for slot.... +02:02:44 Sending to : +02:02:44 ============================================================================ +02:02:44 ============================================================================ +02:02:44 Slot Id : <204> +02:02:44 Transaction Type : RESPONSE +02:02:44 Received From : +02:02:44 ============================================================================ +02:02:44 FNo. Len. Field Value +02:02:44 ============================================================================ +02:02:44 [ 1] [ 4] [0810] +02:02:44 [ 7] [ 10] [0319070151] +02:02:44 [ 11] [ 6] [153610] +02:02:44 [ 39] [ 2] [00] +02:02:44 [ 70] [ 3] [301] +02:02:44 ============================================================================ +02:02:44 Calculate Source COMM Id = 2 +02:02:44 ============================================================================ +02:02:44 + + +waiting on router queue for slot.... +02:02:54 ============================================================================ +02:02:54 Slot Id : <152> +02:02:54 Transaction Type : REQUEST +02:02:54 Received From : +02:02:54 ============================================================================ +02:02:54 FNo. Len. Field Value +02:02:54 ============================================================================ +02:02:54 [ 1] [ 4] [0800] +02:02:54 [ 7] [ 10] [0319070201] +02:02:54 [ 11] [ 6] [153611] +02:02:54 [ 70] [ 3] [301] +02:02:54 ============================================================================ +02:02:54 + + +waiting on router queue for slot.... +02:02:54 Sending to : +02:02:54 ============================================================================ +02:02:54 ============================================================================ +02:02:54 Slot Id : <152> +02:02:54 Transaction Type : RESPONSE +02:02:54 Received From : +02:02:54 ============================================================================ +02:02:54 FNo. Len. Field Value +02:02:54 ============================================================================ +02:02:54 [ 1] [ 4] [0810] +02:02:54 [ 7] [ 10] [0319070201] +02:02:54 [ 11] [ 6] [153611] +02:02:54 [ 39] [ 2] [00] +02:02:54 [ 70] [ 3] [301] +02:02:54 ============================================================================ +02:02:54 Calculate Source COMM Id = 2 +02:02:54 ============================================================================ +02:02:54 + + +waiting on router queue for slot.... +02:02:55 ============================================================================ +02:02:55 Slot Id : <196> +02:02:55 Transaction Type : REQUEST +02:02:55 Received From : +02:02:55 ============================================================================ +02:02:55 FNo. Len. Field Value +02:02:55 ============================================================================ +02:02:55 [ 1] [ 4] [0800] +02:02:55 [ 7] [ 10] [0319190250] +02:02:55 [ 11] [ 6] [096390] +02:02:55 [ 37] [ 12] [507902096390] +02:02:55 [ 70] [ 3] [001] +02:02:55 ============================================================================ +02:02:55 + + +waiting on router queue for slot.... +02:02:55 Sending to : +02:02:55 ============================================================================ +02:02:55 ============================================================================ +02:02:55 Slot Id : <196> +02:02:55 Transaction Type : RESPONSE +02:02:55 Received From : +02:02:55 ============================================================================ +02:02:55 FNo. Len. Field Value +02:02:55 ============================================================================ +02:02:55 [ 1] [ 4] [0810] +02:02:55 [ 7] [ 10] [0319190250] +02:02:55 [ 11] [ 6] [096390] +02:02:55 [ 37] [ 12] [507902096390] +02:02:55 [ 39] [ 2] [00] +02:02:55 [ 70] [ 3] [001] +02:02:55 ============================================================================ +02:02:55 Calculate Source COMM Id = 0 +02:02:55 ============================================================================ +02:02:55 + + +waiting on router queue for slot.... +02:03:05 ============================================================================ +02:03:05 Slot Id : <191> +02:03:05 Transaction Type : REQUEST +02:03:05 Received From : +02:03:05 ============================================================================ +02:03:05 FNo. Len. Field Value +02:03:05 ============================================================================ +02:03:05 [ 1] [ 4] [0800] +02:03:05 [ 7] [ 10] [0319070212] +02:03:05 [ 11] [ 6] [153612] +02:03:05 [ 70] [ 3] [301] +02:03:05 ============================================================================ +02:03:05 + + +waiting on router queue for slot.... +02:03:05 Sending to : +02:03:05 ============================================================================ +02:03:05 ============================================================================ +02:03:05 Slot Id : <191> +02:03:05 Transaction Type : RESPONSE +02:03:05 Received From : +02:03:05 ============================================================================ +02:03:05 FNo. Len. Field Value +02:03:05 ============================================================================ +02:03:05 [ 1] [ 4] [0810] +02:03:05 [ 7] [ 10] [0319070212] +02:03:05 [ 11] [ 6] [153612] +02:03:05 [ 39] [ 2] [00] +02:03:05 [ 70] [ 3] [301] +02:03:05 ============================================================================ +02:03:05 Calculate Source COMM Id = 2 +02:03:05 ============================================================================ +02:03:05 + + +waiting on router queue for slot.... +02:03:16 ============================================================================ +02:03:16 Slot Id : <190> +02:03:16 Transaction Type : REQUEST +02:03:16 Received From : +02:03:16 ============================================================================ +02:03:16 FNo. Len. Field Value +02:03:16 ============================================================================ +02:03:16 [ 1] [ 4] [0800] +02:03:16 [ 7] [ 10] [0319070223] +02:03:16 [ 11] [ 6] [153613] +02:03:16 [ 70] [ 3] [301] +02:03:16 ============================================================================ +02:03:16 + + +waiting on router queue for slot.... +02:03:16 Sending to : +02:03:16 ============================================================================ +02:03:16 ============================================================================ +02:03:16 Slot Id : <190> +02:03:16 Transaction Type : RESPONSE +02:03:16 Received From : +02:03:16 ============================================================================ +02:03:16 FNo. Len. Field Value +02:03:16 ============================================================================ +02:03:16 [ 1] [ 4] [0810] +02:03:16 [ 7] [ 10] [0319070223] +02:03:16 [ 11] [ 6] [153613] +02:03:16 [ 39] [ 2] [00] +02:03:16 [ 70] [ 3] [301] +02:03:16 ============================================================================ +02:03:16 Calculate Source COMM Id = 2 +02:03:16 ============================================================================ +02:03:16 + + +waiting on router queue for slot.... +02:03:22 ============================================================================ +02:03:22 Slot Id : <155> +02:03:22 Transaction Type : REQUEST +02:03:22 Received From : +02:03:22 ============================================================================ +02:03:22 FNo. Len. Field Value +02:03:22 ============================================================================ +02:03:22 [ 1] [ 4] [0800] +02:03:22 [ 7] [ 10] [0320091510] +02:03:22 [ 11] [ 6] [021510] +02:03:22 [ 37] [ 12] [57902021510] +02:03:22 [ 70] [ 3] [301] +02:03:22 ============================================================================ +02:03:22 + + +waiting on router queue for slot.... +02:03:22 Sending to : +02:03:22 ============================================================================ +02:03:22 ============================================================================ +02:03:22 Slot Id : <155> +02:03:22 Transaction Type : RESPONSE +02:03:22 Received From : +02:03:22 ============================================================================ +02:03:22 FNo. Len. Field Value +02:03:22 ============================================================================ +02:03:22 [ 1] [ 4] [0810] +02:03:22 [ 7] [ 10] [0320091510] +02:03:22 [ 11] [ 6] [021510] +02:03:22 [ 37] [ 12] [579020215100] +02:03:22 [ 39] [ 2] [00] +02:03:22 [ 70] [ 3] [810] +02:03:22 ============================================================================ +02:03:22 Calculate Source COMM Id = 6 +02:03:22 ============================================================================ +02:03:22 + + +waiting on router queue for slot.... +02:03:26 ============================================================================ +02:03:26 Slot Id : <181> +02:03:26 Transaction Type : REQUEST +02:03:26 Received From : +02:03:26 ============================================================================ +02:03:26 FNo. Len. Field Value +02:03:26 ============================================================================ +02:03:26 [ 1] [ 4] [0800] +02:03:26 [ 7] [ 10] [0319070233] +02:03:26 [ 11] [ 6] [153614] +02:03:26 [ 70] [ 3] [301] +02:03:26 ============================================================================ +02:03:26 + + +waiting on router queue for slot.... +02:03:26 Sending to : +02:03:26 ============================================================================ +02:03:26 ============================================================================ +02:03:26 Slot Id : <181> +02:03:26 Transaction Type : RESPONSE +02:03:26 Received From : +02:03:26 ============================================================================ +02:03:26 FNo. Len. Field Value +02:03:26 ============================================================================ +02:03:26 [ 1] [ 4] [0810] +02:03:26 [ 7] [ 10] [0319070233] +02:03:26 [ 11] [ 6] [153614] +02:03:26 [ 39] [ 2] [00] +02:03:26 [ 70] [ 3] [301] +02:03:26 ============================================================================ +02:03:26 Calculate Source COMM Id = 2 +02:03:26 ============================================================================ +02:03:26 + + +waiting on router queue for slot.... +02:03:33 ============================================================================ +02:03:33 Slot Id : <198> +02:03:33 Transaction Type : REQUEST +02:03:33 Received From : +02:03:33 ============================================================================ +02:03:33 FNo. Len. Field Value +02:03:33 ============================================================================ +02:03:33 [ 1] [ 4] [0800] +02:03:33 [ 2] [ 5] [02531] +02:03:33 [ 3] [ 6] [579028] +02:03:33 [ 7] [ 10] [0319190333] +02:03:33 [ 11] [ 6] [806531] +02:03:33 [ 15] [ 10] [0319190333] +02:03:33 [ 37] [ 11] [57902806531] +02:03:33 [ 70] [ 3] [001] +02:03:33 ============================================================================ +02:03:33 + + +waiting on router queue for slot.... +02:03:33 ============================================================================ +02:03:33 Slot Id : <198> +02:03:33 Transaction Type : RESPONSE +02:03:33 Received From : +02:03:33 ============================================================================ +02:03:33 FNo. Len. Field Value +02:03:33 ============================================================================ +02:03:33 [ 1] [ 4] [0810] +02:03:33 [ 7] [ 10] [0319190333] +02:03:33 [ 11] [ 6] [806531] +02:03:33 [ 15] [ 4] [0319] +02:03:33 [ 37] [ 12] [57902806531] +02:03:33 [ 39] [ 2] [00] +02:03:33 [ 70] [ 3] [001] +02:03:33 ============================================================================ +02:03:33 Sending to : +02:03:33 ============================================================================ +02:03:33 + + +waiting on router queue for slot.... +02:03:37 ============================================================================ +02:03:37 Slot Id : <201> +02:03:37 Transaction Type : REQUEST +02:03:37 Received From : +02:03:37 ============================================================================ +02:03:37 FNo. Len. Field Value +02:03:37 ============================================================================ +02:03:37 [ 1] [ 4] [0800] +02:03:37 [ 7] [ 10] [0319070244] +02:03:37 [ 11] [ 6] [153615] +02:03:37 [ 70] [ 3] [301] +02:03:37 ============================================================================ +02:03:37 + + +waiting on router queue for slot.... +02:03:37 Sending to : +02:03:37 ============================================================================ +02:03:37 ============================================================================ +02:03:37 Slot Id : <201> +02:03:37 Transaction Type : RESPONSE +02:03:37 Received From : +02:03:37 ============================================================================ +02:03:37 FNo. Len. Field Value +02:03:37 ============================================================================ +02:03:37 [ 1] [ 4] [0810] +02:03:37 [ 7] [ 10] [0319070244] +02:03:37 [ 11] [ 6] [153615] +02:03:37 [ 39] [ 2] [00] +02:03:37 [ 70] [ 3] [301] +02:03:37 ============================================================================ +02:03:37 Calculate Source COMM Id = 2 +02:03:37 ============================================================================ +02:03:37 + + +waiting on router queue for slot.... +02:03:52 ============================================================================ +02:03:52 Slot Id : <194> +02:03:52 Transaction Type : REQUEST +02:03:52 Received From : +02:03:52 ============================================================================ +02:03:52 FNo. Len. Field Value +02:03:52 ============================================================================ +02:03:52 [ 1] [ 4] [0800] +02:03:52 [ 7] [ 10] [0319070259] +02:03:52 [ 11] [ 6] [153616] +02:03:52 [ 70] [ 3] [301] +02:03:52 ============================================================================ +02:03:52 + + +waiting on router queue for slot.... +02:03:52 Sending to : +02:03:52 ============================================================================ +02:03:52 ============================================================================ +02:03:52 Slot Id : <194> +02:03:52 Transaction Type : RESPONSE +02:03:52 Received From : +02:03:52 ============================================================================ +02:03:52 FNo. Len. Field Value +02:03:52 ============================================================================ +02:03:52 [ 1] [ 4] [0810] +02:03:52 [ 7] [ 10] [0319070259] +02:03:52 [ 11] [ 6] [153616] +02:03:52 [ 39] [ 2] [00] +02:03:52 [ 70] [ 3] [301] +02:03:52 ============================================================================ +02:03:52 Calculate Source COMM Id = 2 +02:03:52 ============================================================================ +02:03:52 + + +waiting on router queue for slot.... +02:04:02 ============================================================================ +02:04:02 Slot Id : <214> +02:04:02 Transaction Type : REQUEST +02:04:02 Received From : +02:04:02 ============================================================================ +02:04:02 FNo. Len. Field Value +02:04:02 ============================================================================ +02:04:02 [ 1] [ 4] [0800] +02:04:02 [ 7] [ 10] [0319070310] +02:04:02 [ 11] [ 6] [153617] +02:04:02 [ 70] [ 3] [301] +02:04:02 ============================================================================ +02:04:02 + + +waiting on router queue for slot.... +02:04:02 Sending to : +02:04:02 ============================================================================ +02:04:02 ============================================================================ +02:04:02 Slot Id : <214> +02:04:02 Transaction Type : RESPONSE +02:04:02 Received From : +02:04:02 ============================================================================ +02:04:02 FNo. Len. Field Value +02:04:02 ============================================================================ +02:04:02 [ 1] [ 4] [0810] +02:04:02 [ 7] [ 10] [0319070310] +02:04:02 [ 11] [ 6] [153617] +02:04:02 [ 39] [ 2] [00] +02:04:02 [ 70] [ 3] [301] +02:04:02 ============================================================================ +02:04:02 Calculate Source COMM Id = 2 +02:04:02 ============================================================================ +02:04:02 + + +waiting on router queue for slot.... +02:04:14 ============================================================================ +02:04:14 Slot Id : <165> +02:04:14 Transaction Type : REQUEST +02:04:14 Received From : +02:04:14 ============================================================================ +02:04:14 FNo. Len. Field Value +02:04:14 ============================================================================ +02:04:14 [ 1] [ 4] [0800] +02:04:14 [ 7] [ 10] [0319070321] +02:04:14 [ 11] [ 6] [153618] +02:04:14 [ 70] [ 3] [301] +02:04:14 ============================================================================ +02:04:14 + + +waiting on router queue for slot.... +02:04:14 Sending to : +02:04:14 ============================================================================ +02:04:14 ============================================================================ +02:04:14 Slot Id : <165> +02:04:14 Transaction Type : RESPONSE +02:04:14 Received From : +02:04:14 ============================================================================ +02:04:14 FNo. Len. Field Value +02:04:14 ============================================================================ +02:04:14 [ 1] [ 4] [0810] +02:04:14 [ 7] [ 10] [0319070321] +02:04:14 [ 11] [ 6] [153618] +02:04:14 [ 39] [ 2] [00] +02:04:14 [ 70] [ 3] [301] +02:04:14 ============================================================================ +02:04:14 Calculate Source COMM Id = 2 +02:04:14 ============================================================================ +02:04:14 + + +waiting on router queue for slot.... +02:04:27 ============================================================================ +02:04:27 Slot Id : <195> +02:04:27 Transaction Type : REQUEST +02:04:27 Received From : +02:04:27 ============================================================================ +02:04:27 FNo. Len. Field Value +02:04:27 ============================================================================ +02:04:27 [ 1] [ 4] [0800] +02:04:27 [ 7] [ 10] [0320091615] +02:04:27 [ 11] [ 6] [021615] +02:04:27 [ 37] [ 12] [57902021615] +02:04:27 [ 70] [ 3] [301] +02:04:27 ============================================================================ +02:04:27 + + +waiting on router queue for slot.... +02:04:27 Sending to : +02:04:27 ============================================================================ +02:04:27 ============================================================================ +02:04:27 Slot Id : <195> +02:04:27 Transaction Type : RESPONSE +02:04:27 Received From : +02:04:27 ============================================================================ +02:04:27 FNo. Len. Field Value +02:04:27 ============================================================================ +02:04:27 [ 1] [ 4] [0810] +02:04:27 [ 7] [ 10] [0320091615] +02:04:27 [ 11] [ 6] [021615] +02:04:27 [ 37] [ 12] [579020216150] +02:04:27 [ 39] [ 2] [00] +02:04:27 [ 70] [ 3] [810] +02:04:27 ============================================================================ +02:04:27 Calculate Source COMM Id = 6 +02:04:27 ============================================================================ +02:04:27 + + +waiting on router queue for slot.... +02:04:29 ============================================================================ +02:04:29 Slot Id : <184> +02:04:29 Transaction Type : REQUEST +02:04:29 Received From : +02:04:29 ============================================================================ +02:04:29 FNo. Len. Field Value +02:04:29 ============================================================================ +02:04:29 [ 1] [ 4] [0800] +02:04:29 [ 7] [ 10] [0319070336] +02:04:29 [ 11] [ 6] [153619] +02:04:29 [ 70] [ 3] [301] +02:04:29 ============================================================================ +02:04:29 + + +waiting on router queue for slot.... +02:04:29 Sending to : +02:04:29 ============================================================================ +02:04:29 ============================================================================ +02:04:29 Slot Id : <184> +02:04:29 Transaction Type : RESPONSE +02:04:29 Received From : +02:04:29 ============================================================================ +02:04:29 FNo. Len. Field Value +02:04:29 ============================================================================ +02:04:29 [ 1] [ 4] [0810] +02:04:29 [ 7] [ 10] [0319070336] +02:04:29 [ 11] [ 6] [153619] +02:04:29 [ 39] [ 2] [00] +02:04:29 [ 70] [ 3] [301] +02:04:29 ============================================================================ +02:04:29 Calculate Source COMM Id = 2 +02:04:29 ============================================================================ +02:04:29 + + +waiting on router queue for slot.... +02:04:35 ============================================================================ +02:04:35 Slot Id : <209> +02:04:35 Transaction Type : REQUEST +02:04:35 Received From : +02:04:35 ============================================================================ +02:04:35 FNo. Len. Field Value +02:04:35 ============================================================================ +02:04:35 [ 1] [ 4] [0800] +02:04:35 [ 2] [ 5] [02531] +02:04:35 [ 3] [ 6] [579028] +02:04:35 [ 7] [ 10] [0319190435] +02:04:35 [ 11] [ 6] [806532] +02:04:35 [ 15] [ 10] [0319190435] +02:04:35 [ 37] [ 11] [57902806532] +02:04:35 [ 70] [ 3] [001] +02:04:35 ============================================================================ +02:04:35 + + +waiting on router queue for slot.... +02:04:35 ============================================================================ +02:04:35 Slot Id : <209> +02:04:35 Transaction Type : RESPONSE +02:04:35 Received From : +02:04:35 ============================================================================ +02:04:35 FNo. Len. Field Value +02:04:35 ============================================================================ +02:04:35 [ 1] [ 4] [0810] +02:04:35 [ 7] [ 10] [0319190435] +02:04:35 [ 11] [ 6] [806532] +02:04:35 [ 15] [ 4] [0319] +02:04:35 [ 37] [ 12] [57902806532] +02:04:35 [ 39] [ 2] [00] +02:04:35 [ 70] [ 3] [001] +02:04:35 ============================================================================ +02:04:35 Sending to : +02:04:35 ============================================================================ +02:04:35 + + +waiting on router queue for slot.... +02:04:44 ============================================================================ +02:04:44 Slot Id : <213> +02:04:44 Transaction Type : REQUEST +02:04:44 Received From : +02:04:44 ============================================================================ +02:04:44 FNo. Len. Field Value +02:04:44 ============================================================================ +02:04:44 [ 1] [ 4] [0800] +02:04:44 [ 7] [ 10] [0319070351] +02:04:44 [ 11] [ 6] [153620] +02:04:44 [ 70] [ 3] [301] +02:04:44 ============================================================================ +02:04:44 + + +waiting on router queue for slot.... +02:04:44 Sending to : +02:04:44 ============================================================================ +02:04:44 ============================================================================ +02:04:44 Slot Id : <213> +02:04:44 Transaction Type : RESPONSE +02:04:44 Received From : +02:04:44 ============================================================================ +02:04:44 FNo. Len. Field Value +02:04:44 ============================================================================ +02:04:44 [ 1] [ 4] [0810] +02:04:44 [ 7] [ 10] [0319070351] +02:04:44 [ 11] [ 6] [153620] +02:04:44 [ 39] [ 2] [00] +02:04:44 [ 70] [ 3] [301] +02:04:44 ============================================================================ +02:04:44 Calculate Source COMM Id = 2 +02:04:44 ============================================================================ +02:04:44 + + +waiting on router queue for slot.... +02:04:56 ============================================================================ +02:04:56 Slot Id : <178> +02:04:56 Transaction Type : REQUEST +02:04:56 Received From : +02:04:56 ============================================================================ +02:04:56 FNo. Len. Field Value +02:04:56 ============================================================================ +02:04:56 [ 1] [ 4] [0800] +02:04:56 [ 7] [ 10] [0319070401] +02:04:56 [ 11] [ 6] [153621] +02:04:56 [ 70] [ 3] [301] +02:04:56 ============================================================================ +02:04:56 + + +waiting on router queue for slot.... +02:04:56 Sending to : +02:04:56 ============================================================================ +02:04:56 ============================================================================ +02:04:56 Slot Id : <178> +02:04:56 Transaction Type : RESPONSE +02:04:56 Received From : +02:04:56 ============================================================================ +02:04:56 FNo. Len. Field Value +02:04:56 ============================================================================ +02:04:56 [ 1] [ 4] [0810] +02:04:56 [ 7] [ 10] [0319070401] +02:04:56 [ 11] [ 6] [153621] +02:04:56 [ 39] [ 2] [00] +02:04:56 [ 70] [ 3] [301] +02:04:56 ============================================================================ +02:04:56 Calculate Source COMM Id = 2 +02:04:56 ============================================================================ +02:04:56 + + +waiting on router queue for slot.... +02:04:56 ============================================================================ +02:04:56 Slot Id : <208> +02:04:56 Transaction Type : REQUEST +02:04:56 Received From : +02:04:56 ============================================================================ +02:04:56 FNo. Len. Field Value +02:04:56 ============================================================================ +02:04:56 [ 1] [ 4] [0800] +02:04:56 [ 7] [ 10] [0319191242] +02:04:56 [ 11] [ 6] [087747] +02:04:56 [ 37] [ 12] [57902087747] +02:04:56 [ 70] [ 3] [301] +02:04:56 ============================================================================ +02:04:56 + + +waiting on router queue for slot.... +02:04:56 Sending to : +02:04:56 ============================================================================ +02:04:56 ============================================================================ +02:04:56 Slot Id : <208> +02:04:56 Transaction Type : RESPONSE +02:04:56 Received From : +02:04:56 ============================================================================ +02:04:56 FNo. Len. Field Value +02:04:56 ============================================================================ +02:04:56 [ 1] [ 4] [0810] +02:04:56 [ 7] [ 10] [0319191242] +02:04:56 [ 11] [ 6] [087747] +02:04:56 [ 37] [ 12] [579020877470] +02:04:56 [ 39] [ 2] [00] +02:04:56 [ 70] [ 3] [810] +02:04:56 ============================================================================ +02:04:56 Calculate Source COMM Id = 1 +02:04:56 ============================================================================ +02:04:56 + + +waiting on router queue for slot.... +02:05:09 ============================================================================ +02:05:09 Slot Id : <193> +02:05:09 Transaction Type : REQUEST +02:05:09 Received From : +02:05:09 ============================================================================ +02:05:09 FNo. Len. Field Value +02:05:09 ============================================================================ +02:05:09 [ 1] [ 4] [0800] +02:05:09 [ 7] [ 10] [0319070416] +02:05:09 [ 11] [ 6] [153622] +02:05:09 [ 70] [ 3] [301] +02:05:09 ============================================================================ +02:05:09 + + +waiting on router queue for slot.... +02:05:09 Sending to : +02:05:09 ============================================================================ +02:05:09 ============================================================================ +02:05:09 Slot Id : <193> +02:05:09 Transaction Type : RESPONSE +02:05:09 Received From : +02:05:09 ============================================================================ +02:05:09 FNo. Len. Field Value +02:05:09 ============================================================================ +02:05:09 [ 1] [ 4] [0810] +02:05:09 [ 7] [ 10] [0319070416] +02:05:09 [ 11] [ 6] [153622] +02:05:09 [ 39] [ 2] [00] +02:05:09 [ 70] [ 3] [301] +02:05:09 ============================================================================ +02:05:09 Calculate Source COMM Id = 2 +02:05:09 ============================================================================ +02:05:09 + + +waiting on router queue for slot.... +02:05:24 ============================================================================ +02:05:24 Slot Id : <211> +02:05:24 Transaction Type : REQUEST +02:05:24 Received From : +02:05:24 ============================================================================ +02:05:24 FNo. Len. Field Value +02:05:24 ============================================================================ +02:05:24 [ 1] [ 4] [0800] +02:05:24 [ 7] [ 10] [0319070431] +02:05:24 [ 11] [ 6] [153623] +02:05:24 [ 70] [ 3] [301] +02:05:24 ============================================================================ +02:05:24 + + +waiting on router queue for slot.... +02:05:24 Sending to : +02:05:24 ============================================================================ +02:05:24 ============================================================================ +02:05:24 Slot Id : <211> +02:05:24 Transaction Type : RESPONSE +02:05:24 Received From : +02:05:24 ============================================================================ +02:05:24 FNo. Len. Field Value +02:05:24 ============================================================================ +02:05:24 [ 1] [ 4] [0810] +02:05:24 [ 7] [ 10] [0319070431] +02:05:24 [ 11] [ 6] [153623] +02:05:24 [ 39] [ 2] [00] +02:05:24 [ 70] [ 3] [301] +02:05:24 ============================================================================ +02:05:24 Calculate Source COMM Id = 2 +02:05:24 ============================================================================ +02:05:24 + + +waiting on router queue for slot.... +02:05:32 ============================================================================ +02:05:32 Slot Id : <206> +02:05:32 Transaction Type : REQUEST +02:05:32 Received From : +02:05:32 ============================================================================ +02:05:32 FNo. Len. Field Value +02:05:32 ============================================================================ +02:05:32 [ 1] [ 4] [0800] +02:05:32 [ 7] [ 10] [0320091720] +02:05:32 [ 11] [ 6] [021720] +02:05:32 [ 37] [ 12] [57902021720] +02:05:32 [ 70] [ 3] [301] +02:05:32 ============================================================================ +02:05:32 + + +waiting on router queue for slot.... +02:05:32 Sending to : +02:05:32 ============================================================================ +02:05:32 ============================================================================ +02:05:32 Slot Id : <206> +02:05:32 Transaction Type : RESPONSE +02:05:32 Received From : +02:05:32 ============================================================================ +02:05:32 FNo. Len. Field Value +02:05:32 ============================================================================ +02:05:32 [ 1] [ 4] [0810] +02:05:32 [ 7] [ 10] [0320091720] +02:05:32 [ 11] [ 6] [021720] +02:05:32 [ 37] [ 12] [579020217200] +02:05:32 [ 39] [ 2] [00] +02:05:32 [ 70] [ 3] [810] +02:05:32 ============================================================================ +02:05:32 Calculate Source COMM Id = 6 +02:05:32 ============================================================================ +02:05:32 + + +waiting on router queue for slot.... +02:05:37 ============================================================================ +02:05:37 Slot Id : <185> +02:05:37 Transaction Type : REQUEST +02:05:37 Received From : +02:05:37 ============================================================================ +02:05:37 FNo. Len. Field Value +02:05:37 ============================================================================ +02:05:37 [ 1] [ 4] [0800] +02:05:37 [ 2] [ 5] [02531] +02:05:37 [ 3] [ 6] [579028] +02:05:37 [ 7] [ 10] [0319190537] +02:05:37 [ 11] [ 6] [806533] +02:05:37 [ 15] [ 10] [0319190537] +02:05:37 [ 37] [ 11] [57902806533] +02:05:37 [ 70] [ 3] [001] +02:05:37 ============================================================================ +02:05:37 + + +waiting on router queue for slot.... +02:05:37 ============================================================================ +02:05:37 Slot Id : <185> +02:05:37 Transaction Type : RESPONSE +02:05:37 Received From : +02:05:37 ============================================================================ +02:05:37 FNo. Len. Field Value +02:05:37 ============================================================================ +02:05:37 [ 1] [ 4] [0810] +02:05:37 [ 7] [ 10] [0319190537] +02:05:37 [ 11] [ 6] [806533] +02:05:37 [ 15] [ 4] [0319] +02:05:37 [ 37] [ 12] [57902806533] +02:05:37 [ 39] [ 2] [00] +02:05:37 [ 70] [ 3] [001] +02:05:37 ============================================================================ +02:05:37 Sending to : +02:05:37 ============================================================================ +02:05:37 + + +waiting on router queue for slot.... +02:05:39 ============================================================================ +02:05:39 Slot Id : <221> +02:05:39 Transaction Type : REQUEST +02:05:39 Received From : +02:05:39 ============================================================================ +02:05:39 FNo. Len. Field Value +02:05:39 ============================================================================ +02:05:39 [ 1] [ 4] [0800] +02:05:39 [ 7] [ 10] [0319070446] +02:05:39 [ 11] [ 6] [153624] +02:05:39 [ 70] [ 3] [301] +02:05:39 ============================================================================ +02:05:39 + + +waiting on router queue for slot.... +02:05:39 Sending to : +02:05:39 ============================================================================ +02:05:39 ============================================================================ +02:05:39 Slot Id : <221> +02:05:39 Transaction Type : RESPONSE +02:05:39 Received From : +02:05:39 ============================================================================ +02:05:39 FNo. Len. Field Value +02:05:39 ============================================================================ +02:05:39 [ 1] [ 4] [0810] +02:05:39 [ 7] [ 10] [0319070446] +02:05:39 [ 11] [ 6] [153624] +02:05:39 [ 39] [ 2] [00] +02:05:39 [ 70] [ 3] [301] +02:05:39 ============================================================================ +02:05:39 Calculate Source COMM Id = 2 +02:05:39 ============================================================================ +02:05:39 + + +waiting on router queue for slot.... +02:05:41 ============================================================================ +02:05:41 Slot Id : <183> +02:05:41 Transaction Type : REQUEST +02:05:41 Received From : +02:05:41 ============================================================================ +02:05:41 FNo. Len. Field Value +02:05:41 ============================================================================ +02:05:41 [ 1] [ 4] [0800] +02:05:41 [ 7] [ 10] [0320020527] +02:05:41 [ 11] [ 6] [000962] +02:05:41 [ 37] [ 12] [507902000962] +02:05:41 [ 70] [ 3] [ ] +02:05:41 ============================================================================ +02:05:41 + + +waiting on router queue for slot.... +02:05:41 Sending to : +02:05:41 ============================================================================ +02:05:41 ============================================================================ +02:05:41 Slot Id : <183> +02:05:41 Transaction Type : RESPONSE +02:05:41 Received From : +02:05:41 ============================================================================ +02:05:41 FNo. Len. Field Value +02:05:41 ============================================================================ +02:05:41 [ 1] [ 4] [0810] +02:05:41 [ 7] [ 10] [0320020527] +02:05:41 [ 11] [ 6] [000962] +02:05:41 [ 37] [ 12] [507902000962] +02:05:41 [ 39] [ 2] [91] +02:05:41 [ 70] [ 3] [ ] +02:05:41 ============================================================================ +02:05:41 Calculate Source COMM Id = 3 +02:05:41 ============================================================================ +02:05:41 + + +waiting on router queue for slot.... +02:05:50 ============================================================================ +02:05:50 Slot Id : <212> +02:05:50 Transaction Type : REQUEST +02:05:50 Received From : +02:05:50 ============================================================================ +02:05:50 FNo. Len. Field Value +02:05:50 ============================================================================ +02:05:50 [ 1] [ 4] [0800] +02:05:50 [ 7] [ 10] [0319070457] +02:05:50 [ 11] [ 6] [153625] +02:05:50 [ 70] [ 3] [301] +02:05:50 ============================================================================ +02:05:50 + + +waiting on router queue for slot.... +02:05:50 Sending to : +02:05:50 ============================================================================ +02:05:50 ============================================================================ +02:05:50 Slot Id : <212> +02:05:50 Transaction Type : RESPONSE +02:05:50 Received From : +02:05:50 ============================================================================ +02:05:50 FNo. Len. Field Value +02:05:50 ============================================================================ +02:05:50 [ 1] [ 4] [0810] +02:05:50 [ 7] [ 10] [0319070457] +02:05:50 [ 11] [ 6] [153625] +02:05:50 [ 39] [ 2] [00] +02:05:50 [ 70] [ 3] [301] +02:05:50 ============================================================================ +02:05:50 Calculate Source COMM Id = 2 +02:05:50 ============================================================================ +02:05:50 + + +waiting on router queue for slot.... +02:06:00 ============================================================================ +02:06:00 Slot Id : <207> +02:06:00 Transaction Type : REQUEST +02:06:00 Received From : +02:06:00 ============================================================================ +02:06:00 FNo. Len. Field Value +02:06:00 ============================================================================ +02:06:00 [ 1] [ 4] [0800] +02:06:00 [ 7] [ 10] [0319070508] +02:06:00 [ 11] [ 6] [153626] +02:06:00 [ 70] [ 3] [301] +02:06:00 ============================================================================ +02:06:00 + + +waiting on router queue for slot.... +02:06:00 Sending to : +02:06:00 ============================================================================ +02:06:00 ============================================================================ +02:06:00 Slot Id : <207> +02:06:00 Transaction Type : RESPONSE +02:06:00 Received From : +02:06:00 ============================================================================ +02:06:00 FNo. Len. Field Value +02:06:00 ============================================================================ +02:06:00 [ 1] [ 4] [0810] +02:06:00 [ 7] [ 10] [0319070508] +02:06:00 [ 11] [ 6] [153626] +02:06:00 [ 39] [ 2] [00] +02:06:00 [ 70] [ 3] [301] +02:06:00 ============================================================================ +02:06:00 Calculate Source COMM Id = 2 +02:06:00 ============================================================================ +02:06:00 + + +waiting on router queue for slot.... +02:06:16 ============================================================================ +02:06:16 Slot Id : <174> +02:06:16 Transaction Type : REQUEST +02:06:16 Received From : +02:06:16 ============================================================================ +02:06:16 FNo. Len. Field Value +02:06:16 ============================================================================ +02:06:16 [ 1] [ 4] [0800] +02:06:16 [ 7] [ 10] [0319070523] +02:06:16 [ 11] [ 6] [153627] +02:06:16 [ 70] [ 3] [301] +02:06:16 ============================================================================ +02:06:16 + + +waiting on router queue for slot.... +02:06:16 Sending to : +02:06:16 ============================================================================ +02:06:16 ============================================================================ +02:06:16 Slot Id : <174> +02:06:16 Transaction Type : RESPONSE +02:06:16 Received From : +02:06:16 ============================================================================ +02:06:16 FNo. Len. Field Value +02:06:16 ============================================================================ +02:06:16 [ 1] [ 4] [0810] +02:06:16 [ 7] [ 10] [0319070523] +02:06:16 [ 11] [ 6] [153627] +02:06:16 [ 39] [ 2] [00] +02:06:16 [ 70] [ 3] [301] +02:06:16 ============================================================================ +02:06:16 Calculate Source COMM Id = 2 +02:06:16 ============================================================================ +02:06:16 + + +waiting on router queue for slot.... +02:06:21 ============================================================================ +02:06:21 Slot Id : <149> +02:06:21 Transaction Type : REQUEST +02:06:21 Received From : +02:06:21 ============================================================================ +02:06:21 FNo. Len. Field Value +02:06:21 ============================================================================ +02:06:21 [ 1] [ 4] [0800] +02:06:21 [ 7] [ 10] [0319190412] +02:06:21 [ 11] [ 6] [076472] +02:06:21 [ 37] [ 12] [57902076472] +02:06:21 [ 70] [ 3] [301] +02:06:21 ============================================================================ +02:06:21 + + +waiting on router queue for slot.... +02:06:21 Sending to : +02:06:21 ============================================================================ +02:06:21 ============================================================================ +02:06:21 Slot Id : <149> +02:06:21 Transaction Type : RESPONSE +02:06:21 Received From : +02:06:21 ============================================================================ +02:06:21 FNo. Len. Field Value +02:06:21 ============================================================================ +02:06:21 [ 1] [ 4] [0810] +02:06:21 [ 7] [ 10] [0319190412] +02:06:21 [ 11] [ 6] [076472] +02:06:21 [ 37] [ 12] [579020764720] +02:06:21 [ 39] [ 2] [00] +02:06:21 [ 70] [ 3] [810] +02:06:21 ============================================================================ +02:06:21 Calculate Source COMM Id = 4 +02:06:21 ============================================================================ +02:06:21 + + +waiting on router queue for slot.... +02:06:27 ============================================================================ +02:06:27 Slot Id : <168> +02:06:27 Transaction Type : REQUEST +02:06:27 Received From : +02:06:27 ============================================================================ +02:06:27 FNo. Len. Field Value +02:06:27 ============================================================================ +02:06:27 [ 1] [ 4] [0800] +02:06:27 [ 7] [ 10] [0319070534] +02:06:27 [ 11] [ 6] [153628] +02:06:27 [ 70] [ 3] [301] +02:06:27 ============================================================================ +02:06:27 + + +waiting on router queue for slot.... +02:06:27 Sending to : +02:06:27 ============================================================================ +02:06:27 ============================================================================ +02:06:27 Slot Id : <168> +02:06:27 Transaction Type : RESPONSE +02:06:27 Received From : +02:06:27 ============================================================================ +02:06:27 FNo. Len. Field Value +02:06:27 ============================================================================ +02:06:27 [ 1] [ 4] [0810] +02:06:27 [ 7] [ 10] [0319070534] +02:06:27 [ 11] [ 6] [153628] +02:06:27 [ 39] [ 2] [00] +02:06:27 [ 70] [ 3] [301] +02:06:27 ============================================================================ +02:06:27 Calculate Source COMM Id = 2 +02:06:27 ============================================================================ +02:06:27 + + +waiting on router queue for slot.... +02:06:37 ============================================================================ +02:06:37 Slot Id : <180> +02:06:37 Transaction Type : REQUEST +02:06:37 Received From : +02:06:37 ============================================================================ +02:06:37 FNo. Len. Field Value +02:06:37 ============================================================================ +02:06:37 [ 1] [ 4] [0800] +02:06:37 [ 7] [ 10] [0320091825] +02:06:37 [ 11] [ 6] [021825] +02:06:37 [ 37] [ 12] [57902021825] +02:06:37 [ 70] [ 3] [301] +02:06:37 ============================================================================ +02:06:37 + + +waiting on router queue for slot.... +02:06:37 Sending to : +02:06:37 ============================================================================ +02:06:37 ============================================================================ +02:06:37 Slot Id : <180> +02:06:37 Transaction Type : RESPONSE +02:06:37 Received From : +02:06:37 ============================================================================ +02:06:37 FNo. Len. Field Value +02:06:37 ============================================================================ +02:06:37 [ 1] [ 4] [0810] +02:06:37 [ 7] [ 10] [0320091825] +02:06:37 [ 11] [ 6] [021825] +02:06:37 [ 37] [ 12] [579020218250] +02:06:37 [ 39] [ 2] [00] +02:06:37 [ 70] [ 3] [810] +02:06:37 ============================================================================ +02:06:37 Calculate Source COMM Id = 6 +02:06:37 ============================================================================ +02:06:37 + + +waiting on router queue for slot.... +02:06:39 ============================================================================ +02:06:39 Slot Id : <222> +02:06:39 Transaction Type : REQUEST +02:06:39 Received From : +02:06:39 ============================================================================ +02:06:39 FNo. Len. Field Value +02:06:39 ============================================================================ +02:06:39 [ 1] [ 4] [0800] +02:06:39 [ 2] [ 5] [02531] +02:06:39 [ 3] [ 6] [579028] +02:06:39 [ 7] [ 10] [0319190639] +02:06:39 [ 11] [ 6] [806534] +02:06:39 [ 15] [ 10] [0319190639] +02:06:39 [ 37] [ 11] [57902806534] +02:06:39 [ 70] [ 3] [001] +02:06:39 ============================================================================ +02:06:39 + + +waiting on router queue for slot.... +02:06:39 ============================================================================ +02:06:39 Slot Id : <222> +02:06:39 Transaction Type : RESPONSE +02:06:39 Received From : +02:06:39 ============================================================================ +02:06:39 FNo. Len. Field Value +02:06:39 ============================================================================ +02:06:39 [ 1] [ 4] [0810] +02:06:39 [ 7] [ 10] [0319190639] +02:06:39 [ 11] [ 6] [806534] +02:06:39 [ 15] [ 4] [0319] +02:06:39 [ 37] [ 12] [57902806534] +02:06:39 [ 39] [ 2] [00] +02:06:39 [ 70] [ 3] [001] +02:06:39 ============================================================================ +02:06:39 Sending to : +02:06:39 ============================================================================ +02:06:39 + + +waiting on router queue for slot.... +02:06:39 ============================================================================ +02:06:39 Slot Id : <189> +02:06:39 Transaction Type : REQUEST +02:06:39 Received From : +02:06:39 ============================================================================ +02:06:39 FNo. Len. Field Value +02:06:39 ============================================================================ +02:06:39 [ 1] [ 4] [0800] +02:06:39 [ 7] [ 10] [0319070546] +02:06:39 [ 11] [ 6] [153629] +02:06:39 [ 70] [ 3] [301] +02:06:39 ============================================================================ +02:06:39 + + +waiting on router queue for slot.... +02:06:39 Sending to : +02:06:39 ============================================================================ +02:06:39 ============================================================================ +02:06:39 Slot Id : <189> +02:06:39 Transaction Type : RESPONSE +02:06:39 Received From : +02:06:39 ============================================================================ +02:06:39 FNo. Len. Field Value +02:06:39 ============================================================================ +02:06:39 [ 1] [ 4] [0810] +02:06:39 [ 7] [ 10] [0319070546] +02:06:39 [ 11] [ 6] [153629] +02:06:39 [ 39] [ 2] [00] +02:06:39 [ 70] [ 3] [301] +02:06:39 ============================================================================ +02:06:39 Calculate Source COMM Id = 2 +02:06:39 ============================================================================ +02:06:39 + + +waiting on router queue for slot.... +02:06:53 ============================================================================ +02:06:53 Slot Id : <169> +02:06:53 Transaction Type : REQUEST +02:06:53 Received From : +02:06:53 ============================================================================ +02:06:53 FNo. Len. Field Value +02:06:53 ============================================================================ +02:06:53 [ 1] [ 4] [0800] +02:06:53 [ 7] [ 10] [0319070558] +02:06:53 [ 11] [ 6] [153630] +02:06:53 [ 70] [ 3] [301] +02:06:53 ============================================================================ +02:06:53 + + +waiting on router queue for slot.... +02:06:53 Sending to : +02:06:53 ============================================================================ +02:06:53 ============================================================================ +02:06:53 Slot Id : <169> +02:06:53 Transaction Type : RESPONSE +02:06:53 Received From : +02:06:53 ============================================================================ +02:06:53 FNo. Len. Field Value +02:06:53 ============================================================================ +02:06:53 [ 1] [ 4] [0810] +02:06:53 [ 7] [ 10] [0319070558] +02:06:53 [ 11] [ 6] [153630] +02:06:53 [ 39] [ 2] [00] +02:06:53 [ 70] [ 3] [301] +02:06:53 ============================================================================ +02:06:53 Calculate Source COMM Id = 2 +02:06:53 ============================================================================ +02:06:53 + + +waiting on router queue for slot.... +02:07:06 ============================================================================ +02:07:06 Slot Id : <225> +02:07:06 Transaction Type : REQUEST +02:07:06 Received From : +02:07:06 ============================================================================ +02:07:06 FNo. Len. Field Value +02:07:06 ============================================================================ +02:07:06 [ 1] [ 4] [0800] +02:07:06 [ 7] [ 10] [0319070614] +02:07:06 [ 11] [ 6] [153631] +02:07:06 [ 70] [ 3] [301] +02:07:06 ============================================================================ +02:07:06 + + +waiting on router queue for slot.... +02:07:06 Sending to : +02:07:06 ============================================================================ +02:07:06 ============================================================================ +02:07:06 Slot Id : <225> +02:07:06 Transaction Type : RESPONSE +02:07:06 Received From : +02:07:06 ============================================================================ +02:07:06 FNo. Len. Field Value +02:07:06 ============================================================================ +02:07:06 [ 1] [ 4] [0810] +02:07:06 [ 7] [ 10] [0319070614] +02:07:06 [ 11] [ 6] [153631] +02:07:06 [ 39] [ 2] [00] +02:07:06 [ 70] [ 3] [301] +02:07:06 ============================================================================ +02:07:06 Calculate Source COMM Id = 2 +02:07:06 ============================================================================ +02:07:06 + + +waiting on router queue for slot.... +02:07:17 ============================================================================ +02:07:17 Slot Id : <232> +02:07:17 Transaction Type : REQUEST +02:07:17 Received From : +02:07:17 ============================================================================ +02:07:17 FNo. Len. Field Value +02:07:17 ============================================================================ +02:07:17 [ 1] [ 4] [0800] +02:07:17 [ 7] [ 10] [0319070624] +02:07:17 [ 11] [ 6] [153632] +02:07:17 [ 70] [ 3] [301] +02:07:17 ============================================================================ +02:07:17 + + +waiting on router queue for slot.... +02:07:17 Sending to : +02:07:17 ============================================================================ +02:07:17 ============================================================================ +02:07:17 Slot Id : <232> +02:07:17 Transaction Type : RESPONSE +02:07:17 Received From : +02:07:17 ============================================================================ +02:07:17 FNo. Len. Field Value +02:07:17 ============================================================================ +02:07:17 [ 1] [ 4] [0810] +02:07:17 [ 7] [ 10] [0319070624] +02:07:17 [ 11] [ 6] [153632] +02:07:17 [ 39] [ 2] [00] +02:07:17 [ 70] [ 3] [301] +02:07:17 ============================================================================ +02:07:17 Calculate Source COMM Id = 2 +02:07:17 ============================================================================ +02:07:17 + + +waiting on router queue for slot.... +02:07:32 ============================================================================ +02:07:32 Slot Id : <205> +02:07:32 Transaction Type : REQUEST +02:07:32 Received From : +02:07:32 ============================================================================ +02:07:32 FNo. Len. Field Value +02:07:32 ============================================================================ +02:07:32 [ 1] [ 4] [0800] +02:07:32 [ 7] [ 10] [0319070639] +02:07:32 [ 11] [ 6] [153633] +02:07:32 [ 70] [ 3] [301] +02:07:32 ============================================================================ +02:07:32 + + +waiting on router queue for slot.... +02:07:32 Sending to : +02:07:32 ============================================================================ +02:07:32 ============================================================================ +02:07:32 Slot Id : <205> +02:07:32 Transaction Type : RESPONSE +02:07:32 Received From : +02:07:32 ============================================================================ +02:07:32 FNo. Len. Field Value +02:07:32 ============================================================================ +02:07:32 [ 1] [ 4] [0810] +02:07:32 [ 7] [ 10] [0319070639] +02:07:32 [ 11] [ 6] [153633] +02:07:32 [ 39] [ 2] [00] +02:07:32 [ 70] [ 3] [301] +02:07:32 ============================================================================ +02:07:32 Calculate Source COMM Id = 2 +02:07:32 ============================================================================ +02:07:32 + + +waiting on router queue for slot.... +02:07:41 ============================================================================ +02:07:41 Slot Id : <173> +02:07:41 Transaction Type : REQUEST +02:07:41 Received From : +02:07:41 ============================================================================ +02:07:41 FNo. Len. Field Value +02:07:41 ============================================================================ +02:07:41 [ 1] [ 4] [0800] +02:07:41 [ 2] [ 5] [02531] +02:07:41 [ 3] [ 6] [579028] +02:07:41 [ 7] [ 10] [0319190741] +02:07:41 [ 11] [ 6] [806535] +02:07:41 [ 15] [ 10] [0319190741] +02:07:41 [ 37] [ 11] [57902806535] +02:07:41 [ 70] [ 3] [001] +02:07:41 ============================================================================ +02:07:41 + + +waiting on router queue for slot.... +02:07:41 ============================================================================ +02:07:41 Slot Id : <173> +02:07:41 Transaction Type : RESPONSE +02:07:41 Received From : +02:07:41 ============================================================================ +02:07:41 FNo. Len. Field Value +02:07:41 ============================================================================ +02:07:41 [ 1] [ 4] [0810] +02:07:41 [ 7] [ 10] [0319190741] +02:07:41 [ 11] [ 6] [806535] +02:07:41 [ 15] [ 4] [0319] +02:07:41 [ 37] [ 12] [57902806535] +02:07:41 [ 39] [ 2] [00] +02:07:41 [ 70] [ 3] [001] +02:07:41 ============================================================================ +02:07:41 Sending to : +02:07:41 ============================================================================ +02:07:41 + + +waiting on router queue for slot.... +02:07:42 ============================================================================ +02:07:42 Slot Id : <230> +02:07:42 Transaction Type : REQUEST +02:07:42 Received From : +02:07:42 ============================================================================ +02:07:42 FNo. Len. Field Value +02:07:42 ============================================================================ +02:07:42 [ 1] [ 4] [0800] +02:07:42 [ 7] [ 10] [0320091930] +02:07:42 [ 11] [ 6] [021930] +02:07:42 [ 37] [ 12] [57902021930] +02:07:42 [ 70] [ 3] [301] +02:07:42 ============================================================================ +02:07:42 + + +waiting on router queue for slot.... +02:07:42 Sending to : +02:07:42 ============================================================================ +02:07:42 ============================================================================ +02:07:42 Slot Id : <230> +02:07:42 Transaction Type : RESPONSE +02:07:42 Received From : +02:07:42 ============================================================================ +02:07:42 FNo. Len. Field Value +02:07:42 ============================================================================ +02:07:42 [ 1] [ 4] [0810] +02:07:42 [ 7] [ 10] [0320091930] +02:07:42 [ 11] [ 6] [021930] +02:07:42 [ 37] [ 12] [579020219300] +02:07:42 [ 39] [ 2] [00] +02:07:42 [ 70] [ 3] [810] +02:07:42 ============================================================================ +02:07:42 Calculate Source COMM Id = 6 +02:07:42 ============================================================================ +02:07:42 + + +waiting on router queue for slot.... +02:07:42 ============================================================================ +02:07:42 Slot Id : <188> +02:07:42 Transaction Type : REQUEST +02:07:42 Received From : +02:07:42 ============================================================================ +02:07:42 FNo. Len. Field Value +02:07:42 ============================================================================ +02:07:42 [ 1] [ 4] [0800] +02:07:42 [ 7] [ 10] [0319070650] +02:07:42 [ 11] [ 6] [153634] +02:07:42 [ 70] [ 3] [301] +02:07:42 ============================================================================ +02:07:42 + + +waiting on router queue for slot.... +02:07:42 Sending to : +02:07:42 ============================================================================ +02:07:42 ============================================================================ +02:07:42 Slot Id : <188> +02:07:42 Transaction Type : RESPONSE +02:07:42 Received From : +02:07:42 ============================================================================ +02:07:42 FNo. Len. Field Value +02:07:42 ============================================================================ +02:07:42 [ 1] [ 4] [0810] +02:07:42 [ 7] [ 10] [0319070650] +02:07:42 [ 11] [ 6] [153634] +02:07:42 [ 39] [ 2] [00] +02:07:42 [ 70] [ 3] [301] +02:07:42 ============================================================================ +02:07:42 Calculate Source COMM Id = 2 +02:07:42 ============================================================================ +02:07:42 + + +waiting on router queue for slot.... +02:07:53 ============================================================================ +02:07:53 Slot Id : <229> +02:07:53 Transaction Type : REQUEST +02:07:53 Received From : +02:07:53 ============================================================================ +02:07:53 FNo. Len. Field Value +02:07:53 ============================================================================ +02:07:53 [ 1] [ 4] [0800] +02:07:53 [ 7] [ 10] [0319070701] +02:07:53 [ 11] [ 6] [153635] +02:07:53 [ 70] [ 3] [301] +02:07:53 ============================================================================ +02:07:53 + + +waiting on router queue for slot.... +02:07:53 Sending to : +02:07:53 ============================================================================ +02:07:53 ============================================================================ +02:07:53 Slot Id : <229> +02:07:53 Transaction Type : RESPONSE +02:07:53 Received From : +02:07:53 ============================================================================ +02:07:53 FNo. Len. Field Value +02:07:53 ============================================================================ +02:07:53 [ 1] [ 4] [0810] +02:07:53 [ 7] [ 10] [0319070701] +02:07:53 [ 11] [ 6] [153635] +02:07:53 [ 39] [ 2] [00] +02:07:53 [ 70] [ 3] [301] +02:07:53 ============================================================================ +02:07:53 Calculate Source COMM Id = 2 +02:07:53 ============================================================================ +02:07:53 + + +waiting on router queue for slot.... +02:08:05 ============================================================================ +02:08:05 Slot Id : <223> +02:08:05 Transaction Type : REQUEST +02:08:05 Received From : +02:08:05 ============================================================================ +02:08:05 FNo. Len. Field Value +02:08:05 ============================================================================ +02:08:05 [ 1] [ 4] [0800] +02:08:05 [ 7] [ 10] [0319070713] +02:08:05 [ 11] [ 6] [153636] +02:08:05 [ 70] [ 3] [301] +02:08:05 ============================================================================ +02:08:05 + + +waiting on router queue for slot.... +02:08:05 Sending to : +02:08:05 ============================================================================ +02:08:05 ============================================================================ +02:08:05 Slot Id : <223> +02:08:05 Transaction Type : RESPONSE +02:08:05 Received From : +02:08:05 ============================================================================ +02:08:05 FNo. Len. Field Value +02:08:05 ============================================================================ +02:08:05 [ 1] [ 4] [0810] +02:08:05 [ 7] [ 10] [0319070713] +02:08:05 [ 11] [ 6] [153636] +02:08:05 [ 39] [ 2] [00] +02:08:05 [ 70] [ 3] [301] +02:08:05 ============================================================================ +02:08:05 Calculate Source COMM Id = 2 +02:08:05 ============================================================================ +02:08:05 + + +waiting on router queue for slot.... +02:08:20 ============================================================================ +02:08:20 Slot Id : <177> +02:08:20 Transaction Type : REQUEST +02:08:20 Received From : +02:08:20 ============================================================================ +02:08:20 FNo. Len. Field Value +02:08:20 ============================================================================ +02:08:20 [ 1] [ 4] [0800] +02:08:20 [ 7] [ 10] [0319070727] +02:08:20 [ 11] [ 6] [153637] +02:08:20 [ 70] [ 3] [301] +02:08:20 ============================================================================ +02:08:20 + + +waiting on router queue for slot.... +02:08:20 Sending to : +02:08:20 ============================================================================ +02:08:20 ============================================================================ +02:08:20 Slot Id : <177> +02:08:20 Transaction Type : RESPONSE +02:08:20 Received From : +02:08:20 ============================================================================ +02:08:20 FNo. Len. Field Value +02:08:20 ============================================================================ +02:08:20 [ 1] [ 4] [0810] +02:08:20 [ 7] [ 10] [0319070727] +02:08:20 [ 11] [ 6] [153637] +02:08:20 [ 39] [ 2] [00] +02:08:20 [ 70] [ 3] [301] +02:08:20 ============================================================================ +02:08:20 Calculate Source COMM Id = 2 +02:08:20 ============================================================================ +02:08:20 + + +waiting on router queue for slot.... +02:08:31 ============================================================================ +02:08:31 Slot Id : <215> +02:08:31 Transaction Type : REQUEST +02:08:31 Received From : +02:08:31 ============================================================================ +02:08:31 FNo. Len. Field Value +02:08:31 ============================================================================ +02:08:31 [ 1] [ 4] [0800] +02:08:31 [ 7] [ 10] [0319070738] +02:08:31 [ 11] [ 6] [153638] +02:08:31 [ 70] [ 3] [301] +02:08:31 ============================================================================ +02:08:31 + + +waiting on router queue for slot.... +02:08:31 Sending to : +02:08:31 ============================================================================ +02:08:31 ============================================================================ +02:08:31 Slot Id : <215> +02:08:31 Transaction Type : RESPONSE +02:08:31 Received From : +02:08:31 ============================================================================ +02:08:31 FNo. Len. Field Value +02:08:31 ============================================================================ +02:08:31 [ 1] [ 4] [0810] +02:08:31 [ 7] [ 10] [0319070738] +02:08:31 [ 11] [ 6] [153638] +02:08:31 [ 39] [ 2] [00] +02:08:31 [ 70] [ 3] [301] +02:08:31 ============================================================================ +02:08:31 Calculate Source COMM Id = 2 +02:08:31 ============================================================================ +02:08:31 + + +waiting on router queue for slot.... +02:08:42 ============================================================================ +02:08:42 Slot Id : <235> +02:08:42 Transaction Type : REQUEST +02:08:42 Received From : +02:08:42 ============================================================================ +02:08:42 FNo. Len. Field Value +02:08:42 ============================================================================ +02:08:42 [ 1] [ 4] [0800] +02:08:42 [ 7] [ 10] [0319070749] +02:08:42 [ 11] [ 6] [153639] +02:08:42 [ 70] [ 3] [301] +02:08:42 ============================================================================ +02:08:42 + + +waiting on router queue for slot.... +02:08:42 Sending to : +02:08:42 ============================================================================ +02:08:42 ============================================================================ +02:08:42 Slot Id : <235> +02:08:42 Transaction Type : RESPONSE +02:08:42 Received From : +02:08:42 ============================================================================ +02:08:42 FNo. Len. Field Value +02:08:42 ============================================================================ +02:08:42 [ 1] [ 4] [0810] +02:08:42 [ 7] [ 10] [0319070749] +02:08:42 [ 11] [ 6] [153639] +02:08:42 [ 39] [ 2] [00] +02:08:42 [ 70] [ 3] [301] +02:08:42 ============================================================================ +02:08:42 Calculate Source COMM Id = 2 +02:08:42 ============================================================================ +02:08:42 + + +waiting on router queue for slot.... +02:08:43 ============================================================================ +02:08:43 Slot Id : <243> +02:08:43 Transaction Type : REQUEST +02:08:43 Received From : +02:08:43 ============================================================================ +02:08:43 FNo. Len. Field Value +02:08:43 ============================================================================ +02:08:43 [ 1] [ 4] [0800] +02:08:43 [ 2] [ 5] [02531] +02:08:43 [ 3] [ 6] [579028] +02:08:43 [ 7] [ 10] [0319190843] +02:08:43 [ 11] [ 6] [806536] +02:08:43 [ 15] [ 10] [0319190843] +02:08:43 [ 37] [ 11] [57902806536] +02:08:43 [ 70] [ 3] [001] +02:08:43 ============================================================================ +02:08:43 + + +waiting on router queue for slot.... +02:08:43 ============================================================================ +02:08:43 Slot Id : <243> +02:08:43 Transaction Type : RESPONSE +02:08:43 Received From : +02:08:43 ============================================================================ +02:08:43 FNo. Len. Field Value +02:08:43 ============================================================================ +02:08:43 [ 1] [ 4] [0810] +02:08:43 [ 7] [ 10] [0319190843] +02:08:43 [ 11] [ 6] [806536] +02:08:43 [ 15] [ 4] [0319] +02:08:43 [ 37] [ 12] [57902806536] +02:08:43 [ 39] [ 2] [00] +02:08:43 [ 70] [ 3] [001] +02:08:43 ============================================================================ +02:08:43 Sending to : +02:08:43 ============================================================================ +02:08:43 + + +waiting on router queue for slot.... +02:08:47 ============================================================================ +02:08:47 Slot Id : <246> +02:08:47 Transaction Type : REQUEST +02:08:47 Received From : +02:08:47 ============================================================================ +02:08:47 FNo. Len. Field Value +02:08:47 ============================================================================ +02:08:47 [ 1] [ 4] [0800] +02:08:47 [ 7] [ 10] [0320092035] +02:08:47 [ 11] [ 6] [022035] +02:08:47 [ 37] [ 12] [57902022035] +02:08:47 [ 70] [ 3] [301] +02:08:47 ============================================================================ +02:08:47 + + +waiting on router queue for slot.... +02:08:47 Sending to : +02:08:47 ============================================================================ +02:08:47 ============================================================================ +02:08:47 Slot Id : <246> +02:08:47 Transaction Type : RESPONSE +02:08:47 Received From : +02:08:47 ============================================================================ +02:08:47 FNo. Len. Field Value +02:08:47 ============================================================================ +02:08:47 [ 1] [ 4] [0810] +02:08:47 [ 7] [ 10] [0320092035] +02:08:47 [ 11] [ 6] [022035] +02:08:47 [ 37] [ 12] [579020220350] +02:08:47 [ 39] [ 2] [00] +02:08:47 [ 70] [ 3] [810] +02:08:47 ============================================================================ +02:08:47 Calculate Source COMM Id = 6 +02:08:47 ============================================================================ +02:08:47 + + +waiting on router queue for slot.... +02:08:52 ============================================================================ +02:08:52 Slot Id : <242> +02:08:52 Transaction Type : REQUEST +02:08:52 Received From : +02:08:52 ============================================================================ +02:08:52 FNo. Len. Field Value +02:08:52 ============================================================================ +02:08:52 [ 1] [ 4] [0800] +02:08:52 [ 7] [ 10] [0319070759] +02:08:52 [ 11] [ 6] [153640] +02:08:52 [ 70] [ 3] [301] +02:08:52 ============================================================================ +02:08:52 + + +waiting on router queue for slot.... +02:08:52 Sending to : +02:08:52 ============================================================================ +02:08:52 ============================================================================ +02:08:52 Slot Id : <242> +02:08:52 Transaction Type : RESPONSE +02:08:52 Received From : +02:08:52 ============================================================================ +02:08:52 FNo. Len. Field Value +02:08:52 ============================================================================ +02:08:52 [ 1] [ 4] [0810] +02:08:52 [ 7] [ 10] [0319070759] +02:08:52 [ 11] [ 6] [153640] +02:08:52 [ 39] [ 2] [00] +02:08:52 [ 70] [ 3] [301] +02:08:52 ============================================================================ +02:08:52 Calculate Source COMM Id = 2 +02:08:52 ============================================================================ +02:08:52 + + +waiting on router queue for slot.... +02:09:03 ============================================================================ +02:09:03 Slot Id : <248> +02:09:03 Transaction Type : REQUEST +02:09:03 Received From : +02:09:03 ============================================================================ +02:09:03 FNo. Len. Field Value +02:09:03 ============================================================================ +02:09:03 [ 1] [ 4] [0800] +02:09:03 [ 7] [ 10] [0319070810] +02:09:03 [ 11] [ 6] [153641] +02:09:03 [ 70] [ 3] [301] +02:09:03 ============================================================================ +02:09:03 + + +waiting on router queue for slot.... +02:09:03 Sending to : +02:09:03 ============================================================================ +02:09:03 ============================================================================ +02:09:03 Slot Id : <248> +02:09:03 Transaction Type : RESPONSE +02:09:03 Received From : +02:09:03 ============================================================================ +02:09:03 FNo. Len. Field Value +02:09:03 ============================================================================ +02:09:03 [ 1] [ 4] [0810] +02:09:03 [ 7] [ 10] [0319070810] +02:09:03 [ 11] [ 6] [153641] +02:09:03 [ 39] [ 2] [00] +02:09:03 [ 70] [ 3] [301] +02:09:03 ============================================================================ +02:09:03 Calculate Source COMM Id = 2 +02:09:03 ============================================================================ +02:09:03 + + +waiting on router queue for slot.... +02:09:13 ============================================================================ +02:09:13 Slot Id : <244> +02:09:13 Transaction Type : REQUEST +02:09:13 Received From : +02:09:13 ============================================================================ +02:09:13 FNo. Len. Field Value +02:09:13 ============================================================================ +02:09:13 [ 1] [ 4] [0800] +02:09:13 [ 7] [ 10] [0319070820] +02:09:13 [ 11] [ 6] [153642] +02:09:13 [ 70] [ 3] [301] +02:09:13 ============================================================================ +02:09:13 + + +waiting on router queue for slot.... +02:09:13 Sending to : +02:09:13 ============================================================================ +02:09:13 ============================================================================ +02:09:13 Slot Id : <244> +02:09:13 Transaction Type : RESPONSE +02:09:13 Received From : +02:09:13 ============================================================================ +02:09:13 FNo. Len. Field Value +02:09:13 ============================================================================ +02:09:13 [ 1] [ 4] [0810] +02:09:13 [ 7] [ 10] [0319070820] +02:09:13 [ 11] [ 6] [153642] +02:09:13 [ 39] [ 2] [00] +02:09:13 [ 70] [ 3] [301] +02:09:13 ============================================================================ +02:09:13 Calculate Source COMM Id = 2 +02:09:13 ============================================================================ +02:09:13 + + +waiting on router queue for slot.... +02:09:25 ============================================================================ +02:09:25 Slot Id : <227> +02:09:25 Transaction Type : REQUEST +02:09:25 Received From : +02:09:25 ============================================================================ +02:09:25 FNo. Len. Field Value +02:09:25 ============================================================================ +02:09:25 [ 1] [ 4] [0800] +02:09:25 [ 7] [ 10] [0319070831] +02:09:25 [ 11] [ 6] [153643] +02:09:25 [ 70] [ 3] [301] +02:09:25 ============================================================================ +02:09:25 + + +waiting on router queue for slot.... +02:09:25 Sending to : +02:09:25 ============================================================================ +02:09:25 ============================================================================ +02:09:25 Slot Id : <227> +02:09:25 Transaction Type : RESPONSE +02:09:25 Received From : +02:09:25 ============================================================================ +02:09:25 FNo. Len. Field Value +02:09:25 ============================================================================ +02:09:25 [ 1] [ 4] [0810] +02:09:25 [ 7] [ 10] [0319070831] +02:09:25 [ 11] [ 6] [153643] +02:09:25 [ 39] [ 2] [00] +02:09:25 [ 70] [ 3] [301] +02:09:25 ============================================================================ +02:09:25 Calculate Source COMM Id = 2 +02:09:25 ============================================================================ +02:09:25 + + +waiting on router queue for slot.... +02:09:40 ============================================================================ +02:09:40 Slot Id : <250> +02:09:40 Transaction Type : REQUEST +02:09:40 Received From : +02:09:40 ============================================================================ +02:09:40 FNo. Len. Field Value +02:09:40 ============================================================================ +02:09:40 [ 1] [ 4] [0800] +02:09:40 [ 7] [ 10] [0319070848] +02:09:40 [ 11] [ 6] [153644] +02:09:40 [ 70] [ 3] [301] +02:09:40 ============================================================================ +02:09:40 + + +waiting on router queue for slot.... +02:09:40 Sending to : +02:09:40 ============================================================================ +02:09:40 ============================================================================ +02:09:40 Slot Id : <250> +02:09:40 Transaction Type : RESPONSE +02:09:40 Received From : +02:09:40 ============================================================================ +02:09:40 FNo. Len. Field Value +02:09:40 ============================================================================ +02:09:40 [ 1] [ 4] [0810] +02:09:40 [ 7] [ 10] [0319070848] +02:09:40 [ 11] [ 6] [153644] +02:09:40 [ 39] [ 2] [00] +02:09:40 [ 70] [ 3] [301] +02:09:40 ============================================================================ +02:09:40 Calculate Source COMM Id = 2 +02:09:40 ============================================================================ +02:09:40 + + +waiting on router queue for slot.... +02:09:45 ============================================================================ +02:09:45 Slot Id : <251> +02:09:45 Transaction Type : REQUEST +02:09:45 Received From : +02:09:45 ============================================================================ +02:09:45 FNo. Len. Field Value +02:09:45 ============================================================================ +02:09:45 [ 1] [ 4] [0800] +02:09:45 [ 2] [ 5] [02531] +02:09:45 [ 3] [ 6] [579028] +02:09:45 [ 7] [ 10] [0319190945] +02:09:45 [ 11] [ 6] [806537] +02:09:45 [ 15] [ 10] [0319190945] +02:09:45 [ 37] [ 11] [57902806537] +02:09:45 [ 70] [ 3] [001] +02:09:45 ============================================================================ +02:09:45 + + +waiting on router queue for slot.... +02:09:45 ============================================================================ +02:09:45 Slot Id : <251> +02:09:45 Transaction Type : RESPONSE +02:09:45 Received From : +02:09:45 ============================================================================ +02:09:45 FNo. Len. Field Value +02:09:45 ============================================================================ +02:09:45 [ 1] [ 4] [0810] +02:09:45 [ 7] [ 10] [0319190945] +02:09:45 [ 11] [ 6] [806537] +02:09:45 [ 15] [ 4] [0319] +02:09:45 [ 37] [ 12] [57902806537] +02:09:45 [ 39] [ 2] [00] +02:09:45 [ 70] [ 3] [001] +02:09:45 ============================================================================ +02:09:45 Sending to : +02:09:45 ============================================================================ +02:09:45 + + +waiting on router queue for slot.... +02:09:51 ============================================================================ +02:09:51 Slot Id : <200> +02:09:51 Transaction Type : REQUEST +02:09:51 Received From : +02:09:51 ============================================================================ +02:09:51 FNo. Len. Field Value +02:09:51 ============================================================================ +02:09:51 [ 1] [ 4] [0800] +02:09:51 [ 7] [ 10] [0319070858] +02:09:51 [ 11] [ 6] [153645] +02:09:51 [ 70] [ 3] [301] +02:09:51 ============================================================================ +02:09:51 + + +waiting on router queue for slot.... +02:09:51 Sending to : +02:09:51 ============================================================================ +02:09:51 ============================================================================ +02:09:51 Slot Id : <200> +02:09:51 Transaction Type : RESPONSE +02:09:51 Received From : +02:09:51 ============================================================================ +02:09:51 FNo. Len. Field Value +02:09:51 ============================================================================ +02:09:51 [ 1] [ 4] [0810] +02:09:51 [ 7] [ 10] [0319070858] +02:09:51 [ 11] [ 6] [153645] +02:09:51 [ 39] [ 2] [00] +02:09:51 [ 70] [ 3] [301] +02:09:51 ============================================================================ +02:09:51 Calculate Source COMM Id = 2 +02:09:51 ============================================================================ +02:09:51 + + +waiting on router queue for slot.... +02:09:52 ============================================================================ +02:09:52 Slot Id : <226> +02:09:52 Transaction Type : REQUEST +02:09:52 Received From : +02:09:52 ============================================================================ +02:09:52 FNo. Len. Field Value +02:09:52 ============================================================================ +02:09:52 [ 1] [ 4] [0800] +02:09:52 [ 7] [ 10] [0320092140] +02:09:52 [ 11] [ 6] [022140] +02:09:52 [ 37] [ 12] [57902022140] +02:09:52 [ 70] [ 3] [301] +02:09:52 ============================================================================ +02:09:52 + + +waiting on router queue for slot.... +02:09:52 Sending to : +02:09:52 ============================================================================ +02:09:52 ============================================================================ +02:09:52 Slot Id : <226> +02:09:52 Transaction Type : RESPONSE +02:09:52 Received From : +02:09:52 ============================================================================ +02:09:52 FNo. Len. Field Value +02:09:52 ============================================================================ +02:09:52 [ 1] [ 4] [0810] +02:09:52 [ 7] [ 10] [0320092140] +02:09:52 [ 11] [ 6] [022140] +02:09:52 [ 37] [ 12] [579020221400] +02:09:52 [ 39] [ 2] [00] +02:09:52 [ 70] [ 3] [810] +02:09:52 ============================================================================ +02:09:52 Calculate Source COMM Id = 6 +02:09:52 ============================================================================ +02:09:52 + + +waiting on router queue for slot.... +02:09:56 ============================================================================ +02:09:56 Slot Id : <255> +02:09:56 Transaction Type : REQUEST +02:09:56 Received From : +02:09:56 ============================================================================ +02:09:56 FNo. Len. Field Value +02:09:56 ============================================================================ +02:09:56 [ 1] [ 4] [0800] +02:09:56 [ 7] [ 10] [0319191742] +02:09:56 [ 11] [ 6] [057464] +02:09:56 [ 37] [ 12] [57902057464] +02:09:56 [ 70] [ 3] [301] +02:09:56 ============================================================================ +02:09:56 + + +waiting on router queue for slot.... +02:09:56 Sending to : +02:09:56 ============================================================================ +02:09:56 ============================================================================ +02:09:56 Slot Id : <255> +02:09:56 Transaction Type : RESPONSE +02:09:56 Received From : +02:09:56 ============================================================================ +02:09:56 FNo. Len. Field Value +02:09:56 ============================================================================ +02:09:56 [ 1] [ 4] [0810] +02:09:56 [ 7] [ 10] [0319191742] +02:09:56 [ 11] [ 6] [057464] +02:09:56 [ 37] [ 12] [579020574640] +02:09:56 [ 39] [ 2] [00] +02:09:56 [ 70] [ 3] [810] +02:09:56 ============================================================================ +02:09:56 Calculate Source COMM Id = 1 +02:09:56 ============================================================================ +02:09:56 + + +waiting on router queue for slot.... +02:10:02 ============================================================================ +02:10:02 Slot Id : <233> +02:10:02 Transaction Type : REQUEST +02:10:02 Received From : +02:10:02 ============================================================================ +02:10:02 FNo. Len. Field Value +02:10:02 ============================================================================ +02:10:02 [ 1] [ 4] [0800] +02:10:02 [ 7] [ 10] [0319070909] +02:10:02 [ 11] [ 6] [153646] +02:10:02 [ 70] [ 3] [301] +02:10:02 ============================================================================ +02:10:02 + + +waiting on router queue for slot.... +02:10:02 Sending to : +02:10:02 ============================================================================ +02:10:02 ============================================================================ +02:10:02 Slot Id : <233> +02:10:02 Transaction Type : RESPONSE +02:10:02 Received From : +02:10:02 ============================================================================ +02:10:02 FNo. Len. Field Value +02:10:02 ============================================================================ +02:10:02 [ 1] [ 4] [0810] +02:10:02 [ 7] [ 10] [0319070909] +02:10:02 [ 11] [ 6] [153646] +02:10:02 [ 39] [ 2] [00] +02:10:02 [ 70] [ 3] [301] +02:10:02 ============================================================================ +02:10:02 Calculate Source COMM Id = 2 +02:10:02 ============================================================================ +02:10:02 + + +waiting on router queue for slot.... +02:10:12 ============================================================================ +02:10:12 Slot Id : <238> +02:10:12 Transaction Type : REQUEST +02:10:12 Received From : +02:10:12 ============================================================================ +02:10:12 FNo. Len. Field Value +02:10:12 ============================================================================ +02:10:12 [ 1] [ 4] [0800] +02:10:12 [ 7] [ 10] [0319070919] +02:10:12 [ 11] [ 6] [153647] +02:10:12 [ 70] [ 3] [301] +02:10:12 ============================================================================ +02:10:12 + + +waiting on router queue for slot.... +02:10:12 Sending to : +02:10:12 ============================================================================ +02:10:12 ============================================================================ +02:10:12 Slot Id : <238> +02:10:12 Transaction Type : RESPONSE +02:10:12 Received From : +02:10:12 ============================================================================ +02:10:12 FNo. Len. Field Value +02:10:12 ============================================================================ +02:10:12 [ 1] [ 4] [0810] +02:10:12 [ 7] [ 10] [0319070919] +02:10:12 [ 11] [ 6] [153647] +02:10:12 [ 39] [ 2] [00] +02:10:12 [ 70] [ 3] [301] +02:10:12 ============================================================================ +02:10:12 Calculate Source COMM Id = 2 +02:10:12 ============================================================================ +02:10:12 + + +waiting on router queue for slot.... +02:10:24 ============================================================================ +02:10:24 Slot Id : <216> +02:10:24 Transaction Type : REQUEST +02:10:24 Received From : +02:10:24 ============================================================================ +02:10:24 FNo. Len. Field Value +02:10:24 ============================================================================ +02:10:24 [ 1] [ 4] [0800] +02:10:24 [ 7] [ 10] [0319070930] +02:10:24 [ 11] [ 6] [153648] +02:10:24 [ 70] [ 3] [301] +02:10:24 ============================================================================ +02:10:24 + + +waiting on router queue for slot.... +02:10:24 Sending to : +02:10:24 ============================================================================ +02:10:24 ============================================================================ +02:10:24 Slot Id : <216> +02:10:24 Transaction Type : RESPONSE +02:10:24 Received From : +02:10:24 ============================================================================ +02:10:24 FNo. Len. Field Value +02:10:24 ============================================================================ +02:10:24 [ 1] [ 4] [0810] +02:10:24 [ 7] [ 10] [0319070930] +02:10:24 [ 11] [ 6] [153648] +02:10:24 [ 39] [ 2] [00] +02:10:24 [ 70] [ 3] [301] +02:10:24 ============================================================================ +02:10:24 Calculate Source COMM Id = 2 +02:10:24 ============================================================================ +02:10:24 + + +waiting on router queue for slot.... +02:10:38 ============================================================================ +02:10:38 Slot Id : <234> +02:10:38 Transaction Type : REQUEST +02:10:38 Received From : +02:10:38 ============================================================================ +02:10:38 FNo. Len. Field Value +02:10:38 ============================================================================ +02:10:38 [ 1] [ 4] [0800] +02:10:38 [ 7] [ 10] [0319070945] +02:10:38 [ 11] [ 6] [153649] +02:10:38 [ 70] [ 3] [301] +02:10:38 ============================================================================ +02:10:38 + + +waiting on router queue for slot.... +02:10:38 Sending to : +02:10:38 ============================================================================ +02:10:38 ============================================================================ +02:10:38 Slot Id : <234> +02:10:38 Transaction Type : RESPONSE +02:10:38 Received From : +02:10:38 ============================================================================ +02:10:38 FNo. Len. Field Value +02:10:38 ============================================================================ +02:10:38 [ 1] [ 4] [0810] +02:10:38 [ 7] [ 10] [0319070945] +02:10:38 [ 11] [ 6] [153649] +02:10:38 [ 39] [ 2] [00] +02:10:38 [ 70] [ 3] [301] +02:10:38 ============================================================================ +02:10:38 Calculate Source COMM Id = 2 +02:10:38 ============================================================================ +02:10:38 + + +waiting on router queue for slot.... +02:10:47 ============================================================================ +02:10:47 Slot Id : <253> +02:10:47 Transaction Type : REQUEST +02:10:47 Received From : +02:10:47 ============================================================================ +02:10:47 FNo. Len. Field Value +02:10:47 ============================================================================ +02:10:47 [ 1] [ 4] [0800] +02:10:47 [ 2] [ 5] [02531] +02:10:47 [ 3] [ 6] [579028] +02:10:47 [ 7] [ 10] [0319191047] +02:10:47 [ 11] [ 6] [806538] +02:10:47 [ 15] [ 10] [0319191047] +02:10:47 [ 37] [ 11] [57902806538] +02:10:47 [ 70] [ 3] [001] +02:10:47 ============================================================================ +02:10:47 + + +waiting on router queue for slot.... +02:10:47 ============================================================================ +02:10:47 Slot Id : <253> +02:10:47 Transaction Type : RESPONSE +02:10:47 Received From : +02:10:47 ============================================================================ +02:10:47 FNo. Len. Field Value +02:10:47 ============================================================================ +02:10:47 [ 1] [ 4] [0810] +02:10:47 [ 7] [ 10] [0319191047] +02:10:47 [ 11] [ 6] [806538] +02:10:47 [ 15] [ 4] [0319] +02:10:47 [ 37] [ 12] [57902806538] +02:10:47 [ 39] [ 2] [00] +02:10:47 [ 70] [ 3] [001] +02:10:47 ============================================================================ +02:10:47 Sending to : +02:10:47 ============================================================================ +02:10:47 + + +waiting on router queue for slot.... +02:10:48 ============================================================================ +02:10:48 Slot Id : <237> +02:10:48 Transaction Type : REQUEST +02:10:48 Received From : +02:10:48 ============================================================================ +02:10:48 FNo. Len. Field Value +02:10:48 ============================================================================ +02:10:48 [ 1] [ 4] [0800] +02:10:48 [ 7] [ 10] [0319070955] +02:10:48 [ 11] [ 6] [153650] +02:10:48 [ 70] [ 3] [301] +02:10:48 ============================================================================ +02:10:48 + + +waiting on router queue for slot.... +02:10:48 Sending to : +02:10:48 ============================================================================ +02:10:48 ============================================================================ +02:10:48 Slot Id : <237> +02:10:48 Transaction Type : RESPONSE +02:10:48 Received From : +02:10:48 ============================================================================ +02:10:48 FNo. Len. Field Value +02:10:48 ============================================================================ +02:10:48 [ 1] [ 4] [0810] +02:10:48 [ 7] [ 10] [0319070955] +02:10:48 [ 11] [ 6] [153650] +02:10:48 [ 39] [ 2] [00] +02:10:48 [ 70] [ 3] [301] +02:10:48 ============================================================================ +02:10:48 Calculate Source COMM Id = 2 +02:10:48 ============================================================================ +02:10:48 + + +waiting on router queue for slot.... +02:10:57 ============================================================================ +02:10:57 Slot Id : <220> +02:10:57 Transaction Type : REQUEST +02:10:57 Received From : +02:10:57 ============================================================================ +02:10:57 FNo. Len. Field Value +02:10:57 ============================================================================ +02:10:57 [ 1] [ 4] [0800] +02:10:57 [ 7] [ 10] [0320092245] +02:10:57 [ 11] [ 6] [022245] +02:10:57 [ 37] [ 12] [57902022245] +02:10:57 [ 70] [ 3] [301] +02:10:57 ============================================================================ +02:10:57 + + +waiting on router queue for slot.... +02:10:57 Sending to : +02:10:57 ============================================================================ +02:10:57 ============================================================================ +02:10:57 Slot Id : <220> +02:10:57 Transaction Type : RESPONSE +02:10:57 Received From : +02:10:57 ============================================================================ +02:10:57 FNo. Len. Field Value +02:10:57 ============================================================================ +02:10:57 [ 1] [ 4] [0810] +02:10:57 [ 7] [ 10] [0320092245] +02:10:57 [ 11] [ 6] [022245] +02:10:57 [ 37] [ 12] [579020222450] +02:10:57 [ 39] [ 2] [00] +02:10:57 [ 70] [ 3] [810] +02:10:57 ============================================================================ +02:10:57 Calculate Source COMM Id = 6 +02:10:57 ============================================================================ +02:10:57 + + +waiting on router queue for slot.... +02:10:59 ============================================================================ +02:10:59 Slot Id : <210> +02:10:59 Transaction Type : REQUEST +02:10:59 Received From : +02:10:59 ============================================================================ +02:10:59 FNo. Len. Field Value +02:10:59 ============================================================================ +02:10:59 [ 1] [ 4] [0800] +02:10:59 [ 7] [ 10] [0319071006] +02:10:59 [ 11] [ 6] [153651] +02:10:59 [ 70] [ 3] [301] +02:10:59 ============================================================================ +02:10:59 + + +waiting on router queue for slot.... +02:10:59 Sending to : +02:10:59 ============================================================================ +02:10:59 ============================================================================ +02:10:59 Slot Id : <210> +02:10:59 Transaction Type : RESPONSE +02:10:59 Received From : +02:10:59 ============================================================================ +02:10:59 FNo. Len. Field Value +02:10:59 ============================================================================ +02:10:59 [ 1] [ 4] [0810] +02:10:59 [ 7] [ 10] [0319071006] +02:10:59 [ 11] [ 6] [153651] +02:10:59 [ 39] [ 2] [00] +02:10:59 [ 70] [ 3] [301] +02:10:59 ============================================================================ +02:10:59 Calculate Source COMM Id = 2 +02:10:59 ============================================================================ +02:10:59 + + +waiting on router queue for slot.... +02:11:10 ============================================================================ +02:11:10 Slot Id : <249> +02:11:10 Transaction Type : REQUEST +02:11:10 Received From : +02:11:10 ============================================================================ +02:11:10 FNo. Len. Field Value +02:11:10 ============================================================================ +02:11:10 [ 1] [ 4] [0800] +02:11:10 [ 7] [ 10] [0319071016] +02:11:10 [ 11] [ 6] [153652] +02:11:10 [ 70] [ 3] [301] +02:11:10 ============================================================================ +02:11:10 + + +waiting on router queue for slot.... +02:11:10 Sending to : +02:11:10 ============================================================================ +02:11:10 ============================================================================ +02:11:10 Slot Id : <249> +02:11:10 Transaction Type : RESPONSE +02:11:10 Received From : +02:11:10 ============================================================================ +02:11:10 FNo. Len. Field Value +02:11:10 ============================================================================ +02:11:10 [ 1] [ 4] [0810] +02:11:10 [ 7] [ 10] [0319071016] +02:11:10 [ 11] [ 6] [153652] +02:11:10 [ 39] [ 2] [00] +02:11:10 [ 70] [ 3] [301] +02:11:10 ============================================================================ +02:11:10 Calculate Source COMM Id = 2 +02:11:10 ============================================================================ +02:11:10 + + +waiting on router queue for slot.... +02:11:21 ============================================================================ +02:11:21 Slot Id : <260> +02:11:21 Transaction Type : REQUEST +02:11:21 Received From : +02:11:21 ============================================================================ +02:11:21 FNo. Len. Field Value +02:11:21 ============================================================================ +02:11:21 [ 1] [ 4] [0800] +02:11:21 [ 7] [ 10] [0319190912] +02:11:21 [ 11] [ 6] [072586] +02:11:21 [ 37] [ 12] [57902072586] +02:11:21 [ 70] [ 3] [301] +02:11:21 ============================================================================ +02:11:21 + + +waiting on router queue for slot.... +02:11:21 Sending to : +02:11:21 ============================================================================ +02:11:21 ============================================================================ +02:11:21 Slot Id : <260> +02:11:21 Transaction Type : RESPONSE +02:11:21 Received From : +02:11:21 ============================================================================ +02:11:21 FNo. Len. Field Value +02:11:21 ============================================================================ +02:11:21 [ 1] [ 4] [0810] +02:11:21 [ 7] [ 10] [0319190912] +02:11:21 [ 11] [ 6] [072586] +02:11:21 [ 37] [ 12] [579020725860] +02:11:21 [ 39] [ 2] [00] +02:11:21 [ 70] [ 3] [810] +02:11:21 ============================================================================ +02:11:21 Calculate Source COMM Id = 4 +02:11:21 ============================================================================ +02:11:21 + + +waiting on router queue for slot.... +02:11:25 ============================================================================ +02:11:25 Slot Id : <199> +02:11:25 Transaction Type : REQUEST +02:11:25 Received From : +02:11:25 ============================================================================ +02:11:25 FNo. Len. Field Value +02:11:25 ============================================================================ +02:11:25 [ 1] [ 4] [0800] +02:11:25 [ 7] [ 10] [0319071032] +02:11:25 [ 11] [ 6] [153653] +02:11:25 [ 70] [ 3] [301] +02:11:25 ============================================================================ +02:11:25 + + +waiting on router queue for slot.... +02:11:25 Sending to : +02:11:25 ============================================================================ +02:11:25 ============================================================================ +02:11:25 Slot Id : <199> +02:11:25 Transaction Type : RESPONSE +02:11:25 Received From : +02:11:25 ============================================================================ +02:11:25 FNo. Len. Field Value +02:11:25 ============================================================================ +02:11:25 [ 1] [ 4] [0810] +02:11:25 [ 7] [ 10] [0319071032] +02:11:25 [ 11] [ 6] [153653] +02:11:25 [ 39] [ 2] [00] +02:11:25 [ 70] [ 3] [301] +02:11:25 ============================================================================ +02:11:25 Calculate Source COMM Id = 2 +02:11:25 ============================================================================ +02:11:25 + + +waiting on router queue for slot.... +02:11:36 ============================================================================ +02:11:36 Slot Id : <259> +02:11:36 Transaction Type : REQUEST +02:11:36 Received From : +02:11:36 ============================================================================ +02:11:36 FNo. Len. Field Value +02:11:36 ============================================================================ +02:11:36 [ 1] [ 4] [0800] +02:11:36 [ 7] [ 10] [0319071043] +02:11:36 [ 11] [ 6] [153654] +02:11:36 [ 70] [ 3] [301] +02:11:36 ============================================================================ +02:11:36 + + +waiting on router queue for slot.... +02:11:36 Sending to : +02:11:36 ============================================================================ +02:11:36 ============================================================================ +02:11:36 Slot Id : <259> +02:11:36 Transaction Type : RESPONSE +02:11:36 Received From : +02:11:36 ============================================================================ +02:11:36 FNo. Len. Field Value +02:11:36 ============================================================================ +02:11:36 [ 1] [ 4] [0810] +02:11:36 [ 7] [ 10] [0319071043] +02:11:36 [ 11] [ 6] [153654] +02:11:36 [ 39] [ 2] [00] +02:11:36 [ 70] [ 3] [301] +02:11:36 ============================================================================ +02:11:36 Calculate Source COMM Id = 2 +02:11:36 ============================================================================ +02:11:36 + + +waiting on router queue for slot.... +02:11:49 ============================================================================ +02:11:49 Slot Id : <263> +02:11:49 Transaction Type : REQUEST +02:11:49 Received From : +02:11:49 ============================================================================ +02:11:49 FNo. Len. Field Value +02:11:49 ============================================================================ +02:11:49 [ 1] [ 4] [0800] +02:11:49 [ 2] [ 5] [02531] +02:11:49 [ 3] [ 6] [579028] +02:11:49 [ 7] [ 10] [0319191149] +02:11:49 [ 11] [ 6] [806539] +02:11:49 [ 15] [ 10] [0319191149] +02:11:49 [ 37] [ 11] [57902806539] +02:11:49 [ 70] [ 3] [001] +02:11:49 ============================================================================ +02:11:49 + + +waiting on router queue for slot.... +02:11:49 ============================================================================ +02:11:49 Slot Id : <263> +02:11:49 Transaction Type : RESPONSE +02:11:49 Received From : +02:11:49 ============================================================================ +02:11:49 FNo. Len. Field Value +02:11:49 ============================================================================ +02:11:49 [ 1] [ 4] [0810] +02:11:49 [ 7] [ 10] [0319191149] +02:11:49 [ 11] [ 6] [806539] +02:11:49 [ 15] [ 4] [0319] +02:11:49 [ 37] [ 12] [57902806539] +02:11:49 [ 39] [ 2] [00] +02:11:49 [ 70] [ 3] [001] +02:11:49 ============================================================================ +02:11:49 Sending to : +02:11:49 ============================================================================ +02:11:49 + + +waiting on router queue for slot.... +02:11:51 ============================================================================ +02:11:51 Slot Id : <261> +02:11:51 Transaction Type : REQUEST +02:11:51 Received From : +02:11:51 ============================================================================ +02:11:51 FNo. Len. Field Value +02:11:51 ============================================================================ +02:11:51 [ 1] [ 4] [0800] +02:11:51 [ 7] [ 10] [0319071059] +02:11:51 [ 11] [ 6] [153655] +02:11:51 [ 70] [ 3] [301] +02:11:51 ============================================================================ +02:11:51 + + +waiting on router queue for slot.... +02:11:51 Sending to : +02:11:51 ============================================================================ +02:11:51 ============================================================================ +02:11:51 Slot Id : <261> +02:11:51 Transaction Type : RESPONSE +02:11:51 Received From : +02:11:51 ============================================================================ +02:11:51 FNo. Len. Field Value +02:11:51 ============================================================================ +02:11:51 [ 1] [ 4] [0810] +02:11:51 [ 7] [ 10] [0319071059] +02:11:51 [ 11] [ 6] [153655] +02:11:51 [ 39] [ 2] [00] +02:11:51 [ 70] [ 3] [301] +02:11:51 ============================================================================ +02:11:51 Calculate Source COMM Id = 2 +02:11:51 ============================================================================ +02:11:51 + + +waiting on router queue for slot.... +02:12:02 ============================================================================ +02:12:02 Slot Id : <270> +02:12:02 Transaction Type : REQUEST +02:12:02 Received From : +02:12:02 ============================================================================ +02:12:02 FNo. Len. Field Value +02:12:02 ============================================================================ +02:12:02 [ 1] [ 4] [0800] +02:12:02 [ 7] [ 10] [0320092350] +02:12:02 [ 11] [ 6] [022350] +02:12:02 [ 37] [ 12] [57902022350] +02:12:02 [ 70] [ 3] [301] +02:12:02 ============================================================================ +02:12:02 + + +waiting on router queue for slot.... +02:12:02 Sending to : +02:12:02 ============================================================================ +02:12:02 ============================================================================ +02:12:02 Slot Id : <270> +02:12:02 Transaction Type : RESPONSE +02:12:02 Received From : +02:12:02 ============================================================================ +02:12:02 FNo. Len. Field Value +02:12:02 ============================================================================ +02:12:02 [ 1] [ 4] [0810] +02:12:02 [ 7] [ 10] [0320092350] +02:12:02 [ 11] [ 6] [022350] +02:12:02 [ 37] [ 12] [579020223500] +02:12:02 [ 39] [ 2] [00] +02:12:02 [ 70] [ 3] [810] +02:12:02 ============================================================================ +02:12:02 Calculate Source COMM Id = 6 +02:12:02 ============================================================================ +02:12:02 + + +waiting on router queue for slot.... +02:12:08 ============================================================================ +02:12:08 Slot Id : <269> +02:12:08 Transaction Type : REQUEST +02:12:08 Received From : +02:12:08 ============================================================================ +02:12:08 FNo. Len. Field Value +02:12:08 ============================================================================ +02:12:08 [ 1] [ 4] [0800] +02:12:08 [ 7] [ 10] [0319071115] +02:12:08 [ 11] [ 6] [153656] +02:12:08 [ 70] [ 3] [301] +02:12:08 ============================================================================ +02:12:08 + + +waiting on router queue for slot.... +02:12:08 Sending to : +02:12:08 ============================================================================ +02:12:08 ============================================================================ +02:12:08 Slot Id : <269> +02:12:08 Transaction Type : RESPONSE +02:12:08 Received From : +02:12:08 ============================================================================ +02:12:08 FNo. Len. Field Value +02:12:08 ============================================================================ +02:12:08 [ 1] [ 4] [0810] +02:12:08 [ 7] [ 10] [0319071115] +02:12:08 [ 11] [ 6] [153656] +02:12:08 [ 39] [ 2] [00] +02:12:08 [ 70] [ 3] [301] +02:12:08 ============================================================================ +02:12:08 Calculate Source COMM Id = 2 +02:12:08 ============================================================================ +02:12:08 + + +waiting on router queue for slot.... +02:12:23 ============================================================================ +02:12:23 Slot Id : <256> +02:12:23 Transaction Type : REQUEST +02:12:23 Received From : +02:12:23 ============================================================================ +02:12:23 FNo. Len. Field Value +02:12:23 ============================================================================ +02:12:23 [ 1] [ 4] [0800] +02:12:23 [ 7] [ 10] [0319071131] +02:12:23 [ 11] [ 6] [153657] +02:12:23 [ 70] [ 3] [301] +02:12:23 ============================================================================ +02:12:23 + + +waiting on router queue for slot.... +02:12:23 Sending to : +02:12:23 ============================================================================ +02:12:23 ============================================================================ +02:12:23 Slot Id : <256> +02:12:23 Transaction Type : RESPONSE +02:12:23 Received From : +02:12:23 ============================================================================ +02:12:23 FNo. Len. Field Value +02:12:23 ============================================================================ +02:12:23 [ 1] [ 4] [0810] +02:12:23 [ 7] [ 10] [0319071131] +02:12:23 [ 11] [ 6] [153657] +02:12:23 [ 39] [ 2] [00] +02:12:23 [ 70] [ 3] [301] +02:12:23 ============================================================================ +02:12:23 Calculate Source COMM Id = 2 +02:12:23 ============================================================================ +02:12:23 + + +waiting on router queue for slot.... +02:12:34 ============================================================================ +02:12:34 Slot Id : <197> +02:12:34 Transaction Type : REQUEST +02:12:34 Received From : +02:12:34 ============================================================================ +02:12:34 FNo. Len. Field Value +02:12:34 ============================================================================ +02:12:34 [ 1] [ 4] [0800] +02:12:34 [ 7] [ 10] [0319071141] +02:12:34 [ 11] [ 6] [153658] +02:12:34 [ 70] [ 3] [301] +02:12:34 ============================================================================ +02:12:34 + + +waiting on router queue for slot.... +02:12:34 Sending to : +02:12:34 ============================================================================ +02:12:34 ============================================================================ +02:12:34 Slot Id : <197> +02:12:34 Transaction Type : RESPONSE +02:12:34 Received From : +02:12:34 ============================================================================ +02:12:34 FNo. Len. Field Value +02:12:34 ============================================================================ +02:12:34 [ 1] [ 4] [0810] +02:12:34 [ 7] [ 10] [0319071141] +02:12:34 [ 11] [ 6] [153658] +02:12:34 [ 39] [ 2] [00] +02:12:34 [ 70] [ 3] [301] +02:12:34 ============================================================================ +02:12:34 Calculate Source COMM Id = 2 +02:12:34 ============================================================================ +02:12:34 + + +waiting on router queue for slot.... +02:12:50 ============================================================================ +02:12:50 Slot Id : <240> +02:12:50 Transaction Type : REQUEST +02:12:50 Received From : +02:12:50 ============================================================================ +02:12:50 FNo. Len. Field Value +02:12:50 ============================================================================ +02:12:50 [ 1] [ 4] [0800] +02:12:50 [ 7] [ 10] [0319071157] +02:12:50 [ 11] [ 6] [153659] +02:12:50 [ 70] [ 3] [301] +02:12:50 ============================================================================ +02:12:50 + + +waiting on router queue for slot.... +02:12:50 Sending to : +02:12:50 ============================================================================ +02:12:50 ============================================================================ +02:12:50 Slot Id : <240> +02:12:50 Transaction Type : RESPONSE +02:12:50 Received From : +02:12:50 ============================================================================ +02:12:50 FNo. Len. Field Value +02:12:50 ============================================================================ +02:12:50 [ 1] [ 4] [0810] +02:12:50 [ 7] [ 10] [0319071157] +02:12:50 [ 11] [ 6] [153659] +02:12:50 [ 39] [ 2] [00] +02:12:50 [ 70] [ 3] [301] +02:12:50 ============================================================================ +02:12:50 Calculate Source COMM Id = 2 +02:12:50 ============================================================================ +02:12:50 + + +waiting on router queue for slot.... +02:12:51 ============================================================================ +02:12:51 Slot Id : <228> +02:12:51 Transaction Type : REQUEST +02:12:51 Received From : +02:12:51 ============================================================================ +02:12:51 FNo. Len. Field Value +02:12:51 ============================================================================ +02:12:51 [ 1] [ 4] [0800] +02:12:51 [ 2] [ 5] [02531] +02:12:51 [ 3] [ 6] [579028] +02:12:51 [ 7] [ 10] [0319191251] +02:12:51 [ 11] [ 6] [806540] +02:12:51 [ 15] [ 10] [0319191251] +02:12:51 [ 37] [ 11] [57902806540] +02:12:51 [ 70] [ 3] [001] +02:12:51 ============================================================================ +02:12:51 + + +waiting on router queue for slot.... +02:12:51 ============================================================================ +02:12:51 Slot Id : <228> +02:12:51 Transaction Type : RESPONSE +02:12:51 Received From : +02:12:51 ============================================================================ +02:12:51 FNo. Len. Field Value +02:12:51 ============================================================================ +02:12:51 [ 1] [ 4] [0810] +02:12:51 [ 7] [ 10] [0319191251] +02:12:51 [ 11] [ 6] [806540] +02:12:51 [ 15] [ 4] [0319] +02:12:51 [ 37] [ 12] [57902806540] +02:12:51 [ 39] [ 2] [00] +02:12:51 [ 70] [ 3] [001] +02:12:51 ============================================================================ +02:12:51 Sending to : +02:12:51 ============================================================================ +02:12:51 + + +waiting on router queue for slot.... +02:13:01 ============================================================================ +02:13:01 Slot Id : <265> +02:13:01 Transaction Type : REQUEST +02:13:01 Received From : +02:13:01 ============================================================================ +02:13:01 FNo. Len. Field Value +02:13:01 ============================================================================ +02:13:01 [ 1] [ 4] [0800] +02:13:01 [ 7] [ 10] [0319071208] +02:13:01 [ 11] [ 6] [153660] +02:13:01 [ 70] [ 3] [301] +02:13:01 ============================================================================ +02:13:01 + + +waiting on router queue for slot.... +02:13:01 Sending to : +02:13:01 ============================================================================ +02:13:01 ============================================================================ +02:13:01 Slot Id : <265> +02:13:01 Transaction Type : RESPONSE +02:13:01 Received From : +02:13:01 ============================================================================ +02:13:01 FNo. Len. Field Value +02:13:01 ============================================================================ +02:13:01 [ 1] [ 4] [0810] +02:13:01 [ 7] [ 10] [0319071208] +02:13:01 [ 11] [ 6] [153660] +02:13:01 [ 39] [ 2] [00] +02:13:01 [ 70] [ 3] [301] +02:13:01 ============================================================================ +02:13:01 Calculate Source COMM Id = 2 +02:13:01 ============================================================================ +02:13:01 + + +waiting on router queue for slot.... +02:13:07 ============================================================================ +02:13:07 Slot Id : <275> +02:13:07 Transaction Type : REQUEST +02:13:07 Received From : +02:13:07 ============================================================================ +02:13:07 FNo. Len. Field Value +02:13:07 ============================================================================ +02:13:07 [ 1] [ 4] [0800] +02:13:07 [ 7] [ 10] [0320092455] +02:13:07 [ 11] [ 6] [022455] +02:13:07 [ 37] [ 12] [57902022455] +02:13:07 [ 70] [ 3] [301] +02:13:07 ============================================================================ +02:13:07 + + +waiting on router queue for slot.... +02:13:07 Sending to : +02:13:07 ============================================================================ +02:13:07 ============================================================================ +02:13:07 Slot Id : <275> +02:13:07 Transaction Type : RESPONSE +02:13:07 Received From : +02:13:07 ============================================================================ +02:13:07 FNo. Len. Field Value +02:13:07 ============================================================================ +02:13:07 [ 1] [ 4] [0810] +02:13:07 [ 7] [ 10] [0320092455] +02:13:07 [ 11] [ 6] [022455] +02:13:07 [ 37] [ 12] [579020224550] +02:13:07 [ 39] [ 2] [00] +02:13:07 [ 70] [ 3] [810] +02:13:07 ============================================================================ +02:13:07 Calculate Source COMM Id = 6 +02:13:07 ============================================================================ +02:13:07 + + +waiting on router queue for slot.... +02:13:11 ============================================================================ +02:13:11 Slot Id : <247> +02:13:11 Transaction Type : REQUEST +02:13:11 Received From : +02:13:11 ============================================================================ +02:13:11 FNo. Len. Field Value +02:13:11 ============================================================================ +02:13:11 [ 1] [ 4] [0800] +02:13:11 [ 7] [ 10] [0319071219] +02:13:11 [ 11] [ 6] [153661] +02:13:11 [ 70] [ 3] [301] +02:13:11 ============================================================================ +02:13:11 + + +waiting on router queue for slot.... +02:13:11 Sending to : +02:13:11 ============================================================================ +02:13:11 ============================================================================ +02:13:11 Slot Id : <247> +02:13:11 Transaction Type : RESPONSE +02:13:11 Received From : +02:13:11 ============================================================================ +02:13:11 FNo. Len. Field Value +02:13:11 ============================================================================ +02:13:11 [ 1] [ 4] [0810] +02:13:11 [ 7] [ 10] [0319071219] +02:13:11 [ 11] [ 6] [153661] +02:13:11 [ 39] [ 2] [00] +02:13:11 [ 70] [ 3] [301] +02:13:11 ============================================================================ +02:13:11 Calculate Source COMM Id = 2 +02:13:11 ============================================================================ +02:13:11 + + +waiting on router queue for slot.... +02:13:22 ============================================================================ +02:13:22 Slot Id : <218> +02:13:22 Transaction Type : REQUEST +02:13:22 Received From : +02:13:22 ============================================================================ +02:13:22 FNo. Len. Field Value +02:13:22 ============================================================================ +02:13:22 [ 1] [ 4] [0800] +02:13:22 [ 7] [ 10] [0319071230] +02:13:22 [ 11] [ 6] [153662] +02:13:22 [ 70] [ 3] [301] +02:13:22 ============================================================================ +02:13:22 + + +waiting on router queue for slot.... +02:13:22 Sending to : +02:13:22 ============================================================================ +02:13:22 ============================================================================ +02:13:22 Slot Id : <218> +02:13:22 Transaction Type : RESPONSE +02:13:22 Received From : +02:13:22 ============================================================================ +02:13:22 FNo. Len. Field Value +02:13:22 ============================================================================ +02:13:22 [ 1] [ 4] [0810] +02:13:22 [ 7] [ 10] [0319071230] +02:13:22 [ 11] [ 6] [153662] +02:13:22 [ 39] [ 2] [00] +02:13:22 [ 70] [ 3] [301] +02:13:22 ============================================================================ +02:13:22 Calculate Source COMM Id = 2 +02:13:22 ============================================================================ +02:13:22 + + +waiting on router queue for slot.... +02:13:34 ============================================================================ +02:13:34 Slot Id : <274> +02:13:34 Transaction Type : REQUEST +02:13:34 Received From : +02:13:34 ============================================================================ +02:13:34 FNo. Len. Field Value +02:13:34 ============================================================================ +02:13:34 [ 1] [ 4] [0800] +02:13:34 [ 7] [ 10] [0319071241] +02:13:34 [ 11] [ 6] [153663] +02:13:34 [ 70] [ 3] [301] +02:13:34 ============================================================================ +02:13:34 + + +waiting on router queue for slot.... +02:13:34 Sending to : +02:13:34 ============================================================================ +02:13:34 ============================================================================ +02:13:34 Slot Id : <274> +02:13:34 Transaction Type : RESPONSE +02:13:34 Received From : +02:13:34 ============================================================================ +02:13:34 FNo. Len. Field Value +02:13:34 ============================================================================ +02:13:34 [ 1] [ 4] [0810] +02:13:34 [ 7] [ 10] [0319071241] +02:13:34 [ 11] [ 6] [153663] +02:13:34 [ 39] [ 2] [00] +02:13:34 [ 70] [ 3] [301] +02:13:34 ============================================================================ +02:13:34 Calculate Source COMM Id = 2 +02:13:34 ============================================================================ +02:13:34 + + +waiting on router queue for slot.... +02:13:52 ============================================================================ +02:13:52 Slot Id : <264> +02:13:52 Transaction Type : REQUEST +02:13:52 Received From : +02:13:52 ============================================================================ +02:13:52 FNo. Len. Field Value +02:13:52 ============================================================================ +02:13:52 [ 1] [ 4] [0800] +02:13:52 [ 7] [ 10] [0319071259] +02:13:52 [ 11] [ 6] [153664] +02:13:52 [ 70] [ 3] [301] +02:13:52 ============================================================================ +02:13:52 + + +waiting on router queue for slot.... +02:13:52 Sending to : +02:13:52 ============================================================================ +02:13:52 ============================================================================ +02:13:52 Slot Id : <264> +02:13:52 Transaction Type : RESPONSE +02:13:52 Received From : +02:13:52 ============================================================================ +02:13:52 FNo. Len. Field Value +02:13:52 ============================================================================ +02:13:52 [ 1] [ 4] [0810] +02:13:52 [ 7] [ 10] [0319071259] +02:13:52 [ 11] [ 6] [153664] +02:13:52 [ 39] [ 2] [00] +02:13:52 [ 70] [ 3] [301] +02:13:52 ============================================================================ +02:13:52 Calculate Source COMM Id = 2 +02:13:52 ============================================================================ +02:13:52 + + +waiting on router queue for slot.... +02:13:53 ============================================================================ +02:13:53 Slot Id : <231> +02:13:53 Transaction Type : REQUEST +02:13:53 Received From : +02:13:53 ============================================================================ +02:13:53 FNo. Len. Field Value +02:13:53 ============================================================================ +02:13:53 [ 1] [ 4] [0800] +02:13:53 [ 2] [ 5] [02531] +02:13:53 [ 3] [ 6] [579028] +02:13:53 [ 7] [ 10] [0319191353] +02:13:53 [ 11] [ 6] [806541] +02:13:53 [ 15] [ 10] [0319191353] +02:13:53 [ 37] [ 11] [57902806541] +02:13:53 [ 70] [ 3] [001] +02:13:53 ============================================================================ +02:13:53 + + +waiting on router queue for slot.... +02:13:53 ============================================================================ +02:13:53 Slot Id : <231> +02:13:53 Transaction Type : RESPONSE +02:13:53 Received From : +02:13:53 ============================================================================ +02:13:53 FNo. Len. Field Value +02:13:53 ============================================================================ +02:13:53 [ 1] [ 4] [0810] +02:13:53 [ 7] [ 10] [0319191353] +02:13:53 [ 11] [ 6] [806541] +02:13:53 [ 15] [ 4] [0319] +02:13:53 [ 37] [ 12] [57902806541] +02:13:53 [ 39] [ 2] [00] +02:13:53 [ 70] [ 3] [001] +02:13:53 ============================================================================ +02:13:53 Sending to : +02:13:53 ============================================================================ +02:13:53 + + +waiting on router queue for slot.... +02:14:06 ============================================================================ +02:14:06 Slot Id : <279> +02:14:06 Transaction Type : REQUEST +02:14:06 Received From : +02:14:06 ============================================================================ +02:14:06 FNo. Len. Field Value +02:14:06 ============================================================================ +02:14:06 [ 1] [ 4] [0800] +02:14:06 [ 7] [ 10] [0319071313] +02:14:06 [ 11] [ 6] [153665] +02:14:06 [ 70] [ 3] [301] +02:14:06 ============================================================================ +02:14:06 + + +waiting on router queue for slot.... +02:14:06 Sending to : +02:14:06 ============================================================================ +02:14:06 ============================================================================ +02:14:06 Slot Id : <279> +02:14:06 Transaction Type : RESPONSE +02:14:06 Received From : +02:14:06 ============================================================================ +02:14:06 FNo. Len. Field Value +02:14:06 ============================================================================ +02:14:06 [ 1] [ 4] [0810] +02:14:06 [ 7] [ 10] [0319071313] +02:14:06 [ 11] [ 6] [153665] +02:14:06 [ 39] [ 2] [00] +02:14:06 [ 70] [ 3] [301] +02:14:06 ============================================================================ +02:14:06 Calculate Source COMM Id = 2 +02:14:06 ============================================================================ +02:14:06 + + +waiting on router queue for slot.... +02:14:12 ============================================================================ +02:14:12 Slot Id : <254> +02:14:12 Transaction Type : REQUEST +02:14:12 Received From : +02:14:12 ============================================================================ +02:14:12 FNo. Len. Field Value +02:14:12 ============================================================================ +02:14:12 [ 1] [ 4] [0800] +02:14:12 [ 7] [ 10] [0320092600] +02:14:12 [ 11] [ 6] [022600] +02:14:12 [ 37] [ 12] [57902022600] +02:14:12 [ 70] [ 3] [301] +02:14:12 ============================================================================ +02:14:12 + + +waiting on router queue for slot.... +02:14:12 Sending to : +02:14:12 ============================================================================ +02:14:12 ============================================================================ +02:14:12 Slot Id : <254> +02:14:12 Transaction Type : RESPONSE +02:14:12 Received From : +02:14:12 ============================================================================ +02:14:12 FNo. Len. Field Value +02:14:12 ============================================================================ +02:14:12 [ 1] [ 4] [0810] +02:14:12 [ 7] [ 10] [0320092600] +02:14:12 [ 11] [ 6] [022600] +02:14:12 [ 37] [ 12] [579020226000] +02:14:12 [ 39] [ 2] [00] +02:14:12 [ 70] [ 3] [810] +02:14:12 ============================================================================ +02:14:12 Calculate Source COMM Id = 6 +02:14:12 ============================================================================ +02:14:12 + + +waiting on router queue for slot.... +02:14:21 ============================================================================ +02:14:21 Slot Id : <239> +02:14:21 Transaction Type : REQUEST +02:14:21 Received From : +02:14:21 ============================================================================ +02:14:21 FNo. Len. Field Value +02:14:21 ============================================================================ +02:14:21 [ 1] [ 4] [0800] +02:14:21 [ 7] [ 10] [0319071328] +02:14:21 [ 11] [ 6] [153666] +02:14:21 [ 70] [ 3] [301] +02:14:21 ============================================================================ +02:14:21 + + +waiting on router queue for slot.... +02:14:21 Sending to : +02:14:21 ============================================================================ +02:14:21 ============================================================================ +02:14:21 Slot Id : <239> +02:14:21 Transaction Type : RESPONSE +02:14:21 Received From : +02:14:21 ============================================================================ +02:14:21 FNo. Len. Field Value +02:14:21 ============================================================================ +02:14:21 [ 1] [ 4] [0810] +02:14:21 [ 7] [ 10] [0319071328] +02:14:21 [ 11] [ 6] [153666] +02:14:21 [ 39] [ 2] [00] +02:14:21 [ 70] [ 3] [301] +02:14:21 ============================================================================ +02:14:21 Calculate Source COMM Id = 2 +02:14:21 ============================================================================ +02:14:21 + + +waiting on router queue for slot.... +02:14:33 ============================================================================ +02:14:33 Slot Id : <273> +02:14:33 Transaction Type : REQUEST +02:14:33 Received From : +02:14:33 ============================================================================ +02:14:33 FNo. Len. Field Value +02:14:33 ============================================================================ +02:14:33 [ 1] [ 4] [0800] +02:14:33 [ 7] [ 10] [0319071339] +02:14:33 [ 11] [ 6] [153667] +02:14:33 [ 70] [ 3] [301] +02:14:33 ============================================================================ +02:14:33 + + +waiting on router queue for slot.... +02:14:33 Sending to : +02:14:33 ============================================================================ +02:14:33 ============================================================================ +02:14:33 Slot Id : <273> +02:14:33 Transaction Type : RESPONSE +02:14:33 Received From : +02:14:33 ============================================================================ +02:14:33 FNo. Len. Field Value +02:14:33 ============================================================================ +02:14:33 [ 1] [ 4] [0810] +02:14:33 [ 7] [ 10] [0319071339] +02:14:33 [ 11] [ 6] [153667] +02:14:33 [ 39] [ 2] [00] +02:14:33 [ 70] [ 3] [301] +02:14:33 ============================================================================ +02:14:33 Calculate Source COMM Id = 2 +02:14:33 ============================================================================ +02:14:33 + + +waiting on router queue for slot.... +02:14:47 ============================================================================ +02:14:47 Slot Id : <266> +02:14:47 Transaction Type : REQUEST +02:14:47 Received From : +02:14:47 ============================================================================ +02:14:47 FNo. Len. Field Value +02:14:47 ============================================================================ +02:14:47 [ 1] [ 4] [0800] +02:14:47 [ 7] [ 10] [0319071354] +02:14:47 [ 11] [ 6] [153668] +02:14:47 [ 70] [ 3] [301] +02:14:47 ============================================================================ +02:14:47 + + +waiting on router queue for slot.... +02:14:47 Sending to : +02:14:47 ============================================================================ +02:14:47 ============================================================================ +02:14:47 Slot Id : <266> +02:14:47 Transaction Type : RESPONSE +02:14:47 Received From : +02:14:47 ============================================================================ +02:14:47 FNo. Len. Field Value +02:14:47 ============================================================================ +02:14:47 [ 1] [ 4] [0810] +02:14:47 [ 7] [ 10] [0319071354] +02:14:47 [ 11] [ 6] [153668] +02:14:47 [ 39] [ 2] [00] +02:14:47 [ 70] [ 3] [301] +02:14:47 ============================================================================ +02:14:47 Calculate Source COMM Id = 2 +02:14:47 ============================================================================ +02:14:47 + + +waiting on router queue for slot.... +02:14:55 ============================================================================ +02:14:55 Slot Id : <282> +02:14:55 Transaction Type : REQUEST +02:14:55 Received From : +02:14:55 ============================================================================ +02:14:55 FNo. Len. Field Value +02:14:55 ============================================================================ +02:14:55 [ 1] [ 4] [0800] +02:14:55 [ 2] [ 5] [02531] +02:14:55 [ 3] [ 6] [579028] +02:14:55 [ 7] [ 10] [0319191455] +02:14:55 [ 11] [ 6] [806542] +02:14:55 [ 15] [ 10] [0319191455] +02:14:55 [ 37] [ 11] [57902806542] +02:14:55 [ 70] [ 3] [001] +02:14:55 ============================================================================ +02:14:55 + + +waiting on router queue for slot.... +02:14:55 ============================================================================ +02:14:55 Slot Id : <282> +02:14:55 Transaction Type : RESPONSE +02:14:55 Received From : +02:14:55 ============================================================================ +02:14:55 FNo. Len. Field Value +02:14:55 ============================================================================ +02:14:55 [ 1] [ 4] [0810] +02:14:55 [ 7] [ 10] [0319191455] +02:14:55 [ 11] [ 6] [806542] +02:14:55 [ 15] [ 4] [0319] +02:14:55 [ 37] [ 12] [57902806542] +02:14:55 [ 39] [ 2] [00] +02:14:55 [ 70] [ 3] [001] +02:14:55 ============================================================================ +02:14:55 Sending to : +02:14:55 ============================================================================ +02:14:55 + + +waiting on router queue for slot.... +02:14:56 ============================================================================ +02:14:56 Slot Id : <272> +02:14:56 Transaction Type : REQUEST +02:14:56 Received From : +02:14:56 ============================================================================ +02:14:56 FNo. Len. Field Value +02:14:56 ============================================================================ +02:14:56 [ 1] [ 4] [0800] +02:14:56 [ 7] [ 10] [0319192242] +02:14:56 [ 11] [ 6] [012918] +02:14:56 [ 37] [ 12] [57902012918] +02:14:56 [ 70] [ 3] [301] +02:14:56 ============================================================================ +02:14:56 + + +waiting on router queue for slot.... +02:14:56 Sending to : +02:14:56 ============================================================================ +02:14:56 ============================================================================ +02:14:56 Slot Id : <272> +02:14:56 Transaction Type : RESPONSE +02:14:56 Received From : +02:14:56 ============================================================================ +02:14:56 FNo. Len. Field Value +02:14:56 ============================================================================ +02:14:56 [ 1] [ 4] [0810] +02:14:56 [ 7] [ 10] [0319192242] +02:14:56 [ 11] [ 6] [012918] +02:14:56 [ 37] [ 12] [579020129180] +02:14:56 [ 39] [ 2] [00] +02:14:56 [ 70] [ 3] [810] +02:14:56 ============================================================================ +02:14:56 Calculate Source COMM Id = 1 +02:14:56 ============================================================================ +02:14:56 + + +waiting on router queue for slot.... +02:14:58 ============================================================================ +02:14:58 Slot Id : <241> +02:14:58 Transaction Type : REQUEST +02:14:58 Received From : +02:14:58 ============================================================================ +02:14:58 FNo. Len. Field Value +02:14:58 ============================================================================ +02:14:58 [ 1] [ 4] [0800] +02:14:58 [ 7] [ 10] [0319071405] +02:14:58 [ 11] [ 6] [153669] +02:14:58 [ 70] [ 3] [301] +02:14:58 ============================================================================ +02:14:58 + + +waiting on router queue for slot.... +02:14:58 Sending to : +02:14:58 ============================================================================ +02:14:58 ============================================================================ +02:14:58 Slot Id : <241> +02:14:58 Transaction Type : RESPONSE +02:14:58 Received From : +02:14:58 ============================================================================ +02:14:58 FNo. Len. Field Value +02:14:58 ============================================================================ +02:14:58 [ 1] [ 4] [0810] +02:14:58 [ 7] [ 10] [0319071405] +02:14:58 [ 11] [ 6] [153669] +02:14:58 [ 39] [ 2] [00] +02:14:58 [ 70] [ 3] [301] +02:14:58 ============================================================================ +02:14:58 Calculate Source COMM Id = 2 +02:14:58 ============================================================================ +02:14:58 + + +waiting on router queue for slot.... +02:15:09 ============================================================================ +02:15:09 Slot Id : <245> +02:15:09 Transaction Type : REQUEST +02:15:09 Received From : +02:15:09 ============================================================================ +02:15:09 FNo. Len. Field Value +02:15:09 ============================================================================ +02:15:09 [ 1] [ 4] [0800] +02:15:09 [ 7] [ 10] [0319071416] +02:15:09 [ 11] [ 6] [153670] +02:15:09 [ 70] [ 3] [301] +02:15:09 ============================================================================ +02:15:09 + + +waiting on router queue for slot.... +02:15:09 Sending to : +02:15:09 ============================================================================ +02:15:09 ============================================================================ +02:15:09 Slot Id : <245> +02:15:09 Transaction Type : RESPONSE +02:15:09 Received From : +02:15:09 ============================================================================ +02:15:09 FNo. Len. Field Value +02:15:09 ============================================================================ +02:15:09 [ 1] [ 4] [0810] +02:15:09 [ 7] [ 10] [0319071416] +02:15:09 [ 11] [ 6] [153670] +02:15:09 [ 39] [ 2] [00] +02:15:09 [ 70] [ 3] [301] +02:15:09 ============================================================================ +02:15:09 Calculate Source COMM Id = 2 +02:15:09 ============================================================================ +02:15:09 + + +waiting on router queue for slot.... +02:15:17 ============================================================================ +02:15:17 Slot Id : <252> +02:15:17 Transaction Type : REQUEST +02:15:17 Received From : +02:15:17 ============================================================================ +02:15:17 FNo. Len. Field Value +02:15:17 ============================================================================ +02:15:17 [ 1] [ 4] [0800] +02:15:17 [ 7] [ 10] [0320092705] +02:15:17 [ 11] [ 6] [022705] +02:15:17 [ 37] [ 12] [57902022705] +02:15:17 [ 70] [ 3] [301] +02:15:17 ============================================================================ +02:15:17 + + +waiting on router queue for slot.... +02:15:17 Sending to : +02:15:17 ============================================================================ +02:15:17 ============================================================================ +02:15:17 Slot Id : <252> +02:15:17 Transaction Type : RESPONSE +02:15:17 Received From : +02:15:17 ============================================================================ +02:15:17 FNo. Len. Field Value +02:15:17 ============================================================================ +02:15:17 [ 1] [ 4] [0810] +02:15:17 [ 7] [ 10] [0320092705] +02:15:17 [ 11] [ 6] [022705] +02:15:17 [ 37] [ 12] [579020227050] +02:15:17 [ 39] [ 2] [00] +02:15:17 [ 70] [ 3] [810] +02:15:17 ============================================================================ +02:15:17 Calculate Source COMM Id = 6 +02:15:17 ============================================================================ +02:15:17 + + +waiting on router queue for slot.... +02:15:24 ============================================================================ +02:15:24 Slot Id : <276> +02:15:24 Transaction Type : REQUEST +02:15:24 Received From : +02:15:24 ============================================================================ +02:15:24 FNo. Len. Field Value +02:15:24 ============================================================================ +02:15:24 [ 1] [ 4] [0800] +02:15:24 [ 7] [ 10] [0319071431] +02:15:24 [ 11] [ 6] [153671] +02:15:24 [ 70] [ 3] [301] +02:15:24 ============================================================================ +02:15:24 + + +waiting on router queue for slot.... +02:15:24 Sending to : +02:15:24 ============================================================================ +02:15:24 ============================================================================ +02:15:24 Slot Id : <276> +02:15:24 Transaction Type : RESPONSE +02:15:24 Received From : +02:15:24 ============================================================================ +02:15:24 FNo. Len. Field Value +02:15:24 ============================================================================ +02:15:24 [ 1] [ 4] [0810] +02:15:24 [ 7] [ 10] [0319071431] +02:15:24 [ 11] [ 6] [153671] +02:15:24 [ 39] [ 2] [00] +02:15:24 [ 70] [ 3] [301] +02:15:24 ============================================================================ +02:15:24 Calculate Source COMM Id = 2 +02:15:24 ============================================================================ +02:15:24 + + +waiting on router queue for slot.... +02:15:36 ============================================================================ +02:15:36 Slot Id : <280> +02:15:36 Transaction Type : REQUEST +02:15:36 Received From : +02:15:36 ============================================================================ +02:15:36 FNo. Len. Field Value +02:15:36 ============================================================================ +02:15:36 [ 1] [ 4] [0800] +02:15:36 [ 7] [ 10] [0319071442] +02:15:36 [ 11] [ 6] [153672] +02:15:36 [ 70] [ 3] [301] +02:15:36 ============================================================================ +02:15:36 + + +waiting on router queue for slot.... +02:15:36 Sending to : +02:15:36 ============================================================================ +02:15:36 ============================================================================ +02:15:36 Slot Id : <280> +02:15:36 Transaction Type : RESPONSE +02:15:36 Received From : +02:15:36 ============================================================================ +02:15:36 FNo. Len. Field Value +02:15:36 ============================================================================ +02:15:36 [ 1] [ 4] [0810] +02:15:36 [ 7] [ 10] [0319071442] +02:15:36 [ 11] [ 6] [153672] +02:15:36 [ 39] [ 2] [00] +02:15:36 [ 70] [ 3] [301] +02:15:36 ============================================================================ +02:15:36 Calculate Source COMM Id = 2 +02:15:36 ============================================================================ +02:15:36 + + +waiting on router queue for slot.... +02:15:47 ============================================================================ +02:15:47 Slot Id : <284> +02:15:47 Transaction Type : REQUEST +02:15:47 Received From : +02:15:47 ============================================================================ +02:15:47 FNo. Len. Field Value +02:15:47 ============================================================================ +02:15:47 [ 1] [ 4] [0800] +02:15:47 [ 7] [ 10] [0319071454] +02:15:47 [ 11] [ 6] [153673] +02:15:47 [ 70] [ 3] [301] +02:15:47 ============================================================================ +02:15:47 + + +waiting on router queue for slot.... +02:15:47 Sending to : +02:15:47 ============================================================================ +02:15:47 ============================================================================ +02:15:47 Slot Id : <284> +02:15:47 Transaction Type : RESPONSE +02:15:47 Received From : +02:15:47 ============================================================================ +02:15:47 FNo. Len. Field Value +02:15:47 ============================================================================ +02:15:47 [ 1] [ 4] [0810] +02:15:47 [ 7] [ 10] [0319071454] +02:15:47 [ 11] [ 6] [153673] +02:15:47 [ 39] [ 2] [00] +02:15:47 [ 70] [ 3] [301] +02:15:47 ============================================================================ +02:15:47 Calculate Source COMM Id = 2 +02:15:47 ============================================================================ +02:15:47 + + +waiting on router queue for slot.... +02:15:57 ============================================================================ +02:15:57 Slot Id : <258> +02:15:57 Transaction Type : REQUEST +02:15:57 Received From : +02:15:57 ============================================================================ +02:15:57 FNo. Len. Field Value +02:15:57 ============================================================================ +02:15:57 [ 1] [ 4] [0800] +02:15:57 [ 2] [ 5] [02531] +02:15:57 [ 3] [ 6] [579028] +02:15:57 [ 7] [ 10] [0319191557] +02:15:57 [ 11] [ 6] [806543] +02:15:57 [ 15] [ 10] [0319191557] +02:15:57 [ 37] [ 11] [57902806543] +02:15:57 [ 70] [ 3] [001] +02:15:57 ============================================================================ +02:15:57 + + +waiting on router queue for slot.... +02:15:57 ============================================================================ +02:15:57 Slot Id : <258> +02:15:57 Transaction Type : RESPONSE +02:15:57 Received From : +02:15:57 ============================================================================ +02:15:57 FNo. Len. Field Value +02:15:57 ============================================================================ +02:15:57 [ 1] [ 4] [0810] +02:15:57 [ 7] [ 10] [0319191557] +02:15:57 [ 11] [ 6] [806543] +02:15:57 [ 15] [ 4] [0319] +02:15:57 [ 37] [ 12] [57902806543] +02:15:57 [ 39] [ 2] [00] +02:15:57 [ 70] [ 3] [001] +02:15:57 ============================================================================ +02:15:57 Sending to : +02:15:57 ============================================================================ +02:15:57 + + +waiting on router queue for slot.... +02:16:03 ============================================================================ +02:16:03 Slot Id : <219> +02:16:03 Transaction Type : REQUEST +02:16:03 Received From : +02:16:03 ============================================================================ +02:16:03 FNo. Len. Field Value +02:16:03 ============================================================================ +02:16:03 [ 1] [ 4] [0800] +02:16:03 [ 7] [ 10] [0319071510] +02:16:03 [ 11] [ 6] [153674] +02:16:03 [ 70] [ 3] [301] +02:16:03 ============================================================================ +02:16:03 + + +waiting on router queue for slot.... +02:16:04 Sending to : +02:16:04 ============================================================================ +02:16:04 ============================================================================ +02:16:04 Slot Id : <219> +02:16:04 Transaction Type : RESPONSE +02:16:04 Received From : +02:16:04 ============================================================================ +02:16:04 FNo. Len. Field Value +02:16:04 ============================================================================ +02:16:04 [ 1] [ 4] [0810] +02:16:04 [ 7] [ 10] [0319071510] +02:16:04 [ 11] [ 6] [153674] +02:16:04 [ 39] [ 2] [00] +02:16:04 [ 70] [ 3] [301] +02:16:04 ============================================================================ +02:16:04 Calculate Source COMM Id = 2 +02:16:04 ============================================================================ +02:16:04 + + +waiting on router queue for slot.... +02:16:19 ============================================================================ +02:16:19 Slot Id : <224> +02:16:19 Transaction Type : REQUEST +02:16:19 Received From : +02:16:19 ============================================================================ +02:16:19 FNo. Len. Field Value +02:16:19 ============================================================================ +02:16:19 [ 1] [ 4] [0800] +02:16:19 [ 7] [ 10] [0319071526] +02:16:19 [ 11] [ 6] [153675] +02:16:19 [ 70] [ 3] [301] +02:16:19 ============================================================================ +02:16:19 + + +waiting on router queue for slot.... +02:16:19 Sending to : +02:16:19 ============================================================================ +02:16:19 ============================================================================ +02:16:19 Slot Id : <224> +02:16:19 Transaction Type : RESPONSE +02:16:19 Received From : +02:16:19 ============================================================================ +02:16:19 FNo. Len. Field Value +02:16:19 ============================================================================ +02:16:19 [ 1] [ 4] [0810] +02:16:19 [ 7] [ 10] [0319071526] +02:16:19 [ 11] [ 6] [153675] +02:16:19 [ 39] [ 2] [00] +02:16:19 [ 70] [ 3] [301] +02:16:19 ============================================================================ +02:16:19 Calculate Source COMM Id = 2 +02:16:19 ============================================================================ +02:16:19 + + +waiting on router queue for slot.... +02:16:22 ============================================================================ +02:16:22 Slot Id : <287> +02:16:22 Transaction Type : REQUEST +02:16:22 Received From : +02:16:22 ============================================================================ +02:16:22 FNo. Len. Field Value +02:16:22 ============================================================================ +02:16:22 [ 1] [ 4] [0800] +02:16:22 [ 7] [ 10] [0319191412] +02:16:22 [ 11] [ 6] [039735] +02:16:22 [ 37] [ 12] [57902039735] +02:16:22 [ 70] [ 3] [301] +02:16:22 ============================================================================ +02:16:22 + + +waiting on router queue for slot.... +02:16:22 Sending to : +02:16:22 ============================================================================ +02:16:22 ============================================================================ +02:16:22 Slot Id : <287> +02:16:22 Transaction Type : RESPONSE +02:16:22 Received From : +02:16:22 ============================================================================ +02:16:22 FNo. Len. Field Value +02:16:22 ============================================================================ +02:16:22 [ 1] [ 4] [0810] +02:16:22 [ 7] [ 10] [0319191412] +02:16:22 [ 11] [ 6] [039735] +02:16:22 [ 37] [ 12] [579020397350] +02:16:22 [ 39] [ 2] [00] +02:16:22 [ 70] [ 3] [810] +02:16:22 ============================================================================ +02:16:22 Calculate Source COMM Id = 4 +02:16:22 ============================================================================ +02:16:22 + + +waiting on router queue for slot.... +02:16:22 ============================================================================ +02:16:22 Slot Id : <290> +02:16:22 Transaction Type : REQUEST +02:16:22 Received From : +02:16:22 ============================================================================ +02:16:22 FNo. Len. Field Value +02:16:22 ============================================================================ +02:16:22 [ 1] [ 4] [0800] +02:16:22 [ 7] [ 10] [0320092810] +02:16:22 [ 11] [ 6] [022810] +02:16:22 [ 37] [ 12] [57902022810] +02:16:22 [ 70] [ 3] [301] +02:16:22 ============================================================================ +02:16:22 + + +waiting on router queue for slot.... +02:16:22 Sending to : +02:16:22 ============================================================================ +02:16:22 ============================================================================ +02:16:22 Slot Id : <290> +02:16:22 Transaction Type : RESPONSE +02:16:22 Received From : +02:16:22 ============================================================================ +02:16:22 FNo. Len. Field Value +02:16:22 ============================================================================ +02:16:22 [ 1] [ 4] [0810] +02:16:22 [ 7] [ 10] [0320092810] +02:16:22 [ 11] [ 6] [022810] +02:16:22 [ 37] [ 12] [579020228100] +02:16:22 [ 39] [ 2] [00] +02:16:22 [ 70] [ 3] [810] +02:16:22 ============================================================================ +02:16:22 Calculate Source COMM Id = 6 +02:16:22 ============================================================================ +02:16:22 + + +waiting on router queue for slot.... +02:16:27 ============================================================================ +02:16:27 Slot Id : <288> +02:16:27 Transaction Type : REQUEST +02:16:27 Received From : +02:16:27 ============================================================================ +02:16:27 FNo. Len. Field Value +02:16:27 ============================================================================ +02:16:27 [ 1] [ 4] [0800] +02:16:27 [ 7] [ 10] [0320021613] +02:16:27 [ 11] [ 6] [002554] +02:16:27 [ 37] [ 12] [507902002554] +02:16:27 [ 70] [ 3] [ ] +02:16:27 ============================================================================ +02:16:27 + + +waiting on router queue for slot.... +02:16:27 Sending to : +02:16:27 ============================================================================ +02:16:27 ============================================================================ +02:16:27 Slot Id : <288> +02:16:27 Transaction Type : RESPONSE +02:16:27 Received From : +02:16:27 ============================================================================ +02:16:27 FNo. Len. Field Value +02:16:27 ============================================================================ +02:16:27 [ 1] [ 4] [0810] +02:16:27 [ 7] [ 10] [0320021613] +02:16:27 [ 11] [ 6] [002554] +02:16:27 [ 37] [ 12] [507902002554] +02:16:27 [ 39] [ 2] [91] +02:16:27 [ 70] [ 3] [ ] +02:16:27 ============================================================================ +02:16:27 Calculate Source COMM Id = 3 +02:16:27 ============================================================================ +02:16:27 + + +waiting on router queue for slot.... +02:16:29 ============================================================================ +02:16:29 Slot Id : <271> +02:16:29 Transaction Type : REQUEST +02:16:29 Received From : +02:16:29 ============================================================================ +02:16:29 FNo. Len. Field Value +02:16:29 ============================================================================ +02:16:29 [ 1] [ 4] [0800] +02:16:29 [ 7] [ 10] [0319071536] +02:16:29 [ 11] [ 6] [153676] +02:16:29 [ 70] [ 3] [301] +02:16:29 ============================================================================ +02:16:29 + + +waiting on router queue for slot.... +02:16:29 Sending to : +02:16:29 ============================================================================ +02:16:29 ============================================================================ +02:16:29 Slot Id : <271> +02:16:29 Transaction Type : RESPONSE +02:16:29 Received From : +02:16:29 ============================================================================ +02:16:29 FNo. Len. Field Value +02:16:29 ============================================================================ +02:16:29 [ 1] [ 4] [0810] +02:16:29 [ 7] [ 10] [0319071536] +02:16:29 [ 11] [ 6] [153676] +02:16:29 [ 39] [ 2] [00] +02:16:29 [ 70] [ 3] [301] +02:16:29 ============================================================================ +02:16:29 Calculate Source COMM Id = 2 +02:16:29 ============================================================================ +02:16:29 + + +waiting on router queue for slot.... +02:16:45 ============================================================================ +02:16:45 Slot Id : <277> +02:16:45 Transaction Type : REQUEST +02:16:45 Received From : +02:16:45 ============================================================================ +02:16:45 FNo. Len. Field Value +02:16:45 ============================================================================ +02:16:45 [ 1] [ 4] [0800] +02:16:45 [ 7] [ 10] [0319071552] +02:16:45 [ 11] [ 6] [153677] +02:16:45 [ 70] [ 3] [301] +02:16:45 ============================================================================ +02:16:45 + + +waiting on router queue for slot.... +02:16:45 Sending to : +02:16:45 ============================================================================ +02:16:45 ============================================================================ +02:16:45 Slot Id : <277> +02:16:45 Transaction Type : RESPONSE +02:16:45 Received From : +02:16:45 ============================================================================ +02:16:45 FNo. Len. Field Value +02:16:45 ============================================================================ +02:16:45 [ 1] [ 4] [0810] +02:16:45 [ 7] [ 10] [0319071552] +02:16:45 [ 11] [ 6] [153677] +02:16:45 [ 39] [ 2] [00] +02:16:45 [ 70] [ 3] [301] +02:16:45 ============================================================================ +02:16:45 Calculate Source COMM Id = 2 +02:16:45 ============================================================================ +02:16:45 + + +waiting on router queue for slot.... +02:16:56 ============================================================================ +02:16:56 Slot Id : <267> +02:16:56 Transaction Type : REQUEST +02:16:56 Received From : +02:16:56 ============================================================================ +02:16:56 FNo. Len. Field Value +02:16:56 ============================================================================ +02:16:56 [ 1] [ 4] [0800] +02:16:56 [ 7] [ 10] [0319071603] +02:16:56 [ 11] [ 6] [153678] +02:16:56 [ 70] [ 3] [301] +02:16:56 ============================================================================ +02:16:56 + + +waiting on router queue for slot.... +02:16:56 Sending to : +02:16:56 ============================================================================ +02:16:56 ============================================================================ +02:16:56 Slot Id : <267> +02:16:56 Transaction Type : RESPONSE +02:16:56 Received From : +02:16:56 ============================================================================ +02:16:56 FNo. Len. Field Value +02:16:56 ============================================================================ +02:16:56 [ 1] [ 4] [0810] +02:16:56 [ 7] [ 10] [0319071603] +02:16:56 [ 11] [ 6] [153678] +02:16:56 [ 39] [ 2] [00] +02:16:56 [ 70] [ 3] [301] +02:16:56 ============================================================================ +02:16:56 Calculate Source COMM Id = 2 +02:16:56 ============================================================================ +02:16:56 + + +waiting on router queue for slot.... +02:16:59 ============================================================================ +02:16:59 Slot Id : <217> +02:16:59 Transaction Type : REQUEST +02:16:59 Received From : +02:16:59 ============================================================================ +02:16:59 FNo. Len. Field Value +02:16:59 ============================================================================ +02:16:59 [ 1] [ 4] [0800] +02:16:59 [ 2] [ 5] [02531] +02:16:59 [ 3] [ 6] [579028] +02:16:59 [ 7] [ 10] [0319191659] +02:16:59 [ 11] [ 6] [806544] +02:16:59 [ 15] [ 10] [0319191659] +02:16:59 [ 37] [ 11] [57902806544] +02:16:59 [ 70] [ 3] [001] +02:16:59 ============================================================================ +02:16:59 + + +waiting on router queue for slot.... +02:16:59 ============================================================================ +02:16:59 Slot Id : <217> +02:16:59 Transaction Type : RESPONSE +02:16:59 Received From : +02:16:59 ============================================================================ +02:16:59 FNo. Len. Field Value +02:16:59 ============================================================================ +02:16:59 [ 1] [ 4] [0810] +02:16:59 [ 7] [ 10] [0319191659] +02:16:59 [ 11] [ 6] [806544] +02:16:59 [ 15] [ 4] [0319] +02:16:59 [ 37] [ 12] [57902806544] +02:16:59 [ 39] [ 2] [00] +02:16:59 [ 70] [ 3] [001] +02:16:59 ============================================================================ +02:16:59 Sending to : +02:16:59 ============================================================================ +02:16:59 + + +waiting on router queue for slot.... +02:17:07 ============================================================================ +02:17:07 Slot Id : <236> +02:17:07 Transaction Type : REQUEST +02:17:07 Received From : +02:17:07 ============================================================================ +02:17:07 FNo. Len. Field Value +02:17:07 ============================================================================ +02:17:07 [ 1] [ 4] [0800] +02:17:07 [ 7] [ 10] [0319071614] +02:17:07 [ 11] [ 6] [153679] +02:17:07 [ 70] [ 3] [301] +02:17:07 ============================================================================ +02:17:07 + + +waiting on router queue for slot.... +02:17:07 Sending to : +02:17:07 ============================================================================ +02:17:07 ============================================================================ +02:17:07 Slot Id : <236> +02:17:07 Transaction Type : RESPONSE +02:17:07 Received From : +02:17:07 ============================================================================ +02:17:07 FNo. Len. Field Value +02:17:07 ============================================================================ +02:17:07 [ 1] [ 4] [0810] +02:17:07 [ 7] [ 10] [0319071614] +02:17:07 [ 11] [ 6] [153679] +02:17:07 [ 39] [ 2] [00] +02:17:07 [ 70] [ 3] [301] +02:17:07 ============================================================================ +02:17:07 Calculate Source COMM Id = 2 +02:17:07 ============================================================================ +02:17:07 + + +waiting on router queue for slot.... +02:17:23 ============================================================================ +02:17:23 Slot Id : <278> +02:17:23 Transaction Type : REQUEST +02:17:23 Received From : +02:17:23 ============================================================================ +02:17:23 FNo. Len. Field Value +02:17:23 ============================================================================ +02:17:23 [ 1] [ 4] [0800] +02:17:23 [ 7] [ 10] [0319071630] +02:17:23 [ 11] [ 6] [153680] +02:17:23 [ 70] [ 3] [301] +02:17:23 ============================================================================ +02:17:23 + + +waiting on router queue for slot.... +02:17:23 Sending to : +02:17:23 ============================================================================ +02:17:23 ============================================================================ +02:17:23 Slot Id : <278> +02:17:23 Transaction Type : RESPONSE +02:17:23 Received From : +02:17:23 ============================================================================ +02:17:23 FNo. Len. Field Value +02:17:23 ============================================================================ +02:17:23 [ 1] [ 4] [0810] +02:17:23 [ 7] [ 10] [0319071630] +02:17:23 [ 11] [ 6] [153680] +02:17:23 [ 39] [ 2] [00] +02:17:23 [ 70] [ 3] [301] +02:17:23 ============================================================================ +02:17:23 Calculate Source COMM Id = 2 +02:17:23 ============================================================================ +02:17:23 + + +waiting on router queue for slot.... +02:17:27 ============================================================================ +02:17:27 Slot Id : <293> +02:17:27 Transaction Type : REQUEST +02:17:27 Received From : +02:17:27 ============================================================================ +02:17:27 FNo. Len. Field Value +02:17:27 ============================================================================ +02:17:27 [ 1] [ 4] [0800] +02:17:27 [ 7] [ 10] [0320092915] +02:17:27 [ 11] [ 6] [022915] +02:17:27 [ 37] [ 12] [57902022915] +02:17:27 [ 70] [ 3] [301] +02:17:27 ============================================================================ +02:17:27 + + +waiting on router queue for slot.... +02:17:27 Sending to : +02:17:27 ============================================================================ +02:17:27 ============================================================================ +02:17:27 Slot Id : <293> +02:17:27 Transaction Type : RESPONSE +02:17:27 Received From : +02:17:27 ============================================================================ +02:17:27 FNo. Len. Field Value +02:17:27 ============================================================================ +02:17:27 [ 1] [ 4] [0810] +02:17:27 [ 7] [ 10] [0320092915] +02:17:27 [ 11] [ 6] [022915] +02:17:27 [ 37] [ 12] [579020229150] +02:17:27 [ 39] [ 2] [00] +02:17:27 [ 70] [ 3] [810] +02:17:27 ============================================================================ +02:17:27 Calculate Source COMM Id = 6 +02:17:27 ============================================================================ +02:17:27 + + +waiting on router queue for slot.... +02:17:38 ============================================================================ +02:17:38 Slot Id : <294> +02:17:38 Transaction Type : REQUEST +02:17:38 Received From : +02:17:38 ============================================================================ +02:17:38 FNo. Len. Field Value +02:17:38 ============================================================================ +02:17:38 [ 1] [ 4] [0800] +02:17:38 [ 7] [ 10] [0319071645] +02:17:38 [ 11] [ 6] [153681] +02:17:38 [ 70] [ 3] [301] +02:17:38 ============================================================================ +02:17:38 + + +waiting on router queue for slot.... +02:17:38 Sending to : +02:17:38 ============================================================================ +02:17:38 ============================================================================ +02:17:38 Slot Id : <294> +02:17:38 Transaction Type : RESPONSE +02:17:38 Received From : +02:17:38 ============================================================================ +02:17:38 FNo. Len. Field Value +02:17:38 ============================================================================ +02:17:38 [ 1] [ 4] [0810] +02:17:38 [ 7] [ 10] [0319071645] +02:17:38 [ 11] [ 6] [153681] +02:17:38 [ 39] [ 2] [00] +02:17:38 [ 70] [ 3] [301] +02:17:38 ============================================================================ +02:17:38 Calculate Source COMM Id = 2 +02:17:38 ============================================================================ +02:17:38 + + +waiting on router queue for slot.... +02:17:50 ============================================================================ +02:17:50 Slot Id : <298> +02:17:50 Transaction Type : REQUEST +02:17:50 Received From : +02:17:50 ============================================================================ +02:17:50 FNo. Len. Field Value +02:17:50 ============================================================================ +02:17:50 [ 1] [ 4] [0800] +02:17:50 [ 7] [ 10] [0319071657] +02:17:50 [ 11] [ 6] [153682] +02:17:50 [ 70] [ 3] [301] +02:17:50 ============================================================================ +02:17:50 + + +waiting on router queue for slot.... +02:17:50 Sending to : +02:17:50 ============================================================================ +02:17:50 ============================================================================ +02:17:50 Slot Id : <298> +02:17:50 Transaction Type : RESPONSE +02:17:50 Received From : +02:17:50 ============================================================================ +02:17:50 FNo. Len. Field Value +02:17:50 ============================================================================ +02:17:50 [ 1] [ 4] [0810] +02:17:50 [ 7] [ 10] [0319071657] +02:17:50 [ 11] [ 6] [153682] +02:17:50 [ 39] [ 2] [00] +02:17:50 [ 70] [ 3] [301] +02:17:50 ============================================================================ +02:17:50 Calculate Source COMM Id = 2 +02:17:50 ============================================================================ +02:17:50 + + +waiting on router queue for slot.... +02:18:01 ============================================================================ +02:18:01 Slot Id : <257> +02:18:01 Transaction Type : REQUEST +02:18:01 Received From : +02:18:01 ============================================================================ +02:18:01 FNo. Len. Field Value +02:18:01 ============================================================================ +02:18:01 [ 1] [ 4] [0800] +02:18:01 [ 2] [ 5] [02531] +02:18:01 [ 3] [ 6] [579028] +02:18:01 [ 7] [ 10] [0319191801] +02:18:01 [ 11] [ 6] [806545] +02:18:01 [ 15] [ 10] [0319191801] +02:18:01 [ 37] [ 11] [57902806545] +02:18:01 [ 70] [ 3] [001] +02:18:01 ============================================================================ +02:18:01 + + +waiting on router queue for slot.... +02:18:01 ============================================================================ +02:18:01 Slot Id : <257> +02:18:01 Transaction Type : RESPONSE +02:18:01 Received From : +02:18:01 ============================================================================ +02:18:01 FNo. Len. Field Value +02:18:01 ============================================================================ +02:18:01 [ 1] [ 4] [0810] +02:18:01 [ 7] [ 10] [0319191801] +02:18:01 [ 11] [ 6] [806545] +02:18:01 [ 15] [ 4] [0319] +02:18:01 [ 37] [ 12] [57902806545] +02:18:01 [ 39] [ 2] [00] +02:18:01 [ 70] [ 3] [001] +02:18:01 ============================================================================ +02:18:01 Sending to : +02:18:01 ============================================================================ +02:18:01 + + +waiting on router queue for slot.... +02:18:05 ============================================================================ +02:18:05 Slot Id : <303> +02:18:05 Transaction Type : REQUEST +02:18:05 Received From : +02:18:05 ============================================================================ +02:18:05 FNo. Len. Field Value +02:18:05 ============================================================================ +02:18:05 [ 1] [ 4] [0800] +02:18:05 [ 7] [ 10] [0319071712] +02:18:05 [ 11] [ 6] [153683] +02:18:05 [ 70] [ 3] [301] +02:18:05 ============================================================================ +02:18:05 + + +waiting on router queue for slot.... +02:18:05 Sending to : +02:18:05 ============================================================================ +02:18:05 ============================================================================ +02:18:05 Slot Id : <303> +02:18:05 Transaction Type : RESPONSE +02:18:05 Received From : +02:18:05 ============================================================================ +02:18:05 FNo. Len. Field Value +02:18:05 ============================================================================ +02:18:05 [ 1] [ 4] [0810] +02:18:05 [ 7] [ 10] [0319071712] +02:18:05 [ 11] [ 6] [153683] +02:18:05 [ 39] [ 2] [00] +02:18:05 [ 70] [ 3] [301] +02:18:05 ============================================================================ +02:18:05 Calculate Source COMM Id = 2 +02:18:05 ============================================================================ +02:18:05 + + +waiting on router queue for slot.... +02:18:16 ============================================================================ +02:18:16 Slot Id : <299> +02:18:16 Transaction Type : REQUEST +02:18:16 Received From : +02:18:16 ============================================================================ +02:18:16 FNo. Len. Field Value +02:18:16 ============================================================================ +02:18:16 [ 1] [ 4] [0800] +02:18:16 [ 7] [ 10] [0319071723] +02:18:16 [ 11] [ 6] [153684] +02:18:16 [ 70] [ 3] [301] +02:18:16 ============================================================================ +02:18:16 + + +waiting on router queue for slot.... +02:18:16 Sending to : +02:18:16 ============================================================================ +02:18:16 ============================================================================ +02:18:16 Slot Id : <299> +02:18:16 Transaction Type : RESPONSE +02:18:16 Received From : +02:18:16 ============================================================================ +02:18:16 FNo. Len. Field Value +02:18:16 ============================================================================ +02:18:16 [ 1] [ 4] [0810] +02:18:16 [ 7] [ 10] [0319071723] +02:18:16 [ 11] [ 6] [153684] +02:18:16 [ 39] [ 2] [00] +02:18:16 [ 70] [ 3] [301] +02:18:16 ============================================================================ +02:18:16 Calculate Source COMM Id = 2 +02:18:16 ============================================================================ +02:18:16 + + +waiting on router queue for slot.... +02:18:31 ============================================================================ +02:18:31 Slot Id : <302> +02:18:31 Transaction Type : REQUEST +02:18:31 Received From : +02:18:31 ============================================================================ +02:18:31 FNo. Len. Field Value +02:18:31 ============================================================================ +02:18:31 [ 1] [ 4] [0800] +02:18:31 [ 7] [ 10] [0319071739] +02:18:31 [ 11] [ 6] [153685] +02:18:31 [ 70] [ 3] [301] +02:18:31 ============================================================================ +02:18:31 + + +waiting on router queue for slot.... +02:18:31 Sending to : +02:18:31 ============================================================================ +02:18:31 ============================================================================ +02:18:31 Slot Id : <302> +02:18:31 Transaction Type : RESPONSE +02:18:31 Received From : +02:18:31 ============================================================================ +02:18:31 FNo. Len. Field Value +02:18:31 ============================================================================ +02:18:31 [ 1] [ 4] [0810] +02:18:31 [ 7] [ 10] [0319071739] +02:18:31 [ 11] [ 6] [153685] +02:18:31 [ 39] [ 2] [00] +02:18:31 [ 70] [ 3] [301] +02:18:31 ============================================================================ +02:18:31 Calculate Source COMM Id = 2 +02:18:31 ============================================================================ +02:18:31 + + +waiting on router queue for slot.... +02:18:32 ============================================================================ +02:18:32 Slot Id : <292> +02:18:32 Transaction Type : REQUEST +02:18:32 Received From : +02:18:32 ============================================================================ +02:18:32 FNo. Len. Field Value +02:18:32 ============================================================================ +02:18:32 [ 1] [ 4] [0800] +02:18:32 [ 7] [ 10] [0320093020] +02:18:32 [ 11] [ 6] [023020] +02:18:32 [ 37] [ 12] [57902023020] +02:18:32 [ 70] [ 3] [301] +02:18:32 ============================================================================ +02:18:32 + + +waiting on router queue for slot.... +02:18:32 Sending to : +02:18:32 ============================================================================ +02:18:32 ============================================================================ +02:18:32 Slot Id : <292> +02:18:32 Transaction Type : RESPONSE +02:18:32 Received From : +02:18:32 ============================================================================ +02:18:32 FNo. Len. Field Value +02:18:32 ============================================================================ +02:18:32 [ 1] [ 4] [0810] +02:18:32 [ 7] [ 10] [0320093020] +02:18:32 [ 11] [ 6] [023020] +02:18:32 [ 37] [ 12] [579020230200] +02:18:32 [ 39] [ 2] [00] +02:18:32 [ 70] [ 3] [810] +02:18:32 ============================================================================ +02:18:32 Calculate Source COMM Id = 6 +02:18:32 ============================================================================ +02:18:32 + + +waiting on router queue for slot.... +02:18:42 ============================================================================ +02:18:42 Slot Id : <300> +02:18:42 Transaction Type : REQUEST +02:18:42 Received From : +02:18:42 ============================================================================ +02:18:42 FNo. Len. Field Value +02:18:42 ============================================================================ +02:18:42 [ 1] [ 4] [0800] +02:18:42 [ 7] [ 10] [0319071749] +02:18:42 [ 11] [ 6] [153686] +02:18:42 [ 70] [ 3] [301] +02:18:42 ============================================================================ +02:18:42 + + +waiting on router queue for slot.... +02:18:42 Sending to : +02:18:42 ============================================================================ +02:18:42 ============================================================================ +02:18:42 Slot Id : <300> +02:18:42 Transaction Type : RESPONSE +02:18:42 Received From : +02:18:42 ============================================================================ +02:18:42 FNo. Len. Field Value +02:18:42 ============================================================================ +02:18:42 [ 1] [ 4] [0810] +02:18:42 [ 7] [ 10] [0319071749] +02:18:42 [ 11] [ 6] [153686] +02:18:42 [ 39] [ 2] [00] +02:18:42 [ 70] [ 3] [301] +02:18:42 ============================================================================ +02:18:42 Calculate Source COMM Id = 2 +02:18:42 ============================================================================ +02:18:42 + + +waiting on router queue for slot.... +02:18:58 ============================================================================ +02:18:58 Slot Id : <281> +02:18:58 Transaction Type : REQUEST +02:18:58 Received From : +02:18:58 ============================================================================ +02:18:58 FNo. Len. Field Value +02:18:58 ============================================================================ +02:18:58 [ 1] [ 4] [0800] +02:18:58 [ 7] [ 10] [0319071806] +02:18:58 [ 11] [ 6] [153687] +02:18:58 [ 70] [ 3] [301] +02:18:58 ============================================================================ +02:18:58 + + +waiting on router queue for slot.... +02:18:58 Sending to : +02:18:58 ============================================================================ +02:18:58 ============================================================================ +02:18:58 Slot Id : <281> +02:18:58 Transaction Type : RESPONSE +02:18:58 Received From : +02:18:58 ============================================================================ +02:18:58 FNo. Len. Field Value +02:18:58 ============================================================================ +02:18:58 [ 1] [ 4] [0810] +02:18:58 [ 7] [ 10] [0319071806] +02:18:58 [ 11] [ 6] [153687] +02:18:58 [ 39] [ 2] [00] +02:18:58 [ 70] [ 3] [301] +02:18:58 ============================================================================ +02:18:58 Calculate Source COMM Id = 2 +02:18:58 ============================================================================ +02:18:58 + + +waiting on router queue for slot.... +02:19:03 ============================================================================ +02:19:03 Slot Id : <295> +02:19:03 Transaction Type : REQUEST +02:19:03 Received From : +02:19:03 ============================================================================ +02:19:03 FNo. Len. Field Value +02:19:03 ============================================================================ +02:19:03 [ 1] [ 4] [0800] +02:19:03 [ 2] [ 5] [02531] +02:19:03 [ 3] [ 6] [579028] +02:19:03 [ 7] [ 10] [0319191903] +02:19:03 [ 11] [ 6] [806546] +02:19:03 [ 15] [ 10] [0319191903] +02:19:03 [ 37] [ 11] [57902806546] +02:19:03 [ 70] [ 3] [001] +02:19:03 ============================================================================ +02:19:03 + + +waiting on router queue for slot.... +02:19:03 ============================================================================ +02:19:03 Slot Id : <295> +02:19:03 Transaction Type : RESPONSE +02:19:03 Received From : +02:19:03 ============================================================================ +02:19:03 FNo. Len. Field Value +02:19:03 ============================================================================ +02:19:03 [ 1] [ 4] [0810] +02:19:03 [ 7] [ 10] [0319191903] +02:19:03 [ 11] [ 6] [806546] +02:19:03 [ 15] [ 4] [0319] +02:19:03 [ 37] [ 12] [57902806546] +02:19:03 [ 39] [ 2] [00] +02:19:03 [ 70] [ 3] [001] +02:19:03 ============================================================================ +02:19:03 Sending to : +02:19:03 ============================================================================ +02:19:03 + + +waiting on router queue for slot.... +02:19:09 ============================================================================ +02:19:09 Slot Id : <308> +02:19:09 Transaction Type : REQUEST +02:19:09 Received From : +02:19:09 ============================================================================ +02:19:09 FNo. Len. Field Value +02:19:09 ============================================================================ +02:19:09 [ 1] [ 4] [0800] +02:19:09 [ 7] [ 10] [0319071817] +02:19:09 [ 11] [ 6] [153688] +02:19:09 [ 70] [ 3] [301] +02:19:09 ============================================================================ +02:19:09 + + +waiting on router queue for slot.... +02:19:09 Sending to : +02:19:09 ============================================================================ +02:19:09 ============================================================================ +02:19:09 Slot Id : <308> +02:19:09 Transaction Type : RESPONSE +02:19:09 Received From : +02:19:09 ============================================================================ +02:19:09 FNo. Len. Field Value +02:19:09 ============================================================================ +02:19:09 [ 1] [ 4] [0810] +02:19:09 [ 7] [ 10] [0319071817] +02:19:09 [ 11] [ 6] [153688] +02:19:09 [ 39] [ 2] [00] +02:19:09 [ 70] [ 3] [301] +02:19:09 ============================================================================ +02:19:09 Calculate Source COMM Id = 2 +02:19:09 ============================================================================ +02:19:09 + + +waiting on router queue for slot.... +02:19:21 ============================================================================ +02:19:21 Slot Id : <262> +02:19:21 Transaction Type : REQUEST +02:19:21 Received From : +02:19:21 ============================================================================ +02:19:21 FNo. Len. Field Value +02:19:21 ============================================================================ +02:19:21 [ 1] [ 4] [0800] +02:19:21 [ 7] [ 10] [0319071828] +02:19:21 [ 11] [ 6] [153689] +02:19:21 [ 70] [ 3] [301] +02:19:21 ============================================================================ +02:19:21 + + +waiting on router queue for slot.... +02:19:21 Sending to : +02:19:21 ============================================================================ +02:19:21 ============================================================================ +02:19:21 Slot Id : <262> +02:19:21 Transaction Type : RESPONSE +02:19:21 Received From : +02:19:21 ============================================================================ +02:19:21 FNo. Len. Field Value +02:19:21 ============================================================================ +02:19:21 [ 1] [ 4] [0810] +02:19:21 [ 7] [ 10] [0319071828] +02:19:21 [ 11] [ 6] [153689] +02:19:21 [ 39] [ 2] [00] +02:19:21 [ 70] [ 3] [301] +02:19:21 ============================================================================ +02:19:21 Calculate Source COMM Id = 2 +02:19:21 ============================================================================ +02:19:21 + + +waiting on router queue for slot.... +02:19:37 ============================================================================ +02:19:37 Slot Id : <296> +02:19:37 Transaction Type : REQUEST +02:19:37 Received From : +02:19:37 ============================================================================ +02:19:37 FNo. Len. Field Value +02:19:37 ============================================================================ +02:19:37 [ 1] [ 4] [0800] +02:19:37 [ 7] [ 10] [0319191932] +02:19:37 [ 11] [ 6] [093096] +02:19:37 [ 37] [ 12] [507902093096] +02:19:37 [ 70] [ 3] [001] +02:19:37 ============================================================================ +02:19:37 + + +waiting on router queue for slot.... +02:19:37 Sending to : +02:19:37 ============================================================================ +02:19:37 ============================================================================ +02:19:37 Slot Id : <296> +02:19:37 Transaction Type : RESPONSE +02:19:37 Received From : +02:19:37 ============================================================================ +02:19:37 FNo. Len. Field Value +02:19:37 ============================================================================ +02:19:37 [ 1] [ 4] [0810] +02:19:37 [ 7] [ 10] [0319191932] +02:19:37 [ 11] [ 6] [093096] +02:19:37 [ 37] [ 12] [507902093096] +02:19:37 [ 39] [ 2] [00] +02:19:37 [ 70] [ 3] [001] +02:19:37 ============================================================================ +02:19:37 Calculate Source COMM Id = 0 +02:19:37 ============================================================================ +02:19:37 + + +waiting on router queue for slot.... +02:19:37 ============================================================================ +02:19:37 Slot Id : <283> +02:19:37 Transaction Type : REQUEST +02:19:37 Received From : +02:19:37 ============================================================================ +02:19:37 FNo. Len. Field Value +02:19:37 ============================================================================ +02:19:37 [ 1] [ 4] [0800] +02:19:37 [ 7] [ 10] [0319071844] +02:19:37 [ 11] [ 6] [153690] +02:19:37 [ 70] [ 3] [301] +02:19:37 ============================================================================ +02:19:37 + + +waiting on router queue for slot.... +02:19:37 Sending to : +02:19:37 ============================================================================ +02:19:37 ============================================================================ +02:19:37 Slot Id : <283> +02:19:37 Transaction Type : RESPONSE +02:19:37 Received From : +02:19:37 ============================================================================ +02:19:37 FNo. Len. Field Value +02:19:37 ============================================================================ +02:19:37 [ 1] [ 4] [0810] +02:19:37 [ 7] [ 10] [0319071844] +02:19:37 [ 11] [ 6] [153690] +02:19:37 [ 39] [ 2] [00] +02:19:37 [ 70] [ 3] [301] +02:19:37 ============================================================================ +02:19:37 Calculate Source COMM Id = 2 +02:19:37 ============================================================================ +02:19:37 + + +waiting on router queue for slot.... +02:19:37 ============================================================================ +02:19:37 Slot Id : <311> +02:19:37 Transaction Type : REQUEST +02:19:37 Received From : +02:19:37 ============================================================================ +02:19:37 FNo. Len. Field Value +02:19:37 ============================================================================ +02:19:37 [ 1] [ 4] [0800] +02:19:37 [ 7] [ 10] [0320093125] +02:19:37 [ 11] [ 6] [023125] +02:19:37 [ 37] [ 12] [57902023125] +02:19:37 [ 70] [ 3] [301] +02:19:37 ============================================================================ +02:19:37 + + +waiting on router queue for slot.... +02:19:37 Sending to : +02:19:37 ============================================================================ +02:19:37 ============================================================================ +02:19:37 Slot Id : <311> +02:19:37 Transaction Type : RESPONSE +02:19:37 Received From : +02:19:37 ============================================================================ +02:19:37 FNo. Len. Field Value +02:19:37 ============================================================================ +02:19:37 [ 1] [ 4] [0810] +02:19:37 [ 7] [ 10] [0320093125] +02:19:37 [ 11] [ 6] [023125] +02:19:37 [ 37] [ 12] [579020231250] +02:19:37 [ 39] [ 2] [00] +02:19:37 [ 70] [ 3] [810] +02:19:37 ============================================================================ +02:19:37 Calculate Source COMM Id = 6 +02:19:37 ============================================================================ +02:19:37 + + +waiting on router queue for slot.... +02:19:47 ============================================================================ +02:19:47 Slot Id : <312> +02:19:47 Transaction Type : REQUEST +02:19:47 Received From : +02:19:47 ============================================================================ +02:19:47 FNo. Len. Field Value +02:19:47 ============================================================================ +02:19:47 [ 1] [ 4] [0800] +02:19:47 [ 7] [ 10] [0319071854] +02:19:47 [ 11] [ 6] [153691] +02:19:47 [ 70] [ 3] [301] +02:19:47 ============================================================================ +02:19:47 + + +waiting on router queue for slot.... +02:19:47 Sending to : +02:19:47 ============================================================================ +02:19:47 ============================================================================ +02:19:47 Slot Id : <312> +02:19:47 Transaction Type : RESPONSE +02:19:47 Received From : +02:19:47 ============================================================================ +02:19:47 FNo. Len. Field Value +02:19:47 ============================================================================ +02:19:47 [ 1] [ 4] [0810] +02:19:47 [ 7] [ 10] [0319071854] +02:19:47 [ 11] [ 6] [153691] +02:19:47 [ 39] [ 2] [00] +02:19:47 [ 70] [ 3] [301] +02:19:47 ============================================================================ +02:19:47 Calculate Source COMM Id = 2 +02:19:47 ============================================================================ +02:19:47 + + +waiting on router queue for slot.... +02:19:56 ============================================================================ +02:19:56 Slot Id : <316> +02:19:56 Transaction Type : REQUEST +02:19:56 Received From : +02:19:56 ============================================================================ +02:19:56 FNo. Len. Field Value +02:19:56 ============================================================================ +02:19:56 [ 1] [ 4] [0800] +02:19:56 [ 7] [ 10] [0319192742] +02:19:56 [ 11] [ 6] [047044] +02:19:56 [ 37] [ 12] [57902047044] +02:19:56 [ 70] [ 3] [301] +02:19:56 ============================================================================ +02:19:56 + + +waiting on router queue for slot.... +02:19:56 Sending to : +02:19:56 ============================================================================ +02:19:56 ============================================================================ +02:19:56 Slot Id : <316> +02:19:56 Transaction Type : RESPONSE +02:19:56 Received From : +02:19:56 ============================================================================ +02:19:56 FNo. Len. Field Value +02:19:56 ============================================================================ +02:19:56 [ 1] [ 4] [0810] +02:19:56 [ 7] [ 10] [0319192742] +02:19:56 [ 11] [ 6] [047044] +02:19:56 [ 37] [ 12] [579020470440] +02:19:56 [ 39] [ 2] [00] +02:19:56 [ 70] [ 3] [810] +02:19:56 ============================================================================ +02:19:56 Calculate Source COMM Id = 1 +02:19:56 ============================================================================ +02:19:56 + + +waiting on router queue for slot.... +02:19:58 ============================================================================ +02:19:58 Slot Id : <306> +02:19:58 Transaction Type : REQUEST +02:19:58 Received From : +02:19:58 ============================================================================ +02:19:58 FNo. Len. Field Value +02:19:58 ============================================================================ +02:19:58 [ 1] [ 4] [0800] +02:19:58 [ 7] [ 10] [0319071905] +02:19:58 [ 11] [ 6] [153692] +02:19:58 [ 70] [ 3] [301] +02:19:58 ============================================================================ +02:19:58 + + +waiting on router queue for slot.... +02:19:58 Sending to : +02:19:58 ============================================================================ +02:19:58 ============================================================================ +02:19:58 Slot Id : <306> +02:19:58 Transaction Type : RESPONSE +02:19:58 Received From : +02:19:58 ============================================================================ +02:19:58 FNo. Len. Field Value +02:19:58 ============================================================================ +02:19:58 [ 1] [ 4] [0810] +02:19:58 [ 7] [ 10] [0319071905] +02:19:58 [ 11] [ 6] [153692] +02:19:58 [ 39] [ 2] [00] +02:19:58 [ 70] [ 3] [301] +02:19:58 ============================================================================ +02:19:58 Calculate Source COMM Id = 2 +02:19:58 ============================================================================ +02:19:58 + + +waiting on router queue for slot.... +02:20:05 ============================================================================ +02:20:05 Slot Id : <286> +02:20:05 Transaction Type : REQUEST +02:20:05 Received From : +02:20:05 ============================================================================ +02:20:05 FNo. Len. Field Value +02:20:05 ============================================================================ +02:20:05 [ 1] [ 4] [0800] +02:20:05 [ 2] [ 5] [02531] +02:20:05 [ 3] [ 6] [579028] +02:20:05 [ 7] [ 10] [0319192005] +02:20:05 [ 11] [ 6] [806547] +02:20:05 [ 15] [ 10] [0319192005] +02:20:05 [ 37] [ 11] [57902806547] +02:20:05 [ 70] [ 3] [001] +02:20:05 ============================================================================ +02:20:05 + + +waiting on router queue for slot.... +02:20:05 ============================================================================ +02:20:05 Slot Id : <286> +02:20:05 Transaction Type : RESPONSE +02:20:05 Received From : +02:20:05 ============================================================================ +02:20:05 FNo. Len. Field Value +02:20:05 ============================================================================ +02:20:05 [ 1] [ 4] [0810] +02:20:05 [ 7] [ 10] [0319192005] +02:20:05 [ 11] [ 6] [806547] +02:20:05 [ 15] [ 4] [0319] +02:20:05 [ 37] [ 12] [57902806547] +02:20:05 [ 39] [ 2] [00] +02:20:05 [ 70] [ 3] [001] +02:20:05 ============================================================================ +02:20:05 Sending to : +02:20:05 ============================================================================ +02:20:05 + + +waiting on router queue for slot.... +02:20:13 ============================================================================ +02:20:13 Slot Id : <307> +02:20:13 Transaction Type : REQUEST +02:20:13 Received From : +02:20:13 ============================================================================ +02:20:13 FNo. Len. Field Value +02:20:13 ============================================================================ +02:20:13 [ 1] [ 4] [0800] +02:20:13 [ 7] [ 10] [0319071920] +02:20:13 [ 11] [ 6] [153693] +02:20:13 [ 70] [ 3] [301] +02:20:13 ============================================================================ +02:20:13 + + +waiting on router queue for slot.... +02:20:13 Sending to : +02:20:13 ============================================================================ +02:20:13 ============================================================================ +02:20:13 Slot Id : <307> +02:20:13 Transaction Type : RESPONSE +02:20:13 Received From : +02:20:13 ============================================================================ +02:20:13 FNo. Len. Field Value +02:20:13 ============================================================================ +02:20:13 [ 1] [ 4] [0810] +02:20:13 [ 7] [ 10] [0319071920] +02:20:13 [ 11] [ 6] [153693] +02:20:13 [ 39] [ 2] [00] +02:20:13 [ 70] [ 3] [301] +02:20:13 ============================================================================ +02:20:13 Calculate Source COMM Id = 2 +02:20:13 ============================================================================ +02:20:13 + + +waiting on router queue for slot.... +02:20:24 ============================================================================ +02:20:24 Slot Id : <317> +02:20:24 Transaction Type : REQUEST +02:20:24 Received From : +02:20:24 ============================================================================ +02:20:24 FNo. Len. Field Value +02:20:24 ============================================================================ +02:20:24 [ 1] [ 4] [0800] +02:20:24 [ 7] [ 10] [0319071931] +02:20:24 [ 11] [ 6] [153694] +02:20:24 [ 70] [ 3] [301] +02:20:24 ============================================================================ +02:20:24 + + +waiting on router queue for slot.... +02:20:24 Sending to : +02:20:24 ============================================================================ +02:20:24 ============================================================================ +02:20:24 Slot Id : <317> +02:20:24 Transaction Type : RESPONSE +02:20:24 Received From : +02:20:24 ============================================================================ +02:20:24 FNo. Len. Field Value +02:20:24 ============================================================================ +02:20:24 [ 1] [ 4] [0810] +02:20:24 [ 7] [ 10] [0319071931] +02:20:24 [ 11] [ 6] [153694] +02:20:24 [ 39] [ 2] [00] +02:20:24 [ 70] [ 3] [301] +02:20:24 ============================================================================ +02:20:24 Calculate Source COMM Id = 2 +02:20:24 ============================================================================ +02:20:24 + + +waiting on router queue for slot.... +02:20:35 ============================================================================ +02:20:35 Slot Id : <310> +02:20:35 Transaction Type : REQUEST +02:20:35 Received From : +02:20:35 ============================================================================ +02:20:35 FNo. Len. Field Value +02:20:35 ============================================================================ +02:20:35 [ 1] [ 4] [0800] +02:20:35 [ 7] [ 10] [0319071942] +02:20:35 [ 11] [ 6] [153695] +02:20:35 [ 70] [ 3] [301] +02:20:35 ============================================================================ +02:20:35 + + +waiting on router queue for slot.... +02:20:35 Sending to : +02:20:35 ============================================================================ +02:20:35 ============================================================================ +02:20:35 Slot Id : <310> +02:20:35 Transaction Type : RESPONSE +02:20:35 Received From : +02:20:35 ============================================================================ +02:20:35 FNo. Len. Field Value +02:20:35 ============================================================================ +02:20:35 [ 1] [ 4] [0810] +02:20:35 [ 7] [ 10] [0319071942] +02:20:35 [ 11] [ 6] [153695] +02:20:35 [ 39] [ 2] [00] +02:20:35 [ 70] [ 3] [301] +02:20:35 ============================================================================ +02:20:35 Calculate Source COMM Id = 2 +02:20:35 ============================================================================ +02:20:35 + + +waiting on router queue for slot.... +02:20:42 ============================================================================ +02:20:42 Slot Id : <318> +02:20:42 Transaction Type : REQUEST +02:20:42 Received From : +02:20:42 ============================================================================ +02:20:42 FNo. Len. Field Value +02:20:42 ============================================================================ +02:20:42 [ 1] [ 4] [0800] +02:20:42 [ 7] [ 10] [0320093230] +02:20:42 [ 11] [ 6] [023230] +02:20:42 [ 37] [ 12] [57902023230] +02:20:42 [ 70] [ 3] [301] +02:20:42 ============================================================================ +02:20:42 + + +waiting on router queue for slot.... +02:20:42 Sending to : +02:20:42 ============================================================================ +02:20:42 ============================================================================ +02:20:42 Slot Id : <318> +02:20:42 Transaction Type : RESPONSE +02:20:42 Received From : +02:20:42 ============================================================================ +02:20:42 FNo. Len. Field Value +02:20:42 ============================================================================ +02:20:42 [ 1] [ 4] [0810] +02:20:42 [ 7] [ 10] [0320093230] +02:20:42 [ 11] [ 6] [023230] +02:20:42 [ 37] [ 12] [579020232300] +02:20:42 [ 39] [ 2] [00] +02:20:42 [ 70] [ 3] [810] +02:20:42 ============================================================================ +02:20:42 Calculate Source COMM Id = 6 +02:20:42 ============================================================================ +02:20:42 + + +waiting on router queue for slot.... +02:20:46 ============================================================================ +02:20:46 Slot Id : <289> +02:20:46 Transaction Type : REQUEST +02:20:46 Received From : +02:20:46 ============================================================================ +02:20:46 FNo. Len. Field Value +02:20:46 ============================================================================ +02:20:46 [ 1] [ 4] [0800] +02:20:46 [ 7] [ 10] [0319071953] +02:20:46 [ 11] [ 6] [153696] +02:20:46 [ 70] [ 3] [301] +02:20:46 ============================================================================ +02:20:46 + + +waiting on router queue for slot.... +02:20:46 Sending to : +02:20:46 ============================================================================ +02:20:46 ============================================================================ +02:20:46 Slot Id : <289> +02:20:46 Transaction Type : RESPONSE +02:20:46 Received From : +02:20:46 ============================================================================ +02:20:46 FNo. Len. Field Value +02:20:46 ============================================================================ +02:20:46 [ 1] [ 4] [0810] +02:20:46 [ 7] [ 10] [0319071953] +02:20:46 [ 11] [ 6] [153696] +02:20:46 [ 39] [ 2] [00] +02:20:46 [ 70] [ 3] [301] +02:20:46 ============================================================================ +02:20:46 Calculate Source COMM Id = 2 +02:20:46 ============================================================================ +02:20:46 + + +waiting on router queue for slot.... +02:20:57 ============================================================================ +02:20:57 Slot Id : <315> +02:20:57 Transaction Type : REQUEST +02:20:57 Received From : +02:20:57 ============================================================================ +02:20:57 FNo. Len. Field Value +02:20:57 ============================================================================ +02:20:57 [ 1] [ 4] [0800] +02:20:57 [ 7] [ 10] [0319072004] +02:20:57 [ 11] [ 6] [153697] +02:20:57 [ 70] [ 3] [301] +02:20:57 ============================================================================ +02:20:57 + + +waiting on router queue for slot.... +02:20:57 Sending to : +02:20:57 ============================================================================ +02:20:57 ============================================================================ +02:20:57 Slot Id : <315> +02:20:57 Transaction Type : RESPONSE +02:20:57 Received From : +02:20:57 ============================================================================ +02:20:57 FNo. Len. Field Value +02:20:57 ============================================================================ +02:20:57 [ 1] [ 4] [0810] +02:20:57 [ 7] [ 10] [0319072004] +02:20:57 [ 11] [ 6] [153697] +02:20:57 [ 39] [ 2] [00] +02:20:57 [ 70] [ 3] [301] +02:20:57 ============================================================================ +02:20:57 Calculate Source COMM Id = 2 +02:20:57 ============================================================================ +02:20:57 + + +waiting on router queue for slot.... +02:21:07 ============================================================================ +02:21:07 Slot Id : <304> +02:21:07 Transaction Type : REQUEST +02:21:07 Received From : +02:21:07 ============================================================================ +02:21:07 FNo. Len. Field Value +02:21:07 ============================================================================ +02:21:07 [ 1] [ 4] [0800] +02:21:07 [ 2] [ 5] [02531] +02:21:07 [ 3] [ 6] [579028] +02:21:07 [ 7] [ 10] [0319192107] +02:21:07 [ 11] [ 6] [806548] +02:21:07 [ 15] [ 10] [0319192107] +02:21:07 [ 37] [ 11] [57902806548] +02:21:07 [ 70] [ 3] [001] +02:21:07 ============================================================================ +02:21:07 + + +waiting on router queue for slot.... +02:21:07 ============================================================================ +02:21:07 Slot Id : <304> +02:21:07 Transaction Type : RESPONSE +02:21:07 Received From : +02:21:07 ============================================================================ +02:21:07 FNo. Len. Field Value +02:21:07 ============================================================================ +02:21:07 [ 1] [ 4] [0810] +02:21:07 [ 7] [ 10] [0319192107] +02:21:07 [ 11] [ 6] [806548] +02:21:07 [ 15] [ 4] [0319] +02:21:07 [ 37] [ 12] [57902806548] +02:21:07 [ 39] [ 2] [00] +02:21:07 [ 70] [ 3] [001] +02:21:07 ============================================================================ +02:21:07 Sending to : +02:21:07 ============================================================================ +02:21:07 + + +waiting on router queue for slot.... +02:21:08 ============================================================================ +02:21:08 Slot Id : <322> +02:21:08 Transaction Type : REQUEST +02:21:08 Received From : +02:21:08 ============================================================================ +02:21:08 FNo. Len. Field Value +02:21:08 ============================================================================ +02:21:08 [ 1] [ 4] [0800] +02:21:08 [ 7] [ 10] [0319072015] +02:21:08 [ 11] [ 6] [153698] +02:21:08 [ 70] [ 3] [301] +02:21:08 ============================================================================ +02:21:08 + + +waiting on router queue for slot.... +02:21:08 Sending to : +02:21:08 ============================================================================ +02:21:08 ============================================================================ +02:21:08 Slot Id : <322> +02:21:08 Transaction Type : RESPONSE +02:21:08 Received From : +02:21:08 ============================================================================ +02:21:08 FNo. Len. Field Value +02:21:08 ============================================================================ +02:21:08 [ 1] [ 4] [0810] +02:21:08 [ 7] [ 10] [0319072015] +02:21:08 [ 11] [ 6] [153698] +02:21:08 [ 39] [ 2] [00] +02:21:08 [ 70] [ 3] [301] +02:21:08 ============================================================================ +02:21:08 Calculate Source COMM Id = 2 +02:21:08 ============================================================================ +02:21:08 + + +waiting on router queue for slot.... +02:21:19 ============================================================================ +02:21:19 Slot Id : <325> +02:21:19 Transaction Type : REQUEST +02:21:19 Received From : +02:21:19 ============================================================================ +02:21:19 FNo. Len. Field Value +02:21:19 ============================================================================ +02:21:19 [ 1] [ 4] [0800] +02:21:19 [ 7] [ 10] [0319072026] +02:21:19 [ 11] [ 6] [153699] +02:21:19 [ 70] [ 3] [301] +02:21:19 ============================================================================ +02:21:19 + + +waiting on router queue for slot.... +02:21:19 Sending to : +02:21:19 ============================================================================ +02:21:19 ============================================================================ +02:21:19 Slot Id : <325> +02:21:19 Transaction Type : RESPONSE +02:21:19 Received From : +02:21:19 ============================================================================ +02:21:19 FNo. Len. Field Value +02:21:19 ============================================================================ +02:21:19 [ 1] [ 4] [0810] +02:21:19 [ 7] [ 10] [0319072026] +02:21:19 [ 11] [ 6] [153699] +02:21:19 [ 39] [ 2] [00] +02:21:19 [ 70] [ 3] [301] +02:21:19 ============================================================================ +02:21:19 Calculate Source COMM Id = 2 +02:21:19 ============================================================================ +02:21:19 + + +waiting on router queue for slot.... +02:21:22 ============================================================================ +02:21:22 Slot Id : <285> +02:21:22 Transaction Type : REQUEST +02:21:22 Received From : +02:21:22 ============================================================================ +02:21:22 FNo. Len. Field Value +02:21:22 ============================================================================ +02:21:22 [ 1] [ 4] [0800] +02:21:22 [ 7] [ 10] [0319191912] +02:21:22 [ 11] [ 6] [091177] +02:21:22 [ 37] [ 12] [57902091177] +02:21:22 [ 70] [ 3] [301] +02:21:22 ============================================================================ +02:21:22 + + +waiting on router queue for slot.... +02:21:22 Sending to : +02:21:22 ============================================================================ +02:21:22 ============================================================================ +02:21:22 Slot Id : <285> +02:21:22 Transaction Type : RESPONSE +02:21:22 Received From : +02:21:22 ============================================================================ +02:21:22 FNo. Len. Field Value +02:21:22 ============================================================================ +02:21:22 [ 1] [ 4] [0810] +02:21:22 [ 7] [ 10] [0319191912] +02:21:22 [ 11] [ 6] [091177] +02:21:22 [ 37] [ 12] [579020911770] +02:21:22 [ 39] [ 2] [00] +02:21:22 [ 70] [ 3] [810] +02:21:22 ============================================================================ +02:21:22 Calculate Source COMM Id = 4 +02:21:22 ============================================================================ +02:21:22 + + +waiting on router queue for slot.... +02:21:30 ============================================================================ +02:21:30 Slot Id : <297> +02:21:30 Transaction Type : REQUEST +02:21:30 Received From : +02:21:30 ============================================================================ +02:21:30 FNo. Len. Field Value +02:21:30 ============================================================================ +02:21:30 [ 1] [ 4] [0800] +02:21:30 [ 7] [ 10] [0319072037] +02:21:30 [ 11] [ 6] [153700] +02:21:30 [ 70] [ 3] [301] +02:21:30 ============================================================================ +02:21:30 + + +waiting on router queue for slot.... +02:21:30 Sending to : +02:21:30 ============================================================================ +02:21:30 ============================================================================ +02:21:30 Slot Id : <297> +02:21:30 Transaction Type : RESPONSE +02:21:30 Received From : +02:21:30 ============================================================================ +02:21:30 FNo. Len. Field Value +02:21:30 ============================================================================ +02:21:30 [ 1] [ 4] [0810] +02:21:30 [ 7] [ 10] [0319072037] +02:21:30 [ 11] [ 6] [153700] +02:21:30 [ 39] [ 2] [00] +02:21:30 [ 70] [ 3] [301] +02:21:30 ============================================================================ +02:21:30 Calculate Source COMM Id = 2 +02:21:30 ============================================================================ +02:21:30 + + +waiting on router queue for slot.... +02:21:42 ============================================================================ +02:21:42 Slot Id : <291> +02:21:42 Transaction Type : REQUEST +02:21:42 Received From : +02:21:42 ============================================================================ +02:21:42 FNo. Len. Field Value +02:21:42 ============================================================================ +02:21:42 [ 1] [ 4] [0800] +02:21:42 [ 7] [ 10] [0319072049] +02:21:42 [ 11] [ 6] [153701] +02:21:42 [ 70] [ 3] [301] +02:21:42 ============================================================================ +02:21:42 + + +waiting on router queue for slot.... +02:21:42 Sending to : +02:21:42 ============================================================================ +02:21:42 ============================================================================ +02:21:42 Slot Id : <291> +02:21:42 Transaction Type : RESPONSE +02:21:42 Received From : +02:21:42 ============================================================================ +02:21:42 FNo. Len. Field Value +02:21:42 ============================================================================ +02:21:42 [ 1] [ 4] [0810] +02:21:42 [ 7] [ 10] [0319072049] +02:21:42 [ 11] [ 6] [153701] +02:21:42 [ 39] [ 2] [00] +02:21:42 [ 70] [ 3] [301] +02:21:42 ============================================================================ +02:21:42 Calculate Source COMM Id = 2 +02:21:42 ============================================================================ +02:21:42 + + +waiting on router queue for slot.... +02:21:47 ============================================================================ +02:21:47 Slot Id : <326> +02:21:47 Transaction Type : REQUEST +02:21:47 Received From : +02:21:47 ============================================================================ +02:21:47 FNo. Len. Field Value +02:21:47 ============================================================================ +02:21:47 [ 1] [ 4] [0800] +02:21:47 [ 7] [ 10] [0320093335] +02:21:47 [ 11] [ 6] [023335] +02:21:47 [ 37] [ 12] [57902023335] +02:21:47 [ 70] [ 3] [301] +02:21:47 ============================================================================ +02:21:47 + + +waiting on router queue for slot.... +02:21:47 Sending to : +02:21:47 ============================================================================ +02:21:47 ============================================================================ +02:21:47 Slot Id : <326> +02:21:47 Transaction Type : RESPONSE +02:21:47 Received From : +02:21:47 ============================================================================ +02:21:47 FNo. Len. Field Value +02:21:47 ============================================================================ +02:21:47 [ 1] [ 4] [0810] +02:21:47 [ 7] [ 10] [0320093335] +02:21:47 [ 11] [ 6] [023335] +02:21:47 [ 37] [ 12] [579020233350] +02:21:47 [ 39] [ 2] [00] +02:21:47 [ 70] [ 3] [810] +02:21:47 ============================================================================ +02:21:47 Calculate Source COMM Id = 6 +02:21:47 ============================================================================ +02:21:47 + + +waiting on router queue for slot.... +02:21:53 ============================================================================ +02:21:53 Slot Id : <305> +02:21:53 Transaction Type : REQUEST +02:21:53 Received From : +02:21:53 ============================================================================ +02:21:53 FNo. Len. Field Value +02:21:53 ============================================================================ +02:21:53 [ 1] [ 4] [0800] +02:21:53 [ 7] [ 10] [0319072100] +02:21:53 [ 11] [ 6] [153702] +02:21:53 [ 70] [ 3] [301] +02:21:53 ============================================================================ +02:21:53 + + +waiting on router queue for slot.... +02:21:53 Sending to : +02:21:53 ============================================================================ +02:21:53 ============================================================================ +02:21:53 Slot Id : <305> +02:21:53 Transaction Type : RESPONSE +02:21:53 Received From : +02:21:53 ============================================================================ +02:21:53 FNo. Len. Field Value +02:21:53 ============================================================================ +02:21:53 [ 1] [ 4] [0810] +02:21:53 [ 7] [ 10] [0319072100] +02:21:53 [ 11] [ 6] [153702] +02:21:53 [ 39] [ 2] [00] +02:21:53 [ 70] [ 3] [301] +02:21:53 ============================================================================ +02:21:53 Calculate Source COMM Id = 2 +02:21:53 ============================================================================ +02:21:53 + + +waiting on router queue for slot.... +02:22:04 ============================================================================ +02:22:04 Slot Id : <301> +02:22:04 Transaction Type : REQUEST +02:22:04 Received From : +02:22:04 ============================================================================ +02:22:04 FNo. Len. Field Value +02:22:04 ============================================================================ +02:22:04 [ 1] [ 4] [0800] +02:22:04 [ 7] [ 10] [0319072111] +02:22:04 [ 11] [ 6] [153703] +02:22:04 [ 70] [ 3] [301] +02:22:04 ============================================================================ +02:22:04 + + +waiting on router queue for slot.... +02:22:04 Sending to : +02:22:04 ============================================================================ +02:22:04 ============================================================================ +02:22:04 Slot Id : <301> +02:22:04 Transaction Type : RESPONSE +02:22:04 Received From : +02:22:04 ============================================================================ +02:22:04 FNo. Len. Field Value +02:22:04 ============================================================================ +02:22:04 [ 1] [ 4] [0810] +02:22:04 [ 7] [ 10] [0319072111] +02:22:04 [ 11] [ 6] [153703] +02:22:04 [ 39] [ 2] [00] +02:22:04 [ 70] [ 3] [301] +02:22:04 ============================================================================ +02:22:04 Calculate Source COMM Id = 2 +02:22:04 ============================================================================ +02:22:04 + + +waiting on router queue for slot.... +02:22:09 ============================================================================ +02:22:09 Slot Id : <327> +02:22:09 Transaction Type : REQUEST +02:22:09 Received From : +02:22:09 ============================================================================ +02:22:09 FNo. Len. Field Value +02:22:09 ============================================================================ +02:22:09 [ 1] [ 4] [0800] +02:22:09 [ 2] [ 5] [02531] +02:22:09 [ 3] [ 6] [579028] +02:22:09 [ 7] [ 10] [0319192209] +02:22:09 [ 11] [ 6] [806549] +02:22:09 [ 15] [ 10] [0319192209] +02:22:09 [ 37] [ 11] [57902806549] +02:22:09 [ 70] [ 3] [001] +02:22:09 ============================================================================ +02:22:09 + + +waiting on router queue for slot.... +02:22:09 ============================================================================ +02:22:09 Slot Id : <327> +02:22:09 Transaction Type : RESPONSE +02:22:09 Received From : +02:22:09 ============================================================================ +02:22:09 FNo. Len. Field Value +02:22:09 ============================================================================ +02:22:09 [ 1] [ 4] [0810] +02:22:09 [ 7] [ 10] [0319192209] +02:22:09 [ 11] [ 6] [806549] +02:22:09 [ 15] [ 4] [0319] +02:22:09 [ 37] [ 12] [57902806549] +02:22:09 [ 39] [ 2] [00] +02:22:09 [ 70] [ 3] [001] +02:22:09 ============================================================================ +02:22:09 Sending to : +02:22:09 ============================================================================ +02:22:09 + + +waiting on router queue for slot.... +02:22:14 ============================================================================ +02:22:14 Slot Id : <333> +02:22:14 Transaction Type : REQUEST +02:22:14 Received From : +02:22:14 ============================================================================ +02:22:14 FNo. Len. Field Value +02:22:14 ============================================================================ +02:22:14 [ 1] [ 4] [0800] +02:22:14 [ 7] [ 10] [0319072122] +02:22:14 [ 11] [ 6] [153704] +02:22:14 [ 70] [ 3] [301] +02:22:14 ============================================================================ +02:22:14 + + +waiting on router queue for slot.... +02:22:14 Sending to : +02:22:14 ============================================================================ +02:22:14 ============================================================================ +02:22:14 Slot Id : <333> +02:22:14 Transaction Type : RESPONSE +02:22:14 Received From : +02:22:14 ============================================================================ +02:22:14 FNo. Len. Field Value +02:22:14 ============================================================================ +02:22:14 [ 1] [ 4] [0810] +02:22:14 [ 7] [ 10] [0319072122] +02:22:14 [ 11] [ 6] [153704] +02:22:14 [ 39] [ 2] [00] +02:22:14 [ 70] [ 3] [301] +02:22:14 ============================================================================ +02:22:14 Calculate Source COMM Id = 2 +02:22:14 ============================================================================ +02:22:14 + + +waiting on router queue for slot.... +02:22:25 ============================================================================ +02:22:25 Slot Id : <314> +02:22:25 Transaction Type : REQUEST +02:22:25 Received From : +02:22:25 ============================================================================ +02:22:25 FNo. Len. Field Value +02:22:25 ============================================================================ +02:22:25 [ 1] [ 4] [0800] +02:22:25 [ 7] [ 10] [0319072132] +02:22:25 [ 11] [ 6] [153705] +02:22:25 [ 70] [ 3] [301] +02:22:25 ============================================================================ +02:22:25 + + +waiting on router queue for slot.... +02:22:25 Sending to : +02:22:25 ============================================================================ +02:22:25 ============================================================================ +02:22:25 Slot Id : <314> +02:22:25 Transaction Type : RESPONSE +02:22:25 Received From : +02:22:25 ============================================================================ +02:22:25 FNo. Len. Field Value +02:22:25 ============================================================================ +02:22:25 [ 1] [ 4] [0810] +02:22:25 [ 7] [ 10] [0319072132] +02:22:25 [ 11] [ 6] [153705] +02:22:25 [ 39] [ 2] [00] +02:22:25 [ 70] [ 3] [301] +02:22:25 ============================================================================ +02:22:25 Calculate Source COMM Id = 2 +02:22:25 ============================================================================ +02:22:25 + + +waiting on router queue for slot.... +02:22:36 ============================================================================ +02:22:36 Slot Id : <331> +02:22:36 Transaction Type : REQUEST +02:22:36 Received From : +02:22:36 ============================================================================ +02:22:36 FNo. Len. Field Value +02:22:36 ============================================================================ +02:22:36 [ 1] [ 4] [0800] +02:22:36 [ 7] [ 10] [0319072143] +02:22:36 [ 11] [ 6] [153706] +02:22:36 [ 70] [ 3] [301] +02:22:36 ============================================================================ +02:22:36 + + +waiting on router queue for slot.... +02:22:36 Sending to : +02:22:36 ============================================================================ +02:22:36 ============================================================================ +02:22:36 Slot Id : <331> +02:22:36 Transaction Type : RESPONSE +02:22:36 Received From : +02:22:36 ============================================================================ +02:22:36 FNo. Len. Field Value +02:22:36 ============================================================================ +02:22:36 [ 1] [ 4] [0810] +02:22:36 [ 7] [ 10] [0319072143] +02:22:36 [ 11] [ 6] [153706] +02:22:36 [ 39] [ 2] [00] +02:22:36 [ 70] [ 3] [301] +02:22:36 ============================================================================ +02:22:36 Calculate Source COMM Id = 2 +02:22:36 ============================================================================ +02:22:36 + + +waiting on router queue for slot.... +02:22:52 ============================================================================ +02:22:52 Slot Id : <321> +02:22:52 Transaction Type : REQUEST +02:22:52 Received From : +02:22:52 ============================================================================ +02:22:52 FNo. Len. Field Value +02:22:52 ============================================================================ +02:22:52 [ 1] [ 4] [0800] +02:22:52 [ 7] [ 10] [0319072158] +02:22:52 [ 11] [ 6] [153707] +02:22:52 [ 70] [ 3] [301] +02:22:52 ============================================================================ +02:22:52 + + +waiting on router queue for slot.... +02:22:52 Sending to : +02:22:52 ============================================================================ +02:22:52 ============================================================================ +02:22:52 Slot Id : <321> +02:22:52 Transaction Type : RESPONSE +02:22:52 Received From : +02:22:52 ============================================================================ +02:22:52 FNo. Len. Field Value +02:22:52 ============================================================================ +02:22:52 [ 1] [ 4] [0810] +02:22:52 [ 7] [ 10] [0319072158] +02:22:52 [ 11] [ 6] [153707] +02:22:52 [ 39] [ 2] [00] +02:22:52 [ 70] [ 3] [301] +02:22:52 ============================================================================ +02:22:52 Calculate Source COMM Id = 2 +02:22:52 ============================================================================ +02:22:52 + + +waiting on router queue for slot.... +02:22:52 ============================================================================ +02:22:52 Slot Id : <336> +02:22:52 Transaction Type : REQUEST +02:22:52 Received From : +02:22:52 ============================================================================ +02:22:52 FNo. Len. Field Value +02:22:52 ============================================================================ +02:22:52 [ 1] [ 4] [0800] +02:22:52 [ 7] [ 10] [0320093440] +02:22:52 [ 11] [ 6] [023440] +02:22:52 [ 37] [ 12] [57902023440] +02:22:52 [ 70] [ 3] [301] +02:22:52 ============================================================================ +02:22:52 + + +waiting on router queue for slot.... +02:22:52 Sending to : +02:22:52 ============================================================================ +02:22:52 ============================================================================ +02:22:52 Slot Id : <336> +02:22:52 Transaction Type : RESPONSE +02:22:52 Received From : +02:22:52 ============================================================================ +02:22:52 FNo. Len. Field Value +02:22:52 ============================================================================ +02:22:52 [ 1] [ 4] [0810] +02:22:52 [ 7] [ 10] [0320093440] +02:22:52 [ 11] [ 6] [023440] +02:22:52 [ 37] [ 12] [579020234400] +02:22:52 [ 39] [ 2] [00] +02:22:52 [ 70] [ 3] [810] +02:22:52 ============================================================================ +02:22:52 Calculate Source COMM Id = 6 +02:22:52 ============================================================================ +02:22:52 + + +waiting on router queue for slot.... +02:23:07 ============================================================================ +02:23:07 Slot Id : <334> +02:23:07 Transaction Type : REQUEST +02:23:07 Received From : +02:23:07 ============================================================================ +02:23:07 FNo. Len. Field Value +02:23:07 ============================================================================ +02:23:07 [ 1] [ 4] [0800] +02:23:07 [ 7] [ 10] [0319072214] +02:23:07 [ 11] [ 6] [153708] +02:23:07 [ 70] [ 3] [301] +02:23:07 ============================================================================ +02:23:07 + + +waiting on router queue for slot.... +02:23:07 Sending to : +02:23:07 ============================================================================ +02:23:07 ============================================================================ +02:23:07 Slot Id : <334> +02:23:07 Transaction Type : RESPONSE +02:23:07 Received From : +02:23:07 ============================================================================ +02:23:07 FNo. Len. Field Value +02:23:07 ============================================================================ +02:23:07 [ 1] [ 4] [0810] +02:23:07 [ 7] [ 10] [0319072214] +02:23:07 [ 11] [ 6] [153708] +02:23:07 [ 39] [ 2] [00] +02:23:07 [ 70] [ 3] [301] +02:23:07 ============================================================================ +02:23:07 Calculate Source COMM Id = 2 +02:23:07 ============================================================================ +02:23:07 + + +waiting on router queue for slot.... +02:23:11 ============================================================================ +02:23:11 Slot Id : <337> +02:23:11 Transaction Type : REQUEST +02:23:11 Received From : +02:23:11 ============================================================================ +02:23:11 FNo. Len. Field Value +02:23:11 ============================================================================ +02:23:11 [ 1] [ 4] [0800] +02:23:11 [ 2] [ 5] [02531] +02:23:11 [ 3] [ 6] [579028] +02:23:11 [ 7] [ 10] [0319192311] +02:23:11 [ 11] [ 6] [806550] +02:23:11 [ 15] [ 10] [0319192311] +02:23:11 [ 37] [ 11] [57902806550] +02:23:11 [ 70] [ 3] [001] +02:23:11 ============================================================================ +02:23:11 + + +waiting on router queue for slot.... +02:23:11 ============================================================================ +02:23:11 Slot Id : <337> +02:23:11 Transaction Type : RESPONSE +02:23:11 Received From : +02:23:11 ============================================================================ +02:23:11 FNo. Len. Field Value +02:23:11 ============================================================================ +02:23:11 [ 1] [ 4] [0810] +02:23:11 [ 7] [ 10] [0319192311] +02:23:11 [ 11] [ 6] [806550] +02:23:11 [ 15] [ 4] [0319] +02:23:11 [ 37] [ 12] [57902806550] +02:23:11 [ 39] [ 2] [00] +02:23:11 [ 70] [ 3] [001] +02:23:11 ============================================================================ +02:23:11 Sending to : +02:23:11 ============================================================================ +02:23:11 + + +waiting on router queue for slot.... +02:23:24 ============================================================================ +02:23:24 Slot Id : <335> +02:23:24 Transaction Type : REQUEST +02:23:24 Received From : +02:23:24 ============================================================================ +02:23:24 FNo. Len. Field Value +02:23:24 ============================================================================ +02:23:24 [ 1] [ 4] [0800] +02:23:24 [ 7] [ 10] [0319072231] +02:23:24 [ 11] [ 6] [153709] +02:23:24 [ 70] [ 3] [301] +02:23:24 ============================================================================ +02:23:24 + + +waiting on router queue for slot.... +02:23:24 Sending to : +02:23:24 ============================================================================ +02:23:24 ============================================================================ +02:23:24 Slot Id : <335> +02:23:24 Transaction Type : RESPONSE +02:23:24 Received From : +02:23:24 ============================================================================ +02:23:24 FNo. Len. Field Value +02:23:24 ============================================================================ +02:23:24 [ 1] [ 4] [0810] +02:23:24 [ 7] [ 10] [0319072231] +02:23:24 [ 11] [ 6] [153709] +02:23:24 [ 39] [ 2] [00] +02:23:24 [ 70] [ 3] [301] +02:23:24 ============================================================================ +02:23:24 Calculate Source COMM Id = 2 +02:23:24 ============================================================================ +02:23:24 + + +waiting on router queue for slot.... +02:23:34 ============================================================================ +02:23:34 Slot Id : <342> +02:23:34 Transaction Type : REQUEST +02:23:34 Received From : +02:23:34 ============================================================================ +02:23:34 FNo. Len. Field Value +02:23:34 ============================================================================ +02:23:34 [ 1] [ 4] [0800] +02:23:34 [ 7] [ 10] [0319072241] +02:23:34 [ 11] [ 6] [153710] +02:23:34 [ 70] [ 3] [301] +02:23:34 ============================================================================ +02:23:34 + + +waiting on router queue for slot.... +02:23:34 Sending to : +02:23:34 ============================================================================ +02:23:34 ============================================================================ +02:23:34 Slot Id : <342> +02:23:34 Transaction Type : RESPONSE +02:23:34 Received From : +02:23:34 ============================================================================ +02:23:34 FNo. Len. Field Value +02:23:34 ============================================================================ +02:23:34 [ 1] [ 4] [0810] +02:23:34 [ 7] [ 10] [0319072241] +02:23:34 [ 11] [ 6] [153710] +02:23:34 [ 39] [ 2] [00] +02:23:34 [ 70] [ 3] [301] +02:23:34 ============================================================================ +02:23:34 Calculate Source COMM Id = 2 +02:23:34 ============================================================================ +02:23:34 + + +waiting on router queue for slot.... +02:23:45 ============================================================================ +02:23:45 Slot Id : <320> +02:23:45 Transaction Type : REQUEST +02:23:45 Received From : +02:23:45 ============================================================================ +02:23:45 FNo. Len. Field Value +02:23:45 ============================================================================ +02:23:45 [ 1] [ 4] [0800] +02:23:45 [ 7] [ 10] [0319072252] +02:23:45 [ 11] [ 6] [153711] +02:23:45 [ 70] [ 3] [301] +02:23:45 ============================================================================ +02:23:45 + + +waiting on router queue for slot.... +02:23:45 Sending to : +02:23:45 ============================================================================ +02:23:45 ============================================================================ +02:23:45 Slot Id : <320> +02:23:45 Transaction Type : RESPONSE +02:23:45 Received From : +02:23:45 ============================================================================ +02:23:45 FNo. Len. Field Value +02:23:45 ============================================================================ +02:23:45 [ 1] [ 4] [0810] +02:23:45 [ 7] [ 10] [0319072252] +02:23:45 [ 11] [ 6] [153711] +02:23:45 [ 39] [ 2] [00] +02:23:45 [ 70] [ 3] [301] +02:23:45 ============================================================================ +02:23:45 Calculate Source COMM Id = 2 +02:23:45 ============================================================================ +02:23:45 + + +waiting on router queue for slot.... +02:23:56 ============================================================================ +02:23:56 Slot Id : <341> +02:23:56 Transaction Type : REQUEST +02:23:56 Received From : +02:23:56 ============================================================================ +02:23:56 FNo. Len. Field Value +02:23:56 ============================================================================ +02:23:56 [ 1] [ 4] [0800] +02:23:56 [ 7] [ 10] [0319072303] +02:23:56 [ 11] [ 6] [153712] +02:23:56 [ 70] [ 3] [301] +02:23:56 ============================================================================ +02:23:56 + + +waiting on router queue for slot.... +02:23:56 Sending to : +02:23:56 ============================================================================ +02:23:56 ============================================================================ +02:23:56 Slot Id : <341> +02:23:56 Transaction Type : RESPONSE +02:23:56 Received From : +02:23:56 ============================================================================ +02:23:56 FNo. Len. Field Value +02:23:56 ============================================================================ +02:23:56 [ 1] [ 4] [0810] +02:23:56 [ 7] [ 10] [0319072303] +02:23:56 [ 11] [ 6] [153712] +02:23:56 [ 39] [ 2] [00] +02:23:56 [ 70] [ 3] [301] +02:23:56 ============================================================================ +02:23:56 Calculate Source COMM Id = 2 +02:23:56 ============================================================================ +02:23:56 + + +waiting on router queue for slot.... +02:23:57 ============================================================================ +02:23:57 Slot Id : <268> +02:23:57 Transaction Type : REQUEST +02:23:57 Received From : +02:23:57 ============================================================================ +02:23:57 FNo. Len. Field Value +02:23:57 ============================================================================ +02:23:57 [ 1] [ 4] [0800] +02:23:57 [ 7] [ 10] [0320093545] +02:23:57 [ 11] [ 6] [023545] +02:23:57 [ 37] [ 12] [57902023545] +02:23:57 [ 70] [ 3] [301] +02:23:57 ============================================================================ +02:23:57 + + +waiting on router queue for slot.... +02:23:57 Sending to : +02:23:57 ============================================================================ +02:23:57 ============================================================================ +02:23:57 Slot Id : <268> +02:23:57 Transaction Type : RESPONSE +02:23:57 Received From : +02:23:57 ============================================================================ +02:23:57 FNo. Len. Field Value +02:23:57 ============================================================================ +02:23:57 [ 1] [ 4] [0810] +02:23:57 [ 7] [ 10] [0320093545] +02:23:57 [ 11] [ 6] [023545] +02:23:57 [ 37] [ 12] [579020235450] +02:23:57 [ 39] [ 2] [00] +02:23:57 [ 70] [ 3] [810] +02:23:57 ============================================================================ +02:23:57 Calculate Source COMM Id = 6 +02:23:57 ============================================================================ +02:23:57 + + +waiting on router queue for slot.... +02:24:07 ============================================================================ +02:24:07 Slot Id : <344> +02:24:07 Transaction Type : REQUEST +02:24:07 Received From : +02:24:07 ============================================================================ +02:24:07 FNo. Len. Field Value +02:24:07 ============================================================================ +02:24:07 [ 1] [ 4] [0800] +02:24:07 [ 7] [ 10] [0319072314] +02:24:07 [ 11] [ 6] [153713] +02:24:07 [ 70] [ 3] [301] +02:24:07 ============================================================================ +02:24:07 + + +waiting on router queue for slot.... +02:24:07 Sending to : +02:24:07 ============================================================================ +02:24:07 ============================================================================ +02:24:07 Slot Id : <344> +02:24:07 Transaction Type : RESPONSE +02:24:07 Received From : +02:24:07 ============================================================================ +02:24:07 FNo. Len. Field Value +02:24:07 ============================================================================ +02:24:07 [ 1] [ 4] [0810] +02:24:07 [ 7] [ 10] [0319072314] +02:24:07 [ 11] [ 6] [153713] +02:24:07 [ 39] [ 2] [00] +02:24:07 [ 70] [ 3] [301] +02:24:07 ============================================================================ +02:24:07 Calculate Source COMM Id = 2 +02:24:07 ============================================================================ +02:24:07 + + +waiting on router queue for slot.... +02:24:13 ============================================================================ +02:24:13 Slot Id : <345> +02:24:13 Transaction Type : REQUEST +02:24:13 Received From : +02:24:13 ============================================================================ +02:24:13 FNo. Len. Field Value +02:24:13 ============================================================================ +02:24:13 [ 1] [ 4] [0800] +02:24:13 [ 2] [ 5] [02531] +02:24:13 [ 3] [ 6] [579028] +02:24:13 [ 7] [ 10] [0319192413] +02:24:13 [ 11] [ 6] [806551] +02:24:13 [ 15] [ 10] [0319192413] +02:24:13 [ 37] [ 11] [57902806551] +02:24:13 [ 70] [ 3] [001] +02:24:13 ============================================================================ +02:24:13 + + +waiting on router queue for slot.... +02:24:13 ============================================================================ +02:24:13 Slot Id : <345> +02:24:13 Transaction Type : RESPONSE +02:24:13 Received From : +02:24:13 ============================================================================ +02:24:13 FNo. Len. Field Value +02:24:13 ============================================================================ +02:24:13 [ 1] [ 4] [0810] +02:24:13 [ 7] [ 10] [0319192413] +02:24:13 [ 11] [ 6] [806551] +02:24:13 [ 15] [ 4] [0319] +02:24:13 [ 37] [ 12] [57902806551] +02:24:13 [ 39] [ 2] [00] +02:24:13 [ 70] [ 3] [001] +02:24:13 ============================================================================ +02:24:13 Sending to : +02:24:13 ============================================================================ +02:24:13 + + +waiting on router queue for slot.... +02:24:19 ============================================================================ +02:24:19 Slot Id : <329> +02:24:19 Transaction Type : REQUEST +02:24:19 Received From : +02:24:19 ============================================================================ +02:24:19 FNo. Len. Field Value +02:24:19 ============================================================================ +02:24:19 [ 1] [ 4] [0800] +02:24:19 [ 7] [ 10] [0319072326] +02:24:19 [ 11] [ 6] [153714] +02:24:19 [ 70] [ 3] [301] +02:24:19 ============================================================================ +02:24:19 + + +waiting on router queue for slot.... +02:24:19 Sending to : +02:24:19 ============================================================================ +02:24:19 ============================================================================ +02:24:19 Slot Id : <329> +02:24:19 Transaction Type : RESPONSE +02:24:19 Received From : +02:24:19 ============================================================================ +02:24:19 FNo. Len. Field Value +02:24:19 ============================================================================ +02:24:19 [ 1] [ 4] [0810] +02:24:19 [ 7] [ 10] [0319072326] +02:24:19 [ 11] [ 6] [153714] +02:24:19 [ 39] [ 2] [00] +02:24:19 [ 70] [ 3] [301] +02:24:19 ============================================================================ +02:24:19 Calculate Source COMM Id = 2 +02:24:19 ============================================================================ +02:24:19 + + +waiting on router queue for slot.... +02:24:30 ============================================================================ +02:24:30 Slot Id : <339> +02:24:30 Transaction Type : REQUEST +02:24:30 Received From : +02:24:30 ============================================================================ +02:24:30 FNo. Len. Field Value +02:24:30 ============================================================================ +02:24:30 [ 1] [ 4] [0800] +02:24:30 [ 7] [ 10] [0319072337] +02:24:30 [ 11] [ 6] [153715] +02:24:30 [ 70] [ 3] [301] +02:24:30 ============================================================================ +02:24:30 + + +waiting on router queue for slot.... +02:24:30 Sending to : +02:24:30 ============================================================================ +02:24:30 ============================================================================ +02:24:30 Slot Id : <339> +02:24:30 Transaction Type : RESPONSE +02:24:30 Received From : +02:24:30 ============================================================================ +02:24:30 FNo. Len. Field Value +02:24:30 ============================================================================ +02:24:30 [ 1] [ 4] [0810] +02:24:30 [ 7] [ 10] [0319072337] +02:24:30 [ 11] [ 6] [153715] +02:24:30 [ 39] [ 2] [00] +02:24:30 [ 70] [ 3] [301] +02:24:30 ============================================================================ +02:24:30 Calculate Source COMM Id = 2 +02:24:30 ============================================================================ +02:24:30 + + +waiting on router queue for slot.... +02:24:41 ============================================================================ +02:24:41 Slot Id : <323> +02:24:41 Transaction Type : REQUEST +02:24:41 Received From : +02:24:41 ============================================================================ +02:24:41 FNo. Len. Field Value +02:24:41 ============================================================================ +02:24:41 [ 1] [ 4] [0800] +02:24:41 [ 7] [ 10] [0319072348] +02:24:41 [ 11] [ 6] [153716] +02:24:41 [ 70] [ 3] [301] +02:24:41 ============================================================================ +02:24:41 + + +waiting on router queue for slot.... +02:24:41 Sending to : +02:24:41 ============================================================================ +02:24:41 ============================================================================ +02:24:41 Slot Id : <323> +02:24:41 Transaction Type : RESPONSE +02:24:41 Received From : +02:24:41 ============================================================================ +02:24:41 FNo. Len. Field Value +02:24:41 ============================================================================ +02:24:41 [ 1] [ 4] [0810] +02:24:41 [ 7] [ 10] [0319072348] +02:24:41 [ 11] [ 6] [153716] +02:24:41 [ 39] [ 2] [00] +02:24:41 [ 70] [ 3] [301] +02:24:41 ============================================================================ +02:24:41 Calculate Source COMM Id = 2 +02:24:41 ============================================================================ +02:24:41 + + +waiting on router queue for slot.... +02:24:53 ============================================================================ +02:24:53 Slot Id : <309> +02:24:53 Transaction Type : REQUEST +02:24:53 Received From : +02:24:53 ============================================================================ +02:24:53 FNo. Len. Field Value +02:24:53 ============================================================================ +02:24:53 [ 1] [ 4] [0800] +02:24:53 [ 7] [ 10] [0319072400] +02:24:53 [ 11] [ 6] [153717] +02:24:53 [ 70] [ 3] [301] +02:24:53 ============================================================================ +02:24:53 + + +waiting on router queue for slot.... +02:24:53 Sending to : +02:24:53 ============================================================================ +02:24:53 ============================================================================ +02:24:53 Slot Id : <309> +02:24:53 Transaction Type : RESPONSE +02:24:53 Received From : +02:24:53 ============================================================================ +02:24:53 FNo. Len. Field Value +02:24:53 ============================================================================ +02:24:53 [ 1] [ 4] [0810] +02:24:53 [ 7] [ 10] [0319072400] +02:24:53 [ 11] [ 6] [153717] +02:24:53 [ 39] [ 2] [00] +02:24:53 [ 70] [ 3] [301] +02:24:53 ============================================================================ +02:24:53 Calculate Source COMM Id = 2 +02:24:53 ============================================================================ +02:24:53 + + +waiting on router queue for slot.... +02:24:56 ============================================================================ +02:24:56 Slot Id : <348> +02:24:56 Transaction Type : REQUEST +02:24:56 Received From : +02:24:56 ============================================================================ +02:24:56 FNo. Len. Field Value +02:24:56 ============================================================================ +02:24:56 [ 1] [ 4] [0800] +02:24:56 [ 7] [ 10] [0319193242] +02:24:56 [ 11] [ 6] [097049] +02:24:56 [ 37] [ 12] [57902097049] +02:24:56 [ 70] [ 3] [301] +02:24:56 ============================================================================ +02:24:56 + + +waiting on router queue for slot.... +02:24:56 Sending to : +02:24:56 ============================================================================ +02:24:56 ============================================================================ +02:24:56 Slot Id : <348> +02:24:56 Transaction Type : RESPONSE +02:24:56 Received From : +02:24:56 ============================================================================ +02:24:56 FNo. Len. Field Value +02:24:56 ============================================================================ +02:24:56 [ 1] [ 4] [0810] +02:24:56 [ 7] [ 10] [0319193242] +02:24:56 [ 11] [ 6] [097049] +02:24:56 [ 37] [ 12] [579020970490] +02:24:56 [ 39] [ 2] [00] +02:24:56 [ 70] [ 3] [810] +02:24:56 ============================================================================ +02:24:56 Calculate Source COMM Id = 1 +02:24:56 ============================================================================ +02:24:56 + + +waiting on router queue for slot.... +02:25:02 ============================================================================ +02:25:02 Slot Id : <352> +02:25:02 Transaction Type : REQUEST +02:25:02 Received From : +02:25:02 ============================================================================ +02:25:02 FNo. Len. Field Value +02:25:02 ============================================================================ +02:25:02 [ 1] [ 4] [0800] +02:25:02 [ 7] [ 10] [0320093650] +02:25:02 [ 11] [ 6] [023650] +02:25:02 [ 37] [ 12] [57902023650] +02:25:02 [ 70] [ 3] [301] +02:25:02 ============================================================================ +02:25:02 + + +waiting on router queue for slot.... +02:25:02 Sending to : +02:25:02 ============================================================================ +02:25:02 ============================================================================ +02:25:02 Slot Id : <352> +02:25:02 Transaction Type : RESPONSE +02:25:02 Received From : +02:25:02 ============================================================================ +02:25:02 FNo. Len. Field Value +02:25:02 ============================================================================ +02:25:02 [ 1] [ 4] [0810] +02:25:02 [ 7] [ 10] [0320093650] +02:25:02 [ 11] [ 6] [023650] +02:25:02 [ 37] [ 12] [579020236500] +02:25:02 [ 39] [ 2] [00] +02:25:02 [ 70] [ 3] [810] +02:25:02 ============================================================================ +02:25:02 Calculate Source COMM Id = 6 +02:25:02 ============================================================================ +02:25:02 + + +waiting on router queue for slot.... +02:25:04 ============================================================================ +02:25:04 Slot Id : <328> +02:25:04 Transaction Type : REQUEST +02:25:04 Received From : +02:25:04 ============================================================================ +02:25:04 FNo. Len. Field Value +02:25:04 ============================================================================ +02:25:04 [ 1] [ 4] [0800] +02:25:04 [ 7] [ 10] [0319072411] +02:25:04 [ 11] [ 6] [153718] +02:25:04 [ 70] [ 3] [301] +02:25:04 ============================================================================ +02:25:04 + + +waiting on router queue for slot.... +02:25:04 Sending to : +02:25:04 ============================================================================ +02:25:04 ============================================================================ +02:25:04 Slot Id : <328> +02:25:04 Transaction Type : RESPONSE +02:25:04 Received From : +02:25:04 ============================================================================ +02:25:04 FNo. Len. Field Value +02:25:04 ============================================================================ +02:25:04 [ 1] [ 4] [0810] +02:25:04 [ 7] [ 10] [0319072411] +02:25:04 [ 11] [ 6] [153718] +02:25:04 [ 39] [ 2] [00] +02:25:04 [ 70] [ 3] [301] +02:25:04 ============================================================================ +02:25:04 Calculate Source COMM Id = 2 +02:25:04 ============================================================================ +02:25:04 + + +waiting on router queue for slot.... +02:25:14 ============================================================================ +02:25:14 Slot Id : <350> +02:25:14 Transaction Type : REQUEST +02:25:14 Received From : +02:25:14 ============================================================================ +02:25:14 FNo. Len. Field Value +02:25:14 ============================================================================ +02:25:14 [ 1] [ 4] [0800] +02:25:14 [ 7] [ 10] [0319072421] +02:25:14 [ 11] [ 6] [153719] +02:25:14 [ 70] [ 3] [301] +02:25:14 ============================================================================ +02:25:14 + + +waiting on router queue for slot.... +02:25:14 Sending to : +02:25:14 ============================================================================ +02:25:14 ============================================================================ +02:25:14 Slot Id : <350> +02:25:14 Transaction Type : RESPONSE +02:25:14 Received From : +02:25:14 ============================================================================ +02:25:14 FNo. Len. Field Value +02:25:14 ============================================================================ +02:25:14 [ 1] [ 4] [0810] +02:25:14 [ 7] [ 10] [0319072421] +02:25:14 [ 11] [ 6] [153719] +02:25:14 [ 39] [ 2] [00] +02:25:14 [ 70] [ 3] [301] +02:25:14 ============================================================================ +02:25:14 Calculate Source COMM Id = 2 +02:25:14 ============================================================================ +02:25:14 + + +waiting on router queue for slot.... +02:25:15 ============================================================================ +02:25:15 Slot Id : <347> +02:25:15 Transaction Type : REQUEST +02:25:15 Received From : +02:25:15 ============================================================================ +02:25:15 FNo. Len. Field Value +02:25:15 ============================================================================ +02:25:15 [ 1] [ 4] [0800] +02:25:15 [ 2] [ 5] [02531] +02:25:15 [ 3] [ 6] [579028] +02:25:15 [ 7] [ 10] [0319192515] +02:25:15 [ 11] [ 6] [806552] +02:25:15 [ 15] [ 10] [0319192515] +02:25:15 [ 37] [ 11] [57902806552] +02:25:15 [ 70] [ 3] [001] +02:25:15 ============================================================================ +02:25:15 + + +waiting on router queue for slot.... +02:25:15 ============================================================================ +02:25:15 Slot Id : <347> +02:25:15 Transaction Type : RESPONSE +02:25:15 Received From : +02:25:15 ============================================================================ +02:25:15 FNo. Len. Field Value +02:25:15 ============================================================================ +02:25:15 [ 1] [ 4] [0810] +02:25:15 [ 7] [ 10] [0319192515] +02:25:15 [ 11] [ 6] [806552] +02:25:15 [ 15] [ 4] [0319] +02:25:15 [ 37] [ 12] [57902806552] +02:25:15 [ 39] [ 2] [00] +02:25:15 [ 70] [ 3] [001] +02:25:15 ============================================================================ +02:25:15 Sending to : +02:25:15 ============================================================================ +02:25:15 + + +waiting on router queue for slot.... +02:25:26 ============================================================================ +02:25:26 Slot Id : <319> +02:25:26 Transaction Type : REQUEST +02:25:26 Received From : +02:25:26 ============================================================================ +02:25:26 FNo. Len. Field Value +02:25:26 ============================================================================ +02:25:26 [ 1] [ 4] [0800] +02:25:26 [ 7] [ 10] [0319072433] +02:25:26 [ 11] [ 6] [153720] +02:25:26 [ 70] [ 3] [301] +02:25:26 ============================================================================ +02:25:26 + + +waiting on router queue for slot.... +02:25:26 Sending to : +02:25:26 ============================================================================ +02:25:26 ============================================================================ +02:25:26 Slot Id : <319> +02:25:26 Transaction Type : RESPONSE +02:25:26 Received From : +02:25:26 ============================================================================ +02:25:26 FNo. Len. Field Value +02:25:26 ============================================================================ +02:25:26 [ 1] [ 4] [0810] +02:25:26 [ 7] [ 10] [0319072433] +02:25:26 [ 11] [ 6] [153720] +02:25:26 [ 39] [ 2] [00] +02:25:26 [ 70] [ 3] [301] +02:25:26 ============================================================================ +02:25:26 Calculate Source COMM Id = 2 +02:25:26 ============================================================================ +02:25:26 + + +waiting on router queue for slot.... +02:25:36 ============================================================================ +02:25:36 Slot Id : <356> +02:25:36 Transaction Type : REQUEST +02:25:36 Received From : +02:25:36 ============================================================================ +02:25:36 FNo. Len. Field Value +02:25:36 ============================================================================ +02:25:36 [ 1] [ 4] [0800] +02:25:36 [ 7] [ 10] [0319072444] +02:25:36 [ 11] [ 6] [153721] +02:25:36 [ 70] [ 3] [301] +02:25:36 ============================================================================ +02:25:36 + + +waiting on router queue for slot.... +02:25:36 Sending to : +02:25:36 ============================================================================ +02:25:36 ============================================================================ +02:25:36 Slot Id : <356> +02:25:36 Transaction Type : RESPONSE +02:25:36 Received From : +02:25:36 ============================================================================ +02:25:36 FNo. Len. Field Value +02:25:36 ============================================================================ +02:25:36 [ 1] [ 4] [0810] +02:25:36 [ 7] [ 10] [0319072444] +02:25:36 [ 11] [ 6] [153721] +02:25:36 [ 39] [ 2] [00] +02:25:36 [ 70] [ 3] [301] +02:25:36 ============================================================================ +02:25:36 Calculate Source COMM Id = 2 +02:25:36 ============================================================================ +02:25:36 + + +waiting on router queue for slot.... +02:25:53 ============================================================================ +02:25:53 Slot Id : <332> +02:25:53 Transaction Type : REQUEST +02:25:53 Received From : +02:25:53 ============================================================================ +02:25:53 FNo. Len. Field Value +02:25:53 ============================================================================ +02:25:53 [ 1] [ 4] [0800] +02:25:53 [ 7] [ 10] [0319072500] +02:25:53 [ 11] [ 6] [153722] +02:25:53 [ 70] [ 3] [301] +02:25:53 ============================================================================ +02:25:53 + + +waiting on router queue for slot.... +02:25:53 Sending to : +02:25:53 ============================================================================ +02:25:53 ============================================================================ +02:25:53 Slot Id : <332> +02:25:53 Transaction Type : RESPONSE +02:25:53 Received From : +02:25:53 ============================================================================ +02:25:53 FNo. Len. Field Value +02:25:53 ============================================================================ +02:25:53 [ 1] [ 4] [0810] +02:25:53 [ 7] [ 10] [0319072500] +02:25:53 [ 11] [ 6] [153722] +02:25:53 [ 39] [ 2] [00] +02:25:53 [ 70] [ 3] [301] +02:25:53 ============================================================================ +02:25:53 Calculate Source COMM Id = 2 +02:25:53 ============================================================================ +02:25:53 + + +waiting on router queue for slot.... +02:26:04 ============================================================================ +02:26:04 Slot Id : <346> +02:26:04 Transaction Type : REQUEST +02:26:04 Received From : +02:26:04 ============================================================================ +02:26:04 FNo. Len. Field Value +02:26:04 ============================================================================ +02:26:04 [ 1] [ 4] [0800] +02:26:04 [ 7] [ 10] [0319072511] +02:26:04 [ 11] [ 6] [153723] +02:26:04 [ 70] [ 3] [301] +02:26:04 ============================================================================ +02:26:04 + + +waiting on router queue for slot.... +02:26:04 Sending to : +02:26:04 ============================================================================ +02:26:04 ============================================================================ +02:26:04 Slot Id : <346> +02:26:04 Transaction Type : RESPONSE +02:26:04 Received From : +02:26:04 ============================================================================ +02:26:04 FNo. Len. Field Value +02:26:04 ============================================================================ +02:26:04 [ 1] [ 4] [0810] +02:26:04 [ 7] [ 10] [0319072511] +02:26:04 [ 11] [ 6] [153723] +02:26:04 [ 39] [ 2] [00] +02:26:04 [ 70] [ 3] [301] +02:26:04 ============================================================================ +02:26:04 Calculate Source COMM Id = 2 +02:26:04 ============================================================================ +02:26:04 + + +waiting on router queue for slot.... +02:26:07 ============================================================================ +02:26:07 Slot Id : <330> +02:26:07 Transaction Type : REQUEST +02:26:07 Received From : +02:26:07 ============================================================================ +02:26:07 FNo. Len. Field Value +02:26:07 ============================================================================ +02:26:07 [ 1] [ 4] [0800] +02:26:07 [ 7] [ 10] [0320093755] +02:26:07 [ 11] [ 6] [023755] +02:26:07 [ 37] [ 12] [57902023755] +02:26:07 [ 70] [ 3] [301] +02:26:07 ============================================================================ +02:26:07 + + +waiting on router queue for slot.... +02:26:07 Sending to : +02:26:07 ============================================================================ +02:26:07 ============================================================================ +02:26:07 Slot Id : <330> +02:26:07 Transaction Type : RESPONSE +02:26:07 Received From : +02:26:07 ============================================================================ +02:26:07 FNo. Len. Field Value +02:26:07 ============================================================================ +02:26:07 [ 1] [ 4] [0810] +02:26:07 [ 7] [ 10] [0320093755] +02:26:07 [ 11] [ 6] [023755] +02:26:07 [ 37] [ 12] [579020237550] +02:26:07 [ 39] [ 2] [00] +02:26:07 [ 70] [ 3] [810] +02:26:07 ============================================================================ +02:26:07 Calculate Source COMM Id = 6 +02:26:07 ============================================================================ +02:26:07 + + +waiting on router queue for slot.... +02:26:17 ============================================================================ +02:26:17 Slot Id : <357> +02:26:17 Transaction Type : REQUEST +02:26:17 Received From : +02:26:17 ============================================================================ +02:26:17 FNo. Len. Field Value +02:26:17 ============================================================================ +02:26:17 [ 1] [ 4] [0800] +02:26:17 [ 2] [ 5] [02531] +02:26:17 [ 3] [ 6] [579028] +02:26:17 [ 7] [ 10] [0319192617] +02:26:17 [ 11] [ 6] [806553] +02:26:17 [ 15] [ 10] [0319192617] +02:26:17 [ 37] [ 11] [57902806553] +02:26:17 [ 70] [ 3] [001] +02:26:17 ============================================================================ +02:26:17 + + +waiting on router queue for slot.... +02:26:17 ============================================================================ +02:26:17 Slot Id : <357> +02:26:17 Transaction Type : RESPONSE +02:26:17 Received From : +02:26:17 ============================================================================ +02:26:17 FNo. Len. Field Value +02:26:17 ============================================================================ +02:26:17 [ 1] [ 4] [0810] +02:26:17 [ 7] [ 10] [0319192617] +02:26:17 [ 11] [ 6] [806553] +02:26:17 [ 15] [ 4] [0319] +02:26:17 [ 37] [ 12] [57902806553] +02:26:17 [ 39] [ 2] [00] +02:26:17 [ 70] [ 3] [001] +02:26:17 ============================================================================ +02:26:17 Sending to : +02:26:17 ============================================================================ +02:26:17 + + +waiting on router queue for slot.... +02:26:19 ============================================================================ +02:26:19 Slot Id : <366> +02:26:19 Transaction Type : REQUEST +02:26:19 Received From : +02:26:19 ============================================================================ +02:26:19 FNo. Len. Field Value +02:26:19 ============================================================================ +02:26:19 [ 1] [ 4] [0800] +02:26:19 [ 7] [ 10] [0319072527] +02:26:19 [ 11] [ 6] [153724] +02:26:19 [ 70] [ 3] [301] +02:26:19 ============================================================================ +02:26:19 + + +waiting on router queue for slot.... +02:26:19 Sending to : +02:26:19 ============================================================================ +02:26:19 ============================================================================ +02:26:19 Slot Id : <366> +02:26:19 Transaction Type : RESPONSE +02:26:19 Received From : +02:26:19 ============================================================================ +02:26:19 FNo. Len. Field Value +02:26:19 ============================================================================ +02:26:19 [ 1] [ 4] [0810] +02:26:19 [ 7] [ 10] [0319072527] +02:26:19 [ 11] [ 6] [153724] +02:26:19 [ 39] [ 2] [00] +02:26:19 [ 70] [ 3] [301] +02:26:19 ============================================================================ +02:26:19 Calculate Source COMM Id = 2 +02:26:19 ============================================================================ +02:26:19 + + +waiting on router queue for slot.... +02:26:22 ============================================================================ +02:26:22 Slot Id : <343> +02:26:22 Transaction Type : REQUEST +02:26:22 Received From : +02:26:22 ============================================================================ +02:26:22 FNo. Len. Field Value +02:26:22 ============================================================================ +02:26:22 [ 1] [ 4] [0800] +02:26:22 [ 7] [ 10] [0319192412] +02:26:22 [ 11] [ 6] [057022] +02:26:22 [ 37] [ 12] [57902057022] +02:26:22 [ 70] [ 3] [301] +02:26:22 ============================================================================ +02:26:22 + + +waiting on router queue for slot.... +02:26:22 Sending to : +02:26:22 ============================================================================ +02:26:22 ============================================================================ +02:26:22 Slot Id : <343> +02:26:22 Transaction Type : RESPONSE +02:26:22 Received From : +02:26:22 ============================================================================ +02:26:22 FNo. Len. Field Value +02:26:22 ============================================================================ +02:26:22 [ 1] [ 4] [0810] +02:26:22 [ 7] [ 10] [0319192412] +02:26:22 [ 11] [ 6] [057022] +02:26:22 [ 37] [ 12] [579020570220] +02:26:22 [ 39] [ 2] [00] +02:26:22 [ 70] [ 3] [810] +02:26:22 ============================================================================ +02:26:22 Calculate Source COMM Id = 4 +02:26:22 ============================================================================ +02:26:22 + + +waiting on router queue for slot.... +02:26:36 ============================================================================ +02:26:36 Slot Id : <365> +02:26:36 Transaction Type : REQUEST +02:26:36 Received From : +02:26:36 ============================================================================ +02:26:36 FNo. Len. Field Value +02:26:36 ============================================================================ +02:26:36 [ 1] [ 4] [0800] +02:26:36 [ 7] [ 10] [0319072543] +02:26:36 [ 11] [ 6] [153725] +02:26:36 [ 70] [ 3] [301] +02:26:36 ============================================================================ +02:26:36 + + +waiting on router queue for slot.... +02:26:36 Sending to : +02:26:36 ============================================================================ +02:26:36 ============================================================================ +02:26:36 Slot Id : <365> +02:26:36 Transaction Type : RESPONSE +02:26:36 Received From : +02:26:36 ============================================================================ +02:26:36 FNo. Len. Field Value +02:26:36 ============================================================================ +02:26:36 [ 1] [ 4] [0810] +02:26:36 [ 7] [ 10] [0319072543] +02:26:36 [ 11] [ 6] [153725] +02:26:36 [ 39] [ 2] [00] +02:26:36 [ 70] [ 3] [301] +02:26:36 ============================================================================ +02:26:36 Calculate Source COMM Id = 2 +02:26:36 ============================================================================ +02:26:36 + + +waiting on router queue for slot.... +02:26:49 ============================================================================ +02:26:49 Slot Id : <313> +02:26:49 Transaction Type : REQUEST +02:26:49 Received From : +02:26:49 ============================================================================ +02:26:49 FNo. Len. Field Value +02:26:49 ============================================================================ +02:26:49 [ 1] [ 4] [0800] +02:26:49 [ 7] [ 10] [0319072553] +02:26:49 [ 11] [ 6] [153726] +02:26:49 [ 70] [ 3] [301] +02:26:49 ============================================================================ +02:26:49 + + +waiting on router queue for slot.... +02:26:49 Sending to : +02:26:49 ============================================================================ +02:26:49 ============================================================================ +02:26:49 Slot Id : <313> +02:26:49 Transaction Type : RESPONSE +02:26:49 Received From : +02:26:49 ============================================================================ +02:26:49 FNo. Len. Field Value +02:26:49 ============================================================================ +02:26:49 [ 1] [ 4] [0810] +02:26:49 [ 7] [ 10] [0319072553] +02:26:49 [ 11] [ 6] [153726] +02:26:49 [ 39] [ 2] [00] +02:26:49 [ 70] [ 3] [301] +02:26:49 ============================================================================ +02:26:49 Calculate Source COMM Id = 2 +02:26:49 ============================================================================ +02:26:49 + + +waiting on router queue for slot.... +02:27:02 ============================================================================ +02:27:02 Slot Id : <340> +02:27:02 Transaction Type : REQUEST +02:27:02 Received From : +02:27:02 ============================================================================ +02:27:02 FNo. Len. Field Value +02:27:02 ============================================================================ +02:27:02 [ 1] [ 4] [0800] +02:27:02 [ 7] [ 10] [0319072609] +02:27:02 [ 11] [ 6] [153727] +02:27:02 [ 70] [ 3] [301] +02:27:02 ============================================================================ +02:27:02 + + +waiting on router queue for slot.... +02:27:02 Sending to : +02:27:02 ============================================================================ +02:27:02 ============================================================================ +02:27:02 Slot Id : <340> +02:27:02 Transaction Type : RESPONSE +02:27:02 Received From : +02:27:02 ============================================================================ +02:27:02 FNo. Len. Field Value +02:27:02 ============================================================================ +02:27:02 [ 1] [ 4] [0810] +02:27:02 [ 7] [ 10] [0319072609] +02:27:02 [ 11] [ 6] [153727] +02:27:02 [ 39] [ 2] [00] +02:27:02 [ 70] [ 3] [301] +02:27:02 ============================================================================ +02:27:02 Calculate Source COMM Id = 2 +02:27:02 ============================================================================ +02:27:02 + + +waiting on router queue for slot.... +02:27:12 ============================================================================ +02:27:12 Slot Id : <371> +02:27:12 Transaction Type : REQUEST +02:27:12 Received From : +02:27:12 ============================================================================ +02:27:12 FNo. Len. Field Value +02:27:12 ============================================================================ +02:27:12 [ 1] [ 4] [0800] +02:27:12 [ 7] [ 10] [0320093901] +02:27:12 [ 11] [ 6] [023901] +02:27:12 [ 37] [ 12] [57902023901] +02:27:12 [ 70] [ 3] [301] +02:27:12 ============================================================================ +02:27:12 + + +waiting on router queue for slot.... +02:27:12 Sending to : +02:27:12 ============================================================================ +02:27:12 ============================================================================ +02:27:12 Slot Id : <371> +02:27:12 Transaction Type : RESPONSE +02:27:12 Received From : +02:27:12 ============================================================================ +02:27:12 FNo. Len. Field Value +02:27:12 ============================================================================ +02:27:12 [ 1] [ 4] [0810] +02:27:12 [ 7] [ 10] [0320093901] +02:27:12 [ 11] [ 6] [023901] +02:27:12 [ 37] [ 12] [579020239010] +02:27:12 [ 39] [ 2] [00] +02:27:12 [ 70] [ 3] [810] +02:27:12 ============================================================================ +02:27:12 Calculate Source COMM Id = 6 +02:27:12 ============================================================================ +02:27:12 + + +waiting on router queue for slot.... +02:27:13 ============================================================================ +02:27:13 Slot Id : <324> +02:27:13 Transaction Type : REQUEST +02:27:13 Received From : +02:27:13 ============================================================================ +02:27:13 FNo. Len. Field Value +02:27:13 ============================================================================ +02:27:13 [ 1] [ 4] [0800] +02:27:13 [ 7] [ 10] [0320022659] +02:27:13 [ 11] [ 6] [003601] +02:27:13 [ 37] [ 12] [507902003601] +02:27:13 [ 70] [ 3] [ ] +02:27:13 ============================================================================ +02:27:13 + + +waiting on router queue for slot.... +02:27:13 Sending to : +02:27:13 ============================================================================ +02:27:13 ============================================================================ +02:27:13 Slot Id : <324> +02:27:13 Transaction Type : RESPONSE +02:27:13 Received From : +02:27:13 ============================================================================ +02:27:13 FNo. Len. Field Value +02:27:13 ============================================================================ +02:27:13 [ 1] [ 4] [0810] +02:27:13 [ 7] [ 10] [0320022659] +02:27:13 [ 11] [ 6] [003601] +02:27:13 [ 37] [ 12] [507902003601] +02:27:13 [ 39] [ 2] [91] +02:27:13 [ 70] [ 3] [ ] +02:27:13 ============================================================================ +02:27:13 Calculate Source COMM Id = 3 +02:27:13 ============================================================================ +02:27:13 + + +waiting on router queue for slot.... +02:27:13 ============================================================================ +02:27:13 Slot Id : <378> +02:27:13 Transaction Type : REQUEST +02:27:13 Received From : +02:27:13 ============================================================================ +02:27:13 FNo. Len. Field Value +02:27:13 ============================================================================ +02:27:13 [ 1] [ 4] [0800] +02:27:13 [ 7] [ 10] [0319072620] +02:27:13 [ 11] [ 6] [153728] +02:27:13 [ 70] [ 3] [301] +02:27:13 ============================================================================ +02:27:13 + + +waiting on router queue for slot.... +02:27:13 Sending to : +02:27:13 ============================================================================ +02:27:13 ============================================================================ +02:27:13 Slot Id : <378> +02:27:13 Transaction Type : RESPONSE +02:27:13 Received From : +02:27:13 ============================================================================ +02:27:13 FNo. Len. Field Value +02:27:13 ============================================================================ +02:27:13 [ 1] [ 4] [0810] +02:27:13 [ 7] [ 10] [0319072620] +02:27:13 [ 11] [ 6] [153728] +02:27:13 [ 39] [ 2] [00] +02:27:13 [ 70] [ 3] [301] +02:27:13 ============================================================================ +02:27:13 Calculate Source COMM Id = 2 +02:27:13 ============================================================================ +02:27:13 + + +waiting on router queue for slot.... +02:27:19 ============================================================================ +02:27:19 Slot Id : <353> +02:27:19 Transaction Type : REQUEST +02:27:19 Received From : +02:27:19 ============================================================================ +02:27:19 FNo. Len. Field Value +02:27:19 ============================================================================ +02:27:19 [ 1] [ 4] [0800] +02:27:19 [ 2] [ 5] [02531] +02:27:19 [ 3] [ 6] [579028] +02:27:19 [ 7] [ 10] [0319192719] +02:27:19 [ 11] [ 6] [806554] +02:27:19 [ 15] [ 10] [0319192719] +02:27:19 [ 37] [ 11] [57902806554] +02:27:19 [ 70] [ 3] [001] +02:27:19 ============================================================================ +02:27:19 + + +waiting on router queue for slot.... +02:27:19 ============================================================================ +02:27:19 Slot Id : <353> +02:27:19 Transaction Type : RESPONSE +02:27:19 Received From : +02:27:19 ============================================================================ +02:27:19 FNo. Len. Field Value +02:27:19 ============================================================================ +02:27:19 [ 1] [ 4] [0810] +02:27:19 [ 7] [ 10] [0319192719] +02:27:19 [ 11] [ 6] [806554] +02:27:19 [ 15] [ 4] [0319] +02:27:19 [ 37] [ 12] [57902806554] +02:27:19 [ 39] [ 2] [00] +02:27:19 [ 70] [ 3] [001] +02:27:19 ============================================================================ +02:27:19 Sending to : +02:27:19 ============================================================================ +02:27:19 + + +waiting on router queue for slot.... +02:27:24 ============================================================================ +02:27:24 Slot Id : <373> +02:27:24 Transaction Type : REQUEST +02:27:24 Received From : +02:27:24 ============================================================================ +02:27:24 FNo. Len. Field Value +02:27:24 ============================================================================ +02:27:24 [ 1] [ 4] [0800] +02:27:24 [ 7] [ 10] [0319072631] +02:27:24 [ 11] [ 6] [153729] +02:27:24 [ 70] [ 3] [301] +02:27:24 ============================================================================ +02:27:24 + + +waiting on router queue for slot.... +02:27:24 Sending to : +02:27:24 ============================================================================ +02:27:24 ============================================================================ +02:27:24 Slot Id : <373> +02:27:24 Transaction Type : RESPONSE +02:27:24 Received From : +02:27:24 ============================================================================ +02:27:24 FNo. Len. Field Value +02:27:24 ============================================================================ +02:27:24 [ 1] [ 4] [0810] +02:27:24 [ 7] [ 10] [0319072631] +02:27:24 [ 11] [ 6] [153729] +02:27:24 [ 39] [ 2] [00] +02:27:24 [ 70] [ 3] [301] +02:27:24 ============================================================================ +02:27:24 Calculate Source COMM Id = 2 +02:27:24 ============================================================================ +02:27:24 + + +waiting on router queue for slot.... +02:27:34 ============================================================================ +02:27:34 Slot Id : <355> +02:27:34 Transaction Type : REQUEST +02:27:34 Received From : +02:27:34 ============================================================================ +02:27:34 FNo. Len. Field Value +02:27:34 ============================================================================ +02:27:34 [ 1] [ 4] [0800] +02:27:34 [ 7] [ 10] [0319072641] +02:27:34 [ 11] [ 6] [153730] +02:27:34 [ 70] [ 3] [301] +02:27:34 ============================================================================ +02:27:34 + + +waiting on router queue for slot.... +02:27:34 Sending to : +02:27:34 ============================================================================ +02:27:34 ============================================================================ +02:27:34 Slot Id : <355> +02:27:34 Transaction Type : RESPONSE +02:27:34 Received From : +02:27:34 ============================================================================ +02:27:34 FNo. Len. Field Value +02:27:34 ============================================================================ +02:27:34 [ 1] [ 4] [0810] +02:27:34 [ 7] [ 10] [0319072641] +02:27:34 [ 11] [ 6] [153730] +02:27:34 [ 39] [ 2] [00] +02:27:34 [ 70] [ 3] [301] +02:27:34 ============================================================================ +02:27:34 Calculate Source COMM Id = 2 +02:27:34 ============================================================================ +02:27:34 + + +waiting on router queue for slot.... +02:27:45 ============================================================================ +02:27:45 Slot Id : <382> +02:27:45 Transaction Type : REQUEST +02:27:45 Received From : +02:27:45 ============================================================================ +02:27:45 FNo. Len. Field Value +02:27:45 ============================================================================ +02:27:45 [ 1] [ 4] [0800] +02:27:45 [ 7] [ 10] [0319072653] +02:27:45 [ 11] [ 6] [153731] +02:27:45 [ 70] [ 3] [301] +02:27:45 ============================================================================ +02:27:45 + + +waiting on router queue for slot.... +02:27:46 Sending to : +02:27:46 ============================================================================ +02:27:46 ============================================================================ +02:27:46 Slot Id : <382> +02:27:46 Transaction Type : RESPONSE +02:27:46 Received From : +02:27:46 ============================================================================ +02:27:46 FNo. Len. Field Value +02:27:46 ============================================================================ +02:27:46 [ 1] [ 4] [0810] +02:27:46 [ 7] [ 10] [0319072653] +02:27:46 [ 11] [ 6] [153731] +02:27:46 [ 39] [ 2] [00] +02:27:46 [ 70] [ 3] [301] +02:27:46 ============================================================================ +02:27:46 Calculate Source COMM Id = 2 +02:27:46 ============================================================================ +02:27:46 + + +waiting on router queue for slot.... +02:28:02 ============================================================================ +02:28:02 Slot Id : <363> +02:28:02 Transaction Type : REQUEST +02:28:02 Received From : +02:28:02 ============================================================================ +02:28:02 FNo. Len. Field Value +02:28:02 ============================================================================ +02:28:02 [ 1] [ 4] [0800] +02:28:02 [ 7] [ 10] [0319072709] +02:28:02 [ 11] [ 6] [153732] +02:28:02 [ 70] [ 3] [301] +02:28:02 ============================================================================ +02:28:02 + + +waiting on router queue for slot.... +02:28:02 Sending to : +02:28:02 ============================================================================ +02:28:02 ============================================================================ +02:28:02 Slot Id : <363> +02:28:02 Transaction Type : RESPONSE +02:28:02 Received From : +02:28:02 ============================================================================ +02:28:02 FNo. Len. Field Value +02:28:02 ============================================================================ +02:28:02 [ 1] [ 4] [0810] +02:28:02 [ 7] [ 10] [0319072709] +02:28:02 [ 11] [ 6] [153732] +02:28:02 [ 39] [ 2] [00] +02:28:02 [ 70] [ 3] [301] +02:28:02 ============================================================================ +02:28:02 Calculate Source COMM Id = 2 +02:28:02 ============================================================================ +02:28:02 + + +waiting on router queue for slot.... +02:28:13 ============================================================================ +02:28:13 Slot Id : <358> +02:28:13 Transaction Type : REQUEST +02:28:13 Received From : +02:28:13 ============================================================================ +02:28:13 FNo. Len. Field Value +02:28:13 ============================================================================ +02:28:13 [ 1] [ 4] [0800] +02:28:13 [ 7] [ 10] [0319072720] +02:28:13 [ 11] [ 6] [153733] +02:28:13 [ 70] [ 3] [301] +02:28:13 ============================================================================ +02:28:13 + + +waiting on router queue for slot.... +02:28:13 Sending to : +02:28:13 ============================================================================ +02:28:13 ============================================================================ +02:28:13 Slot Id : <358> +02:28:13 Transaction Type : RESPONSE +02:28:13 Received From : +02:28:13 ============================================================================ +02:28:13 FNo. Len. Field Value +02:28:13 ============================================================================ +02:28:13 [ 1] [ 4] [0810] +02:28:13 [ 7] [ 10] [0319072720] +02:28:13 [ 11] [ 6] [153733] +02:28:13 [ 39] [ 2] [00] +02:28:13 [ 70] [ 3] [301] +02:28:13 ============================================================================ +02:28:13 Calculate Source COMM Id = 2 +02:28:13 ============================================================================ +02:28:13 + + +waiting on router queue for slot.... +02:28:17 ============================================================================ +02:28:17 Slot Id : <338> +02:28:17 Transaction Type : REQUEST +02:28:17 Received From : +02:28:17 ============================================================================ +02:28:17 FNo. Len. Field Value +02:28:17 ============================================================================ +02:28:17 [ 1] [ 4] [0800] +02:28:17 [ 7] [ 10] [0320094006] +02:28:17 [ 11] [ 6] [024006] +02:28:17 [ 37] [ 12] [57902024006] +02:28:17 [ 70] [ 3] [301] +02:28:17 ============================================================================ +02:28:17 + + +waiting on router queue for slot.... +02:28:17 Sending to : +02:28:17 ============================================================================ +02:28:17 ============================================================================ +02:28:17 Slot Id : <338> +02:28:17 Transaction Type : RESPONSE +02:28:17 Received From : +02:28:17 ============================================================================ +02:28:17 FNo. Len. Field Value +02:28:17 ============================================================================ +02:28:17 [ 1] [ 4] [0810] +02:28:17 [ 7] [ 10] [0320094006] +02:28:17 [ 11] [ 6] [024006] +02:28:17 [ 37] [ 12] [579020240060] +02:28:17 [ 39] [ 2] [00] +02:28:17 [ 70] [ 3] [810] +02:28:17 ============================================================================ +02:28:17 Calculate Source COMM Id = 6 +02:28:17 ============================================================================ +02:28:17 + + +waiting on router queue for slot.... +02:28:21 ============================================================================ +02:28:21 Slot Id : <370> +02:28:21 Transaction Type : REQUEST +02:28:21 Received From : +02:28:21 ============================================================================ +02:28:21 FNo. Len. Field Value +02:28:21 ============================================================================ +02:28:21 [ 1] [ 4] [0800] +02:28:21 [ 2] [ 5] [02531] +02:28:21 [ 3] [ 6] [579028] +02:28:21 [ 7] [ 10] [0319192821] +02:28:21 [ 11] [ 6] [806555] +02:28:21 [ 15] [ 10] [0319192821] +02:28:21 [ 37] [ 11] [57902806555] +02:28:21 [ 70] [ 3] [001] +02:28:21 ============================================================================ +02:28:21 + + +waiting on router queue for slot.... +02:28:21 ============================================================================ +02:28:21 Slot Id : <370> +02:28:21 Transaction Type : RESPONSE +02:28:21 Received From : +02:28:21 ============================================================================ +02:28:21 FNo. Len. Field Value +02:28:21 ============================================================================ +02:28:21 [ 1] [ 4] [0810] +02:28:21 [ 7] [ 10] [0319192821] +02:28:21 [ 11] [ 6] [806555] +02:28:21 [ 15] [ 4] [0319] +02:28:21 [ 37] [ 12] [57902806555] +02:28:21 [ 39] [ 2] [00] +02:28:21 [ 70] [ 3] [001] +02:28:21 ============================================================================ +02:28:21 Sending to : +02:28:21 ============================================================================ +02:28:21 + + +waiting on router queue for slot.... +02:28:29 ============================================================================ +02:28:29 Slot Id : <360> +02:28:29 Transaction Type : REQUEST +02:28:29 Received From : +02:28:29 ============================================================================ +02:28:29 FNo. Len. Field Value +02:28:29 ============================================================================ +02:28:29 [ 1] [ 4] [0800] +02:28:29 [ 7] [ 10] [0319072737] +02:28:29 [ 11] [ 6] [153734] +02:28:29 [ 70] [ 3] [301] +02:28:29 ============================================================================ +02:28:29 + + +waiting on router queue for slot.... +02:28:29 Sending to : +02:28:29 ============================================================================ +02:28:29 ============================================================================ +02:28:29 Slot Id : <360> +02:28:29 Transaction Type : RESPONSE +02:28:29 Received From : +02:28:29 ============================================================================ +02:28:29 FNo. Len. Field Value +02:28:29 ============================================================================ +02:28:29 [ 1] [ 4] [0810] +02:28:29 [ 7] [ 10] [0319072737] +02:28:29 [ 11] [ 6] [153734] +02:28:29 [ 39] [ 2] [00] +02:28:29 [ 70] [ 3] [301] +02:28:29 ============================================================================ +02:28:29 Calculate Source COMM Id = 2 +02:28:29 ============================================================================ +02:28:29 + + +waiting on router queue for slot.... +02:28:41 ============================================================================ +02:28:41 Slot Id : <379> +02:28:41 Transaction Type : REQUEST +02:28:41 Received From : +02:28:41 ============================================================================ +02:28:41 FNo. Len. Field Value +02:28:41 ============================================================================ +02:28:41 [ 1] [ 4] [0800] +02:28:41 [ 7] [ 10] [0319072748] +02:28:41 [ 11] [ 6] [153735] +02:28:41 [ 70] [ 3] [301] +02:28:41 ============================================================================ +02:28:41 + + +waiting on router queue for slot.... +02:28:41 Sending to : +02:28:41 ============================================================================ +02:28:41 ============================================================================ +02:28:41 Slot Id : <379> +02:28:41 Transaction Type : RESPONSE +02:28:41 Received From : +02:28:41 ============================================================================ +02:28:41 FNo. Len. Field Value +02:28:41 ============================================================================ +02:28:41 [ 1] [ 4] [0810] +02:28:41 [ 7] [ 10] [0319072748] +02:28:41 [ 11] [ 6] [153735] +02:28:41 [ 39] [ 2] [00] +02:28:41 [ 70] [ 3] [301] +02:28:41 ============================================================================ +02:28:41 Calculate Source COMM Id = 2 +02:28:41 ============================================================================ +02:28:41 + + +waiting on router queue for slot.... +02:28:53 ============================================================================ +02:28:53 Slot Id : <396> +02:28:53 Transaction Type : REQUEST +02:28:53 Received From : +02:28:53 ============================================================================ +02:28:53 FNo. Len. Field Value +02:28:53 ============================================================================ +02:28:53 [ 1] [ 4] [0800] +02:28:53 [ 7] [ 10] [0319072759] +02:28:53 [ 11] [ 6] [153736] +02:28:53 [ 70] [ 3] [301] +02:28:53 ============================================================================ +02:28:53 + + +waiting on router queue for slot.... +02:28:53 Sending to : +02:28:53 ============================================================================ +02:28:53 ============================================================================ +02:28:53 Slot Id : <396> +02:28:53 Transaction Type : RESPONSE +02:28:53 Received From : +02:28:53 ============================================================================ +02:28:53 FNo. Len. Field Value +02:28:53 ============================================================================ +02:28:53 [ 1] [ 4] [0810] +02:28:53 [ 7] [ 10] [0319072759] +02:28:53 [ 11] [ 6] [153736] +02:28:53 [ 39] [ 2] [00] +02:28:53 [ 70] [ 3] [301] +02:28:53 ============================================================================ +02:28:53 Calculate Source COMM Id = 2 +02:28:53 ============================================================================ +02:28:53 + + +waiting on router queue for slot.... +02:29:07 ============================================================================ +02:29:07 Slot Id : <354> +02:29:07 Transaction Type : REQUEST +02:29:07 Received From : +02:29:07 ============================================================================ +02:29:07 FNo. Len. Field Value +02:29:07 ============================================================================ +02:29:07 [ 1] [ 4] [0800] +02:29:07 [ 7] [ 10] [0319072814] +02:29:07 [ 11] [ 6] [153737] +02:29:07 [ 70] [ 3] [301] +02:29:07 ============================================================================ +02:29:07 + + +waiting on router queue for slot.... +02:29:07 Sending to : +02:29:07 ============================================================================ +02:29:07 ============================================================================ +02:29:07 Slot Id : <354> +02:29:07 Transaction Type : RESPONSE +02:29:07 Received From : +02:29:07 ============================================================================ +02:29:07 FNo. Len. Field Value +02:29:07 ============================================================================ +02:29:07 [ 1] [ 4] [0810] +02:29:07 [ 7] [ 10] [0319072814] +02:29:07 [ 11] [ 6] [153737] +02:29:07 [ 39] [ 2] [00] +02:29:07 [ 70] [ 3] [301] +02:29:07 ============================================================================ +02:29:07 Calculate Source COMM Id = 2 +02:29:07 ============================================================================ +02:29:07 + + +waiting on router queue for slot.... +02:29:20 ============================================================================ +02:29:20 Slot Id : <369> +02:29:20 Transaction Type : REQUEST +02:29:20 Received From : +02:29:20 ============================================================================ +02:29:20 FNo. Len. Field Value +02:29:20 ============================================================================ +02:29:20 [ 1] [ 4] [0800] +02:29:20 [ 7] [ 10] [0319072825] +02:29:20 [ 11] [ 6] [153738] +02:29:20 [ 70] [ 3] [301] +02:29:20 ============================================================================ +02:29:20 + + +waiting on router queue for slot.... +02:29:20 Sending to : +02:29:20 ============================================================================ +02:29:20 ============================================================================ +02:29:20 Slot Id : <369> +02:29:20 Transaction Type : RESPONSE +02:29:20 Received From : +02:29:20 ============================================================================ +02:29:20 FNo. Len. Field Value +02:29:20 ============================================================================ +02:29:20 [ 1] [ 4] [0810] +02:29:20 [ 7] [ 10] [0319072825] +02:29:20 [ 11] [ 6] [153738] +02:29:20 [ 39] [ 2] [00] +02:29:20 [ 70] [ 3] [301] +02:29:20 ============================================================================ +02:29:20 Calculate Source COMM Id = 2 +02:29:20 ============================================================================ +02:29:20 + + +waiting on router queue for slot.... +02:29:22 ============================================================================ +02:29:22 Slot Id : <351> +02:29:22 Transaction Type : REQUEST +02:29:22 Received From : +02:29:22 ============================================================================ +02:29:22 FNo. Len. Field Value +02:29:22 ============================================================================ +02:29:22 [ 1] [ 4] [0800] +02:29:22 [ 7] [ 10] [0320094111] +02:29:22 [ 11] [ 6] [024111] +02:29:22 [ 37] [ 12] [57902024111] +02:29:22 [ 70] [ 3] [301] +02:29:22 ============================================================================ +02:29:22 + + +waiting on router queue for slot.... +02:29:22 Sending to : +02:29:22 ============================================================================ +02:29:22 ============================================================================ +02:29:22 Slot Id : <351> +02:29:22 Transaction Type : RESPONSE +02:29:22 Received From : +02:29:22 ============================================================================ +02:29:22 FNo. Len. Field Value +02:29:22 ============================================================================ +02:29:22 [ 1] [ 4] [0810] +02:29:22 [ 7] [ 10] [0320094111] +02:29:22 [ 11] [ 6] [024111] +02:29:22 [ 37] [ 12] [579020241110] +02:29:22 [ 39] [ 2] [00] +02:29:22 [ 70] [ 3] [810] +02:29:22 ============================================================================ +02:29:22 Calculate Source COMM Id = 6 +02:29:22 ============================================================================ +02:29:22 + + +waiting on router queue for slot.... +02:29:23 ============================================================================ +02:29:23 Slot Id : <374> +02:29:23 Transaction Type : REQUEST +02:29:23 Received From : +02:29:23 ============================================================================ +02:29:23 FNo. Len. Field Value +02:29:23 ============================================================================ +02:29:23 [ 1] [ 4] [0800] +02:29:23 [ 2] [ 5] [02531] +02:29:23 [ 3] [ 6] [579028] +02:29:23 [ 7] [ 10] [0319192923] +02:29:23 [ 11] [ 6] [806556] +02:29:23 [ 15] [ 10] [0319192923] +02:29:23 [ 37] [ 11] [57902806556] +02:29:23 [ 70] [ 3] [001] +02:29:23 ============================================================================ +02:29:23 + + +waiting on router queue for slot.... +02:29:23 ============================================================================ +02:29:23 Slot Id : <374> +02:29:23 Transaction Type : RESPONSE +02:29:23 Received From : +02:29:23 ============================================================================ +02:29:23 FNo. Len. Field Value +02:29:23 ============================================================================ +02:29:23 [ 1] [ 4] [0810] +02:29:23 [ 7] [ 10] [0319192923] +02:29:23 [ 11] [ 6] [806556] +02:29:23 [ 15] [ 4] [0319] +02:29:23 [ 37] [ 12] [57902806556] +02:29:23 [ 39] [ 2] [00] +02:29:23 [ 70] [ 3] [001] +02:29:23 ============================================================================ +02:29:23 Sending to : +02:29:23 ============================================================================ +02:29:23 + + +waiting on router queue for slot.... +02:29:33 ============================================================================ +02:29:33 Slot Id : <389> +02:29:33 Transaction Type : REQUEST +02:29:33 Received From : +02:29:33 ============================================================================ +02:29:33 FNo. Len. Field Value +02:29:33 ============================================================================ +02:29:33 [ 1] [ 4] [0800] +02:29:33 [ 7] [ 10] [0319072840] +02:29:33 [ 11] [ 6] [153739] +02:29:33 [ 70] [ 3] [301] +02:29:33 ============================================================================ +02:29:33 + + +waiting on router queue for slot.... +02:29:33 Sending to : +02:29:33 ============================================================================ +02:29:33 ============================================================================ +02:29:33 Slot Id : <389> +02:29:33 Transaction Type : RESPONSE +02:29:33 Received From : +02:29:33 ============================================================================ +02:29:33 FNo. Len. Field Value +02:29:33 ============================================================================ +02:29:33 [ 1] [ 4] [0810] +02:29:33 [ 7] [ 10] [0319072840] +02:29:33 [ 11] [ 6] [153739] +02:29:33 [ 39] [ 2] [00] +02:29:33 [ 70] [ 3] [301] +02:29:33 ============================================================================ +02:29:33 Calculate Source COMM Id = 2 +02:29:33 ============================================================================ +02:29:33 + + +waiting on router queue for slot.... +02:29:44 ============================================================================ +02:29:44 Slot Id : <390> +02:29:44 Transaction Type : REQUEST +02:29:44 Received From : +02:29:44 ============================================================================ +02:29:44 FNo. Len. Field Value +02:29:44 ============================================================================ +02:29:44 [ 1] [ 4] [0800] +02:29:44 [ 7] [ 10] [0319072851] +02:29:44 [ 11] [ 6] [153740] +02:29:44 [ 70] [ 3] [301] +02:29:44 ============================================================================ +02:29:44 + + +waiting on router queue for slot.... +02:29:44 Sending to : +02:29:44 ============================================================================ +02:29:44 ============================================================================ +02:29:44 Slot Id : <390> +02:29:44 Transaction Type : RESPONSE +02:29:44 Received From : +02:29:44 ============================================================================ +02:29:44 FNo. Len. Field Value +02:29:44 ============================================================================ +02:29:44 [ 1] [ 4] [0810] +02:29:44 [ 7] [ 10] [0319072851] +02:29:44 [ 11] [ 6] [153740] +02:29:44 [ 39] [ 2] [00] +02:29:44 [ 70] [ 3] [301] +02:29:44 ============================================================================ +02:29:44 Calculate Source COMM Id = 2 +02:29:44 ============================================================================ +02:29:44 + + +waiting on router queue for slot.... +02:29:54 ============================================================================ +02:29:54 Slot Id : <376> +02:29:54 Transaction Type : REQUEST +02:29:54 Received From : +02:29:54 ============================================================================ +02:29:54 FNo. Len. Field Value +02:29:54 ============================================================================ +02:29:54 [ 1] [ 4] [0800] +02:29:54 [ 7] [ 10] [0319072901] +02:29:54 [ 11] [ 6] [153741] +02:29:54 [ 70] [ 3] [301] +02:29:54 ============================================================================ +02:29:54 + + +waiting on router queue for slot.... +02:29:54 Sending to : +02:29:54 ============================================================================ +02:29:54 ============================================================================ +02:29:54 Slot Id : <376> +02:29:54 Transaction Type : RESPONSE +02:29:54 Received From : +02:29:54 ============================================================================ +02:29:54 FNo. Len. Field Value +02:29:54 ============================================================================ +02:29:54 [ 1] [ 4] [0810] +02:29:54 [ 7] [ 10] [0319072901] +02:29:54 [ 11] [ 6] [153741] +02:29:54 [ 39] [ 2] [00] +02:29:54 [ 70] [ 3] [301] +02:29:54 ============================================================================ +02:29:54 Calculate Source COMM Id = 2 +02:29:54 ============================================================================ +02:29:54 + + +waiting on router queue for slot.... +02:29:56 ============================================================================ +02:29:56 Slot Id : <359> +02:29:56 Transaction Type : REQUEST +02:29:56 Received From : +02:29:56 ============================================================================ +02:29:56 FNo. Len. Field Value +02:29:56 ============================================================================ +02:29:56 [ 1] [ 4] [0800] +02:29:56 [ 7] [ 10] [0319193742] +02:29:56 [ 11] [ 6] [098367] +02:29:56 [ 37] [ 12] [57902098367] +02:29:56 [ 70] [ 3] [301] +02:29:56 ============================================================================ +02:29:56 + + +waiting on router queue for slot.... +02:29:56 Sending to : +02:29:56 ============================================================================ +02:29:56 ============================================================================ +02:29:56 Slot Id : <359> +02:29:56 Transaction Type : RESPONSE +02:29:56 Received From : +02:29:56 ============================================================================ +02:29:56 FNo. Len. Field Value +02:29:56 ============================================================================ +02:29:56 [ 1] [ 4] [0810] +02:29:56 [ 7] [ 10] [0319193742] +02:29:56 [ 11] [ 6] [098367] +02:29:56 [ 37] [ 12] [579020983670] +02:29:56 [ 39] [ 2] [00] +02:29:56 [ 70] [ 3] [810] +02:29:56 ============================================================================ +02:29:56 Calculate Source COMM Id = 1 +02:29:56 ============================================================================ +02:29:56 + + +waiting on router queue for slot.... +02:30:10 ============================================================================ +02:30:10 Slot Id : <395> +02:30:10 Transaction Type : REQUEST +02:30:10 Received From : +02:30:10 ============================================================================ +02:30:10 FNo. Len. Field Value +02:30:10 ============================================================================ +02:30:10 [ 1] [ 4] [0800] +02:30:10 [ 7] [ 10] [0319072917] +02:30:10 [ 11] [ 6] [153742] +02:30:10 [ 70] [ 3] [301] +02:30:10 ============================================================================ +02:30:10 + + +waiting on router queue for slot.... +02:30:10 Sending to : +02:30:10 ============================================================================ +02:30:10 ============================================================================ +02:30:10 Slot Id : <395> +02:30:10 Transaction Type : RESPONSE +02:30:10 Received From : +02:30:10 ============================================================================ +02:30:10 FNo. Len. Field Value +02:30:10 ============================================================================ +02:30:10 [ 1] [ 4] [0810] +02:30:10 [ 7] [ 10] [0319072917] +02:30:10 [ 11] [ 6] [153742] +02:30:10 [ 39] [ 2] [00] +02:30:10 [ 70] [ 3] [301] +02:30:10 ============================================================================ +02:30:10 Calculate Source COMM Id = 2 +02:30:10 ============================================================================ +02:30:10 + + +waiting on router queue for slot.... +02:30:25 ============================================================================ +02:30:25 Slot Id : <410> +02:30:25 Transaction Type : REQUEST +02:30:25 Received From : +02:30:25 ============================================================================ +02:30:25 FNo. Len. Field Value +02:30:25 ============================================================================ +02:30:25 [ 1] [ 4] [0800] +02:30:25 [ 2] [ 5] [02531] +02:30:25 [ 3] [ 6] [579028] +02:30:25 [ 7] [ 10] [0319193025] +02:30:25 [ 11] [ 6] [806557] +02:30:25 [ 15] [ 10] [0319193025] +02:30:25 [ 37] [ 11] [57902806557] +02:30:25 [ 70] [ 3] [001] +02:30:25 ============================================================================ +02:30:25 + + +waiting on router queue for slot.... +02:30:25 ============================================================================ +02:30:25 Slot Id : <410> +02:30:25 Transaction Type : RESPONSE +02:30:25 Received From : +02:30:25 ============================================================================ +02:30:25 FNo. Len. Field Value +02:30:25 ============================================================================ +02:30:25 [ 1] [ 4] [0810] +02:30:25 [ 7] [ 10] [0319193025] +02:30:25 [ 11] [ 6] [806557] +02:30:25 [ 15] [ 4] [0319] +02:30:25 [ 37] [ 12] [57902806557] +02:30:25 [ 39] [ 2] [00] +02:30:25 [ 70] [ 3] [001] +02:30:25 ============================================================================ +02:30:25 Sending to : +02:30:25 ============================================================================ +02:30:25 + + +waiting on router queue for slot.... +02:30:25 ============================================================================ +02:30:25 Slot Id : <361> +02:30:25 Transaction Type : REQUEST +02:30:25 Received From : +02:30:25 ============================================================================ +02:30:25 FNo. Len. Field Value +02:30:25 ============================================================================ +02:30:25 [ 1] [ 4] [0800] +02:30:25 [ 7] [ 10] [0319072933] +02:30:25 [ 11] [ 6] [153743] +02:30:25 [ 70] [ 3] [301] +02:30:25 ============================================================================ +02:30:25 + + +waiting on router queue for slot.... +02:30:25 Sending to : +02:30:25 ============================================================================ +02:30:25 ============================================================================ +02:30:25 Slot Id : <361> +02:30:25 Transaction Type : RESPONSE +02:30:25 Received From : +02:30:25 ============================================================================ +02:30:25 FNo. Len. Field Value +02:30:25 ============================================================================ +02:30:25 [ 1] [ 4] [0810] +02:30:25 [ 7] [ 10] [0319072933] +02:30:25 [ 11] [ 6] [153743] +02:30:25 [ 39] [ 2] [00] +02:30:25 [ 70] [ 3] [301] +02:30:25 ============================================================================ +02:30:25 Calculate Source COMM Id = 2 +02:30:25 ============================================================================ +02:30:25 + + +waiting on router queue for slot.... +02:30:29 ============================================================================ +02:30:29 Slot Id : <349> +02:30:29 Transaction Type : REQUEST +02:30:29 Received From : +02:30:29 ============================================================================ +02:30:29 FNo. Len. Field Value +02:30:29 ============================================================================ +02:30:29 [ 1] [ 4] [0800] +02:30:29 [ 7] [ 10] [0320094216] +02:30:29 [ 11] [ 6] [024216] +02:30:29 [ 37] [ 12] [57902024216] +02:30:29 [ 70] [ 3] [301] +02:30:29 ============================================================================ +02:30:29 + + +waiting on router queue for slot.... +02:30:29 Sending to : +02:30:29 ============================================================================ +02:30:29 ============================================================================ +02:30:29 Slot Id : <349> +02:30:29 Transaction Type : RESPONSE +02:30:29 Received From : +02:30:29 ============================================================================ +02:30:29 FNo. Len. Field Value +02:30:29 ============================================================================ +02:30:29 [ 1] [ 4] [0810] +02:30:29 [ 7] [ 10] [0320094216] +02:30:29 [ 11] [ 6] [024216] +02:30:29 [ 37] [ 12] [579020242160] +02:30:29 [ 39] [ 2] [00] +02:30:29 [ 70] [ 3] [810] +02:30:29 ============================================================================ +02:30:29 Calculate Source COMM Id = 6 +02:30:29 ============================================================================ +02:30:29 + + +waiting on router queue for slot.... +02:30:36 ============================================================================ +02:30:36 Slot Id : <383> +02:30:36 Transaction Type : REQUEST +02:30:36 Received From : +02:30:36 ============================================================================ +02:30:36 FNo. Len. Field Value +02:30:36 ============================================================================ +02:30:36 [ 1] [ 4] [0800] +02:30:36 [ 7] [ 10] [0319072943] +02:30:36 [ 11] [ 6] [153744] +02:30:36 [ 70] [ 3] [301] +02:30:36 ============================================================================ +02:30:36 + + +waiting on router queue for slot.... +02:30:36 Sending to : +02:30:36 ============================================================================ +02:30:36 ============================================================================ +02:30:36 Slot Id : <383> +02:30:36 Transaction Type : RESPONSE +02:30:36 Received From : +02:30:36 ============================================================================ +02:30:36 FNo. Len. Field Value +02:30:36 ============================================================================ +02:30:36 [ 1] [ 4] [0810] +02:30:36 [ 7] [ 10] [0319072943] +02:30:36 [ 11] [ 6] [153744] +02:30:36 [ 39] [ 2] [00] +02:30:36 [ 70] [ 3] [301] +02:30:36 ============================================================================ +02:30:36 Calculate Source COMM Id = 2 +02:30:36 ============================================================================ +02:30:36 + + +waiting on router queue for slot.... +02:30:49 ============================================================================ +02:30:49 Slot Id : <413> +02:30:49 Transaction Type : REQUEST +02:30:49 Received From : +02:30:49 ============================================================================ +02:30:49 FNo. Len. Field Value +02:30:49 ============================================================================ +02:30:49 [ 1] [ 4] [0800] +02:30:49 [ 7] [ 10] [0319072956] +02:30:49 [ 11] [ 6] [153745] +02:30:49 [ 70] [ 3] [301] +02:30:49 ============================================================================ +02:30:49 + + +waiting on router queue for slot.... +02:30:49 Sending to : +02:30:49 ============================================================================ +02:30:49 ============================================================================ +02:30:49 Slot Id : <413> +02:30:49 Transaction Type : RESPONSE +02:30:49 Received From : +02:30:49 ============================================================================ +02:30:49 FNo. Len. Field Value +02:30:49 ============================================================================ +02:30:49 [ 1] [ 4] [0810] +02:30:49 [ 7] [ 10] [0319072956] +02:30:49 [ 11] [ 6] [153745] +02:30:49 [ 39] [ 2] [00] +02:30:49 [ 70] [ 3] [301] +02:30:49 ============================================================================ +02:30:49 Calculate Source COMM Id = 2 +02:30:49 ============================================================================ +02:30:49 + + +waiting on router queue for slot.... +02:31:05 ============================================================================ +02:31:05 Slot Id : <393> +02:31:05 Transaction Type : REQUEST +02:31:05 Received From : +02:31:05 ============================================================================ +02:31:05 FNo. Len. Field Value +02:31:05 ============================================================================ +02:31:05 [ 1] [ 4] [0800] +02:31:05 [ 7] [ 10] [0319073012] +02:31:05 [ 11] [ 6] [153746] +02:31:05 [ 70] [ 3] [301] +02:31:05 ============================================================================ +02:31:05 + + +waiting on router queue for slot.... +02:31:05 Sending to : +02:31:05 ============================================================================ +02:31:05 ============================================================================ +02:31:05 Slot Id : <393> +02:31:05 Transaction Type : RESPONSE +02:31:05 Received From : +02:31:05 ============================================================================ +02:31:05 FNo. Len. Field Value +02:31:05 ============================================================================ +02:31:05 [ 1] [ 4] [0810] +02:31:05 [ 7] [ 10] [0319073012] +02:31:05 [ 11] [ 6] [153746] +02:31:05 [ 39] [ 2] [00] +02:31:05 [ 70] [ 3] [301] +02:31:05 ============================================================================ +02:31:05 Calculate Source COMM Id = 2 +02:31:05 ============================================================================ +02:31:05 + + +waiting on router queue for slot.... +02:31:16 ============================================================================ +02:31:16 Slot Id : <397> +02:31:16 Transaction Type : REQUEST +02:31:16 Received From : +02:31:16 ============================================================================ +02:31:16 FNo. Len. Field Value +02:31:16 ============================================================================ +02:31:16 [ 1] [ 4] [0800] +02:31:16 [ 7] [ 10] [0319073023] +02:31:16 [ 11] [ 6] [153747] +02:31:16 [ 70] [ 3] [301] +02:31:16 ============================================================================ +02:31:16 + + +waiting on router queue for slot.... +02:31:16 Sending to : +02:31:16 ============================================================================ +02:31:16 ============================================================================ +02:31:16 Slot Id : <397> +02:31:16 Transaction Type : RESPONSE +02:31:16 Received From : +02:31:16 ============================================================================ +02:31:16 FNo. Len. Field Value +02:31:16 ============================================================================ +02:31:16 [ 1] [ 4] [0810] +02:31:16 [ 7] [ 10] [0319073023] +02:31:16 [ 11] [ 6] [153747] +02:31:16 [ 39] [ 2] [00] +02:31:16 [ 70] [ 3] [301] +02:31:16 ============================================================================ +02:31:16 Calculate Source COMM Id = 2 +02:31:16 ============================================================================ +02:31:16 + + +waiting on router queue for slot.... +02:31:21 ============================================================================ +02:31:21 Slot Id : <400> +02:31:21 Transaction Type : REQUEST +02:31:21 Received From : +02:31:21 ============================================================================ +02:31:21 FNo. Len. Field Value +02:31:21 ============================================================================ +02:31:21 [ 1] [ 4] [0800] +02:31:21 [ 7] [ 10] [0319192912] +02:31:21 [ 11] [ 6] [005243] +02:31:21 [ 37] [ 12] [57902005243] +02:31:21 [ 70] [ 3] [301] +02:31:21 ============================================================================ +02:31:21 + + +waiting on router queue for slot.... +02:31:21 Sending to : +02:31:21 ============================================================================ +02:31:21 ============================================================================ +02:31:21 Slot Id : <400> +02:31:21 Transaction Type : RESPONSE +02:31:21 Received From : +02:31:21 ============================================================================ +02:31:21 FNo. Len. Field Value +02:31:21 ============================================================================ +02:31:21 [ 1] [ 4] [0810] +02:31:21 [ 7] [ 10] [0319192912] +02:31:21 [ 11] [ 6] [005243] +02:31:21 [ 37] [ 12] [579020052430] +02:31:21 [ 39] [ 2] [00] +02:31:21 [ 70] [ 3] [810] +02:31:21 ============================================================================ +02:31:21 Calculate Source COMM Id = 4 +02:31:21 ============================================================================ +02:31:21 + + +waiting on router queue for slot.... +02:31:27 ============================================================================ +02:31:27 Slot Id : <399> +02:31:27 Transaction Type : REQUEST +02:31:27 Received From : +02:31:27 ============================================================================ +02:31:27 FNo. Len. Field Value +02:31:27 ============================================================================ +02:31:27 [ 1] [ 4] [0800] +02:31:27 [ 2] [ 5] [02531] +02:31:27 [ 3] [ 6] [579028] +02:31:27 [ 7] [ 10] [0319193127] +02:31:27 [ 11] [ 6] [806558] +02:31:27 [ 15] [ 10] [0319193127] +02:31:27 [ 37] [ 11] [57902806558] +02:31:27 [ 70] [ 3] [001] +02:31:27 ============================================================================ +02:31:27 + + +waiting on router queue for slot.... +02:31:27 ============================================================================ +02:31:27 Slot Id : <399> +02:31:27 Transaction Type : RESPONSE +02:31:27 Received From : +02:31:27 ============================================================================ +02:31:27 FNo. Len. Field Value +02:31:27 ============================================================================ +02:31:27 [ 1] [ 4] [0810] +02:31:27 [ 7] [ 10] [0319193127] +02:31:27 [ 11] [ 6] [806558] +02:31:27 [ 15] [ 4] [0319] +02:31:27 [ 37] [ 12] [57902806558] +02:31:27 [ 39] [ 2] [00] +02:31:27 [ 70] [ 3] [001] +02:31:27 ============================================================================ +02:31:27 Sending to : +02:31:27 ============================================================================ +02:31:27 + + +waiting on router queue for slot.... +02:31:29 ============================================================================ +02:31:29 Slot Id : <414> +02:31:29 Transaction Type : REQUEST +02:31:29 Received From : +02:31:29 ============================================================================ +02:31:29 FNo. Len. Field Value +02:31:29 ============================================================================ +02:31:29 [ 1] [ 4] [0800] +02:31:29 [ 7] [ 10] [0319073035] +02:31:29 [ 11] [ 6] [153748] +02:31:29 [ 70] [ 3] [301] +02:31:29 ============================================================================ +02:31:29 + + +waiting on router queue for slot.... +02:31:29 Sending to : +02:31:29 ============================================================================ +02:31:29 ============================================================================ +02:31:29 Slot Id : <414> +02:31:29 Transaction Type : RESPONSE +02:31:29 Received From : +02:31:29 ============================================================================ +02:31:29 FNo. Len. Field Value +02:31:29 ============================================================================ +02:31:29 [ 1] [ 4] [0810] +02:31:29 [ 7] [ 10] [0319073035] +02:31:29 [ 11] [ 6] [153748] +02:31:29 [ 39] [ 2] [00] +02:31:29 [ 70] [ 3] [301] +02:31:29 ============================================================================ +02:31:29 Calculate Source COMM Id = 2 +02:31:29 ============================================================================ +02:31:29 + + +waiting on router queue for slot.... +02:31:34 ============================================================================ +02:31:34 Slot Id : <394> +02:31:34 Transaction Type : REQUEST +02:31:34 Received From : +02:31:34 ============================================================================ +02:31:34 FNo. Len. Field Value +02:31:34 ============================================================================ +02:31:34 [ 1] [ 4] [0800] +02:31:34 [ 7] [ 10] [0320094321] +02:31:34 [ 11] [ 6] [024321] +02:31:34 [ 37] [ 12] [57902024321] +02:31:34 [ 70] [ 3] [301] +02:31:34 ============================================================================ +02:31:34 + + +waiting on router queue for slot.... +02:31:34 Sending to : +02:31:34 ============================================================================ +02:31:34 ============================================================================ +02:31:34 Slot Id : <394> +02:31:34 Transaction Type : RESPONSE +02:31:34 Received From : +02:31:34 ============================================================================ +02:31:34 FNo. Len. Field Value +02:31:34 ============================================================================ +02:31:34 [ 1] [ 4] [0810] +02:31:34 [ 7] [ 10] [0320094321] +02:31:34 [ 11] [ 6] [024321] +02:31:34 [ 37] [ 12] [579020243210] +02:31:34 [ 39] [ 2] [00] +02:31:34 [ 70] [ 3] [810] +02:31:34 ============================================================================ +02:31:34 Calculate Source COMM Id = 6 +02:31:34 ============================================================================ +02:31:34 + + +waiting on router queue for slot.... +02:31:44 ============================================================================ +02:31:44 Slot Id : <387> +02:31:44 Transaction Type : REQUEST +02:31:44 Received From : +02:31:44 ============================================================================ +02:31:44 FNo. Len. Field Value +02:31:44 ============================================================================ +02:31:44 [ 1] [ 4] [0800] +02:31:44 [ 7] [ 10] [0319073051] +02:31:44 [ 11] [ 6] [153749] +02:31:44 [ 70] [ 3] [301] +02:31:44 ============================================================================ +02:31:44 + + +waiting on router queue for slot.... +02:31:44 Sending to : +02:31:44 ============================================================================ +02:31:44 ============================================================================ +02:31:44 Slot Id : <387> +02:31:44 Transaction Type : RESPONSE +02:31:44 Received From : +02:31:44 ============================================================================ +02:31:44 FNo. Len. Field Value +02:31:44 ============================================================================ +02:31:44 [ 1] [ 4] [0810] +02:31:44 [ 7] [ 10] [0319073051] +02:31:44 [ 11] [ 6] [153749] +02:31:44 [ 39] [ 2] [00] +02:31:44 [ 70] [ 3] [301] +02:31:44 ============================================================================ +02:31:44 Calculate Source COMM Id = 2 +02:31:44 ============================================================================ +02:31:44 + + +waiting on router queue for slot.... +02:31:55 ============================================================================ +02:31:55 Slot Id : <368> +02:31:55 Transaction Type : REQUEST +02:31:55 Received From : +02:31:55 ============================================================================ +02:31:55 FNo. Len. Field Value +02:31:55 ============================================================================ +02:31:55 [ 1] [ 4] [0800] +02:31:55 [ 7] [ 10] [0319073102] +02:31:55 [ 11] [ 6] [153750] +02:31:55 [ 70] [ 3] [301] +02:31:55 ============================================================================ +02:31:55 + + +waiting on router queue for slot.... +02:31:55 Sending to : +02:31:55 ============================================================================ +02:31:55 ============================================================================ +02:31:55 Slot Id : <368> +02:31:55 Transaction Type : RESPONSE +02:31:55 Received From : +02:31:55 ============================================================================ +02:31:55 FNo. Len. Field Value +02:31:55 ============================================================================ +02:31:55 [ 1] [ 4] [0810] +02:31:55 [ 7] [ 10] [0319073102] +02:31:55 [ 11] [ 6] [153750] +02:31:55 [ 39] [ 2] [00] +02:31:55 [ 70] [ 3] [301] +02:31:55 ============================================================================ +02:31:55 Calculate Source COMM Id = 2 +02:31:55 ============================================================================ +02:31:55 + + +waiting on router queue for slot.... +02:32:05 ============================================================================ +02:32:05 Slot Id : <372> +02:32:05 Transaction Type : REQUEST +02:32:05 Received From : +02:32:05 ============================================================================ +02:32:05 FNo. Len. Field Value +02:32:05 ============================================================================ +02:32:05 [ 1] [ 4] [0800] +02:32:05 [ 7] [ 10] [0319073112] +02:32:05 [ 11] [ 6] [153751] +02:32:05 [ 70] [ 3] [301] +02:32:05 ============================================================================ +02:32:05 + + +waiting on router queue for slot.... +02:32:05 Sending to : +02:32:05 ============================================================================ +02:32:05 ============================================================================ +02:32:05 Slot Id : <372> +02:32:05 Transaction Type : RESPONSE +02:32:05 Received From : +02:32:05 ============================================================================ +02:32:05 FNo. Len. Field Value +02:32:05 ============================================================================ +02:32:05 [ 1] [ 4] [0810] +02:32:05 [ 7] [ 10] [0319073112] +02:32:05 [ 11] [ 6] [153751] +02:32:05 [ 39] [ 2] [00] +02:32:05 [ 70] [ 3] [301] +02:32:05 ============================================================================ +02:32:05 Calculate Source COMM Id = 2 +02:32:05 ============================================================================ +02:32:05 + + +waiting on router queue for slot.... +02:32:16 ============================================================================ +02:32:16 Slot Id : <418> +02:32:16 Transaction Type : REQUEST +02:32:16 Received From : +02:32:16 ============================================================================ +02:32:16 FNo. Len. Field Value +02:32:16 ============================================================================ +02:32:16 [ 1] [ 4] [0800] +02:32:16 [ 7] [ 10] [0319073123] +02:32:16 [ 11] [ 6] [153752] +02:32:16 [ 70] [ 3] [301] +02:32:16 ============================================================================ +02:32:16 + + +waiting on router queue for slot.... +02:32:16 Sending to : +02:32:16 ============================================================================ +02:32:16 ============================================================================ +02:32:16 Slot Id : <418> +02:32:16 Transaction Type : RESPONSE +02:32:16 Received From : +02:32:16 ============================================================================ +02:32:16 FNo. Len. Field Value +02:32:16 ============================================================================ +02:32:16 [ 1] [ 4] [0810] +02:32:16 [ 7] [ 10] [0319073123] +02:32:16 [ 11] [ 6] [153752] +02:32:16 [ 39] [ 2] [00] +02:32:16 [ 70] [ 3] [301] +02:32:16 ============================================================================ +02:32:16 Calculate Source COMM Id = 2 +02:32:16 ============================================================================ +02:32:16 + + +waiting on router queue for slot.... +02:32:27 ============================================================================ +02:32:27 Slot Id : <406> +02:32:27 Transaction Type : REQUEST +02:32:27 Received From : +02:32:27 ============================================================================ +02:32:27 FNo. Len. Field Value +02:32:27 ============================================================================ +02:32:27 [ 1] [ 4] [0800] +02:32:27 [ 7] [ 10] [0319073134] +02:32:27 [ 11] [ 6] [153753] +02:32:27 [ 70] [ 3] [301] +02:32:27 ============================================================================ +02:32:27 + + +waiting on router queue for slot.... +02:32:27 Sending to : +02:32:27 ============================================================================ +02:32:27 ============================================================================ +02:32:27 Slot Id : <406> +02:32:27 Transaction Type : RESPONSE +02:32:27 Received From : +02:32:27 ============================================================================ +02:32:27 FNo. Len. Field Value +02:32:27 ============================================================================ +02:32:27 [ 1] [ 4] [0810] +02:32:27 [ 7] [ 10] [0319073134] +02:32:27 [ 11] [ 6] [153753] +02:32:27 [ 39] [ 2] [00] +02:32:27 [ 70] [ 3] [301] +02:32:27 ============================================================================ +02:32:27 Calculate Source COMM Id = 2 +02:32:27 ============================================================================ +02:32:27 + + +waiting on router queue for slot.... +02:32:29 ============================================================================ +02:32:29 Slot Id : <380> +02:32:29 Transaction Type : REQUEST +02:32:29 Received From : +02:32:29 ============================================================================ +02:32:29 FNo. Len. Field Value +02:32:29 ============================================================================ +02:32:29 [ 1] [ 4] [0800] +02:32:29 [ 2] [ 5] [02531] +02:32:29 [ 3] [ 6] [579028] +02:32:29 [ 7] [ 10] [0319193229] +02:32:29 [ 11] [ 6] [806559] +02:32:29 [ 15] [ 10] [0319193229] +02:32:29 [ 37] [ 11] [57902806559] +02:32:29 [ 70] [ 3] [001] +02:32:29 ============================================================================ +02:32:29 + + +waiting on router queue for slot.... +02:32:29 ============================================================================ +02:32:29 Slot Id : <380> +02:32:29 Transaction Type : RESPONSE +02:32:29 Received From : +02:32:29 ============================================================================ +02:32:29 FNo. Len. Field Value +02:32:29 ============================================================================ +02:32:29 [ 1] [ 4] [0810] +02:32:29 [ 7] [ 10] [0319193229] +02:32:29 [ 11] [ 6] [806559] +02:32:29 [ 15] [ 4] [0319] +02:32:29 [ 37] [ 12] [57902806559] +02:32:29 [ 39] [ 2] [00] +02:32:29 [ 70] [ 3] [001] +02:32:29 ============================================================================ +02:32:29 Sending to : +02:32:29 ============================================================================ +02:32:29 + + +waiting on router queue for slot.... +02:32:39 ============================================================================ +02:32:39 Slot Id : <419> +02:32:39 Transaction Type : REQUEST +02:32:39 Received From : +02:32:39 ============================================================================ +02:32:39 FNo. Len. Field Value +02:32:39 ============================================================================ +02:32:39 [ 1] [ 4] [0800] +02:32:39 [ 7] [ 10] [0319073146] +02:32:39 [ 11] [ 6] [153754] +02:32:39 [ 70] [ 3] [301] +02:32:39 ============================================================================ +02:32:39 + + +waiting on router queue for slot.... +02:32:39 Sending to : +02:32:39 ============================================================================ +02:32:39 ============================================================================ +02:32:39 Slot Id : <419> +02:32:39 Transaction Type : RESPONSE +02:32:39 Received From : +02:32:39 ============================================================================ +02:32:39 FNo. Len. Field Value +02:32:39 ============================================================================ +02:32:39 [ 1] [ 4] [0810] +02:32:39 [ 7] [ 10] [0319073146] +02:32:39 [ 11] [ 6] [153754] +02:32:39 [ 39] [ 2] [00] +02:32:39 [ 70] [ 3] [301] +02:32:39 ============================================================================ +02:32:39 Calculate Source COMM Id = 2 +02:32:39 ============================================================================ +02:32:39 + + +waiting on router queue for slot.... +02:32:39 ============================================================================ +02:32:39 Slot Id : <411> +02:32:39 Transaction Type : REQUEST +02:32:39 Received From : +02:32:39 ============================================================================ +02:32:39 FNo. Len. Field Value +02:32:39 ============================================================================ +02:32:39 [ 1] [ 4] [0800] +02:32:39 [ 7] [ 10] [0320094426] +02:32:39 [ 11] [ 6] [024426] +02:32:39 [ 37] [ 12] [57902024426] +02:32:39 [ 70] [ 3] [301] +02:32:39 ============================================================================ +02:32:39 + + +waiting on router queue for slot.... +02:32:39 Sending to : +02:32:39 ============================================================================ +02:32:39 ============================================================================ +02:32:39 Slot Id : <411> +02:32:39 Transaction Type : RESPONSE +02:32:39 Received From : +02:32:39 ============================================================================ +02:32:39 FNo. Len. Field Value +02:32:39 ============================================================================ +02:32:39 [ 1] [ 4] [0810] +02:32:39 [ 7] [ 10] [0320094426] +02:32:39 [ 11] [ 6] [024426] +02:32:39 [ 37] [ 12] [579020244260] +02:32:39 [ 39] [ 2] [00] +02:32:39 [ 70] [ 3] [810] +02:32:39 ============================================================================ +02:32:39 Calculate Source COMM Id = 6 +02:32:39 ============================================================================ +02:32:39 + + +waiting on router queue for slot.... +02:32:50 ============================================================================ +02:32:50 Slot Id : <407> +02:32:50 Transaction Type : REQUEST +02:32:50 Received From : +02:32:50 ============================================================================ +02:32:50 FNo. Len. Field Value +02:32:50 ============================================================================ +02:32:50 [ 1] [ 4] [0800] +02:32:50 [ 7] [ 10] [0319073157] +02:32:50 [ 11] [ 6] [153755] +02:32:50 [ 70] [ 3] [301] +02:32:50 ============================================================================ +02:32:50 + + +waiting on router queue for slot.... +02:32:50 Sending to : +02:32:50 ============================================================================ +02:32:50 ============================================================================ +02:32:50 Slot Id : <407> +02:32:50 Transaction Type : RESPONSE +02:32:50 Received From : +02:32:50 ============================================================================ +02:32:50 FNo. Len. Field Value +02:32:50 ============================================================================ +02:32:50 [ 1] [ 4] [0810] +02:32:50 [ 7] [ 10] [0319073157] +02:32:50 [ 11] [ 6] [153755] +02:32:50 [ 39] [ 2] [00] +02:32:50 [ 70] [ 3] [301] +02:32:50 ============================================================================ +02:32:50 Calculate Source COMM Id = 2 +02:32:50 ============================================================================ +02:32:50 + + +waiting on router queue for slot.... +02:33:05 ============================================================================ +02:33:05 Slot Id : <384> +02:33:05 Transaction Type : REQUEST +02:33:05 Received From : +02:33:05 ============================================================================ +02:33:05 FNo. Len. Field Value +02:33:05 ============================================================================ +02:33:05 [ 1] [ 4] [0800] +02:33:05 [ 7] [ 10] [0319073212] +02:33:05 [ 11] [ 6] [153756] +02:33:05 [ 70] [ 3] [301] +02:33:05 ============================================================================ +02:33:05 + + +waiting on router queue for slot.... +02:33:05 Sending to : +02:33:05 ============================================================================ +02:33:05 ============================================================================ +02:33:05 Slot Id : <384> +02:33:05 Transaction Type : RESPONSE +02:33:05 Received From : +02:33:05 ============================================================================ +02:33:05 FNo. Len. Field Value +02:33:05 ============================================================================ +02:33:05 [ 1] [ 4] [0810] +02:33:05 [ 7] [ 10] [0319073212] +02:33:05 [ 11] [ 6] [153756] +02:33:05 [ 39] [ 2] [00] +02:33:05 [ 70] [ 3] [301] +02:33:05 ============================================================================ +02:33:05 Calculate Source COMM Id = 2 +02:33:05 ============================================================================ +02:33:05 + + +waiting on router queue for slot.... +02:33:20 ============================================================================ +02:33:20 Slot Id : <401> +02:33:20 Transaction Type : REQUEST +02:33:20 Received From : +02:33:20 ============================================================================ +02:33:20 FNo. Len. Field Value +02:33:20 ============================================================================ +02:33:20 [ 1] [ 4] [0800] +02:33:20 [ 7] [ 10] [0319073227] +02:33:20 [ 11] [ 6] [153757] +02:33:20 [ 70] [ 3] [301] +02:33:20 ============================================================================ +02:33:20 + + +waiting on router queue for slot.... +02:33:20 Sending to : +02:33:20 ============================================================================ +02:33:20 ============================================================================ +02:33:20 Slot Id : <401> +02:33:20 Transaction Type : RESPONSE +02:33:20 Received From : +02:33:20 ============================================================================ +02:33:20 FNo. Len. Field Value +02:33:20 ============================================================================ +02:33:20 [ 1] [ 4] [0810] +02:33:20 [ 7] [ 10] [0319073227] +02:33:20 [ 11] [ 6] [153757] +02:33:20 [ 39] [ 2] [00] +02:33:20 [ 70] [ 3] [301] +02:33:20 ============================================================================ +02:33:20 Calculate Source COMM Id = 2 +02:33:20 ============================================================================ +02:33:20 + + +waiting on router queue for slot.... +02:33:31 ============================================================================ +02:33:31 Slot Id : <416> +02:33:31 Transaction Type : REQUEST +02:33:31 Received From : +02:33:31 ============================================================================ +02:33:31 FNo. Len. Field Value +02:33:31 ============================================================================ +02:33:31 [ 1] [ 4] [0800] +02:33:31 [ 2] [ 5] [02531] +02:33:31 [ 3] [ 6] [579028] +02:33:31 [ 7] [ 10] [0319193331] +02:33:31 [ 11] [ 6] [806560] +02:33:31 [ 15] [ 10] [0319193331] +02:33:31 [ 37] [ 11] [57902806560] +02:33:31 [ 70] [ 3] [001] +02:33:31 ============================================================================ +02:33:31 + + +waiting on router queue for slot.... +02:33:31 ============================================================================ +02:33:31 Slot Id : <416> +02:33:31 Transaction Type : RESPONSE +02:33:31 Received From : +02:33:31 ============================================================================ +02:33:31 FNo. Len. Field Value +02:33:31 ============================================================================ +02:33:31 [ 1] [ 4] [0810] +02:33:31 [ 7] [ 10] [0319193331] +02:33:31 [ 11] [ 6] [806560] +02:33:31 [ 15] [ 4] [0319] +02:33:31 [ 37] [ 12] [57902806560] +02:33:31 [ 39] [ 2] [00] +02:33:31 [ 70] [ 3] [001] +02:33:31 ============================================================================ +02:33:31 Sending to : +02:33:31 ============================================================================ +02:33:31 + + +waiting on router queue for slot.... +02:33:32 ============================================================================ +02:33:32 Slot Id : <420> +02:33:32 Transaction Type : REQUEST +02:33:32 Received From : +02:33:32 ============================================================================ +02:33:32 FNo. Len. Field Value +02:33:32 ============================================================================ +02:33:32 [ 1] [ 4] [0800] +02:33:32 [ 7] [ 10] [0319073238] +02:33:32 [ 11] [ 6] [153758] +02:33:32 [ 70] [ 3] [301] +02:33:32 ============================================================================ +02:33:32 + + +waiting on router queue for slot.... +02:33:32 Sending to : +02:33:32 ============================================================================ +02:33:32 ============================================================================ +02:33:32 Slot Id : <420> +02:33:32 Transaction Type : RESPONSE +02:33:32 Received From : +02:33:32 ============================================================================ +02:33:32 FNo. Len. Field Value +02:33:32 ============================================================================ +02:33:32 [ 1] [ 4] [0810] +02:33:32 [ 7] [ 10] [0319073238] +02:33:32 [ 11] [ 6] [153758] +02:33:32 [ 39] [ 2] [00] +02:33:32 [ 70] [ 3] [301] +02:33:32 ============================================================================ +02:33:32 Calculate Source COMM Id = 2 +02:33:32 ============================================================================ +02:33:32 + + +waiting on router queue for slot.... +02:33:44 ============================================================================ +02:33:44 Slot Id : <415> +02:33:44 Transaction Type : REQUEST +02:33:44 Received From : +02:33:44 ============================================================================ +02:33:44 FNo. Len. Field Value +02:33:44 ============================================================================ +02:33:44 [ 1] [ 4] [0800] +02:33:44 [ 7] [ 10] [0320094531] +02:33:44 [ 11] [ 6] [024531] +02:33:44 [ 37] [ 12] [57902024531] +02:33:44 [ 70] [ 3] [301] +02:33:44 ============================================================================ +02:33:44 + + +waiting on router queue for slot.... +02:33:44 Sending to : +02:33:44 ============================================================================ +02:33:44 ============================================================================ +02:33:44 Slot Id : <415> +02:33:44 Transaction Type : RESPONSE +02:33:44 Received From : +02:33:44 ============================================================================ +02:33:44 FNo. Len. Field Value +02:33:44 ============================================================================ +02:33:44 [ 1] [ 4] [0810] +02:33:44 [ 7] [ 10] [0320094531] +02:33:44 [ 11] [ 6] [024531] +02:33:44 [ 37] [ 12] [579020245310] +02:33:44 [ 39] [ 2] [00] +02:33:44 [ 70] [ 3] [810] +02:33:44 ============================================================================ +02:33:44 Calculate Source COMM Id = 6 +02:33:44 ============================================================================ +02:33:44 + + +waiting on router queue for slot.... +02:33:47 ============================================================================ +02:33:47 Slot Id : <381> +02:33:47 Transaction Type : REQUEST +02:33:47 Received From : +02:33:47 ============================================================================ +02:33:47 FNo. Len. Field Value +02:33:47 ============================================================================ +02:33:47 [ 1] [ 4] [0800] +02:33:47 [ 7] [ 10] [0319073254] +02:33:47 [ 11] [ 6] [153759] +02:33:47 [ 70] [ 3] [301] +02:33:47 ============================================================================ +02:33:47 + + +waiting on router queue for slot.... +02:33:47 Sending to : +02:33:47 ============================================================================ +02:33:47 ============================================================================ +02:33:47 Slot Id : <381> +02:33:47 Transaction Type : RESPONSE +02:33:47 Received From : +02:33:47 ============================================================================ +02:33:47 FNo. Len. Field Value +02:33:47 ============================================================================ +02:33:47 [ 1] [ 4] [0810] +02:33:47 [ 7] [ 10] [0319073254] +02:33:47 [ 11] [ 6] [153759] +02:33:47 [ 39] [ 2] [00] +02:33:47 [ 70] [ 3] [301] +02:33:47 ============================================================================ +02:33:47 Calculate Source COMM Id = 2 +02:33:47 ============================================================================ +02:33:47 + + +waiting on router queue for slot.... +02:34:02 ============================================================================ +02:34:02 Slot Id : <425> +02:34:02 Transaction Type : REQUEST +02:34:02 Received From : +02:34:02 ============================================================================ +02:34:02 FNo. Len. Field Value +02:34:02 ============================================================================ +02:34:02 [ 1] [ 4] [0800] +02:34:02 [ 7] [ 10] [0319073309] +02:34:02 [ 11] [ 6] [153760] +02:34:02 [ 70] [ 3] [301] +02:34:02 ============================================================================ +02:34:02 + + +waiting on router queue for slot.... +02:34:02 Sending to : +02:34:02 ============================================================================ +02:34:02 ============================================================================ +02:34:02 Slot Id : <425> +02:34:02 Transaction Type : RESPONSE +02:34:02 Received From : +02:34:02 ============================================================================ +02:34:02 FNo. Len. Field Value +02:34:02 ============================================================================ +02:34:02 [ 1] [ 4] [0810] +02:34:02 [ 7] [ 10] [0319073309] +02:34:02 [ 11] [ 6] [153760] +02:34:02 [ 39] [ 2] [00] +02:34:02 [ 70] [ 3] [301] +02:34:02 ============================================================================ +02:34:02 Calculate Source COMM Id = 2 +02:34:02 ============================================================================ +02:34:02 + + +waiting on router queue for slot.... +02:34:12 ============================================================================ +02:34:12 Slot Id : <388> +02:34:12 Transaction Type : REQUEST +02:34:12 Received From : +02:34:12 ============================================================================ +02:34:12 FNo. Len. Field Value +02:34:12 ============================================================================ +02:34:12 [ 1] [ 4] [0800] +02:34:12 [ 7] [ 10] [0319073319] +02:34:12 [ 11] [ 6] [153761] +02:34:12 [ 70] [ 3] [301] +02:34:12 ============================================================================ +02:34:12 + + +waiting on router queue for slot.... +02:34:12 Sending to : +02:34:12 ============================================================================ +02:34:12 ============================================================================ +02:34:12 Slot Id : <388> +02:34:12 Transaction Type : RESPONSE +02:34:12 Received From : +02:34:12 ============================================================================ +02:34:12 FNo. Len. Field Value +02:34:12 ============================================================================ +02:34:12 [ 1] [ 4] [0810] +02:34:12 [ 7] [ 10] [0319073319] +02:34:12 [ 11] [ 6] [153761] +02:34:12 [ 39] [ 2] [00] +02:34:12 [ 70] [ 3] [301] +02:34:12 ============================================================================ +02:34:12 Calculate Source COMM Id = 2 +02:34:12 ============================================================================ +02:34:12 + + +waiting on router queue for slot.... +02:34:28 ============================================================================ +02:34:28 Slot Id : <398> +02:34:28 Transaction Type : REQUEST +02:34:28 Received From : +02:34:28 ============================================================================ +02:34:28 FNo. Len. Field Value +02:34:28 ============================================================================ +02:34:28 [ 1] [ 4] [0800] +02:34:28 [ 7] [ 10] [0319073335] +02:34:28 [ 11] [ 6] [153762] +02:34:28 [ 70] [ 3] [301] +02:34:28 ============================================================================ +02:34:28 + + +waiting on router queue for slot.... +02:34:28 Sending to : +02:34:28 ============================================================================ +02:34:28 ============================================================================ +02:34:28 Slot Id : <398> +02:34:28 Transaction Type : RESPONSE +02:34:28 Received From : +02:34:28 ============================================================================ +02:34:28 FNo. Len. Field Value +02:34:28 ============================================================================ +02:34:28 [ 1] [ 4] [0810] +02:34:28 [ 7] [ 10] [0319073335] +02:34:28 [ 11] [ 6] [153762] +02:34:28 [ 39] [ 2] [00] +02:34:28 [ 70] [ 3] [301] +02:34:28 ============================================================================ +02:34:28 Calculate Source COMM Id = 2 +02:34:28 ============================================================================ +02:34:28 + + +waiting on router queue for slot.... +02:34:33 ============================================================================ +02:34:33 Slot Id : <433> +02:34:33 Transaction Type : REQUEST +02:34:33 Received From : +02:34:33 ============================================================================ +02:34:33 FNo. Len. Field Value +02:34:33 ============================================================================ +02:34:33 [ 1] [ 4] [0800] +02:34:33 [ 2] [ 5] [02531] +02:34:33 [ 3] [ 6] [579028] +02:34:33 [ 7] [ 10] [0319193433] +02:34:33 [ 11] [ 6] [806561] +02:34:33 [ 15] [ 10] [0319193433] +02:34:33 [ 37] [ 11] [57902806561] +02:34:33 [ 70] [ 3] [001] +02:34:33 ============================================================================ +02:34:33 + + +waiting on router queue for slot.... +02:34:33 ============================================================================ +02:34:33 Slot Id : <433> +02:34:33 Transaction Type : RESPONSE +02:34:33 Received From : +02:34:33 ============================================================================ +02:34:33 FNo. Len. Field Value +02:34:33 ============================================================================ +02:34:33 [ 1] [ 4] [0810] +02:34:33 [ 7] [ 10] [0319193433] +02:34:33 [ 11] [ 6] [806561] +02:34:33 [ 15] [ 4] [0319] +02:34:33 [ 37] [ 12] [57902806561] +02:34:33 [ 39] [ 2] [00] +02:34:33 [ 70] [ 3] [001] +02:34:33 ============================================================================ +02:34:33 Sending to : +02:34:33 ============================================================================ +02:34:33 + + +waiting on router queue for slot.... +02:34:38 ============================================================================ +02:34:38 Slot Id : <364> +02:34:38 Transaction Type : REQUEST +02:34:38 Received From : +02:34:38 ============================================================================ +02:34:38 FNo. Len. Field Value +02:34:38 ============================================================================ +02:34:38 [ 1] [ 4] [0800] +02:34:38 [ 7] [ 10] [0319073345] +02:34:38 [ 11] [ 6] [153763] +02:34:38 [ 70] [ 3] [301] +02:34:38 ============================================================================ +02:34:38 + + +waiting on router queue for slot.... +02:34:38 Sending to : +02:34:38 ============================================================================ +02:34:38 ============================================================================ +02:34:38 Slot Id : <364> +02:34:38 Transaction Type : RESPONSE +02:34:38 Received From : +02:34:38 ============================================================================ +02:34:38 FNo. Len. Field Value +02:34:38 ============================================================================ +02:34:38 [ 1] [ 4] [0810] +02:34:38 [ 7] [ 10] [0319073345] +02:34:38 [ 11] [ 6] [153763] +02:34:38 [ 39] [ 2] [00] +02:34:38 [ 70] [ 3] [301] +02:34:38 ============================================================================ +02:34:38 Calculate Source COMM Id = 2 +02:34:38 ============================================================================ +02:34:38 + + +waiting on router queue for slot.... +02:34:49 ============================================================================ +02:34:49 Slot Id : <367> +02:34:49 Transaction Type : REQUEST +02:34:49 Received From : +02:34:49 ============================================================================ +02:34:49 FNo. Len. Field Value +02:34:49 ============================================================================ +02:34:49 [ 1] [ 4] [0800] +02:34:49 [ 7] [ 10] [0320094636] +02:34:49 [ 11] [ 6] [024636] +02:34:49 [ 37] [ 12] [57902024636] +02:34:49 [ 70] [ 3] [301] +02:34:49 ============================================================================ +02:34:49 + + +waiting on router queue for slot.... +02:34:49 Sending to : +02:34:49 ============================================================================ +02:34:49 ============================================================================ +02:34:49 Slot Id : <367> +02:34:49 Transaction Type : RESPONSE +02:34:49 Received From : +02:34:49 ============================================================================ +02:34:49 FNo. Len. Field Value +02:34:49 ============================================================================ +02:34:49 [ 1] [ 4] [0810] +02:34:49 [ 7] [ 10] [0320094636] +02:34:49 [ 11] [ 6] [024636] +02:34:49 [ 37] [ 12] [579020246360] +02:34:49 [ 39] [ 2] [00] +02:34:49 [ 70] [ 3] [810] +02:34:49 ============================================================================ +02:34:49 Calculate Source COMM Id = 6 +02:34:49 ============================================================================ +02:34:49 + + +waiting on router queue for slot.... +02:34:53 ============================================================================ +02:34:53 Slot Id : <430> +02:34:53 Transaction Type : REQUEST +02:34:53 Received From : +02:34:53 ============================================================================ +02:34:53 FNo. Len. Field Value +02:34:53 ============================================================================ +02:34:53 [ 1] [ 4] [0800] +02:34:53 [ 7] [ 10] [0319073401] +02:34:53 [ 11] [ 6] [153764] +02:34:53 [ 70] [ 3] [301] +02:34:53 ============================================================================ +02:34:53 + + +waiting on router queue for slot.... +02:34:53 Sending to : +02:34:53 ============================================================================ +02:34:53 ============================================================================ +02:34:53 Slot Id : <430> +02:34:53 Transaction Type : RESPONSE +02:34:53 Received From : +02:34:53 ============================================================================ +02:34:53 FNo. Len. Field Value +02:34:53 ============================================================================ +02:34:53 [ 1] [ 4] [0810] +02:34:53 [ 7] [ 10] [0319073401] +02:34:53 [ 11] [ 6] [153764] +02:34:53 [ 39] [ 2] [00] +02:34:53 [ 70] [ 3] [301] +02:34:53 ============================================================================ +02:34:53 Calculate Source COMM Id = 2 +02:34:53 ============================================================================ +02:34:53 + + +waiting on router queue for slot.... +02:34:56 ============================================================================ +02:34:56 Slot Id : <441> +02:34:56 Transaction Type : REQUEST +02:34:56 Received From : +02:34:56 ============================================================================ +02:34:56 FNo. Len. Field Value +02:34:56 ============================================================================ +02:34:56 [ 1] [ 4] [0800] +02:34:56 [ 7] [ 10] [0319194242] +02:34:56 [ 11] [ 6] [084763] +02:34:56 [ 37] [ 12] [57902084763] +02:34:56 [ 70] [ 3] [301] +02:34:56 ============================================================================ +02:34:56 + + +waiting on router queue for slot.... +02:34:56 Sending to : +02:34:56 ============================================================================ +02:34:56 ============================================================================ +02:34:56 Slot Id : <441> +02:34:56 Transaction Type : RESPONSE +02:34:56 Received From : +02:34:56 ============================================================================ +02:34:56 FNo. Len. Field Value +02:34:56 ============================================================================ +02:34:56 [ 1] [ 4] [0810] +02:34:56 [ 7] [ 10] [0319194242] +02:34:56 [ 11] [ 6] [084763] +02:34:56 [ 37] [ 12] [579020847630] +02:34:56 [ 39] [ 2] [00] +02:34:56 [ 70] [ 3] [810] +02:34:56 ============================================================================ +02:34:56 Calculate Source COMM Id = 1 +02:34:56 ============================================================================ +02:34:56 + + +waiting on router queue for slot.... +02:35:04 ============================================================================ +02:35:04 Slot Id : <375> +02:35:04 Transaction Type : REQUEST +02:35:04 Received From : +02:35:04 ============================================================================ +02:35:04 FNo. Len. Field Value +02:35:04 ============================================================================ +02:35:04 [ 1] [ 4] [0800] +02:35:04 [ 7] [ 10] [0319073411] +02:35:04 [ 11] [ 6] [153765] +02:35:04 [ 70] [ 3] [301] +02:35:04 ============================================================================ +02:35:04 + + +waiting on router queue for slot.... +02:35:04 Sending to : +02:35:04 ============================================================================ +02:35:04 ============================================================================ +02:35:04 Slot Id : <375> +02:35:04 Transaction Type : RESPONSE +02:35:04 Received From : +02:35:04 ============================================================================ +02:35:04 FNo. Len. Field Value +02:35:04 ============================================================================ +02:35:04 [ 1] [ 4] [0810] +02:35:04 [ 7] [ 10] [0319073411] +02:35:04 [ 11] [ 6] [153765] +02:35:04 [ 39] [ 2] [00] +02:35:04 [ 70] [ 3] [301] +02:35:04 ============================================================================ +02:35:04 Calculate Source COMM Id = 2 +02:35:04 ============================================================================ +02:35:04 + + +waiting on router queue for slot.... +02:35:15 ============================================================================ +02:35:15 Slot Id : <402> +02:35:15 Transaction Type : REQUEST +02:35:15 Received From : +02:35:15 ============================================================================ +02:35:15 FNo. Len. Field Value +02:35:15 ============================================================================ +02:35:15 [ 1] [ 4] [0800] +02:35:15 [ 7] [ 10] [0319073421] +02:35:15 [ 11] [ 6] [153766] +02:35:15 [ 70] [ 3] [301] +02:35:15 ============================================================================ +02:35:15 + + +waiting on router queue for slot.... +02:35:15 Sending to : +02:35:15 ============================================================================ +02:35:15 ============================================================================ +02:35:15 Slot Id : <402> +02:35:15 Transaction Type : RESPONSE +02:35:15 Received From : +02:35:15 ============================================================================ +02:35:15 FNo. Len. Field Value +02:35:15 ============================================================================ +02:35:15 [ 1] [ 4] [0810] +02:35:15 [ 7] [ 10] [0319073421] +02:35:15 [ 11] [ 6] [153766] +02:35:15 [ 39] [ 2] [00] +02:35:15 [ 70] [ 3] [301] +02:35:15 ============================================================================ +02:35:15 Calculate Source COMM Id = 2 +02:35:15 ============================================================================ +02:35:15 + + +waiting on router queue for slot.... +02:35:29 ============================================================================ +02:35:29 Slot Id : <408> +02:35:29 Transaction Type : REQUEST +02:35:29 Received From : +02:35:29 ============================================================================ +02:35:29 FNo. Len. Field Value +02:35:29 ============================================================================ +02:35:29 [ 1] [ 4] [0800] +02:35:29 [ 7] [ 10] [0319073436] +02:35:29 [ 11] [ 6] [153767] +02:35:29 [ 70] [ 3] [301] +02:35:29 ============================================================================ +02:35:29 + + +waiting on router queue for slot.... +02:35:29 Sending to : +02:35:29 ============================================================================ +02:35:29 ============================================================================ +02:35:29 Slot Id : <408> +02:35:29 Transaction Type : RESPONSE +02:35:29 Received From : +02:35:29 ============================================================================ +02:35:29 FNo. Len. Field Value +02:35:29 ============================================================================ +02:35:29 [ 1] [ 4] [0810] +02:35:29 [ 7] [ 10] [0319073436] +02:35:29 [ 11] [ 6] [153767] +02:35:29 [ 39] [ 2] [00] +02:35:29 [ 70] [ 3] [301] +02:35:29 ============================================================================ +02:35:29 Calculate Source COMM Id = 2 +02:35:29 ============================================================================ +02:35:29 + + +waiting on router queue for slot.... +02:35:35 ============================================================================ +02:35:35 Slot Id : <437> +02:35:35 Transaction Type : REQUEST +02:35:35 Received From : +02:35:35 ============================================================================ +02:35:35 FNo. Len. Field Value +02:35:35 ============================================================================ +02:35:35 [ 1] [ 4] [0800] +02:35:35 [ 2] [ 5] [02531] +02:35:35 [ 3] [ 6] [579028] +02:35:35 [ 7] [ 10] [0319193535] +02:35:35 [ 11] [ 6] [806562] +02:35:35 [ 15] [ 10] [0319193535] +02:35:35 [ 37] [ 11] [57902806562] +02:35:35 [ 70] [ 3] [001] +02:35:35 ============================================================================ +02:35:35 + + +waiting on router queue for slot.... +02:35:35 ============================================================================ +02:35:35 Slot Id : <437> +02:35:35 Transaction Type : RESPONSE +02:35:35 Received From : +02:35:35 ============================================================================ +02:35:35 FNo. Len. Field Value +02:35:35 ============================================================================ +02:35:35 [ 1] [ 4] [0810] +02:35:35 [ 7] [ 10] [0319193535] +02:35:35 [ 11] [ 6] [806562] +02:35:35 [ 15] [ 4] [0319] +02:35:35 [ 37] [ 12] [57902806562] +02:35:35 [ 39] [ 2] [00] +02:35:35 [ 70] [ 3] [001] +02:35:35 ============================================================================ +02:35:35 Sending to : +02:35:35 ============================================================================ +02:35:35 + + +waiting on router queue for slot.... +02:35:40 ============================================================================ +02:35:40 Slot Id : <409> +02:35:40 Transaction Type : REQUEST +02:35:40 Received From : +02:35:40 ============================================================================ +02:35:40 FNo. Len. Field Value +02:35:40 ============================================================================ +02:35:40 [ 1] [ 4] [0800] +02:35:40 [ 7] [ 10] [0319073447] +02:35:40 [ 11] [ 6] [153768] +02:35:40 [ 70] [ 3] [301] +02:35:40 ============================================================================ +02:35:40 + + +waiting on router queue for slot.... +02:35:40 Sending to : +02:35:40 ============================================================================ +02:35:40 ============================================================================ +02:35:40 Slot Id : <409> +02:35:40 Transaction Type : RESPONSE +02:35:40 Received From : +02:35:40 ============================================================================ +02:35:40 FNo. Len. Field Value +02:35:40 ============================================================================ +02:35:40 [ 1] [ 4] [0810] +02:35:40 [ 7] [ 10] [0319073447] +02:35:40 [ 11] [ 6] [153768] +02:35:40 [ 39] [ 2] [00] +02:35:40 [ 70] [ 3] [301] +02:35:40 ============================================================================ +02:35:40 Calculate Source COMM Id = 2 +02:35:40 ============================================================================ +02:35:40 + + +waiting on router queue for slot.... +02:35:50 ============================================================================ +02:35:50 Slot Id : <385> +02:35:50 Transaction Type : REQUEST +02:35:50 Received From : +02:35:50 ============================================================================ +02:35:50 FNo. Len. Field Value +02:35:50 ============================================================================ +02:35:50 [ 1] [ 4] [0800] +02:35:50 [ 7] [ 10] [0319073457] +02:35:50 [ 11] [ 6] [153769] +02:35:50 [ 70] [ 3] [301] +02:35:50 ============================================================================ +02:35:50 + + +waiting on router queue for slot.... +02:35:50 Sending to : +02:35:50 ============================================================================ +02:35:50 ============================================================================ +02:35:50 Slot Id : <385> +02:35:50 Transaction Type : RESPONSE +02:35:50 Received From : +02:35:50 ============================================================================ +02:35:50 FNo. Len. Field Value +02:35:50 ============================================================================ +02:35:50 [ 1] [ 4] [0810] +02:35:50 [ 7] [ 10] [0319073457] +02:35:50 [ 11] [ 6] [153769] +02:35:50 [ 39] [ 2] [00] +02:35:50 [ 70] [ 3] [301] +02:35:50 ============================================================================ +02:35:50 Calculate Source COMM Id = 2 +02:35:50 ============================================================================ +02:35:50 + + +waiting on router queue for slot.... +02:35:54 ============================================================================ +02:35:54 Slot Id : <403> +02:35:54 Transaction Type : REQUEST +02:35:54 Received From : +02:35:54 ============================================================================ +02:35:54 FNo. Len. Field Value +02:35:54 ============================================================================ +02:35:54 [ 1] [ 4] [0800] +02:35:54 [ 7] [ 10] [0320094741] +02:35:54 [ 11] [ 6] [024741] +02:35:54 [ 37] [ 12] [57902024741] +02:35:54 [ 70] [ 3] [301] +02:35:54 ============================================================================ +02:35:54 + + +waiting on router queue for slot.... +02:35:54 Sending to : +02:35:54 ============================================================================ +02:35:54 ============================================================================ +02:35:54 Slot Id : <403> +02:35:54 Transaction Type : RESPONSE +02:35:54 Received From : +02:35:54 ============================================================================ +02:35:54 FNo. Len. Field Value +02:35:54 ============================================================================ +02:35:54 [ 1] [ 4] [0810] +02:35:54 [ 7] [ 10] [0320094741] +02:35:54 [ 11] [ 6] [024741] +02:35:54 [ 37] [ 12] [579020247410] +02:35:54 [ 39] [ 2] [00] +02:35:54 [ 70] [ 3] [810] +02:35:54 ============================================================================ +02:35:54 Calculate Source COMM Id = 6 +02:35:54 ============================================================================ +02:35:54 + + +waiting on router queue for slot.... +02:36:01 ============================================================================ +02:36:01 Slot Id : <362> +02:36:01 Transaction Type : REQUEST +02:36:01 Received From : +02:36:01 ============================================================================ +02:36:01 FNo. Len. Field Value +02:36:01 ============================================================================ +02:36:01 [ 1] [ 4] [0800] +02:36:01 [ 7] [ 10] [0319073508] +02:36:01 [ 11] [ 6] [153770] +02:36:01 [ 70] [ 3] [301] +02:36:01 ============================================================================ +02:36:01 + + +waiting on router queue for slot.... +02:36:01 Sending to : +02:36:01 ============================================================================ +02:36:01 ============================================================================ +02:36:01 Slot Id : <362> +02:36:01 Transaction Type : RESPONSE +02:36:01 Received From : +02:36:01 ============================================================================ +02:36:01 FNo. Len. Field Value +02:36:01 ============================================================================ +02:36:01 [ 1] [ 4] [0810] +02:36:01 [ 7] [ 10] [0319073508] +02:36:01 [ 11] [ 6] [153770] +02:36:01 [ 39] [ 2] [00] +02:36:01 [ 70] [ 3] [301] +02:36:01 ============================================================================ +02:36:01 Calculate Source COMM Id = 2 +02:36:01 ============================================================================ +02:36:01 + + +waiting on router queue for slot.... +02:36:12 ============================================================================ +02:36:12 Slot Id : <392> +02:36:12 Transaction Type : REQUEST +02:36:12 Received From : +02:36:12 ============================================================================ +02:36:12 FNo. Len. Field Value +02:36:12 ============================================================================ +02:36:12 [ 1] [ 4] [0800] +02:36:12 [ 7] [ 10] [0319073519] +02:36:12 [ 11] [ 6] [153771] +02:36:12 [ 70] [ 3] [301] +02:36:12 ============================================================================ +02:36:12 + + +waiting on router queue for slot.... +02:36:12 Sending to : +02:36:12 ============================================================================ +02:36:12 ============================================================================ +02:36:12 Slot Id : <392> +02:36:12 Transaction Type : RESPONSE +02:36:12 Received From : +02:36:12 ============================================================================ +02:36:12 FNo. Len. Field Value +02:36:12 ============================================================================ +02:36:12 [ 1] [ 4] [0810] +02:36:12 [ 7] [ 10] [0319073519] +02:36:12 [ 11] [ 6] [153771] +02:36:12 [ 39] [ 2] [00] +02:36:12 [ 70] [ 3] [301] +02:36:12 ============================================================================ +02:36:12 Calculate Source COMM Id = 2 +02:36:12 ============================================================================ +02:36:12 + + +waiting on router queue for slot.... +02:36:19 ============================================================================ +02:36:19 Slot Id : <412> +02:36:19 Transaction Type : REQUEST +02:36:19 Received From : +02:36:19 ============================================================================ +02:36:19 FNo. Len. Field Value +02:36:19 ============================================================================ +02:36:19 [ 1] [ 4] [0800] +02:36:19 [ 7] [ 10] [0319193614] +02:36:19 [ 11] [ 6] [074602] +02:36:19 [ 37] [ 12] [507902074602] +02:36:19 [ 70] [ 3] [001] +02:36:19 ============================================================================ +02:36:19 + + +waiting on router queue for slot.... +02:36:19 Sending to : +02:36:19 ============================================================================ +02:36:19 ============================================================================ +02:36:19 Slot Id : <412> +02:36:19 Transaction Type : RESPONSE +02:36:19 Received From : +02:36:19 ============================================================================ +02:36:19 FNo. Len. Field Value +02:36:19 ============================================================================ +02:36:19 [ 1] [ 4] [0810] +02:36:19 [ 7] [ 10] [0319193614] +02:36:19 [ 11] [ 6] [074602] +02:36:19 [ 37] [ 12] [507902074602] +02:36:19 [ 39] [ 2] [00] +02:36:19 [ 70] [ 3] [001] +02:36:19 ============================================================================ +02:36:19 Calculate Source COMM Id = 0 +02:36:19 ============================================================================ +02:36:19 + + +waiting on router queue for slot.... +02:36:21 ============================================================================ +02:36:21 Slot Id : <447> +02:36:21 Transaction Type : REQUEST +02:36:21 Received From : +02:36:21 ============================================================================ +02:36:21 FNo. Len. Field Value +02:36:21 ============================================================================ +02:36:21 [ 1] [ 4] [0800] +02:36:21 [ 7] [ 10] [0319193412] +02:36:21 [ 11] [ 6] [026966] +02:36:21 [ 37] [ 12] [57902026966] +02:36:21 [ 70] [ 3] [301] +02:36:21 ============================================================================ +02:36:21 + + +waiting on router queue for slot.... +02:36:21 Sending to : +02:36:21 ============================================================================ +02:36:21 ============================================================================ +02:36:21 Slot Id : <447> +02:36:21 Transaction Type : RESPONSE +02:36:21 Received From : +02:36:21 ============================================================================ +02:36:21 FNo. Len. Field Value +02:36:21 ============================================================================ +02:36:21 [ 1] [ 4] [0810] +02:36:21 [ 7] [ 10] [0319193412] +02:36:21 [ 11] [ 6] [026966] +02:36:21 [ 37] [ 12] [579020269660] +02:36:21 [ 39] [ 2] [00] +02:36:21 [ 70] [ 3] [810] +02:36:21 ============================================================================ +02:36:21 Calculate Source COMM Id = 4 +02:36:21 ============================================================================ +02:36:21 + + +waiting on router queue for slot.... +02:36:27 ============================================================================ +02:36:27 Slot Id : <450> +02:36:27 Transaction Type : REQUEST +02:36:27 Received From : +02:36:27 ============================================================================ +02:36:27 FNo. Len. Field Value +02:36:27 ============================================================================ +02:36:27 [ 1] [ 4] [0800] +02:36:27 [ 7] [ 10] [0319073534] +02:36:27 [ 11] [ 6] [153772] +02:36:27 [ 70] [ 3] [301] +02:36:27 ============================================================================ +02:36:27 + + +waiting on router queue for slot.... +02:36:27 Sending to : +02:36:27 ============================================================================ +02:36:27 ============================================================================ +02:36:27 Slot Id : <450> +02:36:27 Transaction Type : RESPONSE +02:36:27 Received From : +02:36:27 ============================================================================ +02:36:27 FNo. Len. Field Value +02:36:27 ============================================================================ +02:36:27 [ 1] [ 4] [0810] +02:36:27 [ 7] [ 10] [0319073534] +02:36:27 [ 11] [ 6] [153772] +02:36:27 [ 39] [ 2] [00] +02:36:27 [ 70] [ 3] [301] +02:36:27 ============================================================================ +02:36:27 Calculate Source COMM Id = 2 +02:36:27 ============================================================================ +02:36:27 + + +waiting on router queue for slot.... +02:36:37 ============================================================================ +02:36:37 Slot Id : <417> +02:36:37 Transaction Type : REQUEST +02:36:37 Received From : +02:36:37 ============================================================================ +02:36:37 FNo. Len. Field Value +02:36:37 ============================================================================ +02:36:37 [ 1] [ 4] [0800] +02:36:37 [ 2] [ 5] [02531] +02:36:37 [ 3] [ 6] [579028] +02:36:37 [ 7] [ 10] [0319193637] +02:36:37 [ 11] [ 6] [806563] +02:36:37 [ 15] [ 10] [0319193637] +02:36:37 [ 37] [ 11] [57902806563] +02:36:37 [ 70] [ 3] [001] +02:36:37 ============================================================================ +02:36:37 + + +waiting on router queue for slot.... +02:36:37 ============================================================================ +02:36:37 Slot Id : <417> +02:36:37 Transaction Type : RESPONSE +02:36:37 Received From : +02:36:37 ============================================================================ +02:36:37 FNo. Len. Field Value +02:36:37 ============================================================================ +02:36:37 [ 1] [ 4] [0810] +02:36:37 [ 7] [ 10] [0319193637] +02:36:37 [ 11] [ 6] [806563] +02:36:37 [ 15] [ 4] [0319] +02:36:37 [ 37] [ 12] [57902806563] +02:36:37 [ 39] [ 2] [00] +02:36:37 [ 70] [ 3] [001] +02:36:37 ============================================================================ +02:36:37 Sending to : +02:36:37 ============================================================================ +02:36:37 + + +waiting on router queue for slot.... +02:36:38 ============================================================================ +02:36:38 Slot Id : <386> +02:36:38 Transaction Type : REQUEST +02:36:38 Received From : +02:36:38 ============================================================================ +02:36:38 FNo. Len. Field Value +02:36:38 ============================================================================ +02:36:38 [ 1] [ 4] [0800] +02:36:38 [ 7] [ 10] [0319073545] +02:36:38 [ 11] [ 6] [153773] +02:36:38 [ 70] [ 3] [301] +02:36:38 ============================================================================ +02:36:38 + + +waiting on router queue for slot.... +02:36:38 Sending to : +02:36:38 ============================================================================ +02:36:38 ============================================================================ +02:36:38 Slot Id : <386> +02:36:38 Transaction Type : RESPONSE +02:36:38 Received From : +02:36:38 ============================================================================ +02:36:38 FNo. Len. Field Value +02:36:38 ============================================================================ +02:36:38 [ 1] [ 4] [0810] +02:36:38 [ 7] [ 10] [0319073545] +02:36:38 [ 11] [ 6] [153773] +02:36:38 [ 39] [ 2] [00] +02:36:38 [ 70] [ 3] [301] +02:36:38 ============================================================================ +02:36:38 Calculate Source COMM Id = 2 +02:36:38 ============================================================================ +02:36:38 + + +waiting on router queue for slot.... +02:36:49 ============================================================================ +02:36:49 Slot Id : <391> +02:36:49 Transaction Type : REQUEST +02:36:49 Received From : +02:36:49 ============================================================================ +02:36:49 FNo. Len. Field Value +02:36:49 ============================================================================ +02:36:49 [ 1] [ 4] [0800] +02:36:49 [ 7] [ 10] [0319073556] +02:36:49 [ 11] [ 6] [153774] +02:36:49 [ 70] [ 3] [301] +02:36:49 ============================================================================ +02:36:49 + + +waiting on router queue for slot.... +02:36:49 Sending to : +02:36:49 ============================================================================ +02:36:49 ============================================================================ +02:36:49 Slot Id : <391> +02:36:49 Transaction Type : RESPONSE +02:36:49 Received From : +02:36:49 ============================================================================ +02:36:49 FNo. Len. Field Value +02:36:49 ============================================================================ +02:36:49 [ 1] [ 4] [0810] +02:36:49 [ 7] [ 10] [0319073556] +02:36:49 [ 11] [ 6] [153774] +02:36:49 [ 39] [ 2] [00] +02:36:49 [ 70] [ 3] [301] +02:36:49 ============================================================================ +02:36:49 Calculate Source COMM Id = 2 +02:36:49 ============================================================================ +02:36:49 + + +waiting on router queue for slot.... +02:36:59 ============================================================================ +02:36:59 Slot Id : <377> +02:36:59 Transaction Type : REQUEST +02:36:59 Received From : +02:36:59 ============================================================================ +02:36:59 FNo. Len. Field Value +02:36:59 ============================================================================ +02:36:59 [ 1] [ 4] [0800] +02:36:59 [ 7] [ 10] [0320094846] +02:36:59 [ 11] [ 6] [024846] +02:36:59 [ 37] [ 12] [57902024846] +02:36:59 [ 70] [ 3] [301] +02:36:59 ============================================================================ +02:36:59 + + +waiting on router queue for slot.... +02:36:59 Sending to : +02:36:59 ============================================================================ +02:36:59 ============================================================================ +02:36:59 Slot Id : <377> +02:36:59 Transaction Type : RESPONSE +02:36:59 Received From : +02:36:59 ============================================================================ +02:36:59 FNo. Len. Field Value +02:36:59 ============================================================================ +02:36:59 [ 1] [ 4] [0810] +02:36:59 [ 7] [ 10] [0320094846] +02:36:59 [ 11] [ 6] [024846] +02:36:59 [ 37] [ 12] [579020248460] +02:36:59 [ 39] [ 2] [00] +02:36:59 [ 70] [ 3] [810] +02:36:59 ============================================================================ +02:36:59 Calculate Source COMM Id = 6 +02:36:59 ============================================================================ +02:36:59 + + +waiting on router queue for slot.... +02:37:00 ============================================================================ +02:37:00 Slot Id : <405> +02:37:00 Transaction Type : REQUEST +02:37:00 Received From : +02:37:00 ============================================================================ +02:37:00 FNo. Len. Field Value +02:37:00 ============================================================================ +02:37:00 [ 1] [ 4] [0800] +02:37:00 [ 7] [ 10] [0319073607] +02:37:00 [ 11] [ 6] [153775] +02:37:00 [ 70] [ 3] [301] +02:37:00 ============================================================================ +02:37:00 + + +waiting on router queue for slot.... +02:37:00 Sending to : +02:37:00 ============================================================================ +02:37:00 ============================================================================ +02:37:00 Slot Id : <405> +02:37:00 Transaction Type : RESPONSE +02:37:00 Received From : +02:37:00 ============================================================================ +02:37:00 FNo. Len. Field Value +02:37:00 ============================================================================ +02:37:00 [ 1] [ 4] [0810] +02:37:00 [ 7] [ 10] [0319073607] +02:37:00 [ 11] [ 6] [153775] +02:37:00 [ 39] [ 2] [00] +02:37:00 [ 70] [ 3] [301] +02:37:00 ============================================================================ +02:37:00 Calculate Source COMM Id = 2 +02:37:00 ============================================================================ +02:37:00 + + +waiting on router queue for slot.... +02:37:10 ============================================================================ +02:37:10 Slot Id : <443> +02:37:10 Transaction Type : REQUEST +02:37:10 Received From : +02:37:10 ============================================================================ +02:37:10 FNo. Len. Field Value +02:37:10 ============================================================================ +02:37:10 [ 1] [ 4] [0800] +02:37:10 [ 7] [ 10] [0319073618] +02:37:10 [ 11] [ 6] [153776] +02:37:10 [ 70] [ 3] [301] +02:37:10 ============================================================================ +02:37:10 + + +waiting on router queue for slot.... +02:37:10 Sending to : +02:37:10 ============================================================================ +02:37:10 ============================================================================ +02:37:10 Slot Id : <443> +02:37:10 Transaction Type : RESPONSE +02:37:10 Received From : +02:37:10 ============================================================================ +02:37:10 FNo. Len. Field Value +02:37:10 ============================================================================ +02:37:10 [ 1] [ 4] [0810] +02:37:10 [ 7] [ 10] [0319073618] +02:37:10 [ 11] [ 6] [153776] +02:37:10 [ 39] [ 2] [00] +02:37:10 [ 70] [ 3] [301] +02:37:10 ============================================================================ +02:37:10 Calculate Source COMM Id = 2 +02:37:10 ============================================================================ +02:37:10 + + +waiting on router queue for slot.... +02:37:26 ============================================================================ +02:37:26 Slot Id : <456> +02:37:26 Transaction Type : REQUEST +02:37:26 Received From : +02:37:26 ============================================================================ +02:37:26 FNo. Len. Field Value +02:37:26 ============================================================================ +02:37:26 [ 1] [ 4] [0800] +02:37:26 [ 7] [ 10] [0319073633] +02:37:26 [ 11] [ 6] [153777] +02:37:26 [ 70] [ 3] [301] +02:37:26 ============================================================================ +02:37:26 + + +waiting on router queue for slot.... +02:37:26 Sending to : +02:37:26 ============================================================================ +02:37:26 ============================================================================ +02:37:26 Slot Id : <456> +02:37:26 Transaction Type : RESPONSE +02:37:26 Received From : +02:37:26 ============================================================================ +02:37:26 FNo. Len. Field Value +02:37:26 ============================================================================ +02:37:26 [ 1] [ 4] [0810] +02:37:26 [ 7] [ 10] [0319073633] +02:37:26 [ 11] [ 6] [153777] +02:37:26 [ 39] [ 2] [00] +02:37:26 [ 70] [ 3] [301] +02:37:26 ============================================================================ +02:37:26 Calculate Source COMM Id = 2 +02:37:26 ============================================================================ +02:37:26 + + +waiting on router queue for slot.... +02:37:37 ============================================================================ +02:37:37 Slot Id : <446> +02:37:37 Transaction Type : REQUEST +02:37:37 Received From : +02:37:37 ============================================================================ +02:37:37 FNo. Len. Field Value +02:37:37 ============================================================================ +02:37:37 [ 1] [ 4] [0800] +02:37:37 [ 7] [ 10] [0319073644] +02:37:37 [ 11] [ 6] [153778] +02:37:37 [ 70] [ 3] [301] +02:37:37 ============================================================================ +02:37:37 + + +waiting on router queue for slot.... +02:37:37 Sending to : +02:37:37 ============================================================================ +02:37:37 ============================================================================ +02:37:37 Slot Id : <446> +02:37:37 Transaction Type : RESPONSE +02:37:37 Received From : +02:37:37 ============================================================================ +02:37:37 FNo. Len. Field Value +02:37:37 ============================================================================ +02:37:37 [ 1] [ 4] [0810] +02:37:37 [ 7] [ 10] [0319073644] +02:37:37 [ 11] [ 6] [153778] +02:37:37 [ 39] [ 2] [00] +02:37:37 [ 70] [ 3] [301] +02:37:37 ============================================================================ +02:37:37 Calculate Source COMM Id = 2 +02:37:37 ============================================================================ +02:37:37 + + +waiting on router queue for slot.... +02:37:39 ============================================================================ +02:37:39 Slot Id : <435> +02:37:39 Transaction Type : REQUEST +02:37:39 Received From : +02:37:39 ============================================================================ +02:37:39 FNo. Len. Field Value +02:37:39 ============================================================================ +02:37:39 [ 1] [ 4] [0800] +02:37:39 [ 2] [ 5] [02531] +02:37:39 [ 3] [ 6] [579028] +02:37:39 [ 7] [ 10] [0319193739] +02:37:39 [ 11] [ 6] [806564] +02:37:39 [ 15] [ 10] [0319193739] +02:37:39 [ 37] [ 11] [57902806564] +02:37:39 [ 70] [ 3] [001] +02:37:39 ============================================================================ +02:37:39 + + +waiting on router queue for slot.... +02:37:39 ============================================================================ +02:37:39 Slot Id : <435> +02:37:39 Transaction Type : RESPONSE +02:37:39 Received From : +02:37:39 ============================================================================ +02:37:39 FNo. Len. Field Value +02:37:39 ============================================================================ +02:37:39 [ 1] [ 4] [0810] +02:37:39 [ 7] [ 10] [0319193739] +02:37:39 [ 11] [ 6] [806564] +02:37:39 [ 15] [ 4] [0319] +02:37:39 [ 37] [ 12] [57902806564] +02:37:39 [ 39] [ 2] [00] +02:37:39 [ 70] [ 3] [001] +02:37:39 ============================================================================ +02:37:39 Sending to : +02:37:39 ============================================================================ +02:37:39 + + +waiting on router queue for slot.... +02:37:47 ============================================================================ +02:37:47 Slot Id : <404> +02:37:47 Transaction Type : REQUEST +02:37:47 Received From : +02:37:47 ============================================================================ +02:37:47 FNo. Len. Field Value +02:37:47 ============================================================================ +02:37:47 [ 1] [ 4] [0800] +02:37:47 [ 7] [ 10] [0319073654] +02:37:47 [ 11] [ 6] [153779] +02:37:47 [ 70] [ 3] [301] +02:37:47 ============================================================================ +02:37:47 + + +waiting on router queue for slot.... +02:37:47 Sending to : +02:37:47 ============================================================================ +02:37:47 ============================================================================ +02:37:47 Slot Id : <404> +02:37:47 Transaction Type : RESPONSE +02:37:47 Received From : +02:37:47 ============================================================================ +02:37:47 FNo. Len. Field Value +02:37:47 ============================================================================ +02:37:47 [ 1] [ 4] [0810] +02:37:47 [ 7] [ 10] [0319073654] +02:37:47 [ 11] [ 6] [153779] +02:37:47 [ 39] [ 2] [00] +02:37:47 [ 70] [ 3] [301] +02:37:47 ============================================================================ +02:37:47 Calculate Source COMM Id = 2 +02:37:47 ============================================================================ +02:37:47 + + +waiting on router queue for slot.... +02:37:57 ============================================================================ +02:37:57 Slot Id : <424> +02:37:57 Transaction Type : REQUEST +02:37:57 Received From : +02:37:57 ============================================================================ +02:37:57 FNo. Len. Field Value +02:37:57 ============================================================================ +02:37:57 [ 1] [ 4] [0800] +02:37:57 [ 7] [ 10] [0319073704] +02:37:57 [ 11] [ 6] [153780] +02:37:57 [ 70] [ 3] [301] +02:37:57 ============================================================================ +02:37:57 + + +waiting on router queue for slot.... +02:37:57 Sending to : +02:37:57 ============================================================================ +02:37:57 ============================================================================ +02:37:57 Slot Id : <424> +02:37:57 Transaction Type : RESPONSE +02:37:57 Received From : +02:37:57 ============================================================================ +02:37:57 FNo. Len. Field Value +02:37:57 ============================================================================ +02:37:57 [ 1] [ 4] [0810] +02:37:57 [ 7] [ 10] [0319073704] +02:37:57 [ 11] [ 6] [153780] +02:37:57 [ 39] [ 2] [00] +02:37:57 [ 70] [ 3] [301] +02:37:57 ============================================================================ +02:37:57 Calculate Source COMM Id = 2 +02:37:57 ============================================================================ +02:37:57 + + +waiting on router queue for slot.... +02:37:59 ============================================================================ +02:37:59 Slot Id : <442> +02:37:59 Transaction Type : REQUEST +02:37:59 Received From : +02:37:59 ============================================================================ +02:37:59 FNo. Len. Field Value +02:37:59 ============================================================================ +02:37:59 [ 1] [ 4] [0800] +02:37:59 [ 7] [ 10] [0320023745] +02:37:59 [ 11] [ 6] [004517] +02:37:59 [ 37] [ 12] [507902004517] +02:37:59 [ 70] [ 3] [ ] +02:37:59 ============================================================================ +02:37:59 + + +waiting on router queue for slot.... +02:37:59 Sending to : +02:37:59 ============================================================================ +02:37:59 ============================================================================ +02:37:59 Slot Id : <442> +02:37:59 Transaction Type : RESPONSE +02:37:59 Received From : +02:37:59 ============================================================================ +02:37:59 FNo. Len. Field Value +02:37:59 ============================================================================ +02:37:59 [ 1] [ 4] [0810] +02:37:59 [ 7] [ 10] [0320023745] +02:37:59 [ 11] [ 6] [004517] +02:37:59 [ 37] [ 12] [507902004517] +02:37:59 [ 39] [ 2] [91] +02:37:59 [ 70] [ 3] [ ] +02:37:59 ============================================================================ +02:37:59 Calculate Source COMM Id = 3 +02:37:59 ============================================================================ +02:37:59 + + +waiting on router queue for slot.... +02:38:05 ============================================================================ +02:38:05 Slot Id : <429> +02:38:05 Transaction Type : REQUEST +02:38:05 Received From : +02:38:05 ============================================================================ +02:38:05 FNo. Len. Field Value +02:38:05 ============================================================================ +02:38:05 [ 1] [ 4] [0800] +02:38:05 [ 7] [ 10] [0320094951] +02:38:05 [ 11] [ 6] [024951] +02:38:05 [ 37] [ 12] [57902024951] +02:38:05 [ 70] [ 3] [301] +02:38:05 ============================================================================ +02:38:05 + + +waiting on router queue for slot.... +02:38:05 Sending to : +02:38:05 ============================================================================ +02:38:05 ============================================================================ +02:38:05 Slot Id : <429> +02:38:05 Transaction Type : RESPONSE +02:38:05 Received From : +02:38:05 ============================================================================ +02:38:05 FNo. Len. Field Value +02:38:05 ============================================================================ +02:38:05 [ 1] [ 4] [0810] +02:38:05 [ 7] [ 10] [0320094951] +02:38:05 [ 11] [ 6] [024951] +02:38:05 [ 37] [ 12] [579020249510] +02:38:05 [ 39] [ 2] [00] +02:38:05 [ 70] [ 3] [810] +02:38:05 ============================================================================ +02:38:05 Calculate Source COMM Id = 6 +02:38:05 ============================================================================ +02:38:05 + + +waiting on router queue for slot.... +02:38:09 ============================================================================ +02:38:09 Slot Id : <445> +02:38:09 Transaction Type : REQUEST +02:38:09 Received From : +02:38:09 ============================================================================ +02:38:09 FNo. Len. Field Value +02:38:09 ============================================================================ +02:38:09 [ 1] [ 4] [0800] +02:38:09 [ 7] [ 10] [0319073715] +02:38:09 [ 11] [ 6] [153781] +02:38:09 [ 70] [ 3] [301] +02:38:09 ============================================================================ +02:38:09 + + +waiting on router queue for slot.... +02:38:09 Sending to : +02:38:09 ============================================================================ +02:38:09 ============================================================================ +02:38:09 Slot Id : <445> +02:38:09 Transaction Type : RESPONSE +02:38:09 Received From : +02:38:09 ============================================================================ +02:38:09 FNo. Len. Field Value +02:38:09 ============================================================================ +02:38:09 [ 1] [ 4] [0810] +02:38:09 [ 7] [ 10] [0319073715] +02:38:09 [ 11] [ 6] [153781] +02:38:09 [ 39] [ 2] [00] +02:38:09 [ 70] [ 3] [301] +02:38:09 ============================================================================ +02:38:09 Calculate Source COMM Id = 2 +02:38:09 ============================================================================ +02:38:09 + + +waiting on router queue for slot.... +02:38:19 ============================================================================ +02:38:19 Slot Id : <438> +02:38:19 Transaction Type : REQUEST +02:38:19 Received From : +02:38:19 ============================================================================ +02:38:19 FNo. Len. Field Value +02:38:19 ============================================================================ +02:38:19 [ 1] [ 4] [0800] +02:38:19 [ 7] [ 10] [0319073726] +02:38:19 [ 11] [ 6] [153782] +02:38:19 [ 70] [ 3] [301] +02:38:19 ============================================================================ +02:38:19 + + +waiting on router queue for slot.... +02:38:19 Sending to : +02:38:19 ============================================================================ +02:38:19 ============================================================================ +02:38:19 Slot Id : <438> +02:38:19 Transaction Type : RESPONSE +02:38:19 Received From : +02:38:19 ============================================================================ +02:38:19 FNo. Len. Field Value +02:38:19 ============================================================================ +02:38:19 [ 1] [ 4] [0810] +02:38:19 [ 7] [ 10] [0319073726] +02:38:19 [ 11] [ 6] [153782] +02:38:19 [ 39] [ 2] [00] +02:38:19 [ 70] [ 3] [301] +02:38:19 ============================================================================ +02:38:19 Calculate Source COMM Id = 2 +02:38:19 ============================================================================ +02:38:19 + + +waiting on router queue for slot.... +02:38:35 ============================================================================ +02:38:35 Slot Id : <434> +02:38:35 Transaction Type : REQUEST +02:38:35 Received From : +02:38:35 ============================================================================ +02:38:35 FNo. Len. Field Value +02:38:35 ============================================================================ +02:38:35 [ 1] [ 4] [0800] +02:38:35 [ 7] [ 10] [0319073742] +02:38:35 [ 11] [ 6] [153783] +02:38:35 [ 70] [ 3] [301] +02:38:35 ============================================================================ +02:38:35 + + +waiting on router queue for slot.... +02:38:35 Sending to : +02:38:35 ============================================================================ +02:38:35 ============================================================================ +02:38:35 Slot Id : <434> +02:38:35 Transaction Type : RESPONSE +02:38:35 Received From : +02:38:35 ============================================================================ +02:38:35 FNo. Len. Field Value +02:38:35 ============================================================================ +02:38:35 [ 1] [ 4] [0810] +02:38:35 [ 7] [ 10] [0319073742] +02:38:35 [ 11] [ 6] [153783] +02:38:35 [ 39] [ 2] [00] +02:38:35 [ 70] [ 3] [301] +02:38:35 ============================================================================ +02:38:35 Calculate Source COMM Id = 2 +02:38:35 ============================================================================ +02:38:35 + + +waiting on router queue for slot.... +02:38:41 ============================================================================ +02:38:41 Slot Id : <428> +02:38:41 Transaction Type : REQUEST +02:38:41 Received From : +02:38:41 ============================================================================ +02:38:41 FNo. Len. Field Value +02:38:41 ============================================================================ +02:38:41 [ 1] [ 4] [0800] +02:38:41 [ 2] [ 5] [02531] +02:38:41 [ 3] [ 6] [579028] +02:38:41 [ 7] [ 10] [0319193841] +02:38:41 [ 11] [ 6] [806565] +02:38:41 [ 15] [ 10] [0319193841] +02:38:41 [ 37] [ 11] [57902806565] +02:38:41 [ 70] [ 3] [001] +02:38:41 ============================================================================ +02:38:41 + + +waiting on router queue for slot.... +02:38:41 ============================================================================ +02:38:41 Slot Id : <428> +02:38:41 Transaction Type : RESPONSE +02:38:41 Received From : +02:38:41 ============================================================================ +02:38:41 FNo. Len. Field Value +02:38:41 ============================================================================ +02:38:41 [ 1] [ 4] [0810] +02:38:41 [ 7] [ 10] [0319193841] +02:38:41 [ 11] [ 6] [806565] +02:38:41 [ 15] [ 4] [0319] +02:38:41 [ 37] [ 12] [57902806565] +02:38:41 [ 39] [ 2] [00] +02:38:41 [ 70] [ 3] [001] +02:38:41 ============================================================================ +02:38:41 Sending to : +02:38:41 ============================================================================ +02:38:41 + + +waiting on router queue for slot.... +02:38:50 ============================================================================ +02:38:50 Slot Id : <427> +02:38:50 Transaction Type : REQUEST +02:38:50 Received From : +02:38:50 ============================================================================ +02:38:50 FNo. Len. Field Value +02:38:50 ============================================================================ +02:38:50 [ 1] [ 4] [0800] +02:38:50 [ 7] [ 10] [0319073756] +02:38:50 [ 11] [ 6] [153784] +02:38:50 [ 70] [ 3] [301] +02:38:50 ============================================================================ +02:38:50 + + +waiting on router queue for slot.... +02:38:50 Sending to : +02:38:50 ============================================================================ +02:38:50 ============================================================================ +02:38:50 Slot Id : <427> +02:38:50 Transaction Type : RESPONSE +02:38:50 Received From : +02:38:50 ============================================================================ +02:38:50 FNo. Len. Field Value +02:38:50 ============================================================================ +02:38:50 [ 1] [ 4] [0810] +02:38:50 [ 7] [ 10] [0319073756] +02:38:50 [ 11] [ 6] [153784] +02:38:50 [ 39] [ 2] [00] +02:38:50 [ 70] [ 3] [301] +02:38:50 ============================================================================ +02:38:50 Calculate Source COMM Id = 2 +02:38:50 ============================================================================ +02:38:50 + + +waiting on router queue for slot.... +02:39:03 ============================================================================ +02:39:03 Slot Id : <426> +02:39:03 Transaction Type : REQUEST +02:39:03 Received From : +02:39:03 ============================================================================ +02:39:03 FNo. Len. Field Value +02:39:03 ============================================================================ +02:39:03 [ 1] [ 4] [0800] +02:39:03 [ 7] [ 10] [0319073810] +02:39:03 [ 11] [ 6] [153785] +02:39:03 [ 70] [ 3] [301] +02:39:03 ============================================================================ +02:39:03 + + +waiting on router queue for slot.... +02:39:03 Sending to : +02:39:03 ============================================================================ +02:39:03 ============================================================================ +02:39:03 Slot Id : <426> +02:39:03 Transaction Type : RESPONSE +02:39:03 Received From : +02:39:03 ============================================================================ +02:39:03 FNo. Len. Field Value +02:39:03 ============================================================================ +02:39:03 [ 1] [ 4] [0810] +02:39:03 [ 7] [ 10] [0319073810] +02:39:03 [ 11] [ 6] [153785] +02:39:03 [ 39] [ 2] [00] +02:39:03 [ 70] [ 3] [301] +02:39:03 ============================================================================ +02:39:03 Calculate Source COMM Id = 2 +02:39:03 ============================================================================ +02:39:03 + + +waiting on router queue for slot.... +02:39:10 ============================================================================ +02:39:10 Slot Id : <431> +02:39:10 Transaction Type : REQUEST +02:39:10 Received From : +02:39:10 ============================================================================ +02:39:10 FNo. Len. Field Value +02:39:10 ============================================================================ +02:39:10 [ 1] [ 4] [0800] +02:39:10 [ 7] [ 10] [0320095056] +02:39:10 [ 11] [ 6] [025056] +02:39:10 [ 37] [ 12] [57902025056] +02:39:10 [ 70] [ 3] [301] +02:39:10 ============================================================================ +02:39:10 + + +waiting on router queue for slot.... +02:39:10 Sending to : +02:39:10 ============================================================================ +02:39:10 ============================================================================ +02:39:10 Slot Id : <431> +02:39:10 Transaction Type : RESPONSE +02:39:10 Received From : +02:39:10 ============================================================================ +02:39:10 FNo. Len. Field Value +02:39:10 ============================================================================ +02:39:10 [ 1] [ 4] [0810] +02:39:10 [ 7] [ 10] [0320095056] +02:39:10 [ 11] [ 6] [025056] +02:39:10 [ 37] [ 12] [579020250560] +02:39:10 [ 39] [ 2] [00] +02:39:10 [ 70] [ 3] [810] +02:39:10 ============================================================================ +02:39:10 Calculate Source COMM Id = 6 +02:39:10 ============================================================================ +02:39:10 + + +waiting on router queue for slot.... +02:39:14 ============================================================================ +02:39:14 Slot Id : <451> +02:39:14 Transaction Type : REQUEST +02:39:14 Received From : +02:39:14 ============================================================================ +02:39:14 FNo. Len. Field Value +02:39:14 ============================================================================ +02:39:14 [ 1] [ 4] [0800] +02:39:14 [ 7] [ 10] [0319073821] +02:39:14 [ 11] [ 6] [153786] +02:39:14 [ 70] [ 3] [301] +02:39:14 ============================================================================ +02:39:14 + + +waiting on router queue for slot.... +02:39:14 Sending to : +02:39:14 ============================================================================ +02:39:14 ============================================================================ +02:39:14 Slot Id : <451> +02:39:14 Transaction Type : RESPONSE +02:39:14 Received From : +02:39:14 ============================================================================ +02:39:14 FNo. Len. Field Value +02:39:14 ============================================================================ +02:39:14 [ 1] [ 4] [0810] +02:39:14 [ 7] [ 10] [0319073821] +02:39:14 [ 11] [ 6] [153786] +02:39:14 [ 39] [ 2] [00] +02:39:14 [ 70] [ 3] [301] +02:39:14 ============================================================================ +02:39:14 Calculate Source COMM Id = 2 +02:39:14 ============================================================================ +02:39:14 + + +waiting on router queue for slot.... +02:39:25 ============================================================================ +02:39:25 Slot Id : <457> +02:39:25 Transaction Type : REQUEST +02:39:25 Received From : +02:39:25 ============================================================================ +02:39:25 FNo. Len. Field Value +02:39:25 ============================================================================ +02:39:25 [ 1] [ 4] [0800] +02:39:25 [ 7] [ 10] [0319073832] +02:39:25 [ 11] [ 6] [153787] +02:39:25 [ 70] [ 3] [301] +02:39:25 ============================================================================ +02:39:25 + + +waiting on router queue for slot.... +02:39:25 Sending to : +02:39:25 ============================================================================ +02:39:25 ============================================================================ +02:39:25 Slot Id : <457> +02:39:25 Transaction Type : RESPONSE +02:39:25 Received From : +02:39:25 ============================================================================ +02:39:25 FNo. Len. Field Value +02:39:25 ============================================================================ +02:39:25 [ 1] [ 4] [0810] +02:39:25 [ 7] [ 10] [0319073832] +02:39:25 [ 11] [ 6] [153787] +02:39:25 [ 39] [ 2] [00] +02:39:25 [ 70] [ 3] [301] +02:39:25 ============================================================================ +02:39:25 Calculate Source COMM Id = 2 +02:39:25 ============================================================================ +02:39:25 + + +waiting on router queue for slot.... +02:39:35 ============================================================================ +02:39:35 Slot Id : <422> +02:39:35 Transaction Type : REQUEST +02:39:35 Received From : +02:39:35 ============================================================================ +02:39:35 FNo. Len. Field Value +02:39:35 ============================================================================ +02:39:35 [ 1] [ 4] [0800] +02:39:35 [ 7] [ 10] [0319073842] +02:39:35 [ 11] [ 6] [153788] +02:39:35 [ 70] [ 3] [301] +02:39:35 ============================================================================ +02:39:35 + + +waiting on router queue for slot.... +02:39:35 Sending to : +02:39:35 ============================================================================ +02:39:35 ============================================================================ +02:39:35 Slot Id : <422> +02:39:35 Transaction Type : RESPONSE +02:39:35 Received From : +02:39:35 ============================================================================ +02:39:35 FNo. Len. Field Value +02:39:35 ============================================================================ +02:39:35 [ 1] [ 4] [0810] +02:39:35 [ 7] [ 10] [0319073842] +02:39:35 [ 11] [ 6] [153788] +02:39:35 [ 39] [ 2] [00] +02:39:35 [ 70] [ 3] [301] +02:39:35 ============================================================================ +02:39:35 Calculate Source COMM Id = 2 +02:39:35 ============================================================================ +02:39:35 + + +waiting on router queue for slot.... +02:39:43 ============================================================================ +02:39:43 Slot Id : <462> +02:39:43 Transaction Type : REQUEST +02:39:43 Received From : +02:39:43 ============================================================================ +02:39:43 FNo. Len. Field Value +02:39:43 ============================================================================ +02:39:43 [ 1] [ 4] [0800] +02:39:43 [ 2] [ 5] [02531] +02:39:43 [ 3] [ 6] [579028] +02:39:43 [ 7] [ 10] [0319193943] +02:39:43 [ 11] [ 6] [806566] +02:39:43 [ 15] [ 10] [0319193943] +02:39:43 [ 37] [ 11] [57902806566] +02:39:43 [ 70] [ 3] [001] +02:39:43 ============================================================================ +02:39:43 + + +waiting on router queue for slot.... +02:39:43 ============================================================================ +02:39:43 Slot Id : <462> +02:39:43 Transaction Type : RESPONSE +02:39:43 Received From : +02:39:43 ============================================================================ +02:39:43 FNo. Len. Field Value +02:39:43 ============================================================================ +02:39:43 [ 1] [ 4] [0810] +02:39:43 [ 7] [ 10] [0319193943] +02:39:43 [ 11] [ 6] [806566] +02:39:43 [ 15] [ 4] [0319] +02:39:43 [ 37] [ 12] [57902806566] +02:39:43 [ 39] [ 2] [00] +02:39:43 [ 70] [ 3] [001] +02:39:43 ============================================================================ +02:39:43 Sending to : +02:39:43 ============================================================================ +02:39:43 + + +waiting on router queue for slot.... +02:39:46 ============================================================================ +02:39:46 Slot Id : <465> +02:39:46 Transaction Type : REQUEST +02:39:46 Received From : +02:39:46 ============================================================================ +02:39:46 FNo. Len. Field Value +02:39:46 ============================================================================ +02:39:46 [ 1] [ 4] [0800] +02:39:46 [ 7] [ 10] [0319073853] +02:39:46 [ 11] [ 6] [153789] +02:39:46 [ 70] [ 3] [301] +02:39:46 ============================================================================ +02:39:46 + + +waiting on router queue for slot.... +02:39:46 Sending to : +02:39:46 ============================================================================ +02:39:46 ============================================================================ +02:39:46 Slot Id : <465> +02:39:46 Transaction Type : RESPONSE +02:39:46 Received From : +02:39:46 ============================================================================ +02:39:46 FNo. Len. Field Value +02:39:46 ============================================================================ +02:39:46 [ 1] [ 4] [0810] +02:39:46 [ 7] [ 10] [0319073853] +02:39:46 [ 11] [ 6] [153789] +02:39:46 [ 39] [ 2] [00] +02:39:46 [ 70] [ 3] [301] +02:39:46 ============================================================================ +02:39:46 Calculate Source COMM Id = 2 +02:39:46 ============================================================================ +02:39:46 + + +waiting on router queue for slot.... +02:39:56 ============================================================================ +02:39:56 Slot Id : <444> +02:39:56 Transaction Type : REQUEST +02:39:56 Received From : +02:39:56 ============================================================================ +02:39:56 FNo. Len. Field Value +02:39:56 ============================================================================ +02:39:56 [ 1] [ 4] [0800] +02:39:56 [ 7] [ 10] [0319194742] +02:39:56 [ 11] [ 6] [088268] +02:39:56 [ 37] [ 12] [57902088268] +02:39:56 [ 70] [ 3] [301] +02:39:56 ============================================================================ +02:39:56 + + +waiting on router queue for slot.... +02:39:56 Sending to : +02:39:56 ============================================================================ +02:39:56 ============================================================================ +02:39:56 Slot Id : <444> +02:39:56 Transaction Type : RESPONSE +02:39:56 Received From : +02:39:56 ============================================================================ +02:39:56 FNo. Len. Field Value +02:39:56 ============================================================================ +02:39:56 [ 1] [ 4] [0810] +02:39:56 [ 7] [ 10] [0319194742] +02:39:56 [ 11] [ 6] [088268] +02:39:56 [ 37] [ 12] [579020882680] +02:39:56 [ 39] [ 2] [00] +02:39:56 [ 70] [ 3] [810] +02:39:56 ============================================================================ +02:39:56 Calculate Source COMM Id = 1 +02:39:56 ============================================================================ +02:39:56 + + +waiting on router queue for slot.... +02:39:57 ============================================================================ +02:39:57 Slot Id : <421> +02:39:57 Transaction Type : REQUEST +02:39:57 Received From : +02:39:57 ============================================================================ +02:39:57 FNo. Len. Field Value +02:39:57 ============================================================================ +02:39:57 [ 1] [ 4] [0800] +02:39:57 [ 7] [ 10] [0319073904] +02:39:57 [ 11] [ 6] [153790] +02:39:57 [ 70] [ 3] [301] +02:39:57 ============================================================================ +02:39:57 + + +waiting on router queue for slot.... +02:39:57 Sending to : +02:39:57 ============================================================================ +02:39:57 ============================================================================ +02:39:57 Slot Id : <421> +02:39:57 Transaction Type : RESPONSE +02:39:57 Received From : +02:39:57 ============================================================================ +02:39:57 FNo. Len. Field Value +02:39:57 ============================================================================ +02:39:57 [ 1] [ 4] [0810] +02:39:57 [ 7] [ 10] [0319073904] +02:39:57 [ 11] [ 6] [153790] +02:39:57 [ 39] [ 2] [00] +02:39:57 [ 70] [ 3] [301] +02:39:57 ============================================================================ +02:39:57 Calculate Source COMM Id = 2 +02:39:57 ============================================================================ +02:39:57 + + +waiting on router queue for slot.... +02:40:07 ============================================================================ +02:40:07 Slot Id : <439> +02:40:07 Transaction Type : REQUEST +02:40:07 Received From : +02:40:07 ============================================================================ +02:40:07 FNo. Len. Field Value +02:40:07 ============================================================================ +02:40:07 [ 1] [ 4] [0800] +02:40:07 [ 7] [ 10] [0319073914] +02:40:07 [ 11] [ 6] [153791] +02:40:07 [ 70] [ 3] [301] +02:40:07 ============================================================================ +02:40:07 + + +waiting on router queue for slot.... +02:40:07 Sending to : +02:40:07 ============================================================================ +02:40:07 ============================================================================ +02:40:07 Slot Id : <439> +02:40:07 Transaction Type : RESPONSE +02:40:07 Received From : +02:40:07 ============================================================================ +02:40:07 FNo. Len. Field Value +02:40:07 ============================================================================ +02:40:07 [ 1] [ 4] [0810] +02:40:07 [ 7] [ 10] [0319073914] +02:40:07 [ 11] [ 6] [153791] +02:40:07 [ 39] [ 2] [00] +02:40:07 [ 70] [ 3] [301] +02:40:07 ============================================================================ +02:40:07 Calculate Source COMM Id = 2 +02:40:07 ============================================================================ +02:40:07 + + +waiting on router queue for slot.... +02:40:15 ============================================================================ +02:40:15 Slot Id : <458> +02:40:15 Transaction Type : REQUEST +02:40:15 Received From : +02:40:15 ============================================================================ +02:40:15 FNo. Len. Field Value +02:40:15 ============================================================================ +02:40:15 [ 1] [ 4] [0800] +02:40:15 [ 7] [ 10] [0320095201] +02:40:15 [ 11] [ 6] [025201] +02:40:15 [ 37] [ 12] [57902025201] +02:40:15 [ 70] [ 3] [301] +02:40:15 ============================================================================ +02:40:15 + + +waiting on router queue for slot.... +02:40:15 Sending to : +02:40:15 ============================================================================ +02:40:15 ============================================================================ +02:40:15 Slot Id : <458> +02:40:15 Transaction Type : RESPONSE +02:40:15 Received From : +02:40:15 ============================================================================ +02:40:15 FNo. Len. Field Value +02:40:15 ============================================================================ +02:40:15 [ 1] [ 4] [0810] +02:40:15 [ 7] [ 10] [0320095201] +02:40:15 [ 11] [ 6] [025201] +02:40:15 [ 37] [ 12] [579020252010] +02:40:15 [ 39] [ 2] [00] +02:40:15 [ 70] [ 3] [810] +02:40:15 ============================================================================ +02:40:15 Calculate Source COMM Id = 6 +02:40:15 ============================================================================ +02:40:15 + + +waiting on router queue for slot.... +02:40:19 ============================================================================ +02:40:19 Slot Id : <423> +02:40:19 Transaction Type : REQUEST +02:40:19 Received From : +02:40:19 ============================================================================ +02:40:19 FNo. Len. Field Value +02:40:19 ============================================================================ +02:40:19 [ 1] [ 4] [0800] +02:40:19 [ 7] [ 10] [0319073926] +02:40:19 [ 11] [ 6] [153792] +02:40:19 [ 70] [ 3] [301] +02:40:19 ============================================================================ +02:40:19 + + +waiting on router queue for slot.... +02:40:19 Sending to : +02:40:19 ============================================================================ +02:40:19 ============================================================================ +02:40:19 Slot Id : <423> +02:40:19 Transaction Type : RESPONSE +02:40:19 Received From : +02:40:19 ============================================================================ +02:40:19 FNo. Len. Field Value +02:40:19 ============================================================================ +02:40:19 [ 1] [ 4] [0810] +02:40:19 [ 7] [ 10] [0319073926] +02:40:19 [ 11] [ 6] [153792] +02:40:19 [ 39] [ 2] [00] +02:40:19 [ 70] [ 3] [301] +02:40:19 ============================================================================ +02:40:19 Calculate Source COMM Id = 2 +02:40:19 ============================================================================ +02:40:19 + + +waiting on router queue for slot.... +02:40:30 ============================================================================ +02:40:30 Slot Id : <466> +02:40:30 Transaction Type : REQUEST +02:40:30 Received From : +02:40:30 ============================================================================ +02:40:30 FNo. Len. Field Value +02:40:30 ============================================================================ +02:40:30 [ 1] [ 4] [0800] +02:40:30 [ 7] [ 10] [0319073937] +02:40:30 [ 11] [ 6] [153793] +02:40:30 [ 70] [ 3] [301] +02:40:30 ============================================================================ +02:40:30 + + +waiting on router queue for slot.... +02:40:30 Sending to : +02:40:30 ============================================================================ +02:40:30 ============================================================================ +02:40:30 Slot Id : <466> +02:40:30 Transaction Type : RESPONSE +02:40:30 Received From : +02:40:30 ============================================================================ +02:40:30 FNo. Len. Field Value +02:40:30 ============================================================================ +02:40:30 [ 1] [ 4] [0810] +02:40:30 [ 7] [ 10] [0319073937] +02:40:30 [ 11] [ 6] [153793] +02:40:30 [ 39] [ 2] [00] +02:40:30 [ 70] [ 3] [301] +02:40:30 ============================================================================ +02:40:30 Calculate Source COMM Id = 2 +02:40:30 ============================================================================ +02:40:30 + + +waiting on router queue for slot.... +02:40:41 ============================================================================ +02:40:41 Slot Id : <436> +02:40:41 Transaction Type : REQUEST +02:40:41 Received From : +02:40:41 ============================================================================ +02:40:41 FNo. Len. Field Value +02:40:41 ============================================================================ +02:40:41 [ 1] [ 4] [0800] +02:40:41 [ 7] [ 10] [0319073948] +02:40:41 [ 11] [ 6] [153794] +02:40:41 [ 70] [ 3] [301] +02:40:41 ============================================================================ +02:40:41 + + +waiting on router queue for slot.... +02:40:41 Sending to : +02:40:41 ============================================================================ +02:40:41 ============================================================================ +02:40:41 Slot Id : <436> +02:40:41 Transaction Type : RESPONSE +02:40:41 Received From : +02:40:41 ============================================================================ +02:40:41 FNo. Len. Field Value +02:40:41 ============================================================================ +02:40:41 [ 1] [ 4] [0810] +02:40:41 [ 7] [ 10] [0319073948] +02:40:41 [ 11] [ 6] [153794] +02:40:41 [ 39] [ 2] [00] +02:40:41 [ 70] [ 3] [301] +02:40:41 ============================================================================ +02:40:41 Calculate Source COMM Id = 2 +02:40:41 ============================================================================ +02:40:41 + + +waiting on router queue for slot.... +02:40:45 ============================================================================ +02:40:45 Slot Id : <459> +02:40:45 Transaction Type : REQUEST +02:40:45 Received From : +02:40:45 ============================================================================ +02:40:45 FNo. Len. Field Value +02:40:45 ============================================================================ +02:40:45 [ 1] [ 4] [0800] +02:40:45 [ 2] [ 5] [02531] +02:40:45 [ 3] [ 6] [579028] +02:40:45 [ 7] [ 10] [0319194045] +02:40:45 [ 11] [ 6] [806567] +02:40:45 [ 15] [ 10] [0319194045] +02:40:45 [ 37] [ 11] [57902806567] +02:40:45 [ 70] [ 3] [001] +02:40:45 ============================================================================ +02:40:45 + + +waiting on router queue for slot.... +02:40:45 ============================================================================ +02:40:45 Slot Id : <459> +02:40:45 Transaction Type : RESPONSE +02:40:45 Received From : +02:40:45 ============================================================================ +02:40:45 FNo. Len. Field Value +02:40:45 ============================================================================ +02:40:45 [ 1] [ 4] [0810] +02:40:45 [ 7] [ 10] [0319194045] +02:40:45 [ 11] [ 6] [806567] +02:40:45 [ 15] [ 4] [0319] +02:40:45 [ 37] [ 12] [57902806567] +02:40:45 [ 39] [ 2] [00] +02:40:45 [ 70] [ 3] [001] +02:40:45 ============================================================================ +02:40:45 Sending to : +02:40:45 ============================================================================ +02:40:45 + + +waiting on router queue for slot.... +02:40:52 ============================================================================ +02:40:52 Slot Id : <475> +02:40:52 Transaction Type : REQUEST +02:40:52 Received From : +02:40:52 ============================================================================ +02:40:52 FNo. Len. Field Value +02:40:52 ============================================================================ +02:40:52 [ 1] [ 4] [0800] +02:40:52 [ 7] [ 10] [0319073959] +02:40:52 [ 11] [ 6] [153795] +02:40:52 [ 70] [ 3] [301] +02:40:52 ============================================================================ +02:40:52 + + +waiting on router queue for slot.... +02:40:52 Sending to : +02:40:52 ============================================================================ +02:40:52 ============================================================================ +02:40:52 Slot Id : <475> +02:40:52 Transaction Type : RESPONSE +02:40:52 Received From : +02:40:52 ============================================================================ +02:40:52 FNo. Len. Field Value +02:40:52 ============================================================================ +02:40:52 [ 1] [ 4] [0810] +02:40:52 [ 7] [ 10] [0319073959] +02:40:52 [ 11] [ 6] [153795] +02:40:52 [ 39] [ 2] [00] +02:40:52 [ 70] [ 3] [301] +02:40:52 ============================================================================ +02:40:52 Calculate Source COMM Id = 2 +02:40:52 ============================================================================ +02:40:52 + + +waiting on router queue for slot.... +02:41:02 ============================================================================ +02:41:02 Slot Id : <452> +02:41:02 Transaction Type : REQUEST +02:41:02 Received From : +02:41:02 ============================================================================ +02:41:02 FNo. Len. Field Value +02:41:02 ============================================================================ +02:41:02 [ 1] [ 4] [0800] +02:41:02 [ 7] [ 10] [0319074009] +02:41:02 [ 11] [ 6] [153796] +02:41:02 [ 70] [ 3] [301] +02:41:02 ============================================================================ +02:41:02 + + +waiting on router queue for slot.... +02:41:02 Sending to : +02:41:02 ============================================================================ +02:41:02 ============================================================================ +02:41:02 Slot Id : <452> +02:41:02 Transaction Type : RESPONSE +02:41:02 Received From : +02:41:02 ============================================================================ +02:41:02 FNo. Len. Field Value +02:41:02 ============================================================================ +02:41:02 [ 1] [ 4] [0810] +02:41:02 [ 7] [ 10] [0319074009] +02:41:02 [ 11] [ 6] [153796] +02:41:02 [ 39] [ 2] [00] +02:41:02 [ 70] [ 3] [301] +02:41:02 ============================================================================ +02:41:02 Calculate Source COMM Id = 2 +02:41:02 ============================================================================ +02:41:02 + + +waiting on router queue for slot.... +02:41:18 ============================================================================ +02:41:18 Slot Id : <468> +02:41:18 Transaction Type : REQUEST +02:41:18 Received From : +02:41:18 ============================================================================ +02:41:18 FNo. Len. Field Value +02:41:18 ============================================================================ +02:41:18 [ 1] [ 4] [0800] +02:41:18 [ 7] [ 10] [0319074025] +02:41:18 [ 11] [ 6] [153797] +02:41:18 [ 70] [ 3] [301] +02:41:18 ============================================================================ +02:41:18 + + +waiting on router queue for slot.... +02:41:18 Sending to : +02:41:18 ============================================================================ +02:41:18 ============================================================================ +02:41:18 Slot Id : <468> +02:41:18 Transaction Type : RESPONSE +02:41:18 Received From : +02:41:18 ============================================================================ +02:41:18 FNo. Len. Field Value +02:41:18 ============================================================================ +02:41:18 [ 1] [ 4] [0810] +02:41:18 [ 7] [ 10] [0319074025] +02:41:18 [ 11] [ 6] [153797] +02:41:18 [ 39] [ 2] [00] +02:41:18 [ 70] [ 3] [301] +02:41:18 ============================================================================ +02:41:18 Calculate Source COMM Id = 2 +02:41:18 ============================================================================ +02:41:18 + + +waiting on router queue for slot.... +02:41:20 ============================================================================ +02:41:20 Slot Id : <449> +02:41:20 Transaction Type : REQUEST +02:41:20 Received From : +02:41:20 ============================================================================ +02:41:20 FNo. Len. Field Value +02:41:20 ============================================================================ +02:41:20 [ 1] [ 4] [0800] +02:41:20 [ 7] [ 10] [0320095306] +02:41:20 [ 11] [ 6] [025306] +02:41:20 [ 37] [ 12] [57902025306] +02:41:20 [ 70] [ 3] [301] +02:41:20 ============================================================================ +02:41:20 + + +waiting on router queue for slot.... +02:41:20 Sending to : +02:41:20 ============================================================================ +02:41:20 ============================================================================ +02:41:20 Slot Id : <449> +02:41:20 Transaction Type : RESPONSE +02:41:20 Received From : +02:41:20 ============================================================================ +02:41:20 FNo. Len. Field Value +02:41:20 ============================================================================ +02:41:20 [ 1] [ 4] [0810] +02:41:20 [ 7] [ 10] [0320095306] +02:41:20 [ 11] [ 6] [025306] +02:41:20 [ 37] [ 12] [579020253060] +02:41:20 [ 39] [ 2] [00] +02:41:20 [ 70] [ 3] [810] +02:41:20 ============================================================================ +02:41:20 Calculate Source COMM Id = 6 +02:41:20 ============================================================================ +02:41:20 + + +waiting on router queue for slot.... +02:41:21 ============================================================================ +02:41:21 Slot Id : <455> +02:41:21 Transaction Type : REQUEST +02:41:21 Received From : +02:41:21 ============================================================================ +02:41:21 FNo. Len. Field Value +02:41:21 ============================================================================ +02:41:21 [ 1] [ 4] [0800] +02:41:21 [ 7] [ 10] [0319193912] +02:41:21 [ 11] [ 6] [017448] +02:41:21 [ 37] [ 12] [57902017448] +02:41:21 [ 70] [ 3] [301] +02:41:21 ============================================================================ +02:41:21 + + +waiting on router queue for slot.... +02:41:21 Sending to : +02:41:21 ============================================================================ +02:41:21 ============================================================================ +02:41:21 Slot Id : <455> +02:41:21 Transaction Type : RESPONSE +02:41:21 Received From : +02:41:21 ============================================================================ +02:41:21 FNo. Len. Field Value +02:41:21 ============================================================================ +02:41:21 [ 1] [ 4] [0810] +02:41:21 [ 7] [ 10] [0319193912] +02:41:21 [ 11] [ 6] [017448] +02:41:21 [ 37] [ 12] [579020174480] +02:41:21 [ 39] [ 2] [00] +02:41:21 [ 70] [ 3] [810] +02:41:21 ============================================================================ +02:41:21 Calculate Source COMM Id = 4 +02:41:21 ============================================================================ +02:41:21 + + +waiting on router queue for slot.... +02:41:28 ============================================================================ +02:41:28 Slot Id : <440> +02:41:28 Transaction Type : REQUEST +02:41:28 Received From : +02:41:28 ============================================================================ +02:41:28 FNo. Len. Field Value +02:41:28 ============================================================================ +02:41:28 [ 1] [ 4] [0800] +02:41:28 [ 7] [ 10] [0319074036] +02:41:28 [ 11] [ 6] [153798] +02:41:28 [ 70] [ 3] [301] +02:41:28 ============================================================================ +02:41:28 + + +waiting on router queue for slot.... +02:41:28 Sending to : +02:41:28 ============================================================================ +02:41:28 ============================================================================ +02:41:28 Slot Id : <440> +02:41:28 Transaction Type : RESPONSE +02:41:28 Received From : +02:41:28 ============================================================================ +02:41:28 FNo. Len. Field Value +02:41:28 ============================================================================ +02:41:28 [ 1] [ 4] [0810] +02:41:28 [ 7] [ 10] [0319074036] +02:41:28 [ 11] [ 6] [153798] +02:41:28 [ 39] [ 2] [00] +02:41:28 [ 70] [ 3] [301] +02:41:28 ============================================================================ +02:41:28 Calculate Source COMM Id = 2 +02:41:28 ============================================================================ +02:41:28 + + +waiting on router queue for slot.... +02:41:39 ============================================================================ +02:41:39 Slot Id : <460> +02:41:39 Transaction Type : REQUEST +02:41:39 Received From : +02:41:39 ============================================================================ +02:41:39 FNo. Len. Field Value +02:41:39 ============================================================================ +02:41:39 [ 1] [ 4] [0800] +02:41:39 [ 7] [ 10] [0319074047] +02:41:39 [ 11] [ 6] [153799] +02:41:39 [ 70] [ 3] [301] +02:41:39 ============================================================================ +02:41:39 + + +waiting on router queue for slot.... +02:41:39 Sending to : +02:41:39 ============================================================================ +02:41:39 ============================================================================ +02:41:39 Slot Id : <460> +02:41:39 Transaction Type : RESPONSE +02:41:39 Received From : +02:41:39 ============================================================================ +02:41:39 FNo. Len. Field Value +02:41:39 ============================================================================ +02:41:39 [ 1] [ 4] [0810] +02:41:39 [ 7] [ 10] [0319074047] +02:41:39 [ 11] [ 6] [153799] +02:41:39 [ 39] [ 2] [00] +02:41:39 [ 70] [ 3] [301] +02:41:39 ============================================================================ +02:41:39 Calculate Source COMM Id = 2 +02:41:39 ============================================================================ +02:41:39 + + +waiting on router queue for slot.... +02:41:47 ============================================================================ +02:41:47 Slot Id : <432> +02:41:47 Transaction Type : REQUEST +02:41:47 Received From : +02:41:47 ============================================================================ +02:41:47 FNo. Len. Field Value +02:41:47 ============================================================================ +02:41:47 [ 1] [ 4] [0800] +02:41:47 [ 2] [ 5] [02531] +02:41:47 [ 3] [ 6] [579028] +02:41:47 [ 7] [ 10] [0319194147] +02:41:47 [ 11] [ 6] [806568] +02:41:47 [ 15] [ 10] [0319194147] +02:41:47 [ 37] [ 11] [57902806568] +02:41:47 [ 70] [ 3] [001] +02:41:47 ============================================================================ +02:41:47 + + +waiting on router queue for slot.... +02:41:47 ============================================================================ +02:41:47 Slot Id : <432> +02:41:47 Transaction Type : RESPONSE +02:41:47 Received From : +02:41:47 ============================================================================ +02:41:47 FNo. Len. Field Value +02:41:47 ============================================================================ +02:41:47 [ 1] [ 4] [0810] +02:41:47 [ 7] [ 10] [0319194147] +02:41:47 [ 11] [ 6] [806568] +02:41:47 [ 15] [ 4] [0319] +02:41:47 [ 37] [ 12] [57902806568] +02:41:47 [ 39] [ 2] [00] +02:41:47 [ 70] [ 3] [001] +02:41:47 ============================================================================ +02:41:47 Sending to : +02:41:47 ============================================================================ +02:41:47 + + +waiting on router queue for slot.... +02:41:50 ============================================================================ +02:41:50 Slot Id : <453> +02:41:50 Transaction Type : REQUEST +02:41:50 Received From : +02:41:50 ============================================================================ +02:41:50 FNo. Len. Field Value +02:41:50 ============================================================================ +02:41:50 [ 1] [ 4] [0800] +02:41:50 [ 7] [ 10] [0319074057] +02:41:50 [ 11] [ 6] [153800] +02:41:50 [ 70] [ 3] [301] +02:41:50 ============================================================================ +02:41:50 + + +waiting on router queue for slot.... +02:41:50 Sending to : +02:41:50 ============================================================================ +02:41:50 ============================================================================ +02:41:50 Slot Id : <453> +02:41:50 Transaction Type : RESPONSE +02:41:50 Received From : +02:41:50 ============================================================================ +02:41:50 FNo. Len. Field Value +02:41:50 ============================================================================ +02:41:50 [ 1] [ 4] [0810] +02:41:50 [ 7] [ 10] [0319074057] +02:41:50 [ 11] [ 6] [153800] +02:41:50 [ 39] [ 2] [00] +02:41:50 [ 70] [ 3] [301] +02:41:50 ============================================================================ +02:41:50 Calculate Source COMM Id = 2 +02:41:50 ============================================================================ +02:41:50 + + +waiting on router queue for slot.... +02:42:06 ============================================================================ +02:42:06 Slot Id : <482> +02:42:06 Transaction Type : REQUEST +02:42:06 Received From : +02:42:06 ============================================================================ +02:42:06 FNo. Len. Field Value +02:42:06 ============================================================================ +02:42:06 [ 1] [ 4] [0800] +02:42:06 [ 7] [ 10] [0319074113] +02:42:06 [ 11] [ 6] [153801] +02:42:06 [ 70] [ 3] [301] +02:42:06 ============================================================================ +02:42:06 + + +waiting on router queue for slot.... +02:42:06 Sending to : +02:42:06 ============================================================================ +02:42:06 ============================================================================ +02:42:06 Slot Id : <482> +02:42:06 Transaction Type : RESPONSE +02:42:06 Received From : +02:42:06 ============================================================================ +02:42:06 FNo. Len. Field Value +02:42:06 ============================================================================ +02:42:06 [ 1] [ 4] [0810] +02:42:06 [ 7] [ 10] [0319074113] +02:42:06 [ 11] [ 6] [153801] +02:42:06 [ 39] [ 2] [00] +02:42:06 [ 70] [ 3] [301] +02:42:06 ============================================================================ +02:42:06 Calculate Source COMM Id = 2 +02:42:06 ============================================================================ +02:42:06 + + +waiting on router queue for slot.... +02:42:18 ============================================================================ +02:42:18 Slot Id : <488> +02:42:18 Transaction Type : REQUEST +02:42:18 Received From : +02:42:18 ============================================================================ +02:42:18 FNo. Len. Field Value +02:42:18 ============================================================================ +02:42:18 [ 1] [ 4] [0800] +02:42:18 [ 7] [ 10] [0319074125] +02:42:18 [ 11] [ 6] [153802] +02:42:18 [ 70] [ 3] [301] +02:42:18 ============================================================================ +02:42:18 + + +waiting on router queue for slot.... +02:42:18 Sending to : +02:42:18 ============================================================================ +02:42:18 ============================================================================ +02:42:18 Slot Id : <488> +02:42:18 Transaction Type : RESPONSE +02:42:18 Received From : +02:42:18 ============================================================================ +02:42:18 FNo. Len. Field Value +02:42:18 ============================================================================ +02:42:18 [ 1] [ 4] [0810] +02:42:18 [ 7] [ 10] [0319074125] +02:42:18 [ 11] [ 6] [153802] +02:42:18 [ 39] [ 2] [00] +02:42:18 [ 70] [ 3] [301] +02:42:18 ============================================================================ +02:42:18 Calculate Source COMM Id = 2 +02:42:18 ============================================================================ +02:42:18 + + +waiting on router queue for slot.... +02:42:25 ============================================================================ +02:42:25 Slot Id : <470> +02:42:25 Transaction Type : REQUEST +02:42:25 Received From : +02:42:25 ============================================================================ +02:42:25 FNo. Len. Field Value +02:42:25 ============================================================================ +02:42:25 [ 1] [ 4] [0800] +02:42:25 [ 7] [ 10] [0320095411] +02:42:25 [ 11] [ 6] [025411] +02:42:25 [ 37] [ 12] [57902025411] +02:42:25 [ 70] [ 3] [301] +02:42:25 ============================================================================ +02:42:25 + + +waiting on router queue for slot.... +02:42:25 Sending to : +02:42:25 ============================================================================ +02:42:25 ============================================================================ +02:42:25 Slot Id : <470> +02:42:25 Transaction Type : RESPONSE +02:42:25 Received From : +02:42:25 ============================================================================ +02:42:25 FNo. Len. Field Value +02:42:25 ============================================================================ +02:42:25 [ 1] [ 4] [0810] +02:42:25 [ 7] [ 10] [0320095411] +02:42:25 [ 11] [ 6] [025411] +02:42:25 [ 37] [ 12] [579020254110] +02:42:25 [ 39] [ 2] [00] +02:42:25 [ 70] [ 3] [810] +02:42:25 ============================================================================ +02:42:25 Calculate Source COMM Id = 6 +02:42:25 ============================================================================ +02:42:25 + + +waiting on router queue for slot.... +02:42:28 ============================================================================ +02:42:28 Slot Id : <495> +02:42:28 Transaction Type : REQUEST +02:42:28 Received From : +02:42:28 ============================================================================ +02:42:28 FNo. Len. Field Value +02:42:28 ============================================================================ +02:42:28 [ 1] [ 4] [0800] +02:42:28 [ 7] [ 10] [0319074136] +02:42:28 [ 11] [ 6] [153803] +02:42:28 [ 70] [ 3] [301] +02:42:28 ============================================================================ +02:42:28 + + +waiting on router queue for slot.... +02:42:28 Sending to : +02:42:28 ============================================================================ +02:42:28 ============================================================================ +02:42:28 Slot Id : <495> +02:42:28 Transaction Type : RESPONSE +02:42:28 Received From : +02:42:28 ============================================================================ +02:42:28 FNo. Len. Field Value +02:42:28 ============================================================================ +02:42:28 [ 1] [ 4] [0810] +02:42:28 [ 7] [ 10] [0319074136] +02:42:28 [ 11] [ 6] [153803] +02:42:28 [ 39] [ 2] [00] +02:42:28 [ 70] [ 3] [301] +02:42:28 ============================================================================ +02:42:28 Calculate Source COMM Id = 2 +02:42:28 ============================================================================ +02:42:28 + + +waiting on router queue for slot.... +02:42:44 ============================================================================ +02:42:44 Slot Id : <490> +02:42:44 Transaction Type : REQUEST +02:42:44 Received From : +02:42:44 ============================================================================ +02:42:44 FNo. Len. Field Value +02:42:44 ============================================================================ +02:42:44 [ 1] [ 4] [0800] +02:42:44 [ 7] [ 10] [0319074151] +02:42:44 [ 11] [ 6] [153804] +02:42:44 [ 70] [ 3] [301] +02:42:44 ============================================================================ +02:42:44 + + +waiting on router queue for slot.... +02:42:44 Sending to : +02:42:44 ============================================================================ +02:42:44 ============================================================================ +02:42:44 Slot Id : <490> +02:42:44 Transaction Type : RESPONSE +02:42:44 Received From : +02:42:44 ============================================================================ +02:42:44 FNo. Len. Field Value +02:42:44 ============================================================================ +02:42:44 [ 1] [ 4] [0810] +02:42:44 [ 7] [ 10] [0319074151] +02:42:44 [ 11] [ 6] [153804] +02:42:44 [ 39] [ 2] [00] +02:42:44 [ 70] [ 3] [301] +02:42:44 ============================================================================ +02:42:44 Calculate Source COMM Id = 2 +02:42:44 ============================================================================ +02:42:44 + + +waiting on router queue for slot.... +02:42:49 ============================================================================ +02:42:49 Slot Id : <463> +02:42:49 Transaction Type : REQUEST +02:42:49 Received From : +02:42:49 ============================================================================ +02:42:49 FNo. Len. Field Value +02:42:49 ============================================================================ +02:42:49 [ 1] [ 4] [0800] +02:42:49 [ 2] [ 5] [02531] +02:42:49 [ 3] [ 6] [579028] +02:42:49 [ 7] [ 10] [0319194249] +02:42:49 [ 11] [ 6] [806569] +02:42:49 [ 15] [ 10] [0319194249] +02:42:49 [ 37] [ 11] [57902806569] +02:42:49 [ 70] [ 3] [001] +02:42:49 ============================================================================ +02:42:49 + + +waiting on router queue for slot.... +02:42:49 ============================================================================ +02:42:49 Slot Id : <463> +02:42:49 Transaction Type : RESPONSE +02:42:49 Received From : +02:42:49 ============================================================================ +02:42:49 FNo. Len. Field Value +02:42:49 ============================================================================ +02:42:49 [ 1] [ 4] [0810] +02:42:49 [ 7] [ 10] [0319194249] +02:42:49 [ 11] [ 6] [806569] +02:42:49 [ 15] [ 4] [0319] +02:42:49 [ 37] [ 12] [57902806569] +02:42:49 [ 39] [ 2] [00] +02:42:49 [ 70] [ 3] [001] +02:42:49 ============================================================================ +02:42:49 Sending to : +02:42:49 ============================================================================ +02:42:49 + + +waiting on router queue for slot.... +02:43:00 ============================================================================ +02:43:00 Slot Id : <448> +02:43:00 Transaction Type : REQUEST +02:43:00 Received From : +02:43:00 ============================================================================ +02:43:00 FNo. Len. Field Value +02:43:00 ============================================================================ +02:43:00 [ 1] [ 4] [0800] +02:43:00 [ 7] [ 10] [0319074207] +02:43:00 [ 11] [ 6] [153805] +02:43:00 [ 70] [ 3] [301] +02:43:00 ============================================================================ +02:43:00 + + +waiting on router queue for slot.... +02:43:00 Sending to : +02:43:00 ============================================================================ +02:43:00 ============================================================================ +02:43:00 Slot Id : <448> +02:43:00 Transaction Type : RESPONSE +02:43:00 Received From : +02:43:00 ============================================================================ +02:43:00 FNo. Len. Field Value +02:43:00 ============================================================================ +02:43:00 [ 1] [ 4] [0810] +02:43:00 [ 7] [ 10] [0319074207] +02:43:00 [ 11] [ 6] [153805] +02:43:00 [ 39] [ 2] [00] +02:43:00 [ 70] [ 3] [301] +02:43:00 ============================================================================ +02:43:00 Calculate Source COMM Id = 2 +02:43:00 ============================================================================ +02:43:00 + + +waiting on router queue for slot.... +02:43:13 ============================================================================ +02:43:13 Slot Id : <484> +02:43:13 Transaction Type : REQUEST +02:43:13 Received From : +02:43:13 ============================================================================ +02:43:13 FNo. Len. Field Value +02:43:13 ============================================================================ +02:43:13 [ 1] [ 4] [0800] +02:43:13 [ 7] [ 10] [0319074218] +02:43:13 [ 11] [ 6] [153806] +02:43:13 [ 70] [ 3] [301] +02:43:13 ============================================================================ +02:43:13 + + +waiting on router queue for slot.... +02:43:13 Sending to : +02:43:13 ============================================================================ +02:43:13 ============================================================================ +02:43:13 Slot Id : <484> +02:43:13 Transaction Type : RESPONSE +02:43:13 Received From : +02:43:13 ============================================================================ +02:43:13 FNo. Len. Field Value +02:43:13 ============================================================================ +02:43:13 [ 1] [ 4] [0810] +02:43:13 [ 7] [ 10] [0319074218] +02:43:13 [ 11] [ 6] [153806] +02:43:13 [ 39] [ 2] [00] +02:43:13 [ 70] [ 3] [301] +02:43:13 ============================================================================ +02:43:13 Calculate Source COMM Id = 2 +02:43:13 ============================================================================ +02:43:13 + + +waiting on router queue for slot.... +02:43:27 ============================================================================ +02:43:27 Slot Id : <471> +02:43:27 Transaction Type : REQUEST +02:43:27 Received From : +02:43:27 ============================================================================ +02:43:27 FNo. Len. Field Value +02:43:27 ============================================================================ +02:43:27 [ 1] [ 4] [0800] +02:43:27 [ 7] [ 10] [0319074234] +02:43:27 [ 11] [ 6] [153807] +02:43:27 [ 70] [ 3] [301] +02:43:27 ============================================================================ +02:43:27 + + +waiting on router queue for slot.... +02:43:27 Sending to : +02:43:27 ============================================================================ +02:43:27 ============================================================================ +02:43:27 Slot Id : <471> +02:43:27 Transaction Type : RESPONSE +02:43:27 Received From : +02:43:27 ============================================================================ +02:43:27 FNo. Len. Field Value +02:43:27 ============================================================================ +02:43:27 [ 1] [ 4] [0810] +02:43:27 [ 7] [ 10] [0319074234] +02:43:27 [ 11] [ 6] [153807] +02:43:27 [ 39] [ 2] [00] +02:43:27 [ 70] [ 3] [301] +02:43:27 ============================================================================ +02:43:27 Calculate Source COMM Id = 2 +02:43:27 ============================================================================ +02:43:27 + + +waiting on router queue for slot.... +02:43:30 ============================================================================ +02:43:30 Slot Id : <480> +02:43:30 Transaction Type : REQUEST +02:43:30 Received From : +02:43:30 ============================================================================ +02:43:30 FNo. Len. Field Value +02:43:30 ============================================================================ +02:43:30 [ 1] [ 4] [0800] +02:43:30 [ 7] [ 10] [0320095516] +02:43:30 [ 11] [ 6] [025516] +02:43:30 [ 37] [ 12] [57902025516] +02:43:30 [ 70] [ 3] [301] +02:43:30 ============================================================================ +02:43:30 + + +waiting on router queue for slot.... +02:43:30 Sending to : +02:43:30 ============================================================================ +02:43:30 ============================================================================ +02:43:30 Slot Id : <480> +02:43:30 Transaction Type : RESPONSE +02:43:30 Received From : +02:43:30 ============================================================================ +02:43:30 FNo. Len. Field Value +02:43:30 ============================================================================ +02:43:30 [ 1] [ 4] [0810] +02:43:30 [ 7] [ 10] [0320095516] +02:43:30 [ 11] [ 6] [025516] +02:43:30 [ 37] [ 12] [579020255160] +02:43:30 [ 39] [ 2] [00] +02:43:30 [ 70] [ 3] [810] +02:43:30 ============================================================================ +02:43:30 Calculate Source COMM Id = 6 +02:43:30 ============================================================================ +02:43:30 + + +waiting on router queue for slot.... +02:43:39 ============================================================================ +02:43:39 Slot Id : <479> +02:43:39 Transaction Type : REQUEST +02:43:39 Received From : +02:43:39 ============================================================================ +02:43:39 FNo. Len. Field Value +02:43:39 ============================================================================ +02:43:39 [ 1] [ 4] [0800] +02:43:39 [ 7] [ 10] [0319074245] +02:43:39 [ 11] [ 6] [153808] +02:43:39 [ 70] [ 3] [301] +02:43:39 ============================================================================ +02:43:39 + + +waiting on router queue for slot.... +02:43:39 Sending to : +02:43:39 ============================================================================ +02:43:39 ============================================================================ +02:43:39 Slot Id : <479> +02:43:39 Transaction Type : RESPONSE +02:43:39 Received From : +02:43:39 ============================================================================ +02:43:39 FNo. Len. Field Value +02:43:39 ============================================================================ +02:43:39 [ 1] [ 4] [0810] +02:43:39 [ 7] [ 10] [0319074245] +02:43:39 [ 11] [ 6] [153808] +02:43:39 [ 39] [ 2] [00] +02:43:39 [ 70] [ 3] [301] +02:43:39 ============================================================================ +02:43:39 Calculate Source COMM Id = 2 +02:43:39 ============================================================================ +02:43:39 + + +waiting on router queue for slot.... +02:43:51 ============================================================================ +02:43:51 Slot Id : <498> +02:43:51 Transaction Type : REQUEST +02:43:51 Received From : +02:43:51 ============================================================================ +02:43:51 FNo. Len. Field Value +02:43:51 ============================================================================ +02:43:51 [ 1] [ 4] [0800] +02:43:51 [ 2] [ 5] [02531] +02:43:51 [ 3] [ 6] [579028] +02:43:51 [ 7] [ 10] [0319194351] +02:43:51 [ 11] [ 6] [806570] +02:43:51 [ 15] [ 10] [0319194351] +02:43:51 [ 37] [ 11] [57902806570] +02:43:51 [ 70] [ 3] [001] +02:43:51 ============================================================================ +02:43:51 + + +waiting on router queue for slot.... +02:43:51 ============================================================================ +02:43:51 Slot Id : <498> +02:43:51 Transaction Type : RESPONSE +02:43:51 Received From : +02:43:51 ============================================================================ +02:43:51 FNo. Len. Field Value +02:43:51 ============================================================================ +02:43:51 [ 1] [ 4] [0810] +02:43:51 [ 7] [ 10] [0319194351] +02:43:51 [ 11] [ 6] [806570] +02:43:51 [ 15] [ 4] [0319] +02:43:51 [ 37] [ 12] [57902806570] +02:43:51 [ 39] [ 2] [00] +02:43:51 [ 70] [ 3] [001] +02:43:51 ============================================================================ +02:43:51 Sending to : +02:43:51 ============================================================================ +02:43:51 + + +waiting on router queue for slot.... +02:43:55 ============================================================================ +02:43:55 Slot Id : <0> +02:43:55 Transaction Type : REQUEST +02:43:55 Received From : +02:43:55 ============================================================================ +02:43:55 FNo. Len. Field Value +02:43:55 ============================================================================ +02:43:55 [ 1] [ 4] [0800] +02:43:55 [ 7] [ 10] [0319074301] +02:43:55 [ 11] [ 6] [153809] +02:43:55 [ 70] [ 3] [301] +02:43:55 ============================================================================ +02:43:55 + + +waiting on router queue for slot.... +02:43:55 Sending to : +02:43:55 ============================================================================ +02:43:55 ============================================================================ +02:43:55 Slot Id : <0> +02:43:55 Transaction Type : RESPONSE +02:43:55 Received From : +02:43:55 ============================================================================ +02:43:55 FNo. Len. Field Value +02:43:55 ============================================================================ +02:43:55 [ 1] [ 4] [0810] +02:43:55 [ 7] [ 10] [0319074301] +02:43:55 [ 11] [ 6] [153809] +02:43:55 [ 39] [ 2] [00] +02:43:55 [ 70] [ 3] [301] +02:43:55 ============================================================================ +02:43:55 Calculate Source COMM Id = 2 +02:43:55 ============================================================================ +02:43:55 + + +waiting on router queue for slot.... +02:44:11 ============================================================================ +02:44:11 Slot Id : <2> +02:44:11 Transaction Type : REQUEST +02:44:11 Received From : +02:44:11 ============================================================================ +02:44:11 FNo. Len. Field Value +02:44:11 ============================================================================ +02:44:11 [ 1] [ 4] [0800] +02:44:11 [ 7] [ 10] [0319074318] +02:44:11 [ 11] [ 6] [153810] +02:44:11 [ 70] [ 3] [301] +02:44:11 ============================================================================ +02:44:11 + + +waiting on router queue for slot.... +02:44:11 Sending to : +02:44:11 ============================================================================ +02:44:11 ============================================================================ +02:44:11 Slot Id : <2> +02:44:11 Transaction Type : RESPONSE +02:44:11 Received From : +02:44:11 ============================================================================ +02:44:11 FNo. Len. Field Value +02:44:11 ============================================================================ +02:44:11 [ 1] [ 4] [0810] +02:44:11 [ 7] [ 10] [0319074318] +02:44:11 [ 11] [ 6] [153810] +02:44:11 [ 39] [ 2] [00] +02:44:11 [ 70] [ 3] [301] +02:44:11 ============================================================================ +02:44:11 Calculate Source COMM Id = 2 +02:44:11 ============================================================================ +02:44:11 + + +waiting on router queue for slot.... +02:44:22 ============================================================================ +02:44:22 Slot Id : <493> +02:44:22 Transaction Type : REQUEST +02:44:22 Received From : +02:44:22 ============================================================================ +02:44:22 FNo. Len. Field Value +02:44:22 ============================================================================ +02:44:22 [ 1] [ 4] [0800] +02:44:22 [ 7] [ 10] [0319074329] +02:44:22 [ 11] [ 6] [153811] +02:44:22 [ 70] [ 3] [301] +02:44:22 ============================================================================ +02:44:22 + + +waiting on router queue for slot.... +02:44:22 Sending to : +02:44:22 ============================================================================ +02:44:22 ============================================================================ +02:44:22 Slot Id : <493> +02:44:22 Transaction Type : RESPONSE +02:44:22 Received From : +02:44:22 ============================================================================ +02:44:22 FNo. Len. Field Value +02:44:22 ============================================================================ +02:44:22 [ 1] [ 4] [0810] +02:44:22 [ 7] [ 10] [0319074329] +02:44:22 [ 11] [ 6] [153811] +02:44:22 [ 39] [ 2] [00] +02:44:22 [ 70] [ 3] [301] +02:44:22 ============================================================================ +02:44:22 Calculate Source COMM Id = 2 +02:44:22 ============================================================================ +02:44:22 + + +waiting on router queue for slot.... +02:44:33 ============================================================================ +02:44:33 Slot Id : <473> +02:44:33 Transaction Type : REQUEST +02:44:33 Received From : +02:44:33 ============================================================================ +02:44:33 FNo. Len. Field Value +02:44:33 ============================================================================ +02:44:33 [ 1] [ 4] [0800] +02:44:33 [ 7] [ 10] [0319074340] +02:44:33 [ 11] [ 6] [153812] +02:44:33 [ 70] [ 3] [301] +02:44:33 ============================================================================ +02:44:33 + + +waiting on router queue for slot.... +02:44:33 Sending to : +02:44:33 ============================================================================ +02:44:33 ============================================================================ +02:44:33 Slot Id : <473> +02:44:33 Transaction Type : RESPONSE +02:44:33 Received From : +02:44:33 ============================================================================ +02:44:33 FNo. Len. Field Value +02:44:33 ============================================================================ +02:44:33 [ 1] [ 4] [0810] +02:44:33 [ 7] [ 10] [0319074340] +02:44:33 [ 11] [ 6] [153812] +02:44:33 [ 39] [ 2] [00] +02:44:33 [ 70] [ 3] [301] +02:44:33 ============================================================================ +02:44:33 Calculate Source COMM Id = 2 +02:44:33 ============================================================================ +02:44:33 + + +waiting on router queue for slot.... +02:44:35 ============================================================================ +02:44:35 Slot Id : <1> +02:44:35 Transaction Type : REQUEST +02:44:35 Received From : +02:44:35 ============================================================================ +02:44:35 FNo. Len. Field Value +02:44:35 ============================================================================ +02:44:35 [ 1] [ 4] [0800] +02:44:35 [ 7] [ 10] [0320095621] +02:44:35 [ 11] [ 6] [025621] +02:44:35 [ 37] [ 12] [57902025621] +02:44:35 [ 70] [ 3] [301] +02:44:35 ============================================================================ +02:44:35 + + +waiting on router queue for slot.... +02:44:35 Sending to : +02:44:35 ============================================================================ +02:44:35 ============================================================================ +02:44:35 Slot Id : <1> +02:44:35 Transaction Type : RESPONSE +02:44:35 Received From : +02:44:35 ============================================================================ +02:44:35 FNo. Len. Field Value +02:44:35 ============================================================================ +02:44:35 [ 1] [ 4] [0810] +02:44:35 [ 7] [ 10] [0320095621] +02:44:35 [ 11] [ 6] [025621] +02:44:35 [ 37] [ 12] [579020256210] +02:44:35 [ 39] [ 2] [00] +02:44:35 [ 70] [ 3] [810] +02:44:35 ============================================================================ +02:44:35 Calculate Source COMM Id = 6 +02:44:35 ============================================================================ +02:44:35 + + +waiting on router queue for slot.... +02:44:49 ============================================================================ +02:44:49 Slot Id : <4> +02:44:49 Transaction Type : REQUEST +02:44:49 Received From : +02:44:49 ============================================================================ +02:44:49 FNo. Len. Field Value +02:44:49 ============================================================================ +02:44:49 [ 1] [ 4] [0800] +02:44:49 [ 7] [ 10] [0319074356] +02:44:49 [ 11] [ 6] [153813] +02:44:49 [ 70] [ 3] [301] +02:44:49 ============================================================================ +02:44:49 + + +waiting on router queue for slot.... +02:44:49 Sending to : +02:44:49 ============================================================================ +02:44:49 ============================================================================ +02:44:49 Slot Id : <4> +02:44:49 Transaction Type : RESPONSE +02:44:49 Received From : +02:44:49 ============================================================================ +02:44:49 FNo. Len. Field Value +02:44:49 ============================================================================ +02:44:49 [ 1] [ 4] [0810] +02:44:49 [ 7] [ 10] [0319074356] +02:44:49 [ 11] [ 6] [153813] +02:44:49 [ 39] [ 2] [00] +02:44:49 [ 70] [ 3] [301] +02:44:49 ============================================================================ +02:44:49 Calculate Source COMM Id = 2 +02:44:49 ============================================================================ +02:44:49 + + +waiting on router queue for slot.... +02:44:53 ============================================================================ +02:44:53 Slot Id : <474> +02:44:53 Transaction Type : REQUEST +02:44:53 Received From : +02:44:53 ============================================================================ +02:44:53 FNo. Len. Field Value +02:44:53 ============================================================================ +02:44:53 [ 1] [ 4] [0800] +02:44:53 [ 2] [ 5] [02531] +02:44:53 [ 3] [ 6] [579028] +02:44:53 [ 7] [ 10] [0319194453] +02:44:53 [ 11] [ 6] [806571] +02:44:53 [ 15] [ 10] [0319194453] +02:44:53 [ 37] [ 11] [57902806571] +02:44:53 [ 70] [ 3] [001] +02:44:53 ============================================================================ +02:44:53 + + +waiting on router queue for slot.... +02:44:53 ============================================================================ +02:44:53 Slot Id : <474> +02:44:53 Transaction Type : RESPONSE +02:44:53 Received From : +02:44:53 ============================================================================ +02:44:53 FNo. Len. Field Value +02:44:53 ============================================================================ +02:44:53 [ 1] [ 4] [0810] +02:44:53 [ 7] [ 10] [0319194453] +02:44:53 [ 11] [ 6] [806571] +02:44:53 [ 15] [ 4] [0319] +02:44:53 [ 37] [ 12] [57902806571] +02:44:53 [ 39] [ 2] [00] +02:44:53 [ 70] [ 3] [001] +02:44:53 ============================================================================ +02:44:53 Sending to : +02:44:53 ============================================================================ +02:44:53 + + +waiting on router queue for slot.... +02:44:56 ============================================================================ +02:44:56 Slot Id : <483> +02:44:56 Transaction Type : REQUEST +02:44:56 Received From : +02:44:56 ============================================================================ +02:44:56 FNo. Len. Field Value +02:44:56 ============================================================================ +02:44:56 [ 1] [ 4] [0800] +02:44:56 [ 7] [ 10] [0319195242] +02:44:56 [ 11] [ 6] [042411] +02:44:56 [ 37] [ 12] [57902042411] +02:44:56 [ 70] [ 3] [301] +02:44:56 ============================================================================ +02:44:56 + + +waiting on router queue for slot.... +02:44:56 Sending to : +02:44:56 ============================================================================ +02:44:56 ============================================================================ +02:44:56 Slot Id : <483> +02:44:56 Transaction Type : RESPONSE +02:44:56 Received From : +02:44:56 ============================================================================ +02:44:56 FNo. Len. Field Value +02:44:56 ============================================================================ +02:44:56 [ 1] [ 4] [0810] +02:44:56 [ 7] [ 10] [0319195242] +02:44:56 [ 11] [ 6] [042411] +02:44:56 [ 37] [ 12] [579020424110] +02:44:56 [ 39] [ 2] [00] +02:44:56 [ 70] [ 3] [810] +02:44:56 ============================================================================ +02:44:56 Calculate Source COMM Id = 1 +02:44:56 ============================================================================ +02:44:56 + + +waiting on router queue for slot.... +02:45:00 ============================================================================ +02:45:00 Slot Id : <476> +02:45:00 Transaction Type : REQUEST +02:45:00 Received From : +02:45:00 ============================================================================ +02:45:00 FNo. Len. Field Value +02:45:00 ============================================================================ +02:45:00 [ 1] [ 4] [0800] +02:45:00 [ 7] [ 10] [0319074407] +02:45:00 [ 11] [ 6] [153814] +02:45:00 [ 70] [ 3] [301] +02:45:00 ============================================================================ +02:45:00 + + +waiting on router queue for slot.... +02:45:00 Sending to : +02:45:00 ============================================================================ +02:45:00 ============================================================================ +02:45:00 Slot Id : <476> +02:45:00 Transaction Type : RESPONSE +02:45:00 Received From : +02:45:00 ============================================================================ +02:45:00 FNo. Len. Field Value +02:45:00 ============================================================================ +02:45:00 [ 1] [ 4] [0810] +02:45:00 [ 7] [ 10] [0319074407] +02:45:00 [ 11] [ 6] [153814] +02:45:00 [ 39] [ 2] [00] +02:45:00 [ 70] [ 3] [301] +02:45:00 ============================================================================ +02:45:00 Calculate Source COMM Id = 2 +02:45:00 ============================================================================ +02:45:00 + + +waiting on router queue for slot.... +02:45:15 ============================================================================ +02:45:15 Slot Id : <489> +02:45:15 Transaction Type : REQUEST +02:45:15 Received From : +02:45:15 ============================================================================ +02:45:15 FNo. Len. Field Value +02:45:15 ============================================================================ +02:45:15 [ 1] [ 4] [0800] +02:45:15 [ 7] [ 10] [0319074422] +02:45:15 [ 11] [ 6] [153815] +02:45:15 [ 70] [ 3] [301] +02:45:15 ============================================================================ +02:45:15 + + +waiting on router queue for slot.... +02:45:15 Sending to : +02:45:15 ============================================================================ +02:45:15 ============================================================================ +02:45:15 Slot Id : <489> +02:45:15 Transaction Type : RESPONSE +02:45:15 Received From : +02:45:15 ============================================================================ +02:45:15 FNo. Len. Field Value +02:45:15 ============================================================================ +02:45:15 [ 1] [ 4] [0810] +02:45:15 [ 7] [ 10] [0319074422] +02:45:15 [ 11] [ 6] [153815] +02:45:15 [ 39] [ 2] [00] +02:45:15 [ 70] [ 3] [301] +02:45:15 ============================================================================ +02:45:15 Calculate Source COMM Id = 2 +02:45:15 ============================================================================ +02:45:15 + + +waiting on router queue for slot.... +02:45:31 ============================================================================ +02:45:31 Slot Id : <477> +02:45:31 Transaction Type : REQUEST +02:45:31 Received From : +02:45:31 ============================================================================ +02:45:31 FNo. Len. Field Value +02:45:31 ============================================================================ +02:45:31 [ 1] [ 4] [0800] +02:45:31 [ 7] [ 10] [0319074438] +02:45:31 [ 11] [ 6] [153816] +02:45:31 [ 70] [ 3] [301] +02:45:31 ============================================================================ +02:45:31 + + +waiting on router queue for slot.... +02:45:31 Sending to : +02:45:31 ============================================================================ +02:45:31 ============================================================================ +02:45:31 Slot Id : <477> +02:45:31 Transaction Type : RESPONSE +02:45:31 Received From : +02:45:31 ============================================================================ +02:45:31 FNo. Len. Field Value +02:45:31 ============================================================================ +02:45:31 [ 1] [ 4] [0810] +02:45:31 [ 7] [ 10] [0319074438] +02:45:31 [ 11] [ 6] [153816] +02:45:31 [ 39] [ 2] [00] +02:45:31 [ 70] [ 3] [301] +02:45:31 ============================================================================ +02:45:31 Calculate Source COMM Id = 2 +02:45:31 ============================================================================ +02:45:31 + + +waiting on router queue for slot.... +02:45:40 ============================================================================ +02:45:40 Slot Id : <472> +02:45:40 Transaction Type : REQUEST +02:45:40 Received From : +02:45:40 ============================================================================ +02:45:40 FNo. Len. Field Value +02:45:40 ============================================================================ +02:45:40 [ 1] [ 4] [0800] +02:45:40 [ 7] [ 10] [0320095726] +02:45:40 [ 11] [ 6] [025726] +02:45:40 [ 37] [ 12] [57902025726] +02:45:40 [ 70] [ 3] [301] +02:45:40 ============================================================================ +02:45:40 + + +waiting on router queue for slot.... +02:45:40 Sending to : +02:45:40 ============================================================================ +02:45:40 ============================================================================ +02:45:40 Slot Id : <472> +02:45:40 Transaction Type : RESPONSE +02:45:40 Received From : +02:45:40 ============================================================================ +02:45:40 FNo. Len. Field Value +02:45:40 ============================================================================ +02:45:40 [ 1] [ 4] [0810] +02:45:40 [ 7] [ 10] [0320095726] +02:45:40 [ 11] [ 6] [025726] +02:45:40 [ 37] [ 12] [579020257260] +02:45:40 [ 39] [ 2] [00] +02:45:40 [ 70] [ 3] [810] +02:45:40 ============================================================================ +02:45:40 Calculate Source COMM Id = 6 +02:45:40 ============================================================================ +02:45:40 + + +waiting on router queue for slot.... +02:45:42 ============================================================================ +02:45:42 Slot Id : <486> +02:45:42 Transaction Type : REQUEST +02:45:42 Received From : +02:45:42 ============================================================================ +02:45:42 FNo. Len. Field Value +02:45:42 ============================================================================ +02:45:42 [ 1] [ 4] [0800] +02:45:42 [ 7] [ 10] [0319074449] +02:45:42 [ 11] [ 6] [153817] +02:45:42 [ 70] [ 3] [301] +02:45:42 ============================================================================ +02:45:42 + + +waiting on router queue for slot.... +02:45:42 Sending to : +02:45:42 ============================================================================ +02:45:42 ============================================================================ +02:45:42 Slot Id : <486> +02:45:42 Transaction Type : RESPONSE +02:45:42 Received From : +02:45:42 ============================================================================ +02:45:42 FNo. Len. Field Value +02:45:42 ============================================================================ +02:45:42 [ 1] [ 4] [0810] +02:45:42 [ 7] [ 10] [0319074449] +02:45:42 [ 11] [ 6] [153817] +02:45:42 [ 39] [ 2] [00] +02:45:42 [ 70] [ 3] [301] +02:45:42 ============================================================================ +02:45:42 Calculate Source COMM Id = 2 +02:45:42 ============================================================================ +02:45:42 + + +waiting on router queue for slot.... +02:45:53 ============================================================================ +02:45:53 Slot Id : <492> +02:45:53 Transaction Type : REQUEST +02:45:53 Received From : +02:45:53 ============================================================================ +02:45:53 FNo. Len. Field Value +02:45:53 ============================================================================ +02:45:53 [ 1] [ 4] [0800] +02:45:53 [ 7] [ 10] [0319074500] +02:45:53 [ 11] [ 6] [153818] +02:45:53 [ 70] [ 3] [301] +02:45:53 ============================================================================ +02:45:53 + + +waiting on router queue for slot.... +02:45:53 Sending to : +02:45:53 ============================================================================ +02:45:53 ============================================================================ +02:45:53 Slot Id : <492> +02:45:53 Transaction Type : RESPONSE +02:45:53 Received From : +02:45:53 ============================================================================ +02:45:53 FNo. Len. Field Value +02:45:53 ============================================================================ +02:45:53 [ 1] [ 4] [0810] +02:45:53 [ 7] [ 10] [0319074500] +02:45:53 [ 11] [ 6] [153818] +02:45:53 [ 39] [ 2] [00] +02:45:53 [ 70] [ 3] [301] +02:45:53 ============================================================================ +02:45:53 Calculate Source COMM Id = 2 +02:45:53 ============================================================================ +02:45:53 + + +waiting on router queue for slot.... +02:45:55 ============================================================================ +02:45:55 Slot Id : <6> +02:45:55 Transaction Type : REQUEST +02:45:55 Received From : +02:45:55 ============================================================================ +02:45:55 FNo. Len. Field Value +02:45:55 ============================================================================ +02:45:55 [ 1] [ 4] [0800] +02:45:55 [ 2] [ 5] [02531] +02:45:55 [ 3] [ 6] [579028] +02:45:55 [ 7] [ 10] [0319194555] +02:45:55 [ 11] [ 6] [806572] +02:45:55 [ 15] [ 10] [0319194555] +02:45:55 [ 37] [ 11] [57902806572] +02:45:55 [ 70] [ 3] [001] +02:45:55 ============================================================================ +02:45:55 + + +waiting on router queue for slot.... +02:45:55 ============================================================================ +02:45:55 Slot Id : <6> +02:45:55 Transaction Type : RESPONSE +02:45:55 Received From : +02:45:55 ============================================================================ +02:45:55 FNo. Len. Field Value +02:45:55 ============================================================================ +02:45:55 [ 1] [ 4] [0810] +02:45:55 [ 7] [ 10] [0319194555] +02:45:55 [ 11] [ 6] [806572] +02:45:55 [ 15] [ 4] [0319] +02:45:55 [ 37] [ 12] [57902806572] +02:45:55 [ 39] [ 2] [00] +02:45:55 [ 70] [ 3] [001] +02:45:55 ============================================================================ +02:45:55 Sending to : +02:45:55 ============================================================================ +02:45:55 + + +waiting on router queue for slot.... +02:46:05 ============================================================================ +02:46:05 Slot Id : <485> +02:46:05 Transaction Type : REQUEST +02:46:05 Received From : +02:46:05 ============================================================================ +02:46:05 FNo. Len. Field Value +02:46:05 ============================================================================ +02:46:05 [ 1] [ 4] [0800] +02:46:05 [ 7] [ 10] [0319074510] +02:46:05 [ 11] [ 6] [153819] +02:46:05 [ 70] [ 3] [301] +02:46:05 ============================================================================ +02:46:05 + + +waiting on router queue for slot.... +02:46:05 Sending to : +02:46:05 ============================================================================ +02:46:05 ============================================================================ +02:46:05 Slot Id : <485> +02:46:05 Transaction Type : RESPONSE +02:46:05 Received From : +02:46:05 ============================================================================ +02:46:05 FNo. Len. Field Value +02:46:05 ============================================================================ +02:46:05 [ 1] [ 4] [0810] +02:46:05 [ 7] [ 10] [0319074510] +02:46:05 [ 11] [ 6] [153819] +02:46:05 [ 39] [ 2] [00] +02:46:05 [ 70] [ 3] [301] +02:46:05 ============================================================================ +02:46:05 Calculate Source COMM Id = 2 +02:46:05 ============================================================================ +02:46:05 + + +waiting on router queue for slot.... +02:46:20 ============================================================================ +02:46:20 Slot Id : <454> +02:46:20 Transaction Type : REQUEST +02:46:20 Received From : +02:46:20 ============================================================================ +02:46:20 FNo. Len. Field Value +02:46:20 ============================================================================ +02:46:20 [ 1] [ 4] [0800] +02:46:20 [ 7] [ 10] [0319074526] +02:46:20 [ 11] [ 6] [153820] +02:46:20 [ 70] [ 3] [301] +02:46:20 ============================================================================ +02:46:20 + + +waiting on router queue for slot.... +02:46:20 Sending to : +02:46:20 ============================================================================ +02:46:20 ============================================================================ +02:46:20 Slot Id : <454> +02:46:20 Transaction Type : RESPONSE +02:46:20 Received From : +02:46:20 ============================================================================ +02:46:20 FNo. Len. Field Value +02:46:20 ============================================================================ +02:46:20 [ 1] [ 4] [0810] +02:46:20 [ 7] [ 10] [0319074526] +02:46:20 [ 11] [ 6] [153820] +02:46:20 [ 39] [ 2] [00] +02:46:20 [ 70] [ 3] [301] +02:46:20 ============================================================================ +02:46:20 Calculate Source COMM Id = 2 +02:46:20 ============================================================================ +02:46:20 + + +waiting on router queue for slot.... +02:46:21 ============================================================================ +02:46:21 Slot Id : <13> +02:46:21 Transaction Type : REQUEST +02:46:21 Received From : +02:46:21 ============================================================================ +02:46:21 FNo. Len. Field Value +02:46:21 ============================================================================ +02:46:21 [ 1] [ 4] [0800] +02:46:21 [ 7] [ 10] [0319194412] +02:46:21 [ 11] [ 6] [095504] +02:46:21 [ 37] [ 12] [57902095504] +02:46:21 [ 70] [ 3] [301] +02:46:21 ============================================================================ +02:46:21 + + +waiting on router queue for slot.... +02:46:21 Sending to : +02:46:21 ============================================================================ +02:46:21 ============================================================================ +02:46:21 Slot Id : <13> +02:46:21 Transaction Type : RESPONSE +02:46:21 Received From : +02:46:21 ============================================================================ +02:46:21 FNo. Len. Field Value +02:46:21 ============================================================================ +02:46:21 [ 1] [ 4] [0810] +02:46:21 [ 7] [ 10] [0319194412] +02:46:21 [ 11] [ 6] [095504] +02:46:21 [ 37] [ 12] [579020955040] +02:46:21 [ 39] [ 2] [00] +02:46:21 [ 70] [ 3] [810] +02:46:21 ============================================================================ +02:46:21 Calculate Source COMM Id = 4 +02:46:21 ============================================================================ +02:46:21 + + +waiting on router queue for slot.... +02:46:35 ============================================================================ +02:46:35 Slot Id : <14> +02:46:35 Transaction Type : REQUEST +02:46:35 Received From : +02:46:35 ============================================================================ +02:46:35 FNo. Len. Field Value +02:46:35 ============================================================================ +02:46:35 [ 1] [ 4] [0800] +02:46:35 [ 7] [ 10] [0319074542] +02:46:35 [ 11] [ 6] [153821] +02:46:35 [ 70] [ 3] [301] +02:46:35 ============================================================================ +02:46:35 + + +waiting on router queue for slot.... +02:46:35 Sending to : +02:46:35 ============================================================================ +02:46:35 ============================================================================ +02:46:35 Slot Id : <14> +02:46:35 Transaction Type : RESPONSE +02:46:35 Received From : +02:46:35 ============================================================================ +02:46:35 FNo. Len. Field Value +02:46:35 ============================================================================ +02:46:35 [ 1] [ 4] [0810] +02:46:35 [ 7] [ 10] [0319074542] +02:46:35 [ 11] [ 6] [153821] +02:46:35 [ 39] [ 2] [00] +02:46:35 [ 70] [ 3] [301] +02:46:35 ============================================================================ +02:46:35 Calculate Source COMM Id = 2 +02:46:35 ============================================================================ +02:46:35 + + +waiting on router queue for slot.... +02:46:45 ============================================================================ +02:46:45 Slot Id : <12> +02:46:45 Transaction Type : REQUEST +02:46:45 Received From : +02:46:45 ============================================================================ +02:46:45 FNo. Len. Field Value +02:46:45 ============================================================================ +02:46:45 [ 1] [ 4] [0800] +02:46:45 [ 7] [ 10] [0320095831] +02:46:45 [ 11] [ 6] [025831] +02:46:45 [ 37] [ 12] [57902025831] +02:46:45 [ 70] [ 3] [301] +02:46:45 ============================================================================ +02:46:45 + + +waiting on router queue for slot.... +02:46:45 Sending to : +02:46:45 ============================================================================ +02:46:45 ============================================================================ +02:46:45 Slot Id : <12> +02:46:45 Transaction Type : RESPONSE +02:46:45 Received From : +02:46:45 ============================================================================ +02:46:45 FNo. Len. Field Value +02:46:45 ============================================================================ +02:46:45 [ 1] [ 4] [0810] +02:46:45 [ 7] [ 10] [0320095831] +02:46:45 [ 11] [ 6] [025831] +02:46:45 [ 37] [ 12] [579020258310] +02:46:45 [ 39] [ 2] [00] +02:46:45 [ 70] [ 3] [810] +02:46:45 ============================================================================ +02:46:45 Calculate Source COMM Id = 6 +02:46:45 ============================================================================ +02:46:45 + + +waiting on router queue for slot.... +02:46:47 ============================================================================ +02:46:47 Slot Id : <16> +02:46:47 Transaction Type : REQUEST +02:46:47 Received From : +02:46:47 ============================================================================ +02:46:47 FNo. Len. Field Value +02:46:47 ============================================================================ +02:46:47 [ 1] [ 4] [0800] +02:46:47 [ 7] [ 10] [0319074554] +02:46:47 [ 11] [ 6] [153822] +02:46:47 [ 70] [ 3] [301] +02:46:47 ============================================================================ +02:46:47 + + +waiting on router queue for slot.... +02:46:47 Sending to : +02:46:47 ============================================================================ +02:46:47 ============================================================================ +02:46:47 Slot Id : <16> +02:46:47 Transaction Type : RESPONSE +02:46:47 Received From : +02:46:47 ============================================================================ +02:46:47 FNo. Len. Field Value +02:46:47 ============================================================================ +02:46:47 [ 1] [ 4] [0810] +02:46:47 [ 7] [ 10] [0319074554] +02:46:47 [ 11] [ 6] [153822] +02:46:47 [ 39] [ 2] [00] +02:46:47 [ 70] [ 3] [301] +02:46:47 ============================================================================ +02:46:47 Calculate Source COMM Id = 2 +02:46:47 ============================================================================ +02:46:47 + + +waiting on router queue for slot.... +02:46:57 ============================================================================ +02:46:57 Slot Id : <469> +02:46:57 Transaction Type : REQUEST +02:46:57 Received From : +02:46:57 ============================================================================ +02:46:57 FNo. Len. Field Value +02:46:57 ============================================================================ +02:46:57 [ 1] [ 4] [0800] +02:46:57 [ 2] [ 5] [02531] +02:46:57 [ 3] [ 6] [579028] +02:46:57 [ 7] [ 10] [0319194657] +02:46:57 [ 11] [ 6] [806573] +02:46:57 [ 15] [ 10] [0319194657] +02:46:57 [ 37] [ 11] [57902806573] +02:46:57 [ 70] [ 3] [001] +02:46:57 ============================================================================ +02:46:57 + + +waiting on router queue for slot.... +02:46:57 ============================================================================ +02:46:57 Slot Id : <469> +02:46:57 Transaction Type : RESPONSE +02:46:57 Received From : +02:46:57 ============================================================================ +02:46:57 FNo. Len. Field Value +02:46:57 ============================================================================ +02:46:57 [ 1] [ 4] [0810] +02:46:57 [ 7] [ 10] [0319194657] +02:46:57 [ 11] [ 6] [806573] +02:46:57 [ 15] [ 4] [0319] +02:46:57 [ 37] [ 12] [57902806573] +02:46:57 [ 39] [ 2] [00] +02:46:57 [ 70] [ 3] [001] +02:46:57 ============================================================================ +02:46:57 Sending to : +02:46:57 ============================================================================ +02:46:57 + + +waiting on router queue for slot.... +02:46:58 ============================================================================ +02:46:58 Slot Id : <494> +02:46:58 Transaction Type : REQUEST +02:46:58 Received From : +02:46:58 ============================================================================ +02:46:58 FNo. Len. Field Value +02:46:58 ============================================================================ +02:46:58 [ 1] [ 4] [0800] +02:46:58 [ 7] [ 10] [0319074605] +02:46:58 [ 11] [ 6] [153823] +02:46:58 [ 70] [ 3] [301] +02:46:58 ============================================================================ +02:46:58 + + +waiting on router queue for slot.... +02:46:58 Sending to : +02:46:58 ============================================================================ +02:46:58 ============================================================================ +02:46:58 Slot Id : <494> +02:46:58 Transaction Type : RESPONSE +02:46:58 Received From : +02:46:58 ============================================================================ +02:46:58 FNo. Len. Field Value +02:46:58 ============================================================================ +02:46:58 [ 1] [ 4] [0810] +02:46:58 [ 7] [ 10] [0319074605] +02:46:58 [ 11] [ 6] [153823] +02:46:58 [ 39] [ 2] [00] +02:46:58 [ 70] [ 3] [301] +02:46:58 ============================================================================ +02:46:58 Calculate Source COMM Id = 2 +02:46:58 ============================================================================ +02:46:58 + + +waiting on router queue for slot.... +02:47:08 ============================================================================ +02:47:08 Slot Id : <22> +02:47:08 Transaction Type : REQUEST +02:47:08 Received From : +02:47:08 ============================================================================ +02:47:08 FNo. Len. Field Value +02:47:08 ============================================================================ +02:47:08 [ 1] [ 4] [0800] +02:47:08 [ 7] [ 10] [0319074616] +02:47:08 [ 11] [ 6] [153824] +02:47:08 [ 70] [ 3] [301] +02:47:08 ============================================================================ +02:47:08 + + +waiting on router queue for slot.... +02:47:08 Sending to : +02:47:08 ============================================================================ +02:47:08 ============================================================================ +02:47:08 Slot Id : <22> +02:47:08 Transaction Type : RESPONSE +02:47:08 Received From : +02:47:08 ============================================================================ +02:47:08 FNo. Len. Field Value +02:47:08 ============================================================================ +02:47:08 [ 1] [ 4] [0810] +02:47:08 [ 7] [ 10] [0319074616] +02:47:08 [ 11] [ 6] [153824] +02:47:08 [ 39] [ 2] [00] +02:47:08 [ 70] [ 3] [301] +02:47:08 ============================================================================ +02:47:08 Calculate Source COMM Id = 2 +02:47:08 ============================================================================ +02:47:08 + + +waiting on router queue for slot.... +02:47:19 ============================================================================ +02:47:19 Slot Id : <491> +02:47:19 Transaction Type : REQUEST +02:47:19 Received From : +02:47:19 ============================================================================ +02:47:19 FNo. Len. Field Value +02:47:19 ============================================================================ +02:47:19 [ 1] [ 4] [0800] +02:47:19 [ 7] [ 10] [0319074626] +02:47:19 [ 11] [ 6] [153825] +02:47:19 [ 70] [ 3] [301] +02:47:19 ============================================================================ +02:47:19 + + +waiting on router queue for slot.... +02:47:19 Sending to : +02:47:19 ============================================================================ +02:47:19 ============================================================================ +02:47:19 Slot Id : <491> +02:47:19 Transaction Type : RESPONSE +02:47:19 Received From : +02:47:19 ============================================================================ +02:47:19 FNo. Len. Field Value +02:47:19 ============================================================================ +02:47:19 [ 1] [ 4] [0810] +02:47:19 [ 7] [ 10] [0319074626] +02:47:19 [ 11] [ 6] [153825] +02:47:19 [ 39] [ 2] [00] +02:47:19 [ 70] [ 3] [301] +02:47:19 ============================================================================ +02:47:19 Calculate Source COMM Id = 2 +02:47:19 ============================================================================ +02:47:19 + + +waiting on router queue for slot.... +02:47:30 ============================================================================ +02:47:30 Slot Id : <17> +02:47:30 Transaction Type : REQUEST +02:47:30 Received From : +02:47:30 ============================================================================ +02:47:30 FNo. Len. Field Value +02:47:30 ============================================================================ +02:47:30 [ 1] [ 4] [0800] +02:47:30 [ 7] [ 10] [0319074637] +02:47:30 [ 11] [ 6] [153826] +02:47:30 [ 70] [ 3] [301] +02:47:30 ============================================================================ +02:47:30 + + +waiting on router queue for slot.... +02:47:30 Sending to : +02:47:30 ============================================================================ +02:47:30 ============================================================================ +02:47:30 Slot Id : <17> +02:47:30 Transaction Type : RESPONSE +02:47:30 Received From : +02:47:30 ============================================================================ +02:47:30 FNo. Len. Field Value +02:47:30 ============================================================================ +02:47:30 [ 1] [ 4] [0810] +02:47:30 [ 7] [ 10] [0319074637] +02:47:30 [ 11] [ 6] [153826] +02:47:30 [ 39] [ 2] [00] +02:47:30 [ 70] [ 3] [301] +02:47:30 ============================================================================ +02:47:30 Calculate Source COMM Id = 2 +02:47:30 ============================================================================ +02:47:30 + + +waiting on router queue for slot.... +02:47:40 ============================================================================ +02:47:40 Slot Id : <499> +02:47:40 Transaction Type : REQUEST +02:47:40 Received From : +02:47:40 ============================================================================ +02:47:40 FNo. Len. Field Value +02:47:40 ============================================================================ +02:47:40 [ 1] [ 4] [0800] +02:47:40 [ 7] [ 10] [0319074647] +02:47:40 [ 11] [ 6] [153827] +02:47:40 [ 70] [ 3] [301] +02:47:40 ============================================================================ +02:47:40 + + +waiting on router queue for slot.... +02:47:40 Sending to : +02:47:40 ============================================================================ +02:47:40 ============================================================================ +02:47:40 Slot Id : <499> +02:47:40 Transaction Type : RESPONSE +02:47:40 Received From : +02:47:40 ============================================================================ +02:47:40 FNo. Len. Field Value +02:47:40 ============================================================================ +02:47:40 [ 1] [ 4] [0810] +02:47:40 [ 7] [ 10] [0319074647] +02:47:40 [ 11] [ 6] [153827] +02:47:40 [ 39] [ 2] [00] +02:47:40 [ 70] [ 3] [301] +02:47:40 ============================================================================ +02:47:40 Calculate Source COMM Id = 2 +02:47:40 ============================================================================ +02:47:40 + + +waiting on router queue for slot.... +02:47:50 ============================================================================ +02:47:50 Slot Id : <10> +02:47:50 Transaction Type : REQUEST +02:47:50 Received From : +02:47:50 ============================================================================ +02:47:50 FNo. Len. Field Value +02:47:50 ============================================================================ +02:47:50 [ 1] [ 4] [0800] +02:47:50 [ 7] [ 10] [0320095936] +02:47:50 [ 11] [ 6] [025936] +02:47:50 [ 37] [ 12] [57902025936] +02:47:50 [ 70] [ 3] [301] +02:47:50 ============================================================================ +02:47:50 + + +waiting on router queue for slot.... +02:47:50 Sending to : +02:47:50 ============================================================================ +02:47:50 ============================================================================ +02:47:50 Slot Id : <10> +02:47:50 Transaction Type : RESPONSE +02:47:50 Received From : +02:47:50 ============================================================================ +02:47:50 FNo. Len. Field Value +02:47:50 ============================================================================ +02:47:50 [ 1] [ 4] [0810] +02:47:50 [ 7] [ 10] [0320095936] +02:47:50 [ 11] [ 6] [025936] +02:47:50 [ 37] [ 12] [579020259360] +02:47:50 [ 39] [ 2] [00] +02:47:50 [ 70] [ 3] [810] +02:47:50 ============================================================================ +02:47:50 Calculate Source COMM Id = 6 +02:47:50 ============================================================================ +02:47:50 + + +waiting on router queue for slot.... +02:47:51 ============================================================================ +02:47:51 Slot Id : <31> +02:47:51 Transaction Type : REQUEST +02:47:51 Received From : +02:47:51 ============================================================================ +02:47:51 FNo. Len. Field Value +02:47:51 ============================================================================ +02:47:51 [ 1] [ 4] [0800] +02:47:51 [ 7] [ 10] [0319074658] +02:47:51 [ 11] [ 6] [153828] +02:47:51 [ 70] [ 3] [301] +02:47:51 ============================================================================ +02:47:51 + + +waiting on router queue for slot.... +02:47:51 Sending to : +02:47:51 ============================================================================ +02:47:51 ============================================================================ +02:47:51 Slot Id : <31> +02:47:51 Transaction Type : RESPONSE +02:47:51 Received From : +02:47:51 ============================================================================ +02:47:51 FNo. Len. Field Value +02:47:51 ============================================================================ +02:47:51 [ 1] [ 4] [0810] +02:47:51 [ 7] [ 10] [0319074658] +02:47:51 [ 11] [ 6] [153828] +02:47:51 [ 39] [ 2] [00] +02:47:51 [ 70] [ 3] [301] +02:47:51 ============================================================================ +02:47:51 Calculate Source COMM Id = 2 +02:47:51 ============================================================================ +02:47:51 + + +waiting on router queue for slot.... +02:47:59 ============================================================================ +02:47:59 Slot Id : <23> +02:47:59 Transaction Type : REQUEST +02:47:59 Received From : +02:47:59 ============================================================================ +02:47:59 FNo. Len. Field Value +02:47:59 ============================================================================ +02:47:59 [ 1] [ 4] [0800] +02:47:59 [ 2] [ 5] [02531] +02:47:59 [ 3] [ 6] [579028] +02:47:59 [ 7] [ 10] [0319194759] +02:47:59 [ 11] [ 6] [806574] +02:47:59 [ 15] [ 10] [0319194759] +02:47:59 [ 37] [ 11] [57902806574] +02:47:59 [ 70] [ 3] [001] +02:47:59 ============================================================================ +02:47:59 + + +waiting on router queue for slot.... +02:47:59 ============================================================================ +02:47:59 Slot Id : <23> +02:47:59 Transaction Type : RESPONSE +02:47:59 Received From : +02:47:59 ============================================================================ +02:47:59 FNo. Len. Field Value +02:47:59 ============================================================================ +02:47:59 [ 1] [ 4] [0810] +02:47:59 [ 7] [ 10] [0319194759] +02:47:59 [ 11] [ 6] [806574] +02:47:59 [ 15] [ 4] [0319] +02:47:59 [ 37] [ 12] [57902806574] +02:47:59 [ 39] [ 2] [00] +02:47:59 [ 70] [ 3] [001] +02:47:59 ============================================================================ +02:47:59 Sending to : +02:47:59 ============================================================================ +02:47:59 + + +waiting on router queue for slot.... +02:48:04 ============================================================================ +02:48:04 Slot Id : <3> +02:48:04 Transaction Type : REQUEST +02:48:04 Received From : +02:48:04 ============================================================================ +02:48:04 FNo. Len. Field Value +02:48:04 ============================================================================ +02:48:04 [ 1] [ 4] [0800] +02:48:04 [ 7] [ 10] [0319074710] +02:48:04 [ 11] [ 6] [153829] +02:48:04 [ 70] [ 3] [301] +02:48:04 ============================================================================ +02:48:04 + + +waiting on router queue for slot.... +02:48:04 Sending to : +02:48:04 ============================================================================ +02:48:04 ============================================================================ +02:48:04 Slot Id : <3> +02:48:04 Transaction Type : RESPONSE +02:48:04 Received From : +02:48:04 ============================================================================ +02:48:04 FNo. Len. Field Value +02:48:04 ============================================================================ +02:48:04 [ 1] [ 4] [0810] +02:48:04 [ 7] [ 10] [0319074710] +02:48:04 [ 11] [ 6] [153829] +02:48:04 [ 39] [ 2] [00] +02:48:04 [ 70] [ 3] [301] +02:48:04 ============================================================================ +02:48:04 Calculate Source COMM Id = 2 +02:48:04 ============================================================================ +02:48:04 + + +waiting on router queue for slot.... +02:48:19 ============================================================================ +02:48:19 Slot Id : <481> +02:48:19 Transaction Type : REQUEST +02:48:19 Received From : +02:48:19 ============================================================================ +02:48:19 FNo. Len. Field Value +02:48:19 ============================================================================ +02:48:19 [ 1] [ 4] [0800] +02:48:19 [ 7] [ 10] [0319074726] +02:48:19 [ 11] [ 6] [153830] +02:48:19 [ 70] [ 3] [301] +02:48:19 ============================================================================ +02:48:19 + + +waiting on router queue for slot.... +02:48:19 Sending to : +02:48:19 ============================================================================ +02:48:19 ============================================================================ +02:48:19 Slot Id : <481> +02:48:19 Transaction Type : RESPONSE +02:48:19 Received From : +02:48:19 ============================================================================ +02:48:19 FNo. Len. Field Value +02:48:19 ============================================================================ +02:48:19 [ 1] [ 4] [0810] +02:48:19 [ 7] [ 10] [0319074726] +02:48:19 [ 11] [ 6] [153830] +02:48:19 [ 39] [ 2] [00] +02:48:19 [ 70] [ 3] [301] +02:48:19 ============================================================================ +02:48:19 Calculate Source COMM Id = 2 +02:48:19 ============================================================================ +02:48:19 + + +waiting on router queue for slot.... +02:48:30 ============================================================================ +02:48:30 Slot Id : <29> +02:48:30 Transaction Type : REQUEST +02:48:30 Received From : +02:48:30 ============================================================================ +02:48:30 FNo. Len. Field Value +02:48:30 ============================================================================ +02:48:30 [ 1] [ 4] [0800] +02:48:30 [ 7] [ 10] [0319074737] +02:48:30 [ 11] [ 6] [153831] +02:48:30 [ 70] [ 3] [301] +02:48:30 ============================================================================ +02:48:30 + + +waiting on router queue for slot.... +02:48:30 Sending to : +02:48:30 ============================================================================ +02:48:30 ============================================================================ +02:48:30 Slot Id : <29> +02:48:30 Transaction Type : RESPONSE +02:48:30 Received From : +02:48:30 ============================================================================ +02:48:30 FNo. Len. Field Value +02:48:30 ============================================================================ +02:48:30 [ 1] [ 4] [0810] +02:48:30 [ 7] [ 10] [0319074737] +02:48:30 [ 11] [ 6] [153831] +02:48:30 [ 39] [ 2] [00] +02:48:30 [ 70] [ 3] [301] +02:48:30 ============================================================================ +02:48:30 Calculate Source COMM Id = 2 +02:48:30 ============================================================================ +02:48:30 + + +waiting on router queue for slot.... +02:48:45 ============================================================================ +02:48:45 Slot Id : <21> +02:48:45 Transaction Type : REQUEST +02:48:45 Received From : +02:48:45 ============================================================================ +02:48:45 FNo. Len. Field Value +02:48:45 ============================================================================ +02:48:45 [ 1] [ 4] [0800] +02:48:45 [ 7] [ 10] [0320024831] +02:48:45 [ 11] [ 6] [005700] +02:48:45 [ 37] [ 12] [507902005700] +02:48:45 [ 70] [ 3] [ ] +02:48:45 ============================================================================ +02:48:45 + + +waiting on router queue for slot.... +02:48:45 Sending to : +02:48:45 ============================================================================ +02:48:45 ============================================================================ +02:48:45 Slot Id : <21> +02:48:45 Transaction Type : RESPONSE +02:48:45 Received From : +02:48:45 ============================================================================ +02:48:45 FNo. Len. Field Value +02:48:45 ============================================================================ +02:48:45 [ 1] [ 4] [0810] +02:48:45 [ 7] [ 10] [0320024831] +02:48:45 [ 11] [ 6] [005700] +02:48:45 [ 37] [ 12] [507902005700] +02:48:45 [ 39] [ 2] [91] +02:48:45 [ 70] [ 3] [ ] +02:48:45 ============================================================================ +02:48:45 Calculate Source COMM Id = 3 +02:48:45 ============================================================================ +02:48:45 + + +waiting on router queue for slot.... +02:48:45 ============================================================================ +02:48:45 Slot Id : <7> +02:48:45 Transaction Type : REQUEST +02:48:45 Received From : +02:48:45 ============================================================================ +02:48:45 FNo. Len. Field Value +02:48:45 ============================================================================ +02:48:45 [ 1] [ 4] [0800] +02:48:45 [ 7] [ 10] [0319074752] +02:48:45 [ 11] [ 6] [153832] +02:48:45 [ 70] [ 3] [301] +02:48:45 ============================================================================ +02:48:45 + + +waiting on router queue for slot.... +02:48:45 Sending to : +02:48:45 ============================================================================ +02:48:45 ============================================================================ +02:48:45 Slot Id : <7> +02:48:45 Transaction Type : RESPONSE +02:48:45 Received From : +02:48:45 ============================================================================ +02:48:45 FNo. Len. Field Value +02:48:45 ============================================================================ +02:48:45 [ 1] [ 4] [0810] +02:48:45 [ 7] [ 10] [0319074752] +02:48:45 [ 11] [ 6] [153832] +02:48:45 [ 39] [ 2] [00] +02:48:45 [ 70] [ 3] [301] +02:48:45 ============================================================================ +02:48:45 Calculate Source COMM Id = 2 +02:48:45 ============================================================================ +02:48:45 + + +waiting on router queue for slot.... +02:48:55 ============================================================================ +02:48:55 Slot Id : <33> +02:48:55 Transaction Type : REQUEST +02:48:55 Received From : +02:48:55 ============================================================================ +02:48:55 FNo. Len. Field Value +02:48:55 ============================================================================ +02:48:55 [ 1] [ 4] [0800] +02:48:55 [ 7] [ 10] [0320100041] +02:48:55 [ 11] [ 6] [030041] +02:48:55 [ 37] [ 12] [57903030041] +02:48:55 [ 70] [ 3] [301] +02:48:55 ============================================================================ +02:48:55 + + +waiting on router queue for slot.... +02:48:55 Sending to : +02:48:55 ============================================================================ +02:48:55 ============================================================================ +02:48:55 Slot Id : <33> +02:48:55 Transaction Type : RESPONSE +02:48:55 Received From : +02:48:55 ============================================================================ +02:48:55 FNo. Len. Field Value +02:48:55 ============================================================================ +02:48:55 [ 1] [ 4] [0810] +02:48:55 [ 7] [ 10] [0320100041] +02:48:55 [ 11] [ 6] [030041] +02:48:55 [ 37] [ 12] [579030300410] +02:48:55 [ 39] [ 2] [00] +02:48:55 [ 70] [ 3] [810] +02:48:55 ============================================================================ +02:48:55 Calculate Source COMM Id = 6 +02:48:55 ============================================================================ +02:48:55 + + +waiting on router queue for slot.... +02:48:56 ============================================================================ +02:48:56 Slot Id : <11> +02:48:56 Transaction Type : REQUEST +02:48:56 Received From : +02:48:56 ============================================================================ +02:48:56 FNo. Len. Field Value +02:48:56 ============================================================================ +02:48:56 [ 1] [ 4] [0800] +02:48:56 [ 7] [ 10] [0319074803] +02:48:56 [ 11] [ 6] [153833] +02:48:56 [ 70] [ 3] [301] +02:48:56 ============================================================================ +02:48:56 + + +waiting on router queue for slot.... +02:48:56 Sending to : +02:48:56 ============================================================================ +02:48:56 ============================================================================ +02:48:56 Slot Id : <11> +02:48:56 Transaction Type : RESPONSE +02:48:56 Received From : +02:48:56 ============================================================================ +02:48:56 FNo. Len. Field Value +02:48:56 ============================================================================ +02:48:56 [ 1] [ 4] [0810] +02:48:56 [ 7] [ 10] [0319074803] +02:48:56 [ 11] [ 6] [153833] +02:48:56 [ 39] [ 2] [00] +02:48:56 [ 70] [ 3] [301] +02:48:56 ============================================================================ +02:48:56 Calculate Source COMM Id = 2 +02:48:56 ============================================================================ +02:48:56 + + +waiting on router queue for slot.... +02:49:01 ============================================================================ +02:49:01 Slot Id : <35> +02:49:01 Transaction Type : REQUEST +02:49:01 Received From : +02:49:01 ============================================================================ +02:49:01 FNo. Len. Field Value +02:49:01 ============================================================================ +02:49:01 [ 1] [ 4] [0800] +02:49:01 [ 2] [ 5] [02531] +02:49:01 [ 3] [ 6] [579028] +02:49:01 [ 7] [ 10] [0319194901] +02:49:01 [ 11] [ 6] [806575] +02:49:01 [ 15] [ 10] [0319194901] +02:49:01 [ 37] [ 11] [57902806575] +02:49:01 [ 70] [ 3] [001] +02:49:01 ============================================================================ +02:49:01 + + +waiting on router queue for slot.... +02:49:01 ============================================================================ +02:49:01 Slot Id : <35> +02:49:01 Transaction Type : RESPONSE +02:49:01 Received From : +02:49:01 ============================================================================ +02:49:01 FNo. Len. Field Value +02:49:01 ============================================================================ +02:49:01 [ 1] [ 4] [0810] +02:49:01 [ 7] [ 10] [0319194901] +02:49:01 [ 11] [ 6] [806575] +02:49:01 [ 15] [ 4] [0319] +02:49:01 [ 37] [ 12] [57902806575] +02:49:01 [ 39] [ 2] [00] +02:49:01 [ 70] [ 3] [001] +02:49:01 ============================================================================ +02:49:01 Sending to : +02:49:01 ============================================================================ +02:49:01 + + +waiting on router queue for slot.... +02:49:06 ============================================================================ +02:49:06 Slot Id : <496> +02:49:06 Transaction Type : REQUEST +02:49:06 Received From : +02:49:06 ============================================================================ +02:49:06 FNo. Len. Field Value +02:49:06 ============================================================================ +02:49:06 [ 1] [ 4] [0800] +02:49:06 [ 7] [ 10] [0319074814] +02:49:06 [ 11] [ 6] [153834] +02:49:06 [ 70] [ 3] [301] +02:49:06 ============================================================================ +02:49:06 + + +waiting on router queue for slot.... +02:49:06 Sending to : +02:49:06 ============================================================================ +02:49:06 ============================================================================ +02:49:06 Slot Id : <496> +02:49:06 Transaction Type : RESPONSE +02:49:06 Received From : +02:49:06 ============================================================================ +02:49:06 FNo. Len. Field Value +02:49:06 ============================================================================ +02:49:06 [ 1] [ 4] [0810] +02:49:06 [ 7] [ 10] [0319074814] +02:49:06 [ 11] [ 6] [153834] +02:49:06 [ 39] [ 2] [00] +02:49:06 [ 70] [ 3] [301] +02:49:06 ============================================================================ +02:49:06 Calculate Source COMM Id = 2 +02:49:06 ============================================================================ +02:49:06 + + +waiting on router queue for slot.... +02:49:17 ============================================================================ +02:49:17 Slot Id : <30> +02:49:17 Transaction Type : REQUEST +02:49:17 Received From : +02:49:17 ============================================================================ +02:49:17 FNo. Len. Field Value +02:49:17 ============================================================================ +02:49:17 [ 1] [ 4] [0800] +02:49:17 [ 7] [ 10] [0319074824] +02:49:17 [ 11] [ 6] [153835] +02:49:17 [ 70] [ 3] [301] +02:49:17 ============================================================================ +02:49:17 + + +waiting on router queue for slot.... +02:49:17 Sending to : +02:49:17 ============================================================================ +02:49:17 ============================================================================ +02:49:17 Slot Id : <30> +02:49:17 Transaction Type : RESPONSE +02:49:17 Received From : +02:49:17 ============================================================================ +02:49:17 FNo. Len. Field Value +02:49:17 ============================================================================ +02:49:17 [ 1] [ 4] [0810] +02:49:17 [ 7] [ 10] [0319074824] +02:49:17 [ 11] [ 6] [153835] +02:49:17 [ 39] [ 2] [00] +02:49:17 [ 70] [ 3] [301] +02:49:17 ============================================================================ +02:49:17 Calculate Source COMM Id = 2 +02:49:17 ============================================================================ +02:49:17 + + +waiting on router queue for slot.... +02:49:28 ============================================================================ +02:49:28 Slot Id : <36> +02:49:28 Transaction Type : REQUEST +02:49:28 Received From : +02:49:28 ============================================================================ +02:49:28 FNo. Len. Field Value +02:49:28 ============================================================================ +02:49:28 [ 1] [ 4] [0800] +02:49:28 [ 7] [ 10] [0319074835] +02:49:28 [ 11] [ 6] [153836] +02:49:28 [ 70] [ 3] [301] +02:49:28 ============================================================================ +02:49:28 + + +waiting on router queue for slot.... +02:49:28 Sending to : +02:49:28 ============================================================================ +02:49:28 ============================================================================ +02:49:28 Slot Id : <36> +02:49:28 Transaction Type : RESPONSE +02:49:28 Received From : +02:49:28 ============================================================================ +02:49:28 FNo. Len. Field Value +02:49:28 ============================================================================ +02:49:28 [ 1] [ 4] [0810] +02:49:28 [ 7] [ 10] [0319074835] +02:49:28 [ 11] [ 6] [153836] +02:49:28 [ 39] [ 2] [00] +02:49:28 [ 70] [ 3] [301] +02:49:28 ============================================================================ +02:49:28 Calculate Source COMM Id = 2 +02:49:28 ============================================================================ +02:49:28 + + +waiting on router queue for slot.... +02:49:43 ============================================================================ +02:49:43 Slot Id : <37> +02:49:43 Transaction Type : REQUEST +02:49:43 Received From : +02:49:43 ============================================================================ +02:49:43 FNo. Len. Field Value +02:49:43 ============================================================================ +02:49:43 [ 1] [ 4] [0800] +02:49:43 [ 7] [ 10] [0319074851] +02:49:43 [ 11] [ 6] [153837] +02:49:43 [ 70] [ 3] [301] +02:49:43 ============================================================================ +02:49:43 + + +waiting on router queue for slot.... +02:49:43 Sending to : +02:49:43 ============================================================================ +02:49:43 ============================================================================ +02:49:43 Slot Id : <37> +02:49:43 Transaction Type : RESPONSE +02:49:43 Received From : +02:49:43 ============================================================================ +02:49:43 FNo. Len. Field Value +02:49:43 ============================================================================ +02:49:43 [ 1] [ 4] [0810] +02:49:43 [ 7] [ 10] [0319074851] +02:49:43 [ 11] [ 6] [153837] +02:49:43 [ 39] [ 2] [00] +02:49:43 [ 70] [ 3] [301] +02:49:43 ============================================================================ +02:49:43 Calculate Source COMM Id = 2 +02:49:43 ============================================================================ +02:49:43 + + +waiting on router queue for slot.... +02:49:56 ============================================================================ +02:49:56 Slot Id : <32> +02:49:56 Transaction Type : REQUEST +02:49:56 Received From : +02:49:56 ============================================================================ +02:49:56 FNo. Len. Field Value +02:49:56 ============================================================================ +02:49:56 [ 1] [ 4] [0800] +02:49:56 [ 7] [ 10] [0319195742] +02:49:56 [ 11] [ 6] [012035] +02:49:56 [ 37] [ 12] [57902012035] +02:49:56 [ 70] [ 3] [301] +02:49:56 ============================================================================ +02:49:56 + + +waiting on router queue for slot.... +02:49:56 Sending to : +02:49:56 ============================================================================ +02:49:56 ============================================================================ +02:49:56 Slot Id : <32> +02:49:56 Transaction Type : RESPONSE +02:49:56 Received From : +02:49:56 ============================================================================ +02:49:56 FNo. Len. Field Value +02:49:56 ============================================================================ +02:49:56 [ 1] [ 4] [0810] +02:49:56 [ 7] [ 10] [0319195742] +02:49:56 [ 11] [ 6] [012035] +02:49:56 [ 37] [ 12] [579020120350] +02:49:56 [ 39] [ 2] [00] +02:49:56 [ 70] [ 3] [810] +02:49:56 ============================================================================ +02:49:56 Calculate Source COMM Id = 1 +02:49:56 ============================================================================ +02:49:56 + + +waiting on router queue for slot.... +02:49:59 ============================================================================ +02:49:59 Slot Id : <461> +02:49:59 Transaction Type : REQUEST +02:49:59 Received From : +02:49:59 ============================================================================ +02:49:59 FNo. Len. Field Value +02:49:59 ============================================================================ +02:49:59 [ 1] [ 4] [0800] +02:49:59 [ 7] [ 10] [0319074906] +02:49:59 [ 11] [ 6] [153838] +02:49:59 [ 70] [ 3] [301] +02:49:59 ============================================================================ +02:49:59 + + +waiting on router queue for slot.... +02:49:59 Sending to : +02:49:59 ============================================================================ +02:49:59 ============================================================================ +02:49:59 Slot Id : <461> +02:49:59 Transaction Type : RESPONSE +02:49:59 Received From : +02:49:59 ============================================================================ +02:49:59 FNo. Len. Field Value +02:49:59 ============================================================================ +02:49:59 [ 1] [ 4] [0810] +02:49:59 [ 7] [ 10] [0319074906] +02:49:59 [ 11] [ 6] [153838] +02:49:59 [ 39] [ 2] [00] +02:49:59 [ 70] [ 3] [301] +02:49:59 ============================================================================ +02:49:59 Calculate Source COMM Id = 2 +02:49:59 ============================================================================ +02:49:59 + + +waiting on router queue for slot.... +02:50:00 ============================================================================ +02:50:00 Slot Id : <9> +02:50:00 Transaction Type : REQUEST +02:50:00 Received From : +02:50:00 ============================================================================ +02:50:00 FNo. Len. Field Value +02:50:00 ============================================================================ +02:50:00 [ 1] [ 4] [0800] +02:50:00 [ 7] [ 10] [0320100146] +02:50:00 [ 11] [ 6] [030146] +02:50:00 [ 37] [ 12] [57903030146] +02:50:00 [ 70] [ 3] [301] +02:50:00 ============================================================================ +02:50:00 + + +waiting on router queue for slot.... +02:50:00 Sending to : +02:50:00 ============================================================================ +02:50:00 ============================================================================ +02:50:00 Slot Id : <9> +02:50:00 Transaction Type : RESPONSE +02:50:00 Received From : +02:50:00 ============================================================================ +02:50:00 FNo. Len. Field Value +02:50:00 ============================================================================ +02:50:00 [ 1] [ 4] [0810] +02:50:00 [ 7] [ 10] [0320100146] +02:50:00 [ 11] [ 6] [030146] +02:50:00 [ 37] [ 12] [579030301460] +02:50:00 [ 39] [ 2] [00] +02:50:00 [ 70] [ 3] [810] +02:50:00 ============================================================================ +02:50:00 Calculate Source COMM Id = 6 +02:50:00 ============================================================================ +02:50:00 + + +waiting on router queue for slot.... +02:50:03 ============================================================================ +02:50:03 Slot Id : <467> +02:50:03 Transaction Type : REQUEST +02:50:03 Received From : +02:50:03 ============================================================================ +02:50:03 FNo. Len. Field Value +02:50:03 ============================================================================ +02:50:03 [ 1] [ 4] [0800] +02:50:03 [ 2] [ 5] [02531] +02:50:03 [ 3] [ 6] [579028] +02:50:03 [ 7] [ 10] [0319195003] +02:50:03 [ 11] [ 6] [806576] +02:50:03 [ 15] [ 10] [0319195003] +02:50:03 [ 37] [ 11] [57902806576] +02:50:03 [ 70] [ 3] [001] +02:50:03 ============================================================================ +02:50:03 + + +waiting on router queue for slot.... +02:50:03 ============================================================================ +02:50:03 Slot Id : <467> +02:50:03 Transaction Type : RESPONSE +02:50:03 Received From : +02:50:03 ============================================================================ +02:50:03 FNo. Len. Field Value +02:50:03 ============================================================================ +02:50:03 [ 1] [ 4] [0810] +02:50:03 [ 7] [ 10] [0319195003] +02:50:03 [ 11] [ 6] [806576] +02:50:03 [ 15] [ 4] [0319] +02:50:03 [ 37] [ 12] [57902806576] +02:50:03 [ 39] [ 2] [00] +02:50:03 [ 70] [ 3] [001] +02:50:03 ============================================================================ +02:50:03 Sending to : +02:50:03 ============================================================================ +02:50:03 + + +waiting on router queue for slot.... +02:50:09 ============================================================================ +02:50:09 Slot Id : <45> +02:50:09 Transaction Type : REQUEST +02:50:09 Received From : +02:50:09 ============================================================================ +02:50:09 FNo. Len. Field Value +02:50:09 ============================================================================ +02:50:09 [ 1] [ 4] [0800] +02:50:09 [ 7] [ 10] [0319074916] +02:50:09 [ 11] [ 6] [153839] +02:50:09 [ 70] [ 3] [301] +02:50:09 ============================================================================ +02:50:09 + + +waiting on router queue for slot.... +02:50:09 Sending to : +02:50:09 ============================================================================ +02:50:09 ============================================================================ +02:50:09 Slot Id : <45> +02:50:09 Transaction Type : RESPONSE +02:50:09 Received From : +02:50:09 ============================================================================ +02:50:09 FNo. Len. Field Value +02:50:09 ============================================================================ +02:50:09 [ 1] [ 4] [0810] +02:50:09 [ 7] [ 10] [0319074916] +02:50:09 [ 11] [ 6] [153839] +02:50:09 [ 39] [ 2] [00] +02:50:09 [ 70] [ 3] [301] +02:50:09 ============================================================================ +02:50:09 Calculate Source COMM Id = 2 +02:50:09 ============================================================================ +02:50:09 + + +waiting on router queue for slot.... +02:50:20 ============================================================================ +02:50:20 Slot Id : <40> +02:50:20 Transaction Type : REQUEST +02:50:20 Received From : +02:50:20 ============================================================================ +02:50:20 FNo. Len. Field Value +02:50:20 ============================================================================ +02:50:20 [ 1] [ 4] [0800] +02:50:20 [ 7] [ 10] [0319074927] +02:50:20 [ 11] [ 6] [153840] +02:50:20 [ 70] [ 3] [301] +02:50:20 ============================================================================ +02:50:20 + + +waiting on router queue for slot.... +02:50:20 Sending to : +02:50:20 ============================================================================ +02:50:20 ============================================================================ +02:50:20 Slot Id : <40> +02:50:20 Transaction Type : RESPONSE +02:50:20 Received From : +02:50:20 ============================================================================ +02:50:20 FNo. Len. Field Value +02:50:20 ============================================================================ +02:50:20 [ 1] [ 4] [0810] +02:50:20 [ 7] [ 10] [0319074927] +02:50:20 [ 11] [ 6] [153840] +02:50:20 [ 39] [ 2] [00] +02:50:20 [ 70] [ 3] [301] +02:50:20 ============================================================================ +02:50:20 Calculate Source COMM Id = 2 +02:50:20 ============================================================================ +02:50:20 + + +waiting on router queue for slot.... +02:50:35 ============================================================================ +02:50:35 Slot Id : <18> +02:50:35 Transaction Type : REQUEST +02:50:35 Received From : +02:50:35 ============================================================================ +02:50:35 FNo. Len. Field Value +02:50:35 ============================================================================ +02:50:35 [ 1] [ 4] [0800] +02:50:35 [ 7] [ 10] [0319074942] +02:50:35 [ 11] [ 6] [153841] +02:50:35 [ 70] [ 3] [301] +02:50:35 ============================================================================ +02:50:35 + + +waiting on router queue for slot.... +02:50:35 Sending to : +02:50:35 ============================================================================ +02:50:35 ============================================================================ +02:50:35 Slot Id : <18> +02:50:35 Transaction Type : RESPONSE +02:50:35 Received From : +02:50:35 ============================================================================ +02:50:35 FNo. Len. Field Value +02:50:35 ============================================================================ +02:50:35 [ 1] [ 4] [0810] +02:50:35 [ 7] [ 10] [0319074942] +02:50:35 [ 11] [ 6] [153841] +02:50:35 [ 39] [ 2] [00] +02:50:35 [ 70] [ 3] [301] +02:50:35 ============================================================================ +02:50:35 Calculate Source COMM Id = 2 +02:50:35 ============================================================================ +02:50:35 + + +waiting on router queue for slot.... +02:50:45 ============================================================================ +02:50:45 Slot Id : <497> +02:50:45 Transaction Type : REQUEST +02:50:45 Received From : +02:50:45 ============================================================================ +02:50:45 FNo. Len. Field Value +02:50:45 ============================================================================ +02:50:45 [ 1] [ 4] [0800] +02:50:45 [ 7] [ 10] [0319074952] +02:50:45 [ 11] [ 6] [153842] +02:50:45 [ 70] [ 3] [301] +02:50:45 ============================================================================ +02:50:45 + + +waiting on router queue for slot.... +02:50:45 Sending to : +02:50:45 ============================================================================ +02:50:45 ============================================================================ +02:50:45 Slot Id : <497> +02:50:45 Transaction Type : RESPONSE +02:50:45 Received From : +02:50:45 ============================================================================ +02:50:45 FNo. Len. Field Value +02:50:45 ============================================================================ +02:50:45 [ 1] [ 4] [0810] +02:50:45 [ 7] [ 10] [0319074952] +02:50:45 [ 11] [ 6] [153842] +02:50:45 [ 39] [ 2] [00] +02:50:45 [ 70] [ 3] [301] +02:50:45 ============================================================================ +02:50:45 Calculate Source COMM Id = 2 +02:50:45 ============================================================================ +02:50:45 + + +waiting on router queue for slot.... +02:50:56 ============================================================================ +02:50:56 Slot Id : <28> +02:50:56 Transaction Type : REQUEST +02:50:56 Received From : +02:50:56 ============================================================================ +02:50:56 FNo. Len. Field Value +02:50:56 ============================================================================ +02:50:56 [ 1] [ 4] [0800] +02:50:56 [ 7] [ 10] [0319075003] +02:50:56 [ 11] [ 6] [153843] +02:50:56 [ 70] [ 3] [301] +02:50:56 ============================================================================ +02:50:56 + + +waiting on router queue for slot.... +02:50:56 Sending to : +02:50:56 ============================================================================ +02:50:56 ============================================================================ +02:50:56 Slot Id : <28> +02:50:56 Transaction Type : RESPONSE +02:50:56 Received From : +02:50:56 ============================================================================ +02:50:56 FNo. Len. Field Value +02:50:56 ============================================================================ +02:50:56 [ 1] [ 4] [0810] +02:50:56 [ 7] [ 10] [0319075003] +02:50:56 [ 11] [ 6] [153843] +02:50:56 [ 39] [ 2] [00] +02:50:56 [ 70] [ 3] [301] +02:50:56 ============================================================================ +02:50:56 Calculate Source COMM Id = 2 +02:50:56 ============================================================================ +02:50:56 + + +waiting on router queue for slot.... +02:51:05 ============================================================================ +02:51:05 Slot Id : <43> +02:51:05 Transaction Type : REQUEST +02:51:05 Received From : +02:51:05 ============================================================================ +02:51:05 FNo. Len. Field Value +02:51:05 ============================================================================ +02:51:05 [ 1] [ 4] [0800] +02:51:05 [ 7] [ 10] [0320100251] +02:51:05 [ 11] [ 6] [030251] +02:51:05 [ 37] [ 12] [57903030251] +02:51:05 [ 70] [ 3] [301] +02:51:05 ============================================================================ +02:51:05 + + +waiting on router queue for slot.... +02:51:05 Sending to : +02:51:05 ============================================================================ +02:51:05 ============================================================================ +02:51:05 Slot Id : <43> +02:51:05 Transaction Type : RESPONSE +02:51:05 Received From : +02:51:05 ============================================================================ +02:51:05 FNo. Len. Field Value +02:51:05 ============================================================================ +02:51:05 [ 1] [ 4] [0810] +02:51:05 [ 7] [ 10] [0320100251] +02:51:05 [ 11] [ 6] [030251] +02:51:05 [ 37] [ 12] [579030302510] +02:51:05 [ 39] [ 2] [00] +02:51:05 [ 70] [ 3] [810] +02:51:05 ============================================================================ +02:51:05 Calculate Source COMM Id = 6 +02:51:05 ============================================================================ +02:51:05 + + +waiting on router queue for slot.... +02:51:05 ============================================================================ +02:51:05 Slot Id : <50> +02:51:05 Transaction Type : REQUEST +02:51:05 Received From : +02:51:05 ============================================================================ +02:51:05 FNo. Len. Field Value +02:51:05 ============================================================================ +02:51:05 [ 1] [ 4] [0800] +02:51:05 [ 2] [ 5] [02531] +02:51:05 [ 3] [ 6] [579028] +02:51:05 [ 7] [ 10] [0319195105] +02:51:05 [ 11] [ 6] [806577] +02:51:05 [ 15] [ 10] [0319195105] +02:51:05 [ 37] [ 11] [57902806577] +02:51:05 [ 70] [ 3] [001] +02:51:05 ============================================================================ +02:51:05 + + +waiting on router queue for slot.... +02:51:05 ============================================================================ +02:51:05 Slot Id : <50> +02:51:05 Transaction Type : RESPONSE +02:51:05 Received From : +02:51:05 ============================================================================ +02:51:05 FNo. Len. Field Value +02:51:05 ============================================================================ +02:51:05 [ 1] [ 4] [0810] +02:51:05 [ 7] [ 10] [0319195105] +02:51:05 [ 11] [ 6] [806577] +02:51:05 [ 15] [ 4] [0319] +02:51:05 [ 37] [ 12] [57902806577] +02:51:05 [ 39] [ 2] [00] +02:51:05 [ 70] [ 3] [001] +02:51:05 ============================================================================ +02:51:05 Sending to : +02:51:05 ============================================================================ +02:51:05 + + +waiting on router queue for slot.... +02:51:07 ============================================================================ +02:51:07 Slot Id : <8> +02:51:07 Transaction Type : REQUEST +02:51:07 Received From : +02:51:07 ============================================================================ +02:51:07 FNo. Len. Field Value +02:51:07 ============================================================================ +02:51:07 [ 1] [ 4] [0800] +02:51:07 [ 7] [ 10] [0319075014] +02:51:07 [ 11] [ 6] [153844] +02:51:07 [ 70] [ 3] [301] +02:51:07 ============================================================================ +02:51:07 + + +waiting on router queue for slot.... +02:51:07 Sending to : +02:51:07 ============================================================================ +02:51:07 ============================================================================ +02:51:07 Slot Id : <8> +02:51:07 Transaction Type : RESPONSE +02:51:07 Received From : +02:51:07 ============================================================================ +02:51:07 FNo. Len. Field Value +02:51:07 ============================================================================ +02:51:07 [ 1] [ 4] [0810] +02:51:07 [ 7] [ 10] [0319075014] +02:51:07 [ 11] [ 6] [153844] +02:51:07 [ 39] [ 2] [00] +02:51:07 [ 70] [ 3] [301] +02:51:07 ============================================================================ +02:51:07 Calculate Source COMM Id = 2 +02:51:07 ============================================================================ +02:51:07 + + +waiting on router queue for slot.... +02:51:18 ============================================================================ +02:51:18 Slot Id : <52> +02:51:18 Transaction Type : REQUEST +02:51:18 Received From : +02:51:18 ============================================================================ +02:51:18 FNo. Len. Field Value +02:51:18 ============================================================================ +02:51:18 [ 1] [ 4] [0800] +02:51:18 [ 7] [ 10] [0319075025] +02:51:18 [ 11] [ 6] [153845] +02:51:18 [ 70] [ 3] [301] +02:51:18 ============================================================================ +02:51:18 + + +waiting on router queue for slot.... +02:51:18 Sending to : +02:51:18 ============================================================================ +02:51:18 ============================================================================ +02:51:18 Slot Id : <52> +02:51:18 Transaction Type : RESPONSE +02:51:18 Received From : +02:51:18 ============================================================================ +02:51:18 FNo. Len. Field Value +02:51:18 ============================================================================ +02:51:18 [ 1] [ 4] [0810] +02:51:18 [ 7] [ 10] [0319075025] +02:51:18 [ 11] [ 6] [153845] +02:51:18 [ 39] [ 2] [00] +02:51:18 [ 70] [ 3] [301] +02:51:18 ============================================================================ +02:51:18 Calculate Source COMM Id = 2 +02:51:18 ============================================================================ +02:51:18 + + +waiting on router queue for slot.... +02:51:21 ============================================================================ +02:51:21 Slot Id : <44> +02:51:21 Transaction Type : REQUEST +02:51:21 Received From : +02:51:21 ============================================================================ +02:51:21 FNo. Len. Field Value +02:51:21 ============================================================================ +02:51:21 [ 1] [ 4] [0800] +02:51:21 [ 7] [ 10] [0319194912] +02:51:21 [ 11] [ 6] [094030] +02:51:21 [ 37] [ 12] [57902094030] +02:51:21 [ 70] [ 3] [301] +02:51:21 ============================================================================ +02:51:21 + + +waiting on router queue for slot.... +02:51:21 Sending to : +02:51:21 ============================================================================ +02:51:21 ============================================================================ +02:51:21 Slot Id : <44> +02:51:21 Transaction Type : RESPONSE +02:51:21 Received From : +02:51:21 ============================================================================ +02:51:21 FNo. Len. Field Value +02:51:21 ============================================================================ +02:51:21 [ 1] [ 4] [0810] +02:51:21 [ 7] [ 10] [0319194912] +02:51:21 [ 11] [ 6] [094030] +02:51:21 [ 37] [ 12] [579020940300] +02:51:21 [ 39] [ 2] [00] +02:51:21 [ 70] [ 3] [810] +02:51:21 ============================================================================ +02:51:21 Calculate Source COMM Id = 4 +02:51:21 ============================================================================ +02:51:21 + + +waiting on router queue for slot.... +02:51:33 ============================================================================ +02:51:33 Slot Id : <61> +02:51:33 Transaction Type : REQUEST +02:51:33 Received From : +02:51:33 ============================================================================ +02:51:33 FNo. Len. Field Value +02:51:33 ============================================================================ +02:51:33 [ 1] [ 4] [0800] +02:51:33 [ 7] [ 10] [0319075040] +02:51:33 [ 11] [ 6] [153846] +02:51:33 [ 70] [ 3] [301] +02:51:33 ============================================================================ +02:51:33 + + +waiting on router queue for slot.... +02:51:33 Sending to : +02:51:33 ============================================================================ +02:51:33 ============================================================================ +02:51:33 Slot Id : <61> +02:51:33 Transaction Type : RESPONSE +02:51:33 Received From : +02:51:33 ============================================================================ +02:51:33 FNo. Len. Field Value +02:51:33 ============================================================================ +02:51:33 [ 1] [ 4] [0810] +02:51:33 [ 7] [ 10] [0319075040] +02:51:33 [ 11] [ 6] [153846] +02:51:33 [ 39] [ 2] [00] +02:51:33 [ 70] [ 3] [301] +02:51:33 ============================================================================ +02:51:33 Calculate Source COMM Id = 2 +02:51:33 ============================================================================ +02:51:33 + + +waiting on router queue for slot.... +02:51:48 ============================================================================ +02:51:48 Slot Id : <25> +02:51:48 Transaction Type : REQUEST +02:51:48 Received From : +02:51:48 ============================================================================ +02:51:48 FNo. Len. Field Value +02:51:48 ============================================================================ +02:51:48 [ 1] [ 4] [0800] +02:51:48 [ 7] [ 10] [0319075055] +02:51:48 [ 11] [ 6] [153847] +02:51:48 [ 70] [ 3] [301] +02:51:48 ============================================================================ +02:51:48 + + +waiting on router queue for slot.... +02:51:48 Sending to : +02:51:48 ============================================================================ +02:51:48 ============================================================================ +02:51:48 Slot Id : <25> +02:51:48 Transaction Type : RESPONSE +02:51:48 Received From : +02:51:48 ============================================================================ +02:51:48 FNo. Len. Field Value +02:51:48 ============================================================================ +02:51:48 [ 1] [ 4] [0810] +02:51:48 [ 7] [ 10] [0319075055] +02:51:48 [ 11] [ 6] [153847] +02:51:48 [ 39] [ 2] [00] +02:51:48 [ 70] [ 3] [301] +02:51:48 ============================================================================ +02:51:48 Calculate Source COMM Id = 2 +02:51:48 ============================================================================ +02:51:48 + + +waiting on router queue for slot.... +02:51:59 ============================================================================ +02:51:59 Slot Id : <15> +02:51:59 Transaction Type : REQUEST +02:51:59 Received From : +02:51:59 ============================================================================ +02:51:59 FNo. Len. Field Value +02:51:59 ============================================================================ +02:51:59 [ 1] [ 4] [0800] +02:51:59 [ 7] [ 10] [0319075106] +02:51:59 [ 11] [ 6] [153848] +02:51:59 [ 70] [ 3] [301] +02:51:59 ============================================================================ +02:51:59 + + +waiting on router queue for slot.... +02:51:59 Sending to : +02:51:59 ============================================================================ +02:51:59 ============================================================================ +02:51:59 Slot Id : <15> +02:51:59 Transaction Type : RESPONSE +02:51:59 Received From : +02:51:59 ============================================================================ +02:51:59 FNo. Len. Field Value +02:51:59 ============================================================================ +02:51:59 [ 1] [ 4] [0810] +02:51:59 [ 7] [ 10] [0319075106] +02:51:59 [ 11] [ 6] [153848] +02:51:59 [ 39] [ 2] [00] +02:51:59 [ 70] [ 3] [301] +02:51:59 ============================================================================ +02:51:59 Calculate Source COMM Id = 2 +02:51:59 ============================================================================ +02:51:59 + + +waiting on router queue for slot.... +02:52:07 ============================================================================ +02:52:07 Slot Id : <55> +02:52:07 Transaction Type : REQUEST +02:52:07 Received From : +02:52:07 ============================================================================ +02:52:07 FNo. Len. Field Value +02:52:07 ============================================================================ +02:52:07 [ 1] [ 4] [0800] +02:52:07 [ 2] [ 5] [02531] +02:52:07 [ 3] [ 6] [579028] +02:52:07 [ 7] [ 10] [0319195207] +02:52:07 [ 11] [ 6] [806578] +02:52:07 [ 15] [ 10] [0319195207] +02:52:07 [ 37] [ 11] [57902806578] +02:52:07 [ 70] [ 3] [001] +02:52:07 ============================================================================ +02:52:07 + + +waiting on router queue for slot.... +02:52:07 ============================================================================ +02:52:07 Slot Id : <55> +02:52:07 Transaction Type : RESPONSE +02:52:07 Received From : +02:52:07 ============================================================================ +02:52:07 FNo. Len. Field Value +02:52:07 ============================================================================ +02:52:07 [ 1] [ 4] [0810] +02:52:07 [ 7] [ 10] [0319195207] +02:52:07 [ 11] [ 6] [806578] +02:52:07 [ 15] [ 4] [0319] +02:52:07 [ 37] [ 12] [57902806578] +02:52:07 [ 39] [ 2] [00] +02:52:07 [ 70] [ 3] [001] +02:52:07 ============================================================================ +02:52:07 Sending to : +02:52:07 ============================================================================ +02:52:07 + + +waiting on router queue for slot.... +02:52:10 ============================================================================ +02:52:10 Slot Id : <478> +02:52:10 Transaction Type : REQUEST +02:52:10 Received From : +02:52:10 ============================================================================ +02:52:10 FNo. Len. Field Value +02:52:10 ============================================================================ +02:52:10 [ 1] [ 4] [0800] +02:52:10 [ 7] [ 10] [0320100356] +02:52:10 [ 11] [ 6] [030356] +02:52:10 [ 37] [ 12] [57903030356] +02:52:10 [ 70] [ 3] [301] +02:52:10 ============================================================================ +02:52:10 + + +waiting on router queue for slot.... +02:52:10 Sending to : +02:52:10 ============================================================================ +02:52:10 ============================================================================ +02:52:10 Slot Id : <478> +02:52:10 Transaction Type : RESPONSE +02:52:10 Received From : +02:52:10 ============================================================================ +02:52:10 FNo. Len. Field Value +02:52:10 ============================================================================ +02:52:10 [ 1] [ 4] [0810] +02:52:10 [ 7] [ 10] [0320100356] +02:52:10 [ 11] [ 6] [030356] +02:52:10 [ 37] [ 12] [579030303560] +02:52:10 [ 39] [ 2] [00] +02:52:10 [ 70] [ 3] [810] +02:52:10 ============================================================================ +02:52:10 Calculate Source COMM Id = 6 +02:52:10 ============================================================================ +02:52:10 + + +waiting on router queue for slot.... +02:52:10 ============================================================================ +02:52:10 Slot Id : <68> +02:52:10 Transaction Type : REQUEST +02:52:10 Received From : +02:52:10 ============================================================================ +02:52:10 FNo. Len. Field Value +02:52:10 ============================================================================ +02:52:10 [ 1] [ 4] [0800] +02:52:10 [ 7] [ 10] [0319075117] +02:52:10 [ 11] [ 6] [153849] +02:52:10 [ 70] [ 3] [301] +02:52:10 ============================================================================ +02:52:10 + + +waiting on router queue for slot.... +02:52:10 Sending to : +02:52:10 ============================================================================ +02:52:10 ============================================================================ +02:52:10 Slot Id : <68> +02:52:10 Transaction Type : RESPONSE +02:52:10 Received From : +02:52:10 ============================================================================ +02:52:10 FNo. Len. Field Value +02:52:10 ============================================================================ +02:52:10 [ 1] [ 4] [0810] +02:52:10 [ 7] [ 10] [0319075117] +02:52:10 [ 11] [ 6] [153849] +02:52:10 [ 39] [ 2] [00] +02:52:10 [ 70] [ 3] [301] +02:52:10 ============================================================================ +02:52:10 Calculate Source COMM Id = 2 +02:52:10 ============================================================================ +02:52:10 + + +waiting on router queue for slot.... +02:52:21 ============================================================================ +02:52:21 Slot Id : <63> +02:52:21 Transaction Type : REQUEST +02:52:21 Received From : +02:52:21 ============================================================================ +02:52:21 FNo. Len. Field Value +02:52:21 ============================================================================ +02:52:21 [ 1] [ 4] [0800] +02:52:21 [ 7] [ 10] [0319075128] +02:52:21 [ 11] [ 6] [153850] +02:52:21 [ 70] [ 3] [301] +02:52:21 ============================================================================ +02:52:21 + + +waiting on router queue for slot.... +02:52:21 Sending to : +02:52:21 ============================================================================ +02:52:21 ============================================================================ +02:52:21 Slot Id : <63> +02:52:21 Transaction Type : RESPONSE +02:52:21 Received From : +02:52:21 ============================================================================ +02:52:21 FNo. Len. Field Value +02:52:21 ============================================================================ +02:52:21 [ 1] [ 4] [0810] +02:52:21 [ 7] [ 10] [0319075128] +02:52:21 [ 11] [ 6] [153850] +02:52:21 [ 39] [ 2] [00] +02:52:21 [ 70] [ 3] [301] +02:52:21 ============================================================================ +02:52:21 Calculate Source COMM Id = 2 +02:52:21 ============================================================================ +02:52:21 + + +waiting on router queue for slot.... +02:52:32 ============================================================================ +02:52:32 Slot Id : <60> +02:52:32 Transaction Type : REQUEST +02:52:32 Received From : +02:52:32 ============================================================================ +02:52:32 FNo. Len. Field Value +02:52:32 ============================================================================ +02:52:32 [ 1] [ 4] [0800] +02:52:32 [ 7] [ 10] [0319075139] +02:52:32 [ 11] [ 6] [153851] +02:52:32 [ 70] [ 3] [301] +02:52:32 ============================================================================ +02:52:32 + + +waiting on router queue for slot.... +02:52:32 Sending to : +02:52:32 ============================================================================ +02:52:32 ============================================================================ +02:52:32 Slot Id : <60> +02:52:32 Transaction Type : RESPONSE +02:52:32 Received From : +02:52:32 ============================================================================ +02:52:32 FNo. Len. Field Value +02:52:32 ============================================================================ +02:52:32 [ 1] [ 4] [0810] +02:52:32 [ 7] [ 10] [0319075139] +02:52:32 [ 11] [ 6] [153851] +02:52:32 [ 39] [ 2] [00] +02:52:32 [ 70] [ 3] [301] +02:52:32 ============================================================================ +02:52:32 Calculate Source COMM Id = 2 +02:52:32 ============================================================================ +02:52:32 + + +waiting on router queue for slot.... +02:52:47 ============================================================================ +02:52:47 Slot Id : <464> +02:52:47 Transaction Type : REQUEST +02:52:47 Received From : +02:52:47 ============================================================================ +02:52:47 FNo. Len. Field Value +02:52:47 ============================================================================ +02:52:47 [ 1] [ 4] [0800] +02:52:47 [ 7] [ 10] [0319075154] +02:52:47 [ 11] [ 6] [153852] +02:52:47 [ 70] [ 3] [301] +02:52:47 ============================================================================ +02:52:47 + + +waiting on router queue for slot.... +02:52:47 Sending to : +02:52:47 ============================================================================ +02:52:47 ============================================================================ +02:52:47 Slot Id : <464> +02:52:47 Transaction Type : RESPONSE +02:52:47 Received From : +02:52:47 ============================================================================ +02:52:47 FNo. Len. Field Value +02:52:47 ============================================================================ +02:52:47 [ 1] [ 4] [0810] +02:52:47 [ 7] [ 10] [0319075154] +02:52:47 [ 11] [ 6] [153852] +02:52:47 [ 39] [ 2] [00] +02:52:47 [ 70] [ 3] [301] +02:52:47 ============================================================================ +02:52:47 Calculate Source COMM Id = 2 +02:52:47 ============================================================================ +02:52:47 + + +waiting on router queue for slot.... +02:53:00 ============================================================================ +02:53:00 Slot Id : <41> +02:53:00 Transaction Type : REQUEST +02:53:00 Received From : +02:53:00 ============================================================================ +02:53:00 FNo. Len. Field Value +02:53:00 ============================================================================ +02:53:00 [ 1] [ 4] [0800] +02:53:00 [ 7] [ 10] [0319075205] +02:53:00 [ 11] [ 6] [153853] +02:53:00 [ 70] [ 3] [301] +02:53:00 ============================================================================ +02:53:00 + + +waiting on router queue for slot.... +02:53:00 Sending to : +02:53:00 ============================================================================ +02:53:00 ============================================================================ +02:53:00 Slot Id : <41> +02:53:00 Transaction Type : RESPONSE +02:53:00 Received From : +02:53:00 ============================================================================ +02:53:00 FNo. Len. Field Value +02:53:00 ============================================================================ +02:53:00 [ 1] [ 4] [0810] +02:53:00 [ 7] [ 10] [0319075205] +02:53:00 [ 11] [ 6] [153853] +02:53:00 [ 39] [ 2] [00] +02:53:00 [ 70] [ 3] [301] +02:53:00 ============================================================================ +02:53:00 Calculate Source COMM Id = 2 +02:53:00 ============================================================================ +02:53:00 + + +waiting on router queue for slot.... +02:53:01 ============================================================================ +02:53:01 Slot Id : <38> +02:53:01 Transaction Type : REQUEST +02:53:01 Received From : +02:53:01 ============================================================================ +02:53:01 FNo. Len. Field Value +02:53:01 ============================================================================ +02:53:01 [ 1] [ 4] [0800] +02:53:01 [ 7] [ 10] [0319195256] +02:53:01 [ 11] [ 6] [073373] +02:53:01 [ 37] [ 12] [507902073373] +02:53:01 [ 70] [ 3] [001] +02:53:01 ============================================================================ +02:53:01 + + +waiting on router queue for slot.... +02:53:01 Sending to : +02:53:01 ============================================================================ +02:53:01 ============================================================================ +02:53:01 Slot Id : <38> +02:53:01 Transaction Type : RESPONSE +02:53:01 Received From : +02:53:01 ============================================================================ +02:53:01 FNo. Len. Field Value +02:53:01 ============================================================================ +02:53:01 [ 1] [ 4] [0810] +02:53:01 [ 7] [ 10] [0319195256] +02:53:01 [ 11] [ 6] [073373] +02:53:01 [ 37] [ 12] [507902073373] +02:53:01 [ 39] [ 2] [00] +02:53:01 [ 70] [ 3] [001] +02:53:01 ============================================================================ +02:53:01 Calculate Source COMM Id = 0 +02:53:01 ============================================================================ +02:53:01 + + +waiting on router queue for slot.... +02:53:09 ============================================================================ +02:53:09 Slot Id : <73> +02:53:09 Transaction Type : REQUEST +02:53:09 Received From : +02:53:09 ============================================================================ +02:53:09 FNo. Len. Field Value +02:53:09 ============================================================================ +02:53:09 [ 1] [ 4] [0800] +02:53:09 [ 2] [ 5] [02531] +02:53:09 [ 3] [ 6] [579028] +02:53:09 [ 7] [ 10] [0319195309] +02:53:09 [ 11] [ 6] [806579] +02:53:09 [ 15] [ 10] [0319195309] +02:53:09 [ 37] [ 11] [57902806579] +02:53:09 [ 70] [ 3] [001] +02:53:09 ============================================================================ +02:53:09 + + +waiting on router queue for slot.... +02:53:09 ============================================================================ +02:53:09 Slot Id : <73> +02:53:09 Transaction Type : RESPONSE +02:53:09 Received From : +02:53:09 ============================================================================ +02:53:09 FNo. Len. Field Value +02:53:09 ============================================================================ +02:53:09 [ 1] [ 4] [0810] +02:53:09 [ 7] [ 10] [0319195309] +02:53:09 [ 11] [ 6] [806579] +02:53:09 [ 15] [ 4] [0319] +02:53:09 [ 37] [ 12] [57902806579] +02:53:09 [ 39] [ 2] [00] +02:53:09 [ 70] [ 3] [001] +02:53:09 ============================================================================ +02:53:09 Sending to : +02:53:09 ============================================================================ +02:53:09 + + +waiting on router queue for slot.... +02:53:15 ============================================================================ +02:53:15 Slot Id : <20> +02:53:15 Transaction Type : REQUEST +02:53:15 Received From : +02:53:15 ============================================================================ +02:53:15 FNo. Len. Field Value +02:53:15 ============================================================================ +02:53:15 [ 1] [ 4] [0800] +02:53:15 [ 7] [ 10] [0319075222] +02:53:15 [ 11] [ 6] [153854] +02:53:15 [ 70] [ 3] [301] +02:53:15 ============================================================================ +02:53:15 + + +waiting on router queue for slot.... +02:53:15 Sending to : +02:53:15 ============================================================================ +02:53:15 ============================================================================ +02:53:15 Slot Id : <20> +02:53:15 Transaction Type : RESPONSE +02:53:15 Received From : +02:53:15 ============================================================================ +02:53:15 FNo. Len. Field Value +02:53:15 ============================================================================ +02:53:15 [ 1] [ 4] [0810] +02:53:15 [ 7] [ 10] [0319075222] +02:53:15 [ 11] [ 6] [153854] +02:53:15 [ 39] [ 2] [00] +02:53:15 [ 70] [ 3] [301] +02:53:15 ============================================================================ +02:53:15 Calculate Source COMM Id = 2 +02:53:15 ============================================================================ +02:53:15 + + +waiting on router queue for slot.... +02:53:15 ============================================================================ +02:53:15 Slot Id : <487> +02:53:15 Transaction Type : REQUEST +02:53:15 Received From : +02:53:15 ============================================================================ +02:53:15 FNo. Len. Field Value +02:53:15 ============================================================================ +02:53:15 [ 1] [ 4] [0800] +02:53:15 [ 7] [ 10] [0320100502] +02:53:15 [ 11] [ 6] [030502] +02:53:15 [ 37] [ 12] [57903030502] +02:53:15 [ 70] [ 3] [301] +02:53:15 ============================================================================ +02:53:15 + + +waiting on router queue for slot.... +02:53:15 Sending to : +02:53:15 ============================================================================ +02:53:15 ============================================================================ +02:53:15 Slot Id : <487> +02:53:15 Transaction Type : RESPONSE +02:53:15 Received From : +02:53:15 ============================================================================ +02:53:15 FNo. Len. Field Value +02:53:15 ============================================================================ +02:53:15 [ 1] [ 4] [0810] +02:53:15 [ 7] [ 10] [0320100502] +02:53:15 [ 11] [ 6] [030502] +02:53:15 [ 37] [ 12] [579030305020] +02:53:15 [ 39] [ 2] [00] +02:53:15 [ 70] [ 3] [810] +02:53:15 ============================================================================ +02:53:15 Calculate Source COMM Id = 6 +02:53:15 ============================================================================ +02:53:15 + + +waiting on router queue for slot.... +02:53:26 ============================================================================ +02:53:26 Slot Id : <27> +02:53:26 Transaction Type : REQUEST +02:53:26 Received From : +02:53:26 ============================================================================ +02:53:26 FNo. Len. Field Value +02:53:26 ============================================================================ +02:53:26 [ 1] [ 4] [0800] +02:53:26 [ 7] [ 10] [0319075232] +02:53:26 [ 11] [ 6] [153855] +02:53:26 [ 70] [ 3] [301] +02:53:26 ============================================================================ +02:53:26 + + +waiting on router queue for slot.... +02:53:26 Sending to : +02:53:26 ============================================================================ +02:53:26 ============================================================================ +02:53:26 Slot Id : <27> +02:53:26 Transaction Type : RESPONSE +02:53:26 Received From : +02:53:26 ============================================================================ +02:53:26 FNo. Len. Field Value +02:53:26 ============================================================================ +02:53:26 [ 1] [ 4] [0810] +02:53:26 [ 7] [ 10] [0319075232] +02:53:26 [ 11] [ 6] [153855] +02:53:26 [ 39] [ 2] [00] +02:53:26 [ 70] [ 3] [301] +02:53:26 ============================================================================ +02:53:26 Calculate Source COMM Id = 2 +02:53:26 ============================================================================ +02:53:26 + + +waiting on router queue for slot.... +02:53:41 ============================================================================ +02:53:41 Slot Id : <48> +02:53:41 Transaction Type : REQUEST +02:53:41 Received From : +02:53:41 ============================================================================ +02:53:41 FNo. Len. Field Value +02:53:41 ============================================================================ +02:53:41 [ 1] [ 4] [0800] +02:53:41 [ 7] [ 10] [0319075248] +02:53:41 [ 11] [ 6] [153856] +02:53:41 [ 70] [ 3] [301] +02:53:41 ============================================================================ +02:53:41 + + +waiting on router queue for slot.... +02:53:41 Sending to : +02:53:41 ============================================================================ +02:53:41 ============================================================================ +02:53:41 Slot Id : <48> +02:53:41 Transaction Type : RESPONSE +02:53:41 Received From : +02:53:41 ============================================================================ +02:53:41 FNo. Len. Field Value +02:53:41 ============================================================================ +02:53:41 [ 1] [ 4] [0810] +02:53:41 [ 7] [ 10] [0319075248] +02:53:41 [ 11] [ 6] [153856] +02:53:41 [ 39] [ 2] [00] +02:53:41 [ 70] [ 3] [301] +02:53:41 ============================================================================ +02:53:41 Calculate Source COMM Id = 2 +02:53:41 ============================================================================ +02:53:41 + + +waiting on router queue for slot.... +02:53:52 ============================================================================ +02:53:52 Slot Id : <26> +02:53:52 Transaction Type : REQUEST +02:53:52 Received From : +02:53:52 ============================================================================ +02:53:52 FNo. Len. Field Value +02:53:52 ============================================================================ +02:53:52 [ 1] [ 4] [0800] +02:53:52 [ 7] [ 10] [0319075259] +02:53:52 [ 11] [ 6] [153857] +02:53:52 [ 70] [ 3] [301] +02:53:52 ============================================================================ +02:53:52 + + +waiting on router queue for slot.... +02:53:52 Sending to : +02:53:52 ============================================================================ +02:53:52 ============================================================================ +02:53:52 Slot Id : <26> +02:53:52 Transaction Type : RESPONSE +02:53:52 Received From : +02:53:52 ============================================================================ +02:53:52 FNo. Len. Field Value +02:53:52 ============================================================================ +02:53:52 [ 1] [ 4] [0810] +02:53:52 [ 7] [ 10] [0319075259] +02:53:52 [ 11] [ 6] [153857] +02:53:52 [ 39] [ 2] [00] +02:53:52 [ 70] [ 3] [301] +02:53:52 ============================================================================ +02:53:52 Calculate Source COMM Id = 2 +02:53:52 ============================================================================ +02:53:52 + + +waiting on router queue for slot.... +02:54:02 ============================================================================ +02:54:02 Slot Id : <46> +02:54:02 Transaction Type : REQUEST +02:54:02 Received From : +02:54:02 ============================================================================ +02:54:02 FNo. Len. Field Value +02:54:02 ============================================================================ +02:54:02 [ 1] [ 4] [0800] +02:54:02 [ 7] [ 10] [0319075309] +02:54:02 [ 11] [ 6] [153858] +02:54:02 [ 70] [ 3] [301] +02:54:02 ============================================================================ +02:54:02 + + +waiting on router queue for slot.... +02:54:02 Sending to : +02:54:02 ============================================================================ +02:54:02 ============================================================================ +02:54:02 Slot Id : <46> +02:54:02 Transaction Type : RESPONSE +02:54:02 Received From : +02:54:02 ============================================================================ +02:54:02 FNo. Len. Field Value +02:54:02 ============================================================================ +02:54:02 [ 1] [ 4] [0810] +02:54:02 [ 7] [ 10] [0319075309] +02:54:02 [ 11] [ 6] [153858] +02:54:02 [ 39] [ 2] [00] +02:54:02 [ 70] [ 3] [301] +02:54:02 ============================================================================ +02:54:02 Calculate Source COMM Id = 2 +02:54:02 ============================================================================ +02:54:02 + + +waiting on router queue for slot.... +02:54:11 ============================================================================ +02:54:11 Slot Id : <19> +02:54:11 Transaction Type : REQUEST +02:54:11 Received From : +02:54:11 ============================================================================ +02:54:11 FNo. Len. Field Value +02:54:11 ============================================================================ +02:54:11 [ 1] [ 4] [0800] +02:54:11 [ 2] [ 5] [02531] +02:54:11 [ 3] [ 6] [579028] +02:54:11 [ 7] [ 10] [0319195411] +02:54:11 [ 11] [ 6] [806580] +02:54:11 [ 15] [ 10] [0319195411] +02:54:11 [ 37] [ 11] [57902806580] +02:54:11 [ 70] [ 3] [001] +02:54:11 ============================================================================ +02:54:11 + + +waiting on router queue for slot.... +02:54:11 ============================================================================ +02:54:11 Slot Id : <19> +02:54:11 Transaction Type : RESPONSE +02:54:11 Received From : +02:54:11 ============================================================================ +02:54:11 FNo. Len. Field Value +02:54:11 ============================================================================ +02:54:11 [ 1] [ 4] [0810] +02:54:11 [ 7] [ 10] [0319195411] +02:54:11 [ 11] [ 6] [806580] +02:54:11 [ 15] [ 4] [0319] +02:54:11 [ 37] [ 12] [57902806580] +02:54:11 [ 39] [ 2] [00] +02:54:11 [ 70] [ 3] [001] +02:54:11 ============================================================================ +02:54:11 Sending to : +02:54:11 ============================================================================ +02:54:11 + + +waiting on router queue for slot.... +02:54:18 ============================================================================ +02:54:18 Slot Id : <69> +02:54:18 Transaction Type : REQUEST +02:54:18 Received From : +02:54:18 ============================================================================ +02:54:18 FNo. Len. Field Value +02:54:18 ============================================================================ +02:54:18 [ 1] [ 4] [0800] +02:54:18 [ 7] [ 10] [0319075325] +02:54:18 [ 11] [ 6] [153859] +02:54:18 [ 70] [ 3] [301] +02:54:18 ============================================================================ +02:54:18 + + +waiting on router queue for slot.... +02:54:18 Sending to : +02:54:18 ============================================================================ +02:54:18 ============================================================================ +02:54:18 Slot Id : <69> +02:54:18 Transaction Type : RESPONSE +02:54:18 Received From : +02:54:18 ============================================================================ +02:54:18 FNo. Len. Field Value +02:54:18 ============================================================================ +02:54:18 [ 1] [ 4] [0810] +02:54:18 [ 7] [ 10] [0319075325] +02:54:18 [ 11] [ 6] [153859] +02:54:18 [ 39] [ 2] [00] +02:54:18 [ 70] [ 3] [301] +02:54:18 ============================================================================ +02:54:18 Calculate Source COMM Id = 2 +02:54:18 ============================================================================ +02:54:18 + + +waiting on router queue for slot.... +02:54:20 ============================================================================ +02:54:20 Slot Id : <47> +02:54:20 Transaction Type : REQUEST +02:54:20 Received From : +02:54:20 ============================================================================ +02:54:20 FNo. Len. Field Value +02:54:20 ============================================================================ +02:54:20 [ 1] [ 4] [0800] +02:54:20 [ 7] [ 10] [0320100607] +02:54:20 [ 11] [ 6] [030607] +02:54:20 [ 37] [ 12] [57903030607] +02:54:20 [ 70] [ 3] [301] +02:54:20 ============================================================================ +02:54:20 + + +waiting on router queue for slot.... +02:54:20 Sending to : +02:54:20 ============================================================================ +02:54:20 ============================================================================ +02:54:20 Slot Id : <47> +02:54:20 Transaction Type : RESPONSE +02:54:20 Received From : +02:54:20 ============================================================================ +02:54:20 FNo. Len. Field Value +02:54:20 ============================================================================ +02:54:20 [ 1] [ 4] [0810] +02:54:20 [ 7] [ 10] [0320100607] +02:54:20 [ 11] [ 6] [030607] +02:54:20 [ 37] [ 12] [579030306070] +02:54:20 [ 39] [ 2] [00] +02:54:20 [ 70] [ 3] [810] +02:54:20 ============================================================================ +02:54:20 Calculate Source COMM Id = 6 +02:54:20 ============================================================================ +02:54:20 + + +waiting on router queue for slot.... +02:54:29 ============================================================================ +02:54:29 Slot Id : <58> +02:54:29 Transaction Type : REQUEST +02:54:29 Received From : +02:54:29 ============================================================================ +02:54:29 FNo. Len. Field Value +02:54:29 ============================================================================ +02:54:29 [ 1] [ 4] [0800] +02:54:29 [ 7] [ 10] [0319075336] +02:54:29 [ 11] [ 6] [153860] +02:54:29 [ 70] [ 3] [301] +02:54:29 ============================================================================ +02:54:29 + + +waiting on router queue for slot.... +02:54:29 Sending to : +02:54:29 ============================================================================ +02:54:29 ============================================================================ +02:54:29 Slot Id : <58> +02:54:29 Transaction Type : RESPONSE +02:54:29 Received From : +02:54:29 ============================================================================ +02:54:29 FNo. Len. Field Value +02:54:29 ============================================================================ +02:54:29 [ 1] [ 4] [0810] +02:54:29 [ 7] [ 10] [0319075336] +02:54:29 [ 11] [ 6] [153860] +02:54:29 [ 39] [ 2] [00] +02:54:29 [ 70] [ 3] [301] +02:54:29 ============================================================================ +02:54:29 Calculate Source COMM Id = 2 +02:54:29 ============================================================================ +02:54:29 + + +waiting on router queue for slot.... +02:54:39 ============================================================================ +02:54:39 Slot Id : <78> +02:54:39 Transaction Type : REQUEST +02:54:39 Received From : +02:54:39 ============================================================================ +02:54:39 FNo. Len. Field Value +02:54:39 ============================================================================ +02:54:39 [ 1] [ 4] [0800] +02:54:39 [ 7] [ 10] [0319075347] +02:54:39 [ 11] [ 6] [153861] +02:54:39 [ 70] [ 3] [301] +02:54:39 ============================================================================ +02:54:39 + + +waiting on router queue for slot.... +02:54:39 Sending to : +02:54:39 ============================================================================ +02:54:39 ============================================================================ +02:54:39 Slot Id : <78> +02:54:39 Transaction Type : RESPONSE +02:54:39 Received From : +02:54:39 ============================================================================ +02:54:39 FNo. Len. Field Value +02:54:39 ============================================================================ +02:54:39 [ 1] [ 4] [0810] +02:54:39 [ 7] [ 10] [0319075347] +02:54:39 [ 11] [ 6] [153861] +02:54:39 [ 39] [ 2] [00] +02:54:39 [ 70] [ 3] [301] +02:54:39 ============================================================================ +02:54:39 Calculate Source COMM Id = 2 +02:54:39 ============================================================================ +02:54:39 + + +waiting on router queue for slot.... +02:54:50 ============================================================================ +02:54:50 Slot Id : <54> +02:54:50 Transaction Type : REQUEST +02:54:50 Received From : +02:54:50 ============================================================================ +02:54:50 FNo. Len. Field Value +02:54:50 ============================================================================ +02:54:50 [ 1] [ 4] [0800] +02:54:50 [ 7] [ 10] [0319075357] +02:54:50 [ 11] [ 6] [153862] +02:54:50 [ 70] [ 3] [301] +02:54:50 ============================================================================ +02:54:50 + + +waiting on router queue for slot.... +02:54:50 Sending to : +02:54:50 ============================================================================ +02:54:50 ============================================================================ +02:54:50 Slot Id : <54> +02:54:50 Transaction Type : RESPONSE +02:54:50 Received From : +02:54:50 ============================================================================ +02:54:50 FNo. Len. Field Value +02:54:50 ============================================================================ +02:54:50 [ 1] [ 4] [0810] +02:54:50 [ 7] [ 10] [0319075357] +02:54:50 [ 11] [ 6] [153862] +02:54:50 [ 39] [ 2] [00] +02:54:50 [ 70] [ 3] [301] +02:54:50 ============================================================================ +02:54:50 Calculate Source COMM Id = 2 +02:54:50 ============================================================================ +02:54:50 + + +waiting on router queue for slot.... +02:54:56 ============================================================================ +02:54:56 Slot Id : <81> +02:54:56 Transaction Type : REQUEST +02:54:56 Received From : +02:54:56 ============================================================================ +02:54:56 FNo. Len. Field Value +02:54:56 ============================================================================ +02:54:56 [ 1] [ 4] [0800] +02:54:56 [ 7] [ 10] [0319200242] +02:54:56 [ 11] [ 6] [087573] +02:54:56 [ 37] [ 12] [57903087573] +02:54:56 [ 70] [ 3] [301] +02:54:56 ============================================================================ +02:54:56 + + +waiting on router queue for slot.... +02:54:56 Sending to : +02:54:56 ============================================================================ +02:54:56 ============================================================================ +02:54:56 Slot Id : <81> +02:54:56 Transaction Type : RESPONSE +02:54:56 Received From : +02:54:56 ============================================================================ +02:54:56 FNo. Len. Field Value +02:54:56 ============================================================================ +02:54:56 [ 1] [ 4] [0810] +02:54:56 [ 7] [ 10] [0319200242] +02:54:56 [ 11] [ 6] [087573] +02:54:56 [ 37] [ 12] [579030875730] +02:54:56 [ 39] [ 2] [00] +02:54:56 [ 70] [ 3] [810] +02:54:56 ============================================================================ +02:54:56 Calculate Source COMM Id = 1 +02:54:56 ============================================================================ +02:54:56 + + +waiting on router queue for slot.... +02:55:06 ============================================================================ +02:55:06 Slot Id : <24> +02:55:06 Transaction Type : REQUEST +02:55:06 Received From : +02:55:06 ============================================================================ +02:55:06 FNo. Len. Field Value +02:55:06 ============================================================================ +02:55:06 [ 1] [ 4] [0800] +02:55:06 [ 7] [ 10] [0319075413] +02:55:06 [ 11] [ 6] [153863] +02:55:06 [ 70] [ 3] [301] +02:55:06 ============================================================================ +02:55:06 + + +waiting on router queue for slot.... +02:55:06 Sending to : +02:55:06 ============================================================================ +02:55:06 ============================================================================ +02:55:06 Slot Id : <24> +02:55:06 Transaction Type : RESPONSE +02:55:06 Received From : +02:55:06 ============================================================================ +02:55:06 FNo. Len. Field Value +02:55:06 ============================================================================ +02:55:06 [ 1] [ 4] [0810] +02:55:06 [ 7] [ 10] [0319075413] +02:55:06 [ 11] [ 6] [153863] +02:55:06 [ 39] [ 2] [00] +02:55:06 [ 70] [ 3] [301] +02:55:06 ============================================================================ +02:55:06 Calculate Source COMM Id = 2 +02:55:06 ============================================================================ +02:55:06 + + +waiting on router queue for slot.... +02:55:13 ============================================================================ +02:55:13 Slot Id : <57> +02:55:13 Transaction Type : REQUEST +02:55:13 Received From : +02:55:13 ============================================================================ +02:55:13 FNo. Len. Field Value +02:55:13 ============================================================================ +02:55:13 [ 1] [ 4] [0800] +02:55:13 [ 2] [ 5] [02531] +02:55:13 [ 3] [ 6] [579028] +02:55:13 [ 7] [ 10] [0319195513] +02:55:13 [ 11] [ 6] [806581] +02:55:13 [ 15] [ 10] [0319195513] +02:55:13 [ 37] [ 11] [57902806581] +02:55:13 [ 70] [ 3] [001] +02:55:13 ============================================================================ +02:55:13 + + +waiting on router queue for slot.... +02:55:13 ============================================================================ +02:55:13 Slot Id : <57> +02:55:13 Transaction Type : RESPONSE +02:55:13 Received From : +02:55:13 ============================================================================ +02:55:13 FNo. Len. Field Value +02:55:13 ============================================================================ +02:55:13 [ 1] [ 4] [0810] +02:55:13 [ 7] [ 10] [0319195513] +02:55:13 [ 11] [ 6] [806581] +02:55:13 [ 15] [ 4] [0319] +02:55:13 [ 37] [ 12] [57902806581] +02:55:13 [ 39] [ 2] [00] +02:55:13 [ 70] [ 3] [001] +02:55:13 ============================================================================ +02:55:13 Sending to : +02:55:13 ============================================================================ +02:55:13 + + +waiting on router queue for slot.... +02:55:17 ============================================================================ +02:55:17 Slot Id : <34> +02:55:17 Transaction Type : REQUEST +02:55:17 Received From : +02:55:17 ============================================================================ +02:55:17 FNo. Len. Field Value +02:55:17 ============================================================================ +02:55:17 [ 1] [ 4] [0800] +02:55:17 [ 7] [ 10] [0319075424] +02:55:17 [ 11] [ 6] [153864] +02:55:17 [ 70] [ 3] [301] +02:55:17 ============================================================================ +02:55:17 + + +waiting on router queue for slot.... +02:55:17 Sending to : +02:55:17 ============================================================================ +02:55:17 ============================================================================ +02:55:17 Slot Id : <34> +02:55:17 Transaction Type : RESPONSE +02:55:17 Received From : +02:55:17 ============================================================================ +02:55:17 FNo. Len. Field Value +02:55:17 ============================================================================ +02:55:17 [ 1] [ 4] [0810] +02:55:17 [ 7] [ 10] [0319075424] +02:55:17 [ 11] [ 6] [153864] +02:55:17 [ 39] [ 2] [00] +02:55:17 [ 70] [ 3] [301] +02:55:17 ============================================================================ +02:55:17 Calculate Source COMM Id = 2 +02:55:17 ============================================================================ +02:55:17 + + +waiting on router queue for slot.... +02:55:25 ============================================================================ +02:55:25 Slot Id : <86> +02:55:25 Transaction Type : REQUEST +02:55:25 Received From : +02:55:25 ============================================================================ +02:55:25 FNo. Len. Field Value +02:55:25 ============================================================================ +02:55:25 [ 1] [ 4] [0800] +02:55:25 [ 7] [ 10] [0320100712] +02:55:25 [ 11] [ 6] [030712] +02:55:25 [ 37] [ 12] [57903030712] +02:55:25 [ 70] [ 3] [301] +02:55:25 ============================================================================ +02:55:25 + + +waiting on router queue for slot.... +02:55:25 Sending to : +02:55:25 ============================================================================ +02:55:25 ============================================================================ +02:55:25 Slot Id : <86> +02:55:25 Transaction Type : RESPONSE +02:55:25 Received From : +02:55:25 ============================================================================ +02:55:25 FNo. Len. Field Value +02:55:25 ============================================================================ +02:55:25 [ 1] [ 4] [0810] +02:55:25 [ 7] [ 10] [0320100712] +02:55:25 [ 11] [ 6] [030712] +02:55:25 [ 37] [ 12] [579030307120] +02:55:25 [ 39] [ 2] [00] +02:55:25 [ 70] [ 3] [810] +02:55:25 ============================================================================ +02:55:25 Calculate Source COMM Id = 6 +02:55:25 ============================================================================ +02:55:25 + + +waiting on router queue for slot.... +02:55:28 ============================================================================ +02:55:28 Slot Id : <42> +02:55:28 Transaction Type : REQUEST +02:55:28 Received From : +02:55:28 ============================================================================ +02:55:28 FNo. Len. Field Value +02:55:28 ============================================================================ +02:55:28 [ 1] [ 4] [0800] +02:55:28 [ 7] [ 10] [0319075435] +02:55:28 [ 11] [ 6] [153865] +02:55:28 [ 70] [ 3] [301] +02:55:28 ============================================================================ +02:55:28 + + +waiting on router queue for slot.... +02:55:28 Sending to : +02:55:28 ============================================================================ +02:55:28 ============================================================================ +02:55:28 Slot Id : <42> +02:55:28 Transaction Type : RESPONSE +02:55:28 Received From : +02:55:28 ============================================================================ +02:55:28 FNo. Len. Field Value +02:55:28 ============================================================================ +02:55:28 [ 1] [ 4] [0810] +02:55:28 [ 7] [ 10] [0319075435] +02:55:28 [ 11] [ 6] [153865] +02:55:28 [ 39] [ 2] [00] +02:55:28 [ 70] [ 3] [301] +02:55:28 ============================================================================ +02:55:28 Calculate Source COMM Id = 2 +02:55:28 ============================================================================ +02:55:28 + + +waiting on router queue for slot.... +02:55:39 ============================================================================ +02:55:39 Slot Id : <88> +02:55:39 Transaction Type : REQUEST +02:55:39 Received From : +02:55:39 ============================================================================ +02:55:39 FNo. Len. Field Value +02:55:39 ============================================================================ +02:55:39 [ 1] [ 4] [0800] +02:55:39 [ 7] [ 10] [0319075446] +02:55:39 [ 11] [ 6] [153866] +02:55:39 [ 70] [ 3] [301] +02:55:39 ============================================================================ +02:55:39 + + +waiting on router queue for slot.... +02:55:39 Sending to : +02:55:39 ============================================================================ +02:55:39 ============================================================================ +02:55:39 Slot Id : <88> +02:55:39 Transaction Type : RESPONSE +02:55:39 Received From : +02:55:39 ============================================================================ +02:55:39 FNo. Len. Field Value +02:55:39 ============================================================================ +02:55:39 [ 1] [ 4] [0810] +02:55:39 [ 7] [ 10] [0319075446] +02:55:39 [ 11] [ 6] [153866] +02:55:39 [ 39] [ 2] [00] +02:55:39 [ 70] [ 3] [301] +02:55:39 ============================================================================ +02:55:39 Calculate Source COMM Id = 2 +02:55:39 ============================================================================ +02:55:39 + + +waiting on router queue for slot.... +02:55:54 ============================================================================ +02:55:54 Slot Id : <49> +02:55:54 Transaction Type : REQUEST +02:55:54 Received From : +02:55:54 ============================================================================ +02:55:54 FNo. Len. Field Value +02:55:54 ============================================================================ +02:55:54 [ 1] [ 4] [0800] +02:55:54 [ 7] [ 10] [0319075502] +02:55:54 [ 11] [ 6] [153867] +02:55:54 [ 70] [ 3] [301] +02:55:54 ============================================================================ +02:55:54 + + +waiting on router queue for slot.... +02:55:54 Sending to : +02:55:54 ============================================================================ +02:55:54 ============================================================================ +02:55:54 Slot Id : <49> +02:55:54 Transaction Type : RESPONSE +02:55:54 Received From : +02:55:54 ============================================================================ +02:55:54 FNo. Len. Field Value +02:55:54 ============================================================================ +02:55:54 [ 1] [ 4] [0810] +02:55:54 [ 7] [ 10] [0319075502] +02:55:54 [ 11] [ 6] [153867] +02:55:54 [ 39] [ 2] [00] +02:55:54 [ 70] [ 3] [301] +02:55:54 ============================================================================ +02:55:54 Calculate Source COMM Id = 2 +02:55:54 ============================================================================ +02:55:54 + + +waiting on router queue for slot.... +02:56:06 ============================================================================ +02:56:06 Slot Id : <5> +02:56:06 Transaction Type : REQUEST +02:56:06 Received From : +02:56:06 ============================================================================ +02:56:06 FNo. Len. Field Value +02:56:06 ============================================================================ +02:56:06 [ 1] [ 4] [0800] +02:56:06 [ 7] [ 10] [0319075513] +02:56:06 [ 11] [ 6] [153868] +02:56:06 [ 70] [ 3] [301] +02:56:06 ============================================================================ +02:56:06 + + +waiting on router queue for slot.... +02:56:06 Sending to : +02:56:06 ============================================================================ +02:56:06 ============================================================================ +02:56:06 Slot Id : <5> +02:56:06 Transaction Type : RESPONSE +02:56:06 Received From : +02:56:06 ============================================================================ +02:56:06 FNo. Len. Field Value +02:56:06 ============================================================================ +02:56:06 [ 1] [ 4] [0810] +02:56:06 [ 7] [ 10] [0319075513] +02:56:06 [ 11] [ 6] [153868] +02:56:06 [ 39] [ 2] [00] +02:56:06 [ 70] [ 3] [301] +02:56:06 ============================================================================ +02:56:06 Calculate Source COMM Id = 2 +02:56:06 ============================================================================ +02:56:06 + + +waiting on router queue for slot.... +02:56:15 ============================================================================ +02:56:15 Slot Id : <89> +02:56:15 Transaction Type : REQUEST +02:56:15 Received From : +02:56:15 ============================================================================ +02:56:15 FNo. Len. Field Value +02:56:15 ============================================================================ +02:56:15 [ 1] [ 4] [0800] +02:56:15 [ 2] [ 5] [02531] +02:56:15 [ 3] [ 6] [579028] +02:56:15 [ 7] [ 10] [0319195615] +02:56:15 [ 11] [ 6] [806582] +02:56:15 [ 15] [ 10] [0319195615] +02:56:15 [ 37] [ 11] [57902806582] +02:56:15 [ 70] [ 3] [001] +02:56:15 ============================================================================ +02:56:15 + + +waiting on router queue for slot.... +02:56:15 ============================================================================ +02:56:15 Slot Id : <89> +02:56:15 Transaction Type : RESPONSE +02:56:15 Received From : +02:56:15 ============================================================================ +02:56:15 FNo. Len. Field Value +02:56:15 ============================================================================ +02:56:15 [ 1] [ 4] [0810] +02:56:15 [ 7] [ 10] [0319195615] +02:56:15 [ 11] [ 6] [806582] +02:56:15 [ 15] [ 4] [0319] +02:56:15 [ 37] [ 12] [57902806582] +02:56:15 [ 39] [ 2] [00] +02:56:15 [ 70] [ 3] [001] +02:56:15 ============================================================================ +02:56:15 Sending to : +02:56:15 ============================================================================ +02:56:15 + + +waiting on router queue for slot.... +02:56:18 ============================================================================ +02:56:18 Slot Id : <79> +02:56:18 Transaction Type : REQUEST +02:56:18 Received From : +02:56:18 ============================================================================ +02:56:18 FNo. Len. Field Value +02:56:18 ============================================================================ +02:56:18 [ 1] [ 4] [0800] +02:56:18 [ 7] [ 10] [0319075525] +02:56:18 [ 11] [ 6] [153869] +02:56:18 [ 70] [ 3] [301] +02:56:18 ============================================================================ +02:56:18 + + +waiting on router queue for slot.... +02:56:18 Sending to : +02:56:18 ============================================================================ +02:56:18 ============================================================================ +02:56:18 Slot Id : <79> +02:56:18 Transaction Type : RESPONSE +02:56:18 Received From : +02:56:18 ============================================================================ +02:56:18 FNo. Len. Field Value +02:56:18 ============================================================================ +02:56:18 [ 1] [ 4] [0810] +02:56:18 [ 7] [ 10] [0319075525] +02:56:18 [ 11] [ 6] [153869] +02:56:18 [ 39] [ 2] [00] +02:56:18 [ 70] [ 3] [301] +02:56:18 ============================================================================ +02:56:18 Calculate Source COMM Id = 2 +02:56:18 ============================================================================ +02:56:18 + + +waiting on router queue for slot.... +02:56:21 ============================================================================ +02:56:21 Slot Id : <59> +02:56:21 Transaction Type : REQUEST +02:56:21 Received From : +02:56:21 ============================================================================ +02:56:21 FNo. Len. Field Value +02:56:21 ============================================================================ +02:56:21 [ 1] [ 4] [0800] +02:56:21 [ 7] [ 10] [0319195412] +02:56:21 [ 11] [ 6] [032224] +02:56:21 [ 37] [ 12] [57902032224] +02:56:21 [ 70] [ 3] [301] +02:56:21 ============================================================================ +02:56:21 + + +waiting on router queue for slot.... +02:56:21 Sending to : +02:56:21 ============================================================================ +02:56:21 ============================================================================ +02:56:21 Slot Id : <59> +02:56:21 Transaction Type : RESPONSE +02:56:21 Received From : +02:56:21 ============================================================================ +02:56:21 FNo. Len. Field Value +02:56:21 ============================================================================ +02:56:21 [ 1] [ 4] [0810] +02:56:21 [ 7] [ 10] [0319195412] +02:56:21 [ 11] [ 6] [032224] +02:56:21 [ 37] [ 12] [579020322240] +02:56:21 [ 39] [ 2] [00] +02:56:21 [ 70] [ 3] [810] +02:56:21 ============================================================================ +02:56:21 Calculate Source COMM Id = 4 +02:56:21 ============================================================================ +02:56:21 + + +waiting on router queue for slot.... +02:56:29 ============================================================================ +02:56:29 Slot Id : <84> +02:56:29 Transaction Type : REQUEST +02:56:29 Received From : +02:56:29 ============================================================================ +02:56:29 FNo. Len. Field Value +02:56:29 ============================================================================ +02:56:29 [ 1] [ 4] [0800] +02:56:29 [ 7] [ 10] [0319075536] +02:56:29 [ 11] [ 6] [153870] +02:56:29 [ 70] [ 3] [301] +02:56:29 ============================================================================ +02:56:29 + + +waiting on router queue for slot.... +02:56:29 Sending to : +02:56:29 ============================================================================ +02:56:29 ============================================================================ +02:56:29 Slot Id : <84> +02:56:29 Transaction Type : RESPONSE +02:56:29 Received From : +02:56:29 ============================================================================ +02:56:29 FNo. Len. Field Value +02:56:29 ============================================================================ +02:56:29 [ 1] [ 4] [0810] +02:56:29 [ 7] [ 10] [0319075536] +02:56:29 [ 11] [ 6] [153870] +02:56:29 [ 39] [ 2] [00] +02:56:29 [ 70] [ 3] [301] +02:56:29 ============================================================================ +02:56:29 Calculate Source COMM Id = 2 +02:56:29 ============================================================================ +02:56:29 + + +waiting on router queue for slot.... +02:56:30 ============================================================================ +02:56:30 Slot Id : <62> +02:56:30 Transaction Type : REQUEST +02:56:30 Received From : +02:56:30 ============================================================================ +02:56:30 FNo. Len. Field Value +02:56:30 ============================================================================ +02:56:30 [ 1] [ 4] [0800] +02:56:30 [ 7] [ 10] [0320100817] +02:56:30 [ 11] [ 6] [030817] +02:56:30 [ 37] [ 12] [57903030817] +02:56:30 [ 70] [ 3] [301] +02:56:30 ============================================================================ +02:56:30 + + +waiting on router queue for slot.... +02:56:30 Sending to : +02:56:30 ============================================================================ +02:56:30 ============================================================================ +02:56:30 Slot Id : <62> +02:56:30 Transaction Type : RESPONSE +02:56:30 Received From : +02:56:30 ============================================================================ +02:56:30 FNo. Len. Field Value +02:56:30 ============================================================================ +02:56:30 [ 1] [ 4] [0810] +02:56:30 [ 7] [ 10] [0320100817] +02:56:30 [ 11] [ 6] [030817] +02:56:30 [ 37] [ 12] [579030308170] +02:56:30 [ 39] [ 2] [00] +02:56:30 [ 70] [ 3] [810] +02:56:30 ============================================================================ +02:56:30 Calculate Source COMM Id = 6 +02:56:30 ============================================================================ +02:56:30 + + +waiting on router queue for slot.... +02:56:41 ============================================================================ +02:56:41 Slot Id : <67> +02:56:41 Transaction Type : REQUEST +02:56:41 Received From : +02:56:41 ============================================================================ +02:56:41 FNo. Len. Field Value +02:56:41 ============================================================================ +02:56:41 [ 1] [ 4] [0800] +02:56:41 [ 7] [ 10] [0319075548] +02:56:41 [ 11] [ 6] [153871] +02:56:41 [ 70] [ 3] [301] +02:56:41 ============================================================================ +02:56:41 + + +waiting on router queue for slot.... +02:56:41 Sending to : +02:56:41 ============================================================================ +02:56:41 ============================================================================ +02:56:41 Slot Id : <67> +02:56:41 Transaction Type : RESPONSE +02:56:41 Received From : +02:56:41 ============================================================================ +02:56:41 FNo. Len. Field Value +02:56:41 ============================================================================ +02:56:41 [ 1] [ 4] [0810] +02:56:41 [ 7] [ 10] [0319075548] +02:56:41 [ 11] [ 6] [153871] +02:56:41 [ 39] [ 2] [00] +02:56:41 [ 70] [ 3] [301] +02:56:41 ============================================================================ +02:56:41 Calculate Source COMM Id = 2 +02:56:41 ============================================================================ +02:56:41 + + +waiting on router queue for slot.... +02:56:52 ============================================================================ +02:56:52 Slot Id : <99> +02:56:52 Transaction Type : REQUEST +02:56:52 Received From : +02:56:52 ============================================================================ +02:56:52 FNo. Len. Field Value +02:56:52 ============================================================================ +02:56:52 [ 1] [ 4] [0800] +02:56:52 [ 7] [ 10] [0319075559] +02:56:52 [ 11] [ 6] [153872] +02:56:52 [ 70] [ 3] [301] +02:56:52 ============================================================================ +02:56:52 + + +waiting on router queue for slot.... +02:56:52 Sending to : +02:56:52 ============================================================================ +02:56:52 ============================================================================ +02:56:52 Slot Id : <99> +02:56:52 Transaction Type : RESPONSE +02:56:52 Received From : +02:56:52 ============================================================================ +02:56:52 FNo. Len. Field Value +02:56:52 ============================================================================ +02:56:52 [ 1] [ 4] [0810] +02:56:52 [ 7] [ 10] [0319075559] +02:56:52 [ 11] [ 6] [153872] +02:56:52 [ 39] [ 2] [00] +02:56:52 [ 70] [ 3] [301] +02:56:52 ============================================================================ +02:56:52 Calculate Source COMM Id = 2 +02:56:52 ============================================================================ +02:56:52 + + +waiting on router queue for slot.... +02:57:04 ============================================================================ +02:57:04 Slot Id : <39> +02:57:04 Transaction Type : REQUEST +02:57:04 Received From : +02:57:04 ============================================================================ +02:57:04 FNo. Len. Field Value +02:57:04 ============================================================================ +02:57:04 [ 1] [ 4] [0800] +02:57:04 [ 7] [ 10] [0319075610] +02:57:04 [ 11] [ 6] [153873] +02:57:04 [ 70] [ 3] [301] +02:57:04 ============================================================================ +02:57:04 + + +waiting on router queue for slot.... +02:57:04 Sending to : +02:57:04 ============================================================================ +02:57:04 ============================================================================ +02:57:04 Slot Id : <39> +02:57:04 Transaction Type : RESPONSE +02:57:04 Received From : +02:57:04 ============================================================================ +02:57:04 FNo. Len. Field Value +02:57:04 ============================================================================ +02:57:04 [ 1] [ 4] [0810] +02:57:04 [ 7] [ 10] [0319075610] +02:57:04 [ 11] [ 6] [153873] +02:57:04 [ 39] [ 2] [00] +02:57:04 [ 70] [ 3] [301] +02:57:04 ============================================================================ +02:57:04 Calculate Source COMM Id = 2 +02:57:04 ============================================================================ +02:57:04 + + +waiting on router queue for slot.... +02:57:17 ============================================================================ +02:57:17 Slot Id : <51> +02:57:17 Transaction Type : REQUEST +02:57:17 Received From : +02:57:17 ============================================================================ +02:57:17 FNo. Len. Field Value +02:57:17 ============================================================================ +02:57:17 [ 1] [ 4] [0800] +02:57:17 [ 2] [ 5] [02531] +02:57:17 [ 3] [ 6] [579028] +02:57:17 [ 7] [ 10] [0319195717] +02:57:17 [ 11] [ 6] [806583] +02:57:17 [ 15] [ 10] [0319195717] +02:57:17 [ 37] [ 11] [57902806583] +02:57:17 [ 70] [ 3] [001] +02:57:17 ============================================================================ +02:57:17 + + +waiting on router queue for slot.... +02:57:17 ============================================================================ +02:57:17 Slot Id : <51> +02:57:17 Transaction Type : RESPONSE +02:57:17 Received From : +02:57:17 ============================================================================ +02:57:17 FNo. Len. Field Value +02:57:17 ============================================================================ +02:57:17 [ 1] [ 4] [0810] +02:57:17 [ 7] [ 10] [0319195717] +02:57:17 [ 11] [ 6] [806583] +02:57:17 [ 15] [ 4] [0319] +02:57:17 [ 37] [ 12] [57902806583] +02:57:17 [ 39] [ 2] [00] +02:57:17 [ 70] [ 3] [001] +02:57:17 ============================================================================ +02:57:17 Sending to : +02:57:17 ============================================================================ +02:57:17 + + +waiting on router queue for slot.... +02:57:19 ============================================================================ +02:57:19 Slot Id : <64> +02:57:19 Transaction Type : REQUEST +02:57:19 Received From : +02:57:19 ============================================================================ +02:57:19 FNo. Len. Field Value +02:57:19 ============================================================================ +02:57:19 [ 1] [ 4] [0800] +02:57:19 [ 7] [ 10] [0319075626] +02:57:19 [ 11] [ 6] [153874] +02:57:19 [ 70] [ 3] [301] +02:57:19 ============================================================================ +02:57:19 + + +waiting on router queue for slot.... +02:57:19 Sending to : +02:57:19 ============================================================================ +02:57:19 ============================================================================ +02:57:19 Slot Id : <64> +02:57:19 Transaction Type : RESPONSE +02:57:19 Received From : +02:57:19 ============================================================================ +02:57:19 FNo. Len. Field Value +02:57:19 ============================================================================ +02:57:19 [ 1] [ 4] [0810] +02:57:19 [ 7] [ 10] [0319075626] +02:57:19 [ 11] [ 6] [153874] +02:57:19 [ 39] [ 2] [00] +02:57:19 [ 70] [ 3] [301] +02:57:19 ============================================================================ +02:57:19 Calculate Source COMM Id = 2 +02:57:19 ============================================================================ +02:57:19 + + +waiting on router queue for slot.... +02:57:30 ============================================================================ +02:57:30 Slot Id : <82> +02:57:30 Transaction Type : REQUEST +02:57:30 Received From : +02:57:30 ============================================================================ +02:57:30 FNo. Len. Field Value +02:57:30 ============================================================================ +02:57:30 [ 1] [ 4] [0800] +02:57:30 [ 7] [ 10] [0319075637] +02:57:30 [ 11] [ 6] [153875] +02:57:30 [ 70] [ 3] [301] +02:57:30 ============================================================================ +02:57:30 + + +waiting on router queue for slot.... +02:57:30 Sending to : +02:57:30 ============================================================================ +02:57:30 ============================================================================ +02:57:30 Slot Id : <82> +02:57:30 Transaction Type : RESPONSE +02:57:30 Received From : +02:57:30 ============================================================================ +02:57:30 FNo. Len. Field Value +02:57:30 ============================================================================ +02:57:30 [ 1] [ 4] [0810] +02:57:30 [ 7] [ 10] [0319075637] +02:57:30 [ 11] [ 6] [153875] +02:57:30 [ 39] [ 2] [00] +02:57:30 [ 70] [ 3] [301] +02:57:30 ============================================================================ +02:57:30 Calculate Source COMM Id = 2 +02:57:30 ============================================================================ +02:57:30 + + +waiting on router queue for slot.... +02:57:35 ============================================================================ +02:57:35 Slot Id : <93> +02:57:35 Transaction Type : REQUEST +02:57:35 Received From : +02:57:35 ============================================================================ +02:57:35 FNo. Len. Field Value +02:57:35 ============================================================================ +02:57:35 [ 1] [ 4] [0800] +02:57:35 [ 7] [ 10] [0320100922] +02:57:35 [ 11] [ 6] [030922] +02:57:35 [ 37] [ 12] [57903030922] +02:57:35 [ 70] [ 3] [301] +02:57:35 ============================================================================ +02:57:35 + + +waiting on router queue for slot.... +02:57:35 Sending to : +02:57:35 ============================================================================ +02:57:35 ============================================================================ +02:57:35 Slot Id : <93> +02:57:35 Transaction Type : RESPONSE +02:57:35 Received From : +02:57:35 ============================================================================ +02:57:35 FNo. Len. Field Value +02:57:35 ============================================================================ +02:57:35 [ 1] [ 4] [0810] +02:57:35 [ 7] [ 10] [0320100922] +02:57:35 [ 11] [ 6] [030922] +02:57:35 [ 37] [ 12] [579030309220] +02:57:35 [ 39] [ 2] [00] +02:57:35 [ 70] [ 3] [810] +02:57:35 ============================================================================ +02:57:35 Calculate Source COMM Id = 6 +02:57:35 ============================================================================ +02:57:35 + + +waiting on router queue for slot.... +02:57:40 ============================================================================ +02:57:40 Slot Id : <56> +02:57:40 Transaction Type : REQUEST +02:57:40 Received From : +02:57:40 ============================================================================ +02:57:40 FNo. Len. Field Value +02:57:40 ============================================================================ +02:57:40 [ 1] [ 4] [0800] +02:57:40 [ 7] [ 10] [0319075647] +02:57:40 [ 11] [ 6] [153876] +02:57:40 [ 70] [ 3] [301] +02:57:40 ============================================================================ +02:57:40 + + +waiting on router queue for slot.... +02:57:40 Sending to : +02:57:40 ============================================================================ +02:57:40 ============================================================================ +02:57:40 Slot Id : <56> +02:57:40 Transaction Type : RESPONSE +02:57:40 Received From : +02:57:40 ============================================================================ +02:57:40 FNo. Len. Field Value +02:57:40 ============================================================================ +02:57:40 [ 1] [ 4] [0810] +02:57:40 [ 7] [ 10] [0319075647] +02:57:40 [ 11] [ 6] [153876] +02:57:40 [ 39] [ 2] [00] +02:57:40 [ 70] [ 3] [301] +02:57:40 ============================================================================ +02:57:40 Calculate Source COMM Id = 2 +02:57:40 ============================================================================ +02:57:40 + + +waiting on router queue for slot.... +02:57:51 ============================================================================ +02:57:51 Slot Id : <91> +02:57:51 Transaction Type : REQUEST +02:57:51 Received From : +02:57:51 ============================================================================ +02:57:51 FNo. Len. Field Value +02:57:51 ============================================================================ +02:57:51 [ 1] [ 4] [0800] +02:57:51 [ 7] [ 10] [0319075658] +02:57:51 [ 11] [ 6] [153877] +02:57:51 [ 70] [ 3] [301] +02:57:51 ============================================================================ +02:57:51 + + +waiting on router queue for slot.... +02:57:51 Sending to : +02:57:51 ============================================================================ +02:57:51 ============================================================================ +02:57:51 Slot Id : <91> +02:57:51 Transaction Type : RESPONSE +02:57:51 Received From : +02:57:51 ============================================================================ +02:57:51 FNo. Len. Field Value +02:57:51 ============================================================================ +02:57:51 [ 1] [ 4] [0810] +02:57:51 [ 7] [ 10] [0319075658] +02:57:51 [ 11] [ 6] [153877] +02:57:51 [ 39] [ 2] [00] +02:57:51 [ 70] [ 3] [301] +02:57:51 ============================================================================ +02:57:51 Calculate Source COMM Id = 2 +02:57:51 ============================================================================ +02:57:51 + + +waiting on router queue for slot.... +02:58:06 ============================================================================ +02:58:06 Slot Id : <100> +02:58:06 Transaction Type : REQUEST +02:58:06 Received From : +02:58:06 ============================================================================ +02:58:06 FNo. Len. Field Value +02:58:06 ============================================================================ +02:58:06 [ 1] [ 4] [0800] +02:58:06 [ 7] [ 10] [0319075713] +02:58:06 [ 11] [ 6] [153878] +02:58:06 [ 70] [ 3] [301] +02:58:06 ============================================================================ +02:58:06 + + +waiting on router queue for slot.... +02:58:06 Sending to : +02:58:06 ============================================================================ +02:58:06 ============================================================================ +02:58:06 Slot Id : <100> +02:58:06 Transaction Type : RESPONSE +02:58:06 Received From : +02:58:06 ============================================================================ +02:58:06 FNo. Len. Field Value +02:58:06 ============================================================================ +02:58:06 [ 1] [ 4] [0810] +02:58:06 [ 7] [ 10] [0319075713] +02:58:06 [ 11] [ 6] [153878] +02:58:06 [ 39] [ 2] [00] +02:58:06 [ 70] [ 3] [301] +02:58:06 ============================================================================ +02:58:06 Calculate Source COMM Id = 2 +02:58:06 ============================================================================ +02:58:06 + + +waiting on router queue for slot.... +02:58:17 ============================================================================ +02:58:17 Slot Id : <77> +02:58:17 Transaction Type : REQUEST +02:58:17 Received From : +02:58:17 ============================================================================ +02:58:17 FNo. Len. Field Value +02:58:17 ============================================================================ +02:58:17 [ 1] [ 4] [0800] +02:58:17 [ 7] [ 10] [0319075724] +02:58:17 [ 11] [ 6] [153879] +02:58:17 [ 70] [ 3] [301] +02:58:17 ============================================================================ +02:58:17 + + +waiting on router queue for slot.... +02:58:17 Sending to : +02:58:17 ============================================================================ +02:58:17 ============================================================================ +02:58:17 Slot Id : <77> +02:58:17 Transaction Type : RESPONSE +02:58:17 Received From : +02:58:17 ============================================================================ +02:58:17 FNo. Len. Field Value +02:58:17 ============================================================================ +02:58:17 [ 1] [ 4] [0810] +02:58:17 [ 7] [ 10] [0319075724] +02:58:17 [ 11] [ 6] [153879] +02:58:17 [ 39] [ 2] [00] +02:58:17 [ 70] [ 3] [301] +02:58:17 ============================================================================ +02:58:17 Calculate Source COMM Id = 2 +02:58:17 ============================================================================ +02:58:17 + + +waiting on router queue for slot.... +02:58:19 ============================================================================ +02:58:19 Slot Id : <65> +02:58:19 Transaction Type : REQUEST +02:58:19 Received From : +02:58:19 ============================================================================ +02:58:19 FNo. Len. Field Value +02:58:19 ============================================================================ +02:58:19 [ 1] [ 4] [0800] +02:58:19 [ 2] [ 5] [02531] +02:58:19 [ 3] [ 6] [579028] +02:58:19 [ 7] [ 10] [0319195819] +02:58:19 [ 11] [ 6] [806584] +02:58:19 [ 15] [ 10] [0319195819] +02:58:19 [ 37] [ 11] [57902806584] +02:58:19 [ 70] [ 3] [001] +02:58:19 ============================================================================ +02:58:19 + + +waiting on router queue for slot.... +02:58:19 ============================================================================ +02:58:19 Slot Id : <65> +02:58:19 Transaction Type : RESPONSE +02:58:19 Received From : +02:58:19 ============================================================================ +02:58:19 FNo. Len. Field Value +02:58:19 ============================================================================ +02:58:19 [ 1] [ 4] [0810] +02:58:19 [ 7] [ 10] [0319195819] +02:58:19 [ 11] [ 6] [806584] +02:58:19 [ 15] [ 4] [0319] +02:58:19 [ 37] [ 12] [57902806584] +02:58:19 [ 39] [ 2] [00] +02:58:19 [ 70] [ 3] [001] +02:58:19 ============================================================================ +02:58:19 Sending to : +02:58:19 ============================================================================ +02:58:19 + + +waiting on router queue for slot.... +02:58:33 ============================================================================ +02:58:33 Slot Id : <72> +02:58:33 Transaction Type : REQUEST +02:58:33 Received From : +02:58:33 ============================================================================ +02:58:33 FNo. Len. Field Value +02:58:33 ============================================================================ +02:58:33 [ 1] [ 4] [0800] +02:58:33 [ 7] [ 10] [0319075740] +02:58:33 [ 11] [ 6] [153880] +02:58:33 [ 70] [ 3] [301] +02:58:33 ============================================================================ +02:58:33 + + +waiting on router queue for slot.... +02:58:33 Sending to : +02:58:33 ============================================================================ +02:58:33 ============================================================================ +02:58:33 Slot Id : <72> +02:58:33 Transaction Type : RESPONSE +02:58:33 Received From : +02:58:33 ============================================================================ +02:58:33 FNo. Len. Field Value +02:58:33 ============================================================================ +02:58:33 [ 1] [ 4] [0810] +02:58:33 [ 7] [ 10] [0319075740] +02:58:33 [ 11] [ 6] [153880] +02:58:33 [ 39] [ 2] [00] +02:58:33 [ 70] [ 3] [301] +02:58:33 ============================================================================ +02:58:33 Calculate Source COMM Id = 2 +02:58:33 ============================================================================ +02:58:33 + + +waiting on router queue for slot.... +02:58:40 ============================================================================ +02:58:40 Slot Id : <106> +02:58:40 Transaction Type : REQUEST +02:58:40 Received From : +02:58:40 ============================================================================ +02:58:40 FNo. Len. Field Value +02:58:40 ============================================================================ +02:58:40 [ 1] [ 4] [0800] +02:58:40 [ 7] [ 10] [0320101027] +02:58:40 [ 11] [ 6] [031027] +02:58:40 [ 37] [ 12] [57903031027] +02:58:40 [ 70] [ 3] [301] +02:58:40 ============================================================================ +02:58:40 + + +waiting on router queue for slot.... +02:58:40 Sending to : +02:58:40 ============================================================================ +02:58:40 ============================================================================ +02:58:40 Slot Id : <106> +02:58:40 Transaction Type : RESPONSE +02:58:40 Received From : +02:58:40 ============================================================================ +02:58:40 FNo. Len. Field Value +02:58:40 ============================================================================ +02:58:40 [ 1] [ 4] [0810] +02:58:40 [ 7] [ 10] [0320101027] +02:58:40 [ 11] [ 6] [031027] +02:58:40 [ 37] [ 12] [579030310270] +02:58:40 [ 39] [ 2] [00] +02:58:40 [ 70] [ 3] [810] +02:58:40 ============================================================================ +02:58:40 Calculate Source COMM Id = 6 +02:58:40 ============================================================================ +02:58:40 + + +waiting on router queue for slot.... +02:58:44 ============================================================================ +02:58:44 Slot Id : <76> +02:58:44 Transaction Type : REQUEST +02:58:44 Received From : +02:58:44 ============================================================================ +02:58:44 FNo. Len. Field Value +02:58:44 ============================================================================ +02:58:44 [ 1] [ 4] [0800] +02:58:44 [ 7] [ 10] [0319075751] +02:58:44 [ 11] [ 6] [153881] +02:58:44 [ 70] [ 3] [301] +02:58:44 ============================================================================ +02:58:44 + + +waiting on router queue for slot.... +02:58:44 Sending to : +02:58:44 ============================================================================ +02:58:44 ============================================================================ +02:58:44 Slot Id : <76> +02:58:44 Transaction Type : RESPONSE +02:58:44 Received From : +02:58:44 ============================================================================ +02:58:44 FNo. Len. Field Value +02:58:44 ============================================================================ +02:58:44 [ 1] [ 4] [0810] +02:58:44 [ 7] [ 10] [0319075751] +02:58:44 [ 11] [ 6] [153881] +02:58:44 [ 39] [ 2] [00] +02:58:44 [ 70] [ 3] [301] +02:58:44 ============================================================================ +02:58:44 Calculate Source COMM Id = 2 +02:58:44 ============================================================================ +02:58:44 + + +waiting on router queue for slot.... +02:58:55 ============================================================================ +02:58:55 Slot Id : <66> +02:58:55 Transaction Type : REQUEST +02:58:55 Received From : +02:58:55 ============================================================================ +02:58:55 FNo. Len. Field Value +02:58:55 ============================================================================ +02:58:55 [ 1] [ 4] [0800] +02:58:55 [ 7] [ 10] [0319075802] +02:58:55 [ 11] [ 6] [153882] +02:58:55 [ 70] [ 3] [301] +02:58:55 ============================================================================ +02:58:55 + + +waiting on router queue for slot.... +02:58:55 Sending to : +02:58:55 ============================================================================ +02:58:55 ============================================================================ +02:58:55 Slot Id : <66> +02:58:55 Transaction Type : RESPONSE +02:58:55 Received From : +02:58:55 ============================================================================ +02:58:55 FNo. Len. Field Value +02:58:55 ============================================================================ +02:58:55 [ 1] [ 4] [0810] +02:58:55 [ 7] [ 10] [0319075802] +02:58:55 [ 11] [ 6] [153882] +02:58:55 [ 39] [ 2] [00] +02:58:55 [ 70] [ 3] [301] +02:58:55 ============================================================================ +02:58:55 Calculate Source COMM Id = 2 +02:58:55 ============================================================================ +02:58:55 + + +waiting on router queue for slot.... +02:59:05 ============================================================================ +02:59:05 Slot Id : <90> +02:59:05 Transaction Type : REQUEST +02:59:05 Received From : +02:59:05 ============================================================================ +02:59:05 FNo. Len. Field Value +02:59:05 ============================================================================ +02:59:05 [ 1] [ 4] [0800] +02:59:05 [ 7] [ 10] [0319075812] +02:59:05 [ 11] [ 6] [153883] +02:59:05 [ 70] [ 3] [301] +02:59:05 ============================================================================ +02:59:05 + + +waiting on router queue for slot.... +02:59:05 Sending to : +02:59:05 ============================================================================ +02:59:05 ============================================================================ +02:59:05 Slot Id : <90> +02:59:05 Transaction Type : RESPONSE +02:59:05 Received From : +02:59:05 ============================================================================ +02:59:05 FNo. Len. Field Value +02:59:05 ============================================================================ +02:59:05 [ 1] [ 4] [0810] +02:59:05 [ 7] [ 10] [0319075812] +02:59:05 [ 11] [ 6] [153883] +02:59:05 [ 39] [ 2] [00] +02:59:05 [ 70] [ 3] [301] +02:59:05 ============================================================================ +02:59:05 Calculate Source COMM Id = 2 +02:59:05 ============================================================================ +02:59:05 + + +waiting on router queue for slot.... +02:59:21 ============================================================================ +02:59:21 Slot Id : <114> +02:59:21 Transaction Type : REQUEST +02:59:21 Received From : +02:59:21 ============================================================================ +02:59:21 FNo. Len. Field Value +02:59:21 ============================================================================ +02:59:21 [ 1] [ 4] [0800] +02:59:21 [ 7] [ 10] [0319075828] +02:59:21 [ 11] [ 6] [153884] +02:59:21 [ 70] [ 3] [301] +02:59:21 ============================================================================ +02:59:21 + + +waiting on router queue for slot.... +02:59:21 Sending to : +02:59:21 ============================================================================ +02:59:21 ============================================================================ +02:59:21 Slot Id : <114> +02:59:21 Transaction Type : RESPONSE +02:59:21 Received From : +02:59:21 ============================================================================ +02:59:21 FNo. Len. Field Value +02:59:21 ============================================================================ +02:59:21 [ 1] [ 4] [0810] +02:59:21 [ 7] [ 10] [0319075828] +02:59:21 [ 11] [ 6] [153884] +02:59:21 [ 39] [ 2] [00] +02:59:21 [ 70] [ 3] [301] +02:59:21 ============================================================================ +02:59:21 Calculate Source COMM Id = 2 +02:59:21 ============================================================================ +02:59:21 + + +waiting on router queue for slot.... +02:59:21 ============================================================================ +02:59:21 Slot Id : <74> +02:59:21 Transaction Type : REQUEST +02:59:21 Received From : +02:59:21 ============================================================================ +02:59:21 FNo. Len. Field Value +02:59:21 ============================================================================ +02:59:21 [ 1] [ 4] [0800] +02:59:21 [ 2] [ 5] [02531] +02:59:21 [ 3] [ 6] [579028] +02:59:21 [ 7] [ 10] [0319195921] +02:59:21 [ 11] [ 6] [806585] +02:59:21 [ 15] [ 10] [0319195921] +02:59:21 [ 37] [ 11] [57902806585] +02:59:21 [ 70] [ 3] [001] +02:59:21 ============================================================================ +02:59:21 + + +waiting on router queue for slot.... +02:59:21 ============================================================================ +02:59:21 Slot Id : <74> +02:59:21 Transaction Type : RESPONSE +02:59:21 Received From : +02:59:21 ============================================================================ +02:59:21 FNo. Len. Field Value +02:59:21 ============================================================================ +02:59:21 [ 1] [ 4] [0810] +02:59:21 [ 7] [ 10] [0319195921] +02:59:21 [ 11] [ 6] [806585] +02:59:21 [ 15] [ 4] [0319] +02:59:21 [ 37] [ 12] [57902806585] +02:59:21 [ 39] [ 2] [00] +02:59:21 [ 70] [ 3] [001] +02:59:21 ============================================================================ +02:59:21 Sending to : +02:59:21 ============================================================================ +02:59:21 + + +waiting on router queue for slot.... +02:59:30 ============================================================================ +02:59:30 Slot Id : <107> +02:59:30 Transaction Type : REQUEST +02:59:30 Received From : +02:59:30 ============================================================================ +02:59:30 FNo. Len. Field Value +02:59:30 ============================================================================ +02:59:30 [ 1] [ 4] [0800] +02:59:30 [ 7] [ 10] [0320025917] +02:59:30 [ 11] [ 6] [006724] +02:59:30 [ 37] [ 12] [507902006724] +02:59:30 [ 70] [ 3] [ ] +02:59:30 ============================================================================ +02:59:30 + + +waiting on router queue for slot.... +02:59:30 Sending to : +02:59:30 ============================================================================ +02:59:30 ============================================================================ +02:59:30 Slot Id : <107> +02:59:30 Transaction Type : RESPONSE +02:59:30 Received From : +02:59:30 ============================================================================ +02:59:30 FNo. Len. Field Value +02:59:30 ============================================================================ +02:59:30 [ 1] [ 4] [0810] +02:59:30 [ 7] [ 10] [0320025917] +02:59:30 [ 11] [ 6] [006724] +02:59:30 [ 37] [ 12] [507902006724] +02:59:30 [ 39] [ 2] [91] +02:59:30 [ 70] [ 3] [ ] +02:59:30 ============================================================================ +02:59:30 Calculate Source COMM Id = 3 +02:59:30 ============================================================================ +02:59:30 + + +waiting on router queue for slot.... +02:59:36 ============================================================================ +02:59:36 Slot Id : <83> +02:59:36 Transaction Type : REQUEST +02:59:36 Received From : +02:59:36 ============================================================================ +02:59:36 FNo. Len. Field Value +02:59:36 ============================================================================ +02:59:36 [ 1] [ 4] [0800] +02:59:36 [ 7] [ 10] [0319075843] +02:59:36 [ 11] [ 6] [153885] +02:59:36 [ 70] [ 3] [301] +02:59:36 ============================================================================ +02:59:36 + + +waiting on router queue for slot.... +02:59:36 Sending to : +02:59:36 ============================================================================ +02:59:36 ============================================================================ +02:59:36 Slot Id : <83> +02:59:36 Transaction Type : RESPONSE +02:59:36 Received From : +02:59:36 ============================================================================ +02:59:36 FNo. Len. Field Value +02:59:36 ============================================================================ +02:59:36 [ 1] [ 4] [0810] +02:59:36 [ 7] [ 10] [0319075843] +02:59:36 [ 11] [ 6] [153885] +02:59:36 [ 39] [ 2] [00] +02:59:36 [ 70] [ 3] [301] +02:59:36 ============================================================================ +02:59:36 Calculate Source COMM Id = 2 +02:59:36 ============================================================================ +02:59:36 + + +waiting on router queue for slot.... +02:59:45 ============================================================================ +02:59:45 Slot Id : <92> +02:59:45 Transaction Type : REQUEST +02:59:45 Received From : +02:59:45 ============================================================================ +02:59:45 FNo. Len. Field Value +02:59:45 ============================================================================ +02:59:45 [ 1] [ 4] [0800] +02:59:45 [ 7] [ 10] [0320101132] +02:59:45 [ 11] [ 6] [031132] +02:59:45 [ 37] [ 12] [57903031132] +02:59:45 [ 70] [ 3] [301] +02:59:45 ============================================================================ +02:59:45 + + +waiting on router queue for slot.... +02:59:45 Sending to : +02:59:45 ============================================================================ +02:59:45 ============================================================================ +02:59:45 Slot Id : <92> +02:59:45 Transaction Type : RESPONSE +02:59:45 Received From : +02:59:45 ============================================================================ +02:59:45 FNo. Len. Field Value +02:59:45 ============================================================================ +02:59:45 [ 1] [ 4] [0810] +02:59:45 [ 7] [ 10] [0320101132] +02:59:45 [ 11] [ 6] [031132] +02:59:45 [ 37] [ 12] [579030311320] +02:59:45 [ 39] [ 2] [00] +02:59:45 [ 70] [ 3] [810] +02:59:45 ============================================================================ +02:59:45 Calculate Source COMM Id = 6 +02:59:45 ============================================================================ +02:59:45 + + +waiting on router queue for slot.... +02:59:47 ============================================================================ +02:59:47 Slot Id : <118> +02:59:47 Transaction Type : REQUEST +02:59:47 Received From : +02:59:47 ============================================================================ +02:59:47 FNo. Len. Field Value +02:59:47 ============================================================================ +02:59:47 [ 1] [ 4] [0800] +02:59:47 [ 7] [ 10] [0319075854] +02:59:47 [ 11] [ 6] [153886] +02:59:47 [ 70] [ 3] [301] +02:59:47 ============================================================================ +02:59:47 + + +waiting on router queue for slot.... +02:59:47 Sending to : +02:59:47 ============================================================================ +02:59:47 ============================================================================ +02:59:47 Slot Id : <118> +02:59:47 Transaction Type : RESPONSE +02:59:47 Received From : +02:59:47 ============================================================================ +02:59:47 FNo. Len. Field Value +02:59:47 ============================================================================ +02:59:47 [ 1] [ 4] [0810] +02:59:47 [ 7] [ 10] [0319075854] +02:59:47 [ 11] [ 6] [153886] +02:59:47 [ 39] [ 2] [00] +02:59:47 [ 70] [ 3] [301] +02:59:47 ============================================================================ +02:59:47 Calculate Source COMM Id = 2 +02:59:47 ============================================================================ +02:59:47 + + +waiting on router queue for slot.... +02:59:56 ============================================================================ +02:59:56 Slot Id : <121> +02:59:56 Transaction Type : REQUEST +02:59:56 Received From : +02:59:56 ============================================================================ +02:59:56 FNo. Len. Field Value +02:59:56 ============================================================================ +02:59:56 [ 1] [ 4] [0800] +02:59:56 [ 7] [ 10] [0319200742] +02:59:56 [ 11] [ 6] [012288] +02:59:56 [ 37] [ 12] [57903012288] +02:59:56 [ 70] [ 3] [301] +02:59:56 ============================================================================ +02:59:56 + + +waiting on router queue for slot.... +02:59:56 Sending to : +02:59:56 ============================================================================ +02:59:56 ============================================================================ +02:59:56 Slot Id : <121> +02:59:56 Transaction Type : RESPONSE +02:59:56 Received From : +02:59:56 ============================================================================ +02:59:56 FNo. Len. Field Value +02:59:56 ============================================================================ +02:59:56 [ 1] [ 4] [0810] +02:59:56 [ 7] [ 10] [0319200742] +02:59:56 [ 11] [ 6] [012288] +02:59:56 [ 37] [ 12] [579030122880] +02:59:56 [ 39] [ 2] [00] +02:59:56 [ 70] [ 3] [810] +02:59:56 ============================================================================ +02:59:56 Calculate Source COMM Id = 1 +02:59:56 ============================================================================ +02:59:56 + + +waiting on router queue for slot.... +03:00:02 ============================================================================ +03:00:02 Slot Id : <113> +03:00:02 Transaction Type : REQUEST +03:00:02 Received From : +03:00:02 ============================================================================ +03:00:02 FNo. Len. Field Value +03:00:02 ============================================================================ +03:00:02 [ 1] [ 4] [0800] +03:00:02 [ 7] [ 10] [0319075909] +03:00:02 [ 11] [ 6] [153887] +03:00:02 [ 70] [ 3] [301] +03:00:02 ============================================================================ +03:00:02 + + +waiting on router queue for slot.... +03:00:02 Sending to : +03:00:02 ============================================================================ +03:00:02 ============================================================================ +03:00:02 Slot Id : <113> +03:00:02 Transaction Type : RESPONSE +03:00:02 Received From : +03:00:02 ============================================================================ +03:00:02 FNo. Len. Field Value +03:00:02 ============================================================================ +03:00:02 [ 1] [ 4] [0810] +03:00:02 [ 7] [ 10] [0319075909] +03:00:02 [ 11] [ 6] [153887] +03:00:02 [ 39] [ 2] [00] +03:00:02 [ 70] [ 3] [301] +03:00:02 ============================================================================ +03:00:02 Calculate Source COMM Id = 2 +03:00:02 ============================================================================ +03:00:02 + + +waiting on router queue for slot.... +03:00:16 ============================================================================ +03:00:16 Slot Id : <108> +03:00:16 Transaction Type : REQUEST +03:00:16 Received From : +03:00:16 ============================================================================ +03:00:16 FNo. Len. Field Value +03:00:16 ============================================================================ +03:00:16 [ 1] [ 4] [0800] +03:00:16 [ 7] [ 10] [0319075922] +03:00:16 [ 11] [ 6] [153888] +03:00:16 [ 70] [ 3] [301] +03:00:16 ============================================================================ +03:00:16 + + +waiting on router queue for slot.... +03:00:16 Sending to : +03:00:16 ============================================================================ +03:00:16 ============================================================================ +03:00:16 Slot Id : <108> +03:00:16 Transaction Type : RESPONSE +03:00:16 Received From : +03:00:16 ============================================================================ +03:00:16 FNo. Len. Field Value +03:00:16 ============================================================================ +03:00:16 [ 1] [ 4] [0810] +03:00:16 [ 7] [ 10] [0319075922] +03:00:16 [ 11] [ 6] [153888] +03:00:16 [ 39] [ 2] [00] +03:00:16 [ 70] [ 3] [301] +03:00:16 ============================================================================ +03:00:16 Calculate Source COMM Id = 2 +03:00:16 ============================================================================ +03:00:16 + + +waiting on router queue for slot.... +03:00:23 ============================================================================ +03:00:23 Slot Id : <94> +03:00:23 Transaction Type : REQUEST +03:00:23 Received From : +03:00:23 ============================================================================ +03:00:23 FNo. Len. Field Value +03:00:23 ============================================================================ +03:00:23 [ 1] [ 4] [0800] +03:00:23 [ 2] [ 5] [02531] +03:00:23 [ 3] [ 6] [579038] +03:00:23 [ 7] [ 10] [0319200023] +03:00:23 [ 11] [ 6] [806586] +03:00:23 [ 15] [ 10] [0319200023] +03:00:23 [ 37] [ 11] [57903806586] +03:00:23 [ 70] [ 3] [001] +03:00:23 ============================================================================ +03:00:23 + + +waiting on router queue for slot.... +03:00:23 ============================================================================ +03:00:23 Slot Id : <94> +03:00:23 Transaction Type : RESPONSE +03:00:23 Received From : +03:00:23 ============================================================================ +03:00:23 FNo. Len. Field Value +03:00:23 ============================================================================ +03:00:23 [ 1] [ 4] [0810] +03:00:23 [ 7] [ 10] [0319200023] +03:00:23 [ 11] [ 6] [806586] +03:00:23 [ 15] [ 4] [0319] +03:00:23 [ 37] [ 12] [57903806586] +03:00:23 [ 39] [ 2] [00] +03:00:23 [ 70] [ 3] [001] +03:00:23 ============================================================================ +03:00:23 Sending to : +03:00:23 ============================================================================ +03:00:23 + + +waiting on router queue for slot.... +03:00:30 ============================================================================ +03:00:30 Slot Id : <115> +03:00:30 Transaction Type : REQUEST +03:00:30 Received From : +03:00:30 ============================================================================ +03:00:30 FNo. Len. Field Value +03:00:30 ============================================================================ +03:00:30 [ 1] [ 4] [0800] +03:00:30 [ 7] [ 10] [0319075937] +03:00:30 [ 11] [ 6] [153889] +03:00:30 [ 70] [ 3] [301] +03:00:30 ============================================================================ +03:00:30 + + +waiting on router queue for slot.... +03:00:30 Sending to : +03:00:30 ============================================================================ +03:00:30 ============================================================================ +03:00:30 Slot Id : <115> +03:00:30 Transaction Type : RESPONSE +03:00:30 Received From : +03:00:30 ============================================================================ +03:00:30 FNo. Len. Field Value +03:00:30 ============================================================================ +03:00:30 [ 1] [ 4] [0810] +03:00:30 [ 7] [ 10] [0319075937] +03:00:30 [ 11] [ 6] [153889] +03:00:30 [ 39] [ 2] [00] +03:00:30 [ 70] [ 3] [301] +03:00:30 ============================================================================ +03:00:30 Calculate Source COMM Id = 2 +03:00:30 ============================================================================ +03:00:30 + + +waiting on router queue for slot.... +03:00:41 ============================================================================ +03:00:41 Slot Id : <127> +03:00:41 Transaction Type : REQUEST +03:00:41 Received From : +03:00:41 ============================================================================ +03:00:41 FNo. Len. Field Value +03:00:41 ============================================================================ +03:00:41 [ 1] [ 4] [0800] +03:00:41 [ 7] [ 10] [0319075948] +03:00:41 [ 11] [ 6] [153890] +03:00:41 [ 70] [ 3] [301] +03:00:41 ============================================================================ +03:00:41 + + +waiting on router queue for slot.... +03:00:41 Sending to : +03:00:41 ============================================================================ +03:00:41 ============================================================================ +03:00:41 Slot Id : <127> +03:00:41 Transaction Type : RESPONSE +03:00:41 Received From : +03:00:41 ============================================================================ +03:00:41 FNo. Len. Field Value +03:00:41 ============================================================================ +03:00:41 [ 1] [ 4] [0810] +03:00:41 [ 7] [ 10] [0319075948] +03:00:41 [ 11] [ 6] [153890] +03:00:41 [ 39] [ 2] [00] +03:00:41 [ 70] [ 3] [301] +03:00:41 ============================================================================ +03:00:41 Calculate Source COMM Id = 2 +03:00:41 ============================================================================ +03:00:41 + + +waiting on router queue for slot.... +03:00:50 ============================================================================ +03:00:50 Slot Id : <125> +03:00:50 Transaction Type : REQUEST +03:00:50 Received From : +03:00:50 ============================================================================ +03:00:50 FNo. Len. Field Value +03:00:50 ============================================================================ +03:00:50 [ 1] [ 4] [0800] +03:00:50 [ 7] [ 10] [0320101237] +03:00:50 [ 11] [ 6] [031237] +03:00:50 [ 37] [ 12] [57903031237] +03:00:50 [ 70] [ 3] [301] +03:00:50 ============================================================================ +03:00:50 + + +waiting on router queue for slot.... +03:00:50 Sending to : +03:00:50 ============================================================================ +03:00:50 ============================================================================ +03:00:50 Slot Id : <125> +03:00:50 Transaction Type : RESPONSE +03:00:50 Received From : +03:00:50 ============================================================================ +03:00:50 FNo. Len. Field Value +03:00:50 ============================================================================ +03:00:50 [ 1] [ 4] [0810] +03:00:50 [ 7] [ 10] [0320101237] +03:00:50 [ 11] [ 6] [031237] +03:00:50 [ 37] [ 12] [579030312370] +03:00:50 [ 39] [ 2] [00] +03:00:50 [ 70] [ 3] [810] +03:00:50 ============================================================================ +03:00:50 Calculate Source COMM Id = 6 +03:00:50 ============================================================================ +03:00:50 + + +waiting on router queue for slot.... +03:00:51 ============================================================================ +03:00:51 Slot Id : <95> +03:00:51 Transaction Type : REQUEST +03:00:51 Received From : +03:00:51 ============================================================================ +03:00:51 FNo. Len. Field Value +03:00:51 ============================================================================ +03:00:51 [ 1] [ 4] [0800] +03:00:51 [ 7] [ 10] [0319075958] +03:00:51 [ 11] [ 6] [153891] +03:00:51 [ 70] [ 3] [301] +03:00:51 ============================================================================ +03:00:51 + + +waiting on router queue for slot.... +03:00:51 Sending to : +03:00:51 ============================================================================ +03:00:51 ============================================================================ +03:00:51 Slot Id : <95> +03:00:51 Transaction Type : RESPONSE +03:00:51 Received From : +03:00:51 ============================================================================ +03:00:51 FNo. Len. Field Value +03:00:51 ============================================================================ +03:00:51 [ 1] [ 4] [0810] +03:00:51 [ 7] [ 10] [0319075958] +03:00:51 [ 11] [ 6] [153891] +03:00:51 [ 39] [ 2] [00] +03:00:51 [ 70] [ 3] [301] +03:00:51 ============================================================================ +03:00:51 Calculate Source COMM Id = 2 +03:00:51 ============================================================================ +03:00:51 + + +waiting on router queue for slot.... +03:01:07 ============================================================================ +03:01:07 Slot Id : <75> +03:01:07 Transaction Type : REQUEST +03:01:07 Received From : +03:01:07 ============================================================================ +03:01:07 FNo. Len. Field Value +03:01:07 ============================================================================ +03:01:07 [ 1] [ 4] [0800] +03:01:07 [ 7] [ 10] [0319080014] +03:01:07 [ 11] [ 6] [153892] +03:01:07 [ 70] [ 3] [301] +03:01:07 ============================================================================ +03:01:07 + + +waiting on router queue for slot.... +03:01:07 Sending to : +03:01:07 ============================================================================ +03:01:07 ============================================================================ +03:01:07 Slot Id : <75> +03:01:07 Transaction Type : RESPONSE +03:01:07 Received From : +03:01:07 ============================================================================ +03:01:07 FNo. Len. Field Value +03:01:07 ============================================================================ +03:01:07 [ 1] [ 4] [0810] +03:01:07 [ 7] [ 10] [0319080014] +03:01:07 [ 11] [ 6] [153892] +03:01:07 [ 39] [ 2] [00] +03:01:07 [ 70] [ 3] [301] +03:01:07 ============================================================================ +03:01:07 Calculate Source COMM Id = 2 +03:01:07 ============================================================================ +03:01:07 + + +waiting on router queue for slot.... +03:01:18 ============================================================================ +03:01:18 Slot Id : <53> +03:01:18 Transaction Type : REQUEST +03:01:18 Received From : +03:01:18 ============================================================================ +03:01:18 FNo. Len. Field Value +03:01:18 ============================================================================ +03:01:18 [ 1] [ 4] [0800] +03:01:18 [ 7] [ 10] [0319080025] +03:01:18 [ 11] [ 6] [153893] +03:01:18 [ 70] [ 3] [301] +03:01:18 ============================================================================ +03:01:18 + + +waiting on router queue for slot.... +03:01:18 Sending to : +03:01:18 ============================================================================ +03:01:18 ============================================================================ +03:01:18 Slot Id : <53> +03:01:18 Transaction Type : RESPONSE +03:01:18 Received From : +03:01:18 ============================================================================ +03:01:18 FNo. Len. Field Value +03:01:18 ============================================================================ +03:01:18 [ 1] [ 4] [0810] +03:01:18 [ 7] [ 10] [0319080025] +03:01:18 [ 11] [ 6] [153893] +03:01:18 [ 39] [ 2] [00] +03:01:18 [ 70] [ 3] [301] +03:01:18 ============================================================================ +03:01:18 Calculate Source COMM Id = 2 +03:01:18 ============================================================================ +03:01:18 + + +waiting on router queue for slot.... +03:01:21 ============================================================================ +03:01:21 Slot Id : <134> +03:01:21 Transaction Type : REQUEST +03:01:21 Received From : +03:01:21 ============================================================================ +03:01:21 FNo. Len. Field Value +03:01:21 ============================================================================ +03:01:21 [ 1] [ 4] [0800] +03:01:21 [ 7] [ 10] [0319195912] +03:01:21 [ 11] [ 6] [093367] +03:01:21 [ 37] [ 12] [57902093367] +03:01:21 [ 70] [ 3] [301] +03:01:21 ============================================================================ +03:01:21 + + +waiting on router queue for slot.... +03:01:21 Sending to : +03:01:21 ============================================================================ +03:01:21 ============================================================================ +03:01:21 Slot Id : <134> +03:01:21 Transaction Type : RESPONSE +03:01:21 Received From : +03:01:21 ============================================================================ +03:01:21 FNo. Len. Field Value +03:01:21 ============================================================================ +03:01:21 [ 1] [ 4] [0810] +03:01:21 [ 7] [ 10] [0319195912] +03:01:21 [ 11] [ 6] [093367] +03:01:21 [ 37] [ 12] [579020933670] +03:01:21 [ 39] [ 2] [00] +03:01:21 [ 70] [ 3] [810] +03:01:21 ============================================================================ +03:01:21 Calculate Source COMM Id = 4 +03:01:21 ============================================================================ +03:01:21 + + +waiting on router queue for slot.... +03:01:25 ============================================================================ +03:01:25 Slot Id : <96> +03:01:25 Transaction Type : REQUEST +03:01:25 Received From : +03:01:25 ============================================================================ +03:01:25 FNo. Len. Field Value +03:01:25 ============================================================================ +03:01:25 [ 1] [ 4] [0800] +03:01:25 [ 2] [ 5] [02531] +03:01:25 [ 3] [ 6] [579038] +03:01:25 [ 7] [ 10] [0319200125] +03:01:25 [ 11] [ 6] [806587] +03:01:25 [ 15] [ 10] [0319200125] +03:01:25 [ 37] [ 11] [57903806587] +03:01:25 [ 70] [ 3] [001] +03:01:25 ============================================================================ +03:01:25 + + +waiting on router queue for slot.... +03:01:25 ============================================================================ +03:01:25 Slot Id : <96> +03:01:25 Transaction Type : RESPONSE +03:01:25 Received From : +03:01:25 ============================================================================ +03:01:25 FNo. Len. Field Value +03:01:25 ============================================================================ +03:01:25 [ 1] [ 4] [0810] +03:01:25 [ 7] [ 10] [0319200125] +03:01:25 [ 11] [ 6] [806587] +03:01:25 [ 15] [ 4] [0319] +03:01:25 [ 37] [ 12] [57903806587] +03:01:25 [ 39] [ 2] [00] +03:01:25 [ 70] [ 3] [001] +03:01:25 ============================================================================ +03:01:25 Sending to : +03:01:25 ============================================================================ +03:01:25 + + +waiting on router queue for slot.... +03:01:29 ============================================================================ +03:01:29 Slot Id : <98> +03:01:29 Transaction Type : REQUEST +03:01:29 Received From : +03:01:29 ============================================================================ +03:01:29 FNo. Len. Field Value +03:01:29 ============================================================================ +03:01:29 [ 1] [ 4] [0800] +03:01:29 [ 7] [ 10] [0319080036] +03:01:29 [ 11] [ 6] [153894] +03:01:29 [ 70] [ 3] [301] +03:01:29 ============================================================================ +03:01:29 + + +waiting on router queue for slot.... +03:01:29 Sending to : +03:01:29 ============================================================================ +03:01:29 ============================================================================ +03:01:29 Slot Id : <98> +03:01:29 Transaction Type : RESPONSE +03:01:29 Received From : +03:01:29 ============================================================================ +03:01:29 FNo. Len. Field Value +03:01:29 ============================================================================ +03:01:29 [ 1] [ 4] [0810] +03:01:29 [ 7] [ 10] [0319080036] +03:01:29 [ 11] [ 6] [153894] +03:01:29 [ 39] [ 2] [00] +03:01:29 [ 70] [ 3] [301] +03:01:29 ============================================================================ +03:01:29 Calculate Source COMM Id = 2 +03:01:29 ============================================================================ +03:01:29 + + +waiting on router queue for slot.... +03:01:40 ============================================================================ +03:01:40 Slot Id : <103> +03:01:40 Transaction Type : REQUEST +03:01:40 Received From : +03:01:40 ============================================================================ +03:01:40 FNo. Len. Field Value +03:01:40 ============================================================================ +03:01:40 [ 1] [ 4] [0800] +03:01:40 [ 7] [ 10] [0319080047] +03:01:40 [ 11] [ 6] [153895] +03:01:40 [ 70] [ 3] [301] +03:01:40 ============================================================================ +03:01:40 + + +waiting on router queue for slot.... +03:01:40 Sending to : +03:01:40 ============================================================================ +03:01:40 ============================================================================ +03:01:40 Slot Id : <103> +03:01:40 Transaction Type : RESPONSE +03:01:40 Received From : +03:01:40 ============================================================================ +03:01:40 FNo. Len. Field Value +03:01:40 ============================================================================ +03:01:40 [ 1] [ 4] [0810] +03:01:40 [ 7] [ 10] [0319080047] +03:01:40 [ 11] [ 6] [153895] +03:01:40 [ 39] [ 2] [00] +03:01:40 [ 70] [ 3] [301] +03:01:40 ============================================================================ +03:01:40 Calculate Source COMM Id = 2 +03:01:40 ============================================================================ +03:01:40 + + +waiting on router queue for slot.... +03:01:52 ============================================================================ +03:01:52 Slot Id : <71> +03:01:52 Transaction Type : REQUEST +03:01:52 Received From : +03:01:52 ============================================================================ +03:01:52 FNo. Len. Field Value +03:01:52 ============================================================================ +03:01:52 [ 1] [ 4] [0800] +03:01:52 [ 7] [ 10] [0319080059] +03:01:52 [ 11] [ 6] [153896] +03:01:52 [ 70] [ 3] [301] +03:01:52 ============================================================================ +03:01:52 + + +waiting on router queue for slot.... +03:01:52 Sending to : +03:01:52 ============================================================================ +03:01:52 ============================================================================ +03:01:52 Slot Id : <71> +03:01:52 Transaction Type : RESPONSE +03:01:52 Received From : +03:01:52 ============================================================================ +03:01:52 FNo. Len. Field Value +03:01:52 ============================================================================ +03:01:52 [ 1] [ 4] [0810] +03:01:52 [ 7] [ 10] [0319080059] +03:01:52 [ 11] [ 6] [153896] +03:01:52 [ 39] [ 2] [00] +03:01:52 [ 70] [ 3] [301] +03:01:52 ============================================================================ +03:01:52 Calculate Source COMM Id = 2 +03:01:52 ============================================================================ +03:01:52 + + +waiting on router queue for slot.... +03:01:55 ============================================================================ +03:01:55 Slot Id : <101> +03:01:55 Transaction Type : REQUEST +03:01:55 Received From : +03:01:55 ============================================================================ +03:01:55 FNo. Len. Field Value +03:01:55 ============================================================================ +03:01:55 [ 1] [ 4] [0800] +03:01:55 [ 7] [ 10] [0320101342] +03:01:55 [ 11] [ 6] [031342] +03:01:55 [ 37] [ 12] [57903031342] +03:01:55 [ 70] [ 3] [301] +03:01:55 ============================================================================ +03:01:55 + + +waiting on router queue for slot.... +03:01:55 Sending to : +03:01:55 ============================================================================ +03:01:55 ============================================================================ +03:01:55 Slot Id : <101> +03:01:55 Transaction Type : RESPONSE +03:01:55 Received From : +03:01:55 ============================================================================ +03:01:55 FNo. Len. Field Value +03:01:55 ============================================================================ +03:01:55 [ 1] [ 4] [0810] +03:01:55 [ 7] [ 10] [0320101342] +03:01:55 [ 11] [ 6] [031342] +03:01:55 [ 37] [ 12] [579030313420] +03:01:55 [ 39] [ 2] [00] +03:01:55 [ 70] [ 3] [810] +03:01:55 ============================================================================ +03:01:55 Calculate Source COMM Id = 6 +03:01:55 ============================================================================ +03:01:55 + + +waiting on router queue for slot.... +03:02:02 ============================================================================ +03:02:02 Slot Id : <102> +03:02:02 Transaction Type : REQUEST +03:02:02 Received From : +03:02:02 ============================================================================ +03:02:02 FNo. Len. Field Value +03:02:02 ============================================================================ +03:02:02 [ 1] [ 4] [0800] +03:02:02 [ 7] [ 10] [0319080110] +03:02:02 [ 11] [ 6] [153897] +03:02:02 [ 70] [ 3] [301] +03:02:02 ============================================================================ +03:02:02 + + +waiting on router queue for slot.... +03:02:02 Sending to : +03:02:02 ============================================================================ +03:02:02 ============================================================================ +03:02:02 Slot Id : <102> +03:02:02 Transaction Type : RESPONSE +03:02:02 Received From : +03:02:02 ============================================================================ +03:02:02 FNo. Len. Field Value +03:02:02 ============================================================================ +03:02:02 [ 1] [ 4] [0810] +03:02:02 [ 7] [ 10] [0319080110] +03:02:02 [ 11] [ 6] [153897] +03:02:02 [ 39] [ 2] [00] +03:02:02 [ 70] [ 3] [301] +03:02:02 ============================================================================ +03:02:02 Calculate Source COMM Id = 2 +03:02:02 ============================================================================ +03:02:02 + + +waiting on router queue for slot.... +03:02:13 ============================================================================ +03:02:13 Slot Id : <109> +03:02:13 Transaction Type : REQUEST +03:02:13 Received From : +03:02:13 ============================================================================ +03:02:13 FNo. Len. Field Value +03:02:13 ============================================================================ +03:02:13 [ 1] [ 4] [0800] +03:02:13 [ 7] [ 10] [0319080120] +03:02:13 [ 11] [ 6] [153898] +03:02:13 [ 70] [ 3] [301] +03:02:13 ============================================================================ +03:02:13 + + +waiting on router queue for slot.... +03:02:13 Sending to : +03:02:13 ============================================================================ +03:02:13 ============================================================================ +03:02:13 Slot Id : <109> +03:02:13 Transaction Type : RESPONSE +03:02:13 Received From : +03:02:13 ============================================================================ +03:02:13 FNo. Len. Field Value +03:02:13 ============================================================================ +03:02:13 [ 1] [ 4] [0810] +03:02:13 [ 7] [ 10] [0319080120] +03:02:13 [ 11] [ 6] [153898] +03:02:13 [ 39] [ 2] [00] +03:02:13 [ 70] [ 3] [301] +03:02:13 ============================================================================ +03:02:13 Calculate Source COMM Id = 2 +03:02:13 ============================================================================ +03:02:13 + + +waiting on router queue for slot.... +03:02:24 ============================================================================ +03:02:24 Slot Id : <70> +03:02:24 Transaction Type : REQUEST +03:02:24 Received From : +03:02:24 ============================================================================ +03:02:24 FNo. Len. Field Value +03:02:24 ============================================================================ +03:02:24 [ 1] [ 4] [0800] +03:02:24 [ 7] [ 10] [0319080131] +03:02:24 [ 11] [ 6] [153899] +03:02:24 [ 70] [ 3] [301] +03:02:24 ============================================================================ +03:02:24 + + +waiting on router queue for slot.... +03:02:24 Sending to : +03:02:24 ============================================================================ +03:02:24 ============================================================================ +03:02:24 Slot Id : <70> +03:02:24 Transaction Type : RESPONSE +03:02:24 Received From : +03:02:24 ============================================================================ +03:02:24 FNo. Len. Field Value +03:02:24 ============================================================================ +03:02:24 [ 1] [ 4] [0810] +03:02:24 [ 7] [ 10] [0319080131] +03:02:24 [ 11] [ 6] [153899] +03:02:24 [ 39] [ 2] [00] +03:02:24 [ 70] [ 3] [301] +03:02:24 ============================================================================ +03:02:24 Calculate Source COMM Id = 2 +03:02:24 ============================================================================ +03:02:24 + + +waiting on router queue for slot.... +03:02:27 ============================================================================ +03:02:27 Slot Id : <136> +03:02:27 Transaction Type : REQUEST +03:02:27 Received From : +03:02:27 ============================================================================ +03:02:27 FNo. Len. Field Value +03:02:27 ============================================================================ +03:02:27 [ 1] [ 4] [0800] +03:02:27 [ 2] [ 5] [02531] +03:02:27 [ 3] [ 6] [579038] +03:02:27 [ 7] [ 10] [0319200227] +03:02:27 [ 11] [ 6] [806588] +03:02:27 [ 15] [ 10] [0319200227] +03:02:27 [ 37] [ 11] [57903806588] +03:02:27 [ 70] [ 3] [001] +03:02:27 ============================================================================ +03:02:27 + + +waiting on router queue for slot.... +03:02:27 ============================================================================ +03:02:27 Slot Id : <136> +03:02:27 Transaction Type : RESPONSE +03:02:27 Received From : +03:02:27 ============================================================================ +03:02:27 FNo. Len. Field Value +03:02:27 ============================================================================ +03:02:27 [ 1] [ 4] [0810] +03:02:27 [ 7] [ 10] [0319200227] +03:02:27 [ 11] [ 6] [806588] +03:02:27 [ 15] [ 4] [0319] +03:02:27 [ 37] [ 12] [57903806588] +03:02:27 [ 39] [ 2] [00] +03:02:27 [ 70] [ 3] [001] +03:02:27 ============================================================================ +03:02:27 Sending to : +03:02:27 ============================================================================ +03:02:27 + + +waiting on router queue for slot.... +03:02:35 ============================================================================ +03:02:35 Slot Id : <131> +03:02:35 Transaction Type : REQUEST +03:02:35 Received From : +03:02:35 ============================================================================ +03:02:35 FNo. Len. Field Value +03:02:35 ============================================================================ +03:02:35 [ 1] [ 4] [0800] +03:02:35 [ 7] [ 10] [0319080142] +03:02:35 [ 11] [ 6] [153900] +03:02:35 [ 70] [ 3] [301] +03:02:35 ============================================================================ +03:02:35 + + +waiting on router queue for slot.... +03:02:35 Sending to : +03:02:35 ============================================================================ +03:02:35 ============================================================================ +03:02:35 Slot Id : <131> +03:02:35 Transaction Type : RESPONSE +03:02:35 Received From : +03:02:35 ============================================================================ +03:02:35 FNo. Len. Field Value +03:02:35 ============================================================================ +03:02:35 [ 1] [ 4] [0810] +03:02:35 [ 7] [ 10] [0319080142] +03:02:35 [ 11] [ 6] [153900] +03:02:35 [ 39] [ 2] [00] +03:02:35 [ 70] [ 3] [301] +03:02:35 ============================================================================ +03:02:35 Calculate Source COMM Id = 2 +03:02:35 ============================================================================ +03:02:35 + + +waiting on router queue for slot.... +03:02:45 ============================================================================ +03:02:45 Slot Id : <129> +03:02:45 Transaction Type : REQUEST +03:02:45 Received From : +03:02:45 ============================================================================ +03:02:45 FNo. Len. Field Value +03:02:45 ============================================================================ +03:02:45 [ 1] [ 4] [0800] +03:02:45 [ 7] [ 10] [0319080152] +03:02:45 [ 11] [ 6] [153901] +03:02:45 [ 70] [ 3] [301] +03:02:45 ============================================================================ +03:02:45 + + +waiting on router queue for slot.... +03:02:45 Sending to : +03:02:45 ============================================================================ +03:02:45 ============================================================================ +03:02:45 Slot Id : <129> +03:02:45 Transaction Type : RESPONSE +03:02:45 Received From : +03:02:45 ============================================================================ +03:02:45 FNo. Len. Field Value +03:02:45 ============================================================================ +03:02:45 [ 1] [ 4] [0810] +03:02:45 [ 7] [ 10] [0319080152] +03:02:45 [ 11] [ 6] [153901] +03:02:45 [ 39] [ 2] [00] +03:02:45 [ 70] [ 3] [301] +03:02:45 ============================================================================ +03:02:45 Calculate Source COMM Id = 2 +03:02:45 ============================================================================ +03:02:45 + + +waiting on router queue for slot.... +03:02:55 ============================================================================ +03:02:55 Slot Id : <85> +03:02:55 Transaction Type : REQUEST +03:02:55 Received From : +03:02:55 ============================================================================ +03:02:55 FNo. Len. Field Value +03:02:55 ============================================================================ +03:02:55 [ 1] [ 4] [0800] +03:02:55 [ 7] [ 10] [0319080203] +03:02:55 [ 11] [ 6] [153902] +03:02:55 [ 70] [ 3] [301] +03:02:55 ============================================================================ +03:02:55 + + +waiting on router queue for slot.... +03:02:55 Sending to : +03:02:55 ============================================================================ +03:02:55 ============================================================================ +03:02:55 Slot Id : <85> +03:02:55 Transaction Type : RESPONSE +03:02:55 Received From : +03:02:55 ============================================================================ +03:02:55 FNo. Len. Field Value +03:02:55 ============================================================================ +03:02:55 [ 1] [ 4] [0810] +03:02:55 [ 7] [ 10] [0319080203] +03:02:55 [ 11] [ 6] [153902] +03:02:55 [ 39] [ 2] [00] +03:02:55 [ 70] [ 3] [301] +03:02:55 ============================================================================ +03:02:55 Calculate Source COMM Id = 2 +03:02:55 ============================================================================ +03:02:55 + + +waiting on router queue for slot.... +03:03:00 ============================================================================ +03:03:00 Slot Id : <105> +03:03:00 Transaction Type : REQUEST +03:03:00 Received From : +03:03:00 ============================================================================ +03:03:00 FNo. Len. Field Value +03:03:00 ============================================================================ +03:03:00 [ 1] [ 4] [0800] +03:03:00 [ 7] [ 10] [0320101447] +03:03:00 [ 11] [ 6] [031447] +03:03:00 [ 37] [ 12] [57903031447] +03:03:00 [ 70] [ 3] [301] +03:03:00 ============================================================================ +03:03:00 + + +waiting on router queue for slot.... +03:03:00 Sending to : +03:03:00 ============================================================================ +03:03:00 ============================================================================ +03:03:00 Slot Id : <105> +03:03:00 Transaction Type : RESPONSE +03:03:00 Received From : +03:03:00 ============================================================================ +03:03:00 FNo. Len. Field Value +03:03:00 ============================================================================ +03:03:00 [ 1] [ 4] [0810] +03:03:00 [ 7] [ 10] [0320101447] +03:03:00 [ 11] [ 6] [031447] +03:03:00 [ 37] [ 12] [579030314470] +03:03:00 [ 39] [ 2] [00] +03:03:00 [ 70] [ 3] [810] +03:03:00 ============================================================================ +03:03:00 Calculate Source COMM Id = 6 +03:03:00 ============================================================================ +03:03:00 + + +waiting on router queue for slot.... +03:03:05 ============================================================================ +03:03:05 Slot Id : <87> +03:03:05 Transaction Type : REQUEST +03:03:05 Received From : +03:03:05 ============================================================================ +03:03:05 FNo. Len. Field Value +03:03:05 ============================================================================ +03:03:05 [ 1] [ 4] [0800] +03:03:05 [ 7] [ 10] [0319080213] +03:03:05 [ 11] [ 6] [153903] +03:03:05 [ 70] [ 3] [301] +03:03:05 ============================================================================ +03:03:05 + + +waiting on router queue for slot.... +03:03:05 Sending to : +03:03:05 ============================================================================ +03:03:05 ============================================================================ +03:03:05 Slot Id : <87> +03:03:05 Transaction Type : RESPONSE +03:03:05 Received From : +03:03:05 ============================================================================ +03:03:05 FNo. Len. Field Value +03:03:05 ============================================================================ +03:03:05 [ 1] [ 4] [0810] +03:03:05 [ 7] [ 10] [0319080213] +03:03:05 [ 11] [ 6] [153903] +03:03:05 [ 39] [ 2] [00] +03:03:05 [ 70] [ 3] [301] +03:03:05 ============================================================================ +03:03:05 Calculate Source COMM Id = 2 +03:03:05 ============================================================================ +03:03:05 + + +waiting on router queue for slot.... +03:03:17 ============================================================================ +03:03:17 Slot Id : <104> +03:03:17 Transaction Type : REQUEST +03:03:17 Received From : +03:03:17 ============================================================================ +03:03:17 FNo. Len. Field Value +03:03:17 ============================================================================ +03:03:17 [ 1] [ 4] [0800] +03:03:17 [ 7] [ 10] [0319080223] +03:03:17 [ 11] [ 6] [153904] +03:03:17 [ 70] [ 3] [301] +03:03:17 ============================================================================ +03:03:17 + + +waiting on router queue for slot.... +03:03:17 Sending to : +03:03:17 ============================================================================ +03:03:17 ============================================================================ +03:03:17 Slot Id : <104> +03:03:17 Transaction Type : RESPONSE +03:03:17 Received From : +03:03:17 ============================================================================ +03:03:17 FNo. Len. Field Value +03:03:17 ============================================================================ +03:03:17 [ 1] [ 4] [0810] +03:03:17 [ 7] [ 10] [0319080223] +03:03:17 [ 11] [ 6] [153904] +03:03:17 [ 39] [ 2] [00] +03:03:17 [ 70] [ 3] [301] +03:03:17 ============================================================================ +03:03:17 Calculate Source COMM Id = 2 +03:03:17 ============================================================================ +03:03:17 + + +waiting on router queue for slot.... +03:03:29 ============================================================================ +03:03:29 Slot Id : <138> +03:03:29 Transaction Type : REQUEST +03:03:29 Received From : +03:03:29 ============================================================================ +03:03:29 FNo. Len. Field Value +03:03:29 ============================================================================ +03:03:29 [ 1] [ 4] [0800] +03:03:29 [ 2] [ 5] [02531] +03:03:29 [ 3] [ 6] [579038] +03:03:29 [ 7] [ 10] [0319200329] +03:03:29 [ 11] [ 6] [806589] +03:03:29 [ 15] [ 10] [0319200329] +03:03:29 [ 37] [ 11] [57903806589] +03:03:29 [ 70] [ 3] [001] +03:03:29 ============================================================================ +03:03:29 + + +waiting on router queue for slot.... +03:03:29 ============================================================================ +03:03:29 Slot Id : <138> +03:03:29 Transaction Type : RESPONSE +03:03:29 Received From : +03:03:29 ============================================================================ +03:03:29 FNo. Len. Field Value +03:03:29 ============================================================================ +03:03:29 [ 1] [ 4] [0810] +03:03:29 [ 7] [ 10] [0319200329] +03:03:29 [ 11] [ 6] [806589] +03:03:29 [ 15] [ 4] [0319] +03:03:29 [ 37] [ 12] [57903806589] +03:03:29 [ 39] [ 2] [00] +03:03:29 [ 70] [ 3] [001] +03:03:29 ============================================================================ +03:03:29 Sending to : +03:03:29 ============================================================================ +03:03:29 + + +waiting on router queue for slot.... +03:03:31 ============================================================================ +03:03:31 Slot Id : <97> +03:03:31 Transaction Type : REQUEST +03:03:31 Received From : +03:03:31 ============================================================================ +03:03:31 FNo. Len. Field Value +03:03:31 ============================================================================ +03:03:31 [ 1] [ 4] [0800] +03:03:31 [ 7] [ 10] [0319080238] +03:03:31 [ 11] [ 6] [153905] +03:03:31 [ 70] [ 3] [301] +03:03:31 ============================================================================ +03:03:31 + + +waiting on router queue for slot.... +03:03:31 Sending to : +03:03:31 ============================================================================ +03:03:31 ============================================================================ +03:03:31 Slot Id : <97> +03:03:31 Transaction Type : RESPONSE +03:03:31 Received From : +03:03:31 ============================================================================ +03:03:31 FNo. Len. Field Value +03:03:31 ============================================================================ +03:03:31 [ 1] [ 4] [0810] +03:03:31 [ 7] [ 10] [0319080238] +03:03:31 [ 11] [ 6] [153905] +03:03:31 [ 39] [ 2] [00] +03:03:31 [ 70] [ 3] [301] +03:03:31 ============================================================================ +03:03:31 Calculate Source COMM Id = 2 +03:03:31 ============================================================================ +03:03:31 + + +waiting on router queue for slot.... +03:03:42 ============================================================================ +03:03:42 Slot Id : <117> +03:03:42 Transaction Type : REQUEST +03:03:42 Received From : +03:03:42 ============================================================================ +03:03:42 FNo. Len. Field Value +03:03:42 ============================================================================ +03:03:42 [ 1] [ 4] [0800] +03:03:42 [ 7] [ 10] [0319080249] +03:03:42 [ 11] [ 6] [153906] +03:03:42 [ 70] [ 3] [301] +03:03:42 ============================================================================ +03:03:42 + + +waiting on router queue for slot.... +03:03:42 Sending to : +03:03:42 ============================================================================ +03:03:42 ============================================================================ +03:03:42 Slot Id : <117> +03:03:42 Transaction Type : RESPONSE +03:03:42 Received From : +03:03:42 ============================================================================ +03:03:42 FNo. Len. Field Value +03:03:42 ============================================================================ +03:03:42 [ 1] [ 4] [0810] +03:03:42 [ 7] [ 10] [0319080249] +03:03:42 [ 11] [ 6] [153906] +03:03:42 [ 39] [ 2] [00] +03:03:42 [ 70] [ 3] [301] +03:03:42 ============================================================================ +03:03:42 Calculate Source COMM Id = 2 +03:03:42 ============================================================================ +03:03:42 + + +waiting on router queue for slot.... +03:03:53 ============================================================================ +03:03:53 Slot Id : <112> +03:03:53 Transaction Type : REQUEST +03:03:53 Received From : +03:03:53 ============================================================================ +03:03:53 FNo. Len. Field Value +03:03:53 ============================================================================ +03:03:53 [ 1] [ 4] [0800] +03:03:53 [ 7] [ 10] [0319080300] +03:03:53 [ 11] [ 6] [153907] +03:03:53 [ 70] [ 3] [301] +03:03:53 ============================================================================ +03:03:53 + + +waiting on router queue for slot.... +03:03:53 Sending to : +03:03:53 ============================================================================ +03:03:53 ============================================================================ +03:03:53 Slot Id : <112> +03:03:53 Transaction Type : RESPONSE +03:03:53 Received From : +03:03:53 ============================================================================ +03:03:53 FNo. Len. Field Value +03:03:53 ============================================================================ +03:03:53 [ 1] [ 4] [0810] +03:03:53 [ 7] [ 10] [0319080300] +03:03:53 [ 11] [ 6] [153907] +03:03:53 [ 39] [ 2] [00] +03:03:53 [ 70] [ 3] [301] +03:03:53 ============================================================================ +03:03:53 Calculate Source COMM Id = 2 +03:03:53 ============================================================================ +03:03:53 + + +waiting on router queue for slot.... +03:04:04 ============================================================================ +03:04:04 Slot Id : <140> +03:04:04 Transaction Type : REQUEST +03:04:04 Received From : +03:04:04 ============================================================================ +03:04:04 FNo. Len. Field Value +03:04:04 ============================================================================ +03:04:04 [ 1] [ 4] [0800] +03:04:04 [ 7] [ 10] [0319080311] +03:04:04 [ 11] [ 6] [153908] +03:04:04 [ 70] [ 3] [301] +03:04:04 ============================================================================ +03:04:04 + + +waiting on router queue for slot.... +03:04:04 Sending to : +03:04:04 ============================================================================ +03:04:04 ============================================================================ +03:04:04 Slot Id : <140> +03:04:04 Transaction Type : RESPONSE +03:04:04 Received From : +03:04:04 ============================================================================ +03:04:04 FNo. Len. Field Value +03:04:04 ============================================================================ +03:04:04 [ 1] [ 4] [0810] +03:04:04 [ 7] [ 10] [0319080311] +03:04:04 [ 11] [ 6] [153908] +03:04:04 [ 39] [ 2] [00] +03:04:04 [ 70] [ 3] [301] +03:04:04 ============================================================================ +03:04:04 Calculate Source COMM Id = 2 +03:04:04 ============================================================================ +03:04:04 + + +waiting on router queue for slot.... +03:04:05 ============================================================================ +03:04:05 Slot Id : <111> +03:04:05 Transaction Type : REQUEST +03:04:05 Received From : +03:04:05 ============================================================================ +03:04:05 FNo. Len. Field Value +03:04:05 ============================================================================ +03:04:05 [ 1] [ 4] [0800] +03:04:05 [ 7] [ 10] [0320101552] +03:04:05 [ 11] [ 6] [031552] +03:04:05 [ 37] [ 12] [57903031552] +03:04:05 [ 70] [ 3] [301] +03:04:05 ============================================================================ +03:04:05 + + +waiting on router queue for slot.... +03:04:05 Sending to : +03:04:05 ============================================================================ +03:04:05 ============================================================================ +03:04:05 Slot Id : <111> +03:04:05 Transaction Type : RESPONSE +03:04:05 Received From : +03:04:05 ============================================================================ +03:04:05 FNo. Len. Field Value +03:04:05 ============================================================================ +03:04:05 [ 1] [ 4] [0810] +03:04:05 [ 7] [ 10] [0320101552] +03:04:05 [ 11] [ 6] [031552] +03:04:05 [ 37] [ 12] [579030315520] +03:04:05 [ 39] [ 2] [00] +03:04:05 [ 70] [ 3] [810] +03:04:05 ============================================================================ +03:04:05 Calculate Source COMM Id = 6 +03:04:05 ============================================================================ +03:04:05 + + +waiting on router queue for slot.... +03:04:14 ============================================================================ +03:04:14 Slot Id : <116> +03:04:14 Transaction Type : REQUEST +03:04:14 Received From : +03:04:14 ============================================================================ +03:04:14 FNo. Len. Field Value +03:04:14 ============================================================================ +03:04:14 [ 1] [ 4] [0800] +03:04:14 [ 7] [ 10] [0319080321] +03:04:14 [ 11] [ 6] [153909] +03:04:14 [ 70] [ 3] [301] +03:04:14 ============================================================================ +03:04:14 + + +waiting on router queue for slot.... +03:04:14 Sending to : +03:04:14 ============================================================================ +03:04:14 ============================================================================ +03:04:14 Slot Id : <116> +03:04:14 Transaction Type : RESPONSE +03:04:14 Received From : +03:04:14 ============================================================================ +03:04:14 FNo. Len. Field Value +03:04:14 ============================================================================ +03:04:14 [ 1] [ 4] [0810] +03:04:14 [ 7] [ 10] [0319080321] +03:04:14 [ 11] [ 6] [153909] +03:04:14 [ 39] [ 2] [00] +03:04:14 [ 70] [ 3] [301] +03:04:14 ============================================================================ +03:04:14 Calculate Source COMM Id = 2 +03:04:14 ============================================================================ +03:04:14 + + +waiting on router queue for slot.... +03:04:29 ============================================================================ +03:04:29 Slot Id : <124> +03:04:29 Transaction Type : REQUEST +03:04:29 Received From : +03:04:29 ============================================================================ +03:04:29 FNo. Len. Field Value +03:04:29 ============================================================================ +03:04:29 [ 1] [ 4] [0800] +03:04:29 [ 7] [ 10] [0319080336] +03:04:29 [ 11] [ 6] [153910] +03:04:29 [ 70] [ 3] [301] +03:04:29 ============================================================================ +03:04:29 + + +waiting on router queue for slot.... +03:04:29 Sending to : +03:04:29 ============================================================================ +03:04:29 ============================================================================ +03:04:29 Slot Id : <124> +03:04:29 Transaction Type : RESPONSE +03:04:29 Received From : +03:04:29 ============================================================================ +03:04:29 FNo. Len. Field Value +03:04:29 ============================================================================ +03:04:29 [ 1] [ 4] [0810] +03:04:29 [ 7] [ 10] [0319080336] +03:04:29 [ 11] [ 6] [153910] +03:04:29 [ 39] [ 2] [00] +03:04:29 [ 70] [ 3] [301] +03:04:29 ============================================================================ +03:04:29 Calculate Source COMM Id = 2 +03:04:29 ============================================================================ +03:04:29 + + +waiting on router queue for slot.... +03:04:31 ============================================================================ +03:04:31 Slot Id : <147> +03:04:31 Transaction Type : REQUEST +03:04:31 Received From : +03:04:31 ============================================================================ +03:04:31 FNo. Len. Field Value +03:04:31 ============================================================================ +03:04:31 [ 1] [ 4] [0800] +03:04:31 [ 2] [ 5] [02531] +03:04:31 [ 3] [ 6] [579038] +03:04:31 [ 7] [ 10] [0319200431] +03:04:31 [ 11] [ 6] [806590] +03:04:31 [ 15] [ 10] [0319200431] +03:04:31 [ 37] [ 11] [57903806590] +03:04:31 [ 70] [ 3] [001] +03:04:31 ============================================================================ +03:04:31 + + +waiting on router queue for slot.... +03:04:31 ============================================================================ +03:04:31 Slot Id : <147> +03:04:31 Transaction Type : RESPONSE +03:04:31 Received From : +03:04:31 ============================================================================ +03:04:31 FNo. Len. Field Value +03:04:31 ============================================================================ +03:04:31 [ 1] [ 4] [0810] +03:04:31 [ 7] [ 10] [0319200431] +03:04:31 [ 11] [ 6] [806590] +03:04:31 [ 15] [ 4] [0319] +03:04:31 [ 37] [ 12] [57903806590] +03:04:31 [ 39] [ 2] [00] +03:04:31 [ 70] [ 3] [001] +03:04:31 ============================================================================ +03:04:31 Sending to : +03:04:31 ============================================================================ +03:04:31 + + +waiting on router queue for slot.... +03:04:40 ============================================================================ +03:04:40 Slot Id : <80> +03:04:40 Transaction Type : REQUEST +03:04:40 Received From : +03:04:40 ============================================================================ +03:04:40 FNo. Len. Field Value +03:04:40 ============================================================================ +03:04:40 [ 1] [ 4] [0800] +03:04:40 [ 7] [ 10] [0319080347] +03:04:40 [ 11] [ 6] [153911] +03:04:40 [ 70] [ 3] [301] +03:04:40 ============================================================================ +03:04:40 + + +waiting on router queue for slot.... +03:04:40 Sending to : +03:04:40 ============================================================================ +03:04:40 ============================================================================ +03:04:40 Slot Id : <80> +03:04:40 Transaction Type : RESPONSE +03:04:40 Received From : +03:04:40 ============================================================================ +03:04:40 FNo. Len. Field Value +03:04:40 ============================================================================ +03:04:40 [ 1] [ 4] [0810] +03:04:40 [ 7] [ 10] [0319080347] +03:04:40 [ 11] [ 6] [153911] +03:04:40 [ 39] [ 2] [00] +03:04:40 [ 70] [ 3] [301] +03:04:40 ============================================================================ +03:04:40 Calculate Source COMM Id = 2 +03:04:40 ============================================================================ +03:04:40 + + +waiting on router queue for slot.... +03:04:51 ============================================================================ +03:04:51 Slot Id : <123> +03:04:51 Transaction Type : REQUEST +03:04:51 Received From : +03:04:51 ============================================================================ +03:04:51 FNo. Len. Field Value +03:04:51 ============================================================================ +03:04:51 [ 1] [ 4] [0800] +03:04:51 [ 7] [ 10] [0319080358] +03:04:51 [ 11] [ 6] [153912] +03:04:51 [ 70] [ 3] [301] +03:04:51 ============================================================================ +03:04:51 + + +waiting on router queue for slot.... +03:04:51 Sending to : +03:04:51 ============================================================================ +03:04:51 ============================================================================ +03:04:51 Slot Id : <123> +03:04:51 Transaction Type : RESPONSE +03:04:51 Received From : +03:04:51 ============================================================================ +03:04:51 FNo. Len. Field Value +03:04:51 ============================================================================ +03:04:51 [ 1] [ 4] [0810] +03:04:51 [ 7] [ 10] [0319080358] +03:04:51 [ 11] [ 6] [153912] +03:04:51 [ 39] [ 2] [00] +03:04:51 [ 70] [ 3] [301] +03:04:51 ============================================================================ +03:04:51 Calculate Source COMM Id = 2 +03:04:51 ============================================================================ +03:04:51 + + +waiting on router queue for slot.... +03:04:56 ============================================================================ +03:04:56 Slot Id : <122> +03:04:56 Transaction Type : REQUEST +03:04:56 Received From : +03:04:56 ============================================================================ +03:04:56 FNo. Len. Field Value +03:04:56 ============================================================================ +03:04:56 [ 1] [ 4] [0800] +03:04:56 [ 7] [ 10] [0319201242] +03:04:56 [ 11] [ 6] [076908] +03:04:56 [ 37] [ 12] [57903076908] +03:04:56 [ 70] [ 3] [301] +03:04:56 ============================================================================ +03:04:56 + + +waiting on router queue for slot.... +03:04:56 Sending to : +03:04:56 ============================================================================ +03:04:56 ============================================================================ +03:04:56 Slot Id : <122> +03:04:56 Transaction Type : RESPONSE +03:04:56 Received From : +03:04:56 ============================================================================ +03:04:56 FNo. Len. Field Value +03:04:56 ============================================================================ +03:04:56 [ 1] [ 4] [0810] +03:04:56 [ 7] [ 10] [0319201242] +03:04:56 [ 11] [ 6] [076908] +03:04:56 [ 37] [ 12] [579030769080] +03:04:56 [ 39] [ 2] [00] +03:04:56 [ 70] [ 3] [810] +03:04:56 ============================================================================ +03:04:56 Calculate Source COMM Id = 1 +03:04:56 ============================================================================ +03:04:56 + + +waiting on router queue for slot.... +03:05:06 ============================================================================ +03:05:06 Slot Id : <161> +03:05:06 Transaction Type : REQUEST +03:05:06 Received From : +03:05:06 ============================================================================ +03:05:06 FNo. Len. Field Value +03:05:06 ============================================================================ +03:05:06 [ 1] [ 4] [0800] +03:05:06 [ 7] [ 10] [0319080413] +03:05:06 [ 11] [ 6] [153913] +03:05:06 [ 70] [ 3] [301] +03:05:06 ============================================================================ +03:05:06 + + +waiting on router queue for slot.... +03:05:06 Sending to : +03:05:06 ============================================================================ +03:05:06 ============================================================================ +03:05:06 Slot Id : <161> +03:05:06 Transaction Type : RESPONSE +03:05:06 Received From : +03:05:06 ============================================================================ +03:05:06 FNo. Len. Field Value +03:05:06 ============================================================================ +03:05:06 [ 1] [ 4] [0810] +03:05:06 [ 7] [ 10] [0319080413] +03:05:06 [ 11] [ 6] [153913] +03:05:06 [ 39] [ 2] [00] +03:05:06 [ 70] [ 3] [301] +03:05:06 ============================================================================ +03:05:06 Calculate Source COMM Id = 2 +03:05:06 ============================================================================ +03:05:06 + + +waiting on router queue for slot.... +03:05:10 ============================================================================ +03:05:10 Slot Id : <154> +03:05:10 Transaction Type : REQUEST +03:05:10 Received From : +03:05:10 ============================================================================ +03:05:10 FNo. Len. Field Value +03:05:10 ============================================================================ +03:05:10 [ 1] [ 4] [0800] +03:05:10 [ 7] [ 10] [0320101657] +03:05:10 [ 11] [ 6] [031657] +03:05:10 [ 37] [ 12] [57903031657] +03:05:10 [ 70] [ 3] [301] +03:05:10 ============================================================================ +03:05:10 + + +waiting on router queue for slot.... +03:05:10 Sending to : +03:05:10 ============================================================================ +03:05:10 ============================================================================ +03:05:10 Slot Id : <154> +03:05:10 Transaction Type : RESPONSE +03:05:10 Received From : +03:05:10 ============================================================================ +03:05:10 FNo. Len. Field Value +03:05:10 ============================================================================ +03:05:10 [ 1] [ 4] [0810] +03:05:10 [ 7] [ 10] [0320101657] +03:05:10 [ 11] [ 6] [031657] +03:05:10 [ 37] [ 12] [579030316570] +03:05:10 [ 39] [ 2] [00] +03:05:10 [ 70] [ 3] [810] +03:05:10 ============================================================================ +03:05:10 Calculate Source COMM Id = 6 +03:05:10 ============================================================================ +03:05:10 + + +waiting on router queue for slot.... +03:05:16 ============================================================================ +03:05:16 Slot Id : <162> +03:05:16 Transaction Type : REQUEST +03:05:16 Received From : +03:05:16 ============================================================================ +03:05:16 FNo. Len. Field Value +03:05:16 ============================================================================ +03:05:16 [ 1] [ 4] [0800] +03:05:16 [ 7] [ 10] [0319080423] +03:05:16 [ 11] [ 6] [153914] +03:05:16 [ 70] [ 3] [301] +03:05:16 ============================================================================ +03:05:16 + + +waiting on router queue for slot.... +03:05:16 Sending to : +03:05:16 ============================================================================ +03:05:16 ============================================================================ +03:05:16 Slot Id : <162> +03:05:16 Transaction Type : RESPONSE +03:05:16 Received From : +03:05:16 ============================================================================ +03:05:16 FNo. Len. Field Value +03:05:16 ============================================================================ +03:05:16 [ 1] [ 4] [0810] +03:05:16 [ 7] [ 10] [0319080423] +03:05:16 [ 11] [ 6] [153914] +03:05:16 [ 39] [ 2] [00] +03:05:16 [ 70] [ 3] [301] +03:05:16 ============================================================================ +03:05:16 Calculate Source COMM Id = 2 +03:05:16 ============================================================================ +03:05:16 + + +waiting on router queue for slot.... +03:05:28 ============================================================================ +03:05:28 Slot Id : <132> +03:05:28 Transaction Type : REQUEST +03:05:28 Received From : +03:05:28 ============================================================================ +03:05:28 FNo. Len. Field Value +03:05:28 ============================================================================ +03:05:28 [ 1] [ 4] [0800] +03:05:28 [ 7] [ 10] [0319080435] +03:05:28 [ 11] [ 6] [153915] +03:05:28 [ 70] [ 3] [301] +03:05:28 ============================================================================ +03:05:28 + + +waiting on router queue for slot.... +03:05:28 Sending to : +03:05:28 ============================================================================ +03:05:28 ============================================================================ +03:05:28 Slot Id : <132> +03:05:28 Transaction Type : RESPONSE +03:05:28 Received From : +03:05:28 ============================================================================ +03:05:28 FNo. Len. Field Value +03:05:28 ============================================================================ +03:05:28 [ 1] [ 4] [0810] +03:05:28 [ 7] [ 10] [0319080435] +03:05:28 [ 11] [ 6] [153915] +03:05:28 [ 39] [ 2] [00] +03:05:28 [ 70] [ 3] [301] +03:05:28 ============================================================================ +03:05:28 Calculate Source COMM Id = 2 +03:05:28 ============================================================================ +03:05:28 + + +waiting on router queue for slot.... +03:05:33 ============================================================================ +03:05:33 Slot Id : <145> +03:05:33 Transaction Type : REQUEST +03:05:33 Received From : +03:05:33 ============================================================================ +03:05:33 FNo. Len. Field Value +03:05:33 ============================================================================ +03:05:33 [ 1] [ 4] [0800] +03:05:33 [ 2] [ 5] [02531] +03:05:33 [ 3] [ 6] [579038] +03:05:33 [ 7] [ 10] [0319200533] +03:05:33 [ 11] [ 6] [806591] +03:05:33 [ 15] [ 10] [0319200533] +03:05:33 [ 37] [ 11] [57903806591] +03:05:33 [ 70] [ 3] [001] +03:05:33 ============================================================================ +03:05:33 + + +waiting on router queue for slot.... +03:05:33 ============================================================================ +03:05:33 Slot Id : <145> +03:05:33 Transaction Type : RESPONSE +03:05:33 Received From : +03:05:33 ============================================================================ +03:05:33 FNo. Len. Field Value +03:05:33 ============================================================================ +03:05:33 [ 1] [ 4] [0810] +03:05:33 [ 7] [ 10] [0319200533] +03:05:33 [ 11] [ 6] [806591] +03:05:33 [ 15] [ 4] [0319] +03:05:33 [ 37] [ 12] [57903806591] +03:05:33 [ 39] [ 2] [00] +03:05:33 [ 70] [ 3] [001] +03:05:33 ============================================================================ +03:05:33 Sending to : +03:05:33 ============================================================================ +03:05:33 + + +waiting on router queue for slot.... +03:05:39 ============================================================================ +03:05:39 Slot Id : <143> +03:05:39 Transaction Type : REQUEST +03:05:39 Received From : +03:05:39 ============================================================================ +03:05:39 FNo. Len. Field Value +03:05:39 ============================================================================ +03:05:39 [ 1] [ 4] [0800] +03:05:39 [ 7] [ 10] [0319080446] +03:05:39 [ 11] [ 6] [153916] +03:05:39 [ 70] [ 3] [301] +03:05:39 ============================================================================ +03:05:39 + + +waiting on router queue for slot.... +03:05:39 Sending to : +03:05:39 ============================================================================ +03:05:39 ============================================================================ +03:05:39 Slot Id : <143> +03:05:39 Transaction Type : RESPONSE +03:05:39 Received From : +03:05:39 ============================================================================ +03:05:39 FNo. Len. Field Value +03:05:39 ============================================================================ +03:05:39 [ 1] [ 4] [0810] +03:05:39 [ 7] [ 10] [0319080446] +03:05:39 [ 11] [ 6] [153916] +03:05:39 [ 39] [ 2] [00] +03:05:39 [ 70] [ 3] [301] +03:05:39 ============================================================================ +03:05:39 Calculate Source COMM Id = 2 +03:05:39 ============================================================================ +03:05:39 + + +waiting on router queue for slot.... +03:05:51 ============================================================================ +03:05:51 Slot Id : <158> +03:05:51 Transaction Type : REQUEST +03:05:51 Received From : +03:05:51 ============================================================================ +03:05:51 FNo. Len. Field Value +03:05:51 ============================================================================ +03:05:51 [ 1] [ 4] [0800] +03:05:51 [ 7] [ 10] [0319080458] +03:05:51 [ 11] [ 6] [153917] +03:05:51 [ 70] [ 3] [301] +03:05:51 ============================================================================ +03:05:51 + + +waiting on router queue for slot.... +03:05:51 Sending to : +03:05:51 ============================================================================ +03:05:51 ============================================================================ +03:05:51 Slot Id : <158> +03:05:51 Transaction Type : RESPONSE +03:05:51 Received From : +03:05:51 ============================================================================ +03:05:51 FNo. Len. Field Value +03:05:51 ============================================================================ +03:05:51 [ 1] [ 4] [0810] +03:05:51 [ 7] [ 10] [0319080458] +03:05:51 [ 11] [ 6] [153917] +03:05:51 [ 39] [ 2] [00] +03:05:51 [ 70] [ 3] [301] +03:05:51 ============================================================================ +03:05:51 Calculate Source COMM Id = 2 +03:05:51 ============================================================================ +03:05:51 + + +waiting on router queue for slot.... +03:06:02 ============================================================================ +03:06:02 Slot Id : <120> +03:06:02 Transaction Type : REQUEST +03:06:02 Received From : +03:06:02 ============================================================================ +03:06:02 FNo. Len. Field Value +03:06:02 ============================================================================ +03:06:02 [ 1] [ 4] [0800] +03:06:02 [ 7] [ 10] [0319080509] +03:06:02 [ 11] [ 6] [153918] +03:06:02 [ 70] [ 3] [301] +03:06:02 ============================================================================ +03:06:02 + + +waiting on router queue for slot.... +03:06:02 Sending to : +03:06:02 ============================================================================ +03:06:02 ============================================================================ +03:06:02 Slot Id : <120> +03:06:02 Transaction Type : RESPONSE +03:06:02 Received From : +03:06:02 ============================================================================ +03:06:02 FNo. Len. Field Value +03:06:02 ============================================================================ +03:06:02 [ 1] [ 4] [0810] +03:06:02 [ 7] [ 10] [0319080509] +03:06:02 [ 11] [ 6] [153918] +03:06:02 [ 39] [ 2] [00] +03:06:02 [ 70] [ 3] [301] +03:06:02 ============================================================================ +03:06:02 Calculate Source COMM Id = 2 +03:06:02 ============================================================================ +03:06:02 + + +waiting on router queue for slot.... +03:06:15 ============================================================================ +03:06:15 Slot Id : <150> +03:06:15 Transaction Type : REQUEST +03:06:15 Received From : +03:06:15 ============================================================================ +03:06:15 FNo. Len. Field Value +03:06:15 ============================================================================ +03:06:15 [ 1] [ 4] [0800] +03:06:15 [ 7] [ 10] [0320101802] +03:06:15 [ 11] [ 6] [031802] +03:06:15 [ 37] [ 12] [57903031802] +03:06:15 [ 70] [ 3] [301] +03:06:15 ============================================================================ +03:06:15 + + +waiting on router queue for slot.... +03:06:15 Sending to : +03:06:15 ============================================================================ +03:06:15 ============================================================================ +03:06:15 Slot Id : <150> +03:06:15 Transaction Type : RESPONSE +03:06:15 Received From : +03:06:15 ============================================================================ +03:06:15 FNo. Len. Field Value +03:06:15 ============================================================================ +03:06:15 [ 1] [ 4] [0810] +03:06:15 [ 7] [ 10] [0320101802] +03:06:15 [ 11] [ 6] [031802] +03:06:15 [ 37] [ 12] [579030318020] +03:06:15 [ 39] [ 2] [00] +03:06:15 [ 70] [ 3] [810] +03:06:15 ============================================================================ +03:06:15 Calculate Source COMM Id = 6 +03:06:15 ============================================================================ +03:06:15 + + +waiting on router queue for slot.... +03:06:17 ============================================================================ +03:06:17 Slot Id : <166> +03:06:17 Transaction Type : REQUEST +03:06:17 Received From : +03:06:17 ============================================================================ +03:06:17 FNo. Len. Field Value +03:06:17 ============================================================================ +03:06:17 [ 1] [ 4] [0800] +03:06:17 [ 7] [ 10] [0319080524] +03:06:17 [ 11] [ 6] [153919] +03:06:17 [ 70] [ 3] [301] +03:06:17 ============================================================================ +03:06:17 + + +waiting on router queue for slot.... +03:06:17 Sending to : +03:06:17 ============================================================================ +03:06:17 ============================================================================ +03:06:17 Slot Id : <166> +03:06:17 Transaction Type : RESPONSE +03:06:17 Received From : +03:06:17 ============================================================================ +03:06:17 FNo. Len. Field Value +03:06:17 ============================================================================ +03:06:17 [ 1] [ 4] [0810] +03:06:17 [ 7] [ 10] [0319080524] +03:06:17 [ 11] [ 6] [153919] +03:06:17 [ 39] [ 2] [00] +03:06:17 [ 70] [ 3] [301] +03:06:17 ============================================================================ +03:06:17 Calculate Source COMM Id = 2 +03:06:17 ============================================================================ +03:06:17 + + +waiting on router queue for slot.... +03:06:21 ============================================================================ +03:06:21 Slot Id : <130> +03:06:21 Transaction Type : REQUEST +03:06:21 Received From : +03:06:21 ============================================================================ +03:06:21 FNo. Len. Field Value +03:06:21 ============================================================================ +03:06:21 [ 1] [ 4] [0800] +03:06:21 [ 7] [ 10] [0319200412] +03:06:21 [ 11] [ 6] [027917] +03:06:21 [ 37] [ 12] [57903027917] +03:06:21 [ 70] [ 3] [301] +03:06:21 ============================================================================ +03:06:21 + + +waiting on router queue for slot.... +03:06:21 Sending to : +03:06:21 ============================================================================ +03:06:21 ============================================================================ +03:06:21 Slot Id : <130> +03:06:21 Transaction Type : RESPONSE +03:06:21 Received From : +03:06:21 ============================================================================ +03:06:21 FNo. Len. Field Value +03:06:21 ============================================================================ +03:06:21 [ 1] [ 4] [0810] +03:06:21 [ 7] [ 10] [0319200412] +03:06:21 [ 11] [ 6] [027917] +03:06:21 [ 37] [ 12] [579030279170] +03:06:21 [ 39] [ 2] [00] +03:06:21 [ 70] [ 3] [810] +03:06:21 ============================================================================ +03:06:21 Calculate Source COMM Id = 4 +03:06:21 ============================================================================ +03:06:21 + + +waiting on router queue for slot.... +03:06:27 ============================================================================ +03:06:27 Slot Id : <133> +03:06:27 Transaction Type : REQUEST +03:06:27 Received From : +03:06:27 ============================================================================ +03:06:27 FNo. Len. Field Value +03:06:27 ============================================================================ +03:06:27 [ 1] [ 4] [0800] +03:06:27 [ 7] [ 10] [0319080534] +03:06:27 [ 11] [ 6] [153920] +03:06:27 [ 70] [ 3] [301] +03:06:27 ============================================================================ +03:06:27 + + +waiting on router queue for slot.... +03:06:27 Sending to : +03:06:27 ============================================================================ +03:06:27 ============================================================================ +03:06:27 Slot Id : <133> +03:06:27 Transaction Type : RESPONSE +03:06:27 Received From : +03:06:27 ============================================================================ +03:06:27 FNo. Len. Field Value +03:06:27 ============================================================================ +03:06:27 [ 1] [ 4] [0810] +03:06:27 [ 7] [ 10] [0319080534] +03:06:27 [ 11] [ 6] [153920] +03:06:27 [ 39] [ 2] [00] +03:06:27 [ 70] [ 3] [301] +03:06:27 ============================================================================ +03:06:27 Calculate Source COMM Id = 2 +03:06:27 ============================================================================ +03:06:27 + + +waiting on router queue for slot.... +03:06:35 ============================================================================ +03:06:35 Slot Id : <142> +03:06:35 Transaction Type : REQUEST +03:06:35 Received From : +03:06:35 ============================================================================ +03:06:35 FNo. Len. Field Value +03:06:35 ============================================================================ +03:06:35 [ 1] [ 4] [0800] +03:06:35 [ 2] [ 5] [02531] +03:06:35 [ 3] [ 6] [579038] +03:06:35 [ 7] [ 10] [0319200635] +03:06:35 [ 11] [ 6] [806592] +03:06:35 [ 15] [ 10] [0319200635] +03:06:35 [ 37] [ 11] [57903806592] +03:06:35 [ 70] [ 3] [001] +03:06:35 ============================================================================ +03:06:35 + + +waiting on router queue for slot.... +03:06:35 ============================================================================ +03:06:35 Slot Id : <142> +03:06:35 Transaction Type : RESPONSE +03:06:35 Received From : +03:06:35 ============================================================================ +03:06:35 FNo. Len. Field Value +03:06:35 ============================================================================ +03:06:35 [ 1] [ 4] [0810] +03:06:35 [ 7] [ 10] [0319200635] +03:06:35 [ 11] [ 6] [806592] +03:06:35 [ 15] [ 4] [0319] +03:06:35 [ 37] [ 12] [57903806592] +03:06:35 [ 39] [ 2] [00] +03:06:35 [ 70] [ 3] [001] +03:06:35 ============================================================================ +03:06:35 Sending to : +03:06:35 ============================================================================ +03:06:35 + + +waiting on router queue for slot.... +03:06:37 ============================================================================ +03:06:37 Slot Id : <153> +03:06:37 Transaction Type : REQUEST +03:06:37 Received From : +03:06:37 ============================================================================ +03:06:37 FNo. Len. Field Value +03:06:37 ============================================================================ +03:06:37 [ 1] [ 4] [0800] +03:06:37 [ 7] [ 10] [0319080544] +03:06:37 [ 11] [ 6] [153921] +03:06:37 [ 70] [ 3] [301] +03:06:37 ============================================================================ +03:06:37 + + +waiting on router queue for slot.... +03:06:37 Sending to : +03:06:37 ============================================================================ +03:06:37 ============================================================================ +03:06:37 Slot Id : <153> +03:06:37 Transaction Type : RESPONSE +03:06:37 Received From : +03:06:37 ============================================================================ +03:06:37 FNo. Len. Field Value +03:06:37 ============================================================================ +03:06:37 [ 1] [ 4] [0810] +03:06:37 [ 7] [ 10] [0319080544] +03:06:37 [ 11] [ 6] [153921] +03:06:37 [ 39] [ 2] [00] +03:06:37 [ 70] [ 3] [301] +03:06:37 ============================================================================ +03:06:37 Calculate Source COMM Id = 2 +03:06:37 ============================================================================ +03:06:37 + + +waiting on router queue for slot.... +03:06:48 ============================================================================ +03:06:48 Slot Id : <110> +03:06:48 Transaction Type : REQUEST +03:06:48 Received From : +03:06:48 ============================================================================ +03:06:48 FNo. Len. Field Value +03:06:48 ============================================================================ +03:06:48 [ 1] [ 4] [0800] +03:06:48 [ 7] [ 10] [0319080555] +03:06:48 [ 11] [ 6] [153922] +03:06:48 [ 70] [ 3] [301] +03:06:48 ============================================================================ +03:06:48 + + +waiting on router queue for slot.... +03:06:48 Sending to : +03:06:48 ============================================================================ +03:06:48 ============================================================================ +03:06:48 Slot Id : <110> +03:06:48 Transaction Type : RESPONSE +03:06:48 Received From : +03:06:48 ============================================================================ +03:06:48 FNo. Len. Field Value +03:06:48 ============================================================================ +03:06:48 [ 1] [ 4] [0810] +03:06:48 [ 7] [ 10] [0319080555] +03:06:48 [ 11] [ 6] [153922] +03:06:48 [ 39] [ 2] [00] +03:06:48 [ 70] [ 3] [301] +03:06:48 ============================================================================ +03:06:48 Calculate Source COMM Id = 2 +03:06:48 ============================================================================ +03:06:48 + + +waiting on router queue for slot.... +03:06:59 ============================================================================ +03:06:59 Slot Id : <167> +03:06:59 Transaction Type : REQUEST +03:06:59 Received From : +03:06:59 ============================================================================ +03:06:59 FNo. Len. Field Value +03:06:59 ============================================================================ +03:06:59 [ 1] [ 4] [0800] +03:06:59 [ 7] [ 10] [0319080606] +03:06:59 [ 11] [ 6] [153923] +03:06:59 [ 70] [ 3] [301] +03:06:59 ============================================================================ +03:06:59 + + +waiting on router queue for slot.... +03:06:59 Sending to : +03:06:59 ============================================================================ +03:06:59 ============================================================================ +03:06:59 Slot Id : <167> +03:06:59 Transaction Type : RESPONSE +03:06:59 Received From : +03:06:59 ============================================================================ +03:06:59 FNo. Len. Field Value +03:06:59 ============================================================================ +03:06:59 [ 1] [ 4] [0810] +03:06:59 [ 7] [ 10] [0319080606] +03:06:59 [ 11] [ 6] [153923] +03:06:59 [ 39] [ 2] [00] +03:06:59 [ 70] [ 3] [301] +03:06:59 ============================================================================ +03:06:59 Calculate Source COMM Id = 2 +03:06:59 ============================================================================ +03:06:59 + + +waiting on router queue for slot.... +03:07:14 ============================================================================ +03:07:14 Slot Id : <137> +03:07:14 Transaction Type : REQUEST +03:07:14 Received From : +03:07:14 ============================================================================ +03:07:14 FNo. Len. Field Value +03:07:14 ============================================================================ +03:07:14 [ 1] [ 4] [0800] +03:07:14 [ 7] [ 10] [0319080621] +03:07:14 [ 11] [ 6] [153924] +03:07:14 [ 70] [ 3] [301] +03:07:14 ============================================================================ +03:07:14 + + +waiting on router queue for slot.... +03:07:14 Sending to : +03:07:14 ============================================================================ +03:07:14 ============================================================================ +03:07:14 Slot Id : <137> +03:07:14 Transaction Type : RESPONSE +03:07:14 Received From : +03:07:14 ============================================================================ +03:07:14 FNo. Len. Field Value +03:07:14 ============================================================================ +03:07:14 [ 1] [ 4] [0810] +03:07:14 [ 7] [ 10] [0319080621] +03:07:14 [ 11] [ 6] [153924] +03:07:14 [ 39] [ 2] [00] +03:07:14 [ 70] [ 3] [301] +03:07:14 ============================================================================ +03:07:14 Calculate Source COMM Id = 2 +03:07:14 ============================================================================ +03:07:14 + + +waiting on router queue for slot.... +03:07:20 ============================================================================ +03:07:20 Slot Id : <128> +03:07:20 Transaction Type : REQUEST +03:07:20 Received From : +03:07:20 ============================================================================ +03:07:20 FNo. Len. Field Value +03:07:20 ============================================================================ +03:07:20 [ 1] [ 4] [0800] +03:07:20 [ 7] [ 10] [0320101907] +03:07:20 [ 11] [ 6] [031907] +03:07:20 [ 37] [ 12] [57903031907] +03:07:20 [ 70] [ 3] [301] +03:07:20 ============================================================================ +03:07:20 + + +waiting on router queue for slot.... +03:07:20 Sending to : +03:07:20 ============================================================================ +03:07:20 ============================================================================ +03:07:20 Slot Id : <128> +03:07:20 Transaction Type : RESPONSE +03:07:20 Received From : +03:07:20 ============================================================================ +03:07:20 FNo. Len. Field Value +03:07:20 ============================================================================ +03:07:20 [ 1] [ 4] [0810] +03:07:20 [ 7] [ 10] [0320101907] +03:07:20 [ 11] [ 6] [031907] +03:07:20 [ 37] [ 12] [579030319070] +03:07:20 [ 39] [ 2] [00] +03:07:20 [ 70] [ 3] [810] +03:07:20 ============================================================================ +03:07:20 Calculate Source COMM Id = 6 +03:07:20 ============================================================================ +03:07:20 + + +waiting on router queue for slot.... +03:07:25 ============================================================================ +03:07:25 Slot Id : <146> +03:07:25 Transaction Type : REQUEST +03:07:25 Received From : +03:07:25 ============================================================================ +03:07:25 FNo. Len. Field Value +03:07:25 ============================================================================ +03:07:25 [ 1] [ 4] [0800] +03:07:25 [ 7] [ 10] [0319080632] +03:07:25 [ 11] [ 6] [153925] +03:07:25 [ 70] [ 3] [301] +03:07:25 ============================================================================ +03:07:25 + + +waiting on router queue for slot.... +03:07:25 Sending to : +03:07:25 ============================================================================ +03:07:25 ============================================================================ +03:07:25 Slot Id : <146> +03:07:25 Transaction Type : RESPONSE +03:07:25 Received From : +03:07:25 ============================================================================ +03:07:25 FNo. Len. Field Value +03:07:25 ============================================================================ +03:07:25 [ 1] [ 4] [0810] +03:07:25 [ 7] [ 10] [0319080632] +03:07:25 [ 11] [ 6] [153925] +03:07:25 [ 39] [ 2] [00] +03:07:25 [ 70] [ 3] [301] +03:07:25 ============================================================================ +03:07:25 Calculate Source COMM Id = 2 +03:07:25 ============================================================================ +03:07:25 + + +waiting on router queue for slot.... +03:07:37 ============================================================================ +03:07:37 Slot Id : <159> +03:07:37 Transaction Type : REQUEST +03:07:37 Received From : +03:07:37 ============================================================================ +03:07:37 FNo. Len. Field Value +03:07:37 ============================================================================ +03:07:37 [ 1] [ 4] [0800] +03:07:37 [ 2] [ 5] [02531] +03:07:37 [ 3] [ 6] [579038] +03:07:37 [ 7] [ 10] [0319200737] +03:07:37 [ 11] [ 6] [806593] +03:07:37 [ 15] [ 10] [0319200737] +03:07:37 [ 37] [ 11] [57903806593] +03:07:37 [ 70] [ 3] [001] +03:07:37 ============================================================================ +03:07:37 + + +waiting on router queue for slot.... +03:07:37 ============================================================================ +03:07:37 Slot Id : <159> +03:07:37 Transaction Type : RESPONSE +03:07:37 Received From : +03:07:37 ============================================================================ +03:07:37 FNo. Len. Field Value +03:07:37 ============================================================================ +03:07:37 [ 1] [ 4] [0810] +03:07:37 [ 7] [ 10] [0319200737] +03:07:37 [ 11] [ 6] [806593] +03:07:37 [ 15] [ 4] [0319] +03:07:37 [ 37] [ 12] [57903806593] +03:07:37 [ 39] [ 2] [00] +03:07:37 [ 70] [ 3] [001] +03:07:37 ============================================================================ +03:07:37 Sending to : +03:07:37 ============================================================================ +03:07:37 + + +waiting on router queue for slot.... +03:07:40 ============================================================================ +03:07:40 Slot Id : <175> +03:07:40 Transaction Type : REQUEST +03:07:40 Received From : +03:07:40 ============================================================================ +03:07:40 FNo. Len. Field Value +03:07:40 ============================================================================ +03:07:40 [ 1] [ 4] [0800] +03:07:40 [ 7] [ 10] [0319080647] +03:07:40 [ 11] [ 6] [153926] +03:07:40 [ 70] [ 3] [301] +03:07:40 ============================================================================ +03:07:40 + + +waiting on router queue for slot.... +03:07:40 Sending to : +03:07:40 ============================================================================ +03:07:40 ============================================================================ +03:07:40 Slot Id : <175> +03:07:40 Transaction Type : RESPONSE +03:07:40 Received From : +03:07:40 ============================================================================ +03:07:40 FNo. Len. Field Value +03:07:40 ============================================================================ +03:07:40 [ 1] [ 4] [0810] +03:07:40 [ 7] [ 10] [0319080647] +03:07:40 [ 11] [ 6] [153926] +03:07:40 [ 39] [ 2] [00] +03:07:40 [ 70] [ 3] [301] +03:07:40 ============================================================================ +03:07:40 Calculate Source COMM Id = 2 +03:07:40 ============================================================================ +03:07:40 + + +waiting on router queue for slot.... +03:07:50 ============================================================================ +03:07:50 Slot Id : <170> +03:07:50 Transaction Type : REQUEST +03:07:50 Received From : +03:07:50 ============================================================================ +03:07:50 FNo. Len. Field Value +03:07:50 ============================================================================ +03:07:50 [ 1] [ 4] [0800] +03:07:50 [ 7] [ 10] [0319080657] +03:07:50 [ 11] [ 6] [153927] +03:07:50 [ 70] [ 3] [301] +03:07:50 ============================================================================ +03:07:50 + + +waiting on router queue for slot.... +03:07:50 Sending to : +03:07:50 ============================================================================ +03:07:50 ============================================================================ +03:07:50 Slot Id : <170> +03:07:50 Transaction Type : RESPONSE +03:07:50 Received From : +03:07:50 ============================================================================ +03:07:50 FNo. Len. Field Value +03:07:50 ============================================================================ +03:07:50 [ 1] [ 4] [0810] +03:07:50 [ 7] [ 10] [0319080657] +03:07:50 [ 11] [ 6] [153927] +03:07:50 [ 39] [ 2] [00] +03:07:50 [ 70] [ 3] [301] +03:07:50 ============================================================================ +03:07:50 Calculate Source COMM Id = 2 +03:07:50 ============================================================================ +03:07:50 + + +waiting on router queue for slot.... +03:08:05 ============================================================================ +03:08:05 Slot Id : <141> +03:08:05 Transaction Type : REQUEST +03:08:05 Received From : +03:08:05 ============================================================================ +03:08:05 FNo. Len. Field Value +03:08:05 ============================================================================ +03:08:05 [ 1] [ 4] [0800] +03:08:05 [ 7] [ 10] [0319080712] +03:08:05 [ 11] [ 6] [153928] +03:08:05 [ 70] [ 3] [301] +03:08:05 ============================================================================ +03:08:05 + + +waiting on router queue for slot.... +03:08:05 Sending to : +03:08:05 ============================================================================ +03:08:05 ============================================================================ +03:08:05 Slot Id : <141> +03:08:05 Transaction Type : RESPONSE +03:08:05 Received From : +03:08:05 ============================================================================ +03:08:05 FNo. Len. Field Value +03:08:05 ============================================================================ +03:08:05 [ 1] [ 4] [0810] +03:08:05 [ 7] [ 10] [0319080712] +03:08:05 [ 11] [ 6] [153928] +03:08:05 [ 39] [ 2] [00] +03:08:05 [ 70] [ 3] [301] +03:08:05 ============================================================================ +03:08:05 Calculate Source COMM Id = 2 +03:08:05 ============================================================================ +03:08:05 + + +waiting on router queue for slot.... +03:08:15 ============================================================================ +03:08:15 Slot Id : <151> +03:08:15 Transaction Type : REQUEST +03:08:15 Received From : +03:08:15 ============================================================================ +03:08:15 FNo. Len. Field Value +03:08:15 ============================================================================ +03:08:15 [ 1] [ 4] [0800] +03:08:15 [ 7] [ 10] [0319080722] +03:08:15 [ 11] [ 6] [153929] +03:08:15 [ 70] [ 3] [301] +03:08:15 ============================================================================ +03:08:15 + + +waiting on router queue for slot.... +03:08:15 Sending to : +03:08:15 ============================================================================ +03:08:15 ============================================================================ +03:08:15 Slot Id : <151> +03:08:15 Transaction Type : RESPONSE +03:08:15 Received From : +03:08:15 ============================================================================ +03:08:15 FNo. Len. Field Value +03:08:15 ============================================================================ +03:08:15 [ 1] [ 4] [0810] +03:08:15 [ 7] [ 10] [0319080722] +03:08:15 [ 11] [ 6] [153929] +03:08:15 [ 39] [ 2] [00] +03:08:15 [ 70] [ 3] [301] +03:08:15 ============================================================================ +03:08:15 Calculate Source COMM Id = 2 +03:08:15 ============================================================================ +03:08:15 + + +waiting on router queue for slot.... +03:08:25 ============================================================================ +03:08:25 Slot Id : <164> +03:08:25 Transaction Type : REQUEST +03:08:25 Received From : +03:08:25 ============================================================================ +03:08:25 FNo. Len. Field Value +03:08:25 ============================================================================ +03:08:25 [ 1] [ 4] [0800] +03:08:25 [ 7] [ 10] [0320102012] +03:08:25 [ 11] [ 6] [032012] +03:08:25 [ 37] [ 12] [57903032012] +03:08:25 [ 70] [ 3] [301] +03:08:25 ============================================================================ +03:08:25 + + +waiting on router queue for slot.... +03:08:25 Sending to : +03:08:25 ============================================================================ +03:08:25 ============================================================================ +03:08:25 Slot Id : <164> +03:08:25 Transaction Type : RESPONSE +03:08:25 Received From : +03:08:25 ============================================================================ +03:08:25 FNo. Len. Field Value +03:08:25 ============================================================================ +03:08:25 [ 1] [ 4] [0810] +03:08:25 [ 7] [ 10] [0320102012] +03:08:25 [ 11] [ 6] [032012] +03:08:25 [ 37] [ 12] [579030320120] +03:08:25 [ 39] [ 2] [00] +03:08:25 [ 70] [ 3] [810] +03:08:25 ============================================================================ +03:08:25 Calculate Source COMM Id = 6 +03:08:25 ============================================================================ +03:08:25 + + +waiting on router queue for slot.... +03:08:25 ============================================================================ +03:08:25 Slot Id : <157> +03:08:25 Transaction Type : REQUEST +03:08:25 Received From : +03:08:25 ============================================================================ +03:08:25 FNo. Len. Field Value +03:08:25 ============================================================================ +03:08:25 [ 1] [ 4] [0800] +03:08:25 [ 7] [ 10] [0319080732] +03:08:25 [ 11] [ 6] [153930] +03:08:25 [ 70] [ 3] [301] +03:08:25 ============================================================================ +03:08:25 + + +waiting on router queue for slot.... +03:08:25 Sending to : +03:08:25 ============================================================================ +03:08:25 ============================================================================ +03:08:25 Slot Id : <157> +03:08:25 Transaction Type : RESPONSE +03:08:25 Received From : +03:08:25 ============================================================================ +03:08:25 FNo. Len. Field Value +03:08:25 ============================================================================ +03:08:25 [ 1] [ 4] [0810] +03:08:25 [ 7] [ 10] [0319080732] +03:08:25 [ 11] [ 6] [153930] +03:08:25 [ 39] [ 2] [00] +03:08:25 [ 70] [ 3] [301] +03:08:25 ============================================================================ +03:08:25 Calculate Source COMM Id = 2 +03:08:25 ============================================================================ +03:08:25 + + +waiting on router queue for slot.... +03:08:36 ============================================================================ +03:08:36 Slot Id : <172> +03:08:36 Transaction Type : REQUEST +03:08:36 Received From : +03:08:36 ============================================================================ +03:08:36 FNo. Len. Field Value +03:08:36 ============================================================================ +03:08:36 [ 1] [ 4] [0800] +03:08:36 [ 7] [ 10] [0319080743] +03:08:36 [ 11] [ 6] [153931] +03:08:36 [ 70] [ 3] [301] +03:08:36 ============================================================================ +03:08:36 + + +waiting on router queue for slot.... +03:08:36 Sending to : +03:08:36 ============================================================================ +03:08:36 ============================================================================ +03:08:36 Slot Id : <172> +03:08:36 Transaction Type : RESPONSE +03:08:36 Received From : +03:08:36 ============================================================================ +03:08:36 FNo. Len. Field Value +03:08:36 ============================================================================ +03:08:36 [ 1] [ 4] [0810] +03:08:36 [ 7] [ 10] [0319080743] +03:08:36 [ 11] [ 6] [153931] +03:08:36 [ 39] [ 2] [00] +03:08:36 [ 70] [ 3] [301] +03:08:36 ============================================================================ +03:08:36 Calculate Source COMM Id = 2 +03:08:36 ============================================================================ +03:08:36 + + +waiting on router queue for slot.... +03:08:39 ============================================================================ +03:08:39 Slot Id : <148> +03:08:39 Transaction Type : REQUEST +03:08:39 Received From : +03:08:39 ============================================================================ +03:08:39 FNo. Len. Field Value +03:08:39 ============================================================================ +03:08:39 [ 1] [ 4] [0800] +03:08:39 [ 2] [ 5] [02531] +03:08:39 [ 3] [ 6] [579038] +03:08:39 [ 7] [ 10] [0319200839] +03:08:39 [ 11] [ 6] [806594] +03:08:39 [ 15] [ 10] [0319200839] +03:08:39 [ 37] [ 11] [57903806594] +03:08:39 [ 70] [ 3] [001] +03:08:39 ============================================================================ +03:08:39 + + +waiting on router queue for slot.... +03:08:39 ============================================================================ +03:08:39 Slot Id : <148> +03:08:39 Transaction Type : RESPONSE +03:08:39 Received From : +03:08:39 ============================================================================ +03:08:39 FNo. Len. Field Value +03:08:39 ============================================================================ +03:08:39 [ 1] [ 4] [0810] +03:08:39 [ 7] [ 10] [0319200839] +03:08:39 [ 11] [ 6] [806594] +03:08:39 [ 15] [ 4] [0319] +03:08:39 [ 37] [ 12] [57903806594] +03:08:39 [ 39] [ 2] [00] +03:08:39 [ 70] [ 3] [001] +03:08:39 ============================================================================ +03:08:39 Sending to : +03:08:39 ============================================================================ +03:08:39 + + +waiting on router queue for slot.... +03:08:51 ============================================================================ +03:08:51 Slot Id : <182> +03:08:51 Transaction Type : REQUEST +03:08:51 Received From : +03:08:51 ============================================================================ +03:08:51 FNo. Len. Field Value +03:08:51 ============================================================================ +03:08:51 [ 1] [ 4] [0800] +03:08:51 [ 7] [ 10] [0319080758] +03:08:51 [ 11] [ 6] [153932] +03:08:51 [ 70] [ 3] [301] +03:08:51 ============================================================================ +03:08:51 + + +waiting on router queue for slot.... +03:08:51 Sending to : +03:08:51 ============================================================================ +03:08:51 ============================================================================ +03:08:51 Slot Id : <182> +03:08:51 Transaction Type : RESPONSE +03:08:51 Received From : +03:08:51 ============================================================================ +03:08:51 FNo. Len. Field Value +03:08:51 ============================================================================ +03:08:51 [ 1] [ 4] [0810] +03:08:51 [ 7] [ 10] [0319080758] +03:08:51 [ 11] [ 6] [153932] +03:08:51 [ 39] [ 2] [00] +03:08:51 [ 70] [ 3] [301] +03:08:51 ============================================================================ +03:08:51 Calculate Source COMM Id = 2 +03:08:51 ============================================================================ +03:08:51 + + +waiting on router queue for slot.... +03:09:07 ============================================================================ +03:09:07 Slot Id : <186> +03:09:07 Transaction Type : REQUEST +03:09:07 Received From : +03:09:07 ============================================================================ +03:09:07 FNo. Len. Field Value +03:09:07 ============================================================================ +03:09:07 [ 1] [ 4] [0800] +03:09:07 [ 7] [ 10] [0319080814] +03:09:07 [ 11] [ 6] [153933] +03:09:07 [ 70] [ 3] [301] +03:09:07 ============================================================================ +03:09:07 + + +waiting on router queue for slot.... +03:09:07 Sending to : +03:09:07 ============================================================================ +03:09:07 ============================================================================ +03:09:07 Slot Id : <186> +03:09:07 Transaction Type : RESPONSE +03:09:07 Received From : +03:09:07 ============================================================================ +03:09:07 FNo. Len. Field Value +03:09:07 ============================================================================ +03:09:07 [ 1] [ 4] [0810] +03:09:07 [ 7] [ 10] [0319080814] +03:09:07 [ 11] [ 6] [153933] +03:09:07 [ 39] [ 2] [00] +03:09:07 [ 70] [ 3] [301] +03:09:07 ============================================================================ +03:09:07 Calculate Source COMM Id = 2 +03:09:07 ============================================================================ +03:09:07 + + +waiting on router queue for slot.... +03:09:17 ============================================================================ +03:09:17 Slot Id : <126> +03:09:17 Transaction Type : REQUEST +03:09:17 Received From : +03:09:17 ============================================================================ +03:09:17 FNo. Len. Field Value +03:09:17 ============================================================================ +03:09:17 [ 1] [ 4] [0800] +03:09:17 [ 7] [ 10] [0319080824] +03:09:17 [ 11] [ 6] [153934] +03:09:17 [ 70] [ 3] [301] +03:09:17 ============================================================================ +03:09:17 + + +waiting on router queue for slot.... +03:09:17 Sending to : +03:09:17 ============================================================================ +03:09:17 ============================================================================ +03:09:17 Slot Id : <126> +03:09:17 Transaction Type : RESPONSE +03:09:17 Received From : +03:09:17 ============================================================================ +03:09:17 FNo. Len. Field Value +03:09:17 ============================================================================ +03:09:17 [ 1] [ 4] [0810] +03:09:17 [ 7] [ 10] [0319080824] +03:09:17 [ 11] [ 6] [153934] +03:09:17 [ 39] [ 2] [00] +03:09:17 [ 70] [ 3] [301] +03:09:17 ============================================================================ +03:09:17 Calculate Source COMM Id = 2 +03:09:17 ============================================================================ +03:09:17 + + +waiting on router queue for slot.... +03:09:29 ============================================================================ +03:09:29 Slot Id : <171> +03:09:29 Transaction Type : REQUEST +03:09:29 Received From : +03:09:29 ============================================================================ +03:09:29 FNo. Len. Field Value +03:09:29 ============================================================================ +03:09:29 [ 1] [ 4] [0800] +03:09:29 [ 7] [ 10] [0319080835] +03:09:29 [ 11] [ 6] [153935] +03:09:29 [ 70] [ 3] [301] +03:09:29 ============================================================================ +03:09:29 + + +waiting on router queue for slot.... +03:09:29 Sending to : +03:09:29 ============================================================================ +03:09:29 ============================================================================ +03:09:29 Slot Id : <171> +03:09:29 Transaction Type : RESPONSE +03:09:29 Received From : +03:09:29 ============================================================================ +03:09:29 FNo. Len. Field Value +03:09:29 ============================================================================ +03:09:29 [ 1] [ 4] [0810] +03:09:29 [ 7] [ 10] [0319080835] +03:09:29 [ 11] [ 6] [153935] +03:09:29 [ 39] [ 2] [00] +03:09:29 [ 70] [ 3] [301] +03:09:29 ============================================================================ +03:09:29 Calculate Source COMM Id = 2 +03:09:29 ============================================================================ +03:09:29 + + +waiting on router queue for slot.... +03:09:30 ============================================================================ +03:09:30 Slot Id : <119> +03:09:30 Transaction Type : REQUEST +03:09:30 Received From : +03:09:30 ============================================================================ +03:09:30 FNo. Len. Field Value +03:09:30 ============================================================================ +03:09:30 [ 1] [ 4] [0800] +03:09:30 [ 7] [ 10] [0320102117] +03:09:30 [ 11] [ 6] [032117] +03:09:30 [ 37] [ 12] [57903032117] +03:09:30 [ 70] [ 3] [301] +03:09:30 ============================================================================ +03:09:30 + + +waiting on router queue for slot.... +03:09:30 Sending to : +03:09:30 ============================================================================ +03:09:30 ============================================================================ +03:09:30 Slot Id : <119> +03:09:30 Transaction Type : RESPONSE +03:09:30 Received From : +03:09:30 ============================================================================ +03:09:30 FNo. Len. Field Value +03:09:30 ============================================================================ +03:09:30 [ 1] [ 4] [0810] +03:09:30 [ 7] [ 10] [0320102117] +03:09:30 [ 11] [ 6] [032117] +03:09:30 [ 37] [ 12] [579030321170] +03:09:30 [ 39] [ 2] [00] +03:09:30 [ 70] [ 3] [810] +03:09:30 ============================================================================ +03:09:30 Calculate Source COMM Id = 6 +03:09:30 ============================================================================ +03:09:30 + + +waiting on router queue for slot.... +03:09:39 ============================================================================ +03:09:39 Slot Id : <139> +03:09:39 Transaction Type : REQUEST +03:09:39 Received From : +03:09:39 ============================================================================ +03:09:39 FNo. Len. Field Value +03:09:39 ============================================================================ +03:09:39 [ 1] [ 4] [0800] +03:09:39 [ 7] [ 10] [0319080846] +03:09:39 [ 11] [ 6] [153936] +03:09:39 [ 70] [ 3] [301] +03:09:39 ============================================================================ +03:09:39 + + +waiting on router queue for slot.... +03:09:39 Sending to : +03:09:39 ============================================================================ +03:09:39 ============================================================================ +03:09:39 Slot Id : <139> +03:09:39 Transaction Type : RESPONSE +03:09:39 Received From : +03:09:39 ============================================================================ +03:09:39 FNo. Len. Field Value +03:09:39 ============================================================================ +03:09:39 [ 1] [ 4] [0810] +03:09:39 [ 7] [ 10] [0319080846] +03:09:39 [ 11] [ 6] [153936] +03:09:39 [ 39] [ 2] [00] +03:09:39 [ 70] [ 3] [301] +03:09:39 ============================================================================ +03:09:39 Calculate Source COMM Id = 2 +03:09:39 ============================================================================ +03:09:39 + + +waiting on router queue for slot.... +03:09:41 ============================================================================ +03:09:41 Slot Id : <156> +03:09:41 Transaction Type : REQUEST +03:09:41 Received From : +03:09:41 ============================================================================ +03:09:41 FNo. Len. Field Value +03:09:41 ============================================================================ +03:09:41 [ 1] [ 4] [0800] +03:09:41 [ 2] [ 5] [02531] +03:09:41 [ 3] [ 6] [579038] +03:09:41 [ 7] [ 10] [0319200941] +03:09:41 [ 11] [ 6] [806595] +03:09:41 [ 15] [ 10] [0319200941] +03:09:41 [ 37] [ 11] [57903806595] +03:09:41 [ 70] [ 3] [001] +03:09:41 ============================================================================ +03:09:41 + + +waiting on router queue for slot.... +03:09:41 ============================================================================ +03:09:41 Slot Id : <156> +03:09:41 Transaction Type : RESPONSE +03:09:41 Received From : +03:09:41 ============================================================================ +03:09:41 FNo. Len. Field Value +03:09:41 ============================================================================ +03:09:41 [ 1] [ 4] [0810] +03:09:41 [ 7] [ 10] [0319200941] +03:09:41 [ 11] [ 6] [806595] +03:09:41 [ 15] [ 4] [0319] +03:09:41 [ 37] [ 12] [57903806595] +03:09:41 [ 39] [ 2] [00] +03:09:41 [ 70] [ 3] [001] +03:09:41 ============================================================================ +03:09:41 Sending to : +03:09:41 ============================================================================ +03:09:41 + + +waiting on router queue for slot.... +03:09:43 ============================================================================ +03:09:43 Slot Id : <176> +03:09:43 Transaction Type : REQUEST +03:09:43 Received From : +03:09:43 ============================================================================ +03:09:43 FNo. Len. Field Value +03:09:43 ============================================================================ +03:09:43 [ 1] [ 4] [0800] +03:09:43 [ 7] [ 10] [0319200938] +03:09:43 [ 11] [ 6] [044670] +03:09:43 [ 37] [ 12] [507903044670] +03:09:43 [ 70] [ 3] [001] +03:09:43 ============================================================================ +03:09:43 + + +waiting on router queue for slot.... +03:09:43 Sending to : +03:09:43 ============================================================================ +03:09:43 ============================================================================ +03:09:43 Slot Id : <176> +03:09:43 Transaction Type : RESPONSE +03:09:43 Received From : +03:09:43 ============================================================================ +03:09:43 FNo. Len. Field Value +03:09:43 ============================================================================ +03:09:43 [ 1] [ 4] [0810] +03:09:43 [ 7] [ 10] [0319200938] +03:09:43 [ 11] [ 6] [044670] +03:09:43 [ 37] [ 12] [507903044670] +03:09:43 [ 39] [ 2] [00] +03:09:43 [ 70] [ 3] [001] +03:09:43 ============================================================================ +03:09:43 Calculate Source COMM Id = 0 +03:09:43 ============================================================================ +03:09:43 + + +waiting on router queue for slot.... +03:09:49 ============================================================================ +03:09:49 Slot Id : <202> +03:09:49 Transaction Type : REQUEST +03:09:49 Received From : +03:09:49 ============================================================================ +03:09:49 FNo. Len. Field Value +03:09:49 ============================================================================ +03:09:49 [ 1] [ 4] [0800] +03:09:49 [ 7] [ 10] [0319080856] +03:09:49 [ 11] [ 6] [153937] +03:09:49 [ 70] [ 3] [301] +03:09:49 ============================================================================ +03:09:49 + + +waiting on router queue for slot.... +03:09:49 Sending to : +03:09:49 ============================================================================ +03:09:49 ============================================================================ +03:09:49 Slot Id : <202> +03:09:49 Transaction Type : RESPONSE +03:09:49 Received From : +03:09:49 ============================================================================ +03:09:49 FNo. Len. Field Value +03:09:49 ============================================================================ +03:09:49 [ 1] [ 4] [0810] +03:09:49 [ 7] [ 10] [0319080856] +03:09:49 [ 11] [ 6] [153937] +03:09:49 [ 39] [ 2] [00] +03:09:49 [ 70] [ 3] [301] +03:09:49 ============================================================================ +03:09:49 Calculate Source COMM Id = 2 +03:09:49 ============================================================================ +03:09:49 + + +waiting on router queue for slot.... +03:09:57 ============================================================================ +03:09:57 Slot Id : <187> +03:09:57 Transaction Type : REQUEST +03:09:57 Received From : +03:09:57 ============================================================================ +03:09:57 FNo. Len. Field Value +03:09:57 ============================================================================ +03:09:57 [ 1] [ 4] [0800] +03:09:57 [ 7] [ 10] [0319201742] +03:09:57 [ 11] [ 6] [034996] +03:09:57 [ 37] [ 12] [57903034996] +03:09:57 [ 70] [ 3] [301] +03:09:57 ============================================================================ +03:09:57 + + +waiting on router queue for slot.... +03:09:57 Sending to : +03:09:57 ============================================================================ +03:09:57 ============================================================================ +03:09:57 Slot Id : <187> +03:09:57 Transaction Type : RESPONSE +03:09:57 Received From : +03:09:57 ============================================================================ +03:09:57 FNo. Len. Field Value +03:09:57 ============================================================================ +03:09:57 [ 1] [ 4] [0810] +03:09:57 [ 7] [ 10] [0319201742] +03:09:57 [ 11] [ 6] [034996] +03:09:57 [ 37] [ 12] [579030349960] +03:09:57 [ 39] [ 2] [00] +03:09:57 [ 70] [ 3] [810] +03:09:57 ============================================================================ +03:09:57 Calculate Source COMM Id = 1 +03:09:57 ============================================================================ +03:09:57 + + +waiting on router queue for slot.... +03:10:00 ============================================================================ +03:10:00 Slot Id : <163> +03:10:00 Transaction Type : REQUEST +03:10:00 Received From : +03:10:00 ============================================================================ +03:10:00 FNo. Len. Field Value +03:10:00 ============================================================================ +03:10:00 [ 1] [ 4] [0800] +03:10:00 [ 7] [ 10] [0319080907] +03:10:00 [ 11] [ 6] [153938] +03:10:00 [ 70] [ 3] [301] +03:10:00 ============================================================================ +03:10:00 + + +waiting on router queue for slot.... +03:10:00 Sending to : +03:10:00 ============================================================================ +03:10:00 ============================================================================ +03:10:00 Slot Id : <163> +03:10:00 Transaction Type : RESPONSE +03:10:00 Received From : +03:10:00 ============================================================================ +03:10:00 FNo. Len. Field Value +03:10:00 ============================================================================ +03:10:00 [ 1] [ 4] [0810] +03:10:00 [ 7] [ 10] [0319080907] +03:10:00 [ 11] [ 6] [153938] +03:10:00 [ 39] [ 2] [00] +03:10:00 [ 70] [ 3] [301] +03:10:00 ============================================================================ +03:10:00 Calculate Source COMM Id = 2 +03:10:00 ============================================================================ +03:10:00 + + +waiting on router queue for slot.... +03:10:15 ============================================================================ +03:10:15 Slot Id : <203> +03:10:15 Transaction Type : REQUEST +03:10:15 Received From : +03:10:15 ============================================================================ +03:10:15 FNo. Len. Field Value +03:10:15 ============================================================================ +03:10:15 [ 1] [ 4] [0800] +03:10:15 [ 7] [ 10] [0319080922] +03:10:15 [ 11] [ 6] [153939] +03:10:15 [ 70] [ 3] [301] +03:10:15 ============================================================================ +03:10:15 + + +waiting on router queue for slot.... +03:10:15 Sending to : +03:10:15 ============================================================================ +03:10:15 ============================================================================ +03:10:15 Slot Id : <203> +03:10:15 Transaction Type : RESPONSE +03:10:15 Received From : +03:10:15 ============================================================================ +03:10:15 FNo. Len. Field Value +03:10:15 ============================================================================ +03:10:15 [ 1] [ 4] [0810] +03:10:15 [ 7] [ 10] [0319080922] +03:10:15 [ 11] [ 6] [153939] +03:10:15 [ 39] [ 2] [00] +03:10:15 [ 70] [ 3] [301] +03:10:15 ============================================================================ +03:10:15 Calculate Source COMM Id = 2 +03:10:15 ============================================================================ +03:10:15 + + +waiting on router queue for slot.... +03:10:16 ============================================================================ +03:10:16 Slot Id : <160> +03:10:16 Transaction Type : REQUEST +03:10:16 Received From : +03:10:16 ============================================================================ +03:10:16 FNo. Len. Field Value +03:10:16 ============================================================================ +03:10:16 [ 1] [ 4] [0800] +03:10:16 [ 7] [ 10] [0320031003] +03:10:16 [ 11] [ 6] [007845] +03:10:16 [ 37] [ 12] [507903007845] +03:10:16 [ 70] [ 3] [ ] +03:10:16 ============================================================================ +03:10:16 + + +waiting on router queue for slot.... +03:10:16 Sending to : +03:10:16 ============================================================================ +03:10:16 ============================================================================ +03:10:16 Slot Id : <160> +03:10:16 Transaction Type : RESPONSE +03:10:16 Received From : +03:10:16 ============================================================================ +03:10:16 FNo. Len. Field Value +03:10:16 ============================================================================ +03:10:16 [ 1] [ 4] [0810] +03:10:16 [ 7] [ 10] [0320031003] +03:10:16 [ 11] [ 6] [007845] +03:10:16 [ 37] [ 12] [507903007845] +03:10:16 [ 39] [ 2] [91] +03:10:16 [ 70] [ 3] [ ] +03:10:16 ============================================================================ +03:10:16 Calculate Source COMM Id = 3 +03:10:16 ============================================================================ +03:10:16 + + +waiting on router queue for slot.... +03:10:25 ============================================================================ +03:10:25 Slot Id : <179> +03:10:25 Transaction Type : REQUEST +03:10:25 Received From : +03:10:25 ============================================================================ +03:10:25 FNo. Len. Field Value +03:10:25 ============================================================================ +03:10:25 [ 1] [ 4] [0800] +03:10:25 [ 7] [ 10] [0319080932] +03:10:25 [ 11] [ 6] [153940] +03:10:25 [ 70] [ 3] [301] +03:10:25 ============================================================================ +03:10:25 + + +waiting on router queue for slot.... +03:10:25 Sending to : +03:10:25 ============================================================================ +03:10:25 ============================================================================ +03:10:25 Slot Id : <179> +03:10:25 Transaction Type : RESPONSE +03:10:25 Received From : +03:10:25 ============================================================================ +03:10:25 FNo. Len. Field Value +03:10:25 ============================================================================ +03:10:25 [ 1] [ 4] [0810] +03:10:25 [ 7] [ 10] [0319080932] +03:10:25 [ 11] [ 6] [153940] +03:10:25 [ 39] [ 2] [00] +03:10:25 [ 70] [ 3] [301] +03:10:25 ============================================================================ +03:10:25 Calculate Source COMM Id = 2 +03:10:25 ============================================================================ +03:10:25 + + +waiting on router queue for slot.... +03:10:35 ============================================================================ +03:10:35 Slot Id : <192> +03:10:35 Transaction Type : REQUEST +03:10:35 Received From : +03:10:35 ============================================================================ +03:10:35 FNo. Len. Field Value +03:10:35 ============================================================================ +03:10:35 [ 1] [ 4] [0800] +03:10:35 [ 7] [ 10] [0320102222] +03:10:35 [ 11] [ 6] [032222] +03:10:35 [ 37] [ 12] [57903032222] +03:10:35 [ 70] [ 3] [301] +03:10:35 ============================================================================ +03:10:35 + + +waiting on router queue for slot.... +03:10:35 Sending to : +03:10:35 ============================================================================ +03:10:35 ============================================================================ +03:10:35 Slot Id : <192> +03:10:35 Transaction Type : RESPONSE +03:10:35 Received From : +03:10:35 ============================================================================ +03:10:35 FNo. Len. Field Value +03:10:35 ============================================================================ +03:10:35 [ 1] [ 4] [0810] +03:10:35 [ 7] [ 10] [0320102222] +03:10:35 [ 11] [ 6] [032222] +03:10:35 [ 37] [ 12] [579030322220] +03:10:35 [ 39] [ 2] [00] +03:10:35 [ 70] [ 3] [810] +03:10:35 ============================================================================ +03:10:35 Calculate Source COMM Id = 6 +03:10:35 ============================================================================ +03:10:35 + + +waiting on router queue for slot.... +03:10:41 ============================================================================ +03:10:41 Slot Id : <135> +03:10:41 Transaction Type : REQUEST +03:10:41 Received From : +03:10:41 ============================================================================ +03:10:41 FNo. Len. Field Value +03:10:41 ============================================================================ +03:10:41 [ 1] [ 4] [0800] +03:10:41 [ 7] [ 10] [0319080948] +03:10:41 [ 11] [ 6] [153941] +03:10:41 [ 70] [ 3] [301] +03:10:41 ============================================================================ +03:10:41 + + +waiting on router queue for slot.... +03:10:41 Sending to : +03:10:41 ============================================================================ +03:10:41 ============================================================================ +03:10:41 Slot Id : <135> +03:10:41 Transaction Type : RESPONSE +03:10:41 Received From : +03:10:41 ============================================================================ +03:10:41 FNo. Len. Field Value +03:10:41 ============================================================================ +03:10:41 [ 1] [ 4] [0810] +03:10:41 [ 7] [ 10] [0319080948] +03:10:41 [ 11] [ 6] [153941] +03:10:41 [ 39] [ 2] [00] +03:10:41 [ 70] [ 3] [301] +03:10:41 ============================================================================ +03:10:41 Calculate Source COMM Id = 2 +03:10:41 ============================================================================ +03:10:41 + + +waiting on router queue for slot.... +03:10:43 ============================================================================ +03:10:43 Slot Id : <144> +03:10:43 Transaction Type : REQUEST +03:10:43 Received From : +03:10:43 ============================================================================ +03:10:43 FNo. Len. Field Value +03:10:43 ============================================================================ +03:10:43 [ 1] [ 4] [0800] +03:10:43 [ 2] [ 5] [02531] +03:10:43 [ 3] [ 6] [579038] +03:10:43 [ 7] [ 10] [0319201043] +03:10:43 [ 11] [ 6] [806596] +03:10:43 [ 15] [ 10] [0319201043] +03:10:43 [ 37] [ 11] [57903806596] +03:10:43 [ 70] [ 3] [001] +03:10:43 ============================================================================ +03:10:43 + + +waiting on router queue for slot.... +03:10:43 ============================================================================ +03:10:43 Slot Id : <144> +03:10:43 Transaction Type : RESPONSE +03:10:43 Received From : +03:10:43 ============================================================================ +03:10:43 FNo. Len. Field Value +03:10:43 ============================================================================ +03:10:43 [ 1] [ 4] [0810] +03:10:43 [ 7] [ 10] [0319201043] +03:10:43 [ 11] [ 6] [806596] +03:10:43 [ 15] [ 4] [0319] +03:10:43 [ 37] [ 12] [57903806596] +03:10:43 [ 39] [ 2] [00] +03:10:43 [ 70] [ 3] [001] +03:10:43 ============================================================================ +03:10:43 Sending to : +03:10:43 ============================================================================ +03:10:43 + + +waiting on router queue for slot.... +03:10:52 ============================================================================ +03:10:52 Slot Id : <204> +03:10:52 Transaction Type : REQUEST +03:10:52 Received From : +03:10:52 ============================================================================ +03:10:52 FNo. Len. Field Value +03:10:52 ============================================================================ +03:10:52 [ 1] [ 4] [0800] +03:10:52 [ 7] [ 10] [0319080958] +03:10:52 [ 11] [ 6] [153942] +03:10:52 [ 70] [ 3] [301] +03:10:52 ============================================================================ +03:10:52 + + +waiting on router queue for slot.... +03:10:52 Sending to : +03:10:52 ============================================================================ +03:10:52 ============================================================================ +03:10:52 Slot Id : <204> +03:10:52 Transaction Type : RESPONSE +03:10:52 Received From : +03:10:52 ============================================================================ +03:10:52 FNo. Len. Field Value +03:10:52 ============================================================================ +03:10:52 [ 1] [ 4] [0810] +03:10:52 [ 7] [ 10] [0319080958] +03:10:52 [ 11] [ 6] [153942] +03:10:52 [ 39] [ 2] [00] +03:10:52 [ 70] [ 3] [301] +03:10:52 ============================================================================ +03:10:52 Calculate Source COMM Id = 2 +03:10:52 ============================================================================ +03:10:52 + + +waiting on router queue for slot.... +03:11:02 ============================================================================ +03:11:02 Slot Id : <152> +03:11:02 Transaction Type : REQUEST +03:11:02 Received From : +03:11:02 ============================================================================ +03:11:02 FNo. Len. Field Value +03:11:02 ============================================================================ +03:11:02 [ 1] [ 4] [0800] +03:11:02 [ 7] [ 10] [0319081009] +03:11:02 [ 11] [ 6] [153943] +03:11:02 [ 70] [ 3] [301] +03:11:02 ============================================================================ +03:11:02 + + +waiting on router queue for slot.... +03:11:02 Sending to : +03:11:02 ============================================================================ +03:11:02 ============================================================================ +03:11:02 Slot Id : <152> +03:11:02 Transaction Type : RESPONSE +03:11:02 Received From : +03:11:02 ============================================================================ +03:11:02 FNo. Len. Field Value +03:11:02 ============================================================================ +03:11:02 [ 1] [ 4] [0810] +03:11:02 [ 7] [ 10] [0319081009] +03:11:02 [ 11] [ 6] [153943] +03:11:02 [ 39] [ 2] [00] +03:11:02 [ 70] [ 3] [301] +03:11:02 ============================================================================ +03:11:02 Calculate Source COMM Id = 2 +03:11:02 ============================================================================ +03:11:02 + + +waiting on router queue for slot.... +03:11:17 ============================================================================ +03:11:17 Slot Id : <196> +03:11:17 Transaction Type : REQUEST +03:11:17 Received From : +03:11:17 ============================================================================ +03:11:17 FNo. Len. Field Value +03:11:17 ============================================================================ +03:11:17 [ 1] [ 4] [0800] +03:11:17 [ 7] [ 10] [0319081024] +03:11:17 [ 11] [ 6] [153944] +03:11:17 [ 70] [ 3] [301] +03:11:17 ============================================================================ +03:11:17 + + +waiting on router queue for slot.... +03:11:17 Sending to : +03:11:17 ============================================================================ +03:11:17 ============================================================================ +03:11:17 Slot Id : <196> +03:11:17 Transaction Type : RESPONSE +03:11:17 Received From : +03:11:17 ============================================================================ +03:11:17 FNo. Len. Field Value +03:11:17 ============================================================================ +03:11:17 [ 1] [ 4] [0810] +03:11:17 [ 7] [ 10] [0319081024] +03:11:17 [ 11] [ 6] [153944] +03:11:17 [ 39] [ 2] [00] +03:11:17 [ 70] [ 3] [301] +03:11:17 ============================================================================ +03:11:17 Calculate Source COMM Id = 2 +03:11:17 ============================================================================ +03:11:17 + + +waiting on router queue for slot.... +03:11:22 ============================================================================ +03:11:22 Slot Id : <191> +03:11:22 Transaction Type : REQUEST +03:11:22 Received From : +03:11:22 ============================================================================ +03:11:22 FNo. Len. Field Value +03:11:22 ============================================================================ +03:11:22 [ 1] [ 4] [0800] +03:11:22 [ 7] [ 10] [0319200912] +03:11:22 [ 11] [ 6] [095991] +03:11:22 [ 37] [ 12] [57903095991] +03:11:22 [ 70] [ 3] [301] +03:11:22 ============================================================================ +03:11:22 + + +waiting on router queue for slot.... +03:11:22 Sending to : +03:11:22 ============================================================================ +03:11:22 ============================================================================ +03:11:22 Slot Id : <191> +03:11:22 Transaction Type : RESPONSE +03:11:22 Received From : +03:11:22 ============================================================================ +03:11:22 FNo. Len. Field Value +03:11:22 ============================================================================ +03:11:22 [ 1] [ 4] [0810] +03:11:22 [ 7] [ 10] [0319200912] +03:11:22 [ 11] [ 6] [095991] +03:11:22 [ 37] [ 12] [579030959910] +03:11:22 [ 39] [ 2] [00] +03:11:22 [ 70] [ 3] [810] +03:11:22 ============================================================================ +03:11:22 Calculate Source COMM Id = 4 +03:11:22 ============================================================================ +03:11:22 + + +waiting on router queue for slot.... +03:11:28 ============================================================================ +03:11:28 Slot Id : <190> +03:11:28 Transaction Type : REQUEST +03:11:28 Received From : +03:11:28 ============================================================================ +03:11:28 FNo. Len. Field Value +03:11:28 ============================================================================ +03:11:28 [ 1] [ 4] [0800] +03:11:28 [ 7] [ 10] [0319081035] +03:11:28 [ 11] [ 6] [153945] +03:11:28 [ 70] [ 3] [301] +03:11:28 ============================================================================ +03:11:28 + + +waiting on router queue for slot.... +03:11:28 Sending to : +03:11:28 ============================================================================ +03:11:28 ============================================================================ +03:11:28 Slot Id : <190> +03:11:28 Transaction Type : RESPONSE +03:11:28 Received From : +03:11:28 ============================================================================ +03:11:28 FNo. Len. Field Value +03:11:28 ============================================================================ +03:11:28 [ 1] [ 4] [0810] +03:11:28 [ 7] [ 10] [0319081035] +03:11:28 [ 11] [ 6] [153945] +03:11:28 [ 39] [ 2] [00] +03:11:28 [ 70] [ 3] [301] +03:11:28 ============================================================================ +03:11:28 Calculate Source COMM Id = 2 +03:11:28 ============================================================================ +03:11:28 + + +waiting on router queue for slot.... +03:11:39 ============================================================================ +03:11:39 Slot Id : <155> +03:11:39 Transaction Type : REQUEST +03:11:39 Received From : +03:11:39 ============================================================================ +03:11:39 FNo. Len. Field Value +03:11:39 ============================================================================ +03:11:39 [ 1] [ 4] [0800] +03:11:39 [ 7] [ 10] [0319081046] +03:11:39 [ 11] [ 6] [153946] +03:11:39 [ 70] [ 3] [301] +03:11:39 ============================================================================ +03:11:39 + + +waiting on router queue for slot.... +03:11:39 Sending to : +03:11:39 ============================================================================ +03:11:39 ============================================================================ +03:11:39 Slot Id : <155> +03:11:39 Transaction Type : RESPONSE +03:11:39 Received From : +03:11:39 ============================================================================ +03:11:39 FNo. Len. Field Value +03:11:39 ============================================================================ +03:11:39 [ 1] [ 4] [0810] +03:11:39 [ 7] [ 10] [0319081046] +03:11:39 [ 11] [ 6] [153946] +03:11:39 [ 39] [ 2] [00] +03:11:39 [ 70] [ 3] [301] +03:11:39 ============================================================================ +03:11:39 Calculate Source COMM Id = 2 +03:11:39 ============================================================================ +03:11:39 + + +waiting on router queue for slot.... +03:11:40 ============================================================================ +03:11:40 Slot Id : <181> +03:11:40 Transaction Type : REQUEST +03:11:40 Received From : +03:11:40 ============================================================================ +03:11:40 FNo. Len. Field Value +03:11:40 ============================================================================ +03:11:40 [ 1] [ 4] [0800] +03:11:40 [ 7] [ 10] [0320102327] +03:11:40 [ 11] [ 6] [032327] +03:11:40 [ 37] [ 12] [57903032327] +03:11:40 [ 70] [ 3] [301] +03:11:40 ============================================================================ +03:11:40 + + +waiting on router queue for slot.... +03:11:40 Sending to : +03:11:40 ============================================================================ +03:11:40 ============================================================================ +03:11:40 Slot Id : <181> +03:11:40 Transaction Type : RESPONSE +03:11:40 Received From : +03:11:40 ============================================================================ +03:11:40 FNo. Len. Field Value +03:11:40 ============================================================================ +03:11:40 [ 1] [ 4] [0810] +03:11:40 [ 7] [ 10] [0320102327] +03:11:40 [ 11] [ 6] [032327] +03:11:40 [ 37] [ 12] [579030323270] +03:11:40 [ 39] [ 2] [00] +03:11:40 [ 70] [ 3] [810] +03:11:40 ============================================================================ +03:11:40 Calculate Source COMM Id = 6 +03:11:40 ============================================================================ +03:11:40 + + +waiting on router queue for slot.... +03:11:45 ============================================================================ +03:11:45 Slot Id : <198> +03:11:45 Transaction Type : REQUEST +03:11:45 Received From : +03:11:45 ============================================================================ +03:11:45 FNo. Len. Field Value +03:11:45 ============================================================================ +03:11:45 [ 1] [ 4] [0800] +03:11:45 [ 2] [ 5] [02531] +03:11:45 [ 3] [ 6] [579038] +03:11:45 [ 7] [ 10] [0319201145] +03:11:45 [ 11] [ 6] [806597] +03:11:45 [ 15] [ 10] [0319201145] +03:11:45 [ 37] [ 11] [57903806597] +03:11:45 [ 70] [ 3] [001] +03:11:45 ============================================================================ +03:11:45 + + +waiting on router queue for slot.... +03:11:45 ============================================================================ +03:11:45 Slot Id : <198> +03:11:45 Transaction Type : RESPONSE +03:11:45 Received From : +03:11:45 ============================================================================ +03:11:45 FNo. Len. Field Value +03:11:45 ============================================================================ +03:11:45 [ 1] [ 4] [0810] +03:11:45 [ 7] [ 10] [0319201145] +03:11:45 [ 11] [ 6] [806597] +03:11:45 [ 15] [ 4] [0319] +03:11:45 [ 37] [ 12] [57903806597] +03:11:45 [ 39] [ 2] [00] +03:11:45 [ 70] [ 3] [001] +03:11:45 ============================================================================ +03:11:45 Sending to : +03:11:45 ============================================================================ +03:11:45 + + +waiting on router queue for slot.... +03:11:51 ============================================================================ +03:11:51 Slot Id : <201> +03:11:51 Transaction Type : REQUEST +03:11:51 Received From : +03:11:51 ============================================================================ +03:11:51 FNo. Len. Field Value +03:11:51 ============================================================================ +03:11:51 [ 1] [ 4] [0800] +03:11:51 [ 7] [ 10] [0319081058] +03:11:51 [ 11] [ 6] [153947] +03:11:51 [ 70] [ 3] [301] +03:11:51 ============================================================================ +03:11:51 + + +waiting on router queue for slot.... +03:11:51 Sending to : +03:11:51 ============================================================================ +03:11:51 ============================================================================ +03:11:51 Slot Id : <201> +03:11:51 Transaction Type : RESPONSE +03:11:51 Received From : +03:11:51 ============================================================================ +03:11:51 FNo. Len. Field Value +03:11:51 ============================================================================ +03:11:51 [ 1] [ 4] [0810] +03:11:51 [ 7] [ 10] [0319081058] +03:11:51 [ 11] [ 6] [153947] +03:11:51 [ 39] [ 2] [00] +03:11:51 [ 70] [ 3] [301] +03:11:51 ============================================================================ +03:11:51 Calculate Source COMM Id = 2 +03:11:51 ============================================================================ +03:11:51 + + +waiting on router queue for slot.... +03:12:02 ============================================================================ +03:12:02 Slot Id : <194> +03:12:02 Transaction Type : REQUEST +03:12:02 Received From : +03:12:02 ============================================================================ +03:12:02 FNo. Len. Field Value +03:12:02 ============================================================================ +03:12:02 [ 1] [ 4] [0800] +03:12:02 [ 7] [ 10] [0319081108] +03:12:02 [ 11] [ 6] [153948] +03:12:02 [ 70] [ 3] [301] +03:12:02 ============================================================================ +03:12:02 + + +waiting on router queue for slot.... +03:12:02 Sending to : +03:12:02 ============================================================================ +03:12:02 ============================================================================ +03:12:02 Slot Id : <194> +03:12:02 Transaction Type : RESPONSE +03:12:02 Received From : +03:12:02 ============================================================================ +03:12:02 FNo. Len. Field Value +03:12:02 ============================================================================ +03:12:02 [ 1] [ 4] [0810] +03:12:02 [ 7] [ 10] [0319081108] +03:12:02 [ 11] [ 6] [153948] +03:12:02 [ 39] [ 2] [00] +03:12:02 [ 70] [ 3] [301] +03:12:02 ============================================================================ +03:12:02 Calculate Source COMM Id = 2 +03:12:02 ============================================================================ +03:12:02 + + +waiting on router queue for slot.... +03:12:16 ============================================================================ +03:12:16 Slot Id : <214> +03:12:16 Transaction Type : REQUEST +03:12:16 Received From : +03:12:16 ============================================================================ +03:12:16 FNo. Len. Field Value +03:12:16 ============================================================================ +03:12:16 [ 1] [ 4] [0800] +03:12:16 [ 7] [ 10] [0319081123] +03:12:16 [ 11] [ 6] [153949] +03:12:16 [ 70] [ 3] [301] +03:12:16 ============================================================================ +03:12:16 + + +waiting on router queue for slot.... +03:12:16 Sending to : +03:12:16 ============================================================================ +03:12:16 ============================================================================ +03:12:16 Slot Id : <214> +03:12:16 Transaction Type : RESPONSE +03:12:16 Received From : +03:12:16 ============================================================================ +03:12:16 FNo. Len. Field Value +03:12:16 ============================================================================ +03:12:16 [ 1] [ 4] [0810] +03:12:16 [ 7] [ 10] [0319081123] +03:12:16 [ 11] [ 6] [153949] +03:12:16 [ 39] [ 2] [00] +03:12:16 [ 70] [ 3] [301] +03:12:16 ============================================================================ +03:12:16 Calculate Source COMM Id = 2 +03:12:16 ============================================================================ +03:12:16 + + +waiting on router queue for slot.... +03:12:28 ============================================================================ +03:12:28 Slot Id : <165> +03:12:28 Transaction Type : REQUEST +03:12:28 Received From : +03:12:28 ============================================================================ +03:12:28 FNo. Len. Field Value +03:12:28 ============================================================================ +03:12:28 [ 1] [ 4] [0800] +03:12:28 [ 7] [ 10] [0319081134] +03:12:28 [ 11] [ 6] [153950] +03:12:28 [ 70] [ 3] [301] +03:12:28 ============================================================================ +03:12:28 + + +waiting on router queue for slot.... +03:12:28 Sending to : +03:12:28 ============================================================================ +03:12:28 ============================================================================ +03:12:28 Slot Id : <165> +03:12:28 Transaction Type : RESPONSE +03:12:28 Received From : +03:12:28 ============================================================================ +03:12:28 FNo. Len. Field Value +03:12:28 ============================================================================ +03:12:28 [ 1] [ 4] [0810] +03:12:28 [ 7] [ 10] [0319081134] +03:12:28 [ 11] [ 6] [153950] +03:12:28 [ 39] [ 2] [00] +03:12:28 [ 70] [ 3] [301] +03:12:28 ============================================================================ +03:12:28 Calculate Source COMM Id = 2 +03:12:28 ============================================================================ +03:12:28 + + +waiting on router queue for slot.... +03:12:42 ============================================================================ +03:12:42 Slot Id : <195> +03:12:42 Transaction Type : REQUEST +03:12:42 Received From : +03:12:42 ============================================================================ +03:12:42 FNo. Len. Field Value +03:12:42 ============================================================================ +03:12:42 [ 1] [ 4] [0800] +03:12:42 [ 7] [ 10] [0319081149] +03:12:42 [ 11] [ 6] [153951] +03:12:42 [ 70] [ 3] [301] +03:12:42 ============================================================================ +03:12:42 + + +waiting on router queue for slot.... +03:12:42 Sending to : +03:12:42 ============================================================================ +03:12:42 ============================================================================ +03:12:42 Slot Id : <195> +03:12:42 Transaction Type : RESPONSE +03:12:42 Received From : +03:12:42 ============================================================================ +03:12:42 FNo. Len. Field Value +03:12:42 ============================================================================ +03:12:42 [ 1] [ 4] [0810] +03:12:42 [ 7] [ 10] [0319081149] +03:12:42 [ 11] [ 6] [153951] +03:12:42 [ 39] [ 2] [00] +03:12:42 [ 70] [ 3] [301] +03:12:42 ============================================================================ +03:12:42 Calculate Source COMM Id = 2 +03:12:42 ============================================================================ +03:12:42 + + +waiting on router queue for slot.... +03:12:45 ============================================================================ +03:12:45 Slot Id : <184> +03:12:45 Transaction Type : REQUEST +03:12:45 Received From : +03:12:45 ============================================================================ +03:12:45 FNo. Len. Field Value +03:12:45 ============================================================================ +03:12:45 [ 1] [ 4] [0800] +03:12:45 [ 7] [ 10] [0320102432] +03:12:45 [ 11] [ 6] [032432] +03:12:45 [ 37] [ 12] [57903032432] +03:12:45 [ 70] [ 3] [301] +03:12:45 ============================================================================ +03:12:45 + + +waiting on router queue for slot.... +03:12:45 Sending to : +03:12:45 ============================================================================ +03:12:45 ============================================================================ +03:12:45 Slot Id : <184> +03:12:45 Transaction Type : RESPONSE +03:12:45 Received From : +03:12:45 ============================================================================ +03:12:45 FNo. Len. Field Value +03:12:45 ============================================================================ +03:12:45 [ 1] [ 4] [0810] +03:12:45 [ 7] [ 10] [0320102432] +03:12:45 [ 11] [ 6] [032432] +03:12:45 [ 37] [ 12] [579030324320] +03:12:45 [ 39] [ 2] [00] +03:12:45 [ 70] [ 3] [810] +03:12:45 ============================================================================ +03:12:45 Calculate Source COMM Id = 6 +03:12:45 ============================================================================ +03:12:45 + + +waiting on router queue for slot.... +03:12:47 ============================================================================ +03:12:47 Slot Id : <209> +03:12:47 Transaction Type : REQUEST +03:12:47 Received From : +03:12:47 ============================================================================ +03:12:47 FNo. Len. Field Value +03:12:47 ============================================================================ +03:12:47 [ 1] [ 4] [0800] +03:12:47 [ 2] [ 5] [02531] +03:12:47 [ 3] [ 6] [579038] +03:12:47 [ 7] [ 10] [0319201247] +03:12:47 [ 11] [ 6] [806598] +03:12:47 [ 15] [ 10] [0319201247] +03:12:47 [ 37] [ 11] [57903806598] +03:12:47 [ 70] [ 3] [001] +03:12:47 ============================================================================ +03:12:47 + + +waiting on router queue for slot.... +03:12:47 ============================================================================ +03:12:47 Slot Id : <209> +03:12:47 Transaction Type : RESPONSE +03:12:47 Received From : +03:12:47 ============================================================================ +03:12:47 FNo. Len. Field Value +03:12:47 ============================================================================ +03:12:47 [ 1] [ 4] [0810] +03:12:47 [ 7] [ 10] [0319201247] +03:12:47 [ 11] [ 6] [806598] +03:12:47 [ 15] [ 4] [0319] +03:12:47 [ 37] [ 12] [57903806598] +03:12:47 [ 39] [ 2] [00] +03:12:47 [ 70] [ 3] [001] +03:12:47 ============================================================================ +03:12:47 Sending to : +03:12:47 ============================================================================ +03:12:47 + + +waiting on router queue for slot.... +03:12:58 ============================================================================ +03:12:58 Slot Id : <213> +03:12:58 Transaction Type : REQUEST +03:12:58 Received From : +03:12:58 ============================================================================ +03:12:58 FNo. Len. Field Value +03:12:58 ============================================================================ +03:12:58 [ 1] [ 4] [0800] +03:12:58 [ 7] [ 10] [0319081205] +03:12:58 [ 11] [ 6] [153952] +03:12:58 [ 70] [ 3] [301] +03:12:58 ============================================================================ +03:12:58 + + +waiting on router queue for slot.... +03:12:58 Sending to : +03:12:58 ============================================================================ +03:12:58 ============================================================================ +03:12:58 Slot Id : <213> +03:12:58 Transaction Type : RESPONSE +03:12:58 Received From : +03:12:58 ============================================================================ +03:12:58 FNo. Len. Field Value +03:12:58 ============================================================================ +03:12:58 [ 1] [ 4] [0810] +03:12:58 [ 7] [ 10] [0319081205] +03:12:58 [ 11] [ 6] [153952] +03:12:58 [ 39] [ 2] [00] +03:12:58 [ 70] [ 3] [301] +03:12:58 ============================================================================ +03:12:58 Calculate Source COMM Id = 2 +03:12:58 ============================================================================ +03:12:58 + + +waiting on router queue for slot.... +03:13:14 ============================================================================ +03:13:14 Slot Id : <178> +03:13:14 Transaction Type : REQUEST +03:13:14 Received From : +03:13:14 ============================================================================ +03:13:14 FNo. Len. Field Value +03:13:14 ============================================================================ +03:13:14 [ 1] [ 4] [0800] +03:13:14 [ 7] [ 10] [0319081221] +03:13:14 [ 11] [ 6] [153953] +03:13:14 [ 70] [ 3] [301] +03:13:14 ============================================================================ +03:13:14 + + +waiting on router queue for slot.... +03:13:14 Sending to : +03:13:14 ============================================================================ +03:13:14 ============================================================================ +03:13:14 Slot Id : <178> +03:13:14 Transaction Type : RESPONSE +03:13:14 Received From : +03:13:14 ============================================================================ +03:13:14 FNo. Len. Field Value +03:13:14 ============================================================================ +03:13:14 [ 1] [ 4] [0810] +03:13:14 [ 7] [ 10] [0319081221] +03:13:14 [ 11] [ 6] [153953] +03:13:14 [ 39] [ 2] [00] +03:13:14 [ 70] [ 3] [301] +03:13:14 ============================================================================ +03:13:14 Calculate Source COMM Id = 2 +03:13:14 ============================================================================ +03:13:14 + + +waiting on router queue for slot.... +03:13:28 ============================================================================ +03:13:28 Slot Id : <208> +03:13:28 Transaction Type : REQUEST +03:13:28 Received From : +03:13:28 ============================================================================ +03:13:28 FNo. Len. Field Value +03:13:28 ============================================================================ +03:13:28 [ 1] [ 4] [0800] +03:13:28 [ 7] [ 10] [0319081235] +03:13:28 [ 11] [ 6] [153954] +03:13:28 [ 70] [ 3] [301] +03:13:28 ============================================================================ +03:13:28 + + +waiting on router queue for slot.... +03:13:28 Sending to : +03:13:28 ============================================================================ +03:13:28 ============================================================================ +03:13:28 Slot Id : <208> +03:13:28 Transaction Type : RESPONSE +03:13:28 Received From : +03:13:28 ============================================================================ +03:13:28 FNo. Len. Field Value +03:13:28 ============================================================================ +03:13:28 [ 1] [ 4] [0810] +03:13:28 [ 7] [ 10] [0319081235] +03:13:28 [ 11] [ 6] [153954] +03:13:28 [ 39] [ 2] [00] +03:13:28 [ 70] [ 3] [301] +03:13:28 ============================================================================ +03:13:28 Calculate Source COMM Id = 2 +03:13:28 ============================================================================ +03:13:28 + + +waiting on router queue for slot.... +03:13:40 ============================================================================ +03:13:40 Slot Id : <193> +03:13:40 Transaction Type : REQUEST +03:13:40 Received From : +03:13:40 ============================================================================ +03:13:40 FNo. Len. Field Value +03:13:40 ============================================================================ +03:13:40 [ 1] [ 4] [0800] +03:13:40 [ 7] [ 10] [0319081246] +03:13:40 [ 11] [ 6] [153955] +03:13:40 [ 70] [ 3] [301] +03:13:40 ============================================================================ +03:13:40 + + +waiting on router queue for slot.... +03:13:40 Sending to : +03:13:40 ============================================================================ +03:13:40 ============================================================================ +03:13:40 Slot Id : <193> +03:13:40 Transaction Type : RESPONSE +03:13:40 Received From : +03:13:40 ============================================================================ +03:13:40 FNo. Len. Field Value +03:13:40 ============================================================================ +03:13:40 [ 1] [ 4] [0810] +03:13:40 [ 7] [ 10] [0319081246] +03:13:40 [ 11] [ 6] [153955] +03:13:40 [ 39] [ 2] [00] +03:13:40 [ 70] [ 3] [301] +03:13:40 ============================================================================ +03:13:40 Calculate Source COMM Id = 2 +03:13:40 ============================================================================ +03:13:40 + + +waiting on router queue for slot.... +03:13:49 ============================================================================ +03:13:49 Slot Id : <211> +03:13:49 Transaction Type : REQUEST +03:13:49 Received From : +03:13:49 ============================================================================ +03:13:49 FNo. Len. Field Value +03:13:49 ============================================================================ +03:13:49 [ 1] [ 4] [0800] +03:13:49 [ 2] [ 5] [02531] +03:13:49 [ 3] [ 6] [579038] +03:13:49 [ 7] [ 10] [0319201349] +03:13:49 [ 11] [ 6] [806599] +03:13:49 [ 15] [ 10] [0319201349] +03:13:49 [ 37] [ 11] [57903806599] +03:13:49 [ 70] [ 3] [001] +03:13:49 ============================================================================ +03:13:49 + + +waiting on router queue for slot.... +03:13:49 ============================================================================ +03:13:49 Slot Id : <211> +03:13:49 Transaction Type : RESPONSE +03:13:49 Received From : +03:13:49 ============================================================================ +03:13:49 FNo. Len. Field Value +03:13:49 ============================================================================ +03:13:49 [ 1] [ 4] [0810] +03:13:49 [ 7] [ 10] [0319201349] +03:13:49 [ 11] [ 6] [806599] +03:13:49 [ 15] [ 4] [0319] +03:13:49 [ 37] [ 12] [57903806599] +03:13:49 [ 39] [ 2] [00] +03:13:49 [ 70] [ 3] [001] +03:13:49 ============================================================================ +03:13:49 Sending to : +03:13:49 ============================================================================ +03:13:49 + + +waiting on router queue for slot.... +03:13:50 ============================================================================ +03:13:50 Slot Id : <206> +03:13:50 Transaction Type : REQUEST +03:13:50 Received From : +03:13:50 ============================================================================ +03:13:50 FNo. Len. Field Value +03:13:50 ============================================================================ +03:13:50 [ 1] [ 4] [0800] +03:13:50 [ 7] [ 10] [0320102537] +03:13:50 [ 11] [ 6] [032537] +03:13:50 [ 37] [ 12] [57903032537] +03:13:50 [ 70] [ 3] [301] +03:13:50 ============================================================================ +03:13:50 + + +waiting on router queue for slot.... +03:13:50 Sending to : +03:13:50 ============================================================================ +03:13:50 ============================================================================ +03:13:50 Slot Id : <206> +03:13:50 Transaction Type : RESPONSE +03:13:50 Received From : +03:13:50 ============================================================================ +03:13:50 FNo. Len. Field Value +03:13:50 ============================================================================ +03:13:50 [ 1] [ 4] [0810] +03:13:50 [ 7] [ 10] [0320102537] +03:13:50 [ 11] [ 6] [032537] +03:13:50 [ 37] [ 12] [579030325370] +03:13:50 [ 39] [ 2] [00] +03:13:50 [ 70] [ 3] [810] +03:13:50 ============================================================================ +03:13:50 Calculate Source COMM Id = 6 +03:13:50 ============================================================================ +03:13:50 + + +waiting on router queue for slot.... +03:13:50 ============================================================================ +03:13:50 Slot Id : <185> +03:13:50 Transaction Type : REQUEST +03:13:50 Received From : +03:13:50 ============================================================================ +03:13:50 FNo. Len. Field Value +03:13:50 ============================================================================ +03:13:50 [ 1] [ 4] [0800] +03:13:50 [ 7] [ 10] [0319081257] +03:13:50 [ 11] [ 6] [153956] +03:13:50 [ 70] [ 3] [301] +03:13:50 ============================================================================ +03:13:50 + + +waiting on router queue for slot.... +03:13:50 Sending to : +03:13:50 ============================================================================ +03:13:50 ============================================================================ +03:13:50 Slot Id : <185> +03:13:50 Transaction Type : RESPONSE +03:13:50 Received From : +03:13:50 ============================================================================ +03:13:50 FNo. Len. Field Value +03:13:50 ============================================================================ +03:13:50 [ 1] [ 4] [0810] +03:13:50 [ 7] [ 10] [0319081257] +03:13:50 [ 11] [ 6] [153956] +03:13:50 [ 39] [ 2] [00] +03:13:50 [ 70] [ 3] [301] +03:13:50 ============================================================================ +03:13:50 Calculate Source COMM Id = 2 +03:13:50 ============================================================================ +03:13:50 + + +waiting on router queue for slot.... +03:14:05 ============================================================================ +03:14:05 Slot Id : <221> +03:14:05 Transaction Type : REQUEST +03:14:05 Received From : +03:14:05 ============================================================================ +03:14:05 FNo. Len. Field Value +03:14:05 ============================================================================ +03:14:05 [ 1] [ 4] [0800] +03:14:05 [ 7] [ 10] [0319081312] +03:14:05 [ 11] [ 6] [153957] +03:14:05 [ 70] [ 3] [301] +03:14:05 ============================================================================ +03:14:05 + + +waiting on router queue for slot.... +03:14:05 Sending to : +03:14:05 ============================================================================ +03:14:05 ============================================================================ +03:14:05 Slot Id : <221> +03:14:05 Transaction Type : RESPONSE +03:14:05 Received From : +03:14:05 ============================================================================ +03:14:05 FNo. Len. Field Value +03:14:05 ============================================================================ +03:14:05 [ 1] [ 4] [0810] +03:14:05 [ 7] [ 10] [0319081312] +03:14:05 [ 11] [ 6] [153957] +03:14:05 [ 39] [ 2] [00] +03:14:05 [ 70] [ 3] [301] +03:14:05 ============================================================================ +03:14:05 Calculate Source COMM Id = 2 +03:14:05 ============================================================================ +03:14:05 + + +waiting on router queue for slot.... +03:14:15 ============================================================================ +03:14:15 Slot Id : <183> +03:14:15 Transaction Type : REQUEST +03:14:15 Received From : +03:14:15 ============================================================================ +03:14:15 FNo. Len. Field Value +03:14:15 ============================================================================ +03:14:15 [ 1] [ 4] [0800] +03:14:15 [ 7] [ 10] [0319081322] +03:14:15 [ 11] [ 6] [153958] +03:14:15 [ 70] [ 3] [301] +03:14:15 ============================================================================ +03:14:15 + + +waiting on router queue for slot.... +03:14:15 Sending to : +03:14:15 ============================================================================ +03:14:15 ============================================================================ +03:14:15 Slot Id : <183> +03:14:15 Transaction Type : RESPONSE +03:14:15 Received From : +03:14:15 ============================================================================ +03:14:15 FNo. Len. Field Value +03:14:15 ============================================================================ +03:14:15 [ 1] [ 4] [0810] +03:14:15 [ 7] [ 10] [0319081322] +03:14:15 [ 11] [ 6] [153958] +03:14:15 [ 39] [ 2] [00] +03:14:15 [ 70] [ 3] [301] +03:14:15 ============================================================================ +03:14:15 Calculate Source COMM Id = 2 +03:14:15 ============================================================================ +03:14:15 + + +waiting on router queue for slot.... +03:14:25 ============================================================================ +03:14:25 Slot Id : <212> +03:14:25 Transaction Type : REQUEST +03:14:25 Received From : +03:14:25 ============================================================================ +03:14:25 FNo. Len. Field Value +03:14:25 ============================================================================ +03:14:25 [ 1] [ 4] [0800] +03:14:25 [ 7] [ 10] [0319081332] +03:14:25 [ 11] [ 6] [153959] +03:14:25 [ 70] [ 3] [301] +03:14:25 ============================================================================ +03:14:25 + + +waiting on router queue for slot.... +03:14:25 Sending to : +03:14:25 ============================================================================ +03:14:25 ============================================================================ +03:14:25 Slot Id : <212> +03:14:25 Transaction Type : RESPONSE +03:14:25 Received From : +03:14:25 ============================================================================ +03:14:25 FNo. Len. Field Value +03:14:25 ============================================================================ +03:14:25 [ 1] [ 4] [0810] +03:14:25 [ 7] [ 10] [0319081332] +03:14:25 [ 11] [ 6] [153959] +03:14:25 [ 39] [ 2] [00] +03:14:25 [ 70] [ 3] [301] +03:14:25 ============================================================================ +03:14:25 Calculate Source COMM Id = 2 +03:14:25 ============================================================================ +03:14:25 + + +waiting on router queue for slot.... +03:14:41 ============================================================================ +03:14:41 Slot Id : <207> +03:14:41 Transaction Type : REQUEST +03:14:41 Received From : +03:14:41 ============================================================================ +03:14:41 FNo. Len. Field Value +03:14:41 ============================================================================ +03:14:41 [ 1] [ 4] [0800] +03:14:41 [ 7] [ 10] [0319081348] +03:14:41 [ 11] [ 6] [153960] +03:14:41 [ 70] [ 3] [301] +03:14:41 ============================================================================ +03:14:41 + + +waiting on router queue for slot.... +03:14:41 Sending to : +03:14:41 ============================================================================ +03:14:41 ============================================================================ +03:14:41 Slot Id : <207> +03:14:41 Transaction Type : RESPONSE +03:14:41 Received From : +03:14:41 ============================================================================ +03:14:41 FNo. Len. Field Value +03:14:41 ============================================================================ +03:14:41 [ 1] [ 4] [0810] +03:14:41 [ 7] [ 10] [0319081348] +03:14:41 [ 11] [ 6] [153960] +03:14:41 [ 39] [ 2] [00] +03:14:41 [ 70] [ 3] [301] +03:14:41 ============================================================================ +03:14:41 Calculate Source COMM Id = 2 +03:14:41 ============================================================================ +03:14:41 + + +waiting on router queue for slot.... +03:14:51 ============================================================================ +03:14:51 Slot Id : <174> +03:14:51 Transaction Type : REQUEST +03:14:51 Received From : +03:14:51 ============================================================================ +03:14:51 FNo. Len. Field Value +03:14:51 ============================================================================ +03:14:51 [ 1] [ 4] [0800] +03:14:51 [ 2] [ 5] [02531] +03:14:51 [ 3] [ 6] [579038] +03:14:51 [ 7] [ 10] [0319201451] +03:14:51 [ 11] [ 6] [806600] +03:14:51 [ 15] [ 10] [0319201451] +03:14:51 [ 37] [ 11] [57903806600] +03:14:51 [ 70] [ 3] [001] +03:14:51 ============================================================================ +03:14:51 + + +waiting on router queue for slot.... +03:14:51 ============================================================================ +03:14:51 Slot Id : <174> +03:14:51 Transaction Type : RESPONSE +03:14:51 Received From : +03:14:51 ============================================================================ +03:14:51 FNo. Len. Field Value +03:14:51 ============================================================================ +03:14:51 [ 1] [ 4] [0810] +03:14:51 [ 7] [ 10] [0319201451] +03:14:51 [ 11] [ 6] [806600] +03:14:51 [ 15] [ 4] [0319] +03:14:51 [ 37] [ 12] [57903806600] +03:14:51 [ 39] [ 2] [00] +03:14:51 [ 70] [ 3] [001] +03:14:51 ============================================================================ +03:14:51 Sending to : +03:14:51 ============================================================================ +03:14:51 + + +waiting on router queue for slot.... +03:14:52 ============================================================================ +03:14:52 Slot Id : <149> +03:14:52 Transaction Type : REQUEST +03:14:52 Received From : +03:14:52 ============================================================================ +03:14:52 FNo. Len. Field Value +03:14:52 ============================================================================ +03:14:52 [ 1] [ 4] [0800] +03:14:52 [ 7] [ 10] [0319081358] +03:14:52 [ 11] [ 6] [153961] +03:14:52 [ 70] [ 3] [301] +03:14:52 ============================================================================ +03:14:52 + + +waiting on router queue for slot.... +03:14:52 Sending to : +03:14:52 ============================================================================ +03:14:52 ============================================================================ +03:14:52 Slot Id : <149> +03:14:52 Transaction Type : RESPONSE +03:14:52 Received From : +03:14:52 ============================================================================ +03:14:52 FNo. Len. Field Value +03:14:52 ============================================================================ +03:14:52 [ 1] [ 4] [0810] +03:14:52 [ 7] [ 10] [0319081358] +03:14:52 [ 11] [ 6] [153961] +03:14:52 [ 39] [ 2] [00] +03:14:52 [ 70] [ 3] [301] +03:14:52 ============================================================================ +03:14:52 Calculate Source COMM Id = 2 +03:14:52 ============================================================================ +03:14:52 + + +waiting on router queue for slot.... +03:14:55 ============================================================================ +03:14:55 Slot Id : <168> +03:14:55 Transaction Type : REQUEST +03:14:55 Received From : +03:14:55 ============================================================================ +03:14:55 FNo. Len. Field Value +03:14:55 ============================================================================ +03:14:55 [ 1] [ 4] [0800] +03:14:55 [ 7] [ 10] [0320102642] +03:14:55 [ 11] [ 6] [032642] +03:14:55 [ 37] [ 12] [57903032642] +03:14:55 [ 70] [ 3] [301] +03:14:55 ============================================================================ +03:14:55 + + +waiting on router queue for slot.... +03:14:55 Sending to : +03:14:55 ============================================================================ +03:14:55 ============================================================================ +03:14:55 Slot Id : <168> +03:14:55 Transaction Type : RESPONSE +03:14:55 Received From : +03:14:55 ============================================================================ +03:14:55 FNo. Len. Field Value +03:14:55 ============================================================================ +03:14:55 [ 1] [ 4] [0810] +03:14:55 [ 7] [ 10] [0320102642] +03:14:55 [ 11] [ 6] [032642] +03:14:55 [ 37] [ 12] [579030326420] +03:14:55 [ 39] [ 2] [00] +03:14:55 [ 70] [ 3] [810] +03:14:55 ============================================================================ +03:14:55 Calculate Source COMM Id = 6 +03:14:55 ============================================================================ +03:14:55 + + +waiting on router queue for slot.... +03:14:57 ============================================================================ +03:14:57 Slot Id : <180> +03:14:57 Transaction Type : REQUEST +03:14:57 Received From : +03:14:57 ============================================================================ +03:14:57 FNo. Len. Field Value +03:14:57 ============================================================================ +03:14:57 [ 1] [ 4] [0800] +03:14:57 [ 7] [ 10] [0319202242] +03:14:57 [ 11] [ 6] [081548] +03:14:57 [ 37] [ 12] [57903081548] +03:14:57 [ 70] [ 3] [301] +03:14:57 ============================================================================ +03:14:57 + + +waiting on router queue for slot.... +03:14:57 Sending to : +03:14:57 ============================================================================ +03:14:57 ============================================================================ +03:14:57 Slot Id : <180> +03:14:57 Transaction Type : RESPONSE +03:14:57 Received From : +03:14:57 ============================================================================ +03:14:57 FNo. Len. Field Value +03:14:57 ============================================================================ +03:14:57 [ 1] [ 4] [0810] +03:14:57 [ 7] [ 10] [0319202242] +03:14:57 [ 11] [ 6] [081548] +03:14:57 [ 37] [ 12] [579030815480] +03:14:57 [ 39] [ 2] [00] +03:14:57 [ 70] [ 3] [810] +03:14:57 ============================================================================ +03:14:57 Calculate Source COMM Id = 1 +03:14:57 ============================================================================ +03:14:57 + + +waiting on router queue for slot.... +03:15:07 ============================================================================ +03:15:07 Slot Id : <189> +03:15:07 Transaction Type : REQUEST +03:15:07 Received From : +03:15:07 ============================================================================ +03:15:07 FNo. Len. Field Value +03:15:07 ============================================================================ +03:15:07 [ 1] [ 4] [0800] +03:15:07 [ 7] [ 10] [0319081414] +03:15:07 [ 11] [ 6] [153962] +03:15:07 [ 70] [ 3] [301] +03:15:07 ============================================================================ +03:15:07 + + +waiting on router queue for slot.... +03:15:07 Sending to : +03:15:07 ============================================================================ +03:15:07 ============================================================================ +03:15:07 Slot Id : <189> +03:15:07 Transaction Type : RESPONSE +03:15:07 Received From : +03:15:07 ============================================================================ +03:15:07 FNo. Len. Field Value +03:15:07 ============================================================================ +03:15:07 [ 1] [ 4] [0810] +03:15:07 [ 7] [ 10] [0319081414] +03:15:07 [ 11] [ 6] [153962] +03:15:07 [ 39] [ 2] [00] +03:15:07 [ 70] [ 3] [301] +03:15:07 ============================================================================ +03:15:07 Calculate Source COMM Id = 2 +03:15:07 ============================================================================ +03:15:07 + + +waiting on router queue for slot.... +03:15:22 ============================================================================ +03:15:22 Slot Id : <222> +03:15:22 Transaction Type : REQUEST +03:15:22 Received From : +03:15:22 ============================================================================ +03:15:22 FNo. Len. Field Value +03:15:22 ============================================================================ +03:15:22 [ 1] [ 4] [0800] +03:15:22 [ 7] [ 10] [0319081429] +03:15:22 [ 11] [ 6] [153963] +03:15:22 [ 70] [ 3] [301] +03:15:22 ============================================================================ +03:15:22 + + +waiting on router queue for slot.... +03:15:22 Sending to : +03:15:22 ============================================================================ +03:15:22 ============================================================================ +03:15:22 Slot Id : <222> +03:15:22 Transaction Type : RESPONSE +03:15:22 Received From : +03:15:22 ============================================================================ +03:15:22 FNo. Len. Field Value +03:15:22 ============================================================================ +03:15:22 [ 1] [ 4] [0810] +03:15:22 [ 7] [ 10] [0319081429] +03:15:22 [ 11] [ 6] [153963] +03:15:22 [ 39] [ 2] [00] +03:15:22 [ 70] [ 3] [301] +03:15:22 ============================================================================ +03:15:22 Calculate Source COMM Id = 2 +03:15:22 ============================================================================ +03:15:22 + + +waiting on router queue for slot.... +03:15:33 ============================================================================ +03:15:33 Slot Id : <169> +03:15:33 Transaction Type : REQUEST +03:15:33 Received From : +03:15:33 ============================================================================ +03:15:33 FNo. Len. Field Value +03:15:33 ============================================================================ +03:15:33 [ 1] [ 4] [0800] +03:15:33 [ 7] [ 10] [0319081440] +03:15:33 [ 11] [ 6] [153964] +03:15:33 [ 70] [ 3] [301] +03:15:33 ============================================================================ +03:15:33 + + +waiting on router queue for slot.... +03:15:33 Sending to : +03:15:33 ============================================================================ +03:15:33 ============================================================================ +03:15:33 Slot Id : <169> +03:15:33 Transaction Type : RESPONSE +03:15:33 Received From : +03:15:33 ============================================================================ +03:15:33 FNo. Len. Field Value +03:15:33 ============================================================================ +03:15:33 [ 1] [ 4] [0810] +03:15:33 [ 7] [ 10] [0319081440] +03:15:33 [ 11] [ 6] [153964] +03:15:33 [ 39] [ 2] [00] +03:15:33 [ 70] [ 3] [301] +03:15:33 ============================================================================ +03:15:33 Calculate Source COMM Id = 2 +03:15:33 ============================================================================ +03:15:33 + + +waiting on router queue for slot.... +03:15:44 ============================================================================ +03:15:44 Slot Id : <225> +03:15:44 Transaction Type : REQUEST +03:15:44 Received From : +03:15:44 ============================================================================ +03:15:44 FNo. Len. Field Value +03:15:44 ============================================================================ +03:15:44 [ 1] [ 4] [0800] +03:15:44 [ 7] [ 10] [0319081451] +03:15:44 [ 11] [ 6] [153965] +03:15:44 [ 70] [ 3] [301] +03:15:44 ============================================================================ +03:15:44 + + +waiting on router queue for slot.... +03:15:44 Sending to : +03:15:44 ============================================================================ +03:15:44 ============================================================================ +03:15:44 Slot Id : <225> +03:15:44 Transaction Type : RESPONSE +03:15:44 Received From : +03:15:44 ============================================================================ +03:15:44 FNo. Len. Field Value +03:15:44 ============================================================================ +03:15:44 [ 1] [ 4] [0810] +03:15:44 [ 7] [ 10] [0319081451] +03:15:44 [ 11] [ 6] [153965] +03:15:44 [ 39] [ 2] [00] +03:15:44 [ 70] [ 3] [301] +03:15:44 ============================================================================ +03:15:44 Calculate Source COMM Id = 2 +03:15:44 ============================================================================ +03:15:44 + + +waiting on router queue for slot.... +03:15:53 ============================================================================ +03:15:53 Slot Id : <232> +03:15:53 Transaction Type : REQUEST +03:15:53 Received From : +03:15:53 ============================================================================ +03:15:53 FNo. Len. Field Value +03:15:53 ============================================================================ +03:15:53 [ 1] [ 4] [0800] +03:15:53 [ 2] [ 5] [02531] +03:15:53 [ 3] [ 6] [579038] +03:15:53 [ 7] [ 10] [0319201553] +03:15:53 [ 11] [ 6] [806601] +03:15:53 [ 15] [ 10] [0319201553] +03:15:53 [ 37] [ 11] [57903806601] +03:15:53 [ 70] [ 3] [001] +03:15:53 ============================================================================ +03:15:53 + + +waiting on router queue for slot.... +03:15:53 ============================================================================ +03:15:53 Slot Id : <232> +03:15:53 Transaction Type : RESPONSE +03:15:53 Received From : +03:15:53 ============================================================================ +03:15:53 FNo. Len. Field Value +03:15:53 ============================================================================ +03:15:53 [ 1] [ 4] [0810] +03:15:53 [ 7] [ 10] [0319201553] +03:15:53 [ 11] [ 6] [806601] +03:15:53 [ 15] [ 4] [0319] +03:15:53 [ 37] [ 12] [57903806601] +03:15:53 [ 39] [ 2] [00] +03:15:53 [ 70] [ 3] [001] +03:15:53 ============================================================================ +03:15:53 Sending to : +03:15:53 ============================================================================ +03:15:53 + + +waiting on router queue for slot.... +03:15:59 ============================================================================ +03:15:59 Slot Id : <205> +03:15:59 Transaction Type : REQUEST +03:15:59 Received From : +03:15:59 ============================================================================ +03:15:59 FNo. Len. Field Value +03:15:59 ============================================================================ +03:15:59 [ 1] [ 4] [0800] +03:15:59 [ 7] [ 10] [0319081506] +03:15:59 [ 11] [ 6] [153966] +03:15:59 [ 70] [ 3] [301] +03:15:59 ============================================================================ +03:15:59 + + +waiting on router queue for slot.... +03:15:59 Sending to : +03:15:59 ============================================================================ +03:15:59 ============================================================================ +03:15:59 Slot Id : <205> +03:15:59 Transaction Type : RESPONSE +03:15:59 Received From : +03:15:59 ============================================================================ +03:15:59 FNo. Len. Field Value +03:15:59 ============================================================================ +03:15:59 [ 1] [ 4] [0810] +03:15:59 [ 7] [ 10] [0319081506] +03:15:59 [ 11] [ 6] [153966] +03:15:59 [ 39] [ 2] [00] +03:15:59 [ 70] [ 3] [301] +03:15:59 ============================================================================ +03:15:59 Calculate Source COMM Id = 2 +03:15:59 ============================================================================ +03:15:59 + + +waiting on router queue for slot.... +03:16:00 ============================================================================ +03:16:00 Slot Id : <230> +03:16:00 Transaction Type : REQUEST +03:16:00 Received From : +03:16:00 ============================================================================ +03:16:00 FNo. Len. Field Value +03:16:00 ============================================================================ +03:16:00 [ 1] [ 4] [0800] +03:16:00 [ 7] [ 10] [0320102747] +03:16:00 [ 11] [ 6] [032747] +03:16:00 [ 37] [ 12] [57903032747] +03:16:00 [ 70] [ 3] [301] +03:16:00 ============================================================================ +03:16:00 + + +waiting on router queue for slot.... +03:16:00 Sending to : +03:16:00 ============================================================================ +03:16:00 ============================================================================ +03:16:00 Slot Id : <230> +03:16:00 Transaction Type : RESPONSE +03:16:00 Received From : +03:16:00 ============================================================================ +03:16:00 FNo. Len. Field Value +03:16:00 ============================================================================ +03:16:00 [ 1] [ 4] [0810] +03:16:00 [ 7] [ 10] [0320102747] +03:16:00 [ 11] [ 6] [032747] +03:16:00 [ 37] [ 12] [579030327470] +03:16:00 [ 39] [ 2] [00] +03:16:00 [ 70] [ 3] [810] +03:16:00 ============================================================================ +03:16:00 Calculate Source COMM Id = 6 +03:16:00 ============================================================================ +03:16:00 + + +waiting on router queue for slot.... +03:16:15 ============================================================================ +03:16:15 Slot Id : <188> +03:16:15 Transaction Type : REQUEST +03:16:15 Received From : +03:16:15 ============================================================================ +03:16:15 FNo. Len. Field Value +03:16:15 ============================================================================ +03:16:15 [ 1] [ 4] [0800] +03:16:15 [ 7] [ 10] [0319081522] +03:16:15 [ 11] [ 6] [153967] +03:16:15 [ 70] [ 3] [301] +03:16:15 ============================================================================ +03:16:15 + + +waiting on router queue for slot.... +03:16:15 Sending to : +03:16:15 ============================================================================ +03:16:15 ============================================================================ +03:16:15 Slot Id : <188> +03:16:15 Transaction Type : RESPONSE +03:16:15 Received From : +03:16:15 ============================================================================ +03:16:15 FNo. Len. Field Value +03:16:15 ============================================================================ +03:16:15 [ 1] [ 4] [0810] +03:16:15 [ 7] [ 10] [0319081522] +03:16:15 [ 11] [ 6] [153967] +03:16:15 [ 39] [ 2] [00] +03:16:15 [ 70] [ 3] [301] +03:16:15 ============================================================================ +03:16:15 Calculate Source COMM Id = 2 +03:16:15 ============================================================================ +03:16:15 + + +waiting on router queue for slot.... +03:16:22 ============================================================================ +03:16:22 Slot Id : <173> +03:16:22 Transaction Type : REQUEST +03:16:22 Received From : +03:16:22 ============================================================================ +03:16:22 FNo. Len. Field Value +03:16:22 ============================================================================ +03:16:22 [ 1] [ 4] [0800] +03:16:22 [ 7] [ 10] [0319201412] +03:16:22 [ 11] [ 6] [017097] +03:16:22 [ 37] [ 12] [57903017097] +03:16:22 [ 70] [ 3] [301] +03:16:22 ============================================================================ +03:16:22 + + +waiting on router queue for slot.... +03:16:22 Sending to : +03:16:22 ============================================================================ +03:16:22 ============================================================================ +03:16:22 Slot Id : <173> +03:16:22 Transaction Type : RESPONSE +03:16:22 Received From : +03:16:22 ============================================================================ +03:16:22 FNo. Len. Field Value +03:16:22 ============================================================================ +03:16:22 [ 1] [ 4] [0810] +03:16:22 [ 7] [ 10] [0319201412] +03:16:22 [ 11] [ 6] [017097] +03:16:22 [ 37] [ 12] [579030170970] +03:16:22 [ 39] [ 2] [00] +03:16:22 [ 70] [ 3] [810] +03:16:22 ============================================================================ +03:16:22 Calculate Source COMM Id = 4 +03:16:22 ============================================================================ +03:16:22 + + +waiting on router queue for slot.... +03:16:26 ============================================================================ +03:16:26 Slot Id : <229> +03:16:26 Transaction Type : REQUEST +03:16:26 Received From : +03:16:26 ============================================================================ +03:16:26 FNo. Len. Field Value +03:16:26 ============================================================================ +03:16:26 [ 1] [ 4] [0800] +03:16:26 [ 7] [ 10] [0319081532] +03:16:26 [ 11] [ 6] [153968] +03:16:26 [ 70] [ 3] [301] +03:16:26 ============================================================================ +03:16:26 + + +waiting on router queue for slot.... +03:16:26 Sending to : +03:16:26 ============================================================================ +03:16:26 ============================================================================ +03:16:26 Slot Id : <229> +03:16:26 Transaction Type : RESPONSE +03:16:26 Received From : +03:16:26 ============================================================================ +03:16:26 FNo. Len. Field Value +03:16:26 ============================================================================ +03:16:26 [ 1] [ 4] [0810] +03:16:26 [ 7] [ 10] [0319081532] +03:16:26 [ 11] [ 6] [153968] +03:16:26 [ 39] [ 2] [00] +03:16:26 [ 70] [ 3] [301] +03:16:26 ============================================================================ +03:16:26 Calculate Source COMM Id = 2 +03:16:26 ============================================================================ +03:16:26 + + +waiting on router queue for slot.... +03:16:36 ============================================================================ +03:16:36 Slot Id : <223> +03:16:36 Transaction Type : REQUEST +03:16:36 Received From : +03:16:36 ============================================================================ +03:16:36 FNo. Len. Field Value +03:16:36 ============================================================================ +03:16:36 [ 1] [ 4] [0800] +03:16:36 [ 7] [ 10] [0319081543] +03:16:36 [ 11] [ 6] [153969] +03:16:36 [ 70] [ 3] [301] +03:16:36 ============================================================================ +03:16:36 + + +waiting on router queue for slot.... +03:16:36 Sending to : +03:16:36 ============================================================================ +03:16:36 ============================================================================ +03:16:36 Slot Id : <223> +03:16:36 Transaction Type : RESPONSE +03:16:36 Received From : +03:16:36 ============================================================================ +03:16:36 FNo. Len. Field Value +03:16:36 ============================================================================ +03:16:36 [ 1] [ 4] [0810] +03:16:36 [ 7] [ 10] [0319081543] +03:16:36 [ 11] [ 6] [153969] +03:16:36 [ 39] [ 2] [00] +03:16:36 [ 70] [ 3] [301] +03:16:36 ============================================================================ +03:16:36 Calculate Source COMM Id = 2 +03:16:36 ============================================================================ +03:16:36 + + +waiting on router queue for slot.... +03:16:46 ============================================================================ +03:16:46 Slot Id : <177> +03:16:46 Transaction Type : REQUEST +03:16:46 Received From : +03:16:46 ============================================================================ +03:16:46 FNo. Len. Field Value +03:16:46 ============================================================================ +03:16:46 [ 1] [ 4] [0800] +03:16:46 [ 7] [ 10] [0319081553] +03:16:46 [ 11] [ 6] [153970] +03:16:46 [ 70] [ 3] [301] +03:16:46 ============================================================================ +03:16:46 + + +waiting on router queue for slot.... +03:16:46 Sending to : +03:16:46 ============================================================================ +03:16:46 ============================================================================ +03:16:46 Slot Id : <177> +03:16:46 Transaction Type : RESPONSE +03:16:46 Received From : +03:16:46 ============================================================================ +03:16:46 FNo. Len. Field Value +03:16:46 ============================================================================ +03:16:46 [ 1] [ 4] [0810] +03:16:46 [ 7] [ 10] [0319081553] +03:16:46 [ 11] [ 6] [153970] +03:16:46 [ 39] [ 2] [00] +03:16:46 [ 70] [ 3] [301] +03:16:46 ============================================================================ +03:16:46 Calculate Source COMM Id = 2 +03:16:46 ============================================================================ +03:16:46 + + +waiting on router queue for slot.... +03:16:55 ============================================================================ +03:16:55 Slot Id : <215> +03:16:55 Transaction Type : REQUEST +03:16:55 Received From : +03:16:55 ============================================================================ +03:16:55 FNo. Len. Field Value +03:16:55 ============================================================================ +03:16:55 [ 1] [ 4] [0800] +03:16:55 [ 2] [ 5] [02531] +03:16:55 [ 3] [ 6] [579038] +03:16:55 [ 7] [ 10] [0319201655] +03:16:55 [ 11] [ 6] [806602] +03:16:55 [ 15] [ 10] [0319201655] +03:16:55 [ 37] [ 11] [57903806602] +03:16:55 [ 70] [ 3] [001] +03:16:55 ============================================================================ +03:16:55 + + +waiting on router queue for slot.... +03:16:55 ============================================================================ +03:16:55 Slot Id : <215> +03:16:55 Transaction Type : RESPONSE +03:16:55 Received From : +03:16:55 ============================================================================ +03:16:55 FNo. Len. Field Value +03:16:55 ============================================================================ +03:16:55 [ 1] [ 4] [0810] +03:16:55 [ 7] [ 10] [0319201655] +03:16:55 [ 11] [ 6] [806602] +03:16:55 [ 15] [ 4] [0319] +03:16:55 [ 37] [ 12] [57903806602] +03:16:55 [ 39] [ 2] [00] +03:16:55 [ 70] [ 3] [001] +03:16:55 ============================================================================ +03:16:55 Sending to : +03:16:55 ============================================================================ +03:16:55 + + +waiting on router queue for slot.... +03:16:58 ============================================================================ +03:16:58 Slot Id : <235> +03:16:58 Transaction Type : REQUEST +03:16:58 Received From : +03:16:58 ============================================================================ +03:16:58 FNo. Len. Field Value +03:16:58 ============================================================================ +03:16:58 [ 1] [ 4] [0800] +03:16:58 [ 7] [ 10] [0319081604] +03:16:58 [ 11] [ 6] [153971] +03:16:58 [ 70] [ 3] [301] +03:16:58 ============================================================================ +03:16:58 + + +waiting on router queue for slot.... +03:16:58 Sending to : +03:16:58 ============================================================================ +03:16:58 ============================================================================ +03:16:58 Slot Id : <235> +03:16:58 Transaction Type : RESPONSE +03:16:58 Received From : +03:16:58 ============================================================================ +03:16:58 FNo. Len. Field Value +03:16:58 ============================================================================ +03:16:58 [ 1] [ 4] [0810] +03:16:58 [ 7] [ 10] [0319081604] +03:16:58 [ 11] [ 6] [153971] +03:16:58 [ 39] [ 2] [00] +03:16:58 [ 70] [ 3] [301] +03:16:58 ============================================================================ +03:16:58 Calculate Source COMM Id = 2 +03:16:58 ============================================================================ +03:16:58 + + +waiting on router queue for slot.... +03:17:05 ============================================================================ +03:17:05 Slot Id : <243> +03:17:05 Transaction Type : REQUEST +03:17:05 Received From : +03:17:05 ============================================================================ +03:17:05 FNo. Len. Field Value +03:17:05 ============================================================================ +03:17:05 [ 1] [ 4] [0800] +03:17:05 [ 7] [ 10] [0320102852] +03:17:05 [ 11] [ 6] [032852] +03:17:05 [ 37] [ 12] [57903032852] +03:17:05 [ 70] [ 3] [301] +03:17:05 ============================================================================ +03:17:05 + + +waiting on router queue for slot.... +03:17:05 Sending to : +03:17:05 ============================================================================ +03:17:05 ============================================================================ +03:17:05 Slot Id : <243> +03:17:05 Transaction Type : RESPONSE +03:17:05 Received From : +03:17:05 ============================================================================ +03:17:05 FNo. Len. Field Value +03:17:05 ============================================================================ +03:17:05 [ 1] [ 4] [0810] +03:17:05 [ 7] [ 10] [0320102852] +03:17:05 [ 11] [ 6] [032852] +03:17:05 [ 37] [ 12] [579030328520] +03:17:05 [ 39] [ 2] [00] +03:17:05 [ 70] [ 3] [810] +03:17:05 ============================================================================ +03:17:05 Calculate Source COMM Id = 6 +03:17:05 ============================================================================ +03:17:05 + + +waiting on router queue for slot.... +03:17:12 ============================================================================ +03:17:12 Slot Id : <246> +03:17:12 Transaction Type : REQUEST +03:17:12 Received From : +03:17:12 ============================================================================ +03:17:12 FNo. Len. Field Value +03:17:12 ============================================================================ +03:17:12 [ 1] [ 4] [0800] +03:17:12 [ 7] [ 10] [0319081619] +03:17:12 [ 11] [ 6] [153972] +03:17:12 [ 70] [ 3] [301] +03:17:12 ============================================================================ +03:17:12 + + +waiting on router queue for slot.... +03:17:12 Sending to : +03:17:12 ============================================================================ +03:17:12 ============================================================================ +03:17:12 Slot Id : <246> +03:17:12 Transaction Type : RESPONSE +03:17:12 Received From : +03:17:12 ============================================================================ +03:17:12 FNo. Len. Field Value +03:17:12 ============================================================================ +03:17:12 [ 1] [ 4] [0810] +03:17:12 [ 7] [ 10] [0319081619] +03:17:12 [ 11] [ 6] [153972] +03:17:12 [ 39] [ 2] [00] +03:17:12 [ 70] [ 3] [301] +03:17:12 ============================================================================ +03:17:12 Calculate Source COMM Id = 2 +03:17:12 ============================================================================ +03:17:12 + + +waiting on router queue for slot.... +03:17:28 ============================================================================ +03:17:28 Slot Id : <242> +03:17:28 Transaction Type : REQUEST +03:17:28 Received From : +03:17:28 ============================================================================ +03:17:28 FNo. Len. Field Value +03:17:28 ============================================================================ +03:17:28 [ 1] [ 4] [0800] +03:17:28 [ 7] [ 10] [0319081635] +03:17:28 [ 11] [ 6] [153973] +03:17:28 [ 70] [ 3] [301] +03:17:28 ============================================================================ +03:17:28 + + +waiting on router queue for slot.... +03:17:28 Sending to : +03:17:28 ============================================================================ +03:17:28 ============================================================================ +03:17:28 Slot Id : <242> +03:17:28 Transaction Type : RESPONSE +03:17:28 Received From : +03:17:28 ============================================================================ +03:17:28 FNo. Len. Field Value +03:17:28 ============================================================================ +03:17:28 [ 1] [ 4] [0810] +03:17:28 [ 7] [ 10] [0319081635] +03:17:28 [ 11] [ 6] [153973] +03:17:28 [ 39] [ 2] [00] +03:17:28 [ 70] [ 3] [301] +03:17:28 ============================================================================ +03:17:28 Calculate Source COMM Id = 2 +03:17:28 ============================================================================ +03:17:28 + + +waiting on router queue for slot.... +03:17:40 ============================================================================ +03:17:40 Slot Id : <248> +03:17:40 Transaction Type : REQUEST +03:17:40 Received From : +03:17:40 ============================================================================ +03:17:40 FNo. Len. Field Value +03:17:40 ============================================================================ +03:17:40 [ 1] [ 4] [0800] +03:17:40 [ 7] [ 10] [0319081646] +03:17:40 [ 11] [ 6] [153974] +03:17:40 [ 70] [ 3] [301] +03:17:40 ============================================================================ +03:17:40 + + +waiting on router queue for slot.... +03:17:40 Sending to : +03:17:40 ============================================================================ +03:17:40 ============================================================================ +03:17:40 Slot Id : <248> +03:17:40 Transaction Type : RESPONSE +03:17:40 Received From : +03:17:40 ============================================================================ +03:17:40 FNo. Len. Field Value +03:17:40 ============================================================================ +03:17:40 [ 1] [ 4] [0810] +03:17:40 [ 7] [ 10] [0319081646] +03:17:40 [ 11] [ 6] [153974] +03:17:40 [ 39] [ 2] [00] +03:17:40 [ 70] [ 3] [301] +03:17:40 ============================================================================ +03:17:40 Calculate Source COMM Id = 2 +03:17:40 ============================================================================ +03:17:40 + + +waiting on router queue for slot.... +03:17:56 ============================================================================ +03:17:56 Slot Id : <244> +03:17:56 Transaction Type : REQUEST +03:17:56 Received From : +03:17:56 ============================================================================ +03:17:56 FNo. Len. Field Value +03:17:56 ============================================================================ +03:17:56 [ 1] [ 4] [0800] +03:17:56 [ 7] [ 10] [0319081701] +03:17:56 [ 11] [ 6] [153975] +03:17:56 [ 70] [ 3] [301] +03:17:56 ============================================================================ +03:17:56 + + +waiting on router queue for slot.... +03:17:56 Sending to : +03:17:56 ============================================================================ +03:17:56 ============================================================================ +03:17:56 Slot Id : <244> +03:17:56 Transaction Type : RESPONSE +03:17:56 Received From : +03:17:56 ============================================================================ +03:17:56 FNo. Len. Field Value +03:17:56 ============================================================================ +03:17:56 [ 1] [ 4] [0810] +03:17:56 [ 7] [ 10] [0319081701] +03:17:56 [ 11] [ 6] [153975] +03:17:56 [ 39] [ 2] [00] +03:17:56 [ 70] [ 3] [301] +03:17:56 ============================================================================ +03:17:56 Calculate Source COMM Id = 2 +03:17:56 ============================================================================ +03:17:56 + + +waiting on router queue for slot.... +03:17:57 ============================================================================ +03:17:57 Slot Id : <227> +03:17:57 Transaction Type : REQUEST +03:17:57 Received From : +03:17:57 ============================================================================ +03:17:57 FNo. Len. Field Value +03:17:57 ============================================================================ +03:17:57 [ 1] [ 4] [0800] +03:17:57 [ 2] [ 5] [02531] +03:17:57 [ 3] [ 6] [579038] +03:17:57 [ 7] [ 10] [0319201757] +03:17:57 [ 11] [ 6] [806603] +03:17:57 [ 15] [ 10] [0319201757] +03:17:57 [ 37] [ 11] [57903806603] +03:17:57 [ 70] [ 3] [001] +03:17:57 ============================================================================ +03:17:57 + + +waiting on router queue for slot.... +03:17:57 ============================================================================ +03:17:57 Slot Id : <227> +03:17:57 Transaction Type : RESPONSE +03:17:57 Received From : +03:17:57 ============================================================================ +03:17:57 FNo. Len. Field Value +03:17:57 ============================================================================ +03:17:57 [ 1] [ 4] [0810] +03:17:57 [ 7] [ 10] [0319201757] +03:17:57 [ 11] [ 6] [806603] +03:17:57 [ 15] [ 4] [0319] +03:17:57 [ 37] [ 12] [57903806603] +03:17:57 [ 39] [ 2] [00] +03:17:57 [ 70] [ 3] [001] +03:17:57 ============================================================================ +03:17:57 Sending to : +03:17:57 ============================================================================ +03:17:57 + + +waiting on router queue for slot.... +03:18:10 ============================================================================ +03:18:10 Slot Id : <250> +03:18:10 Transaction Type : REQUEST +03:18:10 Received From : +03:18:10 ============================================================================ +03:18:10 FNo. Len. Field Value +03:18:10 ============================================================================ +03:18:10 [ 1] [ 4] [0800] +03:18:10 [ 7] [ 10] [0319081717] +03:18:10 [ 11] [ 6] [153976] +03:18:10 [ 70] [ 3] [301] +03:18:10 ============================================================================ +03:18:10 + + +waiting on router queue for slot.... +03:18:10 Sending to : +03:18:10 ============================================================================ +03:18:10 ============================================================================ +03:18:10 Slot Id : <250> +03:18:10 Transaction Type : RESPONSE +03:18:10 Received From : +03:18:10 ============================================================================ +03:18:10 FNo. Len. Field Value +03:18:10 ============================================================================ +03:18:10 [ 1] [ 4] [0810] +03:18:10 [ 7] [ 10] [0319081717] +03:18:10 [ 11] [ 6] [153976] +03:18:10 [ 39] [ 2] [00] +03:18:10 [ 70] [ 3] [301] +03:18:10 ============================================================================ +03:18:10 Calculate Source COMM Id = 2 +03:18:10 ============================================================================ +03:18:10 + + +waiting on router queue for slot.... +03:18:10 ============================================================================ +03:18:10 Slot Id : <251> +03:18:10 Transaction Type : REQUEST +03:18:10 Received From : +03:18:10 ============================================================================ +03:18:10 FNo. Len. Field Value +03:18:10 ============================================================================ +03:18:10 [ 1] [ 4] [0800] +03:18:10 [ 7] [ 10] [0320102958] +03:18:10 [ 11] [ 6] [032958] +03:18:10 [ 37] [ 12] [57903032958] +03:18:10 [ 70] [ 3] [301] +03:18:10 ============================================================================ +03:18:10 + + +waiting on router queue for slot.... +03:18:10 Sending to : +03:18:10 ============================================================================ +03:18:10 ============================================================================ +03:18:10 Slot Id : <251> +03:18:10 Transaction Type : RESPONSE +03:18:10 Received From : +03:18:10 ============================================================================ +03:18:10 FNo. Len. Field Value +03:18:10 ============================================================================ +03:18:10 [ 1] [ 4] [0810] +03:18:10 [ 7] [ 10] [0320102958] +03:18:10 [ 11] [ 6] [032958] +03:18:10 [ 37] [ 12] [579030329580] +03:18:10 [ 39] [ 2] [00] +03:18:10 [ 70] [ 3] [810] +03:18:10 ============================================================================ +03:18:10 Calculate Source COMM Id = 6 +03:18:10 ============================================================================ +03:18:10 + + +waiting on router queue for slot.... +03:18:21 ============================================================================ +03:18:21 Slot Id : <200> +03:18:21 Transaction Type : REQUEST +03:18:21 Received From : +03:18:21 ============================================================================ +03:18:21 FNo. Len. Field Value +03:18:21 ============================================================================ +03:18:21 [ 1] [ 4] [0800] +03:18:21 [ 7] [ 10] [0319081728] +03:18:21 [ 11] [ 6] [153977] +03:18:21 [ 70] [ 3] [301] +03:18:21 ============================================================================ +03:18:21 + + +waiting on router queue for slot.... +03:18:21 Sending to : +03:18:21 ============================================================================ +03:18:21 ============================================================================ +03:18:21 Slot Id : <200> +03:18:21 Transaction Type : RESPONSE +03:18:21 Received From : +03:18:21 ============================================================================ +03:18:21 FNo. Len. Field Value +03:18:21 ============================================================================ +03:18:21 [ 1] [ 4] [0810] +03:18:21 [ 7] [ 10] [0319081728] +03:18:21 [ 11] [ 6] [153977] +03:18:21 [ 39] [ 2] [00] +03:18:21 [ 70] [ 3] [301] +03:18:21 ============================================================================ +03:18:21 Calculate Source COMM Id = 2 +03:18:21 ============================================================================ +03:18:21 + + +waiting on router queue for slot.... +03:18:32 ============================================================================ +03:18:32 Slot Id : <226> +03:18:32 Transaction Type : REQUEST +03:18:32 Received From : +03:18:32 ============================================================================ +03:18:32 FNo. Len. Field Value +03:18:32 ============================================================================ +03:18:32 [ 1] [ 4] [0800] +03:18:32 [ 7] [ 10] [0319081739] +03:18:32 [ 11] [ 6] [153978] +03:18:32 [ 70] [ 3] [301] +03:18:32 ============================================================================ +03:18:32 + + +waiting on router queue for slot.... +03:18:32 Sending to : +03:18:32 ============================================================================ +03:18:32 ============================================================================ +03:18:32 Slot Id : <226> +03:18:32 Transaction Type : RESPONSE +03:18:32 Received From : +03:18:32 ============================================================================ +03:18:32 FNo. Len. Field Value +03:18:32 ============================================================================ +03:18:32 [ 1] [ 4] [0810] +03:18:32 [ 7] [ 10] [0319081739] +03:18:32 [ 11] [ 6] [153978] +03:18:32 [ 39] [ 2] [00] +03:18:32 [ 70] [ 3] [301] +03:18:32 ============================================================================ +03:18:32 Calculate Source COMM Id = 2 +03:18:32 ============================================================================ +03:18:32 + + +waiting on router queue for slot.... +03:18:48 ============================================================================ +03:18:48 Slot Id : <255> +03:18:48 Transaction Type : REQUEST +03:18:48 Received From : +03:18:48 ============================================================================ +03:18:48 FNo. Len. Field Value +03:18:48 ============================================================================ +03:18:48 [ 1] [ 4] [0800] +03:18:48 [ 7] [ 10] [0319081755] +03:18:48 [ 11] [ 6] [153979] +03:18:48 [ 70] [ 3] [301] +03:18:48 ============================================================================ +03:18:48 + + +waiting on router queue for slot.... +03:18:48 Sending to : +03:18:48 ============================================================================ +03:18:48 ============================================================================ +03:18:48 Slot Id : <255> +03:18:48 Transaction Type : RESPONSE +03:18:48 Received From : +03:18:48 ============================================================================ +03:18:48 FNo. Len. Field Value +03:18:48 ============================================================================ +03:18:48 [ 1] [ 4] [0810] +03:18:48 [ 7] [ 10] [0319081755] +03:18:48 [ 11] [ 6] [153979] +03:18:48 [ 39] [ 2] [00] +03:18:48 [ 70] [ 3] [301] +03:18:48 ============================================================================ +03:18:48 Calculate Source COMM Id = 2 +03:18:48 ============================================================================ +03:18:48 + + +waiting on router queue for slot.... +03:18:59 ============================================================================ +03:18:59 Slot Id : <233> +03:18:59 Transaction Type : REQUEST +03:18:59 Received From : +03:18:59 ============================================================================ +03:18:59 FNo. Len. Field Value +03:18:59 ============================================================================ +03:18:59 [ 1] [ 4] [0800] +03:18:59 [ 7] [ 10] [0319081806] +03:18:59 [ 11] [ 6] [153980] +03:18:59 [ 70] [ 3] [301] +03:18:59 ============================================================================ +03:18:59 + + +waiting on router queue for slot.... +03:18:59 Sending to : +03:18:59 ============================================================================ +03:18:59 ============================================================================ +03:18:59 Slot Id : <233> +03:18:59 Transaction Type : RESPONSE +03:18:59 Received From : +03:18:59 ============================================================================ +03:18:59 FNo. Len. Field Value +03:18:59 ============================================================================ +03:18:59 [ 1] [ 4] [0810] +03:18:59 [ 7] [ 10] [0319081806] +03:18:59 [ 11] [ 6] [153980] +03:18:59 [ 39] [ 2] [00] +03:18:59 [ 70] [ 3] [301] +03:18:59 ============================================================================ +03:18:59 Calculate Source COMM Id = 2 +03:18:59 ============================================================================ +03:18:59 + + +waiting on router queue for slot.... +03:18:59 ============================================================================ +03:18:59 Slot Id : <238> +03:18:59 Transaction Type : REQUEST +03:18:59 Received From : +03:18:59 ============================================================================ +03:18:59 FNo. Len. Field Value +03:18:59 ============================================================================ +03:18:59 [ 1] [ 4] [0800] +03:18:59 [ 2] [ 5] [02531] +03:18:59 [ 3] [ 6] [579038] +03:18:59 [ 7] [ 10] [0319201859] +03:18:59 [ 11] [ 6] [806604] +03:18:59 [ 15] [ 10] [0319201859] +03:18:59 [ 37] [ 11] [57903806604] +03:18:59 [ 70] [ 3] [001] +03:18:59 ============================================================================ +03:18:59 + + +waiting on router queue for slot.... +03:18:59 ============================================================================ +03:18:59 Slot Id : <238> +03:18:59 Transaction Type : RESPONSE +03:18:59 Received From : +03:18:59 ============================================================================ +03:18:59 FNo. Len. Field Value +03:18:59 ============================================================================ +03:18:59 [ 1] [ 4] [0810] +03:18:59 [ 7] [ 10] [0319201859] +03:18:59 [ 11] [ 6] [806604] +03:18:59 [ 15] [ 4] [0319] +03:18:59 [ 37] [ 12] [57903806604] +03:18:59 [ 39] [ 2] [00] +03:18:59 [ 70] [ 3] [001] +03:18:59 ============================================================================ +03:18:59 Sending to : +03:18:59 ============================================================================ +03:18:59 + + +waiting on router queue for slot.... +03:19:10 ============================================================================ +03:19:10 Slot Id : <216> +03:19:10 Transaction Type : REQUEST +03:19:10 Received From : +03:19:10 ============================================================================ +03:19:10 FNo. Len. Field Value +03:19:10 ============================================================================ +03:19:10 [ 1] [ 4] [0800] +03:19:10 [ 7] [ 10] [0319081817] +03:19:10 [ 11] [ 6] [153981] +03:19:10 [ 70] [ 3] [301] +03:19:10 ============================================================================ +03:19:10 + + +waiting on router queue for slot.... +03:19:10 Sending to : +03:19:10 ============================================================================ +03:19:10 ============================================================================ +03:19:10 Slot Id : <216> +03:19:10 Transaction Type : RESPONSE +03:19:10 Received From : +03:19:10 ============================================================================ +03:19:10 FNo. Len. Field Value +03:19:10 ============================================================================ +03:19:10 [ 1] [ 4] [0810] +03:19:10 [ 7] [ 10] [0319081817] +03:19:10 [ 11] [ 6] [153981] +03:19:10 [ 39] [ 2] [00] +03:19:10 [ 70] [ 3] [301] +03:19:10 ============================================================================ +03:19:10 Calculate Source COMM Id = 2 +03:19:10 ============================================================================ +03:19:10 + + +waiting on router queue for slot.... +03:19:15 ============================================================================ +03:19:15 Slot Id : <234> +03:19:15 Transaction Type : REQUEST +03:19:15 Received From : +03:19:15 ============================================================================ +03:19:15 FNo. Len. Field Value +03:19:15 ============================================================================ +03:19:15 [ 1] [ 4] [0800] +03:19:15 [ 7] [ 10] [0320103103] +03:19:15 [ 11] [ 6] [033103] +03:19:15 [ 37] [ 12] [57903033103] +03:19:15 [ 70] [ 3] [301] +03:19:15 ============================================================================ +03:19:15 + + +waiting on router queue for slot.... +03:19:15 Sending to : +03:19:15 ============================================================================ +03:19:15 ============================================================================ +03:19:15 Slot Id : <234> +03:19:15 Transaction Type : RESPONSE +03:19:15 Received From : +03:19:15 ============================================================================ +03:19:15 FNo. Len. Field Value +03:19:15 ============================================================================ +03:19:15 [ 1] [ 4] [0810] +03:19:15 [ 7] [ 10] [0320103103] +03:19:15 [ 11] [ 6] [033103] +03:19:15 [ 37] [ 12] [579030331030] +03:19:15 [ 39] [ 2] [00] +03:19:15 [ 70] [ 3] [810] +03:19:15 ============================================================================ +03:19:15 Calculate Source COMM Id = 6 +03:19:15 ============================================================================ +03:19:15 + + +waiting on router queue for slot.... +03:19:21 ============================================================================ +03:19:21 Slot Id : <237> +03:19:21 Transaction Type : REQUEST +03:19:21 Received From : +03:19:21 ============================================================================ +03:19:21 FNo. Len. Field Value +03:19:21 ============================================================================ +03:19:21 [ 1] [ 4] [0800] +03:19:21 [ 7] [ 10] [0319081828] +03:19:21 [ 11] [ 6] [153982] +03:19:21 [ 70] [ 3] [301] +03:19:21 ============================================================================ +03:19:21 + + +waiting on router queue for slot.... +03:19:21 Sending to : +03:19:21 ============================================================================ +03:19:21 ============================================================================ +03:19:21 Slot Id : <237> +03:19:21 Transaction Type : RESPONSE +03:19:21 Received From : +03:19:21 ============================================================================ +03:19:21 FNo. Len. Field Value +03:19:21 ============================================================================ +03:19:21 [ 1] [ 4] [0810] +03:19:21 [ 7] [ 10] [0319081828] +03:19:21 [ 11] [ 6] [153982] +03:19:21 [ 39] [ 2] [00] +03:19:21 [ 70] [ 3] [301] +03:19:21 ============================================================================ +03:19:21 Calculate Source COMM Id = 2 +03:19:21 ============================================================================ +03:19:21 + + +waiting on router queue for slot.... +03:19:32 ============================================================================ +03:19:32 Slot Id : <253> +03:19:32 Transaction Type : REQUEST +03:19:32 Received From : +03:19:32 ============================================================================ +03:19:32 FNo. Len. Field Value +03:19:32 ============================================================================ +03:19:32 [ 1] [ 4] [0800] +03:19:32 [ 7] [ 10] [0319081839] +03:19:32 [ 11] [ 6] [153983] +03:19:32 [ 70] [ 3] [301] +03:19:32 ============================================================================ +03:19:32 + + +waiting on router queue for slot.... +03:19:32 Sending to : +03:19:32 ============================================================================ +03:19:32 ============================================================================ +03:19:32 Slot Id : <253> +03:19:32 Transaction Type : RESPONSE +03:19:32 Received From : +03:19:32 ============================================================================ +03:19:32 FNo. Len. Field Value +03:19:32 ============================================================================ +03:19:32 [ 1] [ 4] [0810] +03:19:32 [ 7] [ 10] [0319081839] +03:19:32 [ 11] [ 6] [153983] +03:19:32 [ 39] [ 2] [00] +03:19:32 [ 70] [ 3] [301] +03:19:32 ============================================================================ +03:19:32 Calculate Source COMM Id = 2 +03:19:32 ============================================================================ +03:19:32 + + +waiting on router queue for slot.... +03:19:47 ============================================================================ +03:19:47 Slot Id : <220> +03:19:47 Transaction Type : REQUEST +03:19:47 Received From : +03:19:47 ============================================================================ +03:19:47 FNo. Len. Field Value +03:19:47 ============================================================================ +03:19:47 [ 1] [ 4] [0800] +03:19:47 [ 7] [ 10] [0319081854] +03:19:47 [ 11] [ 6] [153984] +03:19:47 [ 70] [ 3] [301] +03:19:47 ============================================================================ +03:19:47 + + +waiting on router queue for slot.... +03:19:47 Sending to : +03:19:47 ============================================================================ +03:19:47 ============================================================================ +03:19:47 Slot Id : <220> +03:19:47 Transaction Type : RESPONSE +03:19:47 Received From : +03:19:47 ============================================================================ +03:19:47 FNo. Len. Field Value +03:19:47 ============================================================================ +03:19:47 [ 1] [ 4] [0810] +03:19:47 [ 7] [ 10] [0319081854] +03:19:47 [ 11] [ 6] [153984] +03:19:47 [ 39] [ 2] [00] +03:19:47 [ 70] [ 3] [301] +03:19:47 ============================================================================ +03:19:47 Calculate Source COMM Id = 2 +03:19:47 ============================================================================ +03:19:47 + + +waiting on router queue for slot.... +03:19:57 ============================================================================ +03:19:57 Slot Id : <210> +03:19:57 Transaction Type : REQUEST +03:19:57 Received From : +03:19:57 ============================================================================ +03:19:57 FNo. Len. Field Value +03:19:57 ============================================================================ +03:19:57 [ 1] [ 4] [0800] +03:19:57 [ 7] [ 10] [0319202742] +03:19:57 [ 11] [ 6] [090812] +03:19:57 [ 37] [ 12] [57903090812] +03:19:57 [ 70] [ 3] [301] +03:19:57 ============================================================================ +03:19:57 + + +waiting on router queue for slot.... +03:19:57 Sending to : +03:19:57 ============================================================================ +03:19:57 ============================================================================ +03:19:57 Slot Id : <210> +03:19:57 Transaction Type : RESPONSE +03:19:57 Received From : +03:19:57 ============================================================================ +03:19:57 FNo. Len. Field Value +03:19:57 ============================================================================ +03:19:57 [ 1] [ 4] [0810] +03:19:57 [ 7] [ 10] [0319202742] +03:19:57 [ 11] [ 6] [090812] +03:19:57 [ 37] [ 12] [579030908120] +03:19:57 [ 39] [ 2] [00] +03:19:57 [ 70] [ 3] [810] +03:19:57 ============================================================================ +03:19:57 Calculate Source COMM Id = 1 +03:19:57 ============================================================================ +03:19:57 + + +waiting on router queue for slot.... +03:19:58 ============================================================================ +03:19:58 Slot Id : <249> +03:19:58 Transaction Type : REQUEST +03:19:58 Received From : +03:19:58 ============================================================================ +03:19:58 FNo. Len. Field Value +03:19:58 ============================================================================ +03:19:58 [ 1] [ 4] [0800] +03:19:58 [ 7] [ 10] [0319081905] +03:19:58 [ 11] [ 6] [153985] +03:19:58 [ 70] [ 3] [301] +03:19:58 ============================================================================ +03:19:58 + + +waiting on router queue for slot.... +03:19:58 Sending to : +03:19:58 ============================================================================ +03:19:58 ============================================================================ +03:19:58 Slot Id : <249> +03:19:58 Transaction Type : RESPONSE +03:19:58 Received From : +03:19:58 ============================================================================ +03:19:58 FNo. Len. Field Value +03:19:58 ============================================================================ +03:19:58 [ 1] [ 4] [0810] +03:19:58 [ 7] [ 10] [0319081905] +03:19:58 [ 11] [ 6] [153985] +03:19:58 [ 39] [ 2] [00] +03:19:58 [ 70] [ 3] [301] +03:19:58 ============================================================================ +03:19:58 Calculate Source COMM Id = 2 +03:19:58 ============================================================================ +03:19:58 + + +waiting on router queue for slot.... +03:20:01 ============================================================================ +03:20:01 Slot Id : <260> +03:20:01 Transaction Type : REQUEST +03:20:01 Received From : +03:20:01 ============================================================================ +03:20:01 FNo. Len. Field Value +03:20:01 ============================================================================ +03:20:01 [ 1] [ 4] [0800] +03:20:01 [ 2] [ 5] [02531] +03:20:01 [ 3] [ 6] [579038] +03:20:01 [ 7] [ 10] [0319202001] +03:20:01 [ 11] [ 6] [806605] +03:20:01 [ 15] [ 10] [0319202001] +03:20:01 [ 37] [ 11] [57903806605] +03:20:01 [ 70] [ 3] [001] +03:20:01 ============================================================================ +03:20:01 + + +waiting on router queue for slot.... +03:20:01 ============================================================================ +03:20:01 Slot Id : <260> +03:20:01 Transaction Type : RESPONSE +03:20:01 Received From : +03:20:01 ============================================================================ +03:20:01 FNo. Len. Field Value +03:20:01 ============================================================================ +03:20:01 [ 1] [ 4] [0810] +03:20:01 [ 7] [ 10] [0319202001] +03:20:01 [ 11] [ 6] [806605] +03:20:01 [ 15] [ 4] [0319] +03:20:01 [ 37] [ 12] [57903806605] +03:20:01 [ 39] [ 2] [00] +03:20:01 [ 70] [ 3] [001] +03:20:01 ============================================================================ +03:20:01 Sending to : +03:20:01 ============================================================================ +03:20:01 + + +waiting on router queue for slot.... +03:20:09 ============================================================================ +03:20:09 Slot Id : <199> +03:20:09 Transaction Type : REQUEST +03:20:09 Received From : +03:20:09 ============================================================================ +03:20:09 FNo. Len. Field Value +03:20:09 ============================================================================ +03:20:09 [ 1] [ 4] [0800] +03:20:09 [ 7] [ 10] [0319081916] +03:20:09 [ 11] [ 6] [153986] +03:20:09 [ 70] [ 3] [301] +03:20:09 ============================================================================ +03:20:09 + + +waiting on router queue for slot.... +03:20:09 Sending to : +03:20:09 ============================================================================ +03:20:09 ============================================================================ +03:20:09 Slot Id : <199> +03:20:09 Transaction Type : RESPONSE +03:20:09 Received From : +03:20:09 ============================================================================ +03:20:09 FNo. Len. Field Value +03:20:09 ============================================================================ +03:20:09 [ 1] [ 4] [0810] +03:20:09 [ 7] [ 10] [0319081916] +03:20:09 [ 11] [ 6] [153986] +03:20:09 [ 39] [ 2] [00] +03:20:09 [ 70] [ 3] [301] +03:20:09 ============================================================================ +03:20:09 Calculate Source COMM Id = 2 +03:20:09 ============================================================================ +03:20:09 + + +waiting on router queue for slot.... +03:20:19 ============================================================================ +03:20:19 Slot Id : <259> +03:20:19 Transaction Type : REQUEST +03:20:19 Received From : +03:20:19 ============================================================================ +03:20:19 FNo. Len. Field Value +03:20:19 ============================================================================ +03:20:19 [ 1] [ 4] [0800] +03:20:19 [ 7] [ 10] [0319081926] +03:20:19 [ 11] [ 6] [153987] +03:20:19 [ 70] [ 3] [301] +03:20:19 ============================================================================ +03:20:19 + + +waiting on router queue for slot.... +03:20:19 Sending to : +03:20:19 ============================================================================ +03:20:19 ============================================================================ +03:20:19 Slot Id : <259> +03:20:19 Transaction Type : RESPONSE +03:20:19 Received From : +03:20:19 ============================================================================ +03:20:19 FNo. Len. Field Value +03:20:19 ============================================================================ +03:20:19 [ 1] [ 4] [0810] +03:20:19 [ 7] [ 10] [0319081926] +03:20:19 [ 11] [ 6] [153987] +03:20:19 [ 39] [ 2] [00] +03:20:19 [ 70] [ 3] [301] +03:20:19 ============================================================================ +03:20:19 Calculate Source COMM Id = 2 +03:20:19 ============================================================================ +03:20:19 + + +waiting on router queue for slot.... +03:20:20 ============================================================================ +03:20:20 Slot Id : <263> +03:20:20 Transaction Type : REQUEST +03:20:20 Received From : +03:20:20 ============================================================================ +03:20:20 FNo. Len. Field Value +03:20:20 ============================================================================ +03:20:20 [ 1] [ 4] [0800] +03:20:20 [ 7] [ 10] [0320103208] +03:20:20 [ 11] [ 6] [033208] +03:20:20 [ 37] [ 12] [57903033208] +03:20:20 [ 70] [ 3] [301] +03:20:20 ============================================================================ +03:20:20 + + +waiting on router queue for slot.... +03:20:20 Sending to : +03:20:20 ============================================================================ +03:20:20 ============================================================================ +03:20:20 Slot Id : <263> +03:20:20 Transaction Type : RESPONSE +03:20:20 Received From : +03:20:20 ============================================================================ +03:20:20 FNo. Len. Field Value +03:20:20 ============================================================================ +03:20:20 [ 1] [ 4] [0810] +03:20:20 [ 7] [ 10] [0320103208] +03:20:20 [ 11] [ 6] [033208] +03:20:20 [ 37] [ 12] [579030332080] +03:20:20 [ 39] [ 2] [00] +03:20:20 [ 70] [ 3] [810] +03:20:20 ============================================================================ +03:20:20 Calculate Source COMM Id = 6 +03:20:20 ============================================================================ +03:20:20 + + +waiting on router queue for slot.... +03:20:30 ============================================================================ +03:20:30 Slot Id : <261> +03:20:30 Transaction Type : REQUEST +03:20:30 Received From : +03:20:30 ============================================================================ +03:20:30 FNo. Len. Field Value +03:20:30 ============================================================================ +03:20:30 [ 1] [ 4] [0800] +03:20:30 [ 7] [ 10] [0319081937] +03:20:30 [ 11] [ 6] [153988] +03:20:30 [ 70] [ 3] [301] +03:20:30 ============================================================================ +03:20:30 + + +waiting on router queue for slot.... +03:20:30 Sending to : +03:20:30 ============================================================================ +03:20:30 ============================================================================ +03:20:30 Slot Id : <261> +03:20:30 Transaction Type : RESPONSE +03:20:30 Received From : +03:20:30 ============================================================================ +03:20:30 FNo. Len. Field Value +03:20:30 ============================================================================ +03:20:30 [ 1] [ 4] [0810] +03:20:30 [ 7] [ 10] [0319081937] +03:20:30 [ 11] [ 6] [153988] +03:20:30 [ 39] [ 2] [00] +03:20:30 [ 70] [ 3] [301] +03:20:30 ============================================================================ +03:20:30 Calculate Source COMM Id = 2 +03:20:30 ============================================================================ +03:20:30 + + +waiting on router queue for slot.... +03:20:41 ============================================================================ +03:20:41 Slot Id : <270> +03:20:41 Transaction Type : REQUEST +03:20:41 Received From : +03:20:41 ============================================================================ +03:20:41 FNo. Len. Field Value +03:20:41 ============================================================================ +03:20:41 [ 1] [ 4] [0800] +03:20:41 [ 7] [ 10] [0319081948] +03:20:41 [ 11] [ 6] [153989] +03:20:41 [ 70] [ 3] [301] +03:20:41 ============================================================================ +03:20:41 + + +waiting on router queue for slot.... +03:20:41 Sending to : +03:20:41 ============================================================================ +03:20:41 ============================================================================ +03:20:41 Slot Id : <270> +03:20:41 Transaction Type : RESPONSE +03:20:41 Received From : +03:20:41 ============================================================================ +03:20:41 FNo. Len. Field Value +03:20:41 ============================================================================ +03:20:41 [ 1] [ 4] [0810] +03:20:41 [ 7] [ 10] [0319081948] +03:20:41 [ 11] [ 6] [153989] +03:20:41 [ 39] [ 2] [00] +03:20:41 [ 70] [ 3] [301] +03:20:41 ============================================================================ +03:20:41 Calculate Source COMM Id = 2 +03:20:41 ============================================================================ +03:20:41 + + +waiting on router queue for slot.... +03:20:51 ============================================================================ +03:20:51 Slot Id : <269> +03:20:51 Transaction Type : REQUEST +03:20:51 Received From : +03:20:51 ============================================================================ +03:20:51 FNo. Len. Field Value +03:20:51 ============================================================================ +03:20:51 [ 1] [ 4] [0800] +03:20:51 [ 7] [ 10] [0319081958] +03:20:51 [ 11] [ 6] [153990] +03:20:51 [ 70] [ 3] [301] +03:20:51 ============================================================================ +03:20:51 + + +waiting on router queue for slot.... +03:20:51 Sending to : +03:20:51 ============================================================================ +03:20:51 ============================================================================ +03:20:51 Slot Id : <269> +03:20:51 Transaction Type : RESPONSE +03:20:51 Received From : +03:20:51 ============================================================================ +03:20:51 FNo. Len. Field Value +03:20:51 ============================================================================ +03:20:51 [ 1] [ 4] [0810] +03:20:51 [ 7] [ 10] [0319081958] +03:20:51 [ 11] [ 6] [153990] +03:20:51 [ 39] [ 2] [00] +03:20:51 [ 70] [ 3] [301] +03:20:51 ============================================================================ +03:20:51 Calculate Source COMM Id = 2 +03:20:51 ============================================================================ +03:20:51 + + +waiting on router queue for slot.... +03:21:02 ============================================================================ +03:21:02 Slot Id : <256> +03:21:02 Transaction Type : REQUEST +03:21:02 Received From : +03:21:02 ============================================================================ +03:21:02 FNo. Len. Field Value +03:21:02 ============================================================================ +03:21:02 [ 1] [ 4] [0800] +03:21:02 [ 7] [ 10] [0320032049] +03:21:02 [ 11] [ 6] [009150] +03:21:02 [ 37] [ 12] [507903009150] +03:21:02 [ 70] [ 3] [ ] +03:21:02 ============================================================================ +03:21:02 + + +waiting on router queue for slot.... +03:21:02 Sending to : +03:21:02 ============================================================================ +03:21:02 ============================================================================ +03:21:02 Slot Id : <256> +03:21:02 Transaction Type : RESPONSE +03:21:02 Received From : +03:21:02 ============================================================================ +03:21:02 FNo. Len. Field Value +03:21:02 ============================================================================ +03:21:02 [ 1] [ 4] [0810] +03:21:02 [ 7] [ 10] [0320032049] +03:21:02 [ 11] [ 6] [009150] +03:21:02 [ 37] [ 12] [507903009150] +03:21:02 [ 39] [ 2] [91] +03:21:02 [ 70] [ 3] [ ] +03:21:02 ============================================================================ +03:21:02 Calculate Source COMM Id = 3 +03:21:02 ============================================================================ +03:21:02 + + +waiting on router queue for slot.... +03:21:03 ============================================================================ +03:21:03 Slot Id : <197> +03:21:03 Transaction Type : REQUEST +03:21:03 Received From : +03:21:03 ============================================================================ +03:21:03 FNo. Len. Field Value +03:21:03 ============================================================================ +03:21:03 [ 1] [ 4] [0800] +03:21:03 [ 2] [ 5] [02531] +03:21:03 [ 3] [ 6] [579038] +03:21:03 [ 7] [ 10] [0319202103] +03:21:03 [ 11] [ 6] [806606] +03:21:03 [ 15] [ 10] [0319202103] +03:21:03 [ 37] [ 11] [57903806606] +03:21:03 [ 70] [ 3] [001] +03:21:03 ============================================================================ +03:21:03 + + +waiting on router queue for slot.... +03:21:03 ============================================================================ +03:21:03 Slot Id : <197> +03:21:03 Transaction Type : RESPONSE +03:21:03 Received From : +03:21:03 ============================================================================ +03:21:03 FNo. Len. Field Value +03:21:03 ============================================================================ +03:21:03 [ 1] [ 4] [0810] +03:21:03 [ 7] [ 10] [0319202103] +03:21:03 [ 11] [ 6] [806606] +03:21:03 [ 15] [ 4] [0319] +03:21:03 [ 37] [ 12] [57903806606] +03:21:03 [ 39] [ 2] [00] +03:21:03 [ 70] [ 3] [001] +03:21:03 ============================================================================ +03:21:03 Sending to : +03:21:03 ============================================================================ +03:21:03 + + +waiting on router queue for slot.... +03:21:07 ============================================================================ +03:21:07 Slot Id : <240> +03:21:07 Transaction Type : REQUEST +03:21:07 Received From : +03:21:07 ============================================================================ +03:21:07 FNo. Len. Field Value +03:21:07 ============================================================================ +03:21:07 [ 1] [ 4] [0800] +03:21:07 [ 7] [ 10] [0319082014] +03:21:07 [ 11] [ 6] [153991] +03:21:07 [ 70] [ 3] [301] +03:21:07 ============================================================================ +03:21:07 + + +waiting on router queue for slot.... +03:21:07 Sending to : +03:21:07 ============================================================================ +03:21:07 ============================================================================ +03:21:07 Slot Id : <240> +03:21:07 Transaction Type : RESPONSE +03:21:07 Received From : +03:21:07 ============================================================================ +03:21:07 FNo. Len. Field Value +03:21:07 ============================================================================ +03:21:07 [ 1] [ 4] [0810] +03:21:07 [ 7] [ 10] [0319082014] +03:21:07 [ 11] [ 6] [153991] +03:21:07 [ 39] [ 2] [00] +03:21:07 [ 70] [ 3] [301] +03:21:07 ============================================================================ +03:21:07 Calculate Source COMM Id = 2 +03:21:07 ============================================================================ +03:21:07 + + +waiting on router queue for slot.... +03:21:18 ============================================================================ +03:21:18 Slot Id : <228> +03:21:18 Transaction Type : REQUEST +03:21:18 Received From : +03:21:18 ============================================================================ +03:21:18 FNo. Len. Field Value +03:21:18 ============================================================================ +03:21:18 [ 1] [ 4] [0800] +03:21:18 [ 7] [ 10] [0319082025] +03:21:18 [ 11] [ 6] [153992] +03:21:18 [ 70] [ 3] [301] +03:21:18 ============================================================================ +03:21:18 + + +waiting on router queue for slot.... +03:21:18 Sending to : +03:21:18 ============================================================================ +03:21:18 ============================================================================ +03:21:18 Slot Id : <228> +03:21:18 Transaction Type : RESPONSE +03:21:18 Received From : +03:21:18 ============================================================================ +03:21:18 FNo. Len. Field Value +03:21:18 ============================================================================ +03:21:18 [ 1] [ 4] [0810] +03:21:18 [ 7] [ 10] [0319082025] +03:21:18 [ 11] [ 6] [153992] +03:21:18 [ 39] [ 2] [00] +03:21:18 [ 70] [ 3] [301] +03:21:18 ============================================================================ +03:21:18 Calculate Source COMM Id = 2 +03:21:18 ============================================================================ +03:21:18 + + +waiting on router queue for slot.... +03:21:22 ============================================================================ +03:21:22 Slot Id : <265> +03:21:22 Transaction Type : REQUEST +03:21:22 Received From : +03:21:22 ============================================================================ +03:21:22 FNo. Len. Field Value +03:21:22 ============================================================================ +03:21:22 [ 1] [ 4] [0800] +03:21:22 [ 7] [ 10] [0319201912] +03:21:22 [ 11] [ 6] [086484] +03:21:22 [ 37] [ 12] [57903086484] +03:21:22 [ 70] [ 3] [301] +03:21:22 ============================================================================ +03:21:22 + + +waiting on router queue for slot.... +03:21:22 Sending to : +03:21:22 ============================================================================ +03:21:22 ============================================================================ +03:21:22 Slot Id : <265> +03:21:22 Transaction Type : RESPONSE +03:21:22 Received From : +03:21:22 ============================================================================ +03:21:22 FNo. Len. Field Value +03:21:22 ============================================================================ +03:21:22 [ 1] [ 4] [0810] +03:21:22 [ 7] [ 10] [0319201912] +03:21:22 [ 11] [ 6] [086484] +03:21:22 [ 37] [ 12] [579030864840] +03:21:22 [ 39] [ 2] [00] +03:21:22 [ 70] [ 3] [810] +03:21:22 ============================================================================ +03:21:22 Calculate Source COMM Id = 4 +03:21:22 ============================================================================ +03:21:22 + + +waiting on router queue for slot.... +03:21:25 ============================================================================ +03:21:25 Slot Id : <275> +03:21:25 Transaction Type : REQUEST +03:21:25 Received From : +03:21:25 ============================================================================ +03:21:25 FNo. Len. Field Value +03:21:25 ============================================================================ +03:21:25 [ 1] [ 4] [0800] +03:21:25 [ 7] [ 10] [0320103313] +03:21:25 [ 11] [ 6] [033313] +03:21:25 [ 37] [ 12] [57903033313] +03:21:25 [ 70] [ 3] [301] +03:21:25 ============================================================================ +03:21:25 + + +waiting on router queue for slot.... +03:21:25 Sending to : +03:21:25 ============================================================================ +03:21:25 ============================================================================ +03:21:25 Slot Id : <275> +03:21:25 Transaction Type : RESPONSE +03:21:25 Received From : +03:21:25 ============================================================================ +03:21:25 FNo. Len. Field Value +03:21:25 ============================================================================ +03:21:25 [ 1] [ 4] [0810] +03:21:25 [ 7] [ 10] [0320103313] +03:21:25 [ 11] [ 6] [033313] +03:21:25 [ 37] [ 12] [579030333130] +03:21:25 [ 39] [ 2] [00] +03:21:25 [ 70] [ 3] [810] +03:21:25 ============================================================================ +03:21:25 Calculate Source COMM Id = 6 +03:21:25 ============================================================================ +03:21:25 + + +waiting on router queue for slot.... +03:21:33 ============================================================================ +03:21:33 Slot Id : <247> +03:21:33 Transaction Type : REQUEST +03:21:33 Received From : +03:21:33 ============================================================================ +03:21:33 FNo. Len. Field Value +03:21:33 ============================================================================ +03:21:33 [ 1] [ 4] [0800] +03:21:33 [ 7] [ 10] [0319082040] +03:21:33 [ 11] [ 6] [153993] +03:21:33 [ 70] [ 3] [301] +03:21:33 ============================================================================ +03:21:33 + + +waiting on router queue for slot.... +03:21:33 Sending to : +03:21:33 ============================================================================ +03:21:33 ============================================================================ +03:21:33 Slot Id : <247> +03:21:33 Transaction Type : RESPONSE +03:21:33 Received From : +03:21:33 ============================================================================ +03:21:33 FNo. Len. Field Value +03:21:33 ============================================================================ +03:21:33 [ 1] [ 4] [0810] +03:21:33 [ 7] [ 10] [0319082040] +03:21:33 [ 11] [ 6] [153993] +03:21:33 [ 39] [ 2] [00] +03:21:33 [ 70] [ 3] [301] +03:21:33 ============================================================================ +03:21:33 Calculate Source COMM Id = 2 +03:21:33 ============================================================================ +03:21:33 + + +waiting on router queue for slot.... +03:21:45 ============================================================================ +03:21:45 Slot Id : <218> +03:21:45 Transaction Type : REQUEST +03:21:45 Received From : +03:21:45 ============================================================================ +03:21:45 FNo. Len. Field Value +03:21:45 ============================================================================ +03:21:45 [ 1] [ 4] [0800] +03:21:45 [ 7] [ 10] [0319082050] +03:21:45 [ 11] [ 6] [153994] +03:21:45 [ 70] [ 3] [301] +03:21:45 ============================================================================ +03:21:45 + + +waiting on router queue for slot.... +03:21:45 Sending to : +03:21:45 ============================================================================ +03:21:45 ============================================================================ +03:21:45 Slot Id : <218> +03:21:45 Transaction Type : RESPONSE +03:21:45 Received From : +03:21:45 ============================================================================ +03:21:45 FNo. Len. Field Value +03:21:45 ============================================================================ +03:21:45 [ 1] [ 4] [0810] +03:21:45 [ 7] [ 10] [0319082050] +03:21:45 [ 11] [ 6] [153994] +03:21:45 [ 39] [ 2] [00] +03:21:45 [ 70] [ 3] [301] +03:21:45 ============================================================================ +03:21:45 Calculate Source COMM Id = 2 +03:21:45 ============================================================================ +03:21:45 + + +waiting on router queue for slot.... +03:21:59 ============================================================================ +03:21:59 Slot Id : <274> +03:21:59 Transaction Type : REQUEST +03:21:59 Received From : +03:21:59 ============================================================================ +03:21:59 FNo. Len. Field Value +03:21:59 ============================================================================ +03:21:59 [ 1] [ 4] [0800] +03:21:59 [ 7] [ 10] [0319082106] +03:21:59 [ 11] [ 6] [153995] +03:21:59 [ 70] [ 3] [301] +03:21:59 ============================================================================ +03:21:59 + + +waiting on router queue for slot.... +03:21:59 Sending to : +03:21:59 ============================================================================ +03:21:59 ============================================================================ +03:21:59 Slot Id : <274> +03:21:59 Transaction Type : RESPONSE +03:21:59 Received From : +03:21:59 ============================================================================ +03:21:59 FNo. Len. Field Value +03:21:59 ============================================================================ +03:21:59 [ 1] [ 4] [0810] +03:21:59 [ 7] [ 10] [0319082106] +03:21:59 [ 11] [ 6] [153995] +03:21:59 [ 39] [ 2] [00] +03:21:59 [ 70] [ 3] [301] +03:21:59 ============================================================================ +03:21:59 Calculate Source COMM Id = 2 +03:21:59 ============================================================================ +03:21:59 + + +waiting on router queue for slot.... +03:22:05 ============================================================================ +03:22:05 Slot Id : <264> +03:22:05 Transaction Type : REQUEST +03:22:05 Received From : +03:22:05 ============================================================================ +03:22:05 FNo. Len. Field Value +03:22:05 ============================================================================ +03:22:05 [ 1] [ 4] [0800] +03:22:05 [ 2] [ 5] [02531] +03:22:05 [ 3] [ 6] [579038] +03:22:05 [ 7] [ 10] [0319202205] +03:22:05 [ 11] [ 6] [806607] +03:22:05 [ 15] [ 10] [0319202205] +03:22:05 [ 37] [ 11] [57903806607] +03:22:05 [ 70] [ 3] [001] +03:22:05 ============================================================================ +03:22:05 + + +waiting on router queue for slot.... +03:22:05 ============================================================================ +03:22:05 Slot Id : <264> +03:22:05 Transaction Type : RESPONSE +03:22:05 Received From : +03:22:05 ============================================================================ +03:22:05 FNo. Len. Field Value +03:22:05 ============================================================================ +03:22:05 [ 1] [ 4] [0810] +03:22:05 [ 7] [ 10] [0319202205] +03:22:05 [ 11] [ 6] [806607] +03:22:05 [ 15] [ 4] [0319] +03:22:05 [ 37] [ 12] [57903806607] +03:22:05 [ 39] [ 2] [00] +03:22:05 [ 70] [ 3] [001] +03:22:05 ============================================================================ +03:22:05 Sending to : +03:22:05 ============================================================================ +03:22:05 + + +waiting on router queue for slot.... +03:22:14 ============================================================================ +03:22:14 Slot Id : <231> +03:22:14 Transaction Type : REQUEST +03:22:14 Received From : +03:22:14 ============================================================================ +03:22:14 FNo. Len. Field Value +03:22:14 ============================================================================ +03:22:14 [ 1] [ 4] [0800] +03:22:14 [ 7] [ 10] [0319082121] +03:22:14 [ 11] [ 6] [153996] +03:22:14 [ 70] [ 3] [301] +03:22:14 ============================================================================ +03:22:14 + + +waiting on router queue for slot.... +03:22:14 Sending to : +03:22:14 ============================================================================ +03:22:14 ============================================================================ +03:22:14 Slot Id : <231> +03:22:14 Transaction Type : RESPONSE +03:22:14 Received From : +03:22:14 ============================================================================ +03:22:14 FNo. Len. Field Value +03:22:14 ============================================================================ +03:22:14 [ 1] [ 4] [0810] +03:22:14 [ 7] [ 10] [0319082121] +03:22:14 [ 11] [ 6] [153996] +03:22:14 [ 39] [ 2] [00] +03:22:14 [ 70] [ 3] [301] +03:22:14 ============================================================================ +03:22:14 Calculate Source COMM Id = 2 +03:22:14 ============================================================================ +03:22:14 + + +waiting on router queue for slot.... +03:22:29 ============================================================================ +03:22:29 Slot Id : <279> +03:22:29 Transaction Type : REQUEST +03:22:29 Received From : +03:22:29 ============================================================================ +03:22:29 FNo. Len. Field Value +03:22:29 ============================================================================ +03:22:29 [ 1] [ 4] [0800] +03:22:29 [ 7] [ 10] [0319082136] +03:22:29 [ 11] [ 6] [153997] +03:22:29 [ 70] [ 3] [301] +03:22:29 ============================================================================ +03:22:29 + + +waiting on router queue for slot.... +03:22:29 Sending to : +03:22:29 ============================================================================ +03:22:29 ============================================================================ +03:22:29 Slot Id : <279> +03:22:29 Transaction Type : RESPONSE +03:22:29 Received From : +03:22:29 ============================================================================ +03:22:29 FNo. Len. Field Value +03:22:29 ============================================================================ +03:22:29 [ 1] [ 4] [0810] +03:22:29 [ 7] [ 10] [0319082136] +03:22:29 [ 11] [ 6] [153997] +03:22:29 [ 39] [ 2] [00] +03:22:29 [ 70] [ 3] [301] +03:22:29 ============================================================================ +03:22:29 Calculate Source COMM Id = 2 +03:22:29 ============================================================================ +03:22:29 + + +waiting on router queue for slot.... +03:22:30 ============================================================================ +03:22:30 Slot Id : <254> +03:22:30 Transaction Type : REQUEST +03:22:30 Received From : +03:22:30 ============================================================================ +03:22:30 FNo. Len. Field Value +03:22:30 ============================================================================ +03:22:30 [ 1] [ 4] [0800] +03:22:30 [ 7] [ 10] [0320103418] +03:22:30 [ 11] [ 6] [033418] +03:22:30 [ 37] [ 12] [57903033418] +03:22:30 [ 70] [ 3] [301] +03:22:30 ============================================================================ +03:22:30 + + +waiting on router queue for slot.... +03:22:30 Sending to : +03:22:30 ============================================================================ +03:22:30 ============================================================================ +03:22:30 Slot Id : <254> +03:22:30 Transaction Type : RESPONSE +03:22:30 Received From : +03:22:30 ============================================================================ +03:22:30 FNo. Len. Field Value +03:22:30 ============================================================================ +03:22:30 [ 1] [ 4] [0810] +03:22:30 [ 7] [ 10] [0320103418] +03:22:30 [ 11] [ 6] [033418] +03:22:30 [ 37] [ 12] [579030334180] +03:22:30 [ 39] [ 2] [00] +03:22:30 [ 70] [ 3] [810] +03:22:30 ============================================================================ +03:22:30 Calculate Source COMM Id = 6 +03:22:30 ============================================================================ +03:22:30 + + +waiting on router queue for slot.... +03:22:42 ============================================================================ +03:22:42 Slot Id : <239> +03:22:42 Transaction Type : REQUEST +03:22:42 Received From : +03:22:42 ============================================================================ +03:22:42 FNo. Len. Field Value +03:22:42 ============================================================================ +03:22:42 [ 1] [ 4] [0800] +03:22:42 [ 7] [ 10] [0319082148] +03:22:42 [ 11] [ 6] [153998] +03:22:42 [ 70] [ 3] [301] +03:22:42 ============================================================================ +03:22:42 + + +waiting on router queue for slot.... +03:22:42 Sending to : +03:22:42 ============================================================================ +03:22:42 ============================================================================ +03:22:42 Slot Id : <239> +03:22:42 Transaction Type : RESPONSE +03:22:42 Received From : +03:22:42 ============================================================================ +03:22:42 FNo. Len. Field Value +03:22:42 ============================================================================ +03:22:42 [ 1] [ 4] [0810] +03:22:42 [ 7] [ 10] [0319082148] +03:22:42 [ 11] [ 6] [153998] +03:22:42 [ 39] [ 2] [00] +03:22:42 [ 70] [ 3] [301] +03:22:42 ============================================================================ +03:22:42 Calculate Source COMM Id = 2 +03:22:42 ============================================================================ +03:22:42 + + +waiting on router queue for slot.... +03:22:56 ============================================================================ +03:22:56 Slot Id : <273> +03:22:56 Transaction Type : REQUEST +03:22:56 Received From : +03:22:56 ============================================================================ +03:22:56 FNo. Len. Field Value +03:22:56 ============================================================================ +03:22:56 [ 1] [ 4] [0800] +03:22:56 [ 7] [ 10] [0319082203] +03:22:56 [ 11] [ 6] [153999] +03:22:56 [ 70] [ 3] [301] +03:22:56 ============================================================================ +03:22:56 + + +waiting on router queue for slot.... +03:22:56 Sending to : +03:22:56 ============================================================================ +03:22:56 ============================================================================ +03:22:56 Slot Id : <273> +03:22:56 Transaction Type : RESPONSE +03:22:56 Received From : +03:22:56 ============================================================================ +03:22:56 FNo. Len. Field Value +03:22:56 ============================================================================ +03:22:56 [ 1] [ 4] [0810] +03:22:56 [ 7] [ 10] [0319082203] +03:22:56 [ 11] [ 6] [153999] +03:22:56 [ 39] [ 2] [00] +03:22:56 [ 70] [ 3] [301] +03:22:56 ============================================================================ +03:22:56 Calculate Source COMM Id = 2 +03:22:56 ============================================================================ +03:22:56 + + +waiting on router queue for slot.... +03:23:07 ============================================================================ +03:23:07 Slot Id : <266> +03:23:07 Transaction Type : REQUEST +03:23:07 Received From : +03:23:07 ============================================================================ +03:23:07 FNo. Len. Field Value +03:23:07 ============================================================================ +03:23:07 [ 1] [ 4] [0800] +03:23:07 [ 7] [ 10] [0319082214] +03:23:07 [ 11] [ 6] [154000] +03:23:07 [ 70] [ 3] [301] +03:23:07 ============================================================================ +03:23:07 + + +waiting on router queue for slot.... +03:23:07 Sending to : +03:23:07 ============================================================================ +03:23:07 ============================================================================ +03:23:07 Slot Id : <266> +03:23:07 Transaction Type : RESPONSE +03:23:07 Received From : +03:23:07 ============================================================================ +03:23:07 FNo. Len. Field Value +03:23:07 ============================================================================ +03:23:07 [ 1] [ 4] [0810] +03:23:07 [ 7] [ 10] [0319082214] +03:23:07 [ 11] [ 6] [154000] +03:23:07 [ 39] [ 2] [00] +03:23:07 [ 70] [ 3] [301] +03:23:07 ============================================================================ +03:23:07 Calculate Source COMM Id = 2 +03:23:07 ============================================================================ +03:23:07 + + +waiting on router queue for slot.... +03:23:07 ============================================================================ +03:23:07 Slot Id : <272> +03:23:07 Transaction Type : REQUEST +03:23:07 Received From : +03:23:07 ============================================================================ +03:23:07 FNo. Len. Field Value +03:23:07 ============================================================================ +03:23:07 [ 1] [ 4] [0800] +03:23:07 [ 2] [ 5] [02531] +03:23:07 [ 3] [ 6] [579038] +03:23:07 [ 7] [ 10] [0319202307] +03:23:07 [ 11] [ 6] [806608] +03:23:07 [ 15] [ 10] [0319202307] +03:23:07 [ 37] [ 11] [57903806608] +03:23:07 [ 70] [ 3] [001] +03:23:07 ============================================================================ +03:23:07 + + +waiting on router queue for slot.... +03:23:07 ============================================================================ +03:23:07 Slot Id : <272> +03:23:07 Transaction Type : RESPONSE +03:23:07 Received From : +03:23:07 ============================================================================ +03:23:07 FNo. Len. Field Value +03:23:07 ============================================================================ +03:23:07 [ 1] [ 4] [0810] +03:23:07 [ 7] [ 10] [0319202307] +03:23:07 [ 11] [ 6] [806608] +03:23:07 [ 15] [ 4] [0319] +03:23:07 [ 37] [ 12] [57903806608] +03:23:07 [ 39] [ 2] [00] +03:23:07 [ 70] [ 3] [001] +03:23:07 ============================================================================ +03:23:07 Sending to : +03:23:07 ============================================================================ +03:23:07 + + +waiting on router queue for slot.... +03:23:18 ============================================================================ +03:23:18 Slot Id : <282> +03:23:18 Transaction Type : REQUEST +03:23:18 Received From : +03:23:18 ============================================================================ +03:23:18 FNo. Len. Field Value +03:23:18 ============================================================================ +03:23:18 [ 1] [ 4] [0800] +03:23:18 [ 7] [ 10] [0319082225] +03:23:18 [ 11] [ 6] [154001] +03:23:18 [ 70] [ 3] [301] +03:23:18 ============================================================================ +03:23:18 + + +waiting on router queue for slot.... +03:23:18 Sending to : +03:23:18 ============================================================================ +03:23:18 ============================================================================ +03:23:18 Slot Id : <282> +03:23:18 Transaction Type : RESPONSE +03:23:18 Received From : +03:23:18 ============================================================================ +03:23:18 FNo. Len. Field Value +03:23:18 ============================================================================ +03:23:18 [ 1] [ 4] [0810] +03:23:18 [ 7] [ 10] [0319082225] +03:23:18 [ 11] [ 6] [154001] +03:23:18 [ 39] [ 2] [00] +03:23:18 [ 70] [ 3] [301] +03:23:18 ============================================================================ +03:23:18 Calculate Source COMM Id = 2 +03:23:18 ============================================================================ +03:23:18 + + +waiting on router queue for slot.... +03:23:29 ============================================================================ +03:23:29 Slot Id : <241> +03:23:29 Transaction Type : REQUEST +03:23:29 Received From : +03:23:29 ============================================================================ +03:23:29 FNo. Len. Field Value +03:23:29 ============================================================================ +03:23:29 [ 1] [ 4] [0800] +03:23:29 [ 7] [ 10] [0319082235] +03:23:29 [ 11] [ 6] [154002] +03:23:29 [ 70] [ 3] [301] +03:23:29 ============================================================================ +03:23:29 + + +waiting on router queue for slot.... +03:23:29 Sending to : +03:23:29 ============================================================================ +03:23:29 ============================================================================ +03:23:29 Slot Id : <241> +03:23:29 Transaction Type : RESPONSE +03:23:29 Received From : +03:23:29 ============================================================================ +03:23:29 FNo. Len. Field Value +03:23:29 ============================================================================ +03:23:29 [ 1] [ 4] [0810] +03:23:29 [ 7] [ 10] [0319082235] +03:23:29 [ 11] [ 6] [154002] +03:23:29 [ 39] [ 2] [00] +03:23:29 [ 70] [ 3] [301] +03:23:29 ============================================================================ +03:23:29 Calculate Source COMM Id = 2 +03:23:29 ============================================================================ +03:23:29 + + +waiting on router queue for slot.... +03:23:35 ============================================================================ +03:23:35 Slot Id : <245> +03:23:35 Transaction Type : REQUEST +03:23:35 Received From : +03:23:35 ============================================================================ +03:23:35 FNo. Len. Field Value +03:23:35 ============================================================================ +03:23:35 [ 1] [ 4] [0800] +03:23:35 [ 7] [ 10] [0320103523] +03:23:35 [ 11] [ 6] [033523] +03:23:35 [ 37] [ 12] [57903033523] +03:23:35 [ 70] [ 3] [301] +03:23:35 ============================================================================ +03:23:35 + + +waiting on router queue for slot.... +03:23:35 Sending to : +03:23:35 ============================================================================ +03:23:35 ============================================================================ +03:23:35 Slot Id : <245> +03:23:35 Transaction Type : RESPONSE +03:23:35 Received From : +03:23:35 ============================================================================ +03:23:35 FNo. Len. Field Value +03:23:35 ============================================================================ +03:23:35 [ 1] [ 4] [0810] +03:23:35 [ 7] [ 10] [0320103523] +03:23:35 [ 11] [ 6] [033523] +03:23:35 [ 37] [ 12] [579030335230] +03:23:35 [ 39] [ 2] [00] +03:23:35 [ 70] [ 3] [810] +03:23:35 ============================================================================ +03:23:35 Calculate Source COMM Id = 6 +03:23:35 ============================================================================ +03:23:35 + + +waiting on router queue for slot.... +03:23:40 ============================================================================ +03:23:40 Slot Id : <252> +03:23:40 Transaction Type : REQUEST +03:23:40 Received From : +03:23:40 ============================================================================ +03:23:40 FNo. Len. Field Value +03:23:40 ============================================================================ +03:23:40 [ 1] [ 4] [0800] +03:23:40 [ 7] [ 10] [0319082247] +03:23:40 [ 11] [ 6] [154003] +03:23:40 [ 70] [ 3] [301] +03:23:40 ============================================================================ +03:23:40 + + +waiting on router queue for slot.... +03:23:40 Sending to : +03:23:40 ============================================================================ +03:23:40 ============================================================================ +03:23:40 Slot Id : <252> +03:23:40 Transaction Type : RESPONSE +03:23:40 Received From : +03:23:40 ============================================================================ +03:23:40 FNo. Len. Field Value +03:23:40 ============================================================================ +03:23:40 [ 1] [ 4] [0810] +03:23:40 [ 7] [ 10] [0319082247] +03:23:40 [ 11] [ 6] [154003] +03:23:40 [ 39] [ 2] [00] +03:23:40 [ 70] [ 3] [301] +03:23:40 ============================================================================ +03:23:40 Calculate Source COMM Id = 2 +03:23:40 ============================================================================ +03:23:40 + + +waiting on router queue for slot.... +03:23:51 ============================================================================ +03:23:51 Slot Id : <276> +03:23:51 Transaction Type : REQUEST +03:23:51 Received From : +03:23:51 ============================================================================ +03:23:51 FNo. Len. Field Value +03:23:51 ============================================================================ +03:23:51 [ 1] [ 4] [0800] +03:23:51 [ 7] [ 10] [0319082257] +03:23:51 [ 11] [ 6] [154004] +03:23:51 [ 70] [ 3] [301] +03:23:51 ============================================================================ +03:23:51 + + +waiting on router queue for slot.... +03:23:51 Sending to : +03:23:51 ============================================================================ +03:23:51 ============================================================================ +03:23:51 Slot Id : <276> +03:23:51 Transaction Type : RESPONSE +03:23:51 Received From : +03:23:51 ============================================================================ +03:23:51 FNo. Len. Field Value +03:23:51 ============================================================================ +03:23:51 [ 1] [ 4] [0810] +03:23:51 [ 7] [ 10] [0319082257] +03:23:51 [ 11] [ 6] [154004] +03:23:51 [ 39] [ 2] [00] +03:23:51 [ 70] [ 3] [301] +03:23:51 ============================================================================ +03:23:51 Calculate Source COMM Id = 2 +03:23:51 ============================================================================ +03:23:51 + + +waiting on router queue for slot.... +03:24:06 ============================================================================ +03:24:06 Slot Id : <280> +03:24:06 Transaction Type : REQUEST +03:24:06 Received From : +03:24:06 ============================================================================ +03:24:06 FNo. Len. Field Value +03:24:06 ============================================================================ +03:24:06 [ 1] [ 4] [0800] +03:24:06 [ 7] [ 10] [0319082313] +03:24:06 [ 11] [ 6] [154005] +03:24:06 [ 70] [ 3] [301] +03:24:06 ============================================================================ +03:24:06 + + +waiting on router queue for slot.... +03:24:06 Sending to : +03:24:06 ============================================================================ +03:24:06 ============================================================================ +03:24:06 Slot Id : <280> +03:24:06 Transaction Type : RESPONSE +03:24:06 Received From : +03:24:06 ============================================================================ +03:24:06 FNo. Len. Field Value +03:24:06 ============================================================================ +03:24:06 [ 1] [ 4] [0810] +03:24:06 [ 7] [ 10] [0319082313] +03:24:06 [ 11] [ 6] [154005] +03:24:06 [ 39] [ 2] [00] +03:24:06 [ 70] [ 3] [301] +03:24:06 ============================================================================ +03:24:06 Calculate Source COMM Id = 2 +03:24:06 ============================================================================ +03:24:06 + + +waiting on router queue for slot.... +03:24:09 ============================================================================ +03:24:09 Slot Id : <284> +03:24:09 Transaction Type : REQUEST +03:24:09 Received From : +03:24:09 ============================================================================ +03:24:09 FNo. Len. Field Value +03:24:09 ============================================================================ +03:24:09 [ 1] [ 4] [0800] +03:24:09 [ 2] [ 5] [02531] +03:24:09 [ 3] [ 6] [579038] +03:24:09 [ 7] [ 10] [0319202409] +03:24:09 [ 11] [ 6] [806609] +03:24:09 [ 15] [ 10] [0319202409] +03:24:09 [ 37] [ 11] [57903806609] +03:24:09 [ 70] [ 3] [001] +03:24:09 ============================================================================ +03:24:09 + + +waiting on router queue for slot.... +03:24:09 ============================================================================ +03:24:09 Slot Id : <284> +03:24:09 Transaction Type : RESPONSE +03:24:09 Received From : +03:24:09 ============================================================================ +03:24:09 FNo. Len. Field Value +03:24:09 ============================================================================ +03:24:09 [ 1] [ 4] [0810] +03:24:09 [ 7] [ 10] [0319202409] +03:24:09 [ 11] [ 6] [806609] +03:24:09 [ 15] [ 4] [0319] +03:24:09 [ 37] [ 12] [57903806609] +03:24:09 [ 39] [ 2] [00] +03:24:09 [ 70] [ 3] [001] +03:24:09 ============================================================================ +03:24:09 Sending to : +03:24:09 ============================================================================ +03:24:09 + + +waiting on router queue for slot.... +03:24:16 ============================================================================ +03:24:16 Slot Id : <258> +03:24:16 Transaction Type : REQUEST +03:24:16 Received From : +03:24:16 ============================================================================ +03:24:16 FNo. Len. Field Value +03:24:16 ============================================================================ +03:24:16 [ 1] [ 4] [0800] +03:24:16 [ 7] [ 10] [0319082323] +03:24:16 [ 11] [ 6] [154006] +03:24:16 [ 70] [ 3] [301] +03:24:16 ============================================================================ +03:24:16 + + +waiting on router queue for slot.... +03:24:16 Sending to : +03:24:16 ============================================================================ +03:24:16 ============================================================================ +03:24:16 Slot Id : <258> +03:24:16 Transaction Type : RESPONSE +03:24:16 Received From : +03:24:16 ============================================================================ +03:24:16 FNo. Len. Field Value +03:24:16 ============================================================================ +03:24:16 [ 1] [ 4] [0810] +03:24:16 [ 7] [ 10] [0319082323] +03:24:16 [ 11] [ 6] [154006] +03:24:16 [ 39] [ 2] [00] +03:24:16 [ 70] [ 3] [301] +03:24:16 ============================================================================ +03:24:16 Calculate Source COMM Id = 2 +03:24:16 ============================================================================ +03:24:16 + + +waiting on router queue for slot.... +03:24:26 ============================================================================ +03:24:26 Slot Id : <219> +03:24:26 Transaction Type : REQUEST +03:24:26 Received From : +03:24:26 ============================================================================ +03:24:26 FNo. Len. Field Value +03:24:26 ============================================================================ +03:24:26 [ 1] [ 4] [0800] +03:24:26 [ 7] [ 10] [0319082333] +03:24:26 [ 11] [ 6] [154007] +03:24:26 [ 70] [ 3] [301] +03:24:26 ============================================================================ +03:24:26 + + +waiting on router queue for slot.... +03:24:26 Sending to : +03:24:26 ============================================================================ +03:24:26 ============================================================================ +03:24:26 Slot Id : <219> +03:24:26 Transaction Type : RESPONSE +03:24:26 Received From : +03:24:26 ============================================================================ +03:24:26 FNo. Len. Field Value +03:24:26 ============================================================================ +03:24:26 [ 1] [ 4] [0810] +03:24:26 [ 7] [ 10] [0319082333] +03:24:26 [ 11] [ 6] [154007] +03:24:26 [ 39] [ 2] [00] +03:24:26 [ 70] [ 3] [301] +03:24:26 ============================================================================ +03:24:26 Calculate Source COMM Id = 2 +03:24:26 ============================================================================ +03:24:26 + + +waiting on router queue for slot.... +03:24:37 ============================================================================ +03:24:37 Slot Id : <224> +03:24:37 Transaction Type : REQUEST +03:24:37 Received From : +03:24:37 ============================================================================ +03:24:37 FNo. Len. Field Value +03:24:37 ============================================================================ +03:24:37 [ 1] [ 4] [0800] +03:24:37 [ 7] [ 10] [0319082343] +03:24:37 [ 11] [ 6] [154008] +03:24:37 [ 70] [ 3] [301] +03:24:37 ============================================================================ +03:24:37 + + +waiting on router queue for slot.... +03:24:37 Sending to : +03:24:37 ============================================================================ +03:24:37 ============================================================================ +03:24:37 Slot Id : <224> +03:24:37 Transaction Type : RESPONSE +03:24:37 Received From : +03:24:37 ============================================================================ +03:24:37 FNo. Len. Field Value +03:24:37 ============================================================================ +03:24:37 [ 1] [ 4] [0810] +03:24:37 [ 7] [ 10] [0319082343] +03:24:37 [ 11] [ 6] [154008] +03:24:37 [ 39] [ 2] [00] +03:24:37 [ 70] [ 3] [301] +03:24:37 ============================================================================ +03:24:37 Calculate Source COMM Id = 2 +03:24:37 ============================================================================ +03:24:37 + + +waiting on router queue for slot.... +03:24:40 ============================================================================ +03:24:40 Slot Id : <287> +03:24:40 Transaction Type : REQUEST +03:24:40 Received From : +03:24:40 ============================================================================ +03:24:40 FNo. Len. Field Value +03:24:40 ============================================================================ +03:24:40 [ 1] [ 4] [0800] +03:24:40 [ 7] [ 10] [0320103628] +03:24:40 [ 11] [ 6] [033628] +03:24:40 [ 37] [ 12] [57903033628] +03:24:40 [ 70] [ 3] [301] +03:24:40 ============================================================================ +03:24:40 + + +waiting on router queue for slot.... +03:24:40 Sending to : +03:24:40 ============================================================================ +03:24:40 ============================================================================ +03:24:40 Slot Id : <287> +03:24:40 Transaction Type : RESPONSE +03:24:40 Received From : +03:24:40 ============================================================================ +03:24:40 FNo. Len. Field Value +03:24:40 ============================================================================ +03:24:40 [ 1] [ 4] [0810] +03:24:40 [ 7] [ 10] [0320103628] +03:24:40 [ 11] [ 6] [033628] +03:24:40 [ 37] [ 12] [579030336280] +03:24:40 [ 39] [ 2] [00] +03:24:40 [ 70] [ 3] [810] +03:24:40 ============================================================================ +03:24:40 Calculate Source COMM Id = 6 +03:24:40 ============================================================================ +03:24:40 + + +waiting on router queue for slot.... +03:24:49 ============================================================================ +03:24:49 Slot Id : <290> +03:24:49 Transaction Type : REQUEST +03:24:49 Received From : +03:24:49 ============================================================================ +03:24:49 FNo. Len. Field Value +03:24:49 ============================================================================ +03:24:49 [ 1] [ 4] [0800] +03:24:49 [ 7] [ 10] [0319082356] +03:24:49 [ 11] [ 6] [154009] +03:24:49 [ 70] [ 3] [301] +03:24:49 ============================================================================ +03:24:49 + + +waiting on router queue for slot.... +03:24:49 Sending to : +03:24:49 ============================================================================ +03:24:49 ============================================================================ +03:24:49 Slot Id : <290> +03:24:49 Transaction Type : RESPONSE +03:24:49 Received From : +03:24:49 ============================================================================ +03:24:49 FNo. Len. Field Value +03:24:49 ============================================================================ +03:24:49 [ 1] [ 4] [0810] +03:24:49 [ 7] [ 10] [0319082356] +03:24:49 [ 11] [ 6] [154009] +03:24:49 [ 39] [ 2] [00] +03:24:49 [ 70] [ 3] [301] +03:24:49 ============================================================================ +03:24:49 Calculate Source COMM Id = 2 +03:24:49 ============================================================================ +03:24:49 + + +waiting on router queue for slot.... +03:24:57 ============================================================================ +03:24:57 Slot Id : <288> +03:24:57 Transaction Type : REQUEST +03:24:57 Received From : +03:24:57 ============================================================================ +03:24:57 FNo. Len. Field Value +03:24:57 ============================================================================ +03:24:57 [ 1] [ 4] [0800] +03:24:57 [ 7] [ 10] [0319203242] +03:24:57 [ 11] [ 6] [075986] +03:24:57 [ 37] [ 12] [57903075986] +03:24:57 [ 70] [ 3] [301] +03:24:57 ============================================================================ +03:24:57 + + +waiting on router queue for slot.... +03:24:57 Sending to : +03:24:57 ============================================================================ +03:24:57 ============================================================================ +03:24:57 Slot Id : <288> +03:24:57 Transaction Type : RESPONSE +03:24:57 Received From : +03:24:57 ============================================================================ +03:24:57 FNo. Len. Field Value +03:24:57 ============================================================================ +03:24:57 [ 1] [ 4] [0810] +03:24:57 [ 7] [ 10] [0319203242] +03:24:57 [ 11] [ 6] [075986] +03:24:57 [ 37] [ 12] [579030759860] +03:24:57 [ 39] [ 2] [00] +03:24:57 [ 70] [ 3] [810] +03:24:57 ============================================================================ +03:24:57 Calculate Source COMM Id = 1 +03:24:57 ============================================================================ +03:24:57 + + +waiting on router queue for slot.... +03:24:59 ============================================================================ +03:24:59 Slot Id : <271> +03:24:59 Transaction Type : REQUEST +03:24:59 Received From : +03:24:59 ============================================================================ +03:24:59 FNo. Len. Field Value +03:24:59 ============================================================================ +03:24:59 [ 1] [ 4] [0800] +03:24:59 [ 7] [ 10] [0319082406] +03:24:59 [ 11] [ 6] [154010] +03:24:59 [ 70] [ 3] [301] +03:24:59 ============================================================================ +03:24:59 + + +waiting on router queue for slot.... +03:24:59 Sending to : +03:24:59 ============================================================================ +03:24:59 ============================================================================ +03:24:59 Slot Id : <271> +03:24:59 Transaction Type : RESPONSE +03:24:59 Received From : +03:24:59 ============================================================================ +03:24:59 FNo. Len. Field Value +03:24:59 ============================================================================ +03:24:59 [ 1] [ 4] [0810] +03:24:59 [ 7] [ 10] [0319082406] +03:24:59 [ 11] [ 6] [154010] +03:24:59 [ 39] [ 2] [00] +03:24:59 [ 70] [ 3] [301] +03:24:59 ============================================================================ +03:24:59 Calculate Source COMM Id = 2 +03:24:59 ============================================================================ +03:24:59 + + +waiting on router queue for slot.... +03:25:10 ============================================================================ +03:25:10 Slot Id : <277> +03:25:10 Transaction Type : REQUEST +03:25:10 Received From : +03:25:10 ============================================================================ +03:25:10 FNo. Len. Field Value +03:25:10 ============================================================================ +03:25:10 [ 1] [ 4] [0800] +03:25:10 [ 7] [ 10] [0319082417] +03:25:10 [ 11] [ 6] [154011] +03:25:10 [ 70] [ 3] [301] +03:25:10 ============================================================================ +03:25:10 + + +waiting on router queue for slot.... +03:25:10 Sending to : +03:25:10 ============================================================================ +03:25:10 ============================================================================ +03:25:10 Slot Id : <277> +03:25:10 Transaction Type : RESPONSE +03:25:10 Received From : +03:25:10 ============================================================================ +03:25:10 FNo. Len. Field Value +03:25:10 ============================================================================ +03:25:10 [ 1] [ 4] [0810] +03:25:10 [ 7] [ 10] [0319082417] +03:25:10 [ 11] [ 6] [154011] +03:25:10 [ 39] [ 2] [00] +03:25:10 [ 70] [ 3] [301] +03:25:10 ============================================================================ +03:25:10 Calculate Source COMM Id = 2 +03:25:10 ============================================================================ +03:25:10 + + +waiting on router queue for slot.... +03:25:11 ============================================================================ +03:25:11 Slot Id : <267> +03:25:11 Transaction Type : REQUEST +03:25:11 Received From : +03:25:11 ============================================================================ +03:25:11 FNo. Len. Field Value +03:25:11 ============================================================================ +03:25:11 [ 1] [ 4] [0800] +03:25:11 [ 2] [ 5] [02531] +03:25:11 [ 3] [ 6] [579038] +03:25:11 [ 7] [ 10] [0319202511] +03:25:11 [ 11] [ 6] [806610] +03:25:11 [ 15] [ 10] [0319202511] +03:25:11 [ 37] [ 11] [57903806610] +03:25:11 [ 70] [ 3] [001] +03:25:11 ============================================================================ +03:25:11 + + +waiting on router queue for slot.... +03:25:11 ============================================================================ +03:25:11 Slot Id : <267> +03:25:11 Transaction Type : RESPONSE +03:25:11 Received From : +03:25:11 ============================================================================ +03:25:11 FNo. Len. Field Value +03:25:11 ============================================================================ +03:25:11 [ 1] [ 4] [0810] +03:25:11 [ 7] [ 10] [0319202511] +03:25:11 [ 11] [ 6] [806610] +03:25:11 [ 15] [ 4] [0319] +03:25:11 [ 37] [ 12] [57903806610] +03:25:11 [ 39] [ 2] [00] +03:25:11 [ 70] [ 3] [001] +03:25:11 ============================================================================ +03:25:11 Sending to : +03:25:11 ============================================================================ +03:25:11 + + +waiting on router queue for slot.... +03:25:25 ============================================================================ +03:25:25 Slot Id : <217> +03:25:25 Transaction Type : REQUEST +03:25:25 Received From : +03:25:25 ============================================================================ +03:25:25 FNo. Len. Field Value +03:25:25 ============================================================================ +03:25:25 [ 1] [ 4] [0800] +03:25:25 [ 7] [ 10] [0319082432] +03:25:25 [ 11] [ 6] [154012] +03:25:25 [ 70] [ 3] [301] +03:25:25 ============================================================================ +03:25:25 + + +waiting on router queue for slot.... +03:25:25 Sending to : +03:25:25 ============================================================================ +03:25:25 ============================================================================ +03:25:25 Slot Id : <217> +03:25:25 Transaction Type : RESPONSE +03:25:25 Received From : +03:25:25 ============================================================================ +03:25:25 FNo. Len. Field Value +03:25:25 ============================================================================ +03:25:25 [ 1] [ 4] [0810] +03:25:25 [ 7] [ 10] [0319082432] +03:25:25 [ 11] [ 6] [154012] +03:25:25 [ 39] [ 2] [00] +03:25:25 [ 70] [ 3] [301] +03:25:25 ============================================================================ +03:25:25 Calculate Source COMM Id = 2 +03:25:25 ============================================================================ +03:25:25 + + +waiting on router queue for slot.... +03:25:41 ============================================================================ +03:25:41 Slot Id : <236> +03:25:41 Transaction Type : REQUEST +03:25:41 Received From : +03:25:41 ============================================================================ +03:25:41 FNo. Len. Field Value +03:25:41 ============================================================================ +03:25:41 [ 1] [ 4] [0800] +03:25:41 [ 7] [ 10] [0319082447] +03:25:41 [ 11] [ 6] [154013] +03:25:41 [ 70] [ 3] [301] +03:25:41 ============================================================================ +03:25:41 + + +waiting on router queue for slot.... +03:25:41 Sending to : +03:25:41 ============================================================================ +03:25:41 ============================================================================ +03:25:41 Slot Id : <236> +03:25:41 Transaction Type : RESPONSE +03:25:41 Received From : +03:25:41 ============================================================================ +03:25:41 FNo. Len. Field Value +03:25:41 ============================================================================ +03:25:41 [ 1] [ 4] [0810] +03:25:41 [ 7] [ 10] [0319082447] +03:25:41 [ 11] [ 6] [154013] +03:25:41 [ 39] [ 2] [00] +03:25:41 [ 70] [ 3] [301] +03:25:41 ============================================================================ +03:25:41 Calculate Source COMM Id = 2 +03:25:41 ============================================================================ +03:25:41 + + +waiting on router queue for slot.... +03:25:45 ============================================================================ +03:25:45 Slot Id : <278> +03:25:45 Transaction Type : REQUEST +03:25:45 Received From : +03:25:45 ============================================================================ +03:25:45 FNo. Len. Field Value +03:25:45 ============================================================================ +03:25:45 [ 1] [ 4] [0800] +03:25:45 [ 7] [ 10] [0320103733] +03:25:45 [ 11] [ 6] [033733] +03:25:45 [ 37] [ 12] [57903033733] +03:25:45 [ 70] [ 3] [301] +03:25:45 ============================================================================ +03:25:45 + + +waiting on router queue for slot.... +03:25:45 Sending to : +03:25:45 ============================================================================ +03:25:45 ============================================================================ +03:25:45 Slot Id : <278> +03:25:45 Transaction Type : RESPONSE +03:25:45 Received From : +03:25:45 ============================================================================ +03:25:45 FNo. Len. Field Value +03:25:45 ============================================================================ +03:25:45 [ 1] [ 4] [0810] +03:25:45 [ 7] [ 10] [0320103733] +03:25:45 [ 11] [ 6] [033733] +03:25:45 [ 37] [ 12] [579030337330] +03:25:45 [ 39] [ 2] [00] +03:25:45 [ 70] [ 3] [810] +03:25:45 ============================================================================ +03:25:45 Calculate Source COMM Id = 6 +03:25:45 ============================================================================ +03:25:45 + + +waiting on router queue for slot.... +03:25:56 ============================================================================ +03:25:56 Slot Id : <293> +03:25:56 Transaction Type : REQUEST +03:25:56 Received From : +03:25:56 ============================================================================ +03:25:56 FNo. Len. Field Value +03:25:56 ============================================================================ +03:25:56 [ 1] [ 4] [0800] +03:25:56 [ 7] [ 10] [0319082503] +03:25:56 [ 11] [ 6] [154014] +03:25:56 [ 70] [ 3] [301] +03:25:56 ============================================================================ +03:25:56 + + +waiting on router queue for slot.... +03:25:56 Sending to : +03:25:56 ============================================================================ +03:25:56 ============================================================================ +03:25:56 Slot Id : <293> +03:25:56 Transaction Type : RESPONSE +03:25:56 Received From : +03:25:56 ============================================================================ +03:25:56 FNo. Len. Field Value +03:25:56 ============================================================================ +03:25:56 [ 1] [ 4] [0810] +03:25:56 [ 7] [ 10] [0319082503] +03:25:56 [ 11] [ 6] [154014] +03:25:56 [ 39] [ 2] [00] +03:25:56 [ 70] [ 3] [301] +03:25:56 ============================================================================ +03:25:56 Calculate Source COMM Id = 2 +03:25:56 ============================================================================ +03:25:56 + + +waiting on router queue for slot.... +03:26:11 ============================================================================ +03:26:11 Slot Id : <294> +03:26:11 Transaction Type : REQUEST +03:26:11 Received From : +03:26:11 ============================================================================ +03:26:11 FNo. Len. Field Value +03:26:11 ============================================================================ +03:26:11 [ 1] [ 4] [0800] +03:26:11 [ 7] [ 10] [0319082518] +03:26:11 [ 11] [ 6] [154015] +03:26:11 [ 70] [ 3] [301] +03:26:11 ============================================================================ +03:26:11 + + +waiting on router queue for slot.... +03:26:11 Sending to : +03:26:11 ============================================================================ +03:26:11 ============================================================================ +03:26:11 Slot Id : <294> +03:26:11 Transaction Type : RESPONSE +03:26:11 Received From : +03:26:11 ============================================================================ +03:26:11 FNo. Len. Field Value +03:26:11 ============================================================================ +03:26:11 [ 1] [ 4] [0810] +03:26:11 [ 7] [ 10] [0319082518] +03:26:11 [ 11] [ 6] [154015] +03:26:11 [ 39] [ 2] [00] +03:26:11 [ 70] [ 3] [301] +03:26:11 ============================================================================ +03:26:11 Calculate Source COMM Id = 2 +03:26:11 ============================================================================ +03:26:11 + + +waiting on router queue for slot.... +03:26:13 ============================================================================ +03:26:13 Slot Id : <298> +03:26:13 Transaction Type : REQUEST +03:26:13 Received From : +03:26:13 ============================================================================ +03:26:13 FNo. Len. Field Value +03:26:13 ============================================================================ +03:26:13 [ 1] [ 4] [0800] +03:26:13 [ 2] [ 5] [02531] +03:26:13 [ 3] [ 6] [579038] +03:26:13 [ 7] [ 10] [0319202613] +03:26:13 [ 11] [ 6] [806611] +03:26:13 [ 15] [ 10] [0319202613] +03:26:13 [ 37] [ 11] [57903806611] +03:26:13 [ 70] [ 3] [001] +03:26:13 ============================================================================ +03:26:13 + + +waiting on router queue for slot.... +03:26:13 ============================================================================ +03:26:13 Slot Id : <298> +03:26:13 Transaction Type : RESPONSE +03:26:13 Received From : +03:26:13 ============================================================================ +03:26:13 FNo. Len. Field Value +03:26:13 ============================================================================ +03:26:13 [ 1] [ 4] [0810] +03:26:13 [ 7] [ 10] [0319202613] +03:26:13 [ 11] [ 6] [806611] +03:26:13 [ 15] [ 4] [0319] +03:26:13 [ 37] [ 12] [57903806611] +03:26:13 [ 39] [ 2] [00] +03:26:13 [ 70] [ 3] [001] +03:26:13 ============================================================================ +03:26:13 Sending to : +03:26:13 ============================================================================ +03:26:13 + + +waiting on router queue for slot.... +03:26:22 ============================================================================ +03:26:22 Slot Id : <257> +03:26:22 Transaction Type : REQUEST +03:26:22 Received From : +03:26:22 ============================================================================ +03:26:22 FNo. Len. Field Value +03:26:22 ============================================================================ +03:26:22 [ 1] [ 4] [0800] +03:26:22 [ 7] [ 10] [0319202412] +03:26:22 [ 11] [ 6] [003415] +03:26:22 [ 37] [ 12] [57903003415] +03:26:22 [ 70] [ 3] [301] +03:26:22 ============================================================================ +03:26:22 + + +waiting on router queue for slot.... +03:26:22 Sending to : +03:26:22 ============================================================================ +03:26:22 ============================================================================ +03:26:22 Slot Id : <257> +03:26:22 Transaction Type : RESPONSE +03:26:22 Received From : +03:26:22 ============================================================================ +03:26:22 FNo. Len. Field Value +03:26:22 ============================================================================ +03:26:22 [ 1] [ 4] [0810] +03:26:22 [ 7] [ 10] [0319202412] +03:26:22 [ 11] [ 6] [003415] +03:26:22 [ 37] [ 12] [579030034150] +03:26:22 [ 39] [ 2] [00] +03:26:22 [ 70] [ 3] [810] +03:26:22 ============================================================================ +03:26:22 Calculate Source COMM Id = 4 +03:26:22 ============================================================================ +03:26:22 + + +waiting on router queue for slot.... +03:26:22 ============================================================================ +03:26:22 Slot Id : <303> +03:26:22 Transaction Type : REQUEST +03:26:22 Received From : +03:26:22 ============================================================================ +03:26:22 FNo. Len. Field Value +03:26:22 ============================================================================ +03:26:22 [ 1] [ 4] [0800] +03:26:22 [ 7] [ 10] [0319082529] +03:26:22 [ 11] [ 6] [154016] +03:26:22 [ 70] [ 3] [301] +03:26:22 ============================================================================ +03:26:22 + + +waiting on router queue for slot.... +03:26:22 Sending to : +03:26:22 ============================================================================ +03:26:22 ============================================================================ +03:26:22 Slot Id : <303> +03:26:22 Transaction Type : RESPONSE +03:26:22 Received From : +03:26:22 ============================================================================ +03:26:22 FNo. Len. Field Value +03:26:22 ============================================================================ +03:26:22 [ 1] [ 4] [0810] +03:26:22 [ 7] [ 10] [0319082529] +03:26:22 [ 11] [ 6] [154016] +03:26:22 [ 39] [ 2] [00] +03:26:22 [ 70] [ 3] [301] +03:26:22 ============================================================================ +03:26:22 Calculate Source COMM Id = 2 +03:26:22 ============================================================================ +03:26:22 + + +waiting on router queue for slot.... +03:26:25 ============================================================================ +03:26:25 Slot Id : <299> +03:26:25 Transaction Type : REQUEST +03:26:25 Received From : +03:26:25 ============================================================================ +03:26:25 FNo. Len. Field Value +03:26:25 ============================================================================ +03:26:25 [ 1] [ 4] [0800] +03:26:25 [ 7] [ 10] [0319202620] +03:26:25 [ 11] [ 6] [063192] +03:26:25 [ 37] [ 12] [507903063192] +03:26:25 [ 70] [ 3] [001] +03:26:25 ============================================================================ +03:26:25 + + +waiting on router queue for slot.... +03:26:25 Sending to : +03:26:25 ============================================================================ +03:26:25 ============================================================================ +03:26:25 Slot Id : <299> +03:26:25 Transaction Type : RESPONSE +03:26:25 Received From : +03:26:25 ============================================================================ +03:26:25 FNo. Len. Field Value +03:26:25 ============================================================================ +03:26:25 [ 1] [ 4] [0810] +03:26:25 [ 7] [ 10] [0319202620] +03:26:25 [ 11] [ 6] [063192] +03:26:25 [ 37] [ 12] [507903063192] +03:26:25 [ 39] [ 2] [00] +03:26:25 [ 70] [ 3] [001] +03:26:25 ============================================================================ +03:26:25 Calculate Source COMM Id = 0 +03:26:25 ============================================================================ +03:26:25 + + +waiting on router queue for slot.... +03:26:33 ============================================================================ +03:26:33 Slot Id : <302> +03:26:33 Transaction Type : REQUEST +03:26:33 Received From : +03:26:33 ============================================================================ +03:26:33 FNo. Len. Field Value +03:26:33 ============================================================================ +03:26:33 [ 1] [ 4] [0800] +03:26:33 [ 7] [ 10] [0319082540] +03:26:33 [ 11] [ 6] [154017] +03:26:33 [ 70] [ 3] [301] +03:26:33 ============================================================================ +03:26:33 + + +waiting on router queue for slot.... +03:26:33 Sending to : +03:26:33 ============================================================================ +03:26:33 ============================================================================ +03:26:33 Slot Id : <302> +03:26:33 Transaction Type : RESPONSE +03:26:33 Received From : +03:26:33 ============================================================================ +03:26:33 FNo. Len. Field Value +03:26:33 ============================================================================ +03:26:33 [ 1] [ 4] [0810] +03:26:33 [ 7] [ 10] [0319082540] +03:26:33 [ 11] [ 6] [154017] +03:26:33 [ 39] [ 2] [00] +03:26:33 [ 70] [ 3] [301] +03:26:33 ============================================================================ +03:26:33 Calculate Source COMM Id = 2 +03:26:33 ============================================================================ +03:26:33 + + +waiting on router queue for slot.... +03:26:50 ============================================================================ +03:26:50 Slot Id : <292> +03:26:50 Transaction Type : REQUEST +03:26:50 Received From : +03:26:50 ============================================================================ +03:26:50 FNo. Len. Field Value +03:26:50 ============================================================================ +03:26:50 [ 1] [ 4] [0800] +03:26:50 [ 7] [ 10] [0319082556] +03:26:50 [ 11] [ 6] [154018] +03:26:50 [ 70] [ 3] [301] +03:26:50 ============================================================================ +03:26:50 + + +waiting on router queue for slot.... +03:26:50 Sending to : +03:26:50 ============================================================================ +03:26:50 ============================================================================ +03:26:50 Slot Id : <292> +03:26:50 Transaction Type : RESPONSE +03:26:50 Received From : +03:26:50 ============================================================================ +03:26:50 FNo. Len. Field Value +03:26:50 ============================================================================ +03:26:50 [ 1] [ 4] [0810] +03:26:50 [ 7] [ 10] [0319082556] +03:26:50 [ 11] [ 6] [154018] +03:26:50 [ 39] [ 2] [00] +03:26:50 [ 70] [ 3] [301] +03:26:50 ============================================================================ +03:26:50 Calculate Source COMM Id = 2 +03:26:50 ============================================================================ +03:26:50 + + +waiting on router queue for slot.... +03:26:50 ============================================================================ +03:26:50 Slot Id : <300> +03:26:50 Transaction Type : REQUEST +03:26:50 Received From : +03:26:50 ============================================================================ +03:26:50 FNo. Len. Field Value +03:26:50 ============================================================================ +03:26:50 [ 1] [ 4] [0800] +03:26:50 [ 7] [ 10] [0320103838] +03:26:50 [ 11] [ 6] [033838] +03:26:50 [ 37] [ 12] [57903033838] +03:26:50 [ 70] [ 3] [301] +03:26:50 ============================================================================ +03:26:50 + + +waiting on router queue for slot.... +03:26:50 Sending to : +03:26:50 ============================================================================ +03:26:50 ============================================================================ +03:26:50 Slot Id : <300> +03:26:50 Transaction Type : RESPONSE +03:26:50 Received From : +03:26:50 ============================================================================ +03:26:50 FNo. Len. Field Value +03:26:50 ============================================================================ +03:26:50 [ 1] [ 4] [0810] +03:26:50 [ 7] [ 10] [0320103838] +03:26:50 [ 11] [ 6] [033838] +03:26:50 [ 37] [ 12] [579030338380] +03:26:50 [ 39] [ 2] [00] +03:26:50 [ 70] [ 3] [810] +03:26:50 ============================================================================ +03:26:50 Calculate Source COMM Id = 6 +03:26:50 ============================================================================ +03:26:50 + + +waiting on router queue for slot.... +03:27:04 ============================================================================ +03:27:04 Slot Id : <281> +03:27:04 Transaction Type : REQUEST +03:27:04 Received From : +03:27:04 ============================================================================ +03:27:04 FNo. Len. Field Value +03:27:04 ============================================================================ +03:27:04 [ 1] [ 4] [0800] +03:27:04 [ 7] [ 10] [0319082611] +03:27:04 [ 11] [ 6] [154019] +03:27:04 [ 70] [ 3] [301] +03:27:04 ============================================================================ +03:27:04 + + +waiting on router queue for slot.... +03:27:04 Sending to : +03:27:04 ============================================================================ +03:27:04 ============================================================================ +03:27:04 Slot Id : <281> +03:27:04 Transaction Type : RESPONSE +03:27:04 Received From : +03:27:04 ============================================================================ +03:27:04 FNo. Len. Field Value +03:27:04 ============================================================================ +03:27:04 [ 1] [ 4] [0810] +03:27:04 [ 7] [ 10] [0319082611] +03:27:04 [ 11] [ 6] [154019] +03:27:04 [ 39] [ 2] [00] +03:27:04 [ 70] [ 3] [301] +03:27:04 ============================================================================ +03:27:04 Calculate Source COMM Id = 2 +03:27:04 ============================================================================ +03:27:04 + + +waiting on router queue for slot.... +03:27:15 ============================================================================ +03:27:15 Slot Id : <295> +03:27:15 Transaction Type : REQUEST +03:27:15 Received From : +03:27:15 ============================================================================ +03:27:15 FNo. Len. Field Value +03:27:15 ============================================================================ +03:27:15 [ 1] [ 4] [0800] +03:27:15 [ 7] [ 10] [0319082622] +03:27:15 [ 11] [ 6] [154020] +03:27:15 [ 70] [ 3] [301] +03:27:15 ============================================================================ +03:27:15 + + +waiting on router queue for slot.... +03:27:15 Sending to : +03:27:15 ============================================================================ +03:27:15 ============================================================================ +03:27:15 Slot Id : <295> +03:27:15 Transaction Type : RESPONSE +03:27:15 Received From : +03:27:15 ============================================================================ +03:27:15 FNo. Len. Field Value +03:27:15 ============================================================================ +03:27:15 [ 1] [ 4] [0810] +03:27:15 [ 7] [ 10] [0319082622] +03:27:15 [ 11] [ 6] [154020] +03:27:15 [ 39] [ 2] [00] +03:27:15 [ 70] [ 3] [301] +03:27:15 ============================================================================ +03:27:15 Calculate Source COMM Id = 2 +03:27:15 ============================================================================ +03:27:15 + + +waiting on router queue for slot.... +03:27:15 ============================================================================ +03:27:15 Slot Id : <308> +03:27:15 Transaction Type : REQUEST +03:27:15 Received From : +03:27:15 ============================================================================ +03:27:15 FNo. Len. Field Value +03:27:15 ============================================================================ +03:27:15 [ 1] [ 4] [0800] +03:27:15 [ 2] [ 5] [02531] +03:27:15 [ 3] [ 6] [579038] +03:27:15 [ 7] [ 10] [0319202715] +03:27:15 [ 11] [ 6] [806612] +03:27:15 [ 15] [ 10] [0319202715] +03:27:15 [ 37] [ 11] [57903806612] +03:27:15 [ 70] [ 3] [001] +03:27:15 ============================================================================ +03:27:15 + + +waiting on router queue for slot.... +03:27:15 ============================================================================ +03:27:15 Slot Id : <308> +03:27:15 Transaction Type : RESPONSE +03:27:15 Received From : +03:27:15 ============================================================================ +03:27:15 FNo. Len. Field Value +03:27:15 ============================================================================ +03:27:15 [ 1] [ 4] [0810] +03:27:15 [ 7] [ 10] [0319202715] +03:27:15 [ 11] [ 6] [806612] +03:27:15 [ 15] [ 4] [0319] +03:27:15 [ 37] [ 12] [57903806612] +03:27:15 [ 39] [ 2] [00] +03:27:15 [ 70] [ 3] [001] +03:27:15 ============================================================================ +03:27:15 Sending to : +03:27:15 ============================================================================ +03:27:15 + + +waiting on router queue for slot.... +03:27:31 ============================================================================ +03:27:31 Slot Id : <262> +03:27:31 Transaction Type : REQUEST +03:27:31 Received From : +03:27:31 ============================================================================ +03:27:31 FNo. Len. Field Value +03:27:31 ============================================================================ +03:27:31 [ 1] [ 4] [0800] +03:27:31 [ 7] [ 10] [0319082638] +03:27:31 [ 11] [ 6] [154021] +03:27:31 [ 70] [ 3] [301] +03:27:31 ============================================================================ +03:27:31 + + +waiting on router queue for slot.... +03:27:31 Sending to : +03:27:31 ============================================================================ +03:27:31 ============================================================================ +03:27:31 Slot Id : <262> +03:27:31 Transaction Type : RESPONSE +03:27:31 Received From : +03:27:31 ============================================================================ +03:27:31 FNo. Len. Field Value +03:27:31 ============================================================================ +03:27:31 [ 1] [ 4] [0810] +03:27:31 [ 7] [ 10] [0319082638] +03:27:31 [ 11] [ 6] [154021] +03:27:31 [ 39] [ 2] [00] +03:27:31 [ 70] [ 3] [301] +03:27:31 ============================================================================ +03:27:31 Calculate Source COMM Id = 2 +03:27:31 ============================================================================ +03:27:31 + + +waiting on router queue for slot.... +03:27:43 ============================================================================ +03:27:43 Slot Id : <296> +03:27:43 Transaction Type : REQUEST +03:27:43 Received From : +03:27:43 ============================================================================ +03:27:43 FNo. Len. Field Value +03:27:43 ============================================================================ +03:27:43 [ 1] [ 4] [0800] +03:27:43 [ 7] [ 10] [0319082649] +03:27:43 [ 11] [ 6] [154022] +03:27:43 [ 70] [ 3] [301] +03:27:43 ============================================================================ +03:27:43 + + +waiting on router queue for slot.... +03:27:43 Sending to : +03:27:43 ============================================================================ +03:27:43 ============================================================================ +03:27:43 Slot Id : <296> +03:27:43 Transaction Type : RESPONSE +03:27:43 Received From : +03:27:43 ============================================================================ +03:27:43 FNo. Len. Field Value +03:27:43 ============================================================================ +03:27:43 [ 1] [ 4] [0810] +03:27:43 [ 7] [ 10] [0319082649] +03:27:43 [ 11] [ 6] [154022] +03:27:43 [ 39] [ 2] [00] +03:27:43 [ 70] [ 3] [301] +03:27:43 ============================================================================ +03:27:43 Calculate Source COMM Id = 2 +03:27:43 ============================================================================ +03:27:43 + + +waiting on router queue for slot.... +03:27:55 ============================================================================ +03:27:55 Slot Id : <283> +03:27:55 Transaction Type : REQUEST +03:27:55 Received From : +03:27:55 ============================================================================ +03:27:55 FNo. Len. Field Value +03:27:55 ============================================================================ +03:27:55 [ 1] [ 4] [0800] +03:27:55 [ 7] [ 10] [0320103943] +03:27:55 [ 11] [ 6] [033943] +03:27:55 [ 37] [ 12] [57903033943] +03:27:55 [ 70] [ 3] [301] +03:27:55 ============================================================================ +03:27:55 + + +waiting on router queue for slot.... +03:27:55 Sending to : +03:27:55 ============================================================================ +03:27:55 ============================================================================ +03:27:55 Slot Id : <283> +03:27:55 Transaction Type : RESPONSE +03:27:55 Received From : +03:27:55 ============================================================================ +03:27:55 FNo. Len. Field Value +03:27:55 ============================================================================ +03:27:55 [ 1] [ 4] [0810] +03:27:55 [ 7] [ 10] [0320103943] +03:27:55 [ 11] [ 6] [033943] +03:27:55 [ 37] [ 12] [579030339430] +03:27:55 [ 39] [ 2] [00] +03:27:55 [ 70] [ 3] [810] +03:27:55 ============================================================================ +03:27:55 Calculate Source COMM Id = 6 +03:27:55 ============================================================================ +03:27:55 + + +waiting on router queue for slot.... +03:27:58 ============================================================================ +03:27:58 Slot Id : <311> +03:27:58 Transaction Type : REQUEST +03:27:58 Received From : +03:27:58 ============================================================================ +03:27:58 FNo. Len. Field Value +03:27:58 ============================================================================ +03:27:58 [ 1] [ 4] [0800] +03:27:58 [ 7] [ 10] [0319082705] +03:27:58 [ 11] [ 6] [154023] +03:27:58 [ 70] [ 3] [301] +03:27:58 ============================================================================ +03:27:58 + + +waiting on router queue for slot.... +03:27:58 Sending to : +03:27:58 ============================================================================ +03:27:58 ============================================================================ +03:27:58 Slot Id : <311> +03:27:58 Transaction Type : RESPONSE +03:27:58 Received From : +03:27:58 ============================================================================ +03:27:58 FNo. Len. Field Value +03:27:58 ============================================================================ +03:27:58 [ 1] [ 4] [0810] +03:27:58 [ 7] [ 10] [0319082705] +03:27:58 [ 11] [ 6] [154023] +03:27:58 [ 39] [ 2] [00] +03:27:58 [ 70] [ 3] [301] +03:27:58 ============================================================================ +03:27:58 Calculate Source COMM Id = 2 +03:27:58 ============================================================================ +03:27:58 + + +waiting on router queue for slot.... +03:28:09 ============================================================================ +03:28:09 Slot Id : <312> +03:28:09 Transaction Type : REQUEST +03:28:09 Received From : +03:28:09 ============================================================================ +03:28:09 FNo. Len. Field Value +03:28:09 ============================================================================ +03:28:09 [ 1] [ 4] [0800] +03:28:09 [ 7] [ 10] [0319082716] +03:28:09 [ 11] [ 6] [154024] +03:28:09 [ 70] [ 3] [301] +03:28:09 ============================================================================ +03:28:09 + + +waiting on router queue for slot.... +03:28:09 Sending to : +03:28:09 ============================================================================ +03:28:09 ============================================================================ +03:28:09 Slot Id : <312> +03:28:09 Transaction Type : RESPONSE +03:28:09 Received From : +03:28:09 ============================================================================ +03:28:09 FNo. Len. Field Value +03:28:09 ============================================================================ +03:28:09 [ 1] [ 4] [0810] +03:28:09 [ 7] [ 10] [0319082716] +03:28:09 [ 11] [ 6] [154024] +03:28:09 [ 39] [ 2] [00] +03:28:09 [ 70] [ 3] [301] +03:28:09 ============================================================================ +03:28:09 Calculate Source COMM Id = 2 +03:28:09 ============================================================================ +03:28:09 + + +waiting on router queue for slot.... +03:28:17 ============================================================================ +03:28:17 Slot Id : <316> +03:28:17 Transaction Type : REQUEST +03:28:17 Received From : +03:28:17 ============================================================================ +03:28:17 FNo. Len. Field Value +03:28:17 ============================================================================ +03:28:17 [ 1] [ 4] [0800] +03:28:17 [ 2] [ 5] [02531] +03:28:17 [ 3] [ 6] [579038] +03:28:17 [ 7] [ 10] [0319202817] +03:28:17 [ 11] [ 6] [806613] +03:28:17 [ 15] [ 10] [0319202817] +03:28:17 [ 37] [ 11] [57903806613] +03:28:17 [ 70] [ 3] [001] +03:28:17 ============================================================================ +03:28:17 + + +waiting on router queue for slot.... +03:28:17 ============================================================================ +03:28:17 Slot Id : <316> +03:28:17 Transaction Type : RESPONSE +03:28:17 Received From : +03:28:17 ============================================================================ +03:28:17 FNo. Len. Field Value +03:28:17 ============================================================================ +03:28:17 [ 1] [ 4] [0810] +03:28:17 [ 7] [ 10] [0319202817] +03:28:17 [ 11] [ 6] [806613] +03:28:17 [ 15] [ 4] [0319] +03:28:17 [ 37] [ 12] [57903806613] +03:28:17 [ 39] [ 2] [00] +03:28:17 [ 70] [ 3] [001] +03:28:17 ============================================================================ +03:28:17 Sending to : +03:28:17 ============================================================================ +03:28:17 + + +waiting on router queue for slot.... +03:28:19 ============================================================================ +03:28:19 Slot Id : <306> +03:28:19 Transaction Type : REQUEST +03:28:19 Received From : +03:28:19 ============================================================================ +03:28:19 FNo. Len. Field Value +03:28:19 ============================================================================ +03:28:19 [ 1] [ 4] [0800] +03:28:19 [ 7] [ 10] [0319082726] +03:28:19 [ 11] [ 6] [154025] +03:28:19 [ 70] [ 3] [301] +03:28:19 ============================================================================ +03:28:19 + + +waiting on router queue for slot.... +03:28:19 Sending to : +03:28:19 ============================================================================ +03:28:19 ============================================================================ +03:28:19 Slot Id : <306> +03:28:19 Transaction Type : RESPONSE +03:28:19 Received From : +03:28:19 ============================================================================ +03:28:19 FNo. Len. Field Value +03:28:19 ============================================================================ +03:28:19 [ 1] [ 4] [0810] +03:28:19 [ 7] [ 10] [0319082726] +03:28:19 [ 11] [ 6] [154025] +03:28:19 [ 39] [ 2] [00] +03:28:19 [ 70] [ 3] [301] +03:28:19 ============================================================================ +03:28:19 Calculate Source COMM Id = 2 +03:28:19 ============================================================================ +03:28:19 + + +waiting on router queue for slot.... +03:28:35 ============================================================================ +03:28:35 Slot Id : <286> +03:28:35 Transaction Type : REQUEST +03:28:35 Received From : +03:28:35 ============================================================================ +03:28:35 FNo. Len. Field Value +03:28:35 ============================================================================ +03:28:35 [ 1] [ 4] [0800] +03:28:35 [ 7] [ 10] [0319082742] +03:28:35 [ 11] [ 6] [154026] +03:28:35 [ 70] [ 3] [301] +03:28:35 ============================================================================ +03:28:35 + + +waiting on router queue for slot.... +03:28:35 Sending to : +03:28:35 ============================================================================ +03:28:35 ============================================================================ +03:28:35 Slot Id : <286> +03:28:35 Transaction Type : RESPONSE +03:28:35 Received From : +03:28:35 ============================================================================ +03:28:35 FNo. Len. Field Value +03:28:35 ============================================================================ +03:28:35 [ 1] [ 4] [0810] +03:28:35 [ 7] [ 10] [0319082742] +03:28:35 [ 11] [ 6] [154026] +03:28:35 [ 39] [ 2] [00] +03:28:35 [ 70] [ 3] [301] +03:28:35 ============================================================================ +03:28:35 Calculate Source COMM Id = 2 +03:28:35 ============================================================================ +03:28:35 + + +waiting on router queue for slot.... +03:28:46 ============================================================================ +03:28:46 Slot Id : <307> +03:28:46 Transaction Type : REQUEST +03:28:46 Received From : +03:28:46 ============================================================================ +03:28:46 FNo. Len. Field Value +03:28:46 ============================================================================ +03:28:46 [ 1] [ 4] [0800] +03:28:46 [ 7] [ 10] [0319082753] +03:28:46 [ 11] [ 6] [154027] +03:28:46 [ 70] [ 3] [301] +03:28:46 ============================================================================ +03:28:46 + + +waiting on router queue for slot.... +03:28:46 Sending to : +03:28:46 ============================================================================ +03:28:46 ============================================================================ +03:28:46 Slot Id : <307> +03:28:46 Transaction Type : RESPONSE +03:28:46 Received From : +03:28:46 ============================================================================ +03:28:46 FNo. Len. Field Value +03:28:46 ============================================================================ +03:28:46 [ 1] [ 4] [0810] +03:28:46 [ 7] [ 10] [0319082753] +03:28:46 [ 11] [ 6] [154027] +03:28:46 [ 39] [ 2] [00] +03:28:46 [ 70] [ 3] [301] +03:28:46 ============================================================================ +03:28:46 Calculate Source COMM Id = 2 +03:28:46 ============================================================================ +03:28:46 + + +waiting on router queue for slot.... +03:28:58 ============================================================================ +03:28:58 Slot Id : <317> +03:28:58 Transaction Type : REQUEST +03:28:58 Received From : +03:28:58 ============================================================================ +03:28:58 FNo. Len. Field Value +03:28:58 ============================================================================ +03:28:58 [ 1] [ 4] [0800] +03:28:58 [ 7] [ 10] [0319082805] +03:28:58 [ 11] [ 6] [154028] +03:28:58 [ 70] [ 3] [301] +03:28:58 ============================================================================ +03:28:58 + + +waiting on router queue for slot.... +03:28:58 Sending to : +03:28:58 ============================================================================ +03:28:58 ============================================================================ +03:28:58 Slot Id : <317> +03:28:58 Transaction Type : RESPONSE +03:28:58 Received From : +03:28:58 ============================================================================ +03:28:58 FNo. Len. Field Value +03:28:58 ============================================================================ +03:28:58 [ 1] [ 4] [0810] +03:28:58 [ 7] [ 10] [0319082805] +03:28:58 [ 11] [ 6] [154028] +03:28:58 [ 39] [ 2] [00] +03:28:58 [ 70] [ 3] [301] +03:28:58 ============================================================================ +03:28:58 Calculate Source COMM Id = 2 +03:28:58 ============================================================================ +03:28:58 + + +waiting on router queue for slot.... +03:29:00 ============================================================================ +03:29:00 Slot Id : <310> +03:29:00 Transaction Type : REQUEST +03:29:00 Received From : +03:29:00 ============================================================================ +03:29:00 FNo. Len. Field Value +03:29:00 ============================================================================ +03:29:00 [ 1] [ 4] [0800] +03:29:00 [ 7] [ 10] [0320104048] +03:29:00 [ 11] [ 6] [034048] +03:29:00 [ 37] [ 12] [57903034048] +03:29:00 [ 70] [ 3] [301] +03:29:00 ============================================================================ +03:29:00 + + +waiting on router queue for slot.... +03:29:00 Sending to : +03:29:00 ============================================================================ +03:29:00 ============================================================================ +03:29:00 Slot Id : <310> +03:29:00 Transaction Type : RESPONSE +03:29:00 Received From : +03:29:00 ============================================================================ +03:29:00 FNo. Len. Field Value +03:29:00 ============================================================================ +03:29:00 [ 1] [ 4] [0810] +03:29:00 [ 7] [ 10] [0320104048] +03:29:00 [ 11] [ 6] [034048] +03:29:00 [ 37] [ 12] [579030340480] +03:29:00 [ 39] [ 2] [00] +03:29:00 [ 70] [ 3] [810] +03:29:00 ============================================================================ +03:29:00 Calculate Source COMM Id = 6 +03:29:00 ============================================================================ +03:29:00 + + +waiting on router queue for slot.... +03:29:08 ============================================================================ +03:29:08 Slot Id : <318> +03:29:08 Transaction Type : REQUEST +03:29:08 Received From : +03:29:08 ============================================================================ +03:29:08 FNo. Len. Field Value +03:29:08 ============================================================================ +03:29:08 [ 1] [ 4] [0800] +03:29:08 [ 7] [ 10] [0319082815] +03:29:08 [ 11] [ 6] [154029] +03:29:08 [ 70] [ 3] [301] +03:29:08 ============================================================================ +03:29:08 + + +waiting on router queue for slot.... +03:29:08 Sending to : +03:29:08 ============================================================================ +03:29:08 ============================================================================ +03:29:08 Slot Id : <318> +03:29:08 Transaction Type : RESPONSE +03:29:08 Received From : +03:29:08 ============================================================================ +03:29:08 FNo. Len. Field Value +03:29:08 ============================================================================ +03:29:08 [ 1] [ 4] [0810] +03:29:08 [ 7] [ 10] [0319082815] +03:29:08 [ 11] [ 6] [154029] +03:29:08 [ 39] [ 2] [00] +03:29:08 [ 70] [ 3] [301] +03:29:08 ============================================================================ +03:29:08 Calculate Source COMM Id = 2 +03:29:08 ============================================================================ +03:29:08 + + +waiting on router queue for slot.... +03:29:18 ============================================================================ +03:29:18 Slot Id : <289> +03:29:18 Transaction Type : REQUEST +03:29:18 Received From : +03:29:18 ============================================================================ +03:29:18 FNo. Len. Field Value +03:29:18 ============================================================================ +03:29:18 [ 1] [ 4] [0800] +03:29:18 [ 7] [ 10] [0319082825] +03:29:18 [ 11] [ 6] [154030] +03:29:18 [ 70] [ 3] [301] +03:29:18 ============================================================================ +03:29:18 + + +waiting on router queue for slot.... +03:29:18 Sending to : +03:29:18 ============================================================================ +03:29:18 ============================================================================ +03:29:18 Slot Id : <289> +03:29:18 Transaction Type : RESPONSE +03:29:18 Received From : +03:29:18 ============================================================================ +03:29:18 FNo. Len. Field Value +03:29:18 ============================================================================ +03:29:18 [ 1] [ 4] [0810] +03:29:18 [ 7] [ 10] [0319082825] +03:29:18 [ 11] [ 6] [154030] +03:29:18 [ 39] [ 2] [00] +03:29:18 [ 70] [ 3] [301] +03:29:18 ============================================================================ +03:29:18 Calculate Source COMM Id = 2 +03:29:18 ============================================================================ +03:29:18 + + +waiting on router queue for slot.... +03:29:19 ============================================================================ +03:29:19 Slot Id : <315> +03:29:19 Transaction Type : REQUEST +03:29:19 Received From : +03:29:19 ============================================================================ +03:29:19 FNo. Len. Field Value +03:29:19 ============================================================================ +03:29:19 [ 1] [ 4] [0800] +03:29:19 [ 2] [ 5] [02531] +03:29:19 [ 3] [ 6] [579038] +03:29:19 [ 7] [ 10] [0319202919] +03:29:19 [ 11] [ 6] [806614] +03:29:19 [ 15] [ 10] [0319202919] +03:29:19 [ 37] [ 11] [57903806614] +03:29:19 [ 70] [ 3] [001] +03:29:19 ============================================================================ +03:29:19 + + +waiting on router queue for slot.... +03:29:19 ============================================================================ +03:29:19 Slot Id : <315> +03:29:19 Transaction Type : RESPONSE +03:29:19 Received From : +03:29:19 ============================================================================ +03:29:19 FNo. Len. Field Value +03:29:19 ============================================================================ +03:29:19 [ 1] [ 4] [0810] +03:29:19 [ 7] [ 10] [0319202919] +03:29:19 [ 11] [ 6] [806614] +03:29:19 [ 15] [ 4] [0319] +03:29:19 [ 37] [ 12] [57903806614] +03:29:19 [ 39] [ 2] [00] +03:29:19 [ 70] [ 3] [001] +03:29:19 ============================================================================ +03:29:19 Sending to : +03:29:19 ============================================================================ +03:29:19 + + +waiting on router queue for slot.... +03:29:29 ============================================================================ +03:29:29 Slot Id : <322> +03:29:29 Transaction Type : REQUEST +03:29:29 Received From : +03:29:29 ============================================================================ +03:29:29 FNo. Len. Field Value +03:29:29 ============================================================================ +03:29:29 [ 1] [ 4] [0800] +03:29:29 [ 7] [ 10] [0319082836] +03:29:29 [ 11] [ 6] [154031] +03:29:29 [ 70] [ 3] [301] +03:29:29 ============================================================================ +03:29:29 + + +waiting on router queue for slot.... +03:29:29 Sending to : +03:29:29 ============================================================================ +03:29:29 ============================================================================ +03:29:29 Slot Id : <322> +03:29:29 Transaction Type : RESPONSE +03:29:29 Received From : +03:29:29 ============================================================================ +03:29:29 FNo. Len. Field Value +03:29:29 ============================================================================ +03:29:29 [ 1] [ 4] [0810] +03:29:29 [ 7] [ 10] [0319082836] +03:29:29 [ 11] [ 6] [154031] +03:29:29 [ 39] [ 2] [00] +03:29:29 [ 70] [ 3] [301] +03:29:29 ============================================================================ +03:29:29 Calculate Source COMM Id = 2 +03:29:29 ============================================================================ +03:29:29 + + +waiting on router queue for slot.... +03:29:40 ============================================================================ +03:29:40 Slot Id : <304> +03:29:40 Transaction Type : REQUEST +03:29:40 Received From : +03:29:40 ============================================================================ +03:29:40 FNo. Len. Field Value +03:29:40 ============================================================================ +03:29:40 [ 1] [ 4] [0800] +03:29:40 [ 7] [ 10] [0319082847] +03:29:40 [ 11] [ 6] [154032] +03:29:40 [ 70] [ 3] [301] +03:29:40 ============================================================================ +03:29:40 + + +waiting on router queue for slot.... +03:29:40 Sending to : +03:29:40 ============================================================================ +03:29:40 ============================================================================ +03:29:40 Slot Id : <304> +03:29:40 Transaction Type : RESPONSE +03:29:40 Received From : +03:29:40 ============================================================================ +03:29:40 FNo. Len. Field Value +03:29:40 ============================================================================ +03:29:40 [ 1] [ 4] [0810] +03:29:40 [ 7] [ 10] [0319082847] +03:29:40 [ 11] [ 6] [154032] +03:29:40 [ 39] [ 2] [00] +03:29:40 [ 70] [ 3] [301] +03:29:40 ============================================================================ +03:29:40 Calculate Source COMM Id = 2 +03:29:40 ============================================================================ +03:29:40 + + +waiting on router queue for slot.... +03:29:52 ============================================================================ +03:29:52 Slot Id : <325> +03:29:52 Transaction Type : REQUEST +03:29:52 Received From : +03:29:52 ============================================================================ +03:29:52 FNo. Len. Field Value +03:29:52 ============================================================================ +03:29:52 [ 1] [ 4] [0800] +03:29:52 [ 7] [ 10] [0319082857] +03:29:52 [ 11] [ 6] [154033] +03:29:52 [ 70] [ 3] [301] +03:29:52 ============================================================================ +03:29:52 + + +waiting on router queue for slot.... +03:29:52 Sending to : +03:29:52 ============================================================================ +03:29:52 ============================================================================ +03:29:52 Slot Id : <325> +03:29:52 Transaction Type : RESPONSE +03:29:52 Received From : +03:29:52 ============================================================================ +03:29:52 FNo. Len. Field Value +03:29:52 ============================================================================ +03:29:52 [ 1] [ 4] [0810] +03:29:52 [ 7] [ 10] [0319082857] +03:29:52 [ 11] [ 6] [154033] +03:29:52 [ 39] [ 2] [00] +03:29:52 [ 70] [ 3] [301] +03:29:52 ============================================================================ +03:29:52 Calculate Source COMM Id = 2 +03:29:52 ============================================================================ +03:29:52 + + +waiting on router queue for slot.... +03:29:57 ============================================================================ +03:29:57 Slot Id : <285> +03:29:57 Transaction Type : REQUEST +03:29:57 Received From : +03:29:57 ============================================================================ +03:29:57 FNo. Len. Field Value +03:29:57 ============================================================================ +03:29:57 [ 1] [ 4] [0800] +03:29:57 [ 7] [ 10] [0319203742] +03:29:57 [ 11] [ 6] [025014] +03:29:57 [ 37] [ 12] [57903025014] +03:29:57 [ 70] [ 3] [301] +03:29:57 ============================================================================ +03:29:57 + + +waiting on router queue for slot.... +03:29:57 Sending to : +03:29:57 ============================================================================ +03:29:57 ============================================================================ +03:29:57 Slot Id : <285> +03:29:57 Transaction Type : RESPONSE +03:29:57 Received From : +03:29:57 ============================================================================ +03:29:57 FNo. Len. Field Value +03:29:57 ============================================================================ +03:29:57 [ 1] [ 4] [0810] +03:29:57 [ 7] [ 10] [0319203742] +03:29:57 [ 11] [ 6] [025014] +03:29:57 [ 37] [ 12] [579030250140] +03:29:57 [ 39] [ 2] [00] +03:29:57 [ 70] [ 3] [810] +03:29:57 ============================================================================ +03:29:57 Calculate Source COMM Id = 1 +03:29:57 ============================================================================ +03:29:57 + + +waiting on router queue for slot.... +03:30:05 ============================================================================ +03:30:05 Slot Id : <297> +03:30:05 Transaction Type : REQUEST +03:30:05 Received From : +03:30:05 ============================================================================ +03:30:05 FNo. Len. Field Value +03:30:05 ============================================================================ +03:30:05 [ 1] [ 4] [0800] +03:30:05 [ 7] [ 10] [0320104153] +03:30:05 [ 11] [ 6] [034153] +03:30:05 [ 37] [ 12] [57903034153] +03:30:05 [ 70] [ 3] [301] +03:30:05 ============================================================================ +03:30:05 + + +waiting on router queue for slot.... +03:30:05 Sending to : +03:30:05 ============================================================================ +03:30:05 ============================================================================ +03:30:05 Slot Id : <297> +03:30:05 Transaction Type : RESPONSE +03:30:05 Received From : +03:30:05 ============================================================================ +03:30:05 FNo. Len. Field Value +03:30:05 ============================================================================ +03:30:05 [ 1] [ 4] [0810] +03:30:05 [ 7] [ 10] [0320104153] +03:30:05 [ 11] [ 6] [034153] +03:30:05 [ 37] [ 12] [579030341530] +03:30:05 [ 39] [ 2] [00] +03:30:05 [ 70] [ 3] [810] +03:30:05 ============================================================================ +03:30:05 Calculate Source COMM Id = 6 +03:30:05 ============================================================================ +03:30:05 + + +waiting on router queue for slot.... +03:30:06 ============================================================================ +03:30:06 Slot Id : <291> +03:30:06 Transaction Type : REQUEST +03:30:06 Received From : +03:30:06 ============================================================================ +03:30:06 FNo. Len. Field Value +03:30:06 ============================================================================ +03:30:06 [ 1] [ 4] [0800] +03:30:06 [ 7] [ 10] [0319082913] +03:30:06 [ 11] [ 6] [154034] +03:30:06 [ 70] [ 3] [301] +03:30:06 ============================================================================ +03:30:06 + + +waiting on router queue for slot.... +03:30:06 Sending to : +03:30:06 ============================================================================ +03:30:06 ============================================================================ +03:30:06 Slot Id : <291> +03:30:06 Transaction Type : RESPONSE +03:30:06 Received From : +03:30:06 ============================================================================ +03:30:06 FNo. Len. Field Value +03:30:06 ============================================================================ +03:30:06 [ 1] [ 4] [0810] +03:30:06 [ 7] [ 10] [0319082913] +03:30:06 [ 11] [ 6] [154034] +03:30:06 [ 39] [ 2] [00] +03:30:06 [ 70] [ 3] [301] +03:30:06 ============================================================================ +03:30:06 Calculate Source COMM Id = 2 +03:30:06 ============================================================================ +03:30:06 + + +waiting on router queue for slot.... +03:30:16 ============================================================================ +03:30:16 Slot Id : <326> +03:30:16 Transaction Type : REQUEST +03:30:16 Received From : +03:30:16 ============================================================================ +03:30:16 FNo. Len. Field Value +03:30:16 ============================================================================ +03:30:16 [ 1] [ 4] [0800] +03:30:16 [ 7] [ 10] [0319082923] +03:30:16 [ 11] [ 6] [154035] +03:30:16 [ 70] [ 3] [301] +03:30:16 ============================================================================ +03:30:16 + + +waiting on router queue for slot.... +03:30:16 Sending to : +03:30:16 ============================================================================ +03:30:16 ============================================================================ +03:30:16 Slot Id : <326> +03:30:16 Transaction Type : RESPONSE +03:30:16 Received From : +03:30:16 ============================================================================ +03:30:16 FNo. Len. Field Value +03:30:16 ============================================================================ +03:30:16 [ 1] [ 4] [0810] +03:30:16 [ 7] [ 10] [0319082923] +03:30:16 [ 11] [ 6] [154035] +03:30:16 [ 39] [ 2] [00] +03:30:16 [ 70] [ 3] [301] +03:30:16 ============================================================================ +03:30:16 Calculate Source COMM Id = 2 +03:30:16 ============================================================================ +03:30:16 + + +waiting on router queue for slot.... +03:30:21 ============================================================================ +03:30:21 Slot Id : <305> +03:30:21 Transaction Type : REQUEST +03:30:21 Received From : +03:30:21 ============================================================================ +03:30:21 FNo. Len. Field Value +03:30:21 ============================================================================ +03:30:21 [ 1] [ 4] [0800] +03:30:21 [ 2] [ 5] [02531] +03:30:21 [ 3] [ 6] [579038] +03:30:21 [ 7] [ 10] [0319203021] +03:30:21 [ 11] [ 6] [806615] +03:30:21 [ 15] [ 10] [0319203021] +03:30:21 [ 37] [ 11] [57903806615] +03:30:21 [ 70] [ 3] [001] +03:30:21 ============================================================================ +03:30:21 + + +waiting on router queue for slot.... +03:30:21 ============================================================================ +03:30:21 Slot Id : <305> +03:30:21 Transaction Type : RESPONSE +03:30:21 Received From : +03:30:21 ============================================================================ +03:30:21 FNo. Len. Field Value +03:30:21 ============================================================================ +03:30:21 [ 1] [ 4] [0810] +03:30:21 [ 7] [ 10] [0319203021] +03:30:21 [ 11] [ 6] [806615] +03:30:21 [ 15] [ 4] [0319] +03:30:21 [ 37] [ 12] [57903806615] +03:30:21 [ 39] [ 2] [00] +03:30:21 [ 70] [ 3] [001] +03:30:21 ============================================================================ +03:30:21 Sending to : +03:30:21 ============================================================================ +03:30:21 + + +waiting on router queue for slot.... +03:30:26 ============================================================================ +03:30:26 Slot Id : <301> +03:30:26 Transaction Type : REQUEST +03:30:26 Received From : +03:30:26 ============================================================================ +03:30:26 FNo. Len. Field Value +03:30:26 ============================================================================ +03:30:26 [ 1] [ 4] [0800] +03:30:26 [ 7] [ 10] [0319082933] +03:30:26 [ 11] [ 6] [154036] +03:30:26 [ 70] [ 3] [301] +03:30:26 ============================================================================ +03:30:26 + + +waiting on router queue for slot.... +03:30:26 Sending to : +03:30:26 ============================================================================ +03:30:26 ============================================================================ +03:30:26 Slot Id : <301> +03:30:26 Transaction Type : RESPONSE +03:30:26 Received From : +03:30:26 ============================================================================ +03:30:26 FNo. Len. Field Value +03:30:26 ============================================================================ +03:30:26 [ 1] [ 4] [0810] +03:30:26 [ 7] [ 10] [0319082933] +03:30:26 [ 11] [ 6] [154036] +03:30:26 [ 39] [ 2] [00] +03:30:26 [ 70] [ 3] [301] +03:30:26 ============================================================================ +03:30:26 Calculate Source COMM Id = 2 +03:30:26 ============================================================================ +03:30:26 + + +waiting on router queue for slot.... +03:30:37 ============================================================================ +03:30:37 Slot Id : <327> +03:30:37 Transaction Type : REQUEST +03:30:37 Received From : +03:30:37 ============================================================================ +03:30:37 FNo. Len. Field Value +03:30:37 ============================================================================ +03:30:37 [ 1] [ 4] [0800] +03:30:37 [ 7] [ 10] [0319082944] +03:30:37 [ 11] [ 6] [154037] +03:30:37 [ 70] [ 3] [301] +03:30:37 ============================================================================ +03:30:37 + + +waiting on router queue for slot.... +03:30:37 Sending to : +03:30:37 ============================================================================ +03:30:37 ============================================================================ +03:30:37 Slot Id : <327> +03:30:37 Transaction Type : RESPONSE +03:30:37 Received From : +03:30:37 ============================================================================ +03:30:37 FNo. Len. Field Value +03:30:37 ============================================================================ +03:30:37 [ 1] [ 4] [0810] +03:30:37 [ 7] [ 10] [0319082944] +03:30:37 [ 11] [ 6] [154037] +03:30:37 [ 39] [ 2] [00] +03:30:37 [ 70] [ 3] [301] +03:30:37 ============================================================================ +03:30:37 Calculate Source COMM Id = 2 +03:30:37 ============================================================================ +03:30:37 + + +waiting on router queue for slot.... +03:30:47 ============================================================================ +03:30:47 Slot Id : <333> +03:30:47 Transaction Type : REQUEST +03:30:47 Received From : +03:30:47 ============================================================================ +03:30:47 FNo. Len. Field Value +03:30:47 ============================================================================ +03:30:47 [ 1] [ 4] [0800] +03:30:47 [ 7] [ 10] [0319082954] +03:30:47 [ 11] [ 6] [154038] +03:30:47 [ 70] [ 3] [301] +03:30:47 ============================================================================ +03:30:47 + + +waiting on router queue for slot.... +03:30:47 Sending to : +03:30:47 ============================================================================ +03:30:47 ============================================================================ +03:30:47 Slot Id : <333> +03:30:47 Transaction Type : RESPONSE +03:30:47 Received From : +03:30:47 ============================================================================ +03:30:47 FNo. Len. Field Value +03:30:47 ============================================================================ +03:30:47 [ 1] [ 4] [0810] +03:30:47 [ 7] [ 10] [0319082954] +03:30:47 [ 11] [ 6] [154038] +03:30:47 [ 39] [ 2] [00] +03:30:47 [ 70] [ 3] [301] +03:30:47 ============================================================================ +03:30:47 Calculate Source COMM Id = 2 +03:30:47 ============================================================================ +03:30:47 + + +waiting on router queue for slot.... +03:31:00 ============================================================================ +03:31:00 Slot Id : <314> +03:31:00 Transaction Type : REQUEST +03:31:00 Received From : +03:31:00 ============================================================================ +03:31:00 FNo. Len. Field Value +03:31:00 ============================================================================ +03:31:00 [ 1] [ 4] [0800] +03:31:00 [ 7] [ 10] [0319083005] +03:31:00 [ 11] [ 6] [154039] +03:31:00 [ 70] [ 3] [301] +03:31:00 ============================================================================ +03:31:00 + + +waiting on router queue for slot.... +03:31:00 Sending to : +03:31:00 ============================================================================ +03:31:00 ============================================================================ +03:31:00 Slot Id : <314> +03:31:00 Transaction Type : RESPONSE +03:31:00 Received From : +03:31:00 ============================================================================ +03:31:00 FNo. Len. Field Value +03:31:00 ============================================================================ +03:31:00 [ 1] [ 4] [0810] +03:31:00 [ 7] [ 10] [0319083005] +03:31:00 [ 11] [ 6] [154039] +03:31:00 [ 39] [ 2] [00] +03:31:00 [ 70] [ 3] [301] +03:31:00 ============================================================================ +03:31:00 Calculate Source COMM Id = 2 +03:31:00 ============================================================================ +03:31:00 + + +waiting on router queue for slot.... +03:31:10 ============================================================================ +03:31:10 Slot Id : <331> +03:31:10 Transaction Type : REQUEST +03:31:10 Received From : +03:31:10 ============================================================================ +03:31:10 FNo. Len. Field Value +03:31:10 ============================================================================ +03:31:10 [ 1] [ 4] [0800] +03:31:10 [ 7] [ 10] [0320104258] +03:31:10 [ 11] [ 6] [034258] +03:31:10 [ 37] [ 12] [57903034258] +03:31:10 [ 70] [ 3] [301] +03:31:10 ============================================================================ +03:31:10 + + +waiting on router queue for slot.... +03:31:10 Sending to : +03:31:10 ============================================================================ +03:31:10 ============================================================================ +03:31:10 Slot Id : <331> +03:31:10 Transaction Type : RESPONSE +03:31:10 Received From : +03:31:10 ============================================================================ +03:31:10 FNo. Len. Field Value +03:31:10 ============================================================================ +03:31:10 [ 1] [ 4] [0810] +03:31:10 [ 7] [ 10] [0320104258] +03:31:10 [ 11] [ 6] [034258] +03:31:10 [ 37] [ 12] [579030342580] +03:31:10 [ 39] [ 2] [00] +03:31:10 [ 70] [ 3] [810] +03:31:10 ============================================================================ +03:31:10 Calculate Source COMM Id = 6 +03:31:10 ============================================================================ +03:31:10 + + +waiting on router queue for slot.... +03:31:14 ============================================================================ +03:31:14 Slot Id : <321> +03:31:14 Transaction Type : REQUEST +03:31:14 Received From : +03:31:14 ============================================================================ +03:31:14 FNo. Len. Field Value +03:31:14 ============================================================================ +03:31:14 [ 1] [ 4] [0800] +03:31:14 [ 7] [ 10] [0319083021] +03:31:14 [ 11] [ 6] [154040] +03:31:14 [ 70] [ 3] [301] +03:31:14 ============================================================================ +03:31:14 + + +waiting on router queue for slot.... +03:31:14 Sending to : +03:31:14 ============================================================================ +03:31:14 ============================================================================ +03:31:14 Slot Id : <321> +03:31:14 Transaction Type : RESPONSE +03:31:14 Received From : +03:31:14 ============================================================================ +03:31:14 FNo. Len. Field Value +03:31:14 ============================================================================ +03:31:14 [ 1] [ 4] [0810] +03:31:14 [ 7] [ 10] [0319083021] +03:31:14 [ 11] [ 6] [154040] +03:31:14 [ 39] [ 2] [00] +03:31:14 [ 70] [ 3] [301] +03:31:14 ============================================================================ +03:31:14 Calculate Source COMM Id = 2 +03:31:14 ============================================================================ +03:31:14 + + +waiting on router queue for slot.... +03:31:22 ============================================================================ +03:31:22 Slot Id : <336> +03:31:22 Transaction Type : REQUEST +03:31:22 Received From : +03:31:22 ============================================================================ +03:31:22 FNo. Len. Field Value +03:31:22 ============================================================================ +03:31:22 [ 1] [ 4] [0800] +03:31:22 [ 7] [ 10] [0319202912] +03:31:22 [ 11] [ 6] [083698] +03:31:22 [ 37] [ 12] [57903083698] +03:31:22 [ 70] [ 3] [301] +03:31:22 ============================================================================ +03:31:22 + + +waiting on router queue for slot.... +03:31:22 Sending to : +03:31:22 ============================================================================ +03:31:22 ============================================================================ +03:31:22 Slot Id : <336> +03:31:22 Transaction Type : RESPONSE +03:31:22 Received From : +03:31:22 ============================================================================ +03:31:22 FNo. Len. Field Value +03:31:22 ============================================================================ +03:31:22 [ 1] [ 4] [0810] +03:31:22 [ 7] [ 10] [0319202912] +03:31:22 [ 11] [ 6] [083698] +03:31:22 [ 37] [ 12] [579030836980] +03:31:22 [ 39] [ 2] [00] +03:31:22 [ 70] [ 3] [810] +03:31:22 ============================================================================ +03:31:22 Calculate Source COMM Id = 4 +03:31:22 ============================================================================ +03:31:22 + + +waiting on router queue for slot.... +03:31:23 ============================================================================ +03:31:23 Slot Id : <334> +03:31:23 Transaction Type : REQUEST +03:31:23 Received From : +03:31:23 ============================================================================ +03:31:23 FNo. Len. Field Value +03:31:23 ============================================================================ +03:31:23 [ 1] [ 4] [0800] +03:31:23 [ 2] [ 5] [02531] +03:31:23 [ 3] [ 6] [579038] +03:31:23 [ 7] [ 10] [0319203123] +03:31:23 [ 11] [ 6] [806616] +03:31:23 [ 15] [ 10] [0319203123] +03:31:23 [ 37] [ 11] [57903806616] +03:31:23 [ 70] [ 3] [001] +03:31:23 ============================================================================ +03:31:23 + + +waiting on router queue for slot.... +03:31:23 ============================================================================ +03:31:23 Slot Id : <334> +03:31:23 Transaction Type : RESPONSE +03:31:23 Received From : +03:31:23 ============================================================================ +03:31:23 FNo. Len. Field Value +03:31:23 ============================================================================ +03:31:23 [ 1] [ 4] [0810] +03:31:23 [ 7] [ 10] [0319203123] +03:31:23 [ 11] [ 6] [806616] +03:31:23 [ 15] [ 4] [0319] +03:31:23 [ 37] [ 12] [57903806616] +03:31:23 [ 39] [ 2] [00] +03:31:23 [ 70] [ 3] [001] +03:31:23 ============================================================================ +03:31:23 Sending to : +03:31:23 ============================================================================ +03:31:23 + + +waiting on router queue for slot.... +03:31:29 ============================================================================ +03:31:29 Slot Id : <337> +03:31:29 Transaction Type : REQUEST +03:31:29 Received From : +03:31:29 ============================================================================ +03:31:29 FNo. Len. Field Value +03:31:29 ============================================================================ +03:31:29 [ 1] [ 4] [0800] +03:31:29 [ 7] [ 10] [0319083036] +03:31:29 [ 11] [ 6] [154041] +03:31:29 [ 70] [ 3] [301] +03:31:29 ============================================================================ +03:31:29 + + +waiting on router queue for slot.... +03:31:29 Sending to : +03:31:29 ============================================================================ +03:31:29 ============================================================================ +03:31:29 Slot Id : <337> +03:31:29 Transaction Type : RESPONSE +03:31:29 Received From : +03:31:29 ============================================================================ +03:31:29 FNo. Len. Field Value +03:31:29 ============================================================================ +03:31:29 [ 1] [ 4] [0810] +03:31:29 [ 7] [ 10] [0319083036] +03:31:29 [ 11] [ 6] [154041] +03:31:29 [ 39] [ 2] [00] +03:31:29 [ 70] [ 3] [301] +03:31:29 ============================================================================ +03:31:29 Calculate Source COMM Id = 2 +03:31:29 ============================================================================ +03:31:29 + + +waiting on router queue for slot.... +03:31:45 ============================================================================ +03:31:45 Slot Id : <335> +03:31:45 Transaction Type : REQUEST +03:31:45 Received From : +03:31:45 ============================================================================ +03:31:45 FNo. Len. Field Value +03:31:45 ============================================================================ +03:31:45 [ 1] [ 4] [0800] +03:31:45 [ 7] [ 10] [0319083051] +03:31:45 [ 11] [ 6] [154042] +03:31:45 [ 70] [ 3] [301] +03:31:45 ============================================================================ +03:31:45 + + +waiting on router queue for slot.... +03:31:45 Sending to : +03:31:45 ============================================================================ +03:31:45 ============================================================================ +03:31:45 Slot Id : <335> +03:31:45 Transaction Type : RESPONSE +03:31:45 Received From : +03:31:45 ============================================================================ +03:31:45 FNo. Len. Field Value +03:31:45 ============================================================================ +03:31:45 [ 1] [ 4] [0810] +03:31:45 [ 7] [ 10] [0319083051] +03:31:45 [ 11] [ 6] [154042] +03:31:45 [ 39] [ 2] [00] +03:31:45 [ 70] [ 3] [301] +03:31:45 ============================================================================ +03:31:45 Calculate Source COMM Id = 2 +03:31:45 ============================================================================ +03:31:45 + + +waiting on router queue for slot.... +03:31:48 ============================================================================ +03:31:48 Slot Id : <342> +03:31:48 Transaction Type : REQUEST +03:31:48 Received From : +03:31:48 ============================================================================ +03:31:48 FNo. Len. Field Value +03:31:48 ============================================================================ +03:31:48 [ 1] [ 4] [0800] +03:31:48 [ 7] [ 10] [0320033135] +03:31:48 [ 11] [ 6] [010451] +03:31:48 [ 37] [ 12] [507903010451] +03:31:48 [ 70] [ 3] [ ] +03:31:48 ============================================================================ +03:31:48 + + +waiting on router queue for slot.... +03:31:48 Sending to : +03:31:48 ============================================================================ +03:31:48 ============================================================================ +03:31:48 Slot Id : <342> +03:31:48 Transaction Type : RESPONSE +03:31:48 Received From : +03:31:48 ============================================================================ +03:31:48 FNo. Len. Field Value +03:31:48 ============================================================================ +03:31:48 [ 1] [ 4] [0810] +03:31:48 [ 7] [ 10] [0320033135] +03:31:48 [ 11] [ 6] [010451] +03:31:48 [ 37] [ 12] [507903010451] +03:31:48 [ 39] [ 2] [91] +03:31:48 [ 70] [ 3] [ ] +03:31:48 ============================================================================ +03:31:48 Calculate Source COMM Id = 3 +03:31:48 ============================================================================ +03:31:48 + + +waiting on router queue for slot.... +03:32:00 ============================================================================ +03:32:00 Slot Id : <320> +03:32:00 Transaction Type : REQUEST +03:32:00 Received From : +03:32:00 ============================================================================ +03:32:00 FNo. Len. Field Value +03:32:00 ============================================================================ +03:32:00 [ 1] [ 4] [0800] +03:32:00 [ 7] [ 10] [0319083107] +03:32:00 [ 11] [ 6] [154043] +03:32:00 [ 70] [ 3] [301] +03:32:00 ============================================================================ +03:32:00 + + +waiting on router queue for slot.... +03:32:00 Sending to : +03:32:00 ============================================================================ +03:32:00 ============================================================================ +03:32:00 Slot Id : <320> +03:32:00 Transaction Type : RESPONSE +03:32:00 Received From : +03:32:00 ============================================================================ +03:32:00 FNo. Len. Field Value +03:32:00 ============================================================================ +03:32:00 [ 1] [ 4] [0810] +03:32:00 [ 7] [ 10] [0319083107] +03:32:00 [ 11] [ 6] [154043] +03:32:00 [ 39] [ 2] [00] +03:32:00 [ 70] [ 3] [301] +03:32:00 ============================================================================ +03:32:00 Calculate Source COMM Id = 2 +03:32:00 ============================================================================ +03:32:00 + + +waiting on router queue for slot.... +03:32:15 ============================================================================ +03:32:15 Slot Id : <341> +03:32:15 Transaction Type : REQUEST +03:32:15 Received From : +03:32:15 ============================================================================ +03:32:15 FNo. Len. Field Value +03:32:15 ============================================================================ +03:32:15 [ 1] [ 4] [0800] +03:32:15 [ 7] [ 10] [0320104403] +03:32:15 [ 11] [ 6] [034403] +03:32:15 [ 37] [ 12] [57903034403] +03:32:15 [ 70] [ 3] [301] +03:32:15 ============================================================================ +03:32:15 + + +waiting on router queue for slot.... +03:32:15 Sending to : +03:32:15 ============================================================================ +03:32:15 ============================================================================ +03:32:15 Slot Id : <341> +03:32:15 Transaction Type : RESPONSE +03:32:15 Received From : +03:32:15 ============================================================================ +03:32:15 FNo. Len. Field Value +03:32:15 ============================================================================ +03:32:15 [ 1] [ 4] [0810] +03:32:15 [ 7] [ 10] [0320104403] +03:32:15 [ 11] [ 6] [034403] +03:32:15 [ 37] [ 12] [579030344030] +03:32:15 [ 39] [ 2] [00] +03:32:15 [ 70] [ 3] [810] +03:32:15 ============================================================================ +03:32:15 Calculate Source COMM Id = 6 +03:32:15 ============================================================================ +03:32:15 + + +waiting on router queue for slot.... +03:32:15 ============================================================================ +03:32:15 Slot Id : <268> +03:32:15 Transaction Type : REQUEST +03:32:15 Received From : +03:32:15 ============================================================================ +03:32:15 FNo. Len. Field Value +03:32:15 ============================================================================ +03:32:15 [ 1] [ 4] [0800] +03:32:15 [ 7] [ 10] [0319083122] +03:32:15 [ 11] [ 6] [154044] +03:32:15 [ 70] [ 3] [301] +03:32:15 ============================================================================ +03:32:15 + + +waiting on router queue for slot.... +03:32:15 Sending to : +03:32:15 ============================================================================ +03:32:15 ============================================================================ +03:32:15 Slot Id : <268> +03:32:15 Transaction Type : RESPONSE +03:32:15 Received From : +03:32:15 ============================================================================ +03:32:15 FNo. Len. Field Value +03:32:15 ============================================================================ +03:32:15 [ 1] [ 4] [0810] +03:32:15 [ 7] [ 10] [0319083122] +03:32:15 [ 11] [ 6] [154044] +03:32:15 [ 39] [ 2] [00] +03:32:15 [ 70] [ 3] [301] +03:32:15 ============================================================================ +03:32:15 Calculate Source COMM Id = 2 +03:32:15 ============================================================================ +03:32:15 + + +waiting on router queue for slot.... +03:32:25 ============================================================================ +03:32:25 Slot Id : <344> +03:32:25 Transaction Type : REQUEST +03:32:25 Received From : +03:32:25 ============================================================================ +03:32:25 FNo. Len. Field Value +03:32:25 ============================================================================ +03:32:25 [ 1] [ 4] [0800] +03:32:25 [ 2] [ 5] [02531] +03:32:25 [ 3] [ 6] [579038] +03:32:25 [ 7] [ 10] [0319203225] +03:32:25 [ 11] [ 6] [806617] +03:32:25 [ 15] [ 10] [0319203225] +03:32:25 [ 37] [ 11] [57903806617] +03:32:25 [ 70] [ 3] [001] +03:32:25 ============================================================================ +03:32:25 + + +waiting on router queue for slot.... +03:32:25 ============================================================================ +03:32:25 Slot Id : <344> +03:32:25 Transaction Type : RESPONSE +03:32:25 Received From : +03:32:25 ============================================================================ +03:32:25 FNo. Len. Field Value +03:32:25 ============================================================================ +03:32:25 [ 1] [ 4] [0810] +03:32:25 [ 7] [ 10] [0319203225] +03:32:25 [ 11] [ 6] [806617] +03:32:25 [ 15] [ 4] [0319] +03:32:25 [ 37] [ 12] [57903806617] +03:32:25 [ 39] [ 2] [00] +03:32:25 [ 70] [ 3] [001] +03:32:25 ============================================================================ +03:32:25 Sending to : +03:32:25 ============================================================================ +03:32:25 + + +waiting on router queue for slot.... +03:32:26 ============================================================================ +03:32:26 Slot Id : <345> +03:32:26 Transaction Type : REQUEST +03:32:26 Received From : +03:32:26 ============================================================================ +03:32:26 FNo. Len. Field Value +03:32:26 ============================================================================ +03:32:26 [ 1] [ 4] [0800] +03:32:26 [ 7] [ 10] [0319083133] +03:32:26 [ 11] [ 6] [154045] +03:32:26 [ 70] [ 3] [301] +03:32:26 ============================================================================ +03:32:26 + + +waiting on router queue for slot.... +03:32:26 Sending to : +03:32:26 ============================================================================ +03:32:26 ============================================================================ +03:32:26 Slot Id : <345> +03:32:26 Transaction Type : RESPONSE +03:32:26 Received From : +03:32:26 ============================================================================ +03:32:26 FNo. Len. Field Value +03:32:26 ============================================================================ +03:32:26 [ 1] [ 4] [0810] +03:32:26 [ 7] [ 10] [0319083133] +03:32:26 [ 11] [ 6] [154045] +03:32:26 [ 39] [ 2] [00] +03:32:26 [ 70] [ 3] [301] +03:32:26 ============================================================================ +03:32:26 Calculate Source COMM Id = 2 +03:32:26 ============================================================================ +03:32:26 + + +waiting on router queue for slot.... +03:32:37 ============================================================================ +03:32:37 Slot Id : <329> +03:32:37 Transaction Type : REQUEST +03:32:37 Received From : +03:32:37 ============================================================================ +03:32:37 FNo. Len. Field Value +03:32:37 ============================================================================ +03:32:37 [ 1] [ 4] [0800] +03:32:37 [ 7] [ 10] [0319083144] +03:32:37 [ 11] [ 6] [154046] +03:32:37 [ 70] [ 3] [301] +03:32:37 ============================================================================ +03:32:37 + + +waiting on router queue for slot.... +03:32:37 Sending to : +03:32:37 ============================================================================ +03:32:37 ============================================================================ +03:32:37 Slot Id : <329> +03:32:37 Transaction Type : RESPONSE +03:32:37 Received From : +03:32:37 ============================================================================ +03:32:37 FNo. Len. Field Value +03:32:37 ============================================================================ +03:32:37 [ 1] [ 4] [0810] +03:32:37 [ 7] [ 10] [0319083144] +03:32:37 [ 11] [ 6] [154046] +03:32:37 [ 39] [ 2] [00] +03:32:37 [ 70] [ 3] [301] +03:32:37 ============================================================================ +03:32:37 Calculate Source COMM Id = 2 +03:32:37 ============================================================================ +03:32:37 + + +waiting on router queue for slot.... +03:32:48 ============================================================================ +03:32:48 Slot Id : <339> +03:32:48 Transaction Type : REQUEST +03:32:48 Received From : +03:32:48 ============================================================================ +03:32:48 FNo. Len. Field Value +03:32:48 ============================================================================ +03:32:48 [ 1] [ 4] [0800] +03:32:48 [ 7] [ 10] [0319083155] +03:32:48 [ 11] [ 6] [154047] +03:32:48 [ 70] [ 3] [301] +03:32:48 ============================================================================ +03:32:48 + + +waiting on router queue for slot.... +03:32:48 Sending to : +03:32:48 ============================================================================ +03:32:48 ============================================================================ +03:32:48 Slot Id : <339> +03:32:48 Transaction Type : RESPONSE +03:32:48 Received From : +03:32:48 ============================================================================ +03:32:48 FNo. Len. Field Value +03:32:48 ============================================================================ +03:32:48 [ 1] [ 4] [0810] +03:32:48 [ 7] [ 10] [0319083155] +03:32:48 [ 11] [ 6] [154047] +03:32:48 [ 39] [ 2] [00] +03:32:48 [ 70] [ 3] [301] +03:32:48 ============================================================================ +03:32:48 Calculate Source COMM Id = 2 +03:32:48 ============================================================================ +03:32:48 + + +waiting on router queue for slot.... +03:33:00 ============================================================================ +03:33:00 Slot Id : <323> +03:33:00 Transaction Type : REQUEST +03:33:00 Received From : +03:33:00 ============================================================================ +03:33:00 FNo. Len. Field Value +03:33:00 ============================================================================ +03:33:00 [ 1] [ 4] [0800] +03:33:00 [ 7] [ 10] [0319083207] +03:33:00 [ 11] [ 6] [154048] +03:33:00 [ 70] [ 3] [301] +03:33:00 ============================================================================ +03:33:00 + + +waiting on router queue for slot.... +03:33:00 Sending to : +03:33:00 ============================================================================ +03:33:00 ============================================================================ +03:33:00 Slot Id : <323> +03:33:00 Transaction Type : RESPONSE +03:33:00 Received From : +03:33:00 ============================================================================ +03:33:00 FNo. Len. Field Value +03:33:00 ============================================================================ +03:33:00 [ 1] [ 4] [0810] +03:33:00 [ 7] [ 10] [0319083207] +03:33:00 [ 11] [ 6] [154048] +03:33:00 [ 39] [ 2] [00] +03:33:00 [ 70] [ 3] [301] +03:33:00 ============================================================================ +03:33:00 Calculate Source COMM Id = 2 +03:33:00 ============================================================================ +03:33:00 + + +waiting on router queue for slot.... +03:33:10 ============================================================================ +03:33:10 Slot Id : <309> +03:33:10 Transaction Type : REQUEST +03:33:10 Received From : +03:33:10 ============================================================================ +03:33:10 FNo. Len. Field Value +03:33:10 ============================================================================ +03:33:10 [ 1] [ 4] [0800] +03:33:10 [ 7] [ 10] [0319083217] +03:33:10 [ 11] [ 6] [154049] +03:33:10 [ 70] [ 3] [301] +03:33:10 ============================================================================ +03:33:10 + + +waiting on router queue for slot.... +03:33:10 Sending to : +03:33:10 ============================================================================ +03:33:10 ============================================================================ +03:33:10 Slot Id : <309> +03:33:10 Transaction Type : RESPONSE +03:33:10 Received From : +03:33:10 ============================================================================ +03:33:10 FNo. Len. Field Value +03:33:10 ============================================================================ +03:33:10 [ 1] [ 4] [0810] +03:33:10 [ 7] [ 10] [0319083217] +03:33:10 [ 11] [ 6] [154049] +03:33:10 [ 39] [ 2] [00] +03:33:10 [ 70] [ 3] [301] +03:33:10 ============================================================================ +03:33:10 Calculate Source COMM Id = 2 +03:33:10 ============================================================================ +03:33:10 + + +waiting on router queue for slot.... +03:33:20 ============================================================================ +03:33:20 Slot Id : <348> +03:33:20 Transaction Type : REQUEST +03:33:20 Received From : +03:33:20 ============================================================================ +03:33:20 FNo. Len. Field Value +03:33:20 ============================================================================ +03:33:20 [ 1] [ 4] [0800] +03:33:20 [ 7] [ 10] [0320104508] +03:33:20 [ 11] [ 6] [034508] +03:33:20 [ 37] [ 12] [57903034508] +03:33:20 [ 70] [ 3] [301] +03:33:20 ============================================================================ +03:33:20 + + +waiting on router queue for slot.... +03:33:20 Sending to : +03:33:20 ============================================================================ +03:33:20 ============================================================================ +03:33:20 Slot Id : <348> +03:33:20 Transaction Type : RESPONSE +03:33:20 Received From : +03:33:20 ============================================================================ +03:33:20 FNo. Len. Field Value +03:33:20 ============================================================================ +03:33:20 [ 1] [ 4] [0810] +03:33:20 [ 7] [ 10] [0320104508] +03:33:20 [ 11] [ 6] [034508] +03:33:20 [ 37] [ 12] [579030345080] +03:33:20 [ 39] [ 2] [00] +03:33:20 [ 70] [ 3] [810] +03:33:20 ============================================================================ +03:33:20 Calculate Source COMM Id = 6 +03:33:20 ============================================================================ +03:33:20 + + +waiting on router queue for slot.... +03:33:21 ============================================================================ +03:33:21 Slot Id : <352> +03:33:21 Transaction Type : REQUEST +03:33:21 Received From : +03:33:21 ============================================================================ +03:33:21 FNo. Len. Field Value +03:33:21 ============================================================================ +03:33:21 [ 1] [ 4] [0800] +03:33:21 [ 7] [ 10] [0319083228] +03:33:21 [ 11] [ 6] [154050] +03:33:21 [ 70] [ 3] [301] +03:33:21 ============================================================================ +03:33:21 + + +waiting on router queue for slot.... +03:33:21 Sending to : +03:33:21 ============================================================================ +03:33:21 ============================================================================ +03:33:21 Slot Id : <352> +03:33:21 Transaction Type : RESPONSE +03:33:21 Received From : +03:33:21 ============================================================================ +03:33:21 FNo. Len. Field Value +03:33:21 ============================================================================ +03:33:21 [ 1] [ 4] [0810] +03:33:21 [ 7] [ 10] [0319083228] +03:33:21 [ 11] [ 6] [154050] +03:33:21 [ 39] [ 2] [00] +03:33:21 [ 70] [ 3] [301] +03:33:21 ============================================================================ +03:33:21 Calculate Source COMM Id = 2 +03:33:21 ============================================================================ +03:33:21 + + +waiting on router queue for slot.... +03:33:27 ============================================================================ +03:33:27 Slot Id : <328> +03:33:27 Transaction Type : REQUEST +03:33:27 Received From : +03:33:27 ============================================================================ +03:33:27 FNo. Len. Field Value +03:33:27 ============================================================================ +03:33:27 [ 1] [ 4] [0800] +03:33:27 [ 2] [ 5] [02531] +03:33:27 [ 3] [ 6] [579038] +03:33:27 [ 7] [ 10] [0319203327] +03:33:27 [ 11] [ 6] [806618] +03:33:27 [ 15] [ 10] [0319203327] +03:33:27 [ 37] [ 11] [57903806618] +03:33:27 [ 70] [ 3] [001] +03:33:27 ============================================================================ +03:33:27 + + +waiting on router queue for slot.... +03:33:27 ============================================================================ +03:33:27 Slot Id : <328> +03:33:27 Transaction Type : RESPONSE +03:33:27 Received From : +03:33:27 ============================================================================ +03:33:27 FNo. Len. Field Value +03:33:27 ============================================================================ +03:33:27 [ 1] [ 4] [0810] +03:33:27 [ 7] [ 10] [0319203327] +03:33:27 [ 11] [ 6] [806618] +03:33:27 [ 15] [ 4] [0319] +03:33:27 [ 37] [ 12] [57903806618] +03:33:27 [ 39] [ 2] [00] +03:33:27 [ 70] [ 3] [001] +03:33:27 ============================================================================ +03:33:27 Sending to : +03:33:27 ============================================================================ +03:33:27 + + +waiting on router queue for slot.... +03:33:32 ============================================================================ +03:33:32 Slot Id : <350> +03:33:32 Transaction Type : REQUEST +03:33:32 Received From : +03:33:32 ============================================================================ +03:33:32 FNo. Len. Field Value +03:33:32 ============================================================================ +03:33:32 [ 1] [ 4] [0800] +03:33:32 [ 7] [ 10] [0319083239] +03:33:32 [ 11] [ 6] [154051] +03:33:32 [ 70] [ 3] [301] +03:33:32 ============================================================================ +03:33:32 + + +waiting on router queue for slot.... +03:33:32 Sending to : +03:33:32 ============================================================================ +03:33:32 ============================================================================ +03:33:32 Slot Id : <350> +03:33:32 Transaction Type : RESPONSE +03:33:32 Received From : +03:33:32 ============================================================================ +03:33:32 FNo. Len. Field Value +03:33:32 ============================================================================ +03:33:32 [ 1] [ 4] [0810] +03:33:32 [ 7] [ 10] [0319083239] +03:33:32 [ 11] [ 6] [154051] +03:33:32 [ 39] [ 2] [00] +03:33:32 [ 70] [ 3] [301] +03:33:32 ============================================================================ +03:33:32 Calculate Source COMM Id = 2 +03:33:32 ============================================================================ +03:33:32 + + +waiting on router queue for slot.... +03:33:42 ============================================================================ +03:33:42 Slot Id : <347> +03:33:42 Transaction Type : REQUEST +03:33:42 Received From : +03:33:42 ============================================================================ +03:33:42 FNo. Len. Field Value +03:33:42 ============================================================================ +03:33:42 [ 1] [ 4] [0800] +03:33:42 [ 7] [ 10] [0319083249] +03:33:42 [ 11] [ 6] [154052] +03:33:42 [ 70] [ 3] [301] +03:33:42 ============================================================================ +03:33:42 + + +waiting on router queue for slot.... +03:33:42 Sending to : +03:33:42 ============================================================================ +03:33:42 ============================================================================ +03:33:42 Slot Id : <347> +03:33:42 Transaction Type : RESPONSE +03:33:42 Received From : +03:33:42 ============================================================================ +03:33:42 FNo. Len. Field Value +03:33:42 ============================================================================ +03:33:42 [ 1] [ 4] [0810] +03:33:42 [ 7] [ 10] [0319083249] +03:33:42 [ 11] [ 6] [154052] +03:33:42 [ 39] [ 2] [00] +03:33:42 [ 70] [ 3] [301] +03:33:42 ============================================================================ +03:33:42 Calculate Source COMM Id = 2 +03:33:42 ============================================================================ +03:33:42 + + +waiting on router queue for slot.... +03:33:53 ============================================================================ +03:33:53 Slot Id : <319> +03:33:53 Transaction Type : REQUEST +03:33:53 Received From : +03:33:53 ============================================================================ +03:33:53 FNo. Len. Field Value +03:33:53 ============================================================================ +03:33:53 [ 1] [ 4] [0800] +03:33:53 [ 7] [ 10] [0319083300] +03:33:53 [ 11] [ 6] [154053] +03:33:53 [ 70] [ 3] [301] +03:33:53 ============================================================================ +03:33:53 + + +waiting on router queue for slot.... +03:33:53 Sending to : +03:33:53 ============================================================================ +03:33:53 ============================================================================ +03:33:53 Slot Id : <319> +03:33:53 Transaction Type : RESPONSE +03:33:53 Received From : +03:33:53 ============================================================================ +03:33:53 FNo. Len. Field Value +03:33:53 ============================================================================ +03:33:53 [ 1] [ 4] [0810] +03:33:53 [ 7] [ 10] [0319083300] +03:33:53 [ 11] [ 6] [154053] +03:33:53 [ 39] [ 2] [00] +03:33:53 [ 70] [ 3] [301] +03:33:53 ============================================================================ +03:33:53 Calculate Source COMM Id = 2 +03:33:53 ============================================================================ +03:33:53 + + +waiting on router queue for slot.... +03:34:09 ============================================================================ +03:34:09 Slot Id : <356> +03:34:09 Transaction Type : REQUEST +03:34:09 Received From : +03:34:09 ============================================================================ +03:34:09 FNo. Len. Field Value +03:34:09 ============================================================================ +03:34:09 [ 1] [ 4] [0800] +03:34:09 [ 7] [ 10] [0319083315] +03:34:09 [ 11] [ 6] [154054] +03:34:09 [ 70] [ 3] [301] +03:34:09 ============================================================================ +03:34:09 + + +waiting on router queue for slot.... +03:34:09 Sending to : +03:34:09 ============================================================================ +03:34:09 ============================================================================ +03:34:09 Slot Id : <356> +03:34:09 Transaction Type : RESPONSE +03:34:09 Received From : +03:34:09 ============================================================================ +03:34:09 FNo. Len. Field Value +03:34:09 ============================================================================ +03:34:09 [ 1] [ 4] [0810] +03:34:09 [ 7] [ 10] [0319083315] +03:34:09 [ 11] [ 6] [154054] +03:34:09 [ 39] [ 2] [00] +03:34:09 [ 70] [ 3] [301] +03:34:09 ============================================================================ +03:34:09 Calculate Source COMM Id = 2 +03:34:09 ============================================================================ +03:34:09 + + +waiting on router queue for slot.... +03:34:19 ============================================================================ +03:34:19 Slot Id : <332> +03:34:19 Transaction Type : REQUEST +03:34:19 Received From : +03:34:19 ============================================================================ +03:34:19 FNo. Len. Field Value +03:34:19 ============================================================================ +03:34:19 [ 1] [ 4] [0800] +03:34:19 [ 7] [ 10] [0319083326] +03:34:19 [ 11] [ 6] [154055] +03:34:19 [ 70] [ 3] [301] +03:34:19 ============================================================================ +03:34:19 + + +waiting on router queue for slot.... +03:34:19 Sending to : +03:34:19 ============================================================================ +03:34:19 ============================================================================ +03:34:19 Slot Id : <332> +03:34:19 Transaction Type : RESPONSE +03:34:19 Received From : +03:34:19 ============================================================================ +03:34:19 FNo. Len. Field Value +03:34:19 ============================================================================ +03:34:19 [ 1] [ 4] [0810] +03:34:19 [ 7] [ 10] [0319083326] +03:34:19 [ 11] [ 6] [154055] +03:34:19 [ 39] [ 2] [00] +03:34:19 [ 70] [ 3] [301] +03:34:19 ============================================================================ +03:34:19 Calculate Source COMM Id = 2 +03:34:19 ============================================================================ +03:34:19 + + +waiting on router queue for slot.... +03:34:25 ============================================================================ +03:34:25 Slot Id : <346> +03:34:25 Transaction Type : REQUEST +03:34:25 Received From : +03:34:25 ============================================================================ +03:34:25 FNo. Len. Field Value +03:34:25 ============================================================================ +03:34:25 [ 1] [ 4] [0800] +03:34:25 [ 7] [ 10] [0320104613] +03:34:25 [ 11] [ 6] [034613] +03:34:25 [ 37] [ 12] [57903034613] +03:34:25 [ 70] [ 3] [301] +03:34:25 ============================================================================ +03:34:25 + + +waiting on router queue for slot.... +03:34:25 Sending to : +03:34:25 ============================================================================ +03:34:25 ============================================================================ +03:34:25 Slot Id : <346> +03:34:25 Transaction Type : RESPONSE +03:34:25 Received From : +03:34:25 ============================================================================ +03:34:25 FNo. Len. Field Value +03:34:25 ============================================================================ +03:34:25 [ 1] [ 4] [0810] +03:34:25 [ 7] [ 10] [0320104613] +03:34:25 [ 11] [ 6] [034613] +03:34:25 [ 37] [ 12] [579030346130] +03:34:25 [ 39] [ 2] [00] +03:34:25 [ 70] [ 3] [810] +03:34:25 ============================================================================ +03:34:25 Calculate Source COMM Id = 6 +03:34:25 ============================================================================ +03:34:25 + + +waiting on router queue for slot.... +03:34:29 ============================================================================ +03:34:29 Slot Id : <330> +03:34:29 Transaction Type : REQUEST +03:34:29 Received From : +03:34:29 ============================================================================ +03:34:29 FNo. Len. Field Value +03:34:29 ============================================================================ +03:34:29 [ 1] [ 4] [0800] +03:34:29 [ 2] [ 5] [02531] +03:34:29 [ 3] [ 6] [579038] +03:34:29 [ 7] [ 10] [0319203429] +03:34:29 [ 11] [ 6] [806619] +03:34:29 [ 15] [ 10] [0319203429] +03:34:29 [ 37] [ 11] [57903806619] +03:34:29 [ 70] [ 3] [001] +03:34:29 ============================================================================ +03:34:29 + + +waiting on router queue for slot.... +03:34:29 ============================================================================ +03:34:29 Slot Id : <330> +03:34:29 Transaction Type : RESPONSE +03:34:29 Received From : +03:34:29 ============================================================================ +03:34:29 FNo. Len. Field Value +03:34:29 ============================================================================ +03:34:29 [ 1] [ 4] [0810] +03:34:29 [ 7] [ 10] [0319203429] +03:34:29 [ 11] [ 6] [806619] +03:34:29 [ 15] [ 4] [0319] +03:34:29 [ 37] [ 12] [57903806619] +03:34:29 [ 39] [ 2] [00] +03:34:29 [ 70] [ 3] [001] +03:34:29 ============================================================================ +03:34:29 Sending to : +03:34:29 ============================================================================ +03:34:29 + + +waiting on router queue for slot.... +03:34:30 ============================================================================ +03:34:30 Slot Id : <357> +03:34:30 Transaction Type : REQUEST +03:34:30 Received From : +03:34:30 ============================================================================ +03:34:30 FNo. Len. Field Value +03:34:30 ============================================================================ +03:34:30 [ 1] [ 4] [0800] +03:34:30 [ 7] [ 10] [0319083337] +03:34:30 [ 11] [ 6] [154056] +03:34:30 [ 70] [ 3] [301] +03:34:30 ============================================================================ +03:34:30 + + +waiting on router queue for slot.... +03:34:30 Sending to : +03:34:30 ============================================================================ +03:34:30 ============================================================================ +03:34:30 Slot Id : <357> +03:34:30 Transaction Type : RESPONSE +03:34:30 Received From : +03:34:30 ============================================================================ +03:34:30 FNo. Len. Field Value +03:34:30 ============================================================================ +03:34:30 [ 1] [ 4] [0810] +03:34:30 [ 7] [ 10] [0319083337] +03:34:30 [ 11] [ 6] [154056] +03:34:30 [ 39] [ 2] [00] +03:34:30 [ 70] [ 3] [301] +03:34:30 ============================================================================ +03:34:30 Calculate Source COMM Id = 2 +03:34:30 ============================================================================ +03:34:30 + + +waiting on router queue for slot.... +03:34:41 ============================================================================ +03:34:41 Slot Id : <366> +03:34:41 Transaction Type : REQUEST +03:34:41 Received From : +03:34:41 ============================================================================ +03:34:41 FNo. Len. Field Value +03:34:41 ============================================================================ +03:34:41 [ 1] [ 4] [0800] +03:34:41 [ 7] [ 10] [0319083348] +03:34:41 [ 11] [ 6] [154057] +03:34:41 [ 70] [ 3] [301] +03:34:41 ============================================================================ +03:34:41 + + +waiting on router queue for slot.... +03:34:41 Sending to : +03:34:41 ============================================================================ +03:34:41 ============================================================================ +03:34:41 Slot Id : <366> +03:34:41 Transaction Type : RESPONSE +03:34:41 Received From : +03:34:41 ============================================================================ +03:34:41 FNo. Len. Field Value +03:34:41 ============================================================================ +03:34:41 [ 1] [ 4] [0810] +03:34:41 [ 7] [ 10] [0319083348] +03:34:41 [ 11] [ 6] [154057] +03:34:41 [ 39] [ 2] [00] +03:34:41 [ 70] [ 3] [301] +03:34:41 ============================================================================ +03:34:41 Calculate Source COMM Id = 2 +03:34:41 ============================================================================ +03:34:41 + + +waiting on router queue for slot.... +03:34:51 ============================================================================ +03:34:51 Slot Id : <343> +03:34:51 Transaction Type : REQUEST +03:34:51 Received From : +03:34:51 ============================================================================ +03:34:51 FNo. Len. Field Value +03:34:51 ============================================================================ +03:34:51 [ 1] [ 4] [0800] +03:34:51 [ 7] [ 10] [0319083358] +03:34:51 [ 11] [ 6] [154058] +03:34:51 [ 70] [ 3] [301] +03:34:51 ============================================================================ +03:34:51 + + +waiting on router queue for slot.... +03:34:51 Sending to : +03:34:51 ============================================================================ +03:34:51 ============================================================================ +03:34:51 Slot Id : <343> +03:34:51 Transaction Type : RESPONSE +03:34:51 Received From : +03:34:51 ============================================================================ +03:34:51 FNo. Len. Field Value +03:34:51 ============================================================================ +03:34:51 [ 1] [ 4] [0810] +03:34:51 [ 7] [ 10] [0319083358] +03:34:51 [ 11] [ 6] [154058] +03:34:51 [ 39] [ 2] [00] +03:34:51 [ 70] [ 3] [301] +03:34:51 ============================================================================ +03:34:51 Calculate Source COMM Id = 2 +03:34:51 ============================================================================ +03:34:51 + + +waiting on router queue for slot.... +03:34:56 ============================================================================ +03:34:56 Slot Id : <365> +03:34:56 Transaction Type : REQUEST +03:34:56 Received From : +03:34:56 ============================================================================ +03:34:56 FNo. Len. Field Value +03:34:56 ============================================================================ +03:34:56 [ 1] [ 4] [0800] +03:34:56 [ 7] [ 10] [0319204242] +03:34:56 [ 11] [ 6] [050137] +03:34:56 [ 37] [ 12] [57903050137] +03:34:56 [ 70] [ 3] [301] +03:34:56 ============================================================================ +03:34:56 + + +waiting on router queue for slot.... +03:34:56 Sending to : +03:34:56 ============================================================================ +03:34:56 ============================================================================ +03:34:56 Slot Id : <365> +03:34:56 Transaction Type : RESPONSE +03:34:56 Received From : +03:34:56 ============================================================================ +03:34:56 FNo. Len. Field Value +03:34:56 ============================================================================ +03:34:56 [ 1] [ 4] [0810] +03:34:56 [ 7] [ 10] [0319204242] +03:34:56 [ 11] [ 6] [050137] +03:34:56 [ 37] [ 12] [579030501370] +03:34:56 [ 39] [ 2] [00] +03:34:56 [ 70] [ 3] [810] +03:34:56 ============================================================================ +03:34:56 Calculate Source COMM Id = 1 +03:34:56 ============================================================================ +03:34:56 + + +waiting on router queue for slot.... +03:35:02 ============================================================================ +03:35:02 Slot Id : <313> +03:35:02 Transaction Type : REQUEST +03:35:02 Received From : +03:35:02 ============================================================================ +03:35:02 FNo. Len. Field Value +03:35:02 ============================================================================ +03:35:02 [ 1] [ 4] [0800] +03:35:02 [ 7] [ 10] [0319083409] +03:35:02 [ 11] [ 6] [154059] +03:35:02 [ 70] [ 3] [301] +03:35:02 ============================================================================ +03:35:02 + + +waiting on router queue for slot.... +03:35:02 Sending to : +03:35:02 ============================================================================ +03:35:02 ============================================================================ +03:35:02 Slot Id : <313> +03:35:02 Transaction Type : RESPONSE +03:35:02 Received From : +03:35:02 ============================================================================ +03:35:02 FNo. Len. Field Value +03:35:02 ============================================================================ +03:35:02 [ 1] [ 4] [0810] +03:35:02 [ 7] [ 10] [0319083409] +03:35:02 [ 11] [ 6] [154059] +03:35:02 [ 39] [ 2] [00] +03:35:02 [ 70] [ 3] [301] +03:35:02 ============================================================================ +03:35:02 Calculate Source COMM Id = 2 +03:35:02 ============================================================================ +03:35:02 + + +waiting on router queue for slot.... +03:35:13 ============================================================================ +03:35:13 Slot Id : <340> +03:35:13 Transaction Type : REQUEST +03:35:13 Received From : +03:35:13 ============================================================================ +03:35:13 FNo. Len. Field Value +03:35:13 ============================================================================ +03:35:13 [ 1] [ 4] [0800] +03:35:13 [ 7] [ 10] [0319083419] +03:35:13 [ 11] [ 6] [154060] +03:35:13 [ 70] [ 3] [301] +03:35:13 ============================================================================ +03:35:13 + + +waiting on router queue for slot.... +03:35:13 Sending to : +03:35:13 ============================================================================ +03:35:13 ============================================================================ +03:35:13 Slot Id : <340> +03:35:13 Transaction Type : RESPONSE +03:35:13 Received From : +03:35:13 ============================================================================ +03:35:13 FNo. Len. Field Value +03:35:13 ============================================================================ +03:35:13 [ 1] [ 4] [0810] +03:35:13 [ 7] [ 10] [0319083419] +03:35:13 [ 11] [ 6] [154060] +03:35:13 [ 39] [ 2] [00] +03:35:13 [ 70] [ 3] [301] +03:35:13 ============================================================================ +03:35:13 Calculate Source COMM Id = 2 +03:35:13 ============================================================================ +03:35:13 + + +waiting on router queue for slot.... +03:35:23 ============================================================================ +03:35:23 Slot Id : <371> +03:35:23 Transaction Type : REQUEST +03:35:23 Received From : +03:35:23 ============================================================================ +03:35:23 FNo. Len. Field Value +03:35:23 ============================================================================ +03:35:23 [ 1] [ 4] [0800] +03:35:23 [ 7] [ 10] [0319083430] +03:35:23 [ 11] [ 6] [154061] +03:35:23 [ 70] [ 3] [301] +03:35:23 ============================================================================ +03:35:23 + + +waiting on router queue for slot.... +03:35:23 Sending to : +03:35:23 ============================================================================ +03:35:23 ============================================================================ +03:35:23 Slot Id : <371> +03:35:23 Transaction Type : RESPONSE +03:35:23 Received From : +03:35:23 ============================================================================ +03:35:23 FNo. Len. Field Value +03:35:23 ============================================================================ +03:35:23 [ 1] [ 4] [0810] +03:35:23 [ 7] [ 10] [0319083430] +03:35:23 [ 11] [ 6] [154061] +03:35:23 [ 39] [ 2] [00] +03:35:23 [ 70] [ 3] [301] +03:35:23 ============================================================================ +03:35:23 Calculate Source COMM Id = 2 +03:35:23 ============================================================================ +03:35:23 + + +waiting on router queue for slot.... +03:35:30 ============================================================================ +03:35:30 Slot Id : <324> +03:35:30 Transaction Type : REQUEST +03:35:30 Received From : +03:35:30 ============================================================================ +03:35:30 FNo. Len. Field Value +03:35:30 ============================================================================ +03:35:30 [ 1] [ 4] [0800] +03:35:30 [ 7] [ 10] [0320104718] +03:35:30 [ 11] [ 6] [034718] +03:35:30 [ 37] [ 12] [57903034718] +03:35:30 [ 70] [ 3] [301] +03:35:30 ============================================================================ +03:35:30 + + +waiting on router queue for slot.... +03:35:30 Sending to : +03:35:30 ============================================================================ +03:35:30 ============================================================================ +03:35:30 Slot Id : <324> +03:35:30 Transaction Type : RESPONSE +03:35:30 Received From : +03:35:30 ============================================================================ +03:35:30 FNo. Len. Field Value +03:35:30 ============================================================================ +03:35:30 [ 1] [ 4] [0810] +03:35:30 [ 7] [ 10] [0320104718] +03:35:30 [ 11] [ 6] [034718] +03:35:30 [ 37] [ 12] [579030347180] +03:35:30 [ 39] [ 2] [00] +03:35:30 [ 70] [ 3] [810] +03:35:30 ============================================================================ +03:35:30 Calculate Source COMM Id = 6 +03:35:30 ============================================================================ +03:35:30 + + +waiting on router queue for slot.... +03:35:31 ============================================================================ +03:35:31 Slot Id : <378> +03:35:31 Transaction Type : REQUEST +03:35:31 Received From : +03:35:31 ============================================================================ +03:35:31 FNo. Len. Field Value +03:35:31 ============================================================================ +03:35:31 [ 1] [ 4] [0800] +03:35:31 [ 2] [ 5] [02531] +03:35:31 [ 3] [ 6] [579038] +03:35:31 [ 7] [ 10] [0319203531] +03:35:31 [ 11] [ 6] [806620] +03:35:31 [ 15] [ 10] [0319203531] +03:35:31 [ 37] [ 11] [57903806620] +03:35:31 [ 70] [ 3] [001] +03:35:31 ============================================================================ +03:35:31 + + +waiting on router queue for slot.... +03:35:31 ============================================================================ +03:35:31 Slot Id : <378> +03:35:31 Transaction Type : RESPONSE +03:35:31 Received From : +03:35:31 ============================================================================ +03:35:31 FNo. Len. Field Value +03:35:31 ============================================================================ +03:35:31 [ 1] [ 4] [0810] +03:35:31 [ 7] [ 10] [0319203531] +03:35:31 [ 11] [ 6] [806620] +03:35:31 [ 15] [ 4] [0319] +03:35:31 [ 37] [ 12] [57903806620] +03:35:31 [ 39] [ 2] [00] +03:35:31 [ 70] [ 3] [001] +03:35:31 ============================================================================ +03:35:31 Sending to : +03:35:31 ============================================================================ +03:35:31 + + +waiting on router queue for slot.... +03:35:37 ============================================================================ +03:35:37 Slot Id : <353> +03:35:37 Transaction Type : REQUEST +03:35:37 Received From : +03:35:37 ============================================================================ +03:35:37 FNo. Len. Field Value +03:35:37 ============================================================================ +03:35:37 [ 1] [ 4] [0800] +03:35:37 [ 7] [ 10] [0319083442] +03:35:37 [ 11] [ 6] [154062] +03:35:37 [ 70] [ 3] [301] +03:35:37 ============================================================================ +03:35:37 + + +waiting on router queue for slot.... +03:35:37 Sending to : +03:35:37 ============================================================================ +03:35:37 ============================================================================ +03:35:37 Slot Id : <353> +03:35:37 Transaction Type : RESPONSE +03:35:37 Received From : +03:35:37 ============================================================================ +03:35:37 FNo. Len. Field Value +03:35:37 ============================================================================ +03:35:37 [ 1] [ 4] [0810] +03:35:37 [ 7] [ 10] [0319083442] +03:35:37 [ 11] [ 6] [154062] +03:35:37 [ 39] [ 2] [00] +03:35:37 [ 70] [ 3] [301] +03:35:37 ============================================================================ +03:35:37 Calculate Source COMM Id = 2 +03:35:37 ============================================================================ +03:35:37 + + +waiting on router queue for slot.... +03:35:51 ============================================================================ +03:35:51 Slot Id : <373> +03:35:51 Transaction Type : REQUEST +03:35:51 Received From : +03:35:51 ============================================================================ +03:35:51 FNo. Len. Field Value +03:35:51 ============================================================================ +03:35:51 [ 1] [ 4] [0800] +03:35:51 [ 7] [ 10] [0319083458] +03:35:51 [ 11] [ 6] [154063] +03:35:51 [ 70] [ 3] [301] +03:35:51 ============================================================================ +03:35:51 + + +waiting on router queue for slot.... +03:35:51 Sending to : +03:35:51 ============================================================================ +03:35:51 ============================================================================ +03:35:51 Slot Id : <373> +03:35:51 Transaction Type : RESPONSE +03:35:51 Received From : +03:35:51 ============================================================================ +03:35:51 FNo. Len. Field Value +03:35:51 ============================================================================ +03:35:51 [ 1] [ 4] [0810] +03:35:51 [ 7] [ 10] [0319083458] +03:35:51 [ 11] [ 6] [154063] +03:35:51 [ 39] [ 2] [00] +03:35:51 [ 70] [ 3] [301] +03:35:51 ============================================================================ +03:35:51 Calculate Source COMM Id = 2 +03:35:51 ============================================================================ +03:35:51 + + +waiting on router queue for slot.... +03:36:02 ============================================================================ +03:36:02 Slot Id : <355> +03:36:02 Transaction Type : REQUEST +03:36:02 Received From : +03:36:02 ============================================================================ +03:36:02 FNo. Len. Field Value +03:36:02 ============================================================================ +03:36:02 [ 1] [ 4] [0800] +03:36:02 [ 7] [ 10] [0319083509] +03:36:02 [ 11] [ 6] [154064] +03:36:02 [ 70] [ 3] [301] +03:36:02 ============================================================================ +03:36:02 + + +waiting on router queue for slot.... +03:36:02 Sending to : +03:36:02 ============================================================================ +03:36:02 ============================================================================ +03:36:02 Slot Id : <355> +03:36:02 Transaction Type : RESPONSE +03:36:02 Received From : +03:36:02 ============================================================================ +03:36:02 FNo. Len. Field Value +03:36:02 ============================================================================ +03:36:02 [ 1] [ 4] [0810] +03:36:02 [ 7] [ 10] [0319083509] +03:36:02 [ 11] [ 6] [154064] +03:36:02 [ 39] [ 2] [00] +03:36:02 [ 70] [ 3] [301] +03:36:02 ============================================================================ +03:36:02 Calculate Source COMM Id = 2 +03:36:02 ============================================================================ +03:36:02 + + +waiting on router queue for slot.... +03:36:13 ============================================================================ +03:36:13 Slot Id : <382> +03:36:13 Transaction Type : REQUEST +03:36:13 Received From : +03:36:13 ============================================================================ +03:36:13 FNo. Len. Field Value +03:36:13 ============================================================================ +03:36:13 [ 1] [ 4] [0800] +03:36:13 [ 7] [ 10] [0319083520] +03:36:13 [ 11] [ 6] [154065] +03:36:13 [ 70] [ 3] [301] +03:36:13 ============================================================================ +03:36:13 + + +waiting on router queue for slot.... +03:36:13 Sending to : +03:36:13 ============================================================================ +03:36:13 ============================================================================ +03:36:13 Slot Id : <382> +03:36:13 Transaction Type : RESPONSE +03:36:13 Received From : +03:36:13 ============================================================================ +03:36:13 FNo. Len. Field Value +03:36:13 ============================================================================ +03:36:13 [ 1] [ 4] [0810] +03:36:13 [ 7] [ 10] [0319083520] +03:36:13 [ 11] [ 6] [154065] +03:36:13 [ 39] [ 2] [00] +03:36:13 [ 70] [ 3] [301] +03:36:13 ============================================================================ +03:36:13 Calculate Source COMM Id = 2 +03:36:13 ============================================================================ +03:36:13 + + +waiting on router queue for slot.... +03:36:21 ============================================================================ +03:36:21 Slot Id : <363> +03:36:21 Transaction Type : REQUEST +03:36:21 Received From : +03:36:21 ============================================================================ +03:36:21 FNo. Len. Field Value +03:36:21 ============================================================================ +03:36:21 [ 1] [ 4] [0800] +03:36:21 [ 7] [ 10] [0319203412] +03:36:21 [ 11] [ 6] [046026] +03:36:21 [ 37] [ 12] [57903046026] +03:36:21 [ 70] [ 3] [301] +03:36:21 ============================================================================ +03:36:21 + + +waiting on router queue for slot.... +03:36:21 Sending to : +03:36:21 ============================================================================ +03:36:21 ============================================================================ +03:36:21 Slot Id : <363> +03:36:21 Transaction Type : RESPONSE +03:36:21 Received From : +03:36:21 ============================================================================ +03:36:21 FNo. Len. Field Value +03:36:21 ============================================================================ +03:36:21 [ 1] [ 4] [0810] +03:36:21 [ 7] [ 10] [0319203412] +03:36:21 [ 11] [ 6] [046026] +03:36:21 [ 37] [ 12] [579030460260] +03:36:21 [ 39] [ 2] [00] +03:36:21 [ 70] [ 3] [810] +03:36:21 ============================================================================ +03:36:21 Calculate Source COMM Id = 4 +03:36:21 ============================================================================ +03:36:21 + + +waiting on router queue for slot.... +03:36:28 ============================================================================ +03:36:28 Slot Id : <358> +03:36:28 Transaction Type : REQUEST +03:36:28 Received From : +03:36:28 ============================================================================ +03:36:28 FNo. Len. Field Value +03:36:28 ============================================================================ +03:36:28 [ 1] [ 4] [0800] +03:36:28 [ 7] [ 10] [0319083535] +03:36:28 [ 11] [ 6] [154066] +03:36:28 [ 70] [ 3] [301] +03:36:28 ============================================================================ +03:36:28 + + +waiting on router queue for slot.... +03:36:28 Sending to : +03:36:28 ============================================================================ +03:36:28 ============================================================================ +03:36:28 Slot Id : <358> +03:36:28 Transaction Type : RESPONSE +03:36:28 Received From : +03:36:28 ============================================================================ +03:36:28 FNo. Len. Field Value +03:36:28 ============================================================================ +03:36:28 [ 1] [ 4] [0810] +03:36:28 [ 7] [ 10] [0319083535] +03:36:28 [ 11] [ 6] [154066] +03:36:28 [ 39] [ 2] [00] +03:36:28 [ 70] [ 3] [301] +03:36:28 ============================================================================ +03:36:28 Calculate Source COMM Id = 2 +03:36:28 ============================================================================ +03:36:28 + + +waiting on router queue for slot.... +03:36:33 ============================================================================ +03:36:33 Slot Id : <338> +03:36:33 Transaction Type : REQUEST +03:36:33 Received From : +03:36:33 ============================================================================ +03:36:33 FNo. Len. Field Value +03:36:33 ============================================================================ +03:36:33 [ 1] [ 4] [0800] +03:36:33 [ 2] [ 5] [02531] +03:36:33 [ 3] [ 6] [579038] +03:36:33 [ 7] [ 10] [0319203633] +03:36:33 [ 11] [ 6] [806621] +03:36:33 [ 15] [ 10] [0319203633] +03:36:33 [ 37] [ 11] [57903806621] +03:36:33 [ 70] [ 3] [001] +03:36:33 ============================================================================ +03:36:33 + + +waiting on router queue for slot.... +03:36:33 ============================================================================ +03:36:33 Slot Id : <338> +03:36:33 Transaction Type : RESPONSE +03:36:33 Received From : +03:36:33 ============================================================================ +03:36:33 FNo. Len. Field Value +03:36:33 ============================================================================ +03:36:33 [ 1] [ 4] [0810] +03:36:33 [ 7] [ 10] [0319203633] +03:36:33 [ 11] [ 6] [806621] +03:36:33 [ 15] [ 4] [0319] +03:36:33 [ 37] [ 12] [57903806621] +03:36:33 [ 39] [ 2] [00] +03:36:33 [ 70] [ 3] [001] +03:36:33 ============================================================================ +03:36:33 Sending to : +03:36:33 ============================================================================ +03:36:33 + + +waiting on router queue for slot.... +03:36:35 ============================================================================ +03:36:35 Slot Id : <370> +03:36:35 Transaction Type : REQUEST +03:36:35 Received From : +03:36:35 ============================================================================ +03:36:35 FNo. Len. Field Value +03:36:35 ============================================================================ +03:36:35 [ 1] [ 4] [0800] +03:36:35 [ 7] [ 10] [0320104823] +03:36:35 [ 11] [ 6] [034823] +03:36:35 [ 37] [ 12] [57903034823] +03:36:35 [ 70] [ 3] [301] +03:36:35 ============================================================================ +03:36:35 + + +waiting on router queue for slot.... +03:36:35 Sending to : +03:36:35 ============================================================================ +03:36:35 ============================================================================ +03:36:35 Slot Id : <370> +03:36:35 Transaction Type : RESPONSE +03:36:35 Received From : +03:36:35 ============================================================================ +03:36:35 FNo. Len. Field Value +03:36:35 ============================================================================ +03:36:35 [ 1] [ 4] [0810] +03:36:35 [ 7] [ 10] [0320104823] +03:36:35 [ 11] [ 6] [034823] +03:36:35 [ 37] [ 12] [579030348230] +03:36:35 [ 39] [ 2] [00] +03:36:35 [ 70] [ 3] [810] +03:36:35 ============================================================================ +03:36:35 Calculate Source COMM Id = 6 +03:36:35 ============================================================================ +03:36:35 + + +waiting on router queue for slot.... +03:36:39 ============================================================================ +03:36:39 Slot Id : <360> +03:36:39 Transaction Type : REQUEST +03:36:39 Received From : +03:36:39 ============================================================================ +03:36:39 FNo. Len. Field Value +03:36:39 ============================================================================ +03:36:39 [ 1] [ 4] [0800] +03:36:39 [ 7] [ 10] [0319083546] +03:36:39 [ 11] [ 6] [154067] +03:36:39 [ 70] [ 3] [301] +03:36:39 ============================================================================ +03:36:39 + + +waiting on router queue for slot.... +03:36:39 Sending to : +03:36:39 ============================================================================ +03:36:39 ============================================================================ +03:36:39 Slot Id : <360> +03:36:39 Transaction Type : RESPONSE +03:36:39 Received From : +03:36:39 ============================================================================ +03:36:39 FNo. Len. Field Value +03:36:39 ============================================================================ +03:36:39 [ 1] [ 4] [0810] +03:36:39 [ 7] [ 10] [0319083546] +03:36:39 [ 11] [ 6] [154067] +03:36:39 [ 39] [ 2] [00] +03:36:39 [ 70] [ 3] [301] +03:36:39 ============================================================================ +03:36:39 Calculate Source COMM Id = 2 +03:36:39 ============================================================================ +03:36:39 + + +waiting on router queue for slot.... +03:36:50 ============================================================================ +03:36:50 Slot Id : <379> +03:36:50 Transaction Type : REQUEST +03:36:50 Received From : +03:36:50 ============================================================================ +03:36:50 FNo. Len. Field Value +03:36:50 ============================================================================ +03:36:50 [ 1] [ 4] [0800] +03:36:50 [ 7] [ 10] [0319083557] +03:36:50 [ 11] [ 6] [154068] +03:36:50 [ 70] [ 3] [301] +03:36:50 ============================================================================ +03:36:50 + + +waiting on router queue for slot.... +03:36:50 Sending to : +03:36:50 ============================================================================ +03:36:50 ============================================================================ +03:36:50 Slot Id : <379> +03:36:50 Transaction Type : RESPONSE +03:36:50 Received From : +03:36:50 ============================================================================ +03:36:50 FNo. Len. Field Value +03:36:50 ============================================================================ +03:36:50 [ 1] [ 4] [0810] +03:36:50 [ 7] [ 10] [0319083557] +03:36:50 [ 11] [ 6] [154068] +03:36:50 [ 39] [ 2] [00] +03:36:50 [ 70] [ 3] [301] +03:36:50 ============================================================================ +03:36:50 Calculate Source COMM Id = 2 +03:36:50 ============================================================================ +03:36:50 + + +waiting on router queue for slot.... +03:37:02 ============================================================================ +03:37:02 Slot Id : <396> +03:37:02 Transaction Type : REQUEST +03:37:02 Received From : +03:37:02 ============================================================================ +03:37:02 FNo. Len. Field Value +03:37:02 ============================================================================ +03:37:02 [ 1] [ 4] [0800] +03:37:02 [ 7] [ 10] [0319083608] +03:37:02 [ 11] [ 6] [154069] +03:37:02 [ 70] [ 3] [301] +03:37:02 ============================================================================ +03:37:02 + + +waiting on router queue for slot.... +03:37:02 Sending to : +03:37:02 ============================================================================ +03:37:02 ============================================================================ +03:37:02 Slot Id : <396> +03:37:02 Transaction Type : RESPONSE +03:37:02 Received From : +03:37:02 ============================================================================ +03:37:02 FNo. Len. Field Value +03:37:02 ============================================================================ +03:37:02 [ 1] [ 4] [0810] +03:37:02 [ 7] [ 10] [0319083608] +03:37:02 [ 11] [ 6] [154069] +03:37:02 [ 39] [ 2] [00] +03:37:02 [ 70] [ 3] [301] +03:37:02 ============================================================================ +03:37:02 Calculate Source COMM Id = 2 +03:37:02 ============================================================================ +03:37:02 + + +waiting on router queue for slot.... +03:37:17 ============================================================================ +03:37:17 Slot Id : <354> +03:37:17 Transaction Type : REQUEST +03:37:17 Received From : +03:37:17 ============================================================================ +03:37:17 FNo. Len. Field Value +03:37:17 ============================================================================ +03:37:17 [ 1] [ 4] [0800] +03:37:17 [ 7] [ 10] [0319083624] +03:37:17 [ 11] [ 6] [154070] +03:37:17 [ 70] [ 3] [301] +03:37:17 ============================================================================ +03:37:17 + + +waiting on router queue for slot.... +03:37:17 Sending to : +03:37:17 ============================================================================ +03:37:17 ============================================================================ +03:37:17 Slot Id : <354> +03:37:17 Transaction Type : RESPONSE +03:37:17 Received From : +03:37:17 ============================================================================ +03:37:17 FNo. Len. Field Value +03:37:17 ============================================================================ +03:37:17 [ 1] [ 4] [0810] +03:37:17 [ 7] [ 10] [0319083624] +03:37:17 [ 11] [ 6] [154070] +03:37:17 [ 39] [ 2] [00] +03:37:17 [ 70] [ 3] [301] +03:37:17 ============================================================================ +03:37:17 Calculate Source COMM Id = 2 +03:37:17 ============================================================================ +03:37:17 + + +waiting on router queue for slot.... +03:37:28 ============================================================================ +03:37:28 Slot Id : <369> +03:37:28 Transaction Type : REQUEST +03:37:28 Received From : +03:37:28 ============================================================================ +03:37:28 FNo. Len. Field Value +03:37:28 ============================================================================ +03:37:28 [ 1] [ 4] [0800] +03:37:28 [ 7] [ 10] [0319083635] +03:37:28 [ 11] [ 6] [154071] +03:37:28 [ 70] [ 3] [301] +03:37:28 ============================================================================ +03:37:28 + + +waiting on router queue for slot.... +03:37:28 Sending to : +03:37:28 ============================================================================ +03:37:28 ============================================================================ +03:37:28 Slot Id : <369> +03:37:28 Transaction Type : RESPONSE +03:37:28 Received From : +03:37:28 ============================================================================ +03:37:28 FNo. Len. Field Value +03:37:28 ============================================================================ +03:37:28 [ 1] [ 4] [0810] +03:37:28 [ 7] [ 10] [0319083635] +03:37:28 [ 11] [ 6] [154071] +03:37:28 [ 39] [ 2] [00] +03:37:28 [ 70] [ 3] [301] +03:37:28 ============================================================================ +03:37:28 Calculate Source COMM Id = 2 +03:37:28 ============================================================================ +03:37:28 + + +waiting on router queue for slot.... +03:37:35 ============================================================================ +03:37:35 Slot Id : <351> +03:37:35 Transaction Type : REQUEST +03:37:35 Received From : +03:37:35 ============================================================================ +03:37:35 FNo. Len. Field Value +03:37:35 ============================================================================ +03:37:35 [ 1] [ 4] [0800] +03:37:35 [ 2] [ 5] [02531] +03:37:35 [ 3] [ 6] [579038] +03:37:35 [ 7] [ 10] [0319203735] +03:37:35 [ 11] [ 6] [806622] +03:37:35 [ 15] [ 10] [0319203735] +03:37:35 [ 37] [ 11] [57903806622] +03:37:35 [ 70] [ 3] [001] +03:37:35 ============================================================================ +03:37:35 + + +waiting on router queue for slot.... +03:37:35 ============================================================================ +03:37:35 Slot Id : <351> +03:37:35 Transaction Type : RESPONSE +03:37:35 Received From : +03:37:35 ============================================================================ +03:37:35 FNo. Len. Field Value +03:37:35 ============================================================================ +03:37:35 [ 1] [ 4] [0810] +03:37:35 [ 7] [ 10] [0319203735] +03:37:35 [ 11] [ 6] [806622] +03:37:35 [ 15] [ 4] [0319] +03:37:35 [ 37] [ 12] [57903806622] +03:37:35 [ 39] [ 2] [00] +03:37:35 [ 70] [ 3] [001] +03:37:35 ============================================================================ +03:37:35 Sending to : +03:37:35 ============================================================================ +03:37:35 + + +waiting on router queue for slot.... +03:37:40 ============================================================================ +03:37:40 Slot Id : <374> +03:37:40 Transaction Type : REQUEST +03:37:40 Received From : +03:37:40 ============================================================================ +03:37:40 FNo. Len. Field Value +03:37:40 ============================================================================ +03:37:40 [ 1] [ 4] [0800] +03:37:40 [ 7] [ 10] [0319083646] +03:37:40 [ 11] [ 6] [154072] +03:37:40 [ 70] [ 3] [301] +03:37:40 ============================================================================ +03:37:40 + + +waiting on router queue for slot.... +03:37:40 Sending to : +03:37:40 ============================================================================ +03:37:40 ============================================================================ +03:37:40 Slot Id : <374> +03:37:40 Transaction Type : RESPONSE +03:37:40 Received From : +03:37:40 ============================================================================ +03:37:40 FNo. Len. Field Value +03:37:40 ============================================================================ +03:37:40 [ 1] [ 4] [0810] +03:37:40 [ 7] [ 10] [0319083646] +03:37:40 [ 11] [ 6] [154072] +03:37:40 [ 39] [ 2] [00] +03:37:40 [ 70] [ 3] [301] +03:37:40 ============================================================================ +03:37:40 Calculate Source COMM Id = 2 +03:37:40 ============================================================================ +03:37:40 + + +waiting on router queue for slot.... +03:37:40 ============================================================================ +03:37:40 Slot Id : <389> +03:37:40 Transaction Type : REQUEST +03:37:40 Received From : +03:37:40 ============================================================================ +03:37:40 FNo. Len. Field Value +03:37:40 ============================================================================ +03:37:40 [ 1] [ 4] [0800] +03:37:40 [ 7] [ 10] [0320104928] +03:37:40 [ 11] [ 6] [034928] +03:37:40 [ 37] [ 12] [57903034928] +03:37:40 [ 70] [ 3] [301] +03:37:40 ============================================================================ +03:37:40 + + +waiting on router queue for slot.... +03:37:40 Sending to : +03:37:40 ============================================================================ +03:37:40 ============================================================================ +03:37:40 Slot Id : <389> +03:37:40 Transaction Type : RESPONSE +03:37:40 Received From : +03:37:40 ============================================================================ +03:37:40 FNo. Len. Field Value +03:37:40 ============================================================================ +03:37:40 [ 1] [ 4] [0810] +03:37:40 [ 7] [ 10] [0320104928] +03:37:40 [ 11] [ 6] [034928] +03:37:40 [ 37] [ 12] [579030349280] +03:37:40 [ 39] [ 2] [00] +03:37:40 [ 70] [ 3] [810] +03:37:40 ============================================================================ +03:37:40 Calculate Source COMM Id = 6 +03:37:40 ============================================================================ +03:37:40 + + +waiting on router queue for slot.... +03:37:54 ============================================================================ +03:37:54 Slot Id : <390> +03:37:54 Transaction Type : REQUEST +03:37:54 Received From : +03:37:54 ============================================================================ +03:37:54 FNo. Len. Field Value +03:37:54 ============================================================================ +03:37:54 [ 1] [ 4] [0800] +03:37:54 [ 7] [ 10] [0319083701] +03:37:54 [ 11] [ 6] [154073] +03:37:54 [ 70] [ 3] [301] +03:37:54 ============================================================================ +03:37:54 + + +waiting on router queue for slot.... +03:37:54 Sending to : +03:37:54 ============================================================================ +03:37:54 ============================================================================ +03:37:54 Slot Id : <390> +03:37:54 Transaction Type : RESPONSE +03:37:54 Received From : +03:37:54 ============================================================================ +03:37:54 FNo. Len. Field Value +03:37:54 ============================================================================ +03:37:54 [ 1] [ 4] [0810] +03:37:54 [ 7] [ 10] [0319083701] +03:37:54 [ 11] [ 6] [154073] +03:37:54 [ 39] [ 2] [00] +03:37:54 [ 70] [ 3] [301] +03:37:54 ============================================================================ +03:37:54 Calculate Source COMM Id = 2 +03:37:54 ============================================================================ +03:37:54 + + +waiting on router queue for slot.... +03:38:05 ============================================================================ +03:38:05 Slot Id : <376> +03:38:05 Transaction Type : REQUEST +03:38:05 Received From : +03:38:05 ============================================================================ +03:38:05 FNo. Len. Field Value +03:38:05 ============================================================================ +03:38:05 [ 1] [ 4] [0800] +03:38:05 [ 7] [ 10] [0319083712] +03:38:05 [ 11] [ 6] [154074] +03:38:05 [ 70] [ 3] [301] +03:38:05 ============================================================================ +03:38:05 + + +waiting on router queue for slot.... +03:38:05 Sending to : +03:38:05 ============================================================================ +03:38:05 ============================================================================ +03:38:05 Slot Id : <376> +03:38:05 Transaction Type : RESPONSE +03:38:05 Received From : +03:38:05 ============================================================================ +03:38:05 FNo. Len. Field Value +03:38:05 ============================================================================ +03:38:05 [ 1] [ 4] [0810] +03:38:05 [ 7] [ 10] [0319083712] +03:38:05 [ 11] [ 6] [154074] +03:38:05 [ 39] [ 2] [00] +03:38:05 [ 70] [ 3] [301] +03:38:05 ============================================================================ +03:38:05 Calculate Source COMM Id = 2 +03:38:05 ============================================================================ +03:38:05 + + +waiting on router queue for slot.... +03:38:20 ============================================================================ +03:38:20 Slot Id : <359> +03:38:20 Transaction Type : REQUEST +03:38:20 Received From : +03:38:20 ============================================================================ +03:38:20 FNo. Len. Field Value +03:38:20 ============================================================================ +03:38:20 [ 1] [ 4] [0800] +03:38:20 [ 7] [ 10] [0319083727] +03:38:20 [ 11] [ 6] [154075] +03:38:20 [ 70] [ 3] [301] +03:38:20 ============================================================================ +03:38:20 + + +waiting on router queue for slot.... +03:38:20 Sending to : +03:38:20 ============================================================================ +03:38:20 ============================================================================ +03:38:20 Slot Id : <359> +03:38:20 Transaction Type : RESPONSE +03:38:20 Received From : +03:38:20 ============================================================================ +03:38:20 FNo. Len. Field Value +03:38:20 ============================================================================ +03:38:20 [ 1] [ 4] [0810] +03:38:20 [ 7] [ 10] [0319083727] +03:38:20 [ 11] [ 6] [154075] +03:38:20 [ 39] [ 2] [00] +03:38:20 [ 70] [ 3] [301] +03:38:20 ============================================================================ +03:38:20 Calculate Source COMM Id = 2 +03:38:20 ============================================================================ +03:38:20 + + +waiting on router queue for slot.... +03:38:31 ============================================================================ +03:38:31 Slot Id : <395> +03:38:31 Transaction Type : REQUEST +03:38:31 Received From : +03:38:31 ============================================================================ +03:38:31 FNo. Len. Field Value +03:38:31 ============================================================================ +03:38:31 [ 1] [ 4] [0800] +03:38:31 [ 7] [ 10] [0319083738] +03:38:31 [ 11] [ 6] [154076] +03:38:31 [ 70] [ 3] [301] +03:38:31 ============================================================================ +03:38:31 + + +waiting on router queue for slot.... +03:38:31 Sending to : +03:38:31 ============================================================================ +03:38:31 ============================================================================ +03:38:31 Slot Id : <395> +03:38:31 Transaction Type : RESPONSE +03:38:31 Received From : +03:38:31 ============================================================================ +03:38:31 FNo. Len. Field Value +03:38:31 ============================================================================ +03:38:31 [ 1] [ 4] [0810] +03:38:31 [ 7] [ 10] [0319083738] +03:38:31 [ 11] [ 6] [154076] +03:38:31 [ 39] [ 2] [00] +03:38:31 [ 70] [ 3] [301] +03:38:31 ============================================================================ +03:38:31 Calculate Source COMM Id = 2 +03:38:31 ============================================================================ +03:38:31 + + +waiting on router queue for slot.... +03:38:37 ============================================================================ +03:38:37 Slot Id : <361> +03:38:37 Transaction Type : REQUEST +03:38:37 Received From : +03:38:37 ============================================================================ +03:38:37 FNo. Len. Field Value +03:38:37 ============================================================================ +03:38:37 [ 1] [ 4] [0800] +03:38:37 [ 2] [ 5] [02531] +03:38:37 [ 3] [ 6] [579038] +03:38:37 [ 7] [ 10] [0319203837] +03:38:37 [ 11] [ 6] [806623] +03:38:37 [ 15] [ 10] [0319203837] +03:38:37 [ 37] [ 11] [57903806623] +03:38:37 [ 70] [ 3] [001] +03:38:37 ============================================================================ +03:38:37 + + +waiting on router queue for slot.... +03:38:37 ============================================================================ +03:38:37 Slot Id : <361> +03:38:37 Transaction Type : RESPONSE +03:38:37 Received From : +03:38:37 ============================================================================ +03:38:37 FNo. Len. Field Value +03:38:37 ============================================================================ +03:38:37 [ 1] [ 4] [0810] +03:38:37 [ 7] [ 10] [0319203837] +03:38:37 [ 11] [ 6] [806623] +03:38:37 [ 15] [ 4] [0319] +03:38:37 [ 37] [ 12] [57903806623] +03:38:37 [ 39] [ 2] [00] +03:38:37 [ 70] [ 3] [001] +03:38:37 ============================================================================ +03:38:37 Sending to : +03:38:37 ============================================================================ +03:38:37 + + +waiting on router queue for slot.... +03:38:42 ============================================================================ +03:38:42 Slot Id : <410> +03:38:42 Transaction Type : REQUEST +03:38:42 Received From : +03:38:42 ============================================================================ +03:38:42 FNo. Len. Field Value +03:38:42 ============================================================================ +03:38:42 [ 1] [ 4] [0800] +03:38:42 [ 7] [ 10] [0319083749] +03:38:42 [ 11] [ 6] [154077] +03:38:42 [ 70] [ 3] [301] +03:38:42 ============================================================================ +03:38:42 + + +waiting on router queue for slot.... +03:38:42 Sending to : +03:38:42 ============================================================================ +03:38:42 ============================================================================ +03:38:42 Slot Id : <410> +03:38:42 Transaction Type : RESPONSE +03:38:42 Received From : +03:38:42 ============================================================================ +03:38:42 FNo. Len. Field Value +03:38:42 ============================================================================ +03:38:42 [ 1] [ 4] [0810] +03:38:42 [ 7] [ 10] [0319083749] +03:38:42 [ 11] [ 6] [154077] +03:38:42 [ 39] [ 2] [00] +03:38:42 [ 70] [ 3] [301] +03:38:42 ============================================================================ +03:38:42 Calculate Source COMM Id = 2 +03:38:42 ============================================================================ +03:38:42 + + +waiting on router queue for slot.... +03:38:45 ============================================================================ +03:38:45 Slot Id : <349> +03:38:45 Transaction Type : REQUEST +03:38:45 Received From : +03:38:45 ============================================================================ +03:38:45 FNo. Len. Field Value +03:38:45 ============================================================================ +03:38:45 [ 1] [ 4] [0800] +03:38:45 [ 7] [ 10] [0320105033] +03:38:45 [ 11] [ 6] [035033] +03:38:45 [ 37] [ 12] [57903035033] +03:38:45 [ 70] [ 3] [301] +03:38:45 ============================================================================ +03:38:45 + + +waiting on router queue for slot.... +03:38:45 Sending to : +03:38:45 ============================================================================ +03:38:45 ============================================================================ +03:38:45 Slot Id : <349> +03:38:45 Transaction Type : RESPONSE +03:38:45 Received From : +03:38:45 ============================================================================ +03:38:45 FNo. Len. Field Value +03:38:45 ============================================================================ +03:38:45 [ 1] [ 4] [0810] +03:38:45 [ 7] [ 10] [0320105033] +03:38:45 [ 11] [ 6] [035033] +03:38:45 [ 37] [ 12] [579030350330] +03:38:45 [ 39] [ 2] [00] +03:38:45 [ 70] [ 3] [810] +03:38:45 ============================================================================ +03:38:45 Calculate Source COMM Id = 6 +03:38:45 ============================================================================ +03:38:45 + + +waiting on router queue for slot.... +03:38:58 ============================================================================ +03:38:58 Slot Id : <383> +03:38:58 Transaction Type : REQUEST +03:38:58 Received From : +03:38:58 ============================================================================ +03:38:58 FNo. Len. Field Value +03:38:58 ============================================================================ +03:38:58 [ 1] [ 4] [0800] +03:38:58 [ 7] [ 10] [0319083805] +03:38:58 [ 11] [ 6] [154078] +03:38:59 [ 70] [ 3] [301] +03:38:59 ============================================================================ +03:38:59 + + +waiting on router queue for slot.... +03:38:59 Sending to : +03:38:59 ============================================================================ +03:38:59 ============================================================================ +03:38:59 Slot Id : <383> +03:38:59 Transaction Type : RESPONSE +03:38:59 Received From : +03:38:59 ============================================================================ +03:38:59 FNo. Len. Field Value +03:38:59 ============================================================================ +03:38:59 [ 1] [ 4] [0810] +03:38:59 [ 7] [ 10] [0319083805] +03:38:59 [ 11] [ 6] [154078] +03:38:59 [ 39] [ 2] [00] +03:38:59 [ 70] [ 3] [301] +03:38:59 ============================================================================ +03:38:59 Calculate Source COMM Id = 2 +03:38:59 ============================================================================ +03:38:59 + + +waiting on router queue for slot.... +03:39:09 ============================================================================ +03:39:09 Slot Id : <413> +03:39:09 Transaction Type : REQUEST +03:39:09 Received From : +03:39:09 ============================================================================ +03:39:09 FNo. Len. Field Value +03:39:09 ============================================================================ +03:39:09 [ 1] [ 4] [0800] +03:39:09 [ 7] [ 10] [0319083816] +03:39:09 [ 11] [ 6] [154079] +03:39:09 [ 70] [ 3] [301] +03:39:09 ============================================================================ +03:39:09 + + +waiting on router queue for slot.... +03:39:09 Sending to : +03:39:09 ============================================================================ +03:39:09 ============================================================================ +03:39:09 Slot Id : <413> +03:39:09 Transaction Type : RESPONSE +03:39:09 Received From : +03:39:09 ============================================================================ +03:39:09 FNo. Len. Field Value +03:39:09 ============================================================================ +03:39:09 [ 1] [ 4] [0810] +03:39:09 [ 7] [ 10] [0319083816] +03:39:09 [ 11] [ 6] [154079] +03:39:09 [ 39] [ 2] [00] +03:39:09 [ 70] [ 3] [301] +03:39:09 ============================================================================ +03:39:09 Calculate Source COMM Id = 2 +03:39:09 ============================================================================ +03:39:09 + + +waiting on router queue for slot.... +03:39:20 ============================================================================ +03:39:20 Slot Id : <393> +03:39:20 Transaction Type : REQUEST +03:39:20 Received From : +03:39:20 ============================================================================ +03:39:20 FNo. Len. Field Value +03:39:20 ============================================================================ +03:39:20 [ 1] [ 4] [0800] +03:39:20 [ 7] [ 10] [0319083827] +03:39:20 [ 11] [ 6] [154080] +03:39:20 [ 70] [ 3] [301] +03:39:20 ============================================================================ +03:39:20 + + +waiting on router queue for slot.... +03:39:20 Sending to : +03:39:20 ============================================================================ +03:39:20 ============================================================================ +03:39:20 Slot Id : <393> +03:39:20 Transaction Type : RESPONSE +03:39:20 Received From : +03:39:20 ============================================================================ +03:39:20 FNo. Len. Field Value +03:39:20 ============================================================================ +03:39:20 [ 1] [ 4] [0810] +03:39:20 [ 7] [ 10] [0319083827] +03:39:20 [ 11] [ 6] [154080] +03:39:20 [ 39] [ 2] [00] +03:39:20 [ 70] [ 3] [301] +03:39:20 ============================================================================ +03:39:20 Calculate Source COMM Id = 2 +03:39:20 ============================================================================ +03:39:20 + + +waiting on router queue for slot.... +03:39:31 ============================================================================ +03:39:31 Slot Id : <397> +03:39:31 Transaction Type : REQUEST +03:39:31 Received From : +03:39:31 ============================================================================ +03:39:31 FNo. Len. Field Value +03:39:31 ============================================================================ +03:39:31 [ 1] [ 4] [0800] +03:39:31 [ 7] [ 10] [0319083838] +03:39:31 [ 11] [ 6] [154081] +03:39:31 [ 70] [ 3] [301] +03:39:31 ============================================================================ +03:39:31 + + +waiting on router queue for slot.... +03:39:31 Sending to : +03:39:31 ============================================================================ +03:39:31 ============================================================================ +03:39:31 Slot Id : <397> +03:39:31 Transaction Type : RESPONSE +03:39:31 Received From : +03:39:31 ============================================================================ +03:39:31 FNo. Len. Field Value +03:39:31 ============================================================================ +03:39:31 [ 1] [ 4] [0810] +03:39:31 [ 7] [ 10] [0319083838] +03:39:31 [ 11] [ 6] [154081] +03:39:31 [ 39] [ 2] [00] +03:39:31 [ 70] [ 3] [301] +03:39:31 ============================================================================ +03:39:31 Calculate Source COMM Id = 2 +03:39:31 ============================================================================ +03:39:31 + + +waiting on router queue for slot.... +03:39:39 ============================================================================ +03:39:39 Slot Id : <400> +03:39:39 Transaction Type : REQUEST +03:39:39 Received From : +03:39:39 ============================================================================ +03:39:39 FNo. Len. Field Value +03:39:39 ============================================================================ +03:39:39 [ 1] [ 4] [0800] +03:39:39 [ 2] [ 5] [02531] +03:39:39 [ 3] [ 6] [579038] +03:39:39 [ 7] [ 10] [0319203939] +03:39:39 [ 11] [ 6] [806624] +03:39:39 [ 15] [ 10] [0319203939] +03:39:39 [ 37] [ 11] [57903806624] +03:39:39 [ 70] [ 3] [001] +03:39:39 ============================================================================ +03:39:39 + + +waiting on router queue for slot.... +03:39:39 ============================================================================ +03:39:39 Slot Id : <400> +03:39:39 Transaction Type : RESPONSE +03:39:39 Received From : +03:39:39 ============================================================================ +03:39:39 FNo. Len. Field Value +03:39:39 ============================================================================ +03:39:39 [ 1] [ 4] [0810] +03:39:39 [ 7] [ 10] [0319203939] +03:39:39 [ 11] [ 6] [806624] +03:39:39 [ 15] [ 4] [0319] +03:39:39 [ 37] [ 12] [57903806624] +03:39:39 [ 39] [ 2] [00] +03:39:39 [ 70] [ 3] [001] +03:39:39 ============================================================================ +03:39:39 Sending to : +03:39:39 ============================================================================ +03:39:39 + + +waiting on router queue for slot.... +03:39:42 ============================================================================ +03:39:42 Slot Id : <414> +03:39:42 Transaction Type : REQUEST +03:39:42 Received From : +03:39:42 ============================================================================ +03:39:42 FNo. Len. Field Value +03:39:42 ============================================================================ +03:39:42 [ 1] [ 4] [0800] +03:39:42 [ 7] [ 10] [0319083849] +03:39:42 [ 11] [ 6] [154082] +03:39:42 [ 70] [ 3] [301] +03:39:42 ============================================================================ +03:39:42 + + +waiting on router queue for slot.... +03:39:42 Sending to : +03:39:42 ============================================================================ +03:39:42 ============================================================================ +03:39:42 Slot Id : <414> +03:39:42 Transaction Type : RESPONSE +03:39:42 Received From : +03:39:42 ============================================================================ +03:39:42 FNo. Len. Field Value +03:39:42 ============================================================================ +03:39:42 [ 1] [ 4] [0810] +03:39:42 [ 7] [ 10] [0319083849] +03:39:42 [ 11] [ 6] [154082] +03:39:42 [ 39] [ 2] [00] +03:39:42 [ 70] [ 3] [301] +03:39:42 ============================================================================ +03:39:42 Calculate Source COMM Id = 2 +03:39:42 ============================================================================ +03:39:42 + + +waiting on router queue for slot.... +03:39:50 ============================================================================ +03:39:50 Slot Id : <399> +03:39:50 Transaction Type : REQUEST +03:39:50 Received From : +03:39:50 ============================================================================ +03:39:50 FNo. Len. Field Value +03:39:50 ============================================================================ +03:39:50 [ 1] [ 4] [0800] +03:39:50 [ 7] [ 10] [0320105138] +03:39:50 [ 11] [ 6] [035138] +03:39:50 [ 37] [ 12] [57903035138] +03:39:50 [ 70] [ 3] [301] +03:39:50 ============================================================================ +03:39:50 + + +waiting on router queue for slot.... +03:39:50 Sending to : +03:39:50 ============================================================================ +03:39:50 ============================================================================ +03:39:50 Slot Id : <399> +03:39:50 Transaction Type : RESPONSE +03:39:50 Received From : +03:39:50 ============================================================================ +03:39:50 FNo. Len. Field Value +03:39:50 ============================================================================ +03:39:50 [ 1] [ 4] [0810] +03:39:50 [ 7] [ 10] [0320105138] +03:39:50 [ 11] [ 6] [035138] +03:39:50 [ 37] [ 12] [579030351380] +03:39:50 [ 39] [ 2] [00] +03:39:50 [ 70] [ 3] [810] +03:39:50 ============================================================================ +03:39:50 Calculate Source COMM Id = 6 +03:39:50 ============================================================================ +03:39:50 + + +waiting on router queue for slot.... +03:39:53 ============================================================================ +03:39:53 Slot Id : <394> +03:39:53 Transaction Type : REQUEST +03:39:53 Received From : +03:39:53 ============================================================================ +03:39:53 FNo. Len. Field Value +03:39:53 ============================================================================ +03:39:53 [ 1] [ 4] [0800] +03:39:53 [ 7] [ 10] [0319083900] +03:39:53 [ 11] [ 6] [154083] +03:39:53 [ 70] [ 3] [301] +03:39:53 ============================================================================ +03:39:53 + + +waiting on router queue for slot.... +03:39:53 Sending to : +03:39:53 ============================================================================ +03:39:53 ============================================================================ +03:39:53 Slot Id : <394> +03:39:53 Transaction Type : RESPONSE +03:39:53 Received From : +03:39:53 ============================================================================ +03:39:53 FNo. Len. Field Value +03:39:53 ============================================================================ +03:39:53 [ 1] [ 4] [0810] +03:39:53 [ 7] [ 10] [0319083900] +03:39:53 [ 11] [ 6] [154083] +03:39:53 [ 39] [ 2] [00] +03:39:53 [ 70] [ 3] [301] +03:39:53 ============================================================================ +03:39:53 Calculate Source COMM Id = 2 +03:39:53 ============================================================================ +03:39:53 + + +waiting on router queue for slot.... +03:39:56 ============================================================================ +03:39:56 Slot Id : <387> +03:39:56 Transaction Type : REQUEST +03:39:56 Received From : +03:39:56 ============================================================================ +03:39:56 FNo. Len. Field Value +03:39:56 ============================================================================ +03:39:56 [ 1] [ 4] [0800] +03:39:56 [ 7] [ 10] [0319204742] +03:39:56 [ 11] [ 6] [042071] +03:39:56 [ 37] [ 12] [57903042071] +03:39:56 [ 70] [ 3] [301] +03:39:56 ============================================================================ +03:39:56 + + +waiting on router queue for slot.... +03:39:56 Sending to : +03:39:56 ============================================================================ +03:39:56 ============================================================================ +03:39:56 Slot Id : <387> +03:39:56 Transaction Type : RESPONSE +03:39:56 Received From : +03:39:56 ============================================================================ +03:39:56 FNo. Len. Field Value +03:39:56 ============================================================================ +03:39:56 [ 1] [ 4] [0810] +03:39:56 [ 7] [ 10] [0319204742] +03:39:56 [ 11] [ 6] [042071] +03:39:56 [ 37] [ 12] [579030420710] +03:39:56 [ 39] [ 2] [00] +03:39:56 [ 70] [ 3] [810] +03:39:56 ============================================================================ +03:39:56 Calculate Source COMM Id = 1 +03:39:56 ============================================================================ +03:39:56 + + +waiting on router queue for slot.... +03:40:04 ============================================================================ +03:40:04 Slot Id : <368> +03:40:04 Transaction Type : REQUEST +03:40:04 Received From : +03:40:04 ============================================================================ +03:40:04 FNo. Len. Field Value +03:40:04 ============================================================================ +03:40:04 [ 1] [ 4] [0800] +03:40:04 [ 7] [ 10] [0319083911] +03:40:04 [ 11] [ 6] [154084] +03:40:04 [ 70] [ 3] [301] +03:40:04 ============================================================================ +03:40:04 + + +waiting on router queue for slot.... +03:40:04 Sending to : +03:40:04 ============================================================================ +03:40:04 ============================================================================ +03:40:04 Slot Id : <368> +03:40:04 Transaction Type : RESPONSE +03:40:04 Received From : +03:40:04 ============================================================================ +03:40:04 FNo. Len. Field Value +03:40:04 ============================================================================ +03:40:04 [ 1] [ 4] [0810] +03:40:04 [ 7] [ 10] [0319083911] +03:40:04 [ 11] [ 6] [154084] +03:40:04 [ 39] [ 2] [00] +03:40:04 [ 70] [ 3] [301] +03:40:04 ============================================================================ +03:40:04 Calculate Source COMM Id = 2 +03:40:04 ============================================================================ +03:40:04 + + +waiting on router queue for slot.... +03:40:18 ============================================================================ +03:40:18 Slot Id : <372> +03:40:18 Transaction Type : REQUEST +03:40:18 Received From : +03:40:18 ============================================================================ +03:40:18 FNo. Len. Field Value +03:40:18 ============================================================================ +03:40:18 [ 1] [ 4] [0800] +03:40:18 [ 7] [ 10] [0319083923] +03:40:18 [ 11] [ 6] [154085] +03:40:18 [ 70] [ 3] [301] +03:40:18 ============================================================================ +03:40:18 + + +waiting on router queue for slot.... +03:40:18 Sending to : +03:40:18 ============================================================================ +03:40:18 ============================================================================ +03:40:18 Slot Id : <372> +03:40:18 Transaction Type : RESPONSE +03:40:18 Received From : +03:40:18 ============================================================================ +03:40:18 FNo. Len. Field Value +03:40:18 ============================================================================ +03:40:18 [ 1] [ 4] [0810] +03:40:18 [ 7] [ 10] [0319083923] +03:40:18 [ 11] [ 6] [154085] +03:40:18 [ 39] [ 2] [00] +03:40:18 [ 70] [ 3] [301] +03:40:18 ============================================================================ +03:40:18 Calculate Source COMM Id = 2 +03:40:18 ============================================================================ +03:40:18 + + +waiting on router queue for slot.... +03:40:32 ============================================================================ +03:40:32 Slot Id : <418> +03:40:32 Transaction Type : REQUEST +03:40:32 Received From : +03:40:32 ============================================================================ +03:40:32 FNo. Len. Field Value +03:40:32 ============================================================================ +03:40:32 [ 1] [ 4] [0800] +03:40:32 [ 7] [ 10] [0319083939] +03:40:32 [ 11] [ 6] [154086] +03:40:32 [ 70] [ 3] [301] +03:40:32 ============================================================================ +03:40:32 + + +waiting on router queue for slot.... +03:40:32 Sending to : +03:40:32 ============================================================================ +03:40:32 ============================================================================ +03:40:32 Slot Id : <418> +03:40:32 Transaction Type : RESPONSE +03:40:32 Received From : +03:40:32 ============================================================================ +03:40:32 FNo. Len. Field Value +03:40:32 ============================================================================ +03:40:32 [ 1] [ 4] [0810] +03:40:32 [ 7] [ 10] [0319083939] +03:40:32 [ 11] [ 6] [154086] +03:40:32 [ 39] [ 2] [00] +03:40:32 [ 70] [ 3] [301] +03:40:32 ============================================================================ +03:40:32 Calculate Source COMM Id = 2 +03:40:32 ============================================================================ +03:40:32 + + +waiting on router queue for slot.... +03:40:41 ============================================================================ +03:40:41 Slot Id : <406> +03:40:41 Transaction Type : REQUEST +03:40:41 Received From : +03:40:41 ============================================================================ +03:40:41 FNo. Len. Field Value +03:40:41 ============================================================================ +03:40:41 [ 1] [ 4] [0800] +03:40:41 [ 2] [ 5] [02531] +03:40:41 [ 3] [ 6] [579038] +03:40:41 [ 7] [ 10] [0319204041] +03:40:41 [ 11] [ 6] [806625] +03:40:41 [ 15] [ 10] [0319204041] +03:40:41 [ 37] [ 11] [57903806625] +03:40:41 [ 70] [ 3] [001] +03:40:41 ============================================================================ +03:40:41 + + +waiting on router queue for slot.... +03:40:41 ============================================================================ +03:40:41 Slot Id : <406> +03:40:41 Transaction Type : RESPONSE +03:40:41 Received From : +03:40:41 ============================================================================ +03:40:41 FNo. Len. Field Value +03:40:41 ============================================================================ +03:40:41 [ 1] [ 4] [0810] +03:40:41 [ 7] [ 10] [0319204041] +03:40:41 [ 11] [ 6] [806625] +03:40:41 [ 15] [ 4] [0319] +03:40:41 [ 37] [ 12] [57903806625] +03:40:41 [ 39] [ 2] [00] +03:40:41 [ 70] [ 3] [001] +03:40:41 ============================================================================ +03:40:41 Sending to : +03:40:41 ============================================================================ +03:40:41 + + +waiting on router queue for slot.... +03:40:43 ============================================================================ +03:40:43 Slot Id : <380> +03:40:43 Transaction Type : REQUEST +03:40:43 Received From : +03:40:43 ============================================================================ +03:40:43 FNo. Len. Field Value +03:40:43 ============================================================================ +03:40:43 [ 1] [ 4] [0800] +03:40:43 [ 7] [ 10] [0319083950] +03:40:43 [ 11] [ 6] [154087] +03:40:43 [ 70] [ 3] [301] +03:40:43 ============================================================================ +03:40:43 + + +waiting on router queue for slot.... +03:40:43 Sending to : +03:40:43 ============================================================================ +03:40:43 ============================================================================ +03:40:43 Slot Id : <380> +03:40:43 Transaction Type : RESPONSE +03:40:43 Received From : +03:40:43 ============================================================================ +03:40:43 FNo. Len. Field Value +03:40:43 ============================================================================ +03:40:43 [ 1] [ 4] [0810] +03:40:43 [ 7] [ 10] [0319083950] +03:40:43 [ 11] [ 6] [154087] +03:40:43 [ 39] [ 2] [00] +03:40:43 [ 70] [ 3] [301] +03:40:43 ============================================================================ +03:40:43 Calculate Source COMM Id = 2 +03:40:43 ============================================================================ +03:40:43 + + +waiting on router queue for slot.... +03:40:53 ============================================================================ +03:40:53 Slot Id : <419> +03:40:53 Transaction Type : REQUEST +03:40:53 Received From : +03:40:53 ============================================================================ +03:40:53 FNo. Len. Field Value +03:40:53 ============================================================================ +03:40:53 [ 1] [ 4] [0800] +03:40:53 [ 7] [ 10] [0319084000] +03:40:53 [ 11] [ 6] [154088] +03:40:53 [ 70] [ 3] [301] +03:40:53 ============================================================================ +03:40:53 + + +waiting on router queue for slot.... +03:40:53 Sending to : +03:40:53 ============================================================================ +03:40:53 ============================================================================ +03:40:53 Slot Id : <419> +03:40:53 Transaction Type : RESPONSE +03:40:53 Received From : +03:40:53 ============================================================================ +03:40:53 FNo. Len. Field Value +03:40:53 ============================================================================ +03:40:53 [ 1] [ 4] [0810] +03:40:53 [ 7] [ 10] [0319084000] +03:40:53 [ 11] [ 6] [154088] +03:40:53 [ 39] [ 2] [00] +03:40:53 [ 70] [ 3] [301] +03:40:53 ============================================================================ +03:40:53 Calculate Source COMM Id = 2 +03:40:53 ============================================================================ +03:40:53 + + +waiting on router queue for slot.... +03:40:55 ============================================================================ +03:40:55 Slot Id : <411> +03:40:55 Transaction Type : REQUEST +03:40:55 Received From : +03:40:55 ============================================================================ +03:40:55 FNo. Len. Field Value +03:40:55 ============================================================================ +03:40:55 [ 1] [ 4] [0800] +03:40:55 [ 7] [ 10] [0320105243] +03:40:55 [ 11] [ 6] [035243] +03:40:55 [ 37] [ 12] [57903035243] +03:40:55 [ 70] [ 3] [301] +03:40:55 ============================================================================ +03:40:55 + + +waiting on router queue for slot.... +03:40:55 Sending to : +03:40:55 ============================================================================ +03:40:55 ============================================================================ +03:40:55 Slot Id : <411> +03:40:55 Transaction Type : RESPONSE +03:40:55 Received From : +03:40:55 ============================================================================ +03:40:55 FNo. Len. Field Value +03:40:55 ============================================================================ +03:40:55 [ 1] [ 4] [0810] +03:40:55 [ 7] [ 10] [0320105243] +03:40:55 [ 11] [ 6] [035243] +03:40:55 [ 37] [ 12] [579030352430] +03:40:55 [ 39] [ 2] [00] +03:40:55 [ 70] [ 3] [810] +03:40:55 ============================================================================ +03:40:55 Calculate Source COMM Id = 6 +03:40:55 ============================================================================ +03:40:55 + + +waiting on router queue for slot.... +03:41:04 ============================================================================ +03:41:04 Slot Id : <407> +03:41:04 Transaction Type : REQUEST +03:41:04 Received From : +03:41:04 ============================================================================ +03:41:04 FNo. Len. Field Value +03:41:04 ============================================================================ +03:41:04 [ 1] [ 4] [0800] +03:41:04 [ 7] [ 10] [0319084011] +03:41:04 [ 11] [ 6] [154089] +03:41:04 [ 70] [ 3] [301] +03:41:04 ============================================================================ +03:41:04 + + +waiting on router queue for slot.... +03:41:04 Sending to : +03:41:04 ============================================================================ +03:41:04 ============================================================================ +03:41:04 Slot Id : <407> +03:41:04 Transaction Type : RESPONSE +03:41:04 Received From : +03:41:04 ============================================================================ +03:41:04 FNo. Len. Field Value +03:41:04 ============================================================================ +03:41:04 [ 1] [ 4] [0810] +03:41:04 [ 7] [ 10] [0319084011] +03:41:04 [ 11] [ 6] [154089] +03:41:04 [ 39] [ 2] [00] +03:41:04 [ 70] [ 3] [301] +03:41:04 ============================================================================ +03:41:04 Calculate Source COMM Id = 2 +03:41:04 ============================================================================ +03:41:04 + + +waiting on router queue for slot.... +03:41:15 ============================================================================ +03:41:15 Slot Id : <384> +03:41:15 Transaction Type : REQUEST +03:41:15 Received From : +03:41:15 ============================================================================ +03:41:15 FNo. Len. Field Value +03:41:15 ============================================================================ +03:41:15 [ 1] [ 4] [0800] +03:41:15 [ 7] [ 10] [0319084022] +03:41:15 [ 11] [ 6] [154090] +03:41:15 [ 70] [ 3] [301] +03:41:15 ============================================================================ +03:41:15 + + +waiting on router queue for slot.... +03:41:15 Sending to : +03:41:15 ============================================================================ +03:41:15 ============================================================================ +03:41:15 Slot Id : <384> +03:41:15 Transaction Type : RESPONSE +03:41:15 Received From : +03:41:15 ============================================================================ +03:41:15 FNo. Len. Field Value +03:41:15 ============================================================================ +03:41:15 [ 1] [ 4] [0810] +03:41:15 [ 7] [ 10] [0319084022] +03:41:15 [ 11] [ 6] [154090] +03:41:15 [ 39] [ 2] [00] +03:41:15 [ 70] [ 3] [301] +03:41:15 ============================================================================ +03:41:15 Calculate Source COMM Id = 2 +03:41:15 ============================================================================ +03:41:15 + + +waiting on router queue for slot.... +03:41:21 ============================================================================ +03:41:21 Slot Id : <401> +03:41:21 Transaction Type : REQUEST +03:41:21 Received From : +03:41:21 ============================================================================ +03:41:21 FNo. Len. Field Value +03:41:21 ============================================================================ +03:41:21 [ 1] [ 4] [0800] +03:41:21 [ 7] [ 10] [0319203912] +03:41:21 [ 11] [ 6] [057448] +03:41:21 [ 37] [ 12] [57903057448] +03:41:21 [ 70] [ 3] [301] +03:41:21 ============================================================================ +03:41:21 + + +waiting on router queue for slot.... +03:41:21 Sending to : +03:41:21 ============================================================================ +03:41:21 ============================================================================ +03:41:21 Slot Id : <401> +03:41:21 Transaction Type : RESPONSE +03:41:21 Received From : +03:41:21 ============================================================================ +03:41:21 FNo. Len. Field Value +03:41:21 ============================================================================ +03:41:21 [ 1] [ 4] [0810] +03:41:21 [ 7] [ 10] [0319203912] +03:41:21 [ 11] [ 6] [057448] +03:41:21 [ 37] [ 12] [579030574480] +03:41:21 [ 39] [ 2] [00] +03:41:21 [ 70] [ 3] [810] +03:41:21 ============================================================================ +03:41:21 Calculate Source COMM Id = 4 +03:41:21 ============================================================================ +03:41:21 + + +waiting on router queue for slot.... +03:41:26 ============================================================================ +03:41:26 Slot Id : <420> +03:41:26 Transaction Type : REQUEST +03:41:26 Received From : +03:41:26 ============================================================================ +03:41:26 FNo. Len. Field Value +03:41:26 ============================================================================ +03:41:26 [ 1] [ 4] [0800] +03:41:26 [ 7] [ 10] [0319084033] +03:41:26 [ 11] [ 6] [154091] +03:41:26 [ 70] [ 3] [301] +03:41:26 ============================================================================ +03:41:26 + + +waiting on router queue for slot.... +03:41:26 Sending to : +03:41:26 ============================================================================ +03:41:26 ============================================================================ +03:41:26 Slot Id : <420> +03:41:26 Transaction Type : RESPONSE +03:41:26 Received From : +03:41:26 ============================================================================ +03:41:26 FNo. Len. Field Value +03:41:26 ============================================================================ +03:41:26 [ 1] [ 4] [0810] +03:41:26 [ 7] [ 10] [0319084033] +03:41:26 [ 11] [ 6] [154091] +03:41:26 [ 39] [ 2] [00] +03:41:26 [ 70] [ 3] [301] +03:41:26 ============================================================================ +03:41:26 Calculate Source COMM Id = 2 +03:41:26 ============================================================================ +03:41:26 + + +waiting on router queue for slot.... +03:41:37 ============================================================================ +03:41:37 Slot Id : <416> +03:41:37 Transaction Type : REQUEST +03:41:37 Received From : +03:41:37 ============================================================================ +03:41:37 FNo. Len. Field Value +03:41:37 ============================================================================ +03:41:37 [ 1] [ 4] [0800] +03:41:37 [ 7] [ 10] [0319084043] +03:41:37 [ 11] [ 6] [154092] +03:41:37 [ 70] [ 3] [301] +03:41:37 ============================================================================ +03:41:37 + + +waiting on router queue for slot.... +03:41:37 Sending to : +03:41:37 ============================================================================ +03:41:37 ============================================================================ +03:41:37 Slot Id : <416> +03:41:37 Transaction Type : RESPONSE +03:41:37 Received From : +03:41:37 ============================================================================ +03:41:37 FNo. Len. Field Value +03:41:37 ============================================================================ +03:41:37 [ 1] [ 4] [0810] +03:41:37 [ 7] [ 10] [0319084043] +03:41:37 [ 11] [ 6] [154092] +03:41:37 [ 39] [ 2] [00] +03:41:37 [ 70] [ 3] [301] +03:41:37 ============================================================================ +03:41:37 Calculate Source COMM Id = 2 +03:41:37 ============================================================================ +03:41:37 + + +waiting on router queue for slot.... +03:41:43 ============================================================================ +03:41:43 Slot Id : <415> +03:41:43 Transaction Type : REQUEST +03:41:43 Received From : +03:41:43 ============================================================================ +03:41:43 FNo. Len. Field Value +03:41:43 ============================================================================ +03:41:43 [ 1] [ 4] [0800] +03:41:43 [ 2] [ 5] [02531] +03:41:43 [ 3] [ 6] [579038] +03:41:43 [ 7] [ 10] [0319204143] +03:41:43 [ 11] [ 6] [806626] +03:41:43 [ 15] [ 10] [0319204143] +03:41:43 [ 37] [ 11] [57903806626] +03:41:43 [ 70] [ 3] [001] +03:41:43 ============================================================================ +03:41:43 + + +waiting on router queue for slot.... +03:41:43 ============================================================================ +03:41:43 Slot Id : <415> +03:41:43 Transaction Type : RESPONSE +03:41:43 Received From : +03:41:43 ============================================================================ +03:41:43 FNo. Len. Field Value +03:41:43 ============================================================================ +03:41:43 [ 1] [ 4] [0810] +03:41:43 [ 7] [ 10] [0319204143] +03:41:43 [ 11] [ 6] [806626] +03:41:43 [ 15] [ 4] [0319] +03:41:43 [ 37] [ 12] [57903806626] +03:41:43 [ 39] [ 2] [00] +03:41:43 [ 70] [ 3] [001] +03:41:43 ============================================================================ +03:41:43 Sending to : +03:41:43 ============================================================================ +03:41:43 + + +waiting on router queue for slot.... +03:41:47 ============================================================================ +03:41:47 Slot Id : <381> +03:41:47 Transaction Type : REQUEST +03:41:47 Received From : +03:41:47 ============================================================================ +03:41:47 FNo. Len. Field Value +03:41:47 ============================================================================ +03:41:47 [ 1] [ 4] [0800] +03:41:47 [ 7] [ 10] [0319084054] +03:41:47 [ 11] [ 6] [154093] +03:41:47 [ 70] [ 3] [301] +03:41:47 ============================================================================ +03:41:47 + + +waiting on router queue for slot.... +03:41:47 Sending to : +03:41:47 ============================================================================ +03:41:47 ============================================================================ +03:41:47 Slot Id : <381> +03:41:47 Transaction Type : RESPONSE +03:41:47 Received From : +03:41:47 ============================================================================ +03:41:47 FNo. Len. Field Value +03:41:47 ============================================================================ +03:41:47 [ 1] [ 4] [0810] +03:41:47 [ 7] [ 10] [0319084054] +03:41:47 [ 11] [ 6] [154093] +03:41:47 [ 39] [ 2] [00] +03:41:47 [ 70] [ 3] [301] +03:41:47 ============================================================================ +03:41:47 Calculate Source COMM Id = 2 +03:41:47 ============================================================================ +03:41:47 + + +waiting on router queue for slot.... +03:42:01 ============================================================================ +03:42:01 Slot Id : <425> +03:42:01 Transaction Type : REQUEST +03:42:01 Received From : +03:42:01 ============================================================================ +03:42:01 FNo. Len. Field Value +03:42:01 ============================================================================ +03:42:01 [ 1] [ 4] [0800] +03:42:01 [ 7] [ 10] [0320105348] +03:42:01 [ 11] [ 6] [035348] +03:42:01 [ 37] [ 12] [57903035348] +03:42:01 [ 70] [ 3] [301] +03:42:01 ============================================================================ +03:42:01 + + +waiting on router queue for slot.... +03:42:01 Sending to : +03:42:01 ============================================================================ +03:42:01 ============================================================================ +03:42:01 Slot Id : <425> +03:42:01 Transaction Type : RESPONSE +03:42:01 Received From : +03:42:01 ============================================================================ +03:42:01 FNo. Len. Field Value +03:42:01 ============================================================================ +03:42:01 [ 1] [ 4] [0810] +03:42:01 [ 7] [ 10] [0320105348] +03:42:01 [ 11] [ 6] [035348] +03:42:01 [ 37] [ 12] [579030353480] +03:42:01 [ 39] [ 2] [00] +03:42:01 [ 70] [ 3] [810] +03:42:01 ============================================================================ +03:42:01 Calculate Source COMM Id = 6 +03:42:01 ============================================================================ +03:42:01 + + +waiting on router queue for slot.... +03:42:03 ============================================================================ +03:42:03 Slot Id : <388> +03:42:03 Transaction Type : REQUEST +03:42:03 Received From : +03:42:03 ============================================================================ +03:42:03 FNo. Len. Field Value +03:42:03 ============================================================================ +03:42:03 [ 1] [ 4] [0800] +03:42:03 [ 7] [ 10] [0319084110] +03:42:03 [ 11] [ 6] [154094] +03:42:03 [ 70] [ 3] [301] +03:42:03 ============================================================================ +03:42:03 + + +waiting on router queue for slot.... +03:42:03 Sending to : +03:42:03 ============================================================================ +03:42:03 ============================================================================ +03:42:03 Slot Id : <388> +03:42:03 Transaction Type : RESPONSE +03:42:03 Received From : +03:42:03 ============================================================================ +03:42:03 FNo. Len. Field Value +03:42:03 ============================================================================ +03:42:03 [ 1] [ 4] [0810] +03:42:03 [ 7] [ 10] [0319084110] +03:42:03 [ 11] [ 6] [154094] +03:42:03 [ 39] [ 2] [00] +03:42:03 [ 70] [ 3] [301] +03:42:03 ============================================================================ +03:42:03 Calculate Source COMM Id = 2 +03:42:03 ============================================================================ +03:42:03 + + +waiting on router queue for slot.... +03:42:14 ============================================================================ +03:42:14 Slot Id : <398> +03:42:14 Transaction Type : REQUEST +03:42:14 Received From : +03:42:14 ============================================================================ +03:42:14 FNo. Len. Field Value +03:42:14 ============================================================================ +03:42:14 [ 1] [ 4] [0800] +03:42:14 [ 7] [ 10] [0319084121] +03:42:14 [ 11] [ 6] [154095] +03:42:14 [ 70] [ 3] [301] +03:42:14 ============================================================================ +03:42:14 + + +waiting on router queue for slot.... +03:42:14 Sending to : +03:42:14 ============================================================================ +03:42:14 ============================================================================ +03:42:14 Slot Id : <398> +03:42:14 Transaction Type : RESPONSE +03:42:14 Received From : +03:42:14 ============================================================================ +03:42:14 FNo. Len. Field Value +03:42:14 ============================================================================ +03:42:14 [ 1] [ 4] [0810] +03:42:14 [ 7] [ 10] [0319084121] +03:42:14 [ 11] [ 6] [154095] +03:42:14 [ 39] [ 2] [00] +03:42:14 [ 70] [ 3] [301] +03:42:14 ============================================================================ +03:42:14 Calculate Source COMM Id = 2 +03:42:14 ============================================================================ +03:42:14 + + +waiting on router queue for slot.... +03:42:25 ============================================================================ +03:42:25 Slot Id : <433> +03:42:25 Transaction Type : REQUEST +03:42:25 Received From : +03:42:25 ============================================================================ +03:42:25 FNo. Len. Field Value +03:42:25 ============================================================================ +03:42:25 [ 1] [ 4] [0800] +03:42:25 [ 7] [ 10] [0319084132] +03:42:25 [ 11] [ 6] [154096] +03:42:25 [ 70] [ 3] [301] +03:42:25 ============================================================================ +03:42:25 + + +waiting on router queue for slot.... +03:42:25 Sending to : +03:42:25 ============================================================================ +03:42:25 ============================================================================ +03:42:25 Slot Id : <433> +03:42:25 Transaction Type : RESPONSE +03:42:25 Received From : +03:42:25 ============================================================================ +03:42:25 FNo. Len. Field Value +03:42:25 ============================================================================ +03:42:25 [ 1] [ 4] [0810] +03:42:25 [ 7] [ 10] [0319084132] +03:42:25 [ 11] [ 6] [154096] +03:42:25 [ 39] [ 2] [00] +03:42:25 [ 70] [ 3] [301] +03:42:25 ============================================================================ +03:42:25 Calculate Source COMM Id = 2 +03:42:25 ============================================================================ +03:42:25 + + +waiting on router queue for slot.... +03:42:34 ============================================================================ +03:42:34 Slot Id : <364> +03:42:34 Transaction Type : REQUEST +03:42:34 Received From : +03:42:34 ============================================================================ +03:42:34 FNo. Len. Field Value +03:42:34 ============================================================================ +03:42:34 [ 1] [ 4] [0800] +03:42:34 [ 7] [ 10] [0320034220] +03:42:34 [ 11] [ 6] [011654] +03:42:34 [ 37] [ 12] [507903011654] +03:42:34 [ 70] [ 3] [ ] +03:42:34 ============================================================================ +03:42:34 + + +waiting on router queue for slot.... +03:42:34 Sending to : +03:42:34 ============================================================================ +03:42:34 ============================================================================ +03:42:34 Slot Id : <364> +03:42:34 Transaction Type : RESPONSE +03:42:34 Received From : +03:42:34 ============================================================================ +03:42:34 FNo. Len. Field Value +03:42:34 ============================================================================ +03:42:34 [ 1] [ 4] [0810] +03:42:34 [ 7] [ 10] [0320034220] +03:42:34 [ 11] [ 6] [011654] +03:42:34 [ 37] [ 12] [507903011654] +03:42:34 [ 39] [ 2] [91] +03:42:34 [ 70] [ 3] [ ] +03:42:34 ============================================================================ +03:42:34 Calculate Source COMM Id = 3 +03:42:34 ============================================================================ +03:42:34 + + +waiting on router queue for slot.... +03:42:40 ============================================================================ +03:42:40 Slot Id : <367> +03:42:40 Transaction Type : REQUEST +03:42:40 Received From : +03:42:40 ============================================================================ +03:42:40 FNo. Len. Field Value +03:42:40 ============================================================================ +03:42:40 [ 1] [ 4] [0800] +03:42:40 [ 7] [ 10] [0319084147] +03:42:40 [ 11] [ 6] [154097] +03:42:40 [ 70] [ 3] [301] +03:42:40 ============================================================================ +03:42:40 + + +waiting on router queue for slot.... +03:42:40 Sending to : +03:42:40 ============================================================================ +03:42:40 ============================================================================ +03:42:40 Slot Id : <367> +03:42:40 Transaction Type : RESPONSE +03:42:40 Received From : +03:42:40 ============================================================================ +03:42:40 FNo. Len. Field Value +03:42:40 ============================================================================ +03:42:40 [ 1] [ 4] [0810] +03:42:40 [ 7] [ 10] [0319084147] +03:42:40 [ 11] [ 6] [154097] +03:42:40 [ 39] [ 2] [00] +03:42:40 [ 70] [ 3] [301] +03:42:40 ============================================================================ +03:42:40 Calculate Source COMM Id = 2 +03:42:40 ============================================================================ +03:42:40 + + +waiting on router queue for slot.... +03:42:45 ============================================================================ +03:42:45 Slot Id : <430> +03:42:45 Transaction Type : REQUEST +03:42:45 Received From : +03:42:45 ============================================================================ +03:42:45 FNo. Len. Field Value +03:42:45 ============================================================================ +03:42:45 [ 1] [ 4] [0800] +03:42:45 [ 2] [ 5] [02531] +03:42:45 [ 3] [ 6] [579038] +03:42:45 [ 7] [ 10] [0319204245] +03:42:45 [ 11] [ 6] [806627] +03:42:45 [ 15] [ 10] [0319204245] +03:42:45 [ 37] [ 11] [57903806627] +03:42:45 [ 70] [ 3] [001] +03:42:45 ============================================================================ +03:42:45 + + +waiting on router queue for slot.... +03:42:45 ============================================================================ +03:42:45 Slot Id : <430> +03:42:45 Transaction Type : RESPONSE +03:42:45 Received From : +03:42:45 ============================================================================ +03:42:45 FNo. Len. Field Value +03:42:45 ============================================================================ +03:42:45 [ 1] [ 4] [0810] +03:42:45 [ 7] [ 10] [0319204245] +03:42:45 [ 11] [ 6] [806627] +03:42:45 [ 15] [ 4] [0319] +03:42:45 [ 37] [ 12] [57903806627] +03:42:45 [ 39] [ 2] [00] +03:42:45 [ 70] [ 3] [001] +03:42:45 ============================================================================ +03:42:45 Sending to : +03:42:45 ============================================================================ +03:42:45 + + +waiting on router queue for slot.... +03:42:51 ============================================================================ +03:42:51 Slot Id : <441> +03:42:51 Transaction Type : REQUEST +03:42:51 Received From : +03:42:51 ============================================================================ +03:42:51 FNo. Len. Field Value +03:42:51 ============================================================================ +03:42:51 [ 1] [ 4] [0800] +03:42:51 [ 7] [ 10] [0319084158] +03:42:51 [ 11] [ 6] [154098] +03:42:51 [ 70] [ 3] [301] +03:42:51 ============================================================================ +03:42:51 + + +waiting on router queue for slot.... +03:42:51 Sending to : +03:42:51 ============================================================================ +03:42:51 ============================================================================ +03:42:51 Slot Id : <441> +03:42:51 Transaction Type : RESPONSE +03:42:51 Received From : +03:42:51 ============================================================================ +03:42:51 FNo. Len. Field Value +03:42:51 ============================================================================ +03:42:51 [ 1] [ 4] [0810] +03:42:51 [ 7] [ 10] [0319084158] +03:42:51 [ 11] [ 6] [154098] +03:42:51 [ 39] [ 2] [00] +03:42:51 [ 70] [ 3] [301] +03:42:51 ============================================================================ +03:42:51 Calculate Source COMM Id = 2 +03:42:51 ============================================================================ +03:42:51 + + +waiting on router queue for slot.... +03:43:02 ============================================================================ +03:43:02 Slot Id : <375> +03:43:02 Transaction Type : REQUEST +03:43:02 Received From : +03:43:02 ============================================================================ +03:43:02 FNo. Len. Field Value +03:43:02 ============================================================================ +03:43:02 [ 1] [ 4] [0800] +03:43:02 [ 7] [ 10] [0319084209] +03:43:02 [ 11] [ 6] [154099] +03:43:02 [ 70] [ 3] [301] +03:43:02 ============================================================================ +03:43:02 + + +waiting on router queue for slot.... +03:43:02 Sending to : +03:43:02 ============================================================================ +03:43:02 ============================================================================ +03:43:02 Slot Id : <375> +03:43:02 Transaction Type : RESPONSE +03:43:02 Received From : +03:43:02 ============================================================================ +03:43:02 FNo. Len. Field Value +03:43:02 ============================================================================ +03:43:02 [ 1] [ 4] [0810] +03:43:02 [ 7] [ 10] [0319084209] +03:43:02 [ 11] [ 6] [154099] +03:43:02 [ 39] [ 2] [00] +03:43:02 [ 70] [ 3] [301] +03:43:02 ============================================================================ +03:43:02 Calculate Source COMM Id = 2 +03:43:02 ============================================================================ +03:43:02 + + +waiting on router queue for slot.... +03:43:06 ============================================================================ +03:43:06 Slot Id : <402> +03:43:06 Transaction Type : REQUEST +03:43:06 Received From : +03:43:06 ============================================================================ +03:43:06 FNo. Len. Field Value +03:43:06 ============================================================================ +03:43:06 [ 1] [ 4] [0800] +03:43:06 [ 7] [ 10] [0320105454] +03:43:06 [ 11] [ 6] [035454] +03:43:06 [ 37] [ 12] [57903035454] +03:43:06 [ 70] [ 3] [301] +03:43:06 ============================================================================ +03:43:06 + + +waiting on router queue for slot.... +03:43:06 Sending to : +03:43:06 ============================================================================ +03:43:06 ============================================================================ +03:43:06 Slot Id : <402> +03:43:06 Transaction Type : RESPONSE +03:43:06 Received From : +03:43:06 ============================================================================ +03:43:06 FNo. Len. Field Value +03:43:06 ============================================================================ +03:43:06 [ 1] [ 4] [0810] +03:43:06 [ 7] [ 10] [0320105454] +03:43:06 [ 11] [ 6] [035454] +03:43:06 [ 37] [ 12] [579030354540] +03:43:06 [ 39] [ 2] [00] +03:43:06 [ 70] [ 3] [810] +03:43:06 ============================================================================ +03:43:06 Calculate Source COMM Id = 6 +03:43:06 ============================================================================ +03:43:06 + + +waiting on router queue for slot.... +03:43:07 ============================================================================ +03:43:07 Slot Id : <408> +03:43:07 Transaction Type : REQUEST +03:43:07 Received From : +03:43:07 ============================================================================ +03:43:07 FNo. Len. Field Value +03:43:07 ============================================================================ +03:43:07 [ 1] [ 4] [0800] +03:43:07 [ 7] [ 10] [0319204302] +03:43:07 [ 11] [ 6] [026271] +03:43:07 [ 37] [ 12] [507903026271] +03:43:07 [ 70] [ 3] [001] +03:43:07 ============================================================================ +03:43:07 + + +waiting on router queue for slot.... +03:43:07 Sending to : +03:43:07 ============================================================================ +03:43:07 ============================================================================ +03:43:07 Slot Id : <408> +03:43:07 Transaction Type : RESPONSE +03:43:07 Received From : +03:43:07 ============================================================================ +03:43:07 FNo. Len. Field Value +03:43:07 ============================================================================ +03:43:07 [ 1] [ 4] [0810] +03:43:07 [ 7] [ 10] [0319204302] +03:43:07 [ 11] [ 6] [026271] +03:43:07 [ 37] [ 12] [507903026271] +03:43:07 [ 39] [ 2] [00] +03:43:07 [ 70] [ 3] [001] +03:43:07 ============================================================================ +03:43:07 Calculate Source COMM Id = 0 +03:43:07 ============================================================================ +03:43:07 + + +waiting on router queue for slot.... +03:43:13 ============================================================================ +03:43:13 Slot Id : <437> +03:43:13 Transaction Type : REQUEST +03:43:13 Received From : +03:43:13 ============================================================================ +03:43:13 FNo. Len. Field Value +03:43:13 ============================================================================ +03:43:13 [ 1] [ 4] [0800] +03:43:13 [ 7] [ 10] [0319084220] +03:43:13 [ 11] [ 6] [154100] +03:43:13 [ 70] [ 3] [301] +03:43:13 ============================================================================ +03:43:13 + + +waiting on router queue for slot.... +03:43:13 Sending to : +03:43:13 ============================================================================ +03:43:13 ============================================================================ +03:43:13 Slot Id : <437> +03:43:13 Transaction Type : RESPONSE +03:43:13 Received From : +03:43:13 ============================================================================ +03:43:13 FNo. Len. Field Value +03:43:13 ============================================================================ +03:43:13 [ 1] [ 4] [0810] +03:43:13 [ 7] [ 10] [0319084220] +03:43:13 [ 11] [ 6] [154100] +03:43:13 [ 39] [ 2] [00] +03:43:13 [ 70] [ 3] [301] +03:43:13 ============================================================================ +03:43:13 Calculate Source COMM Id = 2 +03:43:13 ============================================================================ +03:43:13 + + +waiting on router queue for slot.... +03:43:25 ============================================================================ +03:43:25 Slot Id : <409> +03:43:25 Transaction Type : REQUEST +03:43:25 Received From : +03:43:25 ============================================================================ +03:43:25 FNo. Len. Field Value +03:43:25 ============================================================================ +03:43:25 [ 1] [ 4] [0800] +03:43:25 [ 7] [ 10] [0319084232] +03:43:25 [ 11] [ 6] [154101] +03:43:25 [ 70] [ 3] [301] +03:43:25 ============================================================================ +03:43:25 + + +waiting on router queue for slot.... +03:43:25 Sending to : +03:43:25 ============================================================================ +03:43:25 ============================================================================ +03:43:25 Slot Id : <409> +03:43:25 Transaction Type : RESPONSE +03:43:25 Received From : +03:43:25 ============================================================================ +03:43:25 FNo. Len. Field Value +03:43:25 ============================================================================ +03:43:25 [ 1] [ 4] [0810] +03:43:25 [ 7] [ 10] [0319084232] +03:43:25 [ 11] [ 6] [154101] +03:43:25 [ 39] [ 2] [00] +03:43:25 [ 70] [ 3] [301] +03:43:25 ============================================================================ +03:43:25 Calculate Source COMM Id = 2 +03:43:25 ============================================================================ +03:43:25 + + +waiting on router queue for slot.... +03:43:37 ============================================================================ +03:43:37 Slot Id : <385> +03:43:37 Transaction Type : REQUEST +03:43:37 Received From : +03:43:37 ============================================================================ +03:43:37 FNo. Len. Field Value +03:43:37 ============================================================================ +03:43:37 [ 1] [ 4] [0800] +03:43:37 [ 7] [ 10] [0319084244] +03:43:37 [ 11] [ 6] [154102] +03:43:37 [ 70] [ 3] [301] +03:43:37 ============================================================================ +03:43:37 + + +waiting on router queue for slot.... +03:43:37 Sending to : +03:43:37 ============================================================================ +03:43:37 ============================================================================ +03:43:37 Slot Id : <385> +03:43:37 Transaction Type : RESPONSE +03:43:37 Received From : +03:43:37 ============================================================================ +03:43:37 FNo. Len. Field Value +03:43:37 ============================================================================ +03:43:37 [ 1] [ 4] [0810] +03:43:37 [ 7] [ 10] [0319084244] +03:43:37 [ 11] [ 6] [154102] +03:43:37 [ 39] [ 2] [00] +03:43:37 [ 70] [ 3] [301] +03:43:37 ============================================================================ +03:43:37 Calculate Source COMM Id = 2 +03:43:37 ============================================================================ +03:43:37 + + +waiting on router queue for slot.... +03:43:47 ============================================================================ +03:43:47 Slot Id : <403> +03:43:47 Transaction Type : REQUEST +03:43:47 Received From : +03:43:47 ============================================================================ +03:43:47 FNo. Len. Field Value +03:43:47 ============================================================================ +03:43:47 [ 1] [ 4] [0800] +03:43:47 [ 2] [ 5] [02531] +03:43:47 [ 3] [ 6] [579038] +03:43:47 [ 7] [ 10] [0319204347] +03:43:47 [ 11] [ 6] [806628] +03:43:47 [ 15] [ 10] [0319204347] +03:43:47 [ 37] [ 11] [57903806628] +03:43:47 [ 70] [ 3] [001] +03:43:47 ============================================================================ +03:43:47 + + +waiting on router queue for slot.... +03:43:47 ============================================================================ +03:43:47 Slot Id : <403> +03:43:47 Transaction Type : RESPONSE +03:43:47 Received From : +03:43:47 ============================================================================ +03:43:47 FNo. Len. Field Value +03:43:47 ============================================================================ +03:43:47 [ 1] [ 4] [0810] +03:43:47 [ 7] [ 10] [0319204347] +03:43:47 [ 11] [ 6] [806628] +03:43:47 [ 15] [ 4] [0319] +03:43:47 [ 37] [ 12] [57903806628] +03:43:47 [ 39] [ 2] [00] +03:43:47 [ 70] [ 3] [001] +03:43:47 ============================================================================ +03:43:47 Sending to : +03:43:47 ============================================================================ +03:43:47 + + +waiting on router queue for slot.... +03:43:48 ============================================================================ +03:43:48 Slot Id : <362> +03:43:48 Transaction Type : REQUEST +03:43:48 Received From : +03:43:48 ============================================================================ +03:43:48 FNo. Len. Field Value +03:43:48 ============================================================================ +03:43:48 [ 1] [ 4] [0800] +03:43:48 [ 7] [ 10] [0319084254] +03:43:48 [ 11] [ 6] [154103] +03:43:48 [ 70] [ 3] [301] +03:43:48 ============================================================================ +03:43:48 + + +waiting on router queue for slot.... +03:43:48 Sending to : +03:43:48 ============================================================================ +03:43:48 ============================================================================ +03:43:48 Slot Id : <362> +03:43:48 Transaction Type : RESPONSE +03:43:48 Received From : +03:43:48 ============================================================================ +03:43:48 FNo. Len. Field Value +03:43:48 ============================================================================ +03:43:48 [ 1] [ 4] [0810] +03:43:48 [ 7] [ 10] [0319084254] +03:43:48 [ 11] [ 6] [154103] +03:43:48 [ 39] [ 2] [00] +03:43:48 [ 70] [ 3] [301] +03:43:48 ============================================================================ +03:43:48 Calculate Source COMM Id = 2 +03:43:48 ============================================================================ +03:43:48 + + +waiting on router queue for slot.... +03:44:04 ============================================================================ +03:44:04 Slot Id : <392> +03:44:04 Transaction Type : REQUEST +03:44:04 Received From : +03:44:04 ============================================================================ +03:44:04 FNo. Len. Field Value +03:44:04 ============================================================================ +03:44:04 [ 1] [ 4] [0800] +03:44:04 [ 7] [ 10] [0319084311] +03:44:04 [ 11] [ 6] [154104] +03:44:04 [ 70] [ 3] [301] +03:44:04 ============================================================================ +03:44:04 + + +waiting on router queue for slot.... +03:44:04 Sending to : +03:44:04 ============================================================================ +03:44:04 ============================================================================ +03:44:04 Slot Id : <392> +03:44:04 Transaction Type : RESPONSE +03:44:04 Received From : +03:44:04 ============================================================================ +03:44:04 FNo. Len. Field Value +03:44:04 ============================================================================ +03:44:04 [ 1] [ 4] [0810] +03:44:04 [ 7] [ 10] [0319084311] +03:44:04 [ 11] [ 6] [154104] +03:44:04 [ 39] [ 2] [00] +03:44:04 [ 70] [ 3] [301] +03:44:04 ============================================================================ +03:44:04 Calculate Source COMM Id = 2 +03:44:04 ============================================================================ +03:44:04 + + +waiting on router queue for slot.... +03:44:11 ============================================================================ +03:44:11 Slot Id : <412> +03:44:11 Transaction Type : REQUEST +03:44:11 Received From : +03:44:11 ============================================================================ +03:44:11 FNo. Len. Field Value +03:44:11 ============================================================================ +03:44:11 [ 1] [ 4] [0800] +03:44:11 [ 7] [ 10] [0320105559] +03:44:11 [ 11] [ 6] [035559] +03:44:11 [ 37] [ 12] [57903035559] +03:44:11 [ 70] [ 3] [301] +03:44:11 ============================================================================ +03:44:11 + + +waiting on router queue for slot.... +03:44:11 Sending to : +03:44:11 ============================================================================ +03:44:11 ============================================================================ +03:44:11 Slot Id : <412> +03:44:11 Transaction Type : RESPONSE +03:44:11 Received From : +03:44:11 ============================================================================ +03:44:11 FNo. Len. Field Value +03:44:11 ============================================================================ +03:44:11 [ 1] [ 4] [0810] +03:44:11 [ 7] [ 10] [0320105559] +03:44:11 [ 11] [ 6] [035559] +03:44:11 [ 37] [ 12] [579030355590] +03:44:11 [ 39] [ 2] [00] +03:44:11 [ 70] [ 3] [810] +03:44:11 ============================================================================ +03:44:11 Calculate Source COMM Id = 6 +03:44:11 ============================================================================ +03:44:11 + + +waiting on router queue for slot.... +03:44:15 ============================================================================ +03:44:15 Slot Id : <447> +03:44:15 Transaction Type : REQUEST +03:44:15 Received From : +03:44:15 ============================================================================ +03:44:15 FNo. Len. Field Value +03:44:15 ============================================================================ +03:44:15 [ 1] [ 4] [0800] +03:44:15 [ 7] [ 10] [0319084322] +03:44:15 [ 11] [ 6] [154105] +03:44:15 [ 70] [ 3] [301] +03:44:15 ============================================================================ +03:44:15 + + +waiting on router queue for slot.... +03:44:15 Sending to : +03:44:15 ============================================================================ +03:44:15 ============================================================================ +03:44:15 Slot Id : <447> +03:44:15 Transaction Type : RESPONSE +03:44:15 Received From : +03:44:15 ============================================================================ +03:44:15 FNo. Len. Field Value +03:44:15 ============================================================================ +03:44:15 [ 1] [ 4] [0810] +03:44:15 [ 7] [ 10] [0319084322] +03:44:15 [ 11] [ 6] [154105] +03:44:15 [ 39] [ 2] [00] +03:44:15 [ 70] [ 3] [301] +03:44:15 ============================================================================ +03:44:15 Calculate Source COMM Id = 2 +03:44:15 ============================================================================ +03:44:15 + + +waiting on router queue for slot.... +03:44:25 ============================================================================ +03:44:25 Slot Id : <450> +03:44:25 Transaction Type : REQUEST +03:44:25 Received From : +03:44:25 ============================================================================ +03:44:25 FNo. Len. Field Value +03:44:25 ============================================================================ +03:44:25 [ 1] [ 4] [0800] +03:44:25 [ 7] [ 10] [0319084332] +03:44:25 [ 11] [ 6] [154106] +03:44:25 [ 70] [ 3] [301] +03:44:25 ============================================================================ +03:44:25 + + +waiting on router queue for slot.... +03:44:25 Sending to : +03:44:25 ============================================================================ +03:44:25 ============================================================================ +03:44:25 Slot Id : <450> +03:44:25 Transaction Type : RESPONSE +03:44:25 Received From : +03:44:25 ============================================================================ +03:44:25 FNo. Len. Field Value +03:44:25 ============================================================================ +03:44:25 [ 1] [ 4] [0810] +03:44:25 [ 7] [ 10] [0319084332] +03:44:25 [ 11] [ 6] [154106] +03:44:25 [ 39] [ 2] [00] +03:44:25 [ 70] [ 3] [301] +03:44:25 ============================================================================ +03:44:25 Calculate Source COMM Id = 2 +03:44:25 ============================================================================ +03:44:25 + + +waiting on router queue for slot.... +03:44:40 ============================================================================ +03:44:40 Slot Id : <386> +03:44:40 Transaction Type : REQUEST +03:44:40 Received From : +03:44:40 ============================================================================ +03:44:40 FNo. Len. Field Value +03:44:40 ============================================================================ +03:44:40 [ 1] [ 4] [0800] +03:44:40 [ 7] [ 10] [0319084347] +03:44:40 [ 11] [ 6] [154107] +03:44:40 [ 70] [ 3] [301] +03:44:40 ============================================================================ +03:44:40 + + +waiting on router queue for slot.... +03:44:40 Sending to : +03:44:40 ============================================================================ +03:44:40 ============================================================================ +03:44:40 Slot Id : <386> +03:44:40 Transaction Type : RESPONSE +03:44:40 Received From : +03:44:40 ============================================================================ +03:44:40 FNo. Len. Field Value +03:44:40 ============================================================================ +03:44:40 [ 1] [ 4] [0810] +03:44:40 [ 7] [ 10] [0319084347] +03:44:40 [ 11] [ 6] [154107] +03:44:40 [ 39] [ 2] [00] +03:44:40 [ 70] [ 3] [301] +03:44:40 ============================================================================ +03:44:40 Calculate Source COMM Id = 2 +03:44:40 ============================================================================ +03:44:40 + + +waiting on router queue for slot.... +03:44:49 ============================================================================ +03:44:49 Slot Id : <417> +03:44:49 Transaction Type : REQUEST +03:44:49 Received From : +03:44:49 ============================================================================ +03:44:49 FNo. Len. Field Value +03:44:49 ============================================================================ +03:44:49 [ 1] [ 4] [0800] +03:44:49 [ 2] [ 5] [02531] +03:44:49 [ 3] [ 6] [579038] +03:44:49 [ 7] [ 10] [0319204449] +03:44:49 [ 11] [ 6] [806629] +03:44:49 [ 15] [ 10] [0319204449] +03:44:49 [ 37] [ 11] [57903806629] +03:44:49 [ 70] [ 3] [001] +03:44:49 ============================================================================ +03:44:49 + + +waiting on router queue for slot.... +03:44:49 ============================================================================ +03:44:49 Slot Id : <417> +03:44:49 Transaction Type : RESPONSE +03:44:49 Received From : +03:44:49 ============================================================================ +03:44:49 FNo. Len. Field Value +03:44:49 ============================================================================ +03:44:49 [ 1] [ 4] [0810] +03:44:49 [ 7] [ 10] [0319204449] +03:44:49 [ 11] [ 6] [806629] +03:44:49 [ 15] [ 4] [0319] +03:44:49 [ 37] [ 12] [57903806629] +03:44:49 [ 39] [ 2] [00] +03:44:49 [ 70] [ 3] [001] +03:44:49 ============================================================================ +03:44:49 Sending to : +03:44:49 ============================================================================ +03:44:49 + + +waiting on router queue for slot.... +03:44:55 ============================================================================ +03:44:55 Slot Id : <391> +03:44:55 Transaction Type : REQUEST +03:44:55 Received From : +03:44:55 ============================================================================ +03:44:55 FNo. Len. Field Value +03:44:55 ============================================================================ +03:44:55 [ 1] [ 4] [0800] +03:44:55 [ 7] [ 10] [0319084402] +03:44:55 [ 11] [ 6] [154108] +03:44:55 [ 70] [ 3] [301] +03:44:55 ============================================================================ +03:44:55 + + +waiting on router queue for slot.... +03:44:55 Sending to : +03:44:55 ============================================================================ +03:44:55 ============================================================================ +03:44:55 Slot Id : <391> +03:44:55 Transaction Type : RESPONSE +03:44:55 Received From : +03:44:55 ============================================================================ +03:44:55 FNo. Len. Field Value +03:44:55 ============================================================================ +03:44:55 [ 1] [ 4] [0810] +03:44:55 [ 7] [ 10] [0319084402] +03:44:55 [ 11] [ 6] [154108] +03:44:55 [ 39] [ 2] [00] +03:44:55 [ 70] [ 3] [301] +03:44:55 ============================================================================ +03:44:55 Calculate Source COMM Id = 2 +03:44:55 ============================================================================ +03:44:55 + + +waiting on router queue for slot.... +03:44:56 ============================================================================ +03:44:56 Slot Id : <377> +03:44:56 Transaction Type : REQUEST +03:44:56 Received From : +03:44:56 ============================================================================ +03:44:56 FNo. Len. Field Value +03:44:56 ============================================================================ +03:44:56 [ 1] [ 4] [0800] +03:44:56 [ 7] [ 10] [0319205242] +03:44:56 [ 11] [ 6] [089243] +03:44:56 [ 37] [ 12] [57903089243] +03:44:56 [ 70] [ 3] [301] +03:44:56 ============================================================================ +03:44:56 + + +waiting on router queue for slot.... +03:44:56 Sending to : +03:44:56 ============================================================================ +03:44:56 ============================================================================ +03:44:56 Slot Id : <377> +03:44:56 Transaction Type : RESPONSE +03:44:56 Received From : +03:44:56 ============================================================================ +03:44:56 FNo. Len. Field Value +03:44:56 ============================================================================ +03:44:56 [ 1] [ 4] [0810] +03:44:56 [ 7] [ 10] [0319205242] +03:44:56 [ 11] [ 6] [089243] +03:44:56 [ 37] [ 12] [579030892430] +03:44:56 [ 39] [ 2] [00] +03:44:56 [ 70] [ 3] [810] +03:44:56 ============================================================================ +03:44:56 Calculate Source COMM Id = 1 +03:44:56 ============================================================================ +03:44:56 + + +waiting on router queue for slot.... +03:45:06 ============================================================================ +03:45:06 Slot Id : <405> +03:45:06 Transaction Type : REQUEST +03:45:06 Received From : +03:45:06 ============================================================================ +03:45:06 FNo. Len. Field Value +03:45:06 ============================================================================ +03:45:06 [ 1] [ 4] [0800] +03:45:06 [ 7] [ 10] [0319084413] +03:45:06 [ 11] [ 6] [154109] +03:45:06 [ 70] [ 3] [301] +03:45:06 ============================================================================ +03:45:06 + + +waiting on router queue for slot.... +03:45:06 Sending to : +03:45:06 ============================================================================ +03:45:06 ============================================================================ +03:45:06 Slot Id : <405> +03:45:06 Transaction Type : RESPONSE +03:45:06 Received From : +03:45:06 ============================================================================ +03:45:06 FNo. Len. Field Value +03:45:06 ============================================================================ +03:45:06 [ 1] [ 4] [0810] +03:45:06 [ 7] [ 10] [0319084413] +03:45:06 [ 11] [ 6] [154109] +03:45:06 [ 39] [ 2] [00] +03:45:06 [ 70] [ 3] [301] +03:45:06 ============================================================================ +03:45:06 Calculate Source COMM Id = 2 +03:45:06 ============================================================================ +03:45:06 + + +waiting on router queue for slot.... +03:45:16 ============================================================================ +03:45:16 Slot Id : <443> +03:45:16 Transaction Type : REQUEST +03:45:16 Received From : +03:45:16 ============================================================================ +03:45:16 FNo. Len. Field Value +03:45:16 ============================================================================ +03:45:16 [ 1] [ 4] [0800] +03:45:16 [ 7] [ 10] [0320105704] +03:45:16 [ 11] [ 6] [035704] +03:45:16 [ 37] [ 12] [57903035704] +03:45:16 [ 70] [ 3] [301] +03:45:16 ============================================================================ +03:45:16 + + +waiting on router queue for slot.... +03:45:16 Sending to : +03:45:16 ============================================================================ +03:45:16 ============================================================================ +03:45:16 Slot Id : <443> +03:45:16 Transaction Type : RESPONSE +03:45:16 Received From : +03:45:16 ============================================================================ +03:45:16 FNo. Len. Field Value +03:45:16 ============================================================================ +03:45:16 [ 1] [ 4] [0810] +03:45:16 [ 7] [ 10] [0320105704] +03:45:16 [ 11] [ 6] [035704] +03:45:16 [ 37] [ 12] [579030357040] +03:45:16 [ 39] [ 2] [00] +03:45:16 [ 70] [ 3] [810] +03:45:16 ============================================================================ +03:45:16 Calculate Source COMM Id = 6 +03:45:16 ============================================================================ +03:45:16 + + +waiting on router queue for slot.... +03:45:21 ============================================================================ +03:45:21 Slot Id : <456> +03:45:21 Transaction Type : REQUEST +03:45:21 Received From : +03:45:21 ============================================================================ +03:45:21 FNo. Len. Field Value +03:45:21 ============================================================================ +03:45:21 [ 1] [ 4] [0800] +03:45:21 [ 7] [ 10] [0319084428] +03:45:21 [ 11] [ 6] [154110] +03:45:21 [ 70] [ 3] [301] +03:45:21 ============================================================================ +03:45:21 + + +waiting on router queue for slot.... +03:45:21 Sending to : +03:45:21 ============================================================================ +03:45:21 ============================================================================ +03:45:21 Slot Id : <456> +03:45:21 Transaction Type : RESPONSE +03:45:21 Received From : +03:45:21 ============================================================================ +03:45:21 FNo. Len. Field Value +03:45:21 ============================================================================ +03:45:21 [ 1] [ 4] [0810] +03:45:21 [ 7] [ 10] [0319084428] +03:45:21 [ 11] [ 6] [154110] +03:45:21 [ 39] [ 2] [00] +03:45:21 [ 70] [ 3] [301] +03:45:21 ============================================================================ +03:45:21 Calculate Source COMM Id = 2 +03:45:21 ============================================================================ +03:45:21 + + +waiting on router queue for slot.... +03:45:32 ============================================================================ +03:45:32 Slot Id : <446> +03:45:32 Transaction Type : REQUEST +03:45:32 Received From : +03:45:32 ============================================================================ +03:45:32 FNo. Len. Field Value +03:45:32 ============================================================================ +03:45:32 [ 1] [ 4] [0800] +03:45:32 [ 7] [ 10] [0319084439] +03:45:32 [ 11] [ 6] [154111] +03:45:32 [ 70] [ 3] [301] +03:45:32 ============================================================================ +03:45:32 + + +waiting on router queue for slot.... +03:45:32 Sending to : +03:45:32 ============================================================================ +03:45:32 ============================================================================ +03:45:32 Slot Id : <446> +03:45:32 Transaction Type : RESPONSE +03:45:32 Received From : +03:45:32 ============================================================================ +03:45:32 FNo. Len. Field Value +03:45:32 ============================================================================ +03:45:32 [ 1] [ 4] [0810] +03:45:32 [ 7] [ 10] [0319084439] +03:45:32 [ 11] [ 6] [154111] +03:45:32 [ 39] [ 2] [00] +03:45:32 [ 70] [ 3] [301] +03:45:32 ============================================================================ +03:45:32 Calculate Source COMM Id = 2 +03:45:32 ============================================================================ +03:45:32 + + +waiting on router queue for slot.... +03:45:47 ============================================================================ +03:45:47 Slot Id : <435> +03:45:47 Transaction Type : REQUEST +03:45:47 Received From : +03:45:47 ============================================================================ +03:45:47 FNo. Len. Field Value +03:45:47 ============================================================================ +03:45:47 [ 1] [ 4] [0800] +03:45:47 [ 7] [ 10] [0319084454] +03:45:47 [ 11] [ 6] [154112] +03:45:47 [ 70] [ 3] [301] +03:45:47 ============================================================================ +03:45:47 + + +waiting on router queue for slot.... +03:45:47 Sending to : +03:45:47 ============================================================================ +03:45:47 ============================================================================ +03:45:47 Slot Id : <435> +03:45:47 Transaction Type : RESPONSE +03:45:47 Received From : +03:45:47 ============================================================================ +03:45:47 FNo. Len. Field Value +03:45:47 ============================================================================ +03:45:47 [ 1] [ 4] [0810] +03:45:47 [ 7] [ 10] [0319084454] +03:45:47 [ 11] [ 6] [154112] +03:45:47 [ 39] [ 2] [00] +03:45:47 [ 70] [ 3] [301] +03:45:47 ============================================================================ +03:45:47 Calculate Source COMM Id = 2 +03:45:47 ============================================================================ +03:45:47 + + +waiting on router queue for slot.... +03:45:51 ============================================================================ +03:45:51 Slot Id : <404> +03:45:51 Transaction Type : REQUEST +03:45:51 Received From : +03:45:51 ============================================================================ +03:45:51 FNo. Len. Field Value +03:45:51 ============================================================================ +03:45:51 [ 1] [ 4] [0800] +03:45:51 [ 2] [ 5] [02531] +03:45:51 [ 3] [ 6] [579038] +03:45:51 [ 7] [ 10] [0319204551] +03:45:51 [ 11] [ 6] [806630] +03:45:51 [ 15] [ 10] [0319204551] +03:45:51 [ 37] [ 11] [57903806630] +03:45:51 [ 70] [ 3] [001] +03:45:51 ============================================================================ +03:45:51 + + +waiting on router queue for slot.... +03:45:51 ============================================================================ +03:45:51 Slot Id : <404> +03:45:51 Transaction Type : RESPONSE +03:45:51 Received From : +03:45:51 ============================================================================ +03:45:51 FNo. Len. Field Value +03:45:51 ============================================================================ +03:45:51 [ 1] [ 4] [0810] +03:45:51 [ 7] [ 10] [0319204551] +03:45:51 [ 11] [ 6] [806630] +03:45:51 [ 15] [ 4] [0319] +03:45:51 [ 37] [ 12] [57903806630] +03:45:51 [ 39] [ 2] [00] +03:45:51 [ 70] [ 3] [001] +03:45:51 ============================================================================ +03:45:51 Sending to : +03:45:51 ============================================================================ +03:45:51 + + +waiting on router queue for slot.... +03:45:58 ============================================================================ +03:45:58 Slot Id : <424> +03:45:58 Transaction Type : REQUEST +03:45:58 Received From : +03:45:58 ============================================================================ +03:45:58 FNo. Len. Field Value +03:45:58 ============================================================================ +03:45:58 [ 1] [ 4] [0800] +03:45:58 [ 7] [ 10] [0319084505] +03:45:58 [ 11] [ 6] [154113] +03:45:58 [ 70] [ 3] [301] +03:45:58 ============================================================================ +03:45:58 + + +waiting on router queue for slot.... +03:45:58 Sending to : +03:45:58 ============================================================================ +03:45:58 ============================================================================ +03:45:58 Slot Id : <424> +03:45:58 Transaction Type : RESPONSE +03:45:58 Received From : +03:45:58 ============================================================================ +03:45:58 FNo. Len. Field Value +03:45:58 ============================================================================ +03:45:58 [ 1] [ 4] [0810] +03:45:58 [ 7] [ 10] [0319084505] +03:45:58 [ 11] [ 6] [154113] +03:45:58 [ 39] [ 2] [00] +03:45:58 [ 70] [ 3] [301] +03:45:58 ============================================================================ +03:45:58 Calculate Source COMM Id = 2 +03:45:58 ============================================================================ +03:45:58 + + +waiting on router queue for slot.... +03:46:09 ============================================================================ +03:46:09 Slot Id : <442> +03:46:09 Transaction Type : REQUEST +03:46:09 Received From : +03:46:09 ============================================================================ +03:46:09 FNo. Len. Field Value +03:46:09 ============================================================================ +03:46:09 [ 1] [ 4] [0800] +03:46:09 [ 7] [ 10] [0319084516] +03:46:09 [ 11] [ 6] [154114] +03:46:09 [ 70] [ 3] [301] +03:46:09 ============================================================================ +03:46:09 + + +waiting on router queue for slot.... +03:46:09 Sending to : +03:46:09 ============================================================================ +03:46:09 ============================================================================ +03:46:09 Slot Id : <442> +03:46:09 Transaction Type : RESPONSE +03:46:09 Received From : +03:46:09 ============================================================================ +03:46:09 FNo. Len. Field Value +03:46:09 ============================================================================ +03:46:09 [ 1] [ 4] [0810] +03:46:09 [ 7] [ 10] [0319084516] +03:46:09 [ 11] [ 6] [154114] +03:46:09 [ 39] [ 2] [00] +03:46:09 [ 70] [ 3] [301] +03:46:09 ============================================================================ +03:46:09 Calculate Source COMM Id = 2 +03:46:09 ============================================================================ +03:46:09 + + +waiting on router queue for slot.... +03:46:20 ============================================================================ +03:46:20 Slot Id : <429> +03:46:20 Transaction Type : REQUEST +03:46:20 Received From : +03:46:20 ============================================================================ +03:46:20 FNo. Len. Field Value +03:46:20 ============================================================================ +03:46:20 [ 1] [ 4] [0800] +03:46:20 [ 7] [ 10] [0319084527] +03:46:20 [ 11] [ 6] [154115] +03:46:20 [ 70] [ 3] [301] +03:46:20 ============================================================================ +03:46:20 + + +waiting on router queue for slot.... +03:46:20 Sending to : +03:46:20 ============================================================================ +03:46:20 ============================================================================ +03:46:20 Slot Id : <429> +03:46:20 Transaction Type : RESPONSE +03:46:20 Received From : +03:46:20 ============================================================================ +03:46:20 FNo. Len. Field Value +03:46:20 ============================================================================ +03:46:20 [ 1] [ 4] [0810] +03:46:20 [ 7] [ 10] [0319084527] +03:46:20 [ 11] [ 6] [154115] +03:46:20 [ 39] [ 2] [00] +03:46:20 [ 70] [ 3] [301] +03:46:20 ============================================================================ +03:46:20 Calculate Source COMM Id = 2 +03:46:20 ============================================================================ +03:46:20 + + +waiting on router queue for slot.... +03:46:21 ============================================================================ +03:46:21 Slot Id : <445> +03:46:21 Transaction Type : REQUEST +03:46:21 Received From : +03:46:21 ============================================================================ +03:46:21 FNo. Len. Field Value +03:46:21 ============================================================================ +03:46:21 [ 1] [ 4] [0800] +03:46:21 [ 7] [ 10] [0320105809] +03:46:21 [ 11] [ 6] [035809] +03:46:21 [ 37] [ 12] [57903035809] +03:46:21 [ 70] [ 3] [301] +03:46:21 ============================================================================ +03:46:21 + + +waiting on router queue for slot.... +03:46:21 Sending to : +03:46:21 ============================================================================ +03:46:21 ============================================================================ +03:46:21 Slot Id : <445> +03:46:21 Transaction Type : RESPONSE +03:46:21 Received From : +03:46:21 ============================================================================ +03:46:21 FNo. Len. Field Value +03:46:21 ============================================================================ +03:46:21 [ 1] [ 4] [0810] +03:46:21 [ 7] [ 10] [0320105809] +03:46:21 [ 11] [ 6] [035809] +03:46:21 [ 37] [ 12] [579030358090] +03:46:21 [ 39] [ 2] [00] +03:46:21 [ 70] [ 3] [810] +03:46:21 ============================================================================ +03:46:21 Calculate Source COMM Id = 6 +03:46:21 ============================================================================ +03:46:21 + + +waiting on router queue for slot.... +03:46:21 ============================================================================ +03:46:21 Slot Id : <438> +03:46:21 Transaction Type : REQUEST +03:46:21 Received From : +03:46:21 ============================================================================ +03:46:21 FNo. Len. Field Value +03:46:21 ============================================================================ +03:46:21 [ 1] [ 4] [0800] +03:46:21 [ 7] [ 10] [0319204412] +03:46:21 [ 11] [ 6] [073757] +03:46:21 [ 37] [ 12] [57903073757] +03:46:21 [ 70] [ 3] [301] +03:46:21 ============================================================================ +03:46:21 + + +waiting on router queue for slot.... +03:46:21 Sending to : +03:46:21 ============================================================================ +03:46:21 ============================================================================ +03:46:21 Slot Id : <438> +03:46:21 Transaction Type : RESPONSE +03:46:21 Received From : +03:46:21 ============================================================================ +03:46:21 FNo. Len. Field Value +03:46:21 ============================================================================ +03:46:21 [ 1] [ 4] [0810] +03:46:21 [ 7] [ 10] [0319204412] +03:46:21 [ 11] [ 6] [073757] +03:46:21 [ 37] [ 12] [579030737570] +03:46:21 [ 39] [ 2] [00] +03:46:21 [ 70] [ 3] [810] +03:46:21 ============================================================================ +03:46:21 Calculate Source COMM Id = 4 +03:46:21 ============================================================================ +03:46:21 + + +waiting on router queue for slot.... +03:46:31 ============================================================================ +03:46:31 Slot Id : <434> +03:46:31 Transaction Type : REQUEST +03:46:31 Received From : +03:46:31 ============================================================================ +03:46:31 FNo. Len. Field Value +03:46:31 ============================================================================ +03:46:31 [ 1] [ 4] [0800] +03:46:31 [ 7] [ 10] [0319084538] +03:46:31 [ 11] [ 6] [154116] +03:46:31 [ 70] [ 3] [301] +03:46:31 ============================================================================ +03:46:31 + + +waiting on router queue for slot.... +03:46:31 Sending to : +03:46:31 ============================================================================ +03:46:31 ============================================================================ +03:46:31 Slot Id : <434> +03:46:31 Transaction Type : RESPONSE +03:46:31 Received From : +03:46:31 ============================================================================ +03:46:31 FNo. Len. Field Value +03:46:31 ============================================================================ +03:46:31 [ 1] [ 4] [0810] +03:46:31 [ 7] [ 10] [0319084538] +03:46:31 [ 11] [ 6] [154116] +03:46:31 [ 39] [ 2] [00] +03:46:31 [ 70] [ 3] [301] +03:46:31 ============================================================================ +03:46:31 Calculate Source COMM Id = 2 +03:46:31 ============================================================================ +03:46:31 + + +waiting on router queue for slot.... +03:46:41 ============================================================================ +03:46:41 Slot Id : <428> +03:46:41 Transaction Type : REQUEST +03:46:41 Received From : +03:46:41 ============================================================================ +03:46:41 FNo. Len. Field Value +03:46:41 ============================================================================ +03:46:41 [ 1] [ 4] [0800] +03:46:41 [ 7] [ 10] [0319084548] +03:46:41 [ 11] [ 6] [154117] +03:46:41 [ 70] [ 3] [301] +03:46:41 ============================================================================ +03:46:41 + + +waiting on router queue for slot.... +03:46:41 Sending to : +03:46:41 ============================================================================ +03:46:41 ============================================================================ +03:46:41 Slot Id : <428> +03:46:41 Transaction Type : RESPONSE +03:46:41 Received From : +03:46:41 ============================================================================ +03:46:41 FNo. Len. Field Value +03:46:41 ============================================================================ +03:46:41 [ 1] [ 4] [0810] +03:46:41 [ 7] [ 10] [0319084548] +03:46:41 [ 11] [ 6] [154117] +03:46:41 [ 39] [ 2] [00] +03:46:41 [ 70] [ 3] [301] +03:46:41 ============================================================================ +03:46:41 Calculate Source COMM Id = 2 +03:46:41 ============================================================================ +03:46:41 + + +waiting on router queue for slot.... +03:46:52 ============================================================================ +03:46:52 Slot Id : <427> +03:46:52 Transaction Type : REQUEST +03:46:52 Received From : +03:46:52 ============================================================================ +03:46:52 FNo. Len. Field Value +03:46:52 ============================================================================ +03:46:52 [ 1] [ 4] [0800] +03:46:52 [ 7] [ 10] [0319084559] +03:46:52 [ 11] [ 6] [154118] +03:46:52 [ 70] [ 3] [301] +03:46:52 ============================================================================ +03:46:52 + + +waiting on router queue for slot.... +03:46:52 Sending to : +03:46:52 ============================================================================ +03:46:52 ============================================================================ +03:46:52 Slot Id : <427> +03:46:52 Transaction Type : RESPONSE +03:46:52 Received From : +03:46:52 ============================================================================ +03:46:52 FNo. Len. Field Value +03:46:52 ============================================================================ +03:46:52 [ 1] [ 4] [0810] +03:46:52 [ 7] [ 10] [0319084559] +03:46:52 [ 11] [ 6] [154118] +03:46:52 [ 39] [ 2] [00] +03:46:52 [ 70] [ 3] [301] +03:46:52 ============================================================================ +03:46:52 Calculate Source COMM Id = 2 +03:46:52 ============================================================================ +03:46:52 + + +waiting on router queue for slot.... +03:46:53 ============================================================================ +03:46:53 Slot Id : <426> +03:46:53 Transaction Type : REQUEST +03:46:53 Received From : +03:46:53 ============================================================================ +03:46:53 FNo. Len. Field Value +03:46:53 ============================================================================ +03:46:53 [ 1] [ 4] [0800] +03:46:53 [ 2] [ 5] [02531] +03:46:53 [ 3] [ 6] [579038] +03:46:53 [ 7] [ 10] [0319204653] +03:46:53 [ 11] [ 6] [806631] +03:46:53 [ 15] [ 10] [0319204653] +03:46:53 [ 37] [ 11] [57903806631] +03:46:53 [ 70] [ 3] [001] +03:46:53 ============================================================================ +03:46:53 + + +waiting on router queue for slot.... +03:46:53 ============================================================================ +03:46:53 Slot Id : <426> +03:46:53 Transaction Type : RESPONSE +03:46:53 Received From : +03:46:53 ============================================================================ +03:46:53 FNo. Len. Field Value +03:46:53 ============================================================================ +03:46:53 [ 1] [ 4] [0810] +03:46:53 [ 7] [ 10] [0319204653] +03:46:53 [ 11] [ 6] [806631] +03:46:53 [ 15] [ 4] [0319] +03:46:53 [ 37] [ 12] [57903806631] +03:46:53 [ 39] [ 2] [00] +03:46:53 [ 70] [ 3] [001] +03:46:53 ============================================================================ +03:46:53 Sending to : +03:46:53 ============================================================================ +03:46:53 + + +waiting on router queue for slot.... +03:47:03 ============================================================================ +03:47:03 Slot Id : <431> +03:47:03 Transaction Type : REQUEST +03:47:03 Received From : +03:47:03 ============================================================================ +03:47:03 FNo. Len. Field Value +03:47:03 ============================================================================ +03:47:03 [ 1] [ 4] [0800] +03:47:03 [ 7] [ 10] [0319084609] +03:47:03 [ 11] [ 6] [154119] +03:47:03 [ 70] [ 3] [301] +03:47:03 ============================================================================ +03:47:03 + + +waiting on router queue for slot.... +03:47:03 Sending to : +03:47:03 ============================================================================ +03:47:03 ============================================================================ +03:47:03 Slot Id : <431> +03:47:03 Transaction Type : RESPONSE +03:47:03 Received From : +03:47:03 ============================================================================ +03:47:03 FNo. Len. Field Value +03:47:03 ============================================================================ +03:47:03 [ 1] [ 4] [0810] +03:47:03 [ 7] [ 10] [0319084609] +03:47:03 [ 11] [ 6] [154119] +03:47:03 [ 39] [ 2] [00] +03:47:03 [ 70] [ 3] [301] +03:47:03 ============================================================================ +03:47:03 Calculate Source COMM Id = 2 +03:47:03 ============================================================================ +03:47:03 + + +waiting on router queue for slot.... +03:47:18 ============================================================================ +03:47:18 Slot Id : <451> +03:47:18 Transaction Type : REQUEST +03:47:18 Received From : +03:47:18 ============================================================================ +03:47:18 FNo. Len. Field Value +03:47:18 ============================================================================ +03:47:18 [ 1] [ 4] [0800] +03:47:18 [ 7] [ 10] [0319084625] +03:47:18 [ 11] [ 6] [154120] +03:47:18 [ 70] [ 3] [301] +03:47:18 ============================================================================ +03:47:18 + + +waiting on router queue for slot.... +03:47:18 Sending to : +03:47:18 ============================================================================ +03:47:18 ============================================================================ +03:47:18 Slot Id : <451> +03:47:18 Transaction Type : RESPONSE +03:47:18 Received From : +03:47:18 ============================================================================ +03:47:18 FNo. Len. Field Value +03:47:18 ============================================================================ +03:47:18 [ 1] [ 4] [0810] +03:47:18 [ 7] [ 10] [0319084625] +03:47:18 [ 11] [ 6] [154120] +03:47:18 [ 39] [ 2] [00] +03:47:18 [ 70] [ 3] [301] +03:47:18 ============================================================================ +03:47:18 Calculate Source COMM Id = 2 +03:47:18 ============================================================================ +03:47:18 + + +waiting on router queue for slot.... +03:47:26 ============================================================================ +03:47:26 Slot Id : <457> +03:47:26 Transaction Type : REQUEST +03:47:26 Received From : +03:47:26 ============================================================================ +03:47:26 FNo. Len. Field Value +03:47:26 ============================================================================ +03:47:26 [ 1] [ 4] [0800] +03:47:26 [ 7] [ 10] [0320105914] +03:47:26 [ 11] [ 6] [035914] +03:47:26 [ 37] [ 12] [57903035914] +03:47:26 [ 70] [ 3] [301] +03:47:26 ============================================================================ +03:47:26 + + +waiting on router queue for slot.... +03:47:26 Sending to : +03:47:26 ============================================================================ +03:47:26 ============================================================================ +03:47:26 Slot Id : <457> +03:47:26 Transaction Type : RESPONSE +03:47:26 Received From : +03:47:26 ============================================================================ +03:47:26 FNo. Len. Field Value +03:47:26 ============================================================================ +03:47:26 [ 1] [ 4] [0810] +03:47:26 [ 7] [ 10] [0320105914] +03:47:26 [ 11] [ 6] [035914] +03:47:26 [ 37] [ 12] [579030359140] +03:47:26 [ 39] [ 2] [00] +03:47:26 [ 70] [ 3] [810] +03:47:26 ============================================================================ +03:47:26 Calculate Source COMM Id = 6 +03:47:26 ============================================================================ +03:47:26 + + +waiting on router queue for slot.... +03:47:29 ============================================================================ +03:47:29 Slot Id : <422> +03:47:29 Transaction Type : REQUEST +03:47:29 Received From : +03:47:29 ============================================================================ +03:47:29 FNo. Len. Field Value +03:47:29 ============================================================================ +03:47:29 [ 1] [ 4] [0800] +03:47:29 [ 7] [ 10] [0319084636] +03:47:29 [ 11] [ 6] [154121] +03:47:29 [ 70] [ 3] [301] +03:47:29 ============================================================================ +03:47:29 + + +waiting on router queue for slot.... +03:47:29 Sending to : +03:47:29 ============================================================================ +03:47:29 ============================================================================ +03:47:29 Slot Id : <422> +03:47:29 Transaction Type : RESPONSE +03:47:29 Received From : +03:47:29 ============================================================================ +03:47:29 FNo. Len. Field Value +03:47:29 ============================================================================ +03:47:29 [ 1] [ 4] [0810] +03:47:29 [ 7] [ 10] [0319084636] +03:47:29 [ 11] [ 6] [154121] +03:47:29 [ 39] [ 2] [00] +03:47:29 [ 70] [ 3] [301] +03:47:29 ============================================================================ +03:47:29 Calculate Source COMM Id = 2 +03:47:29 ============================================================================ +03:47:29 + + +waiting on router queue for slot.... +03:47:39 ============================================================================ +03:47:39 Slot Id : <462> +03:47:39 Transaction Type : REQUEST +03:47:39 Received From : +03:47:39 ============================================================================ +03:47:39 FNo. Len. Field Value +03:47:39 ============================================================================ +03:47:39 [ 1] [ 4] [0800] +03:47:39 [ 7] [ 10] [0319084646] +03:47:39 [ 11] [ 6] [154122] +03:47:39 [ 70] [ 3] [301] +03:47:39 ============================================================================ +03:47:39 + + +waiting on router queue for slot.... +03:47:39 Sending to : +03:47:39 ============================================================================ +03:47:39 ============================================================================ +03:47:39 Slot Id : <462> +03:47:39 Transaction Type : RESPONSE +03:47:39 Received From : +03:47:39 ============================================================================ +03:47:39 FNo. Len. Field Value +03:47:39 ============================================================================ +03:47:39 [ 1] [ 4] [0810] +03:47:39 [ 7] [ 10] [0319084646] +03:47:39 [ 11] [ 6] [154122] +03:47:39 [ 39] [ 2] [00] +03:47:39 [ 70] [ 3] [301] +03:47:39 ============================================================================ +03:47:39 Calculate Source COMM Id = 2 +03:47:39 ============================================================================ +03:47:39 + + +waiting on router queue for slot.... +03:47:49 ============================================================================ +03:47:49 Slot Id : <465> +03:47:49 Transaction Type : REQUEST +03:47:49 Received From : +03:47:49 ============================================================================ +03:47:49 FNo. Len. Field Value +03:47:49 ============================================================================ +03:47:49 [ 1] [ 4] [0800] +03:47:49 [ 7] [ 10] [0319084656] +03:47:49 [ 11] [ 6] [154123] +03:47:49 [ 70] [ 3] [301] +03:47:49 ============================================================================ +03:47:49 + + +waiting on router queue for slot.... +03:47:49 Sending to : +03:47:49 ============================================================================ +03:47:49 ============================================================================ +03:47:49 Slot Id : <465> +03:47:49 Transaction Type : RESPONSE +03:47:49 Received From : +03:47:49 ============================================================================ +03:47:49 FNo. Len. Field Value +03:47:49 ============================================================================ +03:47:49 [ 1] [ 4] [0810] +03:47:49 [ 7] [ 10] [0319084656] +03:47:49 [ 11] [ 6] [154123] +03:47:49 [ 39] [ 2] [00] +03:47:49 [ 70] [ 3] [301] +03:47:49 ============================================================================ +03:47:49 Calculate Source COMM Id = 2 +03:47:49 ============================================================================ +03:47:49 + + +waiting on router queue for slot.... +03:47:55 ============================================================================ +03:47:55 Slot Id : <444> +03:47:55 Transaction Type : REQUEST +03:47:55 Received From : +03:47:55 ============================================================================ +03:47:55 FNo. Len. Field Value +03:47:55 ============================================================================ +03:47:55 [ 1] [ 4] [0800] +03:47:55 [ 2] [ 5] [02531] +03:47:55 [ 3] [ 6] [579038] +03:47:55 [ 7] [ 10] [0319204755] +03:47:55 [ 11] [ 6] [806632] +03:47:55 [ 15] [ 10] [0319204755] +03:47:55 [ 37] [ 11] [57903806632] +03:47:55 [ 70] [ 3] [001] +03:47:55 ============================================================================ +03:47:55 + + +waiting on router queue for slot.... +03:47:55 ============================================================================ +03:47:55 Slot Id : <444> +03:47:55 Transaction Type : RESPONSE +03:47:55 Received From : +03:47:55 ============================================================================ +03:47:55 FNo. Len. Field Value +03:47:55 ============================================================================ +03:47:55 [ 1] [ 4] [0810] +03:47:55 [ 7] [ 10] [0319204755] +03:47:55 [ 11] [ 6] [806632] +03:47:55 [ 15] [ 4] [0319] +03:47:55 [ 37] [ 12] [57903806632] +03:47:55 [ 39] [ 2] [00] +03:47:55 [ 70] [ 3] [001] +03:47:55 ============================================================================ +03:47:55 Sending to : +03:47:55 ============================================================================ +03:47:55 + + +waiting on router queue for slot.... +03:48:00 ============================================================================ +03:48:00 Slot Id : <421> +03:48:00 Transaction Type : REQUEST +03:48:00 Received From : +03:48:00 ============================================================================ +03:48:00 FNo. Len. Field Value +03:48:00 ============================================================================ +03:48:00 [ 1] [ 4] [0800] +03:48:00 [ 7] [ 10] [0319084707] +03:48:00 [ 11] [ 6] [154124] +03:48:00 [ 70] [ 3] [301] +03:48:00 ============================================================================ +03:48:00 + + +waiting on router queue for slot.... +03:48:00 Sending to : +03:48:00 ============================================================================ +03:48:00 ============================================================================ +03:48:00 Slot Id : <421> +03:48:00 Transaction Type : RESPONSE +03:48:00 Received From : +03:48:00 ============================================================================ +03:48:00 FNo. Len. Field Value +03:48:00 ============================================================================ +03:48:00 [ 1] [ 4] [0810] +03:48:00 [ 7] [ 10] [0319084707] +03:48:00 [ 11] [ 6] [154124] +03:48:00 [ 39] [ 2] [00] +03:48:00 [ 70] [ 3] [301] +03:48:00 ============================================================================ +03:48:00 Calculate Source COMM Id = 2 +03:48:00 ============================================================================ +03:48:00 + + +waiting on router queue for slot.... +03:48:11 ============================================================================ +03:48:11 Slot Id : <439> +03:48:11 Transaction Type : REQUEST +03:48:11 Received From : +03:48:11 ============================================================================ +03:48:11 FNo. Len. Field Value +03:48:11 ============================================================================ +03:48:11 [ 1] [ 4] [0800] +03:48:11 [ 7] [ 10] [0319084718] +03:48:11 [ 11] [ 6] [154125] +03:48:11 [ 70] [ 3] [301] +03:48:11 ============================================================================ +03:48:11 + + +waiting on router queue for slot.... +03:48:11 Sending to : +03:48:11 ============================================================================ +03:48:11 ============================================================================ +03:48:11 Slot Id : <439> +03:48:11 Transaction Type : RESPONSE +03:48:11 Received From : +03:48:11 ============================================================================ +03:48:11 FNo. Len. Field Value +03:48:11 ============================================================================ +03:48:11 [ 1] [ 4] [0810] +03:48:11 [ 7] [ 10] [0319084718] +03:48:11 [ 11] [ 6] [154125] +03:48:11 [ 39] [ 2] [00] +03:48:11 [ 70] [ 3] [301] +03:48:11 ============================================================================ +03:48:11 Calculate Source COMM Id = 2 +03:48:11 ============================================================================ +03:48:11 + + +waiting on router queue for slot.... +03:48:23 ============================================================================ +03:48:23 Slot Id : <458> +03:48:23 Transaction Type : REQUEST +03:48:23 Received From : +03:48:23 ============================================================================ +03:48:23 FNo. Len. Field Value +03:48:23 ============================================================================ +03:48:23 [ 1] [ 4] [0800] +03:48:23 [ 7] [ 10] [0319084730] +03:48:23 [ 11] [ 6] [154126] +03:48:23 [ 70] [ 3] [301] +03:48:23 ============================================================================ +03:48:23 + + +waiting on router queue for slot.... +03:48:23 Sending to : +03:48:23 ============================================================================ +03:48:23 ============================================================================ +03:48:23 Slot Id : <458> +03:48:23 Transaction Type : RESPONSE +03:48:23 Received From : +03:48:23 ============================================================================ +03:48:23 FNo. Len. Field Value +03:48:23 ============================================================================ +03:48:23 [ 1] [ 4] [0810] +03:48:23 [ 7] [ 10] [0319084730] +03:48:23 [ 11] [ 6] [154126] +03:48:23 [ 39] [ 2] [00] +03:48:23 [ 70] [ 3] [301] +03:48:23 ============================================================================ +03:48:23 Calculate Source COMM Id = 2 +03:48:23 ============================================================================ +03:48:23 + + +waiting on router queue for slot.... +03:48:31 ============================================================================ +03:48:31 Slot Id : <423> +03:48:31 Transaction Type : REQUEST +03:48:31 Received From : +03:48:31 ============================================================================ +03:48:31 FNo. Len. Field Value +03:48:31 ============================================================================ +03:48:31 [ 1] [ 4] [0800] +03:48:31 [ 7] [ 10] [0320110019] +03:48:31 [ 11] [ 6] [040019] +03:48:31 [ 37] [ 12] [57904040019] +03:48:31 [ 70] [ 3] [301] +03:48:31 ============================================================================ +03:48:31 + + +waiting on router queue for slot.... +03:48:31 Sending to : +03:48:31 ============================================================================ +03:48:31 ============================================================================ +03:48:31 Slot Id : <423> +03:48:31 Transaction Type : RESPONSE +03:48:31 Received From : +03:48:31 ============================================================================ +03:48:31 FNo. Len. Field Value +03:48:31 ============================================================================ +03:48:31 [ 1] [ 4] [0810] +03:48:31 [ 7] [ 10] [0320110019] +03:48:31 [ 11] [ 6] [040019] +03:48:31 [ 37] [ 12] [579040400190] +03:48:31 [ 39] [ 2] [00] +03:48:31 [ 70] [ 3] [810] +03:48:31 ============================================================================ +03:48:31 Calculate Source COMM Id = 6 +03:48:31 ============================================================================ +03:48:31 + + +waiting on router queue for slot.... +03:48:34 ============================================================================ +03:48:34 Slot Id : <466> +03:48:34 Transaction Type : REQUEST +03:48:34 Received From : +03:48:34 ============================================================================ +03:48:34 FNo. Len. Field Value +03:48:34 ============================================================================ +03:48:34 [ 1] [ 4] [0800] +03:48:34 [ 7] [ 10] [0319084741] +03:48:34 [ 11] [ 6] [154127] +03:48:34 [ 70] [ 3] [301] +03:48:34 ============================================================================ +03:48:34 + + +waiting on router queue for slot.... +03:48:34 Sending to : +03:48:34 ============================================================================ +03:48:34 ============================================================================ +03:48:34 Slot Id : <466> +03:48:34 Transaction Type : RESPONSE +03:48:34 Received From : +03:48:34 ============================================================================ +03:48:34 FNo. Len. Field Value +03:48:34 ============================================================================ +03:48:34 [ 1] [ 4] [0810] +03:48:34 [ 7] [ 10] [0319084741] +03:48:34 [ 11] [ 6] [154127] +03:48:34 [ 39] [ 2] [00] +03:48:34 [ 70] [ 3] [301] +03:48:34 ============================================================================ +03:48:34 Calculate Source COMM Id = 2 +03:48:34 ============================================================================ +03:48:34 + + +waiting on router queue for slot.... +03:48:45 ============================================================================ +03:48:45 Slot Id : <436> +03:48:45 Transaction Type : REQUEST +03:48:45 Received From : +03:48:45 ============================================================================ +03:48:45 FNo. Len. Field Value +03:48:45 ============================================================================ +03:48:45 [ 1] [ 4] [0800] +03:48:45 [ 7] [ 10] [0319084752] +03:48:45 [ 11] [ 6] [154128] +03:48:45 [ 70] [ 3] [301] +03:48:45 ============================================================================ +03:48:45 + + +waiting on router queue for slot.... +03:48:45 Sending to : +03:48:45 ============================================================================ +03:48:45 ============================================================================ +03:48:45 Slot Id : <436> +03:48:45 Transaction Type : RESPONSE +03:48:45 Received From : +03:48:45 ============================================================================ +03:48:45 FNo. Len. Field Value +03:48:45 ============================================================================ +03:48:45 [ 1] [ 4] [0810] +03:48:45 [ 7] [ 10] [0319084752] +03:48:45 [ 11] [ 6] [154128] +03:48:45 [ 39] [ 2] [00] +03:48:45 [ 70] [ 3] [301] +03:48:45 ============================================================================ +03:48:45 Calculate Source COMM Id = 2 +03:48:45 ============================================================================ +03:48:45 + + +waiting on router queue for slot.... +03:48:55 ============================================================================ +03:48:55 Slot Id : <459> +03:48:55 Transaction Type : REQUEST +03:48:55 Received From : +03:48:55 ============================================================================ +03:48:55 FNo. Len. Field Value +03:48:55 ============================================================================ +03:48:55 [ 1] [ 4] [0800] +03:48:55 [ 7] [ 10] [0319084802] +03:48:55 [ 11] [ 6] [154129] +03:48:55 [ 70] [ 3] [301] +03:48:55 ============================================================================ +03:48:55 + + +waiting on router queue for slot.... +03:48:55 Sending to : +03:48:55 ============================================================================ +03:48:55 ============================================================================ +03:48:55 Slot Id : <459> +03:48:55 Transaction Type : RESPONSE +03:48:55 Received From : +03:48:55 ============================================================================ +03:48:55 FNo. Len. Field Value +03:48:55 ============================================================================ +03:48:55 [ 1] [ 4] [0810] +03:48:55 [ 7] [ 10] [0319084802] +03:48:55 [ 11] [ 6] [154129] +03:48:55 [ 39] [ 2] [00] +03:48:55 [ 70] [ 3] [301] +03:48:55 ============================================================================ +03:48:55 Calculate Source COMM Id = 2 +03:48:55 ============================================================================ +03:48:55 + + +waiting on router queue for slot.... +03:48:57 ============================================================================ +03:48:57 Slot Id : <475> +03:48:57 Transaction Type : REQUEST +03:48:57 Received From : +03:48:57 ============================================================================ +03:48:57 FNo. Len. Field Value +03:48:57 ============================================================================ +03:48:57 [ 1] [ 4] [0800] +03:48:57 [ 2] [ 5] [02531] +03:48:57 [ 3] [ 6] [579038] +03:48:57 [ 7] [ 10] [0319204857] +03:48:57 [ 11] [ 6] [806633] +03:48:57 [ 15] [ 10] [0319204857] +03:48:57 [ 37] [ 11] [57903806633] +03:48:57 [ 70] [ 3] [001] +03:48:57 ============================================================================ +03:48:57 + + +waiting on router queue for slot.... +03:48:57 ============================================================================ +03:48:57 Slot Id : <475> +03:48:57 Transaction Type : RESPONSE +03:48:57 Received From : +03:48:57 ============================================================================ +03:48:57 FNo. Len. Field Value +03:48:57 ============================================================================ +03:48:57 [ 1] [ 4] [0810] +03:48:57 [ 7] [ 10] [0319204857] +03:48:57 [ 11] [ 6] [806633] +03:48:57 [ 15] [ 4] [0319] +03:48:57 [ 37] [ 12] [57903806633] +03:48:57 [ 39] [ 2] [00] +03:48:57 [ 70] [ 3] [001] +03:48:57 ============================================================================ +03:48:57 Sending to : +03:48:57 ============================================================================ +03:48:57 + + +waiting on router queue for slot.... +03:49:10 ============================================================================ +03:49:10 Slot Id : <452> +03:49:10 Transaction Type : REQUEST +03:49:10 Received From : +03:49:10 ============================================================================ +03:49:10 FNo. Len. Field Value +03:49:10 ============================================================================ +03:49:10 [ 1] [ 4] [0800] +03:49:10 [ 7] [ 10] [0319084817] +03:49:10 [ 11] [ 6] [154130] +03:49:10 [ 70] [ 3] [301] +03:49:10 ============================================================================ +03:49:10 + + +waiting on router queue for slot.... +03:49:10 Sending to : +03:49:10 ============================================================================ +03:49:10 ============================================================================ +03:49:10 Slot Id : <452> +03:49:10 Transaction Type : RESPONSE +03:49:10 Received From : +03:49:10 ============================================================================ +03:49:10 FNo. Len. Field Value +03:49:10 ============================================================================ +03:49:10 [ 1] [ 4] [0810] +03:49:10 [ 7] [ 10] [0319084817] +03:49:10 [ 11] [ 6] [154130] +03:49:10 [ 39] [ 2] [00] +03:49:10 [ 70] [ 3] [301] +03:49:10 ============================================================================ +03:49:10 Calculate Source COMM Id = 2 +03:49:10 ============================================================================ +03:49:10 + + +waiting on router queue for slot.... +03:49:21 ============================================================================ +03:49:21 Slot Id : <468> +03:49:21 Transaction Type : REQUEST +03:49:21 Received From : +03:49:21 ============================================================================ +03:49:21 FNo. Len. Field Value +03:49:21 ============================================================================ +03:49:21 [ 1] [ 4] [0800] +03:49:21 [ 7] [ 10] [0319084828] +03:49:21 [ 11] [ 6] [154131] +03:49:21 [ 70] [ 3] [301] +03:49:21 ============================================================================ +03:49:21 + + +waiting on router queue for slot.... +03:49:21 Sending to : +03:49:21 ============================================================================ +03:49:21 ============================================================================ +03:49:21 Slot Id : <468> +03:49:21 Transaction Type : RESPONSE +03:49:21 Received From : +03:49:21 ============================================================================ +03:49:21 FNo. Len. Field Value +03:49:21 ============================================================================ +03:49:21 [ 1] [ 4] [0810] +03:49:21 [ 7] [ 10] [0319084828] +03:49:21 [ 11] [ 6] [154131] +03:49:21 [ 39] [ 2] [00] +03:49:21 [ 70] [ 3] [301] +03:49:21 ============================================================================ +03:49:21 Calculate Source COMM Id = 2 +03:49:21 ============================================================================ +03:49:21 + + +waiting on router queue for slot.... +03:49:36 ============================================================================ +03:49:36 Slot Id : <449> +03:49:36 Transaction Type : REQUEST +03:49:36 Received From : +03:49:36 ============================================================================ +03:49:36 FNo. Len. Field Value +03:49:36 ============================================================================ +03:49:36 [ 1] [ 4] [0800] +03:49:36 [ 7] [ 10] [0320110124] +03:49:36 [ 11] [ 6] [040124] +03:49:36 [ 37] [ 12] [57904040124] +03:49:36 [ 70] [ 3] [301] +03:49:36 ============================================================================ +03:49:36 + + +waiting on router queue for slot.... +03:49:36 Sending to : +03:49:36 ============================================================================ +03:49:36 ============================================================================ +03:49:36 Slot Id : <449> +03:49:36 Transaction Type : RESPONSE +03:49:36 Received From : +03:49:36 ============================================================================ +03:49:36 FNo. Len. Field Value +03:49:36 ============================================================================ +03:49:36 [ 1] [ 4] [0810] +03:49:36 [ 7] [ 10] [0320110124] +03:49:36 [ 11] [ 6] [040124] +03:49:36 [ 37] [ 12] [579040401240] +03:49:36 [ 39] [ 2] [00] +03:49:36 [ 70] [ 3] [810] +03:49:36 ============================================================================ +03:49:36 Calculate Source COMM Id = 6 +03:49:36 ============================================================================ +03:49:36 + + +waiting on router queue for slot.... +03:49:36 ============================================================================ +03:49:36 Slot Id : <455> +03:49:36 Transaction Type : REQUEST +03:49:36 Received From : +03:49:36 ============================================================================ +03:49:36 FNo. Len. Field Value +03:49:36 ============================================================================ +03:49:36 [ 1] [ 4] [0800] +03:49:36 [ 7] [ 10] [0319084843] +03:49:36 [ 11] [ 6] [154132] +03:49:36 [ 70] [ 3] [301] +03:49:36 ============================================================================ +03:49:36 + + +waiting on router queue for slot.... +03:49:36 Sending to : +03:49:36 ============================================================================ +03:49:36 ============================================================================ +03:49:36 Slot Id : <455> +03:49:36 Transaction Type : RESPONSE +03:49:36 Received From : +03:49:36 ============================================================================ +03:49:36 FNo. Len. Field Value +03:49:36 ============================================================================ +03:49:36 [ 1] [ 4] [0810] +03:49:36 [ 7] [ 10] [0319084843] +03:49:36 [ 11] [ 6] [154132] +03:49:36 [ 39] [ 2] [00] +03:49:36 [ 70] [ 3] [301] +03:49:36 ============================================================================ +03:49:36 Calculate Source COMM Id = 2 +03:49:36 ============================================================================ +03:49:36 + + +waiting on router queue for slot.... +03:49:52 ============================================================================ +03:49:52 Slot Id : <440> +03:49:52 Transaction Type : REQUEST +03:49:52 Received From : +03:49:52 ============================================================================ +03:49:52 FNo. Len. Field Value +03:49:52 ============================================================================ +03:49:52 [ 1] [ 4] [0800] +03:49:52 [ 7] [ 10] [0319084859] +03:49:52 [ 11] [ 6] [154133] +03:49:52 [ 70] [ 3] [301] +03:49:52 ============================================================================ +03:49:52 + + +waiting on router queue for slot.... +03:49:52 Sending to : +03:49:52 ============================================================================ +03:49:52 ============================================================================ +03:49:52 Slot Id : <440> +03:49:52 Transaction Type : RESPONSE +03:49:52 Received From : +03:49:52 ============================================================================ +03:49:52 FNo. Len. Field Value +03:49:52 ============================================================================ +03:49:52 [ 1] [ 4] [0810] +03:49:52 [ 7] [ 10] [0319084859] +03:49:52 [ 11] [ 6] [154133] +03:49:52 [ 39] [ 2] [00] +03:49:52 [ 70] [ 3] [301] +03:49:52 ============================================================================ +03:49:52 Calculate Source COMM Id = 2 +03:49:52 ============================================================================ +03:49:52 + + +waiting on router queue for slot.... +03:49:56 ============================================================================ +03:49:56 Slot Id : <460> +03:49:56 Transaction Type : REQUEST +03:49:56 Received From : +03:49:56 ============================================================================ +03:49:56 FNo. Len. Field Value +03:49:56 ============================================================================ +03:49:56 [ 1] [ 4] [0800] +03:49:56 [ 7] [ 10] [0319205742] +03:49:56 [ 11] [ 6] [073326] +03:49:56 [ 37] [ 12] [57903073326] +03:49:56 [ 70] [ 3] [301] +03:49:56 ============================================================================ +03:49:56 + + +waiting on router queue for slot.... +03:49:56 Sending to : +03:49:56 ============================================================================ +03:49:56 ============================================================================ +03:49:56 Slot Id : <460> +03:49:56 Transaction Type : RESPONSE +03:49:56 Received From : +03:49:56 ============================================================================ +03:49:56 FNo. Len. Field Value +03:49:56 ============================================================================ +03:49:56 [ 1] [ 4] [0810] +03:49:56 [ 7] [ 10] [0319205742] +03:49:56 [ 11] [ 6] [073326] +03:49:56 [ 37] [ 12] [579030733260] +03:49:56 [ 39] [ 2] [00] +03:49:56 [ 70] [ 3] [810] +03:49:56 ============================================================================ +03:49:56 Calculate Source COMM Id = 1 +03:49:56 ============================================================================ +03:49:56 + + +waiting on router queue for slot.... +03:49:59 ============================================================================ +03:49:59 Slot Id : <432> +03:49:59 Transaction Type : REQUEST +03:49:59 Received From : +03:49:59 ============================================================================ +03:49:59 FNo. Len. Field Value +03:49:59 ============================================================================ +03:49:59 [ 1] [ 4] [0800] +03:49:59 [ 2] [ 5] [02531] +03:49:59 [ 3] [ 6] [579038] +03:49:59 [ 7] [ 10] [0319204959] +03:49:59 [ 11] [ 6] [806634] +03:49:59 [ 15] [ 10] [0319204959] +03:49:59 [ 37] [ 11] [57903806634] +03:49:59 [ 70] [ 3] [001] +03:49:59 ============================================================================ +03:49:59 + + +waiting on router queue for slot.... +03:49:59 ============================================================================ +03:49:59 Slot Id : <432> +03:49:59 Transaction Type : RESPONSE +03:49:59 Received From : +03:49:59 ============================================================================ +03:49:59 FNo. Len. Field Value +03:49:59 ============================================================================ +03:49:59 [ 1] [ 4] [0810] +03:49:59 [ 7] [ 10] [0319204959] +03:49:59 [ 11] [ 6] [806634] +03:49:59 [ 15] [ 4] [0319] +03:49:59 [ 37] [ 12] [57903806634] +03:49:59 [ 39] [ 2] [00] +03:49:59 [ 70] [ 3] [001] +03:49:59 ============================================================================ +03:49:59 Sending to : +03:49:59 ============================================================================ +03:49:59 + + +waiting on router queue for slot.... +03:50:03 ============================================================================ +03:50:03 Slot Id : <453> +03:50:03 Transaction Type : REQUEST +03:50:03 Received From : +03:50:03 ============================================================================ +03:50:03 FNo. Len. Field Value +03:50:03 ============================================================================ +03:50:03 [ 1] [ 4] [0800] +03:50:03 [ 7] [ 10] [0319084909] +03:50:03 [ 11] [ 6] [154134] +03:50:03 [ 70] [ 3] [301] +03:50:03 ============================================================================ +03:50:03 + + +waiting on router queue for slot.... +03:50:03 Sending to : +03:50:03 ============================================================================ +03:50:03 ============================================================================ +03:50:03 Slot Id : <453> +03:50:03 Transaction Type : RESPONSE +03:50:03 Received From : +03:50:03 ============================================================================ +03:50:03 FNo. Len. Field Value +03:50:03 ============================================================================ +03:50:03 [ 1] [ 4] [0810] +03:50:03 [ 7] [ 10] [0319084909] +03:50:03 [ 11] [ 6] [154134] +03:50:03 [ 39] [ 2] [00] +03:50:03 [ 70] [ 3] [301] +03:50:03 ============================================================================ +03:50:03 Calculate Source COMM Id = 2 +03:50:03 ============================================================================ +03:50:03 + + +waiting on router queue for slot.... +03:50:19 ============================================================================ +03:50:19 Slot Id : <482> +03:50:19 Transaction Type : REQUEST +03:50:19 Received From : +03:50:19 ============================================================================ +03:50:19 FNo. Len. Field Value +03:50:19 ============================================================================ +03:50:19 [ 1] [ 4] [0800] +03:50:19 [ 7] [ 10] [0319084925] +03:50:19 [ 11] [ 6] [154135] +03:50:19 [ 70] [ 3] [301] +03:50:19 ============================================================================ +03:50:19 + + +waiting on router queue for slot.... +03:50:19 Sending to : +03:50:19 ============================================================================ +03:50:19 ============================================================================ +03:50:19 Slot Id : <482> +03:50:19 Transaction Type : RESPONSE +03:50:19 Received From : +03:50:19 ============================================================================ +03:50:19 FNo. Len. Field Value +03:50:19 ============================================================================ +03:50:19 [ 1] [ 4] [0810] +03:50:19 [ 7] [ 10] [0319084925] +03:50:19 [ 11] [ 6] [154135] +03:50:19 [ 39] [ 2] [00] +03:50:19 [ 70] [ 3] [301] +03:50:19 ============================================================================ +03:50:19 Calculate Source COMM Id = 2 +03:50:19 ============================================================================ +03:50:19 + + +waiting on router queue for slot.... +03:50:34 ============================================================================ +03:50:34 Slot Id : <488> +03:50:34 Transaction Type : REQUEST +03:50:34 Received From : +03:50:34 ============================================================================ +03:50:34 FNo. Len. Field Value +03:50:34 ============================================================================ +03:50:34 [ 1] [ 4] [0800] +03:50:34 [ 7] [ 10] [0319084941] +03:50:34 [ 11] [ 6] [154136] +03:50:34 [ 70] [ 3] [301] +03:50:34 ============================================================================ +03:50:34 + + +waiting on router queue for slot.... +03:50:34 Sending to : +03:50:34 ============================================================================ +03:50:34 ============================================================================ +03:50:34 Slot Id : <488> +03:50:34 Transaction Type : RESPONSE +03:50:34 Received From : +03:50:34 ============================================================================ +03:50:34 FNo. Len. Field Value +03:50:34 ============================================================================ +03:50:34 [ 1] [ 4] [0810] +03:50:34 [ 7] [ 10] [0319084941] +03:50:34 [ 11] [ 6] [154136] +03:50:34 [ 39] [ 2] [00] +03:50:34 [ 70] [ 3] [301] +03:50:34 ============================================================================ +03:50:34 Calculate Source COMM Id = 2 +03:50:34 ============================================================================ +03:50:34 + + +waiting on router queue for slot.... +03:50:41 ============================================================================ +03:50:41 Slot Id : <470> +03:50:41 Transaction Type : REQUEST +03:50:41 Received From : +03:50:41 ============================================================================ +03:50:41 FNo. Len. Field Value +03:50:41 ============================================================================ +03:50:41 [ 1] [ 4] [0800] +03:50:41 [ 7] [ 10] [0320110229] +03:50:41 [ 11] [ 6] [040229] +03:50:41 [ 37] [ 12] [57904040229] +03:50:41 [ 70] [ 3] [301] +03:50:41 ============================================================================ +03:50:41 + + +waiting on router queue for slot.... +03:50:41 Sending to : +03:50:41 ============================================================================ +03:50:41 ============================================================================ +03:50:41 Slot Id : <470> +03:50:41 Transaction Type : RESPONSE +03:50:41 Received From : +03:50:41 ============================================================================ +03:50:41 FNo. Len. Field Value +03:50:41 ============================================================================ +03:50:41 [ 1] [ 4] [0810] +03:50:41 [ 7] [ 10] [0320110229] +03:50:41 [ 11] [ 6] [040229] +03:50:41 [ 37] [ 12] [579040402290] +03:50:41 [ 39] [ 2] [00] +03:50:41 [ 70] [ 3] [810] +03:50:41 ============================================================================ +03:50:41 Calculate Source COMM Id = 6 +03:50:41 ============================================================================ +03:50:41 + + +waiting on router queue for slot.... +03:50:45 ============================================================================ +03:50:45 Slot Id : <495> +03:50:45 Transaction Type : REQUEST +03:50:45 Received From : +03:50:45 ============================================================================ +03:50:45 FNo. Len. Field Value +03:50:45 ============================================================================ +03:50:45 [ 1] [ 4] [0800] +03:50:45 [ 7] [ 10] [0319084952] +03:50:45 [ 11] [ 6] [154137] +03:50:45 [ 70] [ 3] [301] +03:50:45 ============================================================================ +03:50:45 + + +waiting on router queue for slot.... +03:50:45 Sending to : +03:50:45 ============================================================================ +03:50:45 ============================================================================ +03:50:45 Slot Id : <495> +03:50:45 Transaction Type : RESPONSE +03:50:45 Received From : +03:50:45 ============================================================================ +03:50:45 FNo. Len. Field Value +03:50:45 ============================================================================ +03:50:45 [ 1] [ 4] [0810] +03:50:45 [ 7] [ 10] [0319084952] +03:50:45 [ 11] [ 6] [154137] +03:50:45 [ 39] [ 2] [00] +03:50:45 [ 70] [ 3] [301] +03:50:45 ============================================================================ +03:50:45 Calculate Source COMM Id = 2 +03:50:45 ============================================================================ +03:50:45 + + +waiting on router queue for slot.... +03:51:01 ============================================================================ +03:51:01 Slot Id : <490> +03:51:01 Transaction Type : REQUEST +03:51:01 Received From : +03:51:01 ============================================================================ +03:51:01 FNo. Len. Field Value +03:51:01 ============================================================================ +03:51:01 [ 1] [ 4] [0800] +03:51:01 [ 2] [ 5] [02531] +03:51:01 [ 3] [ 6] [579038] +03:51:01 [ 7] [ 10] [0319205101] +03:51:01 [ 11] [ 6] [806635] +03:51:01 [ 15] [ 10] [0319205101] +03:51:01 [ 37] [ 11] [57903806635] +03:51:01 [ 70] [ 3] [001] +03:51:01 ============================================================================ +03:51:01 + + +waiting on router queue for slot.... +03:51:01 ============================================================================ +03:51:01 Slot Id : <490> +03:51:01 Transaction Type : RESPONSE +03:51:01 Received From : +03:51:01 ============================================================================ +03:51:01 FNo. Len. Field Value +03:51:01 ============================================================================ +03:51:01 [ 1] [ 4] [0810] +03:51:01 [ 7] [ 10] [0319205101] +03:51:01 [ 11] [ 6] [806635] +03:51:01 [ 15] [ 4] [0319] +03:51:01 [ 37] [ 12] [57903806635] +03:51:01 [ 39] [ 2] [00] +03:51:01 [ 70] [ 3] [001] +03:51:01 ============================================================================ +03:51:01 Sending to : +03:51:01 ============================================================================ +03:51:01 + + +waiting on router queue for slot.... +03:51:02 ============================================================================ +03:51:02 Slot Id : <463> +03:51:02 Transaction Type : REQUEST +03:51:02 Received From : +03:51:02 ============================================================================ +03:51:02 FNo. Len. Field Value +03:51:02 ============================================================================ +03:51:02 [ 1] [ 4] [0800] +03:51:02 [ 7] [ 10] [0319085008] +03:51:02 [ 11] [ 6] [154138] +03:51:02 [ 70] [ 3] [301] +03:51:02 ============================================================================ +03:51:02 + + +waiting on router queue for slot.... +03:51:02 Sending to : +03:51:02 ============================================================================ +03:51:02 ============================================================================ +03:51:02 Slot Id : <463> +03:51:02 Transaction Type : RESPONSE +03:51:02 Received From : +03:51:02 ============================================================================ +03:51:02 FNo. Len. Field Value +03:51:02 ============================================================================ +03:51:02 [ 1] [ 4] [0810] +03:51:02 [ 7] [ 10] [0319085008] +03:51:02 [ 11] [ 6] [154138] +03:51:02 [ 39] [ 2] [00] +03:51:02 [ 70] [ 3] [301] +03:51:02 ============================================================================ +03:51:02 Calculate Source COMM Id = 2 +03:51:02 ============================================================================ +03:51:02 + + +waiting on router queue for slot.... +03:51:12 ============================================================================ +03:51:12 Slot Id : <448> +03:51:12 Transaction Type : REQUEST +03:51:12 Received From : +03:51:12 ============================================================================ +03:51:12 FNo. Len. Field Value +03:51:12 ============================================================================ +03:51:12 [ 1] [ 4] [0800] +03:51:12 [ 7] [ 10] [0319085019] +03:51:12 [ 11] [ 6] [154139] +03:51:12 [ 70] [ 3] [301] +03:51:12 ============================================================================ +03:51:12 + + +waiting on router queue for slot.... +03:51:13 Sending to : +03:51:13 ============================================================================ +03:51:13 ============================================================================ +03:51:13 Slot Id : <448> +03:51:13 Transaction Type : RESPONSE +03:51:13 Received From : +03:51:13 ============================================================================ +03:51:13 FNo. Len. Field Value +03:51:13 ============================================================================ +03:51:13 [ 1] [ 4] [0810] +03:51:13 [ 7] [ 10] [0319085019] +03:51:13 [ 11] [ 6] [154139] +03:51:13 [ 39] [ 2] [00] +03:51:13 [ 70] [ 3] [301] +03:51:13 ============================================================================ +03:51:13 Calculate Source COMM Id = 2 +03:51:13 ============================================================================ +03:51:13 + + +waiting on router queue for slot.... +03:51:21 ============================================================================ +03:51:21 Slot Id : <484> +03:51:21 Transaction Type : REQUEST +03:51:21 Received From : +03:51:21 ============================================================================ +03:51:21 FNo. Len. Field Value +03:51:21 ============================================================================ +03:51:21 [ 1] [ 4] [0800] +03:51:21 [ 7] [ 10] [0319204912] +03:51:21 [ 11] [ 6] [086096] +03:51:21 [ 37] [ 12] [57903086096] +03:51:21 [ 70] [ 3] [301] +03:51:21 ============================================================================ +03:51:21 + + +waiting on router queue for slot.... +03:51:21 Sending to : +03:51:21 ============================================================================ +03:51:21 ============================================================================ +03:51:21 Slot Id : <484> +03:51:21 Transaction Type : RESPONSE +03:51:21 Received From : +03:51:21 ============================================================================ +03:51:21 FNo. Len. Field Value +03:51:21 ============================================================================ +03:51:21 [ 1] [ 4] [0810] +03:51:21 [ 7] [ 10] [0319204912] +03:51:21 [ 11] [ 6] [086096] +03:51:21 [ 37] [ 12] [579030860960] +03:51:21 [ 39] [ 2] [00] +03:51:21 [ 70] [ 3] [810] +03:51:21 ============================================================================ +03:51:21 Calculate Source COMM Id = 4 +03:51:21 ============================================================================ +03:51:21 + + +waiting on router queue for slot.... +03:51:23 ============================================================================ +03:51:23 Slot Id : <471> +03:51:23 Transaction Type : REQUEST +03:51:23 Received From : +03:51:23 ============================================================================ +03:51:23 FNo. Len. Field Value +03:51:23 ============================================================================ +03:51:23 [ 1] [ 4] [0800] +03:51:23 [ 7] [ 10] [0319085030] +03:51:23 [ 11] [ 6] [154140] +03:51:23 [ 70] [ 3] [301] +03:51:23 ============================================================================ +03:51:23 + + +waiting on router queue for slot.... +03:51:23 Sending to : +03:51:23 ============================================================================ +03:51:23 ============================================================================ +03:51:23 Slot Id : <471> +03:51:23 Transaction Type : RESPONSE +03:51:23 Received From : +03:51:23 ============================================================================ +03:51:23 FNo. Len. Field Value +03:51:23 ============================================================================ +03:51:23 [ 1] [ 4] [0810] +03:51:23 [ 7] [ 10] [0319085030] +03:51:23 [ 11] [ 6] [154140] +03:51:23 [ 39] [ 2] [00] +03:51:23 [ 70] [ 3] [301] +03:51:23 ============================================================================ +03:51:23 Calculate Source COMM Id = 2 +03:51:23 ============================================================================ +03:51:23 + + +waiting on router queue for slot.... +03:51:34 ============================================================================ +03:51:34 Slot Id : <480> +03:51:34 Transaction Type : REQUEST +03:51:34 Received From : +03:51:34 ============================================================================ +03:51:34 FNo. Len. Field Value +03:51:34 ============================================================================ +03:51:34 [ 1] [ 4] [0800] +03:51:34 [ 7] [ 10] [0319085041] +03:51:34 [ 11] [ 6] [154141] +03:51:34 [ 70] [ 3] [301] +03:51:34 ============================================================================ +03:51:34 + + +waiting on router queue for slot.... +03:51:34 Sending to : +03:51:34 ============================================================================ +03:51:34 ============================================================================ +03:51:34 Slot Id : <480> +03:51:34 Transaction Type : RESPONSE +03:51:34 Received From : +03:51:34 ============================================================================ +03:51:34 FNo. Len. Field Value +03:51:34 ============================================================================ +03:51:34 [ 1] [ 4] [0810] +03:51:34 [ 7] [ 10] [0319085041] +03:51:34 [ 11] [ 6] [154141] +03:51:34 [ 39] [ 2] [00] +03:51:34 [ 70] [ 3] [301] +03:51:34 ============================================================================ +03:51:34 Calculate Source COMM Id = 2 +03:51:34 ============================================================================ +03:51:34 + + +waiting on router queue for slot.... +03:51:45 ============================================================================ +03:51:45 Slot Id : <479> +03:51:45 Transaction Type : REQUEST +03:51:45 Received From : +03:51:45 ============================================================================ +03:51:45 FNo. Len. Field Value +03:51:45 ============================================================================ +03:51:45 [ 1] [ 4] [0800] +03:51:45 [ 7] [ 10] [0319085052] +03:51:45 [ 11] [ 6] [154142] +03:51:45 [ 70] [ 3] [301] +03:51:45 ============================================================================ +03:51:45 + + +waiting on router queue for slot.... +03:51:45 Sending to : +03:51:45 ============================================================================ +03:51:45 ============================================================================ +03:51:45 Slot Id : <479> +03:51:45 Transaction Type : RESPONSE +03:51:45 Received From : +03:51:45 ============================================================================ +03:51:45 FNo. Len. Field Value +03:51:45 ============================================================================ +03:51:45 [ 1] [ 4] [0810] +03:51:45 [ 7] [ 10] [0319085052] +03:51:45 [ 11] [ 6] [154142] +03:51:45 [ 39] [ 2] [00] +03:51:45 [ 70] [ 3] [301] +03:51:45 ============================================================================ +03:51:45 Calculate Source COMM Id = 2 +03:51:45 ============================================================================ +03:51:45 + + +waiting on router queue for slot.... +03:51:46 ============================================================================ +03:51:46 Slot Id : <498> +03:51:46 Transaction Type : REQUEST +03:51:46 Received From : +03:51:46 ============================================================================ +03:51:46 FNo. Len. Field Value +03:51:46 ============================================================================ +03:51:46 [ 1] [ 4] [0800] +03:51:46 [ 7] [ 10] [0320110334] +03:51:46 [ 11] [ 6] [040334] +03:51:46 [ 37] [ 12] [57904040334] +03:51:46 [ 70] [ 3] [301] +03:51:46 ============================================================================ +03:51:46 + + +waiting on router queue for slot.... +03:51:46 Sending to : +03:51:46 ============================================================================ +03:51:46 ============================================================================ +03:51:46 Slot Id : <498> +03:51:46 Transaction Type : RESPONSE +03:51:46 Received From : +03:51:46 ============================================================================ +03:51:46 FNo. Len. Field Value +03:51:46 ============================================================================ +03:51:46 [ 1] [ 4] [0810] +03:51:46 [ 7] [ 10] [0320110334] +03:51:46 [ 11] [ 6] [040334] +03:51:46 [ 37] [ 12] [579040403340] +03:51:46 [ 39] [ 2] [00] +03:51:46 [ 70] [ 3] [810] +03:51:46 ============================================================================ +03:51:46 Calculate Source COMM Id = 6 +03:51:46 ============================================================================ +03:51:46 + + +waiting on router queue for slot.... +03:51:56 ============================================================================ +03:51:56 Slot Id : <0> +03:51:56 Transaction Type : REQUEST +03:51:56 Received From : +03:51:56 ============================================================================ +03:51:56 FNo. Len. Field Value +03:51:56 ============================================================================ +03:51:56 [ 1] [ 4] [0800] +03:51:56 [ 7] [ 10] [0319085103] +03:51:56 [ 11] [ 6] [154143] +03:51:56 [ 70] [ 3] [301] +03:51:56 ============================================================================ +03:51:56 + + +waiting on router queue for slot.... +03:51:56 Sending to : +03:51:56 ============================================================================ +03:51:56 ============================================================================ +03:51:56 Slot Id : <0> +03:51:56 Transaction Type : RESPONSE +03:51:56 Received From : +03:51:56 ============================================================================ +03:51:56 FNo. Len. Field Value +03:51:56 ============================================================================ +03:51:56 [ 1] [ 4] [0810] +03:51:56 [ 7] [ 10] [0319085103] +03:51:56 [ 11] [ 6] [154143] +03:51:56 [ 39] [ 2] [00] +03:51:56 [ 70] [ 3] [301] +03:51:56 ============================================================================ +03:51:56 Calculate Source COMM Id = 2 +03:51:56 ============================================================================ +03:51:56 + + +waiting on router queue for slot.... +03:52:03 ============================================================================ +03:52:03 Slot Id : <2> +03:52:03 Transaction Type : REQUEST +03:52:03 Received From : +03:52:03 ============================================================================ +03:52:03 FNo. Len. Field Value +03:52:03 ============================================================================ +03:52:03 [ 1] [ 4] [0800] +03:52:03 [ 2] [ 5] [02531] +03:52:03 [ 3] [ 6] [579038] +03:52:03 [ 7] [ 10] [0319205203] +03:52:03 [ 11] [ 6] [806636] +03:52:03 [ 15] [ 10] [0319205203] +03:52:03 [ 37] [ 11] [57903806636] +03:52:03 [ 70] [ 3] [001] +03:52:03 ============================================================================ +03:52:03 + + +waiting on router queue for slot.... +03:52:03 ============================================================================ +03:52:03 Slot Id : <2> +03:52:03 Transaction Type : RESPONSE +03:52:03 Received From : +03:52:03 ============================================================================ +03:52:03 FNo. Len. Field Value +03:52:03 ============================================================================ +03:52:03 [ 1] [ 4] [0810] +03:52:03 [ 7] [ 10] [0319205203] +03:52:03 [ 11] [ 6] [806636] +03:52:03 [ 15] [ 4] [0319] +03:52:03 [ 37] [ 12] [57903806636] +03:52:03 [ 39] [ 2] [00] +03:52:03 [ 70] [ 3] [001] +03:52:03 ============================================================================ +03:52:03 Sending to : +03:52:03 ============================================================================ +03:52:03 + + +waiting on router queue for slot.... +03:52:08 ============================================================================ +03:52:08 Slot Id : <493> +03:52:08 Transaction Type : REQUEST +03:52:08 Received From : +03:52:08 ============================================================================ +03:52:08 FNo. Len. Field Value +03:52:08 ============================================================================ +03:52:08 [ 1] [ 4] [0800] +03:52:08 [ 7] [ 10] [0319085114] +03:52:08 [ 11] [ 6] [154144] +03:52:08 [ 70] [ 3] [301] +03:52:08 ============================================================================ +03:52:08 + + +waiting on router queue for slot.... +03:52:08 Sending to : +03:52:08 ============================================================================ +03:52:08 ============================================================================ +03:52:08 Slot Id : <493> +03:52:08 Transaction Type : RESPONSE +03:52:08 Received From : +03:52:08 ============================================================================ +03:52:08 FNo. Len. Field Value +03:52:08 ============================================================================ +03:52:08 [ 1] [ 4] [0810] +03:52:08 [ 7] [ 10] [0319085114] +03:52:08 [ 11] [ 6] [154144] +03:52:08 [ 39] [ 2] [00] +03:52:08 [ 70] [ 3] [301] +03:52:08 ============================================================================ +03:52:08 Calculate Source COMM Id = 2 +03:52:08 ============================================================================ +03:52:08 + + +waiting on router queue for slot.... +03:52:24 ============================================================================ +03:52:24 Slot Id : <473> +03:52:24 Transaction Type : REQUEST +03:52:24 Received From : +03:52:24 ============================================================================ +03:52:24 FNo. Len. Field Value +03:52:24 ============================================================================ +03:52:24 [ 1] [ 4] [0800] +03:52:24 [ 7] [ 10] [0319085130] +03:52:24 [ 11] [ 6] [154145] +03:52:24 [ 70] [ 3] [301] +03:52:24 ============================================================================ +03:52:24 + + +waiting on router queue for slot.... +03:52:24 Sending to : +03:52:24 ============================================================================ +03:52:24 ============================================================================ +03:52:24 Slot Id : <473> +03:52:24 Transaction Type : RESPONSE +03:52:24 Received From : +03:52:24 ============================================================================ +03:52:24 FNo. Len. Field Value +03:52:24 ============================================================================ +03:52:24 [ 1] [ 4] [0810] +03:52:24 [ 7] [ 10] [0319085130] +03:52:24 [ 11] [ 6] [154145] +03:52:24 [ 39] [ 2] [00] +03:52:24 [ 70] [ 3] [301] +03:52:24 ============================================================================ +03:52:24 Calculate Source COMM Id = 2 +03:52:24 ============================================================================ +03:52:24 + + +waiting on router queue for slot.... +03:52:35 ============================================================================ +03:52:35 Slot Id : <1> +03:52:35 Transaction Type : REQUEST +03:52:35 Received From : +03:52:35 ============================================================================ +03:52:35 FNo. Len. Field Value +03:52:35 ============================================================================ +03:52:35 [ 1] [ 4] [0800] +03:52:35 [ 7] [ 10] [0319085141] +03:52:35 [ 11] [ 6] [154146] +03:52:35 [ 70] [ 3] [301] +03:52:35 ============================================================================ +03:52:35 + + +waiting on router queue for slot.... +03:52:35 Sending to : +03:52:35 ============================================================================ +03:52:35 ============================================================================ +03:52:35 Slot Id : <1> +03:52:35 Transaction Type : RESPONSE +03:52:35 Received From : +03:52:35 ============================================================================ +03:52:35 FNo. Len. Field Value +03:52:35 ============================================================================ +03:52:35 [ 1] [ 4] [0810] +03:52:35 [ 7] [ 10] [0319085141] +03:52:35 [ 11] [ 6] [154146] +03:52:35 [ 39] [ 2] [00] +03:52:35 [ 70] [ 3] [301] +03:52:35 ============================================================================ +03:52:35 Calculate Source COMM Id = 2 +03:52:35 ============================================================================ +03:52:35 + + +waiting on router queue for slot.... +03:52:47 ============================================================================ +03:52:47 Slot Id : <4> +03:52:47 Transaction Type : REQUEST +03:52:47 Received From : +03:52:47 ============================================================================ +03:52:47 FNo. Len. Field Value +03:52:47 ============================================================================ +03:52:47 [ 1] [ 4] [0800] +03:52:47 [ 7] [ 10] [0319085152] +03:52:47 [ 11] [ 6] [154147] +03:52:47 [ 70] [ 3] [301] +03:52:47 ============================================================================ +03:52:47 + + +waiting on router queue for slot.... +03:52:47 Sending to : +03:52:47 ============================================================================ +03:52:47 ============================================================================ +03:52:47 Slot Id : <4> +03:52:47 Transaction Type : RESPONSE +03:52:47 Received From : +03:52:47 ============================================================================ +03:52:47 FNo. Len. Field Value +03:52:47 ============================================================================ +03:52:47 [ 1] [ 4] [0810] +03:52:47 [ 7] [ 10] [0319085152] +03:52:47 [ 11] [ 6] [154147] +03:52:47 [ 39] [ 2] [00] +03:52:47 [ 70] [ 3] [301] +03:52:47 ============================================================================ +03:52:47 Calculate Source COMM Id = 2 +03:52:47 ============================================================================ +03:52:47 + + +waiting on router queue for slot.... +03:52:53 ============================================================================ +03:52:53 Slot Id : <474> +03:52:53 Transaction Type : REQUEST +03:52:53 Received From : +03:52:53 ============================================================================ +03:52:53 FNo. Len. Field Value +03:52:53 ============================================================================ +03:52:53 [ 1] [ 4] [0800] +03:52:53 [ 7] [ 10] [0320110439] +03:52:53 [ 11] [ 6] [040439] +03:52:53 [ 37] [ 12] [57904040439] +03:52:53 [ 70] [ 3] [301] +03:52:53 ============================================================================ +03:52:53 + + +waiting on router queue for slot.... +03:52:53 Sending to : +03:52:53 ============================================================================ +03:52:53 ============================================================================ +03:52:53 Slot Id : <474> +03:52:53 Transaction Type : RESPONSE +03:52:53 Received From : +03:52:53 ============================================================================ +03:52:53 FNo. Len. Field Value +03:52:53 ============================================================================ +03:52:53 [ 1] [ 4] [0810] +03:52:53 [ 7] [ 10] [0320110439] +03:52:53 [ 11] [ 6] [040439] +03:52:53 [ 37] [ 12] [579040404390] +03:52:53 [ 39] [ 2] [00] +03:52:53 [ 70] [ 3] [810] +03:52:53 ============================================================================ +03:52:53 Calculate Source COMM Id = 6 +03:52:53 ============================================================================ +03:52:53 + + +waiting on router queue for slot.... +03:53:01 ============================================================================ +03:53:01 Slot Id : <483> +03:53:01 Transaction Type : REQUEST +03:53:01 Received From : +03:53:01 ============================================================================ +03:53:01 FNo. Len. Field Value +03:53:01 ============================================================================ +03:53:01 [ 1] [ 4] [0800] +03:53:01 [ 7] [ 10] [0319085208] +03:53:01 [ 11] [ 6] [154148] +03:53:01 [ 70] [ 3] [301] +03:53:01 ============================================================================ +03:53:01 + + +waiting on router queue for slot.... +03:53:01 Sending to : +03:53:01 ============================================================================ +03:53:01 ============================================================================ +03:53:01 Slot Id : <483> +03:53:01 Transaction Type : RESPONSE +03:53:01 Received From : +03:53:01 ============================================================================ +03:53:01 FNo. Len. Field Value +03:53:01 ============================================================================ +03:53:01 [ 1] [ 4] [0810] +03:53:01 [ 7] [ 10] [0319085208] +03:53:01 [ 11] [ 6] [154148] +03:53:01 [ 39] [ 2] [00] +03:53:01 [ 70] [ 3] [301] +03:53:01 ============================================================================ +03:53:01 Calculate Source COMM Id = 2 +03:53:01 ============================================================================ +03:53:01 + + +waiting on router queue for slot.... +03:53:05 ============================================================================ +03:53:05 Slot Id : <476> +03:53:05 Transaction Type : REQUEST +03:53:05 Received From : +03:53:05 ============================================================================ +03:53:05 FNo. Len. Field Value +03:53:05 ============================================================================ +03:53:05 [ 1] [ 4] [0800] +03:53:05 [ 2] [ 5] [02531] +03:53:05 [ 3] [ 6] [579038] +03:53:05 [ 7] [ 10] [0319205305] +03:53:05 [ 11] [ 6] [806637] +03:53:05 [ 15] [ 10] [0319205305] +03:53:05 [ 37] [ 11] [57903806637] +03:53:05 [ 70] [ 3] [001] +03:53:05 ============================================================================ +03:53:05 + + +waiting on router queue for slot.... +03:53:05 ============================================================================ +03:53:05 Slot Id : <476> +03:53:05 Transaction Type : RESPONSE +03:53:05 Received From : +03:53:05 ============================================================================ +03:53:05 FNo. Len. Field Value +03:53:05 ============================================================================ +03:53:05 [ 1] [ 4] [0810] +03:53:05 [ 7] [ 10] [0319205305] +03:53:05 [ 11] [ 6] [806637] +03:53:05 [ 15] [ 4] [0319] +03:53:05 [ 37] [ 12] [57903806637] +03:53:05 [ 39] [ 2] [00] +03:53:05 [ 70] [ 3] [001] +03:53:05 ============================================================================ +03:53:05 Sending to : +03:53:05 ============================================================================ +03:53:05 + + +waiting on router queue for slot.... +03:53:12 ============================================================================ +03:53:12 Slot Id : <489> +03:53:12 Transaction Type : REQUEST +03:53:12 Received From : +03:53:12 ============================================================================ +03:53:12 FNo. Len. Field Value +03:53:12 ============================================================================ +03:53:12 [ 1] [ 4] [0800] +03:53:12 [ 7] [ 10] [0319085219] +03:53:12 [ 11] [ 6] [154149] +03:53:12 [ 70] [ 3] [301] +03:53:12 ============================================================================ +03:53:12 + + +waiting on router queue for slot.... +03:53:12 Sending to : +03:53:12 ============================================================================ +03:53:12 ============================================================================ +03:53:12 Slot Id : <489> +03:53:12 Transaction Type : RESPONSE +03:53:12 Received From : +03:53:12 ============================================================================ +03:53:12 FNo. Len. Field Value +03:53:12 ============================================================================ +03:53:12 [ 1] [ 4] [0810] +03:53:12 [ 7] [ 10] [0319085219] +03:53:12 [ 11] [ 6] [154149] +03:53:12 [ 39] [ 2] [00] +03:53:12 [ 70] [ 3] [301] +03:53:12 ============================================================================ +03:53:12 Calculate Source COMM Id = 2 +03:53:12 ============================================================================ +03:53:12 + + +waiting on router queue for slot.... +03:53:20 ============================================================================ +03:53:20 Slot Id : <477> +03:53:20 Transaction Type : REQUEST +03:53:20 Received From : +03:53:20 ============================================================================ +03:53:20 FNo. Len. Field Value +03:53:20 ============================================================================ +03:53:20 [ 1] [ 4] [0800] +03:53:20 [ 7] [ 10] [0320035306] +03:53:20 [ 11] [ 6] [013222] +03:53:20 [ 37] [ 12] [507903013222] +03:53:20 [ 70] [ 3] [ ] +03:53:20 ============================================================================ +03:53:20 + + +waiting on router queue for slot.... +03:53:20 Sending to : +03:53:20 ============================================================================ +03:53:20 ============================================================================ +03:53:20 Slot Id : <477> +03:53:20 Transaction Type : RESPONSE +03:53:20 Received From : +03:53:20 ============================================================================ +03:53:20 FNo. Len. Field Value +03:53:20 ============================================================================ +03:53:20 [ 1] [ 4] [0810] +03:53:20 [ 7] [ 10] [0320035306] +03:53:20 [ 11] [ 6] [013222] +03:53:20 [ 37] [ 12] [507903013222] +03:53:20 [ 39] [ 2] [91] +03:53:20 [ 70] [ 3] [ ] +03:53:20 ============================================================================ +03:53:20 Calculate Source COMM Id = 3 +03:53:20 ============================================================================ +03:53:20 + + +waiting on router queue for slot.... +03:53:23 ============================================================================ +03:53:23 Slot Id : <472> +03:53:23 Transaction Type : REQUEST +03:53:23 Received From : +03:53:23 ============================================================================ +03:53:23 FNo. Len. Field Value +03:53:23 ============================================================================ +03:53:23 [ 1] [ 4] [0800] +03:53:23 [ 7] [ 10] [0319085229] +03:53:23 [ 11] [ 6] [154150] +03:53:23 [ 70] [ 3] [301] +03:53:23 ============================================================================ +03:53:23 + + +waiting on router queue for slot.... +03:53:23 Sending to : +03:53:23 ============================================================================ +03:53:23 ============================================================================ +03:53:23 Slot Id : <472> +03:53:23 Transaction Type : RESPONSE +03:53:23 Received From : +03:53:23 ============================================================================ +03:53:23 FNo. Len. Field Value +03:53:23 ============================================================================ +03:53:23 [ 1] [ 4] [0810] +03:53:23 [ 7] [ 10] [0319085229] +03:53:23 [ 11] [ 6] [154150] +03:53:23 [ 39] [ 2] [00] +03:53:23 [ 70] [ 3] [301] +03:53:23 ============================================================================ +03:53:23 Calculate Source COMM Id = 2 +03:53:23 ============================================================================ +03:53:23 + + +waiting on router queue for slot.... +03:53:34 ============================================================================ +03:53:34 Slot Id : <486> +03:53:34 Transaction Type : REQUEST +03:53:34 Received From : +03:53:34 ============================================================================ +03:53:34 FNo. Len. Field Value +03:53:34 ============================================================================ +03:53:34 [ 1] [ 4] [0800] +03:53:34 [ 7] [ 10] [0319085241] +03:53:34 [ 11] [ 6] [154151] +03:53:34 [ 70] [ 3] [301] +03:53:34 ============================================================================ +03:53:34 + + +waiting on router queue for slot.... +03:53:34 Sending to : +03:53:34 ============================================================================ +03:53:34 ============================================================================ +03:53:34 Slot Id : <486> +03:53:34 Transaction Type : RESPONSE +03:53:34 Received From : +03:53:34 ============================================================================ +03:53:34 FNo. Len. Field Value +03:53:34 ============================================================================ +03:53:34 [ 1] [ 4] [0810] +03:53:34 [ 7] [ 10] [0319085241] +03:53:34 [ 11] [ 6] [154151] +03:53:34 [ 39] [ 2] [00] +03:53:34 [ 70] [ 3] [301] +03:53:34 ============================================================================ +03:53:34 Calculate Source COMM Id = 2 +03:53:34 ============================================================================ +03:53:34 + + +waiting on router queue for slot.... +03:53:50 ============================================================================ +03:53:50 Slot Id : <492> +03:53:50 Transaction Type : REQUEST +03:53:50 Received From : +03:53:50 ============================================================================ +03:53:50 FNo. Len. Field Value +03:53:50 ============================================================================ +03:53:50 [ 1] [ 4] [0800] +03:53:50 [ 7] [ 10] [0319085257] +03:53:50 [ 11] [ 6] [154152] +03:53:50 [ 70] [ 3] [301] +03:53:50 ============================================================================ +03:53:50 + + +waiting on router queue for slot.... +03:53:50 Sending to : +03:53:50 ============================================================================ +03:53:50 ============================================================================ +03:53:50 Slot Id : <492> +03:53:50 Transaction Type : RESPONSE +03:53:50 Received From : +03:53:50 ============================================================================ +03:53:50 FNo. Len. Field Value +03:53:50 ============================================================================ +03:53:50 [ 1] [ 4] [0810] +03:53:50 [ 7] [ 10] [0319085257] +03:53:50 [ 11] [ 6] [154152] +03:53:50 [ 39] [ 2] [00] +03:53:50 [ 70] [ 3] [301] +03:53:50 ============================================================================ +03:53:50 Calculate Source COMM Id = 2 +03:53:50 ============================================================================ +03:53:50 + + +waiting on router queue for slot.... +03:53:58 ============================================================================ +03:53:58 Slot Id : <6> +03:53:58 Transaction Type : REQUEST +03:53:58 Received From : +03:53:58 ============================================================================ +03:53:58 FNo. Len. Field Value +03:53:58 ============================================================================ +03:53:58 [ 1] [ 4] [0800] +03:53:58 [ 7] [ 10] [0320110544] +03:53:58 [ 11] [ 6] [040544] +03:53:58 [ 37] [ 12] [57904040544] +03:53:58 [ 70] [ 3] [301] +03:53:58 ============================================================================ +03:53:58 + + +waiting on router queue for slot.... +03:53:58 Sending to : +03:53:58 ============================================================================ +03:53:58 ============================================================================ +03:53:58 Slot Id : <6> +03:53:58 Transaction Type : RESPONSE +03:53:58 Received From : +03:53:58 ============================================================================ +03:53:58 FNo. Len. Field Value +03:53:58 ============================================================================ +03:53:58 [ 1] [ 4] [0810] +03:53:58 [ 7] [ 10] [0320110544] +03:53:58 [ 11] [ 6] [040544] +03:53:58 [ 37] [ 12] [579040405440] +03:53:58 [ 39] [ 2] [00] +03:53:58 [ 70] [ 3] [810] +03:53:58 ============================================================================ +03:53:58 Calculate Source COMM Id = 6 +03:53:58 ============================================================================ +03:53:58 + + +waiting on router queue for slot.... +03:54:01 ============================================================================ +03:54:01 Slot Id : <485> +03:54:01 Transaction Type : REQUEST +03:54:01 Received From : +03:54:01 ============================================================================ +03:54:01 FNo. Len. Field Value +03:54:01 ============================================================================ +03:54:01 [ 1] [ 4] [0800] +03:54:01 [ 7] [ 10] [0319085307] +03:54:01 [ 11] [ 6] [154153] +03:54:01 [ 70] [ 3] [301] +03:54:01 ============================================================================ +03:54:01 + + +waiting on router queue for slot.... +03:54:01 Sending to : +03:54:01 ============================================================================ +03:54:01 ============================================================================ +03:54:01 Slot Id : <485> +03:54:01 Transaction Type : RESPONSE +03:54:01 Received From : +03:54:01 ============================================================================ +03:54:01 FNo. Len. Field Value +03:54:01 ============================================================================ +03:54:01 [ 1] [ 4] [0810] +03:54:01 [ 7] [ 10] [0319085307] +03:54:01 [ 11] [ 6] [154153] +03:54:01 [ 39] [ 2] [00] +03:54:01 [ 70] [ 3] [301] +03:54:01 ============================================================================ +03:54:01 Calculate Source COMM Id = 2 +03:54:01 ============================================================================ +03:54:01 + + +waiting on router queue for slot.... +03:54:07 ============================================================================ +03:54:07 Slot Id : <454> +03:54:07 Transaction Type : REQUEST +03:54:07 Received From : +03:54:07 ============================================================================ +03:54:07 FNo. Len. Field Value +03:54:07 ============================================================================ +03:54:07 [ 1] [ 4] [0800] +03:54:07 [ 2] [ 5] [02531] +03:54:07 [ 3] [ 6] [579038] +03:54:07 [ 7] [ 10] [0319205407] +03:54:07 [ 11] [ 6] [806638] +03:54:07 [ 15] [ 10] [0319205407] +03:54:07 [ 37] [ 11] [57903806638] +03:54:07 [ 70] [ 3] [001] +03:54:07 ============================================================================ +03:54:07 + + +waiting on router queue for slot.... +03:54:07 ============================================================================ +03:54:07 Slot Id : <454> +03:54:07 Transaction Type : RESPONSE +03:54:07 Received From : +03:54:07 ============================================================================ +03:54:07 FNo. Len. Field Value +03:54:07 ============================================================================ +03:54:07 [ 1] [ 4] [0810] +03:54:07 [ 7] [ 10] [0319205407] +03:54:07 [ 11] [ 6] [806638] +03:54:07 [ 15] [ 4] [0319] +03:54:07 [ 37] [ 12] [57903806638] +03:54:07 [ 39] [ 2] [00] +03:54:07 [ 70] [ 3] [001] +03:54:07 ============================================================================ +03:54:07 Sending to : +03:54:07 ============================================================================ +03:54:07 + + +waiting on router queue for slot.... +03:54:12 ============================================================================ +03:54:12 Slot Id : <13> +03:54:12 Transaction Type : REQUEST +03:54:12 Received From : +03:54:12 ============================================================================ +03:54:12 FNo. Len. Field Value +03:54:12 ============================================================================ +03:54:12 [ 1] [ 4] [0800] +03:54:12 [ 7] [ 10] [0319085318] +03:54:12 [ 11] [ 6] [154154] +03:54:12 [ 70] [ 3] [301] +03:54:12 ============================================================================ +03:54:12 + + +waiting on router queue for slot.... +03:54:12 Sending to : +03:54:12 ============================================================================ +03:54:12 ============================================================================ +03:54:12 Slot Id : <13> +03:54:12 Transaction Type : RESPONSE +03:54:12 Received From : +03:54:12 ============================================================================ +03:54:12 FNo. Len. Field Value +03:54:12 ============================================================================ +03:54:12 [ 1] [ 4] [0810] +03:54:12 [ 7] [ 10] [0319085318] +03:54:12 [ 11] [ 6] [154154] +03:54:12 [ 39] [ 2] [00] +03:54:12 [ 70] [ 3] [301] +03:54:12 ============================================================================ +03:54:12 Calculate Source COMM Id = 2 +03:54:12 ============================================================================ +03:54:12 + + +waiting on router queue for slot.... +03:54:23 ============================================================================ +03:54:23 Slot Id : <14> +03:54:23 Transaction Type : REQUEST +03:54:23 Received From : +03:54:23 ============================================================================ +03:54:23 FNo. Len. Field Value +03:54:23 ============================================================================ +03:54:23 [ 1] [ 4] [0800] +03:54:23 [ 7] [ 10] [0319085330] +03:54:23 [ 11] [ 6] [154155] +03:54:23 [ 70] [ 3] [301] +03:54:23 ============================================================================ +03:54:23 + + +waiting on router queue for slot.... +03:54:23 Sending to : +03:54:23 ============================================================================ +03:54:23 ============================================================================ +03:54:23 Slot Id : <14> +03:54:23 Transaction Type : RESPONSE +03:54:23 Received From : +03:54:23 ============================================================================ +03:54:23 FNo. Len. Field Value +03:54:23 ============================================================================ +03:54:23 [ 1] [ 4] [0810] +03:54:23 [ 7] [ 10] [0319085330] +03:54:23 [ 11] [ 6] [154155] +03:54:23 [ 39] [ 2] [00] +03:54:23 [ 70] [ 3] [301] +03:54:23 ============================================================================ +03:54:23 Calculate Source COMM Id = 2 +03:54:23 ============================================================================ +03:54:23 + + +waiting on router queue for slot.... +03:54:39 ============================================================================ +03:54:39 Slot Id : <12> +03:54:39 Transaction Type : REQUEST +03:54:39 Received From : +03:54:39 ============================================================================ +03:54:39 FNo. Len. Field Value +03:54:39 ============================================================================ +03:54:39 [ 1] [ 4] [0800] +03:54:39 [ 7] [ 10] [0319085346] +03:54:39 [ 11] [ 6] [154156] +03:54:39 [ 70] [ 3] [301] +03:54:39 ============================================================================ +03:54:39 + + +waiting on router queue for slot.... +03:54:39 Sending to : +03:54:39 ============================================================================ +03:54:39 ============================================================================ +03:54:39 Slot Id : <12> +03:54:39 Transaction Type : RESPONSE +03:54:39 Received From : +03:54:39 ============================================================================ +03:54:39 FNo. Len. Field Value +03:54:39 ============================================================================ +03:54:39 [ 1] [ 4] [0810] +03:54:39 [ 7] [ 10] [0319085346] +03:54:39 [ 11] [ 6] [154156] +03:54:39 [ 39] [ 2] [00] +03:54:39 [ 70] [ 3] [301] +03:54:39 ============================================================================ +03:54:39 Calculate Source COMM Id = 2 +03:54:39 ============================================================================ +03:54:39 + + +waiting on router queue for slot.... +03:54:50 ============================================================================ +03:54:50 Slot Id : <16> +03:54:50 Transaction Type : REQUEST +03:54:50 Received From : +03:54:50 ============================================================================ +03:54:50 FNo. Len. Field Value +03:54:50 ============================================================================ +03:54:50 [ 1] [ 4] [0800] +03:54:50 [ 7] [ 10] [0319085357] +03:54:50 [ 11] [ 6] [154157] +03:54:50 [ 70] [ 3] [301] +03:54:50 ============================================================================ +03:54:50 + + +waiting on router queue for slot.... +03:54:50 Sending to : +03:54:50 ============================================================================ +03:54:50 ============================================================================ +03:54:50 Slot Id : <16> +03:54:50 Transaction Type : RESPONSE +03:54:50 Received From : +03:54:50 ============================================================================ +03:54:50 FNo. Len. Field Value +03:54:50 ============================================================================ +03:54:50 [ 1] [ 4] [0810] +03:54:50 [ 7] [ 10] [0319085357] +03:54:50 [ 11] [ 6] [154157] +03:54:50 [ 39] [ 2] [00] +03:54:50 [ 70] [ 3] [301] +03:54:50 ============================================================================ +03:54:50 Calculate Source COMM Id = 2 +03:54:50 ============================================================================ +03:54:50 + + +waiting on router queue for slot.... +03:54:56 ============================================================================ +03:54:56 Slot Id : <494> +03:54:56 Transaction Type : REQUEST +03:54:56 Received From : +03:54:56 ============================================================================ +03:54:56 FNo. Len. Field Value +03:54:56 ============================================================================ +03:54:56 [ 1] [ 4] [0800] +03:54:56 [ 7] [ 10] [0319210242] +03:54:56 [ 11] [ 6] [055465] +03:54:56 [ 37] [ 12] [57904055465] +03:54:56 [ 70] [ 3] [301] +03:54:56 ============================================================================ +03:54:56 + + +waiting on router queue for slot.... +03:54:56 Sending to : +03:54:56 ============================================================================ +03:54:56 ============================================================================ +03:54:56 Slot Id : <494> +03:54:56 Transaction Type : RESPONSE +03:54:56 Received From : +03:54:56 ============================================================================ +03:54:56 FNo. Len. Field Value +03:54:56 ============================================================================ +03:54:56 [ 1] [ 4] [0810] +03:54:56 [ 7] [ 10] [0319210242] +03:54:56 [ 11] [ 6] [055465] +03:54:56 [ 37] [ 12] [579040554650] +03:54:56 [ 39] [ 2] [00] +03:54:56 [ 70] [ 3] [810] +03:54:56 ============================================================================ +03:54:56 Calculate Source COMM Id = 1 +03:54:56 ============================================================================ +03:54:56 + + +waiting on router queue for slot.... +03:55:01 ============================================================================ +03:55:01 Slot Id : <469> +03:55:01 Transaction Type : REQUEST +03:55:01 Received From : +03:55:01 ============================================================================ +03:55:01 FNo. Len. Field Value +03:55:01 ============================================================================ +03:55:01 [ 1] [ 4] [0800] +03:55:01 [ 7] [ 10] [0319085408] +03:55:01 [ 11] [ 6] [154158] +03:55:01 [ 70] [ 3] [301] +03:55:01 ============================================================================ +03:55:01 + + +waiting on router queue for slot.... +03:55:01 Sending to : +03:55:01 ============================================================================ +03:55:01 ============================================================================ +03:55:01 Slot Id : <469> +03:55:01 Transaction Type : RESPONSE +03:55:01 Received From : +03:55:01 ============================================================================ +03:55:01 FNo. Len. Field Value +03:55:01 ============================================================================ +03:55:01 [ 1] [ 4] [0810] +03:55:01 [ 7] [ 10] [0319085408] +03:55:01 [ 11] [ 6] [154158] +03:55:01 [ 39] [ 2] [00] +03:55:01 [ 70] [ 3] [301] +03:55:01 ============================================================================ +03:55:01 Calculate Source COMM Id = 2 +03:55:01 ============================================================================ +03:55:01 + + +waiting on router queue for slot.... +03:55:03 ============================================================================ +03:55:03 Slot Id : <22> +03:55:03 Transaction Type : REQUEST +03:55:03 Received From : +03:55:03 ============================================================================ +03:55:03 FNo. Len. Field Value +03:55:03 ============================================================================ +03:55:03 [ 1] [ 4] [0800] +03:55:03 [ 7] [ 10] [0320110649] +03:55:03 [ 11] [ 6] [040649] +03:55:03 [ 37] [ 12] [57904040649] +03:55:03 [ 70] [ 3] [301] +03:55:03 ============================================================================ +03:55:03 + + +waiting on router queue for slot.... +03:55:03 Sending to : +03:55:03 ============================================================================ +03:55:03 ============================================================================ +03:55:03 Slot Id : <22> +03:55:03 Transaction Type : RESPONSE +03:55:03 Received From : +03:55:03 ============================================================================ +03:55:03 FNo. Len. Field Value +03:55:03 ============================================================================ +03:55:03 [ 1] [ 4] [0810] +03:55:03 [ 7] [ 10] [0320110649] +03:55:03 [ 11] [ 6] [040649] +03:55:03 [ 37] [ 12] [579040406490] +03:55:03 [ 39] [ 2] [00] +03:55:03 [ 70] [ 3] [810] +03:55:03 ============================================================================ +03:55:03 Calculate Source COMM Id = 6 +03:55:03 ============================================================================ +03:55:03 + + +waiting on router queue for slot.... +03:55:09 ============================================================================ +03:55:09 Slot Id : <491> +03:55:09 Transaction Type : REQUEST +03:55:09 Received From : +03:55:09 ============================================================================ +03:55:09 FNo. Len. Field Value +03:55:09 ============================================================================ +03:55:09 [ 1] [ 4] [0800] +03:55:09 [ 2] [ 5] [02531] +03:55:09 [ 3] [ 6] [579038] +03:55:09 [ 7] [ 10] [0319205509] +03:55:09 [ 11] [ 6] [806639] +03:55:09 [ 15] [ 10] [0319205509] +03:55:09 [ 37] [ 11] [57903806639] +03:55:09 [ 70] [ 3] [001] +03:55:09 ============================================================================ +03:55:09 + + +waiting on router queue for slot.... +03:55:09 ============================================================================ +03:55:09 Slot Id : <491> +03:55:09 Transaction Type : RESPONSE +03:55:09 Received From : +03:55:09 ============================================================================ +03:55:09 FNo. Len. Field Value +03:55:09 ============================================================================ +03:55:09 [ 1] [ 4] [0810] +03:55:09 [ 7] [ 10] [0319205509] +03:55:09 [ 11] [ 6] [806639] +03:55:09 [ 15] [ 4] [0319] +03:55:09 [ 37] [ 12] [57903806639] +03:55:09 [ 39] [ 2] [00] +03:55:09 [ 70] [ 3] [001] +03:55:09 ============================================================================ +03:55:09 Sending to : +03:55:09 ============================================================================ +03:55:09 + + +waiting on router queue for slot.... +03:55:12 ============================================================================ +03:55:12 Slot Id : <17> +03:55:12 Transaction Type : REQUEST +03:55:12 Received From : +03:55:12 ============================================================================ +03:55:12 FNo. Len. Field Value +03:55:12 ============================================================================ +03:55:12 [ 1] [ 4] [0800] +03:55:12 [ 7] [ 10] [0319085418] +03:55:12 [ 11] [ 6] [154159] +03:55:12 [ 70] [ 3] [301] +03:55:12 ============================================================================ +03:55:12 + + +waiting on router queue for slot.... +03:55:12 Sending to : +03:55:12 ============================================================================ +03:55:12 ============================================================================ +03:55:12 Slot Id : <17> +03:55:12 Transaction Type : RESPONSE +03:55:12 Received From : +03:55:12 ============================================================================ +03:55:12 FNo. Len. Field Value +03:55:12 ============================================================================ +03:55:12 [ 1] [ 4] [0810] +03:55:12 [ 7] [ 10] [0319085418] +03:55:12 [ 11] [ 6] [154159] +03:55:12 [ 39] [ 2] [00] +03:55:12 [ 70] [ 3] [301] +03:55:12 ============================================================================ +03:55:12 Calculate Source COMM Id = 2 +03:55:12 ============================================================================ +03:55:12 + + +waiting on router queue for slot.... +03:55:22 ============================================================================ +03:55:22 Slot Id : <499> +03:55:22 Transaction Type : REQUEST +03:55:22 Received From : +03:55:22 ============================================================================ +03:55:22 FNo. Len. Field Value +03:55:22 ============================================================================ +03:55:22 [ 1] [ 4] [0800] +03:55:22 [ 7] [ 10] [0319085429] +03:55:22 [ 11] [ 6] [154160] +03:55:22 [ 70] [ 3] [301] +03:55:22 ============================================================================ +03:55:22 + + +waiting on router queue for slot.... +03:55:22 Sending to : +03:55:22 ============================================================================ +03:55:22 ============================================================================ +03:55:22 Slot Id : <499> +03:55:22 Transaction Type : RESPONSE +03:55:22 Received From : +03:55:22 ============================================================================ +03:55:22 FNo. Len. Field Value +03:55:22 ============================================================================ +03:55:22 [ 1] [ 4] [0810] +03:55:22 [ 7] [ 10] [0319085429] +03:55:22 [ 11] [ 6] [154160] +03:55:22 [ 39] [ 2] [00] +03:55:22 [ 70] [ 3] [301] +03:55:22 ============================================================================ +03:55:22 Calculate Source COMM Id = 2 +03:55:22 ============================================================================ +03:55:22 + + +waiting on router queue for slot.... +03:55:33 ============================================================================ +03:55:33 Slot Id : <10> +03:55:33 Transaction Type : REQUEST +03:55:33 Received From : +03:55:33 ============================================================================ +03:55:33 FNo. Len. Field Value +03:55:33 ============================================================================ +03:55:33 [ 1] [ 4] [0800] +03:55:33 [ 7] [ 10] [0319085440] +03:55:33 [ 11] [ 6] [154161] +03:55:33 [ 70] [ 3] [301] +03:55:33 ============================================================================ +03:55:33 + + +waiting on router queue for slot.... +03:55:33 Sending to : +03:55:33 ============================================================================ +03:55:33 ============================================================================ +03:55:33 Slot Id : <10> +03:55:33 Transaction Type : RESPONSE +03:55:33 Received From : +03:55:33 ============================================================================ +03:55:33 FNo. Len. Field Value +03:55:33 ============================================================================ +03:55:33 [ 1] [ 4] [0810] +03:55:33 [ 7] [ 10] [0319085440] +03:55:33 [ 11] [ 6] [154161] +03:55:33 [ 39] [ 2] [00] +03:55:33 [ 70] [ 3] [301] +03:55:33 ============================================================================ +03:55:33 Calculate Source COMM Id = 2 +03:55:33 ============================================================================ +03:55:33 + + +waiting on router queue for slot.... +03:55:44 ============================================================================ +03:55:44 Slot Id : <31> +03:55:44 Transaction Type : REQUEST +03:55:44 Received From : +03:55:44 ============================================================================ +03:55:44 FNo. Len. Field Value +03:55:44 ============================================================================ +03:55:44 [ 1] [ 4] [0800] +03:55:44 [ 7] [ 10] [0319085450] +03:55:44 [ 11] [ 6] [154162] +03:55:44 [ 70] [ 3] [301] +03:55:44 ============================================================================ +03:55:44 + + +waiting on router queue for slot.... +03:55:44 Sending to : +03:55:44 ============================================================================ +03:55:44 ============================================================================ +03:55:44 Slot Id : <31> +03:55:44 Transaction Type : RESPONSE +03:55:44 Received From : +03:55:44 ============================================================================ +03:55:44 FNo. Len. Field Value +03:55:44 ============================================================================ +03:55:44 [ 1] [ 4] [0810] +03:55:44 [ 7] [ 10] [0319085450] +03:55:44 [ 11] [ 6] [154162] +03:55:44 [ 39] [ 2] [00] +03:55:44 [ 70] [ 3] [301] +03:55:44 ============================================================================ +03:55:44 Calculate Source COMM Id = 2 +03:55:44 ============================================================================ +03:55:44 + + +waiting on router queue for slot.... +03:55:59 ============================================================================ +03:55:59 Slot Id : <23> +03:55:59 Transaction Type : REQUEST +03:55:59 Received From : +03:55:59 ============================================================================ +03:55:59 FNo. Len. Field Value +03:55:59 ============================================================================ +03:55:59 [ 1] [ 4] [0800] +03:55:59 [ 7] [ 10] [0319085506] +03:55:59 [ 11] [ 6] [154163] +03:55:59 [ 70] [ 3] [301] +03:55:59 ============================================================================ +03:55:59 + + +waiting on router queue for slot.... +03:55:59 Sending to : +03:55:59 ============================================================================ +03:55:59 ============================================================================ +03:55:59 Slot Id : <23> +03:55:59 Transaction Type : RESPONSE +03:55:59 Received From : +03:55:59 ============================================================================ +03:55:59 FNo. Len. Field Value +03:55:59 ============================================================================ +03:55:59 [ 1] [ 4] [0810] +03:55:59 [ 7] [ 10] [0319085506] +03:55:59 [ 11] [ 6] [154163] +03:55:59 [ 39] [ 2] [00] +03:55:59 [ 70] [ 3] [301] +03:55:59 ============================================================================ +03:55:59 Calculate Source COMM Id = 2 +03:55:59 ============================================================================ +03:55:59 + + +waiting on router queue for slot.... +03:56:08 ============================================================================ +03:56:08 Slot Id : <3> +03:56:08 Transaction Type : REQUEST +03:56:08 Received From : +03:56:08 ============================================================================ +03:56:08 FNo. Len. Field Value +03:56:08 ============================================================================ +03:56:08 [ 1] [ 4] [0800] +03:56:08 [ 7] [ 10] [0320110754] +03:56:08 [ 11] [ 6] [040754] +03:56:08 [ 37] [ 12] [57904040754] +03:56:08 [ 70] [ 3] [301] +03:56:08 ============================================================================ +03:56:08 + + +waiting on router queue for slot.... +03:56:08 Sending to : +03:56:08 ============================================================================ +03:56:08 ============================================================================ +03:56:08 Slot Id : <3> +03:56:08 Transaction Type : RESPONSE +03:56:08 Received From : +03:56:08 ============================================================================ +03:56:08 FNo. Len. Field Value +03:56:08 ============================================================================ +03:56:08 [ 1] [ 4] [0810] +03:56:08 [ 7] [ 10] [0320110754] +03:56:08 [ 11] [ 6] [040754] +03:56:08 [ 37] [ 12] [579040407540] +03:56:08 [ 39] [ 2] [00] +03:56:08 [ 70] [ 3] [810] +03:56:08 ============================================================================ +03:56:08 Calculate Source COMM Id = 6 +03:56:08 ============================================================================ +03:56:08 + + +waiting on router queue for slot.... +03:56:11 ============================================================================ +03:56:11 Slot Id : <481> +03:56:11 Transaction Type : REQUEST +03:56:11 Received From : +03:56:11 ============================================================================ +03:56:11 FNo. Len. Field Value +03:56:11 ============================================================================ +03:56:11 [ 1] [ 4] [0800] +03:56:11 [ 2] [ 5] [02531] +03:56:11 [ 3] [ 6] [579038] +03:56:11 [ 7] [ 10] [0319205611] +03:56:11 [ 11] [ 6] [806640] +03:56:11 [ 15] [ 10] [0319205611] +03:56:11 [ 37] [ 11] [57903806640] +03:56:11 [ 70] [ 3] [001] +03:56:11 ============================================================================ +03:56:11 + + +waiting on router queue for slot.... +03:56:11 ============================================================================ +03:56:11 Slot Id : <481> +03:56:11 Transaction Type : RESPONSE +03:56:11 Received From : +03:56:11 ============================================================================ +03:56:11 FNo. Len. Field Value +03:56:11 ============================================================================ +03:56:11 [ 1] [ 4] [0810] +03:56:11 [ 7] [ 10] [0319205611] +03:56:11 [ 11] [ 6] [806640] +03:56:11 [ 15] [ 4] [0319] +03:56:11 [ 37] [ 12] [57903806640] +03:56:11 [ 39] [ 2] [00] +03:56:11 [ 70] [ 3] [001] +03:56:11 ============================================================================ +03:56:11 Sending to : +03:56:11 ============================================================================ +03:56:11 + + +waiting on router queue for slot.... +03:56:14 ============================================================================ +03:56:14 Slot Id : <29> +03:56:14 Transaction Type : REQUEST +03:56:14 Received From : +03:56:14 ============================================================================ +03:56:14 FNo. Len. Field Value +03:56:14 ============================================================================ +03:56:14 [ 1] [ 4] [0800] +03:56:14 [ 7] [ 10] [0319085521] +03:56:14 [ 11] [ 6] [154164] +03:56:14 [ 70] [ 3] [301] +03:56:14 ============================================================================ +03:56:14 + + +waiting on router queue for slot.... +03:56:14 Sending to : +03:56:14 ============================================================================ +03:56:14 ============================================================================ +03:56:14 Slot Id : <29> +03:56:14 Transaction Type : RESPONSE +03:56:14 Received From : +03:56:14 ============================================================================ +03:56:14 FNo. Len. Field Value +03:56:14 ============================================================================ +03:56:14 [ 1] [ 4] [0810] +03:56:14 [ 7] [ 10] [0319085521] +03:56:14 [ 11] [ 6] [154164] +03:56:14 [ 39] [ 2] [00] +03:56:14 [ 70] [ 3] [301] +03:56:14 ============================================================================ +03:56:14 Calculate Source COMM Id = 2 +03:56:14 ============================================================================ +03:56:14 + + +waiting on router queue for slot.... +03:56:21 ============================================================================ +03:56:21 Slot Id : <21> +03:56:21 Transaction Type : REQUEST +03:56:21 Received From : +03:56:21 ============================================================================ +03:56:21 FNo. Len. Field Value +03:56:21 ============================================================================ +03:56:21 [ 1] [ 4] [0800] +03:56:21 [ 7] [ 10] [0319205412] +03:56:21 [ 11] [ 6] [043705] +03:56:21 [ 37] [ 12] [57903043705] +03:56:21 [ 70] [ 3] [301] +03:56:21 ============================================================================ +03:56:21 + + +waiting on router queue for slot.... +03:56:21 Sending to : +03:56:21 ============================================================================ +03:56:21 ============================================================================ +03:56:21 Slot Id : <21> +03:56:21 Transaction Type : RESPONSE +03:56:21 Received From : +03:56:21 ============================================================================ +03:56:21 FNo. Len. Field Value +03:56:21 ============================================================================ +03:56:21 [ 1] [ 4] [0810] +03:56:21 [ 7] [ 10] [0319205412] +03:56:21 [ 11] [ 6] [043705] +03:56:21 [ 37] [ 12] [579030437050] +03:56:21 [ 39] [ 2] [00] +03:56:21 [ 70] [ 3] [810] +03:56:21 ============================================================================ +03:56:21 Calculate Source COMM Id = 4 +03:56:21 ============================================================================ +03:56:21 + + +waiting on router queue for slot.... +03:56:25 ============================================================================ +03:56:25 Slot Id : <7> +03:56:25 Transaction Type : REQUEST +03:56:25 Received From : +03:56:25 ============================================================================ +03:56:25 FNo. Len. Field Value +03:56:25 ============================================================================ +03:56:25 [ 1] [ 4] [0800] +03:56:25 [ 7] [ 10] [0319085532] +03:56:25 [ 11] [ 6] [154165] +03:56:25 [ 70] [ 3] [301] +03:56:25 ============================================================================ +03:56:25 + + +waiting on router queue for slot.... +03:56:25 Sending to : +03:56:25 ============================================================================ +03:56:25 ============================================================================ +03:56:25 Slot Id : <7> +03:56:25 Transaction Type : RESPONSE +03:56:25 Received From : +03:56:25 ============================================================================ +03:56:25 FNo. Len. Field Value +03:56:25 ============================================================================ +03:56:25 [ 1] [ 4] [0810] +03:56:25 [ 7] [ 10] [0319085532] +03:56:25 [ 11] [ 6] [154165] +03:56:25 [ 39] [ 2] [00] +03:56:25 [ 70] [ 3] [301] +03:56:25 ============================================================================ +03:56:25 Calculate Source COMM Id = 2 +03:56:25 ============================================================================ +03:56:25 + + +waiting on router queue for slot.... +03:56:36 ============================================================================ +03:56:36 Slot Id : <33> +03:56:36 Transaction Type : REQUEST +03:56:36 Received From : +03:56:36 ============================================================================ +03:56:36 FNo. Len. Field Value +03:56:36 ============================================================================ +03:56:36 [ 1] [ 4] [0800] +03:56:36 [ 7] [ 10] [0319085543] +03:56:36 [ 11] [ 6] [154166] +03:56:36 [ 70] [ 3] [301] +03:56:36 ============================================================================ +03:56:36 + + +waiting on router queue for slot.... +03:56:36 Sending to : +03:56:36 ============================================================================ +03:56:36 ============================================================================ +03:56:36 Slot Id : <33> +03:56:36 Transaction Type : RESPONSE +03:56:36 Received From : +03:56:36 ============================================================================ +03:56:36 FNo. Len. Field Value +03:56:36 ============================================================================ +03:56:36 [ 1] [ 4] [0810] +03:56:36 [ 7] [ 10] [0319085543] +03:56:36 [ 11] [ 6] [154166] +03:56:36 [ 39] [ 2] [00] +03:56:36 [ 70] [ 3] [301] +03:56:36 ============================================================================ +03:56:36 Calculate Source COMM Id = 2 +03:56:36 ============================================================================ +03:56:36 + + +waiting on router queue for slot.... +03:56:47 ============================================================================ +03:56:47 Slot Id : <11> +03:56:47 Transaction Type : REQUEST +03:56:47 Received From : +03:56:47 ============================================================================ +03:56:47 FNo. Len. Field Value +03:56:47 ============================================================================ +03:56:47 [ 1] [ 4] [0800] +03:56:47 [ 7] [ 10] [0319085554] +03:56:47 [ 11] [ 6] [154167] +03:56:47 [ 70] [ 3] [301] +03:56:47 ============================================================================ +03:56:47 + + +waiting on router queue for slot.... +03:56:47 Sending to : +03:56:47 ============================================================================ +03:56:47 ============================================================================ +03:56:47 Slot Id : <11> +03:56:47 Transaction Type : RESPONSE +03:56:47 Received From : +03:56:47 ============================================================================ +03:56:47 FNo. Len. Field Value +03:56:47 ============================================================================ +03:56:47 [ 1] [ 4] [0810] +03:56:47 [ 7] [ 10] [0319085554] +03:56:47 [ 11] [ 6] [154167] +03:56:47 [ 39] [ 2] [00] +03:56:47 [ 70] [ 3] [301] +03:56:47 ============================================================================ +03:56:47 Calculate Source COMM Id = 2 +03:56:47 ============================================================================ +03:56:47 + + +waiting on router queue for slot.... +03:56:58 ============================================================================ +03:56:58 Slot Id : <35> +03:56:58 Transaction Type : REQUEST +03:56:58 Received From : +03:56:58 ============================================================================ +03:56:58 FNo. Len. Field Value +03:56:58 ============================================================================ +03:56:58 [ 1] [ 4] [0800] +03:56:58 [ 7] [ 10] [0319085604] +03:56:58 [ 11] [ 6] [154168] +03:56:58 [ 70] [ 3] [301] +03:56:58 ============================================================================ +03:56:58 + + +waiting on router queue for slot.... +03:56:58 Sending to : +03:56:58 ============================================================================ +03:56:58 ============================================================================ +03:56:58 Slot Id : <35> +03:56:58 Transaction Type : RESPONSE +03:56:58 Received From : +03:56:58 ============================================================================ +03:56:58 FNo. Len. Field Value +03:56:58 ============================================================================ +03:56:58 [ 1] [ 4] [0810] +03:56:58 [ 7] [ 10] [0319085604] +03:56:58 [ 11] [ 6] [154168] +03:56:58 [ 39] [ 2] [00] +03:56:58 [ 70] [ 3] [301] +03:56:58 ============================================================================ +03:56:58 Calculate Source COMM Id = 2 +03:56:58 ============================================================================ +03:56:58 + + +waiting on router queue for slot.... +03:57:09 ============================================================================ +03:57:09 Slot Id : <496> +03:57:09 Transaction Type : REQUEST +03:57:09 Received From : +03:57:09 ============================================================================ +03:57:09 FNo. Len. Field Value +03:57:09 ============================================================================ +03:57:09 [ 1] [ 4] [0800] +03:57:09 [ 7] [ 10] [0319085616] +03:57:09 [ 11] [ 6] [154169] +03:57:09 [ 70] [ 3] [301] +03:57:09 ============================================================================ +03:57:09 + + +waiting on router queue for slot.... +03:57:09 Sending to : +03:57:09 ============================================================================ +03:57:09 ============================================================================ +03:57:09 Slot Id : <496> +03:57:09 Transaction Type : RESPONSE +03:57:09 Received From : +03:57:09 ============================================================================ +03:57:09 FNo. Len. Field Value +03:57:09 ============================================================================ +03:57:09 [ 1] [ 4] [0810] +03:57:09 [ 7] [ 10] [0319085616] +03:57:09 [ 11] [ 6] [154169] +03:57:09 [ 39] [ 2] [00] +03:57:09 [ 70] [ 3] [301] +03:57:09 ============================================================================ +03:57:09 Calculate Source COMM Id = 2 +03:57:09 ============================================================================ +03:57:09 + + +waiting on router queue for slot.... +03:57:13 ============================================================================ +03:57:13 Slot Id : <30> +03:57:13 Transaction Type : REQUEST +03:57:13 Received From : +03:57:13 ============================================================================ +03:57:13 FNo. Len. Field Value +03:57:13 ============================================================================ +03:57:13 [ 1] [ 4] [0800] +03:57:13 [ 7] [ 10] [0320110859] +03:57:13 [ 11] [ 6] [040859] +03:57:13 [ 37] [ 12] [57904040859] +03:57:13 [ 70] [ 3] [301] +03:57:13 ============================================================================ +03:57:13 + + +waiting on router queue for slot.... +03:57:13 Sending to : +03:57:13 ============================================================================ +03:57:13 ============================================================================ +03:57:13 Slot Id : <30> +03:57:13 Transaction Type : RESPONSE +03:57:13 Received From : +03:57:13 ============================================================================ +03:57:13 FNo. Len. Field Value +03:57:13 ============================================================================ +03:57:13 [ 1] [ 4] [0810] +03:57:13 [ 7] [ 10] [0320110859] +03:57:13 [ 11] [ 6] [040859] +03:57:13 [ 37] [ 12] [579040408590] +03:57:13 [ 39] [ 2] [00] +03:57:13 [ 70] [ 3] [810] +03:57:13 ============================================================================ +03:57:13 Calculate Source COMM Id = 6 +03:57:13 ============================================================================ +03:57:13 + + +waiting on router queue for slot.... +03:57:13 ============================================================================ +03:57:13 Slot Id : <36> +03:57:13 Transaction Type : REQUEST +03:57:13 Received From : +03:57:13 ============================================================================ +03:57:13 FNo. Len. Field Value +03:57:13 ============================================================================ +03:57:13 [ 1] [ 4] [0800] +03:57:13 [ 2] [ 5] [02531] +03:57:13 [ 3] [ 6] [579038] +03:57:13 [ 7] [ 10] [0319205713] +03:57:13 [ 11] [ 6] [806641] +03:57:13 [ 15] [ 10] [0319205713] +03:57:13 [ 37] [ 11] [57903806641] +03:57:13 [ 70] [ 3] [001] +03:57:13 ============================================================================ +03:57:13 + + +waiting on router queue for slot.... +03:57:13 ============================================================================ +03:57:13 Slot Id : <36> +03:57:13 Transaction Type : RESPONSE +03:57:13 Received From : +03:57:13 ============================================================================ +03:57:13 FNo. Len. Field Value +03:57:13 ============================================================================ +03:57:13 [ 1] [ 4] [0810] +03:57:13 [ 7] [ 10] [0319205713] +03:57:13 [ 11] [ 6] [806641] +03:57:13 [ 15] [ 4] [0319] +03:57:13 [ 37] [ 12] [57903806641] +03:57:13 [ 39] [ 2] [00] +03:57:13 [ 70] [ 3] [001] +03:57:13 ============================================================================ +03:57:13 Sending to : +03:57:13 ============================================================================ +03:57:13 + + +waiting on router queue for slot.... +03:57:25 ============================================================================ +03:57:25 Slot Id : <37> +03:57:25 Transaction Type : REQUEST +03:57:25 Received From : +03:57:25 ============================================================================ +03:57:25 FNo. Len. Field Value +03:57:25 ============================================================================ +03:57:25 [ 1] [ 4] [0800] +03:57:25 [ 7] [ 10] [0319085632] +03:57:25 [ 11] [ 6] [154170] +03:57:25 [ 70] [ 3] [301] +03:57:25 ============================================================================ +03:57:25 + + +waiting on router queue for slot.... +03:57:25 Sending to : +03:57:25 ============================================================================ +03:57:25 ============================================================================ +03:57:25 Slot Id : <37> +03:57:25 Transaction Type : RESPONSE +03:57:25 Received From : +03:57:25 ============================================================================ +03:57:25 FNo. Len. Field Value +03:57:25 ============================================================================ +03:57:25 [ 1] [ 4] [0810] +03:57:25 [ 7] [ 10] [0319085632] +03:57:25 [ 11] [ 6] [154170] +03:57:25 [ 39] [ 2] [00] +03:57:25 [ 70] [ 3] [301] +03:57:25 ============================================================================ +03:57:25 Calculate Source COMM Id = 2 +03:57:25 ============================================================================ +03:57:25 + + +waiting on router queue for slot.... +03:57:36 ============================================================================ +03:57:36 Slot Id : <32> +03:57:36 Transaction Type : REQUEST +03:57:36 Received From : +03:57:36 ============================================================================ +03:57:36 FNo. Len. Field Value +03:57:36 ============================================================================ +03:57:36 [ 1] [ 4] [0800] +03:57:36 [ 7] [ 10] [0319085643] +03:57:36 [ 11] [ 6] [154171] +03:57:36 [ 70] [ 3] [301] +03:57:36 ============================================================================ +03:57:36 + + +waiting on router queue for slot.... +03:57:36 Sending to : +03:57:36 ============================================================================ +03:57:36 ============================================================================ +03:57:36 Slot Id : <32> +03:57:36 Transaction Type : RESPONSE +03:57:36 Received From : +03:57:36 ============================================================================ +03:57:36 FNo. Len. Field Value +03:57:36 ============================================================================ +03:57:36 [ 1] [ 4] [0810] +03:57:36 [ 7] [ 10] [0319085643] +03:57:36 [ 11] [ 6] [154171] +03:57:36 [ 39] [ 2] [00] +03:57:36 [ 70] [ 3] [301] +03:57:36 ============================================================================ +03:57:36 Calculate Source COMM Id = 2 +03:57:36 ============================================================================ +03:57:36 + + +waiting on router queue for slot.... +03:57:47 ============================================================================ +03:57:47 Slot Id : <461> +03:57:47 Transaction Type : REQUEST +03:57:47 Received From : +03:57:47 ============================================================================ +03:57:47 FNo. Len. Field Value +03:57:47 ============================================================================ +03:57:47 [ 1] [ 4] [0800] +03:57:47 [ 7] [ 10] [0319085654] +03:57:47 [ 11] [ 6] [154172] +03:57:47 [ 70] [ 3] [301] +03:57:47 ============================================================================ +03:57:47 + + +waiting on router queue for slot.... +03:57:47 Sending to : +03:57:47 ============================================================================ +03:57:47 ============================================================================ +03:57:47 Slot Id : <461> +03:57:47 Transaction Type : RESPONSE +03:57:47 Received From : +03:57:47 ============================================================================ +03:57:47 FNo. Len. Field Value +03:57:47 ============================================================================ +03:57:47 [ 1] [ 4] [0810] +03:57:47 [ 7] [ 10] [0319085654] +03:57:47 [ 11] [ 6] [154172] +03:57:47 [ 39] [ 2] [00] +03:57:47 [ 70] [ 3] [301] +03:57:47 ============================================================================ +03:57:47 Calculate Source COMM Id = 2 +03:57:47 ============================================================================ +03:57:47 + + +waiting on router queue for slot.... +03:57:59 ============================================================================ +03:57:59 Slot Id : <9> +03:57:59 Transaction Type : REQUEST +03:57:59 Received From : +03:57:59 ============================================================================ +03:57:59 FNo. Len. Field Value +03:57:59 ============================================================================ +03:57:59 [ 1] [ 4] [0800] +03:57:59 [ 7] [ 10] [0319085705] +03:57:59 [ 11] [ 6] [154173] +03:57:59 [ 70] [ 3] [301] +03:57:59 ============================================================================ +03:57:59 + + +waiting on router queue for slot.... +03:57:59 Sending to : +03:57:59 ============================================================================ +03:57:59 ============================================================================ +03:57:59 Slot Id : <9> +03:57:59 Transaction Type : RESPONSE +03:57:59 Received From : +03:57:59 ============================================================================ +03:57:59 FNo. Len. Field Value +03:57:59 ============================================================================ +03:57:59 [ 1] [ 4] [0810] +03:57:59 [ 7] [ 10] [0319085705] +03:57:59 [ 11] [ 6] [154173] +03:57:59 [ 39] [ 2] [00] +03:57:59 [ 70] [ 3] [301] +03:57:59 ============================================================================ +03:57:59 Calculate Source COMM Id = 2 +03:57:59 ============================================================================ +03:57:59 + + +waiting on router queue for slot.... +03:58:10 ============================================================================ +03:58:10 Slot Id : <467> +03:58:10 Transaction Type : REQUEST +03:58:10 Received From : +03:58:10 ============================================================================ +03:58:10 FNo. Len. Field Value +03:58:10 ============================================================================ +03:58:10 [ 1] [ 4] [0800] +03:58:10 [ 7] [ 10] [0319085716] +03:58:10 [ 11] [ 6] [154174] +03:58:10 [ 70] [ 3] [301] +03:58:10 ============================================================================ +03:58:10 + + +waiting on router queue for slot.... +03:58:10 Sending to : +03:58:10 ============================================================================ +03:58:10 ============================================================================ +03:58:10 Slot Id : <467> +03:58:10 Transaction Type : RESPONSE +03:58:10 Received From : +03:58:10 ============================================================================ +03:58:10 FNo. Len. Field Value +03:58:10 ============================================================================ +03:58:10 [ 1] [ 4] [0810] +03:58:10 [ 7] [ 10] [0319085716] +03:58:10 [ 11] [ 6] [154174] +03:58:10 [ 39] [ 2] [00] +03:58:10 [ 70] [ 3] [301] +03:58:10 ============================================================================ +03:58:10 Calculate Source COMM Id = 2 +03:58:10 ============================================================================ +03:58:10 + + +waiting on router queue for slot.... +03:58:15 ============================================================================ +03:58:15 Slot Id : <45> +03:58:15 Transaction Type : REQUEST +03:58:15 Received From : +03:58:15 ============================================================================ +03:58:15 FNo. Len. Field Value +03:58:15 ============================================================================ +03:58:15 [ 1] [ 4] [0800] +03:58:15 [ 2] [ 5] [02531] +03:58:15 [ 3] [ 6] [579038] +03:58:15 [ 7] [ 10] [0319205815] +03:58:15 [ 11] [ 6] [806642] +03:58:15 [ 15] [ 10] [0319205815] +03:58:15 [ 37] [ 11] [57903806642] +03:58:15 [ 70] [ 3] [001] +03:58:15 ============================================================================ +03:58:15 + + +waiting on router queue for slot.... +03:58:15 ============================================================================ +03:58:15 Slot Id : <45> +03:58:15 Transaction Type : RESPONSE +03:58:15 Received From : +03:58:15 ============================================================================ +03:58:15 FNo. Len. Field Value +03:58:15 ============================================================================ +03:58:15 [ 1] [ 4] [0810] +03:58:15 [ 7] [ 10] [0319205815] +03:58:15 [ 11] [ 6] [806642] +03:58:15 [ 15] [ 4] [0319] +03:58:15 [ 37] [ 12] [57903806642] +03:58:15 [ 39] [ 2] [00] +03:58:15 [ 70] [ 3] [001] +03:58:15 ============================================================================ +03:58:15 Sending to : +03:58:15 ============================================================================ +03:58:15 + + +waiting on router queue for slot.... +03:58:18 ============================================================================ +03:58:18 Slot Id : <40> +03:58:18 Transaction Type : REQUEST +03:58:18 Received From : +03:58:18 ============================================================================ +03:58:18 FNo. Len. Field Value +03:58:18 ============================================================================ +03:58:18 [ 1] [ 4] [0800] +03:58:18 [ 7] [ 10] [0320111004] +03:58:18 [ 11] [ 6] [041004] +03:58:18 [ 37] [ 12] [57904041004] +03:58:18 [ 70] [ 3] [301] +03:58:18 ============================================================================ +03:58:18 + + +waiting on router queue for slot.... +03:58:18 Sending to : +03:58:18 ============================================================================ +03:58:18 ============================================================================ +03:58:18 Slot Id : <40> +03:58:18 Transaction Type : RESPONSE +03:58:18 Received From : +03:58:18 ============================================================================ +03:58:18 FNo. Len. Field Value +03:58:18 ============================================================================ +03:58:18 [ 1] [ 4] [0810] +03:58:18 [ 7] [ 10] [0320111004] +03:58:18 [ 11] [ 6] [041004] +03:58:18 [ 37] [ 12] [579040410040] +03:58:18 [ 39] [ 2] [00] +03:58:18 [ 70] [ 3] [810] +03:58:18 ============================================================================ +03:58:18 Calculate Source COMM Id = 6 +03:58:18 ============================================================================ +03:58:18 + + +waiting on router queue for slot.... +03:58:25 ============================================================================ +03:58:25 Slot Id : <18> +03:58:25 Transaction Type : REQUEST +03:58:25 Received From : +03:58:25 ============================================================================ +03:58:25 FNo. Len. Field Value +03:58:25 ============================================================================ +03:58:25 [ 1] [ 4] [0800] +03:58:25 [ 7] [ 10] [0319085732] +03:58:25 [ 11] [ 6] [154175] +03:58:25 [ 70] [ 3] [301] +03:58:25 ============================================================================ +03:58:25 + + +waiting on router queue for slot.... +03:58:25 Sending to : +03:58:25 ============================================================================ +03:58:25 ============================================================================ +03:58:25 Slot Id : <18> +03:58:25 Transaction Type : RESPONSE +03:58:25 Received From : +03:58:25 ============================================================================ +03:58:25 FNo. Len. Field Value +03:58:25 ============================================================================ +03:58:25 [ 1] [ 4] [0810] +03:58:25 [ 7] [ 10] [0319085732] +03:58:25 [ 11] [ 6] [154175] +03:58:25 [ 39] [ 2] [00] +03:58:25 [ 70] [ 3] [301] +03:58:25 ============================================================================ +03:58:25 Calculate Source COMM Id = 2 +03:58:25 ============================================================================ +03:58:25 + + +waiting on router queue for slot.... +03:58:36 ============================================================================ +03:58:36 Slot Id : <497> +03:58:36 Transaction Type : REQUEST +03:58:36 Received From : +03:58:36 ============================================================================ +03:58:36 FNo. Len. Field Value +03:58:36 ============================================================================ +03:58:36 [ 1] [ 4] [0800] +03:58:36 [ 7] [ 10] [0319085743] +03:58:36 [ 11] [ 6] [154176] +03:58:36 [ 70] [ 3] [301] +03:58:36 ============================================================================ +03:58:36 + + +waiting on router queue for slot.... +03:58:36 Sending to : +03:58:36 ============================================================================ +03:58:36 ============================================================================ +03:58:36 Slot Id : <497> +03:58:36 Transaction Type : RESPONSE +03:58:36 Received From : +03:58:36 ============================================================================ +03:58:36 FNo. Len. Field Value +03:58:36 ============================================================================ +03:58:36 [ 1] [ 4] [0810] +03:58:36 [ 7] [ 10] [0319085743] +03:58:36 [ 11] [ 6] [154176] +03:58:36 [ 39] [ 2] [00] +03:58:36 [ 70] [ 3] [301] +03:58:36 ============================================================================ +03:58:36 Calculate Source COMM Id = 2 +03:58:36 ============================================================================ +03:58:36 + + +waiting on router queue for slot.... +03:58:51 ============================================================================ +03:58:51 Slot Id : <28> +03:58:51 Transaction Type : REQUEST +03:58:51 Received From : +03:58:51 ============================================================================ +03:58:51 FNo. Len. Field Value +03:58:51 ============================================================================ +03:58:51 [ 1] [ 4] [0800] +03:58:51 [ 7] [ 10] [0319085758] +03:58:51 [ 11] [ 6] [154177] +03:58:51 [ 70] [ 3] [301] +03:58:51 ============================================================================ +03:58:51 + + +waiting on router queue for slot.... +03:58:51 Sending to : +03:58:51 ============================================================================ +03:58:51 ============================================================================ +03:58:51 Slot Id : <28> +03:58:51 Transaction Type : RESPONSE +03:58:51 Received From : +03:58:51 ============================================================================ +03:58:51 FNo. Len. Field Value +03:58:51 ============================================================================ +03:58:51 [ 1] [ 4] [0810] +03:58:51 [ 7] [ 10] [0319085758] +03:58:51 [ 11] [ 6] [154177] +03:58:51 [ 39] [ 2] [00] +03:58:51 [ 70] [ 3] [301] +03:58:51 ============================================================================ +03:58:51 Calculate Source COMM Id = 2 +03:58:51 ============================================================================ +03:58:51 + + +waiting on router queue for slot.... +03:59:08 ============================================================================ +03:59:08 Slot Id : <43> +03:59:08 Transaction Type : REQUEST +03:59:08 Received From : +03:59:08 ============================================================================ +03:59:08 FNo. Len. Field Value +03:59:08 ============================================================================ +03:59:08 [ 1] [ 4] [0800] +03:59:08 [ 7] [ 10] [0319085814] +03:59:08 [ 11] [ 6] [154178] +03:59:08 [ 70] [ 3] [301] +03:59:08 ============================================================================ +03:59:08 + + +waiting on router queue for slot.... +03:59:08 Sending to : +03:59:08 ============================================================================ +03:59:08 ============================================================================ +03:59:08 Slot Id : <43> +03:59:08 Transaction Type : RESPONSE +03:59:08 Received From : +03:59:08 ============================================================================ +03:59:08 FNo. Len. Field Value +03:59:08 ============================================================================ +03:59:08 [ 1] [ 4] [0810] +03:59:08 [ 7] [ 10] [0319085814] +03:59:08 [ 11] [ 6] [154178] +03:59:08 [ 39] [ 2] [00] +03:59:08 [ 70] [ 3] [301] +03:59:08 ============================================================================ +03:59:08 Calculate Source COMM Id = 2 +03:59:08 ============================================================================ +03:59:08 + + +waiting on router queue for slot.... +03:59:17 ============================================================================ +03:59:17 Slot Id : <8> +03:59:17 Transaction Type : REQUEST +03:59:17 Received From : +03:59:17 ============================================================================ +03:59:17 FNo. Len. Field Value +03:59:17 ============================================================================ +03:59:17 [ 1] [ 4] [0800] +03:59:17 [ 2] [ 5] [02531] +03:59:17 [ 3] [ 6] [579038] +03:59:17 [ 7] [ 10] [0319205917] +03:59:17 [ 11] [ 6] [806643] +03:59:17 [ 15] [ 10] [0319205917] +03:59:17 [ 37] [ 11] [57903806643] +03:59:17 [ 70] [ 3] [001] +03:59:17 ============================================================================ +03:59:17 + + +waiting on router queue for slot.... +03:59:17 ============================================================================ +03:59:17 Slot Id : <8> +03:59:17 Transaction Type : RESPONSE +03:59:17 Received From : +03:59:17 ============================================================================ +03:59:17 FNo. Len. Field Value +03:59:17 ============================================================================ +03:59:17 [ 1] [ 4] [0810] +03:59:17 [ 7] [ 10] [0319205917] +03:59:17 [ 11] [ 6] [806643] +03:59:17 [ 15] [ 4] [0319] +03:59:17 [ 37] [ 12] [57903806643] +03:59:17 [ 39] [ 2] [00] +03:59:17 [ 70] [ 3] [001] +03:59:17 ============================================================================ +03:59:17 Sending to : +03:59:17 ============================================================================ +03:59:17 + + +waiting on router queue for slot.... +03:59:22 ============================================================================ +03:59:22 Slot Id : <50> +03:59:22 Transaction Type : REQUEST +03:59:22 Received From : +03:59:22 ============================================================================ +03:59:22 FNo. Len. Field Value +03:59:22 ============================================================================ +03:59:22 [ 1] [ 4] [0800] +03:59:22 [ 7] [ 10] [0319085829] +03:59:22 [ 11] [ 6] [154179] +03:59:22 [ 70] [ 3] [301] +03:59:22 ============================================================================ +03:59:22 + + +waiting on router queue for slot.... +03:59:22 Sending to : +03:59:22 ============================================================================ +03:59:22 ============================================================================ +03:59:22 Slot Id : <50> +03:59:22 Transaction Type : RESPONSE +03:59:22 Received From : +03:59:22 ============================================================================ +03:59:22 FNo. Len. Field Value +03:59:22 ============================================================================ +03:59:22 [ 1] [ 4] [0810] +03:59:22 [ 7] [ 10] [0319085829] +03:59:22 [ 11] [ 6] [154179] +03:59:22 [ 39] [ 2] [00] +03:59:22 [ 70] [ 3] [301] +03:59:22 ============================================================================ +03:59:22 Calculate Source COMM Id = 2 +03:59:22 ============================================================================ +03:59:22 + + +waiting on router queue for slot.... +03:59:23 ============================================================================ +03:59:23 Slot Id : <52> +03:59:23 Transaction Type : REQUEST +03:59:23 Received From : +03:59:23 ============================================================================ +03:59:23 FNo. Len. Field Value +03:59:23 ============================================================================ +03:59:23 [ 1] [ 4] [0800] +03:59:23 [ 7] [ 10] [0320111109] +03:59:23 [ 11] [ 6] [041109] +03:59:23 [ 37] [ 12] [57904041109] +03:59:23 [ 70] [ 3] [301] +03:59:23 ============================================================================ +03:59:23 + + +waiting on router queue for slot.... +03:59:23 Sending to : +03:59:23 ============================================================================ +03:59:23 ============================================================================ +03:59:23 Slot Id : <52> +03:59:23 Transaction Type : RESPONSE +03:59:23 Received From : +03:59:23 ============================================================================ +03:59:23 FNo. Len. Field Value +03:59:23 ============================================================================ +03:59:23 [ 1] [ 4] [0810] +03:59:23 [ 7] [ 10] [0320111109] +03:59:23 [ 11] [ 6] [041109] +03:59:23 [ 37] [ 12] [579040411090] +03:59:23 [ 39] [ 2] [00] +03:59:23 [ 70] [ 3] [810] +03:59:23 ============================================================================ +03:59:23 Calculate Source COMM Id = 6 +03:59:23 ============================================================================ +03:59:23 + + +waiting on router queue for slot.... +03:59:33 ============================================================================ +03:59:33 Slot Id : <44> +03:59:33 Transaction Type : REQUEST +03:59:33 Received From : +03:59:33 ============================================================================ +03:59:33 FNo. Len. Field Value +03:59:33 ============================================================================ +03:59:33 [ 1] [ 4] [0800] +03:59:33 [ 7] [ 10] [0319085840] +03:59:33 [ 11] [ 6] [154180] +03:59:33 [ 70] [ 3] [301] +03:59:33 ============================================================================ +03:59:33 + + +waiting on router queue for slot.... +03:59:33 Sending to : +03:59:33 ============================================================================ +03:59:33 ============================================================================ +03:59:33 Slot Id : <44> +03:59:33 Transaction Type : RESPONSE +03:59:33 Received From : +03:59:33 ============================================================================ +03:59:33 FNo. Len. Field Value +03:59:33 ============================================================================ +03:59:33 [ 1] [ 4] [0810] +03:59:33 [ 7] [ 10] [0319085840] +03:59:33 [ 11] [ 6] [154180] +03:59:33 [ 39] [ 2] [00] +03:59:33 [ 70] [ 3] [301] +03:59:33 ============================================================================ +03:59:33 Calculate Source COMM Id = 2 +03:59:33 ============================================================================ +03:59:33 + + +waiting on router queue for slot.... +03:59:44 ============================================================================ +03:59:44 Slot Id : <61> +03:59:44 Transaction Type : REQUEST +03:59:44 Received From : +03:59:44 ============================================================================ +03:59:44 FNo. Len. Field Value +03:59:44 ============================================================================ +03:59:44 [ 1] [ 4] [0800] +03:59:44 [ 7] [ 10] [0319085851] +03:59:44 [ 11] [ 6] [154181] +03:59:44 [ 70] [ 3] [301] +03:59:44 ============================================================================ +03:59:44 + + +waiting on router queue for slot.... +03:59:44 Sending to : +03:59:44 ============================================================================ +03:59:44 ============================================================================ +03:59:44 Slot Id : <61> +03:59:44 Transaction Type : RESPONSE +03:59:44 Received From : +03:59:44 ============================================================================ +03:59:44 FNo. Len. Field Value +03:59:44 ============================================================================ +03:59:44 [ 1] [ 4] [0810] +03:59:44 [ 7] [ 10] [0319085851] +03:59:44 [ 11] [ 6] [154181] +03:59:44 [ 39] [ 2] [00] +03:59:44 [ 70] [ 3] [301] +03:59:44 ============================================================================ +03:59:44 Calculate Source COMM Id = 2 +03:59:44 ============================================================================ +03:59:44 + + +waiting on router queue for slot.... +03:59:49 ============================================================================ +03:59:49 Slot Id : <25> +03:59:49 Transaction Type : REQUEST +03:59:49 Received From : +03:59:49 ============================================================================ +03:59:49 FNo. Len. Field Value +03:59:49 ============================================================================ +03:59:49 [ 1] [ 4] [0800] +03:59:49 [ 7] [ 10] [0319205944] +03:59:49 [ 11] [ 6] [016970] +03:59:49 [ 37] [ 12] [507903016970] +03:59:49 [ 70] [ 3] [001] +03:59:49 ============================================================================ +03:59:49 + + +waiting on router queue for slot.... +03:59:49 Sending to : +03:59:49 ============================================================================ +03:59:49 ============================================================================ +03:59:49 Slot Id : <25> +03:59:49 Transaction Type : RESPONSE +03:59:49 Received From : +03:59:49 ============================================================================ +03:59:49 FNo. Len. Field Value +03:59:49 ============================================================================ +03:59:49 [ 1] [ 4] [0810] +03:59:49 [ 7] [ 10] [0319205944] +03:59:49 [ 11] [ 6] [016970] +03:59:49 [ 37] [ 12] [507903016970] +03:59:49 [ 39] [ 2] [00] +03:59:49 [ 70] [ 3] [001] +03:59:49 ============================================================================ +03:59:49 Calculate Source COMM Id = 0 +03:59:49 ============================================================================ +03:59:49 + + +waiting on router queue for slot.... +03:59:56 ============================================================================ +03:59:56 Slot Id : <15> +03:59:56 Transaction Type : REQUEST +03:59:56 Received From : +03:59:56 ============================================================================ +03:59:56 FNo. Len. Field Value +03:59:56 ============================================================================ +03:59:56 [ 1] [ 4] [0800] +03:59:56 [ 7] [ 10] [0319085901] +03:59:56 [ 11] [ 6] [154182] +03:59:56 [ 70] [ 3] [301] +03:59:56 ============================================================================ +03:59:56 + + +waiting on router queue for slot.... +03:59:56 Sending to : +03:59:56 ============================================================================ +03:59:56 ============================================================================ +03:59:56 Slot Id : <15> +03:59:56 Transaction Type : RESPONSE +03:59:56 Received From : +03:59:56 ============================================================================ +03:59:56 FNo. Len. Field Value +03:59:56 ============================================================================ +03:59:56 [ 1] [ 4] [0810] +03:59:56 [ 7] [ 10] [0319085901] +03:59:56 [ 11] [ 6] [154182] +03:59:56 [ 39] [ 2] [00] +03:59:56 [ 70] [ 3] [301] +03:59:56 ============================================================================ +03:59:56 Calculate Source COMM Id = 2 +03:59:56 ============================================================================ +03:59:56 + + +waiting on router queue for slot.... +03:59:56 ============================================================================ +03:59:56 Slot Id : <55> +03:59:56 Transaction Type : REQUEST +03:59:56 Received From : +03:59:56 ============================================================================ +03:59:56 FNo. Len. Field Value +03:59:56 ============================================================================ +03:59:56 [ 1] [ 4] [0800] +03:59:56 [ 7] [ 10] [0319210742] +03:59:56 [ 11] [ 6] [049135] +03:59:56 [ 37] [ 12] [57904049135] +03:59:56 [ 70] [ 3] [301] +03:59:56 ============================================================================ +03:59:56 + + +waiting on router queue for slot.... +03:59:56 Sending to : +03:59:56 ============================================================================ +03:59:56 ============================================================================ +03:59:56 Slot Id : <55> +03:59:56 Transaction Type : RESPONSE +03:59:56 Received From : +03:59:56 ============================================================================ +03:59:56 FNo. Len. Field Value +03:59:56 ============================================================================ +03:59:56 [ 1] [ 4] [0810] +03:59:56 [ 7] [ 10] [0319210742] +03:59:56 [ 11] [ 6] [049135] +03:59:56 [ 37] [ 12] [579040491350] +03:59:56 [ 39] [ 2] [00] +03:59:56 [ 70] [ 3] [810] +03:59:56 ============================================================================ +03:59:56 Calculate Source COMM Id = 1 +03:59:56 ============================================================================ +03:59:56 + + +waiting on router queue for slot.... +04:00:11 ============================================================================ +04:00:11 Slot Id : <478> +04:00:11 Transaction Type : REQUEST +04:00:11 Received From : +04:00:11 ============================================================================ +04:00:11 FNo. Len. Field Value +04:00:11 ============================================================================ +04:00:11 [ 1] [ 4] [0800] +04:00:11 [ 7] [ 10] [0319085918] +04:00:11 [ 11] [ 6] [154183] +04:00:11 [ 70] [ 3] [301] +04:00:11 ============================================================================ +04:00:11 + + +waiting on router queue for slot.... +04:00:11 Sending to : +04:00:11 ============================================================================ +04:00:11 ============================================================================ +04:00:11 Slot Id : <478> +04:00:11 Transaction Type : RESPONSE +04:00:11 Received From : +04:00:11 ============================================================================ +04:00:11 FNo. Len. Field Value +04:00:11 ============================================================================ +04:00:11 [ 1] [ 4] [0810] +04:00:11 [ 7] [ 10] [0319085918] +04:00:11 [ 11] [ 6] [154183] +04:00:11 [ 39] [ 2] [00] +04:00:11 [ 70] [ 3] [301] +04:00:11 ============================================================================ +04:00:11 Calculate Source COMM Id = 2 +04:00:11 ============================================================================ +04:00:11 + + +waiting on router queue for slot.... +04:00:19 ============================================================================ +04:00:19 Slot Id : <68> +04:00:19 Transaction Type : REQUEST +04:00:19 Received From : +04:00:19 ============================================================================ +04:00:19 FNo. Len. Field Value +04:00:19 ============================================================================ +04:00:19 [ 1] [ 4] [0800] +04:00:19 [ 2] [ 5] [02531] +04:00:19 [ 3] [ 6] [579048] +04:00:19 [ 7] [ 10] [0319210019] +04:00:19 [ 11] [ 6] [806644] +04:00:19 [ 15] [ 10] [0319210019] +04:00:19 [ 37] [ 11] [57904806644] +04:00:19 [ 70] [ 3] [001] +04:00:19 ============================================================================ +04:00:19 + + +waiting on router queue for slot.... +04:00:19 ============================================================================ +04:00:19 Slot Id : <68> +04:00:19 Transaction Type : RESPONSE +04:00:19 Received From : +04:00:19 ============================================================================ +04:00:19 FNo. Len. Field Value +04:00:19 ============================================================================ +04:00:19 [ 1] [ 4] [0810] +04:00:19 [ 7] [ 10] [0319210019] +04:00:19 [ 11] [ 6] [806644] +04:00:19 [ 15] [ 4] [0319] +04:00:19 [ 37] [ 12] [57904806644] +04:00:19 [ 39] [ 2] [00] +04:00:19 [ 70] [ 3] [001] +04:00:19 ============================================================================ +04:00:19 Sending to : +04:00:19 ============================================================================ +04:00:19 + + +waiting on router queue for slot.... +04:00:22 ============================================================================ +04:00:22 Slot Id : <63> +04:00:22 Transaction Type : REQUEST +04:00:22 Received From : +04:00:22 ============================================================================ +04:00:22 FNo. Len. Field Value +04:00:22 ============================================================================ +04:00:22 [ 1] [ 4] [0800] +04:00:22 [ 7] [ 10] [0319085929] +04:00:22 [ 11] [ 6] [154184] +04:00:22 [ 70] [ 3] [301] +04:00:22 ============================================================================ +04:00:22 + + +waiting on router queue for slot.... +04:00:22 Sending to : +04:00:22 ============================================================================ +04:00:22 ============================================================================ +04:00:22 Slot Id : <63> +04:00:22 Transaction Type : RESPONSE +04:00:22 Received From : +04:00:22 ============================================================================ +04:00:22 FNo. Len. Field Value +04:00:22 ============================================================================ +04:00:22 [ 1] [ 4] [0810] +04:00:22 [ 7] [ 10] [0319085929] +04:00:22 [ 11] [ 6] [154184] +04:00:22 [ 39] [ 2] [00] +04:00:22 [ 70] [ 3] [301] +04:00:22 ============================================================================ +04:00:22 Calculate Source COMM Id = 2 +04:00:22 ============================================================================ +04:00:22 + + +waiting on router queue for slot.... +04:00:28 ============================================================================ +04:00:28 Slot Id : <60> +04:00:28 Transaction Type : REQUEST +04:00:28 Received From : +04:00:28 ============================================================================ +04:00:28 FNo. Len. Field Value +04:00:28 ============================================================================ +04:00:28 [ 1] [ 4] [0800] +04:00:28 [ 7] [ 10] [0320111214] +04:00:28 [ 11] [ 6] [041214] +04:00:28 [ 37] [ 12] [57904041214] +04:00:28 [ 70] [ 3] [301] +04:00:28 ============================================================================ +04:00:28 + + +waiting on router queue for slot.... +04:00:28 Sending to : +04:00:28 ============================================================================ +04:00:28 ============================================================================ +04:00:28 Slot Id : <60> +04:00:28 Transaction Type : RESPONSE +04:00:28 Received From : +04:00:28 ============================================================================ +04:00:28 FNo. Len. Field Value +04:00:28 ============================================================================ +04:00:28 [ 1] [ 4] [0810] +04:00:28 [ 7] [ 10] [0320111214] +04:00:28 [ 11] [ 6] [041214] +04:00:28 [ 37] [ 12] [579040412140] +04:00:28 [ 39] [ 2] [00] +04:00:28 [ 70] [ 3] [810] +04:00:28 ============================================================================ +04:00:28 Calculate Source COMM Id = 6 +04:00:28 ============================================================================ +04:00:28 + + +waiting on router queue for slot.... +04:00:32 ============================================================================ +04:00:32 Slot Id : <464> +04:00:32 Transaction Type : REQUEST +04:00:32 Received From : +04:00:32 ============================================================================ +04:00:32 FNo. Len. Field Value +04:00:32 ============================================================================ +04:00:32 [ 1] [ 4] [0800] +04:00:32 [ 7] [ 10] [0319085939] +04:00:32 [ 11] [ 6] [154185] +04:00:32 [ 70] [ 3] [301] +04:00:32 ============================================================================ +04:00:32 + + +waiting on router queue for slot.... +04:00:32 Sending to : +04:00:32 ============================================================================ +04:00:32 ============================================================================ +04:00:32 Slot Id : <464> +04:00:32 Transaction Type : RESPONSE +04:00:32 Received From : +04:00:32 ============================================================================ +04:00:32 FNo. Len. Field Value +04:00:32 ============================================================================ +04:00:32 [ 1] [ 4] [0810] +04:00:32 [ 7] [ 10] [0319085939] +04:00:32 [ 11] [ 6] [154185] +04:00:32 [ 39] [ 2] [00] +04:00:32 [ 70] [ 3] [301] +04:00:32 ============================================================================ +04:00:32 Calculate Source COMM Id = 2 +04:00:32 ============================================================================ +04:00:32 + + +waiting on router queue for slot.... +04:00:44 ============================================================================ +04:00:44 Slot Id : <41> +04:00:44 Transaction Type : REQUEST +04:00:44 Received From : +04:00:44 ============================================================================ +04:00:44 FNo. Len. Field Value +04:00:44 ============================================================================ +04:00:44 [ 1] [ 4] [0800] +04:00:44 [ 7] [ 10] [0319085951] +04:00:44 [ 11] [ 6] [154186] +04:00:44 [ 70] [ 3] [301] +04:00:44 ============================================================================ +04:00:44 + + +waiting on router queue for slot.... +04:00:44 Sending to : +04:00:44 ============================================================================ +04:00:44 ============================================================================ +04:00:44 Slot Id : <41> +04:00:44 Transaction Type : RESPONSE +04:00:44 Received From : +04:00:44 ============================================================================ +04:00:44 FNo. Len. Field Value +04:00:44 ============================================================================ +04:00:44 [ 1] [ 4] [0810] +04:00:44 [ 7] [ 10] [0319085951] +04:00:44 [ 11] [ 6] [154186] +04:00:44 [ 39] [ 2] [00] +04:00:44 [ 70] [ 3] [301] +04:00:44 ============================================================================ +04:00:44 Calculate Source COMM Id = 2 +04:00:44 ============================================================================ +04:00:44 + + +waiting on router queue for slot.... +04:00:55 ============================================================================ +04:00:55 Slot Id : <38> +04:00:55 Transaction Type : REQUEST +04:00:55 Received From : +04:00:55 ============================================================================ +04:00:55 FNo. Len. Field Value +04:00:55 ============================================================================ +04:00:55 [ 1] [ 4] [0800] +04:00:55 [ 7] [ 10] [0319090001] +04:00:55 [ 11] [ 6] [154187] +04:00:55 [ 70] [ 3] [301] +04:00:55 ============================================================================ +04:00:55 + + +waiting on router queue for slot.... +04:00:55 Sending to : +04:00:55 ============================================================================ +04:00:55 ============================================================================ +04:00:55 Slot Id : <38> +04:00:55 Transaction Type : RESPONSE +04:00:55 Received From : +04:00:55 ============================================================================ +04:00:55 FNo. Len. Field Value +04:00:55 ============================================================================ +04:00:55 [ 1] [ 4] [0810] +04:00:55 [ 7] [ 10] [0319090001] +04:00:55 [ 11] [ 6] [154187] +04:00:55 [ 39] [ 2] [00] +04:00:55 [ 70] [ 3] [301] +04:00:55 ============================================================================ +04:00:55 Calculate Source COMM Id = 2 +04:00:55 ============================================================================ +04:00:55 + + +waiting on router queue for slot.... +04:01:10 ============================================================================ +04:01:10 Slot Id : <73> +04:01:10 Transaction Type : REQUEST +04:01:10 Received From : +04:01:10 ============================================================================ +04:01:10 FNo. Len. Field Value +04:01:10 ============================================================================ +04:01:10 [ 1] [ 4] [0800] +04:01:10 [ 7] [ 10] [0319090017] +04:01:10 [ 11] [ 6] [154188] +04:01:10 [ 70] [ 3] [301] +04:01:10 ============================================================================ +04:01:10 + + +waiting on router queue for slot.... +04:01:10 Sending to : +04:01:10 ============================================================================ +04:01:10 ============================================================================ +04:01:10 Slot Id : <73> +04:01:10 Transaction Type : RESPONSE +04:01:10 Received From : +04:01:10 ============================================================================ +04:01:10 FNo. Len. Field Value +04:01:10 ============================================================================ +04:01:10 [ 1] [ 4] [0810] +04:01:10 [ 7] [ 10] [0319090017] +04:01:10 [ 11] [ 6] [154188] +04:01:10 [ 39] [ 2] [00] +04:01:10 [ 70] [ 3] [301] +04:01:10 ============================================================================ +04:01:10 Calculate Source COMM Id = 2 +04:01:10 ============================================================================ +04:01:10 + + +waiting on router queue for slot.... +04:01:21 ============================================================================ +04:01:21 Slot Id : <20> +04:01:21 Transaction Type : REQUEST +04:01:21 Received From : +04:01:21 ============================================================================ +04:01:21 FNo. Len. Field Value +04:01:21 ============================================================================ +04:01:21 [ 1] [ 4] [0800] +04:01:21 [ 2] [ 5] [02531] +04:01:21 [ 3] [ 6] [579048] +04:01:21 [ 7] [ 10] [0319210121] +04:01:21 [ 11] [ 6] [806645] +04:01:21 [ 15] [ 10] [0319210121] +04:01:21 [ 37] [ 11] [57904806645] +04:01:21 [ 70] [ 3] [001] +04:01:21 ============================================================================ +04:01:21 + + +waiting on router queue for slot.... +04:01:21 ============================================================================ +04:01:21 Slot Id : <20> +04:01:21 Transaction Type : RESPONSE +04:01:21 Received From : +04:01:21 ============================================================================ +04:01:21 FNo. Len. Field Value +04:01:21 ============================================================================ +04:01:21 [ 1] [ 4] [0810] +04:01:21 [ 7] [ 10] [0319210121] +04:01:21 [ 11] [ 6] [806645] +04:01:21 [ 15] [ 4] [0319] +04:01:21 [ 37] [ 12] [57904806645] +04:01:21 [ 39] [ 2] [00] +04:01:21 [ 70] [ 3] [001] +04:01:21 ============================================================================ +04:01:21 Sending to : +04:01:21 ============================================================================ +04:01:21 + + +waiting on router queue for slot.... +04:01:21 ============================================================================ +04:01:21 Slot Id : <487> +04:01:21 Transaction Type : REQUEST +04:01:21 Received From : +04:01:21 ============================================================================ +04:01:21 FNo. Len. Field Value +04:01:21 ============================================================================ +04:01:21 [ 1] [ 4] [0800] +04:01:21 [ 7] [ 10] [0319205912] +04:01:21 [ 11] [ 6] [037771] +04:01:21 [ 37] [ 12] [57903037771] +04:01:21 [ 70] [ 3] [301] +04:01:21 ============================================================================ +04:01:21 + + +waiting on router queue for slot.... +04:01:21 Sending to : +04:01:21 ============================================================================ +04:01:21 ============================================================================ +04:01:21 Slot Id : <487> +04:01:21 Transaction Type : RESPONSE +04:01:21 Received From : +04:01:21 ============================================================================ +04:01:21 FNo. Len. Field Value +04:01:21 ============================================================================ +04:01:21 [ 1] [ 4] [0810] +04:01:21 [ 7] [ 10] [0319205912] +04:01:21 [ 11] [ 6] [037771] +04:01:21 [ 37] [ 12] [579030377710] +04:01:21 [ 39] [ 2] [00] +04:01:21 [ 70] [ 3] [810] +04:01:21 ============================================================================ +04:01:21 Calculate Source COMM Id = 4 +04:01:21 ============================================================================ +04:01:21 + + +waiting on router queue for slot.... +04:01:25 ============================================================================ +04:01:25 Slot Id : <27> +04:01:25 Transaction Type : REQUEST +04:01:25 Received From : +04:01:25 ============================================================================ +04:01:25 FNo. Len. Field Value +04:01:25 ============================================================================ +04:01:25 [ 1] [ 4] [0800] +04:01:25 [ 7] [ 10] [0319090032] +04:01:25 [ 11] [ 6] [154189] +04:01:25 [ 70] [ 3] [301] +04:01:25 ============================================================================ +04:01:25 + + +waiting on router queue for slot.... +04:01:25 Sending to : +04:01:25 ============================================================================ +04:01:25 ============================================================================ +04:01:25 Slot Id : <27> +04:01:25 Transaction Type : RESPONSE +04:01:25 Received From : +04:01:25 ============================================================================ +04:01:25 FNo. Len. Field Value +04:01:25 ============================================================================ +04:01:25 [ 1] [ 4] [0810] +04:01:25 [ 7] [ 10] [0319090032] +04:01:25 [ 11] [ 6] [154189] +04:01:25 [ 39] [ 2] [00] +04:01:25 [ 70] [ 3] [301] +04:01:25 ============================================================================ +04:01:25 Calculate Source COMM Id = 2 +04:01:25 ============================================================================ +04:01:25 + + +waiting on router queue for slot.... +04:01:33 ============================================================================ +04:01:33 Slot Id : <48> +04:01:33 Transaction Type : REQUEST +04:01:33 Received From : +04:01:33 ============================================================================ +04:01:33 FNo. Len. Field Value +04:01:33 ============================================================================ +04:01:33 [ 1] [ 4] [0800] +04:01:33 [ 7] [ 10] [0320111319] +04:01:33 [ 11] [ 6] [041319] +04:01:33 [ 37] [ 12] [57904041319] +04:01:33 [ 70] [ 3] [301] +04:01:33 ============================================================================ +04:01:33 + + +waiting on router queue for slot.... +04:01:33 Sending to : +04:01:33 ============================================================================ +04:01:33 ============================================================================ +04:01:33 Slot Id : <48> +04:01:33 Transaction Type : RESPONSE +04:01:33 Received From : +04:01:33 ============================================================================ +04:01:33 FNo. Len. Field Value +04:01:33 ============================================================================ +04:01:33 [ 1] [ 4] [0810] +04:01:33 [ 7] [ 10] [0320111319] +04:01:33 [ 11] [ 6] [041319] +04:01:33 [ 37] [ 12] [579040413190] +04:01:33 [ 39] [ 2] [00] +04:01:33 [ 70] [ 3] [810] +04:01:33 ============================================================================ +04:01:33 Calculate Source COMM Id = 6 +04:01:33 ============================================================================ +04:01:33 + + +waiting on router queue for slot.... +04:01:36 ============================================================================ +04:01:36 Slot Id : <26> +04:01:36 Transaction Type : REQUEST +04:01:36 Received From : +04:01:36 ============================================================================ +04:01:36 FNo. Len. Field Value +04:01:36 ============================================================================ +04:01:36 [ 1] [ 4] [0800] +04:01:36 [ 7] [ 10] [0319090043] +04:01:36 [ 11] [ 6] [154190] +04:01:36 [ 70] [ 3] [301] +04:01:36 ============================================================================ +04:01:36 + + +waiting on router queue for slot.... +04:01:36 Sending to : +04:01:36 ============================================================================ +04:01:36 ============================================================================ +04:01:36 Slot Id : <26> +04:01:36 Transaction Type : RESPONSE +04:01:36 Received From : +04:01:36 ============================================================================ +04:01:36 FNo. Len. Field Value +04:01:36 ============================================================================ +04:01:36 [ 1] [ 4] [0810] +04:01:36 [ 7] [ 10] [0319090043] +04:01:36 [ 11] [ 6] [154190] +04:01:36 [ 39] [ 2] [00] +04:01:36 [ 70] [ 3] [301] +04:01:36 ============================================================================ +04:01:36 Calculate Source COMM Id = 2 +04:01:36 ============================================================================ +04:01:36 + + +waiting on router queue for slot.... +04:01:49 ============================================================================ +04:01:49 Slot Id : <46> +04:01:49 Transaction Type : REQUEST +04:01:49 Received From : +04:01:49 ============================================================================ +04:01:49 FNo. Len. Field Value +04:01:49 ============================================================================ +04:01:49 [ 1] [ 4] [0800] +04:01:49 [ 7] [ 10] [0319090056] +04:01:49 [ 11] [ 6] [154191] +04:01:49 [ 70] [ 3] [301] +04:01:49 ============================================================================ +04:01:49 + + +waiting on router queue for slot.... +04:01:49 Sending to : +04:01:49 ============================================================================ +04:01:49 ============================================================================ +04:01:49 Slot Id : <46> +04:01:49 Transaction Type : RESPONSE +04:01:49 Received From : +04:01:49 ============================================================================ +04:01:49 FNo. Len. Field Value +04:01:49 ============================================================================ +04:01:49 [ 1] [ 4] [0810] +04:01:49 [ 7] [ 10] [0319090056] +04:01:49 [ 11] [ 6] [154191] +04:01:49 [ 39] [ 2] [00] +04:01:49 [ 70] [ 3] [301] +04:01:49 ============================================================================ +04:01:49 Calculate Source COMM Id = 2 +04:01:49 ============================================================================ +04:01:49 + + +waiting on router queue for slot.... +04:02:02 ============================================================================ +04:02:02 Slot Id : <19> +04:02:02 Transaction Type : REQUEST +04:02:02 Received From : +04:02:02 ============================================================================ +04:02:02 FNo. Len. Field Value +04:02:02 ============================================================================ +04:02:02 [ 1] [ 4] [0800] +04:02:02 [ 7] [ 10] [0319090109] +04:02:02 [ 11] [ 6] [154192] +04:02:02 [ 70] [ 3] [301] +04:02:02 ============================================================================ +04:02:02 + + +waiting on router queue for slot.... +04:02:02 Sending to : +04:02:02 ============================================================================ +04:02:02 ============================================================================ +04:02:02 Slot Id : <19> +04:02:02 Transaction Type : RESPONSE +04:02:02 Received From : +04:02:02 ============================================================================ +04:02:02 FNo. Len. Field Value +04:02:02 ============================================================================ +04:02:02 [ 1] [ 4] [0810] +04:02:02 [ 7] [ 10] [0319090109] +04:02:02 [ 11] [ 6] [154192] +04:02:02 [ 39] [ 2] [00] +04:02:02 [ 70] [ 3] [301] +04:02:02 ============================================================================ +04:02:02 Calculate Source COMM Id = 2 +04:02:02 ============================================================================ +04:02:02 + + +waiting on router queue for slot.... +04:02:13 ============================================================================ +04:02:13 Slot Id : <69> +04:02:13 Transaction Type : REQUEST +04:02:13 Received From : +04:02:13 ============================================================================ +04:02:13 FNo. Len. Field Value +04:02:13 ============================================================================ +04:02:13 [ 1] [ 4] [0800] +04:02:13 [ 7] [ 10] [0319090120] +04:02:13 [ 11] [ 6] [154193] +04:02:13 [ 70] [ 3] [301] +04:02:13 ============================================================================ +04:02:13 + + +waiting on router queue for slot.... +04:02:13 Sending to : +04:02:13 ============================================================================ +04:02:13 ============================================================================ +04:02:13 Slot Id : <69> +04:02:13 Transaction Type : RESPONSE +04:02:13 Received From : +04:02:13 ============================================================================ +04:02:13 FNo. Len. Field Value +04:02:13 ============================================================================ +04:02:13 [ 1] [ 4] [0810] +04:02:13 [ 7] [ 10] [0319090120] +04:02:13 [ 11] [ 6] [154193] +04:02:13 [ 39] [ 2] [00] +04:02:13 [ 70] [ 3] [301] +04:02:13 ============================================================================ +04:02:13 Calculate Source COMM Id = 2 +04:02:13 ============================================================================ +04:02:13 + + +waiting on router queue for slot.... +04:02:23 ============================================================================ +04:02:23 Slot Id : <47> +04:02:23 Transaction Type : REQUEST +04:02:23 Received From : +04:02:23 ============================================================================ +04:02:23 FNo. Len. Field Value +04:02:23 ============================================================================ +04:02:23 [ 1] [ 4] [0800] +04:02:23 [ 2] [ 5] [02531] +04:02:23 [ 3] [ 6] [579048] +04:02:23 [ 7] [ 10] [0319210223] +04:02:23 [ 11] [ 6] [806646] +04:02:23 [ 15] [ 10] [0319210223] +04:02:23 [ 37] [ 11] [57904806646] +04:02:23 [ 70] [ 3] [001] +04:02:23 ============================================================================ +04:02:23 + + +waiting on router queue for slot.... +04:02:23 ============================================================================ +04:02:23 Slot Id : <47> +04:02:23 Transaction Type : RESPONSE +04:02:23 Received From : +04:02:23 ============================================================================ +04:02:23 FNo. Len. Field Value +04:02:23 ============================================================================ +04:02:23 [ 1] [ 4] [0810] +04:02:23 [ 7] [ 10] [0319210223] +04:02:23 [ 11] [ 6] [806646] +04:02:23 [ 15] [ 4] [0319] +04:02:23 [ 37] [ 12] [57904806646] +04:02:23 [ 39] [ 2] [00] +04:02:23 [ 70] [ 3] [001] +04:02:23 ============================================================================ +04:02:23 Sending to : +04:02:23 ============================================================================ +04:02:23 + + +waiting on router queue for slot.... +04:02:29 ============================================================================ +04:02:29 Slot Id : <58> +04:02:29 Transaction Type : REQUEST +04:02:29 Received From : +04:02:29 ============================================================================ +04:02:29 FNo. Len. Field Value +04:02:29 ============================================================================ +04:02:29 [ 1] [ 4] [0800] +04:02:29 [ 7] [ 10] [0319090136] +04:02:29 [ 11] [ 6] [154194] +04:02:29 [ 70] [ 3] [301] +04:02:29 ============================================================================ +04:02:29 + + +waiting on router queue for slot.... +04:02:29 Sending to : +04:02:29 ============================================================================ +04:02:29 ============================================================================ +04:02:29 Slot Id : <58> +04:02:29 Transaction Type : RESPONSE +04:02:29 Received From : +04:02:29 ============================================================================ +04:02:29 FNo. Len. Field Value +04:02:29 ============================================================================ +04:02:29 [ 1] [ 4] [0810] +04:02:29 [ 7] [ 10] [0319090136] +04:02:29 [ 11] [ 6] [154194] +04:02:29 [ 39] [ 2] [00] +04:02:29 [ 70] [ 3] [301] +04:02:29 ============================================================================ +04:02:29 Calculate Source COMM Id = 2 +04:02:29 ============================================================================ +04:02:29 + + +waiting on router queue for slot.... +04:02:38 ============================================================================ +04:02:38 Slot Id : <78> +04:02:38 Transaction Type : REQUEST +04:02:38 Received From : +04:02:38 ============================================================================ +04:02:38 FNo. Len. Field Value +04:02:38 ============================================================================ +04:02:38 [ 1] [ 4] [0800] +04:02:38 [ 7] [ 10] [0320111424] +04:02:38 [ 11] [ 6] [041424] +04:02:38 [ 37] [ 12] [57904041424] +04:02:38 [ 70] [ 3] [301] +04:02:38 ============================================================================ +04:02:38 + + +waiting on router queue for slot.... +04:02:38 Sending to : +04:02:38 ============================================================================ +04:02:38 ============================================================================ +04:02:38 Slot Id : <78> +04:02:38 Transaction Type : RESPONSE +04:02:38 Received From : +04:02:38 ============================================================================ +04:02:38 FNo. Len. Field Value +04:02:38 ============================================================================ +04:02:38 [ 1] [ 4] [0810] +04:02:38 [ 7] [ 10] [0320111424] +04:02:38 [ 11] [ 6] [041424] +04:02:38 [ 37] [ 12] [579040414240] +04:02:38 [ 39] [ 2] [00] +04:02:38 [ 70] [ 3] [810] +04:02:38 ============================================================================ +04:02:38 Calculate Source COMM Id = 6 +04:02:38 ============================================================================ +04:02:38 + + +waiting on router queue for slot.... +04:02:40 ============================================================================ +04:02:40 Slot Id : <54> +04:02:40 Transaction Type : REQUEST +04:02:40 Received From : +04:02:40 ============================================================================ +04:02:40 FNo. Len. Field Value +04:02:40 ============================================================================ +04:02:40 [ 1] [ 4] [0800] +04:02:40 [ 7] [ 10] [0319090146] +04:02:40 [ 11] [ 6] [154195] +04:02:40 [ 70] [ 3] [301] +04:02:40 ============================================================================ +04:02:40 + + +waiting on router queue for slot.... +04:02:40 Sending to : +04:02:40 ============================================================================ +04:02:40 ============================================================================ +04:02:40 Slot Id : <54> +04:02:40 Transaction Type : RESPONSE +04:02:40 Received From : +04:02:40 ============================================================================ +04:02:40 FNo. Len. Field Value +04:02:40 ============================================================================ +04:02:40 [ 1] [ 4] [0810] +04:02:40 [ 7] [ 10] [0319090146] +04:02:40 [ 11] [ 6] [154195] +04:02:40 [ 39] [ 2] [00] +04:02:40 [ 70] [ 3] [301] +04:02:40 ============================================================================ +04:02:40 Calculate Source COMM Id = 2 +04:02:40 ============================================================================ +04:02:40 + + +waiting on router queue for slot.... +04:02:50 ============================================================================ +04:02:50 Slot Id : <81> +04:02:50 Transaction Type : REQUEST +04:02:50 Received From : +04:02:50 ============================================================================ +04:02:50 FNo. Len. Field Value +04:02:50 ============================================================================ +04:02:50 [ 1] [ 4] [0800] +04:02:50 [ 7] [ 10] [0319090157] +04:02:50 [ 11] [ 6] [154196] +04:02:50 [ 70] [ 3] [301] +04:02:50 ============================================================================ +04:02:50 + + +waiting on router queue for slot.... +04:02:50 Sending to : +04:02:50 ============================================================================ +04:02:50 ============================================================================ +04:02:50 Slot Id : <81> +04:02:50 Transaction Type : RESPONSE +04:02:50 Received From : +04:02:50 ============================================================================ +04:02:50 FNo. Len. Field Value +04:02:50 ============================================================================ +04:02:50 [ 1] [ 4] [0810] +04:02:50 [ 7] [ 10] [0319090157] +04:02:50 [ 11] [ 6] [154196] +04:02:50 [ 39] [ 2] [00] +04:02:50 [ 70] [ 3] [301] +04:02:50 ============================================================================ +04:02:50 Calculate Source COMM Id = 2 +04:02:50 ============================================================================ +04:02:50 + + +waiting on router queue for slot.... +04:03:07 ============================================================================ +04:03:07 Slot Id : <24> +04:03:07 Transaction Type : REQUEST +04:03:07 Received From : +04:03:07 ============================================================================ +04:03:07 FNo. Len. Field Value +04:03:07 ============================================================================ +04:03:07 [ 1] [ 4] [0800] +04:03:07 [ 7] [ 10] [0319090214] +04:03:07 [ 11] [ 6] [154197] +04:03:07 [ 70] [ 3] [301] +04:03:07 ============================================================================ +04:03:07 + + +waiting on router queue for slot.... +04:03:07 Sending to : +04:03:07 ============================================================================ +04:03:07 ============================================================================ +04:03:07 Slot Id : <24> +04:03:07 Transaction Type : RESPONSE +04:03:07 Received From : +04:03:07 ============================================================================ +04:03:07 FNo. Len. Field Value +04:03:07 ============================================================================ +04:03:07 [ 1] [ 4] [0810] +04:03:07 [ 7] [ 10] [0319090214] +04:03:07 [ 11] [ 6] [154197] +04:03:07 [ 39] [ 2] [00] +04:03:07 [ 70] [ 3] [301] +04:03:07 ============================================================================ +04:03:07 Calculate Source COMM Id = 2 +04:03:07 ============================================================================ +04:03:07 + + +waiting on router queue for slot.... +04:03:19 ============================================================================ +04:03:19 Slot Id : <57> +04:03:19 Transaction Type : REQUEST +04:03:19 Received From : +04:03:19 ============================================================================ +04:03:19 FNo. Len. Field Value +04:03:19 ============================================================================ +04:03:19 [ 1] [ 4] [0800] +04:03:19 [ 7] [ 10] [0319090226] +04:03:19 [ 11] [ 6] [154198] +04:03:19 [ 70] [ 3] [301] +04:03:19 ============================================================================ +04:03:19 + + +waiting on router queue for slot.... +04:03:19 Sending to : +04:03:19 ============================================================================ +04:03:19 ============================================================================ +04:03:19 Slot Id : <57> +04:03:19 Transaction Type : RESPONSE +04:03:19 Received From : +04:03:19 ============================================================================ +04:03:19 FNo. Len. Field Value +04:03:19 ============================================================================ +04:03:19 [ 1] [ 4] [0810] +04:03:19 [ 7] [ 10] [0319090226] +04:03:19 [ 11] [ 6] [154198] +04:03:19 [ 39] [ 2] [00] +04:03:19 [ 70] [ 3] [301] +04:03:19 ============================================================================ +04:03:19 Calculate Source COMM Id = 2 +04:03:19 ============================================================================ +04:03:19 + + +waiting on router queue for slot.... +04:03:25 ============================================================================ +04:03:25 Slot Id : <34> +04:03:25 Transaction Type : REQUEST +04:03:25 Received From : +04:03:25 ============================================================================ +04:03:25 FNo. Len. Field Value +04:03:25 ============================================================================ +04:03:25 [ 1] [ 4] [0800] +04:03:25 [ 2] [ 5] [02531] +04:03:25 [ 3] [ 6] [579048] +04:03:25 [ 7] [ 10] [0319210325] +04:03:25 [ 11] [ 6] [806647] +04:03:25 [ 15] [ 10] [0319210325] +04:03:25 [ 37] [ 11] [57904806647] +04:03:25 [ 70] [ 3] [001] +04:03:25 ============================================================================ +04:03:25 + + +waiting on router queue for slot.... +04:03:25 ============================================================================ +04:03:25 Slot Id : <34> +04:03:25 Transaction Type : RESPONSE +04:03:25 Received From : +04:03:25 ============================================================================ +04:03:25 FNo. Len. Field Value +04:03:25 ============================================================================ +04:03:25 [ 1] [ 4] [0810] +04:03:25 [ 7] [ 10] [0319210325] +04:03:25 [ 11] [ 6] [806647] +04:03:25 [ 15] [ 4] [0319] +04:03:25 [ 37] [ 12] [57904806647] +04:03:25 [ 39] [ 2] [00] +04:03:25 [ 70] [ 3] [001] +04:03:25 ============================================================================ +04:03:25 Sending to : +04:03:25 ============================================================================ +04:03:25 + + +waiting on router queue for slot.... +04:03:36 ============================================================================ +04:03:36 Slot Id : <86> +04:03:36 Transaction Type : REQUEST +04:03:36 Received From : +04:03:36 ============================================================================ +04:03:36 FNo. Len. Field Value +04:03:36 ============================================================================ +04:03:36 [ 1] [ 4] [0800] +04:03:36 [ 7] [ 10] [0319090243] +04:03:36 [ 11] [ 6] [154199] +04:03:36 [ 70] [ 3] [301] +04:03:36 ============================================================================ +04:03:36 + + +waiting on router queue for slot.... +04:03:36 Sending to : +04:03:36 ============================================================================ +04:03:36 ============================================================================ +04:03:36 Slot Id : <86> +04:03:36 Transaction Type : RESPONSE +04:03:36 Received From : +04:03:36 ============================================================================ +04:03:36 FNo. Len. Field Value +04:03:36 ============================================================================ +04:03:36 [ 1] [ 4] [0810] +04:03:36 [ 7] [ 10] [0319090243] +04:03:36 [ 11] [ 6] [154199] +04:03:36 [ 39] [ 2] [00] +04:03:36 [ 70] [ 3] [301] +04:03:36 ============================================================================ +04:03:36 Calculate Source COMM Id = 2 +04:03:36 ============================================================================ +04:03:36 + + +waiting on router queue for slot.... +04:03:43 ============================================================================ +04:03:43 Slot Id : <42> +04:03:43 Transaction Type : REQUEST +04:03:43 Received From : +04:03:43 ============================================================================ +04:03:43 FNo. Len. Field Value +04:03:43 ============================================================================ +04:03:43 [ 1] [ 4] [0800] +04:03:43 [ 7] [ 10] [0320111529] +04:03:43 [ 11] [ 6] [041529] +04:03:43 [ 37] [ 12] [57904041529] +04:03:43 [ 70] [ 3] [301] +04:03:43 ============================================================================ +04:03:43 + + +waiting on router queue for slot.... +04:03:43 Sending to : +04:03:43 ============================================================================ +04:03:43 ============================================================================ +04:03:43 Slot Id : <42> +04:03:43 Transaction Type : RESPONSE +04:03:43 Received From : +04:03:43 ============================================================================ +04:03:43 FNo. Len. Field Value +04:03:43 ============================================================================ +04:03:43 [ 1] [ 4] [0810] +04:03:43 [ 7] [ 10] [0320111529] +04:03:43 [ 11] [ 6] [041529] +04:03:43 [ 37] [ 12] [579040415290] +04:03:43 [ 39] [ 2] [00] +04:03:43 [ 70] [ 3] [810] +04:03:43 ============================================================================ +04:03:43 Calculate Source COMM Id = 6 +04:03:43 ============================================================================ +04:03:43 + + +waiting on router queue for slot.... +04:03:46 ============================================================================ +04:03:46 Slot Id : <88> +04:03:46 Transaction Type : REQUEST +04:03:46 Received From : +04:03:46 ============================================================================ +04:03:46 FNo. Len. Field Value +04:03:46 ============================================================================ +04:03:46 [ 1] [ 4] [0800] +04:03:46 [ 7] [ 10] [0319090253] +04:03:46 [ 11] [ 6] [154200] +04:03:46 [ 70] [ 3] [301] +04:03:46 ============================================================================ +04:03:46 + + +waiting on router queue for slot.... +04:03:46 Sending to : +04:03:46 ============================================================================ +04:03:46 ============================================================================ +04:03:46 Slot Id : <88> +04:03:46 Transaction Type : RESPONSE +04:03:46 Received From : +04:03:46 ============================================================================ +04:03:46 FNo. Len. Field Value +04:03:46 ============================================================================ +04:03:46 [ 1] [ 4] [0810] +04:03:46 [ 7] [ 10] [0319090253] +04:03:46 [ 11] [ 6] [154200] +04:03:46 [ 39] [ 2] [00] +04:03:46 [ 70] [ 3] [301] +04:03:46 ============================================================================ +04:03:46 Calculate Source COMM Id = 2 +04:03:46 ============================================================================ +04:03:46 + + +waiting on router queue for slot.... +04:03:57 ============================================================================ +04:03:57 Slot Id : <49> +04:03:57 Transaction Type : REQUEST +04:03:57 Received From : +04:03:57 ============================================================================ +04:03:57 FNo. Len. Field Value +04:03:57 ============================================================================ +04:03:57 [ 1] [ 4] [0800] +04:03:57 [ 7] [ 10] [0319090304] +04:03:57 [ 11] [ 6] [154201] +04:03:57 [ 70] [ 3] [301] +04:03:57 ============================================================================ +04:03:57 + + +waiting on router queue for slot.... +04:03:57 Sending to : +04:03:57 ============================================================================ +04:03:57 ============================================================================ +04:03:57 Slot Id : <49> +04:03:57 Transaction Type : RESPONSE +04:03:57 Received From : +04:03:57 ============================================================================ +04:03:57 FNo. Len. Field Value +04:03:57 ============================================================================ +04:03:57 [ 1] [ 4] [0810] +04:03:57 [ 7] [ 10] [0319090304] +04:03:57 [ 11] [ 6] [154201] +04:03:57 [ 39] [ 2] [00] +04:03:57 [ 70] [ 3] [301] +04:03:57 ============================================================================ +04:03:57 Calculate Source COMM Id = 2 +04:03:57 ============================================================================ +04:03:57 + + +waiting on router queue for slot.... +04:04:06 ============================================================================ +04:04:06 Slot Id : <5> +04:04:06 Transaction Type : REQUEST +04:04:06 Received From : +04:04:06 ============================================================================ +04:04:06 FNo. Len. Field Value +04:04:06 ============================================================================ +04:04:06 [ 1] [ 4] [0800] +04:04:06 [ 7] [ 10] [0320040352] +04:04:06 [ 11] [ 6] [014892] +04:04:06 [ 37] [ 12] [507904014892] +04:04:06 [ 70] [ 3] [ ] +04:04:06 ============================================================================ +04:04:06 + + +waiting on router queue for slot.... +04:04:06 Sending to : +04:04:06 ============================================================================ +04:04:06 ============================================================================ +04:04:06 Slot Id : <5> +04:04:06 Transaction Type : RESPONSE +04:04:06 Received From : +04:04:06 ============================================================================ +04:04:06 FNo. Len. Field Value +04:04:06 ============================================================================ +04:04:06 [ 1] [ 4] [0810] +04:04:06 [ 7] [ 10] [0320040352] +04:04:06 [ 11] [ 6] [014892] +04:04:06 [ 37] [ 12] [507904014892] +04:04:06 [ 39] [ 2] [91] +04:04:06 [ 70] [ 3] [ ] +04:04:06 ============================================================================ +04:04:06 Calculate Source COMM Id = 3 +04:04:06 ============================================================================ +04:04:06 + + +waiting on router queue for slot.... +04:04:08 ============================================================================ +04:04:08 Slot Id : <89> +04:04:08 Transaction Type : REQUEST +04:04:08 Received From : +04:04:08 ============================================================================ +04:04:08 FNo. Len. Field Value +04:04:08 ============================================================================ +04:04:08 [ 1] [ 4] [0800] +04:04:08 [ 7] [ 10] [0319090315] +04:04:08 [ 11] [ 6] [154202] +04:04:08 [ 70] [ 3] [301] +04:04:08 ============================================================================ +04:04:08 + + +waiting on router queue for slot.... +04:04:08 Sending to : +04:04:08 ============================================================================ +04:04:08 ============================================================================ +04:04:08 Slot Id : <89> +04:04:08 Transaction Type : RESPONSE +04:04:08 Received From : +04:04:08 ============================================================================ +04:04:08 FNo. Len. Field Value +04:04:08 ============================================================================ +04:04:08 [ 1] [ 4] [0810] +04:04:08 [ 7] [ 10] [0319090315] +04:04:08 [ 11] [ 6] [154202] +04:04:08 [ 39] [ 2] [00] +04:04:08 [ 70] [ 3] [301] +04:04:08 ============================================================================ +04:04:08 Calculate Source COMM Id = 2 +04:04:08 ============================================================================ +04:04:08 + + +waiting on router queue for slot.... +04:04:19 ============================================================================ +04:04:19 Slot Id : <79> +04:04:19 Transaction Type : REQUEST +04:04:19 Received From : +04:04:19 ============================================================================ +04:04:19 FNo. Len. Field Value +04:04:19 ============================================================================ +04:04:19 [ 1] [ 4] [0800] +04:04:19 [ 7] [ 10] [0319090326] +04:04:19 [ 11] [ 6] [154203] +04:04:19 [ 70] [ 3] [301] +04:04:19 ============================================================================ +04:04:19 + + +waiting on router queue for slot.... +04:04:19 Sending to : +04:04:19 ============================================================================ +04:04:19 ============================================================================ +04:04:19 Slot Id : <79> +04:04:19 Transaction Type : RESPONSE +04:04:19 Received From : +04:04:19 ============================================================================ +04:04:19 FNo. Len. Field Value +04:04:19 ============================================================================ +04:04:19 [ 1] [ 4] [0810] +04:04:19 [ 7] [ 10] [0319090326] +04:04:19 [ 11] [ 6] [154203] +04:04:19 [ 39] [ 2] [00] +04:04:19 [ 70] [ 3] [301] +04:04:19 ============================================================================ +04:04:19 Calculate Source COMM Id = 2 +04:04:19 ============================================================================ +04:04:19 + + +waiting on router queue for slot.... +04:04:27 ============================================================================ +04:04:27 Slot Id : <59> +04:04:27 Transaction Type : REQUEST +04:04:27 Received From : +04:04:27 ============================================================================ +04:04:27 FNo. Len. Field Value +04:04:27 ============================================================================ +04:04:27 [ 1] [ 4] [0800] +04:04:27 [ 2] [ 5] [02531] +04:04:27 [ 3] [ 6] [579048] +04:04:27 [ 7] [ 10] [0319210427] +04:04:27 [ 11] [ 6] [806648] +04:04:27 [ 15] [ 10] [0319210427] +04:04:27 [ 37] [ 11] [57904806648] +04:04:27 [ 70] [ 3] [001] +04:04:27 ============================================================================ +04:04:27 + + +waiting on router queue for slot.... +04:04:27 ============================================================================ +04:04:27 Slot Id : <59> +04:04:27 Transaction Type : RESPONSE +04:04:27 Received From : +04:04:27 ============================================================================ +04:04:27 FNo. Len. Field Value +04:04:27 ============================================================================ +04:04:27 [ 1] [ 4] [0810] +04:04:27 [ 7] [ 10] [0319210427] +04:04:27 [ 11] [ 6] [806648] +04:04:27 [ 15] [ 4] [0319] +04:04:27 [ 37] [ 12] [57904806648] +04:04:27 [ 39] [ 2] [00] +04:04:27 [ 70] [ 3] [001] +04:04:27 ============================================================================ +04:04:27 Sending to : +04:04:27 ============================================================================ +04:04:27 + + +waiting on router queue for slot.... +04:04:30 ============================================================================ +04:04:30 Slot Id : <84> +04:04:30 Transaction Type : REQUEST +04:04:30 Received From : +04:04:30 ============================================================================ +04:04:30 FNo. Len. Field Value +04:04:30 ============================================================================ +04:04:30 [ 1] [ 4] [0800] +04:04:30 [ 7] [ 10] [0319090336] +04:04:30 [ 11] [ 6] [154204] +04:04:30 [ 70] [ 3] [301] +04:04:30 ============================================================================ +04:04:30 + + +waiting on router queue for slot.... +04:04:30 Sending to : +04:04:30 ============================================================================ +04:04:30 ============================================================================ +04:04:30 Slot Id : <84> +04:04:30 Transaction Type : RESPONSE +04:04:30 Received From : +04:04:30 ============================================================================ +04:04:30 FNo. Len. Field Value +04:04:30 ============================================================================ +04:04:30 [ 1] [ 4] [0810] +04:04:30 [ 7] [ 10] [0319090336] +04:04:30 [ 11] [ 6] [154204] +04:04:30 [ 39] [ 2] [00] +04:04:30 [ 70] [ 3] [301] +04:04:30 ============================================================================ +04:04:30 Calculate Source COMM Id = 2 +04:04:30 ============================================================================ +04:04:30 + + +waiting on router queue for slot.... +04:04:45 ============================================================================ +04:04:45 Slot Id : <62> +04:04:45 Transaction Type : REQUEST +04:04:45 Received From : +04:04:45 ============================================================================ +04:04:45 FNo. Len. Field Value +04:04:45 ============================================================================ +04:04:45 [ 1] [ 4] [0800] +04:04:45 [ 7] [ 10] [0319090352] +04:04:45 [ 11] [ 6] [154205] +04:04:45 [ 70] [ 3] [301] +04:04:45 ============================================================================ +04:04:45 + + +waiting on router queue for slot.... +04:04:45 Sending to : +04:04:45 ============================================================================ +04:04:45 ============================================================================ +04:04:45 Slot Id : <62> +04:04:45 Transaction Type : RESPONSE +04:04:45 Received From : +04:04:45 ============================================================================ +04:04:45 FNo. Len. Field Value +04:04:45 ============================================================================ +04:04:45 [ 1] [ 4] [0810] +04:04:45 [ 7] [ 10] [0319090352] +04:04:45 [ 11] [ 6] [154205] +04:04:45 [ 39] [ 2] [00] +04:04:45 [ 70] [ 3] [301] +04:04:45 ============================================================================ +04:04:45 Calculate Source COMM Id = 2 +04:04:45 ============================================================================ +04:04:45 + + +waiting on router queue for slot.... +04:04:48 ============================================================================ +04:04:48 Slot Id : <67> +04:04:48 Transaction Type : REQUEST +04:04:48 Received From : +04:04:48 ============================================================================ +04:04:48 FNo. Len. Field Value +04:04:48 ============================================================================ +04:04:48 [ 1] [ 4] [0800] +04:04:48 [ 7] [ 10] [0320111634] +04:04:48 [ 11] [ 6] [041634] +04:04:48 [ 37] [ 12] [57904041634] +04:04:48 [ 70] [ 3] [301] +04:04:48 ============================================================================ +04:04:48 + + +waiting on router queue for slot.... +04:04:48 Sending to : +04:04:48 ============================================================================ +04:04:48 ============================================================================ +04:04:48 Slot Id : <67> +04:04:48 Transaction Type : RESPONSE +04:04:48 Received From : +04:04:48 ============================================================================ +04:04:48 FNo. Len. Field Value +04:04:48 ============================================================================ +04:04:48 [ 1] [ 4] [0810] +04:04:48 [ 7] [ 10] [0320111634] +04:04:48 [ 11] [ 6] [041634] +04:04:48 [ 37] [ 12] [579040416340] +04:04:48 [ 39] [ 2] [00] +04:04:48 [ 70] [ 3] [810] +04:04:48 ============================================================================ +04:04:48 Calculate Source COMM Id = 6 +04:04:48 ============================================================================ +04:04:48 + + +waiting on router queue for slot.... +04:04:56 ============================================================================ +04:04:56 Slot Id : <99> +04:04:56 Transaction Type : REQUEST +04:04:56 Received From : +04:04:56 ============================================================================ +04:04:56 FNo. Len. Field Value +04:04:56 ============================================================================ +04:04:56 [ 1] [ 4] [0800] +04:04:56 [ 7] [ 10] [0319211242] +04:04:56 [ 11] [ 6] [064117] +04:04:56 [ 37] [ 12] [57904064117] +04:04:56 [ 70] [ 3] [301] +04:04:56 ============================================================================ +04:04:56 + + +waiting on router queue for slot.... +04:04:56 Sending to : +04:04:56 ============================================================================ +04:04:56 ============================================================================ +04:04:56 Slot Id : <99> +04:04:56 Transaction Type : RESPONSE +04:04:56 Received From : +04:04:56 ============================================================================ +04:04:56 FNo. Len. Field Value +04:04:56 ============================================================================ +04:04:56 [ 1] [ 4] [0810] +04:04:56 [ 7] [ 10] [0319211242] +04:04:56 [ 11] [ 6] [064117] +04:04:56 [ 37] [ 12] [579040641170] +04:04:56 [ 39] [ 2] [00] +04:04:56 [ 70] [ 3] [810] +04:04:56 ============================================================================ +04:04:56 Calculate Source COMM Id = 1 +04:04:56 ============================================================================ +04:04:56 + + +waiting on router queue for slot.... +04:05:00 ============================================================================ +04:05:00 Slot Id : <39> +04:05:00 Transaction Type : REQUEST +04:05:00 Received From : +04:05:00 ============================================================================ +04:05:00 FNo. Len. Field Value +04:05:00 ============================================================================ +04:05:00 [ 1] [ 4] [0800] +04:05:00 [ 7] [ 10] [0319090407] +04:05:00 [ 11] [ 6] [154206] +04:05:00 [ 70] [ 3] [301] +04:05:00 ============================================================================ +04:05:00 + + +waiting on router queue for slot.... +04:05:00 Sending to : +04:05:00 ============================================================================ +04:05:00 ============================================================================ +04:05:00 Slot Id : <39> +04:05:00 Transaction Type : RESPONSE +04:05:00 Received From : +04:05:00 ============================================================================ +04:05:00 FNo. Len. Field Value +04:05:00 ============================================================================ +04:05:00 [ 1] [ 4] [0810] +04:05:00 [ 7] [ 10] [0319090407] +04:05:00 [ 11] [ 6] [154206] +04:05:00 [ 39] [ 2] [00] +04:05:00 [ 70] [ 3] [301] +04:05:00 ============================================================================ +04:05:00 Calculate Source COMM Id = 2 +04:05:00 ============================================================================ +04:05:00 + + +waiting on router queue for slot.... +04:05:11 ============================================================================ +04:05:11 Slot Id : <64> +04:05:11 Transaction Type : REQUEST +04:05:11 Received From : +04:05:11 ============================================================================ +04:05:11 FNo. Len. Field Value +04:05:11 ============================================================================ +04:05:11 [ 1] [ 4] [0800] +04:05:11 [ 7] [ 10] [0319090417] +04:05:11 [ 11] [ 6] [154207] +04:05:11 [ 70] [ 3] [301] +04:05:11 ============================================================================ +04:05:11 + + +waiting on router queue for slot.... +04:05:11 Sending to : +04:05:11 ============================================================================ +04:05:11 ============================================================================ +04:05:11 Slot Id : <64> +04:05:11 Transaction Type : RESPONSE +04:05:11 Received From : +04:05:11 ============================================================================ +04:05:11 FNo. Len. Field Value +04:05:11 ============================================================================ +04:05:11 [ 1] [ 4] [0810] +04:05:11 [ 7] [ 10] [0319090417] +04:05:11 [ 11] [ 6] [154207] +04:05:11 [ 39] [ 2] [00] +04:05:11 [ 70] [ 3] [301] +04:05:11 ============================================================================ +04:05:11 Calculate Source COMM Id = 2 +04:05:11 ============================================================================ +04:05:11 + + +waiting on router queue for slot.... +04:05:21 ============================================================================ +04:05:21 Slot Id : <51> +04:05:21 Transaction Type : REQUEST +04:05:21 Received From : +04:05:21 ============================================================================ +04:05:21 FNo. Len. Field Value +04:05:21 ============================================================================ +04:05:21 [ 1] [ 4] [0800] +04:05:21 [ 7] [ 10] [0319090428] +04:05:21 [ 11] [ 6] [154208] +04:05:21 [ 70] [ 3] [301] +04:05:21 ============================================================================ +04:05:21 + + +waiting on router queue for slot.... +04:05:21 Sending to : +04:05:21 ============================================================================ +04:05:21 ============================================================================ +04:05:21 Slot Id : <51> +04:05:21 Transaction Type : RESPONSE +04:05:21 Received From : +04:05:21 ============================================================================ +04:05:21 FNo. Len. Field Value +04:05:21 ============================================================================ +04:05:21 [ 1] [ 4] [0810] +04:05:21 [ 7] [ 10] [0319090428] +04:05:21 [ 11] [ 6] [154208] +04:05:21 [ 39] [ 2] [00] +04:05:21 [ 70] [ 3] [301] +04:05:21 ============================================================================ +04:05:21 Calculate Source COMM Id = 2 +04:05:21 ============================================================================ +04:05:21 + + +waiting on router queue for slot.... +04:05:29 ============================================================================ +04:05:29 Slot Id : <82> +04:05:29 Transaction Type : REQUEST +04:05:29 Received From : +04:05:29 ============================================================================ +04:05:29 FNo. Len. Field Value +04:05:29 ============================================================================ +04:05:29 [ 1] [ 4] [0800] +04:05:29 [ 2] [ 5] [02531] +04:05:29 [ 3] [ 6] [579048] +04:05:29 [ 7] [ 10] [0319210529] +04:05:29 [ 11] [ 6] [806649] +04:05:29 [ 15] [ 10] [0319210529] +04:05:29 [ 37] [ 11] [57904806649] +04:05:29 [ 70] [ 3] [001] +04:05:29 ============================================================================ +04:05:29 + + +waiting on router queue for slot.... +04:05:29 ============================================================================ +04:05:29 Slot Id : <82> +04:05:29 Transaction Type : RESPONSE +04:05:29 Received From : +04:05:29 ============================================================================ +04:05:29 FNo. Len. Field Value +04:05:29 ============================================================================ +04:05:29 [ 1] [ 4] [0810] +04:05:29 [ 7] [ 10] [0319210529] +04:05:29 [ 11] [ 6] [806649] +04:05:29 [ 15] [ 4] [0319] +04:05:29 [ 37] [ 12] [57904806649] +04:05:29 [ 39] [ 2] [00] +04:05:29 [ 70] [ 3] [001] +04:05:29 ============================================================================ +04:05:29 Sending to : +04:05:29 ============================================================================ +04:05:29 + + +waiting on router queue for slot.... +04:05:32 ============================================================================ +04:05:32 Slot Id : <93> +04:05:32 Transaction Type : REQUEST +04:05:32 Received From : +04:05:32 ============================================================================ +04:05:32 FNo. Len. Field Value +04:05:32 ============================================================================ +04:05:32 [ 1] [ 4] [0800] +04:05:32 [ 7] [ 10] [0319090439] +04:05:32 [ 11] [ 6] [154209] +04:05:32 [ 70] [ 3] [301] +04:05:32 ============================================================================ +04:05:32 + + +waiting on router queue for slot.... +04:05:32 Sending to : +04:05:32 ============================================================================ +04:05:32 ============================================================================ +04:05:32 Slot Id : <93> +04:05:32 Transaction Type : RESPONSE +04:05:32 Received From : +04:05:32 ============================================================================ +04:05:32 FNo. Len. Field Value +04:05:32 ============================================================================ +04:05:32 [ 1] [ 4] [0810] +04:05:32 [ 7] [ 10] [0319090439] +04:05:32 [ 11] [ 6] [154209] +04:05:32 [ 39] [ 2] [00] +04:05:32 [ 70] [ 3] [301] +04:05:32 ============================================================================ +04:05:32 Calculate Source COMM Id = 2 +04:05:32 ============================================================================ +04:05:32 + + +waiting on router queue for slot.... +04:05:43 ============================================================================ +04:05:43 Slot Id : <56> +04:05:43 Transaction Type : REQUEST +04:05:43 Received From : +04:05:43 ============================================================================ +04:05:43 FNo. Len. Field Value +04:05:43 ============================================================================ +04:05:43 [ 1] [ 4] [0800] +04:05:43 [ 7] [ 10] [0319090450] +04:05:43 [ 11] [ 6] [154210] +04:05:43 [ 70] [ 3] [301] +04:05:43 ============================================================================ +04:05:43 + + +waiting on router queue for slot.... +04:05:43 Sending to : +04:05:43 ============================================================================ +04:05:43 ============================================================================ +04:05:43 Slot Id : <56> +04:05:43 Transaction Type : RESPONSE +04:05:43 Received From : +04:05:43 ============================================================================ +04:05:43 FNo. Len. Field Value +04:05:43 ============================================================================ +04:05:43 [ 1] [ 4] [0810] +04:05:43 [ 7] [ 10] [0319090450] +04:05:43 [ 11] [ 6] [154210] +04:05:43 [ 39] [ 2] [00] +04:05:43 [ 70] [ 3] [301] +04:05:43 ============================================================================ +04:05:43 Calculate Source COMM Id = 2 +04:05:43 ============================================================================ +04:05:43 + + +waiting on router queue for slot.... +04:05:53 ============================================================================ +04:05:53 Slot Id : <91> +04:05:53 Transaction Type : REQUEST +04:05:53 Received From : +04:05:53 ============================================================================ +04:05:53 FNo. Len. Field Value +04:05:53 ============================================================================ +04:05:53 [ 1] [ 4] [0800] +04:05:53 [ 7] [ 10] [0320111739] +04:05:53 [ 11] [ 6] [041739] +04:05:53 [ 37] [ 12] [57904041739] +04:05:53 [ 70] [ 3] [301] +04:05:53 ============================================================================ +04:05:53 + + +waiting on router queue for slot.... +04:05:53 Sending to : +04:05:53 ============================================================================ +04:05:53 ============================================================================ +04:05:53 Slot Id : <91> +04:05:53 Transaction Type : RESPONSE +04:05:53 Received From : +04:05:53 ============================================================================ +04:05:53 FNo. Len. Field Value +04:05:53 ============================================================================ +04:05:53 [ 1] [ 4] [0810] +04:05:53 [ 7] [ 10] [0320111739] +04:05:53 [ 11] [ 6] [041739] +04:05:53 [ 37] [ 12] [579040417390] +04:05:53 [ 39] [ 2] [00] +04:05:53 [ 70] [ 3] [810] +04:05:53 ============================================================================ +04:05:53 Calculate Source COMM Id = 6 +04:05:53 ============================================================================ +04:05:53 + + +waiting on router queue for slot.... +04:05:54 ============================================================================ +04:05:54 Slot Id : <100> +04:05:54 Transaction Type : REQUEST +04:05:54 Received From : +04:05:54 ============================================================================ +04:05:54 FNo. Len. Field Value +04:05:54 ============================================================================ +04:05:54 [ 1] [ 4] [0800] +04:05:54 [ 7] [ 10] [0319090501] +04:05:54 [ 11] [ 6] [154211] +04:05:54 [ 70] [ 3] [301] +04:05:54 ============================================================================ +04:05:54 + + +waiting on router queue for slot.... +04:05:54 Sending to : +04:05:54 ============================================================================ +04:05:54 ============================================================================ +04:05:54 Slot Id : <100> +04:05:54 Transaction Type : RESPONSE +04:05:54 Received From : +04:05:54 ============================================================================ +04:05:54 FNo. Len. Field Value +04:05:54 ============================================================================ +04:05:54 [ 1] [ 4] [0810] +04:05:54 [ 7] [ 10] [0319090501] +04:05:54 [ 11] [ 6] [154211] +04:05:54 [ 39] [ 2] [00] +04:05:54 [ 70] [ 3] [301] +04:05:54 ============================================================================ +04:05:54 Calculate Source COMM Id = 2 +04:05:54 ============================================================================ +04:05:54 + + +waiting on router queue for slot.... +04:06:11 ============================================================================ +04:06:11 Slot Id : <77> +04:06:11 Transaction Type : REQUEST +04:06:11 Received From : +04:06:11 ============================================================================ +04:06:11 FNo. Len. Field Value +04:06:11 ============================================================================ +04:06:11 [ 1] [ 4] [0800] +04:06:11 [ 7] [ 10] [0319090518] +04:06:11 [ 11] [ 6] [154212] +04:06:11 [ 70] [ 3] [301] +04:06:11 ============================================================================ +04:06:11 + + +waiting on router queue for slot.... +04:06:11 Sending to : +04:06:11 ============================================================================ +04:06:11 ============================================================================ +04:06:11 Slot Id : <77> +04:06:11 Transaction Type : RESPONSE +04:06:11 Received From : +04:06:11 ============================================================================ +04:06:11 FNo. Len. Field Value +04:06:11 ============================================================================ +04:06:11 [ 1] [ 4] [0810] +04:06:11 [ 7] [ 10] [0319090518] +04:06:11 [ 11] [ 6] [154212] +04:06:11 [ 39] [ 2] [00] +04:06:11 [ 70] [ 3] [301] +04:06:11 ============================================================================ +04:06:11 Calculate Source COMM Id = 2 +04:06:11 ============================================================================ +04:06:11 + + +waiting on router queue for slot.... +04:06:21 ============================================================================ +04:06:21 Slot Id : <65> +04:06:21 Transaction Type : REQUEST +04:06:21 Received From : +04:06:21 ============================================================================ +04:06:21 FNo. Len. Field Value +04:06:21 ============================================================================ +04:06:21 [ 1] [ 4] [0800] +04:06:21 [ 7] [ 10] [0319090528] +04:06:21 [ 11] [ 6] [154213] +04:06:21 [ 70] [ 3] [301] +04:06:21 ============================================================================ +04:06:21 + + +waiting on router queue for slot.... +04:06:21 Sending to : +04:06:21 ============================================================================ +04:06:21 ============================================================================ +04:06:21 Slot Id : <65> +04:06:21 Transaction Type : RESPONSE +04:06:21 Received From : +04:06:21 ============================================================================ +04:06:21 FNo. Len. Field Value +04:06:21 ============================================================================ +04:06:21 [ 1] [ 4] [0810] +04:06:21 [ 7] [ 10] [0319090528] +04:06:21 [ 11] [ 6] [154213] +04:06:21 [ 39] [ 2] [00] +04:06:21 [ 70] [ 3] [301] +04:06:21 ============================================================================ +04:06:21 Calculate Source COMM Id = 2 +04:06:21 ============================================================================ +04:06:21 + + +waiting on router queue for slot.... +04:06:22 ============================================================================ +04:06:22 Slot Id : <72> +04:06:22 Transaction Type : REQUEST +04:06:22 Received From : +04:06:22 ============================================================================ +04:06:22 FNo. Len. Field Value +04:06:22 ============================================================================ +04:06:22 [ 1] [ 4] [0800] +04:06:22 [ 7] [ 10] [0319210412] +04:06:22 [ 11] [ 6] [061704] +04:06:22 [ 37] [ 12] [57904061704] +04:06:22 [ 70] [ 3] [301] +04:06:22 ============================================================================ +04:06:22 + + +waiting on router queue for slot.... +04:06:22 Sending to : +04:06:22 ============================================================================ +04:06:22 ============================================================================ +04:06:22 Slot Id : <72> +04:06:22 Transaction Type : RESPONSE +04:06:22 Received From : +04:06:22 ============================================================================ +04:06:22 FNo. Len. Field Value +04:06:22 ============================================================================ +04:06:22 [ 1] [ 4] [0810] +04:06:22 [ 7] [ 10] [0319210412] +04:06:22 [ 11] [ 6] [061704] +04:06:22 [ 37] [ 12] [579040617040] +04:06:22 [ 39] [ 2] [00] +04:06:22 [ 70] [ 3] [810] +04:06:22 ============================================================================ +04:06:22 Calculate Source COMM Id = 4 +04:06:22 ============================================================================ +04:06:22 + + +waiting on router queue for slot.... +04:06:31 ============================================================================ +04:06:31 Slot Id : <106> +04:06:31 Transaction Type : REQUEST +04:06:31 Received From : +04:06:31 ============================================================================ +04:06:31 FNo. Len. Field Value +04:06:31 ============================================================================ +04:06:31 [ 1] [ 4] [0800] +04:06:31 [ 2] [ 5] [02531] +04:06:31 [ 3] [ 6] [579048] +04:06:31 [ 7] [ 10] [0319210631] +04:06:31 [ 11] [ 6] [806650] +04:06:31 [ 15] [ 10] [0319210631] +04:06:31 [ 37] [ 11] [57904806650] +04:06:31 [ 70] [ 3] [001] +04:06:31 ============================================================================ +04:06:31 + + +waiting on router queue for slot.... +04:06:31 ============================================================================ +04:06:31 Slot Id : <106> +04:06:31 Transaction Type : RESPONSE +04:06:31 Received From : +04:06:31 ============================================================================ +04:06:31 FNo. Len. Field Value +04:06:31 ============================================================================ +04:06:31 [ 1] [ 4] [0810] +04:06:31 [ 7] [ 10] [0319210631] +04:06:31 [ 11] [ 6] [806650] +04:06:31 [ 15] [ 4] [0319] +04:06:31 [ 37] [ 12] [57904806650] +04:06:31 [ 39] [ 2] [00] +04:06:31 [ 70] [ 3] [001] +04:06:31 ============================================================================ +04:06:31 Sending to : +04:06:31 ============================================================================ +04:06:31 + + +waiting on router queue for slot.... +04:06:37 ============================================================================ +04:06:37 Slot Id : <76> +04:06:37 Transaction Type : REQUEST +04:06:37 Received From : +04:06:37 ============================================================================ +04:06:37 FNo. Len. Field Value +04:06:37 ============================================================================ +04:06:37 [ 1] [ 4] [0800] +04:06:37 [ 7] [ 10] [0319090544] +04:06:37 [ 11] [ 6] [154214] +04:06:37 [ 70] [ 3] [301] +04:06:37 ============================================================================ +04:06:37 + + +waiting on router queue for slot.... +04:06:37 Sending to : +04:06:37 ============================================================================ +04:06:37 ============================================================================ +04:06:37 Slot Id : <76> +04:06:37 Transaction Type : RESPONSE +04:06:37 Received From : +04:06:37 ============================================================================ +04:06:37 FNo. Len. Field Value +04:06:37 ============================================================================ +04:06:37 [ 1] [ 4] [0810] +04:06:37 [ 7] [ 10] [0319090544] +04:06:37 [ 11] [ 6] [154214] +04:06:37 [ 39] [ 2] [00] +04:06:37 [ 70] [ 3] [301] +04:06:37 ============================================================================ +04:06:37 Calculate Source COMM Id = 2 +04:06:37 ============================================================================ +04:06:37 + + +waiting on router queue for slot.... +04:06:47 ============================================================================ +04:06:47 Slot Id : <66> +04:06:47 Transaction Type : REQUEST +04:06:47 Received From : +04:06:47 ============================================================================ +04:06:47 FNo. Len. Field Value +04:06:47 ============================================================================ +04:06:47 [ 1] [ 4] [0800] +04:06:47 [ 7] [ 10] [0319090554] +04:06:47 [ 11] [ 6] [154215] +04:06:47 [ 70] [ 3] [301] +04:06:47 ============================================================================ +04:06:47 + + +waiting on router queue for slot.... +04:06:47 Sending to : +04:06:47 ============================================================================ +04:06:47 ============================================================================ +04:06:47 Slot Id : <66> +04:06:47 Transaction Type : RESPONSE +04:06:47 Received From : +04:06:47 ============================================================================ +04:06:47 FNo. Len. Field Value +04:06:47 ============================================================================ +04:06:47 [ 1] [ 4] [0810] +04:06:47 [ 7] [ 10] [0319090554] +04:06:47 [ 11] [ 6] [154215] +04:06:47 [ 39] [ 2] [00] +04:06:47 [ 70] [ 3] [301] +04:06:47 ============================================================================ +04:06:47 Calculate Source COMM Id = 2 +04:06:47 ============================================================================ +04:06:47 + + +waiting on router queue for slot.... +04:06:58 ============================================================================ +04:06:58 Slot Id : <90> +04:06:58 Transaction Type : REQUEST +04:06:58 Received From : +04:06:58 ============================================================================ +04:06:58 FNo. Len. Field Value +04:06:58 ============================================================================ +04:06:58 [ 1] [ 4] [0800] +04:06:58 [ 7] [ 10] [0319090605] +04:06:58 [ 11] [ 6] [154216] +04:06:58 [ 70] [ 3] [301] +04:06:58 ============================================================================ +04:06:58 + + +waiting on router queue for slot.... +04:06:58 Sending to : +04:06:58 ============================================================================ +04:06:58 ============================================================================ +04:06:58 Slot Id : <90> +04:06:58 Transaction Type : RESPONSE +04:06:58 Received From : +04:06:58 ============================================================================ +04:06:58 FNo. Len. Field Value +04:06:58 ============================================================================ +04:06:58 [ 1] [ 4] [0810] +04:06:58 [ 7] [ 10] [0319090605] +04:06:58 [ 11] [ 6] [154216] +04:06:58 [ 39] [ 2] [00] +04:06:58 [ 70] [ 3] [301] +04:06:58 ============================================================================ +04:06:58 Calculate Source COMM Id = 2 +04:06:58 ============================================================================ +04:06:58 + + +waiting on router queue for slot.... +04:06:58 ============================================================================ +04:06:58 Slot Id : <114> +04:06:58 Transaction Type : REQUEST +04:06:58 Received From : +04:06:58 ============================================================================ +04:06:58 FNo. Len. Field Value +04:06:58 ============================================================================ +04:06:58 [ 1] [ 4] [0800] +04:06:58 [ 7] [ 10] [0320111844] +04:06:58 [ 11] [ 6] [041844] +04:06:58 [ 37] [ 12] [57904041844] +04:06:58 [ 70] [ 3] [301] +04:06:58 ============================================================================ +04:06:58 + + +waiting on router queue for slot.... +04:06:58 Sending to : +04:06:58 ============================================================================ +04:06:58 ============================================================================ +04:06:58 Slot Id : <114> +04:06:58 Transaction Type : RESPONSE +04:06:58 Received From : +04:06:58 ============================================================================ +04:06:58 FNo. Len. Field Value +04:06:58 ============================================================================ +04:06:58 [ 1] [ 4] [0810] +04:06:58 [ 7] [ 10] [0320111844] +04:06:58 [ 11] [ 6] [041844] +04:06:58 [ 37] [ 12] [579040418440] +04:06:58 [ 39] [ 2] [00] +04:06:58 [ 70] [ 3] [810] +04:06:58 ============================================================================ +04:06:58 Calculate Source COMM Id = 6 +04:06:58 ============================================================================ +04:06:58 + + +waiting on router queue for slot.... +04:07:13 ============================================================================ +04:07:13 Slot Id : <74> +04:07:13 Transaction Type : REQUEST +04:07:13 Received From : +04:07:13 ============================================================================ +04:07:13 FNo. Len. Field Value +04:07:13 ============================================================================ +04:07:13 [ 1] [ 4] [0800] +04:07:13 [ 7] [ 10] [0319090620] +04:07:13 [ 11] [ 6] [154217] +04:07:13 [ 70] [ 3] [301] +04:07:13 ============================================================================ +04:07:13 + + +waiting on router queue for slot.... +04:07:13 Sending to : +04:07:13 ============================================================================ +04:07:13 ============================================================================ +04:07:13 Slot Id : <74> +04:07:13 Transaction Type : RESPONSE +04:07:13 Received From : +04:07:13 ============================================================================ +04:07:13 FNo. Len. Field Value +04:07:13 ============================================================================ +04:07:13 [ 1] [ 4] [0810] +04:07:13 [ 7] [ 10] [0319090620] +04:07:13 [ 11] [ 6] [154217] +04:07:13 [ 39] [ 2] [00] +04:07:13 [ 70] [ 3] [301] +04:07:13 ============================================================================ +04:07:13 Calculate Source COMM Id = 2 +04:07:13 ============================================================================ +04:07:13 + + +waiting on router queue for slot.... +04:07:26 ============================================================================ +04:07:26 Slot Id : <107> +04:07:26 Transaction Type : REQUEST +04:07:26 Received From : +04:07:26 ============================================================================ +04:07:26 FNo. Len. Field Value +04:07:26 ============================================================================ +04:07:26 [ 1] [ 4] [0800] +04:07:26 [ 7] [ 10] [0319090631] +04:07:26 [ 11] [ 6] [154218] +04:07:26 [ 70] [ 3] [301] +04:07:26 ============================================================================ +04:07:26 + + +waiting on router queue for slot.... +04:07:26 Sending to : +04:07:26 ============================================================================ +04:07:26 ============================================================================ +04:07:26 Slot Id : <107> +04:07:26 Transaction Type : RESPONSE +04:07:26 Received From : +04:07:26 ============================================================================ +04:07:26 FNo. Len. Field Value +04:07:26 ============================================================================ +04:07:26 [ 1] [ 4] [0810] +04:07:26 [ 7] [ 10] [0319090631] +04:07:26 [ 11] [ 6] [154218] +04:07:26 [ 39] [ 2] [00] +04:07:26 [ 70] [ 3] [301] +04:07:26 ============================================================================ +04:07:26 Calculate Source COMM Id = 2 +04:07:26 ============================================================================ +04:07:26 + + +waiting on router queue for slot.... +04:07:33 ============================================================================ +04:07:33 Slot Id : <83> +04:07:33 Transaction Type : REQUEST +04:07:33 Received From : +04:07:33 ============================================================================ +04:07:33 FNo. Len. Field Value +04:07:33 ============================================================================ +04:07:33 [ 1] [ 4] [0800] +04:07:33 [ 2] [ 5] [02531] +04:07:33 [ 3] [ 6] [579048] +04:07:33 [ 7] [ 10] [0319210733] +04:07:33 [ 11] [ 6] [806651] +04:07:33 [ 15] [ 10] [0319210733] +04:07:33 [ 37] [ 11] [57904806651] +04:07:33 [ 70] [ 3] [001] +04:07:33 ============================================================================ +04:07:33 + + +waiting on router queue for slot.... +04:07:33 ============================================================================ +04:07:33 Slot Id : <83> +04:07:33 Transaction Type : RESPONSE +04:07:33 Received From : +04:07:33 ============================================================================ +04:07:33 FNo. Len. Field Value +04:07:33 ============================================================================ +04:07:33 [ 1] [ 4] [0810] +04:07:33 [ 7] [ 10] [0319210733] +04:07:33 [ 11] [ 6] [806651] +04:07:33 [ 15] [ 4] [0319] +04:07:33 [ 37] [ 12] [57904806651] +04:07:33 [ 39] [ 2] [00] +04:07:33 [ 70] [ 3] [001] +04:07:33 ============================================================================ +04:07:33 Sending to : +04:07:33 ============================================================================ +04:07:33 + + +waiting on router queue for slot.... +04:07:40 ============================================================================ +04:07:40 Slot Id : <92> +04:07:40 Transaction Type : REQUEST +04:07:40 Received From : +04:07:40 ============================================================================ +04:07:40 FNo. Len. Field Value +04:07:40 ============================================================================ +04:07:40 [ 1] [ 4] [0800] +04:07:40 [ 7] [ 10] [0319090647] +04:07:40 [ 11] [ 6] [154219] +04:07:40 [ 70] [ 3] [301] +04:07:40 ============================================================================ +04:07:40 + + +waiting on router queue for slot.... +04:07:40 Sending to : +04:07:40 ============================================================================ +04:07:40 ============================================================================ +04:07:40 Slot Id : <92> +04:07:40 Transaction Type : RESPONSE +04:07:40 Received From : +04:07:40 ============================================================================ +04:07:40 FNo. Len. Field Value +04:07:40 ============================================================================ +04:07:40 [ 1] [ 4] [0810] +04:07:40 [ 7] [ 10] [0319090647] +04:07:40 [ 11] [ 6] [154219] +04:07:40 [ 39] [ 2] [00] +04:07:40 [ 70] [ 3] [301] +04:07:40 ============================================================================ +04:07:40 Calculate Source COMM Id = 2 +04:07:40 ============================================================================ +04:07:40 + + +waiting on router queue for slot.... +04:07:51 ============================================================================ +04:07:51 Slot Id : <118> +04:07:51 Transaction Type : REQUEST +04:07:51 Received From : +04:07:51 ============================================================================ +04:07:51 FNo. Len. Field Value +04:07:51 ============================================================================ +04:07:51 [ 1] [ 4] [0800] +04:07:51 [ 7] [ 10] [0319090658] +04:07:51 [ 11] [ 6] [154220] +04:07:51 [ 70] [ 3] [301] +04:07:51 ============================================================================ +04:07:51 + + +waiting on router queue for slot.... +04:07:51 Sending to : +04:07:51 ============================================================================ +04:07:51 ============================================================================ +04:07:51 Slot Id : <118> +04:07:51 Transaction Type : RESPONSE +04:07:51 Received From : +04:07:51 ============================================================================ +04:07:51 FNo. Len. Field Value +04:07:51 ============================================================================ +04:07:51 [ 1] [ 4] [0810] +04:07:51 [ 7] [ 10] [0319090658] +04:07:51 [ 11] [ 6] [154220] +04:07:51 [ 39] [ 2] [00] +04:07:51 [ 70] [ 3] [301] +04:07:51 ============================================================================ +04:07:51 Calculate Source COMM Id = 2 +04:07:51 ============================================================================ +04:07:51 + + +waiting on router queue for slot.... +04:08:02 ============================================================================ +04:08:02 Slot Id : <121> +04:08:02 Transaction Type : REQUEST +04:08:02 Received From : +04:08:02 ============================================================================ +04:08:02 FNo. Len. Field Value +04:08:02 ============================================================================ +04:08:02 [ 1] [ 4] [0800] +04:08:02 [ 7] [ 10] [0319090709] +04:08:02 [ 11] [ 6] [154221] +04:08:02 [ 70] [ 3] [301] +04:08:02 ============================================================================ +04:08:02 + + +waiting on router queue for slot.... +04:08:02 Sending to : +04:08:02 ============================================================================ +04:08:02 ============================================================================ +04:08:02 Slot Id : <121> +04:08:02 Transaction Type : RESPONSE +04:08:02 Received From : +04:08:02 ============================================================================ +04:08:02 FNo. Len. Field Value +04:08:02 ============================================================================ +04:08:02 [ 1] [ 4] [0810] +04:08:02 [ 7] [ 10] [0319090709] +04:08:02 [ 11] [ 6] [154221] +04:08:02 [ 39] [ 2] [00] +04:08:02 [ 70] [ 3] [301] +04:08:02 ============================================================================ +04:08:02 Calculate Source COMM Id = 2 +04:08:02 ============================================================================ +04:08:02 + + +waiting on router queue for slot.... +04:08:03 ============================================================================ +04:08:03 Slot Id : <113> +04:08:03 Transaction Type : REQUEST +04:08:03 Received From : +04:08:03 ============================================================================ +04:08:03 FNo. Len. Field Value +04:08:03 ============================================================================ +04:08:03 [ 1] [ 4] [0800] +04:08:03 [ 7] [ 10] [0320111949] +04:08:03 [ 11] [ 6] [041949] +04:08:03 [ 37] [ 12] [57904041949] +04:08:03 [ 70] [ 3] [301] +04:08:03 ============================================================================ +04:08:03 + + +waiting on router queue for slot.... +04:08:03 Sending to : +04:08:03 ============================================================================ +04:08:03 ============================================================================ +04:08:03 Slot Id : <113> +04:08:03 Transaction Type : RESPONSE +04:08:03 Received From : +04:08:03 ============================================================================ +04:08:03 FNo. Len. Field Value +04:08:03 ============================================================================ +04:08:03 [ 1] [ 4] [0810] +04:08:03 [ 7] [ 10] [0320111949] +04:08:03 [ 11] [ 6] [041949] +04:08:03 [ 37] [ 12] [579040419490] +04:08:03 [ 39] [ 2] [00] +04:08:03 [ 70] [ 3] [810] +04:08:03 ============================================================================ +04:08:03 Calculate Source COMM Id = 6 +04:08:03 ============================================================================ +04:08:03 + + +waiting on router queue for slot.... +04:08:12 ============================================================================ +04:08:12 Slot Id : <108> +04:08:12 Transaction Type : REQUEST +04:08:12 Received From : +04:08:12 ============================================================================ +04:08:12 FNo. Len. Field Value +04:08:12 ============================================================================ +04:08:12 [ 1] [ 4] [0800] +04:08:12 [ 7] [ 10] [0319090719] +04:08:12 [ 11] [ 6] [154222] +04:08:12 [ 70] [ 3] [301] +04:08:12 ============================================================================ +04:08:12 + + +waiting on router queue for slot.... +04:08:12 Sending to : +04:08:12 ============================================================================ +04:08:12 ============================================================================ +04:08:12 Slot Id : <108> +04:08:12 Transaction Type : RESPONSE +04:08:12 Received From : +04:08:12 ============================================================================ +04:08:12 FNo. Len. Field Value +04:08:12 ============================================================================ +04:08:12 [ 1] [ 4] [0810] +04:08:12 [ 7] [ 10] [0319090719] +04:08:12 [ 11] [ 6] [154222] +04:08:12 [ 39] [ 2] [00] +04:08:12 [ 70] [ 3] [301] +04:08:12 ============================================================================ +04:08:12 Calculate Source COMM Id = 2 +04:08:12 ============================================================================ +04:08:12 + + +waiting on router queue for slot.... +04:08:22 ============================================================================ +04:08:22 Slot Id : <94> +04:08:22 Transaction Type : REQUEST +04:08:22 Received From : +04:08:22 ============================================================================ +04:08:22 FNo. Len. Field Value +04:08:22 ============================================================================ +04:08:22 [ 1] [ 4] [0800] +04:08:22 [ 7] [ 10] [0319090729] +04:08:22 [ 11] [ 6] [154223] +04:08:22 [ 70] [ 3] [301] +04:08:22 ============================================================================ +04:08:22 + + +waiting on router queue for slot.... +04:08:22 Sending to : +04:08:22 ============================================================================ +04:08:22 ============================================================================ +04:08:22 Slot Id : <94> +04:08:22 Transaction Type : RESPONSE +04:08:22 Received From : +04:08:22 ============================================================================ +04:08:22 FNo. Len. Field Value +04:08:22 ============================================================================ +04:08:22 [ 1] [ 4] [0810] +04:08:22 [ 7] [ 10] [0319090729] +04:08:22 [ 11] [ 6] [154223] +04:08:22 [ 39] [ 2] [00] +04:08:22 [ 70] [ 3] [301] +04:08:22 ============================================================================ +04:08:22 Calculate Source COMM Id = 2 +04:08:22 ============================================================================ +04:08:22 + + +waiting on router queue for slot.... +04:08:33 ============================================================================ +04:08:33 Slot Id : <115> +04:08:33 Transaction Type : REQUEST +04:08:33 Received From : +04:08:33 ============================================================================ +04:08:33 FNo. Len. Field Value +04:08:33 ============================================================================ +04:08:33 [ 1] [ 4] [0800] +04:08:33 [ 7] [ 10] [0319090740] +04:08:33 [ 11] [ 6] [154224] +04:08:33 [ 70] [ 3] [301] +04:08:33 ============================================================================ +04:08:33 + + +waiting on router queue for slot.... +04:08:33 Sending to : +04:08:33 ============================================================================ +04:08:33 ============================================================================ +04:08:33 Slot Id : <115> +04:08:33 Transaction Type : RESPONSE +04:08:33 Received From : +04:08:33 ============================================================================ +04:08:33 FNo. Len. Field Value +04:08:33 ============================================================================ +04:08:33 [ 1] [ 4] [0810] +04:08:33 [ 7] [ 10] [0319090740] +04:08:33 [ 11] [ 6] [154224] +04:08:33 [ 39] [ 2] [00] +04:08:33 [ 70] [ 3] [301] +04:08:33 ============================================================================ +04:08:33 Calculate Source COMM Id = 2 +04:08:33 ============================================================================ +04:08:33 + + +waiting on router queue for slot.... +04:08:35 ============================================================================ +04:08:35 Slot Id : <127> +04:08:35 Transaction Type : REQUEST +04:08:35 Received From : +04:08:35 ============================================================================ +04:08:35 FNo. Len. Field Value +04:08:35 ============================================================================ +04:08:35 [ 1] [ 4] [0800] +04:08:35 [ 2] [ 5] [02531] +04:08:35 [ 3] [ 6] [579048] +04:08:35 [ 7] [ 10] [0319210835] +04:08:35 [ 11] [ 6] [806652] +04:08:35 [ 15] [ 10] [0319210835] +04:08:35 [ 37] [ 11] [57904806652] +04:08:35 [ 70] [ 3] [001] +04:08:35 ============================================================================ +04:08:35 + + +waiting on router queue for slot.... +04:08:35 ============================================================================ +04:08:35 Slot Id : <127> +04:08:35 Transaction Type : RESPONSE +04:08:35 Received From : +04:08:35 ============================================================================ +04:08:35 FNo. Len. Field Value +04:08:35 ============================================================================ +04:08:35 [ 1] [ 4] [0810] +04:08:35 [ 7] [ 10] [0319210835] +04:08:35 [ 11] [ 6] [806652] +04:08:35 [ 15] [ 4] [0319] +04:08:35 [ 37] [ 12] [57904806652] +04:08:35 [ 39] [ 2] [00] +04:08:35 [ 70] [ 3] [001] +04:08:35 ============================================================================ +04:08:35 Sending to : +04:08:35 ============================================================================ +04:08:35 + + +waiting on router queue for slot.... +04:08:44 ============================================================================ +04:08:44 Slot Id : <125> +04:08:44 Transaction Type : REQUEST +04:08:44 Received From : +04:08:44 ============================================================================ +04:08:44 FNo. Len. Field Value +04:08:44 ============================================================================ +04:08:44 [ 1] [ 4] [0800] +04:08:44 [ 7] [ 10] [0319090751] +04:08:44 [ 11] [ 6] [154225] +04:08:44 [ 70] [ 3] [301] +04:08:44 ============================================================================ +04:08:44 + + +waiting on router queue for slot.... +04:08:44 Sending to : +04:08:44 ============================================================================ +04:08:44 ============================================================================ +04:08:44 Slot Id : <125> +04:08:44 Transaction Type : RESPONSE +04:08:44 Received From : +04:08:44 ============================================================================ +04:08:44 FNo. Len. Field Value +04:08:44 ============================================================================ +04:08:44 [ 1] [ 4] [0810] +04:08:44 [ 7] [ 10] [0319090751] +04:08:44 [ 11] [ 6] [154225] +04:08:44 [ 39] [ 2] [00] +04:08:44 [ 70] [ 3] [301] +04:08:44 ============================================================================ +04:08:44 Calculate Source COMM Id = 2 +04:08:44 ============================================================================ +04:08:44 + + +waiting on router queue for slot.... +04:08:55 ============================================================================ +04:08:55 Slot Id : <95> +04:08:55 Transaction Type : REQUEST +04:08:55 Received From : +04:08:55 ============================================================================ +04:08:55 FNo. Len. Field Value +04:08:55 ============================================================================ +04:08:55 [ 1] [ 4] [0800] +04:08:55 [ 7] [ 10] [0319090802] +04:08:55 [ 11] [ 6] [154226] +04:08:55 [ 70] [ 3] [301] +04:08:55 ============================================================================ +04:08:55 + + +waiting on router queue for slot.... +04:08:55 Sending to : +04:08:55 ============================================================================ +04:08:55 ============================================================================ +04:08:55 Slot Id : <95> +04:08:55 Transaction Type : RESPONSE +04:08:55 Received From : +04:08:55 ============================================================================ +04:08:55 FNo. Len. Field Value +04:08:55 ============================================================================ +04:08:55 [ 1] [ 4] [0810] +04:08:55 [ 7] [ 10] [0319090802] +04:08:55 [ 11] [ 6] [154226] +04:08:55 [ 39] [ 2] [00] +04:08:55 [ 70] [ 3] [301] +04:08:55 ============================================================================ +04:08:55 Calculate Source COMM Id = 2 +04:08:55 ============================================================================ +04:08:55 + + +waiting on router queue for slot.... +04:09:08 ============================================================================ +04:09:08 Slot Id : <75> +04:09:08 Transaction Type : REQUEST +04:09:08 Received From : +04:09:08 ============================================================================ +04:09:08 FNo. Len. Field Value +04:09:08 ============================================================================ +04:09:08 [ 1] [ 4] [0800] +04:09:08 [ 7] [ 10] [0320112054] +04:09:08 [ 11] [ 6] [042054] +04:09:08 [ 37] [ 12] [57904042054] +04:09:08 [ 70] [ 3] [301] +04:09:08 ============================================================================ +04:09:08 + + +waiting on router queue for slot.... +04:09:08 Sending to : +04:09:08 ============================================================================ +04:09:08 ============================================================================ +04:09:08 Slot Id : <75> +04:09:08 Transaction Type : RESPONSE +04:09:08 Received From : +04:09:08 ============================================================================ +04:09:08 FNo. Len. Field Value +04:09:08 ============================================================================ +04:09:08 [ 1] [ 4] [0810] +04:09:08 [ 7] [ 10] [0320112054] +04:09:08 [ 11] [ 6] [042054] +04:09:08 [ 37] [ 12] [579040420540] +04:09:08 [ 39] [ 2] [00] +04:09:08 [ 70] [ 3] [810] +04:09:08 ============================================================================ +04:09:08 Calculate Source COMM Id = 6 +04:09:08 ============================================================================ +04:09:08 + + +waiting on router queue for slot.... +04:09:12 ============================================================================ +04:09:12 Slot Id : <53> +04:09:12 Transaction Type : REQUEST +04:09:12 Received From : +04:09:12 ============================================================================ +04:09:12 FNo. Len. Field Value +04:09:12 ============================================================================ +04:09:12 [ 1] [ 4] [0800] +04:09:12 [ 7] [ 10] [0319090819] +04:09:12 [ 11] [ 6] [154227] +04:09:12 [ 70] [ 3] [301] +04:09:12 ============================================================================ +04:09:12 + + +waiting on router queue for slot.... +04:09:12 Sending to : +04:09:12 ============================================================================ +04:09:12 ============================================================================ +04:09:12 Slot Id : <53> +04:09:12 Transaction Type : RESPONSE +04:09:12 Received From : +04:09:12 ============================================================================ +04:09:12 FNo. Len. Field Value +04:09:12 ============================================================================ +04:09:12 [ 1] [ 4] [0810] +04:09:12 [ 7] [ 10] [0319090819] +04:09:12 [ 11] [ 6] [154227] +04:09:12 [ 39] [ 2] [00] +04:09:12 [ 70] [ 3] [301] +04:09:12 ============================================================================ +04:09:12 Calculate Source COMM Id = 2 +04:09:12 ============================================================================ +04:09:12 + + +waiting on router queue for slot.... +04:09:24 ============================================================================ +04:09:24 Slot Id : <134> +04:09:24 Transaction Type : REQUEST +04:09:24 Received From : +04:09:24 ============================================================================ +04:09:24 FNo. Len. Field Value +04:09:24 ============================================================================ +04:09:24 [ 1] [ 4] [0800] +04:09:24 [ 7] [ 10] [0319090831] +04:09:24 [ 11] [ 6] [154228] +04:09:24 [ 70] [ 3] [301] +04:09:24 ============================================================================ +04:09:24 + + +waiting on router queue for slot.... +04:09:24 Sending to : +04:09:24 ============================================================================ +04:09:24 ============================================================================ +04:09:24 Slot Id : <134> +04:09:24 Transaction Type : RESPONSE +04:09:24 Received From : +04:09:24 ============================================================================ +04:09:24 FNo. Len. Field Value +04:09:24 ============================================================================ +04:09:24 [ 1] [ 4] [0810] +04:09:24 [ 7] [ 10] [0319090831] +04:09:24 [ 11] [ 6] [154228] +04:09:24 [ 39] [ 2] [00] +04:09:24 [ 70] [ 3] [301] +04:09:24 ============================================================================ +04:09:24 Calculate Source COMM Id = 2 +04:09:24 ============================================================================ +04:09:24 + + +waiting on router queue for slot.... +04:09:34 ============================================================================ +04:09:34 Slot Id : <96> +04:09:34 Transaction Type : REQUEST +04:09:34 Received From : +04:09:34 ============================================================================ +04:09:34 FNo. Len. Field Value +04:09:34 ============================================================================ +04:09:34 [ 1] [ 4] [0800] +04:09:34 [ 7] [ 10] [0319090841] +04:09:34 [ 11] [ 6] [154229] +04:09:34 [ 70] [ 3] [301] +04:09:34 ============================================================================ +04:09:34 + + +waiting on router queue for slot.... +04:09:34 Sending to : +04:09:34 ============================================================================ +04:09:34 ============================================================================ +04:09:34 Slot Id : <96> +04:09:34 Transaction Type : RESPONSE +04:09:34 Received From : +04:09:34 ============================================================================ +04:09:34 FNo. Len. Field Value +04:09:34 ============================================================================ +04:09:34 [ 1] [ 4] [0810] +04:09:34 [ 7] [ 10] [0319090841] +04:09:34 [ 11] [ 6] [154229] +04:09:34 [ 39] [ 2] [00] +04:09:34 [ 70] [ 3] [301] +04:09:34 ============================================================================ +04:09:34 Calculate Source COMM Id = 2 +04:09:34 ============================================================================ +04:09:34 + + +waiting on router queue for slot.... +04:09:37 ============================================================================ +04:09:37 Slot Id : <98> +04:09:37 Transaction Type : REQUEST +04:09:37 Received From : +04:09:37 ============================================================================ +04:09:37 FNo. Len. Field Value +04:09:37 ============================================================================ +04:09:37 [ 1] [ 4] [0800] +04:09:37 [ 2] [ 5] [02531] +04:09:37 [ 3] [ 6] [579048] +04:09:37 [ 7] [ 10] [0319210937] +04:09:37 [ 11] [ 6] [806653] +04:09:37 [ 15] [ 10] [0319210937] +04:09:37 [ 37] [ 11] [57904806653] +04:09:37 [ 70] [ 3] [001] +04:09:37 ============================================================================ +04:09:37 + + +waiting on router queue for slot.... +04:09:37 ============================================================================ +04:09:37 Slot Id : <98> +04:09:37 Transaction Type : RESPONSE +04:09:37 Received From : +04:09:37 ============================================================================ +04:09:37 FNo. Len. Field Value +04:09:37 ============================================================================ +04:09:37 [ 1] [ 4] [0810] +04:09:37 [ 7] [ 10] [0319210937] +04:09:37 [ 11] [ 6] [806653] +04:09:37 [ 15] [ 4] [0319] +04:09:37 [ 37] [ 12] [57904806653] +04:09:37 [ 39] [ 2] [00] +04:09:37 [ 70] [ 3] [001] +04:09:37 ============================================================================ +04:09:37 Sending to : +04:09:37 ============================================================================ +04:09:37 + + +waiting on router queue for slot.... +04:09:49 ============================================================================ +04:09:49 Slot Id : <103> +04:09:49 Transaction Type : REQUEST +04:09:49 Received From : +04:09:49 ============================================================================ +04:09:49 FNo. Len. Field Value +04:09:49 ============================================================================ +04:09:49 [ 1] [ 4] [0800] +04:09:49 [ 7] [ 10] [0319090856] +04:09:49 [ 11] [ 6] [154230] +04:09:49 [ 70] [ 3] [301] +04:09:49 ============================================================================ +04:09:49 + + +waiting on router queue for slot.... +04:09:49 Sending to : +04:09:49 ============================================================================ +04:09:49 ============================================================================ +04:09:49 Slot Id : <103> +04:09:49 Transaction Type : RESPONSE +04:09:49 Received From : +04:09:49 ============================================================================ +04:09:49 FNo. Len. Field Value +04:09:49 ============================================================================ +04:09:49 [ 1] [ 4] [0810] +04:09:49 [ 7] [ 10] [0319090856] +04:09:49 [ 11] [ 6] [154230] +04:09:49 [ 39] [ 2] [00] +04:09:49 [ 70] [ 3] [301] +04:09:49 ============================================================================ +04:09:49 Calculate Source COMM Id = 2 +04:09:49 ============================================================================ +04:09:49 + + +waiting on router queue for slot.... +04:09:56 ============================================================================ +04:09:56 Slot Id : <71> +04:09:56 Transaction Type : REQUEST +04:09:56 Received From : +04:09:56 ============================================================================ +04:09:56 FNo. Len. Field Value +04:09:56 ============================================================================ +04:09:56 [ 1] [ 4] [0800] +04:09:56 [ 7] [ 10] [0319211742] +04:09:56 [ 11] [ 6] [082719] +04:09:56 [ 37] [ 12] [57904082719] +04:09:56 [ 70] [ 3] [301] +04:09:56 ============================================================================ +04:09:56 + + +waiting on router queue for slot.... +04:09:56 Sending to : +04:09:56 ============================================================================ +04:09:56 ============================================================================ +04:09:56 Slot Id : <71> +04:09:56 Transaction Type : RESPONSE +04:09:56 Received From : +04:09:56 ============================================================================ +04:09:56 FNo. Len. Field Value +04:09:56 ============================================================================ +04:09:56 [ 1] [ 4] [0810] +04:09:56 [ 7] [ 10] [0319211742] +04:09:56 [ 11] [ 6] [082719] +04:09:56 [ 37] [ 12] [579040827190] +04:09:56 [ 39] [ 2] [00] +04:09:56 [ 70] [ 3] [810] +04:09:56 ============================================================================ +04:09:56 Calculate Source COMM Id = 1 +04:09:56 ============================================================================ +04:09:56 + + +waiting on router queue for slot.... +04:09:59 ============================================================================ +04:09:59 Slot Id : <101> +04:09:59 Transaction Type : REQUEST +04:09:59 Received From : +04:09:59 ============================================================================ +04:09:59 FNo. Len. Field Value +04:09:59 ============================================================================ +04:09:59 [ 1] [ 4] [0800] +04:09:59 [ 7] [ 10] [0319090906] +04:09:59 [ 11] [ 6] [154231] +04:09:59 [ 70] [ 3] [301] +04:09:59 ============================================================================ +04:09:59 + + +waiting on router queue for slot.... +04:09:59 Sending to : +04:09:59 ============================================================================ +04:09:59 ============================================================================ +04:09:59 Slot Id : <101> +04:09:59 Transaction Type : RESPONSE +04:09:59 Received From : +04:09:59 ============================================================================ +04:09:59 FNo. Len. Field Value +04:09:59 ============================================================================ +04:09:59 [ 1] [ 4] [0810] +04:09:59 [ 7] [ 10] [0319090906] +04:09:59 [ 11] [ 6] [154231] +04:09:59 [ 39] [ 2] [00] +04:09:59 [ 70] [ 3] [301] +04:09:59 ============================================================================ +04:09:59 Calculate Source COMM Id = 2 +04:09:59 ============================================================================ +04:09:59 + + +waiting on router queue for slot.... +04:10:09 ============================================================================ +04:10:09 Slot Id : <102> +04:10:09 Transaction Type : REQUEST +04:10:09 Received From : +04:10:09 ============================================================================ +04:10:09 FNo. Len. Field Value +04:10:09 ============================================================================ +04:10:09 [ 1] [ 4] [0800] +04:10:09 [ 7] [ 10] [0319090916] +04:10:09 [ 11] [ 6] [154232] +04:10:09 [ 70] [ 3] [301] +04:10:09 ============================================================================ +04:10:09 + + +waiting on router queue for slot.... +04:10:09 Sending to : +04:10:09 ============================================================================ +04:10:09 ============================================================================ +04:10:09 Slot Id : <102> +04:10:09 Transaction Type : RESPONSE +04:10:09 Received From : +04:10:09 ============================================================================ +04:10:09 FNo. Len. Field Value +04:10:09 ============================================================================ +04:10:09 [ 1] [ 4] [0810] +04:10:09 [ 7] [ 10] [0319090916] +04:10:09 [ 11] [ 6] [154232] +04:10:09 [ 39] [ 2] [00] +04:10:09 [ 70] [ 3] [301] +04:10:09 ============================================================================ +04:10:09 Calculate Source COMM Id = 2 +04:10:09 ============================================================================ +04:10:09 + + +waiting on router queue for slot.... +04:10:13 ============================================================================ +04:10:13 Slot Id : <109> +04:10:13 Transaction Type : REQUEST +04:10:13 Received From : +04:10:13 ============================================================================ +04:10:13 FNo. Len. Field Value +04:10:13 ============================================================================ +04:10:13 [ 1] [ 4] [0800] +04:10:13 [ 7] [ 10] [0320112200] +04:10:13 [ 11] [ 6] [042200] +04:10:13 [ 37] [ 12] [57904042200] +04:10:13 [ 70] [ 3] [301] +04:10:13 ============================================================================ +04:10:13 + + +waiting on router queue for slot.... +04:10:13 Sending to : +04:10:13 ============================================================================ +04:10:13 ============================================================================ +04:10:13 Slot Id : <109> +04:10:13 Transaction Type : RESPONSE +04:10:13 Received From : +04:10:13 ============================================================================ +04:10:13 FNo. Len. Field Value +04:10:13 ============================================================================ +04:10:13 [ 1] [ 4] [0810] +04:10:13 [ 7] [ 10] [0320112200] +04:10:13 [ 11] [ 6] [042200] +04:10:13 [ 37] [ 12] [579040422000] +04:10:13 [ 39] [ 2] [00] +04:10:13 [ 70] [ 3] [810] +04:10:13 ============================================================================ +04:10:13 Calculate Source COMM Id = 6 +04:10:13 ============================================================================ +04:10:13 + + +waiting on router queue for slot.... +04:10:20 ============================================================================ +04:10:20 Slot Id : <70> +04:10:20 Transaction Type : REQUEST +04:10:20 Received From : +04:10:20 ============================================================================ +04:10:20 FNo. Len. Field Value +04:10:20 ============================================================================ +04:10:20 [ 1] [ 4] [0800] +04:10:20 [ 7] [ 10] [0319090927] +04:10:20 [ 11] [ 6] [154233] +04:10:20 [ 70] [ 3] [301] +04:10:20 ============================================================================ +04:10:20 + + +waiting on router queue for slot.... +04:10:20 Sending to : +04:10:20 ============================================================================ +04:10:20 ============================================================================ +04:10:20 Slot Id : <70> +04:10:20 Transaction Type : RESPONSE +04:10:20 Received From : +04:10:20 ============================================================================ +04:10:20 FNo. Len. Field Value +04:10:20 ============================================================================ +04:10:20 [ 1] [ 4] [0810] +04:10:20 [ 7] [ 10] [0319090927] +04:10:20 [ 11] [ 6] [154233] +04:10:20 [ 39] [ 2] [00] +04:10:20 [ 70] [ 3] [301] +04:10:20 ============================================================================ +04:10:20 Calculate Source COMM Id = 2 +04:10:20 ============================================================================ +04:10:20 + + +waiting on router queue for slot.... +04:10:36 ============================================================================ +04:10:36 Slot Id : <136> +04:10:36 Transaction Type : REQUEST +04:10:36 Received From : +04:10:36 ============================================================================ +04:10:36 FNo. Len. Field Value +04:10:36 ============================================================================ +04:10:36 [ 1] [ 4] [0800] +04:10:36 [ 7] [ 10] [0319090943] +04:10:36 [ 11] [ 6] [154234] +04:10:36 [ 70] [ 3] [301] +04:10:36 ============================================================================ +04:10:36 + + +waiting on router queue for slot.... +04:10:36 Sending to : +04:10:36 ============================================================================ +04:10:36 ============================================================================ +04:10:36 Slot Id : <136> +04:10:36 Transaction Type : RESPONSE +04:10:36 Received From : +04:10:36 ============================================================================ +04:10:36 FNo. Len. Field Value +04:10:36 ============================================================================ +04:10:36 [ 1] [ 4] [0810] +04:10:36 [ 7] [ 10] [0319090943] +04:10:36 [ 11] [ 6] [154234] +04:10:36 [ 39] [ 2] [00] +04:10:36 [ 70] [ 3] [301] +04:10:36 ============================================================================ +04:10:36 Calculate Source COMM Id = 2 +04:10:36 ============================================================================ +04:10:36 + + +waiting on router queue for slot.... +04:10:39 ============================================================================ +04:10:39 Slot Id : <131> +04:10:39 Transaction Type : REQUEST +04:10:39 Received From : +04:10:39 ============================================================================ +04:10:39 FNo. Len. Field Value +04:10:39 ============================================================================ +04:10:39 [ 1] [ 4] [0800] +04:10:39 [ 2] [ 5] [02531] +04:10:39 [ 3] [ 6] [579048] +04:10:39 [ 7] [ 10] [0319211039] +04:10:39 [ 11] [ 6] [806654] +04:10:39 [ 15] [ 10] [0319211039] +04:10:39 [ 37] [ 11] [57904806654] +04:10:39 [ 70] [ 3] [001] +04:10:39 ============================================================================ +04:10:39 + + +waiting on router queue for slot.... +04:10:39 ============================================================================ +04:10:39 Slot Id : <131> +04:10:39 Transaction Type : RESPONSE +04:10:39 Received From : +04:10:39 ============================================================================ +04:10:39 FNo. Len. Field Value +04:10:39 ============================================================================ +04:10:39 [ 1] [ 4] [0810] +04:10:39 [ 7] [ 10] [0319211039] +04:10:39 [ 11] [ 6] [806654] +04:10:39 [ 15] [ 4] [0319] +04:10:39 [ 37] [ 12] [57904806654] +04:10:39 [ 39] [ 2] [00] +04:10:39 [ 70] [ 3] [001] +04:10:39 ============================================================================ +04:10:39 Sending to : +04:10:39 ============================================================================ +04:10:39 + + +waiting on router queue for slot.... +04:10:47 ============================================================================ +04:10:47 Slot Id : <129> +04:10:47 Transaction Type : REQUEST +04:10:47 Received From : +04:10:47 ============================================================================ +04:10:47 FNo. Len. Field Value +04:10:47 ============================================================================ +04:10:47 [ 1] [ 4] [0800] +04:10:47 [ 7] [ 10] [0319090954] +04:10:47 [ 11] [ 6] [154235] +04:10:47 [ 70] [ 3] [301] +04:10:47 ============================================================================ +04:10:47 + + +waiting on router queue for slot.... +04:10:47 Sending to : +04:10:47 ============================================================================ +04:10:47 ============================================================================ +04:10:47 Slot Id : <129> +04:10:47 Transaction Type : RESPONSE +04:10:47 Received From : +04:10:47 ============================================================================ +04:10:47 FNo. Len. Field Value +04:10:47 ============================================================================ +04:10:47 [ 1] [ 4] [0810] +04:10:47 [ 7] [ 10] [0319090954] +04:10:47 [ 11] [ 6] [154235] +04:10:47 [ 39] [ 2] [00] +04:10:47 [ 70] [ 3] [301] +04:10:47 ============================================================================ +04:10:47 Calculate Source COMM Id = 2 +04:10:47 ============================================================================ +04:10:47 + + +waiting on router queue for slot.... +04:10:59 ============================================================================ +04:10:59 Slot Id : <85> +04:10:59 Transaction Type : REQUEST +04:10:59 Received From : +04:10:59 ============================================================================ +04:10:59 FNo. Len. Field Value +04:10:59 ============================================================================ +04:10:59 [ 1] [ 4] [0800] +04:10:59 [ 7] [ 10] [0319091004] +04:10:59 [ 11] [ 6] [154236] +04:10:59 [ 70] [ 3] [301] +04:10:59 ============================================================================ +04:10:59 + + +waiting on router queue for slot.... +04:10:59 Sending to : +04:10:59 ============================================================================ +04:10:59 ============================================================================ +04:10:59 Slot Id : <85> +04:10:59 Transaction Type : RESPONSE +04:10:59 Received From : +04:10:59 ============================================================================ +04:10:59 FNo. Len. Field Value +04:10:59 ============================================================================ +04:10:59 [ 1] [ 4] [0810] +04:10:59 [ 7] [ 10] [0319091004] +04:10:59 [ 11] [ 6] [154236] +04:10:59 [ 39] [ 2] [00] +04:10:59 [ 70] [ 3] [301] +04:10:59 ============================================================================ +04:10:59 Calculate Source COMM Id = 2 +04:10:59 ============================================================================ +04:10:59 + + +waiting on router queue for slot.... +04:11:13 ============================================================================ +04:11:13 Slot Id : <105> +04:11:13 Transaction Type : REQUEST +04:11:13 Received From : +04:11:13 ============================================================================ +04:11:13 FNo. Len. Field Value +04:11:13 ============================================================================ +04:11:13 [ 1] [ 4] [0800] +04:11:13 [ 7] [ 10] [0319091019] +04:11:13 [ 11] [ 6] [154237] +04:11:13 [ 70] [ 3] [301] +04:11:13 ============================================================================ +04:11:13 + + +waiting on router queue for slot.... +04:11:13 Sending to : +04:11:13 ============================================================================ +04:11:13 ============================================================================ +04:11:13 Slot Id : <105> +04:11:13 Transaction Type : RESPONSE +04:11:13 Received From : +04:11:13 ============================================================================ +04:11:13 FNo. Len. Field Value +04:11:13 ============================================================================ +04:11:13 [ 1] [ 4] [0810] +04:11:13 [ 7] [ 10] [0319091019] +04:11:13 [ 11] [ 6] [154237] +04:11:13 [ 39] [ 2] [00] +04:11:13 [ 70] [ 3] [301] +04:11:13 ============================================================================ +04:11:13 Calculate Source COMM Id = 2 +04:11:13 ============================================================================ +04:11:13 + + +waiting on router queue for slot.... +04:11:18 ============================================================================ +04:11:18 Slot Id : <87> +04:11:18 Transaction Type : REQUEST +04:11:18 Received From : +04:11:18 ============================================================================ +04:11:18 FNo. Len. Field Value +04:11:18 ============================================================================ +04:11:18 [ 1] [ 4] [0800] +04:11:18 [ 7] [ 10] [0320112305] +04:11:18 [ 11] [ 6] [042305] +04:11:18 [ 37] [ 12] [57904042305] +04:11:18 [ 70] [ 3] [301] +04:11:18 ============================================================================ +04:11:18 + + +waiting on router queue for slot.... +04:11:18 Sending to : +04:11:18 ============================================================================ +04:11:18 ============================================================================ +04:11:18 Slot Id : <87> +04:11:18 Transaction Type : RESPONSE +04:11:18 Received From : +04:11:18 ============================================================================ +04:11:18 FNo. Len. Field Value +04:11:18 ============================================================================ +04:11:18 [ 1] [ 4] [0810] +04:11:18 [ 7] [ 10] [0320112305] +04:11:18 [ 11] [ 6] [042305] +04:11:18 [ 37] [ 12] [579040423050] +04:11:18 [ 39] [ 2] [00] +04:11:18 [ 70] [ 3] [810] +04:11:18 ============================================================================ +04:11:18 Calculate Source COMM Id = 6 +04:11:18 ============================================================================ +04:11:18 + + +waiting on router queue for slot.... +04:11:22 ============================================================================ +04:11:22 Slot Id : <104> +04:11:22 Transaction Type : REQUEST +04:11:22 Received From : +04:11:22 ============================================================================ +04:11:22 FNo. Len. Field Value +04:11:22 ============================================================================ +04:11:22 [ 1] [ 4] [0800] +04:11:22 [ 7] [ 10] [0319210912] +04:11:22 [ 11] [ 6] [085642] +04:11:22 [ 37] [ 12] [57904085642] +04:11:22 [ 70] [ 3] [301] +04:11:22 ============================================================================ +04:11:22 + + +waiting on router queue for slot.... +04:11:22 Sending to : +04:11:22 ============================================================================ +04:11:22 ============================================================================ +04:11:22 Slot Id : <104> +04:11:22 Transaction Type : RESPONSE +04:11:22 Received From : +04:11:22 ============================================================================ +04:11:22 FNo. Len. Field Value +04:11:22 ============================================================================ +04:11:22 [ 1] [ 4] [0810] +04:11:22 [ 7] [ 10] [0319210912] +04:11:22 [ 11] [ 6] [085642] +04:11:22 [ 37] [ 12] [579040856420] +04:11:22 [ 39] [ 2] [00] +04:11:22 [ 70] [ 3] [810] +04:11:22 ============================================================================ +04:11:22 Calculate Source COMM Id = 4 +04:11:22 ============================================================================ +04:11:22 + + +waiting on router queue for slot.... +04:11:23 ============================================================================ +04:11:23 Slot Id : <138> +04:11:23 Transaction Type : REQUEST +04:11:23 Received From : +04:11:23 ============================================================================ +04:11:23 FNo. Len. Field Value +04:11:23 ============================================================================ +04:11:23 [ 1] [ 4] [0800] +04:11:23 [ 7] [ 10] [0319091030] +04:11:23 [ 11] [ 6] [154238] +04:11:23 [ 70] [ 3] [301] +04:11:23 ============================================================================ +04:11:23 + + +waiting on router queue for slot.... +04:11:23 Sending to : +04:11:23 ============================================================================ +04:11:23 ============================================================================ +04:11:23 Slot Id : <138> +04:11:23 Transaction Type : RESPONSE +04:11:23 Received From : +04:11:23 ============================================================================ +04:11:23 FNo. Len. Field Value +04:11:23 ============================================================================ +04:11:23 [ 1] [ 4] [0810] +04:11:23 [ 7] [ 10] [0319091030] +04:11:23 [ 11] [ 6] [154238] +04:11:23 [ 39] [ 2] [00] +04:11:23 [ 70] [ 3] [301] +04:11:23 ============================================================================ +04:11:23 Calculate Source COMM Id = 2 +04:11:23 ============================================================================ +04:11:23 + + +waiting on router queue for slot.... +04:11:34 ============================================================================ +04:11:34 Slot Id : <97> +04:11:34 Transaction Type : REQUEST +04:11:34 Received From : +04:11:34 ============================================================================ +04:11:34 FNo. Len. Field Value +04:11:34 ============================================================================ +04:11:34 [ 1] [ 4] [0800] +04:11:34 [ 7] [ 10] [0319091041] +04:11:34 [ 11] [ 6] [154239] +04:11:34 [ 70] [ 3] [301] +04:11:34 ============================================================================ +04:11:34 + + +waiting on router queue for slot.... +04:11:34 Sending to : +04:11:34 ============================================================================ +04:11:34 ============================================================================ +04:11:34 Slot Id : <97> +04:11:34 Transaction Type : RESPONSE +04:11:34 Received From : +04:11:34 ============================================================================ +04:11:34 FNo. Len. Field Value +04:11:34 ============================================================================ +04:11:34 [ 1] [ 4] [0810] +04:11:34 [ 7] [ 10] [0319091041] +04:11:34 [ 11] [ 6] [154239] +04:11:34 [ 39] [ 2] [00] +04:11:34 [ 70] [ 3] [301] +04:11:34 ============================================================================ +04:11:34 Calculate Source COMM Id = 2 +04:11:34 ============================================================================ +04:11:34 + + +waiting on router queue for slot.... +04:11:41 ============================================================================ +04:11:41 Slot Id : <117> +04:11:41 Transaction Type : REQUEST +04:11:41 Received From : +04:11:41 ============================================================================ +04:11:41 FNo. Len. Field Value +04:11:41 ============================================================================ +04:11:41 [ 1] [ 4] [0800] +04:11:41 [ 2] [ 5] [02531] +04:11:41 [ 3] [ 6] [579048] +04:11:41 [ 7] [ 10] [0319211141] +04:11:41 [ 11] [ 6] [806655] +04:11:41 [ 15] [ 10] [0319211141] +04:11:41 [ 37] [ 11] [57904806655] +04:11:41 [ 70] [ 3] [001] +04:11:41 ============================================================================ +04:11:41 + + +waiting on router queue for slot.... +04:11:41 ============================================================================ +04:11:41 Slot Id : <117> +04:11:41 Transaction Type : RESPONSE +04:11:41 Received From : +04:11:41 ============================================================================ +04:11:41 FNo. Len. Field Value +04:11:41 ============================================================================ +04:11:41 [ 1] [ 4] [0810] +04:11:41 [ 7] [ 10] [0319211141] +04:11:41 [ 11] [ 6] [806655] +04:11:41 [ 15] [ 4] [0319] +04:11:41 [ 37] [ 12] [57904806655] +04:11:41 [ 39] [ 2] [00] +04:11:41 [ 70] [ 3] [001] +04:11:41 ============================================================================ +04:11:41 Sending to : +04:11:41 ============================================================================ +04:11:41 + + +waiting on router queue for slot.... +04:11:45 ============================================================================ +04:11:45 Slot Id : <112> +04:11:45 Transaction Type : REQUEST +04:11:45 Received From : +04:11:45 ============================================================================ +04:11:45 FNo. Len. Field Value +04:11:45 ============================================================================ +04:11:45 [ 1] [ 4] [0800] +04:11:45 [ 7] [ 10] [0319091052] +04:11:45 [ 11] [ 6] [154240] +04:11:45 [ 70] [ 3] [301] +04:11:45 ============================================================================ +04:11:45 + + +waiting on router queue for slot.... +04:11:45 Sending to : +04:11:45 ============================================================================ +04:11:45 ============================================================================ +04:11:45 Slot Id : <112> +04:11:45 Transaction Type : RESPONSE +04:11:45 Received From : +04:11:45 ============================================================================ +04:11:45 FNo. Len. Field Value +04:11:45 ============================================================================ +04:11:45 [ 1] [ 4] [0810] +04:11:45 [ 7] [ 10] [0319091052] +04:11:45 [ 11] [ 6] [154240] +04:11:45 [ 39] [ 2] [00] +04:11:45 [ 70] [ 3] [301] +04:11:45 ============================================================================ +04:11:45 Calculate Source COMM Id = 2 +04:11:45 ============================================================================ +04:11:45 + + +waiting on router queue for slot.... +04:11:56 ============================================================================ +04:11:56 Slot Id : <140> +04:11:56 Transaction Type : REQUEST +04:11:56 Received From : +04:11:56 ============================================================================ +04:11:56 FNo. Len. Field Value +04:11:56 ============================================================================ +04:11:56 [ 1] [ 4] [0800] +04:11:56 [ 7] [ 10] [0319091103] +04:11:56 [ 11] [ 6] [154241] +04:11:56 [ 70] [ 3] [301] +04:11:56 ============================================================================ +04:11:56 + + +waiting on router queue for slot.... +04:11:56 Sending to : +04:11:56 ============================================================================ +04:11:56 ============================================================================ +04:11:56 Slot Id : <140> +04:11:56 Transaction Type : RESPONSE +04:11:56 Received From : +04:11:56 ============================================================================ +04:11:56 FNo. Len. Field Value +04:11:56 ============================================================================ +04:11:56 [ 1] [ 4] [0810] +04:11:56 [ 7] [ 10] [0319091103] +04:11:56 [ 11] [ 6] [154241] +04:11:56 [ 39] [ 2] [00] +04:11:56 [ 70] [ 3] [301] +04:11:56 ============================================================================ +04:11:56 Calculate Source COMM Id = 2 +04:11:56 ============================================================================ +04:11:56 + + +waiting on router queue for slot.... +04:12:07 ============================================================================ +04:12:07 Slot Id : <111> +04:12:07 Transaction Type : REQUEST +04:12:07 Received From : +04:12:07 ============================================================================ +04:12:07 FNo. Len. Field Value +04:12:07 ============================================================================ +04:12:07 [ 1] [ 4] [0800] +04:12:07 [ 7] [ 10] [0319091114] +04:12:07 [ 11] [ 6] [154242] +04:12:07 [ 70] [ 3] [301] +04:12:07 ============================================================================ +04:12:07 + + +waiting on router queue for slot.... +04:12:07 Sending to : +04:12:07 ============================================================================ +04:12:07 ============================================================================ +04:12:07 Slot Id : <111> +04:12:07 Transaction Type : RESPONSE +04:12:07 Received From : +04:12:07 ============================================================================ +04:12:07 FNo. Len. Field Value +04:12:07 ============================================================================ +04:12:07 [ 1] [ 4] [0810] +04:12:07 [ 7] [ 10] [0319091114] +04:12:07 [ 11] [ 6] [154242] +04:12:07 [ 39] [ 2] [00] +04:12:07 [ 70] [ 3] [301] +04:12:07 ============================================================================ +04:12:07 Calculate Source COMM Id = 2 +04:12:07 ============================================================================ +04:12:07 + + +waiting on router queue for slot.... +04:12:22 ============================================================================ +04:12:22 Slot Id : <116> +04:12:22 Transaction Type : REQUEST +04:12:22 Received From : +04:12:22 ============================================================================ +04:12:22 FNo. Len. Field Value +04:12:22 ============================================================================ +04:12:22 [ 1] [ 4] [0800] +04:12:22 [ 7] [ 10] [0319091129] +04:12:22 [ 11] [ 6] [154243] +04:12:22 [ 70] [ 3] [301] +04:12:22 ============================================================================ +04:12:22 + + +waiting on router queue for slot.... +04:12:22 Sending to : +04:12:22 ============================================================================ +04:12:22 ============================================================================ +04:12:22 Slot Id : <116> +04:12:22 Transaction Type : RESPONSE +04:12:22 Received From : +04:12:22 ============================================================================ +04:12:22 FNo. Len. Field Value +04:12:22 ============================================================================ +04:12:22 [ 1] [ 4] [0810] +04:12:22 [ 7] [ 10] [0319091129] +04:12:22 [ 11] [ 6] [154243] +04:12:22 [ 39] [ 2] [00] +04:12:22 [ 70] [ 3] [301] +04:12:22 ============================================================================ +04:12:22 Calculate Source COMM Id = 2 +04:12:22 ============================================================================ +04:12:22 + + +waiting on router queue for slot.... +04:12:23 ============================================================================ +04:12:23 Slot Id : <124> +04:12:23 Transaction Type : REQUEST +04:12:23 Received From : +04:12:23 ============================================================================ +04:12:23 FNo. Len. Field Value +04:12:23 ============================================================================ +04:12:23 [ 1] [ 4] [0800] +04:12:23 [ 7] [ 10] [0320112410] +04:12:23 [ 11] [ 6] [042410] +04:12:23 [ 37] [ 12] [57904042410] +04:12:23 [ 70] [ 3] [301] +04:12:23 ============================================================================ +04:12:23 + + +waiting on router queue for slot.... +04:12:23 Sending to : +04:12:23 ============================================================================ +04:12:23 ============================================================================ +04:12:23 Slot Id : <124> +04:12:23 Transaction Type : RESPONSE +04:12:23 Received From : +04:12:23 ============================================================================ +04:12:23 FNo. Len. Field Value +04:12:23 ============================================================================ +04:12:23 [ 1] [ 4] [0810] +04:12:23 [ 7] [ 10] [0320112410] +04:12:23 [ 11] [ 6] [042410] +04:12:23 [ 37] [ 12] [579040424100] +04:12:23 [ 39] [ 2] [00] +04:12:23 [ 70] [ 3] [810] +04:12:23 ============================================================================ +04:12:23 Calculate Source COMM Id = 6 +04:12:23 ============================================================================ +04:12:23 + + +waiting on router queue for slot.... +04:12:34 ============================================================================ +04:12:34 Slot Id : <147> +04:12:34 Transaction Type : REQUEST +04:12:34 Received From : +04:12:34 ============================================================================ +04:12:34 FNo. Len. Field Value +04:12:34 ============================================================================ +04:12:34 [ 1] [ 4] [0800] +04:12:34 [ 7] [ 10] [0319091139] +04:12:34 [ 11] [ 6] [154244] +04:12:34 [ 70] [ 3] [301] +04:12:34 ============================================================================ +04:12:34 + + +waiting on router queue for slot.... +04:12:34 Sending to : +04:12:34 ============================================================================ +04:12:34 ============================================================================ +04:12:34 Slot Id : <147> +04:12:34 Transaction Type : RESPONSE +04:12:34 Received From : +04:12:34 ============================================================================ +04:12:34 FNo. Len. Field Value +04:12:34 ============================================================================ +04:12:34 [ 1] [ 4] [0810] +04:12:34 [ 7] [ 10] [0319091139] +04:12:34 [ 11] [ 6] [154244] +04:12:34 [ 39] [ 2] [00] +04:12:34 [ 70] [ 3] [301] +04:12:34 ============================================================================ +04:12:34 Calculate Source COMM Id = 2 +04:12:34 ============================================================================ +04:12:34 + + +waiting on router queue for slot.... +04:12:43 ============================================================================ +04:12:43 Slot Id : <80> +04:12:43 Transaction Type : REQUEST +04:12:43 Received From : +04:12:43 ============================================================================ +04:12:43 FNo. Len. Field Value +04:12:43 ============================================================================ +04:12:43 [ 1] [ 4] [0800] +04:12:43 [ 2] [ 5] [02531] +04:12:43 [ 3] [ 6] [579048] +04:12:43 [ 7] [ 10] [0319211243] +04:12:43 [ 11] [ 6] [806656] +04:12:43 [ 15] [ 10] [0319211243] +04:12:43 [ 37] [ 11] [57904806656] +04:12:43 [ 70] [ 3] [001] +04:12:43 ============================================================================ +04:12:43 + + +waiting on router queue for slot.... +04:12:43 ============================================================================ +04:12:43 Slot Id : <80> +04:12:43 Transaction Type : RESPONSE +04:12:43 Received From : +04:12:43 ============================================================================ +04:12:43 FNo. Len. Field Value +04:12:43 ============================================================================ +04:12:43 [ 1] [ 4] [0810] +04:12:43 [ 7] [ 10] [0319211243] +04:12:43 [ 11] [ 6] [806656] +04:12:43 [ 15] [ 4] [0319] +04:12:43 [ 37] [ 12] [57904806656] +04:12:43 [ 39] [ 2] [00] +04:12:43 [ 70] [ 3] [001] +04:12:43 ============================================================================ +04:12:43 Sending to : +04:12:43 ============================================================================ +04:12:43 + + +waiting on router queue for slot.... +04:12:48 ============================================================================ +04:12:48 Slot Id : <123> +04:12:48 Transaction Type : REQUEST +04:12:48 Received From : +04:12:48 ============================================================================ +04:12:48 FNo. Len. Field Value +04:12:48 ============================================================================ +04:12:48 [ 1] [ 4] [0800] +04:12:48 [ 7] [ 10] [0319091155] +04:12:48 [ 11] [ 6] [154245] +04:12:48 [ 70] [ 3] [301] +04:12:48 ============================================================================ +04:12:48 + + +waiting on router queue for slot.... +04:12:48 Sending to : +04:12:48 ============================================================================ +04:12:48 ============================================================================ +04:12:48 Slot Id : <123> +04:12:48 Transaction Type : RESPONSE +04:12:48 Received From : +04:12:48 ============================================================================ +04:12:48 FNo. Len. Field Value +04:12:48 ============================================================================ +04:12:48 [ 1] [ 4] [0810] +04:12:48 [ 7] [ 10] [0319091155] +04:12:48 [ 11] [ 6] [154245] +04:12:48 [ 39] [ 2] [00] +04:12:48 [ 70] [ 3] [301] +04:12:48 ============================================================================ +04:12:48 Calculate Source COMM Id = 2 +04:12:48 ============================================================================ +04:12:48 + + +waiting on router queue for slot.... +04:12:58 ============================================================================ +04:12:58 Slot Id : <122> +04:12:58 Transaction Type : REQUEST +04:12:58 Received From : +04:12:58 ============================================================================ +04:12:58 FNo. Len. Field Value +04:12:58 ============================================================================ +04:12:58 [ 1] [ 4] [0800] +04:12:58 [ 7] [ 10] [0319091205] +04:12:58 [ 11] [ 6] [154246] +04:12:58 [ 70] [ 3] [301] +04:12:58 ============================================================================ +04:12:58 + + +waiting on router queue for slot.... +04:12:58 Sending to : +04:12:58 ============================================================================ +04:12:58 ============================================================================ +04:12:58 Slot Id : <122> +04:12:58 Transaction Type : RESPONSE +04:12:58 Received From : +04:12:58 ============================================================================ +04:12:58 FNo. Len. Field Value +04:12:58 ============================================================================ +04:12:58 [ 1] [ 4] [0810] +04:12:58 [ 7] [ 10] [0319091205] +04:12:58 [ 11] [ 6] [154246] +04:12:58 [ 39] [ 2] [00] +04:12:58 [ 70] [ 3] [301] +04:12:58 ============================================================================ +04:12:58 Calculate Source COMM Id = 2 +04:12:58 ============================================================================ +04:12:58 + + +waiting on router queue for slot.... +04:13:08 ============================================================================ +04:13:08 Slot Id : <161> +04:13:08 Transaction Type : REQUEST +04:13:08 Received From : +04:13:08 ============================================================================ +04:13:08 FNo. Len. Field Value +04:13:08 ============================================================================ +04:13:08 [ 1] [ 4] [0800] +04:13:08 [ 7] [ 10] [0319091215] +04:13:08 [ 11] [ 6] [154247] +04:13:08 [ 70] [ 3] [301] +04:13:08 ============================================================================ +04:13:08 + + +waiting on router queue for slot.... +04:13:08 Sending to : +04:13:08 ============================================================================ +04:13:08 ============================================================================ +04:13:08 Slot Id : <161> +04:13:08 Transaction Type : RESPONSE +04:13:08 Received From : +04:13:08 ============================================================================ +04:13:08 FNo. Len. Field Value +04:13:08 ============================================================================ +04:13:08 [ 1] [ 4] [0810] +04:13:08 [ 7] [ 10] [0319091215] +04:13:08 [ 11] [ 6] [154247] +04:13:08 [ 39] [ 2] [00] +04:13:08 [ 70] [ 3] [301] +04:13:08 ============================================================================ +04:13:08 Calculate Source COMM Id = 2 +04:13:08 ============================================================================ +04:13:08 + + +waiting on router queue for slot.... +04:13:23 ============================================================================ +04:13:23 Slot Id : <154> +04:13:23 Transaction Type : REQUEST +04:13:23 Received From : +04:13:23 ============================================================================ +04:13:23 FNo. Len. Field Value +04:13:23 ============================================================================ +04:13:23 [ 1] [ 4] [0800] +04:13:23 [ 7] [ 10] [0319091230] +04:13:23 [ 11] [ 6] [154248] +04:13:23 [ 70] [ 3] [301] +04:13:23 ============================================================================ +04:13:23 + + +waiting on router queue for slot.... +04:13:23 Sending to : +04:13:23 ============================================================================ +04:13:23 ============================================================================ +04:13:23 Slot Id : <154> +04:13:23 Transaction Type : RESPONSE +04:13:23 Received From : +04:13:23 ============================================================================ +04:13:23 FNo. Len. Field Value +04:13:23 ============================================================================ +04:13:23 [ 1] [ 4] [0810] +04:13:23 [ 7] [ 10] [0319091230] +04:13:23 [ 11] [ 6] [154248] +04:13:23 [ 39] [ 2] [00] +04:13:23 [ 70] [ 3] [301] +04:13:23 ============================================================================ +04:13:23 Calculate Source COMM Id = 2 +04:13:23 ============================================================================ +04:13:23 + + +waiting on router queue for slot.... +04:13:28 ============================================================================ +04:13:28 Slot Id : <162> +04:13:28 Transaction Type : REQUEST +04:13:28 Received From : +04:13:28 ============================================================================ +04:13:28 FNo. Len. Field Value +04:13:28 ============================================================================ +04:13:28 [ 1] [ 4] [0800] +04:13:28 [ 7] [ 10] [0320112515] +04:13:28 [ 11] [ 6] [042515] +04:13:28 [ 37] [ 12] [57904042515] +04:13:28 [ 70] [ 3] [301] +04:13:28 ============================================================================ +04:13:28 + + +waiting on router queue for slot.... +04:13:28 Sending to : +04:13:28 ============================================================================ +04:13:28 ============================================================================ +04:13:28 Slot Id : <162> +04:13:28 Transaction Type : RESPONSE +04:13:28 Received From : +04:13:28 ============================================================================ +04:13:28 FNo. Len. Field Value +04:13:28 ============================================================================ +04:13:28 [ 1] [ 4] [0810] +04:13:28 [ 7] [ 10] [0320112515] +04:13:28 [ 11] [ 6] [042515] +04:13:28 [ 37] [ 12] [579040425150] +04:13:28 [ 39] [ 2] [00] +04:13:28 [ 70] [ 3] [810] +04:13:28 ============================================================================ +04:13:28 Calculate Source COMM Id = 6 +04:13:28 ============================================================================ +04:13:28 + + +waiting on router queue for slot.... +04:13:33 ============================================================================ +04:13:33 Slot Id : <132> +04:13:33 Transaction Type : REQUEST +04:13:33 Received From : +04:13:33 ============================================================================ +04:13:33 FNo. Len. Field Value +04:13:33 ============================================================================ +04:13:33 [ 1] [ 4] [0800] +04:13:33 [ 7] [ 10] [0319091240] +04:13:33 [ 11] [ 6] [154249] +04:13:33 [ 70] [ 3] [301] +04:13:33 ============================================================================ +04:13:33 + + +waiting on router queue for slot.... +04:13:33 Sending to : +04:13:33 ============================================================================ +04:13:33 ============================================================================ +04:13:33 Slot Id : <132> +04:13:33 Transaction Type : RESPONSE +04:13:33 Received From : +04:13:33 ============================================================================ +04:13:33 FNo. Len. Field Value +04:13:33 ============================================================================ +04:13:33 [ 1] [ 4] [0810] +04:13:33 [ 7] [ 10] [0319091240] +04:13:33 [ 11] [ 6] [154249] +04:13:33 [ 39] [ 2] [00] +04:13:33 [ 70] [ 3] [301] +04:13:33 ============================================================================ +04:13:33 Calculate Source COMM Id = 2 +04:13:33 ============================================================================ +04:13:33 + + +waiting on router queue for slot.... +04:13:44 ============================================================================ +04:13:44 Slot Id : <145> +04:13:44 Transaction Type : REQUEST +04:13:44 Received From : +04:13:44 ============================================================================ +04:13:44 FNo. Len. Field Value +04:13:44 ============================================================================ +04:13:44 [ 1] [ 4] [0800] +04:13:44 [ 7] [ 10] [0319091251] +04:13:44 [ 11] [ 6] [154250] +04:13:44 [ 70] [ 3] [301] +04:13:44 ============================================================================ +04:13:44 + + +waiting on router queue for slot.... +04:13:44 Sending to : +04:13:44 ============================================================================ +04:13:44 ============================================================================ +04:13:44 Slot Id : <145> +04:13:44 Transaction Type : RESPONSE +04:13:44 Received From : +04:13:44 ============================================================================ +04:13:44 FNo. Len. Field Value +04:13:44 ============================================================================ +04:13:44 [ 1] [ 4] [0810] +04:13:44 [ 7] [ 10] [0319091251] +04:13:44 [ 11] [ 6] [154250] +04:13:44 [ 39] [ 2] [00] +04:13:44 [ 70] [ 3] [301] +04:13:44 ============================================================================ +04:13:44 Calculate Source COMM Id = 2 +04:13:44 ============================================================================ +04:13:44 + + +waiting on router queue for slot.... +04:13:45 ============================================================================ +04:13:45 Slot Id : <143> +04:13:45 Transaction Type : REQUEST +04:13:45 Received From : +04:13:45 ============================================================================ +04:13:45 FNo. Len. Field Value +04:13:45 ============================================================================ +04:13:45 [ 1] [ 4] [0800] +04:13:45 [ 2] [ 5] [02531] +04:13:45 [ 3] [ 6] [579048] +04:13:45 [ 7] [ 10] [0319211345] +04:13:45 [ 11] [ 6] [806657] +04:13:45 [ 15] [ 10] [0319211345] +04:13:45 [ 37] [ 11] [57904806657] +04:13:45 [ 70] [ 3] [001] +04:13:45 ============================================================================ +04:13:45 + + +waiting on router queue for slot.... +04:13:45 ============================================================================ +04:13:45 Slot Id : <143> +04:13:45 Transaction Type : RESPONSE +04:13:45 Received From : +04:13:45 ============================================================================ +04:13:45 FNo. Len. Field Value +04:13:45 ============================================================================ +04:13:45 [ 1] [ 4] [0810] +04:13:45 [ 7] [ 10] [0319211345] +04:13:45 [ 11] [ 6] [806657] +04:13:45 [ 15] [ 4] [0319] +04:13:45 [ 37] [ 12] [57904806657] +04:13:45 [ 39] [ 2] [00] +04:13:45 [ 70] [ 3] [001] +04:13:45 ============================================================================ +04:13:45 Sending to : +04:13:45 ============================================================================ +04:13:45 + + +waiting on router queue for slot.... +04:13:55 ============================================================================ +04:13:55 Slot Id : <158> +04:13:55 Transaction Type : REQUEST +04:13:55 Received From : +04:13:55 ============================================================================ +04:13:55 FNo. Len. Field Value +04:13:55 ============================================================================ +04:13:55 [ 1] [ 4] [0800] +04:13:55 [ 7] [ 10] [0319091302] +04:13:55 [ 11] [ 6] [154251] +04:13:55 [ 70] [ 3] [301] +04:13:55 ============================================================================ +04:13:55 + + +waiting on router queue for slot.... +04:13:55 Sending to : +04:13:55 ============================================================================ +04:13:55 ============================================================================ +04:13:55 Slot Id : <158> +04:13:55 Transaction Type : RESPONSE +04:13:55 Received From : +04:13:55 ============================================================================ +04:13:55 FNo. Len. Field Value +04:13:55 ============================================================================ +04:13:55 [ 1] [ 4] [0810] +04:13:55 [ 7] [ 10] [0319091302] +04:13:55 [ 11] [ 6] [154251] +04:13:55 [ 39] [ 2] [00] +04:13:55 [ 70] [ 3] [301] +04:13:55 ============================================================================ +04:13:55 Calculate Source COMM Id = 2 +04:13:55 ============================================================================ +04:13:55 + + +waiting on router queue for slot.... +04:14:06 ============================================================================ +04:14:06 Slot Id : <120> +04:14:06 Transaction Type : REQUEST +04:14:06 Received From : +04:14:06 ============================================================================ +04:14:06 FNo. Len. Field Value +04:14:06 ============================================================================ +04:14:06 [ 1] [ 4] [0800] +04:14:06 [ 7] [ 10] [0319091313] +04:14:06 [ 11] [ 6] [154252] +04:14:06 [ 70] [ 3] [301] +04:14:06 ============================================================================ +04:14:06 + + +waiting on router queue for slot.... +04:14:06 Sending to : +04:14:06 ============================================================================ +04:14:06 ============================================================================ +04:14:06 Slot Id : <120> +04:14:06 Transaction Type : RESPONSE +04:14:06 Received From : +04:14:06 ============================================================================ +04:14:06 FNo. Len. Field Value +04:14:06 ============================================================================ +04:14:06 [ 1] [ 4] [0810] +04:14:06 [ 7] [ 10] [0319091313] +04:14:06 [ 11] [ 6] [154252] +04:14:06 [ 39] [ 2] [00] +04:14:06 [ 70] [ 3] [301] +04:14:06 ============================================================================ +04:14:06 Calculate Source COMM Id = 2 +04:14:06 ============================================================================ +04:14:06 + + +waiting on router queue for slot.... +04:14:17 ============================================================================ +04:14:17 Slot Id : <150> +04:14:17 Transaction Type : REQUEST +04:14:17 Received From : +04:14:17 ============================================================================ +04:14:17 FNo. Len. Field Value +04:14:17 ============================================================================ +04:14:17 [ 1] [ 4] [0800] +04:14:17 [ 7] [ 10] [0319091324] +04:14:17 [ 11] [ 6] [154253] +04:14:17 [ 70] [ 3] [301] +04:14:17 ============================================================================ +04:14:17 + + +waiting on router queue for slot.... +04:14:17 Sending to : +04:14:17 ============================================================================ +04:14:17 ============================================================================ +04:14:17 Slot Id : <150> +04:14:17 Transaction Type : RESPONSE +04:14:17 Received From : +04:14:17 ============================================================================ +04:14:17 FNo. Len. Field Value +04:14:17 ============================================================================ +04:14:17 [ 1] [ 4] [0810] +04:14:17 [ 7] [ 10] [0319091324] +04:14:17 [ 11] [ 6] [154253] +04:14:17 [ 39] [ 2] [00] +04:14:17 [ 70] [ 3] [301] +04:14:17 ============================================================================ +04:14:17 Calculate Source COMM Id = 2 +04:14:17 ============================================================================ +04:14:17 + + +waiting on router queue for slot.... +04:14:32 ============================================================================ +04:14:32 Slot Id : <166> +04:14:32 Transaction Type : REQUEST +04:14:32 Received From : +04:14:32 ============================================================================ +04:14:32 FNo. Len. Field Value +04:14:32 ============================================================================ +04:14:32 [ 1] [ 4] [0800] +04:14:32 [ 7] [ 10] [0319091339] +04:14:32 [ 11] [ 6] [154254] +04:14:32 [ 70] [ 3] [301] +04:14:32 ============================================================================ +04:14:32 + + +waiting on router queue for slot.... +04:14:32 Sending to : +04:14:32 ============================================================================ +04:14:32 ============================================================================ +04:14:32 Slot Id : <166> +04:14:32 Transaction Type : RESPONSE +04:14:32 Received From : +04:14:32 ============================================================================ +04:14:32 FNo. Len. Field Value +04:14:32 ============================================================================ +04:14:32 [ 1] [ 4] [0810] +04:14:32 [ 7] [ 10] [0319091339] +04:14:32 [ 11] [ 6] [154254] +04:14:32 [ 39] [ 2] [00] +04:14:32 [ 70] [ 3] [301] +04:14:32 ============================================================================ +04:14:32 Calculate Source COMM Id = 2 +04:14:32 ============================================================================ +04:14:32 + + +waiting on router queue for slot.... +04:14:33 ============================================================================ +04:14:33 Slot Id : <130> +04:14:33 Transaction Type : REQUEST +04:14:33 Received From : +04:14:33 ============================================================================ +04:14:33 FNo. Len. Field Value +04:14:33 ============================================================================ +04:14:33 [ 1] [ 4] [0800] +04:14:33 [ 7] [ 10] [0320112620] +04:14:33 [ 11] [ 6] [042620] +04:14:33 [ 37] [ 12] [57904042620] +04:14:33 [ 70] [ 3] [301] +04:14:33 ============================================================================ +04:14:33 + + +waiting on router queue for slot.... +04:14:33 Sending to : +04:14:33 ============================================================================ +04:14:33 ============================================================================ +04:14:33 Slot Id : <130> +04:14:33 Transaction Type : RESPONSE +04:14:33 Received From : +04:14:33 ============================================================================ +04:14:33 FNo. Len. Field Value +04:14:33 ============================================================================ +04:14:33 [ 1] [ 4] [0810] +04:14:33 [ 7] [ 10] [0320112620] +04:14:33 [ 11] [ 6] [042620] +04:14:33 [ 37] [ 12] [579040426200] +04:14:33 [ 39] [ 2] [00] +04:14:33 [ 70] [ 3] [810] +04:14:33 ============================================================================ +04:14:33 Calculate Source COMM Id = 6 +04:14:33 ============================================================================ +04:14:33 + + +waiting on router queue for slot.... +04:14:44 ============================================================================ +04:14:44 Slot Id : <133> +04:14:44 Transaction Type : REQUEST +04:14:44 Received From : +04:14:44 ============================================================================ +04:14:44 FNo. Len. Field Value +04:14:44 ============================================================================ +04:14:44 [ 1] [ 4] [0800] +04:14:44 [ 7] [ 10] [0319091350] +04:14:44 [ 11] [ 6] [154255] +04:14:44 [ 70] [ 3] [301] +04:14:44 ============================================================================ +04:14:44 + + +waiting on router queue for slot.... +04:14:44 Sending to : +04:14:44 ============================================================================ +04:14:44 ============================================================================ +04:14:44 Slot Id : <133> +04:14:44 Transaction Type : RESPONSE +04:14:44 Received From : +04:14:44 ============================================================================ +04:14:44 FNo. Len. Field Value +04:14:44 ============================================================================ +04:14:44 [ 1] [ 4] [0810] +04:14:44 [ 7] [ 10] [0319091350] +04:14:44 [ 11] [ 6] [154255] +04:14:44 [ 39] [ 2] [00] +04:14:44 [ 70] [ 3] [301] +04:14:44 ============================================================================ +04:14:44 Calculate Source COMM Id = 2 +04:14:44 ============================================================================ +04:14:44 + + +waiting on router queue for slot.... +04:14:47 ============================================================================ +04:14:47 Slot Id : <142> +04:14:47 Transaction Type : REQUEST +04:14:47 Received From : +04:14:47 ============================================================================ +04:14:47 FNo. Len. Field Value +04:14:47 ============================================================================ +04:14:47 [ 1] [ 4] [0800] +04:14:47 [ 2] [ 5] [02531] +04:14:47 [ 3] [ 6] [579048] +04:14:47 [ 7] [ 10] [0319211447] +04:14:47 [ 11] [ 6] [806658] +04:14:47 [ 15] [ 10] [0319211447] +04:14:47 [ 37] [ 11] [57904806658] +04:14:47 [ 70] [ 3] [001] +04:14:47 ============================================================================ +04:14:47 + + +waiting on router queue for slot.... +04:14:47 ============================================================================ +04:14:47 Slot Id : <142> +04:14:47 Transaction Type : RESPONSE +04:14:47 Received From : +04:14:47 ============================================================================ +04:14:47 FNo. Len. Field Value +04:14:47 ============================================================================ +04:14:47 [ 1] [ 4] [0810] +04:14:47 [ 7] [ 10] [0319211447] +04:14:47 [ 11] [ 6] [806658] +04:14:47 [ 15] [ 4] [0319] +04:14:47 [ 37] [ 12] [57904806658] +04:14:47 [ 39] [ 2] [00] +04:14:47 [ 70] [ 3] [001] +04:14:47 ============================================================================ +04:14:47 Sending to : +04:14:47 ============================================================================ +04:14:47 + + +waiting on router queue for slot.... +04:14:52 ============================================================================ +04:14:52 Slot Id : <153> +04:14:52 Transaction Type : REQUEST +04:14:52 Received From : +04:14:52 ============================================================================ +04:14:52 FNo. Len. Field Value +04:14:52 ============================================================================ +04:14:52 [ 1] [ 4] [0800] +04:14:52 [ 7] [ 10] [0320041438] +04:14:52 [ 11] [ 6] [017044] +04:14:52 [ 37] [ 12] [507904017044] +04:14:52 [ 70] [ 3] [ ] +04:14:52 ============================================================================ +04:14:52 + + +waiting on router queue for slot.... +04:14:52 Sending to : +04:14:52 ============================================================================ +04:14:52 ============================================================================ +04:14:52 Slot Id : <153> +04:14:52 Transaction Type : RESPONSE +04:14:52 Received From : +04:14:52 ============================================================================ +04:14:52 FNo. Len. Field Value +04:14:52 ============================================================================ +04:14:52 [ 1] [ 4] [0810] +04:14:52 [ 7] [ 10] [0320041438] +04:14:52 [ 11] [ 6] [017044] +04:14:52 [ 37] [ 12] [507904017044] +04:14:52 [ 39] [ 2] [91] +04:14:52 [ 70] [ 3] [ ] +04:14:52 ============================================================================ +04:14:52 Calculate Source COMM Id = 3 +04:14:52 ============================================================================ +04:14:52 + + +waiting on router queue for slot.... +04:14:54 ============================================================================ +04:14:54 Slot Id : <110> +04:14:54 Transaction Type : REQUEST +04:14:54 Received From : +04:14:54 ============================================================================ +04:14:54 FNo. Len. Field Value +04:14:54 ============================================================================ +04:14:54 [ 1] [ 4] [0800] +04:14:54 [ 7] [ 10] [0319091401] +04:14:54 [ 11] [ 6] [154256] +04:14:54 [ 70] [ 3] [301] +04:14:54 ============================================================================ +04:14:54 + + +waiting on router queue for slot.... +04:14:54 Sending to : +04:14:54 ============================================================================ +04:14:54 ============================================================================ +04:14:54 Slot Id : <110> +04:14:54 Transaction Type : RESPONSE +04:14:54 Received From : +04:14:54 ============================================================================ +04:14:54 FNo. Len. Field Value +04:14:54 ============================================================================ +04:14:54 [ 1] [ 4] [0810] +04:14:54 [ 7] [ 10] [0319091401] +04:14:54 [ 11] [ 6] [154256] +04:14:54 [ 39] [ 2] [00] +04:14:54 [ 70] [ 3] [301] +04:14:54 ============================================================================ +04:14:54 Calculate Source COMM Id = 2 +04:14:54 ============================================================================ +04:14:54 + + +waiting on router queue for slot.... +04:14:56 ============================================================================ +04:14:56 Slot Id : <167> +04:14:56 Transaction Type : REQUEST +04:14:56 Received From : +04:14:56 ============================================================================ +04:14:56 FNo. Len. Field Value +04:14:56 ============================================================================ +04:14:56 [ 1] [ 4] [0800] +04:14:56 [ 7] [ 10] [0319212242] +04:14:56 [ 11] [ 6] [091871] +04:14:56 [ 37] [ 12] [57904091871] +04:14:56 [ 70] [ 3] [301] +04:14:56 ============================================================================ +04:14:56 + + +waiting on router queue for slot.... +04:14:56 Sending to : +04:14:56 ============================================================================ +04:14:56 ============================================================================ +04:14:56 Slot Id : <167> +04:14:56 Transaction Type : RESPONSE +04:14:56 Received From : +04:14:56 ============================================================================ +04:14:56 FNo. Len. Field Value +04:14:56 ============================================================================ +04:14:56 [ 1] [ 4] [0810] +04:14:56 [ 7] [ 10] [0319212242] +04:14:56 [ 11] [ 6] [091871] +04:14:56 [ 37] [ 12] [579040918710] +04:14:56 [ 39] [ 2] [00] +04:14:56 [ 70] [ 3] [810] +04:14:56 ============================================================================ +04:14:56 Calculate Source COMM Id = 1 +04:14:56 ============================================================================ +04:14:56 + + +waiting on router queue for slot.... +04:15:06 ============================================================================ +04:15:06 Slot Id : <137> +04:15:06 Transaction Type : REQUEST +04:15:06 Received From : +04:15:06 ============================================================================ +04:15:06 FNo. Len. Field Value +04:15:06 ============================================================================ +04:15:06 [ 1] [ 4] [0800] +04:15:06 [ 7] [ 10] [0319091412] +04:15:06 [ 11] [ 6] [154257] +04:15:06 [ 70] [ 3] [301] +04:15:06 ============================================================================ +04:15:06 + + +waiting on router queue for slot.... +04:15:06 Sending to : +04:15:06 ============================================================================ +04:15:06 ============================================================================ +04:15:06 Slot Id : <137> +04:15:06 Transaction Type : RESPONSE +04:15:06 Received From : +04:15:06 ============================================================================ +04:15:06 FNo. Len. Field Value +04:15:06 ============================================================================ +04:15:06 [ 1] [ 4] [0810] +04:15:06 [ 7] [ 10] [0319091412] +04:15:06 [ 11] [ 6] [154257] +04:15:06 [ 39] [ 2] [00] +04:15:06 [ 70] [ 3] [301] +04:15:06 ============================================================================ +04:15:06 Calculate Source COMM Id = 2 +04:15:06 ============================================================================ +04:15:06 + + +waiting on router queue for slot.... +04:15:17 ============================================================================ +04:15:17 Slot Id : <128> +04:15:17 Transaction Type : REQUEST +04:15:17 Received From : +04:15:17 ============================================================================ +04:15:17 FNo. Len. Field Value +04:15:17 ============================================================================ +04:15:17 [ 1] [ 4] [0800] +04:15:17 [ 7] [ 10] [0319091423] +04:15:17 [ 11] [ 6] [154258] +04:15:17 [ 70] [ 3] [301] +04:15:17 ============================================================================ +04:15:17 + + +waiting on router queue for slot.... +04:15:17 Sending to : +04:15:17 ============================================================================ +04:15:17 ============================================================================ +04:15:17 Slot Id : <128> +04:15:17 Transaction Type : RESPONSE +04:15:17 Received From : +04:15:17 ============================================================================ +04:15:17 FNo. Len. Field Value +04:15:17 ============================================================================ +04:15:17 [ 1] [ 4] [0810] +04:15:17 [ 7] [ 10] [0319091423] +04:15:17 [ 11] [ 6] [154258] +04:15:17 [ 39] [ 2] [00] +04:15:17 [ 70] [ 3] [301] +04:15:17 ============================================================================ +04:15:17 Calculate Source COMM Id = 2 +04:15:17 ============================================================================ +04:15:17 + + +waiting on router queue for slot.... +04:15:32 ============================================================================ +04:15:32 Slot Id : <146> +04:15:32 Transaction Type : REQUEST +04:15:32 Received From : +04:15:32 ============================================================================ +04:15:32 FNo. Len. Field Value +04:15:32 ============================================================================ +04:15:32 [ 1] [ 4] [0800] +04:15:32 [ 7] [ 10] [0319091438] +04:15:32 [ 11] [ 6] [154259] +04:15:32 [ 70] [ 3] [301] +04:15:32 ============================================================================ +04:15:32 + + +waiting on router queue for slot.... +04:15:32 Sending to : +04:15:32 ============================================================================ +04:15:32 ============================================================================ +04:15:32 Slot Id : <146> +04:15:32 Transaction Type : RESPONSE +04:15:32 Received From : +04:15:32 ============================================================================ +04:15:32 FNo. Len. Field Value +04:15:32 ============================================================================ +04:15:32 [ 1] [ 4] [0810] +04:15:32 [ 7] [ 10] [0319091438] +04:15:32 [ 11] [ 6] [154259] +04:15:32 [ 39] [ 2] [00] +04:15:32 [ 70] [ 3] [301] +04:15:32 ============================================================================ +04:15:32 Calculate Source COMM Id = 2 +04:15:32 ============================================================================ +04:15:32 + + +waiting on router queue for slot.... +04:15:38 ============================================================================ +04:15:38 Slot Id : <159> +04:15:38 Transaction Type : REQUEST +04:15:38 Received From : +04:15:38 ============================================================================ +04:15:38 FNo. Len. Field Value +04:15:38 ============================================================================ +04:15:38 [ 1] [ 4] [0800] +04:15:38 [ 7] [ 10] [0320112725] +04:15:38 [ 11] [ 6] [042725] +04:15:38 [ 37] [ 12] [57904042725] +04:15:38 [ 70] [ 3] [301] +04:15:38 ============================================================================ +04:15:38 + + +waiting on router queue for slot.... +04:15:38 Sending to : +04:15:38 ============================================================================ +04:15:38 ============================================================================ +04:15:38 Slot Id : <159> +04:15:38 Transaction Type : RESPONSE +04:15:38 Received From : +04:15:38 ============================================================================ +04:15:38 FNo. Len. Field Value +04:15:38 ============================================================================ +04:15:38 [ 1] [ 4] [0810] +04:15:38 [ 7] [ 10] [0320112725] +04:15:38 [ 11] [ 6] [042725] +04:15:38 [ 37] [ 12] [579040427250] +04:15:38 [ 39] [ 2] [00] +04:15:38 [ 70] [ 3] [810] +04:15:38 ============================================================================ +04:15:38 Calculate Source COMM Id = 6 +04:15:38 ============================================================================ +04:15:38 + + +waiting on router queue for slot.... +04:15:43 ============================================================================ +04:15:43 Slot Id : <175> +04:15:43 Transaction Type : REQUEST +04:15:43 Received From : +04:15:43 ============================================================================ +04:15:43 FNo. Len. Field Value +04:15:43 ============================================================================ +04:15:43 [ 1] [ 4] [0800] +04:15:43 [ 7] [ 10] [0319091450] +04:15:43 [ 11] [ 6] [154260] +04:15:43 [ 70] [ 3] [301] +04:15:43 ============================================================================ +04:15:43 + + +waiting on router queue for slot.... +04:15:43 Sending to : +04:15:43 ============================================================================ +04:15:43 ============================================================================ +04:15:43 Slot Id : <175> +04:15:43 Transaction Type : RESPONSE +04:15:43 Received From : +04:15:43 ============================================================================ +04:15:43 FNo. Len. Field Value +04:15:43 ============================================================================ +04:15:43 [ 1] [ 4] [0810] +04:15:43 [ 7] [ 10] [0319091450] +04:15:43 [ 11] [ 6] [154260] +04:15:43 [ 39] [ 2] [00] +04:15:43 [ 70] [ 3] [301] +04:15:43 ============================================================================ +04:15:43 Calculate Source COMM Id = 2 +04:15:43 ============================================================================ +04:15:43 + + +waiting on router queue for slot.... +04:15:49 ============================================================================ +04:15:49 Slot Id : <170> +04:15:49 Transaction Type : REQUEST +04:15:49 Received From : +04:15:49 ============================================================================ +04:15:49 FNo. Len. Field Value +04:15:49 ============================================================================ +04:15:49 [ 1] [ 4] [0800] +04:15:49 [ 2] [ 5] [02531] +04:15:49 [ 3] [ 6] [579048] +04:15:49 [ 7] [ 10] [0319211549] +04:15:49 [ 11] [ 6] [806659] +04:15:49 [ 15] [ 10] [0319211549] +04:15:49 [ 37] [ 11] [57904806659] +04:15:49 [ 70] [ 3] [001] +04:15:49 ============================================================================ +04:15:49 + + +waiting on router queue for slot.... +04:15:49 ============================================================================ +04:15:49 Slot Id : <170> +04:15:49 Transaction Type : RESPONSE +04:15:49 Received From : +04:15:49 ============================================================================ +04:15:49 FNo. Len. Field Value +04:15:49 ============================================================================ +04:15:49 [ 1] [ 4] [0810] +04:15:49 [ 7] [ 10] [0319211549] +04:15:49 [ 11] [ 6] [806659] +04:15:49 [ 15] [ 4] [0319] +04:15:49 [ 37] [ 12] [57904806659] +04:15:49 [ 39] [ 2] [00] +04:15:49 [ 70] [ 3] [001] +04:15:49 ============================================================================ +04:15:49 Sending to : +04:15:49 ============================================================================ +04:15:49 + + +waiting on router queue for slot.... +04:15:54 ============================================================================ +04:15:54 Slot Id : <141> +04:15:54 Transaction Type : REQUEST +04:15:54 Received From : +04:15:54 ============================================================================ +04:15:54 FNo. Len. Field Value +04:15:54 ============================================================================ +04:15:54 [ 1] [ 4] [0800] +04:15:54 [ 7] [ 10] [0319091500] +04:15:54 [ 11] [ 6] [154261] +04:15:54 [ 70] [ 3] [301] +04:15:54 ============================================================================ +04:15:54 + + +waiting on router queue for slot.... +04:15:54 Sending to : +04:15:54 ============================================================================ +04:15:54 ============================================================================ +04:15:54 Slot Id : <141> +04:15:54 Transaction Type : RESPONSE +04:15:54 Received From : +04:15:54 ============================================================================ +04:15:54 FNo. Len. Field Value +04:15:54 ============================================================================ +04:15:54 [ 1] [ 4] [0810] +04:15:54 [ 7] [ 10] [0319091500] +04:15:54 [ 11] [ 6] [154261] +04:15:54 [ 39] [ 2] [00] +04:15:54 [ 70] [ 3] [301] +04:15:54 ============================================================================ +04:15:54 Calculate Source COMM Id = 2 +04:15:54 ============================================================================ +04:15:54 + + +waiting on router queue for slot.... +04:16:05 ============================================================================ +04:16:05 Slot Id : <151> +04:16:05 Transaction Type : REQUEST +04:16:05 Received From : +04:16:05 ============================================================================ +04:16:05 FNo. Len. Field Value +04:16:05 ============================================================================ +04:16:05 [ 1] [ 4] [0800] +04:16:05 [ 7] [ 10] [0319091511] +04:16:05 [ 11] [ 6] [154262] +04:16:05 [ 70] [ 3] [301] +04:16:05 ============================================================================ +04:16:05 + + +waiting on router queue for slot.... +04:16:05 Sending to : +04:16:05 ============================================================================ +04:16:05 ============================================================================ +04:16:05 Slot Id : <151> +04:16:05 Transaction Type : RESPONSE +04:16:05 Received From : +04:16:05 ============================================================================ +04:16:05 FNo. Len. Field Value +04:16:05 ============================================================================ +04:16:05 [ 1] [ 4] [0810] +04:16:05 [ 7] [ 10] [0319091511] +04:16:05 [ 11] [ 6] [154262] +04:16:05 [ 39] [ 2] [00] +04:16:05 [ 70] [ 3] [301] +04:16:05 ============================================================================ +04:16:05 Calculate Source COMM Id = 2 +04:16:05 ============================================================================ +04:16:05 + + +waiting on router queue for slot.... +04:16:20 ============================================================================ +04:16:20 Slot Id : <164> +04:16:20 Transaction Type : REQUEST +04:16:20 Received From : +04:16:20 ============================================================================ +04:16:20 FNo. Len. Field Value +04:16:20 ============================================================================ +04:16:20 [ 1] [ 4] [0800] +04:16:20 [ 7] [ 10] [0319091527] +04:16:20 [ 11] [ 6] [154263] +04:16:20 [ 70] [ 3] [301] +04:16:20 ============================================================================ +04:16:20 + + +waiting on router queue for slot.... +04:16:20 Sending to : +04:16:20 ============================================================================ +04:16:20 ============================================================================ +04:16:20 Slot Id : <164> +04:16:20 Transaction Type : RESPONSE +04:16:20 Received From : +04:16:20 ============================================================================ +04:16:20 FNo. Len. Field Value +04:16:20 ============================================================================ +04:16:20 [ 1] [ 4] [0810] +04:16:20 [ 7] [ 10] [0319091527] +04:16:20 [ 11] [ 6] [154263] +04:16:20 [ 39] [ 2] [00] +04:16:20 [ 70] [ 3] [301] +04:16:20 ============================================================================ +04:16:20 Calculate Source COMM Id = 2 +04:16:20 ============================================================================ +04:16:20 + + +waiting on router queue for slot.... +04:16:22 ============================================================================ +04:16:22 Slot Id : <157> +04:16:22 Transaction Type : REQUEST +04:16:22 Received From : +04:16:22 ============================================================================ +04:16:22 FNo. Len. Field Value +04:16:22 ============================================================================ +04:16:22 [ 1] [ 4] [0800] +04:16:22 [ 7] [ 10] [0319211412] +04:16:22 [ 11] [ 6] [040832] +04:16:22 [ 37] [ 12] [57904040832] +04:16:22 [ 70] [ 3] [301] +04:16:22 ============================================================================ +04:16:22 + + +waiting on router queue for slot.... +04:16:22 Sending to : +04:16:22 ============================================================================ +04:16:22 ============================================================================ +04:16:22 Slot Id : <157> +04:16:22 Transaction Type : RESPONSE +04:16:22 Received From : +04:16:22 ============================================================================ +04:16:22 FNo. Len. Field Value +04:16:22 ============================================================================ +04:16:22 [ 1] [ 4] [0810] +04:16:22 [ 7] [ 10] [0319211412] +04:16:22 [ 11] [ 6] [040832] +04:16:22 [ 37] [ 12] [579040408320] +04:16:22 [ 39] [ 2] [00] +04:16:22 [ 70] [ 3] [810] +04:16:22 ============================================================================ +04:16:22 Calculate Source COMM Id = 4 +04:16:22 ============================================================================ +04:16:22 + + +waiting on router queue for slot.... +04:16:31 ============================================================================ +04:16:31 Slot Id : <172> +04:16:31 Transaction Type : REQUEST +04:16:31 Received From : +04:16:31 ============================================================================ +04:16:31 FNo. Len. Field Value +04:16:31 ============================================================================ +04:16:31 [ 1] [ 4] [0800] +04:16:31 [ 7] [ 10] [0319211626] +04:16:31 [ 11] [ 6] [022279] +04:16:31 [ 37] [ 12] [507904022279] +04:16:31 [ 70] [ 3] [001] +04:16:31 ============================================================================ +04:16:31 + + +waiting on router queue for slot.... +04:16:31 Sending to : +04:16:31 ============================================================================ +04:16:31 ============================================================================ +04:16:31 Slot Id : <172> +04:16:31 Transaction Type : RESPONSE +04:16:31 Received From : +04:16:31 ============================================================================ +04:16:31 FNo. Len. Field Value +04:16:31 ============================================================================ +04:16:31 [ 1] [ 4] [0810] +04:16:31 [ 7] [ 10] [0319211626] +04:16:31 [ 11] [ 6] [022279] +04:16:31 [ 37] [ 12] [507904022279] +04:16:31 [ 39] [ 2] [00] +04:16:31 [ 70] [ 3] [001] +04:16:31 ============================================================================ +04:16:31 Calculate Source COMM Id = 0 +04:16:31 ============================================================================ +04:16:31 + + +waiting on router queue for slot.... +04:16:31 ============================================================================ +04:16:31 Slot Id : <148> +04:16:31 Transaction Type : REQUEST +04:16:31 Received From : +04:16:31 ============================================================================ +04:16:31 FNo. Len. Field Value +04:16:31 ============================================================================ +04:16:31 [ 1] [ 4] [0800] +04:16:31 [ 7] [ 10] [0319091538] +04:16:31 [ 11] [ 6] [154264] +04:16:31 [ 70] [ 3] [301] +04:16:31 ============================================================================ +04:16:31 + + +waiting on router queue for slot.... +04:16:31 Sending to : +04:16:31 ============================================================================ +04:16:31 ============================================================================ +04:16:31 Slot Id : <148> +04:16:31 Transaction Type : RESPONSE +04:16:31 Received From : +04:16:31 ============================================================================ +04:16:31 FNo. Len. Field Value +04:16:31 ============================================================================ +04:16:31 [ 1] [ 4] [0810] +04:16:31 [ 7] [ 10] [0319091538] +04:16:31 [ 11] [ 6] [154264] +04:16:31 [ 39] [ 2] [00] +04:16:31 [ 70] [ 3] [301] +04:16:31 ============================================================================ +04:16:31 Calculate Source COMM Id = 2 +04:16:31 ============================================================================ +04:16:31 + + +waiting on router queue for slot.... +04:16:42 ============================================================================ +04:16:42 Slot Id : <182> +04:16:42 Transaction Type : REQUEST +04:16:42 Received From : +04:16:42 ============================================================================ +04:16:42 FNo. Len. Field Value +04:16:42 ============================================================================ +04:16:42 [ 1] [ 4] [0800] +04:16:42 [ 7] [ 10] [0319091549] +04:16:42 [ 11] [ 6] [154265] +04:16:42 [ 70] [ 3] [301] +04:16:42 ============================================================================ +04:16:42 + + +waiting on router queue for slot.... +04:16:42 Sending to : +04:16:42 ============================================================================ +04:16:42 ============================================================================ +04:16:42 Slot Id : <182> +04:16:42 Transaction Type : RESPONSE +04:16:42 Received From : +04:16:42 ============================================================================ +04:16:42 FNo. Len. Field Value +04:16:42 ============================================================================ +04:16:42 [ 1] [ 4] [0810] +04:16:42 [ 7] [ 10] [0319091549] +04:16:42 [ 11] [ 6] [154265] +04:16:42 [ 39] [ 2] [00] +04:16:42 [ 70] [ 3] [301] +04:16:42 ============================================================================ +04:16:42 Calculate Source COMM Id = 2 +04:16:42 ============================================================================ +04:16:42 + + +waiting on router queue for slot.... +04:16:43 ============================================================================ +04:16:43 Slot Id : <186> +04:16:43 Transaction Type : REQUEST +04:16:43 Received From : +04:16:43 ============================================================================ +04:16:43 FNo. Len. Field Value +04:16:43 ============================================================================ +04:16:43 [ 1] [ 4] [0800] +04:16:43 [ 7] [ 10] [0320112830] +04:16:43 [ 11] [ 6] [042830] +04:16:43 [ 37] [ 12] [57904042830] +04:16:43 [ 70] [ 3] [301] +04:16:43 ============================================================================ +04:16:43 + + +waiting on router queue for slot.... +04:16:43 Sending to : +04:16:43 ============================================================================ +04:16:43 ============================================================================ +04:16:43 Slot Id : <186> +04:16:43 Transaction Type : RESPONSE +04:16:43 Received From : +04:16:43 ============================================================================ +04:16:43 FNo. Len. Field Value +04:16:43 ============================================================================ +04:16:43 [ 1] [ 4] [0810] +04:16:43 [ 7] [ 10] [0320112830] +04:16:43 [ 11] [ 6] [042830] +04:16:43 [ 37] [ 12] [579040428300] +04:16:43 [ 39] [ 2] [00] +04:16:43 [ 70] [ 3] [810] +04:16:43 ============================================================================ +04:16:43 Calculate Source COMM Id = 6 +04:16:43 ============================================================================ +04:16:43 + + +waiting on router queue for slot.... +04:16:51 ============================================================================ +04:16:51 Slot Id : <126> +04:16:51 Transaction Type : REQUEST +04:16:51 Received From : +04:16:51 ============================================================================ +04:16:51 FNo. Len. Field Value +04:16:51 ============================================================================ +04:16:51 [ 1] [ 4] [0800] +04:16:51 [ 2] [ 5] [02531] +04:16:51 [ 3] [ 6] [579048] +04:16:51 [ 7] [ 10] [0319211651] +04:16:51 [ 11] [ 6] [806660] +04:16:51 [ 15] [ 10] [0319211651] +04:16:51 [ 37] [ 11] [57904806660] +04:16:51 [ 70] [ 3] [001] +04:16:51 ============================================================================ +04:16:51 + + +waiting on router queue for slot.... +04:16:51 ============================================================================ +04:16:51 Slot Id : <126> +04:16:51 Transaction Type : RESPONSE +04:16:51 Received From : +04:16:51 ============================================================================ +04:16:51 FNo. Len. Field Value +04:16:51 ============================================================================ +04:16:51 [ 1] [ 4] [0810] +04:16:51 [ 7] [ 10] [0319211651] +04:16:51 [ 11] [ 6] [806660] +04:16:51 [ 15] [ 4] [0319] +04:16:51 [ 37] [ 12] [57904806660] +04:16:51 [ 39] [ 2] [00] +04:16:51 [ 70] [ 3] [001] +04:16:51 ============================================================================ +04:16:51 Sending to : +04:16:51 ============================================================================ +04:16:51 + + +waiting on router queue for slot.... +04:16:52 ============================================================================ +04:16:52 Slot Id : <171> +04:16:52 Transaction Type : REQUEST +04:16:52 Received From : +04:16:52 ============================================================================ +04:16:52 FNo. Len. Field Value +04:16:52 ============================================================================ +04:16:52 [ 1] [ 4] [0800] +04:16:52 [ 7] [ 10] [0319091559] +04:16:52 [ 11] [ 6] [154266] +04:16:52 [ 70] [ 3] [301] +04:16:52 ============================================================================ +04:16:52 + + +waiting on router queue for slot.... +04:16:52 Sending to : +04:16:52 ============================================================================ +04:16:52 ============================================================================ +04:16:52 Slot Id : <171> +04:16:52 Transaction Type : RESPONSE +04:16:52 Received From : +04:16:52 ============================================================================ +04:16:52 FNo. Len. Field Value +04:16:52 ============================================================================ +04:16:52 [ 1] [ 4] [0810] +04:16:52 [ 7] [ 10] [0319091559] +04:16:52 [ 11] [ 6] [154266] +04:16:52 [ 39] [ 2] [00] +04:16:52 [ 70] [ 3] [301] +04:16:52 ============================================================================ +04:16:52 Calculate Source COMM Id = 2 +04:16:52 ============================================================================ +04:16:52 + + +waiting on router queue for slot.... +04:17:03 ============================================================================ +04:17:03 Slot Id : <119> +04:17:03 Transaction Type : REQUEST +04:17:03 Received From : +04:17:03 ============================================================================ +04:17:03 FNo. Len. Field Value +04:17:03 ============================================================================ +04:17:03 [ 1] [ 4] [0800] +04:17:03 [ 7] [ 10] [0319091609] +04:17:03 [ 11] [ 6] [154267] +04:17:03 [ 70] [ 3] [301] +04:17:03 ============================================================================ +04:17:03 + + +waiting on router queue for slot.... +04:17:03 Sending to : +04:17:03 ============================================================================ +04:17:03 ============================================================================ +04:17:03 Slot Id : <119> +04:17:03 Transaction Type : RESPONSE +04:17:03 Received From : +04:17:03 ============================================================================ +04:17:03 FNo. Len. Field Value +04:17:03 ============================================================================ +04:17:03 [ 1] [ 4] [0810] +04:17:03 [ 7] [ 10] [0319091609] +04:17:03 [ 11] [ 6] [154267] +04:17:03 [ 39] [ 2] [00] +04:17:03 [ 70] [ 3] [301] +04:17:03 ============================================================================ +04:17:03 Calculate Source COMM Id = 2 +04:17:03 ============================================================================ +04:17:03 + + +waiting on router queue for slot.... +04:17:14 ============================================================================ +04:17:14 Slot Id : <139> +04:17:14 Transaction Type : REQUEST +04:17:14 Received From : +04:17:14 ============================================================================ +04:17:14 FNo. Len. Field Value +04:17:14 ============================================================================ +04:17:14 [ 1] [ 4] [0800] +04:17:14 [ 7] [ 10] [0319091620] +04:17:14 [ 11] [ 6] [154268] +04:17:14 [ 70] [ 3] [301] +04:17:14 ============================================================================ +04:17:14 + + +waiting on router queue for slot.... +04:17:14 Sending to : +04:17:14 ============================================================================ +04:17:14 ============================================================================ +04:17:14 Slot Id : <139> +04:17:14 Transaction Type : RESPONSE +04:17:14 Received From : +04:17:14 ============================================================================ +04:17:14 FNo. Len. Field Value +04:17:14 ============================================================================ +04:17:14 [ 1] [ 4] [0810] +04:17:14 [ 7] [ 10] [0319091620] +04:17:14 [ 11] [ 6] [154268] +04:17:14 [ 39] [ 2] [00] +04:17:14 [ 70] [ 3] [301] +04:17:14 ============================================================================ +04:17:14 Calculate Source COMM Id = 2 +04:17:14 ============================================================================ +04:17:14 + + +waiting on router queue for slot.... +04:17:30 ============================================================================ +04:17:30 Slot Id : <176> +04:17:30 Transaction Type : REQUEST +04:17:30 Received From : +04:17:30 ============================================================================ +04:17:30 FNo. Len. Field Value +04:17:30 ============================================================================ +04:17:30 [ 1] [ 4] [0800] +04:17:30 [ 7] [ 10] [0319091637] +04:17:30 [ 11] [ 6] [154269] +04:17:30 [ 70] [ 3] [301] +04:17:30 ============================================================================ +04:17:30 + + +waiting on router queue for slot.... +04:17:30 Sending to : +04:17:30 ============================================================================ +04:17:30 ============================================================================ +04:17:30 Slot Id : <176> +04:17:30 Transaction Type : RESPONSE +04:17:30 Received From : +04:17:30 ============================================================================ +04:17:30 FNo. Len. Field Value +04:17:30 ============================================================================ +04:17:30 [ 1] [ 4] [0810] +04:17:30 [ 7] [ 10] [0319091637] +04:17:30 [ 11] [ 6] [154269] +04:17:30 [ 39] [ 2] [00] +04:17:30 [ 70] [ 3] [301] +04:17:30 ============================================================================ +04:17:30 Calculate Source COMM Id = 2 +04:17:30 ============================================================================ +04:17:30 + + +waiting on router queue for slot.... +04:17:41 ============================================================================ +04:17:41 Slot Id : <156> +04:17:41 Transaction Type : REQUEST +04:17:41 Received From : +04:17:41 ============================================================================ +04:17:41 FNo. Len. Field Value +04:17:41 ============================================================================ +04:17:41 [ 1] [ 4] [0800] +04:17:41 [ 7] [ 10] [0319091648] +04:17:41 [ 11] [ 6] [154270] +04:17:41 [ 70] [ 3] [301] +04:17:41 ============================================================================ +04:17:41 + + +waiting on router queue for slot.... +04:17:41 Sending to : +04:17:41 ============================================================================ +04:17:41 ============================================================================ +04:17:41 Slot Id : <156> +04:17:41 Transaction Type : RESPONSE +04:17:41 Received From : +04:17:41 ============================================================================ +04:17:41 FNo. Len. Field Value +04:17:41 ============================================================================ +04:17:41 [ 1] [ 4] [0810] +04:17:41 [ 7] [ 10] [0319091648] +04:17:41 [ 11] [ 6] [154270] +04:17:41 [ 39] [ 2] [00] +04:17:41 [ 70] [ 3] [301] +04:17:41 ============================================================================ +04:17:41 Calculate Source COMM Id = 2 +04:17:41 ============================================================================ +04:17:41 + + +waiting on router queue for slot.... +04:17:48 ============================================================================ +04:17:48 Slot Id : <202> +04:17:48 Transaction Type : REQUEST +04:17:48 Received From : +04:17:48 ============================================================================ +04:17:48 FNo. Len. Field Value +04:17:48 ============================================================================ +04:17:48 [ 1] [ 4] [0800] +04:17:48 [ 7] [ 10] [0320112935] +04:17:48 [ 11] [ 6] [042935] +04:17:48 [ 37] [ 12] [57904042935] +04:17:48 [ 70] [ 3] [301] +04:17:48 ============================================================================ +04:17:48 + + +waiting on router queue for slot.... +04:17:48 Sending to : +04:17:48 ============================================================================ +04:17:48 ============================================================================ +04:17:48 Slot Id : <202> +04:17:48 Transaction Type : RESPONSE +04:17:48 Received From : +04:17:48 ============================================================================ +04:17:48 FNo. Len. Field Value +04:17:48 ============================================================================ +04:17:48 [ 1] [ 4] [0810] +04:17:48 [ 7] [ 10] [0320112935] +04:17:48 [ 11] [ 6] [042935] +04:17:48 [ 37] [ 12] [579040429350] +04:17:48 [ 39] [ 2] [00] +04:17:48 [ 70] [ 3] [810] +04:17:48 ============================================================================ +04:17:48 Calculate Source COMM Id = 6 +04:17:48 ============================================================================ +04:17:48 + + +waiting on router queue for slot.... +04:17:51 ============================================================================ +04:17:51 Slot Id : <187> +04:17:51 Transaction Type : REQUEST +04:17:51 Received From : +04:17:51 ============================================================================ +04:17:51 FNo. Len. Field Value +04:17:51 ============================================================================ +04:17:51 [ 1] [ 4] [0800] +04:17:51 [ 7] [ 10] [0319091658] +04:17:51 [ 11] [ 6] [154271] +04:17:51 [ 70] [ 3] [301] +04:17:51 ============================================================================ +04:17:51 + + +waiting on router queue for slot.... +04:17:51 Sending to : +04:17:51 ============================================================================ +04:17:51 ============================================================================ +04:17:51 Slot Id : <187> +04:17:51 Transaction Type : RESPONSE +04:17:51 Received From : +04:17:51 ============================================================================ +04:17:51 FNo. Len. Field Value +04:17:51 ============================================================================ +04:17:51 [ 1] [ 4] [0810] +04:17:51 [ 7] [ 10] [0319091658] +04:17:51 [ 11] [ 6] [154271] +04:17:51 [ 39] [ 2] [00] +04:17:51 [ 70] [ 3] [301] +04:17:51 ============================================================================ +04:17:51 Calculate Source COMM Id = 2 +04:17:51 ============================================================================ +04:17:51 + + +waiting on router queue for slot.... +04:17:53 ============================================================================ +04:17:53 Slot Id : <163> +04:17:53 Transaction Type : REQUEST +04:17:53 Received From : +04:17:53 ============================================================================ +04:17:53 FNo. Len. Field Value +04:17:53 ============================================================================ +04:17:53 [ 1] [ 4] [0800] +04:17:53 [ 2] [ 5] [02531] +04:17:53 [ 3] [ 6] [579048] +04:17:53 [ 7] [ 10] [0319211753] +04:17:53 [ 11] [ 6] [806661] +04:17:53 [ 15] [ 10] [0319211753] +04:17:53 [ 37] [ 11] [57904806661] +04:17:53 [ 70] [ 3] [001] +04:17:53 ============================================================================ +04:17:53 + + +waiting on router queue for slot.... +04:17:54 ============================================================================ +04:17:54 Slot Id : <163> +04:17:54 Transaction Type : RESPONSE +04:17:54 Received From : +04:17:54 ============================================================================ +04:17:54 FNo. Len. Field Value +04:17:54 ============================================================================ +04:17:54 [ 1] [ 4] [0810] +04:17:54 [ 7] [ 10] [0319211753] +04:17:54 [ 11] [ 6] [806661] +04:17:54 [ 15] [ 4] [0319] +04:17:54 [ 37] [ 12] [57904806661] +04:17:54 [ 39] [ 2] [00] +04:17:54 [ 70] [ 3] [001] +04:17:54 ============================================================================ +04:17:54 Sending to : +04:17:54 ============================================================================ +04:17:54 + + +waiting on router queue for slot.... +04:18:01 ============================================================================ +04:18:01 Slot Id : <203> +04:18:01 Transaction Type : REQUEST +04:18:01 Received From : +04:18:01 ============================================================================ +04:18:01 FNo. Len. Field Value +04:18:01 ============================================================================ +04:18:01 [ 1] [ 4] [0800] +04:18:01 [ 7] [ 10] [0319091708] +04:18:01 [ 11] [ 6] [154272] +04:18:01 [ 70] [ 3] [301] +04:18:01 ============================================================================ +04:18:01 + + +waiting on router queue for slot.... +04:18:01 Sending to : +04:18:01 ============================================================================ +04:18:01 ============================================================================ +04:18:01 Slot Id : <203> +04:18:01 Transaction Type : RESPONSE +04:18:01 Received From : +04:18:01 ============================================================================ +04:18:01 FNo. Len. Field Value +04:18:01 ============================================================================ +04:18:01 [ 1] [ 4] [0810] +04:18:01 [ 7] [ 10] [0319091708] +04:18:01 [ 11] [ 6] [154272] +04:18:01 [ 39] [ 2] [00] +04:18:01 [ 70] [ 3] [301] +04:18:01 ============================================================================ +04:18:01 Calculate Source COMM Id = 2 +04:18:01 ============================================================================ +04:18:01 + + +waiting on router queue for slot.... +04:18:16 ============================================================================ +04:18:16 Slot Id : <160> +04:18:16 Transaction Type : REQUEST +04:18:16 Received From : +04:18:16 ============================================================================ +04:18:16 FNo. Len. Field Value +04:18:16 ============================================================================ +04:18:16 [ 1] [ 4] [0800] +04:18:16 [ 7] [ 10] [0319091723] +04:18:16 [ 11] [ 6] [154273] +04:18:16 [ 70] [ 3] [301] +04:18:16 ============================================================================ +04:18:16 + + +waiting on router queue for slot.... +04:18:16 Sending to : +04:18:16 ============================================================================ +04:18:16 ============================================================================ +04:18:16 Slot Id : <160> +04:18:16 Transaction Type : RESPONSE +04:18:16 Received From : +04:18:16 ============================================================================ +04:18:16 FNo. Len. Field Value +04:18:16 ============================================================================ +04:18:16 [ 1] [ 4] [0810] +04:18:16 [ 7] [ 10] [0319091723] +04:18:16 [ 11] [ 6] [154273] +04:18:16 [ 39] [ 2] [00] +04:18:16 [ 70] [ 3] [301] +04:18:16 ============================================================================ +04:18:16 Calculate Source COMM Id = 2 +04:18:16 ============================================================================ +04:18:16 + + +waiting on router queue for slot.... +04:18:27 ============================================================================ +04:18:27 Slot Id : <179> +04:18:27 Transaction Type : REQUEST +04:18:27 Received From : +04:18:27 ============================================================================ +04:18:27 FNo. Len. Field Value +04:18:27 ============================================================================ +04:18:27 [ 1] [ 4] [0800] +04:18:27 [ 7] [ 10] [0319091734] +04:18:27 [ 11] [ 6] [154274] +04:18:27 [ 70] [ 3] [301] +04:18:27 ============================================================================ +04:18:27 + + +waiting on router queue for slot.... +04:18:27 Sending to : +04:18:27 ============================================================================ +04:18:27 ============================================================================ +04:18:27 Slot Id : <179> +04:18:27 Transaction Type : RESPONSE +04:18:27 Received From : +04:18:27 ============================================================================ +04:18:27 FNo. Len. Field Value +04:18:27 ============================================================================ +04:18:27 [ 1] [ 4] [0810] +04:18:27 [ 7] [ 10] [0319091734] +04:18:27 [ 11] [ 6] [154274] +04:18:27 [ 39] [ 2] [00] +04:18:27 [ 70] [ 3] [301] +04:18:27 ============================================================================ +04:18:27 Calculate Source COMM Id = 2 +04:18:27 ============================================================================ +04:18:27 + + +waiting on router queue for slot.... +04:18:37 ============================================================================ +04:18:37 Slot Id : <192> +04:18:37 Transaction Type : REQUEST +04:18:37 Received From : +04:18:37 ============================================================================ +04:18:37 FNo. Len. Field Value +04:18:37 ============================================================================ +04:18:37 [ 1] [ 4] [0800] +04:18:37 [ 7] [ 10] [0319091744] +04:18:37 [ 11] [ 6] [154275] +04:18:37 [ 70] [ 3] [301] +04:18:37 ============================================================================ +04:18:37 + + +waiting on router queue for slot.... +04:18:37 Sending to : +04:18:37 ============================================================================ +04:18:37 ============================================================================ +04:18:37 Slot Id : <192> +04:18:37 Transaction Type : RESPONSE +04:18:37 Received From : +04:18:37 ============================================================================ +04:18:37 FNo. Len. Field Value +04:18:37 ============================================================================ +04:18:37 [ 1] [ 4] [0810] +04:18:37 [ 7] [ 10] [0319091744] +04:18:37 [ 11] [ 6] [154275] +04:18:37 [ 39] [ 2] [00] +04:18:37 [ 70] [ 3] [301] +04:18:37 ============================================================================ +04:18:37 Calculate Source COMM Id = 2 +04:18:37 ============================================================================ +04:18:37 + + +waiting on router queue for slot.... +04:18:48 ============================================================================ +04:18:48 Slot Id : <135> +04:18:48 Transaction Type : REQUEST +04:18:48 Received From : +04:18:48 ============================================================================ +04:18:48 FNo. Len. Field Value +04:18:48 ============================================================================ +04:18:48 [ 1] [ 4] [0800] +04:18:48 [ 7] [ 10] [0319091755] +04:18:48 [ 11] [ 6] [154276] +04:18:48 [ 70] [ 3] [301] +04:18:48 ============================================================================ +04:18:48 + + +waiting on router queue for slot.... +04:18:48 Sending to : +04:18:48 ============================================================================ +04:18:48 ============================================================================ +04:18:48 Slot Id : <135> +04:18:48 Transaction Type : RESPONSE +04:18:48 Received From : +04:18:48 ============================================================================ +04:18:48 FNo. Len. Field Value +04:18:48 ============================================================================ +04:18:48 [ 1] [ 4] [0810] +04:18:48 [ 7] [ 10] [0319091755] +04:18:48 [ 11] [ 6] [154276] +04:18:48 [ 39] [ 2] [00] +04:18:48 [ 70] [ 3] [301] +04:18:48 ============================================================================ +04:18:48 Calculate Source COMM Id = 2 +04:18:48 ============================================================================ +04:18:48 + + +waiting on router queue for slot.... +04:18:53 ============================================================================ +04:18:53 Slot Id : <144> +04:18:53 Transaction Type : REQUEST +04:18:53 Received From : +04:18:53 ============================================================================ +04:18:53 FNo. Len. Field Value +04:18:53 ============================================================================ +04:18:53 [ 1] [ 4] [0800] +04:18:53 [ 7] [ 10] [0320113040] +04:18:53 [ 11] [ 6] [043040] +04:18:53 [ 37] [ 12] [57904043040] +04:18:53 [ 70] [ 3] [301] +04:18:53 ============================================================================ +04:18:53 + + +waiting on router queue for slot.... +04:18:53 Sending to : +04:18:53 ============================================================================ +04:18:53 ============================================================================ +04:18:53 Slot Id : <144> +04:18:53 Transaction Type : RESPONSE +04:18:53 Received From : +04:18:53 ============================================================================ +04:18:53 FNo. Len. Field Value +04:18:53 ============================================================================ +04:18:53 [ 1] [ 4] [0810] +04:18:53 [ 7] [ 10] [0320113040] +04:18:53 [ 11] [ 6] [043040] +04:18:53 [ 37] [ 12] [579040430400] +04:18:53 [ 39] [ 2] [00] +04:18:53 [ 70] [ 3] [810] +04:18:53 ============================================================================ +04:18:53 Calculate Source COMM Id = 6 +04:18:53 ============================================================================ +04:18:53 + + +waiting on router queue for slot.... +04:18:55 ============================================================================ +04:18:55 Slot Id : <204> +04:18:55 Transaction Type : REQUEST +04:18:55 Received From : +04:18:55 ============================================================================ +04:18:55 FNo. Len. Field Value +04:18:55 ============================================================================ +04:18:55 [ 1] [ 4] [0800] +04:18:55 [ 2] [ 5] [02531] +04:18:55 [ 3] [ 6] [579048] +04:18:55 [ 7] [ 10] [0319211855] +04:18:55 [ 11] [ 6] [806662] +04:18:55 [ 15] [ 10] [0319211855] +04:18:55 [ 37] [ 11] [57904806662] +04:18:55 [ 70] [ 3] [001] +04:18:55 ============================================================================ +04:18:55 + + +waiting on router queue for slot.... +04:18:56 ============================================================================ +04:18:56 Slot Id : <204> +04:18:56 Transaction Type : RESPONSE +04:18:56 Received From : +04:18:56 ============================================================================ +04:18:56 FNo. Len. Field Value +04:18:56 ============================================================================ +04:18:56 [ 1] [ 4] [0810] +04:18:56 [ 7] [ 10] [0319211855] +04:18:56 [ 11] [ 6] [806662] +04:18:56 [ 15] [ 4] [0319] +04:18:56 [ 37] [ 12] [57904806662] +04:18:56 [ 39] [ 2] [00] +04:18:56 [ 70] [ 3] [001] +04:18:56 ============================================================================ +04:18:56 Sending to : +04:18:56 ============================================================================ +04:18:56 + + +waiting on router queue for slot.... +04:19:03 ============================================================================ +04:19:03 Slot Id : <152> +04:19:03 Transaction Type : REQUEST +04:19:03 Received From : +04:19:03 ============================================================================ +04:19:03 FNo. Len. Field Value +04:19:03 ============================================================================ +04:19:03 [ 1] [ 4] [0800] +04:19:03 [ 7] [ 10] [0319091810] +04:19:03 [ 11] [ 6] [154277] +04:19:03 [ 70] [ 3] [301] +04:19:03 ============================================================================ +04:19:03 + + +waiting on router queue for slot.... +04:19:03 Sending to : +04:19:03 ============================================================================ +04:19:03 ============================================================================ +04:19:03 Slot Id : <152> +04:19:03 Transaction Type : RESPONSE +04:19:03 Received From : +04:19:03 ============================================================================ +04:19:03 FNo. Len. Field Value +04:19:03 ============================================================================ +04:19:03 [ 1] [ 4] [0810] +04:19:03 [ 7] [ 10] [0319091810] +04:19:03 [ 11] [ 6] [154277] +04:19:03 [ 39] [ 2] [00] +04:19:03 [ 70] [ 3] [301] +04:19:03 ============================================================================ +04:19:03 Calculate Source COMM Id = 2 +04:19:03 ============================================================================ +04:19:03 + + +waiting on router queue for slot.... +04:19:15 ============================================================================ +04:19:15 Slot Id : <196> +04:19:15 Transaction Type : REQUEST +04:19:15 Received From : +04:19:15 ============================================================================ +04:19:15 FNo. Len. Field Value +04:19:15 ============================================================================ +04:19:15 [ 1] [ 4] [0800] +04:19:15 [ 7] [ 10] [0319091821] +04:19:15 [ 11] [ 6] [154278] +04:19:15 [ 70] [ 3] [301] +04:19:15 ============================================================================ +04:19:15 + + +waiting on router queue for slot.... +04:19:15 Sending to : +04:19:15 ============================================================================ +04:19:15 ============================================================================ +04:19:15 Slot Id : <196> +04:19:15 Transaction Type : RESPONSE +04:19:15 Received From : +04:19:15 ============================================================================ +04:19:15 FNo. Len. Field Value +04:19:15 ============================================================================ +04:19:15 [ 1] [ 4] [0810] +04:19:15 [ 7] [ 10] [0319091821] +04:19:15 [ 11] [ 6] [154278] +04:19:15 [ 39] [ 2] [00] +04:19:15 [ 70] [ 3] [301] +04:19:15 ============================================================================ +04:19:15 Calculate Source COMM Id = 2 +04:19:15 ============================================================================ +04:19:15 + + +waiting on router queue for slot.... +04:19:26 ============================================================================ +04:19:26 Slot Id : <191> +04:19:26 Transaction Type : REQUEST +04:19:26 Received From : +04:19:26 ============================================================================ +04:19:26 FNo. Len. Field Value +04:19:26 ============================================================================ +04:19:26 [ 1] [ 4] [0800] +04:19:26 [ 7] [ 10] [0319091833] +04:19:26 [ 11] [ 6] [154279] +04:19:26 [ 70] [ 3] [301] +04:19:26 ============================================================================ +04:19:26 + + +waiting on router queue for slot.... +04:19:26 Sending to : +04:19:26 ============================================================================ +04:19:26 ============================================================================ +04:19:26 Slot Id : <191> +04:19:26 Transaction Type : RESPONSE +04:19:26 Received From : +04:19:26 ============================================================================ +04:19:26 FNo. Len. Field Value +04:19:26 ============================================================================ +04:19:26 [ 1] [ 4] [0810] +04:19:26 [ 7] [ 10] [0319091833] +04:19:26 [ 11] [ 6] [154279] +04:19:26 [ 39] [ 2] [00] +04:19:26 [ 70] [ 3] [301] +04:19:26 ============================================================================ +04:19:26 Calculate Source COMM Id = 2 +04:19:26 ============================================================================ +04:19:26 + + +waiting on router queue for slot.... +04:19:37 ============================================================================ +04:19:37 Slot Id : <190> +04:19:37 Transaction Type : REQUEST +04:19:37 Received From : +04:19:37 ============================================================================ +04:19:37 FNo. Len. Field Value +04:19:37 ============================================================================ +04:19:37 [ 1] [ 4] [0800] +04:19:37 [ 7] [ 10] [0319091844] +04:19:37 [ 11] [ 6] [154280] +04:19:37 [ 70] [ 3] [301] +04:19:37 ============================================================================ +04:19:37 + + +waiting on router queue for slot.... +04:19:37 Sending to : +04:19:37 ============================================================================ +04:19:37 ============================================================================ +04:19:37 Slot Id : <190> +04:19:37 Transaction Type : RESPONSE +04:19:37 Received From : +04:19:37 ============================================================================ +04:19:37 FNo. Len. Field Value +04:19:37 ============================================================================ +04:19:37 [ 1] [ 4] [0810] +04:19:37 [ 7] [ 10] [0319091844] +04:19:37 [ 11] [ 6] [154280] +04:19:37 [ 39] [ 2] [00] +04:19:37 [ 70] [ 3] [301] +04:19:37 ============================================================================ +04:19:37 Calculate Source COMM Id = 2 +04:19:37 ============================================================================ +04:19:37 + + +waiting on router queue for slot.... +04:19:52 ============================================================================ +04:19:52 Slot Id : <155> +04:19:52 Transaction Type : REQUEST +04:19:52 Received From : +04:19:52 ============================================================================ +04:19:52 FNo. Len. Field Value +04:19:52 ============================================================================ +04:19:52 [ 1] [ 4] [0800] +04:19:52 [ 7] [ 10] [0319091859] +04:19:52 [ 11] [ 6] [154281] +04:19:52 [ 70] [ 3] [301] +04:19:52 ============================================================================ +04:19:52 + + +waiting on router queue for slot.... +04:19:52 Sending to : +04:19:52 ============================================================================ +04:19:52 ============================================================================ +04:19:52 Slot Id : <155> +04:19:52 Transaction Type : RESPONSE +04:19:52 Received From : +04:19:52 ============================================================================ +04:19:52 FNo. Len. Field Value +04:19:52 ============================================================================ +04:19:52 [ 1] [ 4] [0810] +04:19:52 [ 7] [ 10] [0319091859] +04:19:52 [ 11] [ 6] [154281] +04:19:52 [ 39] [ 2] [00] +04:19:52 [ 70] [ 3] [301] +04:19:52 ============================================================================ +04:19:52 Calculate Source COMM Id = 2 +04:19:52 ============================================================================ +04:19:52 + + +waiting on router queue for slot.... +04:19:56 ============================================================================ +04:19:56 Slot Id : <181> +04:19:56 Transaction Type : REQUEST +04:19:56 Received From : +04:19:56 ============================================================================ +04:19:56 FNo. Len. Field Value +04:19:56 ============================================================================ +04:19:56 [ 1] [ 4] [0800] +04:19:56 [ 7] [ 10] [0319212742] +04:19:56 [ 11] [ 6] [072469] +04:19:56 [ 37] [ 12] [57904072469] +04:19:56 [ 70] [ 3] [301] +04:19:56 ============================================================================ +04:19:56 + + +waiting on router queue for slot.... +04:19:56 Sending to : +04:19:56 ============================================================================ +04:19:56 ============================================================================ +04:19:56 Slot Id : <181> +04:19:56 Transaction Type : RESPONSE +04:19:56 Received From : +04:19:56 ============================================================================ +04:19:56 FNo. Len. Field Value +04:19:56 ============================================================================ +04:19:56 [ 1] [ 4] [0810] +04:19:56 [ 7] [ 10] [0319212742] +04:19:56 [ 11] [ 6] [072469] +04:19:56 [ 37] [ 12] [579040724690] +04:19:56 [ 39] [ 2] [00] +04:19:56 [ 70] [ 3] [810] +04:19:56 ============================================================================ +04:19:56 Calculate Source COMM Id = 1 +04:19:56 ============================================================================ +04:19:56 + + +waiting on router queue for slot.... +04:19:57 ============================================================================ +04:19:57 Slot Id : <198> +04:19:57 Transaction Type : REQUEST +04:19:57 Received From : +04:19:57 ============================================================================ +04:19:57 FNo. Len. Field Value +04:19:57 ============================================================================ +04:19:57 [ 1] [ 4] [0800] +04:19:57 [ 2] [ 5] [02531] +04:19:57 [ 3] [ 6] [579048] +04:19:57 [ 7] [ 10] [0319211957] +04:19:57 [ 11] [ 6] [806663] +04:19:57 [ 15] [ 10] [0319211957] +04:19:57 [ 37] [ 11] [57904806663] +04:19:57 [ 70] [ 3] [001] +04:19:57 ============================================================================ +04:19:57 + + +waiting on router queue for slot.... +04:19:58 ============================================================================ +04:19:58 Slot Id : <198> +04:19:58 Transaction Type : RESPONSE +04:19:58 Received From : +04:19:58 ============================================================================ +04:19:58 FNo. Len. Field Value +04:19:58 ============================================================================ +04:19:58 [ 1] [ 4] [0810] +04:19:58 [ 7] [ 10] [0319211957] +04:19:58 [ 11] [ 6] [806663] +04:19:58 [ 15] [ 4] [0319] +04:19:58 [ 37] [ 12] [57904806663] +04:19:58 [ 39] [ 2] [00] +04:19:58 [ 70] [ 3] [001] +04:19:58 ============================================================================ +04:19:58 Sending to : +04:19:58 ============================================================================ +04:19:58 + + +waiting on router queue for slot.... +04:19:58 ============================================================================ +04:19:58 Slot Id : <201> +04:19:58 Transaction Type : REQUEST +04:19:58 Received From : +04:19:58 ============================================================================ +04:19:58 FNo. Len. Field Value +04:19:58 ============================================================================ +04:19:58 [ 1] [ 4] [0800] +04:19:58 [ 7] [ 10] [0320113145] +04:19:58 [ 11] [ 6] [043145] +04:19:58 [ 37] [ 12] [57904043145] +04:19:58 [ 70] [ 3] [301] +04:19:58 ============================================================================ +04:19:58 + + +waiting on router queue for slot.... +04:19:58 Sending to : +04:19:58 ============================================================================ +04:19:58 ============================================================================ +04:19:58 Slot Id : <201> +04:19:58 Transaction Type : RESPONSE +04:19:58 Received From : +04:19:58 ============================================================================ +04:19:58 FNo. Len. Field Value +04:19:58 ============================================================================ +04:19:58 [ 1] [ 4] [0810] +04:19:58 [ 7] [ 10] [0320113145] +04:19:58 [ 11] [ 6] [043145] +04:19:58 [ 37] [ 12] [579040431450] +04:19:58 [ 39] [ 2] [00] +04:19:58 [ 70] [ 3] [810] +04:19:58 ============================================================================ +04:19:58 Calculate Source COMM Id = 6 +04:19:58 ============================================================================ +04:19:58 + + +waiting on router queue for slot.... +04:20:02 ============================================================================ +04:20:02 Slot Id : <194> +04:20:02 Transaction Type : REQUEST +04:20:02 Received From : +04:20:02 ============================================================================ +04:20:02 FNo. Len. Field Value +04:20:02 ============================================================================ +04:20:02 [ 1] [ 4] [0800] +04:20:02 [ 7] [ 10] [0319091909] +04:20:02 [ 11] [ 6] [154282] +04:20:02 [ 70] [ 3] [301] +04:20:02 ============================================================================ +04:20:02 + + +waiting on router queue for slot.... +04:20:02 Sending to : +04:20:02 ============================================================================ +04:20:02 ============================================================================ +04:20:02 Slot Id : <194> +04:20:02 Transaction Type : RESPONSE +04:20:02 Received From : +04:20:02 ============================================================================ +04:20:02 FNo. Len. Field Value +04:20:02 ============================================================================ +04:20:02 [ 1] [ 4] [0810] +04:20:02 [ 7] [ 10] [0319091909] +04:20:02 [ 11] [ 6] [154282] +04:20:02 [ 39] [ 2] [00] +04:20:02 [ 70] [ 3] [301] +04:20:02 ============================================================================ +04:20:02 Calculate Source COMM Id = 2 +04:20:02 ============================================================================ +04:20:02 + + +waiting on router queue for slot.... +04:20:13 ============================================================================ +04:20:13 Slot Id : <214> +04:20:13 Transaction Type : REQUEST +04:20:13 Received From : +04:20:13 ============================================================================ +04:20:13 FNo. Len. Field Value +04:20:13 ============================================================================ +04:20:13 [ 1] [ 4] [0800] +04:20:13 [ 7] [ 10] [0319091920] +04:20:13 [ 11] [ 6] [154283] +04:20:13 [ 70] [ 3] [301] +04:20:13 ============================================================================ +04:20:13 + + +waiting on router queue for slot.... +04:20:13 Sending to : +04:20:13 ============================================================================ +04:20:13 ============================================================================ +04:20:13 Slot Id : <214> +04:20:13 Transaction Type : RESPONSE +04:20:13 Received From : +04:20:13 ============================================================================ +04:20:13 FNo. Len. Field Value +04:20:13 ============================================================================ +04:20:13 [ 1] [ 4] [0810] +04:20:13 [ 7] [ 10] [0319091920] +04:20:13 [ 11] [ 6] [154283] +04:20:13 [ 39] [ 2] [00] +04:20:13 [ 70] [ 3] [301] +04:20:13 ============================================================================ +04:20:13 Calculate Source COMM Id = 2 +04:20:13 ============================================================================ +04:20:13 + + +waiting on router queue for slot.... +04:20:24 ============================================================================ +04:20:24 Slot Id : <165> +04:20:24 Transaction Type : REQUEST +04:20:24 Received From : +04:20:24 ============================================================================ +04:20:24 FNo. Len. Field Value +04:20:24 ============================================================================ +04:20:24 [ 1] [ 4] [0800] +04:20:24 [ 7] [ 10] [0319091931] +04:20:24 [ 11] [ 6] [154284] +04:20:24 [ 70] [ 3] [301] +04:20:24 ============================================================================ +04:20:24 + + +waiting on router queue for slot.... +04:20:24 Sending to : +04:20:24 ============================================================================ +04:20:24 ============================================================================ +04:20:24 Slot Id : <165> +04:20:24 Transaction Type : RESPONSE +04:20:24 Received From : +04:20:24 ============================================================================ +04:20:24 FNo. Len. Field Value +04:20:24 ============================================================================ +04:20:24 [ 1] [ 4] [0810] +04:20:24 [ 7] [ 10] [0319091931] +04:20:24 [ 11] [ 6] [154284] +04:20:24 [ 39] [ 2] [00] +04:20:24 [ 70] [ 3] [301] +04:20:24 ============================================================================ +04:20:24 Calculate Source COMM Id = 2 +04:20:24 ============================================================================ +04:20:24 + + +waiting on router queue for slot.... +04:20:34 ============================================================================ +04:20:34 Slot Id : <195> +04:20:34 Transaction Type : REQUEST +04:20:34 Received From : +04:20:34 ============================================================================ +04:20:34 FNo. Len. Field Value +04:20:34 ============================================================================ +04:20:34 [ 1] [ 4] [0800] +04:20:34 [ 7] [ 10] [0319091941] +04:20:34 [ 11] [ 6] [154285] +04:20:34 [ 70] [ 3] [301] +04:20:34 ============================================================================ +04:20:34 + + +waiting on router queue for slot.... +04:20:34 Sending to : +04:20:34 ============================================================================ +04:20:34 ============================================================================ +04:20:34 Slot Id : <195> +04:20:34 Transaction Type : RESPONSE +04:20:34 Received From : +04:20:34 ============================================================================ +04:20:34 FNo. Len. Field Value +04:20:34 ============================================================================ +04:20:34 [ 1] [ 4] [0810] +04:20:34 [ 7] [ 10] [0319091941] +04:20:34 [ 11] [ 6] [154285] +04:20:34 [ 39] [ 2] [00] +04:20:34 [ 70] [ 3] [301] +04:20:34 ============================================================================ +04:20:34 Calculate Source COMM Id = 2 +04:20:34 ============================================================================ +04:20:34 + + +waiting on router queue for slot.... +04:20:45 ============================================================================ +04:20:45 Slot Id : <184> +04:20:45 Transaction Type : REQUEST +04:20:45 Received From : +04:20:45 ============================================================================ +04:20:45 FNo. Len. Field Value +04:20:45 ============================================================================ +04:20:45 [ 1] [ 4] [0800] +04:20:45 [ 7] [ 10] [0319091952] +04:20:45 [ 11] [ 6] [154286] +04:20:45 [ 70] [ 3] [301] +04:20:45 ============================================================================ +04:20:45 + + +waiting on router queue for slot.... +04:20:45 Sending to : +04:20:45 ============================================================================ +04:20:45 ============================================================================ +04:20:45 Slot Id : <184> +04:20:45 Transaction Type : RESPONSE +04:20:45 Received From : +04:20:45 ============================================================================ +04:20:45 FNo. Len. Field Value +04:20:45 ============================================================================ +04:20:45 [ 1] [ 4] [0810] +04:20:45 [ 7] [ 10] [0319091952] +04:20:45 [ 11] [ 6] [154286] +04:20:45 [ 39] [ 2] [00] +04:20:45 [ 70] [ 3] [301] +04:20:45 ============================================================================ +04:20:45 Calculate Source COMM Id = 2 +04:20:45 ============================================================================ +04:20:45 + + +waiting on router queue for slot.... +04:20:56 ============================================================================ +04:20:56 Slot Id : <209> +04:20:56 Transaction Type : REQUEST +04:20:56 Received From : +04:20:56 ============================================================================ +04:20:56 FNo. Len. Field Value +04:20:56 ============================================================================ +04:20:56 [ 1] [ 4] [0800] +04:20:56 [ 7] [ 10] [0319092003] +04:20:56 [ 11] [ 6] [154287] +04:20:56 [ 70] [ 3] [301] +04:20:56 ============================================================================ +04:20:56 + + +waiting on router queue for slot.... +04:20:56 Sending to : +04:20:56 ============================================================================ +04:20:56 ============================================================================ +04:20:56 Slot Id : <209> +04:20:56 Transaction Type : RESPONSE +04:20:56 Received From : +04:20:56 ============================================================================ +04:20:56 FNo. Len. Field Value +04:20:56 ============================================================================ +04:20:56 [ 1] [ 4] [0810] +04:20:56 [ 7] [ 10] [0319092003] +04:20:56 [ 11] [ 6] [154287] +04:20:56 [ 39] [ 2] [00] +04:20:56 [ 70] [ 3] [301] +04:20:56 ============================================================================ +04:20:56 Calculate Source COMM Id = 2 +04:20:56 ============================================================================ +04:20:56 + + +waiting on router queue for slot.... +04:20:59 ============================================================================ +04:20:59 Slot Id : <213> +04:20:59 Transaction Type : REQUEST +04:20:59 Received From : +04:20:59 ============================================================================ +04:20:59 FNo. Len. Field Value +04:20:59 ============================================================================ +04:20:59 [ 1] [ 4] [0800] +04:20:59 [ 2] [ 5] [02531] +04:20:59 [ 3] [ 6] [579048] +04:20:59 [ 7] [ 10] [0319212059] +04:20:59 [ 11] [ 6] [806664] +04:20:59 [ 15] [ 10] [0319212059] +04:20:59 [ 37] [ 11] [57904806664] +04:20:59 [ 70] [ 3] [001] +04:20:59 ============================================================================ +04:20:59 + + +waiting on router queue for slot.... +04:21:00 ============================================================================ +04:21:00 Slot Id : <213> +04:21:00 Transaction Type : RESPONSE +04:21:00 Received From : +04:21:00 ============================================================================ +04:21:00 FNo. Len. Field Value +04:21:00 ============================================================================ +04:21:00 [ 1] [ 4] [0810] +04:21:00 [ 7] [ 10] [0319212059] +04:21:00 [ 11] [ 6] [806664] +04:21:00 [ 15] [ 4] [0319] +04:21:00 [ 37] [ 12] [57904806664] +04:21:00 [ 39] [ 2] [00] +04:21:00 [ 70] [ 3] [001] +04:21:00 ============================================================================ +04:21:00 Sending to : +04:21:00 ============================================================================ +04:21:00 + + +waiting on router queue for slot.... +04:21:03 ============================================================================ +04:21:03 Slot Id : <178> +04:21:03 Transaction Type : REQUEST +04:21:03 Received From : +04:21:03 ============================================================================ +04:21:03 FNo. Len. Field Value +04:21:03 ============================================================================ +04:21:03 [ 1] [ 4] [0800] +04:21:03 [ 7] [ 10] [0320113250] +04:21:03 [ 11] [ 6] [043250] +04:21:03 [ 37] [ 12] [57904043250] +04:21:03 [ 70] [ 3] [301] +04:21:03 ============================================================================ +04:21:03 + + +waiting on router queue for slot.... +04:21:03 Sending to : +04:21:03 ============================================================================ +04:21:03 ============================================================================ +04:21:03 Slot Id : <178> +04:21:03 Transaction Type : RESPONSE +04:21:03 Received From : +04:21:03 ============================================================================ +04:21:03 FNo. Len. Field Value +04:21:03 ============================================================================ +04:21:03 [ 1] [ 4] [0810] +04:21:03 [ 7] [ 10] [0320113250] +04:21:03 [ 11] [ 6] [043250] +04:21:03 [ 37] [ 12] [579040432500] +04:21:03 [ 39] [ 2] [00] +04:21:03 [ 70] [ 3] [810] +04:21:03 ============================================================================ +04:21:03 Calculate Source COMM Id = 6 +04:21:03 ============================================================================ +04:21:03 + + +waiting on router queue for slot.... +04:21:07 ============================================================================ +04:21:07 Slot Id : <208> +04:21:07 Transaction Type : REQUEST +04:21:07 Received From : +04:21:07 ============================================================================ +04:21:07 FNo. Len. Field Value +04:21:07 ============================================================================ +04:21:07 [ 1] [ 4] [0800] +04:21:07 [ 7] [ 10] [0319092014] +04:21:07 [ 11] [ 6] [154288] +04:21:07 [ 70] [ 3] [301] +04:21:07 ============================================================================ +04:21:07 + + +waiting on router queue for slot.... +04:21:07 Sending to : +04:21:07 ============================================================================ +04:21:07 ============================================================================ +04:21:07 Slot Id : <208> +04:21:07 Transaction Type : RESPONSE +04:21:07 Received From : +04:21:07 ============================================================================ +04:21:07 FNo. Len. Field Value +04:21:07 ============================================================================ +04:21:07 [ 1] [ 4] [0810] +04:21:07 [ 7] [ 10] [0319092014] +04:21:07 [ 11] [ 6] [154288] +04:21:07 [ 39] [ 2] [00] +04:21:07 [ 70] [ 3] [301] +04:21:07 ============================================================================ +04:21:07 Calculate Source COMM Id = 2 +04:21:07 ============================================================================ +04:21:07 + + +waiting on router queue for slot.... +04:21:18 ============================================================================ +04:21:18 Slot Id : <193> +04:21:18 Transaction Type : REQUEST +04:21:18 Received From : +04:21:18 ============================================================================ +04:21:18 FNo. Len. Field Value +04:21:18 ============================================================================ +04:21:18 [ 1] [ 4] [0800] +04:21:18 [ 7] [ 10] [0319092024] +04:21:18 [ 11] [ 6] [154289] +04:21:18 [ 70] [ 3] [301] +04:21:18 ============================================================================ +04:21:18 + + +waiting on router queue for slot.... +04:21:18 Sending to : +04:21:18 ============================================================================ +04:21:18 ============================================================================ +04:21:18 Slot Id : <193> +04:21:18 Transaction Type : RESPONSE +04:21:18 Received From : +04:21:18 ============================================================================ +04:21:18 FNo. Len. Field Value +04:21:18 ============================================================================ +04:21:18 [ 1] [ 4] [0810] +04:21:18 [ 7] [ 10] [0319092024] +04:21:18 [ 11] [ 6] [154289] +04:21:18 [ 39] [ 2] [00] +04:21:18 [ 70] [ 3] [301] +04:21:18 ============================================================================ +04:21:18 Calculate Source COMM Id = 2 +04:21:18 ============================================================================ +04:21:18 + + +waiting on router queue for slot.... +04:21:22 ============================================================================ +04:21:22 Slot Id : <206> +04:21:22 Transaction Type : REQUEST +04:21:22 Received From : +04:21:22 ============================================================================ +04:21:22 FNo. Len. Field Value +04:21:22 ============================================================================ +04:21:22 [ 1] [ 4] [0800] +04:21:22 [ 7] [ 10] [0319211912] +04:21:22 [ 11] [ 6] [044081] +04:21:22 [ 37] [ 12] [57904044081] +04:21:22 [ 70] [ 3] [301] +04:21:22 ============================================================================ +04:21:22 + + +waiting on router queue for slot.... +04:21:22 Sending to : +04:21:22 ============================================================================ +04:21:22 ============================================================================ +04:21:22 Slot Id : <206> +04:21:22 Transaction Type : RESPONSE +04:21:22 Received From : +04:21:22 ============================================================================ +04:21:22 FNo. Len. Field Value +04:21:22 ============================================================================ +04:21:22 [ 1] [ 4] [0810] +04:21:22 [ 7] [ 10] [0319211912] +04:21:22 [ 11] [ 6] [044081] +04:21:22 [ 37] [ 12] [579040440810] +04:21:22 [ 39] [ 2] [00] +04:21:22 [ 70] [ 3] [810] +04:21:22 ============================================================================ +04:21:22 Calculate Source COMM Id = 4 +04:21:22 ============================================================================ +04:21:22 + + +waiting on router queue for slot.... +04:21:29 ============================================================================ +04:21:29 Slot Id : <185> +04:21:29 Transaction Type : REQUEST +04:21:29 Received From : +04:21:29 ============================================================================ +04:21:29 FNo. Len. Field Value +04:21:29 ============================================================================ +04:21:29 [ 1] [ 4] [0800] +04:21:29 [ 7] [ 10] [0319092035] +04:21:29 [ 11] [ 6] [154290] +04:21:29 [ 70] [ 3] [301] +04:21:29 ============================================================================ +04:21:29 + + +waiting on router queue for slot.... +04:21:29 Sending to : +04:21:29 ============================================================================ +04:21:29 ============================================================================ +04:21:29 Slot Id : <185> +04:21:29 Transaction Type : RESPONSE +04:21:29 Received From : +04:21:29 ============================================================================ +04:21:29 FNo. Len. Field Value +04:21:29 ============================================================================ +04:21:29 [ 1] [ 4] [0810] +04:21:29 [ 7] [ 10] [0319092035] +04:21:29 [ 11] [ 6] [154290] +04:21:29 [ 39] [ 2] [00] +04:21:29 [ 70] [ 3] [301] +04:21:29 ============================================================================ +04:21:29 Calculate Source COMM Id = 2 +04:21:29 ============================================================================ +04:21:29 + + +waiting on router queue for slot.... +04:21:34 ============================================================================ +04:21:34 Slot Id : <211> +04:21:34 Transaction Type : REQUEST +04:21:34 Received From : +04:21:34 ============================================================================ +04:21:34 FNo. Len. Field Value +04:21:34 ============================================================================ +04:21:34 [ 1] [ 4] [0200] +04:21:34 [ 2] [ 16] [6688990600401101] +04:21:34 [ 3] [ 6] [010000] +04:21:34 [ 4] [ 12] [000020000000] +04:21:34 [ 7] [ 10] [0320042129] +04:21:34 [ 11] [ 6] [662104] +04:21:34 [ 12] [ 6] [042129] +04:21:34 [ 13] [ 4] [0320] +04:21:34 [ 15] [ 4] [0320] +04:21:34 [ 18] [ 4] [6011] +04:21:34 [ 22] [ 3] [900] +04:21:34 [ 25] [ 2] [02] +04:21:34 [ 28] [ 9] [D00002000] +04:21:34 [ 32] [ 6] [621354] +04:21:34 [ 35] [ 37] [6688990600401101=40110061110136600000] +04:21:34 [ 37] [ 12] [507904422872] +04:21:34 [ 41] [ 8] [03004100] +04:21:34 [ 42] [ 15] [NATIVE ] +04:21:34 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +04:21:34 [ 49] [ 3] [418] +04:21:34 [ 52] [ 16] [1E1DDE21FB6CD891] +04:21:34 ============================================================================ +04:21:34 + + +waiting on router queue for slot.... +04:21:34 Sending to : +04:21:34 ============================================================================ +04:21:34 Sending to : +04:21:34 ============================================================================ +04:21:34 ============================================================================ +04:21:34 Slot Id : <211> +04:21:34 Transaction Type : REQUEST +04:21:34 Received From : +04:21:34 ============================================================================ +04:21:34 FNo. Len. Field Value +04:21:34 ============================================================================ +04:21:34 [ 1] [ 4] [0200] +04:21:34 [ 2] [ 16] [6688990600401101] +04:21:34 [ 3] [ 6] [010000] +04:21:34 [ 4] [ 12] [000020000000] +04:21:34 [ 7] [ 10] [0320042129] +04:21:34 [ 11] [ 6] [662104] +04:21:34 [ 12] [ 6] [042129] +04:21:34 [ 13] [ 4] [0320] +04:21:34 [ 15] [ 4] [0320] +04:21:34 [ 18] [ 4] [6011] +04:21:34 [ 22] [ 3] [900] +04:21:34 [ 25] [ 2] [02] +04:21:34 [ 28] [ 9] [D00002000] +04:21:34 [ 32] [ 6] [621354] +04:21:34 [ 35] [ 37] [6688990600401101=40110061110136600000] +04:21:34 [ 37] [ 12] [507904422872] +04:21:34 [ 41] [ 8] [03004100] +04:21:34 [ 42] [ 15] [NATIVE ] +04:21:34 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +04:21:34 [ 49] [ 3] [418] +04:21:34 [ 52] [ 16] [1E1DDE21FB6CD891] +04:21:34 ============================================================================ +04:21:34 + + +waiting on router queue for slot.... +04:21:34 Sending to : +04:21:34 ============================================================================ +04:21:34 ============================================================================ +04:21:34 Slot Id : <211> +04:21:34 Transaction Type : REQUEST +04:21:34 Received From : +04:21:34 ============================================================================ +04:21:34 FNo. Len. Field Value +04:21:34 ============================================================================ +04:21:34 [ 1] [ 4] [0200] +04:21:34 [ 2] [ 16] [6688990600401101] +04:21:34 [ 3] [ 6] [010000] +04:21:34 [ 4] [ 12] [000020000000] +04:21:34 [ 7] [ 10] [0320042129] +04:21:34 [ 11] [ 6] [662104] +04:21:34 [ 12] [ 6] [042129] +04:21:34 [ 13] [ 4] [0320] +04:21:34 [ 15] [ 4] [0320] +04:21:34 [ 18] [ 4] [6011] +04:21:34 [ 22] [ 3] [900] +04:21:34 [ 25] [ 2] [02] +04:21:34 [ 28] [ 9] [D00002000] +04:21:34 [ 32] [ 6] [621354] +04:21:34 [ 35] [ 37] [6688990600401101=40110061110136600000] +04:21:34 [ 37] [ 12] [507904422872] +04:21:34 [ 41] [ 8] [03004100] +04:21:34 [ 42] [ 15] [NATIVE ] +04:21:34 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +04:21:34 [ 49] [ 3] [418] +04:21:34 [ 52] [ 16] [C8FB7D141BE93A78] +04:21:34 ============================================================================ +04:21:34 + + +waiting on router queue for slot.... +04:21:34 Sending to : <4> +04:21:34 ============================================================================ +04:21:36 ============================================================================ +04:21:36 Slot Id : <211> +04:21:36 Transaction Type : RESPONSE +04:21:36 Received From : +04:21:36 ============================================================================ +04:21:36 FNo. Len. Field Value +04:21:36 ============================================================================ +04:21:36 [ 1] [ 4] [0210] +04:21:36 [ 2] [ 16] [6688990600401101] +04:21:36 [ 3] [ 6] [010000] +04:21:36 [ 4] [ 12] [000020000000] +04:21:36 [ 11] [ 6] [662104] +04:21:36 [ 12] [ 6] [042129] +04:21:36 [ 15] [ 4] [0320] +04:21:36 [ 18] [ 4] [6011] +04:21:36 [ 32] [ 6] [621354] +04:21:36 [ 35] [ 37] [6688990600401101=40110061110136600000] +04:21:36 [ 37] [ 12] [507904422872] +04:21:36 [ 38] [ 6] [119790] +04:21:36 [ 39] [ 2] [00] +04:21:36 [ 41] [ 8] [03004100] +04:21:36 [ 49] [ 3] [418] +04:21:36 [ 54] [ 20] [0002418C000121960980] +04:21:36 ============================================================================ +04:21:36 Sending to : +04:21:36 ============================================================================ +04:21:36 + + +waiting on router queue for slot.... +04:21:37 ============================================================================ +04:21:37 Slot Id : <211> +04:21:37 Transaction Type : RESPONSE +04:21:37 Received From : +04:21:37 ============================================================================ +04:21:37 FNo. Len. Field Value +04:21:37 ============================================================================ +04:21:37 [ 1] [ 4] [0210] +04:21:37 [ 2] [ 16] [6688990600401101] +04:21:37 [ 3] [ 6] [010000] +04:21:37 [ 4] [ 12] [000020000000] +04:21:37 [ 11] [ 6] [662104] +04:21:37 [ 12] [ 6] [042129] +04:21:37 [ 15] [ 4] [0320] +04:21:37 [ 18] [ 4] [6011] +04:21:37 [ 32] [ 6] [621354] +04:21:37 [ 35] [ 37] [6688990600401101=40110061110136600000] +04:21:37 [ 37] [ 12] [507904422872] +04:21:37 [ 38] [ 6] [119790] +04:21:37 [ 39] [ 2] [00] +04:21:37 [ 41] [ 8] [03004100] +04:21:37 [ 49] [ 3] [418] +04:21:37 [ 54] [ 20] [0002418C000121960980] +04:21:37 ============================================================================ +04:21:37 Calculate Source COMM Id = 0 +04:21:37 ============================================================================ +04:21:37 + + +waiting on router queue for slot.... +04:21:39 ============================================================================ +04:21:39 Slot Id : <221> +04:21:39 Transaction Type : REQUEST +04:21:39 Received From : +04:21:39 ============================================================================ +04:21:39 FNo. Len. Field Value +04:21:39 ============================================================================ +04:21:39 [ 1] [ 4] [0800] +04:21:39 [ 7] [ 10] [0319092046] +04:21:39 [ 11] [ 6] [154291] +04:21:39 [ 70] [ 3] [301] +04:21:39 ============================================================================ +04:21:39 + + +waiting on router queue for slot.... +04:21:39 Sending to : +04:21:39 ============================================================================ +04:21:39 ============================================================================ +04:21:39 Slot Id : <221> +04:21:39 Transaction Type : RESPONSE +04:21:39 Received From : +04:21:39 ============================================================================ +04:21:39 FNo. Len. Field Value +04:21:39 ============================================================================ +04:21:39 [ 1] [ 4] [0810] +04:21:39 [ 7] [ 10] [0319092046] +04:21:39 [ 11] [ 6] [154291] +04:21:39 [ 39] [ 2] [00] +04:21:39 [ 70] [ 3] [301] +04:21:39 ============================================================================ +04:21:39 Calculate Source COMM Id = 2 +04:21:39 ============================================================================ +04:21:39 + + +waiting on router queue for slot.... +04:21:51 ============================================================================ +04:21:51 Slot Id : <183> +04:21:51 Transaction Type : REQUEST +04:21:51 Received From : +04:21:51 ============================================================================ +04:21:51 FNo. Len. Field Value +04:21:51 ============================================================================ +04:21:51 [ 1] [ 4] [0800] +04:21:51 [ 7] [ 10] [0319092057] +04:21:51 [ 11] [ 6] [154292] +04:21:51 [ 70] [ 3] [301] +04:21:51 ============================================================================ +04:21:51 + + +waiting on router queue for slot.... +04:21:51 Sending to : +04:21:51 ============================================================================ +04:21:51 ============================================================================ +04:21:51 Slot Id : <183> +04:21:51 Transaction Type : RESPONSE +04:21:51 Received From : +04:21:51 ============================================================================ +04:21:51 FNo. Len. Field Value +04:21:51 ============================================================================ +04:21:51 [ 1] [ 4] [0810] +04:21:51 [ 7] [ 10] [0319092057] +04:21:51 [ 11] [ 6] [154292] +04:21:51 [ 39] [ 2] [00] +04:21:51 [ 70] [ 3] [301] +04:21:51 ============================================================================ +04:21:51 Calculate Source COMM Id = 2 +04:21:51 ============================================================================ +04:21:51 + + +waiting on router queue for slot.... +04:22:01 ============================================================================ +04:22:01 Slot Id : <212> +04:22:01 Transaction Type : REQUEST +04:22:01 Received From : +04:22:01 ============================================================================ +04:22:01 FNo. Len. Field Value +04:22:01 ============================================================================ +04:22:01 [ 1] [ 4] [0800] +04:22:01 [ 7] [ 10] [0319092108] +04:22:01 [ 11] [ 6] [154293] +04:22:01 [ 70] [ 3] [301] +04:22:01 ============================================================================ +04:22:01 + + +waiting on router queue for slot.... +04:22:01 Sending to : +04:22:01 ============================================================================ +04:22:01 ============================================================================ +04:22:01 Slot Id : <212> +04:22:01 Transaction Type : RESPONSE +04:22:01 Received From : +04:22:01 ============================================================================ +04:22:01 FNo. Len. Field Value +04:22:01 ============================================================================ +04:22:01 [ 1] [ 4] [0810] +04:22:01 [ 7] [ 10] [0319092108] +04:22:01 [ 11] [ 6] [154293] +04:22:01 [ 39] [ 2] [00] +04:22:01 [ 70] [ 3] [301] +04:22:01 ============================================================================ +04:22:01 Calculate Source COMM Id = 2 +04:22:01 ============================================================================ +04:22:01 + + +waiting on router queue for slot.... +04:22:01 ============================================================================ +04:22:01 Slot Id : <207> +04:22:01 Transaction Type : REQUEST +04:22:01 Received From : +04:22:01 ============================================================================ +04:22:01 FNo. Len. Field Value +04:22:01 ============================================================================ +04:22:01 [ 1] [ 4] [0800] +04:22:01 [ 2] [ 5] [02531] +04:22:01 [ 3] [ 6] [579048] +04:22:01 [ 7] [ 10] [0319212201] +04:22:01 [ 11] [ 6] [806665] +04:22:01 [ 15] [ 10] [0319212201] +04:22:01 [ 37] [ 11] [57904806665] +04:22:01 [ 70] [ 3] [001] +04:22:01 ============================================================================ +04:22:01 + + +waiting on router queue for slot.... +04:22:02 ============================================================================ +04:22:02 Slot Id : <207> +04:22:02 Transaction Type : RESPONSE +04:22:02 Received From : +04:22:02 ============================================================================ +04:22:02 FNo. Len. Field Value +04:22:02 ============================================================================ +04:22:02 [ 1] [ 4] [0810] +04:22:02 [ 7] [ 10] [0319212201] +04:22:02 [ 11] [ 6] [806665] +04:22:02 [ 15] [ 4] [0319] +04:22:02 [ 37] [ 12] [57904806665] +04:22:02 [ 39] [ 2] [00] +04:22:02 [ 70] [ 3] [001] +04:22:02 ============================================================================ +04:22:02 Sending to : +04:22:02 ============================================================================ +04:22:02 + + +waiting on router queue for slot.... +04:22:08 ============================================================================ +04:22:08 Slot Id : <149> +04:22:08 Transaction Type : REQUEST +04:22:08 Received From : +04:22:08 ============================================================================ +04:22:08 FNo. Len. Field Value +04:22:08 ============================================================================ +04:22:08 [ 1] [ 4] [0800] +04:22:08 [ 7] [ 10] [0320113355] +04:22:08 [ 11] [ 6] [043355] +04:22:08 [ 37] [ 12] [57904043355] +04:22:08 [ 70] [ 3] [301] +04:22:08 ============================================================================ +04:22:08 + + +waiting on router queue for slot.... +04:22:08 Sending to : +04:22:08 ============================================================================ +04:22:08 ============================================================================ +04:22:08 Slot Id : <149> +04:22:08 Transaction Type : RESPONSE +04:22:08 Received From : +04:22:08 ============================================================================ +04:22:08 FNo. Len. Field Value +04:22:08 ============================================================================ +04:22:08 [ 1] [ 4] [0810] +04:22:08 [ 7] [ 10] [0320113355] +04:22:08 [ 11] [ 6] [043355] +04:22:08 [ 37] [ 12] [579040433550] +04:22:08 [ 39] [ 2] [00] +04:22:08 [ 70] [ 3] [810] +04:22:08 ============================================================================ +04:22:08 Calculate Source COMM Id = 6 +04:22:08 ============================================================================ +04:22:08 + + +waiting on router queue for slot.... +04:22:11 ============================================================================ +04:22:11 Slot Id : <174> +04:22:11 Transaction Type : REQUEST +04:22:11 Received From : +04:22:11 ============================================================================ +04:22:11 FNo. Len. Field Value +04:22:11 ============================================================================ +04:22:11 [ 1] [ 4] [0800] +04:22:11 [ 7] [ 10] [0319092118] +04:22:11 [ 11] [ 6] [154294] +04:22:11 [ 70] [ 3] [301] +04:22:11 ============================================================================ +04:22:11 + + +waiting on router queue for slot.... +04:22:11 Sending to : +04:22:11 ============================================================================ +04:22:11 ============================================================================ +04:22:11 Slot Id : <174> +04:22:11 Transaction Type : RESPONSE +04:22:11 Received From : +04:22:11 ============================================================================ +04:22:11 FNo. Len. Field Value +04:22:11 ============================================================================ +04:22:11 [ 1] [ 4] [0810] +04:22:11 [ 7] [ 10] [0319092118] +04:22:11 [ 11] [ 6] [154294] +04:22:11 [ 39] [ 2] [00] +04:22:11 [ 70] [ 3] [301] +04:22:11 ============================================================================ +04:22:11 Calculate Source COMM Id = 2 +04:22:11 ============================================================================ +04:22:11 + + +waiting on router queue for slot.... +04:22:27 ============================================================================ +04:22:27 Slot Id : <168> +04:22:27 Transaction Type : REQUEST +04:22:27 Received From : +04:22:27 ============================================================================ +04:22:27 FNo. Len. Field Value +04:22:27 ============================================================================ +04:22:27 [ 1] [ 4] [0800] +04:22:27 [ 7] [ 10] [0319092134] +04:22:27 [ 11] [ 6] [154295] +04:22:27 [ 70] [ 3] [301] +04:22:27 ============================================================================ +04:22:27 + + +waiting on router queue for slot.... +04:22:27 Sending to : +04:22:27 ============================================================================ +04:22:27 ============================================================================ +04:22:27 Slot Id : <168> +04:22:27 Transaction Type : RESPONSE +04:22:27 Received From : +04:22:27 ============================================================================ +04:22:27 FNo. Len. Field Value +04:22:27 ============================================================================ +04:22:27 [ 1] [ 4] [0810] +04:22:27 [ 7] [ 10] [0319092134] +04:22:27 [ 11] [ 6] [154295] +04:22:27 [ 39] [ 2] [00] +04:22:27 [ 70] [ 3] [301] +04:22:27 ============================================================================ +04:22:27 Calculate Source COMM Id = 2 +04:22:27 ============================================================================ +04:22:27 + + +waiting on router queue for slot.... +04:22:37 ============================================================================ +04:22:37 Slot Id : <180> +04:22:37 Transaction Type : REQUEST +04:22:37 Received From : +04:22:37 ============================================================================ +04:22:37 FNo. Len. Field Value +04:22:37 ============================================================================ +04:22:37 [ 1] [ 4] [0800] +04:22:37 [ 7] [ 10] [0319092144] +04:22:37 [ 11] [ 6] [154296] +04:22:37 [ 70] [ 3] [301] +04:22:37 ============================================================================ +04:22:37 + + +waiting on router queue for slot.... +04:22:37 Sending to : +04:22:37 ============================================================================ +04:22:37 ============================================================================ +04:22:37 Slot Id : <180> +04:22:37 Transaction Type : RESPONSE +04:22:37 Received From : +04:22:37 ============================================================================ +04:22:37 FNo. Len. Field Value +04:22:37 ============================================================================ +04:22:37 [ 1] [ 4] [0810] +04:22:37 [ 7] [ 10] [0319092144] +04:22:37 [ 11] [ 6] [154296] +04:22:37 [ 39] [ 2] [00] +04:22:37 [ 70] [ 3] [301] +04:22:37 ============================================================================ +04:22:37 Calculate Source COMM Id = 2 +04:22:37 ============================================================================ +04:22:37 + + +waiting on router queue for slot.... +04:22:48 ============================================================================ +04:22:48 Slot Id : <189> +04:22:48 Transaction Type : REQUEST +04:22:48 Received From : +04:22:48 ============================================================================ +04:22:48 FNo. Len. Field Value +04:22:48 ============================================================================ +04:22:48 [ 1] [ 4] [0800] +04:22:48 [ 7] [ 10] [0319092154] +04:22:48 [ 11] [ 6] [154297] +04:22:48 [ 70] [ 3] [301] +04:22:48 ============================================================================ +04:22:48 + + +waiting on router queue for slot.... +04:22:48 Sending to : +04:22:48 ============================================================================ +04:22:48 ============================================================================ +04:22:48 Slot Id : <189> +04:22:48 Transaction Type : RESPONSE +04:22:48 Received From : +04:22:48 ============================================================================ +04:22:48 FNo. Len. Field Value +04:22:48 ============================================================================ +04:22:48 [ 1] [ 4] [0810] +04:22:48 [ 7] [ 10] [0319092154] +04:22:48 [ 11] [ 6] [154297] +04:22:48 [ 39] [ 2] [00] +04:22:48 [ 70] [ 3] [301] +04:22:48 ============================================================================ +04:22:48 Calculate Source COMM Id = 2 +04:22:48 ============================================================================ +04:22:48 + + +waiting on router queue for slot.... +04:23:04 ============================================================================ +04:23:04 Slot Id : <222> +04:23:04 Transaction Type : REQUEST +04:23:04 Received From : +04:23:04 ============================================================================ +04:23:04 FNo. Len. Field Value +04:23:04 ============================================================================ +04:23:04 [ 1] [ 4] [0800] +04:23:04 [ 2] [ 5] [02531] +04:23:04 [ 3] [ 6] [579048] +04:23:04 [ 7] [ 10] [0319212303] +04:23:04 [ 11] [ 6] [806666] +04:23:04 [ 15] [ 10] [0319212303] +04:23:04 [ 37] [ 11] [57904806666] +04:23:04 [ 70] [ 3] [001] +04:23:04 ============================================================================ +04:23:04 + + +waiting on router queue for slot.... +04:23:04 ============================================================================ +04:23:04 Slot Id : <222> +04:23:04 Transaction Type : RESPONSE +04:23:04 Received From : +04:23:04 ============================================================================ +04:23:04 FNo. Len. Field Value +04:23:04 ============================================================================ +04:23:04 [ 1] [ 4] [0810] +04:23:04 [ 7] [ 10] [0319212303] +04:23:04 [ 11] [ 6] [806666] +04:23:04 [ 15] [ 4] [0319] +04:23:04 [ 37] [ 12] [57904806666] +04:23:04 [ 39] [ 2] [00] +04:23:04 [ 70] [ 3] [001] +04:23:04 ============================================================================ +04:23:04 Sending to : +04:23:04 ============================================================================ +04:23:04 + + +waiting on router queue for slot.... +04:23:04 ============================================================================ +04:23:04 Slot Id : <169> +04:23:04 Transaction Type : REQUEST +04:23:04 Received From : +04:23:04 ============================================================================ +04:23:04 FNo. Len. Field Value +04:23:04 ============================================================================ +04:23:04 [ 1] [ 4] [0800] +04:23:04 [ 7] [ 10] [0319092211] +04:23:04 [ 11] [ 6] [154298] +04:23:04 [ 70] [ 3] [301] +04:23:04 ============================================================================ +04:23:04 + + +waiting on router queue for slot.... +04:23:04 Sending to : +04:23:04 ============================================================================ +04:23:04 ============================================================================ +04:23:04 Slot Id : <169> +04:23:04 Transaction Type : RESPONSE +04:23:04 Received From : +04:23:04 ============================================================================ +04:23:04 FNo. Len. Field Value +04:23:04 ============================================================================ +04:23:04 [ 1] [ 4] [0810] +04:23:04 [ 7] [ 10] [0319092211] +04:23:04 [ 11] [ 6] [154298] +04:23:04 [ 39] [ 2] [00] +04:23:04 [ 70] [ 3] [301] +04:23:04 ============================================================================ +04:23:04 Calculate Source COMM Id = 2 +04:23:04 ============================================================================ +04:23:04 + + +waiting on router queue for slot.... +04:23:13 ============================================================================ +04:23:13 Slot Id : <225> +04:23:13 Transaction Type : REQUEST +04:23:13 Received From : +04:23:13 ============================================================================ +04:23:13 FNo. Len. Field Value +04:23:13 ============================================================================ +04:23:13 [ 1] [ 4] [0800] +04:23:13 [ 7] [ 10] [0320113500] +04:23:13 [ 11] [ 6] [043500] +04:23:13 [ 37] [ 12] [57904043500] +04:23:13 [ 70] [ 3] [301] +04:23:13 ============================================================================ +04:23:13 + + +waiting on router queue for slot.... +04:23:13 Sending to : +04:23:13 ============================================================================ +04:23:13 ============================================================================ +04:23:13 Slot Id : <225> +04:23:13 Transaction Type : RESPONSE +04:23:13 Received From : +04:23:13 ============================================================================ +04:23:13 FNo. Len. Field Value +04:23:13 ============================================================================ +04:23:13 [ 1] [ 4] [0810] +04:23:13 [ 7] [ 10] [0320113500] +04:23:13 [ 11] [ 6] [043500] +04:23:13 [ 37] [ 12] [579040435000] +04:23:13 [ 39] [ 2] [00] +04:23:13 [ 70] [ 3] [810] +04:23:13 ============================================================================ +04:23:13 Calculate Source COMM Id = 6 +04:23:13 ============================================================================ +04:23:13 + + +waiting on router queue for slot.... +04:23:17 ============================================================================ +04:23:17 Slot Id : <232> +04:23:17 Transaction Type : REQUEST +04:23:17 Received From : +04:23:17 ============================================================================ +04:23:17 FNo. Len. Field Value +04:23:17 ============================================================================ +04:23:17 [ 1] [ 4] [0800] +04:23:17 [ 7] [ 10] [0319092224] +04:23:17 [ 11] [ 6] [154299] +04:23:17 [ 70] [ 3] [301] +04:23:17 ============================================================================ +04:23:17 + + +waiting on router queue for slot.... +04:23:17 Sending to : +04:23:17 ============================================================================ +04:23:17 ============================================================================ +04:23:17 Slot Id : <232> +04:23:17 Transaction Type : RESPONSE +04:23:17 Received From : +04:23:17 ============================================================================ +04:23:17 FNo. Len. Field Value +04:23:17 ============================================================================ +04:23:17 [ 1] [ 4] [0810] +04:23:17 [ 7] [ 10] [0319092224] +04:23:17 [ 11] [ 6] [154299] +04:23:17 [ 39] [ 2] [00] +04:23:17 [ 70] [ 3] [301] +04:23:17 ============================================================================ +04:23:17 Calculate Source COMM Id = 2 +04:23:17 ============================================================================ +04:23:17 + + +waiting on router queue for slot.... +04:23:33 ============================================================================ +04:23:33 Slot Id : <205> +04:23:33 Transaction Type : REQUEST +04:23:33 Received From : +04:23:33 ============================================================================ +04:23:33 FNo. Len. Field Value +04:23:33 ============================================================================ +04:23:33 [ 1] [ 4] [0800] +04:23:33 [ 7] [ 10] [0319092240] +04:23:33 [ 11] [ 6] [154300] +04:23:33 [ 70] [ 3] [301] +04:23:33 ============================================================================ +04:23:33 + + +waiting on router queue for slot.... +04:23:33 Sending to : +04:23:33 ============================================================================ +04:23:33 ============================================================================ +04:23:33 Slot Id : <205> +04:23:33 Transaction Type : RESPONSE +04:23:33 Received From : +04:23:33 ============================================================================ +04:23:33 FNo. Len. Field Value +04:23:33 ============================================================================ +04:23:33 [ 1] [ 4] [0810] +04:23:33 [ 7] [ 10] [0319092240] +04:23:33 [ 11] [ 6] [154300] +04:23:33 [ 39] [ 2] [00] +04:23:33 [ 70] [ 3] [301] +04:23:33 ============================================================================ +04:23:33 Calculate Source COMM Id = 2 +04:23:33 ============================================================================ +04:23:33 + + +waiting on router queue for slot.... +04:23:43 ============================================================================ +04:23:43 Slot Id : <230> +04:23:43 Transaction Type : REQUEST +04:23:43 Received From : +04:23:43 ============================================================================ +04:23:43 FNo. Len. Field Value +04:23:43 ============================================================================ +04:23:43 [ 1] [ 4] [0800] +04:23:43 [ 7] [ 10] [0319092250] +04:23:43 [ 11] [ 6] [154301] +04:23:43 [ 70] [ 3] [301] +04:23:43 ============================================================================ +04:23:43 + + +waiting on router queue for slot.... +04:23:43 Sending to : +04:23:43 ============================================================================ +04:23:43 ============================================================================ +04:23:43 Slot Id : <230> +04:23:43 Transaction Type : RESPONSE +04:23:43 Received From : +04:23:43 ============================================================================ +04:23:43 FNo. Len. Field Value +04:23:43 ============================================================================ +04:23:43 [ 1] [ 4] [0810] +04:23:43 [ 7] [ 10] [0319092250] +04:23:43 [ 11] [ 6] [154301] +04:23:43 [ 39] [ 2] [00] +04:23:43 [ 70] [ 3] [301] +04:23:43 ============================================================================ +04:23:43 Calculate Source COMM Id = 2 +04:23:43 ============================================================================ +04:23:43 + + +waiting on router queue for slot.... +04:23:59 ============================================================================ +04:23:59 Slot Id : <188> +04:23:59 Transaction Type : REQUEST +04:23:59 Received From : +04:23:59 ============================================================================ +04:23:59 FNo. Len. Field Value +04:23:59 ============================================================================ +04:23:59 [ 1] [ 4] [0800] +04:23:59 [ 7] [ 10] [0319092305] +04:23:59 [ 11] [ 6] [154302] +04:23:59 [ 70] [ 3] [301] +04:23:59 ============================================================================ +04:23:59 + + +waiting on router queue for slot.... +04:23:59 Sending to : +04:23:59 ============================================================================ +04:23:59 ============================================================================ +04:23:59 Slot Id : <188> +04:23:59 Transaction Type : RESPONSE +04:23:59 Received From : +04:23:59 ============================================================================ +04:23:59 FNo. Len. Field Value +04:23:59 ============================================================================ +04:23:59 [ 1] [ 4] [0810] +04:23:59 [ 7] [ 10] [0319092305] +04:23:59 [ 11] [ 6] [154302] +04:23:59 [ 39] [ 2] [00] +04:23:59 [ 70] [ 3] [301] +04:23:59 ============================================================================ +04:23:59 Calculate Source COMM Id = 2 +04:23:59 ============================================================================ +04:23:59 + + +waiting on router queue for slot.... +04:24:06 ============================================================================ +04:24:06 Slot Id : <173> +04:24:06 Transaction Type : REQUEST +04:24:06 Received From : +04:24:06 ============================================================================ +04:24:06 FNo. Len. Field Value +04:24:06 ============================================================================ +04:24:06 [ 1] [ 4] [0800] +04:24:06 [ 2] [ 5] [02531] +04:24:06 [ 3] [ 6] [579048] +04:24:06 [ 7] [ 10] [0319212406] +04:24:06 [ 11] [ 6] [806667] +04:24:06 [ 15] [ 10] [0319212406] +04:24:06 [ 37] [ 11] [57904806667] +04:24:06 [ 70] [ 3] [001] +04:24:06 ============================================================================ +04:24:06 + + +waiting on router queue for slot.... +04:24:06 ============================================================================ +04:24:06 Slot Id : <173> +04:24:06 Transaction Type : RESPONSE +04:24:06 Received From : +04:24:06 ============================================================================ +04:24:06 FNo. Len. Field Value +04:24:06 ============================================================================ +04:24:06 [ 1] [ 4] [0810] +04:24:06 [ 7] [ 10] [0319212406] +04:24:06 [ 11] [ 6] [806667] +04:24:06 [ 15] [ 4] [0319] +04:24:06 [ 37] [ 12] [57904806667] +04:24:06 [ 39] [ 2] [00] +04:24:06 [ 70] [ 3] [001] +04:24:06 ============================================================================ +04:24:06 Sending to : +04:24:06 ============================================================================ +04:24:06 + + +waiting on router queue for slot.... +04:24:15 ============================================================================ +04:24:15 Slot Id : <229> +04:24:15 Transaction Type : REQUEST +04:24:15 Received From : +04:24:15 ============================================================================ +04:24:15 FNo. Len. Field Value +04:24:15 ============================================================================ +04:24:15 [ 1] [ 4] [0800] +04:24:15 [ 7] [ 10] [0319092321] +04:24:15 [ 11] [ 6] [154303] +04:24:15 [ 70] [ 3] [301] +04:24:15 ============================================================================ +04:24:15 + + +waiting on router queue for slot.... +04:24:15 Sending to : +04:24:15 ============================================================================ +04:24:15 ============================================================================ +04:24:15 Slot Id : <229> +04:24:15 Transaction Type : RESPONSE +04:24:15 Received From : +04:24:15 ============================================================================ +04:24:15 FNo. Len. Field Value +04:24:15 ============================================================================ +04:24:15 [ 1] [ 4] [0810] +04:24:15 [ 7] [ 10] [0319092321] +04:24:15 [ 11] [ 6] [154303] +04:24:15 [ 39] [ 2] [00] +04:24:15 [ 70] [ 3] [301] +04:24:15 ============================================================================ +04:24:15 Calculate Source COMM Id = 2 +04:24:15 ============================================================================ +04:24:15 + + +waiting on router queue for slot.... +04:24:18 ============================================================================ +04:24:18 Slot Id : <223> +04:24:18 Transaction Type : REQUEST +04:24:18 Received From : +04:24:18 ============================================================================ +04:24:18 FNo. Len. Field Value +04:24:18 ============================================================================ +04:24:18 [ 1] [ 4] [0800] +04:24:18 [ 7] [ 10] [0320113605] +04:24:18 [ 11] [ 6] [043605] +04:24:18 [ 37] [ 12] [57904043605] +04:24:18 [ 70] [ 3] [301] +04:24:18 ============================================================================ +04:24:18 + + +waiting on router queue for slot.... +04:24:18 Sending to : +04:24:18 ============================================================================ +04:24:18 ============================================================================ +04:24:18 Slot Id : <223> +04:24:18 Transaction Type : RESPONSE +04:24:18 Received From : +04:24:18 ============================================================================ +04:24:18 FNo. Len. Field Value +04:24:18 ============================================================================ +04:24:18 [ 1] [ 4] [0810] +04:24:18 [ 7] [ 10] [0320113605] +04:24:18 [ 11] [ 6] [043605] +04:24:18 [ 37] [ 12] [579040436050] +04:24:18 [ 39] [ 2] [00] +04:24:18 [ 70] [ 3] [810] +04:24:18 ============================================================================ +04:24:18 Calculate Source COMM Id = 6 +04:24:18 ============================================================================ +04:24:18 + + +waiting on router queue for slot.... +04:24:30 ============================================================================ +04:24:30 Slot Id : <177> +04:24:30 Transaction Type : REQUEST +04:24:30 Received From : +04:24:30 ============================================================================ +04:24:30 FNo. Len. Field Value +04:24:30 ============================================================================ +04:24:30 [ 1] [ 4] [0800] +04:24:30 [ 7] [ 10] [0319092337] +04:24:30 [ 11] [ 6] [154304] +04:24:30 [ 70] [ 3] [301] +04:24:30 ============================================================================ +04:24:30 + + +waiting on router queue for slot.... +04:24:30 Sending to : +04:24:30 ============================================================================ +04:24:30 ============================================================================ +04:24:30 Slot Id : <177> +04:24:30 Transaction Type : RESPONSE +04:24:30 Received From : +04:24:30 ============================================================================ +04:24:30 FNo. Len. Field Value +04:24:30 ============================================================================ +04:24:30 [ 1] [ 4] [0810] +04:24:30 [ 7] [ 10] [0319092337] +04:24:30 [ 11] [ 6] [154304] +04:24:30 [ 39] [ 2] [00] +04:24:30 [ 70] [ 3] [301] +04:24:30 ============================================================================ +04:24:30 Calculate Source COMM Id = 2 +04:24:30 ============================================================================ +04:24:30 + + +waiting on router queue for slot.... +04:24:41 ============================================================================ +04:24:41 Slot Id : <215> +04:24:41 Transaction Type : REQUEST +04:24:41 Received From : +04:24:41 ============================================================================ +04:24:41 FNo. Len. Field Value +04:24:41 ============================================================================ +04:24:41 [ 1] [ 4] [0800] +04:24:41 [ 7] [ 10] [0319092348] +04:24:41 [ 11] [ 6] [154305] +04:24:41 [ 70] [ 3] [301] +04:24:41 ============================================================================ +04:24:41 + + +waiting on router queue for slot.... +04:24:41 Sending to : +04:24:41 ============================================================================ +04:24:41 ============================================================================ +04:24:41 Slot Id : <215> +04:24:41 Transaction Type : RESPONSE +04:24:41 Received From : +04:24:41 ============================================================================ +04:24:41 FNo. Len. Field Value +04:24:41 ============================================================================ +04:24:41 [ 1] [ 4] [0810] +04:24:41 [ 7] [ 10] [0319092348] +04:24:41 [ 11] [ 6] [154305] +04:24:41 [ 39] [ 2] [00] +04:24:41 [ 70] [ 3] [301] +04:24:41 ============================================================================ +04:24:41 Calculate Source COMM Id = 2 +04:24:41 ============================================================================ +04:24:41 + + +waiting on router queue for slot.... +04:24:56 ============================================================================ +04:24:56 Slot Id : <235> +04:24:56 Transaction Type : REQUEST +04:24:56 Received From : +04:24:56 ============================================================================ +04:24:56 FNo. Len. Field Value +04:24:56 ============================================================================ +04:24:56 [ 1] [ 4] [0800] +04:24:56 [ 7] [ 10] [0319213242] +04:24:56 [ 11] [ 6] [092250] +04:24:56 [ 37] [ 12] [57904092250] +04:24:56 [ 70] [ 3] [301] +04:24:56 ============================================================================ +04:24:56 + + +waiting on router queue for slot.... +04:24:56 Sending to : +04:24:56 ============================================================================ +04:24:56 ============================================================================ +04:24:56 Slot Id : <235> +04:24:56 Transaction Type : RESPONSE +04:24:56 Received From : +04:24:56 ============================================================================ +04:24:56 FNo. Len. Field Value +04:24:56 ============================================================================ +04:24:56 [ 1] [ 4] [0810] +04:24:56 [ 7] [ 10] [0319213242] +04:24:56 [ 11] [ 6] [092250] +04:24:56 [ 37] [ 12] [579040922500] +04:24:56 [ 39] [ 2] [00] +04:24:56 [ 70] [ 3] [810] +04:24:56 ============================================================================ +04:24:56 Calculate Source COMM Id = 1 +04:24:56 ============================================================================ +04:24:56 + + +waiting on router queue for slot.... +04:24:57 ============================================================================ +04:24:57 Slot Id : <243> +04:24:57 Transaction Type : REQUEST +04:24:57 Received From : +04:24:57 ============================================================================ +04:24:57 FNo. Len. Field Value +04:24:57 ============================================================================ +04:24:57 [ 1] [ 4] [0800] +04:24:57 [ 7] [ 10] [0319092403] +04:24:57 [ 11] [ 6] [154306] +04:24:57 [ 70] [ 3] [301] +04:24:57 ============================================================================ +04:24:57 + + +waiting on router queue for slot.... +04:24:57 Sending to : +04:24:57 ============================================================================ +04:24:57 ============================================================================ +04:24:57 Slot Id : <243> +04:24:57 Transaction Type : RESPONSE +04:24:57 Received From : +04:24:57 ============================================================================ +04:24:57 FNo. Len. Field Value +04:24:57 ============================================================================ +04:24:57 [ 1] [ 4] [0810] +04:24:57 [ 7] [ 10] [0319092403] +04:24:57 [ 11] [ 6] [154306] +04:24:57 [ 39] [ 2] [00] +04:24:57 [ 70] [ 3] [301] +04:24:57 ============================================================================ +04:24:57 Calculate Source COMM Id = 2 +04:24:57 ============================================================================ +04:24:57 + + +waiting on router queue for slot.... +04:25:08 ============================================================================ +04:25:08 Slot Id : <246> +04:25:08 Transaction Type : REQUEST +04:25:08 Received From : +04:25:08 ============================================================================ +04:25:08 FNo. Len. Field Value +04:25:08 ============================================================================ +04:25:08 [ 1] [ 4] [0800] +04:25:08 [ 2] [ 5] [02531] +04:25:08 [ 3] [ 6] [579048] +04:25:08 [ 7] [ 10] [0319212508] +04:25:08 [ 11] [ 6] [806668] +04:25:08 [ 15] [ 10] [0319212508] +04:25:08 [ 37] [ 11] [57904806668] +04:25:08 [ 70] [ 3] [001] +04:25:08 ============================================================================ +04:25:08 + + +waiting on router queue for slot.... +04:25:08 ============================================================================ +04:25:08 Slot Id : <246> +04:25:08 Transaction Type : RESPONSE +04:25:08 Received From : +04:25:08 ============================================================================ +04:25:08 FNo. Len. Field Value +04:25:08 ============================================================================ +04:25:08 [ 1] [ 4] [0810] +04:25:08 [ 7] [ 10] [0319212508] +04:25:08 [ 11] [ 6] [806668] +04:25:08 [ 15] [ 4] [0319] +04:25:08 [ 37] [ 12] [57904806668] +04:25:08 [ 39] [ 2] [00] +04:25:08 [ 70] [ 3] [001] +04:25:08 ============================================================================ +04:25:08 Sending to : +04:25:08 ============================================================================ +04:25:08 + + +waiting on router queue for slot.... +04:25:12 ============================================================================ +04:25:12 Slot Id : <242> +04:25:12 Transaction Type : REQUEST +04:25:12 Received From : +04:25:12 ============================================================================ +04:25:12 FNo. Len. Field Value +04:25:12 ============================================================================ +04:25:12 [ 1] [ 4] [0800] +04:25:12 [ 7] [ 10] [0319092419] +04:25:12 [ 11] [ 6] [154307] +04:25:12 [ 70] [ 3] [301] +04:25:12 ============================================================================ +04:25:12 + + +waiting on router queue for slot.... +04:25:12 Sending to : +04:25:12 ============================================================================ +04:25:12 ============================================================================ +04:25:12 Slot Id : <242> +04:25:12 Transaction Type : RESPONSE +04:25:12 Received From : +04:25:12 ============================================================================ +04:25:12 FNo. Len. Field Value +04:25:12 ============================================================================ +04:25:12 [ 1] [ 4] [0810] +04:25:12 [ 7] [ 10] [0319092419] +04:25:12 [ 11] [ 6] [154307] +04:25:12 [ 39] [ 2] [00] +04:25:12 [ 70] [ 3] [301] +04:25:12 ============================================================================ +04:25:12 Calculate Source COMM Id = 2 +04:25:12 ============================================================================ +04:25:12 + + +waiting on router queue for slot.... +04:25:23 ============================================================================ +04:25:23 Slot Id : <248> +04:25:23 Transaction Type : REQUEST +04:25:23 Received From : +04:25:23 ============================================================================ +04:25:23 FNo. Len. Field Value +04:25:23 ============================================================================ +04:25:23 [ 1] [ 4] [0800] +04:25:23 [ 7] [ 10] [0319092430] +04:25:23 [ 11] [ 6] [154308] +04:25:23 [ 70] [ 3] [301] +04:25:23 ============================================================================ +04:25:23 + + +waiting on router queue for slot.... +04:25:23 Sending to : +04:25:23 ============================================================================ +04:25:23 ============================================================================ +04:25:23 Slot Id : <248> +04:25:23 Transaction Type : RESPONSE +04:25:23 Received From : +04:25:23 ============================================================================ +04:25:23 FNo. Len. Field Value +04:25:23 ============================================================================ +04:25:23 [ 1] [ 4] [0810] +04:25:23 [ 7] [ 10] [0319092430] +04:25:23 [ 11] [ 6] [154308] +04:25:23 [ 39] [ 2] [00] +04:25:23 [ 70] [ 3] [301] +04:25:23 ============================================================================ +04:25:23 Calculate Source COMM Id = 2 +04:25:23 ============================================================================ +04:25:23 + + +waiting on router queue for slot.... +04:25:23 ============================================================================ +04:25:23 Slot Id : <244> +04:25:23 Transaction Type : REQUEST +04:25:23 Received From : +04:25:23 ============================================================================ +04:25:23 FNo. Len. Field Value +04:25:23 ============================================================================ +04:25:23 [ 1] [ 4] [0800] +04:25:23 [ 7] [ 10] [0320113710] +04:25:23 [ 11] [ 6] [043710] +04:25:23 [ 37] [ 12] [57904043710] +04:25:23 [ 70] [ 3] [301] +04:25:23 ============================================================================ +04:25:23 + + +waiting on router queue for slot.... +04:25:23 Sending to : +04:25:23 ============================================================================ +04:25:23 ============================================================================ +04:25:23 Slot Id : <244> +04:25:23 Transaction Type : RESPONSE +04:25:23 Received From : +04:25:23 ============================================================================ +04:25:23 FNo. Len. Field Value +04:25:23 ============================================================================ +04:25:23 [ 1] [ 4] [0810] +04:25:23 [ 7] [ 10] [0320113710] +04:25:23 [ 11] [ 6] [043710] +04:25:23 [ 37] [ 12] [579040437100] +04:25:23 [ 39] [ 2] [00] +04:25:23 [ 70] [ 3] [810] +04:25:23 ============================================================================ +04:25:23 Calculate Source COMM Id = 6 +04:25:23 ============================================================================ +04:25:23 + + +waiting on router queue for slot.... +04:25:33 ============================================================================ +04:25:33 Slot Id : <227> +04:25:33 Transaction Type : REQUEST +04:25:33 Received From : +04:25:33 ============================================================================ +04:25:33 FNo. Len. Field Value +04:25:33 ============================================================================ +04:25:33 [ 1] [ 4] [0800] +04:25:33 [ 7] [ 10] [0319092440] +04:25:33 [ 11] [ 6] [154309] +04:25:33 [ 70] [ 3] [301] +04:25:33 ============================================================================ +04:25:33 + + +waiting on router queue for slot.... +04:25:33 Sending to : +04:25:33 ============================================================================ +04:25:33 ============================================================================ +04:25:33 Slot Id : <227> +04:25:33 Transaction Type : RESPONSE +04:25:33 Received From : +04:25:33 ============================================================================ +04:25:33 FNo. Len. Field Value +04:25:33 ============================================================================ +04:25:33 [ 1] [ 4] [0810] +04:25:33 [ 7] [ 10] [0319092440] +04:25:33 [ 11] [ 6] [154309] +04:25:33 [ 39] [ 2] [00] +04:25:33 [ 70] [ 3] [301] +04:25:33 ============================================================================ +04:25:33 Calculate Source COMM Id = 2 +04:25:33 ============================================================================ +04:25:33 + + +waiting on router queue for slot.... +04:25:38 ============================================================================ +04:25:38 Slot Id : <250> +04:25:38 Transaction Type : REQUEST +04:25:38 Received From : +04:25:38 ============================================================================ +04:25:38 FNo. Len. Field Value +04:25:38 ============================================================================ +04:25:38 [ 1] [ 4] [0800] +04:25:38 [ 7] [ 10] [0320042524] +04:25:38 [ 11] [ 6] [019859] +04:25:38 [ 37] [ 12] [507904019859] +04:25:38 [ 70] [ 3] [ ] +04:25:38 ============================================================================ +04:25:38 + + +waiting on router queue for slot.... +04:25:38 Sending to : +04:25:38 ============================================================================ +04:25:38 ============================================================================ +04:25:38 Slot Id : <250> +04:25:38 Transaction Type : RESPONSE +04:25:38 Received From : +04:25:38 ============================================================================ +04:25:38 FNo. Len. Field Value +04:25:38 ============================================================================ +04:25:38 [ 1] [ 4] [0810] +04:25:38 [ 7] [ 10] [0320042524] +04:25:38 [ 11] [ 6] [019859] +04:25:38 [ 37] [ 12] [507904019859] +04:25:38 [ 39] [ 2] [91] +04:25:38 [ 70] [ 3] [ ] +04:25:38 ============================================================================ +04:25:38 Calculate Source COMM Id = 3 +04:25:38 ============================================================================ +04:25:38 + + +waiting on router queue for slot.... +04:25:45 ============================================================================ +04:25:45 Slot Id : <251> +04:25:45 Transaction Type : REQUEST +04:25:45 Received From : +04:25:45 ============================================================================ +04:25:45 FNo. Len. Field Value +04:25:45 ============================================================================ +04:25:45 [ 1] [ 4] [0800] +04:25:45 [ 7] [ 10] [0319092451] +04:25:45 [ 11] [ 6] [154310] +04:25:45 [ 70] [ 3] [301] +04:25:45 ============================================================================ +04:25:45 + + +waiting on router queue for slot.... +04:25:45 Sending to : +04:25:45 ============================================================================ +04:25:45 ============================================================================ +04:25:45 Slot Id : <251> +04:25:45 Transaction Type : RESPONSE +04:25:45 Received From : +04:25:45 ============================================================================ +04:25:45 FNo. Len. Field Value +04:25:45 ============================================================================ +04:25:45 [ 1] [ 4] [0810] +04:25:45 [ 7] [ 10] [0319092451] +04:25:45 [ 11] [ 6] [154310] +04:25:45 [ 39] [ 2] [00] +04:25:45 [ 70] [ 3] [301] +04:25:45 ============================================================================ +04:25:45 Calculate Source COMM Id = 2 +04:25:45 ============================================================================ +04:25:45 + + +waiting on router queue for slot.... +04:26:00 ============================================================================ +04:26:00 Slot Id : <200> +04:26:00 Transaction Type : REQUEST +04:26:00 Received From : +04:26:00 ============================================================================ +04:26:00 FNo. Len. Field Value +04:26:00 ============================================================================ +04:26:00 [ 1] [ 4] [0800] +04:26:00 [ 7] [ 10] [0319092507] +04:26:00 [ 11] [ 6] [154311] +04:26:00 [ 70] [ 3] [301] +04:26:00 ============================================================================ +04:26:00 + + +waiting on router queue for slot.... +04:26:00 Sending to : +04:26:00 ============================================================================ +04:26:00 ============================================================================ +04:26:00 Slot Id : <200> +04:26:00 Transaction Type : RESPONSE +04:26:00 Received From : +04:26:00 ============================================================================ +04:26:00 FNo. Len. Field Value +04:26:00 ============================================================================ +04:26:00 [ 1] [ 4] [0810] +04:26:00 [ 7] [ 10] [0319092507] +04:26:00 [ 11] [ 6] [154311] +04:26:00 [ 39] [ 2] [00] +04:26:00 [ 70] [ 3] [301] +04:26:00 ============================================================================ +04:26:00 Calculate Source COMM Id = 2 +04:26:00 ============================================================================ +04:26:00 + + +waiting on router queue for slot.... +04:26:10 ============================================================================ +04:26:10 Slot Id : <226> +04:26:10 Transaction Type : REQUEST +04:26:10 Received From : +04:26:10 ============================================================================ +04:26:10 FNo. Len. Field Value +04:26:10 ============================================================================ +04:26:10 [ 1] [ 4] [0800] +04:26:10 [ 2] [ 5] [02531] +04:26:10 [ 3] [ 6] [579048] +04:26:10 [ 7] [ 10] [0319212610] +04:26:10 [ 11] [ 6] [806669] +04:26:10 [ 15] [ 10] [0319212610] +04:26:10 [ 37] [ 11] [57904806669] +04:26:10 [ 70] [ 3] [001] +04:26:10 ============================================================================ +04:26:10 + + +waiting on router queue for slot.... +04:26:10 ============================================================================ +04:26:10 Slot Id : <226> +04:26:10 Transaction Type : RESPONSE +04:26:10 Received From : +04:26:10 ============================================================================ +04:26:10 FNo. Len. Field Value +04:26:10 ============================================================================ +04:26:10 [ 1] [ 4] [0810] +04:26:10 [ 7] [ 10] [0319212610] +04:26:10 [ 11] [ 6] [806669] +04:26:10 [ 15] [ 4] [0319] +04:26:10 [ 37] [ 12] [57904806669] +04:26:10 [ 39] [ 2] [00] +04:26:10 [ 70] [ 3] [001] +04:26:10 ============================================================================ +04:26:10 Sending to : +04:26:10 ============================================================================ +04:26:10 + + +waiting on router queue for slot.... +04:26:11 ============================================================================ +04:26:11 Slot Id : <255> +04:26:11 Transaction Type : REQUEST +04:26:11 Received From : +04:26:11 ============================================================================ +04:26:11 FNo. Len. Field Value +04:26:11 ============================================================================ +04:26:11 [ 1] [ 4] [0800] +04:26:11 [ 7] [ 10] [0319092518] +04:26:11 [ 11] [ 6] [154312] +04:26:11 [ 70] [ 3] [301] +04:26:11 ============================================================================ +04:26:11 + + +waiting on router queue for slot.... +04:26:11 Sending to : +04:26:11 ============================================================================ +04:26:11 ============================================================================ +04:26:11 Slot Id : <255> +04:26:11 Transaction Type : RESPONSE +04:26:11 Received From : +04:26:11 ============================================================================ +04:26:11 FNo. Len. Field Value +04:26:11 ============================================================================ +04:26:11 [ 1] [ 4] [0810] +04:26:11 [ 7] [ 10] [0319092518] +04:26:11 [ 11] [ 6] [154312] +04:26:11 [ 39] [ 2] [00] +04:26:11 [ 70] [ 3] [301] +04:26:11 ============================================================================ +04:26:11 Calculate Source COMM Id = 2 +04:26:11 ============================================================================ +04:26:11 + + +waiting on router queue for slot.... +04:26:22 ============================================================================ +04:26:22 Slot Id : <233> +04:26:22 Transaction Type : REQUEST +04:26:22 Received From : +04:26:22 ============================================================================ +04:26:22 FNo. Len. Field Value +04:26:22 ============================================================================ +04:26:22 [ 1] [ 4] [0800] +04:26:22 [ 7] [ 10] [0319212412] +04:26:22 [ 11] [ 6] [016060] +04:26:22 [ 37] [ 12] [57904016060] +04:26:22 [ 70] [ 3] [301] +04:26:22 ============================================================================ +04:26:22 + + +waiting on router queue for slot.... +04:26:22 Sending to : +04:26:22 ============================================================================ +04:26:22 ============================================================================ +04:26:22 Slot Id : <233> +04:26:22 Transaction Type : RESPONSE +04:26:22 Received From : +04:26:22 ============================================================================ +04:26:22 FNo. Len. Field Value +04:26:22 ============================================================================ +04:26:22 [ 1] [ 4] [0810] +04:26:22 [ 7] [ 10] [0319212412] +04:26:22 [ 11] [ 6] [016060] +04:26:22 [ 37] [ 12] [579040160600] +04:26:22 [ 39] [ 2] [00] +04:26:22 [ 70] [ 3] [810] +04:26:22 ============================================================================ +04:26:22 Calculate Source COMM Id = 4 +04:26:22 ============================================================================ +04:26:22 + + +waiting on router queue for slot.... +04:26:22 ============================================================================ +04:26:22 Slot Id : <238> +04:26:22 Transaction Type : REQUEST +04:26:22 Received From : +04:26:22 ============================================================================ +04:26:22 FNo. Len. Field Value +04:26:22 ============================================================================ +04:26:22 [ 1] [ 4] [0800] +04:26:22 [ 7] [ 10] [0319092529] +04:26:22 [ 11] [ 6] [154313] +04:26:22 [ 70] [ 3] [301] +04:26:22 ============================================================================ +04:26:22 + + +waiting on router queue for slot.... +04:26:22 Sending to : +04:26:22 ============================================================================ +04:26:22 ============================================================================ +04:26:22 Slot Id : <238> +04:26:22 Transaction Type : RESPONSE +04:26:22 Received From : +04:26:22 ============================================================================ +04:26:22 FNo. Len. Field Value +04:26:22 ============================================================================ +04:26:22 [ 1] [ 4] [0810] +04:26:22 [ 7] [ 10] [0319092529] +04:26:22 [ 11] [ 6] [154313] +04:26:22 [ 39] [ 2] [00] +04:26:22 [ 70] [ 3] [301] +04:26:22 ============================================================================ +04:26:22 Calculate Source COMM Id = 2 +04:26:22 ============================================================================ +04:26:22 + + +waiting on router queue for slot.... +04:26:28 ============================================================================ +04:26:28 Slot Id : <216> +04:26:28 Transaction Type : REQUEST +04:26:28 Received From : +04:26:28 ============================================================================ +04:26:28 FNo. Len. Field Value +04:26:28 ============================================================================ +04:26:28 [ 1] [ 4] [0800] +04:26:28 [ 7] [ 10] [0320113815] +04:26:28 [ 11] [ 6] [043815] +04:26:28 [ 37] [ 12] [57904043815] +04:26:28 [ 70] [ 3] [301] +04:26:28 ============================================================================ +04:26:28 + + +waiting on router queue for slot.... +04:26:28 Sending to : +04:26:28 ============================================================================ +04:26:28 ============================================================================ +04:26:28 Slot Id : <216> +04:26:28 Transaction Type : RESPONSE +04:26:28 Received From : +04:26:28 ============================================================================ +04:26:28 FNo. Len. Field Value +04:26:28 ============================================================================ +04:26:28 [ 1] [ 4] [0810] +04:26:28 [ 7] [ 10] [0320113815] +04:26:28 [ 11] [ 6] [043815] +04:26:28 [ 37] [ 12] [579040438150] +04:26:28 [ 39] [ 2] [00] +04:26:28 [ 70] [ 3] [810] +04:26:28 ============================================================================ +04:26:28 Calculate Source COMM Id = 6 +04:26:28 ============================================================================ +04:26:28 + + +waiting on router queue for slot.... +04:26:38 ============================================================================ +04:26:38 Slot Id : <234> +04:26:38 Transaction Type : REQUEST +04:26:38 Received From : +04:26:38 ============================================================================ +04:26:38 FNo. Len. Field Value +04:26:38 ============================================================================ +04:26:38 [ 1] [ 4] [0800] +04:26:38 [ 7] [ 10] [0319092544] +04:26:38 [ 11] [ 6] [154314] +04:26:38 [ 70] [ 3] [301] +04:26:38 ============================================================================ +04:26:38 + + +waiting on router queue for slot.... +04:26:38 Sending to : +04:26:38 ============================================================================ +04:26:38 ============================================================================ +04:26:38 Slot Id : <234> +04:26:38 Transaction Type : RESPONSE +04:26:38 Received From : +04:26:38 ============================================================================ +04:26:38 FNo. Len. Field Value +04:26:38 ============================================================================ +04:26:38 [ 1] [ 4] [0810] +04:26:38 [ 7] [ 10] [0319092544] +04:26:38 [ 11] [ 6] [154314] +04:26:38 [ 39] [ 2] [00] +04:26:38 [ 70] [ 3] [301] +04:26:38 ============================================================================ +04:26:38 Calculate Source COMM Id = 2 +04:26:38 ============================================================================ +04:26:38 + + +waiting on router queue for slot.... +04:26:51 ============================================================================ +04:26:51 Slot Id : <237> +04:26:51 Transaction Type : REQUEST +04:26:51 Received From : +04:26:51 ============================================================================ +04:26:51 FNo. Len. Field Value +04:26:51 ============================================================================ +04:26:51 [ 1] [ 4] [0800] +04:26:51 [ 7] [ 10] [0319092557] +04:26:51 [ 11] [ 6] [154315] +04:26:51 [ 70] [ 3] [301] +04:26:51 ============================================================================ +04:26:51 + + +waiting on router queue for slot.... +04:26:51 Sending to : +04:26:51 ============================================================================ +04:26:51 ============================================================================ +04:26:51 Slot Id : <237> +04:26:51 Transaction Type : RESPONSE +04:26:51 Received From : +04:26:51 ============================================================================ +04:26:51 FNo. Len. Field Value +04:26:51 ============================================================================ +04:26:51 [ 1] [ 4] [0810] +04:26:51 [ 7] [ 10] [0319092557] +04:26:51 [ 11] [ 6] [154315] +04:26:51 [ 39] [ 2] [00] +04:26:51 [ 70] [ 3] [301] +04:26:51 ============================================================================ +04:26:51 Calculate Source COMM Id = 2 +04:26:51 ============================================================================ +04:26:51 + + +waiting on router queue for slot.... +04:27:02 ============================================================================ +04:27:02 Slot Id : <253> +04:27:02 Transaction Type : REQUEST +04:27:02 Received From : +04:27:02 ============================================================================ +04:27:02 FNo. Len. Field Value +04:27:02 ============================================================================ +04:27:02 [ 1] [ 4] [0800] +04:27:02 [ 7] [ 10] [0319092608] +04:27:02 [ 11] [ 6] [154316] +04:27:02 [ 70] [ 3] [301] +04:27:02 ============================================================================ +04:27:02 + + +waiting on router queue for slot.... +04:27:02 Sending to : +04:27:02 ============================================================================ +04:27:02 ============================================================================ +04:27:02 Slot Id : <253> +04:27:02 Transaction Type : RESPONSE +04:27:02 Received From : +04:27:02 ============================================================================ +04:27:02 FNo. Len. Field Value +04:27:02 ============================================================================ +04:27:02 [ 1] [ 4] [0810] +04:27:02 [ 7] [ 10] [0319092608] +04:27:02 [ 11] [ 6] [154316] +04:27:02 [ 39] [ 2] [00] +04:27:02 [ 70] [ 3] [301] +04:27:02 ============================================================================ +04:27:02 Calculate Source COMM Id = 2 +04:27:02 ============================================================================ +04:27:02 + + +waiting on router queue for slot.... +04:27:12 ============================================================================ +04:27:12 Slot Id : <220> +04:27:12 Transaction Type : REQUEST +04:27:12 Received From : +04:27:12 ============================================================================ +04:27:12 FNo. Len. Field Value +04:27:12 ============================================================================ +04:27:12 [ 1] [ 4] [0800] +04:27:12 [ 2] [ 5] [02531] +04:27:12 [ 3] [ 6] [579048] +04:27:12 [ 7] [ 10] [0319212712] +04:27:12 [ 11] [ 6] [806670] +04:27:12 [ 15] [ 10] [0319212712] +04:27:12 [ 37] [ 11] [57904806670] +04:27:12 [ 70] [ 3] [001] +04:27:12 ============================================================================ +04:27:12 + + +waiting on router queue for slot.... +04:27:12 ============================================================================ +04:27:12 Slot Id : <220> +04:27:12 Transaction Type : RESPONSE +04:27:12 Received From : +04:27:12 ============================================================================ +04:27:12 FNo. Len. Field Value +04:27:12 ============================================================================ +04:27:12 [ 1] [ 4] [0810] +04:27:12 [ 7] [ 10] [0319212712] +04:27:12 [ 11] [ 6] [806670] +04:27:12 [ 15] [ 4] [0319] +04:27:12 [ 37] [ 12] [57904806670] +04:27:12 [ 39] [ 2] [00] +04:27:12 [ 70] [ 3] [001] +04:27:12 ============================================================================ +04:27:12 Sending to : +04:27:12 ============================================================================ +04:27:12 + + +waiting on router queue for slot.... +04:27:12 ============================================================================ +04:27:12 Slot Id : <210> +04:27:12 Transaction Type : REQUEST +04:27:12 Received From : +04:27:12 ============================================================================ +04:27:12 FNo. Len. Field Value +04:27:12 ============================================================================ +04:27:12 [ 1] [ 4] [0800] +04:27:12 [ 7] [ 10] [0319092618] +04:27:12 [ 11] [ 6] [154317] +04:27:12 [ 70] [ 3] [301] +04:27:12 ============================================================================ +04:27:12 + + +waiting on router queue for slot.... +04:27:12 Sending to : +04:27:12 ============================================================================ +04:27:12 ============================================================================ +04:27:12 Slot Id : <210> +04:27:12 Transaction Type : RESPONSE +04:27:12 Received From : +04:27:12 ============================================================================ +04:27:12 FNo. Len. Field Value +04:27:12 ============================================================================ +04:27:12 [ 1] [ 4] [0810] +04:27:12 [ 7] [ 10] [0319092618] +04:27:12 [ 11] [ 6] [154317] +04:27:12 [ 39] [ 2] [00] +04:27:12 [ 70] [ 3] [301] +04:27:12 ============================================================================ +04:27:12 Calculate Source COMM Id = 2 +04:27:12 ============================================================================ +04:27:12 + + +waiting on router queue for slot.... +04:27:23 ============================================================================ +04:27:23 Slot Id : <249> +04:27:23 Transaction Type : REQUEST +04:27:23 Received From : +04:27:23 ============================================================================ +04:27:23 FNo. Len. Field Value +04:27:23 ============================================================================ +04:27:23 [ 1] [ 4] [0800] +04:27:23 [ 7] [ 10] [0319092629] +04:27:23 [ 11] [ 6] [154318] +04:27:23 [ 70] [ 3] [301] +04:27:23 ============================================================================ +04:27:23 + + +waiting on router queue for slot.... +04:27:23 Sending to : +04:27:23 ============================================================================ +04:27:23 ============================================================================ +04:27:23 Slot Id : <249> +04:27:23 Transaction Type : RESPONSE +04:27:23 Received From : +04:27:23 ============================================================================ +04:27:23 FNo. Len. Field Value +04:27:23 ============================================================================ +04:27:23 [ 1] [ 4] [0810] +04:27:23 [ 7] [ 10] [0319092629] +04:27:23 [ 11] [ 6] [154318] +04:27:23 [ 39] [ 2] [00] +04:27:23 [ 70] [ 3] [301] +04:27:23 ============================================================================ +04:27:23 Calculate Source COMM Id = 2 +04:27:23 ============================================================================ +04:27:23 + + +waiting on router queue for slot.... +04:27:33 ============================================================================ +04:27:33 Slot Id : <260> +04:27:33 Transaction Type : REQUEST +04:27:33 Received From : +04:27:33 ============================================================================ +04:27:33 FNo. Len. Field Value +04:27:33 ============================================================================ +04:27:33 [ 1] [ 4] [0800] +04:27:33 [ 7] [ 10] [0320113920] +04:27:33 [ 11] [ 6] [043920] +04:27:33 [ 37] [ 12] [57904043920] +04:27:33 [ 70] [ 3] [301] +04:27:33 ============================================================================ +04:27:33 + + +waiting on router queue for slot.... +04:27:33 Sending to : +04:27:33 ============================================================================ +04:27:33 ============================================================================ +04:27:33 Slot Id : <260> +04:27:33 Transaction Type : RESPONSE +04:27:33 Received From : +04:27:33 ============================================================================ +04:27:33 FNo. Len. Field Value +04:27:33 ============================================================================ +04:27:33 [ 1] [ 4] [0810] +04:27:33 [ 7] [ 10] [0320113920] +04:27:33 [ 11] [ 6] [043920] +04:27:33 [ 37] [ 12] [579040439200] +04:27:33 [ 39] [ 2] [00] +04:27:33 [ 70] [ 3] [810] +04:27:33 ============================================================================ +04:27:33 Calculate Source COMM Id = 6 +04:27:33 ============================================================================ +04:27:33 + + +waiting on router queue for slot.... +04:27:38 ============================================================================ +04:27:38 Slot Id : <199> +04:27:38 Transaction Type : REQUEST +04:27:38 Received From : +04:27:38 ============================================================================ +04:27:38 FNo. Len. Field Value +04:27:38 ============================================================================ +04:27:38 [ 1] [ 4] [0800] +04:27:38 [ 7] [ 10] [0319092645] +04:27:38 [ 11] [ 6] [154319] +04:27:38 [ 70] [ 3] [301] +04:27:38 ============================================================================ +04:27:38 + + +waiting on router queue for slot.... +04:27:38 Sending to : +04:27:38 ============================================================================ +04:27:38 ============================================================================ +04:27:38 Slot Id : <199> +04:27:38 Transaction Type : RESPONSE +04:27:38 Received From : +04:27:38 ============================================================================ +04:27:38 FNo. Len. Field Value +04:27:38 ============================================================================ +04:27:38 [ 1] [ 4] [0810] +04:27:38 [ 7] [ 10] [0319092645] +04:27:38 [ 11] [ 6] [154319] +04:27:38 [ 39] [ 2] [00] +04:27:38 [ 70] [ 3] [301] +04:27:38 ============================================================================ +04:27:38 Calculate Source COMM Id = 2 +04:27:38 ============================================================================ +04:27:38 + + +waiting on router queue for slot.... +04:27:49 ============================================================================ +04:27:49 Slot Id : <259> +04:27:49 Transaction Type : REQUEST +04:27:49 Received From : +04:27:49 ============================================================================ +04:27:49 FNo. Len. Field Value +04:27:49 ============================================================================ +04:27:49 [ 1] [ 4] [0800] +04:27:49 [ 7] [ 10] [0319092656] +04:27:49 [ 11] [ 6] [154320] +04:27:49 [ 70] [ 3] [301] +04:27:49 ============================================================================ +04:27:49 + + +waiting on router queue for slot.... +04:27:49 Sending to : +04:27:49 ============================================================================ +04:27:49 ============================================================================ +04:27:49 Slot Id : <259> +04:27:49 Transaction Type : RESPONSE +04:27:49 Received From : +04:27:49 ============================================================================ +04:27:49 FNo. Len. Field Value +04:27:49 ============================================================================ +04:27:49 [ 1] [ 4] [0810] +04:27:49 [ 7] [ 10] [0319092656] +04:27:49 [ 11] [ 6] [154320] +04:27:49 [ 39] [ 2] [00] +04:27:49 [ 70] [ 3] [301] +04:27:49 ============================================================================ +04:27:49 Calculate Source COMM Id = 2 +04:27:49 ============================================================================ +04:27:49 + + +waiting on router queue for slot.... +04:28:05 ============================================================================ +04:28:05 Slot Id : <263> +04:28:05 Transaction Type : REQUEST +04:28:05 Received From : +04:28:05 ============================================================================ +04:28:05 FNo. Len. Field Value +04:28:05 ============================================================================ +04:28:05 [ 1] [ 4] [0800] +04:28:05 [ 7] [ 10] [0319092711] +04:28:05 [ 11] [ 6] [154321] +04:28:05 [ 70] [ 3] [301] +04:28:05 ============================================================================ +04:28:05 + + +waiting on router queue for slot.... +04:28:05 Sending to : +04:28:05 ============================================================================ +04:28:05 ============================================================================ +04:28:05 Slot Id : <263> +04:28:05 Transaction Type : RESPONSE +04:28:05 Received From : +04:28:05 ============================================================================ +04:28:05 FNo. Len. Field Value +04:28:05 ============================================================================ +04:28:05 [ 1] [ 4] [0810] +04:28:05 [ 7] [ 10] [0319092711] +04:28:05 [ 11] [ 6] [154321] +04:28:05 [ 39] [ 2] [00] +04:28:05 [ 70] [ 3] [301] +04:28:05 ============================================================================ +04:28:05 Calculate Source COMM Id = 2 +04:28:05 ============================================================================ +04:28:05 + + +waiting on router queue for slot.... +04:28:14 ============================================================================ +04:28:14 Slot Id : <261> +04:28:14 Transaction Type : REQUEST +04:28:14 Received From : +04:28:14 ============================================================================ +04:28:14 FNo. Len. Field Value +04:28:14 ============================================================================ +04:28:14 [ 1] [ 4] [0800] +04:28:14 [ 2] [ 5] [02531] +04:28:14 [ 3] [ 6] [579048] +04:28:14 [ 7] [ 10] [0319212814] +04:28:14 [ 11] [ 6] [806671] +04:28:14 [ 15] [ 10] [0319212814] +04:28:14 [ 37] [ 11] [57904806671] +04:28:14 [ 70] [ 3] [001] +04:28:14 ============================================================================ +04:28:14 + + +waiting on router queue for slot.... +04:28:14 ============================================================================ +04:28:14 Slot Id : <261> +04:28:14 Transaction Type : RESPONSE +04:28:14 Received From : +04:28:14 ============================================================================ +04:28:14 FNo. Len. Field Value +04:28:14 ============================================================================ +04:28:14 [ 1] [ 4] [0810] +04:28:14 [ 7] [ 10] [0319212814] +04:28:14 [ 11] [ 6] [806671] +04:28:14 [ 15] [ 4] [0319] +04:28:14 [ 37] [ 12] [57904806671] +04:28:14 [ 39] [ 2] [00] +04:28:14 [ 70] [ 3] [001] +04:28:14 ============================================================================ +04:28:14 Sending to : +04:28:14 ============================================================================ +04:28:14 + + +waiting on router queue for slot.... +04:28:15 ============================================================================ +04:28:15 Slot Id : <270> +04:28:15 Transaction Type : REQUEST +04:28:15 Received From : +04:28:15 ============================================================================ +04:28:15 FNo. Len. Field Value +04:28:15 ============================================================================ +04:28:15 [ 1] [ 4] [0800] +04:28:15 [ 7] [ 10] [0319092722] +04:28:15 [ 11] [ 6] [154322] +04:28:15 [ 70] [ 3] [301] +04:28:15 ============================================================================ +04:28:15 + + +waiting on router queue for slot.... +04:28:15 Sending to : +04:28:15 ============================================================================ +04:28:15 ============================================================================ +04:28:15 Slot Id : <270> +04:28:15 Transaction Type : RESPONSE +04:28:15 Received From : +04:28:15 ============================================================================ +04:28:15 FNo. Len. Field Value +04:28:15 ============================================================================ +04:28:15 [ 1] [ 4] [0810] +04:28:15 [ 7] [ 10] [0319092722] +04:28:15 [ 11] [ 6] [154322] +04:28:15 [ 39] [ 2] [00] +04:28:15 [ 70] [ 3] [301] +04:28:15 ============================================================================ +04:28:15 Calculate Source COMM Id = 2 +04:28:15 ============================================================================ +04:28:15 + + +waiting on router queue for slot.... +04:28:26 ============================================================================ +04:28:26 Slot Id : <269> +04:28:26 Transaction Type : REQUEST +04:28:26 Received From : +04:28:26 ============================================================================ +04:28:26 FNo. Len. Field Value +04:28:26 ============================================================================ +04:28:26 [ 1] [ 4] [0800] +04:28:26 [ 7] [ 10] [0319092732] +04:28:26 [ 11] [ 6] [154323] +04:28:26 [ 70] [ 3] [301] +04:28:26 ============================================================================ +04:28:26 + + +waiting on router queue for slot.... +04:28:26 Sending to : +04:28:26 ============================================================================ +04:28:26 ============================================================================ +04:28:26 Slot Id : <269> +04:28:26 Transaction Type : RESPONSE +04:28:26 Received From : +04:28:26 ============================================================================ +04:28:26 FNo. Len. Field Value +04:28:26 ============================================================================ +04:28:26 [ 1] [ 4] [0810] +04:28:26 [ 7] [ 10] [0319092732] +04:28:26 [ 11] [ 6] [154323] +04:28:26 [ 39] [ 2] [00] +04:28:26 [ 70] [ 3] [301] +04:28:26 ============================================================================ +04:28:26 Calculate Source COMM Id = 2 +04:28:26 ============================================================================ +04:28:26 + + +waiting on router queue for slot.... +04:28:36 ============================================================================ +04:28:36 Slot Id : <256> +04:28:36 Transaction Type : REQUEST +04:28:36 Received From : +04:28:36 ============================================================================ +04:28:36 FNo. Len. Field Value +04:28:36 ============================================================================ +04:28:36 [ 1] [ 4] [0800] +04:28:36 [ 7] [ 10] [0319092743] +04:28:36 [ 11] [ 6] [154324] +04:28:36 [ 70] [ 3] [301] +04:28:36 ============================================================================ +04:28:36 + + +waiting on router queue for slot.... +04:28:36 Sending to : +04:28:36 ============================================================================ +04:28:36 ============================================================================ +04:28:36 Slot Id : <256> +04:28:36 Transaction Type : RESPONSE +04:28:36 Received From : +04:28:36 ============================================================================ +04:28:36 FNo. Len. Field Value +04:28:36 ============================================================================ +04:28:36 [ 1] [ 4] [0810] +04:28:36 [ 7] [ 10] [0319092743] +04:28:36 [ 11] [ 6] [154324] +04:28:36 [ 39] [ 2] [00] +04:28:36 [ 70] [ 3] [301] +04:28:36 ============================================================================ +04:28:36 Calculate Source COMM Id = 2 +04:28:36 ============================================================================ +04:28:36 + + +waiting on router queue for slot.... +04:28:38 ============================================================================ +04:28:38 Slot Id : <197> +04:28:38 Transaction Type : REQUEST +04:28:38 Received From : +04:28:38 ============================================================================ +04:28:38 FNo. Len. Field Value +04:28:38 ============================================================================ +04:28:38 [ 1] [ 4] [0800] +04:28:38 [ 7] [ 10] [0320114025] +04:28:38 [ 11] [ 6] [044025] +04:28:38 [ 37] [ 12] [57904044025] +04:28:38 [ 70] [ 3] [301] +04:28:38 ============================================================================ +04:28:38 + + +waiting on router queue for slot.... +04:28:38 Sending to : +04:28:38 ============================================================================ +04:28:38 ============================================================================ +04:28:38 Slot Id : <197> +04:28:38 Transaction Type : RESPONSE +04:28:38 Received From : +04:28:38 ============================================================================ +04:28:38 FNo. Len. Field Value +04:28:38 ============================================================================ +04:28:38 [ 1] [ 4] [0810] +04:28:38 [ 7] [ 10] [0320114025] +04:28:38 [ 11] [ 6] [044025] +04:28:38 [ 37] [ 12] [579040440250] +04:28:38 [ 39] [ 2] [00] +04:28:38 [ 70] [ 3] [810] +04:28:38 ============================================================================ +04:28:38 Calculate Source COMM Id = 6 +04:28:38 ============================================================================ +04:28:38 + + +waiting on router queue for slot.... +04:28:49 ============================================================================ +04:28:49 Slot Id : <240> +04:28:49 Transaction Type : REQUEST +04:28:49 Received From : +04:28:49 ============================================================================ +04:28:49 FNo. Len. Field Value +04:28:49 ============================================================================ +04:28:49 [ 1] [ 4] [0800] +04:28:49 [ 7] [ 10] [0319092754] +04:28:49 [ 11] [ 6] [154325] +04:28:49 [ 70] [ 3] [301] +04:28:49 ============================================================================ +04:28:49 + + +waiting on router queue for slot.... +04:28:49 Sending to : +04:28:49 ============================================================================ +04:28:49 ============================================================================ +04:28:49 Slot Id : <240> +04:28:49 Transaction Type : RESPONSE +04:28:49 Received From : +04:28:49 ============================================================================ +04:28:49 FNo. Len. Field Value +04:28:49 ============================================================================ +04:28:49 [ 1] [ 4] [0810] +04:28:49 [ 7] [ 10] [0319092754] +04:28:49 [ 11] [ 6] [154325] +04:28:49 [ 39] [ 2] [00] +04:28:49 [ 70] [ 3] [301] +04:28:49 ============================================================================ +04:28:49 Calculate Source COMM Id = 2 +04:28:49 ============================================================================ +04:28:49 + + +waiting on router queue for slot.... +04:29:04 ============================================================================ +04:29:04 Slot Id : <228> +04:29:04 Transaction Type : REQUEST +04:29:04 Received From : +04:29:04 ============================================================================ +04:29:04 FNo. Len. Field Value +04:29:04 ============================================================================ +04:29:04 [ 1] [ 4] [0800] +04:29:04 [ 7] [ 10] [0319092810] +04:29:04 [ 11] [ 6] [154326] +04:29:04 [ 70] [ 3] [301] +04:29:04 ============================================================================ +04:29:04 + + +waiting on router queue for slot.... +04:29:04 Sending to : +04:29:04 ============================================================================ +04:29:04 ============================================================================ +04:29:04 Slot Id : <228> +04:29:04 Transaction Type : RESPONSE +04:29:04 Received From : +04:29:04 ============================================================================ +04:29:04 FNo. Len. Field Value +04:29:04 ============================================================================ +04:29:04 [ 1] [ 4] [0810] +04:29:04 [ 7] [ 10] [0319092810] +04:29:04 [ 11] [ 6] [154326] +04:29:04 [ 39] [ 2] [00] +04:29:04 [ 70] [ 3] [301] +04:29:04 ============================================================================ +04:29:04 Calculate Source COMM Id = 2 +04:29:04 ============================================================================ +04:29:04 + + +waiting on router queue for slot.... +04:29:16 ============================================================================ +04:29:16 Slot Id : <265> +04:29:16 Transaction Type : REQUEST +04:29:16 Received From : +04:29:16 ============================================================================ +04:29:16 FNo. Len. Field Value +04:29:16 ============================================================================ +04:29:16 [ 1] [ 4] [0800] +04:29:16 [ 2] [ 5] [02531] +04:29:16 [ 3] [ 6] [579048] +04:29:16 [ 7] [ 10] [0319212916] +04:29:16 [ 11] [ 6] [806672] +04:29:16 [ 15] [ 10] [0319212916] +04:29:16 [ 37] [ 11] [57904806672] +04:29:16 [ 70] [ 3] [001] +04:29:16 ============================================================================ +04:29:16 + + +waiting on router queue for slot.... +04:29:16 ============================================================================ +04:29:16 Slot Id : <265> +04:29:16 Transaction Type : RESPONSE +04:29:16 Received From : +04:29:16 ============================================================================ +04:29:16 FNo. Len. Field Value +04:29:16 ============================================================================ +04:29:16 [ 1] [ 4] [0810] +04:29:16 [ 7] [ 10] [0319212916] +04:29:16 [ 11] [ 6] [806672] +04:29:16 [ 15] [ 4] [0319] +04:29:16 [ 37] [ 12] [57904806672] +04:29:16 [ 39] [ 2] [00] +04:29:16 [ 70] [ 3] [001] +04:29:16 ============================================================================ +04:29:16 Sending to : +04:29:16 ============================================================================ +04:29:16 + + +waiting on router queue for slot.... +04:29:20 ============================================================================ +04:29:20 Slot Id : <275> +04:29:20 Transaction Type : REQUEST +04:29:20 Received From : +04:29:20 ============================================================================ +04:29:20 FNo. Len. Field Value +04:29:20 ============================================================================ +04:29:20 [ 1] [ 4] [0800] +04:29:20 [ 7] [ 10] [0319092826] +04:29:20 [ 11] [ 6] [154327] +04:29:20 [ 70] [ 3] [301] +04:29:20 ============================================================================ +04:29:20 + + +waiting on router queue for slot.... +04:29:20 Sending to : +04:29:20 ============================================================================ +04:29:20 ============================================================================ +04:29:20 Slot Id : <275> +04:29:20 Transaction Type : RESPONSE +04:29:20 Received From : +04:29:20 ============================================================================ +04:29:20 FNo. Len. Field Value +04:29:20 ============================================================================ +04:29:20 [ 1] [ 4] [0810] +04:29:20 [ 7] [ 10] [0319092826] +04:29:20 [ 11] [ 6] [154327] +04:29:20 [ 39] [ 2] [00] +04:29:20 [ 70] [ 3] [301] +04:29:20 ============================================================================ +04:29:20 Calculate Source COMM Id = 2 +04:29:20 ============================================================================ +04:29:20 + + +waiting on router queue for slot.... +04:29:30 ============================================================================ +04:29:30 Slot Id : <247> +04:29:30 Transaction Type : REQUEST +04:29:30 Received From : +04:29:30 ============================================================================ +04:29:30 FNo. Len. Field Value +04:29:30 ============================================================================ +04:29:30 [ 1] [ 4] [0800] +04:29:30 [ 7] [ 10] [0319092837] +04:29:30 [ 11] [ 6] [154328] +04:29:30 [ 70] [ 3] [301] +04:29:30 ============================================================================ +04:29:30 + + +waiting on router queue for slot.... +04:29:30 Sending to : +04:29:30 ============================================================================ +04:29:30 ============================================================================ +04:29:30 Slot Id : <247> +04:29:30 Transaction Type : RESPONSE +04:29:30 Received From : +04:29:30 ============================================================================ +04:29:30 FNo. Len. Field Value +04:29:30 ============================================================================ +04:29:30 [ 1] [ 4] [0810] +04:29:30 [ 7] [ 10] [0319092837] +04:29:30 [ 11] [ 6] [154328] +04:29:30 [ 39] [ 2] [00] +04:29:30 [ 70] [ 3] [301] +04:29:30 ============================================================================ +04:29:30 Calculate Source COMM Id = 2 +04:29:30 ============================================================================ +04:29:30 + + +waiting on router queue for slot.... +04:29:41 ============================================================================ +04:29:41 Slot Id : <218> +04:29:41 Transaction Type : REQUEST +04:29:41 Received From : +04:29:41 ============================================================================ +04:29:41 FNo. Len. Field Value +04:29:41 ============================================================================ +04:29:41 [ 1] [ 4] [0800] +04:29:41 [ 7] [ 10] [0319092847] +04:29:41 [ 11] [ 6] [154329] +04:29:41 [ 70] [ 3] [301] +04:29:41 ============================================================================ +04:29:41 + + +waiting on router queue for slot.... +04:29:41 Sending to : +04:29:41 ============================================================================ +04:29:41 ============================================================================ +04:29:41 Slot Id : <218> +04:29:41 Transaction Type : RESPONSE +04:29:41 Received From : +04:29:41 ============================================================================ +04:29:41 FNo. Len. Field Value +04:29:41 ============================================================================ +04:29:41 [ 1] [ 4] [0810] +04:29:41 [ 7] [ 10] [0319092847] +04:29:41 [ 11] [ 6] [154329] +04:29:41 [ 39] [ 2] [00] +04:29:41 [ 70] [ 3] [301] +04:29:41 ============================================================================ +04:29:41 Calculate Source COMM Id = 2 +04:29:41 ============================================================================ +04:29:41 + + +waiting on router queue for slot.... +04:29:43 ============================================================================ +04:29:43 Slot Id : <274> +04:29:43 Transaction Type : REQUEST +04:29:43 Received From : +04:29:43 ============================================================================ +04:29:43 FNo. Len. Field Value +04:29:43 ============================================================================ +04:29:43 [ 1] [ 4] [0800] +04:29:43 [ 7] [ 10] [0320114130] +04:29:43 [ 11] [ 6] [044130] +04:29:43 [ 37] [ 12] [57904044130] +04:29:43 [ 70] [ 3] [301] +04:29:43 ============================================================================ +04:29:43 + + +waiting on router queue for slot.... +04:29:43 Sending to : +04:29:43 ============================================================================ +04:29:43 ============================================================================ +04:29:43 Slot Id : <274> +04:29:43 Transaction Type : RESPONSE +04:29:43 Received From : +04:29:43 ============================================================================ +04:29:43 FNo. Len. Field Value +04:29:43 ============================================================================ +04:29:43 [ 1] [ 4] [0810] +04:29:43 [ 7] [ 10] [0320114130] +04:29:43 [ 11] [ 6] [044130] +04:29:43 [ 37] [ 12] [579040441300] +04:29:43 [ 39] [ 2] [00] +04:29:43 [ 70] [ 3] [810] +04:29:43 ============================================================================ +04:29:43 Calculate Source COMM Id = 6 +04:29:43 ============================================================================ +04:29:43 + + +waiting on router queue for slot.... +04:29:52 ============================================================================ +04:29:52 Slot Id : <264> +04:29:52 Transaction Type : REQUEST +04:29:52 Received From : +04:29:52 ============================================================================ +04:29:52 FNo. Len. Field Value +04:29:52 ============================================================================ +04:29:52 [ 1] [ 4] [0800] +04:29:52 [ 7] [ 10] [0319092858] +04:29:52 [ 11] [ 6] [154330] +04:29:52 [ 70] [ 3] [301] +04:29:52 ============================================================================ +04:29:52 + + +waiting on router queue for slot.... +04:29:52 Sending to : +04:29:52 ============================================================================ +04:29:52 ============================================================================ +04:29:52 Slot Id : <264> +04:29:52 Transaction Type : RESPONSE +04:29:52 Received From : +04:29:52 ============================================================================ +04:29:52 FNo. Len. Field Value +04:29:52 ============================================================================ +04:29:52 [ 1] [ 4] [0810] +04:29:52 [ 7] [ 10] [0319092858] +04:29:52 [ 11] [ 6] [154330] +04:29:52 [ 39] [ 2] [00] +04:29:52 [ 70] [ 3] [301] +04:29:52 ============================================================================ +04:29:52 Calculate Source COMM Id = 2 +04:29:52 ============================================================================ +04:29:52 + + +waiting on router queue for slot.... +04:29:56 ============================================================================ +04:29:56 Slot Id : <231> +04:29:56 Transaction Type : REQUEST +04:29:56 Received From : +04:29:56 ============================================================================ +04:29:56 FNo. Len. Field Value +04:29:56 ============================================================================ +04:29:56 [ 1] [ 4] [0800] +04:29:56 [ 7] [ 10] [0319213742] +04:29:56 [ 11] [ 6] [029367] +04:29:56 [ 37] [ 12] [57904029367] +04:29:56 [ 70] [ 3] [301] +04:29:56 ============================================================================ +04:29:56 + + +waiting on router queue for slot.... +04:29:56 Sending to : +04:29:56 ============================================================================ +04:29:56 ============================================================================ +04:29:56 Slot Id : <231> +04:29:56 Transaction Type : RESPONSE +04:29:56 Received From : +04:29:56 ============================================================================ +04:29:56 FNo. Len. Field Value +04:29:56 ============================================================================ +04:29:56 [ 1] [ 4] [0810] +04:29:56 [ 7] [ 10] [0319213742] +04:29:56 [ 11] [ 6] [029367] +04:29:56 [ 37] [ 12] [579040293670] +04:29:56 [ 39] [ 2] [00] +04:29:56 [ 70] [ 3] [810] +04:29:56 ============================================================================ +04:29:56 Calculate Source COMM Id = 1 +04:29:56 ============================================================================ +04:29:56 + + +waiting on router queue for slot.... +04:30:07 ============================================================================ +04:30:07 Slot Id : <279> +04:30:07 Transaction Type : REQUEST +04:30:07 Received From : +04:30:07 ============================================================================ +04:30:07 FNo. Len. Field Value +04:30:07 ============================================================================ +04:30:07 [ 1] [ 4] [0800] +04:30:07 [ 7] [ 10] [0319092913] +04:30:07 [ 11] [ 6] [154331] +04:30:07 [ 70] [ 3] [301] +04:30:07 ============================================================================ +04:30:07 + + +waiting on router queue for slot.... +04:30:07 Sending to : +04:30:07 ============================================================================ +04:30:07 ============================================================================ +04:30:07 Slot Id : <279> +04:30:07 Transaction Type : RESPONSE +04:30:07 Received From : +04:30:07 ============================================================================ +04:30:07 FNo. Len. Field Value +04:30:07 ============================================================================ +04:30:07 [ 1] [ 4] [0810] +04:30:07 [ 7] [ 10] [0319092913] +04:30:07 [ 11] [ 6] [154331] +04:30:07 [ 39] [ 2] [00] +04:30:07 [ 70] [ 3] [301] +04:30:07 ============================================================================ +04:30:07 Calculate Source COMM Id = 2 +04:30:07 ============================================================================ +04:30:07 + + +waiting on router queue for slot.... +04:30:18 ============================================================================ +04:30:18 Slot Id : <254> +04:30:18 Transaction Type : REQUEST +04:30:18 Received From : +04:30:18 ============================================================================ +04:30:18 FNo. Len. Field Value +04:30:18 ============================================================================ +04:30:18 [ 1] [ 4] [0800] +04:30:18 [ 2] [ 5] [02531] +04:30:18 [ 3] [ 6] [579048] +04:30:18 [ 7] [ 10] [0319213018] +04:30:18 [ 11] [ 6] [806673] +04:30:18 [ 15] [ 10] [0319213018] +04:30:18 [ 37] [ 11] [57904806673] +04:30:18 [ 70] [ 3] [001] +04:30:18 ============================================================================ +04:30:18 + + +waiting on router queue for slot.... +04:30:18 ============================================================================ +04:30:18 Slot Id : <254> +04:30:18 Transaction Type : RESPONSE +04:30:18 Received From : +04:30:18 ============================================================================ +04:30:18 FNo. Len. Field Value +04:30:18 ============================================================================ +04:30:18 [ 1] [ 4] [0810] +04:30:18 [ 7] [ 10] [0319213018] +04:30:18 [ 11] [ 6] [806673] +04:30:18 [ 15] [ 4] [0319] +04:30:18 [ 37] [ 12] [57904806673] +04:30:18 [ 39] [ 2] [00] +04:30:18 [ 70] [ 3] [001] +04:30:18 ============================================================================ +04:30:18 Sending to : +04:30:18 ============================================================================ +04:30:18 + + +waiting on router queue for slot.... +04:30:18 ============================================================================ +04:30:18 Slot Id : <239> +04:30:18 Transaction Type : REQUEST +04:30:18 Received From : +04:30:18 ============================================================================ +04:30:18 FNo. Len. Field Value +04:30:18 ============================================================================ +04:30:18 [ 1] [ 4] [0800] +04:30:18 [ 7] [ 10] [0319092925] +04:30:18 [ 11] [ 6] [154332] +04:30:18 [ 70] [ 3] [301] +04:30:18 ============================================================================ +04:30:18 + + +waiting on router queue for slot.... +04:30:18 Sending to : +04:30:18 ============================================================================ +04:30:18 ============================================================================ +04:30:18 Slot Id : <239> +04:30:18 Transaction Type : RESPONSE +04:30:18 Received From : +04:30:18 ============================================================================ +04:30:18 FNo. Len. Field Value +04:30:18 ============================================================================ +04:30:18 [ 1] [ 4] [0810] +04:30:18 [ 7] [ 10] [0319092925] +04:30:18 [ 11] [ 6] [154332] +04:30:18 [ 39] [ 2] [00] +04:30:18 [ 70] [ 3] [301] +04:30:18 ============================================================================ +04:30:18 Calculate Source COMM Id = 2 +04:30:18 ============================================================================ +04:30:18 + + +waiting on router queue for slot.... +04:30:30 ============================================================================ +04:30:30 Slot Id : <273> +04:30:30 Transaction Type : REQUEST +04:30:30 Received From : +04:30:30 ============================================================================ +04:30:30 FNo. Len. Field Value +04:30:30 ============================================================================ +04:30:30 [ 1] [ 4] [0800] +04:30:30 [ 7] [ 10] [0319092936] +04:30:30 [ 11] [ 6] [154333] +04:30:30 [ 70] [ 3] [301] +04:30:30 ============================================================================ +04:30:30 + + +waiting on router queue for slot.... +04:30:30 Sending to : +04:30:30 ============================================================================ +04:30:30 ============================================================================ +04:30:30 Slot Id : <273> +04:30:30 Transaction Type : RESPONSE +04:30:30 Received From : +04:30:30 ============================================================================ +04:30:30 FNo. Len. Field Value +04:30:30 ============================================================================ +04:30:30 [ 1] [ 4] [0810] +04:30:30 [ 7] [ 10] [0319092936] +04:30:30 [ 11] [ 6] [154333] +04:30:30 [ 39] [ 2] [00] +04:30:30 [ 70] [ 3] [301] +04:30:30 ============================================================================ +04:30:30 Calculate Source COMM Id = 2 +04:30:30 ============================================================================ +04:30:30 + + +waiting on router queue for slot.... +04:30:45 ============================================================================ +04:30:45 Slot Id : <266> +04:30:45 Transaction Type : REQUEST +04:30:45 Received From : +04:30:45 ============================================================================ +04:30:45 FNo. Len. Field Value +04:30:45 ============================================================================ +04:30:45 [ 1] [ 4] [0800] +04:30:45 [ 7] [ 10] [0319092951] +04:30:45 [ 11] [ 6] [154334] +04:30:45 [ 70] [ 3] [301] +04:30:45 ============================================================================ +04:30:45 + + +waiting on router queue for slot.... +04:30:45 Sending to : +04:30:45 ============================================================================ +04:30:45 ============================================================================ +04:30:45 Slot Id : <266> +04:30:45 Transaction Type : RESPONSE +04:30:45 Received From : +04:30:45 ============================================================================ +04:30:45 FNo. Len. Field Value +04:30:45 ============================================================================ +04:30:45 [ 1] [ 4] [0810] +04:30:45 [ 7] [ 10] [0319092951] +04:30:45 [ 11] [ 6] [154334] +04:30:45 [ 39] [ 2] [00] +04:30:45 [ 70] [ 3] [301] +04:30:45 ============================================================================ +04:30:45 Calculate Source COMM Id = 2 +04:30:45 ============================================================================ +04:30:45 + + +waiting on router queue for slot.... +04:30:48 ============================================================================ +04:30:48 Slot Id : <272> +04:30:48 Transaction Type : REQUEST +04:30:48 Received From : +04:30:48 ============================================================================ +04:30:48 FNo. Len. Field Value +04:30:48 ============================================================================ +04:30:48 [ 1] [ 4] [0800] +04:30:48 [ 7] [ 10] [0320114235] +04:30:48 [ 11] [ 6] [044235] +04:30:48 [ 37] [ 12] [57904044235] +04:30:48 [ 70] [ 3] [301] +04:30:48 ============================================================================ +04:30:48 + + +waiting on router queue for slot.... +04:30:48 Sending to : +04:30:48 ============================================================================ +04:30:48 ============================================================================ +04:30:48 Slot Id : <272> +04:30:48 Transaction Type : RESPONSE +04:30:48 Received From : +04:30:48 ============================================================================ +04:30:48 FNo. Len. Field Value +04:30:48 ============================================================================ +04:30:48 [ 1] [ 4] [0810] +04:30:48 [ 7] [ 10] [0320114235] +04:30:48 [ 11] [ 6] [044235] +04:30:48 [ 37] [ 12] [579040442350] +04:30:48 [ 39] [ 2] [00] +04:30:48 [ 70] [ 3] [810] +04:30:48 ============================================================================ +04:30:48 Calculate Source COMM Id = 6 +04:30:48 ============================================================================ +04:30:48 + + +waiting on router queue for slot.... +04:30:55 ============================================================================ +04:30:55 Slot Id : <282> +04:30:55 Transaction Type : REQUEST +04:30:55 Received From : +04:30:55 ============================================================================ +04:30:55 FNo. Len. Field Value +04:30:55 ============================================================================ +04:30:55 [ 1] [ 4] [0800] +04:30:55 [ 7] [ 10] [0319093002] +04:30:55 [ 11] [ 6] [154335] +04:30:55 [ 70] [ 3] [301] +04:30:55 ============================================================================ +04:30:55 + + +waiting on router queue for slot.... +04:30:55 Sending to : +04:30:55 ============================================================================ +04:30:55 ============================================================================ +04:30:55 Slot Id : <282> +04:30:55 Transaction Type : RESPONSE +04:30:55 Received From : +04:30:55 ============================================================================ +04:30:55 FNo. Len. Field Value +04:30:55 ============================================================================ +04:30:55 [ 1] [ 4] [0810] +04:30:55 [ 7] [ 10] [0319093002] +04:30:55 [ 11] [ 6] [154335] +04:30:55 [ 39] [ 2] [00] +04:30:55 [ 70] [ 3] [301] +04:30:55 ============================================================================ +04:30:55 Calculate Source COMM Id = 2 +04:30:55 ============================================================================ +04:30:55 + + +waiting on router queue for slot.... +04:31:10 ============================================================================ +04:31:10 Slot Id : <241> +04:31:10 Transaction Type : REQUEST +04:31:10 Received From : +04:31:10 ============================================================================ +04:31:10 FNo. Len. Field Value +04:31:10 ============================================================================ +04:31:10 [ 1] [ 4] [0800] +04:31:10 [ 7] [ 10] [0319093017] +04:31:10 [ 11] [ 6] [154336] +04:31:10 [ 70] [ 3] [301] +04:31:10 ============================================================================ +04:31:10 + + +waiting on router queue for slot.... +04:31:10 Sending to : +04:31:10 ============================================================================ +04:31:10 ============================================================================ +04:31:10 Slot Id : <241> +04:31:10 Transaction Type : RESPONSE +04:31:10 Received From : +04:31:10 ============================================================================ +04:31:10 FNo. Len. Field Value +04:31:10 ============================================================================ +04:31:10 [ 1] [ 4] [0810] +04:31:10 [ 7] [ 10] [0319093017] +04:31:10 [ 11] [ 6] [154336] +04:31:10 [ 39] [ 2] [00] +04:31:10 [ 70] [ 3] [301] +04:31:10 ============================================================================ +04:31:10 Calculate Source COMM Id = 2 +04:31:10 ============================================================================ +04:31:10 + + +waiting on router queue for slot.... +04:31:20 ============================================================================ +04:31:20 Slot Id : <245> +04:31:20 Transaction Type : REQUEST +04:31:20 Received From : +04:31:20 ============================================================================ +04:31:20 FNo. Len. Field Value +04:31:20 ============================================================================ +04:31:20 [ 1] [ 4] [0800] +04:31:20 [ 2] [ 5] [02531] +04:31:20 [ 3] [ 6] [579048] +04:31:20 [ 7] [ 10] [0319213120] +04:31:20 [ 11] [ 6] [806674] +04:31:20 [ 15] [ 10] [0319213120] +04:31:20 [ 37] [ 11] [57904806674] +04:31:20 [ 70] [ 3] [001] +04:31:20 ============================================================================ +04:31:20 + + +waiting on router queue for slot.... +04:31:20 ============================================================================ +04:31:20 Slot Id : <245> +04:31:20 Transaction Type : RESPONSE +04:31:20 Received From : +04:31:20 ============================================================================ +04:31:20 FNo. Len. Field Value +04:31:20 ============================================================================ +04:31:20 [ 1] [ 4] [0810] +04:31:20 [ 7] [ 10] [0319213120] +04:31:20 [ 11] [ 6] [806674] +04:31:20 [ 15] [ 4] [0319] +04:31:20 [ 37] [ 12] [57904806674] +04:31:20 [ 39] [ 2] [00] +04:31:20 [ 70] [ 3] [001] +04:31:20 ============================================================================ +04:31:20 Sending to : +04:31:20 ============================================================================ +04:31:20 + + +waiting on router queue for slot.... +04:31:21 ============================================================================ +04:31:21 Slot Id : <252> +04:31:21 Transaction Type : REQUEST +04:31:21 Received From : +04:31:21 ============================================================================ +04:31:21 FNo. Len. Field Value +04:31:21 ============================================================================ +04:31:21 [ 1] [ 4] [0800] +04:31:21 [ 7] [ 10] [0319093028] +04:31:21 [ 11] [ 6] [154337] +04:31:21 [ 70] [ 3] [301] +04:31:21 ============================================================================ +04:31:21 + + +waiting on router queue for slot.... +04:31:21 Sending to : +04:31:21 ============================================================================ +04:31:21 ============================================================================ +04:31:21 Slot Id : <252> +04:31:21 Transaction Type : RESPONSE +04:31:21 Received From : +04:31:21 ============================================================================ +04:31:21 FNo. Len. Field Value +04:31:21 ============================================================================ +04:31:21 [ 1] [ 4] [0810] +04:31:21 [ 7] [ 10] [0319093028] +04:31:21 [ 11] [ 6] [154337] +04:31:21 [ 39] [ 2] [00] +04:31:21 [ 70] [ 3] [301] +04:31:21 ============================================================================ +04:31:21 Calculate Source COMM Id = 2 +04:31:21 ============================================================================ +04:31:21 + + +waiting on router queue for slot.... +04:31:22 ============================================================================ +04:31:22 Slot Id : <276> +04:31:22 Transaction Type : REQUEST +04:31:22 Received From : +04:31:22 ============================================================================ +04:31:22 FNo. Len. Field Value +04:31:22 ============================================================================ +04:31:22 [ 1] [ 4] [0800] +04:31:22 [ 7] [ 10] [0319212912] +04:31:22 [ 11] [ 6] [098970] +04:31:22 [ 37] [ 12] [57904098970] +04:31:22 [ 70] [ 3] [301] +04:31:22 ============================================================================ +04:31:22 + + +waiting on router queue for slot.... +04:31:22 Sending to : +04:31:22 ============================================================================ +04:31:22 ============================================================================ +04:31:22 Slot Id : <276> +04:31:22 Transaction Type : RESPONSE +04:31:22 Received From : +04:31:22 ============================================================================ +04:31:22 FNo. Len. Field Value +04:31:22 ============================================================================ +04:31:22 [ 1] [ 4] [0810] +04:31:22 [ 7] [ 10] [0319212912] +04:31:22 [ 11] [ 6] [098970] +04:31:22 [ 37] [ 12] [579040989700] +04:31:22 [ 39] [ 2] [00] +04:31:22 [ 70] [ 3] [810] +04:31:22 ============================================================================ +04:31:22 Calculate Source COMM Id = 4 +04:31:22 ============================================================================ +04:31:22 + + +waiting on router queue for slot.... +04:31:32 ============================================================================ +04:31:32 Slot Id : <280> +04:31:32 Transaction Type : REQUEST +04:31:32 Received From : +04:31:32 ============================================================================ +04:31:32 FNo. Len. Field Value +04:31:32 ============================================================================ +04:31:32 [ 1] [ 4] [0800] +04:31:32 [ 7] [ 10] [0319093039] +04:31:32 [ 11] [ 6] [154338] +04:31:32 [ 70] [ 3] [301] +04:31:32 ============================================================================ +04:31:32 + + +waiting on router queue for slot.... +04:31:32 Sending to : +04:31:32 ============================================================================ +04:31:32 ============================================================================ +04:31:32 Slot Id : <280> +04:31:32 Transaction Type : RESPONSE +04:31:32 Received From : +04:31:32 ============================================================================ +04:31:32 FNo. Len. Field Value +04:31:32 ============================================================================ +04:31:32 [ 1] [ 4] [0810] +04:31:32 [ 7] [ 10] [0319093039] +04:31:32 [ 11] [ 6] [154338] +04:31:32 [ 39] [ 2] [00] +04:31:32 [ 70] [ 3] [301] +04:31:32 ============================================================================ +04:31:32 Calculate Source COMM Id = 2 +04:31:32 ============================================================================ +04:31:32 + + +waiting on router queue for slot.... +04:31:43 ============================================================================ +04:31:43 Slot Id : <284> +04:31:43 Transaction Type : REQUEST +04:31:43 Received From : +04:31:43 ============================================================================ +04:31:43 FNo. Len. Field Value +04:31:43 ============================================================================ +04:31:43 [ 1] [ 4] [0800] +04:31:43 [ 7] [ 10] [0319093050] +04:31:43 [ 11] [ 6] [154339] +04:31:43 [ 70] [ 3] [301] +04:31:43 ============================================================================ +04:31:43 + + +waiting on router queue for slot.... +04:31:43 Sending to : +04:31:43 ============================================================================ +04:31:43 ============================================================================ +04:31:43 Slot Id : <284> +04:31:43 Transaction Type : RESPONSE +04:31:43 Received From : +04:31:43 ============================================================================ +04:31:43 FNo. Len. Field Value +04:31:43 ============================================================================ +04:31:43 [ 1] [ 4] [0810] +04:31:43 [ 7] [ 10] [0319093050] +04:31:43 [ 11] [ 6] [154339] +04:31:43 [ 39] [ 2] [00] +04:31:43 [ 70] [ 3] [301] +04:31:43 ============================================================================ +04:31:43 Calculate Source COMM Id = 2 +04:31:43 ============================================================================ +04:31:43 + + +waiting on router queue for slot.... +04:31:53 ============================================================================ +04:31:53 Slot Id : <258> +04:31:53 Transaction Type : REQUEST +04:31:53 Received From : +04:31:53 ============================================================================ +04:31:53 FNo. Len. Field Value +04:31:53 ============================================================================ +04:31:53 [ 1] [ 4] [0800] +04:31:53 [ 7] [ 10] [0320114340] +04:31:53 [ 11] [ 6] [044340] +04:31:53 [ 37] [ 12] [57904044340] +04:31:53 [ 70] [ 3] [301] +04:31:53 ============================================================================ +04:31:53 + + +waiting on router queue for slot.... +04:31:53 Sending to : +04:31:53 ============================================================================ +04:31:53 ============================================================================ +04:31:53 Slot Id : <258> +04:31:53 Transaction Type : RESPONSE +04:31:53 Received From : +04:31:53 ============================================================================ +04:31:53 FNo. Len. Field Value +04:31:53 ============================================================================ +04:31:53 [ 1] [ 4] [0810] +04:31:53 [ 7] [ 10] [0320114340] +04:31:53 [ 11] [ 6] [044340] +04:31:53 [ 37] [ 12] [579040443400] +04:31:53 [ 39] [ 2] [00] +04:31:53 [ 70] [ 3] [810] +04:31:53 ============================================================================ +04:31:53 Calculate Source COMM Id = 6 +04:31:53 ============================================================================ +04:31:53 + + +waiting on router queue for slot.... +04:31:54 ============================================================================ +04:31:54 Slot Id : <219> +04:31:54 Transaction Type : REQUEST +04:31:54 Received From : +04:31:54 ============================================================================ +04:31:54 FNo. Len. Field Value +04:31:54 ============================================================================ +04:31:54 [ 1] [ 4] [0800] +04:31:54 [ 7] [ 10] [0319093101] +04:31:54 [ 11] [ 6] [154340] +04:31:54 [ 70] [ 3] [301] +04:31:54 ============================================================================ +04:31:54 + + +waiting on router queue for slot.... +04:31:54 Sending to : +04:31:54 ============================================================================ +04:31:54 ============================================================================ +04:31:54 Slot Id : <219> +04:31:54 Transaction Type : RESPONSE +04:31:54 Received From : +04:31:54 ============================================================================ +04:31:54 FNo. Len. Field Value +04:31:54 ============================================================================ +04:31:54 [ 1] [ 4] [0810] +04:31:54 [ 7] [ 10] [0319093101] +04:31:54 [ 11] [ 6] [154340] +04:31:54 [ 39] [ 2] [00] +04:31:54 [ 70] [ 3] [301] +04:31:54 ============================================================================ +04:31:54 Calculate Source COMM Id = 2 +04:31:54 ============================================================================ +04:31:54 + + +waiting on router queue for slot.... +04:32:05 ============================================================================ +04:32:05 Slot Id : <224> +04:32:05 Transaction Type : REQUEST +04:32:05 Received From : +04:32:05 ============================================================================ +04:32:05 FNo. Len. Field Value +04:32:05 ============================================================================ +04:32:05 [ 1] [ 4] [0800] +04:32:05 [ 7] [ 10] [0319093112] +04:32:05 [ 11] [ 6] [154341] +04:32:05 [ 70] [ 3] [301] +04:32:05 ============================================================================ +04:32:05 + + +waiting on router queue for slot.... +04:32:05 Sending to : +04:32:05 ============================================================================ +04:32:05 ============================================================================ +04:32:05 Slot Id : <224> +04:32:05 Transaction Type : RESPONSE +04:32:05 Received From : +04:32:05 ============================================================================ +04:32:05 FNo. Len. Field Value +04:32:05 ============================================================================ +04:32:05 [ 1] [ 4] [0810] +04:32:05 [ 7] [ 10] [0319093112] +04:32:05 [ 11] [ 6] [154341] +04:32:05 [ 39] [ 2] [00] +04:32:05 [ 70] [ 3] [301] +04:32:05 ============================================================================ +04:32:05 Calculate Source COMM Id = 2 +04:32:05 ============================================================================ +04:32:05 + + +waiting on router queue for slot.... +04:32:20 ============================================================================ +04:32:20 Slot Id : <287> +04:32:20 Transaction Type : REQUEST +04:32:20 Received From : +04:32:20 ============================================================================ +04:32:20 FNo. Len. Field Value +04:32:20 ============================================================================ +04:32:20 [ 1] [ 4] [0800] +04:32:20 [ 7] [ 10] [0319093127] +04:32:20 [ 11] [ 6] [154342] +04:32:20 [ 70] [ 3] [301] +04:32:20 ============================================================================ +04:32:20 + + +waiting on router queue for slot.... +04:32:20 Sending to : +04:32:20 ============================================================================ +04:32:20 ============================================================================ +04:32:20 Slot Id : <287> +04:32:20 Transaction Type : RESPONSE +04:32:20 Received From : +04:32:20 ============================================================================ +04:32:20 FNo. Len. Field Value +04:32:20 ============================================================================ +04:32:20 [ 1] [ 4] [0810] +04:32:20 [ 7] [ 10] [0319093127] +04:32:20 [ 11] [ 6] [154342] +04:32:20 [ 39] [ 2] [00] +04:32:20 [ 70] [ 3] [301] +04:32:20 ============================================================================ +04:32:20 Calculate Source COMM Id = 2 +04:32:20 ============================================================================ +04:32:20 + + +waiting on router queue for slot.... +04:32:22 ============================================================================ +04:32:22 Slot Id : <290> +04:32:22 Transaction Type : REQUEST +04:32:22 Received From : +04:32:22 ============================================================================ +04:32:22 FNo. Len. Field Value +04:32:22 ============================================================================ +04:32:22 [ 1] [ 4] [0800] +04:32:22 [ 2] [ 5] [02531] +04:32:22 [ 3] [ 6] [579048] +04:32:22 [ 7] [ 10] [0319213222] +04:32:22 [ 11] [ 6] [806675] +04:32:22 [ 15] [ 10] [0319213222] +04:32:22 [ 37] [ 11] [57904806675] +04:32:22 [ 70] [ 3] [001] +04:32:22 ============================================================================ +04:32:22 + + +waiting on router queue for slot.... +04:32:22 ============================================================================ +04:32:22 Slot Id : <290> +04:32:22 Transaction Type : RESPONSE +04:32:22 Received From : +04:32:22 ============================================================================ +04:32:22 FNo. Len. Field Value +04:32:22 ============================================================================ +04:32:22 [ 1] [ 4] [0810] +04:32:22 [ 7] [ 10] [0319213222] +04:32:22 [ 11] [ 6] [806675] +04:32:22 [ 15] [ 4] [0319] +04:32:22 [ 37] [ 12] [57904806675] +04:32:22 [ 39] [ 2] [00] +04:32:22 [ 70] [ 3] [001] +04:32:22 ============================================================================ +04:32:22 Sending to : +04:32:22 ============================================================================ +04:32:22 + + +waiting on router queue for slot.... +04:32:32 ============================================================================ +04:32:32 Slot Id : <288> +04:32:32 Transaction Type : REQUEST +04:32:32 Received From : +04:32:32 ============================================================================ +04:32:32 FNo. Len. Field Value +04:32:32 ============================================================================ +04:32:32 [ 1] [ 4] [0800] +04:32:32 [ 7] [ 10] [0319093138] +04:32:32 [ 11] [ 6] [154343] +04:32:32 [ 70] [ 3] [301] +04:32:32 ============================================================================ +04:32:32 + + +waiting on router queue for slot.... +04:32:32 Sending to : +04:32:32 ============================================================================ +04:32:32 ============================================================================ +04:32:32 Slot Id : <288> +04:32:32 Transaction Type : RESPONSE +04:32:32 Received From : +04:32:32 ============================================================================ +04:32:32 FNo. Len. Field Value +04:32:32 ============================================================================ +04:32:32 [ 1] [ 4] [0810] +04:32:32 [ 7] [ 10] [0319093138] +04:32:32 [ 11] [ 6] [154343] +04:32:32 [ 39] [ 2] [00] +04:32:32 [ 70] [ 3] [301] +04:32:32 ============================================================================ +04:32:32 Calculate Source COMM Id = 2 +04:32:32 ============================================================================ +04:32:32 + + +waiting on router queue for slot.... +04:32:46 ============================================================================ +04:32:46 Slot Id : <271> +04:32:46 Transaction Type : REQUEST +04:32:46 Received From : +04:32:46 ============================================================================ +04:32:46 FNo. Len. Field Value +04:32:46 ============================================================================ +04:32:46 [ 1] [ 4] [0800] +04:32:46 [ 7] [ 10] [0319093153] +04:32:46 [ 11] [ 6] [154344] +04:32:46 [ 70] [ 3] [301] +04:32:46 ============================================================================ +04:32:46 + + +waiting on router queue for slot.... +04:32:46 Sending to : +04:32:46 ============================================================================ +04:32:46 ============================================================================ +04:32:46 Slot Id : <271> +04:32:46 Transaction Type : RESPONSE +04:32:46 Received From : +04:32:46 ============================================================================ +04:32:46 FNo. Len. Field Value +04:32:46 ============================================================================ +04:32:46 [ 1] [ 4] [0810] +04:32:46 [ 7] [ 10] [0319093153] +04:32:46 [ 11] [ 6] [154344] +04:32:46 [ 39] [ 2] [00] +04:32:46 [ 70] [ 3] [301] +04:32:46 ============================================================================ +04:32:46 Calculate Source COMM Id = 2 +04:32:46 ============================================================================ +04:32:46 + + +waiting on router queue for slot.... +04:32:57 ============================================================================ +04:32:57 Slot Id : <277> +04:32:57 Transaction Type : REQUEST +04:32:57 Received From : +04:32:57 ============================================================================ +04:32:57 FNo. Len. Field Value +04:32:57 ============================================================================ +04:32:57 [ 1] [ 4] [0800] +04:32:57 [ 7] [ 10] [0319093204] +04:32:57 [ 11] [ 6] [154345] +04:32:57 [ 70] [ 3] [301] +04:32:57 ============================================================================ +04:32:57 + + +waiting on router queue for slot.... +04:32:57 Sending to : +04:32:57 ============================================================================ +04:32:57 ============================================================================ +04:32:57 Slot Id : <277> +04:32:57 Transaction Type : RESPONSE +04:32:57 Received From : +04:32:57 ============================================================================ +04:32:57 FNo. Len. Field Value +04:32:57 ============================================================================ +04:32:57 [ 1] [ 4] [0810] +04:32:57 [ 7] [ 10] [0319093204] +04:32:57 [ 11] [ 6] [154345] +04:32:57 [ 39] [ 2] [00] +04:32:57 [ 70] [ 3] [301] +04:32:57 ============================================================================ +04:32:57 Calculate Source COMM Id = 2 +04:32:57 ============================================================================ +04:32:57 + + +waiting on router queue for slot.... +04:32:58 ============================================================================ +04:32:58 Slot Id : <267> +04:32:58 Transaction Type : REQUEST +04:32:58 Received From : +04:32:58 ============================================================================ +04:32:58 FNo. Len. Field Value +04:32:58 ============================================================================ +04:32:58 [ 1] [ 4] [0800] +04:32:58 [ 7] [ 10] [0320114445] +04:32:58 [ 11] [ 6] [044445] +04:32:58 [ 37] [ 12] [57904044445] +04:32:58 [ 70] [ 3] [301] +04:32:58 ============================================================================ +04:32:58 + + +waiting on router queue for slot.... +04:32:58 Sending to : +04:32:58 ============================================================================ +04:32:58 ============================================================================ +04:32:58 Slot Id : <267> +04:32:58 Transaction Type : RESPONSE +04:32:58 Received From : +04:32:58 ============================================================================ +04:32:58 FNo. Len. Field Value +04:32:58 ============================================================================ +04:32:58 [ 1] [ 4] [0810] +04:32:58 [ 7] [ 10] [0320114445] +04:32:58 [ 11] [ 6] [044445] +04:32:58 [ 37] [ 12] [579040444450] +04:32:58 [ 39] [ 2] [00] +04:32:58 [ 70] [ 3] [810] +04:32:58 ============================================================================ +04:32:58 Calculate Source COMM Id = 6 +04:32:58 ============================================================================ +04:32:58 + + +waiting on router queue for slot.... +04:33:09 ============================================================================ +04:33:09 Slot Id : <217> +04:33:09 Transaction Type : REQUEST +04:33:09 Received From : +04:33:09 ============================================================================ +04:33:09 FNo. Len. Field Value +04:33:09 ============================================================================ +04:33:09 [ 1] [ 4] [0800] +04:33:09 [ 7] [ 10] [0319093214] +04:33:09 [ 11] [ 6] [154346] +04:33:09 [ 70] [ 3] [301] +04:33:09 ============================================================================ +04:33:09 + + +waiting on router queue for slot.... +04:33:09 Sending to : +04:33:09 ============================================================================ +04:33:09 ============================================================================ +04:33:09 Slot Id : <217> +04:33:09 Transaction Type : RESPONSE +04:33:09 Received From : +04:33:09 ============================================================================ +04:33:09 FNo. Len. Field Value +04:33:09 ============================================================================ +04:33:09 [ 1] [ 4] [0810] +04:33:09 [ 7] [ 10] [0319093214] +04:33:09 [ 11] [ 6] [154346] +04:33:09 [ 39] [ 2] [00] +04:33:09 [ 70] [ 3] [301] +04:33:09 ============================================================================ +04:33:09 Calculate Source COMM Id = 2 +04:33:09 ============================================================================ +04:33:09 + + +waiting on router queue for slot.... +04:33:13 ============================================================================ +04:33:13 Slot Id : <236> +04:33:13 Transaction Type : REQUEST +04:33:13 Received From : +04:33:13 ============================================================================ +04:33:13 FNo. Len. Field Value +04:33:13 ============================================================================ +04:33:13 [ 1] [ 4] [0800] +04:33:13 [ 7] [ 10] [0319213308] +04:33:13 [ 11] [ 6] [036528] +04:33:13 [ 37] [ 12] [507904036528] +04:33:13 [ 70] [ 3] [001] +04:33:13 ============================================================================ +04:33:13 + + +waiting on router queue for slot.... +04:33:13 Sending to : +04:33:13 ============================================================================ +04:33:13 ============================================================================ +04:33:13 Slot Id : <236> +04:33:13 Transaction Type : RESPONSE +04:33:13 Received From : +04:33:13 ============================================================================ +04:33:13 FNo. Len. Field Value +04:33:13 ============================================================================ +04:33:13 [ 1] [ 4] [0810] +04:33:13 [ 7] [ 10] [0319213308] +04:33:13 [ 11] [ 6] [036528] +04:33:13 [ 37] [ 12] [507904036528] +04:33:13 [ 39] [ 2] [00] +04:33:13 [ 70] [ 3] [001] +04:33:13 ============================================================================ +04:33:13 Calculate Source COMM Id = 0 +04:33:13 ============================================================================ +04:33:13 + + +waiting on router queue for slot.... +04:33:24 ============================================================================ +04:33:24 Slot Id : <278> +04:33:24 Transaction Type : REQUEST +04:33:24 Received From : +04:33:24 ============================================================================ +04:33:24 FNo. Len. Field Value +04:33:24 ============================================================================ +04:33:24 [ 1] [ 4] [0800] +04:33:24 [ 2] [ 5] [02531] +04:33:24 [ 3] [ 6] [579048] +04:33:24 [ 7] [ 10] [0319213324] +04:33:24 [ 11] [ 6] [806676] +04:33:24 [ 15] [ 10] [0319213324] +04:33:24 [ 37] [ 11] [57904806676] +04:33:24 [ 70] [ 3] [001] +04:33:24 ============================================================================ +04:33:24 + + +waiting on router queue for slot.... +04:33:24 ============================================================================ +04:33:24 Slot Id : <278> +04:33:24 Transaction Type : RESPONSE +04:33:24 Received From : +04:33:24 ============================================================================ +04:33:24 FNo. Len. Field Value +04:33:24 ============================================================================ +04:33:24 [ 1] [ 4] [0810] +04:33:24 [ 7] [ 10] [0319213324] +04:33:24 [ 11] [ 6] [806676] +04:33:24 [ 15] [ 4] [0319] +04:33:24 [ 37] [ 12] [57904806676] +04:33:24 [ 39] [ 2] [00] +04:33:24 [ 70] [ 3] [001] +04:33:24 ============================================================================ +04:33:24 Sending to : +04:33:24 ============================================================================ +04:33:24 + + +waiting on router queue for slot.... +04:33:25 ============================================================================ +04:33:25 Slot Id : <293> +04:33:25 Transaction Type : REQUEST +04:33:25 Received From : +04:33:25 ============================================================================ +04:33:25 FNo. Len. Field Value +04:33:25 ============================================================================ +04:33:25 [ 1] [ 4] [0800] +04:33:25 [ 7] [ 10] [0319093231] +04:33:25 [ 11] [ 6] [154347] +04:33:25 [ 70] [ 3] [301] +04:33:25 ============================================================================ +04:33:25 + + +waiting on router queue for slot.... +04:33:25 Sending to : +04:33:25 ============================================================================ +04:33:25 ============================================================================ +04:33:25 Slot Id : <293> +04:33:25 Transaction Type : RESPONSE +04:33:25 Received From : +04:33:25 ============================================================================ +04:33:25 FNo. Len. Field Value +04:33:25 ============================================================================ +04:33:25 [ 1] [ 4] [0810] +04:33:25 [ 7] [ 10] [0319093231] +04:33:25 [ 11] [ 6] [154347] +04:33:25 [ 39] [ 2] [00] +04:33:25 [ 70] [ 3] [301] +04:33:25 ============================================================================ +04:33:25 Calculate Source COMM Id = 2 +04:33:25 ============================================================================ +04:33:25 + + +waiting on router queue for slot.... +04:33:36 ============================================================================ +04:33:36 Slot Id : <294> +04:33:36 Transaction Type : REQUEST +04:33:36 Received From : +04:33:36 ============================================================================ +04:33:36 FNo. Len. Field Value +04:33:36 ============================================================================ +04:33:36 [ 1] [ 4] [0800] +04:33:36 [ 7] [ 10] [0319093242] +04:33:36 [ 11] [ 6] [154348] +04:33:36 [ 70] [ 3] [301] +04:33:36 ============================================================================ +04:33:36 + + +waiting on router queue for slot.... +04:33:36 Sending to : +04:33:36 ============================================================================ +04:33:36 ============================================================================ +04:33:36 Slot Id : <294> +04:33:36 Transaction Type : RESPONSE +04:33:36 Received From : +04:33:36 ============================================================================ +04:33:36 FNo. Len. Field Value +04:33:36 ============================================================================ +04:33:36 [ 1] [ 4] [0810] +04:33:36 [ 7] [ 10] [0319093242] +04:33:36 [ 11] [ 6] [154348] +04:33:36 [ 39] [ 2] [00] +04:33:36 [ 70] [ 3] [301] +04:33:36 ============================================================================ +04:33:36 Calculate Source COMM Id = 2 +04:33:36 ============================================================================ +04:33:36 + + +waiting on router queue for slot.... +04:33:51 ============================================================================ +04:33:51 Slot Id : <298> +04:33:51 Transaction Type : REQUEST +04:33:51 Received From : +04:33:51 ============================================================================ +04:33:51 FNo. Len. Field Value +04:33:51 ============================================================================ +04:33:51 [ 1] [ 4] [0800] +04:33:51 [ 7] [ 10] [0319093258] +04:33:51 [ 11] [ 6] [154349] +04:33:51 [ 70] [ 3] [301] +04:33:51 ============================================================================ +04:33:51 + + +waiting on router queue for slot.... +04:33:51 Sending to : +04:33:51 ============================================================================ +04:33:51 ============================================================================ +04:33:51 Slot Id : <298> +04:33:51 Transaction Type : RESPONSE +04:33:51 Received From : +04:33:51 ============================================================================ +04:33:51 FNo. Len. Field Value +04:33:51 ============================================================================ +04:33:51 [ 1] [ 4] [0810] +04:33:51 [ 7] [ 10] [0319093258] +04:33:51 [ 11] [ 6] [154349] +04:33:51 [ 39] [ 2] [00] +04:33:51 [ 70] [ 3] [301] +04:33:51 ============================================================================ +04:33:51 Calculate Source COMM Id = 2 +04:33:51 ============================================================================ +04:33:51 + + +waiting on router queue for slot.... +04:34:02 ============================================================================ +04:34:02 Slot Id : <257> +04:34:02 Transaction Type : REQUEST +04:34:02 Received From : +04:34:02 ============================================================================ +04:34:02 FNo. Len. Field Value +04:34:02 ============================================================================ +04:34:02 [ 1] [ 4] [0800] +04:34:02 [ 7] [ 10] [0319093308] +04:34:02 [ 11] [ 6] [154350] +04:34:02 [ 70] [ 3] [301] +04:34:02 ============================================================================ +04:34:02 + + +waiting on router queue for slot.... +04:34:02 Sending to : +04:34:02 ============================================================================ +04:34:02 ============================================================================ +04:34:02 Slot Id : <257> +04:34:02 Transaction Type : RESPONSE +04:34:02 Received From : +04:34:02 ============================================================================ +04:34:02 FNo. Len. Field Value +04:34:02 ============================================================================ +04:34:02 [ 1] [ 4] [0810] +04:34:02 [ 7] [ 10] [0319093308] +04:34:02 [ 11] [ 6] [154350] +04:34:02 [ 39] [ 2] [00] +04:34:02 [ 70] [ 3] [301] +04:34:02 ============================================================================ +04:34:02 Calculate Source COMM Id = 2 +04:34:02 ============================================================================ +04:34:02 + + +waiting on router queue for slot.... +04:34:03 ============================================================================ +04:34:03 Slot Id : <303> +04:34:03 Transaction Type : REQUEST +04:34:03 Received From : +04:34:03 ============================================================================ +04:34:03 FNo. Len. Field Value +04:34:03 ============================================================================ +04:34:03 [ 1] [ 4] [0800] +04:34:03 [ 7] [ 10] [0320114550] +04:34:03 [ 11] [ 6] [044550] +04:34:03 [ 37] [ 12] [57904044550] +04:34:03 [ 70] [ 3] [301] +04:34:03 ============================================================================ +04:34:03 + + +waiting on router queue for slot.... +04:34:03 Sending to : +04:34:03 ============================================================================ +04:34:03 ============================================================================ +04:34:03 Slot Id : <303> +04:34:03 Transaction Type : RESPONSE +04:34:03 Received From : +04:34:03 ============================================================================ +04:34:03 FNo. Len. Field Value +04:34:03 ============================================================================ +04:34:03 [ 1] [ 4] [0810] +04:34:03 [ 7] [ 10] [0320114550] +04:34:03 [ 11] [ 6] [044550] +04:34:03 [ 37] [ 12] [579040445500] +04:34:03 [ 39] [ 2] [00] +04:34:03 [ 70] [ 3] [810] +04:34:03 ============================================================================ +04:34:03 Calculate Source COMM Id = 6 +04:34:03 ============================================================================ +04:34:03 + + +waiting on router queue for slot.... +04:34:12 ============================================================================ +04:34:12 Slot Id : <299> +04:34:12 Transaction Type : REQUEST +04:34:12 Received From : +04:34:12 ============================================================================ +04:34:12 FNo. Len. Field Value +04:34:12 ============================================================================ +04:34:12 [ 1] [ 4] [0800] +04:34:12 [ 7] [ 10] [0319093319] +04:34:12 [ 11] [ 6] [154351] +04:34:12 [ 70] [ 3] [301] +04:34:12 ============================================================================ +04:34:12 + + +waiting on router queue for slot.... +04:34:12 Sending to : +04:34:12 ============================================================================ +04:34:12 ============================================================================ +04:34:12 Slot Id : <299> +04:34:12 Transaction Type : RESPONSE +04:34:12 Received From : +04:34:12 ============================================================================ +04:34:12 FNo. Len. Field Value +04:34:12 ============================================================================ +04:34:12 [ 1] [ 4] [0810] +04:34:12 [ 7] [ 10] [0319093319] +04:34:12 [ 11] [ 6] [154351] +04:34:12 [ 39] [ 2] [00] +04:34:12 [ 70] [ 3] [301] +04:34:12 ============================================================================ +04:34:12 Calculate Source COMM Id = 2 +04:34:12 ============================================================================ +04:34:12 + + +waiting on router queue for slot.... +04:34:22 ============================================================================ +04:34:22 Slot Id : <302> +04:34:22 Transaction Type : REQUEST +04:34:22 Received From : +04:34:22 ============================================================================ +04:34:22 FNo. Len. Field Value +04:34:22 ============================================================================ +04:34:22 [ 1] [ 4] [0800] +04:34:22 [ 7] [ 10] [0319093329] +04:34:22 [ 11] [ 6] [154352] +04:34:22 [ 70] [ 3] [301] +04:34:22 ============================================================================ +04:34:22 + + +waiting on router queue for slot.... +04:34:22 Sending to : +04:34:22 ============================================================================ +04:34:22 ============================================================================ +04:34:22 Slot Id : <302> +04:34:22 Transaction Type : RESPONSE +04:34:22 Received From : +04:34:22 ============================================================================ +04:34:22 FNo. Len. Field Value +04:34:22 ============================================================================ +04:34:22 [ 1] [ 4] [0810] +04:34:22 [ 7] [ 10] [0319093329] +04:34:22 [ 11] [ 6] [154352] +04:34:22 [ 39] [ 2] [00] +04:34:22 [ 70] [ 3] [301] +04:34:22 ============================================================================ +04:34:22 Calculate Source COMM Id = 2 +04:34:22 ============================================================================ +04:34:22 + + +waiting on router queue for slot.... +04:34:26 ============================================================================ +04:34:26 Slot Id : <292> +04:34:26 Transaction Type : REQUEST +04:34:26 Received From : +04:34:26 ============================================================================ +04:34:26 FNo. Len. Field Value +04:34:26 ============================================================================ +04:34:26 [ 1] [ 4] [0800] +04:34:26 [ 2] [ 5] [02531] +04:34:26 [ 3] [ 6] [579048] +04:34:26 [ 7] [ 10] [0319213426] +04:34:26 [ 11] [ 6] [806677] +04:34:26 [ 15] [ 10] [0319213426] +04:34:26 [ 37] [ 11] [57904806677] +04:34:26 [ 70] [ 3] [001] +04:34:26 ============================================================================ +04:34:26 + + +waiting on router queue for slot.... +04:34:26 ============================================================================ +04:34:26 Slot Id : <292> +04:34:26 Transaction Type : RESPONSE +04:34:26 Received From : +04:34:26 ============================================================================ +04:34:26 FNo. Len. Field Value +04:34:26 ============================================================================ +04:34:26 [ 1] [ 4] [0810] +04:34:26 [ 7] [ 10] [0319213426] +04:34:26 [ 11] [ 6] [806677] +04:34:26 [ 15] [ 4] [0319] +04:34:26 [ 37] [ 12] [57904806677] +04:34:26 [ 39] [ 2] [00] +04:34:26 [ 70] [ 3] [001] +04:34:26 ============================================================================ +04:34:26 Sending to : +04:34:26 ============================================================================ +04:34:26 + + +waiting on router queue for slot.... +04:34:33 ============================================================================ +04:34:33 Slot Id : <300> +04:34:33 Transaction Type : REQUEST +04:34:33 Received From : +04:34:33 ============================================================================ +04:34:33 FNo. Len. Field Value +04:34:33 ============================================================================ +04:34:33 [ 1] [ 4] [0800] +04:34:33 [ 7] [ 10] [0319093340] +04:34:33 [ 11] [ 6] [154353] +04:34:33 [ 70] [ 3] [301] +04:34:33 ============================================================================ +04:34:33 + + +waiting on router queue for slot.... +04:34:33 Sending to : +04:34:33 ============================================================================ +04:34:33 ============================================================================ +04:34:33 Slot Id : <300> +04:34:33 Transaction Type : RESPONSE +04:34:33 Received From : +04:34:33 ============================================================================ +04:34:33 FNo. Len. Field Value +04:34:33 ============================================================================ +04:34:33 [ 1] [ 4] [0810] +04:34:33 [ 7] [ 10] [0319093340] +04:34:33 [ 11] [ 6] [154353] +04:34:33 [ 39] [ 2] [00] +04:34:33 [ 70] [ 3] [301] +04:34:33 ============================================================================ +04:34:33 Calculate Source COMM Id = 2 +04:34:33 ============================================================================ +04:34:33 + + +waiting on router queue for slot.... +04:34:44 ============================================================================ +04:34:44 Slot Id : <281> +04:34:44 Transaction Type : REQUEST +04:34:44 Received From : +04:34:44 ============================================================================ +04:34:44 FNo. Len. Field Value +04:34:44 ============================================================================ +04:34:44 [ 1] [ 4] [0800] +04:34:44 [ 7] [ 10] [0319093351] +04:34:44 [ 11] [ 6] [154354] +04:34:44 [ 70] [ 3] [301] +04:34:44 ============================================================================ +04:34:44 + + +waiting on router queue for slot.... +04:34:44 Sending to : +04:34:44 ============================================================================ +04:34:44 ============================================================================ +04:34:44 Slot Id : <281> +04:34:44 Transaction Type : RESPONSE +04:34:44 Received From : +04:34:44 ============================================================================ +04:34:44 FNo. Len. Field Value +04:34:44 ============================================================================ +04:34:44 [ 1] [ 4] [0810] +04:34:44 [ 7] [ 10] [0319093351] +04:34:44 [ 11] [ 6] [154354] +04:34:44 [ 39] [ 2] [00] +04:34:44 [ 70] [ 3] [301] +04:34:44 ============================================================================ +04:34:44 Calculate Source COMM Id = 2 +04:34:44 ============================================================================ +04:34:44 + + +waiting on router queue for slot.... +04:34:55 ============================================================================ +04:34:55 Slot Id : <295> +04:34:55 Transaction Type : REQUEST +04:34:55 Received From : +04:34:55 ============================================================================ +04:34:55 FNo. Len. Field Value +04:34:55 ============================================================================ +04:34:55 [ 1] [ 4] [0800] +04:34:55 [ 7] [ 10] [0319093402] +04:34:55 [ 11] [ 6] [154355] +04:34:55 [ 70] [ 3] [301] +04:34:55 ============================================================================ +04:34:55 + + +waiting on router queue for slot.... +04:34:55 Sending to : +04:34:55 ============================================================================ +04:34:55 ============================================================================ +04:34:55 Slot Id : <295> +04:34:55 Transaction Type : RESPONSE +04:34:55 Received From : +04:34:55 ============================================================================ +04:34:55 FNo. Len. Field Value +04:34:55 ============================================================================ +04:34:55 [ 1] [ 4] [0810] +04:34:55 [ 7] [ 10] [0319093402] +04:34:55 [ 11] [ 6] [154355] +04:34:55 [ 39] [ 2] [00] +04:34:55 [ 70] [ 3] [301] +04:34:55 ============================================================================ +04:34:55 Calculate Source COMM Id = 2 +04:34:55 ============================================================================ +04:34:55 + + +waiting on router queue for slot.... +04:34:56 ============================================================================ +04:34:56 Slot Id : <308> +04:34:56 Transaction Type : REQUEST +04:34:56 Received From : +04:34:56 ============================================================================ +04:34:56 FNo. Len. Field Value +04:34:56 ============================================================================ +04:34:56 [ 1] [ 4] [0800] +04:34:56 [ 7] [ 10] [0319214242] +04:34:56 [ 11] [ 6] [026321] +04:34:56 [ 37] [ 12] [57904026321] +04:34:56 [ 70] [ 3] [301] +04:34:56 ============================================================================ +04:34:56 + + +waiting on router queue for slot.... +04:34:56 Sending to : +04:34:56 ============================================================================ +04:34:56 ============================================================================ +04:34:56 Slot Id : <308> +04:34:56 Transaction Type : RESPONSE +04:34:56 Received From : +04:34:56 ============================================================================ +04:34:56 FNo. Len. Field Value +04:34:56 ============================================================================ +04:34:56 [ 1] [ 4] [0810] +04:34:56 [ 7] [ 10] [0319214242] +04:34:56 [ 11] [ 6] [026321] +04:34:56 [ 37] [ 12] [579040263210] +04:34:56 [ 39] [ 2] [00] +04:34:56 [ 70] [ 3] [810] +04:34:56 ============================================================================ +04:34:56 Calculate Source COMM Id = 1 +04:34:56 ============================================================================ +04:34:56 + + +waiting on router queue for slot.... +04:35:06 ============================================================================ +04:35:06 Slot Id : <262> +04:35:06 Transaction Type : REQUEST +04:35:06 Received From : +04:35:06 ============================================================================ +04:35:06 FNo. Len. Field Value +04:35:06 ============================================================================ +04:35:06 [ 1] [ 4] [0800] +04:35:06 [ 7] [ 10] [0319093413] +04:35:06 [ 11] [ 6] [154356] +04:35:06 [ 70] [ 3] [301] +04:35:06 ============================================================================ +04:35:06 + + +waiting on router queue for slot.... +04:35:06 Sending to : +04:35:06 ============================================================================ +04:35:06 ============================================================================ +04:35:06 Slot Id : <262> +04:35:06 Transaction Type : RESPONSE +04:35:06 Received From : +04:35:06 ============================================================================ +04:35:06 FNo. Len. Field Value +04:35:06 ============================================================================ +04:35:06 [ 1] [ 4] [0810] +04:35:06 [ 7] [ 10] [0319093413] +04:35:06 [ 11] [ 6] [154356] +04:35:06 [ 39] [ 2] [00] +04:35:06 [ 70] [ 3] [301] +04:35:06 ============================================================================ +04:35:06 Calculate Source COMM Id = 2 +04:35:06 ============================================================================ +04:35:06 + + +waiting on router queue for slot.... +04:35:08 ============================================================================ +04:35:08 Slot Id : <296> +04:35:08 Transaction Type : REQUEST +04:35:08 Received From : +04:35:08 ============================================================================ +04:35:08 FNo. Len. Field Value +04:35:08 ============================================================================ +04:35:08 [ 1] [ 4] [0800] +04:35:08 [ 7] [ 10] [0320114656] +04:35:08 [ 11] [ 6] [044656] +04:35:08 [ 37] [ 12] [57904044656] +04:35:08 [ 70] [ 3] [301] +04:35:08 ============================================================================ +04:35:08 + + +waiting on router queue for slot.... +04:35:08 Sending to : +04:35:08 ============================================================================ +04:35:08 ============================================================================ +04:35:08 Slot Id : <296> +04:35:08 Transaction Type : RESPONSE +04:35:08 Received From : +04:35:08 ============================================================================ +04:35:08 FNo. Len. Field Value +04:35:08 ============================================================================ +04:35:08 [ 1] [ 4] [0810] +04:35:08 [ 7] [ 10] [0320114656] +04:35:08 [ 11] [ 6] [044656] +04:35:08 [ 37] [ 12] [579040446560] +04:35:08 [ 39] [ 2] [00] +04:35:08 [ 70] [ 3] [810] +04:35:08 ============================================================================ +04:35:08 Calculate Source COMM Id = 6 +04:35:08 ============================================================================ +04:35:08 + + +waiting on router queue for slot.... +04:35:17 ============================================================================ +04:35:17 Slot Id : <283> +04:35:17 Transaction Type : REQUEST +04:35:17 Received From : +04:35:17 ============================================================================ +04:35:17 FNo. Len. Field Value +04:35:17 ============================================================================ +04:35:17 [ 1] [ 4] [0800] +04:35:17 [ 7] [ 10] [0319093424] +04:35:17 [ 11] [ 6] [154357] +04:35:17 [ 70] [ 3] [301] +04:35:17 ============================================================================ +04:35:17 + + +waiting on router queue for slot.... +04:35:17 Sending to : +04:35:17 ============================================================================ +04:35:17 ============================================================================ +04:35:17 Slot Id : <283> +04:35:17 Transaction Type : RESPONSE +04:35:17 Received From : +04:35:17 ============================================================================ +04:35:17 FNo. Len. Field Value +04:35:17 ============================================================================ +04:35:17 [ 1] [ 4] [0810] +04:35:17 [ 7] [ 10] [0319093424] +04:35:17 [ 11] [ 6] [154357] +04:35:17 [ 39] [ 2] [00] +04:35:17 [ 70] [ 3] [301] +04:35:17 ============================================================================ +04:35:17 Calculate Source COMM Id = 2 +04:35:17 ============================================================================ +04:35:17 + + +waiting on router queue for slot.... +04:35:28 ============================================================================ +04:35:28 Slot Id : <311> +04:35:28 Transaction Type : REQUEST +04:35:28 Received From : +04:35:28 ============================================================================ +04:35:28 FNo. Len. Field Value +04:35:28 ============================================================================ +04:35:28 [ 1] [ 4] [0800] +04:35:28 [ 2] [ 5] [02531] +04:35:28 [ 3] [ 6] [579048] +04:35:28 [ 7] [ 10] [0319213528] +04:35:28 [ 11] [ 6] [806678] +04:35:28 [ 15] [ 10] [0319213528] +04:35:28 [ 37] [ 11] [57904806678] +04:35:28 [ 70] [ 3] [001] +04:35:28 ============================================================================ +04:35:28 + + +waiting on router queue for slot.... +04:35:28 ============================================================================ +04:35:28 Slot Id : <311> +04:35:28 Transaction Type : RESPONSE +04:35:28 Received From : +04:35:28 ============================================================================ +04:35:28 FNo. Len. Field Value +04:35:28 ============================================================================ +04:35:28 [ 1] [ 4] [0810] +04:35:28 [ 7] [ 10] [0319213528] +04:35:28 [ 11] [ 6] [806678] +04:35:28 [ 15] [ 4] [0319] +04:35:28 [ 37] [ 12] [57904806678] +04:35:28 [ 39] [ 2] [00] +04:35:28 [ 70] [ 3] [001] +04:35:28 ============================================================================ +04:35:28 Sending to : +04:35:28 ============================================================================ +04:35:28 + + +waiting on router queue for slot.... +04:35:33 ============================================================================ +04:35:33 Slot Id : <312> +04:35:33 Transaction Type : REQUEST +04:35:33 Received From : +04:35:33 ============================================================================ +04:35:33 FNo. Len. Field Value +04:35:33 ============================================================================ +04:35:33 [ 1] [ 4] [0800] +04:35:33 [ 7] [ 10] [0319093439] +04:35:33 [ 11] [ 6] [154358] +04:35:33 [ 70] [ 3] [301] +04:35:33 ============================================================================ +04:35:33 + + +waiting on router queue for slot.... +04:35:33 Sending to : +04:35:33 ============================================================================ +04:35:33 ============================================================================ +04:35:33 Slot Id : <312> +04:35:33 Transaction Type : RESPONSE +04:35:33 Received From : +04:35:33 ============================================================================ +04:35:33 FNo. Len. Field Value +04:35:33 ============================================================================ +04:35:33 [ 1] [ 4] [0810] +04:35:33 [ 7] [ 10] [0319093439] +04:35:33 [ 11] [ 6] [154358] +04:35:33 [ 39] [ 2] [00] +04:35:33 [ 70] [ 3] [301] +04:35:33 ============================================================================ +04:35:33 Calculate Source COMM Id = 2 +04:35:33 ============================================================================ +04:35:33 + + +waiting on router queue for slot.... +04:35:43 ============================================================================ +04:35:43 Slot Id : <316> +04:35:43 Transaction Type : REQUEST +04:35:43 Received From : +04:35:43 ============================================================================ +04:35:43 FNo. Len. Field Value +04:35:43 ============================================================================ +04:35:43 [ 1] [ 4] [0800] +04:35:43 [ 7] [ 10] [0319093450] +04:35:43 [ 11] [ 6] [154359] +04:35:43 [ 70] [ 3] [301] +04:35:43 ============================================================================ +04:35:43 + + +waiting on router queue for slot.... +04:35:43 Sending to : +04:35:43 ============================================================================ +04:35:43 ============================================================================ +04:35:43 Slot Id : <316> +04:35:43 Transaction Type : RESPONSE +04:35:43 Received From : +04:35:43 ============================================================================ +04:35:43 FNo. Len. Field Value +04:35:43 ============================================================================ +04:35:43 [ 1] [ 4] [0810] +04:35:43 [ 7] [ 10] [0319093450] +04:35:43 [ 11] [ 6] [154359] +04:35:43 [ 39] [ 2] [00] +04:35:43 [ 70] [ 3] [301] +04:35:43 ============================================================================ +04:35:43 Calculate Source COMM Id = 2 +04:35:43 ============================================================================ +04:35:43 + + +waiting on router queue for slot.... +04:35:53 ============================================================================ +04:35:53 Slot Id : <306> +04:35:53 Transaction Type : REQUEST +04:35:53 Received From : +04:35:53 ============================================================================ +04:35:53 FNo. Len. Field Value +04:35:53 ============================================================================ +04:35:53 [ 1] [ 4] [0800] +04:35:53 [ 7] [ 10] [0319093500] +04:35:53 [ 11] [ 6] [154360] +04:35:53 [ 70] [ 3] [301] +04:35:53 ============================================================================ +04:35:53 + + +waiting on router queue for slot.... +04:35:53 Sending to : +04:35:53 ============================================================================ +04:35:53 ============================================================================ +04:35:53 Slot Id : <306> +04:35:53 Transaction Type : RESPONSE +04:35:53 Received From : +04:35:53 ============================================================================ +04:35:53 FNo. Len. Field Value +04:35:53 ============================================================================ +04:35:53 [ 1] [ 4] [0810] +04:35:53 [ 7] [ 10] [0319093500] +04:35:53 [ 11] [ 6] [154360] +04:35:53 [ 39] [ 2] [00] +04:35:53 [ 70] [ 3] [301] +04:35:53 ============================================================================ +04:35:53 Calculate Source COMM Id = 2 +04:35:53 ============================================================================ +04:35:53 + + +waiting on router queue for slot.... +04:36:04 ============================================================================ +04:36:04 Slot Id : <286> +04:36:04 Transaction Type : REQUEST +04:36:04 Received From : +04:36:04 ============================================================================ +04:36:04 FNo. Len. Field Value +04:36:04 ============================================================================ +04:36:04 [ 1] [ 4] [0800] +04:36:04 [ 7] [ 10] [0319093511] +04:36:04 [ 11] [ 6] [154361] +04:36:04 [ 70] [ 3] [301] +04:36:04 ============================================================================ +04:36:04 + + +waiting on router queue for slot.... +04:36:04 Sending to : +04:36:04 ============================================================================ +04:36:04 ============================================================================ +04:36:04 Slot Id : <286> +04:36:04 Transaction Type : RESPONSE +04:36:04 Received From : +04:36:04 ============================================================================ +04:36:04 FNo. Len. Field Value +04:36:04 ============================================================================ +04:36:04 [ 1] [ 4] [0810] +04:36:04 [ 7] [ 10] [0319093511] +04:36:04 [ 11] [ 6] [154361] +04:36:04 [ 39] [ 2] [00] +04:36:04 [ 70] [ 3] [301] +04:36:04 ============================================================================ +04:36:04 Calculate Source COMM Id = 2 +04:36:04 ============================================================================ +04:36:04 + + +waiting on router queue for slot.... +04:36:13 ============================================================================ +04:36:13 Slot Id : <307> +04:36:13 Transaction Type : REQUEST +04:36:13 Received From : +04:36:13 ============================================================================ +04:36:13 FNo. Len. Field Value +04:36:13 ============================================================================ +04:36:13 [ 1] [ 4] [0800] +04:36:13 [ 7] [ 10] [0320114801] +04:36:13 [ 11] [ 6] [044801] +04:36:13 [ 37] [ 12] [57904044801] +04:36:13 [ 70] [ 3] [301] +04:36:13 ============================================================================ +04:36:13 + + +waiting on router queue for slot.... +04:36:13 Sending to : +04:36:13 ============================================================================ +04:36:13 ============================================================================ +04:36:13 Slot Id : <307> +04:36:13 Transaction Type : RESPONSE +04:36:13 Received From : +04:36:13 ============================================================================ +04:36:13 FNo. Len. Field Value +04:36:13 ============================================================================ +04:36:13 [ 1] [ 4] [0810] +04:36:13 [ 7] [ 10] [0320114801] +04:36:13 [ 11] [ 6] [044801] +04:36:13 [ 37] [ 12] [579040448010] +04:36:13 [ 39] [ 2] [00] +04:36:13 [ 70] [ 3] [810] +04:36:13 ============================================================================ +04:36:13 Calculate Source COMM Id = 6 +04:36:13 ============================================================================ +04:36:13 + + +waiting on router queue for slot.... +04:36:16 ============================================================================ +04:36:16 Slot Id : <317> +04:36:16 Transaction Type : REQUEST +04:36:16 Received From : +04:36:16 ============================================================================ +04:36:16 FNo. Len. Field Value +04:36:16 ============================================================================ +04:36:16 [ 1] [ 4] [0800] +04:36:16 [ 7] [ 10] [0319093522] +04:36:16 [ 11] [ 6] [154362] +04:36:16 [ 70] [ 3] [301] +04:36:16 ============================================================================ +04:36:16 + + +waiting on router queue for slot.... +04:36:16 Sending to : +04:36:16 ============================================================================ +04:36:16 ============================================================================ +04:36:16 Slot Id : <317> +04:36:16 Transaction Type : RESPONSE +04:36:16 Received From : +04:36:16 ============================================================================ +04:36:16 FNo. Len. Field Value +04:36:16 ============================================================================ +04:36:16 [ 1] [ 4] [0810] +04:36:16 [ 7] [ 10] [0319093522] +04:36:16 [ 11] [ 6] [154362] +04:36:16 [ 39] [ 2] [00] +04:36:16 [ 70] [ 3] [301] +04:36:16 ============================================================================ +04:36:16 Calculate Source COMM Id = 2 +04:36:16 ============================================================================ +04:36:16 + + +waiting on router queue for slot.... +04:36:22 ============================================================================ +04:36:22 Slot Id : <310> +04:36:22 Transaction Type : REQUEST +04:36:22 Received From : +04:36:22 ============================================================================ +04:36:22 FNo. Len. Field Value +04:36:22 ============================================================================ +04:36:22 [ 1] [ 4] [0800] +04:36:22 [ 7] [ 10] [0319213412] +04:36:22 [ 11] [ 6] [030394] +04:36:22 [ 37] [ 12] [57904030394] +04:36:22 [ 70] [ 3] [301] +04:36:22 ============================================================================ +04:36:22 + + +waiting on router queue for slot.... +04:36:22 Sending to : +04:36:22 ============================================================================ +04:36:22 ============================================================================ +04:36:22 Slot Id : <310> +04:36:22 Transaction Type : RESPONSE +04:36:22 Received From : +04:36:22 ============================================================================ +04:36:22 FNo. Len. Field Value +04:36:22 ============================================================================ +04:36:22 [ 1] [ 4] [0810] +04:36:22 [ 7] [ 10] [0319213412] +04:36:22 [ 11] [ 6] [030394] +04:36:22 [ 37] [ 12] [579040303940] +04:36:22 [ 39] [ 2] [00] +04:36:22 [ 70] [ 3] [810] +04:36:22 ============================================================================ +04:36:22 Calculate Source COMM Id = 4 +04:36:22 ============================================================================ +04:36:22 + + +waiting on router queue for slot.... +04:36:24 ============================================================================ +04:36:24 Slot Id : <318> +04:36:24 Transaction Type : REQUEST +04:36:24 Received From : +04:36:24 ============================================================================ +04:36:24 FNo. Len. Field Value +04:36:24 ============================================================================ +04:36:24 [ 1] [ 4] [0800] +04:36:24 [ 7] [ 10] [0320043610] +04:36:24 [ 11] [ 6] [022226] +04:36:24 [ 37] [ 12] [507904022226] +04:36:24 [ 70] [ 3] [ ] +04:36:24 ============================================================================ +04:36:24 + + +waiting on router queue for slot.... +04:36:24 Sending to : +04:36:24 ============================================================================ +04:36:24 ============================================================================ +04:36:24 Slot Id : <318> +04:36:24 Transaction Type : RESPONSE +04:36:24 Received From : +04:36:24 ============================================================================ +04:36:24 FNo. Len. Field Value +04:36:24 ============================================================================ +04:36:24 [ 1] [ 4] [0810] +04:36:24 [ 7] [ 10] [0320043610] +04:36:24 [ 11] [ 6] [022226] +04:36:24 [ 37] [ 12] [507904022226] +04:36:24 [ 39] [ 2] [91] +04:36:24 [ 70] [ 3] [ ] +04:36:24 ============================================================================ +04:36:24 Calculate Source COMM Id = 3 +04:36:24 ============================================================================ +04:36:24 + + +waiting on router queue for slot.... +04:36:30 ============================================================================ +04:36:30 Slot Id : <289> +04:36:30 Transaction Type : REQUEST +04:36:30 Received From : +04:36:30 ============================================================================ +04:36:30 FNo. Len. Field Value +04:36:30 ============================================================================ +04:36:30 [ 1] [ 4] [0800] +04:36:30 [ 2] [ 5] [02531] +04:36:30 [ 3] [ 6] [579048] +04:36:30 [ 7] [ 10] [0319213630] +04:36:30 [ 11] [ 6] [806679] +04:36:30 [ 15] [ 10] [0319213630] +04:36:30 [ 37] [ 11] [57904806679] +04:36:30 [ 70] [ 3] [001] +04:36:30 ============================================================================ +04:36:30 + + +waiting on router queue for slot.... +04:36:30 ============================================================================ +04:36:30 Slot Id : <289> +04:36:30 Transaction Type : RESPONSE +04:36:30 Received From : +04:36:30 ============================================================================ +04:36:30 FNo. Len. Field Value +04:36:30 ============================================================================ +04:36:30 [ 1] [ 4] [0810] +04:36:30 [ 7] [ 10] [0319213630] +04:36:30 [ 11] [ 6] [806679] +04:36:30 [ 15] [ 4] [0319] +04:36:30 [ 37] [ 12] [57904806679] +04:36:30 [ 39] [ 2] [00] +04:36:30 [ 70] [ 3] [001] +04:36:30 ============================================================================ +04:36:30 Sending to : +04:36:30 ============================================================================ +04:36:30 + + +waiting on router queue for slot.... +04:36:32 ============================================================================ +04:36:32 Slot Id : <315> +04:36:32 Transaction Type : REQUEST +04:36:32 Received From : +04:36:32 ============================================================================ +04:36:32 FNo. Len. Field Value +04:36:32 ============================================================================ +04:36:32 [ 1] [ 4] [0800] +04:36:32 [ 7] [ 10] [0319093539] +04:36:32 [ 11] [ 6] [154363] +04:36:32 [ 70] [ 3] [301] +04:36:32 ============================================================================ +04:36:32 + + +waiting on router queue for slot.... +04:36:32 Sending to : +04:36:32 ============================================================================ +04:36:32 ============================================================================ +04:36:32 Slot Id : <315> +04:36:32 Transaction Type : RESPONSE +04:36:32 Received From : +04:36:32 ============================================================================ +04:36:32 FNo. Len. Field Value +04:36:32 ============================================================================ +04:36:32 [ 1] [ 4] [0810] +04:36:32 [ 7] [ 10] [0319093539] +04:36:32 [ 11] [ 6] [154363] +04:36:32 [ 39] [ 2] [00] +04:36:32 [ 70] [ 3] [301] +04:36:32 ============================================================================ +04:36:32 Calculate Source COMM Id = 2 +04:36:32 ============================================================================ +04:36:32 + + +waiting on router queue for slot.... +04:36:46 ============================================================================ +04:36:46 Slot Id : <322> +04:36:46 Transaction Type : REQUEST +04:36:46 Received From : +04:36:46 ============================================================================ +04:36:46 FNo. Len. Field Value +04:36:46 ============================================================================ +04:36:46 [ 1] [ 4] [0800] +04:36:46 [ 7] [ 10] [0319093553] +04:36:46 [ 11] [ 6] [154364] +04:36:46 [ 70] [ 3] [301] +04:36:46 ============================================================================ +04:36:46 + + +waiting on router queue for slot.... +04:36:46 Sending to : +04:36:46 ============================================================================ +04:36:46 ============================================================================ +04:36:46 Slot Id : <322> +04:36:46 Transaction Type : RESPONSE +04:36:46 Received From : +04:36:46 ============================================================================ +04:36:46 FNo. Len. Field Value +04:36:46 ============================================================================ +04:36:46 [ 1] [ 4] [0810] +04:36:46 [ 7] [ 10] [0319093553] +04:36:46 [ 11] [ 6] [154364] +04:36:46 [ 39] [ 2] [00] +04:36:46 [ 70] [ 3] [301] +04:36:46 ============================================================================ +04:36:46 Calculate Source COMM Id = 2 +04:36:46 ============================================================================ +04:36:46 + + +waiting on router queue for slot.... +04:36:57 ============================================================================ +04:36:57 Slot Id : <304> +04:36:57 Transaction Type : REQUEST +04:36:57 Received From : +04:36:57 ============================================================================ +04:36:57 FNo. Len. Field Value +04:36:57 ============================================================================ +04:36:57 [ 1] [ 4] [0800] +04:36:57 [ 7] [ 10] [0319093603] +04:36:57 [ 11] [ 6] [154365] +04:36:57 [ 70] [ 3] [301] +04:36:57 ============================================================================ +04:36:57 + + +waiting on router queue for slot.... +04:36:57 Sending to : +04:36:57 ============================================================================ +04:36:57 ============================================================================ +04:36:57 Slot Id : <304> +04:36:57 Transaction Type : RESPONSE +04:36:57 Received From : +04:36:57 ============================================================================ +04:36:57 FNo. Len. Field Value +04:36:57 ============================================================================ +04:36:57 [ 1] [ 4] [0810] +04:36:57 [ 7] [ 10] [0319093603] +04:36:57 [ 11] [ 6] [154365] +04:36:57 [ 39] [ 2] [00] +04:36:57 [ 70] [ 3] [301] +04:36:57 ============================================================================ +04:36:57 Calculate Source COMM Id = 2 +04:36:57 ============================================================================ +04:36:57 + + +waiting on router queue for slot.... +04:37:08 ============================================================================ +04:37:08 Slot Id : <325> +04:37:08 Transaction Type : REQUEST +04:37:08 Received From : +04:37:08 ============================================================================ +04:37:08 FNo. Len. Field Value +04:37:08 ============================================================================ +04:37:08 [ 1] [ 4] [0800] +04:37:08 [ 7] [ 10] [0319093615] +04:37:08 [ 11] [ 6] [154366] +04:37:08 [ 70] [ 3] [301] +04:37:08 ============================================================================ +04:37:08 + + +waiting on router queue for slot.... +04:37:08 Sending to : +04:37:08 ============================================================================ +04:37:08 ============================================================================ +04:37:08 Slot Id : <325> +04:37:08 Transaction Type : RESPONSE +04:37:08 Received From : +04:37:08 ============================================================================ +04:37:08 FNo. Len. Field Value +04:37:08 ============================================================================ +04:37:08 [ 1] [ 4] [0810] +04:37:08 [ 7] [ 10] [0319093615] +04:37:08 [ 11] [ 6] [154366] +04:37:08 [ 39] [ 2] [00] +04:37:08 [ 70] [ 3] [301] +04:37:08 ============================================================================ +04:37:08 Calculate Source COMM Id = 2 +04:37:08 ============================================================================ +04:37:08 + + +waiting on router queue for slot.... +04:37:18 ============================================================================ +04:37:18 Slot Id : <285> +04:37:18 Transaction Type : REQUEST +04:37:18 Received From : +04:37:18 ============================================================================ +04:37:18 FNo. Len. Field Value +04:37:18 ============================================================================ +04:37:18 [ 1] [ 4] [0800] +04:37:18 [ 7] [ 10] [0320114906] +04:37:18 [ 11] [ 6] [044906] +04:37:18 [ 37] [ 12] [57904044906] +04:37:18 [ 70] [ 3] [301] +04:37:18 ============================================================================ +04:37:18 + + +waiting on router queue for slot.... +04:37:18 Sending to : +04:37:18 ============================================================================ +04:37:18 ============================================================================ +04:37:18 Slot Id : <285> +04:37:18 Transaction Type : RESPONSE +04:37:18 Received From : +04:37:18 ============================================================================ +04:37:18 FNo. Len. Field Value +04:37:18 ============================================================================ +04:37:18 [ 1] [ 4] [0810] +04:37:18 [ 7] [ 10] [0320114906] +04:37:18 [ 11] [ 6] [044906] +04:37:18 [ 37] [ 12] [579040449060] +04:37:18 [ 39] [ 2] [00] +04:37:18 [ 70] [ 3] [810] +04:37:18 ============================================================================ +04:37:18 Calculate Source COMM Id = 6 +04:37:18 ============================================================================ +04:37:18 + + +waiting on router queue for slot.... +04:37:20 ============================================================================ +04:37:20 Slot Id : <297> +04:37:20 Transaction Type : REQUEST +04:37:20 Received From : +04:37:20 ============================================================================ +04:37:20 FNo. Len. Field Value +04:37:20 ============================================================================ +04:37:20 [ 1] [ 4] [0800] +04:37:20 [ 7] [ 10] [0319093626] +04:37:20 [ 11] [ 6] [154367] +04:37:20 [ 70] [ 3] [301] +04:37:20 ============================================================================ +04:37:20 + + +waiting on router queue for slot.... +04:37:20 Sending to : +04:37:20 ============================================================================ +04:37:20 ============================================================================ +04:37:20 Slot Id : <297> +04:37:20 Transaction Type : RESPONSE +04:37:20 Received From : +04:37:20 ============================================================================ +04:37:20 FNo. Len. Field Value +04:37:20 ============================================================================ +04:37:20 [ 1] [ 4] [0810] +04:37:20 [ 7] [ 10] [0319093626] +04:37:20 [ 11] [ 6] [154367] +04:37:20 [ 39] [ 2] [00] +04:37:20 [ 70] [ 3] [301] +04:37:20 ============================================================================ +04:37:20 Calculate Source COMM Id = 2 +04:37:20 ============================================================================ +04:37:20 + + +waiting on router queue for slot.... +04:37:32 ============================================================================ +04:37:32 Slot Id : <291> +04:37:32 Transaction Type : REQUEST +04:37:32 Received From : +04:37:32 ============================================================================ +04:37:32 FNo. Len. Field Value +04:37:32 ============================================================================ +04:37:32 [ 1] [ 4] [0800] +04:37:32 [ 2] [ 5] [02531] +04:37:32 [ 3] [ 6] [579048] +04:37:32 [ 7] [ 10] [0319213732] +04:37:32 [ 11] [ 6] [806680] +04:37:32 [ 15] [ 10] [0319213732] +04:37:32 [ 37] [ 11] [57904806680] +04:37:32 [ 70] [ 3] [001] +04:37:32 ============================================================================ +04:37:32 + + +waiting on router queue for slot.... +04:37:32 ============================================================================ +04:37:32 Slot Id : <291> +04:37:32 Transaction Type : RESPONSE +04:37:32 Received From : +04:37:32 ============================================================================ +04:37:32 FNo. Len. Field Value +04:37:32 ============================================================================ +04:37:32 [ 1] [ 4] [0810] +04:37:32 [ 7] [ 10] [0319213732] +04:37:32 [ 11] [ 6] [806680] +04:37:32 [ 15] [ 4] [0319] +04:37:32 [ 37] [ 12] [57904806680] +04:37:32 [ 39] [ 2] [00] +04:37:32 [ 70] [ 3] [001] +04:37:32 ============================================================================ +04:37:32 Sending to : +04:37:32 ============================================================================ +04:37:32 + + +waiting on router queue for slot.... +04:37:35 ============================================================================ +04:37:35 Slot Id : <326> +04:37:35 Transaction Type : REQUEST +04:37:35 Received From : +04:37:35 ============================================================================ +04:37:35 FNo. Len. Field Value +04:37:35 ============================================================================ +04:37:35 [ 1] [ 4] [0800] +04:37:35 [ 7] [ 10] [0319093642] +04:37:35 [ 11] [ 6] [154368] +04:37:35 [ 70] [ 3] [301] +04:37:35 ============================================================================ +04:37:35 + + +waiting on router queue for slot.... +04:37:35 Sending to : +04:37:35 ============================================================================ +04:37:35 ============================================================================ +04:37:35 Slot Id : <326> +04:37:35 Transaction Type : RESPONSE +04:37:35 Received From : +04:37:35 ============================================================================ +04:37:35 FNo. Len. Field Value +04:37:35 ============================================================================ +04:37:35 [ 1] [ 4] [0810] +04:37:35 [ 7] [ 10] [0319093642] +04:37:35 [ 11] [ 6] [154368] +04:37:35 [ 39] [ 2] [00] +04:37:35 [ 70] [ 3] [301] +04:37:35 ============================================================================ +04:37:35 Calculate Source COMM Id = 2 +04:37:35 ============================================================================ +04:37:35 + + +waiting on router queue for slot.... +04:37:51 ============================================================================ +04:37:51 Slot Id : <305> +04:37:51 Transaction Type : REQUEST +04:37:51 Received From : +04:37:51 ============================================================================ +04:37:51 FNo. Len. Field Value +04:37:51 ============================================================================ +04:37:51 [ 1] [ 4] [0800] +04:37:51 [ 7] [ 10] [0319093658] +04:37:51 [ 11] [ 6] [154369] +04:37:51 [ 70] [ 3] [301] +04:37:51 ============================================================================ +04:37:51 + + +waiting on router queue for slot.... +04:37:51 Sending to : +04:37:51 ============================================================================ +04:37:51 ============================================================================ +04:37:51 Slot Id : <305> +04:37:51 Transaction Type : RESPONSE +04:37:51 Received From : +04:37:51 ============================================================================ +04:37:51 FNo. Len. Field Value +04:37:51 ============================================================================ +04:37:51 [ 1] [ 4] [0810] +04:37:51 [ 7] [ 10] [0319093658] +04:37:51 [ 11] [ 6] [154369] +04:37:51 [ 39] [ 2] [00] +04:37:51 [ 70] [ 3] [301] +04:37:51 ============================================================================ +04:37:51 Calculate Source COMM Id = 2 +04:37:51 ============================================================================ +04:37:51 + + +waiting on router queue for slot.... +04:38:03 ============================================================================ +04:38:03 Slot Id : <301> +04:38:03 Transaction Type : REQUEST +04:38:03 Received From : +04:38:03 ============================================================================ +04:38:03 FNo. Len. Field Value +04:38:03 ============================================================================ +04:38:03 [ 1] [ 4] [0800] +04:38:03 [ 7] [ 10] [0319093709] +04:38:03 [ 11] [ 6] [154370] +04:38:03 [ 70] [ 3] [301] +04:38:03 ============================================================================ +04:38:03 + + +waiting on router queue for slot.... +04:38:03 Sending to : +04:38:03 ============================================================================ +04:38:03 ============================================================================ +04:38:03 Slot Id : <301> +04:38:03 Transaction Type : RESPONSE +04:38:03 Received From : +04:38:03 ============================================================================ +04:38:03 FNo. Len. Field Value +04:38:03 ============================================================================ +04:38:03 [ 1] [ 4] [0810] +04:38:03 [ 7] [ 10] [0319093709] +04:38:03 [ 11] [ 6] [154370] +04:38:03 [ 39] [ 2] [00] +04:38:03 [ 70] [ 3] [301] +04:38:03 ============================================================================ +04:38:03 Calculate Source COMM Id = 2 +04:38:03 ============================================================================ +04:38:03 + + +waiting on router queue for slot.... +04:38:19 ============================================================================ +04:38:19 Slot Id : <327> +04:38:19 Transaction Type : REQUEST +04:38:19 Received From : +04:38:19 ============================================================================ +04:38:19 FNo. Len. Field Value +04:38:19 ============================================================================ +04:38:19 [ 1] [ 4] [0800] +04:38:19 [ 7] [ 10] [0319093726] +04:38:19 [ 11] [ 6] [154371] +04:38:19 [ 70] [ 3] [301] +04:38:19 ============================================================================ +04:38:19 + + +waiting on router queue for slot.... +04:38:19 Sending to : +04:38:19 ============================================================================ +04:38:19 ============================================================================ +04:38:19 Slot Id : <327> +04:38:19 Transaction Type : RESPONSE +04:38:19 Received From : +04:38:19 ============================================================================ +04:38:19 FNo. Len. Field Value +04:38:19 ============================================================================ +04:38:19 [ 1] [ 4] [0810] +04:38:19 [ 7] [ 10] [0319093726] +04:38:19 [ 11] [ 6] [154371] +04:38:19 [ 39] [ 2] [00] +04:38:19 [ 70] [ 3] [301] +04:38:19 ============================================================================ +04:38:19 Calculate Source COMM Id = 2 +04:38:19 ============================================================================ +04:38:19 + + +waiting on router queue for slot.... +04:38:23 ============================================================================ +04:38:23 Slot Id : <333> +04:38:23 Transaction Type : REQUEST +04:38:23 Received From : +04:38:23 ============================================================================ +04:38:23 FNo. Len. Field Value +04:38:23 ============================================================================ +04:38:23 [ 1] [ 4] [0800] +04:38:23 [ 7] [ 10] [0320115011] +04:38:23 [ 11] [ 6] [045011] +04:38:23 [ 37] [ 12] [57904045011] +04:38:23 [ 70] [ 3] [301] +04:38:23 ============================================================================ +04:38:23 + + +waiting on router queue for slot.... +04:38:23 Sending to : +04:38:23 ============================================================================ +04:38:23 ============================================================================ +04:38:23 Slot Id : <333> +04:38:23 Transaction Type : RESPONSE +04:38:23 Received From : +04:38:23 ============================================================================ +04:38:23 FNo. Len. Field Value +04:38:23 ============================================================================ +04:38:23 [ 1] [ 4] [0810] +04:38:23 [ 7] [ 10] [0320115011] +04:38:23 [ 11] [ 6] [045011] +04:38:23 [ 37] [ 12] [579040450110] +04:38:23 [ 39] [ 2] [00] +04:38:23 [ 70] [ 3] [810] +04:38:23 ============================================================================ +04:38:23 Calculate Source COMM Id = 6 +04:38:23 ============================================================================ +04:38:23 + + +waiting on router queue for slot.... +04:38:30 ============================================================================ +04:38:30 Slot Id : <314> +04:38:30 Transaction Type : REQUEST +04:38:30 Received From : +04:38:30 ============================================================================ +04:38:30 FNo. Len. Field Value +04:38:30 ============================================================================ +04:38:30 [ 1] [ 4] [0800] +04:38:30 [ 7] [ 10] [0319093737] +04:38:30 [ 11] [ 6] [154372] +04:38:30 [ 70] [ 3] [301] +04:38:30 ============================================================================ +04:38:30 + + +waiting on router queue for slot.... +04:38:30 Sending to : +04:38:30 ============================================================================ +04:38:30 ============================================================================ +04:38:30 Slot Id : <314> +04:38:30 Transaction Type : RESPONSE +04:38:30 Received From : +04:38:30 ============================================================================ +04:38:30 FNo. Len. Field Value +04:38:30 ============================================================================ +04:38:30 [ 1] [ 4] [0810] +04:38:30 [ 7] [ 10] [0319093737] +04:38:30 [ 11] [ 6] [154372] +04:38:30 [ 39] [ 2] [00] +04:38:30 [ 70] [ 3] [301] +04:38:30 ============================================================================ +04:38:30 Calculate Source COMM Id = 2 +04:38:30 ============================================================================ +04:38:30 + + +waiting on router queue for slot.... +04:38:34 ============================================================================ +04:38:34 Slot Id : <331> +04:38:34 Transaction Type : REQUEST +04:38:34 Received From : +04:38:34 ============================================================================ +04:38:34 FNo. Len. Field Value +04:38:34 ============================================================================ +04:38:34 [ 1] [ 4] [0800] +04:38:34 [ 2] [ 5] [02531] +04:38:34 [ 3] [ 6] [579048] +04:38:34 [ 7] [ 10] [0319213834] +04:38:34 [ 11] [ 6] [806681] +04:38:34 [ 15] [ 10] [0319213834] +04:38:34 [ 37] [ 11] [57904806681] +04:38:34 [ 70] [ 3] [001] +04:38:34 ============================================================================ +04:38:34 + + +waiting on router queue for slot.... +04:38:34 ============================================================================ +04:38:34 Slot Id : <331> +04:38:34 Transaction Type : RESPONSE +04:38:34 Received From : +04:38:34 ============================================================================ +04:38:34 FNo. Len. Field Value +04:38:34 ============================================================================ +04:38:34 [ 1] [ 4] [0810] +04:38:34 [ 7] [ 10] [0319213834] +04:38:34 [ 11] [ 6] [806681] +04:38:34 [ 15] [ 4] [0319] +04:38:34 [ 37] [ 12] [57904806681] +04:38:34 [ 39] [ 2] [00] +04:38:34 [ 70] [ 3] [001] +04:38:34 ============================================================================ +04:38:34 Sending to : +04:38:34 ============================================================================ +04:38:34 + + +waiting on router queue for slot.... +04:38:42 ============================================================================ +04:38:42 Slot Id : <321> +04:38:42 Transaction Type : REQUEST +04:38:42 Received From : +04:38:42 ============================================================================ +04:38:42 FNo. Len. Field Value +04:38:42 ============================================================================ +04:38:42 [ 1] [ 4] [0800] +04:38:42 [ 7] [ 10] [0319093749] +04:38:42 [ 11] [ 6] [154373] +04:38:42 [ 70] [ 3] [301] +04:38:42 ============================================================================ +04:38:42 + + +waiting on router queue for slot.... +04:38:42 Sending to : +04:38:42 ============================================================================ +04:38:42 ============================================================================ +04:38:42 Slot Id : <321> +04:38:42 Transaction Type : RESPONSE +04:38:42 Received From : +04:38:42 ============================================================================ +04:38:42 FNo. Len. Field Value +04:38:42 ============================================================================ +04:38:42 [ 1] [ 4] [0810] +04:38:42 [ 7] [ 10] [0319093749] +04:38:42 [ 11] [ 6] [154373] +04:38:42 [ 39] [ 2] [00] +04:38:42 [ 70] [ 3] [301] +04:38:42 ============================================================================ +04:38:42 Calculate Source COMM Id = 2 +04:38:42 ============================================================================ +04:38:42 + + +waiting on router queue for slot.... +04:38:52 ============================================================================ +04:38:52 Slot Id : <336> +04:38:52 Transaction Type : REQUEST +04:38:52 Received From : +04:38:52 ============================================================================ +04:38:52 FNo. Len. Field Value +04:38:52 ============================================================================ +04:38:52 [ 1] [ 4] [0800] +04:38:52 [ 7] [ 10] [0319093759] +04:38:52 [ 11] [ 6] [154374] +04:38:52 [ 70] [ 3] [301] +04:38:52 ============================================================================ +04:38:52 + + +waiting on router queue for slot.... +04:38:52 Sending to : +04:38:52 ============================================================================ +04:38:52 ============================================================================ +04:38:52 Slot Id : <336> +04:38:52 Transaction Type : RESPONSE +04:38:52 Received From : +04:38:52 ============================================================================ +04:38:52 FNo. Len. Field Value +04:38:52 ============================================================================ +04:38:52 [ 1] [ 4] [0810] +04:38:52 [ 7] [ 10] [0319093759] +04:38:52 [ 11] [ 6] [154374] +04:38:52 [ 39] [ 2] [00] +04:38:52 [ 70] [ 3] [301] +04:38:52 ============================================================================ +04:38:52 Calculate Source COMM Id = 2 +04:38:52 ============================================================================ +04:38:52 + + +waiting on router queue for slot.... +04:39:03 ============================================================================ +04:39:03 Slot Id : <334> +04:39:03 Transaction Type : REQUEST +04:39:03 Received From : +04:39:03 ============================================================================ +04:39:03 FNo. Len. Field Value +04:39:03 ============================================================================ +04:39:03 [ 1] [ 4] [0800] +04:39:03 [ 7] [ 10] [0319093810] +04:39:03 [ 11] [ 6] [154375] +04:39:03 [ 70] [ 3] [301] +04:39:03 ============================================================================ +04:39:03 + + +waiting on router queue for slot.... +04:39:03 Sending to : +04:39:03 ============================================================================ +04:39:03 ============================================================================ +04:39:03 Slot Id : <334> +04:39:03 Transaction Type : RESPONSE +04:39:03 Received From : +04:39:03 ============================================================================ +04:39:03 FNo. Len. Field Value +04:39:03 ============================================================================ +04:39:03 [ 1] [ 4] [0810] +04:39:03 [ 7] [ 10] [0319093810] +04:39:03 [ 11] [ 6] [154375] +04:39:03 [ 39] [ 2] [00] +04:39:03 [ 70] [ 3] [301] +04:39:03 ============================================================================ +04:39:03 Calculate Source COMM Id = 2 +04:39:03 ============================================================================ +04:39:03 + + +waiting on router queue for slot.... +04:39:18 ============================================================================ +04:39:18 Slot Id : <337> +04:39:18 Transaction Type : REQUEST +04:39:18 Received From : +04:39:18 ============================================================================ +04:39:18 FNo. Len. Field Value +04:39:18 ============================================================================ +04:39:18 [ 1] [ 4] [0800] +04:39:18 [ 7] [ 10] [0319093825] +04:39:18 [ 11] [ 6] [154376] +04:39:18 [ 70] [ 3] [301] +04:39:18 ============================================================================ +04:39:18 + + +waiting on router queue for slot.... +04:39:18 Sending to : +04:39:18 ============================================================================ +04:39:18 ============================================================================ +04:39:18 Slot Id : <337> +04:39:18 Transaction Type : RESPONSE +04:39:18 Received From : +04:39:18 ============================================================================ +04:39:18 FNo. Len. Field Value +04:39:18 ============================================================================ +04:39:18 [ 1] [ 4] [0810] +04:39:18 [ 7] [ 10] [0319093825] +04:39:18 [ 11] [ 6] [154376] +04:39:18 [ 39] [ 2] [00] +04:39:18 [ 70] [ 3] [301] +04:39:18 ============================================================================ +04:39:18 Calculate Source COMM Id = 2 +04:39:18 ============================================================================ +04:39:18 + + +waiting on router queue for slot.... +04:39:28 ============================================================================ +04:39:28 Slot Id : <335> +04:39:28 Transaction Type : REQUEST +04:39:28 Received From : +04:39:28 ============================================================================ +04:39:28 FNo. Len. Field Value +04:39:28 ============================================================================ +04:39:28 [ 1] [ 4] [0800] +04:39:28 [ 7] [ 10] [0320115116] +04:39:28 [ 11] [ 6] [045116] +04:39:28 [ 37] [ 12] [57904045116] +04:39:28 [ 70] [ 3] [301] +04:39:28 ============================================================================ +04:39:28 + + +waiting on router queue for slot.... +04:39:28 Sending to : +04:39:28 ============================================================================ +04:39:28 ============================================================================ +04:39:28 Slot Id : <335> +04:39:28 Transaction Type : RESPONSE +04:39:28 Received From : +04:39:28 ============================================================================ +04:39:28 FNo. Len. Field Value +04:39:28 ============================================================================ +04:39:28 [ 1] [ 4] [0810] +04:39:28 [ 7] [ 10] [0320115116] +04:39:28 [ 11] [ 6] [045116] +04:39:28 [ 37] [ 12] [579040451160] +04:39:28 [ 39] [ 2] [00] +04:39:28 [ 70] [ 3] [810] +04:39:28 ============================================================================ +04:39:28 Calculate Source COMM Id = 6 +04:39:28 ============================================================================ +04:39:28 + + +waiting on router queue for slot.... +04:39:34 ============================================================================ +04:39:34 Slot Id : <342> +04:39:34 Transaction Type : REQUEST +04:39:34 Received From : +04:39:34 ============================================================================ +04:39:34 FNo. Len. Field Value +04:39:34 ============================================================================ +04:39:34 [ 1] [ 4] [0800] +04:39:34 [ 7] [ 10] [0319093840] +04:39:34 [ 11] [ 6] [154377] +04:39:34 [ 70] [ 3] [301] +04:39:34 ============================================================================ +04:39:34 + + +waiting on router queue for slot.... +04:39:34 Sending to : +04:39:34 ============================================================================ +04:39:34 ============================================================================ +04:39:34 Slot Id : <342> +04:39:34 Transaction Type : RESPONSE +04:39:34 Received From : +04:39:34 ============================================================================ +04:39:34 FNo. Len. Field Value +04:39:34 ============================================================================ +04:39:34 [ 1] [ 4] [0810] +04:39:34 [ 7] [ 10] [0319093840] +04:39:34 [ 11] [ 6] [154377] +04:39:34 [ 39] [ 2] [00] +04:39:34 [ 70] [ 3] [301] +04:39:34 ============================================================================ +04:39:34 Calculate Source COMM Id = 2 +04:39:34 ============================================================================ +04:39:34 + + +waiting on router queue for slot.... +04:39:36 ============================================================================ +04:39:36 Slot Id : <320> +04:39:36 Transaction Type : REQUEST +04:39:36 Received From : +04:39:36 ============================================================================ +04:39:36 FNo. Len. Field Value +04:39:36 ============================================================================ +04:39:36 [ 1] [ 4] [0800] +04:39:36 [ 2] [ 5] [02531] +04:39:36 [ 3] [ 6] [579048] +04:39:36 [ 7] [ 10] [0319213936] +04:39:36 [ 11] [ 6] [806682] +04:39:36 [ 15] [ 10] [0319213936] +04:39:36 [ 37] [ 11] [57904806682] +04:39:36 [ 70] [ 3] [001] +04:39:36 ============================================================================ +04:39:36 + + +waiting on router queue for slot.... +04:39:36 ============================================================================ +04:39:36 Slot Id : <320> +04:39:36 Transaction Type : RESPONSE +04:39:36 Received From : +04:39:36 ============================================================================ +04:39:36 FNo. Len. Field Value +04:39:36 ============================================================================ +04:39:36 [ 1] [ 4] [0810] +04:39:36 [ 7] [ 10] [0319213936] +04:39:36 [ 11] [ 6] [806682] +04:39:36 [ 15] [ 4] [0319] +04:39:36 [ 37] [ 12] [57904806682] +04:39:36 [ 39] [ 2] [00] +04:39:36 [ 70] [ 3] [001] +04:39:36 ============================================================================ +04:39:36 Sending to : +04:39:36 ============================================================================ +04:39:36 + + +waiting on router queue for slot.... +04:39:44 ============================================================================ +04:39:44 Slot Id : <341> +04:39:44 Transaction Type : REQUEST +04:39:44 Received From : +04:39:44 ============================================================================ +04:39:44 FNo. Len. Field Value +04:39:44 ============================================================================ +04:39:44 [ 1] [ 4] [0800] +04:39:44 [ 7] [ 10] [0319093851] +04:39:44 [ 11] [ 6] [154378] +04:39:44 [ 70] [ 3] [301] +04:39:44 ============================================================================ +04:39:44 + + +waiting on router queue for slot.... +04:39:44 Sending to : +04:39:44 ============================================================================ +04:39:44 ============================================================================ +04:39:44 Slot Id : <341> +04:39:44 Transaction Type : RESPONSE +04:39:44 Received From : +04:39:44 ============================================================================ +04:39:44 FNo. Len. Field Value +04:39:44 ============================================================================ +04:39:44 [ 1] [ 4] [0810] +04:39:44 [ 7] [ 10] [0319093851] +04:39:44 [ 11] [ 6] [154378] +04:39:44 [ 39] [ 2] [00] +04:39:44 [ 70] [ 3] [301] +04:39:44 ============================================================================ +04:39:44 Calculate Source COMM Id = 2 +04:39:44 ============================================================================ +04:39:44 + + +waiting on router queue for slot.... +04:39:55 ============================================================================ +04:39:55 Slot Id : <268> +04:39:55 Transaction Type : REQUEST +04:39:55 Received From : +04:39:55 ============================================================================ +04:39:55 FNo. Len. Field Value +04:39:55 ============================================================================ +04:39:55 [ 1] [ 4] [0800] +04:39:55 [ 7] [ 10] [0319093901] +04:39:55 [ 11] [ 6] [154379] +04:39:55 [ 70] [ 3] [301] +04:39:55 ============================================================================ +04:39:55 + + +waiting on router queue for slot.... +04:39:55 Sending to : +04:39:55 ============================================================================ +04:39:55 ============================================================================ +04:39:55 Slot Id : <268> +04:39:55 Transaction Type : RESPONSE +04:39:55 Received From : +04:39:55 ============================================================================ +04:39:55 FNo. Len. Field Value +04:39:55 ============================================================================ +04:39:55 [ 1] [ 4] [0810] +04:39:55 [ 7] [ 10] [0319093901] +04:39:55 [ 11] [ 6] [154379] +04:39:55 [ 39] [ 2] [00] +04:39:55 [ 70] [ 3] [301] +04:39:55 ============================================================================ +04:39:55 Calculate Source COMM Id = 2 +04:39:55 ============================================================================ +04:39:55 + + +waiting on router queue for slot.... +04:39:56 ============================================================================ +04:39:56 Slot Id : <345> +04:39:56 Transaction Type : REQUEST +04:39:56 Received From : +04:39:56 ============================================================================ +04:39:56 FNo. Len. Field Value +04:39:56 ============================================================================ +04:39:56 [ 1] [ 4] [0800] +04:39:56 [ 7] [ 10] [0319214742] +04:39:56 [ 11] [ 6] [079998] +04:39:56 [ 37] [ 12] [57904079998] +04:39:56 [ 70] [ 3] [301] +04:39:56 ============================================================================ +04:39:56 + + +waiting on router queue for slot.... +04:39:56 Sending to : +04:39:56 ============================================================================ +04:39:56 ============================================================================ +04:39:56 Slot Id : <345> +04:39:56 Transaction Type : RESPONSE +04:39:56 Received From : +04:39:56 ============================================================================ +04:39:56 FNo. Len. Field Value +04:39:56 ============================================================================ +04:39:56 [ 1] [ 4] [0810] +04:39:56 [ 7] [ 10] [0319214742] +04:39:56 [ 11] [ 6] [079998] +04:39:56 [ 37] [ 12] [579040799980] +04:39:56 [ 39] [ 2] [00] +04:39:56 [ 70] [ 3] [810] +04:39:56 ============================================================================ +04:39:56 Calculate Source COMM Id = 1 +04:39:56 ============================================================================ +04:39:56 + + +waiting on router queue for slot.... +04:40:12 ============================================================================ +04:40:12 Slot Id : <344> +04:40:12 Transaction Type : REQUEST +04:40:12 Received From : +04:40:12 ============================================================================ +04:40:12 FNo. Len. Field Value +04:40:12 ============================================================================ +04:40:12 [ 1] [ 4] [0800] +04:40:12 [ 7] [ 10] [0319093919] +04:40:12 [ 11] [ 6] [154380] +04:40:12 [ 70] [ 3] [301] +04:40:12 ============================================================================ +04:40:12 + + +waiting on router queue for slot.... +04:40:12 Sending to : +04:40:12 ============================================================================ +04:40:12 ============================================================================ +04:40:12 Slot Id : <344> +04:40:12 Transaction Type : RESPONSE +04:40:12 Received From : +04:40:12 ============================================================================ +04:40:12 FNo. Len. Field Value +04:40:12 ============================================================================ +04:40:12 [ 1] [ 4] [0810] +04:40:12 [ 7] [ 10] [0319093919] +04:40:12 [ 11] [ 6] [154380] +04:40:12 [ 39] [ 2] [00] +04:40:12 [ 70] [ 3] [301] +04:40:12 ============================================================================ +04:40:12 Calculate Source COMM Id = 2 +04:40:12 ============================================================================ +04:40:12 + + +waiting on router queue for slot.... +04:40:27 ============================================================================ +04:40:27 Slot Id : <329> +04:40:27 Transaction Type : REQUEST +04:40:27 Received From : +04:40:27 ============================================================================ +04:40:27 FNo. Len. Field Value +04:40:27 ============================================================================ +04:40:27 [ 1] [ 4] [0800] +04:40:27 [ 7] [ 10] [0319093934] +04:40:27 [ 11] [ 6] [154381] +04:40:27 [ 70] [ 3] [301] +04:40:27 ============================================================================ +04:40:27 + + +waiting on router queue for slot.... +04:40:27 Sending to : +04:40:27 ============================================================================ +04:40:27 ============================================================================ +04:40:27 Slot Id : <329> +04:40:27 Transaction Type : RESPONSE +04:40:27 Received From : +04:40:27 ============================================================================ +04:40:27 FNo. Len. Field Value +04:40:27 ============================================================================ +04:40:27 [ 1] [ 4] [0810] +04:40:27 [ 7] [ 10] [0319093934] +04:40:27 [ 11] [ 6] [154381] +04:40:27 [ 39] [ 2] [00] +04:40:27 [ 70] [ 3] [301] +04:40:27 ============================================================================ +04:40:27 Calculate Source COMM Id = 2 +04:40:27 ============================================================================ +04:40:27 + + +waiting on router queue for slot.... +04:40:33 ============================================================================ +04:40:33 Slot Id : <339> +04:40:33 Transaction Type : REQUEST +04:40:33 Received From : +04:40:33 ============================================================================ +04:40:33 FNo. Len. Field Value +04:40:33 ============================================================================ +04:40:33 [ 1] [ 4] [0800] +04:40:33 [ 7] [ 10] [0320115221] +04:40:33 [ 11] [ 6] [045221] +04:40:33 [ 37] [ 12] [57904045221] +04:40:33 [ 70] [ 3] [301] +04:40:33 ============================================================================ +04:40:33 + + +waiting on router queue for slot.... +04:40:33 Sending to : +04:40:33 ============================================================================ +04:40:33 ============================================================================ +04:40:33 Slot Id : <339> +04:40:33 Transaction Type : RESPONSE +04:40:33 Received From : +04:40:33 ============================================================================ +04:40:33 FNo. Len. Field Value +04:40:33 ============================================================================ +04:40:33 [ 1] [ 4] [0810] +04:40:33 [ 7] [ 10] [0320115221] +04:40:33 [ 11] [ 6] [045221] +04:40:33 [ 37] [ 12] [579040452210] +04:40:33 [ 39] [ 2] [00] +04:40:33 [ 70] [ 3] [810] +04:40:33 ============================================================================ +04:40:33 Calculate Source COMM Id = 6 +04:40:33 ============================================================================ +04:40:33 + + +waiting on router queue for slot.... +04:40:37 ============================================================================ +04:40:37 Slot Id : <323> +04:40:37 Transaction Type : REQUEST +04:40:37 Received From : +04:40:37 ============================================================================ +04:40:37 FNo. Len. Field Value +04:40:37 ============================================================================ +04:40:37 [ 1] [ 4] [0800] +04:40:37 [ 7] [ 10] [0319093944] +04:40:37 [ 11] [ 6] [154382] +04:40:37 [ 70] [ 3] [301] +04:40:37 ============================================================================ +04:40:37 + + +waiting on router queue for slot.... +04:40:37 Sending to : +04:40:37 ============================================================================ +04:40:37 ============================================================================ +04:40:37 Slot Id : <323> +04:40:37 Transaction Type : RESPONSE +04:40:37 Received From : +04:40:37 ============================================================================ +04:40:37 FNo. Len. Field Value +04:40:37 ============================================================================ +04:40:37 [ 1] [ 4] [0810] +04:40:37 [ 7] [ 10] [0319093944] +04:40:37 [ 11] [ 6] [154382] +04:40:37 [ 39] [ 2] [00] +04:40:37 [ 70] [ 3] [301] +04:40:37 ============================================================================ +04:40:37 Calculate Source COMM Id = 2 +04:40:37 ============================================================================ +04:40:37 + + +waiting on router queue for slot.... +04:40:38 ============================================================================ +04:40:38 Slot Id : <309> +04:40:38 Transaction Type : REQUEST +04:40:38 Received From : +04:40:38 ============================================================================ +04:40:38 FNo. Len. Field Value +04:40:38 ============================================================================ +04:40:38 [ 1] [ 4] [0800] +04:40:38 [ 2] [ 5] [02531] +04:40:38 [ 3] [ 6] [579048] +04:40:38 [ 7] [ 10] [0319214038] +04:40:38 [ 11] [ 6] [806683] +04:40:38 [ 15] [ 10] [0319214038] +04:40:38 [ 37] [ 11] [57904806683] +04:40:38 [ 70] [ 3] [001] +04:40:38 ============================================================================ +04:40:38 + + +waiting on router queue for slot.... +04:40:38 ============================================================================ +04:40:38 Slot Id : <309> +04:40:38 Transaction Type : RESPONSE +04:40:38 Received From : +04:40:38 ============================================================================ +04:40:38 FNo. Len. Field Value +04:40:38 ============================================================================ +04:40:38 [ 1] [ 4] [0810] +04:40:38 [ 7] [ 10] [0319214038] +04:40:38 [ 11] [ 6] [806683] +04:40:38 [ 15] [ 4] [0319] +04:40:38 [ 37] [ 12] [57904806683] +04:40:38 [ 39] [ 2] [00] +04:40:38 [ 70] [ 3] [001] +04:40:38 ============================================================================ +04:40:38 Sending to : +04:40:38 ============================================================================ +04:40:38 + + +waiting on router queue for slot.... +04:40:49 ============================================================================ +04:40:49 Slot Id : <348> +04:40:49 Transaction Type : REQUEST +04:40:49 Received From : +04:40:49 ============================================================================ +04:40:49 FNo. Len. Field Value +04:40:49 ============================================================================ +04:40:49 [ 1] [ 4] [0800] +04:40:49 [ 7] [ 10] [0319093956] +04:40:49 [ 11] [ 6] [154383] +04:40:49 [ 70] [ 3] [301] +04:40:49 ============================================================================ +04:40:49 + + +waiting on router queue for slot.... +04:40:49 Sending to : +04:40:49 ============================================================================ +04:40:49 ============================================================================ +04:40:49 Slot Id : <348> +04:40:49 Transaction Type : RESPONSE +04:40:49 Received From : +04:40:49 ============================================================================ +04:40:49 FNo. Len. Field Value +04:40:49 ============================================================================ +04:40:49 [ 1] [ 4] [0810] +04:40:49 [ 7] [ 10] [0319093956] +04:40:49 [ 11] [ 6] [154383] +04:40:49 [ 39] [ 2] [00] +04:40:49 [ 70] [ 3] [301] +04:40:49 ============================================================================ +04:40:49 Calculate Source COMM Id = 2 +04:40:49 ============================================================================ +04:40:49 + + +waiting on router queue for slot.... +04:41:00 ============================================================================ +04:41:00 Slot Id : <352> +04:41:00 Transaction Type : REQUEST +04:41:00 Received From : +04:41:00 ============================================================================ +04:41:00 FNo. Len. Field Value +04:41:00 ============================================================================ +04:41:00 [ 1] [ 4] [0800] +04:41:00 [ 7] [ 10] [0319094007] +04:41:00 [ 11] [ 6] [154384] +04:41:00 [ 70] [ 3] [301] +04:41:00 ============================================================================ +04:41:00 + + +waiting on router queue for slot.... +04:41:00 Sending to : +04:41:00 ============================================================================ +04:41:00 ============================================================================ +04:41:00 Slot Id : <352> +04:41:00 Transaction Type : RESPONSE +04:41:00 Received From : +04:41:00 ============================================================================ +04:41:00 FNo. Len. Field Value +04:41:00 ============================================================================ +04:41:00 [ 1] [ 4] [0810] +04:41:00 [ 7] [ 10] [0319094007] +04:41:00 [ 11] [ 6] [154384] +04:41:00 [ 39] [ 2] [00] +04:41:00 [ 70] [ 3] [301] +04:41:00 ============================================================================ +04:41:00 Calculate Source COMM Id = 2 +04:41:00 ============================================================================ +04:41:00 + + +waiting on router queue for slot.... +04:41:11 ============================================================================ +04:41:11 Slot Id : <328> +04:41:11 Transaction Type : REQUEST +04:41:11 Received From : +04:41:11 ============================================================================ +04:41:11 FNo. Len. Field Value +04:41:11 ============================================================================ +04:41:11 [ 1] [ 4] [0800] +04:41:11 [ 7] [ 10] [0319094018] +04:41:11 [ 11] [ 6] [154385] +04:41:11 [ 70] [ 3] [301] +04:41:11 ============================================================================ +04:41:11 + + +waiting on router queue for slot.... +04:41:11 Sending to : +04:41:11 ============================================================================ +04:41:11 ============================================================================ +04:41:11 Slot Id : <328> +04:41:11 Transaction Type : RESPONSE +04:41:11 Received From : +04:41:11 ============================================================================ +04:41:11 FNo. Len. Field Value +04:41:11 ============================================================================ +04:41:11 [ 1] [ 4] [0810] +04:41:11 [ 7] [ 10] [0319094018] +04:41:11 [ 11] [ 6] [154385] +04:41:11 [ 39] [ 2] [00] +04:41:11 [ 70] [ 3] [301] +04:41:11 ============================================================================ +04:41:11 Calculate Source COMM Id = 2 +04:41:11 ============================================================================ +04:41:11 + + +waiting on router queue for slot.... +04:41:21 ============================================================================ +04:41:21 Slot Id : <350> +04:41:21 Transaction Type : REQUEST +04:41:21 Received From : +04:41:21 ============================================================================ +04:41:21 FNo. Len. Field Value +04:41:21 ============================================================================ +04:41:21 [ 1] [ 4] [0800] +04:41:21 [ 7] [ 10] [0319213912] +04:41:21 [ 11] [ 6] [087409] +04:41:21 [ 37] [ 12] [57904087409] +04:41:21 [ 70] [ 3] [301] +04:41:21 ============================================================================ +04:41:21 + + +waiting on router queue for slot.... +04:41:21 Sending to : +04:41:21 ============================================================================ +04:41:21 ============================================================================ +04:41:21 Slot Id : <350> +04:41:21 Transaction Type : RESPONSE +04:41:21 Received From : +04:41:21 ============================================================================ +04:41:21 FNo. Len. Field Value +04:41:21 ============================================================================ +04:41:21 [ 1] [ 4] [0810] +04:41:21 [ 7] [ 10] [0319213912] +04:41:21 [ 11] [ 6] [087409] +04:41:21 [ 37] [ 12] [579040874090] +04:41:21 [ 39] [ 2] [00] +04:41:21 [ 70] [ 3] [810] +04:41:21 ============================================================================ +04:41:21 Calculate Source COMM Id = 4 +04:41:21 ============================================================================ +04:41:21 + + +waiting on router queue for slot.... +04:41:22 ============================================================================ +04:41:22 Slot Id : <347> +04:41:22 Transaction Type : REQUEST +04:41:22 Received From : +04:41:22 ============================================================================ +04:41:22 FNo. Len. Field Value +04:41:22 ============================================================================ +04:41:22 [ 1] [ 4] [0800] +04:41:22 [ 7] [ 10] [0319094029] +04:41:22 [ 11] [ 6] [154386] +04:41:22 [ 70] [ 3] [301] +04:41:22 ============================================================================ +04:41:22 + + +waiting on router queue for slot.... +04:41:22 Sending to : +04:41:22 ============================================================================ +04:41:22 ============================================================================ +04:41:22 Slot Id : <347> +04:41:22 Transaction Type : RESPONSE +04:41:22 Received From : +04:41:22 ============================================================================ +04:41:22 FNo. Len. Field Value +04:41:22 ============================================================================ +04:41:22 [ 1] [ 4] [0810] +04:41:22 [ 7] [ 10] [0319094029] +04:41:22 [ 11] [ 6] [154386] +04:41:22 [ 39] [ 2] [00] +04:41:22 [ 70] [ 3] [301] +04:41:22 ============================================================================ +04:41:22 Calculate Source COMM Id = 2 +04:41:22 ============================================================================ +04:41:22 + + +waiting on router queue for slot.... +04:41:33 ============================================================================ +04:41:33 Slot Id : <319> +04:41:33 Transaction Type : REQUEST +04:41:33 Received From : +04:41:33 ============================================================================ +04:41:33 FNo. Len. Field Value +04:41:33 ============================================================================ +04:41:33 [ 1] [ 4] [0800] +04:41:33 [ 7] [ 10] [0319094040] +04:41:33 [ 11] [ 6] [154387] +04:41:33 [ 70] [ 3] [301] +04:41:33 ============================================================================ +04:41:33 + + +waiting on router queue for slot.... +04:41:33 Sending to : +04:41:33 ============================================================================ +04:41:33 ============================================================================ +04:41:33 Slot Id : <319> +04:41:33 Transaction Type : RESPONSE +04:41:33 Received From : +04:41:33 ============================================================================ +04:41:33 FNo. Len. Field Value +04:41:33 ============================================================================ +04:41:33 [ 1] [ 4] [0810] +04:41:33 [ 7] [ 10] [0319094040] +04:41:33 [ 11] [ 6] [154387] +04:41:33 [ 39] [ 2] [00] +04:41:33 [ 70] [ 3] [301] +04:41:33 ============================================================================ +04:41:33 Calculate Source COMM Id = 2 +04:41:33 ============================================================================ +04:41:33 + + +waiting on router queue for slot.... +04:41:38 ============================================================================ +04:41:38 Slot Id : <356> +04:41:38 Transaction Type : REQUEST +04:41:38 Received From : +04:41:38 ============================================================================ +04:41:38 FNo. Len. Field Value +04:41:38 ============================================================================ +04:41:38 [ 1] [ 4] [0800] +04:41:38 [ 7] [ 10] [0320115326] +04:41:38 [ 11] [ 6] [045326] +04:41:38 [ 37] [ 12] [57904045326] +04:41:38 [ 70] [ 3] [301] +04:41:38 ============================================================================ +04:41:38 + + +waiting on router queue for slot.... +04:41:38 Sending to : +04:41:38 ============================================================================ +04:41:38 ============================================================================ +04:41:38 Slot Id : <356> +04:41:38 Transaction Type : RESPONSE +04:41:38 Received From : +04:41:38 ============================================================================ +04:41:38 FNo. Len. Field Value +04:41:38 ============================================================================ +04:41:38 [ 1] [ 4] [0810] +04:41:38 [ 7] [ 10] [0320115326] +04:41:38 [ 11] [ 6] [045326] +04:41:38 [ 37] [ 12] [579040453260] +04:41:38 [ 39] [ 2] [00] +04:41:38 [ 70] [ 3] [810] +04:41:38 ============================================================================ +04:41:38 Calculate Source COMM Id = 6 +04:41:38 ============================================================================ +04:41:38 + + +waiting on router queue for slot.... +04:41:40 ============================================================================ +04:41:40 Slot Id : <332> +04:41:40 Transaction Type : REQUEST +04:41:40 Received From : +04:41:40 ============================================================================ +04:41:40 FNo. Len. Field Value +04:41:40 ============================================================================ +04:41:40 [ 1] [ 4] [0800] +04:41:40 [ 2] [ 5] [02531] +04:41:40 [ 3] [ 6] [579048] +04:41:40 [ 7] [ 10] [0319214140] +04:41:40 [ 11] [ 6] [806684] +04:41:40 [ 15] [ 10] [0319214140] +04:41:40 [ 37] [ 11] [57904806684] +04:41:40 [ 70] [ 3] [001] +04:41:40 ============================================================================ +04:41:40 + + +waiting on router queue for slot.... +04:41:40 ============================================================================ +04:41:40 Slot Id : <332> +04:41:40 Transaction Type : RESPONSE +04:41:40 Received From : +04:41:40 ============================================================================ +04:41:40 FNo. Len. Field Value +04:41:40 ============================================================================ +04:41:40 [ 1] [ 4] [0810] +04:41:40 [ 7] [ 10] [0319214140] +04:41:40 [ 11] [ 6] [806684] +04:41:40 [ 15] [ 4] [0319] +04:41:40 [ 37] [ 12] [57904806684] +04:41:40 [ 39] [ 2] [00] +04:41:40 [ 70] [ 3] [001] +04:41:40 ============================================================================ +04:41:40 Sending to : +04:41:40 ============================================================================ +04:41:40 + + +waiting on router queue for slot.... +04:41:44 ============================================================================ +04:41:44 Slot Id : <346> +04:41:44 Transaction Type : REQUEST +04:41:44 Received From : +04:41:44 ============================================================================ +04:41:44 FNo. Len. Field Value +04:41:44 ============================================================================ +04:41:44 [ 1] [ 4] [0800] +04:41:44 [ 7] [ 10] [0319094051] +04:41:44 [ 11] [ 6] [154388] +04:41:44 [ 70] [ 3] [301] +04:41:44 ============================================================================ +04:41:44 + + +waiting on router queue for slot.... +04:41:44 Sending to : +04:41:44 ============================================================================ +04:41:44 ============================================================================ +04:41:44 Slot Id : <346> +04:41:44 Transaction Type : RESPONSE +04:41:44 Received From : +04:41:44 ============================================================================ +04:41:44 FNo. Len. Field Value +04:41:44 ============================================================================ +04:41:44 [ 1] [ 4] [0810] +04:41:44 [ 7] [ 10] [0319094051] +04:41:44 [ 11] [ 6] [154388] +04:41:44 [ 39] [ 2] [00] +04:41:44 [ 70] [ 3] [301] +04:41:44 ============================================================================ +04:41:44 Calculate Source COMM Id = 2 +04:41:44 ============================================================================ +04:41:44 + + +waiting on router queue for slot.... +04:41:55 ============================================================================ +04:41:55 Slot Id : <357> +04:41:55 Transaction Type : REQUEST +04:41:55 Received From : +04:41:55 ============================================================================ +04:41:55 FNo. Len. Field Value +04:41:55 ============================================================================ +04:41:55 [ 1] [ 4] [0800] +04:41:55 [ 7] [ 10] [0319094101] +04:41:55 [ 11] [ 6] [154389] +04:41:55 [ 70] [ 3] [301] +04:41:55 ============================================================================ +04:41:55 + + +waiting on router queue for slot.... +04:41:55 Sending to : +04:41:55 ============================================================================ +04:41:55 ============================================================================ +04:41:55 Slot Id : <357> +04:41:55 Transaction Type : RESPONSE +04:41:55 Received From : +04:41:55 ============================================================================ +04:41:55 FNo. Len. Field Value +04:41:55 ============================================================================ +04:41:55 [ 1] [ 4] [0810] +04:41:55 [ 7] [ 10] [0319094101] +04:41:55 [ 11] [ 6] [154389] +04:41:55 [ 39] [ 2] [00] +04:41:55 [ 70] [ 3] [301] +04:41:55 ============================================================================ +04:41:55 Calculate Source COMM Id = 2 +04:41:55 ============================================================================ +04:41:55 + + +waiting on router queue for slot.... +04:42:06 ============================================================================ +04:42:06 Slot Id : <330> +04:42:06 Transaction Type : REQUEST +04:42:06 Received From : +04:42:06 ============================================================================ +04:42:06 FNo. Len. Field Value +04:42:06 ============================================================================ +04:42:06 [ 1] [ 4] [0800] +04:42:06 [ 7] [ 10] [0319094112] +04:42:06 [ 11] [ 6] [154390] +04:42:06 [ 70] [ 3] [301] +04:42:06 ============================================================================ +04:42:06 + + +waiting on router queue for slot.... +04:42:06 Sending to : +04:42:06 ============================================================================ +04:42:06 ============================================================================ +04:42:06 Slot Id : <330> +04:42:06 Transaction Type : RESPONSE +04:42:06 Received From : +04:42:06 ============================================================================ +04:42:06 FNo. Len. Field Value +04:42:06 ============================================================================ +04:42:06 [ 1] [ 4] [0810] +04:42:06 [ 7] [ 10] [0319094112] +04:42:06 [ 11] [ 6] [154390] +04:42:06 [ 39] [ 2] [00] +04:42:06 [ 70] [ 3] [301] +04:42:06 ============================================================================ +04:42:06 Calculate Source COMM Id = 2 +04:42:06 ============================================================================ +04:42:06 + + +waiting on router queue for slot.... +04:42:21 ============================================================================ +04:42:21 Slot Id : <366> +04:42:21 Transaction Type : REQUEST +04:42:21 Received From : +04:42:21 ============================================================================ +04:42:21 FNo. Len. Field Value +04:42:21 ============================================================================ +04:42:21 [ 1] [ 4] [0800] +04:42:21 [ 7] [ 10] [0319094128] +04:42:21 [ 11] [ 6] [154391] +04:42:21 [ 70] [ 3] [301] +04:42:21 ============================================================================ +04:42:21 + + +waiting on router queue for slot.... +04:42:21 Sending to : +04:42:21 ============================================================================ +04:42:21 ============================================================================ +04:42:21 Slot Id : <366> +04:42:21 Transaction Type : RESPONSE +04:42:21 Received From : +04:42:21 ============================================================================ +04:42:21 FNo. Len. Field Value +04:42:21 ============================================================================ +04:42:21 [ 1] [ 4] [0810] +04:42:21 [ 7] [ 10] [0319094128] +04:42:21 [ 11] [ 6] [154391] +04:42:21 [ 39] [ 2] [00] +04:42:21 [ 70] [ 3] [301] +04:42:21 ============================================================================ +04:42:21 Calculate Source COMM Id = 2 +04:42:21 ============================================================================ +04:42:21 + + +waiting on router queue for slot.... +04:42:36 ============================================================================ +04:42:36 Slot Id : <343> +04:42:36 Transaction Type : REQUEST +04:42:36 Received From : +04:42:36 ============================================================================ +04:42:36 FNo. Len. Field Value +04:42:36 ============================================================================ +04:42:36 [ 1] [ 4] [0800] +04:42:36 [ 7] [ 10] [0319094143] +04:42:36 [ 11] [ 6] [154392] +04:42:36 [ 70] [ 3] [301] +04:42:36 ============================================================================ +04:42:36 + + +waiting on router queue for slot.... +04:42:36 Sending to : +04:42:36 ============================================================================ +04:42:36 ============================================================================ +04:42:36 Slot Id : <343> +04:42:36 Transaction Type : RESPONSE +04:42:36 Received From : +04:42:36 ============================================================================ +04:42:36 FNo. Len. Field Value +04:42:36 ============================================================================ +04:42:36 [ 1] [ 4] [0810] +04:42:36 [ 7] [ 10] [0319094143] +04:42:36 [ 11] [ 6] [154392] +04:42:36 [ 39] [ 2] [00] +04:42:36 [ 70] [ 3] [301] +04:42:36 ============================================================================ +04:42:36 Calculate Source COMM Id = 2 +04:42:36 ============================================================================ +04:42:36 + + +waiting on router queue for slot.... +04:42:42 ============================================================================ +04:42:42 Slot Id : <365> +04:42:42 Transaction Type : REQUEST +04:42:42 Received From : +04:42:42 ============================================================================ +04:42:42 FNo. Len. Field Value +04:42:42 ============================================================================ +04:42:42 [ 1] [ 4] [0800] +04:42:42 [ 2] [ 5] [02531] +04:42:42 [ 3] [ 6] [579048] +04:42:42 [ 7] [ 10] [0319214242] +04:42:42 [ 11] [ 6] [806685] +04:42:42 [ 15] [ 10] [0319214242] +04:42:42 [ 37] [ 11] [57904806685] +04:42:42 [ 70] [ 3] [001] +04:42:42 ============================================================================ +04:42:42 + + +waiting on router queue for slot.... +04:42:42 ============================================================================ +04:42:42 Slot Id : <365> +04:42:42 Transaction Type : RESPONSE +04:42:42 Received From : +04:42:42 ============================================================================ +04:42:42 FNo. Len. Field Value +04:42:42 ============================================================================ +04:42:42 [ 1] [ 4] [0810] +04:42:42 [ 7] [ 10] [0319214242] +04:42:42 [ 11] [ 6] [806685] +04:42:42 [ 15] [ 4] [0319] +04:42:42 [ 37] [ 12] [57904806685] +04:42:42 [ 39] [ 2] [00] +04:42:42 [ 70] [ 3] [001] +04:42:42 ============================================================================ +04:42:42 Sending to : +04:42:42 ============================================================================ +04:42:42 + + +waiting on router queue for slot.... +04:42:43 ============================================================================ +04:42:43 Slot Id : <313> +04:42:43 Transaction Type : REQUEST +04:42:43 Received From : +04:42:43 ============================================================================ +04:42:43 FNo. Len. Field Value +04:42:43 ============================================================================ +04:42:43 [ 1] [ 4] [0800] +04:42:43 [ 7] [ 10] [0320115431] +04:42:43 [ 11] [ 6] [045431] +04:42:43 [ 37] [ 12] [57904045431] +04:42:43 [ 70] [ 3] [301] +04:42:43 ============================================================================ +04:42:43 + + +waiting on router queue for slot.... +04:42:43 Sending to : +04:42:43 ============================================================================ +04:42:43 ============================================================================ +04:42:43 Slot Id : <313> +04:42:43 Transaction Type : RESPONSE +04:42:43 Received From : +04:42:43 ============================================================================ +04:42:43 FNo. Len. Field Value +04:42:43 ============================================================================ +04:42:43 [ 1] [ 4] [0810] +04:42:43 [ 7] [ 10] [0320115431] +04:42:43 [ 11] [ 6] [045431] +04:42:43 [ 37] [ 12] [579040454310] +04:42:43 [ 39] [ 2] [00] +04:42:43 [ 70] [ 3] [810] +04:42:43 ============================================================================ +04:42:43 Calculate Source COMM Id = 6 +04:42:43 ============================================================================ +04:42:43 + + +waiting on router queue for slot.... +04:42:52 ============================================================================ +04:42:52 Slot Id : <340> +04:42:52 Transaction Type : REQUEST +04:42:52 Received From : +04:42:52 ============================================================================ +04:42:52 FNo. Len. Field Value +04:42:52 ============================================================================ +04:42:52 [ 1] [ 4] [0800] +04:42:52 [ 7] [ 10] [0319094158] +04:42:52 [ 11] [ 6] [154393] +04:42:52 [ 70] [ 3] [301] +04:42:52 ============================================================================ +04:42:52 + + +waiting on router queue for slot.... +04:42:52 Sending to : +04:42:52 ============================================================================ +04:42:52 ============================================================================ +04:42:52 Slot Id : <340> +04:42:52 Transaction Type : RESPONSE +04:42:52 Received From : +04:42:52 ============================================================================ +04:42:52 FNo. Len. Field Value +04:42:52 ============================================================================ +04:42:52 [ 1] [ 4] [0810] +04:42:52 [ 7] [ 10] [0319094158] +04:42:52 [ 11] [ 6] [154393] +04:42:52 [ 39] [ 2] [00] +04:42:52 [ 70] [ 3] [301] +04:42:52 ============================================================================ +04:42:52 Calculate Source COMM Id = 2 +04:42:52 ============================================================================ +04:42:52 + + +waiting on router queue for slot.... +04:43:08 ============================================================================ +04:43:08 Slot Id : <371> +04:43:08 Transaction Type : REQUEST +04:43:08 Received From : +04:43:08 ============================================================================ +04:43:08 FNo. Len. Field Value +04:43:08 ============================================================================ +04:43:08 [ 1] [ 4] [0800] +04:43:08 [ 7] [ 10] [0319094214] +04:43:08 [ 11] [ 6] [154394] +04:43:08 [ 70] [ 3] [301] +04:43:08 ============================================================================ +04:43:08 + + +waiting on router queue for slot.... +04:43:08 Sending to : +04:43:08 ============================================================================ +04:43:08 ============================================================================ +04:43:08 Slot Id : <371> +04:43:08 Transaction Type : RESPONSE +04:43:08 Received From : +04:43:08 ============================================================================ +04:43:08 FNo. Len. Field Value +04:43:08 ============================================================================ +04:43:08 [ 1] [ 4] [0810] +04:43:08 [ 7] [ 10] [0319094214] +04:43:08 [ 11] [ 6] [154394] +04:43:08 [ 39] [ 2] [00] +04:43:08 [ 70] [ 3] [301] +04:43:08 ============================================================================ +04:43:08 Calculate Source COMM Id = 2 +04:43:08 ============================================================================ +04:43:08 + + +waiting on router queue for slot.... +04:43:24 ============================================================================ +04:43:24 Slot Id : <324> +04:43:24 Transaction Type : REQUEST +04:43:24 Received From : +04:43:24 ============================================================================ +04:43:24 FNo. Len. Field Value +04:43:24 ============================================================================ +04:43:24 [ 1] [ 4] [0800] +04:43:24 [ 7] [ 10] [0319094230] +04:43:24 [ 11] [ 6] [154395] +04:43:24 [ 70] [ 3] [301] +04:43:24 ============================================================================ +04:43:24 + + +waiting on router queue for slot.... +04:43:24 Sending to : +04:43:24 ============================================================================ +04:43:24 ============================================================================ +04:43:24 Slot Id : <324> +04:43:24 Transaction Type : RESPONSE +04:43:24 Received From : +04:43:24 ============================================================================ +04:43:24 FNo. Len. Field Value +04:43:24 ============================================================================ +04:43:24 [ 1] [ 4] [0810] +04:43:24 [ 7] [ 10] [0319094230] +04:43:24 [ 11] [ 6] [154395] +04:43:24 [ 39] [ 2] [00] +04:43:24 [ 70] [ 3] [301] +04:43:24 ============================================================================ +04:43:24 Calculate Source COMM Id = 2 +04:43:24 ============================================================================ +04:43:24 + + +waiting on router queue for slot.... +04:43:34 ============================================================================ +04:43:34 Slot Id : <378> +04:43:34 Transaction Type : REQUEST +04:43:34 Received From : +04:43:34 ============================================================================ +04:43:34 FNo. Len. Field Value +04:43:34 ============================================================================ +04:43:34 [ 1] [ 4] [0800] +04:43:34 [ 7] [ 10] [0319094241] +04:43:34 [ 11] [ 6] [154396] +04:43:34 [ 70] [ 3] [301] +04:43:34 ============================================================================ +04:43:34 + + +waiting on router queue for slot.... +04:43:34 Sending to : +04:43:34 ============================================================================ +04:43:34 ============================================================================ +04:43:34 Slot Id : <378> +04:43:34 Transaction Type : RESPONSE +04:43:34 Received From : +04:43:34 ============================================================================ +04:43:34 FNo. Len. Field Value +04:43:34 ============================================================================ +04:43:34 [ 1] [ 4] [0810] +04:43:34 [ 7] [ 10] [0319094241] +04:43:34 [ 11] [ 6] [154396] +04:43:34 [ 39] [ 2] [00] +04:43:34 [ 70] [ 3] [301] +04:43:34 ============================================================================ +04:43:34 Calculate Source COMM Id = 2 +04:43:34 ============================================================================ +04:43:34 + + +waiting on router queue for slot.... +04:43:44 ============================================================================ +04:43:44 Slot Id : <353> +04:43:44 Transaction Type : REQUEST +04:43:44 Received From : +04:43:44 ============================================================================ +04:43:44 FNo. Len. Field Value +04:43:44 ============================================================================ +04:43:44 [ 1] [ 4] [0800] +04:43:44 [ 2] [ 5] [02531] +04:43:44 [ 3] [ 6] [579048] +04:43:44 [ 7] [ 10] [0319214344] +04:43:44 [ 11] [ 6] [806686] +04:43:44 [ 15] [ 10] [0319214344] +04:43:44 [ 37] [ 11] [57904806686] +04:43:44 [ 70] [ 3] [001] +04:43:44 ============================================================================ +04:43:44 + + +waiting on router queue for slot.... +04:43:44 ============================================================================ +04:43:44 Slot Id : <353> +04:43:44 Transaction Type : RESPONSE +04:43:44 Received From : +04:43:44 ============================================================================ +04:43:44 FNo. Len. Field Value +04:43:44 ============================================================================ +04:43:44 [ 1] [ 4] [0810] +04:43:44 [ 7] [ 10] [0319214344] +04:43:44 [ 11] [ 6] [806686] +04:43:44 [ 15] [ 4] [0319] +04:43:44 [ 37] [ 12] [57904806686] +04:43:44 [ 39] [ 2] [00] +04:43:44 [ 70] [ 3] [001] +04:43:44 ============================================================================ +04:43:44 Sending to : +04:43:44 ============================================================================ +04:43:44 + + +waiting on router queue for slot.... +04:43:46 ============================================================================ +04:43:46 Slot Id : <373> +04:43:46 Transaction Type : REQUEST +04:43:46 Received From : +04:43:46 ============================================================================ +04:43:46 FNo. Len. Field Value +04:43:46 ============================================================================ +04:43:46 [ 1] [ 4] [0800] +04:43:46 [ 7] [ 10] [0319094252] +04:43:46 [ 11] [ 6] [154397] +04:43:46 [ 70] [ 3] [301] +04:43:46 ============================================================================ +04:43:46 + + +waiting on router queue for slot.... +04:43:46 Sending to : +04:43:46 ============================================================================ +04:43:46 ============================================================================ +04:43:46 Slot Id : <373> +04:43:46 Transaction Type : RESPONSE +04:43:46 Received From : +04:43:46 ============================================================================ +04:43:46 FNo. Len. Field Value +04:43:46 ============================================================================ +04:43:46 [ 1] [ 4] [0810] +04:43:46 [ 7] [ 10] [0319094252] +04:43:46 [ 11] [ 6] [154397] +04:43:46 [ 39] [ 2] [00] +04:43:46 [ 70] [ 3] [301] +04:43:46 ============================================================================ +04:43:46 Calculate Source COMM Id = 2 +04:43:46 ============================================================================ +04:43:46 + + +waiting on router queue for slot.... +04:43:48 ============================================================================ +04:43:48 Slot Id : <355> +04:43:48 Transaction Type : REQUEST +04:43:48 Received From : +04:43:48 ============================================================================ +04:43:48 FNo. Len. Field Value +04:43:48 ============================================================================ +04:43:48 [ 1] [ 4] [0800] +04:43:48 [ 7] [ 10] [0320115536] +04:43:48 [ 11] [ 6] [045536] +04:43:48 [ 37] [ 12] [57904045536] +04:43:48 [ 70] [ 3] [301] +04:43:48 ============================================================================ +04:43:48 + + +waiting on router queue for slot.... +04:43:48 Sending to : +04:43:48 ============================================================================ +04:43:48 ============================================================================ +04:43:48 Slot Id : <355> +04:43:48 Transaction Type : RESPONSE +04:43:48 Received From : +04:43:48 ============================================================================ +04:43:48 FNo. Len. Field Value +04:43:48 ============================================================================ +04:43:48 [ 1] [ 4] [0810] +04:43:48 [ 7] [ 10] [0320115536] +04:43:48 [ 11] [ 6] [045536] +04:43:48 [ 37] [ 12] [579040455360] +04:43:48 [ 39] [ 2] [00] +04:43:48 [ 70] [ 3] [810] +04:43:48 ============================================================================ +04:43:48 Calculate Source COMM Id = 6 +04:43:48 ============================================================================ +04:43:48 + + +waiting on router queue for slot.... +04:43:56 ============================================================================ +04:43:56 Slot Id : <382> +04:43:56 Transaction Type : REQUEST +04:43:56 Received From : +04:43:56 ============================================================================ +04:43:56 FNo. Len. Field Value +04:43:56 ============================================================================ +04:43:56 [ 1] [ 4] [0800] +04:43:56 [ 7] [ 10] [0319094303] +04:43:56 [ 11] [ 6] [154398] +04:43:56 [ 70] [ 3] [301] +04:43:56 ============================================================================ +04:43:56 + + +waiting on router queue for slot.... +04:43:56 Sending to : +04:43:56 ============================================================================ +04:43:56 ============================================================================ +04:43:56 Slot Id : <382> +04:43:56 Transaction Type : RESPONSE +04:43:56 Received From : +04:43:56 ============================================================================ +04:43:56 FNo. Len. Field Value +04:43:56 ============================================================================ +04:43:56 [ 1] [ 4] [0810] +04:43:56 [ 7] [ 10] [0319094303] +04:43:56 [ 11] [ 6] [154398] +04:43:56 [ 39] [ 2] [00] +04:43:56 [ 70] [ 3] [301] +04:43:56 ============================================================================ +04:43:56 Calculate Source COMM Id = 2 +04:43:56 ============================================================================ +04:43:56 + + +waiting on router queue for slot.... +04:44:09 ============================================================================ +04:44:09 Slot Id : <363> +04:44:09 Transaction Type : REQUEST +04:44:09 Received From : +04:44:09 ============================================================================ +04:44:09 FNo. Len. Field Value +04:44:09 ============================================================================ +04:44:09 [ 1] [ 4] [0800] +04:44:09 [ 7] [ 10] [0319094315] +04:44:09 [ 11] [ 6] [154399] +04:44:09 [ 70] [ 3] [301] +04:44:09 ============================================================================ +04:44:09 + + +waiting on router queue for slot.... +04:44:09 Sending to : +04:44:09 ============================================================================ +04:44:09 ============================================================================ +04:44:09 Slot Id : <363> +04:44:09 Transaction Type : RESPONSE +04:44:09 Received From : +04:44:09 ============================================================================ +04:44:09 FNo. Len. Field Value +04:44:09 ============================================================================ +04:44:09 [ 1] [ 4] [0810] +04:44:09 [ 7] [ 10] [0319094315] +04:44:09 [ 11] [ 6] [154399] +04:44:09 [ 39] [ 2] [00] +04:44:09 [ 70] [ 3] [301] +04:44:09 ============================================================================ +04:44:09 Calculate Source COMM Id = 2 +04:44:09 ============================================================================ +04:44:09 + + +waiting on router queue for slot.... +04:44:23 ============================================================================ +04:44:23 Slot Id : <358> +04:44:23 Transaction Type : REQUEST +04:44:23 Received From : +04:44:23 ============================================================================ +04:44:23 FNo. Len. Field Value +04:44:23 ============================================================================ +04:44:23 [ 1] [ 4] [0800] +04:44:23 [ 7] [ 10] [0319094330] +04:44:23 [ 11] [ 6] [154400] +04:44:23 [ 70] [ 3] [301] +04:44:23 ============================================================================ +04:44:23 + + +waiting on router queue for slot.... +04:44:23 Sending to : +04:44:23 ============================================================================ +04:44:23 ============================================================================ +04:44:23 Slot Id : <358> +04:44:23 Transaction Type : RESPONSE +04:44:23 Received From : +04:44:23 ============================================================================ +04:44:23 FNo. Len. Field Value +04:44:23 ============================================================================ +04:44:23 [ 1] [ 4] [0810] +04:44:23 [ 7] [ 10] [0319094330] +04:44:23 [ 11] [ 6] [154400] +04:44:23 [ 39] [ 2] [00] +04:44:23 [ 70] [ 3] [301] +04:44:23 ============================================================================ +04:44:23 Calculate Source COMM Id = 2 +04:44:23 ============================================================================ +04:44:23 + + +waiting on router queue for slot.... +04:44:34 ============================================================================ +04:44:34 Slot Id : <338> +04:44:34 Transaction Type : REQUEST +04:44:34 Received From : +04:44:34 ============================================================================ +04:44:34 FNo. Len. Field Value +04:44:34 ============================================================================ +04:44:34 [ 1] [ 4] [0800] +04:44:34 [ 7] [ 10] [0319094341] +04:44:34 [ 11] [ 6] [154401] +04:44:34 [ 70] [ 3] [301] +04:44:34 ============================================================================ +04:44:34 + + +waiting on router queue for slot.... +04:44:34 Sending to : +04:44:34 ============================================================================ +04:44:34 ============================================================================ +04:44:34 Slot Id : <338> +04:44:34 Transaction Type : RESPONSE +04:44:34 Received From : +04:44:34 ============================================================================ +04:44:34 FNo. Len. Field Value +04:44:34 ============================================================================ +04:44:34 [ 1] [ 4] [0810] +04:44:34 [ 7] [ 10] [0319094341] +04:44:34 [ 11] [ 6] [154401] +04:44:34 [ 39] [ 2] [00] +04:44:34 [ 70] [ 3] [301] +04:44:34 ============================================================================ +04:44:34 Calculate Source COMM Id = 2 +04:44:34 ============================================================================ +04:44:34 + + +waiting on router queue for slot.... +04:44:46 ============================================================================ +04:44:46 Slot Id : <370> +04:44:46 Transaction Type : REQUEST +04:44:46 Received From : +04:44:46 ============================================================================ +04:44:46 FNo. Len. Field Value +04:44:46 ============================================================================ +04:44:46 [ 1] [ 4] [0800] +04:44:46 [ 2] [ 5] [02531] +04:44:46 [ 3] [ 6] [579048] +04:44:46 [ 7] [ 10] [0319214446] +04:44:46 [ 11] [ 6] [806687] +04:44:46 [ 15] [ 10] [0319214446] +04:44:46 [ 37] [ 11] [57904806687] +04:44:46 [ 70] [ 3] [001] +04:44:46 ============================================================================ +04:44:46 + + +waiting on router queue for slot.... +04:44:46 ============================================================================ +04:44:46 Slot Id : <370> +04:44:46 Transaction Type : RESPONSE +04:44:46 Received From : +04:44:46 ============================================================================ +04:44:46 FNo. Len. Field Value +04:44:46 ============================================================================ +04:44:46 [ 1] [ 4] [0810] +04:44:46 [ 7] [ 10] [0319214446] +04:44:46 [ 11] [ 6] [806687] +04:44:46 [ 15] [ 4] [0319] +04:44:46 [ 37] [ 12] [57904806687] +04:44:46 [ 39] [ 2] [00] +04:44:46 [ 70] [ 3] [001] +04:44:46 ============================================================================ +04:44:46 Sending to : +04:44:46 ============================================================================ +04:44:46 + + +waiting on router queue for slot.... +04:44:49 ============================================================================ +04:44:49 Slot Id : <360> +04:44:49 Transaction Type : REQUEST +04:44:49 Received From : +04:44:49 ============================================================================ +04:44:49 FNo. Len. Field Value +04:44:49 ============================================================================ +04:44:49 [ 1] [ 4] [0800] +04:44:49 [ 7] [ 10] [0319094356] +04:44:49 [ 11] [ 6] [154402] +04:44:49 [ 70] [ 3] [301] +04:44:49 ============================================================================ +04:44:49 + + +waiting on router queue for slot.... +04:44:49 Sending to : +04:44:49 ============================================================================ +04:44:49 ============================================================================ +04:44:49 Slot Id : <360> +04:44:49 Transaction Type : RESPONSE +04:44:49 Received From : +04:44:49 ============================================================================ +04:44:49 FNo. Len. Field Value +04:44:49 ============================================================================ +04:44:49 [ 1] [ 4] [0810] +04:44:49 [ 7] [ 10] [0319094356] +04:44:49 [ 11] [ 6] [154402] +04:44:49 [ 39] [ 2] [00] +04:44:49 [ 70] [ 3] [301] +04:44:49 ============================================================================ +04:44:49 Calculate Source COMM Id = 2 +04:44:49 ============================================================================ +04:44:49 + + +waiting on router queue for slot.... +04:44:53 ============================================================================ +04:44:53 Slot Id : <379> +04:44:53 Transaction Type : REQUEST +04:44:53 Received From : +04:44:53 ============================================================================ +04:44:53 FNo. Len. Field Value +04:44:53 ============================================================================ +04:44:53 [ 1] [ 4] [0800] +04:44:53 [ 7] [ 10] [0320115641] +04:44:53 [ 11] [ 6] [045641] +04:44:53 [ 37] [ 12] [57904045641] +04:44:53 [ 70] [ 3] [301] +04:44:53 ============================================================================ +04:44:53 + + +waiting on router queue for slot.... +04:44:53 Sending to : +04:44:53 ============================================================================ +04:44:53 ============================================================================ +04:44:53 Slot Id : <379> +04:44:53 Transaction Type : RESPONSE +04:44:53 Received From : +04:44:53 ============================================================================ +04:44:53 FNo. Len. Field Value +04:44:53 ============================================================================ +04:44:53 [ 1] [ 4] [0810] +04:44:53 [ 7] [ 10] [0320115641] +04:44:53 [ 11] [ 6] [045641] +04:44:53 [ 37] [ 12] [579040456410] +04:44:53 [ 39] [ 2] [00] +04:44:53 [ 70] [ 3] [810] +04:44:53 ============================================================================ +04:44:53 Calculate Source COMM Id = 6 +04:44:53 ============================================================================ +04:44:53 + + +waiting on router queue for slot.... +04:44:56 ============================================================================ +04:44:56 Slot Id : <396> +04:44:56 Transaction Type : REQUEST +04:44:56 Received From : +04:44:56 ============================================================================ +04:44:56 FNo. Len. Field Value +04:44:56 ============================================================================ +04:44:56 [ 1] [ 4] [0800] +04:44:56 [ 7] [ 10] [0319215242] +04:44:56 [ 11] [ 6] [086831] +04:44:56 [ 37] [ 12] [57904086831] +04:44:56 [ 70] [ 3] [301] +04:44:56 ============================================================================ +04:44:56 + + +waiting on router queue for slot.... +04:44:56 Sending to : +04:44:56 ============================================================================ +04:44:56 ============================================================================ +04:44:56 Slot Id : <396> +04:44:56 Transaction Type : RESPONSE +04:44:56 Received From : +04:44:56 ============================================================================ +04:44:56 FNo. Len. Field Value +04:44:56 ============================================================================ +04:44:56 [ 1] [ 4] [0810] +04:44:56 [ 7] [ 10] [0319215242] +04:44:56 [ 11] [ 6] [086831] +04:44:56 [ 37] [ 12] [579040868310] +04:44:56 [ 39] [ 2] [00] +04:44:56 [ 70] [ 3] [810] +04:44:56 ============================================================================ +04:44:56 Calculate Source COMM Id = 1 +04:44:56 ============================================================================ +04:44:56 + + +waiting on router queue for slot.... +04:45:00 ============================================================================ +04:45:00 Slot Id : <354> +04:45:00 Transaction Type : REQUEST +04:45:00 Received From : +04:45:00 ============================================================================ +04:45:00 FNo. Len. Field Value +04:45:00 ============================================================================ +04:45:00 [ 1] [ 4] [0800] +04:45:00 [ 7] [ 10] [0319094407] +04:45:00 [ 11] [ 6] [154403] +04:45:00 [ 70] [ 3] [301] +04:45:00 ============================================================================ +04:45:00 + + +waiting on router queue for slot.... +04:45:00 Sending to : +04:45:00 ============================================================================ +04:45:00 ============================================================================ +04:45:00 Slot Id : <354> +04:45:00 Transaction Type : RESPONSE +04:45:00 Received From : +04:45:00 ============================================================================ +04:45:00 FNo. Len. Field Value +04:45:00 ============================================================================ +04:45:00 [ 1] [ 4] [0810] +04:45:00 [ 7] [ 10] [0319094407] +04:45:00 [ 11] [ 6] [154403] +04:45:00 [ 39] [ 2] [00] +04:45:00 [ 70] [ 3] [301] +04:45:00 ============================================================================ +04:45:00 Calculate Source COMM Id = 2 +04:45:00 ============================================================================ +04:45:00 + + +waiting on router queue for slot.... +04:45:11 ============================================================================ +04:45:11 Slot Id : <369> +04:45:11 Transaction Type : REQUEST +04:45:11 Received From : +04:45:11 ============================================================================ +04:45:11 FNo. Len. Field Value +04:45:11 ============================================================================ +04:45:11 [ 1] [ 4] [0800] +04:45:11 [ 7] [ 10] [0319094418] +04:45:11 [ 11] [ 6] [154404] +04:45:11 [ 70] [ 3] [301] +04:45:11 ============================================================================ +04:45:11 + + +waiting on router queue for slot.... +04:45:11 Sending to : +04:45:11 ============================================================================ +04:45:11 ============================================================================ +04:45:11 Slot Id : <369> +04:45:11 Transaction Type : RESPONSE +04:45:11 Received From : +04:45:11 ============================================================================ +04:45:11 FNo. Len. Field Value +04:45:11 ============================================================================ +04:45:11 [ 1] [ 4] [0810] +04:45:11 [ 7] [ 10] [0319094418] +04:45:11 [ 11] [ 6] [154404] +04:45:11 [ 39] [ 2] [00] +04:45:11 [ 70] [ 3] [301] +04:45:11 ============================================================================ +04:45:11 Calculate Source COMM Id = 2 +04:45:11 ============================================================================ +04:45:11 + + +waiting on router queue for slot.... +04:45:26 ============================================================================ +04:45:26 Slot Id : <351> +04:45:26 Transaction Type : REQUEST +04:45:26 Received From : +04:45:26 ============================================================================ +04:45:26 FNo. Len. Field Value +04:45:26 ============================================================================ +04:45:26 [ 1] [ 4] [0800] +04:45:26 [ 7] [ 10] [0319094433] +04:45:26 [ 11] [ 6] [154405] +04:45:26 [ 70] [ 3] [301] +04:45:26 ============================================================================ +04:45:26 + + +waiting on router queue for slot.... +04:45:26 Sending to : +04:45:26 ============================================================================ +04:45:26 ============================================================================ +04:45:26 Slot Id : <351> +04:45:26 Transaction Type : RESPONSE +04:45:26 Received From : +04:45:26 ============================================================================ +04:45:26 FNo. Len. Field Value +04:45:26 ============================================================================ +04:45:26 [ 1] [ 4] [0810] +04:45:26 [ 7] [ 10] [0319094433] +04:45:26 [ 11] [ 6] [154405] +04:45:26 [ 39] [ 2] [00] +04:45:26 [ 70] [ 3] [301] +04:45:26 ============================================================================ +04:45:26 Calculate Source COMM Id = 2 +04:45:26 ============================================================================ +04:45:26 + + +waiting on router queue for slot.... +04:45:37 ============================================================================ +04:45:37 Slot Id : <374> +04:45:37 Transaction Type : REQUEST +04:45:37 Received From : +04:45:37 ============================================================================ +04:45:37 FNo. Len. Field Value +04:45:37 ============================================================================ +04:45:37 [ 1] [ 4] [0800] +04:45:37 [ 7] [ 10] [0319094444] +04:45:37 [ 11] [ 6] [154406] +04:45:37 [ 70] [ 3] [301] +04:45:37 ============================================================================ +04:45:37 + + +waiting on router queue for slot.... +04:45:37 Sending to : +04:45:37 ============================================================================ +04:45:37 ============================================================================ +04:45:37 Slot Id : <374> +04:45:37 Transaction Type : RESPONSE +04:45:37 Received From : +04:45:37 ============================================================================ +04:45:37 FNo. Len. Field Value +04:45:37 ============================================================================ +04:45:37 [ 1] [ 4] [0810] +04:45:37 [ 7] [ 10] [0319094444] +04:45:37 [ 11] [ 6] [154406] +04:45:37 [ 39] [ 2] [00] +04:45:37 [ 70] [ 3] [301] +04:45:37 ============================================================================ +04:45:37 Calculate Source COMM Id = 2 +04:45:37 ============================================================================ +04:45:37 + + +waiting on router queue for slot.... +04:45:48 ============================================================================ +04:45:48 Slot Id : <389> +04:45:48 Transaction Type : REQUEST +04:45:48 Received From : +04:45:48 ============================================================================ +04:45:48 FNo. Len. Field Value +04:45:48 ============================================================================ +04:45:48 [ 1] [ 4] [0800] +04:45:48 [ 2] [ 5] [02531] +04:45:48 [ 3] [ 6] [579048] +04:45:48 [ 7] [ 10] [0319214548] +04:45:48 [ 11] [ 6] [806688] +04:45:48 [ 15] [ 10] [0319214548] +04:45:48 [ 37] [ 11] [57904806688] +04:45:48 [ 70] [ 3] [001] +04:45:48 ============================================================================ +04:45:48 + + +waiting on router queue for slot.... +04:45:48 ============================================================================ +04:45:48 Slot Id : <389> +04:45:48 Transaction Type : RESPONSE +04:45:48 Received From : +04:45:48 ============================================================================ +04:45:48 FNo. Len. Field Value +04:45:48 ============================================================================ +04:45:48 [ 1] [ 4] [0810] +04:45:48 [ 7] [ 10] [0319214548] +04:45:48 [ 11] [ 6] [806688] +04:45:48 [ 15] [ 4] [0319] +04:45:48 [ 37] [ 12] [57904806688] +04:45:48 [ 39] [ 2] [00] +04:45:48 [ 70] [ 3] [001] +04:45:48 ============================================================================ +04:45:48 Sending to : +04:45:48 ============================================================================ +04:45:48 + + +waiting on router queue for slot.... +04:45:52 ============================================================================ +04:45:52 Slot Id : <390> +04:45:52 Transaction Type : REQUEST +04:45:52 Received From : +04:45:52 ============================================================================ +04:45:52 FNo. Len. Field Value +04:45:52 ============================================================================ +04:45:52 [ 1] [ 4] [0800] +04:45:52 [ 7] [ 10] [0319094459] +04:45:52 [ 11] [ 6] [154407] +04:45:52 [ 70] [ 3] [301] +04:45:52 ============================================================================ +04:45:52 + + +waiting on router queue for slot.... +04:45:52 Sending to : +04:45:52 ============================================================================ +04:45:52 ============================================================================ +04:45:52 Slot Id : <390> +04:45:52 Transaction Type : RESPONSE +04:45:52 Received From : +04:45:52 ============================================================================ +04:45:52 FNo. Len. Field Value +04:45:52 ============================================================================ +04:45:52 [ 1] [ 4] [0810] +04:45:52 [ 7] [ 10] [0319094459] +04:45:52 [ 11] [ 6] [154407] +04:45:52 [ 39] [ 2] [00] +04:45:52 [ 70] [ 3] [301] +04:45:52 ============================================================================ +04:45:52 Calculate Source COMM Id = 2 +04:45:52 ============================================================================ +04:45:52 + + +waiting on router queue for slot.... +04:45:59 ============================================================================ +04:45:59 Slot Id : <376> +04:45:59 Transaction Type : REQUEST +04:45:59 Received From : +04:45:59 ============================================================================ +04:45:59 FNo. Len. Field Value +04:45:59 ============================================================================ +04:45:59 [ 1] [ 4] [0800] +04:45:59 [ 7] [ 10] [0320115746] +04:45:59 [ 11] [ 6] [045746] +04:45:59 [ 37] [ 12] [57904045746] +04:45:59 [ 70] [ 3] [301] +04:45:59 ============================================================================ +04:45:59 + + +waiting on router queue for slot.... +04:45:59 Sending to : +04:45:59 ============================================================================ +04:45:59 ============================================================================ +04:45:59 Slot Id : <376> +04:45:59 Transaction Type : RESPONSE +04:45:59 Received From : +04:45:59 ============================================================================ +04:45:59 FNo. Len. Field Value +04:45:59 ============================================================================ +04:45:59 [ 1] [ 4] [0810] +04:45:59 [ 7] [ 10] [0320115746] +04:45:59 [ 11] [ 6] [045746] +04:45:59 [ 37] [ 12] [579040457460] +04:45:59 [ 39] [ 2] [00] +04:45:59 [ 70] [ 3] [810] +04:45:59 ============================================================================ +04:45:59 Calculate Source COMM Id = 6 +04:45:59 ============================================================================ +04:45:59 + + +waiting on router queue for slot.... +04:46:04 ============================================================================ +04:46:04 Slot Id : <359> +04:46:04 Transaction Type : REQUEST +04:46:04 Received From : +04:46:04 ============================================================================ +04:46:04 FNo. Len. Field Value +04:46:04 ============================================================================ +04:46:04 [ 1] [ 4] [0800] +04:46:04 [ 7] [ 10] [0319094511] +04:46:04 [ 11] [ 6] [154408] +04:46:04 [ 70] [ 3] [301] +04:46:04 ============================================================================ +04:46:04 + + +waiting on router queue for slot.... +04:46:04 Sending to : +04:46:04 ============================================================================ +04:46:04 ============================================================================ +04:46:04 Slot Id : <359> +04:46:04 Transaction Type : RESPONSE +04:46:04 Received From : +04:46:04 ============================================================================ +04:46:04 FNo. Len. Field Value +04:46:04 ============================================================================ +04:46:04 [ 1] [ 4] [0810] +04:46:04 [ 7] [ 10] [0319094511] +04:46:04 [ 11] [ 6] [154408] +04:46:04 [ 39] [ 2] [00] +04:46:04 [ 70] [ 3] [301] +04:46:04 ============================================================================ +04:46:04 Calculate Source COMM Id = 2 +04:46:04 ============================================================================ +04:46:04 + + +waiting on router queue for slot.... +04:46:20 ============================================================================ +04:46:20 Slot Id : <395> +04:46:20 Transaction Type : REQUEST +04:46:20 Received From : +04:46:20 ============================================================================ +04:46:20 FNo. Len. Field Value +04:46:20 ============================================================================ +04:46:20 [ 1] [ 4] [0800] +04:46:20 [ 7] [ 10] [0319094526] +04:46:20 [ 11] [ 6] [154409] +04:46:20 [ 70] [ 3] [301] +04:46:20 ============================================================================ +04:46:20 + + +waiting on router queue for slot.... +04:46:20 Sending to : +04:46:20 ============================================================================ +04:46:20 ============================================================================ +04:46:20 Slot Id : <395> +04:46:20 Transaction Type : RESPONSE +04:46:20 Received From : +04:46:20 ============================================================================ +04:46:20 FNo. Len. Field Value +04:46:20 ============================================================================ +04:46:20 [ 1] [ 4] [0810] +04:46:20 [ 7] [ 10] [0319094526] +04:46:20 [ 11] [ 6] [154409] +04:46:20 [ 39] [ 2] [00] +04:46:20 [ 70] [ 3] [301] +04:46:20 ============================================================================ +04:46:20 Calculate Source COMM Id = 2 +04:46:20 ============================================================================ +04:46:20 + + +waiting on router queue for slot.... +04:46:21 ============================================================================ +04:46:21 Slot Id : <361> +04:46:21 Transaction Type : REQUEST +04:46:21 Received From : +04:46:21 ============================================================================ +04:46:21 FNo. Len. Field Value +04:46:21 ============================================================================ +04:46:21 [ 1] [ 4] [0800] +04:46:21 [ 7] [ 10] [0319214412] +04:46:21 [ 11] [ 6] [071557] +04:46:21 [ 37] [ 12] [57904071557] +04:46:21 [ 70] [ 3] [301] +04:46:21 ============================================================================ +04:46:21 + + +waiting on router queue for slot.... +04:46:21 Sending to : +04:46:21 ============================================================================ +04:46:21 ============================================================================ +04:46:21 Slot Id : <361> +04:46:21 Transaction Type : RESPONSE +04:46:21 Received From : +04:46:21 ============================================================================ +04:46:21 FNo. Len. Field Value +04:46:21 ============================================================================ +04:46:21 [ 1] [ 4] [0810] +04:46:21 [ 7] [ 10] [0319214412] +04:46:21 [ 11] [ 6] [071557] +04:46:21 [ 37] [ 12] [579040715570] +04:46:21 [ 39] [ 2] [00] +04:46:21 [ 70] [ 3] [810] +04:46:21 ============================================================================ +04:46:21 Calculate Source COMM Id = 4 +04:46:21 ============================================================================ +04:46:21 + + +waiting on router queue for slot.... +04:46:34 ============================================================================ +04:46:34 Slot Id : <410> +04:46:34 Transaction Type : REQUEST +04:46:34 Received From : +04:46:34 ============================================================================ +04:46:34 FNo. Len. Field Value +04:46:34 ============================================================================ +04:46:34 [ 1] [ 4] [0800] +04:46:34 [ 7] [ 10] [0319094541] +04:46:34 [ 11] [ 6] [154410] +04:46:34 [ 70] [ 3] [301] +04:46:34 ============================================================================ +04:46:34 + + +waiting on router queue for slot.... +04:46:34 Sending to : +04:46:34 ============================================================================ +04:46:34 ============================================================================ +04:46:34 Slot Id : <410> +04:46:34 Transaction Type : RESPONSE +04:46:34 Received From : +04:46:34 ============================================================================ +04:46:34 FNo. Len. Field Value +04:46:34 ============================================================================ +04:46:34 [ 1] [ 4] [0810] +04:46:34 [ 7] [ 10] [0319094541] +04:46:34 [ 11] [ 6] [154410] +04:46:34 [ 39] [ 2] [00] +04:46:34 [ 70] [ 3] [301] +04:46:34 ============================================================================ +04:46:34 Calculate Source COMM Id = 2 +04:46:34 ============================================================================ +04:46:34 + + +waiting on router queue for slot.... +04:46:45 ============================================================================ +04:46:45 Slot Id : <349> +04:46:45 Transaction Type : REQUEST +04:46:45 Received From : +04:46:45 ============================================================================ +04:46:45 FNo. Len. Field Value +04:46:45 ============================================================================ +04:46:45 [ 1] [ 4] [0800] +04:46:45 [ 7] [ 10] [0319094552] +04:46:45 [ 11] [ 6] [154411] +04:46:45 [ 70] [ 3] [301] +04:46:45 ============================================================================ +04:46:45 + + +waiting on router queue for slot.... +04:46:45 Sending to : +04:46:45 ============================================================================ +04:46:45 ============================================================================ +04:46:45 Slot Id : <349> +04:46:45 Transaction Type : RESPONSE +04:46:45 Received From : +04:46:45 ============================================================================ +04:46:45 FNo. Len. Field Value +04:46:45 ============================================================================ +04:46:45 [ 1] [ 4] [0810] +04:46:45 [ 7] [ 10] [0319094552] +04:46:45 [ 11] [ 6] [154411] +04:46:45 [ 39] [ 2] [00] +04:46:45 [ 70] [ 3] [301] +04:46:45 ============================================================================ +04:46:45 Calculate Source COMM Id = 2 +04:46:45 ============================================================================ +04:46:45 + + +waiting on router queue for slot.... +04:46:50 ============================================================================ +04:46:50 Slot Id : <383> +04:46:50 Transaction Type : REQUEST +04:46:50 Received From : +04:46:50 ============================================================================ +04:46:50 FNo. Len. Field Value +04:46:50 ============================================================================ +04:46:50 [ 1] [ 4] [0800] +04:46:50 [ 2] [ 5] [02531] +04:46:50 [ 3] [ 6] [579048] +04:46:50 [ 7] [ 10] [0319214650] +04:46:50 [ 11] [ 6] [806689] +04:46:50 [ 15] [ 10] [0319214650] +04:46:50 [ 37] [ 11] [57904806689] +04:46:50 [ 70] [ 3] [001] +04:46:50 ============================================================================ +04:46:50 + + +waiting on router queue for slot.... +04:46:50 ============================================================================ +04:46:50 Slot Id : <383> +04:46:50 Transaction Type : RESPONSE +04:46:50 Received From : +04:46:50 ============================================================================ +04:46:50 FNo. Len. Field Value +04:46:50 ============================================================================ +04:46:50 [ 1] [ 4] [0810] +04:46:50 [ 7] [ 10] [0319214650] +04:46:50 [ 11] [ 6] [806689] +04:46:50 [ 15] [ 4] [0319] +04:46:50 [ 37] [ 12] [57904806689] +04:46:50 [ 39] [ 2] [00] +04:46:50 [ 70] [ 3] [001] +04:46:50 ============================================================================ +04:46:50 Sending to : +04:46:50 ============================================================================ +04:46:50 + + +waiting on router queue for slot.... +04:46:55 ============================================================================ +04:46:55 Slot Id : <413> +04:46:55 Transaction Type : REQUEST +04:46:55 Received From : +04:46:55 ============================================================================ +04:46:55 FNo. Len. Field Value +04:46:55 ============================================================================ +04:46:55 [ 1] [ 4] [0800] +04:46:55 [ 7] [ 10] [0319094602] +04:46:55 [ 11] [ 6] [154412] +04:46:55 [ 70] [ 3] [301] +04:46:55 ============================================================================ +04:46:55 + + +waiting on router queue for slot.... +04:46:55 Sending to : +04:46:55 ============================================================================ +04:46:55 ============================================================================ +04:46:55 Slot Id : <413> +04:46:55 Transaction Type : RESPONSE +04:46:55 Received From : +04:46:55 ============================================================================ +04:46:55 FNo. Len. Field Value +04:46:55 ============================================================================ +04:46:55 [ 1] [ 4] [0810] +04:46:55 [ 7] [ 10] [0319094602] +04:46:55 [ 11] [ 6] [154412] +04:46:55 [ 39] [ 2] [00] +04:46:55 [ 70] [ 3] [301] +04:46:55 ============================================================================ +04:46:55 Calculate Source COMM Id = 2 +04:46:55 ============================================================================ +04:46:55 + + +waiting on router queue for slot.... +04:47:04 ============================================================================ +04:47:04 Slot Id : <393> +04:47:04 Transaction Type : REQUEST +04:47:04 Received From : +04:47:04 ============================================================================ +04:47:04 FNo. Len. Field Value +04:47:04 ============================================================================ +04:47:04 [ 1] [ 4] [0800] +04:47:04 [ 7] [ 10] [0320115851] +04:47:04 [ 11] [ 6] [045851] +04:47:04 [ 37] [ 12] [57904045851] +04:47:04 [ 70] [ 3] [301] +04:47:04 ============================================================================ +04:47:04 + + +waiting on router queue for slot.... +04:47:04 Sending to : +04:47:04 ============================================================================ +04:47:04 ============================================================================ +04:47:04 Slot Id : <393> +04:47:04 Transaction Type : RESPONSE +04:47:04 Received From : +04:47:04 ============================================================================ +04:47:04 FNo. Len. Field Value +04:47:04 ============================================================================ +04:47:04 [ 1] [ 4] [0810] +04:47:04 [ 7] [ 10] [0320115851] +04:47:04 [ 11] [ 6] [045851] +04:47:04 [ 37] [ 12] [579040458510] +04:47:04 [ 39] [ 2] [00] +04:47:04 [ 70] [ 3] [810] +04:47:04 ============================================================================ +04:47:04 Calculate Source COMM Id = 6 +04:47:04 ============================================================================ +04:47:04 + + +waiting on router queue for slot.... +04:47:05 ============================================================================ +04:47:05 Slot Id : <397> +04:47:05 Transaction Type : REQUEST +04:47:05 Received From : +04:47:05 ============================================================================ +04:47:05 FNo. Len. Field Value +04:47:05 ============================================================================ +04:47:05 [ 1] [ 4] [0800] +04:47:05 [ 7] [ 10] [0319094612] +04:47:05 [ 11] [ 6] [154413] +04:47:05 [ 70] [ 3] [301] +04:47:05 ============================================================================ +04:47:05 + + +waiting on router queue for slot.... +04:47:05 Sending to : +04:47:05 ============================================================================ +04:47:05 ============================================================================ +04:47:05 Slot Id : <397> +04:47:05 Transaction Type : RESPONSE +04:47:05 Received From : +04:47:05 ============================================================================ +04:47:05 FNo. Len. Field Value +04:47:05 ============================================================================ +04:47:05 [ 1] [ 4] [0810] +04:47:05 [ 7] [ 10] [0319094612] +04:47:05 [ 11] [ 6] [154413] +04:47:05 [ 39] [ 2] [00] +04:47:05 [ 70] [ 3] [301] +04:47:05 ============================================================================ +04:47:05 Calculate Source COMM Id = 2 +04:47:05 ============================================================================ +04:47:05 + + +waiting on router queue for slot.... +04:47:10 ============================================================================ +04:47:10 Slot Id : <400> +04:47:10 Transaction Type : REQUEST +04:47:10 Received From : +04:47:10 ============================================================================ +04:47:10 FNo. Len. Field Value +04:47:10 ============================================================================ +04:47:10 [ 1] [ 4] [0800] +04:47:10 [ 7] [ 10] [0320044656] +04:47:10 [ 11] [ 6] [025177] +04:47:10 [ 37] [ 12] [507904025177] +04:47:10 [ 70] [ 3] [ ] +04:47:10 ============================================================================ +04:47:10 + + +waiting on router queue for slot.... +04:47:10 Sending to : +04:47:10 ============================================================================ +04:47:10 ============================================================================ +04:47:10 Slot Id : <400> +04:47:10 Transaction Type : RESPONSE +04:47:10 Received From : +04:47:10 ============================================================================ +04:47:10 FNo. Len. Field Value +04:47:10 ============================================================================ +04:47:10 [ 1] [ 4] [0810] +04:47:10 [ 7] [ 10] [0320044656] +04:47:10 [ 11] [ 6] [025177] +04:47:10 [ 37] [ 12] [507904025177] +04:47:10 [ 39] [ 2] [91] +04:47:10 [ 70] [ 3] [ ] +04:47:10 ============================================================================ +04:47:10 Calculate Source COMM Id = 3 +04:47:10 ============================================================================ +04:47:10 + + +waiting on router queue for slot.... +04:47:20 ============================================================================ +04:47:20 Slot Id : <414> +04:47:20 Transaction Type : REQUEST +04:47:20 Received From : +04:47:20 ============================================================================ +04:47:20 FNo. Len. Field Value +04:47:20 ============================================================================ +04:47:20 [ 1] [ 4] [0800] +04:47:20 [ 7] [ 10] [0319094627] +04:47:20 [ 11] [ 6] [154414] +04:47:20 [ 70] [ 3] [301] +04:47:20 ============================================================================ +04:47:20 + + +waiting on router queue for slot.... +04:47:20 Sending to : +04:47:20 ============================================================================ +04:47:20 ============================================================================ +04:47:20 Slot Id : <414> +04:47:20 Transaction Type : RESPONSE +04:47:20 Received From : +04:47:20 ============================================================================ +04:47:20 FNo. Len. Field Value +04:47:20 ============================================================================ +04:47:20 [ 1] [ 4] [0810] +04:47:20 [ 7] [ 10] [0319094627] +04:47:20 [ 11] [ 6] [154414] +04:47:20 [ 39] [ 2] [00] +04:47:20 [ 70] [ 3] [301] +04:47:20 ============================================================================ +04:47:20 Calculate Source COMM Id = 2 +04:47:20 ============================================================================ +04:47:20 + + +waiting on router queue for slot.... +04:47:31 ============================================================================ +04:47:31 Slot Id : <399> +04:47:31 Transaction Type : REQUEST +04:47:31 Received From : +04:47:31 ============================================================================ +04:47:31 FNo. Len. Field Value +04:47:31 ============================================================================ +04:47:31 [ 1] [ 4] [0800] +04:47:31 [ 7] [ 10] [0319094637] +04:47:31 [ 11] [ 6] [154415] +04:47:31 [ 70] [ 3] [301] +04:47:31 ============================================================================ +04:47:31 + + +waiting on router queue for slot.... +04:47:31 Sending to : +04:47:31 ============================================================================ +04:47:31 ============================================================================ +04:47:31 Slot Id : <399> +04:47:31 Transaction Type : RESPONSE +04:47:31 Received From : +04:47:31 ============================================================================ +04:47:31 FNo. Len. Field Value +04:47:31 ============================================================================ +04:47:31 [ 1] [ 4] [0810] +04:47:31 [ 7] [ 10] [0319094637] +04:47:31 [ 11] [ 6] [154415] +04:47:31 [ 39] [ 2] [00] +04:47:31 [ 70] [ 3] [301] +04:47:31 ============================================================================ +04:47:31 Calculate Source COMM Id = 2 +04:47:31 ============================================================================ +04:47:31 + + +waiting on router queue for slot.... +04:47:41 ============================================================================ +04:47:41 Slot Id : <394> +04:47:41 Transaction Type : REQUEST +04:47:41 Received From : +04:47:41 ============================================================================ +04:47:41 FNo. Len. Field Value +04:47:41 ============================================================================ +04:47:41 [ 1] [ 4] [0800] +04:47:41 [ 7] [ 10] [0319094648] +04:47:41 [ 11] [ 6] [154416] +04:47:41 [ 70] [ 3] [301] +04:47:41 ============================================================================ +04:47:41 + + +waiting on router queue for slot.... +04:47:41 Sending to : +04:47:41 ============================================================================ +04:47:41 ============================================================================ +04:47:41 Slot Id : <394> +04:47:41 Transaction Type : RESPONSE +04:47:41 Received From : +04:47:41 ============================================================================ +04:47:41 FNo. Len. Field Value +04:47:41 ============================================================================ +04:47:41 [ 1] [ 4] [0810] +04:47:41 [ 7] [ 10] [0319094648] +04:47:41 [ 11] [ 6] [154416] +04:47:41 [ 39] [ 2] [00] +04:47:41 [ 70] [ 3] [301] +04:47:41 ============================================================================ +04:47:41 Calculate Source COMM Id = 2 +04:47:41 ============================================================================ +04:47:41 + + +waiting on router queue for slot.... +04:47:52 ============================================================================ +04:47:52 Slot Id : <387> +04:47:52 Transaction Type : REQUEST +04:47:52 Received From : +04:47:52 ============================================================================ +04:47:52 FNo. Len. Field Value +04:47:52 ============================================================================ +04:47:52 [ 1] [ 4] [0800] +04:47:52 [ 2] [ 5] [02531] +04:47:52 [ 3] [ 6] [579048] +04:47:52 [ 7] [ 10] [0319214752] +04:47:52 [ 11] [ 6] [806690] +04:47:52 [ 15] [ 10] [0319214752] +04:47:52 [ 37] [ 11] [57904806690] +04:47:52 [ 70] [ 3] [001] +04:47:52 ============================================================================ +04:47:52 + + +waiting on router queue for slot.... +04:47:52 ============================================================================ +04:47:52 Slot Id : <387> +04:47:52 Transaction Type : RESPONSE +04:47:52 Received From : +04:47:52 ============================================================================ +04:47:52 FNo. Len. Field Value +04:47:52 ============================================================================ +04:47:52 [ 1] [ 4] [0810] +04:47:52 [ 7] [ 10] [0319214752] +04:47:52 [ 11] [ 6] [806690] +04:47:52 [ 15] [ 4] [0319] +04:47:52 [ 37] [ 12] [57904806690] +04:47:52 [ 39] [ 2] [00] +04:47:52 [ 70] [ 3] [001] +04:47:52 ============================================================================ +04:47:52 Sending to : +04:47:52 ============================================================================ +04:47:52 + + +waiting on router queue for slot.... +04:47:52 ============================================================================ +04:47:52 Slot Id : <368> +04:47:52 Transaction Type : REQUEST +04:47:52 Received From : +04:47:52 ============================================================================ +04:47:52 FNo. Len. Field Value +04:47:52 ============================================================================ +04:47:52 [ 1] [ 4] [0800] +04:47:52 [ 7] [ 10] [0319094659] +04:47:52 [ 11] [ 6] [154417] +04:47:52 [ 70] [ 3] [301] +04:47:52 ============================================================================ +04:47:52 + + +waiting on router queue for slot.... +04:47:52 Sending to : +04:47:52 ============================================================================ +04:47:52 ============================================================================ +04:47:52 Slot Id : <368> +04:47:52 Transaction Type : RESPONSE +04:47:52 Received From : +04:47:52 ============================================================================ +04:47:52 FNo. Len. Field Value +04:47:52 ============================================================================ +04:47:52 [ 1] [ 4] [0810] +04:47:52 [ 7] [ 10] [0319094659] +04:47:52 [ 11] [ 6] [154417] +04:47:52 [ 39] [ 2] [00] +04:47:52 [ 70] [ 3] [301] +04:47:52 ============================================================================ +04:47:52 Calculate Source COMM Id = 2 +04:47:52 ============================================================================ +04:47:52 + + +waiting on router queue for slot.... +04:48:02 ============================================================================ +04:48:02 Slot Id : <372> +04:48:02 Transaction Type : REQUEST +04:48:02 Received From : +04:48:02 ============================================================================ +04:48:02 FNo. Len. Field Value +04:48:02 ============================================================================ +04:48:02 [ 1] [ 4] [0800] +04:48:02 [ 7] [ 10] [0319094709] +04:48:02 [ 11] [ 6] [154418] +04:48:02 [ 70] [ 3] [301] +04:48:02 ============================================================================ +04:48:02 + + +waiting on router queue for slot.... +04:48:02 Sending to : +04:48:02 ============================================================================ +04:48:02 ============================================================================ +04:48:02 Slot Id : <372> +04:48:02 Transaction Type : RESPONSE +04:48:02 Received From : +04:48:02 ============================================================================ +04:48:02 FNo. Len. Field Value +04:48:02 ============================================================================ +04:48:02 [ 1] [ 4] [0810] +04:48:02 [ 7] [ 10] [0319094709] +04:48:02 [ 11] [ 6] [154418] +04:48:02 [ 39] [ 2] [00] +04:48:02 [ 70] [ 3] [301] +04:48:02 ============================================================================ +04:48:02 Calculate Source COMM Id = 2 +04:48:02 ============================================================================ +04:48:02 + + +waiting on router queue for slot.... +04:48:09 ============================================================================ +04:48:09 Slot Id : <418> +04:48:09 Transaction Type : REQUEST +04:48:09 Received From : +04:48:09 ============================================================================ +04:48:09 FNo. Len. Field Value +04:48:09 ============================================================================ +04:48:09 [ 1] [ 4] [0800] +04:48:09 [ 7] [ 10] [0320115956] +04:48:09 [ 11] [ 6] [045956] +04:48:09 [ 37] [ 12] [57904045956] +04:48:09 [ 70] [ 3] [301] +04:48:09 ============================================================================ +04:48:09 + + +waiting on router queue for slot.... +04:48:09 Sending to : +04:48:09 ============================================================================ +04:48:09 ============================================================================ +04:48:09 Slot Id : <418> +04:48:09 Transaction Type : RESPONSE +04:48:09 Received From : +04:48:09 ============================================================================ +04:48:09 FNo. Len. Field Value +04:48:09 ============================================================================ +04:48:09 [ 1] [ 4] [0810] +04:48:09 [ 7] [ 10] [0320115956] +04:48:09 [ 11] [ 6] [045956] +04:48:09 [ 37] [ 12] [579040459560] +04:48:09 [ 39] [ 2] [00] +04:48:09 [ 70] [ 3] [810] +04:48:09 ============================================================================ +04:48:09 Calculate Source COMM Id = 6 +04:48:09 ============================================================================ +04:48:09 + + +waiting on router queue for slot.... +04:48:17 ============================================================================ +04:48:17 Slot Id : <380> +04:48:17 Transaction Type : REQUEST +04:48:17 Received From : +04:48:17 ============================================================================ +04:48:17 FNo. Len. Field Value +04:48:17 ============================================================================ +04:48:17 [ 1] [ 4] [0800] +04:48:17 [ 7] [ 10] [0319094724] +04:48:17 [ 11] [ 6] [154419] +04:48:17 [ 70] [ 3] [301] +04:48:17 ============================================================================ +04:48:17 + + +waiting on router queue for slot.... +04:48:17 Sending to : +04:48:17 ============================================================================ +04:48:17 ============================================================================ +04:48:17 Slot Id : <380> +04:48:17 Transaction Type : RESPONSE +04:48:17 Received From : +04:48:17 ============================================================================ +04:48:17 FNo. Len. Field Value +04:48:17 ============================================================================ +04:48:17 [ 1] [ 4] [0810] +04:48:17 [ 7] [ 10] [0319094724] +04:48:17 [ 11] [ 6] [154419] +04:48:17 [ 39] [ 2] [00] +04:48:17 [ 70] [ 3] [301] +04:48:17 ============================================================================ +04:48:17 Calculate Source COMM Id = 2 +04:48:17 ============================================================================ +04:48:17 + + +waiting on router queue for slot.... +04:48:28 ============================================================================ +04:48:28 Slot Id : <406> +04:48:28 Transaction Type : REQUEST +04:48:28 Received From : +04:48:28 ============================================================================ +04:48:28 FNo. Len. Field Value +04:48:28 ============================================================================ +04:48:28 [ 1] [ 4] [0800] +04:48:28 [ 7] [ 10] [0319094734] +04:48:28 [ 11] [ 6] [154420] +04:48:28 [ 70] [ 3] [301] +04:48:28 ============================================================================ +04:48:28 + + +waiting on router queue for slot.... +04:48:28 Sending to : +04:48:28 ============================================================================ +04:48:28 ============================================================================ +04:48:28 Slot Id : <406> +04:48:28 Transaction Type : RESPONSE +04:48:28 Received From : +04:48:28 ============================================================================ +04:48:28 FNo. Len. Field Value +04:48:28 ============================================================================ +04:48:28 [ 1] [ 4] [0810] +04:48:28 [ 7] [ 10] [0319094734] +04:48:28 [ 11] [ 6] [154420] +04:48:28 [ 39] [ 2] [00] +04:48:28 [ 70] [ 3] [301] +04:48:28 ============================================================================ +04:48:28 Calculate Source COMM Id = 2 +04:48:28 ============================================================================ +04:48:28 + + +waiting on router queue for slot.... +04:48:38 ============================================================================ +04:48:38 Slot Id : <419> +04:48:38 Transaction Type : REQUEST +04:48:38 Received From : +04:48:38 ============================================================================ +04:48:38 FNo. Len. Field Value +04:48:38 ============================================================================ +04:48:38 [ 1] [ 4] [0800] +04:48:38 [ 7] [ 10] [0319094745] +04:48:38 [ 11] [ 6] [154421] +04:48:38 [ 70] [ 3] [301] +04:48:38 ============================================================================ +04:48:38 + + +waiting on router queue for slot.... +04:48:38 Sending to : +04:48:38 ============================================================================ +04:48:38 ============================================================================ +04:48:38 Slot Id : <419> +04:48:38 Transaction Type : RESPONSE +04:48:38 Received From : +04:48:38 ============================================================================ +04:48:38 FNo. Len. Field Value +04:48:38 ============================================================================ +04:48:38 [ 1] [ 4] [0810] +04:48:38 [ 7] [ 10] [0319094745] +04:48:38 [ 11] [ 6] [154421] +04:48:38 [ 39] [ 2] [00] +04:48:38 [ 70] [ 3] [301] +04:48:38 ============================================================================ +04:48:38 Calculate Source COMM Id = 2 +04:48:38 ============================================================================ +04:48:38 + + +waiting on router queue for slot.... +04:48:50 ============================================================================ +04:48:50 Slot Id : <411> +04:48:50 Transaction Type : REQUEST +04:48:50 Received From : +04:48:50 ============================================================================ +04:48:50 FNo. Len. Field Value +04:48:50 ============================================================================ +04:48:50 [ 1] [ 4] [0800] +04:48:50 [ 7] [ 10] [0319094756] +04:48:50 [ 11] [ 6] [154422] +04:48:50 [ 70] [ 3] [301] +04:48:50 ============================================================================ +04:48:50 + + +waiting on router queue for slot.... +04:48:50 Sending to : +04:48:50 ============================================================================ +04:48:50 ============================================================================ +04:48:50 Slot Id : <411> +04:48:50 Transaction Type : RESPONSE +04:48:50 Received From : +04:48:50 ============================================================================ +04:48:50 FNo. Len. Field Value +04:48:50 ============================================================================ +04:48:50 [ 1] [ 4] [0810] +04:48:50 [ 7] [ 10] [0319094756] +04:48:50 [ 11] [ 6] [154422] +04:48:50 [ 39] [ 2] [00] +04:48:50 [ 70] [ 3] [301] +04:48:50 ============================================================================ +04:48:50 Calculate Source COMM Id = 2 +04:48:50 ============================================================================ +04:48:50 + + +waiting on router queue for slot.... +04:48:54 ============================================================================ +04:48:54 Slot Id : <407> +04:48:54 Transaction Type : REQUEST +04:48:54 Received From : +04:48:54 ============================================================================ +04:48:54 FNo. Len. Field Value +04:48:54 ============================================================================ +04:48:54 [ 1] [ 4] [0800] +04:48:54 [ 2] [ 5] [02531] +04:48:54 [ 3] [ 6] [579048] +04:48:54 [ 7] [ 10] [0319214854] +04:48:54 [ 11] [ 6] [806691] +04:48:54 [ 15] [ 10] [0319214854] +04:48:54 [ 37] [ 11] [57904806691] +04:48:54 [ 70] [ 3] [001] +04:48:54 ============================================================================ +04:48:54 + + +waiting on router queue for slot.... +04:48:54 ============================================================================ +04:48:54 Slot Id : <407> +04:48:54 Transaction Type : RESPONSE +04:48:54 Received From : +04:48:54 ============================================================================ +04:48:54 FNo. Len. Field Value +04:48:54 ============================================================================ +04:48:54 [ 1] [ 4] [0810] +04:48:54 [ 7] [ 10] [0319214854] +04:48:54 [ 11] [ 6] [806691] +04:48:54 [ 15] [ 4] [0319] +04:48:54 [ 37] [ 12] [57904806691] +04:48:54 [ 39] [ 2] [00] +04:48:54 [ 70] [ 3] [001] +04:48:54 ============================================================================ +04:48:54 Sending to : +04:48:54 ============================================================================ +04:48:54 + + +waiting on router queue for slot.... +04:49:05 ============================================================================ +04:49:05 Slot Id : <384> +04:49:05 Transaction Type : REQUEST +04:49:05 Received From : +04:49:05 ============================================================================ +04:49:05 FNo. Len. Field Value +04:49:05 ============================================================================ +04:49:05 [ 1] [ 4] [0800] +04:49:05 [ 7] [ 10] [0319094811] +04:49:05 [ 11] [ 6] [154423] +04:49:05 [ 70] [ 3] [301] +04:49:05 ============================================================================ +04:49:05 + + +waiting on router queue for slot.... +04:49:05 Sending to : +04:49:05 ============================================================================ +04:49:05 ============================================================================ +04:49:05 Slot Id : <384> +04:49:05 Transaction Type : RESPONSE +04:49:05 Received From : +04:49:05 ============================================================================ +04:49:05 FNo. Len. Field Value +04:49:05 ============================================================================ +04:49:05 [ 1] [ 4] [0810] +04:49:05 [ 7] [ 10] [0319094811] +04:49:05 [ 11] [ 6] [154423] +04:49:05 [ 39] [ 2] [00] +04:49:05 [ 70] [ 3] [301] +04:49:05 ============================================================================ +04:49:05 Calculate Source COMM Id = 2 +04:49:05 ============================================================================ +04:49:05 + + +waiting on router queue for slot.... +04:49:14 ============================================================================ +04:49:14 Slot Id : <401> +04:49:14 Transaction Type : REQUEST +04:49:14 Received From : +04:49:14 ============================================================================ +04:49:14 FNo. Len. Field Value +04:49:14 ============================================================================ +04:49:14 [ 1] [ 4] [0800] +04:49:14 [ 7] [ 10] [0320120101] +04:49:14 [ 11] [ 6] [050101] +04:49:14 [ 37] [ 12] [57905050101] +04:49:14 [ 70] [ 3] [301] +04:49:14 ============================================================================ +04:49:14 + + +waiting on router queue for slot.... +04:49:14 Sending to : +04:49:14 ============================================================================ +04:49:14 ============================================================================ +04:49:14 Slot Id : <401> +04:49:14 Transaction Type : RESPONSE +04:49:14 Received From : +04:49:14 ============================================================================ +04:49:14 FNo. Len. Field Value +04:49:14 ============================================================================ +04:49:14 [ 1] [ 4] [0810] +04:49:14 [ 7] [ 10] [0320120101] +04:49:14 [ 11] [ 6] [050101] +04:49:14 [ 37] [ 12] [579050501010] +04:49:14 [ 39] [ 2] [00] +04:49:14 [ 70] [ 3] [810] +04:49:14 ============================================================================ +04:49:14 Calculate Source COMM Id = 6 +04:49:14 ============================================================================ +04:49:14 + + +waiting on router queue for slot.... +04:49:15 ============================================================================ +04:49:15 Slot Id : <420> +04:49:15 Transaction Type : REQUEST +04:49:15 Received From : +04:49:15 ============================================================================ +04:49:15 FNo. Len. Field Value +04:49:15 ============================================================================ +04:49:15 [ 1] [ 4] [0800] +04:49:15 [ 7] [ 10] [0319094821] +04:49:15 [ 11] [ 6] [154424] +04:49:15 [ 70] [ 3] [301] +04:49:15 ============================================================================ +04:49:15 + + +waiting on router queue for slot.... +04:49:15 Sending to : +04:49:15 ============================================================================ +04:49:15 ============================================================================ +04:49:15 Slot Id : <420> +04:49:15 Transaction Type : RESPONSE +04:49:15 Received From : +04:49:15 ============================================================================ +04:49:15 FNo. Len. Field Value +04:49:15 ============================================================================ +04:49:15 [ 1] [ 4] [0810] +04:49:15 [ 7] [ 10] [0319094821] +04:49:15 [ 11] [ 6] [154424] +04:49:15 [ 39] [ 2] [00] +04:49:15 [ 70] [ 3] [301] +04:49:15 ============================================================================ +04:49:15 Calculate Source COMM Id = 2 +04:49:15 ============================================================================ +04:49:15 + + +waiting on router queue for slot.... +04:49:25 ============================================================================ +04:49:25 Slot Id : <416> +04:49:25 Transaction Type : REQUEST +04:49:25 Received From : +04:49:25 ============================================================================ +04:49:25 FNo. Len. Field Value +04:49:25 ============================================================================ +04:49:25 [ 1] [ 4] [0800] +04:49:25 [ 7] [ 10] [0319094831] +04:49:25 [ 11] [ 6] [154425] +04:49:25 [ 70] [ 3] [301] +04:49:25 ============================================================================ +04:49:25 + + +waiting on router queue for slot.... +04:49:25 Sending to : +04:49:25 ============================================================================ +04:49:25 ============================================================================ +04:49:25 Slot Id : <416> +04:49:25 Transaction Type : RESPONSE +04:49:25 Received From : +04:49:25 ============================================================================ +04:49:25 FNo. Len. Field Value +04:49:25 ============================================================================ +04:49:25 [ 1] [ 4] [0810] +04:49:25 [ 7] [ 10] [0319094831] +04:49:25 [ 11] [ 6] [154425] +04:49:25 [ 39] [ 2] [00] +04:49:25 [ 70] [ 3] [301] +04:49:25 ============================================================================ +04:49:25 Calculate Source COMM Id = 2 +04:49:25 ============================================================================ +04:49:25 + + +waiting on router queue for slot.... +04:49:40 ============================================================================ +04:49:40 Slot Id : <415> +04:49:40 Transaction Type : REQUEST +04:49:40 Received From : +04:49:40 ============================================================================ +04:49:40 FNo. Len. Field Value +04:49:40 ============================================================================ +04:49:40 [ 1] [ 4] [0800] +04:49:40 [ 7] [ 10] [0319094847] +04:49:40 [ 11] [ 6] [154426] +04:49:40 [ 70] [ 3] [301] +04:49:40 ============================================================================ +04:49:40 + + +waiting on router queue for slot.... +04:49:40 Sending to : +04:49:40 ============================================================================ +04:49:40 ============================================================================ +04:49:40 Slot Id : <415> +04:49:40 Transaction Type : RESPONSE +04:49:40 Received From : +04:49:40 ============================================================================ +04:49:40 FNo. Len. Field Value +04:49:40 ============================================================================ +04:49:40 [ 1] [ 4] [0810] +04:49:40 [ 7] [ 10] [0319094847] +04:49:40 [ 11] [ 6] [154426] +04:49:40 [ 39] [ 2] [00] +04:49:40 [ 70] [ 3] [301] +04:49:40 ============================================================================ +04:49:40 Calculate Source COMM Id = 2 +04:49:40 ============================================================================ +04:49:40 + + +waiting on router queue for slot.... +04:49:55 ============================================================================ +04:49:55 Slot Id : <381> +04:49:55 Transaction Type : REQUEST +04:49:55 Received From : +04:49:55 ============================================================================ +04:49:55 FNo. Len. Field Value +04:49:55 ============================================================================ +04:49:55 [ 1] [ 4] [0800] +04:49:55 [ 7] [ 10] [0319214950] +04:49:55 [ 11] [ 6] [019987] +04:49:55 [ 37] [ 12] [507904019987] +04:49:55 [ 70] [ 3] [001] +04:49:55 ============================================================================ +04:49:55 + + +waiting on router queue for slot.... +04:49:55 Sending to : +04:49:55 ============================================================================ +04:49:55 ============================================================================ +04:49:55 Slot Id : <381> +04:49:55 Transaction Type : RESPONSE +04:49:55 Received From : +04:49:55 ============================================================================ +04:49:55 FNo. Len. Field Value +04:49:55 ============================================================================ +04:49:55 [ 1] [ 4] [0810] +04:49:55 [ 7] [ 10] [0319214950] +04:49:55 [ 11] [ 6] [019987] +04:49:55 [ 37] [ 12] [507904019987] +04:49:55 [ 39] [ 2] [00] +04:49:55 [ 70] [ 3] [001] +04:49:55 ============================================================================ +04:49:55 Calculate Source COMM Id = 0 +04:49:55 ============================================================================ +04:49:55 + + +waiting on router queue for slot.... +04:49:55 ============================================================================ +04:49:55 Slot Id : <425> +04:49:55 Transaction Type : REQUEST +04:49:55 Received From : +04:49:55 ============================================================================ +04:49:55 FNo. Len. Field Value +04:49:55 ============================================================================ +04:49:55 [ 1] [ 4] [0800] +04:49:55 [ 7] [ 10] [0319094902] +04:49:55 [ 11] [ 6] [154427] +04:49:55 [ 70] [ 3] [301] +04:49:55 ============================================================================ +04:49:55 + + +waiting on router queue for slot.... +04:49:55 Sending to : +04:49:55 ============================================================================ +04:49:55 ============================================================================ +04:49:55 Slot Id : <425> +04:49:55 Transaction Type : RESPONSE +04:49:55 Received From : +04:49:55 ============================================================================ +04:49:55 FNo. Len. Field Value +04:49:55 ============================================================================ +04:49:55 [ 1] [ 4] [0810] +04:49:55 [ 7] [ 10] [0319094902] +04:49:55 [ 11] [ 6] [154427] +04:49:55 [ 39] [ 2] [00] +04:49:55 [ 70] [ 3] [301] +04:49:55 ============================================================================ +04:49:55 Calculate Source COMM Id = 2 +04:49:55 ============================================================================ +04:49:55 + + +waiting on router queue for slot.... +04:49:56 ============================================================================ +04:49:56 Slot Id : <388> +04:49:56 Transaction Type : REQUEST +04:49:56 Received From : +04:49:56 ============================================================================ +04:49:56 FNo. Len. Field Value +04:49:56 ============================================================================ +04:49:56 [ 1] [ 4] [0800] +04:49:56 [ 2] [ 5] [02531] +04:49:56 [ 3] [ 6] [579048] +04:49:56 [ 7] [ 10] [0319214956] +04:49:56 [ 11] [ 6] [806692] +04:49:56 [ 15] [ 10] [0319214956] +04:49:56 [ 37] [ 11] [57904806692] +04:49:56 [ 70] [ 3] [001] +04:49:56 ============================================================================ +04:49:56 + + +waiting on router queue for slot.... +04:49:56 ============================================================================ +04:49:56 Slot Id : <388> +04:49:56 Transaction Type : RESPONSE +04:49:56 Received From : +04:49:56 ============================================================================ +04:49:56 FNo. Len. Field Value +04:49:56 ============================================================================ +04:49:56 [ 1] [ 4] [0810] +04:49:56 [ 7] [ 10] [0319214956] +04:49:56 [ 11] [ 6] [806692] +04:49:56 [ 15] [ 4] [0319] +04:49:56 [ 37] [ 12] [57904806692] +04:49:56 [ 39] [ 2] [00] +04:49:56 [ 70] [ 3] [001] +04:49:56 ============================================================================ +04:49:56 Sending to : +04:49:56 ============================================================================ +04:49:56 + + +waiting on router queue for slot.... +04:49:56 ============================================================================ +04:49:56 Slot Id : <398> +04:49:56 Transaction Type : REQUEST +04:49:56 Received From : +04:49:56 ============================================================================ +04:49:56 FNo. Len. Field Value +04:49:56 ============================================================================ +04:49:56 [ 1] [ 4] [0800] +04:49:56 [ 7] [ 10] [0319215742] +04:49:56 [ 11] [ 6] [034116] +04:49:56 [ 37] [ 12] [57904034116] +04:49:56 [ 70] [ 3] [301] +04:49:56 ============================================================================ +04:49:56 + + +waiting on router queue for slot.... +04:49:56 Sending to : +04:49:56 ============================================================================ +04:49:56 ============================================================================ +04:49:56 Slot Id : <398> +04:49:56 Transaction Type : RESPONSE +04:49:56 Received From : +04:49:56 ============================================================================ +04:49:56 FNo. Len. Field Value +04:49:56 ============================================================================ +04:49:56 [ 1] [ 4] [0810] +04:49:56 [ 7] [ 10] [0319215742] +04:49:56 [ 11] [ 6] [034116] +04:49:56 [ 37] [ 12] [579040341160] +04:49:56 [ 39] [ 2] [00] +04:49:56 [ 70] [ 3] [810] +04:49:56 ============================================================================ +04:49:56 Calculate Source COMM Id = 1 +04:49:56 ============================================================================ +04:49:56 + + +waiting on router queue for slot.... +04:50:06 ============================================================================ +04:50:06 Slot Id : <433> +04:50:06 Transaction Type : REQUEST +04:50:06 Received From : +04:50:06 ============================================================================ +04:50:06 FNo. Len. Field Value +04:50:06 ============================================================================ +04:50:06 [ 1] [ 4] [0800] +04:50:06 [ 7] [ 10] [0319094912] +04:50:06 [ 11] [ 6] [154428] +04:50:06 [ 70] [ 3] [301] +04:50:06 ============================================================================ +04:50:06 + + +waiting on router queue for slot.... +04:50:06 Sending to : +04:50:06 ============================================================================ +04:50:06 ============================================================================ +04:50:06 Slot Id : <433> +04:50:06 Transaction Type : RESPONSE +04:50:06 Received From : +04:50:06 ============================================================================ +04:50:06 FNo. Len. Field Value +04:50:06 ============================================================================ +04:50:06 [ 1] [ 4] [0810] +04:50:06 [ 7] [ 10] [0319094912] +04:50:06 [ 11] [ 6] [154428] +04:50:06 [ 39] [ 2] [00] +04:50:06 [ 70] [ 3] [301] +04:50:06 ============================================================================ +04:50:06 Calculate Source COMM Id = 2 +04:50:06 ============================================================================ +04:50:06 + + +waiting on router queue for slot.... +04:50:17 ============================================================================ +04:50:17 Slot Id : <364> +04:50:17 Transaction Type : REQUEST +04:50:17 Received From : +04:50:17 ============================================================================ +04:50:17 FNo. Len. Field Value +04:50:17 ============================================================================ +04:50:17 [ 1] [ 4] [0800] +04:50:17 [ 7] [ 10] [0319094923] +04:50:17 [ 11] [ 6] [154429] +04:50:17 [ 70] [ 3] [301] +04:50:17 ============================================================================ +04:50:17 + + +waiting on router queue for slot.... +04:50:17 Sending to : +04:50:17 ============================================================================ +04:50:17 ============================================================================ +04:50:17 Slot Id : <364> +04:50:17 Transaction Type : RESPONSE +04:50:17 Received From : +04:50:17 ============================================================================ +04:50:17 FNo. Len. Field Value +04:50:17 ============================================================================ +04:50:17 [ 1] [ 4] [0810] +04:50:17 [ 7] [ 10] [0319094923] +04:50:17 [ 11] [ 6] [154429] +04:50:17 [ 39] [ 2] [00] +04:50:17 [ 70] [ 3] [301] +04:50:17 ============================================================================ +04:50:17 Calculate Source COMM Id = 2 +04:50:17 ============================================================================ +04:50:17 + + +waiting on router queue for slot.... +04:50:19 ============================================================================ +04:50:19 Slot Id : <367> +04:50:19 Transaction Type : REQUEST +04:50:19 Received From : +04:50:19 ============================================================================ +04:50:19 FNo. Len. Field Value +04:50:19 ============================================================================ +04:50:19 [ 1] [ 4] [0800] +04:50:19 [ 7] [ 10] [0320120206] +04:50:19 [ 11] [ 6] [050206] +04:50:19 [ 37] [ 12] [57905050206] +04:50:19 [ 70] [ 3] [301] +04:50:19 ============================================================================ +04:50:19 + + +waiting on router queue for slot.... +04:50:19 Sending to : +04:50:19 ============================================================================ +04:50:19 ============================================================================ +04:50:19 Slot Id : <367> +04:50:19 Transaction Type : RESPONSE +04:50:19 Received From : +04:50:19 ============================================================================ +04:50:19 FNo. Len. Field Value +04:50:19 ============================================================================ +04:50:19 [ 1] [ 4] [0810] +04:50:19 [ 7] [ 10] [0320120206] +04:50:19 [ 11] [ 6] [050206] +04:50:19 [ 37] [ 12] [579050502060] +04:50:19 [ 39] [ 2] [00] +04:50:19 [ 70] [ 3] [810] +04:50:19 ============================================================================ +04:50:19 Calculate Source COMM Id = 6 +04:50:19 ============================================================================ +04:50:19 + + +waiting on router queue for slot.... +04:50:31 ============================================================================ +04:50:31 Slot Id : <430> +04:50:31 Transaction Type : REQUEST +04:50:31 Received From : +04:50:31 ============================================================================ +04:50:31 FNo. Len. Field Value +04:50:31 ============================================================================ +04:50:31 [ 1] [ 4] [0800] +04:50:31 [ 7] [ 10] [0319094938] +04:50:31 [ 11] [ 6] [154430] +04:50:31 [ 70] [ 3] [301] +04:50:31 ============================================================================ +04:50:31 + + +waiting on router queue for slot.... +04:50:31 Sending to : +04:50:31 ============================================================================ +04:50:31 ============================================================================ +04:50:31 Slot Id : <430> +04:50:31 Transaction Type : RESPONSE +04:50:31 Received From : +04:50:31 ============================================================================ +04:50:31 FNo. Len. Field Value +04:50:31 ============================================================================ +04:50:31 [ 1] [ 4] [0810] +04:50:31 [ 7] [ 10] [0319094938] +04:50:31 [ 11] [ 6] [154430] +04:50:31 [ 39] [ 2] [00] +04:50:31 [ 70] [ 3] [301] +04:50:31 ============================================================================ +04:50:31 Calculate Source COMM Id = 2 +04:50:31 ============================================================================ +04:50:31 + + +waiting on router queue for slot.... +04:50:42 ============================================================================ +04:50:42 Slot Id : <441> +04:50:42 Transaction Type : REQUEST +04:50:42 Received From : +04:50:42 ============================================================================ +04:50:42 FNo. Len. Field Value +04:50:42 ============================================================================ +04:50:42 [ 1] [ 4] [0800] +04:50:42 [ 7] [ 10] [0319094949] +04:50:42 [ 11] [ 6] [154431] +04:50:42 [ 70] [ 3] [301] +04:50:42 ============================================================================ +04:50:42 + + +waiting on router queue for slot.... +04:50:42 Sending to : +04:50:42 ============================================================================ +04:50:42 ============================================================================ +04:50:42 Slot Id : <441> +04:50:42 Transaction Type : RESPONSE +04:50:42 Received From : +04:50:42 ============================================================================ +04:50:42 FNo. Len. Field Value +04:50:42 ============================================================================ +04:50:42 [ 1] [ 4] [0810] +04:50:42 [ 7] [ 10] [0319094949] +04:50:42 [ 11] [ 6] [154431] +04:50:42 [ 39] [ 2] [00] +04:50:42 [ 70] [ 3] [301] +04:50:42 ============================================================================ +04:50:42 Calculate Source COMM Id = 2 +04:50:42 ============================================================================ +04:50:42 + + +waiting on router queue for slot.... +04:50:58 ============================================================================ +04:50:58 Slot Id : <375> +04:50:58 Transaction Type : REQUEST +04:50:58 Received From : +04:50:58 ============================================================================ +04:50:58 FNo. Len. Field Value +04:50:58 ============================================================================ +04:50:58 [ 1] [ 4] [0800] +04:50:58 [ 2] [ 5] [02531] +04:50:58 [ 3] [ 6] [579048] +04:50:58 [ 7] [ 10] [0319215058] +04:50:58 [ 11] [ 6] [806693] +04:50:58 [ 15] [ 10] [0319215058] +04:50:58 [ 37] [ 11] [57904806693] +04:50:58 [ 70] [ 3] [001] +04:50:58 ============================================================================ +04:50:58 + + +waiting on router queue for slot.... +04:50:58 ============================================================================ +04:50:58 Slot Id : <375> +04:50:58 Transaction Type : RESPONSE +04:50:58 Received From : +04:50:58 ============================================================================ +04:50:58 FNo. Len. Field Value +04:50:58 ============================================================================ +04:50:58 [ 1] [ 4] [0810] +04:50:58 [ 7] [ 10] [0319215058] +04:50:58 [ 11] [ 6] [806693] +04:50:58 [ 15] [ 4] [0319] +04:50:58 [ 37] [ 12] [57904806693] +04:50:58 [ 39] [ 2] [00] +04:50:58 [ 70] [ 3] [001] +04:50:58 ============================================================================ +04:50:58 Sending to : +04:50:58 ============================================================================ +04:50:58 + + +waiting on router queue for slot.... +04:50:58 ============================================================================ +04:50:58 Slot Id : <402> +04:50:58 Transaction Type : REQUEST +04:50:58 Received From : +04:50:58 ============================================================================ +04:50:58 FNo. Len. Field Value +04:50:58 ============================================================================ +04:50:58 [ 1] [ 4] [0800] +04:50:58 [ 7] [ 10] [0319095004] +04:50:58 [ 11] [ 6] [154432] +04:50:58 [ 70] [ 3] [301] +04:50:58 ============================================================================ +04:50:58 + + +waiting on router queue for slot.... +04:50:58 Sending to : +04:50:58 ============================================================================ +04:50:58 ============================================================================ +04:50:58 Slot Id : <402> +04:50:58 Transaction Type : RESPONSE +04:50:58 Received From : +04:50:58 ============================================================================ +04:50:58 FNo. Len. Field Value +04:50:58 ============================================================================ +04:50:58 [ 1] [ 4] [0810] +04:50:58 [ 7] [ 10] [0319095004] +04:50:58 [ 11] [ 6] [154432] +04:50:58 [ 39] [ 2] [00] +04:50:58 [ 70] [ 3] [301] +04:50:58 ============================================================================ +04:50:58 Calculate Source COMM Id = 2 +04:50:58 ============================================================================ +04:50:58 + + +waiting on router queue for slot.... +04:51:08 ============================================================================ +04:51:08 Slot Id : <408> +04:51:08 Transaction Type : REQUEST +04:51:08 Received From : +04:51:08 ============================================================================ +04:51:08 FNo. Len. Field Value +04:51:08 ============================================================================ +04:51:08 [ 1] [ 4] [0800] +04:51:08 [ 7] [ 10] [0319095015] +04:51:08 [ 11] [ 6] [154433] +04:51:08 [ 70] [ 3] [301] +04:51:08 ============================================================================ +04:51:08 + + +waiting on router queue for slot.... +04:51:08 Sending to : +04:51:08 ============================================================================ +04:51:08 ============================================================================ +04:51:08 Slot Id : <408> +04:51:08 Transaction Type : RESPONSE +04:51:08 Received From : +04:51:08 ============================================================================ +04:51:08 FNo. Len. Field Value +04:51:08 ============================================================================ +04:51:08 [ 1] [ 4] [0810] +04:51:08 [ 7] [ 10] [0319095015] +04:51:08 [ 11] [ 6] [154433] +04:51:08 [ 39] [ 2] [00] +04:51:08 [ 70] [ 3] [301] +04:51:08 ============================================================================ +04:51:08 Calculate Source COMM Id = 2 +04:51:08 ============================================================================ +04:51:08 + + +waiting on router queue for slot.... +04:51:19 ============================================================================ +04:51:19 Slot Id : <437> +04:51:19 Transaction Type : REQUEST +04:51:19 Received From : +04:51:19 ============================================================================ +04:51:19 FNo. Len. Field Value +04:51:19 ============================================================================ +04:51:19 [ 1] [ 4] [0800] +04:51:19 [ 7] [ 10] [0319095025] +04:51:19 [ 11] [ 6] [154434] +04:51:19 [ 70] [ 3] [301] +04:51:19 ============================================================================ +04:51:19 + + +waiting on router queue for slot.... +04:51:19 Sending to : +04:51:19 ============================================================================ +04:51:19 ============================================================================ +04:51:19 Slot Id : <437> +04:51:19 Transaction Type : RESPONSE +04:51:19 Received From : +04:51:19 ============================================================================ +04:51:19 FNo. Len. Field Value +04:51:19 ============================================================================ +04:51:19 [ 1] [ 4] [0810] +04:51:19 [ 7] [ 10] [0319095025] +04:51:19 [ 11] [ 6] [154434] +04:51:19 [ 39] [ 2] [00] +04:51:19 [ 70] [ 3] [301] +04:51:19 ============================================================================ +04:51:19 Calculate Source COMM Id = 2 +04:51:19 ============================================================================ +04:51:19 + + +waiting on router queue for slot.... +04:51:21 ============================================================================ +04:51:21 Slot Id : <409> +04:51:21 Transaction Type : REQUEST +04:51:21 Received From : +04:51:21 ============================================================================ +04:51:21 FNo. Len. Field Value +04:51:21 ============================================================================ +04:51:21 [ 1] [ 4] [0800] +04:51:21 [ 7] [ 10] [0319214912] +04:51:21 [ 11] [ 6] [070129] +04:51:21 [ 37] [ 12] [57904070129] +04:51:21 [ 70] [ 3] [301] +04:51:21 ============================================================================ +04:51:21 + + +waiting on router queue for slot.... +04:51:21 Sending to : +04:51:21 ============================================================================ +04:51:21 ============================================================================ +04:51:21 Slot Id : <409> +04:51:21 Transaction Type : RESPONSE +04:51:21 Received From : +04:51:21 ============================================================================ +04:51:21 FNo. Len. Field Value +04:51:21 ============================================================================ +04:51:21 [ 1] [ 4] [0810] +04:51:21 [ 7] [ 10] [0319214912] +04:51:21 [ 11] [ 6] [070129] +04:51:21 [ 37] [ 12] [579040701290] +04:51:21 [ 39] [ 2] [00] +04:51:21 [ 70] [ 3] [810] +04:51:21 ============================================================================ +04:51:21 Calculate Source COMM Id = 4 +04:51:21 ============================================================================ +04:51:21 + + +waiting on router queue for slot.... +04:51:24 ============================================================================ +04:51:24 Slot Id : <385> +04:51:24 Transaction Type : REQUEST +04:51:24 Received From : +04:51:24 ============================================================================ +04:51:24 FNo. Len. Field Value +04:51:24 ============================================================================ +04:51:24 [ 1] [ 4] [0800] +04:51:24 [ 7] [ 10] [0320120311] +04:51:24 [ 11] [ 6] [050311] +04:51:24 [ 37] [ 12] [57905050311] +04:51:24 [ 70] [ 3] [301] +04:51:24 ============================================================================ +04:51:24 + + +waiting on router queue for slot.... +04:51:24 Sending to : +04:51:24 ============================================================================ +04:51:24 ============================================================================ +04:51:24 Slot Id : <385> +04:51:24 Transaction Type : RESPONSE +04:51:24 Received From : +04:51:24 ============================================================================ +04:51:24 FNo. Len. Field Value +04:51:24 ============================================================================ +04:51:24 [ 1] [ 4] [0810] +04:51:24 [ 7] [ 10] [0320120311] +04:51:24 [ 11] [ 6] [050311] +04:51:24 [ 37] [ 12] [579050503110] +04:51:24 [ 39] [ 2] [00] +04:51:24 [ 70] [ 3] [810] +04:51:24 ============================================================================ +04:51:24 Calculate Source COMM Id = 6 +04:51:24 ============================================================================ +04:51:24 + + +waiting on router queue for slot.... +04:51:30 ============================================================================ +04:51:30 Slot Id : <362> +04:51:30 Transaction Type : REQUEST +04:51:30 Received From : +04:51:30 ============================================================================ +04:51:30 FNo. Len. Field Value +04:51:30 ============================================================================ +04:51:30 [ 1] [ 4] [0800] +04:51:30 [ 7] [ 10] [0319095036] +04:51:30 [ 11] [ 6] [154435] +04:51:30 [ 70] [ 3] [301] +04:51:30 ============================================================================ +04:51:30 + + +waiting on router queue for slot.... +04:51:30 Sending to : +04:51:30 ============================================================================ +04:51:30 ============================================================================ +04:51:30 Slot Id : <362> +04:51:30 Transaction Type : RESPONSE +04:51:30 Received From : +04:51:30 ============================================================================ +04:51:30 FNo. Len. Field Value +04:51:30 ============================================================================ +04:51:30 [ 1] [ 4] [0810] +04:51:30 [ 7] [ 10] [0319095036] +04:51:30 [ 11] [ 6] [154435] +04:51:30 [ 39] [ 2] [00] +04:51:30 [ 70] [ 3] [301] +04:51:30 ============================================================================ +04:51:30 Calculate Source COMM Id = 2 +04:51:30 ============================================================================ +04:51:30 + + +waiting on router queue for slot.... +04:51:40 ============================================================================ +04:51:40 Slot Id : <403> +04:51:40 Transaction Type : REQUEST +04:51:40 Received From : +04:51:40 ============================================================================ +04:51:40 FNo. Len. Field Value +04:51:40 ============================================================================ +04:51:40 [ 1] [ 4] [0800] +04:51:40 [ 7] [ 10] [0319095047] +04:51:40 [ 11] [ 6] [154436] +04:51:40 [ 70] [ 3] [301] +04:51:40 ============================================================================ +04:51:40 + + +waiting on router queue for slot.... +04:51:40 Sending to : +04:51:40 ============================================================================ +04:51:40 ============================================================================ +04:51:40 Slot Id : <403> +04:51:40 Transaction Type : RESPONSE +04:51:40 Received From : +04:51:40 ============================================================================ +04:51:40 FNo. Len. Field Value +04:51:40 ============================================================================ +04:51:40 [ 1] [ 4] [0810] +04:51:40 [ 7] [ 10] [0319095047] +04:51:40 [ 11] [ 6] [154436] +04:51:40 [ 39] [ 2] [00] +04:51:40 [ 70] [ 3] [301] +04:51:40 ============================================================================ +04:51:40 Calculate Source COMM Id = 2 +04:51:40 ============================================================================ +04:51:40 + + +waiting on router queue for slot.... +04:51:51 ============================================================================ +04:51:51 Slot Id : <392> +04:51:51 Transaction Type : REQUEST +04:51:51 Received From : +04:51:51 ============================================================================ +04:51:51 FNo. Len. Field Value +04:51:51 ============================================================================ +04:51:51 [ 1] [ 4] [0800] +04:51:51 [ 7] [ 10] [0319095058] +04:51:51 [ 11] [ 6] [154437] +04:51:51 [ 70] [ 3] [301] +04:51:51 ============================================================================ +04:51:51 + + +waiting on router queue for slot.... +04:51:51 Sending to : +04:51:51 ============================================================================ +04:51:51 ============================================================================ +04:51:51 Slot Id : <392> +04:51:51 Transaction Type : RESPONSE +04:51:51 Received From : +04:51:51 ============================================================================ +04:51:51 FNo. Len. Field Value +04:51:51 ============================================================================ +04:51:51 [ 1] [ 4] [0810] +04:51:51 [ 7] [ 10] [0319095058] +04:51:51 [ 11] [ 6] [154437] +04:51:51 [ 39] [ 2] [00] +04:51:51 [ 70] [ 3] [301] +04:51:51 ============================================================================ +04:51:51 Calculate Source COMM Id = 2 +04:51:51 ============================================================================ +04:51:51 + + +waiting on router queue for slot.... +04:52:00 ============================================================================ +04:52:00 Slot Id : <412> +04:52:00 Transaction Type : REQUEST +04:52:00 Received From : +04:52:00 ============================================================================ +04:52:00 FNo. Len. Field Value +04:52:00 ============================================================================ +04:52:00 [ 1] [ 4] [0800] +04:52:00 [ 2] [ 5] [02531] +04:52:00 [ 3] [ 6] [579048] +04:52:00 [ 7] [ 10] [0319215200] +04:52:00 [ 11] [ 6] [806694] +04:52:00 [ 15] [ 10] [0319215200] +04:52:00 [ 37] [ 11] [57904806694] +04:52:00 [ 70] [ 3] [001] +04:52:00 ============================================================================ +04:52:00 + + +waiting on router queue for slot.... +04:52:00 ============================================================================ +04:52:00 Slot Id : <412> +04:52:00 Transaction Type : RESPONSE +04:52:00 Received From : +04:52:00 ============================================================================ +04:52:00 FNo. Len. Field Value +04:52:00 ============================================================================ +04:52:00 [ 1] [ 4] [0810] +04:52:00 [ 7] [ 10] [0319215200] +04:52:00 [ 11] [ 6] [806694] +04:52:00 [ 15] [ 4] [0319] +04:52:00 [ 37] [ 12] [57904806694] +04:52:00 [ 39] [ 2] [00] +04:52:00 [ 70] [ 3] [001] +04:52:00 ============================================================================ +04:52:00 Sending to : +04:52:00 ============================================================================ +04:52:00 + + +waiting on router queue for slot.... +04:52:02 ============================================================================ +04:52:02 Slot Id : <447> +04:52:02 Transaction Type : REQUEST +04:52:02 Received From : +04:52:02 ============================================================================ +04:52:02 FNo. Len. Field Value +04:52:02 ============================================================================ +04:52:02 [ 1] [ 4] [0800] +04:52:02 [ 7] [ 10] [0319095109] +04:52:02 [ 11] [ 6] [154438] +04:52:02 [ 70] [ 3] [301] +04:52:02 ============================================================================ +04:52:02 + + +waiting on router queue for slot.... +04:52:02 Sending to : +04:52:02 ============================================================================ +04:52:02 ============================================================================ +04:52:02 Slot Id : <447> +04:52:02 Transaction Type : RESPONSE +04:52:02 Received From : +04:52:02 ============================================================================ +04:52:02 FNo. Len. Field Value +04:52:02 ============================================================================ +04:52:02 [ 1] [ 4] [0810] +04:52:02 [ 7] [ 10] [0319095109] +04:52:02 [ 11] [ 6] [154438] +04:52:02 [ 39] [ 2] [00] +04:52:02 [ 70] [ 3] [301] +04:52:02 ============================================================================ +04:52:02 Calculate Source COMM Id = 2 +04:52:02 ============================================================================ +04:52:02 + + +waiting on router queue for slot.... +04:52:13 ============================================================================ +04:52:13 Slot Id : <450> +04:52:13 Transaction Type : REQUEST +04:52:13 Received From : +04:52:13 ============================================================================ +04:52:13 FNo. Len. Field Value +04:52:13 ============================================================================ +04:52:13 [ 1] [ 4] [0800] +04:52:13 [ 7] [ 10] [0319095119] +04:52:13 [ 11] [ 6] [154439] +04:52:13 [ 70] [ 3] [301] +04:52:13 ============================================================================ +04:52:13 + + +waiting on router queue for slot.... +04:52:13 Sending to : +04:52:13 ============================================================================ +04:52:13 ============================================================================ +04:52:13 Slot Id : <450> +04:52:13 Transaction Type : RESPONSE +04:52:13 Received From : +04:52:13 ============================================================================ +04:52:13 FNo. Len. Field Value +04:52:13 ============================================================================ +04:52:13 [ 1] [ 4] [0810] +04:52:13 [ 7] [ 10] [0319095119] +04:52:13 [ 11] [ 6] [154439] +04:52:13 [ 39] [ 2] [00] +04:52:13 [ 70] [ 3] [301] +04:52:13 ============================================================================ +04:52:13 Calculate Source COMM Id = 2 +04:52:13 ============================================================================ +04:52:13 + + +waiting on router queue for slot.... +04:52:28 ============================================================================ +04:52:28 Slot Id : <386> +04:52:28 Transaction Type : REQUEST +04:52:28 Received From : +04:52:28 ============================================================================ +04:52:28 FNo. Len. Field Value +04:52:28 ============================================================================ +04:52:28 [ 1] [ 4] [0800] +04:52:28 [ 7] [ 10] [0319095134] +04:52:28 [ 11] [ 6] [154440] +04:52:28 [ 70] [ 3] [301] +04:52:28 ============================================================================ +04:52:28 + + +waiting on router queue for slot.... +04:52:28 Sending to : +04:52:28 ============================================================================ +04:52:28 ============================================================================ +04:52:28 Slot Id : <386> +04:52:28 Transaction Type : RESPONSE +04:52:28 Received From : +04:52:28 ============================================================================ +04:52:28 FNo. Len. Field Value +04:52:28 ============================================================================ +04:52:28 [ 1] [ 4] [0810] +04:52:28 [ 7] [ 10] [0319095134] +04:52:28 [ 11] [ 6] [154440] +04:52:28 [ 39] [ 2] [00] +04:52:28 [ 70] [ 3] [301] +04:52:28 ============================================================================ +04:52:28 Calculate Source COMM Id = 2 +04:52:28 ============================================================================ +04:52:28 + + +waiting on router queue for slot.... +04:52:29 ============================================================================ +04:52:29 Slot Id : <417> +04:52:29 Transaction Type : REQUEST +04:52:29 Received From : +04:52:29 ============================================================================ +04:52:29 FNo. Len. Field Value +04:52:29 ============================================================================ +04:52:29 [ 1] [ 4] [0800] +04:52:29 [ 7] [ 10] [0320120416] +04:52:29 [ 11] [ 6] [050416] +04:52:29 [ 37] [ 12] [57905050416] +04:52:29 [ 70] [ 3] [301] +04:52:29 ============================================================================ +04:52:29 + + +waiting on router queue for slot.... +04:52:29 Sending to : +04:52:29 ============================================================================ +04:52:29 ============================================================================ +04:52:29 Slot Id : <417> +04:52:29 Transaction Type : RESPONSE +04:52:29 Received From : +04:52:29 ============================================================================ +04:52:29 FNo. Len. Field Value +04:52:29 ============================================================================ +04:52:29 [ 1] [ 4] [0810] +04:52:29 [ 7] [ 10] [0320120416] +04:52:29 [ 11] [ 6] [050416] +04:52:29 [ 37] [ 12] [579050504160] +04:52:29 [ 39] [ 2] [00] +04:52:29 [ 70] [ 3] [810] +04:52:29 ============================================================================ +04:52:29 Calculate Source COMM Id = 6 +04:52:29 ============================================================================ +04:52:29 + + +waiting on router queue for slot.... +04:52:38 ============================================================================ +04:52:38 Slot Id : <391> +04:52:38 Transaction Type : REQUEST +04:52:38 Received From : +04:52:38 ============================================================================ +04:52:38 FNo. Len. Field Value +04:52:38 ============================================================================ +04:52:38 [ 1] [ 4] [0800] +04:52:38 [ 7] [ 10] [0319095144] +04:52:38 [ 11] [ 6] [154441] +04:52:38 [ 70] [ 3] [301] +04:52:38 ============================================================================ +04:52:38 + + +waiting on router queue for slot.... +04:52:38 Sending to : +04:52:38 ============================================================================ +04:52:38 ============================================================================ +04:52:38 Slot Id : <391> +04:52:38 Transaction Type : RESPONSE +04:52:38 Received From : +04:52:38 ============================================================================ +04:52:38 FNo. Len. Field Value +04:52:38 ============================================================================ +04:52:38 [ 1] [ 4] [0810] +04:52:38 [ 7] [ 10] [0319095144] +04:52:38 [ 11] [ 6] [154441] +04:52:38 [ 39] [ 2] [00] +04:52:38 [ 70] [ 3] [301] +04:52:38 ============================================================================ +04:52:38 Calculate Source COMM Id = 2 +04:52:38 ============================================================================ +04:52:38 + + +waiting on router queue for slot.... +04:52:53 ============================================================================ +04:52:53 Slot Id : <377> +04:52:53 Transaction Type : REQUEST +04:52:53 Received From : +04:52:53 ============================================================================ +04:52:53 FNo. Len. Field Value +04:52:53 ============================================================================ +04:52:53 [ 1] [ 4] [0800] +04:52:53 [ 7] [ 10] [0319095200] +04:52:53 [ 11] [ 6] [154442] +04:52:53 [ 70] [ 3] [301] +04:52:53 ============================================================================ +04:52:53 + + +waiting on router queue for slot.... +04:52:53 Sending to : +04:52:53 ============================================================================ +04:52:53 ============================================================================ +04:52:53 Slot Id : <377> +04:52:53 Transaction Type : RESPONSE +04:52:53 Received From : +04:52:53 ============================================================================ +04:52:53 FNo. Len. Field Value +04:52:53 ============================================================================ +04:52:53 [ 1] [ 4] [0810] +04:52:53 [ 7] [ 10] [0319095200] +04:52:53 [ 11] [ 6] [154442] +04:52:53 [ 39] [ 2] [00] +04:52:53 [ 70] [ 3] [301] +04:52:53 ============================================================================ +04:52:53 Calculate Source COMM Id = 2 +04:52:53 ============================================================================ +04:52:53 + + +waiting on router queue for slot.... +04:53:02 ============================================================================ +04:53:02 Slot Id : <405> +04:53:02 Transaction Type : REQUEST +04:53:02 Received From : +04:53:02 ============================================================================ +04:53:02 FNo. Len. Field Value +04:53:02 ============================================================================ +04:53:02 [ 1] [ 4] [0800] +04:53:02 [ 2] [ 5] [02531] +04:53:02 [ 3] [ 6] [579048] +04:53:02 [ 7] [ 10] [0319215302] +04:53:02 [ 11] [ 6] [806695] +04:53:02 [ 15] [ 10] [0319215302] +04:53:02 [ 37] [ 11] [57904806695] +04:53:02 [ 70] [ 3] [001] +04:53:02 ============================================================================ +04:53:02 + + +waiting on router queue for slot.... +04:53:02 ============================================================================ +04:53:02 Slot Id : <405> +04:53:02 Transaction Type : RESPONSE +04:53:02 Received From : +04:53:02 ============================================================================ +04:53:02 FNo. Len. Field Value +04:53:02 ============================================================================ +04:53:02 [ 1] [ 4] [0810] +04:53:02 [ 7] [ 10] [0319215302] +04:53:02 [ 11] [ 6] [806695] +04:53:02 [ 15] [ 4] [0319] +04:53:02 [ 37] [ 12] [57904806695] +04:53:02 [ 39] [ 2] [00] +04:53:02 [ 70] [ 3] [001] +04:53:02 ============================================================================ +04:53:02 Sending to : +04:53:02 ============================================================================ +04:53:02 + + +waiting on router queue for slot.... +04:53:04 ============================================================================ +04:53:04 Slot Id : <443> +04:53:04 Transaction Type : REQUEST +04:53:04 Received From : +04:53:04 ============================================================================ +04:53:04 FNo. Len. Field Value +04:53:04 ============================================================================ +04:53:04 [ 1] [ 4] [0800] +04:53:04 [ 7] [ 10] [0319095211] +04:53:04 [ 11] [ 6] [154443] +04:53:04 [ 70] [ 3] [301] +04:53:04 ============================================================================ +04:53:04 + + +waiting on router queue for slot.... +04:53:04 Sending to : +04:53:04 ============================================================================ +04:53:04 ============================================================================ +04:53:04 Slot Id : <443> +04:53:04 Transaction Type : RESPONSE +04:53:04 Received From : +04:53:04 ============================================================================ +04:53:04 FNo. Len. Field Value +04:53:04 ============================================================================ +04:53:04 [ 1] [ 4] [0810] +04:53:04 [ 7] [ 10] [0319095211] +04:53:04 [ 11] [ 6] [154443] +04:53:04 [ 39] [ 2] [00] +04:53:04 [ 70] [ 3] [301] +04:53:04 ============================================================================ +04:53:04 Calculate Source COMM Id = 2 +04:53:04 ============================================================================ +04:53:04 + + +waiting on router queue for slot.... +04:53:19 ============================================================================ +04:53:19 Slot Id : <456> +04:53:19 Transaction Type : REQUEST +04:53:19 Received From : +04:53:19 ============================================================================ +04:53:19 FNo. Len. Field Value +04:53:19 ============================================================================ +04:53:19 [ 1] [ 4] [0800] +04:53:19 [ 7] [ 10] [0319095226] +04:53:19 [ 11] [ 6] [154444] +04:53:19 [ 70] [ 3] [301] +04:53:19 ============================================================================ +04:53:19 + + +waiting on router queue for slot.... +04:53:19 Sending to : +04:53:19 ============================================================================ +04:53:19 ============================================================================ +04:53:19 Slot Id : <456> +04:53:19 Transaction Type : RESPONSE +04:53:19 Received From : +04:53:19 ============================================================================ +04:53:19 FNo. Len. Field Value +04:53:19 ============================================================================ +04:53:19 [ 1] [ 4] [0810] +04:53:19 [ 7] [ 10] [0319095226] +04:53:19 [ 11] [ 6] [154444] +04:53:19 [ 39] [ 2] [00] +04:53:19 [ 70] [ 3] [301] +04:53:19 ============================================================================ +04:53:19 Calculate Source COMM Id = 2 +04:53:19 ============================================================================ +04:53:19 + + +waiting on router queue for slot.... +04:53:30 ============================================================================ +04:53:30 Slot Id : <446> +04:53:30 Transaction Type : REQUEST +04:53:30 Received From : +04:53:30 ============================================================================ +04:53:30 FNo. Len. Field Value +04:53:30 ============================================================================ +04:53:30 [ 1] [ 4] [0800] +04:53:30 [ 7] [ 10] [0319095236] +04:53:30 [ 11] [ 6] [154445] +04:53:30 [ 70] [ 3] [301] +04:53:30 ============================================================================ +04:53:30 + + +waiting on router queue for slot.... +04:53:30 Sending to : +04:53:30 ============================================================================ +04:53:30 ============================================================================ +04:53:30 Slot Id : <446> +04:53:30 Transaction Type : RESPONSE +04:53:30 Received From : +04:53:30 ============================================================================ +04:53:30 FNo. Len. Field Value +04:53:30 ============================================================================ +04:53:30 [ 1] [ 4] [0810] +04:53:30 [ 7] [ 10] [0319095236] +04:53:30 [ 11] [ 6] [154445] +04:53:30 [ 39] [ 2] [00] +04:53:30 [ 70] [ 3] [301] +04:53:30 ============================================================================ +04:53:30 Calculate Source COMM Id = 2 +04:53:30 ============================================================================ +04:53:30 + + +waiting on router queue for slot.... +04:53:34 ============================================================================ +04:53:34 Slot Id : <435> +04:53:34 Transaction Type : REQUEST +04:53:34 Received From : +04:53:34 ============================================================================ +04:53:34 FNo. Len. Field Value +04:53:34 ============================================================================ +04:53:34 [ 1] [ 4] [0800] +04:53:34 [ 7] [ 10] [0320120521] +04:53:34 [ 11] [ 6] [050521] +04:53:34 [ 37] [ 12] [57905050521] +04:53:34 [ 70] [ 3] [301] +04:53:34 ============================================================================ +04:53:34 + + +waiting on router queue for slot.... +04:53:34 Sending to : +04:53:34 ============================================================================ +04:53:34 ============================================================================ +04:53:34 Slot Id : <435> +04:53:34 Transaction Type : RESPONSE +04:53:34 Received From : +04:53:34 ============================================================================ +04:53:34 FNo. Len. Field Value +04:53:34 ============================================================================ +04:53:34 [ 1] [ 4] [0810] +04:53:34 [ 7] [ 10] [0320120521] +04:53:34 [ 11] [ 6] [050521] +04:53:34 [ 37] [ 12] [579050505210] +04:53:34 [ 39] [ 2] [00] +04:53:34 [ 70] [ 3] [810] +04:53:34 ============================================================================ +04:53:34 Calculate Source COMM Id = 6 +04:53:34 ============================================================================ +04:53:34 + + +waiting on router queue for slot.... +04:53:40 ============================================================================ +04:53:40 Slot Id : <404> +04:53:40 Transaction Type : REQUEST +04:53:40 Received From : +04:53:40 ============================================================================ +04:53:40 FNo. Len. Field Value +04:53:40 ============================================================================ +04:53:40 [ 1] [ 4] [0800] +04:53:40 [ 7] [ 10] [0319095247] +04:53:40 [ 11] [ 6] [154446] +04:53:40 [ 70] [ 3] [301] +04:53:40 ============================================================================ +04:53:40 + + +waiting on router queue for slot.... +04:53:40 Sending to : +04:53:40 ============================================================================ +04:53:40 ============================================================================ +04:53:40 Slot Id : <404> +04:53:40 Transaction Type : RESPONSE +04:53:40 Received From : +04:53:40 ============================================================================ +04:53:40 FNo. Len. Field Value +04:53:40 ============================================================================ +04:53:40 [ 1] [ 4] [0810] +04:53:40 [ 7] [ 10] [0319095247] +04:53:40 [ 11] [ 6] [154446] +04:53:40 [ 39] [ 2] [00] +04:53:40 [ 70] [ 3] [301] +04:53:40 ============================================================================ +04:53:40 Calculate Source COMM Id = 2 +04:53:40 ============================================================================ +04:53:40 + + +waiting on router queue for slot.... +04:53:56 ============================================================================ +04:53:56 Slot Id : <424> +04:53:56 Transaction Type : REQUEST +04:53:56 Received From : +04:53:56 ============================================================================ +04:53:56 FNo. Len. Field Value +04:53:56 ============================================================================ +04:53:56 [ 1] [ 4] [0800] +04:53:56 [ 7] [ 10] [0319095302] +04:53:56 [ 11] [ 6] [154447] +04:53:56 [ 70] [ 3] [301] +04:53:56 ============================================================================ +04:53:56 + + +waiting on router queue for slot.... +04:53:56 Sending to : +04:53:56 ============================================================================ +04:53:56 ============================================================================ +04:53:56 Slot Id : <424> +04:53:56 Transaction Type : RESPONSE +04:53:56 Received From : +04:53:56 ============================================================================ +04:53:56 FNo. Len. Field Value +04:53:56 ============================================================================ +04:53:56 [ 1] [ 4] [0810] +04:53:56 [ 7] [ 10] [0319095302] +04:53:56 [ 11] [ 6] [154447] +04:53:56 [ 39] [ 2] [00] +04:53:56 [ 70] [ 3] [301] +04:53:56 ============================================================================ +04:53:56 Calculate Source COMM Id = 2 +04:53:56 ============================================================================ +04:53:56 + + +waiting on router queue for slot.... +04:54:04 ============================================================================ +04:54:04 Slot Id : <442> +04:54:04 Transaction Type : REQUEST +04:54:04 Received From : +04:54:04 ============================================================================ +04:54:04 FNo. Len. Field Value +04:54:04 ============================================================================ +04:54:04 [ 1] [ 4] [0800] +04:54:04 [ 2] [ 5] [02531] +04:54:04 [ 3] [ 6] [579048] +04:54:04 [ 7] [ 10] [0319215404] +04:54:04 [ 11] [ 6] [806696] +04:54:04 [ 15] [ 10] [0319215404] +04:54:04 [ 37] [ 11] [57904806696] +04:54:04 [ 70] [ 3] [001] +04:54:04 ============================================================================ +04:54:04 + + +waiting on router queue for slot.... +04:54:04 ============================================================================ +04:54:04 Slot Id : <442> +04:54:04 Transaction Type : RESPONSE +04:54:04 Received From : +04:54:04 ============================================================================ +04:54:04 FNo. Len. Field Value +04:54:04 ============================================================================ +04:54:04 [ 1] [ 4] [0810] +04:54:04 [ 7] [ 10] [0319215404] +04:54:04 [ 11] [ 6] [806696] +04:54:04 [ 15] [ 4] [0319] +04:54:04 [ 37] [ 12] [57904806696] +04:54:04 [ 39] [ 2] [00] +04:54:04 [ 70] [ 3] [001] +04:54:04 ============================================================================ +04:54:04 Sending to : +04:54:04 ============================================================================ +04:54:04 + + +waiting on router queue for slot.... +04:54:06 ============================================================================ +04:54:06 Slot Id : <429> +04:54:06 Transaction Type : REQUEST +04:54:06 Received From : +04:54:06 ============================================================================ +04:54:06 FNo. Len. Field Value +04:54:06 ============================================================================ +04:54:06 [ 1] [ 4] [0800] +04:54:06 [ 7] [ 10] [0319095312] +04:54:06 [ 11] [ 6] [154448] +04:54:06 [ 70] [ 3] [301] +04:54:06 ============================================================================ +04:54:06 + + +waiting on router queue for slot.... +04:54:06 Sending to : +04:54:06 ============================================================================ +04:54:06 ============================================================================ +04:54:06 Slot Id : <429> +04:54:06 Transaction Type : RESPONSE +04:54:06 Received From : +04:54:06 ============================================================================ +04:54:06 FNo. Len. Field Value +04:54:06 ============================================================================ +04:54:06 [ 1] [ 4] [0810] +04:54:06 [ 7] [ 10] [0319095312] +04:54:06 [ 11] [ 6] [154448] +04:54:06 [ 39] [ 2] [00] +04:54:06 [ 70] [ 3] [301] +04:54:06 ============================================================================ +04:54:06 Calculate Source COMM Id = 2 +04:54:06 ============================================================================ +04:54:06 + + +waiting on router queue for slot.... +04:54:16 ============================================================================ +04:54:16 Slot Id : <445> +04:54:16 Transaction Type : REQUEST +04:54:16 Received From : +04:54:16 ============================================================================ +04:54:16 FNo. Len. Field Value +04:54:16 ============================================================================ +04:54:16 [ 1] [ 4] [0800] +04:54:16 [ 7] [ 10] [0319095322] +04:54:16 [ 11] [ 6] [154449] +04:54:16 [ 70] [ 3] [301] +04:54:16 ============================================================================ +04:54:16 + + +waiting on router queue for slot.... +04:54:16 Sending to : +04:54:16 ============================================================================ +04:54:16 ============================================================================ +04:54:16 Slot Id : <445> +04:54:16 Transaction Type : RESPONSE +04:54:16 Received From : +04:54:16 ============================================================================ +04:54:16 FNo. Len. Field Value +04:54:16 ============================================================================ +04:54:16 [ 1] [ 4] [0810] +04:54:16 [ 7] [ 10] [0319095322] +04:54:16 [ 11] [ 6] [154449] +04:54:16 [ 39] [ 2] [00] +04:54:16 [ 70] [ 3] [301] +04:54:16 ============================================================================ +04:54:16 Calculate Source COMM Id = 2 +04:54:16 ============================================================================ +04:54:16 + + +waiting on router queue for slot.... +04:54:31 ============================================================================ +04:54:31 Slot Id : <438> +04:54:31 Transaction Type : REQUEST +04:54:31 Received From : +04:54:31 ============================================================================ +04:54:31 FNo. Len. Field Value +04:54:31 ============================================================================ +04:54:31 [ 1] [ 4] [0800] +04:54:31 [ 7] [ 10] [0319095337] +04:54:31 [ 11] [ 6] [154450] +04:54:31 [ 70] [ 3] [301] +04:54:31 ============================================================================ +04:54:31 + + +waiting on router queue for slot.... +04:54:31 Sending to : +04:54:31 ============================================================================ +04:54:31 ============================================================================ +04:54:31 Slot Id : <438> +04:54:31 Transaction Type : RESPONSE +04:54:31 Received From : +04:54:31 ============================================================================ +04:54:31 FNo. Len. Field Value +04:54:31 ============================================================================ +04:54:31 [ 1] [ 4] [0810] +04:54:31 [ 7] [ 10] [0319095337] +04:54:31 [ 11] [ 6] [154450] +04:54:31 [ 39] [ 2] [00] +04:54:31 [ 70] [ 3] [301] +04:54:31 ============================================================================ +04:54:31 Calculate Source COMM Id = 2 +04:54:31 ============================================================================ +04:54:31 + + +waiting on router queue for slot.... +04:54:39 ============================================================================ +04:54:39 Slot Id : <434> +04:54:39 Transaction Type : REQUEST +04:54:39 Received From : +04:54:39 ============================================================================ +04:54:39 FNo. Len. Field Value +04:54:39 ============================================================================ +04:54:39 [ 1] [ 4] [0800] +04:54:39 [ 7] [ 10] [0320120626] +04:54:39 [ 11] [ 6] [050626] +04:54:39 [ 37] [ 12] [57905050626] +04:54:39 [ 70] [ 3] [301] +04:54:39 ============================================================================ +04:54:39 + + +waiting on router queue for slot.... +04:54:39 Sending to : +04:54:39 ============================================================================ +04:54:39 ============================================================================ +04:54:39 Slot Id : <434> +04:54:39 Transaction Type : RESPONSE +04:54:39 Received From : +04:54:39 ============================================================================ +04:54:39 FNo. Len. Field Value +04:54:39 ============================================================================ +04:54:39 [ 1] [ 4] [0810] +04:54:39 [ 7] [ 10] [0320120626] +04:54:39 [ 11] [ 6] [050626] +04:54:39 [ 37] [ 12] [579050506260] +04:54:39 [ 39] [ 2] [00] +04:54:39 [ 70] [ 3] [810] +04:54:39 ============================================================================ +04:54:39 Calculate Source COMM Id = 6 +04:54:39 ============================================================================ +04:54:39 + + +waiting on router queue for slot.... +04:54:41 ============================================================================ +04:54:41 Slot Id : <428> +04:54:41 Transaction Type : REQUEST +04:54:41 Received From : +04:54:41 ============================================================================ +04:54:41 FNo. Len. Field Value +04:54:41 ============================================================================ +04:54:41 [ 1] [ 4] [0800] +04:54:41 [ 7] [ 10] [0319095348] +04:54:41 [ 11] [ 6] [154451] +04:54:41 [ 70] [ 3] [301] +04:54:41 ============================================================================ +04:54:41 + + +waiting on router queue for slot.... +04:54:41 Sending to : +04:54:41 ============================================================================ +04:54:42 ============================================================================ +04:54:42 Slot Id : <428> +04:54:42 Transaction Type : RESPONSE +04:54:42 Received From : +04:54:42 ============================================================================ +04:54:42 FNo. Len. Field Value +04:54:42 ============================================================================ +04:54:42 [ 1] [ 4] [0810] +04:54:42 [ 7] [ 10] [0319095348] +04:54:42 [ 11] [ 6] [154451] +04:54:42 [ 39] [ 2] [00] +04:54:42 [ 70] [ 3] [301] +04:54:42 ============================================================================ +04:54:42 Calculate Source COMM Id = 2 +04:54:42 ============================================================================ +04:54:42 + + +waiting on router queue for slot.... +04:54:53 ============================================================================ +04:54:53 Slot Id : <427> +04:54:53 Transaction Type : REQUEST +04:54:53 Received From : +04:54:53 ============================================================================ +04:54:53 FNo. Len. Field Value +04:54:53 ============================================================================ +04:54:53 [ 1] [ 4] [0800] +04:54:53 [ 7] [ 10] [0319095359] +04:54:53 [ 11] [ 6] [154452] +04:54:53 [ 70] [ 3] [301] +04:54:53 ============================================================================ +04:54:53 + + +waiting on router queue for slot.... +04:54:53 Sending to : +04:54:53 ============================================================================ +04:54:53 ============================================================================ +04:54:53 Slot Id : <427> +04:54:53 Transaction Type : RESPONSE +04:54:53 Received From : +04:54:53 ============================================================================ +04:54:53 FNo. Len. Field Value +04:54:53 ============================================================================ +04:54:53 [ 1] [ 4] [0810] +04:54:53 [ 7] [ 10] [0319095359] +04:54:53 [ 11] [ 6] [154452] +04:54:53 [ 39] [ 2] [00] +04:54:53 [ 70] [ 3] [301] +04:54:53 ============================================================================ +04:54:53 Calculate Source COMM Id = 2 +04:54:53 ============================================================================ +04:54:53 + + +waiting on router queue for slot.... +04:54:56 ============================================================================ +04:54:56 Slot Id : <426> +04:54:56 Transaction Type : REQUEST +04:54:56 Received From : +04:54:56 ============================================================================ +04:54:56 FNo. Len. Field Value +04:54:56 ============================================================================ +04:54:56 [ 1] [ 4] [0800] +04:54:56 [ 7] [ 10] [0319220242] +04:54:56 [ 11] [ 6] [027044] +04:54:56 [ 37] [ 12] [57905027044] +04:54:56 [ 70] [ 3] [301] +04:54:56 ============================================================================ +04:54:56 + + +waiting on router queue for slot.... +04:54:56 Sending to : +04:54:56 ============================================================================ +04:54:56 ============================================================================ +04:54:56 Slot Id : <426> +04:54:56 Transaction Type : RESPONSE +04:54:56 Received From : +04:54:56 ============================================================================ +04:54:56 FNo. Len. Field Value +04:54:56 ============================================================================ +04:54:56 [ 1] [ 4] [0810] +04:54:56 [ 7] [ 10] [0319220242] +04:54:56 [ 11] [ 6] [027044] +04:54:56 [ 37] [ 12] [579050270440] +04:54:56 [ 39] [ 2] [00] +04:54:56 [ 70] [ 3] [810] +04:54:56 ============================================================================ +04:54:56 Calculate Source COMM Id = 1 +04:54:56 ============================================================================ +04:54:56 + + +waiting on router queue for slot.... +04:55:03 ============================================================================ +04:55:03 Slot Id : <431> +04:55:03 Transaction Type : REQUEST +04:55:03 Received From : +04:55:03 ============================================================================ +04:55:03 FNo. Len. Field Value +04:55:03 ============================================================================ +04:55:03 [ 1] [ 4] [0800] +04:55:03 [ 7] [ 10] [0319095409] +04:55:03 [ 11] [ 6] [154453] +04:55:03 [ 70] [ 3] [301] +04:55:03 ============================================================================ +04:55:03 + + +waiting on router queue for slot.... +04:55:03 Sending to : +04:55:03 ============================================================================ +04:55:03 ============================================================================ +04:55:03 Slot Id : <431> +04:55:03 Transaction Type : RESPONSE +04:55:03 Received From : +04:55:03 ============================================================================ +04:55:03 FNo. Len. Field Value +04:55:03 ============================================================================ +04:55:03 [ 1] [ 4] [0810] +04:55:03 [ 7] [ 10] [0319095409] +04:55:03 [ 11] [ 6] [154453] +04:55:03 [ 39] [ 2] [00] +04:55:03 [ 70] [ 3] [301] +04:55:03 ============================================================================ +04:55:03 Calculate Source COMM Id = 2 +04:55:03 ============================================================================ +04:55:03 + + +waiting on router queue for slot.... +04:55:06 ============================================================================ +04:55:06 Slot Id : <451> +04:55:06 Transaction Type : REQUEST +04:55:06 Received From : +04:55:06 ============================================================================ +04:55:06 FNo. Len. Field Value +04:55:06 ============================================================================ +04:55:06 [ 1] [ 4] [0800] +04:55:06 [ 2] [ 5] [02531] +04:55:06 [ 3] [ 6] [579048] +04:55:06 [ 7] [ 10] [0319215506] +04:55:06 [ 11] [ 6] [806697] +04:55:06 [ 15] [ 10] [0319215506] +04:55:06 [ 37] [ 11] [57904806697] +04:55:06 [ 70] [ 3] [001] +04:55:06 ============================================================================ +04:55:06 + + +waiting on router queue for slot.... +04:55:06 ============================================================================ +04:55:06 Slot Id : <451> +04:55:06 Transaction Type : RESPONSE +04:55:06 Received From : +04:55:06 ============================================================================ +04:55:06 FNo. Len. Field Value +04:55:06 ============================================================================ +04:55:06 [ 1] [ 4] [0810] +04:55:06 [ 7] [ 10] [0319215506] +04:55:06 [ 11] [ 6] [806697] +04:55:06 [ 15] [ 4] [0319] +04:55:06 [ 37] [ 12] [57904806697] +04:55:06 [ 39] [ 2] [00] +04:55:06 [ 70] [ 3] [001] +04:55:06 ============================================================================ +04:55:06 Sending to : +04:55:06 ============================================================================ +04:55:06 + + +waiting on router queue for slot.... +04:55:13 ============================================================================ +04:55:13 Slot Id : <457> +04:55:13 Transaction Type : REQUEST +04:55:13 Received From : +04:55:13 ============================================================================ +04:55:13 FNo. Len. Field Value +04:55:13 ============================================================================ +04:55:13 [ 1] [ 4] [0800] +04:55:13 [ 7] [ 10] [0319095420] +04:55:13 [ 11] [ 6] [154454] +04:55:13 [ 70] [ 3] [301] +04:55:13 ============================================================================ +04:55:13 + + +waiting on router queue for slot.... +04:55:13 Sending to : +04:55:13 ============================================================================ +04:55:13 ============================================================================ +04:55:13 Slot Id : <457> +04:55:13 Transaction Type : RESPONSE +04:55:13 Received From : +04:55:13 ============================================================================ +04:55:13 FNo. Len. Field Value +04:55:13 ============================================================================ +04:55:13 [ 1] [ 4] [0810] +04:55:13 [ 7] [ 10] [0319095420] +04:55:13 [ 11] [ 6] [154454] +04:55:13 [ 39] [ 2] [00] +04:55:13 [ 70] [ 3] [301] +04:55:13 ============================================================================ +04:55:13 Calculate Source COMM Id = 2 +04:55:13 ============================================================================ +04:55:13 + + +waiting on router queue for slot.... +04:55:25 ============================================================================ +04:55:25 Slot Id : <422> +04:55:25 Transaction Type : REQUEST +04:55:25 Received From : +04:55:25 ============================================================================ +04:55:25 FNo. Len. Field Value +04:55:25 ============================================================================ +04:55:25 [ 1] [ 4] [0800] +04:55:25 [ 7] [ 10] [0319095432] +04:55:25 [ 11] [ 6] [154455] +04:55:25 [ 70] [ 3] [301] +04:55:25 ============================================================================ +04:55:25 + + +waiting on router queue for slot.... +04:55:25 Sending to : +04:55:25 ============================================================================ +04:55:25 ============================================================================ +04:55:25 Slot Id : <422> +04:55:25 Transaction Type : RESPONSE +04:55:25 Received From : +04:55:25 ============================================================================ +04:55:25 FNo. Len. Field Value +04:55:25 ============================================================================ +04:55:25 [ 1] [ 4] [0810] +04:55:25 [ 7] [ 10] [0319095432] +04:55:25 [ 11] [ 6] [154455] +04:55:25 [ 39] [ 2] [00] +04:55:25 [ 70] [ 3] [301] +04:55:25 ============================================================================ +04:55:25 Calculate Source COMM Id = 2 +04:55:25 ============================================================================ +04:55:25 + + +waiting on router queue for slot.... +04:55:35 ============================================================================ +04:55:35 Slot Id : <462> +04:55:35 Transaction Type : REQUEST +04:55:35 Received From : +04:55:35 ============================================================================ +04:55:35 FNo. Len. Field Value +04:55:35 ============================================================================ +04:55:35 [ 1] [ 4] [0800] +04:55:35 [ 7] [ 10] [0319095442] +04:55:35 [ 11] [ 6] [154456] +04:55:35 [ 70] [ 3] [301] +04:55:35 ============================================================================ +04:55:35 + + +waiting on router queue for slot.... +04:55:35 Sending to : +04:55:35 ============================================================================ +04:55:35 ============================================================================ +04:55:35 Slot Id : <462> +04:55:35 Transaction Type : RESPONSE +04:55:35 Received From : +04:55:35 ============================================================================ +04:55:35 FNo. Len. Field Value +04:55:35 ============================================================================ +04:55:35 [ 1] [ 4] [0810] +04:55:35 [ 7] [ 10] [0319095442] +04:55:35 [ 11] [ 6] [154456] +04:55:35 [ 39] [ 2] [00] +04:55:35 [ 70] [ 3] [301] +04:55:35 ============================================================================ +04:55:35 Calculate Source COMM Id = 2 +04:55:35 ============================================================================ +04:55:35 + + +waiting on router queue for slot.... +04:55:44 ============================================================================ +04:55:44 Slot Id : <465> +04:55:44 Transaction Type : REQUEST +04:55:44 Received From : +04:55:44 ============================================================================ +04:55:44 FNo. Len. Field Value +04:55:44 ============================================================================ +04:55:44 [ 1] [ 4] [0800] +04:55:44 [ 7] [ 10] [0320120731] +04:55:44 [ 11] [ 6] [050731] +04:55:44 [ 37] [ 12] [57905050731] +04:55:44 [ 70] [ 3] [301] +04:55:44 ============================================================================ +04:55:44 + + +waiting on router queue for slot.... +04:55:44 Sending to : +04:55:44 ============================================================================ +04:55:44 ============================================================================ +04:55:44 Slot Id : <465> +04:55:44 Transaction Type : RESPONSE +04:55:44 Received From : +04:55:44 ============================================================================ +04:55:44 FNo. Len. Field Value +04:55:44 ============================================================================ +04:55:44 [ 1] [ 4] [0810] +04:55:44 [ 7] [ 10] [0320120731] +04:55:44 [ 11] [ 6] [050731] +04:55:44 [ 37] [ 12] [579050507310] +04:55:44 [ 39] [ 2] [00] +04:55:44 [ 70] [ 3] [810] +04:55:44 ============================================================================ +04:55:44 Calculate Source COMM Id = 6 +04:55:44 ============================================================================ +04:55:44 + + +waiting on router queue for slot.... +04:55:46 ============================================================================ +04:55:46 Slot Id : <444> +04:55:46 Transaction Type : REQUEST +04:55:46 Received From : +04:55:46 ============================================================================ +04:55:46 FNo. Len. Field Value +04:55:46 ============================================================================ +04:55:46 [ 1] [ 4] [0800] +04:55:46 [ 7] [ 10] [0319095453] +04:55:46 [ 11] [ 6] [154457] +04:55:46 [ 70] [ 3] [301] +04:55:46 ============================================================================ +04:55:46 + + +waiting on router queue for slot.... +04:55:46 Sending to : +04:55:46 ============================================================================ +04:55:46 ============================================================================ +04:55:46 Slot Id : <444> +04:55:46 Transaction Type : RESPONSE +04:55:46 Received From : +04:55:46 ============================================================================ +04:55:46 FNo. Len. Field Value +04:55:46 ============================================================================ +04:55:46 [ 1] [ 4] [0810] +04:55:46 [ 7] [ 10] [0319095453] +04:55:46 [ 11] [ 6] [154457] +04:55:46 [ 39] [ 2] [00] +04:55:46 [ 70] [ 3] [301] +04:55:46 ============================================================================ +04:55:46 Calculate Source COMM Id = 2 +04:55:46 ============================================================================ +04:55:46 + + +waiting on router queue for slot.... +04:56:02 ============================================================================ +04:56:02 Slot Id : <421> +04:56:02 Transaction Type : REQUEST +04:56:02 Received From : +04:56:02 ============================================================================ +04:56:02 FNo. Len. Field Value +04:56:02 ============================================================================ +04:56:02 [ 1] [ 4] [0800] +04:56:02 [ 7] [ 10] [0319095509] +04:56:02 [ 11] [ 6] [154458] +04:56:02 [ 70] [ 3] [301] +04:56:02 ============================================================================ +04:56:02 + + +waiting on router queue for slot.... +04:56:02 Sending to : +04:56:02 ============================================================================ +04:56:02 ============================================================================ +04:56:02 Slot Id : <421> +04:56:02 Transaction Type : RESPONSE +04:56:02 Received From : +04:56:02 ============================================================================ +04:56:02 FNo. Len. Field Value +04:56:02 ============================================================================ +04:56:02 [ 1] [ 4] [0810] +04:56:02 [ 7] [ 10] [0319095509] +04:56:02 [ 11] [ 6] [154458] +04:56:02 [ 39] [ 2] [00] +04:56:02 [ 70] [ 3] [301] +04:56:02 ============================================================================ +04:56:02 Calculate Source COMM Id = 2 +04:56:02 ============================================================================ +04:56:02 + + +waiting on router queue for slot.... +04:56:08 ============================================================================ +04:56:08 Slot Id : <439> +04:56:08 Transaction Type : REQUEST +04:56:08 Received From : +04:56:08 ============================================================================ +04:56:08 FNo. Len. Field Value +04:56:08 ============================================================================ +04:56:08 [ 1] [ 4] [0800] +04:56:08 [ 2] [ 5] [02531] +04:56:08 [ 3] [ 6] [579048] +04:56:08 [ 7] [ 10] [0319215608] +04:56:08 [ 11] [ 6] [806698] +04:56:08 [ 15] [ 10] [0319215608] +04:56:08 [ 37] [ 11] [57904806698] +04:56:08 [ 70] [ 3] [001] +04:56:08 ============================================================================ +04:56:08 + + +waiting on router queue for slot.... +04:56:08 ============================================================================ +04:56:08 Slot Id : <439> +04:56:08 Transaction Type : RESPONSE +04:56:08 Received From : +04:56:08 ============================================================================ +04:56:08 FNo. Len. Field Value +04:56:08 ============================================================================ +04:56:08 [ 1] [ 4] [0810] +04:56:08 [ 7] [ 10] [0319215608] +04:56:08 [ 11] [ 6] [806698] +04:56:08 [ 15] [ 4] [0319] +04:56:08 [ 37] [ 12] [57904806698] +04:56:08 [ 39] [ 2] [00] +04:56:08 [ 70] [ 3] [001] +04:56:08 ============================================================================ +04:56:08 Sending to : +04:56:08 ============================================================================ +04:56:08 + + +waiting on router queue for slot.... +04:56:13 ============================================================================ +04:56:13 Slot Id : <458> +04:56:13 Transaction Type : REQUEST +04:56:13 Received From : +04:56:13 ============================================================================ +04:56:13 FNo. Len. Field Value +04:56:13 ============================================================================ +04:56:13 [ 1] [ 4] [0800] +04:56:13 [ 7] [ 10] [0319095519] +04:56:13 [ 11] [ 6] [154459] +04:56:13 [ 70] [ 3] [301] +04:56:13 ============================================================================ +04:56:13 + + +waiting on router queue for slot.... +04:56:13 Sending to : +04:56:13 ============================================================================ +04:56:13 ============================================================================ +04:56:13 Slot Id : <458> +04:56:13 Transaction Type : RESPONSE +04:56:13 Received From : +04:56:13 ============================================================================ +04:56:13 FNo. Len. Field Value +04:56:13 ============================================================================ +04:56:13 [ 1] [ 4] [0810] +04:56:13 [ 7] [ 10] [0319095519] +04:56:13 [ 11] [ 6] [154459] +04:56:13 [ 39] [ 2] [00] +04:56:13 [ 70] [ 3] [301] +04:56:13 ============================================================================ +04:56:13 Calculate Source COMM Id = 2 +04:56:13 ============================================================================ +04:56:13 + + +waiting on router queue for slot.... +04:56:22 ============================================================================ +04:56:22 Slot Id : <423> +04:56:22 Transaction Type : REQUEST +04:56:22 Received From : +04:56:22 ============================================================================ +04:56:22 FNo. Len. Field Value +04:56:22 ============================================================================ +04:56:22 [ 1] [ 4] [0800] +04:56:22 [ 7] [ 10] [0319215412] +04:56:22 [ 11] [ 6] [078588] +04:56:22 [ 37] [ 12] [57904078588] +04:56:22 [ 70] [ 3] [301] +04:56:22 ============================================================================ +04:56:22 + + +waiting on router queue for slot.... +04:56:22 Sending to : +04:56:22 ============================================================================ +04:56:22 ============================================================================ +04:56:22 Slot Id : <423> +04:56:22 Transaction Type : RESPONSE +04:56:22 Received From : +04:56:22 ============================================================================ +04:56:22 FNo. Len. Field Value +04:56:22 ============================================================================ +04:56:22 [ 1] [ 4] [0810] +04:56:22 [ 7] [ 10] [0319215412] +04:56:22 [ 11] [ 6] [078588] +04:56:22 [ 37] [ 12] [579040785880] +04:56:22 [ 39] [ 2] [00] +04:56:22 [ 70] [ 3] [810] +04:56:22 ============================================================================ +04:56:22 Calculate Source COMM Id = 4 +04:56:22 ============================================================================ +04:56:22 + + +waiting on router queue for slot.... +04:56:29 ============================================================================ +04:56:29 Slot Id : <466> +04:56:29 Transaction Type : REQUEST +04:56:29 Received From : +04:56:29 ============================================================================ +04:56:29 FNo. Len. Field Value +04:56:29 ============================================================================ +04:56:29 [ 1] [ 4] [0800] +04:56:29 [ 7] [ 10] [0319095535] +04:56:29 [ 11] [ 6] [154460] +04:56:29 [ 70] [ 3] [301] +04:56:29 ============================================================================ +04:56:29 + + +waiting on router queue for slot.... +04:56:29 Sending to : +04:56:29 ============================================================================ +04:56:29 ============================================================================ +04:56:29 Slot Id : <466> +04:56:29 Transaction Type : RESPONSE +04:56:29 Received From : +04:56:29 ============================================================================ +04:56:29 FNo. Len. Field Value +04:56:29 ============================================================================ +04:56:29 [ 1] [ 4] [0810] +04:56:29 [ 7] [ 10] [0319095535] +04:56:29 [ 11] [ 6] [154460] +04:56:29 [ 39] [ 2] [00] +04:56:29 [ 70] [ 3] [301] +04:56:29 ============================================================================ +04:56:29 Calculate Source COMM Id = 2 +04:56:29 ============================================================================ +04:56:29 + + +waiting on router queue for slot.... +04:56:39 ============================================================================ +04:56:39 Slot Id : <436> +04:56:39 Transaction Type : REQUEST +04:56:39 Received From : +04:56:39 ============================================================================ +04:56:39 FNo. Len. Field Value +04:56:39 ============================================================================ +04:56:39 [ 1] [ 4] [0800] +04:56:39 [ 7] [ 10] [0319095546] +04:56:39 [ 11] [ 6] [154461] +04:56:39 [ 70] [ 3] [301] +04:56:39 ============================================================================ +04:56:39 + + +waiting on router queue for slot.... +04:56:39 Sending to : +04:56:39 ============================================================================ +04:56:39 ============================================================================ +04:56:39 Slot Id : <436> +04:56:39 Transaction Type : RESPONSE +04:56:39 Received From : +04:56:39 ============================================================================ +04:56:39 FNo. Len. Field Value +04:56:39 ============================================================================ +04:56:39 [ 1] [ 4] [0810] +04:56:39 [ 7] [ 10] [0319095546] +04:56:39 [ 11] [ 6] [154461] +04:56:39 [ 39] [ 2] [00] +04:56:39 [ 70] [ 3] [301] +04:56:39 ============================================================================ +04:56:39 Calculate Source COMM Id = 2 +04:56:39 ============================================================================ +04:56:39 + + +waiting on router queue for slot.... +04:56:49 ============================================================================ +04:56:49 Slot Id : <459> +04:56:49 Transaction Type : REQUEST +04:56:49 Received From : +04:56:49 ============================================================================ +04:56:49 FNo. Len. Field Value +04:56:49 ============================================================================ +04:56:49 [ 1] [ 4] [0800] +04:56:49 [ 7] [ 10] [0320120836] +04:56:49 [ 11] [ 6] [050836] +04:56:49 [ 37] [ 12] [57905050836] +04:56:49 [ 70] [ 3] [301] +04:56:49 ============================================================================ +04:56:49 + + +waiting on router queue for slot.... +04:56:49 Sending to : +04:56:49 ============================================================================ +04:56:49 ============================================================================ +04:56:49 Slot Id : <459> +04:56:49 Transaction Type : RESPONSE +04:56:49 Received From : +04:56:49 ============================================================================ +04:56:49 FNo. Len. Field Value +04:56:49 ============================================================================ +04:56:49 [ 1] [ 4] [0810] +04:56:49 [ 7] [ 10] [0320120836] +04:56:49 [ 11] [ 6] [050836] +04:56:49 [ 37] [ 12] [579050508360] +04:56:49 [ 39] [ 2] [00] +04:56:49 [ 70] [ 3] [810] +04:56:49 ============================================================================ +04:56:49 Calculate Source COMM Id = 6 +04:56:49 ============================================================================ +04:56:49 + + +waiting on router queue for slot.... +04:56:55 ============================================================================ +04:56:55 Slot Id : <475> +04:56:55 Transaction Type : REQUEST +04:56:55 Received From : +04:56:55 ============================================================================ +04:56:55 FNo. Len. Field Value +04:56:55 ============================================================================ +04:56:55 [ 1] [ 4] [0800] +04:56:55 [ 7] [ 10] [0319095601] +04:56:55 [ 11] [ 6] [154462] +04:56:55 [ 70] [ 3] [301] +04:56:55 ============================================================================ +04:56:55 + + +waiting on router queue for slot.... +04:56:55 Sending to : +04:56:55 ============================================================================ +04:56:55 ============================================================================ +04:56:55 Slot Id : <475> +04:56:55 Transaction Type : RESPONSE +04:56:55 Received From : +04:56:55 ============================================================================ +04:56:55 FNo. Len. Field Value +04:56:55 ============================================================================ +04:56:55 [ 1] [ 4] [0810] +04:56:55 [ 7] [ 10] [0319095601] +04:56:55 [ 11] [ 6] [154462] +04:56:55 [ 39] [ 2] [00] +04:56:55 [ 70] [ 3] [301] +04:56:55 ============================================================================ +04:56:55 Calculate Source COMM Id = 2 +04:56:55 ============================================================================ +04:56:55 + + +waiting on router queue for slot.... +04:57:10 ============================================================================ +04:57:10 Slot Id : <452> +04:57:10 Transaction Type : REQUEST +04:57:10 Received From : +04:57:10 ============================================================================ +04:57:10 FNo. Len. Field Value +04:57:10 ============================================================================ +04:57:10 [ 1] [ 4] [0800] +04:57:10 [ 2] [ 5] [02531] +04:57:10 [ 3] [ 6] [579048] +04:57:10 [ 7] [ 10] [0319215710] +04:57:10 [ 11] [ 6] [806699] +04:57:10 [ 15] [ 10] [0319215710] +04:57:10 [ 37] [ 11] [57904806699] +04:57:10 [ 70] [ 3] [001] +04:57:10 ============================================================================ +04:57:10 + + +waiting on router queue for slot.... +04:57:10 ============================================================================ +04:57:10 Slot Id : <452> +04:57:10 Transaction Type : RESPONSE +04:57:10 Received From : +04:57:10 ============================================================================ +04:57:10 FNo. Len. Field Value +04:57:10 ============================================================================ +04:57:10 [ 1] [ 4] [0810] +04:57:10 [ 7] [ 10] [0319215710] +04:57:10 [ 11] [ 6] [806699] +04:57:10 [ 15] [ 4] [0319] +04:57:10 [ 37] [ 12] [57904806699] +04:57:10 [ 39] [ 2] [00] +04:57:10 [ 70] [ 3] [001] +04:57:10 ============================================================================ +04:57:10 Sending to : +04:57:10 ============================================================================ +04:57:10 + + +waiting on router queue for slot.... +04:57:10 ============================================================================ +04:57:10 Slot Id : <468> +04:57:10 Transaction Type : REQUEST +04:57:10 Received From : +04:57:10 ============================================================================ +04:57:10 FNo. Len. Field Value +04:57:10 ============================================================================ +04:57:10 [ 1] [ 4] [0800] +04:57:10 [ 7] [ 10] [0319095617] +04:57:10 [ 11] [ 6] [154463] +04:57:10 [ 70] [ 3] [301] +04:57:10 ============================================================================ +04:57:10 + + +waiting on router queue for slot.... +04:57:10 Sending to : +04:57:10 ============================================================================ +04:57:10 ============================================================================ +04:57:10 Slot Id : <468> +04:57:10 Transaction Type : RESPONSE +04:57:10 Received From : +04:57:10 ============================================================================ +04:57:10 FNo. Len. Field Value +04:57:10 ============================================================================ +04:57:10 [ 1] [ 4] [0810] +04:57:10 [ 7] [ 10] [0319095617] +04:57:10 [ 11] [ 6] [154463] +04:57:10 [ 39] [ 2] [00] +04:57:10 [ 70] [ 3] [301] +04:57:10 ============================================================================ +04:57:10 Calculate Source COMM Id = 2 +04:57:10 ============================================================================ +04:57:10 + + +waiting on router queue for slot.... +04:57:21 ============================================================================ +04:57:21 Slot Id : <449> +04:57:21 Transaction Type : REQUEST +04:57:21 Received From : +04:57:21 ============================================================================ +04:57:21 FNo. Len. Field Value +04:57:21 ============================================================================ +04:57:21 [ 1] [ 4] [0800] +04:57:21 [ 7] [ 10] [0319095628] +04:57:21 [ 11] [ 6] [154464] +04:57:21 [ 70] [ 3] [301] +04:57:21 ============================================================================ +04:57:21 + + +waiting on router queue for slot.... +04:57:21 Sending to : +04:57:21 ============================================================================ +04:57:21 ============================================================================ +04:57:21 Slot Id : <449> +04:57:21 Transaction Type : RESPONSE +04:57:21 Received From : +04:57:21 ============================================================================ +04:57:21 FNo. Len. Field Value +04:57:21 ============================================================================ +04:57:21 [ 1] [ 4] [0810] +04:57:21 [ 7] [ 10] [0319095628] +04:57:21 [ 11] [ 6] [154464] +04:57:21 [ 39] [ 2] [00] +04:57:21 [ 70] [ 3] [301] +04:57:21 ============================================================================ +04:57:21 Calculate Source COMM Id = 2 +04:57:21 ============================================================================ +04:57:21 + + +waiting on router queue for slot.... +04:57:36 ============================================================================ +04:57:36 Slot Id : <455> +04:57:36 Transaction Type : REQUEST +04:57:36 Received From : +04:57:36 ============================================================================ +04:57:36 FNo. Len. Field Value +04:57:36 ============================================================================ +04:57:36 [ 1] [ 4] [0800] +04:57:36 [ 7] [ 10] [0319095643] +04:57:36 [ 11] [ 6] [154465] +04:57:36 [ 70] [ 3] [301] +04:57:36 ============================================================================ +04:57:36 + + +waiting on router queue for slot.... +04:57:36 Sending to : +04:57:36 ============================================================================ +04:57:36 ============================================================================ +04:57:36 Slot Id : <455> +04:57:36 Transaction Type : RESPONSE +04:57:36 Received From : +04:57:36 ============================================================================ +04:57:36 FNo. Len. Field Value +04:57:36 ============================================================================ +04:57:36 [ 1] [ 4] [0810] +04:57:36 [ 7] [ 10] [0319095643] +04:57:36 [ 11] [ 6] [154465] +04:57:36 [ 39] [ 2] [00] +04:57:36 [ 70] [ 3] [301] +04:57:36 ============================================================================ +04:57:36 Calculate Source COMM Id = 2 +04:57:36 ============================================================================ +04:57:36 + + +waiting on router queue for slot.... +04:57:46 ============================================================================ +04:57:46 Slot Id : <440> +04:57:46 Transaction Type : REQUEST +04:57:46 Received From : +04:57:46 ============================================================================ +04:57:46 FNo. Len. Field Value +04:57:46 ============================================================================ +04:57:46 [ 1] [ 4] [0800] +04:57:46 [ 7] [ 10] [0319095653] +04:57:46 [ 11] [ 6] [154466] +04:57:46 [ 70] [ 3] [301] +04:57:46 ============================================================================ +04:57:46 + + +waiting on router queue for slot.... +04:57:46 Sending to : +04:57:46 ============================================================================ +04:57:46 ============================================================================ +04:57:46 Slot Id : <440> +04:57:46 Transaction Type : RESPONSE +04:57:46 Received From : +04:57:46 ============================================================================ +04:57:46 FNo. Len. Field Value +04:57:46 ============================================================================ +04:57:46 [ 1] [ 4] [0810] +04:57:46 [ 7] [ 10] [0319095653] +04:57:46 [ 11] [ 6] [154466] +04:57:46 [ 39] [ 2] [00] +04:57:46 [ 70] [ 3] [301] +04:57:46 ============================================================================ +04:57:46 Calculate Source COMM Id = 2 +04:57:46 ============================================================================ +04:57:46 + + +waiting on router queue for slot.... +04:57:54 ============================================================================ +04:57:54 Slot Id : <460> +04:57:54 Transaction Type : REQUEST +04:57:54 Received From : +04:57:54 ============================================================================ +04:57:54 FNo. Len. Field Value +04:57:54 ============================================================================ +04:57:54 [ 1] [ 4] [0800] +04:57:54 [ 7] [ 10] [0320120941] +04:57:54 [ 11] [ 6] [050941] +04:57:54 [ 37] [ 12] [57905050941] +04:57:54 [ 70] [ 3] [301] +04:57:54 ============================================================================ +04:57:54 + + +waiting on router queue for slot.... +04:57:54 Sending to : +04:57:54 ============================================================================ +04:57:54 ============================================================================ +04:57:54 Slot Id : <460> +04:57:54 Transaction Type : RESPONSE +04:57:54 Received From : +04:57:54 ============================================================================ +04:57:54 FNo. Len. Field Value +04:57:54 ============================================================================ +04:57:54 [ 1] [ 4] [0810] +04:57:54 [ 7] [ 10] [0320120941] +04:57:54 [ 11] [ 6] [050941] +04:57:54 [ 37] [ 12] [579050509410] +04:57:54 [ 39] [ 2] [00] +04:57:54 [ 70] [ 3] [810] +04:57:54 ============================================================================ +04:57:54 Calculate Source COMM Id = 6 +04:57:54 ============================================================================ +04:57:54 + + +waiting on router queue for slot.... +04:57:56 ============================================================================ +04:57:56 Slot Id : <432> +04:57:56 Transaction Type : REQUEST +04:57:56 Received From : +04:57:56 ============================================================================ +04:57:56 FNo. Len. Field Value +04:57:56 ============================================================================ +04:57:56 [ 1] [ 4] [0800] +04:57:56 [ 7] [ 10] [0320045742] +04:57:56 [ 11] [ 6] [028544] +04:57:56 [ 37] [ 12] [507904028544] +04:57:56 [ 70] [ 3] [ ] +04:57:56 ============================================================================ +04:57:56 + + +waiting on router queue for slot.... +04:57:56 Sending to : +04:57:56 ============================================================================ +04:57:56 ============================================================================ +04:57:56 Slot Id : <432> +04:57:56 Transaction Type : RESPONSE +04:57:56 Received From : +04:57:56 ============================================================================ +04:57:56 FNo. Len. Field Value +04:57:56 ============================================================================ +04:57:56 [ 1] [ 4] [0810] +04:57:56 [ 7] [ 10] [0320045742] +04:57:56 [ 11] [ 6] [028544] +04:57:56 [ 37] [ 12] [507904028544] +04:57:56 [ 39] [ 2] [91] +04:57:56 [ 70] [ 3] [ ] +04:57:56 ============================================================================ +04:57:56 Calculate Source COMM Id = 3 +04:57:56 ============================================================================ +04:57:56 + + +waiting on router queue for slot.... +04:58:02 ============================================================================ +04:58:02 Slot Id : <453> +04:58:02 Transaction Type : REQUEST +04:58:02 Received From : +04:58:02 ============================================================================ +04:58:02 FNo. Len. Field Value +04:58:02 ============================================================================ +04:58:02 [ 1] [ 4] [0800] +04:58:02 [ 7] [ 10] [0319095709] +04:58:02 [ 11] [ 6] [154467] +04:58:02 [ 70] [ 3] [301] +04:58:02 ============================================================================ +04:58:02 + + +waiting on router queue for slot.... +04:58:02 Sending to : +04:58:02 ============================================================================ +04:58:02 ============================================================================ +04:58:02 Slot Id : <453> +04:58:02 Transaction Type : RESPONSE +04:58:02 Received From : +04:58:02 ============================================================================ +04:58:02 FNo. Len. Field Value +04:58:02 ============================================================================ +04:58:02 [ 1] [ 4] [0810] +04:58:02 [ 7] [ 10] [0319095709] +04:58:02 [ 11] [ 6] [154467] +04:58:02 [ 39] [ 2] [00] +04:58:02 [ 70] [ 3] [301] +04:58:02 ============================================================================ +04:58:02 Calculate Source COMM Id = 2 +04:58:02 ============================================================================ +04:58:02 + + +waiting on router queue for slot.... +04:58:12 ============================================================================ +04:58:12 Slot Id : <482> +04:58:12 Transaction Type : REQUEST +04:58:12 Received From : +04:58:12 ============================================================================ +04:58:12 FNo. Len. Field Value +04:58:12 ============================================================================ +04:58:12 [ 1] [ 4] [0800] +04:58:12 [ 2] [ 5] [02531] +04:58:12 [ 3] [ 6] [579048] +04:58:12 [ 7] [ 10] [0319215812] +04:58:12 [ 11] [ 6] [806700] +04:58:12 [ 15] [ 10] [0319215812] +04:58:12 [ 37] [ 11] [57904806700] +04:58:12 [ 70] [ 3] [001] +04:58:12 ============================================================================ +04:58:12 + + +waiting on router queue for slot.... +04:58:12 ============================================================================ +04:58:12 Slot Id : <482> +04:58:12 Transaction Type : RESPONSE +04:58:12 Received From : +04:58:12 ============================================================================ +04:58:12 FNo. Len. Field Value +04:58:12 ============================================================================ +04:58:12 [ 1] [ 4] [0810] +04:58:12 [ 7] [ 10] [0319215812] +04:58:12 [ 11] [ 6] [806700] +04:58:12 [ 15] [ 4] [0319] +04:58:12 [ 37] [ 12] [57904806700] +04:58:12 [ 39] [ 2] [00] +04:58:12 [ 70] [ 3] [001] +04:58:12 ============================================================================ +04:58:12 Sending to : +04:58:12 ============================================================================ +04:58:12 + + +waiting on router queue for slot.... +04:58:18 ============================================================================ +04:58:18 Slot Id : <488> +04:58:18 Transaction Type : REQUEST +04:58:18 Received From : +04:58:18 ============================================================================ +04:58:18 FNo. Len. Field Value +04:58:18 ============================================================================ +04:58:18 [ 1] [ 4] [0800] +04:58:18 [ 7] [ 10] [0319095724] +04:58:18 [ 11] [ 6] [154468] +04:58:18 [ 70] [ 3] [301] +04:58:18 ============================================================================ +04:58:18 + + +waiting on router queue for slot.... +04:58:18 Sending to : +04:58:18 ============================================================================ +04:58:18 ============================================================================ +04:58:18 Slot Id : <488> +04:58:18 Transaction Type : RESPONSE +04:58:18 Received From : +04:58:18 ============================================================================ +04:58:18 FNo. Len. Field Value +04:58:18 ============================================================================ +04:58:18 [ 1] [ 4] [0810] +04:58:18 [ 7] [ 10] [0319095724] +04:58:18 [ 11] [ 6] [154468] +04:58:18 [ 39] [ 2] [00] +04:58:18 [ 70] [ 3] [301] +04:58:18 ============================================================================ +04:58:18 Calculate Source COMM Id = 2 +04:58:18 ============================================================================ +04:58:18 + + +waiting on router queue for slot.... +04:58:29 ============================================================================ +04:58:29 Slot Id : <470> +04:58:29 Transaction Type : REQUEST +04:58:29 Received From : +04:58:29 ============================================================================ +04:58:29 FNo. Len. Field Value +04:58:29 ============================================================================ +04:58:29 [ 1] [ 4] [0800] +04:58:29 [ 7] [ 10] [0319095736] +04:58:29 [ 11] [ 6] [154469] +04:58:29 [ 70] [ 3] [301] +04:58:29 ============================================================================ +04:58:29 + + +waiting on router queue for slot.... +04:58:29 Sending to : +04:58:29 ============================================================================ +04:58:29 ============================================================================ +04:58:29 Slot Id : <470> +04:58:29 Transaction Type : RESPONSE +04:58:29 Received From : +04:58:29 ============================================================================ +04:58:29 FNo. Len. Field Value +04:58:29 ============================================================================ +04:58:29 [ 1] [ 4] [0810] +04:58:29 [ 7] [ 10] [0319095736] +04:58:29 [ 11] [ 6] [154469] +04:58:29 [ 39] [ 2] [00] +04:58:29 [ 70] [ 3] [301] +04:58:29 ============================================================================ +04:58:29 Calculate Source COMM Id = 2 +04:58:29 ============================================================================ +04:58:29 + + +waiting on router queue for slot.... +04:58:44 ============================================================================ +04:58:44 Slot Id : <495> +04:58:44 Transaction Type : REQUEST +04:58:44 Received From : +04:58:44 ============================================================================ +04:58:44 FNo. Len. Field Value +04:58:44 ============================================================================ +04:58:44 [ 1] [ 4] [0800] +04:58:44 [ 7] [ 10] [0319095751] +04:58:44 [ 11] [ 6] [154470] +04:58:44 [ 70] [ 3] [301] +04:58:44 ============================================================================ +04:58:44 + + +waiting on router queue for slot.... +04:58:44 Sending to : +04:58:44 ============================================================================ +04:58:44 ============================================================================ +04:58:44 Slot Id : <495> +04:58:44 Transaction Type : RESPONSE +04:58:44 Received From : +04:58:44 ============================================================================ +04:58:44 FNo. Len. Field Value +04:58:44 ============================================================================ +04:58:44 [ 1] [ 4] [0810] +04:58:44 [ 7] [ 10] [0319095751] +04:58:44 [ 11] [ 6] [154470] +04:58:44 [ 39] [ 2] [00] +04:58:44 [ 70] [ 3] [301] +04:58:44 ============================================================================ +04:58:44 Calculate Source COMM Id = 2 +04:58:44 ============================================================================ +04:58:44 + + +waiting on router queue for slot.... +04:58:57 ============================================================================ +04:58:57 Slot Id : <463> +04:58:57 Transaction Type : REQUEST +04:58:57 Received From : +04:58:57 ============================================================================ +04:58:57 FNo. Len. Field Value +04:58:57 ============================================================================ +04:58:57 [ 1] [ 4] [0800] +04:58:57 [ 7] [ 10] [0319095804] +04:58:57 [ 11] [ 6] [154471] +04:58:57 [ 70] [ 3] [301] +04:58:57 ============================================================================ +04:58:57 + + +waiting on router queue for slot.... +04:58:57 Sending to : +04:58:57 ============================================================================ +04:58:57 ============================================================================ +04:58:57 Slot Id : <463> +04:58:57 Transaction Type : RESPONSE +04:58:57 Received From : +04:58:57 ============================================================================ +04:58:57 FNo. Len. Field Value +04:58:57 ============================================================================ +04:58:57 [ 1] [ 4] [0810] +04:58:57 [ 7] [ 10] [0319095804] +04:58:57 [ 11] [ 6] [154471] +04:58:57 [ 39] [ 2] [00] +04:58:57 [ 70] [ 3] [301] +04:58:57 ============================================================================ +04:58:57 Calculate Source COMM Id = 2 +04:58:57 ============================================================================ +04:58:57 + + +waiting on router queue for slot.... +04:58:59 ============================================================================ +04:58:59 Slot Id : <490> +04:58:59 Transaction Type : REQUEST +04:58:59 Received From : +04:58:59 ============================================================================ +04:58:59 FNo. Len. Field Value +04:58:59 ============================================================================ +04:58:59 [ 1] [ 4] [0800] +04:58:59 [ 7] [ 10] [0320121046] +04:58:59 [ 11] [ 6] [051046] +04:58:59 [ 37] [ 12] [57905051046] +04:58:59 [ 70] [ 3] [301] +04:58:59 ============================================================================ +04:58:59 + + +waiting on router queue for slot.... +04:58:59 Sending to : +04:58:59 ============================================================================ +04:58:59 ============================================================================ +04:58:59 Slot Id : <490> +04:58:59 Transaction Type : RESPONSE +04:58:59 Received From : +04:58:59 ============================================================================ +04:58:59 FNo. Len. Field Value +04:58:59 ============================================================================ +04:58:59 [ 1] [ 4] [0810] +04:58:59 [ 7] [ 10] [0320121046] +04:58:59 [ 11] [ 6] [051046] +04:58:59 [ 37] [ 12] [579050510460] +04:58:59 [ 39] [ 2] [00] +04:58:59 [ 70] [ 3] [810] +04:58:59 ============================================================================ +04:58:59 Calculate Source COMM Id = 6 +04:58:59 ============================================================================ +04:58:59 + + +waiting on router queue for slot.... +04:59:12 ============================================================================ +04:59:12 Slot Id : <448> +04:59:12 Transaction Type : REQUEST +04:59:12 Received From : +04:59:12 ============================================================================ +04:59:12 FNo. Len. Field Value +04:59:12 ============================================================================ +04:59:12 [ 1] [ 4] [0800] +04:59:12 [ 7] [ 10] [0319095818] +04:59:12 [ 11] [ 6] [154472] +04:59:12 [ 70] [ 3] [301] +04:59:12 ============================================================================ +04:59:12 + + +waiting on router queue for slot.... +04:59:12 Sending to : +04:59:12 ============================================================================ +04:59:12 ============================================================================ +04:59:12 Slot Id : <448> +04:59:12 Transaction Type : RESPONSE +04:59:12 Received From : +04:59:12 ============================================================================ +04:59:12 FNo. Len. Field Value +04:59:12 ============================================================================ +04:59:12 [ 1] [ 4] [0810] +04:59:12 [ 7] [ 10] [0319095818] +04:59:12 [ 11] [ 6] [154472] +04:59:12 [ 39] [ 2] [00] +04:59:12 [ 70] [ 3] [301] +04:59:12 ============================================================================ +04:59:12 Calculate Source COMM Id = 2 +04:59:12 ============================================================================ +04:59:12 + + +waiting on router queue for slot.... +04:59:14 ============================================================================ +04:59:14 Slot Id : <484> +04:59:14 Transaction Type : REQUEST +04:59:14 Received From : +04:59:14 ============================================================================ +04:59:14 FNo. Len. Field Value +04:59:14 ============================================================================ +04:59:14 [ 1] [ 4] [0800] +04:59:14 [ 2] [ 5] [02531] +04:59:14 [ 3] [ 6] [579048] +04:59:14 [ 7] [ 10] [0319215914] +04:59:14 [ 11] [ 6] [806701] +04:59:14 [ 15] [ 10] [0319215914] +04:59:14 [ 37] [ 11] [57904806701] +04:59:14 [ 70] [ 3] [001] +04:59:14 ============================================================================ +04:59:14 + + +waiting on router queue for slot.... +04:59:14 ============================================================================ +04:59:14 Slot Id : <484> +04:59:14 Transaction Type : RESPONSE +04:59:14 Received From : +04:59:14 ============================================================================ +04:59:14 FNo. Len. Field Value +04:59:14 ============================================================================ +04:59:14 [ 1] [ 4] [0810] +04:59:14 [ 7] [ 10] [0319215914] +04:59:14 [ 11] [ 6] [806701] +04:59:14 [ 15] [ 4] [0319] +04:59:14 [ 37] [ 12] [57904806701] +04:59:14 [ 39] [ 2] [00] +04:59:14 [ 70] [ 3] [001] +04:59:14 ============================================================================ +04:59:14 Sending to : +04:59:14 ============================================================================ +04:59:14 + + +waiting on router queue for slot.... +04:59:28 ============================================================================ +04:59:28 Slot Id : <471> +04:59:28 Transaction Type : REQUEST +04:59:28 Received From : +04:59:28 ============================================================================ +04:59:28 FNo. Len. Field Value +04:59:28 ============================================================================ +04:59:28 [ 1] [ 4] [0800] +04:59:28 [ 7] [ 10] [0319095833] +04:59:28 [ 11] [ 6] [154473] +04:59:28 [ 70] [ 3] [301] +04:59:28 ============================================================================ +04:59:28 + + +waiting on router queue for slot.... +04:59:28 Sending to : +04:59:28 ============================================================================ +04:59:28 ============================================================================ +04:59:28 Slot Id : <471> +04:59:28 Transaction Type : RESPONSE +04:59:28 Received From : +04:59:28 ============================================================================ +04:59:28 FNo. Len. Field Value +04:59:28 ============================================================================ +04:59:28 [ 1] [ 4] [0810] +04:59:28 [ 7] [ 10] [0319095833] +04:59:28 [ 11] [ 6] [154473] +04:59:28 [ 39] [ 2] [00] +04:59:28 [ 70] [ 3] [301] +04:59:28 ============================================================================ +04:59:28 Calculate Source COMM Id = 2 +04:59:28 ============================================================================ +04:59:28 + + +waiting on router queue for slot.... +04:59:44 ============================================================================ +04:59:44 Slot Id : <480> +04:59:44 Transaction Type : REQUEST +04:59:44 Received From : +04:59:44 ============================================================================ +04:59:44 FNo. Len. Field Value +04:59:44 ============================================================================ +04:59:44 [ 1] [ 4] [0800] +04:59:44 [ 7] [ 10] [0319095850] +04:59:44 [ 11] [ 6] [154474] +04:59:44 [ 70] [ 3] [301] +04:59:44 ============================================================================ +04:59:44 + + +waiting on router queue for slot.... +04:59:44 Sending to : +04:59:44 ============================================================================ +04:59:44 ============================================================================ +04:59:44 Slot Id : <480> +04:59:44 Transaction Type : RESPONSE +04:59:44 Received From : +04:59:44 ============================================================================ +04:59:44 FNo. Len. Field Value +04:59:44 ============================================================================ +04:59:44 [ 1] [ 4] [0810] +04:59:44 [ 7] [ 10] [0319095850] +04:59:44 [ 11] [ 6] [154474] +04:59:44 [ 39] [ 2] [00] +04:59:44 [ 70] [ 3] [301] +04:59:44 ============================================================================ +04:59:44 Calculate Source COMM Id = 2 +04:59:44 ============================================================================ +04:59:44 + + +waiting on router queue for slot.... +04:59:57 ============================================================================ +04:59:57 Slot Id : <479> +04:59:57 Transaction Type : REQUEST +04:59:57 Received From : +04:59:57 ============================================================================ +04:59:57 FNo. Len. Field Value +04:59:57 ============================================================================ +04:59:57 [ 1] [ 4] [0800] +04:59:57 [ 7] [ 10] [0319220742] +04:59:57 [ 11] [ 6] [078758] +04:59:57 [ 37] [ 12] [57905078758] +04:59:57 [ 70] [ 3] [301] +04:59:57 ============================================================================ +04:59:57 + + +waiting on router queue for slot.... +04:59:57 Sending to : +04:59:57 ============================================================================ +04:59:57 ============================================================================ +04:59:57 Slot Id : <479> +04:59:57 Transaction Type : RESPONSE +04:59:57 Received From : +04:59:57 ============================================================================ +04:59:57 FNo. Len. Field Value +04:59:57 ============================================================================ +04:59:57 [ 1] [ 4] [0810] +04:59:57 [ 7] [ 10] [0319220742] +04:59:57 [ 11] [ 6] [078758] +04:59:57 [ 37] [ 12] [579050787580] +04:59:57 [ 39] [ 2] [00] +04:59:57 [ 70] [ 3] [810] +04:59:57 ============================================================================ +04:59:57 Calculate Source COMM Id = 1 +04:59:57 ============================================================================ +04:59:57 + + +waiting on router queue for slot.... +05:00:00 ============================================================================ +05:00:00 Slot Id : <498> +05:00:00 Transaction Type : REQUEST +05:00:00 Received From : +05:00:00 ============================================================================ +05:00:00 FNo. Len. Field Value +05:00:00 ============================================================================ +05:00:00 [ 1] [ 4] [0800] +05:00:00 [ 7] [ 10] [0319095906] +05:00:00 [ 11] [ 6] [154475] +05:00:00 [ 70] [ 3] [301] +05:00:00 ============================================================================ +05:00:00 + + +waiting on router queue for slot.... +05:00:00 Sending to : +05:00:00 ============================================================================ +05:00:00 ============================================================================ +05:00:00 Slot Id : <498> +05:00:00 Transaction Type : RESPONSE +05:00:00 Received From : +05:00:00 ============================================================================ +05:00:00 FNo. Len. Field Value +05:00:00 ============================================================================ +05:00:00 [ 1] [ 4] [0810] +05:00:00 [ 7] [ 10] [0319095906] +05:00:00 [ 11] [ 6] [154475] +05:00:00 [ 39] [ 2] [00] +05:00:00 [ 70] [ 3] [301] +05:00:00 ============================================================================ +05:00:00 Calculate Source COMM Id = 2 +05:00:00 ============================================================================ +05:00:00 + + +waiting on router queue for slot.... +05:00:04 ============================================================================ +05:00:04 Slot Id : <0> +05:00:04 Transaction Type : REQUEST +05:00:04 Received From : +05:00:04 ============================================================================ +05:00:04 FNo. Len. Field Value +05:00:04 ============================================================================ +05:00:04 [ 1] [ 4] [0800] +05:00:04 [ 7] [ 10] [0320121152] +05:00:04 [ 11] [ 6] [051152] +05:00:04 [ 37] [ 12] [57905051152] +05:00:04 [ 70] [ 3] [301] +05:00:04 ============================================================================ +05:00:04 + + +waiting on router queue for slot.... +05:00:04 Sending to : +05:00:04 ============================================================================ +05:00:04 ============================================================================ +05:00:04 Slot Id : <0> +05:00:04 Transaction Type : RESPONSE +05:00:04 Received From : +05:00:04 ============================================================================ +05:00:04 FNo. Len. Field Value +05:00:04 ============================================================================ +05:00:04 [ 1] [ 4] [0810] +05:00:04 [ 7] [ 10] [0320121152] +05:00:04 [ 11] [ 6] [051152] +05:00:04 [ 37] [ 12] [579050511520] +05:00:04 [ 39] [ 2] [00] +05:00:04 [ 70] [ 3] [810] +05:00:04 ============================================================================ +05:00:04 Calculate Source COMM Id = 6 +05:00:04 ============================================================================ +05:00:04 + + +waiting on router queue for slot.... +05:00:10 ============================================================================ +05:00:10 Slot Id : <2> +05:00:10 Transaction Type : REQUEST +05:00:10 Received From : +05:00:10 ============================================================================ +05:00:10 FNo. Len. Field Value +05:00:10 ============================================================================ +05:00:10 [ 1] [ 4] [0800] +05:00:10 [ 7] [ 10] [0319095917] +05:00:10 [ 11] [ 6] [154476] +05:00:10 [ 70] [ 3] [301] +05:00:10 ============================================================================ +05:00:10 + + +waiting on router queue for slot.... +05:00:10 Sending to : +05:00:10 ============================================================================ +05:00:10 ============================================================================ +05:00:10 Slot Id : <2> +05:00:10 Transaction Type : RESPONSE +05:00:10 Received From : +05:00:10 ============================================================================ +05:00:10 FNo. Len. Field Value +05:00:10 ============================================================================ +05:00:10 [ 1] [ 4] [0810] +05:00:10 [ 7] [ 10] [0319095917] +05:00:10 [ 11] [ 6] [154476] +05:00:10 [ 39] [ 2] [00] +05:00:10 [ 70] [ 3] [301] +05:00:10 ============================================================================ +05:00:10 Calculate Source COMM Id = 2 +05:00:10 ============================================================================ +05:00:10 + + +waiting on router queue for slot.... +05:00:16 ============================================================================ +05:00:16 Slot Id : <493> +05:00:16 Transaction Type : REQUEST +05:00:16 Received From : +05:00:16 ============================================================================ +05:00:16 FNo. Len. Field Value +05:00:16 ============================================================================ +05:00:16 [ 1] [ 4] [0800] +05:00:16 [ 2] [ 5] [02531] +05:00:16 [ 3] [ 6] [579058] +05:00:16 [ 7] [ 10] [0319220016] +05:00:16 [ 11] [ 6] [806702] +05:00:16 [ 15] [ 10] [0319220016] +05:00:16 [ 37] [ 11] [57905806702] +05:00:16 [ 70] [ 3] [001] +05:00:16 ============================================================================ +05:00:16 + + +waiting on router queue for slot.... +05:00:16 ============================================================================ +05:00:16 Slot Id : <493> +05:00:16 Transaction Type : RESPONSE +05:00:16 Received From : +05:00:16 ============================================================================ +05:00:16 FNo. Len. Field Value +05:00:16 ============================================================================ +05:00:16 [ 1] [ 4] [0810] +05:00:16 [ 7] [ 10] [0319220016] +05:00:16 [ 11] [ 6] [806702] +05:00:16 [ 15] [ 4] [0319] +05:00:16 [ 37] [ 12] [57905806702] +05:00:16 [ 39] [ 2] [00] +05:00:16 [ 70] [ 3] [001] +05:00:16 ============================================================================ +05:00:16 Sending to : +05:00:16 ============================================================================ +05:00:16 + + +waiting on router queue for slot.... +05:00:22 ============================================================================ +05:00:22 Slot Id : <473> +05:00:22 Transaction Type : REQUEST +05:00:22 Received From : +05:00:22 ============================================================================ +05:00:22 FNo. Len. Field Value +05:00:22 ============================================================================ +05:00:22 [ 1] [ 4] [0800] +05:00:22 [ 7] [ 10] [0319095928] +05:00:22 [ 11] [ 6] [154477] +05:00:22 [ 70] [ 3] [301] +05:00:22 ============================================================================ +05:00:22 + + +waiting on router queue for slot.... +05:00:22 Sending to : +05:00:22 ============================================================================ +05:00:22 ============================================================================ +05:00:22 Slot Id : <473> +05:00:22 Transaction Type : RESPONSE +05:00:22 Received From : +05:00:22 ============================================================================ +05:00:22 FNo. Len. Field Value +05:00:22 ============================================================================ +05:00:22 [ 1] [ 4] [0810] +05:00:22 [ 7] [ 10] [0319095928] +05:00:22 [ 11] [ 6] [154477] +05:00:22 [ 39] [ 2] [00] +05:00:22 [ 70] [ 3] [301] +05:00:22 ============================================================================ +05:00:22 Calculate Source COMM Id = 2 +05:00:22 ============================================================================ +05:00:22 + + +waiting on router queue for slot.... +05:00:33 ============================================================================ +05:00:33 Slot Id : <1> +05:00:33 Transaction Type : REQUEST +05:00:33 Received From : +05:00:33 ============================================================================ +05:00:33 FNo. Len. Field Value +05:00:33 ============================================================================ +05:00:33 [ 1] [ 4] [0800] +05:00:33 [ 7] [ 10] [0319095940] +05:00:33 [ 11] [ 6] [154478] +05:00:33 [ 70] [ 3] [301] +05:00:33 ============================================================================ +05:00:33 + + +waiting on router queue for slot.... +05:00:33 Sending to : +05:00:33 ============================================================================ +05:00:33 ============================================================================ +05:00:33 Slot Id : <1> +05:00:33 Transaction Type : RESPONSE +05:00:33 Received From : +05:00:33 ============================================================================ +05:00:33 FNo. Len. Field Value +05:00:33 ============================================================================ +05:00:33 [ 1] [ 4] [0810] +05:00:33 [ 7] [ 10] [0319095940] +05:00:33 [ 11] [ 6] [154478] +05:00:33 [ 39] [ 2] [00] +05:00:33 [ 70] [ 3] [301] +05:00:33 ============================================================================ +05:00:33 Calculate Source COMM Id = 2 +05:00:33 ============================================================================ +05:00:33 + + +waiting on router queue for slot.... +05:00:44 ============================================================================ +05:00:44 Slot Id : <4> +05:00:44 Transaction Type : REQUEST +05:00:44 Received From : +05:00:44 ============================================================================ +05:00:44 FNo. Len. Field Value +05:00:44 ============================================================================ +05:00:44 [ 1] [ 4] [0800] +05:00:44 [ 7] [ 10] [0319095951] +05:00:44 [ 11] [ 6] [154479] +05:00:44 [ 70] [ 3] [301] +05:00:44 ============================================================================ +05:00:44 + + +waiting on router queue for slot.... +05:00:44 Sending to : +05:00:44 ============================================================================ +05:00:44 ============================================================================ +05:00:44 Slot Id : <4> +05:00:44 Transaction Type : RESPONSE +05:00:44 Received From : +05:00:44 ============================================================================ +05:00:44 FNo. Len. Field Value +05:00:44 ============================================================================ +05:00:44 [ 1] [ 4] [0810] +05:00:44 [ 7] [ 10] [0319095951] +05:00:44 [ 11] [ 6] [154479] +05:00:44 [ 39] [ 2] [00] +05:00:44 [ 70] [ 3] [301] +05:00:44 ============================================================================ +05:00:44 Calculate Source COMM Id = 2 +05:00:44 ============================================================================ +05:00:44 + + +waiting on router queue for slot.... +05:00:54 ============================================================================ +05:00:54 Slot Id : <474> +05:00:54 Transaction Type : REQUEST +05:00:54 Received From : +05:00:54 ============================================================================ +05:00:54 FNo. Len. Field Value +05:00:54 ============================================================================ +05:00:54 [ 1] [ 4] [0800] +05:00:54 [ 7] [ 10] [0319100001] +05:00:54 [ 11] [ 6] [154480] +05:00:54 [ 70] [ 3] [301] +05:00:54 ============================================================================ +05:00:54 + + +waiting on router queue for slot.... +05:00:54 Sending to : +05:00:54 ============================================================================ +05:00:54 ============================================================================ +05:00:54 Slot Id : <474> +05:00:54 Transaction Type : RESPONSE +05:00:54 Received From : +05:00:54 ============================================================================ +05:00:54 FNo. Len. Field Value +05:00:54 ============================================================================ +05:00:54 [ 1] [ 4] [0810] +05:00:54 [ 7] [ 10] [0319100001] +05:00:54 [ 11] [ 6] [154480] +05:00:54 [ 39] [ 2] [00] +05:00:54 [ 70] [ 3] [301] +05:00:54 ============================================================================ +05:00:54 Calculate Source COMM Id = 2 +05:00:54 ============================================================================ +05:00:54 + + +waiting on router queue for slot.... +05:01:09 ============================================================================ +05:01:09 Slot Id : <483> +05:01:09 Transaction Type : REQUEST +05:01:09 Received From : +05:01:09 ============================================================================ +05:01:09 FNo. Len. Field Value +05:01:09 ============================================================================ +05:01:09 [ 1] [ 4] [0800] +05:01:09 [ 7] [ 10] [0320121257] +05:01:09 [ 11] [ 6] [051257] +05:01:09 [ 37] [ 12] [57905051257] +05:01:09 [ 70] [ 3] [301] +05:01:09 ============================================================================ +05:01:09 + + +waiting on router queue for slot.... +05:01:09 Sending to : +05:01:09 ============================================================================ +05:01:09 ============================================================================ +05:01:09 Slot Id : <483> +05:01:09 Transaction Type : RESPONSE +05:01:09 Received From : +05:01:09 ============================================================================ +05:01:09 FNo. Len. Field Value +05:01:09 ============================================================================ +05:01:09 [ 1] [ 4] [0810] +05:01:09 [ 7] [ 10] [0320121257] +05:01:09 [ 11] [ 6] [051257] +05:01:09 [ 37] [ 12] [579050512570] +05:01:09 [ 39] [ 2] [00] +05:01:09 [ 70] [ 3] [810] +05:01:09 ============================================================================ +05:01:09 Calculate Source COMM Id = 6 +05:01:09 ============================================================================ +05:01:09 + + +waiting on router queue for slot.... +05:01:09 ============================================================================ +05:01:09 Slot Id : <476> +05:01:09 Transaction Type : REQUEST +05:01:09 Received From : +05:01:09 ============================================================================ +05:01:09 FNo. Len. Field Value +05:01:09 ============================================================================ +05:01:09 [ 1] [ 4] [0800] +05:01:09 [ 7] [ 10] [0319100016] +05:01:09 [ 11] [ 6] [154481] +05:01:09 [ 70] [ 3] [301] +05:01:09 ============================================================================ +05:01:09 + + +waiting on router queue for slot.... +05:01:09 Sending to : +05:01:09 ============================================================================ +05:01:09 ============================================================================ +05:01:09 Slot Id : <476> +05:01:09 Transaction Type : RESPONSE +05:01:09 Received From : +05:01:09 ============================================================================ +05:01:09 FNo. Len. Field Value +05:01:09 ============================================================================ +05:01:09 [ 1] [ 4] [0810] +05:01:09 [ 7] [ 10] [0319100016] +05:01:09 [ 11] [ 6] [154481] +05:01:09 [ 39] [ 2] [00] +05:01:09 [ 70] [ 3] [301] +05:01:09 ============================================================================ +05:01:09 Calculate Source COMM Id = 2 +05:01:09 ============================================================================ +05:01:09 + + +waiting on router queue for slot.... +05:01:18 ============================================================================ +05:01:18 Slot Id : <489> +05:01:18 Transaction Type : REQUEST +05:01:18 Received From : +05:01:18 ============================================================================ +05:01:18 FNo. Len. Field Value +05:01:18 ============================================================================ +05:01:18 [ 1] [ 4] [0800] +05:01:18 [ 2] [ 5] [02531] +05:01:18 [ 3] [ 6] [579058] +05:01:18 [ 7] [ 10] [0319220118] +05:01:18 [ 11] [ 6] [806703] +05:01:18 [ 15] [ 10] [0319220118] +05:01:18 [ 37] [ 11] [57905806703] +05:01:18 [ 70] [ 3] [001] +05:01:18 ============================================================================ +05:01:18 + + +waiting on router queue for slot.... +05:01:18 ============================================================================ +05:01:18 Slot Id : <489> +05:01:18 Transaction Type : RESPONSE +05:01:18 Received From : +05:01:18 ============================================================================ +05:01:18 FNo. Len. Field Value +05:01:18 ============================================================================ +05:01:18 [ 1] [ 4] [0810] +05:01:18 [ 7] [ 10] [0319220118] +05:01:18 [ 11] [ 6] [806703] +05:01:18 [ 15] [ 4] [0319] +05:01:18 [ 37] [ 12] [57905806703] +05:01:18 [ 39] [ 2] [00] +05:01:18 [ 70] [ 3] [001] +05:01:18 ============================================================================ +05:01:18 Sending to : +05:01:18 ============================================================================ +05:01:18 + + +waiting on router queue for slot.... +05:01:20 ============================================================================ +05:01:20 Slot Id : <477> +05:01:20 Transaction Type : REQUEST +05:01:20 Received From : +05:01:20 ============================================================================ +05:01:20 FNo. Len. Field Value +05:01:20 ============================================================================ +05:01:20 [ 1] [ 4] [0800] +05:01:20 [ 7] [ 10] [0319100027] +05:01:20 [ 11] [ 6] [154482] +05:01:20 [ 70] [ 3] [301] +05:01:20 ============================================================================ +05:01:20 + + +waiting on router queue for slot.... +05:01:20 Sending to : +05:01:20 ============================================================================ +05:01:20 ============================================================================ +05:01:20 Slot Id : <477> +05:01:20 Transaction Type : RESPONSE +05:01:20 Received From : +05:01:20 ============================================================================ +05:01:20 FNo. Len. Field Value +05:01:20 ============================================================================ +05:01:20 [ 1] [ 4] [0810] +05:01:20 [ 7] [ 10] [0319100027] +05:01:20 [ 11] [ 6] [154482] +05:01:20 [ 39] [ 2] [00] +05:01:20 [ 70] [ 3] [301] +05:01:20 ============================================================================ +05:01:20 Calculate Source COMM Id = 2 +05:01:20 ============================================================================ +05:01:20 + + +waiting on router queue for slot.... +05:01:22 ============================================================================ +05:01:22 Slot Id : <472> +05:01:22 Transaction Type : REQUEST +05:01:22 Received From : +05:01:22 ============================================================================ +05:01:22 FNo. Len. Field Value +05:01:22 ============================================================================ +05:01:22 [ 1] [ 4] [0800] +05:01:22 [ 7] [ 10] [0319215912] +05:01:22 [ 11] [ 6] [023458] +05:01:22 [ 37] [ 12] [57904023458] +05:01:22 [ 70] [ 3] [301] +05:01:22 ============================================================================ +05:01:22 + + +waiting on router queue for slot.... +05:01:22 Sending to : +05:01:22 ============================================================================ +05:01:22 ============================================================================ +05:01:22 Slot Id : <472> +05:01:22 Transaction Type : RESPONSE +05:01:22 Received From : +05:01:22 ============================================================================ +05:01:22 FNo. Len. Field Value +05:01:22 ============================================================================ +05:01:22 [ 1] [ 4] [0810] +05:01:22 [ 7] [ 10] [0319215912] +05:01:22 [ 11] [ 6] [023458] +05:01:22 [ 37] [ 12] [579040234580] +05:01:22 [ 39] [ 2] [00] +05:01:22 [ 70] [ 3] [810] +05:01:22 ============================================================================ +05:01:22 Calculate Source COMM Id = 4 +05:01:22 ============================================================================ +05:01:22 + + +waiting on router queue for slot.... +05:01:32 ============================================================================ +05:01:32 Slot Id : <486> +05:01:32 Transaction Type : REQUEST +05:01:32 Received From : +05:01:32 ============================================================================ +05:01:32 FNo. Len. Field Value +05:01:32 ============================================================================ +05:01:32 [ 1] [ 4] [0800] +05:01:32 [ 7] [ 10] [0319100039] +05:01:32 [ 11] [ 6] [154483] +05:01:32 [ 70] [ 3] [301] +05:01:32 ============================================================================ +05:01:32 + + +waiting on router queue for slot.... +05:01:32 Sending to : +05:01:32 ============================================================================ +05:01:32 ============================================================================ +05:01:32 Slot Id : <486> +05:01:32 Transaction Type : RESPONSE +05:01:32 Received From : +05:01:32 ============================================================================ +05:01:32 FNo. Len. Field Value +05:01:32 ============================================================================ +05:01:32 [ 1] [ 4] [0810] +05:01:32 [ 7] [ 10] [0319100039] +05:01:32 [ 11] [ 6] [154483] +05:01:32 [ 39] [ 2] [00] +05:01:32 [ 70] [ 3] [301] +05:01:32 ============================================================================ +05:01:32 Calculate Source COMM Id = 2 +05:01:32 ============================================================================ +05:01:32 + + +waiting on router queue for slot.... +05:01:42 ============================================================================ +05:01:42 Slot Id : <492> +05:01:42 Transaction Type : REQUEST +05:01:42 Received From : +05:01:42 ============================================================================ +05:01:42 FNo. Len. Field Value +05:01:42 ============================================================================ +05:01:42 [ 1] [ 4] [0800] +05:01:42 [ 7] [ 10] [0319100049] +05:01:42 [ 11] [ 6] [154484] +05:01:42 [ 70] [ 3] [301] +05:01:42 ============================================================================ +05:01:42 + + +waiting on router queue for slot.... +05:01:42 Sending to : +05:01:42 ============================================================================ +05:01:42 ============================================================================ +05:01:42 Slot Id : <492> +05:01:42 Transaction Type : RESPONSE +05:01:42 Received From : +05:01:42 ============================================================================ +05:01:42 FNo. Len. Field Value +05:01:42 ============================================================================ +05:01:42 [ 1] [ 4] [0810] +05:01:42 [ 7] [ 10] [0319100049] +05:01:42 [ 11] [ 6] [154484] +05:01:42 [ 39] [ 2] [00] +05:01:42 [ 70] [ 3] [301] +05:01:42 ============================================================================ +05:01:42 Calculate Source COMM Id = 2 +05:01:42 ============================================================================ +05:01:42 + + +waiting on router queue for slot.... +05:01:58 ============================================================================ +05:01:58 Slot Id : <6> +05:01:58 Transaction Type : REQUEST +05:01:58 Received From : +05:01:58 ============================================================================ +05:01:58 FNo. Len. Field Value +05:01:58 ============================================================================ +05:01:58 [ 1] [ 4] [0800] +05:01:58 [ 7] [ 10] [0319100105] +05:01:58 [ 11] [ 6] [154485] +05:01:58 [ 70] [ 3] [301] +05:01:58 ============================================================================ +05:01:58 + + +waiting on router queue for slot.... +05:01:58 Sending to : +05:01:58 ============================================================================ +05:01:58 ============================================================================ +05:01:58 Slot Id : <6> +05:01:58 Transaction Type : RESPONSE +05:01:58 Received From : +05:01:58 ============================================================================ +05:01:58 FNo. Len. Field Value +05:01:58 ============================================================================ +05:01:58 [ 1] [ 4] [0810] +05:01:58 [ 7] [ 10] [0319100105] +05:01:58 [ 11] [ 6] [154485] +05:01:58 [ 39] [ 2] [00] +05:01:58 [ 70] [ 3] [301] +05:01:58 ============================================================================ +05:01:58 Calculate Source COMM Id = 2 +05:01:58 ============================================================================ +05:01:58 + + +waiting on router queue for slot.... +05:02:10 ============================================================================ +05:02:10 Slot Id : <485> +05:02:10 Transaction Type : REQUEST +05:02:10 Received From : +05:02:10 ============================================================================ +05:02:10 FNo. Len. Field Value +05:02:10 ============================================================================ +05:02:10 [ 1] [ 4] [0800] +05:02:10 [ 7] [ 10] [0319100116] +05:02:10 [ 11] [ 6] [154486] +05:02:10 [ 70] [ 3] [301] +05:02:10 ============================================================================ +05:02:10 + + +waiting on router queue for slot.... +05:02:10 Sending to : +05:02:10 ============================================================================ +05:02:10 ============================================================================ +05:02:10 Slot Id : <485> +05:02:10 Transaction Type : RESPONSE +05:02:10 Received From : +05:02:10 ============================================================================ +05:02:10 FNo. Len. Field Value +05:02:10 ============================================================================ +05:02:10 [ 1] [ 4] [0810] +05:02:10 [ 7] [ 10] [0319100116] +05:02:10 [ 11] [ 6] [154486] +05:02:10 [ 39] [ 2] [00] +05:02:10 [ 70] [ 3] [301] +05:02:10 ============================================================================ +05:02:10 Calculate Source COMM Id = 2 +05:02:10 ============================================================================ +05:02:10 + + +waiting on router queue for slot.... +05:02:14 ============================================================================ +05:02:14 Slot Id : <454> +05:02:14 Transaction Type : REQUEST +05:02:14 Received From : +05:02:14 ============================================================================ +05:02:14 FNo. Len. Field Value +05:02:14 ============================================================================ +05:02:14 [ 1] [ 4] [0800] +05:02:14 [ 7] [ 10] [0320121402] +05:02:14 [ 11] [ 6] [051402] +05:02:14 [ 37] [ 12] [57905051402] +05:02:14 [ 70] [ 3] [301] +05:02:14 ============================================================================ +05:02:14 + + +waiting on router queue for slot.... +05:02:14 Sending to : +05:02:14 ============================================================================ +05:02:14 ============================================================================ +05:02:14 Slot Id : <454> +05:02:14 Transaction Type : RESPONSE +05:02:14 Received From : +05:02:14 ============================================================================ +05:02:14 FNo. Len. Field Value +05:02:14 ============================================================================ +05:02:14 [ 1] [ 4] [0810] +05:02:14 [ 7] [ 10] [0320121402] +05:02:14 [ 11] [ 6] [051402] +05:02:14 [ 37] [ 12] [579050514020] +05:02:14 [ 39] [ 2] [00] +05:02:14 [ 70] [ 3] [810] +05:02:14 ============================================================================ +05:02:14 Calculate Source COMM Id = 6 +05:02:14 ============================================================================ +05:02:14 + + +waiting on router queue for slot.... +05:02:20 ============================================================================ +05:02:20 Slot Id : <13> +05:02:20 Transaction Type : REQUEST +05:02:20 Received From : +05:02:20 ============================================================================ +05:02:20 FNo. Len. Field Value +05:02:20 ============================================================================ +05:02:20 [ 1] [ 4] [0800] +05:02:20 [ 2] [ 5] [02531] +05:02:20 [ 3] [ 6] [579058] +05:02:20 [ 7] [ 10] [0319220220] +05:02:20 [ 11] [ 6] [806704] +05:02:20 [ 15] [ 10] [0319220220] +05:02:20 [ 37] [ 11] [57905806704] +05:02:20 [ 70] [ 3] [001] +05:02:20 ============================================================================ +05:02:20 + + +waiting on router queue for slot.... +05:02:20 ============================================================================ +05:02:20 Slot Id : <13> +05:02:20 Transaction Type : RESPONSE +05:02:20 Received From : +05:02:20 ============================================================================ +05:02:20 FNo. Len. Field Value +05:02:20 ============================================================================ +05:02:20 [ 1] [ 4] [0810] +05:02:20 [ 7] [ 10] [0319220220] +05:02:20 [ 11] [ 6] [806704] +05:02:20 [ 15] [ 4] [0319] +05:02:20 [ 37] [ 12] [57905806704] +05:02:20 [ 39] [ 2] [00] +05:02:20 [ 70] [ 3] [001] +05:02:20 ============================================================================ +05:02:20 Sending to : +05:02:20 ============================================================================ +05:02:20 + + +waiting on router queue for slot.... +05:02:20 ============================================================================ +05:02:20 Slot Id : <14> +05:02:20 Transaction Type : REQUEST +05:02:20 Received From : +05:02:20 ============================================================================ +05:02:20 FNo. Len. Field Value +05:02:20 ============================================================================ +05:02:20 [ 1] [ 4] [0800] +05:02:20 [ 7] [ 10] [0319100126] +05:02:20 [ 11] [ 6] [154487] +05:02:20 [ 70] [ 3] [301] +05:02:20 ============================================================================ +05:02:20 + + +waiting on router queue for slot.... +05:02:20 Sending to : +05:02:20 ============================================================================ +05:02:20 ============================================================================ +05:02:20 Slot Id : <14> +05:02:20 Transaction Type : RESPONSE +05:02:20 Received From : +05:02:20 ============================================================================ +05:02:20 FNo. Len. Field Value +05:02:20 ============================================================================ +05:02:20 [ 1] [ 4] [0810] +05:02:20 [ 7] [ 10] [0319100126] +05:02:20 [ 11] [ 6] [154487] +05:02:20 [ 39] [ 2] [00] +05:02:20 [ 70] [ 3] [301] +05:02:20 ============================================================================ +05:02:20 Calculate Source COMM Id = 2 +05:02:20 ============================================================================ +05:02:20 + + +waiting on router queue for slot.... +05:02:35 ============================================================================ +05:02:35 Slot Id : <12> +05:02:35 Transaction Type : REQUEST +05:02:35 Received From : +05:02:35 ============================================================================ +05:02:35 FNo. Len. Field Value +05:02:35 ============================================================================ +05:02:35 [ 1] [ 4] [0800] +05:02:35 [ 7] [ 10] [0319100142] +05:02:35 [ 11] [ 6] [154488] +05:02:35 [ 70] [ 3] [301] +05:02:35 ============================================================================ +05:02:35 + + +waiting on router queue for slot.... +05:02:35 Sending to : +05:02:35 ============================================================================ +05:02:35 ============================================================================ +05:02:35 Slot Id : <12> +05:02:35 Transaction Type : RESPONSE +05:02:35 Received From : +05:02:35 ============================================================================ +05:02:35 FNo. Len. Field Value +05:02:35 ============================================================================ +05:02:35 [ 1] [ 4] [0810] +05:02:35 [ 7] [ 10] [0319100142] +05:02:35 [ 11] [ 6] [154488] +05:02:35 [ 39] [ 2] [00] +05:02:35 [ 70] [ 3] [301] +05:02:35 ============================================================================ +05:02:35 Calculate Source COMM Id = 2 +05:02:35 ============================================================================ +05:02:35 + + +waiting on router queue for slot.... +05:02:46 ============================================================================ +05:02:46 Slot Id : <16> +05:02:46 Transaction Type : REQUEST +05:02:46 Received From : +05:02:46 ============================================================================ +05:02:46 FNo. Len. Field Value +05:02:46 ============================================================================ +05:02:46 [ 1] [ 4] [0800] +05:02:46 [ 7] [ 10] [0319100153] +05:02:46 [ 11] [ 6] [154489] +05:02:46 [ 70] [ 3] [301] +05:02:46 ============================================================================ +05:02:46 + + +waiting on router queue for slot.... +05:02:46 Sending to : +05:02:46 ============================================================================ +05:02:46 ============================================================================ +05:02:46 Slot Id : <16> +05:02:46 Transaction Type : RESPONSE +05:02:46 Received From : +05:02:46 ============================================================================ +05:02:46 FNo. Len. Field Value +05:02:46 ============================================================================ +05:02:46 [ 1] [ 4] [0810] +05:02:46 [ 7] [ 10] [0319100153] +05:02:46 [ 11] [ 6] [154489] +05:02:46 [ 39] [ 2] [00] +05:02:46 [ 70] [ 3] [301] +05:02:46 ============================================================================ +05:02:46 Calculate Source COMM Id = 2 +05:02:46 ============================================================================ +05:02:46 + + +waiting on router queue for slot.... +05:02:57 ============================================================================ +05:02:57 Slot Id : <494> +05:02:57 Transaction Type : REQUEST +05:02:57 Received From : +05:02:57 ============================================================================ +05:02:57 FNo. Len. Field Value +05:02:57 ============================================================================ +05:02:57 [ 1] [ 4] [0800] +05:02:57 [ 7] [ 10] [0319100204] +05:02:57 [ 11] [ 6] [154490] +05:02:57 [ 70] [ 3] [301] +05:02:57 ============================================================================ +05:02:57 + + +waiting on router queue for slot.... +05:02:57 Sending to : +05:02:57 ============================================================================ +05:02:57 ============================================================================ +05:02:57 Slot Id : <494> +05:02:57 Transaction Type : RESPONSE +05:02:57 Received From : +05:02:57 ============================================================================ +05:02:57 FNo. Len. Field Value +05:02:57 ============================================================================ +05:02:57 [ 1] [ 4] [0810] +05:02:57 [ 7] [ 10] [0319100204] +05:02:57 [ 11] [ 6] [154490] +05:02:57 [ 39] [ 2] [00] +05:02:57 [ 70] [ 3] [301] +05:02:57 ============================================================================ +05:02:57 Calculate Source COMM Id = 2 +05:02:57 ============================================================================ +05:02:57 + + +waiting on router queue for slot.... +05:03:13 ============================================================================ +05:03:13 Slot Id : <469> +05:03:13 Transaction Type : REQUEST +05:03:13 Received From : +05:03:13 ============================================================================ +05:03:13 FNo. Len. Field Value +05:03:13 ============================================================================ +05:03:13 [ 1] [ 4] [0800] +05:03:13 [ 7] [ 10] [0319100220] +05:03:13 [ 11] [ 6] [154491] +05:03:13 [ 70] [ 3] [301] +05:03:13 ============================================================================ +05:03:13 + + +waiting on router queue for slot.... +05:03:13 Sending to : +05:03:13 ============================================================================ +05:03:13 ============================================================================ +05:03:13 Slot Id : <469> +05:03:13 Transaction Type : RESPONSE +05:03:13 Received From : +05:03:13 ============================================================================ +05:03:13 FNo. Len. Field Value +05:03:13 ============================================================================ +05:03:13 [ 1] [ 4] [0810] +05:03:13 [ 7] [ 10] [0319100220] +05:03:13 [ 11] [ 6] [154491] +05:03:13 [ 39] [ 2] [00] +05:03:13 [ 70] [ 3] [301] +05:03:13 ============================================================================ +05:03:13 Calculate Source COMM Id = 2 +05:03:13 ============================================================================ +05:03:13 + + +waiting on router queue for slot.... +05:03:19 ============================================================================ +05:03:19 Slot Id : <22> +05:03:19 Transaction Type : REQUEST +05:03:19 Received From : +05:03:19 ============================================================================ +05:03:19 FNo. Len. Field Value +05:03:19 ============================================================================ +05:03:19 [ 1] [ 4] [0800] +05:03:19 [ 7] [ 10] [0320121507] +05:03:19 [ 11] [ 6] [051507] +05:03:19 [ 37] [ 12] [57905051507] +05:03:19 [ 70] [ 3] [301] +05:03:19 ============================================================================ +05:03:19 + + +waiting on router queue for slot.... +05:03:19 Sending to : +05:03:19 ============================================================================ +05:03:19 ============================================================================ +05:03:19 Slot Id : <22> +05:03:19 Transaction Type : RESPONSE +05:03:19 Received From : +05:03:19 ============================================================================ +05:03:19 FNo. Len. Field Value +05:03:19 ============================================================================ +05:03:19 [ 1] [ 4] [0810] +05:03:19 [ 7] [ 10] [0320121507] +05:03:19 [ 11] [ 6] [051507] +05:03:19 [ 37] [ 12] [579050515070] +05:03:19 [ 39] [ 2] [00] +05:03:19 [ 70] [ 3] [810] +05:03:19 ============================================================================ +05:03:19 Calculate Source COMM Id = 6 +05:03:19 ============================================================================ +05:03:19 + + +waiting on router queue for slot.... +05:03:22 ============================================================================ +05:03:22 Slot Id : <491> +05:03:22 Transaction Type : REQUEST +05:03:22 Received From : +05:03:22 ============================================================================ +05:03:22 FNo. Len. Field Value +05:03:22 ============================================================================ +05:03:22 [ 1] [ 4] [0800] +05:03:22 [ 2] [ 5] [02531] +05:03:22 [ 3] [ 6] [579058] +05:03:22 [ 7] [ 10] [0319220322] +05:03:22 [ 11] [ 6] [806705] +05:03:22 [ 15] [ 10] [0319220322] +05:03:22 [ 37] [ 11] [57905806705] +05:03:22 [ 70] [ 3] [001] +05:03:22 ============================================================================ +05:03:22 + + +waiting on router queue for slot.... +05:03:22 ============================================================================ +05:03:22 Slot Id : <491> +05:03:22 Transaction Type : RESPONSE +05:03:22 Received From : +05:03:22 ============================================================================ +05:03:22 FNo. Len. Field Value +05:03:22 ============================================================================ +05:03:22 [ 1] [ 4] [0810] +05:03:22 [ 7] [ 10] [0319220322] +05:03:22 [ 11] [ 6] [806705] +05:03:22 [ 15] [ 4] [0319] +05:03:22 [ 37] [ 12] [57905806705] +05:03:22 [ 39] [ 2] [00] +05:03:22 [ 70] [ 3] [001] +05:03:22 ============================================================================ +05:03:22 Sending to : +05:03:22 ============================================================================ +05:03:22 + + +waiting on router queue for slot.... +05:03:28 ============================================================================ +05:03:28 Slot Id : <17> +05:03:28 Transaction Type : REQUEST +05:03:28 Received From : +05:03:28 ============================================================================ +05:03:28 FNo. Len. Field Value +05:03:28 ============================================================================ +05:03:28 [ 1] [ 4] [0800] +05:03:28 [ 7] [ 10] [0319100235] +05:03:28 [ 11] [ 6] [154492] +05:03:28 [ 70] [ 3] [301] +05:03:28 ============================================================================ +05:03:28 + + +waiting on router queue for slot.... +05:03:28 Sending to : +05:03:28 ============================================================================ +05:03:28 ============================================================================ +05:03:28 Slot Id : <17> +05:03:28 Transaction Type : RESPONSE +05:03:28 Received From : +05:03:28 ============================================================================ +05:03:28 FNo. Len. Field Value +05:03:28 ============================================================================ +05:03:28 [ 1] [ 4] [0810] +05:03:28 [ 7] [ 10] [0319100235] +05:03:28 [ 11] [ 6] [154492] +05:03:28 [ 39] [ 2] [00] +05:03:28 [ 70] [ 3] [301] +05:03:28 ============================================================================ +05:03:28 Calculate Source COMM Id = 2 +05:03:28 ============================================================================ +05:03:28 + + +waiting on router queue for slot.... +05:03:39 ============================================================================ +05:03:39 Slot Id : <499> +05:03:39 Transaction Type : REQUEST +05:03:39 Received From : +05:03:39 ============================================================================ +05:03:39 FNo. Len. Field Value +05:03:39 ============================================================================ +05:03:39 [ 1] [ 4] [0800] +05:03:39 [ 7] [ 10] [0319100246] +05:03:39 [ 11] [ 6] [154493] +05:03:39 [ 70] [ 3] [301] +05:03:39 ============================================================================ +05:03:39 + + +waiting on router queue for slot.... +05:03:39 Sending to : +05:03:39 ============================================================================ +05:03:39 ============================================================================ +05:03:39 Slot Id : <499> +05:03:39 Transaction Type : RESPONSE +05:03:39 Received From : +05:03:39 ============================================================================ +05:03:39 FNo. Len. Field Value +05:03:39 ============================================================================ +05:03:39 [ 1] [ 4] [0810] +05:03:39 [ 7] [ 10] [0319100246] +05:03:39 [ 11] [ 6] [154493] +05:03:39 [ 39] [ 2] [00] +05:03:39 [ 70] [ 3] [301] +05:03:39 ============================================================================ +05:03:39 Calculate Source COMM Id = 2 +05:03:39 ============================================================================ +05:03:39 + + +waiting on router queue for slot.... +05:03:54 ============================================================================ +05:03:54 Slot Id : <10> +05:03:54 Transaction Type : REQUEST +05:03:54 Received From : +05:03:54 ============================================================================ +05:03:54 FNo. Len. Field Value +05:03:54 ============================================================================ +05:03:54 [ 1] [ 4] [0800] +05:03:54 [ 7] [ 10] [0319100301] +05:03:54 [ 11] [ 6] [154494] +05:03:54 [ 70] [ 3] [301] +05:03:54 ============================================================================ +05:03:54 + + +waiting on router queue for slot.... +05:03:54 Sending to : +05:03:54 ============================================================================ +05:03:54 ============================================================================ +05:03:54 Slot Id : <10> +05:03:54 Transaction Type : RESPONSE +05:03:54 Received From : +05:03:54 ============================================================================ +05:03:54 FNo. Len. Field Value +05:03:54 ============================================================================ +05:03:54 [ 1] [ 4] [0810] +05:03:54 [ 7] [ 10] [0319100301] +05:03:54 [ 11] [ 6] [154494] +05:03:54 [ 39] [ 2] [00] +05:03:54 [ 70] [ 3] [301] +05:03:54 ============================================================================ +05:03:54 Calculate Source COMM Id = 2 +05:03:54 ============================================================================ +05:03:54 + + +waiting on router queue for slot.... +05:04:07 ============================================================================ +05:04:07 Slot Id : <31> +05:04:07 Transaction Type : REQUEST +05:04:07 Received From : +05:04:07 ============================================================================ +05:04:07 FNo. Len. Field Value +05:04:07 ============================================================================ +05:04:07 [ 1] [ 4] [0800] +05:04:07 [ 7] [ 10] [0319100312] +05:04:07 [ 11] [ 6] [154495] +05:04:07 [ 70] [ 3] [301] +05:04:07 ============================================================================ +05:04:07 + + +waiting on router queue for slot.... +05:04:07 Sending to : +05:04:07 ============================================================================ +05:04:07 ============================================================================ +05:04:07 Slot Id : <31> +05:04:07 Transaction Type : RESPONSE +05:04:07 Received From : +05:04:07 ============================================================================ +05:04:07 FNo. Len. Field Value +05:04:07 ============================================================================ +05:04:07 [ 1] [ 4] [0810] +05:04:07 [ 7] [ 10] [0319100312] +05:04:07 [ 11] [ 6] [154495] +05:04:07 [ 39] [ 2] [00] +05:04:07 [ 70] [ 3] [301] +05:04:07 ============================================================================ +05:04:07 Calculate Source COMM Id = 2 +05:04:07 ============================================================================ +05:04:07 + + +waiting on router queue for slot.... +05:04:21 ============================================================================ +05:04:21 Slot Id : <23> +05:04:21 Transaction Type : REQUEST +05:04:21 Received From : +05:04:21 ============================================================================ +05:04:21 FNo. Len. Field Value +05:04:21 ============================================================================ +05:04:21 [ 1] [ 4] [0800] +05:04:21 [ 7] [ 10] [0319100328] +05:04:21 [ 11] [ 6] [154496] +05:04:21 [ 70] [ 3] [301] +05:04:21 ============================================================================ +05:04:21 + + +waiting on router queue for slot.... +05:04:21 Sending to : +05:04:21 ============================================================================ +05:04:21 ============================================================================ +05:04:21 Slot Id : <23> +05:04:21 Transaction Type : RESPONSE +05:04:21 Received From : +05:04:21 ============================================================================ +05:04:21 FNo. Len. Field Value +05:04:21 ============================================================================ +05:04:21 [ 1] [ 4] [0810] +05:04:21 [ 7] [ 10] [0319100328] +05:04:21 [ 11] [ 6] [154496] +05:04:21 [ 39] [ 2] [00] +05:04:21 [ 70] [ 3] [301] +05:04:21 ============================================================================ +05:04:21 Calculate Source COMM Id = 2 +05:04:21 ============================================================================ +05:04:21 + + +waiting on router queue for slot.... +05:04:24 ============================================================================ +05:04:24 Slot Id : <3> +05:04:24 Transaction Type : REQUEST +05:04:24 Received From : +05:04:24 ============================================================================ +05:04:24 FNo. Len. Field Value +05:04:24 ============================================================================ +05:04:24 [ 1] [ 4] [0800] +05:04:24 [ 2] [ 5] [02531] +05:04:24 [ 3] [ 6] [579058] +05:04:24 [ 7] [ 10] [0319220424] +05:04:24 [ 11] [ 6] [806706] +05:04:24 [ 15] [ 10] [0319220424] +05:04:24 [ 37] [ 11] [57905806706] +05:04:24 [ 70] [ 3] [001] +05:04:24 ============================================================================ +05:04:24 + + +waiting on router queue for slot.... +05:04:24 ============================================================================ +05:04:24 Slot Id : <3> +05:04:24 Transaction Type : RESPONSE +05:04:24 Received From : +05:04:24 ============================================================================ +05:04:24 FNo. Len. Field Value +05:04:24 ============================================================================ +05:04:24 [ 1] [ 4] [0810] +05:04:24 [ 7] [ 10] [0319220424] +05:04:24 [ 11] [ 6] [806706] +05:04:24 [ 15] [ 4] [0319] +05:04:24 [ 37] [ 12] [57905806706] +05:04:24 [ 39] [ 2] [00] +05:04:24 [ 70] [ 3] [001] +05:04:24 ============================================================================ +05:04:24 Sending to : +05:04:24 ============================================================================ +05:04:24 + + +waiting on router queue for slot.... +05:04:24 ============================================================================ +05:04:24 Slot Id : <481> +05:04:24 Transaction Type : REQUEST +05:04:24 Received From : +05:04:24 ============================================================================ +05:04:24 FNo. Len. Field Value +05:04:24 ============================================================================ +05:04:24 [ 1] [ 4] [0800] +05:04:24 [ 7] [ 10] [0320121612] +05:04:24 [ 11] [ 6] [051612] +05:04:24 [ 37] [ 12] [57905051612] +05:04:24 [ 70] [ 3] [301] +05:04:24 ============================================================================ +05:04:24 + + +waiting on router queue for slot.... +05:04:24 Sending to : +05:04:24 ============================================================================ +05:04:24 ============================================================================ +05:04:24 Slot Id : <481> +05:04:24 Transaction Type : RESPONSE +05:04:24 Received From : +05:04:24 ============================================================================ +05:04:24 FNo. Len. Field Value +05:04:24 ============================================================================ +05:04:24 [ 1] [ 4] [0810] +05:04:24 [ 7] [ 10] [0320121612] +05:04:24 [ 11] [ 6] [051612] +05:04:24 [ 37] [ 12] [579050516120] +05:04:24 [ 39] [ 2] [00] +05:04:24 [ 70] [ 3] [810] +05:04:24 ============================================================================ +05:04:24 Calculate Source COMM Id = 6 +05:04:24 ============================================================================ +05:04:24 + + +waiting on router queue for slot.... +05:04:32 ============================================================================ +05:04:32 Slot Id : <29> +05:04:32 Transaction Type : REQUEST +05:04:32 Received From : +05:04:32 ============================================================================ +05:04:32 FNo. Len. Field Value +05:04:32 ============================================================================ +05:04:32 [ 1] [ 4] [0800] +05:04:32 [ 7] [ 10] [0319100339] +05:04:32 [ 11] [ 6] [154497] +05:04:32 [ 70] [ 3] [301] +05:04:32 ============================================================================ +05:04:32 + + +waiting on router queue for slot.... +05:04:32 Sending to : +05:04:32 ============================================================================ +05:04:32 ============================================================================ +05:04:32 Slot Id : <29> +05:04:32 Transaction Type : RESPONSE +05:04:32 Received From : +05:04:32 ============================================================================ +05:04:32 FNo. Len. Field Value +05:04:32 ============================================================================ +05:04:32 [ 1] [ 4] [0810] +05:04:32 [ 7] [ 10] [0319100339] +05:04:32 [ 11] [ 6] [154497] +05:04:32 [ 39] [ 2] [00] +05:04:32 [ 70] [ 3] [301] +05:04:32 ============================================================================ +05:04:32 Calculate Source COMM Id = 2 +05:04:32 ============================================================================ +05:04:32 + + +waiting on router queue for slot.... +05:04:43 ============================================================================ +05:04:43 Slot Id : <21> +05:04:43 Transaction Type : REQUEST +05:04:43 Received From : +05:04:43 ============================================================================ +05:04:43 FNo. Len. Field Value +05:04:43 ============================================================================ +05:04:43 [ 1] [ 4] [0800] +05:04:43 [ 7] [ 10] [0319100350] +05:04:43 [ 11] [ 6] [154498] +05:04:43 [ 70] [ 3] [301] +05:04:43 ============================================================================ +05:04:43 + + +waiting on router queue for slot.... +05:04:43 Sending to : +05:04:43 ============================================================================ +05:04:43 ============================================================================ +05:04:43 Slot Id : <21> +05:04:43 Transaction Type : RESPONSE +05:04:43 Received From : +05:04:43 ============================================================================ +05:04:43 FNo. Len. Field Value +05:04:43 ============================================================================ +05:04:43 [ 1] [ 4] [0810] +05:04:43 [ 7] [ 10] [0319100350] +05:04:43 [ 11] [ 6] [154498] +05:04:43 [ 39] [ 2] [00] +05:04:43 [ 70] [ 3] [301] +05:04:43 ============================================================================ +05:04:43 Calculate Source COMM Id = 2 +05:04:43 ============================================================================ +05:04:43 + + +waiting on router queue for slot.... +05:04:54 ============================================================================ +05:04:54 Slot Id : <7> +05:04:54 Transaction Type : REQUEST +05:04:54 Received From : +05:04:54 ============================================================================ +05:04:54 FNo. Len. Field Value +05:04:54 ============================================================================ +05:04:54 [ 1] [ 4] [0800] +05:04:54 [ 7] [ 10] [0319100401] +05:04:54 [ 11] [ 6] [154499] +05:04:54 [ 70] [ 3] [301] +05:04:54 ============================================================================ +05:04:54 + + +waiting on router queue for slot.... +05:04:54 Sending to : +05:04:54 ============================================================================ +05:04:54 ============================================================================ +05:04:54 Slot Id : <7> +05:04:54 Transaction Type : RESPONSE +05:04:54 Received From : +05:04:54 ============================================================================ +05:04:54 FNo. Len. Field Value +05:04:54 ============================================================================ +05:04:54 [ 1] [ 4] [0810] +05:04:54 [ 7] [ 10] [0319100401] +05:04:54 [ 11] [ 6] [154499] +05:04:54 [ 39] [ 2] [00] +05:04:54 [ 70] [ 3] [301] +05:04:54 ============================================================================ +05:04:54 Calculate Source COMM Id = 2 +05:04:54 ============================================================================ +05:04:54 + + +waiting on router queue for slot.... +05:04:57 ============================================================================ +05:04:57 Slot Id : <33> +05:04:57 Transaction Type : REQUEST +05:04:57 Received From : +05:04:57 ============================================================================ +05:04:57 FNo. Len. Field Value +05:04:57 ============================================================================ +05:04:57 [ 1] [ 4] [0800] +05:04:57 [ 7] [ 10] [0319221242] +05:04:57 [ 11] [ 6] [032485] +05:04:57 [ 37] [ 12] [57905032485] +05:04:57 [ 70] [ 3] [301] +05:04:57 ============================================================================ +05:04:57 + + +waiting on router queue for slot.... +05:04:57 Sending to : +05:04:57 ============================================================================ +05:04:57 ============================================================================ +05:04:57 Slot Id : <33> +05:04:57 Transaction Type : RESPONSE +05:04:57 Received From : +05:04:57 ============================================================================ +05:04:57 FNo. Len. Field Value +05:04:57 ============================================================================ +05:04:57 [ 1] [ 4] [0810] +05:04:57 [ 7] [ 10] [0319221242] +05:04:57 [ 11] [ 6] [032485] +05:04:57 [ 37] [ 12] [579050324850] +05:04:57 [ 39] [ 2] [00] +05:04:57 [ 70] [ 3] [810] +05:04:57 ============================================================================ +05:04:57 Calculate Source COMM Id = 1 +05:04:57 ============================================================================ +05:04:57 + + +waiting on router queue for slot.... +05:05:05 ============================================================================ +05:05:05 Slot Id : <11> +05:05:05 Transaction Type : REQUEST +05:05:05 Received From : +05:05:05 ============================================================================ +05:05:05 FNo. Len. Field Value +05:05:05 ============================================================================ +05:05:05 [ 1] [ 4] [0800] +05:05:05 [ 7] [ 10] [0319100412] +05:05:05 [ 11] [ 6] [154500] +05:05:05 [ 70] [ 3] [301] +05:05:05 ============================================================================ +05:05:05 + + +waiting on router queue for slot.... +05:05:05 Sending to : +05:05:05 ============================================================================ +05:05:05 ============================================================================ +05:05:05 Slot Id : <11> +05:05:05 Transaction Type : RESPONSE +05:05:05 Received From : +05:05:05 ============================================================================ +05:05:05 FNo. Len. Field Value +05:05:05 ============================================================================ +05:05:05 [ 1] [ 4] [0810] +05:05:05 [ 7] [ 10] [0319100412] +05:05:05 [ 11] [ 6] [154500] +05:05:05 [ 39] [ 2] [00] +05:05:05 [ 70] [ 3] [301] +05:05:05 ============================================================================ +05:05:05 Calculate Source COMM Id = 2 +05:05:05 ============================================================================ +05:05:05 + + +waiting on router queue for slot.... +05:05:15 ============================================================================ +05:05:15 Slot Id : <35> +05:05:15 Transaction Type : REQUEST +05:05:15 Received From : +05:05:15 ============================================================================ +05:05:15 FNo. Len. Field Value +05:05:15 ============================================================================ +05:05:15 [ 1] [ 4] [0800] +05:05:15 [ 7] [ 10] [0319100422] +05:05:15 [ 11] [ 6] [154501] +05:05:15 [ 70] [ 3] [301] +05:05:15 ============================================================================ +05:05:15 + + +waiting on router queue for slot.... +05:05:15 Sending to : +05:05:15 ============================================================================ +05:05:15 ============================================================================ +05:05:15 Slot Id : <35> +05:05:15 Transaction Type : RESPONSE +05:05:15 Received From : +05:05:15 ============================================================================ +05:05:15 FNo. Len. Field Value +05:05:15 ============================================================================ +05:05:15 [ 1] [ 4] [0810] +05:05:15 [ 7] [ 10] [0319100422] +05:05:15 [ 11] [ 6] [154501] +05:05:15 [ 39] [ 2] [00] +05:05:15 [ 70] [ 3] [301] +05:05:15 ============================================================================ +05:05:15 Calculate Source COMM Id = 2 +05:05:15 ============================================================================ +05:05:15 + + +waiting on router queue for slot.... +05:05:26 ============================================================================ +05:05:26 Slot Id : <496> +05:05:26 Transaction Type : REQUEST +05:05:26 Received From : +05:05:26 ============================================================================ +05:05:26 FNo. Len. Field Value +05:05:26 ============================================================================ +05:05:26 [ 1] [ 4] [0800] +05:05:26 [ 2] [ 5] [02531] +05:05:26 [ 3] [ 6] [579058] +05:05:26 [ 7] [ 10] [0319220526] +05:05:26 [ 11] [ 6] [806707] +05:05:26 [ 15] [ 10] [0319220526] +05:05:26 [ 37] [ 11] [57905806707] +05:05:26 [ 70] [ 3] [001] +05:05:26 ============================================================================ +05:05:26 + + +waiting on router queue for slot.... +05:05:26 ============================================================================ +05:05:26 Slot Id : <496> +05:05:26 Transaction Type : RESPONSE +05:05:26 Received From : +05:05:26 ============================================================================ +05:05:26 FNo. Len. Field Value +05:05:26 ============================================================================ +05:05:26 [ 1] [ 4] [0810] +05:05:26 [ 7] [ 10] [0319220526] +05:05:26 [ 11] [ 6] [806707] +05:05:26 [ 15] [ 4] [0319] +05:05:26 [ 37] [ 12] [57905806707] +05:05:26 [ 39] [ 2] [00] +05:05:26 [ 70] [ 3] [001] +05:05:26 ============================================================================ +05:05:26 Sending to : +05:05:26 ============================================================================ +05:05:26 + + +waiting on router queue for slot.... +05:05:26 ============================================================================ +05:05:26 Slot Id : <30> +05:05:26 Transaction Type : REQUEST +05:05:26 Received From : +05:05:26 ============================================================================ +05:05:26 FNo. Len. Field Value +05:05:26 ============================================================================ +05:05:26 [ 1] [ 4] [0800] +05:05:26 [ 7] [ 10] [0319100433] +05:05:26 [ 11] [ 6] [154502] +05:05:26 [ 70] [ 3] [301] +05:05:26 ============================================================================ +05:05:26 + + +waiting on router queue for slot.... +05:05:26 Sending to : +05:05:26 ============================================================================ +05:05:26 ============================================================================ +05:05:26 Slot Id : <30> +05:05:26 Transaction Type : RESPONSE +05:05:26 Received From : +05:05:26 ============================================================================ +05:05:26 FNo. Len. Field Value +05:05:26 ============================================================================ +05:05:26 [ 1] [ 4] [0810] +05:05:26 [ 7] [ 10] [0319100433] +05:05:26 [ 11] [ 6] [154502] +05:05:26 [ 39] [ 2] [00] +05:05:26 [ 70] [ 3] [301] +05:05:26 ============================================================================ +05:05:26 Calculate Source COMM Id = 2 +05:05:26 ============================================================================ +05:05:26 + + +waiting on router queue for slot.... +05:05:29 ============================================================================ +05:05:29 Slot Id : <36> +05:05:29 Transaction Type : REQUEST +05:05:29 Received From : +05:05:29 ============================================================================ +05:05:29 FNo. Len. Field Value +05:05:29 ============================================================================ +05:05:29 [ 1] [ 4] [0800] +05:05:29 [ 7] [ 10] [0320121717] +05:05:29 [ 11] [ 6] [051717] +05:05:29 [ 37] [ 12] [57905051717] +05:05:29 [ 70] [ 3] [301] +05:05:29 ============================================================================ +05:05:29 + + +waiting on router queue for slot.... +05:05:29 Sending to : +05:05:29 ============================================================================ +05:05:29 ============================================================================ +05:05:29 Slot Id : <36> +05:05:29 Transaction Type : RESPONSE +05:05:29 Received From : +05:05:29 ============================================================================ +05:05:29 FNo. Len. Field Value +05:05:29 ============================================================================ +05:05:29 [ 1] [ 4] [0810] +05:05:29 [ 7] [ 10] [0320121717] +05:05:29 [ 11] [ 6] [051717] +05:05:29 [ 37] [ 12] [579050517170] +05:05:29 [ 39] [ 2] [00] +05:05:29 [ 70] [ 3] [810] +05:05:29 ============================================================================ +05:05:29 Calculate Source COMM Id = 6 +05:05:29 ============================================================================ +05:05:29 + + +waiting on router queue for slot.... +05:05:37 ============================================================================ +05:05:37 Slot Id : <37> +05:05:37 Transaction Type : REQUEST +05:05:37 Received From : +05:05:37 ============================================================================ +05:05:37 FNo. Len. Field Value +05:05:37 ============================================================================ +05:05:37 [ 1] [ 4] [0800] +05:05:37 [ 7] [ 10] [0319100444] +05:05:37 [ 11] [ 6] [154503] +05:05:37 [ 70] [ 3] [301] +05:05:37 ============================================================================ +05:05:37 + + +waiting on router queue for slot.... +05:05:37 Sending to : +05:05:37 ============================================================================ +05:05:37 ============================================================================ +05:05:37 Slot Id : <37> +05:05:37 Transaction Type : RESPONSE +05:05:37 Received From : +05:05:37 ============================================================================ +05:05:37 FNo. Len. Field Value +05:05:37 ============================================================================ +05:05:37 [ 1] [ 4] [0810] +05:05:37 [ 7] [ 10] [0319100444] +05:05:37 [ 11] [ 6] [154503] +05:05:37 [ 39] [ 2] [00] +05:05:37 [ 70] [ 3] [301] +05:05:37 ============================================================================ +05:05:37 Calculate Source COMM Id = 2 +05:05:37 ============================================================================ +05:05:37 + + +waiting on router queue for slot.... +05:05:52 ============================================================================ +05:05:52 Slot Id : <32> +05:05:52 Transaction Type : REQUEST +05:05:52 Received From : +05:05:52 ============================================================================ +05:05:52 FNo. Len. Field Value +05:05:52 ============================================================================ +05:05:52 [ 1] [ 4] [0800] +05:05:52 [ 7] [ 10] [0319100459] +05:05:52 [ 11] [ 6] [154504] +05:05:52 [ 70] [ 3] [301] +05:05:52 ============================================================================ +05:05:52 + + +waiting on router queue for slot.... +05:05:52 Sending to : +05:05:52 ============================================================================ +05:05:52 ============================================================================ +05:05:52 Slot Id : <32> +05:05:52 Transaction Type : RESPONSE +05:05:52 Received From : +05:05:52 ============================================================================ +05:05:52 FNo. Len. Field Value +05:05:52 ============================================================================ +05:05:52 [ 1] [ 4] [0810] +05:05:52 [ 7] [ 10] [0319100459] +05:05:52 [ 11] [ 6] [154504] +05:05:52 [ 39] [ 2] [00] +05:05:52 [ 70] [ 3] [301] +05:05:52 ============================================================================ +05:05:52 Calculate Source COMM Id = 2 +05:05:52 ============================================================================ +05:05:52 + + +waiting on router queue for slot.... +05:06:02 ============================================================================ +05:06:02 Slot Id : <461> +05:06:02 Transaction Type : REQUEST +05:06:02 Received From : +05:06:02 ============================================================================ +05:06:02 FNo. Len. Field Value +05:06:02 ============================================================================ +05:06:02 [ 1] [ 4] [0800] +05:06:02 [ 7] [ 10] [0319100509] +05:06:02 [ 11] [ 6] [154505] +05:06:02 [ 70] [ 3] [301] +05:06:02 ============================================================================ +05:06:02 + + +waiting on router queue for slot.... +05:06:02 Sending to : +05:06:02 ============================================================================ +05:06:02 ============================================================================ +05:06:02 Slot Id : <461> +05:06:02 Transaction Type : RESPONSE +05:06:02 Received From : +05:06:02 ============================================================================ +05:06:02 FNo. Len. Field Value +05:06:02 ============================================================================ +05:06:02 [ 1] [ 4] [0810] +05:06:02 [ 7] [ 10] [0319100509] +05:06:02 [ 11] [ 6] [154505] +05:06:02 [ 39] [ 2] [00] +05:06:02 [ 70] [ 3] [301] +05:06:02 ============================================================================ +05:06:02 Calculate Source COMM Id = 2 +05:06:02 ============================================================================ +05:06:02 + + +waiting on router queue for slot.... +05:06:14 ============================================================================ +05:06:14 Slot Id : <9> +05:06:14 Transaction Type : REQUEST +05:06:14 Received From : +05:06:14 ============================================================================ +05:06:14 FNo. Len. Field Value +05:06:14 ============================================================================ +05:06:14 [ 1] [ 4] [0800] +05:06:14 [ 7] [ 10] [0319100519] +05:06:14 [ 11] [ 6] [154506] +05:06:14 [ 70] [ 3] [301] +05:06:14 ============================================================================ +05:06:14 + + +waiting on router queue for slot.... +05:06:14 Sending to : +05:06:14 ============================================================================ +05:06:14 ============================================================================ +05:06:14 Slot Id : <9> +05:06:14 Transaction Type : RESPONSE +05:06:14 Received From : +05:06:14 ============================================================================ +05:06:14 FNo. Len. Field Value +05:06:14 ============================================================================ +05:06:14 [ 1] [ 4] [0810] +05:06:14 [ 7] [ 10] [0319100519] +05:06:14 [ 11] [ 6] [154506] +05:06:14 [ 39] [ 2] [00] +05:06:14 [ 70] [ 3] [301] +05:06:14 ============================================================================ +05:06:14 Calculate Source COMM Id = 2 +05:06:14 ============================================================================ +05:06:14 + + +waiting on router queue for slot.... +05:06:22 ============================================================================ +05:06:22 Slot Id : <467> +05:06:22 Transaction Type : REQUEST +05:06:22 Received From : +05:06:22 ============================================================================ +05:06:22 FNo. Len. Field Value +05:06:22 ============================================================================ +05:06:22 [ 1] [ 4] [0800] +05:06:22 [ 7] [ 10] [0319220412] +05:06:22 [ 11] [ 6] [070250] +05:06:22 [ 37] [ 12] [57905070250] +05:06:22 [ 70] [ 3] [301] +05:06:22 ============================================================================ +05:06:22 + + +waiting on router queue for slot.... +05:06:22 Sending to : +05:06:22 ============================================================================ +05:06:22 ============================================================================ +05:06:22 Slot Id : <467> +05:06:22 Transaction Type : RESPONSE +05:06:22 Received From : +05:06:22 ============================================================================ +05:06:22 FNo. Len. Field Value +05:06:22 ============================================================================ +05:06:22 [ 1] [ 4] [0810] +05:06:22 [ 7] [ 10] [0319220412] +05:06:22 [ 11] [ 6] [070250] +05:06:22 [ 37] [ 12] [579050702500] +05:06:22 [ 39] [ 2] [00] +05:06:22 [ 70] [ 3] [810] +05:06:22 ============================================================================ +05:06:22 Calculate Source COMM Id = 4 +05:06:22 ============================================================================ +05:06:22 + + +waiting on router queue for slot.... +05:06:28 ============================================================================ +05:06:28 Slot Id : <45> +05:06:28 Transaction Type : REQUEST +05:06:28 Received From : +05:06:28 ============================================================================ +05:06:28 FNo. Len. Field Value +05:06:28 ============================================================================ +05:06:28 [ 1] [ 4] [0800] +05:06:28 [ 2] [ 5] [02531] +05:06:28 [ 3] [ 6] [579058] +05:06:28 [ 7] [ 10] [0319220628] +05:06:28 [ 11] [ 6] [806708] +05:06:28 [ 15] [ 10] [0319220628] +05:06:28 [ 37] [ 11] [57905806708] +05:06:28 [ 70] [ 3] [001] +05:06:28 ============================================================================ +05:06:28 + + +waiting on router queue for slot.... +05:06:28 ============================================================================ +05:06:28 Slot Id : <45> +05:06:28 Transaction Type : RESPONSE +05:06:28 Received From : +05:06:28 ============================================================================ +05:06:28 FNo. Len. Field Value +05:06:28 ============================================================================ +05:06:28 [ 1] [ 4] [0810] +05:06:28 [ 7] [ 10] [0319220628] +05:06:28 [ 11] [ 6] [806708] +05:06:28 [ 15] [ 4] [0319] +05:06:28 [ 37] [ 12] [57905806708] +05:06:28 [ 39] [ 2] [00] +05:06:28 [ 70] [ 3] [001] +05:06:28 ============================================================================ +05:06:28 Sending to : +05:06:28 ============================================================================ +05:06:28 + + +waiting on router queue for slot.... +05:06:29 ============================================================================ +05:06:29 Slot Id : <40> +05:06:29 Transaction Type : REQUEST +05:06:29 Received From : +05:06:29 ============================================================================ +05:06:29 FNo. Len. Field Value +05:06:29 ============================================================================ +05:06:29 [ 1] [ 4] [0800] +05:06:29 [ 7] [ 10] [0319100535] +05:06:29 [ 11] [ 6] [154507] +05:06:29 [ 70] [ 3] [301] +05:06:29 ============================================================================ +05:06:29 + + +waiting on router queue for slot.... +05:06:29 Sending to : +05:06:29 ============================================================================ +05:06:29 ============================================================================ +05:06:29 Slot Id : <40> +05:06:29 Transaction Type : RESPONSE +05:06:29 Received From : +05:06:29 ============================================================================ +05:06:29 FNo. Len. Field Value +05:06:29 ============================================================================ +05:06:29 [ 1] [ 4] [0810] +05:06:29 [ 7] [ 10] [0319100535] +05:06:29 [ 11] [ 6] [154507] +05:06:29 [ 39] [ 2] [00] +05:06:29 [ 70] [ 3] [301] +05:06:29 ============================================================================ +05:06:29 Calculate Source COMM Id = 2 +05:06:29 ============================================================================ +05:06:29 + + +waiting on router queue for slot.... +05:06:34 ============================================================================ +05:06:34 Slot Id : <18> +05:06:34 Transaction Type : REQUEST +05:06:34 Received From : +05:06:34 ============================================================================ +05:06:34 FNo. Len. Field Value +05:06:34 ============================================================================ +05:06:34 [ 1] [ 4] [0800] +05:06:34 [ 7] [ 10] [0320121822] +05:06:34 [ 11] [ 6] [051822] +05:06:34 [ 37] [ 12] [57905051822] +05:06:34 [ 70] [ 3] [301] +05:06:34 ============================================================================ +05:06:34 + + +waiting on router queue for slot.... +05:06:34 Sending to : +05:06:34 ============================================================================ +05:06:34 ============================================================================ +05:06:34 Slot Id : <18> +05:06:34 Transaction Type : RESPONSE +05:06:34 Received From : +05:06:34 ============================================================================ +05:06:34 FNo. Len. Field Value +05:06:34 ============================================================================ +05:06:34 [ 1] [ 4] [0810] +05:06:34 [ 7] [ 10] [0320121822] +05:06:34 [ 11] [ 6] [051822] +05:06:34 [ 37] [ 12] [579050518220] +05:06:34 [ 39] [ 2] [00] +05:06:34 [ 70] [ 3] [810] +05:06:34 ============================================================================ +05:06:34 Calculate Source COMM Id = 6 +05:06:34 ============================================================================ +05:06:34 + + +waiting on router queue for slot.... +05:06:37 ============================================================================ +05:06:37 Slot Id : <497> +05:06:37 Transaction Type : REQUEST +05:06:37 Received From : +05:06:37 ============================================================================ +05:06:37 FNo. Len. Field Value +05:06:37 ============================================================================ +05:06:37 [ 1] [ 4] [0800] +05:06:37 [ 7] [ 10] [0319220632] +05:06:37 [ 11] [ 6] [097514] +05:06:37 [ 37] [ 12] [507905097514] +05:06:37 [ 70] [ 3] [001] +05:06:37 ============================================================================ +05:06:37 + + +waiting on router queue for slot.... +05:06:37 Sending to : +05:06:37 ============================================================================ +05:06:37 ============================================================================ +05:06:37 Slot Id : <497> +05:06:37 Transaction Type : RESPONSE +05:06:37 Received From : +05:06:37 ============================================================================ +05:06:37 FNo. Len. Field Value +05:06:37 ============================================================================ +05:06:37 [ 1] [ 4] [0810] +05:06:37 [ 7] [ 10] [0319220632] +05:06:37 [ 11] [ 6] [097514] +05:06:37 [ 37] [ 12] [507905097514] +05:06:37 [ 39] [ 2] [00] +05:06:37 [ 70] [ 3] [001] +05:06:37 ============================================================================ +05:06:37 Calculate Source COMM Id = 0 +05:06:37 ============================================================================ +05:06:37 + + +waiting on router queue for slot.... +05:06:46 ============================================================================ +05:06:46 Slot Id : <28> +05:06:46 Transaction Type : REQUEST +05:06:46 Received From : +05:06:46 ============================================================================ +05:06:46 FNo. Len. Field Value +05:06:46 ============================================================================ +05:06:46 [ 1] [ 4] [0800] +05:06:46 [ 7] [ 10] [0319100552] +05:06:46 [ 11] [ 6] [154508] +05:06:46 [ 70] [ 3] [301] +05:06:46 ============================================================================ +05:06:46 + + +waiting on router queue for slot.... +05:06:46 Sending to : +05:06:46 ============================================================================ +05:06:46 ============================================================================ +05:06:46 Slot Id : <28> +05:06:46 Transaction Type : RESPONSE +05:06:46 Received From : +05:06:46 ============================================================================ +05:06:46 FNo. Len. Field Value +05:06:46 ============================================================================ +05:06:46 [ 1] [ 4] [0810] +05:06:46 [ 7] [ 10] [0319100552] +05:06:46 [ 11] [ 6] [154508] +05:06:46 [ 39] [ 2] [00] +05:06:46 [ 70] [ 3] [301] +05:06:46 ============================================================================ +05:06:46 Calculate Source COMM Id = 2 +05:06:46 ============================================================================ +05:06:46 + + +waiting on router queue for slot.... +05:07:00 ============================================================================ +05:07:00 Slot Id : <43> +05:07:00 Transaction Type : REQUEST +05:07:00 Received From : +05:07:00 ============================================================================ +05:07:00 FNo. Len. Field Value +05:07:00 ============================================================================ +05:07:00 [ 1] [ 4] [0800] +05:07:00 [ 7] [ 10] [0319100607] +05:07:00 [ 11] [ 6] [154509] +05:07:00 [ 70] [ 3] [301] +05:07:00 ============================================================================ +05:07:00 + + +waiting on router queue for slot.... +05:07:00 Sending to : +05:07:00 ============================================================================ +05:07:00 ============================================================================ +05:07:00 Slot Id : <43> +05:07:00 Transaction Type : RESPONSE +05:07:00 Received From : +05:07:00 ============================================================================ +05:07:00 FNo. Len. Field Value +05:07:00 ============================================================================ +05:07:00 [ 1] [ 4] [0810] +05:07:00 [ 7] [ 10] [0319100607] +05:07:00 [ 11] [ 6] [154509] +05:07:00 [ 39] [ 2] [00] +05:07:00 [ 70] [ 3] [301] +05:07:00 ============================================================================ +05:07:00 Calculate Source COMM Id = 2 +05:07:00 ============================================================================ +05:07:00 + + +waiting on router queue for slot.... +05:07:15 ============================================================================ +05:07:15 Slot Id : <8> +05:07:15 Transaction Type : REQUEST +05:07:15 Received From : +05:07:15 ============================================================================ +05:07:15 FNo. Len. Field Value +05:07:15 ============================================================================ +05:07:15 [ 1] [ 4] [0800] +05:07:15 [ 7] [ 10] [0319100622] +05:07:15 [ 11] [ 6] [154510] +05:07:15 [ 70] [ 3] [301] +05:07:15 ============================================================================ +05:07:15 + + +waiting on router queue for slot.... +05:07:15 Sending to : +05:07:15 ============================================================================ +05:07:15 ============================================================================ +05:07:15 Slot Id : <8> +05:07:15 Transaction Type : RESPONSE +05:07:15 Received From : +05:07:15 ============================================================================ +05:07:15 FNo. Len. Field Value +05:07:15 ============================================================================ +05:07:15 [ 1] [ 4] [0810] +05:07:15 [ 7] [ 10] [0319100622] +05:07:15 [ 11] [ 6] [154510] +05:07:15 [ 39] [ 2] [00] +05:07:15 [ 70] [ 3] [301] +05:07:15 ============================================================================ +05:07:15 Calculate Source COMM Id = 2 +05:07:15 ============================================================================ +05:07:15 + + +waiting on router queue for slot.... +05:07:26 ============================================================================ +05:07:26 Slot Id : <50> +05:07:26 Transaction Type : REQUEST +05:07:26 Received From : +05:07:26 ============================================================================ +05:07:26 FNo. Len. Field Value +05:07:26 ============================================================================ +05:07:26 [ 1] [ 4] [0800] +05:07:26 [ 7] [ 10] [0319100632] +05:07:26 [ 11] [ 6] [154511] +05:07:26 [ 70] [ 3] [301] +05:07:26 ============================================================================ +05:07:26 + + +waiting on router queue for slot.... +05:07:26 Sending to : +05:07:26 ============================================================================ +05:07:26 ============================================================================ +05:07:26 Slot Id : <50> +05:07:26 Transaction Type : RESPONSE +05:07:26 Received From : +05:07:26 ============================================================================ +05:07:26 FNo. Len. Field Value +05:07:26 ============================================================================ +05:07:26 [ 1] [ 4] [0810] +05:07:26 [ 7] [ 10] [0319100632] +05:07:26 [ 11] [ 6] [154511] +05:07:26 [ 39] [ 2] [00] +05:07:26 [ 70] [ 3] [301] +05:07:26 ============================================================================ +05:07:26 Calculate Source COMM Id = 2 +05:07:26 ============================================================================ +05:07:26 + + +waiting on router queue for slot.... +05:07:30 ============================================================================ +05:07:30 Slot Id : <52> +05:07:30 Transaction Type : REQUEST +05:07:30 Received From : +05:07:30 ============================================================================ +05:07:30 FNo. Len. Field Value +05:07:30 ============================================================================ +05:07:30 [ 1] [ 4] [0800] +05:07:30 [ 2] [ 5] [02531] +05:07:30 [ 3] [ 6] [579058] +05:07:30 [ 7] [ 10] [0319220730] +05:07:30 [ 11] [ 6] [806709] +05:07:30 [ 15] [ 10] [0319220730] +05:07:30 [ 37] [ 11] [57905806709] +05:07:30 [ 70] [ 3] [001] +05:07:30 ============================================================================ +05:07:30 + + +waiting on router queue for slot.... +05:07:30 ============================================================================ +05:07:30 Slot Id : <52> +05:07:30 Transaction Type : RESPONSE +05:07:30 Received From : +05:07:30 ============================================================================ +05:07:30 FNo. Len. Field Value +05:07:30 ============================================================================ +05:07:30 [ 1] [ 4] [0810] +05:07:30 [ 7] [ 10] [0319220730] +05:07:30 [ 11] [ 6] [806709] +05:07:30 [ 15] [ 4] [0319] +05:07:30 [ 37] [ 12] [57905806709] +05:07:30 [ 39] [ 2] [00] +05:07:30 [ 70] [ 3] [001] +05:07:30 ============================================================================ +05:07:30 Sending to : +05:07:30 ============================================================================ +05:07:30 + + +waiting on router queue for slot.... +05:07:37 ============================================================================ +05:07:37 Slot Id : <44> +05:07:37 Transaction Type : REQUEST +05:07:37 Received From : +05:07:37 ============================================================================ +05:07:37 FNo. Len. Field Value +05:07:37 ============================================================================ +05:07:37 [ 1] [ 4] [0800] +05:07:37 [ 7] [ 10] [0319100643] +05:07:37 [ 11] [ 6] [154512] +05:07:37 [ 70] [ 3] [301] +05:07:37 ============================================================================ +05:07:37 + + +waiting on router queue for slot.... +05:07:37 Sending to : +05:07:37 ============================================================================ +05:07:37 ============================================================================ +05:07:37 Slot Id : <44> +05:07:37 Transaction Type : RESPONSE +05:07:37 Received From : +05:07:37 ============================================================================ +05:07:37 FNo. Len. Field Value +05:07:37 ============================================================================ +05:07:37 [ 1] [ 4] [0810] +05:07:37 [ 7] [ 10] [0319100643] +05:07:37 [ 11] [ 6] [154512] +05:07:37 [ 39] [ 2] [00] +05:07:37 [ 70] [ 3] [301] +05:07:37 ============================================================================ +05:07:37 Calculate Source COMM Id = 2 +05:07:37 ============================================================================ +05:07:37 + + +waiting on router queue for slot.... +05:07:39 ============================================================================ +05:07:39 Slot Id : <61> +05:07:39 Transaction Type : REQUEST +05:07:39 Received From : +05:07:39 ============================================================================ +05:07:39 FNo. Len. Field Value +05:07:39 ============================================================================ +05:07:39 [ 1] [ 4] [0800] +05:07:39 [ 7] [ 10] [0320121927] +05:07:39 [ 11] [ 6] [051927] +05:07:39 [ 37] [ 12] [57905051927] +05:07:39 [ 70] [ 3] [301] +05:07:39 ============================================================================ +05:07:39 + + +waiting on router queue for slot.... +05:07:39 Sending to : +05:07:39 ============================================================================ +05:07:39 ============================================================================ +05:07:39 Slot Id : <61> +05:07:39 Transaction Type : RESPONSE +05:07:39 Received From : +05:07:39 ============================================================================ +05:07:39 FNo. Len. Field Value +05:07:39 ============================================================================ +05:07:39 [ 1] [ 4] [0810] +05:07:39 [ 7] [ 10] [0320121927] +05:07:39 [ 11] [ 6] [051927] +05:07:39 [ 37] [ 12] [579050519270] +05:07:39 [ 39] [ 2] [00] +05:07:39 [ 70] [ 3] [810] +05:07:39 ============================================================================ +05:07:39 Calculate Source COMM Id = 6 +05:07:39 ============================================================================ +05:07:39 + + +waiting on router queue for slot.... +05:07:48 ============================================================================ +05:07:48 Slot Id : <25> +05:07:48 Transaction Type : REQUEST +05:07:48 Received From : +05:07:48 ============================================================================ +05:07:48 FNo. Len. Field Value +05:07:48 ============================================================================ +05:07:48 [ 1] [ 4] [0800] +05:07:48 [ 7] [ 10] [0319100654] +05:07:48 [ 11] [ 6] [154513] +05:07:48 [ 70] [ 3] [301] +05:07:48 ============================================================================ +05:07:48 + + +waiting on router queue for slot.... +05:07:48 Sending to : +05:07:48 ============================================================================ +05:07:48 ============================================================================ +05:07:48 Slot Id : <25> +05:07:48 Transaction Type : RESPONSE +05:07:48 Received From : +05:07:48 ============================================================================ +05:07:48 FNo. Len. Field Value +05:07:48 ============================================================================ +05:07:48 [ 1] [ 4] [0810] +05:07:48 [ 7] [ 10] [0319100654] +05:07:48 [ 11] [ 6] [154513] +05:07:48 [ 39] [ 2] [00] +05:07:48 [ 70] [ 3] [301] +05:07:48 ============================================================================ +05:07:48 Calculate Source COMM Id = 2 +05:07:48 ============================================================================ +05:07:48 + + +waiting on router queue for slot.... +05:07:58 ============================================================================ +05:07:58 Slot Id : <15> +05:07:58 Transaction Type : REQUEST +05:07:58 Received From : +05:07:58 ============================================================================ +05:07:58 FNo. Len. Field Value +05:07:58 ============================================================================ +05:07:58 [ 1] [ 4] [0800] +05:07:58 [ 7] [ 10] [0319100705] +05:07:58 [ 11] [ 6] [154514] +05:07:58 [ 70] [ 3] [301] +05:07:58 ============================================================================ +05:07:58 + + +waiting on router queue for slot.... +05:07:58 Sending to : +05:07:58 ============================================================================ +05:07:58 ============================================================================ +05:07:58 Slot Id : <15> +05:07:58 Transaction Type : RESPONSE +05:07:58 Received From : +05:07:58 ============================================================================ +05:07:58 FNo. Len. Field Value +05:07:58 ============================================================================ +05:07:58 [ 1] [ 4] [0810] +05:07:58 [ 7] [ 10] [0319100705] +05:07:58 [ 11] [ 6] [154514] +05:07:58 [ 39] [ 2] [00] +05:07:58 [ 70] [ 3] [301] +05:07:58 ============================================================================ +05:07:58 Calculate Source COMM Id = 2 +05:07:58 ============================================================================ +05:07:58 + + +waiting on router queue for slot.... +05:08:12 ============================================================================ +05:08:12 Slot Id : <55> +05:08:12 Transaction Type : REQUEST +05:08:12 Received From : +05:08:12 ============================================================================ +05:08:12 FNo. Len. Field Value +05:08:12 ============================================================================ +05:08:12 [ 1] [ 4] [0800] +05:08:12 [ 7] [ 10] [0319100717] +05:08:12 [ 11] [ 6] [154515] +05:08:12 [ 70] [ 3] [301] +05:08:12 ============================================================================ +05:08:12 + + +waiting on router queue for slot.... +05:08:12 Sending to : +05:08:12 ============================================================================ +05:08:12 ============================================================================ +05:08:12 Slot Id : <55> +05:08:12 Transaction Type : RESPONSE +05:08:12 Received From : +05:08:12 ============================================================================ +05:08:12 FNo. Len. Field Value +05:08:12 ============================================================================ +05:08:12 [ 1] [ 4] [0810] +05:08:12 [ 7] [ 10] [0319100717] +05:08:12 [ 11] [ 6] [154515] +05:08:12 [ 39] [ 2] [00] +05:08:12 [ 70] [ 3] [301] +05:08:12 ============================================================================ +05:08:12 Calculate Source COMM Id = 2 +05:08:12 ============================================================================ +05:08:12 + + +waiting on router queue for slot.... +05:08:26 ============================================================================ +05:08:26 Slot Id : <478> +05:08:26 Transaction Type : REQUEST +05:08:26 Received From : +05:08:26 ============================================================================ +05:08:26 FNo. Len. Field Value +05:08:26 ============================================================================ +05:08:26 [ 1] [ 4] [0800] +05:08:26 [ 7] [ 10] [0319100732] +05:08:26 [ 11] [ 6] [154516] +05:08:26 [ 70] [ 3] [301] +05:08:26 ============================================================================ +05:08:26 + + +waiting on router queue for slot.... +05:08:26 Sending to : +05:08:26 ============================================================================ +05:08:26 ============================================================================ +05:08:26 Slot Id : <478> +05:08:26 Transaction Type : RESPONSE +05:08:26 Received From : +05:08:26 ============================================================================ +05:08:26 FNo. Len. Field Value +05:08:26 ============================================================================ +05:08:26 [ 1] [ 4] [0810] +05:08:26 [ 7] [ 10] [0319100732] +05:08:26 [ 11] [ 6] [154516] +05:08:26 [ 39] [ 2] [00] +05:08:26 [ 70] [ 3] [301] +05:08:26 ============================================================================ +05:08:26 Calculate Source COMM Id = 2 +05:08:26 ============================================================================ +05:08:26 + + +waiting on router queue for slot.... +05:08:32 ============================================================================ +05:08:32 Slot Id : <68> +05:08:32 Transaction Type : REQUEST +05:08:32 Received From : +05:08:32 ============================================================================ +05:08:32 FNo. Len. Field Value +05:08:32 ============================================================================ +05:08:32 [ 1] [ 4] [0800] +05:08:32 [ 2] [ 5] [02531] +05:08:32 [ 3] [ 6] [579058] +05:08:32 [ 7] [ 10] [0319220832] +05:08:32 [ 11] [ 6] [806710] +05:08:32 [ 15] [ 10] [0319220832] +05:08:32 [ 37] [ 11] [57905806710] +05:08:32 [ 70] [ 3] [001] +05:08:32 ============================================================================ +05:08:32 + + +waiting on router queue for slot.... +05:08:32 ============================================================================ +05:08:32 Slot Id : <68> +05:08:32 Transaction Type : RESPONSE +05:08:32 Received From : +05:08:32 ============================================================================ +05:08:32 FNo. Len. Field Value +05:08:32 ============================================================================ +05:08:32 [ 1] [ 4] [0810] +05:08:32 [ 7] [ 10] [0319220832] +05:08:32 [ 11] [ 6] [806710] +05:08:32 [ 15] [ 4] [0319] +05:08:32 [ 37] [ 12] [57905806710] +05:08:32 [ 39] [ 2] [00] +05:08:32 [ 70] [ 3] [001] +05:08:32 ============================================================================ +05:08:32 Sending to : +05:08:32 ============================================================================ +05:08:32 + + +waiting on router queue for slot.... +05:08:36 ============================================================================ +05:08:36 Slot Id : <63> +05:08:36 Transaction Type : REQUEST +05:08:36 Received From : +05:08:36 ============================================================================ +05:08:36 FNo. Len. Field Value +05:08:36 ============================================================================ +05:08:36 [ 1] [ 4] [0800] +05:08:36 [ 7] [ 10] [0319100743] +05:08:36 [ 11] [ 6] [154517] +05:08:36 [ 70] [ 3] [301] +05:08:36 ============================================================================ +05:08:36 + + +waiting on router queue for slot.... +05:08:36 Sending to : +05:08:36 ============================================================================ +05:08:36 ============================================================================ +05:08:36 Slot Id : <63> +05:08:36 Transaction Type : RESPONSE +05:08:36 Received From : +05:08:36 ============================================================================ +05:08:36 FNo. Len. Field Value +05:08:36 ============================================================================ +05:08:36 [ 1] [ 4] [0810] +05:08:36 [ 7] [ 10] [0319100743] +05:08:36 [ 11] [ 6] [154517] +05:08:36 [ 39] [ 2] [00] +05:08:36 [ 70] [ 3] [301] +05:08:36 ============================================================================ +05:08:36 Calculate Source COMM Id = 2 +05:08:36 ============================================================================ +05:08:36 + + +waiting on router queue for slot.... +05:08:42 ============================================================================ +05:08:42 Slot Id : <60> +05:08:42 Transaction Type : REQUEST +05:08:42 Received From : +05:08:42 ============================================================================ +05:08:42 FNo. Len. Field Value +05:08:42 ============================================================================ +05:08:42 [ 1] [ 4] [0800] +05:08:42 [ 7] [ 10] [0320050828] +05:08:42 [ 11] [ 6] [032431] +05:08:42 [ 37] [ 12] [507905032431] +05:08:42 [ 70] [ 3] [ ] +05:08:42 ============================================================================ +05:08:42 + + +waiting on router queue for slot.... +05:08:42 Sending to : +05:08:42 ============================================================================ +05:08:42 ============================================================================ +05:08:42 Slot Id : <60> +05:08:42 Transaction Type : RESPONSE +05:08:42 Received From : +05:08:42 ============================================================================ +05:08:42 FNo. Len. Field Value +05:08:42 ============================================================================ +05:08:42 [ 1] [ 4] [0810] +05:08:42 [ 7] [ 10] [0320050828] +05:08:42 [ 11] [ 6] [032431] +05:08:42 [ 37] [ 12] [507905032431] +05:08:42 [ 39] [ 2] [91] +05:08:42 [ 70] [ 3] [ ] +05:08:42 ============================================================================ +05:08:42 Calculate Source COMM Id = 3 +05:08:42 ============================================================================ +05:08:42 + + +waiting on router queue for slot.... +05:08:44 ============================================================================ +05:08:44 Slot Id : <464> +05:08:44 Transaction Type : REQUEST +05:08:44 Received From : +05:08:44 ============================================================================ +05:08:44 FNo. Len. Field Value +05:08:44 ============================================================================ +05:08:44 [ 1] [ 4] [0800] +05:08:44 [ 7] [ 10] [0320122032] +05:08:44 [ 11] [ 6] [052032] +05:08:44 [ 37] [ 12] [57905052032] +05:08:44 [ 70] [ 3] [301] +05:08:44 ============================================================================ +05:08:44 + + +waiting on router queue for slot.... +05:08:44 Sending to : +05:08:44 ============================================================================ +05:08:44 ============================================================================ +05:08:44 Slot Id : <464> +05:08:44 Transaction Type : RESPONSE +05:08:44 Received From : +05:08:44 ============================================================================ +05:08:44 FNo. Len. Field Value +05:08:44 ============================================================================ +05:08:44 [ 1] [ 4] [0810] +05:08:44 [ 7] [ 10] [0320122032] +05:08:44 [ 11] [ 6] [052032] +05:08:44 [ 37] [ 12] [579050520320] +05:08:44 [ 39] [ 2] [00] +05:08:44 [ 70] [ 3] [810] +05:08:44 ============================================================================ +05:08:44 Calculate Source COMM Id = 6 +05:08:44 ============================================================================ +05:08:44 + + +waiting on router queue for slot.... +05:08:46 ============================================================================ +05:08:46 Slot Id : <41> +05:08:46 Transaction Type : REQUEST +05:08:46 Received From : +05:08:46 ============================================================================ +05:08:46 FNo. Len. Field Value +05:08:46 ============================================================================ +05:08:46 [ 1] [ 4] [0800] +05:08:46 [ 7] [ 10] [0319100753] +05:08:46 [ 11] [ 6] [154518] +05:08:46 [ 70] [ 3] [301] +05:08:46 ============================================================================ +05:08:46 + + +waiting on router queue for slot.... +05:08:46 Sending to : +05:08:46 ============================================================================ +05:08:46 ============================================================================ +05:08:46 Slot Id : <41> +05:08:46 Transaction Type : RESPONSE +05:08:46 Received From : +05:08:46 ============================================================================ +05:08:46 FNo. Len. Field Value +05:08:46 ============================================================================ +05:08:46 [ 1] [ 4] [0810] +05:08:46 [ 7] [ 10] [0319100753] +05:08:46 [ 11] [ 6] [154518] +05:08:46 [ 39] [ 2] [00] +05:08:46 [ 70] [ 3] [301] +05:08:46 ============================================================================ +05:08:46 Calculate Source COMM Id = 2 +05:08:46 ============================================================================ +05:08:46 + + +waiting on router queue for slot.... +05:08:58 ============================================================================ +05:08:58 Slot Id : <38> +05:08:58 Transaction Type : REQUEST +05:08:58 Received From : +05:08:58 ============================================================================ +05:08:58 FNo. Len. Field Value +05:08:58 ============================================================================ +05:08:58 [ 1] [ 4] [0800] +05:08:58 [ 7] [ 10] [0319100804] +05:08:58 [ 11] [ 6] [154519] +05:08:58 [ 70] [ 3] [301] +05:08:58 ============================================================================ +05:08:58 + + +waiting on router queue for slot.... +05:08:58 Sending to : +05:08:58 ============================================================================ +05:08:58 ============================================================================ +05:08:58 Slot Id : <38> +05:08:58 Transaction Type : RESPONSE +05:08:58 Received From : +05:08:58 ============================================================================ +05:08:58 FNo. Len. Field Value +05:08:58 ============================================================================ +05:08:58 [ 1] [ 4] [0810] +05:08:58 [ 7] [ 10] [0319100804] +05:08:58 [ 11] [ 6] [154519] +05:08:58 [ 39] [ 2] [00] +05:08:58 [ 70] [ 3] [301] +05:08:58 ============================================================================ +05:08:58 Calculate Source COMM Id = 2 +05:08:58 ============================================================================ +05:08:58 + + +waiting on router queue for slot.... +05:09:13 ============================================================================ +05:09:13 Slot Id : <73> +05:09:13 Transaction Type : REQUEST +05:09:13 Received From : +05:09:13 ============================================================================ +05:09:13 FNo. Len. Field Value +05:09:13 ============================================================================ +05:09:13 [ 1] [ 4] [0800] +05:09:13 [ 7] [ 10] [0319100819] +05:09:13 [ 11] [ 6] [154520] +05:09:13 [ 70] [ 3] [301] +05:09:13 ============================================================================ +05:09:13 + + +waiting on router queue for slot.... +05:09:13 Sending to : +05:09:13 ============================================================================ +05:09:13 ============================================================================ +05:09:13 Slot Id : <73> +05:09:13 Transaction Type : RESPONSE +05:09:13 Received From : +05:09:13 ============================================================================ +05:09:13 FNo. Len. Field Value +05:09:13 ============================================================================ +05:09:13 [ 1] [ 4] [0810] +05:09:13 [ 7] [ 10] [0319100819] +05:09:13 [ 11] [ 6] [154520] +05:09:13 [ 39] [ 2] [00] +05:09:13 [ 70] [ 3] [301] +05:09:13 ============================================================================ +05:09:13 Calculate Source COMM Id = 2 +05:09:13 ============================================================================ +05:09:13 + + +waiting on router queue for slot.... +05:09:24 ============================================================================ +05:09:24 Slot Id : <487> +05:09:24 Transaction Type : REQUEST +05:09:24 Received From : +05:09:24 ============================================================================ +05:09:24 FNo. Len. Field Value +05:09:24 ============================================================================ +05:09:24 [ 1] [ 4] [0800] +05:09:24 [ 7] [ 10] [0319100831] +05:09:24 [ 11] [ 6] [154521] +05:09:24 [ 70] [ 3] [301] +05:09:24 ============================================================================ +05:09:24 + + +waiting on router queue for slot.... +05:09:24 Sending to : +05:09:24 ============================================================================ +05:09:24 ============================================================================ +05:09:24 Slot Id : <487> +05:09:24 Transaction Type : RESPONSE +05:09:24 Received From : +05:09:24 ============================================================================ +05:09:24 FNo. Len. Field Value +05:09:24 ============================================================================ +05:09:24 [ 1] [ 4] [0810] +05:09:24 [ 7] [ 10] [0319100831] +05:09:24 [ 11] [ 6] [154521] +05:09:24 [ 39] [ 2] [00] +05:09:24 [ 70] [ 3] [301] +05:09:24 ============================================================================ +05:09:24 Calculate Source COMM Id = 2 +05:09:24 ============================================================================ +05:09:24 + + +waiting on router queue for slot.... +05:09:34 ============================================================================ +05:09:34 Slot Id : <20> +05:09:34 Transaction Type : REQUEST +05:09:34 Received From : +05:09:34 ============================================================================ +05:09:34 FNo. Len. Field Value +05:09:34 ============================================================================ +05:09:34 [ 1] [ 4] [0800] +05:09:34 [ 2] [ 5] [02531] +05:09:34 [ 3] [ 6] [579058] +05:09:34 [ 7] [ 10] [0319220934] +05:09:34 [ 11] [ 6] [806711] +05:09:34 [ 15] [ 10] [0319220934] +05:09:34 [ 37] [ 11] [57905806711] +05:09:34 [ 70] [ 3] [001] +05:09:34 ============================================================================ +05:09:34 + + +waiting on router queue for slot.... +05:09:34 ============================================================================ +05:09:34 Slot Id : <20> +05:09:34 Transaction Type : RESPONSE +05:09:34 Received From : +05:09:34 ============================================================================ +05:09:34 FNo. Len. Field Value +05:09:34 ============================================================================ +05:09:34 [ 1] [ 4] [0810] +05:09:34 [ 7] [ 10] [0319220934] +05:09:34 [ 11] [ 6] [806711] +05:09:34 [ 15] [ 4] [0319] +05:09:34 [ 37] [ 12] [57905806711] +05:09:34 [ 39] [ 2] [00] +05:09:34 [ 70] [ 3] [001] +05:09:34 ============================================================================ +05:09:34 Sending to : +05:09:34 ============================================================================ +05:09:34 + + +waiting on router queue for slot.... +05:09:35 ============================================================================ +05:09:35 Slot Id : <27> +05:09:35 Transaction Type : REQUEST +05:09:35 Received From : +05:09:35 ============================================================================ +05:09:35 FNo. Len. Field Value +05:09:35 ============================================================================ +05:09:35 [ 1] [ 4] [0800] +05:09:35 [ 7] [ 10] [0319100841] +05:09:35 [ 11] [ 6] [154522] +05:09:35 [ 70] [ 3] [301] +05:09:35 ============================================================================ +05:09:35 + + +waiting on router queue for slot.... +05:09:35 Sending to : +05:09:35 ============================================================================ +05:09:35 ============================================================================ +05:09:35 Slot Id : <27> +05:09:35 Transaction Type : RESPONSE +05:09:35 Received From : +05:09:35 ============================================================================ +05:09:35 FNo. Len. Field Value +05:09:35 ============================================================================ +05:09:35 [ 1] [ 4] [0810] +05:09:35 [ 7] [ 10] [0319100841] +05:09:35 [ 11] [ 6] [154522] +05:09:35 [ 39] [ 2] [00] +05:09:35 [ 70] [ 3] [301] +05:09:35 ============================================================================ +05:09:35 Calculate Source COMM Id = 2 +05:09:35 ============================================================================ +05:09:35 + + +waiting on router queue for slot.... +05:09:47 ============================================================================ +05:09:47 Slot Id : <48> +05:09:47 Transaction Type : REQUEST +05:09:47 Received From : +05:09:47 ============================================================================ +05:09:47 FNo. Len. Field Value +05:09:47 ============================================================================ +05:09:47 [ 1] [ 4] [0800] +05:09:47 [ 7] [ 10] [0319100852] +05:09:47 [ 11] [ 6] [154523] +05:09:47 [ 70] [ 3] [301] +05:09:47 ============================================================================ +05:09:47 + + +waiting on router queue for slot.... +05:09:47 Sending to : +05:09:47 ============================================================================ +05:09:47 ============================================================================ +05:09:47 Slot Id : <48> +05:09:47 Transaction Type : RESPONSE +05:09:47 Received From : +05:09:47 ============================================================================ +05:09:47 FNo. Len. Field Value +05:09:47 ============================================================================ +05:09:47 [ 1] [ 4] [0810] +05:09:47 [ 7] [ 10] [0319100852] +05:09:47 [ 11] [ 6] [154523] +05:09:47 [ 39] [ 2] [00] +05:09:47 [ 70] [ 3] [301] +05:09:47 ============================================================================ +05:09:47 Calculate Source COMM Id = 2 +05:09:47 ============================================================================ +05:09:47 + + +waiting on router queue for slot.... +05:09:49 ============================================================================ +05:09:49 Slot Id : <26> +05:09:49 Transaction Type : REQUEST +05:09:49 Received From : +05:09:49 ============================================================================ +05:09:49 FNo. Len. Field Value +05:09:49 ============================================================================ +05:09:49 [ 1] [ 4] [0800] +05:09:49 [ 7] [ 10] [0320122137] +05:09:49 [ 11] [ 6] [052137] +05:09:49 [ 37] [ 12] [57905052137] +05:09:49 [ 70] [ 3] [301] +05:09:49 ============================================================================ +05:09:49 + + +waiting on router queue for slot.... +05:09:49 Sending to : +05:09:49 ============================================================================ +05:09:49 ============================================================================ +05:09:49 Slot Id : <26> +05:09:49 Transaction Type : RESPONSE +05:09:49 Received From : +05:09:49 ============================================================================ +05:09:49 FNo. Len. Field Value +05:09:49 ============================================================================ +05:09:49 [ 1] [ 4] [0810] +05:09:49 [ 7] [ 10] [0320122137] +05:09:49 [ 11] [ 6] [052137] +05:09:49 [ 37] [ 12] [579050521370] +05:09:49 [ 39] [ 2] [00] +05:09:49 [ 70] [ 3] [810] +05:09:49 ============================================================================ +05:09:49 Calculate Source COMM Id = 6 +05:09:49 ============================================================================ +05:09:49 + + +waiting on router queue for slot.... +05:09:57 ============================================================================ +05:09:57 Slot Id : <46> +05:09:57 Transaction Type : REQUEST +05:09:57 Received From : +05:09:57 ============================================================================ +05:09:57 FNo. Len. Field Value +05:09:57 ============================================================================ +05:09:57 [ 1] [ 4] [0800] +05:09:57 [ 7] [ 10] [0319221742] +05:09:57 [ 11] [ 6] [006685] +05:09:57 [ 37] [ 12] [57905006685] +05:09:57 [ 70] [ 3] [301] +05:09:57 ============================================================================ +05:09:57 + + +waiting on router queue for slot.... +05:09:57 Sending to : +05:09:57 ============================================================================ +05:09:57 ============================================================================ +05:09:57 Slot Id : <46> +05:09:57 Transaction Type : RESPONSE +05:09:57 Received From : +05:09:57 ============================================================================ +05:09:57 FNo. Len. Field Value +05:09:57 ============================================================================ +05:09:57 [ 1] [ 4] [0810] +05:09:57 [ 7] [ 10] [0319221742] +05:09:57 [ 11] [ 6] [006685] +05:09:57 [ 37] [ 12] [579050066850] +05:09:57 [ 39] [ 2] [00] +05:09:57 [ 70] [ 3] [810] +05:09:57 ============================================================================ +05:09:57 Calculate Source COMM Id = 1 +05:09:57 ============================================================================ +05:09:57 + + +waiting on router queue for slot.... +05:10:01 ============================================================================ +05:10:01 Slot Id : <19> +05:10:01 Transaction Type : REQUEST +05:10:01 Received From : +05:10:01 ============================================================================ +05:10:01 FNo. Len. Field Value +05:10:01 ============================================================================ +05:10:01 [ 1] [ 4] [0800] +05:10:01 [ 7] [ 10] [0319100908] +05:10:01 [ 11] [ 6] [154524] +05:10:01 [ 70] [ 3] [301] +05:10:01 ============================================================================ +05:10:01 + + +waiting on router queue for slot.... +05:10:01 Sending to : +05:10:01 ============================================================================ +05:10:01 ============================================================================ +05:10:01 Slot Id : <19> +05:10:01 Transaction Type : RESPONSE +05:10:01 Received From : +05:10:01 ============================================================================ +05:10:01 FNo. Len. Field Value +05:10:01 ============================================================================ +05:10:01 [ 1] [ 4] [0810] +05:10:01 [ 7] [ 10] [0319100908] +05:10:01 [ 11] [ 6] [154524] +05:10:01 [ 39] [ 2] [00] +05:10:01 [ 70] [ 3] [301] +05:10:01 ============================================================================ +05:10:01 Calculate Source COMM Id = 2 +05:10:01 ============================================================================ +05:10:01 + + +waiting on router queue for slot.... +05:10:13 ============================================================================ +05:10:13 Slot Id : <69> +05:10:13 Transaction Type : REQUEST +05:10:13 Received From : +05:10:13 ============================================================================ +05:10:13 FNo. Len. Field Value +05:10:13 ============================================================================ +05:10:13 [ 1] [ 4] [0800] +05:10:13 [ 7] [ 10] [0319100919] +05:10:13 [ 11] [ 6] [154525] +05:10:13 [ 70] [ 3] [301] +05:10:13 ============================================================================ +05:10:13 + + +waiting on router queue for slot.... +05:10:13 Sending to : +05:10:13 ============================================================================ +05:10:13 ============================================================================ +05:10:13 Slot Id : <69> +05:10:13 Transaction Type : RESPONSE +05:10:13 Received From : +05:10:13 ============================================================================ +05:10:13 FNo. Len. Field Value +05:10:13 ============================================================================ +05:10:13 [ 1] [ 4] [0810] +05:10:13 [ 7] [ 10] [0319100919] +05:10:13 [ 11] [ 6] [154525] +05:10:13 [ 39] [ 2] [00] +05:10:13 [ 70] [ 3] [301] +05:10:13 ============================================================================ +05:10:13 Calculate Source COMM Id = 2 +05:10:13 ============================================================================ +05:10:13 + + +waiting on router queue for slot.... +05:10:24 ============================================================================ +05:10:24 Slot Id : <47> +05:10:24 Transaction Type : REQUEST +05:10:24 Received From : +05:10:24 ============================================================================ +05:10:24 FNo. Len. Field Value +05:10:24 ============================================================================ +05:10:24 [ 1] [ 4] [0800] +05:10:24 [ 7] [ 10] [0319100931] +05:10:24 [ 11] [ 6] [154526] +05:10:24 [ 70] [ 3] [301] +05:10:24 ============================================================================ +05:10:24 + + +waiting on router queue for slot.... +05:10:24 Sending to : +05:10:24 ============================================================================ +05:10:24 ============================================================================ +05:10:24 Slot Id : <47> +05:10:24 Transaction Type : RESPONSE +05:10:24 Received From : +05:10:24 ============================================================================ +05:10:24 FNo. Len. Field Value +05:10:24 ============================================================================ +05:10:24 [ 1] [ 4] [0810] +05:10:24 [ 7] [ 10] [0319100931] +05:10:24 [ 11] [ 6] [154526] +05:10:24 [ 39] [ 2] [00] +05:10:24 [ 70] [ 3] [301] +05:10:24 ============================================================================ +05:10:24 Calculate Source COMM Id = 2 +05:10:24 ============================================================================ +05:10:24 + + +waiting on router queue for slot.... +05:10:35 ============================================================================ +05:10:35 Slot Id : <58> +05:10:35 Transaction Type : REQUEST +05:10:35 Received From : +05:10:35 ============================================================================ +05:10:35 FNo. Len. Field Value +05:10:35 ============================================================================ +05:10:35 [ 1] [ 4] [0800] +05:10:35 [ 7] [ 10] [0319100942] +05:10:35 [ 11] [ 6] [154527] +05:10:35 [ 70] [ 3] [301] +05:10:35 ============================================================================ +05:10:35 + + +waiting on router queue for slot.... +05:10:35 Sending to : +05:10:35 ============================================================================ +05:10:35 ============================================================================ +05:10:35 Slot Id : <58> +05:10:35 Transaction Type : RESPONSE +05:10:35 Received From : +05:10:35 ============================================================================ +05:10:35 FNo. Len. Field Value +05:10:35 ============================================================================ +05:10:35 [ 1] [ 4] [0810] +05:10:35 [ 7] [ 10] [0319100942] +05:10:35 [ 11] [ 6] [154527] +05:10:35 [ 39] [ 2] [00] +05:10:35 [ 70] [ 3] [301] +05:10:35 ============================================================================ +05:10:35 Calculate Source COMM Id = 2 +05:10:35 ============================================================================ +05:10:35 + + +waiting on router queue for slot.... +05:10:36 ============================================================================ +05:10:36 Slot Id : <78> +05:10:36 Transaction Type : REQUEST +05:10:36 Received From : +05:10:36 ============================================================================ +05:10:36 FNo. Len. Field Value +05:10:36 ============================================================================ +05:10:36 [ 1] [ 4] [0800] +05:10:36 [ 2] [ 5] [02531] +05:10:36 [ 3] [ 6] [579058] +05:10:36 [ 7] [ 10] [0319221036] +05:10:36 [ 11] [ 6] [806712] +05:10:36 [ 15] [ 10] [0319221036] +05:10:36 [ 37] [ 11] [57905806712] +05:10:36 [ 70] [ 3] [001] +05:10:36 ============================================================================ +05:10:36 + + +waiting on router queue for slot.... +05:10:36 ============================================================================ +05:10:36 Slot Id : <78> +05:10:36 Transaction Type : RESPONSE +05:10:36 Received From : +05:10:36 ============================================================================ +05:10:36 FNo. Len. Field Value +05:10:36 ============================================================================ +05:10:36 [ 1] [ 4] [0810] +05:10:36 [ 7] [ 10] [0319221036] +05:10:36 [ 11] [ 6] [806712] +05:10:36 [ 15] [ 4] [0319] +05:10:36 [ 37] [ 12] [57905806712] +05:10:36 [ 39] [ 2] [00] +05:10:36 [ 70] [ 3] [001] +05:10:36 ============================================================================ +05:10:36 Sending to : +05:10:36 ============================================================================ +05:10:36 + + +waiting on router queue for slot.... +05:10:46 ============================================================================ +05:10:46 Slot Id : <54> +05:10:46 Transaction Type : REQUEST +05:10:46 Received From : +05:10:46 ============================================================================ +05:10:46 FNo. Len. Field Value +05:10:46 ============================================================================ +05:10:46 [ 1] [ 4] [0800] +05:10:46 [ 7] [ 10] [0319100952] +05:10:46 [ 11] [ 6] [154528] +05:10:46 [ 70] [ 3] [301] +05:10:46 ============================================================================ +05:10:46 + + +waiting on router queue for slot.... +05:10:46 Sending to : +05:10:46 ============================================================================ +05:10:46 ============================================================================ +05:10:46 Slot Id : <54> +05:10:46 Transaction Type : RESPONSE +05:10:46 Received From : +05:10:46 ============================================================================ +05:10:46 FNo. Len. Field Value +05:10:46 ============================================================================ +05:10:46 [ 1] [ 4] [0810] +05:10:46 [ 7] [ 10] [0319100952] +05:10:46 [ 11] [ 6] [154528] +05:10:46 [ 39] [ 2] [00] +05:10:46 [ 70] [ 3] [301] +05:10:46 ============================================================================ +05:10:46 Calculate Source COMM Id = 2 +05:10:46 ============================================================================ +05:10:46 + + +waiting on router queue for slot.... +05:10:54 ============================================================================ +05:10:54 Slot Id : <81> +05:10:54 Transaction Type : REQUEST +05:10:54 Received From : +05:10:54 ============================================================================ +05:10:54 FNo. Len. Field Value +05:10:54 ============================================================================ +05:10:54 [ 1] [ 4] [0800] +05:10:54 [ 7] [ 10] [0320122242] +05:10:54 [ 11] [ 6] [052242] +05:10:54 [ 37] [ 12] [57905052242] +05:10:54 [ 70] [ 3] [301] +05:10:54 ============================================================================ +05:10:54 + + +waiting on router queue for slot.... +05:10:54 Sending to : +05:10:54 ============================================================================ +05:10:54 ============================================================================ +05:10:54 Slot Id : <81> +05:10:54 Transaction Type : RESPONSE +05:10:54 Received From : +05:10:54 ============================================================================ +05:10:54 FNo. Len. Field Value +05:10:54 ============================================================================ +05:10:54 [ 1] [ 4] [0810] +05:10:54 [ 7] [ 10] [0320122242] +05:10:54 [ 11] [ 6] [052242] +05:10:54 [ 37] [ 12] [579050522420] +05:10:54 [ 39] [ 2] [00] +05:10:54 [ 70] [ 3] [810] +05:10:54 ============================================================================ +05:10:54 Calculate Source COMM Id = 6 +05:10:54 ============================================================================ +05:10:54 + + +waiting on router queue for slot.... +05:10:57 ============================================================================ +05:10:57 Slot Id : <24> +05:10:57 Transaction Type : REQUEST +05:10:57 Received From : +05:10:57 ============================================================================ +05:10:57 FNo. Len. Field Value +05:10:57 ============================================================================ +05:10:57 [ 1] [ 4] [0800] +05:10:57 [ 7] [ 10] [0319101004] +05:10:57 [ 11] [ 6] [154529] +05:10:57 [ 70] [ 3] [301] +05:10:57 ============================================================================ +05:10:57 + + +waiting on router queue for slot.... +05:10:57 Sending to : +05:10:57 ============================================================================ +05:10:57 ============================================================================ +05:10:57 Slot Id : <24> +05:10:57 Transaction Type : RESPONSE +05:10:57 Received From : +05:10:57 ============================================================================ +05:10:57 FNo. Len. Field Value +05:10:57 ============================================================================ +05:10:57 [ 1] [ 4] [0810] +05:10:57 [ 7] [ 10] [0319101004] +05:10:57 [ 11] [ 6] [154529] +05:10:57 [ 39] [ 2] [00] +05:10:57 [ 70] [ 3] [301] +05:10:57 ============================================================================ +05:10:57 Calculate Source COMM Id = 2 +05:10:57 ============================================================================ +05:10:57 + + +waiting on router queue for slot.... +05:11:08 ============================================================================ +05:11:08 Slot Id : <57> +05:11:08 Transaction Type : REQUEST +05:11:08 Received From : +05:11:08 ============================================================================ +05:11:08 FNo. Len. Field Value +05:11:08 ============================================================================ +05:11:08 [ 1] [ 4] [0800] +05:11:08 [ 7] [ 10] [0319101014] +05:11:08 [ 11] [ 6] [154530] +05:11:08 [ 70] [ 3] [301] +05:11:08 ============================================================================ +05:11:08 + + +waiting on router queue for slot.... +05:11:08 Sending to : +05:11:08 ============================================================================ +05:11:08 ============================================================================ +05:11:08 Slot Id : <57> +05:11:08 Transaction Type : RESPONSE +05:11:08 Received From : +05:11:08 ============================================================================ +05:11:08 FNo. Len. Field Value +05:11:08 ============================================================================ +05:11:08 [ 1] [ 4] [0810] +05:11:08 [ 7] [ 10] [0319101014] +05:11:08 [ 11] [ 6] [154530] +05:11:08 [ 39] [ 2] [00] +05:11:08 [ 70] [ 3] [301] +05:11:08 ============================================================================ +05:11:08 Calculate Source COMM Id = 2 +05:11:08 ============================================================================ +05:11:08 + + +waiting on router queue for slot.... +05:11:18 ============================================================================ +05:11:18 Slot Id : <34> +05:11:18 Transaction Type : REQUEST +05:11:18 Received From : +05:11:18 ============================================================================ +05:11:18 FNo. Len. Field Value +05:11:18 ============================================================================ +05:11:18 [ 1] [ 4] [0800] +05:11:18 [ 7] [ 10] [0319101025] +05:11:18 [ 11] [ 6] [154531] +05:11:18 [ 70] [ 3] [301] +05:11:18 ============================================================================ +05:11:18 + + +waiting on router queue for slot.... +05:11:18 Sending to : +05:11:18 ============================================================================ +05:11:18 ============================================================================ +05:11:18 Slot Id : <34> +05:11:18 Transaction Type : RESPONSE +05:11:18 Received From : +05:11:18 ============================================================================ +05:11:18 FNo. Len. Field Value +05:11:18 ============================================================================ +05:11:18 [ 1] [ 4] [0810] +05:11:18 [ 7] [ 10] [0319101025] +05:11:18 [ 11] [ 6] [154531] +05:11:18 [ 39] [ 2] [00] +05:11:18 [ 70] [ 3] [301] +05:11:18 ============================================================================ +05:11:18 Calculate Source COMM Id = 2 +05:11:18 ============================================================================ +05:11:18 + + +waiting on router queue for slot.... +05:11:22 ============================================================================ +05:11:22 Slot Id : <86> +05:11:22 Transaction Type : REQUEST +05:11:22 Received From : +05:11:22 ============================================================================ +05:11:22 FNo. Len. Field Value +05:11:22 ============================================================================ +05:11:22 [ 1] [ 4] [0800] +05:11:22 [ 7] [ 10] [0319220912] +05:11:22 [ 11] [ 6] [005555] +05:11:22 [ 37] [ 12] [57905005555] +05:11:22 [ 70] [ 3] [301] +05:11:22 ============================================================================ +05:11:22 + + +waiting on router queue for slot.... +05:11:22 Sending to : +05:11:22 ============================================================================ +05:11:22 ============================================================================ +05:11:22 Slot Id : <86> +05:11:22 Transaction Type : RESPONSE +05:11:22 Received From : +05:11:22 ============================================================================ +05:11:22 FNo. Len. Field Value +05:11:22 ============================================================================ +05:11:22 [ 1] [ 4] [0810] +05:11:22 [ 7] [ 10] [0319220912] +05:11:22 [ 11] [ 6] [005555] +05:11:22 [ 37] [ 12] [579050055550] +05:11:22 [ 39] [ 2] [00] +05:11:22 [ 70] [ 3] [810] +05:11:22 ============================================================================ +05:11:22 Calculate Source COMM Id = 4 +05:11:22 ============================================================================ +05:11:22 + + +waiting on router queue for slot.... +05:11:29 ============================================================================ +05:11:29 Slot Id : <42> +05:11:29 Transaction Type : REQUEST +05:11:29 Received From : +05:11:29 ============================================================================ +05:11:29 FNo. Len. Field Value +05:11:29 ============================================================================ +05:11:29 [ 1] [ 4] [0800] +05:11:29 [ 7] [ 10] [0319101036] +05:11:29 [ 11] [ 6] [154532] +05:11:29 [ 70] [ 3] [301] +05:11:29 ============================================================================ +05:11:29 + + +waiting on router queue for slot.... +05:11:29 Sending to : +05:11:29 ============================================================================ +05:11:29 ============================================================================ +05:11:29 Slot Id : <42> +05:11:29 Transaction Type : RESPONSE +05:11:29 Received From : +05:11:29 ============================================================================ +05:11:29 FNo. Len. Field Value +05:11:29 ============================================================================ +05:11:29 [ 1] [ 4] [0810] +05:11:29 [ 7] [ 10] [0319101036] +05:11:29 [ 11] [ 6] [154532] +05:11:29 [ 39] [ 2] [00] +05:11:29 [ 70] [ 3] [301] +05:11:29 ============================================================================ +05:11:29 Calculate Source COMM Id = 2 +05:11:29 ============================================================================ +05:11:29 + + +waiting on router queue for slot.... +05:11:38 ============================================================================ +05:11:38 Slot Id : <88> +05:11:38 Transaction Type : REQUEST +05:11:38 Received From : +05:11:38 ============================================================================ +05:11:38 FNo. Len. Field Value +05:11:38 ============================================================================ +05:11:38 [ 1] [ 4] [0800] +05:11:38 [ 2] [ 5] [02531] +05:11:38 [ 3] [ 6] [579058] +05:11:38 [ 7] [ 10] [0319221138] +05:11:38 [ 11] [ 6] [806713] +05:11:38 [ 15] [ 10] [0319221138] +05:11:38 [ 37] [ 11] [57905806713] +05:11:38 [ 70] [ 3] [001] +05:11:38 ============================================================================ +05:11:38 + + +waiting on router queue for slot.... +05:11:38 ============================================================================ +05:11:38 Slot Id : <88> +05:11:38 Transaction Type : RESPONSE +05:11:38 Received From : +05:11:38 ============================================================================ +05:11:38 FNo. Len. Field Value +05:11:38 ============================================================================ +05:11:38 [ 1] [ 4] [0810] +05:11:38 [ 7] [ 10] [0319221138] +05:11:38 [ 11] [ 6] [806713] +05:11:38 [ 15] [ 4] [0319] +05:11:38 [ 37] [ 12] [57905806713] +05:11:38 [ 39] [ 2] [00] +05:11:38 [ 70] [ 3] [001] +05:11:38 ============================================================================ +05:11:38 Sending to : +05:11:38 ============================================================================ +05:11:38 + + +waiting on router queue for slot.... +05:11:40 ============================================================================ +05:11:40 Slot Id : <49> +05:11:40 Transaction Type : REQUEST +05:11:40 Received From : +05:11:40 ============================================================================ +05:11:40 FNo. Len. Field Value +05:11:40 ============================================================================ +05:11:40 [ 1] [ 4] [0800] +05:11:40 [ 7] [ 10] [0319101046] +05:11:40 [ 11] [ 6] [154533] +05:11:40 [ 70] [ 3] [301] +05:11:40 ============================================================================ +05:11:40 + + +waiting on router queue for slot.... +05:11:40 Sending to : +05:11:40 ============================================================================ +05:11:40 ============================================================================ +05:11:40 Slot Id : <49> +05:11:40 Transaction Type : RESPONSE +05:11:40 Received From : +05:11:40 ============================================================================ +05:11:40 FNo. Len. Field Value +05:11:40 ============================================================================ +05:11:40 [ 1] [ 4] [0810] +05:11:40 [ 7] [ 10] [0319101046] +05:11:40 [ 11] [ 6] [154533] +05:11:40 [ 39] [ 2] [00] +05:11:40 [ 70] [ 3] [301] +05:11:40 ============================================================================ +05:11:40 Calculate Source COMM Id = 2 +05:11:40 ============================================================================ +05:11:40 + + +waiting on router queue for slot.... +05:11:55 ============================================================================ +05:11:55 Slot Id : <5> +05:11:55 Transaction Type : REQUEST +05:11:55 Received From : +05:11:55 ============================================================================ +05:11:55 FNo. Len. Field Value +05:11:55 ============================================================================ +05:11:55 [ 1] [ 4] [0800] +05:11:55 [ 7] [ 10] [0319101102] +05:11:55 [ 11] [ 6] [154534] +05:11:55 [ 70] [ 3] [301] +05:11:55 ============================================================================ +05:11:55 + + +waiting on router queue for slot.... +05:11:55 Sending to : +05:11:55 ============================================================================ +05:11:55 ============================================================================ +05:11:55 Slot Id : <5> +05:11:55 Transaction Type : RESPONSE +05:11:55 Received From : +05:11:55 ============================================================================ +05:11:55 FNo. Len. Field Value +05:11:55 ============================================================================ +05:11:55 [ 1] [ 4] [0810] +05:11:55 [ 7] [ 10] [0319101102] +05:11:55 [ 11] [ 6] [154534] +05:11:55 [ 39] [ 2] [00] +05:11:55 [ 70] [ 3] [301] +05:11:55 ============================================================================ +05:11:55 Calculate Source COMM Id = 2 +05:11:55 ============================================================================ +05:11:55 + + +waiting on router queue for slot.... +05:11:59 ============================================================================ +05:11:59 Slot Id : <89> +05:11:59 Transaction Type : REQUEST +05:11:59 Received From : +05:11:59 ============================================================================ +05:11:59 FNo. Len. Field Value +05:11:59 ============================================================================ +05:11:59 [ 1] [ 4] [0800] +05:11:59 [ 7] [ 10] [0320122347] +05:11:59 [ 11] [ 6] [052347] +05:11:59 [ 37] [ 12] [57905052347] +05:11:59 [ 70] [ 3] [301] +05:11:59 ============================================================================ +05:11:59 + + +waiting on router queue for slot.... +05:11:59 Sending to : +05:11:59 ============================================================================ +05:11:59 ============================================================================ +05:11:59 Slot Id : <89> +05:11:59 Transaction Type : RESPONSE +05:11:59 Received From : +05:11:59 ============================================================================ +05:11:59 FNo. Len. Field Value +05:11:59 ============================================================================ +05:11:59 [ 1] [ 4] [0810] +05:11:59 [ 7] [ 10] [0320122347] +05:11:59 [ 11] [ 6] [052347] +05:11:59 [ 37] [ 12] [579050523470] +05:11:59 [ 39] [ 2] [00] +05:11:59 [ 70] [ 3] [810] +05:11:59 ============================================================================ +05:11:59 Calculate Source COMM Id = 6 +05:11:59 ============================================================================ +05:11:59 + + +waiting on router queue for slot.... +05:12:06 ============================================================================ +05:12:06 Slot Id : <79> +05:12:06 Transaction Type : REQUEST +05:12:06 Received From : +05:12:06 ============================================================================ +05:12:06 FNo. Len. Field Value +05:12:06 ============================================================================ +05:12:06 [ 1] [ 4] [0800] +05:12:06 [ 7] [ 10] [0319101112] +05:12:06 [ 11] [ 6] [154535] +05:12:06 [ 70] [ 3] [301] +05:12:06 ============================================================================ +05:12:06 + + +waiting on router queue for slot.... +05:12:06 Sending to : +05:12:06 ============================================================================ +05:12:06 ============================================================================ +05:12:06 Slot Id : <79> +05:12:06 Transaction Type : RESPONSE +05:12:06 Received From : +05:12:06 ============================================================================ +05:12:06 FNo. Len. Field Value +05:12:06 ============================================================================ +05:12:06 [ 1] [ 4] [0810] +05:12:06 [ 7] [ 10] [0319101112] +05:12:06 [ 11] [ 6] [154535] +05:12:06 [ 39] [ 2] [00] +05:12:06 [ 70] [ 3] [301] +05:12:06 ============================================================================ +05:12:06 Calculate Source COMM Id = 2 +05:12:06 ============================================================================ +05:12:06 + + +waiting on router queue for slot.... +05:12:16 ============================================================================ +05:12:16 Slot Id : <59> +05:12:16 Transaction Type : REQUEST +05:12:16 Received From : +05:12:16 ============================================================================ +05:12:16 FNo. Len. Field Value +05:12:16 ============================================================================ +05:12:16 [ 1] [ 4] [0800] +05:12:16 [ 7] [ 10] [0319101123] +05:12:16 [ 11] [ 6] [154536] +05:12:16 [ 70] [ 3] [301] +05:12:16 ============================================================================ +05:12:16 + + +waiting on router queue for slot.... +05:12:16 Sending to : +05:12:16 ============================================================================ +05:12:16 ============================================================================ +05:12:16 Slot Id : <59> +05:12:16 Transaction Type : RESPONSE +05:12:16 Received From : +05:12:16 ============================================================================ +05:12:16 FNo. Len. Field Value +05:12:16 ============================================================================ +05:12:16 [ 1] [ 4] [0810] +05:12:16 [ 7] [ 10] [0319101123] +05:12:16 [ 11] [ 6] [154536] +05:12:16 [ 39] [ 2] [00] +05:12:16 [ 70] [ 3] [301] +05:12:16 ============================================================================ +05:12:16 Calculate Source COMM Id = 2 +05:12:16 ============================================================================ +05:12:16 + + +waiting on router queue for slot.... +05:12:27 ============================================================================ +05:12:27 Slot Id : <84> +05:12:27 Transaction Type : REQUEST +05:12:27 Received From : +05:12:27 ============================================================================ +05:12:27 FNo. Len. Field Value +05:12:27 ============================================================================ +05:12:27 [ 1] [ 4] [0800] +05:12:27 [ 7] [ 10] [0319101133] +05:12:27 [ 11] [ 6] [154537] +05:12:27 [ 70] [ 3] [301] +05:12:27 ============================================================================ +05:12:27 + + +waiting on router queue for slot.... +05:12:27 Sending to : +05:12:27 ============================================================================ +05:12:27 ============================================================================ +05:12:27 Slot Id : <84> +05:12:27 Transaction Type : RESPONSE +05:12:27 Received From : +05:12:27 ============================================================================ +05:12:27 FNo. Len. Field Value +05:12:27 ============================================================================ +05:12:27 [ 1] [ 4] [0810] +05:12:27 [ 7] [ 10] [0319101133] +05:12:27 [ 11] [ 6] [154537] +05:12:27 [ 39] [ 2] [00] +05:12:27 [ 70] [ 3] [301] +05:12:27 ============================================================================ +05:12:27 Calculate Source COMM Id = 2 +05:12:27 ============================================================================ +05:12:27 + + +waiting on router queue for slot.... +05:12:38 ============================================================================ +05:12:38 Slot Id : <62> +05:12:38 Transaction Type : REQUEST +05:12:38 Received From : +05:12:38 ============================================================================ +05:12:38 FNo. Len. Field Value +05:12:38 ============================================================================ +05:12:38 [ 1] [ 4] [0800] +05:12:38 [ 7] [ 10] [0319101144] +05:12:38 [ 11] [ 6] [154538] +05:12:38 [ 70] [ 3] [301] +05:12:38 ============================================================================ +05:12:38 + + +waiting on router queue for slot.... +05:12:38 Sending to : +05:12:38 ============================================================================ +05:12:38 ============================================================================ +05:12:38 Slot Id : <62> +05:12:38 Transaction Type : RESPONSE +05:12:38 Received From : +05:12:38 ============================================================================ +05:12:38 FNo. Len. Field Value +05:12:38 ============================================================================ +05:12:38 [ 1] [ 4] [0810] +05:12:38 [ 7] [ 10] [0319101144] +05:12:38 [ 11] [ 6] [154538] +05:12:38 [ 39] [ 2] [00] +05:12:38 [ 70] [ 3] [301] +05:12:38 ============================================================================ +05:12:38 Calculate Source COMM Id = 2 +05:12:38 ============================================================================ +05:12:38 + + +waiting on router queue for slot.... +05:12:40 ============================================================================ +05:12:40 Slot Id : <67> +05:12:40 Transaction Type : REQUEST +05:12:40 Received From : +05:12:40 ============================================================================ +05:12:40 FNo. Len. Field Value +05:12:40 ============================================================================ +05:12:40 [ 1] [ 4] [0800] +05:12:40 [ 2] [ 5] [02531] +05:12:40 [ 3] [ 6] [579058] +05:12:40 [ 7] [ 10] [0319221240] +05:12:40 [ 11] [ 6] [806714] +05:12:40 [ 15] [ 10] [0319221240] +05:12:40 [ 37] [ 11] [57905806714] +05:12:40 [ 70] [ 3] [001] +05:12:40 ============================================================================ +05:12:40 + + +waiting on router queue for slot.... +05:12:40 ============================================================================ +05:12:40 Slot Id : <67> +05:12:40 Transaction Type : RESPONSE +05:12:40 Received From : +05:12:40 ============================================================================ +05:12:40 FNo. Len. Field Value +05:12:40 ============================================================================ +05:12:40 [ 1] [ 4] [0810] +05:12:40 [ 7] [ 10] [0319221240] +05:12:40 [ 11] [ 6] [806714] +05:12:40 [ 15] [ 4] [0319] +05:12:40 [ 37] [ 12] [57905806714] +05:12:40 [ 39] [ 2] [00] +05:12:40 [ 70] [ 3] [001] +05:12:40 ============================================================================ +05:12:40 Sending to : +05:12:40 ============================================================================ +05:12:40 + + +waiting on router queue for slot.... +05:12:48 ============================================================================ +05:12:48 Slot Id : <99> +05:12:48 Transaction Type : REQUEST +05:12:48 Received From : +05:12:48 ============================================================================ +05:12:48 FNo. Len. Field Value +05:12:48 ============================================================================ +05:12:48 [ 1] [ 4] [0800] +05:12:48 [ 7] [ 10] [0319101155] +05:12:48 [ 11] [ 6] [154539] +05:12:48 [ 70] [ 3] [301] +05:12:48 ============================================================================ +05:12:48 + + +waiting on router queue for slot.... +05:12:48 Sending to : +05:12:48 ============================================================================ +05:12:48 ============================================================================ +05:12:48 Slot Id : <99> +05:12:48 Transaction Type : RESPONSE +05:12:48 Received From : +05:12:48 ============================================================================ +05:12:48 FNo. Len. Field Value +05:12:48 ============================================================================ +05:12:48 [ 1] [ 4] [0810] +05:12:48 [ 7] [ 10] [0319101155] +05:12:48 [ 11] [ 6] [154539] +05:12:48 [ 39] [ 2] [00] +05:12:48 [ 70] [ 3] [301] +05:12:48 ============================================================================ +05:12:48 Calculate Source COMM Id = 2 +05:12:48 ============================================================================ +05:12:48 + + +waiting on router queue for slot.... +05:12:59 ============================================================================ +05:12:59 Slot Id : <39> +05:12:59 Transaction Type : REQUEST +05:12:59 Received From : +05:12:59 ============================================================================ +05:12:59 FNo. Len. Field Value +05:12:59 ============================================================================ +05:12:59 [ 1] [ 4] [0800] +05:12:59 [ 7] [ 10] [0319101206] +05:12:59 [ 11] [ 6] [154540] +05:12:59 [ 70] [ 3] [301] +05:12:59 ============================================================================ +05:12:59 + + +waiting on router queue for slot.... +05:12:59 Sending to : +05:12:59 ============================================================================ +05:12:59 ============================================================================ +05:12:59 Slot Id : <39> +05:12:59 Transaction Type : RESPONSE +05:12:59 Received From : +05:12:59 ============================================================================ +05:12:59 FNo. Len. Field Value +05:12:59 ============================================================================ +05:12:59 [ 1] [ 4] [0810] +05:12:59 [ 7] [ 10] [0319101206] +05:12:59 [ 11] [ 6] [154540] +05:12:59 [ 39] [ 2] [00] +05:12:59 [ 70] [ 3] [301] +05:12:59 ============================================================================ +05:12:59 Calculate Source COMM Id = 2 +05:12:59 ============================================================================ +05:12:59 + + +waiting on router queue for slot.... +05:13:04 ============================================================================ +05:13:04 Slot Id : <64> +05:13:04 Transaction Type : REQUEST +05:13:04 Received From : +05:13:04 ============================================================================ +05:13:04 FNo. Len. Field Value +05:13:04 ============================================================================ +05:13:04 [ 1] [ 4] [0800] +05:13:04 [ 7] [ 10] [0320122452] +05:13:04 [ 11] [ 6] [052452] +05:13:04 [ 37] [ 12] [57905052452] +05:13:04 [ 70] [ 3] [301] +05:13:04 ============================================================================ +05:13:04 + + +waiting on router queue for slot.... +05:13:04 Sending to : +05:13:04 ============================================================================ +05:13:04 ============================================================================ +05:13:04 Slot Id : <64> +05:13:04 Transaction Type : RESPONSE +05:13:04 Received From : +05:13:04 ============================================================================ +05:13:04 FNo. Len. Field Value +05:13:04 ============================================================================ +05:13:04 [ 1] [ 4] [0810] +05:13:04 [ 7] [ 10] [0320122452] +05:13:04 [ 11] [ 6] [052452] +05:13:04 [ 37] [ 12] [579050524520] +05:13:04 [ 39] [ 2] [00] +05:13:04 [ 70] [ 3] [810] +05:13:04 ============================================================================ +05:13:04 Calculate Source COMM Id = 6 +05:13:04 ============================================================================ +05:13:04 + + +waiting on router queue for slot.... +05:13:12 ============================================================================ +05:13:12 Slot Id : <51> +05:13:12 Transaction Type : REQUEST +05:13:12 Received From : +05:13:12 ============================================================================ +05:13:12 FNo. Len. Field Value +05:13:12 ============================================================================ +05:13:12 [ 1] [ 4] [0800] +05:13:12 [ 7] [ 10] [0319101217] +05:13:12 [ 11] [ 6] [154541] +05:13:12 [ 70] [ 3] [301] +05:13:12 ============================================================================ +05:13:12 + + +waiting on router queue for slot.... +05:13:12 Sending to : +05:13:12 ============================================================================ +05:13:12 ============================================================================ +05:13:12 Slot Id : <51> +05:13:12 Transaction Type : RESPONSE +05:13:12 Received From : +05:13:12 ============================================================================ +05:13:12 FNo. Len. Field Value +05:13:12 ============================================================================ +05:13:12 [ 1] [ 4] [0810] +05:13:12 [ 7] [ 10] [0319101217] +05:13:12 [ 11] [ 6] [154541] +05:13:12 [ 39] [ 2] [00] +05:13:12 [ 70] [ 3] [301] +05:13:12 ============================================================================ +05:13:12 Calculate Source COMM Id = 2 +05:13:12 ============================================================================ +05:13:12 + + +waiting on router queue for slot.... +05:13:26 ============================================================================ +05:13:26 Slot Id : <82> +05:13:26 Transaction Type : REQUEST +05:13:26 Received From : +05:13:26 ============================================================================ +05:13:26 FNo. Len. Field Value +05:13:26 ============================================================================ +05:13:26 [ 1] [ 4] [0800] +05:13:26 [ 7] [ 10] [0319101233] +05:13:26 [ 11] [ 6] [154542] +05:13:26 [ 70] [ 3] [301] +05:13:26 ============================================================================ +05:13:26 + + +waiting on router queue for slot.... +05:13:26 Sending to : +05:13:26 ============================================================================ +05:13:26 ============================================================================ +05:13:26 Slot Id : <82> +05:13:26 Transaction Type : RESPONSE +05:13:26 Received From : +05:13:26 ============================================================================ +05:13:26 FNo. Len. Field Value +05:13:26 ============================================================================ +05:13:26 [ 1] [ 4] [0810] +05:13:26 [ 7] [ 10] [0319101233] +05:13:26 [ 11] [ 6] [154542] +05:13:26 [ 39] [ 2] [00] +05:13:26 [ 70] [ 3] [301] +05:13:26 ============================================================================ +05:13:26 Calculate Source COMM Id = 2 +05:13:26 ============================================================================ +05:13:26 + + +waiting on router queue for slot.... +05:13:37 ============================================================================ +05:13:37 Slot Id : <93> +05:13:37 Transaction Type : REQUEST +05:13:37 Received From : +05:13:37 ============================================================================ +05:13:37 FNo. Len. Field Value +05:13:37 ============================================================================ +05:13:37 [ 1] [ 4] [0800] +05:13:37 [ 7] [ 10] [0319101243] +05:13:37 [ 11] [ 6] [154543] +05:13:37 [ 70] [ 3] [301] +05:13:37 ============================================================================ +05:13:37 + + +waiting on router queue for slot.... +05:13:37 Sending to : +05:13:37 ============================================================================ +05:13:37 ============================================================================ +05:13:37 Slot Id : <93> +05:13:37 Transaction Type : RESPONSE +05:13:37 Received From : +05:13:37 ============================================================================ +05:13:37 FNo. Len. Field Value +05:13:37 ============================================================================ +05:13:37 [ 1] [ 4] [0810] +05:13:37 [ 7] [ 10] [0319101243] +05:13:37 [ 11] [ 6] [154543] +05:13:37 [ 39] [ 2] [00] +05:13:37 [ 70] [ 3] [301] +05:13:37 ============================================================================ +05:13:37 Calculate Source COMM Id = 2 +05:13:37 ============================================================================ +05:13:37 + + +waiting on router queue for slot.... +05:13:42 ============================================================================ +05:13:42 Slot Id : <56> +05:13:42 Transaction Type : REQUEST +05:13:42 Received From : +05:13:42 ============================================================================ +05:13:42 FNo. Len. Field Value +05:13:42 ============================================================================ +05:13:42 [ 1] [ 4] [0800] +05:13:42 [ 2] [ 5] [02531] +05:13:42 [ 3] [ 6] [579058] +05:13:42 [ 7] [ 10] [0319221342] +05:13:42 [ 11] [ 6] [806715] +05:13:42 [ 15] [ 10] [0319221342] +05:13:42 [ 37] [ 11] [57905806715] +05:13:42 [ 70] [ 3] [001] +05:13:42 ============================================================================ +05:13:42 + + +waiting on router queue for slot.... +05:13:42 ============================================================================ +05:13:42 Slot Id : <56> +05:13:42 Transaction Type : RESPONSE +05:13:42 Received From : +05:13:42 ============================================================================ +05:13:42 FNo. Len. Field Value +05:13:42 ============================================================================ +05:13:42 [ 1] [ 4] [0810] +05:13:42 [ 7] [ 10] [0319221342] +05:13:42 [ 11] [ 6] [806715] +05:13:42 [ 15] [ 4] [0319] +05:13:42 [ 37] [ 12] [57905806715] +05:13:42 [ 39] [ 2] [00] +05:13:42 [ 70] [ 3] [001] +05:13:42 ============================================================================ +05:13:42 Sending to : +05:13:42 ============================================================================ +05:13:42 + + +waiting on router queue for slot.... +05:13:48 ============================================================================ +05:13:48 Slot Id : <91> +05:13:48 Transaction Type : REQUEST +05:13:48 Received From : +05:13:48 ============================================================================ +05:13:48 FNo. Len. Field Value +05:13:48 ============================================================================ +05:13:48 [ 1] [ 4] [0800] +05:13:48 [ 7] [ 10] [0319101254] +05:13:48 [ 11] [ 6] [154544] +05:13:48 [ 70] [ 3] [301] +05:13:48 ============================================================================ +05:13:48 + + +waiting on router queue for slot.... +05:13:48 Sending to : +05:13:48 ============================================================================ +05:13:48 ============================================================================ +05:13:48 Slot Id : <91> +05:13:48 Transaction Type : RESPONSE +05:13:48 Received From : +05:13:48 ============================================================================ +05:13:48 FNo. Len. Field Value +05:13:48 ============================================================================ +05:13:48 [ 1] [ 4] [0810] +05:13:48 [ 7] [ 10] [0319101254] +05:13:48 [ 11] [ 6] [154544] +05:13:48 [ 39] [ 2] [00] +05:13:48 [ 70] [ 3] [301] +05:13:48 ============================================================================ +05:13:48 Calculate Source COMM Id = 2 +05:13:48 ============================================================================ +05:13:48 + + +waiting on router queue for slot.... +05:13:58 ============================================================================ +05:13:58 Slot Id : <100> +05:13:58 Transaction Type : REQUEST +05:13:58 Received From : +05:13:58 ============================================================================ +05:13:58 FNo. Len. Field Value +05:13:58 ============================================================================ +05:13:58 [ 1] [ 4] [0800] +05:13:58 [ 7] [ 10] [0319101305] +05:13:58 [ 11] [ 6] [154545] +05:13:58 [ 70] [ 3] [301] +05:13:58 ============================================================================ +05:13:58 + + +waiting on router queue for slot.... +05:13:58 Sending to : +05:13:58 ============================================================================ +05:13:58 ============================================================================ +05:13:58 Slot Id : <100> +05:13:58 Transaction Type : RESPONSE +05:13:58 Received From : +05:13:58 ============================================================================ +05:13:58 FNo. Len. Field Value +05:13:58 ============================================================================ +05:13:58 [ 1] [ 4] [0810] +05:13:58 [ 7] [ 10] [0319101305] +05:13:58 [ 11] [ 6] [154545] +05:13:58 [ 39] [ 2] [00] +05:13:58 [ 70] [ 3] [301] +05:13:58 ============================================================================ +05:13:58 Calculate Source COMM Id = 2 +05:13:58 ============================================================================ +05:13:58 + + +waiting on router queue for slot.... +05:14:09 ============================================================================ +05:14:09 Slot Id : <77> +05:14:09 Transaction Type : REQUEST +05:14:09 Received From : +05:14:09 ============================================================================ +05:14:09 FNo. Len. Field Value +05:14:09 ============================================================================ +05:14:09 [ 1] [ 4] [0800] +05:14:09 [ 7] [ 10] [0320122557] +05:14:09 [ 11] [ 6] [052557] +05:14:09 [ 37] [ 12] [57905052557] +05:14:09 [ 70] [ 3] [301] +05:14:09 ============================================================================ +05:14:09 + + +waiting on router queue for slot.... +05:14:09 Sending to : +05:14:09 ============================================================================ +05:14:09 ============================================================================ +05:14:09 Slot Id : <77> +05:14:09 Transaction Type : RESPONSE +05:14:09 Received From : +05:14:09 ============================================================================ +05:14:09 FNo. Len. Field Value +05:14:09 ============================================================================ +05:14:09 [ 1] [ 4] [0810] +05:14:09 [ 7] [ 10] [0320122557] +05:14:09 [ 11] [ 6] [052557] +05:14:09 [ 37] [ 12] [579050525570] +05:14:09 [ 39] [ 2] [00] +05:14:09 [ 70] [ 3] [810] +05:14:09 ============================================================================ +05:14:09 Calculate Source COMM Id = 6 +05:14:09 ============================================================================ +05:14:09 + + +waiting on router queue for slot.... +05:14:10 ============================================================================ +05:14:10 Slot Id : <65> +05:14:10 Transaction Type : REQUEST +05:14:10 Received From : +05:14:10 ============================================================================ +05:14:10 FNo. Len. Field Value +05:14:10 ============================================================================ +05:14:10 [ 1] [ 4] [0800] +05:14:10 [ 7] [ 10] [0319101316] +05:14:10 [ 11] [ 6] [154546] +05:14:10 [ 70] [ 3] [301] +05:14:10 ============================================================================ +05:14:10 + + +waiting on router queue for slot.... +05:14:10 Sending to : +05:14:10 ============================================================================ +05:14:10 ============================================================================ +05:14:10 Slot Id : <65> +05:14:10 Transaction Type : RESPONSE +05:14:10 Received From : +05:14:10 ============================================================================ +05:14:10 FNo. Len. Field Value +05:14:10 ============================================================================ +05:14:10 [ 1] [ 4] [0810] +05:14:10 [ 7] [ 10] [0319101316] +05:14:10 [ 11] [ 6] [154546] +05:14:10 [ 39] [ 2] [00] +05:14:10 [ 70] [ 3] [301] +05:14:10 ============================================================================ +05:14:10 Calculate Source COMM Id = 2 +05:14:10 ============================================================================ +05:14:10 + + +waiting on router queue for slot.... +05:14:21 ============================================================================ +05:14:21 Slot Id : <72> +05:14:21 Transaction Type : REQUEST +05:14:21 Received From : +05:14:21 ============================================================================ +05:14:21 FNo. Len. Field Value +05:14:21 ============================================================================ +05:14:21 [ 1] [ 4] [0800] +05:14:21 [ 7] [ 10] [0319101327] +05:14:21 [ 11] [ 6] [154547] +05:14:21 [ 70] [ 3] [301] +05:14:21 ============================================================================ +05:14:21 + + +waiting on router queue for slot.... +05:14:21 Sending to : +05:14:21 ============================================================================ +05:14:21 ============================================================================ +05:14:21 Slot Id : <72> +05:14:21 Transaction Type : RESPONSE +05:14:21 Received From : +05:14:21 ============================================================================ +05:14:21 FNo. Len. Field Value +05:14:21 ============================================================================ +05:14:21 [ 1] [ 4] [0810] +05:14:21 [ 7] [ 10] [0319101327] +05:14:21 [ 11] [ 6] [154547] +05:14:21 [ 39] [ 2] [00] +05:14:21 [ 70] [ 3] [301] +05:14:21 ============================================================================ +05:14:21 Calculate Source COMM Id = 2 +05:14:21 ============================================================================ +05:14:21 + + +waiting on router queue for slot.... +05:14:34 ============================================================================ +05:14:34 Slot Id : <106> +05:14:34 Transaction Type : REQUEST +05:14:34 Received From : +05:14:34 ============================================================================ +05:14:34 FNo. Len. Field Value +05:14:34 ============================================================================ +05:14:34 [ 1] [ 4] [0800] +05:14:34 [ 7] [ 10] [0319101342] +05:14:34 [ 11] [ 6] [154548] +05:14:34 [ 70] [ 3] [301] +05:14:34 ============================================================================ +05:14:34 + + +waiting on router queue for slot.... +05:14:34 Sending to : +05:14:34 ============================================================================ +05:14:34 ============================================================================ +05:14:34 Slot Id : <106> +05:14:34 Transaction Type : RESPONSE +05:14:34 Received From : +05:14:34 ============================================================================ +05:14:34 FNo. Len. Field Value +05:14:34 ============================================================================ +05:14:34 [ 1] [ 4] [0810] +05:14:34 [ 7] [ 10] [0319101342] +05:14:34 [ 11] [ 6] [154548] +05:14:34 [ 39] [ 2] [00] +05:14:34 [ 70] [ 3] [301] +05:14:34 ============================================================================ +05:14:34 Calculate Source COMM Id = 2 +05:14:34 ============================================================================ +05:14:34 + + +waiting on router queue for slot.... +05:14:44 ============================================================================ +05:14:44 Slot Id : <76> +05:14:44 Transaction Type : REQUEST +05:14:44 Received From : +05:14:44 ============================================================================ +05:14:44 FNo. Len. Field Value +05:14:44 ============================================================================ +05:14:44 [ 1] [ 4] [0800] +05:14:44 [ 2] [ 5] [02531] +05:14:44 [ 3] [ 6] [579058] +05:14:44 [ 7] [ 10] [0319221444] +05:14:44 [ 11] [ 6] [806716] +05:14:44 [ 15] [ 10] [0319221444] +05:14:44 [ 37] [ 11] [57905806716] +05:14:44 [ 70] [ 3] [001] +05:14:44 ============================================================================ +05:14:44 + + +waiting on router queue for slot.... +05:14:44 ============================================================================ +05:14:44 Slot Id : <76> +05:14:44 Transaction Type : RESPONSE +05:14:44 Received From : +05:14:44 ============================================================================ +05:14:44 FNo. Len. Field Value +05:14:44 ============================================================================ +05:14:44 [ 1] [ 4] [0810] +05:14:44 [ 7] [ 10] [0319221444] +05:14:44 [ 11] [ 6] [806716] +05:14:44 [ 15] [ 4] [0319] +05:14:44 [ 37] [ 12] [57905806716] +05:14:44 [ 39] [ 2] [00] +05:14:44 [ 70] [ 3] [001] +05:14:44 ============================================================================ +05:14:44 Sending to : +05:14:44 ============================================================================ +05:14:44 + + +waiting on router queue for slot.... +05:14:44 ============================================================================ +05:14:44 Slot Id : <66> +05:14:44 Transaction Type : REQUEST +05:14:44 Received From : +05:14:44 ============================================================================ +05:14:44 FNo. Len. Field Value +05:14:44 ============================================================================ +05:14:44 [ 1] [ 4] [0800] +05:14:44 [ 7] [ 10] [0319101353] +05:14:44 [ 11] [ 6] [154549] +05:14:44 [ 70] [ 3] [301] +05:14:44 ============================================================================ +05:14:44 + + +waiting on router queue for slot.... +05:14:44 Sending to : +05:14:44 ============================================================================ +05:14:44 ============================================================================ +05:14:44 Slot Id : <66> +05:14:44 Transaction Type : RESPONSE +05:14:44 Received From : +05:14:44 ============================================================================ +05:14:44 FNo. Len. Field Value +05:14:44 ============================================================================ +05:14:44 [ 1] [ 4] [0810] +05:14:44 [ 7] [ 10] [0319101353] +05:14:44 [ 11] [ 6] [154549] +05:14:44 [ 39] [ 2] [00] +05:14:44 [ 70] [ 3] [301] +05:14:44 ============================================================================ +05:14:44 Calculate Source COMM Id = 2 +05:14:44 ============================================================================ +05:14:44 + + +waiting on router queue for slot.... +05:14:55 ============================================================================ +05:14:55 Slot Id : <90> +05:14:55 Transaction Type : REQUEST +05:14:55 Received From : +05:14:55 ============================================================================ +05:14:55 FNo. Len. Field Value +05:14:55 ============================================================================ +05:14:55 [ 1] [ 4] [0800] +05:14:55 [ 7] [ 10] [0319222242] +05:14:55 [ 11] [ 6] [067027] +05:14:55 [ 37] [ 12] [57905067027] +05:14:55 [ 70] [ 3] [301] +05:14:55 ============================================================================ +05:14:55 + + +waiting on router queue for slot.... +05:14:55 Sending to : +05:14:55 ============================================================================ +05:14:55 ============================================================================ +05:14:55 Slot Id : <90> +05:14:55 Transaction Type : RESPONSE +05:14:55 Received From : +05:14:55 ============================================================================ +05:14:55 FNo. Len. Field Value +05:14:55 ============================================================================ +05:14:55 [ 1] [ 4] [0810] +05:14:55 [ 7] [ 10] [0319222242] +05:14:55 [ 11] [ 6] [067027] +05:14:55 [ 37] [ 12] [579050670270] +05:14:55 [ 39] [ 2] [00] +05:14:55 [ 70] [ 3] [810] +05:14:55 ============================================================================ +05:14:55 Calculate Source COMM Id = 1 +05:14:55 ============================================================================ +05:14:55 + + +waiting on router queue for slot.... +05:14:55 ============================================================================ +05:14:55 Slot Id : <114> +05:14:55 Transaction Type : REQUEST +05:14:55 Received From : +05:14:55 ============================================================================ +05:14:55 FNo. Len. Field Value +05:14:55 ============================================================================ +05:14:55 [ 1] [ 4] [0800] +05:14:55 [ 7] [ 10] [0319101404] +05:14:55 [ 11] [ 6] [154550] +05:14:55 [ 70] [ 3] [301] +05:14:55 ============================================================================ +05:14:55 + + +waiting on router queue for slot.... +05:14:55 Sending to : +05:14:55 ============================================================================ +05:14:55 ============================================================================ +05:14:55 Slot Id : <114> +05:14:55 Transaction Type : RESPONSE +05:14:55 Received From : +05:14:55 ============================================================================ +05:14:55 FNo. Len. Field Value +05:14:55 ============================================================================ +05:14:55 [ 1] [ 4] [0810] +05:14:55 [ 7] [ 10] [0319101404] +05:14:55 [ 11] [ 6] [154550] +05:14:55 [ 39] [ 2] [00] +05:14:55 [ 70] [ 3] [301] +05:14:55 ============================================================================ +05:14:55 Calculate Source COMM Id = 2 +05:14:55 ============================================================================ +05:14:55 + + +waiting on router queue for slot.... +05:15:06 ============================================================================ +05:15:06 Slot Id : <74> +05:15:06 Transaction Type : REQUEST +05:15:06 Received From : +05:15:06 ============================================================================ +05:15:06 FNo. Len. Field Value +05:15:06 ============================================================================ +05:15:06 [ 1] [ 4] [0800] +05:15:06 [ 7] [ 10] [0319101415] +05:15:06 [ 11] [ 6] [154551] +05:15:06 [ 70] [ 3] [301] +05:15:06 ============================================================================ +05:15:06 + + +waiting on router queue for slot.... +05:15:06 Sending to : +05:15:06 ============================================================================ +05:15:06 ============================================================================ +05:15:06 Slot Id : <74> +05:15:06 Transaction Type : RESPONSE +05:15:06 Received From : +05:15:06 ============================================================================ +05:15:06 FNo. Len. Field Value +05:15:06 ============================================================================ +05:15:06 [ 1] [ 4] [0810] +05:15:06 [ 7] [ 10] [0319101415] +05:15:06 [ 11] [ 6] [154551] +05:15:06 [ 39] [ 2] [00] +05:15:06 [ 70] [ 3] [301] +05:15:06 ============================================================================ +05:15:06 Calculate Source COMM Id = 2 +05:15:06 ============================================================================ +05:15:06 + + +waiting on router queue for slot.... +05:15:14 ============================================================================ +05:15:14 Slot Id : <107> +05:15:14 Transaction Type : REQUEST +05:15:14 Received From : +05:15:14 ============================================================================ +05:15:14 FNo. Len. Field Value +05:15:14 ============================================================================ +05:15:14 [ 1] [ 4] [0800] +05:15:14 [ 7] [ 10] [0320122702] +05:15:14 [ 11] [ 6] [052702] +05:15:14 [ 37] [ 12] [57905052702] +05:15:14 [ 70] [ 3] [301] +05:15:14 ============================================================================ +05:15:14 + + +waiting on router queue for slot.... +05:15:14 Sending to : +05:15:14 ============================================================================ +05:15:14 ============================================================================ +05:15:14 Slot Id : <107> +05:15:14 Transaction Type : RESPONSE +05:15:14 Received From : +05:15:14 ============================================================================ +05:15:14 FNo. Len. Field Value +05:15:14 ============================================================================ +05:15:14 [ 1] [ 4] [0810] +05:15:14 [ 7] [ 10] [0320122702] +05:15:14 [ 11] [ 6] [052702] +05:15:14 [ 37] [ 12] [579050527020] +05:15:14 [ 39] [ 2] [00] +05:15:14 [ 70] [ 3] [810] +05:15:14 ============================================================================ +05:15:14 Calculate Source COMM Id = 6 +05:15:14 ============================================================================ +05:15:14 + + +waiting on router queue for slot.... +05:15:22 ============================================================================ +05:15:22 Slot Id : <83> +05:15:22 Transaction Type : REQUEST +05:15:22 Received From : +05:15:22 ============================================================================ +05:15:22 FNo. Len. Field Value +05:15:22 ============================================================================ +05:15:22 [ 1] [ 4] [0800] +05:15:22 [ 7] [ 10] [0319101431] +05:15:22 [ 11] [ 6] [154552] +05:15:22 [ 70] [ 3] [301] +05:15:22 ============================================================================ +05:15:22 + + +waiting on router queue for slot.... +05:15:22 Sending to : +05:15:22 ============================================================================ +05:15:22 ============================================================================ +05:15:22 Slot Id : <83> +05:15:22 Transaction Type : RESPONSE +05:15:22 Received From : +05:15:22 ============================================================================ +05:15:22 FNo. Len. Field Value +05:15:22 ============================================================================ +05:15:22 [ 1] [ 4] [0810] +05:15:22 [ 7] [ 10] [0319101431] +05:15:22 [ 11] [ 6] [154552] +05:15:22 [ 39] [ 2] [00] +05:15:22 [ 70] [ 3] [301] +05:15:22 ============================================================================ +05:15:22 Calculate Source COMM Id = 2 +05:15:22 ============================================================================ +05:15:22 + + +waiting on router queue for slot.... +05:15:33 ============================================================================ +05:15:33 Slot Id : <92> +05:15:33 Transaction Type : REQUEST +05:15:33 Received From : +05:15:33 ============================================================================ +05:15:33 FNo. Len. Field Value +05:15:33 ============================================================================ +05:15:33 [ 1] [ 4] [0800] +05:15:33 [ 7] [ 10] [0319101441] +05:15:33 [ 11] [ 6] [154553] +05:15:33 [ 70] [ 3] [301] +05:15:33 ============================================================================ +05:15:33 + + +waiting on router queue for slot.... +05:15:33 Sending to : +05:15:33 ============================================================================ +05:15:33 ============================================================================ +05:15:33 Slot Id : <92> +05:15:33 Transaction Type : RESPONSE +05:15:33 Received From : +05:15:33 ============================================================================ +05:15:33 FNo. Len. Field Value +05:15:33 ============================================================================ +05:15:33 [ 1] [ 4] [0810] +05:15:33 [ 7] [ 10] [0319101441] +05:15:33 [ 11] [ 6] [154553] +05:15:33 [ 39] [ 2] [00] +05:15:33 [ 70] [ 3] [301] +05:15:33 ============================================================================ +05:15:33 Calculate Source COMM Id = 2 +05:15:33 ============================================================================ +05:15:33 + + +waiting on router queue for slot.... +05:15:44 ============================================================================ +05:15:44 Slot Id : <118> +05:15:44 Transaction Type : REQUEST +05:15:44 Received From : +05:15:44 ============================================================================ +05:15:44 FNo. Len. Field Value +05:15:44 ============================================================================ +05:15:44 [ 1] [ 4] [0800] +05:15:44 [ 7] [ 10] [0319101452] +05:15:44 [ 11] [ 6] [154554] +05:15:44 [ 70] [ 3] [301] +05:15:44 ============================================================================ +05:15:44 + + +waiting on router queue for slot.... +05:15:44 Sending to : +05:15:44 ============================================================================ +05:15:44 ============================================================================ +05:15:44 Slot Id : <118> +05:15:44 Transaction Type : RESPONSE +05:15:44 Received From : +05:15:44 ============================================================================ +05:15:44 FNo. Len. Field Value +05:15:44 ============================================================================ +05:15:44 [ 1] [ 4] [0810] +05:15:44 [ 7] [ 10] [0319101452] +05:15:44 [ 11] [ 6] [154554] +05:15:44 [ 39] [ 2] [00] +05:15:44 [ 70] [ 3] [301] +05:15:44 ============================================================================ +05:15:44 Calculate Source COMM Id = 2 +05:15:44 ============================================================================ +05:15:44 + + +waiting on router queue for slot.... +05:15:46 ============================================================================ +05:15:46 Slot Id : <121> +05:15:46 Transaction Type : REQUEST +05:15:46 Received From : +05:15:46 ============================================================================ +05:15:46 FNo. Len. Field Value +05:15:46 ============================================================================ +05:15:46 [ 1] [ 4] [0800] +05:15:46 [ 2] [ 5] [02531] +05:15:46 [ 3] [ 6] [579058] +05:15:46 [ 7] [ 10] [0319221546] +05:15:46 [ 11] [ 6] [806717] +05:15:46 [ 15] [ 10] [0319221546] +05:15:46 [ 37] [ 11] [57905806717] +05:15:46 [ 70] [ 3] [001] +05:15:46 ============================================================================ +05:15:46 + + +waiting on router queue for slot.... +05:15:46 ============================================================================ +05:15:46 Slot Id : <121> +05:15:46 Transaction Type : RESPONSE +05:15:46 Received From : +05:15:46 ============================================================================ +05:15:46 FNo. Len. Field Value +05:15:46 ============================================================================ +05:15:46 [ 1] [ 4] [0810] +05:15:46 [ 7] [ 10] [0319221546] +05:15:46 [ 11] [ 6] [806717] +05:15:46 [ 15] [ 4] [0319] +05:15:46 [ 37] [ 12] [57905806717] +05:15:46 [ 39] [ 2] [00] +05:15:46 [ 70] [ 3] [001] +05:15:46 ============================================================================ +05:15:46 Sending to : +05:15:46 ============================================================================ +05:15:46 + + +waiting on router queue for slot.... +05:15:55 ============================================================================ +05:15:55 Slot Id : <113> +05:15:55 Transaction Type : REQUEST +05:15:55 Received From : +05:15:55 ============================================================================ +05:15:55 FNo. Len. Field Value +05:15:55 ============================================================================ +05:15:55 [ 1] [ 4] [0800] +05:15:55 [ 7] [ 10] [0319101503] +05:15:55 [ 11] [ 6] [154555] +05:15:55 [ 70] [ 3] [301] +05:15:55 ============================================================================ +05:15:55 + + +waiting on router queue for slot.... +05:15:55 Sending to : +05:15:55 ============================================================================ +05:15:55 ============================================================================ +05:15:55 Slot Id : <113> +05:15:55 Transaction Type : RESPONSE +05:15:55 Received From : +05:15:55 ============================================================================ +05:15:55 FNo. Len. Field Value +05:15:55 ============================================================================ +05:15:55 [ 1] [ 4] [0810] +05:15:55 [ 7] [ 10] [0319101503] +05:15:55 [ 11] [ 6] [154555] +05:15:55 [ 39] [ 2] [00] +05:15:55 [ 70] [ 3] [301] +05:15:55 ============================================================================ +05:15:55 Calculate Source COMM Id = 2 +05:15:55 ============================================================================ +05:15:55 + + +waiting on router queue for slot.... +05:16:05 ============================================================================ +05:16:05 Slot Id : <108> +05:16:05 Transaction Type : REQUEST +05:16:05 Received From : +05:16:05 ============================================================================ +05:16:05 FNo. Len. Field Value +05:16:05 ============================================================================ +05:16:05 [ 1] [ 4] [0800] +05:16:05 [ 7] [ 10] [0319101514] +05:16:05 [ 11] [ 6] [154556] +05:16:05 [ 70] [ 3] [301] +05:16:05 ============================================================================ +05:16:05 + + +waiting on router queue for slot.... +05:16:05 Sending to : +05:16:05 ============================================================================ +05:16:05 ============================================================================ +05:16:05 Slot Id : <108> +05:16:05 Transaction Type : RESPONSE +05:16:05 Received From : +05:16:05 ============================================================================ +05:16:05 FNo. Len. Field Value +05:16:05 ============================================================================ +05:16:05 [ 1] [ 4] [0810] +05:16:05 [ 7] [ 10] [0319101514] +05:16:05 [ 11] [ 6] [154556] +05:16:05 [ 39] [ 2] [00] +05:16:05 [ 70] [ 3] [301] +05:16:05 ============================================================================ +05:16:05 Calculate Source COMM Id = 2 +05:16:05 ============================================================================ +05:16:05 + + +waiting on router queue for slot.... +05:16:15 ============================================================================ +05:16:15 Slot Id : <94> +05:16:15 Transaction Type : REQUEST +05:16:15 Received From : +05:16:15 ============================================================================ +05:16:15 FNo. Len. Field Value +05:16:15 ============================================================================ +05:16:15 [ 1] [ 4] [0800] +05:16:15 [ 7] [ 10] [0319101524] +05:16:15 [ 11] [ 6] [154557] +05:16:15 [ 70] [ 3] [301] +05:16:15 ============================================================================ +05:16:15 + + +waiting on router queue for slot.... +05:16:15 Sending to : +05:16:15 ============================================================================ +05:16:15 ============================================================================ +05:16:15 Slot Id : <94> +05:16:15 Transaction Type : RESPONSE +05:16:15 Received From : +05:16:15 ============================================================================ +05:16:15 FNo. Len. Field Value +05:16:15 ============================================================================ +05:16:15 [ 1] [ 4] [0810] +05:16:15 [ 7] [ 10] [0319101524] +05:16:15 [ 11] [ 6] [154557] +05:16:15 [ 39] [ 2] [00] +05:16:15 [ 70] [ 3] [301] +05:16:15 ============================================================================ +05:16:15 Calculate Source COMM Id = 2 +05:16:15 ============================================================================ +05:16:15 + + +waiting on router queue for slot.... +05:16:19 ============================================================================ +05:16:19 Slot Id : <115> +05:16:19 Transaction Type : REQUEST +05:16:19 Received From : +05:16:19 ============================================================================ +05:16:19 FNo. Len. Field Value +05:16:19 ============================================================================ +05:16:19 [ 1] [ 4] [0800] +05:16:19 [ 7] [ 10] [0320122807] +05:16:19 [ 11] [ 6] [052807] +05:16:19 [ 37] [ 12] [57905052807] +05:16:19 [ 70] [ 3] [301] +05:16:19 ============================================================================ +05:16:19 + + +waiting on router queue for slot.... +05:16:19 Sending to : +05:16:19 ============================================================================ +05:16:19 ============================================================================ +05:16:19 Slot Id : <115> +05:16:19 Transaction Type : RESPONSE +05:16:19 Received From : +05:16:19 ============================================================================ +05:16:19 FNo. Len. Field Value +05:16:19 ============================================================================ +05:16:19 [ 1] [ 4] [0810] +05:16:19 [ 7] [ 10] [0320122807] +05:16:19 [ 11] [ 6] [052807] +05:16:19 [ 37] [ 12] [579050528070] +05:16:19 [ 39] [ 2] [00] +05:16:19 [ 70] [ 3] [810] +05:16:19 ============================================================================ +05:16:19 Calculate Source COMM Id = 6 +05:16:19 ============================================================================ +05:16:19 + + +waiting on router queue for slot.... +05:16:20 ============================================================================ +05:16:20 Slot Id : <127> +05:16:20 Transaction Type : REQUEST +05:16:20 Received From : +05:16:20 ============================================================================ +05:16:20 FNo. Len. Field Value +05:16:20 ============================================================================ +05:16:20 [ 1] [ 4] [0800] +05:16:20 [ 7] [ 10] [0319221412] +05:16:20 [ 11] [ 6] [040906] +05:16:20 [ 37] [ 12] [57905040906] +05:16:20 [ 70] [ 3] [301] +05:16:20 ============================================================================ +05:16:20 + + +waiting on router queue for slot.... +05:16:20 Sending to : +05:16:20 ============================================================================ +05:16:20 ============================================================================ +05:16:20 Slot Id : <127> +05:16:20 Transaction Type : RESPONSE +05:16:20 Received From : +05:16:20 ============================================================================ +05:16:20 FNo. Len. Field Value +05:16:20 ============================================================================ +05:16:20 [ 1] [ 4] [0810] +05:16:20 [ 7] [ 10] [0319221412] +05:16:20 [ 11] [ 6] [040906] +05:16:20 [ 37] [ 12] [579050409060] +05:16:20 [ 39] [ 2] [00] +05:16:20 [ 70] [ 3] [810] +05:16:20 ============================================================================ +05:16:20 Calculate Source COMM Id = 4 +05:16:20 ============================================================================ +05:16:20 + + +waiting on router queue for slot.... +05:16:26 ============================================================================ +05:16:26 Slot Id : <125> +05:16:26 Transaction Type : REQUEST +05:16:26 Received From : +05:16:26 ============================================================================ +05:16:26 FNo. Len. Field Value +05:16:26 ============================================================================ +05:16:26 [ 1] [ 4] [0800] +05:16:26 [ 7] [ 10] [0319101534] +05:16:26 [ 11] [ 6] [154558] +05:16:26 [ 70] [ 3] [301] +05:16:26 ============================================================================ +05:16:26 + + +waiting on router queue for slot.... +05:16:26 Sending to : +05:16:26 ============================================================================ +05:16:26 ============================================================================ +05:16:26 Slot Id : <125> +05:16:26 Transaction Type : RESPONSE +05:16:26 Received From : +05:16:26 ============================================================================ +05:16:26 FNo. Len. Field Value +05:16:26 ============================================================================ +05:16:26 [ 1] [ 4] [0810] +05:16:26 [ 7] [ 10] [0319101534] +05:16:26 [ 11] [ 6] [154558] +05:16:26 [ 39] [ 2] [00] +05:16:26 [ 70] [ 3] [301] +05:16:26 ============================================================================ +05:16:26 Calculate Source COMM Id = 2 +05:16:26 ============================================================================ +05:16:26 + + +waiting on router queue for slot.... +05:16:41 ============================================================================ +05:16:41 Slot Id : <95> +05:16:41 Transaction Type : REQUEST +05:16:41 Received From : +05:16:41 ============================================================================ +05:16:41 FNo. Len. Field Value +05:16:41 ============================================================================ +05:16:41 [ 1] [ 4] [0800] +05:16:41 [ 7] [ 10] [0319101550] +05:16:41 [ 11] [ 6] [154559] +05:16:41 [ 70] [ 3] [301] +05:16:41 ============================================================================ +05:16:41 + + +waiting on router queue for slot.... +05:16:41 Sending to : +05:16:41 ============================================================================ +05:16:41 ============================================================================ +05:16:41 Slot Id : <95> +05:16:41 Transaction Type : RESPONSE +05:16:41 Received From : +05:16:41 ============================================================================ +05:16:41 FNo. Len. Field Value +05:16:41 ============================================================================ +05:16:41 [ 1] [ 4] [0810] +05:16:41 [ 7] [ 10] [0319101550] +05:16:41 [ 11] [ 6] [154559] +05:16:41 [ 39] [ 2] [00] +05:16:41 [ 70] [ 3] [301] +05:16:41 ============================================================================ +05:16:41 Calculate Source COMM Id = 2 +05:16:41 ============================================================================ +05:16:41 + + +waiting on router queue for slot.... +05:16:48 ============================================================================ +05:16:48 Slot Id : <75> +05:16:48 Transaction Type : REQUEST +05:16:48 Received From : +05:16:48 ============================================================================ +05:16:48 FNo. Len. Field Value +05:16:48 ============================================================================ +05:16:48 [ 1] [ 4] [0800] +05:16:48 [ 2] [ 5] [02531] +05:16:48 [ 3] [ 6] [579058] +05:16:48 [ 7] [ 10] [0319221648] +05:16:48 [ 11] [ 6] [806718] +05:16:48 [ 15] [ 10] [0319221648] +05:16:48 [ 37] [ 11] [57905806718] +05:16:48 [ 70] [ 3] [001] +05:16:48 ============================================================================ +05:16:48 + + +waiting on router queue for slot.... +05:16:48 ============================================================================ +05:16:48 Slot Id : <75> +05:16:48 Transaction Type : RESPONSE +05:16:48 Received From : +05:16:48 ============================================================================ +05:16:48 FNo. Len. Field Value +05:16:48 ============================================================================ +05:16:48 [ 1] [ 4] [0810] +05:16:48 [ 7] [ 10] [0319221648] +05:16:48 [ 11] [ 6] [806718] +05:16:48 [ 15] [ 4] [0319] +05:16:48 [ 37] [ 12] [57905806718] +05:16:48 [ 39] [ 2] [00] +05:16:48 [ 70] [ 3] [001] +05:16:48 ============================================================================ +05:16:48 Sending to : +05:16:48 ============================================================================ +05:16:48 + + +waiting on router queue for slot.... +05:16:52 ============================================================================ +05:16:52 Slot Id : <53> +05:16:52 Transaction Type : REQUEST +05:16:52 Received From : +05:16:52 ============================================================================ +05:16:52 FNo. Len. Field Value +05:16:52 ============================================================================ +05:16:52 [ 1] [ 4] [0800] +05:16:52 [ 7] [ 10] [0319101600] +05:16:52 [ 11] [ 6] [154560] +05:16:52 [ 70] [ 3] [301] +05:16:52 ============================================================================ +05:16:52 + + +waiting on router queue for slot.... +05:16:52 Sending to : +05:16:52 ============================================================================ +05:16:52 ============================================================================ +05:16:52 Slot Id : <53> +05:16:52 Transaction Type : RESPONSE +05:16:52 Received From : +05:16:52 ============================================================================ +05:16:52 FNo. Len. Field Value +05:16:52 ============================================================================ +05:16:52 [ 1] [ 4] [0810] +05:16:52 [ 7] [ 10] [0319101600] +05:16:52 [ 11] [ 6] [154560] +05:16:52 [ 39] [ 2] [00] +05:16:52 [ 70] [ 3] [301] +05:16:52 ============================================================================ +05:16:52 Calculate Source COMM Id = 2 +05:16:52 ============================================================================ +05:16:52 + + +waiting on router queue for slot.... +05:17:02 ============================================================================ +05:17:02 Slot Id : <134> +05:17:02 Transaction Type : REQUEST +05:17:02 Received From : +05:17:02 ============================================================================ +05:17:02 FNo. Len. Field Value +05:17:02 ============================================================================ +05:17:02 [ 1] [ 4] [0800] +05:17:02 [ 7] [ 10] [0319101610] +05:17:02 [ 11] [ 6] [154561] +05:17:02 [ 70] [ 3] [301] +05:17:02 ============================================================================ +05:17:02 + + +waiting on router queue for slot.... +05:17:02 Sending to : +05:17:02 ============================================================================ +05:17:02 ============================================================================ +05:17:02 Slot Id : <134> +05:17:02 Transaction Type : RESPONSE +05:17:02 Received From : +05:17:02 ============================================================================ +05:17:02 FNo. Len. Field Value +05:17:02 ============================================================================ +05:17:02 [ 1] [ 4] [0810] +05:17:02 [ 7] [ 10] [0319101610] +05:17:02 [ 11] [ 6] [154561] +05:17:02 [ 39] [ 2] [00] +05:17:02 [ 70] [ 3] [301] +05:17:02 ============================================================================ +05:17:02 Calculate Source COMM Id = 2 +05:17:02 ============================================================================ +05:17:02 + + +waiting on router queue for slot.... +05:17:12 ============================================================================ +05:17:12 Slot Id : <96> +05:17:12 Transaction Type : REQUEST +05:17:12 Received From : +05:17:12 ============================================================================ +05:17:12 FNo. Len. Field Value +05:17:12 ============================================================================ +05:17:12 [ 1] [ 4] [0800] +05:17:12 [ 7] [ 10] [0319101621] +05:17:12 [ 11] [ 6] [154562] +05:17:12 [ 70] [ 3] [301] +05:17:12 ============================================================================ +05:17:12 + + +waiting on router queue for slot.... +05:17:12 Sending to : +05:17:12 ============================================================================ +05:17:12 ============================================================================ +05:17:12 Slot Id : <96> +05:17:12 Transaction Type : RESPONSE +05:17:12 Received From : +05:17:12 ============================================================================ +05:17:12 FNo. Len. Field Value +05:17:12 ============================================================================ +05:17:12 [ 1] [ 4] [0810] +05:17:12 [ 7] [ 10] [0319101621] +05:17:12 [ 11] [ 6] [154562] +05:17:12 [ 39] [ 2] [00] +05:17:12 [ 70] [ 3] [301] +05:17:12 ============================================================================ +05:17:12 Calculate Source COMM Id = 2 +05:17:12 ============================================================================ +05:17:12 + + +waiting on router queue for slot.... +05:17:23 ============================================================================ +05:17:23 Slot Id : <98> +05:17:23 Transaction Type : REQUEST +05:17:23 Received From : +05:17:23 ============================================================================ +05:17:23 FNo. Len. Field Value +05:17:23 ============================================================================ +05:17:23 [ 1] [ 4] [0800] +05:17:23 [ 7] [ 10] [0319101631] +05:17:23 [ 11] [ 6] [154563] +05:17:23 [ 70] [ 3] [301] +05:17:23 ============================================================================ +05:17:23 + + +waiting on router queue for slot.... +05:17:23 Sending to : +05:17:23 ============================================================================ +05:17:23 ============================================================================ +05:17:23 Slot Id : <98> +05:17:23 Transaction Type : RESPONSE +05:17:23 Received From : +05:17:23 ============================================================================ +05:17:23 FNo. Len. Field Value +05:17:23 ============================================================================ +05:17:23 [ 1] [ 4] [0810] +05:17:23 [ 7] [ 10] [0319101631] +05:17:23 [ 11] [ 6] [154563] +05:17:23 [ 39] [ 2] [00] +05:17:23 [ 70] [ 3] [301] +05:17:23 ============================================================================ +05:17:23 Calculate Source COMM Id = 2 +05:17:23 ============================================================================ +05:17:23 + + +waiting on router queue for slot.... +05:17:24 ============================================================================ +05:17:24 Slot Id : <103> +05:17:24 Transaction Type : REQUEST +05:17:24 Received From : +05:17:24 ============================================================================ +05:17:24 FNo. Len. Field Value +05:17:24 ============================================================================ +05:17:24 [ 1] [ 4] [0800] +05:17:24 [ 7] [ 10] [0320122912] +05:17:24 [ 11] [ 6] [052912] +05:17:24 [ 37] [ 12] [57905052912] +05:17:24 [ 70] [ 3] [301] +05:17:24 ============================================================================ +05:17:24 + + +waiting on router queue for slot.... +05:17:24 Sending to : +05:17:24 ============================================================================ +05:17:24 ============================================================================ +05:17:24 Slot Id : <103> +05:17:24 Transaction Type : RESPONSE +05:17:24 Received From : +05:17:24 ============================================================================ +05:17:24 FNo. Len. Field Value +05:17:24 ============================================================================ +05:17:24 [ 1] [ 4] [0810] +05:17:24 [ 7] [ 10] [0320122912] +05:17:24 [ 11] [ 6] [052912] +05:17:24 [ 37] [ 12] [579050529120] +05:17:24 [ 39] [ 2] [00] +05:17:24 [ 70] [ 3] [810] +05:17:24 ============================================================================ +05:17:24 Calculate Source COMM Id = 6 +05:17:24 ============================================================================ +05:17:24 + + +waiting on router queue for slot.... +05:17:34 ============================================================================ +05:17:34 Slot Id : <71> +05:17:34 Transaction Type : REQUEST +05:17:34 Received From : +05:17:34 ============================================================================ +05:17:34 FNo. Len. Field Value +05:17:34 ============================================================================ +05:17:34 [ 1] [ 4] [0800] +05:17:34 [ 7] [ 10] [0319101642] +05:17:34 [ 11] [ 6] [154564] +05:17:34 [ 70] [ 3] [301] +05:17:34 ============================================================================ +05:17:34 + + +waiting on router queue for slot.... +05:17:34 Sending to : +05:17:34 ============================================================================ +05:17:34 ============================================================================ +05:17:34 Slot Id : <71> +05:17:34 Transaction Type : RESPONSE +05:17:34 Received From : +05:17:34 ============================================================================ +05:17:34 FNo. Len. Field Value +05:17:34 ============================================================================ +05:17:34 [ 1] [ 4] [0810] +05:17:34 [ 7] [ 10] [0319101642] +05:17:34 [ 11] [ 6] [154564] +05:17:34 [ 39] [ 2] [00] +05:17:34 [ 70] [ 3] [301] +05:17:34 ============================================================================ +05:17:34 Calculate Source COMM Id = 2 +05:17:34 ============================================================================ +05:17:34 + + +waiting on router queue for slot.... +05:17:49 ============================================================================ +05:17:49 Slot Id : <101> +05:17:49 Transaction Type : REQUEST +05:17:49 Received From : +05:17:49 ============================================================================ +05:17:49 FNo. Len. Field Value +05:17:49 ============================================================================ +05:17:49 [ 1] [ 4] [0800] +05:17:49 [ 7] [ 10] [0319101658] +05:17:49 [ 11] [ 6] [154565] +05:17:49 [ 70] [ 3] [301] +05:17:49 ============================================================================ +05:17:49 + + +waiting on router queue for slot.... +05:17:49 Sending to : +05:17:49 ============================================================================ +05:17:49 ============================================================================ +05:17:49 Slot Id : <101> +05:17:49 Transaction Type : RESPONSE +05:17:49 Received From : +05:17:49 ============================================================================ +05:17:49 FNo. Len. Field Value +05:17:49 ============================================================================ +05:17:49 [ 1] [ 4] [0810] +05:17:49 [ 7] [ 10] [0319101658] +05:17:49 [ 11] [ 6] [154565] +05:17:49 [ 39] [ 2] [00] +05:17:49 [ 70] [ 3] [301] +05:17:49 ============================================================================ +05:17:49 Calculate Source COMM Id = 2 +05:17:49 ============================================================================ +05:17:49 + + +waiting on router queue for slot.... +05:17:50 ============================================================================ +05:17:50 Slot Id : <102> +05:17:50 Transaction Type : REQUEST +05:17:50 Received From : +05:17:50 ============================================================================ +05:17:50 FNo. Len. Field Value +05:17:50 ============================================================================ +05:17:50 [ 1] [ 4] [0800] +05:17:50 [ 2] [ 5] [02531] +05:17:50 [ 3] [ 6] [579058] +05:17:50 [ 7] [ 10] [0319221750] +05:17:50 [ 11] [ 6] [806719] +05:17:50 [ 15] [ 10] [0319221750] +05:17:50 [ 37] [ 11] [57905806719] +05:17:50 [ 70] [ 3] [001] +05:17:50 ============================================================================ +05:17:50 + + +waiting on router queue for slot.... +05:17:50 ============================================================================ +05:17:50 Slot Id : <102> +05:17:50 Transaction Type : RESPONSE +05:17:50 Received From : +05:17:50 ============================================================================ +05:17:50 FNo. Len. Field Value +05:17:50 ============================================================================ +05:17:50 [ 1] [ 4] [0810] +05:17:50 [ 7] [ 10] [0319221750] +05:17:50 [ 11] [ 6] [806719] +05:17:50 [ 15] [ 4] [0319] +05:17:50 [ 37] [ 12] [57905806719] +05:17:50 [ 39] [ 2] [00] +05:17:50 [ 70] [ 3] [001] +05:17:50 ============================================================================ +05:17:50 Sending to : +05:17:50 ============================================================================ +05:17:50 + + +waiting on router queue for slot.... +05:18:00 ============================================================================ +05:18:00 Slot Id : <109> +05:18:00 Transaction Type : REQUEST +05:18:00 Received From : +05:18:00 ============================================================================ +05:18:00 FNo. Len. Field Value +05:18:00 ============================================================================ +05:18:00 [ 1] [ 4] [0800] +05:18:00 [ 7] [ 10] [0319101709] +05:18:00 [ 11] [ 6] [154566] +05:18:00 [ 70] [ 3] [301] +05:18:00 ============================================================================ +05:18:00 + + +waiting on router queue for slot.... +05:18:00 Sending to : +05:18:00 ============================================================================ +05:18:00 ============================================================================ +05:18:00 Slot Id : <109> +05:18:00 Transaction Type : RESPONSE +05:18:00 Received From : +05:18:00 ============================================================================ +05:18:00 FNo. Len. Field Value +05:18:00 ============================================================================ +05:18:00 [ 1] [ 4] [0810] +05:18:00 [ 7] [ 10] [0319101709] +05:18:00 [ 11] [ 6] [154566] +05:18:00 [ 39] [ 2] [00] +05:18:00 [ 70] [ 3] [301] +05:18:00 ============================================================================ +05:18:00 Calculate Source COMM Id = 2 +05:18:00 ============================================================================ +05:18:00 + + +waiting on router queue for slot.... +05:18:15 ============================================================================ +05:18:15 Slot Id : <70> +05:18:15 Transaction Type : REQUEST +05:18:15 Received From : +05:18:15 ============================================================================ +05:18:15 FNo. Len. Field Value +05:18:15 ============================================================================ +05:18:15 [ 1] [ 4] [0800] +05:18:15 [ 7] [ 10] [0319101724] +05:18:15 [ 11] [ 6] [154567] +05:18:15 [ 70] [ 3] [301] +05:18:15 ============================================================================ +05:18:15 + + +waiting on router queue for slot.... +05:18:15 Sending to : +05:18:15 ============================================================================ +05:18:15 ============================================================================ +05:18:15 Slot Id : <70> +05:18:15 Transaction Type : RESPONSE +05:18:15 Received From : +05:18:15 ============================================================================ +05:18:15 FNo. Len. Field Value +05:18:15 ============================================================================ +05:18:15 [ 1] [ 4] [0810] +05:18:15 [ 7] [ 10] [0319101724] +05:18:15 [ 11] [ 6] [154567] +05:18:15 [ 39] [ 2] [00] +05:18:15 [ 70] [ 3] [301] +05:18:15 ============================================================================ +05:18:15 Calculate Source COMM Id = 2 +05:18:15 ============================================================================ +05:18:15 + + +waiting on router queue for slot.... +05:18:26 ============================================================================ +05:18:26 Slot Id : <136> +05:18:26 Transaction Type : REQUEST +05:18:26 Received From : +05:18:26 ============================================================================ +05:18:26 FNo. Len. Field Value +05:18:26 ============================================================================ +05:18:26 [ 1] [ 4] [0800] +05:18:26 [ 7] [ 10] [0319101735] +05:18:26 [ 11] [ 6] [154568] +05:18:26 [ 70] [ 3] [301] +05:18:26 ============================================================================ +05:18:26 + + +waiting on router queue for slot.... +05:18:26 Sending to : +05:18:26 ============================================================================ +05:18:26 ============================================================================ +05:18:26 Slot Id : <136> +05:18:26 Transaction Type : RESPONSE +05:18:26 Received From : +05:18:26 ============================================================================ +05:18:26 FNo. Len. Field Value +05:18:26 ============================================================================ +05:18:26 [ 1] [ 4] [0810] +05:18:26 [ 7] [ 10] [0319101735] +05:18:26 [ 11] [ 6] [154568] +05:18:26 [ 39] [ 2] [00] +05:18:26 [ 70] [ 3] [301] +05:18:26 ============================================================================ +05:18:26 Calculate Source COMM Id = 2 +05:18:26 ============================================================================ +05:18:26 + + +waiting on router queue for slot.... +05:18:29 ============================================================================ +05:18:29 Slot Id : <131> +05:18:29 Transaction Type : REQUEST +05:18:29 Received From : +05:18:29 ============================================================================ +05:18:29 FNo. Len. Field Value +05:18:29 ============================================================================ +05:18:29 [ 1] [ 4] [0800] +05:18:29 [ 7] [ 10] [0320123017] +05:18:29 [ 11] [ 6] [053017] +05:18:29 [ 37] [ 12] [57905053017] +05:18:29 [ 70] [ 3] [301] +05:18:29 ============================================================================ +05:18:29 + + +waiting on router queue for slot.... +05:18:29 Sending to : +05:18:29 ============================================================================ +05:18:29 ============================================================================ +05:18:29 Slot Id : <131> +05:18:29 Transaction Type : RESPONSE +05:18:29 Received From : +05:18:29 ============================================================================ +05:18:29 FNo. Len. Field Value +05:18:29 ============================================================================ +05:18:29 [ 1] [ 4] [0810] +05:18:29 [ 7] [ 10] [0320123017] +05:18:29 [ 11] [ 6] [053017] +05:18:29 [ 37] [ 12] [579050530170] +05:18:29 [ 39] [ 2] [00] +05:18:29 [ 70] [ 3] [810] +05:18:29 ============================================================================ +05:18:29 Calculate Source COMM Id = 6 +05:18:29 ============================================================================ +05:18:29 + + +waiting on router queue for slot.... +05:18:37 ============================================================================ +05:18:37 Slot Id : <129> +05:18:37 Transaction Type : REQUEST +05:18:37 Received From : +05:18:37 ============================================================================ +05:18:37 FNo. Len. Field Value +05:18:37 ============================================================================ +05:18:37 [ 1] [ 4] [0800] +05:18:37 [ 7] [ 10] [0319101746] +05:18:37 [ 11] [ 6] [154569] +05:18:37 [ 70] [ 3] [301] +05:18:37 ============================================================================ +05:18:37 + + +waiting on router queue for slot.... +05:18:37 Sending to : +05:18:37 ============================================================================ +05:18:37 ============================================================================ +05:18:37 Slot Id : <129> +05:18:37 Transaction Type : RESPONSE +05:18:37 Received From : +05:18:37 ============================================================================ +05:18:37 FNo. Len. Field Value +05:18:37 ============================================================================ +05:18:37 [ 1] [ 4] [0810] +05:18:37 [ 7] [ 10] [0319101746] +05:18:37 [ 11] [ 6] [154569] +05:18:37 [ 39] [ 2] [00] +05:18:37 [ 70] [ 3] [301] +05:18:37 ============================================================================ +05:18:37 Calculate Source COMM Id = 2 +05:18:37 ============================================================================ +05:18:37 + + +waiting on router queue for slot.... +05:18:48 ============================================================================ +05:18:48 Slot Id : <85> +05:18:48 Transaction Type : REQUEST +05:18:48 Received From : +05:18:48 ============================================================================ +05:18:48 FNo. Len. Field Value +05:18:48 ============================================================================ +05:18:48 [ 1] [ 4] [0800] +05:18:48 [ 7] [ 10] [0319101757] +05:18:48 [ 11] [ 6] [154570] +05:18:48 [ 70] [ 3] [301] +05:18:48 ============================================================================ +05:18:48 + + +waiting on router queue for slot.... +05:18:48 Sending to : +05:18:48 ============================================================================ +05:18:48 ============================================================================ +05:18:48 Slot Id : <85> +05:18:48 Transaction Type : RESPONSE +05:18:48 Received From : +05:18:48 ============================================================================ +05:18:48 FNo. Len. Field Value +05:18:48 ============================================================================ +05:18:48 [ 1] [ 4] [0810] +05:18:48 [ 7] [ 10] [0319101757] +05:18:48 [ 11] [ 6] [154570] +05:18:48 [ 39] [ 2] [00] +05:18:48 [ 70] [ 3] [301] +05:18:48 ============================================================================ +05:18:48 Calculate Source COMM Id = 2 +05:18:48 ============================================================================ +05:18:48 + + +waiting on router queue for slot.... +05:18:52 ============================================================================ +05:18:52 Slot Id : <105> +05:18:52 Transaction Type : REQUEST +05:18:52 Received From : +05:18:52 ============================================================================ +05:18:52 FNo. Len. Field Value +05:18:52 ============================================================================ +05:18:52 [ 1] [ 4] [0800] +05:18:52 [ 2] [ 5] [02531] +05:18:52 [ 3] [ 6] [579058] +05:18:52 [ 7] [ 10] [0319221852] +05:18:52 [ 11] [ 6] [806720] +05:18:52 [ 15] [ 10] [0319221852] +05:18:52 [ 37] [ 11] [57905806720] +05:18:52 [ 70] [ 3] [001] +05:18:52 ============================================================================ +05:18:52 + + +waiting on router queue for slot.... +05:18:52 ============================================================================ +05:18:52 Slot Id : <105> +05:18:52 Transaction Type : RESPONSE +05:18:52 Received From : +05:18:52 ============================================================================ +05:18:52 FNo. Len. Field Value +05:18:52 ============================================================================ +05:18:52 [ 1] [ 4] [0810] +05:18:52 [ 7] [ 10] [0319221852] +05:18:52 [ 11] [ 6] [806720] +05:18:52 [ 15] [ 4] [0319] +05:18:52 [ 37] [ 12] [57905806720] +05:18:52 [ 39] [ 2] [00] +05:18:52 [ 70] [ 3] [001] +05:18:52 ============================================================================ +05:18:52 Sending to : +05:18:52 ============================================================================ +05:18:52 + + +waiting on router queue for slot.... +05:18:58 ============================================================================ +05:18:58 Slot Id : <87> +05:18:58 Transaction Type : REQUEST +05:18:58 Received From : +05:18:58 ============================================================================ +05:18:58 FNo. Len. Field Value +05:18:58 ============================================================================ +05:18:58 [ 1] [ 4] [0800] +05:18:58 [ 7] [ 10] [0319101807] +05:18:58 [ 11] [ 6] [154571] +05:18:58 [ 70] [ 3] [301] +05:18:58 ============================================================================ +05:18:58 + + +waiting on router queue for slot.... +05:18:58 Sending to : +05:18:58 ============================================================================ +05:18:58 ============================================================================ +05:18:58 Slot Id : <87> +05:18:58 Transaction Type : RESPONSE +05:18:58 Received From : +05:18:58 ============================================================================ +05:18:58 FNo. Len. Field Value +05:18:58 ============================================================================ +05:18:58 [ 1] [ 4] [0810] +05:18:58 [ 7] [ 10] [0319101807] +05:18:58 [ 11] [ 6] [154571] +05:18:58 [ 39] [ 2] [00] +05:18:58 [ 70] [ 3] [301] +05:18:58 ============================================================================ +05:18:58 Calculate Source COMM Id = 2 +05:18:58 ============================================================================ +05:18:58 + + +waiting on router queue for slot.... +05:19:09 ============================================================================ +05:19:09 Slot Id : <104> +05:19:09 Transaction Type : REQUEST +05:19:09 Received From : +05:19:09 ============================================================================ +05:19:09 FNo. Len. Field Value +05:19:09 ============================================================================ +05:19:09 [ 1] [ 4] [0800] +05:19:09 [ 7] [ 10] [0319101818] +05:19:09 [ 11] [ 6] [154572] +05:19:09 [ 70] [ 3] [301] +05:19:09 ============================================================================ +05:19:09 + + +waiting on router queue for slot.... +05:19:09 Sending to : +05:19:09 ============================================================================ +05:19:09 ============================================================================ +05:19:09 Slot Id : <104> +05:19:09 Transaction Type : RESPONSE +05:19:09 Received From : +05:19:09 ============================================================================ +05:19:09 FNo. Len. Field Value +05:19:09 ============================================================================ +05:19:09 [ 1] [ 4] [0810] +05:19:09 [ 7] [ 10] [0319101818] +05:19:09 [ 11] [ 6] [154572] +05:19:09 [ 39] [ 2] [00] +05:19:09 [ 70] [ 3] [301] +05:19:09 ============================================================================ +05:19:09 Calculate Source COMM Id = 2 +05:19:09 ============================================================================ +05:19:09 + + +waiting on router queue for slot.... +05:19:24 ============================================================================ +05:19:24 Slot Id : <138> +05:19:24 Transaction Type : REQUEST +05:19:24 Received From : +05:19:24 ============================================================================ +05:19:24 FNo. Len. Field Value +05:19:24 ============================================================================ +05:19:24 [ 1] [ 4] [0800] +05:19:24 [ 7] [ 10] [0319101833] +05:19:24 [ 11] [ 6] [154573] +05:19:24 [ 70] [ 3] [301] +05:19:24 ============================================================================ +05:19:24 + + +waiting on router queue for slot.... +05:19:24 Sending to : +05:19:24 ============================================================================ +05:19:24 ============================================================================ +05:19:24 Slot Id : <138> +05:19:24 Transaction Type : RESPONSE +05:19:24 Received From : +05:19:24 ============================================================================ +05:19:24 FNo. Len. Field Value +05:19:24 ============================================================================ +05:19:24 [ 1] [ 4] [0810] +05:19:24 [ 7] [ 10] [0319101833] +05:19:24 [ 11] [ 6] [154573] +05:19:24 [ 39] [ 2] [00] +05:19:24 [ 70] [ 3] [301] +05:19:24 ============================================================================ +05:19:24 Calculate Source COMM Id = 2 +05:19:24 ============================================================================ +05:19:24 + + +waiting on router queue for slot.... +05:19:26 ============================================================================ +05:19:26 Slot Id : <97> +05:19:26 Transaction Type : REQUEST +05:19:26 Received From : +05:19:26 ============================================================================ +05:19:26 FNo. Len. Field Value +05:19:26 ============================================================================ +05:19:26 [ 1] [ 4] [0800] +05:19:26 [ 7] [ 10] [0320051914] +05:19:26 [ 11] [ 6] [037487] +05:19:26 [ 37] [ 12] [507905037487] +05:19:26 [ 70] [ 3] [ ] +05:19:26 ============================================================================ +05:19:26 + + +waiting on router queue for slot.... +05:19:26 Sending to : +05:19:26 ============================================================================ +05:19:26 ============================================================================ +05:19:26 Slot Id : <97> +05:19:26 Transaction Type : RESPONSE +05:19:26 Received From : +05:19:26 ============================================================================ +05:19:26 FNo. Len. Field Value +05:19:26 ============================================================================ +05:19:26 [ 1] [ 4] [0810] +05:19:26 [ 7] [ 10] [0320051914] +05:19:26 [ 11] [ 6] [037487] +05:19:26 [ 37] [ 12] [507905037487] +05:19:26 [ 39] [ 2] [91] +05:19:26 [ 70] [ 3] [ ] +05:19:26 ============================================================================ +05:19:26 Calculate Source COMM Id = 3 +05:19:26 ============================================================================ +05:19:26 + + +waiting on router queue for slot.... +05:19:34 ============================================================================ +05:19:34 Slot Id : <117> +05:19:34 Transaction Type : REQUEST +05:19:34 Received From : +05:19:34 ============================================================================ +05:19:34 FNo. Len. Field Value +05:19:34 ============================================================================ +05:19:34 [ 1] [ 4] [0800] +05:19:34 [ 7] [ 10] [0320123122] +05:19:34 [ 11] [ 6] [053122] +05:19:34 [ 37] [ 12] [57905053122] +05:19:34 [ 70] [ 3] [301] +05:19:34 ============================================================================ +05:19:34 + + +waiting on router queue for slot.... +05:19:34 Sending to : +05:19:34 ============================================================================ +05:19:34 ============================================================================ +05:19:34 Slot Id : <117> +05:19:34 Transaction Type : RESPONSE +05:19:34 Received From : +05:19:34 ============================================================================ +05:19:34 FNo. Len. Field Value +05:19:34 ============================================================================ +05:19:34 [ 1] [ 4] [0810] +05:19:34 [ 7] [ 10] [0320123122] +05:19:34 [ 11] [ 6] [053122] +05:19:34 [ 37] [ 12] [579050531220] +05:19:34 [ 39] [ 2] [00] +05:19:34 [ 70] [ 3] [810] +05:19:34 ============================================================================ +05:19:34 Calculate Source COMM Id = 6 +05:19:34 ============================================================================ +05:19:34 + + +waiting on router queue for slot.... +05:19:35 ============================================================================ +05:19:35 Slot Id : <112> +05:19:35 Transaction Type : REQUEST +05:19:35 Received From : +05:19:35 ============================================================================ +05:19:35 FNo. Len. Field Value +05:19:35 ============================================================================ +05:19:35 [ 1] [ 4] [0800] +05:19:35 [ 7] [ 10] [0319101844] +05:19:35 [ 11] [ 6] [154574] +05:19:35 [ 70] [ 3] [301] +05:19:35 ============================================================================ +05:19:35 + + +waiting on router queue for slot.... +05:19:35 Sending to : +05:19:35 ============================================================================ +05:19:35 ============================================================================ +05:19:35 Slot Id : <112> +05:19:35 Transaction Type : RESPONSE +05:19:35 Received From : +05:19:35 ============================================================================ +05:19:35 FNo. Len. Field Value +05:19:35 ============================================================================ +05:19:35 [ 1] [ 4] [0810] +05:19:35 [ 7] [ 10] [0319101844] +05:19:35 [ 11] [ 6] [154574] +05:19:35 [ 39] [ 2] [00] +05:19:35 [ 70] [ 3] [301] +05:19:35 ============================================================================ +05:19:35 Calculate Source COMM Id = 2 +05:19:35 ============================================================================ +05:19:35 + + +waiting on router queue for slot.... +05:19:46 ============================================================================ +05:19:46 Slot Id : <140> +05:19:46 Transaction Type : REQUEST +05:19:46 Received From : +05:19:46 ============================================================================ +05:19:46 FNo. Len. Field Value +05:19:46 ============================================================================ +05:19:46 [ 1] [ 4] [0800] +05:19:46 [ 7] [ 10] [0319101855] +05:19:46 [ 11] [ 6] [154575] +05:19:46 [ 70] [ 3] [301] +05:19:46 ============================================================================ +05:19:46 + + +waiting on router queue for slot.... +05:19:46 Sending to : +05:19:46 ============================================================================ +05:19:46 ============================================================================ +05:19:46 Slot Id : <140> +05:19:46 Transaction Type : RESPONSE +05:19:46 Received From : +05:19:46 ============================================================================ +05:19:46 FNo. Len. Field Value +05:19:46 ============================================================================ +05:19:46 [ 1] [ 4] [0810] +05:19:46 [ 7] [ 10] [0319101855] +05:19:46 [ 11] [ 6] [154575] +05:19:46 [ 39] [ 2] [00] +05:19:46 [ 70] [ 3] [301] +05:19:46 ============================================================================ +05:19:46 Calculate Source COMM Id = 2 +05:19:46 ============================================================================ +05:19:46 + + +waiting on router queue for slot.... +05:19:54 ============================================================================ +05:19:54 Slot Id : <111> +05:19:54 Transaction Type : REQUEST +05:19:54 Received From : +05:19:54 ============================================================================ +05:19:54 FNo. Len. Field Value +05:19:54 ============================================================================ +05:19:54 [ 1] [ 4] [0800] +05:19:54 [ 2] [ 5] [02531] +05:19:54 [ 3] [ 6] [579058] +05:19:54 [ 7] [ 10] [0319221954] +05:19:54 [ 11] [ 6] [806721] +05:19:54 [ 15] [ 10] [0319221954] +05:19:54 [ 37] [ 11] [57905806721] +05:19:54 [ 70] [ 3] [001] +05:19:54 ============================================================================ +05:19:54 + + +waiting on router queue for slot.... +05:19:54 ============================================================================ +05:19:54 Slot Id : <111> +05:19:54 Transaction Type : RESPONSE +05:19:54 Received From : +05:19:54 ============================================================================ +05:19:54 FNo. Len. Field Value +05:19:54 ============================================================================ +05:19:54 [ 1] [ 4] [0810] +05:19:54 [ 7] [ 10] [0319221954] +05:19:54 [ 11] [ 6] [806721] +05:19:54 [ 15] [ 4] [0319] +05:19:54 [ 37] [ 12] [57905806721] +05:19:54 [ 39] [ 2] [00] +05:19:54 [ 70] [ 3] [001] +05:19:54 ============================================================================ +05:19:54 Sending to : +05:19:54 ============================================================================ +05:19:54 + + +waiting on router queue for slot.... +05:19:55 ============================================================================ +05:19:55 Slot Id : <116> +05:19:55 Transaction Type : REQUEST +05:19:55 Received From : +05:19:55 ============================================================================ +05:19:55 FNo. Len. Field Value +05:19:55 ============================================================================ +05:19:55 [ 1] [ 4] [0800] +05:19:55 [ 7] [ 10] [0319222742] +05:19:55 [ 11] [ 6] [069773] +05:19:55 [ 37] [ 12] [57905069773] +05:19:55 [ 70] [ 3] [301] +05:19:55 ============================================================================ +05:19:55 + + +waiting on router queue for slot.... +05:19:55 Sending to : +05:19:55 ============================================================================ +05:19:55 ============================================================================ +05:19:55 Slot Id : <116> +05:19:55 Transaction Type : RESPONSE +05:19:55 Received From : +05:19:55 ============================================================================ +05:19:55 FNo. Len. Field Value +05:19:55 ============================================================================ +05:19:55 [ 1] [ 4] [0810] +05:19:55 [ 7] [ 10] [0319222742] +05:19:55 [ 11] [ 6] [069773] +05:19:55 [ 37] [ 12] [579050697730] +05:19:55 [ 39] [ 2] [00] +05:19:55 [ 70] [ 3] [810] +05:19:55 ============================================================================ +05:19:55 Calculate Source COMM Id = 1 +05:19:55 ============================================================================ +05:19:55 + + +waiting on router queue for slot.... +05:20:02 ============================================================================ +05:20:02 Slot Id : <124> +05:20:02 Transaction Type : REQUEST +05:20:02 Received From : +05:20:02 ============================================================================ +05:20:02 FNo. Len. Field Value +05:20:02 ============================================================================ +05:20:02 [ 1] [ 4] [0800] +05:20:02 [ 7] [ 10] [0319101910] +05:20:02 [ 11] [ 6] [154576] +05:20:02 [ 70] [ 3] [301] +05:20:02 ============================================================================ +05:20:02 + + +waiting on router queue for slot.... +05:20:02 Sending to : +05:20:02 ============================================================================ +05:20:02 ============================================================================ +05:20:02 Slot Id : <124> +05:20:02 Transaction Type : RESPONSE +05:20:02 Received From : +05:20:02 ============================================================================ +05:20:02 FNo. Len. Field Value +05:20:02 ============================================================================ +05:20:02 [ 1] [ 4] [0810] +05:20:02 [ 7] [ 10] [0319101910] +05:20:02 [ 11] [ 6] [154576] +05:20:02 [ 39] [ 2] [00] +05:20:02 [ 70] [ 3] [301] +05:20:02 ============================================================================ +05:20:02 Calculate Source COMM Id = 2 +05:20:02 ============================================================================ +05:20:02 + + +waiting on router queue for slot.... +05:20:12 ============================================================================ +05:20:12 Slot Id : <147> +05:20:12 Transaction Type : REQUEST +05:20:12 Received From : +05:20:12 ============================================================================ +05:20:12 FNo. Len. Field Value +05:20:12 ============================================================================ +05:20:12 [ 1] [ 4] [0800] +05:20:12 [ 7] [ 10] [0319101921] +05:20:12 [ 11] [ 6] [154577] +05:20:12 [ 70] [ 3] [301] +05:20:12 ============================================================================ +05:20:12 + + +waiting on router queue for slot.... +05:20:12 Sending to : +05:20:12 ============================================================================ +05:20:12 ============================================================================ +05:20:12 Slot Id : <147> +05:20:12 Transaction Type : RESPONSE +05:20:12 Received From : +05:20:12 ============================================================================ +05:20:12 FNo. Len. Field Value +05:20:12 ============================================================================ +05:20:12 [ 1] [ 4] [0810] +05:20:12 [ 7] [ 10] [0319101921] +05:20:12 [ 11] [ 6] [154577] +05:20:12 [ 39] [ 2] [00] +05:20:12 [ 70] [ 3] [301] +05:20:12 ============================================================================ +05:20:12 Calculate Source COMM Id = 2 +05:20:12 ============================================================================ +05:20:12 + + +waiting on router queue for slot.... +05:20:28 ============================================================================ +05:20:28 Slot Id : <80> +05:20:28 Transaction Type : REQUEST +05:20:28 Received From : +05:20:28 ============================================================================ +05:20:28 FNo. Len. Field Value +05:20:28 ============================================================================ +05:20:28 [ 1] [ 4] [0800] +05:20:28 [ 7] [ 10] [0319101936] +05:20:28 [ 11] [ 6] [154578] +05:20:28 [ 70] [ 3] [301] +05:20:28 ============================================================================ +05:20:28 + + +waiting on router queue for slot.... +05:20:28 Sending to : +05:20:28 ============================================================================ +05:20:28 ============================================================================ +05:20:28 Slot Id : <80> +05:20:28 Transaction Type : RESPONSE +05:20:28 Received From : +05:20:28 ============================================================================ +05:20:28 FNo. Len. Field Value +05:20:28 ============================================================================ +05:20:28 [ 1] [ 4] [0810] +05:20:28 [ 7] [ 10] [0319101936] +05:20:28 [ 11] [ 6] [154578] +05:20:28 [ 39] [ 2] [00] +05:20:28 [ 70] [ 3] [301] +05:20:28 ============================================================================ +05:20:28 Calculate Source COMM Id = 2 +05:20:28 ============================================================================ +05:20:28 + + +waiting on router queue for slot.... +05:20:39 ============================================================================ +05:20:39 Slot Id : <123> +05:20:39 Transaction Type : REQUEST +05:20:39 Received From : +05:20:39 ============================================================================ +05:20:39 FNo. Len. Field Value +05:20:39 ============================================================================ +05:20:39 [ 1] [ 4] [0800] +05:20:39 [ 7] [ 10] [0320123227] +05:20:39 [ 11] [ 6] [053227] +05:20:39 [ 37] [ 12] [57905053227] +05:20:39 [ 70] [ 3] [301] +05:20:39 ============================================================================ +05:20:39 + + +waiting on router queue for slot.... +05:20:39 Sending to : +05:20:39 ============================================================================ +05:20:39 ============================================================================ +05:20:39 Slot Id : <123> +05:20:39 Transaction Type : RESPONSE +05:20:39 Received From : +05:20:39 ============================================================================ +05:20:39 FNo. Len. Field Value +05:20:39 ============================================================================ +05:20:39 [ 1] [ 4] [0810] +05:20:39 [ 7] [ 10] [0320123227] +05:20:39 [ 11] [ 6] [053227] +05:20:39 [ 37] [ 12] [579050532270] +05:20:39 [ 39] [ 2] [00] +05:20:39 [ 70] [ 3] [810] +05:20:39 ============================================================================ +05:20:39 Calculate Source COMM Id = 6 +05:20:39 ============================================================================ +05:20:39 + + +waiting on router queue for slot.... +05:20:43 ============================================================================ +05:20:43 Slot Id : <122> +05:20:43 Transaction Type : REQUEST +05:20:43 Received From : +05:20:43 ============================================================================ +05:20:43 FNo. Len. Field Value +05:20:43 ============================================================================ +05:20:43 [ 1] [ 4] [0800] +05:20:43 [ 7] [ 10] [0319101952] +05:20:43 [ 11] [ 6] [154579] +05:20:43 [ 70] [ 3] [301] +05:20:43 ============================================================================ +05:20:43 + + +waiting on router queue for slot.... +05:20:43 Sending to : +05:20:43 ============================================================================ +05:20:43 ============================================================================ +05:20:43 Slot Id : <122> +05:20:43 Transaction Type : RESPONSE +05:20:43 Received From : +05:20:43 ============================================================================ +05:20:43 FNo. Len. Field Value +05:20:43 ============================================================================ +05:20:43 [ 1] [ 4] [0810] +05:20:43 [ 7] [ 10] [0319101952] +05:20:43 [ 11] [ 6] [154579] +05:20:43 [ 39] [ 2] [00] +05:20:43 [ 70] [ 3] [301] +05:20:43 ============================================================================ +05:20:43 Calculate Source COMM Id = 2 +05:20:43 ============================================================================ +05:20:43 + + +waiting on router queue for slot.... +05:20:56 ============================================================================ +05:20:56 Slot Id : <161> +05:20:56 Transaction Type : REQUEST +05:20:56 Received From : +05:20:56 ============================================================================ +05:20:56 FNo. Len. Field Value +05:20:56 ============================================================================ +05:20:56 [ 1] [ 4] [0800] +05:20:56 [ 2] [ 5] [02531] +05:20:56 [ 3] [ 6] [579058] +05:20:56 [ 7] [ 10] [0319222056] +05:20:56 [ 11] [ 6] [806722] +05:20:56 [ 15] [ 10] [0319222056] +05:20:56 [ 37] [ 11] [57905806722] +05:20:56 [ 70] [ 3] [001] +05:20:56 ============================================================================ +05:20:56 + + +waiting on router queue for slot.... +05:20:56 ============================================================================ +05:20:56 Slot Id : <161> +05:20:56 Transaction Type : RESPONSE +05:20:56 Received From : +05:20:56 ============================================================================ +05:20:56 FNo. Len. Field Value +05:20:56 ============================================================================ +05:20:56 [ 1] [ 4] [0810] +05:20:56 [ 7] [ 10] [0319222056] +05:20:56 [ 11] [ 6] [806722] +05:20:56 [ 15] [ 4] [0319] +05:20:56 [ 37] [ 12] [57905806722] +05:20:56 [ 39] [ 2] [00] +05:20:56 [ 70] [ 3] [001] +05:20:56 ============================================================================ +05:20:56 Sending to : +05:20:56 ============================================================================ +05:20:56 + + +waiting on router queue for slot.... +05:20:59 ============================================================================ +05:20:59 Slot Id : <154> +05:20:59 Transaction Type : REQUEST +05:20:59 Received From : +05:20:59 ============================================================================ +05:20:59 FNo. Len. Field Value +05:20:59 ============================================================================ +05:20:59 [ 1] [ 4] [0800] +05:20:59 [ 7] [ 10] [0319102007] +05:20:59 [ 11] [ 6] [154580] +05:20:59 [ 70] [ 3] [301] +05:20:59 ============================================================================ +05:20:59 + + +waiting on router queue for slot.... +05:20:59 Sending to : +05:20:59 ============================================================================ +05:20:59 ============================================================================ +05:20:59 Slot Id : <154> +05:20:59 Transaction Type : RESPONSE +05:20:59 Received From : +05:20:59 ============================================================================ +05:20:59 FNo. Len. Field Value +05:20:59 ============================================================================ +05:20:59 [ 1] [ 4] [0810] +05:20:59 [ 7] [ 10] [0319102007] +05:20:59 [ 11] [ 6] [154580] +05:20:59 [ 39] [ 2] [00] +05:20:59 [ 70] [ 3] [301] +05:20:59 ============================================================================ +05:20:59 Calculate Source COMM Id = 2 +05:20:59 ============================================================================ +05:20:59 + + +waiting on router queue for slot.... +05:21:13 ============================================================================ +05:21:13 Slot Id : <162> +05:21:13 Transaction Type : REQUEST +05:21:13 Received From : +05:21:13 ============================================================================ +05:21:13 FNo. Len. Field Value +05:21:13 ============================================================================ +05:21:13 [ 1] [ 4] [0800] +05:21:13 [ 7] [ 10] [0319102022] +05:21:13 [ 11] [ 6] [154581] +05:21:13 [ 70] [ 3] [301] +05:21:13 ============================================================================ +05:21:13 + + +waiting on router queue for slot.... +05:21:13 Sending to : +05:21:13 ============================================================================ +05:21:13 ============================================================================ +05:21:13 Slot Id : <162> +05:21:13 Transaction Type : RESPONSE +05:21:13 Received From : +05:21:13 ============================================================================ +05:21:13 FNo. Len. Field Value +05:21:13 ============================================================================ +05:21:13 [ 1] [ 4] [0810] +05:21:13 [ 7] [ 10] [0319102022] +05:21:13 [ 11] [ 6] [154581] +05:21:13 [ 39] [ 2] [00] +05:21:13 [ 70] [ 3] [301] +05:21:13 ============================================================================ +05:21:13 Calculate Source COMM Id = 2 +05:21:13 ============================================================================ +05:21:13 + + +waiting on router queue for slot.... +05:21:20 ============================================================================ +05:21:20 Slot Id : <132> +05:21:20 Transaction Type : REQUEST +05:21:20 Received From : +05:21:20 ============================================================================ +05:21:20 FNo. Len. Field Value +05:21:20 ============================================================================ +05:21:20 [ 1] [ 4] [0800] +05:21:20 [ 7] [ 10] [0319221912] +05:21:20 [ 11] [ 6] [060632] +05:21:20 [ 37] [ 12] [57905060632] +05:21:20 [ 70] [ 3] [301] +05:21:20 ============================================================================ +05:21:20 + + +waiting on router queue for slot.... +05:21:20 Sending to : +05:21:20 ============================================================================ +05:21:20 ============================================================================ +05:21:20 Slot Id : <132> +05:21:20 Transaction Type : RESPONSE +05:21:20 Received From : +05:21:20 ============================================================================ +05:21:20 FNo. Len. Field Value +05:21:20 ============================================================================ +05:21:20 [ 1] [ 4] [0810] +05:21:20 [ 7] [ 10] [0319221912] +05:21:20 [ 11] [ 6] [060632] +05:21:20 [ 37] [ 12] [579050606320] +05:21:20 [ 39] [ 2] [00] +05:21:20 [ 70] [ 3] [810] +05:21:20 ============================================================================ +05:21:20 Calculate Source COMM Id = 4 +05:21:20 ============================================================================ +05:21:20 + + +waiting on router queue for slot.... +05:21:24 ============================================================================ +05:21:24 Slot Id : <145> +05:21:24 Transaction Type : REQUEST +05:21:24 Received From : +05:21:24 ============================================================================ +05:21:24 FNo. Len. Field Value +05:21:24 ============================================================================ +05:21:24 [ 1] [ 4] [0800] +05:21:24 [ 7] [ 10] [0319102033] +05:21:24 [ 11] [ 6] [154582] +05:21:24 [ 70] [ 3] [301] +05:21:24 ============================================================================ +05:21:24 + + +waiting on router queue for slot.... +05:21:24 Sending to : +05:21:24 ============================================================================ +05:21:24 ============================================================================ +05:21:24 Slot Id : <145> +05:21:24 Transaction Type : RESPONSE +05:21:24 Received From : +05:21:24 ============================================================================ +05:21:24 FNo. Len. Field Value +05:21:24 ============================================================================ +05:21:24 [ 1] [ 4] [0810] +05:21:24 [ 7] [ 10] [0319102033] +05:21:24 [ 11] [ 6] [154582] +05:21:24 [ 39] [ 2] [00] +05:21:24 [ 70] [ 3] [301] +05:21:24 ============================================================================ +05:21:24 Calculate Source COMM Id = 2 +05:21:24 ============================================================================ +05:21:24 + + +waiting on router queue for slot.... +05:21:34 ============================================================================ +05:21:34 Slot Id : <143> +05:21:34 Transaction Type : REQUEST +05:21:34 Received From : +05:21:34 ============================================================================ +05:21:34 FNo. Len. Field Value +05:21:34 ============================================================================ +05:21:34 [ 1] [ 4] [0800] +05:21:34 [ 7] [ 10] [0319102043] +05:21:34 [ 11] [ 6] [154583] +05:21:34 [ 70] [ 3] [301] +05:21:34 ============================================================================ +05:21:34 + + +waiting on router queue for slot.... +05:21:34 Sending to : +05:21:34 ============================================================================ +05:21:34 ============================================================================ +05:21:34 Slot Id : <143> +05:21:34 Transaction Type : RESPONSE +05:21:34 Received From : +05:21:34 ============================================================================ +05:21:34 FNo. Len. Field Value +05:21:34 ============================================================================ +05:21:34 [ 1] [ 4] [0810] +05:21:34 [ 7] [ 10] [0319102043] +05:21:34 [ 11] [ 6] [154583] +05:21:34 [ 39] [ 2] [00] +05:21:34 [ 70] [ 3] [301] +05:21:34 ============================================================================ +05:21:34 Calculate Source COMM Id = 2 +05:21:34 ============================================================================ +05:21:34 + + +waiting on router queue for slot.... +05:21:44 ============================================================================ +05:21:44 Slot Id : <158> +05:21:44 Transaction Type : REQUEST +05:21:44 Received From : +05:21:44 ============================================================================ +05:21:44 FNo. Len. Field Value +05:21:44 ============================================================================ +05:21:44 [ 1] [ 4] [0800] +05:21:44 [ 7] [ 10] [0320123332] +05:21:44 [ 11] [ 6] [053332] +05:21:44 [ 37] [ 12] [57905053332] +05:21:44 [ 70] [ 3] [301] +05:21:44 ============================================================================ +05:21:44 + + +waiting on router queue for slot.... +05:21:44 Sending to : +05:21:44 ============================================================================ +05:21:44 ============================================================================ +05:21:44 Slot Id : <158> +05:21:44 Transaction Type : RESPONSE +05:21:44 Received From : +05:21:44 ============================================================================ +05:21:44 FNo. Len. Field Value +05:21:44 ============================================================================ +05:21:44 [ 1] [ 4] [0810] +05:21:44 [ 7] [ 10] [0320123332] +05:21:44 [ 11] [ 6] [053332] +05:21:44 [ 37] [ 12] [579050533320] +05:21:44 [ 39] [ 2] [00] +05:21:44 [ 70] [ 3] [810] +05:21:44 ============================================================================ +05:21:44 Calculate Source COMM Id = 6 +05:21:44 ============================================================================ +05:21:44 + + +waiting on router queue for slot.... +05:21:45 ============================================================================ +05:21:45 Slot Id : <120> +05:21:45 Transaction Type : REQUEST +05:21:45 Received From : +05:21:45 ============================================================================ +05:21:45 FNo. Len. Field Value +05:21:45 ============================================================================ +05:21:45 [ 1] [ 4] [0800] +05:21:45 [ 7] [ 10] [0319102054] +05:21:45 [ 11] [ 6] [154584] +05:21:45 [ 70] [ 3] [301] +05:21:45 ============================================================================ +05:21:45 + + +waiting on router queue for slot.... +05:21:45 Sending to : +05:21:45 ============================================================================ +05:21:45 ============================================================================ +05:21:45 Slot Id : <120> +05:21:45 Transaction Type : RESPONSE +05:21:45 Received From : +05:21:45 ============================================================================ +05:21:45 FNo. Len. Field Value +05:21:45 ============================================================================ +05:21:45 [ 1] [ 4] [0810] +05:21:45 [ 7] [ 10] [0319102054] +05:21:45 [ 11] [ 6] [154584] +05:21:45 [ 39] [ 2] [00] +05:21:45 [ 70] [ 3] [301] +05:21:45 ============================================================================ +05:21:45 Calculate Source COMM Id = 2 +05:21:45 ============================================================================ +05:21:45 + + +waiting on router queue for slot.... +05:21:58 ============================================================================ +05:21:58 Slot Id : <150> +05:21:58 Transaction Type : REQUEST +05:21:58 Received From : +05:21:58 ============================================================================ +05:21:58 FNo. Len. Field Value +05:21:58 ============================================================================ +05:21:58 [ 1] [ 4] [0800] +05:21:58 [ 2] [ 5] [02531] +05:21:58 [ 3] [ 6] [579058] +05:21:58 [ 7] [ 10] [0319222158] +05:21:58 [ 11] [ 6] [806723] +05:21:58 [ 15] [ 10] [0319222158] +05:21:58 [ 37] [ 11] [57905806723] +05:21:58 [ 70] [ 3] [001] +05:21:58 ============================================================================ +05:21:58 + + +waiting on router queue for slot.... +05:21:58 ============================================================================ +05:21:58 Slot Id : <150> +05:21:58 Transaction Type : RESPONSE +05:21:58 Received From : +05:21:58 ============================================================================ +05:21:58 FNo. Len. Field Value +05:21:58 ============================================================================ +05:21:58 [ 1] [ 4] [0810] +05:21:58 [ 7] [ 10] [0319222158] +05:21:58 [ 11] [ 6] [806723] +05:21:58 [ 15] [ 4] [0319] +05:21:58 [ 37] [ 12] [57905806723] +05:21:58 [ 39] [ 2] [00] +05:21:58 [ 70] [ 3] [001] +05:21:58 ============================================================================ +05:21:58 Sending to : +05:21:58 ============================================================================ +05:21:58 + + +waiting on router queue for slot.... +05:22:02 ============================================================================ +05:22:02 Slot Id : <166> +05:22:02 Transaction Type : REQUEST +05:22:02 Received From : +05:22:02 ============================================================================ +05:22:02 FNo. Len. Field Value +05:22:02 ============================================================================ +05:22:02 [ 1] [ 4] [0800] +05:22:02 [ 7] [ 10] [0319102110] +05:22:02 [ 11] [ 6] [154585] +05:22:02 [ 70] [ 3] [301] +05:22:02 ============================================================================ +05:22:02 + + +waiting on router queue for slot.... +05:22:02 Sending to : +05:22:02 ============================================================================ +05:22:02 ============================================================================ +05:22:02 Slot Id : <166> +05:22:02 Transaction Type : RESPONSE +05:22:02 Received From : +05:22:02 ============================================================================ +05:22:02 FNo. Len. Field Value +05:22:02 ============================================================================ +05:22:02 [ 1] [ 4] [0810] +05:22:02 [ 7] [ 10] [0319102110] +05:22:02 [ 11] [ 6] [154585] +05:22:02 [ 39] [ 2] [00] +05:22:02 [ 70] [ 3] [301] +05:22:02 ============================================================================ +05:22:02 Calculate Source COMM Id = 2 +05:22:02 ============================================================================ +05:22:02 + + +waiting on router queue for slot.... +05:22:12 ============================================================================ +05:22:12 Slot Id : <130> +05:22:12 Transaction Type : REQUEST +05:22:12 Received From : +05:22:12 ============================================================================ +05:22:12 FNo. Len. Field Value +05:22:12 ============================================================================ +05:22:12 [ 1] [ 4] [0800] +05:22:12 [ 7] [ 10] [0319102121] +05:22:12 [ 11] [ 6] [154586] +05:22:12 [ 70] [ 3] [301] +05:22:12 ============================================================================ +05:22:12 + + +waiting on router queue for slot.... +05:22:12 Sending to : +05:22:12 ============================================================================ +05:22:12 ============================================================================ +05:22:12 Slot Id : <130> +05:22:12 Transaction Type : RESPONSE +05:22:12 Received From : +05:22:12 ============================================================================ +05:22:12 FNo. Len. Field Value +05:22:12 ============================================================================ +05:22:12 [ 1] [ 4] [0810] +05:22:12 [ 7] [ 10] [0319102121] +05:22:12 [ 11] [ 6] [154586] +05:22:12 [ 39] [ 2] [00] +05:22:12 [ 70] [ 3] [301] +05:22:12 ============================================================================ +05:22:12 Calculate Source COMM Id = 2 +05:22:12 ============================================================================ +05:22:12 + + +waiting on router queue for slot.... +05:22:28 ============================================================================ +05:22:28 Slot Id : <133> +05:22:28 Transaction Type : REQUEST +05:22:28 Received From : +05:22:28 ============================================================================ +05:22:28 FNo. Len. Field Value +05:22:28 ============================================================================ +05:22:28 [ 1] [ 4] [0800] +05:22:28 [ 7] [ 10] [0319102136] +05:22:28 [ 11] [ 6] [154587] +05:22:28 [ 70] [ 3] [301] +05:22:28 ============================================================================ +05:22:28 + + +waiting on router queue for slot.... +05:22:28 Sending to : +05:22:28 ============================================================================ +05:22:28 ============================================================================ +05:22:28 Slot Id : <133> +05:22:28 Transaction Type : RESPONSE +05:22:28 Received From : +05:22:28 ============================================================================ +05:22:28 FNo. Len. Field Value +05:22:28 ============================================================================ +05:22:28 [ 1] [ 4] [0810] +05:22:28 [ 7] [ 10] [0319102136] +05:22:28 [ 11] [ 6] [154587] +05:22:28 [ 39] [ 2] [00] +05:22:28 [ 70] [ 3] [301] +05:22:28 ============================================================================ +05:22:28 Calculate Source COMM Id = 2 +05:22:28 ============================================================================ +05:22:28 + + +waiting on router queue for slot.... +05:22:43 ============================================================================ +05:22:43 Slot Id : <142> +05:22:43 Transaction Type : REQUEST +05:22:43 Received From : +05:22:43 ============================================================================ +05:22:43 FNo. Len. Field Value +05:22:43 ============================================================================ +05:22:43 [ 1] [ 4] [0800] +05:22:43 [ 7] [ 10] [0319102152] +05:22:43 [ 11] [ 6] [154588] +05:22:43 [ 70] [ 3] [301] +05:22:43 ============================================================================ +05:22:43 + + +waiting on router queue for slot.... +05:22:43 Sending to : +05:22:43 ============================================================================ +05:22:43 ============================================================================ +05:22:43 Slot Id : <142> +05:22:43 Transaction Type : RESPONSE +05:22:43 Received From : +05:22:43 ============================================================================ +05:22:43 FNo. Len. Field Value +05:22:43 ============================================================================ +05:22:43 [ 1] [ 4] [0810] +05:22:43 [ 7] [ 10] [0319102152] +05:22:43 [ 11] [ 6] [154588] +05:22:43 [ 39] [ 2] [00] +05:22:43 [ 70] [ 3] [301] +05:22:43 ============================================================================ +05:22:43 Calculate Source COMM Id = 2 +05:22:43 ============================================================================ +05:22:43 + + +waiting on router queue for slot.... +05:22:49 ============================================================================ +05:22:49 Slot Id : <153> +05:22:49 Transaction Type : REQUEST +05:22:49 Received From : +05:22:49 ============================================================================ +05:22:49 FNo. Len. Field Value +05:22:49 ============================================================================ +05:22:49 [ 1] [ 4] [0800] +05:22:49 [ 7] [ 10] [0320123437] +05:22:49 [ 11] [ 6] [053437] +05:22:49 [ 37] [ 12] [57905053437] +05:22:49 [ 70] [ 3] [301] +05:22:49 ============================================================================ +05:22:49 + + +waiting on router queue for slot.... +05:22:49 Sending to : +05:22:49 ============================================================================ +05:22:49 ============================================================================ +05:22:49 Slot Id : <153> +05:22:49 Transaction Type : RESPONSE +05:22:49 Received From : +05:22:49 ============================================================================ +05:22:49 FNo. Len. Field Value +05:22:49 ============================================================================ +05:22:49 [ 1] [ 4] [0810] +05:22:49 [ 7] [ 10] [0320123437] +05:22:49 [ 11] [ 6] [053437] +05:22:49 [ 37] [ 12] [579050534370] +05:22:49 [ 39] [ 2] [00] +05:22:49 [ 70] [ 3] [810] +05:22:49 ============================================================================ +05:22:49 Calculate Source COMM Id = 6 +05:22:49 ============================================================================ +05:22:49 + + +waiting on router queue for slot.... +05:22:58 ============================================================================ +05:22:58 Slot Id : <110> +05:22:58 Transaction Type : REQUEST +05:22:58 Received From : +05:22:58 ============================================================================ +05:22:58 FNo. Len. Field Value +05:22:58 ============================================================================ +05:22:58 [ 1] [ 4] [0800] +05:22:58 [ 7] [ 10] [0319102207] +05:22:58 [ 11] [ 6] [154589] +05:22:58 [ 70] [ 3] [301] +05:22:58 ============================================================================ +05:22:58 + + +waiting on router queue for slot.... +05:22:58 Sending to : +05:22:58 ============================================================================ +05:22:58 ============================================================================ +05:22:58 Slot Id : <110> +05:22:58 Transaction Type : RESPONSE +05:22:58 Received From : +05:22:58 ============================================================================ +05:22:58 FNo. Len. Field Value +05:22:58 ============================================================================ +05:22:58 [ 1] [ 4] [0810] +05:22:58 [ 7] [ 10] [0319102207] +05:22:58 [ 11] [ 6] [154589] +05:22:58 [ 39] [ 2] [00] +05:22:58 [ 70] [ 3] [301] +05:22:58 ============================================================================ +05:22:58 Calculate Source COMM Id = 2 +05:22:58 ============================================================================ +05:22:58 + + +waiting on router queue for slot.... +05:23:00 ============================================================================ +05:23:00 Slot Id : <167> +05:23:00 Transaction Type : REQUEST +05:23:00 Received From : +05:23:00 ============================================================================ +05:23:00 FNo. Len. Field Value +05:23:00 ============================================================================ +05:23:00 [ 1] [ 4] [0800] +05:23:00 [ 2] [ 5] [02531] +05:23:00 [ 3] [ 6] [579058] +05:23:00 [ 7] [ 10] [0319222300] +05:23:00 [ 11] [ 6] [806724] +05:23:00 [ 15] [ 10] [0319222300] +05:23:00 [ 37] [ 11] [57905806724] +05:23:00 [ 70] [ 3] [001] +05:23:00 ============================================================================ +05:23:00 + + +waiting on router queue for slot.... +05:23:00 ============================================================================ +05:23:00 Slot Id : <167> +05:23:00 Transaction Type : RESPONSE +05:23:00 Received From : +05:23:00 ============================================================================ +05:23:00 FNo. Len. Field Value +05:23:00 ============================================================================ +05:23:00 [ 1] [ 4] [0810] +05:23:00 [ 7] [ 10] [0319222300] +05:23:00 [ 11] [ 6] [806724] +05:23:00 [ 15] [ 4] [0319] +05:23:00 [ 37] [ 12] [57905806724] +05:23:00 [ 39] [ 2] [00] +05:23:00 [ 70] [ 3] [001] +05:23:00 ============================================================================ +05:23:00 Sending to : +05:23:00 ============================================================================ +05:23:00 + + +waiting on router queue for slot.... +05:23:08 ============================================================================ +05:23:08 Slot Id : <137> +05:23:08 Transaction Type : REQUEST +05:23:08 Received From : +05:23:08 ============================================================================ +05:23:08 FNo. Len. Field Value +05:23:08 ============================================================================ +05:23:08 [ 1] [ 4] [0800] +05:23:08 [ 7] [ 10] [0319102217] +05:23:08 [ 11] [ 6] [154590] +05:23:08 [ 70] [ 3] [301] +05:23:08 ============================================================================ +05:23:08 + + +waiting on router queue for slot.... +05:23:08 Sending to : +05:23:08 ============================================================================ +05:23:09 ============================================================================ +05:23:09 Slot Id : <137> +05:23:09 Transaction Type : RESPONSE +05:23:09 Received From : +05:23:09 ============================================================================ +05:23:09 FNo. Len. Field Value +05:23:09 ============================================================================ +05:23:09 [ 1] [ 4] [0810] +05:23:09 [ 7] [ 10] [0319102217] +05:23:09 [ 11] [ 6] [154590] +05:23:09 [ 39] [ 2] [00] +05:23:09 [ 70] [ 3] [301] +05:23:09 ============================================================================ +05:23:09 Calculate Source COMM Id = 2 +05:23:09 ============================================================================ +05:23:09 + + +waiting on router queue for slot.... +05:23:17 ============================================================================ +05:23:17 Slot Id : <128> +05:23:17 Transaction Type : REQUEST +05:23:17 Received From : +05:23:17 ============================================================================ +05:23:17 FNo. Len. Field Value +05:23:17 ============================================================================ +05:23:17 [ 1] [ 4] [0800] +05:23:17 [ 7] [ 10] [0319222314] +05:23:17 [ 11] [ 6] [021457] +05:23:17 [ 37] [ 12] [507905021457] +05:23:17 [ 70] [ 3] [001] +05:23:17 ============================================================================ +05:23:17 + + +waiting on router queue for slot.... +05:23:17 Sending to : +05:23:17 ============================================================================ +05:23:17 ============================================================================ +05:23:17 Slot Id : <128> +05:23:17 Transaction Type : RESPONSE +05:23:17 Received From : +05:23:17 ============================================================================ +05:23:17 FNo. Len. Field Value +05:23:17 ============================================================================ +05:23:17 [ 1] [ 4] [0810] +05:23:17 [ 7] [ 10] [0319222314] +05:23:17 [ 11] [ 6] [021457] +05:23:17 [ 37] [ 12] [507905021457] +05:23:17 [ 39] [ 2] [00] +05:23:17 [ 70] [ 3] [001] +05:23:17 ============================================================================ +05:23:17 Calculate Source COMM Id = 0 +05:23:17 ============================================================================ +05:23:17 + + +waiting on router queue for slot.... +05:23:24 ============================================================================ +05:23:24 Slot Id : <146> +05:23:24 Transaction Type : REQUEST +05:23:24 Received From : +05:23:24 ============================================================================ +05:23:24 FNo. Len. Field Value +05:23:24 ============================================================================ +05:23:24 [ 1] [ 4] [0800] +05:23:24 [ 7] [ 10] [0319102232] +05:23:24 [ 11] [ 6] [154591] +05:23:24 [ 70] [ 3] [301] +05:23:24 ============================================================================ +05:23:24 + + +waiting on router queue for slot.... +05:23:24 Sending to : +05:23:24 ============================================================================ +05:23:24 ============================================================================ +05:23:24 Slot Id : <146> +05:23:24 Transaction Type : RESPONSE +05:23:24 Received From : +05:23:24 ============================================================================ +05:23:24 FNo. Len. Field Value +05:23:24 ============================================================================ +05:23:24 [ 1] [ 4] [0810] +05:23:24 [ 7] [ 10] [0319102232] +05:23:24 [ 11] [ 6] [154591] +05:23:24 [ 39] [ 2] [00] +05:23:24 [ 70] [ 3] [301] +05:23:24 ============================================================================ +05:23:24 Calculate Source COMM Id = 2 +05:23:24 ============================================================================ +05:23:24 + + +waiting on router queue for slot.... +05:23:35 ============================================================================ +05:23:35 Slot Id : <159> +05:23:35 Transaction Type : REQUEST +05:23:35 Received From : +05:23:35 ============================================================================ +05:23:35 FNo. Len. Field Value +05:23:35 ============================================================================ +05:23:35 [ 1] [ 4] [0800] +05:23:35 [ 7] [ 10] [0319102243] +05:23:35 [ 11] [ 6] [154592] +05:23:35 [ 70] [ 3] [301] +05:23:35 ============================================================================ +05:23:35 + + +waiting on router queue for slot.... +05:23:35 Sending to : +05:23:35 ============================================================================ +05:23:35 ============================================================================ +05:23:35 Slot Id : <159> +05:23:35 Transaction Type : RESPONSE +05:23:35 Received From : +05:23:35 ============================================================================ +05:23:35 FNo. Len. Field Value +05:23:35 ============================================================================ +05:23:35 [ 1] [ 4] [0810] +05:23:35 [ 7] [ 10] [0319102243] +05:23:35 [ 11] [ 6] [154592] +05:23:35 [ 39] [ 2] [00] +05:23:35 [ 70] [ 3] [301] +05:23:35 ============================================================================ +05:23:35 Calculate Source COMM Id = 2 +05:23:35 ============================================================================ +05:23:35 + + +waiting on router queue for slot.... +05:23:49 ============================================================================ +05:23:49 Slot Id : <175> +05:23:49 Transaction Type : REQUEST +05:23:49 Received From : +05:23:49 ============================================================================ +05:23:49 FNo. Len. Field Value +05:23:49 ============================================================================ +05:23:49 [ 1] [ 4] [0800] +05:23:49 [ 7] [ 10] [0319102258] +05:23:49 [ 11] [ 6] [154593] +05:23:49 [ 70] [ 3] [301] +05:23:49 ============================================================================ +05:23:49 + + +waiting on router queue for slot.... +05:23:49 Sending to : +05:23:49 ============================================================================ +05:23:49 ============================================================================ +05:23:49 Slot Id : <175> +05:23:49 Transaction Type : RESPONSE +05:23:49 Received From : +05:23:49 ============================================================================ +05:23:49 FNo. Len. Field Value +05:23:49 ============================================================================ +05:23:49 [ 1] [ 4] [0810] +05:23:49 [ 7] [ 10] [0319102258] +05:23:49 [ 11] [ 6] [154593] +05:23:49 [ 39] [ 2] [00] +05:23:49 [ 70] [ 3] [301] +05:23:49 ============================================================================ +05:23:49 Calculate Source COMM Id = 2 +05:23:49 ============================================================================ +05:23:49 + + +waiting on router queue for slot.... +05:23:54 ============================================================================ +05:23:54 Slot Id : <170> +05:23:54 Transaction Type : REQUEST +05:23:54 Received From : +05:23:54 ============================================================================ +05:23:54 FNo. Len. Field Value +05:23:54 ============================================================================ +05:23:54 [ 1] [ 4] [0800] +05:23:54 [ 7] [ 10] [0320123542] +05:23:54 [ 11] [ 6] [053542] +05:23:54 [ 37] [ 12] [57905053542] +05:23:54 [ 70] [ 3] [301] +05:23:54 ============================================================================ +05:23:54 + + +waiting on router queue for slot.... +05:23:54 Sending to : +05:23:54 ============================================================================ +05:23:54 ============================================================================ +05:23:54 Slot Id : <170> +05:23:54 Transaction Type : RESPONSE +05:23:54 Received From : +05:23:54 ============================================================================ +05:23:54 FNo. Len. Field Value +05:23:54 ============================================================================ +05:23:54 [ 1] [ 4] [0810] +05:23:54 [ 7] [ 10] [0320123542] +05:23:54 [ 11] [ 6] [053542] +05:23:54 [ 37] [ 12] [579050535420] +05:23:54 [ 39] [ 2] [00] +05:23:54 [ 70] [ 3] [810] +05:23:54 ============================================================================ +05:23:54 Calculate Source COMM Id = 6 +05:23:54 ============================================================================ +05:23:54 + + +waiting on router queue for slot.... +05:24:02 ============================================================================ +05:24:02 Slot Id : <141> +05:24:02 Transaction Type : REQUEST +05:24:02 Received From : +05:24:02 ============================================================================ +05:24:02 FNo. Len. Field Value +05:24:02 ============================================================================ +05:24:02 [ 1] [ 4] [0800] +05:24:02 [ 2] [ 5] [02531] +05:24:02 [ 3] [ 6] [579058] +05:24:02 [ 7] [ 10] [0319222402] +05:24:02 [ 11] [ 6] [806725] +05:24:02 [ 15] [ 10] [0319222402] +05:24:02 [ 37] [ 11] [57905806725] +05:24:02 [ 70] [ 3] [001] +05:24:02 ============================================================================ +05:24:02 + + +waiting on router queue for slot.... +05:24:02 ============================================================================ +05:24:02 Slot Id : <141> +05:24:02 Transaction Type : RESPONSE +05:24:02 Received From : +05:24:02 ============================================================================ +05:24:02 FNo. Len. Field Value +05:24:02 ============================================================================ +05:24:02 [ 1] [ 4] [0810] +05:24:02 [ 7] [ 10] [0319222402] +05:24:02 [ 11] [ 6] [806725] +05:24:02 [ 15] [ 4] [0319] +05:24:02 [ 37] [ 12] [57905806725] +05:24:02 [ 39] [ 2] [00] +05:24:02 [ 70] [ 3] [001] +05:24:02 ============================================================================ +05:24:02 Sending to : +05:24:02 ============================================================================ +05:24:02 + + +waiting on router queue for slot.... +05:24:07 ============================================================================ +05:24:07 Slot Id : <151> +05:24:07 Transaction Type : REQUEST +05:24:07 Received From : +05:24:07 ============================================================================ +05:24:07 FNo. Len. Field Value +05:24:07 ============================================================================ +05:24:07 [ 1] [ 4] [0800] +05:24:07 [ 7] [ 10] [0319102315] +05:24:07 [ 11] [ 6] [154594] +05:24:07 [ 70] [ 3] [301] +05:24:07 ============================================================================ +05:24:07 + + +waiting on router queue for slot.... +05:24:07 Sending to : +05:24:07 ============================================================================ +05:24:07 ============================================================================ +05:24:07 Slot Id : <151> +05:24:07 Transaction Type : RESPONSE +05:24:07 Received From : +05:24:07 ============================================================================ +05:24:07 FNo. Len. Field Value +05:24:07 ============================================================================ +05:24:07 [ 1] [ 4] [0810] +05:24:07 [ 7] [ 10] [0319102315] +05:24:07 [ 11] [ 6] [154594] +05:24:07 [ 39] [ 2] [00] +05:24:07 [ 70] [ 3] [301] +05:24:07 ============================================================================ +05:24:07 Calculate Source COMM Id = 2 +05:24:07 ============================================================================ +05:24:07 + + +waiting on router queue for slot.... +05:24:20 ============================================================================ +05:24:20 Slot Id : <164> +05:24:20 Transaction Type : REQUEST +05:24:20 Received From : +05:24:20 ============================================================================ +05:24:20 FNo. Len. Field Value +05:24:20 ============================================================================ +05:24:20 [ 1] [ 4] [0800] +05:24:20 [ 7] [ 10] [0319102328] +05:24:20 [ 11] [ 6] [154595] +05:24:20 [ 70] [ 3] [301] +05:24:20 ============================================================================ +05:24:20 + + +waiting on router queue for slot.... +05:24:20 Sending to : +05:24:20 ============================================================================ +05:24:20 ============================================================================ +05:24:20 Slot Id : <164> +05:24:20 Transaction Type : RESPONSE +05:24:20 Received From : +05:24:20 ============================================================================ +05:24:20 FNo. Len. Field Value +05:24:20 ============================================================================ +05:24:20 [ 1] [ 4] [0810] +05:24:20 [ 7] [ 10] [0319102328] +05:24:20 [ 11] [ 6] [154595] +05:24:20 [ 39] [ 2] [00] +05:24:20 [ 70] [ 3] [301] +05:24:20 ============================================================================ +05:24:20 Calculate Source COMM Id = 2 +05:24:20 ============================================================================ +05:24:20 + + +waiting on router queue for slot.... +05:24:35 ============================================================================ +05:24:35 Slot Id : <157> +05:24:35 Transaction Type : REQUEST +05:24:35 Received From : +05:24:35 ============================================================================ +05:24:35 FNo. Len. Field Value +05:24:35 ============================================================================ +05:24:35 [ 1] [ 4] [0800] +05:24:35 [ 7] [ 10] [0319102344] +05:24:35 [ 11] [ 6] [154596] +05:24:35 [ 70] [ 3] [301] +05:24:35 ============================================================================ +05:24:35 + + +waiting on router queue for slot.... +05:24:35 Sending to : +05:24:35 ============================================================================ +05:24:35 ============================================================================ +05:24:35 Slot Id : <157> +05:24:35 Transaction Type : RESPONSE +05:24:35 Received From : +05:24:35 ============================================================================ +05:24:35 FNo. Len. Field Value +05:24:35 ============================================================================ +05:24:35 [ 1] [ 4] [0810] +05:24:35 [ 7] [ 10] [0319102344] +05:24:35 [ 11] [ 6] [154596] +05:24:35 [ 39] [ 2] [00] +05:24:35 [ 70] [ 3] [301] +05:24:35 ============================================================================ +05:24:35 Calculate Source COMM Id = 2 +05:24:35 ============================================================================ +05:24:35 + + +waiting on router queue for slot.... +05:24:51 ============================================================================ +05:24:51 Slot Id : <172> +05:24:51 Transaction Type : REQUEST +05:24:51 Received From : +05:24:51 ============================================================================ +05:24:51 FNo. Len. Field Value +05:24:51 ============================================================================ +05:24:51 [ 1] [ 4] [0800] +05:24:51 [ 7] [ 10] [0319102359] +05:24:51 [ 11] [ 6] [154597] +05:24:51 [ 70] [ 3] [301] +05:24:51 ============================================================================ +05:24:51 + + +waiting on router queue for slot.... +05:24:51 Sending to : +05:24:51 ============================================================================ +05:24:51 ============================================================================ +05:24:51 Slot Id : <172> +05:24:51 Transaction Type : RESPONSE +05:24:51 Received From : +05:24:51 ============================================================================ +05:24:51 FNo. Len. Field Value +05:24:51 ============================================================================ +05:24:51 [ 1] [ 4] [0810] +05:24:51 [ 7] [ 10] [0319102359] +05:24:51 [ 11] [ 6] [154597] +05:24:51 [ 39] [ 2] [00] +05:24:51 [ 70] [ 3] [301] +05:24:51 ============================================================================ +05:24:51 Calculate Source COMM Id = 2 +05:24:51 ============================================================================ +05:24:51 + + +waiting on router queue for slot.... +05:24:55 ============================================================================ +05:24:55 Slot Id : <148> +05:24:55 Transaction Type : REQUEST +05:24:55 Received From : +05:24:55 ============================================================================ +05:24:55 FNo. Len. Field Value +05:24:55 ============================================================================ +05:24:55 [ 1] [ 4] [0800] +05:24:55 [ 7] [ 10] [0319223242] +05:24:55 [ 11] [ 6] [018721] +05:24:55 [ 37] [ 12] [57905018721] +05:24:55 [ 70] [ 3] [301] +05:24:55 ============================================================================ +05:24:55 + + +waiting on router queue for slot.... +05:24:55 Sending to : +05:24:55 ============================================================================ +05:24:55 ============================================================================ +05:24:55 Slot Id : <148> +05:24:55 Transaction Type : RESPONSE +05:24:55 Received From : +05:24:55 ============================================================================ +05:24:55 FNo. Len. Field Value +05:24:55 ============================================================================ +05:24:55 [ 1] [ 4] [0810] +05:24:55 [ 7] [ 10] [0319223242] +05:24:55 [ 11] [ 6] [018721] +05:24:55 [ 37] [ 12] [579050187210] +05:24:55 [ 39] [ 2] [00] +05:24:55 [ 70] [ 3] [810] +05:24:55 ============================================================================ +05:24:55 Calculate Source COMM Id = 1 +05:24:55 ============================================================================ +05:24:55 + + +waiting on router queue for slot.... +05:24:59 ============================================================================ +05:24:59 Slot Id : <182> +05:24:59 Transaction Type : REQUEST +05:24:59 Received From : +05:24:59 ============================================================================ +05:24:59 FNo. Len. Field Value +05:24:59 ============================================================================ +05:24:59 [ 1] [ 4] [0800] +05:24:59 [ 7] [ 10] [0320123647] +05:24:59 [ 11] [ 6] [053647] +05:24:59 [ 37] [ 12] [57905053647] +05:24:59 [ 70] [ 3] [301] +05:24:59 ============================================================================ +05:24:59 + + +waiting on router queue for slot.... +05:24:59 Sending to : +05:24:59 ============================================================================ +05:24:59 ============================================================================ +05:24:59 Slot Id : <182> +05:24:59 Transaction Type : RESPONSE +05:24:59 Received From : +05:24:59 ============================================================================ +05:24:59 FNo. Len. Field Value +05:24:59 ============================================================================ +05:24:59 [ 1] [ 4] [0810] +05:24:59 [ 7] [ 10] [0320123647] +05:24:59 [ 11] [ 6] [053647] +05:24:59 [ 37] [ 12] [579050536470] +05:24:59 [ 39] [ 2] [00] +05:24:59 [ 70] [ 3] [810] +05:24:59 ============================================================================ +05:24:59 Calculate Source COMM Id = 6 +05:24:59 ============================================================================ +05:24:59 + + +waiting on router queue for slot.... +05:25:02 ============================================================================ +05:25:02 Slot Id : <186> +05:25:02 Transaction Type : REQUEST +05:25:02 Received From : +05:25:02 ============================================================================ +05:25:02 FNo. Len. Field Value +05:25:02 ============================================================================ +05:25:02 [ 1] [ 4] [0800] +05:25:02 [ 7] [ 10] [0319102411] +05:25:02 [ 11] [ 6] [154598] +05:25:02 [ 70] [ 3] [301] +05:25:02 ============================================================================ +05:25:02 + + +waiting on router queue for slot.... +05:25:02 Sending to : +05:25:02 ============================================================================ +05:25:02 ============================================================================ +05:25:02 Slot Id : <186> +05:25:02 Transaction Type : RESPONSE +05:25:02 Received From : +05:25:02 ============================================================================ +05:25:02 FNo. Len. Field Value +05:25:02 ============================================================================ +05:25:02 [ 1] [ 4] [0810] +05:25:02 [ 7] [ 10] [0319102411] +05:25:02 [ 11] [ 6] [154598] +05:25:02 [ 39] [ 2] [00] +05:25:02 [ 70] [ 3] [301] +05:25:02 ============================================================================ +05:25:02 Calculate Source COMM Id = 2 +05:25:02 ============================================================================ +05:25:02 + + +waiting on router queue for slot.... +05:25:04 ============================================================================ +05:25:04 Slot Id : <171> +05:25:04 Transaction Type : REQUEST +05:25:04 Received From : +05:25:04 ============================================================================ +05:25:04 FNo. Len. Field Value +05:25:04 ============================================================================ +05:25:04 [ 1] [ 4] [0800] +05:25:04 [ 2] [ 5] [02531] +05:25:04 [ 3] [ 6] [579058] +05:25:04 [ 7] [ 10] [0319222504] +05:25:04 [ 11] [ 6] [806726] +05:25:04 [ 15] [ 10] [0319222504] +05:25:04 [ 37] [ 11] [57905806726] +05:25:04 [ 70] [ 3] [001] +05:25:04 ============================================================================ +05:25:04 + + +waiting on router queue for slot.... +05:25:04 ============================================================================ +05:25:04 Slot Id : <171> +05:25:04 Transaction Type : RESPONSE +05:25:04 Received From : +05:25:04 ============================================================================ +05:25:04 FNo. Len. Field Value +05:25:04 ============================================================================ +05:25:04 [ 1] [ 4] [0810] +05:25:04 [ 7] [ 10] [0319222504] +05:25:04 [ 11] [ 6] [806726] +05:25:04 [ 15] [ 4] [0319] +05:25:04 [ 37] [ 12] [57905806726] +05:25:04 [ 39] [ 2] [00] +05:25:04 [ 70] [ 3] [001] +05:25:04 ============================================================================ +05:25:04 Sending to : +05:25:04 ============================================================================ +05:25:04 + + +waiting on router queue for slot.... +05:25:13 ============================================================================ +05:25:13 Slot Id : <126> +05:25:13 Transaction Type : REQUEST +05:25:13 Received From : +05:25:13 ============================================================================ +05:25:13 FNo. Len. Field Value +05:25:13 ============================================================================ +05:25:13 [ 1] [ 4] [0800] +05:25:13 [ 7] [ 10] [0319102421] +05:25:13 [ 11] [ 6] [154599] +05:25:13 [ 70] [ 3] [301] +05:25:13 ============================================================================ +05:25:13 + + +waiting on router queue for slot.... +05:25:13 Sending to : +05:25:13 ============================================================================ +05:25:13 ============================================================================ +05:25:13 Slot Id : <126> +05:25:13 Transaction Type : RESPONSE +05:25:13 Received From : +05:25:13 ============================================================================ +05:25:13 FNo. Len. Field Value +05:25:13 ============================================================================ +05:25:13 [ 1] [ 4] [0810] +05:25:13 [ 7] [ 10] [0319102421] +05:25:13 [ 11] [ 6] [154599] +05:25:13 [ 39] [ 2] [00] +05:25:13 [ 70] [ 3] [301] +05:25:13 ============================================================================ +05:25:13 Calculate Source COMM Id = 2 +05:25:13 ============================================================================ +05:25:13 + + +waiting on router queue for slot.... +05:25:24 ============================================================================ +05:25:24 Slot Id : <119> +05:25:24 Transaction Type : REQUEST +05:25:24 Received From : +05:25:24 ============================================================================ +05:25:24 FNo. Len. Field Value +05:25:24 ============================================================================ +05:25:24 [ 1] [ 4] [0800] +05:25:24 [ 7] [ 10] [0319102432] +05:25:24 [ 11] [ 6] [154600] +05:25:24 [ 70] [ 3] [301] +05:25:24 ============================================================================ +05:25:24 + + +waiting on router queue for slot.... +05:25:24 Sending to : +05:25:24 ============================================================================ +05:25:24 ============================================================================ +05:25:24 Slot Id : <119> +05:25:24 Transaction Type : RESPONSE +05:25:24 Received From : +05:25:24 ============================================================================ +05:25:24 FNo. Len. Field Value +05:25:24 ============================================================================ +05:25:24 [ 1] [ 4] [0810] +05:25:24 [ 7] [ 10] [0319102432] +05:25:24 [ 11] [ 6] [154600] +05:25:24 [ 39] [ 2] [00] +05:25:24 [ 70] [ 3] [301] +05:25:24 ============================================================================ +05:25:24 Calculate Source COMM Id = 2 +05:25:24 ============================================================================ +05:25:24 + + +waiting on router queue for slot.... +05:25:35 ============================================================================ +05:25:35 Slot Id : <139> +05:25:35 Transaction Type : REQUEST +05:25:35 Received From : +05:25:35 ============================================================================ +05:25:35 FNo. Len. Field Value +05:25:35 ============================================================================ +05:25:35 [ 1] [ 4] [0800] +05:25:35 [ 7] [ 10] [0319102443] +05:25:35 [ 11] [ 6] [154601] +05:25:35 [ 70] [ 3] [301] +05:25:35 ============================================================================ +05:25:35 + + +waiting on router queue for slot.... +05:25:35 Sending to : +05:25:35 ============================================================================ +05:25:35 ============================================================================ +05:25:35 Slot Id : <139> +05:25:35 Transaction Type : RESPONSE +05:25:35 Received From : +05:25:35 ============================================================================ +05:25:35 FNo. Len. Field Value +05:25:35 ============================================================================ +05:25:35 [ 1] [ 4] [0810] +05:25:35 [ 7] [ 10] [0319102443] +05:25:35 [ 11] [ 6] [154601] +05:25:35 [ 39] [ 2] [00] +05:25:35 [ 70] [ 3] [301] +05:25:35 ============================================================================ +05:25:35 Calculate Source COMM Id = 2 +05:25:35 ============================================================================ +05:25:35 + + +waiting on router queue for slot.... +05:25:50 ============================================================================ +05:25:50 Slot Id : <176> +05:25:50 Transaction Type : REQUEST +05:25:50 Received From : +05:25:50 ============================================================================ +05:25:50 FNo. Len. Field Value +05:25:50 ============================================================================ +05:25:50 [ 1] [ 4] [0800] +05:25:50 [ 7] [ 10] [0319102459] +05:25:50 [ 11] [ 6] [154602] +05:25:50 [ 70] [ 3] [301] +05:25:50 ============================================================================ +05:25:50 + + +waiting on router queue for slot.... +05:25:50 Sending to : +05:25:50 ============================================================================ +05:25:50 ============================================================================ +05:25:50 Slot Id : <176> +05:25:50 Transaction Type : RESPONSE +05:25:50 Received From : +05:25:50 ============================================================================ +05:25:50 FNo. Len. Field Value +05:25:50 ============================================================================ +05:25:50 [ 1] [ 4] [0810] +05:25:50 [ 7] [ 10] [0319102459] +05:25:50 [ 11] [ 6] [154602] +05:25:50 [ 39] [ 2] [00] +05:25:50 [ 70] [ 3] [301] +05:25:50 ============================================================================ +05:25:50 Calculate Source COMM Id = 2 +05:25:50 ============================================================================ +05:25:50 + + +waiting on router queue for slot.... +05:26:00 ============================================================================ +05:26:00 Slot Id : <156> +05:26:00 Transaction Type : REQUEST +05:26:00 Received From : +05:26:00 ============================================================================ +05:26:00 FNo. Len. Field Value +05:26:00 ============================================================================ +05:26:00 [ 1] [ 4] [0800] +05:26:00 [ 7] [ 10] [0319102509] +05:26:00 [ 11] [ 6] [154603] +05:26:00 [ 70] [ 3] [301] +05:26:00 ============================================================================ +05:26:00 + + +waiting on router queue for slot.... +05:26:00 Sending to : +05:26:00 ============================================================================ +05:26:00 ============================================================================ +05:26:00 Slot Id : <156> +05:26:00 Transaction Type : RESPONSE +05:26:00 Received From : +05:26:00 ============================================================================ +05:26:00 FNo. Len. Field Value +05:26:00 ============================================================================ +05:26:00 [ 1] [ 4] [0810] +05:26:00 [ 7] [ 10] [0319102509] +05:26:00 [ 11] [ 6] [154603] +05:26:00 [ 39] [ 2] [00] +05:26:00 [ 70] [ 3] [301] +05:26:00 ============================================================================ +05:26:00 Calculate Source COMM Id = 2 +05:26:00 ============================================================================ +05:26:00 + + +waiting on router queue for slot.... +05:26:04 ============================================================================ +05:26:04 Slot Id : <202> +05:26:04 Transaction Type : REQUEST +05:26:04 Received From : +05:26:04 ============================================================================ +05:26:04 FNo. Len. Field Value +05:26:04 ============================================================================ +05:26:04 [ 1] [ 4] [0800] +05:26:04 [ 7] [ 10] [0320123753] +05:26:04 [ 11] [ 6] [053753] +05:26:04 [ 37] [ 12] [57905053753] +05:26:04 [ 70] [ 3] [301] +05:26:04 ============================================================================ +05:26:04 + + +waiting on router queue for slot.... +05:26:04 Sending to : +05:26:04 ============================================================================ +05:26:04 ============================================================================ +05:26:04 Slot Id : <202> +05:26:04 Transaction Type : RESPONSE +05:26:04 Received From : +05:26:04 ============================================================================ +05:26:04 FNo. Len. Field Value +05:26:04 ============================================================================ +05:26:04 [ 1] [ 4] [0810] +05:26:04 [ 7] [ 10] [0320123753] +05:26:04 [ 11] [ 6] [053753] +05:26:04 [ 37] [ 12] [579050537530] +05:26:04 [ 39] [ 2] [00] +05:26:04 [ 70] [ 3] [810] +05:26:04 ============================================================================ +05:26:04 Calculate Source COMM Id = 6 +05:26:04 ============================================================================ +05:26:04 + + +waiting on router queue for slot.... +05:26:06 ============================================================================ +05:26:06 Slot Id : <187> +05:26:06 Transaction Type : REQUEST +05:26:06 Received From : +05:26:06 ============================================================================ +05:26:06 FNo. Len. Field Value +05:26:06 ============================================================================ +05:26:06 [ 1] [ 4] [0800] +05:26:06 [ 2] [ 5] [02531] +05:26:06 [ 3] [ 6] [579058] +05:26:06 [ 7] [ 10] [0319222606] +05:26:06 [ 11] [ 6] [806727] +05:26:06 [ 15] [ 10] [0319222606] +05:26:06 [ 37] [ 11] [57905806727] +05:26:06 [ 70] [ 3] [001] +05:26:06 ============================================================================ +05:26:06 + + +waiting on router queue for slot.... +05:26:06 ============================================================================ +05:26:06 Slot Id : <187> +05:26:06 Transaction Type : RESPONSE +05:26:06 Received From : +05:26:06 ============================================================================ +05:26:06 FNo. Len. Field Value +05:26:06 ============================================================================ +05:26:06 [ 1] [ 4] [0810] +05:26:06 [ 7] [ 10] [0319222606] +05:26:06 [ 11] [ 6] [806727] +05:26:06 [ 15] [ 4] [0319] +05:26:06 [ 37] [ 12] [57905806727] +05:26:06 [ 39] [ 2] [00] +05:26:06 [ 70] [ 3] [001] +05:26:06 ============================================================================ +05:26:06 Sending to : +05:26:06 ============================================================================ +05:26:06 + + +waiting on router queue for slot.... +05:26:16 ============================================================================ +05:26:16 Slot Id : <163> +05:26:16 Transaction Type : REQUEST +05:26:16 Received From : +05:26:16 ============================================================================ +05:26:16 FNo. Len. Field Value +05:26:16 ============================================================================ +05:26:16 [ 1] [ 4] [0800] +05:26:16 [ 7] [ 10] [0319102525] +05:26:16 [ 11] [ 6] [154604] +05:26:16 [ 70] [ 3] [301] +05:26:16 ============================================================================ +05:26:16 + + +waiting on router queue for slot.... +05:26:16 Sending to : +05:26:16 ============================================================================ +05:26:16 ============================================================================ +05:26:16 Slot Id : <163> +05:26:16 Transaction Type : RESPONSE +05:26:16 Received From : +05:26:16 ============================================================================ +05:26:16 FNo. Len. Field Value +05:26:16 ============================================================================ +05:26:16 [ 1] [ 4] [0810] +05:26:16 [ 7] [ 10] [0319102525] +05:26:16 [ 11] [ 6] [154604] +05:26:16 [ 39] [ 2] [00] +05:26:16 [ 70] [ 3] [301] +05:26:16 ============================================================================ +05:26:16 Calculate Source COMM Id = 2 +05:26:16 ============================================================================ +05:26:16 + + +waiting on router queue for slot.... +05:26:20 ============================================================================ +05:26:20 Slot Id : <203> +05:26:20 Transaction Type : REQUEST +05:26:20 Received From : +05:26:20 ============================================================================ +05:26:20 FNo. Len. Field Value +05:26:20 ============================================================================ +05:26:20 [ 1] [ 4] [0800] +05:26:20 [ 7] [ 10] [0319222412] +05:26:20 [ 11] [ 6] [094462] +05:26:20 [ 37] [ 12] [57905094462] +05:26:20 [ 70] [ 3] [301] +05:26:20 ============================================================================ +05:26:20 + + +waiting on router queue for slot.... +05:26:20 Sending to : +05:26:20 ============================================================================ +05:26:20 ============================================================================ +05:26:20 Slot Id : <203> +05:26:20 Transaction Type : RESPONSE +05:26:20 Received From : +05:26:20 ============================================================================ +05:26:20 FNo. Len. Field Value +05:26:20 ============================================================================ +05:26:20 [ 1] [ 4] [0810] +05:26:20 [ 7] [ 10] [0319222412] +05:26:20 [ 11] [ 6] [094462] +05:26:20 [ 37] [ 12] [579050944620] +05:26:20 [ 39] [ 2] [00] +05:26:20 [ 70] [ 3] [810] +05:26:20 ============================================================================ +05:26:20 Calculate Source COMM Id = 4 +05:26:20 ============================================================================ +05:26:20 + + +waiting on router queue for slot.... +05:26:32 ============================================================================ +05:26:32 Slot Id : <160> +05:26:32 Transaction Type : REQUEST +05:26:32 Received From : +05:26:32 ============================================================================ +05:26:32 FNo. Len. Field Value +05:26:32 ============================================================================ +05:26:32 [ 1] [ 4] [0800] +05:26:32 [ 7] [ 10] [0319102540] +05:26:32 [ 11] [ 6] [154605] +05:26:32 [ 70] [ 3] [301] +05:26:32 ============================================================================ +05:26:32 + + +waiting on router queue for slot.... +05:26:32 Sending to : +05:26:32 ============================================================================ +05:26:32 ============================================================================ +05:26:32 Slot Id : <160> +05:26:32 Transaction Type : RESPONSE +05:26:32 Received From : +05:26:32 ============================================================================ +05:26:32 FNo. Len. Field Value +05:26:32 ============================================================================ +05:26:32 [ 1] [ 4] [0810] +05:26:32 [ 7] [ 10] [0319102540] +05:26:32 [ 11] [ 6] [154605] +05:26:32 [ 39] [ 2] [00] +05:26:32 [ 70] [ 3] [301] +05:26:32 ============================================================================ +05:26:32 Calculate Source COMM Id = 2 +05:26:32 ============================================================================ +05:26:32 + + +waiting on router queue for slot.... +05:26:43 ============================================================================ +05:26:43 Slot Id : <179> +05:26:43 Transaction Type : REQUEST +05:26:43 Received From : +05:26:43 ============================================================================ +05:26:43 FNo. Len. Field Value +05:26:43 ============================================================================ +05:26:43 [ 1] [ 4] [0800] +05:26:43 [ 7] [ 10] [0319102551] +05:26:43 [ 11] [ 6] [154606] +05:26:43 [ 70] [ 3] [301] +05:26:43 ============================================================================ +05:26:43 + + +waiting on router queue for slot.... +05:26:43 Sending to : +05:26:43 ============================================================================ +05:26:43 ============================================================================ +05:26:43 Slot Id : <179> +05:26:43 Transaction Type : RESPONSE +05:26:43 Received From : +05:26:43 ============================================================================ +05:26:43 FNo. Len. Field Value +05:26:43 ============================================================================ +05:26:43 [ 1] [ 4] [0810] +05:26:43 [ 7] [ 10] [0319102551] +05:26:43 [ 11] [ 6] [154606] +05:26:43 [ 39] [ 2] [00] +05:26:43 [ 70] [ 3] [301] +05:26:43 ============================================================================ +05:26:43 Calculate Source COMM Id = 2 +05:26:43 ============================================================================ +05:26:43 + + +waiting on router queue for slot.... +05:26:58 ============================================================================ +05:26:58 Slot Id : <192> +05:26:58 Transaction Type : REQUEST +05:26:58 Received From : +05:26:58 ============================================================================ +05:26:58 FNo. Len. Field Value +05:26:58 ============================================================================ +05:26:58 [ 1] [ 4] [0800] +05:26:58 [ 7] [ 10] [0319102607] +05:26:58 [ 11] [ 6] [154607] +05:26:58 [ 70] [ 3] [301] +05:26:58 ============================================================================ +05:26:58 + + +waiting on router queue for slot.... +05:26:58 Sending to : +05:26:58 ============================================================================ +05:26:58 ============================================================================ +05:26:58 Slot Id : <192> +05:26:58 Transaction Type : RESPONSE +05:26:58 Received From : +05:26:58 ============================================================================ +05:26:58 FNo. Len. Field Value +05:26:58 ============================================================================ +05:26:58 [ 1] [ 4] [0810] +05:26:58 [ 7] [ 10] [0319102607] +05:26:58 [ 11] [ 6] [154607] +05:26:58 [ 39] [ 2] [00] +05:26:58 [ 70] [ 3] [301] +05:26:58 ============================================================================ +05:26:58 Calculate Source COMM Id = 2 +05:26:58 ============================================================================ +05:26:58 + + +waiting on router queue for slot.... +05:27:08 ============================================================================ +05:27:08 Slot Id : <135> +05:27:08 Transaction Type : REQUEST +05:27:08 Received From : +05:27:08 ============================================================================ +05:27:08 FNo. Len. Field Value +05:27:08 ============================================================================ +05:27:08 [ 1] [ 4] [0800] +05:27:08 [ 2] [ 5] [02531] +05:27:08 [ 3] [ 6] [579058] +05:27:08 [ 7] [ 10] [0319222708] +05:27:08 [ 11] [ 6] [806728] +05:27:08 [ 15] [ 10] [0319222708] +05:27:08 [ 37] [ 11] [57905806728] +05:27:08 [ 70] [ 3] [001] +05:27:08 ============================================================================ +05:27:08 + + +waiting on router queue for slot.... +05:27:08 ============================================================================ +05:27:08 Slot Id : <135> +05:27:08 Transaction Type : RESPONSE +05:27:08 Received From : +05:27:08 ============================================================================ +05:27:08 FNo. Len. Field Value +05:27:08 ============================================================================ +05:27:08 [ 1] [ 4] [0810] +05:27:08 [ 7] [ 10] [0319222708] +05:27:08 [ 11] [ 6] [806728] +05:27:08 [ 15] [ 4] [0319] +05:27:08 [ 37] [ 12] [57905806728] +05:27:08 [ 39] [ 2] [00] +05:27:08 [ 70] [ 3] [001] +05:27:08 ============================================================================ +05:27:08 Sending to : +05:27:08 ============================================================================ +05:27:08 + + +waiting on router queue for slot.... +05:27:09 ============================================================================ +05:27:09 Slot Id : <144> +05:27:09 Transaction Type : REQUEST +05:27:09 Received From : +05:27:09 ============================================================================ +05:27:09 FNo. Len. Field Value +05:27:09 ============================================================================ +05:27:09 [ 1] [ 4] [0800] +05:27:09 [ 7] [ 10] [0319102618] +05:27:09 [ 11] [ 6] [154608] +05:27:09 [ 70] [ 3] [301] +05:27:09 ============================================================================ +05:27:09 + + +waiting on router queue for slot.... +05:27:09 Sending to : +05:27:09 ============================================================================ +05:27:09 ============================================================================ +05:27:09 Slot Id : <144> +05:27:09 Transaction Type : RESPONSE +05:27:09 Received From : +05:27:09 ============================================================================ +05:27:09 FNo. Len. Field Value +05:27:09 ============================================================================ +05:27:09 [ 1] [ 4] [0810] +05:27:09 [ 7] [ 10] [0319102618] +05:27:09 [ 11] [ 6] [154608] +05:27:09 [ 39] [ 2] [00] +05:27:09 [ 70] [ 3] [301] +05:27:09 ============================================================================ +05:27:09 Calculate Source COMM Id = 2 +05:27:09 ============================================================================ +05:27:09 + + +waiting on router queue for slot.... +05:27:09 ============================================================================ +05:27:09 Slot Id : <204> +05:27:09 Transaction Type : REQUEST +05:27:09 Received From : +05:27:09 ============================================================================ +05:27:09 FNo. Len. Field Value +05:27:09 ============================================================================ +05:27:09 [ 1] [ 4] [0800] +05:27:09 [ 7] [ 10] [0320123858] +05:27:09 [ 11] [ 6] [053858] +05:27:09 [ 37] [ 12] [57905053858] +05:27:09 [ 70] [ 3] [301] +05:27:09 ============================================================================ +05:27:09 + + +waiting on router queue for slot.... +05:27:09 Sending to : +05:27:09 ============================================================================ +05:27:09 ============================================================================ +05:27:09 Slot Id : <204> +05:27:09 Transaction Type : RESPONSE +05:27:09 Received From : +05:27:09 ============================================================================ +05:27:09 FNo. Len. Field Value +05:27:09 ============================================================================ +05:27:09 [ 1] [ 4] [0810] +05:27:09 [ 7] [ 10] [0320123858] +05:27:09 [ 11] [ 6] [053858] +05:27:09 [ 37] [ 12] [579050538580] +05:27:09 [ 39] [ 2] [00] +05:27:09 [ 70] [ 3] [810] +05:27:09 ============================================================================ +05:27:09 Calculate Source COMM Id = 6 +05:27:09 ============================================================================ +05:27:09 + + +waiting on router queue for slot.... +05:27:24 ============================================================================ +05:27:24 Slot Id : <152> +05:27:24 Transaction Type : REQUEST +05:27:24 Received From : +05:27:24 ============================================================================ +05:27:24 FNo. Len. Field Value +05:27:24 ============================================================================ +05:27:24 [ 1] [ 4] [0800] +05:27:24 [ 7] [ 10] [0319102633] +05:27:24 [ 11] [ 6] [154609] +05:27:24 [ 70] [ 3] [301] +05:27:24 ============================================================================ +05:27:24 + + +waiting on router queue for slot.... +05:27:24 Sending to : +05:27:24 ============================================================================ +05:27:24 ============================================================================ +05:27:24 Slot Id : <152> +05:27:24 Transaction Type : RESPONSE +05:27:24 Received From : +05:27:24 ============================================================================ +05:27:24 FNo. Len. Field Value +05:27:24 ============================================================================ +05:27:24 [ 1] [ 4] [0810] +05:27:24 [ 7] [ 10] [0319102633] +05:27:24 [ 11] [ 6] [154609] +05:27:24 [ 39] [ 2] [00] +05:27:24 [ 70] [ 3] [301] +05:27:24 ============================================================================ +05:27:24 Calculate Source COMM Id = 2 +05:27:24 ============================================================================ +05:27:24 + + +waiting on router queue for slot.... +05:27:35 ============================================================================ +05:27:35 Slot Id : <196> +05:27:35 Transaction Type : REQUEST +05:27:35 Received From : +05:27:35 ============================================================================ +05:27:35 FNo. Len. Field Value +05:27:35 ============================================================================ +05:27:35 [ 1] [ 4] [0800] +05:27:35 [ 7] [ 10] [0319102644] +05:27:35 [ 11] [ 6] [154610] +05:27:35 [ 70] [ 3] [301] +05:27:35 ============================================================================ +05:27:35 + + +waiting on router queue for slot.... +05:27:35 Sending to : +05:27:35 ============================================================================ +05:27:35 ============================================================================ +05:27:35 Slot Id : <196> +05:27:35 Transaction Type : RESPONSE +05:27:35 Received From : +05:27:35 ============================================================================ +05:27:35 FNo. Len. Field Value +05:27:35 ============================================================================ +05:27:35 [ 1] [ 4] [0810] +05:27:35 [ 7] [ 10] [0319102644] +05:27:35 [ 11] [ 6] [154610] +05:27:35 [ 39] [ 2] [00] +05:27:35 [ 70] [ 3] [301] +05:27:35 ============================================================================ +05:27:35 Calculate Source COMM Id = 2 +05:27:35 ============================================================================ +05:27:35 + + +waiting on router queue for slot.... +05:27:46 ============================================================================ +05:27:46 Slot Id : <191> +05:27:46 Transaction Type : REQUEST +05:27:46 Received From : +05:27:46 ============================================================================ +05:27:46 FNo. Len. Field Value +05:27:46 ============================================================================ +05:27:46 [ 1] [ 4] [0800] +05:27:46 [ 7] [ 10] [0319102655] +05:27:46 [ 11] [ 6] [154611] +05:27:46 [ 70] [ 3] [301] +05:27:46 ============================================================================ +05:27:46 + + +waiting on router queue for slot.... +05:27:46 Sending to : +05:27:46 ============================================================================ +05:27:46 ============================================================================ +05:27:46 Slot Id : <191> +05:27:46 Transaction Type : RESPONSE +05:27:46 Received From : +05:27:46 ============================================================================ +05:27:46 FNo. Len. Field Value +05:27:46 ============================================================================ +05:27:46 [ 1] [ 4] [0810] +05:27:46 [ 7] [ 10] [0319102655] +05:27:46 [ 11] [ 6] [154611] +05:27:46 [ 39] [ 2] [00] +05:27:46 [ 70] [ 3] [301] +05:27:46 ============================================================================ +05:27:46 Calculate Source COMM Id = 2 +05:27:46 ============================================================================ +05:27:46 + + +waiting on router queue for slot.... +05:27:57 ============================================================================ +05:27:57 Slot Id : <190> +05:27:57 Transaction Type : REQUEST +05:27:57 Received From : +05:27:57 ============================================================================ +05:27:57 FNo. Len. Field Value +05:27:57 ============================================================================ +05:27:57 [ 1] [ 4] [0800] +05:27:57 [ 7] [ 10] [0319102706] +05:27:57 [ 11] [ 6] [154612] +05:27:57 [ 70] [ 3] [301] +05:27:57 ============================================================================ +05:27:57 + + +waiting on router queue for slot.... +05:27:57 Sending to : +05:27:57 ============================================================================ +05:27:57 ============================================================================ +05:27:57 Slot Id : <190> +05:27:57 Transaction Type : RESPONSE +05:27:57 Received From : +05:27:57 ============================================================================ +05:27:57 FNo. Len. Field Value +05:27:57 ============================================================================ +05:27:57 [ 1] [ 4] [0810] +05:27:57 [ 7] [ 10] [0319102706] +05:27:57 [ 11] [ 6] [154612] +05:27:57 [ 39] [ 2] [00] +05:27:57 [ 70] [ 3] [301] +05:27:57 ============================================================================ +05:27:57 Calculate Source COMM Id = 2 +05:27:57 ============================================================================ +05:27:57 + + +waiting on router queue for slot.... +05:28:08 ============================================================================ +05:28:08 Slot Id : <155> +05:28:08 Transaction Type : REQUEST +05:28:08 Received From : +05:28:08 ============================================================================ +05:28:08 FNo. Len. Field Value +05:28:08 ============================================================================ +05:28:08 [ 1] [ 4] [0800] +05:28:08 [ 7] [ 10] [0319102717] +05:28:08 [ 11] [ 6] [154613] +05:28:08 [ 70] [ 3] [301] +05:28:08 ============================================================================ +05:28:08 + + +waiting on router queue for slot.... +05:28:08 Sending to : +05:28:08 ============================================================================ +05:28:08 ============================================================================ +05:28:08 Slot Id : <155> +05:28:08 Transaction Type : RESPONSE +05:28:08 Received From : +05:28:08 ============================================================================ +05:28:08 FNo. Len. Field Value +05:28:08 ============================================================================ +05:28:08 [ 1] [ 4] [0810] +05:28:08 [ 7] [ 10] [0319102717] +05:28:08 [ 11] [ 6] [154613] +05:28:08 [ 39] [ 2] [00] +05:28:08 [ 70] [ 3] [301] +05:28:08 ============================================================================ +05:28:08 Calculate Source COMM Id = 2 +05:28:08 ============================================================================ +05:28:08 + + +waiting on router queue for slot.... +05:28:10 ============================================================================ +05:28:10 Slot Id : <181> +05:28:10 Transaction Type : REQUEST +05:28:10 Received From : +05:28:10 ============================================================================ +05:28:10 FNo. Len. Field Value +05:28:10 ============================================================================ +05:28:10 [ 1] [ 4] [0800] +05:28:10 [ 2] [ 5] [02531] +05:28:10 [ 3] [ 6] [579058] +05:28:10 [ 7] [ 10] [0319222810] +05:28:10 [ 11] [ 6] [806729] +05:28:10 [ 15] [ 10] [0319222810] +05:28:10 [ 37] [ 11] [57905806729] +05:28:10 [ 70] [ 3] [001] +05:28:10 ============================================================================ +05:28:10 + + +waiting on router queue for slot.... +05:28:10 ============================================================================ +05:28:10 Slot Id : <181> +05:28:10 Transaction Type : RESPONSE +05:28:10 Received From : +05:28:10 ============================================================================ +05:28:10 FNo. Len. Field Value +05:28:10 ============================================================================ +05:28:10 [ 1] [ 4] [0810] +05:28:10 [ 7] [ 10] [0319222810] +05:28:10 [ 11] [ 6] [806729] +05:28:10 [ 15] [ 4] [0319] +05:28:10 [ 37] [ 12] [57905806729] +05:28:10 [ 39] [ 2] [00] +05:28:10 [ 70] [ 3] [001] +05:28:10 ============================================================================ +05:28:10 Sending to : +05:28:10 ============================================================================ +05:28:10 + + +waiting on router queue for slot.... +05:28:14 ============================================================================ +05:28:14 Slot Id : <201> +05:28:14 Transaction Type : REQUEST +05:28:14 Received From : +05:28:14 ============================================================================ +05:28:14 FNo. Len. Field Value +05:28:14 ============================================================================ +05:28:14 [ 1] [ 4] [0800] +05:28:14 [ 7] [ 10] [0320124003] +05:28:14 [ 11] [ 6] [054003] +05:28:14 [ 37] [ 12] [57905054003] +05:28:14 [ 70] [ 3] [301] +05:28:14 ============================================================================ +05:28:14 + + +waiting on router queue for slot.... +05:28:14 Sending to : +05:28:14 ============================================================================ +05:28:14 ============================================================================ +05:28:14 Slot Id : <201> +05:28:14 Transaction Type : RESPONSE +05:28:14 Received From : +05:28:14 ============================================================================ +05:28:14 FNo. Len. Field Value +05:28:14 ============================================================================ +05:28:14 [ 1] [ 4] [0810] +05:28:14 [ 7] [ 10] [0320124003] +05:28:14 [ 11] [ 6] [054003] +05:28:14 [ 37] [ 12] [579050540030] +05:28:14 [ 39] [ 2] [00] +05:28:14 [ 70] [ 3] [810] +05:28:14 ============================================================================ +05:28:14 Calculate Source COMM Id = 6 +05:28:14 ============================================================================ +05:28:14 + + +waiting on router queue for slot.... +05:28:19 ============================================================================ +05:28:19 Slot Id : <198> +05:28:19 Transaction Type : REQUEST +05:28:19 Received From : +05:28:19 ============================================================================ +05:28:19 FNo. Len. Field Value +05:28:19 ============================================================================ +05:28:19 [ 1] [ 4] [0800] +05:28:19 [ 7] [ 10] [0319102727] +05:28:19 [ 11] [ 6] [154614] +05:28:19 [ 70] [ 3] [301] +05:28:19 ============================================================================ +05:28:19 + + +waiting on router queue for slot.... +05:28:19 Sending to : +05:28:19 ============================================================================ +05:28:19 ============================================================================ +05:28:19 Slot Id : <198> +05:28:19 Transaction Type : RESPONSE +05:28:19 Received From : +05:28:19 ============================================================================ +05:28:19 FNo. Len. Field Value +05:28:19 ============================================================================ +05:28:19 [ 1] [ 4] [0810] +05:28:19 [ 7] [ 10] [0319102727] +05:28:19 [ 11] [ 6] [154614] +05:28:19 [ 39] [ 2] [00] +05:28:19 [ 70] [ 3] [301] +05:28:19 ============================================================================ +05:28:19 Calculate Source COMM Id = 2 +05:28:19 ============================================================================ +05:28:19 + + +waiting on router queue for slot.... +05:28:34 ============================================================================ +05:28:34 Slot Id : <194> +05:28:34 Transaction Type : REQUEST +05:28:34 Received From : +05:28:34 ============================================================================ +05:28:34 FNo. Len. Field Value +05:28:34 ============================================================================ +05:28:34 [ 1] [ 4] [0800] +05:28:34 [ 7] [ 10] [0319102743] +05:28:34 [ 11] [ 6] [154615] +05:28:34 [ 70] [ 3] [301] +05:28:34 ============================================================================ +05:28:34 + + +waiting on router queue for slot.... +05:28:34 Sending to : +05:28:34 ============================================================================ +05:28:34 ============================================================================ +05:28:34 Slot Id : <194> +05:28:34 Transaction Type : RESPONSE +05:28:34 Received From : +05:28:34 ============================================================================ +05:28:34 FNo. Len. Field Value +05:28:34 ============================================================================ +05:28:34 [ 1] [ 4] [0810] +05:28:34 [ 7] [ 10] [0319102743] +05:28:34 [ 11] [ 6] [154615] +05:28:34 [ 39] [ 2] [00] +05:28:34 [ 70] [ 3] [301] +05:28:34 ============================================================================ +05:28:34 Calculate Source COMM Id = 2 +05:28:34 ============================================================================ +05:28:34 + + +waiting on router queue for slot.... +05:28:45 ============================================================================ +05:28:45 Slot Id : <214> +05:28:45 Transaction Type : REQUEST +05:28:45 Received From : +05:28:45 ============================================================================ +05:28:45 FNo. Len. Field Value +05:28:45 ============================================================================ +05:28:45 [ 1] [ 4] [0800] +05:28:45 [ 7] [ 10] [0319102754] +05:28:45 [ 11] [ 6] [154616] +05:28:45 [ 70] [ 3] [301] +05:28:45 ============================================================================ +05:28:45 + + +waiting on router queue for slot.... +05:28:45 Sending to : +05:28:45 ============================================================================ +05:28:45 ============================================================================ +05:28:45 Slot Id : <214> +05:28:45 Transaction Type : RESPONSE +05:28:45 Received From : +05:28:45 ============================================================================ +05:28:45 FNo. Len. Field Value +05:28:45 ============================================================================ +05:28:45 [ 1] [ 4] [0810] +05:28:45 [ 7] [ 10] [0319102754] +05:28:45 [ 11] [ 6] [154616] +05:28:45 [ 39] [ 2] [00] +05:28:45 [ 70] [ 3] [301] +05:28:45 ============================================================================ +05:28:45 Calculate Source COMM Id = 2 +05:28:45 ============================================================================ +05:28:45 + + +waiting on router queue for slot.... +05:28:56 ============================================================================ +05:28:56 Slot Id : <165> +05:28:56 Transaction Type : REQUEST +05:28:56 Received From : +05:28:56 ============================================================================ +05:28:56 FNo. Len. Field Value +05:28:56 ============================================================================ +05:28:56 [ 1] [ 4] [0800] +05:28:56 [ 7] [ 10] [0319102805] +05:28:56 [ 11] [ 6] [154617] +05:28:56 [ 70] [ 3] [301] +05:28:56 ============================================================================ +05:28:56 + + +waiting on router queue for slot.... +05:28:56 Sending to : +05:28:56 ============================================================================ +05:28:56 ============================================================================ +05:28:56 Slot Id : <165> +05:28:56 Transaction Type : RESPONSE +05:28:56 Received From : +05:28:56 ============================================================================ +05:28:56 FNo. Len. Field Value +05:28:56 ============================================================================ +05:28:56 [ 1] [ 4] [0810] +05:28:56 [ 7] [ 10] [0319102805] +05:28:56 [ 11] [ 6] [154617] +05:28:56 [ 39] [ 2] [00] +05:28:56 [ 70] [ 3] [301] +05:28:56 ============================================================================ +05:28:56 Calculate Source COMM Id = 2 +05:28:56 ============================================================================ +05:28:56 + + +waiting on router queue for slot.... +05:29:07 ============================================================================ +05:29:07 Slot Id : <195> +05:29:07 Transaction Type : REQUEST +05:29:07 Received From : +05:29:07 ============================================================================ +05:29:07 FNo. Len. Field Value +05:29:07 ============================================================================ +05:29:07 [ 1] [ 4] [0800] +05:29:07 [ 7] [ 10] [0319102816] +05:29:07 [ 11] [ 6] [154618] +05:29:07 [ 70] [ 3] [301] +05:29:07 ============================================================================ +05:29:07 + + +waiting on router queue for slot.... +05:29:07 Sending to : +05:29:07 ============================================================================ +05:29:07 ============================================================================ +05:29:07 Slot Id : <195> +05:29:07 Transaction Type : RESPONSE +05:29:07 Received From : +05:29:07 ============================================================================ +05:29:07 FNo. Len. Field Value +05:29:07 ============================================================================ +05:29:07 [ 1] [ 4] [0810] +05:29:07 [ 7] [ 10] [0319102816] +05:29:07 [ 11] [ 6] [154618] +05:29:07 [ 39] [ 2] [00] +05:29:07 [ 70] [ 3] [301] +05:29:07 ============================================================================ +05:29:07 Calculate Source COMM Id = 2 +05:29:07 ============================================================================ +05:29:07 + + +waiting on router queue for slot.... +05:29:12 ============================================================================ +05:29:12 Slot Id : <184> +05:29:12 Transaction Type : REQUEST +05:29:12 Received From : +05:29:12 ============================================================================ +05:29:12 FNo. Len. Field Value +05:29:12 ============================================================================ +05:29:12 [ 1] [ 4] [0800] +05:29:12 [ 2] [ 5] [02531] +05:29:12 [ 3] [ 6] [579058] +05:29:12 [ 7] [ 10] [0319222912] +05:29:12 [ 11] [ 6] [806730] +05:29:12 [ 15] [ 10] [0319222912] +05:29:12 [ 37] [ 11] [57905806730] +05:29:12 [ 70] [ 3] [001] +05:29:12 ============================================================================ +05:29:12 + + +waiting on router queue for slot.... +05:29:12 ============================================================================ +05:29:12 Slot Id : <184> +05:29:12 Transaction Type : RESPONSE +05:29:12 Received From : +05:29:12 ============================================================================ +05:29:12 FNo. Len. Field Value +05:29:12 ============================================================================ +05:29:12 [ 1] [ 4] [0810] +05:29:12 [ 7] [ 10] [0319222912] +05:29:12 [ 11] [ 6] [806730] +05:29:12 [ 15] [ 4] [0319] +05:29:12 [ 37] [ 12] [57905806730] +05:29:12 [ 39] [ 2] [00] +05:29:12 [ 70] [ 3] [001] +05:29:12 ============================================================================ +05:29:12 Sending to : +05:29:12 ============================================================================ +05:29:12 + + +waiting on router queue for slot.... +05:29:18 ============================================================================ +05:29:18 Slot Id : <209> +05:29:18 Transaction Type : REQUEST +05:29:18 Received From : +05:29:18 ============================================================================ +05:29:18 FNo. Len. Field Value +05:29:18 ============================================================================ +05:29:18 [ 1] [ 4] [0800] +05:29:18 [ 7] [ 10] [0319102826] +05:29:18 [ 11] [ 6] [154619] +05:29:18 [ 70] [ 3] [301] +05:29:18 ============================================================================ +05:29:18 + + +waiting on router queue for slot.... +05:29:18 Sending to : +05:29:18 ============================================================================ +05:29:18 ============================================================================ +05:29:18 Slot Id : <209> +05:29:18 Transaction Type : RESPONSE +05:29:18 Received From : +05:29:18 ============================================================================ +05:29:18 FNo. Len. Field Value +05:29:18 ============================================================================ +05:29:18 [ 1] [ 4] [0810] +05:29:18 [ 7] [ 10] [0319102826] +05:29:18 [ 11] [ 6] [154619] +05:29:18 [ 39] [ 2] [00] +05:29:18 [ 70] [ 3] [301] +05:29:18 ============================================================================ +05:29:18 Calculate Source COMM Id = 2 +05:29:18 ============================================================================ +05:29:18 + + +waiting on router queue for slot.... +05:29:19 ============================================================================ +05:29:19 Slot Id : <213> +05:29:19 Transaction Type : REQUEST +05:29:19 Received From : +05:29:19 ============================================================================ +05:29:19 FNo. Len. Field Value +05:29:19 ============================================================================ +05:29:19 [ 1] [ 4] [0800] +05:29:19 [ 7] [ 10] [0320124108] +05:29:19 [ 11] [ 6] [054108] +05:29:19 [ 37] [ 12] [57905054108] +05:29:19 [ 70] [ 3] [301] +05:29:19 ============================================================================ +05:29:19 + + +waiting on router queue for slot.... +05:29:19 Sending to : +05:29:19 ============================================================================ +05:29:19 ============================================================================ +05:29:19 Slot Id : <213> +05:29:19 Transaction Type : RESPONSE +05:29:19 Received From : +05:29:19 ============================================================================ +05:29:19 FNo. Len. Field Value +05:29:19 ============================================================================ +05:29:19 [ 1] [ 4] [0810] +05:29:19 [ 7] [ 10] [0320124108] +05:29:19 [ 11] [ 6] [054108] +05:29:19 [ 37] [ 12] [579050541080] +05:29:19 [ 39] [ 2] [00] +05:29:19 [ 70] [ 3] [810] +05:29:19 ============================================================================ +05:29:19 Calculate Source COMM Id = 6 +05:29:19 ============================================================================ +05:29:19 + + +waiting on router queue for slot.... +05:29:29 ============================================================================ +05:29:29 Slot Id : <178> +05:29:29 Transaction Type : REQUEST +05:29:29 Received From : +05:29:29 ============================================================================ +05:29:29 FNo. Len. Field Value +05:29:29 ============================================================================ +05:29:29 [ 1] [ 4] [0800] +05:29:29 [ 7] [ 10] [0319102837] +05:29:29 [ 11] [ 6] [154620] +05:29:29 [ 70] [ 3] [301] +05:29:29 ============================================================================ +05:29:29 + + +waiting on router queue for slot.... +05:29:29 Sending to : +05:29:29 ============================================================================ +05:29:29 ============================================================================ +05:29:29 Slot Id : <178> +05:29:29 Transaction Type : RESPONSE +05:29:29 Received From : +05:29:29 ============================================================================ +05:29:29 FNo. Len. Field Value +05:29:29 ============================================================================ +05:29:29 [ 1] [ 4] [0810] +05:29:29 [ 7] [ 10] [0319102837] +05:29:29 [ 11] [ 6] [154620] +05:29:29 [ 39] [ 2] [00] +05:29:29 [ 70] [ 3] [301] +05:29:29 ============================================================================ +05:29:29 Calculate Source COMM Id = 2 +05:29:29 ============================================================================ +05:29:29 + + +waiting on router queue for slot.... +05:29:44 ============================================================================ +05:29:44 Slot Id : <208> +05:29:44 Transaction Type : REQUEST +05:29:44 Received From : +05:29:44 ============================================================================ +05:29:44 FNo. Len. Field Value +05:29:44 ============================================================================ +05:29:44 [ 1] [ 4] [0800] +05:29:44 [ 7] [ 10] [0319102853] +05:29:44 [ 11] [ 6] [154621] +05:29:44 [ 70] [ 3] [301] +05:29:44 ============================================================================ +05:29:44 + + +waiting on router queue for slot.... +05:29:44 Sending to : +05:29:44 ============================================================================ +05:29:44 ============================================================================ +05:29:44 Slot Id : <208> +05:29:44 Transaction Type : RESPONSE +05:29:44 Received From : +05:29:44 ============================================================================ +05:29:44 FNo. Len. Field Value +05:29:44 ============================================================================ +05:29:44 [ 1] [ 4] [0810] +05:29:44 [ 7] [ 10] [0319102853] +05:29:44 [ 11] [ 6] [154621] +05:29:44 [ 39] [ 2] [00] +05:29:44 [ 70] [ 3] [301] +05:29:44 ============================================================================ +05:29:44 Calculate Source COMM Id = 2 +05:29:44 ============================================================================ +05:29:44 + + +waiting on router queue for slot.... +05:29:55 ============================================================================ +05:29:55 Slot Id : <193> +05:29:55 Transaction Type : REQUEST +05:29:55 Received From : +05:29:55 ============================================================================ +05:29:55 FNo. Len. Field Value +05:29:55 ============================================================================ +05:29:55 [ 1] [ 4] [0800] +05:29:55 [ 7] [ 10] [0319223742] +05:29:55 [ 11] [ 6] [049478] +05:29:55 [ 37] [ 12] [57905049478] +05:29:55 [ 70] [ 3] [301] +05:29:55 ============================================================================ +05:29:55 + + +waiting on router queue for slot.... +05:29:55 Sending to : +05:29:55 ============================================================================ +05:29:55 ============================================================================ +05:29:55 Slot Id : <193> +05:29:55 Transaction Type : RESPONSE +05:29:55 Received From : +05:29:55 ============================================================================ +05:29:55 FNo. Len. Field Value +05:29:55 ============================================================================ +05:29:55 [ 1] [ 4] [0810] +05:29:55 [ 7] [ 10] [0319223742] +05:29:55 [ 11] [ 6] [049478] +05:29:55 [ 37] [ 12] [579050494780] +05:29:55 [ 39] [ 2] [00] +05:29:55 [ 70] [ 3] [810] +05:29:55 ============================================================================ +05:29:55 Calculate Source COMM Id = 1 +05:29:55 ============================================================================ +05:29:55 + + +waiting on router queue for slot.... +05:29:59 ============================================================================ +05:29:59 Slot Id : <206> +05:29:59 Transaction Type : REQUEST +05:29:59 Received From : +05:29:59 ============================================================================ +05:29:59 FNo. Len. Field Value +05:29:59 ============================================================================ +05:29:59 [ 1] [ 4] [0800] +05:29:59 [ 7] [ 10] [0319102908] +05:29:59 [ 11] [ 6] [154622] +05:29:59 [ 70] [ 3] [301] +05:29:59 ============================================================================ +05:29:59 + + +waiting on router queue for slot.... +05:29:59 Sending to : +05:29:59 ============================================================================ +05:29:59 ============================================================================ +05:29:59 Slot Id : <206> +05:29:59 Transaction Type : RESPONSE +05:29:59 Received From : +05:29:59 ============================================================================ +05:29:59 FNo. Len. Field Value +05:29:59 ============================================================================ +05:29:59 [ 1] [ 4] [0810] +05:29:59 [ 7] [ 10] [0319102908] +05:29:59 [ 11] [ 6] [154622] +05:29:59 [ 39] [ 2] [00] +05:29:59 [ 70] [ 3] [301] +05:29:59 ============================================================================ +05:29:59 Calculate Source COMM Id = 2 +05:29:59 ============================================================================ +05:29:59 + + +waiting on router queue for slot.... +05:30:12 ============================================================================ +05:30:12 Slot Id : <185> +05:30:12 Transaction Type : REQUEST +05:30:12 Received From : +05:30:12 ============================================================================ +05:30:12 FNo. Len. Field Value +05:30:12 ============================================================================ +05:30:12 [ 1] [ 4] [0800] +05:30:12 [ 7] [ 10] [0320052959] +05:30:12 [ 11] [ 6] [042472] +05:30:12 [ 37] [ 12] [507905042472] +05:30:12 [ 70] [ 3] [ ] +05:30:12 ============================================================================ +05:30:12 + + +waiting on router queue for slot.... +05:30:12 Sending to : +05:30:12 ============================================================================ +05:30:12 ============================================================================ +05:30:12 Slot Id : <185> +05:30:12 Transaction Type : RESPONSE +05:30:12 Received From : +05:30:12 ============================================================================ +05:30:12 FNo. Len. Field Value +05:30:12 ============================================================================ +05:30:12 [ 1] [ 4] [0810] +05:30:12 [ 7] [ 10] [0320052959] +05:30:12 [ 11] [ 6] [042472] +05:30:12 [ 37] [ 12] [507905042472] +05:30:12 [ 39] [ 2] [91] +05:30:12 [ 70] [ 3] [ ] +05:30:12 ============================================================================ +05:30:12 Calculate Source COMM Id = 3 +05:30:12 ============================================================================ +05:30:12 + + +waiting on router queue for slot.... +05:30:12 ============================================================================ +05:30:12 Slot Id : <221> +05:30:12 Transaction Type : REQUEST +05:30:12 Received From : +05:30:12 ============================================================================ +05:30:12 FNo. Len. Field Value +05:30:12 ============================================================================ +05:30:12 [ 1] [ 4] [0800] +05:30:12 [ 7] [ 10] [0319102919] +05:30:12 [ 11] [ 6] [154623] +05:30:12 [ 70] [ 3] [301] +05:30:12 ============================================================================ +05:30:12 + + +waiting on router queue for slot.... +05:30:12 Sending to : +05:30:12 ============================================================================ +05:30:12 ============================================================================ +05:30:12 Slot Id : <221> +05:30:12 Transaction Type : RESPONSE +05:30:12 Received From : +05:30:12 ============================================================================ +05:30:12 FNo. Len. Field Value +05:30:12 ============================================================================ +05:30:12 [ 1] [ 4] [0810] +05:30:12 [ 7] [ 10] [0319102919] +05:30:12 [ 11] [ 6] [154623] +05:30:12 [ 39] [ 2] [00] +05:30:12 [ 70] [ 3] [301] +05:30:12 ============================================================================ +05:30:12 Calculate Source COMM Id = 2 +05:30:12 ============================================================================ +05:30:12 + + +waiting on router queue for slot.... +05:30:14 ============================================================================ +05:30:14 Slot Id : <211> +05:30:14 Transaction Type : REQUEST +05:30:14 Received From : +05:30:14 ============================================================================ +05:30:14 FNo. Len. Field Value +05:30:14 ============================================================================ +05:30:14 [ 1] [ 4] [0800] +05:30:14 [ 2] [ 5] [02531] +05:30:14 [ 3] [ 6] [579058] +05:30:14 [ 7] [ 10] [0319223014] +05:30:14 [ 11] [ 6] [806731] +05:30:14 [ 15] [ 10] [0319223014] +05:30:14 [ 37] [ 11] [57905806731] +05:30:14 [ 70] [ 3] [001] +05:30:14 ============================================================================ +05:30:14 + + +waiting on router queue for slot.... +05:30:14 ============================================================================ +05:30:14 Slot Id : <211> +05:30:14 Transaction Type : RESPONSE +05:30:14 Received From : +05:30:14 ============================================================================ +05:30:14 FNo. Len. Field Value +05:30:14 ============================================================================ +05:30:14 [ 1] [ 4] [0810] +05:30:14 [ 7] [ 10] [0319223014] +05:30:14 [ 11] [ 6] [806731] +05:30:14 [ 15] [ 4] [0319] +05:30:14 [ 37] [ 12] [57905806731] +05:30:14 [ 39] [ 2] [00] +05:30:14 [ 70] [ 3] [001] +05:30:14 ============================================================================ +05:30:14 Sending to : +05:30:14 ============================================================================ +05:30:14 + + +waiting on router queue for slot.... +05:30:24 ============================================================================ +05:30:24 Slot Id : <183> +05:30:24 Transaction Type : REQUEST +05:30:24 Received From : +05:30:24 ============================================================================ +05:30:24 FNo. Len. Field Value +05:30:24 ============================================================================ +05:30:24 [ 1] [ 4] [0800] +05:30:24 [ 7] [ 10] [0320124213] +05:30:24 [ 11] [ 6] [054213] +05:30:24 [ 37] [ 12] [57905054213] +05:30:24 [ 70] [ 3] [301] +05:30:24 ============================================================================ +05:30:24 + + +waiting on router queue for slot.... +05:30:24 Sending to : +05:30:24 ============================================================================ +05:30:24 ============================================================================ +05:30:24 Slot Id : <183> +05:30:24 Transaction Type : RESPONSE +05:30:24 Received From : +05:30:24 ============================================================================ +05:30:24 FNo. Len. Field Value +05:30:24 ============================================================================ +05:30:24 [ 1] [ 4] [0810] +05:30:24 [ 7] [ 10] [0320124213] +05:30:24 [ 11] [ 6] [054213] +05:30:24 [ 37] [ 12] [579050542130] +05:30:24 [ 39] [ 2] [00] +05:30:24 [ 70] [ 3] [810] +05:30:24 ============================================================================ +05:30:24 Calculate Source COMM Id = 6 +05:30:24 ============================================================================ +05:30:24 + + +waiting on router queue for slot.... +05:30:26 ============================================================================ +05:30:26 Slot Id : <212> +05:30:26 Transaction Type : REQUEST +05:30:26 Received From : +05:30:26 ============================================================================ +05:30:26 FNo. Len. Field Value +05:30:26 ============================================================================ +05:30:26 [ 1] [ 4] [0800] +05:30:26 [ 7] [ 10] [0319102935] +05:30:26 [ 11] [ 6] [154624] +05:30:26 [ 70] [ 3] [301] +05:30:26 ============================================================================ +05:30:26 + + +waiting on router queue for slot.... +05:30:26 Sending to : +05:30:26 ============================================================================ +05:30:26 ============================================================================ +05:30:26 Slot Id : <212> +05:30:26 Transaction Type : RESPONSE +05:30:26 Received From : +05:30:26 ============================================================================ +05:30:26 FNo. Len. Field Value +05:30:26 ============================================================================ +05:30:26 [ 1] [ 4] [0810] +05:30:26 [ 7] [ 10] [0319102935] +05:30:26 [ 11] [ 6] [154624] +05:30:26 [ 39] [ 2] [00] +05:30:26 [ 70] [ 3] [301] +05:30:26 ============================================================================ +05:30:26 Calculate Source COMM Id = 2 +05:30:26 ============================================================================ +05:30:26 + + +waiting on router queue for slot.... +05:30:37 ============================================================================ +05:30:37 Slot Id : <207> +05:30:37 Transaction Type : REQUEST +05:30:37 Received From : +05:30:37 ============================================================================ +05:30:37 FNo. Len. Field Value +05:30:37 ============================================================================ +05:30:37 [ 1] [ 4] [0800] +05:30:37 [ 7] [ 10] [0319102946] +05:30:37 [ 11] [ 6] [154625] +05:30:37 [ 70] [ 3] [301] +05:30:37 ============================================================================ +05:30:37 + + +waiting on router queue for slot.... +05:30:37 Sending to : +05:30:37 ============================================================================ +05:30:37 ============================================================================ +05:30:37 Slot Id : <207> +05:30:37 Transaction Type : RESPONSE +05:30:37 Received From : +05:30:37 ============================================================================ +05:30:37 FNo. Len. Field Value +05:30:37 ============================================================================ +05:30:37 [ 1] [ 4] [0810] +05:30:37 [ 7] [ 10] [0319102946] +05:30:37 [ 11] [ 6] [154625] +05:30:37 [ 39] [ 2] [00] +05:30:37 [ 70] [ 3] [301] +05:30:37 ============================================================================ +05:30:37 Calculate Source COMM Id = 2 +05:30:37 ============================================================================ +05:30:37 + + +waiting on router queue for slot.... +05:30:47 ============================================================================ +05:30:47 Slot Id : <149> +05:30:47 Transaction Type : REQUEST +05:30:47 Received From : +05:30:47 ============================================================================ +05:30:47 FNo. Len. Field Value +05:30:47 ============================================================================ +05:30:47 [ 1] [ 4] [0800] +05:30:47 [ 7] [ 10] [0319102956] +05:30:47 [ 11] [ 6] [154626] +05:30:47 [ 70] [ 3] [301] +05:30:47 ============================================================================ +05:30:47 + + +waiting on router queue for slot.... +05:30:47 Sending to : +05:30:47 ============================================================================ +05:30:47 ============================================================================ +05:30:47 Slot Id : <149> +05:30:47 Transaction Type : RESPONSE +05:30:47 Received From : +05:30:47 ============================================================================ +05:30:47 FNo. Len. Field Value +05:30:47 ============================================================================ +05:30:47 [ 1] [ 4] [0810] +05:30:47 [ 7] [ 10] [0319102956] +05:30:47 [ 11] [ 6] [154626] +05:30:47 [ 39] [ 2] [00] +05:30:47 [ 70] [ 3] [301] +05:30:47 ============================================================================ +05:30:47 Calculate Source COMM Id = 2 +05:30:47 ============================================================================ +05:30:47 + + +waiting on router queue for slot.... +05:30:57 ============================================================================ +05:30:57 Slot Id : <174> +05:30:57 Transaction Type : REQUEST +05:30:57 Received From : +05:30:57 ============================================================================ +05:30:57 FNo. Len. Field Value +05:30:57 ============================================================================ +05:30:57 [ 1] [ 4] [0800] +05:30:57 [ 7] [ 10] [0319103006] +05:30:57 [ 11] [ 6] [154627] +05:30:57 [ 70] [ 3] [301] +05:30:57 ============================================================================ +05:30:57 + + +waiting on router queue for slot.... +05:30:57 Sending to : +05:30:57 ============================================================================ +05:30:57 ============================================================================ +05:30:57 Slot Id : <174> +05:30:57 Transaction Type : RESPONSE +05:30:57 Received From : +05:30:57 ============================================================================ +05:30:57 FNo. Len. Field Value +05:30:57 ============================================================================ +05:30:57 [ 1] [ 4] [0810] +05:30:57 [ 7] [ 10] [0319103006] +05:30:57 [ 11] [ 6] [154627] +05:30:57 [ 39] [ 2] [00] +05:30:57 [ 70] [ 3] [301] +05:30:57 ============================================================================ +05:30:57 Calculate Source COMM Id = 2 +05:30:57 ============================================================================ +05:30:57 + + +waiting on router queue for slot.... +05:31:08 ============================================================================ +05:31:08 Slot Id : <168> +05:31:08 Transaction Type : REQUEST +05:31:08 Received From : +05:31:08 ============================================================================ +05:31:08 FNo. Len. Field Value +05:31:08 ============================================================================ +05:31:08 [ 1] [ 4] [0800] +05:31:08 [ 7] [ 10] [0319103017] +05:31:08 [ 11] [ 6] [154628] +05:31:08 [ 70] [ 3] [301] +05:31:08 ============================================================================ +05:31:08 + + +waiting on router queue for slot.... +05:31:08 Sending to : +05:31:08 ============================================================================ +05:31:08 ============================================================================ +05:31:08 Slot Id : <168> +05:31:08 Transaction Type : RESPONSE +05:31:08 Received From : +05:31:08 ============================================================================ +05:31:08 FNo. Len. Field Value +05:31:08 ============================================================================ +05:31:08 [ 1] [ 4] [0810] +05:31:08 [ 7] [ 10] [0319103017] +05:31:08 [ 11] [ 6] [154628] +05:31:08 [ 39] [ 2] [00] +05:31:08 [ 70] [ 3] [301] +05:31:08 ============================================================================ +05:31:08 Calculate Source COMM Id = 2 +05:31:08 ============================================================================ +05:31:08 + + +waiting on router queue for slot.... +05:31:16 ============================================================================ +05:31:16 Slot Id : <180> +05:31:16 Transaction Type : REQUEST +05:31:16 Received From : +05:31:16 ============================================================================ +05:31:16 FNo. Len. Field Value +05:31:16 ============================================================================ +05:31:16 [ 1] [ 4] [0800] +05:31:16 [ 2] [ 5] [02531] +05:31:16 [ 3] [ 6] [579058] +05:31:16 [ 7] [ 10] [0319223116] +05:31:16 [ 11] [ 6] [806732] +05:31:16 [ 15] [ 10] [0319223116] +05:31:16 [ 37] [ 11] [57905806732] +05:31:16 [ 70] [ 3] [001] +05:31:16 ============================================================================ +05:31:16 + + +waiting on router queue for slot.... +05:31:16 ============================================================================ +05:31:16 Slot Id : <180> +05:31:16 Transaction Type : RESPONSE +05:31:16 Received From : +05:31:16 ============================================================================ +05:31:16 FNo. Len. Field Value +05:31:16 ============================================================================ +05:31:16 [ 1] [ 4] [0810] +05:31:16 [ 7] [ 10] [0319223116] +05:31:16 [ 11] [ 6] [806732] +05:31:16 [ 15] [ 4] [0319] +05:31:16 [ 37] [ 12] [57905806732] +05:31:16 [ 39] [ 2] [00] +05:31:16 [ 70] [ 3] [001] +05:31:16 ============================================================================ +05:31:16 Sending to : +05:31:16 ============================================================================ +05:31:16 + + +waiting on router queue for slot.... +05:31:20 ============================================================================ +05:31:20 Slot Id : <189> +05:31:20 Transaction Type : REQUEST +05:31:20 Received From : +05:31:20 ============================================================================ +05:31:20 FNo. Len. Field Value +05:31:20 ============================================================================ +05:31:20 [ 1] [ 4] [0800] +05:31:20 [ 7] [ 10] [0319222912] +05:31:20 [ 11] [ 6] [068007] +05:31:20 [ 37] [ 12] [57905068007] +05:31:20 [ 70] [ 3] [301] +05:31:20 ============================================================================ +05:31:20 + + +waiting on router queue for slot.... +05:31:20 Sending to : +05:31:20 ============================================================================ +05:31:20 ============================================================================ +05:31:20 Slot Id : <189> +05:31:20 Transaction Type : RESPONSE +05:31:20 Received From : +05:31:20 ============================================================================ +05:31:20 FNo. Len. Field Value +05:31:20 ============================================================================ +05:31:20 [ 1] [ 4] [0810] +05:31:20 [ 7] [ 10] [0319222912] +05:31:20 [ 11] [ 6] [068007] +05:31:20 [ 37] [ 12] [579050680070] +05:31:20 [ 39] [ 2] [00] +05:31:20 [ 70] [ 3] [810] +05:31:20 ============================================================================ +05:31:20 Calculate Source COMM Id = 4 +05:31:20 ============================================================================ +05:31:20 + + +waiting on router queue for slot.... +05:31:25 ============================================================================ +05:31:25 Slot Id : <169> +05:31:25 Transaction Type : REQUEST +05:31:25 Received From : +05:31:25 ============================================================================ +05:31:25 FNo. Len. Field Value +05:31:25 ============================================================================ +05:31:25 [ 1] [ 4] [0800] +05:31:25 [ 7] [ 10] [0319103032] +05:31:25 [ 11] [ 6] [154629] +05:31:25 [ 70] [ 3] [301] +05:31:25 ============================================================================ +05:31:25 + + +waiting on router queue for slot.... +05:31:25 Sending to : +05:31:25 ============================================================================ +05:31:25 ============================================================================ +05:31:25 Slot Id : <169> +05:31:25 Transaction Type : RESPONSE +05:31:25 Received From : +05:31:25 ============================================================================ +05:31:25 FNo. Len. Field Value +05:31:25 ============================================================================ +05:31:25 [ 1] [ 4] [0810] +05:31:25 [ 7] [ 10] [0319103032] +05:31:25 [ 11] [ 6] [154629] +05:31:25 [ 39] [ 2] [00] +05:31:25 [ 70] [ 3] [301] +05:31:25 ============================================================================ +05:31:25 Calculate Source COMM Id = 2 +05:31:25 ============================================================================ +05:31:25 + + +waiting on router queue for slot.... +05:31:29 ============================================================================ +05:31:29 Slot Id : <222> +05:31:29 Transaction Type : REQUEST +05:31:29 Received From : +05:31:29 ============================================================================ +05:31:29 FNo. Len. Field Value +05:31:29 ============================================================================ +05:31:29 [ 1] [ 4] [0800] +05:31:29 [ 7] [ 10] [0320124318] +05:31:29 [ 11] [ 6] [054318] +05:31:29 [ 37] [ 12] [57905054318] +05:31:29 [ 70] [ 3] [301] +05:31:29 ============================================================================ +05:31:29 + + +waiting on router queue for slot.... +05:31:29 Sending to : +05:31:29 ============================================================================ +05:31:29 ============================================================================ +05:31:29 Slot Id : <222> +05:31:29 Transaction Type : RESPONSE +05:31:29 Received From : +05:31:29 ============================================================================ +05:31:29 FNo. Len. Field Value +05:31:29 ============================================================================ +05:31:29 [ 1] [ 4] [0810] +05:31:29 [ 7] [ 10] [0320124318] +05:31:29 [ 11] [ 6] [054318] +05:31:29 [ 37] [ 12] [579050543180] +05:31:29 [ 39] [ 2] [00] +05:31:29 [ 70] [ 3] [810] +05:31:29 ============================================================================ +05:31:29 Calculate Source COMM Id = 6 +05:31:29 ============================================================================ +05:31:29 + + +waiting on router queue for slot.... +05:31:40 ============================================================================ +05:31:40 Slot Id : <225> +05:31:40 Transaction Type : REQUEST +05:31:40 Received From : +05:31:40 ============================================================================ +05:31:40 FNo. Len. Field Value +05:31:40 ============================================================================ +05:31:40 [ 1] [ 4] [0800] +05:31:40 [ 7] [ 10] [0319103048] +05:31:40 [ 11] [ 6] [154630] +05:31:40 [ 70] [ 3] [301] +05:31:40 ============================================================================ +05:31:40 + + +waiting on router queue for slot.... +05:31:40 Sending to : +05:31:40 ============================================================================ +05:31:40 ============================================================================ +05:31:40 Slot Id : <225> +05:31:40 Transaction Type : RESPONSE +05:31:40 Received From : +05:31:40 ============================================================================ +05:31:40 FNo. Len. Field Value +05:31:40 ============================================================================ +05:31:40 [ 1] [ 4] [0810] +05:31:40 [ 7] [ 10] [0319103048] +05:31:40 [ 11] [ 6] [154630] +05:31:40 [ 39] [ 2] [00] +05:31:40 [ 70] [ 3] [301] +05:31:40 ============================================================================ +05:31:40 Calculate Source COMM Id = 2 +05:31:40 ============================================================================ +05:31:40 + + +waiting on router queue for slot.... +05:31:51 ============================================================================ +05:31:51 Slot Id : <232> +05:31:51 Transaction Type : REQUEST +05:31:51 Received From : +05:31:51 ============================================================================ +05:31:51 FNo. Len. Field Value +05:31:51 ============================================================================ +05:31:51 [ 1] [ 4] [0800] +05:31:51 [ 7] [ 10] [0319103059] +05:31:51 [ 11] [ 6] [154631] +05:31:51 [ 70] [ 3] [301] +05:31:51 ============================================================================ +05:31:51 + + +waiting on router queue for slot.... +05:31:51 Sending to : +05:31:51 ============================================================================ +05:31:51 ============================================================================ +05:31:51 Slot Id : <232> +05:31:51 Transaction Type : RESPONSE +05:31:51 Received From : +05:31:51 ============================================================================ +05:31:51 FNo. Len. Field Value +05:31:51 ============================================================================ +05:31:51 [ 1] [ 4] [0810] +05:31:51 [ 7] [ 10] [0319103059] +05:31:51 [ 11] [ 6] [154631] +05:31:51 [ 39] [ 2] [00] +05:31:51 [ 70] [ 3] [301] +05:31:51 ============================================================================ +05:31:51 Calculate Source COMM Id = 2 +05:31:51 ============================================================================ +05:31:51 + + +waiting on router queue for slot.... +05:32:07 ============================================================================ +05:32:07 Slot Id : <205> +05:32:07 Transaction Type : REQUEST +05:32:07 Received From : +05:32:07 ============================================================================ +05:32:07 FNo. Len. Field Value +05:32:07 ============================================================================ +05:32:07 [ 1] [ 4] [0800] +05:32:07 [ 7] [ 10] [0319103116] +05:32:07 [ 11] [ 6] [154632] +05:32:07 [ 70] [ 3] [301] +05:32:07 ============================================================================ +05:32:07 + + +waiting on router queue for slot.... +05:32:07 Sending to : +05:32:07 ============================================================================ +05:32:07 ============================================================================ +05:32:07 Slot Id : <205> +05:32:07 Transaction Type : RESPONSE +05:32:07 Received From : +05:32:07 ============================================================================ +05:32:07 FNo. Len. Field Value +05:32:07 ============================================================================ +05:32:07 [ 1] [ 4] [0810] +05:32:07 [ 7] [ 10] [0319103116] +05:32:07 [ 11] [ 6] [154632] +05:32:07 [ 39] [ 2] [00] +05:32:07 [ 70] [ 3] [301] +05:32:07 ============================================================================ +05:32:07 Calculate Source COMM Id = 2 +05:32:07 ============================================================================ +05:32:07 + + +waiting on router queue for slot.... +05:32:18 ============================================================================ +05:32:18 Slot Id : <230> +05:32:18 Transaction Type : REQUEST +05:32:18 Received From : +05:32:18 ============================================================================ +05:32:18 FNo. Len. Field Value +05:32:18 ============================================================================ +05:32:18 [ 1] [ 4] [0800] +05:32:18 [ 2] [ 5] [02531] +05:32:18 [ 3] [ 6] [579058] +05:32:18 [ 7] [ 10] [0319223218] +05:32:18 [ 11] [ 6] [806733] +05:32:18 [ 15] [ 10] [0319223218] +05:32:18 [ 37] [ 11] [57905806733] +05:32:18 [ 70] [ 3] [001] +05:32:18 ============================================================================ +05:32:18 + + +waiting on router queue for slot.... +05:32:18 ============================================================================ +05:32:18 Slot Id : <230> +05:32:18 Transaction Type : RESPONSE +05:32:18 Received From : +05:32:18 ============================================================================ +05:32:18 FNo. Len. Field Value +05:32:18 ============================================================================ +05:32:18 [ 1] [ 4] [0810] +05:32:18 [ 7] [ 10] [0319223218] +05:32:18 [ 11] [ 6] [806733] +05:32:18 [ 15] [ 4] [0319] +05:32:18 [ 37] [ 12] [57905806733] +05:32:18 [ 39] [ 2] [00] +05:32:18 [ 70] [ 3] [001] +05:32:18 ============================================================================ +05:32:18 Sending to : +05:32:18 ============================================================================ +05:32:18 + + +waiting on router queue for slot.... +05:32:23 ============================================================================ +05:32:23 Slot Id : <188> +05:32:23 Transaction Type : REQUEST +05:32:23 Received From : +05:32:23 ============================================================================ +05:32:23 FNo. Len. Field Value +05:32:23 ============================================================================ +05:32:23 [ 1] [ 4] [0800] +05:32:23 [ 7] [ 10] [0319103132] +05:32:23 [ 11] [ 6] [154633] +05:32:23 [ 70] [ 3] [301] +05:32:23 ============================================================================ +05:32:23 + + +waiting on router queue for slot.... +05:32:23 Sending to : +05:32:23 ============================================================================ +05:32:23 ============================================================================ +05:32:23 Slot Id : <188> +05:32:23 Transaction Type : RESPONSE +05:32:23 Received From : +05:32:23 ============================================================================ +05:32:23 FNo. Len. Field Value +05:32:23 ============================================================================ +05:32:23 [ 1] [ 4] [0810] +05:32:23 [ 7] [ 10] [0319103132] +05:32:23 [ 11] [ 6] [154633] +05:32:23 [ 39] [ 2] [00] +05:32:23 [ 70] [ 3] [301] +05:32:23 ============================================================================ +05:32:23 Calculate Source COMM Id = 2 +05:32:23 ============================================================================ +05:32:23 + + +waiting on router queue for slot.... +05:32:33 ============================================================================ +05:32:33 Slot Id : <173> +05:32:33 Transaction Type : REQUEST +05:32:33 Received From : +05:32:33 ============================================================================ +05:32:33 FNo. Len. Field Value +05:32:33 ============================================================================ +05:32:33 [ 1] [ 4] [0800] +05:32:33 [ 7] [ 10] [0319103142] +05:32:33 [ 11] [ 6] [154634] +05:32:33 [ 70] [ 3] [301] +05:32:33 ============================================================================ +05:32:33 + + +waiting on router queue for slot.... +05:32:33 Sending to : +05:32:33 ============================================================================ +05:32:33 ============================================================================ +05:32:33 Slot Id : <173> +05:32:33 Transaction Type : RESPONSE +05:32:33 Received From : +05:32:33 ============================================================================ +05:32:33 FNo. Len. Field Value +05:32:33 ============================================================================ +05:32:33 [ 1] [ 4] [0810] +05:32:33 [ 7] [ 10] [0319103142] +05:32:33 [ 11] [ 6] [154634] +05:32:33 [ 39] [ 2] [00] +05:32:33 [ 70] [ 3] [301] +05:32:33 ============================================================================ +05:32:33 Calculate Source COMM Id = 2 +05:32:33 ============================================================================ +05:32:33 + + +waiting on router queue for slot.... +05:32:34 ============================================================================ +05:32:34 Slot Id : <229> +05:32:34 Transaction Type : REQUEST +05:32:34 Received From : +05:32:34 ============================================================================ +05:32:34 FNo. Len. Field Value +05:32:34 ============================================================================ +05:32:34 [ 1] [ 4] [0800] +05:32:34 [ 7] [ 10] [0320124423] +05:32:34 [ 11] [ 6] [054423] +05:32:34 [ 37] [ 12] [57905054423] +05:32:34 [ 70] [ 3] [301] +05:32:34 ============================================================================ +05:32:34 + + +waiting on router queue for slot.... +05:32:34 Sending to : +05:32:34 ============================================================================ +05:32:34 ============================================================================ +05:32:34 Slot Id : <229> +05:32:34 Transaction Type : RESPONSE +05:32:34 Received From : +05:32:34 ============================================================================ +05:32:34 FNo. Len. Field Value +05:32:34 ============================================================================ +05:32:34 [ 1] [ 4] [0810] +05:32:34 [ 7] [ 10] [0320124423] +05:32:34 [ 11] [ 6] [054423] +05:32:34 [ 37] [ 12] [579050544230] +05:32:34 [ 39] [ 2] [00] +05:32:34 [ 70] [ 3] [810] +05:32:34 ============================================================================ +05:32:34 Calculate Source COMM Id = 6 +05:32:34 ============================================================================ +05:32:34 + + +waiting on router queue for slot.... +05:32:44 ============================================================================ +05:32:44 Slot Id : <223> +05:32:44 Transaction Type : REQUEST +05:32:44 Received From : +05:32:44 ============================================================================ +05:32:44 FNo. Len. Field Value +05:32:44 ============================================================================ +05:32:44 [ 1] [ 4] [0800] +05:32:44 [ 7] [ 10] [0319103153] +05:32:44 [ 11] [ 6] [154635] +05:32:44 [ 70] [ 3] [301] +05:32:44 ============================================================================ +05:32:44 + + +waiting on router queue for slot.... +05:32:44 Sending to : +05:32:44 ============================================================================ +05:32:44 ============================================================================ +05:32:44 Slot Id : <223> +05:32:44 Transaction Type : RESPONSE +05:32:44 Received From : +05:32:44 ============================================================================ +05:32:44 FNo. Len. Field Value +05:32:44 ============================================================================ +05:32:44 [ 1] [ 4] [0810] +05:32:44 [ 7] [ 10] [0319103153] +05:32:44 [ 11] [ 6] [154635] +05:32:44 [ 39] [ 2] [00] +05:32:44 [ 70] [ 3] [301] +05:32:44 ============================================================================ +05:32:44 Calculate Source COMM Id = 2 +05:32:44 ============================================================================ +05:32:44 + + +waiting on router queue for slot.... +05:32:55 ============================================================================ +05:32:55 Slot Id : <177> +05:32:55 Transaction Type : REQUEST +05:32:55 Received From : +05:32:55 ============================================================================ +05:32:55 FNo. Len. Field Value +05:32:55 ============================================================================ +05:32:55 [ 1] [ 4] [0800] +05:32:55 [ 7] [ 10] [0319103204] +05:32:55 [ 11] [ 6] [154636] +05:32:55 [ 70] [ 3] [301] +05:32:55 ============================================================================ +05:32:55 + + +waiting on router queue for slot.... +05:32:55 Sending to : +05:32:55 ============================================================================ +05:32:55 ============================================================================ +05:32:55 Slot Id : <177> +05:32:55 Transaction Type : RESPONSE +05:32:55 Received From : +05:32:55 ============================================================================ +05:32:55 FNo. Len. Field Value +05:32:55 ============================================================================ +05:32:55 [ 1] [ 4] [0810] +05:32:55 [ 7] [ 10] [0319103204] +05:32:55 [ 11] [ 6] [154636] +05:32:55 [ 39] [ 2] [00] +05:32:55 [ 70] [ 3] [301] +05:32:55 ============================================================================ +05:32:55 Calculate Source COMM Id = 2 +05:32:55 ============================================================================ +05:32:55 + + +waiting on router queue for slot.... +05:33:10 ============================================================================ +05:33:10 Slot Id : <215> +05:33:10 Transaction Type : REQUEST +05:33:10 Received From : +05:33:10 ============================================================================ +05:33:10 FNo. Len. Field Value +05:33:10 ============================================================================ +05:33:10 [ 1] [ 4] [0800] +05:33:10 [ 7] [ 10] [0319103219] +05:33:10 [ 11] [ 6] [154637] +05:33:10 [ 70] [ 3] [301] +05:33:10 ============================================================================ +05:33:10 + + +waiting on router queue for slot.... +05:33:10 Sending to : +05:33:10 ============================================================================ +05:33:10 ============================================================================ +05:33:10 Slot Id : <215> +05:33:10 Transaction Type : RESPONSE +05:33:10 Received From : +05:33:10 ============================================================================ +05:33:10 FNo. Len. Field Value +05:33:10 ============================================================================ +05:33:10 [ 1] [ 4] [0810] +05:33:10 [ 7] [ 10] [0319103219] +05:33:10 [ 11] [ 6] [154637] +05:33:10 [ 39] [ 2] [00] +05:33:10 [ 70] [ 3] [301] +05:33:10 ============================================================================ +05:33:10 Calculate Source COMM Id = 2 +05:33:10 ============================================================================ +05:33:10 + + +waiting on router queue for slot.... +05:33:20 ============================================================================ +05:33:20 Slot Id : <235> +05:33:20 Transaction Type : REQUEST +05:33:20 Received From : +05:33:20 ============================================================================ +05:33:20 FNo. Len. Field Value +05:33:20 ============================================================================ +05:33:20 [ 1] [ 4] [0800] +05:33:20 [ 2] [ 5] [02531] +05:33:20 [ 3] [ 6] [579058] +05:33:20 [ 7] [ 10] [0319223320] +05:33:20 [ 11] [ 6] [806734] +05:33:20 [ 15] [ 10] [0319223320] +05:33:20 [ 37] [ 11] [57905806734] +05:33:20 [ 70] [ 3] [001] +05:33:20 ============================================================================ +05:33:20 + + +waiting on router queue for slot.... +05:33:20 ============================================================================ +05:33:20 Slot Id : <235> +05:33:20 Transaction Type : RESPONSE +05:33:20 Received From : +05:33:20 ============================================================================ +05:33:20 FNo. Len. Field Value +05:33:20 ============================================================================ +05:33:20 [ 1] [ 4] [0810] +05:33:20 [ 7] [ 10] [0319223320] +05:33:20 [ 11] [ 6] [806734] +05:33:20 [ 15] [ 4] [0319] +05:33:20 [ 37] [ 12] [57905806734] +05:33:20 [ 39] [ 2] [00] +05:33:20 [ 70] [ 3] [001] +05:33:20 ============================================================================ +05:33:20 Sending to : +05:33:20 ============================================================================ +05:33:20 + + +waiting on router queue for slot.... +05:33:21 ============================================================================ +05:33:21 Slot Id : <243> +05:33:21 Transaction Type : REQUEST +05:33:21 Received From : +05:33:21 ============================================================================ +05:33:21 FNo. Len. Field Value +05:33:21 ============================================================================ +05:33:21 [ 1] [ 4] [0800] +05:33:21 [ 7] [ 10] [0319103230] +05:33:21 [ 11] [ 6] [154638] +05:33:21 [ 70] [ 3] [301] +05:33:21 ============================================================================ +05:33:21 + + +waiting on router queue for slot.... +05:33:21 Sending to : +05:33:21 ============================================================================ +05:33:21 ============================================================================ +05:33:21 Slot Id : <243> +05:33:21 Transaction Type : RESPONSE +05:33:21 Received From : +05:33:21 ============================================================================ +05:33:21 FNo. Len. Field Value +05:33:21 ============================================================================ +05:33:21 [ 1] [ 4] [0810] +05:33:21 [ 7] [ 10] [0319103230] +05:33:21 [ 11] [ 6] [154638] +05:33:21 [ 39] [ 2] [00] +05:33:21 [ 70] [ 3] [301] +05:33:21 ============================================================================ +05:33:21 Calculate Source COMM Id = 2 +05:33:21 ============================================================================ +05:33:21 + + +waiting on router queue for slot.... +05:33:32 ============================================================================ +05:33:32 Slot Id : <246> +05:33:32 Transaction Type : REQUEST +05:33:32 Received From : +05:33:32 ============================================================================ +05:33:32 FNo. Len. Field Value +05:33:32 ============================================================================ +05:33:32 [ 1] [ 4] [0800] +05:33:32 [ 7] [ 10] [0319103241] +05:33:32 [ 11] [ 6] [154639] +05:33:32 [ 70] [ 3] [301] +05:33:32 ============================================================================ +05:33:32 + + +waiting on router queue for slot.... +05:33:32 Sending to : +05:33:32 ============================================================================ +05:33:32 ============================================================================ +05:33:32 Slot Id : <246> +05:33:32 Transaction Type : RESPONSE +05:33:32 Received From : +05:33:32 ============================================================================ +05:33:32 FNo. Len. Field Value +05:33:32 ============================================================================ +05:33:32 [ 1] [ 4] [0810] +05:33:32 [ 7] [ 10] [0319103241] +05:33:32 [ 11] [ 6] [154639] +05:33:32 [ 39] [ 2] [00] +05:33:32 [ 70] [ 3] [301] +05:33:32 ============================================================================ +05:33:32 Calculate Source COMM Id = 2 +05:33:32 ============================================================================ +05:33:32 + + +waiting on router queue for slot.... +05:33:39 ============================================================================ +05:33:39 Slot Id : <242> +05:33:39 Transaction Type : REQUEST +05:33:39 Received From : +05:33:39 ============================================================================ +05:33:39 FNo. Len. Field Value +05:33:39 ============================================================================ +05:33:39 [ 1] [ 4] [0800] +05:33:39 [ 7] [ 10] [0320124528] +05:33:39 [ 11] [ 6] [054528] +05:33:39 [ 37] [ 12] [57905054528] +05:33:39 [ 70] [ 3] [301] +05:33:39 ============================================================================ +05:33:39 + + +waiting on router queue for slot.... +05:33:39 Sending to : +05:33:39 ============================================================================ +05:33:39 ============================================================================ +05:33:39 Slot Id : <242> +05:33:39 Transaction Type : RESPONSE +05:33:39 Received From : +05:33:39 ============================================================================ +05:33:39 FNo. Len. Field Value +05:33:39 ============================================================================ +05:33:39 [ 1] [ 4] [0810] +05:33:39 [ 7] [ 10] [0320124528] +05:33:39 [ 11] [ 6] [054528] +05:33:39 [ 37] [ 12] [579050545280] +05:33:39 [ 39] [ 2] [00] +05:33:39 [ 70] [ 3] [810] +05:33:39 ============================================================================ +05:33:39 Calculate Source COMM Id = 6 +05:33:39 ============================================================================ +05:33:39 + + +waiting on router queue for slot.... +05:33:43 ============================================================================ +05:33:43 Slot Id : <248> +05:33:43 Transaction Type : REQUEST +05:33:43 Received From : +05:33:43 ============================================================================ +05:33:43 FNo. Len. Field Value +05:33:43 ============================================================================ +05:33:43 [ 1] [ 4] [0800] +05:33:43 [ 7] [ 10] [0319103251] +05:33:43 [ 11] [ 6] [154640] +05:33:43 [ 70] [ 3] [301] +05:33:43 ============================================================================ +05:33:43 + + +waiting on router queue for slot.... +05:33:43 Sending to : +05:33:43 ============================================================================ +05:33:43 ============================================================================ +05:33:43 Slot Id : <248> +05:33:43 Transaction Type : RESPONSE +05:33:43 Received From : +05:33:43 ============================================================================ +05:33:43 FNo. Len. Field Value +05:33:43 ============================================================================ +05:33:43 [ 1] [ 4] [0810] +05:33:43 [ 7] [ 10] [0319103251] +05:33:43 [ 11] [ 6] [154640] +05:33:43 [ 39] [ 2] [00] +05:33:43 [ 70] [ 3] [301] +05:33:43 ============================================================================ +05:33:43 Calculate Source COMM Id = 2 +05:33:43 ============================================================================ +05:33:43 + + +waiting on router queue for slot.... +05:33:59 ============================================================================ +05:33:59 Slot Id : <244> +05:33:59 Transaction Type : REQUEST +05:33:59 Received From : +05:33:59 ============================================================================ +05:33:59 FNo. Len. Field Value +05:33:59 ============================================================================ +05:33:59 [ 1] [ 4] [0800] +05:33:59 [ 7] [ 10] [0319103307] +05:33:59 [ 11] [ 6] [154641] +05:33:59 [ 70] [ 3] [301] +05:33:59 ============================================================================ +05:33:59 + + +waiting on router queue for slot.... +05:33:59 Sending to : +05:33:59 ============================================================================ +05:33:59 ============================================================================ +05:33:59 Slot Id : <244> +05:33:59 Transaction Type : RESPONSE +05:33:59 Received From : +05:33:59 ============================================================================ +05:33:59 FNo. Len. Field Value +05:33:59 ============================================================================ +05:33:59 [ 1] [ 4] [0810] +05:33:59 [ 7] [ 10] [0319103307] +05:33:59 [ 11] [ 6] [154641] +05:33:59 [ 39] [ 2] [00] +05:33:59 [ 70] [ 3] [301] +05:33:59 ============================================================================ +05:33:59 Calculate Source COMM Id = 2 +05:33:59 ============================================================================ +05:33:59 + + +waiting on router queue for slot.... +05:34:10 ============================================================================ +05:34:10 Slot Id : <227> +05:34:10 Transaction Type : REQUEST +05:34:10 Received From : +05:34:10 ============================================================================ +05:34:10 FNo. Len. Field Value +05:34:10 ============================================================================ +05:34:10 [ 1] [ 4] [0800] +05:34:10 [ 7] [ 10] [0319103318] +05:34:10 [ 11] [ 6] [154642] +05:34:10 [ 70] [ 3] [301] +05:34:10 ============================================================================ +05:34:10 + + +waiting on router queue for slot.... +05:34:10 Sending to : +05:34:10 ============================================================================ +05:34:10 ============================================================================ +05:34:10 Slot Id : <227> +05:34:10 Transaction Type : RESPONSE +05:34:10 Received From : +05:34:10 ============================================================================ +05:34:10 FNo. Len. Field Value +05:34:10 ============================================================================ +05:34:10 [ 1] [ 4] [0810] +05:34:10 [ 7] [ 10] [0319103318] +05:34:10 [ 11] [ 6] [154642] +05:34:10 [ 39] [ 2] [00] +05:34:10 [ 70] [ 3] [301] +05:34:10 ============================================================================ +05:34:10 Calculate Source COMM Id = 2 +05:34:10 ============================================================================ +05:34:10 + + +waiting on router queue for slot.... +05:34:22 ============================================================================ +05:34:22 Slot Id : <250> +05:34:22 Transaction Type : REQUEST +05:34:22 Received From : +05:34:22 ============================================================================ +05:34:22 FNo. Len. Field Value +05:34:22 ============================================================================ +05:34:22 [ 1] [ 4] [0800] +05:34:22 [ 7] [ 10] [0319103330] +05:34:22 [ 11] [ 6] [154643] +05:34:22 [ 70] [ 3] [301] +05:34:22 ============================================================================ +05:34:22 + + +waiting on router queue for slot.... +05:34:22 Sending to : +05:34:22 ============================================================================ +05:34:22 ============================================================================ +05:34:22 Slot Id : <250> +05:34:22 Transaction Type : RESPONSE +05:34:22 Received From : +05:34:22 ============================================================================ +05:34:22 FNo. Len. Field Value +05:34:22 ============================================================================ +05:34:22 [ 1] [ 4] [0810] +05:34:22 [ 7] [ 10] [0319103330] +05:34:22 [ 11] [ 6] [154643] +05:34:22 [ 39] [ 2] [00] +05:34:22 [ 70] [ 3] [301] +05:34:22 ============================================================================ +05:34:22 Calculate Source COMM Id = 2 +05:34:22 ============================================================================ +05:34:22 + + +waiting on router queue for slot.... +05:34:22 ============================================================================ +05:34:22 Slot Id : <251> +05:34:22 Transaction Type : REQUEST +05:34:22 Received From : +05:34:22 ============================================================================ +05:34:22 FNo. Len. Field Value +05:34:22 ============================================================================ +05:34:22 [ 1] [ 4] [0800] +05:34:22 [ 2] [ 5] [02531] +05:34:22 [ 3] [ 6] [579058] +05:34:22 [ 7] [ 10] [0319223422] +05:34:22 [ 11] [ 6] [806735] +05:34:22 [ 15] [ 10] [0319223422] +05:34:22 [ 37] [ 11] [57905806735] +05:34:22 [ 70] [ 3] [001] +05:34:22 ============================================================================ +05:34:22 + + +waiting on router queue for slot.... +05:34:22 ============================================================================ +05:34:22 Slot Id : <251> +05:34:22 Transaction Type : RESPONSE +05:34:22 Received From : +05:34:22 ============================================================================ +05:34:22 FNo. Len. Field Value +05:34:22 ============================================================================ +05:34:22 [ 1] [ 4] [0810] +05:34:22 [ 7] [ 10] [0319223422] +05:34:22 [ 11] [ 6] [806735] +05:34:22 [ 15] [ 4] [0319] +05:34:22 [ 37] [ 12] [57905806735] +05:34:22 [ 39] [ 2] [00] +05:34:22 [ 70] [ 3] [001] +05:34:22 ============================================================================ +05:34:22 Sending to : +05:34:22 ============================================================================ +05:34:22 + + +waiting on router queue for slot.... +05:34:38 ============================================================================ +05:34:38 Slot Id : <200> +05:34:38 Transaction Type : REQUEST +05:34:38 Received From : +05:34:38 ============================================================================ +05:34:38 FNo. Len. Field Value +05:34:38 ============================================================================ +05:34:38 [ 1] [ 4] [0800] +05:34:38 [ 7] [ 10] [0319103346] +05:34:38 [ 11] [ 6] [154644] +05:34:38 [ 70] [ 3] [301] +05:34:38 ============================================================================ +05:34:38 + + +waiting on router queue for slot.... +05:34:38 Sending to : +05:34:38 ============================================================================ +05:34:38 ============================================================================ +05:34:38 Slot Id : <200> +05:34:38 Transaction Type : RESPONSE +05:34:38 Received From : +05:34:38 ============================================================================ +05:34:38 FNo. Len. Field Value +05:34:38 ============================================================================ +05:34:38 [ 1] [ 4] [0810] +05:34:38 [ 7] [ 10] [0319103346] +05:34:38 [ 11] [ 6] [154644] +05:34:38 [ 39] [ 2] [00] +05:34:38 [ 70] [ 3] [301] +05:34:38 ============================================================================ +05:34:38 Calculate Source COMM Id = 2 +05:34:38 ============================================================================ +05:34:38 + + +waiting on router queue for slot.... +05:34:44 ============================================================================ +05:34:44 Slot Id : <255> +05:34:44 Transaction Type : REQUEST +05:34:44 Received From : +05:34:44 ============================================================================ +05:34:44 FNo. Len. Field Value +05:34:44 ============================================================================ +05:34:44 [ 1] [ 4] [0800] +05:34:44 [ 7] [ 10] [0320124633] +05:34:44 [ 11] [ 6] [054633] +05:34:44 [ 37] [ 12] [57905054633] +05:34:44 [ 70] [ 3] [301] +05:34:44 ============================================================================ +05:34:44 + + +waiting on router queue for slot.... +05:34:44 Sending to : +05:34:44 ============================================================================ +05:34:44 ============================================================================ +05:34:44 Slot Id : <255> +05:34:44 Transaction Type : RESPONSE +05:34:44 Received From : +05:34:44 ============================================================================ +05:34:44 FNo. Len. Field Value +05:34:44 ============================================================================ +05:34:44 [ 1] [ 4] [0810] +05:34:44 [ 7] [ 10] [0320124633] +05:34:44 [ 11] [ 6] [054633] +05:34:44 [ 37] [ 12] [579050546330] +05:34:44 [ 39] [ 2] [00] +05:34:44 [ 70] [ 3] [810] +05:34:44 ============================================================================ +05:34:44 Calculate Source COMM Id = 6 +05:34:44 ============================================================================ +05:34:44 + + +waiting on router queue for slot.... +05:34:48 ============================================================================ +05:34:48 Slot Id : <226> +05:34:48 Transaction Type : REQUEST +05:34:48 Received From : +05:34:48 ============================================================================ +05:34:48 FNo. Len. Field Value +05:34:48 ============================================================================ +05:34:48 [ 1] [ 4] [0800] +05:34:48 [ 7] [ 10] [0319103357] +05:34:48 [ 11] [ 6] [154645] +05:34:48 [ 70] [ 3] [301] +05:34:48 ============================================================================ +05:34:48 + + +waiting on router queue for slot.... +05:34:48 Sending to : +05:34:48 ============================================================================ +05:34:48 ============================================================================ +05:34:48 Slot Id : <226> +05:34:48 Transaction Type : RESPONSE +05:34:48 Received From : +05:34:48 ============================================================================ +05:34:48 FNo. Len. Field Value +05:34:48 ============================================================================ +05:34:48 [ 1] [ 4] [0810] +05:34:48 [ 7] [ 10] [0319103357] +05:34:48 [ 11] [ 6] [154645] +05:34:48 [ 39] [ 2] [00] +05:34:48 [ 70] [ 3] [301] +05:34:48 ============================================================================ +05:34:48 Calculate Source COMM Id = 2 +05:34:48 ============================================================================ +05:34:48 + + +waiting on router queue for slot.... +05:34:54 ============================================================================ +05:34:54 Slot Id : <233> +05:34:54 Transaction Type : REQUEST +05:34:54 Received From : +05:34:54 ============================================================================ +05:34:54 FNo. Len. Field Value +05:34:54 ============================================================================ +05:34:54 [ 1] [ 4] [0800] +05:34:54 [ 7] [ 10] [0319224242] +05:34:54 [ 11] [ 6] [082061] +05:34:54 [ 37] [ 12] [57905082061] +05:34:54 [ 70] [ 3] [301] +05:34:54 ============================================================================ +05:34:54 + + +waiting on router queue for slot.... +05:34:54 Sending to : +05:34:54 ============================================================================ +05:34:54 ============================================================================ +05:34:54 Slot Id : <233> +05:34:54 Transaction Type : RESPONSE +05:34:54 Received From : +05:34:54 ============================================================================ +05:34:54 FNo. Len. Field Value +05:34:54 ============================================================================ +05:34:54 [ 1] [ 4] [0810] +05:34:54 [ 7] [ 10] [0319224242] +05:34:54 [ 11] [ 6] [082061] +05:34:54 [ 37] [ 12] [579050820610] +05:34:54 [ 39] [ 2] [00] +05:34:54 [ 70] [ 3] [810] +05:34:54 ============================================================================ +05:34:54 Calculate Source COMM Id = 1 +05:34:54 ============================================================================ +05:34:54 + + +waiting on router queue for slot.... +05:34:59 ============================================================================ +05:34:59 Slot Id : <238> +05:34:59 Transaction Type : REQUEST +05:34:59 Received From : +05:34:59 ============================================================================ +05:34:59 FNo. Len. Field Value +05:34:59 ============================================================================ +05:34:59 [ 1] [ 4] [0800] +05:34:59 [ 7] [ 10] [0319103408] +05:34:59 [ 11] [ 6] [154646] +05:34:59 [ 70] [ 3] [301] +05:34:59 ============================================================================ +05:34:59 + + +waiting on router queue for slot.... +05:34:59 Sending to : +05:34:59 ============================================================================ +05:34:59 ============================================================================ +05:34:59 Slot Id : <238> +05:34:59 Transaction Type : RESPONSE +05:34:59 Received From : +05:34:59 ============================================================================ +05:34:59 FNo. Len. Field Value +05:34:59 ============================================================================ +05:34:59 [ 1] [ 4] [0810] +05:34:59 [ 7] [ 10] [0319103408] +05:34:59 [ 11] [ 6] [154646] +05:34:59 [ 39] [ 2] [00] +05:34:59 [ 70] [ 3] [301] +05:34:59 ============================================================================ +05:34:59 Calculate Source COMM Id = 2 +05:34:59 ============================================================================ +05:34:59 + + +waiting on router queue for slot.... +05:35:10 ============================================================================ +05:35:10 Slot Id : <216> +05:35:10 Transaction Type : REQUEST +05:35:10 Received From : +05:35:10 ============================================================================ +05:35:10 FNo. Len. Field Value +05:35:10 ============================================================================ +05:35:10 [ 1] [ 4] [0800] +05:35:10 [ 7] [ 10] [0319103419] +05:35:10 [ 11] [ 6] [154647] +05:35:10 [ 70] [ 3] [301] +05:35:10 ============================================================================ +05:35:10 + + +waiting on router queue for slot.... +05:35:10 Sending to : +05:35:10 ============================================================================ +05:35:10 ============================================================================ +05:35:10 Slot Id : <216> +05:35:10 Transaction Type : RESPONSE +05:35:10 Received From : +05:35:10 ============================================================================ +05:35:10 FNo. Len. Field Value +05:35:10 ============================================================================ +05:35:10 [ 1] [ 4] [0810] +05:35:10 [ 7] [ 10] [0319103419] +05:35:10 [ 11] [ 6] [154647] +05:35:10 [ 39] [ 2] [00] +05:35:10 [ 70] [ 3] [301] +05:35:10 ============================================================================ +05:35:10 Calculate Source COMM Id = 2 +05:35:10 ============================================================================ +05:35:10 + + +waiting on router queue for slot.... +05:35:21 ============================================================================ +05:35:21 Slot Id : <234> +05:35:21 Transaction Type : REQUEST +05:35:21 Received From : +05:35:21 ============================================================================ +05:35:21 FNo. Len. Field Value +05:35:21 ============================================================================ +05:35:21 [ 1] [ 4] [0800] +05:35:21 [ 7] [ 10] [0319103430] +05:35:21 [ 11] [ 6] [154648] +05:35:21 [ 70] [ 3] [301] +05:35:21 ============================================================================ +05:35:21 + + +waiting on router queue for slot.... +05:35:21 Sending to : +05:35:21 ============================================================================ +05:35:21 ============================================================================ +05:35:21 Slot Id : <234> +05:35:21 Transaction Type : RESPONSE +05:35:21 Received From : +05:35:21 ============================================================================ +05:35:21 FNo. Len. Field Value +05:35:21 ============================================================================ +05:35:21 [ 1] [ 4] [0810] +05:35:21 [ 7] [ 10] [0319103430] +05:35:21 [ 11] [ 6] [154648] +05:35:21 [ 39] [ 2] [00] +05:35:21 [ 70] [ 3] [301] +05:35:21 ============================================================================ +05:35:21 Calculate Source COMM Id = 2 +05:35:21 ============================================================================ +05:35:21 + + +waiting on router queue for slot.... +05:35:24 ============================================================================ +05:35:24 Slot Id : <237> +05:35:24 Transaction Type : REQUEST +05:35:24 Received From : +05:35:24 ============================================================================ +05:35:24 FNo. Len. Field Value +05:35:24 ============================================================================ +05:35:24 [ 1] [ 4] [0800] +05:35:24 [ 2] [ 5] [02531] +05:35:24 [ 3] [ 6] [579058] +05:35:24 [ 7] [ 10] [0319223524] +05:35:24 [ 11] [ 6] [806736] +05:35:24 [ 15] [ 10] [0319223524] +05:35:24 [ 37] [ 11] [57905806736] +05:35:24 [ 70] [ 3] [001] +05:35:24 ============================================================================ +05:35:24 + + +waiting on router queue for slot.... +05:35:24 ============================================================================ +05:35:24 Slot Id : <237> +05:35:24 Transaction Type : RESPONSE +05:35:24 Received From : +05:35:24 ============================================================================ +05:35:24 FNo. Len. Field Value +05:35:24 ============================================================================ +05:35:24 [ 1] [ 4] [0810] +05:35:24 [ 7] [ 10] [0319223524] +05:35:24 [ 11] [ 6] [806736] +05:35:24 [ 15] [ 4] [0319] +05:35:24 [ 37] [ 12] [57905806736] +05:35:24 [ 39] [ 2] [00] +05:35:24 [ 70] [ 3] [001] +05:35:24 ============================================================================ +05:35:24 Sending to : +05:35:24 ============================================================================ +05:35:24 + + +waiting on router queue for slot.... +05:35:32 ============================================================================ +05:35:32 Slot Id : <253> +05:35:32 Transaction Type : REQUEST +05:35:32 Received From : +05:35:32 ============================================================================ +05:35:32 FNo. Len. Field Value +05:35:32 ============================================================================ +05:35:32 [ 1] [ 4] [0800] +05:35:32 [ 7] [ 10] [0319103440] +05:35:32 [ 11] [ 6] [154649] +05:35:32 [ 70] [ 3] [301] +05:35:32 ============================================================================ +05:35:32 + + +waiting on router queue for slot.... +05:35:32 Sending to : +05:35:32 ============================================================================ +05:35:32 ============================================================================ +05:35:32 Slot Id : <253> +05:35:32 Transaction Type : RESPONSE +05:35:32 Received From : +05:35:32 ============================================================================ +05:35:32 FNo. Len. Field Value +05:35:32 ============================================================================ +05:35:32 [ 1] [ 4] [0810] +05:35:32 [ 7] [ 10] [0319103440] +05:35:32 [ 11] [ 6] [154649] +05:35:32 [ 39] [ 2] [00] +05:35:32 [ 70] [ 3] [301] +05:35:32 ============================================================================ +05:35:32 Calculate Source COMM Id = 2 +05:35:32 ============================================================================ +05:35:32 + + +waiting on router queue for slot.... +05:35:47 ============================================================================ +05:35:47 Slot Id : <210> +05:35:47 Transaction Type : REQUEST +05:35:47 Received From : +05:35:47 ============================================================================ +05:35:47 FNo. Len. Field Value +05:35:47 ============================================================================ +05:35:47 [ 1] [ 4] [0800] +05:35:47 [ 7] [ 10] [0319103456] +05:35:47 [ 11] [ 6] [154650] +05:35:47 [ 70] [ 3] [301] +05:35:47 ============================================================================ +05:35:47 + + +waiting on router queue for slot.... +05:35:47 Sending to : +05:35:47 ============================================================================ +05:35:47 ============================================================================ +05:35:47 Slot Id : <210> +05:35:47 Transaction Type : RESPONSE +05:35:47 Received From : +05:35:47 ============================================================================ +05:35:47 FNo. Len. Field Value +05:35:47 ============================================================================ +05:35:47 [ 1] [ 4] [0810] +05:35:47 [ 7] [ 10] [0319103456] +05:35:47 [ 11] [ 6] [154650] +05:35:47 [ 39] [ 2] [00] +05:35:47 [ 70] [ 3] [301] +05:35:47 ============================================================================ +05:35:47 Calculate Source COMM Id = 2 +05:35:47 ============================================================================ +05:35:47 + + +waiting on router queue for slot.... +05:35:49 ============================================================================ +05:35:49 Slot Id : <220> +05:35:49 Transaction Type : REQUEST +05:35:49 Received From : +05:35:49 ============================================================================ +05:35:49 FNo. Len. Field Value +05:35:49 ============================================================================ +05:35:49 [ 1] [ 4] [0800] +05:35:49 [ 7] [ 10] [0320124738] +05:35:49 [ 11] [ 6] [054738] +05:35:49 [ 37] [ 12] [57905054738] +05:35:49 [ 70] [ 3] [301] +05:35:49 ============================================================================ +05:35:49 + + +waiting on router queue for slot.... +05:35:49 Sending to : +05:35:49 ============================================================================ +05:35:49 ============================================================================ +05:35:49 Slot Id : <220> +05:35:49 Transaction Type : RESPONSE +05:35:49 Received From : +05:35:49 ============================================================================ +05:35:49 FNo. Len. Field Value +05:35:49 ============================================================================ +05:35:49 [ 1] [ 4] [0810] +05:35:49 [ 7] [ 10] [0320124738] +05:35:49 [ 11] [ 6] [054738] +05:35:49 [ 37] [ 12] [579050547380] +05:35:49 [ 39] [ 2] [00] +05:35:49 [ 70] [ 3] [810] +05:35:49 ============================================================================ +05:35:49 Calculate Source COMM Id = 6 +05:35:49 ============================================================================ +05:35:49 + + +waiting on router queue for slot.... +05:35:58 ============================================================================ +05:35:58 Slot Id : <249> +05:35:58 Transaction Type : REQUEST +05:35:58 Received From : +05:35:58 ============================================================================ +05:35:58 FNo. Len. Field Value +05:35:58 ============================================================================ +05:35:58 [ 1] [ 4] [0800] +05:35:58 [ 7] [ 10] [0319103507] +05:35:58 [ 11] [ 6] [154651] +05:35:58 [ 70] [ 3] [301] +05:35:58 ============================================================================ +05:35:58 + + +waiting on router queue for slot.... +05:35:58 Sending to : +05:35:58 ============================================================================ +05:35:58 ============================================================================ +05:35:58 Slot Id : <249> +05:35:58 Transaction Type : RESPONSE +05:35:58 Received From : +05:35:58 ============================================================================ +05:35:58 FNo. Len. Field Value +05:35:58 ============================================================================ +05:35:58 [ 1] [ 4] [0810] +05:35:58 [ 7] [ 10] [0319103507] +05:35:58 [ 11] [ 6] [154651] +05:35:58 [ 39] [ 2] [00] +05:35:58 [ 70] [ 3] [301] +05:35:58 ============================================================================ +05:35:58 Calculate Source COMM Id = 2 +05:35:58 ============================================================================ +05:35:58 + + +waiting on router queue for slot.... +05:36:14 ============================================================================ +05:36:14 Slot Id : <260> +05:36:14 Transaction Type : REQUEST +05:36:14 Received From : +05:36:14 ============================================================================ +05:36:14 FNo. Len. Field Value +05:36:14 ============================================================================ +05:36:14 [ 1] [ 4] [0800] +05:36:14 [ 7] [ 10] [0319103522] +05:36:14 [ 11] [ 6] [154652] +05:36:14 [ 70] [ 3] [301] +05:36:14 ============================================================================ +05:36:14 + + +waiting on router queue for slot.... +05:36:14 Sending to : +05:36:14 ============================================================================ +05:36:14 ============================================================================ +05:36:14 Slot Id : <260> +05:36:14 Transaction Type : RESPONSE +05:36:14 Received From : +05:36:14 ============================================================================ +05:36:14 FNo. Len. Field Value +05:36:14 ============================================================================ +05:36:14 [ 1] [ 4] [0810] +05:36:14 [ 7] [ 10] [0319103522] +05:36:14 [ 11] [ 6] [154652] +05:36:14 [ 39] [ 2] [00] +05:36:14 [ 70] [ 3] [301] +05:36:14 ============================================================================ +05:36:14 Calculate Source COMM Id = 2 +05:36:14 ============================================================================ +05:36:14 + + +waiting on router queue for slot.... +05:36:20 ============================================================================ +05:36:20 Slot Id : <199> +05:36:20 Transaction Type : REQUEST +05:36:20 Received From : +05:36:20 ============================================================================ +05:36:20 FNo. Len. Field Value +05:36:20 ============================================================================ +05:36:20 [ 1] [ 4] [0800] +05:36:20 [ 7] [ 10] [0319223412] +05:36:20 [ 11] [ 6] [054000] +05:36:20 [ 37] [ 12] [57905054000] +05:36:20 [ 70] [ 3] [301] +05:36:20 ============================================================================ +05:36:20 + + +waiting on router queue for slot.... +05:36:20 Sending to : +05:36:20 ============================================================================ +05:36:20 ============================================================================ +05:36:20 Slot Id : <199> +05:36:20 Transaction Type : RESPONSE +05:36:20 Received From : +05:36:20 ============================================================================ +05:36:20 FNo. Len. Field Value +05:36:20 ============================================================================ +05:36:20 [ 1] [ 4] [0810] +05:36:20 [ 7] [ 10] [0319223412] +05:36:20 [ 11] [ 6] [054000] +05:36:20 [ 37] [ 12] [579050540000] +05:36:20 [ 39] [ 2] [00] +05:36:20 [ 70] [ 3] [810] +05:36:20 ============================================================================ +05:36:20 Calculate Source COMM Id = 4 +05:36:20 ============================================================================ +05:36:20 + + +waiting on router queue for slot.... +05:36:25 ============================================================================ +05:36:25 Slot Id : <259> +05:36:25 Transaction Type : REQUEST +05:36:25 Received From : +05:36:25 ============================================================================ +05:36:25 FNo. Len. Field Value +05:36:25 ============================================================================ +05:36:25 [ 1] [ 4] [0800] +05:36:25 [ 7] [ 10] [0319103533] +05:36:25 [ 11] [ 6] [154653] +05:36:25 [ 70] [ 3] [301] +05:36:25 ============================================================================ +05:36:25 + + +waiting on router queue for slot.... +05:36:25 Sending to : +05:36:25 ============================================================================ +05:36:25 ============================================================================ +05:36:25 Slot Id : <259> +05:36:25 Transaction Type : RESPONSE +05:36:25 Received From : +05:36:25 ============================================================================ +05:36:25 FNo. Len. Field Value +05:36:25 ============================================================================ +05:36:25 [ 1] [ 4] [0810] +05:36:25 [ 7] [ 10] [0319103533] +05:36:25 [ 11] [ 6] [154653] +05:36:25 [ 39] [ 2] [00] +05:36:25 [ 70] [ 3] [301] +05:36:25 ============================================================================ +05:36:25 Calculate Source COMM Id = 2 +05:36:25 ============================================================================ +05:36:25 + + +waiting on router queue for slot.... +05:36:26 ============================================================================ +05:36:26 Slot Id : <263> +05:36:26 Transaction Type : REQUEST +05:36:26 Received From : +05:36:26 ============================================================================ +05:36:26 FNo. Len. Field Value +05:36:26 ============================================================================ +05:36:26 [ 1] [ 4] [0800] +05:36:26 [ 2] [ 5] [02531] +05:36:26 [ 3] [ 6] [579058] +05:36:26 [ 7] [ 10] [0319223626] +05:36:26 [ 11] [ 6] [806737] +05:36:26 [ 15] [ 10] [0319223626] +05:36:26 [ 37] [ 11] [57905806737] +05:36:26 [ 70] [ 3] [001] +05:36:26 ============================================================================ +05:36:26 + + +waiting on router queue for slot.... +05:36:26 ============================================================================ +05:36:26 Slot Id : <263> +05:36:26 Transaction Type : RESPONSE +05:36:26 Received From : +05:36:26 ============================================================================ +05:36:26 FNo. Len. Field Value +05:36:26 ============================================================================ +05:36:26 [ 1] [ 4] [0810] +05:36:26 [ 7] [ 10] [0319223626] +05:36:26 [ 11] [ 6] [806737] +05:36:26 [ 15] [ 4] [0319] +05:36:26 [ 37] [ 12] [57905806737] +05:36:26 [ 39] [ 2] [00] +05:36:26 [ 70] [ 3] [001] +05:36:26 ============================================================================ +05:36:26 Sending to : +05:36:26 ============================================================================ +05:36:26 + + +waiting on router queue for slot.... +05:36:41 ============================================================================ +05:36:41 Slot Id : <270> +05:36:41 Transaction Type : REQUEST +05:36:41 Received From : +05:36:41 ============================================================================ +05:36:41 FNo. Len. Field Value +05:36:41 ============================================================================ +05:36:41 [ 1] [ 4] [0800] +05:36:41 [ 7] [ 10] [0319103550] +05:36:41 [ 11] [ 6] [154654] +05:36:41 [ 70] [ 3] [301] +05:36:41 ============================================================================ +05:36:41 + + +waiting on router queue for slot.... +05:36:41 Sending to : +05:36:41 ============================================================================ +05:36:41 ============================================================================ +05:36:41 Slot Id : <270> +05:36:41 Transaction Type : RESPONSE +05:36:41 Received From : +05:36:41 ============================================================================ +05:36:41 FNo. Len. Field Value +05:36:41 ============================================================================ +05:36:41 [ 1] [ 4] [0810] +05:36:41 [ 7] [ 10] [0319103550] +05:36:41 [ 11] [ 6] [154654] +05:36:41 [ 39] [ 2] [00] +05:36:41 [ 70] [ 3] [301] +05:36:41 ============================================================================ +05:36:41 Calculate Source COMM Id = 2 +05:36:41 ============================================================================ +05:36:41 + + +waiting on router queue for slot.... +05:36:52 ============================================================================ +05:36:52 Slot Id : <261> +05:36:52 Transaction Type : REQUEST +05:36:52 Received From : +05:36:52 ============================================================================ +05:36:52 FNo. Len. Field Value +05:36:52 ============================================================================ +05:36:52 [ 1] [ 4] [0800] +05:36:52 [ 7] [ 10] [0319103600] +05:36:52 [ 11] [ 6] [154655] +05:36:52 [ 70] [ 3] [301] +05:36:52 ============================================================================ +05:36:52 + + +waiting on router queue for slot.... +05:36:52 Sending to : +05:36:52 ============================================================================ +05:36:52 ============================================================================ +05:36:52 Slot Id : <261> +05:36:52 Transaction Type : RESPONSE +05:36:52 Received From : +05:36:52 ============================================================================ +05:36:52 FNo. Len. Field Value +05:36:52 ============================================================================ +05:36:52 [ 1] [ 4] [0810] +05:36:52 [ 7] [ 10] [0319103600] +05:36:52 [ 11] [ 6] [154655] +05:36:52 [ 39] [ 2] [00] +05:36:52 [ 70] [ 3] [301] +05:36:52 ============================================================================ +05:36:52 Calculate Source COMM Id = 2 +05:36:52 ============================================================================ +05:36:52 + + +waiting on router queue for slot.... +05:36:54 ============================================================================ +05:36:54 Slot Id : <269> +05:36:54 Transaction Type : REQUEST +05:36:54 Received From : +05:36:54 ============================================================================ +05:36:54 FNo. Len. Field Value +05:36:54 ============================================================================ +05:36:54 [ 1] [ 4] [0800] +05:36:54 [ 7] [ 10] [0320124843] +05:36:54 [ 11] [ 6] [054843] +05:36:54 [ 37] [ 12] [57905054843] +05:36:54 [ 70] [ 3] [301] +05:36:54 ============================================================================ +05:36:54 + + +waiting on router queue for slot.... +05:36:54 Sending to : +05:36:54 ============================================================================ +05:36:54 ============================================================================ +05:36:54 Slot Id : <269> +05:36:54 Transaction Type : RESPONSE +05:36:54 Received From : +05:36:54 ============================================================================ +05:36:54 FNo. Len. Field Value +05:36:54 ============================================================================ +05:36:54 [ 1] [ 4] [0810] +05:36:54 [ 7] [ 10] [0320124843] +05:36:54 [ 11] [ 6] [054843] +05:36:54 [ 37] [ 12] [579050548430] +05:36:54 [ 39] [ 2] [00] +05:36:54 [ 70] [ 3] [810] +05:36:54 ============================================================================ +05:36:54 Calculate Source COMM Id = 6 +05:36:54 ============================================================================ +05:36:54 + + +waiting on router queue for slot.... +05:37:03 ============================================================================ +05:37:03 Slot Id : <256> +05:37:03 Transaction Type : REQUEST +05:37:03 Received From : +05:37:03 ============================================================================ +05:37:03 FNo. Len. Field Value +05:37:03 ============================================================================ +05:37:03 [ 1] [ 4] [0800] +05:37:03 [ 7] [ 10] [0319103611] +05:37:03 [ 11] [ 6] [154656] +05:37:03 [ 70] [ 3] [301] +05:37:03 ============================================================================ +05:37:03 + + +waiting on router queue for slot.... +05:37:03 Sending to : +05:37:03 ============================================================================ +05:37:03 ============================================================================ +05:37:03 Slot Id : <256> +05:37:03 Transaction Type : RESPONSE +05:37:03 Received From : +05:37:03 ============================================================================ +05:37:03 FNo. Len. Field Value +05:37:03 ============================================================================ +05:37:03 [ 1] [ 4] [0810] +05:37:03 [ 7] [ 10] [0319103611] +05:37:03 [ 11] [ 6] [154656] +05:37:03 [ 39] [ 2] [00] +05:37:03 [ 70] [ 3] [301] +05:37:03 ============================================================================ +05:37:03 Calculate Source COMM Id = 2 +05:37:03 ============================================================================ +05:37:03 + + +waiting on router queue for slot.... +05:37:14 ============================================================================ +05:37:14 Slot Id : <197> +05:37:14 Transaction Type : REQUEST +05:37:14 Received From : +05:37:14 ============================================================================ +05:37:14 FNo. Len. Field Value +05:37:14 ============================================================================ +05:37:14 [ 1] [ 4] [0800] +05:37:14 [ 7] [ 10] [0319103622] +05:37:14 [ 11] [ 6] [154657] +05:37:14 [ 70] [ 3] [301] +05:37:14 ============================================================================ +05:37:14 + + +waiting on router queue for slot.... +05:37:14 Sending to : +05:37:14 ============================================================================ +05:37:14 ============================================================================ +05:37:14 Slot Id : <197> +05:37:14 Transaction Type : RESPONSE +05:37:14 Received From : +05:37:14 ============================================================================ +05:37:14 FNo. Len. Field Value +05:37:14 ============================================================================ +05:37:14 [ 1] [ 4] [0810] +05:37:14 [ 7] [ 10] [0319103622] +05:37:14 [ 11] [ 6] [154657] +05:37:14 [ 39] [ 2] [00] +05:37:14 [ 70] [ 3] [301] +05:37:14 ============================================================================ +05:37:14 Calculate Source COMM Id = 2 +05:37:14 ============================================================================ +05:37:14 + + +waiting on router queue for slot.... +05:37:28 ============================================================================ +05:37:28 Slot Id : <240> +05:37:28 Transaction Type : REQUEST +05:37:28 Received From : +05:37:28 ============================================================================ +05:37:28 FNo. Len. Field Value +05:37:28 ============================================================================ +05:37:28 [ 1] [ 4] [0800] +05:37:28 [ 2] [ 5] [02531] +05:37:28 [ 3] [ 6] [579058] +05:37:28 [ 7] [ 10] [0319223728] +05:37:28 [ 11] [ 6] [806738] +05:37:28 [ 15] [ 10] [0319223728] +05:37:28 [ 37] [ 11] [57905806738] +05:37:28 [ 70] [ 3] [001] +05:37:28 ============================================================================ +05:37:28 + + +waiting on router queue for slot.... +05:37:28 ============================================================================ +05:37:28 Slot Id : <240> +05:37:28 Transaction Type : RESPONSE +05:37:28 Received From : +05:37:28 ============================================================================ +05:37:28 FNo. Len. Field Value +05:37:28 ============================================================================ +05:37:28 [ 1] [ 4] [0810] +05:37:28 [ 7] [ 10] [0319223728] +05:37:28 [ 11] [ 6] [806738] +05:37:28 [ 15] [ 4] [0319] +05:37:28 [ 37] [ 12] [57905806738] +05:37:28 [ 39] [ 2] [00] +05:37:28 [ 70] [ 3] [001] +05:37:28 ============================================================================ +05:37:28 Sending to : +05:37:28 ============================================================================ +05:37:28 + + +waiting on router queue for slot.... +05:37:31 ============================================================================ +05:37:31 Slot Id : <228> +05:37:31 Transaction Type : REQUEST +05:37:31 Received From : +05:37:31 ============================================================================ +05:37:31 FNo. Len. Field Value +05:37:31 ============================================================================ +05:37:31 [ 1] [ 4] [0800] +05:37:31 [ 7] [ 10] [0319103640] +05:37:31 [ 11] [ 6] [154658] +05:37:31 [ 70] [ 3] [301] +05:37:31 ============================================================================ +05:37:31 + + +waiting on router queue for slot.... +05:37:31 Sending to : +05:37:31 ============================================================================ +05:37:31 ============================================================================ +05:37:31 Slot Id : <228> +05:37:31 Transaction Type : RESPONSE +05:37:31 Received From : +05:37:31 ============================================================================ +05:37:31 FNo. Len. Field Value +05:37:31 ============================================================================ +05:37:31 [ 1] [ 4] [0810] +05:37:31 [ 7] [ 10] [0319103640] +05:37:31 [ 11] [ 6] [154658] +05:37:31 [ 39] [ 2] [00] +05:37:31 [ 70] [ 3] [301] +05:37:31 ============================================================================ +05:37:31 Calculate Source COMM Id = 2 +05:37:31 ============================================================================ +05:37:31 + + +waiting on router queue for slot.... +05:37:42 ============================================================================ +05:37:42 Slot Id : <265> +05:37:42 Transaction Type : REQUEST +05:37:42 Received From : +05:37:42 ============================================================================ +05:37:42 FNo. Len. Field Value +05:37:42 ============================================================================ +05:37:42 [ 1] [ 4] [0800] +05:37:42 [ 7] [ 10] [0319103651] +05:37:42 [ 11] [ 6] [154659] +05:37:42 [ 70] [ 3] [301] +05:37:42 ============================================================================ +05:37:42 + + +waiting on router queue for slot.... +05:37:42 Sending to : +05:37:42 ============================================================================ +05:37:42 ============================================================================ +05:37:42 Slot Id : <265> +05:37:42 Transaction Type : RESPONSE +05:37:42 Received From : +05:37:42 ============================================================================ +05:37:42 FNo. Len. Field Value +05:37:42 ============================================================================ +05:37:42 [ 1] [ 4] [0810] +05:37:42 [ 7] [ 10] [0319103651] +05:37:42 [ 11] [ 6] [154659] +05:37:42 [ 39] [ 2] [00] +05:37:42 [ 70] [ 3] [301] +05:37:42 ============================================================================ +05:37:42 Calculate Source COMM Id = 2 +05:37:42 ============================================================================ +05:37:42 + + +waiting on router queue for slot.... +05:37:54 ============================================================================ +05:37:54 Slot Id : <275> +05:37:54 Transaction Type : REQUEST +05:37:54 Received From : +05:37:54 ============================================================================ +05:37:54 FNo. Len. Field Value +05:37:54 ============================================================================ +05:37:54 [ 1] [ 4] [0800] +05:37:54 [ 7] [ 10] [0319103703] +05:37:54 [ 11] [ 6] [154660] +05:37:54 [ 70] [ 3] [301] +05:37:54 ============================================================================ +05:37:54 + + +waiting on router queue for slot.... +05:37:54 Sending to : +05:37:54 ============================================================================ +05:37:54 ============================================================================ +05:37:54 Slot Id : <275> +05:37:54 Transaction Type : RESPONSE +05:37:54 Received From : +05:37:54 ============================================================================ +05:37:54 FNo. Len. Field Value +05:37:54 ============================================================================ +05:37:54 [ 1] [ 4] [0810] +05:37:54 [ 7] [ 10] [0319103703] +05:37:54 [ 11] [ 6] [154660] +05:37:54 [ 39] [ 2] [00] +05:37:54 [ 70] [ 3] [301] +05:37:54 ============================================================================ +05:37:54 Calculate Source COMM Id = 2 +05:37:54 ============================================================================ +05:37:54 + + +waiting on router queue for slot.... +05:37:59 ============================================================================ +05:37:59 Slot Id : <247> +05:37:59 Transaction Type : REQUEST +05:37:59 Received From : +05:37:59 ============================================================================ +05:37:59 FNo. Len. Field Value +05:37:59 ============================================================================ +05:37:59 [ 1] [ 4] [0800] +05:37:59 [ 7] [ 10] [0320124948] +05:37:59 [ 11] [ 6] [054948] +05:37:59 [ 37] [ 12] [57905054948] +05:37:59 [ 70] [ 3] [301] +05:37:59 ============================================================================ +05:37:59 + + +waiting on router queue for slot.... +05:37:59 Sending to : +05:37:59 ============================================================================ +05:37:59 ============================================================================ +05:37:59 Slot Id : <247> +05:37:59 Transaction Type : RESPONSE +05:37:59 Received From : +05:37:59 ============================================================================ +05:37:59 FNo. Len. Field Value +05:37:59 ============================================================================ +05:37:59 [ 1] [ 4] [0810] +05:37:59 [ 7] [ 10] [0320124948] +05:37:59 [ 11] [ 6] [054948] +05:37:59 [ 37] [ 12] [579050549480] +05:37:59 [ 39] [ 2] [00] +05:37:59 [ 70] [ 3] [810] +05:37:59 ============================================================================ +05:37:59 Calculate Source COMM Id = 6 +05:37:59 ============================================================================ +05:37:59 + + +waiting on router queue for slot.... +05:38:11 ============================================================================ +05:38:11 Slot Id : <218> +05:38:11 Transaction Type : REQUEST +05:38:11 Received From : +05:38:11 ============================================================================ +05:38:11 FNo. Len. Field Value +05:38:11 ============================================================================ +05:38:11 [ 1] [ 4] [0800] +05:38:11 [ 7] [ 10] [0319103720] +05:38:11 [ 11] [ 6] [154661] +05:38:11 [ 70] [ 3] [301] +05:38:11 ============================================================================ +05:38:11 + + +waiting on router queue for slot.... +05:38:11 Sending to : +05:38:11 ============================================================================ +05:38:11 ============================================================================ +05:38:11 Slot Id : <218> +05:38:11 Transaction Type : RESPONSE +05:38:11 Received From : +05:38:11 ============================================================================ +05:38:11 FNo. Len. Field Value +05:38:11 ============================================================================ +05:38:11 [ 1] [ 4] [0810] +05:38:11 [ 7] [ 10] [0319103720] +05:38:11 [ 11] [ 6] [154661] +05:38:11 [ 39] [ 2] [00] +05:38:11 [ 70] [ 3] [301] +05:38:11 ============================================================================ +05:38:11 Calculate Source COMM Id = 2 +05:38:11 ============================================================================ +05:38:11 + + +waiting on router queue for slot.... +05:38:26 ============================================================================ +05:38:26 Slot Id : <274> +05:38:26 Transaction Type : REQUEST +05:38:26 Received From : +05:38:26 ============================================================================ +05:38:26 FNo. Len. Field Value +05:38:26 ============================================================================ +05:38:26 [ 1] [ 4] [0800] +05:38:26 [ 7] [ 10] [0319103734] +05:38:26 [ 11] [ 6] [154662] +05:38:26 [ 70] [ 3] [301] +05:38:26 ============================================================================ +05:38:26 + + +waiting on router queue for slot.... +05:38:26 Sending to : +05:38:26 ============================================================================ +05:38:26 ============================================================================ +05:38:26 Slot Id : <274> +05:38:26 Transaction Type : RESPONSE +05:38:26 Received From : +05:38:26 ============================================================================ +05:38:26 FNo. Len. Field Value +05:38:26 ============================================================================ +05:38:26 [ 1] [ 4] [0810] +05:38:26 [ 7] [ 10] [0319103734] +05:38:26 [ 11] [ 6] [154662] +05:38:26 [ 39] [ 2] [00] +05:38:26 [ 70] [ 3] [301] +05:38:26 ============================================================================ +05:38:26 Calculate Source COMM Id = 2 +05:38:26 ============================================================================ +05:38:26 + + +waiting on router queue for slot.... +05:38:30 ============================================================================ +05:38:30 Slot Id : <264> +05:38:30 Transaction Type : REQUEST +05:38:30 Received From : +05:38:30 ============================================================================ +05:38:30 FNo. Len. Field Value +05:38:30 ============================================================================ +05:38:30 [ 1] [ 4] [0800] +05:38:30 [ 2] [ 5] [02531] +05:38:30 [ 3] [ 6] [579058] +05:38:30 [ 7] [ 10] [0319223830] +05:38:30 [ 11] [ 6] [806739] +05:38:30 [ 15] [ 10] [0319223830] +05:38:30 [ 37] [ 11] [57905806739] +05:38:30 [ 70] [ 3] [001] +05:38:30 ============================================================================ +05:38:30 + + +waiting on router queue for slot.... +05:38:30 ============================================================================ +05:38:30 Slot Id : <264> +05:38:30 Transaction Type : RESPONSE +05:38:30 Received From : +05:38:30 ============================================================================ +05:38:30 FNo. Len. Field Value +05:38:30 ============================================================================ +05:38:30 [ 1] [ 4] [0810] +05:38:30 [ 7] [ 10] [0319223830] +05:38:30 [ 11] [ 6] [806739] +05:38:30 [ 15] [ 4] [0319] +05:38:30 [ 37] [ 12] [57905806739] +05:38:30 [ 39] [ 2] [00] +05:38:30 [ 70] [ 3] [001] +05:38:30 ============================================================================ +05:38:30 Sending to : +05:38:30 ============================================================================ +05:38:30 + + +waiting on router queue for slot.... +05:38:37 ============================================================================ +05:38:37 Slot Id : <231> +05:38:37 Transaction Type : REQUEST +05:38:37 Received From : +05:38:37 ============================================================================ +05:38:37 FNo. Len. Field Value +05:38:37 ============================================================================ +05:38:37 [ 1] [ 4] [0800] +05:38:37 [ 7] [ 10] [0319103745] +05:38:37 [ 11] [ 6] [154663] +05:38:37 [ 70] [ 3] [301] +05:38:37 ============================================================================ +05:38:37 + + +waiting on router queue for slot.... +05:38:37 Sending to : +05:38:37 ============================================================================ +05:38:37 ============================================================================ +05:38:37 Slot Id : <231> +05:38:37 Transaction Type : RESPONSE +05:38:37 Received From : +05:38:37 ============================================================================ +05:38:37 FNo. Len. Field Value +05:38:37 ============================================================================ +05:38:37 [ 1] [ 4] [0810] +05:38:37 [ 7] [ 10] [0319103745] +05:38:37 [ 11] [ 6] [154663] +05:38:37 [ 39] [ 2] [00] +05:38:37 [ 70] [ 3] [301] +05:38:37 ============================================================================ +05:38:37 Calculate Source COMM Id = 2 +05:38:37 ============================================================================ +05:38:37 + + +waiting on router queue for slot.... +05:38:53 ============================================================================ +05:38:53 Slot Id : <279> +05:38:53 Transaction Type : REQUEST +05:38:53 Received From : +05:38:53 ============================================================================ +05:38:53 FNo. Len. Field Value +05:38:53 ============================================================================ +05:38:53 [ 1] [ 4] [0800] +05:38:53 [ 7] [ 10] [0319103801] +05:38:53 [ 11] [ 6] [154664] +05:38:53 [ 70] [ 3] [301] +05:38:53 ============================================================================ +05:38:53 + + +waiting on router queue for slot.... +05:38:53 Sending to : +05:38:53 ============================================================================ +05:38:53 ============================================================================ +05:38:53 Slot Id : <279> +05:38:53 Transaction Type : RESPONSE +05:38:53 Received From : +05:38:53 ============================================================================ +05:38:53 FNo. Len. Field Value +05:38:53 ============================================================================ +05:38:53 [ 1] [ 4] [0810] +05:38:53 [ 7] [ 10] [0319103801] +05:38:53 [ 11] [ 6] [154664] +05:38:53 [ 39] [ 2] [00] +05:38:53 [ 70] [ 3] [301] +05:38:53 ============================================================================ +05:38:53 Calculate Source COMM Id = 2 +05:38:53 ============================================================================ +05:38:53 + + +waiting on router queue for slot.... +05:39:04 ============================================================================ +05:39:04 Slot Id : <239> +05:39:04 Transaction Type : REQUEST +05:39:04 Received From : +05:39:04 ============================================================================ +05:39:04 FNo. Len. Field Value +05:39:04 ============================================================================ +05:39:04 [ 1] [ 4] [0800] +05:39:04 [ 7] [ 10] [0320125053] +05:39:04 [ 11] [ 6] [055053] +05:39:04 [ 37] [ 12] [57905055053] +05:39:04 [ 70] [ 3] [301] +05:39:04 ============================================================================ +05:39:04 + + +waiting on router queue for slot.... +05:39:04 Sending to : +05:39:04 ============================================================================ +05:39:04 ============================================================================ +05:39:04 Slot Id : <239> +05:39:04 Transaction Type : RESPONSE +05:39:04 Received From : +05:39:04 ============================================================================ +05:39:04 FNo. Len. Field Value +05:39:04 ============================================================================ +05:39:04 [ 1] [ 4] [0810] +05:39:04 [ 7] [ 10] [0320125053] +05:39:04 [ 11] [ 6] [055053] +05:39:04 [ 37] [ 12] [579050550530] +05:39:04 [ 39] [ 2] [00] +05:39:04 [ 70] [ 3] [810] +05:39:04 ============================================================================ +05:39:04 Calculate Source COMM Id = 6 +05:39:04 ============================================================================ +05:39:04 + + +waiting on router queue for slot.... +05:39:08 ============================================================================ +05:39:08 Slot Id : <254> +05:39:08 Transaction Type : REQUEST +05:39:08 Received From : +05:39:08 ============================================================================ +05:39:08 FNo. Len. Field Value +05:39:08 ============================================================================ +05:39:08 [ 1] [ 4] [0800] +05:39:08 [ 7] [ 10] [0319103817] +05:39:08 [ 11] [ 6] [154665] +05:39:08 [ 70] [ 3] [301] +05:39:08 ============================================================================ +05:39:08 + + +waiting on router queue for slot.... +05:39:08 Sending to : +05:39:08 ============================================================================ +05:39:08 ============================================================================ +05:39:08 Slot Id : <254> +05:39:08 Transaction Type : RESPONSE +05:39:08 Received From : +05:39:08 ============================================================================ +05:39:08 FNo. Len. Field Value +05:39:08 ============================================================================ +05:39:08 [ 1] [ 4] [0810] +05:39:08 [ 7] [ 10] [0319103817] +05:39:08 [ 11] [ 6] [154665] +05:39:08 [ 39] [ 2] [00] +05:39:08 [ 70] [ 3] [301] +05:39:08 ============================================================================ +05:39:08 Calculate Source COMM Id = 2 +05:39:08 ============================================================================ +05:39:08 + + +waiting on router queue for slot.... +05:39:23 ============================================================================ +05:39:23 Slot Id : <273> +05:39:23 Transaction Type : REQUEST +05:39:23 Received From : +05:39:23 ============================================================================ +05:39:23 FNo. Len. Field Value +05:39:23 ============================================================================ +05:39:23 [ 1] [ 4] [0800] +05:39:23 [ 7] [ 10] [0319103832] +05:39:23 [ 11] [ 6] [154666] +05:39:23 [ 70] [ 3] [301] +05:39:23 ============================================================================ +05:39:23 + + +waiting on router queue for slot.... +05:39:23 Sending to : +05:39:23 ============================================================================ +05:39:23 ============================================================================ +05:39:23 Slot Id : <273> +05:39:23 Transaction Type : RESPONSE +05:39:23 Received From : +05:39:23 ============================================================================ +05:39:23 FNo. Len. Field Value +05:39:23 ============================================================================ +05:39:23 [ 1] [ 4] [0810] +05:39:23 [ 7] [ 10] [0319103832] +05:39:23 [ 11] [ 6] [154666] +05:39:23 [ 39] [ 2] [00] +05:39:23 [ 70] [ 3] [301] +05:39:23 ============================================================================ +05:39:23 Calculate Source COMM Id = 2 +05:39:23 ============================================================================ +05:39:23 + + +waiting on router queue for slot.... +05:39:32 ============================================================================ +05:39:32 Slot Id : <266> +05:39:32 Transaction Type : REQUEST +05:39:32 Received From : +05:39:32 ============================================================================ +05:39:32 FNo. Len. Field Value +05:39:32 ============================================================================ +05:39:32 [ 1] [ 4] [0800] +05:39:32 [ 2] [ 5] [02531] +05:39:32 [ 3] [ 6] [579058] +05:39:32 [ 7] [ 10] [0319223932] +05:39:32 [ 11] [ 6] [806740] +05:39:32 [ 15] [ 10] [0319223932] +05:39:32 [ 37] [ 11] [57905806740] +05:39:32 [ 70] [ 3] [001] +05:39:32 ============================================================================ +05:39:32 + + +waiting on router queue for slot.... +05:39:32 ============================================================================ +05:39:32 Slot Id : <266> +05:39:32 Transaction Type : RESPONSE +05:39:32 Received From : +05:39:32 ============================================================================ +05:39:32 FNo. Len. Field Value +05:39:32 ============================================================================ +05:39:32 [ 1] [ 4] [0810] +05:39:32 [ 7] [ 10] [0319223932] +05:39:32 [ 11] [ 6] [806740] +05:39:32 [ 15] [ 4] [0319] +05:39:32 [ 37] [ 12] [57905806740] +05:39:32 [ 39] [ 2] [00] +05:39:32 [ 70] [ 3] [001] +05:39:32 ============================================================================ +05:39:32 Sending to : +05:39:32 ============================================================================ +05:39:32 + + +waiting on router queue for slot.... +05:39:34 ============================================================================ +05:39:34 Slot Id : <272> +05:39:34 Transaction Type : REQUEST +05:39:34 Received From : +05:39:34 ============================================================================ +05:39:34 FNo. Len. Field Value +05:39:34 ============================================================================ +05:39:34 [ 1] [ 4] [0800] +05:39:34 [ 7] [ 10] [0319103843] +05:39:34 [ 11] [ 6] [154667] +05:39:34 [ 70] [ 3] [301] +05:39:34 ============================================================================ +05:39:34 + + +waiting on router queue for slot.... +05:39:34 Sending to : +05:39:34 ============================================================================ +05:39:34 ============================================================================ +05:39:34 Slot Id : <272> +05:39:34 Transaction Type : RESPONSE +05:39:34 Received From : +05:39:34 ============================================================================ +05:39:34 FNo. Len. Field Value +05:39:34 ============================================================================ +05:39:34 [ 1] [ 4] [0810] +05:39:34 [ 7] [ 10] [0319103843] +05:39:34 [ 11] [ 6] [154667] +05:39:34 [ 39] [ 2] [00] +05:39:34 [ 70] [ 3] [301] +05:39:34 ============================================================================ +05:39:34 Calculate Source COMM Id = 2 +05:39:34 ============================================================================ +05:39:34 + + +waiting on router queue for slot.... +05:39:45 ============================================================================ +05:39:45 Slot Id : <282> +05:39:45 Transaction Type : REQUEST +05:39:45 Received From : +05:39:45 ============================================================================ +05:39:45 FNo. Len. Field Value +05:39:45 ============================================================================ +05:39:45 [ 1] [ 4] [0800] +05:39:45 [ 7] [ 10] [0319103854] +05:39:45 [ 11] [ 6] [154668] +05:39:45 [ 70] [ 3] [301] +05:39:45 ============================================================================ +05:39:45 + + +waiting on router queue for slot.... +05:39:45 Sending to : +05:39:45 ============================================================================ +05:39:45 ============================================================================ +05:39:45 Slot Id : <282> +05:39:45 Transaction Type : RESPONSE +05:39:45 Received From : +05:39:45 ============================================================================ +05:39:45 FNo. Len. Field Value +05:39:45 ============================================================================ +05:39:45 [ 1] [ 4] [0810] +05:39:45 [ 7] [ 10] [0319103854] +05:39:45 [ 11] [ 6] [154668] +05:39:45 [ 39] [ 2] [00] +05:39:45 [ 70] [ 3] [301] +05:39:45 ============================================================================ +05:39:45 Calculate Source COMM Id = 2 +05:39:45 ============================================================================ +05:39:45 + + +waiting on router queue for slot.... +05:39:54 ============================================================================ +05:39:54 Slot Id : <241> +05:39:54 Transaction Type : REQUEST +05:39:54 Received From : +05:39:54 ============================================================================ +05:39:54 FNo. Len. Field Value +05:39:54 ============================================================================ +05:39:54 [ 1] [ 4] [0800] +05:39:54 [ 7] [ 10] [0319224742] +05:39:54 [ 11] [ 6] [095629] +05:39:54 [ 37] [ 12] [57905095629] +05:39:54 [ 70] [ 3] [301] +05:39:54 ============================================================================ +05:39:54 + + +waiting on router queue for slot.... +05:39:54 Sending to : +05:39:54 ============================================================================ +05:39:54 ============================================================================ +05:39:54 Slot Id : <241> +05:39:54 Transaction Type : RESPONSE +05:39:54 Received From : +05:39:54 ============================================================================ +05:39:54 FNo. Len. Field Value +05:39:54 ============================================================================ +05:39:54 [ 1] [ 4] [0810] +05:39:54 [ 7] [ 10] [0319224742] +05:39:54 [ 11] [ 6] [095629] +05:39:54 [ 37] [ 12] [579050956290] +05:39:54 [ 39] [ 2] [00] +05:39:54 [ 70] [ 3] [810] +05:39:54 ============================================================================ +05:39:54 Calculate Source COMM Id = 1 +05:39:54 ============================================================================ +05:39:54 + + +waiting on router queue for slot.... +05:39:56 ============================================================================ +05:39:56 Slot Id : <252> +05:39:56 Transaction Type : REQUEST +05:39:56 Received From : +05:39:56 ============================================================================ +05:39:56 FNo. Len. Field Value +05:39:56 ============================================================================ +05:39:56 [ 1] [ 4] [0800] +05:39:56 [ 7] [ 10] [0319103905] +05:39:56 [ 11] [ 6] [154669] +05:39:56 [ 70] [ 3] [301] +05:39:56 ============================================================================ +05:39:56 + + +waiting on router queue for slot.... +05:39:56 Sending to : +05:39:56 ============================================================================ +05:39:56 ============================================================================ +05:39:56 Slot Id : <252> +05:39:56 Transaction Type : RESPONSE +05:39:56 Received From : +05:39:56 ============================================================================ +05:39:56 FNo. Len. Field Value +05:39:56 ============================================================================ +05:39:56 [ 1] [ 4] [0810] +05:39:56 [ 7] [ 10] [0319103905] +05:39:56 [ 11] [ 6] [154669] +05:39:56 [ 39] [ 2] [00] +05:39:56 [ 70] [ 3] [301] +05:39:56 ============================================================================ +05:39:56 Calculate Source COMM Id = 2 +05:39:56 ============================================================================ +05:39:56 + + +waiting on router queue for slot.... +05:39:59 ============================================================================ +05:39:59 Slot Id : <245> +05:39:59 Transaction Type : REQUEST +05:39:59 Received From : +05:39:59 ============================================================================ +05:39:59 FNo. Len. Field Value +05:39:59 ============================================================================ +05:39:59 [ 1] [ 4] [0800] +05:39:59 [ 7] [ 10] [0319223956] +05:39:59 [ 11] [ 6] [016910] +05:39:59 [ 37] [ 12] [507905016910] +05:39:59 [ 70] [ 3] [001] +05:39:59 ============================================================================ +05:39:59 + + +waiting on router queue for slot.... +05:39:59 Sending to : +05:39:59 ============================================================================ +05:39:59 ============================================================================ +05:39:59 Slot Id : <245> +05:39:59 Transaction Type : RESPONSE +05:39:59 Received From : +05:39:59 ============================================================================ +05:39:59 FNo. Len. Field Value +05:39:59 ============================================================================ +05:39:59 [ 1] [ 4] [0810] +05:39:59 [ 7] [ 10] [0319223956] +05:39:59 [ 11] [ 6] [016910] +05:39:59 [ 37] [ 12] [507905016910] +05:39:59 [ 39] [ 2] [00] +05:39:59 [ 70] [ 3] [001] +05:39:59 ============================================================================ +05:39:59 Calculate Source COMM Id = 0 +05:39:59 ============================================================================ +05:39:59 + + +waiting on router queue for slot.... +05:40:09 ============================================================================ +05:40:09 Slot Id : <276> +05:40:09 Transaction Type : REQUEST +05:40:09 Received From : +05:40:09 ============================================================================ +05:40:09 FNo. Len. Field Value +05:40:09 ============================================================================ +05:40:09 [ 1] [ 4] [0800] +05:40:09 [ 7] [ 10] [0320125158] +05:40:09 [ 11] [ 6] [055158] +05:40:09 [ 37] [ 12] [57905055158] +05:40:09 [ 70] [ 3] [301] +05:40:09 ============================================================================ +05:40:09 + + +waiting on router queue for slot.... +05:40:09 Sending to : +05:40:09 ============================================================================ +05:40:09 ============================================================================ +05:40:09 Slot Id : <276> +05:40:09 Transaction Type : RESPONSE +05:40:09 Received From : +05:40:09 ============================================================================ +05:40:09 FNo. Len. Field Value +05:40:09 ============================================================================ +05:40:09 [ 1] [ 4] [0810] +05:40:09 [ 7] [ 10] [0320125158] +05:40:09 [ 11] [ 6] [055158] +05:40:09 [ 37] [ 12] [579050551580] +05:40:09 [ 39] [ 2] [00] +05:40:09 [ 70] [ 3] [810] +05:40:09 ============================================================================ +05:40:09 Calculate Source COMM Id = 6 +05:40:09 ============================================================================ +05:40:09 + + +waiting on router queue for slot.... +05:40:12 ============================================================================ +05:40:12 Slot Id : <280> +05:40:12 Transaction Type : REQUEST +05:40:12 Received From : +05:40:12 ============================================================================ +05:40:12 FNo. Len. Field Value +05:40:12 ============================================================================ +05:40:12 [ 1] [ 4] [0800] +05:40:12 [ 7] [ 10] [0319103920] +05:40:12 [ 11] [ 6] [154670] +05:40:12 [ 70] [ 3] [301] +05:40:12 ============================================================================ +05:40:12 + + +waiting on router queue for slot.... +05:40:12 Sending to : +05:40:12 ============================================================================ +05:40:12 ============================================================================ +05:40:12 Slot Id : <280> +05:40:12 Transaction Type : RESPONSE +05:40:12 Received From : +05:40:12 ============================================================================ +05:40:12 FNo. Len. Field Value +05:40:12 ============================================================================ +05:40:12 [ 1] [ 4] [0810] +05:40:12 [ 7] [ 10] [0319103920] +05:40:12 [ 11] [ 6] [154670] +05:40:12 [ 39] [ 2] [00] +05:40:12 [ 70] [ 3] [301] +05:40:12 ============================================================================ +05:40:12 Calculate Source COMM Id = 2 +05:40:12 ============================================================================ +05:40:12 + + +waiting on router queue for slot.... +05:40:23 ============================================================================ +05:40:23 Slot Id : <284> +05:40:23 Transaction Type : REQUEST +05:40:23 Received From : +05:40:23 ============================================================================ +05:40:23 FNo. Len. Field Value +05:40:23 ============================================================================ +05:40:23 [ 1] [ 4] [0800] +05:40:23 [ 7] [ 10] [0319103931] +05:40:23 [ 11] [ 6] [154671] +05:40:23 [ 70] [ 3] [301] +05:40:23 ============================================================================ +05:40:23 + + +waiting on router queue for slot.... +05:40:23 Sending to : +05:40:23 ============================================================================ +05:40:23 ============================================================================ +05:40:23 Slot Id : <284> +05:40:23 Transaction Type : RESPONSE +05:40:23 Received From : +05:40:23 ============================================================================ +05:40:23 FNo. Len. Field Value +05:40:23 ============================================================================ +05:40:23 [ 1] [ 4] [0810] +05:40:23 [ 7] [ 10] [0319103931] +05:40:23 [ 11] [ 6] [154671] +05:40:23 [ 39] [ 2] [00] +05:40:23 [ 70] [ 3] [301] +05:40:23 ============================================================================ +05:40:23 Calculate Source COMM Id = 2 +05:40:23 ============================================================================ +05:40:23 + + +waiting on router queue for slot.... +05:40:34 ============================================================================ +05:40:34 Slot Id : <258> +05:40:34 Transaction Type : REQUEST +05:40:34 Received From : +05:40:34 ============================================================================ +05:40:34 FNo. Len. Field Value +05:40:34 ============================================================================ +05:40:34 [ 1] [ 4] [0800] +05:40:34 [ 2] [ 5] [02531] +05:40:34 [ 3] [ 6] [579058] +05:40:34 [ 7] [ 10] [0319224034] +05:40:34 [ 11] [ 6] [806741] +05:40:34 [ 15] [ 10] [0319224034] +05:40:34 [ 37] [ 11] [57905806741] +05:40:34 [ 70] [ 3] [001] +05:40:34 ============================================================================ +05:40:34 + + +waiting on router queue for slot.... +05:40:34 ============================================================================ +05:40:34 Slot Id : <258> +05:40:34 Transaction Type : RESPONSE +05:40:34 Received From : +05:40:34 ============================================================================ +05:40:34 FNo. Len. Field Value +05:40:34 ============================================================================ +05:40:34 [ 1] [ 4] [0810] +05:40:34 [ 7] [ 10] [0319224034] +05:40:34 [ 11] [ 6] [806741] +05:40:34 [ 15] [ 4] [0319] +05:40:34 [ 37] [ 12] [57905806741] +05:40:34 [ 39] [ 2] [00] +05:40:34 [ 70] [ 3] [001] +05:40:34 ============================================================================ +05:40:34 Sending to : +05:40:34 ============================================================================ +05:40:34 + + +waiting on router queue for slot.... +05:40:38 ============================================================================ +05:40:38 Slot Id : <219> +05:40:38 Transaction Type : REQUEST +05:40:38 Received From : +05:40:38 ============================================================================ +05:40:38 FNo. Len. Field Value +05:40:38 ============================================================================ +05:40:38 [ 1] [ 4] [0800] +05:40:38 [ 7] [ 10] [0319103946] +05:40:38 [ 11] [ 6] [154672] +05:40:38 [ 70] [ 3] [301] +05:40:38 ============================================================================ +05:40:38 + + +waiting on router queue for slot.... +05:40:38 Sending to : +05:40:38 ============================================================================ +05:40:38 ============================================================================ +05:40:38 Slot Id : <219> +05:40:38 Transaction Type : RESPONSE +05:40:38 Received From : +05:40:38 ============================================================================ +05:40:38 FNo. Len. Field Value +05:40:38 ============================================================================ +05:40:38 [ 1] [ 4] [0810] +05:40:38 [ 7] [ 10] [0319103946] +05:40:38 [ 11] [ 6] [154672] +05:40:38 [ 39] [ 2] [00] +05:40:38 [ 70] [ 3] [301] +05:40:38 ============================================================================ +05:40:38 Calculate Source COMM Id = 2 +05:40:38 ============================================================================ +05:40:38 + + +waiting on router queue for slot.... +05:40:49 ============================================================================ +05:40:49 Slot Id : <224> +05:40:49 Transaction Type : REQUEST +05:40:49 Received From : +05:40:49 ============================================================================ +05:40:49 FNo. Len. Field Value +05:40:49 ============================================================================ +05:40:49 [ 1] [ 4] [0800] +05:40:49 [ 7] [ 10] [0319103957] +05:40:49 [ 11] [ 6] [154673] +05:40:49 [ 70] [ 3] [301] +05:40:49 ============================================================================ +05:40:49 + + +waiting on router queue for slot.... +05:40:49 Sending to : +05:40:49 ============================================================================ +05:40:49 ============================================================================ +05:40:49 Slot Id : <224> +05:40:49 Transaction Type : RESPONSE +05:40:49 Received From : +05:40:49 ============================================================================ +05:40:49 FNo. Len. Field Value +05:40:49 ============================================================================ +05:40:49 [ 1] [ 4] [0810] +05:40:49 [ 7] [ 10] [0319103957] +05:40:49 [ 11] [ 6] [154673] +05:40:49 [ 39] [ 2] [00] +05:40:49 [ 70] [ 3] [301] +05:40:49 ============================================================================ +05:40:49 Calculate Source COMM Id = 2 +05:40:49 ============================================================================ +05:40:49 + + +waiting on router queue for slot.... +05:40:57 ============================================================================ +05:40:57 Slot Id : <287> +05:40:57 Transaction Type : REQUEST +05:40:57 Received From : +05:40:57 ============================================================================ +05:40:57 FNo. Len. Field Value +05:40:57 ============================================================================ +05:40:57 [ 1] [ 4] [0800] +05:40:57 [ 7] [ 10] [0320054045] +05:40:57 [ 11] [ 6] [049006] +05:40:57 [ 37] [ 12] [507905049006] +05:40:57 [ 70] [ 3] [ ] +05:40:57 ============================================================================ +05:40:57 + + +waiting on router queue for slot.... +05:40:57 Sending to : +05:40:57 ============================================================================ +05:40:57 ============================================================================ +05:40:57 Slot Id : <287> +05:40:57 Transaction Type : RESPONSE +05:40:57 Received From : +05:40:57 ============================================================================ +05:40:57 FNo. Len. Field Value +05:40:57 ============================================================================ +05:40:57 [ 1] [ 4] [0810] +05:40:57 [ 7] [ 10] [0320054045] +05:40:57 [ 11] [ 6] [049006] +05:40:57 [ 37] [ 12] [507905049006] +05:40:57 [ 39] [ 2] [91] +05:40:57 [ 70] [ 3] [ ] +05:40:57 ============================================================================ +05:40:57 Calculate Source COMM Id = 3 +05:40:57 ============================================================================ +05:40:57 + + +waiting on router queue for slot.... +05:41:01 ============================================================================ +05:41:01 Slot Id : <290> +05:41:01 Transaction Type : REQUEST +05:41:01 Received From : +05:41:01 ============================================================================ +05:41:01 FNo. Len. Field Value +05:41:01 ============================================================================ +05:41:01 [ 1] [ 4] [0800] +05:41:01 [ 7] [ 10] [0319104010] +05:41:01 [ 11] [ 6] [154674] +05:41:01 [ 70] [ 3] [301] +05:41:01 ============================================================================ +05:41:01 + + +waiting on router queue for slot.... +05:41:01 Sending to : +05:41:02 ============================================================================ +05:41:02 ============================================================================ +05:41:02 Slot Id : <290> +05:41:02 Transaction Type : RESPONSE +05:41:02 Received From : +05:41:02 ============================================================================ +05:41:02 FNo. Len. Field Value +05:41:02 ============================================================================ +05:41:02 [ 1] [ 4] [0810] +05:41:02 [ 7] [ 10] [0319104010] +05:41:02 [ 11] [ 6] [154674] +05:41:02 [ 39] [ 2] [00] +05:41:02 [ 70] [ 3] [301] +05:41:02 ============================================================================ +05:41:02 Calculate Source COMM Id = 2 +05:41:02 ============================================================================ +05:41:02 + + +waiting on router queue for slot.... +05:41:14 ============================================================================ +05:41:14 Slot Id : <288> +05:41:14 Transaction Type : REQUEST +05:41:14 Received From : +05:41:14 ============================================================================ +05:41:14 FNo. Len. Field Value +05:41:14 ============================================================================ +05:41:14 [ 1] [ 4] [0800] +05:41:14 [ 7] [ 10] [0320125303] +05:41:14 [ 11] [ 6] [055303] +05:41:14 [ 37] [ 12] [57905055303] +05:41:14 [ 70] [ 3] [301] +05:41:14 ============================================================================ +05:41:14 + + +waiting on router queue for slot.... +05:41:14 Sending to : +05:41:14 ============================================================================ +05:41:14 ============================================================================ +05:41:14 Slot Id : <288> +05:41:14 Transaction Type : RESPONSE +05:41:14 Received From : +05:41:14 ============================================================================ +05:41:14 FNo. Len. Field Value +05:41:14 ============================================================================ +05:41:14 [ 1] [ 4] [0810] +05:41:14 [ 7] [ 10] [0320125303] +05:41:14 [ 11] [ 6] [055303] +05:41:14 [ 37] [ 12] [579050553030] +05:41:14 [ 39] [ 2] [00] +05:41:14 [ 70] [ 3] [810] +05:41:14 ============================================================================ +05:41:14 Calculate Source COMM Id = 6 +05:41:14 ============================================================================ +05:41:14 + + +waiting on router queue for slot.... +05:41:16 ============================================================================ +05:41:16 Slot Id : <271> +05:41:16 Transaction Type : REQUEST +05:41:16 Received From : +05:41:16 ============================================================================ +05:41:16 FNo. Len. Field Value +05:41:16 ============================================================================ +05:41:16 [ 1] [ 4] [0800] +05:41:16 [ 7] [ 10] [0319104025] +05:41:16 [ 11] [ 6] [154675] +05:41:16 [ 70] [ 3] [301] +05:41:16 ============================================================================ +05:41:16 + + +waiting on router queue for slot.... +05:41:16 Sending to : +05:41:16 ============================================================================ +05:41:16 ============================================================================ +05:41:16 Slot Id : <271> +05:41:16 Transaction Type : RESPONSE +05:41:16 Received From : +05:41:16 ============================================================================ +05:41:16 FNo. Len. Field Value +05:41:16 ============================================================================ +05:41:16 [ 1] [ 4] [0810] +05:41:16 [ 7] [ 10] [0319104025] +05:41:16 [ 11] [ 6] [154675] +05:41:16 [ 39] [ 2] [00] +05:41:16 [ 70] [ 3] [301] +05:41:16 ============================================================================ +05:41:16 Calculate Source COMM Id = 2 +05:41:16 ============================================================================ +05:41:16 + + +waiting on router queue for slot.... +05:41:20 ============================================================================ +05:41:20 Slot Id : <277> +05:41:20 Transaction Type : REQUEST +05:41:20 Received From : +05:41:20 ============================================================================ +05:41:20 FNo. Len. Field Value +05:41:20 ============================================================================ +05:41:20 [ 1] [ 4] [0800] +05:41:20 [ 7] [ 10] [0319223912] +05:41:20 [ 11] [ 6] [022380] +05:41:20 [ 37] [ 12] [57905022380] +05:41:20 [ 70] [ 3] [301] +05:41:20 ============================================================================ +05:41:20 + + +waiting on router queue for slot.... +05:41:20 Sending to : +05:41:20 ============================================================================ +05:41:20 ============================================================================ +05:41:20 Slot Id : <277> +05:41:20 Transaction Type : RESPONSE +05:41:20 Received From : +05:41:20 ============================================================================ +05:41:20 FNo. Len. Field Value +05:41:20 ============================================================================ +05:41:20 [ 1] [ 4] [0810] +05:41:20 [ 7] [ 10] [0319223912] +05:41:20 [ 11] [ 6] [022380] +05:41:20 [ 37] [ 12] [579050223800] +05:41:20 [ 39] [ 2] [00] +05:41:20 [ 70] [ 3] [810] +05:41:20 ============================================================================ +05:41:20 Calculate Source COMM Id = 4 +05:41:20 ============================================================================ +05:41:20 + + +waiting on router queue for slot.... +05:41:27 ============================================================================ +05:41:27 Slot Id : <267> +05:41:27 Transaction Type : REQUEST +05:41:27 Received From : +05:41:27 ============================================================================ +05:41:27 FNo. Len. Field Value +05:41:27 ============================================================================ +05:41:27 [ 1] [ 4] [0800] +05:41:27 [ 7] [ 10] [0319104035] +05:41:27 [ 11] [ 6] [154676] +05:41:27 [ 70] [ 3] [301] +05:41:27 ============================================================================ +05:41:27 + + +waiting on router queue for slot.... +05:41:27 Sending to : +05:41:27 ============================================================================ +05:41:27 ============================================================================ +05:41:27 Slot Id : <267> +05:41:27 Transaction Type : RESPONSE +05:41:27 Received From : +05:41:27 ============================================================================ +05:41:27 FNo. Len. Field Value +05:41:27 ============================================================================ +05:41:27 [ 1] [ 4] [0810] +05:41:27 [ 7] [ 10] [0319104035] +05:41:27 [ 11] [ 6] [154676] +05:41:27 [ 39] [ 2] [00] +05:41:27 [ 70] [ 3] [301] +05:41:27 ============================================================================ +05:41:27 Calculate Source COMM Id = 2 +05:41:27 ============================================================================ +05:41:27 + + +waiting on router queue for slot.... +05:41:36 ============================================================================ +05:41:36 Slot Id : <217> +05:41:36 Transaction Type : REQUEST +05:41:36 Received From : +05:41:36 ============================================================================ +05:41:36 FNo. Len. Field Value +05:41:36 ============================================================================ +05:41:36 [ 1] [ 4] [0800] +05:41:36 [ 2] [ 5] [02531] +05:41:36 [ 3] [ 6] [579058] +05:41:36 [ 7] [ 10] [0319224136] +05:41:36 [ 11] [ 6] [806742] +05:41:36 [ 15] [ 10] [0319224136] +05:41:36 [ 37] [ 11] [57905806742] +05:41:36 [ 70] [ 3] [001] +05:41:36 ============================================================================ +05:41:36 + + +waiting on router queue for slot.... +05:41:36 ============================================================================ +05:41:36 Slot Id : <217> +05:41:36 Transaction Type : RESPONSE +05:41:36 Received From : +05:41:36 ============================================================================ +05:41:36 FNo. Len. Field Value +05:41:36 ============================================================================ +05:41:36 [ 1] [ 4] [0810] +05:41:36 [ 7] [ 10] [0319224136] +05:41:36 [ 11] [ 6] [806742] +05:41:36 [ 15] [ 4] [0319] +05:41:36 [ 37] [ 12] [57905806742] +05:41:36 [ 39] [ 2] [00] +05:41:36 [ 70] [ 3] [001] +05:41:36 ============================================================================ +05:41:36 Sending to : +05:41:36 ============================================================================ +05:41:36 + + +waiting on router queue for slot.... +05:41:37 ============================================================================ +05:41:37 Slot Id : <236> +05:41:37 Transaction Type : REQUEST +05:41:37 Received From : +05:41:37 ============================================================================ +05:41:37 FNo. Len. Field Value +05:41:37 ============================================================================ +05:41:37 [ 1] [ 4] [0800] +05:41:37 [ 7] [ 10] [0319104046] +05:41:37 [ 11] [ 6] [154677] +05:41:37 [ 70] [ 3] [301] +05:41:37 ============================================================================ +05:41:37 + + +waiting on router queue for slot.... +05:41:37 Sending to : +05:41:37 ============================================================================ +05:41:37 ============================================================================ +05:41:37 Slot Id : <236> +05:41:37 Transaction Type : RESPONSE +05:41:37 Received From : +05:41:37 ============================================================================ +05:41:37 FNo. Len. Field Value +05:41:37 ============================================================================ +05:41:37 [ 1] [ 4] [0810] +05:41:37 [ 7] [ 10] [0319104046] +05:41:37 [ 11] [ 6] [154677] +05:41:37 [ 39] [ 2] [00] +05:41:37 [ 70] [ 3] [301] +05:41:37 ============================================================================ +05:41:37 Calculate Source COMM Id = 2 +05:41:37 ============================================================================ +05:41:37 + + +waiting on router queue for slot.... +05:41:53 ============================================================================ +05:41:53 Slot Id : <293> +05:41:53 Transaction Type : REQUEST +05:41:53 Received From : +05:41:53 ============================================================================ +05:41:53 FNo. Len. Field Value +05:41:53 ============================================================================ +05:41:53 [ 1] [ 4] [0800] +05:41:53 [ 7] [ 10] [0319104102] +05:41:53 [ 11] [ 6] [154678] +05:41:53 [ 70] [ 3] [301] +05:41:53 ============================================================================ +05:41:53 + + +waiting on router queue for slot.... +05:41:53 Sending to : +05:41:53 ============================================================================ +05:41:53 ============================================================================ +05:41:53 Slot Id : <293> +05:41:53 Transaction Type : RESPONSE +05:41:53 Received From : +05:41:53 ============================================================================ +05:41:53 FNo. Len. Field Value +05:41:53 ============================================================================ +05:41:53 [ 1] [ 4] [0810] +05:41:53 [ 7] [ 10] [0319104102] +05:41:53 [ 11] [ 6] [154678] +05:41:53 [ 39] [ 2] [00] +05:41:53 [ 70] [ 3] [301] +05:41:53 ============================================================================ +05:41:53 Calculate Source COMM Id = 2 +05:41:53 ============================================================================ +05:41:53 + + +waiting on router queue for slot.... +05:42:04 ============================================================================ +05:42:04 Slot Id : <278> +05:42:04 Transaction Type : REQUEST +05:42:04 Received From : +05:42:04 ============================================================================ +05:42:04 FNo. Len. Field Value +05:42:04 ============================================================================ +05:42:04 [ 1] [ 4] [0800] +05:42:04 [ 7] [ 10] [0319104113] +05:42:04 [ 11] [ 6] [154679] +05:42:04 [ 70] [ 3] [301] +05:42:04 ============================================================================ +05:42:04 + + +waiting on router queue for slot.... +05:42:04 Sending to : +05:42:04 ============================================================================ +05:42:04 ============================================================================ +05:42:04 Slot Id : <278> +05:42:04 Transaction Type : RESPONSE +05:42:04 Received From : +05:42:04 ============================================================================ +05:42:04 FNo. Len. Field Value +05:42:04 ============================================================================ +05:42:04 [ 1] [ 4] [0810] +05:42:04 [ 7] [ 10] [0319104113] +05:42:04 [ 11] [ 6] [154679] +05:42:04 [ 39] [ 2] [00] +05:42:04 [ 70] [ 3] [301] +05:42:04 ============================================================================ +05:42:04 Calculate Source COMM Id = 2 +05:42:04 ============================================================================ +05:42:04 + + +waiting on router queue for slot.... +05:42:15 ============================================================================ +05:42:15 Slot Id : <294> +05:42:15 Transaction Type : REQUEST +05:42:15 Received From : +05:42:15 ============================================================================ +05:42:15 FNo. Len. Field Value +05:42:15 ============================================================================ +05:42:15 [ 1] [ 4] [0800] +05:42:15 [ 7] [ 10] [0319104123] +05:42:15 [ 11] [ 6] [154680] +05:42:15 [ 70] [ 3] [301] +05:42:15 ============================================================================ +05:42:15 + + +waiting on router queue for slot.... +05:42:15 Sending to : +05:42:15 ============================================================================ +05:42:15 ============================================================================ +05:42:15 Slot Id : <294> +05:42:15 Transaction Type : RESPONSE +05:42:15 Received From : +05:42:15 ============================================================================ +05:42:15 FNo. Len. Field Value +05:42:15 ============================================================================ +05:42:15 [ 1] [ 4] [0810] +05:42:15 [ 7] [ 10] [0319104123] +05:42:15 [ 11] [ 6] [154680] +05:42:15 [ 39] [ 2] [00] +05:42:15 [ 70] [ 3] [301] +05:42:15 ============================================================================ +05:42:15 Calculate Source COMM Id = 2 +05:42:15 ============================================================================ +05:42:15 + + +waiting on router queue for slot.... +05:42:19 ============================================================================ +05:42:19 Slot Id : <298> +05:42:19 Transaction Type : REQUEST +05:42:19 Received From : +05:42:19 ============================================================================ +05:42:19 FNo. Len. Field Value +05:42:19 ============================================================================ +05:42:19 [ 1] [ 4] [0800] +05:42:19 [ 7] [ 10] [0320125408] +05:42:19 [ 11] [ 6] [055408] +05:42:19 [ 37] [ 12] [57905055408] +05:42:19 [ 70] [ 3] [301] +05:42:19 ============================================================================ +05:42:19 + + +waiting on router queue for slot.... +05:42:19 Sending to : +05:42:19 ============================================================================ +05:42:19 ============================================================================ +05:42:19 Slot Id : <298> +05:42:19 Transaction Type : RESPONSE +05:42:19 Received From : +05:42:19 ============================================================================ +05:42:19 FNo. Len. Field Value +05:42:19 ============================================================================ +05:42:19 [ 1] [ 4] [0810] +05:42:19 [ 7] [ 10] [0320125408] +05:42:19 [ 11] [ 6] [055408] +05:42:19 [ 37] [ 12] [579050554080] +05:42:19 [ 39] [ 2] [00] +05:42:19 [ 70] [ 3] [810] +05:42:19 ============================================================================ +05:42:19 Calculate Source COMM Id = 6 +05:42:19 ============================================================================ +05:42:19 + + +waiting on router queue for slot.... +05:42:32 ============================================================================ +05:42:32 Slot Id : <257> +05:42:32 Transaction Type : REQUEST +05:42:32 Received From : +05:42:32 ============================================================================ +05:42:32 FNo. Len. Field Value +05:42:32 ============================================================================ +05:42:32 [ 1] [ 4] [0800] +05:42:32 [ 7] [ 10] [0319104140] +05:42:32 [ 11] [ 6] [154681] +05:42:32 [ 70] [ 3] [301] +05:42:32 ============================================================================ +05:42:32 + + +waiting on router queue for slot.... +05:42:32 Sending to : +05:42:32 ============================================================================ +05:42:32 ============================================================================ +05:42:32 Slot Id : <257> +05:42:32 Transaction Type : RESPONSE +05:42:32 Received From : +05:42:32 ============================================================================ +05:42:32 FNo. Len. Field Value +05:42:32 ============================================================================ +05:42:32 [ 1] [ 4] [0810] +05:42:32 [ 7] [ 10] [0319104140] +05:42:32 [ 11] [ 6] [154681] +05:42:32 [ 39] [ 2] [00] +05:42:32 [ 70] [ 3] [301] +05:42:32 ============================================================================ +05:42:32 Calculate Source COMM Id = 2 +05:42:32 ============================================================================ +05:42:32 + + +waiting on router queue for slot.... +05:42:38 ============================================================================ +05:42:38 Slot Id : <303> +05:42:38 Transaction Type : REQUEST +05:42:38 Received From : +05:42:38 ============================================================================ +05:42:38 FNo. Len. Field Value +05:42:38 ============================================================================ +05:42:38 [ 1] [ 4] [0800] +05:42:38 [ 2] [ 5] [02531] +05:42:38 [ 3] [ 6] [579058] +05:42:38 [ 7] [ 10] [0319224238] +05:42:38 [ 11] [ 6] [806743] +05:42:38 [ 15] [ 10] [0319224238] +05:42:38 [ 37] [ 11] [57905806743] +05:42:38 [ 70] [ 3] [001] +05:42:38 ============================================================================ +05:42:38 + + +waiting on router queue for slot.... +05:42:38 ============================================================================ +05:42:38 Slot Id : <303> +05:42:38 Transaction Type : RESPONSE +05:42:38 Received From : +05:42:38 ============================================================================ +05:42:38 FNo. Len. Field Value +05:42:38 ============================================================================ +05:42:38 [ 1] [ 4] [0810] +05:42:38 [ 7] [ 10] [0319224238] +05:42:38 [ 11] [ 6] [806743] +05:42:38 [ 15] [ 4] [0319] +05:42:38 [ 37] [ 12] [57905806743] +05:42:38 [ 39] [ 2] [00] +05:42:38 [ 70] [ 3] [001] +05:42:38 ============================================================================ +05:42:38 Sending to : +05:42:38 ============================================================================ +05:42:38 + + +waiting on router queue for slot.... +05:42:47 ============================================================================ +05:42:47 Slot Id : <299> +05:42:47 Transaction Type : REQUEST +05:42:47 Received From : +05:42:47 ============================================================================ +05:42:47 FNo. Len. Field Value +05:42:47 ============================================================================ +05:42:47 [ 1] [ 4] [0800] +05:42:47 [ 7] [ 10] [0319104156] +05:42:47 [ 11] [ 6] [154682] +05:42:47 [ 70] [ 3] [301] +05:42:47 ============================================================================ +05:42:47 + + +waiting on router queue for slot.... +05:42:47 Sending to : +05:42:47 ============================================================================ +05:42:47 ============================================================================ +05:42:47 Slot Id : <299> +05:42:47 Transaction Type : RESPONSE +05:42:47 Received From : +05:42:47 ============================================================================ +05:42:47 FNo. Len. Field Value +05:42:47 ============================================================================ +05:42:47 [ 1] [ 4] [0810] +05:42:47 [ 7] [ 10] [0319104156] +05:42:47 [ 11] [ 6] [154682] +05:42:47 [ 39] [ 2] [00] +05:42:47 [ 70] [ 3] [301] +05:42:47 ============================================================================ +05:42:47 Calculate Source COMM Id = 2 +05:42:47 ============================================================================ +05:42:47 + + +waiting on router queue for slot.... +05:42:57 ============================================================================ +05:42:57 Slot Id : <302> +05:42:57 Transaction Type : REQUEST +05:42:57 Received From : +05:42:57 ============================================================================ +05:42:57 FNo. Len. Field Value +05:42:57 ============================================================================ +05:42:57 [ 1] [ 4] [0800] +05:42:57 [ 7] [ 10] [0319104206] +05:42:57 [ 11] [ 6] [154683] +05:42:57 [ 70] [ 3] [301] +05:42:57 ============================================================================ +05:42:57 + + +waiting on router queue for slot.... +05:42:57 Sending to : +05:42:57 ============================================================================ +05:42:57 ============================================================================ +05:42:57 Slot Id : <302> +05:42:57 Transaction Type : RESPONSE +05:42:57 Received From : +05:42:57 ============================================================================ +05:42:57 FNo. Len. Field Value +05:42:57 ============================================================================ +05:42:57 [ 1] [ 4] [0810] +05:42:57 [ 7] [ 10] [0319104206] +05:42:57 [ 11] [ 6] [154683] +05:42:57 [ 39] [ 2] [00] +05:42:57 [ 70] [ 3] [301] +05:42:57 ============================================================================ +05:42:57 Calculate Source COMM Id = 2 +05:42:57 ============================================================================ +05:42:57 + + +waiting on router queue for slot.... +05:43:10 ============================================================================ +05:43:10 Slot Id : <292> +05:43:10 Transaction Type : REQUEST +05:43:10 Received From : +05:43:10 ============================================================================ +05:43:10 FNo. Len. Field Value +05:43:10 ============================================================================ +05:43:10 [ 1] [ 4] [0800] +05:43:10 [ 7] [ 10] [0319104217] +05:43:10 [ 11] [ 6] [154684] +05:43:10 [ 70] [ 3] [301] +05:43:10 ============================================================================ +05:43:10 + + +waiting on router queue for slot.... +05:43:10 Sending to : +05:43:10 ============================================================================ +05:43:10 ============================================================================ +05:43:10 Slot Id : <292> +05:43:10 Transaction Type : RESPONSE +05:43:10 Received From : +05:43:10 ============================================================================ +05:43:10 FNo. Len. Field Value +05:43:10 ============================================================================ +05:43:10 [ 1] [ 4] [0810] +05:43:10 [ 7] [ 10] [0319104217] +05:43:10 [ 11] [ 6] [154684] +05:43:10 [ 39] [ 2] [00] +05:43:10 [ 70] [ 3] [301] +05:43:10 ============================================================================ +05:43:10 Calculate Source COMM Id = 2 +05:43:10 ============================================================================ +05:43:10 + + +waiting on router queue for slot.... +05:43:24 ============================================================================ +05:43:24 Slot Id : <300> +05:43:24 Transaction Type : REQUEST +05:43:24 Received From : +05:43:24 ============================================================================ +05:43:24 FNo. Len. Field Value +05:43:24 ============================================================================ +05:43:24 [ 1] [ 4] [0800] +05:43:24 [ 7] [ 10] [0319104232] +05:43:24 [ 11] [ 6] [154685] +05:43:24 [ 70] [ 3] [301] +05:43:24 ============================================================================ +05:43:24 + + +waiting on router queue for slot.... +05:43:24 Sending to : +05:43:24 ============================================================================ +05:43:24 ============================================================================ +05:43:24 Slot Id : <300> +05:43:24 Transaction Type : RESPONSE +05:43:24 Received From : +05:43:24 ============================================================================ +05:43:24 FNo. Len. Field Value +05:43:24 ============================================================================ +05:43:24 [ 1] [ 4] [0810] +05:43:24 [ 7] [ 10] [0319104232] +05:43:24 [ 11] [ 6] [154685] +05:43:24 [ 39] [ 2] [00] +05:43:24 [ 70] [ 3] [301] +05:43:24 ============================================================================ +05:43:24 Calculate Source COMM Id = 2 +05:43:24 ============================================================================ +05:43:24 + + +waiting on router queue for slot.... +05:43:24 ============================================================================ +05:43:24 Slot Id : <281> +05:43:24 Transaction Type : REQUEST +05:43:24 Received From : +05:43:24 ============================================================================ +05:43:24 FNo. Len. Field Value +05:43:24 ============================================================================ +05:43:24 [ 1] [ 4] [0800] +05:43:24 [ 7] [ 10] [0320125513] +05:43:24 [ 11] [ 6] [055513] +05:43:24 [ 37] [ 12] [57905055513] +05:43:24 [ 70] [ 3] [301] +05:43:24 ============================================================================ +05:43:24 + + +waiting on router queue for slot.... +05:43:24 Sending to : +05:43:24 ============================================================================ +05:43:24 ============================================================================ +05:43:24 Slot Id : <281> +05:43:24 Transaction Type : RESPONSE +05:43:24 Received From : +05:43:24 ============================================================================ +05:43:24 FNo. Len. Field Value +05:43:24 ============================================================================ +05:43:24 [ 1] [ 4] [0810] +05:43:24 [ 7] [ 10] [0320125513] +05:43:24 [ 11] [ 6] [055513] +05:43:24 [ 37] [ 12] [579050555130] +05:43:24 [ 39] [ 2] [00] +05:43:24 [ 70] [ 3] [810] +05:43:24 ============================================================================ +05:43:24 Calculate Source COMM Id = 6 +05:43:24 ============================================================================ +05:43:24 + + +waiting on router queue for slot.... +05:43:34 ============================================================================ +05:43:34 Slot Id : <295> +05:43:34 Transaction Type : REQUEST +05:43:34 Received From : +05:43:34 ============================================================================ +05:43:34 FNo. Len. Field Value +05:43:34 ============================================================================ +05:43:34 [ 1] [ 4] [0800] +05:43:34 [ 7] [ 10] [0319104243] +05:43:34 [ 11] [ 6] [154686] +05:43:34 [ 70] [ 3] [301] +05:43:34 ============================================================================ +05:43:34 + + +waiting on router queue for slot.... +05:43:34 Sending to : +05:43:34 ============================================================================ +05:43:34 ============================================================================ +05:43:34 Slot Id : <295> +05:43:34 Transaction Type : RESPONSE +05:43:34 Received From : +05:43:34 ============================================================================ +05:43:34 FNo. Len. Field Value +05:43:34 ============================================================================ +05:43:34 [ 1] [ 4] [0810] +05:43:34 [ 7] [ 10] [0319104243] +05:43:34 [ 11] [ 6] [154686] +05:43:34 [ 39] [ 2] [00] +05:43:34 [ 70] [ 3] [301] +05:43:34 ============================================================================ +05:43:34 Calculate Source COMM Id = 2 +05:43:34 ============================================================================ +05:43:34 + + +waiting on router queue for slot.... +05:43:40 ============================================================================ +05:43:40 Slot Id : <308> +05:43:40 Transaction Type : REQUEST +05:43:40 Received From : +05:43:40 ============================================================================ +05:43:40 FNo. Len. Field Value +05:43:40 ============================================================================ +05:43:40 [ 1] [ 4] [0800] +05:43:40 [ 2] [ 5] [02531] +05:43:40 [ 3] [ 6] [579058] +05:43:40 [ 7] [ 10] [0319224340] +05:43:40 [ 11] [ 6] [806744] +05:43:40 [ 15] [ 10] [0319224340] +05:43:40 [ 37] [ 11] [57905806744] +05:43:40 [ 70] [ 3] [001] +05:43:40 ============================================================================ +05:43:40 + + +waiting on router queue for slot.... +05:43:40 ============================================================================ +05:43:40 Slot Id : <308> +05:43:40 Transaction Type : RESPONSE +05:43:40 Received From : +05:43:40 ============================================================================ +05:43:40 FNo. Len. Field Value +05:43:40 ============================================================================ +05:43:40 [ 1] [ 4] [0810] +05:43:40 [ 7] [ 10] [0319224340] +05:43:40 [ 11] [ 6] [806744] +05:43:40 [ 15] [ 4] [0319] +05:43:40 [ 37] [ 12] [57905806744] +05:43:40 [ 39] [ 2] [00] +05:43:40 [ 70] [ 3] [001] +05:43:40 ============================================================================ +05:43:40 Sending to : +05:43:40 ============================================================================ +05:43:40 + + +waiting on router queue for slot.... +05:43:46 ============================================================================ +05:43:46 Slot Id : <262> +05:43:46 Transaction Type : REQUEST +05:43:46 Received From : +05:43:46 ============================================================================ +05:43:46 FNo. Len. Field Value +05:43:46 ============================================================================ +05:43:46 [ 1] [ 4] [0800] +05:43:46 [ 7] [ 10] [0319104254] +05:43:46 [ 11] [ 6] [154687] +05:43:46 [ 70] [ 3] [301] +05:43:46 ============================================================================ +05:43:46 + + +waiting on router queue for slot.... +05:43:46 Sending to : +05:43:46 ============================================================================ +05:43:46 ============================================================================ +05:43:46 Slot Id : <262> +05:43:46 Transaction Type : RESPONSE +05:43:46 Received From : +05:43:46 ============================================================================ +05:43:46 FNo. Len. Field Value +05:43:46 ============================================================================ +05:43:46 [ 1] [ 4] [0810] +05:43:46 [ 7] [ 10] [0319104254] +05:43:46 [ 11] [ 6] [154687] +05:43:46 [ 39] [ 2] [00] +05:43:46 [ 70] [ 3] [301] +05:43:46 ============================================================================ +05:43:46 Calculate Source COMM Id = 2 +05:43:46 ============================================================================ +05:43:46 + + +waiting on router queue for slot.... +05:43:56 ============================================================================ +05:43:56 Slot Id : <296> +05:43:56 Transaction Type : REQUEST +05:43:56 Received From : +05:43:56 ============================================================================ +05:43:56 FNo. Len. Field Value +05:43:56 ============================================================================ +05:43:56 [ 1] [ 4] [0800] +05:43:56 [ 7] [ 10] [0319104305] +05:43:56 [ 11] [ 6] [154688] +05:43:56 [ 70] [ 3] [301] +05:43:56 ============================================================================ +05:43:56 + + +waiting on router queue for slot.... +05:43:56 Sending to : +05:43:56 ============================================================================ +05:43:56 ============================================================================ +05:43:56 Slot Id : <296> +05:43:56 Transaction Type : RESPONSE +05:43:56 Received From : +05:43:56 ============================================================================ +05:43:56 FNo. Len. Field Value +05:43:56 ============================================================================ +05:43:56 [ 1] [ 4] [0810] +05:43:56 [ 7] [ 10] [0319104305] +05:43:56 [ 11] [ 6] [154688] +05:43:56 [ 39] [ 2] [00] +05:43:56 [ 70] [ 3] [301] +05:43:56 ============================================================================ +05:43:56 Calculate Source COMM Id = 2 +05:43:56 ============================================================================ +05:43:56 + + +waiting on router queue for slot.... +05:44:06 ============================================================================ +05:44:06 Slot Id : <283> +05:44:06 Transaction Type : REQUEST +05:44:06 Received From : +05:44:06 ============================================================================ +05:44:06 FNo. Len. Field Value +05:44:06 ============================================================================ +05:44:06 [ 1] [ 4] [0800] +05:44:06 [ 7] [ 10] [0319104315] +05:44:06 [ 11] [ 6] [154689] +05:44:06 [ 70] [ 3] [301] +05:44:06 ============================================================================ +05:44:06 + + +waiting on router queue for slot.... +05:44:06 Sending to : +05:44:06 ============================================================================ +05:44:06 ============================================================================ +05:44:06 Slot Id : <283> +05:44:06 Transaction Type : RESPONSE +05:44:06 Received From : +05:44:06 ============================================================================ +05:44:06 FNo. Len. Field Value +05:44:06 ============================================================================ +05:44:06 [ 1] [ 4] [0810] +05:44:06 [ 7] [ 10] [0319104315] +05:44:06 [ 11] [ 6] [154689] +05:44:06 [ 39] [ 2] [00] +05:44:06 [ 70] [ 3] [301] +05:44:06 ============================================================================ +05:44:06 Calculate Source COMM Id = 2 +05:44:06 ============================================================================ +05:44:06 + + +waiting on router queue for slot.... +05:44:17 ============================================================================ +05:44:17 Slot Id : <311> +05:44:17 Transaction Type : REQUEST +05:44:17 Received From : +05:44:17 ============================================================================ +05:44:17 FNo. Len. Field Value +05:44:17 ============================================================================ +05:44:17 [ 1] [ 4] [0800] +05:44:17 [ 7] [ 10] [0319104325] +05:44:17 [ 11] [ 6] [154690] +05:44:17 [ 70] [ 3] [301] +05:44:17 ============================================================================ +05:44:17 + + +waiting on router queue for slot.... +05:44:17 Sending to : +05:44:17 ============================================================================ +05:44:17 ============================================================================ +05:44:17 Slot Id : <311> +05:44:17 Transaction Type : RESPONSE +05:44:17 Received From : +05:44:17 ============================================================================ +05:44:17 FNo. Len. Field Value +05:44:17 ============================================================================ +05:44:17 [ 1] [ 4] [0810] +05:44:17 [ 7] [ 10] [0319104325] +05:44:17 [ 11] [ 6] [154690] +05:44:17 [ 39] [ 2] [00] +05:44:17 [ 70] [ 3] [301] +05:44:17 ============================================================================ +05:44:17 Calculate Source COMM Id = 2 +05:44:17 ============================================================================ +05:44:17 + + +waiting on router queue for slot.... +05:44:29 ============================================================================ +05:44:29 Slot Id : <312> +05:44:29 Transaction Type : REQUEST +05:44:29 Received From : +05:44:29 ============================================================================ +05:44:29 FNo. Len. Field Value +05:44:29 ============================================================================ +05:44:29 [ 1] [ 4] [0800] +05:44:29 [ 7] [ 10] [0320125618] +05:44:29 [ 11] [ 6] [055618] +05:44:29 [ 37] [ 12] [57905055618] +05:44:29 [ 70] [ 3] [301] +05:44:29 ============================================================================ +05:44:29 + + +waiting on router queue for slot.... +05:44:29 Sending to : +05:44:29 ============================================================================ +05:44:29 ============================================================================ +05:44:29 Slot Id : <312> +05:44:29 Transaction Type : RESPONSE +05:44:29 Received From : +05:44:29 ============================================================================ +05:44:29 FNo. Len. Field Value +05:44:29 ============================================================================ +05:44:29 [ 1] [ 4] [0810] +05:44:29 [ 7] [ 10] [0320125618] +05:44:29 [ 11] [ 6] [055618] +05:44:29 [ 37] [ 12] [579050556180] +05:44:29 [ 39] [ 2] [00] +05:44:29 [ 70] [ 3] [810] +05:44:29 ============================================================================ +05:44:29 Calculate Source COMM Id = 6 +05:44:29 ============================================================================ +05:44:29 + + +waiting on router queue for slot.... +05:44:33 ============================================================================ +05:44:33 Slot Id : <316> +05:44:33 Transaction Type : REQUEST +05:44:33 Received From : +05:44:33 ============================================================================ +05:44:33 FNo. Len. Field Value +05:44:33 ============================================================================ +05:44:33 [ 1] [ 4] [0800] +05:44:33 [ 7] [ 10] [0319104341] +05:44:33 [ 11] [ 6] [154691] +05:44:33 [ 70] [ 3] [301] +05:44:33 ============================================================================ +05:44:33 + + +waiting on router queue for slot.... +05:44:33 Sending to : +05:44:33 ============================================================================ +05:44:33 ============================================================================ +05:44:33 Slot Id : <316> +05:44:33 Transaction Type : RESPONSE +05:44:33 Received From : +05:44:33 ============================================================================ +05:44:33 FNo. Len. Field Value +05:44:33 ============================================================================ +05:44:33 [ 1] [ 4] [0810] +05:44:33 [ 7] [ 10] [0319104341] +05:44:33 [ 11] [ 6] [154691] +05:44:33 [ 39] [ 2] [00] +05:44:33 [ 70] [ 3] [301] +05:44:33 ============================================================================ +05:44:33 Calculate Source COMM Id = 2 +05:44:33 ============================================================================ +05:44:33 + + +waiting on router queue for slot.... +05:44:42 ============================================================================ +05:44:42 Slot Id : <306> +05:44:42 Transaction Type : REQUEST +05:44:42 Received From : +05:44:42 ============================================================================ +05:44:42 FNo. Len. Field Value +05:44:42 ============================================================================ +05:44:42 [ 1] [ 4] [0800] +05:44:42 [ 2] [ 5] [02531] +05:44:42 [ 3] [ 6] [579058] +05:44:42 [ 7] [ 10] [0319224442] +05:44:42 [ 11] [ 6] [806745] +05:44:42 [ 15] [ 10] [0319224442] +05:44:42 [ 37] [ 11] [57905806745] +05:44:42 [ 70] [ 3] [001] +05:44:42 ============================================================================ +05:44:42 + + +waiting on router queue for slot.... +05:44:42 ============================================================================ +05:44:42 Slot Id : <306> +05:44:42 Transaction Type : RESPONSE +05:44:42 Received From : +05:44:42 ============================================================================ +05:44:42 FNo. Len. Field Value +05:44:42 ============================================================================ +05:44:42 [ 1] [ 4] [0810] +05:44:42 [ 7] [ 10] [0319224442] +05:44:42 [ 11] [ 6] [806745] +05:44:42 [ 15] [ 4] [0319] +05:44:42 [ 37] [ 12] [57905806745] +05:44:42 [ 39] [ 2] [00] +05:44:42 [ 70] [ 3] [001] +05:44:42 ============================================================================ +05:44:42 Sending to : +05:44:42 ============================================================================ +05:44:42 + + +waiting on router queue for slot.... +05:44:49 ============================================================================ +05:44:49 Slot Id : <286> +05:44:49 Transaction Type : REQUEST +05:44:49 Received From : +05:44:49 ============================================================================ +05:44:49 FNo. Len. Field Value +05:44:49 ============================================================================ +05:44:49 [ 1] [ 4] [0800] +05:44:49 [ 7] [ 10] [0319104357] +05:44:49 [ 11] [ 6] [154692] +05:44:49 [ 70] [ 3] [301] +05:44:49 ============================================================================ +05:44:49 + + +waiting on router queue for slot.... +05:44:49 Sending to : +05:44:49 ============================================================================ +05:44:49 ============================================================================ +05:44:49 Slot Id : <286> +05:44:49 Transaction Type : RESPONSE +05:44:49 Received From : +05:44:49 ============================================================================ +05:44:49 FNo. Len. Field Value +05:44:49 ============================================================================ +05:44:49 [ 1] [ 4] [0810] +05:44:49 [ 7] [ 10] [0319104357] +05:44:49 [ 11] [ 6] [154692] +05:44:49 [ 39] [ 2] [00] +05:44:49 [ 70] [ 3] [301] +05:44:49 ============================================================================ +05:44:49 Calculate Source COMM Id = 2 +05:44:49 ============================================================================ +05:44:49 + + +waiting on router queue for slot.... +05:44:54 ============================================================================ +05:44:54 Slot Id : <307> +05:44:54 Transaction Type : REQUEST +05:44:54 Received From : +05:44:54 ============================================================================ +05:44:54 FNo. Len. Field Value +05:44:54 ============================================================================ +05:44:54 [ 1] [ 4] [0800] +05:44:54 [ 7] [ 10] [0319225242] +05:44:54 [ 11] [ 6] [079351] +05:44:54 [ 37] [ 12] [57905079351] +05:44:54 [ 70] [ 3] [301] +05:44:54 ============================================================================ +05:44:54 + + +waiting on router queue for slot.... +05:44:54 Sending to : +05:44:54 ============================================================================ +05:44:54 ============================================================================ +05:44:54 Slot Id : <307> +05:44:54 Transaction Type : RESPONSE +05:44:54 Received From : +05:44:54 ============================================================================ +05:44:54 FNo. Len. Field Value +05:44:54 ============================================================================ +05:44:54 [ 1] [ 4] [0810] +05:44:54 [ 7] [ 10] [0319225242] +05:44:54 [ 11] [ 6] [079351] +05:44:54 [ 37] [ 12] [579050793510] +05:44:54 [ 39] [ 2] [00] +05:44:54 [ 70] [ 3] [810] +05:44:54 ============================================================================ +05:44:54 Calculate Source COMM Id = 1 +05:44:54 ============================================================================ +05:44:54 + + +waiting on router queue for slot.... +05:45:05 ============================================================================ +05:45:05 Slot Id : <317> +05:45:05 Transaction Type : REQUEST +05:45:05 Received From : +05:45:05 ============================================================================ +05:45:05 FNo. Len. Field Value +05:45:05 ============================================================================ +05:45:05 [ 1] [ 4] [0800] +05:45:05 [ 7] [ 10] [0319104414] +05:45:05 [ 11] [ 6] [154693] +05:45:05 [ 70] [ 3] [301] +05:45:05 ============================================================================ +05:45:05 + + +waiting on router queue for slot.... +05:45:05 Sending to : +05:45:05 ============================================================================ +05:45:05 ============================================================================ +05:45:05 Slot Id : <317> +05:45:05 Transaction Type : RESPONSE +05:45:05 Received From : +05:45:05 ============================================================================ +05:45:05 FNo. Len. Field Value +05:45:05 ============================================================================ +05:45:05 [ 1] [ 4] [0810] +05:45:05 [ 7] [ 10] [0319104414] +05:45:05 [ 11] [ 6] [154693] +05:45:05 [ 39] [ 2] [00] +05:45:05 [ 70] [ 3] [301] +05:45:05 ============================================================================ +05:45:05 Calculate Source COMM Id = 2 +05:45:05 ============================================================================ +05:45:05 + + +waiting on router queue for slot.... +05:45:16 ============================================================================ +05:45:16 Slot Id : <310> +05:45:16 Transaction Type : REQUEST +05:45:16 Received From : +05:45:16 ============================================================================ +05:45:16 FNo. Len. Field Value +05:45:16 ============================================================================ +05:45:16 [ 1] [ 4] [0800] +05:45:16 [ 7] [ 10] [0319104424] +05:45:16 [ 11] [ 6] [154694] +05:45:16 [ 70] [ 3] [301] +05:45:16 ============================================================================ +05:45:16 + + +waiting on router queue for slot.... +05:45:16 Sending to : +05:45:16 ============================================================================ +05:45:16 ============================================================================ +05:45:16 Slot Id : <310> +05:45:16 Transaction Type : RESPONSE +05:45:16 Received From : +05:45:16 ============================================================================ +05:45:16 FNo. Len. Field Value +05:45:16 ============================================================================ +05:45:16 [ 1] [ 4] [0810] +05:45:16 [ 7] [ 10] [0319104424] +05:45:16 [ 11] [ 6] [154694] +05:45:16 [ 39] [ 2] [00] +05:45:16 [ 70] [ 3] [301] +05:45:16 ============================================================================ +05:45:16 Calculate Source COMM Id = 2 +05:45:16 ============================================================================ +05:45:16 + + +waiting on router queue for slot.... +05:45:31 ============================================================================ +05:45:31 Slot Id : <318> +05:45:31 Transaction Type : REQUEST +05:45:31 Received From : +05:45:31 ============================================================================ +05:45:31 FNo. Len. Field Value +05:45:31 ============================================================================ +05:45:31 [ 1] [ 4] [0800] +05:45:31 [ 7] [ 10] [0319104440] +05:45:31 [ 11] [ 6] [154695] +05:45:31 [ 70] [ 3] [301] +05:45:31 ============================================================================ +05:45:31 + + +waiting on router queue for slot.... +05:45:31 Sending to : +05:45:31 ============================================================================ +05:45:31 ============================================================================ +05:45:31 Slot Id : <318> +05:45:31 Transaction Type : RESPONSE +05:45:31 Received From : +05:45:31 ============================================================================ +05:45:31 FNo. Len. Field Value +05:45:31 ============================================================================ +05:45:31 [ 1] [ 4] [0810] +05:45:31 [ 7] [ 10] [0319104440] +05:45:31 [ 11] [ 6] [154695] +05:45:31 [ 39] [ 2] [00] +05:45:31 [ 70] [ 3] [301] +05:45:31 ============================================================================ +05:45:31 Calculate Source COMM Id = 2 +05:45:31 ============================================================================ +05:45:31 + + +waiting on router queue for slot.... +05:45:34 ============================================================================ +05:45:34 Slot Id : <289> +05:45:34 Transaction Type : REQUEST +05:45:34 Received From : +05:45:34 ============================================================================ +05:45:34 FNo. Len. Field Value +05:45:34 ============================================================================ +05:45:34 [ 1] [ 4] [0800] +05:45:34 [ 7] [ 10] [0320125723] +05:45:34 [ 11] [ 6] [055723] +05:45:34 [ 37] [ 12] [57905055723] +05:45:34 [ 70] [ 3] [301] +05:45:34 ============================================================================ +05:45:34 + + +waiting on router queue for slot.... +05:45:34 Sending to : +05:45:34 ============================================================================ +05:45:34 ============================================================================ +05:45:34 Slot Id : <289> +05:45:34 Transaction Type : RESPONSE +05:45:34 Received From : +05:45:34 ============================================================================ +05:45:34 FNo. Len. Field Value +05:45:34 ============================================================================ +05:45:34 [ 1] [ 4] [0810] +05:45:34 [ 7] [ 10] [0320125723] +05:45:34 [ 11] [ 6] [055723] +05:45:34 [ 37] [ 12] [579050557230] +05:45:34 [ 39] [ 2] [00] +05:45:34 [ 70] [ 3] [810] +05:45:34 ============================================================================ +05:45:34 Calculate Source COMM Id = 6 +05:45:34 ============================================================================ +05:45:34 + + +waiting on router queue for slot.... +05:45:42 ============================================================================ +05:45:42 Slot Id : <315> +05:45:42 Transaction Type : REQUEST +05:45:42 Received From : +05:45:42 ============================================================================ +05:45:42 FNo. Len. Field Value +05:45:42 ============================================================================ +05:45:42 [ 1] [ 4] [0800] +05:45:42 [ 7] [ 10] [0319104451] +05:45:42 [ 11] [ 6] [154696] +05:45:42 [ 70] [ 3] [301] +05:45:42 ============================================================================ +05:45:42 + + +waiting on router queue for slot.... +05:45:42 Sending to : +05:45:42 ============================================================================ +05:45:42 ============================================================================ +05:45:42 Slot Id : <315> +05:45:42 Transaction Type : RESPONSE +05:45:42 Received From : +05:45:42 ============================================================================ +05:45:42 FNo. Len. Field Value +05:45:42 ============================================================================ +05:45:42 [ 1] [ 4] [0810] +05:45:42 [ 7] [ 10] [0319104451] +05:45:42 [ 11] [ 6] [154696] +05:45:42 [ 39] [ 2] [00] +05:45:42 [ 70] [ 3] [301] +05:45:42 ============================================================================ +05:45:42 Calculate Source COMM Id = 2 +05:45:42 ============================================================================ +05:45:42 + + +waiting on router queue for slot.... +05:45:44 ============================================================================ +05:45:44 Slot Id : <322> +05:45:44 Transaction Type : REQUEST +05:45:44 Received From : +05:45:44 ============================================================================ +05:45:44 FNo. Len. Field Value +05:45:44 ============================================================================ +05:45:44 [ 1] [ 4] [0800] +05:45:44 [ 2] [ 5] [02531] +05:45:44 [ 3] [ 6] [579058] +05:45:44 [ 7] [ 10] [0319224544] +05:45:44 [ 11] [ 6] [806746] +05:45:44 [ 15] [ 10] [0319224544] +05:45:44 [ 37] [ 11] [57905806746] +05:45:44 [ 70] [ 3] [001] +05:45:44 ============================================================================ +05:45:44 + + +waiting on router queue for slot.... +05:45:44 ============================================================================ +05:45:44 Slot Id : <322> +05:45:44 Transaction Type : RESPONSE +05:45:44 Received From : +05:45:44 ============================================================================ +05:45:44 FNo. Len. Field Value +05:45:44 ============================================================================ +05:45:44 [ 1] [ 4] [0810] +05:45:44 [ 7] [ 10] [0319224544] +05:45:44 [ 11] [ 6] [806746] +05:45:44 [ 15] [ 4] [0319] +05:45:44 [ 37] [ 12] [57905806746] +05:45:44 [ 39] [ 2] [00] +05:45:44 [ 70] [ 3] [001] +05:45:44 ============================================================================ +05:45:44 Sending to : +05:45:44 ============================================================================ +05:45:44 + + +waiting on router queue for slot.... +05:45:53 ============================================================================ +05:45:53 Slot Id : <304> +05:45:53 Transaction Type : REQUEST +05:45:53 Received From : +05:45:53 ============================================================================ +05:45:53 FNo. Len. Field Value +05:45:53 ============================================================================ +05:45:53 [ 1] [ 4] [0800] +05:45:53 [ 7] [ 10] [0319104501] +05:45:53 [ 11] [ 6] [154697] +05:45:53 [ 70] [ 3] [301] +05:45:53 ============================================================================ +05:45:53 + + +waiting on router queue for slot.... +05:45:53 Sending to : +05:45:53 ============================================================================ +05:45:53 ============================================================================ +05:45:53 Slot Id : <304> +05:45:53 Transaction Type : RESPONSE +05:45:53 Received From : +05:45:53 ============================================================================ +05:45:53 FNo. Len. Field Value +05:45:53 ============================================================================ +05:45:53 [ 1] [ 4] [0810] +05:45:53 [ 7] [ 10] [0319104501] +05:45:53 [ 11] [ 6] [154697] +05:45:53 [ 39] [ 2] [00] +05:45:53 [ 70] [ 3] [301] +05:45:53 ============================================================================ +05:45:53 Calculate Source COMM Id = 2 +05:45:53 ============================================================================ +05:45:53 + + +waiting on router queue for slot.... +05:46:09 ============================================================================ +05:46:09 Slot Id : <325> +05:46:09 Transaction Type : REQUEST +05:46:09 Received From : +05:46:09 ============================================================================ +05:46:09 FNo. Len. Field Value +05:46:09 ============================================================================ +05:46:09 [ 1] [ 4] [0800] +05:46:09 [ 7] [ 10] [0319104518] +05:46:09 [ 11] [ 6] [154698] +05:46:09 [ 70] [ 3] [301] +05:46:09 ============================================================================ +05:46:09 + + +waiting on router queue for slot.... +05:46:09 Sending to : +05:46:09 ============================================================================ +05:46:09 ============================================================================ +05:46:09 Slot Id : <325> +05:46:09 Transaction Type : RESPONSE +05:46:09 Received From : +05:46:09 ============================================================================ +05:46:09 FNo. Len. Field Value +05:46:09 ============================================================================ +05:46:09 [ 1] [ 4] [0810] +05:46:09 [ 7] [ 10] [0319104518] +05:46:09 [ 11] [ 6] [154698] +05:46:09 [ 39] [ 2] [00] +05:46:09 [ 70] [ 3] [301] +05:46:09 ============================================================================ +05:46:09 Calculate Source COMM Id = 2 +05:46:09 ============================================================================ +05:46:09 + + +waiting on router queue for slot.... +05:46:19 ============================================================================ +05:46:19 Slot Id : <285> +05:46:19 Transaction Type : REQUEST +05:46:19 Received From : +05:46:19 ============================================================================ +05:46:19 FNo. Len. Field Value +05:46:19 ============================================================================ +05:46:19 [ 1] [ 4] [0800] +05:46:19 [ 7] [ 10] [0319104528] +05:46:19 [ 11] [ 6] [154699] +05:46:19 [ 70] [ 3] [301] +05:46:19 ============================================================================ +05:46:19 + + +waiting on router queue for slot.... +05:46:19 Sending to : +05:46:19 ============================================================================ +05:46:19 ============================================================================ +05:46:19 Slot Id : <285> +05:46:19 Transaction Type : RESPONSE +05:46:19 Received From : +05:46:19 ============================================================================ +05:46:19 FNo. Len. Field Value +05:46:19 ============================================================================ +05:46:19 [ 1] [ 4] [0810] +05:46:19 [ 7] [ 10] [0319104528] +05:46:19 [ 11] [ 6] [154699] +05:46:19 [ 39] [ 2] [00] +05:46:19 [ 70] [ 3] [301] +05:46:19 ============================================================================ +05:46:19 Calculate Source COMM Id = 2 +05:46:19 ============================================================================ +05:46:19 + + +waiting on router queue for slot.... +05:46:19 ============================================================================ +05:46:19 Slot Id : <297> +05:46:19 Transaction Type : REQUEST +05:46:19 Received From : +05:46:19 ============================================================================ +05:46:19 FNo. Len. Field Value +05:46:19 ============================================================================ +05:46:19 [ 1] [ 4] [0800] +05:46:19 [ 7] [ 10] [0319224412] +05:46:19 [ 11] [ 6] [058877] +05:46:19 [ 37] [ 12] [57905058877] +05:46:19 [ 70] [ 3] [301] +05:46:19 ============================================================================ +05:46:19 + + +waiting on router queue for slot.... +05:46:19 Sending to : +05:46:19 ============================================================================ +05:46:19 ============================================================================ +05:46:19 Slot Id : <297> +05:46:19 Transaction Type : RESPONSE +05:46:19 Received From : +05:46:19 ============================================================================ +05:46:19 FNo. Len. Field Value +05:46:19 ============================================================================ +05:46:19 [ 1] [ 4] [0810] +05:46:19 [ 7] [ 10] [0319224412] +05:46:19 [ 11] [ 6] [058877] +05:46:19 [ 37] [ 12] [579050588770] +05:46:19 [ 39] [ 2] [00] +05:46:19 [ 70] [ 3] [810] +05:46:19 ============================================================================ +05:46:19 Calculate Source COMM Id = 4 +05:46:19 ============================================================================ +05:46:19 + + +waiting on router queue for slot.... +05:46:26 ============================================================================ +05:46:26 Slot Id : <291> +05:46:26 Transaction Type : REQUEST +05:46:26 Received From : +05:46:26 ============================================================================ +05:46:26 FNo. Len. Field Value +05:46:26 ============================================================================ +05:46:26 [ 1] [ 4] [0200] +05:46:26 [ 2] [ 16] [6688990601483900] +05:46:26 [ 3] [ 6] [301000] +05:46:26 [ 7] [ 10] [0319224525] +05:46:26 [ 11] [ 6] [266527] +05:46:26 [ 12] [ 6] [054525] +05:46:26 [ 13] [ 4] [0320] +05:46:26 [ 14] [ 4] [4109] +05:46:26 [ 15] [ 4] [0320] +05:46:26 [ 18] [ 4] [6011] +05:46:26 [ 19] [ 3] [418] +05:46:26 [ 22] [ 3] [021] +05:46:26 [ 25] [ 2] [01] +05:46:26 [ 32] [ 6] [180893] +05:46:26 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:46:26 [ 37] [ 12] [507922266527] +05:46:26 [ 41] [ 8] [0369SLVL] +05:46:26 [ 42] [ 15] [999999 ] +05:46:26 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +05:46:26 [ 49] [ 3] [418] +05:46:26 [ 52] [ 16] [826FA20DE4E923A1] +05:46:26 ============================================================================ +05:46:26 + + +waiting on router queue for slot.... +05:46:26 Sending to : +05:46:26 ============================================================================ +05:46:26 Sending to : +05:46:26 ============================================================================ +05:46:27 ============================================================================ +05:46:27 Slot Id : <291> +05:46:27 Transaction Type : REQUEST +05:46:27 Received From : +05:46:27 ============================================================================ +05:46:27 FNo. Len. Field Value +05:46:27 ============================================================================ +05:46:27 [ 1] [ 4] [0200] +05:46:27 [ 2] [ 16] [6688990601483900] +05:46:27 [ 3] [ 6] [301000] +05:46:27 [ 7] [ 10] [0319224525] +05:46:27 [ 11] [ 6] [266527] +05:46:27 [ 12] [ 6] [054525] +05:46:27 [ 13] [ 4] [0320] +05:46:27 [ 14] [ 4] [4109] +05:46:27 [ 15] [ 4] [0320] +05:46:27 [ 18] [ 4] [6011] +05:46:27 [ 19] [ 3] [418] +05:46:27 [ 22] [ 3] [021] +05:46:27 [ 25] [ 2] [01] +05:46:27 [ 32] [ 6] [180893] +05:46:27 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:46:27 [ 37] [ 12] [507922266527] +05:46:27 [ 41] [ 8] [0369SLVL] +05:46:27 [ 42] [ 15] [999999 ] +05:46:27 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +05:46:27 [ 49] [ 3] [418] +05:46:27 [ 52] [ 16] [826FA20DE4E923A1] +05:46:27 ============================================================================ +05:46:27 + + +waiting on router queue for slot.... +05:46:27 Sending to : +05:46:27 ============================================================================ +05:46:27 ============================================================================ +05:46:27 Slot Id : <291> +05:46:27 Transaction Type : REQUEST +05:46:27 Received From : +05:46:27 ============================================================================ +05:46:27 FNo. Len. Field Value +05:46:27 ============================================================================ +05:46:27 [ 1] [ 4] [0200] +05:46:27 [ 2] [ 16] [6688990601483900] +05:46:27 [ 3] [ 6] [301000] +05:46:27 [ 7] [ 10] [0319224525] +05:46:27 [ 11] [ 6] [266527] +05:46:27 [ 12] [ 6] [054525] +05:46:27 [ 13] [ 4] [0320] +05:46:27 [ 14] [ 4] [4109] +05:46:27 [ 15] [ 4] [0320] +05:46:27 [ 18] [ 4] [6011] +05:46:27 [ 19] [ 3] [418] +05:46:27 [ 22] [ 3] [021] +05:46:27 [ 25] [ 2] [01] +05:46:27 [ 32] [ 6] [180893] +05:46:27 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:46:27 [ 37] [ 12] [507922266527] +05:46:27 [ 41] [ 8] [0369SLVL] +05:46:27 [ 42] [ 15] [999999 ] +05:46:27 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +05:46:27 [ 49] [ 3] [418] +05:46:27 [ 52] [ 16] [11A3D011B29B517F] +05:46:27 ============================================================================ +05:46:27 + + +waiting on router queue for slot.... +05:46:27 Sending to : <0> +05:46:27 ============================================================================ +05:46:27 ============================================================================ +05:46:27 Slot Id : <291> +05:46:27 Transaction Type : RESPONSE +05:46:27 Received From : +05:46:27 ============================================================================ +05:46:27 FNo. Len. Field Value +05:46:27 ============================================================================ +05:46:27 [ 1] [ 4] [0210] +05:46:27 [ 2] [ 16] [6688990601483900] +05:46:27 [ 3] [ 6] [301000] +05:46:27 [ 4] [ 12] [000000000000] +05:46:27 [ 7] [ 10] [0319224525] +05:46:27 [ 11] [ 6] [266527] +05:46:27 [ 12] [ 6] [054525] +05:46:27 [ 13] [ 4] [0320] +05:46:27 [ 15] [ 4] [0320] +05:46:27 [ 18] [ 4] [6011] +05:46:27 [ 19] [ 3] [418] +05:46:27 [ 22] [ 3] [021] +05:46:27 [ 32] [ 6] [180893] +05:46:27 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:46:27 [ 37] [ 12] [507922266527] +05:46:27 [ 39] [ 2] [14] +05:46:27 [ 41] [ 8] [0369SLVL] +05:46:27 [ 49] [ 3] [418] +05:46:27 ============================================================================ +05:46:27 Sending to : +05:46:27 ============================================================================ +05:46:27 + + +waiting on router queue for slot.... +05:46:28 ============================================================================ +05:46:28 Slot Id : <291> +05:46:28 Transaction Type : RESPONSE +05:46:28 Received From : +05:46:28 ============================================================================ +05:46:28 FNo. Len. Field Value +05:46:28 ============================================================================ +05:46:28 [ 1] [ 4] [0210] +05:46:28 [ 2] [ 16] [6688990601483900] +05:46:28 [ 3] [ 6] [301000] +05:46:28 [ 4] [ 12] [000000000000] +05:46:28 [ 7] [ 10] [0319224525] +05:46:28 [ 11] [ 6] [266527] +05:46:28 [ 12] [ 6] [054525] +05:46:28 [ 13] [ 4] [0320] +05:46:28 [ 15] [ 4] [0320] +05:46:28 [ 18] [ 4] [6011] +05:46:28 [ 19] [ 3] [418] +05:46:28 [ 22] [ 3] [021] +05:46:28 [ 32] [ 6] [180893] +05:46:28 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:46:28 [ 37] [ 12] [507922266527] +05:46:28 [ 39] [ 2] [14] +05:46:28 [ 41] [ 8] [0369SLVL] +05:46:28 [ 49] [ 3] [418] +05:46:28 ============================================================================ +05:46:28 Calculate Source COMM Id = 2 +05:46:28 ============================================================================ +05:46:28 + + +waiting on router queue for slot.... +05:46:39 ============================================================================ +05:46:39 Slot Id : <326> +05:46:39 Transaction Type : REQUEST +05:46:39 Received From : +05:46:39 ============================================================================ +05:46:39 FNo. Len. Field Value +05:46:39 ============================================================================ +05:46:39 [ 1] [ 4] [0800] +05:46:39 [ 7] [ 10] [0320125828] +05:46:39 [ 11] [ 6] [055828] +05:46:39 [ 37] [ 12] [57905055828] +05:46:39 [ 70] [ 3] [301] +05:46:39 ============================================================================ +05:46:39 + + +waiting on router queue for slot.... +05:46:39 Sending to : +05:46:39 ============================================================================ +05:46:39 ============================================================================ +05:46:39 Slot Id : <326> +05:46:39 Transaction Type : RESPONSE +05:46:39 Received From : +05:46:39 ============================================================================ +05:46:39 FNo. Len. Field Value +05:46:39 ============================================================================ +05:46:39 [ 1] [ 4] [0810] +05:46:39 [ 7] [ 10] [0320125828] +05:46:39 [ 11] [ 6] [055828] +05:46:39 [ 37] [ 12] [579050558280] +05:46:39 [ 39] [ 2] [00] +05:46:39 [ 70] [ 3] [810] +05:46:39 ============================================================================ +05:46:39 Calculate Source COMM Id = 6 +05:46:39 ============================================================================ +05:46:39 + + +waiting on router queue for slot.... +05:46:40 ============================================================================ +05:46:40 Slot Id : <305> +05:46:40 Transaction Type : REQUEST +05:46:40 Received From : +05:46:40 ============================================================================ +05:46:40 FNo. Len. Field Value +05:46:40 ============================================================================ +05:46:40 [ 1] [ 4] [0800] +05:46:40 [ 7] [ 10] [0319104549] +05:46:40 [ 11] [ 6] [154700] +05:46:40 [ 70] [ 3] [301] +05:46:40 ============================================================================ +05:46:40 + + +waiting on router queue for slot.... +05:46:40 Sending to : +05:46:40 ============================================================================ +05:46:40 ============================================================================ +05:46:40 Slot Id : <305> +05:46:40 Transaction Type : RESPONSE +05:46:40 Received From : +05:46:40 ============================================================================ +05:46:40 FNo. Len. Field Value +05:46:40 ============================================================================ +05:46:40 [ 1] [ 4] [0810] +05:46:40 [ 7] [ 10] [0319104549] +05:46:40 [ 11] [ 6] [154700] +05:46:40 [ 39] [ 2] [00] +05:46:40 [ 70] [ 3] [301] +05:46:40 ============================================================================ +05:46:40 Calculate Source COMM Id = 2 +05:46:40 ============================================================================ +05:46:40 + + +waiting on router queue for slot.... +05:46:46 ============================================================================ +05:46:46 Slot Id : <301> +05:46:46 Transaction Type : REQUEST +05:46:46 Received From : +05:46:46 ============================================================================ +05:46:46 FNo. Len. Field Value +05:46:46 ============================================================================ +05:46:46 [ 1] [ 4] [0800] +05:46:46 [ 2] [ 5] [02531] +05:46:46 [ 3] [ 6] [579058] +05:46:46 [ 7] [ 10] [0319224646] +05:46:46 [ 11] [ 6] [806747] +05:46:46 [ 15] [ 10] [0319224646] +05:46:46 [ 37] [ 11] [57905806747] +05:46:46 [ 70] [ 3] [001] +05:46:46 ============================================================================ +05:46:46 + + +waiting on router queue for slot.... +05:46:46 ============================================================================ +05:46:46 Slot Id : <301> +05:46:46 Transaction Type : RESPONSE +05:46:46 Received From : +05:46:46 ============================================================================ +05:46:46 FNo. Len. Field Value +05:46:46 ============================================================================ +05:46:46 [ 1] [ 4] [0810] +05:46:46 [ 7] [ 10] [0319224646] +05:46:46 [ 11] [ 6] [806747] +05:46:46 [ 15] [ 4] [0319] +05:46:46 [ 37] [ 12] [57905806747] +05:46:46 [ 39] [ 2] [00] +05:46:46 [ 70] [ 3] [001] +05:46:46 ============================================================================ +05:46:46 Sending to : +05:46:46 ============================================================================ +05:46:46 + + +waiting on router queue for slot.... +05:46:51 ============================================================================ +05:46:51 Slot Id : <327> +05:46:51 Transaction Type : REQUEST +05:46:51 Received From : +05:46:51 ============================================================================ +05:46:51 FNo. Len. Field Value +05:46:51 ============================================================================ +05:46:51 [ 1] [ 4] [0800] +05:46:51 [ 7] [ 10] [0319104600] +05:46:51 [ 11] [ 6] [154701] +05:46:51 [ 70] [ 3] [301] +05:46:51 ============================================================================ +05:46:51 + + +waiting on router queue for slot.... +05:46:51 Sending to : +05:46:51 ============================================================================ +05:46:51 ============================================================================ +05:46:51 Slot Id : <327> +05:46:51 Transaction Type : RESPONSE +05:46:51 Received From : +05:46:51 ============================================================================ +05:46:51 FNo. Len. Field Value +05:46:51 ============================================================================ +05:46:51 [ 1] [ 4] [0810] +05:46:51 [ 7] [ 10] [0319104600] +05:46:51 [ 11] [ 6] [154701] +05:46:51 [ 39] [ 2] [00] +05:46:51 [ 70] [ 3] [301] +05:46:51 ============================================================================ +05:46:51 Calculate Source COMM Id = 2 +05:46:51 ============================================================================ +05:46:51 + + +waiting on router queue for slot.... +05:47:02 ============================================================================ +05:47:02 Slot Id : <333> +05:47:02 Transaction Type : REQUEST +05:47:02 Received From : +05:47:02 ============================================================================ +05:47:02 FNo. Len. Field Value +05:47:02 ============================================================================ +05:47:02 [ 1] [ 4] [0800] +05:47:02 [ 7] [ 10] [0319104611] +05:47:02 [ 11] [ 6] [154702] +05:47:02 [ 70] [ 3] [301] +05:47:02 ============================================================================ +05:47:02 + + +waiting on router queue for slot.... +05:47:02 Sending to : +05:47:02 ============================================================================ +05:47:02 ============================================================================ +05:47:02 Slot Id : <333> +05:47:02 Transaction Type : RESPONSE +05:47:02 Received From : +05:47:02 ============================================================================ +05:47:02 FNo. Len. Field Value +05:47:02 ============================================================================ +05:47:02 [ 1] [ 4] [0810] +05:47:02 [ 7] [ 10] [0319104611] +05:47:02 [ 11] [ 6] [154702] +05:47:02 [ 39] [ 2] [00] +05:47:02 [ 70] [ 3] [301] +05:47:02 ============================================================================ +05:47:02 Calculate Source COMM Id = 2 +05:47:02 ============================================================================ +05:47:02 + + +waiting on router queue for slot.... +05:47:14 ============================================================================ +05:47:14 Slot Id : <314> +05:47:14 Transaction Type : REQUEST +05:47:14 Received From : +05:47:14 ============================================================================ +05:47:14 FNo. Len. Field Value +05:47:14 ============================================================================ +05:47:14 [ 1] [ 4] [0200] +05:47:14 [ 2] [ 16] [6688990601483900] +05:47:14 [ 3] [ 6] [010000] +05:47:14 [ 4] [ 12] [000100000000] +05:47:14 [ 7] [ 10] [0319224621] +05:47:14 [ 11] [ 6] [266529] +05:47:14 [ 12] [ 6] [054621] +05:47:14 [ 13] [ 4] [0320] +05:47:14 [ 14] [ 4] [4109] +05:47:14 [ 15] [ 4] [0320] +05:47:14 [ 18] [ 4] [6011] +05:47:14 [ 19] [ 3] [418] +05:47:14 [ 22] [ 3] [021] +05:47:14 [ 25] [ 2] [01] +05:47:14 [ 28] [ 9] [D00002000] +05:47:14 [ 32] [ 6] [180893] +05:47:14 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:47:14 [ 37] [ 12] [507922266529] +05:47:14 [ 41] [ 8] [0369SLVL] +05:47:14 [ 42] [ 15] [999999 ] +05:47:14 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +05:47:14 [ 49] [ 3] [418] +05:47:14 [ 52] [ 16] [826FA20DE4E923A1] +05:47:14 ============================================================================ +05:47:14 + + +waiting on router queue for slot.... +05:47:14 Sending to : +05:47:14 ============================================================================ +05:47:14 Sending to : +05:47:14 ============================================================================ +05:47:15 ============================================================================ +05:47:15 Slot Id : <314> +05:47:15 Transaction Type : REQUEST +05:47:15 Received From : +05:47:15 ============================================================================ +05:47:15 FNo. Len. Field Value +05:47:15 ============================================================================ +05:47:15 [ 1] [ 4] [0200] +05:47:15 [ 2] [ 16] [6688990601483900] +05:47:15 [ 3] [ 6] [010000] +05:47:15 [ 4] [ 12] [000100000000] +05:47:15 [ 7] [ 10] [0319224621] +05:47:15 [ 11] [ 6] [266529] +05:47:15 [ 12] [ 6] [054621] +05:47:15 [ 13] [ 4] [0320] +05:47:15 [ 14] [ 4] [4109] +05:47:15 [ 15] [ 4] [0320] +05:47:15 [ 18] [ 4] [6011] +05:47:15 [ 19] [ 3] [418] +05:47:15 [ 22] [ 3] [021] +05:47:15 [ 25] [ 2] [01] +05:47:15 [ 28] [ 9] [D00002000] +05:47:15 [ 32] [ 6] [180893] +05:47:15 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:47:15 [ 37] [ 12] [507922266529] +05:47:15 [ 41] [ 8] [0369SLVL] +05:47:15 [ 42] [ 15] [999999 ] +05:47:15 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +05:47:15 [ 49] [ 3] [418] +05:47:15 [ 52] [ 16] [826FA20DE4E923A1] +05:47:15 ============================================================================ +05:47:15 + + +waiting on router queue for slot.... +05:47:15 Sending to : +05:47:15 ============================================================================ +05:47:15 ============================================================================ +05:47:15 Slot Id : <314> +05:47:15 Transaction Type : REQUEST +05:47:15 Received From : +05:47:15 ============================================================================ +05:47:15 FNo. Len. Field Value +05:47:15 ============================================================================ +05:47:15 [ 1] [ 4] [0200] +05:47:15 [ 2] [ 16] [6688990601483900] +05:47:15 [ 3] [ 6] [010000] +05:47:15 [ 4] [ 12] [000100000000] +05:47:15 [ 7] [ 10] [0319224621] +05:47:15 [ 11] [ 6] [266529] +05:47:15 [ 12] [ 6] [054621] +05:47:15 [ 13] [ 4] [0320] +05:47:15 [ 14] [ 4] [4109] +05:47:15 [ 15] [ 4] [0320] +05:47:15 [ 18] [ 4] [6011] +05:47:15 [ 19] [ 3] [418] +05:47:15 [ 22] [ 3] [021] +05:47:15 [ 25] [ 2] [01] +05:47:15 [ 28] [ 9] [D00002000] +05:47:15 [ 32] [ 6] [180893] +05:47:15 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:47:15 [ 37] [ 12] [507922266529] +05:47:15 [ 41] [ 8] [0369SLVL] +05:47:15 [ 42] [ 15] [999999 ] +05:47:15 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +05:47:15 [ 49] [ 3] [418] +05:47:15 [ 52] [ 16] [11A3D011B29B517F] +05:47:15 ============================================================================ +05:47:15 + + +waiting on router queue for slot.... +05:47:15 Sending to : <0> +05:47:15 ============================================================================ +05:47:15 ============================================================================ +05:47:15 Slot Id : <314> +05:47:15 Transaction Type : RESPONSE +05:47:15 Received From : +05:47:15 ============================================================================ +05:47:15 FNo. Len. Field Value +05:47:15 ============================================================================ +05:47:15 [ 1] [ 4] [0210] +05:47:15 [ 2] [ 16] [6688990601483900] +05:47:15 [ 3] [ 6] [010000] +05:47:15 [ 4] [ 12] [000100000000] +05:47:15 [ 7] [ 10] [0319224621] +05:47:15 [ 11] [ 6] [266529] +05:47:15 [ 12] [ 6] [054621] +05:47:15 [ 13] [ 4] [0320] +05:47:15 [ 15] [ 4] [0320] +05:47:15 [ 18] [ 4] [6011] +05:47:15 [ 19] [ 3] [418] +05:47:15 [ 22] [ 3] [021] +05:47:15 [ 32] [ 6] [180893] +05:47:15 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:47:15 [ 37] [ 12] [507922266529] +05:47:15 [ 39] [ 2] [14] +05:47:15 [ 41] [ 8] [0369SLVL] +05:47:15 [ 49] [ 3] [418] +05:47:15 ============================================================================ +05:47:15 Sending to : +05:47:15 ============================================================================ +05:47:15 + + +waiting on router queue for slot.... +05:47:15 ============================================================================ +05:47:15 Slot Id : <331> +05:47:15 Transaction Type : REQUEST +05:47:15 Received From : +05:47:15 ============================================================================ +05:47:15 FNo. Len. Field Value +05:47:15 ============================================================================ +05:47:15 [ 1] [ 4] [0800] +05:47:15 [ 7] [ 10] [0319104623] +05:47:15 [ 11] [ 6] [154703] +05:47:15 [ 70] [ 3] [301] +05:47:15 ============================================================================ +05:47:15 + + +waiting on router queue for slot.... +05:47:15 Sending to : +05:47:15 ============================================================================ +05:47:15 ============================================================================ +05:47:15 Slot Id : <331> +05:47:15 Transaction Type : RESPONSE +05:47:15 Received From : +05:47:15 ============================================================================ +05:47:15 FNo. Len. Field Value +05:47:15 ============================================================================ +05:47:15 [ 1] [ 4] [0810] +05:47:15 [ 7] [ 10] [0319104623] +05:47:15 [ 11] [ 6] [154703] +05:47:15 [ 39] [ 2] [00] +05:47:15 [ 70] [ 3] [301] +05:47:15 ============================================================================ +05:47:15 Calculate Source COMM Id = 2 +05:47:15 ============================================================================ +05:47:15 + + +waiting on router queue for slot.... +05:47:16 ============================================================================ +05:47:16 Slot Id : <314> +05:47:16 Transaction Type : RESPONSE +05:47:16 Received From : +05:47:16 ============================================================================ +05:47:16 FNo. Len. Field Value +05:47:16 ============================================================================ +05:47:16 [ 1] [ 4] [0210] +05:47:16 [ 2] [ 16] [6688990601483900] +05:47:16 [ 3] [ 6] [010000] +05:47:16 [ 4] [ 12] [000100000000] +05:47:16 [ 7] [ 10] [0319224621] +05:47:16 [ 11] [ 6] [266529] +05:47:16 [ 12] [ 6] [054621] +05:47:16 [ 13] [ 4] [0320] +05:47:16 [ 15] [ 4] [0320] +05:47:16 [ 18] [ 4] [6011] +05:47:16 [ 19] [ 3] [418] +05:47:16 [ 22] [ 3] [021] +05:47:16 [ 32] [ 6] [180893] +05:47:16 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:47:16 [ 37] [ 12] [507922266529] +05:47:16 [ 39] [ 2] [14] +05:47:16 [ 41] [ 8] [0369SLVL] +05:47:16 [ 49] [ 3] [418] +05:47:16 ============================================================================ +05:47:16 Calculate Source COMM Id = 2 +05:47:16 ============================================================================ +05:47:16 + + +waiting on router queue for slot.... +05:47:31 ============================================================================ +05:47:31 Slot Id : <321> +05:47:31 Transaction Type : REQUEST +05:47:31 Received From : +05:47:31 ============================================================================ +05:47:31 FNo. Len. Field Value +05:47:31 ============================================================================ +05:47:31 [ 1] [ 4] [0800] +05:47:31 [ 7] [ 10] [0319104640] +05:47:31 [ 11] [ 6] [154704] +05:47:31 [ 70] [ 3] [301] +05:47:31 ============================================================================ +05:47:31 + + +waiting on router queue for slot.... +05:47:31 Sending to : +05:47:31 ============================================================================ +05:47:31 ============================================================================ +05:47:31 Slot Id : <321> +05:47:31 Transaction Type : RESPONSE +05:47:31 Received From : +05:47:31 ============================================================================ +05:47:31 FNo. Len. Field Value +05:47:31 ============================================================================ +05:47:31 [ 1] [ 4] [0810] +05:47:31 [ 7] [ 10] [0319104640] +05:47:31 [ 11] [ 6] [154704] +05:47:31 [ 39] [ 2] [00] +05:47:31 [ 70] [ 3] [301] +05:47:31 ============================================================================ +05:47:31 Calculate Source COMM Id = 2 +05:47:31 ============================================================================ +05:47:31 + + +waiting on router queue for slot.... +05:47:35 ============================================================================ +05:47:35 Slot Id : <336> +05:47:35 Transaction Type : REQUEST +05:47:35 Received From : +05:47:35 ============================================================================ +05:47:35 FNo. Len. Field Value +05:47:35 ============================================================================ +05:47:35 [ 1] [ 4] [0200] +05:47:35 [ 2] [ 16] [6213541000355845] +05:47:35 [ 3] [ 6] [011000] +05:47:35 [ 4] [ 12] [000002000000] +05:47:35 [ 7] [ 10] [0319224643] +05:47:35 [ 11] [ 6] [266531] +05:47:35 [ 12] [ 6] [054643] +05:47:35 [ 13] [ 4] [0320] +05:47:35 [ 14] [ 4] [4912] +05:47:35 [ 15] [ 4] [0320] +05:47:35 [ 18] [ 4] [6011] +05:47:35 [ 19] [ 3] [418] +05:47:35 [ 22] [ 3] [021] +05:47:35 [ 25] [ 2] [01] +05:47:35 [ 28] [ 9] [D00002000] +05:47:35 [ 32] [ 6] [180893] +05:47:35 [ 35] [ 32] [6213541000355845=491212015584833] +05:47:35 [ 37] [ 12] [507922266531] +05:47:35 [ 41] [ 8] [0344SVKV] +05:47:35 [ 42] [ 15] [999999 ] +05:47:35 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +05:47:35 [ 49] [ 3] [418] +05:47:35 [ 52] [ 16] [5898D1D4D0C31FE7] +05:47:35 ============================================================================ +05:47:35 + + +waiting on router queue for slot.... +05:47:35 Sending to : +05:47:35 ============================================================================ +05:47:35 Sending to : +05:47:35 ============================================================================ +05:47:36 ============================================================================ +05:47:36 Slot Id : <336> +05:47:36 Transaction Type : REQUEST +05:47:36 Received From : +05:47:36 ============================================================================ +05:47:36 FNo. Len. Field Value +05:47:36 ============================================================================ +05:47:36 [ 1] [ 4] [0200] +05:47:36 [ 2] [ 16] [6213541000355845] +05:47:36 [ 3] [ 6] [011000] +05:47:36 [ 4] [ 12] [000002000000] +05:47:36 [ 7] [ 10] [0319224643] +05:47:36 [ 11] [ 6] [266531] +05:47:36 [ 12] [ 6] [054643] +05:47:36 [ 13] [ 4] [0320] +05:47:36 [ 14] [ 4] [4912] +05:47:36 [ 15] [ 4] [0320] +05:47:36 [ 18] [ 4] [6011] +05:47:36 [ 19] [ 3] [418] +05:47:36 [ 22] [ 3] [021] +05:47:36 [ 25] [ 2] [01] +05:47:36 [ 28] [ 9] [D00002000] +05:47:36 [ 32] [ 6] [180893] +05:47:36 [ 35] [ 32] [6213541000355845=491212015584833] +05:47:36 [ 37] [ 12] [507922266531] +05:47:36 [ 41] [ 8] [0344SVKV] +05:47:36 [ 42] [ 15] [999999 ] +05:47:36 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +05:47:36 [ 49] [ 3] [418] +05:47:36 [ 52] [ 16] [5898D1D4D0C31FE7] +05:47:36 ============================================================================ +05:47:36 + + +waiting on router queue for slot.... +05:47:36 Sending to : +05:47:36 ============================================================================ +05:47:36 ============================================================================ +05:47:36 Slot Id : <336> +05:47:36 Transaction Type : REQUEST +05:47:36 Received From : +05:47:36 ============================================================================ +05:47:36 FNo. Len. Field Value +05:47:36 ============================================================================ +05:47:36 [ 1] [ 4] [0200] +05:47:36 [ 2] [ 16] [6213541000355845] +05:47:36 [ 3] [ 6] [011000] +05:47:36 [ 4] [ 12] [000002000000] +05:47:36 [ 7] [ 10] [0319224643] +05:47:36 [ 11] [ 6] [266531] +05:47:36 [ 12] [ 6] [054643] +05:47:36 [ 13] [ 4] [0320] +05:47:36 [ 14] [ 4] [4912] +05:47:36 [ 15] [ 4] [0320] +05:47:36 [ 18] [ 4] [6011] +05:47:36 [ 19] [ 3] [418] +05:47:36 [ 22] [ 3] [021] +05:47:36 [ 25] [ 2] [01] +05:47:36 [ 28] [ 9] [D00002000] +05:47:36 [ 32] [ 6] [180893] +05:47:36 [ 35] [ 32] [6213541000355845=491212015584833] +05:47:36 [ 37] [ 12] [507922266531] +05:47:36 [ 41] [ 8] [0344SVKV] +05:47:36 [ 42] [ 15] [999999 ] +05:47:36 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +05:47:36 [ 49] [ 3] [418] +05:47:36 [ 52] [ 16] [1E8CDDB37612EA74] +05:47:36 ============================================================================ +05:47:36 + + +waiting on router queue for slot.... +05:47:36 Sending to : <0> +05:47:36 ============================================================================ +05:47:36 ============================================================================ +05:47:36 Slot Id : <336> +05:47:36 Transaction Type : RESPONSE +05:47:36 Received From : +05:47:36 ============================================================================ +05:47:36 FNo. Len. Field Value +05:47:36 ============================================================================ +05:47:36 [ 1] [ 4] [0210] +05:47:36 [ 2] [ 16] [6213541000355845] +05:47:36 [ 3] [ 6] [011000] +05:47:36 [ 4] [ 12] [000002000000] +05:47:36 [ 7] [ 10] [0319224643] +05:47:36 [ 11] [ 6] [266531] +05:47:36 [ 12] [ 6] [054643] +05:47:36 [ 13] [ 4] [0320] +05:47:36 [ 15] [ 4] [0320] +05:47:36 [ 18] [ 4] [6011] +05:47:36 [ 19] [ 3] [418] +05:47:36 [ 32] [ 6] [180893] +05:47:36 [ 35] [ 32] [6213541000355845=491212015584833] +05:47:36 [ 37] [ 12] [507922266531] +05:47:36 [ 38] [ 6] [266531] +05:47:36 [ 39] [ 2] [51] +05:47:36 [ 41] [ 8] [0344SVKV] +05:47:36 [ 49] [ 3] [418] +05:47:36 [ 54] [ 40] [1001418C0000071984081002418C000007198408] +05:47:36 ============================================================================ +05:47:36 Sending to : +05:47:36 ============================================================================ +05:47:36 + + +waiting on router queue for slot.... +05:47:37 ============================================================================ +05:47:37 Slot Id : <336> +05:47:37 Transaction Type : RESPONSE +05:47:37 Received From : +05:47:37 ============================================================================ +05:47:37 FNo. Len. Field Value +05:47:37 ============================================================================ +05:47:37 [ 1] [ 4] [0210] +05:47:37 [ 2] [ 16] [6213541000355845] +05:47:37 [ 3] [ 6] [011000] +05:47:37 [ 4] [ 12] [000002000000] +05:47:37 [ 7] [ 10] [0319224643] +05:47:37 [ 11] [ 6] [266531] +05:47:37 [ 12] [ 6] [054643] +05:47:37 [ 13] [ 4] [0320] +05:47:37 [ 15] [ 4] [0320] +05:47:37 [ 18] [ 4] [6011] +05:47:37 [ 19] [ 3] [418] +05:47:37 [ 32] [ 6] [180893] +05:47:37 [ 35] [ 32] [6213541000355845=491212015584833] +05:47:37 [ 37] [ 12] [507922266531] +05:47:37 [ 38] [ 6] [266531] +05:47:37 [ 39] [ 2] [51] +05:47:37 [ 41] [ 8] [0344SVKV] +05:47:37 [ 49] [ 3] [418] +05:47:37 [ 54] [ 40] [1001418C0000071984081002418C000007198408] +05:47:37 ============================================================================ +05:47:37 Calculate Source COMM Id = 2 +05:47:37 ============================================================================ +05:47:37 + + +waiting on router queue for slot.... +05:47:44 ============================================================================ +05:47:44 Slot Id : <334> +05:47:44 Transaction Type : REQUEST +05:47:44 Received From : +05:47:44 ============================================================================ +05:47:44 FNo. Len. Field Value +05:47:44 ============================================================================ +05:47:44 [ 1] [ 4] [0800] +05:47:44 [ 7] [ 10] [0320125933] +05:47:44 [ 11] [ 6] [055933] +05:47:44 [ 37] [ 12] [57905055933] +05:47:44 [ 70] [ 3] [301] +05:47:44 ============================================================================ +05:47:44 + + +waiting on router queue for slot.... +05:47:44 Sending to : +05:47:44 ============================================================================ +05:47:44 ============================================================================ +05:47:44 Slot Id : <334> +05:47:44 Transaction Type : RESPONSE +05:47:44 Received From : +05:47:44 ============================================================================ +05:47:44 FNo. Len. Field Value +05:47:44 ============================================================================ +05:47:44 [ 1] [ 4] [0810] +05:47:44 [ 7] [ 10] [0320125933] +05:47:44 [ 11] [ 6] [055933] +05:47:44 [ 37] [ 12] [579050559330] +05:47:44 [ 39] [ 2] [00] +05:47:44 [ 70] [ 3] [810] +05:47:44 ============================================================================ +05:47:44 Calculate Source COMM Id = 6 +05:47:44 ============================================================================ +05:47:44 + + +waiting on router queue for slot.... +05:47:48 ============================================================================ +05:47:48 Slot Id : <337> +05:47:48 Transaction Type : REQUEST +05:47:48 Received From : +05:47:48 ============================================================================ +05:47:48 FNo. Len. Field Value +05:47:48 ============================================================================ +05:47:48 [ 1] [ 4] [0800] +05:47:48 [ 2] [ 5] [02531] +05:47:48 [ 3] [ 6] [579058] +05:47:48 [ 7] [ 10] [0319224748] +05:47:48 [ 11] [ 6] [806748] +05:47:48 [ 15] [ 10] [0319224748] +05:47:48 [ 37] [ 11] [57905806748] +05:47:48 [ 70] [ 3] [001] +05:47:48 ============================================================================ +05:47:48 + + +waiting on router queue for slot.... +05:47:48 ============================================================================ +05:47:48 Slot Id : <337> +05:47:48 Transaction Type : RESPONSE +05:47:48 Received From : +05:47:48 ============================================================================ +05:47:48 FNo. Len. Field Value +05:47:48 ============================================================================ +05:47:48 [ 1] [ 4] [0810] +05:47:48 [ 7] [ 10] [0319224748] +05:47:48 [ 11] [ 6] [806748] +05:47:48 [ 15] [ 4] [0319] +05:47:48 [ 37] [ 12] [57905806748] +05:47:48 [ 39] [ 2] [00] +05:47:48 [ 70] [ 3] [001] +05:47:48 ============================================================================ +05:47:48 Sending to : +05:47:48 ============================================================================ +05:47:48 + + +waiting on router queue for slot.... +05:47:52 ============================================================================ +05:47:52 Slot Id : <335> +05:47:52 Transaction Type : REQUEST +05:47:52 Received From : +05:47:52 ============================================================================ +05:47:52 FNo. Len. Field Value +05:47:52 ============================================================================ +05:47:52 [ 1] [ 4] [0800] +05:47:52 [ 7] [ 10] [0319104701] +05:47:52 [ 11] [ 6] [154705] +05:47:52 [ 70] [ 3] [301] +05:47:52 ============================================================================ +05:47:52 + + +waiting on router queue for slot.... +05:47:52 Sending to : +05:47:52 ============================================================================ +05:47:52 ============================================================================ +05:47:52 Slot Id : <335> +05:47:52 Transaction Type : RESPONSE +05:47:52 Received From : +05:47:52 ============================================================================ +05:47:52 FNo. Len. Field Value +05:47:52 ============================================================================ +05:47:52 [ 1] [ 4] [0810] +05:47:52 [ 7] [ 10] [0319104701] +05:47:52 [ 11] [ 6] [154705] +05:47:52 [ 39] [ 2] [00] +05:47:52 [ 70] [ 3] [301] +05:47:52 ============================================================================ +05:47:52 Calculate Source COMM Id = 2 +05:47:52 ============================================================================ +05:47:52 + + +waiting on router queue for slot.... +05:47:56 ============================================================================ +05:47:56 Slot Id : <342> +05:47:56 Transaction Type : REQUEST +05:47:56 Received From : +05:47:56 ============================================================================ +05:47:56 FNo. Len. Field Value +05:47:56 ============================================================================ +05:47:56 [ 1] [ 4] [0200] +05:47:56 [ 2] [ 16] [6213541000355845] +05:47:56 [ 3] [ 6] [301000] +05:47:56 [ 7] [ 10] [0319224705] +05:47:56 [ 11] [ 6] [266532] +05:47:56 [ 12] [ 6] [054705] +05:47:56 [ 13] [ 4] [0320] +05:47:56 [ 14] [ 4] [4912] +05:47:56 [ 15] [ 4] [0320] +05:47:56 [ 18] [ 4] [6011] +05:47:56 [ 19] [ 3] [418] +05:47:56 [ 22] [ 3] [021] +05:47:56 [ 25] [ 2] [01] +05:47:56 [ 32] [ 6] [180893] +05:47:56 [ 35] [ 32] [6213541000355845=491212015584833] +05:47:56 [ 37] [ 12] [507922266532] +05:47:56 [ 41] [ 8] [0344SVKV] +05:47:56 [ 42] [ 15] [999999 ] +05:47:56 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +05:47:56 [ 49] [ 3] [418] +05:47:56 [ 52] [ 16] [5898D1D4D0C31FE7] +05:47:56 ============================================================================ +05:47:56 + + +waiting on router queue for slot.... +05:47:56 Sending to : +05:47:56 ============================================================================ +05:47:56 Sending to : +05:47:56 ============================================================================ +05:47:57 ============================================================================ +05:47:57 Slot Id : <342> +05:47:57 Transaction Type : REQUEST +05:47:57 Received From : +05:47:57 ============================================================================ +05:47:57 FNo. Len. Field Value +05:47:57 ============================================================================ +05:47:57 [ 1] [ 4] [0200] +05:47:57 [ 2] [ 16] [6213541000355845] +05:47:57 [ 3] [ 6] [301000] +05:47:57 [ 7] [ 10] [0319224705] +05:47:57 [ 11] [ 6] [266532] +05:47:57 [ 12] [ 6] [054705] +05:47:57 [ 13] [ 4] [0320] +05:47:57 [ 14] [ 4] [4912] +05:47:57 [ 15] [ 4] [0320] +05:47:57 [ 18] [ 4] [6011] +05:47:57 [ 19] [ 3] [418] +05:47:57 [ 22] [ 3] [021] +05:47:57 [ 25] [ 2] [01] +05:47:57 [ 32] [ 6] [180893] +05:47:57 [ 35] [ 32] [6213541000355845=491212015584833] +05:47:57 [ 37] [ 12] [507922266532] +05:47:57 [ 41] [ 8] [0344SVKV] +05:47:57 [ 42] [ 15] [999999 ] +05:47:57 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +05:47:57 [ 49] [ 3] [418] +05:47:57 [ 52] [ 16] [5898D1D4D0C31FE7] +05:47:57 ============================================================================ +05:47:57 + + +waiting on router queue for slot.... +05:47:57 Sending to : +05:47:57 ============================================================================ +05:47:57 ============================================================================ +05:47:57 Slot Id : <342> +05:47:57 Transaction Type : REQUEST +05:47:57 Received From : +05:47:57 ============================================================================ +05:47:57 FNo. Len. Field Value +05:47:57 ============================================================================ +05:47:57 [ 1] [ 4] [0200] +05:47:57 [ 2] [ 16] [6213541000355845] +05:47:57 [ 3] [ 6] [301000] +05:47:57 [ 7] [ 10] [0319224705] +05:47:57 [ 11] [ 6] [266532] +05:47:57 [ 12] [ 6] [054705] +05:47:57 [ 13] [ 4] [0320] +05:47:57 [ 14] [ 4] [4912] +05:47:57 [ 15] [ 4] [0320] +05:47:57 [ 18] [ 4] [6011] +05:47:57 [ 19] [ 3] [418] +05:47:57 [ 22] [ 3] [021] +05:47:57 [ 25] [ 2] [01] +05:47:57 [ 32] [ 6] [180893] +05:47:57 [ 35] [ 32] [6213541000355845=491212015584833] +05:47:57 [ 37] [ 12] [507922266532] +05:47:57 [ 41] [ 8] [0344SVKV] +05:47:57 [ 42] [ 15] [999999 ] +05:47:57 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +05:47:57 [ 49] [ 3] [418] +05:47:57 [ 52] [ 16] [1E8CDDB37612EA74] +05:47:57 ============================================================================ +05:47:57 + + +waiting on router queue for slot.... +05:47:57 Sending to : <0> +05:47:57 ============================================================================ +05:47:57 ============================================================================ +05:47:57 Slot Id : <342> +05:47:57 Transaction Type : RESPONSE +05:47:57 Received From : +05:47:57 ============================================================================ +05:47:57 FNo. Len. Field Value +05:47:57 ============================================================================ +05:47:57 [ 1] [ 4] [0210] +05:47:57 [ 2] [ 16] [6213541000355845] +05:47:57 [ 3] [ 6] [301000] +05:47:57 [ 4] [ 12] [000000000000] +05:47:57 [ 7] [ 10] [0319224705] +05:47:57 [ 11] [ 6] [266532] +05:47:57 [ 12] [ 6] [054705] +05:47:57 [ 13] [ 4] [0320] +05:47:57 [ 15] [ 4] [0320] +05:47:57 [ 18] [ 4] [6011] +05:47:57 [ 19] [ 3] [418] +05:47:57 [ 32] [ 6] [180893] +05:47:57 [ 35] [ 32] [6213541000355845=491212015584833] +05:47:57 [ 37] [ 12] [507922266532] +05:47:57 [ 38] [ 6] [640043] +05:47:57 [ 39] [ 2] [00] +05:47:57 [ 41] [ 8] [0344SVKV] +05:47:57 [ 49] [ 3] [418] +05:47:57 [ 54] [ 40] [1001418C0000071984081002418C000007198408] +05:47:57 ============================================================================ +05:47:57 Sending to : +05:47:57 ============================================================================ +05:47:57 + + +waiting on router queue for slot.... +05:47:59 ============================================================================ +05:47:59 Slot Id : <342> +05:47:59 Transaction Type : RESPONSE +05:47:59 Received From : +05:47:59 ============================================================================ +05:47:59 FNo. Len. Field Value +05:47:59 ============================================================================ +05:47:59 [ 1] [ 4] [0210] +05:47:59 [ 2] [ 16] [6213541000355845] +05:47:59 [ 3] [ 6] [301000] +05:47:59 [ 4] [ 12] [000000000000] +05:47:59 [ 7] [ 10] [0319224705] +05:47:59 [ 11] [ 6] [266532] +05:47:59 [ 12] [ 6] [054705] +05:47:59 [ 13] [ 4] [0320] +05:47:59 [ 15] [ 4] [0320] +05:47:59 [ 18] [ 4] [6011] +05:47:59 [ 19] [ 3] [418] +05:47:59 [ 32] [ 6] [180893] +05:47:59 [ 35] [ 32] [6213541000355845=491212015584833] +05:47:59 [ 37] [ 12] [507922266532] +05:47:59 [ 38] [ 6] [640043] +05:47:59 [ 39] [ 2] [00] +05:47:59 [ 41] [ 8] [0344SVKV] +05:47:59 [ 49] [ 3] [418] +05:47:59 [ 54] [ 40] [1001418C0000071984081002418C000007198408] +05:47:59 ============================================================================ +05:47:59 Calculate Source COMM Id = 2 +05:47:59 ============================================================================ +05:47:59 + + +waiting on router queue for slot.... +05:48:05 ============================================================================ +05:48:05 Slot Id : <320> +05:48:05 Transaction Type : REQUEST +05:48:05 Received From : +05:48:05 ============================================================================ +05:48:05 FNo. Len. Field Value +05:48:05 ============================================================================ +05:48:05 [ 1] [ 4] [0200] +05:48:05 [ 2] [ 16] [6688990601483900] +05:48:05 [ 3] [ 6] [010000] +05:48:05 [ 4] [ 12] [000010000000] +05:48:05 [ 7] [ 10] [0319224714] +05:48:05 [ 11] [ 6] [266534] +05:48:05 [ 12] [ 6] [054714] +05:48:05 [ 13] [ 4] [0320] +05:48:05 [ 14] [ 4] [4109] +05:48:05 [ 15] [ 4] [0320] +05:48:05 [ 18] [ 4] [6011] +05:48:05 [ 19] [ 3] [418] +05:48:05 [ 22] [ 3] [021] +05:48:05 [ 25] [ 2] [01] +05:48:05 [ 28] [ 9] [D00002000] +05:48:05 [ 32] [ 6] [180893] +05:48:05 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:48:05 [ 37] [ 12] [507922266534] +05:48:05 [ 41] [ 8] [0369SLVL] +05:48:05 [ 42] [ 15] [999999 ] +05:48:05 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +05:48:05 [ 49] [ 3] [418] +05:48:05 [ 52] [ 16] [826FA20DE4E923A1] +05:48:05 ============================================================================ +05:48:05 + + +waiting on router queue for slot.... +05:48:05 Sending to : +05:48:05 ============================================================================ +05:48:05 Sending to : +05:48:05 ============================================================================ +05:48:06 ============================================================================ +05:48:06 Slot Id : <320> +05:48:06 Transaction Type : REQUEST +05:48:06 Received From : +05:48:06 ============================================================================ +05:48:06 FNo. Len. Field Value +05:48:06 ============================================================================ +05:48:06 [ 1] [ 4] [0200] +05:48:06 [ 2] [ 16] [6688990601483900] +05:48:06 [ 3] [ 6] [010000] +05:48:06 [ 4] [ 12] [000010000000] +05:48:06 [ 7] [ 10] [0319224714] +05:48:06 [ 11] [ 6] [266534] +05:48:06 [ 12] [ 6] [054714] +05:48:06 [ 13] [ 4] [0320] +05:48:06 [ 14] [ 4] [4109] +05:48:06 [ 15] [ 4] [0320] +05:48:06 [ 18] [ 4] [6011] +05:48:06 [ 19] [ 3] [418] +05:48:06 [ 22] [ 3] [021] +05:48:06 [ 25] [ 2] [01] +05:48:06 [ 28] [ 9] [D00002000] +05:48:06 [ 32] [ 6] [180893] +05:48:06 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:48:06 [ 37] [ 12] [507922266534] +05:48:06 [ 41] [ 8] [0369SLVL] +05:48:06 [ 42] [ 15] [999999 ] +05:48:06 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +05:48:06 [ 49] [ 3] [418] +05:48:06 [ 52] [ 16] [826FA20DE4E923A1] +05:48:06 ============================================================================ +05:48:06 + + +waiting on router queue for slot.... +05:48:06 Sending to : +05:48:06 ============================================================================ +05:48:06 ============================================================================ +05:48:06 Slot Id : <320> +05:48:06 Transaction Type : REQUEST +05:48:06 Received From : +05:48:06 ============================================================================ +05:48:06 FNo. Len. Field Value +05:48:06 ============================================================================ +05:48:06 [ 1] [ 4] [0200] +05:48:06 [ 2] [ 16] [6688990601483900] +05:48:06 [ 3] [ 6] [010000] +05:48:06 [ 4] [ 12] [000010000000] +05:48:06 [ 7] [ 10] [0319224714] +05:48:06 [ 11] [ 6] [266534] +05:48:06 [ 12] [ 6] [054714] +05:48:06 [ 13] [ 4] [0320] +05:48:06 [ 14] [ 4] [4109] +05:48:06 [ 15] [ 4] [0320] +05:48:06 [ 18] [ 4] [6011] +05:48:06 [ 19] [ 3] [418] +05:48:06 [ 22] [ 3] [021] +05:48:06 [ 25] [ 2] [01] +05:48:06 [ 28] [ 9] [D00002000] +05:48:06 [ 32] [ 6] [180893] +05:48:06 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:48:06 [ 37] [ 12] [507922266534] +05:48:06 [ 41] [ 8] [0369SLVL] +05:48:06 [ 42] [ 15] [999999 ] +05:48:06 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +05:48:06 [ 49] [ 3] [418] +05:48:06 [ 52] [ 16] [11A3D011B29B517F] +05:48:06 ============================================================================ +05:48:06 + + +waiting on router queue for slot.... +05:48:06 Sending to : <0> +05:48:06 ============================================================================ +05:48:06 ============================================================================ +05:48:06 Slot Id : <320> +05:48:06 Transaction Type : RESPONSE +05:48:06 Received From : +05:48:06 ============================================================================ +05:48:06 FNo. Len. Field Value +05:48:06 ============================================================================ +05:48:06 [ 1] [ 4] [0210] +05:48:06 [ 2] [ 16] [6688990601483900] +05:48:06 [ 3] [ 6] [010000] +05:48:06 [ 4] [ 12] [000010000000] +05:48:06 [ 7] [ 10] [0319224714] +05:48:06 [ 11] [ 6] [266534] +05:48:06 [ 12] [ 6] [054714] +05:48:06 [ 13] [ 4] [0320] +05:48:06 [ 15] [ 4] [0320] +05:48:06 [ 18] [ 4] [6011] +05:48:06 [ 19] [ 3] [418] +05:48:06 [ 22] [ 3] [021] +05:48:06 [ 32] [ 6] [180893] +05:48:06 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:48:06 [ 37] [ 12] [507922266534] +05:48:06 [ 39] [ 2] [14] +05:48:06 [ 41] [ 8] [0369SLVL] +05:48:06 [ 49] [ 3] [418] +05:48:06 ============================================================================ +05:48:06 Sending to : +05:48:06 ============================================================================ +05:48:06 + + +waiting on router queue for slot.... +05:48:07 ============================================================================ +05:48:07 Slot Id : <320> +05:48:07 Transaction Type : RESPONSE +05:48:07 Received From : +05:48:07 ============================================================================ +05:48:07 FNo. Len. Field Value +05:48:07 ============================================================================ +05:48:07 [ 1] [ 4] [0210] +05:48:07 [ 2] [ 16] [6688990601483900] +05:48:07 [ 3] [ 6] [010000] +05:48:07 [ 4] [ 12] [000010000000] +05:48:07 [ 7] [ 10] [0319224714] +05:48:07 [ 11] [ 6] [266534] +05:48:07 [ 12] [ 6] [054714] +05:48:07 [ 13] [ 4] [0320] +05:48:07 [ 15] [ 4] [0320] +05:48:07 [ 18] [ 4] [6011] +05:48:07 [ 19] [ 3] [418] +05:48:07 [ 22] [ 3] [021] +05:48:07 [ 32] [ 6] [180893] +05:48:07 [ 35] [ 37] [6688990601483900=41090061390069400000] +05:48:07 [ 37] [ 12] [507922266534] +05:48:07 [ 39] [ 2] [14] +05:48:07 [ 41] [ 8] [0369SLVL] +05:48:07 [ 49] [ 3] [418] +05:48:07 ============================================================================ +05:48:07 Calculate Source COMM Id = 2 +05:48:07 ============================================================================ +05:48:07 + + +waiting on router queue for slot.... +05:48:20 ============================================================================ +05:48:20 Slot Id : <341> +05:48:20 Transaction Type : REQUEST +05:48:20 Received From : +05:48:20 ============================================================================ +05:48:20 FNo. Len. Field Value +05:48:20 ============================================================================ +05:48:20 [ 1] [ 4] [0800] +05:48:20 [ 7] [ 10] [0319104728] +05:48:20 [ 11] [ 6] [154706] +05:48:20 [ 70] [ 3] [301] +05:48:20 ============================================================================ +05:48:20 + + +waiting on router queue for slot.... +05:48:20 Sending to : +05:48:20 ============================================================================ +05:48:20 ============================================================================ +05:48:20 Slot Id : <341> +05:48:20 Transaction Type : RESPONSE +05:48:20 Received From : +05:48:20 ============================================================================ +05:48:20 FNo. Len. Field Value +05:48:20 ============================================================================ +05:48:20 [ 1] [ 4] [0810] +05:48:20 [ 7] [ 10] [0319104728] +05:48:20 [ 11] [ 6] [154706] +05:48:20 [ 39] [ 2] [00] +05:48:20 [ 70] [ 3] [301] +05:48:20 ============================================================================ +05:48:20 Calculate Source COMM Id = 2 +05:48:20 ============================================================================ +05:48:20 + + +waiting on router queue for slot.... +05:48:31 ============================================================================ +05:48:31 Slot Id : <268> +05:48:31 Transaction Type : REQUEST +05:48:31 Received From : +05:48:31 ============================================================================ +05:48:31 FNo. Len. Field Value +05:48:31 ============================================================================ +05:48:31 [ 1] [ 4] [0800] +05:48:31 [ 7] [ 10] [0319104739] +05:48:31 [ 11] [ 6] [154707] +05:48:31 [ 70] [ 3] [301] +05:48:31 ============================================================================ +05:48:31 + + +waiting on router queue for slot.... +05:48:31 Sending to : +05:48:31 ============================================================================ +05:48:31 ============================================================================ +05:48:31 Slot Id : <268> +05:48:31 Transaction Type : RESPONSE +05:48:31 Received From : +05:48:31 ============================================================================ +05:48:31 FNo. Len. Field Value +05:48:31 ============================================================================ +05:48:31 [ 1] [ 4] [0810] +05:48:31 [ 7] [ 10] [0319104739] +05:48:31 [ 11] [ 6] [154707] +05:48:31 [ 39] [ 2] [00] +05:48:31 [ 70] [ 3] [301] +05:48:31 ============================================================================ +05:48:31 Calculate Source COMM Id = 2 +05:48:31 ============================================================================ +05:48:31 + + +waiting on router queue for slot.... +05:48:32 ============================================================================ +05:48:32 Slot Id : <345> +05:48:32 Transaction Type : REQUEST +05:48:32 Received From : +05:48:32 ============================================================================ +05:48:32 FNo. Len. Field Value +05:48:32 ============================================================================ +05:48:32 [ 1] [ 4] [0200] +05:48:32 [ 2] [ 16] [6688990050007655] +05:48:32 [ 3] [ 6] [301000] +05:48:32 [ 4] [ 12] [000000000000] +05:48:32 [ 7] [ 10] [0320054828] +05:48:32 [ 11] [ 6] [662356] +05:48:32 [ 12] [ 6] [054828] +05:48:32 [ 13] [ 4] [0320] +05:48:32 [ 15] [ 4] [0320] +05:48:32 [ 18] [ 4] [6011] +05:48:32 [ 22] [ 3] [900] +05:48:32 [ 25] [ 2] [02] +05:48:32 [ 28] [ 9] [D00000000] +05:48:32 [ 32] [ 6] [621354] +05:48:32 [ 35] [ 37] [6688990050007655=97111261279302500000] +05:48:32 [ 37] [ 12] [507904723721] +05:48:32 [ 41] [ 8] [18001100] +05:48:32 [ 42] [ 15] [NATIVE ] +05:48:32 [ 43] [ 40] [Ban Naxong May LAO] +05:48:32 [ 49] [ 3] [418] +05:48:32 [ 52] [ 16] [814398B65F8835C0] +05:48:32 ============================================================================ +05:48:32 + + +waiting on router queue for slot.... +05:48:32 Sending to : +05:48:32 ============================================================================ +05:48:32 Sending to : +05:48:32 ============================================================================ +05:48:32 ============================================================================ +05:48:32 Slot Id : <345> +05:48:32 Transaction Type : REQUEST +05:48:32 Received From : +05:48:32 ============================================================================ +05:48:32 FNo. Len. Field Value +05:48:32 ============================================================================ +05:48:32 [ 1] [ 4] [0200] +05:48:32 [ 2] [ 16] [6688990050007655] +05:48:32 [ 3] [ 6] [301000] +05:48:32 [ 4] [ 12] [000000000000] +05:48:32 [ 7] [ 10] [0320054828] +05:48:32 [ 11] [ 6] [662356] +05:48:32 [ 12] [ 6] [054828] +05:48:32 [ 13] [ 4] [0320] +05:48:32 [ 15] [ 4] [0320] +05:48:32 [ 18] [ 4] [6011] +05:48:32 [ 22] [ 3] [900] +05:48:32 [ 25] [ 2] [02] +05:48:32 [ 28] [ 9] [D00000000] +05:48:32 [ 32] [ 6] [621354] +05:48:32 [ 35] [ 37] [6688990050007655=97111261279302500000] +05:48:32 [ 37] [ 12] [507904723721] +05:48:32 [ 41] [ 8] [18001100] +05:48:32 [ 42] [ 15] [NATIVE ] +05:48:32 [ 43] [ 40] [Ban Naxong May LAO] +05:48:32 [ 49] [ 3] [418] +05:48:32 [ 52] [ 16] [814398B65F8835C0] +05:48:32 ============================================================================ +05:48:32 + + +waiting on router queue for slot.... +05:48:32 Sending to : +05:48:32 ============================================================================ +05:48:32 ============================================================================ +05:48:32 Slot Id : <345> +05:48:32 Transaction Type : REQUEST +05:48:32 Received From : +05:48:32 ============================================================================ +05:48:32 FNo. Len. Field Value +05:48:32 ============================================================================ +05:48:32 [ 1] [ 4] [0200] +05:48:32 [ 2] [ 16] [6688990050007655] +05:48:32 [ 3] [ 6] [301000] +05:48:32 [ 4] [ 12] [000000000000] +05:48:32 [ 7] [ 10] [0320054828] +05:48:32 [ 11] [ 6] [662356] +05:48:32 [ 12] [ 6] [054828] +05:48:32 [ 13] [ 4] [0320] +05:48:32 [ 15] [ 4] [0320] +05:48:32 [ 18] [ 4] [6011] +05:48:32 [ 22] [ 3] [900] +05:48:32 [ 25] [ 2] [02] +05:48:32 [ 28] [ 9] [D00000000] +05:48:32 [ 32] [ 6] [621354] +05:48:32 [ 35] [ 37] [6688990050007655=97111261279302500000] +05:48:32 [ 37] [ 12] [507904723721] +05:48:32 [ 41] [ 8] [18001100] +05:48:32 [ 42] [ 15] [NATIVE ] +05:48:32 [ 43] [ 40] [Ban Naxong May LAO] +05:48:32 [ 49] [ 3] [418] +05:48:32 [ 52] [ 16] [A3EDD4646F4F429B] +05:48:32 ============================================================================ +05:48:32 + + +waiting on router queue for slot.... +05:48:32 Sending to : <4> +05:48:32 ============================================================================ +05:48:33 ============================================================================ +05:48:33 Slot Id : <345> +05:48:33 Transaction Type : RESPONSE +05:48:33 Received From : +05:48:33 ============================================================================ +05:48:33 FNo. Len. Field Value +05:48:33 ============================================================================ +05:48:33 [ 1] [ 4] [0210] +05:48:33 [ 2] [ 16] [6688990050007655] +05:48:33 [ 3] [ 6] [301000] +05:48:33 [ 4] [ 12] [000000000000] +05:48:33 [ 11] [ 6] [662356] +05:48:33 [ 12] [ 6] [054828] +05:48:33 [ 15] [ 4] [0320] +05:48:33 [ 18] [ 4] [6011] +05:48:33 [ 32] [ 6] [621354] +05:48:33 [ 35] [ 37] [6688990050007655=97111261279302500000] +05:48:33 [ 37] [ 12] [507904723721] +05:48:33 [ 38] [ 6] [576345] +05:48:33 [ 39] [ 2] [00] +05:48:33 [ 41] [ 8] [18001100] +05:48:33 [ 49] [ 3] [418] +05:48:33 [ 54] [ 20] [1002418C000002710674] +05:48:33 ============================================================================ +05:48:33 Sending to : +05:48:33 ============================================================================ +05:48:33 + + +waiting on router queue for slot.... +05:48:35 ============================================================================ +05:48:35 Slot Id : <345> +05:48:35 Transaction Type : RESPONSE +05:48:35 Received From : +05:48:35 ============================================================================ +05:48:35 FNo. Len. Field Value +05:48:35 ============================================================================ +05:48:35 [ 1] [ 4] [0210] +05:48:35 [ 2] [ 16] [6688990050007655] +05:48:35 [ 3] [ 6] [301000] +05:48:35 [ 4] [ 12] [000000000000] +05:48:35 [ 11] [ 6] [662356] +05:48:35 [ 12] [ 6] [054828] +05:48:35 [ 15] [ 4] [0320] +05:48:35 [ 18] [ 4] [6011] +05:48:35 [ 32] [ 6] [621354] +05:48:35 [ 35] [ 37] [6688990050007655=97111261279302500000] +05:48:35 [ 37] [ 12] [507904723721] +05:48:35 [ 38] [ 6] [576345] +05:48:35 [ 39] [ 2] [00] +05:48:35 [ 41] [ 8] [18001100] +05:48:35 [ 49] [ 3] [418] +05:48:35 [ 54] [ 20] [1002418C000002710674] +05:48:35 ============================================================================ +05:48:35 Calculate Source COMM Id = 0 +05:48:35 ============================================================================ +05:48:35 + + +waiting on router queue for slot.... +05:48:46 ============================================================================ +05:48:46 Slot Id : <344> +05:48:46 Transaction Type : REQUEST +05:48:46 Received From : +05:48:46 ============================================================================ +05:48:46 FNo. Len. Field Value +05:48:46 ============================================================================ +05:48:46 [ 1] [ 4] [0800] +05:48:46 [ 7] [ 10] [0319104754] +05:48:46 [ 11] [ 6] [154708] +05:48:46 [ 70] [ 3] [301] +05:48:46 ============================================================================ +05:48:46 + + +waiting on router queue for slot.... +05:48:46 Sending to : +05:48:46 ============================================================================ +05:48:46 ============================================================================ +05:48:46 Slot Id : <344> +05:48:46 Transaction Type : RESPONSE +05:48:46 Received From : +05:48:46 ============================================================================ +05:48:46 FNo. Len. Field Value +05:48:46 ============================================================================ +05:48:46 [ 1] [ 4] [0810] +05:48:46 [ 7] [ 10] [0319104754] +05:48:46 [ 11] [ 6] [154708] +05:48:46 [ 39] [ 2] [00] +05:48:46 [ 70] [ 3] [301] +05:48:46 ============================================================================ +05:48:46 Calculate Source COMM Id = 2 +05:48:46 ============================================================================ +05:48:46 + + +waiting on router queue for slot.... +05:48:49 ============================================================================ +05:48:49 Slot Id : <329> +05:48:49 Transaction Type : REQUEST +05:48:49 Received From : +05:48:49 ============================================================================ +05:48:49 FNo. Len. Field Value +05:48:49 ============================================================================ +05:48:49 [ 1] [ 4] [0800] +05:48:49 [ 7] [ 10] [0320130038] +05:48:49 [ 11] [ 6] [060038] +05:48:49 [ 37] [ 12] [57906060038] +05:48:49 [ 70] [ 3] [301] +05:48:49 ============================================================================ +05:48:49 + + +waiting on router queue for slot.... +05:48:49 Sending to : +05:48:49 ============================================================================ +05:48:49 ============================================================================ +05:48:49 Slot Id : <329> +05:48:49 Transaction Type : RESPONSE +05:48:49 Received From : +05:48:49 ============================================================================ +05:48:49 FNo. Len. Field Value +05:48:49 ============================================================================ +05:48:49 [ 1] [ 4] [0810] +05:48:49 [ 7] [ 10] [0320130038] +05:48:49 [ 11] [ 6] [060038] +05:48:49 [ 37] [ 12] [579060600380] +05:48:49 [ 39] [ 2] [00] +05:48:49 [ 70] [ 3] [810] +05:48:49 ============================================================================ +05:48:49 Calculate Source COMM Id = 6 +05:48:49 ============================================================================ +05:48:49 + + +waiting on router queue for slot.... +05:48:50 ============================================================================ +05:48:50 Slot Id : <339> +05:48:50 Transaction Type : REQUEST +05:48:50 Received From : +05:48:50 ============================================================================ +05:48:50 FNo. Len. Field Value +05:48:50 ============================================================================ +05:48:50 [ 1] [ 4] [0800] +05:48:50 [ 2] [ 5] [02531] +05:48:50 [ 3] [ 6] [579058] +05:48:50 [ 7] [ 10] [0319224850] +05:48:50 [ 11] [ 6] [806749] +05:48:50 [ 15] [ 10] [0319224850] +05:48:50 [ 37] [ 11] [57905806749] +05:48:50 [ 70] [ 3] [001] +05:48:50 ============================================================================ +05:48:50 + + +waiting on router queue for slot.... +05:48:50 ============================================================================ +05:48:50 Slot Id : <339> +05:48:50 Transaction Type : RESPONSE +05:48:50 Received From : +05:48:50 ============================================================================ +05:48:50 FNo. Len. Field Value +05:48:50 ============================================================================ +05:48:50 [ 1] [ 4] [0810] +05:48:50 [ 7] [ 10] [0319224850] +05:48:50 [ 11] [ 6] [806749] +05:48:50 [ 15] [ 4] [0319] +05:48:50 [ 37] [ 12] [57905806749] +05:48:50 [ 39] [ 2] [00] +05:48:50 [ 70] [ 3] [001] +05:48:50 ============================================================================ +05:48:50 Sending to : +05:48:50 ============================================================================ +05:48:50 + + +waiting on router queue for slot.... +05:49:01 ============================================================================ +05:49:01 Slot Id : <323> +05:49:01 Transaction Type : REQUEST +05:49:01 Received From : +05:49:01 ============================================================================ +05:49:01 FNo. Len. Field Value +05:49:01 ============================================================================ +05:49:01 [ 1] [ 4] [0800] +05:49:01 [ 7] [ 10] [0319104810] +05:49:01 [ 11] [ 6] [154709] +05:49:01 [ 70] [ 3] [301] +05:49:01 ============================================================================ +05:49:01 + + +waiting on router queue for slot.... +05:49:01 Sending to : +05:49:01 ============================================================================ +05:49:01 ============================================================================ +05:49:01 Slot Id : <323> +05:49:01 Transaction Type : RESPONSE +05:49:01 Received From : +05:49:01 ============================================================================ +05:49:01 FNo. Len. Field Value +05:49:01 ============================================================================ +05:49:01 [ 1] [ 4] [0810] +05:49:01 [ 7] [ 10] [0319104810] +05:49:01 [ 11] [ 6] [154709] +05:49:01 [ 39] [ 2] [00] +05:49:01 [ 70] [ 3] [301] +05:49:01 ============================================================================ +05:49:01 Calculate Source COMM Id = 2 +05:49:01 ============================================================================ +05:49:01 + + +waiting on router queue for slot.... +05:49:12 ============================================================================ +05:49:12 Slot Id : <309> +05:49:12 Transaction Type : REQUEST +05:49:12 Received From : +05:49:12 ============================================================================ +05:49:12 FNo. Len. Field Value +05:49:12 ============================================================================ +05:49:12 [ 1] [ 4] [0800] +05:49:12 [ 7] [ 10] [0319104820] +05:49:12 [ 11] [ 6] [154710] +05:49:12 [ 70] [ 3] [301] +05:49:12 ============================================================================ +05:49:12 + + +waiting on router queue for slot.... +05:49:12 Sending to : +05:49:12 ============================================================================ +05:49:12 ============================================================================ +05:49:12 Slot Id : <309> +05:49:12 Transaction Type : RESPONSE +05:49:12 Received From : +05:49:12 ============================================================================ +05:49:12 FNo. Len. Field Value +05:49:12 ============================================================================ +05:49:12 [ 1] [ 4] [0810] +05:49:12 [ 7] [ 10] [0319104820] +05:49:12 [ 11] [ 6] [154710] +05:49:12 [ 39] [ 2] [00] +05:49:12 [ 70] [ 3] [301] +05:49:12 ============================================================================ +05:49:12 Calculate Source COMM Id = 2 +05:49:12 ============================================================================ +05:49:12 + + +waiting on router queue for slot.... +05:49:25 ============================================================================ +05:49:25 Slot Id : <348> +05:49:25 Transaction Type : REQUEST +05:49:25 Received From : +05:49:25 ============================================================================ +05:49:25 FNo. Len. Field Value +05:49:25 ============================================================================ +05:49:25 [ 1] [ 4] [0800] +05:49:25 [ 7] [ 10] [0319104833] +05:49:25 [ 11] [ 6] [154711] +05:49:25 [ 70] [ 3] [301] +05:49:25 ============================================================================ +05:49:25 + + +waiting on router queue for slot.... +05:49:25 Sending to : +05:49:25 ============================================================================ +05:49:25 ============================================================================ +05:49:25 Slot Id : <348> +05:49:25 Transaction Type : RESPONSE +05:49:25 Received From : +05:49:25 ============================================================================ +05:49:25 FNo. Len. Field Value +05:49:25 ============================================================================ +05:49:25 [ 1] [ 4] [0810] +05:49:25 [ 7] [ 10] [0319104833] +05:49:25 [ 11] [ 6] [154711] +05:49:25 [ 39] [ 2] [00] +05:49:25 [ 70] [ 3] [301] +05:49:25 ============================================================================ +05:49:25 Calculate Source COMM Id = 2 +05:49:25 ============================================================================ +05:49:25 + + +waiting on router queue for slot.... +05:49:36 ============================================================================ +05:49:36 Slot Id : <352> +05:49:36 Transaction Type : REQUEST +05:49:36 Received From : +05:49:36 ============================================================================ +05:49:36 FNo. Len. Field Value +05:49:36 ============================================================================ +05:49:36 [ 1] [ 4] [0800] +05:49:36 [ 7] [ 10] [0319104844] +05:49:36 [ 11] [ 6] [154712] +05:49:36 [ 70] [ 3] [301] +05:49:36 ============================================================================ +05:49:36 + + +waiting on router queue for slot.... +05:49:36 Sending to : +05:49:36 ============================================================================ +05:49:36 ============================================================================ +05:49:36 Slot Id : <352> +05:49:36 Transaction Type : RESPONSE +05:49:36 Received From : +05:49:36 ============================================================================ +05:49:36 FNo. Len. Field Value +05:49:36 ============================================================================ +05:49:36 [ 1] [ 4] [0810] +05:49:36 [ 7] [ 10] [0319104844] +05:49:36 [ 11] [ 6] [154712] +05:49:36 [ 39] [ 2] [00] +05:49:36 [ 70] [ 3] [301] +05:49:36 ============================================================================ +05:49:36 Calculate Source COMM Id = 2 +05:49:36 ============================================================================ +05:49:36 + + +waiting on router queue for slot.... +05:49:46 ============================================================================ +05:49:46 Slot Id : <328> +05:49:46 Transaction Type : REQUEST +05:49:46 Received From : +05:49:46 ============================================================================ +05:49:46 FNo. Len. Field Value +05:49:46 ============================================================================ +05:49:46 [ 1] [ 4] [0800] +05:49:46 [ 7] [ 10] [0319104855] +05:49:46 [ 11] [ 6] [154713] +05:49:46 [ 70] [ 3] [301] +05:49:46 ============================================================================ +05:49:46 + + +waiting on router queue for slot.... +05:49:46 Sending to : +05:49:46 ============================================================================ +05:49:46 ============================================================================ +05:49:46 Slot Id : <328> +05:49:46 Transaction Type : RESPONSE +05:49:46 Received From : +05:49:46 ============================================================================ +05:49:46 FNo. Len. Field Value +05:49:46 ============================================================================ +05:49:46 [ 1] [ 4] [0810] +05:49:46 [ 7] [ 10] [0319104855] +05:49:46 [ 11] [ 6] [154713] +05:49:46 [ 39] [ 2] [00] +05:49:46 [ 70] [ 3] [301] +05:49:46 ============================================================================ +05:49:46 Calculate Source COMM Id = 2 +05:49:46 ============================================================================ +05:49:46 + + +waiting on router queue for slot.... +05:49:52 ============================================================================ +05:49:52 Slot Id : <350> +05:49:52 Transaction Type : REQUEST +05:49:52 Received From : +05:49:52 ============================================================================ +05:49:52 FNo. Len. Field Value +05:49:52 ============================================================================ +05:49:52 [ 1] [ 4] [0800] +05:49:52 [ 2] [ 5] [02531] +05:49:52 [ 3] [ 6] [579058] +05:49:52 [ 7] [ 10] [0319224952] +05:49:52 [ 11] [ 6] [806750] +05:49:52 [ 15] [ 10] [0319224952] +05:49:52 [ 37] [ 11] [57905806750] +05:49:52 [ 70] [ 3] [001] +05:49:52 ============================================================================ +05:49:52 + + +waiting on router queue for slot.... +05:49:52 ============================================================================ +05:49:52 Slot Id : <350> +05:49:52 Transaction Type : RESPONSE +05:49:52 Received From : +05:49:52 ============================================================================ +05:49:52 FNo. Len. Field Value +05:49:52 ============================================================================ +05:49:52 [ 1] [ 4] [0810] +05:49:52 [ 7] [ 10] [0319224952] +05:49:52 [ 11] [ 6] [806750] +05:49:52 [ 15] [ 4] [0319] +05:49:52 [ 37] [ 12] [57905806750] +05:49:52 [ 39] [ 2] [00] +05:49:52 [ 70] [ 3] [001] +05:49:52 ============================================================================ +05:49:52 Sending to : +05:49:52 ============================================================================ +05:49:52 + + +waiting on router queue for slot.... +05:49:54 ============================================================================ +05:49:54 Slot Id : <347> +05:49:54 Transaction Type : REQUEST +05:49:54 Received From : +05:49:54 ============================================================================ +05:49:54 FNo. Len. Field Value +05:49:54 ============================================================================ +05:49:54 [ 1] [ 4] [0800] +05:49:54 [ 7] [ 10] [0319225742] +05:49:54 [ 11] [ 6] [063611] +05:49:54 [ 37] [ 12] [57905063611] +05:49:54 [ 70] [ 3] [301] +05:49:54 ============================================================================ +05:49:54 + + +waiting on router queue for slot.... +05:49:54 Sending to : +05:49:54 ============================================================================ +05:49:54 ============================================================================ +05:49:54 Slot Id : <347> +05:49:54 Transaction Type : RESPONSE +05:49:54 Received From : +05:49:54 ============================================================================ +05:49:54 FNo. Len. Field Value +05:49:54 ============================================================================ +05:49:54 [ 1] [ 4] [0810] +05:49:54 [ 7] [ 10] [0319225742] +05:49:54 [ 11] [ 6] [063611] +05:49:54 [ 37] [ 12] [579050636110] +05:49:54 [ 39] [ 2] [00] +05:49:54 [ 70] [ 3] [810] +05:49:54 ============================================================================ +05:49:54 Calculate Source COMM Id = 1 +05:49:54 ============================================================================ +05:49:54 + + +waiting on router queue for slot.... +05:49:55 ============================================================================ +05:49:55 Slot Id : <319> +05:49:55 Transaction Type : REQUEST +05:49:55 Received From : +05:49:55 ============================================================================ +05:49:55 FNo. Len. Field Value +05:49:55 ============================================================================ +05:49:55 [ 1] [ 4] [0800] +05:49:55 [ 7] [ 10] [0320130143] +05:49:55 [ 11] [ 6] [060143] +05:49:55 [ 37] [ 12] [57906060143] +05:49:55 [ 70] [ 3] [301] +05:49:55 ============================================================================ +05:49:55 + + +waiting on router queue for slot.... +05:49:55 Sending to : +05:49:55 ============================================================================ +05:49:55 ============================================================================ +05:49:55 Slot Id : <319> +05:49:55 Transaction Type : RESPONSE +05:49:55 Received From : +05:49:55 ============================================================================ +05:49:55 FNo. Len. Field Value +05:49:55 ============================================================================ +05:49:55 [ 1] [ 4] [0810] +05:49:55 [ 7] [ 10] [0320130143] +05:49:55 [ 11] [ 6] [060143] +05:49:55 [ 37] [ 12] [579060601430] +05:49:55 [ 39] [ 2] [00] +05:49:55 [ 70] [ 3] [810] +05:49:55 ============================================================================ +05:49:55 Calculate Source COMM Id = 6 +05:49:55 ============================================================================ +05:49:55 + + +waiting on router queue for slot.... +05:50:00 ============================================================================ +05:50:00 Slot Id : <356> +05:50:00 Transaction Type : REQUEST +05:50:00 Received From : +05:50:00 ============================================================================ +05:50:00 FNo. Len. Field Value +05:50:00 ============================================================================ +05:50:00 [ 1] [ 4] [0200] +05:50:00 [ 2] [ 16] [6213543000243492] +05:50:00 [ 3] [ 6] [010000] +05:50:00 [ 4] [ 12] [000030000000] +05:50:00 [ 7] [ 10] [0320054752] +05:50:00 [ 11] [ 6] [928611] +05:50:00 [ 12] [ 6] [054752] +05:50:00 [ 13] [ 4] [0320] +05:50:00 [ 15] [ 4] [0320] +05:50:00 [ 18] [ 4] [6011] +05:50:00 [ 19] [ 3] [418] +05:50:00 [ 22] [ 3] [021] +05:50:00 [ 25] [ 2] [01] +05:50:00 [ 28] [ 9] [D00002000] +05:50:00 [ 32] [ 6] [668899] +05:50:00 [ 35] [ 32] [6213543000243492=491212014349775] +05:50:00 [ 37] [ 12] [507901690915] +05:50:00 [ 41] [ 8] [03002003] +05:50:00 [ 42] [ 15] [APT ] +05:50:00 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +05:50:00 [ 49] [ 3] [418] +05:50:00 [ 52] [ 16] [7EAAA4C0A0E6FC1D] +05:50:00 ============================================================================ +05:50:00 + + +waiting on router queue for slot.... +05:50:00 Sending to : +05:50:00 ============================================================================ +05:50:00 Sending to : +05:50:00 ============================================================================ +05:50:00 ============================================================================ +05:50:00 Slot Id : <356> +05:50:00 Transaction Type : REQUEST +05:50:00 Received From : +05:50:00 ============================================================================ +05:50:00 FNo. Len. Field Value +05:50:00 ============================================================================ +05:50:00 [ 1] [ 4] [0200] +05:50:00 [ 2] [ 16] [6213543000243492] +05:50:00 [ 3] [ 6] [010000] +05:50:00 [ 4] [ 12] [000030000000] +05:50:00 [ 7] [ 10] [0320054752] +05:50:00 [ 11] [ 6] [928611] +05:50:00 [ 12] [ 6] [054752] +05:50:00 [ 13] [ 4] [0320] +05:50:00 [ 15] [ 4] [0320] +05:50:00 [ 18] [ 4] [6011] +05:50:00 [ 19] [ 3] [418] +05:50:00 [ 22] [ 3] [021] +05:50:00 [ 25] [ 2] [01] +05:50:00 [ 28] [ 9] [D00002000] +05:50:00 [ 32] [ 6] [668899] +05:50:00 [ 35] [ 32] [6213543000243492=491212014349775] +05:50:00 [ 37] [ 12] [507901690915] +05:50:00 [ 41] [ 8] [03002003] +05:50:00 [ 42] [ 15] [APT ] +05:50:00 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +05:50:00 [ 49] [ 3] [418] +05:50:00 [ 52] [ 16] [7EAAA4C0A0E6FC1D] +05:50:00 ============================================================================ +05:50:00 + + +waiting on router queue for slot.... +05:50:00 Sending to : +05:50:00 ============================================================================ +05:50:00 ============================================================================ +05:50:00 Slot Id : <356> +05:50:00 Transaction Type : REQUEST +05:50:00 Received From : +05:50:00 ============================================================================ +05:50:00 FNo. Len. Field Value +05:50:00 ============================================================================ +05:50:00 [ 1] [ 4] [0200] +05:50:00 [ 2] [ 16] [6213543000243492] +05:50:00 [ 3] [ 6] [010000] +05:50:00 [ 4] [ 12] [000030000000] +05:50:00 [ 7] [ 10] [0320054752] +05:50:00 [ 11] [ 6] [928611] +05:50:00 [ 12] [ 6] [054752] +05:50:00 [ 13] [ 4] [0320] +05:50:00 [ 15] [ 4] [0320] +05:50:00 [ 18] [ 4] [6011] +05:50:00 [ 19] [ 3] [418] +05:50:00 [ 22] [ 3] [021] +05:50:00 [ 25] [ 2] [01] +05:50:00 [ 28] [ 9] [D00002000] +05:50:00 [ 32] [ 6] [668899] +05:50:00 [ 35] [ 32] [6213543000243492=491212014349775] +05:50:00 [ 37] [ 12] [507901690915] +05:50:00 [ 41] [ 8] [03002003] +05:50:00 [ 42] [ 15] [APT ] +05:50:00 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +05:50:00 [ 49] [ 3] [418] +05:50:00 [ 52] [ 16] [98CC2C45A5B879B9] +05:50:00 ============================================================================ +05:50:00 + + +waiting on router queue for slot.... +05:50:00 Sending to : <0> +05:50:00 ============================================================================ +05:50:01 ============================================================================ +05:50:01 Slot Id : <356> +05:50:01 Transaction Type : RESPONSE +05:50:01 Received From : +05:50:01 ============================================================================ +05:50:01 FNo. Len. Field Value +05:50:01 ============================================================================ +05:50:01 [ 1] [ 4] [0210] +05:50:01 [ 2] [ 16] [6213543000243492] +05:50:01 [ 3] [ 6] [010000] +05:50:01 [ 4] [ 12] [000030000000] +05:50:01 [ 7] [ 10] [0320054752] +05:50:01 [ 11] [ 6] [928611] +05:50:01 [ 12] [ 6] [054752] +05:50:01 [ 13] [ 4] [0320] +05:50:01 [ 15] [ 4] [0320] +05:50:01 [ 18] [ 4] [6011] +05:50:01 [ 19] [ 3] [418] +05:50:01 [ 32] [ 6] [668899] +05:50:01 [ 35] [ 32] [6213543000243492=491212014349775] +05:50:01 [ 37] [ 12] [507901690915] +05:50:01 [ 38] [ 6] [557201] +05:50:01 [ 39] [ 2] [00] +05:50:01 [ 41] [ 8] [03002003] +05:50:01 [ 49] [ 3] [418] +05:50:01 [ 54] [ 40] [0001418C0003998000000002418C000399800000] +05:50:01 ============================================================================ +05:50:01 Sending to : +05:50:01 ============================================================================ +05:50:01 + + +waiting on router queue for slot.... +05:50:02 ============================================================================ +05:50:02 Slot Id : <332> +05:50:02 Transaction Type : REQUEST +05:50:02 Received From : +05:50:02 ============================================================================ +05:50:02 FNo. Len. Field Value +05:50:02 ============================================================================ +05:50:02 [ 1] [ 4] [0800] +05:50:02 [ 7] [ 10] [0319104910] +05:50:02 [ 11] [ 6] [154714] +05:50:02 [ 70] [ 3] [301] +05:50:02 ============================================================================ +05:50:02 + + +waiting on router queue for slot.... +05:50:02 Sending to : +05:50:02 ============================================================================ +05:50:02 ============================================================================ +05:50:02 Slot Id : <332> +05:50:02 Transaction Type : RESPONSE +05:50:02 Received From : +05:50:02 ============================================================================ +05:50:02 FNo. Len. Field Value +05:50:02 ============================================================================ +05:50:02 [ 1] [ 4] [0810] +05:50:02 [ 7] [ 10] [0319104910] +05:50:02 [ 11] [ 6] [154714] +05:50:02 [ 39] [ 2] [00] +05:50:02 [ 70] [ 3] [301] +05:50:02 ============================================================================ +05:50:02 Calculate Source COMM Id = 2 +05:50:02 ============================================================================ +05:50:02 + + +waiting on router queue for slot.... +05:50:03 ============================================================================ +05:50:03 Slot Id : <356> +05:50:03 Transaction Type : RESPONSE +05:50:03 Received From : +05:50:03 ============================================================================ +05:50:03 FNo. Len. Field Value +05:50:03 ============================================================================ +05:50:03 [ 1] [ 4] [0210] +05:50:03 [ 2] [ 16] [6213543000243492] +05:50:03 [ 3] [ 6] [010000] +05:50:03 [ 4] [ 12] [000030000000] +05:50:03 [ 7] [ 10] [0320054752] +05:50:03 [ 11] [ 6] [928611] +05:50:03 [ 12] [ 6] [054752] +05:50:03 [ 13] [ 4] [0320] +05:50:03 [ 15] [ 4] [0320] +05:50:03 [ 18] [ 4] [6011] +05:50:03 [ 19] [ 3] [418] +05:50:03 [ 32] [ 6] [668899] +05:50:03 [ 35] [ 32] [6213543000243492=491212014349775] +05:50:03 [ 37] [ 12] [507901690915] +05:50:03 [ 38] [ 6] [557201] +05:50:03 [ 39] [ 2] [00] +05:50:03 [ 41] [ 8] [03002003] +05:50:03 [ 49] [ 3] [418] +05:50:03 [ 54] [ 40] [0001418C0003998000000002418C000399800000] +05:50:03 ============================================================================ +05:50:03 Calculate Source COMM Id = 4 +05:50:03 ============================================================================ +05:50:03 + + +waiting on router queue for slot.... +05:50:18 ============================================================================ +05:50:18 Slot Id : <346> +05:50:18 Transaction Type : REQUEST +05:50:18 Received From : +05:50:18 ============================================================================ +05:50:18 FNo. Len. Field Value +05:50:18 ============================================================================ +05:50:18 [ 1] [ 4] [0800] +05:50:18 [ 7] [ 10] [0319104927] +05:50:18 [ 11] [ 6] [154715] +05:50:18 [ 70] [ 3] [301] +05:50:18 ============================================================================ +05:50:18 + + +waiting on router queue for slot.... +05:50:18 Sending to : +05:50:18 ============================================================================ +05:50:18 ============================================================================ +05:50:18 Slot Id : <346> +05:50:18 Transaction Type : RESPONSE +05:50:18 Received From : +05:50:18 ============================================================================ +05:50:18 FNo. Len. Field Value +05:50:18 ============================================================================ +05:50:18 [ 1] [ 4] [0810] +05:50:18 [ 7] [ 10] [0319104927] +05:50:18 [ 11] [ 6] [154715] +05:50:18 [ 39] [ 2] [00] +05:50:18 [ 70] [ 3] [301] +05:50:18 ============================================================================ +05:50:18 Calculate Source COMM Id = 2 +05:50:18 ============================================================================ +05:50:18 + + +waiting on router queue for slot.... +05:50:29 ============================================================================ +05:50:29 Slot Id : <357> +05:50:29 Transaction Type : REQUEST +05:50:29 Received From : +05:50:29 ============================================================================ +05:50:29 FNo. Len. Field Value +05:50:29 ============================================================================ +05:50:29 [ 1] [ 4] [0800] +05:50:29 [ 7] [ 10] [0319104937] +05:50:29 [ 11] [ 6] [154716] +05:50:29 [ 70] [ 3] [301] +05:50:29 ============================================================================ +05:50:29 + + +waiting on router queue for slot.... +05:50:29 Sending to : +05:50:29 ============================================================================ +05:50:29 ============================================================================ +05:50:29 Slot Id : <357> +05:50:29 Transaction Type : RESPONSE +05:50:29 Received From : +05:50:29 ============================================================================ +05:50:29 FNo. Len. Field Value +05:50:29 ============================================================================ +05:50:29 [ 1] [ 4] [0810] +05:50:29 [ 7] [ 10] [0319104937] +05:50:29 [ 11] [ 6] [154716] +05:50:29 [ 39] [ 2] [00] +05:50:29 [ 70] [ 3] [301] +05:50:29 ============================================================================ +05:50:29 Calculate Source COMM Id = 2 +05:50:29 ============================================================================ +05:50:29 + + +waiting on router queue for slot.... +05:50:39 ============================================================================ +05:50:39 Slot Id : <330> +05:50:39 Transaction Type : REQUEST +05:50:39 Received From : +05:50:39 ============================================================================ +05:50:39 FNo. Len. Field Value +05:50:39 ============================================================================ +05:50:39 [ 1] [ 4] [0800] +05:50:39 [ 7] [ 10] [0319104948] +05:50:39 [ 11] [ 6] [154717] +05:50:39 [ 70] [ 3] [301] +05:50:39 ============================================================================ +05:50:39 + + +waiting on router queue for slot.... +05:50:39 Sending to : +05:50:39 ============================================================================ +05:50:39 ============================================================================ +05:50:39 Slot Id : <330> +05:50:39 Transaction Type : RESPONSE +05:50:39 Received From : +05:50:39 ============================================================================ +05:50:39 FNo. Len. Field Value +05:50:39 ============================================================================ +05:50:39 [ 1] [ 4] [0810] +05:50:39 [ 7] [ 10] [0319104948] +05:50:39 [ 11] [ 6] [154717] +05:50:39 [ 39] [ 2] [00] +05:50:39 [ 70] [ 3] [301] +05:50:39 ============================================================================ +05:50:39 Calculate Source COMM Id = 2 +05:50:39 ============================================================================ +05:50:39 + + +waiting on router queue for slot.... +05:50:49 ============================================================================ +05:50:49 Slot Id : <366> +05:50:49 Transaction Type : REQUEST +05:50:49 Received From : +05:50:49 ============================================================================ +05:50:49 FNo. Len. Field Value +05:50:49 ============================================================================ +05:50:49 [ 1] [ 4] [0800] +05:50:49 [ 7] [ 10] [0319104958] +05:50:49 [ 11] [ 6] [154718] +05:50:49 [ 70] [ 3] [301] +05:50:49 ============================================================================ +05:50:49 + + +waiting on router queue for slot.... +05:50:49 Sending to : +05:50:49 ============================================================================ +05:50:49 ============================================================================ +05:50:49 Slot Id : <366> +05:50:49 Transaction Type : RESPONSE +05:50:49 Received From : +05:50:49 ============================================================================ +05:50:49 FNo. Len. Field Value +05:50:49 ============================================================================ +05:50:49 [ 1] [ 4] [0810] +05:50:49 [ 7] [ 10] [0319104958] +05:50:49 [ 11] [ 6] [154718] +05:50:49 [ 39] [ 2] [00] +05:50:49 [ 70] [ 3] [301] +05:50:49 ============================================================================ +05:50:49 Calculate Source COMM Id = 2 +05:50:49 ============================================================================ +05:50:49 + + +waiting on router queue for slot.... +05:50:54 ============================================================================ +05:50:54 Slot Id : <343> +05:50:54 Transaction Type : REQUEST +05:50:54 Received From : +05:50:54 ============================================================================ +05:50:54 FNo. Len. Field Value +05:50:54 ============================================================================ +05:50:54 [ 1] [ 4] [0800] +05:50:54 [ 2] [ 5] [02531] +05:50:54 [ 3] [ 6] [579058] +05:50:54 [ 7] [ 10] [0319225054] +05:50:54 [ 11] [ 6] [806751] +05:50:54 [ 15] [ 10] [0319225054] +05:50:54 [ 37] [ 11] [57905806751] +05:50:54 [ 70] [ 3] [001] +05:50:54 ============================================================================ +05:50:54 + + +waiting on router queue for slot.... +05:50:54 ============================================================================ +05:50:54 Slot Id : <343> +05:50:54 Transaction Type : RESPONSE +05:50:54 Received From : +05:50:54 ============================================================================ +05:50:54 FNo. Len. Field Value +05:50:54 ============================================================================ +05:50:54 [ 1] [ 4] [0810] +05:50:54 [ 7] [ 10] [0319225054] +05:50:54 [ 11] [ 6] [806751] +05:50:54 [ 15] [ 4] [0319] +05:50:54 [ 37] [ 12] [57905806751] +05:50:54 [ 39] [ 2] [00] +05:50:54 [ 70] [ 3] [001] +05:50:54 ============================================================================ +05:50:54 Sending to : +05:50:54 ============================================================================ +05:50:54 + + +waiting on router queue for slot.... +05:51:00 ============================================================================ +05:51:00 Slot Id : <313> +05:51:00 Transaction Type : REQUEST +05:51:00 Received From : +05:51:00 ============================================================================ +05:51:00 FNo. Len. Field Value +05:51:00 ============================================================================ +05:51:00 [ 1] [ 4] [0800] +05:51:00 [ 7] [ 10] [0320130248] +05:51:00 [ 11] [ 6] [060248] +05:51:00 [ 37] [ 12] [57906060248] +05:51:00 [ 70] [ 3] [301] +05:51:00 ============================================================================ +05:51:00 + + +waiting on router queue for slot.... +05:51:00 Sending to : +05:51:00 ============================================================================ +05:51:00 ============================================================================ +05:51:00 Slot Id : <313> +05:51:00 Transaction Type : RESPONSE +05:51:00 Received From : +05:51:00 ============================================================================ +05:51:00 FNo. Len. Field Value +05:51:00 ============================================================================ +05:51:00 [ 1] [ 4] [0810] +05:51:00 [ 7] [ 10] [0320130248] +05:51:00 [ 11] [ 6] [060248] +05:51:00 [ 37] [ 12] [579060602480] +05:51:00 [ 39] [ 2] [00] +05:51:00 [ 70] [ 3] [810] +05:51:00 ============================================================================ +05:51:00 Calculate Source COMM Id = 6 +05:51:00 ============================================================================ +05:51:00 + + +waiting on router queue for slot.... +05:51:00 ============================================================================ +05:51:00 Slot Id : <365> +05:51:00 Transaction Type : REQUEST +05:51:00 Received From : +05:51:00 ============================================================================ +05:51:00 FNo. Len. Field Value +05:51:00 ============================================================================ +05:51:00 [ 1] [ 4] [0800] +05:51:00 [ 7] [ 10] [0319105008] +05:51:00 [ 11] [ 6] [154719] +05:51:00 [ 70] [ 3] [301] +05:51:00 ============================================================================ +05:51:00 + + +waiting on router queue for slot.... +05:51:00 Sending to : +05:51:00 ============================================================================ +05:51:00 ============================================================================ +05:51:00 Slot Id : <365> +05:51:00 Transaction Type : RESPONSE +05:51:00 Received From : +05:51:00 ============================================================================ +05:51:00 FNo. Len. Field Value +05:51:00 ============================================================================ +05:51:00 [ 1] [ 4] [0810] +05:51:00 [ 7] [ 10] [0319105008] +05:51:00 [ 11] [ 6] [154719] +05:51:00 [ 39] [ 2] [00] +05:51:00 [ 70] [ 3] [301] +05:51:00 ============================================================================ +05:51:00 Calculate Source COMM Id = 2 +05:51:00 ============================================================================ +05:51:00 + + +waiting on router queue for slot.... +05:51:15 ============================================================================ +05:51:15 Slot Id : <340> +05:51:15 Transaction Type : REQUEST +05:51:15 Received From : +05:51:15 ============================================================================ +05:51:15 FNo. Len. Field Value +05:51:15 ============================================================================ +05:51:15 [ 1] [ 4] [0800] +05:51:15 [ 7] [ 10] [0319105024] +05:51:15 [ 11] [ 6] [154720] +05:51:15 [ 70] [ 3] [301] +05:51:15 ============================================================================ +05:51:15 + + +waiting on router queue for slot.... +05:51:15 Sending to : +05:51:15 ============================================================================ +05:51:15 ============================================================================ +05:51:15 Slot Id : <340> +05:51:15 Transaction Type : RESPONSE +05:51:15 Received From : +05:51:15 ============================================================================ +05:51:15 FNo. Len. Field Value +05:51:15 ============================================================================ +05:51:15 [ 1] [ 4] [0810] +05:51:15 [ 7] [ 10] [0319105024] +05:51:15 [ 11] [ 6] [154720] +05:51:15 [ 39] [ 2] [00] +05:51:15 [ 70] [ 3] [301] +05:51:15 ============================================================================ +05:51:15 Calculate Source COMM Id = 2 +05:51:15 ============================================================================ +05:51:15 + + +waiting on router queue for slot.... +05:51:20 ============================================================================ +05:51:20 Slot Id : <371> +05:51:20 Transaction Type : REQUEST +05:51:20 Received From : +05:51:20 ============================================================================ +05:51:20 FNo. Len. Field Value +05:51:20 ============================================================================ +05:51:20 [ 1] [ 4] [0800] +05:51:20 [ 7] [ 10] [0319224912] +05:51:20 [ 11] [ 6] [071097] +05:51:20 [ 37] [ 12] [57905071097] +05:51:20 [ 70] [ 3] [301] +05:51:20 ============================================================================ +05:51:20 + + +waiting on router queue for slot.... +05:51:20 Sending to : +05:51:20 ============================================================================ +05:51:20 ============================================================================ +05:51:20 Slot Id : <371> +05:51:20 Transaction Type : RESPONSE +05:51:20 Received From : +05:51:20 ============================================================================ +05:51:20 FNo. Len. Field Value +05:51:20 ============================================================================ +05:51:20 [ 1] [ 4] [0810] +05:51:20 [ 7] [ 10] [0319224912] +05:51:20 [ 11] [ 6] [071097] +05:51:20 [ 37] [ 12] [579050710970] +05:51:20 [ 39] [ 2] [00] +05:51:20 [ 70] [ 3] [810] +05:51:20 ============================================================================ +05:51:20 Calculate Source COMM Id = 4 +05:51:20 ============================================================================ +05:51:20 + + +waiting on router queue for slot.... +05:51:26 ============================================================================ +05:51:26 Slot Id : <324> +05:51:26 Transaction Type : REQUEST +05:51:26 Received From : +05:51:26 ============================================================================ +05:51:26 FNo. Len. Field Value +05:51:26 ============================================================================ +05:51:26 [ 1] [ 4] [0800] +05:51:26 [ 7] [ 10] [0319105035] +05:51:26 [ 11] [ 6] [154721] +05:51:26 [ 70] [ 3] [301] +05:51:26 ============================================================================ +05:51:26 + + +waiting on router queue for slot.... +05:51:26 Sending to : +05:51:26 ============================================================================ +05:51:26 ============================================================================ +05:51:26 Slot Id : <324> +05:51:26 Transaction Type : RESPONSE +05:51:26 Received From : +05:51:26 ============================================================================ +05:51:26 FNo. Len. Field Value +05:51:26 ============================================================================ +05:51:26 [ 1] [ 4] [0810] +05:51:26 [ 7] [ 10] [0319105035] +05:51:26 [ 11] [ 6] [154721] +05:51:26 [ 39] [ 2] [00] +05:51:26 [ 70] [ 3] [301] +05:51:26 ============================================================================ +05:51:26 Calculate Source COMM Id = 2 +05:51:26 ============================================================================ +05:51:26 + + +waiting on router queue for slot.... +05:51:37 ============================================================================ +05:51:37 Slot Id : <378> +05:51:37 Transaction Type : REQUEST +05:51:37 Received From : +05:51:37 ============================================================================ +05:51:37 FNo. Len. Field Value +05:51:37 ============================================================================ +05:51:37 [ 1] [ 4] [0800] +05:51:37 [ 7] [ 10] [0319105046] +05:51:37 [ 11] [ 6] [154722] +05:51:37 [ 70] [ 3] [301] +05:51:37 ============================================================================ +05:51:37 + + +waiting on router queue for slot.... +05:51:37 Sending to : +05:51:37 ============================================================================ +05:51:37 ============================================================================ +05:51:37 Slot Id : <378> +05:51:37 Transaction Type : RESPONSE +05:51:37 Received From : +05:51:37 ============================================================================ +05:51:37 FNo. Len. Field Value +05:51:37 ============================================================================ +05:51:37 [ 1] [ 4] [0810] +05:51:37 [ 7] [ 10] [0319105046] +05:51:37 [ 11] [ 6] [154722] +05:51:37 [ 39] [ 2] [00] +05:51:37 [ 70] [ 3] [301] +05:51:37 ============================================================================ +05:51:37 Calculate Source COMM Id = 2 +05:51:37 ============================================================================ +05:51:37 + + +waiting on router queue for slot.... +05:51:43 ============================================================================ +05:51:43 Slot Id : <373> +05:51:43 Transaction Type : REQUEST +05:51:43 Received From : +05:51:43 ============================================================================ +05:51:43 FNo. Len. Field Value +05:51:43 ============================================================================ +05:51:43 [ 1] [ 4] [0800] +05:51:43 [ 7] [ 10] [0320055131] +05:51:43 [ 11] [ 6] [057223] +05:51:43 [ 37] [ 12] [507905057223] +05:51:43 [ 70] [ 3] [ ] +05:51:43 ============================================================================ +05:51:43 + + +waiting on router queue for slot.... +05:51:43 Sending to : +05:51:43 ============================================================================ +05:51:43 ============================================================================ +05:51:43 Slot Id : <373> +05:51:43 Transaction Type : RESPONSE +05:51:43 Received From : +05:51:43 ============================================================================ +05:51:43 FNo. Len. Field Value +05:51:43 ============================================================================ +05:51:43 [ 1] [ 4] [0810] +05:51:43 [ 7] [ 10] [0320055131] +05:51:43 [ 11] [ 6] [057223] +05:51:43 [ 37] [ 12] [507905057223] +05:51:43 [ 39] [ 2] [91] +05:51:43 [ 70] [ 3] [ ] +05:51:43 ============================================================================ +05:51:43 Calculate Source COMM Id = 3 +05:51:43 ============================================================================ +05:51:43 + + +waiting on router queue for slot.... +05:51:47 ============================================================================ +05:51:47 Slot Id : <353> +05:51:47 Transaction Type : REQUEST +05:51:47 Received From : +05:51:47 ============================================================================ +05:51:47 FNo. Len. Field Value +05:51:47 ============================================================================ +05:51:47 [ 1] [ 4] [0800] +05:51:47 [ 7] [ 10] [0319105056] +05:51:47 [ 11] [ 6] [154723] +05:51:47 [ 70] [ 3] [301] +05:51:47 ============================================================================ +05:51:47 + + +waiting on router queue for slot.... +05:51:47 Sending to : +05:51:47 ============================================================================ +05:51:47 ============================================================================ +05:51:47 Slot Id : <353> +05:51:47 Transaction Type : RESPONSE +05:51:47 Received From : +05:51:47 ============================================================================ +05:51:47 FNo. Len. Field Value +05:51:47 ============================================================================ +05:51:47 [ 1] [ 4] [0810] +05:51:47 [ 7] [ 10] [0319105056] +05:51:47 [ 11] [ 6] [154723] +05:51:47 [ 39] [ 2] [00] +05:51:47 [ 70] [ 3] [301] +05:51:47 ============================================================================ +05:51:47 Calculate Source COMM Id = 2 +05:51:47 ============================================================================ +05:51:47 + + +waiting on router queue for slot.... +05:51:56 ============================================================================ +05:51:56 Slot Id : <355> +05:51:56 Transaction Type : REQUEST +05:51:56 Received From : +05:51:56 ============================================================================ +05:51:56 FNo. Len. Field Value +05:51:56 ============================================================================ +05:51:56 [ 1] [ 4] [0800] +05:51:56 [ 2] [ 5] [02531] +05:51:56 [ 3] [ 6] [579058] +05:51:56 [ 7] [ 10] [0319225156] +05:51:56 [ 11] [ 6] [806752] +05:51:56 [ 15] [ 10] [0319225156] +05:51:56 [ 37] [ 11] [57905806752] +05:51:56 [ 70] [ 3] [001] +05:51:56 ============================================================================ +05:51:56 + + +waiting on router queue for slot.... +05:51:56 ============================================================================ +05:51:56 Slot Id : <355> +05:51:56 Transaction Type : RESPONSE +05:51:56 Received From : +05:51:56 ============================================================================ +05:51:56 FNo. Len. Field Value +05:51:56 ============================================================================ +05:51:56 [ 1] [ 4] [0810] +05:51:56 [ 7] [ 10] [0319225156] +05:51:56 [ 11] [ 6] [806752] +05:51:56 [ 15] [ 4] [0319] +05:51:56 [ 37] [ 12] [57905806752] +05:51:56 [ 39] [ 2] [00] +05:51:56 [ 70] [ 3] [001] +05:51:56 ============================================================================ +05:51:56 Sending to : +05:51:56 ============================================================================ +05:51:56 + + +waiting on router queue for slot.... +05:52:03 ============================================================================ +05:52:03 Slot Id : <382> +05:52:03 Transaction Type : REQUEST +05:52:03 Received From : +05:52:03 ============================================================================ +05:52:03 FNo. Len. Field Value +05:52:03 ============================================================================ +05:52:03 [ 1] [ 4] [0800] +05:52:03 [ 7] [ 10] [0319105112] +05:52:03 [ 11] [ 6] [154724] +05:52:03 [ 70] [ 3] [301] +05:52:03 ============================================================================ +05:52:03 + + +waiting on router queue for slot.... +05:52:03 Sending to : +05:52:03 ============================================================================ +05:52:03 ============================================================================ +05:52:03 Slot Id : <382> +05:52:03 Transaction Type : RESPONSE +05:52:03 Received From : +05:52:03 ============================================================================ +05:52:03 FNo. Len. Field Value +05:52:03 ============================================================================ +05:52:03 [ 1] [ 4] [0810] +05:52:03 [ 7] [ 10] [0319105112] +05:52:03 [ 11] [ 6] [154724] +05:52:03 [ 39] [ 2] [00] +05:52:03 [ 70] [ 3] [301] +05:52:03 ============================================================================ +05:52:03 Calculate Source COMM Id = 2 +05:52:03 ============================================================================ +05:52:03 + + +waiting on router queue for slot.... +05:52:05 ============================================================================ +05:52:05 Slot Id : <363> +05:52:05 Transaction Type : REQUEST +05:52:05 Received From : +05:52:05 ============================================================================ +05:52:05 FNo. Len. Field Value +05:52:05 ============================================================================ +05:52:05 [ 1] [ 4] [0800] +05:52:05 [ 7] [ 10] [0320130353] +05:52:05 [ 11] [ 6] [060353] +05:52:05 [ 37] [ 12] [57906060353] +05:52:05 [ 70] [ 3] [301] +05:52:05 ============================================================================ +05:52:05 + + +waiting on router queue for slot.... +05:52:05 Sending to : +05:52:05 ============================================================================ +05:52:05 ============================================================================ +05:52:05 Slot Id : <363> +05:52:05 Transaction Type : RESPONSE +05:52:05 Received From : +05:52:05 ============================================================================ +05:52:05 FNo. Len. Field Value +05:52:05 ============================================================================ +05:52:05 [ 1] [ 4] [0810] +05:52:05 [ 7] [ 10] [0320130353] +05:52:05 [ 11] [ 6] [060353] +05:52:05 [ 37] [ 12] [579060603530] +05:52:05 [ 39] [ 2] [00] +05:52:05 [ 70] [ 3] [810] +05:52:05 ============================================================================ +05:52:05 Calculate Source COMM Id = 6 +05:52:05 ============================================================================ +05:52:05 + + +waiting on router queue for slot.... +05:52:14 ============================================================================ +05:52:14 Slot Id : <358> +05:52:14 Transaction Type : REQUEST +05:52:14 Received From : +05:52:14 ============================================================================ +05:52:14 FNo. Len. Field Value +05:52:14 ============================================================================ +05:52:14 [ 1] [ 4] [0800] +05:52:14 [ 7] [ 10] [0319105123] +05:52:14 [ 11] [ 6] [154725] +05:52:14 [ 70] [ 3] [301] +05:52:14 ============================================================================ +05:52:14 + + +waiting on router queue for slot.... +05:52:14 Sending to : +05:52:14 ============================================================================ +05:52:14 ============================================================================ +05:52:14 Slot Id : <358> +05:52:14 Transaction Type : RESPONSE +05:52:14 Received From : +05:52:14 ============================================================================ +05:52:14 FNo. Len. Field Value +05:52:14 ============================================================================ +05:52:14 [ 1] [ 4] [0810] +05:52:14 [ 7] [ 10] [0319105123] +05:52:14 [ 11] [ 6] [154725] +05:52:14 [ 39] [ 2] [00] +05:52:14 [ 70] [ 3] [301] +05:52:14 ============================================================================ +05:52:14 Calculate Source COMM Id = 2 +05:52:14 ============================================================================ +05:52:14 + + +waiting on router queue for slot.... +05:52:25 ============================================================================ +05:52:25 Slot Id : <338> +05:52:25 Transaction Type : REQUEST +05:52:25 Received From : +05:52:25 ============================================================================ +05:52:25 FNo. Len. Field Value +05:52:25 ============================================================================ +05:52:25 [ 1] [ 4] [0800] +05:52:25 [ 7] [ 10] [0319105133] +05:52:25 [ 11] [ 6] [154726] +05:52:25 [ 70] [ 3] [301] +05:52:25 ============================================================================ +05:52:25 + + +waiting on router queue for slot.... +05:52:25 Sending to : +05:52:25 ============================================================================ +05:52:25 ============================================================================ +05:52:25 Slot Id : <338> +05:52:25 Transaction Type : RESPONSE +05:52:25 Received From : +05:52:25 ============================================================================ +05:52:25 FNo. Len. Field Value +05:52:25 ============================================================================ +05:52:25 [ 1] [ 4] [0810] +05:52:25 [ 7] [ 10] [0319105133] +05:52:25 [ 11] [ 6] [154726] +05:52:25 [ 39] [ 2] [00] +05:52:25 [ 70] [ 3] [301] +05:52:25 ============================================================================ +05:52:25 Calculate Source COMM Id = 2 +05:52:25 ============================================================================ +05:52:25 + + +waiting on router queue for slot.... +05:52:36 ============================================================================ +05:52:36 Slot Id : <370> +05:52:36 Transaction Type : REQUEST +05:52:36 Received From : +05:52:36 ============================================================================ +05:52:36 FNo. Len. Field Value +05:52:36 ============================================================================ +05:52:36 [ 1] [ 4] [0800] +05:52:36 [ 7] [ 10] [0319105144] +05:52:36 [ 11] [ 6] [154727] +05:52:36 [ 70] [ 3] [301] +05:52:36 ============================================================================ +05:52:36 + + +waiting on router queue for slot.... +05:52:36 Sending to : +05:52:36 ============================================================================ +05:52:36 ============================================================================ +05:52:36 Slot Id : <370> +05:52:36 Transaction Type : RESPONSE +05:52:36 Received From : +05:52:36 ============================================================================ +05:52:36 FNo. Len. Field Value +05:52:36 ============================================================================ +05:52:36 [ 1] [ 4] [0810] +05:52:36 [ 7] [ 10] [0319105144] +05:52:36 [ 11] [ 6] [154727] +05:52:36 [ 39] [ 2] [00] +05:52:36 [ 70] [ 3] [301] +05:52:36 ============================================================================ +05:52:36 Calculate Source COMM Id = 2 +05:52:36 ============================================================================ +05:52:36 + + +waiting on router queue for slot.... +05:52:51 ============================================================================ +05:52:51 Slot Id : <360> +05:52:51 Transaction Type : REQUEST +05:52:51 Received From : +05:52:51 ============================================================================ +05:52:51 FNo. Len. Field Value +05:52:51 ============================================================================ +05:52:51 [ 1] [ 4] [0800] +05:52:51 [ 7] [ 10] [0319105200] +05:52:51 [ 11] [ 6] [154728] +05:52:51 [ 70] [ 3] [301] +05:52:51 ============================================================================ +05:52:51 + + +waiting on router queue for slot.... +05:52:51 Sending to : +05:52:51 ============================================================================ +05:52:51 ============================================================================ +05:52:51 Slot Id : <360> +05:52:51 Transaction Type : RESPONSE +05:52:51 Received From : +05:52:51 ============================================================================ +05:52:51 FNo. Len. Field Value +05:52:51 ============================================================================ +05:52:51 [ 1] [ 4] [0810] +05:52:51 [ 7] [ 10] [0319105200] +05:52:51 [ 11] [ 6] [154728] +05:52:51 [ 39] [ 2] [00] +05:52:51 [ 70] [ 3] [301] +05:52:51 ============================================================================ +05:52:51 Calculate Source COMM Id = 2 +05:52:51 ============================================================================ +05:52:51 + + +waiting on router queue for slot.... +05:52:58 ============================================================================ +05:52:58 Slot Id : <379> +05:52:58 Transaction Type : REQUEST +05:52:58 Received From : +05:52:58 ============================================================================ +05:52:58 FNo. Len. Field Value +05:52:58 ============================================================================ +05:52:58 [ 1] [ 4] [0800] +05:52:58 [ 2] [ 5] [02531] +05:52:58 [ 3] [ 6] [579058] +05:52:58 [ 7] [ 10] [0319225258] +05:52:58 [ 11] [ 6] [806753] +05:52:58 [ 15] [ 10] [0319225258] +05:52:58 [ 37] [ 11] [57905806753] +05:52:58 [ 70] [ 3] [001] +05:52:58 ============================================================================ +05:52:58 + + +waiting on router queue for slot.... +05:52:58 ============================================================================ +05:52:58 Slot Id : <379> +05:52:58 Transaction Type : RESPONSE +05:52:58 Received From : +05:52:58 ============================================================================ +05:52:58 FNo. Len. Field Value +05:52:58 ============================================================================ +05:52:58 [ 1] [ 4] [0810] +05:52:58 [ 7] [ 10] [0319225258] +05:52:58 [ 11] [ 6] [806753] +05:52:58 [ 15] [ 4] [0319] +05:52:58 [ 37] [ 12] [57905806753] +05:52:58 [ 39] [ 2] [00] +05:52:58 [ 70] [ 3] [001] +05:52:58 ============================================================================ +05:52:58 Sending to : +05:52:58 ============================================================================ +05:52:58 + + +waiting on router queue for slot.... +05:53:07 ============================================================================ +05:53:07 Slot Id : <396> +05:53:07 Transaction Type : REQUEST +05:53:07 Received From : +05:53:07 ============================================================================ +05:53:07 FNo. Len. Field Value +05:53:07 ============================================================================ +05:53:07 [ 1] [ 4] [0800] +05:53:07 [ 7] [ 10] [0319105216] +05:53:07 [ 11] [ 6] [154729] +05:53:07 [ 70] [ 3] [301] +05:53:07 ============================================================================ +05:53:07 + + +waiting on router queue for slot.... +05:53:07 Sending to : +05:53:07 ============================================================================ +05:53:07 ============================================================================ +05:53:07 Slot Id : <396> +05:53:07 Transaction Type : RESPONSE +05:53:07 Received From : +05:53:07 ============================================================================ +05:53:07 FNo. Len. Field Value +05:53:07 ============================================================================ +05:53:07 [ 1] [ 4] [0810] +05:53:07 [ 7] [ 10] [0319105216] +05:53:07 [ 11] [ 6] [154729] +05:53:07 [ 39] [ 2] [00] +05:53:07 [ 70] [ 3] [301] +05:53:07 ============================================================================ +05:53:07 Calculate Source COMM Id = 2 +05:53:07 ============================================================================ +05:53:07 + + +waiting on router queue for slot.... +05:53:10 ============================================================================ +05:53:10 Slot Id : <354> +05:53:10 Transaction Type : REQUEST +05:53:10 Received From : +05:53:10 ============================================================================ +05:53:10 FNo. Len. Field Value +05:53:10 ============================================================================ +05:53:10 [ 1] [ 4] [0800] +05:53:10 [ 7] [ 10] [0320130459] +05:53:10 [ 11] [ 6] [060459] +05:53:10 [ 37] [ 12] [57906060459] +05:53:10 [ 70] [ 3] [301] +05:53:10 ============================================================================ +05:53:10 + + +waiting on router queue for slot.... +05:53:10 Sending to : +05:53:10 ============================================================================ +05:53:10 ============================================================================ +05:53:10 Slot Id : <354> +05:53:10 Transaction Type : RESPONSE +05:53:10 Received From : +05:53:10 ============================================================================ +05:53:10 FNo. Len. Field Value +05:53:10 ============================================================================ +05:53:10 [ 1] [ 4] [0810] +05:53:10 [ 7] [ 10] [0320130459] +05:53:10 [ 11] [ 6] [060459] +05:53:10 [ 37] [ 12] [579060604590] +05:53:10 [ 39] [ 2] [00] +05:53:10 [ 70] [ 3] [810] +05:53:10 ============================================================================ +05:53:10 Calculate Source COMM Id = 6 +05:53:10 ============================================================================ +05:53:10 + + +waiting on router queue for slot.... +05:53:17 ============================================================================ +05:53:17 Slot Id : <369> +05:53:17 Transaction Type : REQUEST +05:53:17 Received From : +05:53:17 ============================================================================ +05:53:17 FNo. Len. Field Value +05:53:17 ============================================================================ +05:53:17 [ 1] [ 4] [0200] +05:53:17 [ 2] [ 16] [6688990040024497] +05:53:17 [ 3] [ 6] [301000] +05:53:17 [ 4] [ 12] [000000000000] +05:53:17 [ 7] [ 10] [0320055314] +05:53:17 [ 11] [ 6] [662404] +05:53:17 [ 12] [ 6] [055314] +05:53:17 [ 13] [ 4] [0320] +05:53:17 [ 15] [ 4] [0320] +05:53:17 [ 18] [ 4] [6011] +05:53:17 [ 22] [ 3] [900] +05:53:17 [ 25] [ 2] [02] +05:53:17 [ 28] [ 9] [D00000000] +05:53:17 [ 32] [ 6] [621354] +05:53:17 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:53:17 [ 37] [ 12] [507902834990] +05:53:17 [ 41] [ 8] [01007700] +05:53:17 [ 42] [ 15] [NATIVE ] +05:53:17 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +05:53:17 [ 49] [ 3] [418] +05:53:17 [ 52] [ 16] [1904E697B2DF02ED] +05:53:17 ============================================================================ +05:53:17 + + +waiting on router queue for slot.... +05:53:17 Sending to : +05:53:17 ============================================================================ +05:53:17 Sending to : +05:53:17 ============================================================================ +05:53:17 ============================================================================ +05:53:17 Slot Id : <369> +05:53:17 Transaction Type : REQUEST +05:53:17 Received From : +05:53:17 ============================================================================ +05:53:17 FNo. Len. Field Value +05:53:17 ============================================================================ +05:53:17 [ 1] [ 4] [0200] +05:53:17 [ 2] [ 16] [6688990040024497] +05:53:17 [ 3] [ 6] [301000] +05:53:17 [ 4] [ 12] [000000000000] +05:53:17 [ 7] [ 10] [0320055314] +05:53:17 [ 11] [ 6] [662404] +05:53:17 [ 12] [ 6] [055314] +05:53:17 [ 13] [ 4] [0320] +05:53:17 [ 15] [ 4] [0320] +05:53:17 [ 18] [ 4] [6011] +05:53:17 [ 22] [ 3] [900] +05:53:17 [ 25] [ 2] [02] +05:53:17 [ 28] [ 9] [D00000000] +05:53:17 [ 32] [ 6] [621354] +05:53:17 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:53:17 [ 37] [ 12] [507902834990] +05:53:17 [ 41] [ 8] [01007700] +05:53:17 [ 42] [ 15] [NATIVE ] +05:53:17 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +05:53:17 [ 49] [ 3] [418] +05:53:17 [ 52] [ 16] [1904E697B2DF02ED] +05:53:17 ============================================================================ +05:53:17 + + +waiting on router queue for slot.... +05:53:17 Sending to : +05:53:17 ============================================================================ +05:53:17 ============================================================================ +05:53:17 Slot Id : <369> +05:53:17 Transaction Type : REQUEST +05:53:17 Received From : +05:53:17 ============================================================================ +05:53:17 FNo. Len. Field Value +05:53:17 ============================================================================ +05:53:17 [ 1] [ 4] [0200] +05:53:17 [ 2] [ 16] [6688990040024497] +05:53:17 [ 3] [ 6] [301000] +05:53:17 [ 4] [ 12] [000000000000] +05:53:17 [ 7] [ 10] [0320055314] +05:53:17 [ 11] [ 6] [662404] +05:53:17 [ 12] [ 6] [055314] +05:53:17 [ 13] [ 4] [0320] +05:53:17 [ 15] [ 4] [0320] +05:53:17 [ 18] [ 4] [6011] +05:53:17 [ 22] [ 3] [900] +05:53:17 [ 25] [ 2] [02] +05:53:17 [ 28] [ 9] [D00000000] +05:53:17 [ 32] [ 6] [621354] +05:53:17 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:53:17 [ 37] [ 12] [507902834990] +05:53:17 [ 41] [ 8] [01007700] +05:53:17 [ 42] [ 15] [NATIVE ] +05:53:17 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +05:53:17 [ 49] [ 3] [418] +05:53:17 [ 52] [ 16] [62710A7F28E79520] +05:53:17 ============================================================================ +05:53:17 + + +waiting on router queue for slot.... +05:53:17 Sending to : <4> +05:53:17 ============================================================================ +05:53:18 ============================================================================ +05:53:18 Slot Id : <351> +05:53:18 Transaction Type : REQUEST +05:53:18 Received From : +05:53:18 ============================================================================ +05:53:18 FNo. Len. Field Value +05:53:18 ============================================================================ +05:53:18 [ 1] [ 4] [0800] +05:53:18 [ 7] [ 10] [0319105227] +05:53:18 [ 11] [ 6] [154730] +05:53:18 [ 70] [ 3] [301] +05:53:18 ============================================================================ +05:53:18 + + +waiting on router queue for slot.... +05:53:18 Sending to : +05:53:18 ============================================================================ +05:53:18 ============================================================================ +05:53:18 Slot Id : <351> +05:53:18 Transaction Type : RESPONSE +05:53:18 Received From : +05:53:18 ============================================================================ +05:53:18 FNo. Len. Field Value +05:53:18 ============================================================================ +05:53:18 [ 1] [ 4] [0810] +05:53:18 [ 7] [ 10] [0319105227] +05:53:18 [ 11] [ 6] [154730] +05:53:18 [ 39] [ 2] [00] +05:53:18 [ 70] [ 3] [301] +05:53:18 ============================================================================ +05:53:18 Calculate Source COMM Id = 2 +05:53:18 ============================================================================ +05:53:18 + + +waiting on router queue for slot.... +05:53:18 ============================================================================ +05:53:18 Slot Id : <369> +05:53:18 Transaction Type : RESPONSE +05:53:18 Received From : +05:53:18 ============================================================================ +05:53:18 FNo. Len. Field Value +05:53:18 ============================================================================ +05:53:18 [ 1] [ 4] [0210] +05:53:18 [ 2] [ 16] [6688990040024497] +05:53:18 [ 3] [ 6] [301000] +05:53:18 [ 4] [ 12] [000000000000] +05:53:18 [ 11] [ 6] [662404] +05:53:18 [ 12] [ 6] [055314] +05:53:18 [ 15] [ 4] [0320] +05:53:18 [ 18] [ 4] [6011] +05:53:18 [ 32] [ 6] [621354] +05:53:18 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:53:18 [ 37] [ 12] [507902834990] +05:53:18 [ 38] [ 6] [780729] +05:53:18 [ 39] [ 2] [00] +05:53:18 [ 41] [ 8] [01007700] +05:53:18 [ 49] [ 3] [418] +05:53:18 [ 54] [ 20] [1002418C000072583341] +05:53:18 ============================================================================ +05:53:18 Sending to : +05:53:18 ============================================================================ +05:53:18 + + +waiting on router queue for slot.... +05:53:20 ============================================================================ +05:53:20 Slot Id : <369> +05:53:20 Transaction Type : RESPONSE +05:53:20 Received From : +05:53:20 ============================================================================ +05:53:20 FNo. Len. Field Value +05:53:20 ============================================================================ +05:53:20 [ 1] [ 4] [0210] +05:53:20 [ 2] [ 16] [6688990040024497] +05:53:20 [ 3] [ 6] [301000] +05:53:20 [ 4] [ 12] [000000000000] +05:53:20 [ 11] [ 6] [662404] +05:53:20 [ 12] [ 6] [055314] +05:53:20 [ 15] [ 4] [0320] +05:53:20 [ 18] [ 4] [6011] +05:53:20 [ 32] [ 6] [621354] +05:53:20 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:53:20 [ 37] [ 12] [507902834990] +05:53:20 [ 38] [ 6] [780729] +05:53:20 [ 39] [ 2] [00] +05:53:20 [ 41] [ 8] [01007700] +05:53:20 [ 49] [ 3] [418] +05:53:20 [ 54] [ 20] [1002418C000072583341] +05:53:20 ============================================================================ +05:53:20 Calculate Source COMM Id = 0 +05:53:20 ============================================================================ +05:53:20 + + +waiting on router queue for slot.... +05:53:29 ============================================================================ +05:53:29 Slot Id : <374> +05:53:29 Transaction Type : REQUEST +05:53:29 Received From : +05:53:29 ============================================================================ +05:53:29 FNo. Len. Field Value +05:53:29 ============================================================================ +05:53:29 [ 1] [ 4] [0800] +05:53:29 [ 7] [ 10] [0319105238] +05:53:29 [ 11] [ 6] [154731] +05:53:29 [ 70] [ 3] [301] +05:53:29 ============================================================================ +05:53:29 + + +waiting on router queue for slot.... +05:53:29 Sending to : +05:53:29 ============================================================================ +05:53:29 ============================================================================ +05:53:29 Slot Id : <374> +05:53:29 Transaction Type : RESPONSE +05:53:29 Received From : +05:53:29 ============================================================================ +05:53:29 FNo. Len. Field Value +05:53:29 ============================================================================ +05:53:29 [ 1] [ 4] [0810] +05:53:29 [ 7] [ 10] [0319105238] +05:53:29 [ 11] [ 6] [154731] +05:53:29 [ 39] [ 2] [00] +05:53:29 [ 70] [ 3] [301] +05:53:29 ============================================================================ +05:53:29 Calculate Source COMM Id = 2 +05:53:29 ============================================================================ +05:53:29 + + +waiting on router queue for slot.... +05:53:38 ============================================================================ +05:53:38 Slot Id : <389> +05:53:38 Transaction Type : REQUEST +05:53:38 Received From : +05:53:38 ============================================================================ +05:53:38 FNo. Len. Field Value +05:53:38 ============================================================================ +05:53:38 [ 1] [ 4] [0200] +05:53:38 [ 2] [ 16] [6213541000042609] +05:53:38 [ 3] [ 6] [010000] +05:53:38 [ 4] [ 12] [000100000000] +05:53:38 [ 7] [ 10] [0319225246] +05:53:38 [ 11] [ 6] [266537] +05:53:38 [ 12] [ 6] [055246] +05:53:38 [ 13] [ 4] [0320] +05:53:38 [ 14] [ 4] [4912] +05:53:38 [ 15] [ 4] [0320] +05:53:38 [ 18] [ 4] [6011] +05:53:38 [ 19] [ 3] [418] +05:53:38 [ 22] [ 3] [021] +05:53:38 [ 25] [ 2] [01] +05:53:38 [ 28] [ 9] [D00002000] +05:53:38 [ 32] [ 6] [180893] +05:53:38 [ 35] [ 32] [6213541000042609=491212014260551] +05:53:38 [ 37] [ 12] [507922266537] +05:53:38 [ 41] [ 8] [0115LPBR] +05:53:38 [ 42] [ 15] [999999 ] +05:53:38 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +05:53:38 [ 49] [ 3] [418] +05:53:38 [ 52] [ 16] [53CEBB0EB31E2321] +05:53:38 ============================================================================ +05:53:38 + + +waiting on router queue for slot.... +05:53:38 Sending to : +05:53:38 ============================================================================ +05:53:38 Sending to : +05:53:38 ============================================================================ +05:53:38 ============================================================================ +05:53:38 Slot Id : <389> +05:53:38 Transaction Type : REQUEST +05:53:38 Received From : +05:53:38 ============================================================================ +05:53:38 FNo. Len. Field Value +05:53:38 ============================================================================ +05:53:38 [ 1] [ 4] [0200] +05:53:38 [ 2] [ 16] [6213541000042609] +05:53:38 [ 3] [ 6] [010000] +05:53:38 [ 4] [ 12] [000100000000] +05:53:38 [ 7] [ 10] [0319225246] +05:53:38 [ 11] [ 6] [266537] +05:53:38 [ 12] [ 6] [055246] +05:53:38 [ 13] [ 4] [0320] +05:53:38 [ 14] [ 4] [4912] +05:53:38 [ 15] [ 4] [0320] +05:53:38 [ 18] [ 4] [6011] +05:53:38 [ 19] [ 3] [418] +05:53:38 [ 22] [ 3] [021] +05:53:38 [ 25] [ 2] [01] +05:53:38 [ 28] [ 9] [D00002000] +05:53:38 [ 32] [ 6] [180893] +05:53:38 [ 35] [ 32] [6213541000042609=491212014260551] +05:53:38 [ 37] [ 12] [507922266537] +05:53:38 [ 41] [ 8] [0115LPBR] +05:53:38 [ 42] [ 15] [999999 ] +05:53:38 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +05:53:38 [ 49] [ 3] [418] +05:53:38 [ 52] [ 16] [53CEBB0EB31E2321] +05:53:38 ============================================================================ +05:53:38 + + +waiting on router queue for slot.... +05:53:38 Sending to : +05:53:38 ============================================================================ +05:53:38 ============================================================================ +05:53:38 Slot Id : <389> +05:53:38 Transaction Type : REQUEST +05:53:38 Received From : +05:53:38 ============================================================================ +05:53:38 FNo. Len. Field Value +05:53:38 ============================================================================ +05:53:38 [ 1] [ 4] [0200] +05:53:38 [ 2] [ 16] [6213541000042609] +05:53:38 [ 3] [ 6] [010000] +05:53:38 [ 4] [ 12] [000100000000] +05:53:38 [ 7] [ 10] [0319225246] +05:53:38 [ 11] [ 6] [266537] +05:53:38 [ 12] [ 6] [055246] +05:53:38 [ 13] [ 4] [0320] +05:53:38 [ 14] [ 4] [4912] +05:53:38 [ 15] [ 4] [0320] +05:53:38 [ 18] [ 4] [6011] +05:53:38 [ 19] [ 3] [418] +05:53:38 [ 22] [ 3] [021] +05:53:38 [ 25] [ 2] [01] +05:53:38 [ 28] [ 9] [D00002000] +05:53:38 [ 32] [ 6] [180893] +05:53:38 [ 35] [ 32] [6213541000042609=491212014260551] +05:53:38 [ 37] [ 12] [507922266537] +05:53:38 [ 41] [ 8] [0115LPBR] +05:53:38 [ 42] [ 15] [999999 ] +05:53:38 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +05:53:38 [ 49] [ 3] [418] +05:53:38 [ 52] [ 16] [74B6247E83094988] +05:53:38 ============================================================================ +05:53:38 + + +waiting on router queue for slot.... +05:53:38 Sending to : <0> +05:53:38 ============================================================================ +05:53:39 ============================================================================ +05:53:39 Slot Id : <389> +05:53:39 Transaction Type : RESPONSE +05:53:39 Received From : +05:53:39 ============================================================================ +05:53:39 FNo. Len. Field Value +05:53:39 ============================================================================ +05:53:39 [ 1] [ 4] [0210] +05:53:39 [ 2] [ 16] [6213541000042609] +05:53:39 [ 3] [ 6] [010000] +05:53:39 [ 4] [ 12] [000100000000] +05:53:39 [ 7] [ 10] [0319225246] +05:53:39 [ 11] [ 6] [266537] +05:53:39 [ 12] [ 6] [055246] +05:53:39 [ 13] [ 4] [0320] +05:53:39 [ 15] [ 4] [0320] +05:53:39 [ 18] [ 4] [6011] +05:53:39 [ 19] [ 3] [418] +05:53:39 [ 32] [ 6] [180893] +05:53:39 [ 35] [ 32] [6213541000042609=491212014260551] +05:53:39 [ 37] [ 12] [507922266537] +05:53:39 [ 38] [ 6] [391225] +05:53:39 [ 39] [ 2] [00] +05:53:39 [ 41] [ 8] [0115LPBR] +05:53:39 [ 49] [ 3] [418] +05:53:39 [ 54] [ 40] [0001418C0002539376050002418C000253937605] +05:53:39 ============================================================================ +05:53:39 Sending to : +05:53:39 ============================================================================ +05:53:39 + + +waiting on router queue for slot.... +05:53:39 ============================================================================ +05:53:39 Slot Id : <390> +05:53:39 Transaction Type : REQUEST +05:53:39 Received From : +05:53:39 ============================================================================ +05:53:39 FNo. Len. Field Value +05:53:39 ============================================================================ +05:53:39 [ 1] [ 4] [0800] +05:53:39 [ 7] [ 10] [0319105248] +05:53:39 [ 11] [ 6] [154732] +05:53:39 [ 70] [ 3] [301] +05:53:39 ============================================================================ +05:53:39 + + +waiting on router queue for slot.... +05:53:39 Sending to : +05:53:39 ============================================================================ +05:53:39 ============================================================================ +05:53:39 Slot Id : <390> +05:53:39 Transaction Type : RESPONSE +05:53:39 Received From : +05:53:39 ============================================================================ +05:53:39 FNo. Len. Field Value +05:53:39 ============================================================================ +05:53:39 [ 1] [ 4] [0810] +05:53:39 [ 7] [ 10] [0319105248] +05:53:39 [ 11] [ 6] [154732] +05:53:39 [ 39] [ 2] [00] +05:53:39 [ 70] [ 3] [301] +05:53:39 ============================================================================ +05:53:39 Calculate Source COMM Id = 2 +05:53:39 ============================================================================ +05:53:39 + + +waiting on router queue for slot.... +05:53:41 ============================================================================ +05:53:41 Slot Id : <389> +05:53:41 Transaction Type : RESPONSE +05:53:41 Received From : +05:53:41 ============================================================================ +05:53:41 FNo. Len. Field Value +05:53:41 ============================================================================ +05:53:41 [ 1] [ 4] [0210] +05:53:41 [ 2] [ 16] [6213541000042609] +05:53:41 [ 3] [ 6] [010000] +05:53:41 [ 4] [ 12] [000100000000] +05:53:41 [ 7] [ 10] [0319225246] +05:53:41 [ 11] [ 6] [266537] +05:53:41 [ 12] [ 6] [055246] +05:53:41 [ 13] [ 4] [0320] +05:53:41 [ 15] [ 4] [0320] +05:53:41 [ 18] [ 4] [6011] +05:53:41 [ 19] [ 3] [418] +05:53:41 [ 32] [ 6] [180893] +05:53:41 [ 35] [ 32] [6213541000042609=491212014260551] +05:53:41 [ 37] [ 12] [507922266537] +05:53:41 [ 38] [ 6] [391225] +05:53:41 [ 39] [ 2] [00] +05:53:41 [ 41] [ 8] [0115LPBR] +05:53:41 [ 49] [ 3] [418] +05:53:41 [ 54] [ 40] [0001418C0002539376050002418C000253937605] +05:53:41 ============================================================================ +05:53:41 Calculate Source COMM Id = 2 +05:53:41 ============================================================================ +05:53:41 + + +waiting on router queue for slot.... +05:53:57 ============================================================================ +05:53:57 Slot Id : <376> +05:53:57 Transaction Type : REQUEST +05:53:57 Received From : +05:53:57 ============================================================================ +05:53:57 FNo. Len. Field Value +05:53:57 ============================================================================ +05:53:57 [ 1] [ 4] [0800] +05:53:57 [ 7] [ 10] [0319105304] +05:53:57 [ 11] [ 6] [154733] +05:53:57 [ 70] [ 3] [301] +05:53:57 ============================================================================ +05:53:57 + + +waiting on router queue for slot.... +05:53:57 Sending to : +05:53:57 ============================================================================ +05:53:57 ============================================================================ +05:53:57 Slot Id : <376> +05:53:57 Transaction Type : RESPONSE +05:53:57 Received From : +05:53:57 ============================================================================ +05:53:57 FNo. Len. Field Value +05:53:57 ============================================================================ +05:53:57 [ 1] [ 4] [0810] +05:53:57 [ 7] [ 10] [0319105304] +05:53:57 [ 11] [ 6] [154733] +05:53:57 [ 39] [ 2] [00] +05:53:57 [ 70] [ 3] [301] +05:53:57 ============================================================================ +05:53:57 Calculate Source COMM Id = 2 +05:53:57 ============================================================================ +05:53:57 + + +waiting on router queue for slot.... +05:54:00 ============================================================================ +05:54:00 Slot Id : <359> +05:54:00 Transaction Type : REQUEST +05:54:00 Received From : +05:54:00 ============================================================================ +05:54:00 FNo. Len. Field Value +05:54:00 ============================================================================ +05:54:00 [ 1] [ 4] [0800] +05:54:00 [ 2] [ 5] [02531] +05:54:00 [ 3] [ 6] [579058] +05:54:00 [ 7] [ 10] [0319225400] +05:54:00 [ 11] [ 6] [806754] +05:54:00 [ 15] [ 10] [0319225400] +05:54:00 [ 37] [ 11] [57905806754] +05:54:00 [ 70] [ 3] [001] +05:54:00 ============================================================================ +05:54:00 + + +waiting on router queue for slot.... +05:54:00 ============================================================================ +05:54:00 Slot Id : <359> +05:54:00 Transaction Type : RESPONSE +05:54:00 Received From : +05:54:00 ============================================================================ +05:54:00 FNo. Len. Field Value +05:54:00 ============================================================================ +05:54:00 [ 1] [ 4] [0810] +05:54:00 [ 7] [ 10] [0319225400] +05:54:00 [ 11] [ 6] [806754] +05:54:00 [ 15] [ 4] [0319] +05:54:00 [ 37] [ 12] [57905806754] +05:54:00 [ 39] [ 2] [00] +05:54:00 [ 70] [ 3] [001] +05:54:00 ============================================================================ +05:54:00 Sending to : +05:54:00 ============================================================================ +05:54:00 + + +waiting on router queue for slot.... +05:54:12 ============================================================================ +05:54:12 Slot Id : <395> +05:54:12 Transaction Type : REQUEST +05:54:12 Received From : +05:54:12 ============================================================================ +05:54:12 FNo. Len. Field Value +05:54:12 ============================================================================ +05:54:12 [ 1] [ 4] [0800] +05:54:12 [ 7] [ 10] [0319105320] +05:54:12 [ 11] [ 6] [154734] +05:54:12 [ 70] [ 3] [301] +05:54:12 ============================================================================ +05:54:12 + + +waiting on router queue for slot.... +05:54:12 Sending to : +05:54:12 ============================================================================ +05:54:12 ============================================================================ +05:54:12 Slot Id : <395> +05:54:12 Transaction Type : RESPONSE +05:54:12 Received From : +05:54:12 ============================================================================ +05:54:12 FNo. Len. Field Value +05:54:12 ============================================================================ +05:54:12 [ 1] [ 4] [0810] +05:54:12 [ 7] [ 10] [0319105320] +05:54:12 [ 11] [ 6] [154734] +05:54:12 [ 39] [ 2] [00] +05:54:12 [ 70] [ 3] [301] +05:54:12 ============================================================================ +05:54:12 Calculate Source COMM Id = 2 +05:54:12 ============================================================================ +05:54:12 + + +waiting on router queue for slot.... +05:54:15 ============================================================================ +05:54:15 Slot Id : <361> +05:54:15 Transaction Type : REQUEST +05:54:15 Received From : +05:54:15 ============================================================================ +05:54:15 FNo. Len. Field Value +05:54:15 ============================================================================ +05:54:15 [ 1] [ 4] [0800] +05:54:15 [ 7] [ 10] [0320130604] +05:54:15 [ 11] [ 6] [060604] +05:54:15 [ 37] [ 12] [57906060604] +05:54:15 [ 70] [ 3] [301] +05:54:15 ============================================================================ +05:54:15 + + +waiting on router queue for slot.... +05:54:15 Sending to : +05:54:15 ============================================================================ +05:54:15 ============================================================================ +05:54:15 Slot Id : <361> +05:54:15 Transaction Type : RESPONSE +05:54:15 Received From : +05:54:15 ============================================================================ +05:54:15 FNo. Len. Field Value +05:54:15 ============================================================================ +05:54:15 [ 1] [ 4] [0810] +05:54:15 [ 7] [ 10] [0320130604] +05:54:15 [ 11] [ 6] [060604] +05:54:15 [ 37] [ 12] [579060606040] +05:54:15 [ 39] [ 2] [00] +05:54:15 [ 70] [ 3] [810] +05:54:15 ============================================================================ +05:54:15 Calculate Source COMM Id = 6 +05:54:15 ============================================================================ +05:54:15 + + +waiting on router queue for slot.... +05:54:21 ============================================================================ +05:54:21 Slot Id : <410> +05:54:21 Transaction Type : REQUEST +05:54:21 Received From : +05:54:21 ============================================================================ +05:54:21 FNo. Len. Field Value +05:54:21 ============================================================================ +05:54:21 [ 1] [ 4] [0200] +05:54:21 [ 2] [ 16] [6688990040024497] +05:54:21 [ 3] [ 6] [011000] +05:54:21 [ 4] [ 12] [000050000000] +05:54:21 [ 7] [ 10] [0320055417] +05:54:21 [ 11] [ 6] [662412] +05:54:21 [ 12] [ 6] [055417] +05:54:21 [ 13] [ 4] [0320] +05:54:21 [ 15] [ 4] [0320] +05:54:21 [ 18] [ 4] [6011] +05:54:21 [ 22] [ 3] [900] +05:54:21 [ 25] [ 2] [02] +05:54:21 [ 28] [ 9] [D00002000] +05:54:21 [ 32] [ 6] [621354] +05:54:21 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:54:21 [ 37] [ 12] [507902834992] +05:54:21 [ 41] [ 8] [01007700] +05:54:21 [ 42] [ 15] [NATIVE ] +05:54:21 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +05:54:21 [ 49] [ 3] [418] +05:54:21 [ 52] [ 16] [B94453474F1FBAFA] +05:54:21 ============================================================================ +05:54:21 + + +waiting on router queue for slot.... +05:54:21 Sending to : +05:54:21 ============================================================================ +05:54:21 Sending to : +05:54:21 ============================================================================ +05:54:21 ============================================================================ +05:54:21 Slot Id : <410> +05:54:21 Transaction Type : REQUEST +05:54:21 Received From : +05:54:21 ============================================================================ +05:54:21 FNo. Len. Field Value +05:54:21 ============================================================================ +05:54:21 [ 1] [ 4] [0200] +05:54:21 [ 2] [ 16] [6688990040024497] +05:54:21 [ 3] [ 6] [011000] +05:54:21 [ 4] [ 12] [000050000000] +05:54:21 [ 7] [ 10] [0320055417] +05:54:21 [ 11] [ 6] [662412] +05:54:21 [ 12] [ 6] [055417] +05:54:21 [ 13] [ 4] [0320] +05:54:21 [ 15] [ 4] [0320] +05:54:21 [ 18] [ 4] [6011] +05:54:21 [ 22] [ 3] [900] +05:54:21 [ 25] [ 2] [02] +05:54:21 [ 28] [ 9] [D00002000] +05:54:21 [ 32] [ 6] [621354] +05:54:21 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:54:21 [ 37] [ 12] [507902834992] +05:54:21 [ 41] [ 8] [01007700] +05:54:21 [ 42] [ 15] [NATIVE ] +05:54:21 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +05:54:21 [ 49] [ 3] [418] +05:54:21 [ 52] [ 16] [B94453474F1FBAFA] +05:54:21 ============================================================================ +05:54:21 + + +waiting on router queue for slot.... +05:54:21 Sending to : +05:54:21 ============================================================================ +05:54:21 ============================================================================ +05:54:21 Slot Id : <410> +05:54:21 Transaction Type : REQUEST +05:54:21 Received From : +05:54:21 ============================================================================ +05:54:21 FNo. Len. Field Value +05:54:21 ============================================================================ +05:54:21 [ 1] [ 4] [0200] +05:54:21 [ 2] [ 16] [6688990040024497] +05:54:21 [ 3] [ 6] [011000] +05:54:21 [ 4] [ 12] [000050000000] +05:54:21 [ 7] [ 10] [0320055417] +05:54:21 [ 11] [ 6] [662412] +05:54:21 [ 12] [ 6] [055417] +05:54:21 [ 13] [ 4] [0320] +05:54:21 [ 15] [ 4] [0320] +05:54:21 [ 18] [ 4] [6011] +05:54:21 [ 22] [ 3] [900] +05:54:21 [ 25] [ 2] [02] +05:54:21 [ 28] [ 9] [D00002000] +05:54:21 [ 32] [ 6] [621354] +05:54:21 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:54:21 [ 37] [ 12] [507902834992] +05:54:21 [ 41] [ 8] [01007700] +05:54:21 [ 42] [ 15] [NATIVE ] +05:54:21 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +05:54:21 [ 49] [ 3] [418] +05:54:21 [ 52] [ 16] [8B93C3FD2BAB3DBA] +05:54:21 ============================================================================ +05:54:21 + + +waiting on router queue for slot.... +05:54:21 Sending to : <4> +05:54:21 ============================================================================ +05:54:21 ============================================================================ +05:54:21 Slot Id : <410> +05:54:21 Transaction Type : RESPONSE +05:54:21 Received From : +05:54:21 ============================================================================ +05:54:21 FNo. Len. Field Value +05:54:21 ============================================================================ +05:54:21 [ 1] [ 4] [0210] +05:54:21 [ 2] [ 16] [6688990040024497] +05:54:21 [ 3] [ 6] [011000] +05:54:21 [ 4] [ 12] [000050000000] +05:54:21 [ 7] [ 10] [0320055417] +05:54:21 [ 11] [ 6] [662412] +05:54:21 [ 12] [ 6] [055417] +05:54:21 [ 13] [ 4] [0320] +05:54:21 [ 15] [ 4] [0320] +05:54:21 [ 18] [ 4] [6011] +05:54:21 [ 22] [ 3] [021] +05:54:21 [ 32] [ 6] [621354] +05:54:21 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:54:21 [ 37] [ 12] [507902834992] +05:54:21 [ 38] [ 6] [055213] +05:54:21 [ 39] [ 2] [55] +05:54:21 [ 41] [ 8] [01007700] +05:54:21 [ 49] [ 3] [418] +05:54:21 ============================================================================ +05:54:21 Sending to : +05:54:21 ============================================================================ +05:54:21 + + +waiting on router queue for slot.... +05:54:22 ============================================================================ +05:54:22 Slot Id : <410> +05:54:22 Transaction Type : RESPONSE +05:54:22 Received From : +05:54:22 ============================================================================ +05:54:22 FNo. Len. Field Value +05:54:22 ============================================================================ +05:54:22 [ 1] [ 4] [0210] +05:54:22 [ 2] [ 16] [6688990040024497] +05:54:22 [ 3] [ 6] [011000] +05:54:22 [ 4] [ 12] [000050000000] +05:54:22 [ 7] [ 10] [0320055417] +05:54:22 [ 11] [ 6] [662412] +05:54:22 [ 12] [ 6] [055417] +05:54:22 [ 13] [ 4] [0320] +05:54:22 [ 15] [ 4] [0320] +05:54:22 [ 18] [ 4] [6011] +05:54:22 [ 22] [ 3] [021] +05:54:22 [ 32] [ 6] [621354] +05:54:22 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:54:22 [ 37] [ 12] [507902834992] +05:54:22 [ 38] [ 6] [055213] +05:54:22 [ 39] [ 2] [55] +05:54:22 [ 41] [ 8] [01007700] +05:54:22 [ 49] [ 3] [418] +05:54:22 ============================================================================ +05:54:22 Calculate Source COMM Id = 0 +05:54:22 ============================================================================ +05:54:22 + + +waiting on router queue for slot.... +05:54:27 ============================================================================ +05:54:27 Slot Id : <349> +05:54:27 Transaction Type : REQUEST +05:54:27 Received From : +05:54:27 ============================================================================ +05:54:27 FNo. Len. Field Value +05:54:27 ============================================================================ +05:54:27 [ 1] [ 4] [0800] +05:54:27 [ 7] [ 10] [0319105336] +05:54:27 [ 11] [ 6] [154735] +05:54:27 [ 70] [ 3] [301] +05:54:27 ============================================================================ +05:54:27 + + +waiting on router queue for slot.... +05:54:27 Sending to : +05:54:27 ============================================================================ +05:54:27 ============================================================================ +05:54:27 Slot Id : <349> +05:54:27 Transaction Type : RESPONSE +05:54:27 Received From : +05:54:27 ============================================================================ +05:54:27 FNo. Len. Field Value +05:54:27 ============================================================================ +05:54:27 [ 1] [ 4] [0810] +05:54:27 [ 7] [ 10] [0319105336] +05:54:27 [ 11] [ 6] [154735] +05:54:27 [ 39] [ 2] [00] +05:54:27 [ 70] [ 3] [301] +05:54:27 ============================================================================ +05:54:27 Calculate Source COMM Id = 2 +05:54:27 ============================================================================ +05:54:27 + + +waiting on router queue for slot.... +05:54:37 ============================================================================ +05:54:37 Slot Id : <383> +05:54:37 Transaction Type : REQUEST +05:54:37 Received From : +05:54:37 ============================================================================ +05:54:37 FNo. Len. Field Value +05:54:37 ============================================================================ +05:54:37 [ 1] [ 4] [0200] +05:54:37 [ 2] [ 16] [6688990040024497] +05:54:37 [ 3] [ 6] [011000] +05:54:37 [ 4] [ 12] [000050000000] +05:54:37 [ 7] [ 10] [0320055434] +05:54:37 [ 11] [ 6] [662415] +05:54:37 [ 12] [ 6] [055434] +05:54:37 [ 13] [ 4] [0320] +05:54:37 [ 15] [ 4] [0320] +05:54:37 [ 18] [ 4] [6011] +05:54:37 [ 22] [ 3] [900] +05:54:37 [ 25] [ 2] [02] +05:54:37 [ 28] [ 9] [D00002000] +05:54:37 [ 32] [ 6] [621354] +05:54:37 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:54:37 [ 37] [ 12] [507902834994] +05:54:37 [ 41] [ 8] [01007700] +05:54:37 [ 42] [ 15] [NATIVE ] +05:54:37 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +05:54:37 [ 49] [ 3] [418] +05:54:37 [ 52] [ 16] [1904E697B2DF02ED] +05:54:37 ============================================================================ +05:54:37 + + +waiting on router queue for slot.... +05:54:37 Sending to : +05:54:37 ============================================================================ +05:54:37 Sending to : +05:54:37 ============================================================================ +05:54:38 ============================================================================ +05:54:38 Slot Id : <383> +05:54:38 Transaction Type : REQUEST +05:54:38 Received From : +05:54:38 ============================================================================ +05:54:38 FNo. Len. Field Value +05:54:38 ============================================================================ +05:54:38 [ 1] [ 4] [0200] +05:54:38 [ 2] [ 16] [6688990040024497] +05:54:38 [ 3] [ 6] [011000] +05:54:38 [ 4] [ 12] [000050000000] +05:54:38 [ 7] [ 10] [0320055434] +05:54:38 [ 11] [ 6] [662415] +05:54:38 [ 12] [ 6] [055434] +05:54:38 [ 13] [ 4] [0320] +05:54:38 [ 15] [ 4] [0320] +05:54:38 [ 18] [ 4] [6011] +05:54:38 [ 22] [ 3] [900] +05:54:38 [ 25] [ 2] [02] +05:54:38 [ 28] [ 9] [D00002000] +05:54:38 [ 32] [ 6] [621354] +05:54:38 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:54:38 [ 37] [ 12] [507902834994] +05:54:38 [ 41] [ 8] [01007700] +05:54:38 [ 42] [ 15] [NATIVE ] +05:54:38 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +05:54:38 [ 49] [ 3] [418] +05:54:38 [ 52] [ 16] [1904E697B2DF02ED] +05:54:38 ============================================================================ +05:54:38 + + +waiting on router queue for slot.... +05:54:38 Sending to : +05:54:38 ============================================================================ +05:54:38 ============================================================================ +05:54:38 Slot Id : <383> +05:54:38 Transaction Type : REQUEST +05:54:38 Received From : +05:54:38 ============================================================================ +05:54:38 FNo. Len. Field Value +05:54:38 ============================================================================ +05:54:38 [ 1] [ 4] [0200] +05:54:38 [ 2] [ 16] [6688990040024497] +05:54:38 [ 3] [ 6] [011000] +05:54:38 [ 4] [ 12] [000050000000] +05:54:38 [ 7] [ 10] [0320055434] +05:54:38 [ 11] [ 6] [662415] +05:54:38 [ 12] [ 6] [055434] +05:54:38 [ 13] [ 4] [0320] +05:54:38 [ 15] [ 4] [0320] +05:54:38 [ 18] [ 4] [6011] +05:54:38 [ 22] [ 3] [900] +05:54:38 [ 25] [ 2] [02] +05:54:38 [ 28] [ 9] [D00002000] +05:54:38 [ 32] [ 6] [621354] +05:54:38 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:54:38 [ 37] [ 12] [507902834994] +05:54:38 [ 41] [ 8] [01007700] +05:54:38 [ 42] [ 15] [NATIVE ] +05:54:38 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +05:54:38 [ 49] [ 3] [418] +05:54:38 [ 52] [ 16] [62710A7F28E79520] +05:54:38 ============================================================================ +05:54:38 + + +waiting on router queue for slot.... +05:54:38 Sending to : <4> +05:54:38 ============================================================================ +05:54:39 ============================================================================ +05:54:39 Slot Id : <413> +05:54:39 Transaction Type : REQUEST +05:54:39 Received From : +05:54:39 ============================================================================ +05:54:39 FNo. Len. Field Value +05:54:39 ============================================================================ +05:54:39 [ 1] [ 4] [0800] +05:54:39 [ 7] [ 10] [0319105347] +05:54:39 [ 11] [ 6] [154736] +05:54:39 [ 70] [ 3] [301] +05:54:39 ============================================================================ +05:54:39 + + +waiting on router queue for slot.... +05:54:39 Sending to : +05:54:39 ============================================================================ +05:54:39 ============================================================================ +05:54:39 Slot Id : <413> +05:54:39 Transaction Type : RESPONSE +05:54:39 Received From : +05:54:39 ============================================================================ +05:54:39 FNo. Len. Field Value +05:54:39 ============================================================================ +05:54:39 [ 1] [ 4] [0810] +05:54:39 [ 7] [ 10] [0319105347] +05:54:39 [ 11] [ 6] [154736] +05:54:39 [ 39] [ 2] [00] +05:54:39 [ 70] [ 3] [301] +05:54:39 ============================================================================ +05:54:39 Calculate Source COMM Id = 2 +05:54:39 ============================================================================ +05:54:39 + + +waiting on router queue for slot.... +05:54:39 ============================================================================ +05:54:39 Slot Id : <383> +05:54:39 Transaction Type : RESPONSE +05:54:39 Received From : +05:54:39 ============================================================================ +05:54:39 FNo. Len. Field Value +05:54:39 ============================================================================ +05:54:39 [ 1] [ 4] [0210] +05:54:39 [ 2] [ 16] [6688990040024497] +05:54:39 [ 3] [ 6] [011000] +05:54:39 [ 4] [ 12] [000050000000] +05:54:39 [ 11] [ 6] [662415] +05:54:39 [ 12] [ 6] [055434] +05:54:39 [ 15] [ 4] [0320] +05:54:39 [ 18] [ 4] [6011] +05:54:39 [ 32] [ 6] [621354] +05:54:39 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:54:39 [ 37] [ 12] [507902834994] +05:54:39 [ 38] [ 6] [169855] +05:54:39 [ 39] [ 2] [00] +05:54:39 [ 41] [ 8] [01007700] +05:54:39 [ 49] [ 3] [418] +05:54:39 [ 54] [ 20] [1002418C000022383341] +05:54:39 ============================================================================ +05:54:39 Sending to : +05:54:39 ============================================================================ +05:54:39 + + +waiting on router queue for slot.... +05:54:41 ============================================================================ +05:54:41 Slot Id : <383> +05:54:41 Transaction Type : RESPONSE +05:54:41 Received From : +05:54:41 ============================================================================ +05:54:41 FNo. Len. Field Value +05:54:41 ============================================================================ +05:54:41 [ 1] [ 4] [0210] +05:54:41 [ 2] [ 16] [6688990040024497] +05:54:41 [ 3] [ 6] [011000] +05:54:41 [ 4] [ 12] [000050000000] +05:54:41 [ 11] [ 6] [662415] +05:54:41 [ 12] [ 6] [055434] +05:54:41 [ 15] [ 4] [0320] +05:54:41 [ 18] [ 4] [6011] +05:54:41 [ 32] [ 6] [621354] +05:54:41 [ 35] [ 37] [6688990040024497=97111261706240600000] +05:54:41 [ 37] [ 12] [507902834994] +05:54:41 [ 38] [ 6] [169855] +05:54:41 [ 39] [ 2] [00] +05:54:41 [ 41] [ 8] [01007700] +05:54:41 [ 49] [ 3] [418] +05:54:41 [ 54] [ 20] [1002418C000022383341] +05:54:41 ============================================================================ +05:54:41 Calculate Source COMM Id = 0 +05:54:41 ============================================================================ +05:54:41 + + +waiting on router queue for slot.... +05:54:50 ============================================================================ +05:54:50 Slot Id : <393> +05:54:50 Transaction Type : REQUEST +05:54:50 Received From : +05:54:50 ============================================================================ +05:54:50 FNo. Len. Field Value +05:54:50 ============================================================================ +05:54:50 [ 1] [ 4] [0800] +05:54:50 [ 7] [ 10] [0319105359] +05:54:50 [ 11] [ 6] [154737] +05:54:50 [ 70] [ 3] [301] +05:54:50 ============================================================================ +05:54:50 + + +waiting on router queue for slot.... +05:54:50 Sending to : +05:54:50 ============================================================================ +05:54:50 ============================================================================ +05:54:50 Slot Id : <393> +05:54:50 Transaction Type : RESPONSE +05:54:50 Received From : +05:54:50 ============================================================================ +05:54:50 FNo. Len. Field Value +05:54:50 ============================================================================ +05:54:50 [ 1] [ 4] [0810] +05:54:50 [ 7] [ 10] [0319105359] +05:54:50 [ 11] [ 6] [154737] +05:54:50 [ 39] [ 2] [00] +05:54:50 [ 70] [ 3] [301] +05:54:50 ============================================================================ +05:54:50 Calculate Source COMM Id = 2 +05:54:50 ============================================================================ +05:54:50 + + +waiting on router queue for slot.... +05:54:54 ============================================================================ +05:54:54 Slot Id : <397> +05:54:54 Transaction Type : REQUEST +05:54:54 Received From : +05:54:54 ============================================================================ +05:54:54 FNo. Len. Field Value +05:54:54 ============================================================================ +05:54:54 [ 1] [ 4] [0800] +05:54:54 [ 7] [ 10] [0319230242] +05:54:54 [ 11] [ 6] [081319] +05:54:54 [ 37] [ 12] [57906081319] +05:54:54 [ 70] [ 3] [301] +05:54:54 ============================================================================ +05:54:54 + + +waiting on router queue for slot.... +05:54:54 Sending to : +05:54:54 ============================================================================ +05:54:54 ============================================================================ +05:54:54 Slot Id : <397> +05:54:54 Transaction Type : RESPONSE +05:54:54 Received From : +05:54:54 ============================================================================ +05:54:54 FNo. Len. Field Value +05:54:54 ============================================================================ +05:54:54 [ 1] [ 4] [0810] +05:54:54 [ 7] [ 10] [0319230242] +05:54:54 [ 11] [ 6] [081319] +05:54:54 [ 37] [ 12] [579060813190] +05:54:54 [ 39] [ 2] [00] +05:54:54 [ 70] [ 3] [810] +05:54:54 ============================================================================ +05:54:54 Calculate Source COMM Id = 1 +05:54:54 ============================================================================ +05:54:54 + + +waiting on router queue for slot.... +05:55:01 ============================================================================ +05:55:01 Slot Id : <400> +05:55:01 Transaction Type : REQUEST +05:55:01 Received From : +05:55:01 ============================================================================ +05:55:01 FNo. Len. Field Value +05:55:01 ============================================================================ +05:55:01 [ 1] [ 4] [0800] +05:55:01 [ 7] [ 10] [0319105410] +05:55:01 [ 11] [ 6] [154738] +05:55:01 [ 70] [ 3] [301] +05:55:01 ============================================================================ +05:55:01 + + +waiting on router queue for slot.... +05:55:01 Sending to : +05:55:01 ============================================================================ +05:55:01 ============================================================================ +05:55:01 Slot Id : <400> +05:55:01 Transaction Type : RESPONSE +05:55:01 Received From : +05:55:01 ============================================================================ +05:55:01 FNo. Len. Field Value +05:55:01 ============================================================================ +05:55:01 [ 1] [ 4] [0810] +05:55:01 [ 7] [ 10] [0319105410] +05:55:01 [ 11] [ 6] [154738] +05:55:01 [ 39] [ 2] [00] +05:55:01 [ 70] [ 3] [301] +05:55:01 ============================================================================ +05:55:01 Calculate Source COMM Id = 2 +05:55:01 ============================================================================ +05:55:01 + + +waiting on router queue for slot.... +05:55:02 ============================================================================ +05:55:02 Slot Id : <414> +05:55:02 Transaction Type : REQUEST +05:55:02 Received From : +05:55:02 ============================================================================ +05:55:02 FNo. Len. Field Value +05:55:02 ============================================================================ +05:55:02 [ 1] [ 4] [0800] +05:55:02 [ 2] [ 5] [02531] +05:55:02 [ 3] [ 6] [579058] +05:55:02 [ 7] [ 10] [0319225502] +05:55:02 [ 11] [ 6] [806755] +05:55:02 [ 15] [ 10] [0319225502] +05:55:02 [ 37] [ 11] [57905806755] +05:55:02 [ 70] [ 3] [001] +05:55:02 ============================================================================ +05:55:02 + + +waiting on router queue for slot.... +05:55:02 ============================================================================ +05:55:02 Slot Id : <414> +05:55:02 Transaction Type : RESPONSE +05:55:02 Received From : +05:55:02 ============================================================================ +05:55:02 FNo. Len. Field Value +05:55:02 ============================================================================ +05:55:02 [ 1] [ 4] [0810] +05:55:02 [ 7] [ 10] [0319225502] +05:55:02 [ 11] [ 6] [806755] +05:55:02 [ 15] [ 4] [0319] +05:55:02 [ 37] [ 12] [57905806755] +05:55:02 [ 39] [ 2] [00] +05:55:02 [ 70] [ 3] [001] +05:55:02 ============================================================================ +05:55:02 Sending to : +05:55:02 ============================================================================ +05:55:02 + + +waiting on router queue for slot.... +05:55:16 ============================================================================ +05:55:16 Slot Id : <399> +05:55:16 Transaction Type : REQUEST +05:55:16 Received From : +05:55:16 ============================================================================ +05:55:16 FNo. Len. Field Value +05:55:16 ============================================================================ +05:55:16 [ 1] [ 4] [0800] +05:55:16 [ 7] [ 10] [0319105425] +05:55:16 [ 11] [ 6] [154739] +05:55:16 [ 70] [ 3] [301] +05:55:16 ============================================================================ +05:55:16 + + +waiting on router queue for slot.... +05:55:16 Sending to : +05:55:16 ============================================================================ +05:55:16 ============================================================================ +05:55:16 Slot Id : <399> +05:55:16 Transaction Type : RESPONSE +05:55:16 Received From : +05:55:16 ============================================================================ +05:55:16 FNo. Len. Field Value +05:55:16 ============================================================================ +05:55:16 [ 1] [ 4] [0810] +05:55:16 [ 7] [ 10] [0319105425] +05:55:16 [ 11] [ 6] [154739] +05:55:16 [ 39] [ 2] [00] +05:55:16 [ 70] [ 3] [301] +05:55:16 ============================================================================ +05:55:16 Calculate Source COMM Id = 2 +05:55:16 ============================================================================ +05:55:16 + + +waiting on router queue for slot.... +05:55:20 ============================================================================ +05:55:20 Slot Id : <394> +05:55:20 Transaction Type : REQUEST +05:55:20 Received From : +05:55:20 ============================================================================ +05:55:20 FNo. Len. Field Value +05:55:20 ============================================================================ +05:55:20 [ 1] [ 4] [0800] +05:55:20 [ 7] [ 10] [0320130709] +05:55:20 [ 11] [ 6] [060709] +05:55:20 [ 37] [ 12] [57906060709] +05:55:20 [ 70] [ 3] [301] +05:55:20 ============================================================================ +05:55:20 + + +waiting on router queue for slot.... +05:55:20 Sending to : +05:55:20 ============================================================================ +05:55:20 ============================================================================ +05:55:20 Slot Id : <394> +05:55:20 Transaction Type : RESPONSE +05:55:20 Received From : +05:55:20 ============================================================================ +05:55:20 FNo. Len. Field Value +05:55:20 ============================================================================ +05:55:20 [ 1] [ 4] [0810] +05:55:20 [ 7] [ 10] [0320130709] +05:55:20 [ 11] [ 6] [060709] +05:55:20 [ 37] [ 12] [579060607090] +05:55:20 [ 39] [ 2] [00] +05:55:20 [ 70] [ 3] [810] +05:55:20 ============================================================================ +05:55:20 Calculate Source COMM Id = 6 +05:55:20 ============================================================================ +05:55:20 + + +waiting on router queue for slot.... +05:55:26 ============================================================================ +05:55:26 Slot Id : <368> +05:55:26 Transaction Type : REQUEST +05:55:26 Received From : +05:55:26 ============================================================================ +05:55:26 FNo. Len. Field Value +05:55:26 ============================================================================ +05:55:26 [ 1] [ 4] [0800] +05:55:26 [ 7] [ 10] [0319105435] +05:55:26 [ 11] [ 6] [154740] +05:55:26 [ 70] [ 3] [301] +05:55:26 ============================================================================ +05:55:26 + + +waiting on router queue for slot.... +05:55:26 Sending to : +05:55:26 ============================================================================ +05:55:26 ============================================================================ +05:55:26 Slot Id : <368> +05:55:26 Transaction Type : RESPONSE +05:55:26 Received From : +05:55:26 ============================================================================ +05:55:26 FNo. Len. Field Value +05:55:26 ============================================================================ +05:55:26 [ 1] [ 4] [0810] +05:55:26 [ 7] [ 10] [0319105435] +05:55:26 [ 11] [ 6] [154740] +05:55:26 [ 39] [ 2] [00] +05:55:26 [ 70] [ 3] [301] +05:55:26 ============================================================================ +05:55:26 Calculate Source COMM Id = 2 +05:55:26 ============================================================================ +05:55:26 + + +waiting on router queue for slot.... +05:55:37 ============================================================================ +05:55:37 Slot Id : <387> +05:55:37 Transaction Type : REQUEST +05:55:37 Received From : +05:55:37 ============================================================================ +05:55:37 FNo. Len. Field Value +05:55:37 ============================================================================ +05:55:37 [ 1] [ 4] [0800] +05:55:37 [ 7] [ 10] [0319105445] +05:55:37 [ 11] [ 6] [154741] +05:55:37 [ 70] [ 3] [301] +05:55:37 ============================================================================ +05:55:37 + + +waiting on router queue for slot.... +05:55:37 Sending to : +05:55:37 ============================================================================ +05:55:37 ============================================================================ +05:55:37 Slot Id : <387> +05:55:37 Transaction Type : RESPONSE +05:55:37 Received From : +05:55:37 ============================================================================ +05:55:37 FNo. Len. Field Value +05:55:37 ============================================================================ +05:55:37 [ 1] [ 4] [0810] +05:55:37 [ 7] [ 10] [0319105445] +05:55:37 [ 11] [ 6] [154741] +05:55:37 [ 39] [ 2] [00] +05:55:37 [ 70] [ 3] [301] +05:55:37 ============================================================================ +05:55:37 Calculate Source COMM Id = 2 +05:55:37 ============================================================================ +05:55:37 + + +waiting on router queue for slot.... +05:55:48 ============================================================================ +05:55:48 Slot Id : <372> +05:55:48 Transaction Type : REQUEST +05:55:48 Received From : +05:55:48 ============================================================================ +05:55:48 FNo. Len. Field Value +05:55:48 ============================================================================ +05:55:48 [ 1] [ 4] [0800] +05:55:48 [ 7] [ 10] [0319105456] +05:55:48 [ 11] [ 6] [154742] +05:55:48 [ 70] [ 3] [301] +05:55:48 ============================================================================ +05:55:48 + + +waiting on router queue for slot.... +05:55:48 Sending to : +05:55:48 ============================================================================ +05:55:48 ============================================================================ +05:55:48 Slot Id : <372> +05:55:48 Transaction Type : RESPONSE +05:55:48 Received From : +05:55:48 ============================================================================ +05:55:48 FNo. Len. Field Value +05:55:48 ============================================================================ +05:55:48 [ 1] [ 4] [0810] +05:55:48 [ 7] [ 10] [0319105456] +05:55:48 [ 11] [ 6] [154742] +05:55:48 [ 39] [ 2] [00] +05:55:48 [ 70] [ 3] [301] +05:55:48 ============================================================================ +05:55:48 Calculate Source COMM Id = 2 +05:55:48 ============================================================================ +05:55:48 + + +waiting on router queue for slot.... +05:55:58 ============================================================================ +05:55:58 Slot Id : <418> +05:55:58 Transaction Type : REQUEST +05:55:58 Received From : +05:55:58 ============================================================================ +05:55:58 FNo. Len. Field Value +05:55:58 ============================================================================ +05:55:58 [ 1] [ 4] [0800] +05:55:58 [ 7] [ 10] [0319105506] +05:55:58 [ 11] [ 6] [154743] +05:55:58 [ 70] [ 3] [301] +05:55:58 ============================================================================ +05:55:58 + + +waiting on router queue for slot.... +05:55:58 Sending to : +05:55:58 ============================================================================ +05:55:58 ============================================================================ +05:55:58 Slot Id : <418> +05:55:58 Transaction Type : RESPONSE +05:55:58 Received From : +05:55:58 ============================================================================ +05:55:58 FNo. Len. Field Value +05:55:58 ============================================================================ +05:55:58 [ 1] [ 4] [0810] +05:55:58 [ 7] [ 10] [0319105506] +05:55:58 [ 11] [ 6] [154743] +05:55:58 [ 39] [ 2] [00] +05:55:58 [ 70] [ 3] [301] +05:55:58 ============================================================================ +05:55:58 Calculate Source COMM Id = 2 +05:55:58 ============================================================================ +05:55:58 + + +waiting on router queue for slot.... +05:56:04 ============================================================================ +05:56:04 Slot Id : <380> +05:56:04 Transaction Type : REQUEST +05:56:04 Received From : +05:56:04 ============================================================================ +05:56:04 FNo. Len. Field Value +05:56:04 ============================================================================ +05:56:04 [ 1] [ 4] [0800] +05:56:04 [ 2] [ 5] [02531] +05:56:04 [ 3] [ 6] [579058] +05:56:04 [ 7] [ 10] [0319225604] +05:56:04 [ 11] [ 6] [806756] +05:56:04 [ 15] [ 10] [0319225604] +05:56:04 [ 37] [ 11] [57905806756] +05:56:04 [ 70] [ 3] [001] +05:56:04 ============================================================================ +05:56:04 + + +waiting on router queue for slot.... +05:56:04 ============================================================================ +05:56:04 Slot Id : <380> +05:56:04 Transaction Type : RESPONSE +05:56:04 Received From : +05:56:04 ============================================================================ +05:56:04 FNo. Len. Field Value +05:56:04 ============================================================================ +05:56:04 [ 1] [ 4] [0810] +05:56:04 [ 7] [ 10] [0319225604] +05:56:04 [ 11] [ 6] [806756] +05:56:04 [ 15] [ 4] [0319] +05:56:04 [ 37] [ 12] [57905806756] +05:56:04 [ 39] [ 2] [00] +05:56:04 [ 70] [ 3] [001] +05:56:04 ============================================================================ +05:56:04 Sending to : +05:56:04 ============================================================================ +05:56:04 + + +waiting on router queue for slot.... +05:56:14 ============================================================================ +05:56:14 Slot Id : <406> +05:56:14 Transaction Type : REQUEST +05:56:14 Received From : +05:56:14 ============================================================================ +05:56:14 FNo. Len. Field Value +05:56:14 ============================================================================ +05:56:14 [ 1] [ 4] [0800] +05:56:14 [ 7] [ 10] [0319105523] +05:56:14 [ 11] [ 6] [154744] +05:56:14 [ 70] [ 3] [301] +05:56:14 ============================================================================ +05:56:14 + + +waiting on router queue for slot.... +05:56:14 Sending to : +05:56:14 ============================================================================ +05:56:14 ============================================================================ +05:56:14 Slot Id : <406> +05:56:14 Transaction Type : RESPONSE +05:56:14 Received From : +05:56:14 ============================================================================ +05:56:14 FNo. Len. Field Value +05:56:14 ============================================================================ +05:56:14 [ 1] [ 4] [0810] +05:56:14 [ 7] [ 10] [0319105523] +05:56:14 [ 11] [ 6] [154744] +05:56:14 [ 39] [ 2] [00] +05:56:14 [ 70] [ 3] [301] +05:56:14 ============================================================================ +05:56:14 Calculate Source COMM Id = 2 +05:56:14 ============================================================================ +05:56:14 + + +waiting on router queue for slot.... +05:56:20 ============================================================================ +05:56:20 Slot Id : <419> +05:56:20 Transaction Type : REQUEST +05:56:20 Received From : +05:56:20 ============================================================================ +05:56:20 FNo. Len. Field Value +05:56:20 ============================================================================ +05:56:20 [ 1] [ 4] [0800] +05:56:20 [ 7] [ 10] [0319225412] +05:56:20 [ 11] [ 6] [008865] +05:56:20 [ 37] [ 12] [57905008865] +05:56:20 [ 70] [ 3] [301] +05:56:20 ============================================================================ +05:56:20 + + +waiting on router queue for slot.... +05:56:20 Sending to : +05:56:20 ============================================================================ +05:56:20 ============================================================================ +05:56:20 Slot Id : <419> +05:56:20 Transaction Type : RESPONSE +05:56:20 Received From : +05:56:20 ============================================================================ +05:56:20 FNo. Len. Field Value +05:56:20 ============================================================================ +05:56:20 [ 1] [ 4] [0810] +05:56:20 [ 7] [ 10] [0319225412] +05:56:20 [ 11] [ 6] [008865] +05:56:20 [ 37] [ 12] [579050088650] +05:56:20 [ 39] [ 2] [00] +05:56:20 [ 70] [ 3] [810] +05:56:20 ============================================================================ +05:56:20 Calculate Source COMM Id = 4 +05:56:20 ============================================================================ +05:56:20 + + +waiting on router queue for slot.... +05:56:25 ============================================================================ +05:56:25 Slot Id : <411> +05:56:25 Transaction Type : REQUEST +05:56:25 Received From : +05:56:25 ============================================================================ +05:56:25 FNo. Len. Field Value +05:56:25 ============================================================================ +05:56:25 [ 1] [ 4] [0800] +05:56:25 [ 7] [ 10] [0320130814] +05:56:25 [ 11] [ 6] [060814] +05:56:25 [ 37] [ 12] [57906060814] +05:56:25 [ 70] [ 3] [301] +05:56:25 ============================================================================ +05:56:25 + + +waiting on router queue for slot.... +05:56:25 Sending to : +05:56:25 ============================================================================ +05:56:25 ============================================================================ +05:56:25 Slot Id : <411> +05:56:25 Transaction Type : RESPONSE +05:56:25 Received From : +05:56:25 ============================================================================ +05:56:25 FNo. Len. Field Value +05:56:25 ============================================================================ +05:56:25 [ 1] [ 4] [0810] +05:56:25 [ 7] [ 10] [0320130814] +05:56:25 [ 11] [ 6] [060814] +05:56:25 [ 37] [ 12] [579060608140] +05:56:25 [ 39] [ 2] [00] +05:56:25 [ 70] [ 3] [810] +05:56:25 ============================================================================ +05:56:25 Calculate Source COMM Id = 6 +05:56:25 ============================================================================ +05:56:25 + + +waiting on router queue for slot.... +05:56:26 ============================================================================ +05:56:26 Slot Id : <407> +05:56:26 Transaction Type : REQUEST +05:56:26 Received From : +05:56:26 ============================================================================ +05:56:26 FNo. Len. Field Value +05:56:26 ============================================================================ +05:56:26 [ 1] [ 4] [0800] +05:56:26 [ 7] [ 10] [0319105534] +05:56:26 [ 11] [ 6] [154745] +05:56:26 [ 70] [ 3] [301] +05:56:26 ============================================================================ +05:56:26 + + +waiting on router queue for slot.... +05:56:26 Sending to : +05:56:26 ============================================================================ +05:56:26 ============================================================================ +05:56:26 Slot Id : <407> +05:56:26 Transaction Type : RESPONSE +05:56:26 Received From : +05:56:26 ============================================================================ +05:56:26 FNo. Len. Field Value +05:56:26 ============================================================================ +05:56:26 [ 1] [ 4] [0810] +05:56:26 [ 7] [ 10] [0319105534] +05:56:26 [ 11] [ 6] [154745] +05:56:26 [ 39] [ 2] [00] +05:56:26 [ 70] [ 3] [301] +05:56:26 ============================================================================ +05:56:26 Calculate Source COMM Id = 2 +05:56:26 ============================================================================ +05:56:26 + + +waiting on router queue for slot.... +05:56:41 ============================================================================ +05:56:41 Slot Id : <384> +05:56:41 Transaction Type : REQUEST +05:56:41 Received From : +05:56:41 ============================================================================ +05:56:41 FNo. Len. Field Value +05:56:41 ============================================================================ +05:56:41 [ 1] [ 4] [0800] +05:56:41 [ 7] [ 10] [0319105550] +05:56:41 [ 11] [ 6] [154746] +05:56:41 [ 70] [ 3] [301] +05:56:41 ============================================================================ +05:56:41 + + +waiting on router queue for slot.... +05:56:41 Sending to : +05:56:41 ============================================================================ +05:56:41 ============================================================================ +05:56:41 Slot Id : <384> +05:56:41 Transaction Type : RESPONSE +05:56:41 Received From : +05:56:41 ============================================================================ +05:56:41 FNo. Len. Field Value +05:56:41 ============================================================================ +05:56:41 [ 1] [ 4] [0810] +05:56:41 [ 7] [ 10] [0319105550] +05:56:41 [ 11] [ 6] [154746] +05:56:41 [ 39] [ 2] [00] +05:56:41 [ 70] [ 3] [301] +05:56:41 ============================================================================ +05:56:41 Calculate Source COMM Id = 2 +05:56:41 ============================================================================ +05:56:41 + + +waiting on router queue for slot.... +05:56:41 ============================================================================ +05:56:41 Slot Id : <401> +05:56:41 Transaction Type : REQUEST +05:56:41 Received From : +05:56:41 ============================================================================ +05:56:41 FNo. Len. Field Value +05:56:41 ============================================================================ +05:56:41 [ 1] [ 4] [0800] +05:56:41 [ 7] [ 10] [0319225638] +05:56:41 [ 11] [ 6] [059893] +05:56:41 [ 37] [ 12] [507905059893] +05:56:41 [ 70] [ 3] [001] +05:56:41 ============================================================================ +05:56:41 + + +waiting on router queue for slot.... +05:56:41 Sending to : +05:56:41 ============================================================================ +05:56:41 ============================================================================ +05:56:41 Slot Id : <401> +05:56:41 Transaction Type : RESPONSE +05:56:41 Received From : +05:56:41 ============================================================================ +05:56:41 FNo. Len. Field Value +05:56:41 ============================================================================ +05:56:41 [ 1] [ 4] [0810] +05:56:41 [ 7] [ 10] [0319225638] +05:56:41 [ 11] [ 6] [059893] +05:56:41 [ 37] [ 12] [507905059893] +05:56:41 [ 39] [ 2] [00] +05:56:41 [ 70] [ 3] [001] +05:56:41 ============================================================================ +05:56:41 Calculate Source COMM Id = 0 +05:56:41 ============================================================================ +05:56:41 + + +waiting on router queue for slot.... +05:56:56 ============================================================================ +05:56:56 Slot Id : <420> +05:56:56 Transaction Type : REQUEST +05:56:56 Received From : +05:56:56 ============================================================================ +05:56:56 FNo. Len. Field Value +05:56:56 ============================================================================ +05:56:56 [ 1] [ 4] [0800] +05:56:56 [ 7] [ 10] [0319105605] +05:56:56 [ 11] [ 6] [154747] +05:56:56 [ 70] [ 3] [301] +05:56:56 ============================================================================ +05:56:56 + + +waiting on router queue for slot.... +05:56:56 Sending to : +05:56:56 ============================================================================ +05:56:56 ============================================================================ +05:56:56 Slot Id : <420> +05:56:56 Transaction Type : RESPONSE +05:56:56 Received From : +05:56:56 ============================================================================ +05:56:56 FNo. Len. Field Value +05:56:56 ============================================================================ +05:56:56 [ 1] [ 4] [0810] +05:56:56 [ 7] [ 10] [0319105605] +05:56:56 [ 11] [ 6] [154747] +05:56:56 [ 39] [ 2] [00] +05:56:56 [ 70] [ 3] [301] +05:56:56 ============================================================================ +05:56:56 Calculate Source COMM Id = 2 +05:56:56 ============================================================================ +05:56:56 + + +waiting on router queue for slot.... +05:57:06 ============================================================================ +05:57:06 Slot Id : <416> +05:57:06 Transaction Type : REQUEST +05:57:06 Received From : +05:57:06 ============================================================================ +05:57:06 FNo. Len. Field Value +05:57:06 ============================================================================ +05:57:06 [ 1] [ 4] [0800] +05:57:06 [ 2] [ 5] [02531] +05:57:06 [ 3] [ 6] [579058] +05:57:06 [ 7] [ 10] [0319225706] +05:57:06 [ 11] [ 6] [806757] +05:57:06 [ 15] [ 10] [0319225706] +05:57:06 [ 37] [ 11] [57905806757] +05:57:06 [ 70] [ 3] [001] +05:57:06 ============================================================================ +05:57:06 + + +waiting on router queue for slot.... +05:57:06 ============================================================================ +05:57:06 Slot Id : <416> +05:57:06 Transaction Type : RESPONSE +05:57:06 Received From : +05:57:06 ============================================================================ +05:57:06 FNo. Len. Field Value +05:57:06 ============================================================================ +05:57:06 [ 1] [ 4] [0810] +05:57:06 [ 7] [ 10] [0319225706] +05:57:06 [ 11] [ 6] [806757] +05:57:06 [ 15] [ 4] [0319] +05:57:06 [ 37] [ 12] [57905806757] +05:57:06 [ 39] [ 2] [00] +05:57:06 [ 70] [ 3] [001] +05:57:06 ============================================================================ +05:57:06 Sending to : +05:57:06 ============================================================================ +05:57:06 + + +waiting on router queue for slot.... +05:57:13 ============================================================================ +05:57:13 Slot Id : <415> +05:57:13 Transaction Type : REQUEST +05:57:13 Received From : +05:57:13 ============================================================================ +05:57:13 FNo. Len. Field Value +05:57:13 ============================================================================ +05:57:13 [ 1] [ 4] [0800] +05:57:13 [ 7] [ 10] [0319105621] +05:57:13 [ 11] [ 6] [154748] +05:57:13 [ 70] [ 3] [301] +05:57:13 ============================================================================ +05:57:13 + + +waiting on router queue for slot.... +05:57:13 Sending to : +05:57:13 ============================================================================ +05:57:13 ============================================================================ +05:57:13 Slot Id : <415> +05:57:13 Transaction Type : RESPONSE +05:57:13 Received From : +05:57:13 ============================================================================ +05:57:13 FNo. Len. Field Value +05:57:13 ============================================================================ +05:57:13 [ 1] [ 4] [0810] +05:57:13 [ 7] [ 10] [0319105621] +05:57:13 [ 11] [ 6] [154748] +05:57:13 [ 39] [ 2] [00] +05:57:13 [ 70] [ 3] [301] +05:57:13 ============================================================================ +05:57:13 Calculate Source COMM Id = 2 +05:57:13 ============================================================================ +05:57:13 + + +waiting on router queue for slot.... +05:57:23 ============================================================================ +05:57:23 Slot Id : <381> +05:57:23 Transaction Type : REQUEST +05:57:23 Received From : +05:57:23 ============================================================================ +05:57:23 FNo. Len. Field Value +05:57:23 ============================================================================ +05:57:23 [ 1] [ 4] [0800] +05:57:23 [ 7] [ 10] [0319105631] +05:57:23 [ 11] [ 6] [154749] +05:57:23 [ 70] [ 3] [301] +05:57:23 ============================================================================ +05:57:23 + + +waiting on router queue for slot.... +05:57:23 Sending to : +05:57:23 ============================================================================ +05:57:23 ============================================================================ +05:57:23 Slot Id : <381> +05:57:23 Transaction Type : RESPONSE +05:57:23 Received From : +05:57:23 ============================================================================ +05:57:23 FNo. Len. Field Value +05:57:23 ============================================================================ +05:57:23 [ 1] [ 4] [0810] +05:57:23 [ 7] [ 10] [0319105631] +05:57:23 [ 11] [ 6] [154749] +05:57:23 [ 39] [ 2] [00] +05:57:23 [ 70] [ 3] [301] +05:57:23 ============================================================================ +05:57:23 Calculate Source COMM Id = 2 +05:57:23 ============================================================================ +05:57:23 + + +waiting on router queue for slot.... +05:57:30 ============================================================================ +05:57:30 Slot Id : <425> +05:57:30 Transaction Type : REQUEST +05:57:30 Received From : +05:57:30 ============================================================================ +05:57:30 FNo. Len. Field Value +05:57:30 ============================================================================ +05:57:30 [ 1] [ 4] [0800] +05:57:30 [ 7] [ 10] [0320130919] +05:57:30 [ 11] [ 6] [060919] +05:57:30 [ 37] [ 12] [57906060919] +05:57:30 [ 70] [ 3] [301] +05:57:30 ============================================================================ +05:57:30 + + +waiting on router queue for slot.... +05:57:30 Sending to : +05:57:30 ============================================================================ +05:57:30 ============================================================================ +05:57:30 Slot Id : <425> +05:57:30 Transaction Type : RESPONSE +05:57:30 Received From : +05:57:30 ============================================================================ +05:57:30 FNo. Len. Field Value +05:57:30 ============================================================================ +05:57:30 [ 1] [ 4] [0810] +05:57:30 [ 7] [ 10] [0320130919] +05:57:30 [ 11] [ 6] [060919] +05:57:30 [ 37] [ 12] [579060609190] +05:57:30 [ 39] [ 2] [00] +05:57:30 [ 70] [ 3] [810] +05:57:30 ============================================================================ +05:57:30 Calculate Source COMM Id = 6 +05:57:30 ============================================================================ +05:57:30 + + +waiting on router queue for slot.... +05:57:34 ============================================================================ +05:57:34 Slot Id : <398> +05:57:34 Transaction Type : REQUEST +05:57:34 Received From : +05:57:34 ============================================================================ +05:57:34 FNo. Len. Field Value +05:57:34 ============================================================================ +05:57:34 [ 1] [ 4] [0800] +05:57:34 [ 7] [ 10] [0319105642] +05:57:34 [ 11] [ 6] [154750] +05:57:34 [ 70] [ 3] [301] +05:57:34 ============================================================================ +05:57:34 + + +waiting on router queue for slot.... +05:57:34 Sending to : +05:57:34 ============================================================================ +05:57:34 ============================================================================ +05:57:34 Slot Id : <398> +05:57:34 Transaction Type : RESPONSE +05:57:34 Received From : +05:57:34 ============================================================================ +05:57:34 FNo. Len. Field Value +05:57:34 ============================================================================ +05:57:34 [ 1] [ 4] [0810] +05:57:34 [ 7] [ 10] [0319105642] +05:57:34 [ 11] [ 6] [154750] +05:57:34 [ 39] [ 2] [00] +05:57:34 [ 70] [ 3] [301] +05:57:34 ============================================================================ +05:57:34 Calculate Source COMM Id = 2 +05:57:34 ============================================================================ +05:57:34 + + +waiting on router queue for slot.... +05:57:44 ============================================================================ +05:57:44 Slot Id : <388> +05:57:44 Transaction Type : REQUEST +05:57:44 Received From : +05:57:44 ============================================================================ +05:57:44 FNo. Len. Field Value +05:57:44 ============================================================================ +05:57:44 [ 1] [ 4] [0800] +05:57:44 [ 7] [ 10] [0319105653] +05:57:44 [ 11] [ 6] [154751] +05:57:44 [ 70] [ 3] [301] +05:57:44 ============================================================================ +05:57:44 + + +waiting on router queue for slot.... +05:57:44 Sending to : +05:57:44 ============================================================================ +05:57:44 ============================================================================ +05:57:44 Slot Id : <388> +05:57:44 Transaction Type : RESPONSE +05:57:44 Received From : +05:57:44 ============================================================================ +05:57:44 FNo. Len. Field Value +05:57:44 ============================================================================ +05:57:44 [ 1] [ 4] [0810] +05:57:44 [ 7] [ 10] [0319105653] +05:57:44 [ 11] [ 6] [154751] +05:57:44 [ 39] [ 2] [00] +05:57:44 [ 70] [ 3] [301] +05:57:44 ============================================================================ +05:57:44 Calculate Source COMM Id = 2 +05:57:44 ============================================================================ +05:57:44 + + +waiting on router queue for slot.... +05:57:58 ============================================================================ +05:57:58 Slot Id : <433> +05:57:58 Transaction Type : REQUEST +05:57:58 Received From : +05:57:58 ============================================================================ +05:57:58 FNo. Len. Field Value +05:57:58 ============================================================================ +05:57:58 [ 1] [ 4] [0800] +05:57:58 [ 7] [ 10] [0319105705] +05:57:58 [ 11] [ 6] [154752] +05:57:58 [ 70] [ 3] [301] +05:57:58 ============================================================================ +05:57:58 + + +waiting on router queue for slot.... +05:57:58 Sending to : +05:57:58 ============================================================================ +05:57:58 ============================================================================ +05:57:58 Slot Id : <433> +05:57:58 Transaction Type : RESPONSE +05:57:58 Received From : +05:57:58 ============================================================================ +05:57:58 FNo. Len. Field Value +05:57:58 ============================================================================ +05:57:58 [ 1] [ 4] [0810] +05:57:58 [ 7] [ 10] [0319105705] +05:57:58 [ 11] [ 6] [154752] +05:57:58 [ 39] [ 2] [00] +05:57:58 [ 70] [ 3] [301] +05:57:58 ============================================================================ +05:57:58 Calculate Source COMM Id = 2 +05:57:58 ============================================================================ +05:57:58 + + +waiting on router queue for slot.... +05:58:08 ============================================================================ +05:58:08 Slot Id : <364> +05:58:08 Transaction Type : REQUEST +05:58:08 Received From : +05:58:08 ============================================================================ +05:58:08 FNo. Len. Field Value +05:58:08 ============================================================================ +05:58:08 [ 1] [ 4] [0800] +05:58:08 [ 2] [ 5] [02531] +05:58:08 [ 3] [ 6] [579058] +05:58:08 [ 7] [ 10] [0319225808] +05:58:08 [ 11] [ 6] [806758] +05:58:08 [ 15] [ 10] [0319225808] +05:58:08 [ 37] [ 11] [57905806758] +05:58:08 [ 70] [ 3] [001] +05:58:08 ============================================================================ +05:58:08 + + +waiting on router queue for slot.... +05:58:08 ============================================================================ +05:58:08 Slot Id : <364> +05:58:08 Transaction Type : RESPONSE +05:58:08 Received From : +05:58:08 ============================================================================ +05:58:08 FNo. Len. Field Value +05:58:08 ============================================================================ +05:58:08 [ 1] [ 4] [0810] +05:58:08 [ 7] [ 10] [0319225808] +05:58:08 [ 11] [ 6] [806758] +05:58:08 [ 15] [ 4] [0319] +05:58:08 [ 37] [ 12] [57905806758] +05:58:08 [ 39] [ 2] [00] +05:58:08 [ 70] [ 3] [001] +05:58:08 ============================================================================ +05:58:08 Sending to : +05:58:08 ============================================================================ +05:58:08 + + +waiting on router queue for slot.... +05:58:12 ============================================================================ +05:58:12 Slot Id : <367> +05:58:12 Transaction Type : REQUEST +05:58:12 Received From : +05:58:12 ============================================================================ +05:58:12 FNo. Len. Field Value +05:58:12 ============================================================================ +05:58:12 [ 1] [ 4] [0800] +05:58:12 [ 7] [ 10] [0319105721] +05:58:12 [ 11] [ 6] [154753] +05:58:12 [ 70] [ 3] [301] +05:58:12 ============================================================================ +05:58:12 + + +waiting on router queue for slot.... +05:58:12 Sending to : +05:58:12 ============================================================================ +05:58:12 ============================================================================ +05:58:12 Slot Id : <367> +05:58:12 Transaction Type : RESPONSE +05:58:12 Received From : +05:58:12 ============================================================================ +05:58:12 FNo. Len. Field Value +05:58:12 ============================================================================ +05:58:12 [ 1] [ 4] [0810] +05:58:12 [ 7] [ 10] [0319105721] +05:58:12 [ 11] [ 6] [154753] +05:58:12 [ 39] [ 2] [00] +05:58:12 [ 70] [ 3] [301] +05:58:12 ============================================================================ +05:58:12 Calculate Source COMM Id = 2 +05:58:12 ============================================================================ +05:58:12 + + +waiting on router queue for slot.... +05:58:28 ============================================================================ +05:58:28 Slot Id : <430> +05:58:28 Transaction Type : REQUEST +05:58:28 Received From : +05:58:28 ============================================================================ +05:58:28 FNo. Len. Field Value +05:58:28 ============================================================================ +05:58:28 [ 1] [ 4] [0800] +05:58:28 [ 7] [ 10] [0319105736] +05:58:28 [ 11] [ 6] [154754] +05:58:28 [ 70] [ 3] [301] +05:58:28 ============================================================================ +05:58:28 + + +waiting on router queue for slot.... +05:58:28 Sending to : +05:58:28 ============================================================================ +05:58:28 ============================================================================ +05:58:28 Slot Id : <430> +05:58:28 Transaction Type : RESPONSE +05:58:28 Received From : +05:58:28 ============================================================================ +05:58:28 FNo. Len. Field Value +05:58:28 ============================================================================ +05:58:28 [ 1] [ 4] [0810] +05:58:28 [ 7] [ 10] [0319105736] +05:58:28 [ 11] [ 6] [154754] +05:58:28 [ 39] [ 2] [00] +05:58:28 [ 70] [ 3] [301] +05:58:28 ============================================================================ +05:58:28 Calculate Source COMM Id = 2 +05:58:28 ============================================================================ +05:58:28 + + +waiting on router queue for slot.... +05:58:35 ============================================================================ +05:58:35 Slot Id : <441> +05:58:35 Transaction Type : REQUEST +05:58:35 Received From : +05:58:35 ============================================================================ +05:58:35 FNo. Len. Field Value +05:58:35 ============================================================================ +05:58:35 [ 1] [ 4] [0800] +05:58:35 [ 7] [ 10] [0320131024] +05:58:35 [ 11] [ 6] [061024] +05:58:35 [ 37] [ 12] [57906061024] +05:58:35 [ 70] [ 3] [301] +05:58:35 ============================================================================ +05:58:35 + + +waiting on router queue for slot.... +05:58:35 Sending to : +05:58:35 ============================================================================ +05:58:35 ============================================================================ +05:58:35 Slot Id : <441> +05:58:35 Transaction Type : RESPONSE +05:58:35 Received From : +05:58:35 ============================================================================ +05:58:35 FNo. Len. Field Value +05:58:35 ============================================================================ +05:58:35 [ 1] [ 4] [0810] +05:58:35 [ 7] [ 10] [0320131024] +05:58:35 [ 11] [ 6] [061024] +05:58:35 [ 37] [ 12] [579060610240] +05:58:35 [ 39] [ 2] [00] +05:58:35 [ 70] [ 3] [810] +05:58:35 ============================================================================ +05:58:35 Calculate Source COMM Id = 6 +05:58:35 ============================================================================ +05:58:35 + + +waiting on router queue for slot.... +05:58:39 ============================================================================ +05:58:39 Slot Id : <402> +05:58:39 Transaction Type : REQUEST +05:58:39 Received From : +05:58:39 ============================================================================ +05:58:39 FNo. Len. Field Value +05:58:39 ============================================================================ +05:58:39 [ 1] [ 4] [0800] +05:58:39 [ 7] [ 10] [0319105747] +05:58:39 [ 11] [ 6] [154755] +05:58:39 [ 70] [ 3] [301] +05:58:39 ============================================================================ +05:58:39 + + +waiting on router queue for slot.... +05:58:39 Sending to : +05:58:39 ============================================================================ +05:58:39 ============================================================================ +05:58:39 Slot Id : <402> +05:58:39 Transaction Type : RESPONSE +05:58:39 Received From : +05:58:39 ============================================================================ +05:58:39 FNo. Len. Field Value +05:58:39 ============================================================================ +05:58:39 [ 1] [ 4] [0810] +05:58:39 [ 7] [ 10] [0319105747] +05:58:39 [ 11] [ 6] [154755] +05:58:39 [ 39] [ 2] [00] +05:58:39 [ 70] [ 3] [301] +05:58:39 ============================================================================ +05:58:39 Calculate Source COMM Id = 2 +05:58:39 ============================================================================ +05:58:39 + + +waiting on router queue for slot.... +05:58:50 ============================================================================ +05:58:50 Slot Id : <375> +05:58:50 Transaction Type : REQUEST +05:58:50 Received From : +05:58:50 ============================================================================ +05:58:50 FNo. Len. Field Value +05:58:50 ============================================================================ +05:58:50 [ 1] [ 4] [0800] +05:58:50 [ 7] [ 10] [0319105758] +05:58:50 [ 11] [ 6] [154756] +05:58:50 [ 70] [ 3] [301] +05:58:50 ============================================================================ +05:58:50 + + +waiting on router queue for slot.... +05:58:50 Sending to : +05:58:50 ============================================================================ +05:58:50 ============================================================================ +05:58:50 Slot Id : <375> +05:58:50 Transaction Type : RESPONSE +05:58:50 Received From : +05:58:50 ============================================================================ +05:58:50 FNo. Len. Field Value +05:58:50 ============================================================================ +05:58:50 [ 1] [ 4] [0810] +05:58:50 [ 7] [ 10] [0319105758] +05:58:50 [ 11] [ 6] [154756] +05:58:50 [ 39] [ 2] [00] +05:58:50 [ 70] [ 3] [301] +05:58:50 ============================================================================ +05:58:50 Calculate Source COMM Id = 2 +05:58:50 ============================================================================ +05:58:50 + + +waiting on router queue for slot.... +05:59:01 ============================================================================ +05:59:01 Slot Id : <408> +05:59:01 Transaction Type : REQUEST +05:59:01 Received From : +05:59:01 ============================================================================ +05:59:01 FNo. Len. Field Value +05:59:01 ============================================================================ +05:59:01 [ 1] [ 4] [0800] +05:59:01 [ 7] [ 10] [0319105809] +05:59:01 [ 11] [ 6] [154757] +05:59:01 [ 70] [ 3] [301] +05:59:01 ============================================================================ +05:59:01 + + +waiting on router queue for slot.... +05:59:01 Sending to : +05:59:01 ============================================================================ +05:59:01 ============================================================================ +05:59:01 Slot Id : <408> +05:59:01 Transaction Type : RESPONSE +05:59:01 Received From : +05:59:01 ============================================================================ +05:59:01 FNo. Len. Field Value +05:59:01 ============================================================================ +05:59:01 [ 1] [ 4] [0810] +05:59:01 [ 7] [ 10] [0319105809] +05:59:01 [ 11] [ 6] [154757] +05:59:01 [ 39] [ 2] [00] +05:59:01 [ 70] [ 3] [301] +05:59:01 ============================================================================ +05:59:01 Calculate Source COMM Id = 2 +05:59:01 ============================================================================ +05:59:01 + + +waiting on router queue for slot.... +05:59:10 ============================================================================ +05:59:10 Slot Id : <437> +05:59:10 Transaction Type : REQUEST +05:59:10 Received From : +05:59:10 ============================================================================ +05:59:10 FNo. Len. Field Value +05:59:10 ============================================================================ +05:59:10 [ 1] [ 4] [0800] +05:59:10 [ 2] [ 5] [02531] +05:59:10 [ 3] [ 6] [579058] +05:59:10 [ 7] [ 10] [0319225910] +05:59:10 [ 11] [ 6] [806759] +05:59:10 [ 15] [ 10] [0319225910] +05:59:10 [ 37] [ 11] [57905806759] +05:59:10 [ 70] [ 3] [001] +05:59:10 ============================================================================ +05:59:10 + + +waiting on router queue for slot.... +05:59:10 ============================================================================ +05:59:10 Slot Id : <437> +05:59:10 Transaction Type : RESPONSE +05:59:10 Received From : +05:59:10 ============================================================================ +05:59:10 FNo. Len. Field Value +05:59:10 ============================================================================ +05:59:10 [ 1] [ 4] [0810] +05:59:10 [ 7] [ 10] [0319225910] +05:59:10 [ 11] [ 6] [806759] +05:59:10 [ 15] [ 4] [0319] +05:59:10 [ 37] [ 12] [57905806759] +05:59:10 [ 39] [ 2] [00] +05:59:10 [ 70] [ 3] [001] +05:59:10 ============================================================================ +05:59:10 Sending to : +05:59:10 ============================================================================ +05:59:10 + + +waiting on router queue for slot.... +05:59:12 ============================================================================ +05:59:12 Slot Id : <409> +05:59:12 Transaction Type : REQUEST +05:59:12 Received From : +05:59:12 ============================================================================ +05:59:12 FNo. Len. Field Value +05:59:12 ============================================================================ +05:59:12 [ 1] [ 4] [0800] +05:59:12 [ 7] [ 10] [0319105820] +05:59:12 [ 11] [ 6] [154758] +05:59:12 [ 70] [ 3] [301] +05:59:12 ============================================================================ +05:59:12 + + +waiting on router queue for slot.... +05:59:12 Sending to : +05:59:12 ============================================================================ +05:59:12 ============================================================================ +05:59:12 Slot Id : <409> +05:59:12 Transaction Type : RESPONSE +05:59:12 Received From : +05:59:12 ============================================================================ +05:59:12 FNo. Len. Field Value +05:59:12 ============================================================================ +05:59:12 [ 1] [ 4] [0810] +05:59:12 [ 7] [ 10] [0319105820] +05:59:12 [ 11] [ 6] [154758] +05:59:12 [ 39] [ 2] [00] +05:59:12 [ 70] [ 3] [301] +05:59:12 ============================================================================ +05:59:12 Calculate Source COMM Id = 2 +05:59:12 ============================================================================ +05:59:12 + + +waiting on router queue for slot.... +05:59:23 ============================================================================ +05:59:23 Slot Id : <385> +05:59:23 Transaction Type : REQUEST +05:59:23 Received From : +05:59:23 ============================================================================ +05:59:23 FNo. Len. Field Value +05:59:23 ============================================================================ +05:59:23 [ 1] [ 4] [0800] +05:59:23 [ 7] [ 10] [0319105831] +05:59:23 [ 11] [ 6] [154759] +05:59:23 [ 70] [ 3] [301] +05:59:23 ============================================================================ +05:59:23 + + +waiting on router queue for slot.... +05:59:23 Sending to : +05:59:23 ============================================================================ +05:59:23 ============================================================================ +05:59:23 Slot Id : <385> +05:59:23 Transaction Type : RESPONSE +05:59:23 Received From : +05:59:23 ============================================================================ +05:59:23 FNo. Len. Field Value +05:59:23 ============================================================================ +05:59:23 [ 1] [ 4] [0810] +05:59:23 [ 7] [ 10] [0319105831] +05:59:23 [ 11] [ 6] [154759] +05:59:23 [ 39] [ 2] [00] +05:59:23 [ 70] [ 3] [301] +05:59:23 ============================================================================ +05:59:23 Calculate Source COMM Id = 2 +05:59:23 ============================================================================ +05:59:23 + + +waiting on router queue for slot.... +05:59:34 ============================================================================ +05:59:34 Slot Id : <362> +05:59:34 Transaction Type : REQUEST +05:59:34 Received From : +05:59:34 ============================================================================ +05:59:34 FNo. Len. Field Value +05:59:34 ============================================================================ +05:59:34 [ 1] [ 4] [0800] +05:59:34 [ 7] [ 10] [0319105841] +05:59:34 [ 11] [ 6] [154760] +05:59:34 [ 70] [ 3] [301] +05:59:34 ============================================================================ +05:59:34 + + +waiting on router queue for slot.... +05:59:34 Sending to : +05:59:34 ============================================================================ +05:59:34 ============================================================================ +05:59:34 Slot Id : <362> +05:59:34 Transaction Type : RESPONSE +05:59:34 Received From : +05:59:34 ============================================================================ +05:59:34 FNo. Len. Field Value +05:59:34 ============================================================================ +05:59:34 [ 1] [ 4] [0810] +05:59:34 [ 7] [ 10] [0319105841] +05:59:34 [ 11] [ 6] [154760] +05:59:34 [ 39] [ 2] [00] +05:59:34 [ 70] [ 3] [301] +05:59:34 ============================================================================ +05:59:34 Calculate Source COMM Id = 2 +05:59:34 ============================================================================ +05:59:34 + + +waiting on router queue for slot.... +05:59:40 ============================================================================ +05:59:40 Slot Id : <403> +05:59:40 Transaction Type : REQUEST +05:59:40 Received From : +05:59:40 ============================================================================ +05:59:40 FNo. Len. Field Value +05:59:40 ============================================================================ +05:59:40 [ 1] [ 4] [0800] +05:59:40 [ 7] [ 10] [0320131129] +05:59:40 [ 11] [ 6] [061129] +05:59:40 [ 37] [ 12] [57906061129] +05:59:40 [ 70] [ 3] [301] +05:59:40 ============================================================================ +05:59:40 + + +waiting on router queue for slot.... +05:59:40 Sending to : +05:59:40 ============================================================================ +05:59:40 ============================================================================ +05:59:40 Slot Id : <403> +05:59:40 Transaction Type : RESPONSE +05:59:40 Received From : +05:59:40 ============================================================================ +05:59:40 FNo. Len. Field Value +05:59:40 ============================================================================ +05:59:40 [ 1] [ 4] [0810] +05:59:40 [ 7] [ 10] [0320131129] +05:59:40 [ 11] [ 6] [061129] +05:59:40 [ 37] [ 12] [579060611290] +05:59:40 [ 39] [ 2] [00] +05:59:40 [ 70] [ 3] [810] +05:59:40 ============================================================================ +05:59:40 Calculate Source COMM Id = 6 +05:59:40 ============================================================================ +05:59:40 + + +waiting on router queue for slot.... +05:59:48 ============================================================================ +05:59:48 Slot Id : <392> +05:59:48 Transaction Type : REQUEST +05:59:48 Received From : +05:59:48 ============================================================================ +05:59:48 FNo. Len. Field Value +05:59:48 ============================================================================ +05:59:48 [ 1] [ 4] [0800] +05:59:48 [ 7] [ 10] [0319105857] +05:59:48 [ 11] [ 6] [154761] +05:59:48 [ 70] [ 3] [301] +05:59:48 ============================================================================ +05:59:48 + + +waiting on router queue for slot.... +05:59:48 Sending to : +05:59:48 ============================================================================ +05:59:48 ============================================================================ +05:59:48 Slot Id : <392> +05:59:48 Transaction Type : RESPONSE +05:59:48 Received From : +05:59:48 ============================================================================ +05:59:48 FNo. Len. Field Value +05:59:48 ============================================================================ +05:59:48 [ 1] [ 4] [0810] +05:59:48 [ 7] [ 10] [0319105857] +05:59:48 [ 11] [ 6] [154761] +05:59:48 [ 39] [ 2] [00] +05:59:48 [ 70] [ 3] [301] +05:59:48 ============================================================================ +05:59:48 Calculate Source COMM Id = 2 +05:59:48 ============================================================================ +05:59:48 + + +waiting on router queue for slot.... +05:59:54 ============================================================================ +05:59:54 Slot Id : <412> +05:59:54 Transaction Type : REQUEST +05:59:54 Received From : +05:59:54 ============================================================================ +05:59:54 FNo. Len. Field Value +05:59:54 ============================================================================ +05:59:54 [ 1] [ 4] [0800] +05:59:54 [ 7] [ 10] [0319230742] +05:59:54 [ 11] [ 6] [050216] +05:59:54 [ 37] [ 12] [57906050216] +05:59:54 [ 70] [ 3] [301] +05:59:54 ============================================================================ +05:59:54 + + +waiting on router queue for slot.... +05:59:54 Sending to : +05:59:54 ============================================================================ +05:59:54 ============================================================================ +05:59:54 Slot Id : <412> +05:59:54 Transaction Type : RESPONSE +05:59:54 Received From : +05:59:54 ============================================================================ +05:59:54 FNo. Len. Field Value +05:59:54 ============================================================================ +05:59:54 [ 1] [ 4] [0810] +05:59:54 [ 7] [ 10] [0319230742] +05:59:54 [ 11] [ 6] [050216] +05:59:54 [ 37] [ 12] [579060502160] +05:59:54 [ 39] [ 2] [00] +05:59:54 [ 70] [ 3] [810] +05:59:54 ============================================================================ +05:59:54 Calculate Source COMM Id = 1 +05:59:54 ============================================================================ +05:59:54 + + +waiting on router queue for slot.... +05:59:59 ============================================================================ +05:59:59 Slot Id : <447> +05:59:59 Transaction Type : REQUEST +05:59:59 Received From : +05:59:59 ============================================================================ +05:59:59 FNo. Len. Field Value +05:59:59 ============================================================================ +05:59:59 [ 1] [ 4] [0800] +05:59:59 [ 7] [ 10] [0319105907] +05:59:59 [ 11] [ 6] [154762] +05:59:59 [ 70] [ 3] [301] +05:59:59 ============================================================================ +05:59:59 + + +waiting on router queue for slot.... +05:59:59 Sending to : +05:59:59 ============================================================================ +05:59:59 ============================================================================ +05:59:59 Slot Id : <447> +05:59:59 Transaction Type : RESPONSE +05:59:59 Received From : +05:59:59 ============================================================================ +05:59:59 FNo. Len. Field Value +05:59:59 ============================================================================ +05:59:59 [ 1] [ 4] [0810] +05:59:59 [ 7] [ 10] [0319105907] +05:59:59 [ 11] [ 6] [154762] +05:59:59 [ 39] [ 2] [00] +05:59:59 [ 70] [ 3] [301] +05:59:59 ============================================================================ +05:59:59 Calculate Source COMM Id = 2 +05:59:59 ============================================================================ +05:59:59 + + +waiting on router queue for slot.... +06:00:10 ============================================================================ +06:00:10 Slot Id : <450> +06:00:10 Transaction Type : REQUEST +06:00:10 Received From : +06:00:10 ============================================================================ +06:00:10 FNo. Len. Field Value +06:00:10 ============================================================================ +06:00:10 [ 1] [ 4] [0800] +06:00:10 [ 7] [ 10] [0319105918] +06:00:10 [ 11] [ 6] [154763] +06:00:10 [ 70] [ 3] [301] +06:00:10 ============================================================================ +06:00:10 + + +waiting on router queue for slot.... +06:00:10 Sending to : +06:00:10 ============================================================================ +06:00:10 ============================================================================ +06:00:10 Slot Id : <450> +06:00:10 Transaction Type : RESPONSE +06:00:10 Received From : +06:00:10 ============================================================================ +06:00:10 FNo. Len. Field Value +06:00:10 ============================================================================ +06:00:10 [ 1] [ 4] [0810] +06:00:10 [ 7] [ 10] [0319105918] +06:00:10 [ 11] [ 6] [154763] +06:00:10 [ 39] [ 2] [00] +06:00:10 [ 70] [ 3] [301] +06:00:10 ============================================================================ +06:00:10 Calculate Source COMM Id = 2 +06:00:10 ============================================================================ +06:00:10 + + +waiting on router queue for slot.... +06:00:12 ============================================================================ +06:00:12 Slot Id : <386> +06:00:12 Transaction Type : REQUEST +06:00:12 Received From : +06:00:12 ============================================================================ +06:00:12 FNo. Len. Field Value +06:00:12 ============================================================================ +06:00:12 [ 1] [ 4] [0800] +06:00:12 [ 2] [ 5] [02531] +06:00:12 [ 3] [ 6] [579068] +06:00:12 [ 7] [ 10] [0319230012] +06:00:12 [ 11] [ 6] [806760] +06:00:12 [ 15] [ 10] [0319230012] +06:00:12 [ 37] [ 11] [57906806760] +06:00:12 [ 70] [ 3] [001] +06:00:12 ============================================================================ +06:00:12 + + +waiting on router queue for slot.... +06:00:12 ============================================================================ +06:00:12 Slot Id : <386> +06:00:12 Transaction Type : RESPONSE +06:00:12 Received From : +06:00:12 ============================================================================ +06:00:12 FNo. Len. Field Value +06:00:12 ============================================================================ +06:00:12 [ 1] [ 4] [0810] +06:00:12 [ 7] [ 10] [0319230012] +06:00:12 [ 11] [ 6] [806760] +06:00:12 [ 15] [ 4] [0319] +06:00:12 [ 37] [ 12] [57906806760] +06:00:12 [ 39] [ 2] [00] +06:00:12 [ 70] [ 3] [001] +06:00:12 ============================================================================ +06:00:12 Sending to : +06:00:12 ============================================================================ +06:00:12 + + +waiting on router queue for slot.... +06:00:20 ============================================================================ +06:00:20 Slot Id : <417> +06:00:20 Transaction Type : REQUEST +06:00:20 Received From : +06:00:20 ============================================================================ +06:00:20 FNo. Len. Field Value +06:00:20 ============================================================================ +06:00:20 [ 1] [ 4] [0800] +06:00:20 [ 7] [ 10] [0319105929] +06:00:20 [ 11] [ 6] [154764] +06:00:20 [ 70] [ 3] [301] +06:00:20 ============================================================================ +06:00:20 + + +waiting on router queue for slot.... +06:00:20 Sending to : +06:00:20 ============================================================================ +06:00:20 ============================================================================ +06:00:20 Slot Id : <417> +06:00:20 Transaction Type : RESPONSE +06:00:20 Received From : +06:00:20 ============================================================================ +06:00:20 FNo. Len. Field Value +06:00:20 ============================================================================ +06:00:20 [ 1] [ 4] [0810] +06:00:20 [ 7] [ 10] [0319105929] +06:00:20 [ 11] [ 6] [154764] +06:00:20 [ 39] [ 2] [00] +06:00:20 [ 70] [ 3] [301] +06:00:20 ============================================================================ +06:00:20 Calculate Source COMM Id = 2 +06:00:20 ============================================================================ +06:00:20 + + +waiting on router queue for slot.... +06:00:38 ============================================================================ +06:00:38 Slot Id : <391> +06:00:38 Transaction Type : REQUEST +06:00:38 Received From : +06:00:38 ============================================================================ +06:00:38 FNo. Len. Field Value +06:00:38 ============================================================================ +06:00:38 [ 1] [ 4] [0800] +06:00:38 [ 7] [ 10] [0319105945] +06:00:38 [ 11] [ 6] [154765] +06:00:38 [ 70] [ 3] [301] +06:00:38 ============================================================================ +06:00:38 + + +waiting on router queue for slot.... +06:00:38 Sending to : +06:00:38 ============================================================================ +06:00:38 ============================================================================ +06:00:38 Slot Id : <391> +06:00:38 Transaction Type : RESPONSE +06:00:38 Received From : +06:00:38 ============================================================================ +06:00:38 FNo. Len. Field Value +06:00:38 ============================================================================ +06:00:38 [ 1] [ 4] [0810] +06:00:38 [ 7] [ 10] [0319105945] +06:00:38 [ 11] [ 6] [154765] +06:00:38 [ 39] [ 2] [00] +06:00:38 [ 70] [ 3] [301] +06:00:38 ============================================================================ +06:00:38 Calculate Source COMM Id = 2 +06:00:38 ============================================================================ +06:00:38 + + +waiting on router queue for slot.... +06:00:45 ============================================================================ +06:00:45 Slot Id : <377> +06:00:45 Transaction Type : REQUEST +06:00:45 Received From : +06:00:45 ============================================================================ +06:00:45 FNo. Len. Field Value +06:00:45 ============================================================================ +06:00:45 [ 1] [ 4] [0800] +06:00:45 [ 7] [ 10] [0320131234] +06:00:45 [ 11] [ 6] [061234] +06:00:45 [ 37] [ 12] [57906061234] +06:00:45 [ 70] [ 3] [301] +06:00:45 ============================================================================ +06:00:45 + + +waiting on router queue for slot.... +06:00:45 Sending to : +06:00:45 ============================================================================ +06:00:45 ============================================================================ +06:00:45 Slot Id : <377> +06:00:45 Transaction Type : RESPONSE +06:00:45 Received From : +06:00:45 ============================================================================ +06:00:45 FNo. Len. Field Value +06:00:45 ============================================================================ +06:00:45 [ 1] [ 4] [0810] +06:00:45 [ 7] [ 10] [0320131234] +06:00:45 [ 11] [ 6] [061234] +06:00:45 [ 37] [ 12] [579060612340] +06:00:45 [ 39] [ 2] [00] +06:00:45 [ 70] [ 3] [810] +06:00:45 ============================================================================ +06:00:45 Calculate Source COMM Id = 6 +06:00:45 ============================================================================ +06:00:45 + + +waiting on router queue for slot.... +06:00:53 ============================================================================ +06:00:53 Slot Id : <405> +06:00:53 Transaction Type : REQUEST +06:00:53 Received From : +06:00:53 ============================================================================ +06:00:53 FNo. Len. Field Value +06:00:53 ============================================================================ +06:00:53 [ 1] [ 4] [0800] +06:00:53 [ 7] [ 10] [0319110001] +06:00:53 [ 11] [ 6] [154766] +06:00:53 [ 70] [ 3] [301] +06:00:53 ============================================================================ +06:00:53 + + +waiting on router queue for slot.... +06:00:53 Sending to : +06:00:53 ============================================================================ +06:00:53 ============================================================================ +06:00:53 Slot Id : <405> +06:00:53 Transaction Type : RESPONSE +06:00:53 Received From : +06:00:53 ============================================================================ +06:00:53 FNo. Len. Field Value +06:00:53 ============================================================================ +06:00:53 [ 1] [ 4] [0810] +06:00:53 [ 7] [ 10] [0319110001] +06:00:53 [ 11] [ 6] [154766] +06:00:53 [ 39] [ 2] [00] +06:00:53 [ 70] [ 3] [301] +06:00:53 ============================================================================ +06:00:53 Calculate Source COMM Id = 2 +06:00:53 ============================================================================ +06:00:53 + + +waiting on router queue for slot.... +06:01:09 ============================================================================ +06:01:09 Slot Id : <443> +06:01:09 Transaction Type : REQUEST +06:01:09 Received From : +06:01:09 ============================================================================ +06:01:09 FNo. Len. Field Value +06:01:09 ============================================================================ +06:01:09 [ 1] [ 4] [0800] +06:01:09 [ 7] [ 10] [0319110017] +06:01:09 [ 11] [ 6] [154767] +06:01:09 [ 70] [ 3] [301] +06:01:09 ============================================================================ +06:01:09 + + +waiting on router queue for slot.... +06:01:09 Sending to : +06:01:09 ============================================================================ +06:01:09 ============================================================================ +06:01:09 Slot Id : <443> +06:01:09 Transaction Type : RESPONSE +06:01:09 Received From : +06:01:09 ============================================================================ +06:01:09 FNo. Len. Field Value +06:01:09 ============================================================================ +06:01:09 [ 1] [ 4] [0810] +06:01:09 [ 7] [ 10] [0319110017] +06:01:09 [ 11] [ 6] [154767] +06:01:09 [ 39] [ 2] [00] +06:01:09 [ 70] [ 3] [301] +06:01:09 ============================================================================ +06:01:09 Calculate Source COMM Id = 2 +06:01:09 ============================================================================ +06:01:09 + + +waiting on router queue for slot.... +06:01:14 ============================================================================ +06:01:14 Slot Id : <456> +06:01:14 Transaction Type : REQUEST +06:01:14 Received From : +06:01:14 ============================================================================ +06:01:14 FNo. Len. Field Value +06:01:14 ============================================================================ +06:01:14 [ 1] [ 4] [0800] +06:01:14 [ 2] [ 5] [02531] +06:01:14 [ 3] [ 6] [579068] +06:01:14 [ 7] [ 10] [0319230114] +06:01:14 [ 11] [ 6] [806761] +06:01:14 [ 15] [ 10] [0319230114] +06:01:14 [ 37] [ 11] [57906806761] +06:01:14 [ 70] [ 3] [001] +06:01:14 ============================================================================ +06:01:14 + + +waiting on router queue for slot.... +06:01:14 ============================================================================ +06:01:14 Slot Id : <456> +06:01:14 Transaction Type : RESPONSE +06:01:14 Received From : +06:01:14 ============================================================================ +06:01:14 FNo. Len. Field Value +06:01:14 ============================================================================ +06:01:14 [ 1] [ 4] [0810] +06:01:14 [ 7] [ 10] [0319230114] +06:01:14 [ 11] [ 6] [806761] +06:01:14 [ 15] [ 4] [0319] +06:01:14 [ 37] [ 12] [57906806761] +06:01:14 [ 39] [ 2] [00] +06:01:14 [ 70] [ 3] [001] +06:01:14 ============================================================================ +06:01:14 Sending to : +06:01:14 ============================================================================ +06:01:14 + + +waiting on router queue for slot.... +06:01:20 ============================================================================ +06:01:20 Slot Id : <446> +06:01:20 Transaction Type : REQUEST +06:01:20 Received From : +06:01:20 ============================================================================ +06:01:20 FNo. Len. Field Value +06:01:20 ============================================================================ +06:01:20 [ 1] [ 4] [0800] +06:01:20 [ 7] [ 10] [0319225912] +06:01:20 [ 11] [ 6] [062292] +06:01:20 [ 37] [ 12] [57905062292] +06:01:20 [ 70] [ 3] [301] +06:01:20 ============================================================================ +06:01:20 + + +waiting on router queue for slot.... +06:01:20 Sending to : +06:01:20 ============================================================================ +06:01:20 ============================================================================ +06:01:20 Slot Id : <446> +06:01:20 Transaction Type : RESPONSE +06:01:20 Received From : +06:01:20 ============================================================================ +06:01:20 FNo. Len. Field Value +06:01:20 ============================================================================ +06:01:20 [ 1] [ 4] [0810] +06:01:20 [ 7] [ 10] [0319225912] +06:01:20 [ 11] [ 6] [062292] +06:01:20 [ 37] [ 12] [579050622920] +06:01:20 [ 39] [ 2] [00] +06:01:20 [ 70] [ 3] [810] +06:01:20 ============================================================================ +06:01:20 Calculate Source COMM Id = 4 +06:01:20 ============================================================================ +06:01:20 + + +waiting on router queue for slot.... +06:01:24 ============================================================================ +06:01:24 Slot Id : <435> +06:01:24 Transaction Type : REQUEST +06:01:24 Received From : +06:01:24 ============================================================================ +06:01:24 FNo. Len. Field Value +06:01:24 ============================================================================ +06:01:24 [ 1] [ 4] [0800] +06:01:24 [ 7] [ 10] [0319110032] +06:01:24 [ 11] [ 6] [154768] +06:01:24 [ 70] [ 3] [301] +06:01:24 ============================================================================ +06:01:24 + + +waiting on router queue for slot.... +06:01:24 Sending to : +06:01:24 ============================================================================ +06:01:24 ============================================================================ +06:01:24 Slot Id : <435> +06:01:24 Transaction Type : RESPONSE +06:01:24 Received From : +06:01:24 ============================================================================ +06:01:24 FNo. Len. Field Value +06:01:24 ============================================================================ +06:01:24 [ 1] [ 4] [0810] +06:01:24 [ 7] [ 10] [0319110032] +06:01:24 [ 11] [ 6] [154768] +06:01:24 [ 39] [ 2] [00] +06:01:24 [ 70] [ 3] [301] +06:01:24 ============================================================================ +06:01:24 Calculate Source COMM Id = 2 +06:01:24 ============================================================================ +06:01:24 + + +waiting on router queue for slot.... +06:01:29 ============================================================================ +06:01:29 Slot Id : <404> +06:01:29 Transaction Type : REQUEST +06:01:29 Received From : +06:01:29 ============================================================================ +06:01:29 FNo. Len. Field Value +06:01:29 ============================================================================ +06:01:29 [ 1] [ 4] [0200] +06:01:29 [ 2] [ 16] [6213544002076641] +06:01:29 [ 3] [ 6] [301000] +06:01:29 [ 4] [ 12] [000000000000] +06:01:29 [ 7] [ 10] [0320055921] +06:01:29 [ 11] [ 6] [928643] +06:01:29 [ 12] [ 6] [055921] +06:01:29 [ 13] [ 4] [0320] +06:01:29 [ 15] [ 4] [0320] +06:01:29 [ 18] [ 4] [6011] +06:01:29 [ 19] [ 3] [418] +06:01:29 [ 22] [ 3] [021] +06:01:29 [ 25] [ 2] [01] +06:01:29 [ 28] [ 9] [D00000000] +06:01:29 [ 32] [ 6] [668899] +06:01:29 [ 35] [ 32] [6213544002076641=491212017664455] +06:01:29 [ 37] [ 12] [507901690919] +06:01:29 [ 41] [ 8] [03002003] +06:01:29 [ 42] [ 15] [APT ] +06:01:29 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +06:01:29 [ 49] [ 3] [418] +06:01:29 [ 52] [ 16] [887B9C5EDF02ED28] +06:01:29 ============================================================================ +06:01:29 + + +waiting on router queue for slot.... +06:01:29 Sending to : +06:01:29 ============================================================================ +06:01:29 Sending to : +06:01:29 ============================================================================ +06:01:29 ============================================================================ +06:01:29 Slot Id : <404> +06:01:29 Transaction Type : REQUEST +06:01:29 Received From : +06:01:29 ============================================================================ +06:01:29 FNo. Len. Field Value +06:01:29 ============================================================================ +06:01:29 [ 1] [ 4] [0200] +06:01:29 [ 2] [ 16] [6213544002076641] +06:01:29 [ 3] [ 6] [301000] +06:01:29 [ 4] [ 12] [000000000000] +06:01:29 [ 7] [ 10] [0320055921] +06:01:29 [ 11] [ 6] [928643] +06:01:29 [ 12] [ 6] [055921] +06:01:29 [ 13] [ 4] [0320] +06:01:29 [ 15] [ 4] [0320] +06:01:29 [ 18] [ 4] [6011] +06:01:29 [ 19] [ 3] [418] +06:01:29 [ 22] [ 3] [021] +06:01:29 [ 25] [ 2] [01] +06:01:29 [ 28] [ 9] [D00000000] +06:01:29 [ 32] [ 6] [668899] +06:01:29 [ 35] [ 32] [6213544002076641=491212017664455] +06:01:29 [ 37] [ 12] [507901690919] +06:01:29 [ 41] [ 8] [03002003] +06:01:29 [ 42] [ 15] [APT ] +06:01:29 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +06:01:29 [ 49] [ 3] [418] +06:01:29 [ 52] [ 16] [887B9C5EDF02ED28] +06:01:29 ============================================================================ +06:01:29 + + +waiting on router queue for slot.... +06:01:29 Sending to : +06:01:29 ============================================================================ +06:01:29 ============================================================================ +06:01:29 Slot Id : <404> +06:01:29 Transaction Type : REQUEST +06:01:29 Received From : +06:01:29 ============================================================================ +06:01:29 FNo. Len. Field Value +06:01:29 ============================================================================ +06:01:29 [ 1] [ 4] [0200] +06:01:29 [ 2] [ 16] [6213544002076641] +06:01:29 [ 3] [ 6] [301000] +06:01:29 [ 4] [ 12] [000000000000] +06:01:29 [ 7] [ 10] [0320055921] +06:01:29 [ 11] [ 6] [928643] +06:01:29 [ 12] [ 6] [055921] +06:01:29 [ 13] [ 4] [0320] +06:01:29 [ 15] [ 4] [0320] +06:01:29 [ 18] [ 4] [6011] +06:01:29 [ 19] [ 3] [418] +06:01:29 [ 22] [ 3] [021] +06:01:29 [ 25] [ 2] [01] +06:01:29 [ 28] [ 9] [D00000000] +06:01:29 [ 32] [ 6] [668899] +06:01:29 [ 35] [ 32] [6213544002076641=491212017664455] +06:01:29 [ 37] [ 12] [507901690919] +06:01:29 [ 41] [ 8] [03002003] +06:01:29 [ 42] [ 15] [APT ] +06:01:29 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +06:01:29 [ 49] [ 3] [418] +06:01:29 [ 52] [ 16] [E7DAC6626B0647FD] +06:01:29 ============================================================================ +06:01:29 + + +waiting on router queue for slot.... +06:01:29 Sending to : <0> +06:01:29 ============================================================================ +06:01:30 ============================================================================ +06:01:30 Slot Id : <404> +06:01:30 Transaction Type : RESPONSE +06:01:30 Received From : +06:01:30 ============================================================================ +06:01:30 FNo. Len. Field Value +06:01:30 ============================================================================ +06:01:30 [ 1] [ 4] [0210] +06:01:30 [ 2] [ 16] [6213544002076641] +06:01:30 [ 3] [ 6] [301000] +06:01:30 [ 4] [ 12] [000000000000] +06:01:30 [ 7] [ 10] [0320055921] +06:01:30 [ 11] [ 6] [928643] +06:01:30 [ 12] [ 6] [055921] +06:01:30 [ 13] [ 4] [0320] +06:01:30 [ 15] [ 4] [0320] +06:01:30 [ 18] [ 4] [6011] +06:01:30 [ 19] [ 3] [418] +06:01:30 [ 32] [ 6] [668899] +06:01:30 [ 35] [ 32] [6213544002076641=491212017664455] +06:01:30 [ 37] [ 12] [507901690919] +06:01:30 [ 38] [ 6] [382424] +06:01:30 [ 39] [ 2] [00] +06:01:30 [ 41] [ 8] [03002003] +06:01:30 [ 49] [ 3] [418] +06:01:30 [ 54] [ 40] [1001418C0000979497591002418C000097949759] +06:01:30 ============================================================================ +06:01:30 Sending to : +06:01:30 ============================================================================ +06:01:30 + + +waiting on router queue for slot.... +06:01:31 ============================================================================ +06:01:31 Slot Id : <404> +06:01:31 Transaction Type : RESPONSE +06:01:31 Received From : +06:01:31 ============================================================================ +06:01:31 FNo. Len. Field Value +06:01:31 ============================================================================ +06:01:31 [ 1] [ 4] [0210] +06:01:31 [ 2] [ 16] [6213544002076641] +06:01:31 [ 3] [ 6] [301000] +06:01:31 [ 4] [ 12] [000000000000] +06:01:31 [ 7] [ 10] [0320055921] +06:01:31 [ 11] [ 6] [928643] +06:01:31 [ 12] [ 6] [055921] +06:01:31 [ 13] [ 4] [0320] +06:01:31 [ 15] [ 4] [0320] +06:01:31 [ 18] [ 4] [6011] +06:01:31 [ 19] [ 3] [418] +06:01:31 [ 32] [ 6] [668899] +06:01:31 [ 35] [ 32] [6213544002076641=491212017664455] +06:01:31 [ 37] [ 12] [507901690919] +06:01:31 [ 38] [ 6] [382424] +06:01:31 [ 39] [ 2] [00] +06:01:31 [ 41] [ 8] [03002003] +06:01:31 [ 49] [ 3] [418] +06:01:31 [ 54] [ 40] [1001418C0000979497591002418C000097949759] +06:01:31 ============================================================================ +06:01:31 Calculate Source COMM Id = 4 +06:01:31 ============================================================================ +06:01:31 + + +waiting on router queue for slot.... +06:01:39 ============================================================================ +06:01:39 Slot Id : <424> +06:01:39 Transaction Type : REQUEST +06:01:39 Received From : +06:01:39 ============================================================================ +06:01:39 FNo. Len. Field Value +06:01:39 ============================================================================ +06:01:39 [ 1] [ 4] [0800] +06:01:39 [ 7] [ 10] [0319110048] +06:01:39 [ 11] [ 6] [154769] +06:01:39 [ 70] [ 3] [301] +06:01:39 ============================================================================ +06:01:39 + + +waiting on router queue for slot.... +06:01:39 Sending to : +06:01:39 ============================================================================ +06:01:39 ============================================================================ +06:01:39 Slot Id : <424> +06:01:39 Transaction Type : RESPONSE +06:01:39 Received From : +06:01:39 ============================================================================ +06:01:39 FNo. Len. Field Value +06:01:39 ============================================================================ +06:01:39 [ 1] [ 4] [0810] +06:01:39 [ 7] [ 10] [0319110048] +06:01:39 [ 11] [ 6] [154769] +06:01:39 [ 39] [ 2] [00] +06:01:39 [ 70] [ 3] [301] +06:01:39 ============================================================================ +06:01:39 Calculate Source COMM Id = 2 +06:01:39 ============================================================================ +06:01:39 + + +waiting on router queue for slot.... +06:01:50 ============================================================================ +06:01:50 Slot Id : <429> +06:01:50 Transaction Type : REQUEST +06:01:50 Received From : +06:01:50 ============================================================================ +06:01:50 FNo. Len. Field Value +06:01:50 ============================================================================ +06:01:50 [ 1] [ 4] [0800] +06:01:50 [ 7] [ 10] [0320131339] +06:01:50 [ 11] [ 6] [061339] +06:01:50 [ 37] [ 12] [57906061339] +06:01:50 [ 70] [ 3] [301] +06:01:50 ============================================================================ +06:01:50 + + +waiting on router queue for slot.... +06:01:50 Sending to : +06:01:50 ============================================================================ +06:01:50 ============================================================================ +06:01:50 Slot Id : <429> +06:01:50 Transaction Type : RESPONSE +06:01:50 Received From : +06:01:50 ============================================================================ +06:01:50 FNo. Len. Field Value +06:01:50 ============================================================================ +06:01:50 [ 1] [ 4] [0810] +06:01:50 [ 7] [ 10] [0320131339] +06:01:50 [ 11] [ 6] [061339] +06:01:50 [ 37] [ 12] [579060613390] +06:01:50 [ 39] [ 2] [00] +06:01:50 [ 70] [ 3] [810] +06:01:50 ============================================================================ +06:01:50 Calculate Source COMM Id = 6 +06:01:50 ============================================================================ +06:01:50 + + +waiting on router queue for slot.... +06:01:50 ============================================================================ +06:01:50 Slot Id : <442> +06:01:50 Transaction Type : REQUEST +06:01:50 Received From : +06:01:50 ============================================================================ +06:01:50 FNo. Len. Field Value +06:01:50 ============================================================================ +06:01:50 [ 1] [ 4] [0800] +06:01:50 [ 7] [ 10] [0319110059] +06:01:50 [ 11] [ 6] [154770] +06:01:50 [ 70] [ 3] [301] +06:01:50 ============================================================================ +06:01:50 + + +waiting on router queue for slot.... +06:01:50 Sending to : +06:01:50 ============================================================================ +06:01:50 ============================================================================ +06:01:50 Slot Id : <442> +06:01:50 Transaction Type : RESPONSE +06:01:50 Received From : +06:01:50 ============================================================================ +06:01:50 FNo. Len. Field Value +06:01:50 ============================================================================ +06:01:50 [ 1] [ 4] [0810] +06:01:50 [ 7] [ 10] [0319110059] +06:01:50 [ 11] [ 6] [154770] +06:01:50 [ 39] [ 2] [00] +06:01:50 [ 70] [ 3] [301] +06:01:50 ============================================================================ +06:01:50 Calculate Source COMM Id = 2 +06:01:50 ============================================================================ +06:01:50 + + +waiting on router queue for slot.... +06:02:00 ============================================================================ +06:02:00 Slot Id : <445> +06:02:00 Transaction Type : REQUEST +06:02:00 Received From : +06:02:00 ============================================================================ +06:02:00 FNo. Len. Field Value +06:02:00 ============================================================================ +06:02:00 [ 1] [ 4] [0800] +06:02:00 [ 7] [ 10] [0319110109] +06:02:00 [ 11] [ 6] [154771] +06:02:00 [ 70] [ 3] [301] +06:02:00 ============================================================================ +06:02:00 + + +waiting on router queue for slot.... +06:02:00 Sending to : +06:02:00 ============================================================================ +06:02:00 ============================================================================ +06:02:00 Slot Id : <445> +06:02:00 Transaction Type : RESPONSE +06:02:00 Received From : +06:02:00 ============================================================================ +06:02:00 FNo. Len. Field Value +06:02:00 ============================================================================ +06:02:00 [ 1] [ 4] [0810] +06:02:00 [ 7] [ 10] [0319110109] +06:02:00 [ 11] [ 6] [154771] +06:02:00 [ 39] [ 2] [00] +06:02:00 [ 70] [ 3] [301] +06:02:00 ============================================================================ +06:02:00 Calculate Source COMM Id = 2 +06:02:00 ============================================================================ +06:02:00 + + +waiting on router queue for slot.... +06:02:12 ============================================================================ +06:02:12 Slot Id : <438> +06:02:12 Transaction Type : REQUEST +06:02:12 Received From : +06:02:12 ============================================================================ +06:02:12 FNo. Len. Field Value +06:02:12 ============================================================================ +06:02:12 [ 1] [ 4] [0800] +06:02:12 [ 7] [ 10] [0319110120] +06:02:12 [ 11] [ 6] [154772] +06:02:12 [ 70] [ 3] [301] +06:02:12 ============================================================================ +06:02:12 + + +waiting on router queue for slot.... +06:02:12 Sending to : +06:02:12 ============================================================================ +06:02:12 ============================================================================ +06:02:12 Slot Id : <438> +06:02:12 Transaction Type : RESPONSE +06:02:12 Received From : +06:02:12 ============================================================================ +06:02:12 FNo. Len. Field Value +06:02:12 ============================================================================ +06:02:12 [ 1] [ 4] [0810] +06:02:12 [ 7] [ 10] [0319110120] +06:02:12 [ 11] [ 6] [154772] +06:02:12 [ 39] [ 2] [00] +06:02:12 [ 70] [ 3] [301] +06:02:12 ============================================================================ +06:02:12 Calculate Source COMM Id = 2 +06:02:12 ============================================================================ +06:02:12 + + +waiting on router queue for slot.... +06:02:16 ============================================================================ +06:02:16 Slot Id : <434> +06:02:16 Transaction Type : REQUEST +06:02:16 Received From : +06:02:16 ============================================================================ +06:02:16 FNo. Len. Field Value +06:02:16 ============================================================================ +06:02:16 [ 1] [ 4] [0800] +06:02:16 [ 2] [ 5] [02531] +06:02:16 [ 3] [ 6] [579068] +06:02:16 [ 7] [ 10] [0319230216] +06:02:16 [ 11] [ 6] [806762] +06:02:16 [ 15] [ 10] [0319230216] +06:02:16 [ 37] [ 11] [57906806762] +06:02:16 [ 70] [ 3] [001] +06:02:16 ============================================================================ +06:02:16 + + +waiting on router queue for slot.... +06:02:16 ============================================================================ +06:02:16 Slot Id : <434> +06:02:16 Transaction Type : RESPONSE +06:02:16 Received From : +06:02:16 ============================================================================ +06:02:16 FNo. Len. Field Value +06:02:16 ============================================================================ +06:02:16 [ 1] [ 4] [0810] +06:02:16 [ 7] [ 10] [0319230216] +06:02:16 [ 11] [ 6] [806762] +06:02:16 [ 15] [ 4] [0319] +06:02:16 [ 37] [ 12] [57906806762] +06:02:16 [ 39] [ 2] [00] +06:02:16 [ 70] [ 3] [001] +06:02:16 ============================================================================ +06:02:16 Sending to : +06:02:16 ============================================================================ +06:02:16 + + +waiting on router queue for slot.... +06:02:27 ============================================================================ +06:02:27 Slot Id : <428> +06:02:27 Transaction Type : REQUEST +06:02:27 Received From : +06:02:27 ============================================================================ +06:02:27 FNo. Len. Field Value +06:02:27 ============================================================================ +06:02:27 [ 1] [ 4] [0800] +06:02:27 [ 7] [ 10] [0319110136] +06:02:27 [ 11] [ 6] [154773] +06:02:27 [ 70] [ 3] [301] +06:02:27 ============================================================================ +06:02:27 + + +waiting on router queue for slot.... +06:02:27 Sending to : +06:02:27 ============================================================================ +06:02:27 ============================================================================ +06:02:27 Slot Id : <428> +06:02:27 Transaction Type : RESPONSE +06:02:27 Received From : +06:02:27 ============================================================================ +06:02:27 FNo. Len. Field Value +06:02:27 ============================================================================ +06:02:27 [ 1] [ 4] [0810] +06:02:27 [ 7] [ 10] [0319110136] +06:02:27 [ 11] [ 6] [154773] +06:02:27 [ 39] [ 2] [00] +06:02:27 [ 70] [ 3] [301] +06:02:27 ============================================================================ +06:02:27 Calculate Source COMM Id = 2 +06:02:27 ============================================================================ +06:02:27 + + +waiting on router queue for slot.... +06:02:29 ============================================================================ +06:02:29 Slot Id : <427> +06:02:29 Transaction Type : REQUEST +06:02:29 Received From : +06:02:29 ============================================================================ +06:02:29 FNo. Len. Field Value +06:02:29 ============================================================================ +06:02:29 [ 1] [ 4] [0800] +06:02:29 [ 7] [ 10] [0320060217] +06:02:29 [ 11] [ 6] [065884] +06:02:29 [ 37] [ 12] [507906065884] +06:02:29 [ 70] [ 3] [ ] +06:02:29 ============================================================================ +06:02:29 + + +waiting on router queue for slot.... +06:02:29 Sending to : +06:02:29 ============================================================================ +06:02:29 ============================================================================ +06:02:29 Slot Id : <427> +06:02:29 Transaction Type : RESPONSE +06:02:29 Received From : +06:02:29 ============================================================================ +06:02:29 FNo. Len. Field Value +06:02:29 ============================================================================ +06:02:29 [ 1] [ 4] [0810] +06:02:29 [ 7] [ 10] [0320060217] +06:02:29 [ 11] [ 6] [065884] +06:02:29 [ 37] [ 12] [507906065884] +06:02:29 [ 39] [ 2] [91] +06:02:29 [ 70] [ 3] [ ] +06:02:29 ============================================================================ +06:02:29 Calculate Source COMM Id = 3 +06:02:29 ============================================================================ +06:02:29 + + +waiting on router queue for slot.... +06:02:31 ============================================================================ +06:02:31 Slot Id : <426> +06:02:31 Transaction Type : REQUEST +06:02:31 Received From : +06:02:31 ============================================================================ +06:02:31 FNo. Len. Field Value +06:02:31 ============================================================================ +06:02:31 [ 1] [ 4] [0200] +06:02:31 [ 2] [ 16] [6213544002076641] +06:02:31 [ 3] [ 6] [010000] +06:02:31 [ 4] [ 12] [000030000000] +06:02:31 [ 7] [ 10] [0320060023] +06:02:31 [ 11] [ 6] [928650] +06:02:31 [ 12] [ 6] [060023] +06:02:31 [ 13] [ 4] [0320] +06:02:31 [ 15] [ 4] [0320] +06:02:31 [ 18] [ 4] [6011] +06:02:31 [ 19] [ 3] [418] +06:02:31 [ 22] [ 3] [021] +06:02:31 [ 25] [ 2] [01] +06:02:31 [ 28] [ 9] [D00002000] +06:02:31 [ 32] [ 6] [668899] +06:02:31 [ 35] [ 32] [6213544002076641=491212017664455] +06:02:31 [ 37] [ 12] [507901690921] +06:02:31 [ 41] [ 8] [03002003] +06:02:31 [ 42] [ 15] [APT ] +06:02:31 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +06:02:31 [ 49] [ 3] [418] +06:02:31 [ 52] [ 16] [887B9C5EDF02ED28] +06:02:31 ============================================================================ +06:02:31 + + +waiting on router queue for slot.... +06:02:31 Sending to : +06:02:31 ============================================================================ +06:02:31 Sending to : +06:02:31 ============================================================================ +06:02:32 ============================================================================ +06:02:32 Slot Id : <426> +06:02:32 Transaction Type : REQUEST +06:02:32 Received From : +06:02:32 ============================================================================ +06:02:32 FNo. Len. Field Value +06:02:32 ============================================================================ +06:02:32 [ 1] [ 4] [0200] +06:02:32 [ 2] [ 16] [6213544002076641] +06:02:32 [ 3] [ 6] [010000] +06:02:32 [ 4] [ 12] [000030000000] +06:02:32 [ 7] [ 10] [0320060023] +06:02:32 [ 11] [ 6] [928650] +06:02:32 [ 12] [ 6] [060023] +06:02:32 [ 13] [ 4] [0320] +06:02:32 [ 15] [ 4] [0320] +06:02:32 [ 18] [ 4] [6011] +06:02:32 [ 19] [ 3] [418] +06:02:32 [ 22] [ 3] [021] +06:02:32 [ 25] [ 2] [01] +06:02:32 [ 28] [ 9] [D00002000] +06:02:32 [ 32] [ 6] [668899] +06:02:32 [ 35] [ 32] [6213544002076641=491212017664455] +06:02:32 [ 37] [ 12] [507901690921] +06:02:32 [ 41] [ 8] [03002003] +06:02:32 [ 42] [ 15] [APT ] +06:02:32 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +06:02:32 [ 49] [ 3] [418] +06:02:32 [ 52] [ 16] [887B9C5EDF02ED28] +06:02:32 ============================================================================ +06:02:32 + + +waiting on router queue for slot.... +06:02:32 Sending to : +06:02:32 ============================================================================ +06:02:32 ============================================================================ +06:02:32 Slot Id : <426> +06:02:32 Transaction Type : REQUEST +06:02:32 Received From : +06:02:32 ============================================================================ +06:02:32 FNo. Len. Field Value +06:02:32 ============================================================================ +06:02:32 [ 1] [ 4] [0200] +06:02:32 [ 2] [ 16] [6213544002076641] +06:02:32 [ 3] [ 6] [010000] +06:02:32 [ 4] [ 12] [000030000000] +06:02:32 [ 7] [ 10] [0320060023] +06:02:32 [ 11] [ 6] [928650] +06:02:32 [ 12] [ 6] [060023] +06:02:32 [ 13] [ 4] [0320] +06:02:32 [ 15] [ 4] [0320] +06:02:32 [ 18] [ 4] [6011] +06:02:32 [ 19] [ 3] [418] +06:02:32 [ 22] [ 3] [021] +06:02:32 [ 25] [ 2] [01] +06:02:32 [ 28] [ 9] [D00002000] +06:02:32 [ 32] [ 6] [668899] +06:02:32 [ 35] [ 32] [6213544002076641=491212017664455] +06:02:32 [ 37] [ 12] [507901690921] +06:02:32 [ 41] [ 8] [03002003] +06:02:32 [ 42] [ 15] [APT ] +06:02:32 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +06:02:32 [ 49] [ 3] [418] +06:02:32 [ 52] [ 16] [E7DAC6626B0647FD] +06:02:32 ============================================================================ +06:02:32 + + +waiting on router queue for slot.... +06:02:32 Sending to : <0> +06:02:32 ============================================================================ +06:02:32 ============================================================================ +06:02:32 Slot Id : <426> +06:02:32 Transaction Type : RESPONSE +06:02:32 Received From : +06:02:32 ============================================================================ +06:02:32 FNo. Len. Field Value +06:02:32 ============================================================================ +06:02:32 [ 1] [ 4] [0210] +06:02:32 [ 2] [ 16] [6213544002076641] +06:02:32 [ 3] [ 6] [010000] +06:02:32 [ 4] [ 12] [000030000000] +06:02:32 [ 7] [ 10] [0320060023] +06:02:32 [ 11] [ 6] [928650] +06:02:32 [ 12] [ 6] [060023] +06:02:32 [ 13] [ 4] [0320] +06:02:32 [ 15] [ 4] [0320] +06:02:32 [ 18] [ 4] [6011] +06:02:32 [ 19] [ 3] [418] +06:02:32 [ 32] [ 6] [668899] +06:02:32 [ 35] [ 32] [6213544002076641=491212017664455] +06:02:32 [ 37] [ 12] [507901690921] +06:02:32 [ 38] [ 6] [728117] +06:02:32 [ 39] [ 2] [00] +06:02:32 [ 41] [ 8] [03002003] +06:02:32 [ 49] [ 3] [418] +06:02:32 [ 54] [ 40] [0001418C0000677497590002418C000067749759] +06:02:32 ============================================================================ +06:02:32 Sending to : +06:02:32 ============================================================================ +06:02:32 + + +waiting on router queue for slot.... +06:02:34 ============================================================================ +06:02:34 Slot Id : <426> +06:02:34 Transaction Type : RESPONSE +06:02:34 Received From : +06:02:34 ============================================================================ +06:02:34 FNo. Len. Field Value +06:02:34 ============================================================================ +06:02:34 [ 1] [ 4] [0210] +06:02:34 [ 2] [ 16] [6213544002076641] +06:02:34 [ 3] [ 6] [010000] +06:02:34 [ 4] [ 12] [000030000000] +06:02:34 [ 7] [ 10] [0320060023] +06:02:34 [ 11] [ 6] [928650] +06:02:34 [ 12] [ 6] [060023] +06:02:34 [ 13] [ 4] [0320] +06:02:34 [ 15] [ 4] [0320] +06:02:34 [ 18] [ 4] [6011] +06:02:34 [ 19] [ 3] [418] +06:02:34 [ 32] [ 6] [668899] +06:02:34 [ 35] [ 32] [6213544002076641=491212017664455] +06:02:34 [ 37] [ 12] [507901690921] +06:02:34 [ 38] [ 6] [728117] +06:02:34 [ 39] [ 2] [00] +06:02:34 [ 41] [ 8] [03002003] +06:02:34 [ 49] [ 3] [418] +06:02:34 [ 54] [ 40] [0001418C0000677497590002418C000067749759] +06:02:34 ============================================================================ +06:02:34 Calculate Source COMM Id = 4 +06:02:34 ============================================================================ +06:02:34 + + +waiting on router queue for slot.... +06:02:38 ============================================================================ +06:02:38 Slot Id : <431> +06:02:38 Transaction Type : REQUEST +06:02:38 Received From : +06:02:38 ============================================================================ +06:02:38 FNo. Len. Field Value +06:02:38 ============================================================================ +06:02:38 [ 1] [ 4] [0800] +06:02:38 [ 7] [ 10] [0319110147] +06:02:38 [ 11] [ 6] [154774] +06:02:38 [ 70] [ 3] [301] +06:02:38 ============================================================================ +06:02:38 + + +waiting on router queue for slot.... +06:02:38 Sending to : +06:02:38 ============================================================================ +06:02:38 ============================================================================ +06:02:38 Slot Id : <431> +06:02:38 Transaction Type : RESPONSE +06:02:38 Received From : +06:02:38 ============================================================================ +06:02:38 FNo. Len. Field Value +06:02:38 ============================================================================ +06:02:38 [ 1] [ 4] [0810] +06:02:38 [ 7] [ 10] [0319110147] +06:02:38 [ 11] [ 6] [154774] +06:02:38 [ 39] [ 2] [00] +06:02:38 [ 70] [ 3] [301] +06:02:38 ============================================================================ +06:02:38 Calculate Source COMM Id = 2 +06:02:38 ============================================================================ +06:02:38 + + +waiting on router queue for slot.... +06:02:48 ============================================================================ +06:02:48 Slot Id : <451> +06:02:48 Transaction Type : REQUEST +06:02:48 Received From : +06:02:48 ============================================================================ +06:02:48 FNo. Len. Field Value +06:02:48 ============================================================================ +06:02:48 [ 1] [ 4] [0800] +06:02:48 [ 7] [ 10] [0319110157] +06:02:48 [ 11] [ 6] [154775] +06:02:48 [ 70] [ 3] [301] +06:02:48 ============================================================================ +06:02:48 + + +waiting on router queue for slot.... +06:02:48 Sending to : +06:02:48 ============================================================================ +06:02:48 ============================================================================ +06:02:48 Slot Id : <451> +06:02:48 Transaction Type : RESPONSE +06:02:48 Received From : +06:02:48 ============================================================================ +06:02:48 FNo. Len. Field Value +06:02:48 ============================================================================ +06:02:48 [ 1] [ 4] [0810] +06:02:48 [ 7] [ 10] [0319110157] +06:02:48 [ 11] [ 6] [154775] +06:02:48 [ 39] [ 2] [00] +06:02:48 [ 70] [ 3] [301] +06:02:48 ============================================================================ +06:02:48 Calculate Source COMM Id = 2 +06:02:48 ============================================================================ +06:02:48 + + +waiting on router queue for slot.... +06:02:55 ============================================================================ +06:02:55 Slot Id : <457> +06:02:55 Transaction Type : REQUEST +06:02:55 Received From : +06:02:55 ============================================================================ +06:02:55 FNo. Len. Field Value +06:02:55 ============================================================================ +06:02:55 [ 1] [ 4] [0800] +06:02:55 [ 7] [ 10] [0320131444] +06:02:55 [ 11] [ 6] [061444] +06:02:55 [ 37] [ 12] [57906061444] +06:02:55 [ 70] [ 3] [301] +06:02:55 ============================================================================ +06:02:55 + + +waiting on router queue for slot.... +06:02:55 Sending to : +06:02:55 ============================================================================ +06:02:55 ============================================================================ +06:02:55 Slot Id : <457> +06:02:55 Transaction Type : RESPONSE +06:02:55 Received From : +06:02:55 ============================================================================ +06:02:55 FNo. Len. Field Value +06:02:55 ============================================================================ +06:02:55 [ 1] [ 4] [0810] +06:02:55 [ 7] [ 10] [0320131444] +06:02:55 [ 11] [ 6] [061444] +06:02:55 [ 37] [ 12] [579060614440] +06:02:55 [ 39] [ 2] [00] +06:02:55 [ 70] [ 3] [810] +06:02:55 ============================================================================ +06:02:55 Calculate Source COMM Id = 6 +06:02:55 ============================================================================ +06:02:55 + + +waiting on router queue for slot.... +06:02:59 ============================================================================ +06:02:59 Slot Id : <422> +06:02:59 Transaction Type : REQUEST +06:02:59 Received From : +06:02:59 ============================================================================ +06:02:59 FNo. Len. Field Value +06:02:59 ============================================================================ +06:02:59 [ 1] [ 4] [0800] +06:02:59 [ 7] [ 10] [0319110208] +06:02:59 [ 11] [ 6] [154776] +06:02:59 [ 70] [ 3] [301] +06:02:59 ============================================================================ +06:02:59 + + +waiting on router queue for slot.... +06:02:59 Sending to : +06:02:59 ============================================================================ +06:02:59 ============================================================================ +06:02:59 Slot Id : <422> +06:02:59 Transaction Type : RESPONSE +06:02:59 Received From : +06:02:59 ============================================================================ +06:02:59 FNo. Len. Field Value +06:02:59 ============================================================================ +06:02:59 [ 1] [ 4] [0810] +06:02:59 [ 7] [ 10] [0319110208] +06:02:59 [ 11] [ 6] [154776] +06:02:59 [ 39] [ 2] [00] +06:02:59 [ 70] [ 3] [301] +06:02:59 ============================================================================ +06:02:59 Calculate Source COMM Id = 2 +06:02:59 ============================================================================ +06:02:59 + + +waiting on router queue for slot.... +06:03:10 ============================================================================ +06:03:10 Slot Id : <462> +06:03:10 Transaction Type : REQUEST +06:03:10 Received From : +06:03:10 ============================================================================ +06:03:10 FNo. Len. Field Value +06:03:10 ============================================================================ +06:03:10 [ 1] [ 4] [0800] +06:03:10 [ 7] [ 10] [0319110219] +06:03:10 [ 11] [ 6] [154777] +06:03:10 [ 70] [ 3] [301] +06:03:10 ============================================================================ +06:03:10 + + +waiting on router queue for slot.... +06:03:10 Sending to : +06:03:10 ============================================================================ +06:03:10 ============================================================================ +06:03:10 Slot Id : <462> +06:03:10 Transaction Type : RESPONSE +06:03:10 Received From : +06:03:10 ============================================================================ +06:03:10 FNo. Len. Field Value +06:03:10 ============================================================================ +06:03:10 [ 1] [ 4] [0810] +06:03:10 [ 7] [ 10] [0319110219] +06:03:10 [ 11] [ 6] [154777] +06:03:10 [ 39] [ 2] [00] +06:03:10 [ 70] [ 3] [301] +06:03:10 ============================================================================ +06:03:10 Calculate Source COMM Id = 2 +06:03:10 ============================================================================ +06:03:10 + + +waiting on router queue for slot.... +06:03:18 ============================================================================ +06:03:18 Slot Id : <465> +06:03:18 Transaction Type : REQUEST +06:03:18 Received From : +06:03:18 ============================================================================ +06:03:18 FNo. Len. Field Value +06:03:18 ============================================================================ +06:03:18 [ 1] [ 4] [0800] +06:03:18 [ 2] [ 5] [02531] +06:03:18 [ 3] [ 6] [579068] +06:03:18 [ 7] [ 10] [0319230318] +06:03:18 [ 11] [ 6] [806763] +06:03:18 [ 15] [ 10] [0319230318] +06:03:18 [ 37] [ 11] [57906806763] +06:03:18 [ 70] [ 3] [001] +06:03:18 ============================================================================ +06:03:18 + + +waiting on router queue for slot.... +06:03:18 ============================================================================ +06:03:18 Slot Id : <465> +06:03:18 Transaction Type : RESPONSE +06:03:18 Received From : +06:03:18 ============================================================================ +06:03:18 FNo. Len. Field Value +06:03:18 ============================================================================ +06:03:18 [ 1] [ 4] [0810] +06:03:18 [ 7] [ 10] [0319230318] +06:03:18 [ 11] [ 6] [806763] +06:03:18 [ 15] [ 4] [0319] +06:03:18 [ 37] [ 12] [57906806763] +06:03:18 [ 39] [ 2] [00] +06:03:18 [ 70] [ 3] [001] +06:03:18 ============================================================================ +06:03:18 Sending to : +06:03:18 ============================================================================ +06:03:18 + + +waiting on router queue for slot.... +06:03:21 ============================================================================ +06:03:21 Slot Id : <444> +06:03:21 Transaction Type : REQUEST +06:03:21 Received From : +06:03:21 ============================================================================ +06:03:21 FNo. Len. Field Value +06:03:21 ============================================================================ +06:03:21 [ 1] [ 4] [0800] +06:03:21 [ 7] [ 10] [0319110229] +06:03:21 [ 11] [ 6] [154778] +06:03:21 [ 70] [ 3] [301] +06:03:21 ============================================================================ +06:03:21 + + +waiting on router queue for slot.... +06:03:21 Sending to : +06:03:21 ============================================================================ +06:03:21 ============================================================================ +06:03:21 Slot Id : <444> +06:03:21 Transaction Type : RESPONSE +06:03:21 Received From : +06:03:21 ============================================================================ +06:03:21 FNo. Len. Field Value +06:03:21 ============================================================================ +06:03:21 [ 1] [ 4] [0810] +06:03:21 [ 7] [ 10] [0319110229] +06:03:21 [ 11] [ 6] [154778] +06:03:21 [ 39] [ 2] [00] +06:03:21 [ 70] [ 3] [301] +06:03:21 ============================================================================ +06:03:21 Calculate Source COMM Id = 2 +06:03:21 ============================================================================ +06:03:21 + + +waiting on router queue for slot.... +06:03:32 ============================================================================ +06:03:32 Slot Id : <421> +06:03:32 Transaction Type : REQUEST +06:03:32 Received From : +06:03:32 ============================================================================ +06:03:32 FNo. Len. Field Value +06:03:32 ============================================================================ +06:03:32 [ 1] [ 4] [0800] +06:03:32 [ 7] [ 10] [0319110240] +06:03:32 [ 11] [ 6] [154779] +06:03:32 [ 70] [ 3] [301] +06:03:32 ============================================================================ +06:03:32 + + +waiting on router queue for slot.... +06:03:32 Sending to : +06:03:32 ============================================================================ +06:03:32 ============================================================================ +06:03:32 Slot Id : <421> +06:03:32 Transaction Type : RESPONSE +06:03:32 Received From : +06:03:32 ============================================================================ +06:03:32 FNo. Len. Field Value +06:03:32 ============================================================================ +06:03:32 [ 1] [ 4] [0810] +06:03:32 [ 7] [ 10] [0319110240] +06:03:32 [ 11] [ 6] [154779] +06:03:32 [ 39] [ 2] [00] +06:03:32 [ 70] [ 3] [301] +06:03:32 ============================================================================ +06:03:32 Calculate Source COMM Id = 2 +06:03:32 ============================================================================ +06:03:32 + + +waiting on router queue for slot.... +06:03:46 ============================================================================ +06:03:46 Slot Id : <439> +06:03:46 Transaction Type : REQUEST +06:03:46 Received From : +06:03:46 ============================================================================ +06:03:46 FNo. Len. Field Value +06:03:46 ============================================================================ +06:03:46 [ 1] [ 4] [0800] +06:03:46 [ 7] [ 10] [0319110253] +06:03:46 [ 11] [ 6] [154780] +06:03:46 [ 70] [ 3] [301] +06:03:46 ============================================================================ +06:03:46 + + +waiting on router queue for slot.... +06:03:46 Sending to : +06:03:46 ============================================================================ +06:03:46 ============================================================================ +06:03:46 Slot Id : <439> +06:03:46 Transaction Type : RESPONSE +06:03:46 Received From : +06:03:46 ============================================================================ +06:03:46 FNo. Len. Field Value +06:03:46 ============================================================================ +06:03:46 [ 1] [ 4] [0810] +06:03:46 [ 7] [ 10] [0319110253] +06:03:46 [ 11] [ 6] [154780] +06:03:46 [ 39] [ 2] [00] +06:03:46 [ 70] [ 3] [301] +06:03:46 ============================================================================ +06:03:46 Calculate Source COMM Id = 2 +06:03:46 ============================================================================ +06:03:46 + + +waiting on router queue for slot.... +06:04:00 ============================================================================ +06:04:00 Slot Id : <458> +06:04:00 Transaction Type : REQUEST +06:04:00 Received From : +06:04:00 ============================================================================ +06:04:00 FNo. Len. Field Value +06:04:00 ============================================================================ +06:04:00 [ 1] [ 4] [0800] +06:04:00 [ 7] [ 10] [0320131549] +06:04:00 [ 11] [ 6] [061549] +06:04:00 [ 37] [ 12] [57906061549] +06:04:00 [ 70] [ 3] [301] +06:04:00 ============================================================================ +06:04:00 + + +waiting on router queue for slot.... +06:04:00 Sending to : +06:04:00 ============================================================================ +06:04:00 ============================================================================ +06:04:00 Slot Id : <458> +06:04:00 Transaction Type : RESPONSE +06:04:00 Received From : +06:04:00 ============================================================================ +06:04:00 FNo. Len. Field Value +06:04:00 ============================================================================ +06:04:00 [ 1] [ 4] [0810] +06:04:00 [ 7] [ 10] [0320131549] +06:04:00 [ 11] [ 6] [061549] +06:04:00 [ 37] [ 12] [579060615490] +06:04:00 [ 39] [ 2] [00] +06:04:00 [ 70] [ 3] [810] +06:04:00 ============================================================================ +06:04:00 Calculate Source COMM Id = 6 +06:04:00 ============================================================================ +06:04:00 + + +waiting on router queue for slot.... +06:04:00 ============================================================================ +06:04:00 Slot Id : <423> +06:04:00 Transaction Type : REQUEST +06:04:00 Received From : +06:04:00 ============================================================================ +06:04:00 FNo. Len. Field Value +06:04:00 ============================================================================ +06:04:00 [ 1] [ 4] [0800] +06:04:00 [ 7] [ 10] [0319110309] +06:04:00 [ 11] [ 6] [154781] +06:04:00 [ 70] [ 3] [301] +06:04:00 ============================================================================ +06:04:00 + + +waiting on router queue for slot.... +06:04:00 Sending to : +06:04:00 ============================================================================ +06:04:00 ============================================================================ +06:04:00 Slot Id : <423> +06:04:00 Transaction Type : RESPONSE +06:04:00 Received From : +06:04:00 ============================================================================ +06:04:00 FNo. Len. Field Value +06:04:00 ============================================================================ +06:04:00 [ 1] [ 4] [0810] +06:04:00 [ 7] [ 10] [0319110309] +06:04:00 [ 11] [ 6] [154781] +06:04:00 [ 39] [ 2] [00] +06:04:00 [ 70] [ 3] [301] +06:04:00 ============================================================================ +06:04:00 Calculate Source COMM Id = 2 +06:04:00 ============================================================================ +06:04:00 + + +waiting on router queue for slot.... +06:04:11 ============================================================================ +06:04:11 Slot Id : <466> +06:04:11 Transaction Type : REQUEST +06:04:11 Received From : +06:04:11 ============================================================================ +06:04:11 FNo. Len. Field Value +06:04:11 ============================================================================ +06:04:11 [ 1] [ 4] [0200] +06:04:11 [ 2] [ 16] [6213541000005002] +06:04:11 [ 3] [ 6] [010000] +06:04:11 [ 4] [ 12] [000050000000] +06:04:11 [ 7] [ 10] [0319230319] +06:04:11 [ 11] [ 6] [266547] +06:04:11 [ 12] [ 6] [060319] +06:04:11 [ 13] [ 4] [0320] +06:04:11 [ 14] [ 4] [4912] +06:04:11 [ 15] [ 4] [0320] +06:04:11 [ 18] [ 4] [6011] +06:04:11 [ 19] [ 3] [418] +06:04:11 [ 22] [ 3] [021] +06:04:11 [ 25] [ 2] [01] +06:04:11 [ 28] [ 9] [D00002000] +06:04:11 [ 32] [ 6] [180893] +06:04:11 [ 35] [ 32] [6213541000005002=491212010500990] +06:04:11 [ 37] [ 12] [507923266547] +06:04:11 [ 41] [ 8] [0441VT52] +06:04:11 [ 42] [ 15] [999999 ] +06:04:11 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +06:04:11 [ 49] [ 3] [418] +06:04:11 [ 52] [ 16] [F9C39F7359BEBF20] +06:04:11 ============================================================================ +06:04:11 + + +waiting on router queue for slot.... +06:04:11 Sending to : +06:04:11 ============================================================================ +06:04:11 Sending to : +06:04:11 ============================================================================ +06:04:11 ============================================================================ +06:04:11 Slot Id : <436> +06:04:11 Transaction Type : REQUEST +06:04:11 Received From : +06:04:11 ============================================================================ +06:04:11 FNo. Len. Field Value +06:04:11 ============================================================================ +06:04:11 [ 1] [ 4] [0800] +06:04:11 [ 7] [ 10] [0319110320] +06:04:11 [ 11] [ 6] [154782] +06:04:11 [ 70] [ 3] [301] +06:04:11 ============================================================================ +06:04:11 + + +waiting on router queue for slot.... +06:04:11 Sending to : +06:04:11 ============================================================================ +06:04:11 ============================================================================ +06:04:11 Slot Id : <436> +06:04:11 Transaction Type : RESPONSE +06:04:11 Received From : +06:04:11 ============================================================================ +06:04:11 FNo. Len. Field Value +06:04:11 ============================================================================ +06:04:11 [ 1] [ 4] [0810] +06:04:11 [ 7] [ 10] [0319110320] +06:04:11 [ 11] [ 6] [154782] +06:04:11 [ 39] [ 2] [00] +06:04:11 [ 70] [ 3] [301] +06:04:11 ============================================================================ +06:04:11 Calculate Source COMM Id = 2 +06:04:11 ============================================================================ +06:04:11 + + +waiting on router queue for slot.... +06:04:11 ============================================================================ +06:04:11 Slot Id : <466> +06:04:11 Transaction Type : REQUEST +06:04:11 Received From : +06:04:11 ============================================================================ +06:04:11 FNo. Len. Field Value +06:04:11 ============================================================================ +06:04:11 [ 1] [ 4] [0200] +06:04:11 [ 2] [ 16] [6213541000005002] +06:04:11 [ 3] [ 6] [010000] +06:04:11 [ 4] [ 12] [000050000000] +06:04:11 [ 7] [ 10] [0319230319] +06:04:11 [ 11] [ 6] [266547] +06:04:11 [ 12] [ 6] [060319] +06:04:11 [ 13] [ 4] [0320] +06:04:11 [ 14] [ 4] [4912] +06:04:11 [ 15] [ 4] [0320] +06:04:11 [ 18] [ 4] [6011] +06:04:11 [ 19] [ 3] [418] +06:04:11 [ 22] [ 3] [021] +06:04:11 [ 25] [ 2] [01] +06:04:11 [ 28] [ 9] [D00002000] +06:04:11 [ 32] [ 6] [180893] +06:04:11 [ 35] [ 32] [6213541000005002=491212010500990] +06:04:11 [ 37] [ 12] [507923266547] +06:04:11 [ 41] [ 8] [0441VT52] +06:04:11 [ 42] [ 15] [999999 ] +06:04:11 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +06:04:11 [ 49] [ 3] [418] +06:04:11 [ 52] [ 16] [F9C39F7359BEBF20] +06:04:11 ============================================================================ +06:04:11 + + +waiting on router queue for slot.... +06:04:11 Sending to : +06:04:11 ============================================================================ +06:04:11 ============================================================================ +06:04:11 Slot Id : <466> +06:04:11 Transaction Type : REQUEST +06:04:11 Received From : +06:04:11 ============================================================================ +06:04:11 FNo. Len. Field Value +06:04:11 ============================================================================ +06:04:11 [ 1] [ 4] [0200] +06:04:11 [ 2] [ 16] [6213541000005002] +06:04:11 [ 3] [ 6] [010000] +06:04:11 [ 4] [ 12] [000050000000] +06:04:11 [ 7] [ 10] [0319230319] +06:04:11 [ 11] [ 6] [266547] +06:04:11 [ 12] [ 6] [060319] +06:04:11 [ 13] [ 4] [0320] +06:04:11 [ 14] [ 4] [4912] +06:04:11 [ 15] [ 4] [0320] +06:04:11 [ 18] [ 4] [6011] +06:04:11 [ 19] [ 3] [418] +06:04:11 [ 22] [ 3] [021] +06:04:11 [ 25] [ 2] [01] +06:04:11 [ 28] [ 9] [D00002000] +06:04:11 [ 32] [ 6] [180893] +06:04:11 [ 35] [ 32] [6213541000005002=491212010500990] +06:04:11 [ 37] [ 12] [507923266547] +06:04:11 [ 41] [ 8] [0441VT52] +06:04:11 [ 42] [ 15] [999999 ] +06:04:11 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +06:04:11 [ 49] [ 3] [418] +06:04:11 [ 52] [ 16] [15730E58389F2AC8] +06:04:11 ============================================================================ +06:04:11 + + +waiting on router queue for slot.... +06:04:11 Sending to : <0> +06:04:11 ============================================================================ +06:04:12 ============================================================================ +06:04:12 Slot Id : <466> +06:04:12 Transaction Type : RESPONSE +06:04:12 Received From : +06:04:12 ============================================================================ +06:04:12 FNo. Len. Field Value +06:04:12 ============================================================================ +06:04:12 [ 1] [ 4] [0210] +06:04:12 [ 2] [ 16] [6213541000005002] +06:04:12 [ 3] [ 6] [010000] +06:04:12 [ 4] [ 12] [000050000000] +06:04:12 [ 7] [ 10] [0319230319] +06:04:12 [ 11] [ 6] [266547] +06:04:12 [ 12] [ 6] [060319] +06:04:12 [ 13] [ 4] [0320] +06:04:12 [ 15] [ 4] [0320] +06:04:12 [ 18] [ 4] [6011] +06:04:12 [ 19] [ 3] [418] +06:04:12 [ 32] [ 6] [180893] +06:04:12 [ 35] [ 32] [6213541000005002=491212010500990] +06:04:12 [ 37] [ 12] [507923266547] +06:04:12 [ 38] [ 6] [509681] +06:04:12 [ 39] [ 2] [00] +06:04:12 [ 41] [ 8] [0441VT52] +06:04:12 [ 49] [ 3] [418] +06:04:12 [ 54] [ 40] [0001418C0000445556190002418C000044555619] +06:04:12 ============================================================================ +06:04:12 Sending to : +06:04:12 ============================================================================ +06:04:12 + + +waiting on router queue for slot.... +06:04:14 ============================================================================ +06:04:14 Slot Id : <466> +06:04:14 Transaction Type : RESPONSE +06:04:14 Received From : +06:04:14 ============================================================================ +06:04:14 FNo. Len. Field Value +06:04:14 ============================================================================ +06:04:14 [ 1] [ 4] [0210] +06:04:14 [ 2] [ 16] [6213541000005002] +06:04:14 [ 3] [ 6] [010000] +06:04:14 [ 4] [ 12] [000050000000] +06:04:14 [ 7] [ 10] [0319230319] +06:04:14 [ 11] [ 6] [266547] +06:04:14 [ 12] [ 6] [060319] +06:04:14 [ 13] [ 4] [0320] +06:04:14 [ 15] [ 4] [0320] +06:04:14 [ 18] [ 4] [6011] +06:04:14 [ 19] [ 3] [418] +06:04:14 [ 32] [ 6] [180893] +06:04:14 [ 35] [ 32] [6213541000005002=491212010500990] +06:04:14 [ 37] [ 12] [507923266547] +06:04:14 [ 38] [ 6] [509681] +06:04:14 [ 39] [ 2] [00] +06:04:14 [ 41] [ 8] [0441VT52] +06:04:14 [ 49] [ 3] [418] +06:04:14 [ 54] [ 40] [0001418C0000445556190002418C000044555619] +06:04:14 ============================================================================ +06:04:14 Calculate Source COMM Id = 2 +06:04:14 ============================================================================ +06:04:14 + + +waiting on router queue for slot.... +06:04:20 ============================================================================ +06:04:20 Slot Id : <459> +06:04:20 Transaction Type : REQUEST +06:04:20 Received From : +06:04:20 ============================================================================ +06:04:20 FNo. Len. Field Value +06:04:20 ============================================================================ +06:04:20 [ 1] [ 4] [0800] +06:04:20 [ 2] [ 5] [02531] +06:04:20 [ 3] [ 6] [579068] +06:04:20 [ 7] [ 10] [0319230420] +06:04:20 [ 11] [ 6] [806764] +06:04:20 [ 15] [ 10] [0319230420] +06:04:20 [ 37] [ 11] [57906806764] +06:04:20 [ 70] [ 3] [001] +06:04:20 ============================================================================ +06:04:20 + + +waiting on router queue for slot.... +06:04:20 ============================================================================ +06:04:20 Slot Id : <459> +06:04:20 Transaction Type : RESPONSE +06:04:20 Received From : +06:04:20 ============================================================================ +06:04:20 FNo. Len. Field Value +06:04:20 ============================================================================ +06:04:20 [ 1] [ 4] [0810] +06:04:20 [ 7] [ 10] [0319230420] +06:04:20 [ 11] [ 6] [806764] +06:04:20 [ 15] [ 4] [0319] +06:04:20 [ 37] [ 12] [57906806764] +06:04:20 [ 39] [ 2] [00] +06:04:20 [ 70] [ 3] [001] +06:04:20 ============================================================================ +06:04:20 Sending to : +06:04:20 ============================================================================ +06:04:20 + + +waiting on router queue for slot.... +06:04:28 ============================================================================ +06:04:28 Slot Id : <475> +06:04:28 Transaction Type : REQUEST +06:04:28 Received From : +06:04:28 ============================================================================ +06:04:28 FNo. Len. Field Value +06:04:28 ============================================================================ +06:04:28 [ 1] [ 4] [0800] +06:04:28 [ 7] [ 10] [0319110336] +06:04:28 [ 11] [ 6] [154783] +06:04:28 [ 70] [ 3] [301] +06:04:28 ============================================================================ +06:04:28 + + +waiting on router queue for slot.... +06:04:28 Sending to : +06:04:28 ============================================================================ +06:04:28 ============================================================================ +06:04:28 Slot Id : <475> +06:04:28 Transaction Type : RESPONSE +06:04:28 Received From : +06:04:28 ============================================================================ +06:04:28 FNo. Len. Field Value +06:04:28 ============================================================================ +06:04:28 [ 1] [ 4] [0810] +06:04:28 [ 7] [ 10] [0319110336] +06:04:28 [ 11] [ 6] [154783] +06:04:28 [ 39] [ 2] [00] +06:04:28 [ 70] [ 3] [301] +06:04:28 ============================================================================ +06:04:28 Calculate Source COMM Id = 2 +06:04:28 ============================================================================ +06:04:28 + + +waiting on router queue for slot.... +06:04:39 ============================================================================ +06:04:39 Slot Id : <468> +06:04:39 Transaction Type : REQUEST +06:04:39 Received From : +06:04:39 ============================================================================ +06:04:39 FNo. Len. Field Value +06:04:39 ============================================================================ +06:04:39 [ 1] [ 4] [0800] +06:04:39 [ 7] [ 10] [0319110347] +06:04:39 [ 11] [ 6] [154784] +06:04:39 [ 70] [ 3] [301] +06:04:39 ============================================================================ +06:04:39 + + +waiting on router queue for slot.... +06:04:39 Sending to : +06:04:39 ============================================================================ +06:04:39 ============================================================================ +06:04:39 Slot Id : <468> +06:04:39 Transaction Type : RESPONSE +06:04:39 Received From : +06:04:39 ============================================================================ +06:04:39 FNo. Len. Field Value +06:04:39 ============================================================================ +06:04:39 [ 1] [ 4] [0810] +06:04:39 [ 7] [ 10] [0319110347] +06:04:39 [ 11] [ 6] [154784] +06:04:39 [ 39] [ 2] [00] +06:04:39 [ 70] [ 3] [301] +06:04:39 ============================================================================ +06:04:39 Calculate Source COMM Id = 2 +06:04:39 ============================================================================ +06:04:39 + + +waiting on router queue for slot.... +06:04:49 ============================================================================ +06:04:49 Slot Id : <452> +06:04:49 Transaction Type : REQUEST +06:04:49 Received From : +06:04:49 ============================================================================ +06:04:49 FNo. Len. Field Value +06:04:49 ============================================================================ +06:04:49 [ 1] [ 4] [0800] +06:04:49 [ 7] [ 10] [0319110358] +06:04:49 [ 11] [ 6] [154785] +06:04:49 [ 70] [ 3] [301] +06:04:49 ============================================================================ +06:04:49 + + +waiting on router queue for slot.... +06:04:49 Sending to : +06:04:49 ============================================================================ +06:04:49 ============================================================================ +06:04:49 Slot Id : <452> +06:04:49 Transaction Type : RESPONSE +06:04:49 Received From : +06:04:49 ============================================================================ +06:04:49 FNo. Len. Field Value +06:04:49 ============================================================================ +06:04:49 [ 1] [ 4] [0810] +06:04:49 [ 7] [ 10] [0319110358] +06:04:49 [ 11] [ 6] [154785] +06:04:49 [ 39] [ 2] [00] +06:04:49 [ 70] [ 3] [301] +06:04:49 ============================================================================ +06:04:49 Calculate Source COMM Id = 2 +06:04:49 ============================================================================ +06:04:49 + + +waiting on router queue for slot.... +06:04:54 ============================================================================ +06:04:54 Slot Id : <449> +06:04:54 Transaction Type : REQUEST +06:04:54 Received From : +06:04:54 ============================================================================ +06:04:54 FNo. Len. Field Value +06:04:54 ============================================================================ +06:04:54 [ 1] [ 4] [0800] +06:04:54 [ 7] [ 10] [0319231242] +06:04:54 [ 11] [ 6] [088625] +06:04:54 [ 37] [ 12] [57906088625] +06:04:54 [ 70] [ 3] [301] +06:04:54 ============================================================================ +06:04:54 + + +waiting on router queue for slot.... +06:04:54 Sending to : +06:04:54 ============================================================================ +06:04:54 ============================================================================ +06:04:54 Slot Id : <449> +06:04:54 Transaction Type : RESPONSE +06:04:54 Received From : +06:04:54 ============================================================================ +06:04:54 FNo. Len. Field Value +06:04:54 ============================================================================ +06:04:54 [ 1] [ 4] [0810] +06:04:54 [ 7] [ 10] [0319231242] +06:04:54 [ 11] [ 6] [088625] +06:04:54 [ 37] [ 12] [579060886250] +06:04:54 [ 39] [ 2] [00] +06:04:54 [ 70] [ 3] [810] +06:04:54 ============================================================================ +06:04:54 Calculate Source COMM Id = 1 +06:04:54 ============================================================================ +06:04:54 + + +waiting on router queue for slot.... +06:04:59 ============================================================================ +06:04:59 Slot Id : <455> +06:04:59 Transaction Type : REQUEST +06:04:59 Received From : +06:04:59 ============================================================================ +06:04:59 FNo. Len. Field Value +06:04:59 ============================================================================ +06:04:59 [ 1] [ 4] [0800] +06:04:59 [ 7] [ 10] [0319110408] +06:04:59 [ 11] [ 6] [154786] +06:04:59 [ 70] [ 3] [301] +06:04:59 ============================================================================ +06:04:59 + + +waiting on router queue for slot.... +06:04:59 Sending to : +06:04:59 ============================================================================ +06:04:59 ============================================================================ +06:04:59 Slot Id : <455> +06:04:59 Transaction Type : RESPONSE +06:04:59 Received From : +06:04:59 ============================================================================ +06:04:59 FNo. Len. Field Value +06:04:59 ============================================================================ +06:04:59 [ 1] [ 4] [0810] +06:04:59 [ 7] [ 10] [0319110408] +06:04:59 [ 11] [ 6] [154786] +06:04:59 [ 39] [ 2] [00] +06:04:59 [ 70] [ 3] [301] +06:04:59 ============================================================================ +06:04:59 Calculate Source COMM Id = 2 +06:04:59 ============================================================================ +06:04:59 + + +waiting on router queue for slot.... +06:05:05 ============================================================================ +06:05:05 Slot Id : <440> +06:05:05 Transaction Type : REQUEST +06:05:05 Received From : +06:05:05 ============================================================================ +06:05:05 FNo. Len. Field Value +06:05:05 ============================================================================ +06:05:05 [ 1] [ 4] [0800] +06:05:05 [ 7] [ 10] [0320131654] +06:05:05 [ 11] [ 6] [061654] +06:05:05 [ 37] [ 12] [57906061654] +06:05:05 [ 70] [ 3] [301] +06:05:05 ============================================================================ +06:05:05 + + +waiting on router queue for slot.... +06:05:05 Sending to : +06:05:05 ============================================================================ +06:05:05 ============================================================================ +06:05:05 Slot Id : <440> +06:05:05 Transaction Type : RESPONSE +06:05:05 Received From : +06:05:05 ============================================================================ +06:05:05 FNo. Len. Field Value +06:05:05 ============================================================================ +06:05:05 [ 1] [ 4] [0810] +06:05:05 [ 7] [ 10] [0320131654] +06:05:05 [ 11] [ 6] [061654] +06:05:05 [ 37] [ 12] [579060616540] +06:05:05 [ 39] [ 2] [00] +06:05:05 [ 70] [ 3] [810] +06:05:05 ============================================================================ +06:05:05 Calculate Source COMM Id = 6 +06:05:05 ============================================================================ +06:05:05 + + +waiting on router queue for slot.... +06:05:11 ============================================================================ +06:05:11 Slot Id : <460> +06:05:11 Transaction Type : REQUEST +06:05:11 Received From : +06:05:11 ============================================================================ +06:05:11 FNo. Len. Field Value +06:05:11 ============================================================================ +06:05:11 [ 1] [ 4] [0800] +06:05:11 [ 7] [ 10] [0319110419] +06:05:11 [ 11] [ 6] [154787] +06:05:11 [ 70] [ 3] [301] +06:05:11 ============================================================================ +06:05:11 + + +waiting on router queue for slot.... +06:05:11 Sending to : +06:05:11 ============================================================================ +06:05:11 ============================================================================ +06:05:11 Slot Id : <460> +06:05:11 Transaction Type : RESPONSE +06:05:11 Received From : +06:05:11 ============================================================================ +06:05:11 FNo. Len. Field Value +06:05:11 ============================================================================ +06:05:11 [ 1] [ 4] [0810] +06:05:11 [ 7] [ 10] [0319110419] +06:05:11 [ 11] [ 6] [154787] +06:05:11 [ 39] [ 2] [00] +06:05:11 [ 70] [ 3] [301] +06:05:11 ============================================================================ +06:05:11 Calculate Source COMM Id = 2 +06:05:11 ============================================================================ +06:05:11 + + +waiting on router queue for slot.... +06:05:22 ============================================================================ +06:05:22 Slot Id : <432> +06:05:22 Transaction Type : REQUEST +06:05:22 Received From : +06:05:22 ============================================================================ +06:05:22 FNo. Len. Field Value +06:05:22 ============================================================================ +06:05:22 [ 1] [ 4] [0800] +06:05:22 [ 2] [ 5] [02531] +06:05:22 [ 3] [ 6] [579068] +06:05:22 [ 7] [ 10] [0319230522] +06:05:22 [ 11] [ 6] [806765] +06:05:22 [ 15] [ 10] [0319230522] +06:05:22 [ 37] [ 11] [57906806765] +06:05:22 [ 70] [ 3] [001] +06:05:22 ============================================================================ +06:05:22 + + +waiting on router queue for slot.... +06:05:22 ============================================================================ +06:05:22 Slot Id : <432> +06:05:22 Transaction Type : RESPONSE +06:05:22 Received From : +06:05:22 ============================================================================ +06:05:22 FNo. Len. Field Value +06:05:22 ============================================================================ +06:05:22 [ 1] [ 4] [0810] +06:05:22 [ 7] [ 10] [0319230522] +06:05:22 [ 11] [ 6] [806765] +06:05:22 [ 15] [ 4] [0319] +06:05:22 [ 37] [ 12] [57906806765] +06:05:22 [ 39] [ 2] [00] +06:05:22 [ 70] [ 3] [001] +06:05:22 ============================================================================ +06:05:22 Sending to : +06:05:22 ============================================================================ +06:05:22 + + +waiting on router queue for slot.... +06:05:27 ============================================================================ +06:05:27 Slot Id : <453> +06:05:27 Transaction Type : REQUEST +06:05:27 Received From : +06:05:27 ============================================================================ +06:05:27 FNo. Len. Field Value +06:05:27 ============================================================================ +06:05:27 [ 1] [ 4] [0800] +06:05:27 [ 7] [ 10] [0319110435] +06:05:27 [ 11] [ 6] [154788] +06:05:27 [ 70] [ 3] [301] +06:05:27 ============================================================================ +06:05:27 + + +waiting on router queue for slot.... +06:05:27 Sending to : +06:05:27 ============================================================================ +06:05:27 ============================================================================ +06:05:27 Slot Id : <453> +06:05:27 Transaction Type : RESPONSE +06:05:27 Received From : +06:05:27 ============================================================================ +06:05:27 FNo. Len. Field Value +06:05:27 ============================================================================ +06:05:27 [ 1] [ 4] [0810] +06:05:27 [ 7] [ 10] [0319110435] +06:05:27 [ 11] [ 6] [154788] +06:05:27 [ 39] [ 2] [00] +06:05:27 [ 70] [ 3] [301] +06:05:27 ============================================================================ +06:05:27 Calculate Source COMM Id = 2 +06:05:27 ============================================================================ +06:05:27 + + +waiting on router queue for slot.... +06:05:38 ============================================================================ +06:05:38 Slot Id : <482> +06:05:38 Transaction Type : REQUEST +06:05:38 Received From : +06:05:38 ============================================================================ +06:05:38 FNo. Len. Field Value +06:05:38 ============================================================================ +06:05:38 [ 1] [ 4] [0800] +06:05:38 [ 7] [ 10] [0319110446] +06:05:38 [ 11] [ 6] [154789] +06:05:38 [ 70] [ 3] [301] +06:05:38 ============================================================================ +06:05:38 + + +waiting on router queue for slot.... +06:05:38 Sending to : +06:05:38 ============================================================================ +06:05:38 ============================================================================ +06:05:38 Slot Id : <482> +06:05:38 Transaction Type : RESPONSE +06:05:38 Received From : +06:05:38 ============================================================================ +06:05:38 FNo. Len. Field Value +06:05:38 ============================================================================ +06:05:38 [ 1] [ 4] [0810] +06:05:38 [ 7] [ 10] [0319110446] +06:05:38 [ 11] [ 6] [154789] +06:05:38 [ 39] [ 2] [00] +06:05:38 [ 70] [ 3] [301] +06:05:38 ============================================================================ +06:05:38 Calculate Source COMM Id = 2 +06:05:38 ============================================================================ +06:05:38 + + +waiting on router queue for slot.... +06:05:48 ============================================================================ +06:05:48 Slot Id : <488> +06:05:48 Transaction Type : REQUEST +06:05:48 Received From : +06:05:48 ============================================================================ +06:05:48 FNo. Len. Field Value +06:05:48 ============================================================================ +06:05:48 [ 1] [ 4] [0800] +06:05:48 [ 7] [ 10] [0319110457] +06:05:48 [ 11] [ 6] [154790] +06:05:48 [ 70] [ 3] [301] +06:05:48 ============================================================================ +06:05:48 + + +waiting on router queue for slot.... +06:05:48 Sending to : +06:05:48 ============================================================================ +06:05:48 ============================================================================ +06:05:48 Slot Id : <488> +06:05:48 Transaction Type : RESPONSE +06:05:48 Received From : +06:05:48 ============================================================================ +06:05:48 FNo. Len. Field Value +06:05:48 ============================================================================ +06:05:48 [ 1] [ 4] [0810] +06:05:48 [ 7] [ 10] [0319110457] +06:05:48 [ 11] [ 6] [154790] +06:05:48 [ 39] [ 2] [00] +06:05:48 [ 70] [ 3] [301] +06:05:48 ============================================================================ +06:05:48 Calculate Source COMM Id = 2 +06:05:48 ============================================================================ +06:05:48 + + +waiting on router queue for slot.... +06:05:58 ============================================================================ +06:05:58 Slot Id : <470> +06:05:58 Transaction Type : REQUEST +06:05:58 Received From : +06:05:58 ============================================================================ +06:05:58 FNo. Len. Field Value +06:05:58 ============================================================================ +06:05:58 [ 1] [ 4] [0800] +06:05:58 [ 7] [ 10] [0319110507] +06:05:58 [ 11] [ 6] [154791] +06:05:58 [ 70] [ 3] [301] +06:05:58 ============================================================================ +06:05:58 + + +waiting on router queue for slot.... +06:05:58 Sending to : +06:05:58 ============================================================================ +06:05:58 ============================================================================ +06:05:58 Slot Id : <470> +06:05:58 Transaction Type : RESPONSE +06:05:58 Received From : +06:05:58 ============================================================================ +06:05:58 FNo. Len. Field Value +06:05:58 ============================================================================ +06:05:58 [ 1] [ 4] [0810] +06:05:58 [ 7] [ 10] [0319110507] +06:05:58 [ 11] [ 6] [154791] +06:05:58 [ 39] [ 2] [00] +06:05:58 [ 70] [ 3] [301] +06:05:58 ============================================================================ +06:05:58 Calculate Source COMM Id = 2 +06:05:58 ============================================================================ +06:05:58 + + +waiting on router queue for slot.... +06:06:10 ============================================================================ +06:06:10 Slot Id : <495> +06:06:10 Transaction Type : REQUEST +06:06:10 Received From : +06:06:10 ============================================================================ +06:06:10 FNo. Len. Field Value +06:06:10 ============================================================================ +06:06:10 [ 1] [ 4] [0800] +06:06:10 [ 7] [ 10] [0320131759] +06:06:10 [ 11] [ 6] [061759] +06:06:10 [ 37] [ 12] [57906061759] +06:06:10 [ 70] [ 3] [301] +06:06:10 ============================================================================ +06:06:10 + + +waiting on router queue for slot.... +06:06:10 Sending to : +06:06:10 ============================================================================ +06:06:10 ============================================================================ +06:06:10 Slot Id : <495> +06:06:10 Transaction Type : RESPONSE +06:06:10 Received From : +06:06:10 ============================================================================ +06:06:10 FNo. Len. Field Value +06:06:10 ============================================================================ +06:06:10 [ 1] [ 4] [0810] +06:06:10 [ 7] [ 10] [0320131759] +06:06:10 [ 11] [ 6] [061759] +06:06:10 [ 37] [ 12] [579060617590] +06:06:10 [ 39] [ 2] [00] +06:06:10 [ 70] [ 3] [810] +06:06:10 ============================================================================ +06:06:10 Calculate Source COMM Id = 6 +06:06:10 ============================================================================ +06:06:10 + + +waiting on router queue for slot.... +06:06:11 ============================================================================ +06:06:11 Slot Id : <463> +06:06:11 Transaction Type : REQUEST +06:06:11 Received From : +06:06:11 ============================================================================ +06:06:11 FNo. Len. Field Value +06:06:11 ============================================================================ +06:06:11 [ 1] [ 4] [0800] +06:06:11 [ 7] [ 10] [0319110518] +06:06:11 [ 11] [ 6] [154792] +06:06:11 [ 70] [ 3] [301] +06:06:11 ============================================================================ +06:06:11 + + +waiting on router queue for slot.... +06:06:11 Sending to : +06:06:11 ============================================================================ +06:06:11 ============================================================================ +06:06:11 Slot Id : <463> +06:06:11 Transaction Type : RESPONSE +06:06:11 Received From : +06:06:11 ============================================================================ +06:06:11 FNo. Len. Field Value +06:06:11 ============================================================================ +06:06:11 [ 1] [ 4] [0810] +06:06:11 [ 7] [ 10] [0319110518] +06:06:11 [ 11] [ 6] [154792] +06:06:11 [ 39] [ 2] [00] +06:06:11 [ 70] [ 3] [301] +06:06:11 ============================================================================ +06:06:11 Calculate Source COMM Id = 2 +06:06:11 ============================================================================ +06:06:11 + + +waiting on router queue for slot.... +06:06:20 ============================================================================ +06:06:20 Slot Id : <490> +06:06:20 Transaction Type : REQUEST +06:06:20 Received From : +06:06:20 ============================================================================ +06:06:20 FNo. Len. Field Value +06:06:20 ============================================================================ +06:06:20 [ 1] [ 4] [0800] +06:06:20 [ 7] [ 10] [0319230412] +06:06:20 [ 11] [ 6] [049674] +06:06:20 [ 37] [ 12] [57906049674] +06:06:20 [ 70] [ 3] [301] +06:06:20 ============================================================================ +06:06:20 + + +waiting on router queue for slot.... +06:06:20 Sending to : +06:06:20 ============================================================================ +06:06:20 ============================================================================ +06:06:20 Slot Id : <490> +06:06:20 Transaction Type : RESPONSE +06:06:20 Received From : +06:06:20 ============================================================================ +06:06:20 FNo. Len. Field Value +06:06:20 ============================================================================ +06:06:20 [ 1] [ 4] [0810] +06:06:20 [ 7] [ 10] [0319230412] +06:06:20 [ 11] [ 6] [049674] +06:06:20 [ 37] [ 12] [579060496740] +06:06:20 [ 39] [ 2] [00] +06:06:20 [ 70] [ 3] [810] +06:06:20 ============================================================================ +06:06:20 Calculate Source COMM Id = 4 +06:06:20 ============================================================================ +06:06:20 + + +waiting on router queue for slot.... +06:06:24 ============================================================================ +06:06:24 Slot Id : <448> +06:06:24 Transaction Type : REQUEST +06:06:24 Received From : +06:06:24 ============================================================================ +06:06:24 FNo. Len. Field Value +06:06:24 ============================================================================ +06:06:24 [ 1] [ 4] [0800] +06:06:24 [ 2] [ 5] [02531] +06:06:24 [ 3] [ 6] [579068] +06:06:24 [ 7] [ 10] [0319230624] +06:06:24 [ 11] [ 6] [806766] +06:06:24 [ 15] [ 10] [0319230624] +06:06:24 [ 37] [ 11] [57906806766] +06:06:24 [ 70] [ 3] [001] +06:06:24 ============================================================================ +06:06:24 + + +waiting on router queue for slot.... +06:06:24 ============================================================================ +06:06:24 Slot Id : <448> +06:06:24 Transaction Type : RESPONSE +06:06:24 Received From : +06:06:24 ============================================================================ +06:06:24 FNo. Len. Field Value +06:06:24 ============================================================================ +06:06:24 [ 1] [ 4] [0810] +06:06:24 [ 7] [ 10] [0319230624] +06:06:24 [ 11] [ 6] [806766] +06:06:24 [ 15] [ 4] [0319] +06:06:24 [ 37] [ 12] [57906806766] +06:06:24 [ 39] [ 2] [00] +06:06:24 [ 70] [ 3] [001] +06:06:24 ============================================================================ +06:06:24 Sending to : +06:06:24 ============================================================================ +06:06:24 + + +waiting on router queue for slot.... +06:06:26 ============================================================================ +06:06:26 Slot Id : <484> +06:06:26 Transaction Type : REQUEST +06:06:26 Received From : +06:06:26 ============================================================================ +06:06:26 FNo. Len. Field Value +06:06:26 ============================================================================ +06:06:26 [ 1] [ 4] [0800] +06:06:26 [ 7] [ 10] [0319110534] +06:06:26 [ 11] [ 6] [154793] +06:06:26 [ 70] [ 3] [301] +06:06:26 ============================================================================ +06:06:26 + + +waiting on router queue for slot.... +06:06:26 Sending to : +06:06:26 ============================================================================ +06:06:26 ============================================================================ +06:06:26 Slot Id : <484> +06:06:26 Transaction Type : RESPONSE +06:06:26 Received From : +06:06:26 ============================================================================ +06:06:26 FNo. Len. Field Value +06:06:26 ============================================================================ +06:06:26 [ 1] [ 4] [0810] +06:06:26 [ 7] [ 10] [0319110534] +06:06:26 [ 11] [ 6] [154793] +06:06:26 [ 39] [ 2] [00] +06:06:26 [ 70] [ 3] [301] +06:06:26 ============================================================================ +06:06:26 Calculate Source COMM Id = 2 +06:06:26 ============================================================================ +06:06:26 + + +waiting on router queue for slot.... +06:06:37 ============================================================================ +06:06:37 Slot Id : <471> +06:06:37 Transaction Type : REQUEST +06:06:37 Received From : +06:06:37 ============================================================================ +06:06:37 FNo. Len. Field Value +06:06:37 ============================================================================ +06:06:37 [ 1] [ 4] [0800] +06:06:37 [ 7] [ 10] [0319110545] +06:06:37 [ 11] [ 6] [154794] +06:06:37 [ 70] [ 3] [301] +06:06:37 ============================================================================ +06:06:37 + + +waiting on router queue for slot.... +06:06:37 Sending to : +06:06:37 ============================================================================ +06:06:37 ============================================================================ +06:06:37 Slot Id : <471> +06:06:37 Transaction Type : RESPONSE +06:06:37 Received From : +06:06:37 ============================================================================ +06:06:37 FNo. Len. Field Value +06:06:37 ============================================================================ +06:06:37 [ 1] [ 4] [0810] +06:06:37 [ 7] [ 10] [0319110545] +06:06:37 [ 11] [ 6] [154794] +06:06:37 [ 39] [ 2] [00] +06:06:37 [ 70] [ 3] [301] +06:06:37 ============================================================================ +06:06:37 Calculate Source COMM Id = 2 +06:06:37 ============================================================================ +06:06:37 + + +waiting on router queue for slot.... +06:06:49 ============================================================================ +06:06:49 Slot Id : <480> +06:06:49 Transaction Type : REQUEST +06:06:49 Received From : +06:06:49 ============================================================================ +06:06:49 FNo. Len. Field Value +06:06:49 ============================================================================ +06:06:49 [ 1] [ 4] [0800] +06:06:49 [ 7] [ 10] [0319110557] +06:06:49 [ 11] [ 6] [154795] +06:06:49 [ 70] [ 3] [301] +06:06:49 ============================================================================ +06:06:49 + + +waiting on router queue for slot.... +06:06:49 Sending to : +06:06:49 ============================================================================ +06:06:49 ============================================================================ +06:06:49 Slot Id : <480> +06:06:49 Transaction Type : RESPONSE +06:06:49 Received From : +06:06:49 ============================================================================ +06:06:49 FNo. Len. Field Value +06:06:49 ============================================================================ +06:06:49 [ 1] [ 4] [0810] +06:06:49 [ 7] [ 10] [0319110557] +06:06:49 [ 11] [ 6] [154795] +06:06:49 [ 39] [ 2] [00] +06:06:49 [ 70] [ 3] [301] +06:06:49 ============================================================================ +06:06:49 Calculate Source COMM Id = 2 +06:06:49 ============================================================================ +06:06:49 + + +waiting on router queue for slot.... +06:07:04 ============================================================================ +06:07:04 Slot Id : <479> +06:07:04 Transaction Type : REQUEST +06:07:04 Received From : +06:07:04 ============================================================================ +06:07:04 FNo. Len. Field Value +06:07:04 ============================================================================ +06:07:04 [ 1] [ 4] [0800] +06:07:04 [ 7] [ 10] [0319110612] +06:07:04 [ 11] [ 6] [154796] +06:07:04 [ 70] [ 3] [301] +06:07:04 ============================================================================ +06:07:04 + + +waiting on router queue for slot.... +06:07:04 Sending to : +06:07:04 ============================================================================ +06:07:04 ============================================================================ +06:07:04 Slot Id : <479> +06:07:04 Transaction Type : RESPONSE +06:07:04 Received From : +06:07:04 ============================================================================ +06:07:04 FNo. Len. Field Value +06:07:04 ============================================================================ +06:07:04 [ 1] [ 4] [0810] +06:07:04 [ 7] [ 10] [0319110612] +06:07:04 [ 11] [ 6] [154796] +06:07:04 [ 39] [ 2] [00] +06:07:04 [ 70] [ 3] [301] +06:07:04 ============================================================================ +06:07:04 Calculate Source COMM Id = 2 +06:07:04 ============================================================================ +06:07:04 + + +waiting on router queue for slot.... +06:07:15 ============================================================================ +06:07:15 Slot Id : <498> +06:07:15 Transaction Type : REQUEST +06:07:15 Received From : +06:07:15 ============================================================================ +06:07:15 FNo. Len. Field Value +06:07:15 ============================================================================ +06:07:15 [ 1] [ 4] [0800] +06:07:15 [ 7] [ 10] [0320131904] +06:07:15 [ 11] [ 6] [061904] +06:07:15 [ 37] [ 12] [57906061904] +06:07:15 [ 70] [ 3] [301] +06:07:15 ============================================================================ +06:07:15 + + +waiting on router queue for slot.... +06:07:15 Sending to : +06:07:15 ============================================================================ +06:07:15 ============================================================================ +06:07:15 Slot Id : <498> +06:07:15 Transaction Type : RESPONSE +06:07:15 Received From : +06:07:15 ============================================================================ +06:07:15 FNo. Len. Field Value +06:07:15 ============================================================================ +06:07:15 [ 1] [ 4] [0810] +06:07:15 [ 7] [ 10] [0320131904] +06:07:15 [ 11] [ 6] [061904] +06:07:15 [ 37] [ 12] [579060619040] +06:07:15 [ 39] [ 2] [00] +06:07:15 [ 70] [ 3] [810] +06:07:15 ============================================================================ +06:07:15 Calculate Source COMM Id = 6 +06:07:15 ============================================================================ +06:07:15 + + +waiting on router queue for slot.... +06:07:19 ============================================================================ +06:07:19 Slot Id : <0> +06:07:19 Transaction Type : REQUEST +06:07:19 Received From : +06:07:19 ============================================================================ +06:07:19 FNo. Len. Field Value +06:07:19 ============================================================================ +06:07:19 [ 1] [ 4] [0800] +06:07:19 [ 7] [ 10] [0319110627] +06:07:19 [ 11] [ 6] [154797] +06:07:19 [ 70] [ 3] [301] +06:07:19 ============================================================================ +06:07:19 + + +waiting on router queue for slot.... +06:07:19 Sending to : +06:07:19 ============================================================================ +06:07:19 ============================================================================ +06:07:19 Slot Id : <0> +06:07:19 Transaction Type : RESPONSE +06:07:19 Received From : +06:07:19 ============================================================================ +06:07:19 FNo. Len. Field Value +06:07:19 ============================================================================ +06:07:19 [ 1] [ 4] [0810] +06:07:19 [ 7] [ 10] [0319110627] +06:07:19 [ 11] [ 6] [154797] +06:07:19 [ 39] [ 2] [00] +06:07:19 [ 70] [ 3] [301] +06:07:19 ============================================================================ +06:07:19 Calculate Source COMM Id = 2 +06:07:19 ============================================================================ +06:07:19 + + +waiting on router queue for slot.... +06:07:26 ============================================================================ +06:07:26 Slot Id : <2> +06:07:26 Transaction Type : REQUEST +06:07:26 Received From : +06:07:26 ============================================================================ +06:07:26 FNo. Len. Field Value +06:07:26 ============================================================================ +06:07:26 [ 1] [ 4] [0800] +06:07:26 [ 2] [ 5] [02531] +06:07:26 [ 3] [ 6] [579068] +06:07:26 [ 7] [ 10] [0319230726] +06:07:26 [ 11] [ 6] [806767] +06:07:26 [ 15] [ 10] [0319230726] +06:07:26 [ 37] [ 11] [57906806767] +06:07:26 [ 70] [ 3] [001] +06:07:26 ============================================================================ +06:07:26 + + +waiting on router queue for slot.... +06:07:26 ============================================================================ +06:07:26 Slot Id : <2> +06:07:26 Transaction Type : RESPONSE +06:07:26 Received From : +06:07:26 ============================================================================ +06:07:26 FNo. Len. Field Value +06:07:26 ============================================================================ +06:07:26 [ 1] [ 4] [0810] +06:07:26 [ 7] [ 10] [0319230726] +06:07:26 [ 11] [ 6] [806767] +06:07:26 [ 15] [ 4] [0319] +06:07:26 [ 37] [ 12] [57906806767] +06:07:26 [ 39] [ 2] [00] +06:07:26 [ 70] [ 3] [001] +06:07:26 ============================================================================ +06:07:26 Sending to : +06:07:26 ============================================================================ +06:07:26 + + +waiting on router queue for slot.... +06:07:30 ============================================================================ +06:07:30 Slot Id : <493> +06:07:30 Transaction Type : REQUEST +06:07:30 Received From : +06:07:30 ============================================================================ +06:07:30 FNo. Len. Field Value +06:07:30 ============================================================================ +06:07:30 [ 1] [ 4] [0800] +06:07:30 [ 7] [ 10] [0319110638] +06:07:30 [ 11] [ 6] [154798] +06:07:30 [ 70] [ 3] [301] +06:07:30 ============================================================================ +06:07:30 + + +waiting on router queue for slot.... +06:07:30 Sending to : +06:07:30 ============================================================================ +06:07:30 ============================================================================ +06:07:30 Slot Id : <493> +06:07:30 Transaction Type : RESPONSE +06:07:30 Received From : +06:07:30 ============================================================================ +06:07:30 FNo. Len. Field Value +06:07:30 ============================================================================ +06:07:30 [ 1] [ 4] [0810] +06:07:30 [ 7] [ 10] [0319110638] +06:07:30 [ 11] [ 6] [154798] +06:07:30 [ 39] [ 2] [00] +06:07:30 [ 70] [ 3] [301] +06:07:30 ============================================================================ +06:07:30 Calculate Source COMM Id = 2 +06:07:30 ============================================================================ +06:07:30 + + +waiting on router queue for slot.... +06:07:41 ============================================================================ +06:07:41 Slot Id : <473> +06:07:41 Transaction Type : REQUEST +06:07:41 Received From : +06:07:41 ============================================================================ +06:07:41 FNo. Len. Field Value +06:07:41 ============================================================================ +06:07:41 [ 1] [ 4] [0800] +06:07:41 [ 7] [ 10] [0319110649] +06:07:41 [ 11] [ 6] [154799] +06:07:41 [ 70] [ 3] [301] +06:07:41 ============================================================================ +06:07:41 + + +waiting on router queue for slot.... +06:07:41 Sending to : +06:07:41 ============================================================================ +06:07:41 ============================================================================ +06:07:41 Slot Id : <473> +06:07:41 Transaction Type : RESPONSE +06:07:41 Received From : +06:07:41 ============================================================================ +06:07:41 FNo. Len. Field Value +06:07:41 ============================================================================ +06:07:41 [ 1] [ 4] [0810] +06:07:41 [ 7] [ 10] [0319110649] +06:07:41 [ 11] [ 6] [154799] +06:07:41 [ 39] [ 2] [00] +06:07:41 [ 70] [ 3] [301] +06:07:41 ============================================================================ +06:07:41 Calculate Source COMM Id = 2 +06:07:41 ============================================================================ +06:07:41 + + +waiting on router queue for slot.... +06:07:52 ============================================================================ +06:07:52 Slot Id : <1> +06:07:52 Transaction Type : REQUEST +06:07:52 Received From : +06:07:52 ============================================================================ +06:07:52 FNo. Len. Field Value +06:07:52 ============================================================================ +06:07:52 [ 1] [ 4] [0800] +06:07:52 [ 7] [ 10] [0319110700] +06:07:52 [ 11] [ 6] [154800] +06:07:52 [ 70] [ 3] [301] +06:07:52 ============================================================================ +06:07:52 + + +waiting on router queue for slot.... +06:07:52 Sending to : +06:07:52 ============================================================================ +06:07:52 ============================================================================ +06:07:52 Slot Id : <1> +06:07:52 Transaction Type : RESPONSE +06:07:52 Received From : +06:07:52 ============================================================================ +06:07:52 FNo. Len. Field Value +06:07:52 ============================================================================ +06:07:52 [ 1] [ 4] [0810] +06:07:52 [ 7] [ 10] [0319110700] +06:07:52 [ 11] [ 6] [154800] +06:07:52 [ 39] [ 2] [00] +06:07:52 [ 70] [ 3] [301] +06:07:52 ============================================================================ +06:07:52 Calculate Source COMM Id = 2 +06:07:52 ============================================================================ +06:07:52 + + +waiting on router queue for slot.... +06:08:03 ============================================================================ +06:08:03 Slot Id : <4> +06:08:03 Transaction Type : REQUEST +06:08:03 Received From : +06:08:03 ============================================================================ +06:08:03 FNo. Len. Field Value +06:08:03 ============================================================================ +06:08:03 [ 1] [ 4] [0800] +06:08:03 [ 7] [ 10] [0319110711] +06:08:03 [ 11] [ 6] [154801] +06:08:03 [ 70] [ 3] [301] +06:08:03 ============================================================================ +06:08:03 + + +waiting on router queue for slot.... +06:08:03 Sending to : +06:08:03 ============================================================================ +06:08:03 ============================================================================ +06:08:03 Slot Id : <4> +06:08:03 Transaction Type : RESPONSE +06:08:03 Received From : +06:08:03 ============================================================================ +06:08:03 FNo. Len. Field Value +06:08:03 ============================================================================ +06:08:03 [ 1] [ 4] [0810] +06:08:03 [ 7] [ 10] [0319110711] +06:08:03 [ 11] [ 6] [154801] +06:08:03 [ 39] [ 2] [00] +06:08:03 [ 70] [ 3] [301] +06:08:03 ============================================================================ +06:08:03 Calculate Source COMM Id = 2 +06:08:03 ============================================================================ +06:08:03 + + +waiting on router queue for slot.... +06:08:18 ============================================================================ +06:08:18 Slot Id : <474> +06:08:18 Transaction Type : REQUEST +06:08:18 Received From : +06:08:18 ============================================================================ +06:08:18 FNo. Len. Field Value +06:08:18 ============================================================================ +06:08:18 [ 1] [ 4] [0800] +06:08:18 [ 7] [ 10] [0319110726] +06:08:18 [ 11] [ 6] [154802] +06:08:18 [ 70] [ 3] [301] +06:08:18 ============================================================================ +06:08:18 + + +waiting on router queue for slot.... +06:08:18 Sending to : +06:08:18 ============================================================================ +06:08:18 ============================================================================ +06:08:18 Slot Id : <474> +06:08:18 Transaction Type : RESPONSE +06:08:18 Received From : +06:08:18 ============================================================================ +06:08:18 FNo. Len. Field Value +06:08:18 ============================================================================ +06:08:18 [ 1] [ 4] [0810] +06:08:18 [ 7] [ 10] [0319110726] +06:08:18 [ 11] [ 6] [154802] +06:08:18 [ 39] [ 2] [00] +06:08:18 [ 70] [ 3] [301] +06:08:18 ============================================================================ +06:08:18 Calculate Source COMM Id = 2 +06:08:18 ============================================================================ +06:08:18 + + +waiting on router queue for slot.... +06:08:20 ============================================================================ +06:08:20 Slot Id : <483> +06:08:20 Transaction Type : REQUEST +06:08:20 Received From : +06:08:20 ============================================================================ +06:08:20 FNo. Len. Field Value +06:08:20 ============================================================================ +06:08:20 [ 1] [ 4] [0800] +06:08:20 [ 7] [ 10] [0320132009] +06:08:20 [ 11] [ 6] [062009] +06:08:20 [ 37] [ 12] [57906062009] +06:08:20 [ 70] [ 3] [301] +06:08:20 ============================================================================ +06:08:20 + + +waiting on router queue for slot.... +06:08:20 Sending to : +06:08:20 ============================================================================ +06:08:20 ============================================================================ +06:08:20 Slot Id : <483> +06:08:20 Transaction Type : RESPONSE +06:08:20 Received From : +06:08:20 ============================================================================ +06:08:20 FNo. Len. Field Value +06:08:20 ============================================================================ +06:08:20 [ 1] [ 4] [0810] +06:08:20 [ 7] [ 10] [0320132009] +06:08:20 [ 11] [ 6] [062009] +06:08:20 [ 37] [ 12] [579060620090] +06:08:20 [ 39] [ 2] [00] +06:08:20 [ 70] [ 3] [810] +06:08:20 ============================================================================ +06:08:20 Calculate Source COMM Id = 6 +06:08:20 ============================================================================ +06:08:20 + + +waiting on router queue for slot.... +06:08:28 ============================================================================ +06:08:28 Slot Id : <476> +06:08:28 Transaction Type : REQUEST +06:08:28 Received From : +06:08:28 ============================================================================ +06:08:28 FNo. Len. Field Value +06:08:28 ============================================================================ +06:08:28 [ 1] [ 4] [0800] +06:08:28 [ 2] [ 5] [02531] +06:08:28 [ 3] [ 6] [579068] +06:08:28 [ 7] [ 10] [0319230828] +06:08:28 [ 11] [ 6] [806768] +06:08:28 [ 15] [ 10] [0319230828] +06:08:28 [ 37] [ 11] [57906806768] +06:08:28 [ 70] [ 3] [001] +06:08:28 ============================================================================ +06:08:28 + + +waiting on router queue for slot.... +06:08:28 ============================================================================ +06:08:28 Slot Id : <476> +06:08:28 Transaction Type : RESPONSE +06:08:28 Received From : +06:08:28 ============================================================================ +06:08:28 FNo. Len. Field Value +06:08:28 ============================================================================ +06:08:28 [ 1] [ 4] [0810] +06:08:28 [ 7] [ 10] [0319230828] +06:08:28 [ 11] [ 6] [806768] +06:08:28 [ 15] [ 4] [0319] +06:08:28 [ 37] [ 12] [57906806768] +06:08:28 [ 39] [ 2] [00] +06:08:28 [ 70] [ 3] [001] +06:08:28 ============================================================================ +06:08:28 Sending to : +06:08:28 ============================================================================ +06:08:28 + + +waiting on router queue for slot.... +06:08:29 ============================================================================ +06:08:29 Slot Id : <489> +06:08:29 Transaction Type : REQUEST +06:08:29 Received From : +06:08:29 ============================================================================ +06:08:29 FNo. Len. Field Value +06:08:29 ============================================================================ +06:08:29 [ 1] [ 4] [0800] +06:08:29 [ 7] [ 10] [0319110737] +06:08:29 [ 11] [ 6] [154803] +06:08:29 [ 70] [ 3] [301] +06:08:29 ============================================================================ +06:08:29 + + +waiting on router queue for slot.... +06:08:29 Sending to : +06:08:29 ============================================================================ +06:08:29 ============================================================================ +06:08:29 Slot Id : <489> +06:08:29 Transaction Type : RESPONSE +06:08:29 Received From : +06:08:29 ============================================================================ +06:08:29 FNo. Len. Field Value +06:08:29 ============================================================================ +06:08:29 [ 1] [ 4] [0810] +06:08:29 [ 7] [ 10] [0319110737] +06:08:29 [ 11] [ 6] [154803] +06:08:29 [ 39] [ 2] [00] +06:08:29 [ 70] [ 3] [301] +06:08:29 ============================================================================ +06:08:29 Calculate Source COMM Id = 2 +06:08:29 ============================================================================ +06:08:29 + + +waiting on router queue for slot.... +06:08:43 ============================================================================ +06:08:43 Slot Id : <477> +06:08:43 Transaction Type : REQUEST +06:08:43 Received From : +06:08:43 ============================================================================ +06:08:43 FNo. Len. Field Value +06:08:43 ============================================================================ +06:08:43 [ 1] [ 4] [0200] +06:08:43 [ 2] [ 16] [6213545000101497] +06:08:43 [ 3] [ 6] [011000] +06:08:43 [ 4] [ 12] [000010000000] +06:08:43 [ 7] [ 10] [0320060905] +06:08:43 [ 11] [ 6] [200281] +06:08:43 [ 12] [ 6] [064723] +06:08:43 [ 13] [ 4] [0320] +06:08:43 [ 14] [ 4] [4912] +06:08:43 [ 15] [ 4] [0320] +06:08:43 [ 18] [ 4] [6011] +06:08:43 [ 19] [ 3] [418] +06:08:43 [ 22] [ 3] [021] +06:08:43 [ 25] [ 2] [01] +06:08:43 [ 28] [ 9] [D00002000] +06:08:43 [ 32] [ 6] [198901] +06:08:43 [ 35] [ 32] [6213545000101497=491212010149080] +06:08:43 [ 37] [ 12] [507906200281] +06:08:43 [ 41] [ 8] [00002201] +06:08:43 [ 42] [ 15] [000000041002201] +06:08:43 [ 43] [ 40] [WAD CHAN VN ] +06:08:43 [ 49] [ 3] [418] +06:08:43 [ 52] [ 16] [18932AEFC525DF4D] +06:08:43 ============================================================================ +06:08:43 + + +waiting on router queue for slot.... +06:08:43 Sending to : +06:08:43 ============================================================================ +06:08:43 Sending to : +06:08:43 ============================================================================ +06:08:44 ============================================================================ +06:08:44 Slot Id : <477> +06:08:44 Transaction Type : REQUEST +06:08:44 Received From : +06:08:44 ============================================================================ +06:08:44 FNo. Len. Field Value +06:08:44 ============================================================================ +06:08:44 [ 1] [ 4] [0200] +06:08:44 [ 2] [ 16] [6213545000101497] +06:08:44 [ 3] [ 6] [011000] +06:08:44 [ 4] [ 12] [000010000000] +06:08:44 [ 7] [ 10] [0320060905] +06:08:44 [ 11] [ 6] [200281] +06:08:44 [ 12] [ 6] [064723] +06:08:44 [ 13] [ 4] [0320] +06:08:44 [ 14] [ 4] [4912] +06:08:44 [ 15] [ 4] [0320] +06:08:44 [ 18] [ 4] [6011] +06:08:44 [ 19] [ 3] [418] +06:08:44 [ 22] [ 3] [021] +06:08:44 [ 25] [ 2] [01] +06:08:44 [ 28] [ 9] [D00002000] +06:08:44 [ 32] [ 6] [198901] +06:08:44 [ 35] [ 32] [6213545000101497=491212010149080] +06:08:44 [ 37] [ 12] [507906200281] +06:08:44 [ 41] [ 8] [00002201] +06:08:44 [ 42] [ 15] [000000041002201] +06:08:44 [ 43] [ 40] [WAD CHAN VN ] +06:08:44 [ 49] [ 3] [418] +06:08:44 [ 52] [ 16] [18932AEFC525DF4D] +06:08:44 ============================================================================ +06:08:44 + + +waiting on router queue for slot.... +06:08:44 Sending to : +06:08:44 ============================================================================ +06:08:44 ============================================================================ +06:08:44 Slot Id : <477> +06:08:44 Transaction Type : REQUEST +06:08:44 Received From : +06:08:44 ============================================================================ +06:08:44 FNo. Len. Field Value +06:08:44 ============================================================================ +06:08:44 [ 1] [ 4] [0200] +06:08:44 [ 2] [ 16] [6213545000101497] +06:08:44 [ 3] [ 6] [011000] +06:08:44 [ 4] [ 12] [000010000000] +06:08:44 [ 7] [ 10] [0320060905] +06:08:44 [ 11] [ 6] [200281] +06:08:44 [ 12] [ 6] [064723] +06:08:44 [ 13] [ 4] [0320] +06:08:44 [ 14] [ 4] [4912] +06:08:44 [ 15] [ 4] [0320] +06:08:44 [ 18] [ 4] [6011] +06:08:44 [ 19] [ 3] [418] +06:08:44 [ 22] [ 3] [021] +06:08:44 [ 25] [ 2] [01] +06:08:44 [ 28] [ 9] [D00002000] +06:08:44 [ 32] [ 6] [198901] +06:08:44 [ 35] [ 32] [6213545000101497=491212010149080] +06:08:44 [ 37] [ 12] [507906200281] +06:08:44 [ 41] [ 8] [00002201] +06:08:44 [ 42] [ 15] [000000041002201] +06:08:44 [ 43] [ 40] [WAD CHAN VN ] +06:08:44 [ 49] [ 3] [418] +06:08:44 [ 52] [ 16] [0D18916F823E4CBC] +06:08:44 ============================================================================ +06:08:44 + + +waiting on router queue for slot.... +06:08:44 Sending to : <0> +06:08:44 ============================================================================ +06:08:44 ============================================================================ +06:08:44 Slot Id : <477> +06:08:44 Transaction Type : RESPONSE +06:08:44 Received From : +06:08:44 ============================================================================ +06:08:44 FNo. Len. Field Value +06:08:44 ============================================================================ +06:08:44 [ 1] [ 4] [0210] +06:08:44 [ 2] [ 16] [6213545000101497] +06:08:44 [ 3] [ 6] [011000] +06:08:44 [ 4] [ 12] [000010000000] +06:08:44 [ 7] [ 10] [0320060905] +06:08:44 [ 11] [ 6] [200281] +06:08:44 [ 12] [ 6] [064723] +06:08:44 [ 13] [ 4] [0320] +06:08:44 [ 15] [ 4] [0320] +06:08:44 [ 18] [ 4] [6011] +06:08:44 [ 19] [ 3] [418] +06:08:44 [ 22] [ 3] [021] +06:08:44 [ 32] [ 6] [198901] +06:08:44 [ 35] [ 32] [6213545000101497=491212010149080] +06:08:44 [ 37] [ 12] [507906200281] +06:08:44 [ 38] [ 6] [060840] +06:08:44 [ 39] [ 2] [55] +06:08:44 [ 41] [ 8] [00002201] +06:08:44 [ 49] [ 3] [418] +06:08:44 ============================================================================ +06:08:44 Sending to : +06:08:44 ============================================================================ +06:08:44 + + +waiting on router queue for slot.... +06:08:45 ============================================================================ +06:08:45 Slot Id : <477> +06:08:45 Transaction Type : RESPONSE +06:08:45 Received From : +06:08:45 ============================================================================ +06:08:45 FNo. Len. Field Value +06:08:45 ============================================================================ +06:08:45 [ 1] [ 4] [0210] +06:08:45 [ 2] [ 16] [6213545000101497] +06:08:45 [ 3] [ 6] [011000] +06:08:45 [ 4] [ 12] [000010000000] +06:08:45 [ 7] [ 10] [0320060905] +06:08:45 [ 11] [ 6] [200281] +06:08:45 [ 12] [ 6] [064723] +06:08:45 [ 13] [ 4] [0320] +06:08:45 [ 15] [ 4] [0320] +06:08:45 [ 18] [ 4] [6011] +06:08:45 [ 19] [ 3] [418] +06:08:45 [ 22] [ 3] [021] +06:08:45 [ 32] [ 6] [198901] +06:08:45 [ 35] [ 32] [6213545000101497=491212010149080] +06:08:45 [ 37] [ 12] [507906200281] +06:08:45 [ 38] [ 6] [060840] +06:08:45 [ 39] [ 2] [55] +06:08:45 [ 41] [ 8] [00002201] +06:08:45 [ 49] [ 3] [418] +06:08:45 ============================================================================ +06:08:45 Calculate Source COMM Id = 5 +06:08:45 ============================================================================ +06:08:45 + + +waiting on router queue for slot.... +06:08:45 ============================================================================ +06:08:45 Slot Id : <472> +06:08:45 Transaction Type : REQUEST +06:08:45 Received From : +06:08:45 ============================================================================ +06:08:45 FNo. Len. Field Value +06:08:45 ============================================================================ +06:08:45 [ 1] [ 4] [0800] +06:08:45 [ 7] [ 10] [0319110754] +06:08:45 [ 11] [ 6] [154804] +06:08:45 [ 70] [ 3] [301] +06:08:45 ============================================================================ +06:08:45 + + +waiting on router queue for slot.... +06:08:45 Sending to : +06:08:45 ============================================================================ +06:08:45 ============================================================================ +06:08:45 Slot Id : <472> +06:08:45 Transaction Type : RESPONSE +06:08:45 Received From : +06:08:45 ============================================================================ +06:08:45 FNo. Len. Field Value +06:08:45 ============================================================================ +06:08:45 [ 1] [ 4] [0810] +06:08:45 [ 7] [ 10] [0319110754] +06:08:45 [ 11] [ 6] [154804] +06:08:45 [ 39] [ 2] [00] +06:08:45 [ 70] [ 3] [301] +06:08:45 ============================================================================ +06:08:45 Calculate Source COMM Id = 2 +06:08:45 ============================================================================ +06:08:45 + + +waiting on router queue for slot.... +06:09:01 ============================================================================ +06:09:01 Slot Id : <486> +06:09:01 Transaction Type : REQUEST +06:09:01 Received From : +06:09:01 ============================================================================ +06:09:01 FNo. Len. Field Value +06:09:01 ============================================================================ +06:09:01 [ 1] [ 4] [0800] +06:09:01 [ 7] [ 10] [0319110809] +06:09:01 [ 11] [ 6] [154805] +06:09:01 [ 70] [ 3] [301] +06:09:01 ============================================================================ +06:09:01 + + +waiting on router queue for slot.... +06:09:01 Sending to : +06:09:01 ============================================================================ +06:09:01 ============================================================================ +06:09:01 Slot Id : <486> +06:09:01 Transaction Type : RESPONSE +06:09:01 Received From : +06:09:01 ============================================================================ +06:09:01 FNo. Len. Field Value +06:09:01 ============================================================================ +06:09:01 [ 1] [ 4] [0810] +06:09:01 [ 7] [ 10] [0319110809] +06:09:01 [ 11] [ 6] [154805] +06:09:01 [ 39] [ 2] [00] +06:09:01 [ 70] [ 3] [301] +06:09:01 ============================================================================ +06:09:01 Calculate Source COMM Id = 2 +06:09:01 ============================================================================ +06:09:01 + + +waiting on router queue for slot.... +06:09:11 ============================================================================ +06:09:11 Slot Id : <492> +06:09:11 Transaction Type : REQUEST +06:09:11 Received From : +06:09:11 ============================================================================ +06:09:11 FNo. Len. Field Value +06:09:11 ============================================================================ +06:09:11 [ 1] [ 4] [0800] +06:09:11 [ 7] [ 10] [0319110820] +06:09:11 [ 11] [ 6] [154806] +06:09:11 [ 70] [ 3] [301] +06:09:11 ============================================================================ +06:09:11 + + +waiting on router queue for slot.... +06:09:11 Sending to : +06:09:11 ============================================================================ +06:09:11 ============================================================================ +06:09:11 Slot Id : <492> +06:09:11 Transaction Type : RESPONSE +06:09:11 Received From : +06:09:11 ============================================================================ +06:09:11 FNo. Len. Field Value +06:09:11 ============================================================================ +06:09:11 [ 1] [ 4] [0810] +06:09:11 [ 7] [ 10] [0319110820] +06:09:11 [ 11] [ 6] [154806] +06:09:11 [ 39] [ 2] [00] +06:09:11 [ 70] [ 3] [301] +06:09:11 ============================================================================ +06:09:11 Calculate Source COMM Id = 2 +06:09:11 ============================================================================ +06:09:11 + + +waiting on router queue for slot.... +06:09:22 ============================================================================ +06:09:22 Slot Id : <6> +06:09:22 Transaction Type : REQUEST +06:09:22 Received From : +06:09:22 ============================================================================ +06:09:22 FNo. Len. Field Value +06:09:22 ============================================================================ +06:09:22 [ 1] [ 4] [0800] +06:09:22 [ 7] [ 10] [0319110831] +06:09:22 [ 11] [ 6] [154807] +06:09:22 [ 70] [ 3] [301] +06:09:22 ============================================================================ +06:09:22 + + +waiting on router queue for slot.... +06:09:22 Sending to : +06:09:22 ============================================================================ +06:09:22 ============================================================================ +06:09:22 Slot Id : <6> +06:09:22 Transaction Type : RESPONSE +06:09:22 Received From : +06:09:22 ============================================================================ +06:09:22 FNo. Len. Field Value +06:09:22 ============================================================================ +06:09:22 [ 1] [ 4] [0810] +06:09:22 [ 7] [ 10] [0319110831] +06:09:22 [ 11] [ 6] [154807] +06:09:22 [ 39] [ 2] [00] +06:09:22 [ 70] [ 3] [301] +06:09:22 ============================================================================ +06:09:22 Calculate Source COMM Id = 2 +06:09:22 ============================================================================ +06:09:22 + + +waiting on router queue for slot.... +06:09:25 ============================================================================ +06:09:25 Slot Id : <485> +06:09:25 Transaction Type : REQUEST +06:09:25 Received From : +06:09:25 ============================================================================ +06:09:25 FNo. Len. Field Value +06:09:25 ============================================================================ +06:09:25 [ 1] [ 4] [0800] +06:09:25 [ 7] [ 10] [0320132114] +06:09:25 [ 11] [ 6] [062114] +06:09:25 [ 37] [ 12] [57906062114] +06:09:25 [ 70] [ 3] [301] +06:09:25 ============================================================================ +06:09:25 + + +waiting on router queue for slot.... +06:09:25 Sending to : +06:09:25 ============================================================================ +06:09:25 ============================================================================ +06:09:25 Slot Id : <485> +06:09:25 Transaction Type : RESPONSE +06:09:25 Received From : +06:09:25 ============================================================================ +06:09:25 FNo. Len. Field Value +06:09:25 ============================================================================ +06:09:25 [ 1] [ 4] [0810] +06:09:25 [ 7] [ 10] [0320132114] +06:09:25 [ 11] [ 6] [062114] +06:09:25 [ 37] [ 12] [579060621140] +06:09:25 [ 39] [ 2] [00] +06:09:25 [ 70] [ 3] [810] +06:09:25 ============================================================================ +06:09:25 Calculate Source COMM Id = 6 +06:09:25 ============================================================================ +06:09:25 + + +waiting on router queue for slot.... +06:09:30 ============================================================================ +06:09:30 Slot Id : <454> +06:09:30 Transaction Type : REQUEST +06:09:30 Received From : +06:09:30 ============================================================================ +06:09:30 FNo. Len. Field Value +06:09:30 ============================================================================ +06:09:30 [ 1] [ 4] [0800] +06:09:30 [ 2] [ 5] [02531] +06:09:30 [ 3] [ 6] [579068] +06:09:30 [ 7] [ 10] [0319230930] +06:09:30 [ 11] [ 6] [806769] +06:09:30 [ 15] [ 10] [0319230930] +06:09:30 [ 37] [ 11] [57906806769] +06:09:30 [ 70] [ 3] [001] +06:09:30 ============================================================================ +06:09:30 + + +waiting on router queue for slot.... +06:09:30 ============================================================================ +06:09:30 Slot Id : <454> +06:09:30 Transaction Type : RESPONSE +06:09:30 Received From : +06:09:30 ============================================================================ +06:09:30 FNo. Len. Field Value +06:09:30 ============================================================================ +06:09:30 [ 1] [ 4] [0810] +06:09:30 [ 7] [ 10] [0319230930] +06:09:30 [ 11] [ 6] [806769] +06:09:30 [ 15] [ 4] [0319] +06:09:30 [ 37] [ 12] [57906806769] +06:09:30 [ 39] [ 2] [00] +06:09:30 [ 70] [ 3] [001] +06:09:30 ============================================================================ +06:09:30 Sending to : +06:09:30 ============================================================================ +06:09:30 + + +waiting on router queue for slot.... +06:09:38 ============================================================================ +06:09:38 Slot Id : <14> +06:09:38 Transaction Type : REQUEST +06:09:38 Received From : +06:09:38 ============================================================================ +06:09:38 FNo. Len. Field Value +06:09:38 ============================================================================ +06:09:38 [ 1] [ 4] [0800] +06:09:38 [ 7] [ 10] [0319110846] +06:09:38 [ 11] [ 6] [154808] +06:09:38 [ 70] [ 3] [301] +06:09:38 ============================================================================ +06:09:38 + + +waiting on router queue for slot.... +06:09:38 Sending to : +06:09:38 ============================================================================ +06:09:38 ============================================================================ +06:09:38 Slot Id : <14> +06:09:38 Transaction Type : RESPONSE +06:09:38 Received From : +06:09:38 ============================================================================ +06:09:38 FNo. Len. Field Value +06:09:38 ============================================================================ +06:09:38 [ 1] [ 4] [0810] +06:09:38 [ 7] [ 10] [0319110846] +06:09:38 [ 11] [ 6] [154808] +06:09:38 [ 39] [ 2] [00] +06:09:38 [ 70] [ 3] [301] +06:09:38 ============================================================================ +06:09:38 Calculate Source COMM Id = 2 +06:09:38 ============================================================================ +06:09:38 + + +waiting on router queue for slot.... +06:09:48 ============================================================================ +06:09:48 Slot Id : <13> +06:09:48 Transaction Type : REQUEST +06:09:48 Received From : +06:09:48 ============================================================================ +06:09:48 FNo. Len. Field Value +06:09:48 ============================================================================ +06:09:48 [ 1] [ 4] [0800] +06:09:48 [ 7] [ 10] [0319110857] +06:09:48 [ 11] [ 6] [154809] +06:09:48 [ 70] [ 3] [301] +06:09:48 ============================================================================ +06:09:48 + + +waiting on router queue for slot.... +06:09:48 Sending to : +06:09:48 ============================================================================ +06:09:48 ============================================================================ +06:09:48 Slot Id : <13> +06:09:48 Transaction Type : RESPONSE +06:09:48 Received From : +06:09:48 ============================================================================ +06:09:48 FNo. Len. Field Value +06:09:48 ============================================================================ +06:09:48 [ 1] [ 4] [0810] +06:09:48 [ 7] [ 10] [0319110857] +06:09:48 [ 11] [ 6] [154809] +06:09:48 [ 39] [ 2] [00] +06:09:48 [ 70] [ 3] [301] +06:09:48 ============================================================================ +06:09:48 Calculate Source COMM Id = 2 +06:09:48 ============================================================================ +06:09:48 + + +waiting on router queue for slot.... +06:09:54 ============================================================================ +06:09:54 Slot Id : <12> +06:09:54 Transaction Type : REQUEST +06:09:54 Received From : +06:09:54 ============================================================================ +06:09:54 FNo. Len. Field Value +06:09:54 ============================================================================ +06:09:54 [ 1] [ 4] [0800] +06:09:54 [ 7] [ 10] [0319231742] +06:09:54 [ 11] [ 6] [031457] +06:09:54 [ 37] [ 12] [57906031457] +06:09:54 [ 70] [ 3] [301] +06:09:54 ============================================================================ +06:09:54 + + +waiting on router queue for slot.... +06:09:54 Sending to : +06:09:54 ============================================================================ +06:09:54 ============================================================================ +06:09:54 Slot Id : <12> +06:09:54 Transaction Type : RESPONSE +06:09:54 Received From : +06:09:54 ============================================================================ +06:09:54 FNo. Len. Field Value +06:09:54 ============================================================================ +06:09:54 [ 1] [ 4] [0810] +06:09:54 [ 7] [ 10] [0319231742] +06:09:54 [ 11] [ 6] [031457] +06:09:54 [ 37] [ 12] [579060314570] +06:09:54 [ 39] [ 2] [00] +06:09:54 [ 70] [ 3] [810] +06:09:54 ============================================================================ +06:09:54 Calculate Source COMM Id = 1 +06:09:54 ============================================================================ +06:09:54 + + +waiting on router queue for slot.... +06:09:59 ============================================================================ +06:09:59 Slot Id : <16> +06:09:59 Transaction Type : REQUEST +06:09:59 Received From : +06:09:59 ============================================================================ +06:09:59 FNo. Len. Field Value +06:09:59 ============================================================================ +06:09:59 [ 1] [ 4] [0800] +06:09:59 [ 7] [ 10] [0319110908] +06:09:59 [ 11] [ 6] [154810] +06:09:59 [ 70] [ 3] [301] +06:09:59 ============================================================================ +06:09:59 + + +waiting on router queue for slot.... +06:09:59 Sending to : +06:09:59 ============================================================================ +06:09:59 ============================================================================ +06:09:59 Slot Id : <16> +06:09:59 Transaction Type : RESPONSE +06:09:59 Received From : +06:09:59 ============================================================================ +06:09:59 FNo. Len. Field Value +06:09:59 ============================================================================ +06:09:59 [ 1] [ 4] [0810] +06:09:59 [ 7] [ 10] [0319110908] +06:09:59 [ 11] [ 6] [154810] +06:09:59 [ 39] [ 2] [00] +06:09:59 [ 70] [ 3] [301] +06:09:59 ============================================================================ +06:09:59 Calculate Source COMM Id = 2 +06:09:59 ============================================================================ +06:09:59 + + +waiting on router queue for slot.... +06:10:02 ============================================================================ +06:10:02 Slot Id : <494> +06:10:02 Transaction Type : REQUEST +06:10:02 Received From : +06:10:02 ============================================================================ +06:10:02 FNo. Len. Field Value +06:10:02 ============================================================================ +06:10:02 [ 1] [ 4] [0200] +06:10:02 [ 2] [ 16] [6213545000101497] +06:10:02 [ 3] [ 6] [011000] +06:10:02 [ 4] [ 12] [000010000000] +06:10:02 [ 7] [ 10] [0320061023] +06:10:02 [ 11] [ 6] [200300] +06:10:02 [ 12] [ 6] [064842] +06:10:02 [ 13] [ 4] [0320] +06:10:02 [ 14] [ 4] [4912] +06:10:02 [ 15] [ 4] [0320] +06:10:02 [ 18] [ 4] [6011] +06:10:02 [ 19] [ 3] [418] +06:10:02 [ 22] [ 3] [021] +06:10:02 [ 25] [ 2] [01] +06:10:02 [ 28] [ 9] [D00002000] +06:10:02 [ 32] [ 6] [198901] +06:10:02 [ 35] [ 32] [6213545000101497=491212010149080] +06:10:02 [ 37] [ 12] [507906200300] +06:10:02 [ 41] [ 8] [00002201] +06:10:02 [ 42] [ 15] [000000041002201] +06:10:02 [ 43] [ 40] [WAD CHAN VN ] +06:10:02 [ 49] [ 3] [418] +06:10:02 [ 52] [ 16] [BB6C5C19402979ED] +06:10:02 ============================================================================ +06:10:02 + + +waiting on router queue for slot.... +06:10:02 Sending to : +06:10:02 ============================================================================ +06:10:02 Sending to : +06:10:02 ============================================================================ +06:10:02 ============================================================================ +06:10:02 Slot Id : <494> +06:10:02 Transaction Type : REQUEST +06:10:02 Received From : +06:10:02 ============================================================================ +06:10:02 FNo. Len. Field Value +06:10:02 ============================================================================ +06:10:02 [ 1] [ 4] [0200] +06:10:02 [ 2] [ 16] [6213545000101497] +06:10:02 [ 3] [ 6] [011000] +06:10:02 [ 4] [ 12] [000010000000] +06:10:02 [ 7] [ 10] [0320061023] +06:10:02 [ 11] [ 6] [200300] +06:10:02 [ 12] [ 6] [064842] +06:10:02 [ 13] [ 4] [0320] +06:10:02 [ 14] [ 4] [4912] +06:10:02 [ 15] [ 4] [0320] +06:10:02 [ 18] [ 4] [6011] +06:10:02 [ 19] [ 3] [418] +06:10:02 [ 22] [ 3] [021] +06:10:02 [ 25] [ 2] [01] +06:10:02 [ 28] [ 9] [D00002000] +06:10:02 [ 32] [ 6] [198901] +06:10:02 [ 35] [ 32] [6213545000101497=491212010149080] +06:10:02 [ 37] [ 12] [507906200300] +06:10:02 [ 41] [ 8] [00002201] +06:10:02 [ 42] [ 15] [000000041002201] +06:10:02 [ 43] [ 40] [WAD CHAN VN ] +06:10:02 [ 49] [ 3] [418] +06:10:02 [ 52] [ 16] [BB6C5C19402979ED] +06:10:02 ============================================================================ +06:10:02 + + +waiting on router queue for slot.... +06:10:02 Sending to : +06:10:02 ============================================================================ +06:10:02 ============================================================================ +06:10:02 Slot Id : <494> +06:10:02 Transaction Type : REQUEST +06:10:02 Received From : +06:10:02 ============================================================================ +06:10:02 FNo. Len. Field Value +06:10:02 ============================================================================ +06:10:02 [ 1] [ 4] [0200] +06:10:02 [ 2] [ 16] [6213545000101497] +06:10:02 [ 3] [ 6] [011000] +06:10:02 [ 4] [ 12] [000010000000] +06:10:02 [ 7] [ 10] [0320061023] +06:10:02 [ 11] [ 6] [200300] +06:10:02 [ 12] [ 6] [064842] +06:10:02 [ 13] [ 4] [0320] +06:10:02 [ 14] [ 4] [4912] +06:10:02 [ 15] [ 4] [0320] +06:10:02 [ 18] [ 4] [6011] +06:10:02 [ 19] [ 3] [418] +06:10:02 [ 22] [ 3] [021] +06:10:02 [ 25] [ 2] [01] +06:10:02 [ 28] [ 9] [D00002000] +06:10:02 [ 32] [ 6] [198901] +06:10:02 [ 35] [ 32] [6213545000101497=491212010149080] +06:10:02 [ 37] [ 12] [507906200300] +06:10:02 [ 41] [ 8] [00002201] +06:10:02 [ 42] [ 15] [000000041002201] +06:10:02 [ 43] [ 40] [WAD CHAN VN ] +06:10:02 [ 49] [ 3] [418] +06:10:02 [ 52] [ 16] [BA7A7D558740B25E] +06:10:02 ============================================================================ +06:10:02 + + +waiting on router queue for slot.... +06:10:02 Sending to : <0> +06:10:02 ============================================================================ +06:10:03 ============================================================================ +06:10:03 Slot Id : <494> +06:10:03 Transaction Type : RESPONSE +06:10:03 Received From : +06:10:03 ============================================================================ +06:10:03 FNo. Len. Field Value +06:10:03 ============================================================================ +06:10:03 [ 1] [ 4] [0210] +06:10:03 [ 2] [ 16] [6213545000101497] +06:10:03 [ 3] [ 6] [011000] +06:10:03 [ 4] [ 12] [000010000000] +06:10:03 [ 7] [ 10] [0320061023] +06:10:03 [ 11] [ 6] [200300] +06:10:03 [ 12] [ 6] [064842] +06:10:03 [ 13] [ 4] [0320] +06:10:03 [ 15] [ 4] [0320] +06:10:03 [ 18] [ 4] [6011] +06:10:03 [ 19] [ 3] [418] +06:10:03 [ 32] [ 6] [198901] +06:10:03 [ 35] [ 32] [6213545000101497=491212010149080] +06:10:03 [ 37] [ 12] [507906200300] +06:10:03 [ 38] [ 6] [069561] +06:10:03 [ 39] [ 2] [00] +06:10:03 [ 41] [ 8] [00002201] +06:10:03 [ 49] [ 3] [418] +06:10:03 [ 54] [ 40] [1001418C0000721572691002418C000072157269] +06:10:03 ============================================================================ +06:10:03 Sending to : +06:10:03 ============================================================================ +06:10:03 + + +waiting on router queue for slot.... +06:10:04 ============================================================================ +06:10:04 Slot Id : <494> +06:10:04 Transaction Type : RESPONSE +06:10:04 Received From : +06:10:04 ============================================================================ +06:10:04 FNo. Len. Field Value +06:10:04 ============================================================================ +06:10:04 [ 1] [ 4] [0210] +06:10:04 [ 2] [ 16] [6213545000101497] +06:10:04 [ 3] [ 6] [011000] +06:10:04 [ 4] [ 12] [000010000000] +06:10:04 [ 7] [ 10] [0320061023] +06:10:04 [ 11] [ 6] [200300] +06:10:04 [ 12] [ 6] [064842] +06:10:04 [ 13] [ 4] [0320] +06:10:04 [ 15] [ 4] [0320] +06:10:04 [ 18] [ 4] [6011] +06:10:04 [ 19] [ 3] [418] +06:10:04 [ 32] [ 6] [198901] +06:10:04 [ 35] [ 32] [6213545000101497=491212010149080] +06:10:04 [ 37] [ 12] [507906200300] +06:10:04 [ 38] [ 6] [069561] +06:10:04 [ 39] [ 2] [00] +06:10:04 [ 41] [ 8] [00002201] +06:10:04 [ 49] [ 3] [418] +06:10:04 [ 54] [ 40] [1001418C0000721572691002418C000072157269] +06:10:04 ============================================================================ +06:10:04 Calculate Source COMM Id = 5 +06:10:04 ============================================================================ +06:10:04 + + +waiting on router queue for slot.... +06:10:05 ============================================================================ +06:10:05 Slot Id : <469> +06:10:05 Transaction Type : REQUEST +06:10:05 Received From : +06:10:05 ============================================================================ +06:10:05 FNo. Len. Field Value +06:10:05 ============================================================================ +06:10:05 [ 1] [ 4] [0200] +06:10:05 [ 2] [ 16] [6213545001065311] +06:10:05 [ 3] [ 6] [010000] +06:10:05 [ 4] [ 12] [000050000000] +06:10:05 [ 7] [ 10] [0319230913] +06:10:05 [ 11] [ 6] [266559] +06:10:05 [ 12] [ 6] [060913] +06:10:05 [ 13] [ 4] [0320] +06:10:05 [ 14] [ 4] [4912] +06:10:05 [ 15] [ 4] [0320] +06:10:05 [ 18] [ 4] [6011] +06:10:05 [ 19] [ 3] [418] +06:10:05 [ 22] [ 3] [021] +06:10:05 [ 25] [ 2] [01] +06:10:05 [ 28] [ 9] [D00002000] +06:10:05 [ 32] [ 6] [180893] +06:10:05 [ 35] [ 32] [6213545001065311=491212016531038] +06:10:05 [ 37] [ 12] [507923266559] +06:10:05 [ 41] [ 8] [0324BKDT] +06:10:05 [ 42] [ 15] [999999 ] +06:10:05 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +06:10:05 [ 49] [ 3] [418] +06:10:05 [ 52] [ 16] [48CB406F66E43090] +06:10:05 ============================================================================ +06:10:05 + + +waiting on router queue for slot.... +06:10:05 Sending to : +06:10:05 ============================================================================ +06:10:05 Sending to : +06:10:05 ============================================================================ +06:10:05 ============================================================================ +06:10:05 Slot Id : <469> +06:10:05 Transaction Type : REQUEST +06:10:05 Received From : +06:10:05 ============================================================================ +06:10:05 FNo. Len. Field Value +06:10:05 ============================================================================ +06:10:05 [ 1] [ 4] [0200] +06:10:05 [ 2] [ 16] [6213545001065311] +06:10:05 [ 3] [ 6] [010000] +06:10:05 [ 4] [ 12] [000050000000] +06:10:05 [ 7] [ 10] [0319230913] +06:10:05 [ 11] [ 6] [266559] +06:10:05 [ 12] [ 6] [060913] +06:10:05 [ 13] [ 4] [0320] +06:10:05 [ 14] [ 4] [4912] +06:10:05 [ 15] [ 4] [0320] +06:10:05 [ 18] [ 4] [6011] +06:10:05 [ 19] [ 3] [418] +06:10:05 [ 22] [ 3] [021] +06:10:05 [ 25] [ 2] [01] +06:10:05 [ 28] [ 9] [D00002000] +06:10:05 [ 32] [ 6] [180893] +06:10:05 [ 35] [ 32] [6213545001065311=491212016531038] +06:10:05 [ 37] [ 12] [507923266559] +06:10:05 [ 41] [ 8] [0324BKDT] +06:10:05 [ 42] [ 15] [999999 ] +06:10:05 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +06:10:05 [ 49] [ 3] [418] +06:10:05 [ 52] [ 16] [48CB406F66E43090] +06:10:05 ============================================================================ +06:10:05 + + +waiting on router queue for slot.... +06:10:05 Sending to : +06:10:05 ============================================================================ +06:10:05 ============================================================================ +06:10:05 Slot Id : <469> +06:10:05 Transaction Type : REQUEST +06:10:05 Received From : +06:10:05 ============================================================================ +06:10:05 FNo. Len. Field Value +06:10:05 ============================================================================ +06:10:05 [ 1] [ 4] [0200] +06:10:05 [ 2] [ 16] [6213545001065311] +06:10:05 [ 3] [ 6] [010000] +06:10:05 [ 4] [ 12] [000050000000] +06:10:05 [ 7] [ 10] [0319230913] +06:10:05 [ 11] [ 6] [266559] +06:10:05 [ 12] [ 6] [060913] +06:10:05 [ 13] [ 4] [0320] +06:10:05 [ 14] [ 4] [4912] +06:10:05 [ 15] [ 4] [0320] +06:10:05 [ 18] [ 4] [6011] +06:10:05 [ 19] [ 3] [418] +06:10:05 [ 22] [ 3] [021] +06:10:05 [ 25] [ 2] [01] +06:10:05 [ 28] [ 9] [D00002000] +06:10:05 [ 32] [ 6] [180893] +06:10:05 [ 35] [ 32] [6213545001065311=491212016531038] +06:10:05 [ 37] [ 12] [507923266559] +06:10:05 [ 41] [ 8] [0324BKDT] +06:10:05 [ 42] [ 15] [999999 ] +06:10:05 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +06:10:05 [ 49] [ 3] [418] +06:10:05 [ 52] [ 16] [11EBC76E649EDDC5] +06:10:05 ============================================================================ +06:10:05 + + +waiting on router queue for slot.... +06:10:05 Sending to : <0> +06:10:05 ============================================================================ +06:10:06 ============================================================================ +06:10:06 Slot Id : <469> +06:10:06 Transaction Type : RESPONSE +06:10:06 Received From : +06:10:06 ============================================================================ +06:10:06 FNo. Len. Field Value +06:10:06 ============================================================================ +06:10:06 [ 1] [ 4] [0210] +06:10:06 [ 2] [ 16] [6213545001065311] +06:10:06 [ 3] [ 6] [010000] +06:10:06 [ 4] [ 12] [000050000000] +06:10:06 [ 7] [ 10] [0319230913] +06:10:06 [ 11] [ 6] [266559] +06:10:06 [ 12] [ 6] [060913] +06:10:06 [ 13] [ 4] [0320] +06:10:06 [ 15] [ 4] [0320] +06:10:06 [ 18] [ 4] [6011] +06:10:06 [ 19] [ 3] [418] +06:10:06 [ 32] [ 6] [180893] +06:10:06 [ 35] [ 32] [6213545001065311=491212016531038] +06:10:06 [ 37] [ 12] [507923266559] +06:10:06 [ 38] [ 6] [266767] +06:10:06 [ 39] [ 2] [00] +06:10:06 [ 41] [ 8] [0324BKDT] +06:10:06 [ 49] [ 3] [418] +06:10:06 [ 54] [ 40] [0001418C0000633457500002418C000063345750] +06:10:06 ============================================================================ +06:10:06 Sending to : +06:10:06 ============================================================================ +06:10:06 + + +waiting on router queue for slot.... +06:10:07 ============================================================================ +06:10:07 Slot Id : <469> +06:10:07 Transaction Type : RESPONSE +06:10:07 Received From : +06:10:07 ============================================================================ +06:10:07 FNo. Len. Field Value +06:10:07 ============================================================================ +06:10:07 [ 1] [ 4] [0210] +06:10:07 [ 2] [ 16] [6213545001065311] +06:10:07 [ 3] [ 6] [010000] +06:10:07 [ 4] [ 12] [000050000000] +06:10:07 [ 7] [ 10] [0319230913] +06:10:07 [ 11] [ 6] [266559] +06:10:07 [ 12] [ 6] [060913] +06:10:07 [ 13] [ 4] [0320] +06:10:07 [ 15] [ 4] [0320] +06:10:07 [ 18] [ 4] [6011] +06:10:07 [ 19] [ 3] [418] +06:10:07 [ 32] [ 6] [180893] +06:10:07 [ 35] [ 32] [6213545001065311=491212016531038] +06:10:07 [ 37] [ 12] [507923266559] +06:10:07 [ 38] [ 6] [266767] +06:10:07 [ 39] [ 2] [00] +06:10:07 [ 41] [ 8] [0324BKDT] +06:10:07 [ 49] [ 3] [418] +06:10:07 [ 54] [ 40] [0001418C0000633457500002418C000063345750] +06:10:07 ============================================================================ +06:10:07 Calculate Source COMM Id = 2 +06:10:07 ============================================================================ +06:10:07 + + +waiting on router queue for slot.... +06:10:21 ============================================================================ +06:10:21 Slot Id : <22> +06:10:21 Transaction Type : REQUEST +06:10:21 Received From : +06:10:21 ============================================================================ +06:10:21 FNo. Len. Field Value +06:10:21 ============================================================================ +06:10:21 [ 1] [ 4] [0800] +06:10:21 [ 7] [ 10] [0319110929] +06:10:21 [ 11] [ 6] [154811] +06:10:21 [ 70] [ 3] [301] +06:10:21 ============================================================================ +06:10:21 + + +waiting on router queue for slot.... +06:10:21 Sending to : +06:10:21 ============================================================================ +06:10:21 ============================================================================ +06:10:21 Slot Id : <22> +06:10:21 Transaction Type : RESPONSE +06:10:21 Received From : +06:10:21 ============================================================================ +06:10:21 FNo. Len. Field Value +06:10:21 ============================================================================ +06:10:21 [ 1] [ 4] [0810] +06:10:21 [ 7] [ 10] [0319110929] +06:10:21 [ 11] [ 6] [154811] +06:10:21 [ 39] [ 2] [00] +06:10:21 [ 70] [ 3] [301] +06:10:21 ============================================================================ +06:10:21 Calculate Source COMM Id = 2 +06:10:21 ============================================================================ +06:10:21 + + +waiting on router queue for slot.... +06:10:30 ============================================================================ +06:10:30 Slot Id : <491> +06:10:30 Transaction Type : REQUEST +06:10:30 Received From : +06:10:30 ============================================================================ +06:10:30 FNo. Len. Field Value +06:10:30 ============================================================================ +06:10:30 [ 1] [ 4] [0800] +06:10:30 [ 7] [ 10] [0320132219] +06:10:30 [ 11] [ 6] [062219] +06:10:30 [ 37] [ 12] [57906062219] +06:10:30 [ 70] [ 3] [301] +06:10:30 ============================================================================ +06:10:30 + + +waiting on router queue for slot.... +06:10:30 Sending to : +06:10:30 ============================================================================ +06:10:30 ============================================================================ +06:10:30 Slot Id : <491> +06:10:30 Transaction Type : RESPONSE +06:10:30 Received From : +06:10:30 ============================================================================ +06:10:30 FNo. Len. Field Value +06:10:30 ============================================================================ +06:10:30 [ 1] [ 4] [0810] +06:10:30 [ 7] [ 10] [0320132219] +06:10:30 [ 11] [ 6] [062219] +06:10:30 [ 37] [ 12] [579060622190] +06:10:30 [ 39] [ 2] [00] +06:10:30 [ 70] [ 3] [810] +06:10:30 ============================================================================ +06:10:30 Calculate Source COMM Id = 6 +06:10:30 ============================================================================ +06:10:30 + + +waiting on router queue for slot.... +06:10:31 ============================================================================ +06:10:31 Slot Id : <17> +06:10:31 Transaction Type : REQUEST +06:10:31 Received From : +06:10:31 ============================================================================ +06:10:31 FNo. Len. Field Value +06:10:31 ============================================================================ +06:10:31 [ 1] [ 4] [0800] +06:10:31 [ 7] [ 10] [0319110940] +06:10:31 [ 11] [ 6] [154812] +06:10:31 [ 70] [ 3] [301] +06:10:31 ============================================================================ +06:10:31 + + +waiting on router queue for slot.... +06:10:31 Sending to : +06:10:31 ============================================================================ +06:10:31 ============================================================================ +06:10:31 Slot Id : <17> +06:10:31 Transaction Type : RESPONSE +06:10:31 Received From : +06:10:31 ============================================================================ +06:10:31 FNo. Len. Field Value +06:10:31 ============================================================================ +06:10:31 [ 1] [ 4] [0810] +06:10:31 [ 7] [ 10] [0319110940] +06:10:31 [ 11] [ 6] [154812] +06:10:31 [ 39] [ 2] [00] +06:10:31 [ 70] [ 3] [301] +06:10:31 ============================================================================ +06:10:31 Calculate Source COMM Id = 2 +06:10:31 ============================================================================ +06:10:31 + + +waiting on router queue for slot.... +06:10:32 ============================================================================ +06:10:32 Slot Id : <499> +06:10:32 Transaction Type : REQUEST +06:10:32 Received From : +06:10:32 ============================================================================ +06:10:32 FNo. Len. Field Value +06:10:32 ============================================================================ +06:10:32 [ 1] [ 4] [0800] +06:10:32 [ 2] [ 5] [02531] +06:10:32 [ 3] [ 6] [579068] +06:10:32 [ 7] [ 10] [0319231032] +06:10:32 [ 11] [ 6] [806770] +06:10:32 [ 15] [ 10] [0319231032] +06:10:32 [ 37] [ 11] [57906806770] +06:10:32 [ 70] [ 3] [001] +06:10:32 ============================================================================ +06:10:32 + + +waiting on router queue for slot.... +06:10:32 ============================================================================ +06:10:32 Slot Id : <499> +06:10:32 Transaction Type : RESPONSE +06:10:32 Received From : +06:10:32 ============================================================================ +06:10:32 FNo. Len. Field Value +06:10:32 ============================================================================ +06:10:32 [ 1] [ 4] [0810] +06:10:32 [ 7] [ 10] [0319231032] +06:10:32 [ 11] [ 6] [806770] +06:10:32 [ 15] [ 4] [0319] +06:10:32 [ 37] [ 12] [57906806770] +06:10:32 [ 39] [ 2] [00] +06:10:32 [ 70] [ 3] [001] +06:10:32 ============================================================================ +06:10:32 Sending to : +06:10:32 ============================================================================ +06:10:32 + + +waiting on router queue for slot.... +06:10:42 ============================================================================ +06:10:42 Slot Id : <10> +06:10:42 Transaction Type : REQUEST +06:10:42 Received From : +06:10:42 ============================================================================ +06:10:42 FNo. Len. Field Value +06:10:42 ============================================================================ +06:10:42 [ 1] [ 4] [0800] +06:10:42 [ 7] [ 10] [0319110950] +06:10:42 [ 11] [ 6] [154813] +06:10:42 [ 70] [ 3] [301] +06:10:42 ============================================================================ +06:10:42 + + +waiting on router queue for slot.... +06:10:42 Sending to : +06:10:42 ============================================================================ +06:10:42 ============================================================================ +06:10:42 Slot Id : <10> +06:10:42 Transaction Type : RESPONSE +06:10:42 Received From : +06:10:42 ============================================================================ +06:10:42 FNo. Len. Field Value +06:10:42 ============================================================================ +06:10:42 [ 1] [ 4] [0810] +06:10:42 [ 7] [ 10] [0319110950] +06:10:42 [ 11] [ 6] [154813] +06:10:42 [ 39] [ 2] [00] +06:10:42 [ 70] [ 3] [301] +06:10:42 ============================================================================ +06:10:42 Calculate Source COMM Id = 2 +06:10:42 ============================================================================ +06:10:42 + + +waiting on router queue for slot.... +06:10:46 ============================================================================ +06:10:46 Slot Id : <31> +06:10:46 Transaction Type : REQUEST +06:10:46 Received From : +06:10:46 ============================================================================ +06:10:46 FNo. Len. Field Value +06:10:46 ============================================================================ +06:10:46 [ 1] [ 4] [0200] +06:10:46 [ 2] [ 16] [6213545001065295] +06:10:46 [ 3] [ 6] [010000] +06:10:46 [ 4] [ 12] [000100000000] +06:10:46 [ 7] [ 10] [0319230953] +06:10:46 [ 11] [ 6] [266563] +06:10:46 [ 12] [ 6] [060953] +06:10:46 [ 13] [ 4] [0320] +06:10:46 [ 14] [ 4] [4912] +06:10:46 [ 15] [ 4] [0320] +06:10:46 [ 18] [ 4] [6011] +06:10:46 [ 19] [ 3] [418] +06:10:46 [ 22] [ 3] [021] +06:10:46 [ 25] [ 2] [01] +06:10:46 [ 28] [ 9] [D00002000] +06:10:46 [ 32] [ 6] [180893] +06:10:46 [ 35] [ 32] [6213545001065295=491212016529655] +06:10:46 [ 37] [ 12] [507923266563] +06:10:46 [ 41] [ 8] [0324BKDT] +06:10:46 [ 42] [ 15] [999999 ] +06:10:46 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +06:10:46 [ 49] [ 3] [418] +06:10:46 [ 52] [ 16] [CDBBBE2B18483A69] +06:10:46 ============================================================================ +06:10:46 + + +waiting on router queue for slot.... +06:10:46 Sending to : +06:10:46 ============================================================================ +06:10:46 Sending to : +06:10:46 ============================================================================ +06:10:47 ============================================================================ +06:10:47 Slot Id : <31> +06:10:47 Transaction Type : REQUEST +06:10:47 Received From : +06:10:47 ============================================================================ +06:10:47 FNo. Len. Field Value +06:10:47 ============================================================================ +06:10:47 [ 1] [ 4] [0200] +06:10:47 [ 2] [ 16] [6213545001065295] +06:10:47 [ 3] [ 6] [010000] +06:10:47 [ 4] [ 12] [000100000000] +06:10:47 [ 7] [ 10] [0319230953] +06:10:47 [ 11] [ 6] [266563] +06:10:47 [ 12] [ 6] [060953] +06:10:47 [ 13] [ 4] [0320] +06:10:47 [ 14] [ 4] [4912] +06:10:47 [ 15] [ 4] [0320] +06:10:47 [ 18] [ 4] [6011] +06:10:47 [ 19] [ 3] [418] +06:10:47 [ 22] [ 3] [021] +06:10:47 [ 25] [ 2] [01] +06:10:47 [ 28] [ 9] [D00002000] +06:10:47 [ 32] [ 6] [180893] +06:10:47 [ 35] [ 32] [6213545001065295=491212016529655] +06:10:47 [ 37] [ 12] [507923266563] +06:10:47 [ 41] [ 8] [0324BKDT] +06:10:47 [ 42] [ 15] [999999 ] +06:10:47 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +06:10:47 [ 49] [ 3] [418] +06:10:47 [ 52] [ 16] [CDBBBE2B18483A69] +06:10:47 ============================================================================ +06:10:47 + + +waiting on router queue for slot.... +06:10:47 Sending to : +06:10:47 ============================================================================ +06:10:47 ============================================================================ +06:10:47 Slot Id : <31> +06:10:47 Transaction Type : REQUEST +06:10:47 Received From : +06:10:47 ============================================================================ +06:10:47 FNo. Len. Field Value +06:10:47 ============================================================================ +06:10:47 [ 1] [ 4] [0200] +06:10:47 [ 2] [ 16] [6213545001065295] +06:10:47 [ 3] [ 6] [010000] +06:10:47 [ 4] [ 12] [000100000000] +06:10:47 [ 7] [ 10] [0319230953] +06:10:47 [ 11] [ 6] [266563] +06:10:47 [ 12] [ 6] [060953] +06:10:47 [ 13] [ 4] [0320] +06:10:47 [ 14] [ 4] [4912] +06:10:47 [ 15] [ 4] [0320] +06:10:47 [ 18] [ 4] [6011] +06:10:47 [ 19] [ 3] [418] +06:10:47 [ 22] [ 3] [021] +06:10:47 [ 25] [ 2] [01] +06:10:47 [ 28] [ 9] [D00002000] +06:10:47 [ 32] [ 6] [180893] +06:10:47 [ 35] [ 32] [6213545001065295=491212016529655] +06:10:47 [ 37] [ 12] [507923266563] +06:10:47 [ 41] [ 8] [0324BKDT] +06:10:47 [ 42] [ 15] [999999 ] +06:10:47 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +06:10:47 [ 49] [ 3] [418] +06:10:47 [ 52] [ 16] [C08AFC9F30EA303C] +06:10:47 ============================================================================ +06:10:47 + + +waiting on router queue for slot.... +06:10:47 Sending to : <0> +06:10:47 ============================================================================ +06:10:47 ============================================================================ +06:10:47 Slot Id : <31> +06:10:47 Transaction Type : RESPONSE +06:10:47 Received From : +06:10:47 ============================================================================ +06:10:47 FNo. Len. Field Value +06:10:47 ============================================================================ +06:10:47 [ 1] [ 4] [0210] +06:10:47 [ 2] [ 16] [6213545001065295] +06:10:47 [ 3] [ 6] [010000] +06:10:47 [ 4] [ 12] [000100000000] +06:10:47 [ 7] [ 10] [0319230953] +06:10:47 [ 11] [ 6] [266563] +06:10:47 [ 12] [ 6] [060953] +06:10:47 [ 13] [ 4] [0320] +06:10:47 [ 15] [ 4] [0320] +06:10:47 [ 18] [ 4] [6011] +06:10:47 [ 19] [ 3] [418] +06:10:47 [ 32] [ 6] [180893] +06:10:47 [ 35] [ 32] [6213545001065295=491212016529655] +06:10:47 [ 37] [ 12] [507923266563] +06:10:47 [ 38] [ 6] [885094] +06:10:47 [ 39] [ 2] [00] +06:10:47 [ 41] [ 8] [0324BKDT] +06:10:47 [ 49] [ 3] [418] +06:10:47 [ 54] [ 40] [0001418C0001127385720002418C000112738572] +06:10:47 ============================================================================ +06:10:47 Sending to : +06:10:47 ============================================================================ +06:10:47 + + +waiting on router queue for slot.... +06:10:49 ============================================================================ +06:10:49 Slot Id : <31> +06:10:49 Transaction Type : RESPONSE +06:10:49 Received From : +06:10:49 ============================================================================ +06:10:49 FNo. Len. Field Value +06:10:49 ============================================================================ +06:10:49 [ 1] [ 4] [0210] +06:10:49 [ 2] [ 16] [6213545001065295] +06:10:49 [ 3] [ 6] [010000] +06:10:49 [ 4] [ 12] [000100000000] +06:10:49 [ 7] [ 10] [0319230953] +06:10:49 [ 11] [ 6] [266563] +06:10:49 [ 12] [ 6] [060953] +06:10:49 [ 13] [ 4] [0320] +06:10:49 [ 15] [ 4] [0320] +06:10:49 [ 18] [ 4] [6011] +06:10:49 [ 19] [ 3] [418] +06:10:49 [ 32] [ 6] [180893] +06:10:49 [ 35] [ 32] [6213545001065295=491212016529655] +06:10:49 [ 37] [ 12] [507923266563] +06:10:49 [ 38] [ 6] [885094] +06:10:49 [ 39] [ 2] [00] +06:10:49 [ 41] [ 8] [0324BKDT] +06:10:49 [ 49] [ 3] [418] +06:10:49 [ 54] [ 40] [0001418C0001127385720002418C000112738572] +06:10:49 ============================================================================ +06:10:49 Calculate Source COMM Id = 2 +06:10:49 ============================================================================ +06:10:49 + + +waiting on router queue for slot.... +06:11:03 ============================================================================ +06:11:03 Slot Id : <23> +06:11:03 Transaction Type : REQUEST +06:11:03 Received From : +06:11:03 ============================================================================ +06:11:03 FNo. Len. Field Value +06:11:03 ============================================================================ +06:11:03 [ 1] [ 4] [0800] +06:11:03 [ 7] [ 10] [0319111012] +06:11:03 [ 11] [ 6] [154814] +06:11:03 [ 70] [ 3] [301] +06:11:03 ============================================================================ +06:11:03 + + +waiting on router queue for slot.... +06:11:03 Sending to : +06:11:03 ============================================================================ +06:11:03 ============================================================================ +06:11:03 Slot Id : <23> +06:11:03 Transaction Type : RESPONSE +06:11:03 Received From : +06:11:03 ============================================================================ +06:11:03 FNo. Len. Field Value +06:11:03 ============================================================================ +06:11:03 [ 1] [ 4] [0810] +06:11:03 [ 7] [ 10] [0319111012] +06:11:03 [ 11] [ 6] [154814] +06:11:03 [ 39] [ 2] [00] +06:11:03 [ 70] [ 3] [301] +06:11:03 ============================================================================ +06:11:03 Calculate Source COMM Id = 2 +06:11:03 ============================================================================ +06:11:03 + + +waiting on router queue for slot.... +06:11:16 ============================================================================ +06:11:16 Slot Id : <481> +06:11:16 Transaction Type : REQUEST +06:11:16 Received From : +06:11:16 ============================================================================ +06:11:16 FNo. Len. Field Value +06:11:16 ============================================================================ +06:11:16 [ 1] [ 4] [0800] +06:11:16 [ 7] [ 10] [0319111022] +06:11:16 [ 11] [ 6] [154815] +06:11:16 [ 70] [ 3] [301] +06:11:16 ============================================================================ +06:11:16 + + +waiting on router queue for slot.... +06:11:16 Sending to : +06:11:16 ============================================================================ +06:11:16 ============================================================================ +06:11:16 Slot Id : <481> +06:11:16 Transaction Type : RESPONSE +06:11:16 Received From : +06:11:16 ============================================================================ +06:11:16 FNo. Len. Field Value +06:11:16 ============================================================================ +06:11:16 [ 1] [ 4] [0810] +06:11:16 [ 7] [ 10] [0319111022] +06:11:16 [ 11] [ 6] [154815] +06:11:16 [ 39] [ 2] [00] +06:11:16 [ 70] [ 3] [301] +06:11:16 ============================================================================ +06:11:16 Calculate Source COMM Id = 2 +06:11:16 ============================================================================ +06:11:16 + + +waiting on router queue for slot.... +06:11:20 ============================================================================ +06:11:20 Slot Id : <3> +06:11:20 Transaction Type : REQUEST +06:11:20 Received From : +06:11:20 ============================================================================ +06:11:20 FNo. Len. Field Value +06:11:20 ============================================================================ +06:11:20 [ 1] [ 4] [0800] +06:11:20 [ 7] [ 10] [0319230912] +06:11:20 [ 11] [ 6] [054892] +06:11:20 [ 37] [ 12] [57906054892] +06:11:20 [ 70] [ 3] [301] +06:11:20 ============================================================================ +06:11:20 + + +waiting on router queue for slot.... +06:11:20 Sending to : +06:11:20 ============================================================================ +06:11:20 ============================================================================ +06:11:20 Slot Id : <3> +06:11:20 Transaction Type : RESPONSE +06:11:20 Received From : +06:11:20 ============================================================================ +06:11:20 FNo. Len. Field Value +06:11:20 ============================================================================ +06:11:20 [ 1] [ 4] [0810] +06:11:20 [ 7] [ 10] [0319230912] +06:11:20 [ 11] [ 6] [054892] +06:11:20 [ 37] [ 12] [579060548920] +06:11:20 [ 39] [ 2] [00] +06:11:20 [ 70] [ 3] [810] +06:11:20 ============================================================================ +06:11:20 Calculate Source COMM Id = 4 +06:11:20 ============================================================================ +06:11:20 + + +waiting on router queue for slot.... +06:11:29 ============================================================================ +06:11:29 Slot Id : <29> +06:11:29 Transaction Type : REQUEST +06:11:29 Received From : +06:11:29 ============================================================================ +06:11:29 FNo. Len. Field Value +06:11:29 ============================================================================ +06:11:29 [ 1] [ 4] [0800] +06:11:29 [ 7] [ 10] [0319111038] +06:11:29 [ 11] [ 6] [154816] +06:11:29 [ 70] [ 3] [301] +06:11:29 ============================================================================ +06:11:29 + + +waiting on router queue for slot.... +06:11:29 Sending to : +06:11:29 ============================================================================ +06:11:29 ============================================================================ +06:11:29 Slot Id : <29> +06:11:29 Transaction Type : RESPONSE +06:11:29 Received From : +06:11:29 ============================================================================ +06:11:29 FNo. Len. Field Value +06:11:29 ============================================================================ +06:11:29 [ 1] [ 4] [0810] +06:11:29 [ 7] [ 10] [0319111038] +06:11:29 [ 11] [ 6] [154816] +06:11:29 [ 39] [ 2] [00] +06:11:29 [ 70] [ 3] [301] +06:11:29 ============================================================================ +06:11:29 Calculate Source COMM Id = 2 +06:11:29 ============================================================================ +06:11:29 + + +waiting on router queue for slot.... +06:11:34 ============================================================================ +06:11:34 Slot Id : <21> +06:11:34 Transaction Type : REQUEST +06:11:34 Received From : +06:11:34 ============================================================================ +06:11:34 FNo. Len. Field Value +06:11:34 ============================================================================ +06:11:34 [ 1] [ 4] [0800] +06:11:34 [ 2] [ 5] [02531] +06:11:34 [ 3] [ 6] [579068] +06:11:34 [ 7] [ 10] [0319231134] +06:11:34 [ 11] [ 6] [806771] +06:11:34 [ 15] [ 10] [0319231134] +06:11:34 [ 37] [ 11] [57906806771] +06:11:34 [ 70] [ 3] [001] +06:11:34 ============================================================================ +06:11:34 + + +waiting on router queue for slot.... +06:11:34 ============================================================================ +06:11:34 Slot Id : <21> +06:11:34 Transaction Type : RESPONSE +06:11:34 Received From : +06:11:34 ============================================================================ +06:11:34 FNo. Len. Field Value +06:11:34 ============================================================================ +06:11:34 [ 1] [ 4] [0810] +06:11:34 [ 7] [ 10] [0319231134] +06:11:34 [ 11] [ 6] [806771] +06:11:34 [ 15] [ 4] [0319] +06:11:34 [ 37] [ 12] [57906806771] +06:11:34 [ 39] [ 2] [00] +06:11:34 [ 70] [ 3] [001] +06:11:34 ============================================================================ +06:11:34 Sending to : +06:11:34 ============================================================================ +06:11:34 + + +waiting on router queue for slot.... +06:11:35 ============================================================================ +06:11:35 Slot Id : <7> +06:11:35 Transaction Type : REQUEST +06:11:35 Received From : +06:11:35 ============================================================================ +06:11:35 FNo. Len. Field Value +06:11:35 ============================================================================ +06:11:35 [ 1] [ 4] [0800] +06:11:35 [ 7] [ 10] [0320132324] +06:11:35 [ 11] [ 6] [062324] +06:11:35 [ 37] [ 12] [57906062324] +06:11:35 [ 70] [ 3] [301] +06:11:35 ============================================================================ +06:11:35 + + +waiting on router queue for slot.... +06:11:35 Sending to : +06:11:35 ============================================================================ +06:11:35 ============================================================================ +06:11:35 Slot Id : <7> +06:11:35 Transaction Type : RESPONSE +06:11:35 Received From : +06:11:35 ============================================================================ +06:11:35 FNo. Len. Field Value +06:11:35 ============================================================================ +06:11:35 [ 1] [ 4] [0810] +06:11:35 [ 7] [ 10] [0320132324] +06:11:35 [ 11] [ 6] [062324] +06:11:35 [ 37] [ 12] [579060623240] +06:11:35 [ 39] [ 2] [00] +06:11:35 [ 70] [ 3] [810] +06:11:35 ============================================================================ +06:11:35 Calculate Source COMM Id = 6 +06:11:35 ============================================================================ +06:11:35 + + +waiting on router queue for slot.... +06:11:46 ============================================================================ +06:11:46 Slot Id : <33> +06:11:46 Transaction Type : REQUEST +06:11:46 Received From : +06:11:46 ============================================================================ +06:11:46 FNo. Len. Field Value +06:11:46 ============================================================================ +06:11:46 [ 1] [ 4] [0800] +06:11:46 [ 7] [ 10] [0319111054] +06:11:46 [ 11] [ 6] [154817] +06:11:46 [ 70] [ 3] [301] +06:11:46 ============================================================================ +06:11:46 + + +waiting on router queue for slot.... +06:11:46 Sending to : +06:11:46 ============================================================================ +06:11:46 ============================================================================ +06:11:46 Slot Id : <33> +06:11:46 Transaction Type : RESPONSE +06:11:46 Received From : +06:11:46 ============================================================================ +06:11:46 FNo. Len. Field Value +06:11:46 ============================================================================ +06:11:46 [ 1] [ 4] [0810] +06:11:46 [ 7] [ 10] [0319111054] +06:11:46 [ 11] [ 6] [154817] +06:11:46 [ 39] [ 2] [00] +06:11:46 [ 70] [ 3] [301] +06:11:46 ============================================================================ +06:11:46 Calculate Source COMM Id = 2 +06:11:46 ============================================================================ +06:11:46 + + +waiting on router queue for slot.... +06:11:58 ============================================================================ +06:11:58 Slot Id : <11> +06:11:58 Transaction Type : REQUEST +06:11:58 Received From : +06:11:58 ============================================================================ +06:11:58 FNo. Len. Field Value +06:11:58 ============================================================================ +06:11:58 [ 1] [ 4] [0200] +06:11:58 [ 2] [ 16] [6213544001717831] +06:11:58 [ 3] [ 6] [010000] +06:11:58 [ 4] [ 12] [000010000000] +06:11:58 [ 7] [ 10] [0319231106] +06:11:58 [ 11] [ 6] [266567] +06:11:58 [ 12] [ 6] [061106] +06:11:58 [ 13] [ 4] [0320] +06:11:58 [ 14] [ 4] [4912] +06:11:58 [ 15] [ 4] [0320] +06:11:58 [ 18] [ 4] [6011] +06:11:58 [ 19] [ 3] [418] +06:11:58 [ 22] [ 3] [021] +06:11:58 [ 25] [ 2] [01] +06:11:58 [ 28] [ 9] [D00002000] +06:11:58 [ 32] [ 6] [180893] +06:11:58 [ 35] [ 32] [6213544001717831=491212011783922] +06:11:58 [ 37] [ 12] [507923266567] +06:11:58 [ 41] [ 8] [0401XSBR] +06:11:58 [ 42] [ 15] [999999 ] +06:11:58 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +06:11:58 [ 49] [ 3] [418] +06:11:58 [ 52] [ 16] [1F3B63DAC3DF21F0] +06:11:58 ============================================================================ +06:11:58 + + +waiting on router queue for slot.... +06:11:58 Sending to : +06:11:58 ============================================================================ +06:11:58 Sending to : +06:11:58 ============================================================================ +06:11:58 ============================================================================ +06:11:58 Slot Id : <11> +06:11:58 Transaction Type : REQUEST +06:11:58 Received From : +06:11:58 ============================================================================ +06:11:58 FNo. Len. Field Value +06:11:58 ============================================================================ +06:11:58 [ 1] [ 4] [0200] +06:11:58 [ 2] [ 16] [6213544001717831] +06:11:58 [ 3] [ 6] [010000] +06:11:58 [ 4] [ 12] [000010000000] +06:11:58 [ 7] [ 10] [0319231106] +06:11:58 [ 11] [ 6] [266567] +06:11:58 [ 12] [ 6] [061106] +06:11:58 [ 13] [ 4] [0320] +06:11:58 [ 14] [ 4] [4912] +06:11:58 [ 15] [ 4] [0320] +06:11:58 [ 18] [ 4] [6011] +06:11:58 [ 19] [ 3] [418] +06:11:58 [ 22] [ 3] [021] +06:11:58 [ 25] [ 2] [01] +06:11:58 [ 28] [ 9] [D00002000] +06:11:58 [ 32] [ 6] [180893] +06:11:58 [ 35] [ 32] [6213544001717831=491212011783922] +06:11:58 [ 37] [ 12] [507923266567] +06:11:58 [ 41] [ 8] [0401XSBR] +06:11:58 [ 42] [ 15] [999999 ] +06:11:58 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +06:11:58 [ 49] [ 3] [418] +06:11:58 [ 52] [ 16] [1F3B63DAC3DF21F0] +06:11:58 ============================================================================ +06:11:58 + + +waiting on router queue for slot.... +06:11:58 Sending to : +06:11:58 ============================================================================ +06:11:58 ============================================================================ +06:11:58 Slot Id : <11> +06:11:58 Transaction Type : REQUEST +06:11:58 Received From : +06:11:58 ============================================================================ +06:11:58 FNo. Len. Field Value +06:11:58 ============================================================================ +06:11:58 [ 1] [ 4] [0200] +06:11:58 [ 2] [ 16] [6213544001717831] +06:11:58 [ 3] [ 6] [010000] +06:11:58 [ 4] [ 12] [000010000000] +06:11:58 [ 7] [ 10] [0319231106] +06:11:58 [ 11] [ 6] [266567] +06:11:58 [ 12] [ 6] [061106] +06:11:58 [ 13] [ 4] [0320] +06:11:58 [ 14] [ 4] [4912] +06:11:58 [ 15] [ 4] [0320] +06:11:58 [ 18] [ 4] [6011] +06:11:58 [ 19] [ 3] [418] +06:11:58 [ 22] [ 3] [021] +06:11:58 [ 25] [ 2] [01] +06:11:58 [ 28] [ 9] [D00002000] +06:11:58 [ 32] [ 6] [180893] +06:11:58 [ 35] [ 32] [6213544001717831=491212011783922] +06:11:58 [ 37] [ 12] [507923266567] +06:11:58 [ 41] [ 8] [0401XSBR] +06:11:58 [ 42] [ 15] [999999 ] +06:11:58 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +06:11:58 [ 49] [ 3] [418] +06:11:58 [ 52] [ 16] [3CBC012C61A06B9D] +06:11:58 ============================================================================ +06:11:58 + + +waiting on router queue for slot.... +06:11:58 Sending to : <0> +06:11:58 ============================================================================ +06:11:59 ============================================================================ +06:11:59 Slot Id : <11> +06:11:59 Transaction Type : RESPONSE +06:11:59 Received From : +06:11:59 ============================================================================ +06:11:59 FNo. Len. Field Value +06:11:59 ============================================================================ +06:11:59 [ 1] [ 4] [0210] +06:11:59 [ 2] [ 16] [6213544001717831] +06:11:59 [ 3] [ 6] [010000] +06:11:59 [ 4] [ 12] [000010000000] +06:11:59 [ 7] [ 10] [0319231106] +06:11:59 [ 11] [ 6] [266567] +06:11:59 [ 12] [ 6] [061106] +06:11:59 [ 13] [ 4] [0320] +06:11:59 [ 15] [ 4] [0320] +06:11:59 [ 18] [ 4] [6011] +06:11:59 [ 19] [ 3] [418] +06:11:59 [ 32] [ 6] [180893] +06:11:59 [ 35] [ 32] [6213544001717831=491212011783922] +06:11:59 [ 37] [ 12] [507923266567] +06:11:59 [ 38] [ 6] [334624] +06:11:59 [ 39] [ 2] [00] +06:11:59 [ 41] [ 8] [0401XSBR] +06:11:59 [ 49] [ 3] [418] +06:11:59 [ 54] [ 40] [0001418C0001017672130002418C000101767213] +06:11:59 ============================================================================ +06:11:59 Sending to : +06:11:59 ============================================================================ +06:11:59 + + +waiting on router queue for slot.... +06:12:01 ============================================================================ +06:12:01 Slot Id : <11> +06:12:01 Transaction Type : RESPONSE +06:12:01 Received From : +06:12:01 ============================================================================ +06:12:01 FNo. Len. Field Value +06:12:01 ============================================================================ +06:12:01 [ 1] [ 4] [0210] +06:12:01 [ 2] [ 16] [6213544001717831] +06:12:01 [ 3] [ 6] [010000] +06:12:01 [ 4] [ 12] [000010000000] +06:12:01 [ 7] [ 10] [0319231106] +06:12:01 [ 11] [ 6] [266567] +06:12:01 [ 12] [ 6] [061106] +06:12:01 [ 13] [ 4] [0320] +06:12:01 [ 15] [ 4] [0320] +06:12:01 [ 18] [ 4] [6011] +06:12:01 [ 19] [ 3] [418] +06:12:01 [ 32] [ 6] [180893] +06:12:01 [ 35] [ 32] [6213544001717831=491212011783922] +06:12:01 [ 37] [ 12] [507923266567] +06:12:01 [ 38] [ 6] [334624] +06:12:01 [ 39] [ 2] [00] +06:12:01 [ 41] [ 8] [0401XSBR] +06:12:01 [ 49] [ 3] [418] +06:12:01 [ 54] [ 40] [0001418C0001017672130002418C000101767213] +06:12:01 ============================================================================ +06:12:01 Calculate Source COMM Id = 2 +06:12:01 ============================================================================ +06:12:01 + + +waiting on router queue for slot.... +06:12:01 ============================================================================ +06:12:01 Slot Id : <35> +06:12:01 Transaction Type : REQUEST +06:12:01 Received From : +06:12:01 ============================================================================ +06:12:01 FNo. Len. Field Value +06:12:01 ============================================================================ +06:12:01 [ 1] [ 4] [0800] +06:12:01 [ 7] [ 10] [0319111110] +06:12:01 [ 11] [ 6] [154818] +06:12:01 [ 70] [ 3] [301] +06:12:01 ============================================================================ +06:12:01 + + +waiting on router queue for slot.... +06:12:01 Sending to : +06:12:01 ============================================================================ +06:12:01 ============================================================================ +06:12:01 Slot Id : <35> +06:12:01 Transaction Type : RESPONSE +06:12:01 Received From : +06:12:01 ============================================================================ +06:12:01 FNo. Len. Field Value +06:12:01 ============================================================================ +06:12:01 [ 1] [ 4] [0810] +06:12:01 [ 7] [ 10] [0319111110] +06:12:01 [ 11] [ 6] [154818] +06:12:01 [ 39] [ 2] [00] +06:12:01 [ 70] [ 3] [301] +06:12:01 ============================================================================ +06:12:01 Calculate Source COMM Id = 2 +06:12:01 ============================================================================ +06:12:01 + + +waiting on router queue for slot.... +06:12:12 ============================================================================ +06:12:12 Slot Id : <30> +06:12:12 Transaction Type : REQUEST +06:12:12 Received From : +06:12:12 ============================================================================ +06:12:12 FNo. Len. Field Value +06:12:12 ============================================================================ +06:12:12 [ 1] [ 4] [0800] +06:12:12 [ 7] [ 10] [0319111121] +06:12:12 [ 11] [ 6] [154819] +06:12:12 [ 70] [ 3] [301] +06:12:12 ============================================================================ +06:12:12 + + +waiting on router queue for slot.... +06:12:12 Sending to : +06:12:12 ============================================================================ +06:12:12 ============================================================================ +06:12:12 Slot Id : <30> +06:12:12 Transaction Type : RESPONSE +06:12:12 Received From : +06:12:12 ============================================================================ +06:12:12 FNo. Len. Field Value +06:12:12 ============================================================================ +06:12:12 [ 1] [ 4] [0810] +06:12:12 [ 7] [ 10] [0319111121] +06:12:12 [ 11] [ 6] [154819] +06:12:12 [ 39] [ 2] [00] +06:12:12 [ 70] [ 3] [301] +06:12:12 ============================================================================ +06:12:12 Calculate Source COMM Id = 2 +06:12:12 ============================================================================ +06:12:12 + + +waiting on router queue for slot.... +06:12:28 ============================================================================ +06:12:28 Slot Id : <496> +06:12:28 Transaction Type : REQUEST +06:12:28 Received From : +06:12:28 ============================================================================ +06:12:28 FNo. Len. Field Value +06:12:28 ============================================================================ +06:12:28 [ 1] [ 4] [0800] +06:12:28 [ 7] [ 10] [0319111136] +06:12:28 [ 11] [ 6] [154820] +06:12:28 [ 70] [ 3] [301] +06:12:28 ============================================================================ +06:12:28 + + +waiting on router queue for slot.... +06:12:28 Sending to : +06:12:28 ============================================================================ +06:12:28 ============================================================================ +06:12:28 Slot Id : <496> +06:12:28 Transaction Type : RESPONSE +06:12:28 Received From : +06:12:28 ============================================================================ +06:12:28 FNo. Len. Field Value +06:12:28 ============================================================================ +06:12:28 [ 1] [ 4] [0810] +06:12:28 [ 7] [ 10] [0319111136] +06:12:28 [ 11] [ 6] [154820] +06:12:28 [ 39] [ 2] [00] +06:12:28 [ 70] [ 3] [301] +06:12:28 ============================================================================ +06:12:28 Calculate Source COMM Id = 2 +06:12:28 ============================================================================ +06:12:28 + + +waiting on router queue for slot.... +06:12:36 ============================================================================ +06:12:36 Slot Id : <36> +06:12:36 Transaction Type : REQUEST +06:12:36 Received From : +06:12:36 ============================================================================ +06:12:36 FNo. Len. Field Value +06:12:36 ============================================================================ +06:12:36 [ 1] [ 4] [0800] +06:12:36 [ 2] [ 5] [02531] +06:12:36 [ 3] [ 6] [579068] +06:12:36 [ 7] [ 10] [0319231236] +06:12:36 [ 11] [ 6] [806772] +06:12:36 [ 15] [ 10] [0319231236] +06:12:36 [ 37] [ 11] [57906806772] +06:12:36 [ 70] [ 3] [001] +06:12:36 ============================================================================ +06:12:36 + + +waiting on router queue for slot.... +06:12:36 ============================================================================ +06:12:36 Slot Id : <36> +06:12:36 Transaction Type : RESPONSE +06:12:36 Received From : +06:12:36 ============================================================================ +06:12:36 FNo. Len. Field Value +06:12:36 ============================================================================ +06:12:36 [ 1] [ 4] [0810] +06:12:36 [ 7] [ 10] [0319231236] +06:12:36 [ 11] [ 6] [806772] +06:12:36 [ 15] [ 4] [0319] +06:12:36 [ 37] [ 12] [57906806772] +06:12:36 [ 39] [ 2] [00] +06:12:36 [ 70] [ 3] [001] +06:12:36 ============================================================================ +06:12:36 Sending to : +06:12:36 ============================================================================ +06:12:36 + + +waiting on router queue for slot.... +06:12:39 ============================================================================ +06:12:39 Slot Id : <37> +06:12:39 Transaction Type : REQUEST +06:12:39 Received From : +06:12:39 ============================================================================ +06:12:39 FNo. Len. Field Value +06:12:39 ============================================================================ +06:12:39 [ 1] [ 4] [0800] +06:12:39 [ 7] [ 10] [0319111148] +06:12:39 [ 11] [ 6] [154821] +06:12:39 [ 70] [ 3] [301] +06:12:39 ============================================================================ +06:12:39 + + +waiting on router queue for slot.... +06:12:39 Sending to : +06:12:39 ============================================================================ +06:12:39 ============================================================================ +06:12:39 Slot Id : <37> +06:12:39 Transaction Type : RESPONSE +06:12:39 Received From : +06:12:39 ============================================================================ +06:12:39 FNo. Len. Field Value +06:12:39 ============================================================================ +06:12:39 [ 1] [ 4] [0810] +06:12:39 [ 7] [ 10] [0319111148] +06:12:39 [ 11] [ 6] [154821] +06:12:39 [ 39] [ 2] [00] +06:12:39 [ 70] [ 3] [301] +06:12:39 ============================================================================ +06:12:39 Calculate Source COMM Id = 2 +06:12:39 ============================================================================ +06:12:39 + + +waiting on router queue for slot.... +06:12:40 ============================================================================ +06:12:40 Slot Id : <32> +06:12:40 Transaction Type : REQUEST +06:12:40 Received From : +06:12:40 ============================================================================ +06:12:40 FNo. Len. Field Value +06:12:40 ============================================================================ +06:12:40 [ 1] [ 4] [0800] +06:12:40 [ 7] [ 10] [0320132429] +06:12:40 [ 11] [ 6] [062429] +06:12:40 [ 37] [ 12] [57906062429] +06:12:40 [ 70] [ 3] [301] +06:12:40 ============================================================================ +06:12:40 + + +waiting on router queue for slot.... +06:12:40 Sending to : +06:12:40 ============================================================================ +06:12:40 ============================================================================ +06:12:40 Slot Id : <32> +06:12:40 Transaction Type : RESPONSE +06:12:40 Received From : +06:12:40 ============================================================================ +06:12:40 FNo. Len. Field Value +06:12:40 ============================================================================ +06:12:40 [ 1] [ 4] [0810] +06:12:40 [ 7] [ 10] [0320132429] +06:12:40 [ 11] [ 6] [062429] +06:12:40 [ 37] [ 12] [579060624290] +06:12:40 [ 39] [ 2] [00] +06:12:40 [ 70] [ 3] [810] +06:12:40 ============================================================================ +06:12:40 Calculate Source COMM Id = 6 +06:12:40 ============================================================================ +06:12:40 + + +waiting on router queue for slot.... +06:12:50 ============================================================================ +06:12:50 Slot Id : <461> +06:12:50 Transaction Type : REQUEST +06:12:50 Received From : +06:12:50 ============================================================================ +06:12:50 FNo. Len. Field Value +06:12:50 ============================================================================ +06:12:50 [ 1] [ 4] [0800] +06:12:50 [ 7] [ 10] [0319111158] +06:12:50 [ 11] [ 6] [154822] +06:12:50 [ 70] [ 3] [301] +06:12:50 ============================================================================ +06:12:50 + + +waiting on router queue for slot.... +06:12:50 Sending to : +06:12:50 ============================================================================ +06:12:50 ============================================================================ +06:12:50 Slot Id : <461> +06:12:50 Transaction Type : RESPONSE +06:12:50 Received From : +06:12:50 ============================================================================ +06:12:50 FNo. Len. Field Value +06:12:50 ============================================================================ +06:12:50 [ 1] [ 4] [0810] +06:12:50 [ 7] [ 10] [0319111158] +06:12:50 [ 11] [ 6] [154822] +06:12:50 [ 39] [ 2] [00] +06:12:50 [ 70] [ 3] [301] +06:12:50 ============================================================================ +06:12:50 Calculate Source COMM Id = 2 +06:12:50 ============================================================================ +06:12:50 + + +waiting on router queue for slot.... +06:13:05 ============================================================================ +06:13:05 Slot Id : <9> +06:13:05 Transaction Type : REQUEST +06:13:05 Received From : +06:13:05 ============================================================================ +06:13:05 FNo. Len. Field Value +06:13:05 ============================================================================ +06:13:05 [ 1] [ 4] [0800] +06:13:05 [ 7] [ 10] [0319111214] +06:13:05 [ 11] [ 6] [154823] +06:13:05 [ 70] [ 3] [301] +06:13:05 ============================================================================ +06:13:05 + + +waiting on router queue for slot.... +06:13:05 Sending to : +06:13:05 ============================================================================ +06:13:05 ============================================================================ +06:13:05 Slot Id : <9> +06:13:05 Transaction Type : RESPONSE +06:13:05 Received From : +06:13:05 ============================================================================ +06:13:05 FNo. Len. Field Value +06:13:05 ============================================================================ +06:13:05 [ 1] [ 4] [0810] +06:13:05 [ 7] [ 10] [0319111214] +06:13:05 [ 11] [ 6] [154823] +06:13:05 [ 39] [ 2] [00] +06:13:05 [ 70] [ 3] [301] +06:13:05 ============================================================================ +06:13:05 Calculate Source COMM Id = 2 +06:13:05 ============================================================================ +06:13:05 + + +waiting on router queue for slot.... +06:13:15 ============================================================================ +06:13:15 Slot Id : <467> +06:13:15 Transaction Type : REQUEST +06:13:15 Received From : +06:13:15 ============================================================================ +06:13:15 FNo. Len. Field Value +06:13:15 ============================================================================ +06:13:15 [ 1] [ 4] [0800] +06:13:15 [ 7] [ 10] [0320061303] +06:13:15 [ 11] [ 6] [076714] +06:13:15 [ 37] [ 12] [507906076714] +06:13:15 [ 70] [ 3] [ ] +06:13:15 ============================================================================ +06:13:15 + + +waiting on router queue for slot.... +06:13:15 Sending to : +06:13:15 ============================================================================ +06:13:15 ============================================================================ +06:13:15 Slot Id : <467> +06:13:15 Transaction Type : RESPONSE +06:13:15 Received From : +06:13:15 ============================================================================ +06:13:15 FNo. Len. Field Value +06:13:15 ============================================================================ +06:13:15 [ 1] [ 4] [0810] +06:13:15 [ 7] [ 10] [0320061303] +06:13:15 [ 11] [ 6] [076714] +06:13:15 [ 37] [ 12] [507906076714] +06:13:15 [ 39] [ 2] [91] +06:13:15 [ 70] [ 3] [ ] +06:13:15 ============================================================================ +06:13:15 Calculate Source COMM Id = 3 +06:13:15 ============================================================================ +06:13:15 + + +waiting on router queue for slot.... +06:13:20 ============================================================================ +06:13:20 Slot Id : <40> +06:13:20 Transaction Type : REQUEST +06:13:20 Received From : +06:13:20 ============================================================================ +06:13:20 FNo. Len. Field Value +06:13:20 ============================================================================ +06:13:20 [ 1] [ 4] [0800] +06:13:20 [ 7] [ 10] [0319111229] +06:13:20 [ 11] [ 6] [154824] +06:13:20 [ 70] [ 3] [301] +06:13:20 ============================================================================ +06:13:20 + + +waiting on router queue for slot.... +06:13:20 Sending to : +06:13:20 ============================================================================ +06:13:20 ============================================================================ +06:13:20 Slot Id : <40> +06:13:20 Transaction Type : RESPONSE +06:13:20 Received From : +06:13:20 ============================================================================ +06:13:20 FNo. Len. Field Value +06:13:20 ============================================================================ +06:13:20 [ 1] [ 4] [0810] +06:13:20 [ 7] [ 10] [0319111229] +06:13:20 [ 11] [ 6] [154824] +06:13:20 [ 39] [ 2] [00] +06:13:20 [ 70] [ 3] [301] +06:13:20 ============================================================================ +06:13:20 Calculate Source COMM Id = 2 +06:13:20 ============================================================================ +06:13:20 + + +waiting on router queue for slot.... +06:13:23 ============================================================================ +06:13:23 Slot Id : <45> +06:13:23 Transaction Type : REQUEST +06:13:23 Received From : +06:13:23 ============================================================================ +06:13:23 FNo. Len. Field Value +06:13:23 ============================================================================ +06:13:23 [ 1] [ 4] [0800] +06:13:23 [ 7] [ 10] [0319231320] +06:13:23 [ 11] [ 6] [085692] +06:13:23 [ 37] [ 12] [507906085692] +06:13:23 [ 70] [ 3] [001] +06:13:23 ============================================================================ +06:13:23 + + +waiting on router queue for slot.... +06:13:23 Sending to : +06:13:23 ============================================================================ +06:13:23 ============================================================================ +06:13:23 Slot Id : <45> +06:13:23 Transaction Type : RESPONSE +06:13:23 Received From : +06:13:23 ============================================================================ +06:13:23 FNo. Len. Field Value +06:13:23 ============================================================================ +06:13:23 [ 1] [ 4] [0810] +06:13:23 [ 7] [ 10] [0319231320] +06:13:23 [ 11] [ 6] [085692] +06:13:23 [ 37] [ 12] [507906085692] +06:13:23 [ 39] [ 2] [00] +06:13:23 [ 70] [ 3] [001] +06:13:23 ============================================================================ +06:13:23 Calculate Source COMM Id = 0 +06:13:23 ============================================================================ +06:13:23 + + +waiting on router queue for slot.... +06:13:30 ============================================================================ +06:13:30 Slot Id : <18> +06:13:30 Transaction Type : REQUEST +06:13:30 Received From : +06:13:30 ============================================================================ +06:13:30 FNo. Len. Field Value +06:13:30 ============================================================================ +06:13:30 [ 1] [ 4] [0800] +06:13:30 [ 7] [ 10] [0319111239] +06:13:30 [ 11] [ 6] [154825] +06:13:30 [ 70] [ 3] [301] +06:13:30 ============================================================================ +06:13:30 + + +waiting on router queue for slot.... +06:13:30 Sending to : +06:13:30 ============================================================================ +06:13:30 ============================================================================ +06:13:30 Slot Id : <18> +06:13:30 Transaction Type : RESPONSE +06:13:30 Received From : +06:13:30 ============================================================================ +06:13:30 FNo. Len. Field Value +06:13:30 ============================================================================ +06:13:30 [ 1] [ 4] [0810] +06:13:30 [ 7] [ 10] [0319111239] +06:13:30 [ 11] [ 6] [154825] +06:13:30 [ 39] [ 2] [00] +06:13:30 [ 70] [ 3] [301] +06:13:30 ============================================================================ +06:13:30 Calculate Source COMM Id = 2 +06:13:30 ============================================================================ +06:13:30 + + +waiting on router queue for slot.... +06:13:38 ============================================================================ +06:13:38 Slot Id : <497> +06:13:38 Transaction Type : REQUEST +06:13:38 Received From : +06:13:38 ============================================================================ +06:13:38 FNo. Len. Field Value +06:13:38 ============================================================================ +06:13:38 [ 1] [ 4] [0800] +06:13:38 [ 2] [ 5] [02531] +06:13:38 [ 3] [ 6] [579068] +06:13:38 [ 7] [ 10] [0319231338] +06:13:38 [ 11] [ 6] [806773] +06:13:38 [ 15] [ 10] [0319231338] +06:13:38 [ 37] [ 11] [57906806773] +06:13:38 [ 70] [ 3] [001] +06:13:38 ============================================================================ +06:13:38 + + +waiting on router queue for slot.... +06:13:38 ============================================================================ +06:13:38 Slot Id : <497> +06:13:38 Transaction Type : RESPONSE +06:13:38 Received From : +06:13:38 ============================================================================ +06:13:38 FNo. Len. Field Value +06:13:38 ============================================================================ +06:13:38 [ 1] [ 4] [0810] +06:13:38 [ 7] [ 10] [0319231338] +06:13:38 [ 11] [ 6] [806773] +06:13:38 [ 15] [ 4] [0319] +06:13:38 [ 37] [ 12] [57906806773] +06:13:38 [ 39] [ 2] [00] +06:13:38 [ 70] [ 3] [001] +06:13:38 ============================================================================ +06:13:38 Sending to : +06:13:38 ============================================================================ +06:13:38 + + +waiting on router queue for slot.... +06:13:41 ============================================================================ +06:13:41 Slot Id : <28> +06:13:41 Transaction Type : REQUEST +06:13:41 Received From : +06:13:41 ============================================================================ +06:13:41 FNo. Len. Field Value +06:13:41 ============================================================================ +06:13:41 [ 1] [ 4] [0800] +06:13:41 [ 7] [ 10] [0319111250] +06:13:41 [ 11] [ 6] [154826] +06:13:41 [ 70] [ 3] [301] +06:13:41 ============================================================================ +06:13:41 + + +waiting on router queue for slot.... +06:13:41 Sending to : +06:13:41 ============================================================================ +06:13:41 ============================================================================ +06:13:41 Slot Id : <28> +06:13:41 Transaction Type : RESPONSE +06:13:41 Received From : +06:13:41 ============================================================================ +06:13:41 FNo. Len. Field Value +06:13:41 ============================================================================ +06:13:41 [ 1] [ 4] [0810] +06:13:41 [ 7] [ 10] [0319111250] +06:13:41 [ 11] [ 6] [154826] +06:13:41 [ 39] [ 2] [00] +06:13:41 [ 70] [ 3] [301] +06:13:41 ============================================================================ +06:13:41 Calculate Source COMM Id = 2 +06:13:41 ============================================================================ +06:13:41 + + +waiting on router queue for slot.... +06:13:45 ============================================================================ +06:13:45 Slot Id : <43> +06:13:45 Transaction Type : REQUEST +06:13:45 Received From : +06:13:45 ============================================================================ +06:13:45 FNo. Len. Field Value +06:13:45 ============================================================================ +06:13:45 [ 1] [ 4] [0800] +06:13:45 [ 7] [ 10] [0320132534] +06:13:45 [ 11] [ 6] [062534] +06:13:45 [ 37] [ 12] [57906062534] +06:13:45 [ 70] [ 3] [301] +06:13:45 ============================================================================ +06:13:45 + + +waiting on router queue for slot.... +06:13:45 Sending to : +06:13:45 ============================================================================ +06:13:45 ============================================================================ +06:13:45 Slot Id : <43> +06:13:45 Transaction Type : RESPONSE +06:13:45 Received From : +06:13:45 ============================================================================ +06:13:45 FNo. Len. Field Value +06:13:45 ============================================================================ +06:13:45 [ 1] [ 4] [0810] +06:13:45 [ 7] [ 10] [0320132534] +06:13:45 [ 11] [ 6] [062534] +06:13:45 [ 37] [ 12] [579060625340] +06:13:45 [ 39] [ 2] [00] +06:13:45 [ 70] [ 3] [810] +06:13:45 ============================================================================ +06:13:45 Calculate Source COMM Id = 6 +06:13:45 ============================================================================ +06:13:45 + + +waiting on router queue for slot.... +06:13:52 ============================================================================ +06:13:52 Slot Id : <8> +06:13:52 Transaction Type : REQUEST +06:13:52 Received From : +06:13:52 ============================================================================ +06:13:52 FNo. Len. Field Value +06:13:52 ============================================================================ +06:13:52 [ 1] [ 4] [0800] +06:13:52 [ 7] [ 10] [0319111301] +06:13:52 [ 11] [ 6] [154827] +06:13:52 [ 70] [ 3] [301] +06:13:52 ============================================================================ +06:13:52 + + +waiting on router queue for slot.... +06:13:52 Sending to : +06:13:52 ============================================================================ +06:13:52 ============================================================================ +06:13:52 Slot Id : <8> +06:13:52 Transaction Type : RESPONSE +06:13:52 Received From : +06:13:52 ============================================================================ +06:13:52 FNo. Len. Field Value +06:13:52 ============================================================================ +06:13:52 [ 1] [ 4] [0810] +06:13:52 [ 7] [ 10] [0319111301] +06:13:52 [ 11] [ 6] [154827] +06:13:52 [ 39] [ 2] [00] +06:13:52 [ 70] [ 3] [301] +06:13:52 ============================================================================ +06:13:52 Calculate Source COMM Id = 2 +06:13:52 ============================================================================ +06:13:52 + + +waiting on router queue for slot.... +06:14:03 ============================================================================ +06:14:03 Slot Id : <50> +06:14:03 Transaction Type : REQUEST +06:14:03 Received From : +06:14:03 ============================================================================ +06:14:03 FNo. Len. Field Value +06:14:03 ============================================================================ +06:14:03 [ 1] [ 4] [0800] +06:14:03 [ 7] [ 10] [0319111312] +06:14:03 [ 11] [ 6] [154828] +06:14:03 [ 70] [ 3] [301] +06:14:03 ============================================================================ +06:14:03 + + +waiting on router queue for slot.... +06:14:03 Sending to : +06:14:03 ============================================================================ +06:14:03 ============================================================================ +06:14:03 Slot Id : <50> +06:14:03 Transaction Type : RESPONSE +06:14:03 Received From : +06:14:03 ============================================================================ +06:14:03 FNo. Len. Field Value +06:14:03 ============================================================================ +06:14:03 [ 1] [ 4] [0810] +06:14:03 [ 7] [ 10] [0319111312] +06:14:03 [ 11] [ 6] [154828] +06:14:03 [ 39] [ 2] [00] +06:14:03 [ 70] [ 3] [301] +06:14:03 ============================================================================ +06:14:03 Calculate Source COMM Id = 2 +06:14:03 ============================================================================ +06:14:03 + + +waiting on router queue for slot.... +06:14:14 ============================================================================ +06:14:14 Slot Id : <52> +06:14:14 Transaction Type : REQUEST +06:14:14 Received From : +06:14:14 ============================================================================ +06:14:14 FNo. Len. Field Value +06:14:14 ============================================================================ +06:14:14 [ 1] [ 4] [0800] +06:14:14 [ 7] [ 10] [0319111323] +06:14:14 [ 11] [ 6] [154829] +06:14:14 [ 70] [ 3] [301] +06:14:14 ============================================================================ +06:14:14 + + +waiting on router queue for slot.... +06:14:14 Sending to : +06:14:14 ============================================================================ +06:14:14 ============================================================================ +06:14:14 Slot Id : <52> +06:14:14 Transaction Type : RESPONSE +06:14:14 Received From : +06:14:14 ============================================================================ +06:14:14 FNo. Len. Field Value +06:14:14 ============================================================================ +06:14:14 [ 1] [ 4] [0810] +06:14:14 [ 7] [ 10] [0319111323] +06:14:14 [ 11] [ 6] [154829] +06:14:14 [ 39] [ 2] [00] +06:14:14 [ 70] [ 3] [301] +06:14:14 ============================================================================ +06:14:14 Calculate Source COMM Id = 2 +06:14:14 ============================================================================ +06:14:14 + + +waiting on router queue for slot.... +06:14:25 ============================================================================ +06:14:25 Slot Id : <44> +06:14:25 Transaction Type : REQUEST +06:14:25 Received From : +06:14:25 ============================================================================ +06:14:25 FNo. Len. Field Value +06:14:25 ============================================================================ +06:14:25 [ 1] [ 4] [0800] +06:14:25 [ 7] [ 10] [0319111334] +06:14:25 [ 11] [ 6] [154830] +06:14:25 [ 70] [ 3] [301] +06:14:25 ============================================================================ +06:14:25 + + +waiting on router queue for slot.... +06:14:25 Sending to : +06:14:25 ============================================================================ +06:14:25 ============================================================================ +06:14:25 Slot Id : <44> +06:14:25 Transaction Type : RESPONSE +06:14:25 Received From : +06:14:25 ============================================================================ +06:14:25 FNo. Len. Field Value +06:14:25 ============================================================================ +06:14:25 [ 1] [ 4] [0810] +06:14:25 [ 7] [ 10] [0319111334] +06:14:25 [ 11] [ 6] [154830] +06:14:25 [ 39] [ 2] [00] +06:14:25 [ 70] [ 3] [301] +06:14:25 ============================================================================ +06:14:25 Calculate Source COMM Id = 2 +06:14:25 ============================================================================ +06:14:25 + + +waiting on router queue for slot.... +06:14:40 ============================================================================ +06:14:40 Slot Id : <61> +06:14:40 Transaction Type : REQUEST +06:14:40 Received From : +06:14:40 ============================================================================ +06:14:40 FNo. Len. Field Value +06:14:40 ============================================================================ +06:14:40 [ 1] [ 4] [0800] +06:14:40 [ 2] [ 5] [02531] +06:14:40 [ 3] [ 6] [579068] +06:14:40 [ 7] [ 10] [0319231440] +06:14:40 [ 11] [ 6] [806774] +06:14:40 [ 15] [ 10] [0319231440] +06:14:40 [ 37] [ 11] [57906806774] +06:14:40 [ 70] [ 3] [001] +06:14:40 ============================================================================ +06:14:40 + + +waiting on router queue for slot.... +06:14:40 ============================================================================ +06:14:40 Slot Id : <61> +06:14:40 Transaction Type : RESPONSE +06:14:40 Received From : +06:14:40 ============================================================================ +06:14:40 FNo. Len. Field Value +06:14:40 ============================================================================ +06:14:40 [ 1] [ 4] [0810] +06:14:40 [ 7] [ 10] [0319231440] +06:14:40 [ 11] [ 6] [806774] +06:14:40 [ 15] [ 4] [0319] +06:14:40 [ 37] [ 12] [57906806774] +06:14:40 [ 39] [ 2] [00] +06:14:40 [ 70] [ 3] [001] +06:14:40 ============================================================================ +06:14:40 Sending to : +06:14:40 ============================================================================ +06:14:40 + + +waiting on router queue for slot.... +06:14:40 ============================================================================ +06:14:40 Slot Id : <25> +06:14:40 Transaction Type : REQUEST +06:14:40 Received From : +06:14:40 ============================================================================ +06:14:40 FNo. Len. Field Value +06:14:40 ============================================================================ +06:14:40 [ 1] [ 4] [0800] +06:14:40 [ 7] [ 10] [0319111349] +06:14:40 [ 11] [ 6] [154831] +06:14:40 [ 70] [ 3] [301] +06:14:40 ============================================================================ +06:14:40 + + +waiting on router queue for slot.... +06:14:40 Sending to : +06:14:40 ============================================================================ +06:14:40 ============================================================================ +06:14:40 Slot Id : <25> +06:14:40 Transaction Type : RESPONSE +06:14:40 Received From : +06:14:40 ============================================================================ +06:14:40 FNo. Len. Field Value +06:14:40 ============================================================================ +06:14:40 [ 1] [ 4] [0810] +06:14:40 [ 7] [ 10] [0319111349] +06:14:40 [ 11] [ 6] [154831] +06:14:40 [ 39] [ 2] [00] +06:14:40 [ 70] [ 3] [301] +06:14:40 ============================================================================ +06:14:40 Calculate Source COMM Id = 2 +06:14:40 ============================================================================ +06:14:40 + + +waiting on router queue for slot.... +06:14:50 ============================================================================ +06:14:50 Slot Id : <15> +06:14:50 Transaction Type : REQUEST +06:14:50 Received From : +06:14:50 ============================================================================ +06:14:50 FNo. Len. Field Value +06:14:50 ============================================================================ +06:14:50 [ 1] [ 4] [0800] +06:14:50 [ 7] [ 10] [0320132639] +06:14:50 [ 11] [ 6] [062639] +06:14:50 [ 37] [ 12] [57906062639] +06:14:50 [ 70] [ 3] [301] +06:14:50 ============================================================================ +06:14:50 + + +waiting on router queue for slot.... +06:14:50 Sending to : +06:14:50 ============================================================================ +06:14:50 ============================================================================ +06:14:50 Slot Id : <15> +06:14:50 Transaction Type : RESPONSE +06:14:50 Received From : +06:14:50 ============================================================================ +06:14:50 FNo. Len. Field Value +06:14:50 ============================================================================ +06:14:50 [ 1] [ 4] [0810] +06:14:50 [ 7] [ 10] [0320132639] +06:14:50 [ 11] [ 6] [062639] +06:14:50 [ 37] [ 12] [579060626390] +06:14:50 [ 39] [ 2] [00] +06:14:50 [ 70] [ 3] [810] +06:14:50 ============================================================================ +06:14:50 Calculate Source COMM Id = 6 +06:14:50 ============================================================================ +06:14:50 + + +waiting on router queue for slot.... +06:14:51 ============================================================================ +06:14:51 Slot Id : <55> +06:14:51 Transaction Type : REQUEST +06:14:51 Received From : +06:14:51 ============================================================================ +06:14:51 FNo. Len. Field Value +06:14:51 ============================================================================ +06:14:51 [ 1] [ 4] [0800] +06:14:51 [ 7] [ 10] [0319111359] +06:14:51 [ 11] [ 6] [154832] +06:14:51 [ 70] [ 3] [301] +06:14:51 ============================================================================ +06:14:51 + + +waiting on router queue for slot.... +06:14:51 Sending to : +06:14:51 ============================================================================ +06:14:51 ============================================================================ +06:14:51 Slot Id : <55> +06:14:51 Transaction Type : RESPONSE +06:14:51 Received From : +06:14:51 ============================================================================ +06:14:51 FNo. Len. Field Value +06:14:51 ============================================================================ +06:14:51 [ 1] [ 4] [0810] +06:14:51 [ 7] [ 10] [0319111359] +06:14:51 [ 11] [ 6] [154832] +06:14:51 [ 39] [ 2] [00] +06:14:51 [ 70] [ 3] [301] +06:14:51 ============================================================================ +06:14:51 Calculate Source COMM Id = 2 +06:14:51 ============================================================================ +06:14:51 + + +waiting on router queue for slot.... +06:14:54 ============================================================================ +06:14:54 Slot Id : <478> +06:14:54 Transaction Type : REQUEST +06:14:54 Received From : +06:14:54 ============================================================================ +06:14:54 FNo. Len. Field Value +06:14:54 ============================================================================ +06:14:54 [ 1] [ 4] [0800] +06:14:54 [ 7] [ 10] [0319232242] +06:14:54 [ 11] [ 6] [087164] +06:14:54 [ 37] [ 12] [57906087164] +06:14:54 [ 70] [ 3] [301] +06:14:54 ============================================================================ +06:14:54 + + +waiting on router queue for slot.... +06:14:54 Sending to : +06:14:54 ============================================================================ +06:14:54 ============================================================================ +06:14:54 Slot Id : <478> +06:14:54 Transaction Type : RESPONSE +06:14:54 Received From : +06:14:54 ============================================================================ +06:14:54 FNo. Len. Field Value +06:14:54 ============================================================================ +06:14:54 [ 1] [ 4] [0810] +06:14:54 [ 7] [ 10] [0319232242] +06:14:54 [ 11] [ 6] [087164] +06:14:54 [ 37] [ 12] [579060871640] +06:14:54 [ 39] [ 2] [00] +06:14:54 [ 70] [ 3] [810] +06:14:54 ============================================================================ +06:14:54 Calculate Source COMM Id = 1 +06:14:54 ============================================================================ +06:14:54 + + +waiting on router queue for slot.... +06:15:01 ============================================================================ +06:15:01 Slot Id : <68> +06:15:01 Transaction Type : REQUEST +06:15:01 Received From : +06:15:01 ============================================================================ +06:15:01 FNo. Len. Field Value +06:15:01 ============================================================================ +06:15:01 [ 1] [ 4] [0800] +06:15:01 [ 7] [ 10] [0319111409] +06:15:01 [ 11] [ 6] [154833] +06:15:01 [ 70] [ 3] [301] +06:15:01 ============================================================================ +06:15:01 + + +waiting on router queue for slot.... +06:15:01 Sending to : +06:15:01 ============================================================================ +06:15:01 ============================================================================ +06:15:01 Slot Id : <68> +06:15:01 Transaction Type : RESPONSE +06:15:01 Received From : +06:15:01 ============================================================================ +06:15:01 FNo. Len. Field Value +06:15:01 ============================================================================ +06:15:01 [ 1] [ 4] [0810] +06:15:01 [ 7] [ 10] [0319111409] +06:15:01 [ 11] [ 6] [154833] +06:15:01 [ 39] [ 2] [00] +06:15:01 [ 70] [ 3] [301] +06:15:01 ============================================================================ +06:15:01 Calculate Source COMM Id = 2 +06:15:01 ============================================================================ +06:15:01 + + +waiting on router queue for slot.... +06:15:13 ============================================================================ +06:15:13 Slot Id : <63> +06:15:13 Transaction Type : REQUEST +06:15:13 Received From : +06:15:13 ============================================================================ +06:15:13 FNo. Len. Field Value +06:15:13 ============================================================================ +06:15:13 [ 1] [ 4] [0800] +06:15:13 [ 7] [ 10] [0319111420] +06:15:13 [ 11] [ 6] [154834] +06:15:13 [ 70] [ 3] [301] +06:15:13 ============================================================================ +06:15:13 + + +waiting on router queue for slot.... +06:15:13 Sending to : +06:15:13 ============================================================================ +06:15:13 ============================================================================ +06:15:13 Slot Id : <63> +06:15:13 Transaction Type : RESPONSE +06:15:13 Received From : +06:15:13 ============================================================================ +06:15:13 FNo. Len. Field Value +06:15:13 ============================================================================ +06:15:13 [ 1] [ 4] [0810] +06:15:13 [ 7] [ 10] [0319111420] +06:15:13 [ 11] [ 6] [154834] +06:15:13 [ 39] [ 2] [00] +06:15:13 [ 70] [ 3] [301] +06:15:13 ============================================================================ +06:15:13 Calculate Source COMM Id = 2 +06:15:13 ============================================================================ +06:15:13 + + +waiting on router queue for slot.... +06:15:27 ============================================================================ +06:15:27 Slot Id : <60> +06:15:27 Transaction Type : REQUEST +06:15:27 Received From : +06:15:27 ============================================================================ +06:15:27 FNo. Len. Field Value +06:15:27 ============================================================================ +06:15:27 [ 1] [ 4] [0800] +06:15:27 [ 7] [ 10] [0319111435] +06:15:27 [ 11] [ 6] [154835] +06:15:27 [ 70] [ 3] [301] +06:15:27 ============================================================================ +06:15:27 + + +waiting on router queue for slot.... +06:15:27 Sending to : +06:15:27 ============================================================================ +06:15:27 ============================================================================ +06:15:27 Slot Id : <60> +06:15:27 Transaction Type : RESPONSE +06:15:27 Received From : +06:15:27 ============================================================================ +06:15:27 FNo. Len. Field Value +06:15:27 ============================================================================ +06:15:27 [ 1] [ 4] [0810] +06:15:27 [ 7] [ 10] [0319111435] +06:15:27 [ 11] [ 6] [154835] +06:15:27 [ 39] [ 2] [00] +06:15:27 [ 70] [ 3] [301] +06:15:27 ============================================================================ +06:15:27 Calculate Source COMM Id = 2 +06:15:27 ============================================================================ +06:15:27 + + +waiting on router queue for slot.... +06:15:35 ============================================================================ +06:15:35 Slot Id : <464> +06:15:35 Transaction Type : REQUEST +06:15:35 Received From : +06:15:35 ============================================================================ +06:15:35 FNo. Len. Field Value +06:15:35 ============================================================================ +06:15:35 [ 1] [ 4] [0200] +06:15:35 [ 2] [ 16] [6213545000760136] +06:15:35 [ 3] [ 6] [302000] +06:15:35 [ 7] [ 10] [0319231443] +06:15:35 [ 11] [ 6] [266572] +06:15:35 [ 12] [ 6] [061443] +06:15:35 [ 13] [ 4] [0320] +06:15:35 [ 14] [ 4] [4912] +06:15:35 [ 15] [ 4] [0320] +06:15:35 [ 18] [ 4] [6011] +06:15:35 [ 19] [ 3] [418] +06:15:35 [ 22] [ 3] [021] +06:15:35 [ 25] [ 2] [01] +06:15:35 [ 32] [ 6] [180893] +06:15:35 [ 35] [ 32] [6213545000760136=491212016013239] +06:15:35 [ 37] [ 12] [507923266572] +06:15:35 [ 41] [ 8] [0112CPBR] +06:15:35 [ 42] [ 15] [999999 ] +06:15:35 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:15:35 [ 49] [ 3] [418] +06:15:35 [ 52] [ 16] [8B5B65D7674EB18B] +06:15:35 ============================================================================ +06:15:35 + + +waiting on router queue for slot.... +06:15:35 Sending to : +06:15:35 ============================================================================ +06:15:35 Sending to : +06:15:35 ============================================================================ +06:15:36 ============================================================================ +06:15:36 Slot Id : <464> +06:15:36 Transaction Type : REQUEST +06:15:36 Received From : +06:15:36 ============================================================================ +06:15:36 FNo. Len. Field Value +06:15:36 ============================================================================ +06:15:36 [ 1] [ 4] [0200] +06:15:36 [ 2] [ 16] [6213545000760136] +06:15:36 [ 3] [ 6] [302000] +06:15:36 [ 7] [ 10] [0319231443] +06:15:36 [ 11] [ 6] [266572] +06:15:36 [ 12] [ 6] [061443] +06:15:36 [ 13] [ 4] [0320] +06:15:36 [ 14] [ 4] [4912] +06:15:36 [ 15] [ 4] [0320] +06:15:36 [ 18] [ 4] [6011] +06:15:36 [ 19] [ 3] [418] +06:15:36 [ 22] [ 3] [021] +06:15:36 [ 25] [ 2] [01] +06:15:36 [ 32] [ 6] [180893] +06:15:36 [ 35] [ 32] [6213545000760136=491212016013239] +06:15:36 [ 37] [ 12] [507923266572] +06:15:36 [ 41] [ 8] [0112CPBR] +06:15:36 [ 42] [ 15] [999999 ] +06:15:36 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:15:36 [ 49] [ 3] [418] +06:15:36 [ 52] [ 16] [8B5B65D7674EB18B] +06:15:36 ============================================================================ +06:15:36 + + +waiting on router queue for slot.... +06:15:36 Sending to : +06:15:36 ============================================================================ +06:15:36 ============================================================================ +06:15:36 Slot Id : <464> +06:15:36 Transaction Type : REQUEST +06:15:36 Received From : +06:15:36 ============================================================================ +06:15:36 FNo. Len. Field Value +06:15:36 ============================================================================ +06:15:36 [ 1] [ 4] [0200] +06:15:36 [ 2] [ 16] [6213545000760136] +06:15:36 [ 3] [ 6] [302000] +06:15:36 [ 7] [ 10] [0319231443] +06:15:36 [ 11] [ 6] [266572] +06:15:36 [ 12] [ 6] [061443] +06:15:36 [ 13] [ 4] [0320] +06:15:36 [ 14] [ 4] [4912] +06:15:36 [ 15] [ 4] [0320] +06:15:36 [ 18] [ 4] [6011] +06:15:36 [ 19] [ 3] [418] +06:15:36 [ 22] [ 3] [021] +06:15:36 [ 25] [ 2] [01] +06:15:36 [ 32] [ 6] [180893] +06:15:36 [ 35] [ 32] [6213545000760136=491212016013239] +06:15:36 [ 37] [ 12] [507923266572] +06:15:36 [ 41] [ 8] [0112CPBR] +06:15:36 [ 42] [ 15] [999999 ] +06:15:36 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:15:36 [ 49] [ 3] [418] +06:15:36 [ 52] [ 16] [F9736E9FA6C03A05] +06:15:36 ============================================================================ +06:15:36 + + +waiting on router queue for slot.... +06:15:36 Sending to : <0> +06:15:36 ============================================================================ +06:15:36 ============================================================================ +06:15:36 Slot Id : <464> +06:15:36 Transaction Type : RESPONSE +06:15:36 Received From : +06:15:36 ============================================================================ +06:15:36 FNo. Len. Field Value +06:15:36 ============================================================================ +06:15:36 [ 1] [ 4] [0210] +06:15:36 [ 2] [ 16] [6213545000760136] +06:15:36 [ 3] [ 6] [302000] +06:15:36 [ 4] [ 12] [000000000000] +06:15:36 [ 7] [ 10] [0319231443] +06:15:36 [ 11] [ 6] [266572] +06:15:36 [ 12] [ 6] [061443] +06:15:36 [ 13] [ 4] [0320] +06:15:36 [ 15] [ 4] [0320] +06:15:36 [ 18] [ 4] [6011] +06:15:36 [ 19] [ 3] [418] +06:15:36 [ 32] [ 6] [180893] +06:15:36 [ 35] [ 32] [6213545000760136=491212016013239] +06:15:36 [ 37] [ 12] [507923266572] +06:15:36 [ 38] [ 6] [660699] +06:15:36 [ 39] [ 2] [00] +06:15:36 [ 41] [ 8] [0112CPBR] +06:15:36 [ 49] [ 3] [418] +06:15:36 [ 54] [ 40] [2001418C0001488342232002418C000148834223] +06:15:36 ============================================================================ +06:15:36 Sending to : +06:15:36 ============================================================================ +06:15:36 + + +waiting on router queue for slot.... +06:15:37 ============================================================================ +06:15:37 Slot Id : <41> +06:15:37 Transaction Type : REQUEST +06:15:37 Received From : +06:15:37 ============================================================================ +06:15:37 FNo. Len. Field Value +06:15:37 ============================================================================ +06:15:37 [ 1] [ 4] [0800] +06:15:37 [ 7] [ 10] [0319111446] +06:15:37 [ 11] [ 6] [154836] +06:15:37 [ 70] [ 3] [301] +06:15:37 ============================================================================ +06:15:37 + + +waiting on router queue for slot.... +06:15:37 Sending to : +06:15:37 ============================================================================ +06:15:37 ============================================================================ +06:15:37 Slot Id : <41> +06:15:37 Transaction Type : RESPONSE +06:15:37 Received From : +06:15:37 ============================================================================ +06:15:37 FNo. Len. Field Value +06:15:37 ============================================================================ +06:15:37 [ 1] [ 4] [0810] +06:15:37 [ 7] [ 10] [0319111446] +06:15:37 [ 11] [ 6] [154836] +06:15:37 [ 39] [ 2] [00] +06:15:37 [ 70] [ 3] [301] +06:15:37 ============================================================================ +06:15:37 Calculate Source COMM Id = 2 +06:15:37 ============================================================================ +06:15:37 + + +waiting on router queue for slot.... +06:15:38 ============================================================================ +06:15:38 Slot Id : <464> +06:15:38 Transaction Type : RESPONSE +06:15:38 Received From : +06:15:38 ============================================================================ +06:15:38 FNo. Len. Field Value +06:15:38 ============================================================================ +06:15:38 [ 1] [ 4] [0210] +06:15:38 [ 2] [ 16] [6213545000760136] +06:15:38 [ 3] [ 6] [302000] +06:15:38 [ 4] [ 12] [000000000000] +06:15:38 [ 7] [ 10] [0319231443] +06:15:38 [ 11] [ 6] [266572] +06:15:38 [ 12] [ 6] [061443] +06:15:38 [ 13] [ 4] [0320] +06:15:38 [ 15] [ 4] [0320] +06:15:38 [ 18] [ 4] [6011] +06:15:38 [ 19] [ 3] [418] +06:15:38 [ 32] [ 6] [180893] +06:15:38 [ 35] [ 32] [6213545000760136=491212016013239] +06:15:38 [ 37] [ 12] [507923266572] +06:15:38 [ 38] [ 6] [660699] +06:15:38 [ 39] [ 2] [00] +06:15:38 [ 41] [ 8] [0112CPBR] +06:15:38 [ 49] [ 3] [418] +06:15:38 [ 54] [ 40] [2001418C0001488342232002418C000148834223] +06:15:38 ============================================================================ +06:15:38 Calculate Source COMM Id = 2 +06:15:38 ============================================================================ +06:15:38 + + +waiting on router queue for slot.... +06:15:42 ============================================================================ +06:15:42 Slot Id : <38> +06:15:42 Transaction Type : REQUEST +06:15:42 Received From : +06:15:42 ============================================================================ +06:15:42 FNo. Len. Field Value +06:15:42 ============================================================================ +06:15:42 [ 1] [ 4] [0800] +06:15:42 [ 2] [ 5] [02531] +06:15:42 [ 3] [ 6] [579068] +06:15:42 [ 7] [ 10] [0319231542] +06:15:42 [ 11] [ 6] [806775] +06:15:42 [ 15] [ 10] [0319231542] +06:15:42 [ 37] [ 11] [57906806775] +06:15:42 [ 70] [ 3] [001] +06:15:42 ============================================================================ +06:15:42 + + +waiting on router queue for slot.... +06:15:42 ============================================================================ +06:15:42 Slot Id : <38> +06:15:42 Transaction Type : RESPONSE +06:15:42 Received From : +06:15:42 ============================================================================ +06:15:42 FNo. Len. Field Value +06:15:42 ============================================================================ +06:15:42 [ 1] [ 4] [0810] +06:15:42 [ 7] [ 10] [0319231542] +06:15:42 [ 11] [ 6] [806775] +06:15:42 [ 15] [ 4] [0319] +06:15:42 [ 37] [ 12] [57906806775] +06:15:42 [ 39] [ 2] [00] +06:15:42 [ 70] [ 3] [001] +06:15:42 ============================================================================ +06:15:42 Sending to : +06:15:42 ============================================================================ +06:15:42 + + +waiting on router queue for slot.... +06:15:54 ============================================================================ +06:15:54 Slot Id : <73> +06:15:54 Transaction Type : REQUEST +06:15:54 Received From : +06:15:54 ============================================================================ +06:15:54 FNo. Len. Field Value +06:15:54 ============================================================================ +06:15:54 [ 1] [ 4] [0800] +06:15:54 [ 7] [ 10] [0319111502] +06:15:54 [ 11] [ 6] [154837] +06:15:54 [ 70] [ 3] [301] +06:15:54 ============================================================================ +06:15:54 + + +waiting on router queue for slot.... +06:15:54 Sending to : +06:15:54 ============================================================================ +06:15:54 ============================================================================ +06:15:54 Slot Id : <73> +06:15:54 Transaction Type : RESPONSE +06:15:54 Received From : +06:15:54 ============================================================================ +06:15:54 FNo. Len. Field Value +06:15:54 ============================================================================ +06:15:54 [ 1] [ 4] [0810] +06:15:54 [ 7] [ 10] [0319111502] +06:15:54 [ 11] [ 6] [154837] +06:15:54 [ 39] [ 2] [00] +06:15:54 [ 70] [ 3] [301] +06:15:54 ============================================================================ +06:15:54 Calculate Source COMM Id = 2 +06:15:54 ============================================================================ +06:15:54 + + +waiting on router queue for slot.... +06:15:55 ============================================================================ +06:15:55 Slot Id : <487> +06:15:55 Transaction Type : REQUEST +06:15:55 Received From : +06:15:55 ============================================================================ +06:15:55 FNo. Len. Field Value +06:15:55 ============================================================================ +06:15:55 [ 1] [ 4] [0800] +06:15:55 [ 7] [ 10] [0320132744] +06:15:55 [ 11] [ 6] [062744] +06:15:55 [ 37] [ 12] [57906062744] +06:15:55 [ 70] [ 3] [301] +06:15:55 ============================================================================ +06:15:55 + + +waiting on router queue for slot.... +06:15:55 Sending to : +06:15:55 ============================================================================ +06:15:55 ============================================================================ +06:15:55 Slot Id : <487> +06:15:55 Transaction Type : RESPONSE +06:15:55 Received From : +06:15:55 ============================================================================ +06:15:55 FNo. Len. Field Value +06:15:55 ============================================================================ +06:15:55 [ 1] [ 4] [0810] +06:15:55 [ 7] [ 10] [0320132744] +06:15:55 [ 11] [ 6] [062744] +06:15:55 [ 37] [ 12] [579060627440] +06:15:55 [ 39] [ 2] [00] +06:15:55 [ 70] [ 3] [810] +06:15:55 ============================================================================ +06:15:55 Calculate Source COMM Id = 6 +06:15:55 ============================================================================ +06:15:55 + + +waiting on router queue for slot.... +06:16:05 ============================================================================ +06:16:05 Slot Id : <27> +06:16:05 Transaction Type : REQUEST +06:16:05 Received From : +06:16:05 ============================================================================ +06:16:05 FNo. Len. Field Value +06:16:05 ============================================================================ +06:16:05 [ 1] [ 4] [0800] +06:16:05 [ 7] [ 10] [0319111513] +06:16:05 [ 11] [ 6] [154838] +06:16:05 [ 70] [ 3] [301] +06:16:05 ============================================================================ +06:16:05 + + +waiting on router queue for slot.... +06:16:05 Sending to : +06:16:05 ============================================================================ +06:16:05 ============================================================================ +06:16:05 Slot Id : <27> +06:16:05 Transaction Type : RESPONSE +06:16:05 Received From : +06:16:05 ============================================================================ +06:16:05 FNo. Len. Field Value +06:16:05 ============================================================================ +06:16:05 [ 1] [ 4] [0810] +06:16:05 [ 7] [ 10] [0319111513] +06:16:05 [ 11] [ 6] [154838] +06:16:05 [ 39] [ 2] [00] +06:16:05 [ 70] [ 3] [301] +06:16:05 ============================================================================ +06:16:05 Calculate Source COMM Id = 2 +06:16:05 ============================================================================ +06:16:05 + + +waiting on router queue for slot.... +06:16:17 ============================================================================ +06:16:17 Slot Id : <20> +06:16:17 Transaction Type : REQUEST +06:16:17 Received From : +06:16:17 ============================================================================ +06:16:17 FNo. Len. Field Value +06:16:17 ============================================================================ +06:16:17 [ 1] [ 4] [0800] +06:16:17 [ 7] [ 10] [0319111525] +06:16:17 [ 11] [ 6] [154839] +06:16:17 [ 70] [ 3] [301] +06:16:17 ============================================================================ +06:16:17 + + +waiting on router queue for slot.... +06:16:17 Sending to : +06:16:17 ============================================================================ +06:16:17 ============================================================================ +06:16:17 Slot Id : <20> +06:16:17 Transaction Type : RESPONSE +06:16:17 Received From : +06:16:17 ============================================================================ +06:16:17 FNo. Len. Field Value +06:16:17 ============================================================================ +06:16:17 [ 1] [ 4] [0810] +06:16:17 [ 7] [ 10] [0319111525] +06:16:17 [ 11] [ 6] [154839] +06:16:17 [ 39] [ 2] [00] +06:16:17 [ 70] [ 3] [301] +06:16:17 ============================================================================ +06:16:17 Calculate Source COMM Id = 2 +06:16:17 ============================================================================ +06:16:17 + + +waiting on router queue for slot.... +06:16:19 ============================================================================ +06:16:19 Slot Id : <48> +06:16:19 Transaction Type : REQUEST +06:16:19 Received From : +06:16:19 ============================================================================ +06:16:19 FNo. Len. Field Value +06:16:19 ============================================================================ +06:16:19 [ 1] [ 4] [0200] +06:16:19 [ 2] [ 16] [6213545000760136] +06:16:19 [ 3] [ 6] [012000] +06:16:19 [ 4] [ 12] [000020000000] +06:16:19 [ 7] [ 10] [0319231526] +06:16:19 [ 11] [ 6] [266575] +06:16:19 [ 12] [ 6] [061526] +06:16:19 [ 13] [ 4] [0320] +06:16:19 [ 14] [ 4] [4912] +06:16:19 [ 15] [ 4] [0320] +06:16:19 [ 18] [ 4] [6011] +06:16:19 [ 19] [ 3] [418] +06:16:19 [ 22] [ 3] [021] +06:16:19 [ 25] [ 2] [01] +06:16:19 [ 28] [ 9] [D00002000] +06:16:19 [ 32] [ 6] [180893] +06:16:19 [ 35] [ 32] [6213545000760136=491212016013239] +06:16:19 [ 37] [ 12] [507923266575] +06:16:19 [ 41] [ 8] [0112CPBR] +06:16:19 [ 42] [ 15] [999999 ] +06:16:19 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:16:19 [ 49] [ 3] [418] +06:16:19 [ 52] [ 16] [8B5B65D7674EB18B] +06:16:19 ============================================================================ +06:16:19 + + +waiting on router queue for slot.... +06:16:19 Sending to : +06:16:19 ============================================================================ +06:16:19 Sending to : +06:16:19 ============================================================================ +06:16:19 ============================================================================ +06:16:19 Slot Id : <48> +06:16:19 Transaction Type : REQUEST +06:16:19 Received From : +06:16:19 ============================================================================ +06:16:19 FNo. Len. Field Value +06:16:19 ============================================================================ +06:16:19 [ 1] [ 4] [0200] +06:16:19 [ 2] [ 16] [6213545000760136] +06:16:19 [ 3] [ 6] [012000] +06:16:19 [ 4] [ 12] [000020000000] +06:16:19 [ 7] [ 10] [0319231526] +06:16:19 [ 11] [ 6] [266575] +06:16:19 [ 12] [ 6] [061526] +06:16:19 [ 13] [ 4] [0320] +06:16:19 [ 14] [ 4] [4912] +06:16:19 [ 15] [ 4] [0320] +06:16:19 [ 18] [ 4] [6011] +06:16:19 [ 19] [ 3] [418] +06:16:19 [ 22] [ 3] [021] +06:16:19 [ 25] [ 2] [01] +06:16:19 [ 28] [ 9] [D00002000] +06:16:19 [ 32] [ 6] [180893] +06:16:19 [ 35] [ 32] [6213545000760136=491212016013239] +06:16:19 [ 37] [ 12] [507923266575] +06:16:19 [ 41] [ 8] [0112CPBR] +06:16:19 [ 42] [ 15] [999999 ] +06:16:19 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:16:19 [ 49] [ 3] [418] +06:16:19 [ 52] [ 16] [8B5B65D7674EB18B] +06:16:19 ============================================================================ +06:16:19 + + +waiting on router queue for slot.... +06:16:19 Sending to : +06:16:19 ============================================================================ +06:16:19 ============================================================================ +06:16:19 Slot Id : <48> +06:16:19 Transaction Type : REQUEST +06:16:19 Received From : +06:16:19 ============================================================================ +06:16:19 FNo. Len. Field Value +06:16:19 ============================================================================ +06:16:19 [ 1] [ 4] [0200] +06:16:19 [ 2] [ 16] [6213545000760136] +06:16:19 [ 3] [ 6] [012000] +06:16:19 [ 4] [ 12] [000020000000] +06:16:19 [ 7] [ 10] [0319231526] +06:16:19 [ 11] [ 6] [266575] +06:16:19 [ 12] [ 6] [061526] +06:16:19 [ 13] [ 4] [0320] +06:16:19 [ 14] [ 4] [4912] +06:16:19 [ 15] [ 4] [0320] +06:16:19 [ 18] [ 4] [6011] +06:16:19 [ 19] [ 3] [418] +06:16:19 [ 22] [ 3] [021] +06:16:19 [ 25] [ 2] [01] +06:16:19 [ 28] [ 9] [D00002000] +06:16:19 [ 32] [ 6] [180893] +06:16:19 [ 35] [ 32] [6213545000760136=491212016013239] +06:16:19 [ 37] [ 12] [507923266575] +06:16:19 [ 41] [ 8] [0112CPBR] +06:16:19 [ 42] [ 15] [999999 ] +06:16:19 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:16:19 [ 49] [ 3] [418] +06:16:19 [ 52] [ 16] [F9736E9FA6C03A05] +06:16:19 ============================================================================ +06:16:19 + + +waiting on router queue for slot.... +06:16:19 Sending to : <0> +06:16:19 ============================================================================ +06:16:20 ============================================================================ +06:16:20 Slot Id : <48> +06:16:20 Transaction Type : RESPONSE +06:16:20 Received From : +06:16:20 ============================================================================ +06:16:20 FNo. Len. Field Value +06:16:20 ============================================================================ +06:16:20 [ 1] [ 4] [0210] +06:16:20 [ 2] [ 16] [6213545000760136] +06:16:20 [ 3] [ 6] [012000] +06:16:20 [ 4] [ 12] [000020000000] +06:16:20 [ 7] [ 10] [0319231526] +06:16:20 [ 11] [ 6] [266575] +06:16:20 [ 12] [ 6] [061526] +06:16:20 [ 13] [ 4] [0320] +06:16:20 [ 15] [ 4] [0320] +06:16:20 [ 18] [ 4] [6011] +06:16:20 [ 19] [ 3] [418] +06:16:20 [ 32] [ 6] [180893] +06:16:20 [ 35] [ 32] [6213545000760136=491212016013239] +06:16:20 [ 37] [ 12] [507923266575] +06:16:20 [ 38] [ 6] [178514] +06:16:20 [ 39] [ 2] [00] +06:16:20 [ 41] [ 8] [0112CPBR] +06:16:20 [ 49] [ 3] [418] +06:16:20 [ 54] [ 40] [2001418C0001286342232002418C000128634223] +06:16:20 ============================================================================ +06:16:20 Sending to : +06:16:20 ============================================================================ +06:16:20 + + +waiting on router queue for slot.... +06:16:20 ============================================================================ +06:16:20 Slot Id : <26> +06:16:20 Transaction Type : REQUEST +06:16:20 Received From : +06:16:20 ============================================================================ +06:16:20 FNo. Len. Field Value +06:16:20 ============================================================================ +06:16:20 [ 1] [ 4] [0800] +06:16:20 [ 7] [ 10] [0319231412] +06:16:20 [ 11] [ 6] [014618] +06:16:20 [ 37] [ 12] [57906014618] +06:16:20 [ 70] [ 3] [301] +06:16:20 ============================================================================ +06:16:20 + + +waiting on router queue for slot.... +06:16:20 Sending to : +06:16:20 ============================================================================ +06:16:20 ============================================================================ +06:16:20 Slot Id : <26> +06:16:20 Transaction Type : RESPONSE +06:16:20 Received From : +06:16:20 ============================================================================ +06:16:20 FNo. Len. Field Value +06:16:20 ============================================================================ +06:16:20 [ 1] [ 4] [0810] +06:16:20 [ 7] [ 10] [0319231412] +06:16:20 [ 11] [ 6] [014618] +06:16:20 [ 37] [ 12] [579060146180] +06:16:20 [ 39] [ 2] [00] +06:16:20 [ 70] [ 3] [810] +06:16:20 ============================================================================ +06:16:20 Calculate Source COMM Id = 4 +06:16:20 ============================================================================ +06:16:20 + + +waiting on router queue for slot.... +06:16:21 ============================================================================ +06:16:21 Slot Id : <48> +06:16:21 Transaction Type : RESPONSE +06:16:21 Received From : +06:16:21 ============================================================================ +06:16:21 FNo. Len. Field Value +06:16:21 ============================================================================ +06:16:21 [ 1] [ 4] [0210] +06:16:21 [ 2] [ 16] [6213545000760136] +06:16:21 [ 3] [ 6] [012000] +06:16:21 [ 4] [ 12] [000020000000] +06:16:21 [ 7] [ 10] [0319231526] +06:16:21 [ 11] [ 6] [266575] +06:16:21 [ 12] [ 6] [061526] +06:16:21 [ 13] [ 4] [0320] +06:16:21 [ 15] [ 4] [0320] +06:16:21 [ 18] [ 4] [6011] +06:16:21 [ 19] [ 3] [418] +06:16:21 [ 32] [ 6] [180893] +06:16:21 [ 35] [ 32] [6213545000760136=491212016013239] +06:16:21 [ 37] [ 12] [507923266575] +06:16:21 [ 38] [ 6] [178514] +06:16:21 [ 39] [ 2] [00] +06:16:21 [ 41] [ 8] [0112CPBR] +06:16:21 [ 49] [ 3] [418] +06:16:21 [ 54] [ 40] [2001418C0001286342232002418C000128634223] +06:16:21 ============================================================================ +06:16:21 Calculate Source COMM Id = 2 +06:16:21 ============================================================================ +06:16:21 + + +waiting on router queue for slot.... +06:16:38 ============================================================================ +06:16:38 Slot Id : <46> +06:16:38 Transaction Type : REQUEST +06:16:38 Received From : +06:16:38 ============================================================================ +06:16:38 FNo. Len. Field Value +06:16:38 ============================================================================ +06:16:38 [ 1] [ 4] [0800] +06:16:38 [ 7] [ 10] [0319111547] +06:16:38 [ 11] [ 6] [154840] +06:16:38 [ 70] [ 3] [301] +06:16:38 ============================================================================ +06:16:38 + + +waiting on router queue for slot.... +06:16:38 Sending to : +06:16:38 ============================================================================ +06:16:38 ============================================================================ +06:16:38 Slot Id : <46> +06:16:38 Transaction Type : RESPONSE +06:16:38 Received From : +06:16:38 ============================================================================ +06:16:38 FNo. Len. Field Value +06:16:38 ============================================================================ +06:16:38 [ 1] [ 4] [0810] +06:16:38 [ 7] [ 10] [0319111547] +06:16:38 [ 11] [ 6] [154840] +06:16:38 [ 39] [ 2] [00] +06:16:38 [ 70] [ 3] [301] +06:16:38 ============================================================================ +06:16:38 Calculate Source COMM Id = 2 +06:16:38 ============================================================================ +06:16:38 + + +waiting on router queue for slot.... +06:16:44 ============================================================================ +06:16:44 Slot Id : <19> +06:16:44 Transaction Type : REQUEST +06:16:44 Received From : +06:16:44 ============================================================================ +06:16:44 FNo. Len. Field Value +06:16:44 ============================================================================ +06:16:44 [ 1] [ 4] [0800] +06:16:44 [ 2] [ 5] [02531] +06:16:44 [ 3] [ 6] [579068] +06:16:44 [ 7] [ 10] [0319231644] +06:16:44 [ 11] [ 6] [806776] +06:16:44 [ 15] [ 10] [0319231644] +06:16:44 [ 37] [ 11] [57906806776] +06:16:44 [ 70] [ 3] [001] +06:16:44 ============================================================================ +06:16:44 + + +waiting on router queue for slot.... +06:16:44 ============================================================================ +06:16:44 Slot Id : <19> +06:16:44 Transaction Type : RESPONSE +06:16:44 Received From : +06:16:44 ============================================================================ +06:16:44 FNo. Len. Field Value +06:16:44 ============================================================================ +06:16:44 [ 1] [ 4] [0810] +06:16:44 [ 7] [ 10] [0319231644] +06:16:44 [ 11] [ 6] [806776] +06:16:44 [ 15] [ 4] [0319] +06:16:44 [ 37] [ 12] [57906806776] +06:16:44 [ 39] [ 2] [00] +06:16:44 [ 70] [ 3] [001] +06:16:44 ============================================================================ +06:16:44 Sending to : +06:16:44 ============================================================================ +06:16:44 + + +waiting on router queue for slot.... +06:16:54 ============================================================================ +06:16:54 Slot Id : <69> +06:16:54 Transaction Type : REQUEST +06:16:54 Received From : +06:16:54 ============================================================================ +06:16:54 FNo. Len. Field Value +06:16:54 ============================================================================ +06:16:54 [ 1] [ 4] [0800] +06:16:54 [ 7] [ 10] [0319111603] +06:16:54 [ 11] [ 6] [154841] +06:16:54 [ 70] [ 3] [301] +06:16:54 ============================================================================ +06:16:54 + + +waiting on router queue for slot.... +06:16:54 Sending to : +06:16:54 ============================================================================ +06:16:54 ============================================================================ +06:16:54 Slot Id : <69> +06:16:54 Transaction Type : RESPONSE +06:16:54 Received From : +06:16:54 ============================================================================ +06:16:54 FNo. Len. Field Value +06:16:54 ============================================================================ +06:16:54 [ 1] [ 4] [0810] +06:16:54 [ 7] [ 10] [0319111603] +06:16:54 [ 11] [ 6] [154841] +06:16:54 [ 39] [ 2] [00] +06:16:54 [ 70] [ 3] [301] +06:16:54 ============================================================================ +06:16:54 Calculate Source COMM Id = 2 +06:16:54 ============================================================================ +06:16:54 + + +waiting on router queue for slot.... +06:17:00 ============================================================================ +06:17:00 Slot Id : <47> +06:17:00 Transaction Type : REQUEST +06:17:00 Received From : +06:17:00 ============================================================================ +06:17:00 FNo. Len. Field Value +06:17:00 ============================================================================ +06:17:00 [ 1] [ 4] [0800] +06:17:00 [ 7] [ 10] [0320132849] +06:17:00 [ 11] [ 6] [062849] +06:17:00 [ 37] [ 12] [57906062849] +06:17:00 [ 70] [ 3] [301] +06:17:00 ============================================================================ +06:17:00 + + +waiting on router queue for slot.... +06:17:00 Sending to : +06:17:00 ============================================================================ +06:17:00 ============================================================================ +06:17:00 Slot Id : <47> +06:17:00 Transaction Type : RESPONSE +06:17:00 Received From : +06:17:00 ============================================================================ +06:17:00 FNo. Len. Field Value +06:17:00 ============================================================================ +06:17:00 [ 1] [ 4] [0810] +06:17:00 [ 7] [ 10] [0320132849] +06:17:00 [ 11] [ 6] [062849] +06:17:00 [ 37] [ 12] [579060628490] +06:17:00 [ 39] [ 2] [00] +06:17:00 [ 70] [ 3] [810] +06:17:00 ============================================================================ +06:17:00 Calculate Source COMM Id = 6 +06:17:00 ============================================================================ +06:17:00 + + +waiting on router queue for slot.... +06:17:05 ============================================================================ +06:17:05 Slot Id : <58> +06:17:05 Transaction Type : REQUEST +06:17:05 Received From : +06:17:05 ============================================================================ +06:17:05 FNo. Len. Field Value +06:17:05 ============================================================================ +06:17:05 [ 1] [ 4] [0800] +06:17:05 [ 7] [ 10] [0319111613] +06:17:05 [ 11] [ 6] [154842] +06:17:05 [ 70] [ 3] [301] +06:17:05 ============================================================================ +06:17:05 + + +waiting on router queue for slot.... +06:17:05 Sending to : +06:17:05 ============================================================================ +06:17:05 ============================================================================ +06:17:05 Slot Id : <58> +06:17:05 Transaction Type : RESPONSE +06:17:05 Received From : +06:17:05 ============================================================================ +06:17:05 FNo. Len. Field Value +06:17:05 ============================================================================ +06:17:05 [ 1] [ 4] [0810] +06:17:05 [ 7] [ 10] [0319111613] +06:17:05 [ 11] [ 6] [154842] +06:17:05 [ 39] [ 2] [00] +06:17:05 [ 70] [ 3] [301] +06:17:05 ============================================================================ +06:17:05 Calculate Source COMM Id = 2 +06:17:05 ============================================================================ +06:17:05 + + +waiting on router queue for slot.... +06:17:16 ============================================================================ +06:17:16 Slot Id : <78> +06:17:16 Transaction Type : REQUEST +06:17:16 Received From : +06:17:16 ============================================================================ +06:17:16 FNo. Len. Field Value +06:17:16 ============================================================================ +06:17:16 [ 1] [ 4] [0800] +06:17:16 [ 7] [ 10] [0319111624] +06:17:16 [ 11] [ 6] [154843] +06:17:16 [ 70] [ 3] [301] +06:17:16 ============================================================================ +06:17:16 + + +waiting on router queue for slot.... +06:17:16 Sending to : +06:17:16 ============================================================================ +06:17:16 ============================================================================ +06:17:16 Slot Id : <78> +06:17:16 Transaction Type : RESPONSE +06:17:16 Received From : +06:17:16 ============================================================================ +06:17:16 FNo. Len. Field Value +06:17:16 ============================================================================ +06:17:16 [ 1] [ 4] [0810] +06:17:16 [ 7] [ 10] [0319111624] +06:17:16 [ 11] [ 6] [154843] +06:17:16 [ 39] [ 2] [00] +06:17:16 [ 70] [ 3] [301] +06:17:16 ============================================================================ +06:17:16 Calculate Source COMM Id = 2 +06:17:16 ============================================================================ +06:17:16 + + +waiting on router queue for slot.... +06:17:28 ============================================================================ +06:17:28 Slot Id : <54> +06:17:28 Transaction Type : REQUEST +06:17:28 Received From : +06:17:28 ============================================================================ +06:17:28 FNo. Len. Field Value +06:17:28 ============================================================================ +06:17:28 [ 1] [ 4] [0800] +06:17:28 [ 7] [ 10] [0319111635] +06:17:28 [ 11] [ 6] [154844] +06:17:28 [ 70] [ 3] [301] +06:17:28 ============================================================================ +06:17:28 + + +waiting on router queue for slot.... +06:17:28 Sending to : +06:17:28 ============================================================================ +06:17:28 ============================================================================ +06:17:28 Slot Id : <54> +06:17:28 Transaction Type : RESPONSE +06:17:28 Received From : +06:17:28 ============================================================================ +06:17:28 FNo. Len. Field Value +06:17:28 ============================================================================ +06:17:28 [ 1] [ 4] [0810] +06:17:28 [ 7] [ 10] [0319111635] +06:17:28 [ 11] [ 6] [154844] +06:17:28 [ 39] [ 2] [00] +06:17:28 [ 70] [ 3] [301] +06:17:28 ============================================================================ +06:17:28 Calculate Source COMM Id = 2 +06:17:28 ============================================================================ +06:17:28 + + +waiting on router queue for slot.... +06:17:40 ============================================================================ +06:17:40 Slot Id : <81> +06:17:40 Transaction Type : REQUEST +06:17:40 Received From : +06:17:40 ============================================================================ +06:17:40 FNo. Len. Field Value +06:17:40 ============================================================================ +06:17:40 [ 1] [ 4] [0200] +06:17:40 [ 2] [ 16] [1808930600023014] +06:17:40 [ 3] [ 6] [010000] +06:17:40 [ 4] [ 12] [000100000000] +06:17:40 [ 7] [ 10] [0320061532] +06:17:40 [ 11] [ 6] [928805] +06:17:40 [ 12] [ 6] [061532] +06:17:40 [ 13] [ 4] [0320] +06:17:40 [ 15] [ 4] [0320] +06:17:40 [ 18] [ 4] [6011] +06:17:40 [ 19] [ 3] [418] +06:17:40 [ 22] [ 3] [021] +06:17:40 [ 25] [ 2] [01] +06:17:40 [ 28] [ 9] [D00002000] +06:17:40 [ 32] [ 6] [668899] +06:17:40 [ 35] [ 27] [1808930600023014=1803500057] +06:17:40 [ 37] [ 12] [507902317726] +06:17:40 [ 41] [ 8] [03014007] +06:17:40 [ 42] [ 15] [APT ] +06:17:40 [ 43] [ 40] [ SAVANXAY MARKET SAVANXAY ] +06:17:40 [ 49] [ 3] [418] +06:17:40 [ 52] [ 16] [B8E5DDD2671045C2] +06:17:40 ============================================================================ +06:17:40 + + +waiting on router queue for slot.... +06:17:40 Sending to : +06:17:40 ============================================================================ +06:17:40 Sending to : +06:17:40 ============================================================================ +06:17:41 ============================================================================ +06:17:41 Slot Id : <81> +06:17:41 Transaction Type : REQUEST +06:17:41 Received From : +06:17:41 ============================================================================ +06:17:41 FNo. Len. Field Value +06:17:41 ============================================================================ +06:17:41 [ 1] [ 4] [0200] +06:17:41 [ 2] [ 16] [1808930600023014] +06:17:41 [ 3] [ 6] [010000] +06:17:41 [ 4] [ 12] [000100000000] +06:17:41 [ 7] [ 10] [0320061532] +06:17:41 [ 11] [ 6] [928805] +06:17:41 [ 12] [ 6] [061532] +06:17:41 [ 13] [ 4] [0320] +06:17:41 [ 15] [ 4] [0320] +06:17:41 [ 18] [ 4] [6011] +06:17:41 [ 19] [ 3] [418] +06:17:41 [ 22] [ 3] [021] +06:17:41 [ 25] [ 2] [01] +06:17:41 [ 28] [ 9] [D00002000] +06:17:41 [ 32] [ 6] [668899] +06:17:41 [ 35] [ 27] [1808930600023014=1803500057] +06:17:41 [ 37] [ 12] [507902317726] +06:17:41 [ 41] [ 8] [03014007] +06:17:41 [ 42] [ 15] [APT ] +06:17:41 [ 43] [ 40] [ SAVANXAY MARKET SAVANXAY ] +06:17:41 [ 49] [ 3] [418] +06:17:41 [ 52] [ 16] [B8E5DDD2671045C2] +06:17:41 ============================================================================ +06:17:41 + + +waiting on router queue for slot.... +06:17:41 Sending to : +06:17:41 ============================================================================ +06:17:41 ============================================================================ +06:17:41 Slot Id : <81> +06:17:41 Transaction Type : REQUEST +06:17:41 Received From : +06:17:41 ============================================================================ +06:17:41 FNo. Len. Field Value +06:17:41 ============================================================================ +06:17:41 [ 1] [ 4] [0200] +06:17:41 [ 2] [ 16] [1808930600023014] +06:17:41 [ 3] [ 6] [010000] +06:17:41 [ 4] [ 12] [000100000000] +06:17:41 [ 7] [ 10] [0320061532] +06:17:41 [ 11] [ 6] [928805] +06:17:41 [ 12] [ 6] [061532] +06:17:41 [ 13] [ 4] [0320] +06:17:41 [ 15] [ 4] [0320] +06:17:41 [ 18] [ 4] [6011] +06:17:41 [ 19] [ 3] [418] +06:17:41 [ 22] [ 3] [021] +06:17:41 [ 25] [ 2] [01] +06:17:41 [ 28] [ 9] [D00002000] +06:17:41 [ 32] [ 6] [668899] +06:17:41 [ 35] [ 27] [1808930600023014=1803500057] +06:17:41 [ 37] [ 12] [507902317726] +06:17:41 [ 41] [ 8] [03014007] +06:17:41 [ 42] [ 15] [APT ] +06:17:41 [ 43] [ 40] [ SAVANXAY MARKET SAVANXAY ] +06:17:41 [ 49] [ 3] [418] +06:17:41 [ 52] [ 16] [EA294A2DC71F277C] +06:17:41 ============================================================================ +06:17:41 + + +waiting on router queue for slot.... +06:17:41 Sending to : <2> +06:17:41 ============================================================================ +06:17:45 ============================================================================ +06:17:45 Slot Id : <81> +06:17:45 Transaction Type : RESPONSE +06:17:45 Received From : +06:17:45 ============================================================================ +06:17:45 FNo. Len. Field Value +06:17:45 ============================================================================ +06:17:45 [ 1] [ 4] [0210] +06:17:45 [ 2] [ 16] [1808930600023014] +06:17:45 [ 3] [ 6] [010000] +06:17:45 [ 4] [ 12] [000100000000] +06:17:45 [ 6] [ 12] [000100000000] +06:17:45 [ 7] [ 10] [0320061532] +06:17:45 [ 11] [ 6] [928805] +06:17:45 [ 12] [ 6] [061532] +06:17:45 [ 13] [ 4] [0320] +06:17:45 [ 18] [ 4] [6011] +06:17:45 [ 19] [ 3] [418] +06:17:45 [ 22] [ 3] [021] +06:17:45 [ 32] [ 6] [668899] +06:17:45 [ 35] [ 27] [1808930600023014=1803500057] +06:17:45 [ 37] [ 12] [507902317726] +06:17:45 [ 38] [ 6] [928805] +06:17:45 [ 39] [ 2] [00] +06:17:45 [ 41] [ 8] [03014007] +06:17:45 [ 49] [ 3] [418] +06:17:45 [ 52] [ 16] [EA294A2DC71F277C] +06:17:45 [ 54] [ 20] [1001418C000021821800] +06:17:45 ============================================================================ +06:17:45 Sending to : +06:17:45 ============================================================================ +06:17:45 + + +waiting on router queue for slot.... +06:17:46 ============================================================================ +06:17:46 Slot Id : <24> +06:17:46 Transaction Type : REQUEST +06:17:46 Received From : +06:17:46 ============================================================================ +06:17:46 FNo. Len. Field Value +06:17:46 ============================================================================ +06:17:46 [ 1] [ 4] [0800] +06:17:46 [ 2] [ 5] [02531] +06:17:46 [ 3] [ 6] [579068] +06:17:46 [ 7] [ 10] [0319231746] +06:17:46 [ 11] [ 6] [806777] +06:17:46 [ 15] [ 10] [0319231746] +06:17:46 [ 37] [ 11] [57906806777] +06:17:46 [ 70] [ 3] [001] +06:17:46 ============================================================================ +06:17:46 + + +waiting on router queue for slot.... +06:17:46 ============================================================================ +06:17:46 Slot Id : <24> +06:17:46 Transaction Type : RESPONSE +06:17:46 Received From : +06:17:46 ============================================================================ +06:17:46 FNo. Len. Field Value +06:17:46 ============================================================================ +06:17:46 [ 1] [ 4] [0810] +06:17:46 [ 7] [ 10] [0319231746] +06:17:46 [ 11] [ 6] [806777] +06:17:46 [ 15] [ 4] [0319] +06:17:46 [ 37] [ 12] [57906806777] +06:17:46 [ 39] [ 2] [00] +06:17:46 [ 70] [ 3] [001] +06:17:46 ============================================================================ +06:17:46 Sending to : +06:17:46 ============================================================================ +06:17:46 + + +waiting on router queue for slot.... +06:17:47 ============================================================================ +06:17:47 Slot Id : <81> +06:17:47 Transaction Type : RESPONSE +06:17:47 Received From : +06:17:47 ============================================================================ +06:17:47 FNo. Len. Field Value +06:17:47 ============================================================================ +06:17:47 [ 1] [ 4] [0210] +06:17:47 [ 2] [ 16] [1808930600023014] +06:17:47 [ 3] [ 6] [010000] +06:17:47 [ 4] [ 12] [000100000000] +06:17:47 [ 6] [ 12] [000100000000] +06:17:47 [ 7] [ 10] [0320061532] +06:17:47 [ 11] [ 6] [928805] +06:17:47 [ 12] [ 6] [061532] +06:17:47 [ 13] [ 4] [0320] +06:17:47 [ 18] [ 4] [6011] +06:17:47 [ 19] [ 3] [418] +06:17:47 [ 22] [ 3] [021] +06:17:47 [ 32] [ 6] [668899] +06:17:47 [ 35] [ 27] [1808930600023014=1803500057] +06:17:47 [ 37] [ 12] [507902317726] +06:17:47 [ 38] [ 6] [928805] +06:17:47 [ 39] [ 2] [00] +06:17:47 [ 41] [ 8] [03014007] +06:17:47 [ 49] [ 3] [418] +06:17:47 [ 52] [ 16] [EA294A2DC71F277C] +06:17:47 [ 54] [ 20] [1001418C000021821800] +06:17:47 ============================================================================ +06:17:47 Calculate Source COMM Id = 4 +06:17:47 ============================================================================ +06:17:47 + + +waiting on router queue for slot.... +06:17:53 ============================================================================ +06:17:53 Slot Id : <57> +06:17:53 Transaction Type : REQUEST +06:17:53 Received From : +06:17:53 ============================================================================ +06:17:53 FNo. Len. Field Value +06:17:53 ============================================================================ +06:17:53 [ 1] [ 4] [0800] +06:17:53 [ 7] [ 10] [0319111702] +06:17:53 [ 11] [ 6] [154845] +06:17:53 [ 70] [ 3] [301] +06:17:53 ============================================================================ +06:17:53 + + +waiting on router queue for slot.... +06:17:53 Sending to : +06:17:53 ============================================================================ +06:17:53 ============================================================================ +06:17:53 Slot Id : <57> +06:17:53 Transaction Type : RESPONSE +06:17:53 Received From : +06:17:53 ============================================================================ +06:17:53 FNo. Len. Field Value +06:17:53 ============================================================================ +06:17:53 [ 1] [ 4] [0810] +06:17:53 [ 7] [ 10] [0319111702] +06:17:53 [ 11] [ 6] [154845] +06:17:53 [ 39] [ 2] [00] +06:17:53 [ 70] [ 3] [301] +06:17:53 ============================================================================ +06:17:53 Calculate Source COMM Id = 2 +06:17:53 ============================================================================ +06:17:53 + + +waiting on router queue for slot.... +06:18:05 ============================================================================ +06:18:05 Slot Id : <34> +06:18:05 Transaction Type : REQUEST +06:18:05 Received From : +06:18:05 ============================================================================ +06:18:05 FNo. Len. Field Value +06:18:05 ============================================================================ +06:18:05 [ 1] [ 4] [0800] +06:18:05 [ 7] [ 10] [0320132954] +06:18:05 [ 11] [ 6] [062954] +06:18:05 [ 37] [ 12] [57906062954] +06:18:05 [ 70] [ 3] [301] +06:18:05 ============================================================================ +06:18:05 + + +waiting on router queue for slot.... +06:18:05 Sending to : +06:18:05 ============================================================================ +06:18:05 ============================================================================ +06:18:05 Slot Id : <34> +06:18:05 Transaction Type : RESPONSE +06:18:05 Received From : +06:18:05 ============================================================================ +06:18:05 FNo. Len. Field Value +06:18:05 ============================================================================ +06:18:05 [ 1] [ 4] [0810] +06:18:05 [ 7] [ 10] [0320132954] +06:18:05 [ 11] [ 6] [062954] +06:18:05 [ 37] [ 12] [579060629540] +06:18:05 [ 39] [ 2] [00] +06:18:05 [ 70] [ 3] [810] +06:18:05 ============================================================================ +06:18:05 Calculate Source COMM Id = 6 +06:18:05 ============================================================================ +06:18:05 + + +waiting on router queue for slot.... +06:18:07 ============================================================================ +06:18:07 Slot Id : <86> +06:18:07 Transaction Type : REQUEST +06:18:07 Received From : +06:18:07 ============================================================================ +06:18:07 FNo. Len. Field Value +06:18:07 ============================================================================ +06:18:07 [ 1] [ 4] [0200] +06:18:07 [ 2] [ 16] [2206990000005967] +06:18:07 [ 3] [ 6] [010000] +06:18:07 [ 4] [ 12] [000010000000] +06:18:07 [ 7] [ 10] [0320061559] +06:18:07 [ 11] [ 6] [928812] +06:18:07 [ 12] [ 6] [061559] +06:18:07 [ 13] [ 4] [0320] +06:18:07 [ 15] [ 4] [0320] +06:18:07 [ 18] [ 4] [6011] +06:18:07 [ 19] [ 3] [418] +06:18:07 [ 22] [ 3] [021] +06:18:07 [ 25] [ 2] [01] +06:18:07 [ 28] [ 9] [D00002000] +06:18:07 [ 32] [ 6] [668899] +06:18:07 [ 35] [ 32] [2206990000005967=951212614407656] +06:18:07 [ 37] [ 12] [507902407303] +06:18:07 [ 41] [ 8] [03001010] +06:18:07 [ 42] [ 15] [APT ] +06:18:07 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +06:18:07 [ 49] [ 3] [418] +06:18:07 [ 52] [ 16] [7E462EDFA70F547D] +06:18:07 ============================================================================ +06:18:07 + + +waiting on router queue for slot.... +06:18:07 Sending to : +06:18:07 ============================================================================ +06:18:07 Sending to : +06:18:07 ============================================================================ +06:18:08 ============================================================================ +06:18:08 Slot Id : <86> +06:18:08 Transaction Type : REQUEST +06:18:08 Received From : +06:18:08 ============================================================================ +06:18:08 FNo. Len. Field Value +06:18:08 ============================================================================ +06:18:08 [ 1] [ 4] [0200] +06:18:08 [ 2] [ 16] [2206990000005967] +06:18:08 [ 3] [ 6] [010000] +06:18:08 [ 4] [ 12] [000010000000] +06:18:08 [ 7] [ 10] [0320061559] +06:18:08 [ 11] [ 6] [928812] +06:18:08 [ 12] [ 6] [061559] +06:18:08 [ 13] [ 4] [0320] +06:18:08 [ 15] [ 4] [0320] +06:18:08 [ 18] [ 4] [6011] +06:18:08 [ 19] [ 3] [418] +06:18:08 [ 22] [ 3] [021] +06:18:08 [ 25] [ 2] [01] +06:18:08 [ 28] [ 9] [D00002000] +06:18:08 [ 32] [ 6] [668899] +06:18:08 [ 35] [ 32] [2206990000005967=951212614407656] +06:18:08 [ 37] [ 12] [507902407303] +06:18:08 [ 41] [ 8] [03001010] +06:18:08 [ 42] [ 15] [APT ] +06:18:08 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +06:18:08 [ 49] [ 3] [418] +06:18:08 [ 52] [ 16] [7E462EDFA70F547D] +06:18:08 ============================================================================ +06:18:08 + + +waiting on router queue for slot.... +06:18:08 Sending to : +06:18:08 ============================================================================ +06:18:08 ============================================================================ +06:18:08 Slot Id : <86> +06:18:08 Transaction Type : REQUEST +06:18:08 Received From : +06:18:08 ============================================================================ +06:18:08 FNo. Len. Field Value +06:18:08 ============================================================================ +06:18:08 [ 1] [ 4] [0200] +06:18:08 [ 2] [ 16] [2206990000005967] +06:18:08 [ 3] [ 6] [010000] +06:18:08 [ 4] [ 12] [000010000000] +06:18:08 [ 7] [ 10] [0320061559] +06:18:08 [ 11] [ 6] [928812] +06:18:08 [ 12] [ 6] [061559] +06:18:08 [ 13] [ 4] [0320] +06:18:08 [ 15] [ 4] [0320] +06:18:08 [ 18] [ 4] [6011] +06:18:08 [ 19] [ 3] [418] +06:18:08 [ 22] [ 3] [021] +06:18:08 [ 25] [ 2] [01] +06:18:08 [ 28] [ 9] [D00002000] +06:18:08 [ 32] [ 6] [668899] +06:18:08 [ 35] [ 32] [2206990000005967=951212614407656] +06:18:08 [ 37] [ 12] [507902407303] +06:18:08 [ 41] [ 8] [03001010] +06:18:08 [ 42] [ 15] [APT ] +06:18:08 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +06:18:08 [ 49] [ 3] [418] +06:18:08 [ 52] [ 16] [47B24F4802690AC6] +06:18:08 ============================================================================ +06:18:08 + + +waiting on router queue for slot.... +06:18:08 Sending to : <1> +06:18:08 ============================================================================ +06:18:09 ============================================================================ +06:18:09 Slot Id : <42> +06:18:09 Transaction Type : REQUEST +06:18:09 Received From : +06:18:09 ============================================================================ +06:18:09 FNo. Len. Field Value +06:18:09 ============================================================================ +06:18:09 [ 1] [ 4] [0800] +06:18:09 [ 7] [ 10] [0319111717] +06:18:09 [ 11] [ 6] [154846] +06:18:09 [ 70] [ 3] [301] +06:18:09 ============================================================================ +06:18:10 + + +waiting on router queue for slot.... +06:18:10 Sending to : +06:18:10 ============================================================================ +06:18:10 ============================================================================ +06:18:10 Slot Id : <42> +06:18:10 Transaction Type : RESPONSE +06:18:10 Received From : +06:18:10 ============================================================================ +06:18:10 FNo. Len. Field Value +06:18:10 ============================================================================ +06:18:10 [ 1] [ 4] [0810] +06:18:10 [ 7] [ 10] [0319111717] +06:18:10 [ 11] [ 6] [154846] +06:18:10 [ 39] [ 2] [00] +06:18:10 [ 70] [ 3] [301] +06:18:10 ============================================================================ +06:18:10 Calculate Source COMM Id = 2 +06:18:10 ============================================================================ +06:18:10 + + +waiting on router queue for slot.... +06:18:11 ============================================================================ +06:18:11 Slot Id : <86> +06:18:11 Transaction Type : RESPONSE +06:18:11 Received From : +06:18:11 ============================================================================ +06:18:11 FNo. Len. Field Value +06:18:11 ============================================================================ +06:18:11 [ 1] [ 4] [0210] +06:18:11 [ 2] [ 16] [2206990000005967] +06:18:11 [ 3] [ 6] [010000] +06:18:11 [ 4] [ 12] [000010000000] +06:18:11 [ 7] [ 10] [0320061559] +06:18:11 [ 11] [ 6] [928812] +06:18:11 [ 12] [ 6] [061559] +06:18:11 [ 13] [ 4] [0320] +06:18:11 [ 15] [ 4] [0320] +06:18:11 [ 18] [ 4] [6011] +06:18:11 [ 32] [ 6] [668899] +06:18:11 [ 35] [ 32] [2206990000005967=951212614407656] +06:18:11 [ 37] [ 12] [507902407303] +06:18:11 [ 38] [ 6] [634532] +06:18:11 [ 39] [ 2] [00] +06:18:11 [ 41] [ 8] [03001010] +06:18:11 [ 49] [ 3] [418] +06:18:11 [ 54] [ 40] [0001418C0003732410000002418C000373241000] +06:18:11 ============================================================================ +06:18:11 Sending to : +06:18:11 ============================================================================ +06:18:11 + + +waiting on router queue for slot.... +06:18:12 ============================================================================ +06:18:12 Slot Id : <86> +06:18:12 Transaction Type : RESPONSE +06:18:12 Received From : +06:18:12 ============================================================================ +06:18:12 FNo. Len. Field Value +06:18:12 ============================================================================ +06:18:12 [ 1] [ 4] [0210] +06:18:12 [ 2] [ 16] [2206990000005967] +06:18:12 [ 3] [ 6] [010000] +06:18:12 [ 4] [ 12] [000010000000] +06:18:12 [ 7] [ 10] [0320061559] +06:18:12 [ 11] [ 6] [928812] +06:18:12 [ 12] [ 6] [061559] +06:18:12 [ 13] [ 4] [0320] +06:18:12 [ 15] [ 4] [0320] +06:18:12 [ 18] [ 4] [6011] +06:18:12 [ 32] [ 6] [668899] +06:18:12 [ 35] [ 32] [2206990000005967=951212614407656] +06:18:12 [ 37] [ 12] [507902407303] +06:18:12 [ 38] [ 6] [634532] +06:18:12 [ 39] [ 2] [00] +06:18:12 [ 41] [ 8] [03001010] +06:18:12 [ 49] [ 3] [418] +06:18:12 [ 54] [ 40] [0001418C0003732410000002418C000373241000] +06:18:12 ============================================================================ +06:18:12 Calculate Source COMM Id = 4 +06:18:12 ============================================================================ +06:18:12 + + +waiting on router queue for slot.... +06:18:14 ============================================================================ +06:18:14 Slot Id : <88> +06:18:14 Transaction Type : REQUEST +06:18:14 Received From : +06:18:14 ============================================================================ +06:18:14 FNo. Len. Field Value +06:18:14 ============================================================================ +06:18:14 [ 1] [ 4] [0200] +06:18:14 [ 2] [ 16] [6213545000010680] +06:18:14 [ 3] [ 6] [301000] +06:18:14 [ 7] [ 10] [0319231721] +06:18:14 [ 11] [ 6] [266581] +06:18:14 [ 12] [ 6] [061721] +06:18:14 [ 13] [ 4] [0320] +06:18:14 [ 14] [ 4] [4912] +06:18:14 [ 15] [ 4] [0320] +06:18:14 [ 18] [ 4] [6011] +06:18:14 [ 19] [ 3] [418] +06:18:14 [ 22] [ 3] [021] +06:18:14 [ 25] [ 2] [01] +06:18:14 [ 32] [ 6] [180893] +06:18:14 [ 35] [ 32] [6213545000010680=491212011068026] +06:18:14 [ 37] [ 12] [507923266581] +06:18:14 [ 41] [ 8] [0112CPBR] +06:18:14 [ 42] [ 15] [999999 ] +06:18:14 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:18:14 [ 49] [ 3] [418] +06:18:14 [ 52] [ 16] [6D14A13F6EA082E1] +06:18:14 ============================================================================ +06:18:14 + + +waiting on router queue for slot.... +06:18:14 Sending to : +06:18:14 ============================================================================ +06:18:14 Sending to : +06:18:14 ============================================================================ +06:18:14 ============================================================================ +06:18:14 Slot Id : <88> +06:18:14 Transaction Type : REQUEST +06:18:14 Received From : +06:18:14 ============================================================================ +06:18:14 FNo. Len. Field Value +06:18:14 ============================================================================ +06:18:14 [ 1] [ 4] [0200] +06:18:14 [ 2] [ 16] [6213545000010680] +06:18:14 [ 3] [ 6] [301000] +06:18:14 [ 7] [ 10] [0319231721] +06:18:14 [ 11] [ 6] [266581] +06:18:14 [ 12] [ 6] [061721] +06:18:14 [ 13] [ 4] [0320] +06:18:14 [ 14] [ 4] [4912] +06:18:14 [ 15] [ 4] [0320] +06:18:14 [ 18] [ 4] [6011] +06:18:14 [ 19] [ 3] [418] +06:18:14 [ 22] [ 3] [021] +06:18:14 [ 25] [ 2] [01] +06:18:14 [ 32] [ 6] [180893] +06:18:14 [ 35] [ 32] [6213545000010680=491212011068026] +06:18:14 [ 37] [ 12] [507923266581] +06:18:14 [ 41] [ 8] [0112CPBR] +06:18:14 [ 42] [ 15] [999999 ] +06:18:14 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:18:14 [ 49] [ 3] [418] +06:18:14 [ 52] [ 16] [6D14A13F6EA082E1] +06:18:14 ============================================================================ +06:18:14 + + +waiting on router queue for slot.... +06:18:14 Sending to : +06:18:14 ============================================================================ +06:18:14 ============================================================================ +06:18:14 Slot Id : <88> +06:18:14 Transaction Type : REQUEST +06:18:14 Received From : +06:18:14 ============================================================================ +06:18:14 FNo. Len. Field Value +06:18:14 ============================================================================ +06:18:14 [ 1] [ 4] [0200] +06:18:14 [ 2] [ 16] [6213545000010680] +06:18:14 [ 3] [ 6] [301000] +06:18:14 [ 7] [ 10] [0319231721] +06:18:14 [ 11] [ 6] [266581] +06:18:14 [ 12] [ 6] [061721] +06:18:14 [ 13] [ 4] [0320] +06:18:14 [ 14] [ 4] [4912] +06:18:14 [ 15] [ 4] [0320] +06:18:14 [ 18] [ 4] [6011] +06:18:14 [ 19] [ 3] [418] +06:18:14 [ 22] [ 3] [021] +06:18:14 [ 25] [ 2] [01] +06:18:14 [ 32] [ 6] [180893] +06:18:14 [ 35] [ 32] [6213545000010680=491212011068026] +06:18:14 [ 37] [ 12] [507923266581] +06:18:14 [ 41] [ 8] [0112CPBR] +06:18:14 [ 42] [ 15] [999999 ] +06:18:14 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:18:14 [ 49] [ 3] [418] +06:18:14 [ 52] [ 16] [16D20E4742EBF34C] +06:18:14 ============================================================================ +06:18:14 + + +waiting on router queue for slot.... +06:18:14 Sending to : <0> +06:18:14 ============================================================================ +06:18:15 ============================================================================ +06:18:15 Slot Id : <88> +06:18:15 Transaction Type : RESPONSE +06:18:15 Received From : +06:18:15 ============================================================================ +06:18:15 FNo. Len. Field Value +06:18:15 ============================================================================ +06:18:15 [ 1] [ 4] [0210] +06:18:15 [ 2] [ 16] [6213545000010680] +06:18:15 [ 3] [ 6] [301000] +06:18:15 [ 4] [ 12] [000000000000] +06:18:15 [ 7] [ 10] [0319231721] +06:18:15 [ 11] [ 6] [266581] +06:18:15 [ 12] [ 6] [061721] +06:18:15 [ 13] [ 4] [0320] +06:18:15 [ 15] [ 4] [0320] +06:18:15 [ 18] [ 4] [6011] +06:18:15 [ 19] [ 3] [418] +06:18:15 [ 32] [ 6] [180893] +06:18:15 [ 35] [ 32] [6213545000010680=491212011068026] +06:18:15 [ 37] [ 12] [507923266581] +06:18:15 [ 38] [ 6] [094425] +06:18:15 [ 39] [ 2] [00] +06:18:15 [ 41] [ 8] [0112CPBR] +06:18:15 [ 49] [ 3] [418] +06:18:15 [ 54] [ 40] [1001418C0001735226971002418C000173522697] +06:18:15 ============================================================================ +06:18:15 Sending to : +06:18:15 ============================================================================ +06:18:15 + + +waiting on router queue for slot.... +06:18:17 ============================================================================ +06:18:17 Slot Id : <88> +06:18:17 Transaction Type : RESPONSE +06:18:17 Received From : +06:18:17 ============================================================================ +06:18:17 FNo. Len. Field Value +06:18:17 ============================================================================ +06:18:17 [ 1] [ 4] [0210] +06:18:17 [ 2] [ 16] [6213545000010680] +06:18:17 [ 3] [ 6] [301000] +06:18:17 [ 4] [ 12] [000000000000] +06:18:17 [ 7] [ 10] [0319231721] +06:18:17 [ 11] [ 6] [266581] +06:18:17 [ 12] [ 6] [061721] +06:18:17 [ 13] [ 4] [0320] +06:18:17 [ 15] [ 4] [0320] +06:18:17 [ 18] [ 4] [6011] +06:18:17 [ 19] [ 3] [418] +06:18:17 [ 32] [ 6] [180893] +06:18:17 [ 35] [ 32] [6213545000010680=491212011068026] +06:18:17 [ 37] [ 12] [507923266581] +06:18:17 [ 38] [ 6] [094425] +06:18:17 [ 39] [ 2] [00] +06:18:17 [ 41] [ 8] [0112CPBR] +06:18:17 [ 49] [ 3] [418] +06:18:17 [ 54] [ 40] [1001418C0001735226971002418C000173522697] +06:18:17 ============================================================================ +06:18:17 Calculate Source COMM Id = 2 +06:18:17 ============================================================================ +06:18:17 + + +waiting on router queue for slot.... +06:18:30 ============================================================================ +06:18:30 Slot Id : <49> +06:18:30 Transaction Type : REQUEST +06:18:30 Received From : +06:18:30 ============================================================================ +06:18:30 FNo. Len. Field Value +06:18:30 ============================================================================ +06:18:30 [ 1] [ 4] [0800] +06:18:30 [ 7] [ 10] [0319111739] +06:18:30 [ 11] [ 6] [154847] +06:18:30 [ 70] [ 3] [301] +06:18:30 ============================================================================ +06:18:30 + + +waiting on router queue for slot.... +06:18:30 Sending to : +06:18:30 ============================================================================ +06:18:30 ============================================================================ +06:18:30 Slot Id : <49> +06:18:30 Transaction Type : RESPONSE +06:18:30 Received From : +06:18:30 ============================================================================ +06:18:30 FNo. Len. Field Value +06:18:30 ============================================================================ +06:18:30 [ 1] [ 4] [0810] +06:18:30 [ 7] [ 10] [0319111739] +06:18:30 [ 11] [ 6] [154847] +06:18:30 [ 39] [ 2] [00] +06:18:30 [ 70] [ 3] [301] +06:18:30 ============================================================================ +06:18:30 Calculate Source COMM Id = 2 +06:18:30 ============================================================================ +06:18:30 + + +waiting on router queue for slot.... +06:18:41 ============================================================================ +06:18:41 Slot Id : <5> +06:18:41 Transaction Type : REQUEST +06:18:41 Received From : +06:18:41 ============================================================================ +06:18:41 FNo. Len. Field Value +06:18:41 ============================================================================ +06:18:41 [ 1] [ 4] [0800] +06:18:41 [ 7] [ 10] [0319111749] +06:18:41 [ 11] [ 6] [154848] +06:18:41 [ 70] [ 3] [301] +06:18:41 ============================================================================ +06:18:41 + + +waiting on router queue for slot.... +06:18:41 Sending to : +06:18:41 ============================================================================ +06:18:41 ============================================================================ +06:18:41 Slot Id : <5> +06:18:41 Transaction Type : RESPONSE +06:18:41 Received From : +06:18:41 ============================================================================ +06:18:41 FNo. Len. Field Value +06:18:41 ============================================================================ +06:18:41 [ 1] [ 4] [0810] +06:18:41 [ 7] [ 10] [0319111749] +06:18:41 [ 11] [ 6] [154848] +06:18:41 [ 39] [ 2] [00] +06:18:41 [ 70] [ 3] [301] +06:18:41 ============================================================================ +06:18:41 Calculate Source COMM Id = 2 +06:18:41 ============================================================================ +06:18:41 + + +waiting on router queue for slot.... +06:18:48 ============================================================================ +06:18:48 Slot Id : <89> +06:18:48 Transaction Type : REQUEST +06:18:48 Received From : +06:18:48 ============================================================================ +06:18:48 FNo. Len. Field Value +06:18:48 ============================================================================ +06:18:48 [ 1] [ 4] [0800] +06:18:48 [ 2] [ 5] [02531] +06:18:48 [ 3] [ 6] [579068] +06:18:48 [ 7] [ 10] [0319231848] +06:18:48 [ 11] [ 6] [806778] +06:18:48 [ 15] [ 10] [0319231848] +06:18:48 [ 37] [ 11] [57906806778] +06:18:48 [ 70] [ 3] [001] +06:18:48 ============================================================================ +06:18:48 + + +waiting on router queue for slot.... +06:18:48 ============================================================================ +06:18:48 Slot Id : <89> +06:18:48 Transaction Type : RESPONSE +06:18:48 Received From : +06:18:48 ============================================================================ +06:18:48 FNo. Len. Field Value +06:18:48 ============================================================================ +06:18:48 [ 1] [ 4] [0810] +06:18:48 [ 7] [ 10] [0319231848] +06:18:48 [ 11] [ 6] [806778] +06:18:48 [ 15] [ 4] [0319] +06:18:48 [ 37] [ 12] [57906806778] +06:18:48 [ 39] [ 2] [00] +06:18:48 [ 70] [ 3] [001] +06:18:48 ============================================================================ +06:18:48 Sending to : +06:18:48 ============================================================================ +06:18:48 + + +waiting on router queue for slot.... +06:18:50 ============================================================================ +06:18:50 Slot Id : <79> +06:18:50 Transaction Type : REQUEST +06:18:50 Received From : +06:18:50 ============================================================================ +06:18:50 FNo. Len. Field Value +06:18:50 ============================================================================ +06:18:50 [ 1] [ 4] [0200] +06:18:50 [ 2] [ 16] [1808930600023014] +06:18:50 [ 3] [ 6] [010000] +06:18:50 [ 4] [ 12] [000019000000] +06:18:50 [ 7] [ 10] [0320061642] +06:18:50 [ 11] [ 6] [928827] +06:18:50 [ 12] [ 6] [061642] +06:18:50 [ 13] [ 4] [0320] +06:18:50 [ 15] [ 4] [0320] +06:18:50 [ 18] [ 4] [6011] +06:18:50 [ 19] [ 3] [418] +06:18:50 [ 22] [ 3] [021] +06:18:50 [ 25] [ 2] [01] +06:18:50 [ 28] [ 9] [D00002000] +06:18:50 [ 32] [ 6] [668899] +06:18:50 [ 35] [ 27] [1808930600023014=1803500057] +06:18:50 [ 37] [ 12] [507902317728] +06:18:50 [ 41] [ 8] [03014007] +06:18:50 [ 42] [ 15] [APT ] +06:18:50 [ 43] [ 40] [ SAVANXAY MARKET SAVANXAY ] +06:18:50 [ 49] [ 3] [418] +06:18:50 [ 52] [ 16] [B8E5DDD2671045C2] +06:18:50 ============================================================================ +06:18:50 + + +waiting on router queue for slot.... +06:18:50 Sending to : +06:18:50 ============================================================================ +06:18:50 Sending to : +06:18:50 ============================================================================ +06:18:51 ============================================================================ +06:18:51 Slot Id : <79> +06:18:51 Transaction Type : REQUEST +06:18:51 Received From : +06:18:51 ============================================================================ +06:18:51 FNo. Len. Field Value +06:18:51 ============================================================================ +06:18:51 [ 1] [ 4] [0200] +06:18:51 [ 2] [ 16] [1808930600023014] +06:18:51 [ 3] [ 6] [010000] +06:18:51 [ 4] [ 12] [000019000000] +06:18:51 [ 7] [ 10] [0320061642] +06:18:51 [ 11] [ 6] [928827] +06:18:51 [ 12] [ 6] [061642] +06:18:51 [ 13] [ 4] [0320] +06:18:51 [ 15] [ 4] [0320] +06:18:51 [ 18] [ 4] [6011] +06:18:51 [ 19] [ 3] [418] +06:18:51 [ 22] [ 3] [021] +06:18:51 [ 25] [ 2] [01] +06:18:51 [ 28] [ 9] [D00002000] +06:18:51 [ 32] [ 6] [668899] +06:18:51 [ 35] [ 27] [1808930600023014=1803500057] +06:18:51 [ 37] [ 12] [507902317728] +06:18:51 [ 41] [ 8] [03014007] +06:18:51 [ 42] [ 15] [APT ] +06:18:51 [ 43] [ 40] [ SAVANXAY MARKET SAVANXAY ] +06:18:51 [ 49] [ 3] [418] +06:18:51 [ 52] [ 16] [B8E5DDD2671045C2] +06:18:51 ============================================================================ +06:18:51 + + +waiting on router queue for slot.... +06:18:51 Sending to : +06:18:51 ============================================================================ +06:18:51 ============================================================================ +06:18:51 Slot Id : <79> +06:18:51 Transaction Type : REQUEST +06:18:51 Received From : +06:18:51 ============================================================================ +06:18:51 FNo. Len. Field Value +06:18:51 ============================================================================ +06:18:51 [ 1] [ 4] [0200] +06:18:51 [ 2] [ 16] [1808930600023014] +06:18:51 [ 3] [ 6] [010000] +06:18:51 [ 4] [ 12] [000019000000] +06:18:51 [ 7] [ 10] [0320061642] +06:18:51 [ 11] [ 6] [928827] +06:18:51 [ 12] [ 6] [061642] +06:18:51 [ 13] [ 4] [0320] +06:18:51 [ 15] [ 4] [0320] +06:18:51 [ 18] [ 4] [6011] +06:18:51 [ 19] [ 3] [418] +06:18:51 [ 22] [ 3] [021] +06:18:51 [ 25] [ 2] [01] +06:18:51 [ 28] [ 9] [D00002000] +06:18:51 [ 32] [ 6] [668899] +06:18:51 [ 35] [ 27] [1808930600023014=1803500057] +06:18:51 [ 37] [ 12] [507902317728] +06:18:51 [ 41] [ 8] [03014007] +06:18:51 [ 42] [ 15] [APT ] +06:18:51 [ 43] [ 40] [ SAVANXAY MARKET SAVANXAY ] +06:18:51 [ 49] [ 3] [418] +06:18:51 [ 52] [ 16] [EA294A2DC71F277C] +06:18:51 ============================================================================ +06:18:51 + + +waiting on router queue for slot.... +06:18:51 Sending to : <2> +06:18:51 ============================================================================ +06:18:51 ============================================================================ +06:18:51 Slot Id : <59> +06:18:51 Transaction Type : REQUEST +06:18:51 Received From : +06:18:51 ============================================================================ +06:18:51 FNo. Len. Field Value +06:18:51 ============================================================================ +06:18:51 [ 1] [ 4] [0200] +06:18:51 [ 2] [ 16] [2206990000005967] +06:18:51 [ 3] [ 6] [301000] +06:18:51 [ 4] [ 12] [000000000000] +06:18:51 [ 7] [ 10] [0320061643] +06:18:51 [ 11] [ 6] [928828] +06:18:51 [ 12] [ 6] [061643] +06:18:51 [ 13] [ 4] [0320] +06:18:51 [ 15] [ 4] [0320] +06:18:51 [ 18] [ 4] [6011] +06:18:51 [ 19] [ 3] [418] +06:18:51 [ 22] [ 3] [021] +06:18:51 [ 25] [ 2] [01] +06:18:51 [ 28] [ 9] [D00000000] +06:18:51 [ 32] [ 6] [668899] +06:18:51 [ 35] [ 32] [2206990000005967=951212614407656] +06:18:51 [ 37] [ 12] [507902407305] +06:18:51 [ 41] [ 8] [03001010] +06:18:51 [ 42] [ 15] [APT ] +06:18:51 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +06:18:51 [ 49] [ 3] [418] +06:18:51 [ 52] [ 16] [7E462EDFA70F547D] +06:18:51 ============================================================================ +06:18:51 + + +waiting on router queue for slot.... +06:18:51 Sending to : +06:18:51 ============================================================================ +06:18:51 Sending to : +06:18:51 ============================================================================ +06:18:52 ============================================================================ +06:18:52 Slot Id : <59> +06:18:52 Transaction Type : REQUEST +06:18:52 Received From : +06:18:52 ============================================================================ +06:18:52 FNo. Len. Field Value +06:18:52 ============================================================================ +06:18:52 [ 1] [ 4] [0200] +06:18:52 [ 2] [ 16] [2206990000005967] +06:18:52 [ 3] [ 6] [301000] +06:18:52 [ 4] [ 12] [000000000000] +06:18:52 [ 7] [ 10] [0320061643] +06:18:52 [ 11] [ 6] [928828] +06:18:52 [ 12] [ 6] [061643] +06:18:52 [ 13] [ 4] [0320] +06:18:52 [ 15] [ 4] [0320] +06:18:52 [ 18] [ 4] [6011] +06:18:52 [ 19] [ 3] [418] +06:18:52 [ 22] [ 3] [021] +06:18:52 [ 25] [ 2] [01] +06:18:52 [ 28] [ 9] [D00000000] +06:18:52 [ 32] [ 6] [668899] +06:18:52 [ 35] [ 32] [2206990000005967=951212614407656] +06:18:52 [ 37] [ 12] [507902407305] +06:18:52 [ 41] [ 8] [03001010] +06:18:52 [ 42] [ 15] [APT ] +06:18:52 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +06:18:52 [ 49] [ 3] [418] +06:18:52 [ 52] [ 16] [7E462EDFA70F547D] +06:18:52 ============================================================================ +06:18:52 + + +waiting on router queue for slot.... +06:18:52 Sending to : +06:18:52 ============================================================================ +06:18:52 ============================================================================ +06:18:52 Slot Id : <59> +06:18:52 Transaction Type : REQUEST +06:18:52 Received From : +06:18:52 ============================================================================ +06:18:52 FNo. Len. Field Value +06:18:52 ============================================================================ +06:18:52 [ 1] [ 4] [0200] +06:18:52 [ 2] [ 16] [2206990000005967] +06:18:52 [ 3] [ 6] [301000] +06:18:52 [ 4] [ 12] [000000000000] +06:18:52 [ 7] [ 10] [0320061643] +06:18:52 [ 11] [ 6] [928828] +06:18:52 [ 12] [ 6] [061643] +06:18:52 [ 13] [ 4] [0320] +06:18:52 [ 15] [ 4] [0320] +06:18:52 [ 18] [ 4] [6011] +06:18:52 [ 19] [ 3] [418] +06:18:52 [ 22] [ 3] [021] +06:18:52 [ 25] [ 2] [01] +06:18:52 [ 28] [ 9] [D00000000] +06:18:52 [ 32] [ 6] [668899] +06:18:52 [ 35] [ 32] [2206990000005967=951212614407656] +06:18:52 [ 37] [ 12] [507902407305] +06:18:52 [ 41] [ 8] [03001010] +06:18:52 [ 42] [ 15] [APT ] +06:18:52 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +06:18:52 [ 49] [ 3] [418] +06:18:52 [ 52] [ 16] [47B24F4802690AC6] +06:18:52 ============================================================================ +06:18:52 + + +waiting on router queue for slot.... +06:18:52 Sending to : <1> +06:18:52 ============================================================================ +06:18:53 ============================================================================ +06:18:53 Slot Id : <59> +06:18:53 Transaction Type : RESPONSE +06:18:53 Received From : +06:18:53 ============================================================================ +06:18:53 FNo. Len. Field Value +06:18:53 ============================================================================ +06:18:53 [ 1] [ 4] [0210] +06:18:53 [ 2] [ 16] [2206990000005967] +06:18:53 [ 3] [ 6] [301000] +06:18:53 [ 4] [ 12] [000000000000] +06:18:53 [ 7] [ 10] [0320061643] +06:18:53 [ 11] [ 6] [928828] +06:18:53 [ 12] [ 6] [061643] +06:18:53 [ 13] [ 4] [0320] +06:18:53 [ 15] [ 4] [0320] +06:18:53 [ 18] [ 4] [6011] +06:18:53 [ 32] [ 6] [668899] +06:18:53 [ 35] [ 32] [2206990000005967=951212614407656] +06:18:53 [ 37] [ 12] [507902407305] +06:18:53 [ 38] [ 6] [638695] +06:18:53 [ 39] [ 2] [00] +06:18:53 [ 41] [ 8] [03001010] +06:18:53 [ 49] [ 3] [418] +06:18:53 [ 54] [ 40] [1001418C0003732410001002418C000373241000] +06:18:53 ============================================================================ +06:18:53 Sending to : +06:18:53 ============================================================================ +06:18:53 + + +waiting on router queue for slot.... +06:18:55 ============================================================================ +06:18:55 Slot Id : <59> +06:18:55 Transaction Type : RESPONSE +06:18:55 Received From : +06:18:55 ============================================================================ +06:18:55 FNo. Len. Field Value +06:18:55 ============================================================================ +06:18:55 [ 1] [ 4] [0210] +06:18:55 [ 2] [ 16] [2206990000005967] +06:18:55 [ 3] [ 6] [301000] +06:18:55 [ 4] [ 12] [000000000000] +06:18:55 [ 7] [ 10] [0320061643] +06:18:55 [ 11] [ 6] [928828] +06:18:55 [ 12] [ 6] [061643] +06:18:55 [ 13] [ 4] [0320] +06:18:55 [ 15] [ 4] [0320] +06:18:55 [ 18] [ 4] [6011] +06:18:55 [ 32] [ 6] [668899] +06:18:55 [ 35] [ 32] [2206990000005967=951212614407656] +06:18:55 [ 37] [ 12] [507902407305] +06:18:55 [ 38] [ 6] [638695] +06:18:55 [ 39] [ 2] [00] +06:18:55 [ 41] [ 8] [03001010] +06:18:55 [ 49] [ 3] [418] +06:18:55 [ 54] [ 40] [1001418C0003732410001002418C000373241000] +06:18:55 ============================================================================ +06:18:55 Calculate Source COMM Id = 4 +06:18:55 ============================================================================ +06:18:55 + + +waiting on router queue for slot.... +06:18:58 ============================================================================ +06:18:58 Slot Id : <79> +06:18:58 Transaction Type : RESPONSE +06:18:58 Received From : +06:18:58 ============================================================================ +06:18:58 FNo. Len. Field Value +06:18:58 ============================================================================ +06:18:58 [ 1] [ 4] [0210] +06:18:58 [ 2] [ 16] [1808930600023014] +06:18:58 [ 3] [ 6] [010000] +06:18:58 [ 4] [ 12] [000019000000] +06:18:58 [ 6] [ 12] [000019000000] +06:18:58 [ 7] [ 10] [0320061642] +06:18:58 [ 11] [ 6] [928827] +06:18:58 [ 12] [ 6] [061642] +06:18:58 [ 13] [ 4] [0320] +06:18:58 [ 18] [ 4] [6011] +06:18:58 [ 19] [ 3] [418] +06:18:58 [ 22] [ 3] [021] +06:18:58 [ 32] [ 6] [668899] +06:18:58 [ 35] [ 27] [1808930600023014=1803500057] +06:18:58 [ 37] [ 12] [507902317728] +06:18:58 [ 38] [ 6] [928827] +06:18:58 [ 39] [ 2] [00] +06:18:58 [ 41] [ 8] [03014007] +06:18:58 [ 49] [ 3] [418] +06:18:58 [ 52] [ 16] [EA294A2DC71F277C] +06:18:58 [ 54] [ 20] [1001418C000002621800] +06:18:58 ============================================================================ +06:18:58 Sending to : +06:18:58 ============================================================================ +06:18:58 + + +waiting on router queue for slot.... +06:18:59 ============================================================================ +06:18:59 Slot Id : <79> +06:18:59 Transaction Type : RESPONSE +06:18:59 Received From : +06:18:59 ============================================================================ +06:18:59 FNo. Len. Field Value +06:18:59 ============================================================================ +06:18:59 [ 1] [ 4] [0210] +06:18:59 [ 2] [ 16] [1808930600023014] +06:18:59 [ 3] [ 6] [010000] +06:18:59 [ 4] [ 12] [000019000000] +06:18:59 [ 6] [ 12] [000019000000] +06:18:59 [ 7] [ 10] [0320061642] +06:18:59 [ 11] [ 6] [928827] +06:18:59 [ 12] [ 6] [061642] +06:18:59 [ 13] [ 4] [0320] +06:18:59 [ 18] [ 4] [6011] +06:18:59 [ 19] [ 3] [418] +06:18:59 [ 22] [ 3] [021] +06:18:59 [ 32] [ 6] [668899] +06:18:59 [ 35] [ 27] [1808930600023014=1803500057] +06:18:59 [ 37] [ 12] [507902317728] +06:18:59 [ 38] [ 6] [928827] +06:18:59 [ 39] [ 2] [00] +06:18:59 [ 41] [ 8] [03014007] +06:18:59 [ 49] [ 3] [418] +06:18:59 [ 52] [ 16] [EA294A2DC71F277C] +06:18:59 [ 54] [ 20] [1001418C000002621800] +06:18:59 ============================================================================ +06:18:59 Calculate Source COMM Id = 4 +06:18:59 ============================================================================ +06:18:59 + + +waiting on router queue for slot.... +06:19:02 ============================================================================ +06:19:02 Slot Id : <84> +06:19:02 Transaction Type : REQUEST +06:19:02 Received From : +06:19:02 ============================================================================ +06:19:02 FNo. Len. Field Value +06:19:02 ============================================================================ +06:19:02 [ 1] [ 4] [0800] +06:19:02 [ 7] [ 10] [0319111811] +06:19:02 [ 11] [ 6] [154849] +06:19:02 [ 70] [ 3] [301] +06:19:02 ============================================================================ +06:19:02 + + +waiting on router queue for slot.... +06:19:02 Sending to : +06:19:02 ============================================================================ +06:19:02 ============================================================================ +06:19:02 Slot Id : <84> +06:19:02 Transaction Type : RESPONSE +06:19:02 Received From : +06:19:02 ============================================================================ +06:19:02 FNo. Len. Field Value +06:19:02 ============================================================================ +06:19:02 [ 1] [ 4] [0810] +06:19:02 [ 7] [ 10] [0319111811] +06:19:02 [ 11] [ 6] [154849] +06:19:02 [ 39] [ 2] [00] +06:19:02 [ 70] [ 3] [301] +06:19:02 ============================================================================ +06:19:02 Calculate Source COMM Id = 2 +06:19:02 ============================================================================ +06:19:02 + + +waiting on router queue for slot.... +06:19:10 ============================================================================ +06:19:10 Slot Id : <62> +06:19:10 Transaction Type : REQUEST +06:19:10 Received From : +06:19:10 ============================================================================ +06:19:10 FNo. Len. Field Value +06:19:10 ============================================================================ +06:19:10 [ 1] [ 4] [0800] +06:19:10 [ 7] [ 10] [0320133059] +06:19:10 [ 11] [ 6] [063059] +06:19:10 [ 37] [ 12] [57906063059] +06:19:10 [ 70] [ 3] [301] +06:19:10 ============================================================================ +06:19:10 + + +waiting on router queue for slot.... +06:19:10 Sending to : +06:19:10 ============================================================================ +06:19:10 ============================================================================ +06:19:10 Slot Id : <62> +06:19:10 Transaction Type : RESPONSE +06:19:10 Received From : +06:19:10 ============================================================================ +06:19:10 FNo. Len. Field Value +06:19:10 ============================================================================ +06:19:10 [ 1] [ 4] [0810] +06:19:10 [ 7] [ 10] [0320133059] +06:19:10 [ 11] [ 6] [063059] +06:19:10 [ 37] [ 12] [579060630590] +06:19:10 [ 39] [ 2] [00] +06:19:10 [ 70] [ 3] [810] +06:19:10 ============================================================================ +06:19:10 Calculate Source COMM Id = 6 +06:19:10 ============================================================================ +06:19:10 + + +waiting on router queue for slot.... +06:19:13 ============================================================================ +06:19:13 Slot Id : <67> +06:19:13 Transaction Type : REQUEST +06:19:13 Received From : +06:19:13 ============================================================================ +06:19:13 FNo. Len. Field Value +06:19:13 ============================================================================ +06:19:13 [ 1] [ 4] [0800] +06:19:13 [ 7] [ 10] [0319111821] +06:19:13 [ 11] [ 6] [154850] +06:19:13 [ 70] [ 3] [301] +06:19:13 ============================================================================ +06:19:13 + + +waiting on router queue for slot.... +06:19:13 Sending to : +06:19:13 ============================================================================ +06:19:13 ============================================================================ +06:19:13 Slot Id : <67> +06:19:13 Transaction Type : RESPONSE +06:19:13 Received From : +06:19:13 ============================================================================ +06:19:13 FNo. Len. Field Value +06:19:13 ============================================================================ +06:19:13 [ 1] [ 4] [0810] +06:19:13 [ 7] [ 10] [0319111821] +06:19:13 [ 11] [ 6] [154850] +06:19:13 [ 39] [ 2] [00] +06:19:13 [ 70] [ 3] [301] +06:19:13 ============================================================================ +06:19:13 Calculate Source COMM Id = 2 +06:19:13 ============================================================================ +06:19:13 + + +waiting on router queue for slot.... +06:19:14 ============================================================================ +06:19:14 Slot Id : <99> +06:19:14 Transaction Type : REQUEST +06:19:14 Received From : +06:19:14 ============================================================================ +06:19:14 FNo. Len. Field Value +06:19:14 ============================================================================ +06:19:14 [ 1] [ 4] [0200] +06:19:14 [ 2] [ 16] [6213545000010680] +06:19:14 [ 3] [ 6] [011000] +06:19:14 [ 4] [ 12] [000020000000] +06:19:14 [ 7] [ 10] [0319231823] +06:19:14 [ 11] [ 6] [266583] +06:19:14 [ 12] [ 6] [061823] +06:19:14 [ 13] [ 4] [0320] +06:19:14 [ 14] [ 4] [4912] +06:19:14 [ 15] [ 4] [0320] +06:19:14 [ 18] [ 4] [6011] +06:19:14 [ 19] [ 3] [418] +06:19:14 [ 22] [ 3] [021] +06:19:14 [ 25] [ 2] [01] +06:19:14 [ 28] [ 9] [D00002000] +06:19:14 [ 32] [ 6] [180893] +06:19:14 [ 35] [ 32] [6213545000010680=491212011068026] +06:19:14 [ 37] [ 12] [507923266583] +06:19:14 [ 41] [ 8] [0112CPBR] +06:19:14 [ 42] [ 15] [999999 ] +06:19:14 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:19:14 [ 49] [ 3] [418] +06:19:14 [ 52] [ 16] [6D14A13F6EA082E1] +06:19:14 ============================================================================ +06:19:14 + + +waiting on router queue for slot.... +06:19:14 Sending to : +06:19:14 ============================================================================ +06:19:14 Sending to : +06:19:14 ============================================================================ +06:19:15 ============================================================================ +06:19:15 Slot Id : <99> +06:19:15 Transaction Type : REQUEST +06:19:15 Received From : +06:19:15 ============================================================================ +06:19:15 FNo. Len. Field Value +06:19:15 ============================================================================ +06:19:15 [ 1] [ 4] [0200] +06:19:15 [ 2] [ 16] [6213545000010680] +06:19:15 [ 3] [ 6] [011000] +06:19:15 [ 4] [ 12] [000020000000] +06:19:15 [ 7] [ 10] [0319231823] +06:19:15 [ 11] [ 6] [266583] +06:19:15 [ 12] [ 6] [061823] +06:19:15 [ 13] [ 4] [0320] +06:19:15 [ 14] [ 4] [4912] +06:19:15 [ 15] [ 4] [0320] +06:19:15 [ 18] [ 4] [6011] +06:19:15 [ 19] [ 3] [418] +06:19:15 [ 22] [ 3] [021] +06:19:15 [ 25] [ 2] [01] +06:19:15 [ 28] [ 9] [D00002000] +06:19:15 [ 32] [ 6] [180893] +06:19:15 [ 35] [ 32] [6213545000010680=491212011068026] +06:19:15 [ 37] [ 12] [507923266583] +06:19:15 [ 41] [ 8] [0112CPBR] +06:19:15 [ 42] [ 15] [999999 ] +06:19:15 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:19:15 [ 49] [ 3] [418] +06:19:15 [ 52] [ 16] [6D14A13F6EA082E1] +06:19:15 ============================================================================ +06:19:15 + + +waiting on router queue for slot.... +06:19:15 Sending to : +06:19:15 ============================================================================ +06:19:15 ============================================================================ +06:19:15 Slot Id : <99> +06:19:15 Transaction Type : REQUEST +06:19:15 Received From : +06:19:15 ============================================================================ +06:19:15 FNo. Len. Field Value +06:19:15 ============================================================================ +06:19:15 [ 1] [ 4] [0200] +06:19:15 [ 2] [ 16] [6213545000010680] +06:19:15 [ 3] [ 6] [011000] +06:19:15 [ 4] [ 12] [000020000000] +06:19:15 [ 7] [ 10] [0319231823] +06:19:15 [ 11] [ 6] [266583] +06:19:15 [ 12] [ 6] [061823] +06:19:15 [ 13] [ 4] [0320] +06:19:15 [ 14] [ 4] [4912] +06:19:15 [ 15] [ 4] [0320] +06:19:15 [ 18] [ 4] [6011] +06:19:15 [ 19] [ 3] [418] +06:19:15 [ 22] [ 3] [021] +06:19:15 [ 25] [ 2] [01] +06:19:15 [ 28] [ 9] [D00002000] +06:19:15 [ 32] [ 6] [180893] +06:19:15 [ 35] [ 32] [6213545000010680=491212011068026] +06:19:15 [ 37] [ 12] [507923266583] +06:19:15 [ 41] [ 8] [0112CPBR] +06:19:15 [ 42] [ 15] [999999 ] +06:19:15 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:19:15 [ 49] [ 3] [418] +06:19:15 [ 52] [ 16] [16D20E4742EBF34C] +06:19:15 ============================================================================ +06:19:15 + + +waiting on router queue for slot.... +06:19:15 Sending to : <0> +06:19:15 ============================================================================ +06:19:15 ============================================================================ +06:19:15 Slot Id : <99> +06:19:15 Transaction Type : RESPONSE +06:19:15 Received From : +06:19:15 ============================================================================ +06:19:15 FNo. Len. Field Value +06:19:15 ============================================================================ +06:19:15 [ 1] [ 4] [0210] +06:19:15 [ 2] [ 16] [6213545000010680] +06:19:15 [ 3] [ 6] [011000] +06:19:15 [ 4] [ 12] [000020000000] +06:19:15 [ 7] [ 10] [0319231823] +06:19:15 [ 11] [ 6] [266583] +06:19:15 [ 12] [ 6] [061823] +06:19:15 [ 13] [ 4] [0320] +06:19:15 [ 15] [ 4] [0320] +06:19:15 [ 18] [ 4] [6011] +06:19:15 [ 19] [ 3] [418] +06:19:15 [ 32] [ 6] [180893] +06:19:15 [ 35] [ 32] [6213545000010680=491212011068026] +06:19:15 [ 37] [ 12] [507923266583] +06:19:15 [ 38] [ 6] [740254] +06:19:15 [ 39] [ 2] [00] +06:19:15 [ 41] [ 8] [0112CPBR] +06:19:15 [ 49] [ 3] [418] +06:19:15 [ 54] [ 40] [1001418C0001533226971002418C000153322697] +06:19:15 ============================================================================ +06:19:15 Sending to : +06:19:15 ============================================================================ +06:19:15 + + +waiting on router queue for slot.... +06:19:17 ============================================================================ +06:19:17 Slot Id : <99> +06:19:17 Transaction Type : RESPONSE +06:19:17 Received From : +06:19:17 ============================================================================ +06:19:17 FNo. Len. Field Value +06:19:17 ============================================================================ +06:19:17 [ 1] [ 4] [0210] +06:19:17 [ 2] [ 16] [6213545000010680] +06:19:17 [ 3] [ 6] [011000] +06:19:17 [ 4] [ 12] [000020000000] +06:19:17 [ 7] [ 10] [0319231823] +06:19:17 [ 11] [ 6] [266583] +06:19:17 [ 12] [ 6] [061823] +06:19:17 [ 13] [ 4] [0320] +06:19:17 [ 15] [ 4] [0320] +06:19:17 [ 18] [ 4] [6011] +06:19:17 [ 19] [ 3] [418] +06:19:17 [ 32] [ 6] [180893] +06:19:17 [ 35] [ 32] [6213545000010680=491212011068026] +06:19:17 [ 37] [ 12] [507923266583] +06:19:17 [ 38] [ 6] [740254] +06:19:17 [ 39] [ 2] [00] +06:19:17 [ 41] [ 8] [0112CPBR] +06:19:17 [ 49] [ 3] [418] +06:19:17 [ 54] [ 40] [1001418C0001533226971002418C000153322697] +06:19:17 ============================================================================ +06:19:17 Calculate Source COMM Id = 2 +06:19:17 ============================================================================ +06:19:17 + + +waiting on router queue for slot.... +06:19:29 ============================================================================ +06:19:29 Slot Id : <39> +06:19:29 Transaction Type : REQUEST +06:19:29 Received From : +06:19:29 ============================================================================ +06:19:29 FNo. Len. Field Value +06:19:29 ============================================================================ +06:19:29 [ 1] [ 4] [0800] +06:19:29 [ 7] [ 10] [0319111838] +06:19:29 [ 11] [ 6] [154851] +06:19:29 [ 70] [ 3] [301] +06:19:29 ============================================================================ +06:19:29 + + +waiting on router queue for slot.... +06:19:29 Sending to : +06:19:29 ============================================================================ +06:19:29 ============================================================================ +06:19:29 Slot Id : <39> +06:19:29 Transaction Type : RESPONSE +06:19:29 Received From : +06:19:29 ============================================================================ +06:19:29 FNo. Len. Field Value +06:19:29 ============================================================================ +06:19:29 [ 1] [ 4] [0810] +06:19:29 [ 7] [ 10] [0319111838] +06:19:29 [ 11] [ 6] [154851] +06:19:29 [ 39] [ 2] [00] +06:19:29 [ 70] [ 3] [301] +06:19:29 ============================================================================ +06:19:29 Calculate Source COMM Id = 2 +06:19:29 ============================================================================ +06:19:29 + + +waiting on router queue for slot.... +06:19:45 ============================================================================ +06:19:45 Slot Id : <64> +06:19:45 Transaction Type : REQUEST +06:19:45 Received From : +06:19:45 ============================================================================ +06:19:45 FNo. Len. Field Value +06:19:45 ============================================================================ +06:19:45 [ 1] [ 4] [0800] +06:19:45 [ 7] [ 10] [0319111853] +06:19:45 [ 11] [ 6] [154852] +06:19:45 [ 70] [ 3] [301] +06:19:45 ============================================================================ +06:19:45 + + +waiting on router queue for slot.... +06:19:45 Sending to : +06:19:45 ============================================================================ +06:19:45 ============================================================================ +06:19:45 Slot Id : <64> +06:19:45 Transaction Type : RESPONSE +06:19:45 Received From : +06:19:45 ============================================================================ +06:19:45 FNo. Len. Field Value +06:19:45 ============================================================================ +06:19:45 [ 1] [ 4] [0810] +06:19:45 [ 7] [ 10] [0319111853] +06:19:45 [ 11] [ 6] [154852] +06:19:45 [ 39] [ 2] [00] +06:19:45 [ 70] [ 3] [301] +06:19:45 ============================================================================ +06:19:45 Calculate Source COMM Id = 2 +06:19:45 ============================================================================ +06:19:45 + + +waiting on router queue for slot.... +06:19:50 ============================================================================ +06:19:50 Slot Id : <51> +06:19:50 Transaction Type : REQUEST +06:19:50 Received From : +06:19:50 ============================================================================ +06:19:50 FNo. Len. Field Value +06:19:50 ============================================================================ +06:19:50 [ 1] [ 4] [0800] +06:19:50 [ 2] [ 5] [02531] +06:19:50 [ 3] [ 6] [579068] +06:19:50 [ 7] [ 10] [0319231950] +06:19:50 [ 11] [ 6] [806779] +06:19:50 [ 15] [ 10] [0319231950] +06:19:50 [ 37] [ 11] [57906806779] +06:19:50 [ 70] [ 3] [001] +06:19:50 ============================================================================ +06:19:50 + + +waiting on router queue for slot.... +06:19:50 ============================================================================ +06:19:50 Slot Id : <51> +06:19:50 Transaction Type : RESPONSE +06:19:50 Received From : +06:19:50 ============================================================================ +06:19:50 FNo. Len. Field Value +06:19:50 ============================================================================ +06:19:50 [ 1] [ 4] [0810] +06:19:50 [ 7] [ 10] [0319231950] +06:19:50 [ 11] [ 6] [806779] +06:19:50 [ 15] [ 4] [0319] +06:19:50 [ 37] [ 12] [57906806779] +06:19:50 [ 39] [ 2] [00] +06:19:50 [ 70] [ 3] [001] +06:19:50 ============================================================================ +06:19:50 Sending to : +06:19:50 ============================================================================ +06:19:50 + + +waiting on router queue for slot.... +06:19:54 ============================================================================ +06:19:54 Slot Id : <82> +06:19:54 Transaction Type : REQUEST +06:19:54 Received From : +06:19:54 ============================================================================ +06:19:54 FNo. Len. Field Value +06:19:54 ============================================================================ +06:19:54 [ 1] [ 4] [0800] +06:19:54 [ 7] [ 10] [0319232742] +06:19:54 [ 11] [ 6] [072746] +06:19:54 [ 37] [ 12] [57906072746] +06:19:54 [ 70] [ 3] [301] +06:19:54 ============================================================================ +06:19:54 + + +waiting on router queue for slot.... +06:19:54 Sending to : +06:19:54 ============================================================================ +06:19:54 ============================================================================ +06:19:54 Slot Id : <82> +06:19:54 Transaction Type : RESPONSE +06:19:54 Received From : +06:19:54 ============================================================================ +06:19:54 FNo. Len. Field Value +06:19:54 ============================================================================ +06:19:54 [ 1] [ 4] [0810] +06:19:54 [ 7] [ 10] [0319232742] +06:19:54 [ 11] [ 6] [072746] +06:19:54 [ 37] [ 12] [579060727460] +06:19:54 [ 39] [ 2] [00] +06:19:54 [ 70] [ 3] [810] +06:19:54 ============================================================================ +06:19:54 Calculate Source COMM Id = 1 +06:19:54 ============================================================================ +06:19:54 + + +waiting on router queue for slot.... +06:19:56 ============================================================================ +06:19:56 Slot Id : <93> +06:19:56 Transaction Type : REQUEST +06:19:56 Received From : +06:19:56 ============================================================================ +06:19:56 FNo. Len. Field Value +06:19:56 ============================================================================ +06:19:56 [ 1] [ 4] [0800] +06:19:56 [ 7] [ 10] [0319111904] +06:19:56 [ 11] [ 6] [154853] +06:19:56 [ 70] [ 3] [301] +06:19:56 ============================================================================ +06:19:56 + + +waiting on router queue for slot.... +06:19:56 Sending to : +06:19:56 ============================================================================ +06:19:56 ============================================================================ +06:19:56 Slot Id : <93> +06:19:56 Transaction Type : RESPONSE +06:19:56 Received From : +06:19:56 ============================================================================ +06:19:56 FNo. Len. Field Value +06:19:56 ============================================================================ +06:19:56 [ 1] [ 4] [0810] +06:19:56 [ 7] [ 10] [0319111904] +06:19:56 [ 11] [ 6] [154853] +06:19:56 [ 39] [ 2] [00] +06:19:56 [ 70] [ 3] [301] +06:19:56 ============================================================================ +06:19:56 Calculate Source COMM Id = 2 +06:19:56 ============================================================================ +06:19:56 + + +waiting on router queue for slot.... +06:20:02 ============================================================================ +06:20:02 Slot Id : <56> +06:20:02 Transaction Type : REQUEST +06:20:02 Received From : +06:20:02 ============================================================================ +06:20:02 FNo. Len. Field Value +06:20:02 ============================================================================ +06:20:02 [ 1] [ 4] [0200] +06:20:02 [ 2] [ 16] [6688990106481102] +06:20:02 [ 3] [ 6] [010000] +06:20:02 [ 4] [ 12] [000005000000] +06:20:02 [ 7] [ 10] [0320061959] +06:20:02 [ 11] [ 6] [663178] +06:20:02 [ 12] [ 6] [061959] +06:20:02 [ 13] [ 4] [0320] +06:20:02 [ 15] [ 4] [0320] +06:20:02 [ 18] [ 4] [6011] +06:20:02 [ 22] [ 3] [900] +06:20:02 [ 25] [ 2] [02] +06:20:02 [ 28] [ 9] [D00002000] +06:20:02 [ 32] [ 6] [621354] +06:20:02 [ 35] [ 37] [6688990106481102=43121231110257100000] +06:20:02 [ 37] [ 12] [507902613677] +06:20:02 [ 41] [ 8] [05004400] +06:20:02 [ 42] [ 15] [NATIVE ] +06:20:02 [ 43] [ 40] [Sanpasaxon LPB LuangprabangLAO] +06:20:02 [ 49] [ 3] [418] +06:20:02 [ 52] [ 16] [77E6A06D5A981D87] +06:20:02 ============================================================================ +06:20:02 + + +waiting on router queue for slot.... +06:20:02 Sending to : +06:20:02 ============================================================================ +06:20:02 Sending to : +06:20:02 ============================================================================ +06:20:02 ============================================================================ +06:20:02 Slot Id : <56> +06:20:02 Transaction Type : REQUEST +06:20:02 Received From : +06:20:02 ============================================================================ +06:20:02 FNo. Len. Field Value +06:20:02 ============================================================================ +06:20:02 [ 1] [ 4] [0200] +06:20:02 [ 2] [ 16] [6688990106481102] +06:20:02 [ 3] [ 6] [010000] +06:20:02 [ 4] [ 12] [000005000000] +06:20:02 [ 7] [ 10] [0320061959] +06:20:02 [ 11] [ 6] [663178] +06:20:02 [ 12] [ 6] [061959] +06:20:02 [ 13] [ 4] [0320] +06:20:02 [ 15] [ 4] [0320] +06:20:02 [ 18] [ 4] [6011] +06:20:02 [ 22] [ 3] [900] +06:20:02 [ 25] [ 2] [02] +06:20:02 [ 28] [ 9] [D00002000] +06:20:02 [ 32] [ 6] [621354] +06:20:02 [ 35] [ 37] [6688990106481102=43121231110257100000] +06:20:02 [ 37] [ 12] [507902613677] +06:20:02 [ 41] [ 8] [05004400] +06:20:02 [ 42] [ 15] [NATIVE ] +06:20:02 [ 43] [ 40] [Sanpasaxon LPB LuangprabangLAO] +06:20:02 [ 49] [ 3] [418] +06:20:02 [ 52] [ 16] [77E6A06D5A981D87] +06:20:02 ============================================================================ +06:20:02 + + +waiting on router queue for slot.... +06:20:02 Sending to : +06:20:02 ============================================================================ +06:20:03 ============================================================================ +06:20:03 Slot Id : <56> +06:20:03 Transaction Type : REQUEST +06:20:03 Received From : +06:20:03 ============================================================================ +06:20:03 FNo. Len. Field Value +06:20:03 ============================================================================ +06:20:03 [ 1] [ 4] [0200] +06:20:03 [ 2] [ 16] [6688990106481102] +06:20:03 [ 3] [ 6] [010000] +06:20:03 [ 4] [ 12] [000005000000] +06:20:03 [ 7] [ 10] [0320061959] +06:20:03 [ 11] [ 6] [663178] +06:20:03 [ 12] [ 6] [061959] +06:20:03 [ 13] [ 4] [0320] +06:20:03 [ 15] [ 4] [0320] +06:20:03 [ 18] [ 4] [6011] +06:20:03 [ 22] [ 3] [900] +06:20:03 [ 25] [ 2] [02] +06:20:03 [ 28] [ 9] [D00002000] +06:20:03 [ 32] [ 6] [621354] +06:20:03 [ 35] [ 37] [6688990106481102=43121231110257100000] +06:20:03 [ 37] [ 12] [507902613677] +06:20:03 [ 41] [ 8] [05004400] +06:20:03 [ 42] [ 15] [NATIVE ] +06:20:03 [ 43] [ 40] [Sanpasaxon LPB LuangprabangLAO] +06:20:03 [ 49] [ 3] [418] +06:20:03 [ 52] [ 16] [67D2C62203479175] +06:20:03 ============================================================================ +06:20:03 + + +waiting on router queue for slot.... +06:20:03 Sending to : <4> +06:20:03 ============================================================================ +06:20:03 ============================================================================ +06:20:03 Slot Id : <56> +06:20:03 Transaction Type : RESPONSE +06:20:03 Received From : +06:20:03 ============================================================================ +06:20:03 FNo. Len. Field Value +06:20:03 ============================================================================ +06:20:03 [ 1] [ 4] [0210] +06:20:03 [ 2] [ 16] [6688990106481102] +06:20:03 [ 3] [ 6] [010000] +06:20:03 [ 4] [ 12] [000005000000] +06:20:03 [ 11] [ 6] [663178] +06:20:03 [ 12] [ 6] [061959] +06:20:03 [ 15] [ 4] [0320] +06:20:03 [ 18] [ 4] [6011] +06:20:03 [ 32] [ 6] [621354] +06:20:03 [ 35] [ 37] [6688990106481102=43121231110257100000] +06:20:03 [ 37] [ 12] [507902613677] +06:20:03 [ 38] [ 6] [787636] +06:20:03 [ 39] [ 2] [00] +06:20:03 [ 41] [ 8] [05004400] +06:20:03 [ 49] [ 3] [418] +06:20:03 [ 54] [ 20] [0002418C000102188809] +06:20:03 ============================================================================ +06:20:03 Sending to : +06:20:03 ============================================================================ +06:20:03 + + +waiting on router queue for slot.... +06:20:05 ============================================================================ +06:20:05 Slot Id : <56> +06:20:05 Transaction Type : RESPONSE +06:20:05 Received From : +06:20:05 ============================================================================ +06:20:05 FNo. Len. Field Value +06:20:05 ============================================================================ +06:20:05 [ 1] [ 4] [0210] +06:20:05 [ 2] [ 16] [6688990106481102] +06:20:05 [ 3] [ 6] [010000] +06:20:05 [ 4] [ 12] [000005000000] +06:20:05 [ 11] [ 6] [663178] +06:20:05 [ 12] [ 6] [061959] +06:20:05 [ 15] [ 4] [0320] +06:20:05 [ 18] [ 4] [6011] +06:20:05 [ 32] [ 6] [621354] +06:20:05 [ 35] [ 37] [6688990106481102=43121231110257100000] +06:20:05 [ 37] [ 12] [507902613677] +06:20:05 [ 38] [ 6] [787636] +06:20:05 [ 39] [ 2] [00] +06:20:05 [ 41] [ 8] [05004400] +06:20:05 [ 49] [ 3] [418] +06:20:05 [ 54] [ 20] [0002418C000102188809] +06:20:05 ============================================================================ +06:20:05 Calculate Source COMM Id = 0 +06:20:05 ============================================================================ +06:20:05 + + +waiting on router queue for slot.... +06:20:09 ============================================================================ +06:20:09 Slot Id : <91> +06:20:09 Transaction Type : REQUEST +06:20:09 Received From : +06:20:09 ============================================================================ +06:20:09 FNo. Len. Field Value +06:20:09 ============================================================================ +06:20:09 [ 1] [ 4] [0800] +06:20:09 [ 7] [ 10] [0319111915] +06:20:09 [ 11] [ 6] [154854] +06:20:09 [ 70] [ 3] [301] +06:20:09 ============================================================================ +06:20:09 + + +waiting on router queue for slot.... +06:20:09 Sending to : +06:20:09 ============================================================================ +06:20:09 ============================================================================ +06:20:09 Slot Id : <91> +06:20:09 Transaction Type : RESPONSE +06:20:09 Received From : +06:20:09 ============================================================================ +06:20:09 FNo. Len. Field Value +06:20:09 ============================================================================ +06:20:09 [ 1] [ 4] [0810] +06:20:09 [ 7] [ 10] [0319111915] +06:20:09 [ 11] [ 6] [154854] +06:20:09 [ 39] [ 2] [00] +06:20:09 [ 70] [ 3] [301] +06:20:09 ============================================================================ +06:20:09 Calculate Source COMM Id = 2 +06:20:09 ============================================================================ +06:20:09 + + +waiting on router queue for slot.... +06:20:15 ============================================================================ +06:20:15 Slot Id : <100> +06:20:15 Transaction Type : REQUEST +06:20:15 Received From : +06:20:15 ============================================================================ +06:20:15 FNo. Len. Field Value +06:20:15 ============================================================================ +06:20:15 [ 1] [ 4] [0800] +06:20:15 [ 7] [ 10] [0320133205] +06:20:15 [ 11] [ 6] [063205] +06:20:15 [ 37] [ 12] [57906063205] +06:20:15 [ 70] [ 3] [301] +06:20:15 ============================================================================ +06:20:15 + + +waiting on router queue for slot.... +06:20:15 Sending to : +06:20:15 ============================================================================ +06:20:15 ============================================================================ +06:20:15 Slot Id : <100> +06:20:15 Transaction Type : RESPONSE +06:20:15 Received From : +06:20:15 ============================================================================ +06:20:15 FNo. Len. Field Value +06:20:15 ============================================================================ +06:20:15 [ 1] [ 4] [0810] +06:20:15 [ 7] [ 10] [0320133205] +06:20:15 [ 11] [ 6] [063205] +06:20:15 [ 37] [ 12] [579060632050] +06:20:15 [ 39] [ 2] [00] +06:20:15 [ 70] [ 3] [810] +06:20:15 ============================================================================ +06:20:15 Calculate Source COMM Id = 6 +06:20:15 ============================================================================ +06:20:15 + + +waiting on router queue for slot.... +06:20:23 ============================================================================ +06:20:23 Slot Id : <77> +06:20:23 Transaction Type : REQUEST +06:20:23 Received From : +06:20:23 ============================================================================ +06:20:23 FNo. Len. Field Value +06:20:23 ============================================================================ +06:20:23 [ 1] [ 4] [0800] +06:20:23 [ 7] [ 10] [0319111931] +06:20:23 [ 11] [ 6] [154855] +06:20:23 [ 70] [ 3] [301] +06:20:23 ============================================================================ +06:20:23 + + +waiting on router queue for slot.... +06:20:23 Sending to : +06:20:23 ============================================================================ +06:20:23 ============================================================================ +06:20:23 Slot Id : <77> +06:20:23 Transaction Type : RESPONSE +06:20:23 Received From : +06:20:23 ============================================================================ +06:20:23 FNo. Len. Field Value +06:20:23 ============================================================================ +06:20:23 [ 1] [ 4] [0810] +06:20:23 [ 7] [ 10] [0319111931] +06:20:23 [ 11] [ 6] [154855] +06:20:23 [ 39] [ 2] [00] +06:20:23 [ 70] [ 3] [301] +06:20:23 ============================================================================ +06:20:23 Calculate Source COMM Id = 2 +06:20:23 ============================================================================ +06:20:23 + + +waiting on router queue for slot.... +06:20:34 ============================================================================ +06:20:34 Slot Id : <65> +06:20:34 Transaction Type : REQUEST +06:20:34 Received From : +06:20:34 ============================================================================ +06:20:34 FNo. Len. Field Value +06:20:34 ============================================================================ +06:20:34 [ 1] [ 4] [0800] +06:20:34 [ 7] [ 10] [0319111943] +06:20:34 [ 11] [ 6] [154856] +06:20:34 [ 70] [ 3] [301] +06:20:34 ============================================================================ +06:20:34 + + +waiting on router queue for slot.... +06:20:34 Sending to : +06:20:34 ============================================================================ +06:20:34 ============================================================================ +06:20:34 Slot Id : <65> +06:20:34 Transaction Type : RESPONSE +06:20:34 Received From : +06:20:34 ============================================================================ +06:20:34 FNo. Len. Field Value +06:20:34 ============================================================================ +06:20:34 [ 1] [ 4] [0810] +06:20:34 [ 7] [ 10] [0319111943] +06:20:34 [ 11] [ 6] [154856] +06:20:34 [ 39] [ 2] [00] +06:20:34 [ 70] [ 3] [301] +06:20:34 ============================================================================ +06:20:34 Calculate Source COMM Id = 2 +06:20:34 ============================================================================ +06:20:34 + + +waiting on router queue for slot.... +06:20:46 ============================================================================ +06:20:46 Slot Id : <72> +06:20:46 Transaction Type : REQUEST +06:20:46 Received From : +06:20:46 ============================================================================ +06:20:46 FNo. Len. Field Value +06:20:46 ============================================================================ +06:20:46 [ 1] [ 4] [0800] +06:20:46 [ 7] [ 10] [0319111953] +06:20:46 [ 11] [ 6] [154857] +06:20:46 [ 70] [ 3] [301] +06:20:46 ============================================================================ +06:20:46 + + +waiting on router queue for slot.... +06:20:46 Sending to : +06:20:46 ============================================================================ +06:20:46 ============================================================================ +06:20:46 Slot Id : <72> +06:20:46 Transaction Type : RESPONSE +06:20:46 Received From : +06:20:46 ============================================================================ +06:20:46 FNo. Len. Field Value +06:20:46 ============================================================================ +06:20:46 [ 1] [ 4] [0810] +06:20:46 [ 7] [ 10] [0319111953] +06:20:46 [ 11] [ 6] [154857] +06:20:46 [ 39] [ 2] [00] +06:20:46 [ 70] [ 3] [301] +06:20:46 ============================================================================ +06:20:46 Calculate Source COMM Id = 2 +06:20:46 ============================================================================ +06:20:46 + + +waiting on router queue for slot.... +06:20:52 ============================================================================ +06:20:52 Slot Id : <106> +06:20:52 Transaction Type : REQUEST +06:20:52 Received From : +06:20:52 ============================================================================ +06:20:52 FNo. Len. Field Value +06:20:52 ============================================================================ +06:20:52 [ 1] [ 4] [0800] +06:20:52 [ 2] [ 5] [02531] +06:20:52 [ 3] [ 6] [579068] +06:20:52 [ 7] [ 10] [0319232052] +06:20:52 [ 11] [ 6] [806780] +06:20:52 [ 15] [ 10] [0319232052] +06:20:52 [ 37] [ 11] [57906806780] +06:20:52 [ 70] [ 3] [001] +06:20:52 ============================================================================ +06:20:52 + + +waiting on router queue for slot.... +06:20:52 ============================================================================ +06:20:52 Slot Id : <106> +06:20:52 Transaction Type : RESPONSE +06:20:52 Received From : +06:20:52 ============================================================================ +06:20:52 FNo. Len. Field Value +06:20:52 ============================================================================ +06:20:52 [ 1] [ 4] [0810] +06:20:52 [ 7] [ 10] [0319232052] +06:20:52 [ 11] [ 6] [806780] +06:20:52 [ 15] [ 4] [0319] +06:20:52 [ 37] [ 12] [57906806780] +06:20:52 [ 39] [ 2] [00] +06:20:52 [ 70] [ 3] [001] +06:20:52 ============================================================================ +06:20:52 Sending to : +06:20:52 ============================================================================ +06:20:52 + + +waiting on router queue for slot.... +06:21:01 ============================================================================ +06:21:01 Slot Id : <66> +06:21:01 Transaction Type : REQUEST +06:21:01 Received From : +06:21:01 ============================================================================ +06:21:01 FNo. Len. Field Value +06:21:01 ============================================================================ +06:21:01 [ 1] [ 4] [0800] +06:21:01 [ 7] [ 10] [0319112010] +06:21:01 [ 11] [ 6] [154858] +06:21:01 [ 70] [ 3] [301] +06:21:01 ============================================================================ +06:21:01 + + +waiting on router queue for slot.... +06:21:01 Sending to : +06:21:01 ============================================================================ +06:21:01 ============================================================================ +06:21:01 Slot Id : <66> +06:21:01 Transaction Type : RESPONSE +06:21:01 Received From : +06:21:01 ============================================================================ +06:21:01 FNo. Len. Field Value +06:21:01 ============================================================================ +06:21:01 [ 1] [ 4] [0810] +06:21:01 [ 7] [ 10] [0319112010] +06:21:01 [ 11] [ 6] [154858] +06:21:01 [ 39] [ 2] [00] +06:21:01 [ 70] [ 3] [301] +06:21:01 ============================================================================ +06:21:01 Calculate Source COMM Id = 2 +06:21:01 ============================================================================ +06:21:01 + + +waiting on router queue for slot.... +06:21:12 ============================================================================ +06:21:12 Slot Id : <76> +06:21:12 Transaction Type : REQUEST +06:21:12 Received From : +06:21:12 ============================================================================ +06:21:12 FNo. Len. Field Value +06:21:12 ============================================================================ +06:21:12 [ 1] [ 4] [0800] +06:21:12 [ 7] [ 10] [0319112021] +06:21:12 [ 11] [ 6] [154859] +06:21:12 [ 70] [ 3] [301] +06:21:12 ============================================================================ +06:21:12 + + +waiting on router queue for slot.... +06:21:12 Sending to : +06:21:12 ============================================================================ +06:21:12 ============================================================================ +06:21:12 Slot Id : <76> +06:21:12 Transaction Type : RESPONSE +06:21:12 Received From : +06:21:12 ============================================================================ +06:21:12 FNo. Len. Field Value +06:21:12 ============================================================================ +06:21:12 [ 1] [ 4] [0810] +06:21:12 [ 7] [ 10] [0319112021] +06:21:12 [ 11] [ 6] [154859] +06:21:12 [ 39] [ 2] [00] +06:21:12 [ 70] [ 3] [301] +06:21:12 ============================================================================ +06:21:12 Calculate Source COMM Id = 2 +06:21:12 ============================================================================ +06:21:12 + + +waiting on router queue for slot.... +06:21:20 ============================================================================ +06:21:20 Slot Id : <90> +06:21:20 Transaction Type : REQUEST +06:21:20 Received From : +06:21:20 ============================================================================ +06:21:20 FNo. Len. Field Value +06:21:20 ============================================================================ +06:21:20 [ 1] [ 4] [0800] +06:21:20 [ 7] [ 10] [0320133310] +06:21:20 [ 11] [ 6] [063310] +06:21:20 [ 37] [ 12] [57906063310] +06:21:20 [ 70] [ 3] [301] +06:21:20 ============================================================================ +06:21:20 + + +waiting on router queue for slot.... +06:21:20 Sending to : +06:21:20 ============================================================================ +06:21:20 ============================================================================ +06:21:20 Slot Id : <90> +06:21:20 Transaction Type : RESPONSE +06:21:20 Received From : +06:21:20 ============================================================================ +06:21:20 FNo. Len. Field Value +06:21:20 ============================================================================ +06:21:20 [ 1] [ 4] [0810] +06:21:20 [ 7] [ 10] [0320133310] +06:21:20 [ 11] [ 6] [063310] +06:21:20 [ 37] [ 12] [579060633100] +06:21:20 [ 39] [ 2] [00] +06:21:20 [ 70] [ 3] [810] +06:21:20 ============================================================================ +06:21:20 Calculate Source COMM Id = 6 +06:21:20 ============================================================================ +06:21:20 + + +waiting on router queue for slot.... +06:21:20 ============================================================================ +06:21:20 Slot Id : <114> +06:21:20 Transaction Type : REQUEST +06:21:20 Received From : +06:21:20 ============================================================================ +06:21:20 FNo. Len. Field Value +06:21:20 ============================================================================ +06:21:20 [ 1] [ 4] [0800] +06:21:20 [ 7] [ 10] [0319231912] +06:21:20 [ 11] [ 6] [018309] +06:21:20 [ 37] [ 12] [57906018309] +06:21:20 [ 70] [ 3] [301] +06:21:20 ============================================================================ +06:21:20 + + +waiting on router queue for slot.... +06:21:20 Sending to : +06:21:20 ============================================================================ +06:21:20 ============================================================================ +06:21:20 Slot Id : <114> +06:21:20 Transaction Type : RESPONSE +06:21:20 Received From : +06:21:20 ============================================================================ +06:21:20 FNo. Len. Field Value +06:21:20 ============================================================================ +06:21:20 [ 1] [ 4] [0810] +06:21:20 [ 7] [ 10] [0319231912] +06:21:20 [ 11] [ 6] [018309] +06:21:20 [ 37] [ 12] [579060183090] +06:21:20 [ 39] [ 2] [00] +06:21:20 [ 70] [ 3] [810] +06:21:20 ============================================================================ +06:21:20 Calculate Source COMM Id = 4 +06:21:20 ============================================================================ +06:21:20 + + +waiting on router queue for slot.... +06:21:23 ============================================================================ +06:21:23 Slot Id : <74> +06:21:23 Transaction Type : REQUEST +06:21:23 Received From : +06:21:23 ============================================================================ +06:21:23 FNo. Len. Field Value +06:21:23 ============================================================================ +06:21:23 [ 1] [ 4] [0800] +06:21:23 [ 7] [ 10] [0319112032] +06:21:23 [ 11] [ 6] [154860] +06:21:23 [ 70] [ 3] [301] +06:21:23 ============================================================================ +06:21:23 + + +waiting on router queue for slot.... +06:21:23 Sending to : +06:21:23 ============================================================================ +06:21:23 ============================================================================ +06:21:23 Slot Id : <74> +06:21:23 Transaction Type : RESPONSE +06:21:23 Received From : +06:21:23 ============================================================================ +06:21:23 FNo. Len. Field Value +06:21:23 ============================================================================ +06:21:23 [ 1] [ 4] [0810] +06:21:23 [ 7] [ 10] [0319112032] +06:21:23 [ 11] [ 6] [154860] +06:21:23 [ 39] [ 2] [00] +06:21:23 [ 70] [ 3] [301] +06:21:23 ============================================================================ +06:21:23 Calculate Source COMM Id = 2 +06:21:23 ============================================================================ +06:21:23 + + +waiting on router queue for slot.... +06:21:26 ============================================================================ +06:21:26 Slot Id : <107> +06:21:26 Transaction Type : REQUEST +06:21:26 Received From : +06:21:26 ============================================================================ +06:21:26 FNo. Len. Field Value +06:21:26 ============================================================================ +06:21:26 [ 1] [ 4] [0200] +06:21:26 [ 2] [ 16] [6213545001065329] +06:21:26 [ 3] [ 6] [010000] +06:21:26 [ 4] [ 12] [000010000000] +06:21:26 [ 7] [ 10] [0319232034] +06:21:26 [ 11] [ 6] [266589] +06:21:26 [ 12] [ 6] [062034] +06:21:26 [ 13] [ 4] [0320] +06:21:26 [ 14] [ 4] [4912] +06:21:26 [ 15] [ 4] [0320] +06:21:26 [ 18] [ 4] [6011] +06:21:26 [ 19] [ 3] [418] +06:21:26 [ 22] [ 3] [021] +06:21:26 [ 25] [ 2] [01] +06:21:26 [ 28] [ 9] [D00002000] +06:21:26 [ 32] [ 6] [180893] +06:21:26 [ 35] [ 32] [6213545001065329=491212016532677] +06:21:26 [ 37] [ 12] [507923266589] +06:21:26 [ 41] [ 8] [0324BKDT] +06:21:26 [ 42] [ 15] [999999 ] +06:21:26 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +06:21:26 [ 49] [ 3] [418] +06:21:26 [ 52] [ 16] [71DB96D6EB493E5D] +06:21:26 ============================================================================ +06:21:26 + + +waiting on router queue for slot.... +06:21:26 Sending to : +06:21:26 ============================================================================ +06:21:26 Sending to : +06:21:26 ============================================================================ +06:21:27 ============================================================================ +06:21:27 Slot Id : <107> +06:21:27 Transaction Type : REQUEST +06:21:27 Received From : +06:21:27 ============================================================================ +06:21:27 FNo. Len. Field Value +06:21:27 ============================================================================ +06:21:27 [ 1] [ 4] [0200] +06:21:27 [ 2] [ 16] [6213545001065329] +06:21:27 [ 3] [ 6] [010000] +06:21:27 [ 4] [ 12] [000010000000] +06:21:27 [ 7] [ 10] [0319232034] +06:21:27 [ 11] [ 6] [266589] +06:21:27 [ 12] [ 6] [062034] +06:21:27 [ 13] [ 4] [0320] +06:21:27 [ 14] [ 4] [4912] +06:21:27 [ 15] [ 4] [0320] +06:21:27 [ 18] [ 4] [6011] +06:21:27 [ 19] [ 3] [418] +06:21:27 [ 22] [ 3] [021] +06:21:27 [ 25] [ 2] [01] +06:21:27 [ 28] [ 9] [D00002000] +06:21:27 [ 32] [ 6] [180893] +06:21:27 [ 35] [ 32] [6213545001065329=491212016532677] +06:21:27 [ 37] [ 12] [507923266589] +06:21:27 [ 41] [ 8] [0324BKDT] +06:21:27 [ 42] [ 15] [999999 ] +06:21:27 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +06:21:27 [ 49] [ 3] [418] +06:21:27 [ 52] [ 16] [71DB96D6EB493E5D] +06:21:27 ============================================================================ +06:21:27 + + +waiting on router queue for slot.... +06:21:27 Sending to : +06:21:27 ============================================================================ +06:21:27 ============================================================================ +06:21:27 Slot Id : <107> +06:21:27 Transaction Type : REQUEST +06:21:27 Received From : +06:21:27 ============================================================================ +06:21:27 FNo. Len. Field Value +06:21:27 ============================================================================ +06:21:27 [ 1] [ 4] [0200] +06:21:27 [ 2] [ 16] [6213545001065329] +06:21:27 [ 3] [ 6] [010000] +06:21:27 [ 4] [ 12] [000010000000] +06:21:27 [ 7] [ 10] [0319232034] +06:21:27 [ 11] [ 6] [266589] +06:21:27 [ 12] [ 6] [062034] +06:21:27 [ 13] [ 4] [0320] +06:21:27 [ 14] [ 4] [4912] +06:21:27 [ 15] [ 4] [0320] +06:21:27 [ 18] [ 4] [6011] +06:21:27 [ 19] [ 3] [418] +06:21:27 [ 22] [ 3] [021] +06:21:27 [ 25] [ 2] [01] +06:21:27 [ 28] [ 9] [D00002000] +06:21:27 [ 32] [ 6] [180893] +06:21:27 [ 35] [ 32] [6213545001065329=491212016532677] +06:21:27 [ 37] [ 12] [507923266589] +06:21:27 [ 41] [ 8] [0324BKDT] +06:21:27 [ 42] [ 15] [999999 ] +06:21:27 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +06:21:27 [ 49] [ 3] [418] +06:21:27 [ 52] [ 16] [37B9C7FDAB745A70] +06:21:27 ============================================================================ +06:21:27 + + +waiting on router queue for slot.... +06:21:27 Sending to : <0> +06:21:27 ============================================================================ +06:21:27 ============================================================================ +06:21:27 Slot Id : <107> +06:21:27 Transaction Type : RESPONSE +06:21:27 Received From : +06:21:27 ============================================================================ +06:21:27 FNo. Len. Field Value +06:21:27 ============================================================================ +06:21:27 [ 1] [ 4] [0210] +06:21:27 [ 2] [ 16] [6213545001065329] +06:21:27 [ 3] [ 6] [010000] +06:21:27 [ 4] [ 12] [000010000000] +06:21:27 [ 7] [ 10] [0319232034] +06:21:27 [ 11] [ 6] [266589] +06:21:27 [ 12] [ 6] [062034] +06:21:27 [ 13] [ 4] [0320] +06:21:27 [ 15] [ 4] [0320] +06:21:27 [ 18] [ 4] [6011] +06:21:27 [ 19] [ 3] [418] +06:21:27 [ 32] [ 6] [180893] +06:21:27 [ 35] [ 32] [6213545001065329=491212016532677] +06:21:27 [ 37] [ 12] [507923266589] +06:21:27 [ 38] [ 6] [809682] +06:21:27 [ 39] [ 2] [00] +06:21:27 [ 41] [ 8] [0324BKDT] +06:21:27 [ 49] [ 3] [418] +06:21:27 [ 54] [ 40] [0001418C0000935521880002418C000093552188] +06:21:27 ============================================================================ +06:21:27 Sending to : +06:21:27 ============================================================================ +06:21:27 + + +waiting on router queue for slot.... +06:21:29 ============================================================================ +06:21:29 Slot Id : <107> +06:21:29 Transaction Type : RESPONSE +06:21:29 Received From : +06:21:29 ============================================================================ +06:21:29 FNo. Len. Field Value +06:21:29 ============================================================================ +06:21:29 [ 1] [ 4] [0210] +06:21:29 [ 2] [ 16] [6213545001065329] +06:21:29 [ 3] [ 6] [010000] +06:21:29 [ 4] [ 12] [000010000000] +06:21:29 [ 7] [ 10] [0319232034] +06:21:29 [ 11] [ 6] [266589] +06:21:29 [ 12] [ 6] [062034] +06:21:29 [ 13] [ 4] [0320] +06:21:29 [ 15] [ 4] [0320] +06:21:29 [ 18] [ 4] [6011] +06:21:29 [ 19] [ 3] [418] +06:21:29 [ 32] [ 6] [180893] +06:21:29 [ 35] [ 32] [6213545001065329=491212016532677] +06:21:29 [ 37] [ 12] [507923266589] +06:21:29 [ 38] [ 6] [809682] +06:21:29 [ 39] [ 2] [00] +06:21:29 [ 41] [ 8] [0324BKDT] +06:21:29 [ 49] [ 3] [418] +06:21:29 [ 54] [ 40] [0001418C0000935521880002418C000093552188] +06:21:29 ============================================================================ +06:21:29 Calculate Source COMM Id = 2 +06:21:29 ============================================================================ +06:21:29 + + +waiting on router queue for slot.... +06:21:39 ============================================================================ +06:21:39 Slot Id : <83> +06:21:39 Transaction Type : REQUEST +06:21:39 Received From : +06:21:39 ============================================================================ +06:21:39 FNo. Len. Field Value +06:21:39 ============================================================================ +06:21:39 [ 1] [ 4] [0800] +06:21:39 [ 7] [ 10] [0319112048] +06:21:39 [ 11] [ 6] [154861] +06:21:39 [ 70] [ 3] [301] +06:21:39 ============================================================================ +06:21:39 + + +waiting on router queue for slot.... +06:21:39 Sending to : +06:21:39 ============================================================================ +06:21:39 ============================================================================ +06:21:39 Slot Id : <83> +06:21:39 Transaction Type : RESPONSE +06:21:39 Received From : +06:21:39 ============================================================================ +06:21:39 FNo. Len. Field Value +06:21:39 ============================================================================ +06:21:39 [ 1] [ 4] [0810] +06:21:39 [ 7] [ 10] [0319112048] +06:21:39 [ 11] [ 6] [154861] +06:21:39 [ 39] [ 2] [00] +06:21:39 [ 70] [ 3] [301] +06:21:39 ============================================================================ +06:21:39 Calculate Source COMM Id = 2 +06:21:39 ============================================================================ +06:21:39 + + +waiting on router queue for slot.... +06:21:54 ============================================================================ +06:21:54 Slot Id : <92> +06:21:54 Transaction Type : REQUEST +06:21:54 Received From : +06:21:54 ============================================================================ +06:21:54 FNo. Len. Field Value +06:21:54 ============================================================================ +06:21:54 [ 1] [ 4] [0800] +06:21:54 [ 2] [ 5] [02531] +06:21:54 [ 3] [ 6] [579068] +06:21:54 [ 7] [ 10] [0319232154] +06:21:54 [ 11] [ 6] [806781] +06:21:54 [ 15] [ 10] [0319232154] +06:21:54 [ 37] [ 11] [57906806781] +06:21:54 [ 70] [ 3] [001] +06:21:54 ============================================================================ +06:21:54 + + +waiting on router queue for slot.... +06:21:54 ============================================================================ +06:21:54 Slot Id : <92> +06:21:54 Transaction Type : RESPONSE +06:21:54 Received From : +06:21:54 ============================================================================ +06:21:54 FNo. Len. Field Value +06:21:54 ============================================================================ +06:21:54 [ 1] [ 4] [0810] +06:21:54 [ 7] [ 10] [0319232154] +06:21:54 [ 11] [ 6] [806781] +06:21:54 [ 15] [ 4] [0319] +06:21:54 [ 37] [ 12] [57906806781] +06:21:54 [ 39] [ 2] [00] +06:21:54 [ 70] [ 3] [001] +06:21:54 ============================================================================ +06:21:54 Sending to : +06:21:54 ============================================================================ +06:21:54 + + +waiting on router queue for slot.... +06:21:56 ============================================================================ +06:21:56 Slot Id : <118> +06:21:56 Transaction Type : REQUEST +06:21:56 Received From : +06:21:56 ============================================================================ +06:21:56 FNo. Len. Field Value +06:21:56 ============================================================================ +06:21:56 [ 1] [ 4] [0800] +06:21:56 [ 7] [ 10] [0319112105] +06:21:56 [ 11] [ 6] [154862] +06:21:56 [ 70] [ 3] [301] +06:21:56 ============================================================================ +06:21:56 + + +waiting on router queue for slot.... +06:21:56 Sending to : +06:21:56 ============================================================================ +06:21:56 ============================================================================ +06:21:56 Slot Id : <118> +06:21:56 Transaction Type : RESPONSE +06:21:56 Received From : +06:21:56 ============================================================================ +06:21:56 FNo. Len. Field Value +06:21:56 ============================================================================ +06:21:56 [ 1] [ 4] [0810] +06:21:56 [ 7] [ 10] [0319112105] +06:21:56 [ 11] [ 6] [154862] +06:21:56 [ 39] [ 2] [00] +06:21:56 [ 70] [ 3] [301] +06:21:56 ============================================================================ +06:21:56 Calculate Source COMM Id = 2 +06:21:56 ============================================================================ +06:21:56 + + +waiting on router queue for slot.... +06:22:08 ============================================================================ +06:22:08 Slot Id : <121> +06:22:08 Transaction Type : REQUEST +06:22:08 Received From : +06:22:08 ============================================================================ +06:22:08 FNo. Len. Field Value +06:22:08 ============================================================================ +06:22:08 [ 1] [ 4] [0800] +06:22:08 [ 7] [ 10] [0319112116] +06:22:08 [ 11] [ 6] [154863] +06:22:08 [ 70] [ 3] [301] +06:22:08 ============================================================================ +06:22:08 + + +waiting on router queue for slot.... +06:22:08 Sending to : +06:22:08 ============================================================================ +06:22:08 ============================================================================ +06:22:08 Slot Id : <121> +06:22:08 Transaction Type : RESPONSE +06:22:08 Received From : +06:22:08 ============================================================================ +06:22:08 FNo. Len. Field Value +06:22:08 ============================================================================ +06:22:08 [ 1] [ 4] [0810] +06:22:08 [ 7] [ 10] [0319112116] +06:22:08 [ 11] [ 6] [154863] +06:22:08 [ 39] [ 2] [00] +06:22:08 [ 70] [ 3] [301] +06:22:08 ============================================================================ +06:22:08 Calculate Source COMM Id = 2 +06:22:08 ============================================================================ +06:22:08 + + +waiting on router queue for slot.... +06:22:14 ============================================================================ +06:22:14 Slot Id : <113> +06:22:14 Transaction Type : REQUEST +06:22:14 Received From : +06:22:14 ============================================================================ +06:22:14 FNo. Len. Field Value +06:22:14 ============================================================================ +06:22:14 [ 1] [ 4] [0200] +06:22:14 [ 2] [ 16] [6213545001065329] +06:22:14 [ 3] [ 6] [010000] +06:22:14 [ 4] [ 12] [000010000000] +06:22:14 [ 7] [ 10] [0319232121] +06:22:14 [ 11] [ 6] [266593] +06:22:14 [ 12] [ 6] [062121] +06:22:14 [ 13] [ 4] [0320] +06:22:14 [ 14] [ 4] [4912] +06:22:14 [ 15] [ 4] [0320] +06:22:14 [ 18] [ 4] [6011] +06:22:14 [ 19] [ 3] [418] +06:22:14 [ 22] [ 3] [021] +06:22:14 [ 25] [ 2] [01] +06:22:14 [ 28] [ 9] [D00002000] +06:22:14 [ 32] [ 6] [180893] +06:22:14 [ 35] [ 32] [6213545001065329=491212016532677] +06:22:14 [ 37] [ 12] [507923266593] +06:22:14 [ 41] [ 8] [0324BKDT] +06:22:14 [ 42] [ 15] [999999 ] +06:22:14 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +06:22:14 [ 49] [ 3] [418] +06:22:14 [ 52] [ 16] [71DB96D6EB493E5D] +06:22:14 ============================================================================ +06:22:14 + + +waiting on router queue for slot.... +06:22:14 Sending to : +06:22:14 ============================================================================ +06:22:14 Sending to : +06:22:14 ============================================================================ +06:22:14 ============================================================================ +06:22:14 Slot Id : <113> +06:22:14 Transaction Type : REQUEST +06:22:14 Received From : +06:22:14 ============================================================================ +06:22:14 FNo. Len. Field Value +06:22:14 ============================================================================ +06:22:14 [ 1] [ 4] [0200] +06:22:14 [ 2] [ 16] [6213545001065329] +06:22:14 [ 3] [ 6] [010000] +06:22:14 [ 4] [ 12] [000010000000] +06:22:14 [ 7] [ 10] [0319232121] +06:22:14 [ 11] [ 6] [266593] +06:22:14 [ 12] [ 6] [062121] +06:22:14 [ 13] [ 4] [0320] +06:22:14 [ 14] [ 4] [4912] +06:22:14 [ 15] [ 4] [0320] +06:22:14 [ 18] [ 4] [6011] +06:22:14 [ 19] [ 3] [418] +06:22:14 [ 22] [ 3] [021] +06:22:14 [ 25] [ 2] [01] +06:22:14 [ 28] [ 9] [D00002000] +06:22:14 [ 32] [ 6] [180893] +06:22:14 [ 35] [ 32] [6213545001065329=491212016532677] +06:22:14 [ 37] [ 12] [507923266593] +06:22:14 [ 41] [ 8] [0324BKDT] +06:22:14 [ 42] [ 15] [999999 ] +06:22:14 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +06:22:14 [ 49] [ 3] [418] +06:22:14 [ 52] [ 16] [71DB96D6EB493E5D] +06:22:14 ============================================================================ +06:22:14 + + +waiting on router queue for slot.... +06:22:14 Sending to : +06:22:14 ============================================================================ +06:22:14 ============================================================================ +06:22:14 Slot Id : <113> +06:22:14 Transaction Type : REQUEST +06:22:14 Received From : +06:22:14 ============================================================================ +06:22:14 FNo. Len. Field Value +06:22:14 ============================================================================ +06:22:14 [ 1] [ 4] [0200] +06:22:14 [ 2] [ 16] [6213545001065329] +06:22:14 [ 3] [ 6] [010000] +06:22:14 [ 4] [ 12] [000010000000] +06:22:14 [ 7] [ 10] [0319232121] +06:22:14 [ 11] [ 6] [266593] +06:22:14 [ 12] [ 6] [062121] +06:22:14 [ 13] [ 4] [0320] +06:22:14 [ 14] [ 4] [4912] +06:22:14 [ 15] [ 4] [0320] +06:22:14 [ 18] [ 4] [6011] +06:22:14 [ 19] [ 3] [418] +06:22:14 [ 22] [ 3] [021] +06:22:14 [ 25] [ 2] [01] +06:22:14 [ 28] [ 9] [D00002000] +06:22:14 [ 32] [ 6] [180893] +06:22:14 [ 35] [ 32] [6213545001065329=491212016532677] +06:22:14 [ 37] [ 12] [507923266593] +06:22:14 [ 41] [ 8] [0324BKDT] +06:22:14 [ 42] [ 15] [999999 ] +06:22:14 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +06:22:14 [ 49] [ 3] [418] +06:22:14 [ 52] [ 16] [37B9C7FDAB745A70] +06:22:14 ============================================================================ +06:22:14 + + +waiting on router queue for slot.... +06:22:14 Sending to : <0> +06:22:14 ============================================================================ +06:22:15 ============================================================================ +06:22:15 Slot Id : <113> +06:22:15 Transaction Type : RESPONSE +06:22:15 Received From : +06:22:15 ============================================================================ +06:22:15 FNo. Len. Field Value +06:22:15 ============================================================================ +06:22:15 [ 1] [ 4] [0210] +06:22:15 [ 2] [ 16] [6213545001065329] +06:22:15 [ 3] [ 6] [010000] +06:22:15 [ 4] [ 12] [000010000000] +06:22:15 [ 7] [ 10] [0319232121] +06:22:15 [ 11] [ 6] [266593] +06:22:15 [ 12] [ 6] [062121] +06:22:15 [ 13] [ 4] [0320] +06:22:15 [ 15] [ 4] [0320] +06:22:15 [ 18] [ 4] [6011] +06:22:15 [ 19] [ 3] [418] +06:22:15 [ 32] [ 6] [180893] +06:22:15 [ 35] [ 32] [6213545001065329=491212016532677] +06:22:15 [ 37] [ 12] [507923266593] +06:22:15 [ 38] [ 6] [075892] +06:22:15 [ 39] [ 2] [00] +06:22:15 [ 41] [ 8] [0324BKDT] +06:22:15 [ 49] [ 3] [418] +06:22:15 [ 54] [ 40] [0001418C0000833521880002418C000083352188] +06:22:15 ============================================================================ +06:22:15 Sending to : +06:22:15 ============================================================================ +06:22:15 + + +waiting on router queue for slot.... +06:22:16 ============================================================================ +06:22:16 Slot Id : <113> +06:22:16 Transaction Type : RESPONSE +06:22:16 Received From : +06:22:16 ============================================================================ +06:22:16 FNo. Len. Field Value +06:22:16 ============================================================================ +06:22:16 [ 1] [ 4] [0210] +06:22:16 [ 2] [ 16] [6213545001065329] +06:22:16 [ 3] [ 6] [010000] +06:22:16 [ 4] [ 12] [000010000000] +06:22:16 [ 7] [ 10] [0319232121] +06:22:16 [ 11] [ 6] [266593] +06:22:16 [ 12] [ 6] [062121] +06:22:16 [ 13] [ 4] [0320] +06:22:16 [ 15] [ 4] [0320] +06:22:16 [ 18] [ 4] [6011] +06:22:16 [ 19] [ 3] [418] +06:22:16 [ 32] [ 6] [180893] +06:22:16 [ 35] [ 32] [6213545001065329=491212016532677] +06:22:16 [ 37] [ 12] [507923266593] +06:22:16 [ 38] [ 6] [075892] +06:22:16 [ 39] [ 2] [00] +06:22:16 [ 41] [ 8] [0324BKDT] +06:22:16 [ 49] [ 3] [418] +06:22:16 [ 54] [ 40] [0001418C0000833521880002418C000083352188] +06:22:16 ============================================================================ +06:22:16 Calculate Source COMM Id = 2 +06:22:16 ============================================================================ +06:22:16 + + +waiting on router queue for slot.... +06:22:25 ============================================================================ +06:22:25 Slot Id : <108> +06:22:25 Transaction Type : REQUEST +06:22:25 Received From : +06:22:25 ============================================================================ +06:22:25 FNo. Len. Field Value +06:22:25 ============================================================================ +06:22:25 [ 1] [ 4] [0800] +06:22:25 [ 7] [ 10] [0320133415] +06:22:25 [ 11] [ 6] [063415] +06:22:25 [ 37] [ 12] [57906063415] +06:22:25 [ 70] [ 3] [301] +06:22:25 ============================================================================ +06:22:25 + + +waiting on router queue for slot.... +06:22:25 Sending to : +06:22:25 ============================================================================ +06:22:25 ============================================================================ +06:22:25 Slot Id : <108> +06:22:25 Transaction Type : RESPONSE +06:22:25 Received From : +06:22:25 ============================================================================ +06:22:25 FNo. Len. Field Value +06:22:25 ============================================================================ +06:22:25 [ 1] [ 4] [0810] +06:22:25 [ 7] [ 10] [0320133415] +06:22:25 [ 11] [ 6] [063415] +06:22:25 [ 37] [ 12] [579060634150] +06:22:25 [ 39] [ 2] [00] +06:22:25 [ 70] [ 3] [810] +06:22:25 ============================================================================ +06:22:25 Calculate Source COMM Id = 6 +06:22:25 ============================================================================ +06:22:25 + + +waiting on router queue for slot.... +06:22:29 ============================================================================ +06:22:29 Slot Id : <94> +06:22:29 Transaction Type : REQUEST +06:22:29 Received From : +06:22:29 ============================================================================ +06:22:29 FNo. Len. Field Value +06:22:29 ============================================================================ +06:22:29 [ 1] [ 4] [0800] +06:22:29 [ 7] [ 10] [0319112137] +06:22:29 [ 11] [ 6] [154864] +06:22:29 [ 70] [ 3] [301] +06:22:29 ============================================================================ +06:22:29 + + +waiting on router queue for slot.... +06:22:29 Sending to : +06:22:29 ============================================================================ +06:22:29 ============================================================================ +06:22:29 Slot Id : <94> +06:22:29 Transaction Type : RESPONSE +06:22:29 Received From : +06:22:29 ============================================================================ +06:22:29 FNo. Len. Field Value +06:22:29 ============================================================================ +06:22:29 [ 1] [ 4] [0810] +06:22:29 [ 7] [ 10] [0319112137] +06:22:29 [ 11] [ 6] [154864] +06:22:29 [ 39] [ 2] [00] +06:22:29 [ 70] [ 3] [301] +06:22:29 ============================================================================ +06:22:29 Calculate Source COMM Id = 2 +06:22:29 ============================================================================ +06:22:29 + + +waiting on router queue for slot.... +06:22:44 ============================================================================ +06:22:44 Slot Id : <115> +06:22:44 Transaction Type : REQUEST +06:22:44 Received From : +06:22:44 ============================================================================ +06:22:44 FNo. Len. Field Value +06:22:44 ============================================================================ +06:22:44 [ 1] [ 4] [0800] +06:22:44 [ 7] [ 10] [0319112153] +06:22:44 [ 11] [ 6] [154865] +06:22:44 [ 70] [ 3] [301] +06:22:44 ============================================================================ +06:22:44 + + +waiting on router queue for slot.... +06:22:44 Sending to : +06:22:44 ============================================================================ +06:22:44 ============================================================================ +06:22:44 Slot Id : <115> +06:22:44 Transaction Type : RESPONSE +06:22:44 Received From : +06:22:44 ============================================================================ +06:22:44 FNo. Len. Field Value +06:22:44 ============================================================================ +06:22:44 [ 1] [ 4] [0810] +06:22:44 [ 7] [ 10] [0319112153] +06:22:44 [ 11] [ 6] [154865] +06:22:44 [ 39] [ 2] [00] +06:22:44 [ 70] [ 3] [301] +06:22:44 ============================================================================ +06:22:44 Calculate Source COMM Id = 2 +06:22:44 ============================================================================ +06:22:44 + + +waiting on router queue for slot.... +06:22:55 ============================================================================ +06:22:55 Slot Id : <127> +06:22:55 Transaction Type : REQUEST +06:22:55 Received From : +06:22:55 ============================================================================ +06:22:55 FNo. Len. Field Value +06:22:55 ============================================================================ +06:22:55 [ 1] [ 4] [0800] +06:22:55 [ 7] [ 10] [0319112204] +06:22:55 [ 11] [ 6] [154866] +06:22:55 [ 70] [ 3] [301] +06:22:55 ============================================================================ +06:22:55 + + +waiting on router queue for slot.... +06:22:55 Sending to : +06:22:55 ============================================================================ +06:22:55 ============================================================================ +06:22:55 Slot Id : <127> +06:22:55 Transaction Type : RESPONSE +06:22:55 Received From : +06:22:55 ============================================================================ +06:22:55 FNo. Len. Field Value +06:22:55 ============================================================================ +06:22:55 [ 1] [ 4] [0810] +06:22:55 [ 7] [ 10] [0319112204] +06:22:55 [ 11] [ 6] [154866] +06:22:55 [ 39] [ 2] [00] +06:22:55 [ 70] [ 3] [301] +06:22:55 ============================================================================ +06:22:55 Calculate Source COMM Id = 2 +06:22:55 ============================================================================ +06:22:55 + + +waiting on router queue for slot.... +06:22:56 ============================================================================ +06:22:56 Slot Id : <125> +06:22:56 Transaction Type : REQUEST +06:22:56 Received From : +06:22:56 ============================================================================ +06:22:56 FNo. Len. Field Value +06:22:56 ============================================================================ +06:22:56 [ 1] [ 4] [0800] +06:22:56 [ 2] [ 5] [02531] +06:22:56 [ 3] [ 6] [579068] +06:22:56 [ 7] [ 10] [0319232256] +06:22:56 [ 11] [ 6] [806782] +06:22:56 [ 15] [ 10] [0319232256] +06:22:56 [ 37] [ 11] [57906806782] +06:22:56 [ 70] [ 3] [001] +06:22:56 ============================================================================ +06:22:56 + + +waiting on router queue for slot.... +06:22:56 ============================================================================ +06:22:56 Slot Id : <125> +06:22:56 Transaction Type : RESPONSE +06:22:56 Received From : +06:22:56 ============================================================================ +06:22:56 FNo. Len. Field Value +06:22:56 ============================================================================ +06:22:56 [ 1] [ 4] [0810] +06:22:56 [ 7] [ 10] [0319232256] +06:22:56 [ 11] [ 6] [806782] +06:22:56 [ 15] [ 4] [0319] +06:22:56 [ 37] [ 12] [57906806782] +06:22:56 [ 39] [ 2] [00] +06:22:56 [ 70] [ 3] [001] +06:22:56 ============================================================================ +06:22:56 Sending to : +06:22:56 ============================================================================ +06:22:56 + + +waiting on router queue for slot.... +06:23:11 ============================================================================ +06:23:11 Slot Id : <95> +06:23:11 Transaction Type : REQUEST +06:23:11 Received From : +06:23:11 ============================================================================ +06:23:11 FNo. Len. Field Value +06:23:11 ============================================================================ +06:23:11 [ 1] [ 4] [0800] +06:23:11 [ 7] [ 10] [0319112220] +06:23:11 [ 11] [ 6] [154867] +06:23:11 [ 70] [ 3] [301] +06:23:11 ============================================================================ +06:23:11 + + +waiting on router queue for slot.... +06:23:11 Sending to : +06:23:11 ============================================================================ +06:23:11 ============================================================================ +06:23:11 Slot Id : <95> +06:23:11 Transaction Type : RESPONSE +06:23:11 Received From : +06:23:11 ============================================================================ +06:23:11 FNo. Len. Field Value +06:23:11 ============================================================================ +06:23:11 [ 1] [ 4] [0810] +06:23:11 [ 7] [ 10] [0319112220] +06:23:11 [ 11] [ 6] [154867] +06:23:11 [ 39] [ 2] [00] +06:23:11 [ 70] [ 3] [301] +06:23:11 ============================================================================ +06:23:11 Calculate Source COMM Id = 2 +06:23:11 ============================================================================ +06:23:11 + + +waiting on router queue for slot.... +06:23:21 ============================================================================ +06:23:21 Slot Id : <75> +06:23:21 Transaction Type : REQUEST +06:23:21 Received From : +06:23:21 ============================================================================ +06:23:21 FNo. Len. Field Value +06:23:21 ============================================================================ +06:23:21 [ 1] [ 4] [0800] +06:23:21 [ 7] [ 10] [0319112230] +06:23:21 [ 11] [ 6] [154868] +06:23:21 [ 70] [ 3] [301] +06:23:21 ============================================================================ +06:23:21 + + +waiting on router queue for slot.... +06:23:21 Sending to : +06:23:21 ============================================================================ +06:23:21 ============================================================================ +06:23:21 Slot Id : <75> +06:23:21 Transaction Type : RESPONSE +06:23:21 Received From : +06:23:21 ============================================================================ +06:23:21 FNo. Len. Field Value +06:23:21 ============================================================================ +06:23:21 [ 1] [ 4] [0810] +06:23:21 [ 7] [ 10] [0319112230] +06:23:21 [ 11] [ 6] [154868] +06:23:21 [ 39] [ 2] [00] +06:23:21 [ 70] [ 3] [301] +06:23:21 ============================================================================ +06:23:21 Calculate Source COMM Id = 2 +06:23:21 ============================================================================ +06:23:21 + + +waiting on router queue for slot.... +06:23:30 ============================================================================ +06:23:30 Slot Id : <53> +06:23:30 Transaction Type : REQUEST +06:23:30 Received From : +06:23:30 ============================================================================ +06:23:30 FNo. Len. Field Value +06:23:30 ============================================================================ +06:23:30 [ 1] [ 4] [0800] +06:23:30 [ 7] [ 10] [0320133520] +06:23:30 [ 11] [ 6] [063520] +06:23:30 [ 37] [ 12] [57906063520] +06:23:30 [ 70] [ 3] [301] +06:23:30 ============================================================================ +06:23:30 + + +waiting on router queue for slot.... +06:23:30 Sending to : +06:23:30 ============================================================================ +06:23:30 ============================================================================ +06:23:30 Slot Id : <53> +06:23:30 Transaction Type : RESPONSE +06:23:30 Received From : +06:23:30 ============================================================================ +06:23:30 FNo. Len. Field Value +06:23:30 ============================================================================ +06:23:30 [ 1] [ 4] [0810] +06:23:30 [ 7] [ 10] [0320133520] +06:23:30 [ 11] [ 6] [063520] +06:23:30 [ 37] [ 12] [579060635200] +06:23:30 [ 39] [ 2] [00] +06:23:30 [ 70] [ 3] [810] +06:23:30 ============================================================================ +06:23:30 Calculate Source COMM Id = 6 +06:23:30 ============================================================================ +06:23:30 + + +waiting on router queue for slot.... +06:23:32 ============================================================================ +06:23:32 Slot Id : <134> +06:23:32 Transaction Type : REQUEST +06:23:32 Received From : +06:23:32 ============================================================================ +06:23:32 FNo. Len. Field Value +06:23:32 ============================================================================ +06:23:32 [ 1] [ 4] [0800] +06:23:32 [ 7] [ 10] [0319112241] +06:23:32 [ 11] [ 6] [154869] +06:23:32 [ 70] [ 3] [301] +06:23:32 ============================================================================ +06:23:32 + + +waiting on router queue for slot.... +06:23:32 Sending to : +06:23:32 ============================================================================ +06:23:32 ============================================================================ +06:23:32 Slot Id : <134> +06:23:32 Transaction Type : RESPONSE +06:23:32 Received From : +06:23:32 ============================================================================ +06:23:32 FNo. Len. Field Value +06:23:32 ============================================================================ +06:23:32 [ 1] [ 4] [0810] +06:23:32 [ 7] [ 10] [0319112241] +06:23:32 [ 11] [ 6] [154869] +06:23:32 [ 39] [ 2] [00] +06:23:32 [ 70] [ 3] [301] +06:23:32 ============================================================================ +06:23:32 Calculate Source COMM Id = 2 +06:23:32 ============================================================================ +06:23:32 + + +waiting on router queue for slot.... +06:23:43 ============================================================================ +06:23:43 Slot Id : <96> +06:23:43 Transaction Type : REQUEST +06:23:43 Received From : +06:23:43 ============================================================================ +06:23:43 FNo. Len. Field Value +06:23:43 ============================================================================ +06:23:43 [ 1] [ 4] [0800] +06:23:43 [ 7] [ 10] [0319112251] +06:23:43 [ 11] [ 6] [154870] +06:23:43 [ 70] [ 3] [301] +06:23:43 ============================================================================ +06:23:43 + + +waiting on router queue for slot.... +06:23:43 Sending to : +06:23:43 ============================================================================ +06:23:43 ============================================================================ +06:23:43 Slot Id : <96> +06:23:43 Transaction Type : RESPONSE +06:23:43 Received From : +06:23:43 ============================================================================ +06:23:43 FNo. Len. Field Value +06:23:43 ============================================================================ +06:23:43 [ 1] [ 4] [0810] +06:23:43 [ 7] [ 10] [0319112251] +06:23:43 [ 11] [ 6] [154870] +06:23:43 [ 39] [ 2] [00] +06:23:43 [ 70] [ 3] [301] +06:23:43 ============================================================================ +06:23:43 Calculate Source COMM Id = 2 +06:23:43 ============================================================================ +06:23:43 + + +waiting on router queue for slot.... +06:23:54 ============================================================================ +06:23:54 Slot Id : <98> +06:23:54 Transaction Type : REQUEST +06:23:54 Received From : +06:23:54 ============================================================================ +06:23:54 FNo. Len. Field Value +06:23:54 ============================================================================ +06:23:54 [ 1] [ 4] [0800] +06:23:54 [ 7] [ 10] [0319112303] +06:23:54 [ 11] [ 6] [154871] +06:23:54 [ 70] [ 3] [301] +06:23:54 ============================================================================ +06:23:54 + + +waiting on router queue for slot.... +06:23:54 Sending to : +06:23:54 ============================================================================ +06:23:54 ============================================================================ +06:23:54 Slot Id : <98> +06:23:54 Transaction Type : RESPONSE +06:23:54 Received From : +06:23:54 ============================================================================ +06:23:54 FNo. Len. Field Value +06:23:54 ============================================================================ +06:23:54 [ 1] [ 4] [0810] +06:23:54 [ 7] [ 10] [0319112303] +06:23:54 [ 11] [ 6] [154871] +06:23:54 [ 39] [ 2] [00] +06:23:54 [ 70] [ 3] [301] +06:23:54 ============================================================================ +06:23:54 Calculate Source COMM Id = 2 +06:23:54 ============================================================================ +06:23:54 + + +waiting on router queue for slot.... +06:23:58 ============================================================================ +06:23:58 Slot Id : <103> +06:23:58 Transaction Type : REQUEST +06:23:58 Received From : +06:23:58 ============================================================================ +06:23:58 FNo. Len. Field Value +06:23:58 ============================================================================ +06:23:58 [ 1] [ 4] [0800] +06:23:58 [ 2] [ 5] [02531] +06:23:58 [ 3] [ 6] [579068] +06:23:58 [ 7] [ 10] [0319232358] +06:23:58 [ 11] [ 6] [806783] +06:23:58 [ 15] [ 10] [0319232358] +06:23:58 [ 37] [ 11] [57906806783] +06:23:58 [ 70] [ 3] [001] +06:23:58 ============================================================================ +06:23:58 + + +waiting on router queue for slot.... +06:23:58 ============================================================================ +06:23:58 Slot Id : <103> +06:23:58 Transaction Type : RESPONSE +06:23:58 Received From : +06:23:58 ============================================================================ +06:23:58 FNo. Len. Field Value +06:23:58 ============================================================================ +06:23:58 [ 1] [ 4] [0810] +06:23:58 [ 7] [ 10] [0319232358] +06:23:58 [ 11] [ 6] [806783] +06:23:58 [ 15] [ 4] [0319] +06:23:58 [ 37] [ 12] [57906806783] +06:23:58 [ 39] [ 2] [00] +06:23:58 [ 70] [ 3] [001] +06:23:58 ============================================================================ +06:23:58 Sending to : +06:23:58 ============================================================================ +06:23:58 + + +waiting on router queue for slot.... +06:24:01 ============================================================================ +06:24:01 Slot Id : <71> +06:24:01 Transaction Type : REQUEST +06:24:01 Received From : +06:24:01 ============================================================================ +06:24:01 FNo. Len. Field Value +06:24:01 ============================================================================ +06:24:01 [ 1] [ 4] [0800] +06:24:01 [ 7] [ 10] [0320062349] +06:24:01 [ 11] [ 6] [089155] +06:24:01 [ 37] [ 12] [507906089155] +06:24:01 [ 70] [ 3] [ ] +06:24:01 ============================================================================ +06:24:01 + + +waiting on router queue for slot.... +06:24:01 Sending to : +06:24:01 ============================================================================ +06:24:01 ============================================================================ +06:24:01 Slot Id : <71> +06:24:01 Transaction Type : RESPONSE +06:24:01 Received From : +06:24:01 ============================================================================ +06:24:01 FNo. Len. Field Value +06:24:01 ============================================================================ +06:24:01 [ 1] [ 4] [0810] +06:24:01 [ 7] [ 10] [0320062349] +06:24:01 [ 11] [ 6] [089155] +06:24:01 [ 37] [ 12] [507906089155] +06:24:01 [ 39] [ 2] [91] +06:24:01 [ 70] [ 3] [ ] +06:24:01 ============================================================================ +06:24:01 Calculate Source COMM Id = 3 +06:24:01 ============================================================================ +06:24:01 + + +waiting on router queue for slot.... +06:24:09 ============================================================================ +06:24:09 Slot Id : <101> +06:24:09 Transaction Type : REQUEST +06:24:09 Received From : +06:24:09 ============================================================================ +06:24:09 FNo. Len. Field Value +06:24:09 ============================================================================ +06:24:09 [ 1] [ 4] [0800] +06:24:09 [ 7] [ 10] [0319112318] +06:24:09 [ 11] [ 6] [154872] +06:24:09 [ 70] [ 3] [301] +06:24:09 ============================================================================ +06:24:09 + + +waiting on router queue for slot.... +06:24:09 Sending to : +06:24:09 ============================================================================ +06:24:09 ============================================================================ +06:24:09 Slot Id : <101> +06:24:09 Transaction Type : RESPONSE +06:24:09 Received From : +06:24:09 ============================================================================ +06:24:09 FNo. Len. Field Value +06:24:09 ============================================================================ +06:24:09 [ 1] [ 4] [0810] +06:24:09 [ 7] [ 10] [0319112318] +06:24:09 [ 11] [ 6] [154872] +06:24:09 [ 39] [ 2] [00] +06:24:09 [ 70] [ 3] [301] +06:24:09 ============================================================================ +06:24:09 Calculate Source COMM Id = 2 +06:24:09 ============================================================================ +06:24:09 + + +waiting on router queue for slot.... +06:24:20 ============================================================================ +06:24:20 Slot Id : <102> +06:24:20 Transaction Type : REQUEST +06:24:20 Received From : +06:24:20 ============================================================================ +06:24:20 FNo. Len. Field Value +06:24:20 ============================================================================ +06:24:20 [ 1] [ 4] [0800] +06:24:20 [ 7] [ 10] [0319112328] +06:24:20 [ 11] [ 6] [154873] +06:24:20 [ 70] [ 3] [301] +06:24:20 ============================================================================ +06:24:20 + + +waiting on router queue for slot.... +06:24:20 Sending to : +06:24:20 ============================================================================ +06:24:20 ============================================================================ +06:24:20 Slot Id : <102> +06:24:20 Transaction Type : RESPONSE +06:24:20 Received From : +06:24:20 ============================================================================ +06:24:20 FNo. Len. Field Value +06:24:20 ============================================================================ +06:24:20 [ 1] [ 4] [0810] +06:24:20 [ 7] [ 10] [0319112328] +06:24:20 [ 11] [ 6] [154873] +06:24:20 [ 39] [ 2] [00] +06:24:20 [ 70] [ 3] [301] +06:24:20 ============================================================================ +06:24:20 Calculate Source COMM Id = 2 +06:24:20 ============================================================================ +06:24:20 + + +waiting on router queue for slot.... +06:24:31 ============================================================================ +06:24:31 Slot Id : <109> +06:24:31 Transaction Type : REQUEST +06:24:31 Received From : +06:24:31 ============================================================================ +06:24:31 FNo. Len. Field Value +06:24:31 ============================================================================ +06:24:31 [ 1] [ 4] [0800] +06:24:31 [ 7] [ 10] [0319112339] +06:24:31 [ 11] [ 6] [154874] +06:24:31 [ 70] [ 3] [301] +06:24:31 ============================================================================ +06:24:31 + + +waiting on router queue for slot.... +06:24:31 Sending to : +06:24:31 ============================================================================ +06:24:31 ============================================================================ +06:24:31 Slot Id : <109> +06:24:31 Transaction Type : RESPONSE +06:24:31 Received From : +06:24:31 ============================================================================ +06:24:31 FNo. Len. Field Value +06:24:31 ============================================================================ +06:24:31 [ 1] [ 4] [0810] +06:24:31 [ 7] [ 10] [0319112339] +06:24:31 [ 11] [ 6] [154874] +06:24:31 [ 39] [ 2] [00] +06:24:31 [ 70] [ 3] [301] +06:24:31 ============================================================================ +06:24:31 Calculate Source COMM Id = 2 +06:24:31 ============================================================================ +06:24:31 + + +waiting on router queue for slot.... +06:24:35 ============================================================================ +06:24:35 Slot Id : <70> +06:24:35 Transaction Type : REQUEST +06:24:35 Received From : +06:24:35 ============================================================================ +06:24:35 FNo. Len. Field Value +06:24:35 ============================================================================ +06:24:35 [ 1] [ 4] [0800] +06:24:35 [ 7] [ 10] [0320133625] +06:24:35 [ 11] [ 6] [063625] +06:24:35 [ 37] [ 12] [57906063625] +06:24:35 [ 70] [ 3] [301] +06:24:35 ============================================================================ +06:24:35 + + +waiting on router queue for slot.... +06:24:35 Sending to : +06:24:35 ============================================================================ +06:24:35 ============================================================================ +06:24:35 Slot Id : <70> +06:24:35 Transaction Type : RESPONSE +06:24:35 Received From : +06:24:35 ============================================================================ +06:24:35 FNo. Len. Field Value +06:24:35 ============================================================================ +06:24:35 [ 1] [ 4] [0810] +06:24:35 [ 7] [ 10] [0320133625] +06:24:35 [ 11] [ 6] [063625] +06:24:35 [ 37] [ 12] [579060636250] +06:24:35 [ 39] [ 2] [00] +06:24:35 [ 70] [ 3] [810] +06:24:35 ============================================================================ +06:24:35 Calculate Source COMM Id = 6 +06:24:35 ============================================================================ +06:24:35 + + +waiting on router queue for slot.... +06:24:47 ============================================================================ +06:24:47 Slot Id : <136> +06:24:47 Transaction Type : REQUEST +06:24:47 Received From : +06:24:47 ============================================================================ +06:24:47 FNo. Len. Field Value +06:24:47 ============================================================================ +06:24:47 [ 1] [ 4] [0800] +06:24:47 [ 7] [ 10] [0319112355] +06:24:47 [ 11] [ 6] [154875] +06:24:47 [ 70] [ 3] [301] +06:24:47 ============================================================================ +06:24:47 + + +waiting on router queue for slot.... +06:24:47 Sending to : +06:24:47 ============================================================================ +06:24:47 ============================================================================ +06:24:47 Slot Id : <136> +06:24:47 Transaction Type : RESPONSE +06:24:47 Received From : +06:24:47 ============================================================================ +06:24:47 FNo. Len. Field Value +06:24:47 ============================================================================ +06:24:47 [ 1] [ 4] [0810] +06:24:47 [ 7] [ 10] [0319112355] +06:24:47 [ 11] [ 6] [154875] +06:24:47 [ 39] [ 2] [00] +06:24:47 [ 70] [ 3] [301] +06:24:47 ============================================================================ +06:24:47 Calculate Source COMM Id = 2 +06:24:47 ============================================================================ +06:24:47 + + +waiting on router queue for slot.... +06:24:54 ============================================================================ +06:24:54 Slot Id : <131> +06:24:54 Transaction Type : REQUEST +06:24:54 Received From : +06:24:54 ============================================================================ +06:24:54 FNo. Len. Field Value +06:24:54 ============================================================================ +06:24:54 [ 1] [ 4] [0800] +06:24:54 [ 7] [ 10] [0319233242] +06:24:54 [ 11] [ 6] [004784] +06:24:54 [ 37] [ 12] [57906004784] +06:24:54 [ 70] [ 3] [301] +06:24:54 ============================================================================ +06:24:54 + + +waiting on router queue for slot.... +06:24:54 Sending to : +06:24:54 ============================================================================ +06:24:54 ============================================================================ +06:24:54 Slot Id : <131> +06:24:54 Transaction Type : RESPONSE +06:24:54 Received From : +06:24:54 ============================================================================ +06:24:54 FNo. Len. Field Value +06:24:54 ============================================================================ +06:24:54 [ 1] [ 4] [0810] +06:24:54 [ 7] [ 10] [0319233242] +06:24:54 [ 11] [ 6] [004784] +06:24:54 [ 37] [ 12] [579060047840] +06:24:54 [ 39] [ 2] [00] +06:24:54 [ 70] [ 3] [810] +06:24:54 ============================================================================ +06:24:54 Calculate Source COMM Id = 1 +06:24:54 ============================================================================ +06:24:54 + + +waiting on router queue for slot.... +06:25:00 ============================================================================ +06:25:00 Slot Id : <129> +06:25:00 Transaction Type : REQUEST +06:25:00 Received From : +06:25:00 ============================================================================ +06:25:00 FNo. Len. Field Value +06:25:00 ============================================================================ +06:25:00 [ 1] [ 4] [0800] +06:25:00 [ 2] [ 5] [02531] +06:25:00 [ 3] [ 6] [579068] +06:25:00 [ 7] [ 10] [0319232500] +06:25:00 [ 11] [ 6] [806784] +06:25:00 [ 15] [ 10] [0319232500] +06:25:00 [ 37] [ 11] [57906806784] +06:25:00 [ 70] [ 3] [001] +06:25:00 ============================================================================ +06:25:00 + + +waiting on router queue for slot.... +06:25:00 ============================================================================ +06:25:00 Slot Id : <129> +06:25:00 Transaction Type : RESPONSE +06:25:00 Received From : +06:25:00 ============================================================================ +06:25:00 FNo. Len. Field Value +06:25:00 ============================================================================ +06:25:00 [ 1] [ 4] [0810] +06:25:00 [ 7] [ 10] [0319232500] +06:25:00 [ 11] [ 6] [806784] +06:25:00 [ 15] [ 4] [0319] +06:25:00 [ 37] [ 12] [57906806784] +06:25:00 [ 39] [ 2] [00] +06:25:00 [ 70] [ 3] [001] +06:25:00 ============================================================================ +06:25:00 Sending to : +06:25:00 ============================================================================ +06:25:00 + + +waiting on router queue for slot.... +06:25:02 ============================================================================ +06:25:02 Slot Id : <85> +06:25:02 Transaction Type : REQUEST +06:25:02 Received From : +06:25:02 ============================================================================ +06:25:02 FNo. Len. Field Value +06:25:02 ============================================================================ +06:25:02 [ 1] [ 4] [0800] +06:25:02 [ 7] [ 10] [0319112411] +06:25:02 [ 11] [ 6] [154876] +06:25:02 [ 70] [ 3] [301] +06:25:02 ============================================================================ +06:25:02 + + +waiting on router queue for slot.... +06:25:02 Sending to : +06:25:02 ============================================================================ +06:25:02 ============================================================================ +06:25:02 Slot Id : <85> +06:25:02 Transaction Type : RESPONSE +06:25:02 Received From : +06:25:02 ============================================================================ +06:25:02 FNo. Len. Field Value +06:25:02 ============================================================================ +06:25:02 [ 1] [ 4] [0810] +06:25:02 [ 7] [ 10] [0319112411] +06:25:02 [ 11] [ 6] [154876] +06:25:02 [ 39] [ 2] [00] +06:25:02 [ 70] [ 3] [301] +06:25:02 ============================================================================ +06:25:02 Calculate Source COMM Id = 2 +06:25:02 ============================================================================ +06:25:02 + + +waiting on router queue for slot.... +06:25:13 ============================================================================ +06:25:13 Slot Id : <105> +06:25:13 Transaction Type : REQUEST +06:25:13 Received From : +06:25:13 ============================================================================ +06:25:13 FNo. Len. Field Value +06:25:13 ============================================================================ +06:25:13 [ 1] [ 4] [0800] +06:25:13 [ 7] [ 10] [0319112421] +06:25:13 [ 11] [ 6] [154877] +06:25:13 [ 70] [ 3] [301] +06:25:13 ============================================================================ +06:25:13 + + +waiting on router queue for slot.... +06:25:13 Sending to : +06:25:13 ============================================================================ +06:25:13 ============================================================================ +06:25:13 Slot Id : <105> +06:25:13 Transaction Type : RESPONSE +06:25:13 Received From : +06:25:13 ============================================================================ +06:25:13 FNo. Len. Field Value +06:25:13 ============================================================================ +06:25:13 [ 1] [ 4] [0810] +06:25:13 [ 7] [ 10] [0319112421] +06:25:13 [ 11] [ 6] [154877] +06:25:13 [ 39] [ 2] [00] +06:25:13 [ 70] [ 3] [301] +06:25:13 ============================================================================ +06:25:13 Calculate Source COMM Id = 2 +06:25:13 ============================================================================ +06:25:13 + + +waiting on router queue for slot.... +06:25:25 ============================================================================ +06:25:25 Slot Id : <87> +06:25:25 Transaction Type : REQUEST +06:25:25 Received From : +06:25:25 ============================================================================ +06:25:25 FNo. Len. Field Value +06:25:25 ============================================================================ +06:25:25 [ 1] [ 4] [0800] +06:25:25 [ 7] [ 10] [0319112433] +06:25:25 [ 11] [ 6] [154878] +06:25:25 [ 70] [ 3] [301] +06:25:25 ============================================================================ +06:25:25 + + +waiting on router queue for slot.... +06:25:25 Sending to : +06:25:25 ============================================================================ +06:25:25 ============================================================================ +06:25:25 Slot Id : <87> +06:25:25 Transaction Type : RESPONSE +06:25:25 Received From : +06:25:25 ============================================================================ +06:25:25 FNo. Len. Field Value +06:25:25 ============================================================================ +06:25:25 [ 1] [ 4] [0810] +06:25:25 [ 7] [ 10] [0319112433] +06:25:25 [ 11] [ 6] [154878] +06:25:25 [ 39] [ 2] [00] +06:25:25 [ 70] [ 3] [301] +06:25:25 ============================================================================ +06:25:25 Calculate Source COMM Id = 2 +06:25:25 ============================================================================ +06:25:25 + + +waiting on router queue for slot.... +06:25:26 ============================================================================ +06:25:26 Slot Id : <104> +06:25:26 Transaction Type : REQUEST +06:25:26 Received From : +06:25:26 ============================================================================ +06:25:26 FNo. Len. Field Value +06:25:26 ============================================================================ +06:25:26 [ 1] [ 4] [0200] +06:25:26 [ 2] [ 16] [6213545000819965] +06:25:26 [ 3] [ 6] [012000] +06:25:26 [ 4] [ 12] [000030000000] +06:25:26 [ 7] [ 10] [0320063313] +06:25:26 [ 11] [ 6] [009785] +06:25:26 [ 12] [ 6] [063313] +06:25:26 [ 13] [ 4] [0320] +06:25:26 [ 14] [ 4] [4912] +06:25:26 [ 15] [ 4] [0320] +06:25:26 [ 18] [ 4] [6011] +06:25:26 [ 22] [ 3] [900] +06:25:26 [ 25] [ 2] [02] +06:25:26 [ 28] [ 9] [D00002000] +06:25:26 [ 32] [ 6] [220699] +06:25:26 [ 35] [ 32] [6213545000819965=491212011996528] +06:25:26 [ 37] [ 12] [507900270558] +06:25:26 [ 41] [ 8] [01001500] +06:25:26 [ 42] [ 15] [APTRA ] +06:25:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +06:25:26 [ 49] [ 3] [418] +06:25:26 [ 52] [ 16] [999E1E889854367B] +06:25:26 ============================================================================ +06:25:26 + + +waiting on router queue for slot.... +06:25:26 Sending to : +06:25:26 ============================================================================ +06:25:26 Sending to : +06:25:26 ============================================================================ +06:25:26 ============================================================================ +06:25:26 Slot Id : <104> +06:25:26 Transaction Type : REQUEST +06:25:26 Received From : +06:25:26 ============================================================================ +06:25:26 FNo. Len. Field Value +06:25:26 ============================================================================ +06:25:26 [ 1] [ 4] [0200] +06:25:26 [ 2] [ 16] [6213545000819965] +06:25:26 [ 3] [ 6] [012000] +06:25:26 [ 4] [ 12] [000030000000] +06:25:26 [ 7] [ 10] [0320063313] +06:25:26 [ 11] [ 6] [009785] +06:25:26 [ 12] [ 6] [063313] +06:25:26 [ 13] [ 4] [0320] +06:25:26 [ 14] [ 4] [4912] +06:25:26 [ 15] [ 4] [0320] +06:25:26 [ 18] [ 4] [6011] +06:25:26 [ 22] [ 3] [900] +06:25:26 [ 25] [ 2] [02] +06:25:26 [ 28] [ 9] [D00002000] +06:25:26 [ 32] [ 6] [220699] +06:25:26 [ 35] [ 32] [6213545000819965=491212011996528] +06:25:26 [ 37] [ 12] [507900270558] +06:25:26 [ 41] [ 8] [01001500] +06:25:26 [ 42] [ 15] [APTRA ] +06:25:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +06:25:26 [ 49] [ 3] [418] +06:25:26 [ 52] [ 16] [999E1E889854367B] +06:25:26 ============================================================================ +06:25:26 + + +waiting on router queue for slot.... +06:25:26 Sending to : +06:25:26 ============================================================================ +06:25:26 ============================================================================ +06:25:26 Slot Id : <104> +06:25:26 Transaction Type : REQUEST +06:25:26 Received From : +06:25:26 ============================================================================ +06:25:26 FNo. Len. Field Value +06:25:26 ============================================================================ +06:25:26 [ 1] [ 4] [0200] +06:25:26 [ 2] [ 16] [6213545000819965] +06:25:26 [ 3] [ 6] [012000] +06:25:26 [ 4] [ 12] [000030000000] +06:25:26 [ 7] [ 10] [0320063313] +06:25:26 [ 11] [ 6] [009785] +06:25:26 [ 12] [ 6] [063313] +06:25:26 [ 13] [ 4] [0320] +06:25:26 [ 14] [ 4] [4912] +06:25:26 [ 15] [ 4] [0320] +06:25:26 [ 18] [ 4] [6011] +06:25:26 [ 22] [ 3] [900] +06:25:26 [ 25] [ 2] [02] +06:25:26 [ 28] [ 9] [D00002000] +06:25:26 [ 32] [ 6] [220699] +06:25:26 [ 35] [ 32] [6213545000819965=491212011996528] +06:25:26 [ 37] [ 12] [507900270558] +06:25:26 [ 41] [ 8] [01001500] +06:25:26 [ 42] [ 15] [APTRA ] +06:25:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +06:25:26 [ 49] [ 3] [418] +06:25:26 [ 52] [ 16] [2A691320F1401251] +06:25:26 ============================================================================ +06:25:26 + + +waiting on router queue for slot.... +06:25:26 Sending to : <0> +06:25:26 ============================================================================ +06:25:27 ============================================================================ +06:25:27 Slot Id : <104> +06:25:27 Transaction Type : RESPONSE +06:25:27 Received From : +06:25:27 ============================================================================ +06:25:27 FNo. Len. Field Value +06:25:27 ============================================================================ +06:25:27 [ 1] [ 4] [0210] +06:25:27 [ 2] [ 16] [6213545000819965] +06:25:27 [ 3] [ 6] [012000] +06:25:27 [ 4] [ 12] [000030000000] +06:25:27 [ 7] [ 10] [0320063313] +06:25:27 [ 11] [ 6] [009785] +06:25:27 [ 12] [ 6] [063313] +06:25:27 [ 13] [ 4] [0320] +06:25:27 [ 15] [ 4] [0320] +06:25:27 [ 18] [ 4] [6011] +06:25:27 [ 32] [ 6] [220699] +06:25:27 [ 35] [ 32] [6213545000819965=491212011996528] +06:25:27 [ 37] [ 12] [507900270558] +06:25:27 [ 38] [ 6] [995471] +06:25:27 [ 39] [ 2] [00] +06:25:27 [ 41] [ 8] [01001500] +06:25:27 [ 49] [ 3] [418] +06:25:27 [ 54] [ 40] [2001418C0002885108062002418C000288510806] +06:25:27 ============================================================================ +06:25:27 Sending to : +06:25:27 ============================================================================ +06:25:27 + + +waiting on router queue for slot.... +06:25:27 ============================================================================ +06:25:27 Slot Id : <138> +06:25:27 Transaction Type : REQUEST +06:25:27 Received From : +06:25:27 ============================================================================ +06:25:27 FNo. Len. Field Value +06:25:27 ============================================================================ +06:25:27 [ 1] [ 4] [0200] +06:25:27 [ 2] [ 16] [6688990020017313] +06:25:27 [ 3] [ 6] [301000] +06:25:27 [ 4] [ 12] [000000000000] +06:25:27 [ 7] [ 10] [0320062524] +06:25:27 [ 11] [ 6] [663504] +06:25:27 [ 12] [ 6] [062524] +06:25:27 [ 13] [ 4] [0320] +06:25:27 [ 15] [ 4] [0320] +06:25:27 [ 18] [ 4] [6011] +06:25:27 [ 22] [ 3] [900] +06:25:27 [ 25] [ 2] [02] +06:25:27 [ 28] [ 9] [D00000000] +06:25:27 [ 32] [ 6] [621354] +06:25:27 [ 35] [ 37] [6688990020017313=98011261178498300000] +06:25:27 [ 37] [ 12] [507903365303] +06:25:27 [ 41] [ 8] [13001600] +06:25:27 [ 42] [ 15] [NATIVE ] +06:25:27 [ 43] [ 40] [Khangkhai College Paek LAO] +06:25:27 [ 49] [ 3] [418] +06:25:27 [ 52] [ 16] [80F72132B38C4CAC] +06:25:27 ============================================================================ +06:25:27 + + +waiting on router queue for slot.... +06:25:27 Sending to : +06:25:27 ============================================================================ +06:25:27 Sending to : +06:25:27 ============================================================================ +06:25:28 ============================================================================ +06:25:28 Slot Id : <138> +06:25:28 Transaction Type : REQUEST +06:25:28 Received From : +06:25:28 ============================================================================ +06:25:28 FNo. Len. Field Value +06:25:28 ============================================================================ +06:25:28 [ 1] [ 4] [0200] +06:25:28 [ 2] [ 16] [6688990020017313] +06:25:28 [ 3] [ 6] [301000] +06:25:28 [ 4] [ 12] [000000000000] +06:25:28 [ 7] [ 10] [0320062524] +06:25:28 [ 11] [ 6] [663504] +06:25:28 [ 12] [ 6] [062524] +06:25:28 [ 13] [ 4] [0320] +06:25:28 [ 15] [ 4] [0320] +06:25:28 [ 18] [ 4] [6011] +06:25:28 [ 22] [ 3] [900] +06:25:28 [ 25] [ 2] [02] +06:25:28 [ 28] [ 9] [D00000000] +06:25:28 [ 32] [ 6] [621354] +06:25:28 [ 35] [ 37] [6688990020017313=98011261178498300000] +06:25:28 [ 37] [ 12] [507903365303] +06:25:28 [ 41] [ 8] [13001600] +06:25:28 [ 42] [ 15] [NATIVE ] +06:25:28 [ 43] [ 40] [Khangkhai College Paek LAO] +06:25:28 [ 49] [ 3] [418] +06:25:28 [ 52] [ 16] [80F72132B38C4CAC] +06:25:28 ============================================================================ +06:25:28 + + +waiting on router queue for slot.... +06:25:28 Sending to : +06:25:28 ============================================================================ +06:25:28 ============================================================================ +06:25:28 Slot Id : <138> +06:25:28 Transaction Type : REQUEST +06:25:28 Received From : +06:25:28 ============================================================================ +06:25:28 FNo. Len. Field Value +06:25:28 ============================================================================ +06:25:28 [ 1] [ 4] [0200] +06:25:28 [ 2] [ 16] [6688990020017313] +06:25:28 [ 3] [ 6] [301000] +06:25:28 [ 4] [ 12] [000000000000] +06:25:28 [ 7] [ 10] [0320062524] +06:25:28 [ 11] [ 6] [663504] +06:25:28 [ 12] [ 6] [062524] +06:25:28 [ 13] [ 4] [0320] +06:25:28 [ 15] [ 4] [0320] +06:25:28 [ 18] [ 4] [6011] +06:25:28 [ 22] [ 3] [900] +06:25:28 [ 25] [ 2] [02] +06:25:28 [ 28] [ 9] [D00000000] +06:25:28 [ 32] [ 6] [621354] +06:25:28 [ 35] [ 37] [6688990020017313=98011261178498300000] +06:25:28 [ 37] [ 12] [507903365303] +06:25:28 [ 41] [ 8] [13001600] +06:25:28 [ 42] [ 15] [NATIVE ] +06:25:28 [ 43] [ 40] [Khangkhai College Paek LAO] +06:25:28 [ 49] [ 3] [418] +06:25:28 [ 52] [ 16] [C3BF736CED3A2CCD] +06:25:28 ============================================================================ +06:25:28 + + +waiting on router queue for slot.... +06:25:28 Sending to : <4> +06:25:28 ============================================================================ +06:25:28 ============================================================================ +06:25:28 Slot Id : <104> +06:25:28 Transaction Type : RESPONSE +06:25:28 Received From : +06:25:28 ============================================================================ +06:25:28 FNo. Len. Field Value +06:25:28 ============================================================================ +06:25:28 [ 1] [ 4] [0210] +06:25:28 [ 2] [ 16] [6213545000819965] +06:25:28 [ 3] [ 6] [012000] +06:25:28 [ 4] [ 12] [000030000000] +06:25:28 [ 7] [ 10] [0320063313] +06:25:28 [ 11] [ 6] [009785] +06:25:28 [ 12] [ 6] [063313] +06:25:28 [ 13] [ 4] [0320] +06:25:28 [ 15] [ 4] [0320] +06:25:28 [ 18] [ 4] [6011] +06:25:28 [ 32] [ 6] [220699] +06:25:28 [ 35] [ 32] [6213545000819965=491212011996528] +06:25:28 [ 37] [ 12] [507900270558] +06:25:28 [ 38] [ 6] [995471] +06:25:28 [ 39] [ 2] [00] +06:25:28 [ 41] [ 8] [01001500] +06:25:28 [ 49] [ 3] [418] +06:25:28 [ 54] [ 40] [2001418C0002885108062002418C000288510806] +06:25:28 ============================================================================ +06:25:28 Calculate Source COMM Id = 1 +06:25:28 ============================================================================ +06:25:28 + + +waiting on router queue for slot.... +06:25:29 ============================================================================ +06:25:29 Slot Id : <138> +06:25:29 Transaction Type : RESPONSE +06:25:29 Received From : +06:25:29 ============================================================================ +06:25:29 FNo. Len. Field Value +06:25:29 ============================================================================ +06:25:29 [ 1] [ 4] [0210] +06:25:29 [ 2] [ 16] [6688990020017313] +06:25:29 [ 3] [ 6] [301000] +06:25:29 [ 4] [ 12] [000000000000] +06:25:29 [ 11] [ 6] [663504] +06:25:29 [ 12] [ 6] [062524] +06:25:29 [ 15] [ 4] [0320] +06:25:29 [ 18] [ 4] [6011] +06:25:29 [ 32] [ 6] [621354] +06:25:29 [ 35] [ 37] [6688990020017313=98011261178498300000] +06:25:29 [ 37] [ 12] [507903365303] +06:25:29 [ 38] [ 6] [979947] +06:25:29 [ 39] [ 2] [00] +06:25:29 [ 41] [ 8] [13001600] +06:25:29 [ 49] [ 3] [418] +06:25:29 [ 54] [ 20] [1002418C000301279219] +06:25:29 ============================================================================ +06:25:29 Sending to : +06:25:29 ============================================================================ +06:25:29 + + +waiting on router queue for slot.... +06:25:30 ============================================================================ +06:25:30 Slot Id : <138> +06:25:30 Transaction Type : RESPONSE +06:25:30 Received From : +06:25:30 ============================================================================ +06:25:30 FNo. Len. Field Value +06:25:30 ============================================================================ +06:25:30 [ 1] [ 4] [0210] +06:25:30 [ 2] [ 16] [6688990020017313] +06:25:30 [ 3] [ 6] [301000] +06:25:30 [ 4] [ 12] [000000000000] +06:25:30 [ 11] [ 6] [663504] +06:25:30 [ 12] [ 6] [062524] +06:25:30 [ 15] [ 4] [0320] +06:25:30 [ 18] [ 4] [6011] +06:25:30 [ 32] [ 6] [621354] +06:25:30 [ 35] [ 37] [6688990020017313=98011261178498300000] +06:25:30 [ 37] [ 12] [507903365303] +06:25:30 [ 38] [ 6] [979947] +06:25:30 [ 39] [ 2] [00] +06:25:30 [ 41] [ 8] [13001600] +06:25:30 [ 49] [ 3] [418] +06:25:30 [ 54] [ 20] [1002418C000301279219] +06:25:30 ============================================================================ +06:25:30 Calculate Source COMM Id = 0 +06:25:30 ============================================================================ +06:25:30 + + +waiting on router queue for slot.... +06:25:35 ============================================================================ +06:25:35 Slot Id : <97> +06:25:35 Transaction Type : REQUEST +06:25:35 Received From : +06:25:35 ============================================================================ +06:25:35 FNo. Len. Field Value +06:25:35 ============================================================================ +06:25:35 [ 1] [ 4] [0800] +06:25:35 [ 7] [ 10] [0319112444] +06:25:35 [ 11] [ 6] [154879] +06:25:35 [ 70] [ 3] [301] +06:25:35 ============================================================================ +06:25:35 + + +waiting on router queue for slot.... +06:25:35 Sending to : +06:25:35 ============================================================================ +06:25:35 ============================================================================ +06:25:35 Slot Id : <97> +06:25:35 Transaction Type : RESPONSE +06:25:35 Received From : +06:25:35 ============================================================================ +06:25:35 FNo. Len. Field Value +06:25:35 ============================================================================ +06:25:35 [ 1] [ 4] [0810] +06:25:35 [ 7] [ 10] [0319112444] +06:25:35 [ 11] [ 6] [154879] +06:25:35 [ 39] [ 2] [00] +06:25:35 [ 70] [ 3] [301] +06:25:35 ============================================================================ +06:25:35 Calculate Source COMM Id = 2 +06:25:35 ============================================================================ +06:25:35 + + +waiting on router queue for slot.... +06:25:40 ============================================================================ +06:25:40 Slot Id : <117> +06:25:40 Transaction Type : REQUEST +06:25:40 Received From : +06:25:40 ============================================================================ +06:25:40 FNo. Len. Field Value +06:25:40 ============================================================================ +06:25:40 [ 1] [ 4] [0800] +06:25:40 [ 7] [ 10] [0320133730] +06:25:40 [ 11] [ 6] [063730] +06:25:40 [ 37] [ 12] [57906063730] +06:25:40 [ 70] [ 3] [301] +06:25:40 ============================================================================ +06:25:40 + + +waiting on router queue for slot.... +06:25:40 Sending to : +06:25:40 ============================================================================ +06:25:40 ============================================================================ +06:25:40 Slot Id : <117> +06:25:40 Transaction Type : RESPONSE +06:25:40 Received From : +06:25:40 ============================================================================ +06:25:40 FNo. Len. Field Value +06:25:40 ============================================================================ +06:25:40 [ 1] [ 4] [0810] +06:25:40 [ 7] [ 10] [0320133730] +06:25:40 [ 11] [ 6] [063730] +06:25:40 [ 37] [ 12] [579060637300] +06:25:40 [ 39] [ 2] [00] +06:25:40 [ 70] [ 3] [810] +06:25:40 ============================================================================ +06:25:40 Calculate Source COMM Id = 6 +06:25:40 ============================================================================ +06:25:40 + + +waiting on router queue for slot.... +06:25:45 ============================================================================ +06:25:45 Slot Id : <112> +06:25:45 Transaction Type : REQUEST +06:25:45 Received From : +06:25:45 ============================================================================ +06:25:45 FNo. Len. Field Value +06:25:45 ============================================================================ +06:25:45 [ 1] [ 4] [0800] +06:25:45 [ 7] [ 10] [0319112454] +06:25:45 [ 11] [ 6] [154880] +06:25:45 [ 70] [ 3] [301] +06:25:45 ============================================================================ +06:25:45 + + +waiting on router queue for slot.... +06:25:45 Sending to : +06:25:45 ============================================================================ +06:25:45 ============================================================================ +06:25:45 Slot Id : <112> +06:25:45 Transaction Type : RESPONSE +06:25:45 Received From : +06:25:45 ============================================================================ +06:25:45 FNo. Len. Field Value +06:25:45 ============================================================================ +06:25:45 [ 1] [ 4] [0810] +06:25:45 [ 7] [ 10] [0319112454] +06:25:45 [ 11] [ 6] [154880] +06:25:45 [ 39] [ 2] [00] +06:25:45 [ 70] [ 3] [301] +06:25:45 ============================================================================ +06:25:45 Calculate Source COMM Id = 2 +06:25:45 ============================================================================ +06:25:45 + + +waiting on router queue for slot.... +06:25:57 ============================================================================ +06:25:57 Slot Id : <140> +06:25:57 Transaction Type : REQUEST +06:25:57 Received From : +06:25:57 ============================================================================ +06:25:57 FNo. Len. Field Value +06:25:57 ============================================================================ +06:25:57 [ 1] [ 4] [0800] +06:25:57 [ 7] [ 10] [0319112505] +06:25:57 [ 11] [ 6] [154881] +06:25:57 [ 70] [ 3] [301] +06:25:57 ============================================================================ +06:25:57 + + +waiting on router queue for slot.... +06:25:57 Sending to : +06:25:57 ============================================================================ +06:25:57 ============================================================================ +06:25:57 Slot Id : <140> +06:25:57 Transaction Type : RESPONSE +06:25:57 Received From : +06:25:57 ============================================================================ +06:25:57 FNo. Len. Field Value +06:25:57 ============================================================================ +06:25:57 [ 1] [ 4] [0810] +06:25:57 [ 7] [ 10] [0319112505] +06:25:57 [ 11] [ 6] [154881] +06:25:57 [ 39] [ 2] [00] +06:25:57 [ 70] [ 3] [301] +06:25:57 ============================================================================ +06:25:57 Calculate Source COMM Id = 2 +06:25:57 ============================================================================ +06:25:57 + + +waiting on router queue for slot.... +06:26:02 ============================================================================ +06:26:02 Slot Id : <116> +06:26:02 Transaction Type : REQUEST +06:26:02 Received From : +06:26:02 ============================================================================ +06:26:02 FNo. Len. Field Value +06:26:02 ============================================================================ +06:26:02 [ 1] [ 4] [0800] +06:26:02 [ 2] [ 5] [02531] +06:26:02 [ 3] [ 6] [579068] +06:26:02 [ 7] [ 10] [0319232602] +06:26:02 [ 11] [ 6] [806785] +06:26:02 [ 15] [ 10] [0319232602] +06:26:02 [ 37] [ 11] [57906806785] +06:26:02 [ 70] [ 3] [001] +06:26:02 ============================================================================ +06:26:02 + + +waiting on router queue for slot.... +06:26:02 ============================================================================ +06:26:02 Slot Id : <116> +06:26:02 Transaction Type : RESPONSE +06:26:02 Received From : +06:26:02 ============================================================================ +06:26:02 FNo. Len. Field Value +06:26:02 ============================================================================ +06:26:02 [ 1] [ 4] [0810] +06:26:02 [ 7] [ 10] [0319232602] +06:26:02 [ 11] [ 6] [806785] +06:26:02 [ 15] [ 4] [0319] +06:26:02 [ 37] [ 12] [57906806785] +06:26:02 [ 39] [ 2] [00] +06:26:02 [ 70] [ 3] [001] +06:26:02 ============================================================================ +06:26:02 Sending to : +06:26:02 ============================================================================ +06:26:02 + + +waiting on router queue for slot.... +06:26:11 ============================================================================ +06:26:11 Slot Id : <111> +06:26:11 Transaction Type : REQUEST +06:26:11 Received From : +06:26:11 ============================================================================ +06:26:11 FNo. Len. Field Value +06:26:11 ============================================================================ +06:26:11 [ 1] [ 4] [0800] +06:26:11 [ 7] [ 10] [0319112520] +06:26:11 [ 11] [ 6] [154882] +06:26:11 [ 70] [ 3] [301] +06:26:11 ============================================================================ +06:26:11 + + +waiting on router queue for slot.... +06:26:11 Sending to : +06:26:11 ============================================================================ +06:26:11 ============================================================================ +06:26:11 Slot Id : <111> +06:26:11 Transaction Type : RESPONSE +06:26:11 Received From : +06:26:11 ============================================================================ +06:26:11 FNo. Len. Field Value +06:26:11 ============================================================================ +06:26:11 [ 1] [ 4] [0810] +06:26:11 [ 7] [ 10] [0319112520] +06:26:11 [ 11] [ 6] [154882] +06:26:11 [ 39] [ 2] [00] +06:26:11 [ 70] [ 3] [301] +06:26:11 ============================================================================ +06:26:11 Calculate Source COMM Id = 2 +06:26:11 ============================================================================ +06:26:11 + + +waiting on router queue for slot.... +06:26:18 ============================================================================ +06:26:18 Slot Id : <124> +06:26:18 Transaction Type : REQUEST +06:26:18 Received From : +06:26:18 ============================================================================ +06:26:18 FNo. Len. Field Value +06:26:18 ============================================================================ +06:26:18 [ 1] [ 4] [0200] +06:26:18 [ 2] [ 16] [6213545000476303] +06:26:18 [ 3] [ 6] [010000] +06:26:18 [ 4] [ 12] [000100000000] +06:26:18 [ 7] [ 10] [0319232526] +06:26:18 [ 11] [ 6] [266602] +06:26:18 [ 12] [ 6] [062526] +06:26:18 [ 13] [ 4] [0320] +06:26:18 [ 14] [ 4] [4912] +06:26:18 [ 15] [ 4] [0320] +06:26:18 [ 18] [ 4] [6011] +06:26:18 [ 19] [ 3] [418] +06:26:18 [ 22] [ 3] [021] +06:26:18 [ 25] [ 2] [01] +06:26:18 [ 28] [ 9] [D00002000] +06:26:18 [ 32] [ 6] [180893] +06:26:18 [ 35] [ 32] [6213545000476303=491212017630653] +06:26:18 [ 37] [ 12] [507923266602] +06:26:18 [ 41] [ 8] [0366SKTT] +06:26:18 [ 42] [ 15] [999999 ] +06:26:18 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:26:18 [ 49] [ 3] [418] +06:26:18 [ 52] [ 16] [C61DA189DA4E30E0] +06:26:18 ============================================================================ +06:26:18 + + +waiting on router queue for slot.... +06:26:18 Sending to : +06:26:18 ============================================================================ +06:26:18 Sending to : +06:26:18 ============================================================================ +06:26:18 ============================================================================ +06:26:18 Slot Id : <124> +06:26:18 Transaction Type : REQUEST +06:26:18 Received From : +06:26:18 ============================================================================ +06:26:18 FNo. Len. Field Value +06:26:18 ============================================================================ +06:26:18 [ 1] [ 4] [0200] +06:26:18 [ 2] [ 16] [6213545000476303] +06:26:18 [ 3] [ 6] [010000] +06:26:18 [ 4] [ 12] [000100000000] +06:26:18 [ 7] [ 10] [0319232526] +06:26:18 [ 11] [ 6] [266602] +06:26:18 [ 12] [ 6] [062526] +06:26:18 [ 13] [ 4] [0320] +06:26:18 [ 14] [ 4] [4912] +06:26:18 [ 15] [ 4] [0320] +06:26:18 [ 18] [ 4] [6011] +06:26:18 [ 19] [ 3] [418] +06:26:18 [ 22] [ 3] [021] +06:26:18 [ 25] [ 2] [01] +06:26:18 [ 28] [ 9] [D00002000] +06:26:18 [ 32] [ 6] [180893] +06:26:18 [ 35] [ 32] [6213545000476303=491212017630653] +06:26:18 [ 37] [ 12] [507923266602] +06:26:18 [ 41] [ 8] [0366SKTT] +06:26:18 [ 42] [ 15] [999999 ] +06:26:18 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:26:18 [ 49] [ 3] [418] +06:26:18 [ 52] [ 16] [C61DA189DA4E30E0] +06:26:18 ============================================================================ +06:26:18 + + +waiting on router queue for slot.... +06:26:18 Sending to : +06:26:18 ============================================================================ +06:26:18 ============================================================================ +06:26:18 Slot Id : <124> +06:26:18 Transaction Type : REQUEST +06:26:18 Received From : +06:26:18 ============================================================================ +06:26:18 FNo. Len. Field Value +06:26:18 ============================================================================ +06:26:18 [ 1] [ 4] [0200] +06:26:18 [ 2] [ 16] [6213545000476303] +06:26:18 [ 3] [ 6] [010000] +06:26:18 [ 4] [ 12] [000100000000] +06:26:18 [ 7] [ 10] [0319232526] +06:26:18 [ 11] [ 6] [266602] +06:26:18 [ 12] [ 6] [062526] +06:26:18 [ 13] [ 4] [0320] +06:26:18 [ 14] [ 4] [4912] +06:26:18 [ 15] [ 4] [0320] +06:26:18 [ 18] [ 4] [6011] +06:26:18 [ 19] [ 3] [418] +06:26:18 [ 22] [ 3] [021] +06:26:18 [ 25] [ 2] [01] +06:26:18 [ 28] [ 9] [D00002000] +06:26:18 [ 32] [ 6] [180893] +06:26:18 [ 35] [ 32] [6213545000476303=491212017630653] +06:26:18 [ 37] [ 12] [507923266602] +06:26:18 [ 41] [ 8] [0366SKTT] +06:26:18 [ 42] [ 15] [999999 ] +06:26:18 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:26:18 [ 49] [ 3] [418] +06:26:18 [ 52] [ 16] [0E9D8E7E85B1E528] +06:26:18 ============================================================================ +06:26:18 + + +waiting on router queue for slot.... +06:26:18 Sending to : <0> +06:26:18 ============================================================================ +06:26:19 ============================================================================ +06:26:19 Slot Id : <124> +06:26:19 Transaction Type : RESPONSE +06:26:19 Received From : +06:26:19 ============================================================================ +06:26:19 FNo. Len. Field Value +06:26:19 ============================================================================ +06:26:19 [ 1] [ 4] [0210] +06:26:19 [ 2] [ 16] [6213545000476303] +06:26:19 [ 3] [ 6] [010000] +06:26:19 [ 4] [ 12] [000100000000] +06:26:19 [ 7] [ 10] [0319232526] +06:26:19 [ 11] [ 6] [266602] +06:26:19 [ 12] [ 6] [062526] +06:26:19 [ 13] [ 4] [0320] +06:26:19 [ 15] [ 4] [0320] +06:26:19 [ 18] [ 4] [6011] +06:26:19 [ 19] [ 3] [418] +06:26:19 [ 32] [ 6] [180893] +06:26:19 [ 35] [ 32] [6213545000476303=491212017630653] +06:26:19 [ 37] [ 12] [507923266602] +06:26:19 [ 38] [ 6] [436238] +06:26:19 [ 39] [ 2] [00] +06:26:19 [ 41] [ 8] [0366SKTT] +06:26:19 [ 49] [ 3] [418] +06:26:19 [ 54] [ 40] [0001418C0002780315070002418C000278031507] +06:26:19 ============================================================================ +06:26:19 Sending to : +06:26:19 ============================================================================ +06:26:19 + + +waiting on router queue for slot.... +06:26:20 ============================================================================ +06:26:20 Slot Id : <147> +06:26:20 Transaction Type : REQUEST +06:26:20 Received From : +06:26:20 ============================================================================ +06:26:20 FNo. Len. Field Value +06:26:20 ============================================================================ +06:26:20 [ 1] [ 4] [0800] +06:26:20 [ 7] [ 10] [0319232412] +06:26:20 [ 11] [ 6] [035866] +06:26:20 [ 37] [ 12] [57906035866] +06:26:20 [ 70] [ 3] [301] +06:26:20 ============================================================================ +06:26:20 + + +waiting on router queue for slot.... +06:26:20 Sending to : +06:26:20 ============================================================================ +06:26:20 ============================================================================ +06:26:20 Slot Id : <147> +06:26:20 Transaction Type : RESPONSE +06:26:20 Received From : +06:26:20 ============================================================================ +06:26:20 FNo. Len. Field Value +06:26:20 ============================================================================ +06:26:20 [ 1] [ 4] [0810] +06:26:20 [ 7] [ 10] [0319232412] +06:26:20 [ 11] [ 6] [035866] +06:26:20 [ 37] [ 12] [579060358660] +06:26:20 [ 39] [ 2] [00] +06:26:20 [ 70] [ 3] [810] +06:26:20 ============================================================================ +06:26:20 Calculate Source COMM Id = 4 +06:26:20 ============================================================================ +06:26:20 + + +waiting on router queue for slot.... +06:26:21 ============================================================================ +06:26:21 Slot Id : <124> +06:26:21 Transaction Type : RESPONSE +06:26:21 Received From : +06:26:21 ============================================================================ +06:26:21 FNo. Len. Field Value +06:26:21 ============================================================================ +06:26:21 [ 1] [ 4] [0210] +06:26:21 [ 2] [ 16] [6213545000476303] +06:26:21 [ 3] [ 6] [010000] +06:26:21 [ 4] [ 12] [000100000000] +06:26:21 [ 7] [ 10] [0319232526] +06:26:21 [ 11] [ 6] [266602] +06:26:21 [ 12] [ 6] [062526] +06:26:21 [ 13] [ 4] [0320] +06:26:21 [ 15] [ 4] [0320] +06:26:21 [ 18] [ 4] [6011] +06:26:21 [ 19] [ 3] [418] +06:26:21 [ 32] [ 6] [180893] +06:26:21 [ 35] [ 32] [6213545000476303=491212017630653] +06:26:21 [ 37] [ 12] [507923266602] +06:26:21 [ 38] [ 6] [436238] +06:26:21 [ 39] [ 2] [00] +06:26:21 [ 41] [ 8] [0366SKTT] +06:26:21 [ 49] [ 3] [418] +06:26:21 [ 54] [ 40] [0001418C0002780315070002418C000278031507] +06:26:21 ============================================================================ +06:26:21 Calculate Source COMM Id = 2 +06:26:21 ============================================================================ +06:26:21 + + +waiting on router queue for slot.... +06:26:31 ============================================================================ +06:26:31 Slot Id : <80> +06:26:31 Transaction Type : REQUEST +06:26:31 Received From : +06:26:31 ============================================================================ +06:26:31 FNo. Len. Field Value +06:26:31 ============================================================================ +06:26:31 [ 1] [ 4] [0800] +06:26:31 [ 7] [ 10] [0319112540] +06:26:31 [ 11] [ 6] [154883] +06:26:31 [ 70] [ 3] [301] +06:26:31 ============================================================================ +06:26:31 + + +waiting on router queue for slot.... +06:26:31 Sending to : +06:26:31 ============================================================================ +06:26:31 ============================================================================ +06:26:31 Slot Id : <80> +06:26:31 Transaction Type : RESPONSE +06:26:31 Received From : +06:26:31 ============================================================================ +06:26:31 FNo. Len. Field Value +06:26:31 ============================================================================ +06:26:31 [ 1] [ 4] [0810] +06:26:31 [ 7] [ 10] [0319112540] +06:26:31 [ 11] [ 6] [154883] +06:26:31 [ 39] [ 2] [00] +06:26:31 [ 70] [ 3] [301] +06:26:31 ============================================================================ +06:26:31 Calculate Source COMM Id = 2 +06:26:31 ============================================================================ +06:26:31 + + +waiting on router queue for slot.... +06:26:45 ============================================================================ +06:26:45 Slot Id : <123> +06:26:45 Transaction Type : REQUEST +06:26:45 Received From : +06:26:45 ============================================================================ +06:26:45 FNo. Len. Field Value +06:26:45 ============================================================================ +06:26:45 [ 1] [ 4] [0800] +06:26:45 [ 7] [ 10] [0320133835] +06:26:45 [ 11] [ 6] [063835] +06:26:45 [ 37] [ 12] [57906063835] +06:26:45 [ 70] [ 3] [301] +06:26:45 ============================================================================ +06:26:45 + + +waiting on router queue for slot.... +06:26:45 Sending to : +06:26:45 ============================================================================ +06:26:45 ============================================================================ +06:26:45 Slot Id : <123> +06:26:45 Transaction Type : RESPONSE +06:26:45 Received From : +06:26:45 ============================================================================ +06:26:45 FNo. Len. Field Value +06:26:45 ============================================================================ +06:26:45 [ 1] [ 4] [0810] +06:26:45 [ 7] [ 10] [0320133835] +06:26:45 [ 11] [ 6] [063835] +06:26:45 [ 37] [ 12] [579060638350] +06:26:45 [ 39] [ 2] [00] +06:26:45 [ 70] [ 3] [810] +06:26:45 ============================================================================ +06:26:45 Calculate Source COMM Id = 6 +06:26:45 ============================================================================ +06:26:45 + + +waiting on router queue for slot.... +06:26:47 ============================================================================ +06:26:47 Slot Id : <122> +06:26:47 Transaction Type : REQUEST +06:26:47 Received From : +06:26:47 ============================================================================ +06:26:47 FNo. Len. Field Value +06:26:47 ============================================================================ +06:26:47 [ 1] [ 4] [0800] +06:26:47 [ 7] [ 10] [0319112555] +06:26:47 [ 11] [ 6] [154884] +06:26:47 [ 70] [ 3] [301] +06:26:47 ============================================================================ +06:26:47 + + +waiting on router queue for slot.... +06:26:47 Sending to : +06:26:47 ============================================================================ +06:26:47 ============================================================================ +06:26:47 Slot Id : <122> +06:26:47 Transaction Type : RESPONSE +06:26:47 Received From : +06:26:47 ============================================================================ +06:26:47 FNo. Len. Field Value +06:26:47 ============================================================================ +06:26:47 [ 1] [ 4] [0810] +06:26:47 [ 7] [ 10] [0319112555] +06:26:47 [ 11] [ 6] [154884] +06:26:47 [ 39] [ 2] [00] +06:26:47 [ 70] [ 3] [301] +06:26:47 ============================================================================ +06:26:47 Calculate Source COMM Id = 2 +06:26:47 ============================================================================ +06:26:47 + + +waiting on router queue for slot.... +06:26:57 ============================================================================ +06:26:57 Slot Id : <161> +06:26:57 Transaction Type : REQUEST +06:26:57 Received From : +06:26:57 ============================================================================ +06:26:57 FNo. Len. Field Value +06:26:57 ============================================================================ +06:26:57 [ 1] [ 4] [0800] +06:26:57 [ 7] [ 10] [0319112606] +06:26:57 [ 11] [ 6] [154885] +06:26:57 [ 70] [ 3] [301] +06:26:57 ============================================================================ +06:26:57 + + +waiting on router queue for slot.... +06:26:57 Sending to : +06:26:57 ============================================================================ +06:26:57 ============================================================================ +06:26:57 Slot Id : <161> +06:26:57 Transaction Type : RESPONSE +06:26:57 Received From : +06:26:57 ============================================================================ +06:26:57 FNo. Len. Field Value +06:26:57 ============================================================================ +06:26:57 [ 1] [ 4] [0810] +06:26:57 [ 7] [ 10] [0319112606] +06:26:57 [ 11] [ 6] [154885] +06:26:57 [ 39] [ 2] [00] +06:26:57 [ 70] [ 3] [301] +06:26:57 ============================================================================ +06:26:57 Calculate Source COMM Id = 2 +06:26:57 ============================================================================ +06:26:57 + + +waiting on router queue for slot.... +06:27:04 ============================================================================ +06:27:04 Slot Id : <154> +06:27:04 Transaction Type : REQUEST +06:27:04 Received From : +06:27:04 ============================================================================ +06:27:04 FNo. Len. Field Value +06:27:04 ============================================================================ +06:27:04 [ 1] [ 4] [0800] +06:27:04 [ 2] [ 5] [02531] +06:27:04 [ 3] [ 6] [579068] +06:27:04 [ 7] [ 10] [0319232704] +06:27:04 [ 11] [ 6] [806786] +06:27:04 [ 15] [ 10] [0319232704] +06:27:04 [ 37] [ 11] [57906806786] +06:27:04 [ 70] [ 3] [001] +06:27:04 ============================================================================ +06:27:04 + + +waiting on router queue for slot.... +06:27:04 ============================================================================ +06:27:04 Slot Id : <154> +06:27:04 Transaction Type : RESPONSE +06:27:04 Received From : +06:27:04 ============================================================================ +06:27:04 FNo. Len. Field Value +06:27:04 ============================================================================ +06:27:04 [ 1] [ 4] [0810] +06:27:04 [ 7] [ 10] [0319232704] +06:27:04 [ 11] [ 6] [806786] +06:27:04 [ 15] [ 4] [0319] +06:27:04 [ 37] [ 12] [57906806786] +06:27:04 [ 39] [ 2] [00] +06:27:04 [ 70] [ 3] [001] +06:27:04 ============================================================================ +06:27:04 Sending to : +06:27:04 ============================================================================ +06:27:04 + + +waiting on router queue for slot.... +06:27:10 ============================================================================ +06:27:10 Slot Id : <162> +06:27:10 Transaction Type : REQUEST +06:27:10 Received From : +06:27:10 ============================================================================ +06:27:10 FNo. Len. Field Value +06:27:10 ============================================================================ +06:27:10 [ 1] [ 4] [0200] +06:27:10 [ 2] [ 16] [6213545000476303] +06:27:10 [ 3] [ 6] [010000] +06:27:10 [ 4] [ 12] [000100000000] +06:27:10 [ 7] [ 10] [0319232618] +06:27:10 [ 11] [ 6] [266606] +06:27:10 [ 12] [ 6] [062618] +06:27:10 [ 13] [ 4] [0320] +06:27:10 [ 14] [ 4] [4912] +06:27:10 [ 15] [ 4] [0320] +06:27:10 [ 18] [ 4] [6011] +06:27:10 [ 19] [ 3] [418] +06:27:10 [ 22] [ 3] [021] +06:27:10 [ 25] [ 2] [01] +06:27:10 [ 28] [ 9] [D00002000] +06:27:10 [ 32] [ 6] [180893] +06:27:10 [ 35] [ 32] [6213545000476303=491212017630653] +06:27:10 [ 37] [ 12] [507923266606] +06:27:10 [ 41] [ 8] [0366SKTT] +06:27:10 [ 42] [ 15] [999999 ] +06:27:10 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:27:10 [ 49] [ 3] [418] +06:27:10 [ 52] [ 16] [C61DA189DA4E30E0] +06:27:10 ============================================================================ +06:27:10 + + +waiting on router queue for slot.... +06:27:10 Sending to : +06:27:10 ============================================================================ +06:27:10 Sending to : +06:27:10 ============================================================================ +06:27:11 ============================================================================ +06:27:11 Slot Id : <162> +06:27:11 Transaction Type : REQUEST +06:27:11 Received From : +06:27:11 ============================================================================ +06:27:11 FNo. Len. Field Value +06:27:11 ============================================================================ +06:27:11 [ 1] [ 4] [0200] +06:27:11 [ 2] [ 16] [6213545000476303] +06:27:11 [ 3] [ 6] [010000] +06:27:11 [ 4] [ 12] [000100000000] +06:27:11 [ 7] [ 10] [0319232618] +06:27:11 [ 11] [ 6] [266606] +06:27:11 [ 12] [ 6] [062618] +06:27:11 [ 13] [ 4] [0320] +06:27:11 [ 14] [ 4] [4912] +06:27:11 [ 15] [ 4] [0320] +06:27:11 [ 18] [ 4] [6011] +06:27:11 [ 19] [ 3] [418] +06:27:11 [ 22] [ 3] [021] +06:27:11 [ 25] [ 2] [01] +06:27:11 [ 28] [ 9] [D00002000] +06:27:11 [ 32] [ 6] [180893] +06:27:11 [ 35] [ 32] [6213545000476303=491212017630653] +06:27:11 [ 37] [ 12] [507923266606] +06:27:11 [ 41] [ 8] [0366SKTT] +06:27:11 [ 42] [ 15] [999999 ] +06:27:11 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:27:11 [ 49] [ 3] [418] +06:27:11 [ 52] [ 16] [C61DA189DA4E30E0] +06:27:11 ============================================================================ +06:27:11 + + +waiting on router queue for slot.... +06:27:11 Sending to : +06:27:11 ============================================================================ +06:27:11 ============================================================================ +06:27:11 Slot Id : <162> +06:27:11 Transaction Type : REQUEST +06:27:11 Received From : +06:27:11 ============================================================================ +06:27:11 FNo. Len. Field Value +06:27:11 ============================================================================ +06:27:11 [ 1] [ 4] [0200] +06:27:11 [ 2] [ 16] [6213545000476303] +06:27:11 [ 3] [ 6] [010000] +06:27:11 [ 4] [ 12] [000100000000] +06:27:11 [ 7] [ 10] [0319232618] +06:27:11 [ 11] [ 6] [266606] +06:27:11 [ 12] [ 6] [062618] +06:27:11 [ 13] [ 4] [0320] +06:27:11 [ 14] [ 4] [4912] +06:27:11 [ 15] [ 4] [0320] +06:27:11 [ 18] [ 4] [6011] +06:27:11 [ 19] [ 3] [418] +06:27:11 [ 22] [ 3] [021] +06:27:11 [ 25] [ 2] [01] +06:27:11 [ 28] [ 9] [D00002000] +06:27:11 [ 32] [ 6] [180893] +06:27:11 [ 35] [ 32] [6213545000476303=491212017630653] +06:27:11 [ 37] [ 12] [507923266606] +06:27:11 [ 41] [ 8] [0366SKTT] +06:27:11 [ 42] [ 15] [999999 ] +06:27:11 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:27:11 [ 49] [ 3] [418] +06:27:11 [ 52] [ 16] [0E9D8E7E85B1E528] +06:27:11 ============================================================================ +06:27:11 + + +waiting on router queue for slot.... +06:27:11 Sending to : <0> +06:27:11 ============================================================================ +06:27:11 ============================================================================ +06:27:11 Slot Id : <162> +06:27:11 Transaction Type : RESPONSE +06:27:11 Received From : +06:27:11 ============================================================================ +06:27:11 FNo. Len. Field Value +06:27:11 ============================================================================ +06:27:11 [ 1] [ 4] [0210] +06:27:11 [ 2] [ 16] [6213545000476303] +06:27:11 [ 3] [ 6] [010000] +06:27:11 [ 4] [ 12] [000100000000] +06:27:11 [ 7] [ 10] [0319232618] +06:27:11 [ 11] [ 6] [266606] +06:27:11 [ 12] [ 6] [062618] +06:27:11 [ 13] [ 4] [0320] +06:27:11 [ 15] [ 4] [0320] +06:27:11 [ 18] [ 4] [6011] +06:27:11 [ 19] [ 3] [418] +06:27:11 [ 32] [ 6] [180893] +06:27:11 [ 35] [ 32] [6213545000476303=491212017630653] +06:27:11 [ 37] [ 12] [507923266606] +06:27:11 [ 38] [ 6] [546788] +06:27:11 [ 39] [ 2] [00] +06:27:11 [ 41] [ 8] [0366SKTT] +06:27:11 [ 49] [ 3] [418] +06:27:11 [ 54] [ 40] [0001418C0001778315070002418C000177831507] +06:27:11 ============================================================================ +06:27:11 Sending to : +06:27:11 ============================================================================ +06:27:11 + + +waiting on router queue for slot.... +06:27:13 ============================================================================ +06:27:13 Slot Id : <132> +06:27:13 Transaction Type : REQUEST +06:27:13 Received From : +06:27:13 ============================================================================ +06:27:13 FNo. Len. Field Value +06:27:13 ============================================================================ +06:27:13 [ 1] [ 4] [0800] +06:27:13 [ 7] [ 10] [0319112621] +06:27:13 [ 11] [ 6] [154886] +06:27:13 [ 70] [ 3] [301] +06:27:13 ============================================================================ +06:27:13 + + +waiting on router queue for slot.... +06:27:13 Sending to : +06:27:13 ============================================================================ +06:27:13 ============================================================================ +06:27:13 Slot Id : <132> +06:27:13 Transaction Type : RESPONSE +06:27:13 Received From : +06:27:13 ============================================================================ +06:27:13 FNo. Len. Field Value +06:27:13 ============================================================================ +06:27:13 [ 1] [ 4] [0810] +06:27:13 [ 7] [ 10] [0319112621] +06:27:13 [ 11] [ 6] [154886] +06:27:13 [ 39] [ 2] [00] +06:27:13 [ 70] [ 3] [301] +06:27:13 ============================================================================ +06:27:13 Calculate Source COMM Id = 2 +06:27:13 ============================================================================ +06:27:13 + + +waiting on router queue for slot.... +06:27:13 ============================================================================ +06:27:13 Slot Id : <162> +06:27:13 Transaction Type : RESPONSE +06:27:13 Received From : +06:27:13 ============================================================================ +06:27:13 FNo. Len. Field Value +06:27:13 ============================================================================ +06:27:13 [ 1] [ 4] [0210] +06:27:13 [ 2] [ 16] [6213545000476303] +06:27:13 [ 3] [ 6] [010000] +06:27:13 [ 4] [ 12] [000100000000] +06:27:13 [ 7] [ 10] [0319232618] +06:27:13 [ 11] [ 6] [266606] +06:27:13 [ 12] [ 6] [062618] +06:27:13 [ 13] [ 4] [0320] +06:27:13 [ 15] [ 4] [0320] +06:27:13 [ 18] [ 4] [6011] +06:27:13 [ 19] [ 3] [418] +06:27:13 [ 32] [ 6] [180893] +06:27:13 [ 35] [ 32] [6213545000476303=491212017630653] +06:27:13 [ 37] [ 12] [507923266606] +06:27:13 [ 38] [ 6] [546788] +06:27:13 [ 39] [ 2] [00] +06:27:13 [ 41] [ 8] [0366SKTT] +06:27:13 [ 49] [ 3] [418] +06:27:13 [ 54] [ 40] [0001418C0001778315070002418C000177831507] +06:27:13 ============================================================================ +06:27:13 Calculate Source COMM Id = 2 +06:27:13 ============================================================================ +06:27:13 + + +waiting on router queue for slot.... +06:27:20 ============================================================================ +06:27:20 Slot Id : <145> +06:27:20 Transaction Type : REQUEST +06:27:20 Received From : +06:27:20 ============================================================================ +06:27:20 FNo. Len. Field Value +06:27:20 ============================================================================ +06:27:20 [ 1] [ 4] [0200] +06:27:20 [ 2] [ 16] [6213541000222102] +06:27:20 [ 3] [ 6] [010000] +06:27:20 [ 4] [ 12] [000100000000] +06:27:20 [ 7] [ 10] [0320062512] +06:27:20 [ 11] [ 6] [928976] +06:27:20 [ 12] [ 6] [062512] +06:27:20 [ 13] [ 4] [0320] +06:27:20 [ 15] [ 4] [0320] +06:27:20 [ 18] [ 4] [6011] +06:27:20 [ 19] [ 3] [418] +06:27:20 [ 22] [ 3] [021] +06:27:20 [ 25] [ 2] [01] +06:27:20 [ 28] [ 9] [D00002000] +06:27:20 [ 32] [ 6] [668899] +06:27:20 [ 35] [ 32] [6213541000222102=491212012210706] +06:27:20 [ 37] [ 12] [507902209810] +06:27:20 [ 41] [ 8] [03006009] +06:27:20 [ 42] [ 15] [APT ] +06:27:20 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +06:27:20 [ 49] [ 3] [418] +06:27:20 [ 52] [ 16] [650B1DD5FA8467B5] +06:27:20 ============================================================================ +06:27:20 + + +waiting on router queue for slot.... +06:27:20 Sending to : +06:27:20 ============================================================================ +06:27:20 Sending to : +06:27:20 ============================================================================ +06:27:21 ============================================================================ +06:27:21 Slot Id : <145> +06:27:21 Transaction Type : REQUEST +06:27:21 Received From : +06:27:21 ============================================================================ +06:27:21 FNo. Len. Field Value +06:27:21 ============================================================================ +06:27:21 [ 1] [ 4] [0200] +06:27:21 [ 2] [ 16] [6213541000222102] +06:27:21 [ 3] [ 6] [010000] +06:27:21 [ 4] [ 12] [000100000000] +06:27:21 [ 7] [ 10] [0320062512] +06:27:21 [ 11] [ 6] [928976] +06:27:21 [ 12] [ 6] [062512] +06:27:21 [ 13] [ 4] [0320] +06:27:21 [ 15] [ 4] [0320] +06:27:21 [ 18] [ 4] [6011] +06:27:21 [ 19] [ 3] [418] +06:27:21 [ 22] [ 3] [021] +06:27:21 [ 25] [ 2] [01] +06:27:21 [ 28] [ 9] [D00002000] +06:27:21 [ 32] [ 6] [668899] +06:27:21 [ 35] [ 32] [6213541000222102=491212012210706] +06:27:21 [ 37] [ 12] [507902209810] +06:27:21 [ 41] [ 8] [03006009] +06:27:21 [ 42] [ 15] [APT ] +06:27:21 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +06:27:21 [ 49] [ 3] [418] +06:27:21 [ 52] [ 16] [650B1DD5FA8467B5] +06:27:21 ============================================================================ +06:27:21 + + +waiting on router queue for slot.... +06:27:21 Sending to : +06:27:21 ============================================================================ +06:27:21 ============================================================================ +06:27:21 Slot Id : <145> +06:27:21 Transaction Type : REQUEST +06:27:21 Received From : +06:27:21 ============================================================================ +06:27:21 FNo. Len. Field Value +06:27:21 ============================================================================ +06:27:21 [ 1] [ 4] [0200] +06:27:21 [ 2] [ 16] [6213541000222102] +06:27:21 [ 3] [ 6] [010000] +06:27:21 [ 4] [ 12] [000100000000] +06:27:21 [ 7] [ 10] [0320062512] +06:27:21 [ 11] [ 6] [928976] +06:27:21 [ 12] [ 6] [062512] +06:27:21 [ 13] [ 4] [0320] +06:27:21 [ 15] [ 4] [0320] +06:27:21 [ 18] [ 4] [6011] +06:27:21 [ 19] [ 3] [418] +06:27:21 [ 22] [ 3] [021] +06:27:21 [ 25] [ 2] [01] +06:27:21 [ 28] [ 9] [D00002000] +06:27:21 [ 32] [ 6] [668899] +06:27:21 [ 35] [ 32] [6213541000222102=491212012210706] +06:27:21 [ 37] [ 12] [507902209810] +06:27:21 [ 41] [ 8] [03006009] +06:27:21 [ 42] [ 15] [APT ] +06:27:21 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +06:27:21 [ 49] [ 3] [418] +06:27:21 [ 52] [ 16] [FFB5036EE4ABEA35] +06:27:21 ============================================================================ +06:27:21 + + +waiting on router queue for slot.... +06:27:21 Sending to : <0> +06:27:21 ============================================================================ +06:27:22 ============================================================================ +06:27:22 Slot Id : <145> +06:27:22 Transaction Type : RESPONSE +06:27:22 Received From : +06:27:22 ============================================================================ +06:27:22 FNo. Len. Field Value +06:27:22 ============================================================================ +06:27:22 [ 1] [ 4] [0210] +06:27:22 [ 2] [ 16] [6213541000222102] +06:27:22 [ 3] [ 6] [010000] +06:27:22 [ 4] [ 12] [000100000000] +06:27:22 [ 7] [ 10] [0320062512] +06:27:22 [ 11] [ 6] [928976] +06:27:22 [ 12] [ 6] [062512] +06:27:22 [ 13] [ 4] [0320] +06:27:22 [ 15] [ 4] [0320] +06:27:22 [ 18] [ 4] [6011] +06:27:22 [ 19] [ 3] [418] +06:27:22 [ 32] [ 6] [668899] +06:27:22 [ 35] [ 32] [6213541000222102=491212012210706] +06:27:22 [ 37] [ 12] [507902209810] +06:27:22 [ 38] [ 6] [829701] +06:27:22 [ 39] [ 2] [00] +06:27:22 [ 41] [ 8] [03006009] +06:27:22 [ 49] [ 3] [418] +06:27:22 [ 54] [ 40] [0001418C0005157185220002418C000515718522] +06:27:22 ============================================================================ +06:27:22 Sending to : +06:27:22 ============================================================================ +06:27:22 + + +waiting on router queue for slot.... +06:27:23 ============================================================================ +06:27:23 Slot Id : <145> +06:27:23 Transaction Type : RESPONSE +06:27:23 Received From : +06:27:23 ============================================================================ +06:27:23 FNo. Len. Field Value +06:27:23 ============================================================================ +06:27:23 [ 1] [ 4] [0210] +06:27:23 [ 2] [ 16] [6213541000222102] +06:27:23 [ 3] [ 6] [010000] +06:27:23 [ 4] [ 12] [000100000000] +06:27:23 [ 7] [ 10] [0320062512] +06:27:23 [ 11] [ 6] [928976] +06:27:23 [ 12] [ 6] [062512] +06:27:23 [ 13] [ 4] [0320] +06:27:23 [ 15] [ 4] [0320] +06:27:23 [ 18] [ 4] [6011] +06:27:23 [ 19] [ 3] [418] +06:27:23 [ 32] [ 6] [668899] +06:27:23 [ 35] [ 32] [6213541000222102=491212012210706] +06:27:23 [ 37] [ 12] [507902209810] +06:27:23 [ 38] [ 6] [829701] +06:27:23 [ 39] [ 2] [00] +06:27:23 [ 41] [ 8] [03006009] +06:27:23 [ 49] [ 3] [418] +06:27:23 [ 54] [ 40] [0001418C0005157185220002418C000515718522] +06:27:23 ============================================================================ +06:27:23 Calculate Source COMM Id = 4 +06:27:23 ============================================================================ +06:27:23 + + +waiting on router queue for slot.... +06:27:24 ============================================================================ +06:27:24 Slot Id : <143> +06:27:24 Transaction Type : REQUEST +06:27:24 Received From : +06:27:24 ============================================================================ +06:27:24 FNo. Len. Field Value +06:27:24 ============================================================================ +06:27:24 [ 1] [ 4] [0800] +06:27:24 [ 7] [ 10] [0319112633] +06:27:24 [ 11] [ 6] [154887] +06:27:24 [ 70] [ 3] [301] +06:27:24 ============================================================================ +06:27:24 + + +waiting on router queue for slot.... +06:27:24 Sending to : +06:27:24 ============================================================================ +06:27:24 ============================================================================ +06:27:24 Slot Id : <143> +06:27:24 Transaction Type : RESPONSE +06:27:24 Received From : +06:27:24 ============================================================================ +06:27:24 FNo. Len. Field Value +06:27:24 ============================================================================ +06:27:24 [ 1] [ 4] [0810] +06:27:24 [ 7] [ 10] [0319112633] +06:27:24 [ 11] [ 6] [154887] +06:27:24 [ 39] [ 2] [00] +06:27:24 [ 70] [ 3] [301] +06:27:24 ============================================================================ +06:27:24 Calculate Source COMM Id = 2 +06:27:24 ============================================================================ +06:27:24 + + +waiting on router queue for slot.... +06:27:35 ============================================================================ +06:27:35 Slot Id : <158> +06:27:35 Transaction Type : REQUEST +06:27:35 Received From : +06:27:35 ============================================================================ +06:27:35 FNo. Len. Field Value +06:27:35 ============================================================================ +06:27:35 [ 1] [ 4] [0800] +06:27:35 [ 7] [ 10] [0319112643] +06:27:35 [ 11] [ 6] [154888] +06:27:35 [ 70] [ 3] [301] +06:27:35 ============================================================================ +06:27:35 + + +waiting on router queue for slot.... +06:27:35 Sending to : +06:27:35 ============================================================================ +06:27:35 ============================================================================ +06:27:35 Slot Id : <158> +06:27:35 Transaction Type : RESPONSE +06:27:35 Received From : +06:27:35 ============================================================================ +06:27:35 FNo. Len. Field Value +06:27:35 ============================================================================ +06:27:35 [ 1] [ 4] [0810] +06:27:35 [ 7] [ 10] [0319112643] +06:27:35 [ 11] [ 6] [154888] +06:27:35 [ 39] [ 2] [00] +06:27:35 [ 70] [ 3] [301] +06:27:35 ============================================================================ +06:27:35 Calculate Source COMM Id = 2 +06:27:35 ============================================================================ +06:27:35 + + +waiting on router queue for slot.... +06:27:45 ============================================================================ +06:27:45 Slot Id : <120> +06:27:45 Transaction Type : REQUEST +06:27:45 Received From : +06:27:45 ============================================================================ +06:27:45 FNo. Len. Field Value +06:27:45 ============================================================================ +06:27:45 [ 1] [ 4] [0800] +06:27:45 [ 7] [ 10] [0319112654] +06:27:45 [ 11] [ 6] [154889] +06:27:45 [ 70] [ 3] [301] +06:27:45 ============================================================================ +06:27:45 + + +waiting on router queue for slot.... +06:27:45 Sending to : +06:27:45 ============================================================================ +06:27:45 ============================================================================ +06:27:45 Slot Id : <120> +06:27:45 Transaction Type : RESPONSE +06:27:45 Received From : +06:27:45 ============================================================================ +06:27:45 FNo. Len. Field Value +06:27:45 ============================================================================ +06:27:45 [ 1] [ 4] [0810] +06:27:45 [ 7] [ 10] [0319112654] +06:27:45 [ 11] [ 6] [154889] +06:27:45 [ 39] [ 2] [00] +06:27:45 [ 70] [ 3] [301] +06:27:45 ============================================================================ +06:27:45 Calculate Source COMM Id = 2 +06:27:45 ============================================================================ +06:27:45 + + +waiting on router queue for slot.... +06:27:50 ============================================================================ +06:27:50 Slot Id : <150> +06:27:50 Transaction Type : REQUEST +06:27:50 Received From : +06:27:50 ============================================================================ +06:27:50 FNo. Len. Field Value +06:27:50 ============================================================================ +06:27:50 [ 1] [ 4] [0800] +06:27:50 [ 7] [ 10] [0320133940] +06:27:50 [ 11] [ 6] [063940] +06:27:50 [ 37] [ 12] [57906063940] +06:27:50 [ 70] [ 3] [301] +06:27:50 ============================================================================ +06:27:50 + + +waiting on router queue for slot.... +06:27:50 Sending to : +06:27:50 ============================================================================ +06:27:50 ============================================================================ +06:27:50 Slot Id : <150> +06:27:50 Transaction Type : RESPONSE +06:27:50 Received From : +06:27:50 ============================================================================ +06:27:50 FNo. Len. Field Value +06:27:50 ============================================================================ +06:27:50 [ 1] [ 4] [0810] +06:27:50 [ 7] [ 10] [0320133940] +06:27:50 [ 11] [ 6] [063940] +06:27:50 [ 37] [ 12] [579060639400] +06:27:50 [ 39] [ 2] [00] +06:27:50 [ 70] [ 3] [810] +06:27:50 ============================================================================ +06:27:50 Calculate Source COMM Id = 6 +06:27:50 ============================================================================ +06:27:50 + + +waiting on router queue for slot.... +06:27:57 ============================================================================ +06:27:57 Slot Id : <166> +06:27:57 Transaction Type : REQUEST +06:27:57 Received From : +06:27:57 ============================================================================ +06:27:57 FNo. Len. Field Value +06:27:57 ============================================================================ +06:27:57 [ 1] [ 4] [0800] +06:27:57 [ 7] [ 10] [0319112705] +06:27:57 [ 11] [ 6] [154890] +06:27:57 [ 70] [ 3] [301] +06:27:57 ============================================================================ +06:27:57 + + +waiting on router queue for slot.... +06:27:57 Sending to : +06:27:57 ============================================================================ +06:27:57 ============================================================================ +06:27:57 Slot Id : <166> +06:27:57 Transaction Type : RESPONSE +06:27:57 Received From : +06:27:57 ============================================================================ +06:27:57 FNo. Len. Field Value +06:27:57 ============================================================================ +06:27:57 [ 1] [ 4] [0810] +06:27:57 [ 7] [ 10] [0319112705] +06:27:57 [ 11] [ 6] [154890] +06:27:57 [ 39] [ 2] [00] +06:27:57 [ 70] [ 3] [301] +06:27:57 ============================================================================ +06:27:57 Calculate Source COMM Id = 2 +06:27:57 ============================================================================ +06:27:57 + + +waiting on router queue for slot.... +06:28:06 ============================================================================ +06:28:06 Slot Id : <130> +06:28:06 Transaction Type : REQUEST +06:28:06 Received From : +06:28:06 ============================================================================ +06:28:06 FNo. Len. Field Value +06:28:06 ============================================================================ +06:28:06 [ 1] [ 4] [0800] +06:28:06 [ 2] [ 5] [02531] +06:28:06 [ 3] [ 6] [579068] +06:28:06 [ 7] [ 10] [0319232806] +06:28:06 [ 11] [ 6] [806787] +06:28:06 [ 15] [ 10] [0319232806] +06:28:06 [ 37] [ 11] [57906806787] +06:28:06 [ 70] [ 3] [001] +06:28:06 ============================================================================ +06:28:06 + + +waiting on router queue for slot.... +06:28:06 ============================================================================ +06:28:06 Slot Id : <130> +06:28:06 Transaction Type : RESPONSE +06:28:06 Received From : +06:28:06 ============================================================================ +06:28:06 FNo. Len. Field Value +06:28:06 ============================================================================ +06:28:06 [ 1] [ 4] [0810] +06:28:06 [ 7] [ 10] [0319232806] +06:28:06 [ 11] [ 6] [806787] +06:28:06 [ 15] [ 4] [0319] +06:28:06 [ 37] [ 12] [57906806787] +06:28:06 [ 39] [ 2] [00] +06:28:06 [ 70] [ 3] [001] +06:28:06 ============================================================================ +06:28:06 Sending to : +06:28:06 ============================================================================ +06:28:06 + + +waiting on router queue for slot.... +06:28:12 ============================================================================ +06:28:12 Slot Id : <133> +06:28:12 Transaction Type : REQUEST +06:28:12 Received From : +06:28:12 ============================================================================ +06:28:12 FNo. Len. Field Value +06:28:12 ============================================================================ +06:28:12 [ 1] [ 4] [0800] +06:28:12 [ 7] [ 10] [0319112721] +06:28:12 [ 11] [ 6] [154891] +06:28:12 [ 70] [ 3] [301] +06:28:12 ============================================================================ +06:28:12 + + +waiting on router queue for slot.... +06:28:12 Sending to : +06:28:12 ============================================================================ +06:28:12 ============================================================================ +06:28:12 Slot Id : <133> +06:28:12 Transaction Type : RESPONSE +06:28:12 Received From : +06:28:12 ============================================================================ +06:28:12 FNo. Len. Field Value +06:28:12 ============================================================================ +06:28:12 [ 1] [ 4] [0810] +06:28:12 [ 7] [ 10] [0319112721] +06:28:12 [ 11] [ 6] [154891] +06:28:12 [ 39] [ 2] [00] +06:28:12 [ 70] [ 3] [301] +06:28:12 ============================================================================ +06:28:12 Calculate Source COMM Id = 2 +06:28:12 ============================================================================ +06:28:12 + + +waiting on router queue for slot.... +06:28:15 ============================================================================ +06:28:15 Slot Id : <142> +06:28:15 Transaction Type : REQUEST +06:28:15 Received From : +06:28:15 ============================================================================ +06:28:15 FNo. Len. Field Value +06:28:15 ============================================================================ +06:28:15 [ 1] [ 4] [0200] +06:28:15 [ 2] [ 16] [6213545000476303] +06:28:15 [ 3] [ 6] [010000] +06:28:15 [ 4] [ 12] [000100000000] +06:28:15 [ 7] [ 10] [0319232723] +06:28:15 [ 11] [ 6] [266611] +06:28:15 [ 12] [ 6] [062723] +06:28:15 [ 13] [ 4] [0320] +06:28:15 [ 14] [ 4] [4912] +06:28:15 [ 15] [ 4] [0320] +06:28:15 [ 18] [ 4] [6011] +06:28:15 [ 19] [ 3] [418] +06:28:15 [ 22] [ 3] [021] +06:28:15 [ 25] [ 2] [01] +06:28:15 [ 28] [ 9] [D00002000] +06:28:15 [ 32] [ 6] [180893] +06:28:15 [ 35] [ 32] [6213545000476303=491212017630653] +06:28:15 [ 37] [ 12] [507923266611] +06:28:15 [ 41] [ 8] [0366SKTT] +06:28:15 [ 42] [ 15] [999999 ] +06:28:15 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:28:15 [ 49] [ 3] [418] +06:28:15 [ 52] [ 16] [C61DA189DA4E30E0] +06:28:15 ============================================================================ +06:28:15 + + +waiting on router queue for slot.... +06:28:15 Sending to : +06:28:15 ============================================================================ +06:28:15 Sending to : +06:28:15 ============================================================================ +06:28:16 ============================================================================ +06:28:16 Slot Id : <142> +06:28:16 Transaction Type : REQUEST +06:28:16 Received From : +06:28:16 ============================================================================ +06:28:16 FNo. Len. Field Value +06:28:16 ============================================================================ +06:28:16 [ 1] [ 4] [0200] +06:28:16 [ 2] [ 16] [6213545000476303] +06:28:16 [ 3] [ 6] [010000] +06:28:16 [ 4] [ 12] [000100000000] +06:28:16 [ 7] [ 10] [0319232723] +06:28:16 [ 11] [ 6] [266611] +06:28:16 [ 12] [ 6] [062723] +06:28:16 [ 13] [ 4] [0320] +06:28:16 [ 14] [ 4] [4912] +06:28:16 [ 15] [ 4] [0320] +06:28:16 [ 18] [ 4] [6011] +06:28:16 [ 19] [ 3] [418] +06:28:16 [ 22] [ 3] [021] +06:28:16 [ 25] [ 2] [01] +06:28:16 [ 28] [ 9] [D00002000] +06:28:16 [ 32] [ 6] [180893] +06:28:16 [ 35] [ 32] [6213545000476303=491212017630653] +06:28:16 [ 37] [ 12] [507923266611] +06:28:16 [ 41] [ 8] [0366SKTT] +06:28:16 [ 42] [ 15] [999999 ] +06:28:16 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:28:16 [ 49] [ 3] [418] +06:28:16 [ 52] [ 16] [C61DA189DA4E30E0] +06:28:16 ============================================================================ +06:28:16 + + +waiting on router queue for slot.... +06:28:16 Sending to : +06:28:16 ============================================================================ +06:28:16 ============================================================================ +06:28:16 Slot Id : <142> +06:28:16 Transaction Type : REQUEST +06:28:16 Received From : +06:28:16 ============================================================================ +06:28:16 FNo. Len. Field Value +06:28:16 ============================================================================ +06:28:16 [ 1] [ 4] [0200] +06:28:16 [ 2] [ 16] [6213545000476303] +06:28:16 [ 3] [ 6] [010000] +06:28:16 [ 4] [ 12] [000100000000] +06:28:16 [ 7] [ 10] [0319232723] +06:28:16 [ 11] [ 6] [266611] +06:28:16 [ 12] [ 6] [062723] +06:28:16 [ 13] [ 4] [0320] +06:28:16 [ 14] [ 4] [4912] +06:28:16 [ 15] [ 4] [0320] +06:28:16 [ 18] [ 4] [6011] +06:28:16 [ 19] [ 3] [418] +06:28:16 [ 22] [ 3] [021] +06:28:16 [ 25] [ 2] [01] +06:28:16 [ 28] [ 9] [D00002000] +06:28:16 [ 32] [ 6] [180893] +06:28:16 [ 35] [ 32] [6213545000476303=491212017630653] +06:28:16 [ 37] [ 12] [507923266611] +06:28:16 [ 41] [ 8] [0366SKTT] +06:28:16 [ 42] [ 15] [999999 ] +06:28:16 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:28:16 [ 49] [ 3] [418] +06:28:16 [ 52] [ 16] [0E9D8E7E85B1E528] +06:28:16 ============================================================================ +06:28:16 + + +waiting on router queue for slot.... +06:28:16 Sending to : <0> +06:28:16 ============================================================================ +06:28:16 ============================================================================ +06:28:16 Slot Id : <142> +06:28:16 Transaction Type : RESPONSE +06:28:16 Received From : +06:28:16 ============================================================================ +06:28:16 FNo. Len. Field Value +06:28:16 ============================================================================ +06:28:16 [ 1] [ 4] [0210] +06:28:16 [ 2] [ 16] [6213545000476303] +06:28:16 [ 3] [ 6] [010000] +06:28:16 [ 4] [ 12] [000100000000] +06:28:16 [ 7] [ 10] [0319232723] +06:28:16 [ 11] [ 6] [266611] +06:28:16 [ 12] [ 6] [062723] +06:28:16 [ 13] [ 4] [0320] +06:28:16 [ 15] [ 4] [0320] +06:28:16 [ 18] [ 4] [6011] +06:28:16 [ 19] [ 3] [418] +06:28:16 [ 32] [ 6] [180893] +06:28:16 [ 35] [ 32] [6213545000476303=491212017630653] +06:28:16 [ 37] [ 12] [507923266611] +06:28:16 [ 38] [ 6] [663706] +06:28:16 [ 39] [ 2] [00] +06:28:16 [ 41] [ 8] [0366SKTT] +06:28:16 [ 49] [ 3] [418] +06:28:16 [ 54] [ 40] [0001418C0000776315070002418C000077631507] +06:28:16 ============================================================================ +06:28:16 Sending to : +06:28:16 ============================================================================ +06:28:16 + + +waiting on router queue for slot.... +06:28:18 ============================================================================ +06:28:18 Slot Id : <142> +06:28:18 Transaction Type : RESPONSE +06:28:18 Received From : +06:28:18 ============================================================================ +06:28:18 FNo. Len. Field Value +06:28:18 ============================================================================ +06:28:18 [ 1] [ 4] [0210] +06:28:18 [ 2] [ 16] [6213545000476303] +06:28:18 [ 3] [ 6] [010000] +06:28:18 [ 4] [ 12] [000100000000] +06:28:18 [ 7] [ 10] [0319232723] +06:28:18 [ 11] [ 6] [266611] +06:28:18 [ 12] [ 6] [062723] +06:28:18 [ 13] [ 4] [0320] +06:28:18 [ 15] [ 4] [0320] +06:28:18 [ 18] [ 4] [6011] +06:28:18 [ 19] [ 3] [418] +06:28:18 [ 32] [ 6] [180893] +06:28:18 [ 35] [ 32] [6213545000476303=491212017630653] +06:28:18 [ 37] [ 12] [507923266611] +06:28:18 [ 38] [ 6] [663706] +06:28:18 [ 39] [ 2] [00] +06:28:18 [ 41] [ 8] [0366SKTT] +06:28:18 [ 49] [ 3] [418] +06:28:18 [ 54] [ 40] [0001418C0000776315070002418C000077631507] +06:28:18 ============================================================================ +06:28:18 Calculate Source COMM Id = 2 +06:28:18 ============================================================================ +06:28:18 + + +waiting on router queue for slot.... +06:28:33 ============================================================================ +06:28:33 Slot Id : <153> +06:28:33 Transaction Type : REQUEST +06:28:33 Received From : +06:28:33 ============================================================================ +06:28:33 FNo. Len. Field Value +06:28:33 ============================================================================ +06:28:33 [ 1] [ 4] [0800] +06:28:33 [ 7] [ 10] [0319112742] +06:28:33 [ 11] [ 6] [154892] +06:28:33 [ 70] [ 3] [301] +06:28:33 ============================================================================ +06:28:33 + + +waiting on router queue for slot.... +06:28:33 Sending to : +06:28:33 ============================================================================ +06:28:33 ============================================================================ +06:28:33 Slot Id : <153> +06:28:33 Transaction Type : RESPONSE +06:28:33 Received From : +06:28:33 ============================================================================ +06:28:33 FNo. Len. Field Value +06:28:33 ============================================================================ +06:28:33 [ 1] [ 4] [0810] +06:28:33 [ 7] [ 10] [0319112742] +06:28:33 [ 11] [ 6] [154892] +06:28:33 [ 39] [ 2] [00] +06:28:33 [ 70] [ 3] [301] +06:28:33 ============================================================================ +06:28:33 Calculate Source COMM Id = 2 +06:28:33 ============================================================================ +06:28:33 + + +waiting on router queue for slot.... +06:28:43 ============================================================================ +06:28:43 Slot Id : <110> +06:28:43 Transaction Type : REQUEST +06:28:43 Received From : +06:28:43 ============================================================================ +06:28:43 FNo. Len. Field Value +06:28:43 ============================================================================ +06:28:43 [ 1] [ 4] [0800] +06:28:43 [ 7] [ 10] [0319112752] +06:28:43 [ 11] [ 6] [154893] +06:28:43 [ 70] [ 3] [301] +06:28:43 ============================================================================ +06:28:43 + + +waiting on router queue for slot.... +06:28:43 Sending to : +06:28:43 ============================================================================ +06:28:43 ============================================================================ +06:28:43 Slot Id : <110> +06:28:43 Transaction Type : RESPONSE +06:28:43 Received From : +06:28:43 ============================================================================ +06:28:43 FNo. Len. Field Value +06:28:43 ============================================================================ +06:28:43 [ 1] [ 4] [0810] +06:28:43 [ 7] [ 10] [0319112752] +06:28:43 [ 11] [ 6] [154893] +06:28:43 [ 39] [ 2] [00] +06:28:43 [ 70] [ 3] [301] +06:28:43 ============================================================================ +06:28:43 Calculate Source COMM Id = 2 +06:28:43 ============================================================================ +06:28:43 + + +waiting on router queue for slot.... +06:28:48 ============================================================================ +06:28:48 Slot Id : <167> +06:28:48 Transaction Type : REQUEST +06:28:48 Received From : +06:28:48 ============================================================================ +06:28:48 FNo. Len. Field Value +06:28:48 ============================================================================ +06:28:48 [ 1] [ 4] [0200] +06:28:48 [ 2] [ 16] [6213541000222102] +06:28:48 [ 3] [ 6] [010000] +06:28:48 [ 4] [ 12] [000100000000] +06:28:48 [ 7] [ 10] [0320062640] +06:28:48 [ 11] [ 6] [929005] +06:28:48 [ 12] [ 6] [062640] +06:28:48 [ 13] [ 4] [0320] +06:28:48 [ 15] [ 4] [0320] +06:28:48 [ 18] [ 4] [6011] +06:28:48 [ 19] [ 3] [418] +06:28:48 [ 22] [ 3] [021] +06:28:48 [ 25] [ 2] [01] +06:28:48 [ 28] [ 9] [D00002000] +06:28:48 [ 32] [ 6] [668899] +06:28:48 [ 35] [ 32] [6213541000222102=491212012210706] +06:28:48 [ 37] [ 12] [507902209812] +06:28:48 [ 41] [ 8] [03006009] +06:28:48 [ 42] [ 15] [APT ] +06:28:48 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +06:28:48 [ 49] [ 3] [418] +06:28:48 [ 52] [ 16] [650B1DD5FA8467B5] +06:28:48 ============================================================================ +06:28:48 + + +waiting on router queue for slot.... +06:28:48 Sending to : +06:28:48 ============================================================================ +06:28:48 Sending to : +06:28:48 ============================================================================ +06:28:48 ============================================================================ +06:28:48 Slot Id : <167> +06:28:48 Transaction Type : REQUEST +06:28:48 Received From : +06:28:48 ============================================================================ +06:28:48 FNo. Len. Field Value +06:28:48 ============================================================================ +06:28:48 [ 1] [ 4] [0200] +06:28:48 [ 2] [ 16] [6213541000222102] +06:28:48 [ 3] [ 6] [010000] +06:28:48 [ 4] [ 12] [000100000000] +06:28:48 [ 7] [ 10] [0320062640] +06:28:48 [ 11] [ 6] [929005] +06:28:48 [ 12] [ 6] [062640] +06:28:48 [ 13] [ 4] [0320] +06:28:48 [ 15] [ 4] [0320] +06:28:48 [ 18] [ 4] [6011] +06:28:48 [ 19] [ 3] [418] +06:28:48 [ 22] [ 3] [021] +06:28:48 [ 25] [ 2] [01] +06:28:48 [ 28] [ 9] [D00002000] +06:28:48 [ 32] [ 6] [668899] +06:28:48 [ 35] [ 32] [6213541000222102=491212012210706] +06:28:48 [ 37] [ 12] [507902209812] +06:28:48 [ 41] [ 8] [03006009] +06:28:48 [ 42] [ 15] [APT ] +06:28:48 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +06:28:48 [ 49] [ 3] [418] +06:28:48 [ 52] [ 16] [650B1DD5FA8467B5] +06:28:48 ============================================================================ +06:28:48 + + +waiting on router queue for slot.... +06:28:48 Sending to : +06:28:48 ============================================================================ +06:28:48 ============================================================================ +06:28:48 Slot Id : <167> +06:28:48 Transaction Type : REQUEST +06:28:48 Received From : +06:28:48 ============================================================================ +06:28:48 FNo. Len. Field Value +06:28:48 ============================================================================ +06:28:48 [ 1] [ 4] [0200] +06:28:48 [ 2] [ 16] [6213541000222102] +06:28:48 [ 3] [ 6] [010000] +06:28:48 [ 4] [ 12] [000100000000] +06:28:48 [ 7] [ 10] [0320062640] +06:28:48 [ 11] [ 6] [929005] +06:28:48 [ 12] [ 6] [062640] +06:28:48 [ 13] [ 4] [0320] +06:28:48 [ 15] [ 4] [0320] +06:28:48 [ 18] [ 4] [6011] +06:28:48 [ 19] [ 3] [418] +06:28:48 [ 22] [ 3] [021] +06:28:48 [ 25] [ 2] [01] +06:28:48 [ 28] [ 9] [D00002000] +06:28:48 [ 32] [ 6] [668899] +06:28:48 [ 35] [ 32] [6213541000222102=491212012210706] +06:28:48 [ 37] [ 12] [507902209812] +06:28:48 [ 41] [ 8] [03006009] +06:28:48 [ 42] [ 15] [APT ] +06:28:48 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +06:28:48 [ 49] [ 3] [418] +06:28:48 [ 52] [ 16] [FFB5036EE4ABEA35] +06:28:48 ============================================================================ +06:28:48 + + +waiting on router queue for slot.... +06:28:48 Sending to : <0> +06:28:48 ============================================================================ +06:28:49 ============================================================================ +06:28:49 Slot Id : <167> +06:28:49 Transaction Type : RESPONSE +06:28:49 Received From : +06:28:49 ============================================================================ +06:28:49 FNo. Len. Field Value +06:28:49 ============================================================================ +06:28:49 [ 1] [ 4] [0210] +06:28:49 [ 2] [ 16] [6213541000222102] +06:28:49 [ 3] [ 6] [010000] +06:28:49 [ 4] [ 12] [000100000000] +06:28:49 [ 7] [ 10] [0320062640] +06:28:49 [ 11] [ 6] [929005] +06:28:49 [ 12] [ 6] [062640] +06:28:49 [ 13] [ 4] [0320] +06:28:49 [ 15] [ 4] [0320] +06:28:49 [ 18] [ 4] [6011] +06:28:49 [ 19] [ 3] [418] +06:28:49 [ 32] [ 6] [668899] +06:28:49 [ 35] [ 32] [6213541000222102=491212012210706] +06:28:49 [ 37] [ 12] [507902209812] +06:28:49 [ 38] [ 6] [312105] +06:28:49 [ 39] [ 2] [00] +06:28:49 [ 41] [ 8] [03006009] +06:28:49 [ 49] [ 3] [418] +06:28:49 [ 54] [ 40] [0001418C0004155185220002418C000415518522] +06:28:49 ============================================================================ +06:28:49 Sending to : +06:28:49 ============================================================================ +06:28:49 + + +waiting on router queue for slot.... +06:28:50 ============================================================================ +06:28:50 Slot Id : <167> +06:28:50 Transaction Type : RESPONSE +06:28:50 Received From : +06:28:50 ============================================================================ +06:28:50 FNo. Len. Field Value +06:28:50 ============================================================================ +06:28:50 [ 1] [ 4] [0210] +06:28:50 [ 2] [ 16] [6213541000222102] +06:28:50 [ 3] [ 6] [010000] +06:28:50 [ 4] [ 12] [000100000000] +06:28:50 [ 7] [ 10] [0320062640] +06:28:50 [ 11] [ 6] [929005] +06:28:50 [ 12] [ 6] [062640] +06:28:50 [ 13] [ 4] [0320] +06:28:50 [ 15] [ 4] [0320] +06:28:50 [ 18] [ 4] [6011] +06:28:50 [ 19] [ 3] [418] +06:28:50 [ 32] [ 6] [668899] +06:28:50 [ 35] [ 32] [6213541000222102=491212012210706] +06:28:50 [ 37] [ 12] [507902209812] +06:28:50 [ 38] [ 6] [312105] +06:28:50 [ 39] [ 2] [00] +06:28:50 [ 41] [ 8] [03006009] +06:28:50 [ 49] [ 3] [418] +06:28:50 [ 54] [ 40] [0001418C0004155185220002418C000415518522] +06:28:50 ============================================================================ +06:28:50 Calculate Source COMM Id = 4 +06:28:50 ============================================================================ +06:28:50 + + +waiting on router queue for slot.... +06:28:54 ============================================================================ +06:28:54 Slot Id : <137> +06:28:54 Transaction Type : REQUEST +06:28:54 Received From : +06:28:54 ============================================================================ +06:28:54 FNo. Len. Field Value +06:28:54 ============================================================================ +06:28:54 [ 1] [ 4] [0800] +06:28:54 [ 7] [ 10] [0319112802] +06:28:54 [ 11] [ 6] [154894] +06:28:54 [ 70] [ 3] [301] +06:28:54 ============================================================================ +06:28:54 + + +waiting on router queue for slot.... +06:28:54 Sending to : +06:28:54 ============================================================================ +06:28:54 ============================================================================ +06:28:54 Slot Id : <137> +06:28:54 Transaction Type : RESPONSE +06:28:54 Received From : +06:28:54 ============================================================================ +06:28:54 FNo. Len. Field Value +06:28:54 ============================================================================ +06:28:54 [ 1] [ 4] [0810] +06:28:54 [ 7] [ 10] [0319112802] +06:28:54 [ 11] [ 6] [154894] +06:28:54 [ 39] [ 2] [00] +06:28:54 [ 70] [ 3] [301] +06:28:54 ============================================================================ +06:28:54 Calculate Source COMM Id = 2 +06:28:54 ============================================================================ +06:28:54 + + +waiting on router queue for slot.... +06:28:55 ============================================================================ +06:28:55 Slot Id : <128> +06:28:55 Transaction Type : REQUEST +06:28:55 Received From : +06:28:55 ============================================================================ +06:28:55 FNo. Len. Field Value +06:28:55 ============================================================================ +06:28:55 [ 1] [ 4] [0800] +06:28:55 [ 7] [ 10] [0320134045] +06:28:55 [ 11] [ 6] [064045] +06:28:55 [ 37] [ 12] [57906064045] +06:28:55 [ 70] [ 3] [301] +06:28:55 ============================================================================ +06:28:55 + + +waiting on router queue for slot.... +06:28:55 Sending to : +06:28:55 ============================================================================ +06:28:55 ============================================================================ +06:28:55 Slot Id : <128> +06:28:55 Transaction Type : RESPONSE +06:28:55 Received From : +06:28:55 ============================================================================ +06:28:55 FNo. Len. Field Value +06:28:55 ============================================================================ +06:28:55 [ 1] [ 4] [0810] +06:28:55 [ 7] [ 10] [0320134045] +06:28:55 [ 11] [ 6] [064045] +06:28:55 [ 37] [ 12] [579060640450] +06:28:55 [ 39] [ 2] [00] +06:28:55 [ 70] [ 3] [810] +06:28:55 ============================================================================ +06:28:55 Calculate Source COMM Id = 6 +06:28:55 ============================================================================ +06:28:55 + + +waiting on router queue for slot.... +06:29:05 ============================================================================ +06:29:05 Slot Id : <146> +06:29:05 Transaction Type : REQUEST +06:29:05 Received From : +06:29:05 ============================================================================ +06:29:05 FNo. Len. Field Value +06:29:05 ============================================================================ +06:29:05 [ 1] [ 4] [0200] +06:29:05 [ 2] [ 16] [6688990103295802] +06:29:05 [ 3] [ 6] [300000] +06:29:05 [ 4] [ 12] [000000000000] +06:29:05 [ 7] [ 10] [0320062901] +06:29:05 [ 11] [ 6] [663732] +06:29:05 [ 12] [ 6] [062901] +06:29:05 [ 13] [ 4] [0320] +06:29:05 [ 15] [ 4] [0320] +06:29:05 [ 18] [ 4] [6011] +06:29:05 [ 22] [ 3] [900] +06:29:05 [ 25] [ 2] [02] +06:29:05 [ 28] [ 9] [D00000000] +06:29:05 [ 32] [ 6] [621354] +06:29:05 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:29:05 [ 37] [ 12] [507903499381] +06:29:05 [ 41] [ 8] [06002200] +06:29:05 [ 42] [ 15] [NATIVE ] +06:29:05 [ 43] [ 40] [Beng Market Beng LAO] +06:29:05 [ 49] [ 3] [418] +06:29:05 [ 52] [ 16] [DA2B3C5D5A0119B1] +06:29:05 ============================================================================ +06:29:05 + + +waiting on router queue for slot.... +06:29:05 Sending to : +06:29:05 ============================================================================ +06:29:05 Sending to : +06:29:05 ============================================================================ +06:29:05 ============================================================================ +06:29:05 Slot Id : <146> +06:29:05 Transaction Type : REQUEST +06:29:05 Received From : +06:29:05 ============================================================================ +06:29:05 FNo. Len. Field Value +06:29:05 ============================================================================ +06:29:05 [ 1] [ 4] [0200] +06:29:05 [ 2] [ 16] [6688990103295802] +06:29:05 [ 3] [ 6] [300000] +06:29:05 [ 4] [ 12] [000000000000] +06:29:05 [ 7] [ 10] [0320062901] +06:29:05 [ 11] [ 6] [663732] +06:29:05 [ 12] [ 6] [062901] +06:29:05 [ 13] [ 4] [0320] +06:29:05 [ 15] [ 4] [0320] +06:29:05 [ 18] [ 4] [6011] +06:29:05 [ 22] [ 3] [900] +06:29:05 [ 25] [ 2] [02] +06:29:05 [ 28] [ 9] [D00000000] +06:29:05 [ 32] [ 6] [621354] +06:29:05 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:29:05 [ 37] [ 12] [507903499381] +06:29:05 [ 41] [ 8] [06002200] +06:29:05 [ 42] [ 15] [NATIVE ] +06:29:05 [ 43] [ 40] [Beng Market Beng LAO] +06:29:05 [ 49] [ 3] [418] +06:29:05 [ 52] [ 16] [DA2B3C5D5A0119B1] +06:29:05 ============================================================================ +06:29:05 + + +waiting on router queue for slot.... +06:29:05 Sending to : +06:29:05 ============================================================================ +06:29:05 ============================================================================ +06:29:05 Slot Id : <146> +06:29:05 Transaction Type : REQUEST +06:29:05 Received From : +06:29:05 ============================================================================ +06:29:05 FNo. Len. Field Value +06:29:05 ============================================================================ +06:29:05 [ 1] [ 4] [0200] +06:29:05 [ 2] [ 16] [6688990103295802] +06:29:05 [ 3] [ 6] [300000] +06:29:05 [ 4] [ 12] [000000000000] +06:29:05 [ 7] [ 10] [0320062901] +06:29:05 [ 11] [ 6] [663732] +06:29:05 [ 12] [ 6] [062901] +06:29:05 [ 13] [ 4] [0320] +06:29:05 [ 15] [ 4] [0320] +06:29:05 [ 18] [ 4] [6011] +06:29:05 [ 22] [ 3] [900] +06:29:05 [ 25] [ 2] [02] +06:29:05 [ 28] [ 9] [D00000000] +06:29:05 [ 32] [ 6] [621354] +06:29:05 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:29:05 [ 37] [ 12] [507903499381] +06:29:05 [ 41] [ 8] [06002200] +06:29:05 [ 42] [ 15] [NATIVE ] +06:29:05 [ 43] [ 40] [Beng Market Beng LAO] +06:29:05 [ 49] [ 3] [418] +06:29:05 [ 52] [ 16] [8BF71FC2C0054AA4] +06:29:05 ============================================================================ +06:29:05 + + +waiting on router queue for slot.... +06:29:05 Sending to : <4> +06:29:05 ============================================================================ +06:29:06 ============================================================================ +06:29:06 Slot Id : <146> +06:29:06 Transaction Type : RESPONSE +06:29:06 Received From : +06:29:06 ============================================================================ +06:29:06 FNo. Len. Field Value +06:29:06 ============================================================================ +06:29:06 [ 1] [ 4] [0210] +06:29:06 [ 2] [ 16] [6688990103295802] +06:29:06 [ 3] [ 6] [300000] +06:29:06 [ 4] [ 12] [000000000000] +06:29:06 [ 11] [ 6] [663732] +06:29:06 [ 12] [ 6] [062901] +06:29:06 [ 15] [ 4] [0320] +06:29:06 [ 18] [ 4] [6011] +06:29:06 [ 32] [ 6] [621354] +06:29:06 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:29:06 [ 37] [ 12] [507903499381] +06:29:06 [ 38] [ 6] [511437] +06:29:06 [ 39] [ 2] [00] +06:29:06 [ 41] [ 8] [06002200] +06:29:06 [ 49] [ 3] [418] +06:29:06 [ 54] [ 20] [0002418C000320108271] +06:29:06 ============================================================================ +06:29:06 Sending to : +06:29:06 ============================================================================ +06:29:06 + + +waiting on router queue for slot.... +06:29:08 ============================================================================ +06:29:08 Slot Id : <146> +06:29:08 Transaction Type : RESPONSE +06:29:08 Received From : +06:29:08 ============================================================================ +06:29:08 FNo. Len. Field Value +06:29:08 ============================================================================ +06:29:08 [ 1] [ 4] [0210] +06:29:08 [ 2] [ 16] [6688990103295802] +06:29:08 [ 3] [ 6] [300000] +06:29:08 [ 4] [ 12] [000000000000] +06:29:08 [ 11] [ 6] [663732] +06:29:08 [ 12] [ 6] [062901] +06:29:08 [ 15] [ 4] [0320] +06:29:08 [ 18] [ 4] [6011] +06:29:08 [ 32] [ 6] [621354] +06:29:08 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:29:08 [ 37] [ 12] [507903499381] +06:29:08 [ 38] [ 6] [511437] +06:29:08 [ 39] [ 2] [00] +06:29:08 [ 41] [ 8] [06002200] +06:29:08 [ 49] [ 3] [418] +06:29:08 [ 54] [ 20] [0002418C000320108271] +06:29:08 ============================================================================ +06:29:08 Calculate Source COMM Id = 0 +06:29:08 ============================================================================ +06:29:08 + + +waiting on router queue for slot.... +06:29:08 ============================================================================ +06:29:08 Slot Id : <159> +06:29:08 Transaction Type : REQUEST +06:29:08 Received From : +06:29:08 ============================================================================ +06:29:08 FNo. Len. Field Value +06:29:08 ============================================================================ +06:29:08 [ 1] [ 4] [0800] +06:29:08 [ 2] [ 5] [02531] +06:29:08 [ 3] [ 6] [579068] +06:29:08 [ 7] [ 10] [0319232908] +06:29:08 [ 11] [ 6] [806788] +06:29:08 [ 15] [ 10] [0319232908] +06:29:08 [ 37] [ 11] [57906806788] +06:29:08 [ 70] [ 3] [001] +06:29:08 ============================================================================ +06:29:08 + + +waiting on router queue for slot.... +06:29:08 ============================================================================ +06:29:08 Slot Id : <159> +06:29:08 Transaction Type : RESPONSE +06:29:08 Received From : +06:29:08 ============================================================================ +06:29:08 FNo. Len. Field Value +06:29:08 ============================================================================ +06:29:08 [ 1] [ 4] [0810] +06:29:08 [ 7] [ 10] [0319232908] +06:29:08 [ 11] [ 6] [806788] +06:29:08 [ 15] [ 4] [0319] +06:29:08 [ 37] [ 12] [57906806788] +06:29:08 [ 39] [ 2] [00] +06:29:08 [ 70] [ 3] [001] +06:29:08 ============================================================================ +06:29:08 Sending to : +06:29:08 ============================================================================ +06:29:08 + + +waiting on router queue for slot.... +06:29:09 ============================================================================ +06:29:09 Slot Id : <175> +06:29:09 Transaction Type : REQUEST +06:29:09 Received From : +06:29:09 ============================================================================ +06:29:09 FNo. Len. Field Value +06:29:09 ============================================================================ +06:29:09 [ 1] [ 4] [0800] +06:29:09 [ 7] [ 10] [0319112818] +06:29:09 [ 11] [ 6] [154895] +06:29:09 [ 70] [ 3] [301] +06:29:09 ============================================================================ +06:29:09 + + +waiting on router queue for slot.... +06:29:09 Sending to : +06:29:09 ============================================================================ +06:29:09 ============================================================================ +06:29:09 Slot Id : <175> +06:29:09 Transaction Type : RESPONSE +06:29:09 Received From : +06:29:09 ============================================================================ +06:29:09 FNo. Len. Field Value +06:29:09 ============================================================================ +06:29:09 [ 1] [ 4] [0810] +06:29:09 [ 7] [ 10] [0319112818] +06:29:09 [ 11] [ 6] [154895] +06:29:09 [ 39] [ 2] [00] +06:29:09 [ 70] [ 3] [301] +06:29:09 ============================================================================ +06:29:09 Calculate Source COMM Id = 2 +06:29:09 ============================================================================ +06:29:09 + + +waiting on router queue for slot.... +06:29:10 ============================================================================ +06:29:10 Slot Id : <170> +06:29:10 Transaction Type : REQUEST +06:29:10 Received From : +06:29:10 ============================================================================ +06:29:10 FNo. Len. Field Value +06:29:10 ============================================================================ +06:29:10 [ 1] [ 4] [0200] +06:29:10 [ 2] [ 16] [6213545000476287] +06:29:10 [ 3] [ 6] [010000] +06:29:10 [ 4] [ 12] [000100000000] +06:29:10 [ 7] [ 10] [0319232818] +06:29:10 [ 11] [ 6] [266616] +06:29:10 [ 12] [ 6] [062818] +06:29:10 [ 13] [ 4] [0320] +06:29:10 [ 14] [ 4] [4912] +06:29:10 [ 15] [ 4] [0320] +06:29:10 [ 18] [ 4] [6011] +06:29:10 [ 19] [ 3] [418] +06:29:10 [ 22] [ 3] [021] +06:29:10 [ 25] [ 2] [01] +06:29:10 [ 28] [ 9] [D00002000] +06:29:10 [ 32] [ 6] [180893] +06:29:10 [ 35] [ 32] [6213545000476287=491212017628614] +06:29:10 [ 37] [ 12] [507923266616] +06:29:10 [ 41] [ 8] [0366SKTT] +06:29:10 [ 42] [ 15] [999999 ] +06:29:10 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:29:10 [ 49] [ 3] [418] +06:29:10 [ 52] [ 16] [F16EF183710F2CD4] +06:29:10 ============================================================================ +06:29:10 + + +waiting on router queue for slot.... +06:29:10 Sending to : +06:29:10 ============================================================================ +06:29:10 Sending to : +06:29:10 ============================================================================ +06:29:11 ============================================================================ +06:29:11 Slot Id : <170> +06:29:11 Transaction Type : REQUEST +06:29:11 Received From : +06:29:11 ============================================================================ +06:29:11 FNo. Len. Field Value +06:29:11 ============================================================================ +06:29:11 [ 1] [ 4] [0200] +06:29:11 [ 2] [ 16] [6213545000476287] +06:29:11 [ 3] [ 6] [010000] +06:29:11 [ 4] [ 12] [000100000000] +06:29:11 [ 7] [ 10] [0319232818] +06:29:11 [ 11] [ 6] [266616] +06:29:11 [ 12] [ 6] [062818] +06:29:11 [ 13] [ 4] [0320] +06:29:11 [ 14] [ 4] [4912] +06:29:11 [ 15] [ 4] [0320] +06:29:11 [ 18] [ 4] [6011] +06:29:11 [ 19] [ 3] [418] +06:29:11 [ 22] [ 3] [021] +06:29:11 [ 25] [ 2] [01] +06:29:11 [ 28] [ 9] [D00002000] +06:29:11 [ 32] [ 6] [180893] +06:29:11 [ 35] [ 32] [6213545000476287=491212017628614] +06:29:11 [ 37] [ 12] [507923266616] +06:29:11 [ 41] [ 8] [0366SKTT] +06:29:11 [ 42] [ 15] [999999 ] +06:29:11 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:29:11 [ 49] [ 3] [418] +06:29:11 [ 52] [ 16] [F16EF183710F2CD4] +06:29:11 ============================================================================ +06:29:11 + + +waiting on router queue for slot.... +06:29:11 Sending to : +06:29:11 ============================================================================ +06:29:11 ============================================================================ +06:29:11 Slot Id : <170> +06:29:11 Transaction Type : REQUEST +06:29:11 Received From : +06:29:11 ============================================================================ +06:29:11 FNo. Len. Field Value +06:29:11 ============================================================================ +06:29:11 [ 1] [ 4] [0200] +06:29:11 [ 2] [ 16] [6213545000476287] +06:29:11 [ 3] [ 6] [010000] +06:29:11 [ 4] [ 12] [000100000000] +06:29:11 [ 7] [ 10] [0319232818] +06:29:11 [ 11] [ 6] [266616] +06:29:11 [ 12] [ 6] [062818] +06:29:11 [ 13] [ 4] [0320] +06:29:11 [ 14] [ 4] [4912] +06:29:11 [ 15] [ 4] [0320] +06:29:11 [ 18] [ 4] [6011] +06:29:11 [ 19] [ 3] [418] +06:29:11 [ 22] [ 3] [021] +06:29:11 [ 25] [ 2] [01] +06:29:11 [ 28] [ 9] [D00002000] +06:29:11 [ 32] [ 6] [180893] +06:29:11 [ 35] [ 32] [6213545000476287=491212017628614] +06:29:11 [ 37] [ 12] [507923266616] +06:29:11 [ 41] [ 8] [0366SKTT] +06:29:11 [ 42] [ 15] [999999 ] +06:29:11 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:29:11 [ 49] [ 3] [418] +06:29:11 [ 52] [ 16] [7CDC3D392B405E8C] +06:29:11 ============================================================================ +06:29:11 + + +waiting on router queue for slot.... +06:29:11 Sending to : <0> +06:29:11 ============================================================================ +06:29:11 ============================================================================ +06:29:11 Slot Id : <170> +06:29:11 Transaction Type : RESPONSE +06:29:11 Received From : +06:29:11 ============================================================================ +06:29:11 FNo. Len. Field Value +06:29:11 ============================================================================ +06:29:11 [ 1] [ 4] [0210] +06:29:11 [ 2] [ 16] [6213545000476287] +06:29:11 [ 3] [ 6] [010000] +06:29:11 [ 4] [ 12] [000100000000] +06:29:11 [ 7] [ 10] [0319232818] +06:29:11 [ 11] [ 6] [266616] +06:29:11 [ 12] [ 6] [062818] +06:29:11 [ 13] [ 4] [0320] +06:29:11 [ 15] [ 4] [0320] +06:29:11 [ 18] [ 4] [6011] +06:29:11 [ 19] [ 3] [418] +06:29:11 [ 32] [ 6] [180893] +06:29:11 [ 35] [ 32] [6213545000476287=491212017628614] +06:29:11 [ 37] [ 12] [507923266616] +06:29:11 [ 38] [ 6] [543606] +06:29:11 [ 39] [ 2] [00] +06:29:11 [ 41] [ 8] [0366SKTT] +06:29:11 [ 49] [ 3] [418] +06:29:11 [ 54] [ 40] [0001418C0002628664840002418C000262866484] +06:29:11 ============================================================================ +06:29:11 Sending to : +06:29:11 ============================================================================ +06:29:11 + + +waiting on router queue for slot.... +06:29:13 ============================================================================ +06:29:13 Slot Id : <170> +06:29:13 Transaction Type : RESPONSE +06:29:13 Received From : +06:29:13 ============================================================================ +06:29:13 FNo. Len. Field Value +06:29:13 ============================================================================ +06:29:13 [ 1] [ 4] [0210] +06:29:13 [ 2] [ 16] [6213545000476287] +06:29:13 [ 3] [ 6] [010000] +06:29:13 [ 4] [ 12] [000100000000] +06:29:13 [ 7] [ 10] [0319232818] +06:29:13 [ 11] [ 6] [266616] +06:29:13 [ 12] [ 6] [062818] +06:29:13 [ 13] [ 4] [0320] +06:29:13 [ 15] [ 4] [0320] +06:29:13 [ 18] [ 4] [6011] +06:29:13 [ 19] [ 3] [418] +06:29:13 [ 32] [ 6] [180893] +06:29:13 [ 35] [ 32] [6213545000476287=491212017628614] +06:29:13 [ 37] [ 12] [507923266616] +06:29:13 [ 38] [ 6] [543606] +06:29:13 [ 39] [ 2] [00] +06:29:13 [ 41] [ 8] [0366SKTT] +06:29:13 [ 49] [ 3] [418] +06:29:13 [ 54] [ 40] [0001418C0002628664840002418C000262866484] +06:29:13 ============================================================================ +06:29:13 Calculate Source COMM Id = 2 +06:29:13 ============================================================================ +06:29:13 + + +waiting on router queue for slot.... +06:29:25 ============================================================================ +06:29:25 Slot Id : <141> +06:29:25 Transaction Type : REQUEST +06:29:25 Received From : +06:29:25 ============================================================================ +06:29:25 FNo. Len. Field Value +06:29:25 ============================================================================ +06:29:25 [ 1] [ 4] [0800] +06:29:25 [ 7] [ 10] [0319112833] +06:29:25 [ 11] [ 6] [154896] +06:29:25 [ 70] [ 3] [301] +06:29:25 ============================================================================ +06:29:25 + + +waiting on router queue for slot.... +06:29:25 Sending to : +06:29:25 ============================================================================ +06:29:25 ============================================================================ +06:29:25 Slot Id : <141> +06:29:25 Transaction Type : RESPONSE +06:29:25 Received From : +06:29:25 ============================================================================ +06:29:25 FNo. Len. Field Value +06:29:25 ============================================================================ +06:29:25 [ 1] [ 4] [0810] +06:29:25 [ 7] [ 10] [0319112833] +06:29:25 [ 11] [ 6] [154896] +06:29:25 [ 39] [ 2] [00] +06:29:25 [ 70] [ 3] [301] +06:29:25 ============================================================================ +06:29:25 Calculate Source COMM Id = 2 +06:29:25 ============================================================================ +06:29:25 + + +waiting on router queue for slot.... +06:29:40 ============================================================================ +06:29:40 Slot Id : <151> +06:29:40 Transaction Type : REQUEST +06:29:40 Received From : +06:29:40 ============================================================================ +06:29:40 FNo. Len. Field Value +06:29:40 ============================================================================ +06:29:40 [ 1] [ 4] [0800] +06:29:40 [ 7] [ 10] [0319112848] +06:29:40 [ 11] [ 6] [154897] +06:29:40 [ 70] [ 3] [301] +06:29:40 ============================================================================ +06:29:40 + + +waiting on router queue for slot.... +06:29:40 Sending to : +06:29:40 ============================================================================ +06:29:40 ============================================================================ +06:29:40 Slot Id : <151> +06:29:40 Transaction Type : RESPONSE +06:29:40 Received From : +06:29:40 ============================================================================ +06:29:40 FNo. Len. Field Value +06:29:40 ============================================================================ +06:29:40 [ 1] [ 4] [0810] +06:29:40 [ 7] [ 10] [0319112848] +06:29:40 [ 11] [ 6] [154897] +06:29:40 [ 39] [ 2] [00] +06:29:40 [ 70] [ 3] [301] +06:29:40 ============================================================================ +06:29:40 Calculate Source COMM Id = 2 +06:29:40 ============================================================================ +06:29:40 + + +waiting on router queue for slot.... +06:29:51 ============================================================================ +06:29:51 Slot Id : <164> +06:29:51 Transaction Type : REQUEST +06:29:51 Received From : +06:29:51 ============================================================================ +06:29:51 FNo. Len. Field Value +06:29:51 ============================================================================ +06:29:51 [ 1] [ 4] [0800] +06:29:51 [ 7] [ 10] [0319112900] +06:29:51 [ 11] [ 6] [154898] +06:29:51 [ 70] [ 3] [301] +06:29:51 ============================================================================ +06:29:51 + + +waiting on router queue for slot.... +06:29:51 Sending to : +06:29:51 ============================================================================ +06:29:51 ============================================================================ +06:29:51 Slot Id : <164> +06:29:51 Transaction Type : RESPONSE +06:29:51 Received From : +06:29:51 ============================================================================ +06:29:51 FNo. Len. Field Value +06:29:51 ============================================================================ +06:29:51 [ 1] [ 4] [0810] +06:29:51 [ 7] [ 10] [0319112900] +06:29:51 [ 11] [ 6] [154898] +06:29:51 [ 39] [ 2] [00] +06:29:51 [ 70] [ 3] [301] +06:29:51 ============================================================================ +06:29:51 Calculate Source COMM Id = 2 +06:29:51 ============================================================================ +06:29:51 + + +waiting on router queue for slot.... +06:29:54 ============================================================================ +06:29:54 Slot Id : <157> +06:29:54 Transaction Type : REQUEST +06:29:54 Received From : +06:29:54 ============================================================================ +06:29:54 FNo. Len. Field Value +06:29:54 ============================================================================ +06:29:54 [ 1] [ 4] [0800] +06:29:54 [ 7] [ 10] [0319233742] +06:29:54 [ 11] [ 6] [037507] +06:29:54 [ 37] [ 12] [57906037507] +06:29:54 [ 70] [ 3] [301] +06:29:54 ============================================================================ +06:29:54 + + +waiting on router queue for slot.... +06:29:54 Sending to : +06:29:54 ============================================================================ +06:29:54 ============================================================================ +06:29:54 Slot Id : <157> +06:29:54 Transaction Type : RESPONSE +06:29:54 Received From : +06:29:54 ============================================================================ +06:29:54 FNo. Len. Field Value +06:29:54 ============================================================================ +06:29:54 [ 1] [ 4] [0810] +06:29:54 [ 7] [ 10] [0319233742] +06:29:54 [ 11] [ 6] [037507] +06:29:54 [ 37] [ 12] [579060375070] +06:29:54 [ 39] [ 2] [00] +06:29:54 [ 70] [ 3] [810] +06:29:54 ============================================================================ +06:29:54 Calculate Source COMM Id = 1 +06:29:54 ============================================================================ +06:29:54 + + +waiting on router queue for slot.... +06:30:00 ============================================================================ +06:30:00 Slot Id : <172> +06:30:00 Transaction Type : REQUEST +06:30:00 Received From : +06:30:00 ============================================================================ +06:30:00 FNo. Len. Field Value +06:30:00 ============================================================================ +06:30:00 [ 1] [ 4] [0800] +06:30:00 [ 7] [ 10] [0320134150] +06:30:00 [ 11] [ 6] [064150] +06:30:00 [ 37] [ 12] [57906064150] +06:30:00 [ 70] [ 3] [301] +06:30:00 ============================================================================ +06:30:00 + + +waiting on router queue for slot.... +06:30:00 Sending to : +06:30:00 ============================================================================ +06:30:00 ============================================================================ +06:30:00 Slot Id : <172> +06:30:00 Transaction Type : RESPONSE +06:30:00 Received From : +06:30:00 ============================================================================ +06:30:00 FNo. Len. Field Value +06:30:00 ============================================================================ +06:30:00 [ 1] [ 4] [0810] +06:30:00 [ 7] [ 10] [0320134150] +06:30:00 [ 11] [ 6] [064150] +06:30:00 [ 37] [ 12] [579060641500] +06:30:00 [ 39] [ 2] [00] +06:30:00 [ 70] [ 3] [810] +06:30:00 ============================================================================ +06:30:00 Calculate Source COMM Id = 6 +06:30:00 ============================================================================ +06:30:00 + + +waiting on router queue for slot.... +06:30:01 ============================================================================ +06:30:01 Slot Id : <148> +06:30:01 Transaction Type : REQUEST +06:30:01 Received From : +06:30:01 ============================================================================ +06:30:01 FNo. Len. Field Value +06:30:01 ============================================================================ +06:30:01 [ 1] [ 4] [0200] +06:30:01 [ 2] [ 16] [6213545000476287] +06:30:01 [ 3] [ 6] [010000] +06:30:01 [ 4] [ 12] [000100000000] +06:30:01 [ 7] [ 10] [0319232907] +06:30:01 [ 11] [ 6] [266620] +06:30:01 [ 12] [ 6] [062907] +06:30:01 [ 13] [ 4] [0320] +06:30:01 [ 14] [ 4] [4912] +06:30:01 [ 15] [ 4] [0320] +06:30:01 [ 18] [ 4] [6011] +06:30:01 [ 19] [ 3] [418] +06:30:01 [ 22] [ 3] [021] +06:30:01 [ 25] [ 2] [01] +06:30:01 [ 28] [ 9] [D00002000] +06:30:01 [ 32] [ 6] [180893] +06:30:01 [ 35] [ 32] [6213545000476287=491212017628614] +06:30:01 [ 37] [ 12] [507923266620] +06:30:01 [ 41] [ 8] [0366SKTT] +06:30:01 [ 42] [ 15] [999999 ] +06:30:01 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:30:01 [ 49] [ 3] [418] +06:30:01 [ 52] [ 16] [F16EF183710F2CD4] +06:30:01 ============================================================================ +06:30:01 + + +waiting on router queue for slot.... +06:30:01 Sending to : +06:30:01 ============================================================================ +06:30:01 Sending to : +06:30:01 ============================================================================ +06:30:01 ============================================================================ +06:30:01 Slot Id : <148> +06:30:01 Transaction Type : REQUEST +06:30:01 Received From : +06:30:01 ============================================================================ +06:30:01 FNo. Len. Field Value +06:30:01 ============================================================================ +06:30:01 [ 1] [ 4] [0200] +06:30:01 [ 2] [ 16] [6213545000476287] +06:30:01 [ 3] [ 6] [010000] +06:30:01 [ 4] [ 12] [000100000000] +06:30:01 [ 7] [ 10] [0319232907] +06:30:01 [ 11] [ 6] [266620] +06:30:01 [ 12] [ 6] [062907] +06:30:01 [ 13] [ 4] [0320] +06:30:01 [ 14] [ 4] [4912] +06:30:01 [ 15] [ 4] [0320] +06:30:01 [ 18] [ 4] [6011] +06:30:01 [ 19] [ 3] [418] +06:30:01 [ 22] [ 3] [021] +06:30:01 [ 25] [ 2] [01] +06:30:01 [ 28] [ 9] [D00002000] +06:30:01 [ 32] [ 6] [180893] +06:30:01 [ 35] [ 32] [6213545000476287=491212017628614] +06:30:01 [ 37] [ 12] [507923266620] +06:30:01 [ 41] [ 8] [0366SKTT] +06:30:01 [ 42] [ 15] [999999 ] +06:30:01 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:30:01 [ 49] [ 3] [418] +06:30:01 [ 52] [ 16] [F16EF183710F2CD4] +06:30:01 ============================================================================ +06:30:01 + + +waiting on router queue for slot.... +06:30:01 Sending to : +06:30:01 ============================================================================ +06:30:01 ============================================================================ +06:30:01 Slot Id : <148> +06:30:01 Transaction Type : REQUEST +06:30:01 Received From : +06:30:01 ============================================================================ +06:30:01 FNo. Len. Field Value +06:30:01 ============================================================================ +06:30:01 [ 1] [ 4] [0200] +06:30:01 [ 2] [ 16] [6213545000476287] +06:30:01 [ 3] [ 6] [010000] +06:30:01 [ 4] [ 12] [000100000000] +06:30:01 [ 7] [ 10] [0319232907] +06:30:01 [ 11] [ 6] [266620] +06:30:01 [ 12] [ 6] [062907] +06:30:01 [ 13] [ 4] [0320] +06:30:01 [ 14] [ 4] [4912] +06:30:01 [ 15] [ 4] [0320] +06:30:01 [ 18] [ 4] [6011] +06:30:01 [ 19] [ 3] [418] +06:30:01 [ 22] [ 3] [021] +06:30:01 [ 25] [ 2] [01] +06:30:01 [ 28] [ 9] [D00002000] +06:30:01 [ 32] [ 6] [180893] +06:30:01 [ 35] [ 32] [6213545000476287=491212017628614] +06:30:01 [ 37] [ 12] [507923266620] +06:30:01 [ 41] [ 8] [0366SKTT] +06:30:01 [ 42] [ 15] [999999 ] +06:30:01 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +06:30:01 [ 49] [ 3] [418] +06:30:01 [ 52] [ 16] [7CDC3D392B405E8C] +06:30:01 ============================================================================ +06:30:01 + + +waiting on router queue for slot.... +06:30:01 Sending to : <0> +06:30:01 ============================================================================ +06:30:02 ============================================================================ +06:30:02 Slot Id : <182> +06:30:02 Transaction Type : REQUEST +06:30:02 Received From : +06:30:02 ============================================================================ +06:30:02 FNo. Len. Field Value +06:30:02 ============================================================================ +06:30:02 [ 1] [ 4] [0800] +06:30:02 [ 7] [ 10] [0319112910] +06:30:02 [ 11] [ 6] [154899] +06:30:02 [ 70] [ 3] [301] +06:30:02 ============================================================================ +06:30:02 + + +waiting on router queue for slot.... +06:30:02 Sending to : +06:30:02 ============================================================================ +06:30:02 ============================================================================ +06:30:02 Slot Id : <182> +06:30:02 Transaction Type : RESPONSE +06:30:02 Received From : +06:30:02 ============================================================================ +06:30:02 FNo. Len. Field Value +06:30:02 ============================================================================ +06:30:02 [ 1] [ 4] [0810] +06:30:02 [ 7] [ 10] [0319112910] +06:30:02 [ 11] [ 6] [154899] +06:30:02 [ 39] [ 2] [00] +06:30:02 [ 70] [ 3] [301] +06:30:02 ============================================================================ +06:30:02 Calculate Source COMM Id = 2 +06:30:02 ============================================================================ +06:30:02 + + +waiting on router queue for slot.... +06:30:02 ============================================================================ +06:30:02 Slot Id : <148> +06:30:02 Transaction Type : RESPONSE +06:30:02 Received From : +06:30:02 ============================================================================ +06:30:02 FNo. Len. Field Value +06:30:02 ============================================================================ +06:30:02 [ 1] [ 4] [0210] +06:30:02 [ 2] [ 16] [6213545000476287] +06:30:02 [ 3] [ 6] [010000] +06:30:02 [ 4] [ 12] [000100000000] +06:30:02 [ 7] [ 10] [0319232907] +06:30:02 [ 11] [ 6] [266620] +06:30:02 [ 12] [ 6] [062907] +06:30:02 [ 13] [ 4] [0320] +06:30:02 [ 15] [ 4] [0320] +06:30:02 [ 18] [ 4] [6011] +06:30:02 [ 19] [ 3] [418] +06:30:02 [ 32] [ 6] [180893] +06:30:02 [ 35] [ 32] [6213545000476287=491212017628614] +06:30:02 [ 37] [ 12] [507923266620] +06:30:02 [ 38] [ 6] [005643] +06:30:02 [ 39] [ 2] [00] +06:30:02 [ 41] [ 8] [0366SKTT] +06:30:02 [ 49] [ 3] [418] +06:30:02 [ 54] [ 40] [0001418C0001626664840002418C000162666484] +06:30:02 ============================================================================ +06:30:02 Sending to : +06:30:02 ============================================================================ +06:30:02 + + +waiting on router queue for slot.... +06:30:03 ============================================================================ +06:30:03 Slot Id : <148> +06:30:03 Transaction Type : RESPONSE +06:30:03 Received From : +06:30:03 ============================================================================ +06:30:03 FNo. Len. Field Value +06:30:03 ============================================================================ +06:30:03 [ 1] [ 4] [0210] +06:30:03 [ 2] [ 16] [6213545000476287] +06:30:03 [ 3] [ 6] [010000] +06:30:03 [ 4] [ 12] [000100000000] +06:30:03 [ 7] [ 10] [0319232907] +06:30:03 [ 11] [ 6] [266620] +06:30:03 [ 12] [ 6] [062907] +06:30:03 [ 13] [ 4] [0320] +06:30:03 [ 15] [ 4] [0320] +06:30:03 [ 18] [ 4] [6011] +06:30:03 [ 19] [ 3] [418] +06:30:03 [ 32] [ 6] [180893] +06:30:03 [ 35] [ 32] [6213545000476287=491212017628614] +06:30:03 [ 37] [ 12] [507923266620] +06:30:03 [ 38] [ 6] [005643] +06:30:03 [ 39] [ 2] [00] +06:30:03 [ 41] [ 8] [0366SKTT] +06:30:03 [ 49] [ 3] [418] +06:30:03 [ 54] [ 40] [0001418C0001626664840002418C000162666484] +06:30:03 ============================================================================ +06:30:03 Calculate Source COMM Id = 2 +06:30:03 ============================================================================ +06:30:03 + + +waiting on router queue for slot.... +06:30:05 ============================================================================ +06:30:05 Slot Id : <186> +06:30:05 Transaction Type : REQUEST +06:30:05 Received From : +06:30:05 ============================================================================ +06:30:05 FNo. Len. Field Value +06:30:05 ============================================================================ +06:30:05 [ 1] [ 4] [0800] +06:30:05 [ 7] [ 10] [0319233002] +06:30:05 [ 11] [ 6] [099526] +06:30:05 [ 37] [ 12] [507906099526] +06:30:05 [ 70] [ 3] [001] +06:30:05 ============================================================================ +06:30:05 + + +waiting on router queue for slot.... +06:30:05 Sending to : +06:30:05 ============================================================================ +06:30:05 ============================================================================ +06:30:05 Slot Id : <186> +06:30:05 Transaction Type : RESPONSE +06:30:05 Received From : +06:30:05 ============================================================================ +06:30:05 FNo. Len. Field Value +06:30:05 ============================================================================ +06:30:05 [ 1] [ 4] [0810] +06:30:05 [ 7] [ 10] [0319233002] +06:30:05 [ 11] [ 6] [099526] +06:30:05 [ 37] [ 12] [507906099526] +06:30:05 [ 39] [ 2] [00] +06:30:05 [ 70] [ 3] [001] +06:30:05 ============================================================================ +06:30:05 Calculate Source COMM Id = 0 +06:30:05 ============================================================================ +06:30:05 + + +waiting on router queue for slot.... +06:30:10 ============================================================================ +06:30:10 Slot Id : <171> +06:30:10 Transaction Type : REQUEST +06:30:10 Received From : +06:30:10 ============================================================================ +06:30:10 FNo. Len. Field Value +06:30:10 ============================================================================ +06:30:10 [ 1] [ 4] [0200] +06:30:10 [ 2] [ 16] [6213544000609419] +06:30:10 [ 3] [ 6] [300000] +06:30:10 [ 4] [ 12] [000000000000] +06:30:10 [ 7] [ 10] [0320062802] +06:30:10 [ 11] [ 6] [929035] +06:30:10 [ 12] [ 6] [062802] +06:30:10 [ 13] [ 4] [0320] +06:30:10 [ 15] [ 4] [0320] +06:30:10 [ 18] [ 4] [6011] +06:30:10 [ 19] [ 3] [418] +06:30:10 [ 22] [ 3] [021] +06:30:10 [ 25] [ 2] [01] +06:30:10 [ 28] [ 9] [D00000000] +06:30:10 [ 32] [ 6] [668899] +06:30:10 [ 35] [ 32] [6213544000609419=491212010941478] +06:30:10 [ 37] [ 12] [507902148028] +06:30:10 [ 41] [ 8] [03020024] +06:30:10 [ 42] [ 15] [APT ] +06:30:10 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +06:30:10 [ 49] [ 3] [418] +06:30:10 [ 52] [ 16] [E4F9D1A9F47E22ED] +06:30:10 ============================================================================ +06:30:10 + + +waiting on router queue for slot.... +06:30:10 Sending to : +06:30:10 ============================================================================ +06:30:10 Sending to : +06:30:10 ============================================================================ +06:30:10 ============================================================================ +06:30:10 Slot Id : <126> +06:30:10 Transaction Type : REQUEST +06:30:10 Received From : +06:30:10 ============================================================================ +06:30:10 FNo. Len. Field Value +06:30:10 ============================================================================ +06:30:10 [ 1] [ 4] [0800] +06:30:10 [ 2] [ 5] [02531] +06:30:10 [ 3] [ 6] [579068] +06:30:10 [ 7] [ 10] [0319233010] +06:30:10 [ 11] [ 6] [806789] +06:30:10 [ 15] [ 10] [0319233010] +06:30:10 [ 37] [ 11] [57906806789] +06:30:10 [ 70] [ 3] [001] +06:30:10 ============================================================================ +06:30:10 + + +waiting on router queue for slot.... +06:30:10 ============================================================================ +06:30:10 Slot Id : <126> +06:30:10 Transaction Type : RESPONSE +06:30:10 Received From : +06:30:10 ============================================================================ +06:30:10 FNo. Len. Field Value +06:30:10 ============================================================================ +06:30:10 [ 1] [ 4] [0810] +06:30:10 [ 7] [ 10] [0319233010] +06:30:10 [ 11] [ 6] [806789] +06:30:10 [ 15] [ 4] [0319] +06:30:10 [ 37] [ 12] [57906806789] +06:30:10 [ 39] [ 2] [00] +06:30:10 [ 70] [ 3] [001] +06:30:10 ============================================================================ +06:30:10 Sending to : +06:30:10 ============================================================================ +06:30:10 + + +waiting on router queue for slot.... +06:30:10 ============================================================================ +06:30:10 Slot Id : <171> +06:30:10 Transaction Type : REQUEST +06:30:10 Received From : +06:30:10 ============================================================================ +06:30:10 FNo. Len. Field Value +06:30:10 ============================================================================ +06:30:10 [ 1] [ 4] [0200] +06:30:10 [ 2] [ 16] [6213544000609419] +06:30:10 [ 3] [ 6] [300000] +06:30:10 [ 4] [ 12] [000000000000] +06:30:10 [ 7] [ 10] [0320062802] +06:30:10 [ 11] [ 6] [929035] +06:30:10 [ 12] [ 6] [062802] +06:30:10 [ 13] [ 4] [0320] +06:30:10 [ 15] [ 4] [0320] +06:30:10 [ 18] [ 4] [6011] +06:30:10 [ 19] [ 3] [418] +06:30:10 [ 22] [ 3] [021] +06:30:10 [ 25] [ 2] [01] +06:30:10 [ 28] [ 9] [D00000000] +06:30:10 [ 32] [ 6] [668899] +06:30:10 [ 35] [ 32] [6213544000609419=491212010941478] +06:30:10 [ 37] [ 12] [507902148028] +06:30:10 [ 41] [ 8] [03020024] +06:30:10 [ 42] [ 15] [APT ] +06:30:10 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +06:30:10 [ 49] [ 3] [418] +06:30:10 [ 52] [ 16] [E4F9D1A9F47E22ED] +06:30:10 ============================================================================ +06:30:10 + + +waiting on router queue for slot.... +06:30:10 Sending to : +06:30:10 ============================================================================ +06:30:10 ============================================================================ +06:30:10 Slot Id : <171> +06:30:10 Transaction Type : REQUEST +06:30:10 Received From : +06:30:10 ============================================================================ +06:30:10 FNo. Len. Field Value +06:30:10 ============================================================================ +06:30:10 [ 1] [ 4] [0200] +06:30:10 [ 2] [ 16] [6213544000609419] +06:30:10 [ 3] [ 6] [300000] +06:30:10 [ 4] [ 12] [000000000000] +06:30:10 [ 7] [ 10] [0320062802] +06:30:10 [ 11] [ 6] [929035] +06:30:10 [ 12] [ 6] [062802] +06:30:10 [ 13] [ 4] [0320] +06:30:10 [ 15] [ 4] [0320] +06:30:10 [ 18] [ 4] [6011] +06:30:10 [ 19] [ 3] [418] +06:30:10 [ 22] [ 3] [021] +06:30:10 [ 25] [ 2] [01] +06:30:10 [ 28] [ 9] [D00000000] +06:30:10 [ 32] [ 6] [668899] +06:30:10 [ 35] [ 32] [6213544000609419=491212010941478] +06:30:10 [ 37] [ 12] [507902148028] +06:30:10 [ 41] [ 8] [03020024] +06:30:10 [ 42] [ 15] [APT ] +06:30:10 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +06:30:10 [ 49] [ 3] [418] +06:30:10 [ 52] [ 16] [A78DEC88129972F9] +06:30:10 ============================================================================ +06:30:10 + + +waiting on router queue for slot.... +06:30:10 Sending to : <0> +06:30:10 ============================================================================ +06:30:11 ============================================================================ +06:30:11 Slot Id : <171> +06:30:11 Transaction Type : RESPONSE +06:30:11 Received From : +06:30:11 ============================================================================ +06:30:11 FNo. Len. Field Value +06:30:11 ============================================================================ +06:30:11 [ 1] [ 4] [0210] +06:30:11 [ 2] [ 16] [6213544000609419] +06:30:11 [ 3] [ 6] [300000] +06:30:11 [ 4] [ 12] [000000000000] +06:30:11 [ 7] [ 10] [0320062802] +06:30:11 [ 11] [ 6] [929035] +06:30:11 [ 12] [ 6] [062802] +06:30:11 [ 13] [ 4] [0320] +06:30:11 [ 15] [ 4] [0320] +06:30:11 [ 18] [ 4] [6011] +06:30:11 [ 19] [ 3] [418] +06:30:11 [ 32] [ 6] [668899] +06:30:11 [ 35] [ 32] [6213544000609419=491212010941478] +06:30:11 [ 37] [ 12] [507902148028] +06:30:11 [ 38] [ 6] [222432] +06:30:11 [ 39] [ 2] [00] +06:30:11 [ 41] [ 8] [03020024] +06:30:11 [ 49] [ 3] [418] +06:30:11 [ 54] [ 40] [0001418C0001991703020002418C000199170302] +06:30:11 ============================================================================ +06:30:11 Sending to : +06:30:11 ============================================================================ +06:30:11 + + +waiting on router queue for slot.... +06:30:12 ============================================================================ +06:30:12 Slot Id : <171> +06:30:12 Transaction Type : RESPONSE +06:30:12 Received From : +06:30:12 ============================================================================ +06:30:12 FNo. Len. Field Value +06:30:12 ============================================================================ +06:30:12 [ 1] [ 4] [0210] +06:30:12 [ 2] [ 16] [6213544000609419] +06:30:12 [ 3] [ 6] [300000] +06:30:12 [ 4] [ 12] [000000000000] +06:30:12 [ 7] [ 10] [0320062802] +06:30:12 [ 11] [ 6] [929035] +06:30:12 [ 12] [ 6] [062802] +06:30:12 [ 13] [ 4] [0320] +06:30:12 [ 15] [ 4] [0320] +06:30:12 [ 18] [ 4] [6011] +06:30:12 [ 19] [ 3] [418] +06:30:12 [ 32] [ 6] [668899] +06:30:12 [ 35] [ 32] [6213544000609419=491212010941478] +06:30:12 [ 37] [ 12] [507902148028] +06:30:12 [ 38] [ 6] [222432] +06:30:12 [ 39] [ 2] [00] +06:30:12 [ 41] [ 8] [03020024] +06:30:12 [ 49] [ 3] [418] +06:30:12 [ 54] [ 40] [0001418C0001991703020002418C000199170302] +06:30:12 ============================================================================ +06:30:12 Calculate Source COMM Id = 4 +06:30:12 ============================================================================ +06:30:12 + + +waiting on router queue for slot.... +06:30:17 ============================================================================ +06:30:17 Slot Id : <119> +06:30:17 Transaction Type : REQUEST +06:30:17 Received From : +06:30:17 ============================================================================ +06:30:17 FNo. Len. Field Value +06:30:17 ============================================================================ +06:30:17 [ 1] [ 4] [0800] +06:30:17 [ 7] [ 10] [0319112926] +06:30:17 [ 11] [ 6] [154900] +06:30:17 [ 70] [ 3] [301] +06:30:17 ============================================================================ +06:30:17 + + +waiting on router queue for slot.... +06:30:17 Sending to : +06:30:17 ============================================================================ +06:30:17 ============================================================================ +06:30:17 Slot Id : <119> +06:30:17 Transaction Type : RESPONSE +06:30:17 Received From : +06:30:17 ============================================================================ +06:30:17 FNo. Len. Field Value +06:30:17 ============================================================================ +06:30:17 [ 1] [ 4] [0810] +06:30:17 [ 7] [ 10] [0319112926] +06:30:17 [ 11] [ 6] [154900] +06:30:17 [ 39] [ 2] [00] +06:30:17 [ 70] [ 3] [301] +06:30:17 ============================================================================ +06:30:17 Calculate Source COMM Id = 2 +06:30:17 ============================================================================ +06:30:17 + + +waiting on router queue for slot.... +06:30:28 ============================================================================ +06:30:28 Slot Id : <139> +06:30:28 Transaction Type : REQUEST +06:30:28 Received From : +06:30:28 ============================================================================ +06:30:28 FNo. Len. Field Value +06:30:28 ============================================================================ +06:30:28 [ 1] [ 4] [0800] +06:30:28 [ 7] [ 10] [0319112936] +06:30:28 [ 11] [ 6] [154901] +06:30:28 [ 70] [ 3] [301] +06:30:28 ============================================================================ +06:30:28 + + +waiting on router queue for slot.... +06:30:28 Sending to : +06:30:28 ============================================================================ +06:30:28 ============================================================================ +06:30:28 Slot Id : <139> +06:30:28 Transaction Type : RESPONSE +06:30:28 Received From : +06:30:28 ============================================================================ +06:30:28 FNo. Len. Field Value +06:30:28 ============================================================================ +06:30:28 [ 1] [ 4] [0810] +06:30:28 [ 7] [ 10] [0319112936] +06:30:28 [ 11] [ 6] [154901] +06:30:28 [ 39] [ 2] [00] +06:30:28 [ 70] [ 3] [301] +06:30:28 ============================================================================ +06:30:28 Calculate Source COMM Id = 2 +06:30:28 ============================================================================ +06:30:28 + + +waiting on router queue for slot.... +06:30:43 ============================================================================ +06:30:43 Slot Id : <176> +06:30:43 Transaction Type : REQUEST +06:30:43 Received From : +06:30:43 ============================================================================ +06:30:43 FNo. Len. Field Value +06:30:43 ============================================================================ +06:30:43 [ 1] [ 4] [0800] +06:30:43 [ 7] [ 10] [0319112952] +06:30:43 [ 11] [ 6] [154902] +06:30:43 [ 70] [ 3] [301] +06:30:43 ============================================================================ +06:30:43 + + +waiting on router queue for slot.... +06:30:43 Sending to : +06:30:43 ============================================================================ +06:30:43 ============================================================================ +06:30:43 Slot Id : <176> +06:30:43 Transaction Type : RESPONSE +06:30:43 Received From : +06:30:43 ============================================================================ +06:30:43 FNo. Len. Field Value +06:30:43 ============================================================================ +06:30:43 [ 1] [ 4] [0810] +06:30:43 [ 7] [ 10] [0319112952] +06:30:43 [ 11] [ 6] [154902] +06:30:43 [ 39] [ 2] [00] +06:30:43 [ 70] [ 3] [301] +06:30:43 ============================================================================ +06:30:43 Calculate Source COMM Id = 2 +06:30:43 ============================================================================ +06:30:43 + + +waiting on router queue for slot.... +06:30:46 ============================================================================ +06:30:46 Slot Id : <156> +06:30:46 Transaction Type : REQUEST +06:30:46 Received From : +06:30:46 ============================================================================ +06:30:46 FNo. Len. Field Value +06:30:46 ============================================================================ +06:30:46 [ 1] [ 4] [0200] +06:30:46 [ 2] [ 16] [6213544000609419] +06:30:46 [ 3] [ 6] [010000] +06:30:46 [ 4] [ 12] [000080000000] +06:30:46 [ 7] [ 10] [0320062838] +06:30:46 [ 11] [ 6] [929047] +06:30:46 [ 12] [ 6] [062838] +06:30:46 [ 13] [ 4] [0320] +06:30:46 [ 15] [ 4] [0320] +06:30:46 [ 18] [ 4] [6011] +06:30:46 [ 19] [ 3] [418] +06:30:46 [ 22] [ 3] [021] +06:30:46 [ 25] [ 2] [01] +06:30:46 [ 28] [ 9] [D00002000] +06:30:46 [ 32] [ 6] [668899] +06:30:46 [ 35] [ 32] [6213544000609419=491212010941478] +06:30:46 [ 37] [ 12] [507902148029] +06:30:46 [ 41] [ 8] [03020024] +06:30:46 [ 42] [ 15] [APT ] +06:30:46 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +06:30:46 [ 49] [ 3] [418] +06:30:46 [ 52] [ 16] [E4F9D1A9F47E22ED] +06:30:46 ============================================================================ +06:30:46 + + +waiting on router queue for slot.... +06:30:46 Sending to : +06:30:46 ============================================================================ +06:30:46 Sending to : +06:30:46 ============================================================================ +06:30:46 ============================================================================ +06:30:46 Slot Id : <156> +06:30:46 Transaction Type : REQUEST +06:30:46 Received From : +06:30:46 ============================================================================ +06:30:46 FNo. Len. Field Value +06:30:46 ============================================================================ +06:30:46 [ 1] [ 4] [0200] +06:30:46 [ 2] [ 16] [6213544000609419] +06:30:46 [ 3] [ 6] [010000] +06:30:46 [ 4] [ 12] [000080000000] +06:30:46 [ 7] [ 10] [0320062838] +06:30:46 [ 11] [ 6] [929047] +06:30:46 [ 12] [ 6] [062838] +06:30:46 [ 13] [ 4] [0320] +06:30:46 [ 15] [ 4] [0320] +06:30:46 [ 18] [ 4] [6011] +06:30:46 [ 19] [ 3] [418] +06:30:46 [ 22] [ 3] [021] +06:30:46 [ 25] [ 2] [01] +06:30:46 [ 28] [ 9] [D00002000] +06:30:46 [ 32] [ 6] [668899] +06:30:46 [ 35] [ 32] [6213544000609419=491212010941478] +06:30:46 [ 37] [ 12] [507902148029] +06:30:46 [ 41] [ 8] [03020024] +06:30:46 [ 42] [ 15] [APT ] +06:30:46 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +06:30:46 [ 49] [ 3] [418] +06:30:46 [ 52] [ 16] [E4F9D1A9F47E22ED] +06:30:46 ============================================================================ +06:30:46 + + +waiting on router queue for slot.... +06:30:46 Sending to : +06:30:46 ============================================================================ +06:30:46 ============================================================================ +06:30:46 Slot Id : <156> +06:30:46 Transaction Type : REQUEST +06:30:46 Received From : +06:30:46 ============================================================================ +06:30:46 FNo. Len. Field Value +06:30:46 ============================================================================ +06:30:46 [ 1] [ 4] [0200] +06:30:46 [ 2] [ 16] [6213544000609419] +06:30:46 [ 3] [ 6] [010000] +06:30:46 [ 4] [ 12] [000080000000] +06:30:46 [ 7] [ 10] [0320062838] +06:30:46 [ 11] [ 6] [929047] +06:30:46 [ 12] [ 6] [062838] +06:30:46 [ 13] [ 4] [0320] +06:30:46 [ 15] [ 4] [0320] +06:30:46 [ 18] [ 4] [6011] +06:30:46 [ 19] [ 3] [418] +06:30:46 [ 22] [ 3] [021] +06:30:46 [ 25] [ 2] [01] +06:30:46 [ 28] [ 9] [D00002000] +06:30:46 [ 32] [ 6] [668899] +06:30:46 [ 35] [ 32] [6213544000609419=491212010941478] +06:30:46 [ 37] [ 12] [507902148029] +06:30:46 [ 41] [ 8] [03020024] +06:30:46 [ 42] [ 15] [APT ] +06:30:46 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +06:30:46 [ 49] [ 3] [418] +06:30:46 [ 52] [ 16] [A78DEC88129972F9] +06:30:46 ============================================================================ +06:30:46 + + +waiting on router queue for slot.... +06:30:46 Sending to : <0> +06:30:46 ============================================================================ +06:30:47 ============================================================================ +06:30:47 Slot Id : <156> +06:30:47 Transaction Type : RESPONSE +06:30:47 Received From : +06:30:47 ============================================================================ +06:30:47 FNo. Len. Field Value +06:30:47 ============================================================================ +06:30:47 [ 1] [ 4] [0210] +06:30:47 [ 2] [ 16] [6213544000609419] +06:30:47 [ 3] [ 6] [010000] +06:30:47 [ 4] [ 12] [000080000000] +06:30:47 [ 7] [ 10] [0320062838] +06:30:47 [ 11] [ 6] [929047] +06:30:47 [ 12] [ 6] [062838] +06:30:47 [ 13] [ 4] [0320] +06:30:47 [ 15] [ 4] [0320] +06:30:47 [ 18] [ 4] [6011] +06:30:47 [ 19] [ 3] [418] +06:30:47 [ 32] [ 6] [668899] +06:30:47 [ 35] [ 32] [6213544000609419=491212010941478] +06:30:47 [ 37] [ 12] [507902148029] +06:30:47 [ 38] [ 6] [389219] +06:30:47 [ 39] [ 2] [00] +06:30:47 [ 41] [ 8] [03020024] +06:30:47 [ 49] [ 3] [418] +06:30:47 [ 54] [ 40] [0001418C0001189703020002418C000118970302] +06:30:47 ============================================================================ +06:30:47 Sending to : +06:30:47 ============================================================================ +06:30:47 + + +waiting on router queue for slot.... +06:30:49 ============================================================================ +06:30:49 Slot Id : <156> +06:30:49 Transaction Type : RESPONSE +06:30:49 Received From : +06:30:49 ============================================================================ +06:30:49 FNo. Len. Field Value +06:30:49 ============================================================================ +06:30:49 [ 1] [ 4] [0210] +06:30:49 [ 2] [ 16] [6213544000609419] +06:30:49 [ 3] [ 6] [010000] +06:30:49 [ 4] [ 12] [000080000000] +06:30:49 [ 7] [ 10] [0320062838] +06:30:49 [ 11] [ 6] [929047] +06:30:49 [ 12] [ 6] [062838] +06:30:49 [ 13] [ 4] [0320] +06:30:49 [ 15] [ 4] [0320] +06:30:49 [ 18] [ 4] [6011] +06:30:49 [ 19] [ 3] [418] +06:30:49 [ 32] [ 6] [668899] +06:30:49 [ 35] [ 32] [6213544000609419=491212010941478] +06:30:49 [ 37] [ 12] [507902148029] +06:30:49 [ 38] [ 6] [389219] +06:30:49 [ 39] [ 2] [00] +06:30:49 [ 41] [ 8] [03020024] +06:30:49 [ 49] [ 3] [418] +06:30:49 [ 54] [ 40] [0001418C0001189703020002418C000118970302] +06:30:49 ============================================================================ +06:30:49 Calculate Source COMM Id = 4 +06:30:49 ============================================================================ +06:30:49 + + +waiting on router queue for slot.... +06:30:53 ============================================================================ +06:30:53 Slot Id : <202> +06:30:53 Transaction Type : REQUEST +06:30:53 Received From : +06:30:53 ============================================================================ +06:30:53 FNo. Len. Field Value +06:30:53 ============================================================================ +06:30:53 [ 1] [ 4] [0800] +06:30:53 [ 7] [ 10] [0319113002] +06:30:53 [ 11] [ 6] [154903] +06:30:53 [ 70] [ 3] [301] +06:30:53 ============================================================================ +06:30:53 + + +waiting on router queue for slot.... +06:30:53 Sending to : +06:30:53 ============================================================================ +06:30:53 ============================================================================ +06:30:53 Slot Id : <202> +06:30:53 Transaction Type : RESPONSE +06:30:53 Received From : +06:30:53 ============================================================================ +06:30:53 FNo. Len. Field Value +06:30:53 ============================================================================ +06:30:53 [ 1] [ 4] [0810] +06:30:53 [ 7] [ 10] [0319113002] +06:30:53 [ 11] [ 6] [154903] +06:30:53 [ 39] [ 2] [00] +06:30:53 [ 70] [ 3] [301] +06:30:53 ============================================================================ +06:30:53 Calculate Source COMM Id = 2 +06:30:53 ============================================================================ +06:30:53 + + +waiting on router queue for slot.... +06:31:05 ============================================================================ +06:31:05 Slot Id : <187> +06:31:05 Transaction Type : REQUEST +06:31:05 Received From : +06:31:05 ============================================================================ +06:31:05 FNo. Len. Field Value +06:31:05 ============================================================================ +06:31:05 [ 1] [ 4] [0800] +06:31:05 [ 7] [ 10] [0319113012] +06:31:05 [ 11] [ 6] [154904] +06:31:05 [ 70] [ 3] [301] +06:31:05 ============================================================================ +06:31:05 + + +waiting on router queue for slot.... +06:31:05 Sending to : +06:31:05 ============================================================================ +06:31:05 ============================================================================ +06:31:05 Slot Id : <187> +06:31:05 Transaction Type : RESPONSE +06:31:05 Received From : +06:31:05 ============================================================================ +06:31:05 FNo. Len. Field Value +06:31:05 ============================================================================ +06:31:05 [ 1] [ 4] [0810] +06:31:05 [ 7] [ 10] [0319113012] +06:31:05 [ 11] [ 6] [154904] +06:31:05 [ 39] [ 2] [00] +06:31:05 [ 70] [ 3] [301] +06:31:05 ============================================================================ +06:31:05 Calculate Source COMM Id = 2 +06:31:05 ============================================================================ +06:31:05 + + +waiting on router queue for slot.... +06:31:05 ============================================================================ +06:31:05 Slot Id : <163> +06:31:05 Transaction Type : REQUEST +06:31:05 Received From : +06:31:05 ============================================================================ +06:31:05 FNo. Len. Field Value +06:31:05 ============================================================================ +06:31:05 [ 1] [ 4] [0800] +06:31:05 [ 7] [ 10] [0320134255] +06:31:05 [ 11] [ 6] [064255] +06:31:05 [ 37] [ 12] [57906064255] +06:31:05 [ 70] [ 3] [301] +06:31:05 ============================================================================ +06:31:05 + + +waiting on router queue for slot.... +06:31:05 Sending to : +06:31:05 ============================================================================ +06:31:05 ============================================================================ +06:31:05 Slot Id : <163> +06:31:05 Transaction Type : RESPONSE +06:31:05 Received From : +06:31:05 ============================================================================ +06:31:05 FNo. Len. Field Value +06:31:05 ============================================================================ +06:31:05 [ 1] [ 4] [0810] +06:31:05 [ 7] [ 10] [0320134255] +06:31:05 [ 11] [ 6] [064255] +06:31:05 [ 37] [ 12] [579060642550] +06:31:05 [ 39] [ 2] [00] +06:31:05 [ 70] [ 3] [810] +06:31:05 ============================================================================ +06:31:05 Calculate Source COMM Id = 6 +06:31:05 ============================================================================ +06:31:05 + + +waiting on router queue for slot.... +06:31:10 ============================================================================ +06:31:10 Slot Id : <203> +06:31:10 Transaction Type : REQUEST +06:31:10 Received From : +06:31:10 ============================================================================ +06:31:10 FNo. Len. Field Value +06:31:10 ============================================================================ +06:31:10 [ 1] [ 4] [0200] +06:31:10 [ 2] [ 16] [6688990103295802] +06:31:10 [ 3] [ 6] [012000] +06:31:10 [ 4] [ 12] [000100000000] +06:31:10 [ 7] [ 10] [0320063106] +06:31:10 [ 11] [ 6] [663866] +06:31:10 [ 12] [ 6] [063106] +06:31:10 [ 13] [ 4] [0320] +06:31:10 [ 15] [ 4] [0320] +06:31:10 [ 18] [ 4] [6011] +06:31:10 [ 22] [ 3] [900] +06:31:10 [ 25] [ 2] [02] +06:31:10 [ 28] [ 9] [D00002000] +06:31:10 [ 32] [ 6] [621354] +06:31:10 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:31:10 [ 37] [ 12] [507903499384] +06:31:10 [ 41] [ 8] [06002200] +06:31:10 [ 42] [ 15] [NATIVE ] +06:31:10 [ 43] [ 40] [Beng Market Beng LAO] +06:31:10 [ 49] [ 3] [418] +06:31:10 [ 52] [ 16] [DA2B3C5D5A0119B1] +06:31:10 ============================================================================ +06:31:10 + + +waiting on router queue for slot.... +06:31:10 Sending to : +06:31:10 ============================================================================ +06:31:10 Sending to : +06:31:10 ============================================================================ +06:31:10 ============================================================================ +06:31:10 Slot Id : <203> +06:31:10 Transaction Type : REQUEST +06:31:10 Received From : +06:31:10 ============================================================================ +06:31:10 FNo. Len. Field Value +06:31:10 ============================================================================ +06:31:10 [ 1] [ 4] [0200] +06:31:10 [ 2] [ 16] [6688990103295802] +06:31:10 [ 3] [ 6] [012000] +06:31:10 [ 4] [ 12] [000100000000] +06:31:10 [ 7] [ 10] [0320063106] +06:31:10 [ 11] [ 6] [663866] +06:31:10 [ 12] [ 6] [063106] +06:31:10 [ 13] [ 4] [0320] +06:31:10 [ 15] [ 4] [0320] +06:31:10 [ 18] [ 4] [6011] +06:31:10 [ 22] [ 3] [900] +06:31:10 [ 25] [ 2] [02] +06:31:10 [ 28] [ 9] [D00002000] +06:31:10 [ 32] [ 6] [621354] +06:31:10 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:31:10 [ 37] [ 12] [507903499384] +06:31:10 [ 41] [ 8] [06002200] +06:31:10 [ 42] [ 15] [NATIVE ] +06:31:10 [ 43] [ 40] [Beng Market Beng LAO] +06:31:10 [ 49] [ 3] [418] +06:31:10 [ 52] [ 16] [DA2B3C5D5A0119B1] +06:31:10 ============================================================================ +06:31:10 + + +waiting on router queue for slot.... +06:31:10 Sending to : +06:31:10 ============================================================================ +06:31:10 ============================================================================ +06:31:10 Slot Id : <203> +06:31:10 Transaction Type : REQUEST +06:31:10 Received From : +06:31:10 ============================================================================ +06:31:10 FNo. Len. Field Value +06:31:10 ============================================================================ +06:31:10 [ 1] [ 4] [0200] +06:31:10 [ 2] [ 16] [6688990103295802] +06:31:10 [ 3] [ 6] [012000] +06:31:10 [ 4] [ 12] [000100000000] +06:31:10 [ 7] [ 10] [0320063106] +06:31:10 [ 11] [ 6] [663866] +06:31:10 [ 12] [ 6] [063106] +06:31:10 [ 13] [ 4] [0320] +06:31:10 [ 15] [ 4] [0320] +06:31:10 [ 18] [ 4] [6011] +06:31:10 [ 22] [ 3] [900] +06:31:10 [ 25] [ 2] [02] +06:31:10 [ 28] [ 9] [D00002000] +06:31:10 [ 32] [ 6] [621354] +06:31:10 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:31:10 [ 37] [ 12] [507903499384] +06:31:10 [ 41] [ 8] [06002200] +06:31:10 [ 42] [ 15] [NATIVE ] +06:31:10 [ 43] [ 40] [Beng Market Beng LAO] +06:31:10 [ 49] [ 3] [418] +06:31:10 [ 52] [ 16] [8BF71FC2C0054AA4] +06:31:10 ============================================================================ +06:31:10 + + +waiting on router queue for slot.... +06:31:10 Sending to : <4> +06:31:10 ============================================================================ +06:31:11 ============================================================================ +06:31:11 Slot Id : <203> +06:31:11 Transaction Type : RESPONSE +06:31:11 Received From : +06:31:11 ============================================================================ +06:31:11 FNo. Len. Field Value +06:31:11 ============================================================================ +06:31:11 [ 1] [ 4] [0210] +06:31:11 [ 2] [ 16] [6688990103295802] +06:31:11 [ 3] [ 6] [012000] +06:31:11 [ 4] [ 12] [000100000000] +06:31:11 [ 11] [ 6] [663866] +06:31:11 [ 12] [ 6] [063106] +06:31:11 [ 15] [ 4] [0320] +06:31:11 [ 18] [ 4] [6011] +06:31:11 [ 32] [ 6] [621354] +06:31:11 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:31:11 [ 37] [ 12] [507903499384] +06:31:11 [ 38] [ 6] [492218] +06:31:11 [ 39] [ 2] [00] +06:31:11 [ 41] [ 8] [06002200] +06:31:11 [ 49] [ 3] [418] +06:31:11 [ 54] [ 20] [2002418C000219908271] +06:31:11 ============================================================================ +06:31:11 Sending to : +06:31:11 ============================================================================ +06:31:11 + + +waiting on router queue for slot.... +06:31:12 ============================================================================ +06:31:12 Slot Id : <160> +06:31:12 Transaction Type : REQUEST +06:31:12 Received From : +06:31:12 ============================================================================ +06:31:12 FNo. Len. Field Value +06:31:12 ============================================================================ +06:31:12 [ 1] [ 4] [0800] +06:31:12 [ 2] [ 5] [02531] +06:31:12 [ 3] [ 6] [579068] +06:31:12 [ 7] [ 10] [0319233112] +06:31:12 [ 11] [ 6] [806790] +06:31:12 [ 15] [ 10] [0319233112] +06:31:12 [ 37] [ 11] [57906806790] +06:31:12 [ 70] [ 3] [001] +06:31:12 ============================================================================ +06:31:12 + + +waiting on router queue for slot.... +06:31:12 ============================================================================ +06:31:12 Slot Id : <160> +06:31:12 Transaction Type : RESPONSE +06:31:12 Received From : +06:31:12 ============================================================================ +06:31:12 FNo. Len. Field Value +06:31:12 ============================================================================ +06:31:12 [ 1] [ 4] [0810] +06:31:12 [ 7] [ 10] [0319233112] +06:31:12 [ 11] [ 6] [806790] +06:31:12 [ 15] [ 4] [0319] +06:31:12 [ 37] [ 12] [57906806790] +06:31:12 [ 39] [ 2] [00] +06:31:12 [ 70] [ 3] [001] +06:31:12 ============================================================================ +06:31:12 Sending to : +06:31:12 ============================================================================ +06:31:12 + + +waiting on router queue for slot.... +06:31:13 ============================================================================ +06:31:13 Slot Id : <203> +06:31:13 Transaction Type : RESPONSE +06:31:13 Received From : +06:31:13 ============================================================================ +06:31:13 FNo. Len. Field Value +06:31:13 ============================================================================ +06:31:13 [ 1] [ 4] [0210] +06:31:13 [ 2] [ 16] [6688990103295802] +06:31:13 [ 3] [ 6] [012000] +06:31:13 [ 4] [ 12] [000100000000] +06:31:13 [ 11] [ 6] [663866] +06:31:13 [ 12] [ 6] [063106] +06:31:13 [ 15] [ 4] [0320] +06:31:13 [ 18] [ 4] [6011] +06:31:13 [ 32] [ 6] [621354] +06:31:13 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:31:13 [ 37] [ 12] [507903499384] +06:31:13 [ 38] [ 6] [492218] +06:31:13 [ 39] [ 2] [00] +06:31:13 [ 41] [ 8] [06002200] +06:31:13 [ 49] [ 3] [418] +06:31:13 [ 54] [ 20] [2002418C000219908271] +06:31:13 ============================================================================ +06:31:13 Calculate Source COMM Id = 0 +06:31:13 ============================================================================ +06:31:13 + + +waiting on router queue for slot.... +06:31:18 ============================================================================ +06:31:18 Slot Id : <179> +06:31:18 Transaction Type : REQUEST +06:31:18 Received From : +06:31:18 ============================================================================ +06:31:18 FNo. Len. Field Value +06:31:18 ============================================================================ +06:31:18 [ 1] [ 4] [0800] +06:31:18 [ 7] [ 10] [0319113027] +06:31:18 [ 11] [ 6] [154905] +06:31:18 [ 70] [ 3] [301] +06:31:18 ============================================================================ +06:31:18 + + +waiting on router queue for slot.... +06:31:19 Sending to : +06:31:19 ============================================================================ +06:31:19 ============================================================================ +06:31:19 Slot Id : <179> +06:31:19 Transaction Type : RESPONSE +06:31:19 Received From : +06:31:19 ============================================================================ +06:31:19 FNo. Len. Field Value +06:31:19 ============================================================================ +06:31:19 [ 1] [ 4] [0810] +06:31:19 [ 7] [ 10] [0319113027] +06:31:19 [ 11] [ 6] [154905] +06:31:19 [ 39] [ 2] [00] +06:31:19 [ 70] [ 3] [301] +06:31:19 ============================================================================ +06:31:19 Calculate Source COMM Id = 2 +06:31:19 ============================================================================ +06:31:19 + + +waiting on router queue for slot.... +06:31:20 ============================================================================ +06:31:20 Slot Id : <192> +06:31:20 Transaction Type : REQUEST +06:31:20 Received From : +06:31:20 ============================================================================ +06:31:20 FNo. Len. Field Value +06:31:20 ============================================================================ +06:31:20 [ 1] [ 4] [0800] +06:31:20 [ 7] [ 10] [0319232912] +06:31:20 [ 11] [ 6] [058323] +06:31:20 [ 37] [ 12] [57906058323] +06:31:20 [ 70] [ 3] [301] +06:31:20 ============================================================================ +06:31:20 + + +waiting on router queue for slot.... +06:31:20 Sending to : +06:31:20 ============================================================================ +06:31:20 ============================================================================ +06:31:20 Slot Id : <192> +06:31:20 Transaction Type : RESPONSE +06:31:20 Received From : +06:31:20 ============================================================================ +06:31:20 FNo. Len. Field Value +06:31:20 ============================================================================ +06:31:20 [ 1] [ 4] [0810] +06:31:20 [ 7] [ 10] [0319232912] +06:31:20 [ 11] [ 6] [058323] +06:31:20 [ 37] [ 12] [579060583230] +06:31:20 [ 39] [ 2] [00] +06:31:20 [ 70] [ 3] [810] +06:31:20 ============================================================================ +06:31:20 Calculate Source COMM Id = 4 +06:31:20 ============================================================================ +06:31:20 + + +waiting on router queue for slot.... +06:31:29 ============================================================================ +06:31:29 Slot Id : <144> +06:31:29 Transaction Type : REQUEST +06:31:29 Received From : +06:31:29 ============================================================================ +06:31:29 FNo. Len. Field Value +06:31:29 ============================================================================ +06:31:29 [ 1] [ 4] [0800] +06:31:29 [ 7] [ 10] [0319113037] +06:31:29 [ 11] [ 6] [154906] +06:31:29 [ 70] [ 3] [301] +06:31:29 ============================================================================ +06:31:29 + + +waiting on router queue for slot.... +06:31:29 Sending to : +06:31:29 ============================================================================ +06:31:29 ============================================================================ +06:31:29 Slot Id : <144> +06:31:29 Transaction Type : RESPONSE +06:31:29 Received From : +06:31:29 ============================================================================ +06:31:29 FNo. Len. Field Value +06:31:29 ============================================================================ +06:31:29 [ 1] [ 4] [0810] +06:31:29 [ 7] [ 10] [0319113037] +06:31:29 [ 11] [ 6] [154906] +06:31:29 [ 39] [ 2] [00] +06:31:29 [ 70] [ 3] [301] +06:31:29 ============================================================================ +06:31:29 Calculate Source COMM Id = 2 +06:31:29 ============================================================================ +06:31:29 + + +waiting on router queue for slot.... +06:31:37 ============================================================================ +06:31:37 Slot Id : <204> +06:31:37 Transaction Type : REQUEST +06:31:37 Received From : +06:31:37 ============================================================================ +06:31:37 FNo. Len. Field Value +06:31:37 ============================================================================ +06:31:37 [ 1] [ 4] [0200] +06:31:37 [ 2] [ 16] [6213541000068042] +06:31:37 [ 3] [ 6] [302000] +06:31:37 [ 7] [ 10] [0319233045] +06:31:37 [ 11] [ 6] [266622] +06:31:37 [ 12] [ 6] [063045] +06:31:37 [ 13] [ 4] [0320] +06:31:37 [ 14] [ 4] [4912] +06:31:37 [ 15] [ 4] [0320] +06:31:37 [ 18] [ 4] [6011] +06:31:37 [ 19] [ 3] [418] +06:31:37 [ 22] [ 3] [021] +06:31:37 [ 25] [ 2] [01] +06:31:37 [ 32] [ 6] [180893] +06:31:37 [ 35] [ 32] [6213541000068042=491212016804209] +06:31:37 [ 37] [ 12] [507923266622] +06:31:37 [ 41] [ 8] [0108THNG] +06:31:37 [ 42] [ 15] [999999 ] +06:31:37 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +06:31:37 [ 49] [ 3] [418] +06:31:37 [ 52] [ 16] [ABACBEEA2362BF73] +06:31:37 ============================================================================ +06:31:37 + + +waiting on router queue for slot.... +06:31:37 Sending to : +06:31:37 ============================================================================ +06:31:37 Sending to : +06:31:37 ============================================================================ +06:31:37 ============================================================================ +06:31:37 Slot Id : <204> +06:31:37 Transaction Type : REQUEST +06:31:37 Received From : +06:31:37 ============================================================================ +06:31:37 FNo. Len. Field Value +06:31:37 ============================================================================ +06:31:37 [ 1] [ 4] [0200] +06:31:37 [ 2] [ 16] [6213541000068042] +06:31:37 [ 3] [ 6] [302000] +06:31:37 [ 7] [ 10] [0319233045] +06:31:37 [ 11] [ 6] [266622] +06:31:37 [ 12] [ 6] [063045] +06:31:37 [ 13] [ 4] [0320] +06:31:37 [ 14] [ 4] [4912] +06:31:37 [ 15] [ 4] [0320] +06:31:37 [ 18] [ 4] [6011] +06:31:37 [ 19] [ 3] [418] +06:31:37 [ 22] [ 3] [021] +06:31:37 [ 25] [ 2] [01] +06:31:37 [ 32] [ 6] [180893] +06:31:37 [ 35] [ 32] [6213541000068042=491212016804209] +06:31:37 [ 37] [ 12] [507923266622] +06:31:37 [ 41] [ 8] [0108THNG] +06:31:37 [ 42] [ 15] [999999 ] +06:31:37 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +06:31:37 [ 49] [ 3] [418] +06:31:37 [ 52] [ 16] [ABACBEEA2362BF73] +06:31:37 ============================================================================ +06:31:37 + + +waiting on router queue for slot.... +06:31:37 Sending to : +06:31:37 ============================================================================ +06:31:37 ============================================================================ +06:31:37 Slot Id : <204> +06:31:37 Transaction Type : REQUEST +06:31:37 Received From : +06:31:37 ============================================================================ +06:31:37 FNo. Len. Field Value +06:31:37 ============================================================================ +06:31:37 [ 1] [ 4] [0200] +06:31:37 [ 2] [ 16] [6213541000068042] +06:31:37 [ 3] [ 6] [302000] +06:31:37 [ 7] [ 10] [0319233045] +06:31:37 [ 11] [ 6] [266622] +06:31:37 [ 12] [ 6] [063045] +06:31:37 [ 13] [ 4] [0320] +06:31:37 [ 14] [ 4] [4912] +06:31:37 [ 15] [ 4] [0320] +06:31:37 [ 18] [ 4] [6011] +06:31:37 [ 19] [ 3] [418] +06:31:37 [ 22] [ 3] [021] +06:31:37 [ 25] [ 2] [01] +06:31:37 [ 32] [ 6] [180893] +06:31:37 [ 35] [ 32] [6213541000068042=491212016804209] +06:31:37 [ 37] [ 12] [507923266622] +06:31:37 [ 41] [ 8] [0108THNG] +06:31:37 [ 42] [ 15] [999999 ] +06:31:37 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +06:31:37 [ 49] [ 3] [418] +06:31:37 [ 52] [ 16] [FC40F4F65B424576] +06:31:37 ============================================================================ +06:31:37 + + +waiting on router queue for slot.... +06:31:37 Sending to : <0> +06:31:37 ============================================================================ +06:31:37 ============================================================================ +06:31:37 Slot Id : <204> +06:31:37 Transaction Type : RESPONSE +06:31:37 Received From : +06:31:37 ============================================================================ +06:31:37 FNo. Len. Field Value +06:31:37 ============================================================================ +06:31:37 [ 1] [ 4] [0210] +06:31:37 [ 2] [ 16] [6213541000068042] +06:31:37 [ 3] [ 6] [302000] +06:31:37 [ 4] [ 12] [000000000000] +06:31:37 [ 7] [ 10] [0319233045] +06:31:37 [ 11] [ 6] [266622] +06:31:37 [ 12] [ 6] [063045] +06:31:37 [ 13] [ 4] [0320] +06:31:37 [ 15] [ 4] [0320] +06:31:37 [ 18] [ 4] [6011] +06:31:37 [ 19] [ 3] [418] +06:31:37 [ 32] [ 6] [180893] +06:31:37 [ 35] [ 32] [6213541000068042=491212016804209] +06:31:37 [ 37] [ 12] [507923266622] +06:31:37 [ 38] [ 6] [948766] +06:31:37 [ 39] [ 2] [00] +06:31:37 [ 41] [ 8] [0108THNG] +06:31:37 [ 49] [ 3] [418] +06:31:37 [ 54] [ 40] [2001418C0001778428102002418C000177842810] +06:31:37 ============================================================================ +06:31:37 Sending to : +06:31:37 ============================================================================ +06:31:37 + + +waiting on router queue for slot.... +06:31:39 ============================================================================ +06:31:39 Slot Id : <135> +06:31:39 Transaction Type : REQUEST +06:31:39 Received From : +06:31:39 ============================================================================ +06:31:39 FNo. Len. Field Value +06:31:39 ============================================================================ +06:31:39 [ 1] [ 4] [0200] +06:31:39 [ 2] [ 16] [6213544001671442] +06:31:39 [ 3] [ 6] [011000] +06:31:39 [ 4] [ 12] [000008000000] +06:31:39 [ 7] [ 10] [0320063200] +06:31:39 [ 11] [ 6] [200556] +06:31:39 [ 12] [ 6] [063227] +06:31:39 [ 13] [ 4] [0320] +06:31:39 [ 14] [ 4] [4912] +06:31:39 [ 15] [ 4] [0320] +06:31:39 [ 18] [ 4] [6011] +06:31:39 [ 19] [ 3] [418] +06:31:39 [ 22] [ 3] [021] +06:31:39 [ 25] [ 2] [01] +06:31:39 [ 28] [ 9] [D00002000] +06:31:39 [ 32] [ 6] [198901] +06:31:39 [ 35] [ 32] [6213544001671442=491212017144234] +06:31:39 [ 37] [ 12] [507906200556] +06:31:39 [ 41] [ 8] [01529009] +06:31:39 [ 42] [ 15] [000000041529009] +06:31:39 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:31:39 [ 49] [ 3] [418] +06:31:39 [ 52] [ 16] [19CF912F56C669E3] +06:31:39 ============================================================================ +06:31:39 + + +waiting on router queue for slot.... +06:31:39 Sending to : +06:31:39 ============================================================================ +06:31:39 Sending to : +06:31:39 ============================================================================ +06:31:39 ============================================================================ +06:31:39 Slot Id : <204> +06:31:39 Transaction Type : RESPONSE +06:31:39 Received From : +06:31:39 ============================================================================ +06:31:39 FNo. Len. Field Value +06:31:39 ============================================================================ +06:31:39 [ 1] [ 4] [0210] +06:31:39 [ 2] [ 16] [6213541000068042] +06:31:39 [ 3] [ 6] [302000] +06:31:39 [ 4] [ 12] [000000000000] +06:31:39 [ 7] [ 10] [0319233045] +06:31:39 [ 11] [ 6] [266622] +06:31:39 [ 12] [ 6] [063045] +06:31:39 [ 13] [ 4] [0320] +06:31:39 [ 15] [ 4] [0320] +06:31:39 [ 18] [ 4] [6011] +06:31:39 [ 19] [ 3] [418] +06:31:39 [ 32] [ 6] [180893] +06:31:39 [ 35] [ 32] [6213541000068042=491212016804209] +06:31:39 [ 37] [ 12] [507923266622] +06:31:39 [ 38] [ 6] [948766] +06:31:39 [ 39] [ 2] [00] +06:31:39 [ 41] [ 8] [0108THNG] +06:31:39 [ 49] [ 3] [418] +06:31:39 [ 54] [ 40] [2001418C0001778428102002418C000177842810] +06:31:39 ============================================================================ +06:31:39 Calculate Source COMM Id = 2 +06:31:39 ============================================================================ +06:31:39 + + +waiting on router queue for slot.... +06:31:39 ============================================================================ +06:31:39 Slot Id : <135> +06:31:39 Transaction Type : REQUEST +06:31:39 Received From : +06:31:39 ============================================================================ +06:31:39 FNo. Len. Field Value +06:31:39 ============================================================================ +06:31:39 [ 1] [ 4] [0200] +06:31:39 [ 2] [ 16] [6213544001671442] +06:31:39 [ 3] [ 6] [011000] +06:31:39 [ 4] [ 12] [000008000000] +06:31:39 [ 7] [ 10] [0320063200] +06:31:39 [ 11] [ 6] [200556] +06:31:39 [ 12] [ 6] [063227] +06:31:39 [ 13] [ 4] [0320] +06:31:39 [ 14] [ 4] [4912] +06:31:39 [ 15] [ 4] [0320] +06:31:39 [ 18] [ 4] [6011] +06:31:39 [ 19] [ 3] [418] +06:31:39 [ 22] [ 3] [021] +06:31:39 [ 25] [ 2] [01] +06:31:39 [ 28] [ 9] [D00002000] +06:31:39 [ 32] [ 6] [198901] +06:31:39 [ 35] [ 32] [6213544001671442=491212017144234] +06:31:39 [ 37] [ 12] [507906200556] +06:31:39 [ 41] [ 8] [01529009] +06:31:39 [ 42] [ 15] [000000041529009] +06:31:39 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:31:39 [ 49] [ 3] [418] +06:31:39 [ 52] [ 16] [19CF912F56C669E3] +06:31:39 ============================================================================ +06:31:39 + + +waiting on router queue for slot.... +06:31:39 Sending to : +06:31:39 ============================================================================ +06:31:39 ============================================================================ +06:31:39 Slot Id : <135> +06:31:39 Transaction Type : REQUEST +06:31:39 Received From : +06:31:39 ============================================================================ +06:31:39 FNo. Len. Field Value +06:31:39 ============================================================================ +06:31:39 [ 1] [ 4] [0200] +06:31:39 [ 2] [ 16] [6213544001671442] +06:31:39 [ 3] [ 6] [011000] +06:31:39 [ 4] [ 12] [000008000000] +06:31:39 [ 7] [ 10] [0320063200] +06:31:39 [ 11] [ 6] [200556] +06:31:39 [ 12] [ 6] [063227] +06:31:39 [ 13] [ 4] [0320] +06:31:39 [ 14] [ 4] [4912] +06:31:39 [ 15] [ 4] [0320] +06:31:39 [ 18] [ 4] [6011] +06:31:39 [ 19] [ 3] [418] +06:31:39 [ 22] [ 3] [021] +06:31:39 [ 25] [ 2] [01] +06:31:39 [ 28] [ 9] [D00002000] +06:31:39 [ 32] [ 6] [198901] +06:31:39 [ 35] [ 32] [6213544001671442=491212017144234] +06:31:39 [ 37] [ 12] [507906200556] +06:31:39 [ 41] [ 8] [01529009] +06:31:39 [ 42] [ 15] [000000041529009] +06:31:39 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:31:39 [ 49] [ 3] [418] +06:31:39 [ 52] [ 16] [F25C6FDC3841A52B] +06:31:39 ============================================================================ +06:31:39 + + +waiting on router queue for slot.... +06:31:39 Sending to : <0> +06:31:39 ============================================================================ +06:31:40 ============================================================================ +06:31:40 Slot Id : <135> +06:31:40 Transaction Type : RESPONSE +06:31:40 Received From : +06:31:40 ============================================================================ +06:31:40 FNo. Len. Field Value +06:31:40 ============================================================================ +06:31:40 [ 1] [ 4] [0210] +06:31:40 [ 2] [ 16] [6213544001671442] +06:31:40 [ 3] [ 6] [011000] +06:31:40 [ 4] [ 12] [000008000000] +06:31:40 [ 7] [ 10] [0320063200] +06:31:40 [ 11] [ 6] [200556] +06:31:40 [ 12] [ 6] [063227] +06:31:40 [ 13] [ 4] [0320] +06:31:40 [ 15] [ 4] [0320] +06:31:40 [ 18] [ 4] [6011] +06:31:40 [ 19] [ 3] [418] +06:31:40 [ 32] [ 6] [198901] +06:31:40 [ 35] [ 32] [6213544001671442=491212017144234] +06:31:40 [ 37] [ 12] [507906200556] +06:31:40 [ 38] [ 6] [006208] +06:31:40 [ 39] [ 2] [00] +06:31:40 [ 41] [ 8] [01529009] +06:31:40 [ 49] [ 3] [418] +06:31:40 [ 54] [ 40] [1001418C0000418737491002418C000041873749] +06:31:40 ============================================================================ +06:31:40 Sending to : +06:31:40 ============================================================================ +06:31:40 + + +waiting on router queue for slot.... +06:31:41 ============================================================================ +06:31:41 Slot Id : <135> +06:31:41 Transaction Type : RESPONSE +06:31:41 Received From : +06:31:41 ============================================================================ +06:31:41 FNo. Len. Field Value +06:31:41 ============================================================================ +06:31:41 [ 1] [ 4] [0210] +06:31:41 [ 2] [ 16] [6213544001671442] +06:31:41 [ 3] [ 6] [011000] +06:31:41 [ 4] [ 12] [000008000000] +06:31:41 [ 7] [ 10] [0320063200] +06:31:41 [ 11] [ 6] [200556] +06:31:41 [ 12] [ 6] [063227] +06:31:41 [ 13] [ 4] [0320] +06:31:41 [ 15] [ 4] [0320] +06:31:41 [ 18] [ 4] [6011] +06:31:41 [ 19] [ 3] [418] +06:31:41 [ 32] [ 6] [198901] +06:31:41 [ 35] [ 32] [6213544001671442=491212017144234] +06:31:41 [ 37] [ 12] [507906200556] +06:31:41 [ 38] [ 6] [006208] +06:31:41 [ 39] [ 2] [00] +06:31:41 [ 41] [ 8] [01529009] +06:31:41 [ 49] [ 3] [418] +06:31:41 [ 54] [ 40] [1001418C0000418737491002418C000041873749] +06:31:41 ============================================================================ +06:31:41 Calculate Source COMM Id = 5 +06:31:41 ============================================================================ +06:31:41 + + +waiting on router queue for slot.... +06:31:54 ============================================================================ +06:31:54 Slot Id : <152> +06:31:54 Transaction Type : REQUEST +06:31:54 Received From : +06:31:54 ============================================================================ +06:31:54 FNo. Len. Field Value +06:31:54 ============================================================================ +06:31:54 [ 1] [ 4] [0800] +06:31:54 [ 7] [ 10] [0319113102] +06:31:54 [ 11] [ 6] [154907] +06:31:54 [ 70] [ 3] [301] +06:31:54 ============================================================================ +06:31:54 + + +waiting on router queue for slot.... +06:31:54 Sending to : +06:31:54 ============================================================================ +06:31:54 ============================================================================ +06:31:54 Slot Id : <152> +06:31:54 Transaction Type : RESPONSE +06:31:54 Received From : +06:31:54 ============================================================================ +06:31:54 FNo. Len. Field Value +06:31:54 ============================================================================ +06:31:54 [ 1] [ 4] [0810] +06:31:54 [ 7] [ 10] [0319113102] +06:31:54 [ 11] [ 6] [154907] +06:31:54 [ 39] [ 2] [00] +06:31:54 [ 70] [ 3] [301] +06:31:54 ============================================================================ +06:31:54 Calculate Source COMM Id = 2 +06:31:54 ============================================================================ +06:31:54 + + +waiting on router queue for slot.... +06:32:04 ============================================================================ +06:32:04 Slot Id : <196> +06:32:04 Transaction Type : REQUEST +06:32:04 Received From : +06:32:04 ============================================================================ +06:32:04 FNo. Len. Field Value +06:32:04 ============================================================================ +06:32:04 [ 1] [ 4] [0800] +06:32:04 [ 7] [ 10] [0319113113] +06:32:04 [ 11] [ 6] [154908] +06:32:04 [ 70] [ 3] [301] +06:32:04 ============================================================================ +06:32:04 + + +waiting on router queue for slot.... +06:32:04 Sending to : +06:32:04 ============================================================================ +06:32:04 ============================================================================ +06:32:04 Slot Id : <196> +06:32:04 Transaction Type : RESPONSE +06:32:04 Received From : +06:32:04 ============================================================================ +06:32:04 FNo. Len. Field Value +06:32:04 ============================================================================ +06:32:04 [ 1] [ 4] [0810] +06:32:04 [ 7] [ 10] [0319113113] +06:32:04 [ 11] [ 6] [154908] +06:32:04 [ 39] [ 2] [00] +06:32:04 [ 70] [ 3] [301] +06:32:04 ============================================================================ +06:32:04 Calculate Source COMM Id = 2 +06:32:04 ============================================================================ +06:32:04 + + +waiting on router queue for slot.... +06:32:10 ============================================================================ +06:32:10 Slot Id : <191> +06:32:10 Transaction Type : REQUEST +06:32:10 Received From : +06:32:10 ============================================================================ +06:32:10 FNo. Len. Field Value +06:32:10 ============================================================================ +06:32:10 [ 1] [ 4] [0800] +06:32:10 [ 7] [ 10] [0320134400] +06:32:10 [ 11] [ 6] [064400] +06:32:10 [ 37] [ 12] [57906064400] +06:32:10 [ 70] [ 3] [301] +06:32:10 ============================================================================ +06:32:10 + + +waiting on router queue for slot.... +06:32:10 Sending to : +06:32:10 ============================================================================ +06:32:10 ============================================================================ +06:32:10 Slot Id : <191> +06:32:10 Transaction Type : RESPONSE +06:32:10 Received From : +06:32:10 ============================================================================ +06:32:10 FNo. Len. Field Value +06:32:10 ============================================================================ +06:32:10 [ 1] [ 4] [0810] +06:32:10 [ 7] [ 10] [0320134400] +06:32:10 [ 11] [ 6] [064400] +06:32:10 [ 37] [ 12] [579060644000] +06:32:10 [ 39] [ 2] [00] +06:32:10 [ 70] [ 3] [810] +06:32:10 ============================================================================ +06:32:10 Calculate Source COMM Id = 6 +06:32:10 ============================================================================ +06:32:10 + + +waiting on router queue for slot.... +06:32:11 ============================================================================ +06:32:11 Slot Id : <190> +06:32:11 Transaction Type : REQUEST +06:32:11 Received From : +06:32:11 ============================================================================ +06:32:11 FNo. Len. Field Value +06:32:11 ============================================================================ +06:32:11 [ 1] [ 4] [0200] +06:32:11 [ 2] [ 16] [6213544000609419] +06:32:11 [ 3] [ 6] [010000] +06:32:11 [ 4] [ 12] [000080000000] +06:32:11 [ 7] [ 10] [0320063003] +06:32:11 [ 11] [ 6] [929081] +06:32:11 [ 12] [ 6] [063003] +06:32:11 [ 13] [ 4] [0320] +06:32:11 [ 15] [ 4] [0320] +06:32:11 [ 18] [ 4] [6011] +06:32:11 [ 19] [ 3] [418] +06:32:11 [ 22] [ 3] [021] +06:32:11 [ 25] [ 2] [01] +06:32:11 [ 28] [ 9] [D00002000] +06:32:11 [ 32] [ 6] [668899] +06:32:11 [ 35] [ 32] [6213544000609419=491212010941478] +06:32:11 [ 37] [ 12] [507902148031] +06:32:11 [ 41] [ 8] [03020024] +06:32:11 [ 42] [ 15] [APT ] +06:32:11 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +06:32:11 [ 49] [ 3] [418] +06:32:11 [ 52] [ 16] [E4F9D1A9F47E22ED] +06:32:11 ============================================================================ +06:32:11 + + +waiting on router queue for slot.... +06:32:11 Sending to : +06:32:11 ============================================================================ +06:32:11 Sending to : +06:32:11 ============================================================================ +06:32:11 ============================================================================ +06:32:11 Slot Id : <190> +06:32:11 Transaction Type : REQUEST +06:32:11 Received From : +06:32:11 ============================================================================ +06:32:11 FNo. Len. Field Value +06:32:11 ============================================================================ +06:32:11 [ 1] [ 4] [0200] +06:32:11 [ 2] [ 16] [6213544000609419] +06:32:11 [ 3] [ 6] [010000] +06:32:11 [ 4] [ 12] [000080000000] +06:32:11 [ 7] [ 10] [0320063003] +06:32:11 [ 11] [ 6] [929081] +06:32:11 [ 12] [ 6] [063003] +06:32:11 [ 13] [ 4] [0320] +06:32:11 [ 15] [ 4] [0320] +06:32:11 [ 18] [ 4] [6011] +06:32:11 [ 19] [ 3] [418] +06:32:11 [ 22] [ 3] [021] +06:32:11 [ 25] [ 2] [01] +06:32:11 [ 28] [ 9] [D00002000] +06:32:11 [ 32] [ 6] [668899] +06:32:11 [ 35] [ 32] [6213544000609419=491212010941478] +06:32:11 [ 37] [ 12] [507902148031] +06:32:11 [ 41] [ 8] [03020024] +06:32:11 [ 42] [ 15] [APT ] +06:32:11 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +06:32:11 [ 49] [ 3] [418] +06:32:11 [ 52] [ 16] [E4F9D1A9F47E22ED] +06:32:11 ============================================================================ +06:32:11 + + +waiting on router queue for slot.... +06:32:11 Sending to : +06:32:11 ============================================================================ +06:32:11 ============================================================================ +06:32:11 Slot Id : <190> +06:32:11 Transaction Type : REQUEST +06:32:11 Received From : +06:32:11 ============================================================================ +06:32:11 FNo. Len. Field Value +06:32:11 ============================================================================ +06:32:11 [ 1] [ 4] [0200] +06:32:11 [ 2] [ 16] [6213544000609419] +06:32:11 [ 3] [ 6] [010000] +06:32:11 [ 4] [ 12] [000080000000] +06:32:11 [ 7] [ 10] [0320063003] +06:32:11 [ 11] [ 6] [929081] +06:32:11 [ 12] [ 6] [063003] +06:32:11 [ 13] [ 4] [0320] +06:32:11 [ 15] [ 4] [0320] +06:32:11 [ 18] [ 4] [6011] +06:32:11 [ 19] [ 3] [418] +06:32:11 [ 22] [ 3] [021] +06:32:11 [ 25] [ 2] [01] +06:32:11 [ 28] [ 9] [D00002000] +06:32:11 [ 32] [ 6] [668899] +06:32:11 [ 35] [ 32] [6213544000609419=491212010941478] +06:32:11 [ 37] [ 12] [507902148031] +06:32:11 [ 41] [ 8] [03020024] +06:32:11 [ 42] [ 15] [APT ] +06:32:11 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +06:32:11 [ 49] [ 3] [418] +06:32:11 [ 52] [ 16] [A78DEC88129972F9] +06:32:11 ============================================================================ +06:32:11 + + +waiting on router queue for slot.... +06:32:11 Sending to : <0> +06:32:11 ============================================================================ +06:32:12 ============================================================================ +06:32:12 Slot Id : <190> +06:32:12 Transaction Type : RESPONSE +06:32:12 Received From : +06:32:12 ============================================================================ +06:32:12 FNo. Len. Field Value +06:32:12 ============================================================================ +06:32:12 [ 1] [ 4] [0210] +06:32:12 [ 2] [ 16] [6213544000609419] +06:32:12 [ 3] [ 6] [010000] +06:32:12 [ 4] [ 12] [000080000000] +06:32:12 [ 7] [ 10] [0320063003] +06:32:12 [ 11] [ 6] [929081] +06:32:12 [ 12] [ 6] [063003] +06:32:12 [ 13] [ 4] [0320] +06:32:12 [ 15] [ 4] [0320] +06:32:12 [ 18] [ 4] [6011] +06:32:12 [ 19] [ 3] [418] +06:32:12 [ 32] [ 6] [668899] +06:32:12 [ 35] [ 32] [6213544000609419=491212010941478] +06:32:12 [ 37] [ 12] [507902148031] +06:32:12 [ 38] [ 6] [407344] +06:32:12 [ 39] [ 2] [00] +06:32:12 [ 41] [ 8] [03020024] +06:32:12 [ 49] [ 3] [418] +06:32:12 [ 54] [ 40] [0001418C0000387703020002418C000038770302] +06:32:12 ============================================================================ +06:32:12 Sending to : +06:32:12 ============================================================================ +06:32:12 + + +waiting on router queue for slot.... +06:32:14 ============================================================================ +06:32:14 Slot Id : <155> +06:32:14 Transaction Type : REQUEST +06:32:14 Received From : +06:32:14 ============================================================================ +06:32:14 FNo. Len. Field Value +06:32:14 ============================================================================ +06:32:14 [ 1] [ 4] [0800] +06:32:14 [ 2] [ 5] [02531] +06:32:14 [ 3] [ 6] [579068] +06:32:14 [ 7] [ 10] [0319233214] +06:32:14 [ 11] [ 6] [806791] +06:32:14 [ 15] [ 10] [0319233214] +06:32:14 [ 37] [ 11] [57906806791] +06:32:14 [ 70] [ 3] [001] +06:32:14 ============================================================================ +06:32:14 + + +waiting on router queue for slot.... +06:32:14 ============================================================================ +06:32:14 Slot Id : <155> +06:32:14 Transaction Type : RESPONSE +06:32:14 Received From : +06:32:14 ============================================================================ +06:32:14 FNo. Len. Field Value +06:32:14 ============================================================================ +06:32:14 [ 1] [ 4] [0810] +06:32:14 [ 7] [ 10] [0319233214] +06:32:14 [ 11] [ 6] [806791] +06:32:14 [ 15] [ 4] [0319] +06:32:14 [ 37] [ 12] [57906806791] +06:32:14 [ 39] [ 2] [00] +06:32:14 [ 70] [ 3] [001] +06:32:14 ============================================================================ +06:32:14 Sending to : +06:32:14 ============================================================================ +06:32:14 + + +waiting on router queue for slot.... +06:32:14 ============================================================================ +06:32:14 Slot Id : <190> +06:32:14 Transaction Type : RESPONSE +06:32:14 Received From : +06:32:14 ============================================================================ +06:32:14 FNo. Len. Field Value +06:32:14 ============================================================================ +06:32:14 [ 1] [ 4] [0210] +06:32:14 [ 2] [ 16] [6213544000609419] +06:32:14 [ 3] [ 6] [010000] +06:32:14 [ 4] [ 12] [000080000000] +06:32:14 [ 7] [ 10] [0320063003] +06:32:14 [ 11] [ 6] [929081] +06:32:14 [ 12] [ 6] [063003] +06:32:14 [ 13] [ 4] [0320] +06:32:14 [ 15] [ 4] [0320] +06:32:14 [ 18] [ 4] [6011] +06:32:14 [ 19] [ 3] [418] +06:32:14 [ 32] [ 6] [668899] +06:32:14 [ 35] [ 32] [6213544000609419=491212010941478] +06:32:14 [ 37] [ 12] [507902148031] +06:32:14 [ 38] [ 6] [407344] +06:32:14 [ 39] [ 2] [00] +06:32:14 [ 41] [ 8] [03020024] +06:32:14 [ 49] [ 3] [418] +06:32:14 [ 54] [ 40] [0001418C0000387703020002418C000038770302] +06:32:14 ============================================================================ +06:32:14 Calculate Source COMM Id = 4 +06:32:14 ============================================================================ +06:32:14 + + +waiting on router queue for slot.... +06:32:19 ============================================================================ +06:32:19 Slot Id : <181> +06:32:19 Transaction Type : REQUEST +06:32:19 Received From : +06:32:19 ============================================================================ +06:32:19 FNo. Len. Field Value +06:32:19 ============================================================================ +06:32:19 [ 1] [ 4] [0800] +06:32:19 [ 7] [ 10] [0319113128] +06:32:19 [ 11] [ 6] [154909] +06:32:19 [ 70] [ 3] [301] +06:32:19 ============================================================================ +06:32:19 + + +waiting on router queue for slot.... +06:32:19 Sending to : +06:32:19 ============================================================================ +06:32:19 ============================================================================ +06:32:19 Slot Id : <181> +06:32:19 Transaction Type : RESPONSE +06:32:19 Received From : +06:32:19 ============================================================================ +06:32:19 FNo. Len. Field Value +06:32:19 ============================================================================ +06:32:19 [ 1] [ 4] [0810] +06:32:19 [ 7] [ 10] [0319113128] +06:32:19 [ 11] [ 6] [154909] +06:32:19 [ 39] [ 2] [00] +06:32:19 [ 70] [ 3] [301] +06:32:19 ============================================================================ +06:32:19 Calculate Source COMM Id = 2 +06:32:19 ============================================================================ +06:32:19 + + +waiting on router queue for slot.... +06:32:25 ============================================================================ +06:32:25 Slot Id : <201> +06:32:25 Transaction Type : REQUEST +06:32:25 Received From : +06:32:25 ============================================================================ +06:32:25 FNo. Len. Field Value +06:32:25 ============================================================================ +06:32:25 [ 1] [ 4] [0200] +06:32:25 [ 2] [ 16] [6213544001671442] +06:32:25 [ 3] [ 6] [011000] +06:32:25 [ 4] [ 12] [000008000000] +06:32:25 [ 7] [ 10] [0320063247] +06:32:25 [ 11] [ 6] [200566] +06:32:25 [ 12] [ 6] [063314] +06:32:25 [ 13] [ 4] [0320] +06:32:25 [ 14] [ 4] [4912] +06:32:25 [ 15] [ 4] [0320] +06:32:25 [ 18] [ 4] [6011] +06:32:25 [ 19] [ 3] [418] +06:32:25 [ 22] [ 3] [021] +06:32:25 [ 25] [ 2] [01] +06:32:25 [ 28] [ 9] [D00002000] +06:32:25 [ 32] [ 6] [198901] +06:32:25 [ 35] [ 32] [6213544001671442=491212017144234] +06:32:25 [ 37] [ 12] [507906200566] +06:32:25 [ 41] [ 8] [01529009] +06:32:25 [ 42] [ 15] [000000041529009] +06:32:25 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:32:25 [ 49] [ 3] [418] +06:32:25 [ 52] [ 16] [19CF912F56C669E3] +06:32:25 ============================================================================ +06:32:25 + + +waiting on router queue for slot.... +06:32:25 Sending to : +06:32:25 ============================================================================ +06:32:25 Sending to : +06:32:25 ============================================================================ +06:32:26 ============================================================================ +06:32:26 Slot Id : <201> +06:32:26 Transaction Type : REQUEST +06:32:26 Received From : +06:32:26 ============================================================================ +06:32:26 FNo. Len. Field Value +06:32:26 ============================================================================ +06:32:26 [ 1] [ 4] [0200] +06:32:26 [ 2] [ 16] [6213544001671442] +06:32:26 [ 3] [ 6] [011000] +06:32:26 [ 4] [ 12] [000008000000] +06:32:26 [ 7] [ 10] [0320063247] +06:32:26 [ 11] [ 6] [200566] +06:32:26 [ 12] [ 6] [063314] +06:32:26 [ 13] [ 4] [0320] +06:32:26 [ 14] [ 4] [4912] +06:32:26 [ 15] [ 4] [0320] +06:32:26 [ 18] [ 4] [6011] +06:32:26 [ 19] [ 3] [418] +06:32:26 [ 22] [ 3] [021] +06:32:26 [ 25] [ 2] [01] +06:32:26 [ 28] [ 9] [D00002000] +06:32:26 [ 32] [ 6] [198901] +06:32:26 [ 35] [ 32] [6213544001671442=491212017144234] +06:32:26 [ 37] [ 12] [507906200566] +06:32:26 [ 41] [ 8] [01529009] +06:32:26 [ 42] [ 15] [000000041529009] +06:32:26 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:32:26 [ 49] [ 3] [418] +06:32:26 [ 52] [ 16] [19CF912F56C669E3] +06:32:26 ============================================================================ +06:32:26 + + +waiting on router queue for slot.... +06:32:26 Sending to : +06:32:26 ============================================================================ +06:32:26 ============================================================================ +06:32:26 Slot Id : <201> +06:32:26 Transaction Type : REQUEST +06:32:26 Received From : +06:32:26 ============================================================================ +06:32:26 FNo. Len. Field Value +06:32:26 ============================================================================ +06:32:26 [ 1] [ 4] [0200] +06:32:26 [ 2] [ 16] [6213544001671442] +06:32:26 [ 3] [ 6] [011000] +06:32:26 [ 4] [ 12] [000008000000] +06:32:26 [ 7] [ 10] [0320063247] +06:32:26 [ 11] [ 6] [200566] +06:32:26 [ 12] [ 6] [063314] +06:32:26 [ 13] [ 4] [0320] +06:32:26 [ 14] [ 4] [4912] +06:32:26 [ 15] [ 4] [0320] +06:32:26 [ 18] [ 4] [6011] +06:32:26 [ 19] [ 3] [418] +06:32:26 [ 22] [ 3] [021] +06:32:26 [ 25] [ 2] [01] +06:32:26 [ 28] [ 9] [D00002000] +06:32:26 [ 32] [ 6] [198901] +06:32:26 [ 35] [ 32] [6213544001671442=491212017144234] +06:32:26 [ 37] [ 12] [507906200566] +06:32:26 [ 41] [ 8] [01529009] +06:32:26 [ 42] [ 15] [000000041529009] +06:32:26 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:32:26 [ 49] [ 3] [418] +06:32:26 [ 52] [ 16] [F25C6FDC3841A52B] +06:32:26 ============================================================================ +06:32:26 + + +waiting on router queue for slot.... +06:32:26 Sending to : <0> +06:32:26 ============================================================================ +06:32:27 ============================================================================ +06:32:27 Slot Id : <201> +06:32:27 Transaction Type : RESPONSE +06:32:27 Received From : +06:32:27 ============================================================================ +06:32:27 FNo. Len. Field Value +06:32:27 ============================================================================ +06:32:27 [ 1] [ 4] [0210] +06:32:27 [ 2] [ 16] [6213544001671442] +06:32:27 [ 3] [ 6] [011000] +06:32:27 [ 4] [ 12] [000008000000] +06:32:27 [ 7] [ 10] [0320063247] +06:32:27 [ 11] [ 6] [200566] +06:32:27 [ 12] [ 6] [063314] +06:32:27 [ 13] [ 4] [0320] +06:32:27 [ 15] [ 4] [0320] +06:32:27 [ 18] [ 4] [6011] +06:32:27 [ 19] [ 3] [418] +06:32:27 [ 32] [ 6] [198901] +06:32:27 [ 35] [ 32] [6213544001671442=491212017144234] +06:32:27 [ 37] [ 12] [507906200566] +06:32:27 [ 38] [ 6] [659314] +06:32:27 [ 39] [ 2] [00] +06:32:27 [ 41] [ 8] [01529009] +06:32:27 [ 49] [ 3] [418] +06:32:27 [ 54] [ 40] [1001418C0000336737491002418C000033673749] +06:32:27 ============================================================================ +06:32:27 Sending to : +06:32:27 ============================================================================ +06:32:27 + + +waiting on router queue for slot.... +06:32:28 ============================================================================ +06:32:28 Slot Id : <201> +06:32:28 Transaction Type : RESPONSE +06:32:28 Received From : +06:32:28 ============================================================================ +06:32:28 FNo. Len. Field Value +06:32:28 ============================================================================ +06:32:28 [ 1] [ 4] [0210] +06:32:28 [ 2] [ 16] [6213544001671442] +06:32:28 [ 3] [ 6] [011000] +06:32:28 [ 4] [ 12] [000008000000] +06:32:28 [ 7] [ 10] [0320063247] +06:32:28 [ 11] [ 6] [200566] +06:32:28 [ 12] [ 6] [063314] +06:32:28 [ 13] [ 4] [0320] +06:32:28 [ 15] [ 4] [0320] +06:32:28 [ 18] [ 4] [6011] +06:32:28 [ 19] [ 3] [418] +06:32:28 [ 32] [ 6] [198901] +06:32:28 [ 35] [ 32] [6213544001671442=491212017144234] +06:32:28 [ 37] [ 12] [507906200566] +06:32:28 [ 38] [ 6] [659314] +06:32:28 [ 39] [ 2] [00] +06:32:28 [ 41] [ 8] [01529009] +06:32:28 [ 49] [ 3] [418] +06:32:28 [ 54] [ 40] [1001418C0000336737491002418C000033673749] +06:32:28 ============================================================================ +06:32:28 Calculate Source COMM Id = 5 +06:32:28 ============================================================================ +06:32:28 + + +waiting on router queue for slot.... +06:32:32 ============================================================================ +06:32:32 Slot Id : <198> +06:32:32 Transaction Type : REQUEST +06:32:32 Received From : +06:32:32 ============================================================================ +06:32:32 FNo. Len. Field Value +06:32:32 ============================================================================ +06:32:32 [ 1] [ 4] [0800] +06:32:32 [ 7] [ 10] [0319113139] +06:32:32 [ 11] [ 6] [154910] +06:32:32 [ 70] [ 3] [301] +06:32:32 ============================================================================ +06:32:32 + + +waiting on router queue for slot.... +06:32:32 Sending to : +06:32:32 ============================================================================ +06:32:32 ============================================================================ +06:32:32 Slot Id : <198> +06:32:32 Transaction Type : RESPONSE +06:32:32 Received From : +06:32:32 ============================================================================ +06:32:32 FNo. Len. Field Value +06:32:32 ============================================================================ +06:32:32 [ 1] [ 4] [0810] +06:32:32 [ 7] [ 10] [0319113139] +06:32:32 [ 11] [ 6] [154910] +06:32:32 [ 39] [ 2] [00] +06:32:32 [ 70] [ 3] [301] +06:32:32 ============================================================================ +06:32:32 Calculate Source COMM Id = 2 +06:32:32 ============================================================================ +06:32:32 + + +waiting on router queue for slot.... +06:32:37 ============================================================================ +06:32:37 Slot Id : <194> +06:32:37 Transaction Type : REQUEST +06:32:37 Received From : +06:32:37 ============================================================================ +06:32:37 FNo. Len. Field Value +06:32:37 ============================================================================ +06:32:37 [ 1] [ 4] [0200] +06:32:37 [ 2] [ 16] [6688990103295802] +06:32:37 [ 3] [ 6] [013000] +06:32:37 [ 4] [ 12] [000100000000] +06:32:37 [ 7] [ 10] [0320063234] +06:32:37 [ 11] [ 6] [663993] +06:32:37 [ 12] [ 6] [063234] +06:32:37 [ 13] [ 4] [0320] +06:32:37 [ 15] [ 4] [0320] +06:32:37 [ 18] [ 4] [6011] +06:32:37 [ 22] [ 3] [900] +06:32:37 [ 25] [ 2] [02] +06:32:37 [ 28] [ 9] [D00002000] +06:32:37 [ 32] [ 6] [621354] +06:32:37 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:32:37 [ 37] [ 12] [507903499386] +06:32:37 [ 41] [ 8] [06002200] +06:32:37 [ 42] [ 15] [NATIVE ] +06:32:37 [ 43] [ 40] [Beng Market Beng LAO] +06:32:37 [ 49] [ 3] [418] +06:32:37 [ 52] [ 16] [DA2B3C5D5A0119B1] +06:32:37 ============================================================================ +06:32:37 + + +waiting on router queue for slot.... +06:32:37 Sending to : +06:32:37 ============================================================================ +06:32:37 Sending to : +06:32:37 ============================================================================ +06:32:37 ============================================================================ +06:32:37 Slot Id : <194> +06:32:37 Transaction Type : REQUEST +06:32:37 Received From : +06:32:37 ============================================================================ +06:32:37 FNo. Len. Field Value +06:32:37 ============================================================================ +06:32:37 [ 1] [ 4] [0200] +06:32:37 [ 2] [ 16] [6688990103295802] +06:32:37 [ 3] [ 6] [013000] +06:32:37 [ 4] [ 12] [000100000000] +06:32:37 [ 7] [ 10] [0320063234] +06:32:37 [ 11] [ 6] [663993] +06:32:37 [ 12] [ 6] [063234] +06:32:37 [ 13] [ 4] [0320] +06:32:37 [ 15] [ 4] [0320] +06:32:37 [ 18] [ 4] [6011] +06:32:37 [ 22] [ 3] [900] +06:32:37 [ 25] [ 2] [02] +06:32:37 [ 28] [ 9] [D00002000] +06:32:37 [ 32] [ 6] [621354] +06:32:37 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:32:37 [ 37] [ 12] [507903499386] +06:32:37 [ 41] [ 8] [06002200] +06:32:37 [ 42] [ 15] [NATIVE ] +06:32:37 [ 43] [ 40] [Beng Market Beng LAO] +06:32:37 [ 49] [ 3] [418] +06:32:37 [ 52] [ 16] [DA2B3C5D5A0119B1] +06:32:37 ============================================================================ +06:32:37 + + +waiting on router queue for slot.... +06:32:37 Sending to : +06:32:37 ============================================================================ +06:32:37 ============================================================================ +06:32:37 Slot Id : <194> +06:32:37 Transaction Type : REQUEST +06:32:37 Received From : +06:32:37 ============================================================================ +06:32:37 FNo. Len. Field Value +06:32:37 ============================================================================ +06:32:37 [ 1] [ 4] [0200] +06:32:37 [ 2] [ 16] [6688990103295802] +06:32:37 [ 3] [ 6] [013000] +06:32:37 [ 4] [ 12] [000100000000] +06:32:37 [ 7] [ 10] [0320063234] +06:32:37 [ 11] [ 6] [663993] +06:32:37 [ 12] [ 6] [063234] +06:32:37 [ 13] [ 4] [0320] +06:32:37 [ 15] [ 4] [0320] +06:32:37 [ 18] [ 4] [6011] +06:32:37 [ 22] [ 3] [900] +06:32:37 [ 25] [ 2] [02] +06:32:37 [ 28] [ 9] [D00002000] +06:32:37 [ 32] [ 6] [621354] +06:32:37 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:32:37 [ 37] [ 12] [507903499386] +06:32:37 [ 41] [ 8] [06002200] +06:32:37 [ 42] [ 15] [NATIVE ] +06:32:37 [ 43] [ 40] [Beng Market Beng LAO] +06:32:37 [ 49] [ 3] [418] +06:32:37 [ 52] [ 16] [8BF71FC2C0054AA4] +06:32:37 ============================================================================ +06:32:37 + + +waiting on router queue for slot.... +06:32:37 Sending to : <4> +06:32:37 ============================================================================ +06:32:38 ============================================================================ +06:32:38 Slot Id : <214> +06:32:38 Transaction Type : REQUEST +06:32:38 Received From : +06:32:38 ============================================================================ +06:32:38 FNo. Len. Field Value +06:32:38 ============================================================================ +06:32:38 [ 1] [ 4] [0200] +06:32:38 [ 2] [ 16] [6213541000068042] +06:32:38 [ 3] [ 6] [010000] +06:32:38 [ 4] [ 12] [000150000000] +06:32:38 [ 7] [ 10] [0319233146] +06:32:38 [ 11] [ 6] [266624] +06:32:38 [ 12] [ 6] [063146] +06:32:38 [ 13] [ 4] [0320] +06:32:38 [ 14] [ 4] [4912] +06:32:38 [ 15] [ 4] [0320] +06:32:38 [ 18] [ 4] [6011] +06:32:38 [ 19] [ 3] [418] +06:32:38 [ 22] [ 3] [021] +06:32:38 [ 25] [ 2] [01] +06:32:38 [ 28] [ 9] [D00002000] +06:32:38 [ 32] [ 6] [180893] +06:32:38 [ 35] [ 32] [6213541000068042=491212016804209] +06:32:38 [ 37] [ 12] [507923266624] +06:32:38 [ 41] [ 8] [0108THNG] +06:32:38 [ 42] [ 15] [999999 ] +06:32:38 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +06:32:38 [ 49] [ 3] [418] +06:32:38 [ 52] [ 16] [ABACBEEA2362BF73] +06:32:38 ============================================================================ +06:32:38 + + +waiting on router queue for slot.... +06:32:38 Sending to : +06:32:38 ============================================================================ +06:32:38 Sending to : +06:32:38 ============================================================================ +06:32:38 ============================================================================ +06:32:38 Slot Id : <194> +06:32:38 Transaction Type : RESPONSE +06:32:38 Received From : +06:32:38 ============================================================================ +06:32:38 FNo. Len. Field Value +06:32:38 ============================================================================ +06:32:38 [ 1] [ 4] [0210] +06:32:38 [ 2] [ 16] [6688990103295802] +06:32:38 [ 3] [ 6] [013000] +06:32:38 [ 4] [ 12] [000100000000] +06:32:38 [ 11] [ 6] [663993] +06:32:38 [ 12] [ 6] [063234] +06:32:38 [ 15] [ 4] [0320] +06:32:38 [ 18] [ 4] [6011] +06:32:38 [ 32] [ 6] [621354] +06:32:38 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:32:38 [ 37] [ 12] [507903499386] +06:32:38 [ 38] [ 6] [570230] +06:32:38 [ 39] [ 2] [00] +06:32:38 [ 41] [ 8] [06002200] +06:32:38 [ 49] [ 3] [418] +06:32:38 [ 54] [ 20] [3002418C000119708271] +06:32:38 ============================================================================ +06:32:38 Sending to : +06:32:38 ============================================================================ +06:32:38 + + +waiting on router queue for slot.... +06:32:38 ============================================================================ +06:32:38 Slot Id : <214> +06:32:38 Transaction Type : REQUEST +06:32:38 Received From : +06:32:38 ============================================================================ +06:32:38 FNo. Len. Field Value +06:32:38 ============================================================================ +06:32:38 [ 1] [ 4] [0200] +06:32:38 [ 2] [ 16] [6213541000068042] +06:32:38 [ 3] [ 6] [010000] +06:32:38 [ 4] [ 12] [000150000000] +06:32:38 [ 7] [ 10] [0319233146] +06:32:38 [ 11] [ 6] [266624] +06:32:38 [ 12] [ 6] [063146] +06:32:38 [ 13] [ 4] [0320] +06:32:38 [ 14] [ 4] [4912] +06:32:38 [ 15] [ 4] [0320] +06:32:38 [ 18] [ 4] [6011] +06:32:38 [ 19] [ 3] [418] +06:32:38 [ 22] [ 3] [021] +06:32:38 [ 25] [ 2] [01] +06:32:38 [ 28] [ 9] [D00002000] +06:32:38 [ 32] [ 6] [180893] +06:32:38 [ 35] [ 32] [6213541000068042=491212016804209] +06:32:38 [ 37] [ 12] [507923266624] +06:32:38 [ 41] [ 8] [0108THNG] +06:32:38 [ 42] [ 15] [999999 ] +06:32:38 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +06:32:38 [ 49] [ 3] [418] +06:32:38 [ 52] [ 16] [ABACBEEA2362BF73] +06:32:38 ============================================================================ +06:32:38 + + +waiting on router queue for slot.... +06:32:38 Sending to : +06:32:38 ============================================================================ +06:32:38 ============================================================================ +06:32:38 Slot Id : <214> +06:32:38 Transaction Type : REQUEST +06:32:38 Received From : +06:32:38 ============================================================================ +06:32:38 FNo. Len. Field Value +06:32:38 ============================================================================ +06:32:38 [ 1] [ 4] [0200] +06:32:38 [ 2] [ 16] [6213541000068042] +06:32:38 [ 3] [ 6] [010000] +06:32:38 [ 4] [ 12] [000150000000] +06:32:38 [ 7] [ 10] [0319233146] +06:32:38 [ 11] [ 6] [266624] +06:32:38 [ 12] [ 6] [063146] +06:32:38 [ 13] [ 4] [0320] +06:32:38 [ 14] [ 4] [4912] +06:32:38 [ 15] [ 4] [0320] +06:32:38 [ 18] [ 4] [6011] +06:32:38 [ 19] [ 3] [418] +06:32:38 [ 22] [ 3] [021] +06:32:38 [ 25] [ 2] [01] +06:32:38 [ 28] [ 9] [D00002000] +06:32:38 [ 32] [ 6] [180893] +06:32:38 [ 35] [ 32] [6213541000068042=491212016804209] +06:32:38 [ 37] [ 12] [507923266624] +06:32:38 [ 41] [ 8] [0108THNG] +06:32:38 [ 42] [ 15] [999999 ] +06:32:38 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +06:32:38 [ 49] [ 3] [418] +06:32:38 [ 52] [ 16] [FC40F4F65B424576] +06:32:38 ============================================================================ +06:32:38 + + +waiting on router queue for slot.... +06:32:38 Sending to : <0> +06:32:38 ============================================================================ +06:32:38 ============================================================================ +06:32:38 Slot Id : <214> +06:32:38 Transaction Type : RESPONSE +06:32:38 Received From : +06:32:38 ============================================================================ +06:32:38 FNo. Len. Field Value +06:32:38 ============================================================================ +06:32:38 [ 1] [ 4] [0210] +06:32:38 [ 2] [ 16] [6213541000068042] +06:32:38 [ 3] [ 6] [010000] +06:32:38 [ 4] [ 12] [000150000000] +06:32:38 [ 7] [ 10] [0319233146] +06:32:38 [ 11] [ 6] [266624] +06:32:38 [ 12] [ 6] [063146] +06:32:38 [ 13] [ 4] [0320] +06:32:38 [ 15] [ 4] [0320] +06:32:38 [ 18] [ 4] [6011] +06:32:38 [ 19] [ 3] [418] +06:32:38 [ 22] [ 3] [021] +06:32:38 [ 32] [ 6] [180893] +06:32:38 [ 35] [ 32] [6213541000068042=491212016804209] +06:32:38 [ 37] [ 12] [507923266624] +06:32:38 [ 39] [ 2] [61] +06:32:38 [ 41] [ 8] [0108THNG] +06:32:38 [ 49] [ 3] [418] +06:32:38 ============================================================================ +06:32:38 Sending to : +06:32:38 ============================================================================ +06:32:38 + + +waiting on router queue for slot.... +06:32:40 ============================================================================ +06:32:40 Slot Id : <194> +06:32:40 Transaction Type : RESPONSE +06:32:40 Received From : +06:32:40 ============================================================================ +06:32:40 FNo. Len. Field Value +06:32:40 ============================================================================ +06:32:40 [ 1] [ 4] [0210] +06:32:40 [ 2] [ 16] [6688990103295802] +06:32:40 [ 3] [ 6] [013000] +06:32:40 [ 4] [ 12] [000100000000] +06:32:40 [ 11] [ 6] [663993] +06:32:40 [ 12] [ 6] [063234] +06:32:40 [ 15] [ 4] [0320] +06:32:40 [ 18] [ 4] [6011] +06:32:40 [ 32] [ 6] [621354] +06:32:40 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:32:40 [ 37] [ 12] [507903499386] +06:32:40 [ 38] [ 6] [570230] +06:32:40 [ 39] [ 2] [00] +06:32:40 [ 41] [ 8] [06002200] +06:32:40 [ 49] [ 3] [418] +06:32:40 [ 54] [ 20] [3002418C000119708271] +06:32:40 ============================================================================ +06:32:40 Calculate Source COMM Id = 0 +06:32:40 ============================================================================ +06:32:40 + + +waiting on router queue for slot.... +06:32:41 ============================================================================ +06:32:41 Slot Id : <214> +06:32:41 Transaction Type : RESPONSE +06:32:41 Received From : +06:32:41 ============================================================================ +06:32:41 FNo. Len. Field Value +06:32:41 ============================================================================ +06:32:41 [ 1] [ 4] [0210] +06:32:41 [ 2] [ 16] [6213541000068042] +06:32:41 [ 3] [ 6] [010000] +06:32:41 [ 4] [ 12] [000150000000] +06:32:41 [ 7] [ 10] [0319233146] +06:32:41 [ 11] [ 6] [266624] +06:32:41 [ 12] [ 6] [063146] +06:32:41 [ 13] [ 4] [0320] +06:32:41 [ 15] [ 4] [0320] +06:32:41 [ 18] [ 4] [6011] +06:32:41 [ 19] [ 3] [418] +06:32:41 [ 22] [ 3] [021] +06:32:41 [ 32] [ 6] [180893] +06:32:41 [ 35] [ 32] [6213541000068042=491212016804209] +06:32:41 [ 37] [ 12] [507923266624] +06:32:41 [ 39] [ 2] [61] +06:32:41 [ 41] [ 8] [0108THNG] +06:32:41 [ 49] [ 3] [418] +06:32:41 ============================================================================ +06:32:41 Calculate Source COMM Id = 2 +06:32:41 ============================================================================ +06:32:41 + + +waiting on router queue for slot.... +06:32:51 ============================================================================ +06:32:51 Slot Id : <165> +06:32:51 Transaction Type : REQUEST +06:32:51 Received From : +06:32:51 ============================================================================ +06:32:51 FNo. Len. Field Value +06:32:51 ============================================================================ +06:32:51 [ 1] [ 4] [0800] +06:32:51 [ 7] [ 10] [0319113200] +06:32:51 [ 11] [ 6] [154911] +06:32:51 [ 70] [ 3] [301] +06:32:51 ============================================================================ +06:32:51 + + +waiting on router queue for slot.... +06:32:51 Sending to : +06:32:51 ============================================================================ +06:32:51 ============================================================================ +06:32:51 Slot Id : <165> +06:32:51 Transaction Type : RESPONSE +06:32:51 Received From : +06:32:51 ============================================================================ +06:32:51 FNo. Len. Field Value +06:32:51 ============================================================================ +06:32:51 [ 1] [ 4] [0810] +06:32:51 [ 7] [ 10] [0319113200] +06:32:51 [ 11] [ 6] [154911] +06:32:51 [ 39] [ 2] [00] +06:32:51 [ 70] [ 3] [301] +06:32:51 ============================================================================ +06:32:51 Calculate Source COMM Id = 2 +06:32:51 ============================================================================ +06:32:51 + + +waiting on router queue for slot.... +06:33:04 ============================================================================ +06:33:04 Slot Id : <195> +06:33:04 Transaction Type : REQUEST +06:33:04 Received From : +06:33:04 ============================================================================ +06:33:04 FNo. Len. Field Value +06:33:04 ============================================================================ +06:33:04 [ 1] [ 4] [0800] +06:33:04 [ 7] [ 10] [0319113212] +06:33:04 [ 11] [ 6] [154912] +06:33:04 [ 70] [ 3] [301] +06:33:04 ============================================================================ +06:33:04 + + +waiting on router queue for slot.... +06:33:04 Sending to : +06:33:04 ============================================================================ +06:33:04 ============================================================================ +06:33:04 Slot Id : <195> +06:33:04 Transaction Type : RESPONSE +06:33:04 Received From : +06:33:04 ============================================================================ +06:33:04 FNo. Len. Field Value +06:33:04 ============================================================================ +06:33:04 [ 1] [ 4] [0810] +06:33:04 [ 7] [ 10] [0319113212] +06:33:04 [ 11] [ 6] [154912] +06:33:04 [ 39] [ 2] [00] +06:33:04 [ 70] [ 3] [301] +06:33:04 ============================================================================ +06:33:04 Calculate Source COMM Id = 2 +06:33:04 ============================================================================ +06:33:04 + + +waiting on router queue for slot.... +06:33:05 ============================================================================ +06:33:05 Slot Id : <184> +06:33:05 Transaction Type : REQUEST +06:33:05 Received From : +06:33:05 ============================================================================ +06:33:05 FNo. Len. Field Value +06:33:05 ============================================================================ +06:33:05 [ 1] [ 4] [0200] +06:33:05 [ 2] [ 16] [6213544001671442] +06:33:05 [ 3] [ 6] [011000] +06:33:05 [ 4] [ 12] [000008000000] +06:33:05 [ 7] [ 10] [0320063327] +06:33:05 [ 11] [ 6] [200571] +06:33:05 [ 12] [ 6] [063354] +06:33:05 [ 13] [ 4] [0320] +06:33:05 [ 14] [ 4] [4912] +06:33:05 [ 15] [ 4] [0320] +06:33:05 [ 18] [ 4] [6011] +06:33:05 [ 19] [ 3] [418] +06:33:05 [ 22] [ 3] [021] +06:33:05 [ 25] [ 2] [01] +06:33:05 [ 28] [ 9] [D00002000] +06:33:05 [ 32] [ 6] [198901] +06:33:05 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:05 [ 37] [ 12] [507906200571] +06:33:05 [ 41] [ 8] [01529009] +06:33:05 [ 42] [ 15] [000000041529009] +06:33:05 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:33:05 [ 49] [ 3] [418] +06:33:05 [ 52] [ 16] [19CF912F56C669E3] +06:33:05 ============================================================================ +06:33:05 + + +waiting on router queue for slot.... +06:33:05 Sending to : +06:33:05 ============================================================================ +06:33:05 Sending to : +06:33:05 ============================================================================ +06:33:05 ============================================================================ +06:33:05 Slot Id : <184> +06:33:05 Transaction Type : REQUEST +06:33:05 Received From : +06:33:05 ============================================================================ +06:33:05 FNo. Len. Field Value +06:33:05 ============================================================================ +06:33:05 [ 1] [ 4] [0200] +06:33:05 [ 2] [ 16] [6213544001671442] +06:33:05 [ 3] [ 6] [011000] +06:33:05 [ 4] [ 12] [000008000000] +06:33:05 [ 7] [ 10] [0320063327] +06:33:05 [ 11] [ 6] [200571] +06:33:05 [ 12] [ 6] [063354] +06:33:05 [ 13] [ 4] [0320] +06:33:05 [ 14] [ 4] [4912] +06:33:05 [ 15] [ 4] [0320] +06:33:05 [ 18] [ 4] [6011] +06:33:05 [ 19] [ 3] [418] +06:33:05 [ 22] [ 3] [021] +06:33:05 [ 25] [ 2] [01] +06:33:05 [ 28] [ 9] [D00002000] +06:33:05 [ 32] [ 6] [198901] +06:33:05 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:05 [ 37] [ 12] [507906200571] +06:33:05 [ 41] [ 8] [01529009] +06:33:05 [ 42] [ 15] [000000041529009] +06:33:05 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:33:05 [ 49] [ 3] [418] +06:33:05 [ 52] [ 16] [19CF912F56C669E3] +06:33:05 ============================================================================ +06:33:05 + + +waiting on router queue for slot.... +06:33:05 Sending to : +06:33:05 ============================================================================ +06:33:05 ============================================================================ +06:33:05 Slot Id : <184> +06:33:05 Transaction Type : REQUEST +06:33:05 Received From : +06:33:05 ============================================================================ +06:33:05 FNo. Len. Field Value +06:33:05 ============================================================================ +06:33:05 [ 1] [ 4] [0200] +06:33:05 [ 2] [ 16] [6213544001671442] +06:33:05 [ 3] [ 6] [011000] +06:33:05 [ 4] [ 12] [000008000000] +06:33:05 [ 7] [ 10] [0320063327] +06:33:05 [ 11] [ 6] [200571] +06:33:05 [ 12] [ 6] [063354] +06:33:05 [ 13] [ 4] [0320] +06:33:05 [ 14] [ 4] [4912] +06:33:05 [ 15] [ 4] [0320] +06:33:05 [ 18] [ 4] [6011] +06:33:05 [ 19] [ 3] [418] +06:33:05 [ 22] [ 3] [021] +06:33:05 [ 25] [ 2] [01] +06:33:05 [ 28] [ 9] [D00002000] +06:33:05 [ 32] [ 6] [198901] +06:33:05 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:05 [ 37] [ 12] [507906200571] +06:33:05 [ 41] [ 8] [01529009] +06:33:05 [ 42] [ 15] [000000041529009] +06:33:05 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:33:05 [ 49] [ 3] [418] +06:33:05 [ 52] [ 16] [F25C6FDC3841A52B] +06:33:05 ============================================================================ +06:33:05 + + +waiting on router queue for slot.... +06:33:05 Sending to : <0> +06:33:05 ============================================================================ +06:33:06 ============================================================================ +06:33:06 Slot Id : <184> +06:33:06 Transaction Type : RESPONSE +06:33:06 Received From : +06:33:06 ============================================================================ +06:33:06 FNo. Len. Field Value +06:33:06 ============================================================================ +06:33:06 [ 1] [ 4] [0210] +06:33:06 [ 2] [ 16] [6213544001671442] +06:33:06 [ 3] [ 6] [011000] +06:33:06 [ 4] [ 12] [000008000000] +06:33:06 [ 7] [ 10] [0320063327] +06:33:06 [ 11] [ 6] [200571] +06:33:06 [ 12] [ 6] [063354] +06:33:06 [ 13] [ 4] [0320] +06:33:06 [ 15] [ 4] [0320] +06:33:06 [ 18] [ 4] [6011] +06:33:06 [ 19] [ 3] [418] +06:33:06 [ 32] [ 6] [198901] +06:33:06 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:06 [ 37] [ 12] [507906200571] +06:33:06 [ 38] [ 6] [386659] +06:33:06 [ 39] [ 2] [00] +06:33:06 [ 41] [ 8] [01529009] +06:33:06 [ 49] [ 3] [418] +06:33:06 [ 54] [ 40] [1001418C0000254737491002418C000025473749] +06:33:06 ============================================================================ +06:33:06 Sending to : +06:33:06 ============================================================================ +06:33:06 + + +waiting on router queue for slot.... +06:33:08 ============================================================================ +06:33:08 Slot Id : <184> +06:33:08 Transaction Type : RESPONSE +06:33:08 Received From : +06:33:08 ============================================================================ +06:33:08 FNo. Len. Field Value +06:33:08 ============================================================================ +06:33:08 [ 1] [ 4] [0210] +06:33:08 [ 2] [ 16] [6213544001671442] +06:33:08 [ 3] [ 6] [011000] +06:33:08 [ 4] [ 12] [000008000000] +06:33:08 [ 7] [ 10] [0320063327] +06:33:08 [ 11] [ 6] [200571] +06:33:08 [ 12] [ 6] [063354] +06:33:08 [ 13] [ 4] [0320] +06:33:08 [ 15] [ 4] [0320] +06:33:08 [ 18] [ 4] [6011] +06:33:08 [ 19] [ 3] [418] +06:33:08 [ 32] [ 6] [198901] +06:33:08 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:08 [ 37] [ 12] [507906200571] +06:33:08 [ 38] [ 6] [386659] +06:33:08 [ 39] [ 2] [00] +06:33:08 [ 41] [ 8] [01529009] +06:33:08 [ 49] [ 3] [418] +06:33:08 [ 54] [ 40] [1001418C0000254737491002418C000025473749] +06:33:08 ============================================================================ +06:33:08 Calculate Source COMM Id = 5 +06:33:08 ============================================================================ +06:33:08 + + +waiting on router queue for slot.... +06:33:15 ============================================================================ +06:33:15 Slot Id : <209> +06:33:15 Transaction Type : REQUEST +06:33:15 Received From : +06:33:15 ============================================================================ +06:33:15 FNo. Len. Field Value +06:33:15 ============================================================================ +06:33:15 [ 1] [ 4] [0800] +06:33:15 [ 7] [ 10] [0320134505] +06:33:15 [ 11] [ 6] [064505] +06:33:15 [ 37] [ 12] [57906064505] +06:33:15 [ 70] [ 3] [301] +06:33:15 ============================================================================ +06:33:15 + + +waiting on router queue for slot.... +06:33:15 Sending to : +06:33:15 ============================================================================ +06:33:15 ============================================================================ +06:33:15 Slot Id : <209> +06:33:15 Transaction Type : RESPONSE +06:33:15 Received From : +06:33:15 ============================================================================ +06:33:15 FNo. Len. Field Value +06:33:15 ============================================================================ +06:33:15 [ 1] [ 4] [0810] +06:33:15 [ 7] [ 10] [0320134505] +06:33:15 [ 11] [ 6] [064505] +06:33:15 [ 37] [ 12] [579060645050] +06:33:15 [ 39] [ 2] [00] +06:33:15 [ 70] [ 3] [810] +06:33:15 ============================================================================ +06:33:15 Calculate Source COMM Id = 6 +06:33:15 ============================================================================ +06:33:15 + + +waiting on router queue for slot.... +06:33:16 ============================================================================ +06:33:16 Slot Id : <213> +06:33:16 Transaction Type : REQUEST +06:33:16 Received From : +06:33:16 ============================================================================ +06:33:16 FNo. Len. Field Value +06:33:16 ============================================================================ +06:33:16 [ 1] [ 4] [0800] +06:33:16 [ 2] [ 5] [02531] +06:33:16 [ 3] [ 6] [579068] +06:33:16 [ 7] [ 10] [0319233316] +06:33:16 [ 11] [ 6] [806792] +06:33:16 [ 15] [ 10] [0319233316] +06:33:16 [ 37] [ 11] [57906806792] +06:33:16 [ 70] [ 3] [001] +06:33:16 ============================================================================ +06:33:16 + + +waiting on router queue for slot.... +06:33:16 ============================================================================ +06:33:16 Slot Id : <213> +06:33:16 Transaction Type : RESPONSE +06:33:16 Received From : +06:33:16 ============================================================================ +06:33:16 FNo. Len. Field Value +06:33:16 ============================================================================ +06:33:16 [ 1] [ 4] [0810] +06:33:16 [ 7] [ 10] [0319233316] +06:33:16 [ 11] [ 6] [806792] +06:33:16 [ 15] [ 4] [0319] +06:33:16 [ 37] [ 12] [57906806792] +06:33:16 [ 39] [ 2] [00] +06:33:16 [ 70] [ 3] [001] +06:33:16 ============================================================================ +06:33:16 Sending to : +06:33:16 ============================================================================ +06:33:16 + + +waiting on router queue for slot.... +06:33:18 ============================================================================ +06:33:18 Slot Id : <178> +06:33:18 Transaction Type : REQUEST +06:33:18 Received From : +06:33:18 ============================================================================ +06:33:18 FNo. Len. Field Value +06:33:18 ============================================================================ +06:33:18 [ 1] [ 4] [0800] +06:33:18 [ 7] [ 10] [0319113226] +06:33:18 [ 11] [ 6] [154913] +06:33:18 [ 70] [ 3] [301] +06:33:18 ============================================================================ +06:33:18 + + +waiting on router queue for slot.... +06:33:18 Sending to : +06:33:18 ============================================================================ +06:33:18 ============================================================================ +06:33:18 Slot Id : <178> +06:33:18 Transaction Type : RESPONSE +06:33:18 Received From : +06:33:18 ============================================================================ +06:33:18 FNo. Len. Field Value +06:33:18 ============================================================================ +06:33:18 [ 1] [ 4] [0810] +06:33:18 [ 7] [ 10] [0319113226] +06:33:18 [ 11] [ 6] [154913] +06:33:18 [ 39] [ 2] [00] +06:33:18 [ 70] [ 3] [301] +06:33:18 ============================================================================ +06:33:18 Calculate Source COMM Id = 2 +06:33:18 ============================================================================ +06:33:18 + + +waiting on router queue for slot.... +06:33:28 ============================================================================ +06:33:28 Slot Id : <208> +06:33:28 Transaction Type : REQUEST +06:33:28 Received From : +06:33:28 ============================================================================ +06:33:28 FNo. Len. Field Value +06:33:28 ============================================================================ +06:33:28 [ 1] [ 4] [0800] +06:33:28 [ 7] [ 10] [0319113237] +06:33:28 [ 11] [ 6] [154914] +06:33:28 [ 70] [ 3] [301] +06:33:28 ============================================================================ +06:33:28 + + +waiting on router queue for slot.... +06:33:28 Sending to : +06:33:28 ============================================================================ +06:33:28 ============================================================================ +06:33:28 Slot Id : <208> +06:33:28 Transaction Type : RESPONSE +06:33:28 Received From : +06:33:28 ============================================================================ +06:33:28 FNo. Len. Field Value +06:33:28 ============================================================================ +06:33:28 [ 1] [ 4] [0810] +06:33:28 [ 7] [ 10] [0319113237] +06:33:28 [ 11] [ 6] [154914] +06:33:28 [ 39] [ 2] [00] +06:33:28 [ 70] [ 3] [301] +06:33:28 ============================================================================ +06:33:28 Calculate Source COMM Id = 2 +06:33:28 ============================================================================ +06:33:28 + + +waiting on router queue for slot.... +06:33:36 ============================================================================ +06:33:36 Slot Id : <193> +06:33:36 Transaction Type : REQUEST +06:33:36 Received From : +06:33:36 ============================================================================ +06:33:36 FNo. Len. Field Value +06:33:36 ============================================================================ +06:33:36 [ 1] [ 4] [0200] +06:33:36 [ 2] [ 16] [6213544001671442] +06:33:36 [ 3] [ 6] [301000] +06:33:36 [ 4] [ 12] [000000000000] +06:33:36 [ 7] [ 10] [0320063358] +06:33:36 [ 11] [ 6] [200579] +06:33:36 [ 12] [ 6] [063425] +06:33:36 [ 13] [ 4] [0320] +06:33:36 [ 14] [ 4] [4912] +06:33:36 [ 15] [ 4] [0320] +06:33:36 [ 18] [ 4] [6011] +06:33:36 [ 19] [ 3] [418] +06:33:36 [ 22] [ 3] [021] +06:33:36 [ 25] [ 2] [01] +06:33:36 [ 28] [ 9] [D00000000] +06:33:36 [ 32] [ 6] [198901] +06:33:36 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:36 [ 37] [ 12] [507906200579] +06:33:36 [ 41] [ 8] [01529009] +06:33:36 [ 42] [ 15] [000000041529009] +06:33:36 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:33:36 [ 49] [ 3] [418] +06:33:36 [ 52] [ 16] [19CF912F56C669E3] +06:33:36 ============================================================================ +06:33:36 + + +waiting on router queue for slot.... +06:33:36 Sending to : +06:33:36 ============================================================================ +06:33:36 Sending to : +06:33:36 ============================================================================ +06:33:37 ============================================================================ +06:33:37 Slot Id : <193> +06:33:37 Transaction Type : REQUEST +06:33:37 Received From : +06:33:37 ============================================================================ +06:33:37 FNo. Len. Field Value +06:33:37 ============================================================================ +06:33:37 [ 1] [ 4] [0200] +06:33:37 [ 2] [ 16] [6213544001671442] +06:33:37 [ 3] [ 6] [301000] +06:33:37 [ 4] [ 12] [000000000000] +06:33:37 [ 7] [ 10] [0320063358] +06:33:37 [ 11] [ 6] [200579] +06:33:37 [ 12] [ 6] [063425] +06:33:37 [ 13] [ 4] [0320] +06:33:37 [ 14] [ 4] [4912] +06:33:37 [ 15] [ 4] [0320] +06:33:37 [ 18] [ 4] [6011] +06:33:37 [ 19] [ 3] [418] +06:33:37 [ 22] [ 3] [021] +06:33:37 [ 25] [ 2] [01] +06:33:37 [ 28] [ 9] [D00000000] +06:33:37 [ 32] [ 6] [198901] +06:33:37 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:37 [ 37] [ 12] [507906200579] +06:33:37 [ 41] [ 8] [01529009] +06:33:37 [ 42] [ 15] [000000041529009] +06:33:37 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:33:37 [ 49] [ 3] [418] +06:33:37 [ 52] [ 16] [19CF912F56C669E3] +06:33:37 ============================================================================ +06:33:37 + + +waiting on router queue for slot.... +06:33:37 Sending to : +06:33:37 ============================================================================ +06:33:37 ============================================================================ +06:33:37 Slot Id : <193> +06:33:37 Transaction Type : REQUEST +06:33:37 Received From : +06:33:37 ============================================================================ +06:33:37 FNo. Len. Field Value +06:33:37 ============================================================================ +06:33:37 [ 1] [ 4] [0200] +06:33:37 [ 2] [ 16] [6213544001671442] +06:33:37 [ 3] [ 6] [301000] +06:33:37 [ 4] [ 12] [000000000000] +06:33:37 [ 7] [ 10] [0320063358] +06:33:37 [ 11] [ 6] [200579] +06:33:37 [ 12] [ 6] [063425] +06:33:37 [ 13] [ 4] [0320] +06:33:37 [ 14] [ 4] [4912] +06:33:37 [ 15] [ 4] [0320] +06:33:37 [ 18] [ 4] [6011] +06:33:37 [ 19] [ 3] [418] +06:33:37 [ 22] [ 3] [021] +06:33:37 [ 25] [ 2] [01] +06:33:37 [ 28] [ 9] [D00000000] +06:33:37 [ 32] [ 6] [198901] +06:33:37 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:37 [ 37] [ 12] [507906200579] +06:33:37 [ 41] [ 8] [01529009] +06:33:37 [ 42] [ 15] [000000041529009] +06:33:37 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:33:37 [ 49] [ 3] [418] +06:33:37 [ 52] [ 16] [F25C6FDC3841A52B] +06:33:37 ============================================================================ +06:33:37 + + +waiting on router queue for slot.... +06:33:37 Sending to : <0> +06:33:37 ============================================================================ +06:33:37 ============================================================================ +06:33:37 Slot Id : <193> +06:33:37 Transaction Type : RESPONSE +06:33:37 Received From : +06:33:37 ============================================================================ +06:33:37 FNo. Len. Field Value +06:33:37 ============================================================================ +06:33:37 [ 1] [ 4] [0210] +06:33:37 [ 2] [ 16] [6213544001671442] +06:33:37 [ 3] [ 6] [301000] +06:33:37 [ 4] [ 12] [000000000000] +06:33:37 [ 7] [ 10] [0320063358] +06:33:37 [ 11] [ 6] [200579] +06:33:37 [ 12] [ 6] [063425] +06:33:37 [ 13] [ 4] [0320] +06:33:37 [ 15] [ 4] [0320] +06:33:37 [ 18] [ 4] [6011] +06:33:37 [ 19] [ 3] [418] +06:33:37 [ 32] [ 6] [198901] +06:33:37 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:37 [ 37] [ 12] [507906200579] +06:33:37 [ 38] [ 6] [705297] +06:33:37 [ 39] [ 2] [00] +06:33:37 [ 41] [ 8] [01529009] +06:33:37 [ 49] [ 3] [418] +06:33:37 [ 54] [ 40] [1001418C0000254737491002418C000025473749] +06:33:37 ============================================================================ +06:33:37 Sending to : +06:33:37 ============================================================================ +06:33:37 + + +waiting on router queue for slot.... +06:33:39 ============================================================================ +06:33:39 Slot Id : <193> +06:33:39 Transaction Type : RESPONSE +06:33:39 Received From : +06:33:39 ============================================================================ +06:33:39 FNo. Len. Field Value +06:33:39 ============================================================================ +06:33:39 [ 1] [ 4] [0210] +06:33:39 [ 2] [ 16] [6213544001671442] +06:33:39 [ 3] [ 6] [301000] +06:33:39 [ 4] [ 12] [000000000000] +06:33:39 [ 7] [ 10] [0320063358] +06:33:39 [ 11] [ 6] [200579] +06:33:39 [ 12] [ 6] [063425] +06:33:39 [ 13] [ 4] [0320] +06:33:39 [ 15] [ 4] [0320] +06:33:39 [ 18] [ 4] [6011] +06:33:39 [ 19] [ 3] [418] +06:33:39 [ 32] [ 6] [198901] +06:33:39 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:39 [ 37] [ 12] [507906200579] +06:33:39 [ 38] [ 6] [705297] +06:33:39 [ 39] [ 2] [00] +06:33:39 [ 41] [ 8] [01529009] +06:33:39 [ 49] [ 3] [418] +06:33:39 [ 54] [ 40] [1001418C0000254737491002418C000025473749] +06:33:39 ============================================================================ +06:33:39 Calculate Source COMM Id = 5 +06:33:39 ============================================================================ +06:33:39 + + +waiting on router queue for slot.... +06:33:39 ============================================================================ +06:33:39 Slot Id : <206> +06:33:39 Transaction Type : REQUEST +06:33:39 Received From : +06:33:39 ============================================================================ +06:33:39 FNo. Len. Field Value +06:33:39 ============================================================================ +06:33:39 [ 1] [ 4] [0800] +06:33:39 [ 7] [ 10] [0319113248] +06:33:39 [ 11] [ 6] [154915] +06:33:39 [ 70] [ 3] [301] +06:33:39 ============================================================================ +06:33:39 + + +waiting on router queue for slot.... +06:33:39 Sending to : +06:33:39 ============================================================================ +06:33:39 ============================================================================ +06:33:39 Slot Id : <206> +06:33:39 Transaction Type : RESPONSE +06:33:39 Received From : +06:33:39 ============================================================================ +06:33:39 FNo. Len. Field Value +06:33:39 ============================================================================ +06:33:39 [ 1] [ 4] [0810] +06:33:39 [ 7] [ 10] [0319113248] +06:33:39 [ 11] [ 6] [154915] +06:33:39 [ 39] [ 2] [00] +06:33:39 [ 70] [ 3] [301] +06:33:39 ============================================================================ +06:33:39 Calculate Source COMM Id = 2 +06:33:39 ============================================================================ +06:33:39 + + +waiting on router queue for slot.... +06:33:48 ============================================================================ +06:33:48 Slot Id : <185> +06:33:48 Transaction Type : REQUEST +06:33:48 Received From : +06:33:48 ============================================================================ +06:33:48 FNo. Len. Field Value +06:33:48 ============================================================================ +06:33:48 [ 1] [ 4] [0200] +06:33:48 [ 2] [ 16] [6688990103295802] +06:33:48 [ 3] [ 6] [013000] +06:33:48 [ 4] [ 12] [000100000000] +06:33:48 [ 7] [ 10] [0320063345] +06:33:48 [ 11] [ 6] [664124] +06:33:48 [ 12] [ 6] [063345] +06:33:48 [ 13] [ 4] [0320] +06:33:48 [ 15] [ 4] [0320] +06:33:48 [ 18] [ 4] [6011] +06:33:48 [ 22] [ 3] [900] +06:33:48 [ 25] [ 2] [02] +06:33:48 [ 28] [ 9] [D00002000] +06:33:48 [ 32] [ 6] [621354] +06:33:48 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:33:48 [ 37] [ 12] [507903499388] +06:33:48 [ 41] [ 8] [06002200] +06:33:48 [ 42] [ 15] [NATIVE ] +06:33:48 [ 43] [ 40] [Beng Market Beng LAO] +06:33:48 [ 49] [ 3] [418] +06:33:48 [ 52] [ 16] [DA2B3C5D5A0119B1] +06:33:48 ============================================================================ +06:33:48 + + +waiting on router queue for slot.... +06:33:48 Sending to : +06:33:48 ============================================================================ +06:33:48 Sending to : +06:33:48 ============================================================================ +06:33:49 ============================================================================ +06:33:49 Slot Id : <185> +06:33:49 Transaction Type : REQUEST +06:33:49 Received From : +06:33:49 ============================================================================ +06:33:49 FNo. Len. Field Value +06:33:49 ============================================================================ +06:33:49 [ 1] [ 4] [0200] +06:33:49 [ 2] [ 16] [6688990103295802] +06:33:49 [ 3] [ 6] [013000] +06:33:49 [ 4] [ 12] [000100000000] +06:33:49 [ 7] [ 10] [0320063345] +06:33:49 [ 11] [ 6] [664124] +06:33:49 [ 12] [ 6] [063345] +06:33:49 [ 13] [ 4] [0320] +06:33:49 [ 15] [ 4] [0320] +06:33:49 [ 18] [ 4] [6011] +06:33:49 [ 22] [ 3] [900] +06:33:49 [ 25] [ 2] [02] +06:33:49 [ 28] [ 9] [D00002000] +06:33:49 [ 32] [ 6] [621354] +06:33:49 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:33:49 [ 37] [ 12] [507903499388] +06:33:49 [ 41] [ 8] [06002200] +06:33:49 [ 42] [ 15] [NATIVE ] +06:33:49 [ 43] [ 40] [Beng Market Beng LAO] +06:33:49 [ 49] [ 3] [418] +06:33:49 [ 52] [ 16] [DA2B3C5D5A0119B1] +06:33:49 ============================================================================ +06:33:49 + + +waiting on router queue for slot.... +06:33:49 Sending to : +06:33:49 ============================================================================ +06:33:49 ============================================================================ +06:33:49 Slot Id : <185> +06:33:49 Transaction Type : REQUEST +06:33:49 Received From : +06:33:49 ============================================================================ +06:33:49 FNo. Len. Field Value +06:33:49 ============================================================================ +06:33:49 [ 1] [ 4] [0200] +06:33:49 [ 2] [ 16] [6688990103295802] +06:33:49 [ 3] [ 6] [013000] +06:33:49 [ 4] [ 12] [000100000000] +06:33:49 [ 7] [ 10] [0320063345] +06:33:49 [ 11] [ 6] [664124] +06:33:49 [ 12] [ 6] [063345] +06:33:49 [ 13] [ 4] [0320] +06:33:49 [ 15] [ 4] [0320] +06:33:49 [ 18] [ 4] [6011] +06:33:49 [ 22] [ 3] [900] +06:33:49 [ 25] [ 2] [02] +06:33:49 [ 28] [ 9] [D00002000] +06:33:49 [ 32] [ 6] [621354] +06:33:49 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:33:49 [ 37] [ 12] [507903499388] +06:33:49 [ 41] [ 8] [06002200] +06:33:49 [ 42] [ 15] [NATIVE ] +06:33:49 [ 43] [ 40] [Beng Market Beng LAO] +06:33:49 [ 49] [ 3] [418] +06:33:49 [ 52] [ 16] [8BF71FC2C0054AA4] +06:33:49 ============================================================================ +06:33:49 + + +waiting on router queue for slot.... +06:33:49 Sending to : <4> +06:33:49 ============================================================================ +06:33:50 ============================================================================ +06:33:50 Slot Id : <221> +06:33:50 Transaction Type : REQUEST +06:33:50 Received From : +06:33:50 ============================================================================ +06:33:50 FNo. Len. Field Value +06:33:50 ============================================================================ +06:33:50 [ 1] [ 4] [0800] +06:33:50 [ 7] [ 10] [0319113258] +06:33:50 [ 11] [ 6] [154916] +06:33:50 [ 70] [ 3] [301] +06:33:50 ============================================================================ +06:33:50 + + +waiting on router queue for slot.... +06:33:50 Sending to : +06:33:50 ============================================================================ +06:33:50 ============================================================================ +06:33:50 Slot Id : <221> +06:33:50 Transaction Type : RESPONSE +06:33:50 Received From : +06:33:50 ============================================================================ +06:33:50 FNo. Len. Field Value +06:33:50 ============================================================================ +06:33:50 [ 1] [ 4] [0810] +06:33:50 [ 7] [ 10] [0319113258] +06:33:50 [ 11] [ 6] [154916] +06:33:50 [ 39] [ 2] [00] +06:33:50 [ 70] [ 3] [301] +06:33:50 ============================================================================ +06:33:50 Calculate Source COMM Id = 2 +06:33:50 ============================================================================ +06:33:50 + + +waiting on router queue for slot.... +06:33:50 ============================================================================ +06:33:50 Slot Id : <185> +06:33:50 Transaction Type : RESPONSE +06:33:50 Received From : +06:33:50 ============================================================================ +06:33:50 FNo. Len. Field Value +06:33:50 ============================================================================ +06:33:50 [ 1] [ 4] [0210] +06:33:50 [ 2] [ 16] [6688990103295802] +06:33:50 [ 3] [ 6] [013000] +06:33:50 [ 4] [ 12] [000100000000] +06:33:50 [ 11] [ 6] [664124] +06:33:50 [ 12] [ 6] [063345] +06:33:50 [ 15] [ 4] [0320] +06:33:50 [ 18] [ 4] [6011] +06:33:50 [ 32] [ 6] [621354] +06:33:50 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:33:50 [ 37] [ 12] [507903499388] +06:33:50 [ 38] [ 6] [903675] +06:33:50 [ 39] [ 2] [00] +06:33:50 [ 41] [ 8] [06002200] +06:33:50 [ 49] [ 3] [418] +06:33:50 [ 54] [ 20] [3002418C000019508271] +06:33:50 ============================================================================ +06:33:50 Sending to : +06:33:50 ============================================================================ +06:33:50 + + +waiting on router queue for slot.... +06:33:51 ============================================================================ +06:33:51 Slot Id : <185> +06:33:51 Transaction Type : RESPONSE +06:33:51 Received From : +06:33:51 ============================================================================ +06:33:51 FNo. Len. Field Value +06:33:51 ============================================================================ +06:33:51 [ 1] [ 4] [0210] +06:33:51 [ 2] [ 16] [6688990103295802] +06:33:51 [ 3] [ 6] [013000] +06:33:51 [ 4] [ 12] [000100000000] +06:33:51 [ 11] [ 6] [664124] +06:33:51 [ 12] [ 6] [063345] +06:33:51 [ 15] [ 4] [0320] +06:33:51 [ 18] [ 4] [6011] +06:33:51 [ 32] [ 6] [621354] +06:33:51 [ 35] [ 37] [6688990103295802=42121231580276600000] +06:33:51 [ 37] [ 12] [507903499388] +06:33:51 [ 38] [ 6] [903675] +06:33:51 [ 39] [ 2] [00] +06:33:51 [ 41] [ 8] [06002200] +06:33:51 [ 49] [ 3] [418] +06:33:51 [ 54] [ 20] [3002418C000019508271] +06:33:51 ============================================================================ +06:33:51 Calculate Source COMM Id = 0 +06:33:51 ============================================================================ +06:33:51 + + +waiting on router queue for slot.... +06:33:56 ============================================================================ +06:33:56 Slot Id : <211> +06:33:56 Transaction Type : REQUEST +06:33:56 Received From : +06:33:56 ============================================================================ +06:33:56 FNo. Len. Field Value +06:33:56 ============================================================================ +06:33:56 [ 1] [ 4] [0200] +06:33:56 [ 2] [ 16] [6213544001671442] +06:33:56 [ 3] [ 6] [011000] +06:33:56 [ 4] [ 12] [000008000000] +06:33:56 [ 7] [ 10] [0320063418] +06:33:56 [ 11] [ 6] [200583] +06:33:56 [ 12] [ 6] [063445] +06:33:56 [ 13] [ 4] [0320] +06:33:56 [ 14] [ 4] [4912] +06:33:56 [ 15] [ 4] [0320] +06:33:56 [ 18] [ 4] [6011] +06:33:56 [ 19] [ 3] [418] +06:33:56 [ 22] [ 3] [021] +06:33:56 [ 25] [ 2] [01] +06:33:56 [ 28] [ 9] [D00002000] +06:33:56 [ 32] [ 6] [198901] +06:33:56 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:56 [ 37] [ 12] [507906200583] +06:33:56 [ 41] [ 8] [01529009] +06:33:56 [ 42] [ 15] [000000041529009] +06:33:56 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:33:56 [ 49] [ 3] [418] +06:33:56 [ 52] [ 16] [19CF912F56C669E3] +06:33:56 ============================================================================ +06:33:56 + + +waiting on router queue for slot.... +06:33:56 Sending to : +06:33:56 ============================================================================ +06:33:56 Sending to : +06:33:56 ============================================================================ +06:33:56 ============================================================================ +06:33:56 Slot Id : <211> +06:33:56 Transaction Type : REQUEST +06:33:56 Received From : +06:33:56 ============================================================================ +06:33:56 FNo. Len. Field Value +06:33:56 ============================================================================ +06:33:56 [ 1] [ 4] [0200] +06:33:56 [ 2] [ 16] [6213544001671442] +06:33:56 [ 3] [ 6] [011000] +06:33:56 [ 4] [ 12] [000008000000] +06:33:56 [ 7] [ 10] [0320063418] +06:33:56 [ 11] [ 6] [200583] +06:33:56 [ 12] [ 6] [063445] +06:33:56 [ 13] [ 4] [0320] +06:33:56 [ 14] [ 4] [4912] +06:33:56 [ 15] [ 4] [0320] +06:33:56 [ 18] [ 4] [6011] +06:33:56 [ 19] [ 3] [418] +06:33:56 [ 22] [ 3] [021] +06:33:56 [ 25] [ 2] [01] +06:33:56 [ 28] [ 9] [D00002000] +06:33:56 [ 32] [ 6] [198901] +06:33:56 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:56 [ 37] [ 12] [507906200583] +06:33:56 [ 41] [ 8] [01529009] +06:33:56 [ 42] [ 15] [000000041529009] +06:33:56 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:33:56 [ 49] [ 3] [418] +06:33:56 [ 52] [ 16] [19CF912F56C669E3] +06:33:56 ============================================================================ +06:33:56 + + +waiting on router queue for slot.... +06:33:56 Sending to : +06:33:56 ============================================================================ +06:33:57 ============================================================================ +06:33:57 Slot Id : <211> +06:33:57 Transaction Type : REQUEST +06:33:57 Received From : +06:33:57 ============================================================================ +06:33:57 FNo. Len. Field Value +06:33:57 ============================================================================ +06:33:57 [ 1] [ 4] [0200] +06:33:57 [ 2] [ 16] [6213544001671442] +06:33:57 [ 3] [ 6] [011000] +06:33:57 [ 4] [ 12] [000008000000] +06:33:57 [ 7] [ 10] [0320063418] +06:33:57 [ 11] [ 6] [200583] +06:33:57 [ 12] [ 6] [063445] +06:33:57 [ 13] [ 4] [0320] +06:33:57 [ 14] [ 4] [4912] +06:33:57 [ 15] [ 4] [0320] +06:33:57 [ 18] [ 4] [6011] +06:33:57 [ 19] [ 3] [418] +06:33:57 [ 22] [ 3] [021] +06:33:57 [ 25] [ 2] [01] +06:33:57 [ 28] [ 9] [D00002000] +06:33:57 [ 32] [ 6] [198901] +06:33:57 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:57 [ 37] [ 12] [507906200583] +06:33:57 [ 41] [ 8] [01529009] +06:33:57 [ 42] [ 15] [000000041529009] +06:33:57 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:33:57 [ 49] [ 3] [418] +06:33:57 [ 52] [ 16] [F25C6FDC3841A52B] +06:33:57 ============================================================================ +06:33:57 + + +waiting on router queue for slot.... +06:33:57 Sending to : <0> +06:33:57 ============================================================================ +06:33:57 ============================================================================ +06:33:57 Slot Id : <211> +06:33:57 Transaction Type : RESPONSE +06:33:57 Received From : +06:33:57 ============================================================================ +06:33:57 FNo. Len. Field Value +06:33:57 ============================================================================ +06:33:57 [ 1] [ 4] [0210] +06:33:57 [ 2] [ 16] [6213544001671442] +06:33:57 [ 3] [ 6] [011000] +06:33:57 [ 4] [ 12] [000008000000] +06:33:57 [ 7] [ 10] [0320063418] +06:33:57 [ 11] [ 6] [200583] +06:33:57 [ 12] [ 6] [063445] +06:33:57 [ 13] [ 4] [0320] +06:33:57 [ 15] [ 4] [0320] +06:33:57 [ 18] [ 4] [6011] +06:33:57 [ 19] [ 3] [418] +06:33:57 [ 32] [ 6] [198901] +06:33:57 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:57 [ 37] [ 12] [507906200583] +06:33:57 [ 38] [ 6] [510254] +06:33:57 [ 39] [ 2] [00] +06:33:57 [ 41] [ 8] [01529009] +06:33:57 [ 49] [ 3] [418] +06:33:57 [ 54] [ 40] [1001418C0000172737491002418C000017273749] +06:33:57 ============================================================================ +06:33:57 Sending to : +06:33:57 ============================================================================ +06:33:57 + + +waiting on router queue for slot.... +06:33:58 ============================================================================ +06:33:58 Slot Id : <183> +06:33:58 Transaction Type : REQUEST +06:33:58 Received From : +06:33:58 ============================================================================ +06:33:58 FNo. Len. Field Value +06:33:58 ============================================================================ +06:33:58 [ 1] [ 4] [0200] +06:33:58 [ 2] [ 16] [6213541000068042] +06:33:58 [ 3] [ 6] [010000] +06:33:58 [ 4] [ 12] [000010000000] +06:33:58 [ 7] [ 10] [0319233306] +06:33:58 [ 11] [ 6] [266629] +06:33:58 [ 12] [ 6] [063306] +06:33:58 [ 13] [ 4] [0320] +06:33:58 [ 14] [ 4] [4912] +06:33:58 [ 15] [ 4] [0320] +06:33:58 [ 18] [ 4] [6011] +06:33:58 [ 19] [ 3] [418] +06:33:58 [ 22] [ 3] [021] +06:33:58 [ 25] [ 2] [01] +06:33:58 [ 28] [ 9] [D00002000] +06:33:58 [ 32] [ 6] [180893] +06:33:58 [ 35] [ 32] [6213541000068042=491212016804209] +06:33:58 [ 37] [ 12] [507923266629] +06:33:58 [ 41] [ 8] [0108THNG] +06:33:58 [ 42] [ 15] [999999 ] +06:33:58 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +06:33:58 [ 49] [ 3] [418] +06:33:58 [ 52] [ 16] [ABACBEEA2362BF73] +06:33:58 ============================================================================ +06:33:58 + + +waiting on router queue for slot.... +06:33:58 Sending to : +06:33:58 ============================================================================ +06:33:58 Sending to : +06:33:58 ============================================================================ +06:33:58 ============================================================================ +06:33:58 Slot Id : <183> +06:33:58 Transaction Type : REQUEST +06:33:58 Received From : +06:33:58 ============================================================================ +06:33:58 FNo. Len. Field Value +06:33:58 ============================================================================ +06:33:58 [ 1] [ 4] [0200] +06:33:58 [ 2] [ 16] [6213541000068042] +06:33:58 [ 3] [ 6] [010000] +06:33:58 [ 4] [ 12] [000010000000] +06:33:58 [ 7] [ 10] [0319233306] +06:33:58 [ 11] [ 6] [266629] +06:33:58 [ 12] [ 6] [063306] +06:33:58 [ 13] [ 4] [0320] +06:33:58 [ 14] [ 4] [4912] +06:33:58 [ 15] [ 4] [0320] +06:33:58 [ 18] [ 4] [6011] +06:33:58 [ 19] [ 3] [418] +06:33:58 [ 22] [ 3] [021] +06:33:58 [ 25] [ 2] [01] +06:33:58 [ 28] [ 9] [D00002000] +06:33:58 [ 32] [ 6] [180893] +06:33:58 [ 35] [ 32] [6213541000068042=491212016804209] +06:33:58 [ 37] [ 12] [507923266629] +06:33:58 [ 41] [ 8] [0108THNG] +06:33:58 [ 42] [ 15] [999999 ] +06:33:58 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +06:33:58 [ 49] [ 3] [418] +06:33:58 [ 52] [ 16] [ABACBEEA2362BF73] +06:33:58 ============================================================================ +06:33:58 + + +waiting on router queue for slot.... +06:33:58 Sending to : +06:33:58 ============================================================================ +06:33:58 ============================================================================ +06:33:58 Slot Id : <183> +06:33:58 Transaction Type : REQUEST +06:33:58 Received From : +06:33:58 ============================================================================ +06:33:58 FNo. Len. Field Value +06:33:58 ============================================================================ +06:33:58 [ 1] [ 4] [0200] +06:33:58 [ 2] [ 16] [6213541000068042] +06:33:58 [ 3] [ 6] [010000] +06:33:58 [ 4] [ 12] [000010000000] +06:33:58 [ 7] [ 10] [0319233306] +06:33:58 [ 11] [ 6] [266629] +06:33:58 [ 12] [ 6] [063306] +06:33:58 [ 13] [ 4] [0320] +06:33:58 [ 14] [ 4] [4912] +06:33:58 [ 15] [ 4] [0320] +06:33:58 [ 18] [ 4] [6011] +06:33:58 [ 19] [ 3] [418] +06:33:58 [ 22] [ 3] [021] +06:33:58 [ 25] [ 2] [01] +06:33:58 [ 28] [ 9] [D00002000] +06:33:58 [ 32] [ 6] [180893] +06:33:58 [ 35] [ 32] [6213541000068042=491212016804209] +06:33:58 [ 37] [ 12] [507923266629] +06:33:58 [ 41] [ 8] [0108THNG] +06:33:58 [ 42] [ 15] [999999 ] +06:33:58 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +06:33:58 [ 49] [ 3] [418] +06:33:58 [ 52] [ 16] [FC40F4F65B424576] +06:33:58 ============================================================================ +06:33:58 + + +waiting on router queue for slot.... +06:33:58 Sending to : <0> +06:33:58 ============================================================================ +06:33:59 ============================================================================ +06:33:59 Slot Id : <183> +06:33:59 Transaction Type : RESPONSE +06:33:59 Received From : +06:33:59 ============================================================================ +06:33:59 FNo. Len. Field Value +06:33:59 ============================================================================ +06:33:59 [ 1] [ 4] [0210] +06:33:59 [ 2] [ 16] [6213541000068042] +06:33:59 [ 3] [ 6] [010000] +06:33:59 [ 4] [ 12] [000010000000] +06:33:59 [ 7] [ 10] [0319233306] +06:33:59 [ 11] [ 6] [266629] +06:33:59 [ 12] [ 6] [063306] +06:33:59 [ 13] [ 4] [0320] +06:33:59 [ 15] [ 4] [0320] +06:33:59 [ 18] [ 4] [6011] +06:33:59 [ 19] [ 3] [418] +06:33:59 [ 32] [ 6] [180893] +06:33:59 [ 35] [ 32] [6213541000068042=491212016804209] +06:33:59 [ 37] [ 12] [507923266629] +06:33:59 [ 38] [ 6] [331094] +06:33:59 [ 39] [ 2] [00] +06:33:59 [ 41] [ 8] [0108THNG] +06:33:59 [ 49] [ 3] [418] +06:33:59 [ 54] [ 40] [0001418C0001676428100002418C000167642810] +06:33:59 ============================================================================ +06:33:59 Sending to : +06:33:59 ============================================================================ +06:33:59 + + +waiting on router queue for slot.... +06:33:59 ============================================================================ +06:33:59 Slot Id : <211> +06:33:59 Transaction Type : RESPONSE +06:33:59 Received From : +06:33:59 ============================================================================ +06:33:59 FNo. Len. Field Value +06:33:59 ============================================================================ +06:33:59 [ 1] [ 4] [0210] +06:33:59 [ 2] [ 16] [6213544001671442] +06:33:59 [ 3] [ 6] [011000] +06:33:59 [ 4] [ 12] [000008000000] +06:33:59 [ 7] [ 10] [0320063418] +06:33:59 [ 11] [ 6] [200583] +06:33:59 [ 12] [ 6] [063445] +06:33:59 [ 13] [ 4] [0320] +06:33:59 [ 15] [ 4] [0320] +06:33:59 [ 18] [ 4] [6011] +06:33:59 [ 19] [ 3] [418] +06:33:59 [ 32] [ 6] [198901] +06:33:59 [ 35] [ 32] [6213544001671442=491212017144234] +06:33:59 [ 37] [ 12] [507906200583] +06:33:59 [ 38] [ 6] [510254] +06:33:59 [ 39] [ 2] [00] +06:33:59 [ 41] [ 8] [01529009] +06:33:59 [ 49] [ 3] [418] +06:33:59 [ 54] [ 40] [1001418C0000172737491002418C000017273749] +06:33:59 ============================================================================ +06:33:59 Calculate Source COMM Id = 5 +06:33:59 ============================================================================ +06:33:59 + + +waiting on router queue for slot.... +06:34:01 ============================================================================ +06:34:01 Slot Id : <183> +06:34:01 Transaction Type : RESPONSE +06:34:01 Received From : +06:34:01 ============================================================================ +06:34:01 FNo. Len. Field Value +06:34:01 ============================================================================ +06:34:01 [ 1] [ 4] [0210] +06:34:01 [ 2] [ 16] [6213541000068042] +06:34:01 [ 3] [ 6] [010000] +06:34:01 [ 4] [ 12] [000010000000] +06:34:01 [ 7] [ 10] [0319233306] +06:34:01 [ 11] [ 6] [266629] +06:34:01 [ 12] [ 6] [063306] +06:34:01 [ 13] [ 4] [0320] +06:34:01 [ 15] [ 4] [0320] +06:34:01 [ 18] [ 4] [6011] +06:34:01 [ 19] [ 3] [418] +06:34:01 [ 32] [ 6] [180893] +06:34:01 [ 35] [ 32] [6213541000068042=491212016804209] +06:34:01 [ 37] [ 12] [507923266629] +06:34:01 [ 38] [ 6] [331094] +06:34:01 [ 39] [ 2] [00] +06:34:01 [ 41] [ 8] [0108THNG] +06:34:01 [ 49] [ 3] [418] +06:34:01 [ 54] [ 40] [0001418C0001676428100002418C000167642810] +06:34:01 ============================================================================ +06:34:01 Calculate Source COMM Id = 2 +06:34:01 ============================================================================ +06:34:01 + + +waiting on router queue for slot.... +06:34:01 ============================================================================ +06:34:01 Slot Id : <212> +06:34:01 Transaction Type : REQUEST +06:34:01 Received From : +06:34:01 ============================================================================ +06:34:01 FNo. Len. Field Value +06:34:01 ============================================================================ +06:34:01 [ 1] [ 4] [0800] +06:34:01 [ 7] [ 10] [0319113309] +06:34:01 [ 11] [ 6] [154917] +06:34:01 [ 70] [ 3] [301] +06:34:01 ============================================================================ +06:34:01 + + +waiting on router queue for slot.... +06:34:01 Sending to : +06:34:01 ============================================================================ +06:34:01 ============================================================================ +06:34:01 Slot Id : <212> +06:34:01 Transaction Type : RESPONSE +06:34:01 Received From : +06:34:01 ============================================================================ +06:34:01 FNo. Len. Field Value +06:34:01 ============================================================================ +06:34:01 [ 1] [ 4] [0810] +06:34:01 [ 7] [ 10] [0319113309] +06:34:01 [ 11] [ 6] [154917] +06:34:01 [ 39] [ 2] [00] +06:34:01 [ 70] [ 3] [301] +06:34:01 ============================================================================ +06:34:01 Calculate Source COMM Id = 2 +06:34:01 ============================================================================ +06:34:01 + + +waiting on router queue for slot.... +06:34:16 ============================================================================ +06:34:16 Slot Id : <207> +06:34:16 Transaction Type : REQUEST +06:34:16 Received From : +06:34:16 ============================================================================ +06:34:16 FNo. Len. Field Value +06:34:16 ============================================================================ +06:34:16 [ 1] [ 4] [0800] +06:34:16 [ 7] [ 10] [0319113325] +06:34:16 [ 11] [ 6] [154918] +06:34:16 [ 70] [ 3] [301] +06:34:16 ============================================================================ +06:34:16 + + +waiting on router queue for slot.... +06:34:16 Sending to : +06:34:16 ============================================================================ +06:34:16 ============================================================================ +06:34:16 Slot Id : <207> +06:34:16 Transaction Type : RESPONSE +06:34:16 Received From : +06:34:16 ============================================================================ +06:34:16 FNo. Len. Field Value +06:34:16 ============================================================================ +06:34:16 [ 1] [ 4] [0810] +06:34:16 [ 7] [ 10] [0319113325] +06:34:16 [ 11] [ 6] [154918] +06:34:16 [ 39] [ 2] [00] +06:34:16 [ 70] [ 3] [301] +06:34:16 ============================================================================ +06:34:16 Calculate Source COMM Id = 2 +06:34:16 ============================================================================ +06:34:16 + + +waiting on router queue for slot.... +06:34:18 ============================================================================ +06:34:18 Slot Id : <149> +06:34:18 Transaction Type : REQUEST +06:34:18 Received From : +06:34:18 ============================================================================ +06:34:18 FNo. Len. Field Value +06:34:18 ============================================================================ +06:34:18 [ 1] [ 4] [0800] +06:34:18 [ 2] [ 5] [02531] +06:34:18 [ 3] [ 6] [579068] +06:34:18 [ 7] [ 10] [0319233418] +06:34:18 [ 11] [ 6] [806793] +06:34:18 [ 15] [ 10] [0319233418] +06:34:18 [ 37] [ 11] [57906806793] +06:34:18 [ 70] [ 3] [001] +06:34:18 ============================================================================ +06:34:18 + + +waiting on router queue for slot.... +06:34:18 ============================================================================ +06:34:18 Slot Id : <149> +06:34:18 Transaction Type : RESPONSE +06:34:18 Received From : +06:34:18 ============================================================================ +06:34:18 FNo. Len. Field Value +06:34:18 ============================================================================ +06:34:18 [ 1] [ 4] [0810] +06:34:18 [ 7] [ 10] [0319233418] +06:34:18 [ 11] [ 6] [806793] +06:34:18 [ 15] [ 4] [0319] +06:34:18 [ 37] [ 12] [57906806793] +06:34:18 [ 39] [ 2] [00] +06:34:18 [ 70] [ 3] [001] +06:34:18 ============================================================================ +06:34:18 Sending to : +06:34:18 ============================================================================ +06:34:18 + + +waiting on router queue for slot.... +06:34:20 ============================================================================ +06:34:20 Slot Id : <174> +06:34:20 Transaction Type : REQUEST +06:34:20 Received From : +06:34:20 ============================================================================ +06:34:20 FNo. Len. Field Value +06:34:20 ============================================================================ +06:34:20 [ 1] [ 4] [0800] +06:34:20 [ 7] [ 10] [0320134610] +06:34:20 [ 11] [ 6] [064610] +06:34:20 [ 37] [ 12] [57906064610] +06:34:20 [ 70] [ 3] [301] +06:34:20 ============================================================================ +06:34:20 + + +waiting on router queue for slot.... +06:34:20 Sending to : +06:34:20 ============================================================================ +06:34:20 ============================================================================ +06:34:20 Slot Id : <174> +06:34:20 Transaction Type : RESPONSE +06:34:20 Received From : +06:34:20 ============================================================================ +06:34:20 FNo. Len. Field Value +06:34:20 ============================================================================ +06:34:20 [ 1] [ 4] [0810] +06:34:20 [ 7] [ 10] [0320134610] +06:34:20 [ 11] [ 6] [064610] +06:34:20 [ 37] [ 12] [579060646100] +06:34:20 [ 39] [ 2] [00] +06:34:20 [ 70] [ 3] [810] +06:34:20 ============================================================================ +06:34:20 Calculate Source COMM Id = 6 +06:34:20 ============================================================================ +06:34:20 + + +waiting on router queue for slot.... +06:34:25 ============================================================================ +06:34:25 Slot Id : <168> +06:34:25 Transaction Type : REQUEST +06:34:25 Received From : +06:34:25 ============================================================================ +06:34:25 FNo. Len. Field Value +06:34:25 ============================================================================ +06:34:25 [ 1] [ 4] [0200] +06:34:25 [ 2] [ 16] [6213544001671442] +06:34:25 [ 3] [ 6] [011000] +06:34:25 [ 4] [ 12] [000008000000] +06:34:25 [ 7] [ 10] [0320063446] +06:34:25 [ 11] [ 6] [200590] +06:34:25 [ 12] [ 6] [063513] +06:34:25 [ 13] [ 4] [0320] +06:34:25 [ 14] [ 4] [4912] +06:34:25 [ 15] [ 4] [0320] +06:34:25 [ 18] [ 4] [6011] +06:34:25 [ 19] [ 3] [418] +06:34:25 [ 22] [ 3] [021] +06:34:25 [ 25] [ 2] [01] +06:34:25 [ 28] [ 9] [D00002000] +06:34:25 [ 32] [ 6] [198901] +06:34:25 [ 35] [ 32] [6213544001671442=491212017144234] +06:34:25 [ 37] [ 12] [507906200590] +06:34:25 [ 41] [ 8] [01529009] +06:34:25 [ 42] [ 15] [000000041529009] +06:34:25 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:34:25 [ 49] [ 3] [418] +06:34:25 [ 52] [ 16] [19CF912F56C669E3] +06:34:25 ============================================================================ +06:34:25 + + +waiting on router queue for slot.... +06:34:25 Sending to : +06:34:25 ============================================================================ +06:34:25 Sending to : +06:34:25 ============================================================================ +06:34:25 ============================================================================ +06:34:25 Slot Id : <168> +06:34:25 Transaction Type : REQUEST +06:34:25 Received From : +06:34:25 ============================================================================ +06:34:25 FNo. Len. Field Value +06:34:25 ============================================================================ +06:34:25 [ 1] [ 4] [0200] +06:34:25 [ 2] [ 16] [6213544001671442] +06:34:25 [ 3] [ 6] [011000] +06:34:25 [ 4] [ 12] [000008000000] +06:34:25 [ 7] [ 10] [0320063446] +06:34:25 [ 11] [ 6] [200590] +06:34:25 [ 12] [ 6] [063513] +06:34:25 [ 13] [ 4] [0320] +06:34:25 [ 14] [ 4] [4912] +06:34:25 [ 15] [ 4] [0320] +06:34:25 [ 18] [ 4] [6011] +06:34:25 [ 19] [ 3] [418] +06:34:25 [ 22] [ 3] [021] +06:34:25 [ 25] [ 2] [01] +06:34:25 [ 28] [ 9] [D00002000] +06:34:25 [ 32] [ 6] [198901] +06:34:25 [ 35] [ 32] [6213544001671442=491212017144234] +06:34:25 [ 37] [ 12] [507906200590] +06:34:25 [ 41] [ 8] [01529009] +06:34:25 [ 42] [ 15] [000000041529009] +06:34:25 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:34:25 [ 49] [ 3] [418] +06:34:25 [ 52] [ 16] [19CF912F56C669E3] +06:34:25 ============================================================================ +06:34:25 + + +waiting on router queue for slot.... +06:34:25 Sending to : +06:34:25 ============================================================================ +06:34:25 ============================================================================ +06:34:25 Slot Id : <168> +06:34:25 Transaction Type : REQUEST +06:34:25 Received From : +06:34:25 ============================================================================ +06:34:25 FNo. Len. Field Value +06:34:25 ============================================================================ +06:34:25 [ 1] [ 4] [0200] +06:34:25 [ 2] [ 16] [6213544001671442] +06:34:25 [ 3] [ 6] [011000] +06:34:25 [ 4] [ 12] [000008000000] +06:34:25 [ 7] [ 10] [0320063446] +06:34:25 [ 11] [ 6] [200590] +06:34:25 [ 12] [ 6] [063513] +06:34:25 [ 13] [ 4] [0320] +06:34:25 [ 14] [ 4] [4912] +06:34:25 [ 15] [ 4] [0320] +06:34:25 [ 18] [ 4] [6011] +06:34:25 [ 19] [ 3] [418] +06:34:25 [ 22] [ 3] [021] +06:34:25 [ 25] [ 2] [01] +06:34:25 [ 28] [ 9] [D00002000] +06:34:25 [ 32] [ 6] [198901] +06:34:25 [ 35] [ 32] [6213544001671442=491212017144234] +06:34:25 [ 37] [ 12] [507906200590] +06:34:25 [ 41] [ 8] [01529009] +06:34:25 [ 42] [ 15] [000000041529009] +06:34:25 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:34:25 [ 49] [ 3] [418] +06:34:25 [ 52] [ 16] [F25C6FDC3841A52B] +06:34:25 ============================================================================ +06:34:25 + + +waiting on router queue for slot.... +06:34:25 Sending to : <0> +06:34:25 ============================================================================ +06:34:26 ============================================================================ +06:34:26 Slot Id : <168> +06:34:26 Transaction Type : RESPONSE +06:34:26 Received From : +06:34:26 ============================================================================ +06:34:26 FNo. Len. Field Value +06:34:26 ============================================================================ +06:34:26 [ 1] [ 4] [0210] +06:34:26 [ 2] [ 16] [6213544001671442] +06:34:26 [ 3] [ 6] [011000] +06:34:26 [ 4] [ 12] [000008000000] +06:34:26 [ 7] [ 10] [0320063446] +06:34:26 [ 11] [ 6] [200590] +06:34:26 [ 12] [ 6] [063513] +06:34:26 [ 13] [ 4] [0320] +06:34:26 [ 15] [ 4] [0320] +06:34:26 [ 18] [ 4] [6011] +06:34:26 [ 19] [ 3] [418] +06:34:26 [ 32] [ 6] [198901] +06:34:26 [ 35] [ 32] [6213544001671442=491212017144234] +06:34:26 [ 37] [ 12] [507906200590] +06:34:26 [ 38] [ 6] [992090] +06:34:26 [ 39] [ 2] [00] +06:34:26 [ 41] [ 8] [01529009] +06:34:26 [ 49] [ 3] [418] +06:34:26 [ 54] [ 40] [1001418C0000090737491002418C000009073749] +06:34:26 ============================================================================ +06:34:26 Sending to : +06:34:26 ============================================================================ +06:34:26 + + +waiting on router queue for slot.... +06:34:26 ============================================================================ +06:34:26 Slot Id : <180> +06:34:26 Transaction Type : REQUEST +06:34:26 Received From : +06:34:26 ============================================================================ +06:34:26 FNo. Len. Field Value +06:34:26 ============================================================================ +06:34:26 [ 1] [ 4] [0800] +06:34:26 [ 7] [ 10] [0319113335] +06:34:26 [ 11] [ 6] [154919] +06:34:26 [ 70] [ 3] [301] +06:34:26 ============================================================================ +06:34:26 + + +waiting on router queue for slot.... +06:34:26 Sending to : +06:34:26 ============================================================================ +06:34:26 ============================================================================ +06:34:26 Slot Id : <180> +06:34:26 Transaction Type : RESPONSE +06:34:26 Received From : +06:34:26 ============================================================================ +06:34:26 FNo. Len. Field Value +06:34:26 ============================================================================ +06:34:26 [ 1] [ 4] [0810] +06:34:26 [ 7] [ 10] [0319113335] +06:34:26 [ 11] [ 6] [154919] +06:34:26 [ 39] [ 2] [00] +06:34:26 [ 70] [ 3] [301] +06:34:26 ============================================================================ +06:34:26 Calculate Source COMM Id = 2 +06:34:26 ============================================================================ +06:34:26 + + +waiting on router queue for slot.... +06:34:27 ============================================================================ +06:34:27 Slot Id : <168> +06:34:27 Transaction Type : RESPONSE +06:34:27 Received From : +06:34:27 ============================================================================ +06:34:27 FNo. Len. Field Value +06:34:27 ============================================================================ +06:34:27 [ 1] [ 4] [0210] +06:34:27 [ 2] [ 16] [6213544001671442] +06:34:27 [ 3] [ 6] [011000] +06:34:27 [ 4] [ 12] [000008000000] +06:34:27 [ 7] [ 10] [0320063446] +06:34:27 [ 11] [ 6] [200590] +06:34:27 [ 12] [ 6] [063513] +06:34:27 [ 13] [ 4] [0320] +06:34:27 [ 15] [ 4] [0320] +06:34:27 [ 18] [ 4] [6011] +06:34:27 [ 19] [ 3] [418] +06:34:27 [ 32] [ 6] [198901] +06:34:27 [ 35] [ 32] [6213544001671442=491212017144234] +06:34:27 [ 37] [ 12] [507906200590] +06:34:27 [ 38] [ 6] [992090] +06:34:27 [ 39] [ 2] [00] +06:34:27 [ 41] [ 8] [01529009] +06:34:27 [ 49] [ 3] [418] +06:34:27 [ 54] [ 40] [1001418C0000090737491002418C000009073749] +06:34:27 ============================================================================ +06:34:27 Calculate Source COMM Id = 5 +06:34:27 ============================================================================ +06:34:27 + + +waiting on router queue for slot.... +06:34:37 ============================================================================ +06:34:37 Slot Id : <189> +06:34:37 Transaction Type : REQUEST +06:34:37 Received From : +06:34:37 ============================================================================ +06:34:37 FNo. Len. Field Value +06:34:37 ============================================================================ +06:34:37 [ 1] [ 4] [0800] +06:34:37 [ 7] [ 10] [0319113346] +06:34:37 [ 11] [ 6] [154920] +06:34:37 [ 70] [ 3] [301] +06:34:37 ============================================================================ +06:34:37 + + +waiting on router queue for slot.... +06:34:37 Sending to : +06:34:37 ============================================================================ +06:34:37 ============================================================================ +06:34:37 Slot Id : <189> +06:34:37 Transaction Type : RESPONSE +06:34:37 Received From : +06:34:37 ============================================================================ +06:34:37 FNo. Len. Field Value +06:34:37 ============================================================================ +06:34:37 [ 1] [ 4] [0810] +06:34:37 [ 7] [ 10] [0319113346] +06:34:37 [ 11] [ 6] [154920] +06:34:37 [ 39] [ 2] [00] +06:34:37 [ 70] [ 3] [301] +06:34:37 ============================================================================ +06:34:37 Calculate Source COMM Id = 2 +06:34:37 ============================================================================ +06:34:37 + + +waiting on router queue for slot.... +06:34:47 ============================================================================ +06:34:47 Slot Id : <169> +06:34:47 Transaction Type : REQUEST +06:34:47 Received From : +06:34:47 ============================================================================ +06:34:47 FNo. Len. Field Value +06:34:47 ============================================================================ +06:34:47 [ 1] [ 4] [0800] +06:34:47 [ 7] [ 10] [0320063435] +06:34:47 [ 11] [ 6] [003181] +06:34:47 [ 37] [ 12] [507906003181] +06:34:47 [ 70] [ 3] [ ] +06:34:47 ============================================================================ +06:34:47 + + +waiting on router queue for slot.... +06:34:47 Sending to : +06:34:47 ============================================================================ +06:34:47 ============================================================================ +06:34:47 Slot Id : <169> +06:34:47 Transaction Type : RESPONSE +06:34:47 Received From : +06:34:47 ============================================================================ +06:34:47 FNo. Len. Field Value +06:34:47 ============================================================================ +06:34:47 [ 1] [ 4] [0810] +06:34:47 [ 7] [ 10] [0320063435] +06:34:47 [ 11] [ 6] [003181] +06:34:47 [ 37] [ 12] [507906003181] +06:34:47 [ 39] [ 2] [91] +06:34:47 [ 70] [ 3] [ ] +06:34:47 ============================================================================ +06:34:47 Calculate Source COMM Id = 3 +06:34:47 ============================================================================ +06:34:47 + + +waiting on router queue for slot.... +06:34:48 ============================================================================ +06:34:48 Slot Id : <222> +06:34:48 Transaction Type : REQUEST +06:34:48 Received From : +06:34:48 ============================================================================ +06:34:48 FNo. Len. Field Value +06:34:48 ============================================================================ +06:34:48 [ 1] [ 4] [0800] +06:34:48 [ 7] [ 10] [0319113356] +06:34:48 [ 11] [ 6] [154921] +06:34:48 [ 70] [ 3] [301] +06:34:48 ============================================================================ +06:34:48 + + +waiting on router queue for slot.... +06:34:48 Sending to : +06:34:48 ============================================================================ +06:34:48 ============================================================================ +06:34:48 Slot Id : <222> +06:34:48 Transaction Type : RESPONSE +06:34:48 Received From : +06:34:48 ============================================================================ +06:34:48 FNo. Len. Field Value +06:34:48 ============================================================================ +06:34:48 [ 1] [ 4] [0810] +06:34:48 [ 7] [ 10] [0319113356] +06:34:48 [ 11] [ 6] [154921] +06:34:48 [ 39] [ 2] [00] +06:34:48 [ 70] [ 3] [301] +06:34:48 ============================================================================ +06:34:48 Calculate Source COMM Id = 2 +06:34:48 ============================================================================ +06:34:48 + + +waiting on router queue for slot.... +06:34:54 ============================================================================ +06:34:54 Slot Id : <225> +06:34:54 Transaction Type : REQUEST +06:34:54 Received From : +06:34:54 ============================================================================ +06:34:54 FNo. Len. Field Value +06:34:54 ============================================================================ +06:34:54 [ 1] [ 4] [0800] +06:34:54 [ 7] [ 10] [0319234242] +06:34:54 [ 11] [ 6] [021883] +06:34:54 [ 37] [ 12] [57906021883] +06:34:54 [ 70] [ 3] [301] +06:34:54 ============================================================================ +06:34:54 + + +waiting on router queue for slot.... +06:34:54 Sending to : +06:34:54 ============================================================================ +06:34:54 ============================================================================ +06:34:54 Slot Id : <225> +06:34:54 Transaction Type : RESPONSE +06:34:54 Received From : +06:34:54 ============================================================================ +06:34:54 FNo. Len. Field Value +06:34:54 ============================================================================ +06:34:54 [ 1] [ 4] [0810] +06:34:54 [ 7] [ 10] [0319234242] +06:34:54 [ 11] [ 6] [021883] +06:34:54 [ 37] [ 12] [579060218830] +06:34:54 [ 39] [ 2] [00] +06:34:54 [ 70] [ 3] [810] +06:34:54 ============================================================================ +06:34:54 Calculate Source COMM Id = 1 +06:34:54 ============================================================================ +06:34:54 + + +waiting on router queue for slot.... +06:34:57 ============================================================================ +06:34:57 Slot Id : <232> +06:34:57 Transaction Type : REQUEST +06:34:57 Received From : +06:34:57 ============================================================================ +06:34:57 FNo. Len. Field Value +06:34:57 ============================================================================ +06:34:57 [ 1] [ 4] [0200] +06:34:57 [ 2] [ 16] [6213541000068042] +06:34:57 [ 3] [ 6] [010000] +06:34:57 [ 4] [ 12] [000100000000] +06:34:57 [ 7] [ 10] [0319233405] +06:34:57 [ 11] [ 6] [266633] +06:34:57 [ 12] [ 6] [063405] +06:34:57 [ 13] [ 4] [0320] +06:34:57 [ 14] [ 4] [4912] +06:34:57 [ 15] [ 4] [0320] +06:34:57 [ 18] [ 4] [6011] +06:34:57 [ 19] [ 3] [418] +06:34:57 [ 22] [ 3] [021] +06:34:57 [ 25] [ 2] [01] +06:34:57 [ 28] [ 9] [D00002000] +06:34:57 [ 32] [ 6] [180893] +06:34:57 [ 35] [ 32] [6213541000068042=491212016804209] +06:34:57 [ 37] [ 12] [507923266633] +06:34:57 [ 41] [ 8] [0108THNG] +06:34:57 [ 42] [ 15] [999999 ] +06:34:57 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +06:34:57 [ 49] [ 3] [418] +06:34:57 [ 52] [ 16] [ABACBEEA2362BF73] +06:34:57 ============================================================================ +06:34:57 + + +waiting on router queue for slot.... +06:34:57 Sending to : +06:34:57 ============================================================================ +06:34:57 Sending to : +06:34:57 ============================================================================ +06:34:58 ============================================================================ +06:34:58 Slot Id : <232> +06:34:58 Transaction Type : REQUEST +06:34:58 Received From : +06:34:58 ============================================================================ +06:34:58 FNo. Len. Field Value +06:34:58 ============================================================================ +06:34:58 [ 1] [ 4] [0200] +06:34:58 [ 2] [ 16] [6213541000068042] +06:34:58 [ 3] [ 6] [010000] +06:34:58 [ 4] [ 12] [000100000000] +06:34:58 [ 7] [ 10] [0319233405] +06:34:58 [ 11] [ 6] [266633] +06:34:58 [ 12] [ 6] [063405] +06:34:58 [ 13] [ 4] [0320] +06:34:58 [ 14] [ 4] [4912] +06:34:58 [ 15] [ 4] [0320] +06:34:58 [ 18] [ 4] [6011] +06:34:58 [ 19] [ 3] [418] +06:34:58 [ 22] [ 3] [021] +06:34:58 [ 25] [ 2] [01] +06:34:58 [ 28] [ 9] [D00002000] +06:34:58 [ 32] [ 6] [180893] +06:34:58 [ 35] [ 32] [6213541000068042=491212016804209] +06:34:58 [ 37] [ 12] [507923266633] +06:34:58 [ 41] [ 8] [0108THNG] +06:34:58 [ 42] [ 15] [999999 ] +06:34:58 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +06:34:58 [ 49] [ 3] [418] +06:34:58 [ 52] [ 16] [ABACBEEA2362BF73] +06:34:58 ============================================================================ +06:34:58 + + +waiting on router queue for slot.... +06:34:58 Sending to : +06:34:58 ============================================================================ +06:34:58 ============================================================================ +06:34:58 Slot Id : <232> +06:34:58 Transaction Type : REQUEST +06:34:58 Received From : +06:34:58 ============================================================================ +06:34:58 FNo. Len. Field Value +06:34:58 ============================================================================ +06:34:58 [ 1] [ 4] [0200] +06:34:58 [ 2] [ 16] [6213541000068042] +06:34:58 [ 3] [ 6] [010000] +06:34:58 [ 4] [ 12] [000100000000] +06:34:58 [ 7] [ 10] [0319233405] +06:34:58 [ 11] [ 6] [266633] +06:34:58 [ 12] [ 6] [063405] +06:34:58 [ 13] [ 4] [0320] +06:34:58 [ 14] [ 4] [4912] +06:34:58 [ 15] [ 4] [0320] +06:34:58 [ 18] [ 4] [6011] +06:34:58 [ 19] [ 3] [418] +06:34:58 [ 22] [ 3] [021] +06:34:58 [ 25] [ 2] [01] +06:34:58 [ 28] [ 9] [D00002000] +06:34:58 [ 32] [ 6] [180893] +06:34:58 [ 35] [ 32] [6213541000068042=491212016804209] +06:34:58 [ 37] [ 12] [507923266633] +06:34:58 [ 41] [ 8] [0108THNG] +06:34:58 [ 42] [ 15] [999999 ] +06:34:58 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +06:34:58 [ 49] [ 3] [418] +06:34:58 [ 52] [ 16] [FC40F4F65B424576] +06:34:58 ============================================================================ +06:34:58 + + +waiting on router queue for slot.... +06:34:58 Sending to : <0> +06:34:58 ============================================================================ +06:34:58 ============================================================================ +06:34:58 Slot Id : <205> +06:34:58 Transaction Type : REQUEST +06:34:58 Received From : +06:34:58 ============================================================================ +06:34:58 FNo. Len. Field Value +06:34:58 ============================================================================ +06:34:58 [ 1] [ 4] [0800] +06:34:58 [ 7] [ 10] [0319113407] +06:34:58 [ 11] [ 6] [154922] +06:34:58 [ 70] [ 3] [301] +06:34:58 ============================================================================ +06:34:58 + + +waiting on router queue for slot.... +06:34:58 Sending to : +06:34:58 ============================================================================ +06:34:58 ============================================================================ +06:34:58 Slot Id : <205> +06:34:58 Transaction Type : RESPONSE +06:34:58 Received From : +06:34:58 ============================================================================ +06:34:58 FNo. Len. Field Value +06:34:58 ============================================================================ +06:34:58 [ 1] [ 4] [0810] +06:34:58 [ 7] [ 10] [0319113407] +06:34:58 [ 11] [ 6] [154922] +06:34:58 [ 39] [ 2] [00] +06:34:58 [ 70] [ 3] [301] +06:34:58 ============================================================================ +06:34:58 Calculate Source COMM Id = 2 +06:34:58 ============================================================================ +06:34:58 + + +waiting on router queue for slot.... +06:34:58 ============================================================================ +06:34:58 Slot Id : <232> +06:34:58 Transaction Type : RESPONSE +06:34:58 Received From : +06:34:58 ============================================================================ +06:34:58 FNo. Len. Field Value +06:34:58 ============================================================================ +06:34:58 [ 1] [ 4] [0210] +06:34:58 [ 2] [ 16] [6213541000068042] +06:34:58 [ 3] [ 6] [010000] +06:34:58 [ 4] [ 12] [000100000000] +06:34:58 [ 7] [ 10] [0319233405] +06:34:58 [ 11] [ 6] [266633] +06:34:58 [ 12] [ 6] [063405] +06:34:58 [ 13] [ 4] [0320] +06:34:58 [ 15] [ 4] [0320] +06:34:58 [ 18] [ 4] [6011] +06:34:58 [ 19] [ 3] [418] +06:34:58 [ 32] [ 6] [180893] +06:34:58 [ 35] [ 32] [6213541000068042=491212016804209] +06:34:58 [ 37] [ 12] [507923266633] +06:34:58 [ 38] [ 6] [541749] +06:34:58 [ 39] [ 2] [00] +06:34:58 [ 41] [ 8] [0108THNG] +06:34:58 [ 49] [ 3] [418] +06:34:58 [ 54] [ 40] [0001418C0000674428100002418C000067442810] +06:34:58 ============================================================================ +06:34:58 Sending to : +06:34:58 ============================================================================ +06:34:58 + + +waiting on router queue for slot.... +06:35:00 ============================================================================ +06:35:00 Slot Id : <232> +06:35:00 Transaction Type : RESPONSE +06:35:00 Received From : +06:35:00 ============================================================================ +06:35:00 FNo. Len. Field Value +06:35:00 ============================================================================ +06:35:00 [ 1] [ 4] [0210] +06:35:00 [ 2] [ 16] [6213541000068042] +06:35:00 [ 3] [ 6] [010000] +06:35:00 [ 4] [ 12] [000100000000] +06:35:00 [ 7] [ 10] [0319233405] +06:35:00 [ 11] [ 6] [266633] +06:35:00 [ 12] [ 6] [063405] +06:35:00 [ 13] [ 4] [0320] +06:35:00 [ 15] [ 4] [0320] +06:35:00 [ 18] [ 4] [6011] +06:35:00 [ 19] [ 3] [418] +06:35:00 [ 32] [ 6] [180893] +06:35:00 [ 35] [ 32] [6213541000068042=491212016804209] +06:35:00 [ 37] [ 12] [507923266633] +06:35:00 [ 38] [ 6] [541749] +06:35:00 [ 39] [ 2] [00] +06:35:00 [ 41] [ 8] [0108THNG] +06:35:00 [ 49] [ 3] [418] +06:35:00 [ 54] [ 40] [0001418C0000674428100002418C000067442810] +06:35:00 ============================================================================ +06:35:00 Calculate Source COMM Id = 2 +06:35:00 ============================================================================ +06:35:00 + + +waiting on router queue for slot.... +06:35:02 ============================================================================ +06:35:02 Slot Id : <230> +06:35:02 Transaction Type : REQUEST +06:35:02 Received From : +06:35:02 ============================================================================ +06:35:02 FNo. Len. Field Value +06:35:02 ============================================================================ +06:35:02 [ 1] [ 4] [0200] +06:35:02 [ 2] [ 16] [6688990103498406] +06:35:02 [ 3] [ 6] [013000] +06:35:02 [ 4] [ 12] [000050000000] +06:35:02 [ 7] [ 10] [0320063458] +06:35:02 [ 11] [ 6] [664238] +06:35:02 [ 12] [ 6] [063458] +06:35:02 [ 13] [ 4] [0320] +06:35:02 [ 15] [ 4] [0320] +06:35:02 [ 18] [ 4] [6011] +06:35:02 [ 22] [ 3] [900] +06:35:02 [ 25] [ 2] [02] +06:35:02 [ 28] [ 9] [D00002000] +06:35:02 [ 32] [ 6] [621354] +06:35:02 [ 35] [ 37] [6688990103498406=43011231840673400000] +06:35:02 [ 37] [ 12] [507903499390] +06:35:02 [ 41] [ 8] [06002200] +06:35:02 [ 42] [ 15] [NATIVE ] +06:35:02 [ 43] [ 40] [Beng Market Beng LAO] +06:35:02 [ 49] [ 3] [418] +06:35:02 [ 52] [ 16] [136074968514445D] +06:35:02 ============================================================================ +06:35:02 + + +waiting on router queue for slot.... +06:35:02 Sending to : +06:35:02 ============================================================================ +06:35:02 Sending to : +06:35:02 ============================================================================ +06:35:02 ============================================================================ +06:35:02 Slot Id : <230> +06:35:02 Transaction Type : REQUEST +06:35:02 Received From : +06:35:02 ============================================================================ +06:35:02 FNo. Len. Field Value +06:35:02 ============================================================================ +06:35:02 [ 1] [ 4] [0200] +06:35:02 [ 2] [ 16] [6688990103498406] +06:35:02 [ 3] [ 6] [013000] +06:35:02 [ 4] [ 12] [000050000000] +06:35:02 [ 7] [ 10] [0320063458] +06:35:02 [ 11] [ 6] [664238] +06:35:02 [ 12] [ 6] [063458] +06:35:02 [ 13] [ 4] [0320] +06:35:02 [ 15] [ 4] [0320] +06:35:02 [ 18] [ 4] [6011] +06:35:02 [ 22] [ 3] [900] +06:35:02 [ 25] [ 2] [02] +06:35:02 [ 28] [ 9] [D00002000] +06:35:02 [ 32] [ 6] [621354] +06:35:02 [ 35] [ 37] [6688990103498406=43011231840673400000] +06:35:02 [ 37] [ 12] [507903499390] +06:35:02 [ 41] [ 8] [06002200] +06:35:02 [ 42] [ 15] [NATIVE ] +06:35:02 [ 43] [ 40] [Beng Market Beng LAO] +06:35:02 [ 49] [ 3] [418] +06:35:02 [ 52] [ 16] [136074968514445D] +06:35:02 ============================================================================ +06:35:02 + + +waiting on router queue for slot.... +06:35:02 Sending to : +06:35:02 ============================================================================ +06:35:02 ============================================================================ +06:35:02 Slot Id : <230> +06:35:02 Transaction Type : REQUEST +06:35:02 Received From : +06:35:02 ============================================================================ +06:35:02 FNo. Len. Field Value +06:35:02 ============================================================================ +06:35:02 [ 1] [ 4] [0200] +06:35:02 [ 2] [ 16] [6688990103498406] +06:35:02 [ 3] [ 6] [013000] +06:35:02 [ 4] [ 12] [000050000000] +06:35:02 [ 7] [ 10] [0320063458] +06:35:02 [ 11] [ 6] [664238] +06:35:02 [ 12] [ 6] [063458] +06:35:02 [ 13] [ 4] [0320] +06:35:02 [ 15] [ 4] [0320] +06:35:02 [ 18] [ 4] [6011] +06:35:02 [ 22] [ 3] [900] +06:35:02 [ 25] [ 2] [02] +06:35:02 [ 28] [ 9] [D00002000] +06:35:02 [ 32] [ 6] [621354] +06:35:02 [ 35] [ 37] [6688990103498406=43011231840673400000] +06:35:02 [ 37] [ 12] [507903499390] +06:35:02 [ 41] [ 8] [06002200] +06:35:02 [ 42] [ 15] [NATIVE ] +06:35:02 [ 43] [ 40] [Beng Market Beng LAO] +06:35:02 [ 49] [ 3] [418] +06:35:02 [ 52] [ 16] [64664D90A185727C] +06:35:02 ============================================================================ +06:35:02 + + +waiting on router queue for slot.... +06:35:02 Sending to : <4> +06:35:02 ============================================================================ +06:35:03 ============================================================================ +06:35:03 Slot Id : <230> +06:35:03 Transaction Type : RESPONSE +06:35:03 Received From : +06:35:03 ============================================================================ +06:35:03 FNo. Len. Field Value +06:35:03 ============================================================================ +06:35:03 [ 1] [ 4] [0210] +06:35:03 [ 2] [ 16] [6688990103498406] +06:35:03 [ 3] [ 6] [013000] +06:35:03 [ 4] [ 12] [000050000000] +06:35:03 [ 11] [ 6] [664238] +06:35:03 [ 12] [ 6] [063458] +06:35:03 [ 15] [ 4] [0320] +06:35:03 [ 18] [ 4] [6011] +06:35:03 [ 32] [ 6] [621354] +06:35:03 [ 35] [ 37] [6688990103498406=43011231840673400000] +06:35:03 [ 37] [ 12] [507903499390] +06:35:03 [ 38] [ 6] [387525] +06:35:03 [ 39] [ 2] [00] +06:35:03 [ 41] [ 8] [06002200] +06:35:03 [ 49] [ 3] [418] +06:35:03 [ 54] [ 20] [3002418C000139705842] +06:35:03 ============================================================================ +06:35:03 Sending to : +06:35:03 ============================================================================ +06:35:03 + + +waiting on router queue for slot.... +06:35:05 ============================================================================ +06:35:05 Slot Id : <230> +06:35:05 Transaction Type : RESPONSE +06:35:05 Received From : +06:35:05 ============================================================================ +06:35:05 FNo. Len. Field Value +06:35:05 ============================================================================ +06:35:05 [ 1] [ 4] [0210] +06:35:05 [ 2] [ 16] [6688990103498406] +06:35:05 [ 3] [ 6] [013000] +06:35:05 [ 4] [ 12] [000050000000] +06:35:05 [ 11] [ 6] [664238] +06:35:05 [ 12] [ 6] [063458] +06:35:05 [ 15] [ 4] [0320] +06:35:05 [ 18] [ 4] [6011] +06:35:05 [ 32] [ 6] [621354] +06:35:05 [ 35] [ 37] [6688990103498406=43011231840673400000] +06:35:05 [ 37] [ 12] [507903499390] +06:35:05 [ 38] [ 6] [387525] +06:35:05 [ 39] [ 2] [00] +06:35:05 [ 41] [ 8] [06002200] +06:35:05 [ 49] [ 3] [418] +06:35:05 [ 54] [ 20] [3002418C000139705842] +06:35:05 ============================================================================ +06:35:05 Calculate Source COMM Id = 0 +06:35:05 ============================================================================ +06:35:05 + + +waiting on router queue for slot.... +06:35:08 ============================================================================ +06:35:08 Slot Id : <188> +06:35:08 Transaction Type : REQUEST +06:35:08 Received From : +06:35:08 ============================================================================ +06:35:08 FNo. Len. Field Value +06:35:08 ============================================================================ +06:35:08 [ 1] [ 4] [0200] +06:35:08 [ 2] [ 16] [6213544001671442] +06:35:08 [ 3] [ 6] [011000] +06:35:08 [ 4] [ 12] [000008000000] +06:35:08 [ 7] [ 10] [0320063530] +06:35:08 [ 11] [ 6] [200600] +06:35:08 [ 12] [ 6] [063557] +06:35:08 [ 13] [ 4] [0320] +06:35:08 [ 14] [ 4] [4912] +06:35:08 [ 15] [ 4] [0320] +06:35:08 [ 18] [ 4] [6011] +06:35:08 [ 19] [ 3] [418] +06:35:08 [ 22] [ 3] [021] +06:35:08 [ 25] [ 2] [01] +06:35:08 [ 28] [ 9] [D00002000] +06:35:08 [ 32] [ 6] [198901] +06:35:08 [ 35] [ 32] [6213544001671442=491212017144234] +06:35:08 [ 37] [ 12] [507906200600] +06:35:08 [ 41] [ 8] [01529009] +06:35:08 [ 42] [ 15] [000000041529009] +06:35:08 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:35:08 [ 49] [ 3] [418] +06:35:08 [ 52] [ 16] [19CF912F56C669E3] +06:35:08 ============================================================================ +06:35:08 + + +waiting on router queue for slot.... +06:35:08 Sending to : +06:35:08 ============================================================================ +06:35:08 Sending to : +06:35:08 ============================================================================ +06:35:08 ============================================================================ +06:35:08 Slot Id : <188> +06:35:08 Transaction Type : REQUEST +06:35:08 Received From : +06:35:08 ============================================================================ +06:35:08 FNo. Len. Field Value +06:35:08 ============================================================================ +06:35:08 [ 1] [ 4] [0200] +06:35:08 [ 2] [ 16] [6213544001671442] +06:35:08 [ 3] [ 6] [011000] +06:35:08 [ 4] [ 12] [000008000000] +06:35:08 [ 7] [ 10] [0320063530] +06:35:08 [ 11] [ 6] [200600] +06:35:08 [ 12] [ 6] [063557] +06:35:08 [ 13] [ 4] [0320] +06:35:08 [ 14] [ 4] [4912] +06:35:08 [ 15] [ 4] [0320] +06:35:08 [ 18] [ 4] [6011] +06:35:08 [ 19] [ 3] [418] +06:35:08 [ 22] [ 3] [021] +06:35:08 [ 25] [ 2] [01] +06:35:08 [ 28] [ 9] [D00002000] +06:35:08 [ 32] [ 6] [198901] +06:35:08 [ 35] [ 32] [6213544001671442=491212017144234] +06:35:08 [ 37] [ 12] [507906200600] +06:35:08 [ 41] [ 8] [01529009] +06:35:08 [ 42] [ 15] [000000041529009] +06:35:08 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:35:08 [ 49] [ 3] [418] +06:35:08 [ 52] [ 16] [19CF912F56C669E3] +06:35:08 ============================================================================ +06:35:08 + + +waiting on router queue for slot.... +06:35:08 Sending to : +06:35:08 ============================================================================ +06:35:08 ============================================================================ +06:35:08 Slot Id : <188> +06:35:08 Transaction Type : REQUEST +06:35:08 Received From : +06:35:08 ============================================================================ +06:35:08 FNo. Len. Field Value +06:35:08 ============================================================================ +06:35:08 [ 1] [ 4] [0200] +06:35:08 [ 2] [ 16] [6213544001671442] +06:35:08 [ 3] [ 6] [011000] +06:35:08 [ 4] [ 12] [000008000000] +06:35:08 [ 7] [ 10] [0320063530] +06:35:08 [ 11] [ 6] [200600] +06:35:08 [ 12] [ 6] [063557] +06:35:08 [ 13] [ 4] [0320] +06:35:08 [ 14] [ 4] [4912] +06:35:08 [ 15] [ 4] [0320] +06:35:08 [ 18] [ 4] [6011] +06:35:08 [ 19] [ 3] [418] +06:35:08 [ 22] [ 3] [021] +06:35:08 [ 25] [ 2] [01] +06:35:08 [ 28] [ 9] [D00002000] +06:35:08 [ 32] [ 6] [198901] +06:35:08 [ 35] [ 32] [6213544001671442=491212017144234] +06:35:08 [ 37] [ 12] [507906200600] +06:35:08 [ 41] [ 8] [01529009] +06:35:08 [ 42] [ 15] [000000041529009] +06:35:08 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:35:08 [ 49] [ 3] [418] +06:35:08 [ 52] [ 16] [F25C6FDC3841A52B] +06:35:08 ============================================================================ +06:35:08 + + +waiting on router queue for slot.... +06:35:08 Sending to : <0> +06:35:08 ============================================================================ +06:35:09 ============================================================================ +06:35:09 Slot Id : <188> +06:35:09 Transaction Type : RESPONSE +06:35:09 Received From : +06:35:09 ============================================================================ +06:35:09 FNo. Len. Field Value +06:35:09 ============================================================================ +06:35:09 [ 1] [ 4] [0210] +06:35:09 [ 2] [ 16] [6213544001671442] +06:35:09 [ 3] [ 6] [011000] +06:35:09 [ 4] [ 12] [000008000000] +06:35:09 [ 7] [ 10] [0320063530] +06:35:09 [ 11] [ 6] [200600] +06:35:09 [ 12] [ 6] [063557] +06:35:09 [ 13] [ 4] [0320] +06:35:09 [ 15] [ 4] [0320] +06:35:09 [ 18] [ 4] [6011] +06:35:09 [ 19] [ 3] [418] +06:35:09 [ 32] [ 6] [198901] +06:35:09 [ 35] [ 32] [6213544001671442=491212017144234] +06:35:09 [ 37] [ 12] [507906200600] +06:35:09 [ 38] [ 6] [200600] +06:35:09 [ 39] [ 2] [51] +06:35:09 [ 41] [ 8] [01529009] +06:35:09 [ 49] [ 3] [418] +06:35:09 [ 54] [ 40] [1001418C0000090737491002418C000009073749] +06:35:09 ============================================================================ +06:35:09 Sending to : +06:35:09 ============================================================================ +06:35:09 + + +waiting on router queue for slot.... +06:35:10 ============================================================================ +06:35:10 Slot Id : <188> +06:35:10 Transaction Type : RESPONSE +06:35:10 Received From : +06:35:10 ============================================================================ +06:35:10 FNo. Len. Field Value +06:35:10 ============================================================================ +06:35:10 [ 1] [ 4] [0210] +06:35:10 [ 2] [ 16] [6213544001671442] +06:35:10 [ 3] [ 6] [011000] +06:35:10 [ 4] [ 12] [000008000000] +06:35:10 [ 7] [ 10] [0320063530] +06:35:10 [ 11] [ 6] [200600] +06:35:10 [ 12] [ 6] [063557] +06:35:10 [ 13] [ 4] [0320] +06:35:10 [ 15] [ 4] [0320] +06:35:10 [ 18] [ 4] [6011] +06:35:10 [ 19] [ 3] [418] +06:35:10 [ 32] [ 6] [198901] +06:35:10 [ 35] [ 32] [6213544001671442=491212017144234] +06:35:10 [ 37] [ 12] [507906200600] +06:35:10 [ 38] [ 6] [200600] +06:35:10 [ 39] [ 2] [51] +06:35:10 [ 41] [ 8] [01529009] +06:35:10 [ 49] [ 3] [418] +06:35:10 [ 54] [ 40] [1001418C0000090737491002418C000009073749] +06:35:10 ============================================================================ +06:35:10 Calculate Source COMM Id = 5 +06:35:10 ============================================================================ +06:35:10 + + +waiting on router queue for slot.... +06:35:15 ============================================================================ +06:35:15 Slot Id : <173> +06:35:15 Transaction Type : REQUEST +06:35:15 Received From : +06:35:15 ============================================================================ +06:35:15 FNo. Len. Field Value +06:35:15 ============================================================================ +06:35:15 [ 1] [ 4] [0800] +06:35:15 [ 7] [ 10] [0319113423] +06:35:15 [ 11] [ 6] [154923] +06:35:15 [ 70] [ 3] [301] +06:35:15 ============================================================================ +06:35:15 + + +waiting on router queue for slot.... +06:35:15 Sending to : +06:35:15 ============================================================================ +06:35:15 ============================================================================ +06:35:15 Slot Id : <173> +06:35:15 Transaction Type : RESPONSE +06:35:15 Received From : +06:35:15 ============================================================================ +06:35:15 FNo. Len. Field Value +06:35:15 ============================================================================ +06:35:15 [ 1] [ 4] [0810] +06:35:15 [ 7] [ 10] [0319113423] +06:35:15 [ 11] [ 6] [154923] +06:35:15 [ 39] [ 2] [00] +06:35:15 [ 70] [ 3] [301] +06:35:15 ============================================================================ +06:35:15 Calculate Source COMM Id = 2 +06:35:15 ============================================================================ +06:35:15 + + +waiting on router queue for slot.... +06:35:20 ============================================================================ +06:35:20 Slot Id : <229> +06:35:20 Transaction Type : REQUEST +06:35:20 Received From : +06:35:20 ============================================================================ +06:35:20 FNo. Len. Field Value +06:35:20 ============================================================================ +06:35:20 [ 1] [ 4] [0800] +06:35:20 [ 2] [ 5] [02531] +06:35:20 [ 3] [ 6] [579068] +06:35:20 [ 7] [ 10] [0319233520] +06:35:20 [ 11] [ 6] [806794] +06:35:20 [ 15] [ 10] [0319233520] +06:35:20 [ 37] [ 11] [57906806794] +06:35:20 [ 70] [ 3] [001] +06:35:20 ============================================================================ +06:35:20 + + +waiting on router queue for slot.... +06:35:20 ============================================================================ +06:35:20 Slot Id : <229> +06:35:20 Transaction Type : RESPONSE +06:35:20 Received From : +06:35:20 ============================================================================ +06:35:20 FNo. Len. Field Value +06:35:20 ============================================================================ +06:35:20 [ 1] [ 4] [0810] +06:35:20 [ 7] [ 10] [0319233520] +06:35:20 [ 11] [ 6] [806794] +06:35:20 [ 15] [ 4] [0319] +06:35:20 [ 37] [ 12] [57906806794] +06:35:20 [ 39] [ 2] [00] +06:35:20 [ 70] [ 3] [001] +06:35:20 ============================================================================ +06:35:20 Sending to : +06:35:20 ============================================================================ +06:35:20 + + +waiting on router queue for slot.... +06:35:25 ============================================================================ +06:35:25 Slot Id : <223> +06:35:25 Transaction Type : REQUEST +06:35:25 Received From : +06:35:25 ============================================================================ +06:35:25 FNo. Len. Field Value +06:35:25 ============================================================================ +06:35:25 [ 1] [ 4] [0800] +06:35:25 [ 7] [ 10] [0320134715] +06:35:25 [ 11] [ 6] [064715] +06:35:25 [ 37] [ 12] [57906064715] +06:35:25 [ 70] [ 3] [301] +06:35:25 ============================================================================ +06:35:25 + + +waiting on router queue for slot.... +06:35:25 Sending to : +06:35:25 ============================================================================ +06:35:25 ============================================================================ +06:35:25 Slot Id : <223> +06:35:25 Transaction Type : RESPONSE +06:35:25 Received From : +06:35:25 ============================================================================ +06:35:25 FNo. Len. Field Value +06:35:25 ============================================================================ +06:35:25 [ 1] [ 4] [0810] +06:35:25 [ 7] [ 10] [0320134715] +06:35:25 [ 11] [ 6] [064715] +06:35:25 [ 37] [ 12] [579060647150] +06:35:25 [ 39] [ 2] [00] +06:35:25 [ 70] [ 3] [810] +06:35:25 ============================================================================ +06:35:25 Calculate Source COMM Id = 6 +06:35:25 ============================================================================ +06:35:25 + + +waiting on router queue for slot.... +06:35:25 ============================================================================ +06:35:25 Slot Id : <177> +06:35:25 Transaction Type : REQUEST +06:35:25 Received From : +06:35:25 ============================================================================ +06:35:25 FNo. Len. Field Value +06:35:25 ============================================================================ +06:35:25 [ 1] [ 4] [0800] +06:35:25 [ 7] [ 10] [0319113434] +06:35:25 [ 11] [ 6] [154924] +06:35:25 [ 70] [ 3] [301] +06:35:25 ============================================================================ +06:35:25 + + +waiting on router queue for slot.... +06:35:25 Sending to : +06:35:25 ============================================================================ +06:35:25 ============================================================================ +06:35:25 Slot Id : <177> +06:35:25 Transaction Type : RESPONSE +06:35:25 Received From : +06:35:25 ============================================================================ +06:35:25 FNo. Len. Field Value +06:35:25 ============================================================================ +06:35:25 [ 1] [ 4] [0810] +06:35:25 [ 7] [ 10] [0319113434] +06:35:25 [ 11] [ 6] [154924] +06:35:25 [ 39] [ 2] [00] +06:35:25 [ 70] [ 3] [301] +06:35:25 ============================================================================ +06:35:25 Calculate Source COMM Id = 2 +06:35:25 ============================================================================ +06:35:25 + + +waiting on router queue for slot.... +06:35:29 ============================================================================ +06:35:29 Slot Id : <215> +06:35:29 Transaction Type : REQUEST +06:35:29 Received From : +06:35:29 ============================================================================ +06:35:29 FNo. Len. Field Value +06:35:29 ============================================================================ +06:35:29 [ 1] [ 4] [0200] +06:35:29 [ 2] [ 16] [6213544001671442] +06:35:29 [ 3] [ 6] [011000] +06:35:29 [ 4] [ 12] [000008000000] +06:35:29 [ 7] [ 10] [0320063551] +06:35:29 [ 11] [ 6] [200606] +06:35:29 [ 12] [ 6] [063618] +06:35:29 [ 13] [ 4] [0320] +06:35:29 [ 14] [ 4] [4912] +06:35:29 [ 15] [ 4] [0320] +06:35:29 [ 18] [ 4] [6011] +06:35:29 [ 19] [ 3] [418] +06:35:29 [ 22] [ 3] [021] +06:35:29 [ 25] [ 2] [01] +06:35:29 [ 28] [ 9] [D00002000] +06:35:29 [ 32] [ 6] [198901] +06:35:29 [ 35] [ 32] [6213544001671442=491212017144234] +06:35:29 [ 37] [ 12] [507906200606] +06:35:29 [ 41] [ 8] [01529009] +06:35:29 [ 42] [ 15] [000000041529009] +06:35:29 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:35:29 [ 49] [ 3] [418] +06:35:29 [ 52] [ 16] [19CF912F56C669E3] +06:35:29 ============================================================================ +06:35:29 + + +waiting on router queue for slot.... +06:35:29 Sending to : +06:35:29 ============================================================================ +06:35:29 Sending to : +06:35:29 ============================================================================ +06:35:30 ============================================================================ +06:35:30 Slot Id : <215> +06:35:30 Transaction Type : REQUEST +06:35:30 Received From : +06:35:30 ============================================================================ +06:35:30 FNo. Len. Field Value +06:35:30 ============================================================================ +06:35:30 [ 1] [ 4] [0200] +06:35:30 [ 2] [ 16] [6213544001671442] +06:35:30 [ 3] [ 6] [011000] +06:35:30 [ 4] [ 12] [000008000000] +06:35:30 [ 7] [ 10] [0320063551] +06:35:30 [ 11] [ 6] [200606] +06:35:30 [ 12] [ 6] [063618] +06:35:30 [ 13] [ 4] [0320] +06:35:30 [ 14] [ 4] [4912] +06:35:30 [ 15] [ 4] [0320] +06:35:30 [ 18] [ 4] [6011] +06:35:30 [ 19] [ 3] [418] +06:35:30 [ 22] [ 3] [021] +06:35:30 [ 25] [ 2] [01] +06:35:30 [ 28] [ 9] [D00002000] +06:35:30 [ 32] [ 6] [198901] +06:35:30 [ 35] [ 32] [6213544001671442=491212017144234] +06:35:30 [ 37] [ 12] [507906200606] +06:35:30 [ 41] [ 8] [01529009] +06:35:30 [ 42] [ 15] [000000041529009] +06:35:30 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:35:30 [ 49] [ 3] [418] +06:35:30 [ 52] [ 16] [19CF912F56C669E3] +06:35:30 ============================================================================ +06:35:30 + + +waiting on router queue for slot.... +06:35:30 Sending to : +06:35:30 ============================================================================ +06:35:30 ============================================================================ +06:35:30 Slot Id : <215> +06:35:30 Transaction Type : REQUEST +06:35:30 Received From : +06:35:30 ============================================================================ +06:35:30 FNo. Len. Field Value +06:35:30 ============================================================================ +06:35:30 [ 1] [ 4] [0200] +06:35:30 [ 2] [ 16] [6213544001671442] +06:35:30 [ 3] [ 6] [011000] +06:35:30 [ 4] [ 12] [000008000000] +06:35:30 [ 7] [ 10] [0320063551] +06:35:30 [ 11] [ 6] [200606] +06:35:30 [ 12] [ 6] [063618] +06:35:30 [ 13] [ 4] [0320] +06:35:30 [ 14] [ 4] [4912] +06:35:30 [ 15] [ 4] [0320] +06:35:30 [ 18] [ 4] [6011] +06:35:30 [ 19] [ 3] [418] +06:35:30 [ 22] [ 3] [021] +06:35:30 [ 25] [ 2] [01] +06:35:30 [ 28] [ 9] [D00002000] +06:35:30 [ 32] [ 6] [198901] +06:35:30 [ 35] [ 32] [6213544001671442=491212017144234] +06:35:30 [ 37] [ 12] [507906200606] +06:35:30 [ 41] [ 8] [01529009] +06:35:30 [ 42] [ 15] [000000041529009] +06:35:30 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +06:35:30 [ 49] [ 3] [418] +06:35:30 [ 52] [ 16] [F25C6FDC3841A52B] +06:35:30 ============================================================================ +06:35:30 + + +waiting on router queue for slot.... +06:35:30 Sending to : <0> +06:35:30 ============================================================================ +06:35:30 ============================================================================ +06:35:30 Slot Id : <215> +06:35:30 Transaction Type : RESPONSE +06:35:30 Received From : +06:35:30 ============================================================================ +06:35:30 FNo. Len. Field Value +06:35:30 ============================================================================ +06:35:30 [ 1] [ 4] [0210] +06:35:30 [ 2] [ 16] [6213544001671442] +06:35:30 [ 3] [ 6] [011000] +06:35:30 [ 4] [ 12] [000008000000] +06:35:30 [ 7] [ 10] [0320063551] +06:35:30 [ 11] [ 6] [200606] +06:35:30 [ 12] [ 6] [063618] +06:35:30 [ 13] [ 4] [0320] +06:35:30 [ 15] [ 4] [0320] +06:35:30 [ 18] [ 4] [6011] +06:35:30 [ 19] [ 3] [418] +06:35:30 [ 32] [ 6] [198901] +06:35:30 [ 35] [ 32] [6213544001671442=491212017144234] +06:35:30 [ 37] [ 12] [507906200606] +06:35:30 [ 38] [ 6] [200606] +06:35:30 [ 39] [ 2] [51] +06:35:30 [ 41] [ 8] [01529009] +06:35:30 [ 49] [ 3] [418] +06:35:30 [ 54] [ 40] [1001418C0000090737491002418C000009073749] +06:35:30 ============================================================================ +06:35:30 Sending to : +06:35:30 ============================================================================ +06:35:30 + + +waiting on router queue for slot.... +06:35:32 ============================================================================ +06:35:32 Slot Id : <215> +06:35:32 Transaction Type : RESPONSE +06:35:32 Received From : +06:35:32 ============================================================================ +06:35:32 FNo. Len. Field Value +06:35:32 ============================================================================ +06:35:32 [ 1] [ 4] [0210] +06:35:32 [ 2] [ 16] [6213544001671442] +06:35:32 [ 3] [ 6] [011000] +06:35:32 [ 4] [ 12] [000008000000] +06:35:32 [ 7] [ 10] [0320063551] +06:35:32 [ 11] [ 6] [200606] +06:35:32 [ 12] [ 6] [063618] +06:35:32 [ 13] [ 4] [0320] +06:35:32 [ 15] [ 4] [0320] +06:35:32 [ 18] [ 4] [6011] +06:35:32 [ 19] [ 3] [418] +06:35:32 [ 32] [ 6] [198901] +06:35:32 [ 35] [ 32] [6213544001671442=491212017144234] +06:35:32 [ 37] [ 12] [507906200606] +06:35:32 [ 38] [ 6] [200606] +06:35:32 [ 39] [ 2] [51] +06:35:32 [ 41] [ 8] [01529009] +06:35:32 [ 49] [ 3] [418] +06:35:32 [ 54] [ 40] [1001418C0000090737491002418C000009073749] +06:35:32 ============================================================================ +06:35:32 Calculate Source COMM Id = 5 +06:35:32 ============================================================================ +06:35:32 + + +waiting on router queue for slot.... +06:35:36 ============================================================================ +06:35:36 Slot Id : <243> +06:35:36 Transaction Type : REQUEST +06:35:36 Received From : +06:35:36 ============================================================================ +06:35:36 FNo. Len. Field Value +06:35:36 ============================================================================ +06:35:36 [ 1] [ 4] [0800] +06:35:36 [ 7] [ 10] [0319113445] +06:35:36 [ 11] [ 6] [154925] +06:35:36 [ 70] [ 3] [301] +06:35:36 ============================================================================ +06:35:36 + + +waiting on router queue for slot.... +06:35:36 Sending to : +06:35:36 ============================================================================ +06:35:36 ============================================================================ +06:35:36 Slot Id : <243> +06:35:36 Transaction Type : RESPONSE +06:35:36 Received From : +06:35:36 ============================================================================ +06:35:36 FNo. Len. Field Value +06:35:36 ============================================================================ +06:35:36 [ 1] [ 4] [0810] +06:35:36 [ 7] [ 10] [0319113445] +06:35:36 [ 11] [ 6] [154925] +06:35:36 [ 39] [ 2] [00] +06:35:36 [ 70] [ 3] [301] +06:35:36 ============================================================================ +06:35:36 Calculate Source COMM Id = 2 +06:35:36 ============================================================================ +06:35:36 + + +waiting on router queue for slot.... +06:35:52 ============================================================================ +06:35:52 Slot Id : <235> +06:35:52 Transaction Type : REQUEST +06:35:52 Received From : +06:35:52 ============================================================================ +06:35:52 FNo. Len. Field Value +06:35:52 ============================================================================ +06:35:52 [ 1] [ 4] [0800] +06:35:52 [ 7] [ 10] [0319113500] +06:35:52 [ 11] [ 6] [154926] +06:35:52 [ 70] [ 3] [301] +06:35:52 ============================================================================ +06:35:52 + + +waiting on router queue for slot.... +06:35:52 Sending to : +06:35:52 ============================================================================ +06:35:52 ============================================================================ +06:35:52 Slot Id : <235> +06:35:52 Transaction Type : RESPONSE +06:35:52 Received From : +06:35:52 ============================================================================ +06:35:52 FNo. Len. Field Value +06:35:52 ============================================================================ +06:35:52 [ 1] [ 4] [0810] +06:35:52 [ 7] [ 10] [0319113500] +06:35:52 [ 11] [ 6] [154926] +06:35:52 [ 39] [ 2] [00] +06:35:52 [ 70] [ 3] [301] +06:35:52 ============================================================================ +06:35:52 Calculate Source COMM Id = 2 +06:35:52 ============================================================================ +06:35:52 + + +waiting on router queue for slot.... +06:36:03 ============================================================================ +06:36:03 Slot Id : <246> +06:36:03 Transaction Type : REQUEST +06:36:03 Received From : +06:36:03 ============================================================================ +06:36:03 FNo. Len. Field Value +06:36:03 ============================================================================ +06:36:03 [ 1] [ 4] [0800] +06:36:03 [ 7] [ 10] [0319113511] +06:36:03 [ 11] [ 6] [154927] +06:36:03 [ 70] [ 3] [301] +06:36:03 ============================================================================ +06:36:03 + + +waiting on router queue for slot.... +06:36:03 Sending to : +06:36:03 ============================================================================ +06:36:03 ============================================================================ +06:36:03 Slot Id : <246> +06:36:03 Transaction Type : RESPONSE +06:36:03 Received From : +06:36:03 ============================================================================ +06:36:03 FNo. Len. Field Value +06:36:03 ============================================================================ +06:36:03 [ 1] [ 4] [0810] +06:36:03 [ 7] [ 10] [0319113511] +06:36:03 [ 11] [ 6] [154927] +06:36:03 [ 39] [ 2] [00] +06:36:03 [ 70] [ 3] [301] +06:36:03 ============================================================================ +06:36:03 Calculate Source COMM Id = 2 +06:36:03 ============================================================================ +06:36:03 + + +waiting on router queue for slot.... +06:36:15 ============================================================================ +06:36:15 Slot Id : <242> +06:36:15 Transaction Type : REQUEST +06:36:15 Received From : +06:36:15 ============================================================================ +06:36:15 FNo. Len. Field Value +06:36:15 ============================================================================ +06:36:15 [ 1] [ 4] [0800] +06:36:15 [ 7] [ 10] [0319113522] +06:36:15 [ 11] [ 6] [154928] +06:36:15 [ 70] [ 3] [301] +06:36:15 ============================================================================ +06:36:15 + + +waiting on router queue for slot.... +06:36:15 Sending to : +06:36:15 ============================================================================ +06:36:15 ============================================================================ +06:36:15 Slot Id : <242> +06:36:15 Transaction Type : RESPONSE +06:36:15 Received From : +06:36:15 ============================================================================ +06:36:15 FNo. Len. Field Value +06:36:15 ============================================================================ +06:36:15 [ 1] [ 4] [0810] +06:36:15 [ 7] [ 10] [0319113522] +06:36:15 [ 11] [ 6] [154928] +06:36:15 [ 39] [ 2] [00] +06:36:15 [ 70] [ 3] [301] +06:36:15 ============================================================================ +06:36:15 Calculate Source COMM Id = 2 +06:36:15 ============================================================================ +06:36:15 + + +waiting on router queue for slot.... +06:36:20 ============================================================================ +06:36:20 Slot Id : <248> +06:36:20 Transaction Type : REQUEST +06:36:20 Received From : +06:36:20 ============================================================================ +06:36:20 FNo. Len. Field Value +06:36:20 ============================================================================ +06:36:20 [ 1] [ 4] [0800] +06:36:20 [ 7] [ 10] [0319233412] +06:36:20 [ 11] [ 6] [050957] +06:36:20 [ 37] [ 12] [57906050957] +06:36:20 [ 70] [ 3] [301] +06:36:20 ============================================================================ +06:36:20 + + +waiting on router queue for slot.... +06:36:20 Sending to : +06:36:20 ============================================================================ +06:36:20 ============================================================================ +06:36:20 Slot Id : <248> +06:36:20 Transaction Type : RESPONSE +06:36:20 Received From : +06:36:20 ============================================================================ +06:36:20 FNo. Len. Field Value +06:36:20 ============================================================================ +06:36:20 [ 1] [ 4] [0810] +06:36:20 [ 7] [ 10] [0319233412] +06:36:20 [ 11] [ 6] [050957] +06:36:20 [ 37] [ 12] [579060509570] +06:36:20 [ 39] [ 2] [00] +06:36:20 [ 70] [ 3] [810] +06:36:20 ============================================================================ +06:36:20 Calculate Source COMM Id = 4 +06:36:20 ============================================================================ +06:36:20 + + +waiting on router queue for slot.... +06:36:22 ============================================================================ +06:36:22 Slot Id : <244> +06:36:22 Transaction Type : REQUEST +06:36:22 Received From : +06:36:22 ============================================================================ +06:36:22 FNo. Len. Field Value +06:36:22 ============================================================================ +06:36:22 [ 1] [ 4] [0800] +06:36:22 [ 2] [ 5] [02531] +06:36:22 [ 3] [ 6] [579068] +06:36:22 [ 7] [ 10] [0319233622] +06:36:22 [ 11] [ 6] [806795] +06:36:22 [ 15] [ 10] [0319233622] +06:36:22 [ 37] [ 11] [57906806795] +06:36:22 [ 70] [ 3] [001] +06:36:22 ============================================================================ +06:36:22 + + +waiting on router queue for slot.... +06:36:22 ============================================================================ +06:36:22 Slot Id : <244> +06:36:22 Transaction Type : RESPONSE +06:36:22 Received From : +06:36:22 ============================================================================ +06:36:22 FNo. Len. Field Value +06:36:22 ============================================================================ +06:36:22 [ 1] [ 4] [0810] +06:36:22 [ 7] [ 10] [0319233622] +06:36:22 [ 11] [ 6] [806795] +06:36:22 [ 15] [ 4] [0319] +06:36:22 [ 37] [ 12] [57906806795] +06:36:22 [ 39] [ 2] [00] +06:36:22 [ 70] [ 3] [001] +06:36:22 ============================================================================ +06:36:22 Sending to : +06:36:22 ============================================================================ +06:36:22 + + +waiting on router queue for slot.... +06:36:29 ============================================================================ +06:36:29 Slot Id : <227> +06:36:29 Transaction Type : REQUEST +06:36:29 Received From : +06:36:29 ============================================================================ +06:36:29 FNo. Len. Field Value +06:36:29 ============================================================================ +06:36:29 [ 1] [ 4] [0800] +06:36:29 [ 7] [ 10] [0319113538] +06:36:29 [ 11] [ 6] [154929] +06:36:29 [ 70] [ 3] [301] +06:36:29 ============================================================================ +06:36:29 + + +waiting on router queue for slot.... +06:36:29 Sending to : +06:36:29 ============================================================================ +06:36:29 ============================================================================ +06:36:29 Slot Id : <227> +06:36:29 Transaction Type : RESPONSE +06:36:29 Received From : +06:36:29 ============================================================================ +06:36:29 FNo. Len. Field Value +06:36:29 ============================================================================ +06:36:29 [ 1] [ 4] [0810] +06:36:29 [ 7] [ 10] [0319113538] +06:36:29 [ 11] [ 6] [154929] +06:36:29 [ 39] [ 2] [00] +06:36:29 [ 70] [ 3] [301] +06:36:29 ============================================================================ +06:36:29 Calculate Source COMM Id = 2 +06:36:29 ============================================================================ +06:36:29 + + +waiting on router queue for slot.... +06:36:30 ============================================================================ +06:36:30 Slot Id : <250> +06:36:30 Transaction Type : REQUEST +06:36:30 Received From : +06:36:30 ============================================================================ +06:36:30 FNo. Len. Field Value +06:36:30 ============================================================================ +06:36:30 [ 1] [ 4] [0800] +06:36:30 [ 7] [ 10] [0320134820] +06:36:30 [ 11] [ 6] [064820] +06:36:30 [ 37] [ 12] [57906064820] +06:36:30 [ 70] [ 3] [301] +06:36:30 ============================================================================ +06:36:30 + + +waiting on router queue for slot.... +06:36:30 Sending to : +06:36:30 ============================================================================ +06:36:30 ============================================================================ +06:36:30 Slot Id : <250> +06:36:30 Transaction Type : RESPONSE +06:36:30 Received From : +06:36:30 ============================================================================ +06:36:30 FNo. Len. Field Value +06:36:30 ============================================================================ +06:36:30 [ 1] [ 4] [0810] +06:36:30 [ 7] [ 10] [0320134820] +06:36:30 [ 11] [ 6] [064820] +06:36:30 [ 37] [ 12] [579060648200] +06:36:30 [ 39] [ 2] [00] +06:36:30 [ 70] [ 3] [810] +06:36:30 ============================================================================ +06:36:30 Calculate Source COMM Id = 6 +06:36:30 ============================================================================ +06:36:30 + + +waiting on router queue for slot.... +06:36:41 ============================================================================ +06:36:41 Slot Id : <251> +06:36:41 Transaction Type : REQUEST +06:36:41 Received From : +06:36:41 ============================================================================ +06:36:41 FNo. Len. Field Value +06:36:41 ============================================================================ +06:36:41 [ 1] [ 4] [0800] +06:36:41 [ 7] [ 10] [0319113549] +06:36:41 [ 11] [ 6] [154930] +06:36:41 [ 70] [ 3] [301] +06:36:41 ============================================================================ +06:36:41 + + +waiting on router queue for slot.... +06:36:41 Sending to : +06:36:41 ============================================================================ +06:36:41 ============================================================================ +06:36:41 Slot Id : <251> +06:36:41 Transaction Type : RESPONSE +06:36:41 Received From : +06:36:41 ============================================================================ +06:36:41 FNo. Len. Field Value +06:36:41 ============================================================================ +06:36:41 [ 1] [ 4] [0810] +06:36:41 [ 7] [ 10] [0319113549] +06:36:41 [ 11] [ 6] [154930] +06:36:41 [ 39] [ 2] [00] +06:36:41 [ 70] [ 3] [301] +06:36:41 ============================================================================ +06:36:41 Calculate Source COMM Id = 2 +06:36:41 ============================================================================ +06:36:41 + + +waiting on router queue for slot.... +06:36:46 ============================================================================ +06:36:46 Slot Id : <200> +06:36:46 Transaction Type : REQUEST +06:36:46 Received From : +06:36:46 ============================================================================ +06:36:46 FNo. Len. Field Value +06:36:46 ============================================================================ +06:36:46 [ 1] [ 4] [0200] +06:36:46 [ 2] [ 16] [6688990103261309] +06:36:46 [ 3] [ 6] [013000] +06:36:46 [ 4] [ 12] [000100000000] +06:36:46 [ 7] [ 10] [0320063643] +06:36:46 [ 11] [ 6] [664384] +06:36:46 [ 12] [ 6] [063643] +06:36:46 [ 13] [ 4] [0320] +06:36:46 [ 15] [ 4] [0320] +06:36:46 [ 18] [ 4] [6011] +06:36:46 [ 22] [ 3] [900] +06:36:46 [ 25] [ 2] [02] +06:36:46 [ 28] [ 9] [D00002000] +06:36:46 [ 32] [ 6] [621354] +06:36:46 [ 35] [ 37] [6688990103261309=42121231130967700000] +06:36:46 [ 37] [ 12] [507903499392] +06:36:46 [ 41] [ 8] [06002200] +06:36:46 [ 42] [ 15] [NATIVE ] +06:36:46 [ 43] [ 40] [Beng Market Beng LAO] +06:36:46 [ 49] [ 3] [418] +06:36:46 [ 52] [ 16] [7E02B72D0FF18765] +06:36:46 ============================================================================ +06:36:46 + + +waiting on router queue for slot.... +06:36:46 Sending to : +06:36:46 ============================================================================ +06:36:46 Sending to : +06:36:46 ============================================================================ +06:36:47 ============================================================================ +06:36:47 Slot Id : <200> +06:36:47 Transaction Type : REQUEST +06:36:47 Received From : +06:36:47 ============================================================================ +06:36:47 FNo. Len. Field Value +06:36:47 ============================================================================ +06:36:47 [ 1] [ 4] [0200] +06:36:47 [ 2] [ 16] [6688990103261309] +06:36:47 [ 3] [ 6] [013000] +06:36:47 [ 4] [ 12] [000100000000] +06:36:47 [ 7] [ 10] [0320063643] +06:36:47 [ 11] [ 6] [664384] +06:36:47 [ 12] [ 6] [063643] +06:36:47 [ 13] [ 4] [0320] +06:36:47 [ 15] [ 4] [0320] +06:36:47 [ 18] [ 4] [6011] +06:36:47 [ 22] [ 3] [900] +06:36:47 [ 25] [ 2] [02] +06:36:47 [ 28] [ 9] [D00002000] +06:36:47 [ 32] [ 6] [621354] +06:36:47 [ 35] [ 37] [6688990103261309=42121231130967700000] +06:36:47 [ 37] [ 12] [507903499392] +06:36:47 [ 41] [ 8] [06002200] +06:36:47 [ 42] [ 15] [NATIVE ] +06:36:47 [ 43] [ 40] [Beng Market Beng LAO] +06:36:47 [ 49] [ 3] [418] +06:36:47 [ 52] [ 16] [7E02B72D0FF18765] +06:36:47 ============================================================================ +06:36:47 + + +waiting on router queue for slot.... +06:36:47 Sending to : +06:36:47 ============================================================================ +06:36:47 ============================================================================ +06:36:47 Slot Id : <200> +06:36:47 Transaction Type : REQUEST +06:36:47 Received From : +06:36:47 ============================================================================ +06:36:47 FNo. Len. Field Value +06:36:47 ============================================================================ +06:36:47 [ 1] [ 4] [0200] +06:36:47 [ 2] [ 16] [6688990103261309] +06:36:47 [ 3] [ 6] [013000] +06:36:47 [ 4] [ 12] [000100000000] +06:36:47 [ 7] [ 10] [0320063643] +06:36:47 [ 11] [ 6] [664384] +06:36:47 [ 12] [ 6] [063643] +06:36:47 [ 13] [ 4] [0320] +06:36:47 [ 15] [ 4] [0320] +06:36:47 [ 18] [ 4] [6011] +06:36:47 [ 22] [ 3] [900] +06:36:47 [ 25] [ 2] [02] +06:36:47 [ 28] [ 9] [D00002000] +06:36:47 [ 32] [ 6] [621354] +06:36:47 [ 35] [ 37] [6688990103261309=42121231130967700000] +06:36:47 [ 37] [ 12] [507903499392] +06:36:47 [ 41] [ 8] [06002200] +06:36:47 [ 42] [ 15] [NATIVE ] +06:36:47 [ 43] [ 40] [Beng Market Beng LAO] +06:36:47 [ 49] [ 3] [418] +06:36:47 [ 52] [ 16] [989D4802B6A61D7B] +06:36:47 ============================================================================ +06:36:47 + + +waiting on router queue for slot.... +06:36:47 Sending to : <4> +06:36:47 ============================================================================ +06:36:48 ============================================================================ +06:36:48 Slot Id : <200> +06:36:48 Transaction Type : RESPONSE +06:36:48 Received From : +06:36:48 ============================================================================ +06:36:48 FNo. Len. Field Value +06:36:48 ============================================================================ +06:36:48 [ 1] [ 4] [0210] +06:36:48 [ 2] [ 16] [6688990103261309] +06:36:48 [ 3] [ 6] [013000] +06:36:48 [ 4] [ 12] [000100000000] +06:36:48 [ 11] [ 6] [664384] +06:36:48 [ 12] [ 6] [063643] +06:36:48 [ 15] [ 4] [0320] +06:36:48 [ 18] [ 4] [6011] +06:36:48 [ 32] [ 6] [621354] +06:36:48 [ 35] [ 37] [6688990103261309=42121231130967700000] +06:36:48 [ 37] [ 12] [507903499392] +06:36:48 [ 38] [ 6] [097192] +06:36:48 [ 39] [ 2] [00] +06:36:48 [ 41] [ 8] [06002200] +06:36:48 [ 49] [ 3] [418] +06:36:48 [ 54] [ 20] [3002418C000255315492] +06:36:48 ============================================================================ +06:36:48 Sending to : +06:36:48 ============================================================================ +06:36:48 + + +waiting on router queue for slot.... +06:36:50 ============================================================================ +06:36:50 Slot Id : <200> +06:36:50 Transaction Type : RESPONSE +06:36:50 Received From : +06:36:50 ============================================================================ +06:36:50 FNo. Len. Field Value +06:36:50 ============================================================================ +06:36:50 [ 1] [ 4] [0210] +06:36:50 [ 2] [ 16] [6688990103261309] +06:36:50 [ 3] [ 6] [013000] +06:36:50 [ 4] [ 12] [000100000000] +06:36:50 [ 11] [ 6] [664384] +06:36:50 [ 12] [ 6] [063643] +06:36:50 [ 15] [ 4] [0320] +06:36:50 [ 18] [ 4] [6011] +06:36:50 [ 32] [ 6] [621354] +06:36:50 [ 35] [ 37] [6688990103261309=42121231130967700000] +06:36:50 [ 37] [ 12] [507903499392] +06:36:50 [ 38] [ 6] [097192] +06:36:50 [ 39] [ 2] [00] +06:36:50 [ 41] [ 8] [06002200] +06:36:50 [ 49] [ 3] [418] +06:36:50 [ 54] [ 20] [3002418C000255315492] +06:36:50 ============================================================================ +06:36:50 Calculate Source COMM Id = 0 +06:36:50 ============================================================================ +06:36:50 + + +waiting on router queue for slot.... +06:36:56 ============================================================================ +06:36:56 Slot Id : <255> +06:36:56 Transaction Type : REQUEST +06:36:56 Received From : +06:36:56 ============================================================================ +06:36:56 FNo. Len. Field Value +06:36:56 ============================================================================ +06:36:56 [ 1] [ 4] [0800] +06:36:56 [ 7] [ 10] [0319113604] +06:36:56 [ 11] [ 6] [154931] +06:36:56 [ 70] [ 3] [301] +06:36:56 ============================================================================ +06:36:56 + + +waiting on router queue for slot.... +06:36:56 Sending to : +06:36:56 ============================================================================ +06:36:56 ============================================================================ +06:36:56 Slot Id : <255> +06:36:56 Transaction Type : RESPONSE +06:36:56 Received From : +06:36:56 ============================================================================ +06:36:56 FNo. Len. Field Value +06:36:56 ============================================================================ +06:36:56 [ 1] [ 4] [0810] +06:36:56 [ 7] [ 10] [0319113604] +06:36:56 [ 11] [ 6] [154931] +06:36:56 [ 39] [ 2] [00] +06:36:56 [ 70] [ 3] [301] +06:36:56 ============================================================================ +06:36:56 Calculate Source COMM Id = 2 +06:36:56 ============================================================================ +06:36:56 + + +waiting on router queue for slot.... +06:37:07 ============================================================================ +06:37:07 Slot Id : <226> +06:37:07 Transaction Type : REQUEST +06:37:07 Received From : +06:37:07 ============================================================================ +06:37:07 FNo. Len. Field Value +06:37:07 ============================================================================ +06:37:07 [ 1] [ 4] [0800] +06:37:07 [ 7] [ 10] [0319113616] +06:37:07 [ 11] [ 6] [154932] +06:37:07 [ 70] [ 3] [301] +06:37:07 ============================================================================ +06:37:07 + + +waiting on router queue for slot.... +06:37:07 Sending to : +06:37:07 ============================================================================ +06:37:07 ============================================================================ +06:37:07 Slot Id : <226> +06:37:07 Transaction Type : RESPONSE +06:37:07 Received From : +06:37:07 ============================================================================ +06:37:07 FNo. Len. Field Value +06:37:07 ============================================================================ +06:37:07 [ 1] [ 4] [0810] +06:37:07 [ 7] [ 10] [0319113616] +06:37:07 [ 11] [ 6] [154932] +06:37:07 [ 39] [ 2] [00] +06:37:07 [ 70] [ 3] [301] +06:37:07 ============================================================================ +06:37:07 Calculate Source COMM Id = 2 +06:37:07 ============================================================================ +06:37:07 + + +waiting on router queue for slot.... +06:37:22 ============================================================================ +06:37:22 Slot Id : <233> +06:37:22 Transaction Type : REQUEST +06:37:22 Received From : +06:37:22 ============================================================================ +06:37:22 FNo. Len. Field Value +06:37:22 ============================================================================ +06:37:22 [ 1] [ 4] [0800] +06:37:22 [ 7] [ 10] [0319113631] +06:37:22 [ 11] [ 6] [154933] +06:37:22 [ 70] [ 3] [301] +06:37:22 ============================================================================ +06:37:22 + + +waiting on router queue for slot.... +06:37:22 Sending to : +06:37:22 ============================================================================ +06:37:22 ============================================================================ +06:37:22 Slot Id : <233> +06:37:22 Transaction Type : RESPONSE +06:37:22 Received From : +06:37:22 ============================================================================ +06:37:22 FNo. Len. Field Value +06:37:22 ============================================================================ +06:37:22 [ 1] [ 4] [0810] +06:37:22 [ 7] [ 10] [0319113631] +06:37:22 [ 11] [ 6] [154933] +06:37:22 [ 39] [ 2] [00] +06:37:22 [ 70] [ 3] [301] +06:37:22 ============================================================================ +06:37:22 Calculate Source COMM Id = 2 +06:37:22 ============================================================================ +06:37:22 + + +waiting on router queue for slot.... +06:37:24 ============================================================================ +06:37:24 Slot Id : <238> +06:37:24 Transaction Type : REQUEST +06:37:24 Received From : +06:37:24 ============================================================================ +06:37:24 FNo. Len. Field Value +06:37:24 ============================================================================ +06:37:24 [ 1] [ 4] [0800] +06:37:24 [ 2] [ 5] [02531] +06:37:24 [ 3] [ 6] [579068] +06:37:24 [ 7] [ 10] [0319233724] +06:37:24 [ 11] [ 6] [806796] +06:37:24 [ 15] [ 10] [0319233724] +06:37:24 [ 37] [ 11] [57906806796] +06:37:24 [ 70] [ 3] [001] +06:37:24 ============================================================================ +06:37:24 + + +waiting on router queue for slot.... +06:37:24 ============================================================================ +06:37:24 Slot Id : <238> +06:37:24 Transaction Type : RESPONSE +06:37:24 Received From : +06:37:24 ============================================================================ +06:37:24 FNo. Len. Field Value +06:37:24 ============================================================================ +06:37:24 [ 1] [ 4] [0810] +06:37:24 [ 7] [ 10] [0319233724] +06:37:24 [ 11] [ 6] [806796] +06:37:24 [ 15] [ 4] [0319] +06:37:24 [ 37] [ 12] [57906806796] +06:37:24 [ 39] [ 2] [00] +06:37:24 [ 70] [ 3] [001] +06:37:24 ============================================================================ +06:37:24 Sending to : +06:37:24 ============================================================================ +06:37:24 + + +waiting on router queue for slot.... +06:37:33 ============================================================================ +06:37:33 Slot Id : <216> +06:37:33 Transaction Type : REQUEST +06:37:33 Received From : +06:37:33 ============================================================================ +06:37:33 FNo. Len. Field Value +06:37:33 ============================================================================ +06:37:33 [ 1] [ 4] [0800] +06:37:33 [ 7] [ 10] [0319113642] +06:37:33 [ 11] [ 6] [154934] +06:37:33 [ 70] [ 3] [301] +06:37:33 ============================================================================ +06:37:33 + + +waiting on router queue for slot.... +06:37:33 Sending to : +06:37:33 ============================================================================ +06:37:33 ============================================================================ +06:37:33 Slot Id : <216> +06:37:33 Transaction Type : RESPONSE +06:37:33 Received From : +06:37:33 ============================================================================ +06:37:33 FNo. Len. Field Value +06:37:33 ============================================================================ +06:37:33 [ 1] [ 4] [0810] +06:37:33 [ 7] [ 10] [0319113642] +06:37:33 [ 11] [ 6] [154934] +06:37:33 [ 39] [ 2] [00] +06:37:33 [ 70] [ 3] [301] +06:37:33 ============================================================================ +06:37:33 Calculate Source COMM Id = 2 +06:37:33 ============================================================================ +06:37:33 + + +waiting on router queue for slot.... +06:37:37 ============================================================================ +06:37:37 Slot Id : <234> +06:37:37 Transaction Type : REQUEST +06:37:37 Received From : +06:37:37 ============================================================================ +06:37:37 FNo. Len. Field Value +06:37:37 ============================================================================ +06:37:37 [ 1] [ 4] [0800] +06:37:37 [ 7] [ 10] [0320134925] +06:37:37 [ 11] [ 6] [064925] +06:37:37 [ 37] [ 12] [57906064925] +06:37:37 [ 70] [ 3] [301] +06:37:37 ============================================================================ +06:37:37 + + +waiting on router queue for slot.... +06:37:37 Sending to : +06:37:37 ============================================================================ +06:37:37 ============================================================================ +06:37:37 Slot Id : <234> +06:37:37 Transaction Type : RESPONSE +06:37:37 Received From : +06:37:37 ============================================================================ +06:37:37 FNo. Len. Field Value +06:37:37 ============================================================================ +06:37:37 [ 1] [ 4] [0810] +06:37:37 [ 7] [ 10] [0320134925] +06:37:37 [ 11] [ 6] [064925] +06:37:37 [ 37] [ 12] [579060649250] +06:37:37 [ 39] [ 2] [00] +06:37:37 [ 70] [ 3] [810] +06:37:37 ============================================================================ +06:37:37 Calculate Source COMM Id = 6 +06:37:37 ============================================================================ +06:37:37 + + +waiting on router queue for slot.... +06:37:44 ============================================================================ +06:37:44 Slot Id : <237> +06:37:44 Transaction Type : REQUEST +06:37:44 Received From : +06:37:44 ============================================================================ +06:37:44 FNo. Len. Field Value +06:37:44 ============================================================================ +06:37:44 [ 1] [ 4] [0800] +06:37:44 [ 7] [ 10] [0319113653] +06:37:44 [ 11] [ 6] [154935] +06:37:44 [ 70] [ 3] [301] +06:37:44 ============================================================================ +06:37:44 + + +waiting on router queue for slot.... +06:37:44 Sending to : +06:37:44 ============================================================================ +06:37:44 ============================================================================ +06:37:44 Slot Id : <237> +06:37:44 Transaction Type : RESPONSE +06:37:44 Received From : +06:37:44 ============================================================================ +06:37:44 FNo. Len. Field Value +06:37:44 ============================================================================ +06:37:44 [ 1] [ 4] [0810] +06:37:44 [ 7] [ 10] [0319113653] +06:37:44 [ 11] [ 6] [154935] +06:37:44 [ 39] [ 2] [00] +06:37:44 [ 70] [ 3] [301] +06:37:44 ============================================================================ +06:37:44 Calculate Source COMM Id = 2 +06:37:44 ============================================================================ +06:37:44 + + +waiting on router queue for slot.... +06:37:55 ============================================================================ +06:37:55 Slot Id : <253> +06:37:55 Transaction Type : REQUEST +06:37:55 Received From : +06:37:55 ============================================================================ +06:37:55 FNo. Len. Field Value +06:37:55 ============================================================================ +06:37:55 [ 1] [ 4] [0800] +06:37:55 [ 7] [ 10] [0319113704] +06:37:55 [ 11] [ 6] [154936] +06:37:55 [ 70] [ 3] [301] +06:37:55 ============================================================================ +06:37:55 + + +waiting on router queue for slot.... +06:37:55 Sending to : +06:37:55 ============================================================================ +06:37:55 ============================================================================ +06:37:55 Slot Id : <253> +06:37:55 Transaction Type : RESPONSE +06:37:55 Received From : +06:37:55 ============================================================================ +06:37:55 FNo. Len. Field Value +06:37:55 ============================================================================ +06:37:55 [ 1] [ 4] [0810] +06:37:55 [ 7] [ 10] [0319113704] +06:37:55 [ 11] [ 6] [154936] +06:37:55 [ 39] [ 2] [00] +06:37:55 [ 70] [ 3] [301] +06:37:55 ============================================================================ +06:37:55 Calculate Source COMM Id = 2 +06:37:55 ============================================================================ +06:37:55 + + +waiting on router queue for slot.... +06:38:06 ============================================================================ +06:38:06 Slot Id : <210> +06:38:06 Transaction Type : REQUEST +06:38:06 Received From : +06:38:06 ============================================================================ +06:38:06 FNo. Len. Field Value +06:38:06 ============================================================================ +06:38:06 [ 1] [ 4] [0800] +06:38:06 [ 7] [ 10] [0319113715] +06:38:06 [ 11] [ 6] [154937] +06:38:06 [ 70] [ 3] [301] +06:38:06 ============================================================================ +06:38:06 + + +waiting on router queue for slot.... +06:38:06 Sending to : +06:38:06 ============================================================================ +06:38:06 ============================================================================ +06:38:06 Slot Id : <210> +06:38:06 Transaction Type : RESPONSE +06:38:06 Received From : +06:38:06 ============================================================================ +06:38:06 FNo. Len. Field Value +06:38:06 ============================================================================ +06:38:06 [ 1] [ 4] [0810] +06:38:06 [ 7] [ 10] [0319113715] +06:38:06 [ 11] [ 6] [154937] +06:38:06 [ 39] [ 2] [00] +06:38:06 [ 70] [ 3] [301] +06:38:06 ============================================================================ +06:38:06 Calculate Source COMM Id = 2 +06:38:06 ============================================================================ +06:38:06 + + +waiting on router queue for slot.... +06:38:17 ============================================================================ +06:38:17 Slot Id : <220> +06:38:17 Transaction Type : REQUEST +06:38:17 Received From : +06:38:17 ============================================================================ +06:38:17 FNo. Len. Field Value +06:38:17 ============================================================================ +06:38:17 [ 1] [ 4] [0200] +06:38:17 [ 2] [ 16] [6688990106052309] +06:38:17 [ 3] [ 6] [013000] +06:38:17 [ 4] [ 12] [000010000000] +06:38:17 [ 7] [ 10] [0320063814] +06:38:17 [ 11] [ 6] [664513] +06:38:17 [ 12] [ 6] [063814] +06:38:17 [ 13] [ 4] [0320] +06:38:17 [ 15] [ 4] [0320] +06:38:17 [ 18] [ 4] [6011] +06:38:17 [ 22] [ 3] [900] +06:38:17 [ 25] [ 2] [02] +06:38:17 [ 28] [ 9] [D00002000] +06:38:17 [ 32] [ 6] [621354] +06:38:17 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:38:17 [ 37] [ 12] [507903499394] +06:38:17 [ 41] [ 8] [06002200] +06:38:17 [ 42] [ 15] [NATIVE ] +06:38:17 [ 43] [ 40] [Beng Market Beng LAO] +06:38:17 [ 49] [ 3] [418] +06:38:17 [ 52] [ 16] [E32B191FA28F4880] +06:38:17 ============================================================================ +06:38:17 + + +waiting on router queue for slot.... +06:38:17 Sending to : +06:38:17 ============================================================================ +06:38:17 Sending to : +06:38:17 ============================================================================ +06:38:17 ============================================================================ +06:38:17 Slot Id : <249> +06:38:17 Transaction Type : REQUEST +06:38:17 Received From : +06:38:17 ============================================================================ +06:38:17 FNo. Len. Field Value +06:38:17 ============================================================================ +06:38:17 [ 1] [ 4] [0800] +06:38:17 [ 7] [ 10] [0319113726] +06:38:17 [ 11] [ 6] [154938] +06:38:17 [ 70] [ 3] [301] +06:38:17 ============================================================================ +06:38:17 + + +waiting on router queue for slot.... +06:38:17 Sending to : +06:38:17 ============================================================================ +06:38:17 ============================================================================ +06:38:17 Slot Id : <249> +06:38:17 Transaction Type : RESPONSE +06:38:17 Received From : +06:38:17 ============================================================================ +06:38:17 FNo. Len. Field Value +06:38:17 ============================================================================ +06:38:17 [ 1] [ 4] [0810] +06:38:17 [ 7] [ 10] [0319113726] +06:38:17 [ 11] [ 6] [154938] +06:38:17 [ 39] [ 2] [00] +06:38:17 [ 70] [ 3] [301] +06:38:17 ============================================================================ +06:38:17 Calculate Source COMM Id = 2 +06:38:17 ============================================================================ +06:38:17 + + +waiting on router queue for slot.... +06:38:18 ============================================================================ +06:38:18 Slot Id : <220> +06:38:18 Transaction Type : REQUEST +06:38:18 Received From : +06:38:18 ============================================================================ +06:38:18 FNo. Len. Field Value +06:38:18 ============================================================================ +06:38:18 [ 1] [ 4] [0200] +06:38:18 [ 2] [ 16] [6688990106052309] +06:38:18 [ 3] [ 6] [013000] +06:38:18 [ 4] [ 12] [000010000000] +06:38:18 [ 7] [ 10] [0320063814] +06:38:18 [ 11] [ 6] [664513] +06:38:18 [ 12] [ 6] [063814] +06:38:18 [ 13] [ 4] [0320] +06:38:18 [ 15] [ 4] [0320] +06:38:18 [ 18] [ 4] [6011] +06:38:18 [ 22] [ 3] [900] +06:38:18 [ 25] [ 2] [02] +06:38:18 [ 28] [ 9] [D00002000] +06:38:18 [ 32] [ 6] [621354] +06:38:18 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:38:18 [ 37] [ 12] [507903499394] +06:38:18 [ 41] [ 8] [06002200] +06:38:18 [ 42] [ 15] [NATIVE ] +06:38:18 [ 43] [ 40] [Beng Market Beng LAO] +06:38:18 [ 49] [ 3] [418] +06:38:18 [ 52] [ 16] [E32B191FA28F4880] +06:38:18 ============================================================================ +06:38:18 + + +waiting on router queue for slot.... +06:38:18 Sending to : +06:38:18 ============================================================================ +06:38:18 ============================================================================ +06:38:18 Slot Id : <220> +06:38:18 Transaction Type : REQUEST +06:38:18 Received From : +06:38:18 ============================================================================ +06:38:18 FNo. Len. Field Value +06:38:18 ============================================================================ +06:38:18 [ 1] [ 4] [0200] +06:38:18 [ 2] [ 16] [6688990106052309] +06:38:18 [ 3] [ 6] [013000] +06:38:18 [ 4] [ 12] [000010000000] +06:38:18 [ 7] [ 10] [0320063814] +06:38:18 [ 11] [ 6] [664513] +06:38:18 [ 12] [ 6] [063814] +06:38:18 [ 13] [ 4] [0320] +06:38:18 [ 15] [ 4] [0320] +06:38:18 [ 18] [ 4] [6011] +06:38:18 [ 22] [ 3] [900] +06:38:18 [ 25] [ 2] [02] +06:38:18 [ 28] [ 9] [D00002000] +06:38:18 [ 32] [ 6] [621354] +06:38:18 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:38:18 [ 37] [ 12] [507903499394] +06:38:18 [ 41] [ 8] [06002200] +06:38:18 [ 42] [ 15] [NATIVE ] +06:38:18 [ 43] [ 40] [Beng Market Beng LAO] +06:38:18 [ 49] [ 3] [418] +06:38:18 [ 52] [ 16] [63A823F46DBB9486] +06:38:18 ============================================================================ +06:38:18 + + +waiting on router queue for slot.... +06:38:18 Sending to : <4> +06:38:18 ============================================================================ +06:38:19 ============================================================================ +06:38:19 Slot Id : <220> +06:38:19 Transaction Type : RESPONSE +06:38:19 Received From : +06:38:19 ============================================================================ +06:38:19 FNo. Len. Field Value +06:38:19 ============================================================================ +06:38:19 [ 1] [ 4] [0210] +06:38:19 [ 2] [ 16] [6688990106052309] +06:38:19 [ 3] [ 6] [013000] +06:38:19 [ 4] [ 12] [000010000000] +06:38:19 [ 11] [ 6] [664513] +06:38:19 [ 12] [ 6] [063814] +06:38:19 [ 15] [ 4] [0320] +06:38:19 [ 18] [ 4] [6011] +06:38:19 [ 32] [ 6] [621354] +06:38:19 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:38:19 [ 37] [ 12] [507903499394] +06:38:19 [ 38] [ 6] [824490] +06:38:19 [ 39] [ 2] [00] +06:38:19 [ 41] [ 8] [06002200] +06:38:19 [ 49] [ 3] [418] +06:38:19 [ 54] [ 20] [3002418C000347811342] +06:38:19 ============================================================================ +06:38:19 Sending to : +06:38:19 ============================================================================ +06:38:19 + + +waiting on router queue for slot.... +06:38:20 ============================================================================ +06:38:20 Slot Id : <220> +06:38:20 Transaction Type : RESPONSE +06:38:20 Received From : +06:38:20 ============================================================================ +06:38:20 FNo. Len. Field Value +06:38:20 ============================================================================ +06:38:20 [ 1] [ 4] [0210] +06:38:20 [ 2] [ 16] [6688990106052309] +06:38:20 [ 3] [ 6] [013000] +06:38:20 [ 4] [ 12] [000010000000] +06:38:20 [ 11] [ 6] [664513] +06:38:20 [ 12] [ 6] [063814] +06:38:20 [ 15] [ 4] [0320] +06:38:20 [ 18] [ 4] [6011] +06:38:20 [ 32] [ 6] [621354] +06:38:20 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:38:20 [ 37] [ 12] [507903499394] +06:38:20 [ 38] [ 6] [824490] +06:38:20 [ 39] [ 2] [00] +06:38:20 [ 41] [ 8] [06002200] +06:38:20 [ 49] [ 3] [418] +06:38:20 [ 54] [ 20] [3002418C000347811342] +06:38:20 ============================================================================ +06:38:20 Calculate Source COMM Id = 0 +06:38:20 ============================================================================ +06:38:20 + + +waiting on router queue for slot.... +06:38:26 ============================================================================ +06:38:26 Slot Id : <260> +06:38:26 Transaction Type : REQUEST +06:38:26 Received From : +06:38:26 ============================================================================ +06:38:26 FNo. Len. Field Value +06:38:26 ============================================================================ +06:38:26 [ 1] [ 4] [0800] +06:38:26 [ 2] [ 5] [02531] +06:38:26 [ 3] [ 6] [579068] +06:38:26 [ 7] [ 10] [0319233826] +06:38:26 [ 11] [ 6] [806797] +06:38:26 [ 15] [ 10] [0319233826] +06:38:26 [ 37] [ 11] [57906806797] +06:38:26 [ 70] [ 3] [001] +06:38:26 ============================================================================ +06:38:26 + + +waiting on router queue for slot.... +06:38:26 ============================================================================ +06:38:26 Slot Id : <260> +06:38:26 Transaction Type : RESPONSE +06:38:26 Received From : +06:38:26 ============================================================================ +06:38:26 FNo. Len. Field Value +06:38:26 ============================================================================ +06:38:26 [ 1] [ 4] [0810] +06:38:26 [ 7] [ 10] [0319233826] +06:38:26 [ 11] [ 6] [806797] +06:38:26 [ 15] [ 4] [0319] +06:38:26 [ 37] [ 12] [57906806797] +06:38:26 [ 39] [ 2] [00] +06:38:26 [ 70] [ 3] [001] +06:38:26 ============================================================================ +06:38:26 Sending to : +06:38:26 ============================================================================ +06:38:26 + + +waiting on router queue for slot.... +06:38:28 ============================================================================ +06:38:28 Slot Id : <199> +06:38:28 Transaction Type : REQUEST +06:38:28 Received From : +06:38:28 ============================================================================ +06:38:28 FNo. Len. Field Value +06:38:28 ============================================================================ +06:38:28 [ 1] [ 4] [0800] +06:38:28 [ 7] [ 10] [0319113737] +06:38:28 [ 11] [ 6] [154939] +06:38:28 [ 70] [ 3] [301] +06:38:28 ============================================================================ +06:38:28 + + +waiting on router queue for slot.... +06:38:28 Sending to : +06:38:28 ============================================================================ +06:38:28 ============================================================================ +06:38:28 Slot Id : <199> +06:38:28 Transaction Type : RESPONSE +06:38:28 Received From : +06:38:28 ============================================================================ +06:38:28 FNo. Len. Field Value +06:38:28 ============================================================================ +06:38:28 [ 1] [ 4] [0810] +06:38:28 [ 7] [ 10] [0319113737] +06:38:28 [ 11] [ 6] [154939] +06:38:28 [ 39] [ 2] [00] +06:38:28 [ 70] [ 3] [301] +06:38:28 ============================================================================ +06:38:28 Calculate Source COMM Id = 2 +06:38:28 ============================================================================ +06:38:28 + + +waiting on router queue for slot.... +06:38:39 ============================================================================ +06:38:39 Slot Id : <259> +06:38:39 Transaction Type : REQUEST +06:38:39 Received From : +06:38:39 ============================================================================ +06:38:39 FNo. Len. Field Value +06:38:39 ============================================================================ +06:38:39 [ 1] [ 4] [0800] +06:38:39 [ 7] [ 10] [0319113747] +06:38:39 [ 11] [ 6] [154940] +06:38:39 [ 70] [ 3] [301] +06:38:39 ============================================================================ +06:38:39 + + +waiting on router queue for slot.... +06:38:39 Sending to : +06:38:39 ============================================================================ +06:38:39 ============================================================================ +06:38:39 Slot Id : <259> +06:38:39 Transaction Type : RESPONSE +06:38:39 Received From : +06:38:39 ============================================================================ +06:38:39 FNo. Len. Field Value +06:38:39 ============================================================================ +06:38:39 [ 1] [ 4] [0810] +06:38:39 [ 7] [ 10] [0319113747] +06:38:39 [ 11] [ 6] [154940] +06:38:39 [ 39] [ 2] [00] +06:38:39 [ 70] [ 3] [301] +06:38:39 ============================================================================ +06:38:39 Calculate Source COMM Id = 2 +06:38:39 ============================================================================ +06:38:39 + + +waiting on router queue for slot.... +06:38:42 ============================================================================ +06:38:42 Slot Id : <263> +06:38:42 Transaction Type : REQUEST +06:38:42 Received From : +06:38:42 ============================================================================ +06:38:42 FNo. Len. Field Value +06:38:42 ============================================================================ +06:38:42 [ 1] [ 4] [0800] +06:38:42 [ 7] [ 10] [0320135030] +06:38:42 [ 11] [ 6] [065030] +06:38:42 [ 37] [ 12] [57906065030] +06:38:42 [ 70] [ 3] [301] +06:38:42 ============================================================================ +06:38:42 + + +waiting on router queue for slot.... +06:38:42 Sending to : +06:38:42 ============================================================================ +06:38:42 ============================================================================ +06:38:42 Slot Id : <263> +06:38:42 Transaction Type : RESPONSE +06:38:42 Received From : +06:38:42 ============================================================================ +06:38:42 FNo. Len. Field Value +06:38:42 ============================================================================ +06:38:42 [ 1] [ 4] [0810] +06:38:42 [ 7] [ 10] [0320135030] +06:38:42 [ 11] [ 6] [065030] +06:38:42 [ 37] [ 12] [579060650300] +06:38:42 [ 39] [ 2] [00] +06:38:42 [ 70] [ 3] [810] +06:38:42 ============================================================================ +06:38:42 Calculate Source COMM Id = 6 +06:38:42 ============================================================================ +06:38:42 + + +waiting on router queue for slot.... +06:38:50 ============================================================================ +06:38:50 Slot Id : <270> +06:38:50 Transaction Type : REQUEST +06:38:50 Received From : +06:38:50 ============================================================================ +06:38:50 FNo. Len. Field Value +06:38:50 ============================================================================ +06:38:50 [ 1] [ 4] [0800] +06:38:50 [ 7] [ 10] [0319113759] +06:38:50 [ 11] [ 6] [154941] +06:38:50 [ 70] [ 3] [301] +06:38:50 ============================================================================ +06:38:50 + + +waiting on router queue for slot.... +06:38:50 Sending to : +06:38:50 ============================================================================ +06:38:50 ============================================================================ +06:38:50 Slot Id : <270> +06:38:50 Transaction Type : RESPONSE +06:38:50 Received From : +06:38:50 ============================================================================ +06:38:50 FNo. Len. Field Value +06:38:50 ============================================================================ +06:38:50 [ 1] [ 4] [0810] +06:38:50 [ 7] [ 10] [0319113759] +06:38:50 [ 11] [ 6] [154941] +06:38:50 [ 39] [ 2] [00] +06:38:50 [ 70] [ 3] [301] +06:38:50 ============================================================================ +06:38:50 Calculate Source COMM Id = 2 +06:38:50 ============================================================================ +06:38:50 + + +waiting on router queue for slot.... +06:39:07 ============================================================================ +06:39:07 Slot Id : <261> +06:39:07 Transaction Type : REQUEST +06:39:07 Received From : +06:39:07 ============================================================================ +06:39:07 FNo. Len. Field Value +06:39:07 ============================================================================ +06:39:07 [ 1] [ 4] [0800] +06:39:07 [ 7] [ 10] [0319113815] +06:39:07 [ 11] [ 6] [154942] +06:39:07 [ 70] [ 3] [301] +06:39:07 ============================================================================ +06:39:07 + + +waiting on router queue for slot.... +06:39:07 Sending to : +06:39:07 ============================================================================ +06:39:07 ============================================================================ +06:39:07 Slot Id : <261> +06:39:07 Transaction Type : RESPONSE +06:39:07 Received From : +06:39:07 ============================================================================ +06:39:07 FNo. Len. Field Value +06:39:07 ============================================================================ +06:39:07 [ 1] [ 4] [0810] +06:39:07 [ 7] [ 10] [0319113815] +06:39:07 [ 11] [ 6] [154942] +06:39:07 [ 39] [ 2] [00] +06:39:07 [ 70] [ 3] [301] +06:39:07 ============================================================================ +06:39:07 Calculate Source COMM Id = 2 +06:39:07 ============================================================================ +06:39:07 + + +waiting on router queue for slot.... +06:39:18 ============================================================================ +06:39:18 Slot Id : <269> +06:39:18 Transaction Type : REQUEST +06:39:18 Received From : +06:39:18 ============================================================================ +06:39:18 FNo. Len. Field Value +06:39:18 ============================================================================ +06:39:18 [ 1] [ 4] [0800] +06:39:18 [ 7] [ 10] [0319113826] +06:39:18 [ 11] [ 6] [154943] +06:39:18 [ 70] [ 3] [301] +06:39:18 ============================================================================ +06:39:18 + + +waiting on router queue for slot.... +06:39:18 Sending to : +06:39:18 ============================================================================ +06:39:18 ============================================================================ +06:39:18 Slot Id : <269> +06:39:18 Transaction Type : RESPONSE +06:39:18 Received From : +06:39:18 ============================================================================ +06:39:18 FNo. Len. Field Value +06:39:18 ============================================================================ +06:39:18 [ 1] [ 4] [0810] +06:39:18 [ 7] [ 10] [0319113826] +06:39:18 [ 11] [ 6] [154943] +06:39:18 [ 39] [ 2] [00] +06:39:18 [ 70] [ 3] [301] +06:39:18 ============================================================================ +06:39:18 Calculate Source COMM Id = 2 +06:39:18 ============================================================================ +06:39:18 + + +waiting on router queue for slot.... +06:39:26 ============================================================================ +06:39:26 Slot Id : <256> +06:39:26 Transaction Type : REQUEST +06:39:26 Received From : +06:39:26 ============================================================================ +06:39:26 FNo. Len. Field Value +06:39:26 ============================================================================ +06:39:26 [ 1] [ 4] [0200] +06:39:26 [ 2] [ 16] [6688990106052309] +06:39:26 [ 3] [ 6] [013000] +06:39:26 [ 4] [ 12] [000100000000] +06:39:26 [ 7] [ 10] [0320063923] +06:39:26 [ 11] [ 6] [664616] +06:39:26 [ 12] [ 6] [063923] +06:39:26 [ 13] [ 4] [0320] +06:39:26 [ 15] [ 4] [0320] +06:39:26 [ 18] [ 4] [6011] +06:39:26 [ 22] [ 3] [900] +06:39:26 [ 25] [ 2] [02] +06:39:26 [ 28] [ 9] [D00002000] +06:39:26 [ 32] [ 6] [621354] +06:39:26 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:39:26 [ 37] [ 12] [507903499396] +06:39:26 [ 41] [ 8] [06002200] +06:39:26 [ 42] [ 15] [NATIVE ] +06:39:26 [ 43] [ 40] [Beng Market Beng LAO] +06:39:26 [ 49] [ 3] [418] +06:39:26 [ 52] [ 16] [E32B191FA28F4880] +06:39:26 ============================================================================ +06:39:26 + + +waiting on router queue for slot.... +06:39:26 Sending to : +06:39:26 ============================================================================ +06:39:26 Sending to : +06:39:26 ============================================================================ +06:39:27 ============================================================================ +06:39:27 Slot Id : <256> +06:39:27 Transaction Type : REQUEST +06:39:27 Received From : +06:39:27 ============================================================================ +06:39:27 FNo. Len. Field Value +06:39:27 ============================================================================ +06:39:27 [ 1] [ 4] [0200] +06:39:27 [ 2] [ 16] [6688990106052309] +06:39:27 [ 3] [ 6] [013000] +06:39:27 [ 4] [ 12] [000100000000] +06:39:27 [ 7] [ 10] [0320063923] +06:39:27 [ 11] [ 6] [664616] +06:39:27 [ 12] [ 6] [063923] +06:39:27 [ 13] [ 4] [0320] +06:39:27 [ 15] [ 4] [0320] +06:39:27 [ 18] [ 4] [6011] +06:39:27 [ 22] [ 3] [900] +06:39:27 [ 25] [ 2] [02] +06:39:27 [ 28] [ 9] [D00002000] +06:39:27 [ 32] [ 6] [621354] +06:39:27 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:39:27 [ 37] [ 12] [507903499396] +06:39:27 [ 41] [ 8] [06002200] +06:39:27 [ 42] [ 15] [NATIVE ] +06:39:27 [ 43] [ 40] [Beng Market Beng LAO] +06:39:27 [ 49] [ 3] [418] +06:39:27 [ 52] [ 16] [E32B191FA28F4880] +06:39:27 ============================================================================ +06:39:27 + + +waiting on router queue for slot.... +06:39:27 Sending to : +06:39:27 ============================================================================ +06:39:27 ============================================================================ +06:39:27 Slot Id : <256> +06:39:27 Transaction Type : REQUEST +06:39:27 Received From : +06:39:27 ============================================================================ +06:39:27 FNo. Len. Field Value +06:39:27 ============================================================================ +06:39:27 [ 1] [ 4] [0200] +06:39:27 [ 2] [ 16] [6688990106052309] +06:39:27 [ 3] [ 6] [013000] +06:39:27 [ 4] [ 12] [000100000000] +06:39:27 [ 7] [ 10] [0320063923] +06:39:27 [ 11] [ 6] [664616] +06:39:27 [ 12] [ 6] [063923] +06:39:27 [ 13] [ 4] [0320] +06:39:27 [ 15] [ 4] [0320] +06:39:27 [ 18] [ 4] [6011] +06:39:27 [ 22] [ 3] [900] +06:39:27 [ 25] [ 2] [02] +06:39:27 [ 28] [ 9] [D00002000] +06:39:27 [ 32] [ 6] [621354] +06:39:27 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:39:27 [ 37] [ 12] [507903499396] +06:39:27 [ 41] [ 8] [06002200] +06:39:27 [ 42] [ 15] [NATIVE ] +06:39:27 [ 43] [ 40] [Beng Market Beng LAO] +06:39:27 [ 49] [ 3] [418] +06:39:27 [ 52] [ 16] [63A823F46DBB9486] +06:39:27 ============================================================================ +06:39:27 + + +waiting on router queue for slot.... +06:39:27 Sending to : <4> +06:39:27 ============================================================================ +06:39:28 ============================================================================ +06:39:28 Slot Id : <256> +06:39:28 Transaction Type : RESPONSE +06:39:28 Received From : +06:39:28 ============================================================================ +06:39:28 FNo. Len. Field Value +06:39:28 ============================================================================ +06:39:28 [ 1] [ 4] [0210] +06:39:28 [ 2] [ 16] [6688990106052309] +06:39:28 [ 3] [ 6] [013000] +06:39:28 [ 4] [ 12] [000100000000] +06:39:28 [ 11] [ 6] [664616] +06:39:28 [ 12] [ 6] [063923] +06:39:28 [ 15] [ 4] [0320] +06:39:28 [ 18] [ 4] [6011] +06:39:28 [ 32] [ 6] [621354] +06:39:28 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:39:28 [ 37] [ 12] [507903499396] +06:39:28 [ 38] [ 6] [870930] +06:39:28 [ 39] [ 2] [00] +06:39:28 [ 41] [ 8] [06002200] +06:39:28 [ 49] [ 3] [418] +06:39:28 [ 54] [ 20] [3002418C000247611342] +06:39:28 ============================================================================ +06:39:28 Sending to : +06:39:28 ============================================================================ +06:39:28 + + +waiting on router queue for slot.... +06:39:28 ============================================================================ +06:39:28 Slot Id : <197> +06:39:28 Transaction Type : REQUEST +06:39:28 Received From : +06:39:28 ============================================================================ +06:39:28 FNo. Len. Field Value +06:39:28 ============================================================================ +06:39:28 [ 1] [ 4] [0800] +06:39:28 [ 2] [ 5] [02531] +06:39:28 [ 3] [ 6] [579068] +06:39:28 [ 7] [ 10] [0319233928] +06:39:28 [ 11] [ 6] [806798] +06:39:28 [ 15] [ 10] [0319233928] +06:39:28 [ 37] [ 11] [57906806798] +06:39:28 [ 70] [ 3] [001] +06:39:28 ============================================================================ +06:39:28 + + +waiting on router queue for slot.... +06:39:28 ============================================================================ +06:39:28 Slot Id : <197> +06:39:28 Transaction Type : RESPONSE +06:39:28 Received From : +06:39:28 ============================================================================ +06:39:28 FNo. Len. Field Value +06:39:28 ============================================================================ +06:39:28 [ 1] [ 4] [0810] +06:39:28 [ 7] [ 10] [0319233928] +06:39:28 [ 11] [ 6] [806798] +06:39:28 [ 15] [ 4] [0319] +06:39:28 [ 37] [ 12] [57906806798] +06:39:28 [ 39] [ 2] [00] +06:39:28 [ 70] [ 3] [001] +06:39:28 ============================================================================ +06:39:28 Sending to : +06:39:28 ============================================================================ +06:39:28 + + +waiting on router queue for slot.... +06:39:29 ============================================================================ +06:39:29 Slot Id : <240> +06:39:29 Transaction Type : REQUEST +06:39:29 Received From : +06:39:29 ============================================================================ +06:39:29 FNo. Len. Field Value +06:39:29 ============================================================================ +06:39:29 [ 1] [ 4] [0800] +06:39:29 [ 7] [ 10] [0319113837] +06:39:29 [ 11] [ 6] [154944] +06:39:29 [ 70] [ 3] [301] +06:39:29 ============================================================================ +06:39:29 + + +waiting on router queue for slot.... +06:39:29 Sending to : +06:39:29 ============================================================================ +06:39:29 ============================================================================ +06:39:29 Slot Id : <240> +06:39:29 Transaction Type : RESPONSE +06:39:29 Received From : +06:39:29 ============================================================================ +06:39:29 FNo. Len. Field Value +06:39:29 ============================================================================ +06:39:29 [ 1] [ 4] [0810] +06:39:29 [ 7] [ 10] [0319113837] +06:39:29 [ 11] [ 6] [154944] +06:39:29 [ 39] [ 2] [00] +06:39:29 [ 70] [ 3] [301] +06:39:29 ============================================================================ +06:39:29 Calculate Source COMM Id = 2 +06:39:29 ============================================================================ +06:39:29 + + +waiting on router queue for slot.... +06:39:29 ============================================================================ +06:39:29 Slot Id : <256> +06:39:29 Transaction Type : RESPONSE +06:39:29 Received From : +06:39:29 ============================================================================ +06:39:29 FNo. Len. Field Value +06:39:29 ============================================================================ +06:39:29 [ 1] [ 4] [0210] +06:39:29 [ 2] [ 16] [6688990106052309] +06:39:29 [ 3] [ 6] [013000] +06:39:29 [ 4] [ 12] [000100000000] +06:39:29 [ 11] [ 6] [664616] +06:39:29 [ 12] [ 6] [063923] +06:39:29 [ 15] [ 4] [0320] +06:39:29 [ 18] [ 4] [6011] +06:39:29 [ 32] [ 6] [621354] +06:39:29 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:39:29 [ 37] [ 12] [507903499396] +06:39:29 [ 38] [ 6] [870930] +06:39:29 [ 39] [ 2] [00] +06:39:29 [ 41] [ 8] [06002200] +06:39:29 [ 49] [ 3] [418] +06:39:29 [ 54] [ 20] [3002418C000247611342] +06:39:29 ============================================================================ +06:39:29 Calculate Source COMM Id = 0 +06:39:29 ============================================================================ +06:39:29 + + +waiting on router queue for slot.... +06:39:39 ============================================================================ +06:39:39 Slot Id : <228> +06:39:39 Transaction Type : REQUEST +06:39:39 Received From : +06:39:39 ============================================================================ +06:39:39 FNo. Len. Field Value +06:39:39 ============================================================================ +06:39:39 [ 1] [ 4] [0800] +06:39:39 [ 7] [ 10] [0319113848] +06:39:39 [ 11] [ 6] [154945] +06:39:39 [ 70] [ 3] [301] +06:39:39 ============================================================================ +06:39:39 + + +waiting on router queue for slot.... +06:39:39 Sending to : +06:39:39 ============================================================================ +06:39:39 ============================================================================ +06:39:39 Slot Id : <228> +06:39:39 Transaction Type : RESPONSE +06:39:39 Received From : +06:39:39 ============================================================================ +06:39:39 FNo. Len. Field Value +06:39:39 ============================================================================ +06:39:39 [ 1] [ 4] [0810] +06:39:39 [ 7] [ 10] [0319113848] +06:39:39 [ 11] [ 6] [154945] +06:39:39 [ 39] [ 2] [00] +06:39:39 [ 70] [ 3] [301] +06:39:39 ============================================================================ +06:39:39 Calculate Source COMM Id = 2 +06:39:39 ============================================================================ +06:39:39 + + +waiting on router queue for slot.... +06:39:47 ============================================================================ +06:39:47 Slot Id : <265> +06:39:47 Transaction Type : REQUEST +06:39:47 Received From : +06:39:47 ============================================================================ +06:39:47 FNo. Len. Field Value +06:39:47 ============================================================================ +06:39:47 [ 1] [ 4] [0800] +06:39:47 [ 7] [ 10] [0320135135] +06:39:47 [ 11] [ 6] [065135] +06:39:47 [ 37] [ 12] [57906065135] +06:39:47 [ 70] [ 3] [301] +06:39:47 ============================================================================ +06:39:47 + + +waiting on router queue for slot.... +06:39:47 Sending to : +06:39:47 ============================================================================ +06:39:47 ============================================================================ +06:39:47 Slot Id : <265> +06:39:47 Transaction Type : RESPONSE +06:39:47 Received From : +06:39:47 ============================================================================ +06:39:47 FNo. Len. Field Value +06:39:47 ============================================================================ +06:39:47 [ 1] [ 4] [0810] +06:39:47 [ 7] [ 10] [0320135135] +06:39:47 [ 11] [ 6] [065135] +06:39:47 [ 37] [ 12] [579060651350] +06:39:47 [ 39] [ 2] [00] +06:39:47 [ 70] [ 3] [810] +06:39:47 ============================================================================ +06:39:47 Calculate Source COMM Id = 6 +06:39:47 ============================================================================ +06:39:47 + + +waiting on router queue for slot.... +06:39:49 ============================================================================ +06:39:49 Slot Id : <275> +06:39:49 Transaction Type : REQUEST +06:39:49 Received From : +06:39:49 ============================================================================ +06:39:49 FNo. Len. Field Value +06:39:49 ============================================================================ +06:39:49 [ 1] [ 4] [0800] +06:39:49 [ 7] [ 10] [0319113858] +06:39:49 [ 11] [ 6] [154946] +06:39:49 [ 70] [ 3] [301] +06:39:49 ============================================================================ +06:39:49 + + +waiting on router queue for slot.... +06:39:49 Sending to : +06:39:49 ============================================================================ +06:39:49 ============================================================================ +06:39:49 Slot Id : <275> +06:39:49 Transaction Type : RESPONSE +06:39:49 Received From : +06:39:49 ============================================================================ +06:39:49 FNo. Len. Field Value +06:39:49 ============================================================================ +06:39:49 [ 1] [ 4] [0810] +06:39:49 [ 7] [ 10] [0319113858] +06:39:49 [ 11] [ 6] [154946] +06:39:49 [ 39] [ 2] [00] +06:39:49 [ 70] [ 3] [301] +06:39:49 ============================================================================ +06:39:49 Calculate Source COMM Id = 2 +06:39:49 ============================================================================ +06:39:49 + + +waiting on router queue for slot.... +06:39:54 ============================================================================ +06:39:54 Slot Id : <247> +06:39:54 Transaction Type : REQUEST +06:39:54 Received From : +06:39:54 ============================================================================ +06:39:54 FNo. Len. Field Value +06:39:54 ============================================================================ +06:39:54 [ 1] [ 4] [0800] +06:39:54 [ 7] [ 10] [0319234742] +06:39:54 [ 11] [ 6] [063779] +06:39:54 [ 37] [ 12] [57906063779] +06:39:54 [ 70] [ 3] [301] +06:39:54 ============================================================================ +06:39:54 + + +waiting on router queue for slot.... +06:39:54 Sending to : +06:39:54 ============================================================================ +06:39:54 ============================================================================ +06:39:54 Slot Id : <247> +06:39:54 Transaction Type : RESPONSE +06:39:54 Received From : +06:39:54 ============================================================================ +06:39:54 FNo. Len. Field Value +06:39:54 ============================================================================ +06:39:54 [ 1] [ 4] [0810] +06:39:54 [ 7] [ 10] [0319234742] +06:39:54 [ 11] [ 6] [063779] +06:39:54 [ 37] [ 12] [579060637790] +06:39:54 [ 39] [ 2] [00] +06:39:54 [ 70] [ 3] [810] +06:39:54 ============================================================================ +06:39:54 Calculate Source COMM Id = 1 +06:39:54 ============================================================================ +06:39:54 + + +waiting on router queue for slot.... +06:40:00 ============================================================================ +06:40:00 Slot Id : <218> +06:40:00 Transaction Type : REQUEST +06:40:00 Received From : +06:40:00 ============================================================================ +06:40:00 FNo. Len. Field Value +06:40:00 ============================================================================ +06:40:00 [ 1] [ 4] [0800] +06:40:00 [ 7] [ 10] [0319113909] +06:40:00 [ 11] [ 6] [154947] +06:40:00 [ 70] [ 3] [301] +06:40:00 ============================================================================ +06:40:00 + + +waiting on router queue for slot.... +06:40:00 Sending to : +06:40:00 ============================================================================ +06:40:00 ============================================================================ +06:40:00 Slot Id : <218> +06:40:00 Transaction Type : RESPONSE +06:40:00 Received From : +06:40:00 ============================================================================ +06:40:00 FNo. Len. Field Value +06:40:00 ============================================================================ +06:40:00 [ 1] [ 4] [0810] +06:40:00 [ 7] [ 10] [0319113909] +06:40:00 [ 11] [ 6] [154947] +06:40:00 [ 39] [ 2] [00] +06:40:00 [ 70] [ 3] [301] +06:40:00 ============================================================================ +06:40:00 Calculate Source COMM Id = 2 +06:40:00 ============================================================================ +06:40:00 + + +waiting on router queue for slot.... +06:40:11 ============================================================================ +06:40:11 Slot Id : <274> +06:40:11 Transaction Type : REQUEST +06:40:11 Received From : +06:40:11 ============================================================================ +06:40:11 FNo. Len. Field Value +06:40:11 ============================================================================ +06:40:11 [ 1] [ 4] [0800] +06:40:11 [ 7] [ 10] [0319113919] +06:40:11 [ 11] [ 6] [154948] +06:40:11 [ 70] [ 3] [301] +06:40:11 ============================================================================ +06:40:11 + + +waiting on router queue for slot.... +06:40:11 Sending to : +06:40:11 ============================================================================ +06:40:11 ============================================================================ +06:40:11 Slot Id : <274> +06:40:11 Transaction Type : RESPONSE +06:40:11 Received From : +06:40:11 ============================================================================ +06:40:11 FNo. Len. Field Value +06:40:11 ============================================================================ +06:40:11 [ 1] [ 4] [0810] +06:40:11 [ 7] [ 10] [0319113919] +06:40:11 [ 11] [ 6] [154948] +06:40:11 [ 39] [ 2] [00] +06:40:11 [ 70] [ 3] [301] +06:40:11 ============================================================================ +06:40:11 Calculate Source COMM Id = 2 +06:40:11 ============================================================================ +06:40:11 + + +waiting on router queue for slot.... +06:40:22 ============================================================================ +06:40:22 Slot Id : <264> +06:40:22 Transaction Type : REQUEST +06:40:22 Received From : +06:40:22 ============================================================================ +06:40:22 FNo. Len. Field Value +06:40:22 ============================================================================ +06:40:22 [ 1] [ 4] [0800] +06:40:22 [ 7] [ 10] [0319113930] +06:40:22 [ 11] [ 6] [154949] +06:40:22 [ 70] [ 3] [301] +06:40:22 ============================================================================ +06:40:22 + + +waiting on router queue for slot.... +06:40:22 Sending to : +06:40:22 ============================================================================ +06:40:22 ============================================================================ +06:40:22 Slot Id : <264> +06:40:22 Transaction Type : RESPONSE +06:40:22 Received From : +06:40:22 ============================================================================ +06:40:22 FNo. Len. Field Value +06:40:22 ============================================================================ +06:40:22 [ 1] [ 4] [0810] +06:40:22 [ 7] [ 10] [0319113930] +06:40:22 [ 11] [ 6] [154949] +06:40:22 [ 39] [ 2] [00] +06:40:22 [ 70] [ 3] [301] +06:40:22 ============================================================================ +06:40:22 Calculate Source COMM Id = 2 +06:40:22 ============================================================================ +06:40:22 + + +waiting on router queue for slot.... +06:40:30 ============================================================================ +06:40:30 Slot Id : <231> +06:40:30 Transaction Type : REQUEST +06:40:30 Received From : +06:40:30 ============================================================================ +06:40:30 FNo. Len. Field Value +06:40:30 ============================================================================ +06:40:30 [ 1] [ 4] [0800] +06:40:30 [ 2] [ 5] [02531] +06:40:30 [ 3] [ 6] [579068] +06:40:30 [ 7] [ 10] [0319234030] +06:40:30 [ 11] [ 6] [806799] +06:40:30 [ 15] [ 10] [0319234030] +06:40:30 [ 37] [ 11] [57906806799] +06:40:30 [ 70] [ 3] [001] +06:40:30 ============================================================================ +06:40:30 + + +waiting on router queue for slot.... +06:40:30 ============================================================================ +06:40:30 Slot Id : <231> +06:40:30 Transaction Type : RESPONSE +06:40:30 Received From : +06:40:30 ============================================================================ +06:40:30 FNo. Len. Field Value +06:40:30 ============================================================================ +06:40:30 [ 1] [ 4] [0810] +06:40:30 [ 7] [ 10] [0319234030] +06:40:30 [ 11] [ 6] [806799] +06:40:30 [ 15] [ 4] [0319] +06:40:30 [ 37] [ 12] [57906806799] +06:40:30 [ 39] [ 2] [00] +06:40:30 [ 70] [ 3] [001] +06:40:30 ============================================================================ +06:40:30 Sending to : +06:40:30 ============================================================================ +06:40:30 + + +waiting on router queue for slot.... +06:40:33 ============================================================================ +06:40:33 Slot Id : <279> +06:40:33 Transaction Type : REQUEST +06:40:33 Received From : +06:40:33 ============================================================================ +06:40:33 FNo. Len. Field Value +06:40:33 ============================================================================ +06:40:33 [ 1] [ 4] [0800] +06:40:33 [ 7] [ 10] [0319113941] +06:40:33 [ 11] [ 6] [154950] +06:40:33 [ 70] [ 3] [301] +06:40:33 ============================================================================ +06:40:33 + + +waiting on router queue for slot.... +06:40:33 Sending to : +06:40:33 ============================================================================ +06:40:33 ============================================================================ +06:40:33 Slot Id : <279> +06:40:33 Transaction Type : RESPONSE +06:40:33 Received From : +06:40:33 ============================================================================ +06:40:33 FNo. Len. Field Value +06:40:33 ============================================================================ +06:40:33 [ 1] [ 4] [0810] +06:40:33 [ 7] [ 10] [0319113941] +06:40:33 [ 11] [ 6] [154950] +06:40:33 [ 39] [ 2] [00] +06:40:33 [ 70] [ 3] [301] +06:40:33 ============================================================================ +06:40:33 Calculate Source COMM Id = 2 +06:40:33 ============================================================================ +06:40:33 + + +waiting on router queue for slot.... +06:40:41 ============================================================================ +06:40:41 Slot Id : <239> +06:40:41 Transaction Type : REQUEST +06:40:41 Received From : +06:40:41 ============================================================================ +06:40:41 FNo. Len. Field Value +06:40:41 ============================================================================ +06:40:41 [ 1] [ 4] [0200] +06:40:41 [ 2] [ 16] [6688990106052309] +06:40:41 [ 3] [ 6] [013000] +06:40:41 [ 4] [ 12] [000100000000] +06:40:41 [ 7] [ 10] [0320064037] +06:40:41 [ 11] [ 6] [664724] +06:40:41 [ 12] [ 6] [064037] +06:40:41 [ 13] [ 4] [0320] +06:40:41 [ 15] [ 4] [0320] +06:40:41 [ 18] [ 4] [6011] +06:40:41 [ 22] [ 3] [900] +06:40:41 [ 25] [ 2] [02] +06:40:41 [ 28] [ 9] [D00002000] +06:40:41 [ 32] [ 6] [621354] +06:40:41 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:40:41 [ 37] [ 12] [507903499398] +06:40:41 [ 41] [ 8] [06002200] +06:40:41 [ 42] [ 15] [NATIVE ] +06:40:41 [ 43] [ 40] [Beng Market Beng LAO] +06:40:41 [ 49] [ 3] [418] +06:40:41 [ 52] [ 16] [E32B191FA28F4880] +06:40:41 ============================================================================ +06:40:41 + + +waiting on router queue for slot.... +06:40:41 Sending to : +06:40:41 ============================================================================ +06:40:41 Sending to : +06:40:41 ============================================================================ +06:40:41 ============================================================================ +06:40:41 Slot Id : <239> +06:40:41 Transaction Type : REQUEST +06:40:41 Received From : +06:40:41 ============================================================================ +06:40:41 FNo. Len. Field Value +06:40:41 ============================================================================ +06:40:41 [ 1] [ 4] [0200] +06:40:41 [ 2] [ 16] [6688990106052309] +06:40:41 [ 3] [ 6] [013000] +06:40:41 [ 4] [ 12] [000100000000] +06:40:41 [ 7] [ 10] [0320064037] +06:40:41 [ 11] [ 6] [664724] +06:40:41 [ 12] [ 6] [064037] +06:40:41 [ 13] [ 4] [0320] +06:40:41 [ 15] [ 4] [0320] +06:40:41 [ 18] [ 4] [6011] +06:40:41 [ 22] [ 3] [900] +06:40:41 [ 25] [ 2] [02] +06:40:41 [ 28] [ 9] [D00002000] +06:40:41 [ 32] [ 6] [621354] +06:40:41 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:40:41 [ 37] [ 12] [507903499398] +06:40:41 [ 41] [ 8] [06002200] +06:40:41 [ 42] [ 15] [NATIVE ] +06:40:41 [ 43] [ 40] [Beng Market Beng LAO] +06:40:41 [ 49] [ 3] [418] +06:40:41 [ 52] [ 16] [E32B191FA28F4880] +06:40:41 ============================================================================ +06:40:41 + + +waiting on router queue for slot.... +06:40:41 Sending to : +06:40:41 ============================================================================ +06:40:41 ============================================================================ +06:40:41 Slot Id : <239> +06:40:41 Transaction Type : REQUEST +06:40:41 Received From : +06:40:41 ============================================================================ +06:40:41 FNo. Len. Field Value +06:40:41 ============================================================================ +06:40:41 [ 1] [ 4] [0200] +06:40:41 [ 2] [ 16] [6688990106052309] +06:40:41 [ 3] [ 6] [013000] +06:40:41 [ 4] [ 12] [000100000000] +06:40:41 [ 7] [ 10] [0320064037] +06:40:41 [ 11] [ 6] [664724] +06:40:41 [ 12] [ 6] [064037] +06:40:41 [ 13] [ 4] [0320] +06:40:41 [ 15] [ 4] [0320] +06:40:41 [ 18] [ 4] [6011] +06:40:41 [ 22] [ 3] [900] +06:40:41 [ 25] [ 2] [02] +06:40:41 [ 28] [ 9] [D00002000] +06:40:41 [ 32] [ 6] [621354] +06:40:41 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:40:41 [ 37] [ 12] [507903499398] +06:40:41 [ 41] [ 8] [06002200] +06:40:41 [ 42] [ 15] [NATIVE ] +06:40:41 [ 43] [ 40] [Beng Market Beng LAO] +06:40:41 [ 49] [ 3] [418] +06:40:41 [ 52] [ 16] [63A823F46DBB9486] +06:40:41 ============================================================================ +06:40:41 + + +waiting on router queue for slot.... +06:40:41 Sending to : <4> +06:40:41 ============================================================================ +06:40:42 ============================================================================ +06:40:42 Slot Id : <239> +06:40:42 Transaction Type : RESPONSE +06:40:42 Received From : +06:40:42 ============================================================================ +06:40:42 FNo. Len. Field Value +06:40:42 ============================================================================ +06:40:42 [ 1] [ 4] [0210] +06:40:42 [ 2] [ 16] [6688990106052309] +06:40:42 [ 3] [ 6] [013000] +06:40:42 [ 4] [ 12] [000100000000] +06:40:42 [ 11] [ 6] [664724] +06:40:42 [ 12] [ 6] [064037] +06:40:42 [ 15] [ 4] [0320] +06:40:42 [ 18] [ 4] [6011] +06:40:42 [ 32] [ 6] [621354] +06:40:42 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:40:42 [ 37] [ 12] [507903499398] +06:40:42 [ 38] [ 6] [388906] +06:40:42 [ 39] [ 2] [00] +06:40:42 [ 41] [ 8] [06002200] +06:40:42 [ 49] [ 3] [418] +06:40:42 [ 54] [ 20] [3002418C000147411342] +06:40:42 ============================================================================ +06:40:42 Sending to : +06:40:42 ============================================================================ +06:40:42 + + +waiting on router queue for slot.... +06:40:44 ============================================================================ +06:40:44 Slot Id : <239> +06:40:44 Transaction Type : RESPONSE +06:40:44 Received From : +06:40:44 ============================================================================ +06:40:44 FNo. Len. Field Value +06:40:44 ============================================================================ +06:40:44 [ 1] [ 4] [0210] +06:40:44 [ 2] [ 16] [6688990106052309] +06:40:44 [ 3] [ 6] [013000] +06:40:44 [ 4] [ 12] [000100000000] +06:40:44 [ 11] [ 6] [664724] +06:40:44 [ 12] [ 6] [064037] +06:40:44 [ 15] [ 4] [0320] +06:40:44 [ 18] [ 4] [6011] +06:40:44 [ 32] [ 6] [621354] +06:40:44 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:40:44 [ 37] [ 12] [507903499398] +06:40:44 [ 38] [ 6] [388906] +06:40:44 [ 39] [ 2] [00] +06:40:44 [ 41] [ 8] [06002200] +06:40:44 [ 49] [ 3] [418] +06:40:44 [ 54] [ 20] [3002418C000147411342] +06:40:44 ============================================================================ +06:40:44 Calculate Source COMM Id = 0 +06:40:44 ============================================================================ +06:40:44 + + +waiting on router queue for slot.... +06:40:44 ============================================================================ +06:40:44 Slot Id : <254> +06:40:44 Transaction Type : REQUEST +06:40:44 Received From : +06:40:44 ============================================================================ +06:40:44 FNo. Len. Field Value +06:40:44 ============================================================================ +06:40:44 [ 1] [ 4] [0800] +06:40:44 [ 7] [ 10] [0319113953] +06:40:44 [ 11] [ 6] [154951] +06:40:44 [ 70] [ 3] [301] +06:40:44 ============================================================================ +06:40:44 + + +waiting on router queue for slot.... +06:40:44 Sending to : +06:40:44 ============================================================================ +06:40:44 ============================================================================ +06:40:44 Slot Id : <254> +06:40:44 Transaction Type : RESPONSE +06:40:44 Received From : +06:40:44 ============================================================================ +06:40:44 FNo. Len. Field Value +06:40:44 ============================================================================ +06:40:44 [ 1] [ 4] [0810] +06:40:44 [ 7] [ 10] [0319113953] +06:40:44 [ 11] [ 6] [154951] +06:40:44 [ 39] [ 2] [00] +06:40:44 [ 70] [ 3] [301] +06:40:44 ============================================================================ +06:40:44 Calculate Source COMM Id = 2 +06:40:44 ============================================================================ +06:40:44 + + +waiting on router queue for slot.... +06:40:52 ============================================================================ +06:40:52 Slot Id : <273> +06:40:52 Transaction Type : REQUEST +06:40:52 Received From : +06:40:52 ============================================================================ +06:40:52 FNo. Len. Field Value +06:40:52 ============================================================================ +06:40:52 [ 1] [ 4] [0800] +06:40:52 [ 7] [ 10] [0320135240] +06:40:52 [ 11] [ 6] [065240] +06:40:52 [ 37] [ 12] [57906065240] +06:40:52 [ 70] [ 3] [301] +06:40:52 ============================================================================ +06:40:52 + + +waiting on router queue for slot.... +06:40:52 Sending to : +06:40:52 ============================================================================ +06:40:52 ============================================================================ +06:40:52 Slot Id : <273> +06:40:52 Transaction Type : RESPONSE +06:40:52 Received From : +06:40:52 ============================================================================ +06:40:52 FNo. Len. Field Value +06:40:52 ============================================================================ +06:40:52 [ 1] [ 4] [0810] +06:40:52 [ 7] [ 10] [0320135240] +06:40:52 [ 11] [ 6] [065240] +06:40:52 [ 37] [ 12] [579060652400] +06:40:52 [ 39] [ 2] [00] +06:40:52 [ 70] [ 3] [810] +06:40:52 ============================================================================ +06:40:52 Calculate Source COMM Id = 6 +06:40:52 ============================================================================ +06:40:52 + + +waiting on router queue for slot.... +06:40:55 ============================================================================ +06:40:55 Slot Id : <266> +06:40:55 Transaction Type : REQUEST +06:40:55 Received From : +06:40:55 ============================================================================ +06:40:55 FNo. Len. Field Value +06:40:55 ============================================================================ +06:40:55 [ 1] [ 4] [0800] +06:40:55 [ 7] [ 10] [0319114003] +06:40:55 [ 11] [ 6] [154952] +06:40:55 [ 70] [ 3] [301] +06:40:55 ============================================================================ +06:40:55 + + +waiting on router queue for slot.... +06:40:55 Sending to : +06:40:55 ============================================================================ +06:40:55 ============================================================================ +06:40:55 Slot Id : <266> +06:40:55 Transaction Type : RESPONSE +06:40:55 Received From : +06:40:55 ============================================================================ +06:40:55 FNo. Len. Field Value +06:40:55 ============================================================================ +06:40:55 [ 1] [ 4] [0810] +06:40:55 [ 7] [ 10] [0319114003] +06:40:55 [ 11] [ 6] [154952] +06:40:55 [ 39] [ 2] [00] +06:40:55 [ 70] [ 3] [301] +06:40:55 ============================================================================ +06:40:55 Calculate Source COMM Id = 2 +06:40:55 ============================================================================ +06:40:55 + + +waiting on router queue for slot.... +06:41:06 ============================================================================ +06:41:06 Slot Id : <272> +06:41:06 Transaction Type : REQUEST +06:41:06 Received From : +06:41:06 ============================================================================ +06:41:06 FNo. Len. Field Value +06:41:06 ============================================================================ +06:41:06 [ 1] [ 4] [0800] +06:41:06 [ 7] [ 10] [0319114014] +06:41:06 [ 11] [ 6] [154953] +06:41:06 [ 70] [ 3] [301] +06:41:06 ============================================================================ +06:41:06 + + +waiting on router queue for slot.... +06:41:06 Sending to : +06:41:06 ============================================================================ +06:41:06 ============================================================================ +06:41:06 Slot Id : <272> +06:41:06 Transaction Type : RESPONSE +06:41:06 Received From : +06:41:06 ============================================================================ +06:41:06 FNo. Len. Field Value +06:41:06 ============================================================================ +06:41:06 [ 1] [ 4] [0810] +06:41:06 [ 7] [ 10] [0319114014] +06:41:06 [ 11] [ 6] [154953] +06:41:06 [ 39] [ 2] [00] +06:41:06 [ 70] [ 3] [301] +06:41:06 ============================================================================ +06:41:06 Calculate Source COMM Id = 2 +06:41:06 ============================================================================ +06:41:06 + + +waiting on router queue for slot.... +06:41:17 ============================================================================ +06:41:17 Slot Id : <282> +06:41:17 Transaction Type : REQUEST +06:41:17 Received From : +06:41:17 ============================================================================ +06:41:17 FNo. Len. Field Value +06:41:17 ============================================================================ +06:41:17 [ 1] [ 4] [0800] +06:41:17 [ 7] [ 10] [0319114025] +06:41:17 [ 11] [ 6] [154954] +06:41:17 [ 70] [ 3] [301] +06:41:17 ============================================================================ +06:41:17 + + +waiting on router queue for slot.... +06:41:17 Sending to : +06:41:17 ============================================================================ +06:41:17 ============================================================================ +06:41:17 Slot Id : <282> +06:41:17 Transaction Type : RESPONSE +06:41:17 Received From : +06:41:17 ============================================================================ +06:41:17 FNo. Len. Field Value +06:41:17 ============================================================================ +06:41:17 [ 1] [ 4] [0810] +06:41:17 [ 7] [ 10] [0319114025] +06:41:17 [ 11] [ 6] [154954] +06:41:17 [ 39] [ 2] [00] +06:41:17 [ 70] [ 3] [301] +06:41:17 ============================================================================ +06:41:17 Calculate Source COMM Id = 2 +06:41:17 ============================================================================ +06:41:17 + + +waiting on router queue for slot.... +06:41:20 ============================================================================ +06:41:20 Slot Id : <241> +06:41:20 Transaction Type : REQUEST +06:41:20 Received From : +06:41:20 ============================================================================ +06:41:20 FNo. Len. Field Value +06:41:20 ============================================================================ +06:41:20 [ 1] [ 4] [0800] +06:41:20 [ 7] [ 10] [0319233912] +06:41:20 [ 11] [ 6] [092447] +06:41:20 [ 37] [ 12] [57906092447] +06:41:20 [ 70] [ 3] [301] +06:41:20 ============================================================================ +06:41:20 + + +waiting on router queue for slot.... +06:41:20 Sending to : +06:41:20 ============================================================================ +06:41:20 ============================================================================ +06:41:20 Slot Id : <241> +06:41:20 Transaction Type : RESPONSE +06:41:20 Received From : +06:41:20 ============================================================================ +06:41:20 FNo. Len. Field Value +06:41:20 ============================================================================ +06:41:20 [ 1] [ 4] [0810] +06:41:20 [ 7] [ 10] [0319233912] +06:41:20 [ 11] [ 6] [092447] +06:41:20 [ 37] [ 12] [579060924470] +06:41:20 [ 39] [ 2] [00] +06:41:20 [ 70] [ 3] [810] +06:41:20 ============================================================================ +06:41:20 Calculate Source COMM Id = 4 +06:41:20 ============================================================================ +06:41:20 + + +waiting on router queue for slot.... +06:41:29 ============================================================================ +06:41:29 Slot Id : <252> +06:41:29 Transaction Type : REQUEST +06:41:29 Received From : +06:41:29 ============================================================================ +06:41:29 FNo. Len. Field Value +06:41:29 ============================================================================ +06:41:29 [ 1] [ 4] [0800] +06:41:29 [ 7] [ 10] [0319114037] +06:41:29 [ 11] [ 6] [154955] +06:41:29 [ 70] [ 3] [301] +06:41:29 ============================================================================ +06:41:29 + + +waiting on router queue for slot.... +06:41:29 Sending to : +06:41:29 ============================================================================ +06:41:29 ============================================================================ +06:41:29 Slot Id : <252> +06:41:29 Transaction Type : RESPONSE +06:41:29 Received From : +06:41:29 ============================================================================ +06:41:29 FNo. Len. Field Value +06:41:29 ============================================================================ +06:41:29 [ 1] [ 4] [0810] +06:41:29 [ 7] [ 10] [0319114037] +06:41:29 [ 11] [ 6] [154955] +06:41:29 [ 39] [ 2] [00] +06:41:29 [ 70] [ 3] [301] +06:41:29 ============================================================================ +06:41:29 Calculate Source COMM Id = 2 +06:41:29 ============================================================================ +06:41:29 + + +waiting on router queue for slot.... +06:41:32 ============================================================================ +06:41:32 Slot Id : <245> +06:41:32 Transaction Type : REQUEST +06:41:32 Received From : +06:41:32 ============================================================================ +06:41:32 FNo. Len. Field Value +06:41:32 ============================================================================ +06:41:32 [ 1] [ 4] [0800] +06:41:32 [ 2] [ 5] [02531] +06:41:32 [ 3] [ 6] [579068] +06:41:32 [ 7] [ 10] [0319234132] +06:41:32 [ 11] [ 6] [806800] +06:41:32 [ 15] [ 10] [0319234132] +06:41:32 [ 37] [ 11] [57906806800] +06:41:32 [ 70] [ 3] [001] +06:41:32 ============================================================================ +06:41:32 + + +waiting on router queue for slot.... +06:41:32 ============================================================================ +06:41:32 Slot Id : <245> +06:41:32 Transaction Type : RESPONSE +06:41:32 Received From : +06:41:32 ============================================================================ +06:41:32 FNo. Len. Field Value +06:41:32 ============================================================================ +06:41:32 [ 1] [ 4] [0810] +06:41:32 [ 7] [ 10] [0319234132] +06:41:32 [ 11] [ 6] [806800] +06:41:32 [ 15] [ 4] [0319] +06:41:32 [ 37] [ 12] [57906806800] +06:41:32 [ 39] [ 2] [00] +06:41:32 [ 70] [ 3] [001] +06:41:32 ============================================================================ +06:41:32 Sending to : +06:41:32 ============================================================================ +06:41:32 + + +waiting on router queue for slot.... +06:41:40 ============================================================================ +06:41:40 Slot Id : <276> +06:41:40 Transaction Type : REQUEST +06:41:40 Received From : +06:41:40 ============================================================================ +06:41:40 FNo. Len. Field Value +06:41:40 ============================================================================ +06:41:40 [ 1] [ 4] [0200] +06:41:40 [ 2] [ 16] [6213548000032407] +06:41:40 [ 3] [ 6] [010000] +06:41:40 [ 4] [ 12] [000030000000] +06:41:40 [ 7] [ 10] [0320063932] +06:41:40 [ 11] [ 6] [929236] +06:41:40 [ 12] [ 6] [063932] +06:41:40 [ 13] [ 4] [0320] +06:41:40 [ 15] [ 4] [0320] +06:41:40 [ 18] [ 4] [6011] +06:41:40 [ 19] [ 3] [418] +06:41:40 [ 22] [ 3] [021] +06:41:40 [ 25] [ 2] [01] +06:41:40 [ 28] [ 9] [D00002000] +06:41:40 [ 32] [ 6] [668899] +06:41:40 [ 35] [ 32] [6213548000032407=130612013240552] +06:41:40 [ 37] [ 12] [507901856050] +06:41:40 [ 41] [ 8] [03311001] +06:41:40 [ 42] [ 15] [APT ] +06:41:40 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +06:41:40 [ 49] [ 3] [418] +06:41:40 [ 52] [ 16] [CD8BED9A55EC33A2] +06:41:40 ============================================================================ +06:41:40 + + +waiting on router queue for slot.... +06:41:40 Sending to : +06:41:40 ============================================================================ +06:41:40 Sending to : +06:41:40 ============================================================================ +06:41:40 ============================================================================ +06:41:40 Slot Id : <280> +06:41:40 Transaction Type : REQUEST +06:41:40 Received From : +06:41:40 ============================================================================ +06:41:40 FNo. Len. Field Value +06:41:40 ============================================================================ +06:41:40 [ 1] [ 4] [0800] +06:41:40 [ 7] [ 10] [0319114049] +06:41:40 [ 11] [ 6] [154956] +06:41:40 [ 70] [ 3] [301] +06:41:40 ============================================================================ +06:41:40 + + +waiting on router queue for slot.... +06:41:40 Sending to : +06:41:40 ============================================================================ +06:41:40 ============================================================================ +06:41:40 Slot Id : <280> +06:41:40 Transaction Type : RESPONSE +06:41:40 Received From : +06:41:40 ============================================================================ +06:41:40 FNo. Len. Field Value +06:41:40 ============================================================================ +06:41:40 [ 1] [ 4] [0810] +06:41:40 [ 7] [ 10] [0319114049] +06:41:40 [ 11] [ 6] [154956] +06:41:40 [ 39] [ 2] [00] +06:41:40 [ 70] [ 3] [301] +06:41:40 ============================================================================ +06:41:40 Calculate Source COMM Id = 2 +06:41:40 ============================================================================ +06:41:40 + + +waiting on router queue for slot.... +06:41:40 ============================================================================ +06:41:40 Slot Id : <276> +06:41:40 Transaction Type : REQUEST +06:41:40 Received From : +06:41:40 ============================================================================ +06:41:40 FNo. Len. Field Value +06:41:40 ============================================================================ +06:41:40 [ 1] [ 4] [0200] +06:41:40 [ 2] [ 16] [6213548000032407] +06:41:40 [ 3] [ 6] [010000] +06:41:40 [ 4] [ 12] [000030000000] +06:41:40 [ 7] [ 10] [0320063932] +06:41:40 [ 11] [ 6] [929236] +06:41:40 [ 12] [ 6] [063932] +06:41:40 [ 13] [ 4] [0320] +06:41:40 [ 15] [ 4] [0320] +06:41:40 [ 18] [ 4] [6011] +06:41:40 [ 19] [ 3] [418] +06:41:40 [ 22] [ 3] [021] +06:41:40 [ 25] [ 2] [01] +06:41:40 [ 28] [ 9] [D00002000] +06:41:40 [ 32] [ 6] [668899] +06:41:40 [ 35] [ 32] [6213548000032407=130612013240552] +06:41:40 [ 37] [ 12] [507901856050] +06:41:40 [ 41] [ 8] [03311001] +06:41:40 [ 42] [ 15] [APT ] +06:41:40 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +06:41:40 [ 49] [ 3] [418] +06:41:40 [ 52] [ 16] [CD8BED9A55EC33A2] +06:41:40 ============================================================================ +06:41:40 + + +waiting on router queue for slot.... +06:41:40 Sending to : +06:41:40 ============================================================================ +06:41:40 ============================================================================ +06:41:40 Slot Id : <276> +06:41:40 Transaction Type : REQUEST +06:41:40 Received From : +06:41:40 ============================================================================ +06:41:40 FNo. Len. Field Value +06:41:40 ============================================================================ +06:41:40 [ 1] [ 4] [0200] +06:41:40 [ 2] [ 16] [6213548000032407] +06:41:40 [ 3] [ 6] [010000] +06:41:40 [ 4] [ 12] [000030000000] +06:41:40 [ 7] [ 10] [0320063932] +06:41:40 [ 11] [ 6] [929236] +06:41:40 [ 12] [ 6] [063932] +06:41:40 [ 13] [ 4] [0320] +06:41:40 [ 15] [ 4] [0320] +06:41:40 [ 18] [ 4] [6011] +06:41:40 [ 19] [ 3] [418] +06:41:40 [ 22] [ 3] [021] +06:41:40 [ 25] [ 2] [01] +06:41:40 [ 28] [ 9] [D00002000] +06:41:40 [ 32] [ 6] [668899] +06:41:40 [ 35] [ 32] [6213548000032407=130612013240552] +06:41:40 [ 37] [ 12] [507901856050] +06:41:40 [ 41] [ 8] [03311001] +06:41:40 [ 42] [ 15] [APT ] +06:41:40 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +06:41:40 [ 49] [ 3] [418] +06:41:40 [ 52] [ 16] [A0A425C9206FF880] +06:41:40 ============================================================================ +06:41:40 + + +waiting on router queue for slot.... +06:41:40 Sending to : <0> +06:41:40 ============================================================================ +06:41:41 ============================================================================ +06:41:41 Slot Id : <276> +06:41:41 Transaction Type : RESPONSE +06:41:41 Received From : +06:41:41 ============================================================================ +06:41:41 FNo. Len. Field Value +06:41:41 ============================================================================ +06:41:41 [ 1] [ 4] [0210] +06:41:41 [ 2] [ 16] [6213548000032407] +06:41:41 [ 3] [ 6] [010000] +06:41:41 [ 4] [ 12] [000030000000] +06:41:41 [ 7] [ 10] [0320063932] +06:41:41 [ 11] [ 6] [929236] +06:41:41 [ 12] [ 6] [063932] +06:41:41 [ 13] [ 4] [0320] +06:41:41 [ 15] [ 4] [0320] +06:41:41 [ 18] [ 4] [6011] +06:41:41 [ 19] [ 3] [418] +06:41:41 [ 32] [ 6] [668899] +06:41:41 [ 35] [ 32] [6213548000032407=130612013240552] +06:41:41 [ 37] [ 12] [507901856050] +06:41:41 [ 38] [ 6] [461833] +06:41:41 [ 39] [ 2] [00] +06:41:41 [ 41] [ 8] [03311001] +06:41:41 [ 49] [ 3] [418] +06:41:41 [ 54] [ 40] [0001418C0000136912700002418C000013691270] +06:41:41 ============================================================================ +06:41:41 Sending to : +06:41:41 ============================================================================ +06:41:41 + + +waiting on router queue for slot.... +06:41:43 ============================================================================ +06:41:43 Slot Id : <276> +06:41:43 Transaction Type : RESPONSE +06:41:43 Received From : +06:41:43 ============================================================================ +06:41:43 FNo. Len. Field Value +06:41:43 ============================================================================ +06:41:43 [ 1] [ 4] [0210] +06:41:43 [ 2] [ 16] [6213548000032407] +06:41:43 [ 3] [ 6] [010000] +06:41:43 [ 4] [ 12] [000030000000] +06:41:43 [ 7] [ 10] [0320063932] +06:41:43 [ 11] [ 6] [929236] +06:41:43 [ 12] [ 6] [063932] +06:41:43 [ 13] [ 4] [0320] +06:41:43 [ 15] [ 4] [0320] +06:41:43 [ 18] [ 4] [6011] +06:41:43 [ 19] [ 3] [418] +06:41:43 [ 32] [ 6] [668899] +06:41:43 [ 35] [ 32] [6213548000032407=130612013240552] +06:41:43 [ 37] [ 12] [507901856050] +06:41:43 [ 38] [ 6] [461833] +06:41:43 [ 39] [ 2] [00] +06:41:43 [ 41] [ 8] [03311001] +06:41:43 [ 49] [ 3] [418] +06:41:43 [ 54] [ 40] [0001418C0000136912700002418C000013691270] +06:41:43 ============================================================================ +06:41:43 Calculate Source COMM Id = 4 +06:41:43 ============================================================================ +06:41:43 + + +waiting on router queue for slot.... +06:41:51 ============================================================================ +06:41:51 Slot Id : <284> +06:41:51 Transaction Type : REQUEST +06:41:51 Received From : +06:41:51 ============================================================================ +06:41:51 FNo. Len. Field Value +06:41:51 ============================================================================ +06:41:51 [ 1] [ 4] [0200] +06:41:51 [ 2] [ 16] [6688990103749907] +06:41:51 [ 3] [ 6] [010000] +06:41:51 [ 4] [ 12] [000010000000] +06:41:51 [ 7] [ 10] [0319234058] +06:41:51 [ 11] [ 6] [266652] +06:41:51 [ 12] [ 6] [064058] +06:41:51 [ 13] [ 4] [0320] +06:41:51 [ 14] [ 4] [4302] +06:41:51 [ 15] [ 4] [0320] +06:41:51 [ 18] [ 4] [6011] +06:41:51 [ 19] [ 3] [418] +06:41:51 [ 22] [ 3] [021] +06:41:51 [ 25] [ 2] [01] +06:41:51 [ 28] [ 9] [D00002000] +06:41:51 [ 32] [ 6] [180893] +06:41:51 [ 35] [ 37] [6688990103749907=43021231990793700000] +06:41:51 [ 37] [ 12] [507923266652] +06:41:51 [ 41] [ 8] [0221XKKM] +06:41:51 [ 42] [ 15] [999999 ] +06:41:51 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +06:41:51 [ 49] [ 3] [418] +06:41:51 [ 52] [ 16] [E07723C5EB183D93] +06:41:51 ============================================================================ +06:41:51 + + +waiting on router queue for slot.... +06:41:51 Sending to : +06:41:51 ============================================================================ +06:41:51 Sending to : +06:41:51 ============================================================================ +06:41:51 ============================================================================ +06:41:51 Slot Id : <258> +06:41:51 Transaction Type : REQUEST +06:41:51 Received From : +06:41:51 ============================================================================ +06:41:51 FNo. Len. Field Value +06:41:51 ============================================================================ +06:41:51 [ 1] [ 4] [0800] +06:41:51 [ 7] [ 10] [0319114100] +06:41:51 [ 11] [ 6] [154957] +06:41:51 [ 70] [ 3] [301] +06:41:51 ============================================================================ +06:41:51 + + +waiting on router queue for slot.... +06:41:51 Sending to : +06:41:51 ============================================================================ +06:41:51 ============================================================================ +06:41:51 Slot Id : <258> +06:41:51 Transaction Type : RESPONSE +06:41:51 Received From : +06:41:51 ============================================================================ +06:41:51 FNo. Len. Field Value +06:41:51 ============================================================================ +06:41:51 [ 1] [ 4] [0810] +06:41:51 [ 7] [ 10] [0319114100] +06:41:51 [ 11] [ 6] [154957] +06:41:51 [ 39] [ 2] [00] +06:41:51 [ 70] [ 3] [301] +06:41:51 ============================================================================ +06:41:51 Calculate Source COMM Id = 2 +06:41:51 ============================================================================ +06:41:51 + + +waiting on router queue for slot.... +06:41:52 ============================================================================ +06:41:52 Slot Id : <284> +06:41:52 Transaction Type : REQUEST +06:41:52 Received From : +06:41:52 ============================================================================ +06:41:52 FNo. Len. Field Value +06:41:52 ============================================================================ +06:41:52 [ 1] [ 4] [0200] +06:41:52 [ 2] [ 16] [6688990103749907] +06:41:52 [ 3] [ 6] [010000] +06:41:52 [ 4] [ 12] [000010000000] +06:41:52 [ 7] [ 10] [0319234058] +06:41:52 [ 11] [ 6] [266652] +06:41:52 [ 12] [ 6] [064058] +06:41:52 [ 13] [ 4] [0320] +06:41:52 [ 14] [ 4] [4302] +06:41:52 [ 15] [ 4] [0320] +06:41:52 [ 18] [ 4] [6011] +06:41:52 [ 19] [ 3] [418] +06:41:52 [ 22] [ 3] [021] +06:41:52 [ 25] [ 2] [01] +06:41:52 [ 28] [ 9] [D00002000] +06:41:52 [ 32] [ 6] [180893] +06:41:52 [ 35] [ 37] [6688990103749907=43021231990793700000] +06:41:52 [ 37] [ 12] [507923266652] +06:41:52 [ 41] [ 8] [0221XKKM] +06:41:52 [ 42] [ 15] [999999 ] +06:41:52 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +06:41:52 [ 49] [ 3] [418] +06:41:52 [ 52] [ 16] [E07723C5EB183D93] +06:41:52 ============================================================================ +06:41:52 + + +waiting on router queue for slot.... +06:41:52 Sending to : +06:41:52 ============================================================================ +06:41:52 ============================================================================ +06:41:52 Slot Id : <284> +06:41:52 Transaction Type : REQUEST +06:41:52 Received From : +06:41:52 ============================================================================ +06:41:52 FNo. Len. Field Value +06:41:52 ============================================================================ +06:41:52 [ 1] [ 4] [0200] +06:41:52 [ 2] [ 16] [6688990103749907] +06:41:52 [ 3] [ 6] [010000] +06:41:52 [ 4] [ 12] [000010000000] +06:41:52 [ 7] [ 10] [0319234058] +06:41:52 [ 11] [ 6] [266652] +06:41:52 [ 12] [ 6] [064058] +06:41:52 [ 13] [ 4] [0320] +06:41:52 [ 14] [ 4] [4302] +06:41:52 [ 15] [ 4] [0320] +06:41:52 [ 18] [ 4] [6011] +06:41:52 [ 19] [ 3] [418] +06:41:52 [ 22] [ 3] [021] +06:41:52 [ 25] [ 2] [01] +06:41:52 [ 28] [ 9] [D00002000] +06:41:52 [ 32] [ 6] [180893] +06:41:52 [ 35] [ 37] [6688990103749907=43021231990793700000] +06:41:52 [ 37] [ 12] [507923266652] +06:41:52 [ 41] [ 8] [0221XKKM] +06:41:52 [ 42] [ 15] [999999 ] +06:41:52 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +06:41:52 [ 49] [ 3] [418] +06:41:52 [ 52] [ 16] [CADD1178354EB7E5] +06:41:52 ============================================================================ +06:41:52 + + +waiting on router queue for slot.... +06:41:52 Sending to : <0> +06:41:52 ============================================================================ +06:41:52 ============================================================================ +06:41:52 Slot Id : <284> +06:41:52 Transaction Type : RESPONSE +06:41:52 Received From : +06:41:52 ============================================================================ +06:41:52 FNo. Len. Field Value +06:41:52 ============================================================================ +06:41:52 [ 1] [ 4] [0210] +06:41:52 [ 2] [ 16] [6688990103749907] +06:41:52 [ 3] [ 6] [010000] +06:41:52 [ 4] [ 12] [000010000000] +06:41:52 [ 7] [ 10] [0319234058] +06:41:52 [ 11] [ 6] [266652] +06:41:52 [ 12] [ 6] [064058] +06:41:52 [ 13] [ 4] [0320] +06:41:52 [ 15] [ 4] [0320] +06:41:52 [ 18] [ 4] [6011] +06:41:52 [ 19] [ 3] [418] +06:41:52 [ 22] [ 3] [021] +06:41:52 [ 32] [ 6] [180893] +06:41:52 [ 35] [ 37] [6688990103749907=43021231990793700000] +06:41:52 [ 37] [ 12] [507923266652] +06:41:52 [ 39] [ 2] [14] +06:41:52 [ 41] [ 8] [0221XKKM] +06:41:52 [ 49] [ 3] [418] +06:41:52 ============================================================================ +06:41:52 Sending to : +06:41:52 ============================================================================ +06:41:52 + + +waiting on router queue for slot.... +06:41:53 ============================================================================ +06:41:53 Slot Id : <284> +06:41:53 Transaction Type : RESPONSE +06:41:53 Received From : +06:41:53 ============================================================================ +06:41:53 FNo. Len. Field Value +06:41:53 ============================================================================ +06:41:53 [ 1] [ 4] [0210] +06:41:53 [ 2] [ 16] [6688990103749907] +06:41:53 [ 3] [ 6] [010000] +06:41:53 [ 4] [ 12] [000010000000] +06:41:53 [ 7] [ 10] [0319234058] +06:41:53 [ 11] [ 6] [266652] +06:41:53 [ 12] [ 6] [064058] +06:41:53 [ 13] [ 4] [0320] +06:41:53 [ 15] [ 4] [0320] +06:41:53 [ 18] [ 4] [6011] +06:41:53 [ 19] [ 3] [418] +06:41:53 [ 22] [ 3] [021] +06:41:53 [ 32] [ 6] [180893] +06:41:53 [ 35] [ 37] [6688990103749907=43021231990793700000] +06:41:53 [ 37] [ 12] [507923266652] +06:41:53 [ 39] [ 2] [14] +06:41:53 [ 41] [ 8] [0221XKKM] +06:41:53 [ 49] [ 3] [418] +06:41:53 ============================================================================ +06:41:53 Calculate Source COMM Id = 2 +06:41:53 ============================================================================ +06:41:53 + + +waiting on router queue for slot.... +06:41:57 ============================================================================ +06:41:57 Slot Id : <219> +06:41:57 Transaction Type : REQUEST +06:41:57 Received From : +06:41:57 ============================================================================ +06:41:57 FNo. Len. Field Value +06:41:57 ============================================================================ +06:41:57 [ 1] [ 4] [0800] +06:41:57 [ 7] [ 10] [0320135345] +06:41:57 [ 11] [ 6] [065345] +06:41:57 [ 37] [ 12] [57906065345] +06:41:57 [ 70] [ 3] [301] +06:41:57 ============================================================================ +06:41:57 + + +waiting on router queue for slot.... +06:41:57 Sending to : +06:41:57 ============================================================================ +06:41:57 ============================================================================ +06:41:57 Slot Id : <219> +06:41:57 Transaction Type : RESPONSE +06:41:57 Received From : +06:41:57 ============================================================================ +06:41:57 FNo. Len. Field Value +06:41:57 ============================================================================ +06:41:57 [ 1] [ 4] [0810] +06:41:57 [ 7] [ 10] [0320135345] +06:41:57 [ 11] [ 6] [065345] +06:41:57 [ 37] [ 12] [579060653450] +06:41:57 [ 39] [ 2] [00] +06:41:57 [ 70] [ 3] [810] +06:41:57 ============================================================================ +06:41:57 Calculate Source COMM Id = 6 +06:41:57 ============================================================================ +06:41:57 + + +waiting on router queue for slot.... +06:42:01 ============================================================================ +06:42:01 Slot Id : <224> +06:42:01 Transaction Type : REQUEST +06:42:01 Received From : +06:42:01 ============================================================================ +06:42:01 FNo. Len. Field Value +06:42:01 ============================================================================ +06:42:01 [ 1] [ 4] [0200] +06:42:01 [ 2] [ 16] [2206990000092155] +06:42:01 [ 3] [ 6] [010000] +06:42:01 [ 4] [ 12] [000100000000] +06:42:01 [ 7] [ 10] [0320064158] +06:42:01 [ 11] [ 6] [664838] +06:42:01 [ 12] [ 6] [064158] +06:42:01 [ 13] [ 4] [0320] +06:42:01 [ 15] [ 4] [0320] +06:42:01 [ 18] [ 4] [6011] +06:42:01 [ 22] [ 3] [900] +06:42:01 [ 25] [ 2] [02] +06:42:01 [ 28] [ 9] [D00002000] +06:42:01 [ 32] [ 6] [621354] +06:42:01 [ 35] [ 32] [2206990000092155=971012614426313] +06:42:01 [ 37] [ 12] [507904119555] +06:42:01 [ 41] [ 8] [08000800] +06:42:01 [ 42] [ 15] [NATIVE ] +06:42:01 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:42:01 [ 49] [ 3] [418] +06:42:01 [ 52] [ 16] [B1A2E93DB6E8A815] +06:42:01 ============================================================================ +06:42:01 + + +waiting on router queue for slot.... +06:42:01 Sending to : +06:42:01 ============================================================================ +06:42:01 Sending to : +06:42:01 ============================================================================ +06:42:02 ============================================================================ +06:42:02 Slot Id : <224> +06:42:02 Transaction Type : REQUEST +06:42:02 Received From : +06:42:02 ============================================================================ +06:42:02 FNo. Len. Field Value +06:42:02 ============================================================================ +06:42:02 [ 1] [ 4] [0200] +06:42:02 [ 2] [ 16] [2206990000092155] +06:42:02 [ 3] [ 6] [010000] +06:42:02 [ 4] [ 12] [000100000000] +06:42:02 [ 7] [ 10] [0320064158] +06:42:02 [ 11] [ 6] [664838] +06:42:02 [ 12] [ 6] [064158] +06:42:02 [ 13] [ 4] [0320] +06:42:02 [ 15] [ 4] [0320] +06:42:02 [ 18] [ 4] [6011] +06:42:02 [ 22] [ 3] [900] +06:42:02 [ 25] [ 2] [02] +06:42:02 [ 28] [ 9] [D00002000] +06:42:02 [ 32] [ 6] [621354] +06:42:02 [ 35] [ 32] [2206990000092155=971012614426313] +06:42:02 [ 37] [ 12] [507904119555] +06:42:02 [ 41] [ 8] [08000800] +06:42:02 [ 42] [ 15] [NATIVE ] +06:42:02 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:42:02 [ 49] [ 3] [418] +06:42:02 [ 52] [ 16] [B1A2E93DB6E8A815] +06:42:02 ============================================================================ +06:42:02 + + +waiting on router queue for slot.... +06:42:02 Sending to : +06:42:02 ============================================================================ +06:42:02 ============================================================================ +06:42:02 Slot Id : <224> +06:42:02 Transaction Type : REQUEST +06:42:02 Received From : +06:42:02 ============================================================================ +06:42:02 FNo. Len. Field Value +06:42:02 ============================================================================ +06:42:02 [ 1] [ 4] [0200] +06:42:02 [ 2] [ 16] [2206990000092155] +06:42:02 [ 3] [ 6] [010000] +06:42:02 [ 4] [ 12] [000100000000] +06:42:02 [ 7] [ 10] [0320064158] +06:42:02 [ 11] [ 6] [664838] +06:42:02 [ 12] [ 6] [064158] +06:42:02 [ 13] [ 4] [0320] +06:42:02 [ 15] [ 4] [0320] +06:42:02 [ 18] [ 4] [6011] +06:42:02 [ 22] [ 3] [900] +06:42:02 [ 25] [ 2] [02] +06:42:02 [ 28] [ 9] [D00002000] +06:42:02 [ 32] [ 6] [621354] +06:42:02 [ 35] [ 32] [2206990000092155=971012614426313] +06:42:02 [ 37] [ 12] [507904119555] +06:42:02 [ 41] [ 8] [08000800] +06:42:02 [ 42] [ 15] [NATIVE ] +06:42:02 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:42:02 [ 49] [ 3] [418] +06:42:02 [ 52] [ 16] [0686A65E994241DB] +06:42:02 ============================================================================ +06:42:02 + + +waiting on router queue for slot.... +06:42:02 Sending to : <1> +06:42:02 ============================================================================ +06:42:03 ============================================================================ +06:42:03 Slot Id : <287> +06:42:03 Transaction Type : REQUEST +06:42:03 Received From : +06:42:03 ============================================================================ +06:42:03 FNo. Len. Field Value +06:42:03 ============================================================================ +06:42:03 [ 1] [ 4] [0200] +06:42:03 [ 2] [ 16] [6688990106052309] +06:42:03 [ 3] [ 6] [013000] +06:42:03 [ 4] [ 12] [000100000000] +06:42:03 [ 7] [ 10] [0320064200] +06:42:03 [ 11] [ 6] [664846] +06:42:03 [ 12] [ 6] [064200] +06:42:03 [ 13] [ 4] [0320] +06:42:03 [ 15] [ 4] [0320] +06:42:03 [ 18] [ 4] [6011] +06:42:03 [ 22] [ 3] [900] +06:42:03 [ 25] [ 2] [02] +06:42:03 [ 28] [ 9] [D00002000] +06:42:03 [ 32] [ 6] [621354] +06:42:03 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:42:03 [ 37] [ 12] [507903499400] +06:42:03 [ 41] [ 8] [06002200] +06:42:03 [ 42] [ 15] [NATIVE ] +06:42:03 [ 43] [ 40] [Beng Market Beng LAO] +06:42:03 [ 49] [ 3] [418] +06:42:03 [ 52] [ 16] [E32B191FA28F4880] +06:42:03 ============================================================================ +06:42:03 + + +waiting on router queue for slot.... +06:42:03 Sending to : +06:42:03 ============================================================================ +06:42:03 Sending to : +06:42:03 ============================================================================ +06:42:03 ============================================================================ +06:42:03 Slot Id : <287> +06:42:03 Transaction Type : REQUEST +06:42:03 Received From : +06:42:03 ============================================================================ +06:42:03 FNo. Len. Field Value +06:42:03 ============================================================================ +06:42:03 [ 1] [ 4] [0200] +06:42:03 [ 2] [ 16] [6688990106052309] +06:42:03 [ 3] [ 6] [013000] +06:42:03 [ 4] [ 12] [000100000000] +06:42:03 [ 7] [ 10] [0320064200] +06:42:03 [ 11] [ 6] [664846] +06:42:03 [ 12] [ 6] [064200] +06:42:03 [ 13] [ 4] [0320] +06:42:03 [ 15] [ 4] [0320] +06:42:03 [ 18] [ 4] [6011] +06:42:03 [ 22] [ 3] [900] +06:42:03 [ 25] [ 2] [02] +06:42:03 [ 28] [ 9] [D00002000] +06:42:03 [ 32] [ 6] [621354] +06:42:03 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:42:03 [ 37] [ 12] [507903499400] +06:42:03 [ 41] [ 8] [06002200] +06:42:03 [ 42] [ 15] [NATIVE ] +06:42:03 [ 43] [ 40] [Beng Market Beng LAO] +06:42:03 [ 49] [ 3] [418] +06:42:03 [ 52] [ 16] [E32B191FA28F4880] +06:42:03 ============================================================================ +06:42:03 + + +waiting on router queue for slot.... +06:42:03 Sending to : +06:42:03 ============================================================================ +06:42:03 ============================================================================ +06:42:03 Slot Id : <287> +06:42:03 Transaction Type : REQUEST +06:42:03 Received From : +06:42:03 ============================================================================ +06:42:03 FNo. Len. Field Value +06:42:03 ============================================================================ +06:42:03 [ 1] [ 4] [0200] +06:42:03 [ 2] [ 16] [6688990106052309] +06:42:03 [ 3] [ 6] [013000] +06:42:03 [ 4] [ 12] [000100000000] +06:42:03 [ 7] [ 10] [0320064200] +06:42:03 [ 11] [ 6] [664846] +06:42:03 [ 12] [ 6] [064200] +06:42:03 [ 13] [ 4] [0320] +06:42:03 [ 15] [ 4] [0320] +06:42:03 [ 18] [ 4] [6011] +06:42:03 [ 22] [ 3] [900] +06:42:03 [ 25] [ 2] [02] +06:42:03 [ 28] [ 9] [D00002000] +06:42:03 [ 32] [ 6] [621354] +06:42:03 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:42:03 [ 37] [ 12] [507903499400] +06:42:03 [ 41] [ 8] [06002200] +06:42:03 [ 42] [ 15] [NATIVE ] +06:42:03 [ 43] [ 40] [Beng Market Beng LAO] +06:42:03 [ 49] [ 3] [418] +06:42:03 [ 52] [ 16] [63A823F46DBB9486] +06:42:03 ============================================================================ +06:42:03 + + +waiting on router queue for slot.... +06:42:03 Sending to : <4> +06:42:03 ============================================================================ +06:42:05 ============================================================================ +06:42:05 Slot Id : <287> +06:42:05 Transaction Type : RESPONSE +06:42:05 Received From : +06:42:05 ============================================================================ +06:42:05 FNo. Len. Field Value +06:42:05 ============================================================================ +06:42:05 [ 1] [ 4] [0210] +06:42:05 [ 2] [ 16] [6688990106052309] +06:42:05 [ 3] [ 6] [013000] +06:42:05 [ 4] [ 12] [000100000000] +06:42:05 [ 11] [ 6] [664846] +06:42:05 [ 12] [ 6] [064200] +06:42:05 [ 15] [ 4] [0320] +06:42:05 [ 18] [ 4] [6011] +06:42:05 [ 32] [ 6] [621354] +06:42:05 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:42:05 [ 37] [ 12] [507903499400] +06:42:05 [ 38] [ 6] [704021] +06:42:05 [ 39] [ 2] [00] +06:42:05 [ 41] [ 8] [06002200] +06:42:05 [ 49] [ 3] [418] +06:42:05 [ 54] [ 20] [3002418C000047211342] +06:42:05 ============================================================================ +06:42:05 Sending to : +06:42:05 ============================================================================ +06:42:05 + + +waiting on router queue for slot.... +06:42:06 ============================================================================ +06:42:06 Slot Id : <224> +06:42:06 Transaction Type : RESPONSE +06:42:06 Received From : +06:42:06 ============================================================================ +06:42:06 FNo. Len. Field Value +06:42:06 ============================================================================ +06:42:06 [ 1] [ 4] [0210] +06:42:06 [ 2] [ 16] [2206990000092155] +06:42:06 [ 3] [ 6] [010000] +06:42:06 [ 4] [ 12] [000100000000] +06:42:06 [ 7] [ 10] [0320064158] +06:42:06 [ 11] [ 6] [664838] +06:42:06 [ 12] [ 6] [064158] +06:42:06 [ 13] [ 4] [0320] +06:42:06 [ 15] [ 4] [0320] +06:42:06 [ 18] [ 4] [6011] +06:42:06 [ 32] [ 6] [621354] +06:42:06 [ 35] [ 32] [2206990000092155=971012614426313] +06:42:06 [ 37] [ 12] [507904119555] +06:42:06 [ 38] [ 6] [821506] +06:42:06 [ 39] [ 2] [00] +06:42:06 [ 41] [ 8] [08000800] +06:42:06 [ 49] [ 3] [418] +06:42:06 [ 54] [ 40] [0001418C0002212992000002418C000221299200] +06:42:06 ============================================================================ +06:42:06 Sending to : +06:42:06 ============================================================================ +06:42:06 + + +waiting on router queue for slot.... +06:42:06 ============================================================================ +06:42:06 Slot Id : <287> +06:42:06 Transaction Type : RESPONSE +06:42:06 Received From : +06:42:06 ============================================================================ +06:42:06 FNo. Len. Field Value +06:42:06 ============================================================================ +06:42:06 [ 1] [ 4] [0210] +06:42:06 [ 2] [ 16] [6688990106052309] +06:42:06 [ 3] [ 6] [013000] +06:42:06 [ 4] [ 12] [000100000000] +06:42:06 [ 11] [ 6] [664846] +06:42:06 [ 12] [ 6] [064200] +06:42:06 [ 15] [ 4] [0320] +06:42:06 [ 18] [ 4] [6011] +06:42:06 [ 32] [ 6] [621354] +06:42:06 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:42:06 [ 37] [ 12] [507903499400] +06:42:06 [ 38] [ 6] [704021] +06:42:06 [ 39] [ 2] [00] +06:42:06 [ 41] [ 8] [06002200] +06:42:06 [ 49] [ 3] [418] +06:42:06 [ 54] [ 20] [3002418C000047211342] +06:42:06 ============================================================================ +06:42:06 Calculate Source COMM Id = 0 +06:42:06 ============================================================================ +06:42:06 + + +waiting on router queue for slot.... +06:42:07 ============================================================================ +06:42:07 Slot Id : <290> +06:42:07 Transaction Type : REQUEST +06:42:07 Received From : +06:42:07 ============================================================================ +06:42:07 FNo. Len. Field Value +06:42:07 ============================================================================ +06:42:07 [ 1] [ 4] [0800] +06:42:07 [ 7] [ 10] [0319114115] +06:42:07 [ 11] [ 6] [154958] +06:42:07 [ 70] [ 3] [301] +06:42:07 ============================================================================ +06:42:07 + + +waiting on router queue for slot.... +06:42:07 Sending to : +06:42:07 ============================================================================ +06:42:07 ============================================================================ +06:42:07 Slot Id : <290> +06:42:07 Transaction Type : RESPONSE +06:42:07 Received From : +06:42:07 ============================================================================ +06:42:07 FNo. Len. Field Value +06:42:07 ============================================================================ +06:42:07 [ 1] [ 4] [0810] +06:42:07 [ 7] [ 10] [0319114115] +06:42:07 [ 11] [ 6] [154958] +06:42:07 [ 39] [ 2] [00] +06:42:07 [ 70] [ 3] [301] +06:42:07 ============================================================================ +06:42:07 Calculate Source COMM Id = 2 +06:42:07 ============================================================================ +06:42:07 + + +waiting on router queue for slot.... +06:42:08 ============================================================================ +06:42:08 Slot Id : <224> +06:42:08 Transaction Type : RESPONSE +06:42:08 Received From : +06:42:08 ============================================================================ +06:42:08 FNo. Len. Field Value +06:42:08 ============================================================================ +06:42:08 [ 1] [ 4] [0210] +06:42:08 [ 2] [ 16] [2206990000092155] +06:42:08 [ 3] [ 6] [010000] +06:42:08 [ 4] [ 12] [000100000000] +06:42:08 [ 7] [ 10] [0320064158] +06:42:08 [ 11] [ 6] [664838] +06:42:08 [ 12] [ 6] [064158] +06:42:08 [ 13] [ 4] [0320] +06:42:08 [ 15] [ 4] [0320] +06:42:08 [ 18] [ 4] [6011] +06:42:08 [ 32] [ 6] [621354] +06:42:08 [ 35] [ 32] [2206990000092155=971012614426313] +06:42:08 [ 37] [ 12] [507904119555] +06:42:08 [ 38] [ 6] [821506] +06:42:08 [ 39] [ 2] [00] +06:42:08 [ 41] [ 8] [08000800] +06:42:08 [ 49] [ 3] [418] +06:42:08 [ 54] [ 40] [0001418C0002212992000002418C000221299200] +06:42:08 ============================================================================ +06:42:08 Calculate Source COMM Id = 0 +06:42:08 ============================================================================ +06:42:08 + + +waiting on router queue for slot.... +06:42:18 ============================================================================ +06:42:18 Slot Id : <288> +06:42:18 Transaction Type : REQUEST +06:42:18 Received From : +06:42:18 ============================================================================ +06:42:18 FNo. Len. Field Value +06:42:18 ============================================================================ +06:42:18 [ 1] [ 4] [0800] +06:42:18 [ 7] [ 10] [0319114126] +06:42:18 [ 11] [ 6] [154959] +06:42:18 [ 70] [ 3] [301] +06:42:18 ============================================================================ +06:42:18 + + +waiting on router queue for slot.... +06:42:18 Sending to : +06:42:18 ============================================================================ +06:42:18 ============================================================================ +06:42:18 Slot Id : <288> +06:42:18 Transaction Type : RESPONSE +06:42:18 Received From : +06:42:18 ============================================================================ +06:42:18 FNo. Len. Field Value +06:42:18 ============================================================================ +06:42:18 [ 1] [ 4] [0810] +06:42:18 [ 7] [ 10] [0319114126] +06:42:18 [ 11] [ 6] [154959] +06:42:18 [ 39] [ 2] [00] +06:42:18 [ 70] [ 3] [301] +06:42:18 ============================================================================ +06:42:18 Calculate Source COMM Id = 2 +06:42:18 ============================================================================ +06:42:18 + + +waiting on router queue for slot.... +06:42:28 ============================================================================ +06:42:28 Slot Id : <271> +06:42:28 Transaction Type : REQUEST +06:42:28 Received From : +06:42:28 ============================================================================ +06:42:28 FNo. Len. Field Value +06:42:28 ============================================================================ +06:42:28 [ 1] [ 4] [0800] +06:42:28 [ 7] [ 10] [0319114137] +06:42:28 [ 11] [ 6] [154960] +06:42:28 [ 70] [ 3] [301] +06:42:28 ============================================================================ +06:42:28 + + +waiting on router queue for slot.... +06:42:28 Sending to : +06:42:28 ============================================================================ +06:42:28 ============================================================================ +06:42:28 Slot Id : <271> +06:42:28 Transaction Type : RESPONSE +06:42:28 Received From : +06:42:28 ============================================================================ +06:42:28 FNo. Len. Field Value +06:42:28 ============================================================================ +06:42:28 [ 1] [ 4] [0810] +06:42:28 [ 7] [ 10] [0319114137] +06:42:28 [ 11] [ 6] [154960] +06:42:28 [ 39] [ 2] [00] +06:42:28 [ 70] [ 3] [301] +06:42:28 ============================================================================ +06:42:28 Calculate Source COMM Id = 2 +06:42:28 ============================================================================ +06:42:28 + + +waiting on router queue for slot.... +06:42:34 ============================================================================ +06:42:34 Slot Id : <277> +06:42:34 Transaction Type : REQUEST +06:42:34 Received From : +06:42:34 ============================================================================ +06:42:34 FNo. Len. Field Value +06:42:34 ============================================================================ +06:42:34 [ 1] [ 4] [0800] +06:42:34 [ 2] [ 5] [02531] +06:42:34 [ 3] [ 6] [579068] +06:42:34 [ 7] [ 10] [0319234234] +06:42:34 [ 11] [ 6] [806801] +06:42:34 [ 15] [ 10] [0319234234] +06:42:34 [ 37] [ 11] [57906806801] +06:42:34 [ 70] [ 3] [001] +06:42:34 ============================================================================ +06:42:34 + + +waiting on router queue for slot.... +06:42:34 ============================================================================ +06:42:34 Slot Id : <277> +06:42:34 Transaction Type : RESPONSE +06:42:34 Received From : +06:42:34 ============================================================================ +06:42:34 FNo. Len. Field Value +06:42:34 ============================================================================ +06:42:34 [ 1] [ 4] [0810] +06:42:34 [ 7] [ 10] [0319234234] +06:42:34 [ 11] [ 6] [806801] +06:42:34 [ 15] [ 4] [0319] +06:42:34 [ 37] [ 12] [57906806801] +06:42:34 [ 39] [ 2] [00] +06:42:34 [ 70] [ 3] [001] +06:42:34 ============================================================================ +06:42:34 Sending to : +06:42:34 ============================================================================ +06:42:34 + + +waiting on router queue for slot.... +06:42:39 ============================================================================ +06:42:39 Slot Id : <267> +06:42:39 Transaction Type : REQUEST +06:42:39 Received From : +06:42:39 ============================================================================ +06:42:39 FNo. Len. Field Value +06:42:39 ============================================================================ +06:42:39 [ 1] [ 4] [0800] +06:42:39 [ 7] [ 10] [0319114148] +06:42:39 [ 11] [ 6] [154961] +06:42:39 [ 70] [ 3] [301] +06:42:39 ============================================================================ +06:42:39 + + +waiting on router queue for slot.... +06:42:39 Sending to : +06:42:39 ============================================================================ +06:42:39 ============================================================================ +06:42:39 Slot Id : <267> +06:42:39 Transaction Type : RESPONSE +06:42:39 Received From : +06:42:39 ============================================================================ +06:42:39 FNo. Len. Field Value +06:42:39 ============================================================================ +06:42:39 [ 1] [ 4] [0810] +06:42:39 [ 7] [ 10] [0319114148] +06:42:39 [ 11] [ 6] [154961] +06:42:39 [ 39] [ 2] [00] +06:42:39 [ 70] [ 3] [301] +06:42:39 ============================================================================ +06:42:39 Calculate Source COMM Id = 2 +06:42:39 ============================================================================ +06:42:39 + + +waiting on router queue for slot.... +06:42:51 ============================================================================ +06:42:51 Slot Id : <236> +06:42:51 Transaction Type : REQUEST +06:42:51 Received From : +06:42:51 ============================================================================ +06:42:51 FNo. Len. Field Value +06:42:51 ============================================================================ +06:42:51 [ 1] [ 4] [0800] +06:42:51 [ 7] [ 10] [0319114159] +06:42:51 [ 11] [ 6] [154962] +06:42:51 [ 70] [ 3] [301] +06:42:51 ============================================================================ +06:42:51 + + +waiting on router queue for slot.... +06:42:51 Sending to : +06:42:51 ============================================================================ +06:42:51 ============================================================================ +06:42:51 Slot Id : <236> +06:42:51 Transaction Type : RESPONSE +06:42:51 Received From : +06:42:51 ============================================================================ +06:42:51 FNo. Len. Field Value +06:42:51 ============================================================================ +06:42:51 [ 1] [ 4] [0810] +06:42:51 [ 7] [ 10] [0319114159] +06:42:51 [ 11] [ 6] [154962] +06:42:51 [ 39] [ 2] [00] +06:42:51 [ 70] [ 3] [301] +06:42:51 ============================================================================ +06:42:51 Calculate Source COMM Id = 2 +06:42:51 ============================================================================ +06:42:51 + + +waiting on router queue for slot.... +06:43:02 ============================================================================ +06:43:02 Slot Id : <217> +06:43:02 Transaction Type : REQUEST +06:43:02 Received From : +06:43:02 ============================================================================ +06:43:02 FNo. Len. Field Value +06:43:02 ============================================================================ +06:43:02 [ 1] [ 4] [0200] +06:43:02 [ 2] [ 16] [6688990106052309] +06:43:02 [ 3] [ 6] [013000] +06:43:02 [ 4] [ 12] [000060000000] +06:43:02 [ 7] [ 10] [0320064259] +06:43:02 [ 11] [ 6] [664962] +06:43:02 [ 12] [ 6] [064259] +06:43:02 [ 13] [ 4] [0320] +06:43:02 [ 15] [ 4] [0320] +06:43:02 [ 18] [ 4] [6011] +06:43:02 [ 22] [ 3] [900] +06:43:02 [ 25] [ 2] [02] +06:43:02 [ 28] [ 9] [D00002000] +06:43:02 [ 32] [ 6] [621354] +06:43:02 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:43:02 [ 37] [ 12] [507903499402] +06:43:02 [ 41] [ 8] [06002200] +06:43:02 [ 42] [ 15] [NATIVE ] +06:43:02 [ 43] [ 40] [Beng Market Beng LAO] +06:43:02 [ 49] [ 3] [418] +06:43:02 [ 52] [ 16] [E32B191FA28F4880] +06:43:02 ============================================================================ +06:43:02 + + +waiting on router queue for slot.... +06:43:02 Sending to : +06:43:02 ============================================================================ +06:43:02 Sending to : +06:43:02 ============================================================================ +06:43:02 ============================================================================ +06:43:02 Slot Id : <293> +06:43:02 Transaction Type : REQUEST +06:43:02 Received From : +06:43:02 ============================================================================ +06:43:02 FNo. Len. Field Value +06:43:02 ============================================================================ +06:43:02 [ 1] [ 4] [0800] +06:43:02 [ 7] [ 10] [0320135450] +06:43:02 [ 11] [ 6] [065450] +06:43:02 [ 37] [ 12] [57906065450] +06:43:02 [ 70] [ 3] [301] +06:43:02 ============================================================================ +06:43:02 + + +waiting on router queue for slot.... +06:43:02 Sending to : +06:43:02 ============================================================================ +06:43:02 ============================================================================ +06:43:02 Slot Id : <293> +06:43:02 Transaction Type : RESPONSE +06:43:02 Received From : +06:43:02 ============================================================================ +06:43:02 FNo. Len. Field Value +06:43:02 ============================================================================ +06:43:02 [ 1] [ 4] [0810] +06:43:02 [ 7] [ 10] [0320135450] +06:43:02 [ 11] [ 6] [065450] +06:43:02 [ 37] [ 12] [579060654500] +06:43:02 [ 39] [ 2] [00] +06:43:02 [ 70] [ 3] [810] +06:43:02 ============================================================================ +06:43:02 Calculate Source COMM Id = 6 +06:43:02 ============================================================================ +06:43:02 + + +waiting on router queue for slot.... +06:43:03 ============================================================================ +06:43:03 Slot Id : <217> +06:43:03 Transaction Type : REQUEST +06:43:03 Received From : +06:43:03 ============================================================================ +06:43:03 FNo. Len. Field Value +06:43:03 ============================================================================ +06:43:03 [ 1] [ 4] [0200] +06:43:03 [ 2] [ 16] [6688990106052309] +06:43:03 [ 3] [ 6] [013000] +06:43:03 [ 4] [ 12] [000060000000] +06:43:03 [ 7] [ 10] [0320064259] +06:43:03 [ 11] [ 6] [664962] +06:43:03 [ 12] [ 6] [064259] +06:43:03 [ 13] [ 4] [0320] +06:43:03 [ 15] [ 4] [0320] +06:43:03 [ 18] [ 4] [6011] +06:43:03 [ 22] [ 3] [900] +06:43:03 [ 25] [ 2] [02] +06:43:03 [ 28] [ 9] [D00002000] +06:43:03 [ 32] [ 6] [621354] +06:43:03 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:43:03 [ 37] [ 12] [507903499402] +06:43:03 [ 41] [ 8] [06002200] +06:43:03 [ 42] [ 15] [NATIVE ] +06:43:03 [ 43] [ 40] [Beng Market Beng LAO] +06:43:03 [ 49] [ 3] [418] +06:43:03 [ 52] [ 16] [E32B191FA28F4880] +06:43:03 ============================================================================ +06:43:03 + + +waiting on router queue for slot.... +06:43:03 Sending to : +06:43:03 ============================================================================ +06:43:03 ============================================================================ +06:43:03 Slot Id : <217> +06:43:03 Transaction Type : REQUEST +06:43:03 Received From : +06:43:03 ============================================================================ +06:43:03 FNo. Len. Field Value +06:43:03 ============================================================================ +06:43:03 [ 1] [ 4] [0200] +06:43:03 [ 2] [ 16] [6688990106052309] +06:43:03 [ 3] [ 6] [013000] +06:43:03 [ 4] [ 12] [000060000000] +06:43:03 [ 7] [ 10] [0320064259] +06:43:03 [ 11] [ 6] [664962] +06:43:03 [ 12] [ 6] [064259] +06:43:03 [ 13] [ 4] [0320] +06:43:03 [ 15] [ 4] [0320] +06:43:03 [ 18] [ 4] [6011] +06:43:03 [ 22] [ 3] [900] +06:43:03 [ 25] [ 2] [02] +06:43:03 [ 28] [ 9] [D00002000] +06:43:03 [ 32] [ 6] [621354] +06:43:03 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:43:03 [ 37] [ 12] [507903499402] +06:43:03 [ 41] [ 8] [06002200] +06:43:03 [ 42] [ 15] [NATIVE ] +06:43:03 [ 43] [ 40] [Beng Market Beng LAO] +06:43:03 [ 49] [ 3] [418] +06:43:03 [ 52] [ 16] [63A823F46DBB9486] +06:43:03 ============================================================================ +06:43:03 + + +waiting on router queue for slot.... +06:43:03 Sending to : <4> +06:43:03 ============================================================================ +06:43:03 ============================================================================ +06:43:03 Slot Id : <217> +06:43:03 Transaction Type : RESPONSE +06:43:03 Received From : +06:43:03 ============================================================================ +06:43:03 FNo. Len. Field Value +06:43:03 ============================================================================ +06:43:03 [ 1] [ 4] [0210] +06:43:03 [ 2] [ 16] [6688990106052309] +06:43:03 [ 3] [ 6] [013000] +06:43:03 [ 4] [ 12] [000060000000] +06:43:03 [ 11] [ 6] [664962] +06:43:03 [ 12] [ 6] [064259] +06:43:03 [ 15] [ 4] [0320] +06:43:03 [ 18] [ 4] [6011] +06:43:03 [ 32] [ 6] [621354] +06:43:03 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:43:03 [ 37] [ 12] [507903499402] +06:43:03 [ 39] [ 2] [51] +06:43:03 [ 41] [ 8] [06002200] +06:43:03 [ 49] [ 3] [418] +06:43:03 [ 54] [ 0] [] +06:43:03 ============================================================================ +06:43:03 Sending to : +06:43:03 ============================================================================ +06:43:03 + + +waiting on router queue for slot.... +06:43:04 ============================================================================ +06:43:04 Slot Id : <217> +06:43:04 Transaction Type : RESPONSE +06:43:04 Received From : +06:43:04 ============================================================================ +06:43:04 FNo. Len. Field Value +06:43:04 ============================================================================ +06:43:04 [ 1] [ 4] [0210] +06:43:04 [ 2] [ 16] [6688990106052309] +06:43:04 [ 3] [ 6] [013000] +06:43:04 [ 4] [ 12] [000060000000] +06:43:04 [ 11] [ 6] [664962] +06:43:04 [ 12] [ 6] [064259] +06:43:04 [ 15] [ 4] [0320] +06:43:04 [ 18] [ 4] [6011] +06:43:04 [ 32] [ 6] [621354] +06:43:04 [ 35] [ 37] [6688990106052309=43111231230971300000] +06:43:04 [ 37] [ 12] [507903499402] +06:43:04 [ 39] [ 2] [51] +06:43:04 [ 41] [ 8] [06002200] +06:43:04 [ 49] [ 3] [418] +06:43:04 [ 54] [ 0] [] +06:43:04 ============================================================================ +06:43:04 Calculate Source COMM Id = 0 +06:43:04 ============================================================================ +06:43:04 + + +waiting on router queue for slot.... +06:43:07 ============================================================================ +06:43:07 Slot Id : <278> +06:43:07 Transaction Type : REQUEST +06:43:07 Received From : +06:43:07 ============================================================================ +06:43:07 FNo. Len. Field Value +06:43:07 ============================================================================ +06:43:07 [ 1] [ 4] [0800] +06:43:07 [ 7] [ 10] [0319114215] +06:43:07 [ 11] [ 6] [154963] +06:43:07 [ 70] [ 3] [301] +06:43:07 ============================================================================ +06:43:07 + + +waiting on router queue for slot.... +06:43:07 Sending to : +06:43:07 ============================================================================ +06:43:07 ============================================================================ +06:43:07 Slot Id : <278> +06:43:07 Transaction Type : RESPONSE +06:43:07 Received From : +06:43:07 ============================================================================ +06:43:07 FNo. Len. Field Value +06:43:07 ============================================================================ +06:43:07 [ 1] [ 4] [0810] +06:43:07 [ 7] [ 10] [0319114215] +06:43:07 [ 11] [ 6] [154963] +06:43:07 [ 39] [ 2] [00] +06:43:07 [ 70] [ 3] [301] +06:43:07 ============================================================================ +06:43:07 Calculate Source COMM Id = 2 +06:43:07 ============================================================================ +06:43:07 + + +waiting on router queue for slot.... +06:43:18 ============================================================================ +06:43:18 Slot Id : <294> +06:43:18 Transaction Type : REQUEST +06:43:18 Received From : +06:43:18 ============================================================================ +06:43:18 FNo. Len. Field Value +06:43:18 ============================================================================ +06:43:18 [ 1] [ 4] [0800] +06:43:18 [ 7] [ 10] [0319114226] +06:43:18 [ 11] [ 6] [154964] +06:43:18 [ 70] [ 3] [301] +06:43:18 ============================================================================ +06:43:18 + + +waiting on router queue for slot.... +06:43:18 Sending to : +06:43:18 ============================================================================ +06:43:18 ============================================================================ +06:43:18 Slot Id : <294> +06:43:18 Transaction Type : RESPONSE +06:43:18 Received From : +06:43:18 ============================================================================ +06:43:18 FNo. Len. Field Value +06:43:18 ============================================================================ +06:43:18 [ 1] [ 4] [0810] +06:43:18 [ 7] [ 10] [0319114226] +06:43:18 [ 11] [ 6] [154964] +06:43:18 [ 39] [ 2] [00] +06:43:18 [ 70] [ 3] [301] +06:43:18 ============================================================================ +06:43:18 Calculate Source COMM Id = 2 +06:43:18 ============================================================================ +06:43:18 + + +waiting on router queue for slot.... +06:43:29 ============================================================================ +06:43:29 Slot Id : <298> +06:43:29 Transaction Type : REQUEST +06:43:29 Received From : +06:43:29 ============================================================================ +06:43:29 FNo. Len. Field Value +06:43:29 ============================================================================ +06:43:29 [ 1] [ 4] [0800] +06:43:29 [ 7] [ 10] [0319114237] +06:43:29 [ 11] [ 6] [154965] +06:43:29 [ 70] [ 3] [301] +06:43:29 ============================================================================ +06:43:29 + + +waiting on router queue for slot.... +06:43:29 Sending to : +06:43:29 ============================================================================ +06:43:29 ============================================================================ +06:43:29 Slot Id : <298> +06:43:29 Transaction Type : RESPONSE +06:43:29 Received From : +06:43:29 ============================================================================ +06:43:29 FNo. Len. Field Value +06:43:29 ============================================================================ +06:43:29 [ 1] [ 4] [0810] +06:43:29 [ 7] [ 10] [0319114237] +06:43:29 [ 11] [ 6] [154965] +06:43:29 [ 39] [ 2] [00] +06:43:29 [ 70] [ 3] [301] +06:43:29 ============================================================================ +06:43:29 Calculate Source COMM Id = 2 +06:43:29 ============================================================================ +06:43:29 + + +waiting on router queue for slot.... +06:43:36 ============================================================================ +06:43:36 Slot Id : <257> +06:43:36 Transaction Type : REQUEST +06:43:36 Received From : +06:43:36 ============================================================================ +06:43:36 FNo. Len. Field Value +06:43:36 ============================================================================ +06:43:36 [ 1] [ 4] [0800] +06:43:36 [ 2] [ 5] [02531] +06:43:36 [ 3] [ 6] [579068] +06:43:36 [ 7] [ 10] [0319234336] +06:43:36 [ 11] [ 6] [806802] +06:43:36 [ 15] [ 10] [0319234336] +06:43:36 [ 37] [ 11] [57906806802] +06:43:36 [ 70] [ 3] [001] +06:43:36 ============================================================================ +06:43:36 + + +waiting on router queue for slot.... +06:43:36 ============================================================================ +06:43:36 Slot Id : <257> +06:43:36 Transaction Type : RESPONSE +06:43:36 Received From : +06:43:36 ============================================================================ +06:43:36 FNo. Len. Field Value +06:43:36 ============================================================================ +06:43:36 [ 1] [ 4] [0810] +06:43:36 [ 7] [ 10] [0319234336] +06:43:36 [ 11] [ 6] [806802] +06:43:36 [ 15] [ 4] [0319] +06:43:36 [ 37] [ 12] [57906806802] +06:43:36 [ 39] [ 2] [00] +06:43:36 [ 70] [ 3] [001] +06:43:36 ============================================================================ +06:43:36 Sending to : +06:43:36 ============================================================================ +06:43:36 + + +waiting on router queue for slot.... +06:43:40 ============================================================================ +06:43:40 Slot Id : <303> +06:43:40 Transaction Type : REQUEST +06:43:40 Received From : +06:43:40 ============================================================================ +06:43:40 FNo. Len. Field Value +06:43:40 ============================================================================ +06:43:40 [ 1] [ 4] [0800] +06:43:40 [ 7] [ 10] [0319114248] +06:43:40 [ 11] [ 6] [154966] +06:43:40 [ 70] [ 3] [301] +06:43:40 ============================================================================ +06:43:40 + + +waiting on router queue for slot.... +06:43:40 Sending to : +06:43:40 ============================================================================ +06:43:40 ============================================================================ +06:43:40 Slot Id : <303> +06:43:40 Transaction Type : RESPONSE +06:43:40 Received From : +06:43:40 ============================================================================ +06:43:40 FNo. Len. Field Value +06:43:40 ============================================================================ +06:43:40 [ 1] [ 4] [0810] +06:43:40 [ 7] [ 10] [0319114248] +06:43:40 [ 11] [ 6] [154966] +06:43:40 [ 39] [ 2] [00] +06:43:40 [ 70] [ 3] [301] +06:43:40 ============================================================================ +06:43:40 Calculate Source COMM Id = 2 +06:43:40 ============================================================================ +06:43:40 + + +waiting on router queue for slot.... +06:43:48 ============================================================================ +06:43:48 Slot Id : <299> +06:43:48 Transaction Type : REQUEST +06:43:48 Received From : +06:43:48 ============================================================================ +06:43:48 FNo. Len. Field Value +06:43:48 ============================================================================ +06:43:48 [ 1] [ 4] [0200] +06:43:48 [ 2] [ 16] [1808931800009951] +06:43:48 [ 3] [ 6] [301000] +06:43:48 [ 4] [ 12] [000000000000] +06:43:48 [ 7] [ 10] [0320064344] +06:43:48 [ 11] [ 6] [665033] +06:43:48 [ 12] [ 6] [064344] +06:43:48 [ 13] [ 4] [0320] +06:43:48 [ 15] [ 4] [0320] +06:43:48 [ 18] [ 4] [6011] +06:43:48 [ 22] [ 3] [900] +06:43:48 [ 25] [ 2] [02] +06:43:48 [ 28] [ 9] [D00000000] +06:43:48 [ 32] [ 6] [621354] +06:43:48 [ 35] [ 27] [1808931800009951=1803500625] +06:43:48 [ 37] [ 12] [507904635340] +06:43:48 [ 41] [ 8] [17000800] +06:43:48 [ 42] [ 15] [NATIVE ] +06:43:48 [ 43] [ 40] [Ban Nakhai Naxay LAO] +06:43:48 [ 49] [ 3] [418] +06:43:48 [ 52] [ 16] [9ABC1C1DD9B0FCB1] +06:43:48 ============================================================================ +06:43:48 + + +waiting on router queue for slot.... +06:43:48 Sending to : +06:43:48 ============================================================================ +06:43:48 Sending to : +06:43:48 ============================================================================ +06:43:48 ============================================================================ +06:43:48 Slot Id : <299> +06:43:48 Transaction Type : REQUEST +06:43:48 Received From : +06:43:48 ============================================================================ +06:43:48 FNo. Len. Field Value +06:43:48 ============================================================================ +06:43:48 [ 1] [ 4] [0200] +06:43:48 [ 2] [ 16] [1808931800009951] +06:43:48 [ 3] [ 6] [301000] +06:43:48 [ 4] [ 12] [000000000000] +06:43:48 [ 7] [ 10] [0320064344] +06:43:48 [ 11] [ 6] [665033] +06:43:48 [ 12] [ 6] [064344] +06:43:48 [ 13] [ 4] [0320] +06:43:48 [ 15] [ 4] [0320] +06:43:48 [ 18] [ 4] [6011] +06:43:48 [ 22] [ 3] [900] +06:43:48 [ 25] [ 2] [02] +06:43:48 [ 28] [ 9] [D00000000] +06:43:48 [ 32] [ 6] [621354] +06:43:48 [ 35] [ 27] [1808931800009951=1803500625] +06:43:48 [ 37] [ 12] [507904635340] +06:43:48 [ 41] [ 8] [17000800] +06:43:48 [ 42] [ 15] [NATIVE ] +06:43:48 [ 43] [ 40] [Ban Nakhai Naxay LAO] +06:43:48 [ 49] [ 3] [418] +06:43:48 [ 52] [ 16] [9ABC1C1DD9B0FCB1] +06:43:48 ============================================================================ +06:43:48 + + +waiting on router queue for slot.... +06:43:48 Sending to : +06:43:48 ============================================================================ +06:43:48 ============================================================================ +06:43:48 Slot Id : <299> +06:43:48 Transaction Type : REQUEST +06:43:48 Received From : +06:43:48 ============================================================================ +06:43:48 FNo. Len. Field Value +06:43:48 ============================================================================ +06:43:48 [ 1] [ 4] [0200] +06:43:48 [ 2] [ 16] [1808931800009951] +06:43:48 [ 3] [ 6] [301000] +06:43:48 [ 4] [ 12] [000000000000] +06:43:48 [ 7] [ 10] [0320064344] +06:43:48 [ 11] [ 6] [665033] +06:43:48 [ 12] [ 6] [064344] +06:43:48 [ 13] [ 4] [0320] +06:43:48 [ 15] [ 4] [0320] +06:43:48 [ 18] [ 4] [6011] +06:43:48 [ 22] [ 3] [900] +06:43:48 [ 25] [ 2] [02] +06:43:48 [ 28] [ 9] [D00000000] +06:43:48 [ 32] [ 6] [621354] +06:43:48 [ 35] [ 27] [1808931800009951=1803500625] +06:43:48 [ 37] [ 12] [507904635340] +06:43:48 [ 41] [ 8] [17000800] +06:43:48 [ 42] [ 15] [NATIVE ] +06:43:48 [ 43] [ 40] [Ban Nakhai Naxay LAO] +06:43:48 [ 49] [ 3] [418] +06:43:48 [ 52] [ 16] [C0879DDB92CB36E4] +06:43:48 ============================================================================ +06:43:48 + + +waiting on router queue for slot.... +06:43:48 Sending to : <2> +06:43:48 ============================================================================ +06:43:51 ============================================================================ +06:43:51 Slot Id : <299> +06:43:51 Transaction Type : RESPONSE +06:43:51 Received From : +06:43:51 ============================================================================ +06:43:51 FNo. Len. Field Value +06:43:51 ============================================================================ +06:43:51 [ 1] [ 4] [0210] +06:43:51 [ 2] [ 16] [1808931800009951] +06:43:51 [ 3] [ 6] [301000] +06:43:51 [ 7] [ 10] [0320064344] +06:43:51 [ 11] [ 6] [665033] +06:43:51 [ 12] [ 6] [064344] +06:43:51 [ 13] [ 4] [0320] +06:43:51 [ 14] [ 4] [1803] +06:43:51 [ 19] [ 3] [418] +06:43:51 [ 32] [ 6] [621354] +06:43:51 [ 37] [ 12] [507904635340] +06:43:51 [ 38] [ 6] [665033] +06:43:51 [ 39] [ 2] [00] +06:43:51 [ 41] [ 8] [17000800] +06:43:51 [ 49] [ 3] [418] +06:43:51 [ 52] [ 16] [C0879DDB92CB36E4] +06:43:51 [ 54] [ 20] [1002418C000024845200] +06:43:51 ============================================================================ +06:43:51 Sending to : +06:43:51 ============================================================================ +06:43:51 + + +waiting on router queue for slot.... +06:43:53 ============================================================================ +06:43:53 Slot Id : <299> +06:43:53 Transaction Type : RESPONSE +06:43:53 Received From : +06:43:53 ============================================================================ +06:43:53 FNo. Len. Field Value +06:43:53 ============================================================================ +06:43:53 [ 1] [ 4] [0210] +06:43:53 [ 2] [ 16] [1808931800009951] +06:43:53 [ 3] [ 6] [301000] +06:43:53 [ 7] [ 10] [0320064344] +06:43:53 [ 11] [ 6] [665033] +06:43:53 [ 12] [ 6] [064344] +06:43:53 [ 13] [ 4] [0320] +06:43:53 [ 14] [ 4] [1803] +06:43:53 [ 19] [ 3] [418] +06:43:53 [ 32] [ 6] [621354] +06:43:53 [ 37] [ 12] [507904635340] +06:43:53 [ 38] [ 6] [665033] +06:43:53 [ 39] [ 2] [00] +06:43:53 [ 41] [ 8] [17000800] +06:43:53 [ 49] [ 3] [418] +06:43:53 [ 52] [ 16] [C0879DDB92CB36E4] +06:43:53 [ 54] [ 20] [1002418C000024845200] +06:43:53 ============================================================================ +06:43:53 Calculate Source COMM Id = 0 +06:43:53 ============================================================================ +06:43:53 + + +waiting on router queue for slot.... +06:44:00 ============================================================================ +06:44:00 Slot Id : <302> +06:44:00 Transaction Type : REQUEST +06:44:00 Received From : +06:44:00 ============================================================================ +06:44:00 FNo. Len. Field Value +06:44:00 ============================================================================ +06:44:00 [ 1] [ 4] [0800] +06:44:00 [ 7] [ 10] [0319114309] +06:44:00 [ 11] [ 6] [154967] +06:44:00 [ 70] [ 3] [301] +06:44:00 ============================================================================ +06:44:00 + + +waiting on router queue for slot.... +06:44:00 Sending to : +06:44:00 ============================================================================ +06:44:00 ============================================================================ +06:44:00 Slot Id : <302> +06:44:00 Transaction Type : RESPONSE +06:44:00 Received From : +06:44:00 ============================================================================ +06:44:00 FNo. Len. Field Value +06:44:00 ============================================================================ +06:44:00 [ 1] [ 4] [0810] +06:44:00 [ 7] [ 10] [0319114309] +06:44:00 [ 11] [ 6] [154967] +06:44:00 [ 39] [ 2] [00] +06:44:00 [ 70] [ 3] [301] +06:44:00 ============================================================================ +06:44:00 Calculate Source COMM Id = 2 +06:44:00 ============================================================================ +06:44:00 + + +waiting on router queue for slot.... +06:44:07 ============================================================================ +06:44:07 Slot Id : <292> +06:44:07 Transaction Type : REQUEST +06:44:07 Received From : +06:44:07 ============================================================================ +06:44:07 FNo. Len. Field Value +06:44:07 ============================================================================ +06:44:07 [ 1] [ 4] [0800] +06:44:07 [ 7] [ 10] [0320135555] +06:44:07 [ 11] [ 6] [065555] +06:44:07 [ 37] [ 12] [57906065555] +06:44:07 [ 70] [ 3] [301] +06:44:07 ============================================================================ +06:44:07 + + +waiting on router queue for slot.... +06:44:07 Sending to : +06:44:07 ============================================================================ +06:44:07 ============================================================================ +06:44:07 Slot Id : <292> +06:44:07 Transaction Type : RESPONSE +06:44:07 Received From : +06:44:07 ============================================================================ +06:44:07 FNo. Len. Field Value +06:44:07 ============================================================================ +06:44:07 [ 1] [ 4] [0810] +06:44:07 [ 7] [ 10] [0320135555] +06:44:07 [ 11] [ 6] [065555] +06:44:07 [ 37] [ 12] [579060655550] +06:44:07 [ 39] [ 2] [00] +06:44:07 [ 70] [ 3] [810] +06:44:07 ============================================================================ +06:44:07 Calculate Source COMM Id = 6 +06:44:07 ============================================================================ +06:44:07 + + +waiting on router queue for slot.... +06:44:13 ============================================================================ +06:44:13 Slot Id : <300> +06:44:13 Transaction Type : REQUEST +06:44:13 Received From : +06:44:13 ============================================================================ +06:44:13 FNo. Len. Field Value +06:44:13 ============================================================================ +06:44:13 [ 1] [ 4] [0200] +06:44:13 [ 2] [ 16] [1808931700017781] +06:44:13 [ 3] [ 6] [011000] +06:44:13 [ 4] [ 12] [000015000000] +06:44:13 [ 7] [ 10] [0320064410] +06:44:13 [ 11] [ 6] [665076] +06:44:13 [ 12] [ 6] [064410] +06:44:13 [ 13] [ 4] [0320] +06:44:13 [ 15] [ 4] [0320] +06:44:13 [ 18] [ 4] [6011] +06:44:13 [ 22] [ 3] [900] +06:44:13 [ 25] [ 2] [02] +06:44:13 [ 28] [ 9] [D00002000] +06:44:13 [ 32] [ 6] [621354] +06:44:13 [ 35] [ 27] [1808931700017781=1803500785] +06:44:13 [ 37] [ 12] [507903908190] +06:44:13 [ 41] [ 8] [01010600] +06:44:13 [ 42] [ 15] [NATIVE ] +06:44:13 [ 43] [ 40] [Maria Hospital Phonhong LAO] +06:44:13 [ 49] [ 3] [418] +06:44:13 [ 52] [ 16] [ECD83F347CD510AD] +06:44:13 ============================================================================ +06:44:13 + + +waiting on router queue for slot.... +06:44:13 Sending to : +06:44:13 ============================================================================ +06:44:13 Sending to : +06:44:13 ============================================================================ +06:44:14 ============================================================================ +06:44:14 Slot Id : <300> +06:44:14 Transaction Type : REQUEST +06:44:14 Received From : +06:44:14 ============================================================================ +06:44:14 FNo. Len. Field Value +06:44:14 ============================================================================ +06:44:14 [ 1] [ 4] [0200] +06:44:14 [ 2] [ 16] [1808931700017781] +06:44:14 [ 3] [ 6] [011000] +06:44:14 [ 4] [ 12] [000015000000] +06:44:14 [ 7] [ 10] [0320064410] +06:44:14 [ 11] [ 6] [665076] +06:44:14 [ 12] [ 6] [064410] +06:44:14 [ 13] [ 4] [0320] +06:44:14 [ 15] [ 4] [0320] +06:44:14 [ 18] [ 4] [6011] +06:44:14 [ 22] [ 3] [900] +06:44:14 [ 25] [ 2] [02] +06:44:14 [ 28] [ 9] [D00002000] +06:44:14 [ 32] [ 6] [621354] +06:44:14 [ 35] [ 27] [1808931700017781=1803500785] +06:44:14 [ 37] [ 12] [507903908190] +06:44:14 [ 41] [ 8] [01010600] +06:44:14 [ 42] [ 15] [NATIVE ] +06:44:14 [ 43] [ 40] [Maria Hospital Phonhong LAO] +06:44:14 [ 49] [ 3] [418] +06:44:14 [ 52] [ 16] [ECD83F347CD510AD] +06:44:14 ============================================================================ +06:44:14 + + +waiting on router queue for slot.... +06:44:14 Sending to : +06:44:14 ============================================================================ +06:44:14 ============================================================================ +06:44:14 Slot Id : <300> +06:44:14 Transaction Type : REQUEST +06:44:14 Received From : +06:44:14 ============================================================================ +06:44:14 FNo. Len. Field Value +06:44:14 ============================================================================ +06:44:14 [ 1] [ 4] [0200] +06:44:14 [ 2] [ 16] [1808931700017781] +06:44:14 [ 3] [ 6] [011000] +06:44:14 [ 4] [ 12] [000015000000] +06:44:14 [ 7] [ 10] [0320064410] +06:44:14 [ 11] [ 6] [665076] +06:44:14 [ 12] [ 6] [064410] +06:44:14 [ 13] [ 4] [0320] +06:44:14 [ 15] [ 4] [0320] +06:44:14 [ 18] [ 4] [6011] +06:44:14 [ 22] [ 3] [900] +06:44:14 [ 25] [ 2] [02] +06:44:14 [ 28] [ 9] [D00002000] +06:44:14 [ 32] [ 6] [621354] +06:44:14 [ 35] [ 27] [1808931700017781=1803500785] +06:44:14 [ 37] [ 12] [507903908190] +06:44:14 [ 41] [ 8] [01010600] +06:44:14 [ 42] [ 15] [NATIVE ] +06:44:14 [ 43] [ 40] [Maria Hospital Phonhong LAO] +06:44:14 [ 49] [ 3] [418] +06:44:14 [ 52] [ 16] [2F3329777C271A75] +06:44:14 ============================================================================ +06:44:14 + + +waiting on router queue for slot.... +06:44:14 ============================================================================ +06:44:14 Slot Id : <281> +06:44:14 Transaction Type : REQUEST +06:44:14 Received From : +06:44:14 ============================================================================ +06:44:14 FNo. Len. Field Value +06:44:14 ============================================================================ +06:44:14 [ 1] [ 4] [0200] +06:44:14 [ 2] [ 16] [2206990000092155] +06:44:14 [ 3] [ 6] [302000] +06:44:14 Sending to : <2> +06:44:14 [ 4] [ 12] [000000000000] +06:44:14 ============================================================================ +06:44:14 [ 7] [ 10] [0320064410] +06:44:14 [ 11] [ 6] [665079] +06:44:14 [ 12] [ 6] [064410] +06:44:14 [ 13] [ 4] [0320] +06:44:14 [ 15] [ 4] [0320] +06:44:14 [ 18] [ 4] [6011] +06:44:14 [ 22] [ 3] [900] +06:44:14 [ 25] [ 2] [02] +06:44:14 [ 28] [ 9] [D00000000] +06:44:14 [ 32] [ 6] [621354] +06:44:14 [ 35] [ 32] [2206990000092155=971012614426313] +06:44:14 [ 37] [ 12] [507904119556] +06:44:14 [ 41] [ 8] [08000800] +06:44:14 [ 42] [ 15] [NATIVE ] +06:44:14 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:44:14 [ 49] [ 3] [418] +06:44:14 [ 52] [ 16] [B1A2E93DB6E8A815] +06:44:14 ============================================================================ +06:44:14 + + +waiting on router queue for slot.... +06:44:14 Sending to : +06:44:14 ============================================================================ +06:44:14 Sending to : +06:44:14 ============================================================================ +06:44:14 ============================================================================ +06:44:14 Slot Id : <281> +06:44:14 Transaction Type : REQUEST +06:44:14 Received From : +06:44:14 ============================================================================ +06:44:14 FNo. Len. Field Value +06:44:14 ============================================================================ +06:44:14 [ 1] [ 4] [0200] +06:44:14 [ 2] [ 16] [2206990000092155] +06:44:14 [ 3] [ 6] [302000] +06:44:14 [ 4] [ 12] [000000000000] +06:44:14 [ 7] [ 10] [0320064410] +06:44:14 [ 11] [ 6] [665079] +06:44:14 [ 12] [ 6] [064410] +06:44:14 [ 13] [ 4] [0320] +06:44:14 [ 15] [ 4] [0320] +06:44:14 [ 18] [ 4] [6011] +06:44:14 [ 22] [ 3] [900] +06:44:14 [ 25] [ 2] [02] +06:44:14 [ 28] [ 9] [D00000000] +06:44:14 [ 32] [ 6] [621354] +06:44:14 [ 35] [ 32] [2206990000092155=971012614426313] +06:44:14 [ 37] [ 12] [507904119556] +06:44:14 [ 41] [ 8] [08000800] +06:44:14 [ 42] [ 15] [NATIVE ] +06:44:14 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:44:14 [ 49] [ 3] [418] +06:44:14 [ 52] [ 16] [B1A2E93DB6E8A815] +06:44:14 ============================================================================ +06:44:14 + + +waiting on router queue for slot.... +06:44:14 Sending to : +06:44:14 ============================================================================ +06:44:14 ============================================================================ +06:44:14 Slot Id : <281> +06:44:14 Transaction Type : REQUEST +06:44:14 Received From : +06:44:14 ============================================================================ +06:44:14 FNo. Len. Field Value +06:44:14 ============================================================================ +06:44:14 [ 1] [ 4] [0200] +06:44:14 [ 2] [ 16] [2206990000092155] +06:44:14 [ 3] [ 6] [302000] +06:44:14 [ 4] [ 12] [000000000000] +06:44:14 [ 7] [ 10] [0320064410] +06:44:14 [ 11] [ 6] [665079] +06:44:14 [ 12] [ 6] [064410] +06:44:14 [ 13] [ 4] [0320] +06:44:14 [ 15] [ 4] [0320] +06:44:14 [ 18] [ 4] [6011] +06:44:14 [ 22] [ 3] [900] +06:44:14 [ 25] [ 2] [02] +06:44:14 [ 28] [ 9] [D00000000] +06:44:14 [ 32] [ 6] [621354] +06:44:14 [ 35] [ 32] [2206990000092155=971012614426313] +06:44:14 [ 37] [ 12] [507904119556] +06:44:14 [ 41] [ 8] [08000800] +06:44:14 [ 42] [ 15] [NATIVE ] +06:44:14 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:44:14 [ 49] [ 3] [418] +06:44:14 [ 52] [ 16] [0686A65E994241DB] +06:44:14 ============================================================================ +06:44:14 + + +waiting on router queue for slot.... +06:44:14 Sending to : <1> +06:44:14 ============================================================================ +06:44:15 ============================================================================ +06:44:15 Slot Id : <281> +06:44:15 Transaction Type : RESPONSE +06:44:15 Received From : +06:44:15 ============================================================================ +06:44:15 FNo. Len. Field Value +06:44:15 ============================================================================ +06:44:15 [ 1] [ 4] [0210] +06:44:15 [ 2] [ 16] [2206990000092155] +06:44:15 [ 3] [ 6] [302000] +06:44:15 [ 4] [ 12] [000000000000] +06:44:15 [ 7] [ 10] [0320064410] +06:44:15 [ 11] [ 6] [665079] +06:44:15 [ 12] [ 6] [064410] +06:44:15 [ 13] [ 4] [0320] +06:44:15 [ 15] [ 4] [0320] +06:44:15 [ 18] [ 4] [6011] +06:44:15 [ 32] [ 6] [621354] +06:44:15 [ 35] [ 32] [2206990000092155=971012614426313] +06:44:15 [ 37] [ 12] [507904119556] +06:44:15 [ 38] [ 6] [084341] +06:44:15 [ 39] [ 2] [00] +06:44:15 [ 41] [ 8] [08000800] +06:44:15 [ 49] [ 3] [418] +06:44:15 [ 54] [ 40] [2001418C0002212992002002418C000221299200] +06:44:15 ============================================================================ +06:44:15 Sending to : +06:44:15 ============================================================================ +06:44:15 + + +waiting on router queue for slot.... +06:44:17 ============================================================================ +06:44:17 Slot Id : <281> +06:44:17 Transaction Type : RESPONSE +06:44:17 Received From : +06:44:17 ============================================================================ +06:44:17 FNo. Len. Field Value +06:44:17 ============================================================================ +06:44:17 [ 1] [ 4] [0210] +06:44:17 [ 2] [ 16] [2206990000092155] +06:44:17 [ 3] [ 6] [302000] +06:44:17 [ 4] [ 12] [000000000000] +06:44:17 [ 7] [ 10] [0320064410] +06:44:17 [ 11] [ 6] [665079] +06:44:17 [ 12] [ 6] [064410] +06:44:17 [ 13] [ 4] [0320] +06:44:17 [ 15] [ 4] [0320] +06:44:17 [ 18] [ 4] [6011] +06:44:17 [ 32] [ 6] [621354] +06:44:17 [ 35] [ 32] [2206990000092155=971012614426313] +06:44:17 [ 37] [ 12] [507904119556] +06:44:17 [ 38] [ 6] [084341] +06:44:17 [ 39] [ 2] [00] +06:44:17 [ 41] [ 8] [08000800] +06:44:17 [ 49] [ 3] [418] +06:44:17 [ 54] [ 40] [2001418C0002212992002002418C000221299200] +06:44:17 ============================================================================ +06:44:17 Calculate Source COMM Id = 0 +06:44:17 ============================================================================ +06:44:17 + + +waiting on router queue for slot.... +06:44:18 ============================================================================ +06:44:18 Slot Id : <300> +06:44:18 Transaction Type : RESPONSE +06:44:18 Received From : +06:44:18 ============================================================================ +06:44:18 FNo. Len. Field Value +06:44:18 ============================================================================ +06:44:18 [ 1] [ 4] [0210] +06:44:18 [ 2] [ 16] [1808931700017781] +06:44:18 [ 3] [ 6] [011000] +06:44:18 [ 4] [ 12] [000015000000] +06:44:18 [ 6] [ 12] [000015000000] +06:44:18 [ 7] [ 10] [0320064410] +06:44:18 [ 11] [ 6] [665076] +06:44:18 [ 12] [ 6] [064410] +06:44:18 [ 13] [ 4] [0320] +06:44:18 [ 18] [ 4] [6011] +06:44:18 [ 19] [ 3] [418] +06:44:18 [ 22] [ 3] [021] +06:44:18 [ 32] [ 6] [621354] +06:44:18 [ 35] [ 27] [1808931700017781=1803500785] +06:44:18 [ 37] [ 12] [507903908190] +06:44:18 [ 38] [ 6] [665076] +06:44:18 [ 39] [ 2] [00] +06:44:18 [ 41] [ 8] [01010600] +06:44:18 [ 49] [ 3] [418] +06:44:18 [ 52] [ 16] [2F3329777C271A75] +06:44:18 [ 54] [ 20] [1001418C000002328700] +06:44:18 ============================================================================ +06:44:18 Sending to : +06:44:18 ============================================================================ +06:44:18 + + +waiting on router queue for slot.... +06:44:19 ============================================================================ +06:44:19 Slot Id : <295> +06:44:19 Transaction Type : REQUEST +06:44:19 Received From : +06:44:19 ============================================================================ +06:44:19 FNo. Len. Field Value +06:44:19 ============================================================================ +06:44:19 [ 1] [ 4] [0200] +06:44:19 [ 2] [ 16] [6213542000029166] +06:44:19 [ 3] [ 6] [010000] +06:44:19 [ 4] [ 12] [000100000000] +06:44:19 [ 7] [ 10] [0320065206] +06:44:19 [ 11] [ 6] [254805] +06:44:19 [ 12] [ 6] [065206] +06:44:19 [ 13] [ 4] [0320] +06:44:19 [ 14] [ 4] [4912] +06:44:19 [ 15] [ 4] [0320] +06:44:19 [ 18] [ 4] [6011] +06:44:19 [ 22] [ 3] [900] +06:44:19 [ 25] [ 2] [02] +06:44:19 [ 28] [ 9] [D00002000] +06:44:19 [ 32] [ 6] [220699] +06:44:19 [ 35] [ 32] [6213542000029166=491212012916736] +06:44:19 [ 37] [ 12] [507900094394] +06:44:19 [ 41] [ 8] [01000900] +06:44:19 [ 42] [ 15] [APTRA ] +06:44:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +06:44:19 [ 49] [ 3] [418] +06:44:19 [ 52] [ 16] [6CCD73DE4AF5C3E7] +06:44:19 ============================================================================ +06:44:19 + + +waiting on router queue for slot.... +06:44:19 Sending to : +06:44:19 ============================================================================ +06:44:19 Sending to : +06:44:19 ============================================================================ +06:44:19 ============================================================================ +06:44:19 Slot Id : <295> +06:44:19 Transaction Type : REQUEST +06:44:19 Received From : +06:44:19 ============================================================================ +06:44:19 FNo. Len. Field Value +06:44:19 ============================================================================ +06:44:19 [ 1] [ 4] [0200] +06:44:19 [ 2] [ 16] [6213542000029166] +06:44:19 [ 3] [ 6] [010000] +06:44:19 [ 4] [ 12] [000100000000] +06:44:19 [ 7] [ 10] [0320065206] +06:44:19 [ 11] [ 6] [254805] +06:44:19 [ 12] [ 6] [065206] +06:44:19 [ 13] [ 4] [0320] +06:44:19 [ 14] [ 4] [4912] +06:44:19 [ 15] [ 4] [0320] +06:44:19 [ 18] [ 4] [6011] +06:44:19 [ 22] [ 3] [900] +06:44:19 [ 25] [ 2] [02] +06:44:19 [ 28] [ 9] [D00002000] +06:44:19 [ 32] [ 6] [220699] +06:44:19 [ 35] [ 32] [6213542000029166=491212012916736] +06:44:19 [ 37] [ 12] [507900094394] +06:44:19 [ 41] [ 8] [01000900] +06:44:19 [ 42] [ 15] [APTRA ] +06:44:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +06:44:19 [ 49] [ 3] [418] +06:44:19 [ 52] [ 16] [6CCD73DE4AF5C3E7] +06:44:19 ============================================================================ +06:44:19 + + +waiting on router queue for slot.... +06:44:19 Sending to : +06:44:19 ============================================================================ +06:44:19 ============================================================================ +06:44:19 Slot Id : <295> +06:44:19 Transaction Type : REQUEST +06:44:19 Received From : +06:44:19 ============================================================================ +06:44:19 FNo. Len. Field Value +06:44:19 ============================================================================ +06:44:19 [ 1] [ 4] [0200] +06:44:19 [ 2] [ 16] [6213542000029166] +06:44:19 [ 3] [ 6] [010000] +06:44:19 [ 4] [ 12] [000100000000] +06:44:19 [ 7] [ 10] [0320065206] +06:44:19 [ 11] [ 6] [254805] +06:44:19 [ 12] [ 6] [065206] +06:44:19 [ 13] [ 4] [0320] +06:44:19 [ 14] [ 4] [4912] +06:44:19 [ 15] [ 4] [0320] +06:44:19 [ 18] [ 4] [6011] +06:44:19 [ 22] [ 3] [900] +06:44:19 [ 25] [ 2] [02] +06:44:19 [ 28] [ 9] [D00002000] +06:44:19 [ 32] [ 6] [220699] +06:44:19 [ 35] [ 32] [6213542000029166=491212012916736] +06:44:19 [ 37] [ 12] [507900094394] +06:44:19 [ 41] [ 8] [01000900] +06:44:19 [ 42] [ 15] [APTRA ] +06:44:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +06:44:19 [ 49] [ 3] [418] +06:44:19 [ 52] [ 16] [ADF9E67EA9514869] +06:44:19 ============================================================================ +06:44:19 + + +waiting on router queue for slot.... +06:44:19 Sending to : <0> +06:44:19 ============================================================================ +06:44:20 ============================================================================ +06:44:20 Slot Id : <300> +06:44:20 Transaction Type : RESPONSE +06:44:20 Received From : +06:44:20 ============================================================================ +06:44:20 FNo. Len. Field Value +06:44:20 ============================================================================ +06:44:20 [ 1] [ 4] [0210] +06:44:20 [ 2] [ 16] [1808931700017781] +06:44:20 [ 3] [ 6] [011000] +06:44:20 [ 4] [ 12] [000015000000] +06:44:20 [ 6] [ 12] [000015000000] +06:44:20 [ 7] [ 10] [0320064410] +06:44:20 [ 11] [ 6] [665076] +06:44:20 [ 12] [ 6] [064410] +06:44:20 [ 13] [ 4] [0320] +06:44:20 [ 18] [ 4] [6011] +06:44:20 [ 19] [ 3] [418] +06:44:20 [ 22] [ 3] [021] +06:44:20 [ 32] [ 6] [621354] +06:44:20 [ 35] [ 27] [1808931700017781=1803500785] +06:44:20 [ 37] [ 12] [507903908190] +06:44:20 [ 38] [ 6] [665076] +06:44:20 [ 39] [ 2] [00] +06:44:20 [ 41] [ 8] [01010600] +06:44:20 [ 49] [ 3] [418] +06:44:20 [ 52] [ 16] [2F3329777C271A75] +06:44:20 [ 54] [ 20] [1001418C000002328700] +06:44:20 ============================================================================ +06:44:20 Calculate Source COMM Id = 0 +06:44:20 ============================================================================ +06:44:20 + + +waiting on router queue for slot.... +06:44:21 ============================================================================ +06:44:21 Slot Id : <295> +06:44:21 Transaction Type : RESPONSE +06:44:21 Received From : +06:44:21 ============================================================================ +06:44:21 FNo. Len. Field Value +06:44:21 ============================================================================ +06:44:21 [ 1] [ 4] [0210] +06:44:21 [ 2] [ 16] [6213542000029166] +06:44:21 [ 3] [ 6] [010000] +06:44:21 [ 4] [ 12] [000100000000] +06:44:21 [ 7] [ 10] [0320065206] +06:44:21 [ 11] [ 6] [254805] +06:44:21 [ 12] [ 6] [065206] +06:44:21 [ 13] [ 4] [0320] +06:44:21 [ 15] [ 4] [0320] +06:44:21 [ 18] [ 4] [6011] +06:44:21 [ 32] [ 6] [220699] +06:44:21 [ 35] [ 32] [6213542000029166=491212012916736] +06:44:21 [ 37] [ 12] [507900094394] +06:44:21 [ 38] [ 6] [056687] +06:44:21 [ 39] [ 2] [00] +06:44:21 [ 41] [ 8] [01000900] +06:44:21 [ 49] [ 3] [418] +06:44:21 [ 54] [ 40] [0001418C0001142488230002418C000114248823] +06:44:21 ============================================================================ +06:44:21 Sending to : +06:44:21 ============================================================================ +06:44:21 + + +waiting on router queue for slot.... +06:44:22 ============================================================================ +06:44:22 Slot Id : <295> +06:44:22 Transaction Type : RESPONSE +06:44:22 Received From : +06:44:22 ============================================================================ +06:44:22 FNo. Len. Field Value +06:44:22 ============================================================================ +06:44:22 [ 1] [ 4] [0210] +06:44:22 [ 2] [ 16] [6213542000029166] +06:44:22 [ 3] [ 6] [010000] +06:44:22 [ 4] [ 12] [000100000000] +06:44:22 [ 7] [ 10] [0320065206] +06:44:22 [ 11] [ 6] [254805] +06:44:22 [ 12] [ 6] [065206] +06:44:22 [ 13] [ 4] [0320] +06:44:22 [ 15] [ 4] [0320] +06:44:22 [ 18] [ 4] [6011] +06:44:22 [ 32] [ 6] [220699] +06:44:22 [ 35] [ 32] [6213542000029166=491212012916736] +06:44:22 [ 37] [ 12] [507900094394] +06:44:22 [ 38] [ 6] [056687] +06:44:22 [ 39] [ 2] [00] +06:44:22 [ 41] [ 8] [01000900] +06:44:22 [ 49] [ 3] [418] +06:44:22 [ 54] [ 40] [0001418C0001142488230002418C000114248823] +06:44:22 ============================================================================ +06:44:22 Calculate Source COMM Id = 1 +06:44:22 ============================================================================ +06:44:22 + + +waiting on router queue for slot.... +06:44:27 ============================================================================ +06:44:27 Slot Id : <308> +06:44:27 Transaction Type : REQUEST +06:44:27 Received From : +06:44:27 ============================================================================ +06:44:27 FNo. Len. Field Value +06:44:27 ============================================================================ +06:44:27 [ 1] [ 4] [0800] +06:44:27 [ 7] [ 10] [0319114335] +06:44:27 [ 11] [ 6] [154968] +06:44:27 [ 70] [ 3] [301] +06:44:27 ============================================================================ +06:44:27 + + +waiting on router queue for slot.... +06:44:27 Sending to : +06:44:27 ============================================================================ +06:44:27 ============================================================================ +06:44:27 Slot Id : <308> +06:44:27 Transaction Type : RESPONSE +06:44:27 Received From : +06:44:27 ============================================================================ +06:44:27 FNo. Len. Field Value +06:44:27 ============================================================================ +06:44:27 [ 1] [ 4] [0810] +06:44:27 [ 7] [ 10] [0319114335] +06:44:27 [ 11] [ 6] [154968] +06:44:27 [ 39] [ 2] [00] +06:44:27 [ 70] [ 3] [301] +06:44:27 ============================================================================ +06:44:27 Calculate Source COMM Id = 2 +06:44:27 ============================================================================ +06:44:27 + + +waiting on router queue for slot.... +06:44:35 ============================================================================ +06:44:35 Slot Id : <262> +06:44:35 Transaction Type : REQUEST +06:44:35 Received From : +06:44:35 ============================================================================ +06:44:35 FNo. Len. Field Value +06:44:35 ============================================================================ +06:44:35 [ 1] [ 4] [0200] +06:44:35 [ 2] [ 16] [6688990108428200] +06:44:35 [ 3] [ 6] [301000] +06:44:35 [ 7] [ 10] [0319234343] +06:44:35 [ 11] [ 6] [266662] +06:44:35 [ 12] [ 6] [064343] +06:44:35 [ 13] [ 4] [0320] +06:44:35 [ 14] [ 4] [4406] +06:44:35 [ 15] [ 4] [0320] +06:44:35 [ 18] [ 4] [6011] +06:44:35 [ 19] [ 3] [418] +06:44:35 [ 22] [ 3] [021] +06:44:35 [ 25] [ 2] [01] +06:44:35 [ 32] [ 6] [180893] +06:44:35 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:44:35 [ 37] [ 12] [507923266662] +06:44:35 [ 41] [ 8] [0263UDXB] +06:44:35 [ 42] [ 15] [999999 ] +06:44:35 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +06:44:35 [ 49] [ 3] [418] +06:44:35 [ 52] [ 16] [380EE18D22FC16BD] +06:44:35 ============================================================================ +06:44:35 + + +waiting on router queue for slot.... +06:44:35 Sending to : +06:44:35 ============================================================================ +06:44:35 Sending to : +06:44:35 ============================================================================ +06:44:36 ============================================================================ +06:44:36 Slot Id : <262> +06:44:36 Transaction Type : REQUEST +06:44:36 Received From : +06:44:36 ============================================================================ +06:44:36 FNo. Len. Field Value +06:44:36 ============================================================================ +06:44:36 [ 1] [ 4] [0200] +06:44:36 [ 2] [ 16] [6688990108428200] +06:44:36 [ 3] [ 6] [301000] +06:44:36 [ 7] [ 10] [0319234343] +06:44:36 [ 11] [ 6] [266662] +06:44:36 [ 12] [ 6] [064343] +06:44:36 [ 13] [ 4] [0320] +06:44:36 [ 14] [ 4] [4406] +06:44:36 [ 15] [ 4] [0320] +06:44:36 [ 18] [ 4] [6011] +06:44:36 [ 19] [ 3] [418] +06:44:36 [ 22] [ 3] [021] +06:44:36 [ 25] [ 2] [01] +06:44:36 [ 32] [ 6] [180893] +06:44:36 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:44:36 [ 37] [ 12] [507923266662] +06:44:36 [ 41] [ 8] [0263UDXB] +06:44:36 [ 42] [ 15] [999999 ] +06:44:36 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +06:44:36 [ 49] [ 3] [418] +06:44:36 [ 52] [ 16] [380EE18D22FC16BD] +06:44:36 ============================================================================ +06:44:36 + + +waiting on router queue for slot.... +06:44:36 Sending to : +06:44:36 ============================================================================ +06:44:36 ============================================================================ +06:44:36 Slot Id : <262> +06:44:36 Transaction Type : REQUEST +06:44:36 Received From : +06:44:36 ============================================================================ +06:44:36 FNo. Len. Field Value +06:44:36 ============================================================================ +06:44:36 [ 1] [ 4] [0200] +06:44:36 [ 2] [ 16] [6688990108428200] +06:44:36 [ 3] [ 6] [301000] +06:44:36 [ 7] [ 10] [0319234343] +06:44:36 [ 11] [ 6] [266662] +06:44:36 [ 12] [ 6] [064343] +06:44:36 [ 13] [ 4] [0320] +06:44:36 [ 14] [ 4] [4406] +06:44:36 [ 15] [ 4] [0320] +06:44:36 [ 18] [ 4] [6011] +06:44:36 [ 19] [ 3] [418] +06:44:36 [ 22] [ 3] [021] +06:44:36 [ 25] [ 2] [01] +06:44:36 [ 32] [ 6] [180893] +06:44:36 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:44:36 [ 37] [ 12] [507923266662] +06:44:36 [ 41] [ 8] [0263UDXB] +06:44:36 [ 42] [ 15] [999999 ] +06:44:36 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +06:44:36 [ 49] [ 3] [418] +06:44:36 [ 52] [ 16] [40E35413FE274875] +06:44:36 ============================================================================ +06:44:36 + + +waiting on router queue for slot.... +06:44:36 Sending to : <0> +06:44:36 ============================================================================ +06:44:36 ============================================================================ +06:44:36 Slot Id : <262> +06:44:36 Transaction Type : RESPONSE +06:44:36 Received From : +06:44:36 ============================================================================ +06:44:36 FNo. Len. Field Value +06:44:36 ============================================================================ +06:44:36 [ 1] [ 4] [0210] +06:44:36 [ 2] [ 16] [6688990108428200] +06:44:36 [ 3] [ 6] [301000] +06:44:36 [ 4] [ 12] [000000000000] +06:44:36 [ 7] [ 10] [0319234343] +06:44:36 [ 11] [ 6] [266662] +06:44:36 [ 12] [ 6] [064343] +06:44:36 [ 13] [ 4] [0320] +06:44:36 [ 15] [ 4] [0320] +06:44:36 [ 18] [ 4] [6011] +06:44:36 [ 19] [ 3] [418] +06:44:36 [ 22] [ 3] [021] +06:44:36 [ 32] [ 6] [180893] +06:44:36 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:44:36 [ 37] [ 12] [507923266662] +06:44:36 [ 39] [ 2] [14] +06:44:36 [ 41] [ 8] [0263UDXB] +06:44:36 [ 49] [ 3] [418] +06:44:36 ============================================================================ +06:44:36 Sending to : +06:44:36 ============================================================================ +06:44:36 + + +waiting on router queue for slot.... +06:44:37 ============================================================================ +06:44:37 Slot Id : <262> +06:44:37 Transaction Type : RESPONSE +06:44:37 Received From : +06:44:37 ============================================================================ +06:44:37 FNo. Len. Field Value +06:44:37 ============================================================================ +06:44:37 [ 1] [ 4] [0210] +06:44:37 [ 2] [ 16] [6688990108428200] +06:44:37 [ 3] [ 6] [301000] +06:44:37 [ 4] [ 12] [000000000000] +06:44:37 [ 7] [ 10] [0319234343] +06:44:37 [ 11] [ 6] [266662] +06:44:37 [ 12] [ 6] [064343] +06:44:37 [ 13] [ 4] [0320] +06:44:37 [ 15] [ 4] [0320] +06:44:37 [ 18] [ 4] [6011] +06:44:37 [ 19] [ 3] [418] +06:44:37 [ 22] [ 3] [021] +06:44:37 [ 32] [ 6] [180893] +06:44:37 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:44:37 [ 37] [ 12] [507923266662] +06:44:37 [ 39] [ 2] [14] +06:44:37 [ 41] [ 8] [0263UDXB] +06:44:37 [ 49] [ 3] [418] +06:44:37 ============================================================================ +06:44:37 Calculate Source COMM Id = 2 +06:44:37 ============================================================================ +06:44:37 + + +waiting on router queue for slot.... +06:44:38 ============================================================================ +06:44:38 Slot Id : <296> +06:44:38 Transaction Type : REQUEST +06:44:38 Received From : +06:44:38 ============================================================================ +06:44:38 FNo. Len. Field Value +06:44:38 ============================================================================ +06:44:38 [ 1] [ 4] [0800] +06:44:38 [ 7] [ 10] [0319114346] +06:44:38 [ 11] [ 6] [154969] +06:44:38 [ 70] [ 3] [301] +06:44:38 ============================================================================ +06:44:38 + + +waiting on router queue for slot.... +06:44:38 Sending to : +06:44:38 ============================================================================ +06:44:38 ============================================================================ +06:44:38 Slot Id : <296> +06:44:38 Transaction Type : RESPONSE +06:44:38 Received From : +06:44:38 ============================================================================ +06:44:38 FNo. Len. Field Value +06:44:38 ============================================================================ +06:44:38 [ 1] [ 4] [0810] +06:44:38 [ 7] [ 10] [0319114346] +06:44:38 [ 11] [ 6] [154969] +06:44:38 [ 39] [ 2] [00] +06:44:38 [ 70] [ 3] [301] +06:44:38 ============================================================================ +06:44:38 Calculate Source COMM Id = 2 +06:44:38 ============================================================================ +06:44:38 + + +waiting on router queue for slot.... +06:44:38 ============================================================================ +06:44:38 Slot Id : <283> +06:44:38 Transaction Type : REQUEST +06:44:38 Received From : +06:44:38 ============================================================================ +06:44:38 FNo. Len. Field Value +06:44:38 ============================================================================ +06:44:38 [ 1] [ 4] [0800] +06:44:38 [ 2] [ 5] [02531] +06:44:38 [ 3] [ 6] [579068] +06:44:38 [ 7] [ 10] [0319234438] +06:44:38 [ 11] [ 6] [806803] +06:44:38 [ 15] [ 10] [0319234438] +06:44:38 [ 37] [ 11] [57906806803] +06:44:38 [ 70] [ 3] [001] +06:44:38 ============================================================================ +06:44:38 + + +waiting on router queue for slot.... +06:44:38 ============================================================================ +06:44:38 Slot Id : <283> +06:44:38 Transaction Type : RESPONSE +06:44:38 Received From : +06:44:38 ============================================================================ +06:44:38 FNo. Len. Field Value +06:44:38 ============================================================================ +06:44:38 [ 1] [ 4] [0810] +06:44:38 [ 7] [ 10] [0319234438] +06:44:38 [ 11] [ 6] [806803] +06:44:38 [ 15] [ 4] [0319] +06:44:38 [ 37] [ 12] [57906806803] +06:44:38 [ 39] [ 2] [00] +06:44:38 [ 70] [ 3] [001] +06:44:38 ============================================================================ +06:44:38 Sending to : +06:44:38 ============================================================================ +06:44:38 + + +waiting on router queue for slot.... +06:44:41 ============================================================================ +06:44:41 Slot Id : <311> +06:44:41 Transaction Type : REQUEST +06:44:41 Received From : +06:44:41 ============================================================================ +06:44:41 FNo. Len. Field Value +06:44:41 ============================================================================ +06:44:41 [ 1] [ 4] [0200] +06:44:41 [ 2] [ 16] [1808931800009951] +06:44:41 [ 3] [ 6] [011000] +06:44:41 [ 4] [ 12] [000010000000] +06:44:41 [ 7] [ 10] [0320064437] +06:44:41 [ 11] [ 6] [665131] +06:44:41 [ 12] [ 6] [064437] +06:44:41 [ 13] [ 4] [0320] +06:44:41 [ 15] [ 4] [0320] +06:44:41 [ 18] [ 4] [6011] +06:44:41 [ 22] [ 3] [900] +06:44:41 [ 25] [ 2] [02] +06:44:41 [ 28] [ 9] [D00002000] +06:44:41 [ 32] [ 6] [621354] +06:44:41 [ 35] [ 27] [1808931800009951=1803500625] +06:44:41 [ 37] [ 12] [507904635342] +06:44:41 [ 41] [ 8] [17000800] +06:44:41 [ 42] [ 15] [NATIVE ] +06:44:41 [ 43] [ 40] [Ban Nakhai Naxay LAO] +06:44:41 [ 49] [ 3] [418] +06:44:41 [ 52] [ 16] [9ABC1C1DD9B0FCB1] +06:44:41 ============================================================================ +06:44:41 + + +waiting on router queue for slot.... +06:44:41 Sending to : +06:44:41 ============================================================================ +06:44:41 Sending to : +06:44:41 ============================================================================ +06:44:41 ============================================================================ +06:44:41 Slot Id : <311> +06:44:41 Transaction Type : REQUEST +06:44:41 Received From : +06:44:41 ============================================================================ +06:44:41 FNo. Len. Field Value +06:44:41 ============================================================================ +06:44:41 [ 1] [ 4] [0200] +06:44:41 [ 2] [ 16] [1808931800009951] +06:44:41 [ 3] [ 6] [011000] +06:44:41 [ 4] [ 12] [000010000000] +06:44:41 [ 7] [ 10] [0320064437] +06:44:41 [ 11] [ 6] [665131] +06:44:41 [ 12] [ 6] [064437] +06:44:41 [ 13] [ 4] [0320] +06:44:41 [ 15] [ 4] [0320] +06:44:41 [ 18] [ 4] [6011] +06:44:41 [ 22] [ 3] [900] +06:44:41 [ 25] [ 2] [02] +06:44:41 [ 28] [ 9] [D00002000] +06:44:41 [ 32] [ 6] [621354] +06:44:41 [ 35] [ 27] [1808931800009951=1803500625] +06:44:41 [ 37] [ 12] [507904635342] +06:44:41 [ 41] [ 8] [17000800] +06:44:41 [ 42] [ 15] [NATIVE ] +06:44:41 [ 43] [ 40] [Ban Nakhai Naxay LAO] +06:44:41 [ 49] [ 3] [418] +06:44:41 [ 52] [ 16] [9ABC1C1DD9B0FCB1] +06:44:41 ============================================================================ +06:44:41 + + +waiting on router queue for slot.... +06:44:41 Sending to : +06:44:41 ============================================================================ +06:44:41 ============================================================================ +06:44:41 Slot Id : <311> +06:44:41 Transaction Type : REQUEST +06:44:41 Received From : +06:44:41 ============================================================================ +06:44:41 FNo. Len. Field Value +06:44:41 ============================================================================ +06:44:41 [ 1] [ 4] [0200] +06:44:41 [ 2] [ 16] [1808931800009951] +06:44:41 [ 3] [ 6] [011000] +06:44:41 [ 4] [ 12] [000010000000] +06:44:41 [ 7] [ 10] [0320064437] +06:44:41 [ 11] [ 6] [665131] +06:44:41 [ 12] [ 6] [064437] +06:44:41 [ 13] [ 4] [0320] +06:44:41 [ 15] [ 4] [0320] +06:44:41 [ 18] [ 4] [6011] +06:44:41 [ 22] [ 3] [900] +06:44:41 [ 25] [ 2] [02] +06:44:41 [ 28] [ 9] [D00002000] +06:44:41 [ 32] [ 6] [621354] +06:44:41 [ 35] [ 27] [1808931800009951=1803500625] +06:44:41 [ 37] [ 12] [507904635342] +06:44:41 [ 41] [ 8] [17000800] +06:44:41 [ 42] [ 15] [NATIVE ] +06:44:41 [ 43] [ 40] [Ban Nakhai Naxay LAO] +06:44:41 [ 49] [ 3] [418] +06:44:41 [ 52] [ 16] [C0879DDB92CB36E4] +06:44:41 ============================================================================ +06:44:41 + + +waiting on router queue for slot.... +06:44:41 Sending to : <2> +06:44:41 ============================================================================ +06:44:45 ============================================================================ +06:44:45 Slot Id : <311> +06:44:45 Transaction Type : RESPONSE +06:44:45 Received From : +06:44:45 ============================================================================ +06:44:45 FNo. Len. Field Value +06:44:45 ============================================================================ +06:44:45 [ 1] [ 4] [0210] +06:44:45 [ 2] [ 16] [1808931800009951] +06:44:45 [ 3] [ 6] [011000] +06:44:45 [ 4] [ 12] [000010000000] +06:44:45 [ 6] [ 12] [000010000000] +06:44:45 [ 7] [ 10] [0320064437] +06:44:45 [ 11] [ 6] [665131] +06:44:45 [ 12] [ 6] [064437] +06:44:45 [ 13] [ 4] [0320] +06:44:45 [ 18] [ 4] [6011] +06:44:45 [ 19] [ 3] [418] +06:44:45 [ 22] [ 3] [021] +06:44:45 [ 32] [ 6] [621354] +06:44:45 [ 35] [ 27] [1808931800009951=1803500625] +06:44:45 [ 37] [ 12] [507904635342] +06:44:45 [ 38] [ 6] [665131] +06:44:45 [ 39] [ 2] [00] +06:44:45 [ 41] [ 8] [17000800] +06:44:45 [ 49] [ 3] [418] +06:44:45 [ 52] [ 16] [C0879DDB92CB36E4] +06:44:45 [ 54] [ 20] [1001418C000014645200] +06:44:45 ============================================================================ +06:44:45 Sending to : +06:44:45 ============================================================================ +06:44:45 + + +waiting on router queue for slot.... +06:44:47 ============================================================================ +06:44:47 Slot Id : <311> +06:44:47 Transaction Type : RESPONSE +06:44:47 Received From : +06:44:47 ============================================================================ +06:44:47 FNo. Len. Field Value +06:44:47 ============================================================================ +06:44:47 [ 1] [ 4] [0210] +06:44:47 [ 2] [ 16] [1808931800009951] +06:44:47 [ 3] [ 6] [011000] +06:44:47 [ 4] [ 12] [000010000000] +06:44:47 [ 6] [ 12] [000010000000] +06:44:47 [ 7] [ 10] [0320064437] +06:44:47 [ 11] [ 6] [665131] +06:44:47 [ 12] [ 6] [064437] +06:44:47 [ 13] [ 4] [0320] +06:44:47 [ 18] [ 4] [6011] +06:44:47 [ 19] [ 3] [418] +06:44:47 [ 22] [ 3] [021] +06:44:47 [ 32] [ 6] [621354] +06:44:47 [ 35] [ 27] [1808931800009951=1803500625] +06:44:47 [ 37] [ 12] [507904635342] +06:44:47 [ 38] [ 6] [665131] +06:44:47 [ 39] [ 2] [00] +06:44:47 [ 41] [ 8] [17000800] +06:44:47 [ 49] [ 3] [418] +06:44:47 [ 52] [ 16] [C0879DDB92CB36E4] +06:44:47 [ 54] [ 20] [1001418C000014645200] +06:44:47 ============================================================================ +06:44:47 Calculate Source COMM Id = 0 +06:44:47 ============================================================================ +06:44:47 + + +waiting on router queue for slot.... +06:44:53 ============================================================================ +06:44:53 Slot Id : <312> +06:44:53 Transaction Type : REQUEST +06:44:53 Received From : +06:44:53 ============================================================================ +06:44:53 FNo. Len. Field Value +06:44:53 ============================================================================ +06:44:53 [ 1] [ 4] [0800] +06:44:53 [ 7] [ 10] [0319114401] +06:44:53 [ 11] [ 6] [154970] +06:44:53 [ 70] [ 3] [301] +06:44:53 ============================================================================ +06:44:53 + + +waiting on router queue for slot.... +06:44:53 Sending to : +06:44:53 ============================================================================ +06:44:53 ============================================================================ +06:44:53 Slot Id : <312> +06:44:53 Transaction Type : RESPONSE +06:44:53 Received From : +06:44:53 ============================================================================ +06:44:53 FNo. Len. Field Value +06:44:53 ============================================================================ +06:44:53 [ 1] [ 4] [0810] +06:44:53 [ 7] [ 10] [0319114401] +06:44:53 [ 11] [ 6] [154970] +06:44:53 [ 39] [ 2] [00] +06:44:53 [ 70] [ 3] [301] +06:44:53 ============================================================================ +06:44:53 Calculate Source COMM Id = 2 +06:44:53 ============================================================================ +06:44:53 + + +waiting on router queue for slot.... +06:44:54 ============================================================================ +06:44:54 Slot Id : <316> +06:44:54 Transaction Type : REQUEST +06:44:54 Received From : +06:44:54 ============================================================================ +06:44:54 FNo. Len. Field Value +06:44:54 ============================================================================ +06:44:54 [ 1] [ 4] [0800] +06:44:54 [ 7] [ 10] [0319235242] +06:44:54 [ 11] [ 6] [020228] +06:44:54 [ 37] [ 12] [57906020228] +06:44:54 [ 70] [ 3] [301] +06:44:54 ============================================================================ +06:44:54 + + +waiting on router queue for slot.... +06:44:54 Sending to : +06:44:54 ============================================================================ +06:44:54 ============================================================================ +06:44:54 Slot Id : <316> +06:44:54 Transaction Type : RESPONSE +06:44:54 Received From : +06:44:54 ============================================================================ +06:44:54 FNo. Len. Field Value +06:44:54 ============================================================================ +06:44:54 [ 1] [ 4] [0810] +06:44:54 [ 7] [ 10] [0319235242] +06:44:54 [ 11] [ 6] [020228] +06:44:54 [ 37] [ 12] [579060202280] +06:44:54 [ 39] [ 2] [00] +06:44:54 [ 70] [ 3] [810] +06:44:54 ============================================================================ +06:44:54 Calculate Source COMM Id = 1 +06:44:54 ============================================================================ +06:44:54 + + +waiting on router queue for slot.... +06:45:04 ============================================================================ +06:45:04 Slot Id : <306> +06:45:04 Transaction Type : REQUEST +06:45:04 Received From : +06:45:04 ============================================================================ +06:45:04 FNo. Len. Field Value +06:45:04 ============================================================================ +06:45:04 [ 1] [ 4] [0200] +06:45:04 [ 2] [ 16] [6213542000029166] +06:45:04 [ 3] [ 6] [010000] +06:45:04 [ 4] [ 12] [000100000000] +06:45:04 [ 7] [ 10] [0320065252] +06:45:04 [ 11] [ 6] [254808] +06:45:04 [ 12] [ 6] [065252] +06:45:04 [ 13] [ 4] [0320] +06:45:04 [ 14] [ 4] [4912] +06:45:04 [ 15] [ 4] [0320] +06:45:04 [ 18] [ 4] [6011] +06:45:04 [ 22] [ 3] [900] +06:45:04 [ 25] [ 2] [02] +06:45:04 [ 28] [ 9] [D00002000] +06:45:04 [ 32] [ 6] [220699] +06:45:04 [ 35] [ 32] [6213542000029166=491212012916736] +06:45:04 [ 37] [ 12] [507900094396] +06:45:04 [ 41] [ 8] [01000900] +06:45:04 [ 42] [ 15] [APTRA ] +06:45:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +06:45:04 [ 49] [ 3] [418] +06:45:04 [ 52] [ 16] [6CCD73DE4AF5C3E7] +06:45:04 ============================================================================ +06:45:04 + + +waiting on router queue for slot.... +06:45:04 Sending to : +06:45:04 ============================================================================ +06:45:04 Sending to : +06:45:04 ============================================================================ +06:45:05 ============================================================================ +06:45:05 Slot Id : <306> +06:45:05 Transaction Type : REQUEST +06:45:05 Received From : +06:45:05 ============================================================================ +06:45:05 FNo. Len. Field Value +06:45:05 ============================================================================ +06:45:05 [ 1] [ 4] [0200] +06:45:05 [ 2] [ 16] [6213542000029166] +06:45:05 [ 3] [ 6] [010000] +06:45:05 [ 4] [ 12] [000100000000] +06:45:05 [ 7] [ 10] [0320065252] +06:45:05 [ 11] [ 6] [254808] +06:45:05 [ 12] [ 6] [065252] +06:45:05 [ 13] [ 4] [0320] +06:45:05 [ 14] [ 4] [4912] +06:45:05 [ 15] [ 4] [0320] +06:45:05 [ 18] [ 4] [6011] +06:45:05 [ 22] [ 3] [900] +06:45:05 [ 25] [ 2] [02] +06:45:05 [ 28] [ 9] [D00002000] +06:45:05 [ 32] [ 6] [220699] +06:45:05 [ 35] [ 32] [6213542000029166=491212012916736] +06:45:05 [ 37] [ 12] [507900094396] +06:45:05 [ 41] [ 8] [01000900] +06:45:05 [ 42] [ 15] [APTRA ] +06:45:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +06:45:05 [ 49] [ 3] [418] +06:45:05 [ 52] [ 16] [6CCD73DE4AF5C3E7] +06:45:05 ============================================================================ +06:45:05 + + +waiting on router queue for slot.... +06:45:05 Sending to : +06:45:05 ============================================================================ +06:45:05 ============================================================================ +06:45:05 Slot Id : <306> +06:45:05 Transaction Type : REQUEST +06:45:05 Received From : +06:45:05 ============================================================================ +06:45:05 FNo. Len. Field Value +06:45:05 ============================================================================ +06:45:05 [ 1] [ 4] [0200] +06:45:05 [ 2] [ 16] [6213542000029166] +06:45:05 [ 3] [ 6] [010000] +06:45:05 [ 4] [ 12] [000100000000] +06:45:05 [ 7] [ 10] [0320065252] +06:45:05 [ 11] [ 6] [254808] +06:45:05 [ 12] [ 6] [065252] +06:45:05 [ 13] [ 4] [0320] +06:45:05 [ 14] [ 4] [4912] +06:45:05 [ 15] [ 4] [0320] +06:45:05 [ 18] [ 4] [6011] +06:45:05 [ 22] [ 3] [900] +06:45:05 [ 25] [ 2] [02] +06:45:05 [ 28] [ 9] [D00002000] +06:45:05 [ 32] [ 6] [220699] +06:45:05 [ 35] [ 32] [6213542000029166=491212012916736] +06:45:05 [ 37] [ 12] [507900094396] +06:45:05 [ 41] [ 8] [01000900] +06:45:05 [ 42] [ 15] [APTRA ] +06:45:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +06:45:05 [ 49] [ 3] [418] +06:45:05 [ 52] [ 16] [ADF9E67EA9514869] +06:45:05 ============================================================================ +06:45:05 + + +waiting on router queue for slot.... +06:45:05 Sending to : <0> +06:45:05 ============================================================================ +06:45:05 ============================================================================ +06:45:05 Slot Id : <286> +06:45:05 Transaction Type : REQUEST +06:45:05 Received From : +06:45:05 ============================================================================ +06:45:05 FNo. Len. Field Value +06:45:05 ============================================================================ +06:45:05 [ 1] [ 4] [0800] +06:45:05 [ 7] [ 10] [0319114412] +06:45:05 [ 11] [ 6] [154971] +06:45:05 [ 70] [ 3] [301] +06:45:05 ============================================================================ +06:45:05 + + +waiting on router queue for slot.... +06:45:05 Sending to : +06:45:05 ============================================================================ +06:45:05 ============================================================================ +06:45:05 Slot Id : <286> +06:45:05 Transaction Type : RESPONSE +06:45:05 Received From : +06:45:05 ============================================================================ +06:45:05 FNo. Len. Field Value +06:45:05 ============================================================================ +06:45:05 [ 1] [ 4] [0810] +06:45:05 [ 7] [ 10] [0319114412] +06:45:05 [ 11] [ 6] [154971] +06:45:05 [ 39] [ 2] [00] +06:45:05 [ 70] [ 3] [301] +06:45:05 ============================================================================ +06:45:05 Calculate Source COMM Id = 2 +06:45:05 ============================================================================ +06:45:05 + + +waiting on router queue for slot.... +06:45:05 ============================================================================ +06:45:05 Slot Id : <306> +06:45:05 Transaction Type : RESPONSE +06:45:05 Received From : +06:45:05 ============================================================================ +06:45:05 FNo. Len. Field Value +06:45:05 ============================================================================ +06:45:05 [ 1] [ 4] [0210] +06:45:05 [ 2] [ 16] [6213542000029166] +06:45:05 [ 3] [ 6] [010000] +06:45:05 [ 4] [ 12] [000100000000] +06:45:05 [ 7] [ 10] [0320065252] +06:45:05 [ 11] [ 6] [254808] +06:45:05 [ 12] [ 6] [065252] +06:45:05 [ 13] [ 4] [0320] +06:45:05 [ 15] [ 4] [0320] +06:45:05 [ 18] [ 4] [6011] +06:45:05 [ 32] [ 6] [220699] +06:45:05 [ 35] [ 32] [6213542000029166=491212012916736] +06:45:05 [ 37] [ 12] [507900094396] +06:45:05 [ 38] [ 6] [612476] +06:45:05 [ 39] [ 2] [00] +06:45:05 [ 41] [ 8] [01000900] +06:45:05 [ 49] [ 3] [418] +06:45:05 [ 54] [ 40] [0001418C0000140488230002418C000014048823] +06:45:05 ============================================================================ +06:45:05 Sending to : +06:45:05 ============================================================================ +06:45:05 + + +waiting on router queue for slot.... +06:45:07 ============================================================================ +06:45:07 Slot Id : <306> +06:45:07 Transaction Type : RESPONSE +06:45:07 Received From : +06:45:07 ============================================================================ +06:45:07 FNo. Len. Field Value +06:45:07 ============================================================================ +06:45:07 [ 1] [ 4] [0210] +06:45:07 [ 2] [ 16] [6213542000029166] +06:45:07 [ 3] [ 6] [010000] +06:45:07 [ 4] [ 12] [000100000000] +06:45:07 [ 7] [ 10] [0320065252] +06:45:07 [ 11] [ 6] [254808] +06:45:07 [ 12] [ 6] [065252] +06:45:07 [ 13] [ 4] [0320] +06:45:07 [ 15] [ 4] [0320] +06:45:07 [ 18] [ 4] [6011] +06:45:07 [ 32] [ 6] [220699] +06:45:07 [ 35] [ 32] [6213542000029166=491212012916736] +06:45:07 [ 37] [ 12] [507900094396] +06:45:07 [ 38] [ 6] [612476] +06:45:07 [ 39] [ 2] [00] +06:45:07 [ 41] [ 8] [01000900] +06:45:07 [ 49] [ 3] [418] +06:45:07 [ 54] [ 40] [0001418C0000140488230002418C000014048823] +06:45:07 ============================================================================ +06:45:07 Calculate Source COMM Id = 1 +06:45:07 ============================================================================ +06:45:07 + + +waiting on router queue for slot.... +06:45:12 ============================================================================ +06:45:12 Slot Id : <307> +06:45:12 Transaction Type : REQUEST +06:45:12 Received From : +06:45:12 ============================================================================ +06:45:12 FNo. Len. Field Value +06:45:12 ============================================================================ +06:45:12 [ 1] [ 4] [0800] +06:45:12 [ 7] [ 10] [0320135700] +06:45:12 [ 11] [ 6] [065700] +06:45:12 [ 37] [ 12] [57906065700] +06:45:12 [ 70] [ 3] [301] +06:45:12 ============================================================================ +06:45:12 + + +waiting on router queue for slot.... +06:45:12 Sending to : +06:45:12 ============================================================================ +06:45:12 ============================================================================ +06:45:12 Slot Id : <307> +06:45:12 Transaction Type : RESPONSE +06:45:12 Received From : +06:45:12 ============================================================================ +06:45:12 FNo. Len. Field Value +06:45:12 ============================================================================ +06:45:12 [ 1] [ 4] [0810] +06:45:12 [ 7] [ 10] [0320135700] +06:45:12 [ 11] [ 6] [065700] +06:45:12 [ 37] [ 12] [579060657000] +06:45:12 [ 39] [ 2] [00] +06:45:12 [ 70] [ 3] [810] +06:45:12 ============================================================================ +06:45:12 Calculate Source COMM Id = 6 +06:45:12 ============================================================================ +06:45:12 + + +waiting on router queue for slot.... +06:45:20 ============================================================================ +06:45:20 Slot Id : <317> +06:45:20 Transaction Type : REQUEST +06:45:20 Received From : +06:45:20 ============================================================================ +06:45:20 FNo. Len. Field Value +06:45:20 ============================================================================ +06:45:20 [ 1] [ 4] [0800] +06:45:20 [ 7] [ 10] [0319114429] +06:45:20 [ 11] [ 6] [154972] +06:45:20 [ 70] [ 3] [301] +06:45:20 ============================================================================ +06:45:20 + + +waiting on router queue for slot.... +06:45:20 Sending to : +06:45:20 ============================================================================ +06:45:20 ============================================================================ +06:45:20 Slot Id : <317> +06:45:20 Transaction Type : RESPONSE +06:45:20 Received From : +06:45:20 ============================================================================ +06:45:20 FNo. Len. Field Value +06:45:20 ============================================================================ +06:45:20 [ 1] [ 4] [0810] +06:45:20 [ 7] [ 10] [0319114429] +06:45:20 [ 11] [ 6] [154972] +06:45:20 [ 39] [ 2] [00] +06:45:20 [ 70] [ 3] [301] +06:45:20 ============================================================================ +06:45:20 Calculate Source COMM Id = 2 +06:45:20 ============================================================================ +06:45:20 + + +waiting on router queue for slot.... +06:45:32 ============================================================================ +06:45:32 Slot Id : <310> +06:45:32 Transaction Type : REQUEST +06:45:32 Received From : +06:45:32 ============================================================================ +06:45:32 FNo. Len. Field Value +06:45:32 ============================================================================ +06:45:32 [ 1] [ 4] [0800] +06:45:32 [ 7] [ 10] [0319114441] +06:45:32 [ 11] [ 6] [154973] +06:45:32 [ 70] [ 3] [301] +06:45:32 ============================================================================ +06:45:32 + + +waiting on router queue for slot.... +06:45:32 Sending to : +06:45:32 ============================================================================ +06:45:32 ============================================================================ +06:45:32 Slot Id : <310> +06:45:32 Transaction Type : RESPONSE +06:45:32 Received From : +06:45:32 ============================================================================ +06:45:32 FNo. Len. Field Value +06:45:32 ============================================================================ +06:45:32 [ 1] [ 4] [0810] +06:45:32 [ 7] [ 10] [0319114441] +06:45:32 [ 11] [ 6] [154973] +06:45:32 [ 39] [ 2] [00] +06:45:32 [ 70] [ 3] [301] +06:45:32 ============================================================================ +06:45:32 Calculate Source COMM Id = 2 +06:45:32 ============================================================================ +06:45:32 + + +waiting on router queue for slot.... +06:45:33 ============================================================================ +06:45:33 Slot Id : <318> +06:45:33 Transaction Type : REQUEST +06:45:33 Received From : +06:45:33 ============================================================================ +06:45:33 FNo. Len. Field Value +06:45:33 ============================================================================ +06:45:33 [ 1] [ 4] [0800] +06:45:33 [ 7] [ 10] [0320064521] +06:45:33 [ 11] [ 6] [019829] +06:45:33 [ 37] [ 12] [507906019829] +06:45:33 [ 70] [ 3] [ ] +06:45:33 ============================================================================ +06:45:33 + + +waiting on router queue for slot.... +06:45:33 Sending to : +06:45:33 ============================================================================ +06:45:33 ============================================================================ +06:45:33 Slot Id : <318> +06:45:33 Transaction Type : RESPONSE +06:45:33 Received From : +06:45:33 ============================================================================ +06:45:33 FNo. Len. Field Value +06:45:33 ============================================================================ +06:45:33 [ 1] [ 4] [0810] +06:45:33 [ 7] [ 10] [0320064521] +06:45:33 [ 11] [ 6] [019829] +06:45:33 [ 37] [ 12] [507906019829] +06:45:33 [ 39] [ 2] [91] +06:45:33 [ 70] [ 3] [ ] +06:45:33 ============================================================================ +06:45:33 Calculate Source COMM Id = 3 +06:45:33 ============================================================================ +06:45:33 + + +waiting on router queue for slot.... +06:45:40 ============================================================================ +06:45:40 Slot Id : <289> +06:45:40 Transaction Type : REQUEST +06:45:40 Received From : +06:45:40 ============================================================================ +06:45:40 FNo. Len. Field Value +06:45:40 ============================================================================ +06:45:40 [ 1] [ 4] [0800] +06:45:40 [ 2] [ 5] [02531] +06:45:40 [ 3] [ 6] [579068] +06:45:40 [ 7] [ 10] [0319234540] +06:45:40 [ 11] [ 6] [806804] +06:45:40 [ 15] [ 10] [0319234540] +06:45:40 [ 37] [ 11] [57906806804] +06:45:40 [ 70] [ 3] [001] +06:45:40 ============================================================================ +06:45:40 + + +waiting on router queue for slot.... +06:45:40 ============================================================================ +06:45:40 Slot Id : <289> +06:45:40 Transaction Type : RESPONSE +06:45:40 Received From : +06:45:40 ============================================================================ +06:45:40 FNo. Len. Field Value +06:45:40 ============================================================================ +06:45:40 [ 1] [ 4] [0810] +06:45:40 [ 7] [ 10] [0319234540] +06:45:40 [ 11] [ 6] [806804] +06:45:40 [ 15] [ 4] [0319] +06:45:40 [ 37] [ 12] [57906806804] +06:45:40 [ 39] [ 2] [00] +06:45:40 [ 70] [ 3] [001] +06:45:40 ============================================================================ +06:45:40 Sending to : +06:45:40 ============================================================================ +06:45:40 + + +waiting on router queue for slot.... +06:45:44 ============================================================================ +06:45:44 Slot Id : <315> +06:45:44 Transaction Type : REQUEST +06:45:44 Received From : +06:45:44 ============================================================================ +06:45:44 FNo. Len. Field Value +06:45:44 ============================================================================ +06:45:44 [ 1] [ 4] [0800] +06:45:44 [ 7] [ 10] [0319114453] +06:45:44 [ 11] [ 6] [154974] +06:45:44 [ 70] [ 3] [301] +06:45:44 ============================================================================ +06:45:44 + + +waiting on router queue for slot.... +06:45:44 Sending to : +06:45:44 ============================================================================ +06:45:44 ============================================================================ +06:45:44 Slot Id : <315> +06:45:44 Transaction Type : RESPONSE +06:45:44 Received From : +06:45:44 ============================================================================ +06:45:44 FNo. Len. Field Value +06:45:44 ============================================================================ +06:45:44 [ 1] [ 4] [0810] +06:45:44 [ 7] [ 10] [0319114453] +06:45:44 [ 11] [ 6] [154974] +06:45:44 [ 39] [ 2] [00] +06:45:44 [ 70] [ 3] [301] +06:45:44 ============================================================================ +06:45:44 Calculate Source COMM Id = 2 +06:45:44 ============================================================================ +06:45:44 + + +waiting on router queue for slot.... +06:45:44 ============================================================================ +06:45:44 Slot Id : <322> +06:45:44 Transaction Type : REQUEST +06:45:44 Received From : +06:45:44 ============================================================================ +06:45:44 FNo. Len. Field Value +06:45:44 ============================================================================ +06:45:44 [ 1] [ 4] [0200] +06:45:44 [ 2] [ 16] [6688990108428200] +06:45:44 [ 3] [ 6] [302000] +06:45:44 [ 7] [ 10] [0319234452] +06:45:44 [ 11] [ 6] [266667] +06:45:44 [ 12] [ 6] [064452] +06:45:44 [ 13] [ 4] [0320] +06:45:44 [ 14] [ 4] [4406] +06:45:44 [ 15] [ 4] [0320] +06:45:44 [ 18] [ 4] [6011] +06:45:44 [ 19] [ 3] [418] +06:45:44 [ 22] [ 3] [021] +06:45:44 [ 25] [ 2] [01] +06:45:44 [ 32] [ 6] [180893] +06:45:44 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:45:44 [ 37] [ 12] [507923266667] +06:45:44 [ 41] [ 8] [0263UDXB] +06:45:44 [ 42] [ 15] [999999 ] +06:45:44 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +06:45:44 [ 49] [ 3] [418] +06:45:44 [ 52] [ 16] [380EE18D22FC16BD] +06:45:44 ============================================================================ +06:45:44 + + +waiting on router queue for slot.... +06:45:44 Sending to : +06:45:44 ============================================================================ +06:45:44 Sending to : +06:45:44 ============================================================================ +06:45:45 ============================================================================ +06:45:45 Slot Id : <322> +06:45:45 Transaction Type : REQUEST +06:45:45 Received From : +06:45:45 ============================================================================ +06:45:45 FNo. Len. Field Value +06:45:45 ============================================================================ +06:45:45 [ 1] [ 4] [0200] +06:45:45 [ 2] [ 16] [6688990108428200] +06:45:45 [ 3] [ 6] [302000] +06:45:45 [ 7] [ 10] [0319234452] +06:45:45 [ 11] [ 6] [266667] +06:45:45 [ 12] [ 6] [064452] +06:45:45 [ 13] [ 4] [0320] +06:45:45 [ 14] [ 4] [4406] +06:45:45 [ 15] [ 4] [0320] +06:45:45 [ 18] [ 4] [6011] +06:45:45 [ 19] [ 3] [418] +06:45:45 [ 22] [ 3] [021] +06:45:45 [ 25] [ 2] [01] +06:45:45 [ 32] [ 6] [180893] +06:45:45 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:45:45 [ 37] [ 12] [507923266667] +06:45:45 [ 41] [ 8] [0263UDXB] +06:45:45 [ 42] [ 15] [999999 ] +06:45:45 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +06:45:45 [ 49] [ 3] [418] +06:45:45 [ 52] [ 16] [380EE18D22FC16BD] +06:45:45 ============================================================================ +06:45:45 + + +waiting on router queue for slot.... +06:45:45 Sending to : +06:45:45 ============================================================================ +06:45:45 ============================================================================ +06:45:45 Slot Id : <322> +06:45:45 Transaction Type : REQUEST +06:45:45 Received From : +06:45:45 ============================================================================ +06:45:45 FNo. Len. Field Value +06:45:45 ============================================================================ +06:45:45 [ 1] [ 4] [0200] +06:45:45 [ 2] [ 16] [6688990108428200] +06:45:45 [ 3] [ 6] [302000] +06:45:45 [ 7] [ 10] [0319234452] +06:45:45 [ 11] [ 6] [266667] +06:45:45 [ 12] [ 6] [064452] +06:45:45 [ 13] [ 4] [0320] +06:45:45 [ 14] [ 4] [4406] +06:45:45 [ 15] [ 4] [0320] +06:45:45 [ 18] [ 4] [6011] +06:45:45 [ 19] [ 3] [418] +06:45:45 [ 22] [ 3] [021] +06:45:45 [ 25] [ 2] [01] +06:45:45 [ 32] [ 6] [180893] +06:45:45 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:45:45 [ 37] [ 12] [507923266667] +06:45:45 [ 41] [ 8] [0263UDXB] +06:45:45 [ 42] [ 15] [999999 ] +06:45:45 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +06:45:45 [ 49] [ 3] [418] +06:45:45 [ 52] [ 16] [40E35413FE274875] +06:45:45 ============================================================================ +06:45:45 + + +waiting on router queue for slot.... +06:45:45 Sending to : <0> +06:45:45 ============================================================================ +06:45:45 ============================================================================ +06:45:45 Slot Id : <322> +06:45:45 Transaction Type : RESPONSE +06:45:45 Received From : +06:45:45 ============================================================================ +06:45:45 FNo. Len. Field Value +06:45:45 ============================================================================ +06:45:45 [ 1] [ 4] [0210] +06:45:45 [ 2] [ 16] [6688990108428200] +06:45:45 [ 3] [ 6] [302000] +06:45:45 [ 4] [ 12] [000000000000] +06:45:45 [ 7] [ 10] [0319234452] +06:45:45 [ 11] [ 6] [266667] +06:45:45 [ 12] [ 6] [064452] +06:45:45 [ 13] [ 4] [0320] +06:45:45 [ 15] [ 4] [0320] +06:45:45 [ 18] [ 4] [6011] +06:45:45 [ 19] [ 3] [418] +06:45:45 [ 22] [ 3] [021] +06:45:45 [ 32] [ 6] [180893] +06:45:45 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:45:45 [ 37] [ 12] [507923266667] +06:45:45 [ 39] [ 2] [14] +06:45:45 [ 41] [ 8] [0263UDXB] +06:45:45 [ 49] [ 3] [418] +06:45:45 ============================================================================ +06:45:45 Sending to : +06:45:45 ============================================================================ +06:45:45 + + +waiting on router queue for slot.... +06:45:46 ============================================================================ +06:45:46 Slot Id : <322> +06:45:46 Transaction Type : RESPONSE +06:45:46 Received From : +06:45:46 ============================================================================ +06:45:46 FNo. Len. Field Value +06:45:46 ============================================================================ +06:45:46 [ 1] [ 4] [0210] +06:45:46 [ 2] [ 16] [6688990108428200] +06:45:46 [ 3] [ 6] [302000] +06:45:46 [ 4] [ 12] [000000000000] +06:45:46 [ 7] [ 10] [0319234452] +06:45:46 [ 11] [ 6] [266667] +06:45:46 [ 12] [ 6] [064452] +06:45:46 [ 13] [ 4] [0320] +06:45:46 [ 15] [ 4] [0320] +06:45:46 [ 18] [ 4] [6011] +06:45:46 [ 19] [ 3] [418] +06:45:46 [ 22] [ 3] [021] +06:45:46 [ 32] [ 6] [180893] +06:45:46 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:45:46 [ 37] [ 12] [507923266667] +06:45:46 [ 39] [ 2] [14] +06:45:46 [ 41] [ 8] [0263UDXB] +06:45:46 [ 49] [ 3] [418] +06:45:46 ============================================================================ +06:45:46 Calculate Source COMM Id = 2 +06:45:46 ============================================================================ +06:45:46 + + +waiting on router queue for slot.... +06:45:59 ============================================================================ +06:45:59 Slot Id : <304> +06:45:59 Transaction Type : REQUEST +06:45:59 Received From : +06:45:59 ============================================================================ +06:45:59 FNo. Len. Field Value +06:45:59 ============================================================================ +06:45:59 [ 1] [ 4] [0800] +06:45:59 [ 7] [ 10] [0319114507] +06:45:59 [ 11] [ 6] [154975] +06:45:59 [ 70] [ 3] [301] +06:45:59 ============================================================================ +06:45:59 + + +waiting on router queue for slot.... +06:45:59 Sending to : +06:45:59 ============================================================================ +06:45:59 ============================================================================ +06:45:59 Slot Id : <304> +06:45:59 Transaction Type : RESPONSE +06:45:59 Received From : +06:45:59 ============================================================================ +06:45:59 FNo. Len. Field Value +06:45:59 ============================================================================ +06:45:59 [ 1] [ 4] [0810] +06:45:59 [ 7] [ 10] [0319114507] +06:45:59 [ 11] [ 6] [154975] +06:45:59 [ 39] [ 2] [00] +06:45:59 [ 70] [ 3] [301] +06:45:59 ============================================================================ +06:45:59 Calculate Source COMM Id = 2 +06:45:59 ============================================================================ +06:45:59 + + +waiting on router queue for slot.... +06:46:08 ============================================================================ +06:46:08 Slot Id : <325> +06:46:08 Transaction Type : REQUEST +06:46:08 Received From : +06:46:08 ============================================================================ +06:46:08 FNo. Len. Field Value +06:46:08 ============================================================================ +06:46:08 [ 1] [ 4] [0200] +06:46:08 [ 2] [ 16] [6213544002192117] +06:46:08 [ 3] [ 6] [010000] +06:46:08 [ 4] [ 12] [000070000000] +06:46:08 [ 7] [ 10] [0320064359] +06:46:08 [ 11] [ 6] [929306] +06:46:08 [ 12] [ 6] [064359] +06:46:08 [ 13] [ 4] [0320] +06:46:08 [ 15] [ 4] [0320] +06:46:08 [ 18] [ 4] [6011] +06:46:08 [ 19] [ 3] [418] +06:46:08 [ 22] [ 3] [021] +06:46:08 [ 25] [ 2] [01] +06:46:08 [ 28] [ 9] [D00002000] +06:46:08 [ 32] [ 6] [668899] +06:46:08 [ 35] [ 32] [6213544002192117=491212019211272] +06:46:08 [ 37] [ 12] [507900977460] +06:46:08 [ 41] [ 8] [03407002] +06:46:08 [ 42] [ 15] [APT ] +06:46:08 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +06:46:08 [ 49] [ 3] [418] +06:46:08 [ 52] [ 16] [AFDC8BB90341FB41] +06:46:08 ============================================================================ +06:46:08 + + +waiting on router queue for slot.... +06:46:08 Sending to : +06:46:08 ============================================================================ +06:46:08 Sending to : +06:46:08 ============================================================================ +06:46:08 ============================================================================ +06:46:08 Slot Id : <325> +06:46:08 Transaction Type : REQUEST +06:46:08 Received From : +06:46:08 ============================================================================ +06:46:08 FNo. Len. Field Value +06:46:08 ============================================================================ +06:46:08 [ 1] [ 4] [0200] +06:46:08 [ 2] [ 16] [6213544002192117] +06:46:08 [ 3] [ 6] [010000] +06:46:08 [ 4] [ 12] [000070000000] +06:46:08 [ 7] [ 10] [0320064359] +06:46:08 [ 11] [ 6] [929306] +06:46:08 [ 12] [ 6] [064359] +06:46:08 [ 13] [ 4] [0320] +06:46:08 [ 15] [ 4] [0320] +06:46:08 [ 18] [ 4] [6011] +06:46:08 [ 19] [ 3] [418] +06:46:08 [ 22] [ 3] [021] +06:46:08 [ 25] [ 2] [01] +06:46:08 [ 28] [ 9] [D00002000] +06:46:08 [ 32] [ 6] [668899] +06:46:08 [ 35] [ 32] [6213544002192117=491212019211272] +06:46:08 [ 37] [ 12] [507900977460] +06:46:08 [ 41] [ 8] [03407002] +06:46:08 [ 42] [ 15] [APT ] +06:46:08 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +06:46:08 [ 49] [ 3] [418] +06:46:08 [ 52] [ 16] [AFDC8BB90341FB41] +06:46:08 ============================================================================ +06:46:08 + + +waiting on router queue for slot.... +06:46:08 Sending to : +06:46:08 ============================================================================ +06:46:08 ============================================================================ +06:46:08 Slot Id : <325> +06:46:08 Transaction Type : REQUEST +06:46:08 Received From : +06:46:08 ============================================================================ +06:46:08 FNo. Len. Field Value +06:46:08 ============================================================================ +06:46:08 [ 1] [ 4] [0200] +06:46:08 [ 2] [ 16] [6213544002192117] +06:46:08 [ 3] [ 6] [010000] +06:46:08 [ 4] [ 12] [000070000000] +06:46:08 [ 7] [ 10] [0320064359] +06:46:08 [ 11] [ 6] [929306] +06:46:08 [ 12] [ 6] [064359] +06:46:08 [ 13] [ 4] [0320] +06:46:08 [ 15] [ 4] [0320] +06:46:08 [ 18] [ 4] [6011] +06:46:08 [ 19] [ 3] [418] +06:46:08 [ 22] [ 3] [021] +06:46:08 [ 25] [ 2] [01] +06:46:08 [ 28] [ 9] [D00002000] +06:46:08 [ 32] [ 6] [668899] +06:46:08 [ 35] [ 32] [6213544002192117=491212019211272] +06:46:08 [ 37] [ 12] [507900977460] +06:46:08 [ 41] [ 8] [03407002] +06:46:08 [ 42] [ 15] [APT ] +06:46:08 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +06:46:08 [ 49] [ 3] [418] +06:46:08 [ 52] [ 16] [104E71F2A8262C14] +06:46:08 ============================================================================ +06:46:08 + + +waiting on router queue for slot.... +06:46:08 Sending to : <0> +06:46:08 ============================================================================ +06:46:09 ============================================================================ +06:46:09 Slot Id : <325> +06:46:09 Transaction Type : RESPONSE +06:46:09 Received From : +06:46:09 ============================================================================ +06:46:09 FNo. Len. Field Value +06:46:09 ============================================================================ +06:46:09 [ 1] [ 4] [0210] +06:46:09 [ 2] [ 16] [6213544002192117] +06:46:09 [ 3] [ 6] [010000] +06:46:09 [ 4] [ 12] [000070000000] +06:46:09 [ 7] [ 10] [0320064359] +06:46:09 [ 11] [ 6] [929306] +06:46:09 [ 12] [ 6] [064359] +06:46:09 [ 13] [ 4] [0320] +06:46:09 [ 15] [ 4] [0320] +06:46:09 [ 18] [ 4] [6011] +06:46:09 [ 19] [ 3] [418] +06:46:09 [ 32] [ 6] [668899] +06:46:09 [ 35] [ 32] [6213544002192117=491212019211272] +06:46:09 [ 37] [ 12] [507900977460] +06:46:09 [ 38] [ 6] [934834] +06:46:09 [ 39] [ 2] [00] +06:46:09 [ 41] [ 8] [03407002] +06:46:09 [ 49] [ 3] [418] +06:46:09 [ 54] [ 40] [0001418C0000089000000002418C000008900000] +06:46:09 ============================================================================ +06:46:09 Sending to : +06:46:09 ============================================================================ +06:46:09 + + +waiting on router queue for slot.... +06:46:09 ============================================================================ +06:46:09 Slot Id : <285> +06:46:09 Transaction Type : REQUEST +06:46:09 Received From : +06:46:09 ============================================================================ +06:46:09 FNo. Len. Field Value +06:46:09 ============================================================================ +06:46:09 [ 1] [ 4] [0200] +06:46:09 [ 2] [ 16] [2206990000092155] +06:46:09 [ 3] [ 6] [302000] +06:46:09 [ 4] [ 12] [000000000000] +06:46:09 [ 7] [ 10] [0320064605] +06:46:09 [ 11] [ 6] [665275] +06:46:09 [ 12] [ 6] [064605] +06:46:09 [ 13] [ 4] [0320] +06:46:09 [ 15] [ 4] [0320] +06:46:09 [ 18] [ 4] [6011] +06:46:09 [ 22] [ 3] [900] +06:46:09 [ 25] [ 2] [02] +06:46:09 [ 28] [ 9] [D00000000] +06:46:09 [ 32] [ 6] [621354] +06:46:09 [ 35] [ 32] [2206990000092155=971012614426313] +06:46:09 [ 37] [ 12] [507904119557] +06:46:09 [ 41] [ 8] [08000800] +06:46:09 [ 42] [ 15] [NATIVE ] +06:46:09 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:46:09 [ 49] [ 3] [418] +06:46:09 [ 52] [ 16] [B1A2E93DB6E8A815] +06:46:09 ============================================================================ +06:46:09 + + +waiting on router queue for slot.... +06:46:09 Sending to : +06:46:09 ============================================================================ +06:46:09 Sending to : +06:46:09 ============================================================================ +06:46:09 ============================================================================ +06:46:09 Slot Id : <285> +06:46:09 Transaction Type : REQUEST +06:46:09 Received From : +06:46:09 ============================================================================ +06:46:09 FNo. Len. Field Value +06:46:09 ============================================================================ +06:46:09 [ 1] [ 4] [0200] +06:46:09 [ 2] [ 16] [2206990000092155] +06:46:09 [ 3] [ 6] [302000] +06:46:09 [ 4] [ 12] [000000000000] +06:46:09 [ 7] [ 10] [0320064605] +06:46:09 [ 11] [ 6] [665275] +06:46:09 [ 12] [ 6] [064605] +06:46:09 [ 13] [ 4] [0320] +06:46:09 [ 15] [ 4] [0320] +06:46:09 [ 18] [ 4] [6011] +06:46:09 [ 22] [ 3] [900] +06:46:09 [ 25] [ 2] [02] +06:46:09 [ 28] [ 9] [D00000000] +06:46:09 [ 32] [ 6] [621354] +06:46:09 [ 35] [ 32] [2206990000092155=971012614426313] +06:46:09 [ 37] [ 12] [507904119557] +06:46:09 [ 41] [ 8] [08000800] +06:46:09 [ 42] [ 15] [NATIVE ] +06:46:09 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:46:09 [ 49] [ 3] [418] +06:46:09 [ 52] [ 16] [B1A2E93DB6E8A815] +06:46:09 ============================================================================ +06:46:09 + + +waiting on router queue for slot.... +06:46:09 Sending to : +06:46:09 ============================================================================ +06:46:09 ============================================================================ +06:46:09 Slot Id : <285> +06:46:09 Transaction Type : REQUEST +06:46:09 Received From : +06:46:09 ============================================================================ +06:46:09 FNo. Len. Field Value +06:46:09 ============================================================================ +06:46:09 [ 1] [ 4] [0200] +06:46:09 [ 2] [ 16] [2206990000092155] +06:46:09 [ 3] [ 6] [302000] +06:46:09 [ 4] [ 12] [000000000000] +06:46:09 [ 7] [ 10] [0320064605] +06:46:09 [ 11] [ 6] [665275] +06:46:09 [ 12] [ 6] [064605] +06:46:09 [ 13] [ 4] [0320] +06:46:09 [ 15] [ 4] [0320] +06:46:09 [ 18] [ 4] [6011] +06:46:09 [ 22] [ 3] [900] +06:46:09 [ 25] [ 2] [02] +06:46:09 [ 28] [ 9] [D00000000] +06:46:09 [ 32] [ 6] [621354] +06:46:09 [ 35] [ 32] [2206990000092155=971012614426313] +06:46:09 [ 37] [ 12] [507904119557] +06:46:09 [ 41] [ 8] [08000800] +06:46:09 [ 42] [ 15] [NATIVE ] +06:46:09 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:46:09 [ 49] [ 3] [418] +06:46:09 [ 52] [ 16] [0686A65E994241DB] +06:46:09 ============================================================================ +06:46:09 + + +waiting on router queue for slot.... +06:46:09 Sending to : <1> +06:46:09 ============================================================================ +06:46:10 ============================================================================ +06:46:10 Slot Id : <325> +06:46:10 Transaction Type : RESPONSE +06:46:10 Received From : +06:46:10 ============================================================================ +06:46:10 FNo. Len. Field Value +06:46:10 ============================================================================ +06:46:10 [ 1] [ 4] [0210] +06:46:10 [ 2] [ 16] [6213544002192117] +06:46:10 [ 3] [ 6] [010000] +06:46:10 [ 4] [ 12] [000070000000] +06:46:10 [ 7] [ 10] [0320064359] +06:46:10 [ 11] [ 6] [929306] +06:46:10 [ 12] [ 6] [064359] +06:46:10 [ 13] [ 4] [0320] +06:46:10 [ 15] [ 4] [0320] +06:46:10 [ 18] [ 4] [6011] +06:46:10 [ 19] [ 3] [418] +06:46:10 [ 32] [ 6] [668899] +06:46:10 [ 35] [ 32] [6213544002192117=491212019211272] +06:46:10 [ 37] [ 12] [507900977460] +06:46:10 [ 38] [ 6] [934834] +06:46:10 [ 39] [ 2] [00] +06:46:10 [ 41] [ 8] [03407002] +06:46:10 [ 49] [ 3] [418] +06:46:10 [ 54] [ 40] [0001418C0000089000000002418C000008900000] +06:46:10 ============================================================================ +06:46:10 Calculate Source COMM Id = 4 +06:46:10 ============================================================================ +06:46:10 + + +waiting on router queue for slot.... +06:46:10 ============================================================================ +06:46:10 Slot Id : <285> +06:46:10 Transaction Type : RESPONSE +06:46:10 Received From : +06:46:10 ============================================================================ +06:46:10 FNo. Len. Field Value +06:46:10 ============================================================================ +06:46:10 [ 1] [ 4] [0210] +06:46:10 [ 2] [ 16] [2206990000092155] +06:46:10 [ 3] [ 6] [302000] +06:46:10 [ 4] [ 12] [000000000000] +06:46:10 [ 7] [ 10] [0320064605] +06:46:10 [ 11] [ 6] [665275] +06:46:10 [ 12] [ 6] [064605] +06:46:10 [ 13] [ 4] [0320] +06:46:10 [ 15] [ 4] [0320] +06:46:10 [ 18] [ 4] [6011] +06:46:10 [ 32] [ 6] [621354] +06:46:10 [ 35] [ 32] [2206990000092155=971012614426313] +06:46:10 [ 37] [ 12] [507904119557] +06:46:10 [ 38] [ 6] [018996] +06:46:10 [ 39] [ 2] [00] +06:46:10 [ 41] [ 8] [08000800] +06:46:10 [ 49] [ 3] [418] +06:46:10 [ 54] [ 40] [2001418C0002212992002002418C000221299200] +06:46:10 ============================================================================ +06:46:10 Sending to : +06:46:10 ============================================================================ +06:46:10 + + +waiting on router queue for slot.... +06:46:12 ============================================================================ +06:46:12 Slot Id : <285> +06:46:12 Transaction Type : RESPONSE +06:46:12 Received From : +06:46:12 ============================================================================ +06:46:12 FNo. Len. Field Value +06:46:12 ============================================================================ +06:46:12 [ 1] [ 4] [0210] +06:46:12 [ 2] [ 16] [2206990000092155] +06:46:12 [ 3] [ 6] [302000] +06:46:12 [ 4] [ 12] [000000000000] +06:46:12 [ 7] [ 10] [0320064605] +06:46:12 [ 11] [ 6] [665275] +06:46:12 [ 12] [ 6] [064605] +06:46:12 [ 13] [ 4] [0320] +06:46:12 [ 15] [ 4] [0320] +06:46:12 [ 18] [ 4] [6011] +06:46:12 [ 32] [ 6] [621354] +06:46:12 [ 35] [ 32] [2206990000092155=971012614426313] +06:46:12 [ 37] [ 12] [507904119557] +06:46:12 [ 38] [ 6] [018996] +06:46:12 [ 39] [ 2] [00] +06:46:12 [ 41] [ 8] [08000800] +06:46:12 [ 49] [ 3] [418] +06:46:12 [ 54] [ 40] [2001418C0002212992002002418C000221299200] +06:46:12 ============================================================================ +06:46:12 Calculate Source COMM Id = 0 +06:46:12 ============================================================================ +06:46:12 + + +waiting on router queue for slot.... +06:46:15 ============================================================================ +06:46:15 Slot Id : <297> +06:46:15 Transaction Type : REQUEST +06:46:15 Received From : +06:46:15 ============================================================================ +06:46:15 FNo. Len. Field Value +06:46:15 ============================================================================ +06:46:15 [ 1] [ 4] [0800] +06:46:15 [ 7] [ 10] [0319114523] +06:46:15 [ 11] [ 6] [154976] +06:46:15 [ 70] [ 3] [301] +06:46:15 ============================================================================ +06:46:15 + + +waiting on router queue for slot.... +06:46:15 Sending to : +06:46:15 ============================================================================ +06:46:15 ============================================================================ +06:46:15 Slot Id : <297> +06:46:15 Transaction Type : RESPONSE +06:46:15 Received From : +06:46:15 ============================================================================ +06:46:15 FNo. Len. Field Value +06:46:15 ============================================================================ +06:46:15 [ 1] [ 4] [0810] +06:46:15 [ 7] [ 10] [0319114523] +06:46:15 [ 11] [ 6] [154976] +06:46:15 [ 39] [ 2] [00] +06:46:15 [ 70] [ 3] [301] +06:46:15 ============================================================================ +06:46:15 Calculate Source COMM Id = 2 +06:46:15 ============================================================================ +06:46:15 + + +waiting on router queue for slot.... +06:46:17 ============================================================================ +06:46:17 Slot Id : <291> +06:46:17 Transaction Type : REQUEST +06:46:17 Received From : +06:46:17 ============================================================================ +06:46:17 FNo. Len. Field Value +06:46:17 ============================================================================ +06:46:17 [ 1] [ 4] [0800] +06:46:17 [ 7] [ 10] [0320135806] +06:46:17 [ 11] [ 6] [065806] +06:46:17 [ 37] [ 12] [57906065806] +06:46:17 [ 70] [ 3] [301] +06:46:17 ============================================================================ +06:46:17 + + +waiting on router queue for slot.... +06:46:17 Sending to : +06:46:17 ============================================================================ +06:46:17 ============================================================================ +06:46:17 Slot Id : <291> +06:46:17 Transaction Type : RESPONSE +06:46:17 Received From : +06:46:17 ============================================================================ +06:46:17 FNo. Len. Field Value +06:46:17 ============================================================================ +06:46:17 [ 1] [ 4] [0810] +06:46:17 [ 7] [ 10] [0320135806] +06:46:17 [ 11] [ 6] [065806] +06:46:17 [ 37] [ 12] [579060658060] +06:46:17 [ 39] [ 2] [00] +06:46:17 [ 70] [ 3] [810] +06:46:17 ============================================================================ +06:46:17 Calculate Source COMM Id = 6 +06:46:17 ============================================================================ +06:46:17 + + +waiting on router queue for slot.... +06:46:21 ============================================================================ +06:46:21 Slot Id : <326> +06:46:21 Transaction Type : REQUEST +06:46:21 Received From : +06:46:21 ============================================================================ +06:46:21 FNo. Len. Field Value +06:46:21 ============================================================================ +06:46:21 [ 1] [ 4] [0800] +06:46:21 [ 7] [ 10] [0319234412] +06:46:21 [ 11] [ 6] [038843] +06:46:21 [ 37] [ 12] [57906038843] +06:46:21 [ 70] [ 3] [301] +06:46:21 ============================================================================ +06:46:21 + + +waiting on router queue for slot.... +06:46:21 Sending to : +06:46:21 ============================================================================ +06:46:21 ============================================================================ +06:46:21 Slot Id : <326> +06:46:21 Transaction Type : RESPONSE +06:46:21 Received From : +06:46:21 ============================================================================ +06:46:21 FNo. Len. Field Value +06:46:21 ============================================================================ +06:46:21 [ 1] [ 4] [0810] +06:46:21 [ 7] [ 10] [0319234412] +06:46:21 [ 11] [ 6] [038843] +06:46:21 [ 37] [ 12] [579060388430] +06:46:21 [ 39] [ 2] [00] +06:46:21 [ 70] [ 3] [810] +06:46:21 ============================================================================ +06:46:21 Calculate Source COMM Id = 4 +06:46:21 ============================================================================ +06:46:21 + + +waiting on router queue for slot.... +06:46:26 ============================================================================ +06:46:26 Slot Id : <305> +06:46:26 Transaction Type : REQUEST +06:46:26 Received From : +06:46:26 ============================================================================ +06:46:26 FNo. Len. Field Value +06:46:26 ============================================================================ +06:46:26 [ 1] [ 4] [0800] +06:46:26 [ 7] [ 10] [0319114534] +06:46:26 [ 11] [ 6] [154977] +06:46:26 [ 70] [ 3] [301] +06:46:26 ============================================================================ +06:46:26 + + +waiting on router queue for slot.... +06:46:26 Sending to : +06:46:26 ============================================================================ +06:46:26 ============================================================================ +06:46:26 Slot Id : <305> +06:46:26 Transaction Type : RESPONSE +06:46:26 Received From : +06:46:26 ============================================================================ +06:46:26 FNo. Len. Field Value +06:46:26 ============================================================================ +06:46:26 [ 1] [ 4] [0810] +06:46:26 [ 7] [ 10] [0319114534] +06:46:26 [ 11] [ 6] [154977] +06:46:26 [ 39] [ 2] [00] +06:46:26 [ 70] [ 3] [301] +06:46:26 ============================================================================ +06:46:26 Calculate Source COMM Id = 2 +06:46:26 ============================================================================ +06:46:26 + + +waiting on router queue for slot.... +06:46:29 ============================================================================ +06:46:29 Slot Id : <301> +06:46:29 Transaction Type : REQUEST +06:46:29 Received From : +06:46:29 ============================================================================ +06:46:29 FNo. Len. Field Value +06:46:29 ============================================================================ +06:46:29 [ 1] [ 4] [0200] +06:46:29 [ 2] [ 16] [6688990102697701] +06:46:29 [ 3] [ 6] [010000] +06:46:29 [ 4] [ 12] [000100000000] +06:46:29 [ 7] [ 10] [0320064626] +06:46:29 [ 11] [ 6] [665318] +06:46:29 [ 12] [ 6] [064626] +06:46:29 [ 13] [ 4] [0320] +06:46:29 [ 15] [ 4] [0320] +06:46:29 [ 18] [ 4] [6011] +06:46:29 [ 22] [ 3] [900] +06:46:29 [ 25] [ 2] [02] +06:46:29 [ 28] [ 9] [D00002000] +06:46:29 [ 32] [ 6] [621354] +06:46:29 [ 35] [ 37] [6688990102697701=42101231770198200000] +06:46:29 [ 37] [ 12] [507903499404] +06:46:29 [ 41] [ 8] [06002200] +06:46:29 [ 42] [ 15] [NATIVE ] +06:46:29 [ 43] [ 40] [Beng Market Beng LAO] +06:46:29 [ 49] [ 3] [418] +06:46:29 [ 52] [ 16] [3B50D51B038F4D96] +06:46:29 ============================================================================ +06:46:29 + + +waiting on router queue for slot.... +06:46:29 Sending to : +06:46:29 ============================================================================ +06:46:29 Sending to : +06:46:29 ============================================================================ +06:46:30 ============================================================================ +06:46:30 Slot Id : <301> +06:46:30 Transaction Type : REQUEST +06:46:30 Received From : +06:46:30 ============================================================================ +06:46:30 FNo. Len. Field Value +06:46:30 ============================================================================ +06:46:30 [ 1] [ 4] [0200] +06:46:30 [ 2] [ 16] [6688990102697701] +06:46:30 [ 3] [ 6] [010000] +06:46:30 [ 4] [ 12] [000100000000] +06:46:30 [ 7] [ 10] [0320064626] +06:46:30 [ 11] [ 6] [665318] +06:46:30 [ 12] [ 6] [064626] +06:46:30 [ 13] [ 4] [0320] +06:46:30 [ 15] [ 4] [0320] +06:46:30 [ 18] [ 4] [6011] +06:46:30 [ 22] [ 3] [900] +06:46:30 [ 25] [ 2] [02] +06:46:30 [ 28] [ 9] [D00002000] +06:46:30 [ 32] [ 6] [621354] +06:46:30 [ 35] [ 37] [6688990102697701=42101231770198200000] +06:46:30 [ 37] [ 12] [507903499404] +06:46:30 [ 41] [ 8] [06002200] +06:46:30 [ 42] [ 15] [NATIVE ] +06:46:30 [ 43] [ 40] [Beng Market Beng LAO] +06:46:30 [ 49] [ 3] [418] +06:46:30 [ 52] [ 16] [3B50D51B038F4D96] +06:46:30 ============================================================================ +06:46:30 + + +waiting on router queue for slot.... +06:46:30 Sending to : +06:46:30 ============================================================================ +06:46:30 ============================================================================ +06:46:30 Slot Id : <301> +06:46:30 Transaction Type : REQUEST +06:46:30 Received From : +06:46:30 ============================================================================ +06:46:30 FNo. Len. Field Value +06:46:30 ============================================================================ +06:46:30 [ 1] [ 4] [0200] +06:46:30 [ 2] [ 16] [6688990102697701] +06:46:30 [ 3] [ 6] [010000] +06:46:30 [ 4] [ 12] [000100000000] +06:46:30 [ 7] [ 10] [0320064626] +06:46:30 [ 11] [ 6] [665318] +06:46:30 [ 12] [ 6] [064626] +06:46:30 [ 13] [ 4] [0320] +06:46:30 [ 15] [ 4] [0320] +06:46:30 [ 18] [ 4] [6011] +06:46:30 [ 22] [ 3] [900] +06:46:30 [ 25] [ 2] [02] +06:46:30 [ 28] [ 9] [D00002000] +06:46:30 [ 32] [ 6] [621354] +06:46:30 [ 35] [ 37] [6688990102697701=42101231770198200000] +06:46:30 [ 37] [ 12] [507903499404] +06:46:30 [ 41] [ 8] [06002200] +06:46:30 [ 42] [ 15] [NATIVE ] +06:46:30 [ 43] [ 40] [Beng Market Beng LAO] +06:46:30 [ 49] [ 3] [418] +06:46:30 [ 52] [ 16] [357169AADE7FE22D] +06:46:30 ============================================================================ +06:46:30 + + +waiting on router queue for slot.... +06:46:30 Sending to : <4> +06:46:30 ============================================================================ +06:46:31 ============================================================================ +06:46:31 Slot Id : <301> +06:46:31 Transaction Type : RESPONSE +06:46:31 Received From : +06:46:31 ============================================================================ +06:46:31 FNo. Len. Field Value +06:46:31 ============================================================================ +06:46:31 [ 1] [ 4] [0210] +06:46:31 [ 2] [ 16] [6688990102697701] +06:46:31 [ 3] [ 6] [010000] +06:46:31 [ 4] [ 12] [000100000000] +06:46:31 [ 11] [ 6] [665318] +06:46:31 [ 12] [ 6] [064626] +06:46:31 [ 15] [ 4] [0320] +06:46:31 [ 18] [ 4] [6011] +06:46:31 [ 32] [ 6] [621354] +06:46:31 [ 35] [ 37] [6688990102697701=42101231770198200000] +06:46:31 [ 37] [ 12] [507903499404] +06:46:31 [ 38] [ 6] [962421] +06:46:31 [ 39] [ 2] [00] +06:46:31 [ 41] [ 8] [06002200] +06:46:31 [ 49] [ 3] [418] +06:46:31 [ 54] [ 20] [0002418C000054940633] +06:46:31 ============================================================================ +06:46:31 Sending to : +06:46:31 ============================================================================ +06:46:31 + + +waiting on router queue for slot.... +06:46:33 ============================================================================ +06:46:33 Slot Id : <301> +06:46:33 Transaction Type : RESPONSE +06:46:33 Received From : +06:46:33 ============================================================================ +06:46:33 FNo. Len. Field Value +06:46:33 ============================================================================ +06:46:33 [ 1] [ 4] [0210] +06:46:33 [ 2] [ 16] [6688990102697701] +06:46:33 [ 3] [ 6] [010000] +06:46:33 [ 4] [ 12] [000100000000] +06:46:33 [ 11] [ 6] [665318] +06:46:33 [ 12] [ 6] [064626] +06:46:33 [ 15] [ 4] [0320] +06:46:33 [ 18] [ 4] [6011] +06:46:33 [ 32] [ 6] [621354] +06:46:33 [ 35] [ 37] [6688990102697701=42101231770198200000] +06:46:33 [ 37] [ 12] [507903499404] +06:46:33 [ 38] [ 6] [962421] +06:46:33 [ 39] [ 2] [00] +06:46:33 [ 41] [ 8] [06002200] +06:46:33 [ 49] [ 3] [418] +06:46:33 [ 54] [ 20] [0002418C000054940633] +06:46:33 ============================================================================ +06:46:33 Calculate Source COMM Id = 0 +06:46:33 ============================================================================ +06:46:33 + + +waiting on router queue for slot.... +06:46:41 ============================================================================ +06:46:41 Slot Id : <327> +06:46:41 Transaction Type : REQUEST +06:46:41 Received From : +06:46:41 ============================================================================ +06:46:41 FNo. Len. Field Value +06:46:41 ============================================================================ +06:46:41 [ 1] [ 4] [0800] +06:46:41 [ 7] [ 10] [0319114549] +06:46:41 [ 11] [ 6] [154978] +06:46:41 [ 70] [ 3] [301] +06:46:41 ============================================================================ +06:46:41 + + +waiting on router queue for slot.... +06:46:41 Sending to : +06:46:41 ============================================================================ +06:46:41 ============================================================================ +06:46:41 Slot Id : <327> +06:46:41 Transaction Type : RESPONSE +06:46:41 Received From : +06:46:41 ============================================================================ +06:46:41 FNo. Len. Field Value +06:46:41 ============================================================================ +06:46:41 [ 1] [ 4] [0810] +06:46:41 [ 7] [ 10] [0319114549] +06:46:41 [ 11] [ 6] [154978] +06:46:41 [ 39] [ 2] [00] +06:46:41 [ 70] [ 3] [301] +06:46:41 ============================================================================ +06:46:41 Calculate Source COMM Id = 2 +06:46:41 ============================================================================ +06:46:41 + + +waiting on router queue for slot.... +06:46:42 ============================================================================ +06:46:42 Slot Id : <333> +06:46:42 Transaction Type : REQUEST +06:46:42 Received From : +06:46:42 ============================================================================ +06:46:42 FNo. Len. Field Value +06:46:42 ============================================================================ +06:46:42 [ 1] [ 4] [0800] +06:46:42 [ 2] [ 5] [02531] +06:46:42 [ 3] [ 6] [579068] +06:46:42 [ 7] [ 10] [0319234642] +06:46:42 [ 11] [ 6] [806805] +06:46:42 [ 15] [ 10] [0319234642] +06:46:42 [ 37] [ 11] [57906806805] +06:46:42 [ 70] [ 3] [001] +06:46:42 ============================================================================ +06:46:42 + + +waiting on router queue for slot.... +06:46:42 ============================================================================ +06:46:42 Slot Id : <333> +06:46:42 Transaction Type : RESPONSE +06:46:42 Received From : +06:46:42 ============================================================================ +06:46:42 FNo. Len. Field Value +06:46:42 ============================================================================ +06:46:42 [ 1] [ 4] [0810] +06:46:42 [ 7] [ 10] [0319234642] +06:46:42 [ 11] [ 6] [806805] +06:46:42 [ 15] [ 4] [0319] +06:46:42 [ 37] [ 12] [57906806805] +06:46:42 [ 39] [ 2] [00] +06:46:42 [ 70] [ 3] [001] +06:46:42 ============================================================================ +06:46:42 Sending to : +06:46:42 ============================================================================ +06:46:42 + + +waiting on router queue for slot.... +06:46:47 ============================================================================ +06:46:47 Slot Id : <331> +06:46:47 Transaction Type : REQUEST +06:46:47 Received From : +06:46:47 ============================================================================ +06:46:47 FNo. Len. Field Value +06:46:47 ============================================================================ +06:46:47 [ 1] [ 4] [0800] +06:46:47 [ 7] [ 10] [0319234644] +06:46:47 [ 11] [ 6] [087568] +06:46:47 [ 37] [ 12] [507906087568] +06:46:47 [ 70] [ 3] [001] +06:46:47 ============================================================================ +06:46:47 + + +waiting on router queue for slot.... +06:46:47 Sending to : +06:46:47 ============================================================================ +06:46:47 ============================================================================ +06:46:47 Slot Id : <331> +06:46:47 Transaction Type : RESPONSE +06:46:47 Received From : +06:46:47 ============================================================================ +06:46:47 FNo. Len. Field Value +06:46:47 ============================================================================ +06:46:47 [ 1] [ 4] [0810] +06:46:47 [ 7] [ 10] [0319234644] +06:46:47 [ 11] [ 6] [087568] +06:46:47 [ 37] [ 12] [507906087568] +06:46:47 [ 39] [ 2] [00] +06:46:47 [ 70] [ 3] [001] +06:46:47 ============================================================================ +06:46:47 Calculate Source COMM Id = 0 +06:46:47 ============================================================================ +06:46:47 + + +waiting on router queue for slot.... +06:46:49 ============================================================================ +06:46:49 Slot Id : <314> +06:46:49 Transaction Type : REQUEST +06:46:49 Received From : +06:46:49 ============================================================================ +06:46:49 FNo. Len. Field Value +06:46:49 ============================================================================ +06:46:49 [ 1] [ 4] [0200] +06:46:49 [ 2] [ 16] [6688990108428200] +06:46:49 [ 3] [ 6] [010000] +06:46:49 [ 4] [ 12] [000100000000] +06:46:49 [ 7] [ 10] [0319234557] +06:46:49 [ 11] [ 6] [266673] +06:46:49 [ 12] [ 6] [064557] +06:46:49 [ 13] [ 4] [0320] +06:46:49 [ 14] [ 4] [4406] +06:46:49 [ 15] [ 4] [0320] +06:46:49 [ 18] [ 4] [6011] +06:46:49 [ 19] [ 3] [418] +06:46:49 [ 22] [ 3] [021] +06:46:49 [ 25] [ 2] [01] +06:46:49 [ 28] [ 9] [D00002000] +06:46:49 [ 32] [ 6] [180893] +06:46:49 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:46:49 [ 37] [ 12] [507923266673] +06:46:49 [ 41] [ 8] [0263UDXB] +06:46:49 [ 42] [ 15] [999999 ] +06:46:49 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +06:46:49 [ 49] [ 3] [418] +06:46:49 [ 52] [ 16] [380EE18D22FC16BD] +06:46:49 ============================================================================ +06:46:49 + + +waiting on router queue for slot.... +06:46:49 Sending to : +06:46:49 ============================================================================ +06:46:49 Sending to : +06:46:49 ============================================================================ +06:46:49 ============================================================================ +06:46:49 Slot Id : <314> +06:46:49 Transaction Type : REQUEST +06:46:49 Received From : +06:46:49 ============================================================================ +06:46:49 FNo. Len. Field Value +06:46:49 ============================================================================ +06:46:49 [ 1] [ 4] [0200] +06:46:49 [ 2] [ 16] [6688990108428200] +06:46:49 [ 3] [ 6] [010000] +06:46:49 [ 4] [ 12] [000100000000] +06:46:49 [ 7] [ 10] [0319234557] +06:46:49 [ 11] [ 6] [266673] +06:46:49 [ 12] [ 6] [064557] +06:46:49 [ 13] [ 4] [0320] +06:46:49 [ 14] [ 4] [4406] +06:46:49 [ 15] [ 4] [0320] +06:46:49 [ 18] [ 4] [6011] +06:46:49 [ 19] [ 3] [418] +06:46:49 [ 22] [ 3] [021] +06:46:49 [ 25] [ 2] [01] +06:46:49 [ 28] [ 9] [D00002000] +06:46:49 [ 32] [ 6] [180893] +06:46:49 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:46:49 [ 37] [ 12] [507923266673] +06:46:49 [ 41] [ 8] [0263UDXB] +06:46:49 [ 42] [ 15] [999999 ] +06:46:49 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +06:46:49 [ 49] [ 3] [418] +06:46:49 [ 52] [ 16] [380EE18D22FC16BD] +06:46:49 ============================================================================ +06:46:49 + + +waiting on router queue for slot.... +06:46:49 Sending to : +06:46:49 ============================================================================ +06:46:49 ============================================================================ +06:46:49 Slot Id : <314> +06:46:49 Transaction Type : REQUEST +06:46:49 Received From : +06:46:49 ============================================================================ +06:46:49 FNo. Len. Field Value +06:46:49 ============================================================================ +06:46:49 [ 1] [ 4] [0200] +06:46:49 [ 2] [ 16] [6688990108428200] +06:46:49 [ 3] [ 6] [010000] +06:46:49 [ 4] [ 12] [000100000000] +06:46:49 [ 7] [ 10] [0319234557] +06:46:49 [ 11] [ 6] [266673] +06:46:49 [ 12] [ 6] [064557] +06:46:49 [ 13] [ 4] [0320] +06:46:49 [ 14] [ 4] [4406] +06:46:49 [ 15] [ 4] [0320] +06:46:49 [ 18] [ 4] [6011] +06:46:49 [ 19] [ 3] [418] +06:46:49 [ 22] [ 3] [021] +06:46:49 [ 25] [ 2] [01] +06:46:49 [ 28] [ 9] [D00002000] +06:46:49 [ 32] [ 6] [180893] +06:46:49 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:46:49 [ 37] [ 12] [507923266673] +06:46:49 [ 41] [ 8] [0263UDXB] +06:46:49 [ 42] [ 15] [999999 ] +06:46:49 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +06:46:49 [ 49] [ 3] [418] +06:46:49 [ 52] [ 16] [40E35413FE274875] +06:46:49 ============================================================================ +06:46:49 + + +waiting on router queue for slot.... +06:46:49 Sending to : <0> +06:46:49 ============================================================================ +06:46:49 ============================================================================ +06:46:49 Slot Id : <314> +06:46:49 Transaction Type : RESPONSE +06:46:49 Received From : +06:46:49 ============================================================================ +06:46:49 FNo. Len. Field Value +06:46:49 ============================================================================ +06:46:49 [ 1] [ 4] [0210] +06:46:49 [ 2] [ 16] [6688990108428200] +06:46:49 [ 3] [ 6] [010000] +06:46:49 [ 4] [ 12] [000100000000] +06:46:49 [ 7] [ 10] [0319234557] +06:46:49 [ 11] [ 6] [266673] +06:46:49 [ 12] [ 6] [064557] +06:46:49 [ 13] [ 4] [0320] +06:46:49 [ 15] [ 4] [0320] +06:46:49 [ 18] [ 4] [6011] +06:46:49 [ 19] [ 3] [418] +06:46:49 [ 22] [ 3] [021] +06:46:49 [ 32] [ 6] [180893] +06:46:49 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:46:49 [ 37] [ 12] [507923266673] +06:46:49 [ 39] [ 2] [14] +06:46:49 [ 41] [ 8] [0263UDXB] +06:46:49 [ 49] [ 3] [418] +06:46:49 ============================================================================ +06:46:49 Sending to : +06:46:49 ============================================================================ +06:46:49 + + +waiting on router queue for slot.... +06:46:51 ============================================================================ +06:46:51 Slot Id : <314> +06:46:51 Transaction Type : RESPONSE +06:46:51 Received From : +06:46:51 ============================================================================ +06:46:51 FNo. Len. Field Value +06:46:51 ============================================================================ +06:46:51 [ 1] [ 4] [0210] +06:46:51 [ 2] [ 16] [6688990108428200] +06:46:51 [ 3] [ 6] [010000] +06:46:51 [ 4] [ 12] [000100000000] +06:46:51 [ 7] [ 10] [0319234557] +06:46:51 [ 11] [ 6] [266673] +06:46:51 [ 12] [ 6] [064557] +06:46:51 [ 13] [ 4] [0320] +06:46:51 [ 15] [ 4] [0320] +06:46:51 [ 18] [ 4] [6011] +06:46:51 [ 19] [ 3] [418] +06:46:51 [ 22] [ 3] [021] +06:46:51 [ 32] [ 6] [180893] +06:46:51 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:46:51 [ 37] [ 12] [507923266673] +06:46:51 [ 39] [ 2] [14] +06:46:51 [ 41] [ 8] [0263UDXB] +06:46:51 [ 49] [ 3] [418] +06:46:51 ============================================================================ +06:46:51 Calculate Source COMM Id = 2 +06:46:51 ============================================================================ +06:46:51 + + +waiting on router queue for slot.... +06:46:58 ============================================================================ +06:46:58 Slot Id : <321> +06:46:58 Transaction Type : REQUEST +06:46:58 Received From : +06:46:58 ============================================================================ +06:46:58 FNo. Len. Field Value +06:46:58 ============================================================================ +06:46:58 [ 1] [ 4] [0200] +06:46:58 [ 2] [ 16] [6688990104258908] +06:46:58 [ 3] [ 6] [010000] +06:46:58 [ 4] [ 12] [000100000000] +06:46:58 [ 7] [ 10] [0320064654] +06:46:58 [ 11] [ 6] [665364] +06:46:58 [ 12] [ 6] [064654] +06:46:58 [ 13] [ 4] [0320] +06:46:58 [ 15] [ 4] [0320] +06:46:58 [ 18] [ 4] [6011] +06:46:58 [ 22] [ 3] [900] +06:46:58 [ 25] [ 2] [02] +06:46:58 [ 28] [ 9] [D00002000] +06:46:58 [ 32] [ 6] [621354] +06:46:58 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:46:58 [ 37] [ 12] [507904965342] +06:46:58 [ 41] [ 8] [15001100] +06:46:58 [ 42] [ 15] [NATIVE ] +06:46:58 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:46:58 [ 49] [ 3] [418] +06:46:58 [ 52] [ 16] [366615BCC7C78CAF] +06:46:58 ============================================================================ +06:46:58 + + +waiting on router queue for slot.... +06:46:58 Sending to : +06:46:58 ============================================================================ +06:46:58 Sending to : +06:46:58 ============================================================================ +06:46:58 ============================================================================ +06:46:58 Slot Id : <321> +06:46:58 Transaction Type : REQUEST +06:46:58 Received From : +06:46:58 ============================================================================ +06:46:58 FNo. Len. Field Value +06:46:58 ============================================================================ +06:46:58 [ 1] [ 4] [0200] +06:46:58 [ 2] [ 16] [6688990104258908] +06:46:58 [ 3] [ 6] [010000] +06:46:58 [ 4] [ 12] [000100000000] +06:46:58 [ 7] [ 10] [0320064654] +06:46:58 [ 11] [ 6] [665364] +06:46:58 [ 12] [ 6] [064654] +06:46:58 [ 13] [ 4] [0320] +06:46:58 [ 15] [ 4] [0320] +06:46:58 [ 18] [ 4] [6011] +06:46:58 [ 22] [ 3] [900] +06:46:58 [ 25] [ 2] [02] +06:46:58 [ 28] [ 9] [D00002000] +06:46:58 [ 32] [ 6] [621354] +06:46:58 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:46:58 [ 37] [ 12] [507904965342] +06:46:58 [ 41] [ 8] [15001100] +06:46:58 [ 42] [ 15] [NATIVE ] +06:46:58 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:46:58 [ 49] [ 3] [418] +06:46:58 [ 52] [ 16] [366615BCC7C78CAF] +06:46:58 ============================================================================ +06:46:58 + + +waiting on router queue for slot.... +06:46:58 Sending to : +06:46:58 ============================================================================ +06:46:58 ============================================================================ +06:46:58 Slot Id : <321> +06:46:58 Transaction Type : REQUEST +06:46:58 Received From : +06:46:58 ============================================================================ +06:46:58 FNo. Len. Field Value +06:46:58 ============================================================================ +06:46:58 [ 1] [ 4] [0200] +06:46:58 [ 2] [ 16] [6688990104258908] +06:46:58 [ 3] [ 6] [010000] +06:46:58 [ 4] [ 12] [000100000000] +06:46:58 [ 7] [ 10] [0320064654] +06:46:58 [ 11] [ 6] [665364] +06:46:58 [ 12] [ 6] [064654] +06:46:58 [ 13] [ 4] [0320] +06:46:58 [ 15] [ 4] [0320] +06:46:58 [ 18] [ 4] [6011] +06:46:58 [ 22] [ 3] [900] +06:46:58 [ 25] [ 2] [02] +06:46:58 [ 28] [ 9] [D00002000] +06:46:58 [ 32] [ 6] [621354] +06:46:58 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:46:58 [ 37] [ 12] [507904965342] +06:46:58 [ 41] [ 8] [15001100] +06:46:58 [ 42] [ 15] [NATIVE ] +06:46:58 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:46:58 [ 49] [ 3] [418] +06:46:58 [ 52] [ 16] [7BB9B1BAB124D8D1] +06:46:58 ============================================================================ +06:46:58 + + +waiting on router queue for slot.... +06:46:58 Sending to : <4> +06:46:58 ============================================================================ +06:46:59 ============================================================================ +06:46:59 Slot Id : <321> +06:46:59 Transaction Type : RESPONSE +06:46:59 Received From : +06:46:59 ============================================================================ +06:46:59 FNo. Len. Field Value +06:46:59 ============================================================================ +06:46:59 [ 1] [ 4] [0210] +06:46:59 [ 2] [ 16] [6688990104258908] +06:46:59 [ 3] [ 6] [010000] +06:46:59 [ 4] [ 12] [000100000000] +06:46:59 [ 11] [ 6] [665364] +06:46:59 [ 12] [ 6] [064654] +06:46:59 [ 15] [ 4] [0320] +06:46:59 [ 18] [ 4] [6011] +06:46:59 [ 32] [ 6] [621354] +06:46:59 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:46:59 [ 37] [ 12] [507904965342] +06:46:59 [ 38] [ 6] [517637] +06:46:59 [ 39] [ 2] [00] +06:46:59 [ 41] [ 8] [15001100] +06:46:59 [ 49] [ 3] [418] +06:46:59 [ 54] [ 20] [0002418C000857386540] +06:46:59 ============================================================================ +06:46:59 Sending to : +06:46:59 ============================================================================ +06:46:59 + + +waiting on router queue for slot.... +06:47:01 ============================================================================ +06:47:01 Slot Id : <321> +06:47:01 Transaction Type : RESPONSE +06:47:01 Received From : +06:47:01 ============================================================================ +06:47:01 FNo. Len. Field Value +06:47:01 ============================================================================ +06:47:01 [ 1] [ 4] [0210] +06:47:01 [ 2] [ 16] [6688990104258908] +06:47:01 [ 3] [ 6] [010000] +06:47:01 [ 4] [ 12] [000100000000] +06:47:01 [ 11] [ 6] [665364] +06:47:01 [ 12] [ 6] [064654] +06:47:01 [ 15] [ 4] [0320] +06:47:01 [ 18] [ 4] [6011] +06:47:01 [ 32] [ 6] [621354] +06:47:01 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:47:01 [ 37] [ 12] [507904965342] +06:47:01 [ 38] [ 6] [517637] +06:47:01 [ 39] [ 2] [00] +06:47:01 [ 41] [ 8] [15001100] +06:47:01 [ 49] [ 3] [418] +06:47:01 [ 54] [ 20] [0002418C000857386540] +06:47:01 ============================================================================ +06:47:01 Calculate Source COMM Id = 0 +06:47:01 ============================================================================ +06:47:01 + + +waiting on router queue for slot.... +06:47:02 ============================================================================ +06:47:02 Slot Id : <336> +06:47:02 Transaction Type : REQUEST +06:47:02 Received From : +06:47:02 ============================================================================ +06:47:02 FNo. Len. Field Value +06:47:02 ============================================================================ +06:47:02 [ 1] [ 4] [0800] +06:47:02 [ 7] [ 10] [0319114610] +06:47:02 [ 11] [ 6] [154979] +06:47:02 [ 70] [ 3] [301] +06:47:02 ============================================================================ +06:47:02 + + +waiting on router queue for slot.... +06:47:02 Sending to : +06:47:02 ============================================================================ +06:47:02 ============================================================================ +06:47:02 Slot Id : <336> +06:47:02 Transaction Type : RESPONSE +06:47:02 Received From : +06:47:02 ============================================================================ +06:47:02 FNo. Len. Field Value +06:47:02 ============================================================================ +06:47:02 [ 1] [ 4] [0810] +06:47:02 [ 7] [ 10] [0319114610] +06:47:02 [ 11] [ 6] [154979] +06:47:02 [ 39] [ 2] [00] +06:47:02 [ 70] [ 3] [301] +06:47:02 ============================================================================ +06:47:02 Calculate Source COMM Id = 2 +06:47:02 ============================================================================ +06:47:02 + + +waiting on router queue for slot.... +06:47:12 ============================================================================ +06:47:12 Slot Id : <334> +06:47:12 Transaction Type : REQUEST +06:47:12 Received From : +06:47:12 ============================================================================ +06:47:12 FNo. Len. Field Value +06:47:12 ============================================================================ +06:47:12 [ 1] [ 4] [0800] +06:47:12 [ 7] [ 10] [0319114620] +06:47:12 [ 11] [ 6] [154980] +06:47:12 [ 70] [ 3] [301] +06:47:12 ============================================================================ +06:47:12 + + +waiting on router queue for slot.... +06:47:12 Sending to : +06:47:12 ============================================================================ +06:47:12 ============================================================================ +06:47:12 Slot Id : <334> +06:47:12 Transaction Type : RESPONSE +06:47:12 Received From : +06:47:12 ============================================================================ +06:47:12 FNo. Len. Field Value +06:47:12 ============================================================================ +06:47:12 [ 1] [ 4] [0810] +06:47:12 [ 7] [ 10] [0319114620] +06:47:12 [ 11] [ 6] [154980] +06:47:12 [ 39] [ 2] [00] +06:47:12 [ 70] [ 3] [301] +06:47:12 ============================================================================ +06:47:12 Calculate Source COMM Id = 2 +06:47:12 ============================================================================ +06:47:12 + + +waiting on router queue for slot.... +06:47:22 ============================================================================ +06:47:22 Slot Id : <337> +06:47:22 Transaction Type : REQUEST +06:47:22 Received From : +06:47:22 ============================================================================ +06:47:22 FNo. Len. Field Value +06:47:22 ============================================================================ +06:47:22 [ 1] [ 4] [0800] +06:47:22 [ 7] [ 10] [0319114630] +06:47:22 [ 11] [ 6] [154981] +06:47:22 [ 70] [ 3] [301] +06:47:22 ============================================================================ +06:47:22 + + +waiting on router queue for slot.... +06:47:22 Sending to : +06:47:22 ============================================================================ +06:47:22 ============================================================================ +06:47:22 Slot Id : <337> +06:47:22 Transaction Type : RESPONSE +06:47:22 Received From : +06:47:22 ============================================================================ +06:47:22 FNo. Len. Field Value +06:47:22 ============================================================================ +06:47:22 [ 1] [ 4] [0810] +06:47:22 [ 7] [ 10] [0319114630] +06:47:22 [ 11] [ 6] [154981] +06:47:22 [ 39] [ 2] [00] +06:47:22 [ 70] [ 3] [301] +06:47:22 ============================================================================ +06:47:22 Calculate Source COMM Id = 2 +06:47:22 ============================================================================ +06:47:22 + + +waiting on router queue for slot.... +06:47:22 ============================================================================ +06:47:22 Slot Id : <335> +06:47:22 Transaction Type : REQUEST +06:47:22 Received From : +06:47:22 ============================================================================ +06:47:22 FNo. Len. Field Value +06:47:22 ============================================================================ +06:47:22 [ 1] [ 4] [0800] +06:47:22 [ 7] [ 10] [0320135911] +06:47:22 [ 11] [ 6] [065911] +06:47:22 [ 37] [ 12] [57906065911] +06:47:22 [ 70] [ 3] [301] +06:47:22 ============================================================================ +06:47:22 + + +waiting on router queue for slot.... +06:47:22 Sending to : +06:47:22 ============================================================================ +06:47:22 ============================================================================ +06:47:22 Slot Id : <335> +06:47:22 Transaction Type : RESPONSE +06:47:22 Received From : +06:47:22 ============================================================================ +06:47:22 FNo. Len. Field Value +06:47:22 ============================================================================ +06:47:22 [ 1] [ 4] [0810] +06:47:22 [ 7] [ 10] [0320135911] +06:47:22 [ 11] [ 6] [065911] +06:47:22 [ 37] [ 12] [579060659110] +06:47:22 [ 39] [ 2] [00] +06:47:22 [ 70] [ 3] [810] +06:47:22 ============================================================================ +06:47:22 Calculate Source COMM Id = 6 +06:47:22 ============================================================================ +06:47:22 + + +waiting on router queue for slot.... +06:47:33 ============================================================================ +06:47:33 Slot Id : <342> +06:47:33 Transaction Type : REQUEST +06:47:33 Received From : +06:47:33 ============================================================================ +06:47:33 FNo. Len. Field Value +06:47:33 ============================================================================ +06:47:33 [ 1] [ 4] [0800] +06:47:33 [ 7] [ 10] [0319114641] +06:47:33 [ 11] [ 6] [154982] +06:47:33 [ 70] [ 3] [301] +06:47:33 ============================================================================ +06:47:33 + + +waiting on router queue for slot.... +06:47:33 Sending to : +06:47:33 ============================================================================ +06:47:33 ============================================================================ +06:47:33 Slot Id : <342> +06:47:33 Transaction Type : RESPONSE +06:47:33 Received From : +06:47:33 ============================================================================ +06:47:33 FNo. Len. Field Value +06:47:33 ============================================================================ +06:47:33 [ 1] [ 4] [0810] +06:47:33 [ 7] [ 10] [0319114641] +06:47:33 [ 11] [ 6] [154982] +06:47:33 [ 39] [ 2] [00] +06:47:33 [ 70] [ 3] [301] +06:47:33 ============================================================================ +06:47:33 Calculate Source COMM Id = 2 +06:47:33 ============================================================================ +06:47:33 + + +waiting on router queue for slot.... +06:47:38 ============================================================================ +06:47:38 Slot Id : <320> +06:47:38 Transaction Type : REQUEST +06:47:38 Received From : +06:47:38 ============================================================================ +06:47:38 FNo. Len. Field Value +06:47:38 ============================================================================ +06:47:38 [ 1] [ 4] [0200] +06:47:38 [ 2] [ 16] [6688990102697701] +06:47:38 [ 3] [ 6] [010000] +06:47:38 [ 4] [ 12] [000050000000] +06:47:38 [ 7] [ 10] [0320064734] +06:47:38 [ 11] [ 6] [665441] +06:47:38 [ 12] [ 6] [064734] +06:47:38 [ 13] [ 4] [0320] +06:47:38 [ 15] [ 4] [0320] +06:47:38 [ 18] [ 4] [6011] +06:47:38 [ 22] [ 3] [900] +06:47:38 [ 25] [ 2] [02] +06:47:38 [ 28] [ 9] [D00002000] +06:47:38 [ 32] [ 6] [621354] +06:47:38 [ 35] [ 37] [6688990102697701=42101231770198200000] +06:47:38 [ 37] [ 12] [507903499406] +06:47:38 [ 41] [ 8] [06002200] +06:47:38 [ 42] [ 15] [NATIVE ] +06:47:38 [ 43] [ 40] [Beng Market Beng LAO] +06:47:38 [ 49] [ 3] [418] +06:47:38 [ 52] [ 16] [3B50D51B038F4D96] +06:47:38 ============================================================================ +06:47:38 + + +waiting on router queue for slot.... +06:47:38 Sending to : +06:47:38 ============================================================================ +06:47:38 Sending to : +06:47:38 ============================================================================ +06:47:38 ============================================================================ +06:47:38 Slot Id : <320> +06:47:38 Transaction Type : REQUEST +06:47:38 Received From : +06:47:38 ============================================================================ +06:47:38 FNo. Len. Field Value +06:47:38 ============================================================================ +06:47:38 [ 1] [ 4] [0200] +06:47:38 [ 2] [ 16] [6688990102697701] +06:47:38 [ 3] [ 6] [010000] +06:47:38 [ 4] [ 12] [000050000000] +06:47:38 [ 7] [ 10] [0320064734] +06:47:38 [ 11] [ 6] [665441] +06:47:38 [ 12] [ 6] [064734] +06:47:38 [ 13] [ 4] [0320] +06:47:38 [ 15] [ 4] [0320] +06:47:38 [ 18] [ 4] [6011] +06:47:38 [ 22] [ 3] [900] +06:47:38 [ 25] [ 2] [02] +06:47:38 [ 28] [ 9] [D00002000] +06:47:38 [ 32] [ 6] [621354] +06:47:38 [ 35] [ 37] [6688990102697701=42101231770198200000] +06:47:38 [ 37] [ 12] [507903499406] +06:47:38 [ 41] [ 8] [06002200] +06:47:38 [ 42] [ 15] [NATIVE ] +06:47:38 [ 43] [ 40] [Beng Market Beng LAO] +06:47:38 [ 49] [ 3] [418] +06:47:38 [ 52] [ 16] [3B50D51B038F4D96] +06:47:38 ============================================================================ +06:47:38 + + +waiting on router queue for slot.... +06:47:38 Sending to : +06:47:38 ============================================================================ +06:47:38 ============================================================================ +06:47:38 Slot Id : <320> +06:47:38 Transaction Type : REQUEST +06:47:38 Received From : +06:47:38 ============================================================================ +06:47:38 FNo. Len. Field Value +06:47:38 ============================================================================ +06:47:38 [ 1] [ 4] [0200] +06:47:38 [ 2] [ 16] [6688990102697701] +06:47:38 [ 3] [ 6] [010000] +06:47:38 [ 4] [ 12] [000050000000] +06:47:38 [ 7] [ 10] [0320064734] +06:47:38 [ 11] [ 6] [665441] +06:47:38 [ 12] [ 6] [064734] +06:47:38 [ 13] [ 4] [0320] +06:47:38 [ 15] [ 4] [0320] +06:47:38 [ 18] [ 4] [6011] +06:47:38 [ 22] [ 3] [900] +06:47:38 [ 25] [ 2] [02] +06:47:38 [ 28] [ 9] [D00002000] +06:47:38 [ 32] [ 6] [621354] +06:47:38 [ 35] [ 37] [6688990102697701=42101231770198200000] +06:47:38 [ 37] [ 12] [507903499406] +06:47:38 [ 41] [ 8] [06002200] +06:47:38 [ 42] [ 15] [NATIVE ] +06:47:38 [ 43] [ 40] [Beng Market Beng LAO] +06:47:38 [ 49] [ 3] [418] +06:47:38 [ 52] [ 16] [357169AADE7FE22D] +06:47:38 ============================================================================ +06:47:38 + + +waiting on router queue for slot.... +06:47:38 Sending to : <4> +06:47:38 ============================================================================ +06:47:39 ============================================================================ +06:47:39 Slot Id : <320> +06:47:39 Transaction Type : RESPONSE +06:47:39 Received From : +06:47:39 ============================================================================ +06:47:39 FNo. Len. Field Value +06:47:39 ============================================================================ +06:47:39 [ 1] [ 4] [0210] +06:47:39 [ 2] [ 16] [6688990102697701] +06:47:39 [ 3] [ 6] [010000] +06:47:39 [ 4] [ 12] [000050000000] +06:47:39 [ 11] [ 6] [665441] +06:47:39 [ 12] [ 6] [064734] +06:47:39 [ 15] [ 4] [0320] +06:47:39 [ 18] [ 4] [6011] +06:47:39 [ 32] [ 6] [621354] +06:47:39 [ 35] [ 37] [6688990102697701=42101231770198200000] +06:47:39 [ 37] [ 12] [507903499406] +06:47:39 [ 38] [ 6] [238247] +06:47:39 [ 39] [ 2] [00] +06:47:39 [ 41] [ 8] [06002200] +06:47:39 [ 49] [ 3] [418] +06:47:39 [ 54] [ 20] [0002418C000004740633] +06:47:39 ============================================================================ +06:47:39 Sending to : +06:47:39 ============================================================================ +06:47:39 + + +waiting on router queue for slot.... +06:47:41 ============================================================================ +06:47:41 Slot Id : <320> +06:47:41 Transaction Type : RESPONSE +06:47:41 Received From : +06:47:41 ============================================================================ +06:47:41 FNo. Len. Field Value +06:47:41 ============================================================================ +06:47:41 [ 1] [ 4] [0210] +06:47:41 [ 2] [ 16] [6688990102697701] +06:47:41 [ 3] [ 6] [010000] +06:47:41 [ 4] [ 12] [000050000000] +06:47:41 [ 11] [ 6] [665441] +06:47:41 [ 12] [ 6] [064734] +06:47:41 [ 15] [ 4] [0320] +06:47:41 [ 18] [ 4] [6011] +06:47:41 [ 32] [ 6] [621354] +06:47:41 [ 35] [ 37] [6688990102697701=42101231770198200000] +06:47:41 [ 37] [ 12] [507903499406] +06:47:41 [ 38] [ 6] [238247] +06:47:41 [ 39] [ 2] [00] +06:47:41 [ 41] [ 8] [06002200] +06:47:41 [ 49] [ 3] [418] +06:47:41 [ 54] [ 20] [0002418C000004740633] +06:47:41 ============================================================================ +06:47:41 Calculate Source COMM Id = 0 +06:47:41 ============================================================================ +06:47:41 + + +waiting on router queue for slot.... +06:47:44 ============================================================================ +06:47:44 Slot Id : <341> +06:47:44 Transaction Type : REQUEST +06:47:44 Received From : +06:47:44 ============================================================================ +06:47:44 FNo. Len. Field Value +06:47:44 ============================================================================ +06:47:44 [ 1] [ 4] [0800] +06:47:44 [ 7] [ 10] [0319114652] +06:47:44 [ 11] [ 6] [154983] +06:47:44 [ 70] [ 3] [301] +06:47:44 ============================================================================ +06:47:44 + + +waiting on router queue for slot.... +06:47:44 Sending to : +06:47:44 ============================================================================ +06:47:44 ============================================================================ +06:47:44 Slot Id : <341> +06:47:44 Transaction Type : RESPONSE +06:47:44 Received From : +06:47:44 ============================================================================ +06:47:44 FNo. Len. Field Value +06:47:44 ============================================================================ +06:47:44 [ 1] [ 4] [0810] +06:47:44 [ 7] [ 10] [0319114652] +06:47:44 [ 11] [ 6] [154983] +06:47:44 [ 39] [ 2] [00] +06:47:44 [ 70] [ 3] [301] +06:47:44 ============================================================================ +06:47:44 Calculate Source COMM Id = 2 +06:47:44 ============================================================================ +06:47:44 + + +waiting on router queue for slot.... +06:47:44 ============================================================================ +06:47:44 Slot Id : <268> +06:47:44 Transaction Type : REQUEST +06:47:44 Received From : +06:47:44 ============================================================================ +06:47:44 FNo. Len. Field Value +06:47:44 ============================================================================ +06:47:44 [ 1] [ 4] [0200] +06:47:44 [ 2] [ 16] [6213545001042468] +06:47:44 [ 3] [ 6] [010000] +06:47:44 [ 4] [ 12] [000010000000] +06:47:44 [ 7] [ 10] [0319234652] +06:47:44 [ 11] [ 6] [266679] +06:47:44 [ 12] [ 6] [064652] +06:47:44 [ 13] [ 4] [0320] +06:47:44 [ 14] [ 4] [4912] +06:47:44 [ 15] [ 4] [0320] +06:47:44 [ 18] [ 4] [6011] +06:47:44 [ 19] [ 3] [418] +06:47:44 [ 22] [ 3] [021] +06:47:44 [ 25] [ 2] [01] +06:47:44 [ 28] [ 9] [D00002000] +06:47:44 [ 32] [ 6] [180893] +06:47:44 [ 35] [ 32] [6213545001042468=491212014246446] +06:47:44 [ 37] [ 12] [507923266679] +06:47:44 [ 41] [ 8] [0112CPBR] +06:47:44 [ 42] [ 15] [999999 ] +06:47:44 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:47:44 [ 49] [ 3] [418] +06:47:44 [ 52] [ 16] [AD41F3C18FB6DD69] +06:47:44 ============================================================================ +06:47:44 + + +waiting on router queue for slot.... +06:47:44 Sending to : +06:47:44 ============================================================================ +06:47:44 Sending to : +06:47:44 ============================================================================ +06:47:44 ============================================================================ +06:47:44 Slot Id : <345> +06:47:44 Transaction Type : REQUEST +06:47:44 Received From : +06:47:44 ============================================================================ +06:47:44 FNo. Len. Field Value +06:47:44 ============================================================================ +06:47:44 [ 1] [ 4] [0800] +06:47:44 [ 2] [ 5] [02531] +06:47:44 [ 3] [ 6] [579068] +06:47:44 [ 7] [ 10] [0319234744] +06:47:44 [ 11] [ 6] [806806] +06:47:44 [ 15] [ 10] [0319234744] +06:47:44 [ 37] [ 11] [57906806806] +06:47:44 [ 70] [ 3] [001] +06:47:44 ============================================================================ +06:47:44 + + +waiting on router queue for slot.... +06:47:44 ============================================================================ +06:47:44 Slot Id : <345> +06:47:44 Transaction Type : RESPONSE +06:47:44 Received From : +06:47:44 ============================================================================ +06:47:44 FNo. Len. Field Value +06:47:44 ============================================================================ +06:47:44 [ 1] [ 4] [0810] +06:47:44 [ 7] [ 10] [0319234744] +06:47:44 [ 11] [ 6] [806806] +06:47:44 [ 15] [ 4] [0319] +06:47:44 [ 37] [ 12] [57906806806] +06:47:44 [ 39] [ 2] [00] +06:47:44 [ 70] [ 3] [001] +06:47:44 ============================================================================ +06:47:44 Sending to : +06:47:44 ============================================================================ +06:47:44 + + +waiting on router queue for slot.... +06:47:44 ============================================================================ +06:47:44 Slot Id : <268> +06:47:44 Transaction Type : REQUEST +06:47:44 Received From : +06:47:44 ============================================================================ +06:47:44 FNo. Len. Field Value +06:47:44 ============================================================================ +06:47:44 [ 1] [ 4] [0200] +06:47:44 [ 2] [ 16] [6213545001042468] +06:47:44 [ 3] [ 6] [010000] +06:47:44 [ 4] [ 12] [000010000000] +06:47:44 [ 7] [ 10] [0319234652] +06:47:44 [ 11] [ 6] [266679] +06:47:44 [ 12] [ 6] [064652] +06:47:44 [ 13] [ 4] [0320] +06:47:44 [ 14] [ 4] [4912] +06:47:44 [ 15] [ 4] [0320] +06:47:44 [ 18] [ 4] [6011] +06:47:44 [ 19] [ 3] [418] +06:47:44 [ 22] [ 3] [021] +06:47:44 [ 25] [ 2] [01] +06:47:44 [ 28] [ 9] [D00002000] +06:47:44 [ 32] [ 6] [180893] +06:47:44 [ 35] [ 32] [6213545001042468=491212014246446] +06:47:44 [ 37] [ 12] [507923266679] +06:47:44 [ 41] [ 8] [0112CPBR] +06:47:44 [ 42] [ 15] [999999 ] +06:47:44 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:47:44 [ 49] [ 3] [418] +06:47:44 [ 52] [ 16] [AD41F3C18FB6DD69] +06:47:44 ============================================================================ +06:47:44 + + +waiting on router queue for slot.... +06:47:44 Sending to : +06:47:44 ============================================================================ +06:47:44 ============================================================================ +06:47:44 Slot Id : <268> +06:47:44 Transaction Type : REQUEST +06:47:44 Received From : +06:47:44 ============================================================================ +06:47:44 FNo. Len. Field Value +06:47:44 ============================================================================ +06:47:44 [ 1] [ 4] [0200] +06:47:44 [ 2] [ 16] [6213545001042468] +06:47:44 [ 3] [ 6] [010000] +06:47:44 [ 4] [ 12] [000010000000] +06:47:44 [ 7] [ 10] [0319234652] +06:47:44 [ 11] [ 6] [266679] +06:47:44 [ 12] [ 6] [064652] +06:47:44 [ 13] [ 4] [0320] +06:47:44 [ 14] [ 4] [4912] +06:47:44 [ 15] [ 4] [0320] +06:47:44 [ 18] [ 4] [6011] +06:47:44 [ 19] [ 3] [418] +06:47:44 [ 22] [ 3] [021] +06:47:44 [ 25] [ 2] [01] +06:47:44 [ 28] [ 9] [D00002000] +06:47:44 [ 32] [ 6] [180893] +06:47:44 [ 35] [ 32] [6213545001042468=491212014246446] +06:47:44 [ 37] [ 12] [507923266679] +06:47:44 [ 41] [ 8] [0112CPBR] +06:47:44 [ 42] [ 15] [999999 ] +06:47:44 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +06:47:44 [ 49] [ 3] [418] +06:47:44 [ 52] [ 16] [3724826B32D2B9E9] +06:47:44 ============================================================================ +06:47:44 + + +waiting on router queue for slot.... +06:47:44 Sending to : <0> +06:47:44 ============================================================================ +06:47:45 ============================================================================ +06:47:45 Slot Id : <268> +06:47:45 Transaction Type : RESPONSE +06:47:45 Received From : +06:47:45 ============================================================================ +06:47:45 FNo. Len. Field Value +06:47:45 ============================================================================ +06:47:45 [ 1] [ 4] [0210] +06:47:45 [ 2] [ 16] [6213545001042468] +06:47:45 [ 3] [ 6] [010000] +06:47:45 [ 4] [ 12] [000010000000] +06:47:45 [ 7] [ 10] [0319234652] +06:47:45 [ 11] [ 6] [266679] +06:47:45 [ 12] [ 6] [064652] +06:47:45 [ 13] [ 4] [0320] +06:47:45 [ 15] [ 4] [0320] +06:47:45 [ 18] [ 4] [6011] +06:47:45 [ 19] [ 3] [418] +06:47:45 [ 32] [ 6] [180893] +06:47:45 [ 35] [ 32] [6213545001042468=491212014246446] +06:47:45 [ 37] [ 12] [507923266679] +06:47:45 [ 38] [ 6] [970124] +06:47:45 [ 39] [ 2] [00] +06:47:45 [ 41] [ 8] [0112CPBR] +06:47:45 [ 49] [ 3] [418] +06:47:45 [ 54] [ 40] [0001418C0001269191140002418C000126919114] +06:47:45 ============================================================================ +06:47:45 Sending to : +06:47:45 ============================================================================ +06:47:45 + + +waiting on router queue for slot.... +06:47:46 ============================================================================ +06:47:46 Slot Id : <268> +06:47:46 Transaction Type : RESPONSE +06:47:46 Received From : +06:47:46 ============================================================================ +06:47:46 FNo. Len. Field Value +06:47:46 ============================================================================ +06:47:46 [ 1] [ 4] [0210] +06:47:46 [ 2] [ 16] [6213545001042468] +06:47:46 [ 3] [ 6] [010000] +06:47:46 [ 4] [ 12] [000010000000] +06:47:46 [ 7] [ 10] [0319234652] +06:47:46 [ 11] [ 6] [266679] +06:47:46 [ 12] [ 6] [064652] +06:47:46 [ 13] [ 4] [0320] +06:47:46 [ 15] [ 4] [0320] +06:47:46 [ 18] [ 4] [6011] +06:47:46 [ 19] [ 3] [418] +06:47:46 [ 32] [ 6] [180893] +06:47:46 [ 35] [ 32] [6213545001042468=491212014246446] +06:47:46 [ 37] [ 12] [507923266679] +06:47:46 [ 38] [ 6] [970124] +06:47:46 [ 39] [ 2] [00] +06:47:46 [ 41] [ 8] [0112CPBR] +06:47:46 [ 49] [ 3] [418] +06:47:46 [ 54] [ 40] [0001418C0001269191140002418C000126919114] +06:47:46 ============================================================================ +06:47:46 Calculate Source COMM Id = 2 +06:47:46 ============================================================================ +06:47:46 + + +waiting on router queue for slot.... +06:48:00 ============================================================================ +06:48:00 Slot Id : <344> +06:48:00 Transaction Type : REQUEST +06:48:00 Received From : +06:48:00 ============================================================================ +06:48:00 FNo. Len. Field Value +06:48:00 ============================================================================ +06:48:00 [ 1] [ 4] [0800] +06:48:00 [ 7] [ 10] [0319114708] +06:48:00 [ 11] [ 6] [154984] +06:48:00 [ 70] [ 3] [301] +06:48:00 ============================================================================ +06:48:00 + + +waiting on router queue for slot.... +06:48:00 Sending to : +06:48:00 ============================================================================ +06:48:00 ============================================================================ +06:48:00 Slot Id : <344> +06:48:00 Transaction Type : RESPONSE +06:48:00 Received From : +06:48:00 ============================================================================ +06:48:00 FNo. Len. Field Value +06:48:00 ============================================================================ +06:48:00 [ 1] [ 4] [0810] +06:48:00 [ 7] [ 10] [0319114708] +06:48:00 [ 11] [ 6] [154984] +06:48:00 [ 39] [ 2] [00] +06:48:00 [ 70] [ 3] [301] +06:48:00 ============================================================================ +06:48:00 Calculate Source COMM Id = 2 +06:48:00 ============================================================================ +06:48:00 + + +waiting on router queue for slot.... +06:48:11 ============================================================================ +06:48:11 Slot Id : <329> +06:48:11 Transaction Type : REQUEST +06:48:11 Received From : +06:48:11 ============================================================================ +06:48:11 FNo. Len. Field Value +06:48:11 ============================================================================ +06:48:11 [ 1] [ 4] [0800] +06:48:11 [ 7] [ 10] [0319114719] +06:48:11 [ 11] [ 6] [154985] +06:48:11 [ 70] [ 3] [301] +06:48:11 ============================================================================ +06:48:11 + + +waiting on router queue for slot.... +06:48:11 Sending to : +06:48:11 ============================================================================ +06:48:11 ============================================================================ +06:48:11 Slot Id : <329> +06:48:11 Transaction Type : RESPONSE +06:48:11 Received From : +06:48:11 ============================================================================ +06:48:11 FNo. Len. Field Value +06:48:11 ============================================================================ +06:48:11 [ 1] [ 4] [0810] +06:48:11 [ 7] [ 10] [0319114719] +06:48:11 [ 11] [ 6] [154985] +06:48:11 [ 39] [ 2] [00] +06:48:11 [ 70] [ 3] [301] +06:48:11 ============================================================================ +06:48:11 Calculate Source COMM Id = 2 +06:48:11 ============================================================================ +06:48:11 + + +waiting on router queue for slot.... +06:48:13 ============================================================================ +06:48:13 Slot Id : <339> +06:48:13 Transaction Type : REQUEST +06:48:13 Received From : +06:48:13 ============================================================================ +06:48:13 FNo. Len. Field Value +06:48:13 ============================================================================ +06:48:13 [ 1] [ 4] [0200] +06:48:13 [ 2] [ 16] [6688990104258908] +06:48:13 [ 3] [ 6] [010000] +06:48:13 [ 4] [ 12] [000100000000] +06:48:13 [ 7] [ 10] [0320064809] +06:48:13 [ 11] [ 6] [665504] +06:48:13 [ 12] [ 6] [064809] +06:48:13 [ 13] [ 4] [0320] +06:48:13 [ 15] [ 4] [0320] +06:48:13 [ 18] [ 4] [6011] +06:48:13 [ 22] [ 3] [900] +06:48:13 [ 25] [ 2] [02] +06:48:13 [ 28] [ 9] [D00002000] +06:48:13 [ 32] [ 6] [621354] +06:48:13 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:48:13 [ 37] [ 12] [507904965344] +06:48:13 [ 41] [ 8] [15001100] +06:48:13 [ 42] [ 15] [NATIVE ] +06:48:13 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:48:13 [ 49] [ 3] [418] +06:48:13 [ 52] [ 16] [366615BCC7C78CAF] +06:48:13 ============================================================================ +06:48:13 + + +waiting on router queue for slot.... +06:48:13 Sending to : +06:48:13 ============================================================================ +06:48:13 Sending to : +06:48:13 ============================================================================ +06:48:13 ============================================================================ +06:48:13 Slot Id : <339> +06:48:13 Transaction Type : REQUEST +06:48:13 Received From : +06:48:13 ============================================================================ +06:48:13 FNo. Len. Field Value +06:48:13 ============================================================================ +06:48:13 [ 1] [ 4] [0200] +06:48:13 [ 2] [ 16] [6688990104258908] +06:48:13 [ 3] [ 6] [010000] +06:48:13 [ 4] [ 12] [000100000000] +06:48:13 [ 7] [ 10] [0320064809] +06:48:13 [ 11] [ 6] [665504] +06:48:13 [ 12] [ 6] [064809] +06:48:13 [ 13] [ 4] [0320] +06:48:13 [ 15] [ 4] [0320] +06:48:13 [ 18] [ 4] [6011] +06:48:13 [ 22] [ 3] [900] +06:48:13 [ 25] [ 2] [02] +06:48:13 [ 28] [ 9] [D00002000] +06:48:13 [ 32] [ 6] [621354] +06:48:13 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:48:13 [ 37] [ 12] [507904965344] +06:48:13 [ 41] [ 8] [15001100] +06:48:13 [ 42] [ 15] [NATIVE ] +06:48:13 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:48:13 [ 49] [ 3] [418] +06:48:13 [ 52] [ 16] [366615BCC7C78CAF] +06:48:13 ============================================================================ +06:48:13 + + +waiting on router queue for slot.... +06:48:13 Sending to : +06:48:13 ============================================================================ +06:48:13 ============================================================================ +06:48:13 Slot Id : <339> +06:48:13 Transaction Type : REQUEST +06:48:13 Received From : +06:48:13 ============================================================================ +06:48:13 FNo. Len. Field Value +06:48:13 ============================================================================ +06:48:13 [ 1] [ 4] [0200] +06:48:13 [ 2] [ 16] [6688990104258908] +06:48:13 [ 3] [ 6] [010000] +06:48:13 [ 4] [ 12] [000100000000] +06:48:13 [ 7] [ 10] [0320064809] +06:48:13 [ 11] [ 6] [665504] +06:48:13 [ 12] [ 6] [064809] +06:48:13 [ 13] [ 4] [0320] +06:48:13 [ 15] [ 4] [0320] +06:48:13 [ 18] [ 4] [6011] +06:48:13 [ 22] [ 3] [900] +06:48:13 [ 25] [ 2] [02] +06:48:13 [ 28] [ 9] [D00002000] +06:48:13 [ 32] [ 6] [621354] +06:48:13 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:48:13 [ 37] [ 12] [507904965344] +06:48:13 [ 41] [ 8] [15001100] +06:48:13 [ 42] [ 15] [NATIVE ] +06:48:13 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:48:13 [ 49] [ 3] [418] +06:48:13 [ 52] [ 16] [7BB9B1BAB124D8D1] +06:48:13 ============================================================================ +06:48:13 + + +waiting on router queue for slot.... +06:48:13 Sending to : <4> +06:48:13 ============================================================================ +06:48:14 ============================================================================ +06:48:14 Slot Id : <339> +06:48:14 Transaction Type : RESPONSE +06:48:14 Received From : +06:48:14 ============================================================================ +06:48:14 FNo. Len. Field Value +06:48:14 ============================================================================ +06:48:14 [ 1] [ 4] [0210] +06:48:14 [ 2] [ 16] [6688990104258908] +06:48:14 [ 3] [ 6] [010000] +06:48:14 [ 4] [ 12] [000100000000] +06:48:14 [ 11] [ 6] [665504] +06:48:14 [ 12] [ 6] [064809] +06:48:14 [ 15] [ 4] [0320] +06:48:14 [ 18] [ 4] [6011] +06:48:14 [ 32] [ 6] [621354] +06:48:14 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:48:14 [ 37] [ 12] [507904965344] +06:48:14 [ 38] [ 6] [166023] +06:48:14 [ 39] [ 2] [00] +06:48:14 [ 41] [ 8] [15001100] +06:48:14 [ 49] [ 3] [418] +06:48:14 [ 54] [ 20] [0002418C000757186540] +06:48:14 ============================================================================ +06:48:14 Sending to : +06:48:14 ============================================================================ +06:48:14 + + +waiting on router queue for slot.... +06:48:16 ============================================================================ +06:48:16 Slot Id : <339> +06:48:16 Transaction Type : RESPONSE +06:48:16 Received From : +06:48:16 ============================================================================ +06:48:16 FNo. Len. Field Value +06:48:16 ============================================================================ +06:48:16 [ 1] [ 4] [0210] +06:48:16 [ 2] [ 16] [6688990104258908] +06:48:16 [ 3] [ 6] [010000] +06:48:16 [ 4] [ 12] [000100000000] +06:48:16 [ 11] [ 6] [665504] +06:48:16 [ 12] [ 6] [064809] +06:48:16 [ 15] [ 4] [0320] +06:48:16 [ 18] [ 4] [6011] +06:48:16 [ 32] [ 6] [621354] +06:48:16 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:48:16 [ 37] [ 12] [507904965344] +06:48:16 [ 38] [ 6] [166023] +06:48:16 [ 39] [ 2] [00] +06:48:16 [ 41] [ 8] [15001100] +06:48:16 [ 49] [ 3] [418] +06:48:16 [ 54] [ 20] [0002418C000757186540] +06:48:16 ============================================================================ +06:48:16 Calculate Source COMM Id = 0 +06:48:16 ============================================================================ +06:48:16 + + +waiting on router queue for slot.... +06:48:22 ============================================================================ +06:48:22 Slot Id : <323> +06:48:22 Transaction Type : REQUEST +06:48:22 Received From : +06:48:22 ============================================================================ +06:48:22 FNo. Len. Field Value +06:48:22 ============================================================================ +06:48:22 [ 1] [ 4] [0800] +06:48:22 [ 7] [ 10] [0319114730] +06:48:22 [ 11] [ 6] [154986] +06:48:22 [ 70] [ 3] [301] +06:48:22 ============================================================================ +06:48:22 + + +waiting on router queue for slot.... +06:48:22 Sending to : +06:48:22 ============================================================================ +06:48:22 ============================================================================ +06:48:22 Slot Id : <323> +06:48:22 Transaction Type : RESPONSE +06:48:22 Received From : +06:48:22 ============================================================================ +06:48:22 FNo. Len. Field Value +06:48:22 ============================================================================ +06:48:22 [ 1] [ 4] [0810] +06:48:22 [ 7] [ 10] [0319114730] +06:48:22 [ 11] [ 6] [154986] +06:48:22 [ 39] [ 2] [00] +06:48:22 [ 70] [ 3] [301] +06:48:22 ============================================================================ +06:48:22 Calculate Source COMM Id = 2 +06:48:22 ============================================================================ +06:48:22 + + +waiting on router queue for slot.... +06:48:27 ============================================================================ +06:48:27 Slot Id : <309> +06:48:27 Transaction Type : REQUEST +06:48:27 Received From : +06:48:27 ============================================================================ +06:48:27 FNo. Len. Field Value +06:48:27 ============================================================================ +06:48:27 [ 1] [ 4] [0800] +06:48:27 [ 7] [ 10] [0320140016] +06:48:27 [ 11] [ 6] [070016] +06:48:27 [ 37] [ 12] [57907070016] +06:48:27 [ 70] [ 3] [301] +06:48:27 ============================================================================ +06:48:27 + + +waiting on router queue for slot.... +06:48:27 Sending to : +06:48:27 ============================================================================ +06:48:27 ============================================================================ +06:48:27 Slot Id : <309> +06:48:27 Transaction Type : RESPONSE +06:48:27 Received From : +06:48:27 ============================================================================ +06:48:27 FNo. Len. Field Value +06:48:27 ============================================================================ +06:48:27 [ 1] [ 4] [0810] +06:48:27 [ 7] [ 10] [0320140016] +06:48:27 [ 11] [ 6] [070016] +06:48:27 [ 37] [ 12] [579070700160] +06:48:27 [ 39] [ 2] [00] +06:48:27 [ 70] [ 3] [810] +06:48:27 ============================================================================ +06:48:27 Calculate Source COMM Id = 6 +06:48:27 ============================================================================ +06:48:27 + + +waiting on router queue for slot.... +06:48:32 ============================================================================ +06:48:32 Slot Id : <348> +06:48:32 Transaction Type : REQUEST +06:48:32 Received From : +06:48:32 ============================================================================ +06:48:32 FNo. Len. Field Value +06:48:32 ============================================================================ +06:48:32 [ 1] [ 4] [0800] +06:48:32 [ 7] [ 10] [0319114741] +06:48:32 [ 11] [ 6] [154987] +06:48:32 [ 70] [ 3] [301] +06:48:32 ============================================================================ +06:48:32 + + +waiting on router queue for slot.... +06:48:32 Sending to : +06:48:32 ============================================================================ +06:48:32 ============================================================================ +06:48:32 Slot Id : <348> +06:48:32 Transaction Type : RESPONSE +06:48:32 Received From : +06:48:32 ============================================================================ +06:48:32 FNo. Len. Field Value +06:48:32 ============================================================================ +06:48:32 [ 1] [ 4] [0810] +06:48:32 [ 7] [ 10] [0319114741] +06:48:32 [ 11] [ 6] [154987] +06:48:32 [ 39] [ 2] [00] +06:48:32 [ 70] [ 3] [301] +06:48:32 ============================================================================ +06:48:32 Calculate Source COMM Id = 2 +06:48:32 ============================================================================ +06:48:32 + + +waiting on router queue for slot.... +06:48:43 ============================================================================ +06:48:43 Slot Id : <352> +06:48:43 Transaction Type : REQUEST +06:48:43 Received From : +06:48:43 ============================================================================ +06:48:43 FNo. Len. Field Value +06:48:43 ============================================================================ +06:48:43 [ 1] [ 4] [0800] +06:48:43 [ 7] [ 10] [0319114752] +06:48:43 [ 11] [ 6] [154988] +06:48:43 [ 70] [ 3] [301] +06:48:43 ============================================================================ +06:48:43 + + +waiting on router queue for slot.... +06:48:43 Sending to : +06:48:43 ============================================================================ +06:48:43 ============================================================================ +06:48:43 Slot Id : <352> +06:48:43 Transaction Type : RESPONSE +06:48:43 Received From : +06:48:43 ============================================================================ +06:48:43 FNo. Len. Field Value +06:48:43 ============================================================================ +06:48:43 [ 1] [ 4] [0810] +06:48:43 [ 7] [ 10] [0319114752] +06:48:43 [ 11] [ 6] [154988] +06:48:43 [ 39] [ 2] [00] +06:48:43 [ 70] [ 3] [301] +06:48:43 ============================================================================ +06:48:43 Calculate Source COMM Id = 2 +06:48:43 ============================================================================ +06:48:43 + + +waiting on router queue for slot.... +06:48:46 ============================================================================ +06:48:46 Slot Id : <328> +06:48:46 Transaction Type : REQUEST +06:48:46 Received From : +06:48:46 ============================================================================ +06:48:46 FNo. Len. Field Value +06:48:46 ============================================================================ +06:48:46 [ 1] [ 4] [0800] +06:48:46 [ 2] [ 5] [02531] +06:48:46 [ 3] [ 6] [579068] +06:48:46 [ 7] [ 10] [0319234846] +06:48:46 [ 11] [ 6] [806807] +06:48:46 [ 15] [ 10] [0319234846] +06:48:46 [ 37] [ 11] [57906806807] +06:48:46 [ 70] [ 3] [001] +06:48:46 ============================================================================ +06:48:46 + + +waiting on router queue for slot.... +06:48:46 ============================================================================ +06:48:46 Slot Id : <328> +06:48:46 Transaction Type : RESPONSE +06:48:46 Received From : +06:48:46 ============================================================================ +06:48:46 FNo. Len. Field Value +06:48:46 ============================================================================ +06:48:46 [ 1] [ 4] [0810] +06:48:46 [ 7] [ 10] [0319234846] +06:48:46 [ 11] [ 6] [806807] +06:48:46 [ 15] [ 4] [0319] +06:48:46 [ 37] [ 12] [57906806807] +06:48:46 [ 39] [ 2] [00] +06:48:46 [ 70] [ 3] [001] +06:48:46 ============================================================================ +06:48:46 Sending to : +06:48:46 ============================================================================ +06:48:46 + + +waiting on router queue for slot.... +06:48:51 ============================================================================ +06:48:51 Slot Id : <350> +06:48:51 Transaction Type : REQUEST +06:48:51 Received From : +06:48:51 ============================================================================ +06:48:51 FNo. Len. Field Value +06:48:51 ============================================================================ +06:48:51 [ 1] [ 4] [0200] +06:48:51 [ 2] [ 16] [6688990108428200] +06:48:51 [ 3] [ 6] [300000] +06:48:51 [ 4] [ 12] [000000000000] +06:48:51 [ 7] [ 10] [0320064847] +06:48:51 [ 11] [ 6] [665577] +06:48:51 [ 12] [ 6] [064847] +06:48:51 [ 13] [ 4] [0320] +06:48:51 [ 15] [ 4] [0320] +06:48:51 [ 18] [ 4] [6011] +06:48:51 [ 22] [ 3] [900] +06:48:51 [ 25] [ 2] [02] +06:48:51 [ 28] [ 9] [D00000000] +06:48:51 [ 32] [ 6] [621354] +06:48:51 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:48:51 [ 37] [ 12] [507903499407] +06:48:51 [ 41] [ 8] [06002200] +06:48:51 [ 42] [ 15] [NATIVE ] +06:48:51 [ 43] [ 40] [Beng Market Beng LAO] +06:48:51 [ 49] [ 3] [418] +06:48:51 [ 52] [ 16] [40E35413FE274875] +06:48:51 ============================================================================ +06:48:51 + + +waiting on router queue for slot.... +06:48:51 Sending to : +06:48:51 ============================================================================ +06:48:51 Sending to : +06:48:51 ============================================================================ +06:48:51 ============================================================================ +06:48:51 Slot Id : <350> +06:48:51 Transaction Type : REQUEST +06:48:51 Received From : +06:48:51 ============================================================================ +06:48:51 FNo. Len. Field Value +06:48:51 ============================================================================ +06:48:51 [ 1] [ 4] [0200] +06:48:51 [ 2] [ 16] [6688990108428200] +06:48:51 [ 3] [ 6] [300000] +06:48:51 [ 4] [ 12] [000000000000] +06:48:51 [ 7] [ 10] [0320064847] +06:48:51 [ 11] [ 6] [665577] +06:48:51 [ 12] [ 6] [064847] +06:48:51 [ 13] [ 4] [0320] +06:48:51 [ 15] [ 4] [0320] +06:48:51 [ 18] [ 4] [6011] +06:48:51 [ 22] [ 3] [900] +06:48:51 [ 25] [ 2] [02] +06:48:51 [ 28] [ 9] [D00000000] +06:48:51 [ 32] [ 6] [621354] +06:48:51 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:48:51 [ 37] [ 12] [507903499407] +06:48:51 [ 41] [ 8] [06002200] +06:48:51 [ 42] [ 15] [NATIVE ] +06:48:51 [ 43] [ 40] [Beng Market Beng LAO] +06:48:51 [ 49] [ 3] [418] +06:48:51 [ 52] [ 16] [40E35413FE274875] +06:48:51 ============================================================================ +06:48:51 + + +waiting on router queue for slot.... +06:48:51 Sending to : +06:48:51 ============================================================================ +06:48:51 ============================================================================ +06:48:51 Slot Id : <350> +06:48:51 Transaction Type : REQUEST +06:48:51 Received From : +06:48:51 ============================================================================ +06:48:51 FNo. Len. Field Value +06:48:51 ============================================================================ +06:48:51 [ 1] [ 4] [0200] +06:48:51 [ 2] [ 16] [6688990108428200] +06:48:51 [ 3] [ 6] [300000] +06:48:51 [ 4] [ 12] [000000000000] +06:48:51 [ 7] [ 10] [0320064847] +06:48:51 [ 11] [ 6] [665577] +06:48:51 [ 12] [ 6] [064847] +06:48:51 [ 13] [ 4] [0320] +06:48:51 [ 15] [ 4] [0320] +06:48:51 [ 18] [ 4] [6011] +06:48:51 [ 22] [ 3] [900] +06:48:51 [ 25] [ 2] [02] +06:48:51 [ 28] [ 9] [D00000000] +06:48:51 [ 32] [ 6] [621354] +06:48:51 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:48:51 [ 37] [ 12] [507903499407] +06:48:51 [ 41] [ 8] [06002200] +06:48:51 [ 42] [ 15] [NATIVE ] +06:48:51 [ 43] [ 40] [Beng Market Beng LAO] +06:48:51 [ 49] [ 3] [418] +06:48:51 [ 52] [ 16] [EC8B00DEFC9EF9B7] +06:48:51 ============================================================================ +06:48:51 + + +waiting on router queue for slot.... +06:48:51 Sending to : <4> +06:48:51 ============================================================================ +06:48:52 ============================================================================ +06:48:52 Slot Id : <350> +06:48:52 Transaction Type : RESPONSE +06:48:52 Received From : +06:48:52 ============================================================================ +06:48:52 FNo. Len. Field Value +06:48:52 ============================================================================ +06:48:52 [ 1] [ 4] [0210] +06:48:52 [ 2] [ 16] [6688990108428200] +06:48:52 [ 3] [ 6] [300000] +06:48:52 [ 4] [ 12] [000000000000] +06:48:52 [ 11] [ 6] [665577] +06:48:52 [ 12] [ 6] [064847] +06:48:52 [ 15] [ 4] [0320] +06:48:52 [ 18] [ 4] [6011] +06:48:52 [ 32] [ 6] [621354] +06:48:52 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:48:52 [ 37] [ 12] [507903499407] +06:48:52 [ 38] [ 6] [386059] +06:48:52 [ 39] [ 2] [00] +06:48:52 [ 41] [ 8] [06002200] +06:48:52 [ 49] [ 3] [418] +06:48:52 [ 54] [ 20] [0002418C000354633661] +06:48:52 ============================================================================ +06:48:52 Sending to : +06:48:52 ============================================================================ +06:48:52 + + +waiting on router queue for slot.... +06:48:53 ============================================================================ +06:48:53 Slot Id : <347> +06:48:53 Transaction Type : REQUEST +06:48:53 Received From : +06:48:53 ============================================================================ +06:48:53 FNo. Len. Field Value +06:48:53 ============================================================================ +06:48:53 [ 1] [ 4] [0800] +06:48:53 [ 7] [ 10] [0319114802] +06:48:53 [ 11] [ 6] [154989] +06:48:53 [ 70] [ 3] [301] +06:48:53 ============================================================================ +06:48:53 + + +waiting on router queue for slot.... +06:48:53 Sending to : +06:48:53 ============================================================================ +06:48:53 ============================================================================ +06:48:53 Slot Id : <347> +06:48:53 Transaction Type : RESPONSE +06:48:53 Received From : +06:48:53 ============================================================================ +06:48:53 FNo. Len. Field Value +06:48:53 ============================================================================ +06:48:53 [ 1] [ 4] [0810] +06:48:53 [ 7] [ 10] [0319114802] +06:48:53 [ 11] [ 6] [154989] +06:48:53 [ 39] [ 2] [00] +06:48:53 [ 70] [ 3] [301] +06:48:53 ============================================================================ +06:48:53 Calculate Source COMM Id = 2 +06:48:53 ============================================================================ +06:48:53 + + +waiting on router queue for slot.... +06:48:54 ============================================================================ +06:48:54 Slot Id : <350> +06:48:54 Transaction Type : RESPONSE +06:48:54 Received From : +06:48:54 ============================================================================ +06:48:54 FNo. Len. Field Value +06:48:54 ============================================================================ +06:48:54 [ 1] [ 4] [0210] +06:48:54 [ 2] [ 16] [6688990108428200] +06:48:54 [ 3] [ 6] [300000] +06:48:54 [ 4] [ 12] [000000000000] +06:48:54 [ 11] [ 6] [665577] +06:48:54 [ 12] [ 6] [064847] +06:48:54 [ 15] [ 4] [0320] +06:48:54 [ 18] [ 4] [6011] +06:48:54 [ 32] [ 6] [621354] +06:48:54 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:48:54 [ 37] [ 12] [507903499407] +06:48:54 [ 38] [ 6] [386059] +06:48:54 [ 39] [ 2] [00] +06:48:54 [ 41] [ 8] [06002200] +06:48:54 [ 49] [ 3] [418] +06:48:54 [ 54] [ 20] [0002418C000354633661] +06:48:54 ============================================================================ +06:48:54 Calculate Source COMM Id = 0 +06:48:54 ============================================================================ +06:48:54 + + +waiting on router queue for slot.... +06:49:04 ============================================================================ +06:49:04 Slot Id : <319> +06:49:04 Transaction Type : REQUEST +06:49:04 Received From : +06:49:04 ============================================================================ +06:49:04 FNo. Len. Field Value +06:49:04 ============================================================================ +06:49:04 [ 1] [ 4] [0800] +06:49:04 [ 7] [ 10] [0319114813] +06:49:04 [ 11] [ 6] [154990] +06:49:04 [ 70] [ 3] [301] +06:49:04 ============================================================================ +06:49:04 + + +waiting on router queue for slot.... +06:49:04 Sending to : +06:49:04 ============================================================================ +06:49:04 ============================================================================ +06:49:04 Slot Id : <319> +06:49:04 Transaction Type : RESPONSE +06:49:04 Received From : +06:49:04 ============================================================================ +06:49:04 FNo. Len. Field Value +06:49:04 ============================================================================ +06:49:04 [ 1] [ 4] [0810] +06:49:04 [ 7] [ 10] [0319114813] +06:49:04 [ 11] [ 6] [154990] +06:49:04 [ 39] [ 2] [00] +06:49:04 [ 70] [ 3] [301] +06:49:04 ============================================================================ +06:49:04 Calculate Source COMM Id = 2 +06:49:04 ============================================================================ +06:49:04 + + +waiting on router queue for slot.... +06:49:21 ============================================================================ +06:49:21 Slot Id : <332> +06:49:21 Transaction Type : REQUEST +06:49:21 Received From : +06:49:21 ============================================================================ +06:49:21 FNo. Len. Field Value +06:49:21 ============================================================================ +06:49:21 [ 1] [ 4] [0800] +06:49:21 [ 7] [ 10] [0319114829] +06:49:21 [ 11] [ 6] [154991] +06:49:21 [ 70] [ 3] [301] +06:49:21 ============================================================================ +06:49:21 + + +waiting on router queue for slot.... +06:49:21 Sending to : +06:49:21 ============================================================================ +06:49:21 ============================================================================ +06:49:21 Slot Id : <332> +06:49:21 Transaction Type : RESPONSE +06:49:21 Received From : +06:49:21 ============================================================================ +06:49:21 FNo. Len. Field Value +06:49:21 ============================================================================ +06:49:21 [ 1] [ 4] [0810] +06:49:21 [ 7] [ 10] [0319114829] +06:49:21 [ 11] [ 6] [154991] +06:49:21 [ 39] [ 2] [00] +06:49:21 [ 70] [ 3] [301] +06:49:21 ============================================================================ +06:49:21 Calculate Source COMM Id = 2 +06:49:21 ============================================================================ +06:49:21 + + +waiting on router queue for slot.... +06:49:32 ============================================================================ +06:49:32 Slot Id : <356> +06:49:32 Transaction Type : REQUEST +06:49:32 Received From : +06:49:32 ============================================================================ +06:49:32 FNo. Len. Field Value +06:49:32 ============================================================================ +06:49:32 [ 1] [ 4] [0800] +06:49:32 [ 7] [ 10] [0320140121] +06:49:32 [ 11] [ 6] [070121] +06:49:32 [ 37] [ 12] [57907070121] +06:49:32 [ 70] [ 3] [301] +06:49:32 ============================================================================ +06:49:32 + + +waiting on router queue for slot.... +06:49:32 Sending to : +06:49:32 ============================================================================ +06:49:32 ============================================================================ +06:49:32 Slot Id : <356> +06:49:32 Transaction Type : RESPONSE +06:49:32 Received From : +06:49:32 ============================================================================ +06:49:32 FNo. Len. Field Value +06:49:32 ============================================================================ +06:49:32 [ 1] [ 4] [0810] +06:49:32 [ 7] [ 10] [0320140121] +06:49:32 [ 11] [ 6] [070121] +06:49:32 [ 37] [ 12] [579070701210] +06:49:32 [ 39] [ 2] [00] +06:49:32 [ 70] [ 3] [810] +06:49:32 ============================================================================ +06:49:32 Calculate Source COMM Id = 6 +06:49:32 ============================================================================ +06:49:32 + + +waiting on router queue for slot.... +06:49:33 ============================================================================ +06:49:33 Slot Id : <346> +06:49:33 Transaction Type : REQUEST +06:49:33 Received From : +06:49:33 ============================================================================ +06:49:33 FNo. Len. Field Value +06:49:33 ============================================================================ +06:49:33 [ 1] [ 4] [0800] +06:49:33 [ 7] [ 10] [0319114841] +06:49:33 [ 11] [ 6] [154992] +06:49:33 [ 70] [ 3] [301] +06:49:33 ============================================================================ +06:49:33 + + +waiting on router queue for slot.... +06:49:33 Sending to : +06:49:33 ============================================================================ +06:49:33 ============================================================================ +06:49:33 Slot Id : <346> +06:49:33 Transaction Type : RESPONSE +06:49:33 Received From : +06:49:33 ============================================================================ +06:49:33 FNo. Len. Field Value +06:49:33 ============================================================================ +06:49:33 [ 1] [ 4] [0810] +06:49:33 [ 7] [ 10] [0319114841] +06:49:33 [ 11] [ 6] [154992] +06:49:33 [ 39] [ 2] [00] +06:49:33 [ 70] [ 3] [301] +06:49:33 ============================================================================ +06:49:33 Calculate Source COMM Id = 2 +06:49:33 ============================================================================ +06:49:33 + + +waiting on router queue for slot.... +06:49:34 ============================================================================ +06:49:34 Slot Id : <357> +06:49:34 Transaction Type : REQUEST +06:49:34 Received From : +06:49:34 ============================================================================ +06:49:34 FNo. Len. Field Value +06:49:34 ============================================================================ +06:49:34 [ 1] [ 4] [0200] +06:49:34 [ 2] [ 16] [6688990108428200] +06:49:34 [ 3] [ 6] [010000] +06:49:34 [ 4] [ 12] [000100000000] +06:49:34 [ 7] [ 10] [0320064930] +06:49:34 [ 11] [ 6] [665662] +06:49:34 [ 12] [ 6] [064930] +06:49:34 [ 13] [ 4] [0320] +06:49:34 [ 15] [ 4] [0320] +06:49:34 [ 18] [ 4] [6011] +06:49:34 [ 22] [ 3] [900] +06:49:34 [ 25] [ 2] [02] +06:49:34 [ 28] [ 9] [D00002000] +06:49:34 [ 32] [ 6] [621354] +06:49:34 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:49:34 [ 37] [ 12] [507903499409] +06:49:34 [ 41] [ 8] [06002200] +06:49:34 [ 42] [ 15] [NATIVE ] +06:49:34 [ 43] [ 40] [Beng Market Beng LAO] +06:49:34 [ 49] [ 3] [418] +06:49:34 [ 52] [ 16] [40E35413FE274875] +06:49:34 ============================================================================ +06:49:34 + + +waiting on router queue for slot.... +06:49:34 Sending to : +06:49:34 ============================================================================ +06:49:34 Sending to : +06:49:34 ============================================================================ +06:49:34 ============================================================================ +06:49:34 Slot Id : <357> +06:49:34 Transaction Type : REQUEST +06:49:34 Received From : +06:49:34 ============================================================================ +06:49:34 FNo. Len. Field Value +06:49:34 ============================================================================ +06:49:34 [ 1] [ 4] [0200] +06:49:34 [ 2] [ 16] [6688990108428200] +06:49:34 [ 3] [ 6] [010000] +06:49:34 [ 4] [ 12] [000100000000] +06:49:34 [ 7] [ 10] [0320064930] +06:49:34 [ 11] [ 6] [665662] +06:49:34 [ 12] [ 6] [064930] +06:49:34 [ 13] [ 4] [0320] +06:49:34 [ 15] [ 4] [0320] +06:49:34 [ 18] [ 4] [6011] +06:49:34 [ 22] [ 3] [900] +06:49:34 [ 25] [ 2] [02] +06:49:34 [ 28] [ 9] [D00002000] +06:49:34 [ 32] [ 6] [621354] +06:49:34 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:49:34 [ 37] [ 12] [507903499409] +06:49:34 [ 41] [ 8] [06002200] +06:49:34 [ 42] [ 15] [NATIVE ] +06:49:34 [ 43] [ 40] [Beng Market Beng LAO] +06:49:34 [ 49] [ 3] [418] +06:49:34 [ 52] [ 16] [40E35413FE274875] +06:49:34 ============================================================================ +06:49:34 + + +waiting on router queue for slot.... +06:49:34 Sending to : +06:49:34 ============================================================================ +06:49:34 ============================================================================ +06:49:34 Slot Id : <357> +06:49:34 Transaction Type : REQUEST +06:49:34 Received From : +06:49:34 ============================================================================ +06:49:34 FNo. Len. Field Value +06:49:34 ============================================================================ +06:49:34 [ 1] [ 4] [0200] +06:49:34 [ 2] [ 16] [6688990108428200] +06:49:34 [ 3] [ 6] [010000] +06:49:34 [ 4] [ 12] [000100000000] +06:49:34 [ 7] [ 10] [0320064930] +06:49:34 [ 11] [ 6] [665662] +06:49:34 [ 12] [ 6] [064930] +06:49:34 [ 13] [ 4] [0320] +06:49:34 [ 15] [ 4] [0320] +06:49:34 [ 18] [ 4] [6011] +06:49:34 [ 22] [ 3] [900] +06:49:34 [ 25] [ 2] [02] +06:49:34 [ 28] [ 9] [D00002000] +06:49:34 [ 32] [ 6] [621354] +06:49:34 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:49:34 [ 37] [ 12] [507903499409] +06:49:34 [ 41] [ 8] [06002200] +06:49:34 [ 42] [ 15] [NATIVE ] +06:49:34 [ 43] [ 40] [Beng Market Beng LAO] +06:49:34 [ 49] [ 3] [418] +06:49:34 [ 52] [ 16] [EC8B00DEFC9EF9B7] +06:49:34 ============================================================================ +06:49:34 + + +waiting on router queue for slot.... +06:49:34 Sending to : <4> +06:49:34 ============================================================================ +06:49:35 ============================================================================ +06:49:35 Slot Id : <357> +06:49:35 Transaction Type : RESPONSE +06:49:35 Received From : +06:49:35 ============================================================================ +06:49:35 FNo. Len. Field Value +06:49:35 ============================================================================ +06:49:35 [ 1] [ 4] [0210] +06:49:35 [ 2] [ 16] [6688990108428200] +06:49:35 [ 3] [ 6] [010000] +06:49:35 [ 4] [ 12] [000100000000] +06:49:35 [ 11] [ 6] [665662] +06:49:35 [ 12] [ 6] [064930] +06:49:35 [ 15] [ 4] [0320] +06:49:35 [ 18] [ 4] [6011] +06:49:35 [ 32] [ 6] [621354] +06:49:35 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:49:35 [ 37] [ 12] [507903499409] +06:49:35 [ 38] [ 6] [221151] +06:49:35 [ 39] [ 2] [00] +06:49:35 [ 41] [ 8] [06002200] +06:49:35 [ 49] [ 3] [418] +06:49:35 [ 54] [ 20] [0002418C000254433661] +06:49:35 ============================================================================ +06:49:35 Sending to : +06:49:35 ============================================================================ +06:49:35 + + +waiting on router queue for slot.... +06:49:36 ============================================================================ +06:49:36 Slot Id : <330> +06:49:36 Transaction Type : REQUEST +06:49:36 Received From : +06:49:36 ============================================================================ +06:49:36 FNo. Len. Field Value +06:49:36 ============================================================================ +06:49:36 [ 1] [ 4] [0200] +06:49:36 [ 2] [ 16] [6213544000830502] +06:49:36 [ 3] [ 6] [010000] +06:49:36 [ 4] [ 12] [000070000000] +06:49:36 [ 7] [ 10] [0320064728] +06:49:36 [ 11] [ 6] [929399] +06:49:36 [ 12] [ 6] [064728] +06:49:36 [ 13] [ 4] [0320] +06:49:36 [ 15] [ 4] [0320] +06:49:36 [ 18] [ 4] [6011] +06:49:36 [ 19] [ 3] [418] +06:49:36 [ 22] [ 3] [021] +06:49:36 [ 25] [ 2] [01] +06:49:36 [ 28] [ 9] [D00002000] +06:49:36 [ 32] [ 6] [668899] +06:49:36 [ 35] [ 32] [6213544000830502=491212013050871] +06:49:36 [ 37] [ 12] [507902683018] +06:49:36 [ 41] [ 8] [03020036] +06:49:36 [ 42] [ 15] [APT ] +06:49:36 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +06:49:36 [ 49] [ 3] [418] +06:49:36 [ 52] [ 16] [AA69E240CAADB69C] +06:49:36 ============================================================================ +06:49:36 + + +waiting on router queue for slot.... +06:49:36 Sending to : +06:49:36 ============================================================================ +06:49:36 Sending to : +06:49:36 ============================================================================ +06:49:36 ============================================================================ +06:49:36 Slot Id : <366> +06:49:36 Transaction Type : REQUEST +06:49:36 Received From : +06:49:36 ============================================================================ +06:49:36 FNo. Len. Field Value +06:49:36 ============================================================================ +06:49:36 [ 1] [ 4] [0200] +06:49:36 [ 2] [ 16] [6688990104258908] +06:49:36 [ 3] [ 6] [010000] +06:49:36 [ 4] [ 12] [000100000000] +06:49:36 [ 7] [ 10] [0320064932] +06:49:36 [ 11] [ 6] [665670] +06:49:36 [ 12] [ 6] [064932] +06:49:36 [ 13] [ 4] [0320] +06:49:36 [ 15] [ 4] [0320] +06:49:36 [ 18] [ 4] [6011] +06:49:36 [ 22] [ 3] [900] +06:49:36 [ 25] [ 2] [02] +06:49:36 [ 28] [ 9] [D00002000] +06:49:36 [ 32] [ 6] [621354] +06:49:36 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:49:36 [ 37] [ 12] [507904965346] +06:49:36 [ 41] [ 8] [15001100] +06:49:36 [ 42] [ 15] [NATIVE ] +06:49:36 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:49:36 [ 49] [ 3] [418] +06:49:36 [ 52] [ 16] [366615BCC7C78CAF] +06:49:36 ============================================================================ +06:49:36 + + +waiting on router queue for slot.... +06:49:36 Sending to : +06:49:36 ============================================================================ +06:49:36 Sending to : +06:49:36 ============================================================================ +06:49:36 ============================================================================ +06:49:36 Slot Id : <330> +06:49:36 Transaction Type : REQUEST +06:49:36 Received From : +06:49:36 ============================================================================ +06:49:36 FNo. Len. Field Value +06:49:36 ============================================================================ +06:49:36 [ 1] [ 4] [0200] +06:49:36 [ 2] [ 16] [6213544000830502] +06:49:36 [ 3] [ 6] [010000] +06:49:36 [ 4] [ 12] [000070000000] +06:49:36 [ 7] [ 10] [0320064728] +06:49:36 [ 11] [ 6] [929399] +06:49:36 [ 12] [ 6] [064728] +06:49:36 [ 13] [ 4] [0320] +06:49:36 [ 15] [ 4] [0320] +06:49:36 [ 18] [ 4] [6011] +06:49:36 [ 19] [ 3] [418] +06:49:36 [ 22] [ 3] [021] +06:49:36 [ 25] [ 2] [01] +06:49:36 [ 28] [ 9] [D00002000] +06:49:36 [ 32] [ 6] [668899] +06:49:36 [ 35] [ 32] [6213544000830502=491212013050871] +06:49:36 [ 37] [ 12] [507902683018] +06:49:36 [ 41] [ 8] [03020036] +06:49:36 [ 42] [ 15] [APT ] +06:49:36 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +06:49:36 [ 49] [ 3] [418] +06:49:36 [ 52] [ 16] [AA69E240CAADB69C] +06:49:36 ============================================================================ +06:49:36 + + +waiting on router queue for slot.... +06:49:36 Sending to : +06:49:36 ============================================================================ +06:49:36 ============================================================================ +06:49:36 Slot Id : <330> +06:49:36 Transaction Type : REQUEST +06:49:36 Received From : +06:49:36 ============================================================================ +06:49:36 FNo. Len. Field Value +06:49:36 ============================================================================ +06:49:36 [ 1] [ 4] [0200] +06:49:36 [ 2] [ 16] [6213544000830502] +06:49:36 [ 3] [ 6] [010000] +06:49:36 [ 4] [ 12] [000070000000] +06:49:36 [ 7] [ 10] [0320064728] +06:49:36 [ 11] [ 6] [929399] +06:49:36 [ 12] [ 6] [064728] +06:49:36 [ 13] [ 4] [0320] +06:49:36 [ 15] [ 4] [0320] +06:49:36 [ 18] [ 4] [6011] +06:49:36 [ 19] [ 3] [418] +06:49:36 [ 22] [ 3] [021] +06:49:36 [ 25] [ 2] [01] +06:49:36 [ 28] [ 9] [D00002000] +06:49:36 [ 32] [ 6] [668899] +06:49:36 [ 35] [ 32] [6213544000830502=491212013050871] +06:49:36 [ 37] [ 12] [507902683018] +06:49:36 [ 41] [ 8] [03020036] +06:49:36 [ 42] [ 15] [APT ] +06:49:36 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +06:49:36 [ 49] [ 3] [418] +06:49:36 [ 52] [ 16] [FEBBB74CE664F1AA] +06:49:36 ============================================================================ +06:49:36 + + +waiting on router queue for slot.... +06:49:36 Sending to : <0> +06:49:36 ============================================================================ +06:49:36 ============================================================================ +06:49:36 Slot Id : <366> +06:49:36 Transaction Type : REQUEST +06:49:36 Received From : +06:49:36 ============================================================================ +06:49:36 FNo. Len. Field Value +06:49:36 ============================================================================ +06:49:36 [ 1] [ 4] [0200] +06:49:36 [ 2] [ 16] [6688990104258908] +06:49:36 [ 3] [ 6] [010000] +06:49:36 [ 4] [ 12] [000100000000] +06:49:36 [ 7] [ 10] [0320064932] +06:49:36 [ 11] [ 6] [665670] +06:49:36 [ 12] [ 6] [064932] +06:49:36 [ 13] [ 4] [0320] +06:49:36 [ 15] [ 4] [0320] +06:49:36 [ 18] [ 4] [6011] +06:49:36 [ 22] [ 3] [900] +06:49:36 [ 25] [ 2] [02] +06:49:36 [ 28] [ 9] [D00002000] +06:49:36 [ 32] [ 6] [621354] +06:49:36 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:49:36 [ 37] [ 12] [507904965346] +06:49:36 [ 41] [ 8] [15001100] +06:49:36 [ 42] [ 15] [NATIVE ] +06:49:36 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:49:36 [ 49] [ 3] [418] +06:49:36 [ 52] [ 16] [366615BCC7C78CAF] +06:49:36 ============================================================================ +06:49:36 + + +waiting on router queue for slot.... +06:49:36 Sending to : +06:49:36 ============================================================================ +06:49:36 ============================================================================ +06:49:36 Slot Id : <366> +06:49:36 Transaction Type : REQUEST +06:49:36 Received From : +06:49:36 ============================================================================ +06:49:36 FNo. Len. Field Value +06:49:36 ============================================================================ +06:49:36 [ 1] [ 4] [0200] +06:49:36 [ 2] [ 16] [6688990104258908] +06:49:36 [ 3] [ 6] [010000] +06:49:36 [ 4] [ 12] [000100000000] +06:49:36 [ 7] [ 10] [0320064932] +06:49:36 [ 11] [ 6] [665670] +06:49:36 [ 12] [ 6] [064932] +06:49:36 [ 13] [ 4] [0320] +06:49:36 [ 15] [ 4] [0320] +06:49:36 [ 18] [ 4] [6011] +06:49:36 [ 22] [ 3] [900] +06:49:36 [ 25] [ 2] [02] +06:49:36 [ 28] [ 9] [D00002000] +06:49:36 [ 32] [ 6] [621354] +06:49:36 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:49:36 [ 37] [ 12] [507904965346] +06:49:36 [ 41] [ 8] [15001100] +06:49:36 [ 42] [ 15] [NATIVE ] +06:49:36 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:49:36 [ 49] [ 3] [418] +06:49:36 [ 52] [ 16] [7BB9B1BAB124D8D1] +06:49:36 ============================================================================ +06:49:36 + + +waiting on router queue for slot.... +06:49:36 Sending to : <4> +06:49:36 ============================================================================ +06:49:37 ============================================================================ +06:49:37 Slot Id : <357> +06:49:37 Transaction Type : RESPONSE +06:49:37 Received From : +06:49:37 ============================================================================ +06:49:37 FNo. Len. Field Value +06:49:37 ============================================================================ +06:49:37 [ 1] [ 4] [0210] +06:49:37 [ 2] [ 16] [6688990108428200] +06:49:37 [ 3] [ 6] [010000] +06:49:37 [ 4] [ 12] [000100000000] +06:49:37 [ 11] [ 6] [665662] +06:49:37 [ 12] [ 6] [064930] +06:49:37 [ 15] [ 4] [0320] +06:49:37 [ 18] [ 4] [6011] +06:49:37 [ 32] [ 6] [621354] +06:49:37 [ 35] [ 37] [6688990108428200=44061231820064900000] +06:49:37 [ 37] [ 12] [507903499409] +06:49:37 [ 38] [ 6] [221151] +06:49:37 [ 39] [ 2] [00] +06:49:37 [ 41] [ 8] [06002200] +06:49:37 [ 49] [ 3] [418] +06:49:37 [ 54] [ 20] [0002418C000254433661] +06:49:37 ============================================================================ +06:49:37 Calculate Source COMM Id = 0 +06:49:37 ============================================================================ +06:49:37 + + +waiting on router queue for slot.... +06:49:37 ============================================================================ +06:49:37 Slot Id : <330> +06:49:37 Transaction Type : RESPONSE +06:49:37 Received From : +06:49:37 ============================================================================ +06:49:37 FNo. Len. Field Value +06:49:37 ============================================================================ +06:49:37 [ 1] [ 4] [0210] +06:49:37 [ 2] [ 16] [6213544000830502] +06:49:37 [ 3] [ 6] [010000] +06:49:37 [ 4] [ 12] [000070000000] +06:49:37 [ 7] [ 10] [0320064728] +06:49:37 [ 11] [ 6] [929399] +06:49:37 [ 12] [ 6] [064728] +06:49:37 [ 13] [ 4] [0320] +06:49:37 [ 15] [ 4] [0320] +06:49:37 [ 18] [ 4] [6011] +06:49:37 [ 19] [ 3] [418] +06:49:37 [ 32] [ 6] [668899] +06:49:37 [ 35] [ 32] [6213544000830502=491212013050871] +06:49:37 [ 37] [ 12] [507902683018] +06:49:37 [ 38] [ 6] [062429] +06:49:37 [ 39] [ 2] [00] +06:49:37 [ 41] [ 8] [03020036] +06:49:37 [ 49] [ 3] [418] +06:49:37 [ 54] [ 40] [0001418C0001768417270002418C000176841727] +06:49:37 ============================================================================ +06:49:37 Sending to : +06:49:37 ============================================================================ +06:49:37 + + +waiting on router queue for slot.... +06:49:37 ============================================================================ +06:49:37 Slot Id : <366> +06:49:37 Transaction Type : RESPONSE +06:49:37 Received From : +06:49:37 ============================================================================ +06:49:37 FNo. Len. Field Value +06:49:37 ============================================================================ +06:49:37 [ 1] [ 4] [0210] +06:49:37 [ 2] [ 16] [6688990104258908] +06:49:37 [ 3] [ 6] [010000] +06:49:37 [ 4] [ 12] [000100000000] +06:49:37 [ 11] [ 6] [665670] +06:49:37 [ 12] [ 6] [064932] +06:49:37 [ 15] [ 4] [0320] +06:49:37 [ 18] [ 4] [6011] +06:49:37 [ 32] [ 6] [621354] +06:49:37 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:49:37 [ 37] [ 12] [507904965346] +06:49:37 [ 38] [ 6] [446986] +06:49:37 [ 39] [ 2] [00] +06:49:37 [ 41] [ 8] [15001100] +06:49:37 [ 49] [ 3] [418] +06:49:37 [ 54] [ 20] [0002418C000656986540] +06:49:37 ============================================================================ +06:49:37 Sending to : +06:49:37 ============================================================================ +06:49:37 + + +waiting on router queue for slot.... +06:49:38 ============================================================================ +06:49:38 Slot Id : <330> +06:49:38 Transaction Type : RESPONSE +06:49:38 Received From : +06:49:38 ============================================================================ +06:49:38 FNo. Len. Field Value +06:49:38 ============================================================================ +06:49:38 [ 1] [ 4] [0210] +06:49:38 [ 2] [ 16] [6213544000830502] +06:49:38 [ 3] [ 6] [010000] +06:49:38 [ 4] [ 12] [000070000000] +06:49:38 [ 7] [ 10] [0320064728] +06:49:38 [ 11] [ 6] [929399] +06:49:38 [ 12] [ 6] [064728] +06:49:38 [ 13] [ 4] [0320] +06:49:38 [ 15] [ 4] [0320] +06:49:38 [ 18] [ 4] [6011] +06:49:38 [ 19] [ 3] [418] +06:49:38 [ 32] [ 6] [668899] +06:49:38 [ 35] [ 32] [6213544000830502=491212013050871] +06:49:38 [ 37] [ 12] [507902683018] +06:49:38 [ 38] [ 6] [062429] +06:49:38 [ 39] [ 2] [00] +06:49:38 [ 41] [ 8] [03020036] +06:49:38 [ 49] [ 3] [418] +06:49:38 [ 54] [ 40] [0001418C0001768417270002418C000176841727] +06:49:38 ============================================================================ +06:49:38 Calculate Source COMM Id = 4 +06:49:38 ============================================================================ +06:49:38 + + +waiting on router queue for slot.... +06:49:40 ============================================================================ +06:49:40 Slot Id : <366> +06:49:40 Transaction Type : RESPONSE +06:49:40 Received From : +06:49:40 ============================================================================ +06:49:40 FNo. Len. Field Value +06:49:40 ============================================================================ +06:49:40 [ 1] [ 4] [0210] +06:49:40 [ 2] [ 16] [6688990104258908] +06:49:40 [ 3] [ 6] [010000] +06:49:40 [ 4] [ 12] [000100000000] +06:49:40 [ 11] [ 6] [665670] +06:49:40 [ 12] [ 6] [064932] +06:49:40 [ 15] [ 4] [0320] +06:49:40 [ 18] [ 4] [6011] +06:49:40 [ 32] [ 6] [621354] +06:49:40 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:49:40 [ 37] [ 12] [507904965346] +06:49:40 [ 38] [ 6] [446986] +06:49:40 [ 39] [ 2] [00] +06:49:40 [ 41] [ 8] [15001100] +06:49:40 [ 49] [ 3] [418] +06:49:40 [ 54] [ 20] [0002418C000656986540] +06:49:40 ============================================================================ +06:49:40 Calculate Source COMM Id = 0 +06:49:40 ============================================================================ +06:49:40 + + +waiting on router queue for slot.... +06:49:43 ============================================================================ +06:49:43 Slot Id : <343> +06:49:43 Transaction Type : REQUEST +06:49:43 Received From : +06:49:43 ============================================================================ +06:49:43 FNo. Len. Field Value +06:49:43 ============================================================================ +06:49:43 [ 1] [ 4] [0800] +06:49:43 [ 7] [ 10] [0319114851] +06:49:43 [ 11] [ 6] [154993] +06:49:43 [ 70] [ 3] [301] +06:49:43 ============================================================================ +06:49:43 + + +waiting on router queue for slot.... +06:49:43 Sending to : +06:49:43 ============================================================================ +06:49:43 ============================================================================ +06:49:43 Slot Id : <343> +06:49:43 Transaction Type : RESPONSE +06:49:43 Received From : +06:49:43 ============================================================================ +06:49:43 FNo. Len. Field Value +06:49:43 ============================================================================ +06:49:43 [ 1] [ 4] [0810] +06:49:43 [ 7] [ 10] [0319114851] +06:49:43 [ 11] [ 6] [154993] +06:49:43 [ 39] [ 2] [00] +06:49:43 [ 70] [ 3] [301] +06:49:43 ============================================================================ +06:49:43 Calculate Source COMM Id = 2 +06:49:43 ============================================================================ +06:49:43 + + +waiting on router queue for slot.... +06:49:48 ============================================================================ +06:49:48 Slot Id : <313> +06:49:48 Transaction Type : REQUEST +06:49:48 Received From : +06:49:48 ============================================================================ +06:49:48 FNo. Len. Field Value +06:49:48 ============================================================================ +06:49:48 [ 1] [ 4] [0800] +06:49:48 [ 2] [ 5] [02531] +06:49:48 [ 3] [ 6] [579068] +06:49:48 [ 7] [ 10] [0319234948] +06:49:48 [ 11] [ 6] [806808] +06:49:48 [ 15] [ 10] [0319234948] +06:49:48 [ 37] [ 11] [57906806808] +06:49:48 [ 70] [ 3] [001] +06:49:48 ============================================================================ +06:49:48 + + +waiting on router queue for slot.... +06:49:48 ============================================================================ +06:49:48 Slot Id : <313> +06:49:48 Transaction Type : RESPONSE +06:49:48 Received From : +06:49:48 ============================================================================ +06:49:48 FNo. Len. Field Value +06:49:48 ============================================================================ +06:49:48 [ 1] [ 4] [0810] +06:49:48 [ 7] [ 10] [0319234948] +06:49:48 [ 11] [ 6] [806808] +06:49:48 [ 15] [ 4] [0319] +06:49:48 [ 37] [ 12] [57906806808] +06:49:48 [ 39] [ 2] [00] +06:49:48 [ 70] [ 3] [001] +06:49:48 ============================================================================ +06:49:48 Sending to : +06:49:48 ============================================================================ +06:49:48 + + +waiting on router queue for slot.... +06:49:53 ============================================================================ +06:49:53 Slot Id : <365> +06:49:53 Transaction Type : REQUEST +06:49:53 Received From : +06:49:53 ============================================================================ +06:49:53 FNo. Len. Field Value +06:49:53 ============================================================================ +06:49:53 [ 1] [ 4] [0800] +06:49:53 [ 7] [ 10] [0319114902] +06:49:53 [ 11] [ 6] [154994] +06:49:53 [ 70] [ 3] [301] +06:49:53 ============================================================================ +06:49:53 + + +waiting on router queue for slot.... +06:49:53 Sending to : +06:49:53 ============================================================================ +06:49:53 ============================================================================ +06:49:53 Slot Id : <365> +06:49:53 Transaction Type : RESPONSE +06:49:53 Received From : +06:49:53 ============================================================================ +06:49:53 FNo. Len. Field Value +06:49:53 ============================================================================ +06:49:53 [ 1] [ 4] [0810] +06:49:53 [ 7] [ 10] [0319114902] +06:49:53 [ 11] [ 6] [154994] +06:49:53 [ 39] [ 2] [00] +06:49:53 [ 70] [ 3] [301] +06:49:53 ============================================================================ +06:49:53 Calculate Source COMM Id = 2 +06:49:53 ============================================================================ +06:49:53 + + +waiting on router queue for slot.... +06:49:55 ============================================================================ +06:49:55 Slot Id : <340> +06:49:55 Transaction Type : REQUEST +06:49:55 Received From : +06:49:55 ============================================================================ +06:49:55 FNo. Len. Field Value +06:49:55 ============================================================================ +06:49:55 [ 1] [ 4] [0800] +06:49:55 [ 7] [ 10] [0319235742] +06:49:55 [ 11] [ 6] [013755] +06:49:55 [ 37] [ 12] [57906013755] +06:49:55 [ 70] [ 3] [301] +06:49:55 ============================================================================ +06:49:55 + + +waiting on router queue for slot.... +06:49:55 Sending to : +06:49:55 ============================================================================ +06:49:55 ============================================================================ +06:49:55 Slot Id : <340> +06:49:55 Transaction Type : RESPONSE +06:49:55 Received From : +06:49:55 ============================================================================ +06:49:55 FNo. Len. Field Value +06:49:55 ============================================================================ +06:49:55 [ 1] [ 4] [0810] +06:49:55 [ 7] [ 10] [0319235742] +06:49:55 [ 11] [ 6] [013755] +06:49:55 [ 37] [ 12] [579060137550] +06:49:55 [ 39] [ 2] [00] +06:49:55 [ 70] [ 3] [810] +06:49:55 ============================================================================ +06:49:55 Calculate Source COMM Id = 1 +06:49:55 ============================================================================ +06:49:55 + + +waiting on router queue for slot.... +06:50:07 ============================================================================ +06:50:07 Slot Id : <371> +06:50:07 Transaction Type : REQUEST +06:50:07 Received From : +06:50:07 ============================================================================ +06:50:07 FNo. Len. Field Value +06:50:07 ============================================================================ +06:50:07 [ 1] [ 4] [0800] +06:50:07 [ 7] [ 10] [0319114914] +06:50:07 [ 11] [ 6] [154995] +06:50:07 [ 70] [ 3] [301] +06:50:07 ============================================================================ +06:50:07 + + +waiting on router queue for slot.... +06:50:07 Sending to : +06:50:07 ============================================================================ +06:50:07 ============================================================================ +06:50:07 Slot Id : <371> +06:50:07 Transaction Type : RESPONSE +06:50:07 Received From : +06:50:07 ============================================================================ +06:50:07 FNo. Len. Field Value +06:50:07 ============================================================================ +06:50:07 [ 1] [ 4] [0810] +06:50:07 [ 7] [ 10] [0319114914] +06:50:07 [ 11] [ 6] [154995] +06:50:07 [ 39] [ 2] [00] +06:50:07 [ 70] [ 3] [301] +06:50:07 ============================================================================ +06:50:07 Calculate Source COMM Id = 2 +06:50:07 ============================================================================ +06:50:07 + + +waiting on router queue for slot.... +06:50:18 ============================================================================ +06:50:18 Slot Id : <324> +06:50:18 Transaction Type : REQUEST +06:50:18 Received From : +06:50:18 ============================================================================ +06:50:18 FNo. Len. Field Value +06:50:18 ============================================================================ +06:50:18 [ 1] [ 4] [0200] +06:50:18 [ 2] [ 16] [6213544002058151] +06:50:18 [ 3] [ 6] [011000] +06:50:18 [ 4] [ 12] [000010000000] +06:50:18 [ 7] [ 10] [0320065040] +06:50:18 [ 11] [ 6] [200784] +06:50:18 [ 12] [ 6] [065223] +06:50:18 [ 13] [ 4] [0320] +06:50:18 [ 14] [ 4] [4912] +06:50:18 [ 15] [ 4] [0320] +06:50:18 [ 18] [ 4] [6011] +06:50:18 [ 19] [ 3] [418] +06:50:18 [ 22] [ 3] [021] +06:50:18 [ 25] [ 2] [01] +06:50:18 [ 28] [ 9] [D00002000] +06:50:18 [ 32] [ 6] [198901] +06:50:18 [ 35] [ 32] [6213544002058151=491212015815568] +06:50:18 [ 37] [ 12] [507906200784] +06:50:18 [ 41] [ 8] [00002222] +06:50:18 [ 42] [ 15] [000000041002222] +06:50:18 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +06:50:18 [ 49] [ 3] [418] +06:50:18 [ 52] [ 16] [EAADA0AA3008490F] +06:50:18 ============================================================================ +06:50:18 + + +waiting on router queue for slot.... +06:50:18 Sending to : +06:50:18 ============================================================================ +06:50:18 Sending to : +06:50:18 ============================================================================ +06:50:18 ============================================================================ +06:50:18 Slot Id : <324> +06:50:18 Transaction Type : REQUEST +06:50:18 Received From : +06:50:18 ============================================================================ +06:50:18 FNo. Len. Field Value +06:50:18 ============================================================================ +06:50:18 [ 1] [ 4] [0200] +06:50:18 [ 2] [ 16] [6213544002058151] +06:50:18 [ 3] [ 6] [011000] +06:50:18 [ 4] [ 12] [000010000000] +06:50:18 [ 7] [ 10] [0320065040] +06:50:18 [ 11] [ 6] [200784] +06:50:18 [ 12] [ 6] [065223] +06:50:18 [ 13] [ 4] [0320] +06:50:18 [ 14] [ 4] [4912] +06:50:18 [ 15] [ 4] [0320] +06:50:18 [ 18] [ 4] [6011] +06:50:18 [ 19] [ 3] [418] +06:50:18 [ 22] [ 3] [021] +06:50:18 [ 25] [ 2] [01] +06:50:18 [ 28] [ 9] [D00002000] +06:50:18 [ 32] [ 6] [198901] +06:50:18 [ 35] [ 32] [6213544002058151=491212015815568] +06:50:18 [ 37] [ 12] [507906200784] +06:50:18 [ 41] [ 8] [00002222] +06:50:18 [ 42] [ 15] [000000041002222] +06:50:18 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +06:50:18 [ 49] [ 3] [418] +06:50:18 [ 52] [ 16] [EAADA0AA3008490F] +06:50:18 ============================================================================ +06:50:18 + + +waiting on router queue for slot.... +06:50:18 Sending to : +06:50:18 ============================================================================ +06:50:18 ============================================================================ +06:50:18 Slot Id : <324> +06:50:18 Transaction Type : REQUEST +06:50:18 Received From : +06:50:18 ============================================================================ +06:50:18 FNo. Len. Field Value +06:50:18 ============================================================================ +06:50:18 [ 1] [ 4] [0200] +06:50:18 [ 2] [ 16] [6213544002058151] +06:50:18 [ 3] [ 6] [011000] +06:50:18 [ 4] [ 12] [000010000000] +06:50:18 [ 7] [ 10] [0320065040] +06:50:18 [ 11] [ 6] [200784] +06:50:18 [ 12] [ 6] [065223] +06:50:18 [ 13] [ 4] [0320] +06:50:18 [ 14] [ 4] [4912] +06:50:18 [ 15] [ 4] [0320] +06:50:18 [ 18] [ 4] [6011] +06:50:18 [ 19] [ 3] [418] +06:50:18 [ 22] [ 3] [021] +06:50:18 [ 25] [ 2] [01] +06:50:18 [ 28] [ 9] [D00002000] +06:50:18 [ 32] [ 6] [198901] +06:50:18 [ 35] [ 32] [6213544002058151=491212015815568] +06:50:18 [ 37] [ 12] [507906200784] +06:50:18 [ 41] [ 8] [00002222] +06:50:18 [ 42] [ 15] [000000041002222] +06:50:18 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +06:50:18 [ 49] [ 3] [418] +06:50:18 [ 52] [ 16] [4CFDDBF8358ECF06] +06:50:18 ============================================================================ +06:50:18 + + +waiting on router queue for slot.... +06:50:18 Sending to : <0> +06:50:18 ============================================================================ +06:50:19 ============================================================================ +06:50:19 Slot Id : <324> +06:50:19 Transaction Type : RESPONSE +06:50:19 Received From : +06:50:19 ============================================================================ +06:50:19 FNo. Len. Field Value +06:50:19 ============================================================================ +06:50:19 [ 1] [ 4] [0210] +06:50:19 [ 2] [ 16] [6213544002058151] +06:50:19 [ 3] [ 6] [011000] +06:50:19 [ 4] [ 12] [000010000000] +06:50:19 [ 7] [ 10] [0320065040] +06:50:19 [ 11] [ 6] [200784] +06:50:19 [ 12] [ 6] [065223] +06:50:19 [ 13] [ 4] [0320] +06:50:19 [ 15] [ 4] [0320] +06:50:19 [ 18] [ 4] [6011] +06:50:19 [ 19] [ 3] [418] +06:50:19 [ 32] [ 6] [198901] +06:50:19 [ 35] [ 32] [6213544002058151=491212015815568] +06:50:19 [ 37] [ 12] [507906200784] +06:50:19 [ 38] [ 6] [374952] +06:50:19 [ 39] [ 2] [00] +06:50:19 [ 41] [ 8] [00002222] +06:50:19 [ 49] [ 3] [418] +06:50:19 [ 54] [ 40] [1001418C0000284846581002418C000028484658] +06:50:19 ============================================================================ +06:50:19 Sending to : +06:50:19 ============================================================================ +06:50:19 + + +waiting on router queue for slot.... +06:50:20 ============================================================================ +06:50:20 Slot Id : <324> +06:50:20 Transaction Type : RESPONSE +06:50:20 Received From : +06:50:20 ============================================================================ +06:50:20 FNo. Len. Field Value +06:50:20 ============================================================================ +06:50:20 [ 1] [ 4] [0210] +06:50:20 [ 2] [ 16] [6213544002058151] +06:50:20 [ 3] [ 6] [011000] +06:50:20 [ 4] [ 12] [000010000000] +06:50:20 [ 7] [ 10] [0320065040] +06:50:20 [ 11] [ 6] [200784] +06:50:20 [ 12] [ 6] [065223] +06:50:20 [ 13] [ 4] [0320] +06:50:20 [ 15] [ 4] [0320] +06:50:20 [ 18] [ 4] [6011] +06:50:20 [ 19] [ 3] [418] +06:50:20 [ 32] [ 6] [198901] +06:50:20 [ 35] [ 32] [6213544002058151=491212015815568] +06:50:20 [ 37] [ 12] [507906200784] +06:50:20 [ 38] [ 6] [374952] +06:50:20 [ 39] [ 2] [00] +06:50:20 [ 41] [ 8] [00002222] +06:50:20 [ 49] [ 3] [418] +06:50:20 [ 54] [ 40] [1001418C0000284846581002418C000028484658] +06:50:20 ============================================================================ +06:50:20 Calculate Source COMM Id = 5 +06:50:20 ============================================================================ +06:50:20 + + +waiting on router queue for slot.... +06:50:21 ============================================================================ +06:50:21 Slot Id : <378> +06:50:21 Transaction Type : REQUEST +06:50:21 Received From : +06:50:21 ============================================================================ +06:50:21 FNo. Len. Field Value +06:50:21 ============================================================================ +06:50:21 [ 1] [ 4] [0800] +06:50:21 [ 7] [ 10] [0319114930] +06:50:21 [ 11] [ 6] [154996] +06:50:21 [ 70] [ 3] [301] +06:50:21 ============================================================================ +06:50:21 + + +waiting on router queue for slot.... +06:50:21 Sending to : +06:50:21 ============================================================================ +06:50:21 ============================================================================ +06:50:21 Slot Id : <378> +06:50:21 Transaction Type : RESPONSE +06:50:21 Received From : +06:50:21 ============================================================================ +06:50:21 FNo. Len. Field Value +06:50:21 ============================================================================ +06:50:21 [ 1] [ 4] [0810] +06:50:21 [ 7] [ 10] [0319114930] +06:50:21 [ 11] [ 6] [154996] +06:50:21 [ 39] [ 2] [00] +06:50:21 [ 70] [ 3] [301] +06:50:21 ============================================================================ +06:50:21 Calculate Source COMM Id = 2 +06:50:21 ============================================================================ +06:50:21 + + +waiting on router queue for slot.... +06:50:32 ============================================================================ +06:50:32 Slot Id : <373> +06:50:32 Transaction Type : REQUEST +06:50:32 Received From : +06:50:32 ============================================================================ +06:50:32 FNo. Len. Field Value +06:50:32 ============================================================================ +06:50:32 [ 1] [ 4] [0800] +06:50:32 [ 7] [ 10] [0319114940] +06:50:32 [ 11] [ 6] [154997] +06:50:32 [ 70] [ 3] [301] +06:50:32 ============================================================================ +06:50:32 + + +waiting on router queue for slot.... +06:50:32 Sending to : +06:50:32 ============================================================================ +06:50:32 ============================================================================ +06:50:32 Slot Id : <373> +06:50:32 Transaction Type : RESPONSE +06:50:32 Received From : +06:50:32 ============================================================================ +06:50:32 FNo. Len. Field Value +06:50:32 ============================================================================ +06:50:32 [ 1] [ 4] [0810] +06:50:32 [ 7] [ 10] [0319114940] +06:50:32 [ 11] [ 6] [154997] +06:50:32 [ 39] [ 2] [00] +06:50:32 [ 70] [ 3] [301] +06:50:32 ============================================================================ +06:50:32 Calculate Source COMM Id = 2 +06:50:32 ============================================================================ +06:50:32 + + +waiting on router queue for slot.... +06:50:37 ============================================================================ +06:50:37 Slot Id : <353> +06:50:37 Transaction Type : REQUEST +06:50:37 Received From : +06:50:37 ============================================================================ +06:50:37 FNo. Len. Field Value +06:50:37 ============================================================================ +06:50:37 [ 1] [ 4] [0800] +06:50:37 [ 7] [ 10] [0320140226] +06:50:37 [ 11] [ 6] [070226] +06:50:37 [ 37] [ 12] [57907070226] +06:50:37 [ 70] [ 3] [301] +06:50:37 ============================================================================ +06:50:37 + + +waiting on router queue for slot.... +06:50:37 Sending to : +06:50:37 ============================================================================ +06:50:37 ============================================================================ +06:50:37 Slot Id : <353> +06:50:37 Transaction Type : RESPONSE +06:50:37 Received From : +06:50:37 ============================================================================ +06:50:37 FNo. Len. Field Value +06:50:37 ============================================================================ +06:50:37 [ 1] [ 4] [0810] +06:50:37 [ 7] [ 10] [0320140226] +06:50:37 [ 11] [ 6] [070226] +06:50:37 [ 37] [ 12] [579070702260] +06:50:37 [ 39] [ 2] [00] +06:50:37 [ 70] [ 3] [810] +06:50:37 ============================================================================ +06:50:37 Calculate Source COMM Id = 6 +06:50:37 ============================================================================ +06:50:37 + + +waiting on router queue for slot.... +06:50:43 ============================================================================ +06:50:43 Slot Id : <355> +06:50:43 Transaction Type : REQUEST +06:50:43 Received From : +06:50:43 ============================================================================ +06:50:43 FNo. Len. Field Value +06:50:43 ============================================================================ +06:50:43 [ 1] [ 4] [0800] +06:50:43 [ 7] [ 10] [0319114951] +06:50:43 [ 11] [ 6] [154998] +06:50:43 [ 70] [ 3] [301] +06:50:43 ============================================================================ +06:50:43 + + +waiting on router queue for slot.... +06:50:43 Sending to : +06:50:43 ============================================================================ +06:50:43 ============================================================================ +06:50:43 Slot Id : <355> +06:50:43 Transaction Type : RESPONSE +06:50:43 Received From : +06:50:43 ============================================================================ +06:50:43 FNo. Len. Field Value +06:50:43 ============================================================================ +06:50:43 [ 1] [ 4] [0810] +06:50:43 [ 7] [ 10] [0319114951] +06:50:43 [ 11] [ 6] [154998] +06:50:43 [ 39] [ 2] [00] +06:50:43 [ 70] [ 3] [301] +06:50:43 ============================================================================ +06:50:43 Calculate Source COMM Id = 2 +06:50:43 ============================================================================ +06:50:43 + + +waiting on router queue for slot.... +06:50:43 ============================================================================ +06:50:43 Slot Id : <382> +06:50:43 Transaction Type : REQUEST +06:50:43 Received From : +06:50:43 ============================================================================ +06:50:43 FNo. Len. Field Value +06:50:43 ============================================================================ +06:50:43 [ 1] [ 4] [0200] +06:50:43 [ 2] [ 16] [6213544002058151] +06:50:43 [ 3] [ 6] [301000] +06:50:43 [ 4] [ 12] [000000000000] +06:50:43 [ 7] [ 10] [0320065105] +06:50:43 [ 11] [ 6] [200794] +06:50:43 [ 12] [ 6] [065248] +06:50:43 [ 13] [ 4] [0320] +06:50:43 [ 14] [ 4] [4912] +06:50:43 [ 15] [ 4] [0320] +06:50:43 [ 18] [ 4] [6011] +06:50:43 [ 19] [ 3] [418] +06:50:43 [ 22] [ 3] [021] +06:50:43 [ 25] [ 2] [01] +06:50:43 [ 28] [ 9] [D00000000] +06:50:43 [ 32] [ 6] [198901] +06:50:43 [ 35] [ 32] [6213544002058151=491212015815568] +06:50:43 [ 37] [ 12] [507906200794] +06:50:43 [ 41] [ 8] [00002222] +06:50:43 [ 42] [ 15] [000000041002222] +06:50:43 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +06:50:43 [ 49] [ 3] [418] +06:50:43 [ 52] [ 16] [EAADA0AA3008490F] +06:50:43 ============================================================================ +06:50:43 + + +waiting on router queue for slot.... +06:50:43 Sending to : +06:50:43 ============================================================================ +06:50:43 Sending to : +06:50:43 ============================================================================ +06:50:44 ============================================================================ +06:50:44 Slot Id : <382> +06:50:44 Transaction Type : REQUEST +06:50:44 Received From : +06:50:44 ============================================================================ +06:50:44 FNo. Len. Field Value +06:50:44 ============================================================================ +06:50:44 [ 1] [ 4] [0200] +06:50:44 [ 2] [ 16] [6213544002058151] +06:50:44 [ 3] [ 6] [301000] +06:50:44 [ 4] [ 12] [000000000000] +06:50:44 [ 7] [ 10] [0320065105] +06:50:44 [ 11] [ 6] [200794] +06:50:44 [ 12] [ 6] [065248] +06:50:44 [ 13] [ 4] [0320] +06:50:44 [ 14] [ 4] [4912] +06:50:44 [ 15] [ 4] [0320] +06:50:44 [ 18] [ 4] [6011] +06:50:44 [ 19] [ 3] [418] +06:50:44 [ 22] [ 3] [021] +06:50:44 [ 25] [ 2] [01] +06:50:44 [ 28] [ 9] [D00000000] +06:50:44 [ 32] [ 6] [198901] +06:50:44 [ 35] [ 32] [6213544002058151=491212015815568] +06:50:44 [ 37] [ 12] [507906200794] +06:50:44 [ 41] [ 8] [00002222] +06:50:44 [ 42] [ 15] [000000041002222] +06:50:44 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +06:50:44 [ 49] [ 3] [418] +06:50:44 [ 52] [ 16] [EAADA0AA3008490F] +06:50:44 ============================================================================ +06:50:44 + + +waiting on router queue for slot.... +06:50:44 Sending to : +06:50:44 ============================================================================ +06:50:44 ============================================================================ +06:50:44 Slot Id : <382> +06:50:44 Transaction Type : REQUEST +06:50:44 Received From : +06:50:44 ============================================================================ +06:50:44 FNo. Len. Field Value +06:50:44 ============================================================================ +06:50:44 [ 1] [ 4] [0200] +06:50:44 [ 2] [ 16] [6213544002058151] +06:50:44 [ 3] [ 6] [301000] +06:50:44 [ 4] [ 12] [000000000000] +06:50:44 [ 7] [ 10] [0320065105] +06:50:44 [ 11] [ 6] [200794] +06:50:44 [ 12] [ 6] [065248] +06:50:44 [ 13] [ 4] [0320] +06:50:44 [ 14] [ 4] [4912] +06:50:44 [ 15] [ 4] [0320] +06:50:44 [ 18] [ 4] [6011] +06:50:44 [ 19] [ 3] [418] +06:50:44 [ 22] [ 3] [021] +06:50:44 [ 25] [ 2] [01] +06:50:44 [ 28] [ 9] [D00000000] +06:50:44 [ 32] [ 6] [198901] +06:50:44 [ 35] [ 32] [6213544002058151=491212015815568] +06:50:44 [ 37] [ 12] [507906200794] +06:50:44 [ 41] [ 8] [00002222] +06:50:44 [ 42] [ 15] [000000041002222] +06:50:44 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +06:50:44 [ 49] [ 3] [418] +06:50:44 [ 52] [ 16] [4CFDDBF8358ECF06] +06:50:44 ============================================================================ +06:50:44 + + +waiting on router queue for slot.... +06:50:44 Sending to : <0> +06:50:44 ============================================================================ +06:50:44 ============================================================================ +06:50:44 Slot Id : <382> +06:50:44 Transaction Type : RESPONSE +06:50:44 Received From : +06:50:44 ============================================================================ +06:50:44 FNo. Len. Field Value +06:50:44 ============================================================================ +06:50:44 [ 1] [ 4] [0210] +06:50:44 [ 2] [ 16] [6213544002058151] +06:50:44 [ 3] [ 6] [301000] +06:50:44 [ 4] [ 12] [000000000000] +06:50:44 [ 7] [ 10] [0320065105] +06:50:44 [ 11] [ 6] [200794] +06:50:44 [ 12] [ 6] [065248] +06:50:44 [ 13] [ 4] [0320] +06:50:44 [ 15] [ 4] [0320] +06:50:44 [ 18] [ 4] [6011] +06:50:44 [ 19] [ 3] [418] +06:50:44 [ 32] [ 6] [198901] +06:50:44 [ 35] [ 32] [6213544002058151=491212015815568] +06:50:44 [ 37] [ 12] [507906200794] +06:50:44 [ 38] [ 6] [695092] +06:50:44 [ 39] [ 2] [00] +06:50:44 [ 41] [ 8] [00002222] +06:50:44 [ 49] [ 3] [418] +06:50:44 [ 54] [ 40] [1001418C0000284846581002418C000028484658] +06:50:44 ============================================================================ +06:50:44 Sending to : +06:50:44 ============================================================================ +06:50:44 + + +waiting on router queue for slot.... +06:50:46 ============================================================================ +06:50:46 Slot Id : <382> +06:50:46 Transaction Type : RESPONSE +06:50:46 Received From : +06:50:46 ============================================================================ +06:50:46 FNo. Len. Field Value +06:50:46 ============================================================================ +06:50:46 [ 1] [ 4] [0210] +06:50:46 [ 2] [ 16] [6213544002058151] +06:50:46 [ 3] [ 6] [301000] +06:50:46 [ 4] [ 12] [000000000000] +06:50:46 [ 7] [ 10] [0320065105] +06:50:46 [ 11] [ 6] [200794] +06:50:46 [ 12] [ 6] [065248] +06:50:46 [ 13] [ 4] [0320] +06:50:46 [ 15] [ 4] [0320] +06:50:46 [ 18] [ 4] [6011] +06:50:46 [ 19] [ 3] [418] +06:50:46 [ 32] [ 6] [198901] +06:50:46 [ 35] [ 32] [6213544002058151=491212015815568] +06:50:46 [ 37] [ 12] [507906200794] +06:50:46 [ 38] [ 6] [695092] +06:50:46 [ 39] [ 2] [00] +06:50:46 [ 41] [ 8] [00002222] +06:50:46 [ 49] [ 3] [418] +06:50:46 [ 54] [ 40] [1001418C0000284846581002418C000028484658] +06:50:46 ============================================================================ +06:50:46 Calculate Source COMM Id = 5 +06:50:46 ============================================================================ +06:50:46 + + +waiting on router queue for slot.... +06:50:48 ============================================================================ +06:50:48 Slot Id : <363> +06:50:48 Transaction Type : REQUEST +06:50:48 Received From : +06:50:48 ============================================================================ +06:50:48 FNo. Len. Field Value +06:50:48 ============================================================================ +06:50:48 [ 1] [ 4] [0200] +06:50:48 [ 2] [ 16] [2206990000092155] +06:50:48 [ 3] [ 6] [011000] +06:50:48 [ 4] [ 12] [000010000000] +06:50:48 [ 7] [ 10] [0320065045] +06:50:48 [ 11] [ 6] [665815] +06:50:48 [ 12] [ 6] [065045] +06:50:48 [ 13] [ 4] [0320] +06:50:48 [ 15] [ 4] [0320] +06:50:48 [ 18] [ 4] [6011] +06:50:48 [ 22] [ 3] [900] +06:50:48 [ 25] [ 2] [02] +06:50:48 [ 28] [ 9] [D00002000] +06:50:48 [ 32] [ 6] [621354] +06:50:48 [ 35] [ 32] [2206990000092155=971012614426313] +06:50:48 [ 37] [ 12] [507904119568] +06:50:48 [ 41] [ 8] [08000800] +06:50:48 [ 42] [ 15] [NATIVE ] +06:50:48 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:50:48 [ 49] [ 3] [418] +06:50:48 [ 52] [ 16] [500CE6DE0A4309DC] +06:50:48 ============================================================================ +06:50:48 + + +waiting on router queue for slot.... +06:50:48 Sending to : +06:50:48 ============================================================================ +06:50:48 Sending to : +06:50:48 ============================================================================ +06:50:48 ============================================================================ +06:50:48 Slot Id : <363> +06:50:48 Transaction Type : REQUEST +06:50:48 Received From : +06:50:48 ============================================================================ +06:50:48 FNo. Len. Field Value +06:50:48 ============================================================================ +06:50:48 [ 1] [ 4] [0200] +06:50:48 [ 2] [ 16] [2206990000092155] +06:50:48 [ 3] [ 6] [011000] +06:50:48 [ 4] [ 12] [000010000000] +06:50:48 [ 7] [ 10] [0320065045] +06:50:48 [ 11] [ 6] [665815] +06:50:48 [ 12] [ 6] [065045] +06:50:48 [ 13] [ 4] [0320] +06:50:48 [ 15] [ 4] [0320] +06:50:48 [ 18] [ 4] [6011] +06:50:48 [ 22] [ 3] [900] +06:50:48 [ 25] [ 2] [02] +06:50:48 [ 28] [ 9] [D00002000] +06:50:48 [ 32] [ 6] [621354] +06:50:48 [ 35] [ 32] [2206990000092155=971012614426313] +06:50:48 [ 37] [ 12] [507904119568] +06:50:48 [ 41] [ 8] [08000800] +06:50:48 [ 42] [ 15] [NATIVE ] +06:50:48 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:50:48 [ 49] [ 3] [418] +06:50:48 [ 52] [ 16] [500CE6DE0A4309DC] +06:50:48 ============================================================================ +06:50:48 + + +waiting on router queue for slot.... +06:50:48 Sending to : +06:50:48 ============================================================================ +06:50:48 ============================================================================ +06:50:48 Slot Id : <363> +06:50:48 Transaction Type : REQUEST +06:50:48 Received From : +06:50:48 ============================================================================ +06:50:48 FNo. Len. Field Value +06:50:48 ============================================================================ +06:50:48 [ 1] [ 4] [0200] +06:50:48 [ 2] [ 16] [2206990000092155] +06:50:48 [ 3] [ 6] [011000] +06:50:48 [ 4] [ 12] [000010000000] +06:50:48 [ 7] [ 10] [0320065045] +06:50:48 [ 11] [ 6] [665815] +06:50:48 [ 12] [ 6] [065045] +06:50:48 [ 13] [ 4] [0320] +06:50:48 [ 15] [ 4] [0320] +06:50:48 [ 18] [ 4] [6011] +06:50:48 [ 22] [ 3] [900] +06:50:48 [ 25] [ 2] [02] +06:50:48 [ 28] [ 9] [D00002000] +06:50:48 [ 32] [ 6] [621354] +06:50:48 [ 35] [ 32] [2206990000092155=971012614426313] +06:50:48 [ 37] [ 12] [507904119568] +06:50:48 [ 41] [ 8] [08000800] +06:50:48 [ 42] [ 15] [NATIVE ] +06:50:48 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:50:48 [ 49] [ 3] [418] +06:50:48 [ 52] [ 16] [1CE3E6EDEB4E5CE4] +06:50:48 ============================================================================ +06:50:48 + + +waiting on router queue for slot.... +06:50:48 Sending to : <1> +06:50:48 ============================================================================ +06:50:49 ============================================================================ +06:50:49 Slot Id : <363> +06:50:49 Transaction Type : RESPONSE +06:50:49 Received From : +06:50:49 ============================================================================ +06:50:49 FNo. Len. Field Value +06:50:49 ============================================================================ +06:50:49 [ 1] [ 4] [0210] +06:50:49 [ 2] [ 16] [2206990000092155] +06:50:49 [ 3] [ 6] [011000] +06:50:49 [ 4] [ 12] [000010000000] +06:50:49 [ 7] [ 10] [0320065045] +06:50:49 [ 11] [ 6] [665815] +06:50:49 [ 12] [ 6] [065045] +06:50:49 [ 13] [ 4] [0320] +06:50:49 [ 15] [ 4] [0320] +06:50:49 [ 18] [ 4] [6011] +06:50:49 [ 22] [ 3] [900] +06:50:49 [ 32] [ 6] [621354] +06:50:49 [ 35] [ 32] [2206990000092155=971012614426313] +06:50:49 [ 37] [ 12] [507904119568] +06:50:49 [ 38] [ 6] [065837] +06:50:49 [ 39] [ 2] [55] +06:50:49 [ 41] [ 8] [08000800] +06:50:49 [ 49] [ 3] [418] +06:50:49 ============================================================================ +06:50:49 Sending to : +06:50:49 ============================================================================ +06:50:49 + + +waiting on router queue for slot.... +06:50:50 ============================================================================ +06:50:50 Slot Id : <358> +06:50:50 Transaction Type : REQUEST +06:50:50 Received From : +06:50:50 ============================================================================ +06:50:50 FNo. Len. Field Value +06:50:50 ============================================================================ +06:50:50 [ 1] [ 4] [0800] +06:50:50 [ 2] [ 5] [02531] +06:50:50 [ 3] [ 6] [579068] +06:50:50 [ 7] [ 10] [0319235050] +06:50:50 [ 11] [ 6] [806809] +06:50:50 [ 15] [ 10] [0319235050] +06:50:50 [ 37] [ 11] [57906806809] +06:50:50 [ 70] [ 3] [001] +06:50:50 ============================================================================ +06:50:50 + + +waiting on router queue for slot.... +06:50:50 ============================================================================ +06:50:50 Slot Id : <358> +06:50:50 Transaction Type : RESPONSE +06:50:50 Received From : +06:50:50 ============================================================================ +06:50:50 FNo. Len. Field Value +06:50:50 ============================================================================ +06:50:50 [ 1] [ 4] [0810] +06:50:50 [ 7] [ 10] [0319235050] +06:50:50 [ 11] [ 6] [806809] +06:50:50 [ 15] [ 4] [0319] +06:50:50 [ 37] [ 12] [57906806809] +06:50:50 [ 39] [ 2] [00] +06:50:50 [ 70] [ 3] [001] +06:50:50 ============================================================================ +06:50:50 Sending to : +06:50:50 ============================================================================ +06:50:50 + + +waiting on router queue for slot.... +06:50:50 ============================================================================ +06:50:50 Slot Id : <363> +06:50:50 Transaction Type : RESPONSE +06:50:50 Received From : +06:50:50 ============================================================================ +06:50:50 FNo. Len. Field Value +06:50:50 ============================================================================ +06:50:50 [ 1] [ 4] [0210] +06:50:50 [ 2] [ 16] [2206990000092155] +06:50:50 [ 3] [ 6] [011000] +06:50:50 [ 4] [ 12] [000010000000] +06:50:50 [ 7] [ 10] [0320065045] +06:50:50 [ 11] [ 6] [665815] +06:50:50 [ 12] [ 6] [065045] +06:50:50 [ 13] [ 4] [0320] +06:50:50 [ 15] [ 4] [0320] +06:50:50 [ 18] [ 4] [6011] +06:50:50 [ 22] [ 3] [900] +06:50:50 [ 32] [ 6] [621354] +06:50:50 [ 35] [ 32] [2206990000092155=971012614426313] +06:50:50 [ 37] [ 12] [507904119568] +06:50:50 [ 38] [ 6] [065837] +06:50:50 [ 39] [ 2] [55] +06:50:50 [ 41] [ 8] [08000800] +06:50:50 [ 49] [ 3] [418] +06:50:50 ============================================================================ +06:50:50 Calculate Source COMM Id = 0 +06:50:50 ============================================================================ +06:50:50 + + +waiting on router queue for slot.... +06:50:52 ============================================================================ +06:50:52 Slot Id : <338> +06:50:52 Transaction Type : REQUEST +06:50:52 Received From : +06:50:52 ============================================================================ +06:50:52 FNo. Len. Field Value +06:50:52 ============================================================================ +06:50:52 [ 1] [ 4] [0200] +06:50:52 [ 2] [ 16] [6688990104258908] +06:50:52 [ 3] [ 6] [010000] +06:50:52 [ 4] [ 12] [000100000000] +06:50:52 [ 7] [ 10] [0320065049] +06:50:52 [ 11] [ 6] [665827] +06:50:52 [ 12] [ 6] [065049] +06:50:52 [ 13] [ 4] [0320] +06:50:52 [ 15] [ 4] [0320] +06:50:52 [ 18] [ 4] [6011] +06:50:52 [ 22] [ 3] [900] +06:50:52 [ 25] [ 2] [02] +06:50:52 [ 28] [ 9] [D00002000] +06:50:52 [ 32] [ 6] [621354] +06:50:52 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:50:52 [ 37] [ 12] [507904965348] +06:50:52 [ 41] [ 8] [15001100] +06:50:52 [ 42] [ 15] [NATIVE ] +06:50:52 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:50:52 [ 49] [ 3] [418] +06:50:52 [ 52] [ 16] [366615BCC7C78CAF] +06:50:52 ============================================================================ +06:50:52 + + +waiting on router queue for slot.... +06:50:52 Sending to : +06:50:52 ============================================================================ +06:50:52 Sending to : +06:50:52 ============================================================================ +06:50:52 ============================================================================ +06:50:52 Slot Id : <338> +06:50:52 Transaction Type : REQUEST +06:50:52 Received From : +06:50:52 ============================================================================ +06:50:52 FNo. Len. Field Value +06:50:52 ============================================================================ +06:50:52 [ 1] [ 4] [0200] +06:50:52 [ 2] [ 16] [6688990104258908] +06:50:52 [ 3] [ 6] [010000] +06:50:52 [ 4] [ 12] [000100000000] +06:50:52 [ 7] [ 10] [0320065049] +06:50:52 [ 11] [ 6] [665827] +06:50:52 [ 12] [ 6] [065049] +06:50:52 [ 13] [ 4] [0320] +06:50:52 [ 15] [ 4] [0320] +06:50:52 [ 18] [ 4] [6011] +06:50:52 [ 22] [ 3] [900] +06:50:52 [ 25] [ 2] [02] +06:50:52 [ 28] [ 9] [D00002000] +06:50:52 [ 32] [ 6] [621354] +06:50:52 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:50:52 [ 37] [ 12] [507904965348] +06:50:52 [ 41] [ 8] [15001100] +06:50:52 [ 42] [ 15] [NATIVE ] +06:50:52 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:50:52 [ 49] [ 3] [418] +06:50:52 [ 52] [ 16] [366615BCC7C78CAF] +06:50:52 ============================================================================ +06:50:52 + + +waiting on router queue for slot.... +06:50:52 Sending to : +06:50:52 ============================================================================ +06:50:52 ============================================================================ +06:50:52 Slot Id : <338> +06:50:52 Transaction Type : REQUEST +06:50:52 Received From : +06:50:52 ============================================================================ +06:50:52 FNo. Len. Field Value +06:50:52 ============================================================================ +06:50:52 [ 1] [ 4] [0200] +06:50:52 [ 2] [ 16] [6688990104258908] +06:50:52 [ 3] [ 6] [010000] +06:50:52 [ 4] [ 12] [000100000000] +06:50:52 [ 7] [ 10] [0320065049] +06:50:52 [ 11] [ 6] [665827] +06:50:52 [ 12] [ 6] [065049] +06:50:52 [ 13] [ 4] [0320] +06:50:52 [ 15] [ 4] [0320] +06:50:52 [ 18] [ 4] [6011] +06:50:52 [ 22] [ 3] [900] +06:50:52 [ 25] [ 2] [02] +06:50:52 [ 28] [ 9] [D00002000] +06:50:52 [ 32] [ 6] [621354] +06:50:52 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:50:52 [ 37] [ 12] [507904965348] +06:50:52 [ 41] [ 8] [15001100] +06:50:52 [ 42] [ 15] [NATIVE ] +06:50:52 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:50:52 [ 49] [ 3] [418] +06:50:52 [ 52] [ 16] [7BB9B1BAB124D8D1] +06:50:52 ============================================================================ +06:50:52 + + +waiting on router queue for slot.... +06:50:52 Sending to : <4> +06:50:52 ============================================================================ +06:50:53 ============================================================================ +06:50:53 Slot Id : <338> +06:50:53 Transaction Type : RESPONSE +06:50:53 Received From : +06:50:53 ============================================================================ +06:50:53 FNo. Len. Field Value +06:50:53 ============================================================================ +06:50:53 [ 1] [ 4] [0210] +06:50:53 [ 2] [ 16] [6688990104258908] +06:50:53 [ 3] [ 6] [010000] +06:50:53 [ 4] [ 12] [000100000000] +06:50:53 [ 11] [ 6] [665827] +06:50:53 [ 12] [ 6] [065049] +06:50:53 [ 15] [ 4] [0320] +06:50:53 [ 18] [ 4] [6011] +06:50:53 [ 32] [ 6] [621354] +06:50:53 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:50:53 [ 37] [ 12] [507904965348] +06:50:53 [ 38] [ 6] [465725] +06:50:53 [ 39] [ 2] [00] +06:50:53 [ 41] [ 8] [15001100] +06:50:53 [ 49] [ 3] [418] +06:50:53 [ 54] [ 20] [0002418C000556786540] +06:50:53 ============================================================================ +06:50:53 Sending to : +06:50:53 ============================================================================ +06:50:53 + + +waiting on router queue for slot.... +06:50:53 ============================================================================ +06:50:53 Slot Id : <370> +06:50:53 Transaction Type : REQUEST +06:50:53 Received From : +06:50:53 ============================================================================ +06:50:53 FNo. Len. Field Value +06:50:53 ============================================================================ +06:50:53 [ 1] [ 4] [0800] +06:50:53 [ 7] [ 10] [0319115002] +06:50:53 [ 11] [ 6] [154999] +06:50:53 [ 70] [ 3] [301] +06:50:53 ============================================================================ +06:50:53 + + +waiting on router queue for slot.... +06:50:53 Sending to : +06:50:53 ============================================================================ +06:50:53 ============================================================================ +06:50:53 Slot Id : <370> +06:50:53 Transaction Type : RESPONSE +06:50:53 Received From : +06:50:53 ============================================================================ +06:50:53 FNo. Len. Field Value +06:50:53 ============================================================================ +06:50:53 [ 1] [ 4] [0810] +06:50:53 [ 7] [ 10] [0319115002] +06:50:53 [ 11] [ 6] [154999] +06:50:53 [ 39] [ 2] [00] +06:50:53 [ 70] [ 3] [301] +06:50:53 ============================================================================ +06:50:53 Calculate Source COMM Id = 2 +06:50:53 ============================================================================ +06:50:53 + + +waiting on router queue for slot.... +06:50:55 ============================================================================ +06:50:55 Slot Id : <338> +06:50:55 Transaction Type : RESPONSE +06:50:55 Received From : +06:50:55 ============================================================================ +06:50:55 FNo. Len. Field Value +06:50:55 ============================================================================ +06:50:55 [ 1] [ 4] [0210] +06:50:55 [ 2] [ 16] [6688990104258908] +06:50:55 [ 3] [ 6] [010000] +06:50:55 [ 4] [ 12] [000100000000] +06:50:55 [ 11] [ 6] [665827] +06:50:55 [ 12] [ 6] [065049] +06:50:55 [ 15] [ 4] [0320] +06:50:55 [ 18] [ 4] [6011] +06:50:55 [ 32] [ 6] [621354] +06:50:55 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:50:55 [ 37] [ 12] [507904965348] +06:50:55 [ 38] [ 6] [465725] +06:50:55 [ 39] [ 2] [00] +06:50:55 [ 41] [ 8] [15001100] +06:50:55 [ 49] [ 3] [418] +06:50:55 [ 54] [ 20] [0002418C000556786540] +06:50:55 ============================================================================ +06:50:55 Calculate Source COMM Id = 0 +06:50:55 ============================================================================ +06:50:55 + + +waiting on router queue for slot.... +06:51:06 ============================================================================ +06:51:06 Slot Id : <360> +06:51:06 Transaction Type : REQUEST +06:51:06 Received From : +06:51:06 ============================================================================ +06:51:06 FNo. Len. Field Value +06:51:06 ============================================================================ +06:51:06 [ 1] [ 4] [0800] +06:51:06 [ 7] [ 10] [0319115013] +06:51:06 [ 11] [ 6] [155000] +06:51:06 [ 70] [ 3] [301] +06:51:06 ============================================================================ +06:51:06 + + +waiting on router queue for slot.... +06:51:06 Sending to : +06:51:06 ============================================================================ +06:51:06 ============================================================================ +06:51:06 Slot Id : <360> +06:51:06 Transaction Type : RESPONSE +06:51:06 Received From : +06:51:06 ============================================================================ +06:51:06 FNo. Len. Field Value +06:51:06 ============================================================================ +06:51:06 [ 1] [ 4] [0810] +06:51:06 [ 7] [ 10] [0319115013] +06:51:06 [ 11] [ 6] [155000] +06:51:06 [ 39] [ 2] [00] +06:51:06 [ 70] [ 3] [301] +06:51:06 ============================================================================ +06:51:06 Calculate Source COMM Id = 2 +06:51:06 ============================================================================ +06:51:06 + + +waiting on router queue for slot.... +06:51:09 ============================================================================ +06:51:09 Slot Id : <379> +06:51:09 Transaction Type : REQUEST +06:51:09 Received From : +06:51:09 ============================================================================ +06:51:09 FNo. Len. Field Value +06:51:09 ============================================================================ +06:51:09 [ 1] [ 4] [0200] +06:51:09 [ 2] [ 16] [2206990000092155] +06:51:09 [ 3] [ 6] [011000] +06:51:09 [ 4] [ 12] [000010000000] +06:51:09 [ 7] [ 10] [0320065106] +06:51:09 [ 11] [ 6] [665863] +06:51:09 [ 12] [ 6] [065106] +06:51:09 [ 13] [ 4] [0320] +06:51:09 [ 15] [ 4] [0320] +06:51:09 [ 18] [ 4] [6011] +06:51:09 [ 22] [ 3] [900] +06:51:09 [ 25] [ 2] [02] +06:51:09 [ 28] [ 9] [D00002000] +06:51:09 [ 32] [ 6] [621354] +06:51:09 [ 35] [ 32] [2206990000092155=971012614426313] +06:51:09 [ 37] [ 12] [507904119570] +06:51:09 [ 41] [ 8] [08000800] +06:51:09 [ 42] [ 15] [NATIVE ] +06:51:09 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:51:09 [ 49] [ 3] [418] +06:51:09 [ 52] [ 16] [B1A2E93DB6E8A815] +06:51:09 ============================================================================ +06:51:09 + + +waiting on router queue for slot.... +06:51:09 Sending to : +06:51:09 ============================================================================ +06:51:09 Sending to : +06:51:09 ============================================================================ +06:51:09 ============================================================================ +06:51:09 Slot Id : <379> +06:51:09 Transaction Type : REQUEST +06:51:09 Received From : +06:51:09 ============================================================================ +06:51:09 FNo. Len. Field Value +06:51:09 ============================================================================ +06:51:09 [ 1] [ 4] [0200] +06:51:09 [ 2] [ 16] [2206990000092155] +06:51:09 [ 3] [ 6] [011000] +06:51:09 [ 4] [ 12] [000010000000] +06:51:09 [ 7] [ 10] [0320065106] +06:51:09 [ 11] [ 6] [665863] +06:51:09 [ 12] [ 6] [065106] +06:51:09 [ 13] [ 4] [0320] +06:51:09 [ 15] [ 4] [0320] +06:51:09 [ 18] [ 4] [6011] +06:51:09 [ 22] [ 3] [900] +06:51:09 [ 25] [ 2] [02] +06:51:09 [ 28] [ 9] [D00002000] +06:51:09 [ 32] [ 6] [621354] +06:51:09 [ 35] [ 32] [2206990000092155=971012614426313] +06:51:09 [ 37] [ 12] [507904119570] +06:51:09 [ 41] [ 8] [08000800] +06:51:09 [ 42] [ 15] [NATIVE ] +06:51:09 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:51:09 [ 49] [ 3] [418] +06:51:09 [ 52] [ 16] [B1A2E93DB6E8A815] +06:51:09 ============================================================================ +06:51:09 + + +waiting on router queue for slot.... +06:51:09 Sending to : +06:51:09 ============================================================================ +06:51:10 ============================================================================ +06:51:10 Slot Id : <379> +06:51:10 Transaction Type : REQUEST +06:51:10 Received From : +06:51:10 ============================================================================ +06:51:10 FNo. Len. Field Value +06:51:10 ============================================================================ +06:51:10 [ 1] [ 4] [0200] +06:51:10 [ 2] [ 16] [2206990000092155] +06:51:10 [ 3] [ 6] [011000] +06:51:10 [ 4] [ 12] [000010000000] +06:51:10 [ 7] [ 10] [0320065106] +06:51:10 [ 11] [ 6] [665863] +06:51:10 [ 12] [ 6] [065106] +06:51:10 [ 13] [ 4] [0320] +06:51:10 [ 15] [ 4] [0320] +06:51:10 [ 18] [ 4] [6011] +06:51:10 [ 22] [ 3] [900] +06:51:10 [ 25] [ 2] [02] +06:51:10 [ 28] [ 9] [D00002000] +06:51:10 [ 32] [ 6] [621354] +06:51:10 [ 35] [ 32] [2206990000092155=971012614426313] +06:51:10 [ 37] [ 12] [507904119570] +06:51:10 [ 41] [ 8] [08000800] +06:51:10 [ 42] [ 15] [NATIVE ] +06:51:10 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:51:10 [ 49] [ 3] [418] +06:51:10 [ 52] [ 16] [0686A65E994241DB] +06:51:10 ============================================================================ +06:51:10 + + +waiting on router queue for slot.... +06:51:10 Sending to : <1> +06:51:10 ============================================================================ +06:51:11 ============================================================================ +06:51:11 Slot Id : <379> +06:51:11 Transaction Type : RESPONSE +06:51:11 Received From : +06:51:11 ============================================================================ +06:51:11 FNo. Len. Field Value +06:51:11 ============================================================================ +06:51:11 [ 1] [ 4] [0210] +06:51:11 [ 2] [ 16] [2206990000092155] +06:51:11 [ 3] [ 6] [011000] +06:51:11 [ 4] [ 12] [000010000000] +06:51:11 [ 7] [ 10] [0320065106] +06:51:11 [ 11] [ 6] [665863] +06:51:11 [ 12] [ 6] [065106] +06:51:11 [ 13] [ 4] [0320] +06:51:11 [ 15] [ 4] [0320] +06:51:11 [ 18] [ 4] [6011] +06:51:11 [ 32] [ 6] [621354] +06:51:11 [ 35] [ 32] [2206990000092155=971012614426313] +06:51:11 [ 37] [ 12] [507904119570] +06:51:11 [ 38] [ 6] [474533] +06:51:11 [ 39] [ 2] [00] +06:51:11 [ 41] [ 8] [08000800] +06:51:11 [ 49] [ 3] [418] +06:51:11 [ 54] [ 40] [1001418C0002110992001002418C000211099200] +06:51:11 ============================================================================ +06:51:11 Sending to : +06:51:11 ============================================================================ +06:51:11 + + +waiting on router queue for slot.... +06:51:13 ============================================================================ +06:51:13 Slot Id : <379> +06:51:13 Transaction Type : RESPONSE +06:51:13 Received From : +06:51:13 ============================================================================ +06:51:13 FNo. Len. Field Value +06:51:13 ============================================================================ +06:51:13 [ 1] [ 4] [0210] +06:51:13 [ 2] [ 16] [2206990000092155] +06:51:13 [ 3] [ 6] [011000] +06:51:13 [ 4] [ 12] [000010000000] +06:51:13 [ 7] [ 10] [0320065106] +06:51:13 [ 11] [ 6] [665863] +06:51:13 [ 12] [ 6] [065106] +06:51:13 [ 13] [ 4] [0320] +06:51:13 [ 15] [ 4] [0320] +06:51:13 [ 18] [ 4] [6011] +06:51:13 [ 32] [ 6] [621354] +06:51:13 [ 35] [ 32] [2206990000092155=971012614426313] +06:51:13 [ 37] [ 12] [507904119570] +06:51:13 [ 38] [ 6] [474533] +06:51:13 [ 39] [ 2] [00] +06:51:13 [ 41] [ 8] [08000800] +06:51:13 [ 49] [ 3] [418] +06:51:13 [ 54] [ 40] [1001418C0002110992001002418C000211099200] +06:51:13 ============================================================================ +06:51:13 Calculate Source COMM Id = 0 +06:51:13 ============================================================================ +06:51:13 + + +waiting on router queue for slot.... +06:51:15 ============================================================================ +06:51:15 Slot Id : <396> +06:51:15 Transaction Type : REQUEST +06:51:15 Received From : +06:51:15 ============================================================================ +06:51:15 FNo. Len. Field Value +06:51:15 ============================================================================ +06:51:15 [ 1] [ 4] [0200] +06:51:15 [ 2] [ 16] [6213541000179468] +06:51:15 [ 3] [ 6] [011000] +06:51:15 [ 4] [ 12] [000050000000] +06:51:15 [ 7] [ 10] [0320065902] +06:51:15 [ 11] [ 6] [254811] +06:51:15 [ 12] [ 6] [065902] +06:51:15 [ 13] [ 4] [0320] +06:51:15 [ 14] [ 4] [4912] +06:51:15 [ 15] [ 4] [0320] +06:51:15 [ 18] [ 4] [6011] +06:51:15 [ 22] [ 3] [900] +06:51:15 [ 25] [ 2] [02] +06:51:15 [ 28] [ 9] [D00002000] +06:51:15 [ 32] [ 6] [220699] +06:51:15 [ 35] [ 32] [6213541000179468=491212017946775] +06:51:15 [ 37] [ 12] [507900094398] +06:51:15 [ 41] [ 8] [01000900] +06:51:15 [ 42] [ 15] [APTRA ] +06:51:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +06:51:15 [ 49] [ 3] [418] +06:51:15 [ 52] [ 16] [1352FA393FC594C7] +06:51:15 ============================================================================ +06:51:15 + + +waiting on router queue for slot.... +06:51:15 Sending to : +06:51:15 ============================================================================ +06:51:15 Sending to : +06:51:15 ============================================================================ +06:51:15 ============================================================================ +06:51:15 Slot Id : <396> +06:51:15 Transaction Type : REQUEST +06:51:15 Received From : +06:51:15 ============================================================================ +06:51:15 FNo. Len. Field Value +06:51:15 ============================================================================ +06:51:15 [ 1] [ 4] [0200] +06:51:15 [ 2] [ 16] [6213541000179468] +06:51:15 [ 3] [ 6] [011000] +06:51:15 [ 4] [ 12] [000050000000] +06:51:15 [ 7] [ 10] [0320065902] +06:51:15 [ 11] [ 6] [254811] +06:51:15 [ 12] [ 6] [065902] +06:51:15 [ 13] [ 4] [0320] +06:51:15 [ 14] [ 4] [4912] +06:51:15 [ 15] [ 4] [0320] +06:51:15 [ 18] [ 4] [6011] +06:51:15 [ 22] [ 3] [900] +06:51:15 [ 25] [ 2] [02] +06:51:15 [ 28] [ 9] [D00002000] +06:51:15 [ 32] [ 6] [220699] +06:51:15 [ 35] [ 32] [6213541000179468=491212017946775] +06:51:15 [ 37] [ 12] [507900094398] +06:51:15 [ 41] [ 8] [01000900] +06:51:15 [ 42] [ 15] [APTRA ] +06:51:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +06:51:15 [ 49] [ 3] [418] +06:51:15 [ 52] [ 16] [1352FA393FC594C7] +06:51:15 ============================================================================ +06:51:15 + + +waiting on router queue for slot.... +06:51:15 Sending to : +06:51:15 ============================================================================ +06:51:15 ============================================================================ +06:51:15 Slot Id : <396> +06:51:15 Transaction Type : REQUEST +06:51:15 Received From : +06:51:15 ============================================================================ +06:51:15 FNo. Len. Field Value +06:51:15 ============================================================================ +06:51:15 [ 1] [ 4] [0200] +06:51:15 [ 2] [ 16] [6213541000179468] +06:51:15 [ 3] [ 6] [011000] +06:51:15 [ 4] [ 12] [000050000000] +06:51:15 [ 7] [ 10] [0320065902] +06:51:15 [ 11] [ 6] [254811] +06:51:15 [ 12] [ 6] [065902] +06:51:15 [ 13] [ 4] [0320] +06:51:15 [ 14] [ 4] [4912] +06:51:15 [ 15] [ 4] [0320] +06:51:15 [ 18] [ 4] [6011] +06:51:15 [ 22] [ 3] [900] +06:51:15 [ 25] [ 2] [02] +06:51:15 [ 28] [ 9] [D00002000] +06:51:15 [ 32] [ 6] [220699] +06:51:15 [ 35] [ 32] [6213541000179468=491212017946775] +06:51:15 [ 37] [ 12] [507900094398] +06:51:15 [ 41] [ 8] [01000900] +06:51:15 [ 42] [ 15] [APTRA ] +06:51:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +06:51:15 [ 49] [ 3] [418] +06:51:15 [ 52] [ 16] [A26E317FE7FD733F] +06:51:15 ============================================================================ +06:51:15 + + +waiting on router queue for slot.... +06:51:15 Sending to : <0> +06:51:15 ============================================================================ +06:51:16 ============================================================================ +06:51:16 Slot Id : <396> +06:51:16 Transaction Type : RESPONSE +06:51:16 Received From : +06:51:16 ============================================================================ +06:51:16 FNo. Len. Field Value +06:51:16 ============================================================================ +06:51:16 [ 1] [ 4] [0210] +06:51:16 [ 2] [ 16] [6213541000179468] +06:51:16 [ 3] [ 6] [011000] +06:51:16 [ 4] [ 12] [000050000000] +06:51:16 [ 7] [ 10] [0320065902] +06:51:16 [ 11] [ 6] [254811] +06:51:16 [ 12] [ 6] [065902] +06:51:16 [ 13] [ 4] [0320] +06:51:16 [ 15] [ 4] [0320] +06:51:16 [ 18] [ 4] [6011] +06:51:16 [ 32] [ 6] [220699] +06:51:16 [ 35] [ 32] [6213541000179468=491212017946775] +06:51:16 [ 37] [ 12] [507900094398] +06:51:16 [ 38] [ 6] [997046] +06:51:16 [ 39] [ 2] [00] +06:51:16 [ 41] [ 8] [01000900] +06:51:16 [ 49] [ 3] [418] +06:51:16 [ 54] [ 40] [1001418C0006367547161002418C000636754716] +06:51:16 ============================================================================ +06:51:16 Sending to : +06:51:16 ============================================================================ +06:51:16 + + +waiting on router queue for slot.... +06:51:16 ============================================================================ +06:51:16 Slot Id : <354> +06:51:16 Transaction Type : REQUEST +06:51:16 Received From : +06:51:16 ============================================================================ +06:51:16 FNo. Len. Field Value +06:51:16 ============================================================================ +06:51:16 [ 1] [ 4] [0800] +06:51:16 [ 7] [ 10] [0319115025] +06:51:16 [ 11] [ 6] [155001] +06:51:16 [ 70] [ 3] [301] +06:51:16 ============================================================================ +06:51:16 + + +waiting on router queue for slot.... +06:51:16 Sending to : +06:51:16 ============================================================================ +06:51:16 ============================================================================ +06:51:16 Slot Id : <354> +06:51:16 Transaction Type : RESPONSE +06:51:16 Received From : +06:51:16 ============================================================================ +06:51:16 FNo. Len. Field Value +06:51:16 ============================================================================ +06:51:16 [ 1] [ 4] [0810] +06:51:16 [ 7] [ 10] [0319115025] +06:51:16 [ 11] [ 6] [155001] +06:51:16 [ 39] [ 2] [00] +06:51:16 [ 70] [ 3] [301] +06:51:16 ============================================================================ +06:51:16 Calculate Source COMM Id = 2 +06:51:16 ============================================================================ +06:51:16 + + +waiting on router queue for slot.... +06:51:17 ============================================================================ +06:51:17 Slot Id : <396> +06:51:17 Transaction Type : RESPONSE +06:51:17 Received From : +06:51:17 ============================================================================ +06:51:17 FNo. Len. Field Value +06:51:17 ============================================================================ +06:51:17 [ 1] [ 4] [0210] +06:51:17 [ 2] [ 16] [6213541000179468] +06:51:17 [ 3] [ 6] [011000] +06:51:17 [ 4] [ 12] [000050000000] +06:51:17 [ 7] [ 10] [0320065902] +06:51:17 [ 11] [ 6] [254811] +06:51:17 [ 12] [ 6] [065902] +06:51:17 [ 13] [ 4] [0320] +06:51:17 [ 15] [ 4] [0320] +06:51:17 [ 18] [ 4] [6011] +06:51:17 [ 32] [ 6] [220699] +06:51:17 [ 35] [ 32] [6213541000179468=491212017946775] +06:51:17 [ 37] [ 12] [507900094398] +06:51:17 [ 38] [ 6] [997046] +06:51:17 [ 39] [ 2] [00] +06:51:17 [ 41] [ 8] [01000900] +06:51:17 [ 49] [ 3] [418] +06:51:17 [ 54] [ 40] [1001418C0006367547161002418C000636754716] +06:51:17 ============================================================================ +06:51:17 Calculate Source COMM Id = 1 +06:51:17 ============================================================================ +06:51:17 + + +waiting on router queue for slot.... +06:51:21 ============================================================================ +06:51:21 Slot Id : <351> +06:51:21 Transaction Type : REQUEST +06:51:21 Received From : +06:51:21 ============================================================================ +06:51:21 FNo. Len. Field Value +06:51:21 ============================================================================ +06:51:21 [ 1] [ 4] [0800] +06:51:21 [ 7] [ 10] [0319234912] +06:51:21 [ 11] [ 6] [091789] +06:51:21 [ 37] [ 12] [57906091789] +06:51:21 [ 70] [ 3] [301] +06:51:21 ============================================================================ +06:51:21 + + +waiting on router queue for slot.... +06:51:21 Sending to : +06:51:21 ============================================================================ +06:51:21 ============================================================================ +06:51:21 Slot Id : <351> +06:51:21 Transaction Type : RESPONSE +06:51:21 Received From : +06:51:21 ============================================================================ +06:51:21 FNo. Len. Field Value +06:51:21 ============================================================================ +06:51:21 [ 1] [ 4] [0810] +06:51:21 [ 7] [ 10] [0319234912] +06:51:21 [ 11] [ 6] [091789] +06:51:21 [ 37] [ 12] [579060917890] +06:51:21 [ 39] [ 2] [00] +06:51:21 [ 70] [ 3] [810] +06:51:21 ============================================================================ +06:51:21 Calculate Source COMM Id = 4 +06:51:21 ============================================================================ +06:51:21 + + +waiting on router queue for slot.... +06:51:32 ============================================================================ +06:51:32 Slot Id : <369> +06:51:32 Transaction Type : REQUEST +06:51:32 Received From : +06:51:32 ============================================================================ +06:51:32 FNo. Len. Field Value +06:51:32 ============================================================================ +06:51:32 [ 1] [ 4] [0800] +06:51:32 [ 7] [ 10] [0319115040] +06:51:32 [ 11] [ 6] [155002] +06:51:32 [ 70] [ 3] [301] +06:51:32 ============================================================================ +06:51:32 + + +waiting on router queue for slot.... +06:51:32 Sending to : +06:51:32 ============================================================================ +06:51:32 ============================================================================ +06:51:32 Slot Id : <369> +06:51:32 Transaction Type : RESPONSE +06:51:32 Received From : +06:51:32 ============================================================================ +06:51:32 FNo. Len. Field Value +06:51:32 ============================================================================ +06:51:32 [ 1] [ 4] [0810] +06:51:32 [ 7] [ 10] [0319115040] +06:51:32 [ 11] [ 6] [155002] +06:51:32 [ 39] [ 2] [00] +06:51:32 [ 70] [ 3] [301] +06:51:32 ============================================================================ +06:51:32 Calculate Source COMM Id = 2 +06:51:32 ============================================================================ +06:51:32 + + +waiting on router queue for slot.... +06:51:40 ============================================================================ +06:51:40 Slot Id : <374> +06:51:40 Transaction Type : REQUEST +06:51:40 Received From : +06:51:40 ============================================================================ +06:51:40 FNo. Len. Field Value +06:51:40 ============================================================================ +06:51:40 [ 1] [ 4] [0200] +06:51:40 [ 2] [ 16] [1989010003167253] +06:51:40 [ 3] [ 6] [011000] +06:51:40 [ 4] [ 12] [000100000000] +06:51:40 [ 7] [ 10] [0320065136] +06:51:40 [ 11] [ 6] [665915] +06:51:40 [ 12] [ 6] [065136] +06:51:40 [ 13] [ 4] [0320] +06:51:40 [ 15] [ 4] [0320] +06:51:40 [ 18] [ 4] [6011] +06:51:40 [ 22] [ 3] [900] +06:51:40 [ 25] [ 2] [02] +06:51:40 [ 28] [ 9] [D00002000] +06:51:40 [ 32] [ 6] [621354] +06:51:40 [ 35] [ 32] [1989010003167253=000010100000774] +06:51:40 [ 37] [ 12] [507902835001] +06:51:40 [ 41] [ 8] [01007700] +06:51:40 [ 42] [ 15] [NATIVE ] +06:51:40 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +06:51:40 [ 49] [ 3] [418] +06:51:40 [ 52] [ 16] [933BD6114746E12F] +06:51:40 ============================================================================ +06:51:40 + + +waiting on router queue for slot.... +06:51:40 Sending to : +06:51:40 ============================================================================ +06:51:40 Sending to : +06:51:40 ============================================================================ +06:51:40 ============================================================================ +06:51:40 Slot Id : <374> +06:51:40 Transaction Type : REQUEST +06:51:40 Received From : +06:51:40 ============================================================================ +06:51:40 FNo. Len. Field Value +06:51:40 ============================================================================ +06:51:40 [ 1] [ 4] [0200] +06:51:40 [ 2] [ 16] [1989010003167253] +06:51:40 [ 3] [ 6] [011000] +06:51:40 [ 4] [ 12] [000100000000] +06:51:40 [ 7] [ 10] [0320065136] +06:51:40 [ 11] [ 6] [665915] +06:51:40 [ 12] [ 6] [065136] +06:51:40 [ 13] [ 4] [0320] +06:51:40 [ 15] [ 4] [0320] +06:51:40 [ 18] [ 4] [6011] +06:51:40 [ 22] [ 3] [900] +06:51:40 [ 25] [ 2] [02] +06:51:40 [ 28] [ 9] [D00002000] +06:51:40 [ 32] [ 6] [621354] +06:51:40 [ 35] [ 32] [1989010003167253=000010100000774] +06:51:40 [ 37] [ 12] [507902835001] +06:51:40 [ 41] [ 8] [01007700] +06:51:40 [ 42] [ 15] [NATIVE ] +06:51:40 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +06:51:40 [ 49] [ 3] [418] +06:51:40 [ 52] [ 16] [933BD6114746E12F] +06:51:40 ============================================================================ +06:51:40 + + +waiting on router queue for slot.... +06:51:40 Sending to : +06:51:40 ============================================================================ +06:51:40 ============================================================================ +06:51:40 Slot Id : <374> +06:51:40 Transaction Type : REQUEST +06:51:40 Received From : +06:51:40 ============================================================================ +06:51:40 FNo. Len. Field Value +06:51:40 ============================================================================ +06:51:40 [ 1] [ 4] [0200] +06:51:40 [ 2] [ 16] [1989010003167253] +06:51:40 [ 3] [ 6] [011000] +06:51:40 [ 4] [ 12] [000100000000] +06:51:40 [ 7] [ 10] [0320065136] +06:51:40 [ 11] [ 6] [665915] +06:51:40 [ 12] [ 6] [065136] +06:51:40 [ 13] [ 4] [0320] +06:51:40 [ 15] [ 4] [0320] +06:51:40 [ 18] [ 4] [6011] +06:51:40 [ 22] [ 3] [900] +06:51:40 [ 25] [ 2] [02] +06:51:40 [ 28] [ 9] [D00002000] +06:51:40 [ 32] [ 6] [621354] +06:51:40 [ 35] [ 32] [1989010003167253=000010100000774] +06:51:40 [ 37] [ 12] [507902835001] +06:51:40 [ 41] [ 8] [01007700] +06:51:40 [ 42] [ 15] [NATIVE ] +06:51:40 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +06:51:40 [ 49] [ 3] [418] +06:51:40 [ 52] [ 16] [7302EDD4DDBF9ADB] +06:51:40 ============================================================================ +06:51:40 + + +waiting on router queue for slot.... +06:51:40 Sending to : <5> +06:51:40 ============================================================================ +06:51:42 ============================================================================ +06:51:42 Slot Id : <390> +06:51:42 Transaction Type : REQUEST +06:51:42 Received From : +06:51:42 ============================================================================ +06:51:42 FNo. Len. Field Value +06:51:42 ============================================================================ +06:51:42 [ 1] [ 4] [0800] +06:51:42 [ 7] [ 10] [0320140331] +06:51:42 [ 11] [ 6] [070331] +06:51:42 [ 37] [ 12] [57907070331] +06:51:42 [ 70] [ 3] [301] +06:51:42 ============================================================================ +06:51:42 + + +waiting on router queue for slot.... +06:51:42 Sending to : +06:51:42 ============================================================================ +06:51:42 ============================================================================ +06:51:42 Slot Id : <390> +06:51:42 Transaction Type : RESPONSE +06:51:42 Received From : +06:51:42 ============================================================================ +06:51:42 FNo. Len. Field Value +06:51:42 ============================================================================ +06:51:42 [ 1] [ 4] [0810] +06:51:42 [ 7] [ 10] [0320140331] +06:51:42 [ 11] [ 6] [070331] +06:51:42 [ 37] [ 12] [579070703310] +06:51:42 [ 39] [ 2] [00] +06:51:42 [ 70] [ 3] [810] +06:51:42 ============================================================================ +06:51:42 Calculate Source COMM Id = 6 +06:51:42 ============================================================================ +06:51:42 + + +waiting on router queue for slot.... +06:51:45 ============================================================================ +06:51:45 Slot Id : <374> +06:51:45 Transaction Type : RESPONSE +06:51:45 Received From : +06:51:45 ============================================================================ +06:51:45 FNo. Len. Field Value +06:51:45 ============================================================================ +06:51:45 [ 1] [ 4] [0210] +06:51:45 [ 2] [ 16] [1989010003167253] +06:51:45 [ 3] [ 6] [011000] +06:51:45 [ 4] [ 12] [000100000000] +06:51:45 [ 7] [ 10] [0320065136] +06:51:45 [ 11] [ 6] [665915] +06:51:45 [ 12] [ 6] [065136] +06:51:45 [ 13] [ 4] [0320] +06:51:45 [ 15] [ 4] [0320] +06:51:45 [ 18] [ 4] [6011] +06:51:45 [ 19] [ 3] [418] +06:51:45 [ 32] [ 6] [621354] +06:51:45 [ 37] [ 12] [507902835001] +06:51:45 [ 38] [ 6] [482406] +06:51:45 [ 39] [ 2] [00] +06:51:45 [ 41] [ 8] [01007700] +06:51:45 [ 49] [ 3] [418] +06:51:45 [ 54] [ 20] [1001418C000303610600] +06:51:45 ============================================================================ +06:51:45 Sending to : +06:51:45 ============================================================================ +06:51:45 + + +waiting on router queue for slot.... +06:51:47 ============================================================================ +06:51:47 Slot Id : <374> +06:51:47 Transaction Type : RESPONSE +06:51:47 Received From : +06:51:47 ============================================================================ +06:51:47 FNo. Len. Field Value +06:51:47 ============================================================================ +06:51:47 [ 1] [ 4] [0210] +06:51:47 [ 2] [ 16] [1989010003167253] +06:51:47 [ 3] [ 6] [011000] +06:51:47 [ 4] [ 12] [000100000000] +06:51:47 [ 7] [ 10] [0320065136] +06:51:47 [ 11] [ 6] [665915] +06:51:47 [ 12] [ 6] [065136] +06:51:47 [ 13] [ 4] [0320] +06:51:47 [ 15] [ 4] [0320] +06:51:47 [ 18] [ 4] [6011] +06:51:47 [ 19] [ 3] [418] +06:51:47 [ 32] [ 6] [621354] +06:51:47 [ 37] [ 12] [507902835001] +06:51:47 [ 38] [ 6] [482406] +06:51:47 [ 39] [ 2] [00] +06:51:47 [ 41] [ 8] [01007700] +06:51:47 [ 49] [ 3] [418] +06:51:47 [ 54] [ 20] [1001418C000303610600] +06:51:47 ============================================================================ +06:51:47 Calculate Source COMM Id = 0 +06:51:47 ============================================================================ +06:51:47 + + +waiting on router queue for slot.... +06:51:47 ============================================================================ +06:51:47 Slot Id : <389> +06:51:47 Transaction Type : REQUEST +06:51:47 Received From : +06:51:47 ============================================================================ +06:51:47 FNo. Len. Field Value +06:51:47 ============================================================================ +06:51:47 [ 1] [ 4] [0800] +06:51:47 [ 7] [ 10] [0319115056] +06:51:47 [ 11] [ 6] [155003] +06:51:47 [ 70] [ 3] [301] +06:51:47 ============================================================================ +06:51:47 + + +waiting on router queue for slot.... +06:51:47 Sending to : +06:51:47 ============================================================================ +06:51:47 ============================================================================ +06:51:47 Slot Id : <389> +06:51:47 Transaction Type : RESPONSE +06:51:47 Received From : +06:51:47 ============================================================================ +06:51:47 FNo. Len. Field Value +06:51:47 ============================================================================ +06:51:47 [ 1] [ 4] [0810] +06:51:47 [ 7] [ 10] [0319115056] +06:51:47 [ 11] [ 6] [155003] +06:51:47 [ 39] [ 2] [00] +06:51:47 [ 70] [ 3] [301] +06:51:47 ============================================================================ +06:51:47 Calculate Source COMM Id = 2 +06:51:47 ============================================================================ +06:51:47 + + +waiting on router queue for slot.... +06:51:52 ============================================================================ +06:51:52 Slot Id : <376> +06:51:52 Transaction Type : REQUEST +06:51:52 Received From : +06:51:52 ============================================================================ +06:51:52 FNo. Len. Field Value +06:51:52 ============================================================================ +06:51:52 [ 1] [ 4] [0800] +06:51:52 [ 2] [ 5] [02531] +06:51:52 [ 3] [ 6] [579068] +06:51:52 [ 7] [ 10] [0319235152] +06:51:52 [ 11] [ 6] [806810] +06:51:52 [ 15] [ 10] [0319235152] +06:51:52 [ 37] [ 11] [57906806810] +06:51:52 [ 70] [ 3] [001] +06:51:52 ============================================================================ +06:51:52 + + +waiting on router queue for slot.... +06:51:52 ============================================================================ +06:51:52 Slot Id : <376> +06:51:52 Transaction Type : RESPONSE +06:51:52 Received From : +06:51:52 ============================================================================ +06:51:52 FNo. Len. Field Value +06:51:52 ============================================================================ +06:51:52 [ 1] [ 4] [0810] +06:51:52 [ 7] [ 10] [0319235152] +06:51:52 [ 11] [ 6] [806810] +06:51:52 [ 15] [ 4] [0319] +06:51:52 [ 37] [ 12] [57906806810] +06:51:52 [ 39] [ 2] [00] +06:51:52 [ 70] [ 3] [001] +06:51:52 ============================================================================ +06:51:52 Sending to : +06:51:52 ============================================================================ +06:51:52 + + +waiting on router queue for slot.... +06:51:54 ============================================================================ +06:51:54 Slot Id : <359> +06:51:54 Transaction Type : REQUEST +06:51:54 Received From : +06:51:54 ============================================================================ +06:51:54 FNo. Len. Field Value +06:51:54 ============================================================================ +06:51:54 [ 1] [ 4] [0200] +06:51:54 [ 2] [ 16] [6688990104258908] +06:51:54 [ 3] [ 6] [010000] +06:51:54 [ 4] [ 12] [000100000000] +06:51:54 [ 7] [ 10] [0320065151] +06:51:54 [ 11] [ 6] [665945] +06:51:54 [ 12] [ 6] [065151] +06:51:54 [ 13] [ 4] [0320] +06:51:54 [ 15] [ 4] [0320] +06:51:54 [ 18] [ 4] [6011] +06:51:54 [ 22] [ 3] [900] +06:51:54 [ 25] [ 2] [02] +06:51:54 [ 28] [ 9] [D00002000] +06:51:54 [ 32] [ 6] [621354] +06:51:54 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:51:54 [ 37] [ 12] [507904965350] +06:51:54 [ 41] [ 8] [15001100] +06:51:54 [ 42] [ 15] [NATIVE ] +06:51:54 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:51:54 [ 49] [ 3] [418] +06:51:54 [ 52] [ 16] [366615BCC7C78CAF] +06:51:54 ============================================================================ +06:51:54 + + +waiting on router queue for slot.... +06:51:54 Sending to : +06:51:54 ============================================================================ +06:51:54 Sending to : +06:51:54 ============================================================================ +06:51:55 ============================================================================ +06:51:55 Slot Id : <359> +06:51:55 Transaction Type : REQUEST +06:51:55 Received From : +06:51:55 ============================================================================ +06:51:55 FNo. Len. Field Value +06:51:55 ============================================================================ +06:51:55 [ 1] [ 4] [0200] +06:51:55 [ 2] [ 16] [6688990104258908] +06:51:55 [ 3] [ 6] [010000] +06:51:55 [ 4] [ 12] [000100000000] +06:51:55 [ 7] [ 10] [0320065151] +06:51:55 [ 11] [ 6] [665945] +06:51:55 [ 12] [ 6] [065151] +06:51:55 [ 13] [ 4] [0320] +06:51:55 [ 15] [ 4] [0320] +06:51:55 [ 18] [ 4] [6011] +06:51:55 [ 22] [ 3] [900] +06:51:55 [ 25] [ 2] [02] +06:51:55 [ 28] [ 9] [D00002000] +06:51:55 [ 32] [ 6] [621354] +06:51:55 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:51:55 [ 37] [ 12] [507904965350] +06:51:55 [ 41] [ 8] [15001100] +06:51:55 [ 42] [ 15] [NATIVE ] +06:51:55 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:51:55 [ 49] [ 3] [418] +06:51:55 [ 52] [ 16] [366615BCC7C78CAF] +06:51:55 ============================================================================ +06:51:55 + + +waiting on router queue for slot.... +06:51:55 Sending to : +06:51:55 ============================================================================ +06:51:55 ============================================================================ +06:51:55 Slot Id : <359> +06:51:55 Transaction Type : REQUEST +06:51:55 Received From : +06:51:55 ============================================================================ +06:51:55 FNo. Len. Field Value +06:51:55 ============================================================================ +06:51:55 [ 1] [ 4] [0200] +06:51:55 [ 2] [ 16] [6688990104258908] +06:51:55 [ 3] [ 6] [010000] +06:51:55 [ 4] [ 12] [000100000000] +06:51:55 [ 7] [ 10] [0320065151] +06:51:55 [ 11] [ 6] [665945] +06:51:55 [ 12] [ 6] [065151] +06:51:55 [ 13] [ 4] [0320] +06:51:55 [ 15] [ 4] [0320] +06:51:55 [ 18] [ 4] [6011] +06:51:55 [ 22] [ 3] [900] +06:51:55 [ 25] [ 2] [02] +06:51:55 [ 28] [ 9] [D00002000] +06:51:55 [ 32] [ 6] [621354] +06:51:55 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:51:55 [ 37] [ 12] [507904965350] +06:51:55 [ 41] [ 8] [15001100] +06:51:55 [ 42] [ 15] [NATIVE ] +06:51:55 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:51:55 [ 49] [ 3] [418] +06:51:55 [ 52] [ 16] [7BB9B1BAB124D8D1] +06:51:55 ============================================================================ +06:51:55 + + +waiting on router queue for slot.... +06:51:55 Sending to : <4> +06:51:55 ============================================================================ +06:51:56 ============================================================================ +06:51:56 Slot Id : <359> +06:51:56 Transaction Type : RESPONSE +06:51:56 Received From : +06:51:56 ============================================================================ +06:51:56 FNo. Len. Field Value +06:51:56 ============================================================================ +06:51:56 [ 1] [ 4] [0210] +06:51:56 [ 2] [ 16] [6688990104258908] +06:51:56 [ 3] [ 6] [010000] +06:51:56 [ 4] [ 12] [000100000000] +06:51:56 [ 11] [ 6] [665945] +06:51:56 [ 12] [ 6] [065151] +06:51:56 [ 15] [ 4] [0320] +06:51:56 [ 18] [ 4] [6011] +06:51:56 [ 32] [ 6] [621354] +06:51:56 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:51:56 [ 37] [ 12] [507904965350] +06:51:56 [ 38] [ 6] [017308] +06:51:56 [ 39] [ 2] [00] +06:51:56 [ 41] [ 8] [15001100] +06:51:56 [ 49] [ 3] [418] +06:51:56 [ 54] [ 20] [0002418C000456586540] +06:51:56 ============================================================================ +06:51:56 Sending to : +06:51:56 ============================================================================ +06:51:56 + + +waiting on router queue for slot.... +06:51:57 ============================================================================ +06:51:57 Slot Id : <359> +06:51:57 Transaction Type : RESPONSE +06:51:57 Received From : +06:51:57 ============================================================================ +06:51:57 FNo. Len. Field Value +06:51:57 ============================================================================ +06:51:57 [ 1] [ 4] [0210] +06:51:57 [ 2] [ 16] [6688990104258908] +06:51:57 [ 3] [ 6] [010000] +06:51:57 [ 4] [ 12] [000100000000] +06:51:57 [ 11] [ 6] [665945] +06:51:57 [ 12] [ 6] [065151] +06:51:57 [ 15] [ 4] [0320] +06:51:57 [ 18] [ 4] [6011] +06:51:57 [ 32] [ 6] [621354] +06:51:57 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:51:57 [ 37] [ 12] [507904965350] +06:51:57 [ 38] [ 6] [017308] +06:51:57 [ 39] [ 2] [00] +06:51:57 [ 41] [ 8] [15001100] +06:51:57 [ 49] [ 3] [418] +06:51:57 [ 54] [ 20] [0002418C000456586540] +06:51:57 ============================================================================ +06:51:57 Calculate Source COMM Id = 0 +06:51:57 ============================================================================ +06:51:57 + + +waiting on router queue for slot.... +06:52:04 ============================================================================ +06:52:04 Slot Id : <395> +06:52:04 Transaction Type : REQUEST +06:52:04 Received From : +06:52:04 ============================================================================ +06:52:04 FNo. Len. Field Value +06:52:04 ============================================================================ +06:52:04 [ 1] [ 4] [0800] +06:52:04 [ 7] [ 10] [0319115111] +06:52:04 [ 11] [ 6] [155004] +06:52:04 [ 70] [ 3] [301] +06:52:04 ============================================================================ +06:52:04 + + +waiting on router queue for slot.... +06:52:04 Sending to : +06:52:04 ============================================================================ +06:52:04 ============================================================================ +06:52:04 Slot Id : <395> +06:52:04 Transaction Type : RESPONSE +06:52:04 Received From : +06:52:04 ============================================================================ +06:52:04 FNo. Len. Field Value +06:52:04 ============================================================================ +06:52:04 [ 1] [ 4] [0810] +06:52:04 [ 7] [ 10] [0319115111] +06:52:04 [ 11] [ 6] [155004] +06:52:04 [ 39] [ 2] [00] +06:52:04 [ 70] [ 3] [301] +06:52:04 ============================================================================ +06:52:04 Calculate Source COMM Id = 2 +06:52:04 ============================================================================ +06:52:04 + + +waiting on router queue for slot.... +06:52:19 ============================================================================ +06:52:19 Slot Id : <361> +06:52:19 Transaction Type : REQUEST +06:52:19 Received From : +06:52:19 ============================================================================ +06:52:19 FNo. Len. Field Value +06:52:19 ============================================================================ +06:52:19 [ 1] [ 4] [0800] +06:52:19 [ 7] [ 10] [0319115128] +06:52:19 [ 11] [ 6] [155005] +06:52:19 [ 70] [ 3] [301] +06:52:19 ============================================================================ +06:52:19 + + +waiting on router queue for slot.... +06:52:19 Sending to : +06:52:19 ============================================================================ +06:52:19 ============================================================================ +06:52:19 Slot Id : <361> +06:52:19 Transaction Type : RESPONSE +06:52:19 Received From : +06:52:19 ============================================================================ +06:52:19 FNo. Len. Field Value +06:52:19 ============================================================================ +06:52:19 [ 1] [ 4] [0810] +06:52:19 [ 7] [ 10] [0319115128] +06:52:19 [ 11] [ 6] [155005] +06:52:19 [ 39] [ 2] [00] +06:52:19 [ 70] [ 3] [301] +06:52:19 ============================================================================ +06:52:19 Calculate Source COMM Id = 2 +06:52:19 ============================================================================ +06:52:19 + + +waiting on router queue for slot.... +06:52:30 ============================================================================ +06:52:30 Slot Id : <410> +06:52:30 Transaction Type : REQUEST +06:52:30 Received From : +06:52:30 ============================================================================ +06:52:30 FNo. Len. Field Value +06:52:30 ============================================================================ +06:52:30 [ 1] [ 4] [0800] +06:52:30 [ 7] [ 10] [0319115139] +06:52:30 [ 11] [ 6] [155006] +06:52:30 [ 70] [ 3] [301] +06:52:30 ============================================================================ +06:52:30 + + +waiting on router queue for slot.... +06:52:30 Sending to : +06:52:30 ============================================================================ +06:52:30 ============================================================================ +06:52:30 Slot Id : <410> +06:52:30 Transaction Type : RESPONSE +06:52:30 Received From : +06:52:30 ============================================================================ +06:52:30 FNo. Len. Field Value +06:52:30 ============================================================================ +06:52:30 [ 1] [ 4] [0810] +06:52:30 [ 7] [ 10] [0319115139] +06:52:30 [ 11] [ 6] [155006] +06:52:30 [ 39] [ 2] [00] +06:52:30 [ 70] [ 3] [301] +06:52:30 ============================================================================ +06:52:30 Calculate Source COMM Id = 2 +06:52:30 ============================================================================ +06:52:30 + + +waiting on router queue for slot.... +06:52:44 ============================================================================ +06:52:44 Slot Id : <349> +06:52:44 Transaction Type : REQUEST +06:52:44 Received From : +06:52:44 ============================================================================ +06:52:44 FNo. Len. Field Value +06:52:44 ============================================================================ +06:52:44 [ 1] [ 4] [0200] +06:52:44 [ 2] [ 16] [2206990000092155] +06:52:44 [ 3] [ 6] [302000] +06:52:44 [ 4] [ 12] [000000000000] +06:52:44 [ 7] [ 10] [0320065240] +06:52:44 [ 11] [ 6] [666046] +06:52:44 [ 12] [ 6] [065240] +06:52:44 [ 13] [ 4] [0320] +06:52:44 [ 15] [ 4] [0320] +06:52:44 [ 18] [ 4] [6011] +06:52:44 [ 22] [ 3] [900] +06:52:44 [ 25] [ 2] [02] +06:52:44 [ 28] [ 9] [D00000000] +06:52:44 [ 32] [ 6] [621354] +06:52:44 [ 35] [ 32] [2206990000092155=971012614426313] +06:52:44 [ 37] [ 12] [507904119571] +06:52:44 [ 41] [ 8] [08000800] +06:52:44 [ 42] [ 15] [NATIVE ] +06:52:44 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:52:44 [ 49] [ 3] [418] +06:52:44 [ 52] [ 16] [B1A2E93DB6E8A815] +06:52:44 ============================================================================ +06:52:44 + + +waiting on router queue for slot.... +06:52:44 Sending to : +06:52:44 ============================================================================ +06:52:44 Sending to : +06:52:44 ============================================================================ +06:52:44 ============================================================================ +06:52:44 Slot Id : <349> +06:52:44 Transaction Type : REQUEST +06:52:44 Received From : +06:52:44 ============================================================================ +06:52:44 FNo. Len. Field Value +06:52:44 ============================================================================ +06:52:44 [ 1] [ 4] [0200] +06:52:44 [ 2] [ 16] [2206990000092155] +06:52:44 [ 3] [ 6] [302000] +06:52:44 [ 4] [ 12] [000000000000] +06:52:44 [ 7] [ 10] [0320065240] +06:52:44 [ 11] [ 6] [666046] +06:52:44 [ 12] [ 6] [065240] +06:52:44 [ 13] [ 4] [0320] +06:52:44 [ 15] [ 4] [0320] +06:52:44 [ 18] [ 4] [6011] +06:52:44 [ 22] [ 3] [900] +06:52:44 [ 25] [ 2] [02] +06:52:44 [ 28] [ 9] [D00000000] +06:52:44 [ 32] [ 6] [621354] +06:52:44 [ 35] [ 32] [2206990000092155=971012614426313] +06:52:44 [ 37] [ 12] [507904119571] +06:52:44 [ 41] [ 8] [08000800] +06:52:44 [ 42] [ 15] [NATIVE ] +06:52:44 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:52:44 [ 49] [ 3] [418] +06:52:44 [ 52] [ 16] [B1A2E93DB6E8A815] +06:52:44 ============================================================================ +06:52:44 + + +waiting on router queue for slot.... +06:52:44 Sending to : +06:52:44 ============================================================================ +06:52:44 ============================================================================ +06:52:44 Slot Id : <349> +06:52:44 Transaction Type : REQUEST +06:52:44 Received From : +06:52:44 ============================================================================ +06:52:44 FNo. Len. Field Value +06:52:44 ============================================================================ +06:52:44 [ 1] [ 4] [0200] +06:52:44 [ 2] [ 16] [2206990000092155] +06:52:44 [ 3] [ 6] [302000] +06:52:44 [ 4] [ 12] [000000000000] +06:52:44 [ 7] [ 10] [0320065240] +06:52:44 [ 11] [ 6] [666046] +06:52:44 [ 12] [ 6] [065240] +06:52:44 [ 13] [ 4] [0320] +06:52:44 [ 15] [ 4] [0320] +06:52:44 [ 18] [ 4] [6011] +06:52:44 [ 22] [ 3] [900] +06:52:44 [ 25] [ 2] [02] +06:52:44 [ 28] [ 9] [D00000000] +06:52:44 [ 32] [ 6] [621354] +06:52:44 [ 35] [ 32] [2206990000092155=971012614426313] +06:52:44 [ 37] [ 12] [507904119571] +06:52:44 [ 41] [ 8] [08000800] +06:52:44 [ 42] [ 15] [NATIVE ] +06:52:44 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:52:44 [ 49] [ 3] [418] +06:52:44 [ 52] [ 16] [0686A65E994241DB] +06:52:44 ============================================================================ +06:52:44 + + +waiting on router queue for slot.... +06:52:44 Sending to : <1> +06:52:44 ============================================================================ +06:52:46 ============================================================================ +06:52:46 Slot Id : <413> +06:52:46 Transaction Type : REQUEST +06:52:46 Received From : +06:52:46 ============================================================================ +06:52:46 FNo. Len. Field Value +06:52:46 ============================================================================ +06:52:46 [ 1] [ 4] [0200] +06:52:46 [ 2] [ 16] [1989010003167253] +06:52:46 [ 3] [ 6] [011000] +06:52:46 [ 4] [ 12] [000050000000] +06:52:46 [ 7] [ 10] [0320065242] +06:52:46 [ 11] [ 6] [666047] +06:52:46 [ 12] [ 6] [065242] +06:52:46 [ 13] [ 4] [0320] +06:52:46 [ 15] [ 4] [0320] +06:52:46 [ 18] [ 4] [6011] +06:52:46 [ 22] [ 3] [900] +06:52:46 [ 25] [ 2] [02] +06:52:46 [ 28] [ 9] [D00002000] +06:52:46 [ 32] [ 6] [621354] +06:52:46 [ 35] [ 32] [1989010003167253=000010100000774] +06:52:46 [ 37] [ 12] [507902835003] +06:52:46 [ 41] [ 8] [01007700] +06:52:46 [ 42] [ 15] [NATIVE ] +06:52:46 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +06:52:46 [ 49] [ 3] [418] +06:52:46 [ 52] [ 16] [933BD6114746E12F] +06:52:46 ============================================================================ +06:52:46 + + +waiting on router queue for slot.... +06:52:46 Sending to : +06:52:46 ============================================================================ +06:52:46 Sending to : +06:52:46 ============================================================================ +06:52:46 ============================================================================ +06:52:46 Slot Id : <349> +06:52:46 Transaction Type : RESPONSE +06:52:46 Received From : +06:52:46 ============================================================================ +06:52:46 FNo. Len. Field Value +06:52:46 ============================================================================ +06:52:46 [ 1] [ 4] [0210] +06:52:46 [ 2] [ 16] [2206990000092155] +06:52:46 [ 3] [ 6] [302000] +06:52:46 [ 4] [ 12] [000000000000] +06:52:46 [ 7] [ 10] [0320065240] +06:52:46 [ 11] [ 6] [666046] +06:52:46 [ 12] [ 6] [065240] +06:52:46 [ 13] [ 4] [0320] +06:52:46 [ 15] [ 4] [0320] +06:52:46 [ 18] [ 4] [6011] +06:52:46 [ 32] [ 6] [621354] +06:52:46 [ 35] [ 32] [2206990000092155=971012614426313] +06:52:46 [ 37] [ 12] [507904119571] +06:52:46 [ 38] [ 6] [286602] +06:52:46 [ 39] [ 2] [00] +06:52:46 [ 41] [ 8] [08000800] +06:52:46 [ 49] [ 3] [418] +06:52:46 [ 54] [ 40] [2001418C0002110992002002418C000211099200] +06:52:46 ============================================================================ +06:52:46 Sending to : +06:52:46 ============================================================================ +06:52:46 + + +waiting on router queue for slot.... +06:52:46 ============================================================================ +06:52:46 Slot Id : <413> +06:52:46 Transaction Type : REQUEST +06:52:46 Received From : +06:52:46 ============================================================================ +06:52:46 FNo. Len. Field Value +06:52:46 ============================================================================ +06:52:46 [ 1] [ 4] [0200] +06:52:46 [ 2] [ 16] [1989010003167253] +06:52:46 [ 3] [ 6] [011000] +06:52:46 [ 4] [ 12] [000050000000] +06:52:46 [ 7] [ 10] [0320065242] +06:52:46 [ 11] [ 6] [666047] +06:52:46 [ 12] [ 6] [065242] +06:52:46 [ 13] [ 4] [0320] +06:52:46 [ 15] [ 4] [0320] +06:52:46 [ 18] [ 4] [6011] +06:52:46 [ 22] [ 3] [900] +06:52:46 [ 25] [ 2] [02] +06:52:46 [ 28] [ 9] [D00002000] +06:52:46 [ 32] [ 6] [621354] +06:52:46 [ 35] [ 32] [1989010003167253=000010100000774] +06:52:46 [ 37] [ 12] [507902835003] +06:52:46 [ 41] [ 8] [01007700] +06:52:46 [ 42] [ 15] [NATIVE ] +06:52:46 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +06:52:46 [ 49] [ 3] [418] +06:52:46 [ 52] [ 16] [933BD6114746E12F] +06:52:46 ============================================================================ +06:52:46 + + +waiting on router queue for slot.... +06:52:46 Sending to : +06:52:46 ============================================================================ +06:52:46 ============================================================================ +06:52:46 Slot Id : <413> +06:52:46 Transaction Type : REQUEST +06:52:46 Received From : +06:52:46 ============================================================================ +06:52:46 FNo. Len. Field Value +06:52:46 ============================================================================ +06:52:46 [ 1] [ 4] [0200] +06:52:46 [ 2] [ 16] [1989010003167253] +06:52:46 [ 3] [ 6] [011000] +06:52:46 [ 4] [ 12] [000050000000] +06:52:46 [ 7] [ 10] [0320065242] +06:52:46 [ 11] [ 6] [666047] +06:52:46 [ 12] [ 6] [065242] +06:52:46 [ 13] [ 4] [0320] +06:52:46 [ 15] [ 4] [0320] +06:52:46 [ 18] [ 4] [6011] +06:52:46 [ 22] [ 3] [900] +06:52:46 [ 25] [ 2] [02] +06:52:46 [ 28] [ 9] [D00002000] +06:52:46 [ 32] [ 6] [621354] +06:52:46 [ 35] [ 32] [1989010003167253=000010100000774] +06:52:46 [ 37] [ 12] [507902835003] +06:52:46 [ 41] [ 8] [01007700] +06:52:46 [ 42] [ 15] [NATIVE ] +06:52:46 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +06:52:46 [ 49] [ 3] [418] +06:52:46 [ 52] [ 16] [7302EDD4DDBF9ADB] +06:52:46 ============================================================================ +06:52:46 + + +waiting on router queue for slot.... +06:52:46 Sending to : <5> +06:52:46 ============================================================================ +06:52:46 ============================================================================ +06:52:46 Slot Id : <383> +06:52:46 Transaction Type : REQUEST +06:52:46 Received From : +06:52:46 ============================================================================ +06:52:46 FNo. Len. Field Value +06:52:46 ============================================================================ +06:52:46 [ 1] [ 4] [0800] +06:52:46 [ 7] [ 10] [0319115154] +06:52:46 [ 11] [ 6] [155007] +06:52:46 [ 70] [ 3] [301] +06:52:46 ============================================================================ +06:52:46 + + +waiting on router queue for slot.... +06:52:46 Sending to : +06:52:46 ============================================================================ +06:52:46 ============================================================================ +06:52:46 Slot Id : <383> +06:52:46 Transaction Type : RESPONSE +06:52:46 Received From : +06:52:46 ============================================================================ +06:52:46 FNo. Len. Field Value +06:52:46 ============================================================================ +06:52:46 [ 1] [ 4] [0810] +06:52:46 [ 7] [ 10] [0319115154] +06:52:46 [ 11] [ 6] [155007] +06:52:46 [ 39] [ 2] [00] +06:52:46 [ 70] [ 3] [301] +06:52:46 ============================================================================ +06:52:46 Calculate Source COMM Id = 2 +06:52:46 ============================================================================ +06:52:46 + + +waiting on router queue for slot.... +06:52:47 ============================================================================ +06:52:47 Slot Id : <349> +06:52:47 Transaction Type : RESPONSE +06:52:47 Received From : +06:52:47 ============================================================================ +06:52:47 FNo. Len. Field Value +06:52:47 ============================================================================ +06:52:47 [ 1] [ 4] [0210] +06:52:47 [ 2] [ 16] [2206990000092155] +06:52:47 [ 3] [ 6] [302000] +06:52:47 [ 4] [ 12] [000000000000] +06:52:47 [ 7] [ 10] [0320065240] +06:52:47 [ 11] [ 6] [666046] +06:52:47 [ 12] [ 6] [065240] +06:52:47 [ 13] [ 4] [0320] +06:52:47 [ 15] [ 4] [0320] +06:52:47 [ 18] [ 4] [6011] +06:52:47 [ 32] [ 6] [621354] +06:52:47 [ 35] [ 32] [2206990000092155=971012614426313] +06:52:47 [ 37] [ 12] [507904119571] +06:52:47 [ 38] [ 6] [286602] +06:52:47 [ 39] [ 2] [00] +06:52:47 [ 41] [ 8] [08000800] +06:52:47 [ 49] [ 3] [418] +06:52:47 [ 54] [ 40] [2001418C0002110992002002418C000211099200] +06:52:47 ============================================================================ +06:52:47 Calculate Source COMM Id = 0 +06:52:47 ============================================================================ +06:52:47 + + +waiting on router queue for slot.... +06:52:47 ============================================================================ +06:52:47 Slot Id : <393> +06:52:47 Transaction Type : REQUEST +06:52:47 Received From : +06:52:47 ============================================================================ +06:52:47 FNo. Len. Field Value +06:52:47 ============================================================================ +06:52:47 [ 1] [ 4] [0800] +06:52:47 [ 7] [ 10] [0320140436] +06:52:47 [ 11] [ 6] [070436] +06:52:47 [ 37] [ 12] [57907070436] +06:52:47 [ 70] [ 3] [301] +06:52:47 ============================================================================ +06:52:47 + + +waiting on router queue for slot.... +06:52:47 Sending to : +06:52:47 ============================================================================ +06:52:47 ============================================================================ +06:52:47 Slot Id : <393> +06:52:47 Transaction Type : RESPONSE +06:52:47 Received From : +06:52:47 ============================================================================ +06:52:47 FNo. Len. Field Value +06:52:47 ============================================================================ +06:52:47 [ 1] [ 4] [0810] +06:52:47 [ 7] [ 10] [0320140436] +06:52:47 [ 11] [ 6] [070436] +06:52:47 [ 37] [ 12] [579070704360] +06:52:47 [ 39] [ 2] [00] +06:52:47 [ 70] [ 3] [810] +06:52:47 ============================================================================ +06:52:47 Calculate Source COMM Id = 6 +06:52:47 ============================================================================ +06:52:47 + + +waiting on router queue for slot.... +06:52:48 ============================================================================ +06:52:48 Slot Id : <413> +06:52:48 Transaction Type : RESPONSE +06:52:48 Received From : +06:52:48 ============================================================================ +06:52:48 FNo. Len. Field Value +06:52:48 ============================================================================ +06:52:48 [ 1] [ 4] [0210] +06:52:48 [ 2] [ 16] [1989010003167253] +06:52:48 [ 3] [ 6] [011000] +06:52:48 [ 4] [ 12] [000050000000] +06:52:48 [ 7] [ 10] [0320065242] +06:52:48 [ 11] [ 6] [666047] +06:52:48 [ 12] [ 6] [065242] +06:52:48 [ 13] [ 4] [0320] +06:52:48 [ 15] [ 4] [0320] +06:52:48 [ 18] [ 4] [6011] +06:52:48 [ 19] [ 3] [418] +06:52:48 [ 32] [ 6] [621354] +06:52:48 [ 37] [ 12] [507902835003] +06:52:48 [ 38] [ 6] [985289] +06:52:48 [ 39] [ 2] [00] +06:52:48 [ 41] [ 8] [01007700] +06:52:48 [ 49] [ 3] [418] +06:52:48 [ 54] [ 20] [1001418C000253410600] +06:52:48 ============================================================================ +06:52:48 Sending to : +06:52:48 ============================================================================ +06:52:48 + + +waiting on router queue for slot.... +06:52:49 ============================================================================ +06:52:49 Slot Id : <413> +06:52:49 Transaction Type : RESPONSE +06:52:49 Received From : +06:52:49 ============================================================================ +06:52:49 FNo. Len. Field Value +06:52:49 ============================================================================ +06:52:49 [ 1] [ 4] [0210] +06:52:49 [ 2] [ 16] [1989010003167253] +06:52:49 [ 3] [ 6] [011000] +06:52:49 [ 4] [ 12] [000050000000] +06:52:49 [ 7] [ 10] [0320065242] +06:52:49 [ 11] [ 6] [666047] +06:52:49 [ 12] [ 6] [065242] +06:52:49 [ 13] [ 4] [0320] +06:52:49 [ 15] [ 4] [0320] +06:52:49 [ 18] [ 4] [6011] +06:52:49 [ 19] [ 3] [418] +06:52:49 [ 32] [ 6] [621354] +06:52:49 [ 37] [ 12] [507902835003] +06:52:49 [ 38] [ 6] [985289] +06:52:49 [ 39] [ 2] [00] +06:52:49 [ 41] [ 8] [01007700] +06:52:49 [ 49] [ 3] [418] +06:52:49 [ 54] [ 20] [1001418C000253410600] +06:52:49 ============================================================================ +06:52:49 Calculate Source COMM Id = 0 +06:52:49 ============================================================================ +06:52:49 + + +waiting on router queue for slot.... +06:52:54 ============================================================================ +06:52:54 Slot Id : <397> +06:52:54 Transaction Type : REQUEST +06:52:54 Received From : +06:52:54 ============================================================================ +06:52:54 FNo. Len. Field Value +06:52:54 ============================================================================ +06:52:54 [ 1] [ 4] [0800] +06:52:54 [ 2] [ 5] [02531] +06:52:54 [ 3] [ 6] [579068] +06:52:54 [ 7] [ 10] [0319235254] +06:52:54 [ 11] [ 6] [806811] +06:52:54 [ 15] [ 10] [0319235254] +06:52:54 [ 37] [ 11] [57906806811] +06:52:54 [ 70] [ 3] [001] +06:52:54 ============================================================================ +06:52:54 + + +waiting on router queue for slot.... +06:52:54 ============================================================================ +06:52:54 Slot Id : <397> +06:52:54 Transaction Type : RESPONSE +06:52:54 Received From : +06:52:54 ============================================================================ +06:52:54 FNo. Len. Field Value +06:52:54 ============================================================================ +06:52:54 [ 1] [ 4] [0810] +06:52:54 [ 7] [ 10] [0319235254] +06:52:54 [ 11] [ 6] [806811] +06:52:54 [ 15] [ 4] [0319] +06:52:54 [ 37] [ 12] [57906806811] +06:52:54 [ 39] [ 2] [00] +06:52:54 [ 70] [ 3] [001] +06:52:54 ============================================================================ +06:52:54 Sending to : +06:52:54 ============================================================================ +06:52:54 + + +waiting on router queue for slot.... +06:52:57 ============================================================================ +06:52:57 Slot Id : <400> +06:52:57 Transaction Type : REQUEST +06:52:57 Received From : +06:52:57 ============================================================================ +06:52:57 FNo. Len. Field Value +06:52:57 ============================================================================ +06:52:57 [ 1] [ 4] [0200] +06:52:57 [ 2] [ 16] [6688990104258908] +06:52:57 [ 3] [ 6] [010000] +06:52:57 [ 4] [ 12] [000100000000] +06:52:57 [ 7] [ 10] [0320065253] +06:52:57 [ 11] [ 6] [666073] +06:52:57 [ 12] [ 6] [065253] +06:52:57 [ 13] [ 4] [0320] +06:52:57 [ 15] [ 4] [0320] +06:52:57 [ 18] [ 4] [6011] +06:52:57 [ 22] [ 3] [900] +06:52:57 [ 25] [ 2] [02] +06:52:57 [ 28] [ 9] [D00002000] +06:52:57 [ 32] [ 6] [621354] +06:52:57 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:52:57 [ 37] [ 12] [507904965352] +06:52:57 [ 41] [ 8] [15001100] +06:52:57 [ 42] [ 15] [NATIVE ] +06:52:57 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:52:57 [ 49] [ 3] [418] +06:52:57 [ 52] [ 16] [366615BCC7C78CAF] +06:52:57 ============================================================================ +06:52:57 + + +waiting on router queue for slot.... +06:52:57 Sending to : +06:52:57 ============================================================================ +06:52:57 Sending to : +06:52:57 ============================================================================ +06:52:57 ============================================================================ +06:52:57 Slot Id : <400> +06:52:57 Transaction Type : REQUEST +06:52:57 Received From : +06:52:57 ============================================================================ +06:52:57 FNo. Len. Field Value +06:52:57 ============================================================================ +06:52:57 [ 1] [ 4] [0200] +06:52:57 [ 2] [ 16] [6688990104258908] +06:52:57 [ 3] [ 6] [010000] +06:52:57 [ 4] [ 12] [000100000000] +06:52:57 [ 7] [ 10] [0320065253] +06:52:57 [ 11] [ 6] [666073] +06:52:57 [ 12] [ 6] [065253] +06:52:57 [ 13] [ 4] [0320] +06:52:57 [ 15] [ 4] [0320] +06:52:57 [ 18] [ 4] [6011] +06:52:57 [ 22] [ 3] [900] +06:52:57 [ 25] [ 2] [02] +06:52:57 [ 28] [ 9] [D00002000] +06:52:57 [ 32] [ 6] [621354] +06:52:57 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:52:57 [ 37] [ 12] [507904965352] +06:52:57 [ 41] [ 8] [15001100] +06:52:57 [ 42] [ 15] [NATIVE ] +06:52:57 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:52:57 [ 49] [ 3] [418] +06:52:57 [ 52] [ 16] [366615BCC7C78CAF] +06:52:57 ============================================================================ +06:52:57 + + +waiting on router queue for slot.... +06:52:57 Sending to : +06:52:57 ============================================================================ +06:52:57 ============================================================================ +06:52:57 Slot Id : <400> +06:52:57 Transaction Type : REQUEST +06:52:57 Received From : +06:52:57 ============================================================================ +06:52:57 FNo. Len. Field Value +06:52:57 ============================================================================ +06:52:57 [ 1] [ 4] [0200] +06:52:57 [ 2] [ 16] [6688990104258908] +06:52:57 [ 3] [ 6] [010000] +06:52:57 [ 4] [ 12] [000100000000] +06:52:57 [ 7] [ 10] [0320065253] +06:52:57 [ 11] [ 6] [666073] +06:52:57 [ 12] [ 6] [065253] +06:52:57 [ 13] [ 4] [0320] +06:52:57 [ 15] [ 4] [0320] +06:52:57 [ 18] [ 4] [6011] +06:52:57 [ 22] [ 3] [900] +06:52:57 [ 25] [ 2] [02] +06:52:57 [ 28] [ 9] [D00002000] +06:52:57 [ 32] [ 6] [621354] +06:52:57 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:52:57 [ 37] [ 12] [507904965352] +06:52:57 [ 41] [ 8] [15001100] +06:52:57 [ 42] [ 15] [NATIVE ] +06:52:57 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:52:57 [ 49] [ 3] [418] +06:52:57 [ 52] [ 16] [7BB9B1BAB124D8D1] +06:52:57 ============================================================================ +06:52:57 + + +waiting on router queue for slot.... +06:52:57 Sending to : <4> +06:52:57 ============================================================================ +06:52:58 ============================================================================ +06:52:58 Slot Id : <400> +06:52:58 Transaction Type : RESPONSE +06:52:58 Received From : +06:52:58 ============================================================================ +06:52:58 FNo. Len. Field Value +06:52:58 ============================================================================ +06:52:58 [ 1] [ 4] [0210] +06:52:58 [ 2] [ 16] [6688990104258908] +06:52:58 [ 3] [ 6] [010000] +06:52:58 [ 4] [ 12] [000100000000] +06:52:58 [ 11] [ 6] [666073] +06:52:58 [ 12] [ 6] [065253] +06:52:58 [ 15] [ 4] [0320] +06:52:58 [ 18] [ 4] [6011] +06:52:58 [ 32] [ 6] [621354] +06:52:58 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:52:58 [ 37] [ 12] [507904965352] +06:52:58 [ 38] [ 6] [282996] +06:52:58 [ 39] [ 2] [00] +06:52:58 [ 41] [ 8] [15001100] +06:52:58 [ 49] [ 3] [418] +06:52:58 [ 54] [ 20] [0002418C000356386540] +06:52:58 ============================================================================ +06:52:58 Sending to : +06:52:58 ============================================================================ +06:52:58 + + +waiting on router queue for slot.... +06:53:00 ============================================================================ +06:53:00 Slot Id : <400> +06:53:00 Transaction Type : RESPONSE +06:53:00 Received From : +06:53:00 ============================================================================ +06:53:00 FNo. Len. Field Value +06:53:00 ============================================================================ +06:53:00 [ 1] [ 4] [0210] +06:53:00 [ 2] [ 16] [6688990104258908] +06:53:00 [ 3] [ 6] [010000] +06:53:00 [ 4] [ 12] [000100000000] +06:53:00 [ 11] [ 6] [666073] +06:53:00 [ 12] [ 6] [065253] +06:53:00 [ 15] [ 4] [0320] +06:53:00 [ 18] [ 4] [6011] +06:53:00 [ 32] [ 6] [621354] +06:53:00 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:53:00 [ 37] [ 12] [507904965352] +06:53:00 [ 38] [ 6] [282996] +06:53:00 [ 39] [ 2] [00] +06:53:00 [ 41] [ 8] [15001100] +06:53:00 [ 49] [ 3] [418] +06:53:00 [ 54] [ 20] [0002418C000356386540] +06:53:00 ============================================================================ +06:53:00 Calculate Source COMM Id = 0 +06:53:00 ============================================================================ +06:53:00 + + +waiting on router queue for slot.... +06:53:01 ============================================================================ +06:53:01 Slot Id : <414> +06:53:01 Transaction Type : REQUEST +06:53:01 Received From : +06:53:01 ============================================================================ +06:53:01 FNo. Len. Field Value +06:53:01 ============================================================================ +06:53:01 [ 1] [ 4] [0800] +06:53:01 [ 7] [ 10] [0319115210] +06:53:01 [ 11] [ 6] [155008] +06:53:01 [ 70] [ 3] [301] +06:53:01 ============================================================================ +06:53:01 + + +waiting on router queue for slot.... +06:53:01 Sending to : +06:53:01 ============================================================================ +06:53:01 ============================================================================ +06:53:01 Slot Id : <414> +06:53:01 Transaction Type : RESPONSE +06:53:01 Received From : +06:53:01 ============================================================================ +06:53:01 FNo. Len. Field Value +06:53:01 ============================================================================ +06:53:01 [ 1] [ 4] [0810] +06:53:01 [ 7] [ 10] [0319115210] +06:53:01 [ 11] [ 6] [155008] +06:53:01 [ 39] [ 2] [00] +06:53:01 [ 70] [ 3] [301] +06:53:01 ============================================================================ +06:53:01 Calculate Source COMM Id = 2 +06:53:01 ============================================================================ +06:53:01 + + +waiting on router queue for slot.... +06:53:12 ============================================================================ +06:53:12 Slot Id : <399> +06:53:12 Transaction Type : REQUEST +06:53:12 Received From : +06:53:12 ============================================================================ +06:53:12 FNo. Len. Field Value +06:53:12 ============================================================================ +06:53:12 [ 1] [ 4] [0800] +06:53:12 [ 7] [ 10] [0319115221] +06:53:12 [ 11] [ 6] [155009] +06:53:12 [ 70] [ 3] [301] +06:53:12 ============================================================================ +06:53:12 + + +waiting on router queue for slot.... +06:53:12 Sending to : +06:53:12 ============================================================================ +06:53:12 ============================================================================ +06:53:12 Slot Id : <399> +06:53:12 Transaction Type : RESPONSE +06:53:12 Received From : +06:53:12 ============================================================================ +06:53:12 FNo. Len. Field Value +06:53:12 ============================================================================ +06:53:12 [ 1] [ 4] [0810] +06:53:12 [ 7] [ 10] [0319115221] +06:53:12 [ 11] [ 6] [155009] +06:53:12 [ 39] [ 2] [00] +06:53:12 [ 70] [ 3] [301] +06:53:12 ============================================================================ +06:53:12 Calculate Source COMM Id = 2 +06:53:12 ============================================================================ +06:53:12 + + +waiting on router queue for slot.... +06:53:22 ============================================================================ +06:53:22 Slot Id : <394> +06:53:22 Transaction Type : REQUEST +06:53:22 Received From : +06:53:22 ============================================================================ +06:53:22 FNo. Len. Field Value +06:53:22 ============================================================================ +06:53:22 [ 1] [ 4] [0800] +06:53:22 [ 7] [ 10] [0319115231] +06:53:22 [ 11] [ 6] [155010] +06:53:22 [ 70] [ 3] [301] +06:53:22 ============================================================================ +06:53:22 + + +waiting on router queue for slot.... +06:53:22 Sending to : +06:53:22 ============================================================================ +06:53:22 ============================================================================ +06:53:22 Slot Id : <394> +06:53:22 Transaction Type : RESPONSE +06:53:22 Received From : +06:53:22 ============================================================================ +06:53:22 FNo. Len. Field Value +06:53:22 ============================================================================ +06:53:22 [ 1] [ 4] [0810] +06:53:22 [ 7] [ 10] [0319115231] +06:53:22 [ 11] [ 6] [155010] +06:53:22 [ 39] [ 2] [00] +06:53:22 [ 70] [ 3] [301] +06:53:22 ============================================================================ +06:53:22 Calculate Source COMM Id = 2 +06:53:22 ============================================================================ +06:53:22 + + +waiting on router queue for slot.... +06:53:33 ============================================================================ +06:53:33 Slot Id : <368> +06:53:33 Transaction Type : REQUEST +06:53:33 Received From : +06:53:33 ============================================================================ +06:53:33 FNo. Len. Field Value +06:53:33 ============================================================================ +06:53:33 [ 1] [ 4] [0800] +06:53:33 [ 7] [ 10] [0319115241] +06:53:33 [ 11] [ 6] [155011] +06:53:33 [ 70] [ 3] [301] +06:53:33 ============================================================================ +06:53:33 + + +waiting on router queue for slot.... +06:53:33 Sending to : +06:53:33 ============================================================================ +06:53:33 ============================================================================ +06:53:33 Slot Id : <368> +06:53:33 Transaction Type : RESPONSE +06:53:33 Received From : +06:53:33 ============================================================================ +06:53:33 FNo. Len. Field Value +06:53:33 ============================================================================ +06:53:33 [ 1] [ 4] [0810] +06:53:33 [ 7] [ 10] [0319115241] +06:53:33 [ 11] [ 6] [155011] +06:53:33 [ 39] [ 2] [00] +06:53:33 [ 70] [ 3] [301] +06:53:33 ============================================================================ +06:53:33 Calculate Source COMM Id = 2 +06:53:33 ============================================================================ +06:53:33 + + +waiting on router queue for slot.... +06:53:35 ============================================================================ +06:53:35 Slot Id : <387> +06:53:35 Transaction Type : REQUEST +06:53:35 Received From : +06:53:35 ============================================================================ +06:53:35 FNo. Len. Field Value +06:53:35 ============================================================================ +06:53:35 [ 1] [ 4] [0200] +06:53:35 [ 2] [ 16] [1989010003167253] +06:53:35 [ 3] [ 6] [301000] +06:53:35 [ 4] [ 12] [000000000000] +06:53:35 [ 7] [ 10] [0320065332] +06:53:35 [ 11] [ 6] [666150] +06:53:35 [ 12] [ 6] [065332] +06:53:35 [ 13] [ 4] [0320] +06:53:35 [ 15] [ 4] [0320] +06:53:35 [ 18] [ 4] [6011] +06:53:35 [ 22] [ 3] [900] +06:53:35 [ 25] [ 2] [02] +06:53:35 [ 28] [ 9] [D00000000] +06:53:35 [ 32] [ 6] [621354] +06:53:35 [ 35] [ 32] [1989010003167253=000010100000774] +06:53:35 [ 37] [ 12] [507902835004] +06:53:35 [ 41] [ 8] [01007700] +06:53:35 [ 42] [ 15] [NATIVE ] +06:53:35 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +06:53:35 [ 49] [ 3] [418] +06:53:35 [ 52] [ 16] [933BD6114746E12F] +06:53:35 ============================================================================ +06:53:35 + + +waiting on router queue for slot.... +06:53:35 Sending to : +06:53:35 ============================================================================ +06:53:35 Sending to : +06:53:35 ============================================================================ +06:53:36 ============================================================================ +06:53:36 Slot Id : <387> +06:53:36 Transaction Type : REQUEST +06:53:36 Received From : +06:53:36 ============================================================================ +06:53:36 FNo. Len. Field Value +06:53:36 ============================================================================ +06:53:36 [ 1] [ 4] [0200] +06:53:36 [ 2] [ 16] [1989010003167253] +06:53:36 [ 3] [ 6] [301000] +06:53:36 [ 4] [ 12] [000000000000] +06:53:36 [ 7] [ 10] [0320065332] +06:53:36 [ 11] [ 6] [666150] +06:53:36 [ 12] [ 6] [065332] +06:53:36 [ 13] [ 4] [0320] +06:53:36 [ 15] [ 4] [0320] +06:53:36 [ 18] [ 4] [6011] +06:53:36 [ 22] [ 3] [900] +06:53:36 [ 25] [ 2] [02] +06:53:36 [ 28] [ 9] [D00000000] +06:53:36 [ 32] [ 6] [621354] +06:53:36 [ 35] [ 32] [1989010003167253=000010100000774] +06:53:36 [ 37] [ 12] [507902835004] +06:53:36 [ 41] [ 8] [01007700] +06:53:36 [ 42] [ 15] [NATIVE ] +06:53:36 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +06:53:36 [ 49] [ 3] [418] +06:53:36 [ 52] [ 16] [933BD6114746E12F] +06:53:36 ============================================================================ +06:53:36 + + +waiting on router queue for slot.... +06:53:36 Sending to : +06:53:36 ============================================================================ +06:53:36 ============================================================================ +06:53:36 Slot Id : <387> +06:53:36 Transaction Type : REQUEST +06:53:36 Received From : +06:53:36 ============================================================================ +06:53:36 FNo. Len. Field Value +06:53:36 ============================================================================ +06:53:36 [ 1] [ 4] [0200] +06:53:36 [ 2] [ 16] [1989010003167253] +06:53:36 [ 3] [ 6] [301000] +06:53:36 [ 4] [ 12] [000000000000] +06:53:36 [ 7] [ 10] [0320065332] +06:53:36 [ 11] [ 6] [666150] +06:53:36 [ 12] [ 6] [065332] +06:53:36 [ 13] [ 4] [0320] +06:53:36 [ 15] [ 4] [0320] +06:53:36 [ 18] [ 4] [6011] +06:53:36 [ 22] [ 3] [900] +06:53:36 [ 25] [ 2] [02] +06:53:36 [ 28] [ 9] [D00000000] +06:53:36 [ 32] [ 6] [621354] +06:53:36 [ 35] [ 32] [1989010003167253=000010100000774] +06:53:36 [ 37] [ 12] [507902835004] +06:53:36 [ 41] [ 8] [01007700] +06:53:36 [ 42] [ 15] [NATIVE ] +06:53:36 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +06:53:36 [ 49] [ 3] [418] +06:53:36 [ 52] [ 16] [7302EDD4DDBF9ADB] +06:53:36 ============================================================================ +06:53:36 + + +waiting on router queue for slot.... +06:53:36 Sending to : <5> +06:53:36 ============================================================================ +06:53:37 ============================================================================ +06:53:37 Slot Id : <387> +06:53:37 Transaction Type : RESPONSE +06:53:37 Received From : +06:53:37 ============================================================================ +06:53:37 FNo. Len. Field Value +06:53:37 ============================================================================ +06:53:37 [ 1] [ 4] [0210] +06:53:37 [ 2] [ 16] [1989010003167253] +06:53:37 [ 3] [ 6] [301000] +06:53:37 [ 4] [ 12] [000000000000] +06:53:37 [ 7] [ 10] [0320065332] +06:53:37 [ 11] [ 6] [666150] +06:53:37 [ 12] [ 6] [065332] +06:53:37 [ 13] [ 4] [0320] +06:53:37 [ 15] [ 4] [0320] +06:53:37 [ 18] [ 4] [6011] +06:53:37 [ 19] [ 3] [418] +06:53:37 [ 32] [ 6] [621354] +06:53:37 [ 37] [ 12] [507902835004] +06:53:37 [ 38] [ 6] [595342] +06:53:37 [ 39] [ 2] [00] +06:53:37 [ 41] [ 8] [01007700] +06:53:37 [ 49] [ 3] [418] +06:53:37 [ 54] [ 20] [1001418C000253410600] +06:53:37 ============================================================================ +06:53:37 Sending to : +06:53:37 ============================================================================ +06:53:37 + + +waiting on router queue for slot.... +06:53:38 ============================================================================ +06:53:38 Slot Id : <387> +06:53:38 Transaction Type : RESPONSE +06:53:38 Received From : +06:53:38 ============================================================================ +06:53:38 FNo. Len. Field Value +06:53:38 ============================================================================ +06:53:38 [ 1] [ 4] [0210] +06:53:38 [ 2] [ 16] [1989010003167253] +06:53:38 [ 3] [ 6] [301000] +06:53:38 [ 4] [ 12] [000000000000] +06:53:38 [ 7] [ 10] [0320065332] +06:53:38 [ 11] [ 6] [666150] +06:53:38 [ 12] [ 6] [065332] +06:53:38 [ 13] [ 4] [0320] +06:53:38 [ 15] [ 4] [0320] +06:53:38 [ 18] [ 4] [6011] +06:53:38 [ 19] [ 3] [418] +06:53:38 [ 32] [ 6] [621354] +06:53:38 [ 37] [ 12] [507902835004] +06:53:38 [ 38] [ 6] [595342] +06:53:38 [ 39] [ 2] [00] +06:53:38 [ 41] [ 8] [01007700] +06:53:38 [ 49] [ 3] [418] +06:53:38 [ 54] [ 20] [1001418C000253410600] +06:53:38 ============================================================================ +06:53:38 Calculate Source COMM Id = 0 +06:53:38 ============================================================================ +06:53:38 + + +waiting on router queue for slot.... +06:53:44 ============================================================================ +06:53:44 Slot Id : <372> +06:53:44 Transaction Type : REQUEST +06:53:44 Received From : +06:53:44 ============================================================================ +06:53:44 FNo. Len. Field Value +06:53:44 ============================================================================ +06:53:44 [ 1] [ 4] [0800] +06:53:44 [ 7] [ 10] [0319115252] +06:53:44 [ 11] [ 6] [155012] +06:53:44 [ 70] [ 3] [301] +06:53:44 ============================================================================ +06:53:44 + + +waiting on router queue for slot.... +06:53:44 Sending to : +06:53:44 ============================================================================ +06:53:44 ============================================================================ +06:53:44 Slot Id : <372> +06:53:44 Transaction Type : RESPONSE +06:53:44 Received From : +06:53:44 ============================================================================ +06:53:44 FNo. Len. Field Value +06:53:44 ============================================================================ +06:53:44 [ 1] [ 4] [0810] +06:53:44 [ 7] [ 10] [0319115252] +06:53:44 [ 11] [ 6] [155012] +06:53:44 [ 39] [ 2] [00] +06:53:44 [ 70] [ 3] [301] +06:53:44 ============================================================================ +06:53:44 Calculate Source COMM Id = 2 +06:53:44 ============================================================================ +06:53:44 + + +waiting on router queue for slot.... +06:53:52 ============================================================================ +06:53:52 Slot Id : <418> +06:53:52 Transaction Type : REQUEST +06:53:52 Received From : +06:53:52 ============================================================================ +06:53:52 FNo. Len. Field Value +06:53:52 ============================================================================ +06:53:52 [ 1] [ 4] [0800] +06:53:52 [ 7] [ 10] [0320140541] +06:53:52 [ 11] [ 6] [070541] +06:53:52 [ 37] [ 12] [57907070541] +06:53:52 [ 70] [ 3] [301] +06:53:52 ============================================================================ +06:53:52 + + +waiting on router queue for slot.... +06:53:52 Sending to : +06:53:52 ============================================================================ +06:53:52 ============================================================================ +06:53:52 Slot Id : <418> +06:53:52 Transaction Type : RESPONSE +06:53:52 Received From : +06:53:52 ============================================================================ +06:53:52 FNo. Len. Field Value +06:53:52 ============================================================================ +06:53:52 [ 1] [ 4] [0810] +06:53:52 [ 7] [ 10] [0320140541] +06:53:52 [ 11] [ 6] [070541] +06:53:52 [ 37] [ 12] [579070705410] +06:53:52 [ 39] [ 2] [00] +06:53:52 [ 70] [ 3] [810] +06:53:52 ============================================================================ +06:53:52 Calculate Source COMM Id = 6 +06:53:52 ============================================================================ +06:53:52 + + +waiting on router queue for slot.... +06:53:56 ============================================================================ +06:53:56 Slot Id : <380> +06:53:56 Transaction Type : REQUEST +06:53:56 Received From : +06:53:56 ============================================================================ +06:53:56 FNo. Len. Field Value +06:53:56 ============================================================================ +06:53:56 [ 1] [ 4] [0200] +06:53:56 [ 2] [ 16] [2206990000092155] +06:53:56 [ 3] [ 6] [302000] +06:53:56 [ 4] [ 12] [000000000000] +06:53:56 [ 7] [ 10] [0320065352] +06:53:56 [ 11] [ 6] [666184] +06:53:56 [ 12] [ 6] [065352] +06:53:56 [ 13] [ 4] [0320] +06:53:56 [ 15] [ 4] [0320] +06:53:56 [ 18] [ 4] [6011] +06:53:56 [ 22] [ 3] [900] +06:53:56 [ 25] [ 2] [02] +06:53:56 [ 28] [ 9] [D00000000] +06:53:56 [ 32] [ 6] [621354] +06:53:56 [ 35] [ 32] [2206990000092155=971012614426313] +06:53:56 [ 37] [ 12] [507904119572] +06:53:56 [ 41] [ 8] [08000800] +06:53:56 [ 42] [ 15] [NATIVE ] +06:53:56 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:53:56 [ 49] [ 3] [418] +06:53:56 [ 52] [ 16] [B1A2E93DB6E8A815] +06:53:56 ============================================================================ +06:53:56 + + +waiting on router queue for slot.... +06:53:56 Sending to : +06:53:56 ============================================================================ +06:53:56 Sending to : +06:53:56 ============================================================================ +06:53:56 ============================================================================ +06:53:56 Slot Id : <406> +06:53:56 Transaction Type : REQUEST +06:53:56 Received From : +06:53:56 ============================================================================ +06:53:56 FNo. Len. Field Value +06:53:56 ============================================================================ +06:53:56 [ 1] [ 4] [0800] +06:53:56 [ 2] [ 5] [02531] +06:53:56 [ 3] [ 6] [579068] +06:53:56 [ 7] [ 10] [0319235356] +06:53:56 [ 11] [ 6] [806812] +06:53:56 [ 15] [ 10] [0319235356] +06:53:56 [ 37] [ 11] [57906806812] +06:53:56 [ 70] [ 3] [001] +06:53:56 ============================================================================ +06:53:56 + + +waiting on router queue for slot.... +06:53:56 ============================================================================ +06:53:56 Slot Id : <406> +06:53:56 Transaction Type : RESPONSE +06:53:56 Received From : +06:53:56 ============================================================================ +06:53:56 FNo. Len. Field Value +06:53:56 ============================================================================ +06:53:56 [ 1] [ 4] [0810] +06:53:56 [ 7] [ 10] [0319235356] +06:53:56 [ 11] [ 6] [806812] +06:53:56 [ 15] [ 4] [0319] +06:53:56 [ 37] [ 12] [57906806812] +06:53:56 [ 39] [ 2] [00] +06:53:56 [ 70] [ 3] [001] +06:53:56 ============================================================================ +06:53:56 Sending to : +06:53:56 ============================================================================ +06:53:56 + + +waiting on router queue for slot.... +06:53:56 ============================================================================ +06:53:56 Slot Id : <380> +06:53:56 Transaction Type : REQUEST +06:53:56 Received From : +06:53:56 ============================================================================ +06:53:56 FNo. Len. Field Value +06:53:56 ============================================================================ +06:53:56 [ 1] [ 4] [0200] +06:53:56 [ 2] [ 16] [2206990000092155] +06:53:56 [ 3] [ 6] [302000] +06:53:56 [ 4] [ 12] [000000000000] +06:53:56 [ 7] [ 10] [0320065352] +06:53:56 [ 11] [ 6] [666184] +06:53:56 [ 12] [ 6] [065352] +06:53:56 [ 13] [ 4] [0320] +06:53:56 [ 15] [ 4] [0320] +06:53:56 [ 18] [ 4] [6011] +06:53:56 [ 22] [ 3] [900] +06:53:56 [ 25] [ 2] [02] +06:53:56 [ 28] [ 9] [D00000000] +06:53:56 [ 32] [ 6] [621354] +06:53:56 [ 35] [ 32] [2206990000092155=971012614426313] +06:53:56 [ 37] [ 12] [507904119572] +06:53:56 [ 41] [ 8] [08000800] +06:53:56 [ 42] [ 15] [NATIVE ] +06:53:56 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:53:56 [ 49] [ 3] [418] +06:53:56 [ 52] [ 16] [B1A2E93DB6E8A815] +06:53:56 ============================================================================ +06:53:56 + + +waiting on router queue for slot.... +06:53:56 Sending to : +06:53:56 ============================================================================ +06:53:56 ============================================================================ +06:53:56 Slot Id : <380> +06:53:56 Transaction Type : REQUEST +06:53:56 Received From : +06:53:56 ============================================================================ +06:53:56 FNo. Len. Field Value +06:53:56 ============================================================================ +06:53:56 [ 1] [ 4] [0200] +06:53:56 [ 2] [ 16] [2206990000092155] +06:53:56 [ 3] [ 6] [302000] +06:53:56 [ 4] [ 12] [000000000000] +06:53:56 [ 7] [ 10] [0320065352] +06:53:56 [ 11] [ 6] [666184] +06:53:56 [ 12] [ 6] [065352] +06:53:56 [ 13] [ 4] [0320] +06:53:56 [ 15] [ 4] [0320] +06:53:56 [ 18] [ 4] [6011] +06:53:56 [ 22] [ 3] [900] +06:53:56 [ 25] [ 2] [02] +06:53:56 [ 28] [ 9] [D00000000] +06:53:56 [ 32] [ 6] [621354] +06:53:56 [ 35] [ 32] [2206990000092155=971012614426313] +06:53:56 [ 37] [ 12] [507904119572] +06:53:56 [ 41] [ 8] [08000800] +06:53:56 [ 42] [ 15] [NATIVE ] +06:53:56 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +06:53:56 [ 49] [ 3] [418] +06:53:56 [ 52] [ 16] [0686A65E994241DB] +06:53:56 ============================================================================ +06:53:56 + + +waiting on router queue for slot.... +06:53:56 Sending to : <1> +06:53:56 ============================================================================ +06:53:57 ============================================================================ +06:53:57 Slot Id : <380> +06:53:57 Transaction Type : RESPONSE +06:53:57 Received From : +06:53:57 ============================================================================ +06:53:57 FNo. Len. Field Value +06:53:57 ============================================================================ +06:53:57 [ 1] [ 4] [0210] +06:53:57 [ 2] [ 16] [2206990000092155] +06:53:57 [ 3] [ 6] [302000] +06:53:57 [ 4] [ 12] [000000000000] +06:53:57 [ 7] [ 10] [0320065352] +06:53:57 [ 11] [ 6] [666184] +06:53:57 [ 12] [ 6] [065352] +06:53:57 [ 13] [ 4] [0320] +06:53:57 [ 15] [ 4] [0320] +06:53:57 [ 18] [ 4] [6011] +06:53:57 [ 32] [ 6] [621354] +06:53:57 [ 35] [ 32] [2206990000092155=971012614426313] +06:53:57 [ 37] [ 12] [507904119572] +06:53:57 [ 38] [ 6] [189860] +06:53:57 [ 39] [ 2] [00] +06:53:57 [ 41] [ 8] [08000800] +06:53:57 [ 49] [ 3] [418] +06:53:57 [ 54] [ 40] [2001418C0002110992002002418C000211099200] +06:53:57 ============================================================================ +06:53:57 Sending to : +06:53:57 ============================================================================ +06:53:57 + + +waiting on router queue for slot.... +06:53:59 ============================================================================ +06:53:59 Slot Id : <380> +06:53:59 Transaction Type : RESPONSE +06:53:59 Received From : +06:53:59 ============================================================================ +06:53:59 FNo. Len. Field Value +06:53:59 ============================================================================ +06:53:59 [ 1] [ 4] [0210] +06:53:59 [ 2] [ 16] [2206990000092155] +06:53:59 [ 3] [ 6] [302000] +06:53:59 [ 4] [ 12] [000000000000] +06:53:59 [ 7] [ 10] [0320065352] +06:53:59 [ 11] [ 6] [666184] +06:53:59 [ 12] [ 6] [065352] +06:53:59 [ 13] [ 4] [0320] +06:53:59 [ 15] [ 4] [0320] +06:53:59 [ 18] [ 4] [6011] +06:53:59 [ 32] [ 6] [621354] +06:53:59 [ 35] [ 32] [2206990000092155=971012614426313] +06:53:59 [ 37] [ 12] [507904119572] +06:53:59 [ 38] [ 6] [189860] +06:53:59 [ 39] [ 2] [00] +06:53:59 [ 41] [ 8] [08000800] +06:53:59 [ 49] [ 3] [418] +06:53:59 [ 54] [ 40] [2001418C0002110992002002418C000211099200] +06:53:59 ============================================================================ +06:53:59 Calculate Source COMM Id = 0 +06:53:59 ============================================================================ +06:53:59 + + +waiting on router queue for slot.... +06:53:59 ============================================================================ +06:53:59 Slot Id : <419> +06:53:59 Transaction Type : REQUEST +06:53:59 Received From : +06:53:59 ============================================================================ +06:53:59 FNo. Len. Field Value +06:53:59 ============================================================================ +06:53:59 [ 1] [ 4] [0800] +06:53:59 [ 7] [ 10] [0319115307] +06:53:59 [ 11] [ 6] [155013] +06:53:59 [ 70] [ 3] [301] +06:53:59 ============================================================================ +06:53:59 + + +waiting on router queue for slot.... +06:53:59 Sending to : +06:53:59 ============================================================================ +06:53:59 ============================================================================ +06:53:59 Slot Id : <419> +06:53:59 Transaction Type : RESPONSE +06:53:59 Received From : +06:53:59 ============================================================================ +06:53:59 FNo. Len. Field Value +06:53:59 ============================================================================ +06:53:59 [ 1] [ 4] [0810] +06:53:59 [ 7] [ 10] [0319115307] +06:53:59 [ 11] [ 6] [155013] +06:53:59 [ 39] [ 2] [00] +06:53:59 [ 70] [ 3] [301] +06:53:59 ============================================================================ +06:53:59 Calculate Source COMM Id = 2 +06:53:59 ============================================================================ +06:53:59 + + +waiting on router queue for slot.... +06:54:00 ============================================================================ +06:54:00 Slot Id : <411> +06:54:00 Transaction Type : REQUEST +06:54:00 Received From : +06:54:00 ============================================================================ +06:54:00 FNo. Len. Field Value +06:54:00 ============================================================================ +06:54:00 [ 1] [ 4] [0200] +06:54:00 [ 2] [ 16] [6688990104258908] +06:54:00 [ 3] [ 6] [010000] +06:54:00 [ 4] [ 12] [000100000000] +06:54:00 [ 7] [ 10] [0320065356] +06:54:00 [ 11] [ 6] [666192] +06:54:00 [ 12] [ 6] [065356] +06:54:00 [ 13] [ 4] [0320] +06:54:00 [ 15] [ 4] [0320] +06:54:00 [ 18] [ 4] [6011] +06:54:00 [ 22] [ 3] [900] +06:54:00 [ 25] [ 2] [02] +06:54:00 [ 28] [ 9] [D00002000] +06:54:00 [ 32] [ 6] [621354] +06:54:00 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:54:00 [ 37] [ 12] [507904965354] +06:54:00 [ 41] [ 8] [15001100] +06:54:00 [ 42] [ 15] [NATIVE ] +06:54:00 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:54:00 [ 49] [ 3] [418] +06:54:00 [ 52] [ 16] [366615BCC7C78CAF] +06:54:00 ============================================================================ +06:54:00 + + +waiting on router queue for slot.... +06:54:00 Sending to : +06:54:00 ============================================================================ +06:54:00 Sending to : +06:54:00 ============================================================================ +06:54:00 ============================================================================ +06:54:00 Slot Id : <411> +06:54:00 Transaction Type : REQUEST +06:54:00 Received From : +06:54:00 ============================================================================ +06:54:00 FNo. Len. Field Value +06:54:00 ============================================================================ +06:54:00 [ 1] [ 4] [0200] +06:54:00 [ 2] [ 16] [6688990104258908] +06:54:00 [ 3] [ 6] [010000] +06:54:00 [ 4] [ 12] [000100000000] +06:54:00 [ 7] [ 10] [0320065356] +06:54:00 [ 11] [ 6] [666192] +06:54:00 [ 12] [ 6] [065356] +06:54:00 [ 13] [ 4] [0320] +06:54:00 [ 15] [ 4] [0320] +06:54:00 [ 18] [ 4] [6011] +06:54:00 [ 22] [ 3] [900] +06:54:00 [ 25] [ 2] [02] +06:54:00 [ 28] [ 9] [D00002000] +06:54:00 [ 32] [ 6] [621354] +06:54:00 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:54:00 [ 37] [ 12] [507904965354] +06:54:00 [ 41] [ 8] [15001100] +06:54:00 [ 42] [ 15] [NATIVE ] +06:54:00 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:54:00 [ 49] [ 3] [418] +06:54:00 [ 52] [ 16] [366615BCC7C78CAF] +06:54:00 ============================================================================ +06:54:00 + + +waiting on router queue for slot.... +06:54:00 Sending to : +06:54:00 ============================================================================ +06:54:00 ============================================================================ +06:54:00 Slot Id : <411> +06:54:00 Transaction Type : REQUEST +06:54:00 Received From : +06:54:00 ============================================================================ +06:54:00 FNo. Len. Field Value +06:54:00 ============================================================================ +06:54:00 [ 1] [ 4] [0200] +06:54:00 [ 2] [ 16] [6688990104258908] +06:54:00 [ 3] [ 6] [010000] +06:54:00 [ 4] [ 12] [000100000000] +06:54:00 [ 7] [ 10] [0320065356] +06:54:00 [ 11] [ 6] [666192] +06:54:00 [ 12] [ 6] [065356] +06:54:00 [ 13] [ 4] [0320] +06:54:00 [ 15] [ 4] [0320] +06:54:00 [ 18] [ 4] [6011] +06:54:00 [ 22] [ 3] [900] +06:54:00 [ 25] [ 2] [02] +06:54:00 [ 28] [ 9] [D00002000] +06:54:00 [ 32] [ 6] [621354] +06:54:00 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:54:00 [ 37] [ 12] [507904965354] +06:54:00 [ 41] [ 8] [15001100] +06:54:00 [ 42] [ 15] [NATIVE ] +06:54:00 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +06:54:00 [ 49] [ 3] [418] +06:54:00 [ 52] [ 16] [7BB9B1BAB124D8D1] +06:54:00 ============================================================================ +06:54:00 + + +waiting on router queue for slot.... +06:54:00 Sending to : <4> +06:54:00 ============================================================================ +06:54:01 ============================================================================ +06:54:01 Slot Id : <411> +06:54:01 Transaction Type : RESPONSE +06:54:01 Received From : +06:54:01 ============================================================================ +06:54:01 FNo. Len. Field Value +06:54:01 ============================================================================ +06:54:01 [ 1] [ 4] [0210] +06:54:01 [ 2] [ 16] [6688990104258908] +06:54:01 [ 3] [ 6] [010000] +06:54:01 [ 4] [ 12] [000100000000] +06:54:01 [ 7] [ 10] [0320065356] +06:54:01 [ 11] [ 6] [666192] +06:54:01 [ 12] [ 6] [065356] +06:54:01 [ 13] [ 4] [0320] +06:54:01 [ 15] [ 4] [0320] +06:54:01 [ 18] [ 4] [6011] +06:54:01 [ 22] [ 3] [021] +06:54:01 [ 32] [ 6] [621354] +06:54:01 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:54:01 [ 37] [ 12] [507904965354] +06:54:01 [ 39] [ 2] [65] +06:54:01 [ 41] [ 8] [15001100] +06:54:01 [ 49] [ 3] [418] +06:54:01 ============================================================================ +06:54:01 Sending to : +06:54:01 ============================================================================ +06:54:01 + + +waiting on router queue for slot.... +06:54:02 ============================================================================ +06:54:02 Slot Id : <411> +06:54:02 Transaction Type : RESPONSE +06:54:02 Received From : +06:54:02 ============================================================================ +06:54:02 FNo. Len. Field Value +06:54:02 ============================================================================ +06:54:02 [ 1] [ 4] [0210] +06:54:02 [ 2] [ 16] [6688990104258908] +06:54:02 [ 3] [ 6] [010000] +06:54:02 [ 4] [ 12] [000100000000] +06:54:02 [ 7] [ 10] [0320065356] +06:54:02 [ 11] [ 6] [666192] +06:54:02 [ 12] [ 6] [065356] +06:54:02 [ 13] [ 4] [0320] +06:54:02 [ 15] [ 4] [0320] +06:54:02 [ 18] [ 4] [6011] +06:54:02 [ 22] [ 3] [021] +06:54:02 [ 32] [ 6] [621354] +06:54:02 [ 35] [ 37] [6688990104258908=43031231890823900000] +06:54:02 [ 37] [ 12] [507904965354] +06:54:02 [ 39] [ 2] [65] +06:54:02 [ 41] [ 8] [15001100] +06:54:02 [ 49] [ 3] [418] +06:54:02 ============================================================================ +06:54:02 Calculate Source COMM Id = 0 +06:54:02 ============================================================================ +06:54:02 + + +waiting on router queue for slot.... +06:54:08 ============================================================================ +06:54:08 Slot Id : <407> +06:54:08 Transaction Type : REQUEST +06:54:08 Received From : +06:54:08 ============================================================================ +06:54:08 FNo. Len. Field Value +06:54:08 ============================================================================ +06:54:08 [ 1] [ 4] [0200] +06:54:08 [ 2] [ 16] [6688990102982806] +06:54:08 [ 3] [ 6] [010000] +06:54:08 [ 4] [ 12] [000100000000] +06:54:08 [ 7] [ 10] [0320065405] +06:54:08 [ 11] [ 6] [666205] +06:54:08 [ 12] [ 6] [065405] +06:54:08 [ 13] [ 4] [0320] +06:54:08 [ 15] [ 4] [0320] +06:54:08 [ 18] [ 4] [6011] +06:54:08 [ 22] [ 3] [900] +06:54:08 [ 25] [ 2] [02] +06:54:08 [ 28] [ 9] [D00002000] +06:54:08 [ 32] [ 6] [621354] +06:54:08 [ 35] [ 37] [6688990102982806=42111231280639700000] +06:54:08 [ 37] [ 12] [507904393630] +06:54:08 [ 41] [ 8] [03003800] +06:54:08 [ 42] [ 15] [NATIVE ] +06:54:08 [ 43] [ 40] [Commercial Industry DIV KaisonephomvLAO] +06:54:08 [ 49] [ 3] [418] +06:54:08 [ 52] [ 16] [4C3308C6B77D070E] +06:54:08 ============================================================================ +06:54:08 + + +waiting on router queue for slot.... +06:54:08 Sending to : +06:54:08 ============================================================================ +06:54:08 Sending to : +06:54:08 ============================================================================ +06:54:08 ============================================================================ +06:54:08 Slot Id : <407> +06:54:08 Transaction Type : REQUEST +06:54:08 Received From : +06:54:08 ============================================================================ +06:54:08 FNo. Len. Field Value +06:54:08 ============================================================================ +06:54:08 [ 1] [ 4] [0200] +06:54:08 [ 2] [ 16] [6688990102982806] +06:54:08 [ 3] [ 6] [010000] +06:54:08 [ 4] [ 12] [000100000000] +06:54:08 [ 7] [ 10] [0320065405] +06:54:08 [ 11] [ 6] [666205] +06:54:08 [ 12] [ 6] [065405] +06:54:08 [ 13] [ 4] [0320] +06:54:08 [ 15] [ 4] [0320] +06:54:08 [ 18] [ 4] [6011] +06:54:08 [ 22] [ 3] [900] +06:54:08 [ 25] [ 2] [02] +06:54:08 [ 28] [ 9] [D00002000] +06:54:08 [ 32] [ 6] [621354] +06:54:08 [ 35] [ 37] [6688990102982806=42111231280639700000] +06:54:08 [ 37] [ 12] [507904393630] +06:54:08 [ 41] [ 8] [03003800] +06:54:08 [ 42] [ 15] [NATIVE ] +06:54:08 [ 43] [ 40] [Commercial Industry DIV KaisonephomvLAO] +06:54:08 [ 49] [ 3] [418] +06:54:08 [ 52] [ 16] [4C3308C6B77D070E] +06:54:08 ============================================================================ +06:54:08 + + +waiting on router queue for slot.... +06:54:08 Sending to : +06:54:08 ============================================================================ +06:54:08 ============================================================================ +06:54:08 Slot Id : <407> +06:54:08 Transaction Type : REQUEST +06:54:08 Received From : +06:54:08 ============================================================================ +06:54:08 FNo. Len. Field Value +06:54:08 ============================================================================ +06:54:08 [ 1] [ 4] [0200] +06:54:08 [ 2] [ 16] [6688990102982806] +06:54:08 [ 3] [ 6] [010000] +06:54:08 [ 4] [ 12] [000100000000] +06:54:08 [ 7] [ 10] [0320065405] +06:54:08 [ 11] [ 6] [666205] +06:54:08 [ 12] [ 6] [065405] +06:54:08 [ 13] [ 4] [0320] +06:54:08 [ 15] [ 4] [0320] +06:54:08 [ 18] [ 4] [6011] +06:54:08 [ 22] [ 3] [900] +06:54:08 [ 25] [ 2] [02] +06:54:08 [ 28] [ 9] [D00002000] +06:54:08 [ 32] [ 6] [621354] +06:54:08 [ 35] [ 37] [6688990102982806=42111231280639700000] +06:54:08 [ 37] [ 12] [507904393630] +06:54:08 [ 41] [ 8] [03003800] +06:54:08 [ 42] [ 15] [NATIVE ] +06:54:08 [ 43] [ 40] [Commercial Industry DIV KaisonephomvLAO] +06:54:08 [ 49] [ 3] [418] +06:54:08 [ 52] [ 16] [FC30DF683BF48005] +06:54:08 ============================================================================ +06:54:08 + + +waiting on router queue for slot.... +06:54:08 Sending to : <4> +06:54:08 ============================================================================ +06:54:10 ============================================================================ +06:54:10 Slot Id : <407> +06:54:10 Transaction Type : RESPONSE +06:54:10 Received From : +06:54:10 ============================================================================ +06:54:10 FNo. Len. Field Value +06:54:10 ============================================================================ +06:54:10 [ 1] [ 4] [0210] +06:54:10 [ 2] [ 16] [6688990102982806] +06:54:10 [ 3] [ 6] [010000] +06:54:10 [ 4] [ 12] [000100000000] +06:54:10 [ 11] [ 6] [666205] +06:54:10 [ 12] [ 6] [065405] +06:54:10 [ 15] [ 4] [0320] +06:54:10 [ 18] [ 4] [6011] +06:54:10 [ 32] [ 6] [621354] +06:54:10 [ 35] [ 37] [6688990102982806=42111231280639700000] +06:54:10 [ 37] [ 12] [507904393630] +06:54:10 [ 38] [ 6] [592318] +06:54:10 [ 39] [ 2] [00] +06:54:10 [ 41] [ 8] [03003800] +06:54:10 [ 49] [ 3] [418] +06:54:10 [ 54] [ 20] [0002418C012163079359] +06:54:10 ============================================================================ +06:54:10 Sending to : +06:54:10 ============================================================================ +06:54:10 + + +waiting on router queue for slot.... +06:54:11 ============================================================================ +06:54:11 Slot Id : <407> +06:54:11 Transaction Type : RESPONSE +06:54:11 Received From : +06:54:11 ============================================================================ +06:54:11 FNo. Len. Field Value +06:54:11 ============================================================================ +06:54:11 [ 1] [ 4] [0210] +06:54:11 [ 2] [ 16] [6688990102982806] +06:54:11 [ 3] [ 6] [010000] +06:54:11 [ 4] [ 12] [000100000000] +06:54:11 [ 11] [ 6] [666205] +06:54:11 [ 12] [ 6] [065405] +06:54:11 [ 15] [ 4] [0320] +06:54:11 [ 18] [ 4] [6011] +06:54:11 [ 32] [ 6] [621354] +06:54:11 [ 35] [ 37] [6688990102982806=42111231280639700000] +06:54:11 [ 37] [ 12] [507904393630] +06:54:11 [ 38] [ 6] [592318] +06:54:11 [ 39] [ 2] [00] +06:54:11 [ 41] [ 8] [03003800] +06:54:11 [ 49] [ 3] [418] +06:54:11 [ 54] [ 20] [0002418C012163079359] +06:54:11 ============================================================================ +06:54:11 Calculate Source COMM Id = 0 +06:54:11 ============================================================================ +06:54:11 + + +waiting on router queue for slot.... +06:54:16 ============================================================================ +06:54:16 Slot Id : <384> +06:54:16 Transaction Type : REQUEST +06:54:16 Received From : +06:54:16 ============================================================================ +06:54:16 FNo. Len. Field Value +06:54:16 ============================================================================ +06:54:16 [ 1] [ 4] [0800] +06:54:16 [ 7] [ 10] [0319115323] +06:54:16 [ 11] [ 6] [155014] +06:54:16 [ 70] [ 3] [301] +06:54:16 ============================================================================ +06:54:16 + + +waiting on router queue for slot.... +06:54:16 Sending to : +06:54:16 ============================================================================ +06:54:16 ============================================================================ +06:54:16 Slot Id : <384> +06:54:16 Transaction Type : RESPONSE +06:54:16 Received From : +06:54:16 ============================================================================ +06:54:16 FNo. Len. Field Value +06:54:16 ============================================================================ +06:54:16 [ 1] [ 4] [0810] +06:54:16 [ 7] [ 10] [0319115323] +06:54:16 [ 11] [ 6] [155014] +06:54:16 [ 39] [ 2] [00] +06:54:16 [ 70] [ 3] [301] +06:54:16 ============================================================================ +06:54:16 Calculate Source COMM Id = 2 +06:54:16 ============================================================================ +06:54:16 + + +waiting on router queue for slot.... +06:54:31 ============================================================================ +06:54:31 Slot Id : <401> +06:54:31 Transaction Type : REQUEST +06:54:31 Received From : +06:54:31 ============================================================================ +06:54:31 FNo. Len. Field Value +06:54:31 ============================================================================ +06:54:31 [ 1] [ 4] [0800] +06:54:31 [ 7] [ 10] [0319115339] +06:54:31 [ 11] [ 6] [155015] +06:54:31 [ 70] [ 3] [301] +06:54:31 ============================================================================ +06:54:31 + + +waiting on router queue for slot.... +06:54:31 Sending to : +06:54:31 ============================================================================ +06:54:31 ============================================================================ +06:54:31 Slot Id : <401> +06:54:31 Transaction Type : RESPONSE +06:54:31 Received From : +06:54:31 ============================================================================ +06:54:31 FNo. Len. Field Value +06:54:31 ============================================================================ +06:54:31 [ 1] [ 4] [0810] +06:54:31 [ 7] [ 10] [0319115339] +06:54:31 [ 11] [ 6] [155015] +06:54:31 [ 39] [ 2] [00] +06:54:31 [ 70] [ 3] [301] +06:54:31 ============================================================================ +06:54:31 Calculate Source COMM Id = 2 +06:54:31 ============================================================================ +06:54:31 + + +waiting on router queue for slot.... +06:54:43 ============================================================================ +06:54:43 Slot Id : <420> +06:54:43 Transaction Type : REQUEST +06:54:43 Received From : +06:54:43 ============================================================================ +06:54:43 FNo. Len. Field Value +06:54:43 ============================================================================ +06:54:43 [ 1] [ 4] [0200] +06:54:43 [ 2] [ 16] [6213541000696057] +06:54:43 [ 3] [ 6] [300000] +06:54:43 [ 4] [ 12] [000000000000] +06:54:43 [ 7] [ 10] [0320065235] +06:54:43 [ 11] [ 6] [929540] +06:54:43 [ 12] [ 6] [065235] +06:54:43 [ 13] [ 4] [0320] +06:54:43 [ 15] [ 4] [0320] +06:54:43 [ 18] [ 4] [6011] +06:54:43 [ 19] [ 3] [418] +06:54:43 [ 22] [ 3] [021] +06:54:43 [ 25] [ 2] [01] +06:54:43 [ 28] [ 9] [D00000000] +06:54:43 [ 32] [ 6] [668899] +06:54:43 [ 35] [ 32] [6213541000696057=491212019605645] +06:54:43 [ 37] [ 12] [507902336368] +06:54:43 [ 41] [ 8] [03217002] +06:54:43 [ 42] [ 15] [APT ] +06:54:43 [ 43] [ 40] [ THATENG MARKET THATENG ] +06:54:43 [ 49] [ 3] [418] +06:54:43 [ 52] [ 16] [49562E9A8163F66F] +06:54:43 ============================================================================ +06:54:43 + + +waiting on router queue for slot.... +06:54:43 Sending to : +06:54:43 ============================================================================ +06:54:43 Sending to : +06:54:43 ============================================================================ +06:54:44 ============================================================================ +06:54:44 Slot Id : <420> +06:54:44 Transaction Type : REQUEST +06:54:44 Received From : +06:54:44 ============================================================================ +06:54:44 FNo. Len. Field Value +06:54:44 ============================================================================ +06:54:44 [ 1] [ 4] [0200] +06:54:44 [ 2] [ 16] [6213541000696057] +06:54:44 [ 3] [ 6] [300000] +06:54:44 [ 4] [ 12] [000000000000] +06:54:44 [ 7] [ 10] [0320065235] +06:54:44 [ 11] [ 6] [929540] +06:54:44 [ 12] [ 6] [065235] +06:54:44 [ 13] [ 4] [0320] +06:54:44 [ 15] [ 4] [0320] +06:54:44 [ 18] [ 4] [6011] +06:54:44 [ 19] [ 3] [418] +06:54:44 [ 22] [ 3] [021] +06:54:44 [ 25] [ 2] [01] +06:54:44 [ 28] [ 9] [D00000000] +06:54:44 [ 32] [ 6] [668899] +06:54:44 [ 35] [ 32] [6213541000696057=491212019605645] +06:54:44 [ 37] [ 12] [507902336368] +06:54:44 [ 41] [ 8] [03217002] +06:54:44 [ 42] [ 15] [APT ] +06:54:44 [ 43] [ 40] [ THATENG MARKET THATENG ] +06:54:44 [ 49] [ 3] [418] +06:54:44 [ 52] [ 16] [49562E9A8163F66F] +06:54:44 ============================================================================ +06:54:44 + + +waiting on router queue for slot.... +06:54:44 Sending to : +06:54:44 ============================================================================ +06:54:44 ============================================================================ +06:54:44 Slot Id : <420> +06:54:44 Transaction Type : REQUEST +06:54:44 Received From : +06:54:44 ============================================================================ +06:54:44 FNo. Len. Field Value +06:54:44 ============================================================================ +06:54:44 [ 1] [ 4] [0200] +06:54:44 [ 2] [ 16] [6213541000696057] +06:54:44 [ 3] [ 6] [300000] +06:54:44 [ 4] [ 12] [000000000000] +06:54:44 [ 7] [ 10] [0320065235] +06:54:44 [ 11] [ 6] [929540] +06:54:44 [ 12] [ 6] [065235] +06:54:44 [ 13] [ 4] [0320] +06:54:44 [ 15] [ 4] [0320] +06:54:44 [ 18] [ 4] [6011] +06:54:44 [ 19] [ 3] [418] +06:54:44 [ 22] [ 3] [021] +06:54:44 [ 25] [ 2] [01] +06:54:44 [ 28] [ 9] [D00000000] +06:54:44 [ 32] [ 6] [668899] +06:54:44 [ 35] [ 32] [6213541000696057=491212019605645] +06:54:44 [ 37] [ 12] [507902336368] +06:54:44 [ 41] [ 8] [03217002] +06:54:44 [ 42] [ 15] [APT ] +06:54:44 [ 43] [ 40] [ THATENG MARKET THATENG ] +06:54:44 [ 49] [ 3] [418] +06:54:44 [ 52] [ 16] [5A04696151C107CB] +06:54:44 ============================================================================ +06:54:44 + + +waiting on router queue for slot.... +06:54:44 Sending to : <0> +06:54:44 ============================================================================ +06:54:44 ============================================================================ +06:54:44 Slot Id : <420> +06:54:44 Transaction Type : RESPONSE +06:54:44 Received From : +06:54:44 ============================================================================ +06:54:44 FNo. Len. Field Value +06:54:44 ============================================================================ +06:54:44 [ 1] [ 4] [0210] +06:54:44 [ 2] [ 16] [6213541000696057] +06:54:44 [ 3] [ 6] [300000] +06:54:44 [ 4] [ 12] [000000000000] +06:54:44 [ 7] [ 10] [0320065235] +06:54:44 [ 11] [ 6] [929540] +06:54:44 [ 12] [ 6] [065235] +06:54:44 [ 13] [ 4] [0320] +06:54:44 [ 15] [ 4] [0320] +06:54:44 [ 18] [ 4] [6011] +06:54:44 [ 19] [ 3] [418] +06:54:44 [ 32] [ 6] [668899] +06:54:44 [ 35] [ 32] [6213541000696057=491212019605645] +06:54:44 [ 37] [ 12] [507902336368] +06:54:44 [ 38] [ 6] [585972] +06:54:44 [ 39] [ 2] [00] +06:54:44 [ 41] [ 8] [03217002] +06:54:44 [ 49] [ 3] [418] +06:54:44 [ 54] [ 40] [0001418C0003023633000002418C000302363300] +06:54:44 ============================================================================ +06:54:44 Sending to : +06:54:44 ============================================================================ +06:54:44 + + +waiting on router queue for slot.... +06:54:45 ============================================================================ +06:54:45 Slot Id : <420> +06:54:45 Transaction Type : RESPONSE +06:54:45 Received From : +06:54:45 ============================================================================ +06:54:45 FNo. Len. Field Value +06:54:45 ============================================================================ +06:54:45 [ 1] [ 4] [0210] +06:54:45 [ 2] [ 16] [6213541000696057] +06:54:45 [ 3] [ 6] [300000] +06:54:45 [ 4] [ 12] [000000000000] +06:54:45 [ 7] [ 10] [0320065235] +06:54:45 [ 11] [ 6] [929540] +06:54:45 [ 12] [ 6] [065235] +06:54:45 [ 13] [ 4] [0320] +06:54:45 [ 15] [ 4] [0320] +06:54:45 [ 18] [ 4] [6011] +06:54:45 [ 19] [ 3] [418] +06:54:45 [ 32] [ 6] [668899] +06:54:45 [ 35] [ 32] [6213541000696057=491212019605645] +06:54:45 [ 37] [ 12] [507902336368] +06:54:45 [ 38] [ 6] [585972] +06:54:45 [ 39] [ 2] [00] +06:54:45 [ 41] [ 8] [03217002] +06:54:45 [ 49] [ 3] [418] +06:54:45 [ 54] [ 40] [0001418C0003023633000002418C000302363300] +06:54:45 ============================================================================ +06:54:45 Calculate Source COMM Id = 4 +06:54:45 ============================================================================ +06:54:45 + + +waiting on router queue for slot.... +06:54:47 ============================================================================ +06:54:47 Slot Id : <416> +06:54:47 Transaction Type : REQUEST +06:54:47 Received From : +06:54:47 ============================================================================ +06:54:47 FNo. Len. Field Value +06:54:47 ============================================================================ +06:54:47 [ 1] [ 4] [0800] +06:54:47 [ 7] [ 10] [0319115355] +06:54:47 [ 11] [ 6] [155016] +06:54:47 [ 70] [ 3] [301] +06:54:47 ============================================================================ +06:54:47 + + +waiting on router queue for slot.... +06:54:47 Sending to : +06:54:47 ============================================================================ +06:54:47 ============================================================================ +06:54:47 Slot Id : <416> +06:54:47 Transaction Type : RESPONSE +06:54:47 Received From : +06:54:47 ============================================================================ +06:54:47 FNo. Len. Field Value +06:54:47 ============================================================================ +06:54:47 [ 1] [ 4] [0810] +06:54:47 [ 7] [ 10] [0319115355] +06:54:47 [ 11] [ 6] [155016] +06:54:47 [ 39] [ 2] [00] +06:54:47 [ 70] [ 3] [301] +06:54:47 ============================================================================ +06:54:47 Calculate Source COMM Id = 2 +06:54:47 ============================================================================ +06:54:47 + + +waiting on router queue for slot.... +06:54:55 ============================================================================ +06:54:55 Slot Id : <415> +06:54:55 Transaction Type : REQUEST +06:54:55 Received From : +06:54:55 ============================================================================ +06:54:55 FNo. Len. Field Value +06:54:55 ============================================================================ +06:54:55 [ 1] [ 4] [0800] +06:54:55 [ 7] [ 10] [0320000242] +06:54:55 [ 11] [ 6] [036249] +06:54:55 [ 37] [ 12] [57907036249] +06:54:55 [ 70] [ 3] [301] +06:54:55 ============================================================================ +06:54:55 + + +waiting on router queue for slot.... +06:54:55 Sending to : +06:54:55 ============================================================================ +06:54:55 ============================================================================ +06:54:55 Slot Id : <415> +06:54:55 Transaction Type : RESPONSE +06:54:55 Received From : +06:54:55 ============================================================================ +06:54:55 FNo. Len. Field Value +06:54:55 ============================================================================ +06:54:55 [ 1] [ 4] [0810] +06:54:55 [ 7] [ 10] [0320000242] +06:54:55 [ 11] [ 6] [036249] +06:54:55 [ 37] [ 12] [579070362490] +06:54:55 [ 39] [ 2] [00] +06:54:55 [ 70] [ 3] [810] +06:54:55 ============================================================================ +06:54:55 Calculate Source COMM Id = 1 +06:54:55 ============================================================================ +06:54:55 + + +waiting on router queue for slot.... +06:54:57 ============================================================================ +06:54:57 Slot Id : <381> +06:54:57 Transaction Type : REQUEST +06:54:57 Received From : +06:54:57 ============================================================================ +06:54:57 FNo. Len. Field Value +06:54:57 ============================================================================ +06:54:57 [ 1] [ 4] [0800] +06:54:57 [ 7] [ 10] [0320140646] +06:54:57 [ 11] [ 6] [070646] +06:54:57 [ 37] [ 12] [57907070646] +06:54:57 [ 70] [ 3] [301] +06:54:57 ============================================================================ +06:54:57 + + +waiting on router queue for slot.... +06:54:57 Sending to : +06:54:57 ============================================================================ +06:54:57 ============================================================================ +06:54:57 Slot Id : <381> +06:54:57 Transaction Type : RESPONSE +06:54:57 Received From : +06:54:57 ============================================================================ +06:54:57 FNo. Len. Field Value +06:54:57 ============================================================================ +06:54:57 [ 1] [ 4] [0810] +06:54:57 [ 7] [ 10] [0320140646] +06:54:57 [ 11] [ 6] [070646] +06:54:57 [ 37] [ 12] [579070706460] +06:54:57 [ 39] [ 2] [00] +06:54:57 [ 70] [ 3] [810] +06:54:57 ============================================================================ +06:54:57 Calculate Source COMM Id = 6 +06:54:57 ============================================================================ +06:54:57 + + +waiting on router queue for slot.... +06:54:58 ============================================================================ +06:54:58 Slot Id : <425> +06:54:58 Transaction Type : REQUEST +06:54:58 Received From : +06:54:58 ============================================================================ +06:54:58 FNo. Len. Field Value +06:54:58 ============================================================================ +06:54:58 [ 1] [ 4] [0800] +06:54:58 [ 2] [ 5] [02531] +06:54:58 [ 3] [ 6] [579068] +06:54:58 [ 7] [ 10] [0319235458] +06:54:58 [ 11] [ 6] [806813] +06:54:58 [ 15] [ 10] [0319235458] +06:54:58 [ 37] [ 11] [57906806813] +06:54:58 [ 70] [ 3] [001] +06:54:58 ============================================================================ +06:54:58 + + +waiting on router queue for slot.... +06:54:58 ============================================================================ +06:54:58 Slot Id : <425> +06:54:58 Transaction Type : RESPONSE +06:54:58 Received From : +06:54:58 ============================================================================ +06:54:58 FNo. Len. Field Value +06:54:58 ============================================================================ +06:54:58 [ 1] [ 4] [0810] +06:54:58 [ 7] [ 10] [0319235458] +06:54:58 [ 11] [ 6] [806813] +06:54:58 [ 15] [ 4] [0319] +06:54:58 [ 37] [ 12] [57906806813] +06:54:58 [ 39] [ 2] [00] +06:54:58 [ 70] [ 3] [001] +06:54:58 ============================================================================ +06:54:58 Sending to : +06:54:58 ============================================================================ +06:54:58 + + +waiting on router queue for slot.... +06:55:02 ============================================================================ +06:55:02 Slot Id : <398> +06:55:02 Transaction Type : REQUEST +06:55:02 Received From : +06:55:02 ============================================================================ +06:55:02 FNo. Len. Field Value +06:55:02 ============================================================================ +06:55:02 [ 1] [ 4] [0800] +06:55:02 [ 7] [ 10] [0319115411] +06:55:02 [ 11] [ 6] [155017] +06:55:02 [ 70] [ 3] [301] +06:55:02 ============================================================================ +06:55:02 + + +waiting on router queue for slot.... +06:55:02 Sending to : +06:55:02 ============================================================================ +06:55:02 ============================================================================ +06:55:02 Slot Id : <398> +06:55:02 Transaction Type : RESPONSE +06:55:02 Received From : +06:55:02 ============================================================================ +06:55:02 FNo. Len. Field Value +06:55:02 ============================================================================ +06:55:02 [ 1] [ 4] [0810] +06:55:02 [ 7] [ 10] [0319115411] +06:55:02 [ 11] [ 6] [155017] +06:55:02 [ 39] [ 2] [00] +06:55:02 [ 70] [ 3] [301] +06:55:02 ============================================================================ +06:55:02 Calculate Source COMM Id = 2 +06:55:02 ============================================================================ +06:55:02 + + +waiting on router queue for slot.... +06:55:09 ============================================================================ +06:55:09 Slot Id : <388> +06:55:09 Transaction Type : REQUEST +06:55:09 Received From : +06:55:09 ============================================================================ +06:55:09 FNo. Len. Field Value +06:55:09 ============================================================================ +06:55:09 [ 1] [ 4] [0200] +06:55:09 [ 2] [ 16] [6213541000696057] +06:55:09 [ 3] [ 6] [010000] +06:55:09 [ 4] [ 12] [000100000000] +06:55:09 [ 7] [ 10] [0320065301] +06:55:09 [ 11] [ 6] [929559] +06:55:09 [ 12] [ 6] [065301] +06:55:09 [ 13] [ 4] [0320] +06:55:09 [ 15] [ 4] [0320] +06:55:09 [ 18] [ 4] [6011] +06:55:09 [ 19] [ 3] [418] +06:55:09 [ 22] [ 3] [021] +06:55:09 [ 25] [ 2] [01] +06:55:09 [ 28] [ 9] [D00002000] +06:55:09 [ 32] [ 6] [668899] +06:55:09 [ 35] [ 32] [6213541000696057=491212019605645] +06:55:09 [ 37] [ 12] [507902336369] +06:55:09 [ 41] [ 8] [03217002] +06:55:09 [ 42] [ 15] [APT ] +06:55:09 [ 43] [ 40] [ THATENG MARKET THATENG ] +06:55:09 [ 49] [ 3] [418] +06:55:09 [ 52] [ 16] [49562E9A8163F66F] +06:55:09 ============================================================================ +06:55:09 + + +waiting on router queue for slot.... +06:55:09 Sending to : +06:55:09 ============================================================================ +06:55:09 Sending to : +06:55:09 ============================================================================ +06:55:09 ============================================================================ +06:55:09 Slot Id : <388> +06:55:09 Transaction Type : REQUEST +06:55:09 Received From : +06:55:09 ============================================================================ +06:55:09 FNo. Len. Field Value +06:55:09 ============================================================================ +06:55:09 [ 1] [ 4] [0200] +06:55:09 [ 2] [ 16] [6213541000696057] +06:55:09 [ 3] [ 6] [010000] +06:55:09 [ 4] [ 12] [000100000000] +06:55:09 [ 7] [ 10] [0320065301] +06:55:09 [ 11] [ 6] [929559] +06:55:09 [ 12] [ 6] [065301] +06:55:09 [ 13] [ 4] [0320] +06:55:09 [ 15] [ 4] [0320] +06:55:09 [ 18] [ 4] [6011] +06:55:09 [ 19] [ 3] [418] +06:55:09 [ 22] [ 3] [021] +06:55:09 [ 25] [ 2] [01] +06:55:09 [ 28] [ 9] [D00002000] +06:55:09 [ 32] [ 6] [668899] +06:55:09 [ 35] [ 32] [6213541000696057=491212019605645] +06:55:09 [ 37] [ 12] [507902336369] +06:55:09 [ 41] [ 8] [03217002] +06:55:09 [ 42] [ 15] [APT ] +06:55:09 [ 43] [ 40] [ THATENG MARKET THATENG ] +06:55:09 [ 49] [ 3] [418] +06:55:09 [ 52] [ 16] [49562E9A8163F66F] +06:55:09 ============================================================================ +06:55:09 + + +waiting on router queue for slot.... +06:55:09 Sending to : +06:55:09 ============================================================================ +06:55:09 ============================================================================ +06:55:09 Slot Id : <388> +06:55:09 Transaction Type : REQUEST +06:55:09 Received From : +06:55:09 ============================================================================ +06:55:09 FNo. Len. Field Value +06:55:09 ============================================================================ +06:55:09 [ 1] [ 4] [0200] +06:55:09 [ 2] [ 16] [6213541000696057] +06:55:09 [ 3] [ 6] [010000] +06:55:09 [ 4] [ 12] [000100000000] +06:55:09 [ 7] [ 10] [0320065301] +06:55:09 [ 11] [ 6] [929559] +06:55:09 [ 12] [ 6] [065301] +06:55:09 [ 13] [ 4] [0320] +06:55:09 [ 15] [ 4] [0320] +06:55:09 [ 18] [ 4] [6011] +06:55:09 [ 19] [ 3] [418] +06:55:09 [ 22] [ 3] [021] +06:55:09 [ 25] [ 2] [01] +06:55:09 [ 28] [ 9] [D00002000] +06:55:09 [ 32] [ 6] [668899] +06:55:09 [ 35] [ 32] [6213541000696057=491212019605645] +06:55:09 [ 37] [ 12] [507902336369] +06:55:09 [ 41] [ 8] [03217002] +06:55:09 [ 42] [ 15] [APT ] +06:55:09 [ 43] [ 40] [ THATENG MARKET THATENG ] +06:55:09 [ 49] [ 3] [418] +06:55:09 [ 52] [ 16] [5A04696151C107CB] +06:55:09 ============================================================================ +06:55:09 + + +waiting on router queue for slot.... +06:55:09 Sending to : <0> +06:55:09 ============================================================================ +06:55:10 ============================================================================ +06:55:10 Slot Id : <388> +06:55:10 Transaction Type : RESPONSE +06:55:10 Received From : +06:55:10 ============================================================================ +06:55:10 FNo. Len. Field Value +06:55:10 ============================================================================ +06:55:10 [ 1] [ 4] [0210] +06:55:10 [ 2] [ 16] [6213541000696057] +06:55:10 [ 3] [ 6] [010000] +06:55:10 [ 4] [ 12] [000100000000] +06:55:10 [ 7] [ 10] [0320065301] +06:55:10 [ 11] [ 6] [929559] +06:55:10 [ 12] [ 6] [065301] +06:55:10 [ 13] [ 4] [0320] +06:55:10 [ 15] [ 4] [0320] +06:55:10 [ 18] [ 4] [6011] +06:55:10 [ 19] [ 3] [418] +06:55:10 [ 32] [ 6] [668899] +06:55:10 [ 35] [ 32] [6213541000696057=491212019605645] +06:55:10 [ 37] [ 12] [507902336369] +06:55:10 [ 38] [ 6] [238088] +06:55:10 [ 39] [ 2] [00] +06:55:10 [ 41] [ 8] [03217002] +06:55:10 [ 49] [ 3] [418] +06:55:10 [ 54] [ 40] [0001418C0002021633000002418C000202163300] +06:55:10 ============================================================================ +06:55:10 Sending to : +06:55:10 ============================================================================ +06:55:10 + + +waiting on router queue for slot.... +06:55:11 ============================================================================ +06:55:11 Slot Id : <388> +06:55:11 Transaction Type : RESPONSE +06:55:11 Received From : +06:55:11 ============================================================================ +06:55:11 FNo. Len. Field Value +06:55:11 ============================================================================ +06:55:11 [ 1] [ 4] [0210] +06:55:11 [ 2] [ 16] [6213541000696057] +06:55:11 [ 3] [ 6] [010000] +06:55:11 [ 4] [ 12] [000100000000] +06:55:11 [ 7] [ 10] [0320065301] +06:55:11 [ 11] [ 6] [929559] +06:55:11 [ 12] [ 6] [065301] +06:55:11 [ 13] [ 4] [0320] +06:55:11 [ 15] [ 4] [0320] +06:55:11 [ 18] [ 4] [6011] +06:55:11 [ 19] [ 3] [418] +06:55:11 [ 32] [ 6] [668899] +06:55:11 [ 35] [ 32] [6213541000696057=491212019605645] +06:55:11 [ 37] [ 12] [507902336369] +06:55:11 [ 38] [ 6] [238088] +06:55:11 [ 39] [ 2] [00] +06:55:11 [ 41] [ 8] [03217002] +06:55:11 [ 49] [ 3] [418] +06:55:11 [ 54] [ 40] [0001418C0002021633000002418C000202163300] +06:55:11 ============================================================================ +06:55:11 Calculate Source COMM Id = 4 +06:55:11 ============================================================================ +06:55:11 + + +waiting on router queue for slot.... +06:55:13 ============================================================================ +06:55:13 Slot Id : <433> +06:55:13 Transaction Type : REQUEST +06:55:13 Received From : +06:55:13 ============================================================================ +06:55:13 FNo. Len. Field Value +06:55:13 ============================================================================ +06:55:13 [ 1] [ 4] [0800] +06:55:13 [ 7] [ 10] [0319115421] +06:55:13 [ 11] [ 6] [155018] +06:55:13 [ 70] [ 3] [301] +06:55:13 ============================================================================ +06:55:13 + + +waiting on router queue for slot.... +06:55:13 Sending to : +06:55:13 ============================================================================ +06:55:13 ============================================================================ +06:55:13 Slot Id : <433> +06:55:13 Transaction Type : RESPONSE +06:55:13 Received From : +06:55:13 ============================================================================ +06:55:13 FNo. Len. Field Value +06:55:13 ============================================================================ +06:55:13 [ 1] [ 4] [0810] +06:55:13 [ 7] [ 10] [0319115421] +06:55:13 [ 11] [ 6] [155018] +06:55:13 [ 39] [ 2] [00] +06:55:13 [ 70] [ 3] [301] +06:55:13 ============================================================================ +06:55:13 Calculate Source COMM Id = 2 +06:55:13 ============================================================================ +06:55:13 + + +waiting on router queue for slot.... +06:55:28 ============================================================================ +06:55:28 Slot Id : <364> +06:55:28 Transaction Type : REQUEST +06:55:28 Received From : +06:55:28 ============================================================================ +06:55:28 FNo. Len. Field Value +06:55:28 ============================================================================ +06:55:28 [ 1] [ 4] [0800] +06:55:28 [ 7] [ 10] [0319115437] +06:55:28 [ 11] [ 6] [155019] +06:55:28 [ 70] [ 3] [301] +06:55:28 ============================================================================ +06:55:28 + + +waiting on router queue for slot.... +06:55:28 Sending to : +06:55:28 ============================================================================ +06:55:28 ============================================================================ +06:55:28 Slot Id : <364> +06:55:28 Transaction Type : RESPONSE +06:55:28 Received From : +06:55:28 ============================================================================ +06:55:28 FNo. Len. Field Value +06:55:28 ============================================================================ +06:55:28 [ 1] [ 4] [0810] +06:55:28 [ 7] [ 10] [0319115437] +06:55:28 [ 11] [ 6] [155019] +06:55:28 [ 39] [ 2] [00] +06:55:28 [ 70] [ 3] [301] +06:55:28 ============================================================================ +06:55:28 Calculate Source COMM Id = 2 +06:55:28 ============================================================================ +06:55:28 + + +waiting on router queue for slot.... +06:55:36 ============================================================================ +06:55:36 Slot Id : <367> +06:55:36 Transaction Type : REQUEST +06:55:36 Received From : +06:55:36 ============================================================================ +06:55:36 FNo. Len. Field Value +06:55:36 ============================================================================ +06:55:36 [ 1] [ 4] [0200] +06:55:36 [ 2] [ 16] [6213545000118194] +06:55:36 [ 3] [ 6] [010000] +06:55:36 [ 4] [ 12] [000020000000] +06:55:36 [ 7] [ 10] [0320065328] +06:55:36 [ 11] [ 6] [929570] +06:55:36 [ 12] [ 6] [065328] +06:55:36 [ 13] [ 4] [0320] +06:55:36 [ 15] [ 4] [0320] +06:55:36 [ 18] [ 4] [6011] +06:55:36 [ 19] [ 3] [418] +06:55:36 [ 22] [ 3] [021] +06:55:36 [ 25] [ 2] [01] +06:55:36 [ 28] [ 9] [D00002000] +06:55:36 [ 32] [ 6] [668899] +06:55:36 [ 35] [ 32] [6213545000118194=491212011819771] +06:55:36 [ 37] [ 12] [507901822341] +06:55:36 [ 41] [ 8] [03407003] +06:55:36 [ 42] [ 15] [APT ] +06:55:36 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +06:55:36 [ 49] [ 3] [418] +06:55:36 [ 52] [ 16] [AE70551B0BCB7857] +06:55:36 ============================================================================ +06:55:36 + + +waiting on router queue for slot.... +06:55:36 Sending to : +06:55:36 ============================================================================ +06:55:36 Sending to : +06:55:36 ============================================================================ +06:55:36 ============================================================================ +06:55:36 Slot Id : <367> +06:55:36 Transaction Type : REQUEST +06:55:36 Received From : +06:55:36 ============================================================================ +06:55:36 FNo. Len. Field Value +06:55:36 ============================================================================ +06:55:36 [ 1] [ 4] [0200] +06:55:36 [ 2] [ 16] [6213545000118194] +06:55:36 [ 3] [ 6] [010000] +06:55:36 [ 4] [ 12] [000020000000] +06:55:36 [ 7] [ 10] [0320065328] +06:55:36 [ 11] [ 6] [929570] +06:55:36 [ 12] [ 6] [065328] +06:55:36 [ 13] [ 4] [0320] +06:55:36 [ 15] [ 4] [0320] +06:55:36 [ 18] [ 4] [6011] +06:55:36 [ 19] [ 3] [418] +06:55:36 [ 22] [ 3] [021] +06:55:36 [ 25] [ 2] [01] +06:55:36 [ 28] [ 9] [D00002000] +06:55:36 [ 32] [ 6] [668899] +06:55:36 [ 35] [ 32] [6213545000118194=491212011819771] +06:55:36 [ 37] [ 12] [507901822341] +06:55:36 [ 41] [ 8] [03407003] +06:55:36 [ 42] [ 15] [APT ] +06:55:36 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +06:55:36 [ 49] [ 3] [418] +06:55:36 [ 52] [ 16] [AE70551B0BCB7857] +06:55:36 ============================================================================ +06:55:36 + + +waiting on router queue for slot.... +06:55:36 Sending to : +06:55:36 ============================================================================ +06:55:36 ============================================================================ +06:55:36 Slot Id : <367> +06:55:36 Transaction Type : REQUEST +06:55:36 Received From : +06:55:36 ============================================================================ +06:55:36 FNo. Len. Field Value +06:55:36 ============================================================================ +06:55:36 [ 1] [ 4] [0200] +06:55:36 [ 2] [ 16] [6213545000118194] +06:55:36 [ 3] [ 6] [010000] +06:55:36 [ 4] [ 12] [000020000000] +06:55:36 [ 7] [ 10] [0320065328] +06:55:36 [ 11] [ 6] [929570] +06:55:36 [ 12] [ 6] [065328] +06:55:36 [ 13] [ 4] [0320] +06:55:36 [ 15] [ 4] [0320] +06:55:36 [ 18] [ 4] [6011] +06:55:36 [ 19] [ 3] [418] +06:55:36 [ 22] [ 3] [021] +06:55:36 [ 25] [ 2] [01] +06:55:36 [ 28] [ 9] [D00002000] +06:55:36 [ 32] [ 6] [668899] +06:55:36 [ 35] [ 32] [6213545000118194=491212011819771] +06:55:36 [ 37] [ 12] [507901822341] +06:55:36 [ 41] [ 8] [03407003] +06:55:36 [ 42] [ 15] [APT ] +06:55:36 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +06:55:36 [ 49] [ 3] [418] +06:55:36 [ 52] [ 16] [05E4B5C64CF5C5BD] +06:55:36 ============================================================================ +06:55:36 + + +waiting on router queue for slot.... +06:55:36 Sending to : <0> +06:55:36 ============================================================================ +06:55:37 ============================================================================ +06:55:37 Slot Id : <367> +06:55:37 Transaction Type : RESPONSE +06:55:37 Received From : +06:55:37 ============================================================================ +06:55:37 FNo. Len. Field Value +06:55:37 ============================================================================ +06:55:37 [ 1] [ 4] [0210] +06:55:37 [ 2] [ 16] [6213545000118194] +06:55:37 [ 3] [ 6] [010000] +06:55:37 [ 4] [ 12] [000020000000] +06:55:37 [ 7] [ 10] [0320065328] +06:55:37 [ 11] [ 6] [929570] +06:55:37 [ 12] [ 6] [065328] +06:55:37 [ 13] [ 4] [0320] +06:55:37 [ 15] [ 4] [0320] +06:55:37 [ 18] [ 4] [6011] +06:55:37 [ 19] [ 3] [418] +06:55:37 [ 32] [ 6] [668899] +06:55:37 [ 35] [ 32] [6213545000118194=491212011819771] +06:55:37 [ 37] [ 12] [507901822341] +06:55:37 [ 38] [ 6] [395657] +06:55:37 [ 39] [ 2] [00] +06:55:37 [ 41] [ 8] [03407003] +06:55:37 [ 49] [ 3] [418] +06:55:37 [ 54] [ 40] [0001418C0000126600920002418C000012660092] +06:55:37 ============================================================================ +06:55:37 Sending to : +06:55:37 ============================================================================ +06:55:37 + + +waiting on router queue for slot.... +06:55:39 ============================================================================ +06:55:39 Slot Id : <367> +06:55:39 Transaction Type : RESPONSE +06:55:39 Received From : +06:55:39 ============================================================================ +06:55:39 FNo. Len. Field Value +06:55:39 ============================================================================ +06:55:39 [ 1] [ 4] [0210] +06:55:39 [ 2] [ 16] [6213545000118194] +06:55:39 [ 3] [ 6] [010000] +06:55:39 [ 4] [ 12] [000020000000] +06:55:39 [ 7] [ 10] [0320065328] +06:55:39 [ 11] [ 6] [929570] +06:55:39 [ 12] [ 6] [065328] +06:55:39 [ 13] [ 4] [0320] +06:55:39 [ 15] [ 4] [0320] +06:55:39 [ 18] [ 4] [6011] +06:55:39 [ 19] [ 3] [418] +06:55:39 [ 32] [ 6] [668899] +06:55:39 [ 35] [ 32] [6213545000118194=491212011819771] +06:55:39 [ 37] [ 12] [507901822341] +06:55:39 [ 38] [ 6] [395657] +06:55:39 [ 39] [ 2] [00] +06:55:39 [ 41] [ 8] [03407003] +06:55:39 [ 49] [ 3] [418] +06:55:39 [ 54] [ 40] [0001418C0000126600920002418C000012660092] +06:55:39 ============================================================================ +06:55:39 Calculate Source COMM Id = 4 +06:55:39 ============================================================================ +06:55:39 + + +waiting on router queue for slot.... +06:55:44 ============================================================================ +06:55:44 Slot Id : <430> +06:55:44 Transaction Type : REQUEST +06:55:44 Received From : +06:55:44 ============================================================================ +06:55:44 FNo. Len. Field Value +06:55:44 ============================================================================ +06:55:44 [ 1] [ 4] [0800] +06:55:44 [ 7] [ 10] [0319115452] +06:55:44 [ 11] [ 6] [155020] +06:55:44 [ 70] [ 3] [301] +06:55:44 ============================================================================ +06:55:44 + + +waiting on router queue for slot.... +06:55:44 Sending to : +06:55:44 ============================================================================ +06:55:44 ============================================================================ +06:55:44 Slot Id : <430> +06:55:44 Transaction Type : RESPONSE +06:55:44 Received From : +06:55:44 ============================================================================ +06:55:44 FNo. Len. Field Value +06:55:44 ============================================================================ +06:55:44 [ 1] [ 4] [0810] +06:55:44 [ 7] [ 10] [0319115452] +06:55:44 [ 11] [ 6] [155020] +06:55:44 [ 39] [ 2] [00] +06:55:44 [ 70] [ 3] [301] +06:55:44 ============================================================================ +06:55:44 Calculate Source COMM Id = 2 +06:55:44 ============================================================================ +06:55:44 + + +waiting on router queue for slot.... +06:55:59 ============================================================================ +06:55:59 Slot Id : <441> +06:55:59 Transaction Type : REQUEST +06:55:59 Received From : +06:55:59 ============================================================================ +06:55:59 FNo. Len. Field Value +06:55:59 ============================================================================ +06:55:59 [ 1] [ 4] [0800] +06:55:59 [ 7] [ 10] [0319115507] +06:55:59 [ 11] [ 6] [155021] +06:55:59 [ 70] [ 3] [301] +06:55:59 ============================================================================ +06:55:59 + + +waiting on router queue for slot.... +06:55:59 Sending to : +06:55:59 ============================================================================ +06:55:59 ============================================================================ +06:55:59 Slot Id : <441> +06:55:59 Transaction Type : RESPONSE +06:55:59 Received From : +06:55:59 ============================================================================ +06:55:59 FNo. Len. Field Value +06:55:59 ============================================================================ +06:55:59 [ 1] [ 4] [0810] +06:55:59 [ 7] [ 10] [0319115507] +06:55:59 [ 11] [ 6] [155021] +06:55:59 [ 39] [ 2] [00] +06:55:59 [ 70] [ 3] [301] +06:55:59 ============================================================================ +06:55:59 Calculate Source COMM Id = 2 +06:55:59 ============================================================================ +06:55:59 + + +waiting on router queue for slot.... +06:56:00 ============================================================================ +06:56:00 Slot Id : <402> +06:56:00 Transaction Type : REQUEST +06:56:00 Received From : +06:56:00 ============================================================================ +06:56:00 FNo. Len. Field Value +06:56:00 ============================================================================ +06:56:00 [ 1] [ 4] [0800] +06:56:00 [ 2] [ 5] [02531] +06:56:00 [ 3] [ 6] [579068] +06:56:00 [ 7] [ 10] [0319235600] +06:56:00 [ 11] [ 6] [806814] +06:56:00 [ 15] [ 10] [0319235600] +06:56:00 [ 37] [ 11] [57906806814] +06:56:00 [ 70] [ 3] [001] +06:56:00 ============================================================================ +06:56:00 + + +waiting on router queue for slot.... +06:56:00 ============================================================================ +06:56:00 Slot Id : <402> +06:56:00 Transaction Type : RESPONSE +06:56:00 Received From : +06:56:00 ============================================================================ +06:56:00 FNo. Len. Field Value +06:56:00 ============================================================================ +06:56:00 [ 1] [ 4] [0810] +06:56:00 [ 7] [ 10] [0319235600] +06:56:00 [ 11] [ 6] [806814] +06:56:00 [ 15] [ 4] [0319] +06:56:00 [ 37] [ 12] [57906806814] +06:56:00 [ 39] [ 2] [00] +06:56:00 [ 70] [ 3] [001] +06:56:00 ============================================================================ +06:56:00 Sending to : +06:56:00 ============================================================================ +06:56:00 + + +waiting on router queue for slot.... +06:56:02 ============================================================================ +06:56:02 Slot Id : <375> +06:56:02 Transaction Type : REQUEST +06:56:02 Received From : +06:56:02 ============================================================================ +06:56:02 FNo. Len. Field Value +06:56:02 ============================================================================ +06:56:02 [ 1] [ 4] [0800] +06:56:02 [ 7] [ 10] [0320140751] +06:56:02 [ 11] [ 6] [070751] +06:56:02 [ 37] [ 12] [57907070751] +06:56:02 [ 70] [ 3] [301] +06:56:02 ============================================================================ +06:56:02 + + +waiting on router queue for slot.... +06:56:02 Sending to : +06:56:02 ============================================================================ +06:56:02 ============================================================================ +06:56:02 Slot Id : <375> +06:56:02 Transaction Type : RESPONSE +06:56:02 Received From : +06:56:02 ============================================================================ +06:56:02 FNo. Len. Field Value +06:56:02 ============================================================================ +06:56:02 [ 1] [ 4] [0810] +06:56:02 [ 7] [ 10] [0320140751] +06:56:02 [ 11] [ 6] [070751] +06:56:02 [ 37] [ 12] [579070707510] +06:56:02 [ 39] [ 2] [00] +06:56:02 [ 70] [ 3] [810] +06:56:02 ============================================================================ +06:56:02 Calculate Source COMM Id = 6 +06:56:02 ============================================================================ +06:56:02 + + +waiting on router queue for slot.... +06:56:10 ============================================================================ +06:56:10 Slot Id : <408> +06:56:10 Transaction Type : REQUEST +06:56:10 Received From : +06:56:10 ============================================================================ +06:56:10 FNo. Len. Field Value +06:56:10 ============================================================================ +06:56:10 [ 1] [ 4] [0800] +06:56:10 [ 7] [ 10] [0319115518] +06:56:10 [ 11] [ 6] [155022] +06:56:10 [ 70] [ 3] [301] +06:56:10 ============================================================================ +06:56:10 + + +waiting on router queue for slot.... +06:56:10 Sending to : +06:56:10 ============================================================================ +06:56:10 ============================================================================ +06:56:10 Slot Id : <408> +06:56:10 Transaction Type : RESPONSE +06:56:10 Received From : +06:56:10 ============================================================================ +06:56:10 FNo. Len. Field Value +06:56:10 ============================================================================ +06:56:10 [ 1] [ 4] [0810] +06:56:10 [ 7] [ 10] [0319115518] +06:56:10 [ 11] [ 6] [155022] +06:56:10 [ 39] [ 2] [00] +06:56:10 [ 70] [ 3] [301] +06:56:10 ============================================================================ +06:56:10 Calculate Source COMM Id = 2 +06:56:10 ============================================================================ +06:56:10 + + +waiting on router queue for slot.... +06:56:20 ============================================================================ +06:56:20 Slot Id : <409> +06:56:20 Transaction Type : REQUEST +06:56:20 Received From : +06:56:20 ============================================================================ +06:56:20 FNo. Len. Field Value +06:56:20 ============================================================================ +06:56:20 [ 1] [ 4] [0800] +06:56:20 [ 7] [ 10] [0319235412] +06:56:20 [ 11] [ 6] [036529] +06:56:20 [ 37] [ 12] [57906036529] +06:56:20 [ 70] [ 3] [301] +06:56:20 ============================================================================ +06:56:20 + + +waiting on router queue for slot.... +06:56:20 Sending to : +06:56:20 ============================================================================ +06:56:20 ============================================================================ +06:56:20 Slot Id : <409> +06:56:20 Transaction Type : RESPONSE +06:56:20 Received From : +06:56:20 ============================================================================ +06:56:20 FNo. Len. Field Value +06:56:20 ============================================================================ +06:56:20 [ 1] [ 4] [0810] +06:56:20 [ 7] [ 10] [0319235412] +06:56:20 [ 11] [ 6] [036529] +06:56:20 [ 37] [ 12] [579060365290] +06:56:20 [ 39] [ 2] [00] +06:56:20 [ 70] [ 3] [810] +06:56:20 ============================================================================ +06:56:20 Calculate Source COMM Id = 4 +06:56:20 ============================================================================ +06:56:20 + + +waiting on router queue for slot.... +06:56:21 ============================================================================ +06:56:21 Slot Id : <437> +06:56:21 Transaction Type : REQUEST +06:56:21 Received From : +06:56:21 ============================================================================ +06:56:21 FNo. Len. Field Value +06:56:21 ============================================================================ +06:56:21 [ 1] [ 4] [0800] +06:56:21 [ 7] [ 10] [0319115529] +06:56:21 [ 11] [ 6] [155023] +06:56:21 [ 70] [ 3] [301] +06:56:21 ============================================================================ +06:56:21 + + +waiting on router queue for slot.... +06:56:21 Sending to : +06:56:21 ============================================================================ +06:56:21 ============================================================================ +06:56:21 Slot Id : <437> +06:56:21 Transaction Type : RESPONSE +06:56:21 Received From : +06:56:21 ============================================================================ +06:56:21 FNo. Len. Field Value +06:56:21 ============================================================================ +06:56:21 [ 1] [ 4] [0810] +06:56:21 [ 7] [ 10] [0319115529] +06:56:21 [ 11] [ 6] [155023] +06:56:21 [ 39] [ 2] [00] +06:56:21 [ 70] [ 3] [301] +06:56:21 ============================================================================ +06:56:21 Calculate Source COMM Id = 2 +06:56:21 ============================================================================ +06:56:21 + + +waiting on router queue for slot.... +06:56:21 ============================================================================ +06:56:21 Slot Id : <385> +06:56:21 Transaction Type : REQUEST +06:56:21 Received From : +06:56:21 ============================================================================ +06:56:21 FNo. Len. Field Value +06:56:21 ============================================================================ +06:56:21 [ 1] [ 4] [0800] +06:56:21 [ 7] [ 10] [0320065609] +06:56:21 [ 11] [ 6] [036252] +06:56:21 [ 37] [ 12] [507906036252] +06:56:21 [ 70] [ 3] [ ] +06:56:21 ============================================================================ +06:56:21 + + +waiting on router queue for slot.... +06:56:21 Sending to : +06:56:21 ============================================================================ +06:56:21 ============================================================================ +06:56:21 Slot Id : <385> +06:56:21 Transaction Type : RESPONSE +06:56:21 Received From : +06:56:21 ============================================================================ +06:56:21 FNo. Len. Field Value +06:56:21 ============================================================================ +06:56:21 [ 1] [ 4] [0810] +06:56:21 [ 7] [ 10] [0320065609] +06:56:21 [ 11] [ 6] [036252] +06:56:21 [ 37] [ 12] [507906036252] +06:56:21 [ 39] [ 2] [91] +06:56:21 [ 70] [ 3] [ ] +06:56:21 ============================================================================ +06:56:21 Calculate Source COMM Id = 3 +06:56:21 ============================================================================ +06:56:21 + + +waiting on router queue for slot.... +06:56:32 ============================================================================ +06:56:32 Slot Id : <362> +06:56:32 Transaction Type : REQUEST +06:56:32 Received From : +06:56:32 ============================================================================ +06:56:32 FNo. Len. Field Value +06:56:32 ============================================================================ +06:56:32 [ 1] [ 4] [0800] +06:56:32 [ 7] [ 10] [0319115540] +06:56:32 [ 11] [ 6] [155024] +06:56:32 [ 70] [ 3] [301] +06:56:32 ============================================================================ +06:56:32 + + +waiting on router queue for slot.... +06:56:32 Sending to : +06:56:32 ============================================================================ +06:56:32 ============================================================================ +06:56:32 Slot Id : <362> +06:56:32 Transaction Type : RESPONSE +06:56:32 Received From : +06:56:32 ============================================================================ +06:56:32 FNo. Len. Field Value +06:56:32 ============================================================================ +06:56:32 [ 1] [ 4] [0810] +06:56:32 [ 7] [ 10] [0319115540] +06:56:32 [ 11] [ 6] [155024] +06:56:32 [ 39] [ 2] [00] +06:56:32 [ 70] [ 3] [301] +06:56:32 ============================================================================ +06:56:32 Calculate Source COMM Id = 2 +06:56:32 ============================================================================ +06:56:32 + + +waiting on router queue for slot.... +06:56:47 ============================================================================ +06:56:47 Slot Id : <403> +06:56:47 Transaction Type : REQUEST +06:56:47 Received From : +06:56:47 ============================================================================ +06:56:47 FNo. Len. Field Value +06:56:47 ============================================================================ +06:56:47 [ 1] [ 4] [0800] +06:56:47 [ 7] [ 10] [0319115555] +06:56:47 [ 11] [ 6] [155025] +06:56:47 [ 70] [ 3] [301] +06:56:47 ============================================================================ +06:56:47 + + +waiting on router queue for slot.... +06:56:47 Sending to : +06:56:47 ============================================================================ +06:56:47 ============================================================================ +06:56:47 Slot Id : <403> +06:56:47 Transaction Type : RESPONSE +06:56:47 Received From : +06:56:47 ============================================================================ +06:56:47 FNo. Len. Field Value +06:56:47 ============================================================================ +06:56:47 [ 1] [ 4] [0810] +06:56:47 [ 7] [ 10] [0319115555] +06:56:47 [ 11] [ 6] [155025] +06:56:47 [ 39] [ 2] [00] +06:56:47 [ 70] [ 3] [301] +06:56:47 ============================================================================ +06:56:47 Calculate Source COMM Id = 2 +06:56:47 ============================================================================ +06:56:47 + + +waiting on router queue for slot.... +06:57:02 ============================================================================ +06:57:02 Slot Id : <392> +06:57:02 Transaction Type : REQUEST +06:57:02 Received From : +06:57:02 ============================================================================ +06:57:02 FNo. Len. Field Value +06:57:02 ============================================================================ +06:57:02 [ 1] [ 4] [0800] +06:57:02 [ 2] [ 5] [02531] +06:57:02 [ 3] [ 6] [579068] +06:57:02 [ 7] [ 10] [0319235702] +06:57:02 [ 11] [ 6] [806815] +06:57:02 [ 15] [ 10] [0319235702] +06:57:02 [ 37] [ 11] [57906806815] +06:57:02 [ 70] [ 3] [001] +06:57:02 ============================================================================ +06:57:02 + + +waiting on router queue for slot.... +06:57:02 ============================================================================ +06:57:02 Slot Id : <392> +06:57:02 Transaction Type : RESPONSE +06:57:02 Received From : +06:57:02 ============================================================================ +06:57:02 FNo. Len. Field Value +06:57:02 ============================================================================ +06:57:02 [ 1] [ 4] [0810] +06:57:02 [ 7] [ 10] [0319235702] +06:57:02 [ 11] [ 6] [806815] +06:57:02 [ 15] [ 4] [0319] +06:57:02 [ 37] [ 12] [57906806815] +06:57:02 [ 39] [ 2] [00] +06:57:02 [ 70] [ 3] [001] +06:57:02 ============================================================================ +06:57:02 Sending to : +06:57:02 ============================================================================ +06:57:02 + + +waiting on router queue for slot.... +06:57:03 ============================================================================ +06:57:03 Slot Id : <412> +06:57:03 Transaction Type : REQUEST +06:57:03 Received From : +06:57:03 ============================================================================ +06:57:03 FNo. Len. Field Value +06:57:03 ============================================================================ +06:57:03 [ 1] [ 4] [0800] +06:57:03 [ 7] [ 10] [0319115612] +06:57:03 [ 11] [ 6] [155026] +06:57:03 [ 70] [ 3] [301] +06:57:03 ============================================================================ +06:57:03 + + +waiting on router queue for slot.... +06:57:03 Sending to : +06:57:03 ============================================================================ +06:57:03 ============================================================================ +06:57:03 Slot Id : <412> +06:57:03 Transaction Type : RESPONSE +06:57:03 Received From : +06:57:03 ============================================================================ +06:57:03 FNo. Len. Field Value +06:57:03 ============================================================================ +06:57:03 [ 1] [ 4] [0810] +06:57:03 [ 7] [ 10] [0319115612] +06:57:03 [ 11] [ 6] [155026] +06:57:03 [ 39] [ 2] [00] +06:57:03 [ 70] [ 3] [301] +06:57:03 ============================================================================ +06:57:03 Calculate Source COMM Id = 2 +06:57:03 ============================================================================ +06:57:03 + + +waiting on router queue for slot.... +06:57:07 ============================================================================ +06:57:07 Slot Id : <447> +06:57:07 Transaction Type : REQUEST +06:57:07 Received From : +06:57:07 ============================================================================ +06:57:07 FNo. Len. Field Value +06:57:07 ============================================================================ +06:57:07 [ 1] [ 4] [0800] +06:57:07 [ 7] [ 10] [0320140856] +06:57:07 [ 11] [ 6] [070856] +06:57:07 [ 37] [ 12] [57907070856] +06:57:07 [ 70] [ 3] [301] +06:57:07 ============================================================================ +06:57:07 + + +waiting on router queue for slot.... +06:57:07 Sending to : +06:57:07 ============================================================================ +06:57:07 ============================================================================ +06:57:07 Slot Id : <447> +06:57:07 Transaction Type : RESPONSE +06:57:07 Received From : +06:57:07 ============================================================================ +06:57:07 FNo. Len. Field Value +06:57:07 ============================================================================ +06:57:07 [ 1] [ 4] [0810] +06:57:07 [ 7] [ 10] [0320140856] +06:57:07 [ 11] [ 6] [070856] +06:57:07 [ 37] [ 12] [579070708560] +06:57:07 [ 39] [ 2] [00] +06:57:07 [ 70] [ 3] [810] +06:57:07 ============================================================================ +06:57:07 Calculate Source COMM Id = 6 +06:57:07 ============================================================================ +06:57:07 + + +waiting on router queue for slot.... +06:57:13 ============================================================================ +06:57:13 Slot Id : <450> +06:57:13 Transaction Type : REQUEST +06:57:13 Received From : +06:57:13 ============================================================================ +06:57:13 FNo. Len. Field Value +06:57:13 ============================================================================ +06:57:13 [ 1] [ 4] [0800] +06:57:13 [ 7] [ 10] [0319115622] +06:57:13 [ 11] [ 6] [155027] +06:57:13 [ 70] [ 3] [301] +06:57:13 ============================================================================ +06:57:13 + + +waiting on router queue for slot.... +06:57:13 Sending to : +06:57:13 ============================================================================ +06:57:13 ============================================================================ +06:57:13 Slot Id : <450> +06:57:13 Transaction Type : RESPONSE +06:57:13 Received From : +06:57:13 ============================================================================ +06:57:13 FNo. Len. Field Value +06:57:13 ============================================================================ +06:57:13 [ 1] [ 4] [0810] +06:57:13 [ 7] [ 10] [0319115622] +06:57:13 [ 11] [ 6] [155027] +06:57:13 [ 39] [ 2] [00] +06:57:13 [ 70] [ 3] [301] +06:57:13 ============================================================================ +06:57:13 Calculate Source COMM Id = 2 +06:57:13 ============================================================================ +06:57:13 + + +waiting on router queue for slot.... +06:57:23 ============================================================================ +06:57:23 Slot Id : <386> +06:57:23 Transaction Type : REQUEST +06:57:23 Received From : +06:57:23 ============================================================================ +06:57:23 FNo. Len. Field Value +06:57:23 ============================================================================ +06:57:23 [ 1] [ 4] [0800] +06:57:23 [ 7] [ 10] [0319115632] +06:57:23 [ 11] [ 6] [155028] +06:57:23 [ 70] [ 3] [301] +06:57:23 ============================================================================ +06:57:23 + + +waiting on router queue for slot.... +06:57:23 Sending to : +06:57:23 ============================================================================ +06:57:23 ============================================================================ +06:57:23 Slot Id : <386> +06:57:23 Transaction Type : RESPONSE +06:57:23 Received From : +06:57:23 ============================================================================ +06:57:23 FNo. Len. Field Value +06:57:23 ============================================================================ +06:57:23 [ 1] [ 4] [0810] +06:57:23 [ 7] [ 10] [0319115632] +06:57:23 [ 11] [ 6] [155028] +06:57:23 [ 39] [ 2] [00] +06:57:23 [ 70] [ 3] [301] +06:57:23 ============================================================================ +06:57:23 Calculate Source COMM Id = 2 +06:57:23 ============================================================================ +06:57:23 + + +waiting on router queue for slot.... +06:57:35 ============================================================================ +06:57:35 Slot Id : <417> +06:57:35 Transaction Type : REQUEST +06:57:35 Received From : +06:57:35 ============================================================================ +06:57:35 FNo. Len. Field Value +06:57:35 ============================================================================ +06:57:35 [ 1] [ 4] [0800] +06:57:35 [ 7] [ 10] [0319115643] +06:57:35 [ 11] [ 6] [155029] +06:57:35 [ 70] [ 3] [301] +06:57:35 ============================================================================ +06:57:35 + + +waiting on router queue for slot.... +06:57:35 Sending to : +06:57:35 ============================================================================ +06:57:35 ============================================================================ +06:57:35 Slot Id : <417> +06:57:35 Transaction Type : RESPONSE +06:57:35 Received From : +06:57:35 ============================================================================ +06:57:35 FNo. Len. Field Value +06:57:35 ============================================================================ +06:57:35 [ 1] [ 4] [0810] +06:57:35 [ 7] [ 10] [0319115643] +06:57:35 [ 11] [ 6] [155029] +06:57:35 [ 39] [ 2] [00] +06:57:35 [ 70] [ 3] [301] +06:57:35 ============================================================================ +06:57:35 Calculate Source COMM Id = 2 +06:57:35 ============================================================================ +06:57:35 + + +waiting on router queue for slot.... +06:57:43 ============================================================================ +06:57:43 Slot Id : <391> +06:57:43 Transaction Type : REQUEST +06:57:43 Received From : +06:57:43 ============================================================================ +06:57:43 FNo. Len. Field Value +06:57:43 ============================================================================ +06:57:43 [ 1] [ 4] [0200] +06:57:43 [ 2] [ 16] [6688990102850805] +06:57:43 [ 3] [ 6] [300000] +06:57:43 [ 4] [ 12] [000000000000] +06:57:43 [ 7] [ 10] [0320065739] +06:57:43 [ 11] [ 6] [666595] +06:57:43 [ 12] [ 6] [065739] +06:57:43 [ 13] [ 4] [0320] +06:57:43 [ 15] [ 4] [0320] +06:57:43 [ 18] [ 4] [6011] +06:57:43 [ 22] [ 3] [900] +06:57:43 [ 25] [ 2] [02] +06:57:43 [ 28] [ 9] [D00000000] +06:57:43 [ 32] [ 6] [621354] +06:57:43 [ 35] [ 37] [6688990102850805=42101231080551800000] +06:57:43 [ 37] [ 12] [507903499410] +06:57:43 [ 41] [ 8] [06002200] +06:57:43 [ 42] [ 15] [NATIVE ] +06:57:43 [ 43] [ 40] [Beng Market Beng LAO] +06:57:43 [ 49] [ 3] [418] +06:57:43 [ 52] [ 16] [7F59DCA550180968] +06:57:43 ============================================================================ +06:57:43 + + +waiting on router queue for slot.... +06:57:43 Sending to : +06:57:43 ============================================================================ +06:57:43 Sending to : +06:57:43 ============================================================================ +06:57:43 ============================================================================ +06:57:43 Slot Id : <391> +06:57:43 Transaction Type : REQUEST +06:57:43 Received From : +06:57:43 ============================================================================ +06:57:43 FNo. Len. Field Value +06:57:43 ============================================================================ +06:57:43 [ 1] [ 4] [0200] +06:57:43 [ 2] [ 16] [6688990102850805] +06:57:43 [ 3] [ 6] [300000] +06:57:43 [ 4] [ 12] [000000000000] +06:57:43 [ 7] [ 10] [0320065739] +06:57:43 [ 11] [ 6] [666595] +06:57:43 [ 12] [ 6] [065739] +06:57:43 [ 13] [ 4] [0320] +06:57:43 [ 15] [ 4] [0320] +06:57:43 [ 18] [ 4] [6011] +06:57:43 [ 22] [ 3] [900] +06:57:43 [ 25] [ 2] [02] +06:57:43 [ 28] [ 9] [D00000000] +06:57:43 [ 32] [ 6] [621354] +06:57:43 [ 35] [ 37] [6688990102850805=42101231080551800000] +06:57:43 [ 37] [ 12] [507903499410] +06:57:43 [ 41] [ 8] [06002200] +06:57:43 [ 42] [ 15] [NATIVE ] +06:57:43 [ 43] [ 40] [Beng Market Beng LAO] +06:57:43 [ 49] [ 3] [418] +06:57:43 [ 52] [ 16] [7F59DCA550180968] +06:57:43 ============================================================================ +06:57:43 + + +waiting on router queue for slot.... +06:57:43 Sending to : +06:57:43 ============================================================================ +06:57:43 ============================================================================ +06:57:43 Slot Id : <391> +06:57:43 Transaction Type : REQUEST +06:57:43 Received From : +06:57:43 ============================================================================ +06:57:43 FNo. Len. Field Value +06:57:43 ============================================================================ +06:57:43 [ 1] [ 4] [0200] +06:57:43 [ 2] [ 16] [6688990102850805] +06:57:43 [ 3] [ 6] [300000] +06:57:43 [ 4] [ 12] [000000000000] +06:57:43 [ 7] [ 10] [0320065739] +06:57:43 [ 11] [ 6] [666595] +06:57:43 [ 12] [ 6] [065739] +06:57:43 [ 13] [ 4] [0320] +06:57:43 [ 15] [ 4] [0320] +06:57:43 [ 18] [ 4] [6011] +06:57:43 [ 22] [ 3] [900] +06:57:43 [ 25] [ 2] [02] +06:57:43 [ 28] [ 9] [D00000000] +06:57:43 [ 32] [ 6] [621354] +06:57:43 [ 35] [ 37] [6688990102850805=42101231080551800000] +06:57:43 [ 37] [ 12] [507903499410] +06:57:43 [ 41] [ 8] [06002200] +06:57:43 [ 42] [ 15] [NATIVE ] +06:57:43 [ 43] [ 40] [Beng Market Beng LAO] +06:57:43 [ 49] [ 3] [418] +06:57:43 [ 52] [ 16] [2B07DC310440E63D] +06:57:43 ============================================================================ +06:57:43 + + +waiting on router queue for slot.... +06:57:43 Sending to : <4> +06:57:43 ============================================================================ +06:57:44 ============================================================================ +06:57:44 Slot Id : <391> +06:57:44 Transaction Type : RESPONSE +06:57:44 Received From : +06:57:44 ============================================================================ +06:57:44 FNo. Len. Field Value +06:57:44 ============================================================================ +06:57:44 [ 1] [ 4] [0210] +06:57:44 [ 2] [ 16] [6688990102850805] +06:57:44 [ 3] [ 6] [300000] +06:57:44 [ 4] [ 12] [000000000000] +06:57:44 [ 11] [ 6] [666595] +06:57:44 [ 12] [ 6] [065739] +06:57:44 [ 15] [ 4] [0320] +06:57:44 [ 18] [ 4] [6011] +06:57:44 [ 32] [ 6] [621354] +06:57:44 [ 35] [ 37] [6688990102850805=42101231080551800000] +06:57:44 [ 37] [ 12] [507903499410] +06:57:44 [ 38] [ 6] [217655] +06:57:44 [ 39] [ 2] [00] +06:57:44 [ 41] [ 8] [06002200] +06:57:44 [ 49] [ 3] [418] +06:57:44 [ 54] [ 20] [0002418C000389645637] +06:57:44 ============================================================================ +06:57:44 Sending to : +06:57:44 ============================================================================ +06:57:44 + + +waiting on router queue for slot.... +06:57:45 ============================================================================ +06:57:45 Slot Id : <377> +06:57:45 Transaction Type : REQUEST +06:57:45 Received From : +06:57:45 ============================================================================ +06:57:45 FNo. Len. Field Value +06:57:45 ============================================================================ +06:57:45 [ 1] [ 4] [0800] +06:57:45 [ 7] [ 10] [0319115653] +06:57:45 [ 11] [ 6] [155030] +06:57:45 [ 70] [ 3] [301] +06:57:45 ============================================================================ +06:57:45 + + +waiting on router queue for slot.... +06:57:45 Sending to : +06:57:45 ============================================================================ +06:57:45 ============================================================================ +06:57:45 Slot Id : <377> +06:57:45 Transaction Type : RESPONSE +06:57:45 Received From : +06:57:45 ============================================================================ +06:57:45 FNo. Len. Field Value +06:57:45 ============================================================================ +06:57:45 [ 1] [ 4] [0810] +06:57:45 [ 7] [ 10] [0319115653] +06:57:45 [ 11] [ 6] [155030] +06:57:45 [ 39] [ 2] [00] +06:57:45 [ 70] [ 3] [301] +06:57:45 ============================================================================ +06:57:45 Calculate Source COMM Id = 2 +06:57:45 ============================================================================ +06:57:45 + + +waiting on router queue for slot.... +06:57:46 ============================================================================ +06:57:46 Slot Id : <391> +06:57:46 Transaction Type : RESPONSE +06:57:46 Received From : +06:57:46 ============================================================================ +06:57:46 FNo. Len. Field Value +06:57:46 ============================================================================ +06:57:46 [ 1] [ 4] [0210] +06:57:46 [ 2] [ 16] [6688990102850805] +06:57:46 [ 3] [ 6] [300000] +06:57:46 [ 4] [ 12] [000000000000] +06:57:46 [ 11] [ 6] [666595] +06:57:46 [ 12] [ 6] [065739] +06:57:46 [ 15] [ 4] [0320] +06:57:46 [ 18] [ 4] [6011] +06:57:46 [ 32] [ 6] [621354] +06:57:46 [ 35] [ 37] [6688990102850805=42101231080551800000] +06:57:46 [ 37] [ 12] [507903499410] +06:57:46 [ 38] [ 6] [217655] +06:57:46 [ 39] [ 2] [00] +06:57:46 [ 41] [ 8] [06002200] +06:57:46 [ 49] [ 3] [418] +06:57:46 [ 54] [ 20] [0002418C000389645637] +06:57:46 ============================================================================ +06:57:46 Calculate Source COMM Id = 0 +06:57:46 ============================================================================ +06:57:46 + + +waiting on router queue for slot.... +06:57:56 ============================================================================ +06:57:56 Slot Id : <405> +06:57:56 Transaction Type : REQUEST +06:57:56 Received From : +06:57:56 ============================================================================ +06:57:56 FNo. Len. Field Value +06:57:56 ============================================================================ +06:57:56 [ 1] [ 4] [0800] +06:57:56 [ 7] [ 10] [0319115704] +06:57:56 [ 11] [ 6] [155031] +06:57:56 [ 70] [ 3] [301] +06:57:56 ============================================================================ +06:57:56 + + +waiting on router queue for slot.... +06:57:56 Sending to : +06:57:56 ============================================================================ +06:57:56 ============================================================================ +06:57:56 Slot Id : <405> +06:57:56 Transaction Type : RESPONSE +06:57:56 Received From : +06:57:56 ============================================================================ +06:57:56 FNo. Len. Field Value +06:57:56 ============================================================================ +06:57:56 [ 1] [ 4] [0810] +06:57:56 [ 7] [ 10] [0319115704] +06:57:56 [ 11] [ 6] [155031] +06:57:56 [ 39] [ 2] [00] +06:57:56 [ 70] [ 3] [301] +06:57:56 ============================================================================ +06:57:56 Calculate Source COMM Id = 2 +06:57:56 ============================================================================ +06:57:56 + + +waiting on router queue for slot.... +06:58:04 ============================================================================ +06:58:04 Slot Id : <443> +06:58:04 Transaction Type : REQUEST +06:58:04 Received From : +06:58:04 ============================================================================ +06:58:04 FNo. Len. Field Value +06:58:04 ============================================================================ +06:58:04 [ 1] [ 4] [0800] +06:58:04 [ 2] [ 5] [02531] +06:58:04 [ 3] [ 6] [579068] +06:58:04 [ 7] [ 10] [0319235804] +06:58:04 [ 11] [ 6] [806816] +06:58:04 [ 15] [ 10] [0319235804] +06:58:04 [ 37] [ 11] [57906806816] +06:58:04 [ 70] [ 3] [001] +06:58:04 ============================================================================ +06:58:04 + + +waiting on router queue for slot.... +06:58:04 ============================================================================ +06:58:04 Slot Id : <443> +06:58:04 Transaction Type : RESPONSE +06:58:04 Received From : +06:58:04 ============================================================================ +06:58:04 FNo. Len. Field Value +06:58:04 ============================================================================ +06:58:04 [ 1] [ 4] [0810] +06:58:04 [ 7] [ 10] [0319235804] +06:58:04 [ 11] [ 6] [806816] +06:58:04 [ 15] [ 4] [0319] +06:58:04 [ 37] [ 12] [57906806816] +06:58:04 [ 39] [ 2] [00] +06:58:04 [ 70] [ 3] [001] +06:58:04 ============================================================================ +06:58:04 Sending to : +06:58:04 ============================================================================ +06:58:04 + + +waiting on router queue for slot.... +06:58:07 ============================================================================ +06:58:07 Slot Id : <456> +06:58:07 Transaction Type : REQUEST +06:58:07 Received From : +06:58:07 ============================================================================ +06:58:07 FNo. Len. Field Value +06:58:07 ============================================================================ +06:58:07 [ 1] [ 4] [0800] +06:58:07 [ 7] [ 10] [0319115715] +06:58:07 [ 11] [ 6] [155032] +06:58:07 [ 70] [ 3] [301] +06:58:07 ============================================================================ +06:58:07 + + +waiting on router queue for slot.... +06:58:07 Sending to : +06:58:07 ============================================================================ +06:58:07 ============================================================================ +06:58:07 Slot Id : <456> +06:58:07 Transaction Type : RESPONSE +06:58:07 Received From : +06:58:07 ============================================================================ +06:58:07 FNo. Len. Field Value +06:58:07 ============================================================================ +06:58:07 [ 1] [ 4] [0810] +06:58:07 [ 7] [ 10] [0319115715] +06:58:07 [ 11] [ 6] [155032] +06:58:07 [ 39] [ 2] [00] +06:58:07 [ 70] [ 3] [301] +06:58:07 ============================================================================ +06:58:07 Calculate Source COMM Id = 2 +06:58:07 ============================================================================ +06:58:07 + + +waiting on router queue for slot.... +06:58:12 ============================================================================ +06:58:12 Slot Id : <446> +06:58:12 Transaction Type : REQUEST +06:58:12 Received From : +06:58:12 ============================================================================ +06:58:12 FNo. Len. Field Value +06:58:12 ============================================================================ +06:58:12 [ 1] [ 4] [0800] +06:58:12 [ 7] [ 10] [0320141001] +06:58:12 [ 11] [ 6] [071001] +06:58:12 [ 37] [ 12] [57907071001] +06:58:12 [ 70] [ 3] [301] +06:58:12 ============================================================================ +06:58:12 + + +waiting on router queue for slot.... +06:58:12 Sending to : +06:58:12 ============================================================================ +06:58:12 ============================================================================ +06:58:12 Slot Id : <446> +06:58:12 Transaction Type : RESPONSE +06:58:12 Received From : +06:58:12 ============================================================================ +06:58:12 FNo. Len. Field Value +06:58:12 ============================================================================ +06:58:12 [ 1] [ 4] [0810] +06:58:12 [ 7] [ 10] [0320141001] +06:58:12 [ 11] [ 6] [071001] +06:58:12 [ 37] [ 12] [579070710010] +06:58:12 [ 39] [ 2] [00] +06:58:12 [ 70] [ 3] [810] +06:58:12 ============================================================================ +06:58:12 Calculate Source COMM Id = 6 +06:58:12 ============================================================================ +06:58:12 + + +waiting on router queue for slot.... +06:58:18 ============================================================================ +06:58:18 Slot Id : <435> +06:58:18 Transaction Type : REQUEST +06:58:18 Received From : +06:58:18 ============================================================================ +06:58:18 FNo. Len. Field Value +06:58:18 ============================================================================ +06:58:18 [ 1] [ 4] [0800] +06:58:18 [ 7] [ 10] [0319115726] +06:58:18 [ 11] [ 6] [155033] +06:58:18 [ 70] [ 3] [301] +06:58:18 ============================================================================ +06:58:18 + + +waiting on router queue for slot.... +06:58:18 Sending to : +06:58:18 ============================================================================ +06:58:18 ============================================================================ +06:58:18 Slot Id : <435> +06:58:18 Transaction Type : RESPONSE +06:58:18 Received From : +06:58:18 ============================================================================ +06:58:18 FNo. Len. Field Value +06:58:18 ============================================================================ +06:58:18 [ 1] [ 4] [0810] +06:58:18 [ 7] [ 10] [0319115726] +06:58:18 [ 11] [ 6] [155033] +06:58:18 [ 39] [ 2] [00] +06:58:18 [ 70] [ 3] [301] +06:58:18 ============================================================================ +06:58:18 Calculate Source COMM Id = 2 +06:58:18 ============================================================================ +06:58:18 + + +waiting on router queue for slot.... +06:58:29 ============================================================================ +06:58:29 Slot Id : <404> +06:58:29 Transaction Type : REQUEST +06:58:29 Received From : +06:58:29 ============================================================================ +06:58:29 FNo. Len. Field Value +06:58:29 ============================================================================ +06:58:29 [ 1] [ 4] [0800] +06:58:29 [ 7] [ 10] [0319115737] +06:58:29 [ 11] [ 6] [155034] +06:58:29 [ 70] [ 3] [301] +06:58:29 ============================================================================ +06:58:29 + + +waiting on router queue for slot.... +06:58:29 Sending to : +06:58:29 ============================================================================ +06:58:29 ============================================================================ +06:58:29 Slot Id : <404> +06:58:29 Transaction Type : RESPONSE +06:58:29 Received From : +06:58:29 ============================================================================ +06:58:29 FNo. Len. Field Value +06:58:29 ============================================================================ +06:58:29 [ 1] [ 4] [0810] +06:58:29 [ 7] [ 10] [0319115737] +06:58:29 [ 11] [ 6] [155034] +06:58:29 [ 39] [ 2] [00] +06:58:29 [ 70] [ 3] [301] +06:58:29 ============================================================================ +06:58:29 Calculate Source COMM Id = 2 +06:58:29 ============================================================================ +06:58:29 + + +waiting on router queue for slot.... +06:58:44 ============================================================================ +06:58:44 Slot Id : <424> +06:58:44 Transaction Type : REQUEST +06:58:44 Received From : +06:58:44 ============================================================================ +06:58:44 FNo. Len. Field Value +06:58:44 ============================================================================ +06:58:44 [ 1] [ 4] [0800] +06:58:44 [ 7] [ 10] [0319115753] +06:58:44 [ 11] [ 6] [155035] +06:58:44 [ 70] [ 3] [301] +06:58:44 ============================================================================ +06:58:44 + + +waiting on router queue for slot.... +06:58:44 Sending to : +06:58:44 ============================================================================ +06:58:45 ============================================================================ +06:58:45 Slot Id : <424> +06:58:45 Transaction Type : RESPONSE +06:58:45 Received From : +06:58:45 ============================================================================ +06:58:45 FNo. Len. Field Value +06:58:45 ============================================================================ +06:58:45 [ 1] [ 4] [0810] +06:58:45 [ 7] [ 10] [0319115753] +06:58:45 [ 11] [ 6] [155035] +06:58:45 [ 39] [ 2] [00] +06:58:45 [ 70] [ 3] [301] +06:58:45 ============================================================================ +06:58:45 Calculate Source COMM Id = 2 +06:58:45 ============================================================================ +06:58:45 + + +waiting on router queue for slot.... +06:58:56 ============================================================================ +06:58:56 Slot Id : <429> +06:58:56 Transaction Type : REQUEST +06:58:56 Received From : +06:58:56 ============================================================================ +06:58:56 FNo. Len. Field Value +06:58:56 ============================================================================ +06:58:56 [ 1] [ 4] [0800] +06:58:56 [ 7] [ 10] [0319115804] +06:58:56 [ 11] [ 6] [155036] +06:58:56 [ 70] [ 3] [301] +06:58:56 ============================================================================ +06:58:56 + + +waiting on router queue for slot.... +06:58:56 Sending to : +06:58:56 ============================================================================ +06:58:56 ============================================================================ +06:58:56 Slot Id : <429> +06:58:56 Transaction Type : RESPONSE +06:58:56 Received From : +06:58:56 ============================================================================ +06:58:56 FNo. Len. Field Value +06:58:56 ============================================================================ +06:58:56 [ 1] [ 4] [0810] +06:58:56 [ 7] [ 10] [0319115804] +06:58:56 [ 11] [ 6] [155036] +06:58:56 [ 39] [ 2] [00] +06:58:56 [ 70] [ 3] [301] +06:58:56 ============================================================================ +06:58:56 Calculate Source COMM Id = 2 +06:58:56 ============================================================================ +06:58:56 + + +waiting on router queue for slot.... +06:59:06 ============================================================================ +06:59:06 Slot Id : <442> +06:59:06 Transaction Type : REQUEST +06:59:06 Received From : +06:59:06 ============================================================================ +06:59:06 FNo. Len. Field Value +06:59:06 ============================================================================ +06:59:06 [ 1] [ 4] [0800] +06:59:06 [ 2] [ 5] [02531] +06:59:06 [ 3] [ 6] [579068] +06:59:06 [ 7] [ 10] [0319235906] +06:59:06 [ 11] [ 6] [806817] +06:59:06 [ 15] [ 10] [0319235906] +06:59:06 [ 37] [ 11] [57906806817] +06:59:06 [ 70] [ 3] [001] +06:59:06 ============================================================================ +06:59:06 + + +waiting on router queue for slot.... +06:59:06 ============================================================================ +06:59:06 Slot Id : <442> +06:59:06 Transaction Type : RESPONSE +06:59:06 Received From : +06:59:06 ============================================================================ +06:59:06 FNo. Len. Field Value +06:59:06 ============================================================================ +06:59:06 [ 1] [ 4] [0810] +06:59:06 [ 7] [ 10] [0319235906] +06:59:06 [ 11] [ 6] [806817] +06:59:06 [ 15] [ 4] [0319] +06:59:06 [ 37] [ 12] [57906806817] +06:59:06 [ 39] [ 2] [00] +06:59:06 [ 70] [ 3] [001] +06:59:06 ============================================================================ +06:59:06 Sending to : +06:59:06 ============================================================================ +06:59:06 + + +waiting on router queue for slot.... +06:59:06 ============================================================================ +06:59:06 Slot Id : <445> +06:59:06 Transaction Type : REQUEST +06:59:06 Received From : +06:59:06 ============================================================================ +06:59:06 FNo. Len. Field Value +06:59:06 ============================================================================ +06:59:06 [ 1] [ 4] [0800] +06:59:06 [ 7] [ 10] [0319115815] +06:59:06 [ 11] [ 6] [155037] +06:59:06 [ 70] [ 3] [301] +06:59:06 ============================================================================ +06:59:06 + + +waiting on router queue for slot.... +06:59:06 Sending to : +06:59:06 ============================================================================ +06:59:06 ============================================================================ +06:59:06 Slot Id : <445> +06:59:06 Transaction Type : RESPONSE +06:59:06 Received From : +06:59:06 ============================================================================ +06:59:06 FNo. Len. Field Value +06:59:06 ============================================================================ +06:59:06 [ 1] [ 4] [0810] +06:59:06 [ 7] [ 10] [0319115815] +06:59:06 [ 11] [ 6] [155037] +06:59:06 [ 39] [ 2] [00] +06:59:06 [ 70] [ 3] [301] +06:59:06 ============================================================================ +06:59:06 Calculate Source COMM Id = 2 +06:59:06 ============================================================================ +06:59:06 + + +waiting on router queue for slot.... +06:59:18 ============================================================================ +06:59:18 Slot Id : <438> +06:59:18 Transaction Type : REQUEST +06:59:18 Received From : +06:59:18 ============================================================================ +06:59:18 FNo. Len. Field Value +06:59:18 ============================================================================ +06:59:18 [ 1] [ 4] [0800] +06:59:18 [ 7] [ 10] [0320141106] +06:59:18 [ 11] [ 6] [071106] +06:59:18 [ 37] [ 12] [57907071106] +06:59:18 [ 70] [ 3] [301] +06:59:18 ============================================================================ +06:59:18 + + +waiting on router queue for slot.... +06:59:18 Sending to : +06:59:18 ============================================================================ +06:59:18 ============================================================================ +06:59:18 Slot Id : <438> +06:59:18 Transaction Type : RESPONSE +06:59:18 Received From : +06:59:18 ============================================================================ +06:59:18 FNo. Len. Field Value +06:59:18 ============================================================================ +06:59:18 [ 1] [ 4] [0810] +06:59:18 [ 7] [ 10] [0320141106] +06:59:18 [ 11] [ 6] [071106] +06:59:18 [ 37] [ 12] [579070711060] +06:59:18 [ 39] [ 2] [00] +06:59:18 [ 70] [ 3] [810] +06:59:18 ============================================================================ +06:59:18 Calculate Source COMM Id = 6 +06:59:18 ============================================================================ +06:59:18 + + +waiting on router queue for slot.... +06:59:22 ============================================================================ +06:59:22 Slot Id : <434> +06:59:22 Transaction Type : REQUEST +06:59:22 Received From : +06:59:22 ============================================================================ +06:59:22 FNo. Len. Field Value +06:59:22 ============================================================================ +06:59:22 [ 1] [ 4] [0800] +06:59:22 [ 7] [ 10] [0319115830] +06:59:22 [ 11] [ 6] [155038] +06:59:22 [ 70] [ 3] [301] +06:59:22 ============================================================================ +06:59:22 + + +waiting on router queue for slot.... +06:59:22 Sending to : +06:59:22 ============================================================================ +06:59:22 ============================================================================ +06:59:22 Slot Id : <434> +06:59:22 Transaction Type : RESPONSE +06:59:22 Received From : +06:59:22 ============================================================================ +06:59:22 FNo. Len. Field Value +06:59:22 ============================================================================ +06:59:22 [ 1] [ 4] [0810] +06:59:22 [ 7] [ 10] [0319115830] +06:59:22 [ 11] [ 6] [155038] +06:59:22 [ 39] [ 2] [00] +06:59:22 [ 70] [ 3] [301] +06:59:22 ============================================================================ +06:59:22 Calculate Source COMM Id = 2 +06:59:22 ============================================================================ +06:59:22 + + +waiting on router queue for slot.... +06:59:33 ============================================================================ +06:59:33 Slot Id : <428> +06:59:33 Transaction Type : REQUEST +06:59:33 Received From : +06:59:33 ============================================================================ +06:59:33 FNo. Len. Field Value +06:59:33 ============================================================================ +06:59:33 [ 1] [ 4] [0800] +06:59:33 [ 7] [ 10] [0319115841] +06:59:33 [ 11] [ 6] [155039] +06:59:33 [ 70] [ 3] [301] +06:59:33 ============================================================================ +06:59:33 + + +waiting on router queue for slot.... +06:59:33 Sending to : +06:59:33 ============================================================================ +06:59:33 ============================================================================ +06:59:33 Slot Id : <428> +06:59:33 Transaction Type : RESPONSE +06:59:33 Received From : +06:59:33 ============================================================================ +06:59:33 FNo. Len. Field Value +06:59:33 ============================================================================ +06:59:33 [ 1] [ 4] [0810] +06:59:33 [ 7] [ 10] [0319115841] +06:59:33 [ 11] [ 6] [155039] +06:59:33 [ 39] [ 2] [00] +06:59:33 [ 70] [ 3] [301] +06:59:33 ============================================================================ +06:59:33 Calculate Source COMM Id = 2 +06:59:33 ============================================================================ +06:59:33 + + +waiting on router queue for slot.... +06:59:44 ============================================================================ +06:59:44 Slot Id : <427> +06:59:44 Transaction Type : REQUEST +06:59:44 Received From : +06:59:44 ============================================================================ +06:59:44 FNo. Len. Field Value +06:59:44 ============================================================================ +06:59:44 [ 1] [ 4] [0800] +06:59:44 [ 7] [ 10] [0319115852] +06:59:44 [ 11] [ 6] [155040] +06:59:44 [ 70] [ 3] [301] +06:59:44 ============================================================================ +06:59:44 + + +waiting on router queue for slot.... +06:59:44 Sending to : +06:59:44 ============================================================================ +06:59:44 ============================================================================ +06:59:44 Slot Id : <427> +06:59:44 Transaction Type : RESPONSE +06:59:44 Received From : +06:59:44 ============================================================================ +06:59:44 FNo. Len. Field Value +06:59:44 ============================================================================ +06:59:44 [ 1] [ 4] [0810] +06:59:44 [ 7] [ 10] [0319115852] +06:59:44 [ 11] [ 6] [155040] +06:59:44 [ 39] [ 2] [00] +06:59:44 [ 70] [ 3] [301] +06:59:44 ============================================================================ +06:59:44 Calculate Source COMM Id = 2 +06:59:44 ============================================================================ +06:59:44 + + +waiting on router queue for slot.... +06:59:55 ============================================================================ +06:59:55 Slot Id : <426> +06:59:55 Transaction Type : REQUEST +06:59:55 Received From : +06:59:55 ============================================================================ +06:59:55 FNo. Len. Field Value +06:59:55 ============================================================================ +06:59:55 [ 1] [ 4] [0800] +06:59:55 [ 7] [ 10] [0319115903] +06:59:55 [ 11] [ 6] [155041] +06:59:55 [ 70] [ 3] [301] +06:59:55 ============================================================================ +06:59:55 + + +waiting on router queue for slot.... +06:59:55 Sending to : +06:59:55 ============================================================================ +06:59:55 ============================================================================ +06:59:55 Slot Id : <426> +06:59:55 Transaction Type : RESPONSE +06:59:55 Received From : +06:59:55 ============================================================================ +06:59:55 FNo. Len. Field Value +06:59:55 ============================================================================ +06:59:55 [ 1] [ 4] [0810] +06:59:55 [ 7] [ 10] [0319115903] +06:59:55 [ 11] [ 6] [155041] +06:59:55 [ 39] [ 2] [00] +06:59:55 [ 70] [ 3] [301] +06:59:55 ============================================================================ +06:59:55 Calculate Source COMM Id = 2 +06:59:55 ============================================================================ +06:59:55 + + +waiting on router queue for slot.... +06:59:55 ============================================================================ +06:59:55 Slot Id : <431> +06:59:55 Transaction Type : REQUEST +06:59:55 Received From : +06:59:55 ============================================================================ +06:59:55 FNo. Len. Field Value +06:59:55 ============================================================================ +06:59:55 [ 1] [ 4] [0800] +06:59:55 [ 7] [ 10] [0320000742] +06:59:55 [ 11] [ 6] [012479] +06:59:55 [ 37] [ 12] [57907012479] +06:59:55 [ 70] [ 3] [301] +06:59:55 ============================================================================ +06:59:55 + + +waiting on router queue for slot.... +06:59:55 Sending to : +06:59:55 ============================================================================ +06:59:55 ============================================================================ +06:59:55 Slot Id : <431> +06:59:55 Transaction Type : RESPONSE +06:59:55 Received From : +06:59:55 ============================================================================ +06:59:55 FNo. Len. Field Value +06:59:55 ============================================================================ +06:59:55 [ 1] [ 4] [0810] +06:59:55 [ 7] [ 10] [0320000742] +06:59:55 [ 11] [ 6] [012479] +06:59:55 [ 37] [ 12] [579070124790] +06:59:55 [ 39] [ 2] [00] +06:59:55 [ 70] [ 3] [810] +06:59:55 ============================================================================ +06:59:55 Calculate Source COMM Id = 1 +06:59:55 ============================================================================ +06:59:55 + + +waiting on router queue for slot.... +07:00:05 ============================================================================ +07:00:05 Slot Id : <451> +07:00:05 Transaction Type : REQUEST +07:00:05 Received From : +07:00:05 ============================================================================ +07:00:05 FNo. Len. Field Value +07:00:05 ============================================================================ +07:00:05 [ 1] [ 4] [0800] +07:00:05 [ 7] [ 10] [0319115914] +07:00:05 [ 11] [ 6] [155042] +07:00:05 [ 70] [ 3] [301] +07:00:05 ============================================================================ +07:00:05 + + +waiting on router queue for slot.... +07:00:05 Sending to : +07:00:05 ============================================================================ +07:00:05 ============================================================================ +07:00:05 Slot Id : <451> +07:00:05 Transaction Type : RESPONSE +07:00:05 Received From : +07:00:05 ============================================================================ +07:00:05 FNo. Len. Field Value +07:00:05 ============================================================================ +07:00:05 [ 1] [ 4] [0810] +07:00:05 [ 7] [ 10] [0319115914] +07:00:05 [ 11] [ 6] [155042] +07:00:05 [ 39] [ 2] [00] +07:00:05 [ 70] [ 3] [301] +07:00:05 ============================================================================ +07:00:05 Calculate Source COMM Id = 2 +07:00:05 ============================================================================ +07:00:05 + + +waiting on router queue for slot.... +07:00:08 ============================================================================ +07:00:08 Slot Id : <457> +07:00:08 Transaction Type : REQUEST +07:00:08 Received From : +07:00:08 ============================================================================ +07:00:08 FNo. Len. Field Value +07:00:08 ============================================================================ +07:00:08 [ 1] [ 4] [0800] +07:00:08 [ 2] [ 5] [02531] +07:00:08 [ 3] [ 6] [579078] +07:00:08 [ 7] [ 10] [0320000008] +07:00:08 [ 11] [ 6] [806818] +07:00:08 [ 15] [ 10] [0320000008] +07:00:08 [ 37] [ 11] [57907806818] +07:00:08 [ 70] [ 3] [001] +07:00:08 ============================================================================ +07:00:08 + + +waiting on router queue for slot.... +07:00:08 ============================================================================ +07:00:08 Slot Id : <457> +07:00:08 Transaction Type : RESPONSE +07:00:08 Received From : +07:00:08 ============================================================================ +07:00:08 FNo. Len. Field Value +07:00:08 ============================================================================ +07:00:08 [ 1] [ 4] [0810] +07:00:08 [ 7] [ 10] [0320000008] +07:00:08 [ 11] [ 6] [806818] +07:00:08 [ 15] [ 4] [0320] +07:00:08 [ 37] [ 12] [57907806818] +07:00:08 [ 39] [ 2] [00] +07:00:08 [ 70] [ 3] [001] +07:00:08 ============================================================================ +07:00:08 Sending to : +07:00:08 ============================================================================ +07:00:08 + + +waiting on router queue for slot.... +07:00:16 ============================================================================ +07:00:16 Slot Id : <422> +07:00:16 Transaction Type : REQUEST +07:00:16 Received From : +07:00:16 ============================================================================ +07:00:16 FNo. Len. Field Value +07:00:16 ============================================================================ +07:00:16 [ 1] [ 4] [0200] +07:00:16 [ 2] [ 16] [2206990000092155] +07:00:16 [ 3] [ 6] [301000] +07:00:16 [ 4] [ 12] [000000000000] +07:00:16 [ 7] [ 10] [0320070012] +07:00:16 [ 11] [ 6] [666827] +07:00:16 [ 12] [ 6] [070012] +07:00:16 [ 13] [ 4] [0320] +07:00:16 [ 15] [ 4] [0320] +07:00:16 [ 18] [ 4] [6011] +07:00:16 [ 22] [ 3] [900] +07:00:16 [ 25] [ 2] [02] +07:00:16 [ 28] [ 9] [D00000000] +07:00:16 [ 32] [ 6] [621354] +07:00:16 [ 35] [ 32] [2206990000092155=971012614426313] +07:00:16 [ 37] [ 12] [507904119573] +07:00:16 [ 41] [ 8] [08000800] +07:00:16 [ 42] [ 15] [NATIVE ] +07:00:16 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:00:16 [ 49] [ 3] [418] +07:00:16 [ 52] [ 16] [E9EFDBB38B138E9C] +07:00:16 ============================================================================ +07:00:16 + + +waiting on router queue for slot.... +07:00:16 Sending to : +07:00:16 ============================================================================ +07:00:16 Sending to : +07:00:16 ============================================================================ +07:00:16 ============================================================================ +07:00:16 Slot Id : <422> +07:00:16 Transaction Type : REQUEST +07:00:16 Received From : +07:00:16 ============================================================================ +07:00:16 FNo. Len. Field Value +07:00:16 ============================================================================ +07:00:16 [ 1] [ 4] [0200] +07:00:16 [ 2] [ 16] [2206990000092155] +07:00:16 [ 3] [ 6] [301000] +07:00:16 [ 4] [ 12] [000000000000] +07:00:16 [ 7] [ 10] [0320070012] +07:00:16 [ 11] [ 6] [666827] +07:00:16 [ 12] [ 6] [070012] +07:00:16 [ 13] [ 4] [0320] +07:00:16 [ 15] [ 4] [0320] +07:00:16 [ 18] [ 4] [6011] +07:00:16 [ 22] [ 3] [900] +07:00:16 [ 25] [ 2] [02] +07:00:16 [ 28] [ 9] [D00000000] +07:00:16 [ 32] [ 6] [621354] +07:00:16 [ 35] [ 32] [2206990000092155=971012614426313] +07:00:16 [ 37] [ 12] [507904119573] +07:00:16 [ 41] [ 8] [08000800] +07:00:16 [ 42] [ 15] [NATIVE ] +07:00:16 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:00:16 [ 49] [ 3] [418] +07:00:16 [ 52] [ 16] [E9EFDBB38B138E9C] +07:00:16 ============================================================================ +07:00:16 + + +waiting on router queue for slot.... +07:00:16 Sending to : +07:00:16 ============================================================================ +07:00:16 ============================================================================ +07:00:16 Slot Id : <422> +07:00:16 Transaction Type : REQUEST +07:00:16 Received From : +07:00:16 ============================================================================ +07:00:16 FNo. Len. Field Value +07:00:16 ============================================================================ +07:00:16 [ 1] [ 4] [0200] +07:00:16 [ 2] [ 16] [2206990000092155] +07:00:16 [ 3] [ 6] [301000] +07:00:16 [ 4] [ 12] [000000000000] +07:00:16 [ 7] [ 10] [0320070012] +07:00:16 [ 11] [ 6] [666827] +07:00:16 [ 12] [ 6] [070012] +07:00:16 [ 13] [ 4] [0320] +07:00:16 [ 15] [ 4] [0320] +07:00:16 [ 18] [ 4] [6011] +07:00:16 [ 22] [ 3] [900] +07:00:16 [ 25] [ 2] [02] +07:00:16 [ 28] [ 9] [D00000000] +07:00:16 [ 32] [ 6] [621354] +07:00:16 [ 35] [ 32] [2206990000092155=971012614426313] +07:00:16 [ 37] [ 12] [507904119573] +07:00:16 [ 41] [ 8] [08000800] +07:00:16 [ 42] [ 15] [NATIVE ] +07:00:16 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:00:16 [ 49] [ 3] [418] +07:00:16 [ 52] [ 16] [18C469CCB5FC97BA] +07:00:16 ============================================================================ +07:00:16 + + +waiting on router queue for slot.... +07:00:16 Sending to : <1> +07:00:16 ============================================================================ +07:00:16 ============================================================================ +07:00:16 Slot Id : <462> +07:00:16 Transaction Type : REQUEST +07:00:16 Received From : +07:00:16 ============================================================================ +07:00:16 FNo. Len. Field Value +07:00:16 ============================================================================ +07:00:16 [ 1] [ 4] [0800] +07:00:16 [ 7] [ 10] [0319115925] +07:00:16 [ 11] [ 6] [155043] +07:00:16 [ 70] [ 3] [301] +07:00:16 ============================================================================ +07:00:16 + + +waiting on router queue for slot.... +07:00:16 Sending to : +07:00:16 ============================================================================ +07:00:16 ============================================================================ +07:00:16 Slot Id : <462> +07:00:16 Transaction Type : RESPONSE +07:00:16 Received From : +07:00:16 ============================================================================ +07:00:16 FNo. Len. Field Value +07:00:16 ============================================================================ +07:00:16 [ 1] [ 4] [0810] +07:00:16 [ 7] [ 10] [0319115925] +07:00:16 [ 11] [ 6] [155043] +07:00:16 [ 39] [ 2] [00] +07:00:16 [ 70] [ 3] [301] +07:00:16 ============================================================================ +07:00:16 Calculate Source COMM Id = 2 +07:00:16 ============================================================================ +07:00:16 + + +waiting on router queue for slot.... +07:00:16 ============================================================================ +07:00:16 Slot Id : <422> +07:00:16 Transaction Type : RESPONSE +07:00:16 Received From : +07:00:16 ============================================================================ +07:00:16 FNo. Len. Field Value +07:00:16 ============================================================================ +07:00:16 [ 1] [ 4] [0210] +07:00:16 [ 2] [ 16] [2206990000092155] +07:00:16 [ 3] [ 6] [301000] +07:00:16 [ 4] [ 12] [000000000000] +07:00:16 [ 7] [ 10] [0320070012] +07:00:16 [ 11] [ 6] [666827] +07:00:16 [ 12] [ 6] [070012] +07:00:16 [ 13] [ 4] [0320] +07:00:16 [ 15] [ 4] [0320] +07:00:16 [ 18] [ 4] [6011] +07:00:16 [ 22] [ 3] [900] +07:00:16 [ 32] [ 6] [621354] +07:00:16 [ 35] [ 32] [2206990000092155=971012614426313] +07:00:16 [ 37] [ 12] [507904119573] +07:00:16 [ 38] [ 6] [070804] +07:00:16 [ 39] [ 2] [55] +07:00:16 [ 41] [ 8] [08000800] +07:00:16 [ 49] [ 3] [418] +07:00:16 ============================================================================ +07:00:16 Sending to : +07:00:16 ============================================================================ +07:00:16 + + +waiting on router queue for slot.... +07:00:18 ============================================================================ +07:00:18 Slot Id : <422> +07:00:18 Transaction Type : RESPONSE +07:00:18 Received From : +07:00:18 ============================================================================ +07:00:18 FNo. Len. Field Value +07:00:18 ============================================================================ +07:00:18 [ 1] [ 4] [0210] +07:00:18 [ 2] [ 16] [2206990000092155] +07:00:18 [ 3] [ 6] [301000] +07:00:18 [ 4] [ 12] [000000000000] +07:00:18 [ 7] [ 10] [0320070012] +07:00:18 [ 11] [ 6] [666827] +07:00:18 [ 12] [ 6] [070012] +07:00:18 [ 13] [ 4] [0320] +07:00:18 [ 15] [ 4] [0320] +07:00:18 [ 18] [ 4] [6011] +07:00:18 [ 22] [ 3] [900] +07:00:18 [ 32] [ 6] [621354] +07:00:18 [ 35] [ 32] [2206990000092155=971012614426313] +07:00:18 [ 37] [ 12] [507904119573] +07:00:18 [ 38] [ 6] [070804] +07:00:18 [ 39] [ 2] [55] +07:00:18 [ 41] [ 8] [08000800] +07:00:18 [ 49] [ 3] [418] +07:00:18 ============================================================================ +07:00:18 Calculate Source COMM Id = 0 +07:00:18 ============================================================================ +07:00:18 + + +waiting on router queue for slot.... +07:00:20 ============================================================================ +07:00:20 Slot Id : <465> +07:00:20 Transaction Type : REQUEST +07:00:20 Received From : +07:00:20 ============================================================================ +07:00:20 FNo. Len. Field Value +07:00:20 ============================================================================ +07:00:20 [ 1] [ 4] [0200] +07:00:20 [ 2] [ 16] [6688990040023135] +07:00:20 [ 3] [ 6] [300000] +07:00:20 [ 4] [ 12] [000000000000] +07:00:20 [ 7] [ 10] [0320070017] +07:00:20 [ 11] [ 6] [666834] +07:00:20 [ 12] [ 6] [070017] +07:00:20 [ 13] [ 4] [0320] +07:00:20 [ 15] [ 4] [0320] +07:00:20 [ 18] [ 4] [6011] +07:00:20 [ 22] [ 3] [900] +07:00:20 [ 25] [ 2] [02] +07:00:20 [ 28] [ 9] [D00000000] +07:00:20 [ 32] [ 6] [621354] +07:00:20 [ 35] [ 37] [6688990040023135=97111261219218100000] +07:00:20 [ 37] [ 12] [507904136309] +07:00:20 [ 41] [ 8] [20000800] +07:00:20 [ 42] [ 15] [NATIVE ] +07:00:20 [ 43] [ 40] [Saravane Branch02 Saravane LAO] +07:00:20 [ 49] [ 3] [418] +07:00:20 [ 52] [ 16] [B3674E0E4610C51F] +07:00:20 ============================================================================ +07:00:20 + + +waiting on router queue for slot.... +07:00:20 Sending to : +07:00:20 ============================================================================ +07:00:20 Sending to : +07:00:20 ============================================================================ +07:00:20 ============================================================================ +07:00:20 Slot Id : <465> +07:00:20 Transaction Type : REQUEST +07:00:20 Received From : +07:00:20 ============================================================================ +07:00:20 FNo. Len. Field Value +07:00:20 ============================================================================ +07:00:20 [ 1] [ 4] [0200] +07:00:20 [ 2] [ 16] [6688990040023135] +07:00:20 [ 3] [ 6] [300000] +07:00:20 [ 4] [ 12] [000000000000] +07:00:20 [ 7] [ 10] [0320070017] +07:00:20 [ 11] [ 6] [666834] +07:00:20 [ 12] [ 6] [070017] +07:00:20 [ 13] [ 4] [0320] +07:00:20 [ 15] [ 4] [0320] +07:00:20 [ 18] [ 4] [6011] +07:00:20 [ 22] [ 3] [900] +07:00:20 [ 25] [ 2] [02] +07:00:20 [ 28] [ 9] [D00000000] +07:00:20 [ 32] [ 6] [621354] +07:00:20 [ 35] [ 37] [6688990040023135=97111261219218100000] +07:00:20 [ 37] [ 12] [507904136309] +07:00:20 [ 41] [ 8] [20000800] +07:00:20 [ 42] [ 15] [NATIVE ] +07:00:20 [ 43] [ 40] [Saravane Branch02 Saravane LAO] +07:00:20 [ 49] [ 3] [418] +07:00:20 [ 52] [ 16] [B3674E0E4610C51F] +07:00:20 ============================================================================ +07:00:20 + + +waiting on router queue for slot.... +07:00:20 Sending to : +07:00:20 ============================================================================ +07:00:20 ============================================================================ +07:00:20 Slot Id : <465> +07:00:20 Transaction Type : REQUEST +07:00:20 Received From : +07:00:20 ============================================================================ +07:00:20 FNo. Len. Field Value +07:00:20 ============================================================================ +07:00:20 [ 1] [ 4] [0200] +07:00:20 [ 2] [ 16] [6688990040023135] +07:00:20 [ 3] [ 6] [300000] +07:00:20 [ 4] [ 12] [000000000000] +07:00:20 [ 7] [ 10] [0320070017] +07:00:20 [ 11] [ 6] [666834] +07:00:20 [ 12] [ 6] [070017] +07:00:20 [ 13] [ 4] [0320] +07:00:20 [ 15] [ 4] [0320] +07:00:20 [ 18] [ 4] [6011] +07:00:20 [ 22] [ 3] [900] +07:00:20 [ 25] [ 2] [02] +07:00:20 [ 28] [ 9] [D00000000] +07:00:20 [ 32] [ 6] [621354] +07:00:20 [ 35] [ 37] [6688990040023135=97111261219218100000] +07:00:20 [ 37] [ 12] [507904136309] +07:00:20 [ 41] [ 8] [20000800] +07:00:20 [ 42] [ 15] [NATIVE ] +07:00:20 [ 43] [ 40] [Saravane Branch02 Saravane LAO] +07:00:20 [ 49] [ 3] [418] +07:00:20 [ 52] [ 16] [9E50045EA1431E08] +07:00:20 ============================================================================ +07:00:20 + + +waiting on router queue for slot.... +07:00:20 Sending to : <4> +07:00:20 ============================================================================ +07:00:21 ============================================================================ +07:00:21 Slot Id : <465> +07:00:21 Transaction Type : RESPONSE +07:00:21 Received From : +07:00:21 ============================================================================ +07:00:21 FNo. Len. Field Value +07:00:21 ============================================================================ +07:00:21 [ 1] [ 4] [0210] +07:00:21 [ 2] [ 16] [6688990040023135] +07:00:21 [ 3] [ 6] [300000] +07:00:21 [ 4] [ 12] [000000000000] +07:00:21 [ 11] [ 6] [666834] +07:00:21 [ 12] [ 6] [070017] +07:00:21 [ 15] [ 4] [0320] +07:00:21 [ 18] [ 4] [6011] +07:00:21 [ 32] [ 6] [621354] +07:00:21 [ 35] [ 37] [6688990040023135=97111261219218100000] +07:00:21 [ 37] [ 12] [507904136309] +07:00:21 [ 38] [ 6] [538174] +07:00:21 [ 39] [ 2] [00] +07:00:21 [ 41] [ 8] [20000800] +07:00:21 [ 49] [ 3] [418] +07:00:21 [ 54] [ 20] [0002418C000615821100] +07:00:21 ============================================================================ +07:00:21 Sending to : +07:00:21 ============================================================================ +07:00:21 + + +waiting on router queue for slot.... +07:00:23 ============================================================================ +07:00:23 Slot Id : <444> +07:00:23 Transaction Type : REQUEST +07:00:23 Received From : +07:00:23 ============================================================================ +07:00:23 FNo. Len. Field Value +07:00:23 ============================================================================ +07:00:23 [ 1] [ 4] [0800] +07:00:23 [ 7] [ 10] [0320141211] +07:00:23 [ 11] [ 6] [071211] +07:00:23 [ 37] [ 12] [57907071211] +07:00:23 [ 70] [ 3] [301] +07:00:23 ============================================================================ +07:00:23 + + +waiting on router queue for slot.... +07:00:23 Sending to : +07:00:23 ============================================================================ +07:00:23 ============================================================================ +07:00:23 Slot Id : <444> +07:00:23 Transaction Type : RESPONSE +07:00:23 Received From : +07:00:23 ============================================================================ +07:00:23 FNo. Len. Field Value +07:00:23 ============================================================================ +07:00:23 [ 1] [ 4] [0810] +07:00:23 [ 7] [ 10] [0320141211] +07:00:23 [ 11] [ 6] [071211] +07:00:23 [ 37] [ 12] [579070712110] +07:00:23 [ 39] [ 2] [00] +07:00:23 [ 70] [ 3] [810] +07:00:23 ============================================================================ +07:00:23 Calculate Source COMM Id = 6 +07:00:23 ============================================================================ +07:00:23 + + +waiting on router queue for slot.... +07:00:23 ============================================================================ +07:00:23 Slot Id : <465> +07:00:23 Transaction Type : RESPONSE +07:00:23 Received From : +07:00:23 ============================================================================ +07:00:23 FNo. Len. Field Value +07:00:23 ============================================================================ +07:00:23 [ 1] [ 4] [0210] +07:00:23 [ 2] [ 16] [6688990040023135] +07:00:23 [ 3] [ 6] [300000] +07:00:23 [ 4] [ 12] [000000000000] +07:00:23 [ 11] [ 6] [666834] +07:00:23 [ 12] [ 6] [070017] +07:00:23 [ 15] [ 4] [0320] +07:00:23 [ 18] [ 4] [6011] +07:00:23 [ 32] [ 6] [621354] +07:00:23 [ 35] [ 37] [6688990040023135=97111261219218100000] +07:00:23 [ 37] [ 12] [507904136309] +07:00:23 [ 38] [ 6] [538174] +07:00:23 [ 39] [ 2] [00] +07:00:23 [ 41] [ 8] [20000800] +07:00:23 [ 49] [ 3] [418] +07:00:23 [ 54] [ 20] [0002418C000615821100] +07:00:23 ============================================================================ +07:00:23 Calculate Source COMM Id = 0 +07:00:23 ============================================================================ +07:00:23 + + +waiting on router queue for slot.... +07:00:32 ============================================================================ +07:00:32 Slot Id : <421> +07:00:32 Transaction Type : REQUEST +07:00:32 Received From : +07:00:32 ============================================================================ +07:00:32 FNo. Len. Field Value +07:00:32 ============================================================================ +07:00:32 [ 1] [ 4] [0800] +07:00:32 [ 7] [ 10] [0319115940] +07:00:32 [ 11] [ 6] [155044] +07:00:32 [ 70] [ 3] [301] +07:00:32 ============================================================================ +07:00:32 + + +waiting on router queue for slot.... +07:00:32 Sending to : +07:00:32 ============================================================================ +07:00:32 ============================================================================ +07:00:32 Slot Id : <421> +07:00:32 Transaction Type : RESPONSE +07:00:32 Received From : +07:00:32 ============================================================================ +07:00:32 FNo. Len. Field Value +07:00:32 ============================================================================ +07:00:32 [ 1] [ 4] [0810] +07:00:32 [ 7] [ 10] [0319115940] +07:00:32 [ 11] [ 6] [155044] +07:00:32 [ 39] [ 2] [00] +07:00:32 [ 70] [ 3] [301] +07:00:32 ============================================================================ +07:00:32 Calculate Source COMM Id = 2 +07:00:32 ============================================================================ +07:00:32 + + +waiting on router queue for slot.... +07:00:42 ============================================================================ +07:00:42 Slot Id : <439> +07:00:42 Transaction Type : REQUEST +07:00:42 Received From : +07:00:42 ============================================================================ +07:00:42 FNo. Len. Field Value +07:00:42 ============================================================================ +07:00:42 [ 1] [ 4] [0800] +07:00:42 [ 7] [ 10] [0319115951] +07:00:42 [ 11] [ 6] [155045] +07:00:42 [ 70] [ 3] [301] +07:00:42 ============================================================================ +07:00:42 + + +waiting on router queue for slot.... +07:00:42 Sending to : +07:00:42 ============================================================================ +07:00:42 ============================================================================ +07:00:42 Slot Id : <439> +07:00:42 Transaction Type : RESPONSE +07:00:42 Received From : +07:00:42 ============================================================================ +07:00:42 FNo. Len. Field Value +07:00:42 ============================================================================ +07:00:42 [ 1] [ 4] [0810] +07:00:42 [ 7] [ 10] [0319115951] +07:00:42 [ 11] [ 6] [155045] +07:00:42 [ 39] [ 2] [00] +07:00:42 [ 70] [ 3] [301] +07:00:42 ============================================================================ +07:00:42 Calculate Source COMM Id = 2 +07:00:42 ============================================================================ +07:00:42 + + +waiting on router queue for slot.... +07:00:43 ============================================================================ +07:00:43 Slot Id : <458> +07:00:43 Transaction Type : REQUEST +07:00:43 Received From : +07:00:43 ============================================================================ +07:00:43 FNo. Len. Field Value +07:00:43 ============================================================================ +07:00:43 [ 1] [ 4] [0200] +07:00:43 [ 2] [ 16] [2206990000092155] +07:00:43 [ 3] [ 6] [301000] +07:00:43 [ 4] [ 12] [000000000000] +07:00:43 [ 7] [ 10] [0320070040] +07:00:43 [ 11] [ 6] [666871] +07:00:43 [ 12] [ 6] [070040] +07:00:43 [ 13] [ 4] [0320] +07:00:43 [ 15] [ 4] [0320] +07:00:43 [ 18] [ 4] [6011] +07:00:43 [ 22] [ 3] [900] +07:00:43 [ 25] [ 2] [02] +07:00:43 [ 28] [ 9] [D00000000] +07:00:43 [ 32] [ 6] [621354] +07:00:43 [ 35] [ 32] [2206990000092155=971012614426313] +07:00:43 [ 37] [ 12] [507904119574] +07:00:43 [ 41] [ 8] [08000800] +07:00:43 [ 42] [ 15] [NATIVE ] +07:00:43 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:00:43 [ 49] [ 3] [418] +07:00:43 [ 52] [ 16] [B1A2E93DB6E8A815] +07:00:43 ============================================================================ +07:00:43 + + +waiting on router queue for slot.... +07:00:43 Sending to : +07:00:43 ============================================================================ +07:00:43 Sending to : +07:00:43 ============================================================================ +07:00:43 ============================================================================ +07:00:43 Slot Id : <458> +07:00:43 Transaction Type : REQUEST +07:00:43 Received From : +07:00:43 ============================================================================ +07:00:43 FNo. Len. Field Value +07:00:43 ============================================================================ +07:00:43 [ 1] [ 4] [0200] +07:00:43 [ 2] [ 16] [2206990000092155] +07:00:43 [ 3] [ 6] [301000] +07:00:43 [ 4] [ 12] [000000000000] +07:00:43 [ 7] [ 10] [0320070040] +07:00:43 [ 11] [ 6] [666871] +07:00:43 [ 12] [ 6] [070040] +07:00:43 [ 13] [ 4] [0320] +07:00:43 [ 15] [ 4] [0320] +07:00:43 [ 18] [ 4] [6011] +07:00:43 [ 22] [ 3] [900] +07:00:43 [ 25] [ 2] [02] +07:00:43 [ 28] [ 9] [D00000000] +07:00:43 [ 32] [ 6] [621354] +07:00:43 [ 35] [ 32] [2206990000092155=971012614426313] +07:00:43 [ 37] [ 12] [507904119574] +07:00:43 [ 41] [ 8] [08000800] +07:00:43 [ 42] [ 15] [NATIVE ] +07:00:43 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:00:43 [ 49] [ 3] [418] +07:00:43 [ 52] [ 16] [B1A2E93DB6E8A815] +07:00:43 ============================================================================ +07:00:43 + + +waiting on router queue for slot.... +07:00:43 Sending to : +07:00:43 ============================================================================ +07:00:43 ============================================================================ +07:00:43 Slot Id : <458> +07:00:43 Transaction Type : REQUEST +07:00:43 Received From : +07:00:43 ============================================================================ +07:00:43 FNo. Len. Field Value +07:00:43 ============================================================================ +07:00:43 [ 1] [ 4] [0200] +07:00:43 [ 2] [ 16] [2206990000092155] +07:00:43 [ 3] [ 6] [301000] +07:00:43 [ 4] [ 12] [000000000000] +07:00:43 [ 7] [ 10] [0320070040] +07:00:43 [ 11] [ 6] [666871] +07:00:43 [ 12] [ 6] [070040] +07:00:43 [ 13] [ 4] [0320] +07:00:43 [ 15] [ 4] [0320] +07:00:43 [ 18] [ 4] [6011] +07:00:43 [ 22] [ 3] [900] +07:00:43 [ 25] [ 2] [02] +07:00:43 [ 28] [ 9] [D00000000] +07:00:43 [ 32] [ 6] [621354] +07:00:43 [ 35] [ 32] [2206990000092155=971012614426313] +07:00:43 [ 37] [ 12] [507904119574] +07:00:43 [ 41] [ 8] [08000800] +07:00:43 [ 42] [ 15] [NATIVE ] +07:00:43 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:00:43 [ 49] [ 3] [418] +07:00:43 [ 52] [ 16] [0686A65E994241DB] +07:00:43 ============================================================================ +07:00:43 + + +waiting on router queue for slot.... +07:00:43 Sending to : <1> +07:00:43 ============================================================================ +07:00:45 ============================================================================ +07:00:45 Slot Id : <458> +07:00:45 Transaction Type : RESPONSE +07:00:45 Received From : +07:00:45 ============================================================================ +07:00:45 FNo. Len. Field Value +07:00:45 ============================================================================ +07:00:45 [ 1] [ 4] [0210] +07:00:45 [ 2] [ 16] [2206990000092155] +07:00:45 [ 3] [ 6] [301000] +07:00:45 [ 4] [ 12] [000000000000] +07:00:45 [ 7] [ 10] [0320070040] +07:00:45 [ 11] [ 6] [666871] +07:00:45 [ 12] [ 6] [070040] +07:00:45 [ 13] [ 4] [0320] +07:00:45 [ 15] [ 4] [0320] +07:00:45 [ 18] [ 4] [6011] +07:00:45 [ 32] [ 6] [621354] +07:00:45 [ 35] [ 32] [2206990000092155=971012614426313] +07:00:45 [ 37] [ 12] [507904119574] +07:00:45 [ 38] [ 6] [416225] +07:00:45 [ 39] [ 2] [00] +07:00:45 [ 41] [ 8] [08000800] +07:00:45 [ 49] [ 3] [418] +07:00:45 [ 54] [ 40] [1001418C0002110992001002418C000211099200] +07:00:45 ============================================================================ +07:00:45 Sending to : +07:00:45 ============================================================================ +07:00:45 + + +waiting on router queue for slot.... +07:00:46 ============================================================================ +07:00:46 Slot Id : <458> +07:00:46 Transaction Type : RESPONSE +07:00:46 Received From : +07:00:46 ============================================================================ +07:00:46 FNo. Len. Field Value +07:00:46 ============================================================================ +07:00:46 [ 1] [ 4] [0210] +07:00:46 [ 2] [ 16] [2206990000092155] +07:00:46 [ 3] [ 6] [301000] +07:00:46 [ 4] [ 12] [000000000000] +07:00:46 [ 7] [ 10] [0320070040] +07:00:46 [ 11] [ 6] [666871] +07:00:46 [ 12] [ 6] [070040] +07:00:46 [ 13] [ 4] [0320] +07:00:46 [ 15] [ 4] [0320] +07:00:46 [ 18] [ 4] [6011] +07:00:46 [ 32] [ 6] [621354] +07:00:46 [ 35] [ 32] [2206990000092155=971012614426313] +07:00:46 [ 37] [ 12] [507904119574] +07:00:46 [ 38] [ 6] [416225] +07:00:46 [ 39] [ 2] [00] +07:00:46 [ 41] [ 8] [08000800] +07:00:46 [ 49] [ 3] [418] +07:00:46 [ 54] [ 40] [1001418C0002110992001002418C000211099200] +07:00:46 ============================================================================ +07:00:46 Calculate Source COMM Id = 0 +07:00:46 ============================================================================ +07:00:46 + + +waiting on router queue for slot.... +07:00:53 ============================================================================ +07:00:53 Slot Id : <423> +07:00:53 Transaction Type : REQUEST +07:00:53 Received From : +07:00:53 ============================================================================ +07:00:53 FNo. Len. Field Value +07:00:53 ============================================================================ +07:00:53 [ 1] [ 4] [0800] +07:00:53 [ 7] [ 10] [0320120002] +07:00:53 [ 11] [ 6] [155046] +07:00:53 [ 70] [ 3] [301] +07:00:53 ============================================================================ +07:00:53 + + +waiting on router queue for slot.... +07:00:53 Sending to : +07:00:53 ============================================================================ +07:00:53 ============================================================================ +07:00:53 Slot Id : <423> +07:00:53 Transaction Type : RESPONSE +07:00:53 Received From : +07:00:53 ============================================================================ +07:00:53 FNo. Len. Field Value +07:00:53 ============================================================================ +07:00:53 [ 1] [ 4] [0810] +07:00:53 [ 7] [ 10] [0320120002] +07:00:53 [ 11] [ 6] [155046] +07:00:53 [ 39] [ 2] [00] +07:00:53 [ 70] [ 3] [301] +07:00:53 ============================================================================ +07:00:53 Calculate Source COMM Id = 2 +07:00:53 ============================================================================ +07:00:53 + + +waiting on router queue for slot.... +07:01:10 ============================================================================ +07:01:10 Slot Id : <436> +07:01:10 Transaction Type : REQUEST +07:01:10 Received From : +07:01:10 ============================================================================ +07:01:10 FNo. Len. Field Value +07:01:10 ============================================================================ +07:01:10 [ 1] [ 4] [0800] +07:01:10 [ 2] [ 5] [02531] +07:01:10 [ 3] [ 6] [579078] +07:01:10 [ 7] [ 10] [0320000110] +07:01:10 [ 11] [ 6] [806819] +07:01:10 [ 15] [ 10] [0320000110] +07:01:10 [ 37] [ 11] [57907806819] +07:01:10 [ 70] [ 3] [001] +07:01:10 ============================================================================ +07:01:10 + + +waiting on router queue for slot.... +07:01:10 ============================================================================ +07:01:10 Slot Id : <436> +07:01:10 Transaction Type : RESPONSE +07:01:10 Received From : +07:01:10 ============================================================================ +07:01:10 FNo. Len. Field Value +07:01:10 ============================================================================ +07:01:10 [ 1] [ 4] [0810] +07:01:10 [ 7] [ 10] [0320000110] +07:01:10 [ 11] [ 6] [806819] +07:01:10 [ 15] [ 4] [0320] +07:01:10 [ 37] [ 12] [57907806819] +07:01:10 [ 39] [ 2] [00] +07:01:10 [ 70] [ 3] [001] +07:01:10 ============================================================================ +07:01:10 Sending to : +07:01:10 ============================================================================ +07:01:10 + + +waiting on router queue for slot.... +07:01:11 ============================================================================ +07:01:11 Slot Id : <466> +07:01:11 Transaction Type : REQUEST +07:01:11 Received From : +07:01:11 ============================================================================ +07:01:11 FNo. Len. Field Value +07:01:11 ============================================================================ +07:01:11 [ 1] [ 4] [0800] +07:01:11 [ 7] [ 10] [0320120019] +07:01:11 [ 11] [ 6] [155047] +07:01:11 [ 70] [ 3] [301] +07:01:11 ============================================================================ +07:01:11 + + +waiting on router queue for slot.... +07:01:11 Sending to : +07:01:11 ============================================================================ +07:01:11 ============================================================================ +07:01:11 Slot Id : <466> +07:01:11 Transaction Type : RESPONSE +07:01:11 Received From : +07:01:11 ============================================================================ +07:01:11 FNo. Len. Field Value +07:01:11 ============================================================================ +07:01:11 [ 1] [ 4] [0810] +07:01:11 [ 7] [ 10] [0320120019] +07:01:11 [ 11] [ 6] [155047] +07:01:11 [ 39] [ 2] [00] +07:01:11 [ 70] [ 3] [301] +07:01:11 ============================================================================ +07:01:11 Calculate Source COMM Id = 2 +07:01:11 ============================================================================ +07:01:11 + + +waiting on router queue for slot.... +07:01:20 ============================================================================ +07:01:20 Slot Id : <459> +07:01:20 Transaction Type : REQUEST +07:01:20 Received From : +07:01:20 ============================================================================ +07:01:20 FNo. Len. Field Value +07:01:20 ============================================================================ +07:01:20 [ 1] [ 4] [0800] +07:01:20 [ 7] [ 10] [0319235912] +07:01:20 [ 11] [ 6] [049780] +07:01:20 [ 37] [ 12] [57906049780] +07:01:20 [ 70] [ 3] [301] +07:01:20 ============================================================================ +07:01:20 + + +waiting on router queue for slot.... +07:01:20 Sending to : +07:01:20 ============================================================================ +07:01:20 ============================================================================ +07:01:20 Slot Id : <459> +07:01:20 Transaction Type : RESPONSE +07:01:20 Received From : +07:01:20 ============================================================================ +07:01:20 FNo. Len. Field Value +07:01:20 ============================================================================ +07:01:20 [ 1] [ 4] [0810] +07:01:20 [ 7] [ 10] [0319235912] +07:01:20 [ 11] [ 6] [049780] +07:01:20 [ 37] [ 12] [579060497800] +07:01:20 [ 39] [ 2] [00] +07:01:20 [ 70] [ 3] [810] +07:01:20 ============================================================================ +07:01:20 Calculate Source COMM Id = 4 +07:01:20 ============================================================================ +07:01:20 + + +waiting on router queue for slot.... +07:01:22 ============================================================================ +07:01:22 Slot Id : <475> +07:01:22 Transaction Type : REQUEST +07:01:22 Received From : +07:01:22 ============================================================================ +07:01:22 FNo. Len. Field Value +07:01:22 ============================================================================ +07:01:22 [ 1] [ 4] [0800] +07:01:22 [ 7] [ 10] [0320120030] +07:01:22 [ 11] [ 6] [155048] +07:01:22 [ 70] [ 3] [301] +07:01:22 ============================================================================ +07:01:22 + + +waiting on router queue for slot.... +07:01:22 Sending to : +07:01:22 ============================================================================ +07:01:22 ============================================================================ +07:01:22 Slot Id : <475> +07:01:22 Transaction Type : RESPONSE +07:01:22 Received From : +07:01:22 ============================================================================ +07:01:22 FNo. Len. Field Value +07:01:22 ============================================================================ +07:01:22 [ 1] [ 4] [0810] +07:01:22 [ 7] [ 10] [0320120030] +07:01:22 [ 11] [ 6] [155048] +07:01:22 [ 39] [ 2] [00] +07:01:22 [ 70] [ 3] [301] +07:01:22 ============================================================================ +07:01:22 Calculate Source COMM Id = 2 +07:01:22 ============================================================================ +07:01:22 + + +waiting on router queue for slot.... +07:01:28 ============================================================================ +07:01:28 Slot Id : <468> +07:01:28 Transaction Type : REQUEST +07:01:28 Received From : +07:01:28 ============================================================================ +07:01:28 FNo. Len. Field Value +07:01:28 ============================================================================ +07:01:28 [ 1] [ 4] [0800] +07:01:28 [ 7] [ 10] [0320141316] +07:01:28 [ 11] [ 6] [071316] +07:01:28 [ 37] [ 12] [57907071316] +07:01:28 [ 70] [ 3] [301] +07:01:28 ============================================================================ +07:01:28 + + +waiting on router queue for slot.... +07:01:28 Sending to : +07:01:28 ============================================================================ +07:01:28 ============================================================================ +07:01:28 Slot Id : <468> +07:01:28 Transaction Type : RESPONSE +07:01:28 Received From : +07:01:28 ============================================================================ +07:01:28 FNo. Len. Field Value +07:01:28 ============================================================================ +07:01:28 [ 1] [ 4] [0810] +07:01:28 [ 7] [ 10] [0320141316] +07:01:28 [ 11] [ 6] [071316] +07:01:28 [ 37] [ 12] [579070713160] +07:01:28 [ 39] [ 2] [00] +07:01:28 [ 70] [ 3] [810] +07:01:28 ============================================================================ +07:01:28 Calculate Source COMM Id = 6 +07:01:28 ============================================================================ +07:01:28 + + +waiting on router queue for slot.... +07:01:33 ============================================================================ +07:01:33 Slot Id : <452> +07:01:33 Transaction Type : REQUEST +07:01:33 Received From : +07:01:33 ============================================================================ +07:01:33 FNo. Len. Field Value +07:01:33 ============================================================================ +07:01:33 [ 1] [ 4] [0800] +07:01:33 [ 7] [ 10] [0320120041] +07:01:33 [ 11] [ 6] [155049] +07:01:33 [ 70] [ 3] [301] +07:01:33 ============================================================================ +07:01:33 + + +waiting on router queue for slot.... +07:01:33 Sending to : +07:01:33 ============================================================================ +07:01:33 ============================================================================ +07:01:33 Slot Id : <452> +07:01:33 Transaction Type : RESPONSE +07:01:33 Received From : +07:01:33 ============================================================================ +07:01:33 FNo. Len. Field Value +07:01:33 ============================================================================ +07:01:33 [ 1] [ 4] [0810] +07:01:33 [ 7] [ 10] [0320120041] +07:01:33 [ 11] [ 6] [155049] +07:01:33 [ 39] [ 2] [00] +07:01:33 [ 70] [ 3] [301] +07:01:33 ============================================================================ +07:01:33 Calculate Source COMM Id = 2 +07:01:33 ============================================================================ +07:01:33 + + +waiting on router queue for slot.... +07:01:43 ============================================================================ +07:01:43 Slot Id : <449> +07:01:43 Transaction Type : REQUEST +07:01:43 Received From : +07:01:43 ============================================================================ +07:01:43 FNo. Len. Field Value +07:01:43 ============================================================================ +07:01:43 [ 1] [ 4] [0800] +07:01:43 [ 7] [ 10] [0320120052] +07:01:43 [ 11] [ 6] [155050] +07:01:43 [ 70] [ 3] [301] +07:01:43 ============================================================================ +07:01:43 + + +waiting on router queue for slot.... +07:01:43 Sending to : +07:01:43 ============================================================================ +07:01:43 ============================================================================ +07:01:43 Slot Id : <449> +07:01:43 Transaction Type : RESPONSE +07:01:43 Received From : +07:01:43 ============================================================================ +07:01:43 FNo. Len. Field Value +07:01:43 ============================================================================ +07:01:43 [ 1] [ 4] [0810] +07:01:43 [ 7] [ 10] [0320120052] +07:01:43 [ 11] [ 6] [155050] +07:01:43 [ 39] [ 2] [00] +07:01:43 [ 70] [ 3] [301] +07:01:43 ============================================================================ +07:01:43 Calculate Source COMM Id = 2 +07:01:43 ============================================================================ +07:01:43 + + +waiting on router queue for slot.... +07:01:54 ============================================================================ +07:01:54 Slot Id : <455> +07:01:54 Transaction Type : REQUEST +07:01:54 Received From : +07:01:54 ============================================================================ +07:01:54 FNo. Len. Field Value +07:01:54 ============================================================================ +07:01:54 [ 1] [ 4] [0800] +07:01:54 [ 7] [ 10] [0320120103] +07:01:54 [ 11] [ 6] [155051] +07:01:54 [ 70] [ 3] [301] +07:01:54 ============================================================================ +07:01:54 + + +waiting on router queue for slot.... +07:01:54 Sending to : +07:01:54 ============================================================================ +07:01:54 ============================================================================ +07:01:54 Slot Id : <455> +07:01:54 Transaction Type : RESPONSE +07:01:54 Received From : +07:01:54 ============================================================================ +07:01:54 FNo. Len. Field Value +07:01:54 ============================================================================ +07:01:54 [ 1] [ 4] [0810] +07:01:54 [ 7] [ 10] [0320120103] +07:01:54 [ 11] [ 6] [155051] +07:01:54 [ 39] [ 2] [00] +07:01:54 [ 70] [ 3] [301] +07:01:54 ============================================================================ +07:01:54 Calculate Source COMM Id = 2 +07:01:54 ============================================================================ +07:01:54 + + +waiting on router queue for slot.... +07:02:10 ============================================================================ +07:02:10 Slot Id : <440> +07:02:10 Transaction Type : REQUEST +07:02:10 Received From : +07:02:10 ============================================================================ +07:02:10 FNo. Len. Field Value +07:02:10 ============================================================================ +07:02:10 [ 1] [ 4] [0800] +07:02:10 [ 7] [ 10] [0320120118] +07:02:10 [ 11] [ 6] [155052] +07:02:10 [ 70] [ 3] [301] +07:02:10 ============================================================================ +07:02:10 + + +waiting on router queue for slot.... +07:02:10 Sending to : +07:02:10 ============================================================================ +07:02:10 ============================================================================ +07:02:10 Slot Id : <440> +07:02:10 Transaction Type : RESPONSE +07:02:10 Received From : +07:02:10 ============================================================================ +07:02:10 FNo. Len. Field Value +07:02:10 ============================================================================ +07:02:10 [ 1] [ 4] [0810] +07:02:10 [ 7] [ 10] [0320120118] +07:02:10 [ 11] [ 6] [155052] +07:02:10 [ 39] [ 2] [00] +07:02:10 [ 70] [ 3] [301] +07:02:10 ============================================================================ +07:02:10 Calculate Source COMM Id = 2 +07:02:10 ============================================================================ +07:02:10 + + +waiting on router queue for slot.... +07:02:12 ============================================================================ +07:02:12 Slot Id : <460> +07:02:12 Transaction Type : REQUEST +07:02:12 Received From : +07:02:12 ============================================================================ +07:02:12 FNo. Len. Field Value +07:02:12 ============================================================================ +07:02:12 [ 1] [ 4] [0800] +07:02:12 [ 2] [ 5] [02531] +07:02:12 [ 3] [ 6] [579078] +07:02:12 [ 7] [ 10] [0320000212] +07:02:12 [ 11] [ 6] [806820] +07:02:12 [ 15] [ 10] [0320000212] +07:02:12 [ 37] [ 11] [57907806820] +07:02:12 [ 70] [ 3] [001] +07:02:12 ============================================================================ +07:02:12 + + +waiting on router queue for slot.... +07:02:12 ============================================================================ +07:02:12 Slot Id : <460> +07:02:12 Transaction Type : RESPONSE +07:02:12 Received From : +07:02:12 ============================================================================ +07:02:12 FNo. Len. Field Value +07:02:12 ============================================================================ +07:02:12 [ 1] [ 4] [0810] +07:02:12 [ 7] [ 10] [0320000212] +07:02:12 [ 11] [ 6] [806820] +07:02:12 [ 15] [ 4] [0320] +07:02:12 [ 37] [ 12] [57907806820] +07:02:12 [ 39] [ 2] [00] +07:02:12 [ 70] [ 3] [001] +07:02:12 ============================================================================ +07:02:12 Sending to : +07:02:12 ============================================================================ +07:02:12 + + +waiting on router queue for slot.... +07:02:20 ============================================================================ +07:02:20 Slot Id : <432> +07:02:20 Transaction Type : REQUEST +07:02:20 Received From : +07:02:20 ============================================================================ +07:02:20 FNo. Len. Field Value +07:02:20 ============================================================================ +07:02:20 [ 1] [ 4] [0800] +07:02:20 [ 7] [ 10] [0320120129] +07:02:20 [ 11] [ 6] [155053] +07:02:20 [ 70] [ 3] [301] +07:02:20 ============================================================================ +07:02:20 + + +waiting on router queue for slot.... +07:02:20 Sending to : +07:02:20 ============================================================================ +07:02:20 ============================================================================ +07:02:20 Slot Id : <432> +07:02:20 Transaction Type : RESPONSE +07:02:20 Received From : +07:02:20 ============================================================================ +07:02:20 FNo. Len. Field Value +07:02:20 ============================================================================ +07:02:20 [ 1] [ 4] [0810] +07:02:20 [ 7] [ 10] [0320120129] +07:02:20 [ 11] [ 6] [155053] +07:02:20 [ 39] [ 2] [00] +07:02:20 [ 70] [ 3] [301] +07:02:20 ============================================================================ +07:02:20 Calculate Source COMM Id = 2 +07:02:20 ============================================================================ +07:02:20 + + +waiting on router queue for slot.... +07:02:23 ============================================================================ +07:02:23 Slot Id : <453> +07:02:23 Transaction Type : REQUEST +07:02:23 Received From : +07:02:23 ============================================================================ +07:02:23 FNo. Len. Field Value +07:02:23 ============================================================================ +07:02:23 [ 1] [ 4] [0200] +07:02:23 [ 2] [ 16] [2206990000092155] +07:02:23 [ 3] [ 6] [010000] +07:02:23 [ 4] [ 12] [000100000000] +07:02:23 [ 7] [ 10] [0320070220] +07:02:23 [ 11] [ 6] [667044] +07:02:23 [ 12] [ 6] [070220] +07:02:23 [ 13] [ 4] [0320] +07:02:23 [ 15] [ 4] [0320] +07:02:23 [ 18] [ 4] [6011] +07:02:23 [ 22] [ 3] [900] +07:02:23 [ 25] [ 2] [02] +07:02:23 [ 28] [ 9] [D00002000] +07:02:23 [ 32] [ 6] [621354] +07:02:23 [ 35] [ 32] [2206990000092155=971012614426313] +07:02:23 [ 37] [ 12] [507904119576] +07:02:23 [ 41] [ 8] [08000800] +07:02:23 [ 42] [ 15] [NATIVE ] +07:02:23 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:02:23 [ 49] [ 3] [418] +07:02:23 [ 52] [ 16] [B1A2E93DB6E8A815] +07:02:23 ============================================================================ +07:02:23 + + +waiting on router queue for slot.... +07:02:23 Sending to : +07:02:23 ============================================================================ +07:02:23 Sending to : +07:02:23 ============================================================================ +07:02:24 ============================================================================ +07:02:24 Slot Id : <453> +07:02:24 Transaction Type : REQUEST +07:02:24 Received From : +07:02:24 ============================================================================ +07:02:24 FNo. Len. Field Value +07:02:24 ============================================================================ +07:02:24 [ 1] [ 4] [0200] +07:02:24 [ 2] [ 16] [2206990000092155] +07:02:24 [ 3] [ 6] [010000] +07:02:24 [ 4] [ 12] [000100000000] +07:02:24 [ 7] [ 10] [0320070220] +07:02:24 [ 11] [ 6] [667044] +07:02:24 [ 12] [ 6] [070220] +07:02:24 [ 13] [ 4] [0320] +07:02:24 [ 15] [ 4] [0320] +07:02:24 [ 18] [ 4] [6011] +07:02:24 [ 22] [ 3] [900] +07:02:24 [ 25] [ 2] [02] +07:02:24 [ 28] [ 9] [D00002000] +07:02:24 [ 32] [ 6] [621354] +07:02:24 [ 35] [ 32] [2206990000092155=971012614426313] +07:02:24 [ 37] [ 12] [507904119576] +07:02:24 [ 41] [ 8] [08000800] +07:02:24 [ 42] [ 15] [NATIVE ] +07:02:24 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:02:24 [ 49] [ 3] [418] +07:02:24 [ 52] [ 16] [B1A2E93DB6E8A815] +07:02:24 ============================================================================ +07:02:24 + + +waiting on router queue for slot.... +07:02:24 Sending to : +07:02:24 ============================================================================ +07:02:24 ============================================================================ +07:02:24 Slot Id : <453> +07:02:24 Transaction Type : REQUEST +07:02:24 Received From : +07:02:24 ============================================================================ +07:02:24 FNo. Len. Field Value +07:02:24 ============================================================================ +07:02:24 [ 1] [ 4] [0200] +07:02:24 [ 2] [ 16] [2206990000092155] +07:02:24 [ 3] [ 6] [010000] +07:02:24 [ 4] [ 12] [000100000000] +07:02:24 [ 7] [ 10] [0320070220] +07:02:24 [ 11] [ 6] [667044] +07:02:24 [ 12] [ 6] [070220] +07:02:24 [ 13] [ 4] [0320] +07:02:24 [ 15] [ 4] [0320] +07:02:24 [ 18] [ 4] [6011] +07:02:24 [ 22] [ 3] [900] +07:02:24 [ 25] [ 2] [02] +07:02:24 [ 28] [ 9] [D00002000] +07:02:24 [ 32] [ 6] [621354] +07:02:24 [ 35] [ 32] [2206990000092155=971012614426313] +07:02:24 [ 37] [ 12] [507904119576] +07:02:24 [ 41] [ 8] [08000800] +07:02:24 [ 42] [ 15] [NATIVE ] +07:02:24 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:02:24 [ 49] [ 3] [418] +07:02:24 [ 52] [ 16] [0686A65E994241DB] +07:02:24 ============================================================================ +07:02:24 + + +waiting on router queue for slot.... +07:02:24 Sending to : <1> +07:02:24 ============================================================================ +07:02:26 ============================================================================ +07:02:26 Slot Id : <453> +07:02:26 Transaction Type : RESPONSE +07:02:26 Received From : +07:02:26 ============================================================================ +07:02:26 FNo. Len. Field Value +07:02:26 ============================================================================ +07:02:26 [ 1] [ 4] [0210] +07:02:26 [ 2] [ 16] [2206990000092155] +07:02:26 [ 3] [ 6] [010000] +07:02:26 [ 4] [ 12] [000100000000] +07:02:26 [ 7] [ 10] [0320070220] +07:02:26 [ 11] [ 6] [667044] +07:02:26 [ 12] [ 6] [070220] +07:02:26 [ 13] [ 4] [0320] +07:02:26 [ 15] [ 4] [0320] +07:02:26 [ 18] [ 4] [6011] +07:02:26 [ 32] [ 6] [621354] +07:02:26 [ 35] [ 32] [2206990000092155=971012614426313] +07:02:26 [ 37] [ 12] [507904119576] +07:02:26 [ 38] [ 6] [700950] +07:02:26 [ 39] [ 2] [00] +07:02:26 [ 41] [ 8] [08000800] +07:02:26 [ 49] [ 3] [418] +07:02:26 [ 54] [ 40] [0001418C0001108992000002418C000110899200] +07:02:26 ============================================================================ +07:02:26 Sending to : +07:02:26 ============================================================================ +07:02:26 + + +waiting on router queue for slot.... +07:02:27 ============================================================================ +07:02:27 Slot Id : <453> +07:02:27 Transaction Type : RESPONSE +07:02:27 Received From : +07:02:27 ============================================================================ +07:02:27 FNo. Len. Field Value +07:02:27 ============================================================================ +07:02:27 [ 1] [ 4] [0210] +07:02:27 [ 2] [ 16] [2206990000092155] +07:02:27 [ 3] [ 6] [010000] +07:02:27 [ 4] [ 12] [000100000000] +07:02:27 [ 7] [ 10] [0320070220] +07:02:27 [ 11] [ 6] [667044] +07:02:27 [ 12] [ 6] [070220] +07:02:27 [ 13] [ 4] [0320] +07:02:27 [ 15] [ 4] [0320] +07:02:27 [ 18] [ 4] [6011] +07:02:27 [ 32] [ 6] [621354] +07:02:27 [ 35] [ 32] [2206990000092155=971012614426313] +07:02:27 [ 37] [ 12] [507904119576] +07:02:27 [ 38] [ 6] [700950] +07:02:27 [ 39] [ 2] [00] +07:02:27 [ 41] [ 8] [08000800] +07:02:27 [ 49] [ 3] [418] +07:02:27 [ 54] [ 40] [0001418C0001108992000002418C000110899200] +07:02:27 ============================================================================ +07:02:27 Calculate Source COMM Id = 0 +07:02:27 ============================================================================ +07:02:27 + + +waiting on router queue for slot.... +07:02:33 ============================================================================ +07:02:33 Slot Id : <482> +07:02:33 Transaction Type : REQUEST +07:02:33 Received From : +07:02:33 ============================================================================ +07:02:33 FNo. Len. Field Value +07:02:33 ============================================================================ +07:02:33 [ 1] [ 4] [0800] +07:02:33 [ 7] [ 10] [0320141421] +07:02:33 [ 11] [ 6] [071421] +07:02:33 [ 37] [ 12] [57907071421] +07:02:33 [ 70] [ 3] [301] +07:02:33 ============================================================================ +07:02:33 + + +waiting on router queue for slot.... +07:02:33 Sending to : +07:02:33 ============================================================================ +07:02:33 ============================================================================ +07:02:33 Slot Id : <482> +07:02:33 Transaction Type : RESPONSE +07:02:33 Received From : +07:02:33 ============================================================================ +07:02:33 FNo. Len. Field Value +07:02:33 ============================================================================ +07:02:33 [ 1] [ 4] [0810] +07:02:33 [ 7] [ 10] [0320141421] +07:02:33 [ 11] [ 6] [071421] +07:02:33 [ 37] [ 12] [579070714210] +07:02:33 [ 39] [ 2] [00] +07:02:33 [ 70] [ 3] [810] +07:02:33 ============================================================================ +07:02:33 Calculate Source COMM Id = 6 +07:02:33 ============================================================================ +07:02:33 + + +waiting on router queue for slot.... +07:02:36 ============================================================================ +07:02:36 Slot Id : <488> +07:02:36 Transaction Type : REQUEST +07:02:36 Received From : +07:02:36 ============================================================================ +07:02:36 FNo. Len. Field Value +07:02:36 ============================================================================ +07:02:36 [ 1] [ 4] [0800] +07:02:36 [ 7] [ 10] [0320120144] +07:02:36 [ 11] [ 6] [155054] +07:02:36 [ 70] [ 3] [301] +07:02:36 ============================================================================ +07:02:36 + + +waiting on router queue for slot.... +07:02:36 Sending to : +07:02:36 ============================================================================ +07:02:36 ============================================================================ +07:02:36 Slot Id : <488> +07:02:36 Transaction Type : RESPONSE +07:02:36 Received From : +07:02:36 ============================================================================ +07:02:36 FNo. Len. Field Value +07:02:36 ============================================================================ +07:02:36 [ 1] [ 4] [0810] +07:02:36 [ 7] [ 10] [0320120144] +07:02:36 [ 11] [ 6] [155054] +07:02:36 [ 39] [ 2] [00] +07:02:36 [ 70] [ 3] [301] +07:02:36 ============================================================================ +07:02:36 Calculate Source COMM Id = 2 +07:02:36 ============================================================================ +07:02:36 + + +waiting on router queue for slot.... +07:02:47 ============================================================================ +07:02:47 Slot Id : <470> +07:02:47 Transaction Type : REQUEST +07:02:47 Received From : +07:02:47 ============================================================================ +07:02:47 FNo. Len. Field Value +07:02:47 ============================================================================ +07:02:47 [ 1] [ 4] [0800] +07:02:47 [ 7] [ 10] [0320120155] +07:02:47 [ 11] [ 6] [155055] +07:02:47 [ 70] [ 3] [301] +07:02:47 ============================================================================ +07:02:47 + + +waiting on router queue for slot.... +07:02:47 Sending to : +07:02:47 ============================================================================ +07:02:47 ============================================================================ +07:02:47 Slot Id : <470> +07:02:47 Transaction Type : RESPONSE +07:02:47 Received From : +07:02:47 ============================================================================ +07:02:47 FNo. Len. Field Value +07:02:47 ============================================================================ +07:02:47 [ 1] [ 4] [0810] +07:02:47 [ 7] [ 10] [0320120155] +07:02:47 [ 11] [ 6] [155055] +07:02:47 [ 39] [ 2] [00] +07:02:47 [ 70] [ 3] [301] +07:02:47 ============================================================================ +07:02:47 Calculate Source COMM Id = 2 +07:02:47 ============================================================================ +07:02:47 + + +waiting on router queue for slot.... +07:02:58 ============================================================================ +07:02:58 Slot Id : <495> +07:02:58 Transaction Type : REQUEST +07:02:58 Received From : +07:02:58 ============================================================================ +07:02:58 FNo. Len. Field Value +07:02:58 ============================================================================ +07:02:58 [ 1] [ 4] [0800] +07:02:58 [ 7] [ 10] [0320120206] +07:02:58 [ 11] [ 6] [155056] +07:02:58 [ 70] [ 3] [301] +07:02:58 ============================================================================ +07:02:58 + + +waiting on router queue for slot.... +07:02:58 Sending to : +07:02:58 ============================================================================ +07:02:58 ============================================================================ +07:02:58 Slot Id : <495> +07:02:58 Transaction Type : RESPONSE +07:02:58 Received From : +07:02:58 ============================================================================ +07:02:58 FNo. Len. Field Value +07:02:58 ============================================================================ +07:02:58 [ 1] [ 4] [0810] +07:02:58 [ 7] [ 10] [0320120206] +07:02:58 [ 11] [ 6] [155056] +07:02:58 [ 39] [ 2] [00] +07:02:58 [ 70] [ 3] [301] +07:02:58 ============================================================================ +07:02:58 Calculate Source COMM Id = 2 +07:02:58 ============================================================================ +07:02:58 + + +waiting on router queue for slot.... +07:03:09 ============================================================================ +07:03:09 Slot Id : <463> +07:03:09 Transaction Type : REQUEST +07:03:09 Received From : +07:03:09 ============================================================================ +07:03:09 FNo. Len. Field Value +07:03:09 ============================================================================ +07:03:09 [ 1] [ 4] [0800] +07:03:09 [ 7] [ 10] [0320120218] +07:03:09 [ 11] [ 6] [155057] +07:03:09 [ 70] [ 3] [301] +07:03:09 ============================================================================ +07:03:09 + + +waiting on router queue for slot.... +07:03:09 Sending to : +07:03:09 ============================================================================ +07:03:09 ============================================================================ +07:03:09 Slot Id : <463> +07:03:09 Transaction Type : RESPONSE +07:03:09 Received From : +07:03:09 ============================================================================ +07:03:09 FNo. Len. Field Value +07:03:09 ============================================================================ +07:03:09 [ 1] [ 4] [0810] +07:03:09 [ 7] [ 10] [0320120218] +07:03:09 [ 11] [ 6] [155057] +07:03:09 [ 39] [ 2] [00] +07:03:09 [ 70] [ 3] [301] +07:03:09 ============================================================================ +07:03:09 Calculate Source COMM Id = 2 +07:03:09 ============================================================================ +07:03:09 + + +waiting on router queue for slot.... +07:03:14 ============================================================================ +07:03:14 Slot Id : <490> +07:03:14 Transaction Type : REQUEST +07:03:14 Received From : +07:03:14 ============================================================================ +07:03:14 FNo. Len. Field Value +07:03:14 ============================================================================ +07:03:14 [ 1] [ 4] [0800] +07:03:14 [ 2] [ 5] [02531] +07:03:14 [ 3] [ 6] [579078] +07:03:14 [ 7] [ 10] [0320000314] +07:03:14 [ 11] [ 6] [806821] +07:03:14 [ 15] [ 10] [0320000314] +07:03:14 [ 37] [ 11] [57907806821] +07:03:14 [ 70] [ 3] [001] +07:03:14 ============================================================================ +07:03:14 + + +waiting on router queue for slot.... +07:03:14 ============================================================================ +07:03:14 Slot Id : <490> +07:03:14 Transaction Type : RESPONSE +07:03:14 Received From : +07:03:14 ============================================================================ +07:03:14 FNo. Len. Field Value +07:03:14 ============================================================================ +07:03:14 [ 1] [ 4] [0810] +07:03:14 [ 7] [ 10] [0320000314] +07:03:14 [ 11] [ 6] [806821] +07:03:14 [ 15] [ 4] [0320] +07:03:14 [ 37] [ 12] [57907806821] +07:03:14 [ 39] [ 2] [00] +07:03:14 [ 70] [ 3] [001] +07:03:14 ============================================================================ +07:03:14 Sending to : +07:03:14 ============================================================================ +07:03:14 + + +waiting on router queue for slot.... +07:03:21 ============================================================================ +07:03:21 Slot Id : <484> +07:03:21 Transaction Type : REQUEST +07:03:21 Received From : +07:03:21 ============================================================================ +07:03:21 FNo. Len. Field Value +07:03:21 ============================================================================ +07:03:21 [ 1] [ 4] [0800] +07:03:21 [ 7] [ 10] [0320120229] +07:03:21 [ 11] [ 6] [155058] +07:03:21 [ 70] [ 3] [301] +07:03:21 ============================================================================ +07:03:21 + + +waiting on router queue for slot.... +07:03:21 Sending to : +07:03:21 ============================================================================ +07:03:21 ============================================================================ +07:03:21 Slot Id : <484> +07:03:21 Transaction Type : RESPONSE +07:03:21 Received From : +07:03:21 ============================================================================ +07:03:21 FNo. Len. Field Value +07:03:21 ============================================================================ +07:03:21 [ 1] [ 4] [0810] +07:03:21 [ 7] [ 10] [0320120229] +07:03:21 [ 11] [ 6] [155058] +07:03:21 [ 39] [ 2] [00] +07:03:21 [ 70] [ 3] [301] +07:03:21 ============================================================================ +07:03:21 Calculate Source COMM Id = 2 +07:03:21 ============================================================================ +07:03:21 + + +waiting on router queue for slot.... +07:03:29 ============================================================================ +07:03:29 Slot Id : <448> +07:03:29 Transaction Type : REQUEST +07:03:29 Received From : +07:03:29 ============================================================================ +07:03:29 FNo. Len. Field Value +07:03:29 ============================================================================ +07:03:29 [ 1] [ 4] [0800] +07:03:29 [ 7] [ 10] [0320000326] +07:03:29 [ 11] [ 6] [065280] +07:03:29 [ 37] [ 12] [507907065280] +07:03:29 [ 70] [ 3] [001] +07:03:29 ============================================================================ +07:03:29 + + +waiting on router queue for slot.... +07:03:29 Sending to : +07:03:29 ============================================================================ +07:03:29 ============================================================================ +07:03:29 Slot Id : <448> +07:03:29 Transaction Type : RESPONSE +07:03:29 Received From : +07:03:29 ============================================================================ +07:03:29 FNo. Len. Field Value +07:03:29 ============================================================================ +07:03:29 [ 1] [ 4] [0810] +07:03:29 [ 7] [ 10] [0320000326] +07:03:29 [ 11] [ 6] [065280] +07:03:29 [ 37] [ 12] [507907065280] +07:03:29 [ 39] [ 2] [00] +07:03:29 [ 70] [ 3] [001] +07:03:29 ============================================================================ +07:03:29 Calculate Source COMM Id = 0 +07:03:29 ============================================================================ +07:03:29 + + +waiting on router queue for slot.... +07:03:31 ============================================================================ +07:03:31 Slot Id : <471> +07:03:31 Transaction Type : REQUEST +07:03:31 Received From : +07:03:31 ============================================================================ +07:03:31 FNo. Len. Field Value +07:03:31 ============================================================================ +07:03:31 [ 1] [ 4] [0800] +07:03:31 [ 7] [ 10] [0320120240] +07:03:31 [ 11] [ 6] [155059] +07:03:31 [ 70] [ 3] [301] +07:03:31 ============================================================================ +07:03:31 + + +waiting on router queue for slot.... +07:03:31 Sending to : +07:03:31 ============================================================================ +07:03:31 ============================================================================ +07:03:31 Slot Id : <471> +07:03:31 Transaction Type : RESPONSE +07:03:31 Received From : +07:03:31 ============================================================================ +07:03:31 FNo. Len. Field Value +07:03:31 ============================================================================ +07:03:31 [ 1] [ 4] [0810] +07:03:31 [ 7] [ 10] [0320120240] +07:03:31 [ 11] [ 6] [155059] +07:03:31 [ 39] [ 2] [00] +07:03:31 [ 70] [ 3] [301] +07:03:31 ============================================================================ +07:03:31 Calculate Source COMM Id = 2 +07:03:31 ============================================================================ +07:03:31 + + +waiting on router queue for slot.... +07:03:38 ============================================================================ +07:03:38 Slot Id : <480> +07:03:38 Transaction Type : REQUEST +07:03:38 Received From : +07:03:38 ============================================================================ +07:03:38 FNo. Len. Field Value +07:03:38 ============================================================================ +07:03:38 [ 1] [ 4] [0800] +07:03:38 [ 7] [ 10] [0320141526] +07:03:38 [ 11] [ 6] [071526] +07:03:38 [ 37] [ 12] [57907071526] +07:03:38 [ 70] [ 3] [301] +07:03:38 ============================================================================ +07:03:38 + + +waiting on router queue for slot.... +07:03:38 Sending to : +07:03:38 ============================================================================ +07:03:38 ============================================================================ +07:03:38 Slot Id : <480> +07:03:38 Transaction Type : RESPONSE +07:03:38 Received From : +07:03:38 ============================================================================ +07:03:38 FNo. Len. Field Value +07:03:38 ============================================================================ +07:03:38 [ 1] [ 4] [0810] +07:03:38 [ 7] [ 10] [0320141526] +07:03:38 [ 11] [ 6] [071526] +07:03:38 [ 37] [ 12] [579070715260] +07:03:38 [ 39] [ 2] [00] +07:03:38 [ 70] [ 3] [810] +07:03:38 ============================================================================ +07:03:38 Calculate Source COMM Id = 6 +07:03:38 ============================================================================ +07:03:38 + + +waiting on router queue for slot.... +07:03:48 ============================================================================ +07:03:48 Slot Id : <479> +07:03:48 Transaction Type : REQUEST +07:03:48 Received From : +07:03:48 ============================================================================ +07:03:48 FNo. Len. Field Value +07:03:48 ============================================================================ +07:03:48 [ 1] [ 4] [0800] +07:03:48 [ 7] [ 10] [0320120256] +07:03:48 [ 11] [ 6] [155060] +07:03:48 [ 70] [ 3] [301] +07:03:48 ============================================================================ +07:03:48 + + +waiting on router queue for slot.... +07:03:48 Sending to : +07:03:48 ============================================================================ +07:03:48 ============================================================================ +07:03:48 Slot Id : <479> +07:03:48 Transaction Type : RESPONSE +07:03:48 Received From : +07:03:48 ============================================================================ +07:03:48 FNo. Len. Field Value +07:03:48 ============================================================================ +07:03:48 [ 1] [ 4] [0810] +07:03:48 [ 7] [ 10] [0320120256] +07:03:48 [ 11] [ 6] [155060] +07:03:48 [ 39] [ 2] [00] +07:03:48 [ 70] [ 3] [301] +07:03:48 ============================================================================ +07:03:48 Calculate Source COMM Id = 2 +07:03:48 ============================================================================ +07:03:48 + + +waiting on router queue for slot.... +07:03:59 ============================================================================ +07:03:59 Slot Id : <498> +07:03:59 Transaction Type : REQUEST +07:03:59 Received From : +07:03:59 ============================================================================ +07:03:59 FNo. Len. Field Value +07:03:59 ============================================================================ +07:03:59 [ 1] [ 4] [0800] +07:03:59 [ 7] [ 10] [0320120307] +07:03:59 [ 11] [ 6] [155061] +07:03:59 [ 70] [ 3] [301] +07:03:59 ============================================================================ +07:03:59 + + +waiting on router queue for slot.... +07:03:59 Sending to : +07:03:59 ============================================================================ +07:03:59 ============================================================================ +07:03:59 Slot Id : <498> +07:03:59 Transaction Type : RESPONSE +07:03:59 Received From : +07:03:59 ============================================================================ +07:03:59 FNo. Len. Field Value +07:03:59 ============================================================================ +07:03:59 [ 1] [ 4] [0810] +07:03:59 [ 7] [ 10] [0320120307] +07:03:59 [ 11] [ 6] [155061] +07:03:59 [ 39] [ 2] [00] +07:03:59 [ 70] [ 3] [301] +07:03:59 ============================================================================ +07:03:59 Calculate Source COMM Id = 2 +07:03:59 ============================================================================ +07:03:59 + + +waiting on router queue for slot.... +07:04:13 ============================================================================ +07:04:13 Slot Id : <0> +07:04:13 Transaction Type : REQUEST +07:04:13 Received From : +07:04:13 ============================================================================ +07:04:13 FNo. Len. Field Value +07:04:13 ============================================================================ +07:04:13 [ 1] [ 4] [0800] +07:04:13 [ 7] [ 10] [0320120322] +07:04:13 [ 11] [ 6] [155062] +07:04:13 [ 70] [ 3] [301] +07:04:13 ============================================================================ +07:04:13 + + +waiting on router queue for slot.... +07:04:13 Sending to : +07:04:13 ============================================================================ +07:04:13 ============================================================================ +07:04:13 Slot Id : <0> +07:04:13 Transaction Type : RESPONSE +07:04:13 Received From : +07:04:13 ============================================================================ +07:04:13 FNo. Len. Field Value +07:04:13 ============================================================================ +07:04:13 [ 1] [ 4] [0810] +07:04:13 [ 7] [ 10] [0320120322] +07:04:13 [ 11] [ 6] [155062] +07:04:13 [ 39] [ 2] [00] +07:04:13 [ 70] [ 3] [301] +07:04:13 ============================================================================ +07:04:13 Calculate Source COMM Id = 2 +07:04:13 ============================================================================ +07:04:13 + + +waiting on router queue for slot.... +07:04:16 ============================================================================ +07:04:16 Slot Id : <2> +07:04:16 Transaction Type : REQUEST +07:04:16 Received From : +07:04:16 ============================================================================ +07:04:16 FNo. Len. Field Value +07:04:16 ============================================================================ +07:04:16 [ 1] [ 4] [0800] +07:04:16 [ 2] [ 5] [02531] +07:04:16 [ 3] [ 6] [579078] +07:04:16 [ 7] [ 10] [0320000416] +07:04:16 [ 11] [ 6] [806822] +07:04:16 [ 15] [ 10] [0320000416] +07:04:16 [ 37] [ 11] [57907806822] +07:04:16 [ 70] [ 3] [001] +07:04:16 ============================================================================ +07:04:16 + + +waiting on router queue for slot.... +07:04:16 ============================================================================ +07:04:16 Slot Id : <2> +07:04:16 Transaction Type : RESPONSE +07:04:16 Received From : +07:04:16 ============================================================================ +07:04:16 FNo. Len. Field Value +07:04:16 ============================================================================ +07:04:16 [ 1] [ 4] [0810] +07:04:16 [ 7] [ 10] [0320000416] +07:04:16 [ 11] [ 6] [806822] +07:04:16 [ 15] [ 4] [0320] +07:04:16 [ 37] [ 12] [57907806822] +07:04:16 [ 39] [ 2] [00] +07:04:16 [ 70] [ 3] [001] +07:04:16 ============================================================================ +07:04:16 Sending to : +07:04:16 ============================================================================ +07:04:16 + + +waiting on router queue for slot.... +07:04:27 ============================================================================ +07:04:27 Slot Id : <493> +07:04:27 Transaction Type : REQUEST +07:04:27 Received From : +07:04:27 ============================================================================ +07:04:27 FNo. Len. Field Value +07:04:27 ============================================================================ +07:04:27 [ 1] [ 4] [0800] +07:04:27 [ 7] [ 10] [0320120335] +07:04:27 [ 11] [ 6] [155063] +07:04:27 [ 70] [ 3] [301] +07:04:27 ============================================================================ +07:04:27 + + +waiting on router queue for slot.... +07:04:27 Sending to : +07:04:27 ============================================================================ +07:04:27 ============================================================================ +07:04:27 Slot Id : <493> +07:04:27 Transaction Type : RESPONSE +07:04:27 Received From : +07:04:27 ============================================================================ +07:04:27 FNo. Len. Field Value +07:04:27 ============================================================================ +07:04:27 [ 1] [ 4] [0810] +07:04:27 [ 7] [ 10] [0320120335] +07:04:27 [ 11] [ 6] [155063] +07:04:27 [ 39] [ 2] [00] +07:04:27 [ 70] [ 3] [301] +07:04:27 ============================================================================ +07:04:27 Calculate Source COMM Id = 2 +07:04:27 ============================================================================ +07:04:27 + + +waiting on router queue for slot.... +07:04:30 ============================================================================ +07:04:30 Slot Id : <473> +07:04:30 Transaction Type : REQUEST +07:04:30 Received From : +07:04:30 ============================================================================ +07:04:30 FNo. Len. Field Value +07:04:30 ============================================================================ +07:04:30 [ 1] [ 4] [0200] +07:04:30 [ 2] [ 16] [2206990000092155] +07:04:30 [ 3] [ 6] [010000] +07:04:30 [ 4] [ 12] [000100000000] +07:04:30 [ 7] [ 10] [0320070426] +07:04:30 [ 11] [ 6] [667236] +07:04:30 [ 12] [ 6] [070426] +07:04:30 [ 13] [ 4] [0320] +07:04:30 [ 15] [ 4] [0320] +07:04:30 [ 18] [ 4] [6011] +07:04:30 [ 22] [ 3] [900] +07:04:30 [ 25] [ 2] [02] +07:04:30 [ 28] [ 9] [D00002000] +07:04:30 [ 32] [ 6] [621354] +07:04:30 [ 35] [ 32] [2206990000092155=971012614426313] +07:04:30 [ 37] [ 12] [507904119578] +07:04:30 [ 41] [ 8] [08000800] +07:04:30 [ 42] [ 15] [NATIVE ] +07:04:30 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:04:30 [ 49] [ 3] [418] +07:04:30 [ 52] [ 16] [B1A2E93DB6E8A815] +07:04:30 ============================================================================ +07:04:30 + + +waiting on router queue for slot.... +07:04:30 Sending to : +07:04:30 ============================================================================ +07:04:30 Sending to : +07:04:30 ============================================================================ +07:04:30 ============================================================================ +07:04:30 Slot Id : <473> +07:04:30 Transaction Type : REQUEST +07:04:30 Received From : +07:04:30 ============================================================================ +07:04:30 FNo. Len. Field Value +07:04:30 ============================================================================ +07:04:30 [ 1] [ 4] [0200] +07:04:30 [ 2] [ 16] [2206990000092155] +07:04:30 [ 3] [ 6] [010000] +07:04:30 [ 4] [ 12] [000100000000] +07:04:30 [ 7] [ 10] [0320070426] +07:04:30 [ 11] [ 6] [667236] +07:04:30 [ 12] [ 6] [070426] +07:04:30 [ 13] [ 4] [0320] +07:04:30 [ 15] [ 4] [0320] +07:04:30 [ 18] [ 4] [6011] +07:04:30 [ 22] [ 3] [900] +07:04:30 [ 25] [ 2] [02] +07:04:30 [ 28] [ 9] [D00002000] +07:04:30 [ 32] [ 6] [621354] +07:04:30 [ 35] [ 32] [2206990000092155=971012614426313] +07:04:30 [ 37] [ 12] [507904119578] +07:04:30 [ 41] [ 8] [08000800] +07:04:30 [ 42] [ 15] [NATIVE ] +07:04:30 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:04:30 [ 49] [ 3] [418] +07:04:30 [ 52] [ 16] [B1A2E93DB6E8A815] +07:04:30 ============================================================================ +07:04:30 + + +waiting on router queue for slot.... +07:04:30 Sending to : +07:04:30 ============================================================================ +07:04:30 ============================================================================ +07:04:30 Slot Id : <473> +07:04:30 Transaction Type : REQUEST +07:04:30 Received From : +07:04:30 ============================================================================ +07:04:30 FNo. Len. Field Value +07:04:30 ============================================================================ +07:04:30 [ 1] [ 4] [0200] +07:04:30 [ 2] [ 16] [2206990000092155] +07:04:30 [ 3] [ 6] [010000] +07:04:30 [ 4] [ 12] [000100000000] +07:04:30 [ 7] [ 10] [0320070426] +07:04:30 [ 11] [ 6] [667236] +07:04:30 [ 12] [ 6] [070426] +07:04:30 [ 13] [ 4] [0320] +07:04:30 [ 15] [ 4] [0320] +07:04:30 [ 18] [ 4] [6011] +07:04:30 [ 22] [ 3] [900] +07:04:30 [ 25] [ 2] [02] +07:04:30 [ 28] [ 9] [D00002000] +07:04:30 [ 32] [ 6] [621354] +07:04:30 [ 35] [ 32] [2206990000092155=971012614426313] +07:04:30 [ 37] [ 12] [507904119578] +07:04:30 [ 41] [ 8] [08000800] +07:04:30 [ 42] [ 15] [NATIVE ] +07:04:30 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:04:30 [ 49] [ 3] [418] +07:04:30 [ 52] [ 16] [0686A65E994241DB] +07:04:30 ============================================================================ +07:04:30 + + +waiting on router queue for slot.... +07:04:30 Sending to : <1> +07:04:30 ============================================================================ +07:04:32 ============================================================================ +07:04:32 Slot Id : <473> +07:04:32 Transaction Type : RESPONSE +07:04:32 Received From : +07:04:32 ============================================================================ +07:04:32 FNo. Len. Field Value +07:04:32 ============================================================================ +07:04:32 [ 1] [ 4] [0210] +07:04:32 [ 2] [ 16] [2206990000092155] +07:04:32 [ 3] [ 6] [010000] +07:04:32 [ 4] [ 12] [000100000000] +07:04:32 [ 7] [ 10] [0320070426] +07:04:32 [ 11] [ 6] [667236] +07:04:32 [ 12] [ 6] [070426] +07:04:32 [ 13] [ 4] [0320] +07:04:32 [ 15] [ 4] [0320] +07:04:32 [ 18] [ 4] [6011] +07:04:32 [ 32] [ 6] [621354] +07:04:32 [ 35] [ 32] [2206990000092155=971012614426313] +07:04:32 [ 37] [ 12] [507904119578] +07:04:32 [ 38] [ 6] [061512] +07:04:32 [ 39] [ 2] [00] +07:04:32 [ 41] [ 8] [08000800] +07:04:32 [ 49] [ 3] [418] +07:04:32 [ 54] [ 40] [0001418C0000106992000002418C000010699200] +07:04:32 ============================================================================ +07:04:32 Sending to : +07:04:32 ============================================================================ +07:04:32 + + +waiting on router queue for slot.... +07:04:34 ============================================================================ +07:04:34 Slot Id : <473> +07:04:34 Transaction Type : RESPONSE +07:04:34 Received From : +07:04:34 ============================================================================ +07:04:34 FNo. Len. Field Value +07:04:34 ============================================================================ +07:04:34 [ 1] [ 4] [0210] +07:04:34 [ 2] [ 16] [2206990000092155] +07:04:34 [ 3] [ 6] [010000] +07:04:34 [ 4] [ 12] [000100000000] +07:04:34 [ 7] [ 10] [0320070426] +07:04:34 [ 11] [ 6] [667236] +07:04:34 [ 12] [ 6] [070426] +07:04:34 [ 13] [ 4] [0320] +07:04:34 [ 15] [ 4] [0320] +07:04:34 [ 18] [ 4] [6011] +07:04:34 [ 32] [ 6] [621354] +07:04:34 [ 35] [ 32] [2206990000092155=971012614426313] +07:04:34 [ 37] [ 12] [507904119578] +07:04:34 [ 38] [ 6] [061512] +07:04:34 [ 39] [ 2] [00] +07:04:34 [ 41] [ 8] [08000800] +07:04:34 [ 49] [ 3] [418] +07:04:34 [ 54] [ 40] [0001418C0000106992000002418C000010699200] +07:04:34 ============================================================================ +07:04:34 Calculate Source COMM Id = 0 +07:04:34 ============================================================================ +07:04:34 + + +waiting on router queue for slot.... +07:04:38 ============================================================================ +07:04:38 Slot Id : <1> +07:04:38 Transaction Type : REQUEST +07:04:38 Received From : +07:04:38 ============================================================================ +07:04:38 FNo. Len. Field Value +07:04:38 ============================================================================ +07:04:38 [ 1] [ 4] [0800] +07:04:38 [ 7] [ 10] [0320120346] +07:04:38 [ 11] [ 6] [155064] +07:04:38 [ 70] [ 3] [301] +07:04:38 ============================================================================ +07:04:38 + + +waiting on router queue for slot.... +07:04:38 Sending to : +07:04:38 ============================================================================ +07:04:38 ============================================================================ +07:04:38 Slot Id : <1> +07:04:38 Transaction Type : RESPONSE +07:04:38 Received From : +07:04:38 ============================================================================ +07:04:38 FNo. Len. Field Value +07:04:38 ============================================================================ +07:04:38 [ 1] [ 4] [0810] +07:04:38 [ 7] [ 10] [0320120346] +07:04:38 [ 11] [ 6] [155064] +07:04:38 [ 39] [ 2] [00] +07:04:38 [ 70] [ 3] [301] +07:04:38 ============================================================================ +07:04:38 Calculate Source COMM Id = 2 +07:04:38 ============================================================================ +07:04:38 + + +waiting on router queue for slot.... +07:04:43 ============================================================================ +07:04:43 Slot Id : <4> +07:04:43 Transaction Type : REQUEST +07:04:43 Received From : +07:04:43 ============================================================================ +07:04:43 FNo. Len. Field Value +07:04:43 ============================================================================ +07:04:43 [ 1] [ 4] [0800] +07:04:43 [ 7] [ 10] [0320141631] +07:04:43 [ 11] [ 6] [071631] +07:04:43 [ 37] [ 12] [57907071631] +07:04:43 [ 70] [ 3] [301] +07:04:43 ============================================================================ +07:04:43 + + +waiting on router queue for slot.... +07:04:43 Sending to : +07:04:43 ============================================================================ +07:04:43 ============================================================================ +07:04:43 Slot Id : <4> +07:04:43 Transaction Type : RESPONSE +07:04:43 Received From : +07:04:43 ============================================================================ +07:04:43 FNo. Len. Field Value +07:04:43 ============================================================================ +07:04:43 [ 1] [ 4] [0810] +07:04:43 [ 7] [ 10] [0320141631] +07:04:43 [ 11] [ 6] [071631] +07:04:43 [ 37] [ 12] [579070716310] +07:04:43 [ 39] [ 2] [00] +07:04:43 [ 70] [ 3] [810] +07:04:43 ============================================================================ +07:04:43 Calculate Source COMM Id = 6 +07:04:43 ============================================================================ +07:04:43 + + +waiting on router queue for slot.... +07:04:48 ============================================================================ +07:04:48 Slot Id : <474> +07:04:48 Transaction Type : REQUEST +07:04:48 Received From : +07:04:48 ============================================================================ +07:04:48 FNo. Len. Field Value +07:04:48 ============================================================================ +07:04:48 [ 1] [ 4] [0800] +07:04:48 [ 7] [ 10] [0320120357] +07:04:48 [ 11] [ 6] [155065] +07:04:48 [ 70] [ 3] [301] +07:04:48 ============================================================================ +07:04:48 + + +waiting on router queue for slot.... +07:04:48 Sending to : +07:04:48 ============================================================================ +07:04:48 ============================================================================ +07:04:48 Slot Id : <474> +07:04:48 Transaction Type : RESPONSE +07:04:48 Received From : +07:04:48 ============================================================================ +07:04:48 FNo. Len. Field Value +07:04:48 ============================================================================ +07:04:48 [ 1] [ 4] [0810] +07:04:48 [ 7] [ 10] [0320120357] +07:04:48 [ 11] [ 6] [155065] +07:04:48 [ 39] [ 2] [00] +07:04:48 [ 70] [ 3] [301] +07:04:48 ============================================================================ +07:04:48 Calculate Source COMM Id = 2 +07:04:48 ============================================================================ +07:04:48 + + +waiting on router queue for slot.... +07:04:55 ============================================================================ +07:04:55 Slot Id : <483> +07:04:55 Transaction Type : REQUEST +07:04:55 Received From : +07:04:55 ============================================================================ +07:04:55 FNo. Len. Field Value +07:04:55 ============================================================================ +07:04:55 [ 1] [ 4] [0800] +07:04:55 [ 7] [ 10] [0320001242] +07:04:55 [ 11] [ 6] [043122] +07:04:55 [ 37] [ 12] [57907043122] +07:04:55 [ 70] [ 3] [301] +07:04:55 ============================================================================ +07:04:55 + + +waiting on router queue for slot.... +07:04:55 Sending to : +07:04:55 ============================================================================ +07:04:55 ============================================================================ +07:04:55 Slot Id : <483> +07:04:55 Transaction Type : RESPONSE +07:04:55 Received From : +07:04:55 ============================================================================ +07:04:55 FNo. Len. Field Value +07:04:55 ============================================================================ +07:04:55 [ 1] [ 4] [0810] +07:04:55 [ 7] [ 10] [0320001242] +07:04:55 [ 11] [ 6] [043122] +07:04:55 [ 37] [ 12] [579070431220] +07:04:55 [ 39] [ 2] [00] +07:04:55 [ 70] [ 3] [810] +07:04:55 ============================================================================ +07:04:55 Calculate Source COMM Id = 1 +07:04:55 ============================================================================ +07:04:55 + + +waiting on router queue for slot.... +07:04:59 ============================================================================ +07:04:59 Slot Id : <489> +07:04:59 Transaction Type : REQUEST +07:04:59 Received From : +07:04:59 ============================================================================ +07:04:59 FNo. Len. Field Value +07:04:59 ============================================================================ +07:04:59 [ 1] [ 4] [0800] +07:04:59 [ 7] [ 10] [0320120407] +07:04:59 [ 11] [ 6] [155066] +07:04:59 [ 70] [ 3] [301] +07:04:59 ============================================================================ +07:04:59 + + +waiting on router queue for slot.... +07:04:59 Sending to : +07:04:59 ============================================================================ +07:04:59 ============================================================================ +07:04:59 Slot Id : <489> +07:04:59 Transaction Type : RESPONSE +07:04:59 Received From : +07:04:59 ============================================================================ +07:04:59 FNo. Len. Field Value +07:04:59 ============================================================================ +07:04:59 [ 1] [ 4] [0810] +07:04:59 [ 7] [ 10] [0320120407] +07:04:59 [ 11] [ 6] [155066] +07:04:59 [ 39] [ 2] [00] +07:04:59 [ 70] [ 3] [301] +07:04:59 ============================================================================ +07:04:59 Calculate Source COMM Id = 2 +07:04:59 ============================================================================ +07:04:59 + + +waiting on router queue for slot.... +07:05:09 ============================================================================ +07:05:09 Slot Id : <476> +07:05:09 Transaction Type : REQUEST +07:05:09 Received From : +07:05:09 ============================================================================ +07:05:09 FNo. Len. Field Value +07:05:09 ============================================================================ +07:05:09 [ 1] [ 4] [0800] +07:05:09 [ 7] [ 10] [0320120418] +07:05:09 [ 11] [ 6] [155067] +07:05:09 [ 70] [ 3] [301] +07:05:09 ============================================================================ +07:05:09 + + +waiting on router queue for slot.... +07:05:09 Sending to : +07:05:09 ============================================================================ +07:05:09 ============================================================================ +07:05:09 Slot Id : <476> +07:05:09 Transaction Type : RESPONSE +07:05:09 Received From : +07:05:09 ============================================================================ +07:05:09 FNo. Len. Field Value +07:05:09 ============================================================================ +07:05:09 [ 1] [ 4] [0810] +07:05:09 [ 7] [ 10] [0320120418] +07:05:09 [ 11] [ 6] [155067] +07:05:09 [ 39] [ 2] [00] +07:05:09 [ 70] [ 3] [301] +07:05:09 ============================================================================ +07:05:09 Calculate Source COMM Id = 2 +07:05:09 ============================================================================ +07:05:09 + + +waiting on router queue for slot.... +07:05:18 ============================================================================ +07:05:18 Slot Id : <472> +07:05:18 Transaction Type : REQUEST +07:05:18 Received From : +07:05:18 ============================================================================ +07:05:18 FNo. Len. Field Value +07:05:18 ============================================================================ +07:05:18 [ 1] [ 4] [0800] +07:05:18 [ 2] [ 5] [02531] +07:05:18 [ 3] [ 6] [579078] +07:05:18 [ 7] [ 10] [0320000518] +07:05:18 [ 11] [ 6] [806823] +07:05:18 [ 15] [ 10] [0320000518] +07:05:18 [ 37] [ 11] [57907806823] +07:05:18 [ 70] [ 3] [001] +07:05:18 ============================================================================ +07:05:18 + + +waiting on router queue for slot.... +07:05:18 ============================================================================ +07:05:18 Slot Id : <472> +07:05:18 Transaction Type : RESPONSE +07:05:18 Received From : +07:05:18 ============================================================================ +07:05:18 FNo. Len. Field Value +07:05:18 ============================================================================ +07:05:18 [ 1] [ 4] [0810] +07:05:18 [ 7] [ 10] [0320000518] +07:05:18 [ 11] [ 6] [806823] +07:05:18 [ 15] [ 4] [0320] +07:05:18 [ 37] [ 12] [57907806823] +07:05:18 [ 39] [ 2] [00] +07:05:18 [ 70] [ 3] [001] +07:05:18 ============================================================================ +07:05:18 Sending to : +07:05:18 ============================================================================ +07:05:18 + + +waiting on router queue for slot.... +07:05:25 ============================================================================ +07:05:25 Slot Id : <477> +07:05:25 Transaction Type : REQUEST +07:05:25 Received From : +07:05:25 ============================================================================ +07:05:25 FNo. Len. Field Value +07:05:25 ============================================================================ +07:05:25 [ 1] [ 4] [0800] +07:05:25 [ 7] [ 10] [0320120433] +07:05:25 [ 11] [ 6] [155068] +07:05:25 [ 70] [ 3] [301] +07:05:25 ============================================================================ +07:05:25 + + +waiting on router queue for slot.... +07:05:25 Sending to : +07:05:25 ============================================================================ +07:05:25 ============================================================================ +07:05:25 Slot Id : <477> +07:05:25 Transaction Type : RESPONSE +07:05:25 Received From : +07:05:25 ============================================================================ +07:05:25 FNo. Len. Field Value +07:05:25 ============================================================================ +07:05:25 [ 1] [ 4] [0810] +07:05:25 [ 7] [ 10] [0320120433] +07:05:25 [ 11] [ 6] [155068] +07:05:25 [ 39] [ 2] [00] +07:05:25 [ 70] [ 3] [301] +07:05:25 ============================================================================ +07:05:25 Calculate Source COMM Id = 2 +07:05:25 ============================================================================ +07:05:25 + + +waiting on router queue for slot.... +07:05:37 ============================================================================ +07:05:37 Slot Id : <486> +07:05:37 Transaction Type : REQUEST +07:05:37 Received From : +07:05:37 ============================================================================ +07:05:37 FNo. Len. Field Value +07:05:37 ============================================================================ +07:05:37 [ 1] [ 4] [0800] +07:05:37 [ 7] [ 10] [0320120445] +07:05:37 [ 11] [ 6] [155069] +07:05:37 [ 70] [ 3] [301] +07:05:37 ============================================================================ +07:05:37 + + +waiting on router queue for slot.... +07:05:37 Sending to : +07:05:37 ============================================================================ +07:05:37 ============================================================================ +07:05:37 Slot Id : <486> +07:05:37 Transaction Type : RESPONSE +07:05:37 Received From : +07:05:37 ============================================================================ +07:05:37 FNo. Len. Field Value +07:05:37 ============================================================================ +07:05:37 [ 1] [ 4] [0810] +07:05:37 [ 7] [ 10] [0320120445] +07:05:37 [ 11] [ 6] [155069] +07:05:37 [ 39] [ 2] [00] +07:05:37 [ 70] [ 3] [301] +07:05:37 ============================================================================ +07:05:37 Calculate Source COMM Id = 2 +07:05:37 ============================================================================ +07:05:37 + + +waiting on router queue for slot.... +07:05:48 ============================================================================ +07:05:48 Slot Id : <492> +07:05:48 Transaction Type : REQUEST +07:05:48 Received From : +07:05:48 ============================================================================ +07:05:48 FNo. Len. Field Value +07:05:48 ============================================================================ +07:05:48 [ 1] [ 4] [0800] +07:05:48 [ 7] [ 10] [0320141736] +07:05:48 [ 11] [ 6] [071736] +07:05:48 [ 37] [ 12] [57907071736] +07:05:48 [ 70] [ 3] [301] +07:05:48 ============================================================================ +07:05:48 + + +waiting on router queue for slot.... +07:05:48 Sending to : +07:05:48 ============================================================================ +07:05:48 ============================================================================ +07:05:48 Slot Id : <492> +07:05:48 Transaction Type : RESPONSE +07:05:48 Received From : +07:05:48 ============================================================================ +07:05:48 FNo. Len. Field Value +07:05:48 ============================================================================ +07:05:48 [ 1] [ 4] [0810] +07:05:48 [ 7] [ 10] [0320141736] +07:05:48 [ 11] [ 6] [071736] +07:05:48 [ 37] [ 12] [579070717360] +07:05:48 [ 39] [ 2] [00] +07:05:48 [ 70] [ 3] [810] +07:05:48 ============================================================================ +07:05:48 Calculate Source COMM Id = 6 +07:05:48 ============================================================================ +07:05:48 + + +waiting on router queue for slot.... +07:05:48 ============================================================================ +07:05:48 Slot Id : <6> +07:05:48 Transaction Type : REQUEST +07:05:48 Received From : +07:05:48 ============================================================================ +07:05:48 FNo. Len. Field Value +07:05:48 ============================================================================ +07:05:48 [ 1] [ 4] [0800] +07:05:48 [ 7] [ 10] [0320120456] +07:05:48 [ 11] [ 6] [155070] +07:05:48 [ 70] [ 3] [301] +07:05:48 ============================================================================ +07:05:48 + + +waiting on router queue for slot.... +07:05:48 Sending to : +07:05:48 ============================================================================ +07:05:48 ============================================================================ +07:05:48 Slot Id : <6> +07:05:48 Transaction Type : RESPONSE +07:05:48 Received From : +07:05:48 ============================================================================ +07:05:48 FNo. Len. Field Value +07:05:48 ============================================================================ +07:05:48 [ 1] [ 4] [0810] +07:05:48 [ 7] [ 10] [0320120456] +07:05:48 [ 11] [ 6] [155070] +07:05:48 [ 39] [ 2] [00] +07:05:48 [ 70] [ 3] [301] +07:05:48 ============================================================================ +07:05:48 Calculate Source COMM Id = 2 +07:05:48 ============================================================================ +07:05:48 + + +waiting on router queue for slot.... +07:05:59 ============================================================================ +07:05:59 Slot Id : <485> +07:05:59 Transaction Type : REQUEST +07:05:59 Received From : +07:05:59 ============================================================================ +07:05:59 FNo. Len. Field Value +07:05:59 ============================================================================ +07:05:59 [ 1] [ 4] [0800] +07:05:59 [ 7] [ 10] [0320120507] +07:05:59 [ 11] [ 6] [155071] +07:05:59 [ 70] [ 3] [301] +07:05:59 ============================================================================ +07:05:59 + + +waiting on router queue for slot.... +07:05:59 Sending to : +07:05:59 ============================================================================ +07:05:59 ============================================================================ +07:05:59 Slot Id : <485> +07:05:59 Transaction Type : RESPONSE +07:05:59 Received From : +07:05:59 ============================================================================ +07:05:59 FNo. Len. Field Value +07:05:59 ============================================================================ +07:05:59 [ 1] [ 4] [0810] +07:05:59 [ 7] [ 10] [0320120507] +07:05:59 [ 11] [ 6] [155071] +07:05:59 [ 39] [ 2] [00] +07:05:59 [ 70] [ 3] [301] +07:05:59 ============================================================================ +07:05:59 Calculate Source COMM Id = 2 +07:05:59 ============================================================================ +07:05:59 + + +waiting on router queue for slot.... +07:06:09 ============================================================================ +07:06:09 Slot Id : <454> +07:06:09 Transaction Type : REQUEST +07:06:09 Received From : +07:06:09 ============================================================================ +07:06:09 FNo. Len. Field Value +07:06:09 ============================================================================ +07:06:09 [ 1] [ 4] [0800] +07:06:09 [ 7] [ 10] [0320120517] +07:06:09 [ 11] [ 6] [155072] +07:06:09 [ 70] [ 3] [301] +07:06:09 ============================================================================ +07:06:09 + + +waiting on router queue for slot.... +07:06:09 Sending to : +07:06:09 ============================================================================ +07:06:09 ============================================================================ +07:06:09 Slot Id : <454> +07:06:09 Transaction Type : RESPONSE +07:06:09 Received From : +07:06:09 ============================================================================ +07:06:09 FNo. Len. Field Value +07:06:09 ============================================================================ +07:06:09 [ 1] [ 4] [0810] +07:06:09 [ 7] [ 10] [0320120517] +07:06:09 [ 11] [ 6] [155072] +07:06:09 [ 39] [ 2] [00] +07:06:09 [ 70] [ 3] [301] +07:06:09 ============================================================================ +07:06:09 Calculate Source COMM Id = 2 +07:06:09 ============================================================================ +07:06:09 + + +waiting on router queue for slot.... +07:06:20 ============================================================================ +07:06:20 Slot Id : <14> +07:06:20 Transaction Type : REQUEST +07:06:20 Received From : +07:06:20 ============================================================================ +07:06:20 FNo. Len. Field Value +07:06:20 ============================================================================ +07:06:20 [ 1] [ 4] [0800] +07:06:20 [ 7] [ 10] [0320000412] +07:06:20 [ 11] [ 6] [090760] +07:06:20 [ 37] [ 12] [57907090760] +07:06:20 [ 70] [ 3] [301] +07:06:20 ============================================================================ +07:06:20 + + +waiting on router queue for slot.... +07:06:20 Sending to : +07:06:20 ============================================================================ +07:06:20 ============================================================================ +07:06:20 Slot Id : <14> +07:06:20 Transaction Type : RESPONSE +07:06:20 Received From : +07:06:20 ============================================================================ +07:06:20 FNo. Len. Field Value +07:06:20 ============================================================================ +07:06:20 [ 1] [ 4] [0810] +07:06:20 [ 7] [ 10] [0320000412] +07:06:20 [ 11] [ 6] [090760] +07:06:20 [ 37] [ 12] [579070907600] +07:06:20 [ 39] [ 2] [00] +07:06:20 [ 70] [ 3] [810] +07:06:20 ============================================================================ +07:06:20 Calculate Source COMM Id = 4 +07:06:20 ============================================================================ +07:06:20 + + +waiting on router queue for slot.... +07:06:20 ============================================================================ +07:06:20 Slot Id : <13> +07:06:20 Transaction Type : REQUEST +07:06:20 Received From : +07:06:20 ============================================================================ +07:06:20 FNo. Len. Field Value +07:06:20 ============================================================================ +07:06:20 [ 1] [ 4] [0800] +07:06:20 [ 2] [ 5] [02531] +07:06:20 [ 3] [ 6] [579078] +07:06:20 [ 7] [ 10] [0320000620] +07:06:20 [ 11] [ 6] [806824] +07:06:20 [ 15] [ 10] [0320000620] +07:06:20 [ 37] [ 11] [57907806824] +07:06:20 [ 70] [ 3] [001] +07:06:20 ============================================================================ +07:06:20 + + +waiting on router queue for slot.... +07:06:20 ============================================================================ +07:06:20 Slot Id : <13> +07:06:20 Transaction Type : RESPONSE +07:06:20 Received From : +07:06:20 ============================================================================ +07:06:20 FNo. Len. Field Value +07:06:20 ============================================================================ +07:06:20 [ 1] [ 4] [0810] +07:06:20 [ 7] [ 10] [0320000620] +07:06:20 [ 11] [ 6] [806824] +07:06:20 [ 15] [ 4] [0320] +07:06:20 [ 37] [ 12] [57907806824] +07:06:20 [ 39] [ 2] [00] +07:06:20 [ 70] [ 3] [001] +07:06:20 ============================================================================ +07:06:20 Sending to : +07:06:20 ============================================================================ +07:06:20 + + +waiting on router queue for slot.... +07:06:25 ============================================================================ +07:06:25 Slot Id : <12> +07:06:25 Transaction Type : REQUEST +07:06:25 Received From : +07:06:25 ============================================================================ +07:06:25 FNo. Len. Field Value +07:06:25 ============================================================================ +07:06:25 [ 1] [ 4] [0800] +07:06:25 [ 7] [ 10] [0320120533] +07:06:25 [ 11] [ 6] [155073] +07:06:25 [ 70] [ 3] [301] +07:06:25 ============================================================================ +07:06:25 + + +waiting on router queue for slot.... +07:06:25 Sending to : +07:06:25 ============================================================================ +07:06:25 ============================================================================ +07:06:25 Slot Id : <12> +07:06:25 Transaction Type : RESPONSE +07:06:25 Received From : +07:06:25 ============================================================================ +07:06:25 FNo. Len. Field Value +07:06:25 ============================================================================ +07:06:25 [ 1] [ 4] [0810] +07:06:25 [ 7] [ 10] [0320120533] +07:06:25 [ 11] [ 6] [155073] +07:06:25 [ 39] [ 2] [00] +07:06:25 [ 70] [ 3] [301] +07:06:25 ============================================================================ +07:06:25 Calculate Source COMM Id = 2 +07:06:25 ============================================================================ +07:06:25 + + +waiting on router queue for slot.... +07:06:35 ============================================================================ +07:06:35 Slot Id : <16> +07:06:35 Transaction Type : REQUEST +07:06:35 Received From : +07:06:35 ============================================================================ +07:06:35 FNo. Len. Field Value +07:06:35 ============================================================================ +07:06:35 [ 1] [ 4] [0800] +07:06:35 [ 7] [ 10] [0320120544] +07:06:35 [ 11] [ 6] [155074] +07:06:35 [ 70] [ 3] [301] +07:06:35 ============================================================================ +07:06:35 + + +waiting on router queue for slot.... +07:06:35 Sending to : +07:06:35 ============================================================================ +07:06:35 ============================================================================ +07:06:35 Slot Id : <16> +07:06:35 Transaction Type : RESPONSE +07:06:35 Received From : +07:06:35 ============================================================================ +07:06:35 FNo. Len. Field Value +07:06:35 ============================================================================ +07:06:35 [ 1] [ 4] [0810] +07:06:35 [ 7] [ 10] [0320120544] +07:06:35 [ 11] [ 6] [155074] +07:06:35 [ 39] [ 2] [00] +07:06:35 [ 70] [ 3] [301] +07:06:35 ============================================================================ +07:06:35 Calculate Source COMM Id = 2 +07:06:35 ============================================================================ +07:06:35 + + +waiting on router queue for slot.... +07:06:47 ============================================================================ +07:06:47 Slot Id : <494> +07:06:47 Transaction Type : REQUEST +07:06:47 Received From : +07:06:47 ============================================================================ +07:06:47 FNo. Len. Field Value +07:06:47 ============================================================================ +07:06:47 [ 1] [ 4] [0800] +07:06:47 [ 7] [ 10] [0320120555] +07:06:47 [ 11] [ 6] [155075] +07:06:47 [ 70] [ 3] [301] +07:06:47 ============================================================================ +07:06:47 + + +waiting on router queue for slot.... +07:06:47 Sending to : +07:06:47 ============================================================================ +07:06:47 ============================================================================ +07:06:47 Slot Id : <494> +07:06:47 Transaction Type : RESPONSE +07:06:47 Received From : +07:06:47 ============================================================================ +07:06:47 FNo. Len. Field Value +07:06:47 ============================================================================ +07:06:47 [ 1] [ 4] [0810] +07:06:47 [ 7] [ 10] [0320120555] +07:06:47 [ 11] [ 6] [155075] +07:06:47 [ 39] [ 2] [00] +07:06:47 [ 70] [ 3] [301] +07:06:47 ============================================================================ +07:06:47 Calculate Source COMM Id = 2 +07:06:47 ============================================================================ +07:06:47 + + +waiting on router queue for slot.... +07:06:50 ============================================================================ +07:06:50 Slot Id : <469> +07:06:50 Transaction Type : REQUEST +07:06:50 Received From : +07:06:50 ============================================================================ +07:06:50 FNo. Len. Field Value +07:06:50 ============================================================================ +07:06:50 [ 1] [ 4] [0200] +07:06:50 [ 2] [ 16] [6688990060012802] +07:06:50 [ 3] [ 6] [300000] +07:06:50 [ 4] [ 12] [000000000000] +07:06:50 [ 7] [ 10] [0320070646] +07:06:50 [ 11] [ 6] [667541] +07:06:50 [ 12] [ 6] [070646] +07:06:50 [ 13] [ 4] [0320] +07:06:50 [ 15] [ 4] [0320] +07:06:50 [ 18] [ 4] [6011] +07:06:50 [ 22] [ 3] [900] +07:06:50 [ 25] [ 2] [02] +07:06:50 [ 28] [ 9] [D00000000] +07:06:50 [ 32] [ 6] [621354] +07:06:50 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:06:50 [ 37] [ 12] [507905108274] +07:06:50 [ 41] [ 8] [20001300] +07:06:50 [ 42] [ 15] [NATIVE ] +07:06:50 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +07:06:50 [ 49] [ 3] [418] +07:06:50 [ 52] [ 16] [E5B32AB2C7F29960] +07:06:50 ============================================================================ +07:06:50 + + +waiting on router queue for slot.... +07:06:50 Sending to : +07:06:50 ============================================================================ +07:06:50 Sending to : +07:06:50 ============================================================================ +07:06:50 ============================================================================ +07:06:50 Slot Id : <469> +07:06:50 Transaction Type : REQUEST +07:06:50 Received From : +07:06:50 ============================================================================ +07:06:50 FNo. Len. Field Value +07:06:50 ============================================================================ +07:06:50 [ 1] [ 4] [0200] +07:06:50 [ 2] [ 16] [6688990060012802] +07:06:50 [ 3] [ 6] [300000] +07:06:50 [ 4] [ 12] [000000000000] +07:06:50 [ 7] [ 10] [0320070646] +07:06:50 [ 11] [ 6] [667541] +07:06:50 [ 12] [ 6] [070646] +07:06:50 [ 13] [ 4] [0320] +07:06:50 [ 15] [ 4] [0320] +07:06:50 [ 18] [ 4] [6011] +07:06:50 [ 22] [ 3] [900] +07:06:50 [ 25] [ 2] [02] +07:06:50 [ 28] [ 9] [D00000000] +07:06:50 [ 32] [ 6] [621354] +07:06:50 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:06:50 [ 37] [ 12] [507905108274] +07:06:50 [ 41] [ 8] [20001300] +07:06:50 [ 42] [ 15] [NATIVE ] +07:06:50 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +07:06:50 [ 49] [ 3] [418] +07:06:50 [ 52] [ 16] [E5B32AB2C7F29960] +07:06:50 ============================================================================ +07:06:50 + + +waiting on router queue for slot.... +07:06:50 Sending to : +07:06:50 ============================================================================ +07:06:50 ============================================================================ +07:06:50 Slot Id : <469> +07:06:50 Transaction Type : REQUEST +07:06:50 Received From : +07:06:50 ============================================================================ +07:06:50 FNo. Len. Field Value +07:06:50 ============================================================================ +07:06:50 [ 1] [ 4] [0200] +07:06:50 [ 2] [ 16] [6688990060012802] +07:06:50 [ 3] [ 6] [300000] +07:06:50 [ 4] [ 12] [000000000000] +07:06:50 [ 7] [ 10] [0320070646] +07:06:50 [ 11] [ 6] [667541] +07:06:50 [ 12] [ 6] [070646] +07:06:50 [ 13] [ 4] [0320] +07:06:50 [ 15] [ 4] [0320] +07:06:50 [ 18] [ 4] [6011] +07:06:50 [ 22] [ 3] [900] +07:06:50 [ 25] [ 2] [02] +07:06:50 [ 28] [ 9] [D00000000] +07:06:50 [ 32] [ 6] [621354] +07:06:50 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:06:50 [ 37] [ 12] [507905108274] +07:06:50 [ 41] [ 8] [20001300] +07:06:50 [ 42] [ 15] [NATIVE ] +07:06:50 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +07:06:50 [ 49] [ 3] [418] +07:06:50 [ 52] [ 16] [60A5A070226A2D16] +07:06:50 ============================================================================ +07:06:50 + + +waiting on router queue for slot.... +07:06:50 Sending to : <4> +07:06:50 ============================================================================ +07:06:51 ============================================================================ +07:06:51 Slot Id : <469> +07:06:51 Transaction Type : RESPONSE +07:06:51 Received From : +07:06:51 ============================================================================ +07:06:51 FNo. Len. Field Value +07:06:51 ============================================================================ +07:06:51 [ 1] [ 4] [0210] +07:06:51 [ 2] [ 16] [6688990060012802] +07:06:51 [ 3] [ 6] [300000] +07:06:51 [ 4] [ 12] [000000000000] +07:06:51 [ 11] [ 6] [667541] +07:06:51 [ 12] [ 6] [070646] +07:06:51 [ 15] [ 4] [0320] +07:06:51 [ 18] [ 4] [6011] +07:06:51 [ 32] [ 6] [621354] +07:06:51 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:06:51 [ 37] [ 12] [507905108274] +07:06:51 [ 38] [ 6] [094979] +07:06:51 [ 39] [ 2] [00] +07:06:51 [ 41] [ 8] [20001300] +07:06:51 [ 49] [ 3] [418] +07:06:51 [ 54] [ 20] [0002418C000019727513] +07:06:51 ============================================================================ +07:06:51 Sending to : +07:06:51 ============================================================================ +07:06:51 + + +waiting on router queue for slot.... +07:06:52 ============================================================================ +07:06:52 Slot Id : <469> +07:06:52 Transaction Type : RESPONSE +07:06:52 Received From : +07:06:52 ============================================================================ +07:06:52 FNo. Len. Field Value +07:06:52 ============================================================================ +07:06:52 [ 1] [ 4] [0210] +07:06:52 [ 2] [ 16] [6688990060012802] +07:06:52 [ 3] [ 6] [300000] +07:06:52 [ 4] [ 12] [000000000000] +07:06:52 [ 11] [ 6] [667541] +07:06:52 [ 12] [ 6] [070646] +07:06:52 [ 15] [ 4] [0320] +07:06:52 [ 18] [ 4] [6011] +07:06:52 [ 32] [ 6] [621354] +07:06:52 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:06:52 [ 37] [ 12] [507905108274] +07:06:52 [ 38] [ 6] [094979] +07:06:52 [ 39] [ 2] [00] +07:06:52 [ 41] [ 8] [20001300] +07:06:52 [ 49] [ 3] [418] +07:06:52 [ 54] [ 20] [0002418C000019727513] +07:06:52 ============================================================================ +07:06:52 Calculate Source COMM Id = 0 +07:06:52 ============================================================================ +07:06:52 + + +waiting on router queue for slot.... +07:06:53 ============================================================================ +07:06:53 Slot Id : <22> +07:06:53 Transaction Type : REQUEST +07:06:53 Received From : +07:06:53 ============================================================================ +07:06:53 FNo. Len. Field Value +07:06:53 ============================================================================ +07:06:53 [ 1] [ 4] [0800] +07:06:53 [ 7] [ 10] [0320141841] +07:06:53 [ 11] [ 6] [071841] +07:06:53 [ 37] [ 12] [57907071841] +07:06:53 [ 70] [ 3] [301] +07:06:53 ============================================================================ +07:06:53 + + +waiting on router queue for slot.... +07:06:53 Sending to : +07:06:53 ============================================================================ +07:06:53 ============================================================================ +07:06:53 Slot Id : <22> +07:06:53 Transaction Type : RESPONSE +07:06:53 Received From : +07:06:53 ============================================================================ +07:06:53 FNo. Len. Field Value +07:06:53 ============================================================================ +07:06:53 [ 1] [ 4] [0810] +07:06:53 [ 7] [ 10] [0320141841] +07:06:53 [ 11] [ 6] [071841] +07:06:53 [ 37] [ 12] [579070718410] +07:06:53 [ 39] [ 2] [00] +07:06:53 [ 70] [ 3] [810] +07:06:53 ============================================================================ +07:06:53 Calculate Source COMM Id = 6 +07:06:53 ============================================================================ +07:06:53 + + +waiting on router queue for slot.... +07:06:57 ============================================================================ +07:06:57 Slot Id : <491> +07:06:57 Transaction Type : REQUEST +07:06:57 Received From : +07:06:57 ============================================================================ +07:06:57 FNo. Len. Field Value +07:06:57 ============================================================================ +07:06:57 [ 1] [ 4] [0800] +07:06:57 [ 7] [ 10] [0320120606] +07:06:57 [ 11] [ 6] [155076] +07:06:57 [ 70] [ 3] [301] +07:06:57 ============================================================================ +07:06:57 + + +waiting on router queue for slot.... +07:06:57 Sending to : +07:06:57 ============================================================================ +07:06:57 ============================================================================ +07:06:57 Slot Id : <491> +07:06:57 Transaction Type : RESPONSE +07:06:57 Received From : +07:06:57 ============================================================================ +07:06:57 FNo. Len. Field Value +07:06:57 ============================================================================ +07:06:57 [ 1] [ 4] [0810] +07:06:57 [ 7] [ 10] [0320120606] +07:06:57 [ 11] [ 6] [155076] +07:06:57 [ 39] [ 2] [00] +07:06:57 [ 70] [ 3] [301] +07:06:57 ============================================================================ +07:06:57 Calculate Source COMM Id = 2 +07:06:57 ============================================================================ +07:06:57 + + +waiting on router queue for slot.... +07:07:07 ============================================================================ +07:07:07 Slot Id : <17> +07:07:07 Transaction Type : REQUEST +07:07:07 Received From : +07:07:07 ============================================================================ +07:07:07 FNo. Len. Field Value +07:07:07 ============================================================================ +07:07:07 [ 1] [ 4] [0800] +07:07:07 [ 7] [ 10] [0320070655] +07:07:07 [ 11] [ 6] [055336] +07:07:07 [ 37] [ 12] [507907055336] +07:07:07 [ 70] [ 3] [ ] +07:07:07 ============================================================================ +07:07:07 + + +waiting on router queue for slot.... +07:07:07 Sending to : +07:07:07 ============================================================================ +07:07:07 ============================================================================ +07:07:07 Slot Id : <17> +07:07:07 Transaction Type : RESPONSE +07:07:07 Received From : +07:07:07 ============================================================================ +07:07:07 FNo. Len. Field Value +07:07:07 ============================================================================ +07:07:07 [ 1] [ 4] [0810] +07:07:07 [ 7] [ 10] [0320070655] +07:07:07 [ 11] [ 6] [055336] +07:07:07 [ 37] [ 12] [507907055336] +07:07:07 [ 39] [ 2] [91] +07:07:07 [ 70] [ 3] [ ] +07:07:07 ============================================================================ +07:07:07 Calculate Source COMM Id = 3 +07:07:07 ============================================================================ +07:07:07 + + +waiting on router queue for slot.... +07:07:09 ============================================================================ +07:07:09 Slot Id : <499> +07:07:09 Transaction Type : REQUEST +07:07:09 Received From : +07:07:09 ============================================================================ +07:07:09 FNo. Len. Field Value +07:07:09 ============================================================================ +07:07:09 [ 1] [ 4] [0800] +07:07:09 [ 7] [ 10] [0320120617] +07:07:09 [ 11] [ 6] [155077] +07:07:09 [ 70] [ 3] [301] +07:07:09 ============================================================================ +07:07:09 + + +waiting on router queue for slot.... +07:07:09 Sending to : +07:07:09 ============================================================================ +07:07:09 ============================================================================ +07:07:09 Slot Id : <499> +07:07:09 Transaction Type : RESPONSE +07:07:09 Received From : +07:07:09 ============================================================================ +07:07:09 FNo. Len. Field Value +07:07:09 ============================================================================ +07:07:09 [ 1] [ 4] [0810] +07:07:09 [ 7] [ 10] [0320120617] +07:07:09 [ 11] [ 6] [155077] +07:07:09 [ 39] [ 2] [00] +07:07:09 [ 70] [ 3] [301] +07:07:09 ============================================================================ +07:07:09 Calculate Source COMM Id = 2 +07:07:09 ============================================================================ +07:07:09 + + +waiting on router queue for slot.... +07:07:15 ============================================================================ +07:07:15 Slot Id : <10> +07:07:15 Transaction Type : REQUEST +07:07:15 Received From : +07:07:15 ============================================================================ +07:07:15 FNo. Len. Field Value +07:07:15 ============================================================================ +07:07:15 [ 1] [ 4] [0200] +07:07:15 [ 2] [ 16] [6688990107211607] +07:07:15 [ 3] [ 6] [300000] +07:07:15 [ 4] [ 12] [000000000000] +07:07:15 [ 7] [ 10] [0320070711] +07:07:15 [ 11] [ 6] [667596] +07:07:15 [ 12] [ 6] [070711] +07:07:15 [ 13] [ 4] [0320] +07:07:15 [ 15] [ 4] [0320] +07:07:15 [ 18] [ 4] [6011] +07:07:15 [ 22] [ 3] [900] +07:07:15 [ 25] [ 2] [02] +07:07:15 [ 28] [ 9] [D00000000] +07:07:15 [ 32] [ 6] [621354] +07:07:15 [ 35] [ 37] [6688990107211607=44021231160786700000] +07:07:15 [ 37] [ 12] [507904140195] +07:07:15 [ 41] [ 8] [20000900] +07:07:15 [ 42] [ 15] [NATIVE ] +07:07:15 [ 43] [ 40] [Saravane Branch03 Saravane LAO] +07:07:15 [ 49] [ 3] [418] +07:07:15 [ 52] [ 16] [3F31AE80D160A822] +07:07:15 ============================================================================ +07:07:15 + + +waiting on router queue for slot.... +07:07:15 Sending to : +07:07:15 ============================================================================ +07:07:15 Sending to : +07:07:15 ============================================================================ +07:07:15 ============================================================================ +07:07:15 Slot Id : <10> +07:07:15 Transaction Type : REQUEST +07:07:15 Received From : +07:07:15 ============================================================================ +07:07:15 FNo. Len. Field Value +07:07:15 ============================================================================ +07:07:15 [ 1] [ 4] [0200] +07:07:15 [ 2] [ 16] [6688990107211607] +07:07:15 [ 3] [ 6] [300000] +07:07:15 [ 4] [ 12] [000000000000] +07:07:15 [ 7] [ 10] [0320070711] +07:07:15 [ 11] [ 6] [667596] +07:07:15 [ 12] [ 6] [070711] +07:07:15 [ 13] [ 4] [0320] +07:07:15 [ 15] [ 4] [0320] +07:07:15 [ 18] [ 4] [6011] +07:07:15 [ 22] [ 3] [900] +07:07:15 [ 25] [ 2] [02] +07:07:15 [ 28] [ 9] [D00000000] +07:07:15 [ 32] [ 6] [621354] +07:07:15 [ 35] [ 37] [6688990107211607=44021231160786700000] +07:07:15 [ 37] [ 12] [507904140195] +07:07:15 [ 41] [ 8] [20000900] +07:07:15 [ 42] [ 15] [NATIVE ] +07:07:15 [ 43] [ 40] [Saravane Branch03 Saravane LAO] +07:07:15 [ 49] [ 3] [418] +07:07:15 [ 52] [ 16] [3F31AE80D160A822] +07:07:15 ============================================================================ +07:07:15 + + +waiting on router queue for slot.... +07:07:15 Sending to : +07:07:15 ============================================================================ +07:07:15 ============================================================================ +07:07:15 Slot Id : <10> +07:07:15 Transaction Type : REQUEST +07:07:15 Received From : +07:07:15 ============================================================================ +07:07:15 FNo. Len. Field Value +07:07:15 ============================================================================ +07:07:15 [ 1] [ 4] [0200] +07:07:15 [ 2] [ 16] [6688990107211607] +07:07:15 [ 3] [ 6] [300000] +07:07:15 [ 4] [ 12] [000000000000] +07:07:15 [ 7] [ 10] [0320070711] +07:07:15 [ 11] [ 6] [667596] +07:07:15 [ 12] [ 6] [070711] +07:07:15 [ 13] [ 4] [0320] +07:07:15 [ 15] [ 4] [0320] +07:07:15 [ 18] [ 4] [6011] +07:07:15 [ 22] [ 3] [900] +07:07:15 [ 25] [ 2] [02] +07:07:15 [ 28] [ 9] [D00000000] +07:07:15 [ 32] [ 6] [621354] +07:07:15 [ 35] [ 37] [6688990107211607=44021231160786700000] +07:07:15 [ 37] [ 12] [507904140195] +07:07:15 [ 41] [ 8] [20000900] +07:07:15 [ 42] [ 15] [NATIVE ] +07:07:15 [ 43] [ 40] [Saravane Branch03 Saravane LAO] +07:07:15 [ 49] [ 3] [418] +07:07:15 [ 52] [ 16] [8C8FBE1E0CE7F920] +07:07:15 ============================================================================ +07:07:15 + + +waiting on router queue for slot.... +07:07:15 Sending to : <4> +07:07:15 ============================================================================ +07:07:16 ============================================================================ +07:07:16 Slot Id : <10> +07:07:16 Transaction Type : RESPONSE +07:07:16 Received From : +07:07:16 ============================================================================ +07:07:16 FNo. Len. Field Value +07:07:16 ============================================================================ +07:07:16 [ 1] [ 4] [0210] +07:07:16 [ 2] [ 16] [6688990107211607] +07:07:16 [ 3] [ 6] [300000] +07:07:16 [ 4] [ 12] [000000000000] +07:07:16 [ 11] [ 6] [667596] +07:07:16 [ 12] [ 6] [070711] +07:07:16 [ 15] [ 4] [0320] +07:07:16 [ 18] [ 4] [6011] +07:07:16 [ 32] [ 6] [621354] +07:07:16 [ 35] [ 37] [6688990107211607=44021231160786700000] +07:07:16 [ 37] [ 12] [507904140195] +07:07:16 [ 38] [ 6] [248872] +07:07:16 [ 39] [ 2] [00] +07:07:16 [ 41] [ 8] [20000900] +07:07:16 [ 49] [ 3] [418] +07:07:16 [ 54] [ 20] [0002418C000181392054] +07:07:16 ============================================================================ +07:07:16 Sending to : +07:07:16 ============================================================================ +07:07:16 + + +waiting on router queue for slot.... +07:07:18 ============================================================================ +07:07:18 Slot Id : <10> +07:07:18 Transaction Type : RESPONSE +07:07:18 Received From : +07:07:18 ============================================================================ +07:07:18 FNo. Len. Field Value +07:07:18 ============================================================================ +07:07:18 [ 1] [ 4] [0210] +07:07:18 [ 2] [ 16] [6688990107211607] +07:07:18 [ 3] [ 6] [300000] +07:07:18 [ 4] [ 12] [000000000000] +07:07:18 [ 11] [ 6] [667596] +07:07:18 [ 12] [ 6] [070711] +07:07:18 [ 15] [ 4] [0320] +07:07:18 [ 18] [ 4] [6011] +07:07:18 [ 32] [ 6] [621354] +07:07:18 [ 35] [ 37] [6688990107211607=44021231160786700000] +07:07:18 [ 37] [ 12] [507904140195] +07:07:18 [ 38] [ 6] [248872] +07:07:18 [ 39] [ 2] [00] +07:07:18 [ 41] [ 8] [20000900] +07:07:18 [ 49] [ 3] [418] +07:07:18 [ 54] [ 20] [0002418C000181392054] +07:07:18 ============================================================================ +07:07:18 Calculate Source COMM Id = 0 +07:07:18 ============================================================================ +07:07:18 + + +waiting on router queue for slot.... +07:07:20 ============================================================================ +07:07:20 Slot Id : <31> +07:07:20 Transaction Type : REQUEST +07:07:20 Received From : +07:07:20 ============================================================================ +07:07:20 FNo. Len. Field Value +07:07:20 ============================================================================ +07:07:20 [ 1] [ 4] [0800] +07:07:20 [ 7] [ 10] [0320120628] +07:07:20 [ 11] [ 6] [155078] +07:07:20 [ 70] [ 3] [301] +07:07:20 ============================================================================ +07:07:20 + + +waiting on router queue for slot.... +07:07:20 Sending to : +07:07:20 ============================================================================ +07:07:20 ============================================================================ +07:07:20 Slot Id : <31> +07:07:20 Transaction Type : RESPONSE +07:07:20 Received From : +07:07:20 ============================================================================ +07:07:20 FNo. Len. Field Value +07:07:20 ============================================================================ +07:07:20 [ 1] [ 4] [0810] +07:07:20 [ 7] [ 10] [0320120628] +07:07:20 [ 11] [ 6] [155078] +07:07:20 [ 39] [ 2] [00] +07:07:20 [ 70] [ 3] [301] +07:07:20 ============================================================================ +07:07:20 Calculate Source COMM Id = 2 +07:07:20 ============================================================================ +07:07:20 + + +waiting on router queue for slot.... +07:07:22 ============================================================================ +07:07:22 Slot Id : <23> +07:07:22 Transaction Type : REQUEST +07:07:22 Received From : +07:07:22 ============================================================================ +07:07:22 FNo. Len. Field Value +07:07:22 ============================================================================ +07:07:22 [ 1] [ 4] [0200] +07:07:22 [ 2] [ 16] [6688990103272306] +07:07:22 [ 3] [ 6] [301000] +07:07:22 [ 4] [ 12] [000000000000] +07:07:22 [ 7] [ 10] [0320070718] +07:07:22 [ 11] [ 6] [667625] +07:07:22 [ 12] [ 6] [070718] +07:07:22 [ 13] [ 4] [0320] +07:07:22 [ 15] [ 4] [0320] +07:07:22 [ 18] [ 4] [6011] +07:07:22 [ 22] [ 3] [900] +07:07:22 [ 25] [ 2] [02] +07:07:22 [ 28] [ 9] [D00000000] +07:07:22 [ 32] [ 6] [621354] +07:07:22 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:07:22 [ 37] [ 12] [507903499412] +07:07:22 [ 41] [ 8] [06002200] +07:07:22 [ 42] [ 15] [NATIVE ] +07:07:22 [ 43] [ 40] [Beng Market Beng LAO] +07:07:22 [ 49] [ 3] [418] +07:07:22 [ 52] [ 16] [3B2593E21CE86DB1] +07:07:22 ============================================================================ +07:07:22 + + +waiting on router queue for slot.... +07:07:22 Sending to : +07:07:22 ============================================================================ +07:07:22 Sending to : +07:07:22 ============================================================================ +07:07:22 ============================================================================ +07:07:22 Slot Id : <481> +07:07:22 Transaction Type : REQUEST +07:07:22 Received From : +07:07:22 ============================================================================ +07:07:22 FNo. Len. Field Value +07:07:22 ============================================================================ +07:07:22 [ 1] [ 4] [0800] +07:07:22 [ 2] [ 5] [02531] +07:07:22 [ 3] [ 6] [579078] +07:07:22 [ 7] [ 10] [0320000722] +07:07:22 [ 11] [ 6] [806825] +07:07:22 [ 15] [ 10] [0320000722] +07:07:22 [ 37] [ 11] [57907806825] +07:07:22 [ 70] [ 3] [001] +07:07:22 ============================================================================ +07:07:22 + + +waiting on router queue for slot.... +07:07:22 ============================================================================ +07:07:22 Slot Id : <481> +07:07:22 Transaction Type : RESPONSE +07:07:22 Received From : +07:07:22 ============================================================================ +07:07:22 FNo. Len. Field Value +07:07:22 ============================================================================ +07:07:22 [ 1] [ 4] [0810] +07:07:22 [ 7] [ 10] [0320000722] +07:07:22 [ 11] [ 6] [806825] +07:07:22 [ 15] [ 4] [0320] +07:07:22 [ 37] [ 12] [57907806825] +07:07:22 [ 39] [ 2] [00] +07:07:22 [ 70] [ 3] [001] +07:07:22 ============================================================================ +07:07:22 Sending to : +07:07:22 ============================================================================ +07:07:22 + + +waiting on router queue for slot.... +07:07:22 ============================================================================ +07:07:22 Slot Id : <23> +07:07:22 Transaction Type : REQUEST +07:07:22 Received From : +07:07:22 ============================================================================ +07:07:22 FNo. Len. Field Value +07:07:22 ============================================================================ +07:07:22 [ 1] [ 4] [0200] +07:07:22 [ 2] [ 16] [6688990103272306] +07:07:22 [ 3] [ 6] [301000] +07:07:22 [ 4] [ 12] [000000000000] +07:07:22 [ 7] [ 10] [0320070718] +07:07:22 [ 11] [ 6] [667625] +07:07:22 [ 12] [ 6] [070718] +07:07:22 [ 13] [ 4] [0320] +07:07:22 [ 15] [ 4] [0320] +07:07:22 [ 18] [ 4] [6011] +07:07:22 [ 22] [ 3] [900] +07:07:22 [ 25] [ 2] [02] +07:07:22 [ 28] [ 9] [D00000000] +07:07:22 [ 32] [ 6] [621354] +07:07:22 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:07:22 [ 37] [ 12] [507903499412] +07:07:22 [ 41] [ 8] [06002200] +07:07:22 [ 42] [ 15] [NATIVE ] +07:07:22 [ 43] [ 40] [Beng Market Beng LAO] +07:07:22 [ 49] [ 3] [418] +07:07:22 [ 52] [ 16] [3B2593E21CE86DB1] +07:07:22 ============================================================================ +07:07:22 + + +waiting on router queue for slot.... +07:07:22 Sending to : +07:07:22 ============================================================================ +07:07:22 ============================================================================ +07:07:22 Slot Id : <23> +07:07:22 Transaction Type : REQUEST +07:07:22 Received From : +07:07:22 ============================================================================ +07:07:22 FNo. Len. Field Value +07:07:22 ============================================================================ +07:07:22 [ 1] [ 4] [0200] +07:07:22 [ 2] [ 16] [6688990103272306] +07:07:22 [ 3] [ 6] [301000] +07:07:22 [ 4] [ 12] [000000000000] +07:07:22 [ 7] [ 10] [0320070718] +07:07:22 [ 11] [ 6] [667625] +07:07:22 [ 12] [ 6] [070718] +07:07:22 [ 13] [ 4] [0320] +07:07:22 [ 15] [ 4] [0320] +07:07:22 [ 18] [ 4] [6011] +07:07:22 [ 22] [ 3] [900] +07:07:22 [ 25] [ 2] [02] +07:07:22 [ 28] [ 9] [D00000000] +07:07:22 [ 32] [ 6] [621354] +07:07:22 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:07:22 [ 37] [ 12] [507903499412] +07:07:22 [ 41] [ 8] [06002200] +07:07:22 [ 42] [ 15] [NATIVE ] +07:07:22 [ 43] [ 40] [Beng Market Beng LAO] +07:07:22 [ 49] [ 3] [418] +07:07:22 [ 52] [ 16] [1EEBBBC243DE7E3E] +07:07:22 ============================================================================ +07:07:22 + + +waiting on router queue for slot.... +07:07:22 Sending to : <4> +07:07:22 ============================================================================ +07:07:23 ============================================================================ +07:07:23 Slot Id : <23> +07:07:23 Transaction Type : RESPONSE +07:07:23 Received From : +07:07:23 ============================================================================ +07:07:23 FNo. Len. Field Value +07:07:23 ============================================================================ +07:07:23 [ 1] [ 4] [0210] +07:07:23 [ 2] [ 16] [6688990103272306] +07:07:23 [ 3] [ 6] [301000] +07:07:23 [ 4] [ 12] [000000000000] +07:07:23 [ 11] [ 6] [667625] +07:07:23 [ 12] [ 6] [070718] +07:07:23 [ 15] [ 4] [0320] +07:07:23 [ 18] [ 4] [6011] +07:07:23 [ 32] [ 6] [621354] +07:07:23 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:07:23 [ 37] [ 12] [507903499412] +07:07:23 [ 38] [ 6] [317726] +07:07:23 [ 39] [ 2] [00] +07:07:23 [ 41] [ 8] [06002200] +07:07:23 [ 49] [ 3] [418] +07:07:23 [ 54] [ 20] [1002418C000381587742] +07:07:23 ============================================================================ +07:07:23 Sending to : +07:07:23 ============================================================================ +07:07:23 + + +waiting on router queue for slot.... +07:07:25 ============================================================================ +07:07:25 Slot Id : <23> +07:07:25 Transaction Type : RESPONSE +07:07:25 Received From : +07:07:25 ============================================================================ +07:07:25 FNo. Len. Field Value +07:07:25 ============================================================================ +07:07:25 [ 1] [ 4] [0210] +07:07:25 [ 2] [ 16] [6688990103272306] +07:07:25 [ 3] [ 6] [301000] +07:07:25 [ 4] [ 12] [000000000000] +07:07:25 [ 11] [ 6] [667625] +07:07:25 [ 12] [ 6] [070718] +07:07:25 [ 15] [ 4] [0320] +07:07:25 [ 18] [ 4] [6011] +07:07:25 [ 32] [ 6] [621354] +07:07:25 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:07:25 [ 37] [ 12] [507903499412] +07:07:25 [ 38] [ 6] [317726] +07:07:25 [ 39] [ 2] [00] +07:07:25 [ 41] [ 8] [06002200] +07:07:25 [ 49] [ 3] [418] +07:07:25 [ 54] [ 20] [1002418C000381587742] +07:07:25 ============================================================================ +07:07:25 Calculate Source COMM Id = 0 +07:07:25 ============================================================================ +07:07:25 + + +waiting on router queue for slot.... +07:07:31 ============================================================================ +07:07:31 Slot Id : <3> +07:07:31 Transaction Type : REQUEST +07:07:31 Received From : +07:07:31 ============================================================================ +07:07:31 FNo. Len. Field Value +07:07:31 ============================================================================ +07:07:31 [ 1] [ 4] [0800] +07:07:31 [ 7] [ 10] [0320120640] +07:07:31 [ 11] [ 6] [155079] +07:07:31 [ 70] [ 3] [301] +07:07:31 ============================================================================ +07:07:31 + + +waiting on router queue for slot.... +07:07:31 Sending to : +07:07:31 ============================================================================ +07:07:31 ============================================================================ +07:07:31 Slot Id : <3> +07:07:31 Transaction Type : RESPONSE +07:07:31 Received From : +07:07:31 ============================================================================ +07:07:31 FNo. Len. Field Value +07:07:31 ============================================================================ +07:07:31 [ 1] [ 4] [0810] +07:07:31 [ 7] [ 10] [0320120640] +07:07:31 [ 11] [ 6] [155079] +07:07:31 [ 39] [ 2] [00] +07:07:31 [ 70] [ 3] [301] +07:07:31 ============================================================================ +07:07:31 Calculate Source COMM Id = 2 +07:07:31 ============================================================================ +07:07:31 + + +waiting on router queue for slot.... +07:07:32 ============================================================================ +07:07:32 Slot Id : <29> +07:07:32 Transaction Type : REQUEST +07:07:32 Received From : +07:07:32 ============================================================================ +07:07:32 FNo. Len. Field Value +07:07:32 ============================================================================ +07:07:32 [ 1] [ 4] [0200] +07:07:32 [ 2] [ 16] [1888880000024448] +07:07:32 [ 3] [ 6] [011000] +07:07:32 [ 4] [ 12] [000050000000] +07:07:32 [ 7] [ 10] [0320070728] +07:07:32 [ 11] [ 6] [667653] +07:07:32 [ 12] [ 6] [070728] +07:07:32 [ 13] [ 4] [0320] +07:07:32 [ 15] [ 4] [0320] +07:07:32 [ 18] [ 4] [6011] +07:07:32 [ 22] [ 3] [900] +07:07:32 [ 25] [ 2] [02] +07:07:32 [ 28] [ 9] [D00002000] +07:07:32 [ 32] [ 6] [621354] +07:07:32 [ 35] [ 32] [1888880000024448=000010100000910] +07:07:32 [ 37] [ 12] [507905090049] +07:07:32 [ 41] [ 8] [04004200] +07:07:32 [ 42] [ 15] [NATIVE ] +07:07:32 [ 43] [ 40] [Kam ngeun phark tay CPS Champasak LAO] +07:07:32 [ 49] [ 3] [418] +07:07:32 [ 52] [ 16] [5102438477E5D5A9] +07:07:32 ============================================================================ +07:07:32 + + +waiting on router queue for slot.... +07:07:32 Sending to : +07:07:32 ============================================================================ +07:07:32 Sending to : +07:07:32 ============================================================================ +07:07:32 ============================================================================ +07:07:32 Slot Id : <29> +07:07:32 Transaction Type : REQUEST +07:07:32 Received From : +07:07:32 ============================================================================ +07:07:32 FNo. Len. Field Value +07:07:32 ============================================================================ +07:07:32 [ 1] [ 4] [0200] +07:07:32 [ 2] [ 16] [1888880000024448] +07:07:32 [ 3] [ 6] [011000] +07:07:32 [ 4] [ 12] [000050000000] +07:07:32 [ 7] [ 10] [0320070728] +07:07:32 [ 11] [ 6] [667653] +07:07:32 [ 12] [ 6] [070728] +07:07:32 [ 13] [ 4] [0320] +07:07:32 [ 15] [ 4] [0320] +07:07:32 [ 18] [ 4] [6011] +07:07:32 [ 22] [ 3] [900] +07:07:32 [ 25] [ 2] [02] +07:07:32 [ 28] [ 9] [D00002000] +07:07:32 [ 32] [ 6] [621354] +07:07:32 [ 35] [ 32] [1888880000024448=000010100000910] +07:07:32 [ 37] [ 12] [507905090049] +07:07:32 [ 41] [ 8] [04004200] +07:07:32 [ 42] [ 15] [NATIVE ] +07:07:32 [ 43] [ 40] [Kam ngeun phark tay CPS Champasak LAO] +07:07:32 [ 49] [ 3] [418] +07:07:32 [ 52] [ 16] [5102438477E5D5A9] +07:07:32 ============================================================================ +07:07:32 + + +waiting on router queue for slot.... +07:07:32 Sending to : +07:07:32 ============================================================================ +07:07:32 ============================================================================ +07:07:32 Slot Id : <29> +07:07:32 Transaction Type : REQUEST +07:07:32 Received From : +07:07:32 ============================================================================ +07:07:32 FNo. Len. Field Value +07:07:32 ============================================================================ +07:07:32 [ 1] [ 4] [0200] +07:07:32 [ 2] [ 16] [1888880000024448] +07:07:32 [ 3] [ 6] [011000] +07:07:32 [ 4] [ 12] [000050000000] +07:07:32 [ 7] [ 10] [0320070728] +07:07:32 [ 11] [ 6] [667653] +07:07:32 [ 12] [ 6] [070728] +07:07:32 [ 13] [ 4] [0320] +07:07:32 [ 15] [ 4] [0320] +07:07:32 [ 18] [ 4] [6011] +07:07:32 [ 22] [ 3] [900] +07:07:32 [ 25] [ 2] [02] +07:07:32 [ 28] [ 9] [D00002000] +07:07:32 [ 32] [ 6] [621354] +07:07:32 [ 35] [ 32] [1888880000024448=000010100000910] +07:07:32 [ 37] [ 12] [507905090049] +07:07:32 [ 41] [ 8] [04004200] +07:07:32 [ 42] [ 15] [NATIVE ] +07:07:32 [ 43] [ 40] [Kam ngeun phark tay CPS Champasak LAO] +07:07:32 [ 49] [ 3] [418] +07:07:32 [ 52] [ 16] [74925AA0E9B621C4] +07:07:32 ============================================================================ +07:07:32 + + +waiting on router queue for slot.... +07:07:32 Sending to : <5> +07:07:32 ============================================================================ +07:07:35 ============================================================================ +07:07:35 Slot Id : <29> +07:07:35 Transaction Type : RESPONSE +07:07:35 Received From : +07:07:35 ============================================================================ +07:07:35 FNo. Len. Field Value +07:07:35 ============================================================================ +07:07:35 [ 1] [ 4] [0210] +07:07:35 [ 2] [ 16] [1888880000024448] +07:07:35 [ 3] [ 6] [011000] +07:07:35 [ 4] [ 12] [000050000000] +07:07:35 [ 7] [ 10] [0320070728] +07:07:35 [ 11] [ 6] [667653] +07:07:35 [ 12] [ 6] [070728] +07:07:35 [ 13] [ 4] [0320] +07:07:35 [ 15] [ 4] [0320] +07:07:35 [ 18] [ 4] [6011] +07:07:35 [ 19] [ 3] [418] +07:07:35 [ 32] [ 6] [621354] +07:07:35 [ 37] [ 12] [507905090049] +07:07:35 [ 38] [ 6] [408758] +07:07:35 [ 39] [ 2] [00] +07:07:35 [ 41] [ 8] [04004200] +07:07:35 [ 49] [ 3] [418] +07:07:35 [ 54] [ 0] [] +07:07:35 ============================================================================ +07:07:35 Sending to : +07:07:35 ============================================================================ +07:07:35 + + +waiting on router queue for slot.... +07:07:37 ============================================================================ +07:07:37 Slot Id : <29> +07:07:37 Transaction Type : RESPONSE +07:07:37 Received From : +07:07:37 ============================================================================ +07:07:37 FNo. Len. Field Value +07:07:37 ============================================================================ +07:07:37 [ 1] [ 4] [0210] +07:07:37 [ 2] [ 16] [1888880000024448] +07:07:37 [ 3] [ 6] [011000] +07:07:37 [ 4] [ 12] [000050000000] +07:07:37 [ 7] [ 10] [0320070728] +07:07:37 [ 11] [ 6] [667653] +07:07:37 [ 12] [ 6] [070728] +07:07:37 [ 13] [ 4] [0320] +07:07:37 [ 15] [ 4] [0320] +07:07:37 [ 18] [ 4] [6011] +07:07:37 [ 19] [ 3] [418] +07:07:37 [ 32] [ 6] [621354] +07:07:37 [ 37] [ 12] [507905090049] +07:07:37 [ 38] [ 6] [408758] +07:07:37 [ 39] [ 2] [00] +07:07:37 [ 41] [ 8] [04004200] +07:07:37 [ 49] [ 3] [418] +07:07:37 [ 54] [ 0] [] +07:07:37 ============================================================================ +07:07:37 Calculate Source COMM Id = 0 +07:07:37 ============================================================================ +07:07:37 + + +waiting on router queue for slot.... +07:07:42 ============================================================================ +07:07:42 Slot Id : <7> +07:07:42 Transaction Type : REQUEST +07:07:42 Received From : +07:07:42 ============================================================================ +07:07:42 FNo. Len. Field Value +07:07:42 ============================================================================ +07:07:42 [ 1] [ 4] [0800] +07:07:42 [ 7] [ 10] [0320120650] +07:07:42 [ 11] [ 6] [155080] +07:07:42 [ 70] [ 3] [301] +07:07:42 ============================================================================ +07:07:42 + + +waiting on router queue for slot.... +07:07:42 Sending to : +07:07:42 ============================================================================ +07:07:42 ============================================================================ +07:07:42 Slot Id : <7> +07:07:42 Transaction Type : RESPONSE +07:07:42 Received From : +07:07:42 ============================================================================ +07:07:42 FNo. Len. Field Value +07:07:42 ============================================================================ +07:07:42 [ 1] [ 4] [0810] +07:07:42 [ 7] [ 10] [0320120650] +07:07:42 [ 11] [ 6] [155080] +07:07:42 [ 39] [ 2] [00] +07:07:42 [ 70] [ 3] [301] +07:07:42 ============================================================================ +07:07:42 Calculate Source COMM Id = 2 +07:07:42 ============================================================================ +07:07:42 + + +waiting on router queue for slot.... +07:07:50 ============================================================================ +07:07:50 Slot Id : <21> +07:07:50 Transaction Type : REQUEST +07:07:50 Received From : +07:07:50 ============================================================================ +07:07:50 FNo. Len. Field Value +07:07:50 ============================================================================ +07:07:50 [ 1] [ 4] [0200] +07:07:50 [ 2] [ 16] [6688990060012802] +07:07:50 [ 3] [ 6] [300000] +07:07:50 [ 4] [ 12] [000000000000] +07:07:50 [ 7] [ 10] [0320070746] +07:07:50 [ 11] [ 6] [667682] +07:07:50 [ 12] [ 6] [070746] +07:07:50 [ 13] [ 4] [0320] +07:07:50 [ 15] [ 4] [0320] +07:07:50 [ 18] [ 4] [6011] +07:07:50 [ 22] [ 3] [900] +07:07:50 [ 25] [ 2] [02] +07:07:50 [ 28] [ 9] [D00000000] +07:07:50 [ 32] [ 6] [621354] +07:07:50 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:07:50 [ 37] [ 12] [507905108275] +07:07:50 [ 41] [ 8] [20001300] +07:07:50 [ 42] [ 15] [NATIVE ] +07:07:50 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +07:07:50 [ 49] [ 3] [418] +07:07:50 [ 52] [ 16] [E5B32AB2C7F29960] +07:07:50 ============================================================================ +07:07:50 + + +waiting on router queue for slot.... +07:07:50 Sending to : +07:07:50 ============================================================================ +07:07:50 Sending to : +07:07:50 ============================================================================ +07:07:50 ============================================================================ +07:07:50 Slot Id : <21> +07:07:50 Transaction Type : REQUEST +07:07:50 Received From : +07:07:50 ============================================================================ +07:07:50 FNo. Len. Field Value +07:07:50 ============================================================================ +07:07:50 [ 1] [ 4] [0200] +07:07:50 [ 2] [ 16] [6688990060012802] +07:07:50 [ 3] [ 6] [300000] +07:07:50 [ 4] [ 12] [000000000000] +07:07:50 [ 7] [ 10] [0320070746] +07:07:50 [ 11] [ 6] [667682] +07:07:50 [ 12] [ 6] [070746] +07:07:50 [ 13] [ 4] [0320] +07:07:50 [ 15] [ 4] [0320] +07:07:50 [ 18] [ 4] [6011] +07:07:50 [ 22] [ 3] [900] +07:07:50 [ 25] [ 2] [02] +07:07:50 [ 28] [ 9] [D00000000] +07:07:50 [ 32] [ 6] [621354] +07:07:50 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:07:50 [ 37] [ 12] [507905108275] +07:07:50 [ 41] [ 8] [20001300] +07:07:50 [ 42] [ 15] [NATIVE ] +07:07:50 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +07:07:50 [ 49] [ 3] [418] +07:07:50 [ 52] [ 16] [E5B32AB2C7F29960] +07:07:50 ============================================================================ +07:07:50 + + +waiting on router queue for slot.... +07:07:50 Sending to : +07:07:50 ============================================================================ +07:07:50 ============================================================================ +07:07:50 Slot Id : <21> +07:07:50 Transaction Type : REQUEST +07:07:50 Received From : +07:07:50 ============================================================================ +07:07:50 FNo. Len. Field Value +07:07:50 ============================================================================ +07:07:50 [ 1] [ 4] [0200] +07:07:50 [ 2] [ 16] [6688990060012802] +07:07:50 [ 3] [ 6] [300000] +07:07:50 [ 4] [ 12] [000000000000] +07:07:50 [ 7] [ 10] [0320070746] +07:07:50 [ 11] [ 6] [667682] +07:07:50 [ 12] [ 6] [070746] +07:07:50 [ 13] [ 4] [0320] +07:07:50 [ 15] [ 4] [0320] +07:07:50 [ 18] [ 4] [6011] +07:07:50 [ 22] [ 3] [900] +07:07:50 [ 25] [ 2] [02] +07:07:50 [ 28] [ 9] [D00000000] +07:07:50 [ 32] [ 6] [621354] +07:07:50 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:07:50 [ 37] [ 12] [507905108275] +07:07:50 [ 41] [ 8] [20001300] +07:07:50 [ 42] [ 15] [NATIVE ] +07:07:50 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +07:07:50 [ 49] [ 3] [418] +07:07:50 [ 52] [ 16] [60A5A070226A2D16] +07:07:50 ============================================================================ +07:07:50 + + +waiting on router queue for slot.... +07:07:50 Sending to : <4> +07:07:50 ============================================================================ +07:07:51 ============================================================================ +07:07:51 Slot Id : <21> +07:07:51 Transaction Type : RESPONSE +07:07:51 Received From : +07:07:51 ============================================================================ +07:07:51 FNo. Len. Field Value +07:07:51 ============================================================================ +07:07:51 [ 1] [ 4] [0210] +07:07:51 [ 2] [ 16] [6688990060012802] +07:07:51 [ 3] [ 6] [300000] +07:07:51 [ 4] [ 12] [000000000000] +07:07:51 [ 11] [ 6] [667682] +07:07:51 [ 12] [ 6] [070746] +07:07:51 [ 15] [ 4] [0320] +07:07:51 [ 18] [ 4] [6011] +07:07:51 [ 32] [ 6] [621354] +07:07:51 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:07:51 [ 37] [ 12] [507905108275] +07:07:51 [ 38] [ 6] [325361] +07:07:51 [ 39] [ 2] [00] +07:07:51 [ 41] [ 8] [20001300] +07:07:51 [ 49] [ 3] [418] +07:07:51 [ 54] [ 20] [0002418C000019727513] +07:07:51 ============================================================================ +07:07:51 Sending to : +07:07:51 ============================================================================ +07:07:51 + + +waiting on router queue for slot.... +07:07:52 ============================================================================ +07:07:52 Slot Id : <33> +07:07:52 Transaction Type : REQUEST +07:07:52 Received From : +07:07:52 ============================================================================ +07:07:52 FNo. Len. Field Value +07:07:52 ============================================================================ +07:07:52 [ 1] [ 4] [0800] +07:07:52 [ 7] [ 10] [0320120701] +07:07:52 [ 11] [ 6] [155081] +07:07:52 [ 70] [ 3] [301] +07:07:52 ============================================================================ +07:07:52 + + +waiting on router queue for slot.... +07:07:52 Sending to : +07:07:52 ============================================================================ +07:07:52 ============================================================================ +07:07:52 Slot Id : <33> +07:07:52 Transaction Type : RESPONSE +07:07:52 Received From : +07:07:52 ============================================================================ +07:07:52 FNo. Len. Field Value +07:07:52 ============================================================================ +07:07:52 [ 1] [ 4] [0810] +07:07:52 [ 7] [ 10] [0320120701] +07:07:52 [ 11] [ 6] [155081] +07:07:52 [ 39] [ 2] [00] +07:07:52 [ 70] [ 3] [301] +07:07:52 ============================================================================ +07:07:52 Calculate Source COMM Id = 2 +07:07:52 ============================================================================ +07:07:52 + + +waiting on router queue for slot.... +07:07:53 ============================================================================ +07:07:53 Slot Id : <21> +07:07:53 Transaction Type : RESPONSE +07:07:53 Received From : +07:07:53 ============================================================================ +07:07:53 FNo. Len. Field Value +07:07:53 ============================================================================ +07:07:53 [ 1] [ 4] [0210] +07:07:53 [ 2] [ 16] [6688990060012802] +07:07:53 [ 3] [ 6] [300000] +07:07:53 [ 4] [ 12] [000000000000] +07:07:53 [ 11] [ 6] [667682] +07:07:53 [ 12] [ 6] [070746] +07:07:53 [ 15] [ 4] [0320] +07:07:53 [ 18] [ 4] [6011] +07:07:53 [ 32] [ 6] [621354] +07:07:53 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:07:53 [ 37] [ 12] [507905108275] +07:07:53 [ 38] [ 6] [325361] +07:07:53 [ 39] [ 2] [00] +07:07:53 [ 41] [ 8] [20001300] +07:07:53 [ 49] [ 3] [418] +07:07:53 [ 54] [ 20] [0002418C000019727513] +07:07:53 ============================================================================ +07:07:53 Calculate Source COMM Id = 0 +07:07:53 ============================================================================ +07:07:53 + + +waiting on router queue for slot.... +07:07:58 ============================================================================ +07:07:58 Slot Id : <35> +07:07:58 Transaction Type : REQUEST +07:07:58 Received From : +07:07:58 ============================================================================ +07:07:58 FNo. Len. Field Value +07:07:58 ============================================================================ +07:07:58 [ 1] [ 4] [0800] +07:07:58 [ 7] [ 10] [0320141946] +07:07:58 [ 11] [ 6] [071946] +07:07:58 [ 37] [ 12] [57907071946] +07:07:58 [ 70] [ 3] [301] +07:07:58 ============================================================================ +07:07:58 + + +waiting on router queue for slot.... +07:07:58 Sending to : +07:07:58 ============================================================================ +07:07:58 ============================================================================ +07:07:58 Slot Id : <35> +07:07:58 Transaction Type : RESPONSE +07:07:58 Received From : +07:07:58 ============================================================================ +07:07:58 FNo. Len. Field Value +07:07:58 ============================================================================ +07:07:58 [ 1] [ 4] [0810] +07:07:58 [ 7] [ 10] [0320141946] +07:07:58 [ 11] [ 6] [071946] +07:07:58 [ 37] [ 12] [579070719460] +07:07:58 [ 39] [ 2] [00] +07:07:58 [ 70] [ 3] [810] +07:07:58 ============================================================================ +07:07:58 Calculate Source COMM Id = 6 +07:07:58 ============================================================================ +07:07:58 + + +waiting on router queue for slot.... +07:07:58 ============================================================================ +07:07:58 Slot Id : <11> +07:07:58 Transaction Type : REQUEST +07:07:58 Received From : +07:07:58 ============================================================================ +07:07:58 FNo. Len. Field Value +07:07:58 ============================================================================ +07:07:58 [ 1] [ 4] [0200] +07:07:58 [ 2] [ 16] [1808931100007184] +07:07:58 [ 3] [ 6] [011000] +07:07:58 [ 4] [ 12] [000010000000] +07:07:58 [ 7] [ 10] [0320070754] +07:07:58 [ 11] [ 6] [667695] +07:07:58 [ 12] [ 6] [070754] +07:07:58 [ 13] [ 4] [0320] +07:07:58 [ 15] [ 4] [0320] +07:07:58 [ 18] [ 4] [6011] +07:07:58 [ 22] [ 3] [900] +07:07:58 [ 25] [ 2] [02] +07:07:58 [ 28] [ 9] [D00002000] +07:07:58 [ 32] [ 6] [621354] +07:07:58 [ 35] [ 27] [1808931100007184=1803500319] +07:07:58 [ 37] [ 12] [507903798537] +07:07:58 [ 41] [ 8] [01009500] +07:07:58 [ 42] [ 15] [NATIVE ] +07:07:58 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +07:07:58 [ 49] [ 3] [418] +07:07:58 [ 52] [ 16] [9EA6FBA2A0041572] +07:07:58 ============================================================================ +07:07:58 + + +waiting on router queue for slot.... +07:07:58 Sending to : +07:07:58 ============================================================================ +07:07:58 Sending to : +07:07:58 ============================================================================ +07:07:58 ============================================================================ +07:07:58 Slot Id : <11> +07:07:58 Transaction Type : REQUEST +07:07:58 Received From : +07:07:58 ============================================================================ +07:07:58 FNo. Len. Field Value +07:07:58 ============================================================================ +07:07:58 [ 1] [ 4] [0200] +07:07:58 [ 2] [ 16] [1808931100007184] +07:07:58 [ 3] [ 6] [011000] +07:07:58 [ 4] [ 12] [000010000000] +07:07:58 [ 7] [ 10] [0320070754] +07:07:58 [ 11] [ 6] [667695] +07:07:58 [ 12] [ 6] [070754] +07:07:58 [ 13] [ 4] [0320] +07:07:58 [ 15] [ 4] [0320] +07:07:58 [ 18] [ 4] [6011] +07:07:58 [ 22] [ 3] [900] +07:07:58 [ 25] [ 2] [02] +07:07:58 [ 28] [ 9] [D00002000] +07:07:58 [ 32] [ 6] [621354] +07:07:58 [ 35] [ 27] [1808931100007184=1803500319] +07:07:58 [ 37] [ 12] [507903798537] +07:07:58 [ 41] [ 8] [01009500] +07:07:58 [ 42] [ 15] [NATIVE ] +07:07:58 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +07:07:58 [ 49] [ 3] [418] +07:07:58 [ 52] [ 16] [9EA6FBA2A0041572] +07:07:58 ============================================================================ +07:07:58 + + +waiting on router queue for slot.... +07:07:58 Sending to : +07:07:58 ============================================================================ +07:07:58 ============================================================================ +07:07:58 Slot Id : <11> +07:07:58 Transaction Type : REQUEST +07:07:58 Received From : +07:07:58 ============================================================================ +07:07:58 FNo. Len. Field Value +07:07:58 ============================================================================ +07:07:58 [ 1] [ 4] [0200] +07:07:58 [ 2] [ 16] [1808931100007184] +07:07:58 [ 3] [ 6] [011000] +07:07:58 [ 4] [ 12] [000010000000] +07:07:58 [ 7] [ 10] [0320070754] +07:07:58 [ 11] [ 6] [667695] +07:07:58 [ 12] [ 6] [070754] +07:07:58 [ 13] [ 4] [0320] +07:07:58 [ 15] [ 4] [0320] +07:07:58 [ 18] [ 4] [6011] +07:07:58 [ 22] [ 3] [900] +07:07:58 [ 25] [ 2] [02] +07:07:58 [ 28] [ 9] [D00002000] +07:07:58 [ 32] [ 6] [621354] +07:07:58 [ 35] [ 27] [1808931100007184=1803500319] +07:07:58 [ 37] [ 12] [507903798537] +07:07:58 [ 41] [ 8] [01009500] +07:07:58 [ 42] [ 15] [NATIVE ] +07:07:58 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +07:07:58 [ 49] [ 3] [418] +07:07:58 [ 52] [ 16] [88D448D0A66F7D63] +07:07:58 ============================================================================ +07:07:58 + + +waiting on router queue for slot.... +07:07:58 Sending to : <2> +07:07:58 ============================================================================ +07:08:02 ============================================================================ +07:08:02 Slot Id : <11> +07:08:02 Transaction Type : RESPONSE +07:08:02 Received From : +07:08:02 ============================================================================ +07:08:02 FNo. Len. Field Value +07:08:02 ============================================================================ +07:08:02 [ 1] [ 4] [0210] +07:08:02 [ 2] [ 16] [1808931100007184] +07:08:02 [ 3] [ 6] [011000] +07:08:02 [ 4] [ 12] [000010000000] +07:08:02 [ 6] [ 12] [000010000000] +07:08:02 [ 7] [ 10] [0320070754] +07:08:02 [ 11] [ 6] [667695] +07:08:02 [ 12] [ 6] [070754] +07:08:02 [ 13] [ 4] [0320] +07:08:02 [ 18] [ 4] [6011] +07:08:02 [ 19] [ 3] [418] +07:08:02 [ 22] [ 3] [021] +07:08:02 [ 32] [ 6] [621354] +07:08:02 [ 35] [ 27] [1808931100007184=1803500319] +07:08:02 [ 37] [ 12] [507903798537] +07:08:02 [ 38] [ 6] [667695] +07:08:02 [ 39] [ 2] [00] +07:08:02 [ 41] [ 8] [01009500] +07:08:02 [ 49] [ 3] [418] +07:08:02 [ 52] [ 16] [88D448D0A66F7D63] +07:08:02 [ 54] [ 20] [1001418C000003292600] +07:08:02 ============================================================================ +07:08:02 Sending to : +07:08:02 ============================================================================ +07:08:02 + + +waiting on router queue for slot.... +07:08:03 ============================================================================ +07:08:03 Slot Id : <11> +07:08:03 Transaction Type : RESPONSE +07:08:03 Received From : +07:08:03 ============================================================================ +07:08:03 FNo. Len. Field Value +07:08:03 ============================================================================ +07:08:03 [ 1] [ 4] [0210] +07:08:03 [ 2] [ 16] [1808931100007184] +07:08:03 [ 3] [ 6] [011000] +07:08:03 [ 4] [ 12] [000010000000] +07:08:03 [ 6] [ 12] [000010000000] +07:08:03 [ 7] [ 10] [0320070754] +07:08:03 [ 11] [ 6] [667695] +07:08:03 [ 12] [ 6] [070754] +07:08:03 [ 13] [ 4] [0320] +07:08:03 [ 18] [ 4] [6011] +07:08:03 [ 19] [ 3] [418] +07:08:03 [ 22] [ 3] [021] +07:08:03 [ 32] [ 6] [621354] +07:08:03 [ 35] [ 27] [1808931100007184=1803500319] +07:08:03 [ 37] [ 12] [507903798537] +07:08:03 [ 38] [ 6] [667695] +07:08:03 [ 39] [ 2] [00] +07:08:03 [ 41] [ 8] [01009500] +07:08:03 [ 49] [ 3] [418] +07:08:03 [ 52] [ 16] [88D448D0A66F7D63] +07:08:03 [ 54] [ 20] [1001418C000003292600] +07:08:03 ============================================================================ +07:08:03 Calculate Source COMM Id = 0 +07:08:03 ============================================================================ +07:08:03 + + +waiting on router queue for slot.... +07:08:14 ============================================================================ +07:08:14 Slot Id : <30> +07:08:14 Transaction Type : REQUEST +07:08:14 Received From : +07:08:14 ============================================================================ +07:08:14 FNo. Len. Field Value +07:08:14 ============================================================================ +07:08:14 [ 1] [ 4] [0800] +07:08:14 [ 7] [ 10] [0320120722] +07:08:14 [ 11] [ 6] [155082] +07:08:14 [ 70] [ 3] [301] +07:08:14 ============================================================================ +07:08:14 + + +waiting on router queue for slot.... +07:08:14 Sending to : +07:08:14 ============================================================================ +07:08:14 ============================================================================ +07:08:14 Slot Id : <30> +07:08:14 Transaction Type : RESPONSE +07:08:14 Received From : +07:08:14 ============================================================================ +07:08:14 FNo. Len. Field Value +07:08:14 ============================================================================ +07:08:14 [ 1] [ 4] [0810] +07:08:14 [ 7] [ 10] [0320120722] +07:08:14 [ 11] [ 6] [155082] +07:08:14 [ 39] [ 2] [00] +07:08:14 [ 70] [ 3] [301] +07:08:14 ============================================================================ +07:08:14 Calculate Source COMM Id = 2 +07:08:14 ============================================================================ +07:08:14 + + +waiting on router queue for slot.... +07:08:24 ============================================================================ +07:08:24 Slot Id : <496> +07:08:24 Transaction Type : REQUEST +07:08:24 Received From : +07:08:24 ============================================================================ +07:08:24 FNo. Len. Field Value +07:08:24 ============================================================================ +07:08:24 [ 1] [ 4] [0800] +07:08:24 [ 2] [ 5] [02531] +07:08:24 [ 3] [ 6] [579078] +07:08:24 [ 7] [ 10] [0320000824] +07:08:24 [ 11] [ 6] [806826] +07:08:24 [ 15] [ 10] [0320000824] +07:08:24 [ 37] [ 11] [57907806826] +07:08:24 [ 70] [ 3] [001] +07:08:24 ============================================================================ +07:08:24 + + +waiting on router queue for slot.... +07:08:24 ============================================================================ +07:08:24 Slot Id : <496> +07:08:24 Transaction Type : RESPONSE +07:08:24 Received From : +07:08:24 ============================================================================ +07:08:24 FNo. Len. Field Value +07:08:24 ============================================================================ +07:08:24 [ 1] [ 4] [0810] +07:08:24 [ 7] [ 10] [0320000824] +07:08:24 [ 11] [ 6] [806826] +07:08:24 [ 15] [ 4] [0320] +07:08:24 [ 37] [ 12] [57907806826] +07:08:24 [ 39] [ 2] [00] +07:08:24 [ 70] [ 3] [001] +07:08:24 ============================================================================ +07:08:24 Sending to : +07:08:24 ============================================================================ +07:08:24 + + +waiting on router queue for slot.... +07:08:25 ============================================================================ +07:08:25 Slot Id : <36> +07:08:25 Transaction Type : REQUEST +07:08:25 Received From : +07:08:25 ============================================================================ +07:08:25 FNo. Len. Field Value +07:08:25 ============================================================================ +07:08:25 [ 1] [ 4] [0200] +07:08:25 [ 2] [ 16] [6688990103272306] +07:08:25 [ 3] [ 6] [011000] +07:08:25 [ 4] [ 12] [000100000000] +07:08:25 [ 7] [ 10] [0320070822] +07:08:25 [ 11] [ 6] [667755] +07:08:25 [ 12] [ 6] [070822] +07:08:25 [ 13] [ 4] [0320] +07:08:25 [ 15] [ 4] [0320] +07:08:25 [ 18] [ 4] [6011] +07:08:25 [ 22] [ 3] [900] +07:08:25 [ 25] [ 2] [02] +07:08:25 [ 28] [ 9] [D00002000] +07:08:25 [ 32] [ 6] [621354] +07:08:25 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:08:25 [ 37] [ 12] [507903499414] +07:08:25 [ 41] [ 8] [06002200] +07:08:25 [ 42] [ 15] [NATIVE ] +07:08:25 [ 43] [ 40] [Beng Market Beng LAO] +07:08:25 [ 49] [ 3] [418] +07:08:25 [ 52] [ 16] [3B2593E21CE86DB1] +07:08:25 ============================================================================ +07:08:25 + + +waiting on router queue for slot.... +07:08:25 Sending to : +07:08:25 ============================================================================ +07:08:25 Sending to : +07:08:25 ============================================================================ +07:08:26 ============================================================================ +07:08:26 Slot Id : <36> +07:08:26 Transaction Type : REQUEST +07:08:26 Received From : +07:08:26 ============================================================================ +07:08:26 FNo. Len. Field Value +07:08:26 ============================================================================ +07:08:26 [ 1] [ 4] [0200] +07:08:26 [ 2] [ 16] [6688990103272306] +07:08:26 [ 3] [ 6] [011000] +07:08:26 [ 4] [ 12] [000100000000] +07:08:26 [ 7] [ 10] [0320070822] +07:08:26 [ 11] [ 6] [667755] +07:08:26 [ 12] [ 6] [070822] +07:08:26 [ 13] [ 4] [0320] +07:08:26 [ 15] [ 4] [0320] +07:08:26 [ 18] [ 4] [6011] +07:08:26 [ 22] [ 3] [900] +07:08:26 [ 25] [ 2] [02] +07:08:26 [ 28] [ 9] [D00002000] +07:08:26 [ 32] [ 6] [621354] +07:08:26 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:08:26 [ 37] [ 12] [507903499414] +07:08:26 [ 41] [ 8] [06002200] +07:08:26 [ 42] [ 15] [NATIVE ] +07:08:26 [ 43] [ 40] [Beng Market Beng LAO] +07:08:26 [ 49] [ 3] [418] +07:08:26 [ 52] [ 16] [3B2593E21CE86DB1] +07:08:26 ============================================================================ +07:08:26 + + +waiting on router queue for slot.... +07:08:26 Sending to : +07:08:26 ============================================================================ +07:08:26 ============================================================================ +07:08:26 Slot Id : <36> +07:08:26 Transaction Type : REQUEST +07:08:26 Received From : +07:08:26 ============================================================================ +07:08:26 FNo. Len. Field Value +07:08:26 ============================================================================ +07:08:26 [ 1] [ 4] [0200] +07:08:26 [ 2] [ 16] [6688990103272306] +07:08:26 [ 3] [ 6] [011000] +07:08:26 [ 4] [ 12] [000100000000] +07:08:26 [ 7] [ 10] [0320070822] +07:08:26 [ 11] [ 6] [667755] +07:08:26 [ 12] [ 6] [070822] +07:08:26 [ 13] [ 4] [0320] +07:08:26 [ 15] [ 4] [0320] +07:08:26 [ 18] [ 4] [6011] +07:08:26 [ 22] [ 3] [900] +07:08:26 [ 25] [ 2] [02] +07:08:26 [ 28] [ 9] [D00002000] +07:08:26 [ 32] [ 6] [621354] +07:08:26 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:08:26 [ 37] [ 12] [507903499414] +07:08:26 [ 41] [ 8] [06002200] +07:08:26 [ 42] [ 15] [NATIVE ] +07:08:26 [ 43] [ 40] [Beng Market Beng LAO] +07:08:26 [ 49] [ 3] [418] +07:08:26 [ 52] [ 16] [1EEBBBC243DE7E3E] +07:08:26 ============================================================================ +07:08:26 + + +waiting on router queue for slot.... +07:08:26 Sending to : <4> +07:08:26 ============================================================================ +07:08:27 ============================================================================ +07:08:27 Slot Id : <37> +07:08:27 Transaction Type : REQUEST +07:08:27 Received From : +07:08:27 ============================================================================ +07:08:27 FNo. Len. Field Value +07:08:27 ============================================================================ +07:08:27 [ 1] [ 4] [0200] +07:08:27 [ 2] [ 16] [1888880000024448] +07:08:27 [ 3] [ 6] [301000] +07:08:27 [ 4] [ 12] [000000000000] +07:08:27 [ 7] [ 10] [0320070823] +07:08:27 [ 11] [ 6] [667759] +07:08:27 [ 12] [ 6] [070823] +07:08:27 [ 13] [ 4] [0320] +07:08:27 [ 15] [ 4] [0320] +07:08:27 [ 18] [ 4] [6011] +07:08:27 [ 22] [ 3] [900] +07:08:27 [ 25] [ 2] [02] +07:08:27 [ 28] [ 9] [D00000000] +07:08:27 [ 32] [ 6] [621354] +07:08:27 [ 35] [ 32] [1888880000024448=000010100000910] +07:08:27 [ 37] [ 12] [507905090050] +07:08:27 [ 41] [ 8] [04004200] +07:08:27 [ 42] [ 15] [NATIVE ] +07:08:27 [ 43] [ 40] [Kam ngeun phark tay CPS Champasak LAO] +07:08:27 [ 49] [ 3] [418] +07:08:27 [ 52] [ 16] [5102438477E5D5A9] +07:08:27 ============================================================================ +07:08:27 + + +waiting on router queue for slot.... +07:08:27 Sending to : +07:08:27 ============================================================================ +07:08:27 Sending to : +07:08:27 ============================================================================ +07:08:27 ============================================================================ +07:08:27 Slot Id : <37> +07:08:27 Transaction Type : REQUEST +07:08:27 Received From : +07:08:27 ============================================================================ +07:08:27 FNo. Len. Field Value +07:08:27 ============================================================================ +07:08:27 [ 1] [ 4] [0200] +07:08:27 [ 2] [ 16] [1888880000024448] +07:08:27 [ 3] [ 6] [301000] +07:08:27 [ 4] [ 12] [000000000000] +07:08:27 [ 7] [ 10] [0320070823] +07:08:27 [ 11] [ 6] [667759] +07:08:27 [ 12] [ 6] [070823] +07:08:27 [ 13] [ 4] [0320] +07:08:27 [ 15] [ 4] [0320] +07:08:27 [ 18] [ 4] [6011] +07:08:27 [ 22] [ 3] [900] +07:08:27 [ 25] [ 2] [02] +07:08:27 [ 28] [ 9] [D00000000] +07:08:27 [ 32] [ 6] [621354] +07:08:27 [ 35] [ 32] [1888880000024448=000010100000910] +07:08:27 [ 37] [ 12] [507905090050] +07:08:27 [ 41] [ 8] [04004200] +07:08:27 [ 42] [ 15] [NATIVE ] +07:08:27 [ 43] [ 40] [Kam ngeun phark tay CPS Champasak LAO] +07:08:27 [ 49] [ 3] [418] +07:08:27 [ 52] [ 16] [5102438477E5D5A9] +07:08:27 ============================================================================ +07:08:27 + + +waiting on router queue for slot.... +07:08:27 Sending to : +07:08:27 ============================================================================ +07:08:27 ============================================================================ +07:08:27 Slot Id : <37> +07:08:27 Transaction Type : REQUEST +07:08:27 Received From : +07:08:27 ============================================================================ +07:08:27 FNo. Len. Field Value +07:08:27 ============================================================================ +07:08:27 [ 1] [ 4] [0200] +07:08:27 [ 2] [ 16] [1888880000024448] +07:08:27 [ 3] [ 6] [301000] +07:08:27 [ 4] [ 12] [000000000000] +07:08:27 [ 7] [ 10] [0320070823] +07:08:27 [ 11] [ 6] [667759] +07:08:27 [ 12] [ 6] [070823] +07:08:27 [ 13] [ 4] [0320] +07:08:27 [ 15] [ 4] [0320] +07:08:27 [ 18] [ 4] [6011] +07:08:27 [ 22] [ 3] [900] +07:08:27 [ 25] [ 2] [02] +07:08:27 [ 28] [ 9] [D00000000] +07:08:27 [ 32] [ 6] [621354] +07:08:27 [ 35] [ 32] [1888880000024448=000010100000910] +07:08:27 [ 37] [ 12] [507905090050] +07:08:27 [ 41] [ 8] [04004200] +07:08:27 [ 42] [ 15] [NATIVE ] +07:08:27 [ 43] [ 40] [Kam ngeun phark tay CPS Champasak LAO] +07:08:27 [ 49] [ 3] [418] +07:08:27 [ 52] [ 16] [74925AA0E9B621C4] +07:08:27 ============================================================================ +07:08:27 + + +waiting on router queue for slot.... +07:08:27 Sending to : <5> +07:08:27 ============================================================================ +07:08:27 ============================================================================ +07:08:27 Slot Id : <36> +07:08:27 Transaction Type : RESPONSE +07:08:27 Received From : +07:08:27 ============================================================================ +07:08:27 FNo. Len. Field Value +07:08:27 ============================================================================ +07:08:27 [ 1] [ 4] [0210] +07:08:27 [ 2] [ 16] [6688990103272306] +07:08:27 [ 3] [ 6] [011000] +07:08:27 [ 4] [ 12] [000100000000] +07:08:27 [ 11] [ 6] [667755] +07:08:27 [ 12] [ 6] [070822] +07:08:27 [ 15] [ 4] [0320] +07:08:27 [ 18] [ 4] [6011] +07:08:27 [ 32] [ 6] [621354] +07:08:27 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:08:27 [ 37] [ 12] [507903499414] +07:08:27 [ 38] [ 6] [006462] +07:08:27 [ 39] [ 2] [00] +07:08:27 [ 41] [ 8] [06002200] +07:08:27 [ 49] [ 3] [418] +07:08:27 [ 54] [ 20] [1002418C000281387742] +07:08:27 ============================================================================ +07:08:27 Sending to : +07:08:27 ============================================================================ +07:08:27 + + +waiting on router queue for slot.... +07:08:28 ============================================================================ +07:08:28 Slot Id : <32> +07:08:28 Transaction Type : REQUEST +07:08:28 Received From : +07:08:28 ============================================================================ +07:08:28 FNo. Len. Field Value +07:08:28 ============================================================================ +07:08:28 [ 1] [ 4] [0200] +07:08:28 [ 2] [ 16] [2206990000095760] +07:08:28 [ 3] [ 6] [010000] +07:08:28 [ 4] [ 12] [000100000000] +07:08:28 [ 7] [ 10] [0320070825] +07:08:28 [ 11] [ 6] [667764] +07:08:28 [ 12] [ 6] [070825] +07:08:28 [ 13] [ 4] [0320] +07:08:28 [ 15] [ 4] [0320] +07:08:28 [ 18] [ 4] [6011] +07:08:28 [ 22] [ 3] [900] +07:08:28 [ 25] [ 2] [02] +07:08:28 [ 28] [ 9] [D00002000] +07:08:28 [ 32] [ 6] [621354] +07:08:28 [ 35] [ 32] [2206990000095760=971012617412087] +07:08:28 [ 37] [ 12] [507904119580] +07:08:28 [ 41] [ 8] [08000800] +07:08:28 [ 42] [ 15] [NATIVE ] +07:08:28 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:08:28 [ 49] [ 3] [418] +07:08:28 [ 52] [ 16] [41CB461653C6C26A] +07:08:28 ============================================================================ +07:08:28 + + +waiting on router queue for slot.... +07:08:28 Sending to : +07:08:28 ============================================================================ +07:08:28 Sending to : +07:08:28 ============================================================================ +07:08:28 ============================================================================ +07:08:28 Slot Id : <32> +07:08:28 Transaction Type : REQUEST +07:08:28 Received From : +07:08:28 ============================================================================ +07:08:28 FNo. Len. Field Value +07:08:28 ============================================================================ +07:08:28 [ 1] [ 4] [0200] +07:08:28 [ 2] [ 16] [2206990000095760] +07:08:28 [ 3] [ 6] [010000] +07:08:28 [ 4] [ 12] [000100000000] +07:08:28 [ 7] [ 10] [0320070825] +07:08:28 [ 11] [ 6] [667764] +07:08:28 [ 12] [ 6] [070825] +07:08:28 [ 13] [ 4] [0320] +07:08:28 [ 15] [ 4] [0320] +07:08:28 [ 18] [ 4] [6011] +07:08:28 [ 22] [ 3] [900] +07:08:28 [ 25] [ 2] [02] +07:08:28 [ 28] [ 9] [D00002000] +07:08:28 [ 32] [ 6] [621354] +07:08:28 [ 35] [ 32] [2206990000095760=971012617412087] +07:08:28 [ 37] [ 12] [507904119580] +07:08:28 [ 41] [ 8] [08000800] +07:08:28 [ 42] [ 15] [NATIVE ] +07:08:28 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:08:28 [ 49] [ 3] [418] +07:08:28 [ 52] [ 16] [41CB461653C6C26A] +07:08:28 ============================================================================ +07:08:28 + + +waiting on router queue for slot.... +07:08:28 Sending to : +07:08:28 ============================================================================ +07:08:28 ============================================================================ +07:08:28 Slot Id : <32> +07:08:28 Transaction Type : REQUEST +07:08:28 Received From : +07:08:28 ============================================================================ +07:08:28 FNo. Len. Field Value +07:08:28 ============================================================================ +07:08:28 [ 1] [ 4] [0200] +07:08:28 [ 2] [ 16] [2206990000095760] +07:08:28 [ 3] [ 6] [010000] +07:08:28 [ 4] [ 12] [000100000000] +07:08:28 [ 7] [ 10] [0320070825] +07:08:28 [ 11] [ 6] [667764] +07:08:28 [ 12] [ 6] [070825] +07:08:28 [ 13] [ 4] [0320] +07:08:28 [ 15] [ 4] [0320] +07:08:28 [ 18] [ 4] [6011] +07:08:28 [ 22] [ 3] [900] +07:08:28 [ 25] [ 2] [02] +07:08:28 [ 28] [ 9] [D00002000] +07:08:28 [ 32] [ 6] [621354] +07:08:28 [ 35] [ 32] [2206990000095760=971012617412087] +07:08:28 [ 37] [ 12] [507904119580] +07:08:28 [ 41] [ 8] [08000800] +07:08:28 [ 42] [ 15] [NATIVE ] +07:08:28 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:08:28 [ 49] [ 3] [418] +07:08:28 [ 52] [ 16] [F2A26BA521B44DAD] +07:08:28 ============================================================================ +07:08:28 + + +waiting on router queue for slot.... +07:08:28 Sending to : <1> +07:08:28 ============================================================================ +07:08:29 ============================================================================ +07:08:29 Slot Id : <36> +07:08:29 Transaction Type : RESPONSE +07:08:29 Received From : +07:08:29 ============================================================================ +07:08:29 FNo. Len. Field Value +07:08:29 ============================================================================ +07:08:29 [ 1] [ 4] [0210] +07:08:29 [ 2] [ 16] [6688990103272306] +07:08:29 [ 3] [ 6] [011000] +07:08:29 [ 4] [ 12] [000100000000] +07:08:29 [ 11] [ 6] [667755] +07:08:29 [ 12] [ 6] [070822] +07:08:29 [ 15] [ 4] [0320] +07:08:29 [ 18] [ 4] [6011] +07:08:29 [ 32] [ 6] [621354] +07:08:29 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:08:29 [ 37] [ 12] [507903499414] +07:08:29 [ 38] [ 6] [006462] +07:08:29 [ 39] [ 2] [00] +07:08:29 [ 41] [ 8] [06002200] +07:08:29 [ 49] [ 3] [418] +07:08:29 [ 54] [ 20] [1002418C000281387742] +07:08:29 ============================================================================ +07:08:29 Calculate Source COMM Id = 0 +07:08:29 ============================================================================ +07:08:29 + + +waiting on router queue for slot.... +07:08:30 ============================================================================ +07:08:30 Slot Id : <461> +07:08:30 Transaction Type : REQUEST +07:08:30 Received From : +07:08:30 ============================================================================ +07:08:30 FNo. Len. Field Value +07:08:30 ============================================================================ +07:08:30 [ 1] [ 4] [0800] +07:08:30 [ 7] [ 10] [0320120738] +07:08:30 [ 11] [ 6] [155083] +07:08:30 [ 70] [ 3] [301] +07:08:30 ============================================================================ +07:08:30 + + +waiting on router queue for slot.... +07:08:30 Sending to : +07:08:30 ============================================================================ +07:08:30 ============================================================================ +07:08:30 Slot Id : <461> +07:08:30 Transaction Type : RESPONSE +07:08:30 Received From : +07:08:30 ============================================================================ +07:08:30 FNo. Len. Field Value +07:08:30 ============================================================================ +07:08:30 [ 1] [ 4] [0810] +07:08:30 [ 7] [ 10] [0320120738] +07:08:30 [ 11] [ 6] [155083] +07:08:30 [ 39] [ 2] [00] +07:08:30 [ 70] [ 3] [301] +07:08:30 ============================================================================ +07:08:30 Calculate Source COMM Id = 2 +07:08:30 ============================================================================ +07:08:30 + + +waiting on router queue for slot.... +07:08:30 ============================================================================ +07:08:30 Slot Id : <37> +07:08:30 Transaction Type : RESPONSE +07:08:30 Received From : +07:08:30 ============================================================================ +07:08:30 FNo. Len. Field Value +07:08:30 ============================================================================ +07:08:30 [ 1] [ 4] [0210] +07:08:30 [ 2] [ 16] [1888880000024448] +07:08:30 [ 3] [ 6] [301000] +07:08:30 [ 4] [ 12] [000000000000] +07:08:30 [ 7] [ 10] [0320070823] +07:08:30 [ 11] [ 6] [667759] +07:08:30 [ 12] [ 6] [070823] +07:08:30 [ 13] [ 4] [0320] +07:08:30 [ 15] [ 4] [0320] +07:08:30 [ 18] [ 4] [6011] +07:08:30 [ 19] [ 3] [418] +07:08:30 [ 32] [ 6] [621354] +07:08:30 [ 37] [ 12] [507905090050] +07:08:30 [ 38] [ 6] [990155] +07:08:30 [ 39] [ 2] [00] +07:08:30 [ 41] [ 8] [04004200] +07:08:30 [ 49] [ 3] [418] +07:08:30 [ 54] [ 20] [1001418C000009062300] +07:08:30 ============================================================================ +07:08:30 Sending to : +07:08:30 ============================================================================ +07:08:30 + + +waiting on router queue for slot.... +07:08:31 ============================================================================ +07:08:31 Slot Id : <37> +07:08:31 Transaction Type : RESPONSE +07:08:31 Received From : +07:08:31 ============================================================================ +07:08:31 FNo. Len. Field Value +07:08:31 ============================================================================ +07:08:31 [ 1] [ 4] [0210] +07:08:31 [ 2] [ 16] [1888880000024448] +07:08:31 [ 3] [ 6] [301000] +07:08:31 [ 4] [ 12] [000000000000] +07:08:31 [ 7] [ 10] [0320070823] +07:08:31 [ 11] [ 6] [667759] +07:08:31 [ 12] [ 6] [070823] +07:08:31 [ 13] [ 4] [0320] +07:08:31 [ 15] [ 4] [0320] +07:08:31 [ 18] [ 4] [6011] +07:08:31 [ 19] [ 3] [418] +07:08:31 [ 32] [ 6] [621354] +07:08:31 [ 37] [ 12] [507905090050] +07:08:31 [ 38] [ 6] [990155] +07:08:31 [ 39] [ 2] [00] +07:08:31 [ 41] [ 8] [04004200] +07:08:31 [ 49] [ 3] [418] +07:08:31 [ 54] [ 20] [1001418C000009062300] +07:08:31 ============================================================================ +07:08:31 Calculate Source COMM Id = 0 +07:08:31 ============================================================================ +07:08:31 + + +waiting on router queue for slot.... +07:08:41 ============================================================================ +07:08:41 Slot Id : <9> +07:08:41 Transaction Type : REQUEST +07:08:41 Received From : +07:08:41 ============================================================================ +07:08:41 FNo. Len. Field Value +07:08:41 ============================================================================ +07:08:41 [ 1] [ 4] [0800] +07:08:41 [ 7] [ 10] [0320120750] +07:08:41 [ 11] [ 6] [155084] +07:08:41 [ 70] [ 3] [301] +07:08:41 ============================================================================ +07:08:41 + + +waiting on router queue for slot.... +07:08:41 Sending to : +07:08:41 ============================================================================ +07:08:41 ============================================================================ +07:08:41 Slot Id : <9> +07:08:41 Transaction Type : RESPONSE +07:08:41 Received From : +07:08:41 ============================================================================ +07:08:41 FNo. Len. Field Value +07:08:41 ============================================================================ +07:08:41 [ 1] [ 4] [0810] +07:08:41 [ 7] [ 10] [0320120750] +07:08:41 [ 11] [ 6] [155084] +07:08:41 [ 39] [ 2] [00] +07:08:41 [ 70] [ 3] [301] +07:08:41 ============================================================================ +07:08:41 Calculate Source COMM Id = 2 +07:08:41 ============================================================================ +07:08:41 + + +waiting on router queue for slot.... +07:08:53 ============================================================================ +07:08:53 Slot Id : <467> +07:08:53 Transaction Type : REQUEST +07:08:53 Received From : +07:08:53 ============================================================================ +07:08:53 FNo. Len. Field Value +07:08:53 ============================================================================ +07:08:53 [ 1] [ 4] [0800] +07:08:53 [ 7] [ 10] [0320120801] +07:08:53 [ 11] [ 6] [155085] +07:08:53 [ 70] [ 3] [301] +07:08:53 ============================================================================ +07:08:53 + + +waiting on router queue for slot.... +07:08:53 Sending to : +07:08:53 ============================================================================ +07:08:53 ============================================================================ +07:08:53 Slot Id : <467> +07:08:53 Transaction Type : RESPONSE +07:08:53 Received From : +07:08:53 ============================================================================ +07:08:53 FNo. Len. Field Value +07:08:53 ============================================================================ +07:08:53 [ 1] [ 4] [0810] +07:08:53 [ 7] [ 10] [0320120801] +07:08:53 [ 11] [ 6] [155085] +07:08:53 [ 39] [ 2] [00] +07:08:53 [ 70] [ 3] [301] +07:08:53 ============================================================================ +07:08:53 Calculate Source COMM Id = 2 +07:08:53 ============================================================================ +07:08:53 + + +waiting on router queue for slot.... +07:09:02 ============================================================================ +07:09:02 Slot Id : <40> +07:09:02 Transaction Type : REQUEST +07:09:02 Received From : +07:09:02 ============================================================================ +07:09:02 FNo. Len. Field Value +07:09:02 ============================================================================ +07:09:02 [ 1] [ 4] [0420] +07:09:02 [ 2] [ 16] [2206990000095760] +07:09:02 [ 3] [ 6] [010000] +07:09:02 [ 4] [ 12] [000100000000] +07:09:02 [ 7] [ 10] [0320070825] +07:09:02 [ 11] [ 6] [667764] +07:09:02 [ 12] [ 6] [070825] +07:09:02 [ 13] [ 4] [0320] +07:09:02 [ 15] [ 4] [0320] +07:09:02 [ 18] [ 4] [6011] +07:09:02 [ 22] [ 3] [900] +07:09:02 [ 25] [ 2] [02] +07:09:02 [ 28] [ 9] [C00002000] +07:09:02 [ 32] [ 6] [621354] +07:09:02 [ 35] [ 32] [2206990000095760=971012617412087] +07:09:02 [ 37] [ 12] [507904119580] +07:09:02 [ 39] [ 2] [00] +07:09:02 [ 41] [ 8] [08000800] +07:09:02 [ 42] [ 15] [NATIVE ] +07:09:02 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:09:02 [ 49] [ 3] [418] +07:09:02 [ 90] [ 42] [020066776403200708250000062135400000000000] +07:09:02 ============================================================================ +07:09:02 + + +waiting on router queue for slot.... +07:09:02 Sending to : +07:09:02 ============================================================================ +07:09:03 ============================================================================ +07:09:03 Slot Id : <45> +07:09:03 Transaction Type : REQUEST +07:09:03 Received From : +07:09:03 ============================================================================ +07:09:03 FNo. Len. Field Value +07:09:03 ============================================================================ +07:09:03 [ 1] [ 4] [0800] +07:09:03 [ 7] [ 10] [0320142051] +07:09:03 [ 11] [ 6] [072051] +07:09:03 [ 37] [ 12] [57907072051] +07:09:03 [ 70] [ 3] [301] +07:09:03 ============================================================================ +07:09:03 + + +waiting on router queue for slot.... +07:09:03 Sending to : +07:09:03 ============================================================================ +07:09:03 ============================================================================ +07:09:03 Slot Id : <45> +07:09:03 Transaction Type : RESPONSE +07:09:03 Received From : +07:09:03 ============================================================================ +07:09:03 FNo. Len. Field Value +07:09:03 ============================================================================ +07:09:03 [ 1] [ 4] [0810] +07:09:03 [ 7] [ 10] [0320142051] +07:09:03 [ 11] [ 6] [072051] +07:09:03 [ 37] [ 12] [579070720510] +07:09:03 [ 39] [ 2] [00] +07:09:03 [ 70] [ 3] [810] +07:09:03 ============================================================================ +07:09:03 Calculate Source COMM Id = 6 +07:09:03 ============================================================================ +07:09:03 + + +waiting on router queue for slot.... +07:09:04 ============================================================================ +07:09:04 Slot Id : <18> +07:09:04 Transaction Type : REQUEST +07:09:04 Received From : +07:09:04 ============================================================================ +07:09:04 FNo. Len. Field Value +07:09:04 ============================================================================ +07:09:04 [ 1] [ 4] [0800] +07:09:04 [ 7] [ 10] [0320120812] +07:09:04 [ 11] [ 6] [155086] +07:09:04 [ 70] [ 3] [301] +07:09:04 ============================================================================ +07:09:04 + + +waiting on router queue for slot.... +07:09:04 Sending to : +07:09:04 ============================================================================ +07:09:04 ============================================================================ +07:09:04 Slot Id : <18> +07:09:04 Transaction Type : RESPONSE +07:09:04 Received From : +07:09:04 ============================================================================ +07:09:04 FNo. Len. Field Value +07:09:04 ============================================================================ +07:09:04 [ 1] [ 4] [0810] +07:09:04 [ 7] [ 10] [0320120812] +07:09:04 [ 11] [ 6] [155086] +07:09:04 [ 39] [ 2] [00] +07:09:04 [ 70] [ 3] [301] +07:09:04 ============================================================================ +07:09:04 Calculate Source COMM Id = 2 +07:09:04 ============================================================================ +07:09:04 + + +waiting on router queue for slot.... +07:09:06 ============================================================================ +07:09:06 Slot Id : <40> +07:09:06 Transaction Type : RESPONSE +07:09:06 Received From : +07:09:06 ============================================================================ +07:09:06 FNo. Len. Field Value +07:09:06 ============================================================================ +07:09:06 [ 1] [ 4] [0430] +07:09:06 [ 2] [ 16] [2206990000095760] +07:09:06 [ 3] [ 6] [010000] +07:09:06 [ 4] [ 12] [000100000000] +07:09:06 [ 7] [ 10] [0320070825] +07:09:06 [ 11] [ 6] [667764] +07:09:06 [ 12] [ 6] [070825] +07:09:06 [ 13] [ 4] [0320] +07:09:06 [ 15] [ 4] [0320] +07:09:06 [ 18] [ 4] [6011] +07:09:06 [ 22] [ 3] [900] +07:09:06 [ 25] [ 2] [02] +07:09:06 [ 28] [ 9] [C00002000] +07:09:06 [ 32] [ 6] [621354] +07:09:06 [ 35] [ 32] [2206990000095760=971012617412087] +07:09:06 [ 37] [ 12] [507904119580] +07:09:06 [ 39] [ 2] [00] +07:09:06 [ 41] [ 8] [08000800] +07:09:06 [ 42] [ 15] [NATIVE ] +07:09:06 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:09:06 [ 49] [ 3] [418] +07:09:06 [ 90] [ 42] [020066776403200708250000062135400000000000] +07:09:06 ============================================================================ +07:09:06 Calculate Source COMM Id = 0 +07:09:06 ============================================================================ +07:09:06 + + +waiting on router queue for slot.... +07:09:14 ============================================================================ +07:09:14 Slot Id : <497> +07:09:14 Transaction Type : REQUEST +07:09:14 Received From : +07:09:14 ============================================================================ +07:09:14 FNo. Len. Field Value +07:09:14 ============================================================================ +07:09:14 [ 1] [ 4] [0800] +07:09:14 [ 7] [ 10] [0320120822] +07:09:14 [ 11] [ 6] [155087] +07:09:14 [ 70] [ 3] [301] +07:09:14 ============================================================================ +07:09:14 + + +waiting on router queue for slot.... +07:09:14 Sending to : +07:09:14 ============================================================================ +07:09:14 ============================================================================ +07:09:14 Slot Id : <497> +07:09:14 Transaction Type : RESPONSE +07:09:14 Received From : +07:09:14 ============================================================================ +07:09:14 FNo. Len. Field Value +07:09:14 ============================================================================ +07:09:14 [ 1] [ 4] [0810] +07:09:14 [ 7] [ 10] [0320120822] +07:09:14 [ 11] [ 6] [155087] +07:09:14 [ 39] [ 2] [00] +07:09:14 [ 70] [ 3] [301] +07:09:14 ============================================================================ +07:09:14 Calculate Source COMM Id = 2 +07:09:14 ============================================================================ +07:09:14 + + +waiting on router queue for slot.... +07:09:15 ============================================================================ +07:09:15 Slot Id : <32> +07:09:15 07:09:15 Received From : <> +07:09:15 ============================================================================ +07:09:15 FNo. Len. Field Value +07:09:15 ============================================================================ +07:09:15 Sending to : +07:09:15 ============================================================================ +07:09:15 + + +waiting on router queue for slot.... +07:09:19 ============================================================================ +07:09:19 Slot Id : <28> +07:09:19 Transaction Type : REQUEST +07:09:19 Received From : +07:09:19 ============================================================================ +07:09:19 FNo. Len. Field Value +07:09:19 ============================================================================ +07:09:19 [ 1] [ 4] [0200] +07:09:19 [ 2] [ 16] [6688990060012802] +07:09:19 [ 3] [ 6] [012000] +07:09:19 [ 4] [ 12] [000010000000] +07:09:19 [ 7] [ 10] [0320070915] +07:09:19 [ 11] [ 6] [667857] +07:09:19 [ 12] [ 6] [070915] +07:09:19 [ 13] [ 4] [0320] +07:09:19 [ 15] [ 4] [0320] +07:09:19 [ 18] [ 4] [6011] +07:09:19 [ 22] [ 3] [900] +07:09:19 [ 25] [ 2] [02] +07:09:19 [ 28] [ 9] [D00002000] +07:09:19 [ 32] [ 6] [621354] +07:09:19 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:09:19 [ 37] [ 12] [507905108278] +07:09:19 [ 41] [ 8] [20001300] +07:09:19 [ 42] [ 15] [NATIVE ] +07:09:19 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +07:09:19 [ 49] [ 3] [418] +07:09:19 [ 52] [ 16] [E5B32AB2C7F29960] +07:09:19 ============================================================================ +07:09:19 + + +waiting on router queue for slot.... +07:09:19 Sending to : +07:09:19 ============================================================================ +07:09:19 Sending to : +07:09:19 ============================================================================ +07:09:19 ============================================================================ +07:09:19 Slot Id : <28> +07:09:19 Transaction Type : REQUEST +07:09:19 Received From : +07:09:19 ============================================================================ +07:09:19 FNo. Len. Field Value +07:09:19 ============================================================================ +07:09:19 [ 1] [ 4] [0200] +07:09:19 [ 2] [ 16] [6688990060012802] +07:09:19 [ 3] [ 6] [012000] +07:09:19 [ 4] [ 12] [000010000000] +07:09:19 [ 7] [ 10] [0320070915] +07:09:19 [ 11] [ 6] [667857] +07:09:19 [ 12] [ 6] [070915] +07:09:19 [ 13] [ 4] [0320] +07:09:19 [ 15] [ 4] [0320] +07:09:19 [ 18] [ 4] [6011] +07:09:19 [ 22] [ 3] [900] +07:09:19 [ 25] [ 2] [02] +07:09:19 [ 28] [ 9] [D00002000] +07:09:19 [ 32] [ 6] [621354] +07:09:19 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:09:19 [ 37] [ 12] [507905108278] +07:09:19 [ 41] [ 8] [20001300] +07:09:19 [ 42] [ 15] [NATIVE ] +07:09:19 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +07:09:19 [ 49] [ 3] [418] +07:09:19 [ 52] [ 16] [E5B32AB2C7F29960] +07:09:19 ============================================================================ +07:09:19 + + +waiting on router queue for slot.... +07:09:19 Sending to : +07:09:19 ============================================================================ +07:09:19 ============================================================================ +07:09:19 Slot Id : <28> +07:09:19 Transaction Type : REQUEST +07:09:19 Received From : +07:09:19 ============================================================================ +07:09:19 FNo. Len. Field Value +07:09:19 ============================================================================ +07:09:19 [ 1] [ 4] [0200] +07:09:19 [ 2] [ 16] [6688990060012802] +07:09:19 [ 3] [ 6] [012000] +07:09:19 [ 4] [ 12] [000010000000] +07:09:19 [ 7] [ 10] [0320070915] +07:09:19 [ 11] [ 6] [667857] +07:09:19 [ 12] [ 6] [070915] +07:09:19 [ 13] [ 4] [0320] +07:09:19 [ 15] [ 4] [0320] +07:09:19 [ 18] [ 4] [6011] +07:09:19 [ 22] [ 3] [900] +07:09:19 [ 25] [ 2] [02] +07:09:19 [ 28] [ 9] [D00002000] +07:09:19 [ 32] [ 6] [621354] +07:09:19 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:09:19 [ 37] [ 12] [507905108278] +07:09:19 [ 41] [ 8] [20001300] +07:09:19 [ 42] [ 15] [NATIVE ] +07:09:19 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +07:09:19 [ 49] [ 3] [418] +07:09:19 [ 52] [ 16] [60A5A070226A2D16] +07:09:19 ============================================================================ +07:09:19 + + +waiting on router queue for slot.... +07:09:19 Sending to : <4> +07:09:19 ============================================================================ +07:09:21 ============================================================================ +07:09:21 Slot Id : <28> +07:09:21 Transaction Type : RESPONSE +07:09:21 Received From : +07:09:21 ============================================================================ +07:09:21 FNo. Len. Field Value +07:09:21 ============================================================================ +07:09:21 [ 1] [ 4] [0210] +07:09:21 [ 2] [ 16] [6688990060012802] +07:09:21 [ 3] [ 6] [012000] +07:09:21 [ 4] [ 12] [000010000000] +07:09:21 [ 11] [ 6] [667857] +07:09:21 [ 12] [ 6] [070915] +07:09:21 [ 15] [ 4] [0320] +07:09:21 [ 18] [ 4] [6011] +07:09:21 [ 32] [ 6] [621354] +07:09:21 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:09:21 [ 37] [ 12] [507905108278] +07:09:21 [ 38] [ 6] [031721] +07:09:21 [ 39] [ 2] [00] +07:09:21 [ 41] [ 8] [20001300] +07:09:21 [ 49] [ 3] [418] +07:09:21 [ 54] [ 20] [2002418C000009527513] +07:09:21 ============================================================================ +07:09:21 Sending to : +07:09:21 ============================================================================ +07:09:21 + + +waiting on router queue for slot.... +07:09:23 ============================================================================ +07:09:23 Slot Id : <28> +07:09:23 Transaction Type : RESPONSE +07:09:23 Received From : +07:09:23 ============================================================================ +07:09:23 FNo. Len. Field Value +07:09:23 ============================================================================ +07:09:23 [ 1] [ 4] [0210] +07:09:23 [ 2] [ 16] [6688990060012802] +07:09:23 [ 3] [ 6] [012000] +07:09:23 [ 4] [ 12] [000010000000] +07:09:23 [ 11] [ 6] [667857] +07:09:23 [ 12] [ 6] [070915] +07:09:23 [ 15] [ 4] [0320] +07:09:23 [ 18] [ 4] [6011] +07:09:23 [ 32] [ 6] [621354] +07:09:23 [ 35] [ 37] [6688990060012802=97121261136664400000] +07:09:23 [ 37] [ 12] [507905108278] +07:09:23 [ 38] [ 6] [031721] +07:09:23 [ 39] [ 2] [00] +07:09:23 [ 41] [ 8] [20001300] +07:09:23 [ 49] [ 3] [418] +07:09:23 [ 54] [ 20] [2002418C000009527513] +07:09:23 ============================================================================ +07:09:23 Calculate Source COMM Id = 0 +07:09:23 ============================================================================ +07:09:23 + + +waiting on router queue for slot.... +07:09:24 ============================================================================ +07:09:24 Slot Id : <43> +07:09:24 Transaction Type : REQUEST +07:09:24 Received From : +07:09:24 ============================================================================ +07:09:24 FNo. Len. Field Value +07:09:24 ============================================================================ +07:09:24 [ 1] [ 4] [0800] +07:09:24 [ 7] [ 10] [0320120833] +07:09:24 [ 11] [ 6] [155088] +07:09:24 [ 70] [ 3] [301] +07:09:24 ============================================================================ +07:09:24 + + +waiting on router queue for slot.... +07:09:24 Sending to : +07:09:24 ============================================================================ +07:09:24 ============================================================================ +07:09:24 Slot Id : <43> +07:09:24 Transaction Type : RESPONSE +07:09:24 Received From : +07:09:24 ============================================================================ +07:09:24 FNo. Len. Field Value +07:09:24 ============================================================================ +07:09:24 [ 1] [ 4] [0810] +07:09:24 [ 7] [ 10] [0320120833] +07:09:24 [ 11] [ 6] [155088] +07:09:24 [ 39] [ 2] [00] +07:09:24 [ 70] [ 3] [301] +07:09:24 ============================================================================ +07:09:24 Calculate Source COMM Id = 2 +07:09:24 ============================================================================ +07:09:24 + + +waiting on router queue for slot.... +07:09:26 ============================================================================ +07:09:26 Slot Id : <8> +07:09:26 Transaction Type : REQUEST +07:09:26 Received From : +07:09:26 ============================================================================ +07:09:26 FNo. Len. Field Value +07:09:26 ============================================================================ +07:09:26 [ 1] [ 4] [0800] +07:09:26 [ 2] [ 5] [02531] +07:09:26 [ 3] [ 6] [579078] +07:09:26 [ 7] [ 10] [0320000926] +07:09:26 [ 11] [ 6] [806827] +07:09:26 [ 15] [ 10] [0320000926] +07:09:26 [ 37] [ 11] [57907806827] +07:09:26 [ 70] [ 3] [001] +07:09:26 ============================================================================ +07:09:26 + + +waiting on router queue for slot.... +07:09:26 ============================================================================ +07:09:26 Slot Id : <8> +07:09:26 Transaction Type : RESPONSE +07:09:26 Received From : +07:09:26 ============================================================================ +07:09:26 FNo. Len. Field Value +07:09:26 ============================================================================ +07:09:26 [ 1] [ 4] [0810] +07:09:26 [ 7] [ 10] [0320000926] +07:09:26 [ 11] [ 6] [806827] +07:09:26 [ 15] [ 4] [0320] +07:09:26 [ 37] [ 12] [57907806827] +07:09:26 [ 39] [ 2] [00] +07:09:26 [ 70] [ 3] [001] +07:09:26 ============================================================================ +07:09:26 Sending to : +07:09:26 ============================================================================ +07:09:26 + + +waiting on router queue for slot.... +07:09:29 ============================================================================ +07:09:29 Slot Id : <50> +07:09:29 Transaction Type : REQUEST +07:09:29 Received From : +07:09:29 ============================================================================ +07:09:29 FNo. Len. Field Value +07:09:29 ============================================================================ +07:09:29 [ 1] [ 4] [0200] +07:09:29 [ 2] [ 16] [6688990103272306] +07:09:29 [ 3] [ 6] [011000] +07:09:29 [ 4] [ 12] [000100000000] +07:09:29 [ 7] [ 10] [0320070925] +07:09:29 [ 11] [ 6] [667879] +07:09:29 [ 12] [ 6] [070925] +07:09:29 [ 13] [ 4] [0320] +07:09:29 [ 15] [ 4] [0320] +07:09:29 [ 18] [ 4] [6011] +07:09:29 [ 22] [ 3] [900] +07:09:29 [ 25] [ 2] [02] +07:09:29 [ 28] [ 9] [D00002000] +07:09:29 [ 32] [ 6] [621354] +07:09:29 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:09:29 [ 37] [ 12] [507903499416] +07:09:29 [ 41] [ 8] [06002200] +07:09:29 [ 42] [ 15] [NATIVE ] +07:09:29 [ 43] [ 40] [Beng Market Beng LAO] +07:09:29 [ 49] [ 3] [418] +07:09:29 [ 52] [ 16] [3B2593E21CE86DB1] +07:09:29 ============================================================================ +07:09:29 + + +waiting on router queue for slot.... +07:09:29 Sending to : +07:09:29 ============================================================================ +07:09:29 Sending to : +07:09:29 ============================================================================ +07:09:29 ============================================================================ +07:09:29 Slot Id : <50> +07:09:29 Transaction Type : REQUEST +07:09:29 Received From : +07:09:29 ============================================================================ +07:09:29 FNo. Len. Field Value +07:09:29 ============================================================================ +07:09:29 [ 1] [ 4] [0200] +07:09:29 [ 2] [ 16] [6688990103272306] +07:09:29 [ 3] [ 6] [011000] +07:09:29 [ 4] [ 12] [000100000000] +07:09:29 [ 7] [ 10] [0320070925] +07:09:29 [ 11] [ 6] [667879] +07:09:29 [ 12] [ 6] [070925] +07:09:29 [ 13] [ 4] [0320] +07:09:29 [ 15] [ 4] [0320] +07:09:29 [ 18] [ 4] [6011] +07:09:29 [ 22] [ 3] [900] +07:09:29 [ 25] [ 2] [02] +07:09:29 [ 28] [ 9] [D00002000] +07:09:29 [ 32] [ 6] [621354] +07:09:29 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:09:29 [ 37] [ 12] [507903499416] +07:09:29 [ 41] [ 8] [06002200] +07:09:29 [ 42] [ 15] [NATIVE ] +07:09:29 [ 43] [ 40] [Beng Market Beng LAO] +07:09:29 [ 49] [ 3] [418] +07:09:29 [ 52] [ 16] [3B2593E21CE86DB1] +07:09:29 ============================================================================ +07:09:29 + + +waiting on router queue for slot.... +07:09:29 Sending to : +07:09:29 ============================================================================ +07:09:29 ============================================================================ +07:09:29 Slot Id : <50> +07:09:29 Transaction Type : REQUEST +07:09:29 Received From : +07:09:29 ============================================================================ +07:09:29 FNo. Len. Field Value +07:09:29 ============================================================================ +07:09:29 [ 1] [ 4] [0200] +07:09:29 [ 2] [ 16] [6688990103272306] +07:09:29 [ 3] [ 6] [011000] +07:09:29 [ 4] [ 12] [000100000000] +07:09:29 [ 7] [ 10] [0320070925] +07:09:29 [ 11] [ 6] [667879] +07:09:29 [ 12] [ 6] [070925] +07:09:29 [ 13] [ 4] [0320] +07:09:29 [ 15] [ 4] [0320] +07:09:29 [ 18] [ 4] [6011] +07:09:29 [ 22] [ 3] [900] +07:09:29 [ 25] [ 2] [02] +07:09:29 [ 28] [ 9] [D00002000] +07:09:29 [ 32] [ 6] [621354] +07:09:29 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:09:29 [ 37] [ 12] [507903499416] +07:09:29 [ 41] [ 8] [06002200] +07:09:29 [ 42] [ 15] [NATIVE ] +07:09:29 [ 43] [ 40] [Beng Market Beng LAO] +07:09:29 [ 49] [ 3] [418] +07:09:29 [ 52] [ 16] [1EEBBBC243DE7E3E] +07:09:29 ============================================================================ +07:09:29 + + +waiting on router queue for slot.... +07:09:29 Sending to : <4> +07:09:29 ============================================================================ +07:09:30 ============================================================================ +07:09:30 Slot Id : <50> +07:09:30 Transaction Type : RESPONSE +07:09:30 Received From : +07:09:30 ============================================================================ +07:09:30 FNo. Len. Field Value +07:09:30 ============================================================================ +07:09:30 [ 1] [ 4] [0210] +07:09:30 [ 2] [ 16] [6688990103272306] +07:09:30 [ 3] [ 6] [011000] +07:09:30 [ 4] [ 12] [000100000000] +07:09:30 [ 11] [ 6] [667879] +07:09:30 [ 12] [ 6] [070925] +07:09:30 [ 15] [ 4] [0320] +07:09:30 [ 18] [ 4] [6011] +07:09:30 [ 32] [ 6] [621354] +07:09:30 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:09:30 [ 37] [ 12] [507903499416] +07:09:30 [ 38] [ 6] [271669] +07:09:30 [ 39] [ 2] [00] +07:09:30 [ 41] [ 8] [06002200] +07:09:30 [ 49] [ 3] [418] +07:09:30 [ 54] [ 20] [1002418C000181187742] +07:09:30 ============================================================================ +07:09:30 Sending to : +07:09:30 ============================================================================ +07:09:30 + + +waiting on router queue for slot.... +07:09:31 ============================================================================ +07:09:31 Slot Id : <52> +07:09:31 Transaction Type : REQUEST +07:09:31 Received From : +07:09:31 ============================================================================ +07:09:31 FNo. Len. Field Value +07:09:31 ============================================================================ +07:09:31 [ 1] [ 4] [0200] +07:09:31 [ 2] [ 16] [6213545000759880] +07:09:31 [ 3] [ 6] [010000] +07:09:31 [ 4] [ 12] [000100000000] +07:09:31 [ 7] [ 10] [0320070723] +07:09:31 [ 11] [ 6] [929882] +07:09:31 [ 12] [ 6] [070723] +07:09:31 [ 13] [ 4] [0320] +07:09:31 [ 15] [ 4] [0320] +07:09:31 [ 18] [ 4] [6011] +07:09:31 [ 19] [ 3] [418] +07:09:31 [ 22] [ 3] [021] +07:09:31 [ 25] [ 2] [01] +07:09:31 [ 28] [ 9] [D00002000] +07:09:31 [ 32] [ 6] [668899] +07:09:31 [ 35] [ 32] [6213545000759880=491212015988716] +07:09:31 [ 37] [ 12] [507900195999] +07:09:31 [ 41] [ 8] [03001003] +07:09:31 [ 42] [ 15] [APT ] +07:09:31 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +07:09:31 [ 49] [ 3] [418] +07:09:31 [ 52] [ 16] [6887AC9BF3D71A9C] +07:09:31 ============================================================================ +07:09:31 + + +waiting on router queue for slot.... +07:09:31 Sending to : +07:09:31 ============================================================================ +07:09:31 Sending to : +07:09:31 ============================================================================ +07:09:32 ============================================================================ +07:09:32 Slot Id : <50> +07:09:32 Transaction Type : RESPONSE +07:09:32 Received From : +07:09:32 ============================================================================ +07:09:32 FNo. Len. Field Value +07:09:32 ============================================================================ +07:09:32 [ 1] [ 4] [0210] +07:09:32 [ 2] [ 16] [6688990103272306] +07:09:32 [ 3] [ 6] [011000] +07:09:32 [ 4] [ 12] [000100000000] +07:09:32 [ 11] [ 6] [667879] +07:09:32 [ 12] [ 6] [070925] +07:09:32 [ 15] [ 4] [0320] +07:09:32 [ 18] [ 4] [6011] +07:09:32 [ 32] [ 6] [621354] +07:09:32 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:09:32 [ 37] [ 12] [507903499416] +07:09:32 [ 38] [ 6] [271669] +07:09:32 [ 39] [ 2] [00] +07:09:32 [ 41] [ 8] [06002200] +07:09:32 [ 49] [ 3] [418] +07:09:32 [ 54] [ 20] [1002418C000181187742] +07:09:32 ============================================================================ +07:09:32 Calculate Source COMM Id = 0 +07:09:32 ============================================================================ +07:09:32 + + +waiting on router queue for slot.... +07:09:32 ============================================================================ +07:09:32 Slot Id : <52> +07:09:32 Transaction Type : REQUEST +07:09:32 Received From : +07:09:32 ============================================================================ +07:09:32 FNo. Len. Field Value +07:09:32 ============================================================================ +07:09:32 [ 1] [ 4] [0200] +07:09:32 [ 2] [ 16] [6213545000759880] +07:09:32 [ 3] [ 6] [010000] +07:09:32 [ 4] [ 12] [000100000000] +07:09:32 [ 7] [ 10] [0320070723] +07:09:32 [ 11] [ 6] [929882] +07:09:32 [ 12] [ 6] [070723] +07:09:32 [ 13] [ 4] [0320] +07:09:32 [ 15] [ 4] [0320] +07:09:32 [ 18] [ 4] [6011] +07:09:32 [ 19] [ 3] [418] +07:09:32 [ 22] [ 3] [021] +07:09:32 [ 25] [ 2] [01] +07:09:32 [ 28] [ 9] [D00002000] +07:09:32 [ 32] [ 6] [668899] +07:09:32 [ 35] [ 32] [6213545000759880=491212015988716] +07:09:32 [ 37] [ 12] [507900195999] +07:09:32 [ 41] [ 8] [03001003] +07:09:32 [ 42] [ 15] [APT ] +07:09:32 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +07:09:32 [ 49] [ 3] [418] +07:09:32 [ 52] [ 16] [6887AC9BF3D71A9C] +07:09:32 ============================================================================ +07:09:32 + + +waiting on router queue for slot.... +07:09:32 Sending to : +07:09:32 ============================================================================ +07:09:32 ============================================================================ +07:09:32 Slot Id : <52> +07:09:32 Transaction Type : REQUEST +07:09:32 Received From : +07:09:32 ============================================================================ +07:09:32 FNo. Len. Field Value +07:09:32 ============================================================================ +07:09:32 [ 1] [ 4] [0200] +07:09:32 [ 2] [ 16] [6213545000759880] +07:09:32 [ 3] [ 6] [010000] +07:09:32 [ 4] [ 12] [000100000000] +07:09:32 [ 7] [ 10] [0320070723] +07:09:32 [ 11] [ 6] [929882] +07:09:32 [ 12] [ 6] [070723] +07:09:32 [ 13] [ 4] [0320] +07:09:32 [ 15] [ 4] [0320] +07:09:32 [ 18] [ 4] [6011] +07:09:32 [ 19] [ 3] [418] +07:09:32 [ 22] [ 3] [021] +07:09:32 [ 25] [ 2] [01] +07:09:32 [ 28] [ 9] [D00002000] +07:09:32 [ 32] [ 6] [668899] +07:09:32 [ 35] [ 32] [6213545000759880=491212015988716] +07:09:32 [ 37] [ 12] [507900195999] +07:09:32 [ 41] [ 8] [03001003] +07:09:32 [ 42] [ 15] [APT ] +07:09:32 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +07:09:32 [ 49] [ 3] [418] +07:09:32 [ 52] [ 16] [FD733DBA4EC196C0] +07:09:32 ============================================================================ +07:09:32 + + +waiting on router queue for slot.... +07:09:32 Sending to : <0> +07:09:32 ============================================================================ +07:09:33 ============================================================================ +07:09:33 Slot Id : <52> +07:09:33 Transaction Type : RESPONSE +07:09:33 Received From : +07:09:33 ============================================================================ +07:09:33 FNo. Len. Field Value +07:09:33 ============================================================================ +07:09:33 [ 1] [ 4] [0210] +07:09:33 [ 2] [ 16] [6213545000759880] +07:09:33 [ 3] [ 6] [010000] +07:09:33 [ 4] [ 12] [000100000000] +07:09:33 [ 7] [ 10] [0320070723] +07:09:33 [ 11] [ 6] [929882] +07:09:33 [ 12] [ 6] [070723] +07:09:33 [ 13] [ 4] [0320] +07:09:33 [ 15] [ 4] [0320] +07:09:33 [ 18] [ 4] [6011] +07:09:33 [ 19] [ 3] [418] +07:09:33 [ 32] [ 6] [668899] +07:09:33 [ 35] [ 32] [6213545000759880=491212015988716] +07:09:33 [ 37] [ 12] [507900195999] +07:09:33 [ 38] [ 6] [838085] +07:09:33 [ 39] [ 2] [00] +07:09:33 [ 41] [ 8] [03001003] +07:09:33 [ 49] [ 3] [418] +07:09:33 [ 54] [ 40] [0001418C0076420674580002418C007642067458] +07:09:33 ============================================================================ +07:09:33 Sending to : +07:09:33 ============================================================================ +07:09:33 + + +waiting on router queue for slot.... +07:09:34 ============================================================================ +07:09:34 Slot Id : <52> +07:09:34 Transaction Type : RESPONSE +07:09:34 Received From : +07:09:34 ============================================================================ +07:09:34 FNo. Len. Field Value +07:09:34 ============================================================================ +07:09:34 [ 1] [ 4] [0210] +07:09:34 [ 2] [ 16] [6213545000759880] +07:09:34 [ 3] [ 6] [010000] +07:09:34 [ 4] [ 12] [000100000000] +07:09:34 [ 7] [ 10] [0320070723] +07:09:34 [ 11] [ 6] [929882] +07:09:34 [ 12] [ 6] [070723] +07:09:34 [ 13] [ 4] [0320] +07:09:34 [ 15] [ 4] [0320] +07:09:34 [ 18] [ 4] [6011] +07:09:34 [ 19] [ 3] [418] +07:09:34 [ 32] [ 6] [668899] +07:09:34 [ 35] [ 32] [6213545000759880=491212015988716] +07:09:34 [ 37] [ 12] [507900195999] +07:09:34 [ 38] [ 6] [838085] +07:09:34 [ 39] [ 2] [00] +07:09:34 [ 41] [ 8] [03001003] +07:09:34 [ 49] [ 3] [418] +07:09:34 [ 54] [ 40] [0001418C0076420674580002418C007642067458] +07:09:34 ============================================================================ +07:09:34 Calculate Source COMM Id = 4 +07:09:34 ============================================================================ +07:09:34 + + +waiting on router queue for slot.... +07:09:35 ============================================================================ +07:09:35 Slot Id : <44> +07:09:35 Transaction Type : REQUEST +07:09:35 Received From : +07:09:35 ============================================================================ +07:09:35 FNo. Len. Field Value +07:09:35 ============================================================================ +07:09:35 [ 1] [ 4] [0800] +07:09:35 [ 7] [ 10] [0320120843] +07:09:35 [ 11] [ 6] [155089] +07:09:35 [ 70] [ 3] [301] +07:09:35 ============================================================================ +07:09:35 + + +waiting on router queue for slot.... +07:09:35 Sending to : +07:09:35 ============================================================================ +07:09:35 ============================================================================ +07:09:35 Slot Id : <44> +07:09:35 Transaction Type : RESPONSE +07:09:35 Received From : +07:09:35 ============================================================================ +07:09:35 FNo. Len. Field Value +07:09:35 ============================================================================ +07:09:35 [ 1] [ 4] [0810] +07:09:35 [ 7] [ 10] [0320120843] +07:09:35 [ 11] [ 6] [155089] +07:09:35 [ 39] [ 2] [00] +07:09:35 [ 70] [ 3] [301] +07:09:35 ============================================================================ +07:09:35 Calculate Source COMM Id = 2 +07:09:35 ============================================================================ +07:09:35 + + +waiting on router queue for slot.... +07:09:41 ============================================================================ +07:09:41 Slot Id : <25> +07:09:41 Transaction Type : REQUEST +07:09:41 Received From : +07:09:41 ============================================================================ +07:09:41 FNo. Len. Field Value +07:09:41 ============================================================================ +07:09:41 [ 1] [ 4] [0200] +07:09:41 [ 2] [ 16] [2206990000095760] +07:09:41 [ 3] [ 6] [010000] +07:09:41 [ 4] [ 12] [000100000000] +07:09:41 [ 7] [ 10] [0320070937] +07:09:41 [ 11] [ 6] [667902] +07:09:41 [ 12] [ 6] [070937] +07:09:41 [ 13] [ 4] [0320] +07:09:41 [ 15] [ 4] [0320] +07:09:41 [ 18] [ 4] [6011] +07:09:41 [ 22] [ 3] [900] +07:09:41 [ 25] [ 2] [02] +07:09:41 [ 28] [ 9] [D00002000] +07:09:41 [ 32] [ 6] [621354] +07:09:41 [ 35] [ 32] [2206990000095760=971012617412087] +07:09:41 [ 37] [ 12] [507904119582] +07:09:41 [ 41] [ 8] [08000800] +07:09:41 [ 42] [ 15] [NATIVE ] +07:09:41 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:09:41 [ 49] [ 3] [418] +07:09:41 [ 52] [ 16] [41CB461653C6C26A] +07:09:41 ============================================================================ +07:09:41 + + +waiting on router queue for slot.... +07:09:41 Sending to : +07:09:41 ============================================================================ +07:09:41 Sending to : +07:09:41 ============================================================================ +07:09:41 ============================================================================ +07:09:41 Slot Id : <25> +07:09:41 Transaction Type : REQUEST +07:09:41 Received From : +07:09:41 ============================================================================ +07:09:41 FNo. Len. Field Value +07:09:41 ============================================================================ +07:09:41 [ 1] [ 4] [0200] +07:09:41 [ 2] [ 16] [2206990000095760] +07:09:41 [ 3] [ 6] [010000] +07:09:41 [ 4] [ 12] [000100000000] +07:09:41 [ 7] [ 10] [0320070937] +07:09:41 [ 11] [ 6] [667902] +07:09:41 [ 12] [ 6] [070937] +07:09:41 [ 13] [ 4] [0320] +07:09:41 [ 15] [ 4] [0320] +07:09:41 [ 18] [ 4] [6011] +07:09:41 [ 22] [ 3] [900] +07:09:41 [ 25] [ 2] [02] +07:09:41 [ 28] [ 9] [D00002000] +07:09:41 [ 32] [ 6] [621354] +07:09:41 [ 35] [ 32] [2206990000095760=971012617412087] +07:09:41 [ 37] [ 12] [507904119582] +07:09:41 [ 41] [ 8] [08000800] +07:09:41 [ 42] [ 15] [NATIVE ] +07:09:41 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:09:41 [ 49] [ 3] [418] +07:09:41 [ 52] [ 16] [41CB461653C6C26A] +07:09:41 ============================================================================ +07:09:41 + + +waiting on router queue for slot.... +07:09:41 Sending to : +07:09:41 ============================================================================ +07:09:41 ============================================================================ +07:09:41 Slot Id : <25> +07:09:41 Transaction Type : REQUEST +07:09:41 Received From : +07:09:41 ============================================================================ +07:09:41 FNo. Len. Field Value +07:09:41 ============================================================================ +07:09:41 [ 1] [ 4] [0200] +07:09:41 [ 2] [ 16] [2206990000095760] +07:09:41 [ 3] [ 6] [010000] +07:09:41 [ 4] [ 12] [000100000000] +07:09:41 [ 7] [ 10] [0320070937] +07:09:41 [ 11] [ 6] [667902] +07:09:41 [ 12] [ 6] [070937] +07:09:41 [ 13] [ 4] [0320] +07:09:41 [ 15] [ 4] [0320] +07:09:41 [ 18] [ 4] [6011] +07:09:41 [ 22] [ 3] [900] +07:09:41 [ 25] [ 2] [02] +07:09:41 [ 28] [ 9] [D00002000] +07:09:41 [ 32] [ 6] [621354] +07:09:41 [ 35] [ 32] [2206990000095760=971012617412087] +07:09:41 [ 37] [ 12] [507904119582] +07:09:41 [ 41] [ 8] [08000800] +07:09:41 [ 42] [ 15] [NATIVE ] +07:09:41 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:09:41 [ 49] [ 3] [418] +07:09:41 [ 52] [ 16] [F2A26BA521B44DAD] +07:09:41 ============================================================================ +07:09:41 + + +waiting on router queue for slot.... +07:09:41 Sending to : <1> +07:09:41 ============================================================================ +07:09:43 ============================================================================ +07:09:43 Slot Id : <25> +07:09:43 Transaction Type : RESPONSE +07:09:43 Received From : +07:09:43 ============================================================================ +07:09:43 FNo. Len. Field Value +07:09:43 ============================================================================ +07:09:43 [ 1] [ 4] [0210] +07:09:43 [ 2] [ 16] [2206990000095760] +07:09:43 [ 3] [ 6] [010000] +07:09:43 [ 4] [ 12] [000100000000] +07:09:43 [ 7] [ 10] [0320070937] +07:09:43 [ 11] [ 6] [667902] +07:09:43 [ 12] [ 6] [070937] +07:09:43 [ 13] [ 4] [0320] +07:09:43 [ 15] [ 4] [0320] +07:09:43 [ 18] [ 4] [6011] +07:09:43 [ 32] [ 6] [621354] +07:09:43 [ 35] [ 32] [2206990000095760=971012617412087] +07:09:43 [ 37] [ 12] [507904119582] +07:09:43 [ 38] [ 6] [162838] +07:09:43 [ 39] [ 2] [00] +07:09:43 [ 41] [ 8] [08000800] +07:09:43 [ 49] [ 3] [418] +07:09:43 [ 54] [ 40] [0001418C0001283757000002418C000128375700] +07:09:43 ============================================================================ +07:09:43 Sending to : +07:09:43 ============================================================================ +07:09:43 + + +waiting on router queue for slot.... +07:09:45 ============================================================================ +07:09:45 Slot Id : <25> +07:09:45 Transaction Type : RESPONSE +07:09:45 Received From : +07:09:45 ============================================================================ +07:09:45 FNo. Len. Field Value +07:09:45 ============================================================================ +07:09:45 [ 1] [ 4] [0210] +07:09:45 [ 2] [ 16] [2206990000095760] +07:09:45 [ 3] [ 6] [010000] +07:09:45 [ 4] [ 12] [000100000000] +07:09:45 [ 7] [ 10] [0320070937] +07:09:45 [ 11] [ 6] [667902] +07:09:45 [ 12] [ 6] [070937] +07:09:45 [ 13] [ 4] [0320] +07:09:45 [ 15] [ 4] [0320] +07:09:45 [ 18] [ 4] [6011] +07:09:45 [ 32] [ 6] [621354] +07:09:45 [ 35] [ 32] [2206990000095760=971012617412087] +07:09:45 [ 37] [ 12] [507904119582] +07:09:45 [ 38] [ 6] [162838] +07:09:45 [ 39] [ 2] [00] +07:09:45 [ 41] [ 8] [08000800] +07:09:45 [ 49] [ 3] [418] +07:09:45 [ 54] [ 40] [0001418C0001283757000002418C000128375700] +07:09:45 ============================================================================ +07:09:45 Calculate Source COMM Id = 0 +07:09:45 ============================================================================ +07:09:45 + + +waiting on router queue for slot.... +07:09:45 ============================================================================ +07:09:45 Slot Id : <61> +07:09:45 Transaction Type : REQUEST +07:09:45 Received From : +07:09:45 ============================================================================ +07:09:45 FNo. Len. Field Value +07:09:45 ============================================================================ +07:09:45 [ 1] [ 4] [0800] +07:09:45 [ 7] [ 10] [0320120854] +07:09:45 [ 11] [ 6] [155090] +07:09:45 [ 70] [ 3] [301] +07:09:45 ============================================================================ +07:09:45 + + +waiting on router queue for slot.... +07:09:45 Sending to : +07:09:45 ============================================================================ +07:09:45 ============================================================================ +07:09:45 Slot Id : <61> +07:09:45 Transaction Type : RESPONSE +07:09:45 Received From : +07:09:45 ============================================================================ +07:09:45 FNo. Len. Field Value +07:09:45 ============================================================================ +07:09:45 [ 1] [ 4] [0810] +07:09:45 [ 7] [ 10] [0320120854] +07:09:45 [ 11] [ 6] [155090] +07:09:45 [ 39] [ 2] [00] +07:09:45 [ 70] [ 3] [301] +07:09:45 ============================================================================ +07:09:45 Calculate Source COMM Id = 2 +07:09:45 ============================================================================ +07:09:45 + + +waiting on router queue for slot.... +07:09:47 ============================================================================ +07:09:47 Slot Id : <15> +07:09:47 Transaction Type : REQUEST +07:09:47 Received From : +07:09:47 ============================================================================ +07:09:47 FNo. Len. Field Value +07:09:47 ============================================================================ +07:09:47 [ 1] [ 4] [0200] +07:09:47 [ 2] [ 16] [1808930600005847] +07:09:47 [ 3] [ 6] [011000] +07:09:47 [ 4] [ 12] [000030000000] +07:09:47 [ 7] [ 10] [0320071734] +07:09:47 [ 11] [ 6] [009256] +07:09:47 [ 12] [ 6] [071734] +07:09:47 [ 13] [ 4] [0320] +07:09:47 [ 14] [ 4] [1803] +07:09:47 [ 15] [ 4] [0320] +07:09:47 [ 18] [ 4] [6011] +07:09:47 [ 22] [ 3] [900] +07:09:47 [ 25] [ 2] [02] +07:09:47 [ 28] [ 9] [D00002000] +07:09:47 [ 32] [ 6] [220699] +07:09:47 [ 35] [ 27] [1808930600005847=1803500448] +07:09:47 [ 37] [ 12] [507900213230] +07:09:47 [ 41] [ 8] [05000100] +07:09:47 [ 42] [ 15] [APTRA ] +07:09:47 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:09:47 [ 49] [ 3] [418] +07:09:47 [ 52] [ 16] [D31895E5C064F017] +07:09:47 ============================================================================ +07:09:47 + + +waiting on router queue for slot.... +07:09:47 Sending to : +07:09:47 ============================================================================ +07:09:47 Sending to : +07:09:47 ============================================================================ +07:09:47 ============================================================================ +07:09:47 Slot Id : <15> +07:09:47 Transaction Type : REQUEST +07:09:47 Received From : +07:09:47 ============================================================================ +07:09:47 FNo. Len. Field Value +07:09:47 ============================================================================ +07:09:47 [ 1] [ 4] [0200] +07:09:47 [ 2] [ 16] [1808930600005847] +07:09:47 [ 3] [ 6] [011000] +07:09:47 [ 4] [ 12] [000030000000] +07:09:47 [ 7] [ 10] [0320071734] +07:09:47 [ 11] [ 6] [009256] +07:09:47 [ 12] [ 6] [071734] +07:09:47 [ 13] [ 4] [0320] +07:09:47 [ 14] [ 4] [1803] +07:09:47 [ 15] [ 4] [0320] +07:09:47 [ 18] [ 4] [6011] +07:09:47 [ 22] [ 3] [900] +07:09:47 [ 25] [ 2] [02] +07:09:47 [ 28] [ 9] [D00002000] +07:09:47 [ 32] [ 6] [220699] +07:09:47 [ 35] [ 27] [1808930600005847=1803500448] +07:09:47 [ 37] [ 12] [507900213230] +07:09:47 [ 41] [ 8] [05000100] +07:09:47 [ 42] [ 15] [APTRA ] +07:09:47 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:09:47 [ 49] [ 3] [418] +07:09:47 [ 52] [ 16] [D31895E5C064F017] +07:09:47 ============================================================================ +07:09:47 + + +waiting on router queue for slot.... +07:09:47 Sending to : +07:09:47 ============================================================================ +07:09:47 ============================================================================ +07:09:47 Slot Id : <15> +07:09:47 Transaction Type : REQUEST +07:09:47 Received From : +07:09:47 ============================================================================ +07:09:47 FNo. Len. Field Value +07:09:47 ============================================================================ +07:09:47 [ 1] [ 4] [0200] +07:09:47 [ 2] [ 16] [1808930600005847] +07:09:47 [ 3] [ 6] [011000] +07:09:47 [ 4] [ 12] [000030000000] +07:09:47 [ 7] [ 10] [0320071734] +07:09:47 [ 11] [ 6] [009256] +07:09:47 [ 12] [ 6] [071734] +07:09:47 [ 13] [ 4] [0320] +07:09:47 [ 14] [ 4] [1803] +07:09:47 [ 15] [ 4] [0320] +07:09:47 [ 18] [ 4] [6011] +07:09:47 [ 22] [ 3] [900] +07:09:47 [ 25] [ 2] [02] +07:09:47 [ 28] [ 9] [D00002000] +07:09:47 [ 32] [ 6] [220699] +07:09:47 [ 35] [ 27] [1808930600005847=1803500448] +07:09:47 [ 37] [ 12] [507900213230] +07:09:47 [ 41] [ 8] [05000100] +07:09:47 [ 42] [ 15] [APTRA ] +07:09:47 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:09:47 [ 49] [ 3] [418] +07:09:47 [ 52] [ 16] [D7C5F764D964558D] +07:09:47 ============================================================================ +07:09:47 + + +waiting on router queue for slot.... +07:09:47 Sending to : <2> +07:09:47 ============================================================================ +07:09:50 ============================================================================ +07:09:50 Slot Id : <15> +07:09:50 Transaction Type : RESPONSE +07:09:50 Received From : +07:09:50 ============================================================================ +07:09:50 FNo. Len. Field Value +07:09:50 ============================================================================ +07:09:50 [ 1] [ 4] [0210] +07:09:50 [ 2] [ 16] [1808930600005847] +07:09:50 [ 3] [ 6] [011000] +07:09:50 [ 4] [ 12] [000030000000] +07:09:50 [ 6] [ 12] [000030000000] +07:09:50 [ 7] [ 10] [0320071734] +07:09:50 [ 11] [ 6] [009256] +07:09:50 [ 12] [ 6] [071734] +07:09:50 [ 13] [ 4] [0320] +07:09:50 [ 14] [ 4] [1803] +07:09:50 [ 18] [ 4] [6011] +07:09:50 [ 19] [ 3] [418] +07:09:50 [ 22] [ 3] [021] +07:09:50 [ 32] [ 6] [220699] +07:09:50 [ 35] [ 27] [1808930600005847=1803500448] +07:09:50 [ 37] [ 12] [507900213230] +07:09:50 [ 38] [ 6] [009256] +07:09:50 [ 39] [ 2] [00] +07:09:50 [ 41] [ 8] [05000100] +07:09:50 [ 49] [ 3] [418] +07:09:50 [ 52] [ 16] [D7C5F764D964558D] +07:09:50 [ 54] [ 20] [1001418C000001901000] +07:09:50 ============================================================================ +07:09:50 Sending to : +07:09:50 ============================================================================ +07:09:50 + + +waiting on router queue for slot.... +07:09:52 ============================================================================ +07:09:52 Slot Id : <15> +07:09:52 Transaction Type : RESPONSE +07:09:52 Received From : +07:09:52 ============================================================================ +07:09:52 FNo. Len. Field Value +07:09:52 ============================================================================ +07:09:52 [ 1] [ 4] [0210] +07:09:52 [ 2] [ 16] [1808930600005847] +07:09:52 [ 3] [ 6] [011000] +07:09:52 [ 4] [ 12] [000030000000] +07:09:52 [ 6] [ 12] [000030000000] +07:09:52 [ 7] [ 10] [0320071734] +07:09:52 [ 11] [ 6] [009256] +07:09:52 [ 12] [ 6] [071734] +07:09:52 [ 13] [ 4] [0320] +07:09:52 [ 14] [ 4] [1803] +07:09:52 [ 18] [ 4] [6011] +07:09:52 [ 19] [ 3] [418] +07:09:52 [ 22] [ 3] [021] +07:09:52 [ 32] [ 6] [220699] +07:09:52 [ 35] [ 27] [1808930600005847=1803500448] +07:09:52 [ 37] [ 12] [507900213230] +07:09:52 [ 38] [ 6] [009256] +07:09:52 [ 39] [ 2] [00] +07:09:52 [ 41] [ 8] [05000100] +07:09:52 [ 49] [ 3] [418] +07:09:52 [ 52] [ 16] [D7C5F764D964558D] +07:09:52 [ 54] [ 20] [1001418C000001901000] +07:09:52 ============================================================================ +07:09:52 Calculate Source COMM Id = 1 +07:09:52 ============================================================================ +07:09:52 + + +waiting on router queue for slot.... +07:09:55 ============================================================================ +07:09:55 Slot Id : <55> +07:09:55 Transaction Type : REQUEST +07:09:55 Received From : +07:09:55 ============================================================================ +07:09:55 FNo. Len. Field Value +07:09:55 ============================================================================ +07:09:55 [ 1] [ 4] [0800] +07:09:55 [ 7] [ 10] [0320001742] +07:09:55 [ 11] [ 6] [057448] +07:09:55 [ 37] [ 12] [57907057448] +07:09:55 [ 70] [ 3] [301] +07:09:55 ============================================================================ +07:09:55 + + +waiting on router queue for slot.... +07:09:55 Sending to : +07:09:55 ============================================================================ +07:09:55 ============================================================================ +07:09:55 Slot Id : <55> +07:09:55 Transaction Type : RESPONSE +07:09:55 Received From : +07:09:55 ============================================================================ +07:09:55 FNo. Len. Field Value +07:09:55 ============================================================================ +07:09:55 [ 1] [ 4] [0810] +07:09:55 [ 7] [ 10] [0320001742] +07:09:55 [ 11] [ 6] [057448] +07:09:55 [ 37] [ 12] [579070574480] +07:09:55 [ 39] [ 2] [00] +07:09:55 [ 70] [ 3] [810] +07:09:55 ============================================================================ +07:09:55 Calculate Source COMM Id = 1 +07:09:55 ============================================================================ +07:09:55 + + +waiting on router queue for slot.... +07:10:02 ============================================================================ +07:10:02 Slot Id : <478> +07:10:02 Transaction Type : REQUEST +07:10:02 Received From : +07:10:02 ============================================================================ +07:10:02 FNo. Len. Field Value +07:10:02 ============================================================================ +07:10:02 [ 1] [ 4] [0800] +07:10:02 [ 7] [ 10] [0320120910] +07:10:02 [ 11] [ 6] [155091] +07:10:02 [ 70] [ 3] [301] +07:10:02 ============================================================================ +07:10:02 + + +waiting on router queue for slot.... +07:10:02 Sending to : +07:10:02 ============================================================================ +07:10:02 ============================================================================ +07:10:02 Slot Id : <478> +07:10:02 Transaction Type : RESPONSE +07:10:02 Received From : +07:10:02 ============================================================================ +07:10:02 FNo. Len. Field Value +07:10:02 ============================================================================ +07:10:02 [ 1] [ 4] [0810] +07:10:02 [ 7] [ 10] [0320120910] +07:10:02 [ 11] [ 6] [155091] +07:10:02 [ 39] [ 2] [00] +07:10:02 [ 70] [ 3] [301] +07:10:02 ============================================================================ +07:10:02 Calculate Source COMM Id = 2 +07:10:02 ============================================================================ +07:10:02 + + +waiting on router queue for slot.... +07:10:08 ============================================================================ +07:10:08 Slot Id : <68> +07:10:08 Transaction Type : REQUEST +07:10:08 Received From : +07:10:08 ============================================================================ +07:10:08 FNo. Len. Field Value +07:10:08 ============================================================================ +07:10:08 [ 1] [ 4] [0800] +07:10:08 [ 7] [ 10] [0320142156] +07:10:08 [ 11] [ 6] [072156] +07:10:08 [ 37] [ 12] [57907072156] +07:10:08 [ 70] [ 3] [301] +07:10:08 ============================================================================ +07:10:08 + + +waiting on router queue for slot.... +07:10:08 Sending to : +07:10:08 ============================================================================ +07:10:08 ============================================================================ +07:10:08 Slot Id : <68> +07:10:08 Transaction Type : RESPONSE +07:10:08 Received From : +07:10:08 ============================================================================ +07:10:08 FNo. Len. Field Value +07:10:08 ============================================================================ +07:10:08 [ 1] [ 4] [0810] +07:10:08 [ 7] [ 10] [0320142156] +07:10:08 [ 11] [ 6] [072156] +07:10:08 [ 37] [ 12] [579070721560] +07:10:08 [ 39] [ 2] [00] +07:10:08 [ 70] [ 3] [810] +07:10:08 ============================================================================ +07:10:08 Calculate Source COMM Id = 6 +07:10:08 ============================================================================ +07:10:08 + + +waiting on router queue for slot.... +07:10:14 ============================================================================ +07:10:14 Slot Id : <63> +07:10:14 Transaction Type : REQUEST +07:10:14 Received From : +07:10:14 ============================================================================ +07:10:14 FNo. Len. Field Value +07:10:14 ============================================================================ +07:10:14 [ 1] [ 4] [0800] +07:10:14 [ 7] [ 10] [0320120921] +07:10:14 [ 11] [ 6] [155092] +07:10:14 [ 70] [ 3] [301] +07:10:14 ============================================================================ +07:10:14 + + +waiting on router queue for slot.... +07:10:14 Sending to : +07:10:14 ============================================================================ +07:10:14 ============================================================================ +07:10:14 Slot Id : <63> +07:10:14 Transaction Type : RESPONSE +07:10:14 Received From : +07:10:14 ============================================================================ +07:10:14 FNo. Len. Field Value +07:10:14 ============================================================================ +07:10:14 [ 1] [ 4] [0810] +07:10:14 [ 7] [ 10] [0320120921] +07:10:14 [ 11] [ 6] [155092] +07:10:14 [ 39] [ 2] [00] +07:10:14 [ 70] [ 3] [301] +07:10:14 ============================================================================ +07:10:14 Calculate Source COMM Id = 2 +07:10:14 ============================================================================ +07:10:14 + + +waiting on router queue for slot.... +07:10:18 ============================================================================ +07:10:18 Slot Id : <60> +07:10:18 Transaction Type : REQUEST +07:10:18 Received From : +07:10:18 ============================================================================ +07:10:18 FNo. Len. Field Value +07:10:18 ============================================================================ +07:10:18 [ 0] [ 4] [0420] +07:10:18 [ 1] [ 4] [0420] +07:10:18 [ 2] [ 16] [2206990000095760] +07:10:18 [ 3] [ 6] [010000] +07:10:18 [ 4] [ 12] [000100000000] +07:10:18 [ 6] [ 12] [000100000000] +07:10:18 [ 7] [ 10] [0320070825] +07:10:18 [ 11] [ 6] [667764] +07:10:18 [ 12] [ 6] [070825] +07:10:18 [ 13] [ 4] [0320] +07:10:18 [ 15] [ 4] [0320] +07:10:18 [ 18] [ 4] [6011] +07:10:18 [ 22] [ 3] [900] +07:10:18 [ 25] [ 2] [02] +07:10:18 [ 28] [ 9] [D00002000] +07:10:18 [ 32] [ 6] [621354] +07:10:18 [ 35] [ 32] [2206990000095760=971012617412087] +07:10:18 [ 37] [ 12] [507904119580] +07:10:18 [ 39] [ 2] [00] +07:10:18 [ 41] [ 8] [08000800] +07:10:18 [ 42] [ 15] [NATIVE ] +07:10:18 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:10:18 [ 49] [ 3] [418] +07:10:18 [ 52] [ 16] [41CB461653C6C26A] +07:10:18 ============================================================================ +07:10:18 + + +waiting on router queue for slot.... +07:10:19 ============================================================================ +07:10:19 Slot Id : <41> +07:10:19 Transaction Type : REQUEST +07:10:19 Received From : +07:10:19 ============================================================================ +07:10:19 FNo. Len. Field Value +07:10:19 ============================================================================ +07:10:19 [ 1] [ 4] [0200] +07:10:19 [ 2] [ 16] [6213545000115620] +07:10:19 [ 3] [ 6] [302000] +07:10:19 [ 4] [ 12] [000000000000] +07:10:19 [ 7] [ 10] [0320070811] +07:10:19 [ 11] [ 6] [929898] +07:10:19 [ 12] [ 6] [070811] +07:10:19 [ 13] [ 4] [0320] +07:10:19 [ 15] [ 4] [0320] +07:10:19 [ 18] [ 4] [6011] +07:10:19 [ 19] [ 3] [418] +07:10:19 [ 22] [ 3] [021] +07:10:19 [ 25] [ 2] [01] +07:10:19 [ 28] [ 9] [D00000000] +07:10:19 [ 32] [ 6] [668899] +07:10:19 [ 35] [ 32] [6213545000115620=491212011562258] +07:10:19 [ 37] [ 12] [507900858187] +07:10:19 [ 41] [ 8] [03015004] +07:10:19 [ 42] [ 15] [APT ] +07:10:19 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +07:10:19 [ 49] [ 3] [418] +07:10:19 [ 52] [ 16] [4DBDADDE68C16894] +07:10:19 ============================================================================ +07:10:19 + + +waiting on router queue for slot.... +07:10:19 Sending to : +07:10:19 ============================================================================ +07:10:19 Sending to : +07:10:19 ============================================================================ +07:10:19 ============================================================================ +07:10:19 Slot Id : <60> +07:10:19 Transaction Type : RESPONSE +07:10:19 Received From : +07:10:19 ============================================================================ +07:10:19 FNo. Len. Field Value +07:10:19 ============================================================================ +07:10:19 [ 1] [ 4] [0430] +07:10:19 [ 2] [ 16] [2206990000095760] +07:10:19 [ 3] [ 6] [010000] +07:10:19 [ 4] [ 12] [000100000000] +07:10:19 [ 7] [ 10] [0320070825] +07:10:19 [ 11] [ 6] [667764] +07:10:19 [ 32] [ 6] [621354] +07:10:19 [ 35] [ 32] [2206990000095760=971012617412087] +07:10:19 [ 37] [ 12] [507904119580] +07:10:19 [ 39] [ 2] [00] +07:10:19 [ 41] [ 8] [08000800] +07:10:19 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:10:19 [ 49] [ 3] [418] +07:10:19 [ 90] [ 42] [020066776403200708250000062135400000000000] +07:10:19 ============================================================================ +07:10:19 Successfully send the slot [60] To REVERSAL Process +07:10:19 + + +waiting on router queue for slot.... +07:10:19 ============================================================================ +07:10:19 Slot Id : <41> +07:10:19 Transaction Type : REQUEST +07:10:19 Received From : +07:10:19 ============================================================================ +07:10:19 FNo. Len. Field Value +07:10:19 ============================================================================ +07:10:19 [ 1] [ 4] [0200] +07:10:19 [ 2] [ 16] [6213545000115620] +07:10:19 [ 3] [ 6] [302000] +07:10:19 [ 4] [ 12] [000000000000] +07:10:19 [ 7] [ 10] [0320070811] +07:10:19 [ 11] [ 6] [929898] +07:10:19 [ 12] [ 6] [070811] +07:10:19 [ 13] [ 4] [0320] +07:10:19 [ 15] [ 4] [0320] +07:10:19 [ 18] [ 4] [6011] +07:10:19 [ 19] [ 3] [418] +07:10:19 [ 22] [ 3] [021] +07:10:19 [ 25] [ 2] [01] +07:10:19 [ 28] [ 9] [D00000000] +07:10:19 [ 32] [ 6] [668899] +07:10:19 [ 35] [ 32] [6213545000115620=491212011562258] +07:10:19 [ 37] [ 12] [507900858187] +07:10:19 [ 41] [ 8] [03015004] +07:10:19 [ 42] [ 15] [APT ] +07:10:19 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +07:10:19 [ 49] [ 3] [418] +07:10:19 [ 52] [ 16] [4DBDADDE68C16894] +07:10:19 ============================================================================ +07:10:19 + + +waiting on router queue for slot.... +07:10:19 Sending to : +07:10:19 ============================================================================ +07:10:19 ============================================================================ +07:10:19 Slot Id : <41> +07:10:19 Transaction Type : REQUEST +07:10:19 Received From : +07:10:19 ============================================================================ +07:10:19 FNo. Len. Field Value +07:10:19 ============================================================================ +07:10:19 [ 1] [ 4] [0200] +07:10:19 [ 2] [ 16] [6213545000115620] +07:10:19 [ 3] [ 6] [302000] +07:10:19 [ 4] [ 12] [000000000000] +07:10:19 [ 7] [ 10] [0320070811] +07:10:19 [ 11] [ 6] [929898] +07:10:19 [ 12] [ 6] [070811] +07:10:19 [ 13] [ 4] [0320] +07:10:19 [ 15] [ 4] [0320] +07:10:19 [ 18] [ 4] [6011] +07:10:19 [ 19] [ 3] [418] +07:10:19 [ 22] [ 3] [021] +07:10:19 [ 25] [ 2] [01] +07:10:19 [ 28] [ 9] [D00000000] +07:10:19 [ 32] [ 6] [668899] +07:10:19 [ 35] [ 32] [6213545000115620=491212011562258] +07:10:19 [ 37] [ 12] [507900858187] +07:10:19 [ 41] [ 8] [03015004] +07:10:19 [ 42] [ 15] [APT ] +07:10:19 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +07:10:19 [ 49] [ 3] [418] +07:10:19 [ 52] [ 16] [16B7D9873F160EF4] +07:10:19 ============================================================================ +07:10:19 + + +waiting on router queue for slot.... +07:10:19 Sending to : <0> +07:10:19 ============================================================================ +07:10:20 ============================================================================ +07:10:20 Slot Id : <41> +07:10:20 Transaction Type : RESPONSE +07:10:20 Received From : +07:10:20 ============================================================================ +07:10:20 FNo. Len. Field Value +07:10:20 ============================================================================ +07:10:20 [ 1] [ 4] [0210] +07:10:20 [ 2] [ 16] [6213545000115620] +07:10:20 [ 3] [ 6] [302000] +07:10:20 [ 4] [ 12] [000000000000] +07:10:20 [ 7] [ 10] [0320070811] +07:10:20 [ 11] [ 6] [929898] +07:10:20 [ 12] [ 6] [070811] +07:10:20 [ 13] [ 4] [0320] +07:10:20 [ 15] [ 4] [0320] +07:10:20 [ 18] [ 4] [6011] +07:10:20 [ 19] [ 3] [418] +07:10:20 [ 32] [ 6] [668899] +07:10:20 [ 35] [ 32] [6213545000115620=491212011562258] +07:10:20 [ 37] [ 12] [507900858187] +07:10:20 [ 38] [ 6] [055562] +07:10:20 [ 39] [ 2] [00] +07:10:20 [ 41] [ 8] [03015004] +07:10:20 [ 49] [ 3] [418] +07:10:20 [ 54] [ 40] [2001418C0001106339152002418C000110633915] +07:10:20 ============================================================================ +07:10:20 Sending to : +07:10:20 ============================================================================ +07:10:20 + + +waiting on router queue for slot.... +07:10:21 ============================================================================ +07:10:21 Slot Id : <41> +07:10:21 Transaction Type : RESPONSE +07:10:21 Received From : +07:10:21 ============================================================================ +07:10:21 FNo. Len. Field Value +07:10:21 ============================================================================ +07:10:21 [ 1] [ 4] [0210] +07:10:21 [ 2] [ 16] [6213545000115620] +07:10:21 [ 3] [ 6] [302000] +07:10:21 [ 4] [ 12] [000000000000] +07:10:21 [ 7] [ 10] [0320070811] +07:10:21 [ 11] [ 6] [929898] +07:10:21 [ 12] [ 6] [070811] +07:10:21 [ 13] [ 4] [0320] +07:10:21 [ 15] [ 4] [0320] +07:10:21 [ 18] [ 4] [6011] +07:10:21 [ 19] [ 3] [418] +07:10:21 [ 32] [ 6] [668899] +07:10:21 [ 35] [ 32] [6213545000115620=491212011562258] +07:10:21 [ 37] [ 12] [507900858187] +07:10:21 [ 38] [ 6] [055562] +07:10:21 [ 39] [ 2] [00] +07:10:21 [ 41] [ 8] [03015004] +07:10:21 [ 49] [ 3] [418] +07:10:21 [ 54] [ 40] [2001418C0001106339152002418C000110633915] +07:10:21 ============================================================================ +07:10:21 Calculate Source COMM Id = 4 +07:10:21 ============================================================================ +07:10:21 + + +waiting on router queue for slot.... +07:10:25 ============================================================================ +07:10:25 Slot Id : <464> +07:10:25 Transaction Type : REQUEST +07:10:25 Received From : +07:10:25 ============================================================================ +07:10:25 FNo. Len. Field Value +07:10:25 ============================================================================ +07:10:25 [ 1] [ 4] [0200] +07:10:25 [ 2] [ 16] [1808930600028856] +07:10:25 [ 3] [ 6] [311000] +07:10:25 [ 4] [ 12] [000000000000] +07:10:25 [ 7] [ 10] [0320071813] +07:10:25 [ 11] [ 6] [010406] +07:10:25 [ 12] [ 6] [071813] +07:10:25 [ 13] [ 4] [0320] +07:10:25 [ 14] [ 4] [1803] +07:10:25 [ 15] [ 4] [0320] +07:10:25 [ 18] [ 4] [6011] +07:10:25 [ 22] [ 3] [900] +07:10:25 [ 25] [ 2] [02] +07:10:25 [ 28] [ 9] [000000000] +07:10:25 [ 32] [ 6] [220699] +07:10:25 [ 35] [ 27] [1808930600028856=1803500957] +07:10:25 [ 37] [ 12] [507900220643] +07:10:25 [ 41] [ 8] [05000200] +07:10:25 [ 42] [ 15] [APTRA ] +07:10:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:10:25 [ 49] [ 3] [418] +07:10:25 [ 52] [ 16] [8BA6A9B5A7BF1DA2] +07:10:25 ============================================================================ +07:10:25 + + +waiting on router queue for slot.... +07:10:25 Sending to : +07:10:25 ============================================================================ +07:10:25 Sending to : +07:10:25 ============================================================================ +07:10:25 ============================================================================ +07:10:25 Slot Id : <464> +07:10:25 Transaction Type : REQUEST +07:10:25 Received From : +07:10:25 ============================================================================ +07:10:25 FNo. Len. Field Value +07:10:25 ============================================================================ +07:10:25 [ 1] [ 4] [0200] +07:10:25 [ 2] [ 16] [1808930600028856] +07:10:25 [ 3] [ 6] [311000] +07:10:25 [ 4] [ 12] [000000000000] +07:10:25 [ 7] [ 10] [0320071813] +07:10:25 [ 11] [ 6] [010406] +07:10:25 [ 12] [ 6] [071813] +07:10:25 [ 13] [ 4] [0320] +07:10:25 [ 14] [ 4] [1803] +07:10:25 [ 15] [ 4] [0320] +07:10:25 [ 18] [ 4] [6011] +07:10:25 [ 22] [ 3] [900] +07:10:25 [ 25] [ 2] [02] +07:10:25 [ 28] [ 9] [000000000] +07:10:25 [ 32] [ 6] [220699] +07:10:25 [ 35] [ 27] [1808930600028856=1803500957] +07:10:25 [ 37] [ 12] [507900220643] +07:10:25 [ 41] [ 8] [05000200] +07:10:25 [ 42] [ 15] [APTRA ] +07:10:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:10:25 [ 49] [ 3] [418] +07:10:25 [ 52] [ 16] [8BA6A9B5A7BF1DA2] +07:10:25 ============================================================================ +07:10:25 + + +waiting on router queue for slot.... +07:10:25 Sending to : +07:10:25 ============================================================================ +07:10:25 ============================================================================ +07:10:25 Slot Id : <464> +07:10:25 Transaction Type : REQUEST +07:10:25 Received From : +07:10:25 ============================================================================ +07:10:25 FNo. Len. Field Value +07:10:25 ============================================================================ +07:10:25 [ 1] [ 4] [0200] +07:10:25 [ 2] [ 16] [1808930600028856] +07:10:25 [ 3] [ 6] [311000] +07:10:25 [ 4] [ 12] [000000000000] +07:10:25 [ 7] [ 10] [0320071813] +07:10:25 [ 11] [ 6] [010406] +07:10:25 [ 12] [ 6] [071813] +07:10:25 [ 13] [ 4] [0320] +07:10:25 [ 14] [ 4] [1803] +07:10:25 [ 15] [ 4] [0320] +07:10:25 [ 18] [ 4] [6011] +07:10:25 [ 22] [ 3] [900] +07:10:25 [ 25] [ 2] [02] +07:10:25 [ 28] [ 9] [000000000] +07:10:25 [ 32] [ 6] [220699] +07:10:25 [ 35] [ 27] [1808930600028856=1803500957] +07:10:25 [ 37] [ 12] [507900220643] +07:10:25 [ 41] [ 8] [05000200] +07:10:25 [ 42] [ 15] [APTRA ] +07:10:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:10:25 [ 49] [ 3] [418] +07:10:25 [ 52] [ 16] [2628AD2ADFECEAA3] +07:10:25 ============================================================================ +07:10:25 + + +waiting on router queue for slot.... +07:10:25 Sending to : <2> +07:10:25 ============================================================================ +07:10:28 ============================================================================ +07:10:28 Slot Id : <38> +07:10:28 Transaction Type : REQUEST +07:10:28 Received From : +07:10:28 ============================================================================ +07:10:28 FNo. Len. Field Value +07:10:28 ============================================================================ +07:10:28 [ 1] [ 4] [0800] +07:10:28 [ 2] [ 5] [02531] +07:10:28 [ 3] [ 6] [579078] +07:10:28 [ 7] [ 10] [0320001028] +07:10:28 [ 11] [ 6] [806828] +07:10:28 [ 15] [ 10] [0320001028] +07:10:28 [ 37] [ 11] [57907806828] +07:10:28 [ 70] [ 3] [001] +07:10:28 ============================================================================ +07:10:28 + + +waiting on router queue for slot.... +07:10:28 ============================================================================ +07:10:28 Slot Id : <38> +07:10:28 Transaction Type : RESPONSE +07:10:28 Received From : +07:10:28 ============================================================================ +07:10:28 FNo. Len. Field Value +07:10:28 ============================================================================ +07:10:28 [ 1] [ 4] [0810] +07:10:28 [ 7] [ 10] [0320001028] +07:10:28 [ 11] [ 6] [806828] +07:10:28 [ 15] [ 4] [0320] +07:10:28 [ 37] [ 12] [57907806828] +07:10:28 [ 39] [ 2] [00] +07:10:28 [ 70] [ 3] [001] +07:10:28 ============================================================================ +07:10:28 Sending to : +07:10:28 ============================================================================ +07:10:28 + + +waiting on router queue for slot.... +07:10:31 ============================================================================ +07:10:31 Slot Id : <464> +07:10:31 Transaction Type : RESPONSE +07:10:31 Received From : +07:10:31 ============================================================================ +07:10:31 FNo. Len. Field Value +07:10:31 ============================================================================ +07:10:31 [ 1] [ 4] [0210] +07:10:31 [ 2] [ 16] [1808930600028856] +07:10:31 [ 3] [ 6] [301000] +07:10:31 [ 7] [ 10] [0320071813] +07:10:31 [ 11] [ 6] [010406] +07:10:31 [ 12] [ 6] [071813] +07:10:31 [ 13] [ 4] [0320] +07:10:31 [ 14] [ 4] [1803] +07:10:31 [ 19] [ 3] [418] +07:10:31 [ 32] [ 6] [220699] +07:10:31 [ 37] [ 12] [507900220643] +07:10:31 [ 38] [ 6] [010406] +07:10:31 [ 39] [ 2] [00] +07:10:31 [ 41] [ 8] [05000200] +07:10:31 [ 49] [ 3] [418] +07:10:31 [ 52] [ 16] [2628AD2ADFECEAA3] +07:10:31 [ 54] [ 20] [1002418C000031941300] +07:10:31 ============================================================================ +07:10:31 Sending to : +07:10:31 ============================================================================ +07:10:31 + + +waiting on router queue for slot.... +07:10:32 ============================================================================ +07:10:32 Slot Id : <73> +07:10:32 Transaction Type : REQUEST +07:10:32 Received From : +07:10:32 ============================================================================ +07:10:32 FNo. Len. Field Value +07:10:32 ============================================================================ +07:10:32 [ 1] [ 4] [0200] +07:10:32 [ 2] [ 16] [6688990103272306] +07:10:32 [ 3] [ 6] [011000] +07:10:32 [ 4] [ 12] [000100000000] +07:10:32 [ 7] [ 10] [0320071028] +07:10:32 [ 11] [ 6] [668006] +07:10:32 [ 12] [ 6] [071028] +07:10:32 [ 13] [ 4] [0320] +07:10:32 [ 15] [ 4] [0320] +07:10:32 [ 18] [ 4] [6011] +07:10:32 [ 22] [ 3] [900] +07:10:32 [ 25] [ 2] [02] +07:10:32 [ 28] [ 9] [D00002000] +07:10:32 [ 32] [ 6] [621354] +07:10:32 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:10:32 [ 37] [ 12] [507903499418] +07:10:32 [ 41] [ 8] [06002200] +07:10:32 [ 42] [ 15] [NATIVE ] +07:10:32 [ 43] [ 40] [Beng Market Beng LAO] +07:10:32 [ 49] [ 3] [418] +07:10:32 [ 52] [ 16] [3B2593E21CE86DB1] +07:10:32 ============================================================================ +07:10:32 + + +waiting on router queue for slot.... +07:10:32 Sending to : +07:10:32 ============================================================================ +07:10:32 Sending to : +07:10:32 ============================================================================ +07:10:32 ============================================================================ +07:10:32 Slot Id : <73> +07:10:32 Transaction Type : REQUEST +07:10:32 Received From : +07:10:32 ============================================================================ +07:10:32 FNo. Len. Field Value +07:10:32 ============================================================================ +07:10:32 [ 1] [ 4] [0200] +07:10:32 [ 2] [ 16] [6688990103272306] +07:10:32 [ 3] [ 6] [011000] +07:10:32 [ 4] [ 12] [000100000000] +07:10:32 [ 7] [ 10] [0320071028] +07:10:32 [ 11] [ 6] [668006] +07:10:32 [ 12] [ 6] [071028] +07:10:32 [ 13] [ 4] [0320] +07:10:32 [ 15] [ 4] [0320] +07:10:32 [ 18] [ 4] [6011] +07:10:32 [ 22] [ 3] [900] +07:10:32 [ 25] [ 2] [02] +07:10:32 [ 28] [ 9] [D00002000] +07:10:32 [ 32] [ 6] [621354] +07:10:32 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:10:32 [ 37] [ 12] [507903499418] +07:10:32 [ 41] [ 8] [06002200] +07:10:32 [ 42] [ 15] [NATIVE ] +07:10:32 [ 43] [ 40] [Beng Market Beng LAO] +07:10:32 [ 49] [ 3] [418] +07:10:32 [ 52] [ 16] [3B2593E21CE86DB1] +07:10:32 ============================================================================ +07:10:32 + + +waiting on router queue for slot.... +07:10:32 Sending to : +07:10:32 ============================================================================ +07:10:32 ============================================================================ +07:10:32 Slot Id : <73> +07:10:32 Transaction Type : REQUEST +07:10:32 Received From : +07:10:32 ============================================================================ +07:10:32 FNo. Len. Field Value +07:10:32 ============================================================================ +07:10:32 [ 1] [ 4] [0200] +07:10:32 [ 2] [ 16] [6688990103272306] +07:10:32 [ 3] [ 6] [011000] +07:10:32 [ 4] [ 12] [000100000000] +07:10:32 [ 7] [ 10] [0320071028] +07:10:32 [ 11] [ 6] [668006] +07:10:32 [ 12] [ 6] [071028] +07:10:32 [ 13] [ 4] [0320] +07:10:32 [ 15] [ 4] [0320] +07:10:32 [ 18] [ 4] [6011] +07:10:32 [ 22] [ 3] [900] +07:10:32 [ 25] [ 2] [02] +07:10:32 [ 28] [ 9] [D00002000] +07:10:32 [ 32] [ 6] [621354] +07:10:32 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:10:32 [ 37] [ 12] [507903499418] +07:10:32 [ 41] [ 8] [06002200] +07:10:32 [ 42] [ 15] [NATIVE ] +07:10:32 [ 43] [ 40] [Beng Market Beng LAO] +07:10:32 [ 49] [ 3] [418] +07:10:32 [ 52] [ 16] [1EEBBBC243DE7E3E] +07:10:32 ============================================================================ +07:10:32 + + +waiting on router queue for slot.... +07:10:32 Sending to : <4> +07:10:32 ============================================================================ +07:10:33 ============================================================================ +07:10:33 Slot Id : <464> +07:10:33 Transaction Type : RESPONSE +07:10:33 Received From : +07:10:33 ============================================================================ +07:10:33 FNo. Len. Field Value +07:10:33 ============================================================================ +07:10:33 [ 1] [ 4] [0210] +07:10:33 [ 2] [ 16] [1808930600028856] +07:10:33 [ 3] [ 6] [301000] +07:10:33 [ 7] [ 10] [0320071813] +07:10:33 [ 11] [ 6] [010406] +07:10:33 [ 12] [ 6] [071813] +07:10:33 [ 13] [ 4] [0320] +07:10:33 [ 14] [ 4] [1803] +07:10:33 [ 19] [ 3] [418] +07:10:33 [ 32] [ 6] [220699] +07:10:33 [ 37] [ 12] [507900220643] +07:10:33 [ 38] [ 6] [010406] +07:10:33 [ 39] [ 2] [00] +07:10:33 [ 41] [ 8] [05000200] +07:10:33 [ 49] [ 3] [418] +07:10:33 [ 52] [ 16] [2628AD2ADFECEAA3] +07:10:33 [ 54] [ 20] [1002418C000031941300] +07:10:33 ============================================================================ +07:10:33 Calculate Source COMM Id = 1 +07:10:33 ============================================================================ +07:10:33 + + +waiting on router queue for slot.... +07:10:33 ============================================================================ +07:10:33 Slot Id : <73> +07:10:33 Transaction Type : RESPONSE +07:10:33 Received From : +07:10:33 ============================================================================ +07:10:33 FNo. Len. Field Value +07:10:33 ============================================================================ +07:10:33 [ 1] [ 4] [0210] +07:10:33 [ 2] [ 16] [6688990103272306] +07:10:33 [ 3] [ 6] [011000] +07:10:33 [ 4] [ 12] [000100000000] +07:10:33 [ 11] [ 6] [668006] +07:10:33 [ 12] [ 6] [071028] +07:10:33 [ 15] [ 4] [0320] +07:10:33 [ 18] [ 4] [6011] +07:10:33 [ 32] [ 6] [621354] +07:10:33 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:10:33 [ 37] [ 12] [507903499418] +07:10:33 [ 38] [ 6] [134162] +07:10:33 [ 39] [ 2] [00] +07:10:33 [ 41] [ 8] [06002200] +07:10:33 [ 49] [ 3] [418] +07:10:33 [ 54] [ 20] [1002418C000080987742] +07:10:33 ============================================================================ +07:10:33 Sending to : +07:10:33 ============================================================================ +07:10:33 + + +waiting on router queue for slot.... +07:10:34 ============================================================================ +07:10:34 Slot Id : <73> +07:10:34 Transaction Type : RESPONSE +07:10:34 Received From : +07:10:34 ============================================================================ +07:10:34 FNo. Len. Field Value +07:10:34 ============================================================================ +07:10:34 [ 1] [ 4] [0210] +07:10:34 [ 2] [ 16] [6688990103272306] +07:10:34 [ 3] [ 6] [011000] +07:10:34 [ 4] [ 12] [000100000000] +07:10:34 [ 11] [ 6] [668006] +07:10:34 [ 12] [ 6] [071028] +07:10:34 [ 15] [ 4] [0320] +07:10:34 [ 18] [ 4] [6011] +07:10:34 [ 32] [ 6] [621354] +07:10:34 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:10:34 [ 37] [ 12] [507903499418] +07:10:34 [ 38] [ 6] [134162] +07:10:34 [ 39] [ 2] [00] +07:10:34 [ 41] [ 8] [06002200] +07:10:34 [ 49] [ 3] [418] +07:10:34 [ 54] [ 20] [1002418C000080987742] +07:10:34 ============================================================================ +07:10:34 Calculate Source COMM Id = 0 +07:10:34 ============================================================================ +07:10:34 + + +waiting on router queue for slot.... +07:10:40 ============================================================================ +07:10:40 Slot Id : <487> +07:10:40 Transaction Type : REQUEST +07:10:40 Received From : +07:10:40 ============================================================================ +07:10:40 FNo. Len. Field Value +07:10:40 ============================================================================ +07:10:40 [ 1] [ 4] [0200] +07:10:40 [ 2] [ 16] [6213544000395266] +07:10:40 [ 3] [ 6] [301000] +07:10:40 [ 7] [ 10] [0320000948] +07:10:40 [ 11] [ 6] [266725] +07:10:40 [ 12] [ 6] [070948] +07:10:40 [ 13] [ 4] [0320] +07:10:40 [ 14] [ 4] [4912] +07:10:40 [ 15] [ 4] [0320] +07:10:40 [ 18] [ 4] [6011] +07:10:40 [ 19] [ 3] [418] +07:10:40 [ 22] [ 3] [021] +07:10:40 [ 25] [ 2] [01] +07:10:40 [ 32] [ 6] [180893] +07:10:40 [ 35] [ 32] [6213544000395266=491212019526359] +07:10:40 [ 37] [ 12] [507900266725] +07:10:40 [ 41] [ 8] [0112CPBR] +07:10:40 [ 42] [ 15] [999999 ] +07:10:40 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +07:10:40 [ 49] [ 3] [418] +07:10:40 [ 52] [ 16] [0FC7A6E133DF46B7] +07:10:40 ============================================================================ +07:10:40 + + +waiting on router queue for slot.... +07:10:40 Sending to : +07:10:40 ============================================================================ +07:10:40 Sending to : +07:10:40 ============================================================================ +07:10:40 ============================================================================ +07:10:40 Slot Id : <27> +07:10:40 Transaction Type : REQUEST +07:10:40 Received From : +07:10:40 ============================================================================ +07:10:40 FNo. Len. Field Value +07:10:40 ============================================================================ +07:10:40 [ 1] [ 4] [0800] +07:10:40 [ 7] [ 10] [0320120948] +07:10:40 [ 11] [ 6] [155093] +07:10:40 [ 70] [ 3] [301] +07:10:40 ============================================================================ +07:10:40 + + +waiting on router queue for slot.... +07:10:40 Sending to : +07:10:40 ============================================================================ +07:10:40 ============================================================================ +07:10:40 Slot Id : <27> +07:10:40 Transaction Type : RESPONSE +07:10:40 Received From : +07:10:40 ============================================================================ +07:10:40 FNo. Len. Field Value +07:10:40 ============================================================================ +07:10:40 [ 1] [ 4] [0810] +07:10:40 [ 7] [ 10] [0320120948] +07:10:40 [ 11] [ 6] [155093] +07:10:40 [ 39] [ 2] [00] +07:10:40 [ 70] [ 3] [301] +07:10:40 ============================================================================ +07:10:40 Calculate Source COMM Id = 2 +07:10:40 ============================================================================ +07:10:40 + + +waiting on router queue for slot.... +07:10:40 ============================================================================ +07:10:40 Slot Id : <487> +07:10:40 Transaction Type : REQUEST +07:10:40 Received From : +07:10:40 ============================================================================ +07:10:40 FNo. Len. Field Value +07:10:40 ============================================================================ +07:10:40 [ 1] [ 4] [0200] +07:10:40 [ 2] [ 16] [6213544000395266] +07:10:40 [ 3] [ 6] [301000] +07:10:40 [ 7] [ 10] [0320000948] +07:10:40 [ 11] [ 6] [266725] +07:10:40 [ 12] [ 6] [070948] +07:10:40 [ 13] [ 4] [0320] +07:10:40 [ 14] [ 4] [4912] +07:10:40 [ 15] [ 4] [0320] +07:10:40 [ 18] [ 4] [6011] +07:10:40 [ 19] [ 3] [418] +07:10:40 [ 22] [ 3] [021] +07:10:40 [ 25] [ 2] [01] +07:10:40 [ 32] [ 6] [180893] +07:10:40 [ 35] [ 32] [6213544000395266=491212019526359] +07:10:40 [ 37] [ 12] [507900266725] +07:10:40 [ 41] [ 8] [0112CPBR] +07:10:40 [ 42] [ 15] [999999 ] +07:10:40 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +07:10:40 [ 49] [ 3] [418] +07:10:40 [ 52] [ 16] [0FC7A6E133DF46B7] +07:10:40 ============================================================================ +07:10:40 + + +waiting on router queue for slot.... +07:10:40 Sending to : +07:10:40 ============================================================================ +07:10:40 ============================================================================ +07:10:40 Slot Id : <487> +07:10:40 Transaction Type : REQUEST +07:10:40 Received From : +07:10:40 ============================================================================ +07:10:40 FNo. Len. Field Value +07:10:40 ============================================================================ +07:10:40 [ 1] [ 4] [0200] +07:10:40 [ 2] [ 16] [6213544000395266] +07:10:40 [ 3] [ 6] [301000] +07:10:40 [ 7] [ 10] [0320000948] +07:10:40 [ 11] [ 6] [266725] +07:10:40 [ 12] [ 6] [070948] +07:10:40 [ 13] [ 4] [0320] +07:10:40 [ 14] [ 4] [4912] +07:10:40 [ 15] [ 4] [0320] +07:10:40 [ 18] [ 4] [6011] +07:10:40 [ 19] [ 3] [418] +07:10:40 [ 22] [ 3] [021] +07:10:40 [ 25] [ 2] [01] +07:10:40 [ 32] [ 6] [180893] +07:10:40 [ 35] [ 32] [6213544000395266=491212019526359] +07:10:40 [ 37] [ 12] [507900266725] +07:10:40 [ 41] [ 8] [0112CPBR] +07:10:40 [ 42] [ 15] [999999 ] +07:10:40 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +07:10:40 [ 49] [ 3] [418] +07:10:40 [ 52] [ 16] [C572A254C3A6D411] +07:10:40 ============================================================================ +07:10:40 + + +waiting on router queue for slot.... +07:10:40 Sending to : <0> +07:10:40 ============================================================================ +07:10:41 ============================================================================ +07:10:41 Slot Id : <487> +07:10:41 Transaction Type : RESPONSE +07:10:41 Received From : +07:10:41 ============================================================================ +07:10:41 FNo. Len. Field Value +07:10:41 ============================================================================ +07:10:41 [ 1] [ 4] [0210] +07:10:41 [ 2] [ 16] [6213544000395266] +07:10:41 [ 3] [ 6] [301000] +07:10:41 [ 4] [ 12] [000000000000] +07:10:41 [ 7] [ 10] [0320000948] +07:10:41 [ 11] [ 6] [266725] +07:10:41 [ 12] [ 6] [070948] +07:10:41 [ 13] [ 4] [0320] +07:10:41 [ 15] [ 4] [0320] +07:10:41 [ 18] [ 4] [6011] +07:10:41 [ 19] [ 3] [418] +07:10:41 [ 32] [ 6] [180893] +07:10:41 [ 35] [ 32] [6213544000395266=491212019526359] +07:10:41 [ 37] [ 12] [507900266725] +07:10:41 [ 38] [ 6] [060837] +07:10:41 [ 39] [ 2] [00] +07:10:41 [ 41] [ 8] [0112CPBR] +07:10:41 [ 49] [ 3] [418] +07:10:41 [ 54] [ 40] [1001418C0000581514191002418C000058151419] +07:10:41 ============================================================================ +07:10:41 Sending to : +07:10:41 ============================================================================ +07:10:41 + + +waiting on router queue for slot.... +07:10:42 ============================================================================ +07:10:42 Slot Id : <487> +07:10:42 Transaction Type : RESPONSE +07:10:42 Received From : +07:10:42 ============================================================================ +07:10:42 FNo. Len. Field Value +07:10:42 ============================================================================ +07:10:42 [ 1] [ 4] [0210] +07:10:42 [ 2] [ 16] [6213544000395266] +07:10:42 [ 3] [ 6] [301000] +07:10:42 [ 4] [ 12] [000000000000] +07:10:42 [ 7] [ 10] [0320000948] +07:10:42 [ 11] [ 6] [266725] +07:10:42 [ 12] [ 6] [070948] +07:10:42 [ 13] [ 4] [0320] +07:10:42 [ 15] [ 4] [0320] +07:10:42 [ 18] [ 4] [6011] +07:10:42 [ 19] [ 3] [418] +07:10:42 [ 32] [ 6] [180893] +07:10:42 [ 35] [ 32] [6213544000395266=491212019526359] +07:10:42 [ 37] [ 12] [507900266725] +07:10:42 [ 38] [ 6] [060837] +07:10:42 [ 39] [ 2] [00] +07:10:42 [ 41] [ 8] [0112CPBR] +07:10:42 [ 49] [ 3] [418] +07:10:42 [ 54] [ 40] [1001418C0000581514191002418C000058151419] +07:10:42 ============================================================================ +07:10:42 Calculate Source COMM Id = 2 +07:10:42 ============================================================================ +07:10:42 + + +waiting on router queue for slot.... +07:10:52 ============================================================================ +07:10:52 Slot Id : <20> +07:10:52 Transaction Type : REQUEST +07:10:52 Received From : +07:10:52 ============================================================================ +07:10:52 FNo. Len. Field Value +07:10:52 ============================================================================ +07:10:52 [ 1] [ 4] [0200] +07:10:52 [ 2] [ 16] [1808930600028856] +07:10:52 [ 3] [ 6] [011000] +07:10:52 [ 4] [ 12] [000030000000] +07:10:52 [ 7] [ 10] [0320071840] +07:10:52 [ 11] [ 6] [010407] +07:10:52 [ 12] [ 6] [071840] +07:10:52 [ 13] [ 4] [0320] +07:10:52 [ 14] [ 4] [1803] +07:10:52 [ 15] [ 4] [0320] +07:10:52 [ 18] [ 4] [6011] +07:10:52 [ 22] [ 3] [900] +07:10:52 [ 25] [ 2] [02] +07:10:52 [ 28] [ 9] [D00002000] +07:10:52 [ 32] [ 6] [220699] +07:10:52 [ 35] [ 27] [1808930600028856=1803500957] +07:10:52 [ 37] [ 12] [507900220644] +07:10:52 [ 41] [ 8] [05000200] +07:10:52 [ 42] [ 15] [APTRA ] +07:10:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:10:52 [ 49] [ 3] [418] +07:10:52 [ 52] [ 16] [8BA6A9B5A7BF1DA2] +07:10:52 ============================================================================ +07:10:52 + + +waiting on router queue for slot.... +07:10:52 Sending to : +07:10:52 ============================================================================ +07:10:52 Sending to : +07:10:52 ============================================================================ +07:10:53 ============================================================================ +07:10:53 Slot Id : <20> +07:10:53 Transaction Type : REQUEST +07:10:53 Received From : +07:10:53 ============================================================================ +07:10:53 FNo. Len. Field Value +07:10:53 ============================================================================ +07:10:53 [ 1] [ 4] [0200] +07:10:53 [ 2] [ 16] [1808930600028856] +07:10:53 [ 3] [ 6] [011000] +07:10:53 [ 4] [ 12] [000030000000] +07:10:53 [ 7] [ 10] [0320071840] +07:10:53 [ 11] [ 6] [010407] +07:10:53 [ 12] [ 6] [071840] +07:10:53 [ 13] [ 4] [0320] +07:10:53 [ 14] [ 4] [1803] +07:10:53 [ 15] [ 4] [0320] +07:10:53 [ 18] [ 4] [6011] +07:10:53 [ 22] [ 3] [900] +07:10:53 [ 25] [ 2] [02] +07:10:53 [ 28] [ 9] [D00002000] +07:10:53 [ 32] [ 6] [220699] +07:10:53 [ 35] [ 27] [1808930600028856=1803500957] +07:10:53 [ 37] [ 12] [507900220644] +07:10:53 [ 41] [ 8] [05000200] +07:10:53 [ 42] [ 15] [APTRA ] +07:10:53 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:10:53 [ 49] [ 3] [418] +07:10:53 [ 52] [ 16] [8BA6A9B5A7BF1DA2] +07:10:53 ============================================================================ +07:10:53 + + +waiting on router queue for slot.... +07:10:53 Sending to : +07:10:53 ============================================================================ +07:10:53 ============================================================================ +07:10:53 Slot Id : <20> +07:10:53 Transaction Type : REQUEST +07:10:53 Received From : +07:10:53 ============================================================================ +07:10:53 FNo. Len. Field Value +07:10:53 ============================================================================ +07:10:53 [ 1] [ 4] [0200] +07:10:53 [ 2] [ 16] [1808930600028856] +07:10:53 [ 3] [ 6] [011000] +07:10:53 [ 4] [ 12] [000030000000] +07:10:53 [ 7] [ 10] [0320071840] +07:10:53 [ 11] [ 6] [010407] +07:10:53 [ 12] [ 6] [071840] +07:10:53 [ 13] [ 4] [0320] +07:10:53 [ 14] [ 4] [1803] +07:10:53 [ 15] [ 4] [0320] +07:10:53 [ 18] [ 4] [6011] +07:10:53 [ 22] [ 3] [900] +07:10:53 [ 25] [ 2] [02] +07:10:53 [ 28] [ 9] [D00002000] +07:10:53 [ 32] [ 6] [220699] +07:10:53 [ 35] [ 27] [1808930600028856=1803500957] +07:10:53 [ 37] [ 12] [507900220644] +07:10:53 [ 41] [ 8] [05000200] +07:10:53 [ 42] [ 15] [APTRA ] +07:10:53 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:10:53 [ 49] [ 3] [418] +07:10:53 [ 52] [ 16] [2628AD2ADFECEAA3] +07:10:53 ============================================================================ +07:10:53 + + +waiting on router queue for slot.... +07:10:53 Sending to : <2> +07:10:53 ============================================================================ +07:10:56 ============================================================================ +07:10:56 Slot Id : <20> +07:10:56 Transaction Type : RESPONSE +07:10:56 Received From : +07:10:56 ============================================================================ +07:10:56 FNo. Len. Field Value +07:10:56 ============================================================================ +07:10:56 [ 1] [ 4] [0210] +07:10:56 [ 2] [ 16] [1808930600028856] +07:10:56 [ 3] [ 6] [011000] +07:10:56 [ 4] [ 12] [000030000000] +07:10:56 [ 6] [ 12] [000030000000] +07:10:56 [ 7] [ 10] [0320071840] +07:10:56 [ 11] [ 6] [010407] +07:10:56 [ 12] [ 6] [071840] +07:10:56 [ 13] [ 4] [0320] +07:10:56 [ 14] [ 4] [1803] +07:10:56 [ 18] [ 4] [6011] +07:10:56 [ 19] [ 3] [418] +07:10:56 [ 22] [ 3] [021] +07:10:56 [ 32] [ 6] [220699] +07:10:56 [ 35] [ 27] [1808930600028856=1803500957] +07:10:56 [ 37] [ 12] [507900220644] +07:10:56 [ 38] [ 6] [010407] +07:10:56 [ 39] [ 2] [51] +07:10:56 [ 41] [ 8] [05000200] +07:10:56 [ 49] [ 3] [418] +07:10:56 [ 52] [ 16] [2628AD2ADFECEAA3] +07:10:56 ============================================================================ +07:10:56 Sending to : +07:10:56 ============================================================================ +07:10:56 + + +waiting on router queue for slot.... +07:10:57 ============================================================================ +07:10:57 Slot Id : <26> +07:10:57 Transaction Type : REQUEST +07:10:57 Received From : +07:10:57 ============================================================================ +07:10:57 FNo. Len. Field Value +07:10:57 ============================================================================ +07:10:57 [ 1] [ 4] [0200] +07:10:57 [ 2] [ 16] [6688990103252803] +07:10:57 [ 3] [ 6] [011000] +07:10:57 [ 4] [ 12] [000040000000] +07:10:57 [ 7] [ 10] [0320071053] +07:10:57 [ 11] [ 6] [668060] +07:10:57 [ 12] [ 6] [071053] +07:10:57 [ 13] [ 4] [0320] +07:10:57 [ 15] [ 4] [0320] +07:10:57 [ 18] [ 4] [6011] +07:10:57 [ 22] [ 3] [900] +07:10:57 [ 25] [ 2] [02] +07:10:57 [ 28] [ 9] [D00002000] +07:10:57 [ 32] [ 6] [621354] +07:10:57 [ 35] [ 37] [6688990103252803=42121231280338500000] +07:10:57 [ 37] [ 12] [507904153734] +07:10:57 [ 41] [ 8] [20001000] +07:10:57 [ 42] [ 15] [NATIVE ] +07:10:57 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +07:10:57 [ 49] [ 3] [418] +07:10:57 [ 52] [ 16] [314B560C429E182E] +07:10:57 ============================================================================ +07:10:57 + + +waiting on router queue for slot.... +07:10:57 Sending to : +07:10:57 ============================================================================ +07:10:57 Sending to : +07:10:57 ============================================================================ +07:10:57 ============================================================================ +07:10:57 Slot Id : <26> +07:10:57 Transaction Type : REQUEST +07:10:57 Received From : +07:10:57 ============================================================================ +07:10:57 FNo. Len. Field Value +07:10:57 ============================================================================ +07:10:57 [ 1] [ 4] [0200] +07:10:57 [ 2] [ 16] [6688990103252803] +07:10:57 [ 3] [ 6] [011000] +07:10:57 [ 4] [ 12] [000040000000] +07:10:57 [ 7] [ 10] [0320071053] +07:10:57 [ 11] [ 6] [668060] +07:10:57 [ 12] [ 6] [071053] +07:10:57 [ 13] [ 4] [0320] +07:10:57 [ 15] [ 4] [0320] +07:10:57 [ 18] [ 4] [6011] +07:10:57 [ 22] [ 3] [900] +07:10:57 [ 25] [ 2] [02] +07:10:57 [ 28] [ 9] [D00002000] +07:10:57 [ 32] [ 6] [621354] +07:10:57 [ 35] [ 37] [6688990103252803=42121231280338500000] +07:10:57 [ 37] [ 12] [507904153734] +07:10:57 [ 41] [ 8] [20001000] +07:10:57 [ 42] [ 15] [NATIVE ] +07:10:57 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +07:10:57 [ 49] [ 3] [418] +07:10:57 [ 52] [ 16] [314B560C429E182E] +07:10:57 ============================================================================ +07:10:57 + + +waiting on router queue for slot.... +07:10:57 Sending to : +07:10:57 ============================================================================ +07:10:57 ============================================================================ +07:10:57 Slot Id : <26> +07:10:57 Transaction Type : REQUEST +07:10:57 Received From : +07:10:57 ============================================================================ +07:10:57 FNo. Len. Field Value +07:10:57 ============================================================================ +07:10:57 [ 1] [ 4] [0200] +07:10:57 [ 2] [ 16] [6688990103252803] +07:10:57 [ 3] [ 6] [011000] +07:10:57 [ 4] [ 12] [000040000000] +07:10:57 [ 7] [ 10] [0320071053] +07:10:57 [ 11] [ 6] [668060] +07:10:57 [ 12] [ 6] [071053] +07:10:57 [ 13] [ 4] [0320] +07:10:57 [ 15] [ 4] [0320] +07:10:57 [ 18] [ 4] [6011] +07:10:57 [ 22] [ 3] [900] +07:10:57 [ 25] [ 2] [02] +07:10:57 [ 28] [ 9] [D00002000] +07:10:57 [ 32] [ 6] [621354] +07:10:57 [ 35] [ 37] [6688990103252803=42121231280338500000] +07:10:57 [ 37] [ 12] [507904153734] +07:10:57 [ 41] [ 8] [20001000] +07:10:57 [ 42] [ 15] [NATIVE ] +07:10:57 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +07:10:57 [ 49] [ 3] [418] +07:10:57 [ 52] [ 16] [B897B0D8D67CF7A4] +07:10:57 ============================================================================ +07:10:57 + + +waiting on router queue for slot.... +07:10:57 Sending to : <4> +07:10:57 ============================================================================ +07:10:58 ============================================================================ +07:10:58 Slot Id : <20> +07:10:58 Transaction Type : RESPONSE +07:10:58 Received From : +07:10:58 ============================================================================ +07:10:58 FNo. Len. Field Value +07:10:58 ============================================================================ +07:10:58 [ 1] [ 4] [0210] +07:10:58 [ 2] [ 16] [1808930600028856] +07:10:58 [ 3] [ 6] [011000] +07:10:58 [ 4] [ 12] [000030000000] +07:10:58 [ 6] [ 12] [000030000000] +07:10:58 [ 7] [ 10] [0320071840] +07:10:58 [ 11] [ 6] [010407] +07:10:58 [ 12] [ 6] [071840] +07:10:58 [ 13] [ 4] [0320] +07:10:58 [ 14] [ 4] [1803] +07:10:58 [ 18] [ 4] [6011] +07:10:58 [ 19] [ 3] [418] +07:10:58 [ 22] [ 3] [021] +07:10:58 [ 32] [ 6] [220699] +07:10:58 [ 35] [ 27] [1808930600028856=1803500957] +07:10:58 [ 37] [ 12] [507900220644] +07:10:58 [ 38] [ 6] [010407] +07:10:58 [ 39] [ 2] [51] +07:10:58 [ 41] [ 8] [05000200] +07:10:58 [ 49] [ 3] [418] +07:10:58 [ 52] [ 16] [2628AD2ADFECEAA3] +07:10:58 ============================================================================ +07:10:58 Calculate Source COMM Id = 1 +07:10:58 ============================================================================ +07:10:58 + + +waiting on router queue for slot.... +07:10:59 ============================================================================ +07:10:59 Slot Id : <26> +07:10:59 Transaction Type : RESPONSE +07:10:59 Received From : +07:10:59 ============================================================================ +07:10:59 FNo. Len. Field Value +07:10:59 ============================================================================ +07:10:59 [ 1] [ 4] [0210] +07:10:59 [ 2] [ 16] [6688990103252803] +07:10:59 [ 3] [ 6] [011000] +07:10:59 [ 4] [ 12] [000040000000] +07:10:59 [ 11] [ 6] [668060] +07:10:59 [ 12] [ 6] [071053] +07:10:59 [ 15] [ 4] [0320] +07:10:59 [ 18] [ 4] [6011] +07:10:59 [ 32] [ 6] [621354] +07:10:59 [ 35] [ 37] [6688990103252803=42121231280338500000] +07:10:59 [ 37] [ 12] [507904153734] +07:10:59 [ 38] [ 6] [542808] +07:10:59 [ 39] [ 2] [00] +07:10:59 [ 41] [ 8] [20001000] +07:10:59 [ 49] [ 3] [418] +07:10:59 [ 54] [ 20] [1002418C000081873278] +07:10:59 ============================================================================ +07:10:59 Sending to : +07:10:59 ============================================================================ +07:10:59 + + +waiting on router queue for slot.... +07:11:00 ============================================================================ +07:11:00 Slot Id : <26> +07:11:00 Transaction Type : RESPONSE +07:11:00 Received From : +07:11:00 ============================================================================ +07:11:00 FNo. Len. Field Value +07:11:00 ============================================================================ +07:11:00 [ 1] [ 4] [0210] +07:11:00 [ 2] [ 16] [6688990103252803] +07:11:00 [ 3] [ 6] [011000] +07:11:00 [ 4] [ 12] [000040000000] +07:11:00 [ 11] [ 6] [668060] +07:11:00 [ 12] [ 6] [071053] +07:11:00 [ 15] [ 4] [0320] +07:11:00 [ 18] [ 4] [6011] +07:11:00 [ 32] [ 6] [621354] +07:11:00 [ 35] [ 37] [6688990103252803=42121231280338500000] +07:11:00 [ 37] [ 12] [507904153734] +07:11:00 [ 38] [ 6] [542808] +07:11:00 [ 39] [ 2] [00] +07:11:00 [ 41] [ 8] [20001000] +07:11:00 [ 49] [ 3] [418] +07:11:00 [ 54] [ 20] [1002418C000081873278] +07:11:00 ============================================================================ +07:11:00 Calculate Source COMM Id = 0 +07:11:00 ============================================================================ +07:11:00 + + +waiting on router queue for slot.... +07:11:06 ============================================================================ +07:11:06 Slot Id : <48> +07:11:06 Transaction Type : REQUEST +07:11:06 Received From : +07:11:06 ============================================================================ +07:11:06 FNo. Len. Field Value +07:11:06 ============================================================================ +07:11:06 [ 1] [ 4] [0800] +07:11:06 [ 7] [ 10] [0320121014] +07:11:06 [ 11] [ 6] [155094] +07:11:06 [ 70] [ 3] [301] +07:11:06 ============================================================================ +07:11:06 + + +waiting on router queue for slot.... +07:11:06 Sending to : +07:11:06 ============================================================================ +07:11:06 ============================================================================ +07:11:06 Slot Id : <48> +07:11:06 Transaction Type : RESPONSE +07:11:06 Received From : +07:11:06 ============================================================================ +07:11:06 FNo. Len. Field Value +07:11:06 ============================================================================ +07:11:06 [ 1] [ 4] [0810] +07:11:06 [ 7] [ 10] [0320121014] +07:11:06 [ 11] [ 6] [155094] +07:11:06 [ 39] [ 2] [00] +07:11:06 [ 70] [ 3] [301] +07:11:06 ============================================================================ +07:11:06 Calculate Source COMM Id = 2 +07:11:06 ============================================================================ +07:11:06 + + +waiting on router queue for slot.... +07:11:13 ============================================================================ +07:11:13 Slot Id : <46> +07:11:13 Transaction Type : REQUEST +07:11:13 Received From : +07:11:13 ============================================================================ +07:11:13 FNo. Len. Field Value +07:11:13 ============================================================================ +07:11:13 [ 1] [ 4] [0800] +07:11:13 [ 7] [ 10] [0320142301] +07:11:13 [ 11] [ 6] [072301] +07:11:13 [ 37] [ 12] [57907072301] +07:11:13 [ 70] [ 3] [301] +07:11:13 ============================================================================ +07:11:13 + + +waiting on router queue for slot.... +07:11:13 Sending to : +07:11:13 ============================================================================ +07:11:13 ============================================================================ +07:11:13 Slot Id : <46> +07:11:13 Transaction Type : RESPONSE +07:11:13 Received From : +07:11:13 ============================================================================ +07:11:13 FNo. Len. Field Value +07:11:13 ============================================================================ +07:11:13 [ 1] [ 4] [0810] +07:11:13 [ 7] [ 10] [0320142301] +07:11:13 [ 11] [ 6] [072301] +07:11:13 [ 37] [ 12] [579070723010] +07:11:13 [ 39] [ 2] [00] +07:11:13 [ 70] [ 3] [810] +07:11:13 ============================================================================ +07:11:13 Calculate Source COMM Id = 6 +07:11:13 ============================================================================ +07:11:13 + + +waiting on router queue for slot.... +07:11:20 ============================================================================ +07:11:20 Slot Id : <19> +07:11:20 Transaction Type : REQUEST +07:11:20 Received From : +07:11:20 ============================================================================ +07:11:20 FNo. Len. Field Value +07:11:20 ============================================================================ +07:11:20 [ 1] [ 4] [0800] +07:11:20 [ 7] [ 10] [0320000912] +07:11:20 [ 11] [ 6] [066924] +07:11:20 [ 37] [ 12] [57907066924] +07:11:20 [ 70] [ 3] [301] +07:11:20 ============================================================================ +07:11:20 + + +waiting on router queue for slot.... +07:11:20 Sending to : +07:11:20 ============================================================================ +07:11:20 ============================================================================ +07:11:20 Slot Id : <19> +07:11:20 Transaction Type : RESPONSE +07:11:20 Received From : +07:11:20 ============================================================================ +07:11:20 FNo. Len. Field Value +07:11:20 ============================================================================ +07:11:20 [ 1] [ 4] [0810] +07:11:20 [ 7] [ 10] [0320000912] +07:11:20 [ 11] [ 6] [066924] +07:11:20 [ 37] [ 12] [579070669240] +07:11:20 [ 39] [ 2] [00] +07:11:20 [ 70] [ 3] [810] +07:11:20 ============================================================================ +07:11:20 Calculate Source COMM Id = 4 +07:11:20 ============================================================================ +07:11:20 + + +waiting on router queue for slot.... +07:11:21 ============================================================================ +07:11:21 Slot Id : <69> +07:11:21 Transaction Type : REQUEST +07:11:21 Received From : +07:11:21 ============================================================================ +07:11:21 FNo. Len. Field Value +07:11:21 ============================================================================ +07:11:21 [ 1] [ 4] [0800] +07:11:21 [ 7] [ 10] [0320121029] +07:11:21 [ 11] [ 6] [155095] +07:11:21 [ 70] [ 3] [301] +07:11:21 ============================================================================ +07:11:21 + + +waiting on router queue for slot.... +07:11:21 Sending to : +07:11:21 ============================================================================ +07:11:21 ============================================================================ +07:11:21 Slot Id : <69> +07:11:21 Transaction Type : RESPONSE +07:11:21 Received From : +07:11:21 ============================================================================ +07:11:21 FNo. Len. Field Value +07:11:21 ============================================================================ +07:11:21 [ 1] [ 4] [0810] +07:11:21 [ 7] [ 10] [0320121029] +07:11:21 [ 11] [ 6] [155095] +07:11:21 [ 39] [ 2] [00] +07:11:21 [ 70] [ 3] [301] +07:11:21 ============================================================================ +07:11:21 Calculate Source COMM Id = 2 +07:11:21 ============================================================================ +07:11:21 + + +waiting on router queue for slot.... +07:11:30 ============================================================================ +07:11:30 Slot Id : <47> +07:11:30 Transaction Type : REQUEST +07:11:30 Received From : +07:11:30 ============================================================================ +07:11:30 FNo. Len. Field Value +07:11:30 ============================================================================ +07:11:30 [ 1] [ 4] [0200] +07:11:30 [ 2] [ 16] [6688990601594508] +07:11:30 [ 3] [ 6] [302000] +07:11:30 [ 7] [ 10] [0320001038] +07:11:30 [ 11] [ 6] [266726] +07:11:30 [ 12] [ 6] [071038] +07:11:30 [ 13] [ 4] [0320] +07:11:30 [ 14] [ 4] [4110] +07:11:30 [ 15] [ 4] [0320] +07:11:30 [ 18] [ 4] [6011] +07:11:30 [ 19] [ 3] [418] +07:11:30 [ 22] [ 3] [021] +07:11:30 [ 25] [ 2] [01] +07:11:30 [ 32] [ 6] [180893] +07:11:30 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:11:30 [ 37] [ 12] [507900266726] +07:11:30 [ 41] [ 8] [0466PSLB] +07:11:30 [ 42] [ 15] [999999 ] +07:11:30 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:11:30 [ 49] [ 3] [418] +07:11:30 [ 52] [ 16] [EAA53153AB7D7A0B] +07:11:30 ============================================================================ +07:11:30 + + +waiting on router queue for slot.... +07:11:30 Sending to : +07:11:30 ============================================================================ +07:11:30 Sending to : +07:11:30 ============================================================================ +07:11:30 ============================================================================ +07:11:30 Slot Id : <58> +07:11:30 Transaction Type : REQUEST +07:11:30 Received From : +07:11:30 ============================================================================ +07:11:30 FNo. Len. Field Value +07:11:30 ============================================================================ +07:11:30 [ 1] [ 4] [0800] +07:11:30 [ 2] [ 5] [02531] +07:11:30 [ 3] [ 6] [579078] +07:11:30 [ 7] [ 10] [0320001130] +07:11:30 [ 11] [ 6] [806829] +07:11:30 [ 15] [ 10] [0320001130] +07:11:30 [ 37] [ 11] [57907806829] +07:11:30 [ 70] [ 3] [001] +07:11:30 ============================================================================ +07:11:30 + + +waiting on router queue for slot.... +07:11:30 ============================================================================ +07:11:30 Slot Id : <58> +07:11:30 Transaction Type : RESPONSE +07:11:30 Received From : +07:11:30 ============================================================================ +07:11:30 FNo. Len. Field Value +07:11:30 ============================================================================ +07:11:30 [ 1] [ 4] [0810] +07:11:30 [ 7] [ 10] [0320001130] +07:11:30 [ 11] [ 6] [806829] +07:11:30 [ 15] [ 4] [0320] +07:11:30 [ 37] [ 12] [57907806829] +07:11:30 [ 39] [ 2] [00] +07:11:30 [ 70] [ 3] [001] +07:11:30 ============================================================================ +07:11:30 Sending to : +07:11:30 ============================================================================ +07:11:30 + + +waiting on router queue for slot.... +07:11:30 ============================================================================ +07:11:30 Slot Id : <47> +07:11:30 Transaction Type : REQUEST +07:11:30 Received From : +07:11:30 ============================================================================ +07:11:30 FNo. Len. Field Value +07:11:30 ============================================================================ +07:11:30 [ 1] [ 4] [0200] +07:11:30 [ 2] [ 16] [6688990601594508] +07:11:30 [ 3] [ 6] [302000] +07:11:30 [ 7] [ 10] [0320001038] +07:11:30 [ 11] [ 6] [266726] +07:11:30 [ 12] [ 6] [071038] +07:11:30 [ 13] [ 4] [0320] +07:11:30 [ 14] [ 4] [4110] +07:11:30 [ 15] [ 4] [0320] +07:11:30 [ 18] [ 4] [6011] +07:11:30 [ 19] [ 3] [418] +07:11:30 [ 22] [ 3] [021] +07:11:30 [ 25] [ 2] [01] +07:11:30 [ 32] [ 6] [180893] +07:11:30 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:11:30 [ 37] [ 12] [507900266726] +07:11:30 [ 41] [ 8] [0466PSLB] +07:11:30 [ 42] [ 15] [999999 ] +07:11:30 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:11:30 [ 49] [ 3] [418] +07:11:30 [ 52] [ 16] [EAA53153AB7D7A0B] +07:11:30 ============================================================================ +07:11:30 + + +waiting on router queue for slot.... +07:11:30 Sending to : +07:11:30 ============================================================================ +07:11:30 ============================================================================ +07:11:30 Slot Id : <47> +07:11:30 Transaction Type : REQUEST +07:11:30 Received From : +07:11:30 ============================================================================ +07:11:30 FNo. Len. Field Value +07:11:30 ============================================================================ +07:11:30 [ 1] [ 4] [0200] +07:11:30 [ 2] [ 16] [6688990601594508] +07:11:30 [ 3] [ 6] [302000] +07:11:30 [ 7] [ 10] [0320001038] +07:11:30 [ 11] [ 6] [266726] +07:11:30 [ 12] [ 6] [071038] +07:11:30 [ 13] [ 4] [0320] +07:11:30 [ 14] [ 4] [4110] +07:11:30 [ 15] [ 4] [0320] +07:11:30 [ 18] [ 4] [6011] +07:11:30 [ 19] [ 3] [418] +07:11:30 [ 22] [ 3] [021] +07:11:30 [ 25] [ 2] [01] +07:11:30 [ 32] [ 6] [180893] +07:11:30 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:11:30 [ 37] [ 12] [507900266726] +07:11:30 [ 41] [ 8] [0466PSLB] +07:11:30 [ 42] [ 15] [999999 ] +07:11:30 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:11:30 [ 49] [ 3] [418] +07:11:30 [ 52] [ 16] [41A7D8B9858827FD] +07:11:30 ============================================================================ +07:11:30 + + +waiting on router queue for slot.... +07:11:30 Sending to : <0> +07:11:30 ============================================================================ +07:11:30 ============================================================================ +07:11:30 Slot Id : <47> +07:11:30 Transaction Type : RESPONSE +07:11:30 Received From : +07:11:30 ============================================================================ +07:11:30 FNo. Len. Field Value +07:11:30 ============================================================================ +07:11:30 [ 1] [ 4] [0210] +07:11:30 [ 2] [ 16] [6688990601594508] +07:11:30 [ 3] [ 6] [302000] +07:11:30 [ 4] [ 12] [000000000000] +07:11:30 [ 7] [ 10] [0320001038] +07:11:30 [ 11] [ 6] [266726] +07:11:30 [ 12] [ 6] [071038] +07:11:30 [ 13] [ 4] [0320] +07:11:30 [ 15] [ 4] [0320] +07:11:30 [ 18] [ 4] [6011] +07:11:30 [ 19] [ 3] [418] +07:11:30 [ 22] [ 3] [021] +07:11:30 [ 32] [ 6] [180893] +07:11:30 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:11:30 [ 37] [ 12] [507900266726] +07:11:30 [ 39] [ 2] [14] +07:11:30 [ 41] [ 8] [0466PSLB] +07:11:30 [ 49] [ 3] [418] +07:11:30 ============================================================================ +07:11:30 Sending to : +07:11:30 ============================================================================ +07:11:30 + + +waiting on router queue for slot.... +07:11:31 ============================================================================ +07:11:31 Slot Id : <78> +07:11:31 Transaction Type : REQUEST +07:11:31 Received From : +07:11:31 ============================================================================ +07:11:31 FNo. Len. Field Value +07:11:31 ============================================================================ +07:11:31 [ 1] [ 4] [0200] +07:11:31 [ 2] [ 16] [1808930600028856] +07:11:31 [ 3] [ 6] [311000] +07:11:31 [ 4] [ 12] [000000000000] +07:11:31 [ 7] [ 10] [0320071918] +07:11:31 [ 11] [ 6] [010410] +07:11:31 [ 12] [ 6] [071918] +07:11:31 [ 13] [ 4] [0320] +07:11:31 [ 14] [ 4] [1803] +07:11:31 [ 15] [ 4] [0320] +07:11:31 [ 18] [ 4] [6011] +07:11:31 [ 22] [ 3] [900] +07:11:31 [ 25] [ 2] [02] +07:11:31 [ 28] [ 9] [000000000] +07:11:31 [ 32] [ 6] [220699] +07:11:31 [ 35] [ 27] [1808930600028856=1803500957] +07:11:31 [ 37] [ 12] [507900220646] +07:11:31 [ 41] [ 8] [05000200] +07:11:31 [ 42] [ 15] [APTRA ] +07:11:31 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:11:31 [ 49] [ 3] [418] +07:11:31 [ 52] [ 16] [8BA6A9B5A7BF1DA2] +07:11:31 ============================================================================ +07:11:31 + + +waiting on router queue for slot.... +07:11:31 Sending to : +07:11:31 ============================================================================ +07:11:31 Sending to : +07:11:31 ============================================================================ +07:11:31 ============================================================================ +07:11:31 Slot Id : <78> +07:11:31 Transaction Type : REQUEST +07:11:31 Received From : +07:11:31 ============================================================================ +07:11:31 FNo. Len. Field Value +07:11:31 ============================================================================ +07:11:31 [ 1] [ 4] [0200] +07:11:31 [ 2] [ 16] [1808930600028856] +07:11:31 [ 3] [ 6] [311000] +07:11:31 [ 4] [ 12] [000000000000] +07:11:31 [ 7] [ 10] [0320071918] +07:11:31 [ 11] [ 6] [010410] +07:11:31 [ 12] [ 6] [071918] +07:11:31 [ 13] [ 4] [0320] +07:11:31 [ 14] [ 4] [1803] +07:11:31 [ 15] [ 4] [0320] +07:11:31 [ 18] [ 4] [6011] +07:11:31 [ 22] [ 3] [900] +07:11:31 [ 25] [ 2] [02] +07:11:31 [ 28] [ 9] [000000000] +07:11:31 [ 32] [ 6] [220699] +07:11:31 [ 35] [ 27] [1808930600028856=1803500957] +07:11:31 [ 37] [ 12] [507900220646] +07:11:31 [ 41] [ 8] [05000200] +07:11:31 [ 42] [ 15] [APTRA ] +07:11:31 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:11:31 [ 49] [ 3] [418] +07:11:31 [ 52] [ 16] [8BA6A9B5A7BF1DA2] +07:11:31 ============================================================================ +07:11:31 + + +waiting on router queue for slot.... +07:11:31 Sending to : +07:11:31 ============================================================================ +07:11:31 ============================================================================ +07:11:31 Slot Id : <78> +07:11:31 Transaction Type : REQUEST +07:11:31 Received From : +07:11:31 ============================================================================ +07:11:31 FNo. Len. Field Value +07:11:31 ============================================================================ +07:11:31 [ 1] [ 4] [0200] +07:11:31 [ 2] [ 16] [1808930600028856] +07:11:31 [ 3] [ 6] [311000] +07:11:31 [ 4] [ 12] [000000000000] +07:11:31 [ 7] [ 10] [0320071918] +07:11:31 [ 11] [ 6] [010410] +07:11:31 [ 12] [ 6] [071918] +07:11:31 [ 13] [ 4] [0320] +07:11:31 [ 14] [ 4] [1803] +07:11:31 [ 15] [ 4] [0320] +07:11:31 [ 18] [ 4] [6011] +07:11:31 [ 22] [ 3] [900] +07:11:31 [ 25] [ 2] [02] +07:11:31 [ 28] [ 9] [000000000] +07:11:31 [ 32] [ 6] [220699] +07:11:31 [ 35] [ 27] [1808930600028856=1803500957] +07:11:31 [ 37] [ 12] [507900220646] +07:11:31 [ 41] [ 8] [05000200] +07:11:31 [ 42] [ 15] [APTRA ] +07:11:31 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:11:31 [ 49] [ 3] [418] +07:11:31 [ 52] [ 16] [2628AD2ADFECEAA3] +07:11:31 ============================================================================ +07:11:31 + + +waiting on router queue for slot.... +07:11:31 Sending to : <2> +07:11:31 ============================================================================ +07:11:32 ============================================================================ +07:11:32 Slot Id : <47> +07:11:32 Transaction Type : RESPONSE +07:11:32 Received From : +07:11:32 ============================================================================ +07:11:32 FNo. Len. Field Value +07:11:32 ============================================================================ +07:11:32 [ 1] [ 4] [0210] +07:11:32 [ 2] [ 16] [6688990601594508] +07:11:32 [ 3] [ 6] [302000] +07:11:32 [ 4] [ 12] [000000000000] +07:11:32 [ 7] [ 10] [0320001038] +07:11:32 [ 11] [ 6] [266726] +07:11:32 [ 12] [ 6] [071038] +07:11:32 [ 13] [ 4] [0320] +07:11:32 [ 15] [ 4] [0320] +07:11:32 [ 18] [ 4] [6011] +07:11:32 [ 19] [ 3] [418] +07:11:32 [ 22] [ 3] [021] +07:11:32 [ 32] [ 6] [180893] +07:11:32 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:11:32 [ 37] [ 12] [507900266726] +07:11:32 [ 39] [ 2] [14] +07:11:32 [ 41] [ 8] [0466PSLB] +07:11:32 [ 49] [ 3] [418] +07:11:32 ============================================================================ +07:11:32 Calculate Source COMM Id = 2 +07:11:32 ============================================================================ +07:11:32 + + +waiting on router queue for slot.... +07:11:32 ============================================================================ +07:11:32 Slot Id : <78> +07:11:32 Transaction Type : RESPONSE +07:11:32 Received From : +07:11:32 ============================================================================ +07:11:32 FNo. Len. Field Value +07:11:32 ============================================================================ +07:11:32 [ 1] [ 4] [0210] +07:11:32 [ 2] [ 16] [1808930600028856] +07:11:32 [ 3] [ 6] [301000] +07:11:32 [ 7] [ 10] [0320071918] +07:11:32 [ 11] [ 6] [010410] +07:11:32 [ 12] [ 6] [071918] +07:11:32 [ 13] [ 4] [0320] +07:11:32 [ 14] [ 4] [1803] +07:11:32 [ 19] [ 3] [418] +07:11:32 [ 32] [ 6] [220699] +07:11:32 [ 37] [ 12] [507900220646] +07:11:32 [ 38] [ 6] [010410] +07:11:32 [ 39] [ 2] [00] +07:11:32 [ 41] [ 8] [05000200] +07:11:32 [ 49] [ 3] [418] +07:11:32 [ 52] [ 16] [2628AD2ADFECEAA3] +07:11:32 [ 54] [ 20] [1002418C000031941300] +07:11:32 ============================================================================ +07:11:32 Sending to : +07:11:32 ============================================================================ +07:11:32 + + +waiting on router queue for slot.... +07:11:34 ============================================================================ +07:11:34 Slot Id : <78> +07:11:34 Transaction Type : RESPONSE +07:11:34 Received From : +07:11:34 ============================================================================ +07:11:34 FNo. Len. Field Value +07:11:34 ============================================================================ +07:11:34 [ 1] [ 4] [0210] +07:11:34 [ 2] [ 16] [1808930600028856] +07:11:34 [ 3] [ 6] [301000] +07:11:34 [ 7] [ 10] [0320071918] +07:11:34 [ 11] [ 6] [010410] +07:11:34 [ 12] [ 6] [071918] +07:11:34 [ 13] [ 4] [0320] +07:11:34 [ 14] [ 4] [1803] +07:11:34 [ 19] [ 3] [418] +07:11:34 [ 32] [ 6] [220699] +07:11:34 [ 37] [ 12] [507900220646] +07:11:34 [ 38] [ 6] [010410] +07:11:34 [ 39] [ 2] [00] +07:11:34 [ 41] [ 8] [05000200] +07:11:34 [ 49] [ 3] [418] +07:11:34 [ 52] [ 16] [2628AD2ADFECEAA3] +07:11:34 [ 54] [ 20] [1002418C000031941300] +07:11:34 ============================================================================ +07:11:34 Calculate Source COMM Id = 1 +07:11:34 ============================================================================ +07:11:34 + + +waiting on router queue for slot.... +07:11:42 ============================================================================ +07:11:42 Slot Id : <54> +07:11:42 Transaction Type : REQUEST +07:11:42 Received From : +07:11:42 ============================================================================ +07:11:42 FNo. Len. Field Value +07:11:42 ============================================================================ +07:11:42 [ 1] [ 4] [0800] +07:11:42 [ 7] [ 10] [0320121050] +07:11:42 [ 11] [ 6] [155096] +07:11:42 [ 70] [ 3] [301] +07:11:42 ============================================================================ +07:11:42 + + +waiting on router queue for slot.... +07:11:42 Sending to : +07:11:42 ============================================================================ +07:11:42 ============================================================================ +07:11:42 Slot Id : <54> +07:11:42 Transaction Type : RESPONSE +07:11:42 Received From : +07:11:42 ============================================================================ +07:11:42 FNo. Len. Field Value +07:11:42 ============================================================================ +07:11:42 [ 1] [ 4] [0810] +07:11:42 [ 7] [ 10] [0320121050] +07:11:42 [ 11] [ 6] [155096] +07:11:42 [ 39] [ 2] [00] +07:11:42 [ 70] [ 3] [301] +07:11:42 ============================================================================ +07:11:42 Calculate Source COMM Id = 2 +07:11:42 ============================================================================ +07:11:42 + + +waiting on router queue for slot.... +07:11:53 ============================================================================ +07:11:53 Slot Id : <24> +07:11:53 Transaction Type : REQUEST +07:11:53 Received From : +07:11:53 ============================================================================ +07:11:53 FNo. Len. Field Value +07:11:53 ============================================================================ +07:11:53 [ 1] [ 4] [0200] +07:11:53 [ 2] [ 16] [2206990000095760] +07:11:53 [ 3] [ 6] [010000] +07:11:53 [ 4] [ 12] [000100000000] +07:11:53 [ 7] [ 10] [0320071149] +07:11:53 [ 11] [ 6] [668178] +07:11:53 [ 12] [ 6] [071149] +07:11:53 [ 13] [ 4] [0320] +07:11:53 [ 15] [ 4] [0320] +07:11:53 [ 18] [ 4] [6011] +07:11:53 [ 22] [ 3] [900] +07:11:53 [ 25] [ 2] [02] +07:11:53 [ 28] [ 9] [D00002000] +07:11:53 [ 32] [ 6] [621354] +07:11:53 [ 35] [ 32] [2206990000095760=971012617412087] +07:11:53 [ 37] [ 12] [507904119584] +07:11:53 [ 41] [ 8] [08000800] +07:11:53 [ 42] [ 15] [NATIVE ] +07:11:53 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:11:53 [ 49] [ 3] [418] +07:11:53 [ 52] [ 16] [41CB461653C6C26A] +07:11:53 ============================================================================ +07:11:53 + + +waiting on router queue for slot.... +07:11:53 ============================================================================ +07:11:53 Slot Id : <81> +07:11:53 Transaction Type : REQUEST +07:11:53 Received From : +07:11:53 ============================================================================ +07:11:53 FNo. Len. Field Value +07:11:53 ============================================================================ +07:11:53 [ 1] [ 4] [0800] +07:11:53 [ 7] [ 10] [0320121101] +07:11:53 [ 11] [ 6] [155097] +07:11:53 [ 70] [ 3] [301] +07:11:53 ============================================================================ +07:11:53 Sending to : +07:11:53 ============================================================================ +07:11:53 + + +waiting on router queue for slot.... +07:11:53 Sending to : +07:11:53 ============================================================================ +07:11:53 Sending to : +07:11:53 ============================================================================ +07:11:53 ============================================================================ +07:11:53 Slot Id : <81> +07:11:53 Transaction Type : RESPONSE +07:11:53 Received From : +07:11:53 ============================================================================ +07:11:53 FNo. Len. Field Value +07:11:53 ============================================================================ +07:11:53 [ 1] [ 4] [0810] +07:11:53 [ 7] [ 10] [0320121101] +07:11:53 [ 11] [ 6] [155097] +07:11:53 [ 39] [ 2] [00] +07:11:53 [ 70] [ 3] [301] +07:11:53 ============================================================================ +07:11:53 Calculate Source COMM Id = 2 +07:11:53 ============================================================================ +07:11:53 + + +waiting on router queue for slot.... +07:11:53 ============================================================================ +07:11:53 Slot Id : <24> +07:11:53 Transaction Type : REQUEST +07:11:53 Received From : +07:11:53 ============================================================================ +07:11:53 FNo. Len. Field Value +07:11:53 ============================================================================ +07:11:53 [ 1] [ 4] [0200] +07:11:53 [ 2] [ 16] [2206990000095760] +07:11:53 [ 3] [ 6] [010000] +07:11:53 [ 4] [ 12] [000100000000] +07:11:53 [ 7] [ 10] [0320071149] +07:11:53 [ 11] [ 6] [668178] +07:11:53 [ 12] [ 6] [071149] +07:11:53 [ 13] [ 4] [0320] +07:11:53 [ 15] [ 4] [0320] +07:11:53 [ 18] [ 4] [6011] +07:11:53 [ 22] [ 3] [900] +07:11:53 [ 25] [ 2] [02] +07:11:53 [ 28] [ 9] [D00002000] +07:11:53 [ 32] [ 6] [621354] +07:11:53 [ 35] [ 32] [2206990000095760=971012617412087] +07:11:53 [ 37] [ 12] [507904119584] +07:11:53 [ 41] [ 8] [08000800] +07:11:53 [ 42] [ 15] [NATIVE ] +07:11:53 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:11:53 [ 49] [ 3] [418] +07:11:53 [ 52] [ 16] [41CB461653C6C26A] +07:11:53 ============================================================================ +07:11:53 + + +waiting on router queue for slot.... +07:11:53 Sending to : +07:11:53 ============================================================================ +07:11:53 ============================================================================ +07:11:53 Slot Id : <24> +07:11:53 Transaction Type : REQUEST +07:11:53 Received From : +07:11:53 ============================================================================ +07:11:53 FNo. Len. Field Value +07:11:53 ============================================================================ +07:11:53 [ 1] [ 4] [0200] +07:11:53 [ 2] [ 16] [2206990000095760] +07:11:53 [ 3] [ 6] [010000] +07:11:53 [ 4] [ 12] [000100000000] +07:11:53 [ 7] [ 10] [0320071149] +07:11:53 [ 11] [ 6] [668178] +07:11:53 [ 12] [ 6] [071149] +07:11:53 [ 13] [ 4] [0320] +07:11:53 [ 15] [ 4] [0320] +07:11:53 [ 18] [ 4] [6011] +07:11:53 [ 22] [ 3] [900] +07:11:53 [ 25] [ 2] [02] +07:11:53 [ 28] [ 9] [D00002000] +07:11:53 [ 32] [ 6] [621354] +07:11:53 [ 35] [ 32] [2206990000095760=971012617412087] +07:11:53 [ 37] [ 12] [507904119584] +07:11:53 [ 41] [ 8] [08000800] +07:11:53 [ 42] [ 15] [NATIVE ] +07:11:53 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +07:11:53 [ 49] [ 3] [418] +07:11:53 [ 52] [ 16] [F2A26BA521B44DAD] +07:11:53 ============================================================================ +07:11:53 + + +waiting on router queue for slot.... +07:11:53 Sending to : <1> +07:11:53 ============================================================================ +07:11:55 ============================================================================ +07:11:55 Slot Id : <24> +07:11:55 Transaction Type : RESPONSE +07:11:55 Received From : +07:11:55 ============================================================================ +07:11:55 FNo. Len. Field Value +07:11:55 ============================================================================ +07:11:55 [ 1] [ 4] [0210] +07:11:55 [ 2] [ 16] [2206990000095760] +07:11:55 [ 3] [ 6] [010000] +07:11:55 [ 4] [ 12] [000100000000] +07:11:55 [ 7] [ 10] [0320071149] +07:11:55 [ 11] [ 6] [668178] +07:11:55 [ 12] [ 6] [071149] +07:11:55 [ 13] [ 4] [0320] +07:11:55 [ 15] [ 4] [0320] +07:11:55 [ 18] [ 4] [6011] +07:11:55 [ 32] [ 6] [621354] +07:11:55 [ 35] [ 32] [2206990000095760=971012617412087] +07:11:55 [ 37] [ 12] [507904119584] +07:11:55 [ 38] [ 6] [142166] +07:11:55 [ 39] [ 2] [00] +07:11:55 [ 41] [ 8] [08000800] +07:11:55 [ 49] [ 3] [418] +07:11:55 [ 54] [ 40] [0001418C0000281757000002418C000028175700] +07:11:55 ============================================================================ +07:11:55 Sending to : +07:11:55 ============================================================================ +07:11:55 + + +waiting on router queue for slot.... +07:11:57 ============================================================================ +07:11:57 Slot Id : <24> +07:11:57 Transaction Type : RESPONSE +07:11:57 Received From : +07:11:57 ============================================================================ +07:11:57 FNo. Len. Field Value +07:11:57 ============================================================================ +07:11:57 [ 1] [ 4] [0210] +07:11:57 [ 2] [ 16] [2206990000095760] +07:11:57 [ 3] [ 6] [010000] +07:11:57 [ 4] [ 12] [000100000000] +07:11:57 [ 7] [ 10] [0320071149] +07:11:57 [ 11] [ 6] [668178] +07:11:57 [ 12] [ 6] [071149] +07:11:57 [ 13] [ 4] [0320] +07:11:57 [ 15] [ 4] [0320] +07:11:57 [ 18] [ 4] [6011] +07:11:57 [ 32] [ 6] [621354] +07:11:57 [ 35] [ 32] [2206990000095760=971012617412087] +07:11:57 [ 37] [ 12] [507904119584] +07:11:57 [ 38] [ 6] [142166] +07:11:57 [ 39] [ 2] [00] +07:11:57 [ 41] [ 8] [08000800] +07:11:57 [ 49] [ 3] [418] +07:11:57 [ 54] [ 40] [0001418C0000281757000002418C000028175700] +07:11:57 ============================================================================ +07:11:57 Calculate Source COMM Id = 0 +07:11:57 ============================================================================ +07:11:57 + + +waiting on router queue for slot.... +07:11:57 ============================================================================ +07:11:57 Slot Id : <57> +07:11:57 Transaction Type : REQUEST +07:11:57 Received From : +07:11:57 ============================================================================ +07:11:57 FNo. Len. Field Value +07:11:57 ============================================================================ +07:11:57 [ 1] [ 4] [0200] +07:11:57 [ 2] [ 16] [6213545000115620] +07:11:57 [ 3] [ 6] [010000] +07:11:57 [ 4] [ 12] [000100000000] +07:11:57 [ 7] [ 10] [0320070949] +07:11:57 [ 11] [ 6] [929926] +07:11:57 [ 12] [ 6] [070949] +07:11:57 [ 13] [ 4] [0320] +07:11:57 [ 15] [ 4] [0320] +07:11:57 [ 18] [ 4] [6011] +07:11:57 [ 19] [ 3] [418] +07:11:57 [ 22] [ 3] [021] +07:11:57 [ 25] [ 2] [01] +07:11:57 [ 28] [ 9] [D00002000] +07:11:57 [ 32] [ 6] [668899] +07:11:57 [ 35] [ 32] [6213545000115620=491212011562258] +07:11:57 [ 37] [ 12] [507900858189] +07:11:57 [ 41] [ 8] [03015004] +07:11:57 [ 42] [ 15] [APT ] +07:11:57 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +07:11:57 [ 49] [ 3] [418] +07:11:57 [ 52] [ 16] [4DBDADDE68C16894] +07:11:57 ============================================================================ +07:11:57 + + +waiting on router queue for slot.... +07:11:57 Sending to : +07:11:57 ============================================================================ +07:11:57 Sending to : +07:11:57 ============================================================================ +07:11:57 ============================================================================ +07:11:57 Slot Id : <57> +07:11:57 Transaction Type : REQUEST +07:11:57 Received From : +07:11:57 ============================================================================ +07:11:57 FNo. Len. Field Value +07:11:57 ============================================================================ +07:11:57 [ 1] [ 4] [0200] +07:11:57 [ 2] [ 16] [6213545000115620] +07:11:57 [ 3] [ 6] [010000] +07:11:57 [ 4] [ 12] [000100000000] +07:11:57 [ 7] [ 10] [0320070949] +07:11:57 [ 11] [ 6] [929926] +07:11:57 [ 12] [ 6] [070949] +07:11:57 [ 13] [ 4] [0320] +07:11:57 [ 15] [ 4] [0320] +07:11:57 [ 18] [ 4] [6011] +07:11:57 [ 19] [ 3] [418] +07:11:57 [ 22] [ 3] [021] +07:11:57 [ 25] [ 2] [01] +07:11:57 [ 28] [ 9] [D00002000] +07:11:57 [ 32] [ 6] [668899] +07:11:57 [ 35] [ 32] [6213545000115620=491212011562258] +07:11:57 [ 37] [ 12] [507900858189] +07:11:57 [ 41] [ 8] [03015004] +07:11:57 [ 42] [ 15] [APT ] +07:11:57 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +07:11:57 [ 49] [ 3] [418] +07:11:57 [ 52] [ 16] [4DBDADDE68C16894] +07:11:57 ============================================================================ +07:11:57 + + +waiting on router queue for slot.... +07:11:57 Sending to : +07:11:57 ============================================================================ +07:11:57 ============================================================================ +07:11:57 Slot Id : <57> +07:11:57 Transaction Type : REQUEST +07:11:57 Received From : +07:11:57 ============================================================================ +07:11:57 FNo. Len. Field Value +07:11:57 ============================================================================ +07:11:57 [ 1] [ 4] [0200] +07:11:57 [ 2] [ 16] [6213545000115620] +07:11:57 [ 3] [ 6] [010000] +07:11:57 [ 4] [ 12] [000100000000] +07:11:57 [ 7] [ 10] [0320070949] +07:11:57 [ 11] [ 6] [929926] +07:11:57 [ 12] [ 6] [070949] +07:11:57 [ 13] [ 4] [0320] +07:11:57 [ 15] [ 4] [0320] +07:11:57 [ 18] [ 4] [6011] +07:11:57 [ 19] [ 3] [418] +07:11:57 [ 22] [ 3] [021] +07:11:57 [ 25] [ 2] [01] +07:11:57 [ 28] [ 9] [D00002000] +07:11:57 [ 32] [ 6] [668899] +07:11:57 [ 35] [ 32] [6213545000115620=491212011562258] +07:11:57 [ 37] [ 12] [507900858189] +07:11:57 [ 41] [ 8] [03015004] +07:11:57 [ 42] [ 15] [APT ] +07:11:57 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +07:11:57 [ 49] [ 3] [418] +07:11:57 [ 52] [ 16] [16B7D9873F160EF4] +07:11:57 ============================================================================ +07:11:57 + + +waiting on router queue for slot.... +07:11:57 Sending to : <0> +07:11:57 ============================================================================ +07:11:58 ============================================================================ +07:11:58 Slot Id : <57> +07:11:58 Transaction Type : RESPONSE +07:11:58 Received From : +07:11:58 ============================================================================ +07:11:58 FNo. Len. Field Value +07:11:58 ============================================================================ +07:11:58 [ 1] [ 4] [0210] +07:11:58 [ 2] [ 16] [6213545000115620] +07:11:58 [ 3] [ 6] [010000] +07:11:58 [ 4] [ 12] [000100000000] +07:11:58 [ 7] [ 10] [0320070949] +07:11:58 [ 11] [ 6] [929926] +07:11:58 [ 12] [ 6] [070949] +07:11:58 [ 13] [ 4] [0320] +07:11:58 [ 15] [ 4] [0320] +07:11:58 [ 18] [ 4] [6011] +07:11:58 [ 19] [ 3] [418] +07:11:58 [ 32] [ 6] [668899] +07:11:58 [ 35] [ 32] [6213545000115620=491212011562258] +07:11:58 [ 37] [ 12] [507900858189] +07:11:58 [ 38] [ 6] [319992] +07:11:58 [ 39] [ 2] [00] +07:11:58 [ 41] [ 8] [03015004] +07:11:58 [ 49] [ 3] [418] +07:11:58 [ 54] [ 40] [0001418C0000104339150002418C000010433915] +07:11:58 ============================================================================ +07:11:58 Sending to : +07:11:58 ============================================================================ +07:11:58 + + +waiting on router queue for slot.... +07:11:59 ============================================================================ +07:11:59 Slot Id : <57> +07:11:59 Transaction Type : RESPONSE +07:11:59 Received From : +07:11:59 ============================================================================ +07:11:59 FNo. Len. Field Value +07:11:59 ============================================================================ +07:11:59 [ 1] [ 4] [0210] +07:11:59 [ 2] [ 16] [6213545000115620] +07:11:59 [ 3] [ 6] [010000] +07:11:59 [ 4] [ 12] [000100000000] +07:11:59 [ 7] [ 10] [0320070949] +07:11:59 [ 11] [ 6] [929926] +07:11:59 [ 12] [ 6] [070949] +07:11:59 [ 13] [ 4] [0320] +07:11:59 [ 15] [ 4] [0320] +07:11:59 [ 18] [ 4] [6011] +07:11:59 [ 19] [ 3] [418] +07:11:59 [ 32] [ 6] [668899] +07:11:59 [ 35] [ 32] [6213545000115620=491212011562258] +07:11:59 [ 37] [ 12] [507900858189] +07:11:59 [ 38] [ 6] [319992] +07:11:59 [ 39] [ 2] [00] +07:11:59 [ 41] [ 8] [03015004] +07:11:59 [ 49] [ 3] [418] +07:11:59 [ 54] [ 40] [0001418C0000104339150002418C000010433915] +07:11:59 ============================================================================ +07:11:59 Calculate Source COMM Id = 4 +07:11:59 ============================================================================ +07:11:59 + + +waiting on router queue for slot.... +07:12:05 ============================================================================ +07:12:05 Slot Id : <34> +07:12:05 Transaction Type : REQUEST +07:12:05 Received From : +07:12:05 ============================================================================ +07:12:05 FNo. Len. Field Value +07:12:05 ============================================================================ +07:12:05 [ 1] [ 4] [0800] +07:12:05 [ 7] [ 10] [0320121113] +07:12:05 [ 11] [ 6] [155098] +07:12:05 [ 70] [ 3] [301] +07:12:05 ============================================================================ +07:12:05 + + +waiting on router queue for slot.... +07:12:05 Sending to : +07:12:05 ============================================================================ +07:12:05 ============================================================================ +07:12:05 Slot Id : <34> +07:12:05 Transaction Type : RESPONSE +07:12:05 Received From : +07:12:05 ============================================================================ +07:12:05 FNo. Len. Field Value +07:12:05 ============================================================================ +07:12:05 [ 1] [ 4] [0810] +07:12:05 [ 7] [ 10] [0320121113] +07:12:05 [ 11] [ 6] [155098] +07:12:05 [ 39] [ 2] [00] +07:12:05 [ 70] [ 3] [301] +07:12:05 ============================================================================ +07:12:05 Calculate Source COMM Id = 2 +07:12:05 ============================================================================ +07:12:05 + + +waiting on router queue for slot.... +07:12:06 ============================================================================ +07:12:06 Slot Id : <42> +07:12:06 Transaction Type : REQUEST +07:12:06 Received From : +07:12:06 ============================================================================ +07:12:06 FNo. Len. Field Value +07:12:06 ============================================================================ +07:12:06 [ 1] [ 4] [0200] +07:12:06 [ 2] [ 16] [6688990601594508] +07:12:06 [ 3] [ 6] [301000] +07:12:06 [ 7] [ 10] [0320001113] +07:12:06 [ 11] [ 6] [266727] +07:12:06 [ 12] [ 6] [071113] +07:12:06 [ 13] [ 4] [0320] +07:12:06 [ 14] [ 4] [4110] +07:12:06 [ 15] [ 4] [0320] +07:12:06 [ 18] [ 4] [6011] +07:12:06 [ 19] [ 3] [418] +07:12:06 [ 22] [ 3] [021] +07:12:06 [ 25] [ 2] [01] +07:12:06 [ 32] [ 6] [180893] +07:12:06 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:12:06 [ 37] [ 12] [507900266727] +07:12:06 [ 41] [ 8] [0466PSLB] +07:12:06 [ 42] [ 15] [999999 ] +07:12:06 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:12:06 [ 49] [ 3] [418] +07:12:06 [ 52] [ 16] [EAA53153AB7D7A0B] +07:12:06 ============================================================================ +07:12:06 + + +waiting on router queue for slot.... +07:12:06 Sending to : +07:12:06 ============================================================================ +07:12:06 Sending to : +07:12:06 ============================================================================ +07:12:06 ============================================================================ +07:12:06 Slot Id : <42> +07:12:06 Transaction Type : REQUEST +07:12:06 Received From : +07:12:06 ============================================================================ +07:12:06 FNo. Len. Field Value +07:12:06 ============================================================================ +07:12:06 [ 1] [ 4] [0200] +07:12:06 [ 2] [ 16] [6688990601594508] +07:12:06 [ 3] [ 6] [301000] +07:12:06 [ 7] [ 10] [0320001113] +07:12:06 [ 11] [ 6] [266727] +07:12:06 [ 12] [ 6] [071113] +07:12:06 [ 13] [ 4] [0320] +07:12:06 [ 14] [ 4] [4110] +07:12:06 [ 15] [ 4] [0320] +07:12:06 [ 18] [ 4] [6011] +07:12:06 [ 19] [ 3] [418] +07:12:06 [ 22] [ 3] [021] +07:12:06 [ 25] [ 2] [01] +07:12:06 [ 32] [ 6] [180893] +07:12:06 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:12:06 [ 37] [ 12] [507900266727] +07:12:06 [ 41] [ 8] [0466PSLB] +07:12:06 [ 42] [ 15] [999999 ] +07:12:06 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:12:06 [ 49] [ 3] [418] +07:12:06 [ 52] [ 16] [EAA53153AB7D7A0B] +07:12:06 ============================================================================ +07:12:06 + + +waiting on router queue for slot.... +07:12:06 Sending to : +07:12:06 ============================================================================ +07:12:06 ============================================================================ +07:12:06 Slot Id : <42> +07:12:06 Transaction Type : REQUEST +07:12:06 Received From : +07:12:06 ============================================================================ +07:12:06 FNo. Len. Field Value +07:12:06 ============================================================================ +07:12:06 [ 1] [ 4] [0200] +07:12:06 [ 2] [ 16] [6688990601594508] +07:12:06 [ 3] [ 6] [301000] +07:12:06 [ 7] [ 10] [0320001113] +07:12:06 [ 11] [ 6] [266727] +07:12:06 [ 12] [ 6] [071113] +07:12:06 [ 13] [ 4] [0320] +07:12:06 [ 14] [ 4] [4110] +07:12:06 [ 15] [ 4] [0320] +07:12:06 [ 18] [ 4] [6011] +07:12:06 [ 19] [ 3] [418] +07:12:06 [ 22] [ 3] [021] +07:12:06 [ 25] [ 2] [01] +07:12:06 [ 32] [ 6] [180893] +07:12:06 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:12:06 [ 37] [ 12] [507900266727] +07:12:06 [ 41] [ 8] [0466PSLB] +07:12:06 [ 42] [ 15] [999999 ] +07:12:06 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:12:06 [ 49] [ 3] [418] +07:12:06 [ 52] [ 16] [41A7D8B9858827FD] +07:12:06 ============================================================================ +07:12:06 + + +waiting on router queue for slot.... +07:12:06 Sending to : <0> +07:12:06 ============================================================================ +07:12:06 ============================================================================ +07:12:06 Slot Id : <42> +07:12:06 Transaction Type : RESPONSE +07:12:06 Received From : +07:12:06 ============================================================================ +07:12:06 FNo. Len. Field Value +07:12:06 ============================================================================ +07:12:06 [ 1] [ 4] [0210] +07:12:06 [ 2] [ 16] [6688990601594508] +07:12:06 [ 3] [ 6] [301000] +07:12:06 [ 4] [ 12] [000000000000] +07:12:06 [ 7] [ 10] [0320001113] +07:12:06 [ 11] [ 6] [266727] +07:12:06 [ 12] [ 6] [071113] +07:12:06 [ 13] [ 4] [0320] +07:12:06 [ 15] [ 4] [0320] +07:12:06 [ 18] [ 4] [6011] +07:12:06 [ 19] [ 3] [418] +07:12:06 [ 22] [ 3] [021] +07:12:06 [ 32] [ 6] [180893] +07:12:06 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:12:06 [ 37] [ 12] [507900266727] +07:12:06 [ 39] [ 2] [14] +07:12:06 [ 41] [ 8] [0466PSLB] +07:12:06 [ 49] [ 3] [418] +07:12:06 ============================================================================ +07:12:06 Sending to : +07:12:06 ============================================================================ +07:12:06 + + +waiting on router queue for slot.... +07:12:08 ============================================================================ +07:12:08 Slot Id : <42> +07:12:08 Transaction Type : RESPONSE +07:12:08 Received From : +07:12:08 ============================================================================ +07:12:08 FNo. Len. Field Value +07:12:08 ============================================================================ +07:12:08 [ 1] [ 4] [0210] +07:12:08 [ 2] [ 16] [6688990601594508] +07:12:08 [ 3] [ 6] [301000] +07:12:08 [ 4] [ 12] [000000000000] +07:12:08 [ 7] [ 10] [0320001113] +07:12:08 [ 11] [ 6] [266727] +07:12:08 [ 12] [ 6] [071113] +07:12:08 [ 13] [ 4] [0320] +07:12:08 [ 15] [ 4] [0320] +07:12:08 [ 18] [ 4] [6011] +07:12:08 [ 19] [ 3] [418] +07:12:08 [ 22] [ 3] [021] +07:12:08 [ 32] [ 6] [180893] +07:12:08 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:12:08 [ 37] [ 12] [507900266727] +07:12:08 [ 39] [ 2] [14] +07:12:08 [ 41] [ 8] [0466PSLB] +07:12:08 [ 49] [ 3] [418] +07:12:08 ============================================================================ +07:12:08 Calculate Source COMM Id = 2 +07:12:08 ============================================================================ +07:12:08 + + +waiting on router queue for slot.... +07:12:18 ============================================================================ +07:12:18 Slot Id : <86> +07:12:18 Transaction Type : REQUEST +07:12:18 Received From : +07:12:18 ============================================================================ +07:12:18 FNo. Len. Field Value +07:12:18 ============================================================================ +07:12:18 [ 1] [ 4] [0800] +07:12:18 [ 7] [ 10] [0320142407] +07:12:18 [ 11] [ 6] [072407] +07:12:18 [ 37] [ 12] [57907072407] +07:12:18 [ 70] [ 3] [301] +07:12:18 ============================================================================ +07:12:18 + + +waiting on router queue for slot.... +07:12:18 Sending to : +07:12:18 ============================================================================ +07:12:18 ============================================================================ +07:12:18 Slot Id : <86> +07:12:18 Transaction Type : RESPONSE +07:12:18 Received From : +07:12:18 ============================================================================ +07:12:18 FNo. Len. Field Value +07:12:18 ============================================================================ +07:12:18 [ 1] [ 4] [0810] +07:12:18 [ 7] [ 10] [0320142407] +07:12:18 [ 11] [ 6] [072407] +07:12:18 [ 37] [ 12] [579070724070] +07:12:18 [ 39] [ 2] [00] +07:12:18 [ 70] [ 3] [810] +07:12:18 ============================================================================ +07:12:18 Calculate Source COMM Id = 6 +07:12:18 ============================================================================ +07:12:18 + + +waiting on router queue for slot.... +07:12:19 ============================================================================ +07:12:19 Slot Id : <88> +07:12:19 Transaction Type : REQUEST +07:12:19 Received From : +07:12:19 ============================================================================ +07:12:19 FNo. Len. Field Value +07:12:19 ============================================================================ +07:12:19 [ 1] [ 4] [0200] +07:12:19 [ 2] [ 16] [6688990103272306] +07:12:19 [ 3] [ 6] [011000] +07:12:19 [ 4] [ 12] [000050000000] +07:12:19 [ 7] [ 10] [0320071215] +07:12:19 [ 11] [ 6] [668226] +07:12:19 [ 12] [ 6] [071215] +07:12:19 [ 13] [ 4] [0320] +07:12:19 [ 15] [ 4] [0320] +07:12:19 [ 18] [ 4] [6011] +07:12:19 [ 22] [ 3] [900] +07:12:19 [ 25] [ 2] [02] +07:12:19 [ 28] [ 9] [D00002000] +07:12:19 [ 32] [ 6] [621354] +07:12:19 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:12:19 [ 37] [ 12] [507903499422] +07:12:19 [ 41] [ 8] [06002200] +07:12:19 [ 42] [ 15] [NATIVE ] +07:12:19 [ 43] [ 40] [Beng Market Beng LAO] +07:12:19 [ 49] [ 3] [418] +07:12:19 [ 52] [ 16] [3B2593E21CE86DB1] +07:12:19 ============================================================================ +07:12:19 + + +waiting on router queue for slot.... +07:12:19 Sending to : +07:12:19 ============================================================================ +07:12:19 Sending to : +07:12:19 ============================================================================ +07:12:19 ============================================================================ +07:12:19 Slot Id : <88> +07:12:19 Transaction Type : REQUEST +07:12:19 Received From : +07:12:19 ============================================================================ +07:12:19 FNo. Len. Field Value +07:12:19 ============================================================================ +07:12:19 [ 1] [ 4] [0200] +07:12:19 [ 2] [ 16] [6688990103272306] +07:12:19 [ 3] [ 6] [011000] +07:12:19 [ 4] [ 12] [000050000000] +07:12:19 [ 7] [ 10] [0320071215] +07:12:19 [ 11] [ 6] [668226] +07:12:19 [ 12] [ 6] [071215] +07:12:19 [ 13] [ 4] [0320] +07:12:19 [ 15] [ 4] [0320] +07:12:19 [ 18] [ 4] [6011] +07:12:19 [ 22] [ 3] [900] +07:12:19 [ 25] [ 2] [02] +07:12:19 [ 28] [ 9] [D00002000] +07:12:19 [ 32] [ 6] [621354] +07:12:19 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:12:19 [ 37] [ 12] [507903499422] +07:12:19 [ 41] [ 8] [06002200] +07:12:19 [ 42] [ 15] [NATIVE ] +07:12:19 [ 43] [ 40] [Beng Market Beng LAO] +07:12:19 [ 49] [ 3] [418] +07:12:19 [ 52] [ 16] [3B2593E21CE86DB1] +07:12:19 ============================================================================ +07:12:19 + + +waiting on router queue for slot.... +07:12:19 Sending to : +07:12:19 ============================================================================ +07:12:19 ============================================================================ +07:12:19 Slot Id : <88> +07:12:19 Transaction Type : REQUEST +07:12:19 Received From : +07:12:19 ============================================================================ +07:12:19 FNo. Len. Field Value +07:12:19 ============================================================================ +07:12:19 [ 1] [ 4] [0200] +07:12:19 [ 2] [ 16] [6688990103272306] +07:12:19 [ 3] [ 6] [011000] +07:12:19 [ 4] [ 12] [000050000000] +07:12:19 [ 7] [ 10] [0320071215] +07:12:19 [ 11] [ 6] [668226] +07:12:19 [ 12] [ 6] [071215] +07:12:19 [ 13] [ 4] [0320] +07:12:19 [ 15] [ 4] [0320] +07:12:19 [ 18] [ 4] [6011] +07:12:19 [ 22] [ 3] [900] +07:12:19 [ 25] [ 2] [02] +07:12:19 [ 28] [ 9] [D00002000] +07:12:19 [ 32] [ 6] [621354] +07:12:19 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:12:19 [ 37] [ 12] [507903499422] +07:12:19 [ 41] [ 8] [06002200] +07:12:19 [ 42] [ 15] [NATIVE ] +07:12:19 [ 43] [ 40] [Beng Market Beng LAO] +07:12:19 [ 49] [ 3] [418] +07:12:19 [ 52] [ 16] [1EEBBBC243DE7E3E] +07:12:19 ============================================================================ +07:12:19 + + +waiting on router queue for slot.... +07:12:19 Sending to : <4> +07:12:19 ============================================================================ +07:12:20 ============================================================================ +07:12:20 Slot Id : <88> +07:12:20 Transaction Type : RESPONSE +07:12:20 Received From : +07:12:20 ============================================================================ +07:12:20 FNo. Len. Field Value +07:12:20 ============================================================================ +07:12:20 [ 1] [ 4] [0210] +07:12:20 [ 2] [ 16] [6688990103272306] +07:12:20 [ 3] [ 6] [011000] +07:12:20 [ 4] [ 12] [000050000000] +07:12:20 [ 11] [ 6] [668226] +07:12:20 [ 12] [ 6] [071215] +07:12:20 [ 15] [ 4] [0320] +07:12:20 [ 18] [ 4] [6011] +07:12:20 [ 32] [ 6] [621354] +07:12:20 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:12:20 [ 37] [ 12] [507903499422] +07:12:20 [ 38] [ 6] [484907] +07:12:20 [ 39] [ 2] [00] +07:12:20 [ 41] [ 8] [06002200] +07:12:20 [ 49] [ 3] [418] +07:12:20 [ 54] [ 20] [1002418C000030787742] +07:12:20 ============================================================================ +07:12:20 Sending to : +07:12:20 ============================================================================ +07:12:20 + + +waiting on router queue for slot.... +07:12:21 ============================================================================ +07:12:21 Slot Id : <49> +07:12:21 Transaction Type : REQUEST +07:12:21 Received From : +07:12:21 ============================================================================ +07:12:21 FNo. Len. Field Value +07:12:21 ============================================================================ +07:12:21 [ 1] [ 4] [0800] +07:12:21 [ 7] [ 10] [0320121129] +07:12:21 [ 11] [ 6] [155099] +07:12:21 [ 70] [ 3] [301] +07:12:21 ============================================================================ +07:12:21 + + +waiting on router queue for slot.... +07:12:21 Sending to : +07:12:21 ============================================================================ +07:12:21 ============================================================================ +07:12:21 Slot Id : <49> +07:12:21 Transaction Type : RESPONSE +07:12:21 Received From : +07:12:21 ============================================================================ +07:12:21 FNo. Len. Field Value +07:12:21 ============================================================================ +07:12:21 [ 1] [ 4] [0810] +07:12:21 [ 7] [ 10] [0320121129] +07:12:21 [ 11] [ 6] [155099] +07:12:21 [ 39] [ 2] [00] +07:12:21 [ 70] [ 3] [301] +07:12:21 ============================================================================ +07:12:21 Calculate Source COMM Id = 2 +07:12:21 ============================================================================ +07:12:21 + + +waiting on router queue for slot.... +07:12:22 ============================================================================ +07:12:22 Slot Id : <88> +07:12:22 Transaction Type : RESPONSE +07:12:22 Received From : +07:12:22 ============================================================================ +07:12:22 FNo. Len. Field Value +07:12:22 ============================================================================ +07:12:22 [ 1] [ 4] [0210] +07:12:22 [ 2] [ 16] [6688990103272306] +07:12:22 [ 3] [ 6] [011000] +07:12:22 [ 4] [ 12] [000050000000] +07:12:22 [ 11] [ 6] [668226] +07:12:22 [ 12] [ 6] [071215] +07:12:22 [ 15] [ 4] [0320] +07:12:22 [ 18] [ 4] [6011] +07:12:22 [ 32] [ 6] [621354] +07:12:22 [ 35] [ 37] [6688990103272306=42121231230669800000] +07:12:22 [ 37] [ 12] [507903499422] +07:12:22 [ 38] [ 6] [484907] +07:12:22 [ 39] [ 2] [00] +07:12:22 [ 41] [ 8] [06002200] +07:12:22 [ 49] [ 3] [418] +07:12:22 [ 54] [ 20] [1002418C000030787742] +07:12:22 ============================================================================ +07:12:22 Calculate Source COMM Id = 0 +07:12:22 ============================================================================ +07:12:22 + + +waiting on router queue for slot.... +07:12:32 ============================================================================ +07:12:32 Slot Id : <5> +07:12:32 Transaction Type : REQUEST +07:12:32 Received From : +07:12:32 ============================================================================ +07:12:32 FNo. Len. Field Value +07:12:32 ============================================================================ +07:12:32 [ 1] [ 4] [0800] +07:12:32 [ 7] [ 10] [0320121140] +07:12:32 [ 11] [ 6] [155100] +07:12:32 [ 70] [ 3] [301] +07:12:32 ============================================================================ +07:12:32 + + +waiting on router queue for slot.... +07:12:32 Sending to : +07:12:32 ============================================================================ +07:12:32 ============================================================================ +07:12:32 Slot Id : <5> +07:12:32 Transaction Type : RESPONSE +07:12:32 Received From : +07:12:32 ============================================================================ +07:12:32 FNo. Len. Field Value +07:12:32 ============================================================================ +07:12:32 [ 1] [ 4] [0810] +07:12:32 [ 7] [ 10] [0320121140] +07:12:32 [ 11] [ 6] [155100] +07:12:32 [ 39] [ 2] [00] +07:12:32 [ 70] [ 3] [301] +07:12:32 ============================================================================ +07:12:32 Calculate Source COMM Id = 2 +07:12:32 ============================================================================ +07:12:32 + + +waiting on router queue for slot.... +07:12:32 ============================================================================ +07:12:32 Slot Id : <89> +07:12:32 Transaction Type : REQUEST +07:12:32 Received From : +07:12:32 ============================================================================ +07:12:32 FNo. Len. Field Value +07:12:32 ============================================================================ +07:12:32 [ 1] [ 4] [0800] +07:12:32 [ 2] [ 5] [02531] +07:12:32 [ 3] [ 6] [579078] +07:12:32 [ 7] [ 10] [0320001232] +07:12:32 [ 11] [ 6] [806830] +07:12:32 [ 15] [ 10] [0320001232] +07:12:32 [ 37] [ 11] [57907806830] +07:12:32 [ 70] [ 3] [001] +07:12:32 ============================================================================ +07:12:32 + + +waiting on router queue for slot.... +07:12:32 ============================================================================ +07:12:32 Slot Id : <89> +07:12:32 Transaction Type : RESPONSE +07:12:32 Received From : +07:12:32 ============================================================================ +07:12:32 FNo. Len. Field Value +07:12:32 ============================================================================ +07:12:32 [ 1] [ 4] [0810] +07:12:32 [ 7] [ 10] [0320001232] +07:12:32 [ 11] [ 6] [806830] +07:12:32 [ 15] [ 4] [0320] +07:12:32 [ 37] [ 12] [57907806830] +07:12:32 [ 39] [ 2] [00] +07:12:32 [ 70] [ 3] [001] +07:12:32 ============================================================================ +07:12:32 Sending to : +07:12:32 ============================================================================ +07:12:32 + + +waiting on router queue for slot.... +07:12:42 ============================================================================ +07:12:42 Slot Id : <59> +07:12:42 Transaction Type : REQUEST +07:12:42 Received From : +07:12:42 ============================================================================ +07:12:42 FNo. Len. Field Value +07:12:42 ============================================================================ +07:12:42 [ 1] [ 4] [0800] +07:12:42 [ 7] [ 10] [0320121151] +07:12:42 [ 11] [ 6] [155101] +07:12:42 [ 70] [ 3] [301] +07:12:42 ============================================================================ +07:12:42 + + +waiting on router queue for slot.... +07:12:42 Sending to : +07:12:42 ============================================================================ +07:12:42 ============================================================================ +07:12:42 Slot Id : <59> +07:12:42 Transaction Type : RESPONSE +07:12:42 Received From : +07:12:42 ============================================================================ +07:12:42 FNo. Len. Field Value +07:12:42 ============================================================================ +07:12:42 [ 1] [ 4] [0810] +07:12:42 [ 7] [ 10] [0320121151] +07:12:42 [ 11] [ 6] [155101] +07:12:42 [ 39] [ 2] [00] +07:12:42 [ 70] [ 3] [301] +07:12:42 ============================================================================ +07:12:42 Calculate Source COMM Id = 2 +07:12:42 ============================================================================ +07:12:42 + + +waiting on router queue for slot.... +07:12:51 ============================================================================ +07:12:51 Slot Id : <79> +07:12:51 Transaction Type : REQUEST +07:12:51 Received From : +07:12:51 ============================================================================ +07:12:51 FNo. Len. Field Value +07:12:51 ============================================================================ +07:12:51 [ 1] [ 4] [0200] +07:12:51 [ 2] [ 16] [1808930600028856] +07:12:51 [ 3] [ 6] [011000] +07:12:51 [ 4] [ 12] [000025000000] +07:12:51 [ 7] [ 10] [0320071248] +07:12:51 [ 11] [ 6] [668292] +07:12:51 [ 12] [ 6] [071248] +07:12:51 [ 13] [ 4] [0320] +07:12:51 [ 15] [ 4] [0320] +07:12:51 [ 18] [ 4] [6011] +07:12:51 [ 22] [ 3] [900] +07:12:51 [ 25] [ 2] [02] +07:12:51 [ 28] [ 9] [D00002000] +07:12:51 [ 32] [ 6] [621354] +07:12:51 [ 35] [ 27] [1808930600028856=1803500957] +07:12:51 [ 37] [ 12] [507904269349] +07:12:51 [ 41] [ 8] [03002500] +07:12:51 [ 42] [ 15] [NATIVE ] +07:12:51 [ 43] [ 40] [Sanhkhou KM7 KaisonephomvLAO] +07:12:51 [ 49] [ 3] [418] +07:12:51 [ 52] [ 16] [FE51FA6BE9D0E100] +07:12:51 ============================================================================ +07:12:51 + + +waiting on router queue for slot.... +07:12:51 Sending to : +07:12:51 ============================================================================ +07:12:51 Sending to : +07:12:51 ============================================================================ +07:12:51 ============================================================================ +07:12:51 Slot Id : <79> +07:12:51 Transaction Type : REQUEST +07:12:51 Received From : +07:12:51 ============================================================================ +07:12:51 FNo. Len. Field Value +07:12:51 ============================================================================ +07:12:51 [ 1] [ 4] [0200] +07:12:51 [ 2] [ 16] [1808930600028856] +07:12:51 [ 3] [ 6] [011000] +07:12:51 [ 4] [ 12] [000025000000] +07:12:51 [ 7] [ 10] [0320071248] +07:12:51 [ 11] [ 6] [668292] +07:12:51 [ 12] [ 6] [071248] +07:12:51 [ 13] [ 4] [0320] +07:12:51 [ 15] [ 4] [0320] +07:12:51 [ 18] [ 4] [6011] +07:12:51 [ 22] [ 3] [900] +07:12:51 [ 25] [ 2] [02] +07:12:51 [ 28] [ 9] [D00002000] +07:12:51 [ 32] [ 6] [621354] +07:12:51 [ 35] [ 27] [1808930600028856=1803500957] +07:12:51 [ 37] [ 12] [507904269349] +07:12:51 [ 41] [ 8] [03002500] +07:12:51 [ 42] [ 15] [NATIVE ] +07:12:51 [ 43] [ 40] [Sanhkhou KM7 KaisonephomvLAO] +07:12:51 [ 49] [ 3] [418] +07:12:51 [ 52] [ 16] [FE51FA6BE9D0E100] +07:12:51 ============================================================================ +07:12:51 + + +waiting on router queue for slot.... +07:12:51 Sending to : +07:12:51 ============================================================================ +07:12:51 ============================================================================ +07:12:51 Slot Id : <79> +07:12:51 Transaction Type : REQUEST +07:12:51 Received From : +07:12:51 ============================================================================ +07:12:51 FNo. Len. Field Value +07:12:51 ============================================================================ +07:12:51 [ 1] [ 4] [0200] +07:12:51 [ 2] [ 16] [1808930600028856] +07:12:51 [ 3] [ 6] [011000] +07:12:51 [ 4] [ 12] [000025000000] +07:12:51 [ 7] [ 10] [0320071248] +07:12:51 [ 11] [ 6] [668292] +07:12:51 [ 12] [ 6] [071248] +07:12:51 [ 13] [ 4] [0320] +07:12:51 [ 15] [ 4] [0320] +07:12:51 [ 18] [ 4] [6011] +07:12:51 [ 22] [ 3] [900] +07:12:51 [ 25] [ 2] [02] +07:12:51 [ 28] [ 9] [D00002000] +07:12:51 [ 32] [ 6] [621354] +07:12:51 [ 35] [ 27] [1808930600028856=1803500957] +07:12:51 [ 37] [ 12] [507904269349] +07:12:51 [ 41] [ 8] [03002500] +07:12:51 [ 42] [ 15] [NATIVE ] +07:12:51 [ 43] [ 40] [Sanhkhou KM7 KaisonephomvLAO] +07:12:51 [ 49] [ 3] [418] +07:12:51 [ 52] [ 16] [2628AD2ADFECEAA3] +07:12:51 ============================================================================ +07:12:51 + + +waiting on router queue for slot.... +07:12:51 Sending to : <2> +07:12:51 ============================================================================ +07:12:56 ============================================================================ +07:12:56 Slot Id : <79> +07:12:56 Transaction Type : RESPONSE +07:12:56 Received From : +07:12:56 ============================================================================ +07:12:56 FNo. Len. Field Value +07:12:56 ============================================================================ +07:12:56 [ 1] [ 4] [0210] +07:12:56 [ 2] [ 16] [1808930600028856] +07:12:56 [ 3] [ 6] [011000] +07:12:56 [ 4] [ 12] [000025000000] +07:12:56 [ 6] [ 12] [000025000000] +07:12:56 [ 7] [ 10] [0320071248] +07:12:56 [ 11] [ 6] [668292] +07:12:56 [ 12] [ 6] [071248] +07:12:56 [ 13] [ 4] [0320] +07:12:56 [ 18] [ 4] [6011] +07:12:56 [ 19] [ 3] [418] +07:12:56 [ 22] [ 3] [021] +07:12:56 [ 32] [ 6] [621354] +07:12:56 [ 35] [ 27] [1808930600028856=1803500957] +07:12:56 [ 37] [ 12] [507904269349] +07:12:56 [ 38] [ 6] [668292] +07:12:56 [ 39] [ 2] [00] +07:12:56 [ 41] [ 8] [03002500] +07:12:56 [ 49] [ 3] [418] +07:12:56 [ 52] [ 16] [2628AD2ADFECEAA3] +07:12:56 [ 54] [ 20] [1001418C000006741300] +07:12:56 ============================================================================ +07:12:56 Sending to : +07:12:56 ============================================================================ +07:12:56 + + +waiting on router queue for slot.... +07:12:58 ============================================================================ +07:12:58 Slot Id : <79> +07:12:58 Transaction Type : RESPONSE +07:12:58 Received From : +07:12:58 ============================================================================ +07:12:58 FNo. Len. Field Value +07:12:58 ============================================================================ +07:12:58 [ 1] [ 4] [0210] +07:12:58 [ 2] [ 16] [1808930600028856] +07:12:58 [ 3] [ 6] [011000] +07:12:58 [ 4] [ 12] [000025000000] +07:12:58 [ 6] [ 12] [000025000000] +07:12:58 [ 7] [ 10] [0320071248] +07:12:58 [ 11] [ 6] [668292] +07:12:58 [ 12] [ 6] [071248] +07:12:58 [ 13] [ 4] [0320] +07:12:58 [ 18] [ 4] [6011] +07:12:58 [ 19] [ 3] [418] +07:12:58 [ 22] [ 3] [021] +07:12:58 [ 32] [ 6] [621354] +07:12:58 [ 35] [ 27] [1808930600028856=1803500957] +07:12:58 [ 37] [ 12] [507904269349] +07:12:58 [ 38] [ 6] [668292] +07:12:58 [ 39] [ 2] [00] +07:12:58 [ 41] [ 8] [03002500] +07:12:58 [ 49] [ 3] [418] +07:12:58 [ 52] [ 16] [2628AD2ADFECEAA3] +07:12:58 [ 54] [ 20] [1001418C000006741300] +07:12:58 ============================================================================ +07:12:58 Calculate Source COMM Id = 0 +07:12:58 ============================================================================ +07:12:58 + + +waiting on router queue for slot.... +07:13:04 ============================================================================ +07:13:04 Slot Id : <84> +07:13:04 Transaction Type : REQUEST +07:13:04 Received From : +07:13:04 ============================================================================ +07:13:04 FNo. Len. Field Value +07:13:04 ============================================================================ +07:13:04 [ 1] [ 4] [0800] +07:13:04 [ 7] [ 10] [0320121212] +07:13:04 [ 11] [ 6] [155102] +07:13:04 [ 70] [ 3] [301] +07:13:04 ============================================================================ +07:13:04 + + +waiting on router queue for slot.... +07:13:04 Sending to : +07:13:04 ============================================================================ +07:13:04 ============================================================================ +07:13:04 Slot Id : <84> +07:13:04 Transaction Type : RESPONSE +07:13:04 Received From : +07:13:04 ============================================================================ +07:13:04 FNo. Len. Field Value +07:13:04 ============================================================================ +07:13:04 [ 1] [ 4] [0810] +07:13:04 [ 7] [ 10] [0320121212] +07:13:04 [ 11] [ 6] [155102] +07:13:04 [ 39] [ 2] [00] +07:13:04 [ 70] [ 3] [301] +07:13:04 ============================================================================ +07:13:04 Calculate Source COMM Id = 2 +07:13:04 ============================================================================ +07:13:04 + + +waiting on router queue for slot.... +07:13:15 ============================================================================ +07:13:15 Slot Id : <62> +07:13:15 Transaction Type : REQUEST +07:13:15 Received From : +07:13:15 ============================================================================ +07:13:15 FNo. Len. Field Value +07:13:15 ============================================================================ +07:13:15 [ 1] [ 4] [0800] +07:13:15 [ 7] [ 10] [0320121223] +07:13:15 [ 11] [ 6] [155103] +07:13:15 [ 70] [ 3] [301] +07:13:15 ============================================================================ +07:13:15 + + +waiting on router queue for slot.... +07:13:15 Sending to : +07:13:15 ============================================================================ +07:13:15 ============================================================================ +07:13:15 Slot Id : <62> +07:13:15 Transaction Type : RESPONSE +07:13:15 Received From : +07:13:15 ============================================================================ +07:13:15 FNo. Len. Field Value +07:13:15 ============================================================================ +07:13:15 [ 1] [ 4] [0810] +07:13:15 [ 7] [ 10] [0320121223] +07:13:15 [ 11] [ 6] [155103] +07:13:15 [ 39] [ 2] [00] +07:13:15 [ 70] [ 3] [301] +07:13:15 ============================================================================ +07:13:15 Calculate Source COMM Id = 2 +07:13:15 ============================================================================ +07:13:15 + + +waiting on router queue for slot.... +07:13:17 ============================================================================ +07:13:17 Slot Id : <67> +07:13:17 Transaction Type : REQUEST +07:13:17 Received From : +07:13:17 ============================================================================ +07:13:17 FNo. Len. Field Value +07:13:17 ============================================================================ +07:13:17 [ 1] [ 4] [0200] +07:13:17 [ 2] [ 16] [6213544001180790] +07:13:17 [ 3] [ 6] [010000] +07:13:17 [ 4] [ 12] [000050000000] +07:13:17 [ 7] [ 10] [0320071109] +07:13:17 [ 11] [ 6] [929959] +07:13:17 [ 12] [ 6] [071109] +07:13:17 [ 13] [ 4] [0320] +07:13:17 [ 15] [ 4] [0320] +07:13:17 [ 18] [ 4] [6011] +07:13:17 [ 19] [ 3] [418] +07:13:17 [ 22] [ 3] [021] +07:13:17 [ 25] [ 2] [01] +07:13:17 [ 28] [ 9] [D00002000] +07:13:17 [ 32] [ 6] [668899] +07:13:17 [ 35] [ 32] [6213544001180790=491212018079840] +07:13:17 [ 37] [ 12] [507901972353] +07:13:17 [ 41] [ 8] [03012003] +07:13:17 [ 42] [ 15] [APT ] +07:13:17 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:13:17 [ 49] [ 3] [418] +07:13:17 [ 52] [ 16] [565D1B7738943684] +07:13:17 ============================================================================ +07:13:17 + + +waiting on router queue for slot.... +07:13:17 Sending to : +07:13:17 ============================================================================ +07:13:17 Sending to : +07:13:17 ============================================================================ +07:13:18 ============================================================================ +07:13:18 Slot Id : <67> +07:13:18 Transaction Type : REQUEST +07:13:18 Received From : +07:13:18 ============================================================================ +07:13:18 FNo. Len. Field Value +07:13:18 ============================================================================ +07:13:18 [ 1] [ 4] [0200] +07:13:18 [ 2] [ 16] [6213544001180790] +07:13:18 [ 3] [ 6] [010000] +07:13:18 [ 4] [ 12] [000050000000] +07:13:18 [ 7] [ 10] [0320071109] +07:13:18 [ 11] [ 6] [929959] +07:13:18 [ 12] [ 6] [071109] +07:13:18 [ 13] [ 4] [0320] +07:13:18 [ 15] [ 4] [0320] +07:13:18 [ 18] [ 4] [6011] +07:13:18 [ 19] [ 3] [418] +07:13:18 [ 22] [ 3] [021] +07:13:18 [ 25] [ 2] [01] +07:13:18 [ 28] [ 9] [D00002000] +07:13:18 [ 32] [ 6] [668899] +07:13:18 [ 35] [ 32] [6213544001180790=491212018079840] +07:13:18 [ 37] [ 12] [507901972353] +07:13:18 [ 41] [ 8] [03012003] +07:13:18 [ 42] [ 15] [APT ] +07:13:18 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:13:18 [ 49] [ 3] [418] +07:13:18 [ 52] [ 16] [565D1B7738943684] +07:13:18 ============================================================================ +07:13:18 + + +waiting on router queue for slot.... +07:13:18 Sending to : +07:13:18 ============================================================================ +07:13:18 ============================================================================ +07:13:18 Slot Id : <67> +07:13:18 Transaction Type : REQUEST +07:13:18 Received From : +07:13:18 ============================================================================ +07:13:18 FNo. Len. Field Value +07:13:18 ============================================================================ +07:13:18 [ 1] [ 4] [0200] +07:13:18 [ 2] [ 16] [6213544001180790] +07:13:18 [ 3] [ 6] [010000] +07:13:18 [ 4] [ 12] [000050000000] +07:13:18 [ 7] [ 10] [0320071109] +07:13:18 [ 11] [ 6] [929959] +07:13:18 [ 12] [ 6] [071109] +07:13:18 [ 13] [ 4] [0320] +07:13:18 [ 15] [ 4] [0320] +07:13:18 [ 18] [ 4] [6011] +07:13:18 [ 19] [ 3] [418] +07:13:18 [ 22] [ 3] [021] +07:13:18 [ 25] [ 2] [01] +07:13:18 [ 28] [ 9] [D00002000] +07:13:18 [ 32] [ 6] [668899] +07:13:18 [ 35] [ 32] [6213544001180790=491212018079840] +07:13:18 [ 37] [ 12] [507901972353] +07:13:18 [ 41] [ 8] [03012003] +07:13:18 [ 42] [ 15] [APT ] +07:13:18 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:13:18 [ 49] [ 3] [418] +07:13:18 [ 52] [ 16] [1FC57A328DAF4979] +07:13:18 ============================================================================ +07:13:18 + + +waiting on router queue for slot.... +07:13:18 Sending to : <0> +07:13:18 ============================================================================ +07:13:18 ============================================================================ +07:13:18 Slot Id : <67> +07:13:18 Transaction Type : RESPONSE +07:13:18 Received From : +07:13:18 ============================================================================ +07:13:18 FNo. Len. Field Value +07:13:18 ============================================================================ +07:13:18 [ 1] [ 4] [0210] +07:13:18 [ 2] [ 16] [6213544001180790] +07:13:18 [ 3] [ 6] [010000] +07:13:18 [ 4] [ 12] [000050000000] +07:13:18 [ 7] [ 10] [0320071109] +07:13:18 [ 11] [ 6] [929959] +07:13:18 [ 12] [ 6] [071109] +07:13:18 [ 13] [ 4] [0320] +07:13:18 [ 15] [ 4] [0320] +07:13:18 [ 18] [ 4] [6011] +07:13:18 [ 19] [ 3] [418] +07:13:18 [ 32] [ 6] [668899] +07:13:18 [ 35] [ 32] [6213544001180790=491212018079840] +07:13:18 [ 37] [ 12] [507901972353] +07:13:18 [ 38] [ 6] [743067] +07:13:18 [ 39] [ 2] [00] +07:13:18 [ 41] [ 8] [03012003] +07:13:18 [ 49] [ 3] [418] +07:13:18 [ 54] [ 40] [0001418C0001032475060002418C000103247506] +07:13:18 ============================================================================ +07:13:18 Sending to : +07:13:18 ============================================================================ +07:13:18 + + +waiting on router queue for slot.... +07:13:20 ============================================================================ +07:13:20 Slot Id : <67> +07:13:20 Transaction Type : RESPONSE +07:13:20 Received From : +07:13:20 ============================================================================ +07:13:20 FNo. Len. Field Value +07:13:20 ============================================================================ +07:13:20 [ 1] [ 4] [0210] +07:13:20 [ 2] [ 16] [6213544001180790] +07:13:20 [ 3] [ 6] [010000] +07:13:20 [ 4] [ 12] [000050000000] +07:13:20 [ 7] [ 10] [0320071109] +07:13:20 [ 11] [ 6] [929959] +07:13:20 [ 12] [ 6] [071109] +07:13:20 [ 13] [ 4] [0320] +07:13:20 [ 15] [ 4] [0320] +07:13:20 [ 18] [ 4] [6011] +07:13:20 [ 19] [ 3] [418] +07:13:20 [ 32] [ 6] [668899] +07:13:20 [ 35] [ 32] [6213544001180790=491212018079840] +07:13:20 [ 37] [ 12] [507901972353] +07:13:20 [ 38] [ 6] [743067] +07:13:20 [ 39] [ 2] [00] +07:13:20 [ 41] [ 8] [03012003] +07:13:20 [ 49] [ 3] [418] +07:13:20 [ 54] [ 40] [0001418C0001032475060002418C000103247506] +07:13:20 ============================================================================ +07:13:20 Calculate Source COMM Id = 4 +07:13:20 ============================================================================ +07:13:20 + + +waiting on router queue for slot.... +07:13:23 ============================================================================ +07:13:23 Slot Id : <99> +07:13:23 Transaction Type : REQUEST +07:13:23 Received From : +07:13:23 ============================================================================ +07:13:23 FNo. Len. Field Value +07:13:23 ============================================================================ +07:13:23 [ 1] [ 4] [0800] +07:13:23 [ 7] [ 10] [0320142512] +07:13:23 [ 11] [ 6] [072512] +07:13:23 [ 37] [ 12] [57907072512] +07:13:23 [ 70] [ 3] [301] +07:13:23 ============================================================================ +07:13:23 + + +waiting on router queue for slot.... +07:13:23 Sending to : +07:13:23 ============================================================================ +07:13:23 ============================================================================ +07:13:23 Slot Id : <99> +07:13:23 Transaction Type : RESPONSE +07:13:23 Received From : +07:13:23 ============================================================================ +07:13:23 FNo. Len. Field Value +07:13:23 ============================================================================ +07:13:23 [ 1] [ 4] [0810] +07:13:23 [ 7] [ 10] [0320142512] +07:13:23 [ 11] [ 6] [072512] +07:13:23 [ 37] [ 12] [579070725120] +07:13:23 [ 39] [ 2] [00] +07:13:23 [ 70] [ 3] [810] +07:13:23 ============================================================================ +07:13:23 Calculate Source COMM Id = 6 +07:13:23 ============================================================================ +07:13:23 + + +waiting on router queue for slot.... +07:13:26 ============================================================================ +07:13:26 Slot Id : <39> +07:13:26 Transaction Type : REQUEST +07:13:26 Received From : +07:13:26 ============================================================================ +07:13:26 FNo. Len. Field Value +07:13:26 ============================================================================ +07:13:26 [ 1] [ 4] [0800] +07:13:26 [ 7] [ 10] [0320121234] +07:13:26 [ 11] [ 6] [155104] +07:13:26 [ 70] [ 3] [301] +07:13:26 ============================================================================ +07:13:26 + + +waiting on router queue for slot.... +07:13:26 Sending to : +07:13:26 ============================================================================ +07:13:26 ============================================================================ +07:13:26 Slot Id : <39> +07:13:26 Transaction Type : RESPONSE +07:13:26 Received From : +07:13:26 ============================================================================ +07:13:26 FNo. Len. Field Value +07:13:26 ============================================================================ +07:13:26 [ 1] [ 4] [0810] +07:13:26 [ 7] [ 10] [0320121234] +07:13:26 [ 11] [ 6] [155104] +07:13:26 [ 39] [ 2] [00] +07:13:26 [ 70] [ 3] [301] +07:13:26 ============================================================================ +07:13:26 Calculate Source COMM Id = 2 +07:13:26 ============================================================================ +07:13:26 + + +waiting on router queue for slot.... +07:13:29 ============================================================================ +07:13:29 Slot Id : <64> +07:13:29 Transaction Type : REQUEST +07:13:29 Received From : +07:13:29 ============================================================================ +07:13:29 FNo. Len. Field Value +07:13:29 ============================================================================ +07:13:29 [ 1] [ 4] [0200] +07:13:29 [ 2] [ 16] [6688990601594508] +07:13:29 [ 3] [ 6] [012000] +07:13:29 [ 4] [ 12] [000020000000] +07:13:29 [ 7] [ 10] [0320001236] +07:13:29 [ 11] [ 6] [266731] +07:13:29 [ 12] [ 6] [071236] +07:13:29 [ 13] [ 4] [0320] +07:13:29 [ 14] [ 4] [4110] +07:13:29 [ 15] [ 4] [0320] +07:13:29 [ 18] [ 4] [6011] +07:13:29 [ 19] [ 3] [418] +07:13:29 [ 22] [ 3] [021] +07:13:29 [ 25] [ 2] [01] +07:13:29 [ 28] [ 9] [D00002000] +07:13:29 [ 32] [ 6] [180893] +07:13:29 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:13:29 [ 37] [ 12] [507900266731] +07:13:29 [ 41] [ 8] [0466PSLB] +07:13:29 [ 42] [ 15] [999999 ] +07:13:29 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:13:29 [ 49] [ 3] [418] +07:13:29 [ 52] [ 16] [EAA53153AB7D7A0B] +07:13:29 ============================================================================ +07:13:29 + + +waiting on router queue for slot.... +07:13:29 Sending to : +07:13:29 ============================================================================ +07:13:29 Sending to : +07:13:29 ============================================================================ +07:13:29 ============================================================================ +07:13:29 Slot Id : <64> +07:13:29 Transaction Type : REQUEST +07:13:29 Received From : +07:13:29 ============================================================================ +07:13:29 FNo. Len. Field Value +07:13:29 ============================================================================ +07:13:29 [ 1] [ 4] [0200] +07:13:29 [ 2] [ 16] [6688990601594508] +07:13:29 [ 3] [ 6] [012000] +07:13:29 [ 4] [ 12] [000020000000] +07:13:29 [ 7] [ 10] [0320001236] +07:13:29 [ 11] [ 6] [266731] +07:13:29 [ 12] [ 6] [071236] +07:13:29 [ 13] [ 4] [0320] +07:13:29 [ 14] [ 4] [4110] +07:13:29 [ 15] [ 4] [0320] +07:13:29 [ 18] [ 4] [6011] +07:13:29 [ 19] [ 3] [418] +07:13:29 [ 22] [ 3] [021] +07:13:29 [ 25] [ 2] [01] +07:13:29 [ 28] [ 9] [D00002000] +07:13:29 [ 32] [ 6] [180893] +07:13:29 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:13:29 [ 37] [ 12] [507900266731] +07:13:29 [ 41] [ 8] [0466PSLB] +07:13:29 [ 42] [ 15] [999999 ] +07:13:29 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:13:29 [ 49] [ 3] [418] +07:13:29 [ 52] [ 16] [EAA53153AB7D7A0B] +07:13:29 ============================================================================ +07:13:29 + + +waiting on router queue for slot.... +07:13:29 Sending to : +07:13:29 ============================================================================ +07:13:29 ============================================================================ +07:13:29 Slot Id : <64> +07:13:29 Transaction Type : REQUEST +07:13:29 Received From : +07:13:29 ============================================================================ +07:13:29 FNo. Len. Field Value +07:13:29 ============================================================================ +07:13:29 [ 1] [ 4] [0200] +07:13:29 [ 2] [ 16] [6688990601594508] +07:13:29 [ 3] [ 6] [012000] +07:13:29 [ 4] [ 12] [000020000000] +07:13:29 [ 7] [ 10] [0320001236] +07:13:29 [ 11] [ 6] [266731] +07:13:29 [ 12] [ 6] [071236] +07:13:29 [ 13] [ 4] [0320] +07:13:29 [ 14] [ 4] [4110] +07:13:29 [ 15] [ 4] [0320] +07:13:29 [ 18] [ 4] [6011] +07:13:29 [ 19] [ 3] [418] +07:13:29 [ 22] [ 3] [021] +07:13:29 [ 25] [ 2] [01] +07:13:29 [ 28] [ 9] [D00002000] +07:13:29 [ 32] [ 6] [180893] +07:13:29 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:13:29 [ 37] [ 12] [507900266731] +07:13:29 [ 41] [ 8] [0466PSLB] +07:13:29 [ 42] [ 15] [999999 ] +07:13:29 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:13:29 [ 49] [ 3] [418] +07:13:29 [ 52] [ 16] [41A7D8B9858827FD] +07:13:29 ============================================================================ +07:13:29 + + +waiting on router queue for slot.... +07:13:29 Sending to : <0> +07:13:29 ============================================================================ +07:13:29 ============================================================================ +07:13:29 Slot Id : <64> +07:13:29 Transaction Type : RESPONSE +07:13:29 Received From : +07:13:29 ============================================================================ +07:13:29 FNo. Len. Field Value +07:13:29 ============================================================================ +07:13:29 [ 1] [ 4] [0210] +07:13:29 [ 2] [ 16] [6688990601594508] +07:13:29 [ 3] [ 6] [012000] +07:13:29 [ 4] [ 12] [000020000000] +07:13:29 [ 7] [ 10] [0320001236] +07:13:29 [ 11] [ 6] [266731] +07:13:29 [ 12] [ 6] [071236] +07:13:29 [ 13] [ 4] [0320] +07:13:29 [ 15] [ 4] [0320] +07:13:29 [ 18] [ 4] [6011] +07:13:29 [ 19] [ 3] [418] +07:13:29 [ 22] [ 3] [021] +07:13:29 [ 32] [ 6] [180893] +07:13:29 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:13:29 [ 37] [ 12] [507900266731] +07:13:29 [ 39] [ 2] [14] +07:13:29 [ 41] [ 8] [0466PSLB] +07:13:29 [ 49] [ 3] [418] +07:13:29 ============================================================================ +07:13:29 Sending to : +07:13:29 ============================================================================ +07:13:29 + + +waiting on router queue for slot.... +07:13:31 ============================================================================ +07:13:31 Slot Id : <64> +07:13:31 Transaction Type : RESPONSE +07:13:31 Received From : +07:13:31 ============================================================================ +07:13:31 FNo. Len. Field Value +07:13:31 ============================================================================ +07:13:31 [ 1] [ 4] [0210] +07:13:31 [ 2] [ 16] [6688990601594508] +07:13:31 [ 3] [ 6] [012000] +07:13:31 [ 4] [ 12] [000020000000] +07:13:31 [ 7] [ 10] [0320001236] +07:13:31 [ 11] [ 6] [266731] +07:13:31 [ 12] [ 6] [071236] +07:13:31 [ 13] [ 4] [0320] +07:13:31 [ 15] [ 4] [0320] +07:13:31 [ 18] [ 4] [6011] +07:13:31 [ 19] [ 3] [418] +07:13:31 [ 22] [ 3] [021] +07:13:31 [ 32] [ 6] [180893] +07:13:31 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:13:31 [ 37] [ 12] [507900266731] +07:13:31 [ 39] [ 2] [14] +07:13:31 [ 41] [ 8] [0466PSLB] +07:13:31 [ 49] [ 3] [418] +07:13:31 ============================================================================ +07:13:31 Calculate Source COMM Id = 2 +07:13:31 ============================================================================ +07:13:31 + + +waiting on router queue for slot.... +07:13:34 ============================================================================ +07:13:34 Slot Id : <51> +07:13:34 Transaction Type : REQUEST +07:13:34 Received From : +07:13:34 ============================================================================ +07:13:34 FNo. Len. Field Value +07:13:34 ============================================================================ +07:13:34 [ 1] [ 4] [0800] +07:13:34 [ 2] [ 5] [02531] +07:13:34 [ 3] [ 6] [579078] +07:13:34 [ 7] [ 10] [0320001334] +07:13:34 [ 11] [ 6] [806831] +07:13:34 [ 15] [ 10] [0320001334] +07:13:34 [ 37] [ 11] [57907806831] +07:13:34 [ 70] [ 3] [001] +07:13:34 ============================================================================ +07:13:34 + + +waiting on router queue for slot.... +07:13:34 ============================================================================ +07:13:34 Slot Id : <51> +07:13:34 Transaction Type : RESPONSE +07:13:34 Received From : +07:13:34 ============================================================================ +07:13:34 FNo. Len. Field Value +07:13:34 ============================================================================ +07:13:34 [ 1] [ 4] [0810] +07:13:34 [ 7] [ 10] [0320001334] +07:13:34 [ 11] [ 6] [806831] +07:13:34 [ 15] [ 4] [0320] +07:13:34 [ 37] [ 12] [57907806831] +07:13:34 [ 39] [ 2] [00] +07:13:34 [ 70] [ 3] [001] +07:13:34 ============================================================================ +07:13:34 Sending to : +07:13:34 ============================================================================ +07:13:34 + + +waiting on router queue for slot.... +07:13:42 ============================================================================ +07:13:42 Slot Id : <82> +07:13:42 Transaction Type : REQUEST +07:13:42 Received From : +07:13:42 ============================================================================ +07:13:42 FNo. Len. Field Value +07:13:42 ============================================================================ +07:13:42 [ 1] [ 4] [0800] +07:13:42 [ 7] [ 10] [0320121250] +07:13:42 [ 11] [ 6] [155105] +07:13:42 [ 70] [ 3] [301] +07:13:42 ============================================================================ +07:13:42 + + +waiting on router queue for slot.... +07:13:42 Sending to : +07:13:42 ============================================================================ +07:13:42 ============================================================================ +07:13:42 Slot Id : <82> +07:13:42 Transaction Type : RESPONSE +07:13:42 Received From : +07:13:42 ============================================================================ +07:13:42 FNo. Len. Field Value +07:13:42 ============================================================================ +07:13:42 [ 1] [ 4] [0810] +07:13:42 [ 7] [ 10] [0320121250] +07:13:42 [ 11] [ 6] [155105] +07:13:42 [ 39] [ 2] [00] +07:13:42 [ 70] [ 3] [301] +07:13:42 ============================================================================ +07:13:42 Calculate Source COMM Id = 2 +07:13:42 ============================================================================ +07:13:42 + + +waiting on router queue for slot.... +07:13:59 ============================================================================ +07:13:59 Slot Id : <93> +07:13:59 Transaction Type : REQUEST +07:13:59 Received From : +07:13:59 ============================================================================ +07:13:59 FNo. Len. Field Value +07:13:59 ============================================================================ +07:13:59 [ 1] [ 4] [0800] +07:13:59 [ 7] [ 10] [0320121306] +07:13:59 [ 11] [ 6] [155106] +07:13:59 [ 70] [ 3] [301] +07:13:59 ============================================================================ +07:13:59 + + +waiting on router queue for slot.... +07:13:59 Sending to : +07:13:59 ============================================================================ +07:13:59 ============================================================================ +07:13:59 Slot Id : <93> +07:13:59 Transaction Type : RESPONSE +07:13:59 Received From : +07:13:59 ============================================================================ +07:13:59 FNo. Len. Field Value +07:13:59 ============================================================================ +07:13:59 [ 1] [ 4] [0810] +07:13:59 [ 7] [ 10] [0320121306] +07:13:59 [ 11] [ 6] [155106] +07:13:59 [ 39] [ 2] [00] +07:13:59 [ 70] [ 3] [301] +07:13:59 ============================================================================ +07:13:59 Calculate Source COMM Id = 2 +07:13:59 ============================================================================ +07:13:59 + + +waiting on router queue for slot.... +07:14:04 ============================================================================ +07:14:04 Slot Id : <56> +07:14:04 Transaction Type : REQUEST +07:14:04 Received From : +07:14:04 ============================================================================ +07:14:04 FNo. Len. Field Value +07:14:04 ============================================================================ +07:14:04 [ 1] [ 4] [0200] +07:14:04 [ 2] [ 16] [6688990106481300] +07:14:04 [ 3] [ 6] [010000] +07:14:04 [ 4] [ 12] [000005000000] +07:14:04 [ 7] [ 10] [0320071401] +07:14:04 [ 11] [ 6] [668435] +07:14:05 [ 12] [ 6] [071401] +07:14:05 [ 13] [ 4] [0320] +07:14:05 [ 15] [ 4] [0320] +07:14:05 [ 18] [ 4] [6011] +07:14:05 [ 22] [ 3] [900] +07:14:05 [ 25] [ 2] [02] +07:14:05 [ 28] [ 9] [D00002000] +07:14:05 [ 32] [ 6] [621354] +07:14:05 [ 35] [ 37] [6688990106481300=43121231130065700000] +07:14:05 [ 37] [ 12] [507902507979] +07:14:05 [ 41] [ 8] [05003300] +07:14:05 [ 42] [ 15] [NATIVE ] +07:14:05 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +07:14:05 [ 49] [ 3] [418] +07:14:05 [ 52] [ 16] [611E55152694CB81] +07:14:05 ============================================================================ +07:14:05 + + +waiting on router queue for slot.... +07:14:05 Sending to : +07:14:05 ============================================================================ +07:14:05 Sending to : +07:14:05 ============================================================================ +07:14:05 ============================================================================ +07:14:05 Slot Id : <56> +07:14:05 Transaction Type : REQUEST +07:14:05 Received From : +07:14:05 ============================================================================ +07:14:05 FNo. Len. Field Value +07:14:05 ============================================================================ +07:14:05 [ 1] [ 4] [0200] +07:14:05 [ 2] [ 16] [6688990106481300] +07:14:05 [ 3] [ 6] [010000] +07:14:05 [ 4] [ 12] [000005000000] +07:14:05 [ 7] [ 10] [0320071401] +07:14:05 [ 11] [ 6] [668435] +07:14:05 [ 12] [ 6] [071401] +07:14:05 [ 13] [ 4] [0320] +07:14:05 [ 15] [ 4] [0320] +07:14:05 [ 18] [ 4] [6011] +07:14:05 [ 22] [ 3] [900] +07:14:05 [ 25] [ 2] [02] +07:14:05 [ 28] [ 9] [D00002000] +07:14:05 [ 32] [ 6] [621354] +07:14:05 [ 35] [ 37] [6688990106481300=43121231130065700000] +07:14:05 [ 37] [ 12] [507902507979] +07:14:05 [ 41] [ 8] [05003300] +07:14:05 [ 42] [ 15] [NATIVE ] +07:14:05 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +07:14:05 [ 49] [ 3] [418] +07:14:05 [ 52] [ 16] [611E55152694CB81] +07:14:05 ============================================================================ +07:14:05 + + +waiting on router queue for slot.... +07:14:05 Sending to : +07:14:05 ============================================================================ +07:14:05 ============================================================================ +07:14:05 Slot Id : <56> +07:14:05 Transaction Type : REQUEST +07:14:05 Received From : +07:14:05 ============================================================================ +07:14:05 FNo. Len. Field Value +07:14:05 ============================================================================ +07:14:05 [ 1] [ 4] [0200] +07:14:05 [ 2] [ 16] [6688990106481300] +07:14:05 [ 3] [ 6] [010000] +07:14:05 [ 4] [ 12] [000005000000] +07:14:05 [ 7] [ 10] [0320071401] +07:14:05 [ 11] [ 6] [668435] +07:14:05 [ 12] [ 6] [071401] +07:14:05 [ 13] [ 4] [0320] +07:14:05 [ 15] [ 4] [0320] +07:14:05 [ 18] [ 4] [6011] +07:14:05 [ 22] [ 3] [900] +07:14:05 [ 25] [ 2] [02] +07:14:05 [ 28] [ 9] [D00002000] +07:14:05 [ 32] [ 6] [621354] +07:14:05 [ 35] [ 37] [6688990106481300=43121231130065700000] +07:14:05 [ 37] [ 12] [507902507979] +07:14:05 [ 41] [ 8] [05003300] +07:14:05 [ 42] [ 15] [NATIVE ] +07:14:05 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +07:14:05 [ 49] [ 3] [418] +07:14:05 [ 52] [ 16] [03C64A0D382CFE7D] +07:14:05 ============================================================================ +07:14:05 + + +waiting on router queue for slot.... +07:14:05 Sending to : <4> +07:14:05 ============================================================================ +07:14:06 ============================================================================ +07:14:06 Slot Id : <56> +07:14:06 Transaction Type : RESPONSE +07:14:06 Received From : +07:14:06 ============================================================================ +07:14:06 FNo. Len. Field Value +07:14:06 ============================================================================ +07:14:06 [ 1] [ 4] [0210] +07:14:06 [ 2] [ 16] [6688990106481300] +07:14:06 [ 3] [ 6] [010000] +07:14:06 [ 4] [ 12] [000005000000] +07:14:06 [ 11] [ 6] [668435] +07:14:06 [ 12] [ 6] [071401] +07:14:06 [ 15] [ 4] [0320] +07:14:06 [ 18] [ 4] [6011] +07:14:06 [ 32] [ 6] [621354] +07:14:06 [ 35] [ 37] [6688990106481300=43121231130065700000] +07:14:06 [ 37] [ 12] [507902507979] +07:14:06 [ 38] [ 6] [987188] +07:14:06 [ 39] [ 2] [00] +07:14:06 [ 41] [ 8] [05003300] +07:14:06 [ 49] [ 3] [418] +07:14:06 [ 54] [ 20] [0002418C000027227991] +07:14:06 ============================================================================ +07:14:06 Sending to : +07:14:06 ============================================================================ +07:14:06 + + +waiting on router queue for slot.... +07:14:08 ============================================================================ +07:14:08 Slot Id : <56> +07:14:08 Transaction Type : RESPONSE +07:14:08 Received From : +07:14:08 ============================================================================ +07:14:08 FNo. Len. Field Value +07:14:08 ============================================================================ +07:14:08 [ 1] [ 4] [0210] +07:14:08 [ 2] [ 16] [6688990106481300] +07:14:08 [ 3] [ 6] [010000] +07:14:08 [ 4] [ 12] [000005000000] +07:14:08 [ 11] [ 6] [668435] +07:14:08 [ 12] [ 6] [071401] +07:14:08 [ 15] [ 4] [0320] +07:14:08 [ 18] [ 4] [6011] +07:14:08 [ 32] [ 6] [621354] +07:14:08 [ 35] [ 37] [6688990106481300=43121231130065700000] +07:14:08 [ 37] [ 12] [507902507979] +07:14:08 [ 38] [ 6] [987188] +07:14:08 [ 39] [ 2] [00] +07:14:08 [ 41] [ 8] [05003300] +07:14:08 [ 49] [ 3] [418] +07:14:08 [ 54] [ 20] [0002418C000027227991] +07:14:08 ============================================================================ +07:14:08 Calculate Source COMM Id = 0 +07:14:08 ============================================================================ +07:14:08 + + +waiting on router queue for slot.... +07:14:11 ============================================================================ +07:14:11 Slot Id : <91> +07:14:11 Transaction Type : REQUEST +07:14:11 Received From : +07:14:11 ============================================================================ +07:14:11 FNo. Len. Field Value +07:14:11 ============================================================================ +07:14:11 [ 1] [ 4] [0200] +07:14:11 [ 2] [ 16] [6213544001635231] +07:14:11 [ 3] [ 6] [301000] +07:14:11 [ 7] [ 10] [0320001318] +07:14:11 [ 11] [ 6] [266734] +07:14:11 [ 12] [ 6] [071318] +07:14:11 [ 13] [ 4] [0320] +07:14:11 [ 14] [ 4] [4912] +07:14:11 [ 15] [ 4] [0320] +07:14:11 [ 18] [ 4] [6011] +07:14:11 [ 19] [ 3] [418] +07:14:11 [ 22] [ 3] [021] +07:14:11 [ 25] [ 2] [01] +07:14:11 [ 32] [ 6] [180893] +07:14:11 [ 35] [ 32] [6213544001635231=491212013523636] +07:14:11 [ 37] [ 12] [507900266734] +07:14:11 [ 41] [ 8] [0342KMXF] +07:14:11 [ 42] [ 15] [999999 ] +07:14:11 [ 43] [ 40] [ATM KHAMMUAN XEBUNGFAI LOCATION, Xebangf] +07:14:11 [ 49] [ 3] [418] +07:14:11 [ 52] [ 16] [B46FA4976AD5B1DF] +07:14:11 ============================================================================ +07:14:11 + + +waiting on router queue for slot.... +07:14:11 Sending to : +07:14:11 ============================================================================ +07:14:11 Sending to : +07:14:11 ============================================================================ +07:14:12 ============================================================================ +07:14:12 Slot Id : <91> +07:14:12 Transaction Type : REQUEST +07:14:12 Received From : +07:14:12 ============================================================================ +07:14:12 FNo. Len. Field Value +07:14:12 ============================================================================ +07:14:12 [ 1] [ 4] [0200] +07:14:12 [ 2] [ 16] [6213544001635231] +07:14:12 [ 3] [ 6] [301000] +07:14:12 [ 7] [ 10] [0320001318] +07:14:12 [ 11] [ 6] [266734] +07:14:12 [ 12] [ 6] [071318] +07:14:12 [ 13] [ 4] [0320] +07:14:12 [ 14] [ 4] [4912] +07:14:12 [ 15] [ 4] [0320] +07:14:12 [ 18] [ 4] [6011] +07:14:12 [ 19] [ 3] [418] +07:14:12 [ 22] [ 3] [021] +07:14:12 [ 25] [ 2] [01] +07:14:12 [ 32] [ 6] [180893] +07:14:12 [ 35] [ 32] [6213544001635231=491212013523636] +07:14:12 [ 37] [ 12] [507900266734] +07:14:12 [ 41] [ 8] [0342KMXF] +07:14:12 [ 42] [ 15] [999999 ] +07:14:12 [ 43] [ 40] [ATM KHAMMUAN XEBUNGFAI LOCATION, Xebangf] +07:14:12 [ 49] [ 3] [418] +07:14:12 [ 52] [ 16] [B46FA4976AD5B1DF] +07:14:12 ============================================================================ +07:14:12 + + +waiting on router queue for slot.... +07:14:12 Sending to : +07:14:12 ============================================================================ +07:14:12 ============================================================================ +07:14:12 Slot Id : <91> +07:14:12 Transaction Type : REQUEST +07:14:12 Received From : +07:14:12 ============================================================================ +07:14:12 FNo. Len. Field Value +07:14:12 ============================================================================ +07:14:12 [ 1] [ 4] [0200] +07:14:12 [ 2] [ 16] [6213544001635231] +07:14:12 [ 3] [ 6] [301000] +07:14:12 [ 7] [ 10] [0320001318] +07:14:12 [ 11] [ 6] [266734] +07:14:12 [ 12] [ 6] [071318] +07:14:12 [ 13] [ 4] [0320] +07:14:12 [ 14] [ 4] [4912] +07:14:12 [ 15] [ 4] [0320] +07:14:12 [ 18] [ 4] [6011] +07:14:12 [ 19] [ 3] [418] +07:14:12 [ 22] [ 3] [021] +07:14:12 [ 25] [ 2] [01] +07:14:12 [ 32] [ 6] [180893] +07:14:12 [ 35] [ 32] [6213544001635231=491212013523636] +07:14:12 [ 37] [ 12] [507900266734] +07:14:12 [ 41] [ 8] [0342KMXF] +07:14:12 [ 42] [ 15] [999999 ] +07:14:12 [ 43] [ 40] [ATM KHAMMUAN XEBUNGFAI LOCATION, Xebangf] +07:14:12 [ 49] [ 3] [418] +07:14:12 [ 52] [ 16] [E79E98874CDC737D] +07:14:12 ============================================================================ +07:14:12 + + +waiting on router queue for slot.... +07:14:12 Sending to : <0> +07:14:12 ============================================================================ +07:14:12 ============================================================================ +07:14:12 Slot Id : <91> +07:14:12 Transaction Type : RESPONSE +07:14:12 Received From : +07:14:12 ============================================================================ +07:14:12 FNo. Len. Field Value +07:14:12 ============================================================================ +07:14:12 [ 1] [ 4] [0210] +07:14:12 [ 2] [ 16] [6213544001635231] +07:14:12 [ 3] [ 6] [301000] +07:14:12 [ 4] [ 12] [000000000000] +07:14:12 [ 7] [ 10] [0320001318] +07:14:12 [ 11] [ 6] [266734] +07:14:12 [ 12] [ 6] [071318] +07:14:12 [ 13] [ 4] [0320] +07:14:12 [ 15] [ 4] [0320] +07:14:12 [ 18] [ 4] [6011] +07:14:12 [ 19] [ 3] [418] +07:14:12 [ 32] [ 6] [180893] +07:14:12 [ 35] [ 32] [6213544001635231=491212013523636] +07:14:12 [ 37] [ 12] [507900266734] +07:14:12 [ 38] [ 6] [475206] +07:14:12 [ 39] [ 2] [00] +07:14:12 [ 41] [ 8] [0342KMXF] +07:14:12 [ 49] [ 3] [418] +07:14:12 [ 54] [ 40] [1001418C0017269933141002418C001726993314] +07:14:12 ============================================================================ +07:14:12 Sending to : +07:14:12 ============================================================================ +07:14:12 + + +waiting on router queue for slot.... +07:14:14 ============================================================================ +07:14:14 Slot Id : <100> +07:14:14 Transaction Type : REQUEST +07:14:14 Received From : +07:14:14 ============================================================================ +07:14:14 FNo. Len. Field Value +07:14:14 ============================================================================ +07:14:14 [ 1] [ 4] [0800] +07:14:14 [ 7] [ 10] [0320121322] +07:14:14 [ 11] [ 6] [155107] +07:14:14 [ 70] [ 3] [301] +07:14:14 ============================================================================ +07:14:14 + + +waiting on router queue for slot.... +07:14:14 Sending to : +07:14:14 ============================================================================ +07:14:14 ============================================================================ +07:14:14 Slot Id : <100> +07:14:14 Transaction Type : RESPONSE +07:14:14 Received From : +07:14:14 ============================================================================ +07:14:14 FNo. Len. Field Value +07:14:14 ============================================================================ +07:14:14 [ 1] [ 4] [0810] +07:14:14 [ 7] [ 10] [0320121322] +07:14:14 [ 11] [ 6] [155107] +07:14:14 [ 39] [ 2] [00] +07:14:14 [ 70] [ 3] [301] +07:14:14 ============================================================================ +07:14:14 Calculate Source COMM Id = 2 +07:14:14 ============================================================================ +07:14:14 + + +waiting on router queue for slot.... +07:14:14 ============================================================================ +07:14:14 Slot Id : <91> +07:14:14 Transaction Type : RESPONSE +07:14:14 Received From : +07:14:14 ============================================================================ +07:14:14 FNo. Len. Field Value +07:14:14 ============================================================================ +07:14:14 [ 1] [ 4] [0210] +07:14:14 [ 2] [ 16] [6213544001635231] +07:14:14 [ 3] [ 6] [301000] +07:14:14 [ 4] [ 12] [000000000000] +07:14:14 [ 7] [ 10] [0320001318] +07:14:14 [ 11] [ 6] [266734] +07:14:14 [ 12] [ 6] [071318] +07:14:14 [ 13] [ 4] [0320] +07:14:14 [ 15] [ 4] [0320] +07:14:14 [ 18] [ 4] [6011] +07:14:14 [ 19] [ 3] [418] +07:14:14 [ 32] [ 6] [180893] +07:14:14 [ 35] [ 32] [6213544001635231=491212013523636] +07:14:14 [ 37] [ 12] [507900266734] +07:14:14 [ 38] [ 6] [475206] +07:14:14 [ 39] [ 2] [00] +07:14:14 [ 41] [ 8] [0342KMXF] +07:14:14 [ 49] [ 3] [418] +07:14:14 [ 54] [ 40] [1001418C0017269933141002418C001726993314] +07:14:14 ============================================================================ +07:14:14 Calculate Source COMM Id = 2 +07:14:14 ============================================================================ +07:14:14 + + +waiting on router queue for slot.... +07:14:28 ============================================================================ +07:14:28 Slot Id : <77> +07:14:28 Transaction Type : REQUEST +07:14:28 Received From : +07:14:28 ============================================================================ +07:14:28 FNo. Len. Field Value +07:14:28 ============================================================================ +07:14:28 [ 1] [ 4] [0800] +07:14:28 [ 7] [ 10] [0320142617] +07:14:28 [ 11] [ 6] [072617] +07:14:28 [ 37] [ 12] [57907072617] +07:14:28 [ 70] [ 3] [301] +07:14:28 ============================================================================ +07:14:28 + + +waiting on router queue for slot.... +07:14:28 Sending to : +07:14:28 ============================================================================ +07:14:28 ============================================================================ +07:14:28 Slot Id : <77> +07:14:28 Transaction Type : RESPONSE +07:14:28 Received From : +07:14:28 ============================================================================ +07:14:28 FNo. Len. Field Value +07:14:28 ============================================================================ +07:14:28 [ 1] [ 4] [0810] +07:14:28 [ 7] [ 10] [0320142617] +07:14:28 [ 11] [ 6] [072617] +07:14:28 [ 37] [ 12] [579070726170] +07:14:28 [ 39] [ 2] [00] +07:14:28 [ 70] [ 3] [810] +07:14:28 ============================================================================ +07:14:28 Calculate Source COMM Id = 6 +07:14:28 ============================================================================ +07:14:28 + + +waiting on router queue for slot.... +07:14:29 ============================================================================ +07:14:29 Slot Id : <65> +07:14:29 Transaction Type : REQUEST +07:14:29 Received From : +07:14:29 ============================================================================ +07:14:29 FNo. Len. Field Value +07:14:29 ============================================================================ +07:14:29 [ 1] [ 4] [0800] +07:14:29 [ 7] [ 10] [0320121337] +07:14:29 [ 11] [ 6] [155108] +07:14:29 [ 70] [ 3] [301] +07:14:29 ============================================================================ +07:14:29 + + +waiting on router queue for slot.... +07:14:29 Sending to : +07:14:29 ============================================================================ +07:14:29 ============================================================================ +07:14:29 Slot Id : <65> +07:14:29 Transaction Type : RESPONSE +07:14:29 Received From : +07:14:29 ============================================================================ +07:14:29 FNo. Len. Field Value +07:14:29 ============================================================================ +07:14:29 [ 1] [ 4] [0810] +07:14:29 [ 7] [ 10] [0320121337] +07:14:29 [ 11] [ 6] [155108] +07:14:29 [ 39] [ 2] [00] +07:14:29 [ 70] [ 3] [301] +07:14:29 ============================================================================ +07:14:29 Calculate Source COMM Id = 2 +07:14:29 ============================================================================ +07:14:29 + + +waiting on router queue for slot.... +07:14:36 ============================================================================ +07:14:36 Slot Id : <72> +07:14:36 Transaction Type : REQUEST +07:14:36 Received From : +07:14:36 ============================================================================ +07:14:36 FNo. Len. Field Value +07:14:36 ============================================================================ +07:14:36 [ 1] [ 4] [0800] +07:14:36 [ 2] [ 5] [02531] +07:14:36 [ 3] [ 6] [579078] +07:14:36 [ 7] [ 10] [0320001436] +07:14:36 [ 11] [ 6] [806832] +07:14:36 [ 15] [ 10] [0320001436] +07:14:36 [ 37] [ 11] [57907806832] +07:14:36 [ 70] [ 3] [001] +07:14:36 ============================================================================ +07:14:36 + + +waiting on router queue for slot.... +07:14:36 ============================================================================ +07:14:36 Slot Id : <72> +07:14:36 Transaction Type : RESPONSE +07:14:36 Received From : +07:14:36 ============================================================================ +07:14:36 FNo. Len. Field Value +07:14:36 ============================================================================ +07:14:36 [ 1] [ 4] [0810] +07:14:36 [ 7] [ 10] [0320001436] +07:14:36 [ 11] [ 6] [806832] +07:14:36 [ 15] [ 4] [0320] +07:14:36 [ 37] [ 12] [57907806832] +07:14:36 [ 39] [ 2] [00] +07:14:36 [ 70] [ 3] [001] +07:14:36 ============================================================================ +07:14:36 Sending to : +07:14:36 ============================================================================ +07:14:36 + + +waiting on router queue for slot.... +07:14:40 ============================================================================ +07:14:40 Slot Id : <106> +07:14:40 Transaction Type : REQUEST +07:14:40 Received From : +07:14:40 ============================================================================ +07:14:40 FNo. Len. Field Value +07:14:40 ============================================================================ +07:14:40 [ 1] [ 4] [0800] +07:14:40 [ 7] [ 10] [0320121348] +07:14:40 [ 11] [ 6] [155109] +07:14:40 [ 70] [ 3] [301] +07:14:40 ============================================================================ +07:14:40 + + +waiting on router queue for slot.... +07:14:40 Sending to : +07:14:40 ============================================================================ +07:14:40 ============================================================================ +07:14:40 Slot Id : <106> +07:14:40 Transaction Type : RESPONSE +07:14:40 Received From : +07:14:40 ============================================================================ +07:14:40 FNo. Len. Field Value +07:14:40 ============================================================================ +07:14:40 [ 1] [ 4] [0810] +07:14:40 [ 7] [ 10] [0320121348] +07:14:40 [ 11] [ 6] [155109] +07:14:40 [ 39] [ 2] [00] +07:14:40 [ 70] [ 3] [301] +07:14:40 ============================================================================ +07:14:40 Calculate Source COMM Id = 2 +07:14:40 ============================================================================ +07:14:40 + + +waiting on router queue for slot.... +07:14:41 ============================================================================ +07:14:41 Slot Id : <66> +07:14:41 Transaction Type : REQUEST +07:14:41 Received From : +07:14:41 ============================================================================ +07:14:41 FNo. Len. Field Value +07:14:41 ============================================================================ +07:14:41 [ 1] [ 4] [0200] +07:14:41 [ 2] [ 16] [6688990601594508] +07:14:41 [ 3] [ 6] [301000] +07:14:41 [ 7] [ 10] [0320001349] +07:14:41 [ 11] [ 6] [266736] +07:14:41 [ 12] [ 6] [071349] +07:14:41 [ 13] [ 4] [0320] +07:14:41 [ 14] [ 4] [4110] +07:14:41 [ 15] [ 4] [0320] +07:14:41 [ 18] [ 4] [6011] +07:14:41 [ 19] [ 3] [418] +07:14:41 [ 22] [ 3] [021] +07:14:41 [ 25] [ 2] [01] +07:14:41 [ 32] [ 6] [180893] +07:14:41 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:14:41 [ 37] [ 12] [507900266736] +07:14:41 [ 41] [ 8] [0466PSLB] +07:14:41 [ 42] [ 15] [999999 ] +07:14:41 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:14:41 [ 49] [ 3] [418] +07:14:41 [ 52] [ 16] [EAA53153AB7D7A0B] +07:14:41 ============================================================================ +07:14:41 + + +waiting on router queue for slot.... +07:14:41 Sending to : +07:14:41 ============================================================================ +07:14:41 Sending to : +07:14:41 ============================================================================ +07:14:41 ============================================================================ +07:14:41 Slot Id : <66> +07:14:41 Transaction Type : REQUEST +07:14:41 Received From : +07:14:41 ============================================================================ +07:14:41 FNo. Len. Field Value +07:14:41 ============================================================================ +07:14:41 [ 1] [ 4] [0200] +07:14:41 [ 2] [ 16] [6688990601594508] +07:14:41 [ 3] [ 6] [301000] +07:14:41 [ 7] [ 10] [0320001349] +07:14:41 [ 11] [ 6] [266736] +07:14:41 [ 12] [ 6] [071349] +07:14:41 [ 13] [ 4] [0320] +07:14:41 [ 14] [ 4] [4110] +07:14:41 [ 15] [ 4] [0320] +07:14:41 [ 18] [ 4] [6011] +07:14:41 [ 19] [ 3] [418] +07:14:41 [ 22] [ 3] [021] +07:14:41 [ 25] [ 2] [01] +07:14:41 [ 32] [ 6] [180893] +07:14:41 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:14:41 [ 37] [ 12] [507900266736] +07:14:41 [ 41] [ 8] [0466PSLB] +07:14:41 [ 42] [ 15] [999999 ] +07:14:41 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:14:41 [ 49] [ 3] [418] +07:14:41 [ 52] [ 16] [EAA53153AB7D7A0B] +07:14:41 ============================================================================ +07:14:41 + + +waiting on router queue for slot.... +07:14:41 Sending to : +07:14:41 ============================================================================ +07:14:41 ============================================================================ +07:14:41 Slot Id : <66> +07:14:41 Transaction Type : REQUEST +07:14:41 Received From : +07:14:41 ============================================================================ +07:14:41 FNo. Len. Field Value +07:14:41 ============================================================================ +07:14:41 [ 1] [ 4] [0200] +07:14:41 [ 2] [ 16] [6688990601594508] +07:14:41 [ 3] [ 6] [301000] +07:14:41 [ 7] [ 10] [0320001349] +07:14:41 [ 11] [ 6] [266736] +07:14:41 [ 12] [ 6] [071349] +07:14:41 [ 13] [ 4] [0320] +07:14:41 [ 14] [ 4] [4110] +07:14:41 [ 15] [ 4] [0320] +07:14:41 [ 18] [ 4] [6011] +07:14:41 [ 19] [ 3] [418] +07:14:41 [ 22] [ 3] [021] +07:14:41 [ 25] [ 2] [01] +07:14:41 [ 32] [ 6] [180893] +07:14:41 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:14:41 [ 37] [ 12] [507900266736] +07:14:41 [ 41] [ 8] [0466PSLB] +07:14:41 [ 42] [ 15] [999999 ] +07:14:41 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:14:41 [ 49] [ 3] [418] +07:14:41 [ 52] [ 16] [41A7D8B9858827FD] +07:14:41 ============================================================================ +07:14:41 + + +waiting on router queue for slot.... +07:14:41 Sending to : <0> +07:14:41 ============================================================================ +07:14:42 ============================================================================ +07:14:42 Slot Id : <66> +07:14:42 Transaction Type : RESPONSE +07:14:42 Received From : +07:14:42 ============================================================================ +07:14:42 FNo. Len. Field Value +07:14:42 ============================================================================ +07:14:42 [ 1] [ 4] [0210] +07:14:42 [ 2] [ 16] [6688990601594508] +07:14:42 [ 3] [ 6] [301000] +07:14:42 [ 4] [ 12] [000000000000] +07:14:42 [ 7] [ 10] [0320001349] +07:14:42 [ 11] [ 6] [266736] +07:14:42 [ 12] [ 6] [071349] +07:14:42 [ 13] [ 4] [0320] +07:14:42 [ 15] [ 4] [0320] +07:14:42 [ 18] [ 4] [6011] +07:14:42 [ 19] [ 3] [418] +07:14:42 [ 22] [ 3] [021] +07:14:42 [ 32] [ 6] [180893] +07:14:42 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:14:42 [ 37] [ 12] [507900266736] +07:14:42 [ 39] [ 2] [14] +07:14:42 [ 41] [ 8] [0466PSLB] +07:14:42 [ 49] [ 3] [418] +07:14:42 ============================================================================ +07:14:42 Sending to : +07:14:42 ============================================================================ +07:14:42 + + +waiting on router queue for slot.... +07:14:43 ============================================================================ +07:14:43 Slot Id : <66> +07:14:43 Transaction Type : RESPONSE +07:14:43 Received From : +07:14:43 ============================================================================ +07:14:43 FNo. Len. Field Value +07:14:43 ============================================================================ +07:14:43 [ 1] [ 4] [0210] +07:14:43 [ 2] [ 16] [6688990601594508] +07:14:43 [ 3] [ 6] [301000] +07:14:43 [ 4] [ 12] [000000000000] +07:14:43 [ 7] [ 10] [0320001349] +07:14:43 [ 11] [ 6] [266736] +07:14:43 [ 12] [ 6] [071349] +07:14:43 [ 13] [ 4] [0320] +07:14:43 [ 15] [ 4] [0320] +07:14:43 [ 18] [ 4] [6011] +07:14:43 [ 19] [ 3] [418] +07:14:43 [ 22] [ 3] [021] +07:14:43 [ 32] [ 6] [180893] +07:14:43 [ 35] [ 37] [6688990601594508=41100061450831500000] +07:14:43 [ 37] [ 12] [507900266736] +07:14:43 [ 39] [ 2] [14] +07:14:43 [ 41] [ 8] [0466PSLB] +07:14:43 [ 49] [ 3] [418] +07:14:43 ============================================================================ +07:14:43 Calculate Source COMM Id = 2 +07:14:43 ============================================================================ +07:14:43 + + +waiting on router queue for slot.... +07:14:50 ============================================================================ +07:14:50 Slot Id : <76> +07:14:50 Transaction Type : REQUEST +07:14:50 Received From : +07:14:50 ============================================================================ +07:14:50 FNo. Len. Field Value +07:14:50 ============================================================================ +07:14:50 [ 1] [ 4] [0200] +07:14:50 [ 2] [ 16] [6213545000372205] +07:14:50 [ 3] [ 6] [300000] +07:14:50 [ 4] [ 12] [000000000000] +07:14:50 [ 7] [ 10] [0320071241] +07:14:50 [ 11] [ 6] [929999] +07:14:50 [ 12] [ 6] [071241] +07:14:50 [ 13] [ 4] [0320] +07:14:50 [ 15] [ 4] [0320] +07:14:50 [ 18] [ 4] [6011] +07:14:50 [ 19] [ 3] [418] +07:14:50 [ 22] [ 3] [021] +07:14:50 [ 25] [ 2] [01] +07:14:50 [ 28] [ 9] [D00000000] +07:14:50 [ 32] [ 6] [668899] +07:14:50 [ 35] [ 32] [6213545000372205=491212017220856] +07:14:50 [ 37] [ 12] [507902362913] +07:14:50 [ 41] [ 8] [03016003] +07:14:50 [ 42] [ 15] [APT ] +07:14:50 [ 43] [ 40] [ TADLOR LAONGARM LAO] +07:14:50 [ 49] [ 3] [418] +07:14:50 [ 52] [ 16] [15D27A3BC915F5E2] +07:14:50 ============================================================================ +07:14:50 + + +waiting on router queue for slot.... +07:14:50 Sending to : +07:14:50 ============================================================================ +07:14:50 Sending to : +07:14:50 ============================================================================ +07:14:50 ============================================================================ +07:14:50 Slot Id : <76> +07:14:50 Transaction Type : REQUEST +07:14:50 Received From : +07:14:50 ============================================================================ +07:14:50 FNo. Len. Field Value +07:14:50 ============================================================================ +07:14:50 [ 1] [ 4] [0200] +07:14:50 [ 2] [ 16] [6213545000372205] +07:14:50 [ 3] [ 6] [300000] +07:14:50 [ 4] [ 12] [000000000000] +07:14:50 [ 7] [ 10] [0320071241] +07:14:50 [ 11] [ 6] [929999] +07:14:50 [ 12] [ 6] [071241] +07:14:50 [ 13] [ 4] [0320] +07:14:50 [ 15] [ 4] [0320] +07:14:50 [ 18] [ 4] [6011] +07:14:50 [ 19] [ 3] [418] +07:14:50 [ 22] [ 3] [021] +07:14:50 [ 25] [ 2] [01] +07:14:50 [ 28] [ 9] [D00000000] +07:14:50 [ 32] [ 6] [668899] +07:14:50 [ 35] [ 32] [6213545000372205=491212017220856] +07:14:50 [ 37] [ 12] [507902362913] +07:14:50 [ 41] [ 8] [03016003] +07:14:50 [ 42] [ 15] [APT ] +07:14:50 [ 43] [ 40] [ TADLOR LAONGARM LAO] +07:14:50 [ 49] [ 3] [418] +07:14:50 [ 52] [ 16] [15D27A3BC915F5E2] +07:14:50 ============================================================================ +07:14:50 + + +waiting on router queue for slot.... +07:14:50 Sending to : +07:14:50 ============================================================================ +07:14:50 ============================================================================ +07:14:50 Slot Id : <76> +07:14:50 Transaction Type : REQUEST +07:14:50 Received From : +07:14:50 ============================================================================ +07:14:50 FNo. Len. Field Value +07:14:50 ============================================================================ +07:14:50 [ 1] [ 4] [0200] +07:14:50 [ 2] [ 16] [6213545000372205] +07:14:50 [ 3] [ 6] [300000] +07:14:50 [ 4] [ 12] [000000000000] +07:14:50 [ 7] [ 10] [0320071241] +07:14:50 [ 11] [ 6] [929999] +07:14:50 [ 12] [ 6] [071241] +07:14:50 [ 13] [ 4] [0320] +07:14:50 [ 15] [ 4] [0320] +07:14:50 [ 18] [ 4] [6011] +07:14:50 [ 19] [ 3] [418] +07:14:50 [ 22] [ 3] [021] +07:14:50 [ 25] [ 2] [01] +07:14:50 [ 28] [ 9] [D00000000] +07:14:50 [ 32] [ 6] [668899] +07:14:50 [ 35] [ 32] [6213545000372205=491212017220856] +07:14:50 [ 37] [ 12] [507902362913] +07:14:50 [ 41] [ 8] [03016003] +07:14:50 [ 42] [ 15] [APT ] +07:14:50 [ 43] [ 40] [ TADLOR LAONGARM LAO] +07:14:50 [ 49] [ 3] [418] +07:14:50 [ 52] [ 16] [DD2C09EFA06F9B10] +07:14:50 ============================================================================ +07:14:50 + + +waiting on router queue for slot.... +07:14:50 Sending to : <0> +07:14:50 ============================================================================ +07:14:50 ============================================================================ +07:14:50 Slot Id : <76> +07:14:50 Transaction Type : RESPONSE +07:14:50 Received From : +07:14:50 ============================================================================ +07:14:50 FNo. Len. Field Value +07:14:50 ============================================================================ +07:14:50 [ 1] [ 4] [0210] +07:14:50 [ 2] [ 16] [6213545000372205] +07:14:50 [ 3] [ 6] [300000] +07:14:50 [ 4] [ 12] [000000000000] +07:14:50 [ 7] [ 10] [0320071241] +07:14:50 [ 11] [ 6] [929999] +07:14:50 [ 12] [ 6] [071241] +07:14:50 [ 13] [ 4] [0320] +07:14:50 [ 15] [ 4] [0320] +07:14:50 [ 18] [ 4] [6011] +07:14:50 [ 19] [ 3] [418] +07:14:50 [ 22] [ 3] [021] +07:14:50 [ 32] [ 6] [668899] +07:14:50 [ 35] [ 32] [6213545000372205=491212017220856] +07:14:50 [ 37] [ 12] [507902362913] +07:14:50 [ 38] [ 6] [071447] +07:14:50 [ 39] [ 2] [55] +07:14:50 [ 41] [ 8] [03016003] +07:14:50 [ 49] [ 3] [418] +07:14:50 ============================================================================ +07:14:50 Sending to : +07:14:50 ============================================================================ +07:14:50 + + +waiting on router queue for slot.... +07:14:51 ============================================================================ +07:14:51 Slot Id : <76> +07:14:51 Transaction Type : RESPONSE +07:14:51 Received From : +07:14:51 ============================================================================ +07:14:51 FNo. Len. Field Value +07:14:51 ============================================================================ +07:14:51 [ 1] [ 4] [0210] +07:14:51 [ 2] [ 16] [6213545000372205] +07:14:51 [ 3] [ 6] [300000] +07:14:51 [ 4] [ 12] [000000000000] +07:14:51 [ 7] [ 10] [0320071241] +07:14:51 [ 11] [ 6] [929999] +07:14:51 [ 12] [ 6] [071241] +07:14:51 [ 13] [ 4] [0320] +07:14:51 [ 15] [ 4] [0320] +07:14:51 [ 18] [ 4] [6011] +07:14:51 [ 19] [ 3] [418] +07:14:51 [ 22] [ 3] [021] +07:14:51 [ 32] [ 6] [668899] +07:14:51 [ 35] [ 32] [6213545000372205=491212017220856] +07:14:51 [ 37] [ 12] [507902362913] +07:14:51 [ 38] [ 6] [071447] +07:14:51 [ 39] [ 2] [55] +07:14:51 [ 41] [ 8] [03016003] +07:14:51 [ 49] [ 3] [418] +07:14:51 ============================================================================ +07:14:51 Calculate Source COMM Id = 4 +07:14:51 ============================================================================ +07:14:51 + + +waiting on router queue for slot.... +07:14:55 ============================================================================ +07:14:55 Slot Id : <90> +07:14:55 Transaction Type : REQUEST +07:14:55 Received From : +07:14:55 ============================================================================ +07:14:55 FNo. Len. Field Value +07:14:55 ============================================================================ +07:14:55 [ 1] [ 4] [0800] +07:14:55 [ 7] [ 10] [0320002242] +07:14:55 [ 11] [ 6] [087354] +07:14:55 [ 37] [ 12] [57907087354] +07:14:55 [ 70] [ 3] [301] +07:14:55 ============================================================================ +07:14:55 + + +waiting on router queue for slot.... +07:14:55 Sending to : +07:14:55 ============================================================================ +07:14:55 ============================================================================ +07:14:55 Slot Id : <90> +07:14:55 Transaction Type : RESPONSE +07:14:55 Received From : +07:14:55 ============================================================================ +07:14:55 FNo. Len. Field Value +07:14:55 ============================================================================ +07:14:55 [ 1] [ 4] [0810] +07:14:55 [ 7] [ 10] [0320002242] +07:14:55 [ 11] [ 6] [087354] +07:14:55 [ 37] [ 12] [579070873540] +07:14:55 [ 39] [ 2] [00] +07:14:55 [ 70] [ 3] [810] +07:14:55 ============================================================================ +07:14:55 Calculate Source COMM Id = 1 +07:14:55 ============================================================================ +07:14:55 + + +waiting on router queue for slot.... +07:14:56 ============================================================================ +07:14:56 Slot Id : <114> +07:14:56 Transaction Type : REQUEST +07:14:56 Received From : +07:14:56 ============================================================================ +07:14:56 FNo. Len. Field Value +07:14:56 ============================================================================ +07:14:56 [ 1] [ 4] [0800] +07:14:56 [ 7] [ 10] [0320121405] +07:14:56 [ 11] [ 6] [155110] +07:14:56 [ 70] [ 3] [301] +07:14:56 ============================================================================ +07:14:56 + + +waiting on router queue for slot.... +07:14:56 Sending to : +07:14:56 ============================================================================ +07:14:56 ============================================================================ +07:14:56 Slot Id : <114> +07:14:56 Transaction Type : RESPONSE +07:14:56 Received From : +07:14:56 ============================================================================ +07:14:56 FNo. Len. Field Value +07:14:56 ============================================================================ +07:14:56 [ 1] [ 4] [0810] +07:14:56 [ 7] [ 10] [0320121405] +07:14:56 [ 11] [ 6] [155110] +07:14:56 [ 39] [ 2] [00] +07:14:56 [ 70] [ 3] [301] +07:14:56 ============================================================================ +07:14:56 Calculate Source COMM Id = 2 +07:14:56 ============================================================================ +07:14:56 + + +waiting on router queue for slot.... +07:15:13 ============================================================================ +07:15:13 Slot Id : <74> +07:15:13 Transaction Type : REQUEST +07:15:13 Received From : +07:15:13 ============================================================================ +07:15:13 FNo. Len. Field Value +07:15:13 ============================================================================ +07:15:13 [ 1] [ 4] [0200] +07:15:13 [ 2] [ 16] [6688990104927205] +07:15:13 [ 3] [ 6] [300000] +07:15:13 [ 4] [ 12] [000000000000] +07:15:13 [ 7] [ 10] [0320071509] +07:15:13 [ 11] [ 6] [668590] +07:15:13 [ 12] [ 6] [071509] +07:15:13 [ 13] [ 4] [0320] +07:15:13 [ 15] [ 4] [0320] +07:15:13 [ 18] [ 4] [6011] +07:15:13 [ 22] [ 3] [900] +07:15:13 [ 25] [ 2] [02] +07:15:13 [ 28] [ 9] [D00000000] +07:15:13 [ 32] [ 6] [621354] +07:15:13 [ 35] [ 37] [6688990104927205=43061231720504900000] +07:15:13 [ 37] [ 12] [507903499423] +07:15:13 [ 41] [ 8] [06002200] +07:15:13 [ 42] [ 15] [NATIVE ] +07:15:13 [ 43] [ 40] [Beng Market Beng LAO] +07:15:13 [ 49] [ 3] [418] +07:15:13 [ 52] [ 16] [F4CFEF835FD32A4E] +07:15:13 ============================================================================ +07:15:13 + + +waiting on router queue for slot.... +07:15:13 Sending to : +07:15:13 ============================================================================ +07:15:13 Sending to : +07:15:13 ============================================================================ +07:15:13 ============================================================================ +07:15:13 Slot Id : <107> +07:15:13 Transaction Type : REQUEST +07:15:13 Received From : +07:15:13 ============================================================================ +07:15:13 FNo. Len. Field Value +07:15:13 ============================================================================ +07:15:13 [ 1] [ 4] [0800] +07:15:13 [ 7] [ 10] [0320121421] +07:15:13 [ 11] [ 6] [155111] +07:15:13 [ 70] [ 3] [301] +07:15:13 ============================================================================ +07:15:13 + + +waiting on router queue for slot.... +07:15:13 Sending to : +07:15:13 ============================================================================ +07:15:13 ============================================================================ +07:15:13 Slot Id : <107> +07:15:13 Transaction Type : RESPONSE +07:15:13 Received From : +07:15:13 ============================================================================ +07:15:13 FNo. Len. Field Value +07:15:13 ============================================================================ +07:15:13 [ 1] [ 4] [0810] +07:15:13 [ 7] [ 10] [0320121421] +07:15:13 [ 11] [ 6] [155111] +07:15:13 [ 39] [ 2] [00] +07:15:13 [ 70] [ 3] [301] +07:15:13 ============================================================================ +07:15:13 Calculate Source COMM Id = 2 +07:15:13 ============================================================================ +07:15:13 + + +waiting on router queue for slot.... +07:15:13 ============================================================================ +07:15:13 Slot Id : <74> +07:15:13 Transaction Type : REQUEST +07:15:13 Received From : +07:15:13 ============================================================================ +07:15:13 FNo. Len. Field Value +07:15:13 ============================================================================ +07:15:13 [ 1] [ 4] [0200] +07:15:13 [ 2] [ 16] [6688990104927205] +07:15:13 [ 3] [ 6] [300000] +07:15:13 [ 4] [ 12] [000000000000] +07:15:13 [ 7] [ 10] [0320071509] +07:15:13 [ 11] [ 6] [668590] +07:15:13 [ 12] [ 6] [071509] +07:15:13 [ 13] [ 4] [0320] +07:15:13 [ 15] [ 4] [0320] +07:15:13 [ 18] [ 4] [6011] +07:15:13 [ 22] [ 3] [900] +07:15:13 [ 25] [ 2] [02] +07:15:13 [ 28] [ 9] [D00000000] +07:15:13 [ 32] [ 6] [621354] +07:15:13 [ 35] [ 37] [6688990104927205=43061231720504900000] +07:15:13 [ 37] [ 12] [507903499423] +07:15:13 [ 41] [ 8] [06002200] +07:15:13 [ 42] [ 15] [NATIVE ] +07:15:13 [ 43] [ 40] [Beng Market Beng LAO] +07:15:13 [ 49] [ 3] [418] +07:15:13 [ 52] [ 16] [F4CFEF835FD32A4E] +07:15:13 ============================================================================ +07:15:13 + + +waiting on router queue for slot.... +07:15:13 Sending to : +07:15:13 ============================================================================ +07:15:13 ============================================================================ +07:15:13 Slot Id : <74> +07:15:13 Transaction Type : REQUEST +07:15:13 Received From : +07:15:13 ============================================================================ +07:15:13 FNo. Len. Field Value +07:15:13 ============================================================================ +07:15:13 [ 1] [ 4] [0200] +07:15:13 [ 2] [ 16] [6688990104927205] +07:15:13 [ 3] [ 6] [300000] +07:15:13 [ 4] [ 12] [000000000000] +07:15:13 [ 7] [ 10] [0320071509] +07:15:13 [ 11] [ 6] [668590] +07:15:13 [ 12] [ 6] [071509] +07:15:13 [ 13] [ 4] [0320] +07:15:13 [ 15] [ 4] [0320] +07:15:13 [ 18] [ 4] [6011] +07:15:13 [ 22] [ 3] [900] +07:15:13 [ 25] [ 2] [02] +07:15:13 [ 28] [ 9] [D00000000] +07:15:13 [ 32] [ 6] [621354] +07:15:13 [ 35] [ 37] [6688990104927205=43061231720504900000] +07:15:13 [ 37] [ 12] [507903499423] +07:15:13 [ 41] [ 8] [06002200] +07:15:13 [ 42] [ 15] [NATIVE ] +07:15:13 [ 43] [ 40] [Beng Market Beng LAO] +07:15:13 [ 49] [ 3] [418] +07:15:13 [ 52] [ 16] [474D588D2775D19C] +07:15:13 ============================================================================ +07:15:13 + + +waiting on router queue for slot.... +07:15:13 Sending to : <4> +07:15:13 ============================================================================ +07:15:14 ============================================================================ +07:15:14 Slot Id : <74> +07:15:14 Transaction Type : RESPONSE +07:15:14 Received From : +07:15:14 ============================================================================ +07:15:14 FNo. Len. Field Value +07:15:14 ============================================================================ +07:15:14 [ 1] [ 4] [0210] +07:15:14 [ 2] [ 16] [6688990104927205] +07:15:14 [ 3] [ 6] [300000] +07:15:14 [ 4] [ 12] [000000000000] +07:15:14 [ 11] [ 6] [668590] +07:15:14 [ 12] [ 6] [071509] +07:15:14 [ 15] [ 4] [0320] +07:15:14 [ 18] [ 4] [6011] +07:15:14 [ 32] [ 6] [621354] +07:15:14 [ 35] [ 37] [6688990104927205=43061231720504900000] +07:15:14 [ 37] [ 12] [507903499423] +07:15:14 [ 38] [ 6] [060089] +07:15:14 [ 39] [ 2] [00] +07:15:14 [ 41] [ 8] [06002200] +07:15:14 [ 49] [ 3] [418] +07:15:14 [ 54] [ 20] [0002418C000044359994] +07:15:14 ============================================================================ +07:15:14 Sending to : +07:15:14 ============================================================================ +07:15:14 + + +waiting on router queue for slot.... +07:15:15 ============================================================================ +07:15:15 Slot Id : <74> +07:15:15 Transaction Type : RESPONSE +07:15:15 Received From : +07:15:15 ============================================================================ +07:15:15 FNo. Len. Field Value +07:15:15 ============================================================================ +07:15:15 [ 1] [ 4] [0210] +07:15:15 [ 2] [ 16] [6688990104927205] +07:15:15 [ 3] [ 6] [300000] +07:15:15 [ 4] [ 12] [000000000000] +07:15:15 [ 11] [ 6] [668590] +07:15:15 [ 12] [ 6] [071509] +07:15:15 [ 15] [ 4] [0320] +07:15:15 [ 18] [ 4] [6011] +07:15:15 [ 32] [ 6] [621354] +07:15:15 [ 35] [ 37] [6688990104927205=43061231720504900000] +07:15:15 [ 37] [ 12] [507903499423] +07:15:15 [ 38] [ 6] [060089] +07:15:15 [ 39] [ 2] [00] +07:15:15 [ 41] [ 8] [06002200] +07:15:15 [ 49] [ 3] [418] +07:15:15 [ 54] [ 20] [0002418C000044359994] +07:15:15 ============================================================================ +07:15:15 Calculate Source COMM Id = 0 +07:15:15 ============================================================================ +07:15:15 + + +waiting on router queue for slot.... +07:15:24 ============================================================================ +07:15:24 Slot Id : <83> +07:15:24 Transaction Type : REQUEST +07:15:24 Received From : +07:15:24 ============================================================================ +07:15:24 FNo. Len. Field Value +07:15:24 ============================================================================ +07:15:24 [ 1] [ 4] [0800] +07:15:24 [ 7] [ 10] [0320121432] +07:15:24 [ 11] [ 6] [155112] +07:15:24 [ 70] [ 3] [301] +07:15:24 ============================================================================ +07:15:24 + + +waiting on router queue for slot.... +07:15:24 Sending to : +07:15:24 ============================================================================ +07:15:24 ============================================================================ +07:15:24 Slot Id : <83> +07:15:24 Transaction Type : RESPONSE +07:15:24 Received From : +07:15:24 ============================================================================ +07:15:24 FNo. Len. Field Value +07:15:24 ============================================================================ +07:15:24 [ 1] [ 4] [0810] +07:15:24 [ 7] [ 10] [0320121432] +07:15:24 [ 11] [ 6] [155112] +07:15:24 [ 39] [ 2] [00] +07:15:24 [ 70] [ 3] [301] +07:15:24 ============================================================================ +07:15:24 Calculate Source COMM Id = 2 +07:15:24 ============================================================================ +07:15:24 + + +waiting on router queue for slot.... +07:15:28 ============================================================================ +07:15:28 Slot Id : <92> +07:15:28 Transaction Type : REQUEST +07:15:28 Received From : +07:15:28 ============================================================================ +07:15:28 FNo. Len. Field Value +07:15:28 ============================================================================ +07:15:28 [ 1] [ 4] [0200] +07:15:28 [ 2] [ 16] [6213545000372205] +07:15:28 [ 3] [ 6] [300000] +07:15:28 [ 4] [ 12] [000000000000] +07:15:28 [ 7] [ 10] [0320071320] +07:15:28 [ 11] [ 6] [930014] +07:15:28 [ 12] [ 6] [071320] +07:15:28 [ 13] [ 4] [0320] +07:15:28 [ 15] [ 4] [0320] +07:15:28 [ 18] [ 4] [6011] +07:15:28 [ 19] [ 3] [418] +07:15:28 [ 22] [ 3] [021] +07:15:28 [ 25] [ 2] [01] +07:15:28 [ 28] [ 9] [D00000000] +07:15:28 [ 32] [ 6] [668899] +07:15:28 [ 35] [ 32] [6213545000372205=491212017220856] +07:15:28 [ 37] [ 12] [507902362915] +07:15:28 [ 41] [ 8] [03016003] +07:15:28 [ 42] [ 15] [APT ] +07:15:28 [ 43] [ 40] [ TADLOR LAONGARM LAO] +07:15:28 [ 49] [ 3] [418] +07:15:28 [ 52] [ 16] [7E0777A9BBFE39AD] +07:15:28 ============================================================================ +07:15:28 + + +waiting on router queue for slot.... +07:15:28 Sending to : +07:15:28 ============================================================================ +07:15:28 Sending to : +07:15:28 ============================================================================ +07:15:28 ============================================================================ +07:15:28 Slot Id : <92> +07:15:28 Transaction Type : REQUEST +07:15:28 Received From : +07:15:28 ============================================================================ +07:15:28 FNo. Len. Field Value +07:15:28 ============================================================================ +07:15:28 [ 1] [ 4] [0200] +07:15:28 [ 2] [ 16] [6213545000372205] +07:15:28 [ 3] [ 6] [300000] +07:15:28 [ 4] [ 12] [000000000000] +07:15:28 [ 7] [ 10] [0320071320] +07:15:28 [ 11] [ 6] [930014] +07:15:28 [ 12] [ 6] [071320] +07:15:28 [ 13] [ 4] [0320] +07:15:28 [ 15] [ 4] [0320] +07:15:28 [ 18] [ 4] [6011] +07:15:28 [ 19] [ 3] [418] +07:15:28 [ 22] [ 3] [021] +07:15:28 [ 25] [ 2] [01] +07:15:28 [ 28] [ 9] [D00000000] +07:15:28 [ 32] [ 6] [668899] +07:15:28 [ 35] [ 32] [6213545000372205=491212017220856] +07:15:28 [ 37] [ 12] [507902362915] +07:15:28 [ 41] [ 8] [03016003] +07:15:28 [ 42] [ 15] [APT ] +07:15:28 [ 43] [ 40] [ TADLOR LAONGARM LAO] +07:15:28 [ 49] [ 3] [418] +07:15:28 [ 52] [ 16] [7E0777A9BBFE39AD] +07:15:28 ============================================================================ +07:15:28 + + +waiting on router queue for slot.... +07:15:28 Sending to : +07:15:28 ============================================================================ +07:15:28 ============================================================================ +07:15:28 Slot Id : <92> +07:15:28 Transaction Type : REQUEST +07:15:28 Received From : +07:15:28 ============================================================================ +07:15:28 FNo. Len. Field Value +07:15:28 ============================================================================ +07:15:28 [ 1] [ 4] [0200] +07:15:28 [ 2] [ 16] [6213545000372205] +07:15:28 [ 3] [ 6] [300000] +07:15:28 [ 4] [ 12] [000000000000] +07:15:28 [ 7] [ 10] [0320071320] +07:15:28 [ 11] [ 6] [930014] +07:15:28 [ 12] [ 6] [071320] +07:15:28 [ 13] [ 4] [0320] +07:15:28 [ 15] [ 4] [0320] +07:15:28 [ 18] [ 4] [6011] +07:15:28 [ 19] [ 3] [418] +07:15:28 [ 22] [ 3] [021] +07:15:28 [ 25] [ 2] [01] +07:15:28 [ 28] [ 9] [D00000000] +07:15:28 [ 32] [ 6] [668899] +07:15:28 [ 35] [ 32] [6213545000372205=491212017220856] +07:15:28 [ 37] [ 12] [507902362915] +07:15:28 [ 41] [ 8] [03016003] +07:15:28 [ 42] [ 15] [APT ] +07:15:28 [ 43] [ 40] [ TADLOR LAONGARM LAO] +07:15:28 [ 49] [ 3] [418] +07:15:28 [ 52] [ 16] [772C0270C21EDA25] +07:15:28 ============================================================================ +07:15:28 + + +waiting on router queue for slot.... +07:15:28 Sending to : <0> +07:15:28 ============================================================================ +07:15:29 ============================================================================ +07:15:29 Slot Id : <92> +07:15:29 Transaction Type : RESPONSE +07:15:29 Received From : +07:15:29 ============================================================================ +07:15:29 FNo. Len. Field Value +07:15:29 ============================================================================ +07:15:29 [ 1] [ 4] [0210] +07:15:29 [ 2] [ 16] [6213545000372205] +07:15:29 [ 3] [ 6] [300000] +07:15:29 [ 4] [ 12] [000000000000] +07:15:29 [ 7] [ 10] [0320071320] +07:15:29 [ 11] [ 6] [930014] +07:15:29 [ 12] [ 6] [071320] +07:15:29 [ 13] [ 4] [0320] +07:15:29 [ 15] [ 4] [0320] +07:15:29 [ 18] [ 4] [6011] +07:15:29 [ 19] [ 3] [418] +07:15:29 [ 32] [ 6] [668899] +07:15:29 [ 35] [ 32] [6213545000372205=491212017220856] +07:15:29 [ 37] [ 12] [507902362915] +07:15:29 [ 38] [ 6] [052944] +07:15:29 [ 39] [ 2] [00] +07:15:29 [ 41] [ 8] [03016003] +07:15:29 [ 49] [ 3] [418] +07:15:29 [ 54] [ 40] [0001418C0006644341950002418C000664434195] +07:15:29 ============================================================================ +07:15:29 Sending to : +07:15:29 ============================================================================ +07:15:29 + + +waiting on router queue for slot.... +07:15:30 ============================================================================ +07:15:30 Slot Id : <92> +07:15:30 Transaction Type : RESPONSE +07:15:30 Received From : +07:15:30 ============================================================================ +07:15:30 FNo. Len. Field Value +07:15:30 ============================================================================ +07:15:30 [ 1] [ 4] [0210] +07:15:30 [ 2] [ 16] [6213545000372205] +07:15:30 [ 3] [ 6] [300000] +07:15:30 [ 4] [ 12] [000000000000] +07:15:30 [ 7] [ 10] [0320071320] +07:15:30 [ 11] [ 6] [930014] +07:15:30 [ 12] [ 6] [071320] +07:15:30 [ 13] [ 4] [0320] +07:15:30 [ 15] [ 4] [0320] +07:15:30 [ 18] [ 4] [6011] +07:15:30 [ 19] [ 3] [418] +07:15:30 [ 32] [ 6] [668899] +07:15:30 [ 35] [ 32] [6213545000372205=491212017220856] +07:15:30 [ 37] [ 12] [507902362915] +07:15:30 [ 38] [ 6] [052944] +07:15:30 [ 39] [ 2] [00] +07:15:30 [ 41] [ 8] [03016003] +07:15:30 [ 49] [ 3] [418] +07:15:30 [ 54] [ 40] [0001418C0006644341950002418C000664434195] +07:15:30 ============================================================================ +07:15:30 Calculate Source COMM Id = 4 +07:15:30 ============================================================================ +07:15:30 + + +waiting on router queue for slot.... +07:15:33 ============================================================================ +07:15:33 Slot Id : <118> +07:15:33 Transaction Type : REQUEST +07:15:33 Received From : +07:15:33 ============================================================================ +07:15:33 FNo. Len. Field Value +07:15:33 ============================================================================ +07:15:33 [ 1] [ 4] [0800] +07:15:33 [ 7] [ 10] [0320142722] +07:15:33 [ 11] [ 6] [072722] +07:15:33 [ 37] [ 12] [57907072722] +07:15:33 [ 70] [ 3] [301] +07:15:33 ============================================================================ +07:15:33 + + +waiting on router queue for slot.... +07:15:33 Sending to : +07:15:33 ============================================================================ +07:15:33 ============================================================================ +07:15:33 Slot Id : <118> +07:15:33 Transaction Type : RESPONSE +07:15:33 Received From : +07:15:33 ============================================================================ +07:15:33 FNo. Len. Field Value +07:15:33 ============================================================================ +07:15:33 [ 1] [ 4] [0810] +07:15:33 [ 7] [ 10] [0320142722] +07:15:33 [ 11] [ 6] [072722] +07:15:33 [ 37] [ 12] [579070727220] +07:15:33 [ 39] [ 2] [00] +07:15:33 [ 70] [ 3] [810] +07:15:33 ============================================================================ +07:15:33 Calculate Source COMM Id = 6 +07:15:33 ============================================================================ +07:15:33 + + +waiting on router queue for slot.... +07:15:38 ============================================================================ +07:15:38 Slot Id : <121> +07:15:38 Transaction Type : REQUEST +07:15:38 Received From : +07:15:38 ============================================================================ +07:15:38 FNo. Len. Field Value +07:15:38 ============================================================================ +07:15:38 [ 1] [ 4] [0800] +07:15:38 [ 2] [ 5] [02531] +07:15:38 [ 3] [ 6] [579078] +07:15:38 [ 7] [ 10] [0320001538] +07:15:38 [ 11] [ 6] [806833] +07:15:38 [ 15] [ 10] [0320001538] +07:15:38 [ 37] [ 11] [57907806833] +07:15:38 [ 70] [ 3] [001] +07:15:38 ============================================================================ +07:15:38 + + +waiting on router queue for slot.... +07:15:38 ============================================================================ +07:15:38 Slot Id : <121> +07:15:38 Transaction Type : RESPONSE +07:15:38 Received From : +07:15:38 ============================================================================ +07:15:38 FNo. Len. Field Value +07:15:38 ============================================================================ +07:15:38 [ 1] [ 4] [0810] +07:15:38 [ 7] [ 10] [0320001538] +07:15:38 [ 11] [ 6] [806833] +07:15:38 [ 15] [ 4] [0320] +07:15:38 [ 37] [ 12] [57907806833] +07:15:38 [ 39] [ 2] [00] +07:15:38 [ 70] [ 3] [001] +07:15:38 ============================================================================ +07:15:38 Sending to : +07:15:38 ============================================================================ +07:15:38 + + +waiting on router queue for slot.... +07:15:39 ============================================================================ +07:15:39 Slot Id : <113> +07:15:39 Transaction Type : REQUEST +07:15:39 Received From : +07:15:39 ============================================================================ +07:15:39 FNo. Len. Field Value +07:15:39 ============================================================================ +07:15:39 [ 1] [ 4] [0800] +07:15:39 [ 7] [ 10] [0320121448] +07:15:39 [ 11] [ 6] [155113] +07:15:39 [ 70] [ 3] [301] +07:15:39 ============================================================================ +07:15:39 + + +waiting on router queue for slot.... +07:15:39 Sending to : +07:15:39 ============================================================================ +07:15:39 ============================================================================ +07:15:39 Slot Id : <113> +07:15:39 Transaction Type : RESPONSE +07:15:39 Received From : +07:15:39 ============================================================================ +07:15:39 FNo. Len. Field Value +07:15:39 ============================================================================ +07:15:39 [ 1] [ 4] [0810] +07:15:39 [ 7] [ 10] [0320121448] +07:15:39 [ 11] [ 6] [155113] +07:15:39 [ 39] [ 2] [00] +07:15:39 [ 70] [ 3] [301] +07:15:39 ============================================================================ +07:15:39 Calculate Source COMM Id = 2 +07:15:39 ============================================================================ +07:15:39 + + +waiting on router queue for slot.... +07:15:50 ============================================================================ +07:15:50 Slot Id : <108> +07:15:50 Transaction Type : REQUEST +07:15:50 Received From : +07:15:50 ============================================================================ +07:15:50 FNo. Len. Field Value +07:15:50 ============================================================================ +07:15:50 [ 1] [ 4] [0800] +07:15:50 [ 7] [ 10] [0320121458] +07:15:50 [ 11] [ 6] [155114] +07:15:50 [ 70] [ 3] [301] +07:15:50 ============================================================================ +07:15:50 + + +waiting on router queue for slot.... +07:15:50 Sending to : +07:15:50 ============================================================================ +07:15:50 ============================================================================ +07:15:50 Slot Id : <108> +07:15:50 Transaction Type : RESPONSE +07:15:50 Received From : +07:15:50 ============================================================================ +07:15:50 FNo. Len. Field Value +07:15:50 ============================================================================ +07:15:50 [ 1] [ 4] [0810] +07:15:50 [ 7] [ 10] [0320121458] +07:15:50 [ 11] [ 6] [155114] +07:15:50 [ 39] [ 2] [00] +07:15:50 [ 70] [ 3] [301] +07:15:50 ============================================================================ +07:15:50 Calculate Source COMM Id = 2 +07:15:50 ============================================================================ +07:15:50 + + +waiting on router queue for slot.... +07:16:00 ============================================================================ +07:16:00 Slot Id : <94> +07:16:00 Transaction Type : REQUEST +07:16:00 Received From : +07:16:00 ============================================================================ +07:16:00 FNo. Len. Field Value +07:16:00 ============================================================================ +07:16:00 [ 1] [ 4] [0200] +07:16:00 [ 2] [ 16] [6213545000372205] +07:16:00 [ 3] [ 6] [300000] +07:16:00 [ 4] [ 12] [000000000000] +07:16:00 [ 7] [ 10] [0320071352] +07:16:00 [ 11] [ 6] [930024] +07:16:00 [ 12] [ 6] [071352] +07:16:00 [ 13] [ 4] [0320] +07:16:00 [ 15] [ 4] [0320] +07:16:00 [ 18] [ 4] [6011] +07:16:00 [ 19] [ 3] [418] +07:16:00 [ 22] [ 3] [021] +07:16:00 [ 25] [ 2] [01] +07:16:00 [ 28] [ 9] [D00000000] +07:16:00 [ 32] [ 6] [668899] +07:16:00 [ 35] [ 32] [6213545000372205=491212017220856] +07:16:00 [ 37] [ 12] [507902362916] +07:16:00 [ 41] [ 8] [03016003] +07:16:00 [ 42] [ 15] [APT ] +07:16:00 [ 43] [ 40] [ TADLOR LAONGARM LAO] +07:16:00 [ 49] [ 3] [418] +07:16:00 [ 52] [ 16] [7E0777A9BBFE39AD] +07:16:00 ============================================================================ +07:16:00 + + +waiting on router queue for slot.... +07:16:00 Sending to : +07:16:00 ============================================================================ +07:16:00 Sending to : +07:16:00 ============================================================================ +07:16:00 ============================================================================ +07:16:00 Slot Id : <94> +07:16:00 Transaction Type : REQUEST +07:16:00 Received From : +07:16:00 ============================================================================ +07:16:00 FNo. Len. Field Value +07:16:00 ============================================================================ +07:16:00 [ 1] [ 4] [0200] +07:16:00 [ 2] [ 16] [6213545000372205] +07:16:00 [ 3] [ 6] [300000] +07:16:00 [ 4] [ 12] [000000000000] +07:16:00 [ 7] [ 10] [0320071352] +07:16:00 [ 11] [ 6] [930024] +07:16:00 [ 12] [ 6] [071352] +07:16:00 [ 13] [ 4] [0320] +07:16:00 [ 15] [ 4] [0320] +07:16:00 [ 18] [ 4] [6011] +07:16:00 [ 19] [ 3] [418] +07:16:00 [ 22] [ 3] [021] +07:16:00 [ 25] [ 2] [01] +07:16:00 [ 28] [ 9] [D00000000] +07:16:00 [ 32] [ 6] [668899] +07:16:00 [ 35] [ 32] [6213545000372205=491212017220856] +07:16:00 [ 37] [ 12] [507902362916] +07:16:00 [ 41] [ 8] [03016003] +07:16:00 [ 42] [ 15] [APT ] +07:16:00 [ 43] [ 40] [ TADLOR LAONGARM LAO] +07:16:00 [ 49] [ 3] [418] +07:16:00 [ 52] [ 16] [7E0777A9BBFE39AD] +07:16:00 ============================================================================ +07:16:00 + + +waiting on router queue for slot.... +07:16:00 Sending to : +07:16:00 ============================================================================ +07:16:00 ============================================================================ +07:16:00 Slot Id : <94> +07:16:00 Transaction Type : REQUEST +07:16:00 Received From : +07:16:00 ============================================================================ +07:16:00 FNo. Len. Field Value +07:16:00 ============================================================================ +07:16:00 [ 1] [ 4] [0200] +07:16:00 [ 2] [ 16] [6213545000372205] +07:16:00 [ 3] [ 6] [300000] +07:16:00 [ 4] [ 12] [000000000000] +07:16:00 [ 7] [ 10] [0320071352] +07:16:00 [ 11] [ 6] [930024] +07:16:00 [ 12] [ 6] [071352] +07:16:00 [ 13] [ 4] [0320] +07:16:00 [ 15] [ 4] [0320] +07:16:00 [ 18] [ 4] [6011] +07:16:00 [ 19] [ 3] [418] +07:16:00 [ 22] [ 3] [021] +07:16:00 [ 25] [ 2] [01] +07:16:00 [ 28] [ 9] [D00000000] +07:16:00 [ 32] [ 6] [668899] +07:16:00 [ 35] [ 32] [6213545000372205=491212017220856] +07:16:00 [ 37] [ 12] [507902362916] +07:16:00 [ 41] [ 8] [03016003] +07:16:00 [ 42] [ 15] [APT ] +07:16:00 [ 43] [ 40] [ TADLOR LAONGARM LAO] +07:16:00 [ 49] [ 3] [418] +07:16:00 [ 52] [ 16] [772C0270C21EDA25] +07:16:00 ============================================================================ +07:16:00 + + +waiting on router queue for slot.... +07:16:00 Sending to : <0> +07:16:00 ============================================================================ +07:16:01 ============================================================================ +07:16:01 Slot Id : <94> +07:16:01 Transaction Type : RESPONSE +07:16:01 Received From : +07:16:01 ============================================================================ +07:16:01 FNo. Len. Field Value +07:16:01 ============================================================================ +07:16:01 [ 1] [ 4] [0210] +07:16:01 [ 2] [ 16] [6213545000372205] +07:16:01 [ 3] [ 6] [300000] +07:16:01 [ 4] [ 12] [000000000000] +07:16:01 [ 7] [ 10] [0320071352] +07:16:01 [ 11] [ 6] [930024] +07:16:01 [ 12] [ 6] [071352] +07:16:01 [ 13] [ 4] [0320] +07:16:01 [ 15] [ 4] [0320] +07:16:01 [ 18] [ 4] [6011] +07:16:01 [ 19] [ 3] [418] +07:16:01 [ 32] [ 6] [668899] +07:16:01 [ 35] [ 32] [6213545000372205=491212017220856] +07:16:01 [ 37] [ 12] [507902362916] +07:16:01 [ 38] [ 6] [296377] +07:16:01 [ 39] [ 2] [00] +07:16:01 [ 41] [ 8] [03016003] +07:16:01 [ 49] [ 3] [418] +07:16:01 [ 54] [ 40] [0001418C0006644341950002418C000664434195] +07:16:01 ============================================================================ +07:16:01 Sending to : +07:16:01 ============================================================================ +07:16:01 + + +waiting on router queue for slot.... +07:16:02 ============================================================================ +07:16:02 Slot Id : <94> +07:16:02 Transaction Type : RESPONSE +07:16:02 Received From : +07:16:02 ============================================================================ +07:16:02 FNo. Len. Field Value +07:16:02 ============================================================================ +07:16:02 [ 1] [ 4] [0210] +07:16:02 [ 2] [ 16] [6213545000372205] +07:16:02 [ 3] [ 6] [300000] +07:16:02 [ 4] [ 12] [000000000000] +07:16:02 [ 7] [ 10] [0320071352] +07:16:02 [ 11] [ 6] [930024] +07:16:02 [ 12] [ 6] [071352] +07:16:02 [ 13] [ 4] [0320] +07:16:02 [ 15] [ 4] [0320] +07:16:02 [ 18] [ 4] [6011] +07:16:02 [ 19] [ 3] [418] +07:16:02 [ 32] [ 6] [668899] +07:16:02 [ 35] [ 32] [6213545000372205=491212017220856] +07:16:02 [ 37] [ 12] [507902362916] +07:16:02 [ 38] [ 6] [296377] +07:16:02 [ 39] [ 2] [00] +07:16:02 [ 41] [ 8] [03016003] +07:16:02 [ 49] [ 3] [418] +07:16:02 [ 54] [ 40] [0001418C0006644341950002418C000664434195] +07:16:02 ============================================================================ +07:16:02 Calculate Source COMM Id = 4 +07:16:02 ============================================================================ +07:16:02 + + +waiting on router queue for slot.... +07:16:05 ============================================================================ +07:16:05 Slot Id : <115> +07:16:05 Transaction Type : REQUEST +07:16:05 Received From : +07:16:05 ============================================================================ +07:16:05 FNo. Len. Field Value +07:16:05 ============================================================================ +07:16:05 [ 1] [ 4] [0800] +07:16:05 [ 7] [ 10] [0320121514] +07:16:05 [ 11] [ 6] [155115] +07:16:05 [ 70] [ 3] [301] +07:16:05 ============================================================================ +07:16:05 + + +waiting on router queue for slot.... +07:16:05 Sending to : +07:16:05 ============================================================================ +07:16:05 ============================================================================ +07:16:05 Slot Id : <115> +07:16:05 Transaction Type : RESPONSE +07:16:05 Received From : +07:16:05 ============================================================================ +07:16:05 FNo. Len. Field Value +07:16:05 ============================================================================ +07:16:05 [ 1] [ 4] [0810] +07:16:05 [ 7] [ 10] [0320121514] +07:16:05 [ 11] [ 6] [155115] +07:16:05 [ 39] [ 2] [00] +07:16:05 [ 70] [ 3] [301] +07:16:05 ============================================================================ +07:16:05 Calculate Source COMM Id = 2 +07:16:05 ============================================================================ +07:16:05 + + +waiting on router queue for slot.... +07:16:17 ============================================================================ +07:16:17 Slot Id : <127> +07:16:17 Transaction Type : REQUEST +07:16:17 Received From : +07:16:17 ============================================================================ +07:16:17 FNo. Len. Field Value +07:16:17 ============================================================================ +07:16:17 [ 1] [ 4] [0800] +07:16:17 [ 7] [ 10] [0320121526] +07:16:17 [ 11] [ 6] [155116] +07:16:17 [ 70] [ 3] [301] +07:16:17 ============================================================================ +07:16:17 + + +waiting on router queue for slot.... +07:16:17 Sending to : +07:16:17 ============================================================================ +07:16:17 ============================================================================ +07:16:17 Slot Id : <127> +07:16:17 Transaction Type : RESPONSE +07:16:17 Received From : +07:16:17 ============================================================================ +07:16:17 FNo. Len. Field Value +07:16:17 ============================================================================ +07:16:17 [ 1] [ 4] [0810] +07:16:17 [ 7] [ 10] [0320121526] +07:16:17 [ 11] [ 6] [155116] +07:16:17 [ 39] [ 2] [00] +07:16:17 [ 70] [ 3] [301] +07:16:17 ============================================================================ +07:16:17 Calculate Source COMM Id = 2 +07:16:17 ============================================================================ +07:16:17 + + +waiting on router queue for slot.... +07:16:17 ============================================================================ +07:16:17 Slot Id : <125> +07:16:17 Transaction Type : REQUEST +07:16:17 Received From : +07:16:17 ============================================================================ +07:16:17 FNo. Len. Field Value +07:16:17 ============================================================================ +07:16:17 [ 1] [ 4] [0200] +07:16:17 [ 2] [ 16] [6213545000836928] +07:16:17 [ 3] [ 6] [010000] +07:16:17 [ 4] [ 12] [000200000000] +07:16:17 [ 7] [ 10] [0320001525] +07:16:17 [ 11] [ 6] [266747] +07:16:17 [ 12] [ 6] [071525] +07:16:17 [ 13] [ 4] [0320] +07:16:17 [ 14] [ 4] [4912] +07:16:17 [ 15] [ 4] [0320] +07:16:17 [ 18] [ 4] [6011] +07:16:17 [ 19] [ 3] [418] +07:16:17 [ 22] [ 3] [021] +07:16:17 [ 25] [ 2] [01] +07:16:17 [ 28] [ 9] [D00002000] +07:16:17 [ 32] [ 6] [180893] +07:16:17 [ 35] [ 32] [6213545000836928=491212013692130] +07:16:17 [ 37] [ 12] [507900266747] +07:16:17 [ 41] [ 8] [0466PSLB] +07:16:17 [ 42] [ 15] [999999 ] +07:16:17 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:16:17 [ 49] [ 3] [418] +07:16:17 [ 52] [ 16] [13F3EF4FD5DAB512] +07:16:17 ============================================================================ +07:16:17 + + +waiting on router queue for slot.... +07:16:17 Sending to : +07:16:17 ============================================================================ +07:16:17 Sending to : +07:16:17 ============================================================================ +07:16:18 ============================================================================ +07:16:18 Slot Id : <125> +07:16:18 Transaction Type : REQUEST +07:16:18 Received From : +07:16:18 ============================================================================ +07:16:18 FNo. Len. Field Value +07:16:18 ============================================================================ +07:16:18 [ 1] [ 4] [0200] +07:16:18 [ 2] [ 16] [6213545000836928] +07:16:18 [ 3] [ 6] [010000] +07:16:18 [ 4] [ 12] [000200000000] +07:16:18 [ 7] [ 10] [0320001525] +07:16:18 [ 11] [ 6] [266747] +07:16:18 [ 12] [ 6] [071525] +07:16:18 [ 13] [ 4] [0320] +07:16:18 [ 14] [ 4] [4912] +07:16:18 [ 15] [ 4] [0320] +07:16:18 [ 18] [ 4] [6011] +07:16:18 [ 19] [ 3] [418] +07:16:18 [ 22] [ 3] [021] +07:16:18 [ 25] [ 2] [01] +07:16:18 [ 28] [ 9] [D00002000] +07:16:18 [ 32] [ 6] [180893] +07:16:18 [ 35] [ 32] [6213545000836928=491212013692130] +07:16:18 [ 37] [ 12] [507900266747] +07:16:18 [ 41] [ 8] [0466PSLB] +07:16:18 [ 42] [ 15] [999999 ] +07:16:18 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:16:18 [ 49] [ 3] [418] +07:16:18 [ 52] [ 16] [13F3EF4FD5DAB512] +07:16:18 ============================================================================ +07:16:18 + + +waiting on router queue for slot.... +07:16:18 Sending to : +07:16:18 ============================================================================ +07:16:18 ============================================================================ +07:16:18 Slot Id : <125> +07:16:18 Transaction Type : REQUEST +07:16:18 Received From : +07:16:18 ============================================================================ +07:16:18 FNo. Len. Field Value +07:16:18 ============================================================================ +07:16:18 [ 1] [ 4] [0200] +07:16:18 [ 2] [ 16] [6213545000836928] +07:16:18 [ 3] [ 6] [010000] +07:16:18 [ 4] [ 12] [000200000000] +07:16:18 [ 7] [ 10] [0320001525] +07:16:18 [ 11] [ 6] [266747] +07:16:18 [ 12] [ 6] [071525] +07:16:18 [ 13] [ 4] [0320] +07:16:18 [ 14] [ 4] [4912] +07:16:18 [ 15] [ 4] [0320] +07:16:18 [ 18] [ 4] [6011] +07:16:18 [ 19] [ 3] [418] +07:16:18 [ 22] [ 3] [021] +07:16:18 [ 25] [ 2] [01] +07:16:18 [ 28] [ 9] [D00002000] +07:16:18 [ 32] [ 6] [180893] +07:16:18 [ 35] [ 32] [6213545000836928=491212013692130] +07:16:18 [ 37] [ 12] [507900266747] +07:16:18 [ 41] [ 8] [0466PSLB] +07:16:18 [ 42] [ 15] [999999 ] +07:16:18 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:16:18 [ 49] [ 3] [418] +07:16:18 [ 52] [ 16] [B081289C1D1BC0C1] +07:16:18 ============================================================================ +07:16:18 + + +waiting on router queue for slot.... +07:16:18 Sending to : <0> +07:16:18 ============================================================================ +07:16:18 ============================================================================ +07:16:18 Slot Id : <125> +07:16:18 Transaction Type : RESPONSE +07:16:18 Received From : +07:16:18 ============================================================================ +07:16:18 FNo. Len. Field Value +07:16:18 ============================================================================ +07:16:18 [ 1] [ 4] [0210] +07:16:18 [ 2] [ 16] [6213545000836928] +07:16:18 [ 3] [ 6] [010000] +07:16:18 [ 4] [ 12] [000200000000] +07:16:18 [ 7] [ 10] [0320001525] +07:16:18 [ 11] [ 6] [266747] +07:16:18 [ 12] [ 6] [071525] +07:16:18 [ 13] [ 4] [0320] +07:16:18 [ 15] [ 4] [0320] +07:16:18 [ 18] [ 4] [6011] +07:16:18 [ 19] [ 3] [418] +07:16:18 [ 22] [ 3] [021] +07:16:18 [ 32] [ 6] [180893] +07:16:18 [ 35] [ 32] [6213545000836928=491212013692130] +07:16:18 [ 37] [ 12] [507900266747] +07:16:18 [ 39] [ 2] [61] +07:16:18 [ 41] [ 8] [0466PSLB] +07:16:18 [ 49] [ 3] [418] +07:16:18 ============================================================================ +07:16:18 Sending to : +07:16:18 ============================================================================ +07:16:18 + + +waiting on router queue for slot.... +07:16:19 ============================================================================ +07:16:19 Slot Id : <125> +07:16:19 Transaction Type : RESPONSE +07:16:19 Received From : +07:16:19 ============================================================================ +07:16:19 FNo. Len. Field Value +07:16:19 ============================================================================ +07:16:19 [ 1] [ 4] [0210] +07:16:19 [ 2] [ 16] [6213545000836928] +07:16:19 [ 3] [ 6] [010000] +07:16:19 [ 4] [ 12] [000200000000] +07:16:19 [ 7] [ 10] [0320001525] +07:16:19 [ 11] [ 6] [266747] +07:16:19 [ 12] [ 6] [071525] +07:16:19 [ 13] [ 4] [0320] +07:16:19 [ 15] [ 4] [0320] +07:16:19 [ 18] [ 4] [6011] +07:16:19 [ 19] [ 3] [418] +07:16:19 [ 22] [ 3] [021] +07:16:19 [ 32] [ 6] [180893] +07:16:19 [ 35] [ 32] [6213545000836928=491212013692130] +07:16:19 [ 37] [ 12] [507900266747] +07:16:19 [ 39] [ 2] [61] +07:16:19 [ 41] [ 8] [0466PSLB] +07:16:19 [ 49] [ 3] [418] +07:16:19 ============================================================================ +07:16:19 Calculate Source COMM Id = 2 +07:16:19 ============================================================================ +07:16:19 + + +waiting on router queue for slot.... +07:16:20 ============================================================================ +07:16:20 Slot Id : <95> +07:16:20 Transaction Type : REQUEST +07:16:20 Received From : +07:16:20 ============================================================================ +07:16:20 FNo. Len. Field Value +07:16:20 ============================================================================ +07:16:20 [ 1] [ 4] [0800] +07:16:20 [ 7] [ 10] [0320001412] +07:16:20 [ 11] [ 6] [037191] +07:16:20 [ 37] [ 12] [57907037191] +07:16:20 [ 70] [ 3] [301] +07:16:20 ============================================================================ +07:16:20 + + +waiting on router queue for slot.... +07:16:20 Sending to : +07:16:20 ============================================================================ +07:16:20 ============================================================================ +07:16:20 Slot Id : <95> +07:16:20 Transaction Type : RESPONSE +07:16:20 Received From : +07:16:20 ============================================================================ +07:16:20 FNo. Len. Field Value +07:16:20 ============================================================================ +07:16:20 [ 1] [ 4] [0810] +07:16:20 [ 7] [ 10] [0320001412] +07:16:20 [ 11] [ 6] [037191] +07:16:20 [ 37] [ 12] [579070371910] +07:16:20 [ 39] [ 2] [00] +07:16:20 [ 70] [ 3] [810] +07:16:20 ============================================================================ +07:16:20 Calculate Source COMM Id = 4 +07:16:20 ============================================================================ +07:16:20 + + +waiting on router queue for slot.... +07:16:33 ============================================================================ +07:16:33 Slot Id : <75> +07:16:33 Transaction Type : REQUEST +07:16:33 Received From : +07:16:33 ============================================================================ +07:16:33 FNo. Len. Field Value +07:16:33 ============================================================================ +07:16:33 [ 1] [ 4] [0800] +07:16:33 [ 7] [ 10] [0320121541] +07:16:33 [ 11] [ 6] [155117] +07:16:33 [ 70] [ 3] [301] +07:16:33 ============================================================================ +07:16:33 + + +waiting on router queue for slot.... +07:16:33 Sending to : +07:16:33 ============================================================================ +07:16:33 ============================================================================ +07:16:33 Slot Id : <75> +07:16:33 Transaction Type : RESPONSE +07:16:33 Received From : +07:16:33 ============================================================================ +07:16:33 FNo. Len. Field Value +07:16:33 ============================================================================ +07:16:33 [ 1] [ 4] [0810] +07:16:33 [ 7] [ 10] [0320121541] +07:16:33 [ 11] [ 6] [155117] +07:16:33 [ 39] [ 2] [00] +07:16:33 [ 70] [ 3] [301] +07:16:33 ============================================================================ +07:16:33 Calculate Source COMM Id = 2 +07:16:33 ============================================================================ +07:16:33 + + +waiting on router queue for slot.... +07:16:38 ============================================================================ +07:16:38 Slot Id : <53> +07:16:38 Transaction Type : REQUEST +07:16:38 Received From : +07:16:38 ============================================================================ +07:16:38 FNo. Len. Field Value +07:16:38 ============================================================================ +07:16:38 [ 1] [ 4] [0800] +07:16:38 [ 7] [ 10] [0320142827] +07:16:38 [ 11] [ 6] [072827] +07:16:38 [ 37] [ 12] [57907072827] +07:16:38 [ 70] [ 3] [301] +07:16:38 ============================================================================ +07:16:38 + + +waiting on router queue for slot.... +07:16:38 Sending to : +07:16:38 ============================================================================ +07:16:38 ============================================================================ +07:16:38 Slot Id : <53> +07:16:38 Transaction Type : RESPONSE +07:16:38 Received From : +07:16:38 ============================================================================ +07:16:38 FNo. Len. Field Value +07:16:38 ============================================================================ +07:16:38 [ 1] [ 4] [0810] +07:16:38 [ 7] [ 10] [0320142827] +07:16:38 [ 11] [ 6] [072827] +07:16:38 [ 37] [ 12] [579070728270] +07:16:38 [ 39] [ 2] [00] +07:16:38 [ 70] [ 3] [810] +07:16:38 ============================================================================ +07:16:38 Calculate Source COMM Id = 6 +07:16:38 ============================================================================ +07:16:38 + + +waiting on router queue for slot.... +07:16:40 ============================================================================ +07:16:40 Slot Id : <134> +07:16:40 Transaction Type : REQUEST +07:16:40 Received From : +07:16:40 ============================================================================ +07:16:40 FNo. Len. Field Value +07:16:40 ============================================================================ +07:16:40 [ 1] [ 4] [0800] +07:16:40 [ 2] [ 5] [02531] +07:16:40 [ 3] [ 6] [579078] +07:16:40 [ 7] [ 10] [0320001640] +07:16:40 [ 11] [ 6] [806834] +07:16:40 [ 15] [ 10] [0320001640] +07:16:40 [ 37] [ 11] [57907806834] +07:16:40 [ 70] [ 3] [001] +07:16:40 ============================================================================ +07:16:40 + + +waiting on router queue for slot.... +07:16:40 ============================================================================ +07:16:40 Slot Id : <134> +07:16:40 Transaction Type : RESPONSE +07:16:40 Received From : +07:16:40 ============================================================================ +07:16:40 FNo. Len. Field Value +07:16:40 ============================================================================ +07:16:40 [ 1] [ 4] [0810] +07:16:40 [ 7] [ 10] [0320001640] +07:16:40 [ 11] [ 6] [806834] +07:16:40 [ 15] [ 4] [0320] +07:16:40 [ 37] [ 12] [57907806834] +07:16:40 [ 39] [ 2] [00] +07:16:40 [ 70] [ 3] [001] +07:16:40 ============================================================================ +07:16:40 Sending to : +07:16:40 ============================================================================ +07:16:40 + + +waiting on router queue for slot.... +07:16:40 ============================================================================ +07:16:40 Slot Id : <96> +07:16:40 Transaction Type : REQUEST +07:16:40 Received From : +07:16:40 ============================================================================ +07:16:40 FNo. Len. Field Value +07:16:40 ============================================================================ +07:16:40 [ 1] [ 4] [0200] +07:16:40 [ 2] [ 16] [6688990104927205] +07:16:40 [ 3] [ 6] [010000] +07:16:40 [ 4] [ 12] [000025000000] +07:16:40 [ 7] [ 10] [0320071637] +07:16:40 [ 11] [ 6] [668768] +07:16:40 [ 12] [ 6] [071637] +07:16:40 [ 13] [ 4] [0320] +07:16:40 [ 15] [ 4] [0320] +07:16:40 [ 18] [ 4] [6011] +07:16:40 [ 22] [ 3] [900] +07:16:40 [ 25] [ 2] [02] +07:16:40 [ 28] [ 9] [D00002000] +07:16:40 [ 32] [ 6] [621354] +07:16:40 [ 35] [ 37] [6688990104927205=43061231720504900000] +07:16:40 [ 37] [ 12] [507903499425] +07:16:40 [ 41] [ 8] [06002200] +07:16:40 [ 42] [ 15] [NATIVE ] +07:16:40 [ 43] [ 40] [Beng Market Beng LAO] +07:16:40 [ 49] [ 3] [418] +07:16:40 [ 52] [ 16] [F4CFEF835FD32A4E] +07:16:40 ============================================================================ +07:16:40 + + +waiting on router queue for slot.... +07:16:40 Sending to : +07:16:40 ============================================================================ +07:16:40 Sending to : +07:16:40 ============================================================================ +07:16:41 ============================================================================ +07:16:41 Slot Id : <96> +07:16:41 Transaction Type : REQUEST +07:16:41 Received From : +07:16:41 ============================================================================ +07:16:41 FNo. Len. Field Value +07:16:41 ============================================================================ +07:16:41 [ 1] [ 4] [0200] +07:16:41 [ 2] [ 16] [6688990104927205] +07:16:41 [ 3] [ 6] [010000] +07:16:41 [ 4] [ 12] [000025000000] +07:16:41 [ 7] [ 10] [0320071637] +07:16:41 [ 11] [ 6] [668768] +07:16:41 [ 12] [ 6] [071637] +07:16:41 [ 13] [ 4] [0320] +07:16:41 [ 15] [ 4] [0320] +07:16:41 [ 18] [ 4] [6011] +07:16:41 [ 22] [ 3] [900] +07:16:41 [ 25] [ 2] [02] +07:16:41 [ 28] [ 9] [D00002000] +07:16:41 [ 32] [ 6] [621354] +07:16:41 [ 35] [ 37] [6688990104927205=43061231720504900000] +07:16:41 [ 37] [ 12] [507903499425] +07:16:41 [ 41] [ 8] [06002200] +07:16:41 [ 42] [ 15] [NATIVE ] +07:16:41 [ 43] [ 40] [Beng Market Beng LAO] +07:16:41 [ 49] [ 3] [418] +07:16:41 [ 52] [ 16] [F4CFEF835FD32A4E] +07:16:41 ============================================================================ +07:16:41 + + +waiting on router queue for slot.... +07:16:41 Sending to : +07:16:41 ============================================================================ +07:16:41 ============================================================================ +07:16:41 Slot Id : <96> +07:16:41 Transaction Type : REQUEST +07:16:41 Received From : +07:16:41 ============================================================================ +07:16:41 FNo. Len. Field Value +07:16:41 ============================================================================ +07:16:41 [ 1] [ 4] [0200] +07:16:41 [ 2] [ 16] [6688990104927205] +07:16:41 [ 3] [ 6] [010000] +07:16:41 [ 4] [ 12] [000025000000] +07:16:41 [ 7] [ 10] [0320071637] +07:16:41 [ 11] [ 6] [668768] +07:16:41 [ 12] [ 6] [071637] +07:16:41 [ 13] [ 4] [0320] +07:16:41 [ 15] [ 4] [0320] +07:16:41 [ 18] [ 4] [6011] +07:16:41 [ 22] [ 3] [900] +07:16:41 [ 25] [ 2] [02] +07:16:41 [ 28] [ 9] [D00002000] +07:16:41 [ 32] [ 6] [621354] +07:16:41 [ 35] [ 37] [6688990104927205=43061231720504900000] +07:16:41 [ 37] [ 12] [507903499425] +07:16:41 [ 41] [ 8] [06002200] +07:16:41 [ 42] [ 15] [NATIVE ] +07:16:41 [ 43] [ 40] [Beng Market Beng LAO] +07:16:41 [ 49] [ 3] [418] +07:16:41 [ 52] [ 16] [474D588D2775D19C] +07:16:41 ============================================================================ +07:16:41 + + +waiting on router queue for slot.... +07:16:41 Sending to : <4> +07:16:41 ============================================================================ +07:16:42 ============================================================================ +07:16:42 Slot Id : <96> +07:16:42 Transaction Type : RESPONSE +07:16:42 Received From : +07:16:42 ============================================================================ +07:16:42 FNo. Len. Field Value +07:16:42 ============================================================================ +07:16:42 [ 1] [ 4] [0210] +07:16:42 [ 2] [ 16] [6688990104927205] +07:16:42 [ 3] [ 6] [010000] +07:16:42 [ 4] [ 12] [000025000000] +07:16:42 [ 11] [ 6] [668768] +07:16:42 [ 12] [ 6] [071637] +07:16:42 [ 15] [ 4] [0320] +07:16:42 [ 18] [ 4] [6011] +07:16:42 [ 32] [ 6] [621354] +07:16:42 [ 35] [ 37] [6688990104927205=43061231720504900000] +07:16:42 [ 37] [ 12] [507903499425] +07:16:42 [ 38] [ 6] [816350] +07:16:42 [ 39] [ 2] [00] +07:16:42 [ 41] [ 8] [06002200] +07:16:42 [ 49] [ 3] [418] +07:16:42 [ 54] [ 20] [0002418C000019159994] +07:16:42 ============================================================================ +07:16:42 Sending to : +07:16:42 ============================================================================ +07:16:42 + + +waiting on router queue for slot.... +07:16:43 ============================================================================ +07:16:43 Slot Id : <96> +07:16:43 Transaction Type : RESPONSE +07:16:43 Received From : +07:16:43 ============================================================================ +07:16:43 FNo. Len. Field Value +07:16:43 ============================================================================ +07:16:43 [ 1] [ 4] [0210] +07:16:43 [ 2] [ 16] [6688990104927205] +07:16:43 [ 3] [ 6] [010000] +07:16:43 [ 4] [ 12] [000025000000] +07:16:43 [ 11] [ 6] [668768] +07:16:43 [ 12] [ 6] [071637] +07:16:43 [ 15] [ 4] [0320] +07:16:43 [ 18] [ 4] [6011] +07:16:43 [ 32] [ 6] [621354] +07:16:43 [ 35] [ 37] [6688990104927205=43061231720504900000] +07:16:43 [ 37] [ 12] [507903499425] +07:16:43 [ 38] [ 6] [816350] +07:16:43 [ 39] [ 2] [00] +07:16:43 [ 41] [ 8] [06002200] +07:16:43 [ 49] [ 3] [418] +07:16:43 [ 54] [ 20] [0002418C000019159994] +07:16:43 ============================================================================ +07:16:43 Calculate Source COMM Id = 0 +07:16:43 ============================================================================ +07:16:43 + + +waiting on router queue for slot.... +07:16:44 ============================================================================ +07:16:44 Slot Id : <98> +07:16:44 Transaction Type : REQUEST +07:16:44 Received From : +07:16:44 ============================================================================ +07:16:44 FNo. Len. Field Value +07:16:44 ============================================================================ +07:16:44 [ 1] [ 4] [0800] +07:16:44 [ 7] [ 10] [0320121552] +07:16:44 [ 11] [ 6] [155118] +07:16:44 [ 70] [ 3] [301] +07:16:44 ============================================================================ +07:16:44 + + +waiting on router queue for slot.... +07:16:44 Sending to : +07:16:44 ============================================================================ +07:16:44 ============================================================================ +07:16:44 Slot Id : <98> +07:16:44 Transaction Type : RESPONSE +07:16:44 Received From : +07:16:44 ============================================================================ +07:16:44 FNo. Len. Field Value +07:16:44 ============================================================================ +07:16:44 [ 1] [ 4] [0810] +07:16:44 [ 7] [ 10] [0320121552] +07:16:44 [ 11] [ 6] [155118] +07:16:44 [ 39] [ 2] [00] +07:16:44 [ 70] [ 3] [301] +07:16:44 ============================================================================ +07:16:44 Calculate Source COMM Id = 2 +07:16:44 ============================================================================ +07:16:44 + + +waiting on router queue for slot.... +07:16:47 ============================================================================ +07:16:47 Slot Id : <103> +07:16:47 Transaction Type : REQUEST +07:16:47 Received From : +07:16:47 ============================================================================ +07:16:47 FNo. Len. Field Value +07:16:47 ============================================================================ +07:16:47 [ 1] [ 4] [0200] +07:16:47 [ 2] [ 16] [6213545000836928] +07:16:47 [ 3] [ 6] [010000] +07:16:47 [ 4] [ 12] [000100000000] +07:16:47 [ 7] [ 10] [0320001555] +07:16:47 [ 11] [ 6] [266752] +07:16:47 [ 12] [ 6] [071555] +07:16:47 [ 13] [ 4] [0320] +07:16:47 [ 14] [ 4] [4912] +07:16:47 [ 15] [ 4] [0320] +07:16:47 [ 18] [ 4] [6011] +07:16:47 [ 19] [ 3] [418] +07:16:47 [ 22] [ 3] [021] +07:16:47 [ 25] [ 2] [01] +07:16:47 [ 28] [ 9] [D00002000] +07:16:47 [ 32] [ 6] [180893] +07:16:47 [ 35] [ 32] [6213545000836928=491212013692130] +07:16:47 [ 37] [ 12] [507900266752] +07:16:47 [ 41] [ 8] [0466PSLB] +07:16:47 [ 42] [ 15] [999999 ] +07:16:47 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:16:47 [ 49] [ 3] [418] +07:16:47 [ 52] [ 16] [13F3EF4FD5DAB512] +07:16:47 ============================================================================ +07:16:47 + + +waiting on router queue for slot.... +07:16:47 Sending to : +07:16:47 ============================================================================ +07:16:47 Sending to : +07:16:47 ============================================================================ +07:16:48 ============================================================================ +07:16:48 Slot Id : <103> +07:16:48 Transaction Type : REQUEST +07:16:48 Received From : +07:16:48 ============================================================================ +07:16:48 FNo. Len. Field Value +07:16:48 ============================================================================ +07:16:48 [ 1] [ 4] [0200] +07:16:48 [ 2] [ 16] [6213545000836928] +07:16:48 [ 3] [ 6] [010000] +07:16:48 [ 4] [ 12] [000100000000] +07:16:48 [ 7] [ 10] [0320001555] +07:16:48 [ 11] [ 6] [266752] +07:16:48 [ 12] [ 6] [071555] +07:16:48 [ 13] [ 4] [0320] +07:16:48 [ 14] [ 4] [4912] +07:16:48 [ 15] [ 4] [0320] +07:16:48 [ 18] [ 4] [6011] +07:16:48 [ 19] [ 3] [418] +07:16:48 [ 22] [ 3] [021] +07:16:48 [ 25] [ 2] [01] +07:16:48 [ 28] [ 9] [D00002000] +07:16:48 [ 32] [ 6] [180893] +07:16:48 [ 35] [ 32] [6213545000836928=491212013692130] +07:16:48 [ 37] [ 12] [507900266752] +07:16:48 [ 41] [ 8] [0466PSLB] +07:16:48 [ 42] [ 15] [999999 ] +07:16:48 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:16:48 [ 49] [ 3] [418] +07:16:48 [ 52] [ 16] [13F3EF4FD5DAB512] +07:16:48 ============================================================================ +07:16:48 + + +waiting on router queue for slot.... +07:16:48 Sending to : +07:16:48 ============================================================================ +07:16:48 ============================================================================ +07:16:48 Slot Id : <103> +07:16:48 Transaction Type : REQUEST +07:16:48 Received From : +07:16:48 ============================================================================ +07:16:48 FNo. Len. Field Value +07:16:48 ============================================================================ +07:16:48 [ 1] [ 4] [0200] +07:16:48 [ 2] [ 16] [6213545000836928] +07:16:48 [ 3] [ 6] [010000] +07:16:48 [ 4] [ 12] [000100000000] +07:16:48 [ 7] [ 10] [0320001555] +07:16:48 [ 11] [ 6] [266752] +07:16:48 [ 12] [ 6] [071555] +07:16:48 [ 13] [ 4] [0320] +07:16:48 [ 14] [ 4] [4912] +07:16:48 [ 15] [ 4] [0320] +07:16:48 [ 18] [ 4] [6011] +07:16:48 [ 19] [ 3] [418] +07:16:48 [ 22] [ 3] [021] +07:16:48 [ 25] [ 2] [01] +07:16:48 [ 28] [ 9] [D00002000] +07:16:48 [ 32] [ 6] [180893] +07:16:48 [ 35] [ 32] [6213545000836928=491212013692130] +07:16:48 [ 37] [ 12] [507900266752] +07:16:48 [ 41] [ 8] [0466PSLB] +07:16:48 [ 42] [ 15] [999999 ] +07:16:48 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:16:48 [ 49] [ 3] [418] +07:16:48 [ 52] [ 16] [B081289C1D1BC0C1] +07:16:48 ============================================================================ +07:16:48 + + +waiting on router queue for slot.... +07:16:48 Sending to : <0> +07:16:48 ============================================================================ +07:16:48 ============================================================================ +07:16:48 Slot Id : <103> +07:16:48 Transaction Type : RESPONSE +07:16:48 Received From : +07:16:48 ============================================================================ +07:16:48 FNo. Len. Field Value +07:16:48 ============================================================================ +07:16:48 [ 1] [ 4] [0210] +07:16:48 [ 2] [ 16] [6213545000836928] +07:16:48 [ 3] [ 6] [010000] +07:16:48 [ 4] [ 12] [000100000000] +07:16:48 [ 7] [ 10] [0320001555] +07:16:48 [ 11] [ 6] [266752] +07:16:48 [ 12] [ 6] [071555] +07:16:48 [ 13] [ 4] [0320] +07:16:48 [ 15] [ 4] [0320] +07:16:48 [ 18] [ 4] [6011] +07:16:48 [ 19] [ 3] [418] +07:16:48 [ 32] [ 6] [180893] +07:16:48 [ 35] [ 32] [6213545000836928=491212013692130] +07:16:48 [ 37] [ 12] [507900266752] +07:16:48 [ 38] [ 6] [464131] +07:16:48 [ 39] [ 2] [00] +07:16:48 [ 41] [ 8] [0466PSLB] +07:16:48 [ 49] [ 3] [418] +07:16:48 [ 54] [ 40] [0001418C0003922457600002418C000392245760] +07:16:48 ============================================================================ +07:16:48 Sending to : +07:16:48 ============================================================================ +07:16:48 + + +waiting on router queue for slot.... +07:16:50 ============================================================================ +07:16:50 Slot Id : <103> +07:16:50 Transaction Type : RESPONSE +07:16:50 Received From : +07:16:50 ============================================================================ +07:16:50 FNo. Len. Field Value +07:16:50 ============================================================================ +07:16:50 [ 1] [ 4] [0210] +07:16:50 [ 2] [ 16] [6213545000836928] +07:16:50 [ 3] [ 6] [010000] +07:16:50 [ 4] [ 12] [000100000000] +07:16:50 [ 7] [ 10] [0320001555] +07:16:50 [ 11] [ 6] [266752] +07:16:50 [ 12] [ 6] [071555] +07:16:50 [ 13] [ 4] [0320] +07:16:50 [ 15] [ 4] [0320] +07:16:50 [ 18] [ 4] [6011] +07:16:50 [ 19] [ 3] [418] +07:16:50 [ 32] [ 6] [180893] +07:16:50 [ 35] [ 32] [6213545000836928=491212013692130] +07:16:50 [ 37] [ 12] [507900266752] +07:16:50 [ 38] [ 6] [464131] +07:16:50 [ 39] [ 2] [00] +07:16:50 [ 41] [ 8] [0466PSLB] +07:16:50 [ 49] [ 3] [418] +07:16:50 [ 54] [ 40] [0001418C0003922457600002418C000392245760] +07:16:50 ============================================================================ +07:16:50 Calculate Source COMM Id = 2 +07:16:50 ============================================================================ +07:16:50 + + +waiting on router queue for slot.... +07:17:05 ============================================================================ +07:17:05 Slot Id : <71> +07:17:05 Transaction Type : REQUEST +07:17:05 Received From : +07:17:05 ============================================================================ +07:17:05 FNo. Len. Field Value +07:17:05 ============================================================================ +07:17:05 [ 1] [ 4] [0800] +07:17:05 [ 7] [ 10] [0320121613] +07:17:05 [ 11] [ 6] [155119] +07:17:05 [ 70] [ 3] [301] +07:17:05 ============================================================================ +07:17:05 + + +waiting on router queue for slot.... +07:17:05 Sending to : +07:17:05 ============================================================================ +07:17:05 ============================================================================ +07:17:05 Slot Id : <71> +07:17:05 Transaction Type : RESPONSE +07:17:05 Received From : +07:17:05 ============================================================================ +07:17:05 FNo. Len. Field Value +07:17:05 ============================================================================ +07:17:05 [ 1] [ 4] [0810] +07:17:05 [ 7] [ 10] [0320121613] +07:17:05 [ 11] [ 6] [155119] +07:17:05 [ 39] [ 2] [00] +07:17:05 [ 70] [ 3] [301] +07:17:05 ============================================================================ +07:17:05 Calculate Source COMM Id = 2 +07:17:05 ============================================================================ +07:17:05 + + +waiting on router queue for slot.... +07:17:17 ============================================================================ +07:17:17 Slot Id : <101> +07:17:17 Transaction Type : REQUEST +07:17:17 Received From : +07:17:17 ============================================================================ +07:17:17 FNo. Len. Field Value +07:17:17 ============================================================================ +07:17:17 [ 1] [ 4] [0800] +07:17:17 [ 7] [ 10] [0320121625] +07:17:17 [ 11] [ 6] [155120] +07:17:17 [ 70] [ 3] [301] +07:17:17 ============================================================================ +07:17:17 + + +waiting on router queue for slot.... +07:17:17 Sending to : +07:17:17 ============================================================================ +07:17:17 ============================================================================ +07:17:17 Slot Id : <101> +07:17:17 Transaction Type : RESPONSE +07:17:17 Received From : +07:17:17 ============================================================================ +07:17:17 FNo. Len. Field Value +07:17:17 ============================================================================ +07:17:17 [ 1] [ 4] [0810] +07:17:17 [ 7] [ 10] [0320121625] +07:17:17 [ 11] [ 6] [155120] +07:17:17 [ 39] [ 2] [00] +07:17:17 [ 70] [ 3] [301] +07:17:17 ============================================================================ +07:17:17 Calculate Source COMM Id = 2 +07:17:17 ============================================================================ +07:17:17 + + +waiting on router queue for slot.... +07:17:29 ============================================================================ +07:17:29 Slot Id : <102> +07:17:29 Transaction Type : REQUEST +07:17:29 Received From : +07:17:29 ============================================================================ +07:17:29 FNo. Len. Field Value +07:17:29 ============================================================================ +07:17:29 [ 1] [ 4] [0800] +07:17:29 [ 7] [ 10] [0320121637] +07:17:29 [ 11] [ 6] [155121] +07:17:29 [ 70] [ 3] [301] +07:17:29 ============================================================================ +07:17:29 + + +waiting on router queue for slot.... +07:17:29 Sending to : +07:17:29 ============================================================================ +07:17:29 ============================================================================ +07:17:29 Slot Id : <102> +07:17:29 Transaction Type : RESPONSE +07:17:29 Received From : +07:17:29 ============================================================================ +07:17:29 FNo. Len. Field Value +07:17:29 ============================================================================ +07:17:29 [ 1] [ 4] [0810] +07:17:29 [ 7] [ 10] [0320121637] +07:17:29 [ 11] [ 6] [155121] +07:17:29 [ 39] [ 2] [00] +07:17:29 [ 70] [ 3] [301] +07:17:29 ============================================================================ +07:17:29 Calculate Source COMM Id = 2 +07:17:29 ============================================================================ +07:17:29 + + +waiting on router queue for slot.... +07:17:42 ============================================================================ +07:17:42 Slot Id : <109> +07:17:42 Transaction Type : REQUEST +07:17:42 Received From : +07:17:42 ============================================================================ +07:17:42 FNo. Len. Field Value +07:17:42 ============================================================================ +07:17:42 [ 1] [ 4] [0800] +07:17:42 [ 2] [ 5] [02531] +07:17:42 [ 3] [ 6] [579078] +07:17:42 [ 7] [ 10] [0320001742] +07:17:42 [ 11] [ 6] [806835] +07:17:42 [ 15] [ 10] [0320001742] +07:17:42 [ 37] [ 11] [57907806835] +07:17:42 [ 70] [ 3] [001] +07:17:42 ============================================================================ +07:17:42 + + +waiting on router queue for slot.... +07:17:42 ============================================================================ +07:17:42 Slot Id : <109> +07:17:42 Transaction Type : RESPONSE +07:17:42 Received From : +07:17:42 ============================================================================ +07:17:42 FNo. Len. Field Value +07:17:42 ============================================================================ +07:17:42 [ 1] [ 4] [0810] +07:17:42 [ 7] [ 10] [0320001742] +07:17:42 [ 11] [ 6] [806835] +07:17:42 [ 15] [ 4] [0320] +07:17:42 [ 37] [ 12] [57907806835] +07:17:42 [ 39] [ 2] [00] +07:17:42 [ 70] [ 3] [001] +07:17:42 ============================================================================ +07:17:42 Sending to : +07:17:42 ============================================================================ +07:17:42 + + +waiting on router queue for slot.... +07:17:43 ============================================================================ +07:17:43 Slot Id : <70> +07:17:43 Transaction Type : REQUEST +07:17:43 Received From : +07:17:43 ============================================================================ +07:17:43 FNo. Len. Field Value +07:17:43 ============================================================================ +07:17:43 [ 1] [ 4] [0800] +07:17:43 [ 7] [ 10] [0320142932] +07:17:43 [ 11] [ 6] [072932] +07:17:43 [ 37] [ 12] [57907072932] +07:17:43 [ 70] [ 3] [301] +07:17:43 ============================================================================ +07:17:43 + + +waiting on router queue for slot.... +07:17:43 Sending to : +07:17:43 ============================================================================ +07:17:43 ============================================================================ +07:17:43 Slot Id : <70> +07:17:43 Transaction Type : RESPONSE +07:17:43 Received From : +07:17:43 ============================================================================ +07:17:43 FNo. Len. Field Value +07:17:43 ============================================================================ +07:17:43 [ 1] [ 4] [0810] +07:17:43 [ 7] [ 10] [0320142932] +07:17:43 [ 11] [ 6] [072932] +07:17:43 [ 37] [ 12] [579070729320] +07:17:43 [ 39] [ 2] [00] +07:17:43 [ 70] [ 3] [810] +07:17:43 ============================================================================ +07:17:43 Calculate Source COMM Id = 6 +07:17:43 ============================================================================ +07:17:43 + + +waiting on router queue for slot.... +07:17:45 ============================================================================ +07:17:45 Slot Id : <136> +07:17:45 Transaction Type : REQUEST +07:17:45 Received From : +07:17:45 ============================================================================ +07:17:45 FNo. Len. Field Value +07:17:45 ============================================================================ +07:17:45 [ 1] [ 4] [0800] +07:17:45 [ 7] [ 10] [0320121653] +07:17:45 [ 11] [ 6] [155122] +07:17:45 [ 70] [ 3] [301] +07:17:45 ============================================================================ +07:17:45 + + +waiting on router queue for slot.... +07:17:45 Sending to : +07:17:45 ============================================================================ +07:17:45 ============================================================================ +07:17:45 Slot Id : <136> +07:17:45 Transaction Type : RESPONSE +07:17:45 Received From : +07:17:45 ============================================================================ +07:17:45 FNo. Len. Field Value +07:17:45 ============================================================================ +07:17:45 [ 1] [ 4] [0810] +07:17:45 [ 7] [ 10] [0320121653] +07:17:45 [ 11] [ 6] [155122] +07:17:45 [ 39] [ 2] [00] +07:17:45 [ 70] [ 3] [301] +07:17:45 ============================================================================ +07:17:45 Calculate Source COMM Id = 2 +07:17:45 ============================================================================ +07:17:45 + + +waiting on router queue for slot.... +07:17:53 ============================================================================ +07:17:53 Slot Id : <131> +07:17:53 Transaction Type : REQUEST +07:17:53 Received From : +07:17:53 ============================================================================ +07:17:53 FNo. Len. Field Value +07:17:53 ============================================================================ +07:17:53 [ 1] [ 4] [0800] +07:17:53 [ 7] [ 10] [0320071741] +07:17:53 [ 11] [ 6] [076886] +07:17:53 [ 37] [ 12] [507907076886] +07:17:53 [ 70] [ 3] [ ] +07:17:53 ============================================================================ +07:17:53 + + +waiting on router queue for slot.... +07:17:53 Sending to : +07:17:53 ============================================================================ +07:17:53 ============================================================================ +07:17:53 Slot Id : <131> +07:17:53 Transaction Type : RESPONSE +07:17:53 Received From : +07:17:53 ============================================================================ +07:17:53 FNo. Len. Field Value +07:17:53 ============================================================================ +07:17:53 [ 1] [ 4] [0810] +07:17:53 [ 7] [ 10] [0320071741] +07:17:53 [ 11] [ 6] [076886] +07:17:53 [ 37] [ 12] [507907076886] +07:17:53 [ 39] [ 2] [91] +07:17:53 [ 70] [ 3] [ ] +07:17:53 ============================================================================ +07:17:53 Calculate Source COMM Id = 3 +07:17:53 ============================================================================ +07:17:53 + + +waiting on router queue for slot.... +07:17:55 ============================================================================ +07:17:55 Slot Id : <129> +07:17:55 Transaction Type : REQUEST +07:17:55 Received From : +07:17:55 ============================================================================ +07:17:55 FNo. Len. Field Value +07:17:55 ============================================================================ +07:17:55 [ 1] [ 4] [0800] +07:17:55 [ 7] [ 10] [0320121704] +07:17:55 [ 11] [ 6] [155123] +07:17:55 [ 70] [ 3] [301] +07:17:55 ============================================================================ +07:17:55 + + +waiting on router queue for slot.... +07:17:55 Sending to : +07:17:55 ============================================================================ +07:17:55 ============================================================================ +07:17:55 Slot Id : <129> +07:17:55 Transaction Type : RESPONSE +07:17:55 Received From : +07:17:55 ============================================================================ +07:17:55 FNo. Len. Field Value +07:17:55 ============================================================================ +07:17:55 [ 1] [ 4] [0810] +07:17:55 [ 7] [ 10] [0320121704] +07:17:55 [ 11] [ 6] [155123] +07:17:55 [ 39] [ 2] [00] +07:17:55 [ 70] [ 3] [301] +07:17:55 ============================================================================ +07:17:55 Calculate Source COMM Id = 2 +07:17:55 ============================================================================ +07:17:55 + + +waiting on router queue for slot.... +07:18:11 ============================================================================ +07:18:11 Slot Id : <85> +07:18:11 Transaction Type : REQUEST +07:18:11 Received From : +07:18:11 ============================================================================ +07:18:11 FNo. Len. Field Value +07:18:11 ============================================================================ +07:18:11 [ 1] [ 4] [0800] +07:18:11 [ 7] [ 10] [0320121719] +07:18:11 [ 11] [ 6] [155124] +07:18:11 [ 70] [ 3] [301] +07:18:11 ============================================================================ +07:18:11 + + +waiting on router queue for slot.... +07:18:11 Sending to : +07:18:11 ============================================================================ +07:18:11 ============================================================================ +07:18:11 Slot Id : <85> +07:18:11 Transaction Type : RESPONSE +07:18:11 Received From : +07:18:11 ============================================================================ +07:18:11 FNo. Len. Field Value +07:18:11 ============================================================================ +07:18:11 [ 1] [ 4] [0810] +07:18:11 [ 7] [ 10] [0320121719] +07:18:11 [ 11] [ 6] [155124] +07:18:11 [ 39] [ 2] [00] +07:18:11 [ 70] [ 3] [301] +07:18:11 ============================================================================ +07:18:11 Calculate Source COMM Id = 2 +07:18:11 ============================================================================ +07:18:11 + + +waiting on router queue for slot.... +07:18:18 ============================================================================ +07:18:18 Slot Id : <105> +07:18:18 Transaction Type : REQUEST +07:18:18 Received From : +07:18:18 ============================================================================ +07:18:18 FNo. Len. Field Value +07:18:18 ============================================================================ +07:18:18 [ 1] [ 4] [0200] +07:18:18 [ 2] [ 16] [6688990103635908] +07:18:18 [ 3] [ 6] [013000] +07:18:18 [ 4] [ 12] [000100000000] +07:18:18 [ 7] [ 10] [0320071815] +07:18:18 [ 11] [ 6] [668982] +07:18:18 [ 12] [ 6] [071815] +07:18:18 [ 13] [ 4] [0320] +07:18:18 [ 15] [ 4] [0320] +07:18:18 [ 18] [ 4] [6011] +07:18:18 [ 22] [ 3] [900] +07:18:18 [ 25] [ 2] [02] +07:18:18 [ 28] [ 9] [D00002000] +07:18:18 [ 32] [ 6] [621354] +07:18:18 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:18:18 [ 37] [ 12] [507903499427] +07:18:18 [ 41] [ 8] [06002200] +07:18:18 [ 42] [ 15] [NATIVE ] +07:18:18 [ 43] [ 40] [Beng Market Beng LAO] +07:18:18 [ 49] [ 3] [418] +07:18:18 [ 52] [ 16] [609F3A3095489120] +07:18:18 ============================================================================ +07:18:18 + + +waiting on router queue for slot.... +07:18:18 Sending to : +07:18:18 ============================================================================ +07:18:18 Sending to : +07:18:18 ============================================================================ +07:18:19 ============================================================================ +07:18:19 Slot Id : <105> +07:18:19 Transaction Type : REQUEST +07:18:19 Received From : +07:18:19 ============================================================================ +07:18:19 FNo. Len. Field Value +07:18:19 ============================================================================ +07:18:19 [ 1] [ 4] [0200] +07:18:19 [ 2] [ 16] [6688990103635908] +07:18:19 [ 3] [ 6] [013000] +07:18:19 [ 4] [ 12] [000100000000] +07:18:19 [ 7] [ 10] [0320071815] +07:18:19 [ 11] [ 6] [668982] +07:18:19 [ 12] [ 6] [071815] +07:18:19 [ 13] [ 4] [0320] +07:18:19 [ 15] [ 4] [0320] +07:18:19 [ 18] [ 4] [6011] +07:18:19 [ 22] [ 3] [900] +07:18:19 [ 25] [ 2] [02] +07:18:19 [ 28] [ 9] [D00002000] +07:18:19 [ 32] [ 6] [621354] +07:18:19 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:18:19 [ 37] [ 12] [507903499427] +07:18:19 [ 41] [ 8] [06002200] +07:18:19 [ 42] [ 15] [NATIVE ] +07:18:19 [ 43] [ 40] [Beng Market Beng LAO] +07:18:19 [ 49] [ 3] [418] +07:18:19 [ 52] [ 16] [609F3A3095489120] +07:18:19 ============================================================================ +07:18:19 + + +waiting on router queue for slot.... +07:18:19 Sending to : +07:18:19 ============================================================================ +07:18:19 ============================================================================ +07:18:19 Slot Id : <105> +07:18:19 Transaction Type : REQUEST +07:18:19 Received From : +07:18:19 ============================================================================ +07:18:19 FNo. Len. Field Value +07:18:19 ============================================================================ +07:18:19 [ 1] [ 4] [0200] +07:18:19 [ 2] [ 16] [6688990103635908] +07:18:19 [ 3] [ 6] [013000] +07:18:19 [ 4] [ 12] [000100000000] +07:18:19 [ 7] [ 10] [0320071815] +07:18:19 [ 11] [ 6] [668982] +07:18:19 [ 12] [ 6] [071815] +07:18:19 [ 13] [ 4] [0320] +07:18:19 [ 15] [ 4] [0320] +07:18:19 [ 18] [ 4] [6011] +07:18:19 [ 22] [ 3] [900] +07:18:19 [ 25] [ 2] [02] +07:18:19 [ 28] [ 9] [D00002000] +07:18:19 [ 32] [ 6] [621354] +07:18:19 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:18:19 [ 37] [ 12] [507903499427] +07:18:19 [ 41] [ 8] [06002200] +07:18:19 [ 42] [ 15] [NATIVE ] +07:18:19 [ 43] [ 40] [Beng Market Beng LAO] +07:18:19 [ 49] [ 3] [418] +07:18:19 [ 52] [ 16] [16C30DE06CDF1FC4] +07:18:19 ============================================================================ +07:18:19 + + +waiting on router queue for slot.... +07:18:19 Sending to : <4> +07:18:19 ============================================================================ +07:18:20 ============================================================================ +07:18:20 Slot Id : <105> +07:18:20 Transaction Type : RESPONSE +07:18:20 Received From : +07:18:20 ============================================================================ +07:18:20 FNo. Len. Field Value +07:18:20 ============================================================================ +07:18:20 [ 1] [ 4] [0210] +07:18:20 [ 2] [ 16] [6688990103635908] +07:18:20 [ 3] [ 6] [013000] +07:18:20 [ 4] [ 12] [000100000000] +07:18:20 [ 11] [ 6] [668982] +07:18:20 [ 12] [ 6] [071815] +07:18:20 [ 15] [ 4] [0320] +07:18:20 [ 18] [ 4] [6011] +07:18:20 [ 32] [ 6] [621354] +07:18:20 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:18:20 [ 37] [ 12] [507903499427] +07:18:20 [ 38] [ 6] [905891] +07:18:20 [ 39] [ 2] [00] +07:18:20 [ 41] [ 8] [06002200] +07:18:20 [ 49] [ 3] [418] +07:18:20 [ 54] [ 20] [3002418C000299615685] +07:18:20 ============================================================================ +07:18:20 Sending to : +07:18:20 ============================================================================ +07:18:20 + + +waiting on router queue for slot.... +07:18:21 ============================================================================ +07:18:21 Slot Id : <105> +07:18:21 Transaction Type : RESPONSE +07:18:21 Received From : +07:18:21 ============================================================================ +07:18:21 FNo. Len. Field Value +07:18:21 ============================================================================ +07:18:21 [ 1] [ 4] [0210] +07:18:21 [ 2] [ 16] [6688990103635908] +07:18:21 [ 3] [ 6] [013000] +07:18:21 [ 4] [ 12] [000100000000] +07:18:21 [ 11] [ 6] [668982] +07:18:21 [ 12] [ 6] [071815] +07:18:21 [ 15] [ 4] [0320] +07:18:21 [ 18] [ 4] [6011] +07:18:21 [ 32] [ 6] [621354] +07:18:21 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:18:21 [ 37] [ 12] [507903499427] +07:18:21 [ 38] [ 6] [905891] +07:18:21 [ 39] [ 2] [00] +07:18:21 [ 41] [ 8] [06002200] +07:18:21 [ 49] [ 3] [418] +07:18:21 [ 54] [ 20] [3002418C000299615685] +07:18:21 ============================================================================ +07:18:21 Calculate Source COMM Id = 0 +07:18:21 ============================================================================ +07:18:21 + + +waiting on router queue for slot.... +07:18:24 ============================================================================ +07:18:24 Slot Id : <87> +07:18:24 Transaction Type : REQUEST +07:18:24 Received From : +07:18:24 ============================================================================ +07:18:24 FNo. Len. Field Value +07:18:24 ============================================================================ +07:18:24 [ 1] [ 4] [0800] +07:18:24 [ 7] [ 10] [0320121730] +07:18:24 [ 11] [ 6] [155125] +07:18:24 [ 70] [ 3] [301] +07:18:24 ============================================================================ +07:18:24 + + +waiting on router queue for slot.... +07:18:24 Sending to : +07:18:24 ============================================================================ +07:18:24 ============================================================================ +07:18:24 Slot Id : <87> +07:18:24 Transaction Type : RESPONSE +07:18:24 Received From : +07:18:24 ============================================================================ +07:18:24 FNo. Len. Field Value +07:18:24 ============================================================================ +07:18:24 [ 1] [ 4] [0810] +07:18:24 [ 7] [ 10] [0320121730] +07:18:24 [ 11] [ 6] [155125] +07:18:24 [ 39] [ 2] [00] +07:18:24 [ 70] [ 3] [301] +07:18:24 ============================================================================ +07:18:24 Calculate Source COMM Id = 2 +07:18:24 ============================================================================ +07:18:24 + + +waiting on router queue for slot.... +07:18:31 ============================================================================ +07:18:31 Slot Id : <104> +07:18:31 Transaction Type : REQUEST +07:18:31 Received From : +07:18:31 ============================================================================ +07:18:31 FNo. Len. Field Value +07:18:31 ============================================================================ +07:18:31 [ 1] [ 4] [0200] +07:18:31 [ 2] [ 16] [1888880000000505] +07:18:31 [ 3] [ 6] [010000] +07:18:31 [ 4] [ 12] [000050000000] +07:18:31 [ 7] [ 10] [0320071622] +07:18:31 [ 11] [ 6] [930078] +07:18:31 [ 12] [ 6] [071622] +07:18:31 [ 13] [ 4] [0320] +07:18:31 [ 15] [ 4] [0320] +07:18:31 [ 18] [ 4] [6011] +07:18:31 [ 19] [ 3] [418] +07:18:31 [ 22] [ 3] [021] +07:18:31 [ 25] [ 2] [01] +07:18:31 [ 28] [ 9] [D00002000] +07:18:31 [ 32] [ 6] [668899] +07:18:31 [ 35] [ 32] [1888880000000505=000010100000884] +07:18:31 [ 37] [ 12] [507900893436] +07:18:31 [ 41] [ 8] [03017002] +07:18:31 [ 42] [ 15] [APT ] +07:18:31 [ 43] [ 40] [ PISAXAY QUESTHOUSE SEKONG] +07:18:31 [ 49] [ 3] [418] +07:18:31 [ 52] [ 16] [06D94402B3FC080E] +07:18:31 ============================================================================ +07:18:31 + + +waiting on router queue for slot.... +07:18:31 Sending to : +07:18:31 ============================================================================ +07:18:31 Sending to : +07:18:31 ============================================================================ +07:18:31 ============================================================================ +07:18:31 Slot Id : <104> +07:18:31 Transaction Type : REQUEST +07:18:31 Received From : +07:18:31 ============================================================================ +07:18:31 FNo. Len. Field Value +07:18:31 ============================================================================ +07:18:31 [ 1] [ 4] [0200] +07:18:31 [ 2] [ 16] [1888880000000505] +07:18:31 [ 3] [ 6] [010000] +07:18:31 [ 4] [ 12] [000050000000] +07:18:31 [ 7] [ 10] [0320071622] +07:18:31 [ 11] [ 6] [930078] +07:18:31 [ 12] [ 6] [071622] +07:18:31 [ 13] [ 4] [0320] +07:18:31 [ 15] [ 4] [0320] +07:18:31 [ 18] [ 4] [6011] +07:18:31 [ 19] [ 3] [418] +07:18:31 [ 22] [ 3] [021] +07:18:31 [ 25] [ 2] [01] +07:18:31 [ 28] [ 9] [D00002000] +07:18:31 [ 32] [ 6] [668899] +07:18:31 [ 35] [ 32] [1888880000000505=000010100000884] +07:18:31 [ 37] [ 12] [507900893436] +07:18:31 [ 41] [ 8] [03017002] +07:18:31 [ 42] [ 15] [APT ] +07:18:31 [ 43] [ 40] [ PISAXAY QUESTHOUSE SEKONG] +07:18:31 [ 49] [ 3] [418] +07:18:31 [ 52] [ 16] [06D94402B3FC080E] +07:18:31 ============================================================================ +07:18:31 + + +waiting on router queue for slot.... +07:18:31 Sending to : +07:18:31 ============================================================================ +07:18:31 ============================================================================ +07:18:31 Slot Id : <104> +07:18:31 Transaction Type : REQUEST +07:18:31 Received From : +07:18:31 ============================================================================ +07:18:31 FNo. Len. Field Value +07:18:31 ============================================================================ +07:18:31 [ 1] [ 4] [0200] +07:18:31 [ 2] [ 16] [1888880000000505] +07:18:31 [ 3] [ 6] [010000] +07:18:31 [ 4] [ 12] [000050000000] +07:18:31 [ 7] [ 10] [0320071622] +07:18:31 [ 11] [ 6] [930078] +07:18:31 [ 12] [ 6] [071622] +07:18:31 [ 13] [ 4] [0320] +07:18:31 [ 15] [ 4] [0320] +07:18:31 [ 18] [ 4] [6011] +07:18:31 [ 19] [ 3] [418] +07:18:31 [ 22] [ 3] [021] +07:18:31 [ 25] [ 2] [01] +07:18:31 [ 28] [ 9] [D00002000] +07:18:31 [ 32] [ 6] [668899] +07:18:31 [ 35] [ 32] [1888880000000505=000010100000884] +07:18:31 [ 37] [ 12] [507900893436] +07:18:31 [ 41] [ 8] [03017002] +07:18:31 [ 42] [ 15] [APT ] +07:18:31 [ 43] [ 40] [ PISAXAY QUESTHOUSE SEKONG] +07:18:31 [ 49] [ 3] [418] +07:18:31 [ 52] [ 16] [6EF8691B78D4A378] +07:18:31 ============================================================================ +07:18:31 + + +waiting on router queue for slot.... +07:18:31 Sending to : <5> +07:18:31 ============================================================================ +07:18:38 ============================================================================ +07:18:38 Slot Id : <138> +07:18:38 Transaction Type : REQUEST +07:18:38 Received From : +07:18:38 ============================================================================ +07:18:38 FNo. Len. Field Value +07:18:38 ============================================================================ +07:18:38 [ 1] [ 4] [0800] +07:18:38 [ 7] [ 10] [0320121746] +07:18:38 [ 11] [ 6] [155126] +07:18:38 [ 70] [ 3] [301] +07:18:38 ============================================================================ +07:18:38 + + +waiting on router queue for slot.... +07:18:38 Sending to : +07:18:38 ============================================================================ +07:18:38 ============================================================================ +07:18:38 Slot Id : <138> +07:18:38 Transaction Type : RESPONSE +07:18:38 Received From : +07:18:38 ============================================================================ +07:18:38 FNo. Len. Field Value +07:18:38 ============================================================================ +07:18:38 [ 1] [ 4] [0810] +07:18:38 [ 7] [ 10] [0320121746] +07:18:38 [ 11] [ 6] [155126] +07:18:38 [ 39] [ 2] [00] +07:18:38 [ 70] [ 3] [301] +07:18:38 ============================================================================ +07:18:38 Calculate Source COMM Id = 2 +07:18:38 ============================================================================ +07:18:38 + + +waiting on router queue for slot.... +07:18:39 ============================================================================ +07:18:39 Slot Id : <104> +07:18:39 Transaction Type : RESPONSE +07:18:39 Received From : +07:18:39 ============================================================================ +07:18:39 FNo. Len. Field Value +07:18:39 ============================================================================ +07:18:39 [ 1] [ 4] [0210] +07:18:39 [ 2] [ 16] [1888880000000505] +07:18:39 [ 3] [ 6] [010000] +07:18:39 [ 4] [ 12] [000050000000] +07:18:39 [ 7] [ 10] [0320071622] +07:18:39 [ 11] [ 6] [930078] +07:18:39 [ 12] [ 6] [071622] +07:18:39 [ 13] [ 4] [0320] +07:18:39 [ 15] [ 4] [0320] +07:18:39 [ 18] [ 4] [6011] +07:18:39 [ 19] [ 3] [418] +07:18:39 [ 32] [ 6] [668899] +07:18:39 [ 37] [ 12] [507900893436] +07:18:39 [ 38] [ 6] [587898] +07:18:39 [ 39] [ 2] [00] +07:18:39 [ 41] [ 8] [03017002] +07:18:39 [ 49] [ 3] [418] +07:18:39 [ 54] [ 0] [] +07:18:39 ============================================================================ +07:18:39 Sending to : +07:18:39 ============================================================================ +07:18:39 + + +waiting on router queue for slot.... +07:18:40 ============================================================================ +07:18:40 Slot Id : <104> +07:18:40 Transaction Type : RESPONSE +07:18:40 Received From : +07:18:40 ============================================================================ +07:18:40 FNo. Len. Field Value +07:18:40 ============================================================================ +07:18:40 [ 1] [ 4] [0210] +07:18:40 [ 2] [ 16] [1888880000000505] +07:18:40 [ 3] [ 6] [010000] +07:18:40 [ 4] [ 12] [000050000000] +07:18:40 [ 7] [ 10] [0320071622] +07:18:40 [ 11] [ 6] [930078] +07:18:40 [ 12] [ 6] [071622] +07:18:40 [ 13] [ 4] [0320] +07:18:40 [ 15] [ 4] [0320] +07:18:40 [ 18] [ 4] [6011] +07:18:40 [ 19] [ 3] [418] +07:18:40 [ 32] [ 6] [668899] +07:18:40 [ 37] [ 12] [507900893436] +07:18:40 [ 38] [ 6] [587898] +07:18:40 [ 39] [ 2] [00] +07:18:40 [ 41] [ 8] [03017002] +07:18:40 [ 49] [ 3] [418] +07:18:40 [ 54] [ 0] [] +07:18:40 ============================================================================ +07:18:40 Calculate Source COMM Id = 4 +07:18:40 ============================================================================ +07:18:40 + + +waiting on router queue for slot.... +07:18:44 ============================================================================ +07:18:44 Slot Id : <97> +07:18:44 Transaction Type : REQUEST +07:18:44 Received From : +07:18:44 ============================================================================ +07:18:44 FNo. Len. Field Value +07:18:44 ============================================================================ +07:18:44 [ 1] [ 4] [0800] +07:18:44 [ 2] [ 5] [02531] +07:18:44 [ 3] [ 6] [579078] +07:18:44 [ 7] [ 10] [0320001844] +07:18:44 [ 11] [ 6] [806836] +07:18:44 [ 15] [ 10] [0320001844] +07:18:44 [ 37] [ 11] [57907806836] +07:18:44 [ 70] [ 3] [001] +07:18:44 ============================================================================ +07:18:44 + + +waiting on router queue for slot.... +07:18:44 ============================================================================ +07:18:44 Slot Id : <97> +07:18:44 Transaction Type : RESPONSE +07:18:44 Received From : +07:18:44 ============================================================================ +07:18:44 FNo. Len. Field Value +07:18:44 ============================================================================ +07:18:44 [ 1] [ 4] [0810] +07:18:44 [ 7] [ 10] [0320001844] +07:18:44 [ 11] [ 6] [806836] +07:18:44 [ 15] [ 4] [0320] +07:18:44 [ 37] [ 12] [57907806836] +07:18:44 [ 39] [ 2] [00] +07:18:44 [ 70] [ 3] [001] +07:18:44 ============================================================================ +07:18:44 Sending to : +07:18:44 ============================================================================ +07:18:44 + + +waiting on router queue for slot.... +07:18:48 ============================================================================ +07:18:48 Slot Id : <117> +07:18:48 Transaction Type : REQUEST +07:18:48 Received From : +07:18:48 ============================================================================ +07:18:48 FNo. Len. Field Value +07:18:48 ============================================================================ +07:18:48 [ 1] [ 4] [0800] +07:18:48 [ 7] [ 10] [0320143037] +07:18:48 [ 11] [ 6] [073037] +07:18:48 [ 37] [ 12] [57907073037] +07:18:48 [ 70] [ 3] [301] +07:18:48 ============================================================================ +07:18:48 + + +waiting on router queue for slot.... +07:18:48 Sending to : +07:18:48 ============================================================================ +07:18:48 ============================================================================ +07:18:48 Slot Id : <117> +07:18:48 Transaction Type : RESPONSE +07:18:48 Received From : +07:18:48 ============================================================================ +07:18:48 FNo. Len. Field Value +07:18:48 ============================================================================ +07:18:48 [ 1] [ 4] [0810] +07:18:48 [ 7] [ 10] [0320143037] +07:18:48 [ 11] [ 6] [073037] +07:18:48 [ 37] [ 12] [579070730370] +07:18:48 [ 39] [ 2] [00] +07:18:48 [ 70] [ 3] [810] +07:18:48 ============================================================================ +07:18:48 Calculate Source COMM Id = 6 +07:18:48 ============================================================================ +07:18:48 + + +waiting on router queue for slot.... +07:18:48 ============================================================================ +07:18:48 Slot Id : <112> +07:18:48 Transaction Type : REQUEST +07:18:48 Received From : +07:18:48 ============================================================================ +07:18:48 FNo. Len. Field Value +07:18:48 ============================================================================ +07:18:48 [ 1] [ 4] [0800] +07:18:48 [ 7] [ 10] [0320121757] +07:18:48 [ 11] [ 6] [155127] +07:18:48 [ 70] [ 3] [301] +07:18:48 ============================================================================ +07:18:48 + + +waiting on router queue for slot.... +07:18:48 Sending to : +07:18:48 ============================================================================ +07:18:48 ============================================================================ +07:18:48 Slot Id : <112> +07:18:48 Transaction Type : RESPONSE +07:18:48 Received From : +07:18:48 ============================================================================ +07:18:48 FNo. Len. Field Value +07:18:48 ============================================================================ +07:18:48 [ 1] [ 4] [0810] +07:18:48 [ 7] [ 10] [0320121757] +07:18:48 [ 11] [ 6] [155127] +07:18:48 [ 39] [ 2] [00] +07:18:48 [ 70] [ 3] [301] +07:18:48 ============================================================================ +07:18:48 Calculate Source COMM Id = 2 +07:18:48 ============================================================================ +07:18:48 + + +waiting on router queue for slot.... +07:19:04 ============================================================================ +07:19:04 Slot Id : <140> +07:19:04 Transaction Type : REQUEST +07:19:04 Received From : +07:19:04 ============================================================================ +07:19:04 FNo. Len. Field Value +07:19:04 ============================================================================ +07:19:04 [ 1] [ 4] [0800] +07:19:04 [ 7] [ 10] [0320121812] +07:19:04 [ 11] [ 6] [155128] +07:19:04 [ 70] [ 3] [301] +07:19:04 ============================================================================ +07:19:04 + + +waiting on router queue for slot.... +07:19:04 Sending to : +07:19:04 ============================================================================ +07:19:04 ============================================================================ +07:19:04 Slot Id : <140> +07:19:04 Transaction Type : RESPONSE +07:19:04 Received From : +07:19:04 ============================================================================ +07:19:04 FNo. Len. Field Value +07:19:04 ============================================================================ +07:19:04 [ 1] [ 4] [0810] +07:19:04 [ 7] [ 10] [0320121812] +07:19:04 [ 11] [ 6] [155128] +07:19:04 [ 39] [ 2] [00] +07:19:04 [ 70] [ 3] [301] +07:19:04 ============================================================================ +07:19:04 Calculate Source COMM Id = 2 +07:19:04 ============================================================================ +07:19:04 + + +waiting on router queue for slot.... +07:19:19 ============================================================================ +07:19:19 Slot Id : <116> +07:19:19 Transaction Type : REQUEST +07:19:19 Received From : +07:19:19 ============================================================================ +07:19:19 FNo. Len. Field Value +07:19:19 ============================================================================ +07:19:19 [ 1] [ 4] [0800] +07:19:19 [ 7] [ 10] [0320121827] +07:19:19 [ 11] [ 6] [155129] +07:19:19 [ 70] [ 3] [301] +07:19:19 ============================================================================ +07:19:19 + + +waiting on router queue for slot.... +07:19:19 Sending to : +07:19:19 ============================================================================ +07:19:19 ============================================================================ +07:19:19 Slot Id : <116> +07:19:19 Transaction Type : RESPONSE +07:19:19 Received From : +07:19:19 ============================================================================ +07:19:19 FNo. Len. Field Value +07:19:19 ============================================================================ +07:19:19 [ 1] [ 4] [0810] +07:19:19 [ 7] [ 10] [0320121827] +07:19:19 [ 11] [ 6] [155129] +07:19:19 [ 39] [ 2] [00] +07:19:19 [ 70] [ 3] [301] +07:19:19 ============================================================================ +07:19:19 Calculate Source COMM Id = 2 +07:19:19 ============================================================================ +07:19:19 + + +waiting on router queue for slot.... +07:19:30 ============================================================================ +07:19:30 Slot Id : <111> +07:19:30 Transaction Type : REQUEST +07:19:30 Received From : +07:19:30 ============================================================================ +07:19:30 FNo. Len. Field Value +07:19:30 ============================================================================ +07:19:30 [ 1] [ 4] [0800] +07:19:30 [ 7] [ 10] [0320121838] +07:19:30 [ 11] [ 6] [155130] +07:19:30 [ 70] [ 3] [301] +07:19:30 ============================================================================ +07:19:30 + + +waiting on router queue for slot.... +07:19:30 Sending to : +07:19:30 ============================================================================ +07:19:30 ============================================================================ +07:19:30 Slot Id : <111> +07:19:30 Transaction Type : RESPONSE +07:19:30 Received From : +07:19:30 ============================================================================ +07:19:30 FNo. Len. Field Value +07:19:30 ============================================================================ +07:19:30 [ 1] [ 4] [0810] +07:19:30 [ 7] [ 10] [0320121838] +07:19:30 [ 11] [ 6] [155130] +07:19:30 [ 39] [ 2] [00] +07:19:30 [ 70] [ 3] [301] +07:19:30 ============================================================================ +07:19:30 Calculate Source COMM Id = 2 +07:19:30 ============================================================================ +07:19:30 + + +waiting on router queue for slot.... +07:19:32 ============================================================================ +07:19:32 Slot Id : <147> +07:19:32 Transaction Type : REQUEST +07:19:32 Received From : +07:19:32 ============================================================================ +07:19:32 FNo. Len. Field Value +07:19:32 ============================================================================ +07:19:32 [ 1] [ 4] [0200] +07:19:32 [ 2] [ 16] [6688990103635908] +07:19:32 [ 3] [ 6] [303000] +07:19:32 [ 4] [ 12] [000000000000] +07:19:32 [ 7] [ 10] [0320071928] +07:19:32 [ 11] [ 6] [669132] +07:19:32 [ 12] [ 6] [071928] +07:19:32 [ 13] [ 4] [0320] +07:19:32 [ 15] [ 4] [0320] +07:19:32 [ 18] [ 4] [6011] +07:19:32 [ 22] [ 3] [900] +07:19:32 [ 25] [ 2] [02] +07:19:32 [ 28] [ 9] [D00000000] +07:19:32 [ 32] [ 6] [621354] +07:19:32 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:19:32 [ 37] [ 12] [507903499428] +07:19:32 [ 41] [ 8] [06002200] +07:19:32 [ 42] [ 15] [NATIVE ] +07:19:32 [ 43] [ 40] [Beng Market Beng LAO] +07:19:32 [ 49] [ 3] [418] +07:19:32 [ 52] [ 16] [609F3A3095489120] +07:19:32 ============================================================================ +07:19:32 + + +waiting on router queue for slot.... +07:19:32 Sending to : +07:19:32 ============================================================================ +07:19:32 Sending to : +07:19:32 ============================================================================ +07:19:32 ============================================================================ +07:19:32 Slot Id : <147> +07:19:32 Transaction Type : REQUEST +07:19:32 Received From : +07:19:32 ============================================================================ +07:19:32 FNo. Len. Field Value +07:19:32 ============================================================================ +07:19:32 [ 1] [ 4] [0200] +07:19:32 [ 2] [ 16] [6688990103635908] +07:19:32 [ 3] [ 6] [303000] +07:19:32 [ 4] [ 12] [000000000000] +07:19:32 [ 7] [ 10] [0320071928] +07:19:32 [ 11] [ 6] [669132] +07:19:32 [ 12] [ 6] [071928] +07:19:32 [ 13] [ 4] [0320] +07:19:32 [ 15] [ 4] [0320] +07:19:32 [ 18] [ 4] [6011] +07:19:32 [ 22] [ 3] [900] +07:19:32 [ 25] [ 2] [02] +07:19:32 [ 28] [ 9] [D00000000] +07:19:32 [ 32] [ 6] [621354] +07:19:32 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:19:32 [ 37] [ 12] [507903499428] +07:19:32 [ 41] [ 8] [06002200] +07:19:32 [ 42] [ 15] [NATIVE ] +07:19:32 [ 43] [ 40] [Beng Market Beng LAO] +07:19:32 [ 49] [ 3] [418] +07:19:32 [ 52] [ 16] [609F3A3095489120] +07:19:32 ============================================================================ +07:19:32 + + +waiting on router queue for slot.... +07:19:32 Sending to : +07:19:32 ============================================================================ +07:19:32 ============================================================================ +07:19:32 Slot Id : <147> +07:19:32 Transaction Type : REQUEST +07:19:32 Received From : +07:19:32 ============================================================================ +07:19:32 FNo. Len. Field Value +07:19:32 ============================================================================ +07:19:32 [ 1] [ 4] [0200] +07:19:32 [ 2] [ 16] [6688990103635908] +07:19:32 [ 3] [ 6] [303000] +07:19:32 [ 4] [ 12] [000000000000] +07:19:32 [ 7] [ 10] [0320071928] +07:19:32 [ 11] [ 6] [669132] +07:19:32 [ 12] [ 6] [071928] +07:19:32 [ 13] [ 4] [0320] +07:19:32 [ 15] [ 4] [0320] +07:19:32 [ 18] [ 4] [6011] +07:19:32 [ 22] [ 3] [900] +07:19:32 [ 25] [ 2] [02] +07:19:32 [ 28] [ 9] [D00000000] +07:19:32 [ 32] [ 6] [621354] +07:19:32 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:19:32 [ 37] [ 12] [507903499428] +07:19:32 [ 41] [ 8] [06002200] +07:19:32 [ 42] [ 15] [NATIVE ] +07:19:32 [ 43] [ 40] [Beng Market Beng LAO] +07:19:32 [ 49] [ 3] [418] +07:19:32 [ 52] [ 16] [16C30DE06CDF1FC4] +07:19:32 ============================================================================ +07:19:32 + + +waiting on router queue for slot.... +07:19:32 Sending to : <4> +07:19:32 ============================================================================ +07:19:33 ============================================================================ +07:19:33 Slot Id : <147> +07:19:33 Transaction Type : RESPONSE +07:19:33 Received From : +07:19:33 ============================================================================ +07:19:33 FNo. Len. Field Value +07:19:33 ============================================================================ +07:19:33 [ 1] [ 4] [0210] +07:19:33 [ 2] [ 16] [6688990103635908] +07:19:33 [ 3] [ 6] [303000] +07:19:33 [ 4] [ 12] [000000000000] +07:19:33 [ 11] [ 6] [669132] +07:19:33 [ 12] [ 6] [071928] +07:19:33 [ 15] [ 4] [0320] +07:19:33 [ 18] [ 4] [6011] +07:19:33 [ 32] [ 6] [621354] +07:19:33 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:19:33 [ 37] [ 12] [507903499428] +07:19:33 [ 38] [ 6] [112553] +07:19:33 [ 39] [ 2] [00] +07:19:33 [ 41] [ 8] [06002200] +07:19:33 [ 49] [ 3] [418] +07:19:33 [ 54] [ 20] [3002418C000299615685] +07:19:33 ============================================================================ +07:19:33 Sending to : +07:19:33 ============================================================================ +07:19:33 + + +waiting on router queue for slot.... +07:19:34 ============================================================================ +07:19:34 Slot Id : <147> +07:19:34 Transaction Type : RESPONSE +07:19:34 Received From : +07:19:34 ============================================================================ +07:19:34 FNo. Len. Field Value +07:19:34 ============================================================================ +07:19:34 [ 1] [ 4] [0210] +07:19:34 [ 2] [ 16] [6688990103635908] +07:19:34 [ 3] [ 6] [303000] +07:19:34 [ 4] [ 12] [000000000000] +07:19:34 [ 11] [ 6] [669132] +07:19:34 [ 12] [ 6] [071928] +07:19:34 [ 15] [ 4] [0320] +07:19:34 [ 18] [ 4] [6011] +07:19:34 [ 32] [ 6] [621354] +07:19:34 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:19:34 [ 37] [ 12] [507903499428] +07:19:34 [ 38] [ 6] [112553] +07:19:34 [ 39] [ 2] [00] +07:19:34 [ 41] [ 8] [06002200] +07:19:34 [ 49] [ 3] [418] +07:19:34 [ 54] [ 20] [3002418C000299615685] +07:19:34 ============================================================================ +07:19:34 Calculate Source COMM Id = 0 +07:19:34 ============================================================================ +07:19:34 + + +waiting on router queue for slot.... +07:19:43 ============================================================================ +07:19:43 Slot Id : <124> +07:19:43 Transaction Type : REQUEST +07:19:43 Received From : +07:19:43 ============================================================================ +07:19:43 FNo. Len. Field Value +07:19:43 ============================================================================ +07:19:43 [ 1] [ 4] [0800] +07:19:43 [ 7] [ 10] [0320121849] +07:19:43 [ 11] [ 6] [155131] +07:19:43 [ 70] [ 3] [301] +07:19:43 ============================================================================ +07:19:43 + + +waiting on router queue for slot.... +07:19:43 Sending to : +07:19:43 ============================================================================ +07:19:43 ============================================================================ +07:19:43 Slot Id : <124> +07:19:43 Transaction Type : RESPONSE +07:19:43 Received From : +07:19:43 ============================================================================ +07:19:43 FNo. Len. Field Value +07:19:43 ============================================================================ +07:19:43 [ 1] [ 4] [0810] +07:19:43 [ 7] [ 10] [0320121849] +07:19:43 [ 11] [ 6] [155131] +07:19:43 [ 39] [ 2] [00] +07:19:43 [ 70] [ 3] [301] +07:19:43 ============================================================================ +07:19:43 Calculate Source COMM Id = 2 +07:19:43 ============================================================================ +07:19:43 + + +waiting on router queue for slot.... +07:19:46 ============================================================================ +07:19:46 Slot Id : <80> +07:19:46 Transaction Type : REQUEST +07:19:46 Received From : +07:19:46 ============================================================================ +07:19:46 FNo. Len. Field Value +07:19:46 ============================================================================ +07:19:46 [ 1] [ 4] [0800] +07:19:46 [ 2] [ 5] [02531] +07:19:46 [ 3] [ 6] [579078] +07:19:46 [ 7] [ 10] [0320001946] +07:19:46 [ 11] [ 6] [806837] +07:19:46 [ 15] [ 10] [0320001946] +07:19:46 [ 37] [ 11] [57907806837] +07:19:46 [ 70] [ 3] [001] +07:19:46 ============================================================================ +07:19:46 + + +waiting on router queue for slot.... +07:19:46 ============================================================================ +07:19:46 Slot Id : <80> +07:19:46 Transaction Type : RESPONSE +07:19:46 Received From : +07:19:46 ============================================================================ +07:19:46 FNo. Len. Field Value +07:19:46 ============================================================================ +07:19:46 [ 1] [ 4] [0810] +07:19:46 [ 7] [ 10] [0320001946] +07:19:46 [ 11] [ 6] [806837] +07:19:46 [ 15] [ 4] [0320] +07:19:46 [ 37] [ 12] [57907806837] +07:19:46 [ 39] [ 2] [00] +07:19:46 [ 70] [ 3] [001] +07:19:46 ============================================================================ +07:19:46 Sending to : +07:19:46 ============================================================================ +07:19:46 + + +waiting on router queue for slot.... +07:19:53 ============================================================================ +07:19:53 Slot Id : <123> +07:19:53 Transaction Type : REQUEST +07:19:53 Received From : +07:19:53 ============================================================================ +07:19:53 FNo. Len. Field Value +07:19:53 ============================================================================ +07:19:53 [ 1] [ 4] [0800] +07:19:53 [ 7] [ 10] [0320143142] +07:19:53 [ 11] [ 6] [073142] +07:19:53 [ 37] [ 12] [57907073142] +07:19:53 [ 70] [ 3] [301] +07:19:53 ============================================================================ +07:19:53 + + +waiting on router queue for slot.... +07:19:53 Sending to : +07:19:53 ============================================================================ +07:19:53 ============================================================================ +07:19:53 Slot Id : <123> +07:19:53 Transaction Type : RESPONSE +07:19:53 Received From : +07:19:53 ============================================================================ +07:19:53 FNo. Len. Field Value +07:19:53 ============================================================================ +07:19:53 [ 1] [ 4] [0810] +07:19:53 [ 7] [ 10] [0320143142] +07:19:53 [ 11] [ 6] [073142] +07:19:53 [ 37] [ 12] [579070731420] +07:19:53 [ 39] [ 2] [00] +07:19:53 [ 70] [ 3] [810] +07:19:53 ============================================================================ +07:19:53 Calculate Source COMM Id = 6 +07:19:53 ============================================================================ +07:19:53 + + +waiting on router queue for slot.... +07:19:55 ============================================================================ +07:19:55 Slot Id : <122> +07:19:55 Transaction Type : REQUEST +07:19:55 Received From : +07:19:55 ============================================================================ +07:19:55 FNo. Len. Field Value +07:19:55 ============================================================================ +07:19:55 [ 1] [ 4] [0800] +07:19:55 [ 7] [ 10] [0320002742] +07:19:55 [ 11] [ 6] [024831] +07:19:55 [ 37] [ 12] [57907024831] +07:19:55 [ 70] [ 3] [301] +07:19:55 ============================================================================ +07:19:55 + + +waiting on router queue for slot.... +07:19:55 Sending to : +07:19:55 ============================================================================ +07:19:55 ============================================================================ +07:19:55 Slot Id : <122> +07:19:55 Transaction Type : RESPONSE +07:19:55 Received From : +07:19:55 ============================================================================ +07:19:55 FNo. Len. Field Value +07:19:55 ============================================================================ +07:19:55 [ 1] [ 4] [0810] +07:19:55 [ 7] [ 10] [0320002742] +07:19:55 [ 11] [ 6] [024831] +07:19:55 [ 37] [ 12] [579070248310] +07:19:55 [ 39] [ 2] [00] +07:19:55 [ 70] [ 3] [810] +07:19:55 ============================================================================ +07:19:55 Calculate Source COMM Id = 1 +07:19:55 ============================================================================ +07:19:55 + + +waiting on router queue for slot.... +07:19:57 ============================================================================ +07:19:57 Slot Id : <161> +07:19:57 Transaction Type : REQUEST +07:19:57 Received From : +07:19:57 ============================================================================ +07:19:57 FNo. Len. Field Value +07:19:57 ============================================================================ +07:19:57 [ 1] [ 4] [0800] +07:19:57 [ 7] [ 10] [0320121905] +07:19:57 [ 11] [ 6] [155132] +07:19:57 [ 70] [ 3] [301] +07:19:57 ============================================================================ +07:19:57 + + +waiting on router queue for slot.... +07:19:57 Sending to : +07:19:57 ============================================================================ +07:19:57 ============================================================================ +07:19:57 Slot Id : <161> +07:19:57 Transaction Type : RESPONSE +07:19:57 Received From : +07:19:57 ============================================================================ +07:19:57 FNo. Len. Field Value +07:19:57 ============================================================================ +07:19:57 [ 1] [ 4] [0810] +07:19:57 [ 7] [ 10] [0320121905] +07:19:57 [ 11] [ 6] [155132] +07:19:57 [ 39] [ 2] [00] +07:19:57 [ 70] [ 3] [301] +07:19:57 ============================================================================ +07:19:57 Calculate Source COMM Id = 2 +07:19:57 ============================================================================ +07:19:57 + + +waiting on router queue for slot.... +07:20:07 ============================================================================ +07:20:07 Slot Id : <154> +07:20:07 Transaction Type : REQUEST +07:20:07 Received From : +07:20:07 ============================================================================ +07:20:07 FNo. Len. Field Value +07:20:07 ============================================================================ +07:20:07 [ 1] [ 4] [0200] +07:20:07 [ 2] [ 16] [1888880000003459] +07:20:07 [ 3] [ 6] [011000] +07:20:07 [ 4] [ 12] [000010000000] +07:20:07 [ 7] [ 10] [0320072003] +07:20:07 [ 11] [ 6] [669189] +07:20:07 [ 12] [ 6] [072003] +07:20:07 [ 13] [ 4] [0320] +07:20:07 [ 15] [ 4] [0320] +07:20:07 [ 18] [ 4] [6011] +07:20:07 [ 22] [ 3] [900] +07:20:07 [ 25] [ 2] [02] +07:20:07 [ 28] [ 9] [D00002000] +07:20:07 [ 32] [ 6] [621354] +07:20:07 [ 35] [ 32] [1888880000003459=000010100000247] +07:20:07 [ 37] [ 12] [507904376716] +07:20:07 [ 41] [ 8] [03003600] +07:20:07 [ 42] [ 15] [NATIVE ] +07:20:07 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +07:20:07 [ 49] [ 3] [418] +07:20:07 [ 52] [ 16] [4E2BF864FAEA4366] +07:20:07 ============================================================================ +07:20:07 + + +waiting on router queue for slot.... +07:20:07 Sending to : +07:20:07 ============================================================================ +07:20:07 Sending to : +07:20:07 ============================================================================ +07:20:07 ============================================================================ +07:20:07 Slot Id : <154> +07:20:07 Transaction Type : REQUEST +07:20:07 Received From : +07:20:07 ============================================================================ +07:20:07 FNo. Len. Field Value +07:20:07 ============================================================================ +07:20:07 [ 1] [ 4] [0200] +07:20:07 [ 2] [ 16] [1888880000003459] +07:20:07 [ 3] [ 6] [011000] +07:20:07 [ 4] [ 12] [000010000000] +07:20:07 [ 7] [ 10] [0320072003] +07:20:07 [ 11] [ 6] [669189] +07:20:07 [ 12] [ 6] [072003] +07:20:07 [ 13] [ 4] [0320] +07:20:07 [ 15] [ 4] [0320] +07:20:07 [ 18] [ 4] [6011] +07:20:07 [ 22] [ 3] [900] +07:20:07 [ 25] [ 2] [02] +07:20:07 [ 28] [ 9] [D00002000] +07:20:07 [ 32] [ 6] [621354] +07:20:07 [ 35] [ 32] [1888880000003459=000010100000247] +07:20:07 [ 37] [ 12] [507904376716] +07:20:07 [ 41] [ 8] [03003600] +07:20:07 [ 42] [ 15] [NATIVE ] +07:20:07 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +07:20:07 [ 49] [ 3] [418] +07:20:07 [ 52] [ 16] [4E2BF864FAEA4366] +07:20:07 ============================================================================ +07:20:07 + + +waiting on router queue for slot.... +07:20:07 Sending to : +07:20:07 ============================================================================ +07:20:07 ============================================================================ +07:20:07 Slot Id : <154> +07:20:07 Transaction Type : REQUEST +07:20:07 Received From : +07:20:07 ============================================================================ +07:20:07 FNo. Len. Field Value +07:20:07 ============================================================================ +07:20:07 [ 1] [ 4] [0200] +07:20:07 [ 2] [ 16] [1888880000003459] +07:20:07 [ 3] [ 6] [011000] +07:20:07 [ 4] [ 12] [000010000000] +07:20:07 [ 7] [ 10] [0320072003] +07:20:07 [ 11] [ 6] [669189] +07:20:07 [ 12] [ 6] [072003] +07:20:07 [ 13] [ 4] [0320] +07:20:07 [ 15] [ 4] [0320] +07:20:07 [ 18] [ 4] [6011] +07:20:07 [ 22] [ 3] [900] +07:20:07 [ 25] [ 2] [02] +07:20:07 [ 28] [ 9] [D00002000] +07:20:07 [ 32] [ 6] [621354] +07:20:07 [ 35] [ 32] [1888880000003459=000010100000247] +07:20:07 [ 37] [ 12] [507904376716] +07:20:07 [ 41] [ 8] [03003600] +07:20:07 [ 42] [ 15] [NATIVE ] +07:20:07 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +07:20:07 [ 49] [ 3] [418] +07:20:07 [ 52] [ 16] [2819D0B49C9104B2] +07:20:07 ============================================================================ +07:20:07 + + +waiting on router queue for slot.... +07:20:07 Sending to : <5> +07:20:07 ============================================================================ +07:20:08 ============================================================================ +07:20:08 Slot Id : <132> +07:20:08 Transaction Type : REQUEST +07:20:08 Received From : +07:20:08 ============================================================================ +07:20:08 FNo. Len. Field Value +07:20:08 ============================================================================ +07:20:08 [ 1] [ 4] [0800] +07:20:08 [ 7] [ 10] [0320121916] +07:20:08 [ 11] [ 6] [155133] +07:20:08 [ 70] [ 3] [301] +07:20:08 ============================================================================ +07:20:08 + + +waiting on router queue for slot.... +07:20:08 Sending to : +07:20:08 ============================================================================ +07:20:08 ============================================================================ +07:20:08 Slot Id : <132> +07:20:08 Transaction Type : RESPONSE +07:20:08 Received From : +07:20:08 ============================================================================ +07:20:08 FNo. Len. Field Value +07:20:08 ============================================================================ +07:20:08 [ 1] [ 4] [0810] +07:20:08 [ 7] [ 10] [0320121916] +07:20:08 [ 11] [ 6] [155133] +07:20:08 [ 39] [ 2] [00] +07:20:08 [ 70] [ 3] [301] +07:20:08 ============================================================================ +07:20:08 Calculate Source COMM Id = 2 +07:20:08 ============================================================================ +07:20:08 + + +waiting on router queue for slot.... +07:20:11 ============================================================================ +07:20:11 Slot Id : <162> +07:20:11 Transaction Type : REQUEST +07:20:11 Received From : +07:20:11 ============================================================================ +07:20:11 FNo. Len. Field Value +07:20:11 ============================================================================ +07:20:11 [ 1] [ 4] [0800] +07:20:11 [ 7] [ 10] [0320002008] +07:20:11 [ 11] [ 6] [019654] +07:20:11 [ 37] [ 12] [507907019654] +07:20:11 [ 70] [ 3] [001] +07:20:11 ============================================================================ +07:20:11 + + +waiting on router queue for slot.... +07:20:11 Sending to : +07:20:11 ============================================================================ +07:20:11 ============================================================================ +07:20:11 Slot Id : <162> +07:20:11 Transaction Type : RESPONSE +07:20:11 Received From : +07:20:11 ============================================================================ +07:20:11 FNo. Len. Field Value +07:20:11 ============================================================================ +07:20:11 [ 1] [ 4] [0810] +07:20:11 [ 7] [ 10] [0320002008] +07:20:11 [ 11] [ 6] [019654] +07:20:11 [ 37] [ 12] [507907019654] +07:20:11 [ 39] [ 2] [00] +07:20:11 [ 70] [ 3] [001] +07:20:11 ============================================================================ +07:20:11 Calculate Source COMM Id = 0 +07:20:11 ============================================================================ +07:20:11 + + +waiting on router queue for slot.... +07:20:17 ============================================================================ +07:20:17 Slot Id : <154> +07:20:17 Transaction Type : RESPONSE +07:20:17 Received From : +07:20:17 ============================================================================ +07:20:17 FNo. Len. Field Value +07:20:17 ============================================================================ +07:20:17 [ 1] [ 4] [0210] +07:20:17 [ 2] [ 16] [1888880000003459] +07:20:17 [ 3] [ 6] [011000] +07:20:17 [ 4] [ 12] [000010000000] +07:20:17 [ 7] [ 10] [0320072003] +07:20:17 [ 11] [ 6] [669189] +07:20:17 [ 12] [ 6] [072003] +07:20:17 [ 13] [ 4] [0320] +07:20:17 [ 15] [ 4] [0320] +07:20:17 [ 18] [ 4] [6011] +07:20:17 [ 19] [ 3] [418] +07:20:17 [ 32] [ 6] [621354] +07:20:17 [ 37] [ 12] [507904376716] +07:20:17 [ 38] [ 6] [509821] +07:20:17 [ 39] [ 2] [00] +07:20:17 [ 41] [ 8] [03003600] +07:20:17 [ 49] [ 3] [418] +07:20:17 [ 54] [ 0] [] +07:20:17 ============================================================================ +07:20:17 Sending to : +07:20:17 ============================================================================ +07:20:17 + + +waiting on router queue for slot.... +07:20:18 ============================================================================ +07:20:18 Slot Id : <154> +07:20:18 Transaction Type : RESPONSE +07:20:18 Received From : +07:20:18 ============================================================================ +07:20:18 FNo. Len. Field Value +07:20:18 ============================================================================ +07:20:18 [ 1] [ 4] [0210] +07:20:18 [ 2] [ 16] [1888880000003459] +07:20:18 [ 3] [ 6] [011000] +07:20:18 [ 4] [ 12] [000010000000] +07:20:18 [ 7] [ 10] [0320072003] +07:20:18 [ 11] [ 6] [669189] +07:20:18 [ 12] [ 6] [072003] +07:20:18 [ 13] [ 4] [0320] +07:20:18 [ 15] [ 4] [0320] +07:20:18 [ 18] [ 4] [6011] +07:20:18 [ 19] [ 3] [418] +07:20:18 [ 32] [ 6] [621354] +07:20:18 [ 37] [ 12] [507904376716] +07:20:18 [ 38] [ 6] [509821] +07:20:18 [ 39] [ 2] [00] +07:20:18 [ 41] [ 8] [03003600] +07:20:18 [ 49] [ 3] [418] +07:20:18 [ 54] [ 0] [] +07:20:18 ============================================================================ +07:20:18 Calculate Source COMM Id = 0 +07:20:18 ============================================================================ +07:20:18 + + +waiting on router queue for slot.... +07:20:23 ============================================================================ +07:20:23 Slot Id : <143> +07:20:23 Transaction Type : REQUEST +07:20:23 Received From : +07:20:23 ============================================================================ +07:20:23 FNo. Len. Field Value +07:20:23 ============================================================================ +07:20:23 [ 1] [ 4] [0800] +07:20:23 [ 7] [ 10] [0320121932] +07:20:23 [ 11] [ 6] [155134] +07:20:23 [ 70] [ 3] [301] +07:20:23 ============================================================================ +07:20:23 + + +waiting on router queue for slot.... +07:20:23 Sending to : +07:20:23 ============================================================================ +07:20:23 ============================================================================ +07:20:23 Slot Id : <143> +07:20:23 Transaction Type : RESPONSE +07:20:23 Received From : +07:20:23 ============================================================================ +07:20:23 FNo. Len. Field Value +07:20:23 ============================================================================ +07:20:23 [ 1] [ 4] [0810] +07:20:23 [ 7] [ 10] [0320121932] +07:20:23 [ 11] [ 6] [155134] +07:20:23 [ 39] [ 2] [00] +07:20:23 [ 70] [ 3] [301] +07:20:23 ============================================================================ +07:20:23 Calculate Source COMM Id = 2 +07:20:23 ============================================================================ +07:20:23 + + +waiting on router queue for slot.... +07:20:34 ============================================================================ +07:20:34 Slot Id : <145> +07:20:34 Transaction Type : REQUEST +07:20:34 Received From : +07:20:34 ============================================================================ +07:20:34 FNo. Len. Field Value +07:20:34 ============================================================================ +07:20:34 [ 1] [ 4] [0800] +07:20:34 [ 7] [ 10] [0320121943] +07:20:34 [ 11] [ 6] [155135] +07:20:34 [ 70] [ 3] [301] +07:20:34 ============================================================================ +07:20:34 + + +waiting on router queue for slot.... +07:20:34 Sending to : +07:20:34 ============================================================================ +07:20:34 ============================================================================ +07:20:34 Slot Id : <145> +07:20:34 Transaction Type : RESPONSE +07:20:34 Received From : +07:20:34 ============================================================================ +07:20:34 FNo. Len. Field Value +07:20:34 ============================================================================ +07:20:34 [ 1] [ 4] [0810] +07:20:34 [ 7] [ 10] [0320121943] +07:20:34 [ 11] [ 6] [155135] +07:20:34 [ 39] [ 2] [00] +07:20:34 [ 70] [ 3] [301] +07:20:34 ============================================================================ +07:20:34 Calculate Source COMM Id = 2 +07:20:34 ============================================================================ +07:20:34 + + +waiting on router queue for slot.... +07:20:45 ============================================================================ +07:20:45 Slot Id : <158> +07:20:45 Transaction Type : REQUEST +07:20:45 Received From : +07:20:45 ============================================================================ +07:20:45 FNo. Len. Field Value +07:20:45 ============================================================================ +07:20:45 [ 1] [ 4] [0800] +07:20:45 [ 7] [ 10] [0320121953] +07:20:45 [ 11] [ 6] [155136] +07:20:45 [ 70] [ 3] [301] +07:20:45 ============================================================================ +07:20:45 + + +waiting on router queue for slot.... +07:20:45 Sending to : +07:20:45 ============================================================================ +07:20:45 ============================================================================ +07:20:45 Slot Id : <158> +07:20:45 Transaction Type : RESPONSE +07:20:45 Received From : +07:20:45 ============================================================================ +07:20:45 FNo. Len. Field Value +07:20:45 ============================================================================ +07:20:45 [ 1] [ 4] [0810] +07:20:45 [ 7] [ 10] [0320121953] +07:20:45 [ 11] [ 6] [155136] +07:20:45 [ 39] [ 2] [00] +07:20:45 [ 70] [ 3] [301] +07:20:45 ============================================================================ +07:20:45 Calculate Source COMM Id = 2 +07:20:45 ============================================================================ +07:20:45 + + +waiting on router queue for slot.... +07:20:48 ============================================================================ +07:20:48 Slot Id : <120> +07:20:48 Transaction Type : REQUEST +07:20:48 Received From : +07:20:48 ============================================================================ +07:20:48 FNo. Len. Field Value +07:20:48 ============================================================================ +07:20:48 [ 1] [ 4] [0800] +07:20:48 [ 2] [ 5] [02531] +07:20:48 [ 3] [ 6] [579078] +07:20:48 [ 7] [ 10] [0320002048] +07:20:48 [ 11] [ 6] [806838] +07:20:48 [ 15] [ 10] [0320002048] +07:20:48 [ 37] [ 11] [57907806838] +07:20:48 [ 70] [ 3] [001] +07:20:48 ============================================================================ +07:20:48 + + +waiting on router queue for slot.... +07:20:48 ============================================================================ +07:20:48 Slot Id : <120> +07:20:48 Transaction Type : RESPONSE +07:20:48 Received From : +07:20:48 ============================================================================ +07:20:48 FNo. Len. Field Value +07:20:48 ============================================================================ +07:20:48 [ 1] [ 4] [0810] +07:20:48 [ 7] [ 10] [0320002048] +07:20:48 [ 11] [ 6] [806838] +07:20:48 [ 15] [ 4] [0320] +07:20:48 [ 37] [ 12] [57907806838] +07:20:48 [ 39] [ 2] [00] +07:20:48 [ 70] [ 3] [001] +07:20:48 ============================================================================ +07:20:48 Sending to : +07:20:48 ============================================================================ +07:20:48 + + +waiting on router queue for slot.... +07:20:58 ============================================================================ +07:20:58 Slot Id : <150> +07:20:58 Transaction Type : REQUEST +07:20:58 Received From : +07:20:58 ============================================================================ +07:20:58 FNo. Len. Field Value +07:20:58 ============================================================================ +07:20:58 [ 1] [ 4] [0800] +07:20:58 [ 7] [ 10] [0320143247] +07:20:58 [ 11] [ 6] [073247] +07:20:58 [ 37] [ 12] [57907073247] +07:20:58 [ 70] [ 3] [301] +07:20:58 ============================================================================ +07:20:58 + + +waiting on router queue for slot.... +07:20:58 Sending to : +07:20:58 ============================================================================ +07:20:58 ============================================================================ +07:20:58 Slot Id : <150> +07:20:58 Transaction Type : RESPONSE +07:20:58 Received From : +07:20:58 ============================================================================ +07:20:58 FNo. Len. Field Value +07:20:58 ============================================================================ +07:20:58 [ 1] [ 4] [0810] +07:20:58 [ 7] [ 10] [0320143247] +07:20:58 [ 11] [ 6] [073247] +07:20:58 [ 37] [ 12] [579070732470] +07:20:58 [ 39] [ 2] [00] +07:20:58 [ 70] [ 3] [810] +07:20:58 ============================================================================ +07:20:58 Calculate Source COMM Id = 6 +07:20:58 ============================================================================ +07:20:58 + + +waiting on router queue for slot.... +07:21:01 ============================================================================ +07:21:01 Slot Id : <166> +07:21:01 Transaction Type : REQUEST +07:21:01 Received From : +07:21:01 ============================================================================ +07:21:01 FNo. Len. Field Value +07:21:01 ============================================================================ +07:21:01 [ 1] [ 4] [0800] +07:21:01 [ 7] [ 10] [0320122009] +07:21:01 [ 11] [ 6] [155137] +07:21:01 [ 70] [ 3] [301] +07:21:01 ============================================================================ +07:21:01 + + +waiting on router queue for slot.... +07:21:01 Sending to : +07:21:01 ============================================================================ +07:21:01 ============================================================================ +07:21:01 Slot Id : <166> +07:21:01 Transaction Type : RESPONSE +07:21:01 Received From : +07:21:01 ============================================================================ +07:21:01 FNo. Len. Field Value +07:21:01 ============================================================================ +07:21:01 [ 1] [ 4] [0810] +07:21:01 [ 7] [ 10] [0320122009] +07:21:01 [ 11] [ 6] [155137] +07:21:01 [ 39] [ 2] [00] +07:21:01 [ 70] [ 3] [301] +07:21:01 ============================================================================ +07:21:01 Calculate Source COMM Id = 2 +07:21:01 ============================================================================ +07:21:01 + + +waiting on router queue for slot.... +07:21:05 ============================================================================ +07:21:05 Slot Id : <130> +07:21:05 Transaction Type : REQUEST +07:21:05 Received From : +07:21:05 ============================================================================ +07:21:05 FNo. Len. Field Value +07:21:05 ============================================================================ +07:21:05 [ 1] [ 4] [0200] +07:21:05 [ 2] [ 16] [6688990103283808] +07:21:05 [ 3] [ 6] [013000] +07:21:05 [ 4] [ 12] [000100000000] +07:21:05 [ 7] [ 10] [0320072101] +07:21:05 [ 11] [ 6] [669333] +07:21:05 [ 12] [ 6] [072101] +07:21:05 [ 13] [ 4] [0320] +07:21:05 [ 15] [ 4] [0320] +07:21:05 [ 18] [ 4] [6011] +07:21:05 [ 22] [ 3] [900] +07:21:05 [ 25] [ 2] [02] +07:21:05 [ 28] [ 9] [D00002000] +07:21:05 [ 32] [ 6] [621354] +07:21:05 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:21:05 [ 37] [ 12] [507903499430] +07:21:05 [ 41] [ 8] [06002200] +07:21:05 [ 42] [ 15] [NATIVE ] +07:21:05 [ 43] [ 40] [Beng Market Beng LAO] +07:21:05 [ 49] [ 3] [418] +07:21:05 [ 52] [ 16] [094D1CF8C687F0C9] +07:21:05 ============================================================================ +07:21:05 + + +waiting on router queue for slot.... +07:21:05 Sending to : +07:21:05 ============================================================================ +07:21:05 Sending to : +07:21:05 ============================================================================ +07:21:05 ============================================================================ +07:21:05 Slot Id : <130> +07:21:05 Transaction Type : REQUEST +07:21:05 Received From : +07:21:05 ============================================================================ +07:21:05 FNo. Len. Field Value +07:21:05 ============================================================================ +07:21:05 [ 1] [ 4] [0200] +07:21:05 [ 2] [ 16] [6688990103283808] +07:21:05 [ 3] [ 6] [013000] +07:21:05 [ 4] [ 12] [000100000000] +07:21:05 [ 7] [ 10] [0320072101] +07:21:05 [ 11] [ 6] [669333] +07:21:05 [ 12] [ 6] [072101] +07:21:05 [ 13] [ 4] [0320] +07:21:05 [ 15] [ 4] [0320] +07:21:05 [ 18] [ 4] [6011] +07:21:05 [ 22] [ 3] [900] +07:21:05 [ 25] [ 2] [02] +07:21:05 [ 28] [ 9] [D00002000] +07:21:05 [ 32] [ 6] [621354] +07:21:05 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:21:05 [ 37] [ 12] [507903499430] +07:21:05 [ 41] [ 8] [06002200] +07:21:05 [ 42] [ 15] [NATIVE ] +07:21:05 [ 43] [ 40] [Beng Market Beng LAO] +07:21:05 [ 49] [ 3] [418] +07:21:05 [ 52] [ 16] [094D1CF8C687F0C9] +07:21:05 ============================================================================ +07:21:05 + + +waiting on router queue for slot.... +07:21:05 Sending to : +07:21:05 ============================================================================ +07:21:05 ============================================================================ +07:21:05 Slot Id : <130> +07:21:05 Transaction Type : REQUEST +07:21:05 Received From : +07:21:05 ============================================================================ +07:21:05 FNo. Len. Field Value +07:21:05 ============================================================================ +07:21:05 [ 1] [ 4] [0200] +07:21:05 [ 2] [ 16] [6688990103283808] +07:21:05 [ 3] [ 6] [013000] +07:21:05 [ 4] [ 12] [000100000000] +07:21:05 [ 7] [ 10] [0320072101] +07:21:05 [ 11] [ 6] [669333] +07:21:05 [ 12] [ 6] [072101] +07:21:05 [ 13] [ 4] [0320] +07:21:05 [ 15] [ 4] [0320] +07:21:05 [ 18] [ 4] [6011] +07:21:05 [ 22] [ 3] [900] +07:21:05 [ 25] [ 2] [02] +07:21:05 [ 28] [ 9] [D00002000] +07:21:05 [ 32] [ 6] [621354] +07:21:05 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:21:05 [ 37] [ 12] [507903499430] +07:21:05 [ 41] [ 8] [06002200] +07:21:05 [ 42] [ 15] [NATIVE ] +07:21:05 [ 43] [ 40] [Beng Market Beng LAO] +07:21:05 [ 49] [ 3] [418] +07:21:05 [ 52] [ 16] [1A049D9DB3C10328] +07:21:05 ============================================================================ +07:21:05 + + +waiting on router queue for slot.... +07:21:05 Sending to : <4> +07:21:05 ============================================================================ +07:21:05 ============================================================================ +07:21:05 Slot Id : <130> +07:21:05 Transaction Type : RESPONSE +07:21:05 Received From : +07:21:05 ============================================================================ +07:21:05 FNo. Len. Field Value +07:21:05 ============================================================================ +07:21:05 [ 1] [ 4] [0210] +07:21:05 [ 2] [ 16] [6688990103283808] +07:21:05 [ 3] [ 6] [013000] +07:21:05 [ 4] [ 12] [000100000000] +07:21:05 [ 7] [ 10] [0320072101] +07:21:05 [ 11] [ 6] [669333] +07:21:05 [ 12] [ 6] [072101] +07:21:05 [ 13] [ 4] [0320] +07:21:05 [ 15] [ 4] [0320] +07:21:05 [ 18] [ 4] [6011] +07:21:05 [ 22] [ 3] [021] +07:21:05 [ 32] [ 6] [621354] +07:21:05 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:21:05 [ 37] [ 12] [507903499430] +07:21:05 [ 38] [ 6] [071857] +07:21:05 [ 39] [ 2] [55] +07:21:05 [ 41] [ 8] [06002200] +07:21:05 [ 49] [ 3] [418] +07:21:05 ============================================================================ +07:21:05 Sending to : +07:21:05 ============================================================================ +07:21:05 + + +waiting on router queue for slot.... +07:21:06 ============================================================================ +07:21:06 Slot Id : <130> +07:21:06 Transaction Type : RESPONSE +07:21:06 Received From : +07:21:06 ============================================================================ +07:21:06 FNo. Len. Field Value +07:21:06 ============================================================================ +07:21:06 [ 1] [ 4] [0210] +07:21:06 [ 2] [ 16] [6688990103283808] +07:21:06 [ 3] [ 6] [013000] +07:21:06 [ 4] [ 12] [000100000000] +07:21:06 [ 7] [ 10] [0320072101] +07:21:06 [ 11] [ 6] [669333] +07:21:06 [ 12] [ 6] [072101] +07:21:06 [ 13] [ 4] [0320] +07:21:06 [ 15] [ 4] [0320] +07:21:06 [ 18] [ 4] [6011] +07:21:06 [ 22] [ 3] [021] +07:21:06 [ 32] [ 6] [621354] +07:21:06 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:21:06 [ 37] [ 12] [507903499430] +07:21:06 [ 38] [ 6] [071857] +07:21:06 [ 39] [ 2] [55] +07:21:06 [ 41] [ 8] [06002200] +07:21:06 [ 49] [ 3] [418] +07:21:06 ============================================================================ +07:21:06 Calculate Source COMM Id = 0 +07:21:06 ============================================================================ +07:21:06 + + +waiting on router queue for slot.... +07:21:09 ============================================================================ +07:21:09 Slot Id : <133> +07:21:09 Transaction Type : REQUEST +07:21:09 Received From : +07:21:09 ============================================================================ +07:21:09 FNo. Len. Field Value +07:21:09 ============================================================================ +07:21:09 [ 1] [ 4] [0200] +07:21:09 [ 2] [ 16] [1808930600007553] +07:21:09 [ 3] [ 6] [010000] +07:21:09 [ 4] [ 12] [000010000000] +07:21:09 [ 7] [ 10] [0320072106] +07:21:09 [ 11] [ 6] [669351] +07:21:09 [ 12] [ 6] [072106] +07:21:09 [ 13] [ 4] [0320] +07:21:09 [ 15] [ 4] [0320] +07:21:09 [ 18] [ 4] [6011] +07:21:09 [ 22] [ 3] [900] +07:21:09 [ 25] [ 2] [02] +07:21:09 [ 28] [ 9] [D00002000] +07:21:09 [ 32] [ 6] [621354] +07:21:09 [ 35] [ 27] [1808930600007553=1803500265] +07:21:09 [ 37] [ 12] [507904422934] +07:21:09 [ 41] [ 8] [03004100] +07:21:09 [ 42] [ 15] [NATIVE ] +07:21:09 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +07:21:09 [ 49] [ 3] [418] +07:21:09 [ 52] [ 16] [73DAAEAE908E695A] +07:21:09 ============================================================================ +07:21:09 + + +waiting on router queue for slot.... +07:21:09 Sending to : +07:21:09 ============================================================================ +07:21:09 Sending to : +07:21:09 ============================================================================ +07:21:09 ============================================================================ +07:21:09 Slot Id : <133> +07:21:09 Transaction Type : REQUEST +07:21:09 Received From : +07:21:09 ============================================================================ +07:21:09 FNo. Len. Field Value +07:21:09 ============================================================================ +07:21:09 [ 1] [ 4] [0200] +07:21:09 [ 2] [ 16] [1808930600007553] +07:21:09 [ 3] [ 6] [010000] +07:21:09 [ 4] [ 12] [000010000000] +07:21:09 [ 7] [ 10] [0320072106] +07:21:09 [ 11] [ 6] [669351] +07:21:09 [ 12] [ 6] [072106] +07:21:09 [ 13] [ 4] [0320] +07:21:09 [ 15] [ 4] [0320] +07:21:09 [ 18] [ 4] [6011] +07:21:09 [ 22] [ 3] [900] +07:21:09 [ 25] [ 2] [02] +07:21:09 [ 28] [ 9] [D00002000] +07:21:09 [ 32] [ 6] [621354] +07:21:09 [ 35] [ 27] [1808930600007553=1803500265] +07:21:09 [ 37] [ 12] [507904422934] +07:21:09 [ 41] [ 8] [03004100] +07:21:09 [ 42] [ 15] [NATIVE ] +07:21:09 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +07:21:09 [ 49] [ 3] [418] +07:21:09 [ 52] [ 16] [73DAAEAE908E695A] +07:21:09 ============================================================================ +07:21:09 + + +waiting on router queue for slot.... +07:21:09 Sending to : +07:21:09 ============================================================================ +07:21:09 ============================================================================ +07:21:09 Slot Id : <133> +07:21:09 Transaction Type : REQUEST +07:21:09 Received From : +07:21:09 ============================================================================ +07:21:09 FNo. Len. Field Value +07:21:09 ============================================================================ +07:21:09 [ 1] [ 4] [0200] +07:21:09 [ 2] [ 16] [1808930600007553] +07:21:09 [ 3] [ 6] [010000] +07:21:09 [ 4] [ 12] [000010000000] +07:21:09 [ 7] [ 10] [0320072106] +07:21:09 [ 11] [ 6] [669351] +07:21:09 [ 12] [ 6] [072106] +07:21:09 [ 13] [ 4] [0320] +07:21:09 [ 15] [ 4] [0320] +07:21:09 [ 18] [ 4] [6011] +07:21:09 [ 22] [ 3] [900] +07:21:09 [ 25] [ 2] [02] +07:21:09 [ 28] [ 9] [D00002000] +07:21:09 [ 32] [ 6] [621354] +07:21:09 [ 35] [ 27] [1808930600007553=1803500265] +07:21:09 [ 37] [ 12] [507904422934] +07:21:09 [ 41] [ 8] [03004100] +07:21:09 [ 42] [ 15] [NATIVE ] +07:21:09 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +07:21:09 [ 49] [ 3] [418] +07:21:09 [ 52] [ 16] [C18C7057D5C2B751] +07:21:09 ============================================================================ +07:21:09 + + +waiting on router queue for slot.... +07:21:09 Sending to : <2> +07:21:09 ============================================================================ +07:21:15 ============================================================================ +07:21:15 Slot Id : <133> +07:21:15 Transaction Type : RESPONSE +07:21:15 Received From : +07:21:15 ============================================================================ +07:21:15 FNo. Len. Field Value +07:21:15 ============================================================================ +07:21:15 [ 1] [ 4] [0210] +07:21:15 [ 2] [ 16] [1808930600007553] +07:21:15 [ 3] [ 6] [010000] +07:21:15 [ 4] [ 12] [000010000000] +07:21:15 [ 6] [ 12] [000010000000] +07:21:15 [ 7] [ 10] [0320072106] +07:21:15 [ 11] [ 6] [669351] +07:21:15 [ 12] [ 6] [072106] +07:21:15 [ 13] [ 4] [0320] +07:21:15 [ 18] [ 4] [6011] +07:21:15 [ 19] [ 3] [418] +07:21:15 [ 22] [ 3] [021] +07:21:15 [ 32] [ 6] [621354] +07:21:15 [ 35] [ 27] [1808930600007553=1803500265] +07:21:15 [ 37] [ 12] [507904422934] +07:21:15 [ 38] [ 6] [669351] +07:21:15 [ 39] [ 2] [00] +07:21:15 [ 41] [ 8] [03004100] +07:21:15 [ 49] [ 3] [418] +07:21:15 [ 52] [ 16] [C18C7057D5C2B751] +07:21:15 [ 54] [ 20] [1001418C000115635100] +07:21:15 ============================================================================ +07:21:15 Sending to : +07:21:15 ============================================================================ +07:21:15 + + +waiting on router queue for slot.... +07:21:16 ============================================================================ +07:21:16 Slot Id : <142> +07:21:16 Transaction Type : REQUEST +07:21:16 Received From : +07:21:16 ============================================================================ +07:21:16 FNo. Len. Field Value +07:21:16 ============================================================================ +07:21:16 [ 1] [ 4] [0200] +07:21:16 [ 2] [ 16] [1808930600013866] +07:21:16 [ 3] [ 6] [011000] +07:21:16 [ 4] [ 12] [000050000000] +07:21:16 [ 7] [ 10] [0320072112] +07:21:16 [ 11] [ 6] [669372] +07:21:16 [ 12] [ 6] [072112] +07:21:16 [ 13] [ 4] [0320] +07:21:16 [ 15] [ 4] [0320] +07:21:16 [ 18] [ 4] [6011] +07:21:16 [ 22] [ 3] [900] +07:21:16 [ 25] [ 2] [02] +07:21:16 [ 28] [ 9] [D00002000] +07:21:16 [ 32] [ 6] [621354] +07:21:16 [ 35] [ 27] [1808930600013866=1803500748] +07:21:16 [ 37] [ 12] [507904376718] +07:21:16 [ 41] [ 8] [03003600] +07:21:16 [ 42] [ 15] [NATIVE ] +07:21:16 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +07:21:16 [ 49] [ 3] [418] +07:21:16 [ 52] [ 16] [B43895F90B7A4F26] +07:21:16 ============================================================================ +07:21:16 + + +waiting on router queue for slot.... +07:21:16 Sending to : +07:21:16 ============================================================================ +07:21:16 Sending to : +07:21:16 ============================================================================ +07:21:16 ============================================================================ +07:21:16 Slot Id : <142> +07:21:16 Transaction Type : REQUEST +07:21:16 Received From : +07:21:16 ============================================================================ +07:21:16 FNo. Len. Field Value +07:21:16 ============================================================================ +07:21:16 [ 1] [ 4] [0200] +07:21:16 [ 2] [ 16] [1808930600013866] +07:21:16 [ 3] [ 6] [011000] +07:21:16 [ 4] [ 12] [000050000000] +07:21:16 [ 7] [ 10] [0320072112] +07:21:16 [ 11] [ 6] [669372] +07:21:16 [ 12] [ 6] [072112] +07:21:16 [ 13] [ 4] [0320] +07:21:16 [ 15] [ 4] [0320] +07:21:16 [ 18] [ 4] [6011] +07:21:16 [ 22] [ 3] [900] +07:21:16 [ 25] [ 2] [02] +07:21:16 [ 28] [ 9] [D00002000] +07:21:16 [ 32] [ 6] [621354] +07:21:16 [ 35] [ 27] [1808930600013866=1803500748] +07:21:16 [ 37] [ 12] [507904376718] +07:21:16 [ 41] [ 8] [03003600] +07:21:16 [ 42] [ 15] [NATIVE ] +07:21:16 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +07:21:16 [ 49] [ 3] [418] +07:21:16 [ 52] [ 16] [B43895F90B7A4F26] +07:21:16 ============================================================================ +07:21:16 + + +waiting on router queue for slot.... +07:21:16 Sending to : +07:21:16 ============================================================================ +07:21:16 ============================================================================ +07:21:16 Slot Id : <142> +07:21:16 Transaction Type : REQUEST +07:21:16 Received From : +07:21:16 ============================================================================ +07:21:16 FNo. Len. Field Value +07:21:16 ============================================================================ +07:21:16 [ 1] [ 4] [0200] +07:21:16 [ 2] [ 16] [1808930600013866] +07:21:16 [ 3] [ 6] [011000] +07:21:16 [ 4] [ 12] [000050000000] +07:21:16 [ 7] [ 10] [0320072112] +07:21:16 [ 11] [ 6] [669372] +07:21:16 [ 12] [ 6] [072112] +07:21:16 [ 13] [ 4] [0320] +07:21:16 [ 15] [ 4] [0320] +07:21:16 [ 18] [ 4] [6011] +07:21:16 [ 22] [ 3] [900] +07:21:16 [ 25] [ 2] [02] +07:21:16 [ 28] [ 9] [D00002000] +07:21:16 [ 32] [ 6] [621354] +07:21:16 [ 35] [ 27] [1808930600013866=1803500748] +07:21:16 [ 37] [ 12] [507904376718] +07:21:16 [ 41] [ 8] [03003600] +07:21:16 [ 42] [ 15] [NATIVE ] +07:21:16 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +07:21:16 [ 49] [ 3] [418] +07:21:16 [ 52] [ 16] [B165C1206D940B23] +07:21:16 ============================================================================ +07:21:16 + + +waiting on router queue for slot.... +07:21:16 Sending to : <2> +07:21:16 ============================================================================ +07:21:17 ============================================================================ +07:21:17 Slot Id : <133> +07:21:17 Transaction Type : RESPONSE +07:21:17 Received From : +07:21:17 ============================================================================ +07:21:17 FNo. Len. Field Value +07:21:17 ============================================================================ +07:21:17 [ 1] [ 4] [0210] +07:21:17 [ 2] [ 16] [1808930600007553] +07:21:17 [ 3] [ 6] [010000] +07:21:17 [ 4] [ 12] [000010000000] +07:21:17 [ 6] [ 12] [000010000000] +07:21:17 [ 7] [ 10] [0320072106] +07:21:17 [ 11] [ 6] [669351] +07:21:17 [ 12] [ 6] [072106] +07:21:17 [ 13] [ 4] [0320] +07:21:17 [ 18] [ 4] [6011] +07:21:17 [ 19] [ 3] [418] +07:21:17 [ 22] [ 3] [021] +07:21:17 [ 32] [ 6] [621354] +07:21:17 [ 35] [ 27] [1808930600007553=1803500265] +07:21:17 [ 37] [ 12] [507904422934] +07:21:17 [ 38] [ 6] [669351] +07:21:17 [ 39] [ 2] [00] +07:21:17 [ 41] [ 8] [03004100] +07:21:17 [ 49] [ 3] [418] +07:21:17 [ 52] [ 16] [C18C7057D5C2B751] +07:21:17 [ 54] [ 20] [1001418C000115635100] +07:21:17 ============================================================================ +07:21:17 Calculate Source COMM Id = 0 +07:21:17 ============================================================================ +07:21:17 + + +waiting on router queue for slot.... +07:21:20 ============================================================================ +07:21:20 Slot Id : <153> +07:21:20 Transaction Type : REQUEST +07:21:20 Received From : +07:21:20 ============================================================================ +07:21:20 FNo. Len. Field Value +07:21:20 ============================================================================ +07:21:20 [ 1] [ 4] [0800] +07:21:20 [ 7] [ 10] [0320001912] +07:21:20 [ 11] [ 6] [057195] +07:21:20 [ 37] [ 12] [57907057195] +07:21:20 [ 70] [ 3] [301] +07:21:20 ============================================================================ +07:21:20 + + +waiting on router queue for slot.... +07:21:20 Sending to : +07:21:20 ============================================================================ +07:21:20 ============================================================================ +07:21:20 Slot Id : <153> +07:21:20 Transaction Type : RESPONSE +07:21:20 Received From : +07:21:20 ============================================================================ +07:21:20 FNo. Len. Field Value +07:21:20 ============================================================================ +07:21:20 [ 1] [ 4] [0810] +07:21:20 [ 7] [ 10] [0320001912] +07:21:20 [ 11] [ 6] [057195] +07:21:20 [ 37] [ 12] [579070571950] +07:21:20 [ 39] [ 2] [00] +07:21:20 [ 70] [ 3] [810] +07:21:20 ============================================================================ +07:21:20 Calculate Source COMM Id = 4 +07:21:20 ============================================================================ +07:21:20 + + +waiting on router queue for slot.... +07:21:20 ============================================================================ +07:21:20 Slot Id : <142> +07:21:20 Transaction Type : RESPONSE +07:21:20 Received From : +07:21:20 ============================================================================ +07:21:20 FNo. Len. Field Value +07:21:20 ============================================================================ +07:21:20 [ 1] [ 4] [0210] +07:21:20 [ 2] [ 16] [1808930600013866] +07:21:20 [ 3] [ 6] [011000] +07:21:20 [ 4] [ 12] [000050000000] +07:21:20 [ 6] [ 12] [000050000000] +07:21:20 [ 7] [ 10] [0320072112] +07:21:20 [ 11] [ 6] [669372] +07:21:20 [ 12] [ 6] [072112] +07:21:20 [ 13] [ 4] [0320] +07:21:20 [ 18] [ 4] [6011] +07:21:20 [ 19] [ 3] [418] +07:21:20 [ 22] [ 3] [021] +07:21:20 [ 32] [ 6] [621354] +07:21:20 [ 35] [ 27] [1808930600013866=1803500748] +07:21:20 [ 37] [ 12] [507904376718] +07:21:20 [ 38] [ 6] [669372] +07:21:20 [ 39] [ 2] [00] +07:21:20 [ 41] [ 8] [03003600] +07:21:20 [ 49] [ 3] [418] +07:21:20 [ 52] [ 16] [B165C1206D940B23] +07:21:20 [ 54] [ 20] [1001418C000154036100] +07:21:20 ============================================================================ +07:21:20 Sending to : +07:21:20 ============================================================================ +07:21:20 + + +waiting on router queue for slot.... +07:21:22 ============================================================================ +07:21:22 Slot Id : <142> +07:21:22 Transaction Type : RESPONSE +07:21:22 Received From : +07:21:22 ============================================================================ +07:21:22 FNo. Len. Field Value +07:21:22 ============================================================================ +07:21:22 [ 1] [ 4] [0210] +07:21:22 [ 2] [ 16] [1808930600013866] +07:21:22 [ 3] [ 6] [011000] +07:21:22 [ 4] [ 12] [000050000000] +07:21:22 [ 6] [ 12] [000050000000] +07:21:22 [ 7] [ 10] [0320072112] +07:21:22 [ 11] [ 6] [669372] +07:21:22 [ 12] [ 6] [072112] +07:21:22 [ 13] [ 4] [0320] +07:21:22 [ 18] [ 4] [6011] +07:21:22 [ 19] [ 3] [418] +07:21:22 [ 22] [ 3] [021] +07:21:22 [ 32] [ 6] [621354] +07:21:22 [ 35] [ 27] [1808930600013866=1803500748] +07:21:22 [ 37] [ 12] [507904376718] +07:21:22 [ 38] [ 6] [669372] +07:21:22 [ 39] [ 2] [00] +07:21:22 [ 41] [ 8] [03003600] +07:21:22 [ 49] [ 3] [418] +07:21:22 [ 52] [ 16] [B165C1206D940B23] +07:21:22 [ 54] [ 20] [1001418C000154036100] +07:21:22 ============================================================================ +07:21:22 Calculate Source COMM Id = 0 +07:21:22 ============================================================================ +07:21:22 + + +waiting on router queue for slot.... +07:21:28 ============================================================================ +07:21:28 Slot Id : <110> +07:21:28 Transaction Type : REQUEST +07:21:28 Received From : +07:21:28 ============================================================================ +07:21:28 FNo. Len. Field Value +07:21:28 ============================================================================ +07:21:28 [ 1] [ 4] [0800] +07:21:28 [ 7] [ 10] [0320122036] +07:21:28 [ 11] [ 6] [155138] +07:21:28 [ 70] [ 3] [301] +07:21:28 ============================================================================ +07:21:28 + + +waiting on router queue for slot.... +07:21:28 Sending to : +07:21:28 ============================================================================ +07:21:28 ============================================================================ +07:21:28 Slot Id : <110> +07:21:28 Transaction Type : RESPONSE +07:21:28 Received From : +07:21:28 ============================================================================ +07:21:28 FNo. Len. Field Value +07:21:28 ============================================================================ +07:21:28 [ 1] [ 4] [0810] +07:21:28 [ 7] [ 10] [0320122036] +07:21:28 [ 11] [ 6] [155138] +07:21:28 [ 39] [ 2] [00] +07:21:28 [ 70] [ 3] [301] +07:21:28 ============================================================================ +07:21:28 Calculate Source COMM Id = 2 +07:21:28 ============================================================================ +07:21:28 + + +waiting on router queue for slot.... +07:21:38 ============================================================================ +07:21:38 Slot Id : <167> +07:21:38 Transaction Type : REQUEST +07:21:38 Received From : +07:21:38 ============================================================================ +07:21:38 FNo. Len. Field Value +07:21:38 ============================================================================ +07:21:38 [ 1] [ 4] [0800] +07:21:38 [ 7] [ 10] [0320122046] +07:21:38 [ 11] [ 6] [155139] +07:21:38 [ 70] [ 3] [301] +07:21:38 ============================================================================ +07:21:38 + + +waiting on router queue for slot.... +07:21:38 Sending to : +07:21:38 ============================================================================ +07:21:38 ============================================================================ +07:21:38 Slot Id : <167> +07:21:38 Transaction Type : RESPONSE +07:21:38 Received From : +07:21:38 ============================================================================ +07:21:38 FNo. Len. Field Value +07:21:38 ============================================================================ +07:21:38 [ 1] [ 4] [0810] +07:21:38 [ 7] [ 10] [0320122046] +07:21:38 [ 11] [ 6] [155139] +07:21:38 [ 39] [ 2] [00] +07:21:38 [ 70] [ 3] [301] +07:21:38 ============================================================================ +07:21:38 Calculate Source COMM Id = 2 +07:21:38 ============================================================================ +07:21:38 + + +waiting on router queue for slot.... +07:21:49 ============================================================================ +07:21:49 Slot Id : <137> +07:21:49 Transaction Type : REQUEST +07:21:49 Received From : +07:21:49 ============================================================================ +07:21:49 FNo. Len. Field Value +07:21:49 ============================================================================ +07:21:49 [ 1] [ 4] [0800] +07:21:49 [ 7] [ 10] [0320122057] +07:21:49 [ 11] [ 6] [155140] +07:21:49 [ 70] [ 3] [301] +07:21:49 ============================================================================ +07:21:49 + + +waiting on router queue for slot.... +07:21:49 Sending to : +07:21:49 ============================================================================ +07:21:49 ============================================================================ +07:21:49 Slot Id : <137> +07:21:49 Transaction Type : RESPONSE +07:21:49 Received From : +07:21:49 ============================================================================ +07:21:49 FNo. Len. Field Value +07:21:49 ============================================================================ +07:21:49 [ 1] [ 4] [0810] +07:21:49 [ 7] [ 10] [0320122057] +07:21:49 [ 11] [ 6] [155140] +07:21:49 [ 39] [ 2] [00] +07:21:49 [ 70] [ 3] [301] +07:21:49 ============================================================================ +07:21:49 Calculate Source COMM Id = 2 +07:21:49 ============================================================================ +07:21:49 + + +waiting on router queue for slot.... +07:21:50 ============================================================================ +07:21:50 Slot Id : <128> +07:21:50 Transaction Type : REQUEST +07:21:50 Received From : +07:21:50 ============================================================================ +07:21:50 FNo. Len. Field Value +07:21:50 ============================================================================ +07:21:50 [ 1] [ 4] [0800] +07:21:50 [ 2] [ 5] [02531] +07:21:50 [ 3] [ 6] [579078] +07:21:50 [ 7] [ 10] [0320002150] +07:21:50 [ 11] [ 6] [806839] +07:21:50 [ 15] [ 10] [0320002150] +07:21:50 [ 37] [ 11] [57907806839] +07:21:50 [ 70] [ 3] [001] +07:21:50 ============================================================================ +07:21:50 + + +waiting on router queue for slot.... +07:21:50 ============================================================================ +07:21:50 Slot Id : <128> +07:21:50 Transaction Type : RESPONSE +07:21:50 Received From : +07:21:50 ============================================================================ +07:21:50 FNo. Len. Field Value +07:21:50 ============================================================================ +07:21:50 [ 1] [ 4] [0810] +07:21:50 [ 7] [ 10] [0320002150] +07:21:50 [ 11] [ 6] [806839] +07:21:50 [ 15] [ 4] [0320] +07:21:50 [ 37] [ 12] [57907806839] +07:21:50 [ 39] [ 2] [00] +07:21:50 [ 70] [ 3] [001] +07:21:50 ============================================================================ +07:21:50 Sending to : +07:21:50 ============================================================================ +07:21:50 + + +waiting on router queue for slot.... +07:21:57 ============================================================================ +07:21:57 Slot Id : <175> +07:21:57 Transaction Type : REQUEST +07:21:57 Received From : +07:21:57 ============================================================================ +07:21:57 FNo. Len. Field Value +07:21:57 ============================================================================ +07:21:57 [ 1] [ 4] [0200] +07:21:57 [ 2] [ 16] [1808930600007553] +07:21:57 [ 3] [ 6] [010000] +07:21:57 [ 4] [ 12] [000010000000] +07:21:57 [ 7] [ 10] [0320072154] +07:21:57 [ 11] [ 6] [669458] +07:21:57 [ 12] [ 6] [072154] +07:21:57 [ 13] [ 4] [0320] +07:21:57 [ 15] [ 4] [0320] +07:21:57 [ 18] [ 4] [6011] +07:21:57 [ 22] [ 3] [900] +07:21:57 [ 25] [ 2] [02] +07:21:57 [ 28] [ 9] [D00002000] +07:21:57 [ 32] [ 6] [621354] +07:21:57 [ 35] [ 27] [1808930600007553=1803500265] +07:21:57 [ 37] [ 12] [507904422936] +07:21:57 [ 41] [ 8] [03004100] +07:21:57 [ 42] [ 15] [NATIVE ] +07:21:57 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +07:21:57 [ 49] [ 3] [418] +07:21:57 [ 52] [ 16] [73DAAEAE908E695A] +07:21:57 ============================================================================ +07:21:57 + + +waiting on router queue for slot.... +07:21:57 Sending to : +07:21:57 ============================================================================ +07:21:57 Sending to : +07:21:57 ============================================================================ +07:21:57 ============================================================================ +07:21:57 Slot Id : <175> +07:21:57 Transaction Type : REQUEST +07:21:57 Received From : +07:21:57 ============================================================================ +07:21:57 FNo. Len. Field Value +07:21:57 ============================================================================ +07:21:57 [ 1] [ 4] [0200] +07:21:57 [ 2] [ 16] [1808930600007553] +07:21:57 [ 3] [ 6] [010000] +07:21:57 [ 4] [ 12] [000010000000] +07:21:57 [ 7] [ 10] [0320072154] +07:21:57 [ 11] [ 6] [669458] +07:21:57 [ 12] [ 6] [072154] +07:21:57 [ 13] [ 4] [0320] +07:21:57 [ 15] [ 4] [0320] +07:21:57 [ 18] [ 4] [6011] +07:21:57 [ 22] [ 3] [900] +07:21:57 [ 25] [ 2] [02] +07:21:57 [ 28] [ 9] [D00002000] +07:21:57 [ 32] [ 6] [621354] +07:21:57 [ 35] [ 27] [1808930600007553=1803500265] +07:21:57 [ 37] [ 12] [507904422936] +07:21:57 [ 41] [ 8] [03004100] +07:21:57 [ 42] [ 15] [NATIVE ] +07:21:57 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +07:21:57 [ 49] [ 3] [418] +07:21:57 [ 52] [ 16] [73DAAEAE908E695A] +07:21:57 ============================================================================ +07:21:57 + + +waiting on router queue for slot.... +07:21:57 Sending to : +07:21:57 ============================================================================ +07:21:57 ============================================================================ +07:21:57 Slot Id : <175> +07:21:57 Transaction Type : REQUEST +07:21:57 Received From : +07:21:57 ============================================================================ +07:21:57 FNo. Len. Field Value +07:21:57 ============================================================================ +07:21:57 [ 1] [ 4] [0200] +07:21:57 [ 2] [ 16] [1808930600007553] +07:21:57 [ 3] [ 6] [010000] +07:21:57 [ 4] [ 12] [000010000000] +07:21:57 [ 7] [ 10] [0320072154] +07:21:57 [ 11] [ 6] [669458] +07:21:57 [ 12] [ 6] [072154] +07:21:57 [ 13] [ 4] [0320] +07:21:57 [ 15] [ 4] [0320] +07:21:57 [ 18] [ 4] [6011] +07:21:57 [ 22] [ 3] [900] +07:21:57 [ 25] [ 2] [02] +07:21:57 [ 28] [ 9] [D00002000] +07:21:57 [ 32] [ 6] [621354] +07:21:57 [ 35] [ 27] [1808930600007553=1803500265] +07:21:57 [ 37] [ 12] [507904422936] +07:21:57 [ 41] [ 8] [03004100] +07:21:57 [ 42] [ 15] [NATIVE ] +07:21:57 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +07:21:57 [ 49] [ 3] [418] +07:21:57 [ 52] [ 16] [C18C7057D5C2B751] +07:21:57 ============================================================================ +07:21:57 + + +waiting on router queue for slot.... +07:21:57 Sending to : <2> +07:21:57 ============================================================================ +07:22:00 ============================================================================ +07:22:00 Slot Id : <175> +07:22:00 Transaction Type : RESPONSE +07:22:00 Received From : +07:22:00 ============================================================================ +07:22:00 FNo. Len. Field Value +07:22:00 ============================================================================ +07:22:00 [ 1] [ 4] [0210] +07:22:00 [ 2] [ 16] [1808930600007553] +07:22:00 [ 3] [ 6] [010000] +07:22:00 [ 4] [ 12] [000010000000] +07:22:00 [ 6] [ 12] [000010000000] +07:22:00 [ 7] [ 10] [0320072154] +07:22:00 [ 11] [ 6] [669458] +07:22:00 [ 12] [ 6] [072154] +07:22:00 [ 13] [ 4] [0320] +07:22:00 [ 18] [ 4] [6011] +07:22:00 [ 19] [ 3] [418] +07:22:00 [ 22] [ 3] [021] +07:22:00 [ 32] [ 6] [621354] +07:22:00 [ 35] [ 27] [1808930600007553=1803500265] +07:22:00 [ 37] [ 12] [507904422936] +07:22:00 [ 38] [ 6] [669458] +07:22:00 [ 39] [ 2] [00] +07:22:00 [ 41] [ 8] [03004100] +07:22:00 [ 49] [ 3] [418] +07:22:00 [ 52] [ 16] [C18C7057D5C2B751] +07:22:00 [ 54] [ 20] [1001418C000105435100] +07:22:00 ============================================================================ +07:22:00 Sending to : +07:22:00 ============================================================================ +07:22:00 + + +waiting on router queue for slot.... +07:22:02 ============================================================================ +07:22:02 Slot Id : <175> +07:22:02 Transaction Type : RESPONSE +07:22:02 Received From : +07:22:02 ============================================================================ +07:22:02 FNo. Len. Field Value +07:22:02 ============================================================================ +07:22:02 [ 1] [ 4] [0210] +07:22:02 [ 2] [ 16] [1808930600007553] +07:22:02 [ 3] [ 6] [010000] +07:22:02 [ 4] [ 12] [000010000000] +07:22:02 [ 6] [ 12] [000010000000] +07:22:02 [ 7] [ 10] [0320072154] +07:22:02 [ 11] [ 6] [669458] +07:22:02 [ 12] [ 6] [072154] +07:22:02 [ 13] [ 4] [0320] +07:22:02 [ 18] [ 4] [6011] +07:22:02 [ 19] [ 3] [418] +07:22:02 [ 22] [ 3] [021] +07:22:02 [ 32] [ 6] [621354] +07:22:02 [ 35] [ 27] [1808930600007553=1803500265] +07:22:02 [ 37] [ 12] [507904422936] +07:22:02 [ 38] [ 6] [669458] +07:22:02 [ 39] [ 2] [00] +07:22:02 [ 41] [ 8] [03004100] +07:22:02 [ 49] [ 3] [418] +07:22:02 [ 52] [ 16] [C18C7057D5C2B751] +07:22:02 [ 54] [ 20] [1001418C000105435100] +07:22:02 ============================================================================ +07:22:02 Calculate Source COMM Id = 0 +07:22:02 ============================================================================ +07:22:02 + + +waiting on router queue for slot.... +07:22:03 ============================================================================ +07:22:03 Slot Id : <159> +07:22:03 Transaction Type : REQUEST +07:22:03 Received From : +07:22:03 ============================================================================ +07:22:03 FNo. Len. Field Value +07:22:03 ============================================================================ +07:22:03 [ 1] [ 4] [0800] +07:22:03 [ 7] [ 10] [0320143352] +07:22:03 [ 11] [ 6] [073352] +07:22:03 [ 37] [ 12] [57907073352] +07:22:03 [ 70] [ 3] [301] +07:22:03 ============================================================================ +07:22:03 + + +waiting on router queue for slot.... +07:22:03 Sending to : +07:22:03 ============================================================================ +07:22:03 ============================================================================ +07:22:03 Slot Id : <159> +07:22:03 Transaction Type : RESPONSE +07:22:03 Received From : +07:22:03 ============================================================================ +07:22:03 FNo. Len. Field Value +07:22:03 ============================================================================ +07:22:03 [ 1] [ 4] [0810] +07:22:03 [ 7] [ 10] [0320143352] +07:22:03 [ 11] [ 6] [073352] +07:22:03 [ 37] [ 12] [579070733520] +07:22:03 [ 39] [ 2] [00] +07:22:03 [ 70] [ 3] [810] +07:22:03 ============================================================================ +07:22:03 Calculate Source COMM Id = 6 +07:22:03 ============================================================================ +07:22:03 + + +waiting on router queue for slot.... +07:22:03 ============================================================================ +07:22:03 Slot Id : <146> +07:22:03 Transaction Type : REQUEST +07:22:03 Received From : +07:22:03 ============================================================================ +07:22:03 FNo. Len. Field Value +07:22:03 ============================================================================ +07:22:03 [ 1] [ 4] [0200] +07:22:03 [ 2] [ 16] [6688990103283808] +07:22:03 [ 3] [ 6] [013000] +07:22:03 [ 4] [ 12] [000100000000] +07:22:03 [ 7] [ 10] [0320072200] +07:22:03 [ 11] [ 6] [669471] +07:22:03 [ 12] [ 6] [072200] +07:22:03 [ 13] [ 4] [0320] +07:22:03 [ 15] [ 4] [0320] +07:22:03 [ 18] [ 4] [6011] +07:22:03 [ 22] [ 3] [900] +07:22:03 [ 25] [ 2] [02] +07:22:03 [ 28] [ 9] [D00002000] +07:22:03 [ 32] [ 6] [621354] +07:22:03 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:22:03 [ 37] [ 12] [507903499432] +07:22:03 [ 41] [ 8] [06002200] +07:22:03 [ 42] [ 15] [NATIVE ] +07:22:03 [ 43] [ 40] [Beng Market Beng LAO] +07:22:03 [ 49] [ 3] [418] +07:22:03 [ 52] [ 16] [9A276BA769B47746] +07:22:03 ============================================================================ +07:22:03 + + +waiting on router queue for slot.... +07:22:03 Sending to : +07:22:03 ============================================================================ +07:22:03 Sending to : +07:22:03 ============================================================================ +07:22:04 ============================================================================ +07:22:04 Slot Id : <146> +07:22:04 Transaction Type : REQUEST +07:22:04 Received From : +07:22:04 ============================================================================ +07:22:04 FNo. Len. Field Value +07:22:04 ============================================================================ +07:22:04 [ 1] [ 4] [0200] +07:22:04 [ 2] [ 16] [6688990103283808] +07:22:04 [ 3] [ 6] [013000] +07:22:04 [ 4] [ 12] [000100000000] +07:22:04 [ 7] [ 10] [0320072200] +07:22:04 [ 11] [ 6] [669471] +07:22:04 [ 12] [ 6] [072200] +07:22:04 [ 13] [ 4] [0320] +07:22:04 [ 15] [ 4] [0320] +07:22:04 [ 18] [ 4] [6011] +07:22:04 [ 22] [ 3] [900] +07:22:04 [ 25] [ 2] [02] +07:22:04 [ 28] [ 9] [D00002000] +07:22:04 [ 32] [ 6] [621354] +07:22:04 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:22:04 [ 37] [ 12] [507903499432] +07:22:04 [ 41] [ 8] [06002200] +07:22:04 [ 42] [ 15] [NATIVE ] +07:22:04 [ 43] [ 40] [Beng Market Beng LAO] +07:22:04 [ 49] [ 3] [418] +07:22:04 [ 52] [ 16] [9A276BA769B47746] +07:22:04 ============================================================================ +07:22:04 + + +waiting on router queue for slot.... +07:22:04 Sending to : +07:22:04 ============================================================================ +07:22:04 ============================================================================ +07:22:04 Slot Id : <146> +07:22:04 Transaction Type : REQUEST +07:22:04 Received From : +07:22:04 ============================================================================ +07:22:04 FNo. Len. Field Value +07:22:04 ============================================================================ +07:22:04 [ 1] [ 4] [0200] +07:22:04 [ 2] [ 16] [6688990103283808] +07:22:04 [ 3] [ 6] [013000] +07:22:04 [ 4] [ 12] [000100000000] +07:22:04 [ 7] [ 10] [0320072200] +07:22:04 [ 11] [ 6] [669471] +07:22:04 [ 12] [ 6] [072200] +07:22:04 [ 13] [ 4] [0320] +07:22:04 [ 15] [ 4] [0320] +07:22:04 [ 18] [ 4] [6011] +07:22:04 [ 22] [ 3] [900] +07:22:04 [ 25] [ 2] [02] +07:22:04 [ 28] [ 9] [D00002000] +07:22:04 [ 32] [ 6] [621354] +07:22:04 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:22:04 [ 37] [ 12] [507903499432] +07:22:04 [ 41] [ 8] [06002200] +07:22:04 [ 42] [ 15] [NATIVE ] +07:22:04 [ 43] [ 40] [Beng Market Beng LAO] +07:22:04 [ 49] [ 3] [418] +07:22:04 [ 52] [ 16] [86FF75AE9775DC51] +07:22:04 ============================================================================ +07:22:04 + + +waiting on router queue for slot.... +07:22:04 Sending to : <4> +07:22:04 ============================================================================ +07:22:05 ============================================================================ +07:22:05 Slot Id : <146> +07:22:05 Transaction Type : RESPONSE +07:22:05 Received From : +07:22:05 ============================================================================ +07:22:05 FNo. Len. Field Value +07:22:05 ============================================================================ +07:22:05 [ 1] [ 4] [0210] +07:22:05 [ 2] [ 16] [6688990103283808] +07:22:05 [ 3] [ 6] [013000] +07:22:05 [ 4] [ 12] [000100000000] +07:22:05 [ 11] [ 6] [669471] +07:22:05 [ 12] [ 6] [072200] +07:22:05 [ 15] [ 4] [0320] +07:22:05 [ 18] [ 4] [6011] +07:22:05 [ 32] [ 6] [621354] +07:22:05 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:22:05 [ 37] [ 12] [507903499432] +07:22:05 [ 38] [ 6] [792788] +07:22:05 [ 39] [ 2] [00] +07:22:05 [ 41] [ 8] [06002200] +07:22:05 [ 49] [ 3] [418] +07:22:05 [ 54] [ 20] [3002418C000257733955] +07:22:05 ============================================================================ +07:22:05 Sending to : +07:22:05 ============================================================================ +07:22:05 + + +waiting on router queue for slot.... +07:22:06 ============================================================================ +07:22:06 Slot Id : <146> +07:22:06 Transaction Type : RESPONSE +07:22:06 Received From : +07:22:06 ============================================================================ +07:22:06 FNo. Len. Field Value +07:22:06 ============================================================================ +07:22:06 [ 1] [ 4] [0210] +07:22:06 [ 2] [ 16] [6688990103283808] +07:22:06 [ 3] [ 6] [013000] +07:22:06 [ 4] [ 12] [000100000000] +07:22:06 [ 11] [ 6] [669471] +07:22:06 [ 12] [ 6] [072200] +07:22:06 [ 15] [ 4] [0320] +07:22:06 [ 18] [ 4] [6011] +07:22:06 [ 32] [ 6] [621354] +07:22:06 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:22:06 [ 37] [ 12] [507903499432] +07:22:06 [ 38] [ 6] [792788] +07:22:06 [ 39] [ 2] [00] +07:22:06 [ 41] [ 8] [06002200] +07:22:06 [ 49] [ 3] [418] +07:22:06 [ 54] [ 20] [3002418C000257733955] +07:22:06 ============================================================================ +07:22:06 Calculate Source COMM Id = 0 +07:22:06 ============================================================================ +07:22:06 + + +waiting on router queue for slot.... +07:22:11 ============================================================================ +07:22:11 Slot Id : <170> +07:22:11 Transaction Type : REQUEST +07:22:11 Received From : +07:22:11 ============================================================================ +07:22:11 FNo. Len. Field Value +07:22:11 ============================================================================ +07:22:11 [ 1] [ 4] [0800] +07:22:11 [ 7] [ 10] [0320122119] +07:22:11 [ 11] [ 6] [155141] +07:22:11 [ 70] [ 3] [301] +07:22:11 ============================================================================ +07:22:11 + + +waiting on router queue for slot.... +07:22:11 Sending to : +07:22:11 ============================================================================ +07:22:11 ============================================================================ +07:22:11 Slot Id : <170> +07:22:11 Transaction Type : RESPONSE +07:22:11 Received From : +07:22:11 ============================================================================ +07:22:11 FNo. Len. Field Value +07:22:11 ============================================================================ +07:22:11 [ 1] [ 4] [0810] +07:22:11 [ 7] [ 10] [0320122119] +07:22:11 [ 11] [ 6] [155141] +07:22:11 [ 39] [ 2] [00] +07:22:11 [ 70] [ 3] [301] +07:22:11 ============================================================================ +07:22:11 Calculate Source COMM Id = 2 +07:22:11 ============================================================================ +07:22:11 + + +waiting on router queue for slot.... +07:22:22 ============================================================================ +07:22:22 Slot Id : <141> +07:22:22 Transaction Type : REQUEST +07:22:22 Received From : +07:22:22 ============================================================================ +07:22:22 FNo. Len. Field Value +07:22:22 ============================================================================ +07:22:22 [ 1] [ 4] [0800] +07:22:22 [ 7] [ 10] [0320122130] +07:22:22 [ 11] [ 6] [155142] +07:22:22 [ 70] [ 3] [301] +07:22:22 ============================================================================ +07:22:22 + + +waiting on router queue for slot.... +07:22:22 Sending to : +07:22:22 ============================================================================ +07:22:22 ============================================================================ +07:22:22 Slot Id : <141> +07:22:22 Transaction Type : RESPONSE +07:22:22 Received From : +07:22:22 ============================================================================ +07:22:22 FNo. Len. Field Value +07:22:22 ============================================================================ +07:22:22 [ 1] [ 4] [0810] +07:22:22 [ 7] [ 10] [0320122130] +07:22:22 [ 11] [ 6] [155142] +07:22:22 [ 39] [ 2] [00] +07:22:22 [ 70] [ 3] [301] +07:22:22 ============================================================================ +07:22:22 Calculate Source COMM Id = 2 +07:22:22 ============================================================================ +07:22:22 + + +waiting on router queue for slot.... +07:22:30 ============================================================================ +07:22:30 Slot Id : <151> +07:22:30 Transaction Type : REQUEST +07:22:30 Received From : +07:22:30 ============================================================================ +07:22:30 FNo. Len. Field Value +07:22:30 ============================================================================ +07:22:30 [ 1] [ 4] [0200] +07:22:30 [ 2] [ 16] [6688990101741500] +07:22:30 [ 3] [ 6] [011000] +07:22:30 [ 4] [ 12] [000350000000] +07:22:30 [ 7] [ 10] [0320002138] +07:22:30 [ 11] [ 6] [266772] +07:22:30 [ 12] [ 6] [072138] +07:22:30 [ 13] [ 4] [0320] +07:22:30 [ 14] [ 4] [4205] +07:22:30 [ 15] [ 4] [0320] +07:22:30 [ 18] [ 4] [6011] +07:22:30 [ 19] [ 3] [418] +07:22:30 [ 22] [ 3] [021] +07:22:30 [ 25] [ 2] [01] +07:22:30 [ 28] [ 9] [D00002000] +07:22:30 [ 32] [ 6] [180893] +07:22:30 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:22:30 [ 37] [ 12] [507900266772] +07:22:30 [ 41] [ 8] [0466PSLB] +07:22:30 [ 42] [ 15] [999999 ] +07:22:30 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:22:30 [ 49] [ 3] [418] +07:22:30 [ 52] [ 16] [88530FFBFD94F1FD] +07:22:30 ============================================================================ +07:22:30 + + +waiting on router queue for slot.... +07:22:30 Sending to : +07:22:30 ============================================================================ +07:22:30 Sending to : +07:22:30 ============================================================================ +07:22:31 ============================================================================ +07:22:31 Slot Id : <151> +07:22:31 Transaction Type : REQUEST +07:22:31 Received From : +07:22:31 ============================================================================ +07:22:31 FNo. Len. Field Value +07:22:31 ============================================================================ +07:22:31 [ 1] [ 4] [0200] +07:22:31 [ 2] [ 16] [6688990101741500] +07:22:31 [ 3] [ 6] [011000] +07:22:31 [ 4] [ 12] [000350000000] +07:22:31 [ 7] [ 10] [0320002138] +07:22:31 [ 11] [ 6] [266772] +07:22:31 [ 12] [ 6] [072138] +07:22:31 [ 13] [ 4] [0320] +07:22:31 [ 14] [ 4] [4205] +07:22:31 [ 15] [ 4] [0320] +07:22:31 [ 18] [ 4] [6011] +07:22:31 [ 19] [ 3] [418] +07:22:31 [ 22] [ 3] [021] +07:22:31 [ 25] [ 2] [01] +07:22:31 [ 28] [ 9] [D00002000] +07:22:31 [ 32] [ 6] [180893] +07:22:31 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:22:31 [ 37] [ 12] [507900266772] +07:22:31 [ 41] [ 8] [0466PSLB] +07:22:31 [ 42] [ 15] [999999 ] +07:22:31 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:22:31 [ 49] [ 3] [418] +07:22:31 [ 52] [ 16] [88530FFBFD94F1FD] +07:22:31 ============================================================================ +07:22:31 + + +waiting on router queue for slot.... +07:22:31 Sending to : +07:22:31 ============================================================================ +07:22:31 ============================================================================ +07:22:31 Slot Id : <151> +07:22:31 Transaction Type : REQUEST +07:22:31 Received From : +07:22:31 ============================================================================ +07:22:31 FNo. Len. Field Value +07:22:31 ============================================================================ +07:22:31 [ 1] [ 4] [0200] +07:22:31 [ 2] [ 16] [6688990101741500] +07:22:31 [ 3] [ 6] [011000] +07:22:31 [ 4] [ 12] [000350000000] +07:22:31 [ 7] [ 10] [0320002138] +07:22:31 [ 11] [ 6] [266772] +07:22:31 [ 12] [ 6] [072138] +07:22:31 [ 13] [ 4] [0320] +07:22:31 [ 14] [ 4] [4205] +07:22:31 [ 15] [ 4] [0320] +07:22:31 [ 18] [ 4] [6011] +07:22:31 [ 19] [ 3] [418] +07:22:31 [ 22] [ 3] [021] +07:22:31 [ 25] [ 2] [01] +07:22:31 [ 28] [ 9] [D00002000] +07:22:31 [ 32] [ 6] [180893] +07:22:31 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:22:31 [ 37] [ 12] [507900266772] +07:22:31 [ 41] [ 8] [0466PSLB] +07:22:31 [ 42] [ 15] [999999 ] +07:22:31 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:22:31 [ 49] [ 3] [418] +07:22:31 [ 52] [ 16] [E82A7C1E92F6CD78] +07:22:31 ============================================================================ +07:22:31 + + +waiting on router queue for slot.... +07:22:31 Sending to : <0> +07:22:31 ============================================================================ +07:22:31 ============================================================================ +07:22:31 Slot Id : <151> +07:22:31 Transaction Type : RESPONSE +07:22:31 Received From : +07:22:31 ============================================================================ +07:22:31 FNo. Len. Field Value +07:22:31 ============================================================================ +07:22:31 [ 1] [ 4] [0210] +07:22:31 [ 2] [ 16] [6688990101741500] +07:22:31 [ 3] [ 6] [011000] +07:22:31 [ 4] [ 12] [000350000000] +07:22:31 [ 7] [ 10] [0320002138] +07:22:31 [ 11] [ 6] [266772] +07:22:31 [ 12] [ 6] [072138] +07:22:31 [ 13] [ 4] [0320] +07:22:31 [ 15] [ 4] [0320] +07:22:31 [ 18] [ 4] [6011] +07:22:31 [ 19] [ 3] [418] +07:22:31 [ 22] [ 3] [021] +07:22:31 [ 32] [ 6] [180893] +07:22:31 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:22:31 [ 37] [ 12] [507900266772] +07:22:31 [ 39] [ 2] [61] +07:22:31 [ 41] [ 8] [0466PSLB] +07:22:31 [ 49] [ 3] [418] +07:22:31 ============================================================================ +07:22:31 Sending to : +07:22:31 ============================================================================ +07:22:31 + + +waiting on router queue for slot.... +07:22:32 ============================================================================ +07:22:32 Slot Id : <151> +07:22:32 Transaction Type : RESPONSE +07:22:32 Received From : +07:22:32 ============================================================================ +07:22:32 FNo. Len. Field Value +07:22:32 ============================================================================ +07:22:32 [ 1] [ 4] [0210] +07:22:32 [ 2] [ 16] [6688990101741500] +07:22:32 [ 3] [ 6] [011000] +07:22:32 [ 4] [ 12] [000350000000] +07:22:32 [ 7] [ 10] [0320002138] +07:22:32 [ 11] [ 6] [266772] +07:22:32 [ 12] [ 6] [072138] +07:22:32 [ 13] [ 4] [0320] +07:22:32 [ 15] [ 4] [0320] +07:22:32 [ 18] [ 4] [6011] +07:22:32 [ 19] [ 3] [418] +07:22:32 [ 22] [ 3] [021] +07:22:32 [ 32] [ 6] [180893] +07:22:32 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:22:32 [ 37] [ 12] [507900266772] +07:22:32 [ 39] [ 2] [61] +07:22:32 [ 41] [ 8] [0466PSLB] +07:22:32 [ 49] [ 3] [418] +07:22:32 ============================================================================ +07:22:32 Calculate Source COMM Id = 2 +07:22:32 ============================================================================ +07:22:32 + + +waiting on router queue for slot.... +07:22:44 ============================================================================ +07:22:44 Slot Id : <164> +07:22:44 Transaction Type : REQUEST +07:22:44 Received From : +07:22:44 ============================================================================ +07:22:44 FNo. Len. Field Value +07:22:44 ============================================================================ +07:22:44 [ 1] [ 4] [0800] +07:22:44 [ 7] [ 10] [0320122152] +07:22:44 [ 11] [ 6] [155143] +07:22:44 [ 70] [ 3] [301] +07:22:44 ============================================================================ +07:22:44 + + +waiting on router queue for slot.... +07:22:44 Sending to : +07:22:44 ============================================================================ +07:22:44 ============================================================================ +07:22:44 Slot Id : <164> +07:22:44 Transaction Type : RESPONSE +07:22:44 Received From : +07:22:44 ============================================================================ +07:22:44 FNo. Len. Field Value +07:22:44 ============================================================================ +07:22:44 [ 1] [ 4] [0810] +07:22:44 [ 7] [ 10] [0320122152] +07:22:44 [ 11] [ 6] [155143] +07:22:44 [ 39] [ 2] [00] +07:22:44 [ 70] [ 3] [301] +07:22:44 ============================================================================ +07:22:44 Calculate Source COMM Id = 2 +07:22:44 ============================================================================ +07:22:44 + + +waiting on router queue for slot.... +07:22:52 ============================================================================ +07:22:52 Slot Id : <157> +07:22:52 Transaction Type : REQUEST +07:22:52 Received From : +07:22:52 ============================================================================ +07:22:52 FNo. Len. Field Value +07:22:52 ============================================================================ +07:22:52 [ 1] [ 4] [0800] +07:22:52 [ 2] [ 5] [02531] +07:22:52 [ 3] [ 6] [579078] +07:22:52 [ 7] [ 10] [0320002252] +07:22:52 [ 11] [ 6] [806840] +07:22:52 [ 15] [ 10] [0320002252] +07:22:52 [ 37] [ 11] [57907806840] +07:22:52 [ 70] [ 3] [001] +07:22:52 ============================================================================ +07:22:52 + + +waiting on router queue for slot.... +07:22:52 ============================================================================ +07:22:52 Slot Id : <157> +07:22:52 Transaction Type : RESPONSE +07:22:52 Received From : +07:22:52 ============================================================================ +07:22:52 FNo. Len. Field Value +07:22:52 ============================================================================ +07:22:52 [ 1] [ 4] [0810] +07:22:52 [ 7] [ 10] [0320002252] +07:22:52 [ 11] [ 6] [806840] +07:22:52 [ 15] [ 4] [0320] +07:22:52 [ 37] [ 12] [57907806840] +07:22:52 [ 39] [ 2] [00] +07:22:52 [ 70] [ 3] [001] +07:22:52 ============================================================================ +07:22:52 Sending to : +07:22:52 ============================================================================ +07:22:52 + + +waiting on router queue for slot.... +07:22:56 ============================================================================ +07:22:56 Slot Id : <172> +07:22:56 Transaction Type : REQUEST +07:22:56 Received From : +07:22:56 ============================================================================ +07:22:56 FNo. Len. Field Value +07:22:56 ============================================================================ +07:22:56 [ 1] [ 4] [0800] +07:22:56 [ 7] [ 10] [0320122204] +07:22:56 [ 11] [ 6] [155144] +07:22:56 [ 70] [ 3] [301] +07:22:56 ============================================================================ +07:22:56 + + +waiting on router queue for slot.... +07:22:56 Sending to : +07:22:56 ============================================================================ +07:22:56 ============================================================================ +07:22:56 Slot Id : <172> +07:22:56 Transaction Type : RESPONSE +07:22:56 Received From : +07:22:56 ============================================================================ +07:22:56 FNo. Len. Field Value +07:22:56 ============================================================================ +07:22:56 [ 1] [ 4] [0810] +07:22:56 [ 7] [ 10] [0320122204] +07:22:56 [ 11] [ 6] [155144] +07:22:56 [ 39] [ 2] [00] +07:22:56 [ 70] [ 3] [301] +07:22:56 ============================================================================ +07:22:56 Calculate Source COMM Id = 2 +07:22:56 ============================================================================ +07:22:56 + + +waiting on router queue for slot.... +07:23:05 ============================================================================ +07:23:05 Slot Id : <182> +07:23:05 Transaction Type : REQUEST +07:23:05 Received From : +07:23:05 ============================================================================ +07:23:05 FNo. Len. Field Value +07:23:05 ============================================================================ +07:23:05 [ 1] [ 4] [0200] +07:23:05 [ 2] [ 16] [6688990101741500] +07:23:05 [ 3] [ 6] [010000] +07:23:05 [ 4] [ 12] [000010000000] +07:23:05 [ 7] [ 10] [0320002213] +07:23:05 [ 11] [ 6] [266777] +07:23:05 [ 12] [ 6] [072213] +07:23:05 [ 13] [ 4] [0320] +07:23:05 [ 14] [ 4] [4205] +07:23:05 [ 15] [ 4] [0320] +07:23:05 [ 18] [ 4] [6011] +07:23:05 [ 19] [ 3] [418] +07:23:05 [ 22] [ 3] [021] +07:23:05 [ 25] [ 2] [01] +07:23:05 [ 28] [ 9] [D00002000] +07:23:05 [ 32] [ 6] [180893] +07:23:05 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:23:05 [ 37] [ 12] [507900266777] +07:23:05 [ 41] [ 8] [0466PSLB] +07:23:05 [ 42] [ 15] [999999 ] +07:23:05 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:23:05 [ 49] [ 3] [418] +07:23:05 [ 52] [ 16] [88530FFBFD94F1FD] +07:23:05 ============================================================================ +07:23:05 + + +waiting on router queue for slot.... +07:23:05 Sending to : +07:23:05 ============================================================================ +07:23:05 Sending to : +07:23:05 ============================================================================ +07:23:05 ============================================================================ +07:23:05 Slot Id : <182> +07:23:05 Transaction Type : REQUEST +07:23:05 Received From : +07:23:05 ============================================================================ +07:23:05 FNo. Len. Field Value +07:23:05 ============================================================================ +07:23:05 [ 1] [ 4] [0200] +07:23:05 [ 2] [ 16] [6688990101741500] +07:23:05 [ 3] [ 6] [010000] +07:23:05 [ 4] [ 12] [000010000000] +07:23:05 [ 7] [ 10] [0320002213] +07:23:05 [ 11] [ 6] [266777] +07:23:05 [ 12] [ 6] [072213] +07:23:05 [ 13] [ 4] [0320] +07:23:05 [ 14] [ 4] [4205] +07:23:05 [ 15] [ 4] [0320] +07:23:05 [ 18] [ 4] [6011] +07:23:05 [ 19] [ 3] [418] +07:23:05 [ 22] [ 3] [021] +07:23:05 [ 25] [ 2] [01] +07:23:05 [ 28] [ 9] [D00002000] +07:23:05 [ 32] [ 6] [180893] +07:23:05 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:23:05 [ 37] [ 12] [507900266777] +07:23:05 [ 41] [ 8] [0466PSLB] +07:23:05 [ 42] [ 15] [999999 ] +07:23:05 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:23:05 [ 49] [ 3] [418] +07:23:05 [ 52] [ 16] [88530FFBFD94F1FD] +07:23:05 ============================================================================ +07:23:05 + + +waiting on router queue for slot.... +07:23:05 Sending to : +07:23:05 ============================================================================ +07:23:05 ============================================================================ +07:23:05 Slot Id : <182> +07:23:05 Transaction Type : REQUEST +07:23:05 Received From : +07:23:05 ============================================================================ +07:23:05 FNo. Len. Field Value +07:23:05 ============================================================================ +07:23:05 [ 1] [ 4] [0200] +07:23:05 [ 2] [ 16] [6688990101741500] +07:23:05 [ 3] [ 6] [010000] +07:23:05 [ 4] [ 12] [000010000000] +07:23:05 [ 7] [ 10] [0320002213] +07:23:05 [ 11] [ 6] [266777] +07:23:05 [ 12] [ 6] [072213] +07:23:05 [ 13] [ 4] [0320] +07:23:05 [ 14] [ 4] [4205] +07:23:05 [ 15] [ 4] [0320] +07:23:05 [ 18] [ 4] [6011] +07:23:05 [ 19] [ 3] [418] +07:23:05 [ 22] [ 3] [021] +07:23:05 [ 25] [ 2] [01] +07:23:05 [ 28] [ 9] [D00002000] +07:23:05 [ 32] [ 6] [180893] +07:23:05 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:23:05 [ 37] [ 12] [507900266777] +07:23:05 [ 41] [ 8] [0466PSLB] +07:23:05 [ 42] [ 15] [999999 ] +07:23:05 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:23:05 [ 49] [ 3] [418] +07:23:05 [ 52] [ 16] [E82A7C1E92F6CD78] +07:23:05 ============================================================================ +07:23:05 + + +waiting on router queue for slot.... +07:23:05 Sending to : <0> +07:23:05 ============================================================================ +07:23:05 ============================================================================ +07:23:05 Slot Id : <182> +07:23:05 Transaction Type : RESPONSE +07:23:05 Received From : +07:23:05 ============================================================================ +07:23:05 FNo. Len. Field Value +07:23:05 ============================================================================ +07:23:05 [ 1] [ 4] [0210] +07:23:05 [ 2] [ 16] [6688990101741500] +07:23:05 [ 3] [ 6] [010000] +07:23:05 [ 4] [ 12] [000010000000] +07:23:05 [ 7] [ 10] [0320002213] +07:23:05 [ 11] [ 6] [266777] +07:23:05 [ 12] [ 6] [072213] +07:23:05 [ 13] [ 4] [0320] +07:23:05 [ 15] [ 4] [0320] +07:23:05 [ 18] [ 4] [6011] +07:23:05 [ 19] [ 3] [418] +07:23:05 [ 22] [ 3] [021] +07:23:05 [ 32] [ 6] [180893] +07:23:05 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:23:05 [ 37] [ 12] [507900266777] +07:23:05 [ 39] [ 2] [14] +07:23:05 [ 41] [ 8] [0466PSLB] +07:23:05 [ 49] [ 3] [418] +07:23:05 ============================================================================ +07:23:05 Sending to : +07:23:05 ============================================================================ +07:23:05 + + +waiting on router queue for slot.... +07:23:06 ============================================================================ +07:23:06 Slot Id : <186> +07:23:06 Transaction Type : REQUEST +07:23:06 Received From : +07:23:06 ============================================================================ +07:23:06 FNo. Len. Field Value +07:23:06 ============================================================================ +07:23:06 [ 1] [ 4] [0800] +07:23:06 [ 7] [ 10] [0320122215] +07:23:06 [ 11] [ 6] [155145] +07:23:06 [ 70] [ 3] [301] +07:23:06 ============================================================================ +07:23:06 + + +waiting on router queue for slot.... +07:23:06 Sending to : +07:23:06 ============================================================================ +07:23:06 ============================================================================ +07:23:06 Slot Id : <186> +07:23:06 Transaction Type : RESPONSE +07:23:06 Received From : +07:23:06 ============================================================================ +07:23:06 FNo. Len. Field Value +07:23:06 ============================================================================ +07:23:06 [ 1] [ 4] [0810] +07:23:06 [ 7] [ 10] [0320122215] +07:23:06 [ 11] [ 6] [155145] +07:23:06 [ 39] [ 2] [00] +07:23:06 [ 70] [ 3] [301] +07:23:06 ============================================================================ +07:23:06 Calculate Source COMM Id = 2 +07:23:06 ============================================================================ +07:23:06 + + +waiting on router queue for slot.... +07:23:06 ============================================================================ +07:23:06 Slot Id : <182> +07:23:06 Transaction Type : RESPONSE +07:23:06 Received From : +07:23:06 ============================================================================ +07:23:06 FNo. Len. Field Value +07:23:06 ============================================================================ +07:23:06 [ 1] [ 4] [0210] +07:23:06 [ 2] [ 16] [6688990101741500] +07:23:06 [ 3] [ 6] [010000] +07:23:06 [ 4] [ 12] [000010000000] +07:23:06 [ 7] [ 10] [0320002213] +07:23:06 [ 11] [ 6] [266777] +07:23:06 [ 12] [ 6] [072213] +07:23:06 [ 13] [ 4] [0320] +07:23:06 [ 15] [ 4] [0320] +07:23:06 [ 18] [ 4] [6011] +07:23:06 [ 19] [ 3] [418] +07:23:06 [ 22] [ 3] [021] +07:23:06 [ 32] [ 6] [180893] +07:23:06 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:23:06 [ 37] [ 12] [507900266777] +07:23:06 [ 39] [ 2] [14] +07:23:06 [ 41] [ 8] [0466PSLB] +07:23:06 [ 49] [ 3] [418] +07:23:06 ============================================================================ +07:23:06 Calculate Source COMM Id = 2 +07:23:06 ============================================================================ +07:23:06 + + +waiting on router queue for slot.... +07:23:08 ============================================================================ +07:23:08 Slot Id : <148> +07:23:08 Transaction Type : REQUEST +07:23:08 Received From : +07:23:08 ============================================================================ +07:23:08 FNo. Len. Field Value +07:23:08 ============================================================================ +07:23:08 [ 1] [ 4] [0800] +07:23:08 [ 7] [ 10] [0320143457] +07:23:08 [ 11] [ 6] [073457] +07:23:08 [ 37] [ 12] [57907073457] +07:23:08 [ 70] [ 3] [301] +07:23:08 ============================================================================ +07:23:08 + + +waiting on router queue for slot.... +07:23:08 Sending to : +07:23:08 ============================================================================ +07:23:08 ============================================================================ +07:23:08 Slot Id : <148> +07:23:08 Transaction Type : RESPONSE +07:23:08 Received From : +07:23:08 ============================================================================ +07:23:08 FNo. Len. Field Value +07:23:08 ============================================================================ +07:23:08 [ 1] [ 4] [0810] +07:23:08 [ 7] [ 10] [0320143457] +07:23:08 [ 11] [ 6] [073457] +07:23:08 [ 37] [ 12] [579070734570] +07:23:08 [ 39] [ 2] [00] +07:23:08 [ 70] [ 3] [810] +07:23:08 ============================================================================ +07:23:08 Calculate Source COMM Id = 6 +07:23:08 ============================================================================ +07:23:08 + + +waiting on router queue for slot.... +07:23:18 ============================================================================ +07:23:18 Slot Id : <126> +07:23:18 Transaction Type : REQUEST +07:23:18 Received From : +07:23:18 ============================================================================ +07:23:18 FNo. Len. Field Value +07:23:18 ============================================================================ +07:23:18 [ 1] [ 4] [0800] +07:23:18 [ 7] [ 10] [0320122226] +07:23:18 [ 11] [ 6] [155146] +07:23:18 [ 70] [ 3] [301] +07:23:18 ============================================================================ +07:23:18 + + +waiting on router queue for slot.... +07:23:18 Sending to : +07:23:18 ============================================================================ +07:23:18 ============================================================================ +07:23:18 Slot Id : <126> +07:23:18 Transaction Type : RESPONSE +07:23:18 Received From : +07:23:18 ============================================================================ +07:23:18 FNo. Len. Field Value +07:23:18 ============================================================================ +07:23:18 [ 1] [ 4] [0810] +07:23:18 [ 7] [ 10] [0320122226] +07:23:18 [ 11] [ 6] [155146] +07:23:18 [ 39] [ 2] [00] +07:23:18 [ 70] [ 3] [301] +07:23:18 ============================================================================ +07:23:18 Calculate Source COMM Id = 2 +07:23:18 ============================================================================ +07:23:18 + + +waiting on router queue for slot.... +07:23:28 ============================================================================ +07:23:28 Slot Id : <171> +07:23:28 Transaction Type : REQUEST +07:23:28 Received From : +07:23:28 ============================================================================ +07:23:28 FNo. Len. Field Value +07:23:28 ============================================================================ +07:23:28 [ 1] [ 4] [0800] +07:23:28 [ 7] [ 10] [0320122236] +07:23:28 [ 11] [ 6] [155147] +07:23:28 [ 70] [ 3] [301] +07:23:28 ============================================================================ +07:23:28 + + +waiting on router queue for slot.... +07:23:28 Sending to : +07:23:28 ============================================================================ +07:23:28 ============================================================================ +07:23:28 Slot Id : <171> +07:23:28 Transaction Type : RESPONSE +07:23:28 Received From : +07:23:28 ============================================================================ +07:23:28 FNo. Len. Field Value +07:23:28 ============================================================================ +07:23:28 [ 1] [ 4] [0810] +07:23:28 [ 7] [ 10] [0320122236] +07:23:28 [ 11] [ 6] [155147] +07:23:28 [ 39] [ 2] [00] +07:23:28 [ 70] [ 3] [301] +07:23:28 ============================================================================ +07:23:28 Calculate Source COMM Id = 2 +07:23:28 ============================================================================ +07:23:28 + + +waiting on router queue for slot.... +07:23:37 ============================================================================ +07:23:37 Slot Id : <119> +07:23:37 Transaction Type : REQUEST +07:23:37 Received From : +07:23:37 ============================================================================ +07:23:37 FNo. Len. Field Value +07:23:37 ============================================================================ +07:23:37 [ 1] [ 4] [0200] +07:23:37 [ 2] [ 16] [6688990103283808] +07:23:37 [ 3] [ 6] [012000] +07:23:37 [ 4] [ 12] [000100000000] +07:23:37 [ 7] [ 10] [0320072333] +07:23:37 [ 11] [ 6] [669696] +07:23:37 [ 12] [ 6] [072333] +07:23:37 [ 13] [ 4] [0320] +07:23:37 [ 15] [ 4] [0320] +07:23:37 [ 18] [ 4] [6011] +07:23:37 [ 22] [ 3] [900] +07:23:37 [ 25] [ 2] [02] +07:23:37 [ 28] [ 9] [D00002000] +07:23:37 [ 32] [ 6] [621354] +07:23:37 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:23:37 [ 37] [ 12] [507903499435] +07:23:37 [ 41] [ 8] [06002200] +07:23:37 [ 42] [ 15] [NATIVE ] +07:23:37 [ 43] [ 40] [Beng Market Beng LAO] +07:23:37 [ 49] [ 3] [418] +07:23:37 [ 52] [ 16] [9A276BA769B47746] +07:23:37 ============================================================================ +07:23:37 + + +waiting on router queue for slot.... +07:23:37 Sending to : +07:23:37 ============================================================================ +07:23:37 Sending to : +07:23:37 ============================================================================ +07:23:37 ============================================================================ +07:23:37 Slot Id : <119> +07:23:37 Transaction Type : REQUEST +07:23:37 Received From : +07:23:37 ============================================================================ +07:23:37 FNo. Len. Field Value +07:23:37 ============================================================================ +07:23:37 [ 1] [ 4] [0200] +07:23:37 [ 2] [ 16] [6688990103283808] +07:23:37 [ 3] [ 6] [012000] +07:23:37 [ 4] [ 12] [000100000000] +07:23:37 [ 7] [ 10] [0320072333] +07:23:37 [ 11] [ 6] [669696] +07:23:37 [ 12] [ 6] [072333] +07:23:37 [ 13] [ 4] [0320] +07:23:37 [ 15] [ 4] [0320] +07:23:37 [ 18] [ 4] [6011] +07:23:37 [ 22] [ 3] [900] +07:23:37 [ 25] [ 2] [02] +07:23:37 [ 28] [ 9] [D00002000] +07:23:37 [ 32] [ 6] [621354] +07:23:37 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:23:37 [ 37] [ 12] [507903499435] +07:23:37 [ 41] [ 8] [06002200] +07:23:37 [ 42] [ 15] [NATIVE ] +07:23:37 [ 43] [ 40] [Beng Market Beng LAO] +07:23:37 [ 49] [ 3] [418] +07:23:37 [ 52] [ 16] [9A276BA769B47746] +07:23:37 ============================================================================ +07:23:37 + + +waiting on router queue for slot.... +07:23:37 Sending to : +07:23:37 ============================================================================ +07:23:37 ============================================================================ +07:23:37 Slot Id : <119> +07:23:37 Transaction Type : REQUEST +07:23:37 Received From : +07:23:37 ============================================================================ +07:23:37 FNo. Len. Field Value +07:23:37 ============================================================================ +07:23:37 [ 1] [ 4] [0200] +07:23:37 [ 2] [ 16] [6688990103283808] +07:23:37 [ 3] [ 6] [012000] +07:23:37 [ 4] [ 12] [000100000000] +07:23:37 [ 7] [ 10] [0320072333] +07:23:37 [ 11] [ 6] [669696] +07:23:37 [ 12] [ 6] [072333] +07:23:37 [ 13] [ 4] [0320] +07:23:37 [ 15] [ 4] [0320] +07:23:37 [ 18] [ 4] [6011] +07:23:37 [ 22] [ 3] [900] +07:23:37 [ 25] [ 2] [02] +07:23:37 [ 28] [ 9] [D00002000] +07:23:37 [ 32] [ 6] [621354] +07:23:37 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:23:37 [ 37] [ 12] [507903499435] +07:23:37 [ 41] [ 8] [06002200] +07:23:37 [ 42] [ 15] [NATIVE ] +07:23:37 [ 43] [ 40] [Beng Market Beng LAO] +07:23:37 [ 49] [ 3] [418] +07:23:37 [ 52] [ 16] [86FF75AE9775DC51] +07:23:37 ============================================================================ +07:23:37 + + +waiting on router queue for slot.... +07:23:37 Sending to : <4> +07:23:37 ============================================================================ +07:23:38 ============================================================================ +07:23:38 Slot Id : <119> +07:23:38 Transaction Type : RESPONSE +07:23:38 Received From : +07:23:38 ============================================================================ +07:23:38 FNo. Len. Field Value +07:23:38 ============================================================================ +07:23:38 [ 1] [ 4] [0210] +07:23:38 [ 2] [ 16] [6688990103283808] +07:23:38 [ 3] [ 6] [012000] +07:23:38 [ 4] [ 12] [000100000000] +07:23:38 [ 11] [ 6] [669696] +07:23:38 [ 12] [ 6] [072333] +07:23:38 [ 15] [ 4] [0320] +07:23:38 [ 18] [ 4] [6011] +07:23:38 [ 32] [ 6] [621354] +07:23:38 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:23:38 [ 37] [ 12] [507903499435] +07:23:38 [ 38] [ 6] [079695] +07:23:38 [ 39] [ 2] [00] +07:23:38 [ 41] [ 8] [06002200] +07:23:38 [ 49] [ 3] [418] +07:23:38 [ 54] [ 20] [2002418C000157533955] +07:23:38 ============================================================================ +07:23:38 Sending to : +07:23:38 ============================================================================ +07:23:38 + + +waiting on router queue for slot.... +07:23:40 ============================================================================ +07:23:40 Slot Id : <119> +07:23:40 Transaction Type : RESPONSE +07:23:40 Received From : +07:23:40 ============================================================================ +07:23:40 FNo. Len. Field Value +07:23:40 ============================================================================ +07:23:40 [ 1] [ 4] [0210] +07:23:40 [ 2] [ 16] [6688990103283808] +07:23:40 [ 3] [ 6] [012000] +07:23:40 [ 4] [ 12] [000100000000] +07:23:40 [ 11] [ 6] [669696] +07:23:40 [ 12] [ 6] [072333] +07:23:40 [ 15] [ 4] [0320] +07:23:40 [ 18] [ 4] [6011] +07:23:40 [ 32] [ 6] [621354] +07:23:40 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:23:40 [ 37] [ 12] [507903499435] +07:23:40 [ 38] [ 6] [079695] +07:23:40 [ 39] [ 2] [00] +07:23:40 [ 41] [ 8] [06002200] +07:23:40 [ 49] [ 3] [418] +07:23:40 [ 54] [ 20] [2002418C000157533955] +07:23:40 ============================================================================ +07:23:40 Calculate Source COMM Id = 0 +07:23:40 ============================================================================ +07:23:40 + + +waiting on router queue for slot.... +07:23:43 ============================================================================ +07:23:43 Slot Id : <139> +07:23:43 Transaction Type : REQUEST +07:23:43 Received From : +07:23:43 ============================================================================ +07:23:43 FNo. Len. Field Value +07:23:43 ============================================================================ +07:23:43 [ 1] [ 4] [0200] +07:23:43 [ 2] [ 16] [6213544001409058] +07:23:43 [ 3] [ 6] [011000] +07:23:43 [ 4] [ 12] [000010000000] +07:23:43 [ 7] [ 10] [0320072405] +07:23:43 [ 11] [ 6] [201228] +07:23:43 [ 12] [ 6] [072548] +07:23:43 [ 13] [ 4] [0320] +07:23:43 [ 14] [ 4] [4912] +07:23:43 [ 15] [ 4] [0320] +07:23:43 [ 18] [ 4] [6011] +07:23:43 [ 19] [ 3] [418] +07:23:43 [ 22] [ 3] [021] +07:23:43 [ 25] [ 2] [01] +07:23:43 [ 28] [ 9] [D00002000] +07:23:43 [ 32] [ 6] [198901] +07:23:43 [ 35] [ 32] [6213544001409058=491212010905409] +07:23:43 [ 37] [ 12] [507907201228] +07:23:43 [ 41] [ 8] [00002222] +07:23:43 [ 42] [ 15] [000000041002222] +07:23:43 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +07:23:43 [ 49] [ 3] [418] +07:23:43 [ 52] [ 16] [DA8E2D0CFADADC9D] +07:23:43 ============================================================================ +07:23:43 + + +waiting on router queue for slot.... +07:23:43 Sending to : +07:23:43 ============================================================================ +07:23:43 Sending to : +07:23:43 ============================================================================ +07:23:43 ============================================================================ +07:23:43 Slot Id : <139> +07:23:43 Transaction Type : REQUEST +07:23:43 Received From : +07:23:43 ============================================================================ +07:23:43 FNo. Len. Field Value +07:23:43 ============================================================================ +07:23:43 [ 1] [ 4] [0200] +07:23:43 [ 2] [ 16] [6213544001409058] +07:23:43 [ 3] [ 6] [011000] +07:23:43 [ 4] [ 12] [000010000000] +07:23:43 [ 7] [ 10] [0320072405] +07:23:43 [ 11] [ 6] [201228] +07:23:43 [ 12] [ 6] [072548] +07:23:43 [ 13] [ 4] [0320] +07:23:43 [ 14] [ 4] [4912] +07:23:43 [ 15] [ 4] [0320] +07:23:43 [ 18] [ 4] [6011] +07:23:43 [ 19] [ 3] [418] +07:23:43 [ 22] [ 3] [021] +07:23:43 [ 25] [ 2] [01] +07:23:43 [ 28] [ 9] [D00002000] +07:23:43 [ 32] [ 6] [198901] +07:23:43 [ 35] [ 32] [6213544001409058=491212010905409] +07:23:43 [ 37] [ 12] [507907201228] +07:23:43 [ 41] [ 8] [00002222] +07:23:43 [ 42] [ 15] [000000041002222] +07:23:43 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +07:23:43 [ 49] [ 3] [418] +07:23:43 [ 52] [ 16] [DA8E2D0CFADADC9D] +07:23:43 ============================================================================ +07:23:43 + + +waiting on router queue for slot.... +07:23:43 Sending to : +07:23:43 ============================================================================ +07:23:43 ============================================================================ +07:23:43 Slot Id : <139> +07:23:43 Transaction Type : REQUEST +07:23:43 Received From : +07:23:43 ============================================================================ +07:23:43 FNo. Len. Field Value +07:23:43 ============================================================================ +07:23:43 [ 1] [ 4] [0200] +07:23:43 [ 2] [ 16] [6213544001409058] +07:23:43 [ 3] [ 6] [011000] +07:23:43 [ 4] [ 12] [000010000000] +07:23:43 [ 7] [ 10] [0320072405] +07:23:43 [ 11] [ 6] [201228] +07:23:43 [ 12] [ 6] [072548] +07:23:43 [ 13] [ 4] [0320] +07:23:43 [ 14] [ 4] [4912] +07:23:43 [ 15] [ 4] [0320] +07:23:43 [ 18] [ 4] [6011] +07:23:43 [ 19] [ 3] [418] +07:23:43 [ 22] [ 3] [021] +07:23:43 [ 25] [ 2] [01] +07:23:43 [ 28] [ 9] [D00002000] +07:23:43 [ 32] [ 6] [198901] +07:23:43 [ 35] [ 32] [6213544001409058=491212010905409] +07:23:43 [ 37] [ 12] [507907201228] +07:23:43 [ 41] [ 8] [00002222] +07:23:43 [ 42] [ 15] [000000041002222] +07:23:43 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +07:23:43 [ 49] [ 3] [418] +07:23:43 [ 52] [ 16] [9ADFABB66680C2CA] +07:23:43 ============================================================================ +07:23:43 + + +waiting on router queue for slot.... +07:23:43 Sending to : <0> +07:23:43 ============================================================================ +07:23:44 ============================================================================ +07:23:44 Slot Id : <176> +07:23:44 Transaction Type : REQUEST +07:23:44 Received From : +07:23:44 ============================================================================ +07:23:44 FNo. Len. Field Value +07:23:44 ============================================================================ +07:23:44 [ 1] [ 4] [0800] +07:23:44 [ 7] [ 10] [0320122252] +07:23:44 [ 11] [ 6] [155148] +07:23:44 [ 70] [ 3] [301] +07:23:44 ============================================================================ +07:23:44 + + +waiting on router queue for slot.... +07:23:44 Sending to : +07:23:44 ============================================================================ +07:23:44 ============================================================================ +07:23:44 Slot Id : <176> +07:23:44 Transaction Type : RESPONSE +07:23:44 Received From : +07:23:44 ============================================================================ +07:23:44 FNo. Len. Field Value +07:23:44 ============================================================================ +07:23:44 [ 1] [ 4] [0810] +07:23:44 [ 7] [ 10] [0320122252] +07:23:44 [ 11] [ 6] [155148] +07:23:44 [ 39] [ 2] [00] +07:23:44 [ 70] [ 3] [301] +07:23:44 ============================================================================ +07:23:44 Calculate Source COMM Id = 2 +07:23:44 ============================================================================ +07:23:44 + + +waiting on router queue for slot.... +07:23:44 ============================================================================ +07:23:44 Slot Id : <139> +07:23:44 Transaction Type : RESPONSE +07:23:44 Received From : +07:23:44 ============================================================================ +07:23:44 FNo. Len. Field Value +07:23:44 ============================================================================ +07:23:44 [ 1] [ 4] [0210] +07:23:44 [ 2] [ 16] [6213544001409058] +07:23:44 [ 3] [ 6] [011000] +07:23:44 [ 4] [ 12] [000010000000] +07:23:44 [ 7] [ 10] [0320072405] +07:23:44 [ 11] [ 6] [201228] +07:23:44 [ 12] [ 6] [072548] +07:23:44 [ 13] [ 4] [0320] +07:23:44 [ 15] [ 4] [0320] +07:23:44 [ 18] [ 4] [6011] +07:23:44 [ 19] [ 3] [418] +07:23:44 [ 32] [ 6] [198901] +07:23:44 [ 35] [ 32] [6213544001409058=491212010905409] +07:23:44 [ 37] [ 12] [507907201228] +07:23:44 [ 38] [ 6] [261482] +07:23:44 [ 39] [ 2] [00] +07:23:44 [ 41] [ 8] [00002222] +07:23:44 [ 49] [ 3] [418] +07:23:44 [ 54] [ 40] [1001418C0000215178441002418C000021517844] +07:23:44 ============================================================================ +07:23:44 Sending to : +07:23:44 ============================================================================ +07:23:44 + + +waiting on router queue for slot.... +07:23:46 ============================================================================ +07:23:46 Slot Id : <139> +07:23:46 Transaction Type : RESPONSE +07:23:46 Received From : +07:23:46 ============================================================================ +07:23:46 FNo. Len. Field Value +07:23:46 ============================================================================ +07:23:46 [ 1] [ 4] [0210] +07:23:46 [ 2] [ 16] [6213544001409058] +07:23:46 [ 3] [ 6] [011000] +07:23:46 [ 4] [ 12] [000010000000] +07:23:46 [ 7] [ 10] [0320072405] +07:23:46 [ 11] [ 6] [201228] +07:23:46 [ 12] [ 6] [072548] +07:23:46 [ 13] [ 4] [0320] +07:23:46 [ 15] [ 4] [0320] +07:23:46 [ 18] [ 4] [6011] +07:23:46 [ 19] [ 3] [418] +07:23:46 [ 32] [ 6] [198901] +07:23:46 [ 35] [ 32] [6213544001409058=491212010905409] +07:23:46 [ 37] [ 12] [507907201228] +07:23:46 [ 38] [ 6] [261482] +07:23:46 [ 39] [ 2] [00] +07:23:46 [ 41] [ 8] [00002222] +07:23:46 [ 49] [ 3] [418] +07:23:46 [ 54] [ 40] [1001418C0000215178441002418C000021517844] +07:23:46 ============================================================================ +07:23:46 Calculate Source COMM Id = 5 +07:23:46 ============================================================================ +07:23:46 + + +waiting on router queue for slot.... +07:23:47 ============================================================================ +07:23:47 Slot Id : <156> +07:23:47 Transaction Type : REQUEST +07:23:47 Received From : +07:23:47 ============================================================================ +07:23:47 FNo. Len. Field Value +07:23:47 ============================================================================ +07:23:47 [ 1] [ 4] [0200] +07:23:47 [ 2] [ 16] [1808930600007553] +07:23:47 [ 3] [ 6] [010000] +07:23:47 [ 4] [ 12] [000030000000] +07:23:47 [ 7] [ 10] [0320072344] +07:23:47 [ 11] [ 6] [669724] +07:23:47 [ 12] [ 6] [072344] +07:23:47 [ 13] [ 4] [0320] +07:23:47 [ 15] [ 4] [0320] +07:23:47 [ 18] [ 4] [6011] +07:23:47 [ 22] [ 3] [900] +07:23:47 [ 25] [ 2] [02] +07:23:47 [ 28] [ 9] [D00002000] +07:23:47 [ 32] [ 6] [621354] +07:23:47 [ 35] [ 27] [1808930600007553=1803500265] +07:23:47 [ 37] [ 12] [507904422941] +07:23:47 [ 41] [ 8] [03004100] +07:23:47 [ 42] [ 15] [NATIVE ] +07:23:47 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +07:23:47 [ 49] [ 3] [418] +07:23:47 [ 52] [ 16] [73DAAEAE908E695A] +07:23:47 ============================================================================ +07:23:47 + + +waiting on router queue for slot.... +07:23:47 Sending to : +07:23:47 ============================================================================ +07:23:47 Sending to : +07:23:47 ============================================================================ +07:23:47 ============================================================================ +07:23:47 Slot Id : <156> +07:23:47 Transaction Type : REQUEST +07:23:47 Received From : +07:23:47 ============================================================================ +07:23:47 FNo. Len. Field Value +07:23:47 ============================================================================ +07:23:47 [ 1] [ 4] [0200] +07:23:47 [ 2] [ 16] [1808930600007553] +07:23:47 [ 3] [ 6] [010000] +07:23:47 [ 4] [ 12] [000030000000] +07:23:47 [ 7] [ 10] [0320072344] +07:23:47 [ 11] [ 6] [669724] +07:23:47 [ 12] [ 6] [072344] +07:23:47 [ 13] [ 4] [0320] +07:23:47 [ 15] [ 4] [0320] +07:23:47 [ 18] [ 4] [6011] +07:23:47 [ 22] [ 3] [900] +07:23:47 [ 25] [ 2] [02] +07:23:47 [ 28] [ 9] [D00002000] +07:23:47 [ 32] [ 6] [621354] +07:23:47 [ 35] [ 27] [1808930600007553=1803500265] +07:23:47 [ 37] [ 12] [507904422941] +07:23:47 [ 41] [ 8] [03004100] +07:23:47 [ 42] [ 15] [NATIVE ] +07:23:47 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +07:23:47 [ 49] [ 3] [418] +07:23:47 [ 52] [ 16] [73DAAEAE908E695A] +07:23:47 ============================================================================ +07:23:47 + + +waiting on router queue for slot.... +07:23:47 Sending to : +07:23:47 ============================================================================ +07:23:48 ============================================================================ +07:23:48 Slot Id : <156> +07:23:48 Transaction Type : REQUEST +07:23:48 Received From : +07:23:48 ============================================================================ +07:23:48 FNo. Len. Field Value +07:23:48 ============================================================================ +07:23:48 [ 1] [ 4] [0200] +07:23:48 [ 2] [ 16] [1808930600007553] +07:23:48 [ 3] [ 6] [010000] +07:23:48 [ 4] [ 12] [000030000000] +07:23:48 [ 7] [ 10] [0320072344] +07:23:48 [ 11] [ 6] [669724] +07:23:48 [ 12] [ 6] [072344] +07:23:48 [ 13] [ 4] [0320] +07:23:48 [ 15] [ 4] [0320] +07:23:48 [ 18] [ 4] [6011] +07:23:48 [ 22] [ 3] [900] +07:23:48 [ 25] [ 2] [02] +07:23:48 [ 28] [ 9] [D00002000] +07:23:48 [ 32] [ 6] [621354] +07:23:48 [ 35] [ 27] [1808930600007553=1803500265] +07:23:48 [ 37] [ 12] [507904422941] +07:23:48 [ 41] [ 8] [03004100] +07:23:48 [ 42] [ 15] [NATIVE ] +07:23:48 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +07:23:48 [ 49] [ 3] [418] +07:23:48 [ 52] [ 16] [C18C7057D5C2B751] +07:23:48 ============================================================================ +07:23:48 + + +waiting on router queue for slot.... +07:23:48 Sending to : <2> +07:23:48 ============================================================================ +07:23:54 ============================================================================ +07:23:54 Slot Id : <156> +07:23:54 Transaction Type : RESPONSE +07:23:54 Received From : +07:23:54 ============================================================================ +07:23:54 FNo. Len. Field Value +07:23:54 ============================================================================ +07:23:54 [ 1] [ 4] [0210] +07:23:54 [ 2] [ 16] [1808930600007553] +07:23:54 [ 3] [ 6] [010000] +07:23:54 [ 4] [ 12] [000030000000] +07:23:54 [ 6] [ 12] [000030000000] +07:23:54 [ 7] [ 10] [0320072344] +07:23:54 [ 11] [ 6] [669724] +07:23:54 [ 12] [ 6] [072344] +07:23:54 [ 13] [ 4] [0320] +07:23:54 [ 18] [ 4] [6011] +07:23:54 [ 19] [ 3] [418] +07:23:54 [ 22] [ 3] [021] +07:23:54 [ 32] [ 6] [621354] +07:23:54 [ 35] [ 27] [1808930600007553=1803500265] +07:23:54 [ 37] [ 12] [507904422941] +07:23:54 [ 38] [ 6] [669724] +07:23:54 [ 39] [ 2] [00] +07:23:54 [ 41] [ 8] [03004100] +07:23:54 [ 49] [ 3] [418] +07:23:54 [ 52] [ 16] [C18C7057D5C2B751] +07:23:54 [ 54] [ 20] [1001418C000075235100] +07:23:54 ============================================================================ +07:23:54 Sending to : +07:23:54 ============================================================================ +07:23:54 + + +waiting on router queue for slot.... +07:23:54 ============================================================================ +07:23:54 Slot Id : <202> +07:23:54 Transaction Type : REQUEST +07:23:54 Received From : +07:23:54 ============================================================================ +07:23:54 FNo. Len. Field Value +07:23:54 ============================================================================ +07:23:54 [ 1] [ 4] [0800] +07:23:54 [ 2] [ 5] [02531] +07:23:54 [ 3] [ 6] [579078] +07:23:54 [ 7] [ 10] [0320002354] +07:23:54 [ 11] [ 6] [806841] +07:23:54 [ 15] [ 10] [0320002354] +07:23:54 [ 37] [ 11] [57907806841] +07:23:54 [ 70] [ 3] [001] +07:23:54 ============================================================================ +07:23:54 + + +waiting on router queue for slot.... +07:23:54 ============================================================================ +07:23:54 Slot Id : <202> +07:23:54 Transaction Type : RESPONSE +07:23:54 Received From : +07:23:54 ============================================================================ +07:23:54 FNo. Len. Field Value +07:23:54 ============================================================================ +07:23:54 [ 1] [ 4] [0810] +07:23:54 [ 7] [ 10] [0320002354] +07:23:54 [ 11] [ 6] [806841] +07:23:54 [ 15] [ 4] [0320] +07:23:54 [ 37] [ 12] [57907806841] +07:23:54 [ 39] [ 2] [00] +07:23:54 [ 70] [ 3] [001] +07:23:54 ============================================================================ +07:23:54 Sending to : +07:23:54 ============================================================================ +07:23:54 + + +waiting on router queue for slot.... +07:23:55 ============================================================================ +07:23:55 Slot Id : <156> +07:23:55 Transaction Type : RESPONSE +07:23:55 Received From : +07:23:55 ============================================================================ +07:23:55 FNo. Len. Field Value +07:23:55 ============================================================================ +07:23:55 [ 1] [ 4] [0210] +07:23:55 [ 2] [ 16] [1808930600007553] +07:23:55 [ 3] [ 6] [010000] +07:23:55 [ 4] [ 12] [000030000000] +07:23:55 [ 6] [ 12] [000030000000] +07:23:55 [ 7] [ 10] [0320072344] +07:23:55 [ 11] [ 6] [669724] +07:23:55 [ 12] [ 6] [072344] +07:23:55 [ 13] [ 4] [0320] +07:23:55 [ 18] [ 4] [6011] +07:23:55 [ 19] [ 3] [418] +07:23:55 [ 22] [ 3] [021] +07:23:55 [ 32] [ 6] [621354] +07:23:55 [ 35] [ 27] [1808930600007553=1803500265] +07:23:55 [ 37] [ 12] [507904422941] +07:23:55 [ 38] [ 6] [669724] +07:23:55 [ 39] [ 2] [00] +07:23:55 [ 41] [ 8] [03004100] +07:23:55 [ 49] [ 3] [418] +07:23:55 [ 52] [ 16] [C18C7057D5C2B751] +07:23:55 [ 54] [ 20] [1001418C000075235100] +07:23:55 ============================================================================ +07:23:55 Calculate Source COMM Id = 0 +07:23:55 ============================================================================ +07:23:55 + + +waiting on router queue for slot.... +07:24:01 ============================================================================ +07:24:01 Slot Id : <187> +07:24:01 Transaction Type : REQUEST +07:24:01 Received From : +07:24:01 ============================================================================ +07:24:01 FNo. Len. Field Value +07:24:01 ============================================================================ +07:24:01 [ 1] [ 4] [0800] +07:24:01 [ 7] [ 10] [0320122310] +07:24:01 [ 11] [ 6] [155149] +07:24:01 [ 70] [ 3] [301] +07:24:01 ============================================================================ +07:24:01 + + +waiting on router queue for slot.... +07:24:01 Sending to : +07:24:01 ============================================================================ +07:24:01 ============================================================================ +07:24:01 Slot Id : <187> +07:24:01 Transaction Type : RESPONSE +07:24:01 Received From : +07:24:01 ============================================================================ +07:24:01 FNo. Len. Field Value +07:24:01 ============================================================================ +07:24:01 [ 1] [ 4] [0810] +07:24:01 [ 7] [ 10] [0320122310] +07:24:01 [ 11] [ 6] [155149] +07:24:01 [ 39] [ 2] [00] +07:24:01 [ 70] [ 3] [301] +07:24:01 ============================================================================ +07:24:01 Calculate Source COMM Id = 2 +07:24:01 ============================================================================ +07:24:01 + + +waiting on router queue for slot.... +07:24:12 ============================================================================ +07:24:12 Slot Id : <163> +07:24:12 Transaction Type : REQUEST +07:24:12 Received From : +07:24:12 ============================================================================ +07:24:12 FNo. Len. Field Value +07:24:12 ============================================================================ +07:24:12 [ 1] [ 4] [0200] +07:24:12 [ 2] [ 16] [6688990101741500] +07:24:12 [ 3] [ 6] [011000] +07:24:12 [ 4] [ 12] [000350000000] +07:24:12 [ 7] [ 10] [0320002319] +07:24:12 [ 11] [ 6] [266785] +07:24:12 [ 12] [ 6] [072319] +07:24:12 [ 13] [ 4] [0320] +07:24:12 [ 14] [ 4] [4205] +07:24:12 [ 15] [ 4] [0320] +07:24:12 [ 18] [ 4] [6011] +07:24:12 [ 19] [ 3] [418] +07:24:12 [ 22] [ 3] [021] +07:24:12 [ 25] [ 2] [01] +07:24:12 [ 28] [ 9] [D00002000] +07:24:12 [ 32] [ 6] [180893] +07:24:12 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:24:12 [ 37] [ 12] [507900266785] +07:24:12 [ 41] [ 8] [0466PSLB] +07:24:12 [ 42] [ 15] [999999 ] +07:24:12 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:24:12 [ 49] [ 3] [418] +07:24:12 [ 52] [ 16] [88530FFBFD94F1FD] +07:24:12 ============================================================================ +07:24:12 + + +waiting on router queue for slot.... +07:24:12 Sending to : +07:24:12 ============================================================================ +07:24:12 Sending to : +07:24:12 ============================================================================ +07:24:12 ============================================================================ +07:24:12 Slot Id : <163> +07:24:12 Transaction Type : REQUEST +07:24:12 Received From : +07:24:12 ============================================================================ +07:24:12 FNo. Len. Field Value +07:24:12 ============================================================================ +07:24:12 [ 1] [ 4] [0200] +07:24:12 [ 2] [ 16] [6688990101741500] +07:24:12 [ 3] [ 6] [011000] +07:24:12 [ 4] [ 12] [000350000000] +07:24:12 [ 7] [ 10] [0320002319] +07:24:12 [ 11] [ 6] [266785] +07:24:12 [ 12] [ 6] [072319] +07:24:12 [ 13] [ 4] [0320] +07:24:12 [ 14] [ 4] [4205] +07:24:12 [ 15] [ 4] [0320] +07:24:12 [ 18] [ 4] [6011] +07:24:12 [ 19] [ 3] [418] +07:24:12 [ 22] [ 3] [021] +07:24:12 [ 25] [ 2] [01] +07:24:12 [ 28] [ 9] [D00002000] +07:24:12 [ 32] [ 6] [180893] +07:24:12 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:24:12 [ 37] [ 12] [507900266785] +07:24:12 [ 41] [ 8] [0466PSLB] +07:24:12 [ 42] [ 15] [999999 ] +07:24:12 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:24:12 [ 49] [ 3] [418] +07:24:12 [ 52] [ 16] [88530FFBFD94F1FD] +07:24:12 ============================================================================ +07:24:12 + + +waiting on router queue for slot.... +07:24:12 Sending to : +07:24:12 ============================================================================ +07:24:12 ============================================================================ +07:24:12 Slot Id : <163> +07:24:12 Transaction Type : REQUEST +07:24:12 Received From : +07:24:12 ============================================================================ +07:24:12 FNo. Len. Field Value +07:24:12 ============================================================================ +07:24:12 [ 1] [ 4] [0200] +07:24:12 [ 2] [ 16] [6688990101741500] +07:24:12 [ 3] [ 6] [011000] +07:24:12 [ 4] [ 12] [000350000000] +07:24:12 [ 7] [ 10] [0320002319] +07:24:12 [ 11] [ 6] [266785] +07:24:12 [ 12] [ 6] [072319] +07:24:12 [ 13] [ 4] [0320] +07:24:12 [ 14] [ 4] [4205] +07:24:12 [ 15] [ 4] [0320] +07:24:12 [ 18] [ 4] [6011] +07:24:12 [ 19] [ 3] [418] +07:24:12 [ 22] [ 3] [021] +07:24:12 [ 25] [ 2] [01] +07:24:12 [ 28] [ 9] [D00002000] +07:24:12 [ 32] [ 6] [180893] +07:24:12 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:24:12 [ 37] [ 12] [507900266785] +07:24:12 [ 41] [ 8] [0466PSLB] +07:24:12 [ 42] [ 15] [999999 ] +07:24:12 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:24:12 [ 49] [ 3] [418] +07:24:12 [ 52] [ 16] [E82A7C1E92F6CD78] +07:24:12 ============================================================================ +07:24:12 + + +waiting on router queue for slot.... +07:24:12 Sending to : <0> +07:24:12 ============================================================================ +07:24:12 ============================================================================ +07:24:12 Slot Id : <163> +07:24:12 Transaction Type : RESPONSE +07:24:12 Received From : +07:24:12 ============================================================================ +07:24:12 FNo. Len. Field Value +07:24:12 ============================================================================ +07:24:12 [ 1] [ 4] [0210] +07:24:12 [ 2] [ 16] [6688990101741500] +07:24:12 [ 3] [ 6] [011000] +07:24:12 [ 4] [ 12] [000350000000] +07:24:12 [ 7] [ 10] [0320002319] +07:24:12 [ 11] [ 6] [266785] +07:24:12 [ 12] [ 6] [072319] +07:24:12 [ 13] [ 4] [0320] +07:24:12 [ 15] [ 4] [0320] +07:24:12 [ 18] [ 4] [6011] +07:24:12 [ 19] [ 3] [418] +07:24:12 [ 22] [ 3] [021] +07:24:12 [ 32] [ 6] [180893] +07:24:12 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:24:12 [ 37] [ 12] [507900266785] +07:24:12 [ 39] [ 2] [61] +07:24:12 [ 41] [ 8] [0466PSLB] +07:24:12 [ 49] [ 3] [418] +07:24:12 ============================================================================ +07:24:12 Sending to : +07:24:12 ============================================================================ +07:24:12 + + +waiting on router queue for slot.... +07:24:13 ============================================================================ +07:24:13 Slot Id : <160> +07:24:13 Transaction Type : REQUEST +07:24:13 Received From : +07:24:13 ============================================================================ +07:24:13 FNo. Len. Field Value +07:24:13 ============================================================================ +07:24:13 [ 1] [ 4] [0800] +07:24:13 [ 7] [ 10] [0320143602] +07:24:13 [ 11] [ 6] [073602] +07:24:13 [ 37] [ 12] [57907073602] +07:24:13 [ 70] [ 3] [301] +07:24:13 ============================================================================ +07:24:13 + + +waiting on router queue for slot.... +07:24:13 Sending to : +07:24:13 ============================================================================ +07:24:13 ============================================================================ +07:24:13 Slot Id : <160> +07:24:13 Transaction Type : RESPONSE +07:24:13 Received From : +07:24:13 ============================================================================ +07:24:13 FNo. Len. Field Value +07:24:13 ============================================================================ +07:24:13 [ 1] [ 4] [0810] +07:24:13 [ 7] [ 10] [0320143602] +07:24:13 [ 11] [ 6] [073602] +07:24:13 [ 37] [ 12] [579070736020] +07:24:13 [ 39] [ 2] [00] +07:24:13 [ 70] [ 3] [810] +07:24:13 ============================================================================ +07:24:13 Calculate Source COMM Id = 6 +07:24:13 ============================================================================ +07:24:13 + + +waiting on router queue for slot.... +07:24:13 ============================================================================ +07:24:13 Slot Id : <203> +07:24:13 Transaction Type : REQUEST +07:24:13 Received From : +07:24:13 ============================================================================ +07:24:13 FNo. Len. Field Value +07:24:13 ============================================================================ +07:24:13 [ 1] [ 4] [0800] +07:24:13 [ 7] [ 10] [0320122321] +07:24:13 [ 11] [ 6] [155150] +07:24:13 [ 70] [ 3] [301] +07:24:13 ============================================================================ +07:24:13 + + +waiting on router queue for slot.... +07:24:13 Sending to : +07:24:13 ============================================================================ +07:24:13 ============================================================================ +07:24:13 Slot Id : <203> +07:24:13 Transaction Type : RESPONSE +07:24:13 Received From : +07:24:13 ============================================================================ +07:24:13 FNo. Len. Field Value +07:24:13 ============================================================================ +07:24:13 [ 1] [ 4] [0810] +07:24:13 [ 7] [ 10] [0320122321] +07:24:13 [ 11] [ 6] [155150] +07:24:13 [ 39] [ 2] [00] +07:24:13 [ 70] [ 3] [301] +07:24:13 ============================================================================ +07:24:13 Calculate Source COMM Id = 2 +07:24:13 ============================================================================ +07:24:13 + + +waiting on router queue for slot.... +07:24:13 ============================================================================ +07:24:13 Slot Id : <163> +07:24:13 Transaction Type : RESPONSE +07:24:13 Received From : +07:24:13 ============================================================================ +07:24:13 FNo. Len. Field Value +07:24:13 ============================================================================ +07:24:13 [ 1] [ 4] [0210] +07:24:13 [ 2] [ 16] [6688990101741500] +07:24:13 [ 3] [ 6] [011000] +07:24:13 [ 4] [ 12] [000350000000] +07:24:13 [ 7] [ 10] [0320002319] +07:24:13 [ 11] [ 6] [266785] +07:24:13 [ 12] [ 6] [072319] +07:24:13 [ 13] [ 4] [0320] +07:24:13 [ 15] [ 4] [0320] +07:24:13 [ 18] [ 4] [6011] +07:24:13 [ 19] [ 3] [418] +07:24:13 [ 22] [ 3] [021] +07:24:13 [ 32] [ 6] [180893] +07:24:13 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:24:13 [ 37] [ 12] [507900266785] +07:24:13 [ 39] [ 2] [61] +07:24:13 [ 41] [ 8] [0466PSLB] +07:24:13 [ 49] [ 3] [418] +07:24:13 ============================================================================ +07:24:13 Calculate Source COMM Id = 2 +07:24:13 ============================================================================ +07:24:13 + + +waiting on router queue for slot.... +07:24:24 ============================================================================ +07:24:24 Slot Id : <179> +07:24:24 Transaction Type : REQUEST +07:24:24 Received From : +07:24:24 ============================================================================ +07:24:24 FNo. Len. Field Value +07:24:24 ============================================================================ +07:24:24 [ 1] [ 4] [0800] +07:24:24 [ 7] [ 10] [0320122332] +07:24:24 [ 11] [ 6] [155151] +07:24:24 [ 70] [ 3] [301] +07:24:24 ============================================================================ +07:24:24 + + +waiting on router queue for slot.... +07:24:24 Sending to : +07:24:24 ============================================================================ +07:24:24 ============================================================================ +07:24:24 Slot Id : <179> +07:24:24 Transaction Type : RESPONSE +07:24:24 Received From : +07:24:24 ============================================================================ +07:24:24 FNo. Len. Field Value +07:24:24 ============================================================================ +07:24:24 [ 1] [ 4] [0810] +07:24:24 [ 7] [ 10] [0320122332] +07:24:24 [ 11] [ 6] [155151] +07:24:24 [ 39] [ 2] [00] +07:24:24 [ 70] [ 3] [301] +07:24:24 ============================================================================ +07:24:24 Calculate Source COMM Id = 2 +07:24:24 ============================================================================ +07:24:24 + + +waiting on router queue for slot.... +07:24:39 ============================================================================ +07:24:39 Slot Id : <192> +07:24:39 Transaction Type : REQUEST +07:24:39 Received From : +07:24:39 ============================================================================ +07:24:39 FNo. Len. Field Value +07:24:39 ============================================================================ +07:24:39 [ 1] [ 4] [0800] +07:24:39 [ 7] [ 10] [0320122347] +07:24:39 [ 11] [ 6] [155152] +07:24:39 [ 70] [ 3] [301] +07:24:39 ============================================================================ +07:24:39 + + +waiting on router queue for slot.... +07:24:39 Sending to : +07:24:39 ============================================================================ +07:24:39 ============================================================================ +07:24:39 Slot Id : <192> +07:24:39 Transaction Type : RESPONSE +07:24:39 Received From : +07:24:39 ============================================================================ +07:24:39 FNo. Len. Field Value +07:24:39 ============================================================================ +07:24:39 [ 1] [ 4] [0810] +07:24:39 [ 7] [ 10] [0320122347] +07:24:39 [ 11] [ 6] [155152] +07:24:39 [ 39] [ 2] [00] +07:24:39 [ 70] [ 3] [301] +07:24:39 ============================================================================ +07:24:39 Calculate Source COMM Id = 2 +07:24:39 ============================================================================ +07:24:39 + + +waiting on router queue for slot.... +07:24:50 ============================================================================ +07:24:50 Slot Id : <144> +07:24:50 Transaction Type : REQUEST +07:24:50 Received From : +07:24:50 ============================================================================ +07:24:50 FNo. Len. Field Value +07:24:50 ============================================================================ +07:24:50 [ 1] [ 4] [0800] +07:24:50 [ 7] [ 10] [0320122358] +07:24:50 [ 11] [ 6] [155153] +07:24:50 [ 70] [ 3] [301] +07:24:50 ============================================================================ +07:24:50 + + +waiting on router queue for slot.... +07:24:50 Sending to : +07:24:50 ============================================================================ +07:24:50 ============================================================================ +07:24:50 Slot Id : <144> +07:24:50 Transaction Type : RESPONSE +07:24:50 Received From : +07:24:50 ============================================================================ +07:24:50 FNo. Len. Field Value +07:24:50 ============================================================================ +07:24:50 [ 1] [ 4] [0810] +07:24:50 [ 7] [ 10] [0320122358] +07:24:50 [ 11] [ 6] [155153] +07:24:50 [ 39] [ 2] [00] +07:24:50 [ 70] [ 3] [301] +07:24:50 ============================================================================ +07:24:50 Calculate Source COMM Id = 2 +07:24:50 ============================================================================ +07:24:50 + + +waiting on router queue for slot.... +07:24:55 ============================================================================ +07:24:55 Slot Id : <204> +07:24:55 Transaction Type : REQUEST +07:24:55 Received From : +07:24:55 ============================================================================ +07:24:55 FNo. Len. Field Value +07:24:55 ============================================================================ +07:24:55 [ 1] [ 4] [0800] +07:24:55 [ 7] [ 10] [0320003242] +07:24:55 [ 11] [ 6] [091564] +07:24:55 [ 37] [ 12] [57907091564] +07:24:55 [ 70] [ 3] [301] +07:24:55 ============================================================================ +07:24:55 + + +waiting on router queue for slot.... +07:24:55 Sending to : +07:24:55 ============================================================================ +07:24:55 ============================================================================ +07:24:55 Slot Id : <204> +07:24:55 Transaction Type : RESPONSE +07:24:55 Received From : +07:24:55 ============================================================================ +07:24:55 FNo. Len. Field Value +07:24:55 ============================================================================ +07:24:55 [ 1] [ 4] [0810] +07:24:55 [ 7] [ 10] [0320003242] +07:24:55 [ 11] [ 6] [091564] +07:24:55 [ 37] [ 12] [579070915640] +07:24:55 [ 39] [ 2] [00] +07:24:55 [ 70] [ 3] [810] +07:24:55 ============================================================================ +07:24:55 Calculate Source COMM Id = 1 +07:24:55 ============================================================================ +07:24:55 + + +waiting on router queue for slot.... +07:24:56 ============================================================================ +07:24:56 Slot Id : <135> +07:24:56 Transaction Type : REQUEST +07:24:56 Received From : +07:24:56 ============================================================================ +07:24:56 FNo. Len. Field Value +07:24:56 ============================================================================ +07:24:56 [ 1] [ 4] [0800] +07:24:56 [ 2] [ 5] [02531] +07:24:56 [ 3] [ 6] [579078] +07:24:56 [ 7] [ 10] [0320002456] +07:24:56 [ 11] [ 6] [806842] +07:24:56 [ 15] [ 10] [0320002456] +07:24:56 [ 37] [ 11] [57907806842] +07:24:56 [ 70] [ 3] [001] +07:24:56 ============================================================================ +07:24:56 + + +waiting on router queue for slot.... +07:24:56 ============================================================================ +07:24:56 Slot Id : <135> +07:24:56 Transaction Type : RESPONSE +07:24:56 Received From : +07:24:56 ============================================================================ +07:24:56 FNo. Len. Field Value +07:24:56 ============================================================================ +07:24:56 [ 1] [ 4] [0810] +07:24:56 [ 7] [ 10] [0320002456] +07:24:56 [ 11] [ 6] [806842] +07:24:56 [ 15] [ 4] [0320] +07:24:56 [ 37] [ 12] [57907806842] +07:24:56 [ 39] [ 2] [00] +07:24:56 [ 70] [ 3] [001] +07:24:56 ============================================================================ +07:24:56 Sending to : +07:24:56 ============================================================================ +07:24:56 + + +waiting on router queue for slot.... +07:25:00 ============================================================================ +07:25:00 Slot Id : <152> +07:25:00 Transaction Type : REQUEST +07:25:00 Received From : +07:25:00 ============================================================================ +07:25:00 FNo. Len. Field Value +07:25:00 ============================================================================ +07:25:00 [ 1] [ 4] [0800] +07:25:00 [ 7] [ 10] [0320122408] +07:25:00 [ 11] [ 6] [155154] +07:25:00 [ 70] [ 3] [301] +07:25:00 ============================================================================ +07:25:00 + + +waiting on router queue for slot.... +07:25:00 Sending to : +07:25:00 ============================================================================ +07:25:00 ============================================================================ +07:25:00 Slot Id : <152> +07:25:00 Transaction Type : RESPONSE +07:25:00 Received From : +07:25:00 ============================================================================ +07:25:00 FNo. Len. Field Value +07:25:00 ============================================================================ +07:25:00 [ 1] [ 4] [0810] +07:25:00 [ 7] [ 10] [0320122408] +07:25:00 [ 11] [ 6] [155154] +07:25:00 [ 39] [ 2] [00] +07:25:00 [ 70] [ 3] [301] +07:25:00 ============================================================================ +07:25:00 Calculate Source COMM Id = 2 +07:25:00 ============================================================================ +07:25:00 + + +waiting on router queue for slot.... +07:25:01 ============================================================================ +07:25:01 Slot Id : <196> +07:25:01 Transaction Type : REQUEST +07:25:01 Received From : +07:25:01 ============================================================================ +07:25:01 FNo. Len. Field Value +07:25:01 ============================================================================ +07:25:01 [ 1] [ 4] [0200] +07:25:01 [ 2] [ 16] [6688990103635908] +07:25:01 [ 3] [ 6] [013000] +07:25:01 [ 4] [ 12] [000100000000] +07:25:01 [ 7] [ 10] [0320072457] +07:25:01 [ 11] [ 6] [669908] +07:25:01 [ 12] [ 6] [072457] +07:25:01 [ 13] [ 4] [0320] +07:25:01 [ 15] [ 4] [0320] +07:25:01 [ 18] [ 4] [6011] +07:25:01 [ 22] [ 3] [900] +07:25:01 [ 25] [ 2] [02] +07:25:01 [ 28] [ 9] [D00002000] +07:25:01 [ 32] [ 6] [621354] +07:25:01 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:25:01 [ 37] [ 12] [507903499437] +07:25:01 [ 41] [ 8] [06002200] +07:25:01 [ 42] [ 15] [NATIVE ] +07:25:01 [ 43] [ 40] [Beng Market Beng LAO] +07:25:01 [ 49] [ 3] [418] +07:25:01 [ 52] [ 16] [609F3A3095489120] +07:25:01 ============================================================================ +07:25:01 + + +waiting on router queue for slot.... +07:25:01 Sending to : +07:25:01 ============================================================================ +07:25:01 Sending to : +07:25:01 ============================================================================ +07:25:01 ============================================================================ +07:25:01 Slot Id : <196> +07:25:01 Transaction Type : REQUEST +07:25:01 Received From : +07:25:01 ============================================================================ +07:25:01 FNo. Len. Field Value +07:25:01 ============================================================================ +07:25:01 [ 1] [ 4] [0200] +07:25:01 [ 2] [ 16] [6688990103635908] +07:25:01 [ 3] [ 6] [013000] +07:25:01 [ 4] [ 12] [000100000000] +07:25:01 [ 7] [ 10] [0320072457] +07:25:01 [ 11] [ 6] [669908] +07:25:01 [ 12] [ 6] [072457] +07:25:01 [ 13] [ 4] [0320] +07:25:01 [ 15] [ 4] [0320] +07:25:01 [ 18] [ 4] [6011] +07:25:01 [ 22] [ 3] [900] +07:25:01 [ 25] [ 2] [02] +07:25:01 [ 28] [ 9] [D00002000] +07:25:01 [ 32] [ 6] [621354] +07:25:01 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:25:01 [ 37] [ 12] [507903499437] +07:25:01 [ 41] [ 8] [06002200] +07:25:01 [ 42] [ 15] [NATIVE ] +07:25:01 [ 43] [ 40] [Beng Market Beng LAO] +07:25:01 [ 49] [ 3] [418] +07:25:01 [ 52] [ 16] [609F3A3095489120] +07:25:01 ============================================================================ +07:25:01 + + +waiting on router queue for slot.... +07:25:01 Sending to : +07:25:01 ============================================================================ +07:25:01 ============================================================================ +07:25:01 Slot Id : <196> +07:25:01 Transaction Type : REQUEST +07:25:01 Received From : +07:25:01 ============================================================================ +07:25:01 FNo. Len. Field Value +07:25:01 ============================================================================ +07:25:01 [ 1] [ 4] [0200] +07:25:01 [ 2] [ 16] [6688990103635908] +07:25:01 [ 3] [ 6] [013000] +07:25:01 [ 4] [ 12] [000100000000] +07:25:01 [ 7] [ 10] [0320072457] +07:25:01 [ 11] [ 6] [669908] +07:25:01 [ 12] [ 6] [072457] +07:25:01 [ 13] [ 4] [0320] +07:25:01 [ 15] [ 4] [0320] +07:25:01 [ 18] [ 4] [6011] +07:25:01 [ 22] [ 3] [900] +07:25:01 [ 25] [ 2] [02] +07:25:01 [ 28] [ 9] [D00002000] +07:25:01 [ 32] [ 6] [621354] +07:25:01 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:25:01 [ 37] [ 12] [507903499437] +07:25:01 [ 41] [ 8] [06002200] +07:25:01 [ 42] [ 15] [NATIVE ] +07:25:01 [ 43] [ 40] [Beng Market Beng LAO] +07:25:01 [ 49] [ 3] [418] +07:25:01 [ 52] [ 16] [16C30DE06CDF1FC4] +07:25:01 ============================================================================ +07:25:01 + + +waiting on router queue for slot.... +07:25:01 Sending to : <4> +07:25:01 ============================================================================ +07:25:02 ============================================================================ +07:25:02 Slot Id : <196> +07:25:02 Transaction Type : RESPONSE +07:25:02 Received From : +07:25:02 ============================================================================ +07:25:02 FNo. Len. Field Value +07:25:02 ============================================================================ +07:25:02 [ 1] [ 4] [0210] +07:25:02 [ 2] [ 16] [6688990103635908] +07:25:02 [ 3] [ 6] [013000] +07:25:02 [ 4] [ 12] [000100000000] +07:25:02 [ 11] [ 6] [669908] +07:25:02 [ 12] [ 6] [072457] +07:25:02 [ 15] [ 4] [0320] +07:25:02 [ 18] [ 4] [6011] +07:25:02 [ 32] [ 6] [621354] +07:25:02 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:25:02 [ 37] [ 12] [507903499437] +07:25:02 [ 38] [ 6] [979431] +07:25:02 [ 39] [ 2] [00] +07:25:02 [ 41] [ 8] [06002200] +07:25:02 [ 49] [ 3] [418] +07:25:02 [ 54] [ 20] [3002418C000199415685] +07:25:02 ============================================================================ +07:25:02 Sending to : +07:25:02 ============================================================================ +07:25:02 + + +waiting on router queue for slot.... +07:25:04 ============================================================================ +07:25:04 Slot Id : <196> +07:25:04 Transaction Type : RESPONSE +07:25:04 Received From : +07:25:04 ============================================================================ +07:25:04 FNo. Len. Field Value +07:25:04 ============================================================================ +07:25:04 [ 1] [ 4] [0210] +07:25:04 [ 2] [ 16] [6688990103635908] +07:25:04 [ 3] [ 6] [013000] +07:25:04 [ 4] [ 12] [000100000000] +07:25:04 [ 11] [ 6] [669908] +07:25:04 [ 12] [ 6] [072457] +07:25:04 [ 15] [ 4] [0320] +07:25:04 [ 18] [ 4] [6011] +07:25:04 [ 32] [ 6] [621354] +07:25:04 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:25:04 [ 37] [ 12] [507903499437] +07:25:04 [ 38] [ 6] [979431] +07:25:04 [ 39] [ 2] [00] +07:25:04 [ 41] [ 8] [06002200] +07:25:04 [ 49] [ 3] [418] +07:25:04 [ 54] [ 20] [3002418C000199415685] +07:25:04 ============================================================================ +07:25:04 Calculate Source COMM Id = 0 +07:25:04 ============================================================================ +07:25:04 + + +waiting on router queue for slot.... +07:25:11 ============================================================================ +07:25:11 Slot Id : <191> +07:25:11 Transaction Type : REQUEST +07:25:11 Received From : +07:25:11 ============================================================================ +07:25:11 FNo. Len. Field Value +07:25:11 ============================================================================ +07:25:11 [ 1] [ 4] [0800] +07:25:11 [ 7] [ 10] [0320122419] +07:25:11 [ 11] [ 6] [155155] +07:25:11 [ 70] [ 3] [301] +07:25:11 ============================================================================ +07:25:11 + + +waiting on router queue for slot.... +07:25:11 Sending to : +07:25:11 ============================================================================ +07:25:11 ============================================================================ +07:25:11 Slot Id : <191> +07:25:11 Transaction Type : RESPONSE +07:25:11 Received From : +07:25:11 ============================================================================ +07:25:11 FNo. Len. Field Value +07:25:11 ============================================================================ +07:25:11 [ 1] [ 4] [0810] +07:25:11 [ 7] [ 10] [0320122419] +07:25:11 [ 11] [ 6] [155155] +07:25:11 [ 39] [ 2] [00] +07:25:11 [ 70] [ 3] [301] +07:25:11 ============================================================================ +07:25:11 Calculate Source COMM Id = 2 +07:25:11 ============================================================================ +07:25:11 + + +waiting on router queue for slot.... +07:25:18 ============================================================================ +07:25:18 Slot Id : <155> +07:25:18 Transaction Type : REQUEST +07:25:18 Received From : +07:25:18 ============================================================================ +07:25:18 FNo. Len. Field Value +07:25:18 ============================================================================ +07:25:18 [ 1] [ 4] [0800] +07:25:18 [ 7] [ 10] [0320143707] +07:25:18 [ 11] [ 6] [073707] +07:25:18 [ 37] [ 12] [57907073707] +07:25:18 [ 70] [ 3] [301] +07:25:18 ============================================================================ +07:25:18 + + +waiting on router queue for slot.... +07:25:18 Sending to : +07:25:18 ============================================================================ +07:25:18 ============================================================================ +07:25:18 Slot Id : <155> +07:25:18 Transaction Type : RESPONSE +07:25:18 Received From : +07:25:18 ============================================================================ +07:25:18 FNo. Len. Field Value +07:25:18 ============================================================================ +07:25:18 [ 1] [ 4] [0810] +07:25:18 [ 7] [ 10] [0320143707] +07:25:18 [ 11] [ 6] [073707] +07:25:18 [ 37] [ 12] [579070737070] +07:25:18 [ 39] [ 2] [00] +07:25:18 [ 70] [ 3] [810] +07:25:18 ============================================================================ +07:25:18 Calculate Source COMM Id = 6 +07:25:18 ============================================================================ +07:25:18 + + +waiting on router queue for slot.... +07:25:24 ============================================================================ +07:25:24 Slot Id : <190> +07:25:24 Transaction Type : REQUEST +07:25:24 Received From : +07:25:24 ============================================================================ +07:25:24 FNo. Len. Field Value +07:25:24 ============================================================================ +07:25:24 [ 1] [ 4] [0200] +07:25:24 [ 2] [ 16] [6688990101741500] +07:25:24 [ 3] [ 6] [010000] +07:25:24 [ 4] [ 12] [000200000000] +07:25:24 [ 7] [ 10] [0320002432] +07:25:24 [ 11] [ 6] [266790] +07:25:24 [ 12] [ 6] [072432] +07:25:24 [ 13] [ 4] [0320] +07:25:24 [ 14] [ 4] [4205] +07:25:24 [ 15] [ 4] [0320] +07:25:24 [ 18] [ 4] [6011] +07:25:24 [ 19] [ 3] [418] +07:25:24 [ 22] [ 3] [021] +07:25:24 [ 25] [ 2] [01] +07:25:24 [ 28] [ 9] [D00002000] +07:25:24 [ 32] [ 6] [180893] +07:25:24 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:25:24 [ 37] [ 12] [507900266790] +07:25:24 [ 41] [ 8] [0466PSLB] +07:25:24 [ 42] [ 15] [999999 ] +07:25:24 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:25:24 [ 49] [ 3] [418] +07:25:24 [ 52] [ 16] [88530FFBFD94F1FD] +07:25:24 ============================================================================ +07:25:24 + + +waiting on router queue for slot.... +07:25:24 Sending to : +07:25:24 ============================================================================ +07:25:24 Sending to : +07:25:24 ============================================================================ +07:25:25 ============================================================================ +07:25:25 Slot Id : <190> +07:25:25 Transaction Type : REQUEST +07:25:25 Received From : +07:25:25 ============================================================================ +07:25:25 FNo. Len. Field Value +07:25:25 ============================================================================ +07:25:25 [ 1] [ 4] [0200] +07:25:25 [ 2] [ 16] [6688990101741500] +07:25:25 [ 3] [ 6] [010000] +07:25:25 [ 4] [ 12] [000200000000] +07:25:25 [ 7] [ 10] [0320002432] +07:25:25 [ 11] [ 6] [266790] +07:25:25 [ 12] [ 6] [072432] +07:25:25 [ 13] [ 4] [0320] +07:25:25 [ 14] [ 4] [4205] +07:25:25 [ 15] [ 4] [0320] +07:25:25 [ 18] [ 4] [6011] +07:25:25 [ 19] [ 3] [418] +07:25:25 [ 22] [ 3] [021] +07:25:25 [ 25] [ 2] [01] +07:25:25 [ 28] [ 9] [D00002000] +07:25:25 [ 32] [ 6] [180893] +07:25:25 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:25:25 [ 37] [ 12] [507900266790] +07:25:25 [ 41] [ 8] [0466PSLB] +07:25:25 [ 42] [ 15] [999999 ] +07:25:25 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:25:25 [ 49] [ 3] [418] +07:25:25 [ 52] [ 16] [88530FFBFD94F1FD] +07:25:25 ============================================================================ +07:25:25 + + +waiting on router queue for slot.... +07:25:25 Sending to : +07:25:25 ============================================================================ +07:25:25 ============================================================================ +07:25:25 Slot Id : <190> +07:25:25 Transaction Type : REQUEST +07:25:25 Received From : +07:25:25 ============================================================================ +07:25:25 FNo. Len. Field Value +07:25:25 ============================================================================ +07:25:25 [ 1] [ 4] [0200] +07:25:25 [ 2] [ 16] [6688990101741500] +07:25:25 [ 3] [ 6] [010000] +07:25:25 [ 4] [ 12] [000200000000] +07:25:25 [ 7] [ 10] [0320002432] +07:25:25 [ 11] [ 6] [266790] +07:25:25 [ 12] [ 6] [072432] +07:25:25 [ 13] [ 4] [0320] +07:25:25 [ 14] [ 4] [4205] +07:25:25 [ 15] [ 4] [0320] +07:25:25 [ 18] [ 4] [6011] +07:25:25 [ 19] [ 3] [418] +07:25:25 [ 22] [ 3] [021] +07:25:25 [ 25] [ 2] [01] +07:25:25 [ 28] [ 9] [D00002000] +07:25:25 [ 32] [ 6] [180893] +07:25:25 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:25:25 [ 37] [ 12] [507900266790] +07:25:25 [ 41] [ 8] [0466PSLB] +07:25:25 [ 42] [ 15] [999999 ] +07:25:25 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:25:25 [ 49] [ 3] [418] +07:25:25 [ 52] [ 16] [E82A7C1E92F6CD78] +07:25:25 ============================================================================ +07:25:25 + + +waiting on router queue for slot.... +07:25:25 Sending to : <0> +07:25:25 ============================================================================ +07:25:25 ============================================================================ +07:25:25 Slot Id : <190> +07:25:25 Transaction Type : RESPONSE +07:25:25 Received From : +07:25:25 ============================================================================ +07:25:25 FNo. Len. Field Value +07:25:25 ============================================================================ +07:25:25 [ 1] [ 4] [0210] +07:25:25 [ 2] [ 16] [6688990101741500] +07:25:25 [ 3] [ 6] [010000] +07:25:25 [ 4] [ 12] [000200000000] +07:25:25 [ 7] [ 10] [0320002432] +07:25:25 [ 11] [ 6] [266790] +07:25:25 [ 12] [ 6] [072432] +07:25:25 [ 13] [ 4] [0320] +07:25:25 [ 15] [ 4] [0320] +07:25:25 [ 18] [ 4] [6011] +07:25:25 [ 19] [ 3] [418] +07:25:25 [ 22] [ 3] [021] +07:25:25 [ 32] [ 6] [180893] +07:25:25 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:25:25 [ 37] [ 12] [507900266790] +07:25:25 [ 39] [ 2] [61] +07:25:25 [ 41] [ 8] [0466PSLB] +07:25:25 [ 49] [ 3] [418] +07:25:25 ============================================================================ +07:25:25 Sending to : +07:25:25 ============================================================================ +07:25:25 + + +waiting on router queue for slot.... +07:25:26 ============================================================================ +07:25:26 Slot Id : <190> +07:25:26 Transaction Type : RESPONSE +07:25:26 Received From : +07:25:26 ============================================================================ +07:25:26 FNo. Len. Field Value +07:25:26 ============================================================================ +07:25:26 [ 1] [ 4] [0210] +07:25:26 [ 2] [ 16] [6688990101741500] +07:25:26 [ 3] [ 6] [010000] +07:25:26 [ 4] [ 12] [000200000000] +07:25:26 [ 7] [ 10] [0320002432] +07:25:26 [ 11] [ 6] [266790] +07:25:26 [ 12] [ 6] [072432] +07:25:26 [ 13] [ 4] [0320] +07:25:26 [ 15] [ 4] [0320] +07:25:26 [ 18] [ 4] [6011] +07:25:26 [ 19] [ 3] [418] +07:25:26 [ 22] [ 3] [021] +07:25:26 [ 32] [ 6] [180893] +07:25:26 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:25:26 [ 37] [ 12] [507900266790] +07:25:26 [ 39] [ 2] [61] +07:25:26 [ 41] [ 8] [0466PSLB] +07:25:26 [ 49] [ 3] [418] +07:25:26 ============================================================================ +07:25:26 Calculate Source COMM Id = 2 +07:25:26 ============================================================================ +07:25:26 + + +waiting on router queue for slot.... +07:25:27 ============================================================================ +07:25:27 Slot Id : <181> +07:25:27 Transaction Type : REQUEST +07:25:27 Received From : +07:25:27 ============================================================================ +07:25:27 FNo. Len. Field Value +07:25:27 ============================================================================ +07:25:27 [ 1] [ 4] [0800] +07:25:27 [ 7] [ 10] [0320122435] +07:25:27 [ 11] [ 6] [155156] +07:25:27 [ 70] [ 3] [301] +07:25:27 ============================================================================ +07:25:27 + + +waiting on router queue for slot.... +07:25:27 Sending to : +07:25:27 ============================================================================ +07:25:27 ============================================================================ +07:25:27 Slot Id : <181> +07:25:27 Transaction Type : RESPONSE +07:25:27 Received From : +07:25:27 ============================================================================ +07:25:27 FNo. Len. Field Value +07:25:27 ============================================================================ +07:25:27 [ 1] [ 4] [0810] +07:25:27 [ 7] [ 10] [0320122435] +07:25:27 [ 11] [ 6] [155156] +07:25:27 [ 39] [ 2] [00] +07:25:27 [ 70] [ 3] [301] +07:25:27 ============================================================================ +07:25:27 Calculate Source COMM Id = 2 +07:25:27 ============================================================================ +07:25:27 + + +waiting on router queue for slot.... +07:25:36 ============================================================================ +07:25:36 Slot Id : <201> +07:25:36 Transaction Type : REQUEST +07:25:36 Received From : +07:25:36 ============================================================================ +07:25:36 FNo. Len. Field Value +07:25:36 ============================================================================ +07:25:36 [ 1] [ 4] [0200] +07:25:36 [ 2] [ 16] [6688990040098608] +07:25:36 [ 3] [ 6] [011000] +07:25:36 [ 4] [ 12] [000100000000] +07:25:36 [ 7] [ 10] [0320072533] +07:25:36 [ 11] [ 6] [669993] +07:25:36 [ 12] [ 6] [072533] +07:25:36 [ 13] [ 4] [0320] +07:25:36 [ 15] [ 4] [0320] +07:25:36 [ 18] [ 4] [6011] +07:25:36 [ 22] [ 3] [900] +07:25:36 [ 25] [ 2] [02] +07:25:36 [ 28] [ 9] [D00002000] +07:25:36 [ 32] [ 6] [621354] +07:25:36 [ 35] [ 37] [6688990040098608=98021261769677300000] +07:25:36 [ 37] [ 12] [507903443021] +07:25:36 [ 41] [ 8] [06001700] +07:25:36 [ 42] [ 15] [NATIVE ] +07:25:36 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +07:25:36 [ 49] [ 3] [418] +07:25:36 [ 52] [ 16] [29FE5AC17D81A26F] +07:25:36 ============================================================================ +07:25:36 + + +waiting on router queue for slot.... +07:25:36 Sending to : +07:25:36 ============================================================================ +07:25:36 Sending to : +07:25:36 ============================================================================ +07:25:37 ============================================================================ +07:25:37 Slot Id : <201> +07:25:37 Transaction Type : REQUEST +07:25:37 Received From : +07:25:37 ============================================================================ +07:25:37 FNo. Len. Field Value +07:25:37 ============================================================================ +07:25:37 [ 1] [ 4] [0200] +07:25:37 [ 2] [ 16] [6688990040098608] +07:25:37 [ 3] [ 6] [011000] +07:25:37 [ 4] [ 12] [000100000000] +07:25:37 [ 7] [ 10] [0320072533] +07:25:37 [ 11] [ 6] [669993] +07:25:37 [ 12] [ 6] [072533] +07:25:37 [ 13] [ 4] [0320] +07:25:37 [ 15] [ 4] [0320] +07:25:37 [ 18] [ 4] [6011] +07:25:37 [ 22] [ 3] [900] +07:25:37 [ 25] [ 2] [02] +07:25:37 [ 28] [ 9] [D00002000] +07:25:37 [ 32] [ 6] [621354] +07:25:37 [ 35] [ 37] [6688990040098608=98021261769677300000] +07:25:37 [ 37] [ 12] [507903443021] +07:25:37 [ 41] [ 8] [06001700] +07:25:37 [ 42] [ 15] [NATIVE ] +07:25:37 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +07:25:37 [ 49] [ 3] [418] +07:25:37 [ 52] [ 16] [29FE5AC17D81A26F] +07:25:37 ============================================================================ +07:25:37 + + +waiting on router queue for slot.... +07:25:37 Sending to : +07:25:37 ============================================================================ +07:25:37 ============================================================================ +07:25:37 Slot Id : <201> +07:25:37 Transaction Type : REQUEST +07:25:37 Received From : +07:25:37 ============================================================================ +07:25:37 FNo. Len. Field Value +07:25:37 ============================================================================ +07:25:37 [ 1] [ 4] [0200] +07:25:37 [ 2] [ 16] [6688990040098608] +07:25:37 [ 3] [ 6] [011000] +07:25:37 [ 4] [ 12] [000100000000] +07:25:37 [ 7] [ 10] [0320072533] +07:25:37 [ 11] [ 6] [669993] +07:25:37 [ 12] [ 6] [072533] +07:25:37 [ 13] [ 4] [0320] +07:25:37 [ 15] [ 4] [0320] +07:25:37 [ 18] [ 4] [6011] +07:25:37 [ 22] [ 3] [900] +07:25:37 [ 25] [ 2] [02] +07:25:37 [ 28] [ 9] [D00002000] +07:25:37 [ 32] [ 6] [621354] +07:25:37 [ 35] [ 37] [6688990040098608=98021261769677300000] +07:25:37 [ 37] [ 12] [507903443021] +07:25:37 [ 41] [ 8] [06001700] +07:25:37 [ 42] [ 15] [NATIVE ] +07:25:37 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +07:25:37 [ 49] [ 3] [418] +07:25:37 [ 52] [ 16] [E7EF9432C1396A5E] +07:25:37 ============================================================================ +07:25:37 + + +waiting on router queue for slot.... +07:25:37 Sending to : <4> +07:25:37 ============================================================================ +07:25:37 ============================================================================ +07:25:37 Slot Id : <198> +07:25:37 Transaction Type : REQUEST +07:25:37 Received From : +07:25:37 ============================================================================ +07:25:37 FNo. Len. Field Value +07:25:37 ============================================================================ +07:25:37 [ 1] [ 4] [0800] +07:25:37 [ 7] [ 10] [0320122446] +07:25:37 [ 11] [ 6] [155157] +07:25:37 [ 70] [ 3] [301] +07:25:37 ============================================================================ +07:25:37 + + +waiting on router queue for slot.... +07:25:37 Sending to : +07:25:37 ============================================================================ +07:25:37 ============================================================================ +07:25:37 Slot Id : <198> +07:25:37 Transaction Type : RESPONSE +07:25:37 Received From : +07:25:37 ============================================================================ +07:25:37 FNo. Len. Field Value +07:25:37 ============================================================================ +07:25:37 [ 1] [ 4] [0810] +07:25:37 [ 7] [ 10] [0320122446] +07:25:37 [ 11] [ 6] [155157] +07:25:37 [ 39] [ 2] [00] +07:25:37 [ 70] [ 3] [301] +07:25:37 ============================================================================ +07:25:37 Calculate Source COMM Id = 2 +07:25:37 ============================================================================ +07:25:37 + + +waiting on router queue for slot.... +07:25:38 ============================================================================ +07:25:38 Slot Id : <201> +07:25:38 Transaction Type : RESPONSE +07:25:38 Received From : +07:25:38 ============================================================================ +07:25:38 FNo. Len. Field Value +07:25:38 ============================================================================ +07:25:38 [ 1] [ 4] [0210] +07:25:38 [ 2] [ 16] [6688990040098608] +07:25:38 [ 3] [ 6] [011000] +07:25:38 [ 4] [ 12] [000100000000] +07:25:38 [ 11] [ 6] [669993] +07:25:38 [ 12] [ 6] [072533] +07:25:38 [ 15] [ 4] [0320] +07:25:38 [ 18] [ 4] [6011] +07:25:38 [ 32] [ 6] [621354] +07:25:38 [ 35] [ 37] [6688990040098608=98021261769677300000] +07:25:38 [ 37] [ 12] [507903443021] +07:25:38 [ 38] [ 6] [761905] +07:25:38 [ 39] [ 2] [00] +07:25:38 [ 41] [ 8] [06001700] +07:25:38 [ 49] [ 3] [418] +07:25:38 [ 54] [ 20] [1002418C000430472564] +07:25:38 ============================================================================ +07:25:38 Sending to : +07:25:38 ============================================================================ +07:25:38 + + +waiting on router queue for slot.... +07:25:39 ============================================================================ +07:25:39 Slot Id : <201> +07:25:39 Transaction Type : RESPONSE +07:25:39 Received From : +07:25:39 ============================================================================ +07:25:39 FNo. Len. Field Value +07:25:39 ============================================================================ +07:25:39 [ 1] [ 4] [0210] +07:25:39 [ 2] [ 16] [6688990040098608] +07:25:39 [ 3] [ 6] [011000] +07:25:39 [ 4] [ 12] [000100000000] +07:25:39 [ 11] [ 6] [669993] +07:25:39 [ 12] [ 6] [072533] +07:25:39 [ 15] [ 4] [0320] +07:25:39 [ 18] [ 4] [6011] +07:25:39 [ 32] [ 6] [621354] +07:25:39 [ 35] [ 37] [6688990040098608=98021261769677300000] +07:25:39 [ 37] [ 12] [507903443021] +07:25:39 [ 38] [ 6] [761905] +07:25:39 [ 39] [ 2] [00] +07:25:39 [ 41] [ 8] [06001700] +07:25:39 [ 49] [ 3] [418] +07:25:39 [ 54] [ 20] [1002418C000430472564] +07:25:39 ============================================================================ +07:25:39 Calculate Source COMM Id = 0 +07:25:39 ============================================================================ +07:25:39 + + +waiting on router queue for slot.... +07:25:43 ============================================================================ +07:25:43 Slot Id : <194> +07:25:43 Transaction Type : REQUEST +07:25:43 Received From : +07:25:43 ============================================================================ +07:25:43 FNo. Len. Field Value +07:25:43 ============================================================================ +07:25:43 [ 1] [ 4] [0200] +07:25:43 [ 2] [ 16] [6688990101741500] +07:25:43 [ 3] [ 6] [010000] +07:25:43 [ 4] [ 12] [000200000000] +07:25:43 [ 7] [ 10] [0320002451] +07:25:43 [ 11] [ 6] [266792] +07:25:43 [ 12] [ 6] [072451] +07:25:43 [ 13] [ 4] [0320] +07:25:43 [ 14] [ 4] [4205] +07:25:43 [ 15] [ 4] [0320] +07:25:43 [ 18] [ 4] [6011] +07:25:43 [ 19] [ 3] [418] +07:25:43 [ 22] [ 3] [021] +07:25:43 [ 25] [ 2] [01] +07:25:43 [ 28] [ 9] [D00002000] +07:25:43 [ 32] [ 6] [180893] +07:25:43 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:25:43 [ 37] [ 12] [507900266792] +07:25:43 [ 41] [ 8] [0466PSLB] +07:25:43 [ 42] [ 15] [999999 ] +07:25:43 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:25:43 [ 49] [ 3] [418] +07:25:43 [ 52] [ 16] [88530FFBFD94F1FD] +07:25:43 ============================================================================ +07:25:43 + + +waiting on router queue for slot.... +07:25:43 Sending to : +07:25:43 ============================================================================ +07:25:43 Sending to : +07:25:43 ============================================================================ +07:25:44 ============================================================================ +07:25:44 Slot Id : <194> +07:25:44 Transaction Type : REQUEST +07:25:44 Received From : +07:25:44 ============================================================================ +07:25:44 FNo. Len. Field Value +07:25:44 ============================================================================ +07:25:44 [ 1] [ 4] [0200] +07:25:44 [ 2] [ 16] [6688990101741500] +07:25:44 [ 3] [ 6] [010000] +07:25:44 [ 4] [ 12] [000200000000] +07:25:44 [ 7] [ 10] [0320002451] +07:25:44 [ 11] [ 6] [266792] +07:25:44 [ 12] [ 6] [072451] +07:25:44 [ 13] [ 4] [0320] +07:25:44 [ 14] [ 4] [4205] +07:25:44 [ 15] [ 4] [0320] +07:25:44 [ 18] [ 4] [6011] +07:25:44 [ 19] [ 3] [418] +07:25:44 [ 22] [ 3] [021] +07:25:44 [ 25] [ 2] [01] +07:25:44 [ 28] [ 9] [D00002000] +07:25:44 [ 32] [ 6] [180893] +07:25:44 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:25:44 [ 37] [ 12] [507900266792] +07:25:44 [ 41] [ 8] [0466PSLB] +07:25:44 [ 42] [ 15] [999999 ] +07:25:44 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:25:44 [ 49] [ 3] [418] +07:25:44 [ 52] [ 16] [88530FFBFD94F1FD] +07:25:44 ============================================================================ +07:25:44 + + +waiting on router queue for slot.... +07:25:44 Sending to : +07:25:44 ============================================================================ +07:25:44 ============================================================================ +07:25:44 Slot Id : <194> +07:25:44 Transaction Type : REQUEST +07:25:44 Received From : +07:25:44 ============================================================================ +07:25:44 FNo. Len. Field Value +07:25:44 ============================================================================ +07:25:44 [ 1] [ 4] [0200] +07:25:44 [ 2] [ 16] [6688990101741500] +07:25:44 [ 3] [ 6] [010000] +07:25:44 [ 4] [ 12] [000200000000] +07:25:44 [ 7] [ 10] [0320002451] +07:25:44 [ 11] [ 6] [266792] +07:25:44 [ 12] [ 6] [072451] +07:25:44 [ 13] [ 4] [0320] +07:25:44 [ 14] [ 4] [4205] +07:25:44 [ 15] [ 4] [0320] +07:25:44 [ 18] [ 4] [6011] +07:25:44 [ 19] [ 3] [418] +07:25:44 [ 22] [ 3] [021] +07:25:44 [ 25] [ 2] [01] +07:25:44 [ 28] [ 9] [D00002000] +07:25:44 [ 32] [ 6] [180893] +07:25:44 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:25:44 [ 37] [ 12] [507900266792] +07:25:44 [ 41] [ 8] [0466PSLB] +07:25:44 [ 42] [ 15] [999999 ] +07:25:44 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:25:44 [ 49] [ 3] [418] +07:25:44 [ 52] [ 16] [E82A7C1E92F6CD78] +07:25:44 ============================================================================ +07:25:44 + + +waiting on router queue for slot.... +07:25:44 Sending to : <0> +07:25:44 ============================================================================ +07:25:44 ============================================================================ +07:25:44 Slot Id : <194> +07:25:44 Transaction Type : RESPONSE +07:25:44 Received From : +07:25:44 ============================================================================ +07:25:44 FNo. Len. Field Value +07:25:44 ============================================================================ +07:25:44 [ 1] [ 4] [0210] +07:25:44 [ 2] [ 16] [6688990101741500] +07:25:44 [ 3] [ 6] [010000] +07:25:44 [ 4] [ 12] [000200000000] +07:25:44 [ 7] [ 10] [0320002451] +07:25:44 [ 11] [ 6] [266792] +07:25:44 [ 12] [ 6] [072451] +07:25:44 [ 13] [ 4] [0320] +07:25:44 [ 15] [ 4] [0320] +07:25:44 [ 18] [ 4] [6011] +07:25:44 [ 19] [ 3] [418] +07:25:44 [ 22] [ 3] [021] +07:25:44 [ 32] [ 6] [180893] +07:25:44 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:25:44 [ 37] [ 12] [507900266792] +07:25:44 [ 39] [ 2] [61] +07:25:44 [ 41] [ 8] [0466PSLB] +07:25:44 [ 49] [ 3] [418] +07:25:44 ============================================================================ +07:25:44 Sending to : +07:25:44 ============================================================================ +07:25:44 + + +waiting on router queue for slot.... +07:25:45 ============================================================================ +07:25:45 Slot Id : <194> +07:25:45 Transaction Type : RESPONSE +07:25:45 Received From : +07:25:45 ============================================================================ +07:25:45 FNo. Len. Field Value +07:25:45 ============================================================================ +07:25:45 [ 1] [ 4] [0210] +07:25:45 [ 2] [ 16] [6688990101741500] +07:25:45 [ 3] [ 6] [010000] +07:25:45 [ 4] [ 12] [000200000000] +07:25:45 [ 7] [ 10] [0320002451] +07:25:45 [ 11] [ 6] [266792] +07:25:45 [ 12] [ 6] [072451] +07:25:45 [ 13] [ 4] [0320] +07:25:45 [ 15] [ 4] [0320] +07:25:45 [ 18] [ 4] [6011] +07:25:45 [ 19] [ 3] [418] +07:25:45 [ 22] [ 3] [021] +07:25:45 [ 32] [ 6] [180893] +07:25:45 [ 35] [ 37] [6688990101741500=42051231150001300000] +07:25:45 [ 37] [ 12] [507900266792] +07:25:45 [ 39] [ 2] [61] +07:25:45 [ 41] [ 8] [0466PSLB] +07:25:45 [ 49] [ 3] [418] +07:25:45 ============================================================================ +07:25:45 Calculate Source COMM Id = 2 +07:25:45 ============================================================================ +07:25:45 + + +waiting on router queue for slot.... +07:25:51 ============================================================================ +07:25:51 Slot Id : <214> +07:25:51 Transaction Type : REQUEST +07:25:51 Received From : +07:25:51 ============================================================================ +07:25:51 FNo. Len. Field Value +07:25:51 ============================================================================ +07:25:51 [ 1] [ 4] [0200] +07:25:51 [ 2] [ 16] [6213545000333876] +07:25:51 [ 3] [ 6] [302000] +07:25:51 [ 7] [ 10] [0320002458] +07:25:51 [ 11] [ 6] [266793] +07:25:51 [ 12] [ 6] [072458] +07:25:51 [ 13] [ 4] [0320] +07:25:51 [ 14] [ 4] [4912] +07:25:51 [ 15] [ 4] [0320] +07:25:51 [ 18] [ 4] [6011] +07:25:51 [ 19] [ 3] [418] +07:25:51 [ 22] [ 3] [021] +07:25:51 [ 25] [ 2] [01] +07:25:51 [ 32] [ 6] [180893] +07:25:51 [ 35] [ 32] [6213545000333876=491212013387408] +07:25:51 [ 37] [ 12] [507900266793] +07:25:51 [ 41] [ 8] [0106NAXA] +07:25:51 [ 42] [ 15] [999999 ] +07:25:51 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +07:25:51 [ 49] [ 3] [418] +07:25:51 [ 52] [ 16] [B792D46858D91D31] +07:25:51 ============================================================================ +07:25:51 + + +waiting on router queue for slot.... +07:25:51 Sending to : +07:25:51 ============================================================================ +07:25:51 Sending to : +07:25:51 ============================================================================ +07:25:52 ============================================================================ +07:25:52 Slot Id : <214> +07:25:52 Transaction Type : REQUEST +07:25:52 Received From : +07:25:52 ============================================================================ +07:25:52 FNo. Len. Field Value +07:25:52 ============================================================================ +07:25:52 [ 1] [ 4] [0200] +07:25:52 [ 2] [ 16] [6213545000333876] +07:25:52 [ 3] [ 6] [302000] +07:25:52 [ 7] [ 10] [0320002458] +07:25:52 [ 11] [ 6] [266793] +07:25:52 [ 12] [ 6] [072458] +07:25:52 [ 13] [ 4] [0320] +07:25:52 [ 14] [ 4] [4912] +07:25:52 [ 15] [ 4] [0320] +07:25:52 [ 18] [ 4] [6011] +07:25:52 [ 19] [ 3] [418] +07:25:52 [ 22] [ 3] [021] +07:25:52 [ 25] [ 2] [01] +07:25:52 [ 32] [ 6] [180893] +07:25:52 [ 35] [ 32] [6213545000333876=491212013387408] +07:25:52 [ 37] [ 12] [507900266793] +07:25:52 [ 41] [ 8] [0106NAXA] +07:25:52 [ 42] [ 15] [999999 ] +07:25:52 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +07:25:52 [ 49] [ 3] [418] +07:25:52 [ 52] [ 16] [B792D46858D91D31] +07:25:52 ============================================================================ +07:25:52 + + +waiting on router queue for slot.... +07:25:52 Sending to : +07:25:52 ============================================================================ +07:25:52 ============================================================================ +07:25:52 Slot Id : <214> +07:25:52 Transaction Type : REQUEST +07:25:52 Received From : +07:25:52 ============================================================================ +07:25:52 FNo. Len. Field Value +07:25:52 ============================================================================ +07:25:52 [ 1] [ 4] [0200] +07:25:52 [ 2] [ 16] [6213545000333876] +07:25:52 [ 3] [ 6] [302000] +07:25:52 [ 7] [ 10] [0320002458] +07:25:52 [ 11] [ 6] [266793] +07:25:52 [ 12] [ 6] [072458] +07:25:52 [ 13] [ 4] [0320] +07:25:52 [ 14] [ 4] [4912] +07:25:52 [ 15] [ 4] [0320] +07:25:52 [ 18] [ 4] [6011] +07:25:52 [ 19] [ 3] [418] +07:25:52 [ 22] [ 3] [021] +07:25:52 [ 25] [ 2] [01] +07:25:52 [ 32] [ 6] [180893] +07:25:52 [ 35] [ 32] [6213545000333876=491212013387408] +07:25:52 [ 37] [ 12] [507900266793] +07:25:52 [ 41] [ 8] [0106NAXA] +07:25:52 [ 42] [ 15] [999999 ] +07:25:52 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +07:25:52 [ 49] [ 3] [418] +07:25:52 [ 52] [ 16] [BECA4A1ACAE4A522] +07:25:52 ============================================================================ +07:25:52 + + +waiting on router queue for slot.... +07:25:52 Sending to : <0> +07:25:52 ============================================================================ +07:25:52 ============================================================================ +07:25:52 Slot Id : <214> +07:25:52 Transaction Type : RESPONSE +07:25:52 Received From : +07:25:52 ============================================================================ +07:25:52 FNo. Len. Field Value +07:25:52 ============================================================================ +07:25:52 [ 1] [ 4] [0210] +07:25:52 [ 2] [ 16] [6213545000333876] +07:25:52 [ 3] [ 6] [302000] +07:25:52 [ 4] [ 12] [000000000000] +07:25:52 [ 7] [ 10] [0320002458] +07:25:52 [ 11] [ 6] [266793] +07:25:52 [ 12] [ 6] [072458] +07:25:52 [ 13] [ 4] [0320] +07:25:52 [ 15] [ 4] [0320] +07:25:52 [ 18] [ 4] [6011] +07:25:52 [ 19] [ 3] [418] +07:25:52 [ 32] [ 6] [180893] +07:25:52 [ 35] [ 32] [6213545000333876=491212013387408] +07:25:52 [ 37] [ 12] [507900266793] +07:25:52 [ 38] [ 6] [651042] +07:25:52 [ 39] [ 2] [00] +07:25:52 [ 41] [ 8] [0106NAXA] +07:25:52 [ 49] [ 3] [418] +07:25:52 [ 54] [ 40] [2001418C0001699923202002418C000169992320] +07:25:52 ============================================================================ +07:25:52 Sending to : +07:25:52 ============================================================================ +07:25:52 + + +waiting on router queue for slot.... +07:25:54 ============================================================================ +07:25:54 Slot Id : <214> +07:25:54 Transaction Type : RESPONSE +07:25:54 Received From : +07:25:54 ============================================================================ +07:25:54 FNo. Len. Field Value +07:25:54 ============================================================================ +07:25:54 [ 1] [ 4] [0210] +07:25:54 [ 2] [ 16] [6213545000333876] +07:25:54 [ 3] [ 6] [302000] +07:25:54 [ 4] [ 12] [000000000000] +07:25:54 [ 7] [ 10] [0320002458] +07:25:54 [ 11] [ 6] [266793] +07:25:54 [ 12] [ 6] [072458] +07:25:54 [ 13] [ 4] [0320] +07:25:54 [ 15] [ 4] [0320] +07:25:54 [ 18] [ 4] [6011] +07:25:54 [ 19] [ 3] [418] +07:25:54 [ 32] [ 6] [180893] +07:25:54 [ 35] [ 32] [6213545000333876=491212013387408] +07:25:54 [ 37] [ 12] [507900266793] +07:25:54 [ 38] [ 6] [651042] +07:25:54 [ 39] [ 2] [00] +07:25:54 [ 41] [ 8] [0106NAXA] +07:25:54 [ 49] [ 3] [418] +07:25:54 [ 54] [ 40] [2001418C0001699923202002418C000169992320] +07:25:54 ============================================================================ +07:25:54 Calculate Source COMM Id = 2 +07:25:54 ============================================================================ +07:25:54 + + +waiting on router queue for slot.... +07:25:58 ============================================================================ +07:25:58 Slot Id : <165> +07:25:58 Transaction Type : REQUEST +07:25:58 Received From : +07:25:58 ============================================================================ +07:25:58 FNo. Len. Field Value +07:25:58 ============================================================================ +07:25:58 [ 1] [ 4] [0800] +07:25:58 [ 2] [ 5] [02531] +07:25:58 [ 3] [ 6] [579078] +07:25:58 [ 7] [ 10] [0320002558] +07:25:58 [ 11] [ 6] [806843] +07:25:58 [ 15] [ 10] [0320002558] +07:25:58 [ 37] [ 11] [57907806843] +07:25:58 [ 70] [ 3] [001] +07:25:58 ============================================================================ +07:25:58 + + +waiting on router queue for slot.... +07:25:58 ============================================================================ +07:25:58 Slot Id : <165> +07:25:58 Transaction Type : RESPONSE +07:25:58 Received From : +07:25:58 ============================================================================ +07:25:58 FNo. Len. Field Value +07:25:58 ============================================================================ +07:25:58 [ 1] [ 4] [0810] +07:25:58 [ 7] [ 10] [0320002558] +07:25:58 [ 11] [ 6] [806843] +07:25:58 [ 15] [ 4] [0320] +07:25:58 [ 37] [ 12] [57907806843] +07:25:58 [ 39] [ 2] [00] +07:25:58 [ 70] [ 3] [001] +07:25:58 ============================================================================ +07:25:58 Sending to : +07:25:58 ============================================================================ +07:25:58 + + +waiting on router queue for slot.... +07:26:05 ============================================================================ +07:26:05 Slot Id : <195> +07:26:05 Transaction Type : REQUEST +07:26:05 Received From : +07:26:05 ============================================================================ +07:26:05 FNo. Len. Field Value +07:26:05 ============================================================================ +07:26:05 [ 1] [ 4] [0800] +07:26:05 [ 7] [ 10] [0320122513] +07:26:05 [ 11] [ 6] [155158] +07:26:05 [ 70] [ 3] [301] +07:26:05 ============================================================================ +07:26:05 + + +waiting on router queue for slot.... +07:26:05 Sending to : +07:26:05 ============================================================================ +07:26:05 ============================================================================ +07:26:05 Slot Id : <195> +07:26:05 Transaction Type : RESPONSE +07:26:05 Received From : +07:26:05 ============================================================================ +07:26:05 FNo. Len. Field Value +07:26:05 ============================================================================ +07:26:05 [ 1] [ 4] [0810] +07:26:05 [ 7] [ 10] [0320122513] +07:26:05 [ 11] [ 6] [155158] +07:26:05 [ 39] [ 2] [00] +07:26:05 [ 70] [ 3] [301] +07:26:05 ============================================================================ +07:26:05 Calculate Source COMM Id = 2 +07:26:05 ============================================================================ +07:26:05 + + +waiting on router queue for slot.... +07:26:16 ============================================================================ +07:26:16 Slot Id : <184> +07:26:16 Transaction Type : REQUEST +07:26:16 Received From : +07:26:16 ============================================================================ +07:26:16 FNo. Len. Field Value +07:26:16 ============================================================================ +07:26:16 [ 1] [ 4] [0800] +07:26:16 [ 7] [ 10] [0320122524] +07:26:16 [ 11] [ 6] [155159] +07:26:16 [ 70] [ 3] [301] +07:26:16 ============================================================================ +07:26:16 + + +waiting on router queue for slot.... +07:26:16 Sending to : +07:26:16 ============================================================================ +07:26:16 ============================================================================ +07:26:16 Slot Id : <184> +07:26:16 Transaction Type : RESPONSE +07:26:16 Received From : +07:26:16 ============================================================================ +07:26:16 FNo. Len. Field Value +07:26:16 ============================================================================ +07:26:16 [ 1] [ 4] [0810] +07:26:16 [ 7] [ 10] [0320122524] +07:26:16 [ 11] [ 6] [155159] +07:26:16 [ 39] [ 2] [00] +07:26:16 [ 70] [ 3] [301] +07:26:16 ============================================================================ +07:26:16 Calculate Source COMM Id = 2 +07:26:16 ============================================================================ +07:26:16 + + +waiting on router queue for slot.... +07:26:20 ============================================================================ +07:26:20 Slot Id : <209> +07:26:20 Transaction Type : REQUEST +07:26:20 Received From : +07:26:20 ============================================================================ +07:26:20 FNo. Len. Field Value +07:26:20 ============================================================================ +07:26:20 [ 1] [ 4] [0800] +07:26:20 [ 7] [ 10] [0320002412] +07:26:20 [ 11] [ 6] [031931] +07:26:20 [ 37] [ 12] [57907031931] +07:26:20 [ 70] [ 3] [301] +07:26:20 ============================================================================ +07:26:20 + + +waiting on router queue for slot.... +07:26:20 Sending to : +07:26:20 ============================================================================ +07:26:20 ============================================================================ +07:26:20 Slot Id : <209> +07:26:20 Transaction Type : RESPONSE +07:26:20 Received From : +07:26:20 ============================================================================ +07:26:20 FNo. Len. Field Value +07:26:20 ============================================================================ +07:26:20 [ 1] [ 4] [0810] +07:26:20 [ 7] [ 10] [0320002412] +07:26:20 [ 11] [ 6] [031931] +07:26:20 [ 37] [ 12] [579070319310] +07:26:20 [ 39] [ 2] [00] +07:26:20 [ 70] [ 3] [810] +07:26:20 ============================================================================ +07:26:20 Calculate Source COMM Id = 4 +07:26:20 ============================================================================ +07:26:20 + + +waiting on router queue for slot.... +07:26:23 ============================================================================ +07:26:23 Slot Id : <178> +07:26:23 Transaction Type : REQUEST +07:26:23 Received From : +07:26:23 ============================================================================ +07:26:23 FNo. Len. Field Value +07:26:23 ============================================================================ +07:26:23 [ 1] [ 4] [0800] +07:26:23 [ 7] [ 10] [0320143812] +07:26:23 [ 11] [ 6] [073812] +07:26:23 [ 37] [ 12] [57907073812] +07:26:23 [ 70] [ 3] [301] +07:26:23 ============================================================================ +07:26:23 + + +waiting on router queue for slot.... +07:26:23 Sending to : +07:26:23 ============================================================================ +07:26:23 ============================================================================ +07:26:23 Slot Id : <178> +07:26:23 Transaction Type : RESPONSE +07:26:23 Received From : +07:26:23 ============================================================================ +07:26:23 FNo. Len. Field Value +07:26:23 ============================================================================ +07:26:23 [ 1] [ 4] [0810] +07:26:23 [ 7] [ 10] [0320143812] +07:26:23 [ 11] [ 6] [073812] +07:26:23 [ 37] [ 12] [579070738120] +07:26:23 [ 39] [ 2] [00] +07:26:23 [ 70] [ 3] [810] +07:26:23 ============================================================================ +07:26:23 Calculate Source COMM Id = 6 +07:26:23 ============================================================================ +07:26:23 + + +waiting on router queue for slot.... +07:26:27 ============================================================================ +07:26:27 Slot Id : <213> +07:26:27 Transaction Type : REQUEST +07:26:27 Received From : +07:26:27 ============================================================================ +07:26:27 FNo. Len. Field Value +07:26:27 ============================================================================ +07:26:27 [ 1] [ 4] [0800] +07:26:27 [ 7] [ 10] [0320122535] +07:26:27 [ 11] [ 6] [155160] +07:26:27 [ 70] [ 3] [301] +07:26:27 ============================================================================ +07:26:27 + + +waiting on router queue for slot.... +07:26:27 Sending to : +07:26:27 ============================================================================ +07:26:27 ============================================================================ +07:26:27 Slot Id : <213> +07:26:27 Transaction Type : RESPONSE +07:26:27 Received From : +07:26:27 ============================================================================ +07:26:27 FNo. Len. Field Value +07:26:27 ============================================================================ +07:26:27 [ 1] [ 4] [0810] +07:26:27 [ 7] [ 10] [0320122535] +07:26:27 [ 11] [ 6] [155160] +07:26:27 [ 39] [ 2] [00] +07:26:27 [ 70] [ 3] [301] +07:26:27 ============================================================================ +07:26:27 Calculate Source COMM Id = 2 +07:26:27 ============================================================================ +07:26:27 + + +waiting on router queue for slot.... +07:26:42 ============================================================================ +07:26:42 Slot Id : <208> +07:26:42 Transaction Type : REQUEST +07:26:42 Received From : +07:26:42 ============================================================================ +07:26:42 FNo. Len. Field Value +07:26:42 ============================================================================ +07:26:42 [ 1] [ 4] [0800] +07:26:42 [ 7] [ 10] [0320122550] +07:26:42 [ 11] [ 6] [155161] +07:26:42 [ 70] [ 3] [301] +07:26:42 ============================================================================ +07:26:42 + + +waiting on router queue for slot.... +07:26:42 Sending to : +07:26:42 ============================================================================ +07:26:42 ============================================================================ +07:26:42 Slot Id : <208> +07:26:42 Transaction Type : RESPONSE +07:26:42 Received From : +07:26:42 ============================================================================ +07:26:42 FNo. Len. Field Value +07:26:42 ============================================================================ +07:26:42 [ 1] [ 4] [0810] +07:26:42 [ 7] [ 10] [0320122550] +07:26:42 [ 11] [ 6] [155161] +07:26:42 [ 39] [ 2] [00] +07:26:42 [ 70] [ 3] [301] +07:26:42 ============================================================================ +07:26:42 Calculate Source COMM Id = 2 +07:26:42 ============================================================================ +07:26:42 + + +waiting on router queue for slot.... +07:26:49 ============================================================================ +07:26:49 Slot Id : <206> +07:26:49 Transaction Type : REQUEST +07:26:49 Received From : +07:26:49 ============================================================================ +07:26:49 FNo. Len. Field Value +07:26:49 ============================================================================ +07:26:49 [ 1] [ 4] [0200] +07:26:49 [ 2] [ 16] [6213545000333876] +07:26:49 [ 3] [ 6] [010000] +07:26:49 [ 4] [ 12] [000150000000] +07:26:49 [ 7] [ 10] [0320002556] +07:26:49 [ 11] [ 6] [266795] +07:26:49 [ 12] [ 6] [072556] +07:26:49 [ 13] [ 4] [0320] +07:26:49 [ 14] [ 4] [4912] +07:26:49 [ 15] [ 4] [0320] +07:26:49 [ 18] [ 4] [6011] +07:26:49 [ 19] [ 3] [418] +07:26:49 [ 22] [ 3] [021] +07:26:49 [ 25] [ 2] [01] +07:26:49 [ 28] [ 9] [D00002000] +07:26:49 [ 32] [ 6] [180893] +07:26:49 [ 35] [ 32] [6213545000333876=491212013387408] +07:26:49 [ 37] [ 12] [507900266795] +07:26:49 [ 41] [ 8] [0106NAXA] +07:26:49 [ 42] [ 15] [999999 ] +07:26:49 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +07:26:49 [ 49] [ 3] [418] +07:26:49 [ 52] [ 16] [B792D46858D91D31] +07:26:49 ============================================================================ +07:26:49 + + +waiting on router queue for slot.... +07:26:49 Sending to : +07:26:49 ============================================================================ +07:26:49 Sending to : +07:26:49 ============================================================================ +07:26:49 ============================================================================ +07:26:49 Slot Id : <206> +07:26:49 Transaction Type : REQUEST +07:26:49 Received From : +07:26:49 ============================================================================ +07:26:49 FNo. Len. Field Value +07:26:49 ============================================================================ +07:26:49 [ 1] [ 4] [0200] +07:26:49 [ 2] [ 16] [6213545000333876] +07:26:49 [ 3] [ 6] [010000] +07:26:49 [ 4] [ 12] [000150000000] +07:26:49 [ 7] [ 10] [0320002556] +07:26:49 [ 11] [ 6] [266795] +07:26:49 [ 12] [ 6] [072556] +07:26:49 [ 13] [ 4] [0320] +07:26:49 [ 14] [ 4] [4912] +07:26:49 [ 15] [ 4] [0320] +07:26:49 [ 18] [ 4] [6011] +07:26:49 [ 19] [ 3] [418] +07:26:49 [ 22] [ 3] [021] +07:26:49 [ 25] [ 2] [01] +07:26:49 [ 28] [ 9] [D00002000] +07:26:49 [ 32] [ 6] [180893] +07:26:49 [ 35] [ 32] [6213545000333876=491212013387408] +07:26:49 [ 37] [ 12] [507900266795] +07:26:49 [ 41] [ 8] [0106NAXA] +07:26:49 [ 42] [ 15] [999999 ] +07:26:49 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +07:26:49 [ 49] [ 3] [418] +07:26:49 [ 52] [ 16] [B792D46858D91D31] +07:26:49 ============================================================================ +07:26:49 + + +waiting on router queue for slot.... +07:26:49 Sending to : +07:26:49 ============================================================================ +07:26:49 ============================================================================ +07:26:49 Slot Id : <206> +07:26:49 Transaction Type : REQUEST +07:26:49 Received From : +07:26:49 ============================================================================ +07:26:49 FNo. Len. Field Value +07:26:49 ============================================================================ +07:26:49 [ 1] [ 4] [0200] +07:26:49 [ 2] [ 16] [6213545000333876] +07:26:49 [ 3] [ 6] [010000] +07:26:49 [ 4] [ 12] [000150000000] +07:26:49 [ 7] [ 10] [0320002556] +07:26:49 [ 11] [ 6] [266795] +07:26:49 [ 12] [ 6] [072556] +07:26:49 [ 13] [ 4] [0320] +07:26:49 [ 14] [ 4] [4912] +07:26:49 [ 15] [ 4] [0320] +07:26:49 [ 18] [ 4] [6011] +07:26:49 [ 19] [ 3] [418] +07:26:49 [ 22] [ 3] [021] +07:26:49 [ 25] [ 2] [01] +07:26:49 [ 28] [ 9] [D00002000] +07:26:49 [ 32] [ 6] [180893] +07:26:49 [ 35] [ 32] [6213545000333876=491212013387408] +07:26:49 [ 37] [ 12] [507900266795] +07:26:49 [ 41] [ 8] [0106NAXA] +07:26:49 [ 42] [ 15] [999999 ] +07:26:49 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +07:26:49 [ 49] [ 3] [418] +07:26:49 [ 52] [ 16] [BECA4A1ACAE4A522] +07:26:49 ============================================================================ +07:26:49 + + +waiting on router queue for slot.... +07:26:49 Sending to : <0> +07:26:49 ============================================================================ +07:26:49 ============================================================================ +07:26:49 Slot Id : <206> +07:26:49 Transaction Type : RESPONSE +07:26:49 Received From : +07:26:49 ============================================================================ +07:26:49 FNo. Len. Field Value +07:26:49 ============================================================================ +07:26:49 [ 1] [ 4] [0210] +07:26:49 [ 2] [ 16] [6213545000333876] +07:26:49 [ 3] [ 6] [010000] +07:26:49 [ 4] [ 12] [000150000000] +07:26:49 [ 7] [ 10] [0320002556] +07:26:49 [ 11] [ 6] [266795] +07:26:49 [ 12] [ 6] [072556] +07:26:49 [ 13] [ 4] [0320] +07:26:49 [ 15] [ 4] [0320] +07:26:49 [ 18] [ 4] [6011] +07:26:49 [ 19] [ 3] [418] +07:26:49 [ 22] [ 3] [021] +07:26:49 [ 32] [ 6] [180893] +07:26:49 [ 35] [ 32] [6213545000333876=491212013387408] +07:26:49 [ 37] [ 12] [507900266795] +07:26:49 [ 39] [ 2] [61] +07:26:49 [ 41] [ 8] [0106NAXA] +07:26:49 [ 49] [ 3] [418] +07:26:49 ============================================================================ +07:26:49 Sending to : +07:26:49 ============================================================================ +07:26:49 + + +waiting on router queue for slot.... +07:26:51 ============================================================================ +07:26:51 Slot Id : <206> +07:26:51 Transaction Type : RESPONSE +07:26:51 Received From : +07:26:51 ============================================================================ +07:26:51 FNo. Len. Field Value +07:26:51 ============================================================================ +07:26:51 [ 1] [ 4] [0210] +07:26:51 [ 2] [ 16] [6213545000333876] +07:26:51 [ 3] [ 6] [010000] +07:26:51 [ 4] [ 12] [000150000000] +07:26:51 [ 7] [ 10] [0320002556] +07:26:51 [ 11] [ 6] [266795] +07:26:51 [ 12] [ 6] [072556] +07:26:51 [ 13] [ 4] [0320] +07:26:51 [ 15] [ 4] [0320] +07:26:51 [ 18] [ 4] [6011] +07:26:51 [ 19] [ 3] [418] +07:26:51 [ 22] [ 3] [021] +07:26:51 [ 32] [ 6] [180893] +07:26:51 [ 35] [ 32] [6213545000333876=491212013387408] +07:26:51 [ 37] [ 12] [507900266795] +07:26:51 [ 39] [ 2] [61] +07:26:51 [ 41] [ 8] [0106NAXA] +07:26:51 [ 49] [ 3] [418] +07:26:51 ============================================================================ +07:26:51 Calculate Source COMM Id = 2 +07:26:51 ============================================================================ +07:26:51 + + +waiting on router queue for slot.... +07:27:00 ============================================================================ +07:27:00 Slot Id : <193> +07:27:00 Transaction Type : REQUEST +07:27:00 Received From : +07:27:00 ============================================================================ +07:27:00 FNo. Len. Field Value +07:27:00 ============================================================================ +07:27:00 [ 1] [ 4] [0800] +07:27:00 [ 2] [ 5] [02531] +07:27:00 [ 3] [ 6] [579078] +07:27:00 [ 7] [ 10] [0320002700] +07:27:00 [ 11] [ 6] [806844] +07:27:00 [ 15] [ 10] [0320002700] +07:27:00 [ 37] [ 11] [57907806844] +07:27:00 [ 70] [ 3] [001] +07:27:00 ============================================================================ +07:27:00 + + +waiting on router queue for slot.... +07:27:00 ============================================================================ +07:27:00 Slot Id : <193> +07:27:00 Transaction Type : RESPONSE +07:27:00 Received From : +07:27:00 ============================================================================ +07:27:00 FNo. Len. Field Value +07:27:00 ============================================================================ +07:27:00 [ 1] [ 4] [0810] +07:27:00 [ 7] [ 10] [0320002700] +07:27:00 [ 11] [ 6] [806844] +07:27:00 [ 15] [ 4] [0320] +07:27:00 [ 37] [ 12] [57907806844] +07:27:00 [ 39] [ 2] [00] +07:27:00 [ 70] [ 3] [001] +07:27:00 ============================================================================ +07:27:00 Sending to : +07:27:00 ============================================================================ +07:27:00 + + +waiting on router queue for slot.... +07:27:04 ============================================================================ +07:27:04 Slot Id : <221> +07:27:04 Transaction Type : REQUEST +07:27:04 Received From : +07:27:04 ============================================================================ +07:27:04 FNo. Len. Field Value +07:27:04 ============================================================================ +07:27:04 [ 1] [ 4] [0800] +07:27:04 [ 7] [ 10] [0320122612] +07:27:04 [ 11] [ 6] [155162] +07:27:04 [ 70] [ 3] [301] +07:27:04 ============================================================================ +07:27:04 + + +waiting on router queue for slot.... +07:27:04 Sending to : +07:27:04 ============================================================================ +07:27:04 ============================================================================ +07:27:04 Slot Id : <221> +07:27:04 Transaction Type : RESPONSE +07:27:04 Received From : +07:27:04 ============================================================================ +07:27:04 FNo. Len. Field Value +07:27:04 ============================================================================ +07:27:04 [ 1] [ 4] [0810] +07:27:04 [ 7] [ 10] [0320122612] +07:27:04 [ 11] [ 6] [155162] +07:27:04 [ 39] [ 2] [00] +07:27:04 [ 70] [ 3] [301] +07:27:04 ============================================================================ +07:27:04 Calculate Source COMM Id = 2 +07:27:04 ============================================================================ +07:27:04 + + +waiting on router queue for slot.... +07:27:12 ============================================================================ +07:27:12 Slot Id : <185> +07:27:12 Transaction Type : REQUEST +07:27:12 Received From : +07:27:12 ============================================================================ +07:27:12 FNo. Len. Field Value +07:27:12 ============================================================================ +07:27:12 [ 1] [ 4] [0200] +07:27:12 [ 2] [ 16] [6688990103635908] +07:27:12 [ 3] [ 6] [013000] +07:27:12 [ 4] [ 12] [000050000000] +07:27:12 [ 7] [ 10] [0320072708] +07:27:12 [ 11] [ 6] [670203] +07:27:12 [ 12] [ 6] [072708] +07:27:12 [ 13] [ 4] [0320] +07:27:12 [ 15] [ 4] [0320] +07:27:12 [ 18] [ 4] [6011] +07:27:12 [ 22] [ 3] [900] +07:27:12 [ 25] [ 2] [02] +07:27:12 [ 28] [ 9] [D00002000] +07:27:12 [ 32] [ 6] [621354] +07:27:12 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:27:12 [ 37] [ 12] [507903499439] +07:27:12 [ 41] [ 8] [06002200] +07:27:12 [ 42] [ 15] [NATIVE ] +07:27:12 [ 43] [ 40] [Beng Market Beng LAO] +07:27:12 [ 49] [ 3] [418] +07:27:12 [ 52] [ 16] [609F3A3095489120] +07:27:12 ============================================================================ +07:27:12 + + +waiting on router queue for slot.... +07:27:12 Sending to : +07:27:12 ============================================================================ +07:27:12 Sending to : +07:27:12 ============================================================================ +07:27:12 ============================================================================ +07:27:12 Slot Id : <185> +07:27:12 Transaction Type : REQUEST +07:27:12 Received From : +07:27:12 ============================================================================ +07:27:12 FNo. Len. Field Value +07:27:12 ============================================================================ +07:27:12 [ 1] [ 4] [0200] +07:27:12 [ 2] [ 16] [6688990103635908] +07:27:12 [ 3] [ 6] [013000] +07:27:12 [ 4] [ 12] [000050000000] +07:27:12 [ 7] [ 10] [0320072708] +07:27:12 [ 11] [ 6] [670203] +07:27:12 [ 12] [ 6] [072708] +07:27:12 [ 13] [ 4] [0320] +07:27:12 [ 15] [ 4] [0320] +07:27:12 [ 18] [ 4] [6011] +07:27:12 [ 22] [ 3] [900] +07:27:12 [ 25] [ 2] [02] +07:27:12 [ 28] [ 9] [D00002000] +07:27:12 [ 32] [ 6] [621354] +07:27:12 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:27:12 [ 37] [ 12] [507903499439] +07:27:12 [ 41] [ 8] [06002200] +07:27:12 [ 42] [ 15] [NATIVE ] +07:27:12 [ 43] [ 40] [Beng Market Beng LAO] +07:27:12 [ 49] [ 3] [418] +07:27:12 [ 52] [ 16] [609F3A3095489120] +07:27:12 ============================================================================ +07:27:12 + + +waiting on router queue for slot.... +07:27:12 Sending to : +07:27:12 ============================================================================ +07:27:12 ============================================================================ +07:27:12 Slot Id : <185> +07:27:12 Transaction Type : REQUEST +07:27:12 Received From : +07:27:12 ============================================================================ +07:27:12 FNo. Len. Field Value +07:27:12 ============================================================================ +07:27:12 [ 1] [ 4] [0200] +07:27:12 [ 2] [ 16] [6688990103635908] +07:27:12 [ 3] [ 6] [013000] +07:27:12 [ 4] [ 12] [000050000000] +07:27:12 [ 7] [ 10] [0320072708] +07:27:12 [ 11] [ 6] [670203] +07:27:12 [ 12] [ 6] [072708] +07:27:12 [ 13] [ 4] [0320] +07:27:12 [ 15] [ 4] [0320] +07:27:12 [ 18] [ 4] [6011] +07:27:12 [ 22] [ 3] [900] +07:27:12 [ 25] [ 2] [02] +07:27:12 [ 28] [ 9] [D00002000] +07:27:12 [ 32] [ 6] [621354] +07:27:12 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:27:12 [ 37] [ 12] [507903499439] +07:27:12 [ 41] [ 8] [06002200] +07:27:12 [ 42] [ 15] [NATIVE ] +07:27:12 [ 43] [ 40] [Beng Market Beng LAO] +07:27:12 [ 49] [ 3] [418] +07:27:12 [ 52] [ 16] [16C30DE06CDF1FC4] +07:27:12 ============================================================================ +07:27:12 + + +waiting on router queue for slot.... +07:27:12 Sending to : <4> +07:27:12 ============================================================================ +07:27:13 ============================================================================ +07:27:13 Slot Id : <185> +07:27:13 Transaction Type : RESPONSE +07:27:13 Received From : +07:27:13 ============================================================================ +07:27:13 FNo. Len. Field Value +07:27:13 ============================================================================ +07:27:13 [ 1] [ 4] [0210] +07:27:13 [ 2] [ 16] [6688990103635908] +07:27:13 [ 3] [ 6] [013000] +07:27:13 [ 4] [ 12] [000050000000] +07:27:13 [ 11] [ 6] [670203] +07:27:13 [ 12] [ 6] [072708] +07:27:13 [ 15] [ 4] [0320] +07:27:13 [ 18] [ 4] [6011] +07:27:13 [ 32] [ 6] [621354] +07:27:13 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:27:13 [ 37] [ 12] [507903499439] +07:27:13 [ 38] [ 6] [345480] +07:27:13 [ 39] [ 2] [00] +07:27:13 [ 41] [ 8] [06002200] +07:27:13 [ 49] [ 3] [418] +07:27:13 [ 54] [ 20] [3002418C000149215685] +07:27:13 ============================================================================ +07:27:13 Sending to : +07:27:13 ============================================================================ +07:27:13 + + +waiting on router queue for slot.... +07:27:15 ============================================================================ +07:27:15 Slot Id : <185> +07:27:15 Transaction Type : RESPONSE +07:27:15 Received From : +07:27:15 ============================================================================ +07:27:15 FNo. Len. Field Value +07:27:15 ============================================================================ +07:27:15 [ 1] [ 4] [0210] +07:27:15 [ 2] [ 16] [6688990103635908] +07:27:15 [ 3] [ 6] [013000] +07:27:15 [ 4] [ 12] [000050000000] +07:27:15 [ 11] [ 6] [670203] +07:27:15 [ 12] [ 6] [072708] +07:27:15 [ 15] [ 4] [0320] +07:27:15 [ 18] [ 4] [6011] +07:27:15 [ 32] [ 6] [621354] +07:27:15 [ 35] [ 37] [6688990103635908=43011231590823600000] +07:27:15 [ 37] [ 12] [507903499439] +07:27:15 [ 38] [ 6] [345480] +07:27:15 [ 39] [ 2] [00] +07:27:15 [ 41] [ 8] [06002200] +07:27:15 [ 49] [ 3] [418] +07:27:15 [ 54] [ 20] [3002418C000149215685] +07:27:15 ============================================================================ +07:27:15 Calculate Source COMM Id = 0 +07:27:15 ============================================================================ +07:27:15 + + +waiting on router queue for slot.... +07:27:15 ============================================================================ +07:27:15 Slot Id : <212> +07:27:15 Transaction Type : REQUEST +07:27:15 Received From : +07:27:15 ============================================================================ +07:27:15 FNo. Len. Field Value +07:27:15 ============================================================================ +07:27:15 [ 1] [ 4] [0800] +07:27:15 [ 7] [ 10] [0320122623] +07:27:15 [ 11] [ 6] [155163] +07:27:15 [ 70] [ 3] [301] +07:27:15 ============================================================================ +07:27:15 + + +waiting on router queue for slot.... +07:27:15 Sending to : +07:27:15 ============================================================================ +07:27:15 ============================================================================ +07:27:15 Slot Id : <212> +07:27:15 Transaction Type : RESPONSE +07:27:15 Received From : +07:27:15 ============================================================================ +07:27:15 FNo. Len. Field Value +07:27:15 ============================================================================ +07:27:15 [ 1] [ 4] [0810] +07:27:15 [ 7] [ 10] [0320122623] +07:27:15 [ 11] [ 6] [155163] +07:27:15 [ 39] [ 2] [00] +07:27:15 [ 70] [ 3] [301] +07:27:15 ============================================================================ +07:27:15 Calculate Source COMM Id = 2 +07:27:15 ============================================================================ +07:27:15 + + +waiting on router queue for slot.... +07:27:28 ============================================================================ +07:27:28 Slot Id : <211> +07:27:28 Transaction Type : REQUEST +07:27:28 Received From : +07:27:28 ============================================================================ +07:27:28 FNo. Len. Field Value +07:27:28 ============================================================================ +07:27:28 [ 1] [ 4] [0800] +07:27:28 [ 7] [ 10] [0320143917] +07:27:28 [ 11] [ 6] [073917] +07:27:28 [ 37] [ 12] [57907073917] +07:27:28 [ 70] [ 3] [301] +07:27:28 ============================================================================ +07:27:28 + + +waiting on router queue for slot.... +07:27:28 Sending to : +07:27:28 ============================================================================ +07:27:28 ============================================================================ +07:27:28 Slot Id : <211> +07:27:28 Transaction Type : RESPONSE +07:27:28 Received From : +07:27:28 ============================================================================ +07:27:28 FNo. Len. Field Value +07:27:28 ============================================================================ +07:27:28 [ 1] [ 4] [0810] +07:27:28 [ 7] [ 10] [0320143917] +07:27:28 [ 11] [ 6] [073917] +07:27:28 [ 37] [ 12] [579070739170] +07:27:28 [ 39] [ 2] [00] +07:27:28 [ 70] [ 3] [810] +07:27:28 ============================================================================ +07:27:28 Calculate Source COMM Id = 6 +07:27:28 ============================================================================ +07:27:28 + + +waiting on router queue for slot.... +07:27:30 ============================================================================ +07:27:30 Slot Id : <183> +07:27:30 Transaction Type : REQUEST +07:27:30 Received From : +07:27:30 ============================================================================ +07:27:30 FNo. Len. Field Value +07:27:30 ============================================================================ +07:27:30 [ 1] [ 4] [0800] +07:27:30 [ 7] [ 10] [0320122639] +07:27:30 [ 11] [ 6] [155164] +07:27:30 [ 70] [ 3] [301] +07:27:30 ============================================================================ +07:27:30 + + +waiting on router queue for slot.... +07:27:30 Sending to : +07:27:30 ============================================================================ +07:27:30 ============================================================================ +07:27:30 Slot Id : <183> +07:27:30 Transaction Type : RESPONSE +07:27:30 Received From : +07:27:30 ============================================================================ +07:27:30 FNo. Len. Field Value +07:27:30 ============================================================================ +07:27:30 [ 1] [ 4] [0810] +07:27:30 [ 7] [ 10] [0320122639] +07:27:30 [ 11] [ 6] [155164] +07:27:30 [ 39] [ 2] [00] +07:27:30 [ 70] [ 3] [301] +07:27:30 ============================================================================ +07:27:30 Calculate Source COMM Id = 2 +07:27:30 ============================================================================ +07:27:30 + + +waiting on router queue for slot.... +07:27:41 ============================================================================ +07:27:41 Slot Id : <207> +07:27:41 Transaction Type : REQUEST +07:27:41 Received From : +07:27:41 ============================================================================ +07:27:41 FNo. Len. Field Value +07:27:41 ============================================================================ +07:27:41 [ 1] [ 4] [0800] +07:27:41 [ 7] [ 10] [0320122649] +07:27:41 [ 11] [ 6] [155165] +07:27:41 [ 70] [ 3] [301] +07:27:41 ============================================================================ +07:27:41 + + +waiting on router queue for slot.... +07:27:41 Sending to : +07:27:41 ============================================================================ +07:27:41 ============================================================================ +07:27:41 Slot Id : <207> +07:27:41 Transaction Type : RESPONSE +07:27:41 Received From : +07:27:41 ============================================================================ +07:27:41 FNo. Len. Field Value +07:27:41 ============================================================================ +07:27:41 [ 1] [ 4] [0810] +07:27:41 [ 7] [ 10] [0320122649] +07:27:41 [ 11] [ 6] [155165] +07:27:41 [ 39] [ 2] [00] +07:27:41 [ 70] [ 3] [301] +07:27:41 ============================================================================ +07:27:41 Calculate Source COMM Id = 2 +07:27:41 ============================================================================ +07:27:41 + + +waiting on router queue for slot.... +07:27:45 ============================================================================ +07:27:45 Slot Id : <149> +07:27:45 Transaction Type : REQUEST +07:27:45 Received From : +07:27:45 ============================================================================ +07:27:45 FNo. Len. Field Value +07:27:45 ============================================================================ +07:27:45 [ 1] [ 4] [0200] +07:27:45 [ 2] [ 16] [6213545000333876] +07:27:45 [ 3] [ 6] [010000] +07:27:45 [ 4] [ 12] [000100000000] +07:27:45 [ 7] [ 10] [0320002654] +07:27:45 [ 11] [ 6] [266798] +07:27:45 [ 12] [ 6] [072654] +07:27:45 [ 13] [ 4] [0320] +07:27:45 [ 14] [ 4] [4912] +07:27:45 [ 15] [ 4] [0320] +07:27:45 [ 18] [ 4] [6011] +07:27:45 [ 19] [ 3] [418] +07:27:45 [ 22] [ 3] [021] +07:27:45 [ 25] [ 2] [01] +07:27:45 [ 28] [ 9] [D00002000] +07:27:45 [ 32] [ 6] [180893] +07:27:45 [ 35] [ 32] [6213545000333876=491212013387408] +07:27:45 [ 37] [ 12] [507900266798] +07:27:45 [ 41] [ 8] [0106NAXA] +07:27:45 [ 42] [ 15] [999999 ] +07:27:45 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +07:27:45 [ 49] [ 3] [418] +07:27:45 [ 52] [ 16] [B792D46858D91D31] +07:27:45 ============================================================================ +07:27:45 + + +waiting on router queue for slot.... +07:27:45 Sending to : +07:27:46 ============================================================================ +07:27:46 Sending to : +07:27:46 ============================================================================ +07:27:46 ============================================================================ +07:27:46 Slot Id : <149> +07:27:46 Transaction Type : REQUEST +07:27:46 Received From : +07:27:46 ============================================================================ +07:27:46 FNo. Len. Field Value +07:27:46 ============================================================================ +07:27:46 [ 1] [ 4] [0200] +07:27:46 [ 2] [ 16] [6213545000333876] +07:27:46 [ 3] [ 6] [010000] +07:27:46 [ 4] [ 12] [000100000000] +07:27:46 [ 7] [ 10] [0320002654] +07:27:46 [ 11] [ 6] [266798] +07:27:46 [ 12] [ 6] [072654] +07:27:46 [ 13] [ 4] [0320] +07:27:46 [ 14] [ 4] [4912] +07:27:46 [ 15] [ 4] [0320] +07:27:46 [ 18] [ 4] [6011] +07:27:46 [ 19] [ 3] [418] +07:27:46 [ 22] [ 3] [021] +07:27:46 [ 25] [ 2] [01] +07:27:46 [ 28] [ 9] [D00002000] +07:27:46 [ 32] [ 6] [180893] +07:27:46 [ 35] [ 32] [6213545000333876=491212013387408] +07:27:46 [ 37] [ 12] [507900266798] +07:27:46 [ 41] [ 8] [0106NAXA] +07:27:46 [ 42] [ 15] [999999 ] +07:27:46 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +07:27:46 [ 49] [ 3] [418] +07:27:46 [ 52] [ 16] [B792D46858D91D31] +07:27:46 ============================================================================ +07:27:46 + + +waiting on router queue for slot.... +07:27:46 Sending to : +07:27:46 ============================================================================ +07:27:46 ============================================================================ +07:27:46 Slot Id : <149> +07:27:46 Transaction Type : REQUEST +07:27:46 Received From : +07:27:46 ============================================================================ +07:27:46 FNo. Len. Field Value +07:27:46 ============================================================================ +07:27:46 [ 1] [ 4] [0200] +07:27:46 [ 2] [ 16] [6213545000333876] +07:27:46 [ 3] [ 6] [010000] +07:27:46 [ 4] [ 12] [000100000000] +07:27:46 [ 7] [ 10] [0320002654] +07:27:46 [ 11] [ 6] [266798] +07:27:46 [ 12] [ 6] [072654] +07:27:46 [ 13] [ 4] [0320] +07:27:46 [ 14] [ 4] [4912] +07:27:46 [ 15] [ 4] [0320] +07:27:46 [ 18] [ 4] [6011] +07:27:46 [ 19] [ 3] [418] +07:27:46 [ 22] [ 3] [021] +07:27:46 [ 25] [ 2] [01] +07:27:46 [ 28] [ 9] [D00002000] +07:27:46 [ 32] [ 6] [180893] +07:27:46 [ 35] [ 32] [6213545000333876=491212013387408] +07:27:46 [ 37] [ 12] [507900266798] +07:27:46 [ 41] [ 8] [0106NAXA] +07:27:46 [ 42] [ 15] [999999 ] +07:27:46 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +07:27:46 [ 49] [ 3] [418] +07:27:46 [ 52] [ 16] [BECA4A1ACAE4A522] +07:27:46 ============================================================================ +07:27:46 + + +waiting on router queue for slot.... +07:27:46 Sending to : <0> +07:27:46 ============================================================================ +07:27:46 ============================================================================ +07:27:46 Slot Id : <149> +07:27:46 Transaction Type : RESPONSE +07:27:46 Received From : +07:27:46 ============================================================================ +07:27:46 FNo. Len. Field Value +07:27:46 ============================================================================ +07:27:46 [ 1] [ 4] [0210] +07:27:46 [ 2] [ 16] [6213545000333876] +07:27:46 [ 3] [ 6] [010000] +07:27:46 [ 4] [ 12] [000100000000] +07:27:46 [ 7] [ 10] [0320002654] +07:27:46 [ 11] [ 6] [266798] +07:27:46 [ 12] [ 6] [072654] +07:27:46 [ 13] [ 4] [0320] +07:27:46 [ 15] [ 4] [0320] +07:27:46 [ 18] [ 4] [6011] +07:27:46 [ 19] [ 3] [418] +07:27:46 [ 32] [ 6] [180893] +07:27:46 [ 35] [ 32] [6213545000333876=491212013387408] +07:27:46 [ 37] [ 12] [507900266798] +07:27:46 [ 38] [ 6] [721435] +07:27:46 [ 39] [ 2] [00] +07:27:46 [ 41] [ 8] [0106NAXA] +07:27:46 [ 49] [ 3] [418] +07:27:46 [ 54] [ 40] [0001418C0000697923200002418C000069792320] +07:27:46 ============================================================================ +07:27:46 Sending to : +07:27:46 ============================================================================ +07:27:46 + + +waiting on router queue for slot.... +07:27:48 ============================================================================ +07:27:48 Slot Id : <149> +07:27:48 Transaction Type : RESPONSE +07:27:48 Received From : +07:27:48 ============================================================================ +07:27:48 FNo. Len. Field Value +07:27:48 ============================================================================ +07:27:48 [ 1] [ 4] [0210] +07:27:48 [ 2] [ 16] [6213545000333876] +07:27:48 [ 3] [ 6] [010000] +07:27:48 [ 4] [ 12] [000100000000] +07:27:48 [ 7] [ 10] [0320002654] +07:27:48 [ 11] [ 6] [266798] +07:27:48 [ 12] [ 6] [072654] +07:27:48 [ 13] [ 4] [0320] +07:27:48 [ 15] [ 4] [0320] +07:27:48 [ 18] [ 4] [6011] +07:27:48 [ 19] [ 3] [418] +07:27:48 [ 32] [ 6] [180893] +07:27:48 [ 35] [ 32] [6213545000333876=491212013387408] +07:27:48 [ 37] [ 12] [507900266798] +07:27:48 [ 38] [ 6] [721435] +07:27:48 [ 39] [ 2] [00] +07:27:48 [ 41] [ 8] [0106NAXA] +07:27:48 [ 49] [ 3] [418] +07:27:48 [ 54] [ 40] [0001418C0000697923200002418C000069792320] +07:27:48 ============================================================================ +07:27:48 Calculate Source COMM Id = 2 +07:27:48 ============================================================================ +07:27:48 + + +waiting on router queue for slot.... +07:28:02 ============================================================================ +07:28:02 Slot Id : <174> +07:28:02 Transaction Type : REQUEST +07:28:02 Received From : +07:28:02 ============================================================================ +07:28:02 FNo. Len. Field Value +07:28:02 ============================================================================ +07:28:02 [ 1] [ 4] [0800] +07:28:02 [ 2] [ 5] [02531] +07:28:02 [ 3] [ 6] [579078] +07:28:02 [ 7] [ 10] [0320002802] +07:28:02 [ 11] [ 6] [806845] +07:28:02 [ 15] [ 10] [0320002802] +07:28:02 [ 37] [ 11] [57907806845] +07:28:02 [ 70] [ 3] [001] +07:28:02 ============================================================================ +07:28:02 + + +waiting on router queue for slot.... +07:28:02 ============================================================================ +07:28:02 Slot Id : <174> +07:28:02 Transaction Type : RESPONSE +07:28:02 Received From : +07:28:02 ============================================================================ +07:28:02 FNo. Len. Field Value +07:28:02 ============================================================================ +07:28:02 [ 1] [ 4] [0810] +07:28:02 [ 7] [ 10] [0320002802] +07:28:02 [ 11] [ 6] [806845] +07:28:02 [ 15] [ 4] [0320] +07:28:02 [ 37] [ 12] [57907806845] +07:28:02 [ 39] [ 2] [00] +07:28:02 [ 70] [ 3] [001] +07:28:02 ============================================================================ +07:28:02 Sending to : +07:28:02 ============================================================================ +07:28:02 + + +waiting on router queue for slot.... +07:28:03 ============================================================================ +07:28:03 Slot Id : <180> +07:28:03 Transaction Type : REQUEST +07:28:03 Received From : +07:28:03 ============================================================================ +07:28:03 FNo. Len. Field Value +07:28:03 ============================================================================ +07:28:03 [ 1] [ 4] [0800] +07:28:03 [ 7] [ 10] [0320122711] +07:28:03 [ 11] [ 6] [155166] +07:28:03 [ 70] [ 3] [301] +07:28:03 ============================================================================ +07:28:03 + + +waiting on router queue for slot.... +07:28:03 Sending to : +07:28:03 ============================================================================ +07:28:03 ============================================================================ +07:28:03 Slot Id : <180> +07:28:03 Transaction Type : RESPONSE +07:28:03 Received From : +07:28:03 ============================================================================ +07:28:03 FNo. Len. Field Value +07:28:03 ============================================================================ +07:28:03 [ 1] [ 4] [0810] +07:28:03 [ 7] [ 10] [0320122711] +07:28:03 [ 11] [ 6] [155166] +07:28:03 [ 39] [ 2] [00] +07:28:03 [ 70] [ 3] [301] +07:28:03 ============================================================================ +07:28:03 Calculate Source COMM Id = 2 +07:28:03 ============================================================================ +07:28:03 + + +waiting on router queue for slot.... +07:28:13 ============================================================================ +07:28:13 Slot Id : <168> +07:28:13 Transaction Type : REQUEST +07:28:13 Received From : +07:28:13 ============================================================================ +07:28:13 FNo. Len. Field Value +07:28:13 ============================================================================ +07:28:13 [ 1] [ 4] [0800] +07:28:13 [ 7] [ 10] [0320122722] +07:28:13 [ 11] [ 6] [155167] +07:28:13 [ 70] [ 3] [301] +07:28:13 ============================================================================ +07:28:13 + + +waiting on router queue for slot.... +07:28:13 Sending to : +07:28:13 ============================================================================ +07:28:13 ============================================================================ +07:28:13 Slot Id : <168> +07:28:13 Transaction Type : RESPONSE +07:28:13 Received From : +07:28:13 ============================================================================ +07:28:13 FNo. Len. Field Value +07:28:13 ============================================================================ +07:28:13 [ 1] [ 4] [0810] +07:28:13 [ 7] [ 10] [0320122722] +07:28:13 [ 11] [ 6] [155167] +07:28:13 [ 39] [ 2] [00] +07:28:13 [ 70] [ 3] [301] +07:28:13 ============================================================================ +07:28:13 Calculate Source COMM Id = 2 +07:28:13 ============================================================================ +07:28:13 + + +waiting on router queue for slot.... +07:28:26 ============================================================================ +07:28:26 Slot Id : <189> +07:28:26 Transaction Type : REQUEST +07:28:26 Received From : +07:28:26 ============================================================================ +07:28:26 FNo. Len. Field Value +07:28:26 ============================================================================ +07:28:26 [ 1] [ 4] [0800] +07:28:26 [ 7] [ 10] [0320122732] +07:28:26 [ 11] [ 6] [155168] +07:28:26 [ 70] [ 3] [301] +07:28:26 ============================================================================ +07:28:26 + + +waiting on router queue for slot.... +07:28:26 Sending to : +07:28:26 ============================================================================ +07:28:26 ============================================================================ +07:28:26 Slot Id : <189> +07:28:26 Transaction Type : RESPONSE +07:28:26 Received From : +07:28:26 ============================================================================ +07:28:26 FNo. Len. Field Value +07:28:26 ============================================================================ +07:28:26 [ 1] [ 4] [0810] +07:28:26 [ 7] [ 10] [0320122732] +07:28:26 [ 11] [ 6] [155168] +07:28:26 [ 39] [ 2] [00] +07:28:26 [ 70] [ 3] [301] +07:28:26 ============================================================================ +07:28:26 Calculate Source COMM Id = 2 +07:28:26 ============================================================================ +07:28:26 + + +waiting on router queue for slot.... +07:28:33 ============================================================================ +07:28:33 Slot Id : <169> +07:28:33 Transaction Type : REQUEST +07:28:33 Received From : +07:28:33 ============================================================================ +07:28:33 FNo. Len. Field Value +07:28:33 ============================================================================ +07:28:33 [ 1] [ 4] [0800] +07:28:33 [ 7] [ 10] [0320144022] +07:28:33 [ 11] [ 6] [074022] +07:28:33 [ 37] [ 12] [57907074022] +07:28:33 [ 70] [ 3] [301] +07:28:33 ============================================================================ +07:28:33 + + +waiting on router queue for slot.... +07:28:33 Sending to : +07:28:33 ============================================================================ +07:28:33 ============================================================================ +07:28:33 Slot Id : <169> +07:28:33 Transaction Type : RESPONSE +07:28:33 Received From : +07:28:33 ============================================================================ +07:28:33 FNo. Len. Field Value +07:28:33 ============================================================================ +07:28:33 [ 1] [ 4] [0810] +07:28:33 [ 7] [ 10] [0320144022] +07:28:33 [ 11] [ 6] [074022] +07:28:33 [ 37] [ 12] [579070740220] +07:28:33 [ 39] [ 2] [00] +07:28:33 [ 70] [ 3] [810] +07:28:33 ============================================================================ +07:28:33 Calculate Source COMM Id = 6 +07:28:33 ============================================================================ +07:28:33 + + +waiting on router queue for slot.... +07:28:34 ============================================================================ +07:28:34 Slot Id : <222> +07:28:34 Transaction Type : REQUEST +07:28:34 Received From : +07:28:34 ============================================================================ +07:28:34 FNo. Len. Field Value +07:28:34 ============================================================================ +07:28:34 [ 1] [ 4] [0200] +07:28:34 [ 2] [ 16] [6688990103283808] +07:28:34 [ 3] [ 6] [013000] +07:28:34 [ 4] [ 12] [000100000000] +07:28:34 [ 7] [ 10] [0320072830] +07:28:34 [ 11] [ 6] [670395] +07:28:34 [ 12] [ 6] [072830] +07:28:34 [ 13] [ 4] [0320] +07:28:34 [ 15] [ 4] [0320] +07:28:34 [ 18] [ 4] [6011] +07:28:34 [ 22] [ 3] [900] +07:28:34 [ 25] [ 2] [02] +07:28:34 [ 28] [ 9] [D00002000] +07:28:34 [ 32] [ 6] [621354] +07:28:34 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:28:34 [ 37] [ 12] [507903499441] +07:28:34 [ 41] [ 8] [06002200] +07:28:34 [ 42] [ 15] [NATIVE ] +07:28:34 [ 43] [ 40] [Beng Market Beng LAO] +07:28:34 [ 49] [ 3] [418] +07:28:34 [ 52] [ 16] [9A276BA769B47746] +07:28:34 ============================================================================ +07:28:34 + + +waiting on router queue for slot.... +07:28:34 Sending to : +07:28:34 ============================================================================ +07:28:34 Sending to : +07:28:34 ============================================================================ +07:28:34 ============================================================================ +07:28:34 Slot Id : <222> +07:28:34 Transaction Type : REQUEST +07:28:34 Received From : +07:28:34 ============================================================================ +07:28:34 FNo. Len. Field Value +07:28:34 ============================================================================ +07:28:34 [ 1] [ 4] [0200] +07:28:34 [ 2] [ 16] [6688990103283808] +07:28:34 [ 3] [ 6] [013000] +07:28:34 [ 4] [ 12] [000100000000] +07:28:34 [ 7] [ 10] [0320072830] +07:28:34 [ 11] [ 6] [670395] +07:28:34 [ 12] [ 6] [072830] +07:28:34 [ 13] [ 4] [0320] +07:28:34 [ 15] [ 4] [0320] +07:28:34 [ 18] [ 4] [6011] +07:28:34 [ 22] [ 3] [900] +07:28:34 [ 25] [ 2] [02] +07:28:34 [ 28] [ 9] [D00002000] +07:28:34 [ 32] [ 6] [621354] +07:28:34 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:28:34 [ 37] [ 12] [507903499441] +07:28:34 [ 41] [ 8] [06002200] +07:28:34 [ 42] [ 15] [NATIVE ] +07:28:34 [ 43] [ 40] [Beng Market Beng LAO] +07:28:34 [ 49] [ 3] [418] +07:28:34 [ 52] [ 16] [9A276BA769B47746] +07:28:34 ============================================================================ +07:28:34 + + +waiting on router queue for slot.... +07:28:34 Sending to : +07:28:34 ============================================================================ +07:28:34 ============================================================================ +07:28:34 Slot Id : <222> +07:28:34 Transaction Type : REQUEST +07:28:34 Received From : +07:28:34 ============================================================================ +07:28:34 FNo. Len. Field Value +07:28:34 ============================================================================ +07:28:34 [ 1] [ 4] [0200] +07:28:34 [ 2] [ 16] [6688990103283808] +07:28:34 [ 3] [ 6] [013000] +07:28:34 [ 4] [ 12] [000100000000] +07:28:34 [ 7] [ 10] [0320072830] +07:28:34 [ 11] [ 6] [670395] +07:28:34 [ 12] [ 6] [072830] +07:28:34 [ 13] [ 4] [0320] +07:28:34 [ 15] [ 4] [0320] +07:28:34 [ 18] [ 4] [6011] +07:28:34 [ 22] [ 3] [900] +07:28:34 [ 25] [ 2] [02] +07:28:34 [ 28] [ 9] [D00002000] +07:28:34 [ 32] [ 6] [621354] +07:28:34 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:28:34 [ 37] [ 12] [507903499441] +07:28:34 [ 41] [ 8] [06002200] +07:28:34 [ 42] [ 15] [NATIVE ] +07:28:34 [ 43] [ 40] [Beng Market Beng LAO] +07:28:34 [ 49] [ 3] [418] +07:28:34 [ 52] [ 16] [86FF75AE9775DC51] +07:28:34 ============================================================================ +07:28:34 + + +waiting on router queue for slot.... +07:28:34 Sending to : <4> +07:28:34 ============================================================================ +07:28:35 ============================================================================ +07:28:35 Slot Id : <222> +07:28:35 Transaction Type : RESPONSE +07:28:35 Received From : +07:28:35 ============================================================================ +07:28:35 FNo. Len. Field Value +07:28:35 ============================================================================ +07:28:35 [ 1] [ 4] [0210] +07:28:35 [ 2] [ 16] [6688990103283808] +07:28:35 [ 3] [ 6] [013000] +07:28:35 [ 4] [ 12] [000100000000] +07:28:35 [ 11] [ 6] [670395] +07:28:35 [ 12] [ 6] [072830] +07:28:35 [ 15] [ 4] [0320] +07:28:35 [ 18] [ 4] [6011] +07:28:35 [ 32] [ 6] [621354] +07:28:35 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:28:35 [ 37] [ 12] [507903499441] +07:28:35 [ 38] [ 6] [086816] +07:28:35 [ 39] [ 2] [00] +07:28:35 [ 41] [ 8] [06002200] +07:28:35 [ 49] [ 3] [418] +07:28:35 [ 54] [ 20] [3002418C000057333955] +07:28:35 ============================================================================ +07:28:35 Sending to : +07:28:35 ============================================================================ +07:28:35 + + +waiting on router queue for slot.... +07:28:37 ============================================================================ +07:28:37 Slot Id : <222> +07:28:37 Transaction Type : RESPONSE +07:28:37 Received From : +07:28:37 ============================================================================ +07:28:37 FNo. Len. Field Value +07:28:37 ============================================================================ +07:28:37 [ 1] [ 4] [0210] +07:28:37 [ 2] [ 16] [6688990103283808] +07:28:37 [ 3] [ 6] [013000] +07:28:37 [ 4] [ 12] [000100000000] +07:28:37 [ 11] [ 6] [670395] +07:28:37 [ 12] [ 6] [072830] +07:28:37 [ 15] [ 4] [0320] +07:28:37 [ 18] [ 4] [6011] +07:28:37 [ 32] [ 6] [621354] +07:28:37 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:28:37 [ 37] [ 12] [507903499441] +07:28:37 [ 38] [ 6] [086816] +07:28:37 [ 39] [ 2] [00] +07:28:37 [ 41] [ 8] [06002200] +07:28:37 [ 49] [ 3] [418] +07:28:37 [ 54] [ 20] [3002418C000057333955] +07:28:37 ============================================================================ +07:28:37 Calculate Source COMM Id = 0 +07:28:37 ============================================================================ +07:28:37 + + +waiting on router queue for slot.... +07:28:39 ============================================================================ +07:28:39 Slot Id : <225> +07:28:39 Transaction Type : REQUEST +07:28:39 Received From : +07:28:39 ============================================================================ +07:28:39 FNo. Len. Field Value +07:28:39 ============================================================================ +07:28:39 [ 1] [ 4] [0800] +07:28:39 [ 7] [ 10] [0320072827] +07:28:39 [ 11] [ 6] [099899] +07:28:39 [ 37] [ 12] [507907099899] +07:28:39 [ 70] [ 3] [ ] +07:28:39 ============================================================================ +07:28:39 + + +waiting on router queue for slot.... +07:28:39 Sending to : +07:28:39 ============================================================================ +07:28:39 ============================================================================ +07:28:39 Slot Id : <225> +07:28:39 Transaction Type : RESPONSE +07:28:39 Received From : +07:28:39 ============================================================================ +07:28:39 FNo. Len. Field Value +07:28:39 ============================================================================ +07:28:39 [ 1] [ 4] [0810] +07:28:39 [ 7] [ 10] [0320072827] +07:28:39 [ 11] [ 6] [099899] +07:28:39 [ 37] [ 12] [507907099899] +07:28:39 [ 39] [ 2] [91] +07:28:39 [ 70] [ 3] [ ] +07:28:39 ============================================================================ +07:28:39 Calculate Source COMM Id = 3 +07:28:39 ============================================================================ +07:28:39 + + +waiting on router queue for slot.... +07:28:40 ============================================================================ +07:28:40 Slot Id : <205> +07:28:40 Transaction Type : REQUEST +07:28:40 Received From : +07:28:40 ============================================================================ +07:28:40 FNo. Len. Field Value +07:28:40 ============================================================================ +07:28:40 [ 1] [ 4] [0800] +07:28:40 [ 7] [ 10] [0320122748] +07:28:40 [ 11] [ 6] [155169] +07:28:40 [ 70] [ 3] [301] +07:28:40 ============================================================================ +07:28:40 + + +waiting on router queue for slot.... +07:28:40 Sending to : +07:28:40 ============================================================================ +07:28:40 ============================================================================ +07:28:40 Slot Id : <205> +07:28:40 Transaction Type : RESPONSE +07:28:40 Received From : +07:28:40 ============================================================================ +07:28:40 FNo. Len. Field Value +07:28:40 ============================================================================ +07:28:40 [ 1] [ 4] [0810] +07:28:40 [ 7] [ 10] [0320122748] +07:28:40 [ 11] [ 6] [155169] +07:28:40 [ 39] [ 2] [00] +07:28:40 [ 70] [ 3] [301] +07:28:40 ============================================================================ +07:28:40 Calculate Source COMM Id = 2 +07:28:40 ============================================================================ +07:28:40 + + +waiting on router queue for slot.... +07:28:55 ============================================================================ +07:28:55 Slot Id : <232> +07:28:55 Transaction Type : REQUEST +07:28:55 Received From : +07:28:55 ============================================================================ +07:28:55 FNo. Len. Field Value +07:28:55 ============================================================================ +07:28:55 [ 1] [ 4] [0800] +07:28:55 [ 7] [ 10] [0320122803] +07:28:55 [ 11] [ 6] [155170] +07:28:55 [ 70] [ 3] [301] +07:28:55 ============================================================================ +07:28:55 + + +waiting on router queue for slot.... +07:28:55 Sending to : +07:28:55 ============================================================================ +07:28:55 ============================================================================ +07:28:55 Slot Id : <232> +07:28:55 Transaction Type : RESPONSE +07:28:55 Received From : +07:28:55 ============================================================================ +07:28:55 FNo. Len. Field Value +07:28:55 ============================================================================ +07:28:55 [ 1] [ 4] [0810] +07:28:55 [ 7] [ 10] [0320122803] +07:28:55 [ 11] [ 6] [155170] +07:28:55 [ 39] [ 2] [00] +07:28:55 [ 70] [ 3] [301] +07:28:55 ============================================================================ +07:28:55 Calculate Source COMM Id = 2 +07:28:55 ============================================================================ +07:28:55 + + +waiting on router queue for slot.... +07:29:04 ============================================================================ +07:29:04 Slot Id : <230> +07:29:04 Transaction Type : REQUEST +07:29:04 Received From : +07:29:04 ============================================================================ +07:29:04 FNo. Len. Field Value +07:29:04 ============================================================================ +07:29:04 [ 1] [ 4] [0800] +07:29:04 [ 2] [ 5] [02531] +07:29:04 [ 3] [ 6] [579078] +07:29:04 [ 7] [ 10] [0320002904] +07:29:04 [ 11] [ 6] [806846] +07:29:04 [ 15] [ 10] [0320002904] +07:29:04 [ 37] [ 11] [57907806846] +07:29:04 [ 70] [ 3] [001] +07:29:04 ============================================================================ +07:29:04 + + +waiting on router queue for slot.... +07:29:04 ============================================================================ +07:29:04 Slot Id : <230> +07:29:04 Transaction Type : RESPONSE +07:29:04 Received From : +07:29:04 ============================================================================ +07:29:04 FNo. Len. Field Value +07:29:04 ============================================================================ +07:29:04 [ 1] [ 4] [0810] +07:29:04 [ 7] [ 10] [0320002904] +07:29:04 [ 11] [ 6] [806846] +07:29:04 [ 15] [ 4] [0320] +07:29:04 [ 37] [ 12] [57907806846] +07:29:04 [ 39] [ 2] [00] +07:29:04 [ 70] [ 3] [001] +07:29:04 ============================================================================ +07:29:04 Sending to : +07:29:04 ============================================================================ +07:29:04 + + +waiting on router queue for slot.... +07:29:06 ============================================================================ +07:29:06 Slot Id : <188> +07:29:06 Transaction Type : REQUEST +07:29:06 Received From : +07:29:06 ============================================================================ +07:29:06 FNo. Len. Field Value +07:29:06 ============================================================================ +07:29:06 [ 1] [ 4] [0800] +07:29:06 [ 7] [ 10] [0320122814] +07:29:06 [ 11] [ 6] [155171] +07:29:06 [ 70] [ 3] [301] +07:29:06 ============================================================================ +07:29:06 + + +waiting on router queue for slot.... +07:29:06 Sending to : +07:29:06 ============================================================================ +07:29:06 ============================================================================ +07:29:06 Slot Id : <188> +07:29:06 Transaction Type : RESPONSE +07:29:06 Received From : +07:29:06 ============================================================================ +07:29:06 FNo. Len. Field Value +07:29:06 ============================================================================ +07:29:06 [ 1] [ 4] [0810] +07:29:06 [ 7] [ 10] [0320122814] +07:29:06 [ 11] [ 6] [155171] +07:29:06 [ 39] [ 2] [00] +07:29:06 [ 70] [ 3] [301] +07:29:06 ============================================================================ +07:29:06 Calculate Source COMM Id = 2 +07:29:06 ============================================================================ +07:29:06 + + +waiting on router queue for slot.... +07:29:16 ============================================================================ +07:29:16 Slot Id : <173> +07:29:16 Transaction Type : REQUEST +07:29:16 Received From : +07:29:16 ============================================================================ +07:29:16 FNo. Len. Field Value +07:29:16 ============================================================================ +07:29:16 [ 1] [ 4] [0800] +07:29:16 [ 7] [ 10] [0320122825] +07:29:16 [ 11] [ 6] [155172] +07:29:16 [ 70] [ 3] [301] +07:29:16 ============================================================================ +07:29:16 + + +waiting on router queue for slot.... +07:29:16 Sending to : +07:29:16 ============================================================================ +07:29:16 ============================================================================ +07:29:16 Slot Id : <173> +07:29:16 Transaction Type : RESPONSE +07:29:16 Received From : +07:29:16 ============================================================================ +07:29:16 FNo. Len. Field Value +07:29:16 ============================================================================ +07:29:16 [ 1] [ 4] [0810] +07:29:16 [ 7] [ 10] [0320122825] +07:29:16 [ 11] [ 6] [155172] +07:29:16 [ 39] [ 2] [00] +07:29:16 [ 70] [ 3] [301] +07:29:16 ============================================================================ +07:29:16 Calculate Source COMM Id = 2 +07:29:16 ============================================================================ +07:29:16 + + +waiting on router queue for slot.... +07:29:27 ============================================================================ +07:29:27 Slot Id : <229> +07:29:27 Transaction Type : REQUEST +07:29:27 Received From : +07:29:27 ============================================================================ +07:29:27 FNo. Len. Field Value +07:29:27 ============================================================================ +07:29:27 [ 1] [ 4] [0800] +07:29:27 [ 7] [ 10] [0320122836] +07:29:27 [ 11] [ 6] [155173] +07:29:27 [ 70] [ 3] [301] +07:29:27 ============================================================================ +07:29:27 + + +waiting on router queue for slot.... +07:29:27 Sending to : +07:29:27 ============================================================================ +07:29:27 ============================================================================ +07:29:27 Slot Id : <229> +07:29:27 Transaction Type : RESPONSE +07:29:27 Received From : +07:29:27 ============================================================================ +07:29:27 FNo. Len. Field Value +07:29:27 ============================================================================ +07:29:27 [ 1] [ 4] [0810] +07:29:27 [ 7] [ 10] [0320122836] +07:29:27 [ 11] [ 6] [155173] +07:29:27 [ 39] [ 2] [00] +07:29:27 [ 70] [ 3] [301] +07:29:27 ============================================================================ +07:29:27 Calculate Source COMM Id = 2 +07:29:27 ============================================================================ +07:29:27 + + +waiting on router queue for slot.... +07:29:38 ============================================================================ +07:29:38 Slot Id : <223> +07:29:38 Transaction Type : REQUEST +07:29:38 Received From : +07:29:38 ============================================================================ +07:29:38 FNo. Len. Field Value +07:29:38 ============================================================================ +07:29:38 [ 1] [ 4] [0800] +07:29:38 [ 7] [ 10] [0320144127] +07:29:38 [ 11] [ 6] [074127] +07:29:38 [ 37] [ 12] [57907074127] +07:29:38 [ 70] [ 3] [301] +07:29:38 ============================================================================ +07:29:38 + + +waiting on router queue for slot.... +07:29:38 Sending to : +07:29:38 ============================================================================ +07:29:38 ============================================================================ +07:29:38 Slot Id : <223> +07:29:38 Transaction Type : RESPONSE +07:29:38 Received From : +07:29:38 ============================================================================ +07:29:38 FNo. Len. Field Value +07:29:38 ============================================================================ +07:29:38 [ 1] [ 4] [0810] +07:29:38 [ 7] [ 10] [0320144127] +07:29:38 [ 11] [ 6] [074127] +07:29:38 [ 37] [ 12] [579070741270] +07:29:38 [ 39] [ 2] [00] +07:29:38 [ 70] [ 3] [810] +07:29:38 ============================================================================ +07:29:38 Calculate Source COMM Id = 6 +07:29:38 ============================================================================ +07:29:38 + + +waiting on router queue for slot.... +07:29:38 ============================================================================ +07:29:38 Slot Id : <177> +07:29:38 Transaction Type : REQUEST +07:29:38 Received From : +07:29:38 ============================================================================ +07:29:38 FNo. Len. Field Value +07:29:38 ============================================================================ +07:29:38 [ 1] [ 4] [0800] +07:29:38 [ 7] [ 10] [0320122847] +07:29:38 [ 11] [ 6] [155174] +07:29:38 [ 70] [ 3] [301] +07:29:38 ============================================================================ +07:29:38 + + +waiting on router queue for slot.... +07:29:38 Sending to : +07:29:38 ============================================================================ +07:29:38 ============================================================================ +07:29:38 Slot Id : <177> +07:29:38 Transaction Type : RESPONSE +07:29:38 Received From : +07:29:38 ============================================================================ +07:29:38 FNo. Len. Field Value +07:29:38 ============================================================================ +07:29:38 [ 1] [ 4] [0810] +07:29:38 [ 7] [ 10] [0320122847] +07:29:38 [ 11] [ 6] [155174] +07:29:38 [ 39] [ 2] [00] +07:29:38 [ 70] [ 3] [301] +07:29:38 ============================================================================ +07:29:38 Calculate Source COMM Id = 2 +07:29:38 ============================================================================ +07:29:38 + + +waiting on router queue for slot.... +07:29:40 ============================================================================ +07:29:40 Slot Id : <215> +07:29:40 Transaction Type : REQUEST +07:29:40 Received From : +07:29:40 ============================================================================ +07:29:40 FNo. Len. Field Value +07:29:40 ============================================================================ +07:29:40 [ 1] [ 4] [0200] +07:29:40 [ 2] [ 16] [6213541000116643] +07:29:40 [ 3] [ 6] [302000] +07:29:40 [ 7] [ 10] [0320002848] +07:29:40 [ 11] [ 6] [266802] +07:29:40 [ 12] [ 6] [072848] +07:29:40 [ 13] [ 4] [0320] +07:29:40 [ 14] [ 4] [4912] +07:29:40 [ 15] [ 4] [0320] +07:29:40 [ 18] [ 4] [6011] +07:29:40 [ 19] [ 3] [418] +07:29:40 [ 22] [ 3] [021] +07:29:40 [ 25] [ 2] [01] +07:29:40 [ 32] [ 6] [180893] +07:29:40 [ 35] [ 32] [6213541000116643=491212011664844] +07:29:40 [ 37] [ 12] [507900266802] +07:29:40 [ 41] [ 8] [0401XSBR] +07:29:40 [ 42] [ 15] [999999 ] +07:29:40 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +07:29:40 [ 49] [ 3] [418] +07:29:40 [ 52] [ 16] [BD667F6F99CF0300] +07:29:40 ============================================================================ +07:29:40 + + +waiting on router queue for slot.... +07:29:40 Sending to : +07:29:40 ============================================================================ +07:29:40 Sending to : +07:29:40 ============================================================================ +07:29:41 ============================================================================ +07:29:41 Slot Id : <215> +07:29:41 Transaction Type : REQUEST +07:29:41 Received From : +07:29:41 ============================================================================ +07:29:41 FNo. Len. Field Value +07:29:41 ============================================================================ +07:29:41 [ 1] [ 4] [0200] +07:29:41 [ 2] [ 16] [6213541000116643] +07:29:41 [ 3] [ 6] [302000] +07:29:41 [ 7] [ 10] [0320002848] +07:29:41 [ 11] [ 6] [266802] +07:29:41 [ 12] [ 6] [072848] +07:29:41 [ 13] [ 4] [0320] +07:29:41 [ 14] [ 4] [4912] +07:29:41 [ 15] [ 4] [0320] +07:29:41 [ 18] [ 4] [6011] +07:29:41 [ 19] [ 3] [418] +07:29:41 [ 22] [ 3] [021] +07:29:41 [ 25] [ 2] [01] +07:29:41 [ 32] [ 6] [180893] +07:29:41 [ 35] [ 32] [6213541000116643=491212011664844] +07:29:41 [ 37] [ 12] [507900266802] +07:29:41 [ 41] [ 8] [0401XSBR] +07:29:41 [ 42] [ 15] [999999 ] +07:29:41 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +07:29:41 [ 49] [ 3] [418] +07:29:41 [ 52] [ 16] [BD667F6F99CF0300] +07:29:41 ============================================================================ +07:29:41 + + +waiting on router queue for slot.... +07:29:41 Sending to : +07:29:41 ============================================================================ +07:29:41 ============================================================================ +07:29:41 Slot Id : <215> +07:29:41 Transaction Type : REQUEST +07:29:41 Received From : +07:29:41 ============================================================================ +07:29:41 FNo. Len. Field Value +07:29:41 ============================================================================ +07:29:41 [ 1] [ 4] [0200] +07:29:41 [ 2] [ 16] [6213541000116643] +07:29:41 [ 3] [ 6] [302000] +07:29:41 [ 7] [ 10] [0320002848] +07:29:41 [ 11] [ 6] [266802] +07:29:41 [ 12] [ 6] [072848] +07:29:41 [ 13] [ 4] [0320] +07:29:41 [ 14] [ 4] [4912] +07:29:41 [ 15] [ 4] [0320] +07:29:41 [ 18] [ 4] [6011] +07:29:41 [ 19] [ 3] [418] +07:29:41 [ 22] [ 3] [021] +07:29:41 [ 25] [ 2] [01] +07:29:41 [ 32] [ 6] [180893] +07:29:41 [ 35] [ 32] [6213541000116643=491212011664844] +07:29:41 [ 37] [ 12] [507900266802] +07:29:41 [ 41] [ 8] [0401XSBR] +07:29:41 [ 42] [ 15] [999999 ] +07:29:41 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +07:29:41 [ 49] [ 3] [418] +07:29:41 [ 52] [ 16] [3CACF5A62CD816BE] +07:29:41 ============================================================================ +07:29:41 + + +waiting on router queue for slot.... +07:29:41 Sending to : <0> +07:29:41 ============================================================================ +07:29:41 ============================================================================ +07:29:41 Slot Id : <215> +07:29:41 Transaction Type : RESPONSE +07:29:41 Received From : +07:29:41 ============================================================================ +07:29:41 FNo. Len. Field Value +07:29:41 ============================================================================ +07:29:41 [ 1] [ 4] [0210] +07:29:41 [ 2] [ 16] [6213541000116643] +07:29:41 [ 3] [ 6] [302000] +07:29:41 [ 4] [ 12] [000000000000] +07:29:41 [ 7] [ 10] [0320002848] +07:29:41 [ 11] [ 6] [266802] +07:29:41 [ 12] [ 6] [072848] +07:29:41 [ 13] [ 4] [0320] +07:29:41 [ 15] [ 4] [0320] +07:29:41 [ 18] [ 4] [6011] +07:29:41 [ 19] [ 3] [418] +07:29:41 [ 32] [ 6] [180893] +07:29:41 [ 35] [ 32] [6213541000116643=491212011664844] +07:29:41 [ 37] [ 12] [507900266802] +07:29:41 [ 38] [ 6] [633898] +07:29:41 [ 39] [ 2] [00] +07:29:41 [ 41] [ 8] [0401XSBR] +07:29:41 [ 49] [ 3] [418] +07:29:41 [ 54] [ 40] [2001418C0000105827262002418C000010582726] +07:29:41 ============================================================================ +07:29:41 Sending to : +07:29:41 ============================================================================ +07:29:41 + + +waiting on router queue for slot.... +07:29:43 ============================================================================ +07:29:43 Slot Id : <215> +07:29:43 Transaction Type : RESPONSE +07:29:43 Received From : +07:29:43 ============================================================================ +07:29:43 FNo. Len. Field Value +07:29:43 ============================================================================ +07:29:43 [ 1] [ 4] [0210] +07:29:43 [ 2] [ 16] [6213541000116643] +07:29:43 [ 3] [ 6] [302000] +07:29:43 [ 4] [ 12] [000000000000] +07:29:43 [ 7] [ 10] [0320002848] +07:29:43 [ 11] [ 6] [266802] +07:29:43 [ 12] [ 6] [072848] +07:29:43 [ 13] [ 4] [0320] +07:29:43 [ 15] [ 4] [0320] +07:29:43 [ 18] [ 4] [6011] +07:29:43 [ 19] [ 3] [418] +07:29:43 [ 32] [ 6] [180893] +07:29:43 [ 35] [ 32] [6213541000116643=491212011664844] +07:29:43 [ 37] [ 12] [507900266802] +07:29:43 [ 38] [ 6] [633898] +07:29:43 [ 39] [ 2] [00] +07:29:43 [ 41] [ 8] [0401XSBR] +07:29:43 [ 49] [ 3] [418] +07:29:43 [ 54] [ 40] [2001418C0000105827262002418C000010582726] +07:29:43 ============================================================================ +07:29:43 Calculate Source COMM Id = 2 +07:29:43 ============================================================================ +07:29:43 + + +waiting on router queue for slot.... +07:29:49 ============================================================================ +07:29:49 Slot Id : <243> +07:29:49 Transaction Type : REQUEST +07:29:49 Received From : +07:29:49 ============================================================================ +07:29:49 FNo. Len. Field Value +07:29:49 ============================================================================ +07:29:49 [ 1] [ 4] [0200] +07:29:49 [ 2] [ 16] [6213548000288140] +07:29:49 [ 3] [ 6] [010000] +07:29:49 [ 4] [ 12] [000006000000] +07:29:49 [ 7] [ 10] [0320072741] +07:29:49 [ 11] [ 6] [930343] +07:29:49 [ 12] [ 6] [072741] +07:29:49 [ 13] [ 4] [0320] +07:29:49 [ 15] [ 4] [0320] +07:29:49 [ 18] [ 4] [6011] +07:29:49 [ 19] [ 3] [418] +07:29:49 [ 22] [ 3] [021] +07:29:49 [ 25] [ 2] [01] +07:29:49 [ 28] [ 9] [D00002000] +07:29:49 [ 32] [ 6] [668899] +07:29:49 [ 35] [ 32] [6213548000288140=180312018814983] +07:29:49 [ 37] [ 12] [507900684250] +07:29:49 [ 41] [ 8] [03002001] +07:29:49 [ 42] [ 15] [APT ] +07:29:49 [ 43] [ 40] [ PHONGSALY BRANCH PHONGSAL] +07:29:49 [ 49] [ 3] [418] +07:29:49 [ 52] [ 16] [0F148E24980492A3] +07:29:49 ============================================================================ +07:29:49 + + +waiting on router queue for slot.... +07:29:49 Sending to : +07:29:49 ============================================================================ +07:29:49 Sending to : +07:29:49 ============================================================================ +07:29:50 ============================================================================ +07:29:50 Slot Id : <243> +07:29:50 Transaction Type : REQUEST +07:29:50 Received From : +07:29:50 ============================================================================ +07:29:50 FNo. Len. Field Value +07:29:50 ============================================================================ +07:29:50 [ 1] [ 4] [0200] +07:29:50 [ 2] [ 16] [6213548000288140] +07:29:50 [ 3] [ 6] [010000] +07:29:50 [ 4] [ 12] [000006000000] +07:29:50 [ 7] [ 10] [0320072741] +07:29:50 [ 11] [ 6] [930343] +07:29:50 [ 12] [ 6] [072741] +07:29:50 [ 13] [ 4] [0320] +07:29:50 [ 15] [ 4] [0320] +07:29:50 [ 18] [ 4] [6011] +07:29:50 [ 19] [ 3] [418] +07:29:50 [ 22] [ 3] [021] +07:29:50 [ 25] [ 2] [01] +07:29:50 [ 28] [ 9] [D00002000] +07:29:50 [ 32] [ 6] [668899] +07:29:50 [ 35] [ 32] [6213548000288140=180312018814983] +07:29:50 [ 37] [ 12] [507900684250] +07:29:50 [ 41] [ 8] [03002001] +07:29:50 [ 42] [ 15] [APT ] +07:29:50 [ 43] [ 40] [ PHONGSALY BRANCH PHONGSAL] +07:29:50 [ 49] [ 3] [418] +07:29:50 [ 52] [ 16] [0F148E24980492A3] +07:29:50 ============================================================================ +07:29:50 + + +waiting on router queue for slot.... +07:29:50 Sending to : +07:29:50 ============================================================================ +07:29:50 ============================================================================ +07:29:50 Slot Id : <243> +07:29:50 Transaction Type : REQUEST +07:29:50 Received From : +07:29:50 ============================================================================ +07:29:50 FNo. Len. Field Value +07:29:50 ============================================================================ +07:29:50 [ 1] [ 4] [0200] +07:29:50 [ 2] [ 16] [6213548000288140] +07:29:50 [ 3] [ 6] [010000] +07:29:50 [ 4] [ 12] [000006000000] +07:29:50 [ 7] [ 10] [0320072741] +07:29:50 [ 11] [ 6] [930343] +07:29:50 [ 12] [ 6] [072741] +07:29:50 [ 13] [ 4] [0320] +07:29:50 [ 15] [ 4] [0320] +07:29:50 [ 18] [ 4] [6011] +07:29:50 [ 19] [ 3] [418] +07:29:50 [ 22] [ 3] [021] +07:29:50 [ 25] [ 2] [01] +07:29:50 [ 28] [ 9] [D00002000] +07:29:50 [ 32] [ 6] [668899] +07:29:50 [ 35] [ 32] [6213548000288140=180312018814983] +07:29:50 [ 37] [ 12] [507900684250] +07:29:50 [ 41] [ 8] [03002001] +07:29:50 [ 42] [ 15] [APT ] +07:29:50 [ 43] [ 40] [ PHONGSALY BRANCH PHONGSAL] +07:29:50 [ 49] [ 3] [418] +07:29:50 [ 52] [ 16] [D18609C29EBB0667] +07:29:50 ============================================================================ +07:29:50 + + +waiting on router queue for slot.... +07:29:50 Sending to : <0> +07:29:50 ============================================================================ +07:29:51 ============================================================================ +07:29:51 Slot Id : <243> +07:29:51 Transaction Type : RESPONSE +07:29:51 Received From : +07:29:51 ============================================================================ +07:29:51 FNo. Len. Field Value +07:29:51 ============================================================================ +07:29:51 [ 1] [ 4] [0210] +07:29:51 [ 2] [ 16] [6213548000288140] +07:29:51 [ 3] [ 6] [010000] +07:29:51 [ 4] [ 12] [000006000000] +07:29:51 [ 7] [ 10] [0320072741] +07:29:51 [ 11] [ 6] [930343] +07:29:51 [ 12] [ 6] [072741] +07:29:51 [ 13] [ 4] [0320] +07:29:51 [ 15] [ 4] [0320] +07:29:51 [ 18] [ 4] [6011] +07:29:51 [ 19] [ 3] [418] +07:29:51 [ 32] [ 6] [668899] +07:29:51 [ 35] [ 32] [6213548000288140=180312018814983] +07:29:51 [ 37] [ 12] [507900684250] +07:29:51 [ 38] [ 6] [683384] +07:29:51 [ 39] [ 2] [00] +07:29:51 [ 41] [ 8] [03002001] +07:29:51 [ 49] [ 3] [418] +07:29:51 [ 54] [ 40] [0001418C0000392991380002418C000039299138] +07:29:51 ============================================================================ +07:29:51 Sending to : +07:29:51 ============================================================================ +07:29:51 + + +waiting on router queue for slot.... +07:29:52 ============================================================================ +07:29:52 Slot Id : <243> +07:29:52 Transaction Type : RESPONSE +07:29:52 Received From : +07:29:52 ============================================================================ +07:29:52 FNo. Len. Field Value +07:29:52 ============================================================================ +07:29:52 [ 1] [ 4] [0210] +07:29:52 [ 2] [ 16] [6213548000288140] +07:29:52 [ 3] [ 6] [010000] +07:29:52 [ 4] [ 12] [000006000000] +07:29:52 [ 7] [ 10] [0320072741] +07:29:52 [ 11] [ 6] [930343] +07:29:52 [ 12] [ 6] [072741] +07:29:52 [ 13] [ 4] [0320] +07:29:52 [ 15] [ 4] [0320] +07:29:52 [ 18] [ 4] [6011] +07:29:52 [ 19] [ 3] [418] +07:29:52 [ 32] [ 6] [668899] +07:29:52 [ 35] [ 32] [6213548000288140=180312018814983] +07:29:52 [ 37] [ 12] [507900684250] +07:29:52 [ 38] [ 6] [683384] +07:29:52 [ 39] [ 2] [00] +07:29:52 [ 41] [ 8] [03002001] +07:29:52 [ 49] [ 3] [418] +07:29:52 [ 54] [ 40] [0001418C0000392991380002418C000039299138] +07:29:52 ============================================================================ +07:29:52 Calculate Source COMM Id = 4 +07:29:52 ============================================================================ +07:29:52 + + +waiting on router queue for slot.... +07:29:54 ============================================================================ +07:29:54 Slot Id : <235> +07:29:54 Transaction Type : REQUEST +07:29:54 Received From : +07:29:54 ============================================================================ +07:29:54 FNo. Len. Field Value +07:29:54 ============================================================================ +07:29:54 [ 1] [ 4] [0200] +07:29:54 [ 2] [ 16] [6688990106048901] +07:29:54 [ 3] [ 6] [010000] +07:29:54 [ 4] [ 12] [000005000000] +07:29:54 [ 7] [ 10] [0320072951] +07:29:54 [ 11] [ 6] [670594] +07:29:54 [ 12] [ 6] [072951] +07:29:54 [ 13] [ 4] [0320] +07:29:54 [ 15] [ 4] [0320] +07:29:54 [ 18] [ 4] [6011] +07:29:54 [ 22] [ 3] [900] +07:29:54 [ 25] [ 2] [02] +07:29:54 [ 28] [ 9] [D00002000] +07:29:54 [ 32] [ 6] [621354] +07:29:54 [ 35] [ 37] [6688990106048901=43111231890159000000] +07:29:54 [ 37] [ 12] [507903499443] +07:29:54 [ 41] [ 8] [06002200] +07:29:54 [ 42] [ 15] [NATIVE ] +07:29:54 [ 43] [ 40] [Beng Market Beng LAO] +07:29:54 [ 49] [ 3] [418] +07:29:54 [ 52] [ 16] [A55C084030871766] +07:29:54 ============================================================================ +07:29:54 + + +waiting on router queue for slot.... +07:29:54 Sending to : +07:29:54 ============================================================================ +07:29:54 Sending to : +07:29:54 ============================================================================ +07:29:54 ============================================================================ +07:29:54 Slot Id : <235> +07:29:54 Transaction Type : REQUEST +07:29:54 Received From : +07:29:54 ============================================================================ +07:29:54 FNo. Len. Field Value +07:29:54 ============================================================================ +07:29:54 [ 1] [ 4] [0200] +07:29:54 [ 2] [ 16] [6688990106048901] +07:29:54 [ 3] [ 6] [010000] +07:29:54 [ 4] [ 12] [000005000000] +07:29:54 [ 7] [ 10] [0320072951] +07:29:54 [ 11] [ 6] [670594] +07:29:54 [ 12] [ 6] [072951] +07:29:54 [ 13] [ 4] [0320] +07:29:54 [ 15] [ 4] [0320] +07:29:54 [ 18] [ 4] [6011] +07:29:54 [ 22] [ 3] [900] +07:29:54 [ 25] [ 2] [02] +07:29:54 [ 28] [ 9] [D00002000] +07:29:54 [ 32] [ 6] [621354] +07:29:54 [ 35] [ 37] [6688990106048901=43111231890159000000] +07:29:54 [ 37] [ 12] [507903499443] +07:29:54 [ 41] [ 8] [06002200] +07:29:54 [ 42] [ 15] [NATIVE ] +07:29:54 [ 43] [ 40] [Beng Market Beng LAO] +07:29:54 [ 49] [ 3] [418] +07:29:54 [ 52] [ 16] [A55C084030871766] +07:29:54 ============================================================================ +07:29:54 + + +waiting on router queue for slot.... +07:29:54 Sending to : +07:29:54 ============================================================================ +07:29:55 ============================================================================ +07:29:55 Slot Id : <235> +07:29:55 Transaction Type : REQUEST +07:29:55 Received From : +07:29:55 ============================================================================ +07:29:55 FNo. Len. Field Value +07:29:55 ============================================================================ +07:29:55 [ 1] [ 4] [0200] +07:29:55 [ 2] [ 16] [6688990106048901] +07:29:55 [ 3] [ 6] [010000] +07:29:55 [ 4] [ 12] [000005000000] +07:29:55 [ 7] [ 10] [0320072951] +07:29:55 [ 11] [ 6] [670594] +07:29:55 [ 12] [ 6] [072951] +07:29:55 [ 13] [ 4] [0320] +07:29:55 [ 15] [ 4] [0320] +07:29:55 [ 18] [ 4] [6011] +07:29:55 [ 22] [ 3] [900] +07:29:55 [ 25] [ 2] [02] +07:29:55 [ 28] [ 9] [D00002000] +07:29:55 [ 32] [ 6] [621354] +07:29:55 [ 35] [ 37] [6688990106048901=43111231890159000000] +07:29:55 [ 37] [ 12] [507903499443] +07:29:55 [ 41] [ 8] [06002200] +07:29:55 [ 42] [ 15] [NATIVE ] +07:29:55 [ 43] [ 40] [Beng Market Beng LAO] +07:29:55 [ 49] [ 3] [418] +07:29:55 [ 52] [ 16] [3044B003CB9B7A85] +07:29:55 ============================================================================ +07:29:55 + + +waiting on router queue for slot.... +07:29:55 Sending to : <4> +07:29:55 ============================================================================ +07:29:55 ============================================================================ +07:29:55 Slot Id : <246> +07:29:55 Transaction Type : REQUEST +07:29:55 Received From : +07:29:55 ============================================================================ +07:29:55 FNo. Len. Field Value +07:29:55 ============================================================================ +07:29:55 [ 1] [ 4] [0800] +07:29:55 [ 7] [ 10] [0320122903] +07:29:55 [ 11] [ 6] [155175] +07:29:55 [ 70] [ 3] [301] +07:29:55 ============================================================================ +07:29:55 + + +waiting on router queue for slot.... +07:29:55 Sending to : +07:29:55 ============================================================================ +07:29:55 ============================================================================ +07:29:55 Slot Id : <246> +07:29:55 Transaction Type : RESPONSE +07:29:55 Received From : +07:29:55 ============================================================================ +07:29:55 FNo. Len. Field Value +07:29:55 ============================================================================ +07:29:55 [ 1] [ 4] [0810] +07:29:55 [ 7] [ 10] [0320122903] +07:29:55 [ 11] [ 6] [155175] +07:29:55 [ 39] [ 2] [00] +07:29:55 [ 70] [ 3] [301] +07:29:55 ============================================================================ +07:29:55 Calculate Source COMM Id = 2 +07:29:55 ============================================================================ +07:29:55 + + +waiting on router queue for slot.... +07:29:55 ============================================================================ +07:29:55 Slot Id : <242> +07:29:55 Transaction Type : REQUEST +07:29:55 Received From : +07:29:55 ============================================================================ +07:29:55 FNo. Len. Field Value +07:29:55 ============================================================================ +07:29:55 [ 1] [ 4] [0800] +07:29:55 [ 7] [ 10] [0320003742] +07:29:55 [ 11] [ 6] [009276] +07:29:55 [ 37] [ 12] [57907009276] +07:29:55 [ 70] [ 3] [301] +07:29:55 ============================================================================ +07:29:55 + + +waiting on router queue for slot.... +07:29:55 Sending to : +07:29:55 ============================================================================ +07:29:55 ============================================================================ +07:29:55 Slot Id : <242> +07:29:55 Transaction Type : RESPONSE +07:29:55 Received From : +07:29:55 ============================================================================ +07:29:55 FNo. Len. Field Value +07:29:55 ============================================================================ +07:29:55 [ 1] [ 4] [0810] +07:29:55 [ 7] [ 10] [0320003742] +07:29:55 [ 11] [ 6] [009276] +07:29:55 [ 37] [ 12] [579070092760] +07:29:55 [ 39] [ 2] [00] +07:29:55 [ 70] [ 3] [810] +07:29:55 ============================================================================ +07:29:55 Calculate Source COMM Id = 1 +07:29:55 ============================================================================ +07:29:55 + + +waiting on router queue for slot.... +07:29:56 ============================================================================ +07:29:56 Slot Id : <235> +07:29:56 Transaction Type : RESPONSE +07:29:56 Received From : +07:29:56 ============================================================================ +07:29:56 FNo. Len. Field Value +07:29:56 ============================================================================ +07:29:56 [ 1] [ 4] [0210] +07:29:56 [ 2] [ 16] [6688990106048901] +07:29:56 [ 3] [ 6] [010000] +07:29:56 [ 4] [ 12] [000005000000] +07:29:56 [ 7] [ 10] [0320072951] +07:29:56 [ 11] [ 6] [670594] +07:29:56 [ 12] [ 6] [072951] +07:29:56 [ 13] [ 4] [0320] +07:29:56 [ 15] [ 4] [0320] +07:29:56 [ 18] [ 4] [6011] +07:29:56 [ 22] [ 3] [021] +07:29:56 [ 32] [ 6] [621354] +07:29:56 [ 35] [ 37] [6688990106048901=43111231890159000000] +07:29:56 [ 37] [ 12] [507903499443] +07:29:56 [ 38] [ 6] [072746] +07:29:56 [ 39] [ 2] [55] +07:29:56 [ 41] [ 8] [06002200] +07:29:56 [ 49] [ 3] [418] +07:29:56 ============================================================================ +07:29:56 Sending to : +07:29:56 ============================================================================ +07:29:56 + + +waiting on router queue for slot.... +07:29:57 ============================================================================ +07:29:57 Slot Id : <235> +07:29:57 Transaction Type : RESPONSE +07:29:57 Received From : +07:29:57 ============================================================================ +07:29:57 FNo. Len. Field Value +07:29:57 ============================================================================ +07:29:57 [ 1] [ 4] [0210] +07:29:57 [ 2] [ 16] [6688990106048901] +07:29:57 [ 3] [ 6] [010000] +07:29:57 [ 4] [ 12] [000005000000] +07:29:57 [ 7] [ 10] [0320072951] +07:29:57 [ 11] [ 6] [670594] +07:29:57 [ 12] [ 6] [072951] +07:29:57 [ 13] [ 4] [0320] +07:29:57 [ 15] [ 4] [0320] +07:29:57 [ 18] [ 4] [6011] +07:29:57 [ 22] [ 3] [021] +07:29:57 [ 32] [ 6] [621354] +07:29:57 [ 35] [ 37] [6688990106048901=43111231890159000000] +07:29:57 [ 37] [ 12] [507903499443] +07:29:57 [ 38] [ 6] [072746] +07:29:57 [ 39] [ 2] [55] +07:29:57 [ 41] [ 8] [06002200] +07:29:57 [ 49] [ 3] [418] +07:29:57 ============================================================================ +07:29:57 Calculate Source COMM Id = 0 +07:29:57 ============================================================================ +07:29:57 + + +waiting on router queue for slot.... +07:30:05 ============================================================================ +07:30:05 Slot Id : <248> +07:30:05 Transaction Type : REQUEST +07:30:05 Received From : +07:30:05 ============================================================================ +07:30:05 FNo. Len. Field Value +07:30:05 ============================================================================ +07:30:05 [ 1] [ 4] [0800] +07:30:05 [ 7] [ 10] [0320122914] +07:30:05 [ 11] [ 6] [155176] +07:30:05 [ 70] [ 3] [301] +07:30:05 ============================================================================ +07:30:05 + + +waiting on router queue for slot.... +07:30:05 Sending to : +07:30:05 ============================================================================ +07:30:05 ============================================================================ +07:30:05 Slot Id : <248> +07:30:05 Transaction Type : RESPONSE +07:30:05 Received From : +07:30:05 ============================================================================ +07:30:05 FNo. Len. Field Value +07:30:05 ============================================================================ +07:30:05 [ 1] [ 4] [0810] +07:30:05 [ 7] [ 10] [0320122914] +07:30:05 [ 11] [ 6] [155176] +07:30:05 [ 39] [ 2] [00] +07:30:05 [ 70] [ 3] [301] +07:30:05 ============================================================================ +07:30:05 Calculate Source COMM Id = 2 +07:30:05 ============================================================================ +07:30:05 + + +waiting on router queue for slot.... +07:30:06 ============================================================================ +07:30:06 Slot Id : <244> +07:30:06 Transaction Type : REQUEST +07:30:06 Received From : +07:30:06 ============================================================================ +07:30:06 FNo. Len. Field Value +07:30:06 ============================================================================ +07:30:06 [ 1] [ 4] [0800] +07:30:06 [ 2] [ 5] [02531] +07:30:06 [ 3] [ 6] [579078] +07:30:06 [ 7] [ 10] [0320003006] +07:30:06 [ 11] [ 6] [806847] +07:30:06 [ 15] [ 10] [0320003006] +07:30:06 [ 37] [ 11] [57907806847] +07:30:06 [ 70] [ 3] [001] +07:30:06 ============================================================================ +07:30:06 + + +waiting on router queue for slot.... +07:30:06 ============================================================================ +07:30:06 Slot Id : <244> +07:30:06 Transaction Type : RESPONSE +07:30:06 Received From : +07:30:06 ============================================================================ +07:30:06 FNo. Len. Field Value +07:30:06 ============================================================================ +07:30:06 [ 1] [ 4] [0810] +07:30:06 [ 7] [ 10] [0320003006] +07:30:06 [ 11] [ 6] [806847] +07:30:06 [ 15] [ 4] [0320] +07:30:06 [ 37] [ 12] [57907806847] +07:30:06 [ 39] [ 2] [00] +07:30:06 [ 70] [ 3] [001] +07:30:06 ============================================================================ +07:30:06 Sending to : +07:30:06 ============================================================================ +07:30:06 + + +waiting on router queue for slot.... +07:30:16 ============================================================================ +07:30:16 Slot Id : <227> +07:30:16 Transaction Type : REQUEST +07:30:16 Received From : +07:30:16 ============================================================================ +07:30:16 FNo. Len. Field Value +07:30:16 ============================================================================ +07:30:16 [ 1] [ 4] [0800] +07:30:16 [ 7] [ 10] [0320122925] +07:30:16 [ 11] [ 6] [155177] +07:30:16 [ 70] [ 3] [301] +07:30:16 ============================================================================ +07:30:16 + + +waiting on router queue for slot.... +07:30:16 Sending to : +07:30:16 ============================================================================ +07:30:16 ============================================================================ +07:30:16 Slot Id : <227> +07:30:16 Transaction Type : RESPONSE +07:30:16 Received From : +07:30:16 ============================================================================ +07:30:16 FNo. Len. Field Value +07:30:16 ============================================================================ +07:30:16 [ 1] [ 4] [0810] +07:30:16 [ 7] [ 10] [0320122925] +07:30:16 [ 11] [ 6] [155177] +07:30:16 [ 39] [ 2] [00] +07:30:16 [ 70] [ 3] [301] +07:30:16 ============================================================================ +07:30:16 Calculate Source COMM Id = 2 +07:30:16 ============================================================================ +07:30:16 + + +waiting on router queue for slot.... +07:30:26 ============================================================================ +07:30:26 Slot Id : <250> +07:30:26 Transaction Type : REQUEST +07:30:26 Received From : +07:30:26 ============================================================================ +07:30:26 FNo. Len. Field Value +07:30:26 ============================================================================ +07:30:26 [ 1] [ 4] [0200] +07:30:26 [ 2] [ 16] [6688990106048901] +07:30:26 [ 3] [ 6] [010000] +07:30:26 [ 4] [ 12] [000005000000] +07:30:26 [ 7] [ 10] [0320073023] +07:30:26 [ 11] [ 6] [670675] +07:30:26 [ 12] [ 6] [073023] +07:30:26 [ 13] [ 4] [0320] +07:30:26 [ 15] [ 4] [0320] +07:30:26 [ 18] [ 4] [6011] +07:30:26 [ 22] [ 3] [900] +07:30:26 [ 25] [ 2] [02] +07:30:26 [ 28] [ 9] [D00002000] +07:30:26 [ 32] [ 6] [621354] +07:30:26 [ 35] [ 37] [6688990106048901=43111231890159000000] +07:30:26 [ 37] [ 12] [507903499445] +07:30:26 [ 41] [ 8] [06002200] +07:30:26 [ 42] [ 15] [NATIVE ] +07:30:26 [ 43] [ 40] [Beng Market Beng LAO] +07:30:26 [ 49] [ 3] [418] +07:30:26 [ 52] [ 16] [D72F4A3A0735A276] +07:30:26 ============================================================================ +07:30:26 + + +waiting on router queue for slot.... +07:30:26 Sending to : +07:30:26 ============================================================================ +07:30:26 Sending to : +07:30:26 ============================================================================ +07:30:27 ============================================================================ +07:30:27 Slot Id : <250> +07:30:27 Transaction Type : REQUEST +07:30:27 Received From : +07:30:27 ============================================================================ +07:30:27 FNo. Len. Field Value +07:30:27 ============================================================================ +07:30:27 [ 1] [ 4] [0200] +07:30:27 [ 2] [ 16] [6688990106048901] +07:30:27 [ 3] [ 6] [010000] +07:30:27 [ 4] [ 12] [000005000000] +07:30:27 [ 7] [ 10] [0320073023] +07:30:27 [ 11] [ 6] [670675] +07:30:27 [ 12] [ 6] [073023] +07:30:27 [ 13] [ 4] [0320] +07:30:27 [ 15] [ 4] [0320] +07:30:27 [ 18] [ 4] [6011] +07:30:27 [ 22] [ 3] [900] +07:30:27 [ 25] [ 2] [02] +07:30:27 [ 28] [ 9] [D00002000] +07:30:27 [ 32] [ 6] [621354] +07:30:27 [ 35] [ 37] [6688990106048901=43111231890159000000] +07:30:27 [ 37] [ 12] [507903499445] +07:30:27 [ 41] [ 8] [06002200] +07:30:27 [ 42] [ 15] [NATIVE ] +07:30:27 [ 43] [ 40] [Beng Market Beng LAO] +07:30:27 [ 49] [ 3] [418] +07:30:27 [ 52] [ 16] [D72F4A3A0735A276] +07:30:27 ============================================================================ +07:30:27 + + +waiting on router queue for slot.... +07:30:27 Sending to : +07:30:27 ============================================================================ +07:30:27 ============================================================================ +07:30:27 Slot Id : <250> +07:30:27 Transaction Type : REQUEST +07:30:27 Received From : +07:30:27 ============================================================================ +07:30:27 FNo. Len. Field Value +07:30:27 ============================================================================ +07:30:27 [ 1] [ 4] [0200] +07:30:27 [ 2] [ 16] [6688990106048901] +07:30:27 [ 3] [ 6] [010000] +07:30:27 [ 4] [ 12] [000005000000] +07:30:27 [ 7] [ 10] [0320073023] +07:30:27 [ 11] [ 6] [670675] +07:30:27 [ 12] [ 6] [073023] +07:30:27 [ 13] [ 4] [0320] +07:30:27 [ 15] [ 4] [0320] +07:30:27 [ 18] [ 4] [6011] +07:30:27 [ 22] [ 3] [900] +07:30:27 [ 25] [ 2] [02] +07:30:27 [ 28] [ 9] [D00002000] +07:30:27 [ 32] [ 6] [621354] +07:30:27 [ 35] [ 37] [6688990106048901=43111231890159000000] +07:30:27 [ 37] [ 12] [507903499445] +07:30:27 [ 41] [ 8] [06002200] +07:30:27 [ 42] [ 15] [NATIVE ] +07:30:27 [ 43] [ 40] [Beng Market Beng LAO] +07:30:27 [ 49] [ 3] [418] +07:30:27 [ 52] [ 16] [56CC36FAB93E991F] +07:30:27 ============================================================================ +07:30:27 + + +waiting on router queue for slot.... +07:30:27 Sending to : <4> +07:30:27 ============================================================================ +07:30:28 ============================================================================ +07:30:28 Slot Id : <250> +07:30:28 Transaction Type : RESPONSE +07:30:28 Received From : +07:30:28 ============================================================================ +07:30:28 FNo. Len. Field Value +07:30:28 ============================================================================ +07:30:28 [ 1] [ 4] [0210] +07:30:28 [ 2] [ 16] [6688990106048901] +07:30:28 [ 3] [ 6] [010000] +07:30:28 [ 4] [ 12] [000005000000] +07:30:28 [ 11] [ 6] [670675] +07:30:28 [ 12] [ 6] [073023] +07:30:28 [ 15] [ 4] [0320] +07:30:28 [ 18] [ 4] [6011] +07:30:28 [ 32] [ 6] [621354] +07:30:28 [ 35] [ 37] [6688990106048901=43111231890159000000] +07:30:28 [ 37] [ 12] [507903499445] +07:30:28 [ 38] [ 6] [636447] +07:30:28 [ 39] [ 2] [00] +07:30:28 [ 41] [ 8] [06002200] +07:30:28 [ 49] [ 3] [418] +07:30:28 [ 54] [ 20] [0002418C000093363625] +07:30:28 ============================================================================ +07:30:28 Sending to : +07:30:28 ============================================================================ +07:30:28 + + +waiting on router queue for slot.... +07:30:29 ============================================================================ +07:30:29 Slot Id : <251> +07:30:29 Transaction Type : REQUEST +07:30:29 Received From : +07:30:29 ============================================================================ +07:30:29 FNo. Len. Field Value +07:30:29 ============================================================================ +07:30:29 [ 1] [ 4] [0800] +07:30:29 [ 7] [ 10] [0320122935] +07:30:29 [ 11] [ 6] [155178] +07:30:29 [ 70] [ 3] [301] +07:30:29 ============================================================================ +07:30:29 + + +waiting on router queue for slot.... +07:30:29 Sending to : +07:30:29 ============================================================================ +07:30:29 ============================================================================ +07:30:29 Slot Id : <251> +07:30:29 Transaction Type : RESPONSE +07:30:29 Received From : +07:30:29 ============================================================================ +07:30:29 FNo. Len. Field Value +07:30:29 ============================================================================ +07:30:29 [ 1] [ 4] [0810] +07:30:29 [ 7] [ 10] [0320122935] +07:30:29 [ 11] [ 6] [155178] +07:30:29 [ 39] [ 2] [00] +07:30:29 [ 70] [ 3] [301] +07:30:29 ============================================================================ +07:30:29 Calculate Source COMM Id = 2 +07:30:29 ============================================================================ +07:30:29 + + +waiting on router queue for slot.... +07:30:29 ============================================================================ +07:30:29 Slot Id : <250> +07:30:29 Transaction Type : RESPONSE +07:30:29 Received From : +07:30:29 ============================================================================ +07:30:29 FNo. Len. Field Value +07:30:29 ============================================================================ +07:30:29 [ 1] [ 4] [0210] +07:30:29 [ 2] [ 16] [6688990106048901] +07:30:29 [ 3] [ 6] [010000] +07:30:29 [ 4] [ 12] [000005000000] +07:30:29 [ 11] [ 6] [670675] +07:30:29 [ 12] [ 6] [073023] +07:30:29 [ 15] [ 4] [0320] +07:30:29 [ 18] [ 4] [6011] +07:30:29 [ 32] [ 6] [621354] +07:30:29 [ 35] [ 37] [6688990106048901=43111231890159000000] +07:30:29 [ 37] [ 12] [507903499445] +07:30:29 [ 38] [ 6] [636447] +07:30:29 [ 39] [ 2] [00] +07:30:29 [ 41] [ 8] [06002200] +07:30:29 [ 49] [ 3] [418] +07:30:29 [ 54] [ 20] [0002418C000093363625] +07:30:29 ============================================================================ +07:30:29 Calculate Source COMM Id = 0 +07:30:29 ============================================================================ +07:30:29 + + +waiting on router queue for slot.... +07:30:43 ============================================================================ +07:30:43 Slot Id : <200> +07:30:43 Transaction Type : REQUEST +07:30:43 Received From : +07:30:43 ============================================================================ +07:30:43 FNo. Len. Field Value +07:30:43 ============================================================================ +07:30:43 [ 1] [ 4] [0800] +07:30:43 [ 7] [ 10] [0320144232] +07:30:43 [ 11] [ 6] [074232] +07:30:43 [ 37] [ 12] [57907074232] +07:30:43 [ 70] [ 3] [301] +07:30:43 ============================================================================ +07:30:43 + + +waiting on router queue for slot.... +07:30:43 Sending to : +07:30:43 ============================================================================ +07:30:43 ============================================================================ +07:30:43 Slot Id : <200> +07:30:43 Transaction Type : RESPONSE +07:30:43 Received From : +07:30:43 ============================================================================ +07:30:43 FNo. Len. Field Value +07:30:43 ============================================================================ +07:30:43 [ 1] [ 4] [0810] +07:30:43 [ 7] [ 10] [0320144232] +07:30:43 [ 11] [ 6] [074232] +07:30:43 [ 37] [ 12] [579070742320] +07:30:43 [ 39] [ 2] [00] +07:30:43 [ 70] [ 3] [810] +07:30:43 ============================================================================ +07:30:43 Calculate Source COMM Id = 6 +07:30:43 ============================================================================ +07:30:43 + + +waiting on router queue for slot.... +07:30:44 ============================================================================ +07:30:44 Slot Id : <255> +07:30:44 Transaction Type : REQUEST +07:30:44 Received From : +07:30:44 ============================================================================ +07:30:44 FNo. Len. Field Value +07:30:44 ============================================================================ +07:30:44 [ 1] [ 4] [0800] +07:30:44 [ 7] [ 10] [0320122952] +07:30:44 [ 11] [ 6] [155179] +07:30:44 [ 70] [ 3] [301] +07:30:44 ============================================================================ +07:30:44 + + +waiting on router queue for slot.... +07:30:44 Sending to : +07:30:44 ============================================================================ +07:30:44 ============================================================================ +07:30:44 Slot Id : <255> +07:30:44 Transaction Type : RESPONSE +07:30:44 Received From : +07:30:44 ============================================================================ +07:30:44 FNo. Len. Field Value +07:30:44 ============================================================================ +07:30:44 [ 1] [ 4] [0810] +07:30:44 [ 7] [ 10] [0320122952] +07:30:44 [ 11] [ 6] [155179] +07:30:44 [ 39] [ 2] [00] +07:30:44 [ 70] [ 3] [301] +07:30:44 ============================================================================ +07:30:44 Calculate Source COMM Id = 2 +07:30:44 ============================================================================ +07:30:44 + + +waiting on router queue for slot.... +07:30:55 ============================================================================ +07:30:55 Slot Id : <226> +07:30:55 Transaction Type : REQUEST +07:30:55 Received From : +07:30:55 ============================================================================ +07:30:55 FNo. Len. Field Value +07:30:55 ============================================================================ +07:30:55 [ 1] [ 4] [0800] +07:30:55 [ 7] [ 10] [0320123003] +07:30:55 [ 11] [ 6] [155180] +07:30:55 [ 70] [ 3] [301] +07:30:55 ============================================================================ +07:30:55 + + +waiting on router queue for slot.... +07:30:55 Sending to : +07:30:55 ============================================================================ +07:30:55 ============================================================================ +07:30:55 Slot Id : <226> +07:30:55 Transaction Type : RESPONSE +07:30:55 Received From : +07:30:55 ============================================================================ +07:30:55 FNo. Len. Field Value +07:30:55 ============================================================================ +07:30:55 [ 1] [ 4] [0810] +07:30:55 [ 7] [ 10] [0320123003] +07:30:55 [ 11] [ 6] [155180] +07:30:55 [ 39] [ 2] [00] +07:30:55 [ 70] [ 3] [301] +07:30:55 ============================================================================ +07:30:55 Calculate Source COMM Id = 2 +07:30:55 ============================================================================ +07:30:55 + + +waiting on router queue for slot.... +07:30:56 ============================================================================ +07:30:56 Slot Id : <233> +07:30:56 Transaction Type : REQUEST +07:30:56 Received From : +07:30:56 ============================================================================ +07:30:56 FNo. Len. Field Value +07:30:56 ============================================================================ +07:30:56 [ 1] [ 4] [0200] +07:30:56 [ 2] [ 16] [6688990107776005] +07:30:56 [ 3] [ 6] [011000] +07:30:56 [ 4] [ 12] [000003000000] +07:30:56 [ 7] [ 10] [0320073843] +07:30:56 [ 11] [ 6] [107135] +07:30:56 [ 12] [ 6] [073843] +07:30:56 [ 13] [ 4] [0320] +07:30:56 [ 14] [ 4] [4404] +07:30:56 [ 15] [ 4] [0320] +07:30:56 [ 18] [ 4] [6011] +07:30:56 [ 22] [ 3] [900] +07:30:56 [ 25] [ 2] [02] +07:30:56 [ 28] [ 9] [D00002000] +07:30:56 [ 32] [ 6] [220699] +07:30:56 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:30:56 [ 37] [ 12] [507900327775] +07:30:56 [ 41] [ 8] [01001800] +07:30:56 [ 42] [ 15] [APTRA ] +07:30:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:30:56 [ 49] [ 3] [418] +07:30:56 [ 52] [ 16] [E5A16481465AC9A5] +07:30:56 ============================================================================ +07:30:56 + + +waiting on router queue for slot.... +07:30:56 Sending to : +07:30:56 ============================================================================ +07:30:56 Sending to : +07:30:56 ============================================================================ +07:30:56 ============================================================================ +07:30:56 Slot Id : <233> +07:30:56 Transaction Type : REQUEST +07:30:56 Received From : +07:30:56 ============================================================================ +07:30:56 FNo. Len. Field Value +07:30:56 ============================================================================ +07:30:56 [ 1] [ 4] [0200] +07:30:56 [ 2] [ 16] [6688990107776005] +07:30:56 [ 3] [ 6] [011000] +07:30:56 [ 4] [ 12] [000003000000] +07:30:56 [ 7] [ 10] [0320073843] +07:30:56 [ 11] [ 6] [107135] +07:30:56 [ 12] [ 6] [073843] +07:30:56 [ 13] [ 4] [0320] +07:30:56 [ 14] [ 4] [4404] +07:30:56 [ 15] [ 4] [0320] +07:30:56 [ 18] [ 4] [6011] +07:30:56 [ 22] [ 3] [900] +07:30:56 [ 25] [ 2] [02] +07:30:56 [ 28] [ 9] [D00002000] +07:30:56 [ 32] [ 6] [220699] +07:30:56 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:30:56 [ 37] [ 12] [507900327775] +07:30:56 [ 41] [ 8] [01001800] +07:30:56 [ 42] [ 15] [APTRA ] +07:30:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:30:56 [ 49] [ 3] [418] +07:30:56 [ 52] [ 16] [E5A16481465AC9A5] +07:30:56 ============================================================================ +07:30:56 + + +waiting on router queue for slot.... +07:30:56 Sending to : +07:30:56 ============================================================================ +07:30:56 ============================================================================ +07:30:56 Slot Id : <233> +07:30:56 Transaction Type : REQUEST +07:30:56 Received From : +07:30:56 ============================================================================ +07:30:56 FNo. Len. Field Value +07:30:56 ============================================================================ +07:30:56 [ 1] [ 4] [0200] +07:30:56 [ 2] [ 16] [6688990107776005] +07:30:56 [ 3] [ 6] [011000] +07:30:56 [ 4] [ 12] [000003000000] +07:30:56 [ 7] [ 10] [0320073843] +07:30:56 [ 11] [ 6] [107135] +07:30:56 [ 12] [ 6] [073843] +07:30:56 [ 13] [ 4] [0320] +07:30:56 [ 14] [ 4] [4404] +07:30:56 [ 15] [ 4] [0320] +07:30:56 [ 18] [ 4] [6011] +07:30:56 [ 22] [ 3] [900] +07:30:56 [ 25] [ 2] [02] +07:30:56 [ 28] [ 9] [D00002000] +07:30:56 [ 32] [ 6] [220699] +07:30:56 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:30:56 [ 37] [ 12] [507900327775] +07:30:56 [ 41] [ 8] [01001800] +07:30:56 [ 42] [ 15] [APTRA ] +07:30:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:30:56 [ 49] [ 3] [418] +07:30:56 [ 52] [ 16] [47284EC6582406A3] +07:30:56 ============================================================================ +07:30:56 + + +waiting on router queue for slot.... +07:30:56 Sending to : <0> +07:30:56 ============================================================================ +07:30:56 ============================================================================ +07:30:56 Slot Id : <233> +07:30:56 Transaction Type : RESPONSE +07:30:56 Received From : +07:30:56 ============================================================================ +07:30:56 FNo. Len. Field Value +07:30:56 ============================================================================ +07:30:56 [ 1] [ 4] [0210] +07:30:56 [ 2] [ 16] [6688990107776005] +07:30:56 [ 3] [ 6] [011000] +07:30:56 [ 4] [ 12] [000003000000] +07:30:56 [ 7] [ 10] [0320073843] +07:30:56 [ 11] [ 6] [107135] +07:30:56 [ 12] [ 6] [073843] +07:30:56 [ 13] [ 4] [0320] +07:30:56 [ 15] [ 4] [0320] +07:30:56 [ 18] [ 4] [6011] +07:30:56 [ 22] [ 3] [900] +07:30:56 [ 32] [ 6] [220699] +07:30:56 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:30:56 [ 37] [ 12] [507900327775] +07:30:56 [ 39] [ 2] [14] +07:30:56 [ 41] [ 8] [01001800] +07:30:56 [ 49] [ 3] [418] +07:30:56 ============================================================================ +07:30:56 Sending to : +07:30:56 ============================================================================ +07:30:56 + + +waiting on router queue for slot.... +07:30:57 ============================================================================ +07:30:57 Slot Id : <233> +07:30:57 Transaction Type : RESPONSE +07:30:57 Received From : +07:30:57 ============================================================================ +07:30:57 FNo. Len. Field Value +07:30:57 ============================================================================ +07:30:57 [ 1] [ 4] [0210] +07:30:57 [ 2] [ 16] [6688990107776005] +07:30:57 [ 3] [ 6] [011000] +07:30:57 [ 4] [ 12] [000003000000] +07:30:57 [ 7] [ 10] [0320073843] +07:30:57 [ 11] [ 6] [107135] +07:30:57 [ 12] [ 6] [073843] +07:30:57 [ 13] [ 4] [0320] +07:30:57 [ 15] [ 4] [0320] +07:30:57 [ 18] [ 4] [6011] +07:30:57 [ 22] [ 3] [900] +07:30:57 [ 32] [ 6] [220699] +07:30:57 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:30:57 [ 37] [ 12] [507900327775] +07:30:57 [ 39] [ 2] [14] +07:30:57 [ 41] [ 8] [01001800] +07:30:57 [ 49] [ 3] [418] +07:30:57 ============================================================================ +07:30:57 Calculate Source COMM Id = 1 +07:30:57 ============================================================================ +07:30:57 + + +waiting on router queue for slot.... +07:31:05 ============================================================================ +07:31:05 Slot Id : <238> +07:31:05 Transaction Type : REQUEST +07:31:05 Received From : +07:31:05 ============================================================================ +07:31:05 FNo. Len. Field Value +07:31:05 ============================================================================ +07:31:05 [ 1] [ 4] [0800] +07:31:05 [ 7] [ 10] [0320123014] +07:31:05 [ 11] [ 6] [155181] +07:31:05 [ 70] [ 3] [301] +07:31:05 ============================================================================ +07:31:05 + + +waiting on router queue for slot.... +07:31:05 Sending to : +07:31:05 ============================================================================ +07:31:05 ============================================================================ +07:31:05 Slot Id : <238> +07:31:05 Transaction Type : RESPONSE +07:31:05 Received From : +07:31:05 ============================================================================ +07:31:05 FNo. Len. Field Value +07:31:05 ============================================================================ +07:31:05 [ 1] [ 4] [0810] +07:31:05 [ 7] [ 10] [0320123014] +07:31:05 [ 11] [ 6] [155181] +07:31:05 [ 39] [ 2] [00] +07:31:05 [ 70] [ 3] [301] +07:31:05 ============================================================================ +07:31:05 Calculate Source COMM Id = 2 +07:31:05 ============================================================================ +07:31:05 + + +waiting on router queue for slot.... +07:31:08 ============================================================================ +07:31:08 Slot Id : <216> +07:31:08 Transaction Type : REQUEST +07:31:08 Received From : +07:31:08 ============================================================================ +07:31:08 FNo. Len. Field Value +07:31:08 ============================================================================ +07:31:08 [ 1] [ 4] [0800] +07:31:08 [ 2] [ 5] [02531] +07:31:08 [ 3] [ 6] [579078] +07:31:08 [ 7] [ 10] [0320003108] +07:31:08 [ 11] [ 6] [806848] +07:31:08 [ 15] [ 10] [0320003108] +07:31:08 [ 37] [ 11] [57907806848] +07:31:08 [ 70] [ 3] [001] +07:31:08 ============================================================================ +07:31:08 + + +waiting on router queue for slot.... +07:31:08 ============================================================================ +07:31:08 Slot Id : <216> +07:31:08 Transaction Type : RESPONSE +07:31:08 Received From : +07:31:08 ============================================================================ +07:31:08 FNo. Len. Field Value +07:31:08 ============================================================================ +07:31:08 [ 1] [ 4] [0810] +07:31:08 [ 7] [ 10] [0320003108] +07:31:08 [ 11] [ 6] [806848] +07:31:08 [ 15] [ 4] [0320] +07:31:08 [ 37] [ 12] [57907806848] +07:31:08 [ 39] [ 2] [00] +07:31:08 [ 70] [ 3] [001] +07:31:08 ============================================================================ +07:31:08 Sending to : +07:31:08 ============================================================================ +07:31:08 + + +waiting on router queue for slot.... +07:31:13 ============================================================================ +07:31:13 Slot Id : <234> +07:31:13 Transaction Type : REQUEST +07:31:13 Received From : +07:31:13 ============================================================================ +07:31:13 FNo. Len. Field Value +07:31:13 ============================================================================ +07:31:13 [ 1] [ 4] [0200] +07:31:13 [ 2] [ 16] [6213545000707467] +07:31:13 [ 3] [ 6] [010000] +07:31:13 [ 4] [ 12] [000100000000] +07:31:13 [ 7] [ 10] [0320072905] +07:31:13 [ 11] [ 6] [930386] +07:31:13 [ 12] [ 6] [072905] +07:31:13 [ 13] [ 4] [0320] +07:31:13 [ 15] [ 4] [0320] +07:31:13 [ 18] [ 4] [6011] +07:31:13 [ 19] [ 3] [418] +07:31:13 [ 22] [ 3] [021] +07:31:13 [ 25] [ 2] [01] +07:31:13 [ 28] [ 9] [D00002000] +07:31:13 [ 32] [ 6] [668899] +07:31:13 [ 35] [ 32] [6213545000707467=491212010746251] +07:31:13 [ 37] [ 12] [507902150920] +07:31:13 [ 41] [ 8] [03020025] +07:31:13 [ 42] [ 15] [APT ] +07:31:13 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +07:31:13 [ 49] [ 3] [418] +07:31:13 [ 52] [ 16] [375CC3BEAD298327] +07:31:13 ============================================================================ +07:31:13 + + +waiting on router queue for slot.... +07:31:13 Sending to : +07:31:13 ============================================================================ +07:31:13 Sending to : +07:31:13 ============================================================================ +07:31:13 ============================================================================ +07:31:13 Slot Id : <234> +07:31:13 Transaction Type : REQUEST +07:31:13 Received From : +07:31:13 ============================================================================ +07:31:13 FNo. Len. Field Value +07:31:13 ============================================================================ +07:31:13 [ 1] [ 4] [0200] +07:31:13 [ 2] [ 16] [6213545000707467] +07:31:13 [ 3] [ 6] [010000] +07:31:13 [ 4] [ 12] [000100000000] +07:31:13 [ 7] [ 10] [0320072905] +07:31:13 [ 11] [ 6] [930386] +07:31:13 [ 12] [ 6] [072905] +07:31:13 [ 13] [ 4] [0320] +07:31:13 [ 15] [ 4] [0320] +07:31:13 [ 18] [ 4] [6011] +07:31:13 [ 19] [ 3] [418] +07:31:13 [ 22] [ 3] [021] +07:31:13 [ 25] [ 2] [01] +07:31:13 [ 28] [ 9] [D00002000] +07:31:13 [ 32] [ 6] [668899] +07:31:13 [ 35] [ 32] [6213545000707467=491212010746251] +07:31:13 [ 37] [ 12] [507902150920] +07:31:13 [ 41] [ 8] [03020025] +07:31:13 [ 42] [ 15] [APT ] +07:31:13 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +07:31:13 [ 49] [ 3] [418] +07:31:13 [ 52] [ 16] [375CC3BEAD298327] +07:31:13 ============================================================================ +07:31:13 + + +waiting on router queue for slot.... +07:31:13 Sending to : +07:31:13 ============================================================================ +07:31:13 ============================================================================ +07:31:13 Slot Id : <234> +07:31:13 Transaction Type : REQUEST +07:31:13 Received From : +07:31:13 ============================================================================ +07:31:13 FNo. Len. Field Value +07:31:13 ============================================================================ +07:31:13 [ 1] [ 4] [0200] +07:31:13 [ 2] [ 16] [6213545000707467] +07:31:13 [ 3] [ 6] [010000] +07:31:13 [ 4] [ 12] [000100000000] +07:31:13 [ 7] [ 10] [0320072905] +07:31:13 [ 11] [ 6] [930386] +07:31:13 [ 12] [ 6] [072905] +07:31:13 [ 13] [ 4] [0320] +07:31:13 [ 15] [ 4] [0320] +07:31:13 [ 18] [ 4] [6011] +07:31:13 [ 19] [ 3] [418] +07:31:13 [ 22] [ 3] [021] +07:31:13 [ 25] [ 2] [01] +07:31:13 [ 28] [ 9] [D00002000] +07:31:13 [ 32] [ 6] [668899] +07:31:13 [ 35] [ 32] [6213545000707467=491212010746251] +07:31:13 [ 37] [ 12] [507902150920] +07:31:13 [ 41] [ 8] [03020025] +07:31:13 [ 42] [ 15] [APT ] +07:31:13 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +07:31:13 [ 49] [ 3] [418] +07:31:13 [ 52] [ 16] [2A35CBE5875D3BA9] +07:31:13 ============================================================================ +07:31:13 + + +waiting on router queue for slot.... +07:31:13 Sending to : <0> +07:31:13 ============================================================================ +07:31:14 ============================================================================ +07:31:14 Slot Id : <234> +07:31:14 Transaction Type : RESPONSE +07:31:14 Received From : +07:31:14 ============================================================================ +07:31:14 FNo. Len. Field Value +07:31:14 ============================================================================ +07:31:14 [ 1] [ 4] [0210] +07:31:14 [ 2] [ 16] [6213545000707467] +07:31:14 [ 3] [ 6] [010000] +07:31:14 [ 4] [ 12] [000100000000] +07:31:14 [ 7] [ 10] [0320072905] +07:31:14 [ 11] [ 6] [930386] +07:31:14 [ 12] [ 6] [072905] +07:31:14 [ 13] [ 4] [0320] +07:31:14 [ 15] [ 4] [0320] +07:31:14 [ 18] [ 4] [6011] +07:31:14 [ 19] [ 3] [418] +07:31:14 [ 32] [ 6] [668899] +07:31:14 [ 35] [ 32] [6213545000707467=491212010746251] +07:31:14 [ 37] [ 12] [507902150920] +07:31:14 [ 38] [ 6] [306425] +07:31:14 [ 39] [ 2] [00] +07:31:14 [ 41] [ 8] [03020025] +07:31:14 [ 49] [ 3] [418] +07:31:14 [ 54] [ 40] [0001418C0000895947000002418C000089594700] +07:31:14 ============================================================================ +07:31:14 Sending to : +07:31:14 ============================================================================ +07:31:14 + + +waiting on router queue for slot.... +07:31:16 ============================================================================ +07:31:16 Slot Id : <237> +07:31:16 Transaction Type : REQUEST +07:31:16 Received From : +07:31:16 ============================================================================ +07:31:16 FNo. Len. Field Value +07:31:16 ============================================================================ +07:31:16 [ 1] [ 4] [0800] +07:31:16 [ 7] [ 10] [0320123024] +07:31:16 [ 11] [ 6] [155182] +07:31:16 [ 70] [ 3] [301] +07:31:16 ============================================================================ +07:31:16 + + +waiting on router queue for slot.... +07:31:16 Sending to : +07:31:16 ============================================================================ +07:31:16 ============================================================================ +07:31:16 Slot Id : <237> +07:31:16 Transaction Type : RESPONSE +07:31:16 Received From : +07:31:16 ============================================================================ +07:31:16 FNo. Len. Field Value +07:31:16 ============================================================================ +07:31:16 [ 1] [ 4] [0810] +07:31:16 [ 7] [ 10] [0320123024] +07:31:16 [ 11] [ 6] [155182] +07:31:16 [ 39] [ 2] [00] +07:31:16 [ 70] [ 3] [301] +07:31:16 ============================================================================ +07:31:16 Calculate Source COMM Id = 2 +07:31:16 ============================================================================ +07:31:16 + + +waiting on router queue for slot.... +07:31:16 ============================================================================ +07:31:16 Slot Id : <234> +07:31:16 Transaction Type : RESPONSE +07:31:16 Received From : +07:31:16 ============================================================================ +07:31:16 FNo. Len. Field Value +07:31:16 ============================================================================ +07:31:16 [ 1] [ 4] [0210] +07:31:16 [ 2] [ 16] [6213545000707467] +07:31:16 [ 3] [ 6] [010000] +07:31:16 [ 4] [ 12] [000100000000] +07:31:16 [ 7] [ 10] [0320072905] +07:31:16 [ 11] [ 6] [930386] +07:31:16 [ 12] [ 6] [072905] +07:31:16 [ 13] [ 4] [0320] +07:31:16 [ 15] [ 4] [0320] +07:31:16 [ 18] [ 4] [6011] +07:31:16 [ 19] [ 3] [418] +07:31:16 [ 32] [ 6] [668899] +07:31:16 [ 35] [ 32] [6213545000707467=491212010746251] +07:31:16 [ 37] [ 12] [507902150920] +07:31:16 [ 38] [ 6] [306425] +07:31:16 [ 39] [ 2] [00] +07:31:16 [ 41] [ 8] [03020025] +07:31:16 [ 49] [ 3] [418] +07:31:16 [ 54] [ 40] [0001418C0000895947000002418C000089594700] +07:31:16 ============================================================================ +07:31:16 Calculate Source COMM Id = 4 +07:31:16 ============================================================================ +07:31:16 + + +waiting on router queue for slot.... +07:31:20 ============================================================================ +07:31:20 Slot Id : <253> +07:31:20 Transaction Type : REQUEST +07:31:20 Received From : +07:31:20 ============================================================================ +07:31:20 FNo. Len. Field Value +07:31:20 ============================================================================ +07:31:20 [ 1] [ 4] [0800] +07:31:20 [ 7] [ 10] [0320002912] +07:31:20 [ 11] [ 6] [015780] +07:31:20 [ 37] [ 12] [57907015780] +07:31:20 [ 70] [ 3] [301] +07:31:20 ============================================================================ +07:31:20 + + +waiting on router queue for slot.... +07:31:20 Sending to : +07:31:20 ============================================================================ +07:31:20 ============================================================================ +07:31:20 Slot Id : <253> +07:31:20 Transaction Type : RESPONSE +07:31:20 Received From : +07:31:20 ============================================================================ +07:31:20 FNo. Len. Field Value +07:31:20 ============================================================================ +07:31:20 [ 1] [ 4] [0810] +07:31:20 [ 7] [ 10] [0320002912] +07:31:20 [ 11] [ 6] [015780] +07:31:20 [ 37] [ 12] [579070157800] +07:31:20 [ 39] [ 2] [00] +07:31:20 [ 70] [ 3] [810] +07:31:20 ============================================================================ +07:31:20 Calculate Source COMM Id = 4 +07:31:20 ============================================================================ +07:31:20 + + +waiting on router queue for slot.... +07:31:27 ============================================================================ +07:31:27 Slot Id : <210> +07:31:27 Transaction Type : REQUEST +07:31:27 Received From : +07:31:27 ============================================================================ +07:31:27 FNo. Len. Field Value +07:31:27 ============================================================================ +07:31:27 [ 1] [ 4] [0800] +07:31:27 [ 7] [ 10] [0320123035] +07:31:27 [ 11] [ 6] [155183] +07:31:27 [ 70] [ 3] [301] +07:31:27 ============================================================================ +07:31:27 + + +waiting on router queue for slot.... +07:31:27 Sending to : +07:31:27 ============================================================================ +07:31:27 ============================================================================ +07:31:27 Slot Id : <210> +07:31:27 Transaction Type : RESPONSE +07:31:27 Received From : +07:31:27 ============================================================================ +07:31:27 FNo. Len. Field Value +07:31:27 ============================================================================ +07:31:27 [ 1] [ 4] [0810] +07:31:27 [ 7] [ 10] [0320123035] +07:31:27 [ 11] [ 6] [155183] +07:31:27 [ 39] [ 2] [00] +07:31:27 [ 70] [ 3] [301] +07:31:27 ============================================================================ +07:31:27 Calculate Source COMM Id = 2 +07:31:27 ============================================================================ +07:31:27 + + +waiting on router queue for slot.... +07:31:38 ============================================================================ +07:31:38 Slot Id : <249> +07:31:38 Transaction Type : REQUEST +07:31:38 Received From : +07:31:38 ============================================================================ +07:31:38 FNo. Len. Field Value +07:31:38 ============================================================================ +07:31:38 [ 1] [ 4] [0200] +07:31:38 [ 2] [ 16] [6688990107776005] +07:31:38 [ 3] [ 6] [011000] +07:31:38 [ 4] [ 12] [000003000000] +07:31:38 [ 7] [ 10] [0320073925] +07:31:38 [ 11] [ 6] [107138] +07:31:38 [ 12] [ 6] [073925] +07:31:38 [ 13] [ 4] [0320] +07:31:38 [ 14] [ 4] [4404] +07:31:38 [ 15] [ 4] [0320] +07:31:38 [ 18] [ 4] [6011] +07:31:38 [ 22] [ 3] [900] +07:31:38 [ 25] [ 2] [02] +07:31:38 [ 28] [ 9] [D00002000] +07:31:38 [ 32] [ 6] [220699] +07:31:38 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:31:38 [ 37] [ 12] [507900327777] +07:31:38 [ 41] [ 8] [01001800] +07:31:38 [ 42] [ 15] [APTRA ] +07:31:38 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:31:38 [ 49] [ 3] [418] +07:31:38 [ 52] [ 16] [E5A16481465AC9A5] +07:31:38 ============================================================================ +07:31:38 + + +waiting on router queue for slot.... +07:31:38 Sending to : +07:31:38 ============================================================================ +07:31:38 Sending to : +07:31:38 ============================================================================ +07:31:38 ============================================================================ +07:31:38 Slot Id : <220> +07:31:38 Transaction Type : REQUEST +07:31:38 Received From : +07:31:38 ============================================================================ +07:31:38 FNo. Len. Field Value +07:31:38 ============================================================================ +07:31:38 [ 1] [ 4] [0800] +07:31:38 [ 7] [ 10] [0320123046] +07:31:38 [ 11] [ 6] [155184] +07:31:38 [ 70] [ 3] [301] +07:31:38 ============================================================================ +07:31:38 + + +waiting on router queue for slot.... +07:31:38 Sending to : +07:31:38 ============================================================================ +07:31:38 ============================================================================ +07:31:38 Slot Id : <220> +07:31:38 Transaction Type : RESPONSE +07:31:38 Received From : +07:31:38 ============================================================================ +07:31:38 FNo. Len. Field Value +07:31:38 ============================================================================ +07:31:38 [ 1] [ 4] [0810] +07:31:38 [ 7] [ 10] [0320123046] +07:31:38 [ 11] [ 6] [155184] +07:31:38 [ 39] [ 2] [00] +07:31:38 [ 70] [ 3] [301] +07:31:38 ============================================================================ +07:31:38 Calculate Source COMM Id = 2 +07:31:38 ============================================================================ +07:31:38 + + +waiting on router queue for slot.... +07:31:38 ============================================================================ +07:31:38 Slot Id : <249> +07:31:38 Transaction Type : REQUEST +07:31:38 Received From : +07:31:38 ============================================================================ +07:31:38 FNo. Len. Field Value +07:31:38 ============================================================================ +07:31:38 [ 1] [ 4] [0200] +07:31:38 [ 2] [ 16] [6688990107776005] +07:31:38 [ 3] [ 6] [011000] +07:31:38 [ 4] [ 12] [000003000000] +07:31:38 [ 7] [ 10] [0320073925] +07:31:38 [ 11] [ 6] [107138] +07:31:38 [ 12] [ 6] [073925] +07:31:38 [ 13] [ 4] [0320] +07:31:38 [ 14] [ 4] [4404] +07:31:38 [ 15] [ 4] [0320] +07:31:38 [ 18] [ 4] [6011] +07:31:38 [ 22] [ 3] [900] +07:31:38 [ 25] [ 2] [02] +07:31:38 [ 28] [ 9] [D00002000] +07:31:38 [ 32] [ 6] [220699] +07:31:38 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:31:38 [ 37] [ 12] [507900327777] +07:31:38 [ 41] [ 8] [01001800] +07:31:38 [ 42] [ 15] [APTRA ] +07:31:38 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:31:38 [ 49] [ 3] [418] +07:31:38 [ 52] [ 16] [E5A16481465AC9A5] +07:31:38 ============================================================================ +07:31:38 + + +waiting on router queue for slot.... +07:31:38 Sending to : +07:31:38 ============================================================================ +07:31:38 ============================================================================ +07:31:38 Slot Id : <249> +07:31:38 Transaction Type : REQUEST +07:31:38 Received From : +07:31:38 ============================================================================ +07:31:38 FNo. Len. Field Value +07:31:38 ============================================================================ +07:31:38 [ 1] [ 4] [0200] +07:31:38 [ 2] [ 16] [6688990107776005] +07:31:38 [ 3] [ 6] [011000] +07:31:38 [ 4] [ 12] [000003000000] +07:31:38 [ 7] [ 10] [0320073925] +07:31:38 [ 11] [ 6] [107138] +07:31:38 [ 12] [ 6] [073925] +07:31:38 [ 13] [ 4] [0320] +07:31:38 [ 14] [ 4] [4404] +07:31:38 [ 15] [ 4] [0320] +07:31:38 [ 18] [ 4] [6011] +07:31:38 [ 22] [ 3] [900] +07:31:38 [ 25] [ 2] [02] +07:31:38 [ 28] [ 9] [D00002000] +07:31:38 [ 32] [ 6] [220699] +07:31:38 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:31:38 [ 37] [ 12] [507900327777] +07:31:38 [ 41] [ 8] [01001800] +07:31:38 [ 42] [ 15] [APTRA ] +07:31:38 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:31:38 [ 49] [ 3] [418] +07:31:38 [ 52] [ 16] [47284EC6582406A3] +07:31:38 ============================================================================ +07:31:38 + + +waiting on router queue for slot.... +07:31:38 Sending to : <0> +07:31:38 ============================================================================ +07:31:38 ============================================================================ +07:31:38 Slot Id : <249> +07:31:38 Transaction Type : RESPONSE +07:31:38 Received From : +07:31:38 ============================================================================ +07:31:38 FNo. Len. Field Value +07:31:38 ============================================================================ +07:31:38 [ 1] [ 4] [0210] +07:31:38 [ 2] [ 16] [6688990107776005] +07:31:38 [ 3] [ 6] [011000] +07:31:38 [ 4] [ 12] [000003000000] +07:31:38 [ 7] [ 10] [0320073925] +07:31:38 [ 11] [ 6] [107138] +07:31:38 [ 12] [ 6] [073925] +07:31:38 [ 13] [ 4] [0320] +07:31:38 [ 15] [ 4] [0320] +07:31:38 [ 18] [ 4] [6011] +07:31:38 [ 22] [ 3] [900] +07:31:38 [ 32] [ 6] [220699] +07:31:38 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:31:38 [ 37] [ 12] [507900327777] +07:31:38 [ 39] [ 2] [14] +07:31:38 [ 41] [ 8] [01001800] +07:31:38 [ 49] [ 3] [418] +07:31:38 ============================================================================ +07:31:38 Sending to : +07:31:38 ============================================================================ +07:31:38 + + +waiting on router queue for slot.... +07:31:39 ============================================================================ +07:31:39 Slot Id : <249> +07:31:39 Transaction Type : RESPONSE +07:31:39 Received From : +07:31:39 ============================================================================ +07:31:39 FNo. Len. Field Value +07:31:39 ============================================================================ +07:31:39 [ 1] [ 4] [0210] +07:31:39 [ 2] [ 16] [6688990107776005] +07:31:39 [ 3] [ 6] [011000] +07:31:39 [ 4] [ 12] [000003000000] +07:31:39 [ 7] [ 10] [0320073925] +07:31:39 [ 11] [ 6] [107138] +07:31:39 [ 12] [ 6] [073925] +07:31:39 [ 13] [ 4] [0320] +07:31:39 [ 15] [ 4] [0320] +07:31:39 [ 18] [ 4] [6011] +07:31:39 [ 22] [ 3] [900] +07:31:39 [ 32] [ 6] [220699] +07:31:39 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:31:39 [ 37] [ 12] [507900327777] +07:31:39 [ 39] [ 2] [14] +07:31:39 [ 41] [ 8] [01001800] +07:31:39 [ 49] [ 3] [418] +07:31:39 ============================================================================ +07:31:39 Calculate Source COMM Id = 1 +07:31:39 ============================================================================ +07:31:39 + + +waiting on router queue for slot.... +07:31:48 ============================================================================ +07:31:48 Slot Id : <260> +07:31:48 Transaction Type : REQUEST +07:31:48 Received From : +07:31:48 ============================================================================ +07:31:48 FNo. Len. Field Value +07:31:48 ============================================================================ +07:31:48 [ 1] [ 4] [0800] +07:31:48 [ 7] [ 10] [0320144337] +07:31:48 [ 11] [ 6] [074337] +07:31:48 [ 37] [ 12] [57907074337] +07:31:48 [ 70] [ 3] [301] +07:31:48 ============================================================================ +07:31:48 + + +waiting on router queue for slot.... +07:31:48 Sending to : +07:31:48 ============================================================================ +07:31:48 ============================================================================ +07:31:48 Slot Id : <260> +07:31:48 Transaction Type : RESPONSE +07:31:48 Received From : +07:31:48 ============================================================================ +07:31:48 FNo. Len. Field Value +07:31:48 ============================================================================ +07:31:48 [ 1] [ 4] [0810] +07:31:48 [ 7] [ 10] [0320144337] +07:31:48 [ 11] [ 6] [074337] +07:31:48 [ 37] [ 12] [579070743370] +07:31:48 [ 39] [ 2] [00] +07:31:48 [ 70] [ 3] [810] +07:31:48 ============================================================================ +07:31:48 Calculate Source COMM Id = 6 +07:31:48 ============================================================================ +07:31:48 + + +waiting on router queue for slot.... +07:31:49 ============================================================================ +07:31:49 Slot Id : <199> +07:31:49 Transaction Type : REQUEST +07:31:49 Received From : +07:31:49 ============================================================================ +07:31:49 FNo. Len. Field Value +07:31:49 ============================================================================ +07:31:49 [ 1] [ 4] [0800] +07:31:49 [ 7] [ 10] [0320123057] +07:31:49 [ 11] [ 6] [155185] +07:31:49 [ 70] [ 3] [301] +07:31:49 ============================================================================ +07:31:49 + + +waiting on router queue for slot.... +07:31:49 Sending to : +07:31:49 ============================================================================ +07:31:49 ============================================================================ +07:31:49 Slot Id : <199> +07:31:49 Transaction Type : RESPONSE +07:31:49 Received From : +07:31:49 ============================================================================ +07:31:49 FNo. Len. Field Value +07:31:49 ============================================================================ +07:31:49 [ 1] [ 4] [0810] +07:31:49 [ 7] [ 10] [0320123057] +07:31:49 [ 11] [ 6] [155185] +07:31:49 [ 39] [ 2] [00] +07:31:49 [ 70] [ 3] [301] +07:31:49 ============================================================================ +07:31:49 Calculate Source COMM Id = 2 +07:31:49 ============================================================================ +07:31:49 + + +waiting on router queue for slot.... +07:32:00 ============================================================================ +07:32:00 Slot Id : <259> +07:32:00 Transaction Type : REQUEST +07:32:00 Received From : +07:32:00 ============================================================================ +07:32:00 FNo. Len. Field Value +07:32:00 ============================================================================ +07:32:00 [ 1] [ 4] [0800] +07:32:00 [ 7] [ 10] [0320123108] +07:32:00 [ 11] [ 6] [155186] +07:32:00 [ 70] [ 3] [301] +07:32:00 ============================================================================ +07:32:00 + + +waiting on router queue for slot.... +07:32:00 Sending to : +07:32:00 ============================================================================ +07:32:00 ============================================================================ +07:32:00 Slot Id : <259> +07:32:00 Transaction Type : RESPONSE +07:32:00 Received From : +07:32:00 ============================================================================ +07:32:00 FNo. Len. Field Value +07:32:00 ============================================================================ +07:32:00 [ 1] [ 4] [0810] +07:32:00 [ 7] [ 10] [0320123108] +07:32:00 [ 11] [ 6] [155186] +07:32:00 [ 39] [ 2] [00] +07:32:00 [ 70] [ 3] [301] +07:32:00 ============================================================================ +07:32:00 Calculate Source COMM Id = 2 +07:32:00 ============================================================================ +07:32:00 + + +waiting on router queue for slot.... +07:32:01 ============================================================================ +07:32:01 Slot Id : <263> +07:32:01 Transaction Type : REQUEST +07:32:01 Received From : +07:32:01 ============================================================================ +07:32:01 FNo. Len. Field Value +07:32:01 ============================================================================ +07:32:01 [ 1] [ 4] [0200] +07:32:01 [ 2] [ 16] [6213541000108194] +07:32:01 [ 3] [ 6] [011000] +07:32:01 [ 4] [ 12] [000050000000] +07:32:01 [ 7] [ 10] [0320073223] +07:32:01 [ 11] [ 6] [201332] +07:32:01 [ 12] [ 6] [073657] +07:32:01 [ 13] [ 4] [0320] +07:32:01 [ 14] [ 4] [4912] +07:32:01 [ 15] [ 4] [0320] +07:32:01 [ 18] [ 4] [6011] +07:32:01 [ 19] [ 3] [418] +07:32:01 [ 22] [ 3] [021] +07:32:01 [ 25] [ 2] [01] +07:32:01 [ 28] [ 9] [D00002000] +07:32:01 [ 32] [ 6] [198901] +07:32:01 [ 35] [ 32] [6213541000108194=491212010819841] +07:32:01 [ 37] [ 12] [507907201332] +07:32:01 [ 41] [ 8] [00002206] +07:32:01 [ 42] [ 15] [000000041002206] +07:32:01 [ 43] [ 40] [150 HOSPITAL VN ] +07:32:01 [ 49] [ 3] [418] +07:32:01 [ 52] [ 16] [ECEDCCE01AAC5CFD] +07:32:01 ============================================================================ +07:32:01 + + +waiting on router queue for slot.... +07:32:01 Sending to : +07:32:01 ============================================================================ +07:32:01 Sending to : +07:32:01 ============================================================================ +07:32:01 ============================================================================ +07:32:01 Slot Id : <263> +07:32:01 Transaction Type : REQUEST +07:32:01 Received From : +07:32:01 ============================================================================ +07:32:01 FNo. Len. Field Value +07:32:01 ============================================================================ +07:32:01 [ 1] [ 4] [0200] +07:32:01 [ 2] [ 16] [6213541000108194] +07:32:01 [ 3] [ 6] [011000] +07:32:01 [ 4] [ 12] [000050000000] +07:32:01 [ 7] [ 10] [0320073223] +07:32:01 [ 11] [ 6] [201332] +07:32:01 [ 12] [ 6] [073657] +07:32:01 [ 13] [ 4] [0320] +07:32:01 [ 14] [ 4] [4912] +07:32:01 [ 15] [ 4] [0320] +07:32:01 [ 18] [ 4] [6011] +07:32:01 [ 19] [ 3] [418] +07:32:01 [ 22] [ 3] [021] +07:32:01 [ 25] [ 2] [01] +07:32:01 [ 28] [ 9] [D00002000] +07:32:01 [ 32] [ 6] [198901] +07:32:01 [ 35] [ 32] [6213541000108194=491212010819841] +07:32:01 [ 37] [ 12] [507907201332] +07:32:01 [ 41] [ 8] [00002206] +07:32:01 [ 42] [ 15] [000000041002206] +07:32:01 [ 43] [ 40] [150 HOSPITAL VN ] +07:32:01 [ 49] [ 3] [418] +07:32:01 [ 52] [ 16] [ECEDCCE01AAC5CFD] +07:32:01 ============================================================================ +07:32:01 + + +waiting on router queue for slot.... +07:32:01 Sending to : +07:32:01 ============================================================================ +07:32:02 ============================================================================ +07:32:02 Slot Id : <263> +07:32:02 Transaction Type : REQUEST +07:32:02 Received From : +07:32:02 ============================================================================ +07:32:02 FNo. Len. Field Value +07:32:02 ============================================================================ +07:32:02 [ 1] [ 4] [0200] +07:32:02 [ 2] [ 16] [6213541000108194] +07:32:02 [ 3] [ 6] [011000] +07:32:02 [ 4] [ 12] [000050000000] +07:32:02 [ 7] [ 10] [0320073223] +07:32:02 [ 11] [ 6] [201332] +07:32:02 [ 12] [ 6] [073657] +07:32:02 [ 13] [ 4] [0320] +07:32:02 [ 14] [ 4] [4912] +07:32:02 [ 15] [ 4] [0320] +07:32:02 [ 18] [ 4] [6011] +07:32:02 [ 19] [ 3] [418] +07:32:02 [ 22] [ 3] [021] +07:32:02 [ 25] [ 2] [01] +07:32:02 [ 28] [ 9] [D00002000] +07:32:02 [ 32] [ 6] [198901] +07:32:02 [ 35] [ 32] [6213541000108194=491212010819841] +07:32:02 [ 37] [ 12] [507907201332] +07:32:02 [ 41] [ 8] [00002206] +07:32:02 [ 42] [ 15] [000000041002206] +07:32:02 [ 43] [ 40] [150 HOSPITAL VN ] +07:32:02 [ 49] [ 3] [418] +07:32:02 [ 52] [ 16] [398D31243EB41B58] +07:32:02 ============================================================================ +07:32:02 + + +waiting on router queue for slot.... +07:32:02 Sending to : <0> +07:32:02 ============================================================================ +07:32:02 ============================================================================ +07:32:02 Slot Id : <263> +07:32:02 Transaction Type : RESPONSE +07:32:02 Received From : +07:32:02 ============================================================================ +07:32:02 FNo. Len. Field Value +07:32:02 ============================================================================ +07:32:02 [ 1] [ 4] [0210] +07:32:02 [ 2] [ 16] [6213541000108194] +07:32:02 [ 3] [ 6] [011000] +07:32:02 [ 4] [ 12] [000050000000] +07:32:02 [ 7] [ 10] [0320073223] +07:32:02 [ 11] [ 6] [201332] +07:32:02 [ 12] [ 6] [073657] +07:32:02 [ 13] [ 4] [0320] +07:32:02 [ 15] [ 4] [0320] +07:32:02 [ 18] [ 4] [6011] +07:32:02 [ 19] [ 3] [418] +07:32:02 [ 32] [ 6] [198901] +07:32:02 [ 35] [ 32] [6213541000108194=491212010819841] +07:32:02 [ 37] [ 12] [507907201332] +07:32:02 [ 38] [ 6] [201332] +07:32:02 [ 39] [ 2] [51] +07:32:02 [ 41] [ 8] [00002206] +07:32:02 [ 49] [ 3] [418] +07:32:02 [ 54] [ 40] [1001418C0000479216771002418C000047921677] +07:32:02 ============================================================================ +07:32:02 Sending to : +07:32:02 ============================================================================ +07:32:02 + + +waiting on router queue for slot.... +07:32:03 ============================================================================ +07:32:03 Slot Id : <263> +07:32:03 Transaction Type : RESPONSE +07:32:03 Received From : +07:32:03 ============================================================================ +07:32:03 FNo. Len. Field Value +07:32:03 ============================================================================ +07:32:03 [ 1] [ 4] [0210] +07:32:03 [ 2] [ 16] [6213541000108194] +07:32:03 [ 3] [ 6] [011000] +07:32:03 [ 4] [ 12] [000050000000] +07:32:03 [ 7] [ 10] [0320073223] +07:32:03 [ 11] [ 6] [201332] +07:32:03 [ 12] [ 6] [073657] +07:32:03 [ 13] [ 4] [0320] +07:32:03 [ 15] [ 4] [0320] +07:32:03 [ 18] [ 4] [6011] +07:32:03 [ 19] [ 3] [418] +07:32:03 [ 32] [ 6] [198901] +07:32:03 [ 35] [ 32] [6213541000108194=491212010819841] +07:32:03 [ 37] [ 12] [507907201332] +07:32:03 [ 38] [ 6] [201332] +07:32:03 [ 39] [ 2] [51] +07:32:03 [ 41] [ 8] [00002206] +07:32:03 [ 49] [ 3] [418] +07:32:03 [ 54] [ 40] [1001418C0000479216771002418C000047921677] +07:32:03 ============================================================================ +07:32:03 Calculate Source COMM Id = 5 +07:32:03 ============================================================================ +07:32:03 + + +waiting on router queue for slot.... +07:32:08 ============================================================================ +07:32:08 Slot Id : <270> +07:32:08 Transaction Type : REQUEST +07:32:08 Received From : +07:32:08 ============================================================================ +07:32:08 FNo. Len. Field Value +07:32:08 ============================================================================ +07:32:08 [ 1] [ 4] [0200] +07:32:08 [ 2] [ 16] [6688990103283808] +07:32:08 [ 3] [ 6] [013000] +07:32:08 [ 4] [ 12] [000050000000] +07:32:08 [ 7] [ 10] [0320073204] +07:32:08 [ 11] [ 6] [670924] +07:32:08 [ 12] [ 6] [073204] +07:32:08 [ 13] [ 4] [0320] +07:32:08 [ 15] [ 4] [0320] +07:32:08 [ 18] [ 4] [6011] +07:32:08 [ 22] [ 3] [900] +07:32:08 [ 25] [ 2] [02] +07:32:08 [ 28] [ 9] [D00002000] +07:32:08 [ 32] [ 6] [621354] +07:32:08 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:32:08 [ 37] [ 12] [507903499447] +07:32:08 [ 41] [ 8] [06002200] +07:32:08 [ 42] [ 15] [NATIVE ] +07:32:08 [ 43] [ 40] [Beng Market Beng LAO] +07:32:08 [ 49] [ 3] [418] +07:32:08 [ 52] [ 16] [9A276BA769B47746] +07:32:08 ============================================================================ +07:32:08 + + +waiting on router queue for slot.... +07:32:08 Sending to : +07:32:08 ============================================================================ +07:32:08 Sending to : +07:32:08 ============================================================================ +07:32:08 ============================================================================ +07:32:08 Slot Id : <270> +07:32:08 Transaction Type : REQUEST +07:32:08 Received From : +07:32:08 ============================================================================ +07:32:08 FNo. Len. Field Value +07:32:08 ============================================================================ +07:32:08 [ 1] [ 4] [0200] +07:32:08 [ 2] [ 16] [6688990103283808] +07:32:08 [ 3] [ 6] [013000] +07:32:08 [ 4] [ 12] [000050000000] +07:32:08 [ 7] [ 10] [0320073204] +07:32:08 [ 11] [ 6] [670924] +07:32:08 [ 12] [ 6] [073204] +07:32:08 [ 13] [ 4] [0320] +07:32:08 [ 15] [ 4] [0320] +07:32:08 [ 18] [ 4] [6011] +07:32:08 [ 22] [ 3] [900] +07:32:08 [ 25] [ 2] [02] +07:32:08 [ 28] [ 9] [D00002000] +07:32:08 [ 32] [ 6] [621354] +07:32:08 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:32:08 [ 37] [ 12] [507903499447] +07:32:08 [ 41] [ 8] [06002200] +07:32:08 [ 42] [ 15] [NATIVE ] +07:32:08 [ 43] [ 40] [Beng Market Beng LAO] +07:32:08 [ 49] [ 3] [418] +07:32:08 [ 52] [ 16] [9A276BA769B47746] +07:32:08 ============================================================================ +07:32:08 + + +waiting on router queue for slot.... +07:32:08 Sending to : +07:32:08 ============================================================================ +07:32:08 ============================================================================ +07:32:08 Slot Id : <270> +07:32:08 Transaction Type : REQUEST +07:32:08 Received From : +07:32:08 ============================================================================ +07:32:08 FNo. Len. Field Value +07:32:08 ============================================================================ +07:32:08 [ 1] [ 4] [0200] +07:32:08 [ 2] [ 16] [6688990103283808] +07:32:08 [ 3] [ 6] [013000] +07:32:08 [ 4] [ 12] [000050000000] +07:32:08 [ 7] [ 10] [0320073204] +07:32:08 [ 11] [ 6] [670924] +07:32:08 [ 12] [ 6] [073204] +07:32:08 [ 13] [ 4] [0320] +07:32:08 [ 15] [ 4] [0320] +07:32:08 [ 18] [ 4] [6011] +07:32:08 [ 22] [ 3] [900] +07:32:08 [ 25] [ 2] [02] +07:32:08 [ 28] [ 9] [D00002000] +07:32:08 [ 32] [ 6] [621354] +07:32:08 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:32:08 [ 37] [ 12] [507903499447] +07:32:08 [ 41] [ 8] [06002200] +07:32:08 [ 42] [ 15] [NATIVE ] +07:32:08 [ 43] [ 40] [Beng Market Beng LAO] +07:32:08 [ 49] [ 3] [418] +07:32:08 [ 52] [ 16] [86FF75AE9775DC51] +07:32:08 ============================================================================ +07:32:08 + + +waiting on router queue for slot.... +07:32:08 Sending to : <4> +07:32:08 ============================================================================ +07:32:09 ============================================================================ +07:32:09 Slot Id : <270> +07:32:09 Transaction Type : RESPONSE +07:32:09 Received From : +07:32:09 ============================================================================ +07:32:09 FNo. Len. Field Value +07:32:09 ============================================================================ +07:32:09 [ 1] [ 4] [0210] +07:32:09 [ 2] [ 16] [6688990103283808] +07:32:09 [ 3] [ 6] [013000] +07:32:09 [ 4] [ 12] [000050000000] +07:32:09 [ 11] [ 6] [670924] +07:32:09 [ 12] [ 6] [073204] +07:32:09 [ 15] [ 4] [0320] +07:32:09 [ 18] [ 4] [6011] +07:32:09 [ 32] [ 6] [621354] +07:32:09 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:32:09 [ 37] [ 12] [507903499447] +07:32:09 [ 38] [ 6] [380730] +07:32:09 [ 39] [ 2] [00] +07:32:09 [ 41] [ 8] [06002200] +07:32:09 [ 49] [ 3] [418] +07:32:09 [ 54] [ 20] [3002418C000007133955] +07:32:09 ============================================================================ +07:32:09 Sending to : +07:32:09 ============================================================================ +07:32:09 + + +waiting on router queue for slot.... +07:32:10 ============================================================================ +07:32:10 Slot Id : <261> +07:32:10 Transaction Type : REQUEST +07:32:10 Received From : +07:32:10 ============================================================================ +07:32:10 FNo. Len. Field Value +07:32:10 ============================================================================ +07:32:10 [ 1] [ 4] [0800] +07:32:10 [ 2] [ 5] [02531] +07:32:10 [ 3] [ 6] [579078] +07:32:10 [ 7] [ 10] [0320003210] +07:32:10 [ 11] [ 6] [806849] +07:32:10 [ 15] [ 10] [0320003210] +07:32:10 [ 37] [ 11] [57907806849] +07:32:10 [ 70] [ 3] [001] +07:32:10 ============================================================================ +07:32:10 + + +waiting on router queue for slot.... +07:32:10 ============================================================================ +07:32:10 Slot Id : <261> +07:32:10 Transaction Type : RESPONSE +07:32:10 Received From : +07:32:10 ============================================================================ +07:32:10 FNo. Len. Field Value +07:32:10 ============================================================================ +07:32:10 [ 1] [ 4] [0810] +07:32:10 [ 7] [ 10] [0320003210] +07:32:10 [ 11] [ 6] [806849] +07:32:10 [ 15] [ 4] [0320] +07:32:10 [ 37] [ 12] [57907806849] +07:32:10 [ 39] [ 2] [00] +07:32:10 [ 70] [ 3] [001] +07:32:10 ============================================================================ +07:32:10 Sending to : +07:32:10 ============================================================================ +07:32:10 + + +waiting on router queue for slot.... +07:32:11 ============================================================================ +07:32:11 Slot Id : <270> +07:32:11 Transaction Type : RESPONSE +07:32:11 Received From : +07:32:11 ============================================================================ +07:32:11 FNo. Len. Field Value +07:32:11 ============================================================================ +07:32:11 [ 1] [ 4] [0210] +07:32:11 [ 2] [ 16] [6688990103283808] +07:32:11 [ 3] [ 6] [013000] +07:32:11 [ 4] [ 12] [000050000000] +07:32:11 [ 11] [ 6] [670924] +07:32:11 [ 12] [ 6] [073204] +07:32:11 [ 15] [ 4] [0320] +07:32:11 [ 18] [ 4] [6011] +07:32:11 [ 32] [ 6] [621354] +07:32:11 [ 35] [ 37] [6688990103283808=42121231380854400000] +07:32:11 [ 37] [ 12] [507903499447] +07:32:11 [ 38] [ 6] [380730] +07:32:11 [ 39] [ 2] [00] +07:32:11 [ 41] [ 8] [06002200] +07:32:11 [ 49] [ 3] [418] +07:32:11 [ 54] [ 20] [3002418C000007133955] +07:32:11 ============================================================================ +07:32:11 Calculate Source COMM Id = 0 +07:32:11 ============================================================================ +07:32:11 + + +waiting on router queue for slot.... +07:32:14 ============================================================================ +07:32:14 Slot Id : <269> +07:32:14 Transaction Type : REQUEST +07:32:14 Received From : +07:32:14 ============================================================================ +07:32:14 FNo. Len. Field Value +07:32:14 ============================================================================ +07:32:14 [ 1] [ 4] [0800] +07:32:14 [ 7] [ 10] [0320123123] +07:32:14 [ 11] [ 6] [155187] +07:32:14 [ 70] [ 3] [301] +07:32:14 ============================================================================ +07:32:14 + + +waiting on router queue for slot.... +07:32:14 Sending to : +07:32:14 ============================================================================ +07:32:14 ============================================================================ +07:32:14 Slot Id : <269> +07:32:14 Transaction Type : RESPONSE +07:32:14 Received From : +07:32:14 ============================================================================ +07:32:14 FNo. Len. Field Value +07:32:14 ============================================================================ +07:32:14 [ 1] [ 4] [0810] +07:32:14 [ 7] [ 10] [0320123123] +07:32:14 [ 11] [ 6] [155187] +07:32:14 [ 39] [ 2] [00] +07:32:14 [ 70] [ 3] [301] +07:32:14 ============================================================================ +07:32:14 Calculate Source COMM Id = 2 +07:32:14 ============================================================================ +07:32:14 + + +waiting on router queue for slot.... +07:32:16 ============================================================================ +07:32:16 Slot Id : <240> +07:32:16 Transaction Type : REQUEST +07:32:16 Received From : +07:32:16 ============================================================================ +07:32:16 FNo. Len. Field Value +07:32:16 ============================================================================ +07:32:16 [ 1] [ 4] [0200] +07:32:16 [ 2] [ 16] [6213541000108194] +07:32:16 [ 3] [ 6] [301000] +07:32:16 [ 4] [ 12] [000000000000] +07:32:16 [ 7] [ 10] [0320073238] +07:32:16 [ 11] [ 6] [201335] +07:32:16 [ 12] [ 6] [073712] +07:32:16 [ 13] [ 4] [0320] +07:32:16 [ 14] [ 4] [4912] +07:32:16 [ 15] [ 4] [0320] +07:32:16 [ 18] [ 4] [6011] +07:32:16 [ 19] [ 3] [418] +07:32:16 [ 22] [ 3] [021] +07:32:16 [ 25] [ 2] [01] +07:32:16 [ 28] [ 9] [D00000000] +07:32:16 [ 32] [ 6] [198901] +07:32:16 [ 35] [ 32] [6213541000108194=491212010819841] +07:32:16 [ 37] [ 12] [507907201335] +07:32:16 [ 41] [ 8] [00002206] +07:32:16 [ 42] [ 15] [000000041002206] +07:32:16 [ 43] [ 40] [150 HOSPITAL VN ] +07:32:16 [ 49] [ 3] [418] +07:32:16 [ 52] [ 16] [ECEDCCE01AAC5CFD] +07:32:16 ============================================================================ +07:32:16 + + +waiting on router queue for slot.... +07:32:16 Sending to : +07:32:16 ============================================================================ +07:32:16 Sending to : +07:32:16 ============================================================================ +07:32:16 ============================================================================ +07:32:16 Slot Id : <240> +07:32:16 Transaction Type : REQUEST +07:32:16 Received From : +07:32:16 ============================================================================ +07:32:16 FNo. Len. Field Value +07:32:16 ============================================================================ +07:32:16 [ 1] [ 4] [0200] +07:32:16 [ 2] [ 16] [6213541000108194] +07:32:16 [ 3] [ 6] [301000] +07:32:16 [ 4] [ 12] [000000000000] +07:32:16 [ 7] [ 10] [0320073238] +07:32:16 [ 11] [ 6] [201335] +07:32:16 [ 12] [ 6] [073712] +07:32:16 [ 13] [ 4] [0320] +07:32:16 [ 14] [ 4] [4912] +07:32:16 [ 15] [ 4] [0320] +07:32:16 [ 18] [ 4] [6011] +07:32:16 [ 19] [ 3] [418] +07:32:16 [ 22] [ 3] [021] +07:32:16 [ 25] [ 2] [01] +07:32:16 [ 28] [ 9] [D00000000] +07:32:16 [ 32] [ 6] [198901] +07:32:16 [ 35] [ 32] [6213541000108194=491212010819841] +07:32:16 [ 37] [ 12] [507907201335] +07:32:16 [ 41] [ 8] [00002206] +07:32:16 [ 42] [ 15] [000000041002206] +07:32:16 [ 43] [ 40] [150 HOSPITAL VN ] +07:32:16 [ 49] [ 3] [418] +07:32:16 [ 52] [ 16] [ECEDCCE01AAC5CFD] +07:32:16 ============================================================================ +07:32:16 + + +waiting on router queue for slot.... +07:32:16 Sending to : +07:32:16 ============================================================================ +07:32:16 ============================================================================ +07:32:16 Slot Id : <240> +07:32:16 Transaction Type : REQUEST +07:32:16 Received From : +07:32:16 ============================================================================ +07:32:16 FNo. Len. Field Value +07:32:16 ============================================================================ +07:32:16 [ 1] [ 4] [0200] +07:32:16 [ 2] [ 16] [6213541000108194] +07:32:16 [ 3] [ 6] [301000] +07:32:16 [ 4] [ 12] [000000000000] +07:32:16 [ 7] [ 10] [0320073238] +07:32:16 [ 11] [ 6] [201335] +07:32:16 [ 12] [ 6] [073712] +07:32:16 [ 13] [ 4] [0320] +07:32:16 [ 14] [ 4] [4912] +07:32:16 [ 15] [ 4] [0320] +07:32:16 [ 18] [ 4] [6011] +07:32:16 [ 19] [ 3] [418] +07:32:16 [ 22] [ 3] [021] +07:32:16 [ 25] [ 2] [01] +07:32:16 [ 28] [ 9] [D00000000] +07:32:16 [ 32] [ 6] [198901] +07:32:16 [ 35] [ 32] [6213541000108194=491212010819841] +07:32:16 [ 37] [ 12] [507907201335] +07:32:16 [ 41] [ 8] [00002206] +07:32:16 [ 42] [ 15] [000000041002206] +07:32:16 [ 43] [ 40] [150 HOSPITAL VN ] +07:32:16 [ 49] [ 3] [418] +07:32:16 [ 52] [ 16] [398D31243EB41B58] +07:32:16 ============================================================================ +07:32:16 + + +waiting on router queue for slot.... +07:32:16 Sending to : <0> +07:32:16 ============================================================================ +07:32:17 ============================================================================ +07:32:17 Slot Id : <240> +07:32:17 Transaction Type : RESPONSE +07:32:17 Received From : +07:32:17 ============================================================================ +07:32:17 FNo. Len. Field Value +07:32:17 ============================================================================ +07:32:17 [ 1] [ 4] [0210] +07:32:17 [ 2] [ 16] [6213541000108194] +07:32:17 [ 3] [ 6] [301000] +07:32:17 [ 4] [ 12] [000000000000] +07:32:17 [ 7] [ 10] [0320073238] +07:32:17 [ 11] [ 6] [201335] +07:32:17 [ 12] [ 6] [073712] +07:32:17 [ 13] [ 4] [0320] +07:32:17 [ 15] [ 4] [0320] +07:32:17 [ 18] [ 4] [6011] +07:32:17 [ 19] [ 3] [418] +07:32:17 [ 32] [ 6] [198901] +07:32:17 [ 35] [ 32] [6213541000108194=491212010819841] +07:32:17 [ 37] [ 12] [507907201335] +07:32:17 [ 38] [ 6] [214364] +07:32:17 [ 39] [ 2] [00] +07:32:17 [ 41] [ 8] [00002206] +07:32:17 [ 49] [ 3] [418] +07:32:17 [ 54] [ 40] [1001418C0000479216771002418C000047921677] +07:32:17 ============================================================================ +07:32:17 Sending to : +07:32:17 ============================================================================ +07:32:17 + + +waiting on router queue for slot.... +07:32:17 ============================================================================ +07:32:17 Slot Id : <197> +07:32:17 Transaction Type : REQUEST +07:32:17 Received From : +07:32:17 ============================================================================ +07:32:17 FNo. Len. Field Value +07:32:17 ============================================================================ +07:32:17 [ 1] [ 4] [0200] +07:32:17 [ 2] [ 16] [6213545000707467] +07:32:17 [ 3] [ 6] [010000] +07:32:17 [ 4] [ 12] [000070000000] +07:32:17 [ 7] [ 10] [0320073009] +07:32:17 [ 11] [ 6] [930421] +07:32:17 [ 12] [ 6] [073009] +07:32:17 [ 13] [ 4] [0320] +07:32:17 [ 15] [ 4] [0320] +07:32:17 [ 18] [ 4] [6011] +07:32:17 [ 19] [ 3] [418] +07:32:17 [ 22] [ 3] [021] +07:32:17 [ 25] [ 2] [01] +07:32:17 [ 28] [ 9] [D00002000] +07:32:17 [ 32] [ 6] [668899] +07:32:17 [ 35] [ 32] [6213545000707467=491212010746251] +07:32:17 [ 37] [ 12] [507902150922] +07:32:17 [ 41] [ 8] [03020025] +07:32:17 [ 42] [ 15] [APT ] +07:32:17 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +07:32:17 [ 49] [ 3] [418] +07:32:17 [ 52] [ 16] [375CC3BEAD298327] +07:32:17 ============================================================================ +07:32:17 + + +waiting on router queue for slot.... +07:32:17 Sending to : +07:32:17 ============================================================================ +07:32:17 Sending to : +07:32:17 ============================================================================ +07:32:18 ============================================================================ +07:32:18 Slot Id : <197> +07:32:18 Transaction Type : REQUEST +07:32:18 Received From : +07:32:18 ============================================================================ +07:32:18 FNo. Len. Field Value +07:32:18 ============================================================================ +07:32:18 [ 1] [ 4] [0200] +07:32:18 [ 2] [ 16] [6213545000707467] +07:32:18 [ 3] [ 6] [010000] +07:32:18 [ 4] [ 12] [000070000000] +07:32:18 [ 7] [ 10] [0320073009] +07:32:18 [ 11] [ 6] [930421] +07:32:18 [ 12] [ 6] [073009] +07:32:18 [ 13] [ 4] [0320] +07:32:18 [ 15] [ 4] [0320] +07:32:18 [ 18] [ 4] [6011] +07:32:18 [ 19] [ 3] [418] +07:32:18 [ 22] [ 3] [021] +07:32:18 [ 25] [ 2] [01] +07:32:18 [ 28] [ 9] [D00002000] +07:32:18 [ 32] [ 6] [668899] +07:32:18 [ 35] [ 32] [6213545000707467=491212010746251] +07:32:18 [ 37] [ 12] [507902150922] +07:32:18 [ 41] [ 8] [03020025] +07:32:18 [ 42] [ 15] [APT ] +07:32:18 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +07:32:18 [ 49] [ 3] [418] +07:32:18 [ 52] [ 16] [375CC3BEAD298327] +07:32:18 ============================================================================ +07:32:18 + + +waiting on router queue for slot.... +07:32:18 Sending to : +07:32:18 ============================================================================ +07:32:18 ============================================================================ +07:32:18 Slot Id : <197> +07:32:18 Transaction Type : REQUEST +07:32:18 Received From : +07:32:18 ============================================================================ +07:32:18 FNo. Len. Field Value +07:32:18 ============================================================================ +07:32:18 [ 1] [ 4] [0200] +07:32:18 [ 2] [ 16] [6213545000707467] +07:32:18 [ 3] [ 6] [010000] +07:32:18 [ 4] [ 12] [000070000000] +07:32:18 [ 7] [ 10] [0320073009] +07:32:18 [ 11] [ 6] [930421] +07:32:18 [ 12] [ 6] [073009] +07:32:18 [ 13] [ 4] [0320] +07:32:18 [ 15] [ 4] [0320] +07:32:18 [ 18] [ 4] [6011] +07:32:18 [ 19] [ 3] [418] +07:32:18 [ 22] [ 3] [021] +07:32:18 [ 25] [ 2] [01] +07:32:18 [ 28] [ 9] [D00002000] +07:32:18 [ 32] [ 6] [668899] +07:32:18 [ 35] [ 32] [6213545000707467=491212010746251] +07:32:18 [ 37] [ 12] [507902150922] +07:32:18 [ 41] [ 8] [03020025] +07:32:18 [ 42] [ 15] [APT ] +07:32:18 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +07:32:18 [ 49] [ 3] [418] +07:32:18 [ 52] [ 16] [2A35CBE5875D3BA9] +07:32:18 ============================================================================ +07:32:18 + + +waiting on router queue for slot.... +07:32:18 Sending to : <0> +07:32:18 ============================================================================ +07:32:18 ============================================================================ +07:32:18 Slot Id : <197> +07:32:18 Transaction Type : RESPONSE +07:32:18 Received From : +07:32:18 ============================================================================ +07:32:18 FNo. Len. Field Value +07:32:18 ============================================================================ +07:32:18 [ 1] [ 4] [0210] +07:32:18 [ 2] [ 16] [6213545000707467] +07:32:18 [ 3] [ 6] [010000] +07:32:18 [ 4] [ 12] [000070000000] +07:32:18 [ 7] [ 10] [0320073009] +07:32:18 [ 11] [ 6] [930421] +07:32:18 [ 12] [ 6] [073009] +07:32:18 [ 13] [ 4] [0320] +07:32:18 [ 15] [ 4] [0320] +07:32:18 [ 18] [ 4] [6011] +07:32:18 [ 19] [ 3] [418] +07:32:18 [ 32] [ 6] [668899] +07:32:18 [ 35] [ 32] [6213545000707467=491212010746251] +07:32:18 [ 37] [ 12] [507902150922] +07:32:18 [ 38] [ 6] [733460] +07:32:18 [ 39] [ 2] [00] +07:32:18 [ 41] [ 8] [03020025] +07:32:18 [ 49] [ 3] [418] +07:32:18 [ 54] [ 40] [0001418C0000193947000002418C000019394700] +07:32:18 ============================================================================ +07:32:18 Sending to : +07:32:18 ============================================================================ +07:32:18 + + +waiting on router queue for slot.... +07:32:18 ============================================================================ +07:32:18 Slot Id : <240> +07:32:18 Transaction Type : RESPONSE +07:32:18 Received From : +07:32:18 ============================================================================ +07:32:18 FNo. Len. Field Value +07:32:18 ============================================================================ +07:32:18 [ 1] [ 4] [0210] +07:32:18 [ 2] [ 16] [6213541000108194] +07:32:18 [ 3] [ 6] [301000] +07:32:18 [ 4] [ 12] [000000000000] +07:32:18 [ 7] [ 10] [0320073238] +07:32:18 [ 11] [ 6] [201335] +07:32:18 [ 12] [ 6] [073712] +07:32:18 [ 13] [ 4] [0320] +07:32:18 [ 15] [ 4] [0320] +07:32:18 [ 18] [ 4] [6011] +07:32:18 [ 19] [ 3] [418] +07:32:18 [ 32] [ 6] [198901] +07:32:18 [ 35] [ 32] [6213541000108194=491212010819841] +07:32:18 [ 37] [ 12] [507907201335] +07:32:18 [ 38] [ 6] [214364] +07:32:18 [ 39] [ 2] [00] +07:32:18 [ 41] [ 8] [00002206] +07:32:18 [ 49] [ 3] [418] +07:32:18 [ 54] [ 40] [1001418C0000479216771002418C000047921677] +07:32:18 ============================================================================ +07:32:18 Calculate Source COMM Id = 5 +07:32:18 ============================================================================ +07:32:18 + + +waiting on router queue for slot.... +07:32:20 ============================================================================ +07:32:20 Slot Id : <197> +07:32:20 Transaction Type : RESPONSE +07:32:20 Received From : +07:32:20 ============================================================================ +07:32:20 FNo. Len. Field Value +07:32:20 ============================================================================ +07:32:20 [ 1] [ 4] [0210] +07:32:20 [ 2] [ 16] [6213545000707467] +07:32:20 [ 3] [ 6] [010000] +07:32:20 [ 4] [ 12] [000070000000] +07:32:20 [ 7] [ 10] [0320073009] +07:32:20 [ 11] [ 6] [930421] +07:32:20 [ 12] [ 6] [073009] +07:32:20 [ 13] [ 4] [0320] +07:32:20 [ 15] [ 4] [0320] +07:32:20 [ 18] [ 4] [6011] +07:32:20 [ 19] [ 3] [418] +07:32:20 [ 32] [ 6] [668899] +07:32:20 [ 35] [ 32] [6213545000707467=491212010746251] +07:32:20 [ 37] [ 12] [507902150922] +07:32:20 [ 38] [ 6] [733460] +07:32:20 [ 39] [ 2] [00] +07:32:20 [ 41] [ 8] [03020025] +07:32:20 [ 49] [ 3] [418] +07:32:20 [ 54] [ 40] [0001418C0000193947000002418C000019394700] +07:32:20 ============================================================================ +07:32:20 Calculate Source COMM Id = 4 +07:32:20 ============================================================================ +07:32:20 + + +waiting on router queue for slot.... +07:32:23 ============================================================================ +07:32:23 Slot Id : <256> +07:32:23 Transaction Type : REQUEST +07:32:23 Received From : +07:32:23 ============================================================================ +07:32:23 FNo. Len. Field Value +07:32:23 ============================================================================ +07:32:23 [ 1] [ 4] [0200] +07:32:23 [ 2] [ 16] [6688990107776005] +07:32:23 [ 3] [ 6] [011000] +07:32:23 [ 4] [ 12] [000005000000] +07:32:23 [ 7] [ 10] [0320074010] +07:32:23 [ 11] [ 6] [107141] +07:32:23 [ 12] [ 6] [074010] +07:32:23 [ 13] [ 4] [0320] +07:32:23 [ 14] [ 4] [4404] +07:32:23 [ 15] [ 4] [0320] +07:32:23 [ 18] [ 4] [6011] +07:32:23 [ 22] [ 3] [900] +07:32:23 [ 25] [ 2] [02] +07:32:23 [ 28] [ 9] [D00002000] +07:32:23 [ 32] [ 6] [220699] +07:32:23 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:32:23 [ 37] [ 12] [507900327779] +07:32:23 [ 41] [ 8] [01001800] +07:32:23 [ 42] [ 15] [APTRA ] +07:32:23 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:32:23 [ 49] [ 3] [418] +07:32:23 [ 52] [ 16] [E5A16481465AC9A5] +07:32:23 ============================================================================ +07:32:23 + + +waiting on router queue for slot.... +07:32:23 Sending to : +07:32:23 ============================================================================ +07:32:23 Sending to : +07:32:23 ============================================================================ +07:32:23 ============================================================================ +07:32:23 Slot Id : <256> +07:32:23 Transaction Type : REQUEST +07:32:23 Received From : +07:32:23 ============================================================================ +07:32:23 FNo. Len. Field Value +07:32:23 ============================================================================ +07:32:23 [ 1] [ 4] [0200] +07:32:23 [ 2] [ 16] [6688990107776005] +07:32:23 [ 3] [ 6] [011000] +07:32:23 [ 4] [ 12] [000005000000] +07:32:23 [ 7] [ 10] [0320074010] +07:32:23 [ 11] [ 6] [107141] +07:32:23 [ 12] [ 6] [074010] +07:32:23 [ 13] [ 4] [0320] +07:32:23 [ 14] [ 4] [4404] +07:32:23 [ 15] [ 4] [0320] +07:32:23 [ 18] [ 4] [6011] +07:32:23 [ 22] [ 3] [900] +07:32:23 [ 25] [ 2] [02] +07:32:23 [ 28] [ 9] [D00002000] +07:32:23 [ 32] [ 6] [220699] +07:32:23 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:32:23 [ 37] [ 12] [507900327779] +07:32:23 [ 41] [ 8] [01001800] +07:32:23 [ 42] [ 15] [APTRA ] +07:32:23 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:32:23 [ 49] [ 3] [418] +07:32:23 [ 52] [ 16] [E5A16481465AC9A5] +07:32:23 ============================================================================ +07:32:23 + + +waiting on router queue for slot.... +07:32:23 Sending to : +07:32:23 ============================================================================ +07:32:23 ============================================================================ +07:32:23 Slot Id : <256> +07:32:23 Transaction Type : REQUEST +07:32:23 Received From : +07:32:23 ============================================================================ +07:32:23 FNo. Len. Field Value +07:32:23 ============================================================================ +07:32:23 [ 1] [ 4] [0200] +07:32:23 [ 2] [ 16] [6688990107776005] +07:32:23 [ 3] [ 6] [011000] +07:32:23 [ 4] [ 12] [000005000000] +07:32:23 [ 7] [ 10] [0320074010] +07:32:23 [ 11] [ 6] [107141] +07:32:23 [ 12] [ 6] [074010] +07:32:23 [ 13] [ 4] [0320] +07:32:23 [ 14] [ 4] [4404] +07:32:23 [ 15] [ 4] [0320] +07:32:23 [ 18] [ 4] [6011] +07:32:23 [ 22] [ 3] [900] +07:32:23 [ 25] [ 2] [02] +07:32:23 [ 28] [ 9] [D00002000] +07:32:23 [ 32] [ 6] [220699] +07:32:23 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:32:23 [ 37] [ 12] [507900327779] +07:32:23 [ 41] [ 8] [01001800] +07:32:23 [ 42] [ 15] [APTRA ] +07:32:23 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:32:23 [ 49] [ 3] [418] +07:32:23 [ 52] [ 16] [47284EC6582406A3] +07:32:23 ============================================================================ +07:32:23 + + +waiting on router queue for slot.... +07:32:23 Sending to : <0> +07:32:23 ============================================================================ +07:32:23 ============================================================================ +07:32:23 Slot Id : <256> +07:32:23 Transaction Type : RESPONSE +07:32:23 Received From : +07:32:23 ============================================================================ +07:32:23 FNo. Len. Field Value +07:32:23 ============================================================================ +07:32:23 [ 1] [ 4] [0210] +07:32:23 [ 2] [ 16] [6688990107776005] +07:32:23 [ 3] [ 6] [011000] +07:32:23 [ 4] [ 12] [000005000000] +07:32:23 [ 7] [ 10] [0320074010] +07:32:23 [ 11] [ 6] [107141] +07:32:23 [ 12] [ 6] [074010] +07:32:23 [ 13] [ 4] [0320] +07:32:23 [ 15] [ 4] [0320] +07:32:23 [ 18] [ 4] [6011] +07:32:23 [ 22] [ 3] [900] +07:32:23 [ 32] [ 6] [220699] +07:32:23 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:32:23 [ 37] [ 12] [507900327779] +07:32:23 [ 39] [ 2] [14] +07:32:23 [ 41] [ 8] [01001800] +07:32:23 [ 49] [ 3] [418] +07:32:23 ============================================================================ +07:32:23 Sending to : +07:32:23 ============================================================================ +07:32:23 + + +waiting on router queue for slot.... +07:32:24 ============================================================================ +07:32:24 Slot Id : <256> +07:32:24 Transaction Type : RESPONSE +07:32:24 Received From : +07:32:24 ============================================================================ +07:32:24 FNo. Len. Field Value +07:32:24 ============================================================================ +07:32:24 [ 1] [ 4] [0210] +07:32:24 [ 2] [ 16] [6688990107776005] +07:32:24 [ 3] [ 6] [011000] +07:32:24 [ 4] [ 12] [000005000000] +07:32:24 [ 7] [ 10] [0320074010] +07:32:24 [ 11] [ 6] [107141] +07:32:24 [ 12] [ 6] [074010] +07:32:24 [ 13] [ 4] [0320] +07:32:24 [ 15] [ 4] [0320] +07:32:24 [ 18] [ 4] [6011] +07:32:24 [ 22] [ 3] [900] +07:32:24 [ 32] [ 6] [220699] +07:32:24 [ 35] [ 37] [6688990107776005=44041231600549000000] +07:32:24 [ 37] [ 12] [507900327779] +07:32:24 [ 39] [ 2] [14] +07:32:24 [ 41] [ 8] [01001800] +07:32:24 [ 49] [ 3] [418] +07:32:24 ============================================================================ +07:32:24 Calculate Source COMM Id = 1 +07:32:24 ============================================================================ +07:32:24 + + +waiting on router queue for slot.... +07:32:25 ============================================================================ +07:32:25 Slot Id : <228> +07:32:25 Transaction Type : REQUEST +07:32:25 Received From : +07:32:25 ============================================================================ +07:32:25 FNo. Len. Field Value +07:32:25 ============================================================================ +07:32:25 [ 1] [ 4] [0800] +07:32:25 [ 7] [ 10] [0320123133] +07:32:25 [ 11] [ 6] [155188] +07:32:25 [ 70] [ 3] [301] +07:32:25 ============================================================================ +07:32:25 + + +waiting on router queue for slot.... +07:32:25 Sending to : +07:32:25 ============================================================================ +07:32:25 ============================================================================ +07:32:25 Slot Id : <228> +07:32:25 Transaction Type : RESPONSE +07:32:25 Received From : +07:32:25 ============================================================================ +07:32:25 FNo. Len. Field Value +07:32:25 ============================================================================ +07:32:25 [ 1] [ 4] [0810] +07:32:25 [ 7] [ 10] [0320123133] +07:32:25 [ 11] [ 6] [155188] +07:32:25 [ 39] [ 2] [00] +07:32:25 [ 70] [ 3] [301] +07:32:25 ============================================================================ +07:32:25 Calculate Source COMM Id = 2 +07:32:25 ============================================================================ +07:32:25 + + +waiting on router queue for slot.... +07:32:25 ============================================================================ +07:32:25 Slot Id : <265> +07:32:25 Transaction Type : REQUEST +07:32:25 Received From : +07:32:25 ============================================================================ +07:32:25 FNo. Len. Field Value +07:32:25 ============================================================================ +07:32:25 [ 1] [ 4] [0200] +07:32:25 [ 2] [ 16] [6688990106596305] +07:32:25 [ 3] [ 6] [011000] +07:32:25 [ 4] [ 12] [000030000000] +07:32:25 [ 7] [ 10] [0320073222] +07:32:25 [ 11] [ 6] [670978] +07:32:25 [ 12] [ 6] [073222] +07:32:25 [ 13] [ 4] [0320] +07:32:25 [ 15] [ 4] [0320] +07:32:25 [ 18] [ 4] [6011] +07:32:25 [ 22] [ 3] [900] +07:32:25 [ 25] [ 2] [02] +07:32:25 [ 28] [ 9] [D00002000] +07:32:25 [ 32] [ 6] [621354] +07:32:25 [ 35] [ 37] [6688990106596305=43121231630548200000] +07:32:25 [ 37] [ 12] [507904599612] +07:32:25 [ 41] [ 8] [02002200] +07:32:25 [ 42] [ 15] [NATIVE ] +07:32:25 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +07:32:25 [ 49] [ 3] [418] +07:32:25 [ 52] [ 16] [483E5F89B7A84658] +07:32:25 ============================================================================ +07:32:25 + + +waiting on router queue for slot.... +07:32:25 Sending to : +07:32:25 ============================================================================ +07:32:25 Sending to : +07:32:25 ============================================================================ +07:32:26 ============================================================================ +07:32:26 Slot Id : <265> +07:32:26 Transaction Type : REQUEST +07:32:26 Received From : +07:32:26 ============================================================================ +07:32:26 FNo. Len. Field Value +07:32:26 ============================================================================ +07:32:26 [ 1] [ 4] [0200] +07:32:26 [ 2] [ 16] [6688990106596305] +07:32:26 [ 3] [ 6] [011000] +07:32:26 [ 4] [ 12] [000030000000] +07:32:26 [ 7] [ 10] [0320073222] +07:32:26 [ 11] [ 6] [670978] +07:32:26 [ 12] [ 6] [073222] +07:32:26 [ 13] [ 4] [0320] +07:32:26 [ 15] [ 4] [0320] +07:32:26 [ 18] [ 4] [6011] +07:32:26 [ 22] [ 3] [900] +07:32:26 [ 25] [ 2] [02] +07:32:26 [ 28] [ 9] [D00002000] +07:32:26 [ 32] [ 6] [621354] +07:32:26 [ 35] [ 37] [6688990106596305=43121231630548200000] +07:32:26 [ 37] [ 12] [507904599612] +07:32:26 [ 41] [ 8] [02002200] +07:32:26 [ 42] [ 15] [NATIVE ] +07:32:26 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +07:32:26 [ 49] [ 3] [418] +07:32:26 [ 52] [ 16] [483E5F89B7A84658] +07:32:26 ============================================================================ +07:32:26 + + +waiting on router queue for slot.... +07:32:26 Sending to : +07:32:26 ============================================================================ +07:32:26 ============================================================================ +07:32:26 Slot Id : <265> +07:32:26 Transaction Type : REQUEST +07:32:26 Received From : +07:32:26 ============================================================================ +07:32:26 FNo. Len. Field Value +07:32:26 ============================================================================ +07:32:26 [ 1] [ 4] [0200] +07:32:26 [ 2] [ 16] [6688990106596305] +07:32:26 [ 3] [ 6] [011000] +07:32:26 [ 4] [ 12] [000030000000] +07:32:26 [ 7] [ 10] [0320073222] +07:32:26 [ 11] [ 6] [670978] +07:32:26 [ 12] [ 6] [073222] +07:32:26 [ 13] [ 4] [0320] +07:32:26 [ 15] [ 4] [0320] +07:32:26 [ 18] [ 4] [6011] +07:32:26 [ 22] [ 3] [900] +07:32:26 [ 25] [ 2] [02] +07:32:26 [ 28] [ 9] [D00002000] +07:32:26 [ 32] [ 6] [621354] +07:32:26 [ 35] [ 37] [6688990106596305=43121231630548200000] +07:32:26 [ 37] [ 12] [507904599612] +07:32:26 [ 41] [ 8] [02002200] +07:32:26 [ 42] [ 15] [NATIVE ] +07:32:26 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +07:32:26 [ 49] [ 3] [418] +07:32:26 [ 52] [ 16] [27B22A28ABB18030] +07:32:26 ============================================================================ +07:32:26 + + +waiting on router queue for slot.... +07:32:26 Sending to : <4> +07:32:26 ============================================================================ +07:32:27 ============================================================================ +07:32:27 Slot Id : <265> +07:32:27 Transaction Type : RESPONSE +07:32:27 Received From : +07:32:27 ============================================================================ +07:32:27 FNo. Len. Field Value +07:32:27 ============================================================================ +07:32:27 [ 1] [ 4] [0210] +07:32:27 [ 2] [ 16] [6688990106596305] +07:32:27 [ 3] [ 6] [011000] +07:32:27 [ 4] [ 12] [000030000000] +07:32:27 [ 11] [ 6] [670978] +07:32:27 [ 12] [ 6] [073222] +07:32:27 [ 15] [ 4] [0320] +07:32:27 [ 18] [ 4] [6011] +07:32:27 [ 32] [ 6] [621354] +07:32:27 [ 35] [ 37] [6688990106596305=43121231630548200000] +07:32:27 [ 37] [ 12] [507904599612] +07:32:27 [ 38] [ 6] [620016] +07:32:27 [ 39] [ 2] [00] +07:32:27 [ 41] [ 8] [02002200] +07:32:27 [ 49] [ 3] [418] +07:32:27 [ 54] [ 20] [1002418C000082599035] +07:32:27 ============================================================================ +07:32:27 Sending to : +07:32:27 ============================================================================ +07:32:27 + + +waiting on router queue for slot.... +07:32:28 ============================================================================ +07:32:28 Slot Id : <265> +07:32:28 Transaction Type : RESPONSE +07:32:28 Received From : +07:32:28 ============================================================================ +07:32:28 FNo. Len. Field Value +07:32:28 ============================================================================ +07:32:28 [ 1] [ 4] [0210] +07:32:28 [ 2] [ 16] [6688990106596305] +07:32:28 [ 3] [ 6] [011000] +07:32:28 [ 4] [ 12] [000030000000] +07:32:28 [ 11] [ 6] [670978] +07:32:28 [ 12] [ 6] [073222] +07:32:28 [ 15] [ 4] [0320] +07:32:28 [ 18] [ 4] [6011] +07:32:28 [ 32] [ 6] [621354] +07:32:28 [ 35] [ 37] [6688990106596305=43121231630548200000] +07:32:28 [ 37] [ 12] [507904599612] +07:32:28 [ 38] [ 6] [620016] +07:32:28 [ 39] [ 2] [00] +07:32:28 [ 41] [ 8] [02002200] +07:32:28 [ 49] [ 3] [418] +07:32:28 [ 54] [ 20] [1002418C000082599035] +07:32:28 ============================================================================ +07:32:28 Calculate Source COMM Id = 0 +07:32:28 ============================================================================ +07:32:28 + + +waiting on router queue for slot.... +07:32:41 ============================================================================ +07:32:41 Slot Id : <275> +07:32:41 Transaction Type : REQUEST +07:32:41 Received From : +07:32:41 ============================================================================ +07:32:41 FNo. Len. Field Value +07:32:41 ============================================================================ +07:32:41 [ 1] [ 4] [0800] +07:32:41 [ 7] [ 10] [0320123149] +07:32:41 [ 11] [ 6] [155189] +07:32:41 [ 70] [ 3] [301] +07:32:41 ============================================================================ +07:32:41 + + +waiting on router queue for slot.... +07:32:41 Sending to : +07:32:41 ============================================================================ +07:32:41 ============================================================================ +07:32:41 Slot Id : <275> +07:32:41 Transaction Type : RESPONSE +07:32:41 Received From : +07:32:41 ============================================================================ +07:32:41 FNo. Len. Field Value +07:32:41 ============================================================================ +07:32:41 [ 1] [ 4] [0810] +07:32:41 [ 7] [ 10] [0320123149] +07:32:41 [ 11] [ 6] [155189] +07:32:41 [ 39] [ 2] [00] +07:32:41 [ 70] [ 3] [301] +07:32:41 ============================================================================ +07:32:41 Calculate Source COMM Id = 2 +07:32:41 ============================================================================ +07:32:41 + + +waiting on router queue for slot.... +07:32:51 ============================================================================ +07:32:51 Slot Id : <247> +07:32:51 Transaction Type : REQUEST +07:32:51 Received From : +07:32:51 ============================================================================ +07:32:51 FNo. Len. Field Value +07:32:51 ============================================================================ +07:32:51 [ 1] [ 4] [0800] +07:32:51 [ 7] [ 10] [0320123200] +07:32:51 [ 11] [ 6] [155190] +07:32:51 [ 70] [ 3] [301] +07:32:51 ============================================================================ +07:32:51 + + +waiting on router queue for slot.... +07:32:51 Sending to : +07:32:51 ============================================================================ +07:32:51 ============================================================================ +07:32:51 Slot Id : <247> +07:32:51 Transaction Type : RESPONSE +07:32:51 Received From : +07:32:51 ============================================================================ +07:32:51 FNo. Len. Field Value +07:32:51 ============================================================================ +07:32:51 [ 1] [ 4] [0810] +07:32:51 [ 7] [ 10] [0320123200] +07:32:51 [ 11] [ 6] [155190] +07:32:51 [ 39] [ 2] [00] +07:32:51 [ 70] [ 3] [301] +07:32:51 ============================================================================ +07:32:51 Calculate Source COMM Id = 2 +07:32:51 ============================================================================ +07:32:51 + + +waiting on router queue for slot.... +07:32:53 ============================================================================ +07:32:53 Slot Id : <218> +07:32:53 Transaction Type : REQUEST +07:32:53 Received From : +07:32:53 ============================================================================ +07:32:53 FNo. Len. Field Value +07:32:53 ============================================================================ +07:32:53 [ 1] [ 4] [0800] +07:32:53 [ 7] [ 10] [0320144442] +07:32:53 [ 11] [ 6] [074442] +07:32:53 [ 37] [ 12] [57907074442] +07:32:53 [ 70] [ 3] [301] +07:32:53 ============================================================================ +07:32:53 + + +waiting on router queue for slot.... +07:32:53 Sending to : +07:32:53 ============================================================================ +07:32:53 ============================================================================ +07:32:53 Slot Id : <218> +07:32:53 Transaction Type : RESPONSE +07:32:53 Received From : +07:32:53 ============================================================================ +07:32:53 FNo. Len. Field Value +07:32:53 ============================================================================ +07:32:53 [ 1] [ 4] [0810] +07:32:53 [ 7] [ 10] [0320144442] +07:32:53 [ 11] [ 6] [074442] +07:32:53 [ 37] [ 12] [579070744420] +07:32:53 [ 39] [ 2] [00] +07:32:53 [ 70] [ 3] [810] +07:32:53 ============================================================================ +07:32:53 Calculate Source COMM Id = 6 +07:32:53 ============================================================================ +07:32:53 + + +waiting on router queue for slot.... +07:33:02 ============================================================================ +07:33:02 Slot Id : <274> +07:33:02 Transaction Type : REQUEST +07:33:02 Received From : +07:33:02 ============================================================================ +07:33:02 FNo. Len. Field Value +07:33:02 ============================================================================ +07:33:02 [ 1] [ 4] [0800] +07:33:02 [ 7] [ 10] [0320123211] +07:33:02 [ 11] [ 6] [155191] +07:33:02 [ 70] [ 3] [301] +07:33:02 ============================================================================ +07:33:02 + + +waiting on router queue for slot.... +07:33:02 Sending to : +07:33:02 ============================================================================ +07:33:02 ============================================================================ +07:33:02 Slot Id : <274> +07:33:02 Transaction Type : RESPONSE +07:33:02 Received From : +07:33:02 ============================================================================ +07:33:02 FNo. Len. Field Value +07:33:02 ============================================================================ +07:33:02 [ 1] [ 4] [0810] +07:33:02 [ 7] [ 10] [0320123211] +07:33:02 [ 11] [ 6] [155191] +07:33:02 [ 39] [ 2] [00] +07:33:02 [ 70] [ 3] [301] +07:33:02 ============================================================================ +07:33:02 Calculate Source COMM Id = 2 +07:33:02 ============================================================================ +07:33:02 + + +waiting on router queue for slot.... +07:33:03 ============================================================================ +07:33:03 Slot Id : <264> +07:33:03 Transaction Type : REQUEST +07:33:03 Received From : +07:33:03 ============================================================================ +07:33:03 FNo. Len. Field Value +07:33:03 ============================================================================ +07:33:03 [ 1] [ 4] [0200] +07:33:03 [ 2] [ 16] [1808931400009054] +07:33:03 [ 3] [ 6] [010000] +07:33:03 [ 4] [ 12] [000100000000] +07:33:03 [ 7] [ 10] [0320073054] +07:33:03 [ 11] [ 6] [930434] +07:33:03 [ 12] [ 6] [073054] +07:33:03 [ 13] [ 4] [0320] +07:33:03 [ 15] [ 4] [0320] +07:33:03 [ 18] [ 4] [6011] +07:33:03 [ 19] [ 3] [418] +07:33:03 [ 22] [ 3] [021] +07:33:03 [ 25] [ 2] [01] +07:33:03 [ 28] [ 9] [D00002000] +07:33:03 [ 32] [ 6] [668899] +07:33:03 [ 35] [ 27] [1808931400009054=1803500133] +07:33:03 [ 37] [ 12] [507901603948] +07:33:03 [ 41] [ 8] [03202001] +07:33:03 [ 42] [ 15] [APT ] +07:33:03 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +07:33:03 [ 49] [ 3] [418] +07:33:03 [ 52] [ 16] [D581B7BEFFD307FD] +07:33:03 ============================================================================ +07:33:03 + + +waiting on router queue for slot.... +07:33:03 Sending to : +07:33:03 ============================================================================ +07:33:03 Sending to : +07:33:03 ============================================================================ +07:33:03 ============================================================================ +07:33:03 Slot Id : <264> +07:33:03 Transaction Type : REQUEST +07:33:03 Received From : +07:33:03 ============================================================================ +07:33:03 FNo. Len. Field Value +07:33:03 ============================================================================ +07:33:03 [ 1] [ 4] [0200] +07:33:03 [ 2] [ 16] [1808931400009054] +07:33:03 [ 3] [ 6] [010000] +07:33:03 [ 4] [ 12] [000100000000] +07:33:03 [ 7] [ 10] [0320073054] +07:33:03 [ 11] [ 6] [930434] +07:33:03 [ 12] [ 6] [073054] +07:33:03 [ 13] [ 4] [0320] +07:33:03 [ 15] [ 4] [0320] +07:33:03 [ 18] [ 4] [6011] +07:33:03 [ 19] [ 3] [418] +07:33:03 [ 22] [ 3] [021] +07:33:03 [ 25] [ 2] [01] +07:33:03 [ 28] [ 9] [D00002000] +07:33:03 [ 32] [ 6] [668899] +07:33:03 [ 35] [ 27] [1808931400009054=1803500133] +07:33:03 [ 37] [ 12] [507901603948] +07:33:03 [ 41] [ 8] [03202001] +07:33:03 [ 42] [ 15] [APT ] +07:33:03 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +07:33:03 [ 49] [ 3] [418] +07:33:03 [ 52] [ 16] [D581B7BEFFD307FD] +07:33:03 ============================================================================ +07:33:03 + + +waiting on router queue for slot.... +07:33:03 Sending to : +07:33:03 ============================================================================ +07:33:03 ============================================================================ +07:33:03 Slot Id : <264> +07:33:03 Transaction Type : REQUEST +07:33:03 Received From : +07:33:03 ============================================================================ +07:33:03 FNo. Len. Field Value +07:33:03 ============================================================================ +07:33:03 [ 1] [ 4] [0200] +07:33:03 [ 2] [ 16] [1808931400009054] +07:33:03 [ 3] [ 6] [010000] +07:33:03 [ 4] [ 12] [000100000000] +07:33:03 [ 7] [ 10] [0320073054] +07:33:03 [ 11] [ 6] [930434] +07:33:03 [ 12] [ 6] [073054] +07:33:03 [ 13] [ 4] [0320] +07:33:03 [ 15] [ 4] [0320] +07:33:03 [ 18] [ 4] [6011] +07:33:03 [ 19] [ 3] [418] +07:33:03 [ 22] [ 3] [021] +07:33:03 [ 25] [ 2] [01] +07:33:03 [ 28] [ 9] [D00002000] +07:33:03 [ 32] [ 6] [668899] +07:33:03 [ 35] [ 27] [1808931400009054=1803500133] +07:33:03 [ 37] [ 12] [507901603948] +07:33:03 [ 41] [ 8] [03202001] +07:33:03 [ 42] [ 15] [APT ] +07:33:03 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +07:33:03 [ 49] [ 3] [418] +07:33:03 [ 52] [ 16] [6F0C182150ABD7E4] +07:33:03 ============================================================================ +07:33:03 + + +waiting on router queue for slot.... +07:33:03 Sending to : <2> +07:33:03 ============================================================================ +07:33:04 ============================================================================ +07:33:04 Slot Id : <231> +07:33:04 Transaction Type : REQUEST +07:33:04 Received From : +07:33:04 ============================================================================ +07:33:04 FNo. Len. Field Value +07:33:04 ============================================================================ +07:33:04 [ 1] [ 4] [0200] +07:33:04 [ 2] [ 16] [6213541000108194] +07:33:04 [ 3] [ 6] [011000] +07:33:04 [ 4] [ 12] [000020000000] +07:33:04 [ 7] [ 10] [0320073325] +07:33:04 [ 11] [ 6] [201349] +07:33:04 [ 12] [ 6] [073800] +07:33:04 [ 13] [ 4] [0320] +07:33:04 [ 14] [ 4] [4912] +07:33:04 [ 15] [ 4] [0320] +07:33:04 [ 18] [ 4] [6011] +07:33:04 [ 19] [ 3] [418] +07:33:04 [ 22] [ 3] [021] +07:33:04 [ 25] [ 2] [01] +07:33:04 [ 28] [ 9] [D00002000] +07:33:04 [ 32] [ 6] [198901] +07:33:04 [ 35] [ 32] [6213541000108194=491212010819841] +07:33:04 [ 37] [ 12] [507907201349] +07:33:04 [ 41] [ 8] [00002206] +07:33:04 [ 42] [ 15] [000000041002206] +07:33:04 [ 43] [ 40] [150 HOSPITAL VN ] +07:33:04 [ 49] [ 3] [418] +07:33:04 [ 52] [ 16] [ECEDCCE01AAC5CFD] +07:33:04 ============================================================================ +07:33:04 + + +waiting on router queue for slot.... +07:33:04 Sending to : +07:33:04 ============================================================================ +07:33:04 Sending to : +07:33:04 ============================================================================ +07:33:04 ============================================================================ +07:33:04 Slot Id : <231> +07:33:04 Transaction Type : REQUEST +07:33:04 Received From : +07:33:04 ============================================================================ +07:33:04 FNo. Len. Field Value +07:33:04 ============================================================================ +07:33:04 [ 1] [ 4] [0200] +07:33:04 [ 2] [ 16] [6213541000108194] +07:33:04 [ 3] [ 6] [011000] +07:33:04 [ 4] [ 12] [000020000000] +07:33:04 [ 7] [ 10] [0320073325] +07:33:04 [ 11] [ 6] [201349] +07:33:04 [ 12] [ 6] [073800] +07:33:04 [ 13] [ 4] [0320] +07:33:04 [ 14] [ 4] [4912] +07:33:04 [ 15] [ 4] [0320] +07:33:04 [ 18] [ 4] [6011] +07:33:04 [ 19] [ 3] [418] +07:33:04 [ 22] [ 3] [021] +07:33:04 [ 25] [ 2] [01] +07:33:04 [ 28] [ 9] [D00002000] +07:33:04 [ 32] [ 6] [198901] +07:33:04 [ 35] [ 32] [6213541000108194=491212010819841] +07:33:04 [ 37] [ 12] [507907201349] +07:33:04 [ 41] [ 8] [00002206] +07:33:04 [ 42] [ 15] [000000041002206] +07:33:04 [ 43] [ 40] [150 HOSPITAL VN ] +07:33:04 [ 49] [ 3] [418] +07:33:04 [ 52] [ 16] [ECEDCCE01AAC5CFD] +07:33:04 ============================================================================ +07:33:04 + + +waiting on router queue for slot.... +07:33:04 Sending to : +07:33:04 ============================================================================ +07:33:04 ============================================================================ +07:33:04 Slot Id : <231> +07:33:04 Transaction Type : REQUEST +07:33:04 Received From : +07:33:04 ============================================================================ +07:33:04 FNo. Len. Field Value +07:33:04 ============================================================================ +07:33:04 [ 1] [ 4] [0200] +07:33:04 [ 2] [ 16] [6213541000108194] +07:33:04 [ 3] [ 6] [011000] +07:33:04 [ 4] [ 12] [000020000000] +07:33:04 [ 7] [ 10] [0320073325] +07:33:04 [ 11] [ 6] [201349] +07:33:04 [ 12] [ 6] [073800] +07:33:04 [ 13] [ 4] [0320] +07:33:04 [ 14] [ 4] [4912] +07:33:04 [ 15] [ 4] [0320] +07:33:04 [ 18] [ 4] [6011] +07:33:04 [ 19] [ 3] [418] +07:33:04 [ 22] [ 3] [021] +07:33:04 [ 25] [ 2] [01] +07:33:04 [ 28] [ 9] [D00002000] +07:33:04 [ 32] [ 6] [198901] +07:33:04 [ 35] [ 32] [6213541000108194=491212010819841] +07:33:04 [ 37] [ 12] [507907201349] +07:33:04 [ 41] [ 8] [00002206] +07:33:04 [ 42] [ 15] [000000041002206] +07:33:04 [ 43] [ 40] [150 HOSPITAL VN ] +07:33:04 [ 49] [ 3] [418] +07:33:04 [ 52] [ 16] [398D31243EB41B58] +07:33:04 ============================================================================ +07:33:04 + + +waiting on router queue for slot.... +07:33:04 Sending to : <0> +07:33:04 ============================================================================ +07:33:05 ============================================================================ +07:33:05 Slot Id : <231> +07:33:05 Transaction Type : RESPONSE +07:33:05 Received From : +07:33:05 ============================================================================ +07:33:05 FNo. Len. Field Value +07:33:05 ============================================================================ +07:33:05 [ 1] [ 4] [0210] +07:33:05 [ 2] [ 16] [6213541000108194] +07:33:05 [ 3] [ 6] [011000] +07:33:05 [ 4] [ 12] [000020000000] +07:33:05 [ 7] [ 10] [0320073325] +07:33:05 [ 11] [ 6] [201349] +07:33:05 [ 12] [ 6] [073800] +07:33:05 [ 13] [ 4] [0320] +07:33:05 [ 15] [ 4] [0320] +07:33:05 [ 18] [ 4] [6011] +07:33:05 [ 19] [ 3] [418] +07:33:05 [ 32] [ 6] [198901] +07:33:05 [ 35] [ 32] [6213541000108194=491212010819841] +07:33:05 [ 37] [ 12] [507907201349] +07:33:05 [ 38] [ 6] [963666] +07:33:05 [ 39] [ 2] [00] +07:33:05 [ 41] [ 8] [00002206] +07:33:05 [ 49] [ 3] [418] +07:33:05 [ 54] [ 40] [1001418C0000277216771002418C000027721677] +07:33:05 ============================================================================ +07:33:05 Sending to : +07:33:05 ============================================================================ +07:33:05 + + +waiting on router queue for slot.... +07:33:06 ============================================================================ +07:33:06 Slot Id : <231> +07:33:06 Transaction Type : RESPONSE +07:33:06 Received From : +07:33:06 ============================================================================ +07:33:06 FNo. Len. Field Value +07:33:06 ============================================================================ +07:33:06 [ 1] [ 4] [0210] +07:33:06 [ 2] [ 16] [6213541000108194] +07:33:06 [ 3] [ 6] [011000] +07:33:06 [ 4] [ 12] [000020000000] +07:33:06 [ 7] [ 10] [0320073325] +07:33:06 [ 11] [ 6] [201349] +07:33:06 [ 12] [ 6] [073800] +07:33:06 [ 13] [ 4] [0320] +07:33:06 [ 15] [ 4] [0320] +07:33:06 [ 18] [ 4] [6011] +07:33:06 [ 19] [ 3] [418] +07:33:06 [ 32] [ 6] [198901] +07:33:06 [ 35] [ 32] [6213541000108194=491212010819841] +07:33:06 [ 37] [ 12] [507907201349] +07:33:06 [ 38] [ 6] [963666] +07:33:06 [ 39] [ 2] [00] +07:33:06 [ 41] [ 8] [00002206] +07:33:06 [ 49] [ 3] [418] +07:33:06 [ 54] [ 40] [1001418C0000277216771002418C000027721677] +07:33:06 ============================================================================ +07:33:06 Calculate Source COMM Id = 5 +07:33:06 ============================================================================ +07:33:06 + + +waiting on router queue for slot.... +07:33:10 ============================================================================ +07:33:10 Slot Id : <264> +07:33:10 Transaction Type : RESPONSE +07:33:10 Received From : +07:33:10 ============================================================================ +07:33:10 FNo. Len. Field Value +07:33:10 ============================================================================ +07:33:10 [ 1] [ 4] [0210] +07:33:10 [ 2] [ 16] [1808931400009054] +07:33:10 [ 3] [ 6] [010000] +07:33:10 [ 4] [ 12] [000100000000] +07:33:10 [ 6] [ 12] [000100000000] +07:33:10 [ 7] [ 10] [0320073054] +07:33:10 [ 11] [ 6] [930434] +07:33:10 [ 12] [ 6] [073054] +07:33:10 [ 13] [ 4] [0320] +07:33:10 [ 18] [ 4] [6011] +07:33:10 [ 19] [ 3] [418] +07:33:10 [ 22] [ 3] [021] +07:33:10 [ 32] [ 6] [668899] +07:33:10 [ 35] [ 27] [1808931400009054=1803500133] +07:33:10 [ 37] [ 12] [507901603948] +07:33:10 [ 38] [ 6] [930434] +07:33:10 [ 39] [ 2] [00] +07:33:10 [ 41] [ 8] [03202001] +07:33:10 [ 49] [ 3] [418] +07:33:10 [ 52] [ 16] [6F0C182150ABD7E4] +07:33:10 [ 54] [ 20] [1001418C000077751100] +07:33:10 ============================================================================ +07:33:10 Sending to : +07:33:10 ============================================================================ +07:33:10 + + +waiting on router queue for slot.... +07:33:12 ============================================================================ +07:33:12 Slot Id : <264> +07:33:12 Transaction Type : RESPONSE +07:33:12 Received From : +07:33:12 ============================================================================ +07:33:12 FNo. Len. Field Value +07:33:12 ============================================================================ +07:33:12 [ 1] [ 4] [0210] +07:33:12 [ 2] [ 16] [1808931400009054] +07:33:12 [ 3] [ 6] [010000] +07:33:12 [ 4] [ 12] [000100000000] +07:33:12 [ 6] [ 12] [000100000000] +07:33:12 [ 7] [ 10] [0320073054] +07:33:12 [ 11] [ 6] [930434] +07:33:12 [ 12] [ 6] [073054] +07:33:12 [ 13] [ 4] [0320] +07:33:12 [ 18] [ 4] [6011] +07:33:12 [ 19] [ 3] [418] +07:33:12 [ 22] [ 3] [021] +07:33:12 [ 32] [ 6] [668899] +07:33:12 [ 35] [ 27] [1808931400009054=1803500133] +07:33:12 [ 37] [ 12] [507901603948] +07:33:12 [ 38] [ 6] [930434] +07:33:12 [ 39] [ 2] [00] +07:33:12 [ 41] [ 8] [03202001] +07:33:12 [ 49] [ 3] [418] +07:33:12 [ 52] [ 16] [6F0C182150ABD7E4] +07:33:12 [ 54] [ 20] [1001418C000077751100] +07:33:12 ============================================================================ +07:33:12 Calculate Source COMM Id = 4 +07:33:12 ============================================================================ +07:33:12 + + +waiting on router queue for slot.... +07:33:12 ============================================================================ +07:33:12 Slot Id : <279> +07:33:12 Transaction Type : REQUEST +07:33:12 Received From : +07:33:12 ============================================================================ +07:33:12 FNo. Len. Field Value +07:33:12 ============================================================================ +07:33:12 [ 1] [ 4] [0800] +07:33:12 [ 2] [ 5] [02531] +07:33:12 [ 3] [ 6] [579078] +07:33:12 [ 7] [ 10] [0320003312] +07:33:12 [ 11] [ 6] [806850] +07:33:12 [ 15] [ 10] [0320003312] +07:33:12 [ 37] [ 11] [57907806850] +07:33:12 [ 70] [ 3] [001] +07:33:12 ============================================================================ +07:33:12 + + +waiting on router queue for slot.... +07:33:12 ============================================================================ +07:33:12 Slot Id : <279> +07:33:12 Transaction Type : RESPONSE +07:33:12 Received From : +07:33:12 ============================================================================ +07:33:12 FNo. Len. Field Value +07:33:12 ============================================================================ +07:33:12 [ 1] [ 4] [0810] +07:33:12 [ 7] [ 10] [0320003312] +07:33:12 [ 11] [ 6] [806850] +07:33:12 [ 15] [ 4] [0320] +07:33:12 [ 37] [ 12] [57907806850] +07:33:12 [ 39] [ 2] [00] +07:33:12 [ 70] [ 3] [001] +07:33:12 ============================================================================ +07:33:12 Sending to : +07:33:12 ============================================================================ +07:33:12 + + +waiting on router queue for slot.... +07:33:19 ============================================================================ +07:33:19 Slot Id : <254> +07:33:19 Transaction Type : REQUEST +07:33:19 Received From : +07:33:19 ============================================================================ +07:33:19 FNo. Len. Field Value +07:33:19 ============================================================================ +07:33:19 [ 1] [ 4] [0800] +07:33:19 [ 7] [ 10] [0320123227] +07:33:19 [ 11] [ 6] [155192] +07:33:19 [ 70] [ 3] [301] +07:33:19 ============================================================================ +07:33:19 + + +waiting on router queue for slot.... +07:33:19 Sending to : +07:33:19 ============================================================================ +07:33:19 ============================================================================ +07:33:19 Slot Id : <254> +07:33:19 Transaction Type : RESPONSE +07:33:19 Received From : +07:33:19 ============================================================================ +07:33:19 FNo. Len. Field Value +07:33:19 ============================================================================ +07:33:19 [ 1] [ 4] [0810] +07:33:19 [ 7] [ 10] [0320123227] +07:33:19 [ 11] [ 6] [155192] +07:33:19 [ 39] [ 2] [00] +07:33:19 [ 70] [ 3] [301] +07:33:19 ============================================================================ +07:33:19 Calculate Source COMM Id = 2 +07:33:19 ============================================================================ +07:33:19 + + +waiting on router queue for slot.... +07:33:29 ============================================================================ +07:33:29 Slot Id : <239> +07:33:29 Transaction Type : REQUEST +07:33:29 Received From : +07:33:29 ============================================================================ +07:33:29 FNo. Len. Field Value +07:33:29 ============================================================================ +07:33:29 [ 1] [ 4] [0800] +07:33:29 [ 7] [ 10] [0320123237] +07:33:29 [ 11] [ 6] [155193] +07:33:29 [ 70] [ 3] [301] +07:33:29 ============================================================================ +07:33:29 + + +waiting on router queue for slot.... +07:33:29 Sending to : +07:33:29 ============================================================================ +07:33:29 ============================================================================ +07:33:29 Slot Id : <239> +07:33:29 Transaction Type : RESPONSE +07:33:29 Received From : +07:33:29 ============================================================================ +07:33:29 FNo. Len. Field Value +07:33:29 ============================================================================ +07:33:29 [ 1] [ 4] [0810] +07:33:29 [ 7] [ 10] [0320123237] +07:33:29 [ 11] [ 6] [155193] +07:33:29 [ 39] [ 2] [00] +07:33:29 [ 70] [ 3] [301] +07:33:29 ============================================================================ +07:33:29 Calculate Source COMM Id = 2 +07:33:29 ============================================================================ +07:33:29 + + +waiting on router queue for slot.... +07:33:30 ============================================================================ +07:33:30 Slot Id : <273> +07:33:30 Transaction Type : REQUEST +07:33:30 Received From : +07:33:30 ============================================================================ +07:33:30 FNo. Len. Field Value +07:33:30 ============================================================================ +07:33:30 [ 1] [ 4] [0200] +07:33:30 [ 2] [ 16] [6213541000108194] +07:33:30 [ 3] [ 6] [011000] +07:33:30 [ 4] [ 12] [000020000000] +07:33:30 [ 7] [ 10] [0320073352] +07:33:30 [ 11] [ 6] [201356] +07:33:30 [ 12] [ 6] [073826] +07:33:30 [ 13] [ 4] [0320] +07:33:30 [ 14] [ 4] [4912] +07:33:30 [ 15] [ 4] [0320] +07:33:30 [ 18] [ 4] [6011] +07:33:30 [ 19] [ 3] [418] +07:33:30 [ 22] [ 3] [021] +07:33:30 [ 25] [ 2] [01] +07:33:30 [ 28] [ 9] [D00002000] +07:33:30 [ 32] [ 6] [198901] +07:33:30 [ 35] [ 32] [6213541000108194=491212010819841] +07:33:30 [ 37] [ 12] [507907201356] +07:33:30 [ 41] [ 8] [00002206] +07:33:30 [ 42] [ 15] [000000041002206] +07:33:30 [ 43] [ 40] [150 HOSPITAL VN ] +07:33:30 [ 49] [ 3] [418] +07:33:30 [ 52] [ 16] [ECEDCCE01AAC5CFD] +07:33:30 ============================================================================ +07:33:30 + + +waiting on router queue for slot.... +07:33:30 Sending to : +07:33:30 ============================================================================ +07:33:30 Sending to : +07:33:30 ============================================================================ +07:33:31 ============================================================================ +07:33:31 Slot Id : <273> +07:33:31 Transaction Type : REQUEST +07:33:31 Received From : +07:33:31 ============================================================================ +07:33:31 FNo. Len. Field Value +07:33:31 ============================================================================ +07:33:31 [ 1] [ 4] [0200] +07:33:31 [ 2] [ 16] [6213541000108194] +07:33:31 [ 3] [ 6] [011000] +07:33:31 [ 4] [ 12] [000020000000] +07:33:31 [ 7] [ 10] [0320073352] +07:33:31 [ 11] [ 6] [201356] +07:33:31 [ 12] [ 6] [073826] +07:33:31 [ 13] [ 4] [0320] +07:33:31 [ 14] [ 4] [4912] +07:33:31 [ 15] [ 4] [0320] +07:33:31 [ 18] [ 4] [6011] +07:33:31 [ 19] [ 3] [418] +07:33:31 [ 22] [ 3] [021] +07:33:31 [ 25] [ 2] [01] +07:33:31 [ 28] [ 9] [D00002000] +07:33:31 [ 32] [ 6] [198901] +07:33:31 [ 35] [ 32] [6213541000108194=491212010819841] +07:33:31 [ 37] [ 12] [507907201356] +07:33:31 [ 41] [ 8] [00002206] +07:33:31 [ 42] [ 15] [000000041002206] +07:33:31 [ 43] [ 40] [150 HOSPITAL VN ] +07:33:31 [ 49] [ 3] [418] +07:33:31 [ 52] [ 16] [ECEDCCE01AAC5CFD] +07:33:31 ============================================================================ +07:33:31 + + +waiting on router queue for slot.... +07:33:31 Sending to : +07:33:31 ============================================================================ +07:33:31 ============================================================================ +07:33:31 Slot Id : <273> +07:33:31 Transaction Type : REQUEST +07:33:31 Received From : +07:33:31 ============================================================================ +07:33:31 FNo. Len. Field Value +07:33:31 ============================================================================ +07:33:31 [ 1] [ 4] [0200] +07:33:31 [ 2] [ 16] [6213541000108194] +07:33:31 [ 3] [ 6] [011000] +07:33:31 [ 4] [ 12] [000020000000] +07:33:31 [ 7] [ 10] [0320073352] +07:33:31 [ 11] [ 6] [201356] +07:33:31 [ 12] [ 6] [073826] +07:33:31 [ 13] [ 4] [0320] +07:33:31 [ 14] [ 4] [4912] +07:33:31 [ 15] [ 4] [0320] +07:33:31 [ 18] [ 4] [6011] +07:33:31 [ 19] [ 3] [418] +07:33:31 [ 22] [ 3] [021] +07:33:31 [ 25] [ 2] [01] +07:33:31 [ 28] [ 9] [D00002000] +07:33:31 [ 32] [ 6] [198901] +07:33:31 [ 35] [ 32] [6213541000108194=491212010819841] +07:33:31 [ 37] [ 12] [507907201356] +07:33:31 [ 41] [ 8] [00002206] +07:33:31 [ 42] [ 15] [000000041002206] +07:33:31 [ 43] [ 40] [150 HOSPITAL VN ] +07:33:31 [ 49] [ 3] [418] +07:33:31 [ 52] [ 16] [398D31243EB41B58] +07:33:31 ============================================================================ +07:33:31 + + +waiting on router queue for slot.... +07:33:31 Sending to : <0> +07:33:31 ============================================================================ +07:33:32 ============================================================================ +07:33:32 Slot Id : <273> +07:33:32 Transaction Type : RESPONSE +07:33:32 Received From : +07:33:32 ============================================================================ +07:33:32 FNo. Len. Field Value +07:33:32 ============================================================================ +07:33:32 [ 1] [ 4] [0210] +07:33:32 [ 2] [ 16] [6213541000108194] +07:33:32 [ 3] [ 6] [011000] +07:33:32 [ 4] [ 12] [000020000000] +07:33:32 [ 7] [ 10] [0320073352] +07:33:32 [ 11] [ 6] [201356] +07:33:32 [ 12] [ 6] [073826] +07:33:32 [ 13] [ 4] [0320] +07:33:32 [ 15] [ 4] [0320] +07:33:32 [ 18] [ 4] [6011] +07:33:32 [ 19] [ 3] [418] +07:33:32 [ 32] [ 6] [198901] +07:33:32 [ 35] [ 32] [6213541000108194=491212010819841] +07:33:32 [ 37] [ 12] [507907201356] +07:33:32 [ 38] [ 6] [704498] +07:33:32 [ 39] [ 2] [00] +07:33:32 [ 41] [ 8] [00002206] +07:33:32 [ 49] [ 3] [418] +07:33:32 [ 54] [ 40] [1001418C0000075216771002418C000007521677] +07:33:32 ============================================================================ +07:33:32 Sending to : +07:33:32 ============================================================================ +07:33:32 + + +waiting on router queue for slot.... +07:33:33 ============================================================================ +07:33:33 Slot Id : <273> +07:33:33 Transaction Type : RESPONSE +07:33:33 Received From : +07:33:33 ============================================================================ +07:33:33 FNo. Len. Field Value +07:33:33 ============================================================================ +07:33:33 [ 1] [ 4] [0210] +07:33:33 [ 2] [ 16] [6213541000108194] +07:33:33 [ 3] [ 6] [011000] +07:33:33 [ 4] [ 12] [000020000000] +07:33:33 [ 7] [ 10] [0320073352] +07:33:33 [ 11] [ 6] [201356] +07:33:33 [ 12] [ 6] [073826] +07:33:33 [ 13] [ 4] [0320] +07:33:33 [ 15] [ 4] [0320] +07:33:33 [ 18] [ 4] [6011] +07:33:33 [ 19] [ 3] [418] +07:33:33 [ 32] [ 6] [198901] +07:33:33 [ 35] [ 32] [6213541000108194=491212010819841] +07:33:33 [ 37] [ 12] [507907201356] +07:33:33 [ 38] [ 6] [704498] +07:33:33 [ 39] [ 2] [00] +07:33:33 [ 41] [ 8] [00002206] +07:33:33 [ 49] [ 3] [418] +07:33:33 [ 54] [ 40] [1001418C0000075216771002418C000007521677] +07:33:33 ============================================================================ +07:33:33 Calculate Source COMM Id = 5 +07:33:33 ============================================================================ +07:33:33 + + +waiting on router queue for slot.... +07:33:40 ============================================================================ +07:33:40 Slot Id : <266> +07:33:40 Transaction Type : REQUEST +07:33:40 Received From : +07:33:40 ============================================================================ +07:33:40 FNo. Len. Field Value +07:33:40 ============================================================================ +07:33:40 [ 1] [ 4] [0800] +07:33:40 [ 7] [ 10] [0320123248] +07:33:40 [ 11] [ 6] [155194] +07:33:40 [ 70] [ 3] [301] +07:33:40 ============================================================================ +07:33:40 + + +waiting on router queue for slot.... +07:33:40 Sending to : +07:33:40 ============================================================================ +07:33:40 ============================================================================ +07:33:40 Slot Id : <266> +07:33:40 Transaction Type : RESPONSE +07:33:40 Received From : +07:33:40 ============================================================================ +07:33:40 FNo. Len. Field Value +07:33:40 ============================================================================ +07:33:40 [ 1] [ 4] [0810] +07:33:40 [ 7] [ 10] [0320123248] +07:33:40 [ 11] [ 6] [155194] +07:33:40 [ 39] [ 2] [00] +07:33:40 [ 70] [ 3] [301] +07:33:40 ============================================================================ +07:33:40 Calculate Source COMM Id = 2 +07:33:40 ============================================================================ +07:33:40 + + +waiting on router queue for slot.... +07:33:41 ============================================================================ +07:33:41 Slot Id : <272> +07:33:41 Transaction Type : REQUEST +07:33:41 Received From : +07:33:41 ============================================================================ +07:33:41 FNo. Len. Field Value +07:33:41 ============================================================================ +07:33:41 [ 1] [ 4] [0200] +07:33:41 [ 2] [ 16] [6213545000318067] +07:33:41 [ 3] [ 6] [010000] +07:33:41 [ 4] [ 12] [000010000000] +07:33:41 [ 7] [ 10] [0320073133] +07:33:41 [ 11] [ 6] [930448] +07:33:41 [ 12] [ 6] [073133] +07:33:41 [ 13] [ 4] [0320] +07:33:41 [ 15] [ 4] [0320] +07:33:41 [ 18] [ 4] [6011] +07:33:41 [ 19] [ 3] [418] +07:33:41 [ 22] [ 3] [021] +07:33:41 [ 25] [ 2] [01] +07:33:41 [ 28] [ 9] [D00002000] +07:33:41 [ 32] [ 6] [668899] +07:33:41 [ 35] [ 32] [6213545000318067=491212011806967] +07:33:41 [ 37] [ 12] [507901237309] +07:33:41 [ 41] [ 8] [03002002] +07:33:41 [ 42] [ 15] [APT ] +07:33:41 [ 43] [ 40] [ PROVINCIAL OF PHONGSALY P] +07:33:41 [ 49] [ 3] [418] +07:33:41 [ 52] [ 16] [015DFE81E7DF382C] +07:33:41 ============================================================================ +07:33:41 + + +waiting on router queue for slot.... +07:33:41 Sending to : +07:33:41 ============================================================================ +07:33:41 Sending to : +07:33:41 ============================================================================ +07:33:41 ============================================================================ +07:33:41 Slot Id : <272> +07:33:41 Transaction Type : REQUEST +07:33:41 Received From : +07:33:41 ============================================================================ +07:33:41 FNo. Len. Field Value +07:33:41 ============================================================================ +07:33:41 [ 1] [ 4] [0200] +07:33:41 [ 2] [ 16] [6213545000318067] +07:33:41 [ 3] [ 6] [010000] +07:33:41 [ 4] [ 12] [000010000000] +07:33:41 [ 7] [ 10] [0320073133] +07:33:41 [ 11] [ 6] [930448] +07:33:41 [ 12] [ 6] [073133] +07:33:41 [ 13] [ 4] [0320] +07:33:41 [ 15] [ 4] [0320] +07:33:41 [ 18] [ 4] [6011] +07:33:41 [ 19] [ 3] [418] +07:33:41 [ 22] [ 3] [021] +07:33:41 [ 25] [ 2] [01] +07:33:41 [ 28] [ 9] [D00002000] +07:33:41 [ 32] [ 6] [668899] +07:33:41 [ 35] [ 32] [6213545000318067=491212011806967] +07:33:41 [ 37] [ 12] [507901237309] +07:33:41 [ 41] [ 8] [03002002] +07:33:41 [ 42] [ 15] [APT ] +07:33:41 [ 43] [ 40] [ PROVINCIAL OF PHONGSALY P] +07:33:41 [ 49] [ 3] [418] +07:33:41 [ 52] [ 16] [015DFE81E7DF382C] +07:33:41 ============================================================================ +07:33:41 + + +waiting on router queue for slot.... +07:33:41 Sending to : +07:33:41 ============================================================================ +07:33:41 ============================================================================ +07:33:41 Slot Id : <272> +07:33:41 Transaction Type : REQUEST +07:33:41 Received From : +07:33:41 ============================================================================ +07:33:41 FNo. Len. Field Value +07:33:41 ============================================================================ +07:33:41 [ 1] [ 4] [0200] +07:33:41 [ 2] [ 16] [6213545000318067] +07:33:41 [ 3] [ 6] [010000] +07:33:41 [ 4] [ 12] [000010000000] +07:33:41 [ 7] [ 10] [0320073133] +07:33:41 [ 11] [ 6] [930448] +07:33:41 [ 12] [ 6] [073133] +07:33:41 [ 13] [ 4] [0320] +07:33:41 [ 15] [ 4] [0320] +07:33:41 [ 18] [ 4] [6011] +07:33:41 [ 19] [ 3] [418] +07:33:41 [ 22] [ 3] [021] +07:33:41 [ 25] [ 2] [01] +07:33:41 [ 28] [ 9] [D00002000] +07:33:41 [ 32] [ 6] [668899] +07:33:41 [ 35] [ 32] [6213545000318067=491212011806967] +07:33:41 [ 37] [ 12] [507901237309] +07:33:41 [ 41] [ 8] [03002002] +07:33:41 [ 42] [ 15] [APT ] +07:33:41 [ 43] [ 40] [ PROVINCIAL OF PHONGSALY P] +07:33:41 [ 49] [ 3] [418] +07:33:41 [ 52] [ 16] [C11521EFE7FE151E] +07:33:41 ============================================================================ +07:33:41 + + +waiting on router queue for slot.... +07:33:41 Sending to : <0> +07:33:41 ============================================================================ +07:33:42 ============================================================================ +07:33:42 Slot Id : <272> +07:33:42 Transaction Type : RESPONSE +07:33:42 Received From : +07:33:42 ============================================================================ +07:33:42 FNo. Len. Field Value +07:33:42 ============================================================================ +07:33:42 [ 1] [ 4] [0210] +07:33:42 [ 2] [ 16] [6213545000318067] +07:33:42 [ 3] [ 6] [010000] +07:33:42 [ 4] [ 12] [000010000000] +07:33:42 [ 7] [ 10] [0320073133] +07:33:42 [ 11] [ 6] [930448] +07:33:42 [ 12] [ 6] [073133] +07:33:42 [ 13] [ 4] [0320] +07:33:42 [ 15] [ 4] [0320] +07:33:42 [ 18] [ 4] [6011] +07:33:42 [ 19] [ 3] [418] +07:33:42 [ 32] [ 6] [668899] +07:33:42 [ 35] [ 32] [6213545000318067=491212011806967] +07:33:42 [ 37] [ 12] [507901237309] +07:33:42 [ 38] [ 6] [052461] +07:33:42 [ 39] [ 2] [00] +07:33:42 [ 41] [ 8] [03002002] +07:33:42 [ 49] [ 3] [418] +07:33:42 [ 54] [ 40] [0001418C0004719058000002418C000471905800] +07:33:42 ============================================================================ +07:33:42 Sending to : +07:33:42 ============================================================================ +07:33:42 + + +waiting on router queue for slot.... +07:33:44 ============================================================================ +07:33:44 Slot Id : <272> +07:33:44 Transaction Type : RESPONSE +07:33:44 Received From : +07:33:44 ============================================================================ +07:33:44 FNo. Len. Field Value +07:33:44 ============================================================================ +07:33:44 [ 1] [ 4] [0210] +07:33:44 [ 2] [ 16] [6213545000318067] +07:33:44 [ 3] [ 6] [010000] +07:33:44 [ 4] [ 12] [000010000000] +07:33:44 [ 7] [ 10] [0320073133] +07:33:44 [ 11] [ 6] [930448] +07:33:44 [ 12] [ 6] [073133] +07:33:44 [ 13] [ 4] [0320] +07:33:44 [ 15] [ 4] [0320] +07:33:44 [ 18] [ 4] [6011] +07:33:44 [ 19] [ 3] [418] +07:33:44 [ 32] [ 6] [668899] +07:33:44 [ 35] [ 32] [6213545000318067=491212011806967] +07:33:44 [ 37] [ 12] [507901237309] +07:33:44 [ 38] [ 6] [052461] +07:33:44 [ 39] [ 2] [00] +07:33:44 [ 41] [ 8] [03002002] +07:33:44 [ 49] [ 3] [418] +07:33:44 [ 54] [ 40] [0001418C0004719058000002418C000471905800] +07:33:44 ============================================================================ +07:33:44 Calculate Source COMM Id = 4 +07:33:44 ============================================================================ +07:33:44 + + +waiting on router queue for slot.... +07:33:51 ============================================================================ +07:33:51 Slot Id : <282> +07:33:51 Transaction Type : REQUEST +07:33:51 Received From : +07:33:51 ============================================================================ +07:33:51 FNo. Len. Field Value +07:33:51 ============================================================================ +07:33:51 [ 1] [ 4] [0800] +07:33:51 [ 7] [ 10] [0320123300] +07:33:51 [ 11] [ 6] [155195] +07:33:51 [ 70] [ 3] [301] +07:33:51 ============================================================================ +07:33:51 + + +waiting on router queue for slot.... +07:33:51 Sending to : +07:33:51 ============================================================================ +07:33:51 ============================================================================ +07:33:51 Slot Id : <282> +07:33:51 Transaction Type : RESPONSE +07:33:51 Received From : +07:33:51 ============================================================================ +07:33:51 FNo. Len. Field Value +07:33:51 ============================================================================ +07:33:51 [ 1] [ 4] [0810] +07:33:51 [ 7] [ 10] [0320123300] +07:33:51 [ 11] [ 6] [155195] +07:33:51 [ 39] [ 2] [00] +07:33:51 [ 70] [ 3] [301] +07:33:51 ============================================================================ +07:33:51 Calculate Source COMM Id = 2 +07:33:51 ============================================================================ +07:33:51 + + +waiting on router queue for slot.... +07:33:58 ============================================================================ +07:33:58 Slot Id : <241> +07:33:58 Transaction Type : REQUEST +07:33:58 Received From : +07:33:58 ============================================================================ +07:33:58 FNo. Len. Field Value +07:33:58 ============================================================================ +07:33:58 [ 1] [ 4] [0800] +07:33:58 [ 7] [ 10] [0320144547] +07:33:58 [ 11] [ 6] [074547] +07:33:58 [ 37] [ 12] [57907074547] +07:33:58 [ 70] [ 3] [301] +07:33:58 ============================================================================ +07:33:58 + + +waiting on router queue for slot.... +07:33:58 Sending to : +07:33:58 ============================================================================ +07:33:58 ============================================================================ +07:33:58 Slot Id : <241> +07:33:58 Transaction Type : RESPONSE +07:33:58 Received From : +07:33:58 ============================================================================ +07:33:58 FNo. Len. Field Value +07:33:58 ============================================================================ +07:33:58 [ 1] [ 4] [0810] +07:33:58 [ 7] [ 10] [0320144547] +07:33:58 [ 11] [ 6] [074547] +07:33:58 [ 37] [ 12] [579070745470] +07:33:58 [ 39] [ 2] [00] +07:33:58 [ 70] [ 3] [810] +07:33:58 ============================================================================ +07:33:58 Calculate Source COMM Id = 6 +07:33:58 ============================================================================ +07:33:58 + + +waiting on router queue for slot.... +07:34:02 ============================================================================ +07:34:02 Slot Id : <252> +07:34:02 Transaction Type : REQUEST +07:34:02 Received From : +07:34:02 ============================================================================ +07:34:02 FNo. Len. Field Value +07:34:02 ============================================================================ +07:34:02 [ 1] [ 4] [0800] +07:34:02 [ 7] [ 10] [0320123310] +07:34:02 [ 11] [ 6] [155196] +07:34:02 [ 70] [ 3] [301] +07:34:02 ============================================================================ +07:34:02 + + +waiting on router queue for slot.... +07:34:02 Sending to : +07:34:02 ============================================================================ +07:34:02 ============================================================================ +07:34:02 Slot Id : <252> +07:34:02 Transaction Type : RESPONSE +07:34:02 Received From : +07:34:02 ============================================================================ +07:34:02 FNo. Len. Field Value +07:34:02 ============================================================================ +07:34:02 [ 1] [ 4] [0810] +07:34:02 [ 7] [ 10] [0320123310] +07:34:02 [ 11] [ 6] [155196] +07:34:02 [ 39] [ 2] [00] +07:34:02 [ 70] [ 3] [301] +07:34:02 ============================================================================ +07:34:02 Calculate Source COMM Id = 2 +07:34:02 ============================================================================ +07:34:02 + + +waiting on router queue for slot.... +07:34:14 ============================================================================ +07:34:14 Slot Id : <245> +07:34:14 Transaction Type : REQUEST +07:34:14 Received From : +07:34:14 ============================================================================ +07:34:14 FNo. Len. Field Value +07:34:14 ============================================================================ +07:34:14 [ 1] [ 4] [0800] +07:34:14 [ 2] [ 5] [02531] +07:34:14 [ 3] [ 6] [579078] +07:34:14 [ 7] [ 10] [0320003414] +07:34:14 [ 11] [ 6] [806851] +07:34:14 [ 15] [ 10] [0320003414] +07:34:14 [ 37] [ 11] [57907806851] +07:34:14 [ 70] [ 3] [001] +07:34:14 ============================================================================ +07:34:14 + + +waiting on router queue for slot.... +07:34:14 ============================================================================ +07:34:14 Slot Id : <245> +07:34:14 Transaction Type : RESPONSE +07:34:14 Received From : +07:34:14 ============================================================================ +07:34:14 FNo. Len. Field Value +07:34:14 ============================================================================ +07:34:14 [ 1] [ 4] [0810] +07:34:14 [ 7] [ 10] [0320003414] +07:34:14 [ 11] [ 6] [806851] +07:34:14 [ 15] [ 4] [0320] +07:34:14 [ 37] [ 12] [57907806851] +07:34:14 [ 39] [ 2] [00] +07:34:14 [ 70] [ 3] [001] +07:34:14 ============================================================================ +07:34:14 Sending to : +07:34:14 ============================================================================ +07:34:14 + + +waiting on router queue for slot.... +07:34:20 ============================================================================ +07:34:20 Slot Id : <280> +07:34:20 Transaction Type : REQUEST +07:34:20 Received From : +07:34:20 ============================================================================ +07:34:20 FNo. Len. Field Value +07:34:20 ============================================================================ +07:34:20 [ 1] [ 4] [0800] +07:34:20 [ 7] [ 10] [0320123327] +07:34:20 [ 11] [ 6] [155197] +07:34:20 [ 70] [ 3] [301] +07:34:20 ============================================================================ +07:34:20 + + +waiting on router queue for slot.... +07:34:20 Sending to : +07:34:20 ============================================================================ +07:34:20 ============================================================================ +07:34:20 Slot Id : <280> +07:34:20 Transaction Type : RESPONSE +07:34:20 Received From : +07:34:20 ============================================================================ +07:34:20 FNo. Len. Field Value +07:34:20 ============================================================================ +07:34:20 [ 1] [ 4] [0810] +07:34:20 [ 7] [ 10] [0320123327] +07:34:20 [ 11] [ 6] [155197] +07:34:20 [ 39] [ 2] [00] +07:34:20 [ 70] [ 3] [301] +07:34:20 ============================================================================ +07:34:20 Calculate Source COMM Id = 2 +07:34:20 ============================================================================ +07:34:20 + + +waiting on router queue for slot.... +07:34:23 ============================================================================ +07:34:23 Slot Id : <276> +07:34:23 Transaction Type : REQUEST +07:34:23 Received From : +07:34:23 ============================================================================ +07:34:23 FNo. Len. Field Value +07:34:23 ============================================================================ +07:34:23 [ 1] [ 4] [0200] +07:34:23 [ 2] [ 16] [1808930300043411] +07:34:23 [ 3] [ 6] [301000] +07:34:23 [ 4] [ 12] [000000000000] +07:34:23 [ 7] [ 10] [0320073420] +07:34:23 [ 11] [ 6] [671320] +07:34:23 [ 12] [ 6] [073420] +07:34:23 [ 13] [ 4] [0320] +07:34:23 [ 15] [ 4] [0320] +07:34:23 [ 18] [ 4] [6011] +07:34:23 [ 22] [ 3] [900] +07:34:23 [ 25] [ 2] [02] +07:34:23 [ 28] [ 9] [D00000000] +07:34:23 [ 32] [ 6] [621354] +07:34:23 [ 35] [ 27] [1808930300043411=1803500143] +07:34:23 [ 37] [ 12] [507902835017] +07:34:23 [ 41] [ 8] [01007700] +07:34:23 [ 42] [ 15] [NATIVE ] +07:34:23 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +07:34:23 [ 49] [ 3] [418] +07:34:23 [ 52] [ 16] [7715655ECF15B729] +07:34:23 ============================================================================ +07:34:23 + + +waiting on router queue for slot.... +07:34:23 Sending to : +07:34:23 ============================================================================ +07:34:23 Sending to : +07:34:23 ============================================================================ +07:34:24 ============================================================================ +07:34:24 Slot Id : <276> +07:34:24 Transaction Type : REQUEST +07:34:24 Received From : +07:34:24 ============================================================================ +07:34:24 FNo. Len. Field Value +07:34:24 ============================================================================ +07:34:24 [ 1] [ 4] [0200] +07:34:24 [ 2] [ 16] [1808930300043411] +07:34:24 [ 3] [ 6] [301000] +07:34:24 [ 4] [ 12] [000000000000] +07:34:24 [ 7] [ 10] [0320073420] +07:34:24 [ 11] [ 6] [671320] +07:34:24 [ 12] [ 6] [073420] +07:34:24 [ 13] [ 4] [0320] +07:34:24 [ 15] [ 4] [0320] +07:34:24 [ 18] [ 4] [6011] +07:34:24 [ 22] [ 3] [900] +07:34:24 [ 25] [ 2] [02] +07:34:24 [ 28] [ 9] [D00000000] +07:34:24 [ 32] [ 6] [621354] +07:34:24 [ 35] [ 27] [1808930300043411=1803500143] +07:34:24 [ 37] [ 12] [507902835017] +07:34:24 [ 41] [ 8] [01007700] +07:34:24 [ 42] [ 15] [NATIVE ] +07:34:24 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +07:34:24 [ 49] [ 3] [418] +07:34:24 [ 52] [ 16] [7715655ECF15B729] +07:34:24 ============================================================================ +07:34:24 + + +waiting on router queue for slot.... +07:34:24 Sending to : +07:34:24 ============================================================================ +07:34:24 ============================================================================ +07:34:24 Slot Id : <276> +07:34:24 Transaction Type : REQUEST +07:34:24 Received From : +07:34:24 ============================================================================ +07:34:24 FNo. Len. Field Value +07:34:24 ============================================================================ +07:34:24 [ 1] [ 4] [0200] +07:34:24 [ 2] [ 16] [1808930300043411] +07:34:24 [ 3] [ 6] [301000] +07:34:24 [ 4] [ 12] [000000000000] +07:34:24 [ 7] [ 10] [0320073420] +07:34:24 [ 11] [ 6] [671320] +07:34:24 [ 12] [ 6] [073420] +07:34:24 [ 13] [ 4] [0320] +07:34:24 [ 15] [ 4] [0320] +07:34:24 [ 18] [ 4] [6011] +07:34:24 [ 22] [ 3] [900] +07:34:24 [ 25] [ 2] [02] +07:34:24 [ 28] [ 9] [D00000000] +07:34:24 [ 32] [ 6] [621354] +07:34:24 [ 35] [ 27] [1808930300043411=1803500143] +07:34:24 [ 37] [ 12] [507902835017] +07:34:24 [ 41] [ 8] [01007700] +07:34:24 [ 42] [ 15] [NATIVE ] +07:34:24 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +07:34:24 [ 49] [ 3] [418] +07:34:24 [ 52] [ 16] [E7B3A59E4772F100] +07:34:24 ============================================================================ +07:34:24 + + +waiting on router queue for slot.... +07:34:24 Sending to : <2> +07:34:24 ============================================================================ +07:34:29 ============================================================================ +07:34:29 Slot Id : <276> +07:34:29 Transaction Type : RESPONSE +07:34:29 Received From : +07:34:29 ============================================================================ +07:34:29 FNo. Len. Field Value +07:34:29 ============================================================================ +07:34:29 [ 1] [ 4] [0210] +07:34:29 [ 2] [ 16] [1808930300043411] +07:34:29 [ 3] [ 6] [301000] +07:34:29 [ 7] [ 10] [0320073420] +07:34:29 [ 11] [ 6] [671320] +07:34:29 [ 12] [ 6] [073420] +07:34:29 [ 13] [ 4] [0320] +07:34:29 [ 14] [ 4] [1803] +07:34:29 [ 19] [ 3] [418] +07:34:29 [ 32] [ 6] [621354] +07:34:29 [ 37] [ 12] [507902835017] +07:34:29 [ 38] [ 6] [671320] +07:34:29 [ 39] [ 2] [00] +07:34:29 [ 41] [ 8] [01007700] +07:34:29 [ 49] [ 3] [418] +07:34:29 [ 52] [ 16] [E7B3A59E4772F100] +07:34:29 [ 54] [ 20] [1002418C000137053300] +07:34:29 ============================================================================ +07:34:29 Sending to : +07:34:29 ============================================================================ +07:34:29 + + +waiting on router queue for slot.... +07:34:30 ============================================================================ +07:34:30 Slot Id : <276> +07:34:30 Transaction Type : RESPONSE +07:34:30 Received From : +07:34:30 ============================================================================ +07:34:30 FNo. Len. Field Value +07:34:30 ============================================================================ +07:34:30 [ 1] [ 4] [0210] +07:34:30 [ 2] [ 16] [1808930300043411] +07:34:30 [ 3] [ 6] [301000] +07:34:30 [ 7] [ 10] [0320073420] +07:34:30 [ 11] [ 6] [671320] +07:34:30 [ 12] [ 6] [073420] +07:34:30 [ 13] [ 4] [0320] +07:34:30 [ 14] [ 4] [1803] +07:34:30 [ 19] [ 3] [418] +07:34:30 [ 32] [ 6] [621354] +07:34:30 [ 37] [ 12] [507902835017] +07:34:30 [ 38] [ 6] [671320] +07:34:30 [ 39] [ 2] [00] +07:34:30 [ 41] [ 8] [01007700] +07:34:30 [ 49] [ 3] [418] +07:34:30 [ 52] [ 16] [E7B3A59E4772F100] +07:34:30 [ 54] [ 20] [1002418C000137053300] +07:34:30 ============================================================================ +07:34:30 Calculate Source COMM Id = 0 +07:34:30 ============================================================================ +07:34:30 + + +waiting on router queue for slot.... +07:34:35 ============================================================================ +07:34:35 Slot Id : <258> +07:34:35 Transaction Type : REQUEST +07:34:35 Received From : +07:34:35 ============================================================================ +07:34:35 FNo. Len. Field Value +07:34:35 ============================================================================ +07:34:35 [ 1] [ 4] [0800] +07:34:35 [ 7] [ 10] [0320123343] +07:34:35 [ 11] [ 6] [155198] +07:34:35 [ 70] [ 3] [301] +07:34:35 ============================================================================ +07:34:35 + + +waiting on router queue for slot.... +07:34:35 Sending to : +07:34:35 ============================================================================ +07:34:35 ============================================================================ +07:34:35 Slot Id : <258> +07:34:35 Transaction Type : RESPONSE +07:34:35 Received From : +07:34:35 ============================================================================ +07:34:35 FNo. Len. Field Value +07:34:35 ============================================================================ +07:34:35 [ 1] [ 4] [0810] +07:34:35 [ 7] [ 10] [0320123343] +07:34:35 [ 11] [ 6] [155198] +07:34:35 [ 39] [ 2] [00] +07:34:35 [ 70] [ 3] [301] +07:34:35 ============================================================================ +07:34:35 Calculate Source COMM Id = 2 +07:34:35 ============================================================================ +07:34:35 + + +waiting on router queue for slot.... +07:34:37 ============================================================================ +07:34:37 Slot Id : <284> +07:34:37 Transaction Type : REQUEST +07:34:37 Received From : +07:34:37 ============================================================================ +07:34:37 FNo. Len. Field Value +07:34:37 ============================================================================ +07:34:37 [ 1] [ 4] [0200] +07:34:37 [ 2] [ 16] [6688990103330203] +07:34:37 [ 3] [ 6] [300000] +07:34:37 [ 4] [ 12] [000000000000] +07:34:37 [ 7] [ 10] [0320073434] +07:34:37 [ 11] [ 6] [671352] +07:34:37 [ 12] [ 6] [073434] +07:34:37 [ 13] [ 4] [0320] +07:34:37 [ 15] [ 4] [0320] +07:34:37 [ 18] [ 4] [6011] +07:34:37 [ 22] [ 3] [900] +07:34:37 [ 25] [ 2] [02] +07:34:37 [ 28] [ 9] [D00000000] +07:34:37 [ 32] [ 6] [621354] +07:34:37 [ 35] [ 37] [6688990103330203=42121231020366400000] +07:34:37 [ 37] [ 12] [507903365308] +07:34:37 [ 41] [ 8] [13001600] +07:34:37 [ 42] [ 15] [NATIVE ] +07:34:37 [ 43] [ 40] [Khangkhai College Paek LAO] +07:34:37 [ 49] [ 3] [418] +07:34:37 [ 52] [ 16] [43CEB679B0875025] +07:34:37 ============================================================================ +07:34:37 + + +waiting on router queue for slot.... +07:34:37 Sending to : +07:34:37 ============================================================================ +07:34:37 Sending to : +07:34:37 ============================================================================ +07:34:38 ============================================================================ +07:34:38 Slot Id : <284> +07:34:38 Transaction Type : REQUEST +07:34:38 Received From : +07:34:38 ============================================================================ +07:34:38 FNo. Len. Field Value +07:34:38 ============================================================================ +07:34:38 [ 1] [ 4] [0200] +07:34:38 [ 2] [ 16] [6688990103330203] +07:34:38 [ 3] [ 6] [300000] +07:34:38 [ 4] [ 12] [000000000000] +07:34:38 [ 7] [ 10] [0320073434] +07:34:38 [ 11] [ 6] [671352] +07:34:38 [ 12] [ 6] [073434] +07:34:38 [ 13] [ 4] [0320] +07:34:38 [ 15] [ 4] [0320] +07:34:38 [ 18] [ 4] [6011] +07:34:38 [ 22] [ 3] [900] +07:34:38 [ 25] [ 2] [02] +07:34:38 [ 28] [ 9] [D00000000] +07:34:38 [ 32] [ 6] [621354] +07:34:38 [ 35] [ 37] [6688990103330203=42121231020366400000] +07:34:38 [ 37] [ 12] [507903365308] +07:34:38 [ 41] [ 8] [13001600] +07:34:38 [ 42] [ 15] [NATIVE ] +07:34:38 [ 43] [ 40] [Khangkhai College Paek LAO] +07:34:38 [ 49] [ 3] [418] +07:34:38 [ 52] [ 16] [43CEB679B0875025] +07:34:38 ============================================================================ +07:34:38 + + +waiting on router queue for slot.... +07:34:38 Sending to : +07:34:38 ============================================================================ +07:34:38 ============================================================================ +07:34:38 Slot Id : <284> +07:34:38 Transaction Type : REQUEST +07:34:38 Received From : +07:34:38 ============================================================================ +07:34:38 FNo. Len. Field Value +07:34:38 ============================================================================ +07:34:38 [ 1] [ 4] [0200] +07:34:38 [ 2] [ 16] [6688990103330203] +07:34:38 [ 3] [ 6] [300000] +07:34:38 [ 4] [ 12] [000000000000] +07:34:38 [ 7] [ 10] [0320073434] +07:34:38 [ 11] [ 6] [671352] +07:34:38 [ 12] [ 6] [073434] +07:34:38 [ 13] [ 4] [0320] +07:34:38 [ 15] [ 4] [0320] +07:34:38 [ 18] [ 4] [6011] +07:34:38 [ 22] [ 3] [900] +07:34:38 [ 25] [ 2] [02] +07:34:38 [ 28] [ 9] [D00000000] +07:34:38 [ 32] [ 6] [621354] +07:34:38 [ 35] [ 37] [6688990103330203=42121231020366400000] +07:34:38 [ 37] [ 12] [507903365308] +07:34:38 [ 41] [ 8] [13001600] +07:34:38 [ 42] [ 15] [NATIVE ] +07:34:38 [ 43] [ 40] [Khangkhai College Paek LAO] +07:34:38 [ 49] [ 3] [418] +07:34:38 [ 52] [ 16] [B7720B989F8F5A41] +07:34:38 ============================================================================ +07:34:38 + + +waiting on router queue for slot.... +07:34:38 Sending to : <4> +07:34:38 ============================================================================ +07:34:39 ============================================================================ +07:34:39 Slot Id : <284> +07:34:39 Transaction Type : RESPONSE +07:34:39 Received From : +07:34:39 ============================================================================ +07:34:39 FNo. Len. Field Value +07:34:39 ============================================================================ +07:34:39 [ 1] [ 4] [0210] +07:34:39 [ 2] [ 16] [6688990103330203] +07:34:39 [ 3] [ 6] [300000] +07:34:39 [ 4] [ 12] [000000000000] +07:34:39 [ 11] [ 6] [671352] +07:34:39 [ 12] [ 6] [073434] +07:34:39 [ 15] [ 4] [0320] +07:34:39 [ 18] [ 4] [6011] +07:34:39 [ 32] [ 6] [621354] +07:34:39 [ 35] [ 37] [6688990103330203=42121231020366400000] +07:34:39 [ 37] [ 12] [507903365308] +07:34:39 [ 38] [ 6] [816564] +07:34:39 [ 39] [ 2] [00] +07:34:39 [ 41] [ 8] [13001600] +07:34:39 [ 49] [ 3] [418] +07:34:39 [ 54] [ 20] [0002418C000351967926] +07:34:39 ============================================================================ +07:34:39 Sending to : +07:34:39 ============================================================================ +07:34:39 + + +waiting on router queue for slot.... +07:34:40 ============================================================================ +07:34:40 Slot Id : <284> +07:34:40 Transaction Type : RESPONSE +07:34:40 Received From : +07:34:40 ============================================================================ +07:34:40 FNo. Len. Field Value +07:34:40 ============================================================================ +07:34:40 [ 1] [ 4] [0210] +07:34:40 [ 2] [ 16] [6688990103330203] +07:34:40 [ 3] [ 6] [300000] +07:34:40 [ 4] [ 12] [000000000000] +07:34:40 [ 11] [ 6] [671352] +07:34:40 [ 12] [ 6] [073434] +07:34:40 [ 15] [ 4] [0320] +07:34:40 [ 18] [ 4] [6011] +07:34:40 [ 32] [ 6] [621354] +07:34:40 [ 35] [ 37] [6688990103330203=42121231020366400000] +07:34:40 [ 37] [ 12] [507903365308] +07:34:40 [ 38] [ 6] [816564] +07:34:40 [ 39] [ 2] [00] +07:34:40 [ 41] [ 8] [13001600] +07:34:40 [ 49] [ 3] [418] +07:34:40 [ 54] [ 20] [0002418C000351967926] +07:34:40 ============================================================================ +07:34:40 Calculate Source COMM Id = 0 +07:34:40 ============================================================================ +07:34:40 + + +waiting on router queue for slot.... +07:34:46 ============================================================================ +07:34:46 Slot Id : <219> +07:34:46 Transaction Type : REQUEST +07:34:46 Received From : +07:34:46 ============================================================================ +07:34:46 FNo. Len. Field Value +07:34:46 ============================================================================ +07:34:46 [ 1] [ 4] [0800] +07:34:46 [ 7] [ 10] [0320123354] +07:34:46 [ 11] [ 6] [155199] +07:34:46 [ 70] [ 3] [301] +07:34:46 ============================================================================ +07:34:46 + + +waiting on router queue for slot.... +07:34:46 Sending to : +07:34:46 ============================================================================ +07:34:46 ============================================================================ +07:34:46 Slot Id : <219> +07:34:46 Transaction Type : RESPONSE +07:34:46 Received From : +07:34:46 ============================================================================ +07:34:46 FNo. Len. Field Value +07:34:46 ============================================================================ +07:34:46 [ 1] [ 4] [0810] +07:34:46 [ 7] [ 10] [0320123354] +07:34:46 [ 11] [ 6] [155199] +07:34:46 [ 39] [ 2] [00] +07:34:46 [ 70] [ 3] [301] +07:34:46 ============================================================================ +07:34:46 Calculate Source COMM Id = 2 +07:34:46 ============================================================================ +07:34:46 + + +waiting on router queue for slot.... +07:34:55 ============================================================================ +07:34:55 Slot Id : <290> +07:34:55 Transaction Type : REQUEST +07:34:55 Received From : +07:34:55 ============================================================================ +07:34:55 FNo. Len. Field Value +07:34:55 ============================================================================ +07:34:55 [ 1] [ 4] [0800] +07:34:55 [ 7] [ 10] [0320004242] +07:34:55 [ 11] [ 6] [003590] +07:34:55 [ 37] [ 12] [57907003590] +07:34:55 [ 70] [ 3] [301] +07:34:55 ============================================================================ +07:34:55 + + +waiting on router queue for slot.... +07:34:55 Sending to : +07:34:55 ============================================================================ +07:34:55 ============================================================================ +07:34:55 Slot Id : <290> +07:34:55 Transaction Type : RESPONSE +07:34:55 Received From : +07:34:55 ============================================================================ +07:34:55 FNo. Len. Field Value +07:34:55 ============================================================================ +07:34:55 [ 1] [ 4] [0810] +07:34:55 [ 7] [ 10] [0320004242] +07:34:55 [ 11] [ 6] [003590] +07:34:55 [ 37] [ 12] [579070035900] +07:34:55 [ 39] [ 2] [00] +07:34:55 [ 70] [ 3] [810] +07:34:55 ============================================================================ +07:34:55 Calculate Source COMM Id = 1 +07:34:55 ============================================================================ +07:34:55 + + +waiting on router queue for slot.... +07:34:57 ============================================================================ +07:34:57 Slot Id : <287> +07:34:57 Transaction Type : REQUEST +07:34:57 Received From : +07:34:57 ============================================================================ +07:34:57 FNo. Len. Field Value +07:34:57 ============================================================================ +07:34:57 [ 1] [ 4] [0800] +07:34:57 [ 7] [ 10] [0320123405] +07:34:57 [ 11] [ 6] [155200] +07:34:57 [ 70] [ 3] [301] +07:34:57 ============================================================================ +07:34:57 + + +waiting on router queue for slot.... +07:34:57 Sending to : +07:34:57 ============================================================================ +07:34:57 ============================================================================ +07:34:57 Slot Id : <287> +07:34:57 Transaction Type : RESPONSE +07:34:57 Received From : +07:34:57 ============================================================================ +07:34:57 FNo. Len. Field Value +07:34:57 ============================================================================ +07:34:57 [ 1] [ 4] [0810] +07:34:57 [ 7] [ 10] [0320123405] +07:34:57 [ 11] [ 6] [155200] +07:34:57 [ 39] [ 2] [00] +07:34:57 [ 70] [ 3] [301] +07:34:57 ============================================================================ +07:34:57 Calculate Source COMM Id = 2 +07:34:57 ============================================================================ +07:34:57 + + +waiting on router queue for slot.... +07:35:03 ============================================================================ +07:35:03 Slot Id : <224> +07:35:03 Transaction Type : REQUEST +07:35:03 Received From : +07:35:03 ============================================================================ +07:35:03 FNo. Len. Field Value +07:35:03 ============================================================================ +07:35:03 [ 1] [ 4] [0800] +07:35:03 [ 7] [ 10] [0320144652] +07:35:03 [ 11] [ 6] [074652] +07:35:03 [ 37] [ 12] [57907074652] +07:35:03 [ 70] [ 3] [301] +07:35:03 ============================================================================ +07:35:03 + + +waiting on router queue for slot.... +07:35:03 Sending to : +07:35:03 ============================================================================ +07:35:03 ============================================================================ +07:35:03 Slot Id : <224> +07:35:03 Transaction Type : RESPONSE +07:35:03 Received From : +07:35:03 ============================================================================ +07:35:03 FNo. Len. Field Value +07:35:03 ============================================================================ +07:35:03 [ 1] [ 4] [0810] +07:35:03 [ 7] [ 10] [0320144652] +07:35:03 [ 11] [ 6] [074652] +07:35:03 [ 37] [ 12] [579070746520] +07:35:03 [ 39] [ 2] [00] +07:35:03 [ 70] [ 3] [810] +07:35:03 ============================================================================ +07:35:03 Calculate Source COMM Id = 6 +07:35:03 ============================================================================ +07:35:03 + + +waiting on router queue for slot.... +07:35:06 ============================================================================ +07:35:06 Slot Id : <288> +07:35:06 Transaction Type : REQUEST +07:35:06 Received From : +07:35:06 ============================================================================ +07:35:06 FNo. Len. Field Value +07:35:06 ============================================================================ +07:35:06 [ 1] [ 4] [0200] +07:35:06 [ 2] [ 16] [6688990108425404] +07:35:06 [ 3] [ 6] [010000] +07:35:06 [ 4] [ 12] [000200000000] +07:35:06 [ 7] [ 10] [0320003414] +07:35:06 [ 11] [ 6] [266818] +07:35:06 [ 12] [ 6] [073414] +07:35:06 [ 13] [ 4] [0320] +07:35:06 [ 14] [ 4] [4406] +07:35:06 [ 15] [ 4] [0320] +07:35:06 [ 18] [ 4] [6011] +07:35:06 [ 19] [ 3] [418] +07:35:06 [ 22] [ 3] [021] +07:35:06 [ 25] [ 2] [01] +07:35:06 [ 28] [ 9] [D00002000] +07:35:06 [ 32] [ 6] [180893] +07:35:06 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:35:06 [ 37] [ 12] [507900266818] +07:35:06 [ 41] [ 8] [0263UDXB] +07:35:06 [ 42] [ 15] [999999 ] +07:35:06 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +07:35:06 [ 49] [ 3] [418] +07:35:06 [ 52] [ 16] [E140C4CD0E0E6924] +07:35:06 ============================================================================ +07:35:06 + + +waiting on router queue for slot.... +07:35:06 Sending to : +07:35:06 ============================================================================ +07:35:06 Sending to : +07:35:06 ============================================================================ +07:35:06 ============================================================================ +07:35:06 Slot Id : <288> +07:35:06 Transaction Type : REQUEST +07:35:06 Received From : +07:35:06 ============================================================================ +07:35:06 FNo. Len. Field Value +07:35:06 ============================================================================ +07:35:06 [ 1] [ 4] [0200] +07:35:06 [ 2] [ 16] [6688990108425404] +07:35:06 [ 3] [ 6] [010000] +07:35:06 [ 4] [ 12] [000200000000] +07:35:06 [ 7] [ 10] [0320003414] +07:35:06 [ 11] [ 6] [266818] +07:35:06 [ 12] [ 6] [073414] +07:35:06 [ 13] [ 4] [0320] +07:35:06 [ 14] [ 4] [4406] +07:35:06 [ 15] [ 4] [0320] +07:35:06 [ 18] [ 4] [6011] +07:35:06 [ 19] [ 3] [418] +07:35:06 [ 22] [ 3] [021] +07:35:06 [ 25] [ 2] [01] +07:35:06 [ 28] [ 9] [D00002000] +07:35:06 [ 32] [ 6] [180893] +07:35:06 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:35:06 [ 37] [ 12] [507900266818] +07:35:06 [ 41] [ 8] [0263UDXB] +07:35:06 [ 42] [ 15] [999999 ] +07:35:06 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +07:35:06 [ 49] [ 3] [418] +07:35:06 [ 52] [ 16] [E140C4CD0E0E6924] +07:35:06 ============================================================================ +07:35:06 + + +waiting on router queue for slot.... +07:35:06 Sending to : +07:35:06 ============================================================================ +07:35:06 ============================================================================ +07:35:06 Slot Id : <288> +07:35:06 Transaction Type : REQUEST +07:35:06 Received From : +07:35:06 ============================================================================ +07:35:06 FNo. Len. Field Value +07:35:06 ============================================================================ +07:35:06 [ 1] [ 4] [0200] +07:35:06 [ 2] [ 16] [6688990108425404] +07:35:06 [ 3] [ 6] [010000] +07:35:06 [ 4] [ 12] [000200000000] +07:35:06 [ 7] [ 10] [0320003414] +07:35:06 [ 11] [ 6] [266818] +07:35:06 [ 12] [ 6] [073414] +07:35:06 [ 13] [ 4] [0320] +07:35:06 [ 14] [ 4] [4406] +07:35:06 [ 15] [ 4] [0320] +07:35:06 [ 18] [ 4] [6011] +07:35:06 [ 19] [ 3] [418] +07:35:06 [ 22] [ 3] [021] +07:35:06 [ 25] [ 2] [01] +07:35:06 [ 28] [ 9] [D00002000] +07:35:06 [ 32] [ 6] [180893] +07:35:06 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:35:06 [ 37] [ 12] [507900266818] +07:35:06 [ 41] [ 8] [0263UDXB] +07:35:06 [ 42] [ 15] [999999 ] +07:35:06 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +07:35:06 [ 49] [ 3] [418] +07:35:06 [ 52] [ 16] [193DDE6CEF0DA63D] +07:35:06 ============================================================================ +07:35:06 + + +waiting on router queue for slot.... +07:35:06 Sending to : <0> +07:35:06 ============================================================================ +07:35:06 ============================================================================ +07:35:06 Slot Id : <288> +07:35:06 Transaction Type : RESPONSE +07:35:06 Received From : +07:35:06 ============================================================================ +07:35:06 FNo. Len. Field Value +07:35:06 ============================================================================ +07:35:06 [ 1] [ 4] [0210] +07:35:06 [ 2] [ 16] [6688990108425404] +07:35:06 [ 3] [ 6] [010000] +07:35:06 [ 4] [ 12] [000200000000] +07:35:06 [ 7] [ 10] [0320003414] +07:35:06 [ 11] [ 6] [266818] +07:35:06 [ 12] [ 6] [073414] +07:35:06 [ 13] [ 4] [0320] +07:35:06 [ 15] [ 4] [0320] +07:35:06 [ 18] [ 4] [6011] +07:35:06 [ 19] [ 3] [418] +07:35:06 [ 22] [ 3] [021] +07:35:06 [ 32] [ 6] [180893] +07:35:06 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:35:06 [ 37] [ 12] [507900266818] +07:35:06 [ 39] [ 2] [61] +07:35:06 [ 41] [ 8] [0263UDXB] +07:35:06 [ 49] [ 3] [418] +07:35:06 ============================================================================ +07:35:06 Sending to : +07:35:06 ============================================================================ +07:35:06 + + +waiting on router queue for slot.... +07:35:07 ============================================================================ +07:35:07 Slot Id : <288> +07:35:07 Transaction Type : RESPONSE +07:35:07 Received From : +07:35:07 ============================================================================ +07:35:07 FNo. Len. Field Value +07:35:07 ============================================================================ +07:35:07 [ 1] [ 4] [0210] +07:35:07 [ 2] [ 16] [6688990108425404] +07:35:07 [ 3] [ 6] [010000] +07:35:07 [ 4] [ 12] [000200000000] +07:35:07 [ 7] [ 10] [0320003414] +07:35:07 [ 11] [ 6] [266818] +07:35:07 [ 12] [ 6] [073414] +07:35:07 [ 13] [ 4] [0320] +07:35:07 [ 15] [ 4] [0320] +07:35:07 [ 18] [ 4] [6011] +07:35:07 [ 19] [ 3] [418] +07:35:07 [ 22] [ 3] [021] +07:35:07 [ 32] [ 6] [180893] +07:35:07 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:35:07 [ 37] [ 12] [507900266818] +07:35:07 [ 39] [ 2] [61] +07:35:07 [ 41] [ 8] [0263UDXB] +07:35:07 [ 49] [ 3] [418] +07:35:07 ============================================================================ +07:35:07 Calculate Source COMM Id = 2 +07:35:07 ============================================================================ +07:35:07 + + +waiting on router queue for slot.... +07:35:08 ============================================================================ +07:35:08 Slot Id : <271> +07:35:08 Transaction Type : REQUEST +07:35:08 Received From : +07:35:08 ============================================================================ +07:35:08 FNo. Len. Field Value +07:35:08 ============================================================================ +07:35:08 [ 1] [ 4] [0800] +07:35:08 [ 7] [ 10] [0320123416] +07:35:08 [ 11] [ 6] [155201] +07:35:08 [ 70] [ 3] [301] +07:35:08 ============================================================================ +07:35:08 + + +waiting on router queue for slot.... +07:35:08 Sending to : +07:35:08 ============================================================================ +07:35:08 ============================================================================ +07:35:08 Slot Id : <271> +07:35:08 Transaction Type : RESPONSE +07:35:08 Received From : +07:35:08 ============================================================================ +07:35:08 FNo. Len. Field Value +07:35:08 ============================================================================ +07:35:08 [ 1] [ 4] [0810] +07:35:08 [ 7] [ 10] [0320123416] +07:35:08 [ 11] [ 6] [155201] +07:35:08 [ 39] [ 2] [00] +07:35:08 [ 70] [ 3] [301] +07:35:08 ============================================================================ +07:35:08 Calculate Source COMM Id = 2 +07:35:08 ============================================================================ +07:35:08 + + +waiting on router queue for slot.... +07:35:08 ============================================================================ +07:35:08 Slot Id : <277> +07:35:08 Transaction Type : REQUEST +07:35:08 Received From : +07:35:08 ============================================================================ +07:35:08 FNo. Len. Field Value +07:35:08 ============================================================================ +07:35:08 [ 1] [ 4] [0200] +07:35:08 [ 2] [ 16] [6213544002235650] +07:35:08 [ 3] [ 6] [300000] +07:35:08 [ 4] [ 12] [000000000000] +07:35:08 [ 7] [ 10] [0320073300] +07:35:08 [ 11] [ 6] [930487] +07:35:08 [ 12] [ 6] [073300] +07:35:08 [ 13] [ 4] [0320] +07:35:08 [ 15] [ 4] [0320] +07:35:08 [ 18] [ 4] [6011] +07:35:08 [ 19] [ 3] [418] +07:35:08 [ 22] [ 3] [021] +07:35:08 [ 25] [ 2] [01] +07:35:08 [ 28] [ 9] [D00000000] +07:35:08 [ 32] [ 6] [668899] +07:35:08 [ 35] [ 32] [6213544002235650=491212013565927] +07:35:08 [ 37] [ 12] [507901303567] +07:35:08 [ 41] [ 8] [03006004] +07:35:08 [ 42] [ 15] [APT ] +07:35:08 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:35:08 [ 49] [ 3] [418] +07:35:08 [ 52] [ 16] [8B4FB1CD1717FC8B] +07:35:08 ============================================================================ +07:35:08 + + +waiting on router queue for slot.... +07:35:08 Sending to : +07:35:08 ============================================================================ +07:35:08 Sending to : +07:35:08 ============================================================================ +07:35:09 ============================================================================ +07:35:09 Slot Id : <277> +07:35:09 Transaction Type : REQUEST +07:35:09 Received From : +07:35:09 ============================================================================ +07:35:09 FNo. Len. Field Value +07:35:09 ============================================================================ +07:35:09 [ 1] [ 4] [0200] +07:35:09 [ 2] [ 16] [6213544002235650] +07:35:09 [ 3] [ 6] [300000] +07:35:09 [ 4] [ 12] [000000000000] +07:35:09 [ 7] [ 10] [0320073300] +07:35:09 [ 11] [ 6] [930487] +07:35:09 [ 12] [ 6] [073300] +07:35:09 [ 13] [ 4] [0320] +07:35:09 [ 15] [ 4] [0320] +07:35:09 [ 18] [ 4] [6011] +07:35:09 [ 19] [ 3] [418] +07:35:09 [ 22] [ 3] [021] +07:35:09 [ 25] [ 2] [01] +07:35:09 [ 28] [ 9] [D00000000] +07:35:09 [ 32] [ 6] [668899] +07:35:09 [ 35] [ 32] [6213544002235650=491212013565927] +07:35:09 [ 37] [ 12] [507901303567] +07:35:09 [ 41] [ 8] [03006004] +07:35:09 [ 42] [ 15] [APT ] +07:35:09 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:35:09 [ 49] [ 3] [418] +07:35:09 [ 52] [ 16] [8B4FB1CD1717FC8B] +07:35:09 ============================================================================ +07:35:09 + + +waiting on router queue for slot.... +07:35:09 Sending to : +07:35:09 ============================================================================ +07:35:09 ============================================================================ +07:35:09 Slot Id : <277> +07:35:09 Transaction Type : REQUEST +07:35:09 Received From : +07:35:09 ============================================================================ +07:35:09 FNo. Len. Field Value +07:35:09 ============================================================================ +07:35:09 [ 1] [ 4] [0200] +07:35:09 [ 2] [ 16] [6213544002235650] +07:35:09 [ 3] [ 6] [300000] +07:35:09 [ 4] [ 12] [000000000000] +07:35:09 [ 7] [ 10] [0320073300] +07:35:09 [ 11] [ 6] [930487] +07:35:09 [ 12] [ 6] [073300] +07:35:09 [ 13] [ 4] [0320] +07:35:09 [ 15] [ 4] [0320] +07:35:09 [ 18] [ 4] [6011] +07:35:09 [ 19] [ 3] [418] +07:35:09 [ 22] [ 3] [021] +07:35:09 [ 25] [ 2] [01] +07:35:09 [ 28] [ 9] [D00000000] +07:35:09 [ 32] [ 6] [668899] +07:35:09 [ 35] [ 32] [6213544002235650=491212013565927] +07:35:09 [ 37] [ 12] [507901303567] +07:35:09 [ 41] [ 8] [03006004] +07:35:09 [ 42] [ 15] [APT ] +07:35:09 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:35:09 [ 49] [ 3] [418] +07:35:09 [ 52] [ 16] [DEC77E40EF0B086F] +07:35:09 ============================================================================ +07:35:09 + + +waiting on router queue for slot.... +07:35:09 Sending to : <0> +07:35:09 ============================================================================ +07:35:09 ============================================================================ +07:35:09 Slot Id : <277> +07:35:09 Transaction Type : RESPONSE +07:35:09 Received From : +07:35:09 ============================================================================ +07:35:09 FNo. Len. Field Value +07:35:09 ============================================================================ +07:35:09 [ 1] [ 4] [0210] +07:35:09 [ 2] [ 16] [6213544002235650] +07:35:09 [ 3] [ 6] [300000] +07:35:09 [ 4] [ 12] [000000000000] +07:35:09 [ 7] [ 10] [0320073300] +07:35:09 [ 11] [ 6] [930487] +07:35:09 [ 12] [ 6] [073300] +07:35:09 [ 13] [ 4] [0320] +07:35:09 [ 15] [ 4] [0320] +07:35:09 [ 18] [ 4] [6011] +07:35:09 [ 19] [ 3] [418] +07:35:09 [ 22] [ 3] [021] +07:35:09 [ 32] [ 6] [668899] +07:35:09 [ 35] [ 32] [6213544002235650=491212013565927] +07:35:09 [ 37] [ 12] [507901303567] +07:35:09 [ 38] [ 6] [073505] +07:35:09 [ 39] [ 2] [55] +07:35:09 [ 41] [ 8] [03006004] +07:35:09 [ 49] [ 3] [418] +07:35:09 ============================================================================ +07:35:09 Sending to : +07:35:09 ============================================================================ +07:35:09 + + +waiting on router queue for slot.... +07:35:10 ============================================================================ +07:35:10 Slot Id : <277> +07:35:10 Transaction Type : RESPONSE +07:35:10 Received From : +07:35:10 ============================================================================ +07:35:10 FNo. Len. Field Value +07:35:10 ============================================================================ +07:35:10 [ 1] [ 4] [0210] +07:35:10 [ 2] [ 16] [6213544002235650] +07:35:10 [ 3] [ 6] [300000] +07:35:10 [ 4] [ 12] [000000000000] +07:35:10 [ 7] [ 10] [0320073300] +07:35:10 [ 11] [ 6] [930487] +07:35:10 [ 12] [ 6] [073300] +07:35:10 [ 13] [ 4] [0320] +07:35:10 [ 15] [ 4] [0320] +07:35:10 [ 18] [ 4] [6011] +07:35:10 [ 19] [ 3] [418] +07:35:10 [ 22] [ 3] [021] +07:35:10 [ 32] [ 6] [668899] +07:35:10 [ 35] [ 32] [6213544002235650=491212013565927] +07:35:10 [ 37] [ 12] [507901303567] +07:35:10 [ 38] [ 6] [073505] +07:35:10 [ 39] [ 2] [55] +07:35:10 [ 41] [ 8] [03006004] +07:35:10 [ 49] [ 3] [418] +07:35:10 ============================================================================ +07:35:10 Calculate Source COMM Id = 4 +07:35:10 ============================================================================ +07:35:10 + + +waiting on router queue for slot.... +07:35:16 ============================================================================ +07:35:16 Slot Id : <267> +07:35:16 Transaction Type : REQUEST +07:35:16 Received From : +07:35:16 ============================================================================ +07:35:16 FNo. Len. Field Value +07:35:16 ============================================================================ +07:35:16 [ 1] [ 4] [0200] +07:35:16 [ 2] [ 16] [6213544001162715] +07:35:16 [ 3] [ 6] [011000] +07:35:16 [ 4] [ 12] [000010000000] +07:35:16 [ 7] [ 10] [0320073538] +07:35:16 [ 11] [ 6] [201377] +07:35:16 [ 12] [ 6] [081356] +07:35:16 [ 13] [ 4] [0320] +07:35:16 [ 14] [ 4] [4912] +07:35:16 [ 15] [ 4] [0320] +07:35:16 [ 18] [ 4] [6011] +07:35:16 [ 19] [ 3] [418] +07:35:16 [ 22] [ 3] [021] +07:35:16 [ 25] [ 2] [01] +07:35:16 [ 28] [ 9] [D00002000] +07:35:16 [ 32] [ 6] [198901] +07:35:16 [ 35] [ 32] [6213544001162715=491212016271029] +07:35:16 [ 37] [ 12] [507907201377] +07:35:16 [ 41] [ 8] [00002201] +07:35:16 [ 42] [ 15] [000000041002201] +07:35:16 [ 43] [ 40] [WAD CHAN VN ] +07:35:16 [ 49] [ 3] [418] +07:35:16 [ 52] [ 16] [C40035689E6D4745] +07:35:16 ============================================================================ +07:35:16 + + +waiting on router queue for slot.... +07:35:16 Sending to : +07:35:16 ============================================================================ +07:35:16 Sending to : +07:35:16 ============================================================================ +07:35:16 ============================================================================ +07:35:16 Slot Id : <236> +07:35:16 Transaction Type : REQUEST +07:35:16 Received From : +07:35:16 ============================================================================ +07:35:16 FNo. Len. Field Value +07:35:16 ============================================================================ +07:35:16 [ 1] [ 4] [0800] +07:35:16 [ 2] [ 5] [02531] +07:35:16 [ 3] [ 6] [579078] +07:35:16 [ 7] [ 10] [0320003516] +07:35:16 [ 11] [ 6] [806852] +07:35:16 [ 15] [ 10] [0320003516] +07:35:16 [ 37] [ 11] [57907806852] +07:35:16 [ 70] [ 3] [001] +07:35:16 ============================================================================ +07:35:16 + + +waiting on router queue for slot.... +07:35:16 ============================================================================ +07:35:16 Slot Id : <236> +07:35:16 Transaction Type : RESPONSE +07:35:16 Received From : +07:35:16 ============================================================================ +07:35:16 FNo. Len. Field Value +07:35:16 ============================================================================ +07:35:16 [ 1] [ 4] [0810] +07:35:16 [ 7] [ 10] [0320003516] +07:35:16 [ 11] [ 6] [806852] +07:35:16 [ 15] [ 4] [0320] +07:35:16 [ 37] [ 12] [57907806852] +07:35:16 [ 39] [ 2] [00] +07:35:16 [ 70] [ 3] [001] +07:35:16 ============================================================================ +07:35:16 Sending to : +07:35:16 ============================================================================ +07:35:16 + + +waiting on router queue for slot.... +07:35:16 ============================================================================ +07:35:16 Slot Id : <267> +07:35:16 Transaction Type : REQUEST +07:35:16 Received From : +07:35:16 ============================================================================ +07:35:16 FNo. Len. Field Value +07:35:16 ============================================================================ +07:35:16 [ 1] [ 4] [0200] +07:35:16 [ 2] [ 16] [6213544001162715] +07:35:16 [ 3] [ 6] [011000] +07:35:16 [ 4] [ 12] [000010000000] +07:35:16 [ 7] [ 10] [0320073538] +07:35:16 [ 11] [ 6] [201377] +07:35:16 [ 12] [ 6] [081356] +07:35:16 [ 13] [ 4] [0320] +07:35:16 [ 14] [ 4] [4912] +07:35:16 [ 15] [ 4] [0320] +07:35:16 [ 18] [ 4] [6011] +07:35:16 [ 19] [ 3] [418] +07:35:16 [ 22] [ 3] [021] +07:35:16 [ 25] [ 2] [01] +07:35:16 [ 28] [ 9] [D00002000] +07:35:16 [ 32] [ 6] [198901] +07:35:16 [ 35] [ 32] [6213544001162715=491212016271029] +07:35:16 [ 37] [ 12] [507907201377] +07:35:16 [ 41] [ 8] [00002201] +07:35:16 [ 42] [ 15] [000000041002201] +07:35:16 [ 43] [ 40] [WAD CHAN VN ] +07:35:16 [ 49] [ 3] [418] +07:35:16 [ 52] [ 16] [C40035689E6D4745] +07:35:16 ============================================================================ +07:35:16 + + +waiting on router queue for slot.... +07:35:16 Sending to : +07:35:16 ============================================================================ +07:35:16 ============================================================================ +07:35:16 Slot Id : <267> +07:35:16 Transaction Type : REQUEST +07:35:16 Received From : +07:35:16 ============================================================================ +07:35:16 FNo. Len. Field Value +07:35:16 ============================================================================ +07:35:16 [ 1] [ 4] [0200] +07:35:16 [ 2] [ 16] [6213544001162715] +07:35:16 [ 3] [ 6] [011000] +07:35:16 [ 4] [ 12] [000010000000] +07:35:16 [ 7] [ 10] [0320073538] +07:35:16 [ 11] [ 6] [201377] +07:35:16 [ 12] [ 6] [081356] +07:35:16 [ 13] [ 4] [0320] +07:35:16 [ 14] [ 4] [4912] +07:35:16 [ 15] [ 4] [0320] +07:35:16 [ 18] [ 4] [6011] +07:35:16 [ 19] [ 3] [418] +07:35:16 [ 22] [ 3] [021] +07:35:16 [ 25] [ 2] [01] +07:35:16 [ 28] [ 9] [D00002000] +07:35:16 [ 32] [ 6] [198901] +07:35:16 [ 35] [ 32] [6213544001162715=491212016271029] +07:35:16 [ 37] [ 12] [507907201377] +07:35:16 [ 41] [ 8] [00002201] +07:35:16 [ 42] [ 15] [000000041002201] +07:35:16 [ 43] [ 40] [WAD CHAN VN ] +07:35:16 [ 49] [ 3] [418] +07:35:16 [ 52] [ 16] [B15C684E7FE45FB0] +07:35:16 ============================================================================ +07:35:16 + + +waiting on router queue for slot.... +07:35:16 Sending to : <0> +07:35:16 ============================================================================ +07:35:17 ============================================================================ +07:35:17 Slot Id : <267> +07:35:17 Transaction Type : RESPONSE +07:35:17 Received From : +07:35:17 ============================================================================ +07:35:17 FNo. Len. Field Value +07:35:17 ============================================================================ +07:35:17 [ 1] [ 4] [0210] +07:35:17 [ 2] [ 16] [6213544001162715] +07:35:17 [ 3] [ 6] [011000] +07:35:17 [ 4] [ 12] [000010000000] +07:35:17 [ 7] [ 10] [0320073538] +07:35:17 [ 11] [ 6] [201377] +07:35:17 [ 12] [ 6] [081356] +07:35:17 [ 13] [ 4] [0320] +07:35:17 [ 15] [ 4] [0320] +07:35:17 [ 18] [ 4] [6011] +07:35:17 [ 19] [ 3] [418] +07:35:17 [ 32] [ 6] [198901] +07:35:17 [ 35] [ 32] [6213544001162715=491212016271029] +07:35:17 [ 37] [ 12] [507907201377] +07:35:17 [ 38] [ 6] [104713] +07:35:17 [ 39] [ 2] [00] +07:35:17 [ 41] [ 8] [00002201] +07:35:17 [ 49] [ 3] [418] +07:35:17 [ 54] [ 40] [1001418C0000161241271002418C000016124127] +07:35:17 ============================================================================ +07:35:17 Sending to : +07:35:17 ============================================================================ +07:35:17 + + +waiting on router queue for slot.... +07:35:18 ============================================================================ +07:35:18 Slot Id : <267> +07:35:18 Transaction Type : RESPONSE +07:35:18 Received From : +07:35:18 ============================================================================ +07:35:18 FNo. Len. Field Value +07:35:18 ============================================================================ +07:35:18 [ 1] [ 4] [0210] +07:35:18 [ 2] [ 16] [6213544001162715] +07:35:18 [ 3] [ 6] [011000] +07:35:18 [ 4] [ 12] [000010000000] +07:35:18 [ 7] [ 10] [0320073538] +07:35:18 [ 11] [ 6] [201377] +07:35:18 [ 12] [ 6] [081356] +07:35:18 [ 13] [ 4] [0320] +07:35:18 [ 15] [ 4] [0320] +07:35:18 [ 18] [ 4] [6011] +07:35:18 [ 19] [ 3] [418] +07:35:18 [ 32] [ 6] [198901] +07:35:18 [ 35] [ 32] [6213544001162715=491212016271029] +07:35:18 [ 37] [ 12] [507907201377] +07:35:18 [ 38] [ 6] [104713] +07:35:18 [ 39] [ 2] [00] +07:35:18 [ 41] [ 8] [00002201] +07:35:18 [ 49] [ 3] [418] +07:35:18 [ 54] [ 40] [1001418C0000161241271002418C000016124127] +07:35:18 ============================================================================ +07:35:18 Calculate Source COMM Id = 5 +07:35:18 ============================================================================ +07:35:18 + + +waiting on router queue for slot.... +07:35:23 ============================================================================ +07:35:23 Slot Id : <293> +07:35:23 Transaction Type : REQUEST +07:35:23 Received From : +07:35:23 ============================================================================ +07:35:23 FNo. Len. Field Value +07:35:23 ============================================================================ +07:35:23 [ 1] [ 4] [0800] +07:35:23 [ 7] [ 10] [0320123431] +07:35:23 [ 11] [ 6] [155202] +07:35:23 [ 70] [ 3] [301] +07:35:23 ============================================================================ +07:35:23 + + +waiting on router queue for slot.... +07:35:23 Sending to : +07:35:23 ============================================================================ +07:35:23 ============================================================================ +07:35:23 Slot Id : <293> +07:35:23 Transaction Type : RESPONSE +07:35:23 Received From : +07:35:23 ============================================================================ +07:35:23 FNo. Len. Field Value +07:35:23 ============================================================================ +07:35:23 [ 1] [ 4] [0810] +07:35:23 [ 7] [ 10] [0320123431] +07:35:23 [ 11] [ 6] [155202] +07:35:23 [ 39] [ 2] [00] +07:35:23 [ 70] [ 3] [301] +07:35:23 ============================================================================ +07:35:23 Calculate Source COMM Id = 2 +07:35:23 ============================================================================ +07:35:23 + + +waiting on router queue for slot.... +07:35:23 ============================================================================ +07:35:23 Slot Id : <278> +07:35:23 Transaction Type : REQUEST +07:35:23 Received From : +07:35:23 ============================================================================ +07:35:23 FNo. Len. Field Value +07:35:23 ============================================================================ +07:35:23 [ 1] [ 4] [0200] +07:35:23 [ 2] [ 16] [6688990103330203] +07:35:23 [ 3] [ 6] [300000] +07:35:23 [ 4] [ 12] [000000000000] +07:35:23 [ 7] [ 10] [0320073519] +07:35:23 [ 11] [ 6] [671526] +07:35:23 [ 12] [ 6] [073519] +07:35:23 [ 13] [ 4] [0320] +07:35:23 [ 15] [ 4] [0320] +07:35:23 [ 18] [ 4] [6011] +07:35:23 [ 22] [ 3] [900] +07:35:23 [ 25] [ 2] [02] +07:35:23 [ 28] [ 9] [D00000000] +07:35:23 [ 32] [ 6] [621354] +07:35:23 [ 35] [ 37] [6688990103330203=42121231020366400000] +07:35:23 [ 37] [ 12] [507903365309] +07:35:23 [ 41] [ 8] [13001600] +07:35:23 [ 42] [ 15] [NATIVE ] +07:35:23 [ 43] [ 40] [Khangkhai College Paek LAO] +07:35:23 [ 49] [ 3] [418] +07:35:23 [ 52] [ 16] [43CEB679B0875025] +07:35:23 ============================================================================ +07:35:23 + + +waiting on router queue for slot.... +07:35:23 Sending to : +07:35:23 ============================================================================ +07:35:23 Sending to : +07:35:23 ============================================================================ +07:35:23 ============================================================================ +07:35:23 Slot Id : <278> +07:35:23 Transaction Type : REQUEST +07:35:23 Received From : +07:35:23 ============================================================================ +07:35:23 FNo. Len. Field Value +07:35:23 ============================================================================ +07:35:23 [ 1] [ 4] [0200] +07:35:23 [ 2] [ 16] [6688990103330203] +07:35:23 [ 3] [ 6] [300000] +07:35:23 [ 4] [ 12] [000000000000] +07:35:23 [ 7] [ 10] [0320073519] +07:35:23 [ 11] [ 6] [671526] +07:35:23 [ 12] [ 6] [073519] +07:35:23 [ 13] [ 4] [0320] +07:35:23 [ 15] [ 4] [0320] +07:35:23 [ 18] [ 4] [6011] +07:35:23 [ 22] [ 3] [900] +07:35:23 [ 25] [ 2] [02] +07:35:23 [ 28] [ 9] [D00000000] +07:35:23 [ 32] [ 6] [621354] +07:35:23 [ 35] [ 37] [6688990103330203=42121231020366400000] +07:35:23 [ 37] [ 12] [507903365309] +07:35:23 [ 41] [ 8] [13001600] +07:35:23 [ 42] [ 15] [NATIVE ] +07:35:23 [ 43] [ 40] [Khangkhai College Paek LAO] +07:35:23 [ 49] [ 3] [418] +07:35:23 [ 52] [ 16] [43CEB679B0875025] +07:35:23 ============================================================================ +07:35:23 + + +waiting on router queue for slot.... +07:35:23 Sending to : +07:35:23 ============================================================================ +07:35:23 ============================================================================ +07:35:23 Slot Id : <278> +07:35:23 Transaction Type : REQUEST +07:35:23 Received From : +07:35:23 ============================================================================ +07:35:23 FNo. Len. Field Value +07:35:23 ============================================================================ +07:35:23 [ 1] [ 4] [0200] +07:35:23 [ 2] [ 16] [6688990103330203] +07:35:23 [ 3] [ 6] [300000] +07:35:23 [ 4] [ 12] [000000000000] +07:35:23 [ 7] [ 10] [0320073519] +07:35:23 [ 11] [ 6] [671526] +07:35:23 [ 12] [ 6] [073519] +07:35:23 [ 13] [ 4] [0320] +07:35:23 [ 15] [ 4] [0320] +07:35:23 [ 18] [ 4] [6011] +07:35:23 [ 22] [ 3] [900] +07:35:23 [ 25] [ 2] [02] +07:35:23 [ 28] [ 9] [D00000000] +07:35:23 [ 32] [ 6] [621354] +07:35:23 [ 35] [ 37] [6688990103330203=42121231020366400000] +07:35:23 [ 37] [ 12] [507903365309] +07:35:23 [ 41] [ 8] [13001600] +07:35:23 [ 42] [ 15] [NATIVE ] +07:35:23 [ 43] [ 40] [Khangkhai College Paek LAO] +07:35:23 [ 49] [ 3] [418] +07:35:23 [ 52] [ 16] [B7720B989F8F5A41] +07:35:23 ============================================================================ +07:35:23 + + +waiting on router queue for slot.... +07:35:23 Sending to : <4> +07:35:23 ============================================================================ +07:35:24 ============================================================================ +07:35:24 Slot Id : <278> +07:35:24 Transaction Type : RESPONSE +07:35:24 Received From : +07:35:24 ============================================================================ +07:35:24 FNo. Len. Field Value +07:35:24 ============================================================================ +07:35:24 [ 1] [ 4] [0210] +07:35:24 [ 2] [ 16] [6688990103330203] +07:35:24 [ 3] [ 6] [300000] +07:35:24 [ 4] [ 12] [000000000000] +07:35:24 [ 11] [ 6] [671526] +07:35:24 [ 12] [ 6] [073519] +07:35:24 [ 15] [ 4] [0320] +07:35:24 [ 18] [ 4] [6011] +07:35:24 [ 32] [ 6] [621354] +07:35:24 [ 35] [ 37] [6688990103330203=42121231020366400000] +07:35:24 [ 37] [ 12] [507903365309] +07:35:24 [ 38] [ 6] [205173] +07:35:24 [ 39] [ 2] [00] +07:35:24 [ 41] [ 8] [13001600] +07:35:24 [ 49] [ 3] [418] +07:35:24 [ 54] [ 20] [0002418C000351967926] +07:35:24 ============================================================================ +07:35:24 Sending to : +07:35:24 ============================================================================ +07:35:24 + + +waiting on router queue for slot.... +07:35:26 ============================================================================ +07:35:26 Slot Id : <278> +07:35:26 Transaction Type : RESPONSE +07:35:26 Received From : +07:35:26 ============================================================================ +07:35:26 FNo. Len. Field Value +07:35:26 ============================================================================ +07:35:26 [ 1] [ 4] [0210] +07:35:26 [ 2] [ 16] [6688990103330203] +07:35:26 [ 3] [ 6] [300000] +07:35:26 [ 4] [ 12] [000000000000] +07:35:26 [ 11] [ 6] [671526] +07:35:26 [ 12] [ 6] [073519] +07:35:26 [ 15] [ 4] [0320] +07:35:26 [ 18] [ 4] [6011] +07:35:26 [ 32] [ 6] [621354] +07:35:26 [ 35] [ 37] [6688990103330203=42121231020366400000] +07:35:26 [ 37] [ 12] [507903365309] +07:35:26 [ 38] [ 6] [205173] +07:35:26 [ 39] [ 2] [00] +07:35:26 [ 41] [ 8] [13001600] +07:35:26 [ 49] [ 3] [418] +07:35:26 [ 54] [ 20] [0002418C000351967926] +07:35:26 ============================================================================ +07:35:26 Calculate Source COMM Id = 0 +07:35:26 ============================================================================ +07:35:26 + + +waiting on router queue for slot.... +07:35:34 ============================================================================ +07:35:34 Slot Id : <217> +07:35:34 Transaction Type : REQUEST +07:35:34 Received From : +07:35:34 ============================================================================ +07:35:34 FNo. Len. Field Value +07:35:34 ============================================================================ +07:35:34 [ 1] [ 4] [0800] +07:35:34 [ 7] [ 10] [0320123441] +07:35:34 [ 11] [ 6] [155203] +07:35:34 [ 70] [ 3] [301] +07:35:34 ============================================================================ +07:35:34 + + +waiting on router queue for slot.... +07:35:34 Sending to : +07:35:34 ============================================================================ +07:35:34 ============================================================================ +07:35:34 Slot Id : <217> +07:35:34 Transaction Type : RESPONSE +07:35:34 Received From : +07:35:34 ============================================================================ +07:35:34 FNo. Len. Field Value +07:35:34 ============================================================================ +07:35:34 [ 1] [ 4] [0810] +07:35:34 [ 7] [ 10] [0320123441] +07:35:34 [ 11] [ 6] [155203] +07:35:34 [ 39] [ 2] [00] +07:35:34 [ 70] [ 3] [301] +07:35:34 ============================================================================ +07:35:34 Calculate Source COMM Id = 2 +07:35:34 ============================================================================ +07:35:34 + + +waiting on router queue for slot.... +07:35:42 ============================================================================ +07:35:42 Slot Id : <294> +07:35:42 Transaction Type : REQUEST +07:35:42 Received From : +07:35:42 ============================================================================ +07:35:42 FNo. Len. Field Value +07:35:42 ============================================================================ +07:35:42 [ 1] [ 4] [0200] +07:35:42 [ 2] [ 16] [6213544001162715] +07:35:42 [ 3] [ 6] [301000] +07:35:42 [ 4] [ 12] [000000000000] +07:35:42 [ 7] [ 10] [0320073604] +07:35:42 [ 11] [ 6] [201388] +07:35:42 [ 12] [ 6] [081422] +07:35:42 [ 13] [ 4] [0320] +07:35:42 [ 14] [ 4] [4912] +07:35:42 [ 15] [ 4] [0320] +07:35:42 [ 18] [ 4] [6011] +07:35:42 [ 19] [ 3] [418] +07:35:42 [ 22] [ 3] [021] +07:35:42 [ 25] [ 2] [01] +07:35:42 [ 28] [ 9] [D00000000] +07:35:42 [ 32] [ 6] [198901] +07:35:42 [ 35] [ 32] [6213544001162715=491212016271029] +07:35:42 [ 37] [ 12] [507907201388] +07:35:42 [ 41] [ 8] [00002201] +07:35:42 [ 42] [ 15] [000000041002201] +07:35:42 [ 43] [ 40] [WAD CHAN VN ] +07:35:42 [ 49] [ 3] [418] +07:35:42 [ 52] [ 16] [C40035689E6D4745] +07:35:42 ============================================================================ +07:35:42 + + +waiting on router queue for slot.... +07:35:42 Sending to : +07:35:42 ============================================================================ +07:35:42 Sending to : +07:35:42 ============================================================================ +07:35:42 ============================================================================ +07:35:42 Slot Id : <294> +07:35:42 Transaction Type : REQUEST +07:35:42 Received From : +07:35:42 ============================================================================ +07:35:42 FNo. Len. Field Value +07:35:42 ============================================================================ +07:35:42 [ 1] [ 4] [0200] +07:35:42 [ 2] [ 16] [6213544001162715] +07:35:42 [ 3] [ 6] [301000] +07:35:42 [ 4] [ 12] [000000000000] +07:35:42 [ 7] [ 10] [0320073604] +07:35:42 [ 11] [ 6] [201388] +07:35:42 [ 12] [ 6] [081422] +07:35:42 [ 13] [ 4] [0320] +07:35:42 [ 14] [ 4] [4912] +07:35:42 [ 15] [ 4] [0320] +07:35:42 [ 18] [ 4] [6011] +07:35:42 [ 19] [ 3] [418] +07:35:42 [ 22] [ 3] [021] +07:35:42 [ 25] [ 2] [01] +07:35:42 [ 28] [ 9] [D00000000] +07:35:42 [ 32] [ 6] [198901] +07:35:42 [ 35] [ 32] [6213544001162715=491212016271029] +07:35:42 [ 37] [ 12] [507907201388] +07:35:42 [ 41] [ 8] [00002201] +07:35:42 [ 42] [ 15] [000000041002201] +07:35:42 [ 43] [ 40] [WAD CHAN VN ] +07:35:42 [ 49] [ 3] [418] +07:35:42 [ 52] [ 16] [C40035689E6D4745] +07:35:42 ============================================================================ +07:35:42 + + +waiting on router queue for slot.... +07:35:42 Sending to : +07:35:42 ============================================================================ +07:35:42 ============================================================================ +07:35:42 Slot Id : <294> +07:35:42 Transaction Type : REQUEST +07:35:42 Received From : +07:35:42 ============================================================================ +07:35:42 FNo. Len. Field Value +07:35:42 ============================================================================ +07:35:42 [ 1] [ 4] [0200] +07:35:42 [ 2] [ 16] [6213544001162715] +07:35:42 [ 3] [ 6] [301000] +07:35:42 [ 4] [ 12] [000000000000] +07:35:42 [ 7] [ 10] [0320073604] +07:35:42 [ 11] [ 6] [201388] +07:35:42 [ 12] [ 6] [081422] +07:35:42 [ 13] [ 4] [0320] +07:35:42 [ 14] [ 4] [4912] +07:35:42 [ 15] [ 4] [0320] +07:35:42 [ 18] [ 4] [6011] +07:35:42 [ 19] [ 3] [418] +07:35:42 [ 22] [ 3] [021] +07:35:42 [ 25] [ 2] [01] +07:35:42 [ 28] [ 9] [D00000000] +07:35:42 [ 32] [ 6] [198901] +07:35:42 [ 35] [ 32] [6213544001162715=491212016271029] +07:35:42 [ 37] [ 12] [507907201388] +07:35:42 [ 41] [ 8] [00002201] +07:35:42 [ 42] [ 15] [000000041002201] +07:35:42 [ 43] [ 40] [WAD CHAN VN ] +07:35:42 [ 49] [ 3] [418] +07:35:42 [ 52] [ 16] [B15C684E7FE45FB0] +07:35:42 ============================================================================ +07:35:42 + + +waiting on router queue for slot.... +07:35:42 Sending to : <0> +07:35:42 ============================================================================ +07:35:43 ============================================================================ +07:35:43 Slot Id : <294> +07:35:43 Transaction Type : RESPONSE +07:35:43 Received From : +07:35:43 ============================================================================ +07:35:43 FNo. Len. Field Value +07:35:43 ============================================================================ +07:35:43 [ 1] [ 4] [0210] +07:35:43 [ 2] [ 16] [6213544001162715] +07:35:43 [ 3] [ 6] [301000] +07:35:43 [ 4] [ 12] [000000000000] +07:35:43 [ 7] [ 10] [0320073604] +07:35:43 [ 11] [ 6] [201388] +07:35:43 [ 12] [ 6] [081422] +07:35:43 [ 13] [ 4] [0320] +07:35:43 [ 15] [ 4] [0320] +07:35:43 [ 18] [ 4] [6011] +07:35:43 [ 19] [ 3] [418] +07:35:43 [ 32] [ 6] [198901] +07:35:43 [ 35] [ 32] [6213544001162715=491212016271029] +07:35:43 [ 37] [ 12] [507907201388] +07:35:43 [ 38] [ 6] [263441] +07:35:43 [ 39] [ 2] [00] +07:35:43 [ 41] [ 8] [00002201] +07:35:43 [ 49] [ 3] [418] +07:35:43 [ 54] [ 40] [1001418C0000161241271002418C000016124127] +07:35:43 ============================================================================ +07:35:43 Sending to : +07:35:43 ============================================================================ +07:35:43 + + +waiting on router queue for slot.... +07:35:44 ============================================================================ +07:35:44 Slot Id : <294> +07:35:44 Transaction Type : RESPONSE +07:35:44 Received From : +07:35:44 ============================================================================ +07:35:44 FNo. Len. Field Value +07:35:44 ============================================================================ +07:35:44 [ 1] [ 4] [0210] +07:35:44 [ 2] [ 16] [6213544001162715] +07:35:44 [ 3] [ 6] [301000] +07:35:44 [ 4] [ 12] [000000000000] +07:35:44 [ 7] [ 10] [0320073604] +07:35:44 [ 11] [ 6] [201388] +07:35:44 [ 12] [ 6] [081422] +07:35:44 [ 13] [ 4] [0320] +07:35:44 [ 15] [ 4] [0320] +07:35:44 [ 18] [ 4] [6011] +07:35:44 [ 19] [ 3] [418] +07:35:44 [ 32] [ 6] [198901] +07:35:44 [ 35] [ 32] [6213544001162715=491212016271029] +07:35:44 [ 37] [ 12] [507907201388] +07:35:44 [ 38] [ 6] [263441] +07:35:44 [ 39] [ 2] [00] +07:35:44 [ 41] [ 8] [00002201] +07:35:44 [ 49] [ 3] [418] +07:35:44 [ 54] [ 40] [1001418C0000161241271002418C000016124127] +07:35:44 ============================================================================ +07:35:44 Calculate Source COMM Id = 5 +07:35:44 ============================================================================ +07:35:44 + + +waiting on router queue for slot.... +07:35:48 ============================================================================ +07:35:48 Slot Id : <298> +07:35:48 Transaction Type : REQUEST +07:35:48 Received From : +07:35:48 ============================================================================ +07:35:48 FNo. Len. Field Value +07:35:48 ============================================================================ +07:35:48 [ 1] [ 4] [0800] +07:35:48 [ 7] [ 10] [0320123456] +07:35:48 [ 11] [ 6] [155204] +07:35:48 [ 70] [ 3] [301] +07:35:48 ============================================================================ +07:35:48 + + +waiting on router queue for slot.... +07:35:48 Sending to : +07:35:48 ============================================================================ +07:35:48 ============================================================================ +07:35:48 Slot Id : <298> +07:35:48 Transaction Type : RESPONSE +07:35:48 Received From : +07:35:48 ============================================================================ +07:35:48 FNo. Len. Field Value +07:35:48 ============================================================================ +07:35:48 [ 1] [ 4] [0810] +07:35:48 [ 7] [ 10] [0320123456] +07:35:48 [ 11] [ 6] [155204] +07:35:48 [ 39] [ 2] [00] +07:35:48 [ 70] [ 3] [301] +07:35:48 ============================================================================ +07:35:48 Calculate Source COMM Id = 2 +07:35:48 ============================================================================ +07:35:48 + + +waiting on router queue for slot.... +07:35:59 ============================================================================ +07:35:59 Slot Id : <257> +07:35:59 Transaction Type : REQUEST +07:35:59 Received From : +07:35:59 ============================================================================ +07:35:59 FNo. Len. Field Value +07:35:59 ============================================================================ +07:35:59 [ 1] [ 4] [0800] +07:35:59 [ 7] [ 10] [0320123507] +07:35:59 [ 11] [ 6] [155205] +07:35:59 [ 70] [ 3] [301] +07:35:59 ============================================================================ +07:35:59 + + +waiting on router queue for slot.... +07:35:59 Sending to : +07:35:59 ============================================================================ +07:35:59 ============================================================================ +07:35:59 Slot Id : <257> +07:35:59 Transaction Type : RESPONSE +07:35:59 Received From : +07:35:59 ============================================================================ +07:35:59 FNo. Len. Field Value +07:35:59 ============================================================================ +07:35:59 [ 1] [ 4] [0810] +07:35:59 [ 7] [ 10] [0320123507] +07:35:59 [ 11] [ 6] [155205] +07:35:59 [ 39] [ 2] [00] +07:35:59 [ 70] [ 3] [301] +07:35:59 ============================================================================ +07:35:59 Calculate Source COMM Id = 2 +07:35:59 ============================================================================ +07:35:59 + + +waiting on router queue for slot.... +07:36:00 ============================================================================ +07:36:00 Slot Id : <303> +07:36:00 Transaction Type : REQUEST +07:36:00 Received From : +07:36:00 ============================================================================ +07:36:00 FNo. Len. Field Value +07:36:00 ============================================================================ +07:36:00 [ 1] [ 4] [0200] +07:36:00 [ 2] [ 16] [6688990108425404] +07:36:00 [ 3] [ 6] [010000] +07:36:00 [ 4] [ 12] [000100000000] +07:36:00 [ 7] [ 10] [0320003507] +07:36:00 [ 11] [ 6] [266823] +07:36:00 [ 12] [ 6] [073507] +07:36:00 [ 13] [ 4] [0320] +07:36:00 [ 14] [ 4] [4406] +07:36:00 [ 15] [ 4] [0320] +07:36:00 [ 18] [ 4] [6011] +07:36:00 [ 19] [ 3] [418] +07:36:00 [ 22] [ 3] [021] +07:36:00 [ 25] [ 2] [01] +07:36:00 [ 28] [ 9] [D00002000] +07:36:00 [ 32] [ 6] [180893] +07:36:00 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:36:00 [ 37] [ 12] [507900266823] +07:36:00 [ 41] [ 8] [0263UDXB] +07:36:00 [ 42] [ 15] [999999 ] +07:36:00 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +07:36:00 [ 49] [ 3] [418] +07:36:00 [ 52] [ 16] [E140C4CD0E0E6924] +07:36:00 ============================================================================ +07:36:00 + + +waiting on router queue for slot.... +07:36:00 Sending to : +07:36:00 ============================================================================ +07:36:00 Sending to : +07:36:00 ============================================================================ +07:36:01 ============================================================================ +07:36:01 Slot Id : <303> +07:36:01 Transaction Type : REQUEST +07:36:01 Received From : +07:36:01 ============================================================================ +07:36:01 FNo. Len. Field Value +07:36:01 ============================================================================ +07:36:01 [ 1] [ 4] [0200] +07:36:01 [ 2] [ 16] [6688990108425404] +07:36:01 [ 3] [ 6] [010000] +07:36:01 [ 4] [ 12] [000100000000] +07:36:01 [ 7] [ 10] [0320003507] +07:36:01 [ 11] [ 6] [266823] +07:36:01 [ 12] [ 6] [073507] +07:36:01 [ 13] [ 4] [0320] +07:36:01 [ 14] [ 4] [4406] +07:36:01 [ 15] [ 4] [0320] +07:36:01 [ 18] [ 4] [6011] +07:36:01 [ 19] [ 3] [418] +07:36:01 [ 22] [ 3] [021] +07:36:01 [ 25] [ 2] [01] +07:36:01 [ 28] [ 9] [D00002000] +07:36:01 [ 32] [ 6] [180893] +07:36:01 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:36:01 [ 37] [ 12] [507900266823] +07:36:01 [ 41] [ 8] [0263UDXB] +07:36:01 [ 42] [ 15] [999999 ] +07:36:01 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +07:36:01 [ 49] [ 3] [418] +07:36:01 [ 52] [ 16] [E140C4CD0E0E6924] +07:36:01 ============================================================================ +07:36:01 + + +waiting on router queue for slot.... +07:36:01 Sending to : +07:36:01 ============================================================================ +07:36:01 ============================================================================ +07:36:01 Slot Id : <303> +07:36:01 Transaction Type : REQUEST +07:36:01 Received From : +07:36:01 ============================================================================ +07:36:01 FNo. Len. Field Value +07:36:01 ============================================================================ +07:36:01 [ 1] [ 4] [0200] +07:36:01 [ 2] [ 16] [6688990108425404] +07:36:01 [ 3] [ 6] [010000] +07:36:01 [ 4] [ 12] [000100000000] +07:36:01 [ 7] [ 10] [0320003507] +07:36:01 [ 11] [ 6] [266823] +07:36:01 [ 12] [ 6] [073507] +07:36:01 [ 13] [ 4] [0320] +07:36:01 [ 14] [ 4] [4406] +07:36:01 [ 15] [ 4] [0320] +07:36:01 [ 18] [ 4] [6011] +07:36:01 [ 19] [ 3] [418] +07:36:01 [ 22] [ 3] [021] +07:36:01 [ 25] [ 2] [01] +07:36:01 [ 28] [ 9] [D00002000] +07:36:01 [ 32] [ 6] [180893] +07:36:01 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:36:01 [ 37] [ 12] [507900266823] +07:36:01 [ 41] [ 8] [0263UDXB] +07:36:01 [ 42] [ 15] [999999 ] +07:36:01 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +07:36:01 [ 49] [ 3] [418] +07:36:01 [ 52] [ 16] [193DDE6CEF0DA63D] +07:36:01 ============================================================================ +07:36:01 + + +waiting on router queue for slot.... +07:36:01 Sending to : <0> +07:36:01 ============================================================================ +07:36:01 ============================================================================ +07:36:01 Slot Id : <303> +07:36:01 Transaction Type : RESPONSE +07:36:01 Received From : +07:36:01 ============================================================================ +07:36:01 FNo. Len. Field Value +07:36:01 ============================================================================ +07:36:01 [ 1] [ 4] [0210] +07:36:01 [ 2] [ 16] [6688990108425404] +07:36:01 [ 3] [ 6] [010000] +07:36:01 [ 4] [ 12] [000100000000] +07:36:01 [ 7] [ 10] [0320003507] +07:36:01 [ 11] [ 6] [266823] +07:36:01 [ 12] [ 6] [073507] +07:36:01 [ 13] [ 4] [0320] +07:36:01 [ 15] [ 4] [0320] +07:36:01 [ 18] [ 4] [6011] +07:36:01 [ 19] [ 3] [418] +07:36:01 [ 22] [ 3] [021] +07:36:01 [ 32] [ 6] [180893] +07:36:01 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:36:01 [ 37] [ 12] [507900266823] +07:36:01 [ 39] [ 2] [14] +07:36:01 [ 41] [ 8] [0263UDXB] +07:36:01 [ 49] [ 3] [418] +07:36:01 ============================================================================ +07:36:01 Sending to : +07:36:01 ============================================================================ +07:36:01 + + +waiting on router queue for slot.... +07:36:02 ============================================================================ +07:36:02 Slot Id : <303> +07:36:02 Transaction Type : RESPONSE +07:36:02 Received From : +07:36:02 ============================================================================ +07:36:02 FNo. Len. Field Value +07:36:02 ============================================================================ +07:36:02 [ 1] [ 4] [0210] +07:36:02 [ 2] [ 16] [6688990108425404] +07:36:02 [ 3] [ 6] [010000] +07:36:02 [ 4] [ 12] [000100000000] +07:36:02 [ 7] [ 10] [0320003507] +07:36:02 [ 11] [ 6] [266823] +07:36:02 [ 12] [ 6] [073507] +07:36:02 [ 13] [ 4] [0320] +07:36:02 [ 15] [ 4] [0320] +07:36:02 [ 18] [ 4] [6011] +07:36:02 [ 19] [ 3] [418] +07:36:02 [ 22] [ 3] [021] +07:36:02 [ 32] [ 6] [180893] +07:36:02 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:36:02 [ 37] [ 12] [507900266823] +07:36:02 [ 39] [ 2] [14] +07:36:02 [ 41] [ 8] [0263UDXB] +07:36:02 [ 49] [ 3] [418] +07:36:02 ============================================================================ +07:36:02 Calculate Source COMM Id = 2 +07:36:02 ============================================================================ +07:36:02 + + +waiting on router queue for slot.... +07:36:07 ============================================================================ +07:36:07 Slot Id : <299> +07:36:07 Transaction Type : REQUEST +07:36:07 Received From : +07:36:07 ============================================================================ +07:36:07 FNo. Len. Field Value +07:36:07 ============================================================================ +07:36:07 [ 1] [ 4] [0200] +07:36:07 [ 2] [ 16] [6213544002235650] +07:36:07 [ 3] [ 6] [010000] +07:36:07 [ 4] [ 12] [000020000000] +07:36:07 [ 7] [ 10] [0320073359] +07:36:07 [ 11] [ 6] [930519] +07:36:07 [ 12] [ 6] [073359] +07:36:07 [ 13] [ 4] [0320] +07:36:07 [ 15] [ 4] [0320] +07:36:07 [ 18] [ 4] [6011] +07:36:07 [ 19] [ 3] [418] +07:36:07 [ 22] [ 3] [021] +07:36:07 [ 25] [ 2] [01] +07:36:07 [ 28] [ 9] [D00002000] +07:36:07 [ 32] [ 6] [668899] +07:36:07 [ 35] [ 32] [6213544002235650=491212013565927] +07:36:07 [ 37] [ 12] [507901303569] +07:36:07 [ 41] [ 8] [03006004] +07:36:07 [ 42] [ 15] [APT ] +07:36:07 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:36:07 [ 49] [ 3] [418] +07:36:07 [ 52] [ 16] [8B4FB1CD1717FC8B] +07:36:07 ============================================================================ +07:36:07 + + +waiting on router queue for slot.... +07:36:07 Sending to : +07:36:07 ============================================================================ +07:36:07 Sending to : +07:36:07 ============================================================================ +07:36:08 ============================================================================ +07:36:08 Slot Id : <299> +07:36:08 Transaction Type : REQUEST +07:36:08 Received From : +07:36:08 ============================================================================ +07:36:08 FNo. Len. Field Value +07:36:08 ============================================================================ +07:36:08 [ 1] [ 4] [0200] +07:36:08 [ 2] [ 16] [6213544002235650] +07:36:08 [ 3] [ 6] [010000] +07:36:08 [ 4] [ 12] [000020000000] +07:36:08 [ 7] [ 10] [0320073359] +07:36:08 [ 11] [ 6] [930519] +07:36:08 [ 12] [ 6] [073359] +07:36:08 [ 13] [ 4] [0320] +07:36:08 [ 15] [ 4] [0320] +07:36:08 [ 18] [ 4] [6011] +07:36:08 [ 19] [ 3] [418] +07:36:08 [ 22] [ 3] [021] +07:36:08 [ 25] [ 2] [01] +07:36:08 [ 28] [ 9] [D00002000] +07:36:08 [ 32] [ 6] [668899] +07:36:08 [ 35] [ 32] [6213544002235650=491212013565927] +07:36:08 [ 37] [ 12] [507901303569] +07:36:08 [ 41] [ 8] [03006004] +07:36:08 [ 42] [ 15] [APT ] +07:36:08 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:36:08 [ 49] [ 3] [418] +07:36:08 [ 52] [ 16] [8B4FB1CD1717FC8B] +07:36:08 ============================================================================ +07:36:08 + + +waiting on router queue for slot.... +07:36:08 Sending to : +07:36:08 ============================================================================ +07:36:08 ============================================================================ +07:36:08 Slot Id : <299> +07:36:08 Transaction Type : REQUEST +07:36:08 Received From : +07:36:08 ============================================================================ +07:36:08 FNo. Len. Field Value +07:36:08 ============================================================================ +07:36:08 [ 1] [ 4] [0200] +07:36:08 [ 2] [ 16] [6213544002235650] +07:36:08 [ 3] [ 6] [010000] +07:36:08 [ 4] [ 12] [000020000000] +07:36:08 [ 7] [ 10] [0320073359] +07:36:08 [ 11] [ 6] [930519] +07:36:08 [ 12] [ 6] [073359] +07:36:08 [ 13] [ 4] [0320] +07:36:08 [ 15] [ 4] [0320] +07:36:08 [ 18] [ 4] [6011] +07:36:08 [ 19] [ 3] [418] +07:36:08 [ 22] [ 3] [021] +07:36:08 [ 25] [ 2] [01] +07:36:08 [ 28] [ 9] [D00002000] +07:36:08 [ 32] [ 6] [668899] +07:36:08 [ 35] [ 32] [6213544002235650=491212013565927] +07:36:08 [ 37] [ 12] [507901303569] +07:36:08 [ 41] [ 8] [03006004] +07:36:08 [ 42] [ 15] [APT ] +07:36:08 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:36:08 [ 49] [ 3] [418] +07:36:08 [ 52] [ 16] [DEC77E40EF0B086F] +07:36:08 ============================================================================ +07:36:08 + + +waiting on router queue for slot.... +07:36:08 Sending to : <0> +07:36:08 ============================================================================ +07:36:08 ============================================================================ +07:36:08 Slot Id : <299> +07:36:08 Transaction Type : RESPONSE +07:36:08 Received From : +07:36:08 ============================================================================ +07:36:08 FNo. Len. Field Value +07:36:08 ============================================================================ +07:36:08 [ 1] [ 4] [0210] +07:36:08 [ 2] [ 16] [6213544002235650] +07:36:08 [ 3] [ 6] [010000] +07:36:08 [ 4] [ 12] [000020000000] +07:36:08 [ 7] [ 10] [0320073359] +07:36:08 [ 11] [ 6] [930519] +07:36:08 [ 12] [ 6] [073359] +07:36:08 [ 13] [ 4] [0320] +07:36:08 [ 15] [ 4] [0320] +07:36:08 [ 18] [ 4] [6011] +07:36:08 [ 19] [ 3] [418] +07:36:08 [ 22] [ 3] [021] +07:36:08 [ 32] [ 6] [668899] +07:36:08 [ 35] [ 32] [6213544002235650=491212013565927] +07:36:08 [ 37] [ 12] [507901303569] +07:36:08 [ 38] [ 6] [073604] +07:36:08 [ 39] [ 2] [55] +07:36:08 [ 41] [ 8] [03006004] +07:36:08 [ 49] [ 3] [418] +07:36:08 ============================================================================ +07:36:08 Sending to : +07:36:08 ============================================================================ +07:36:08 + + +waiting on router queue for slot.... +07:36:08 ============================================================================ +07:36:08 Slot Id : <302> +07:36:08 Transaction Type : REQUEST +07:36:08 Received From : +07:36:08 ============================================================================ +07:36:08 FNo. Len. Field Value +07:36:08 ============================================================================ +07:36:08 [ 1] [ 4] [0800] +07:36:08 [ 7] [ 10] [0320144757] +07:36:08 [ 11] [ 6] [074757] +07:36:08 [ 37] [ 12] [57907074757] +07:36:08 [ 70] [ 3] [301] +07:36:08 ============================================================================ +07:36:08 + + +waiting on router queue for slot.... +07:36:08 Sending to : +07:36:08 ============================================================================ +07:36:08 ============================================================================ +07:36:08 Slot Id : <302> +07:36:08 Transaction Type : RESPONSE +07:36:08 Received From : +07:36:08 ============================================================================ +07:36:08 FNo. Len. Field Value +07:36:08 ============================================================================ +07:36:08 [ 1] [ 4] [0810] +07:36:08 [ 7] [ 10] [0320144757] +07:36:08 [ 11] [ 6] [074757] +07:36:08 [ 37] [ 12] [579070747570] +07:36:08 [ 39] [ 2] [00] +07:36:08 [ 70] [ 3] [810] +07:36:08 ============================================================================ +07:36:08 Calculate Source COMM Id = 6 +07:36:08 ============================================================================ +07:36:08 + + +waiting on router queue for slot.... +07:36:09 ============================================================================ +07:36:09 Slot Id : <299> +07:36:09 Transaction Type : RESPONSE +07:36:09 Received From : +07:36:09 ============================================================================ +07:36:09 FNo. Len. Field Value +07:36:09 ============================================================================ +07:36:09 [ 1] [ 4] [0210] +07:36:09 [ 2] [ 16] [6213544002235650] +07:36:09 [ 3] [ 6] [010000] +07:36:09 [ 4] [ 12] [000020000000] +07:36:09 [ 7] [ 10] [0320073359] +07:36:09 [ 11] [ 6] [930519] +07:36:09 [ 12] [ 6] [073359] +07:36:09 [ 13] [ 4] [0320] +07:36:09 [ 15] [ 4] [0320] +07:36:09 [ 18] [ 4] [6011] +07:36:09 [ 19] [ 3] [418] +07:36:09 [ 22] [ 3] [021] +07:36:09 [ 32] [ 6] [668899] +07:36:09 [ 35] [ 32] [6213544002235650=491212013565927] +07:36:09 [ 37] [ 12] [507901303569] +07:36:09 [ 38] [ 6] [073604] +07:36:09 [ 39] [ 2] [55] +07:36:09 [ 41] [ 8] [03006004] +07:36:09 [ 49] [ 3] [418] +07:36:09 ============================================================================ +07:36:09 Calculate Source COMM Id = 4 +07:36:09 ============================================================================ +07:36:09 + + +waiting on router queue for slot.... +07:36:15 ============================================================================ +07:36:15 Slot Id : <292> +07:36:15 Transaction Type : REQUEST +07:36:15 Received From : +07:36:15 ============================================================================ +07:36:15 FNo. Len. Field Value +07:36:15 ============================================================================ +07:36:15 [ 1] [ 4] [0800] +07:36:15 [ 7] [ 10] [0320123523] +07:36:15 [ 11] [ 6] [155206] +07:36:15 [ 70] [ 3] [301] +07:36:15 ============================================================================ +07:36:15 + + +waiting on router queue for slot.... +07:36:15 Sending to : +07:36:15 ============================================================================ +07:36:15 ============================================================================ +07:36:15 Slot Id : <292> +07:36:15 Transaction Type : RESPONSE +07:36:15 Received From : +07:36:15 ============================================================================ +07:36:15 FNo. Len. Field Value +07:36:15 ============================================================================ +07:36:15 [ 1] [ 4] [0810] +07:36:15 [ 7] [ 10] [0320123523] +07:36:15 [ 11] [ 6] [155206] +07:36:15 [ 39] [ 2] [00] +07:36:15 [ 70] [ 3] [301] +07:36:15 ============================================================================ +07:36:15 Calculate Source COMM Id = 2 +07:36:15 ============================================================================ +07:36:15 + + +waiting on router queue for slot.... +07:36:18 ============================================================================ +07:36:18 Slot Id : <281> +07:36:18 Transaction Type : REQUEST +07:36:18 Received From : +07:36:18 ============================================================================ +07:36:18 FNo. Len. Field Value +07:36:18 ============================================================================ +07:36:18 [ 1] [ 4] [0800] +07:36:18 [ 2] [ 5] [02531] +07:36:18 [ 3] [ 6] [579078] +07:36:18 [ 7] [ 10] [0320003618] +07:36:18 [ 11] [ 6] [806853] +07:36:18 [ 15] [ 10] [0320003618] +07:36:18 [ 37] [ 11] [57907806853] +07:36:18 [ 70] [ 3] [001] +07:36:18 ============================================================================ +07:36:18 + + +waiting on router queue for slot.... +07:36:18 ============================================================================ +07:36:18 Slot Id : <281> +07:36:18 Transaction Type : RESPONSE +07:36:18 Received From : +07:36:18 ============================================================================ +07:36:18 FNo. Len. Field Value +07:36:18 ============================================================================ +07:36:18 [ 1] [ 4] [0810] +07:36:18 [ 7] [ 10] [0320003618] +07:36:18 [ 11] [ 6] [806853] +07:36:18 [ 15] [ 4] [0320] +07:36:18 [ 37] [ 12] [57907806853] +07:36:18 [ 39] [ 2] [00] +07:36:18 [ 70] [ 3] [001] +07:36:18 ============================================================================ +07:36:18 Sending to : +07:36:18 ============================================================================ +07:36:18 + + +waiting on router queue for slot.... +07:36:20 ============================================================================ +07:36:20 Slot Id : <300> +07:36:20 Transaction Type : REQUEST +07:36:20 Received From : +07:36:20 ============================================================================ +07:36:20 FNo. Len. Field Value +07:36:20 ============================================================================ +07:36:20 [ 1] [ 4] [0800] +07:36:20 [ 7] [ 10] [0320003412] +07:36:20 [ 11] [ 6] [080653] +07:36:20 [ 37] [ 12] [57907080653] +07:36:20 [ 70] [ 3] [301] +07:36:20 ============================================================================ +07:36:20 + + +waiting on router queue for slot.... +07:36:20 Sending to : +07:36:20 ============================================================================ +07:36:20 ============================================================================ +07:36:20 Slot Id : <300> +07:36:20 Transaction Type : RESPONSE +07:36:20 Received From : +07:36:20 ============================================================================ +07:36:20 FNo. Len. Field Value +07:36:20 ============================================================================ +07:36:20 [ 1] [ 4] [0810] +07:36:20 [ 7] [ 10] [0320003412] +07:36:20 [ 11] [ 6] [080653] +07:36:20 [ 37] [ 12] [579070806530] +07:36:20 [ 39] [ 2] [00] +07:36:20 [ 70] [ 3] [810] +07:36:20 ============================================================================ +07:36:20 Calculate Source COMM Id = 4 +07:36:20 ============================================================================ +07:36:20 + + +waiting on router queue for slot.... +07:36:26 ============================================================================ +07:36:26 Slot Id : <295> +07:36:26 Transaction Type : REQUEST +07:36:26 Received From : +07:36:26 ============================================================================ +07:36:26 FNo. Len. Field Value +07:36:26 ============================================================================ +07:36:26 [ 1] [ 4] [0800] +07:36:26 [ 7] [ 10] [0320123534] +07:36:26 [ 11] [ 6] [155207] +07:36:26 [ 70] [ 3] [301] +07:36:26 ============================================================================ +07:36:26 + + +waiting on router queue for slot.... +07:36:26 Sending to : +07:36:26 ============================================================================ +07:36:26 ============================================================================ +07:36:26 Slot Id : <295> +07:36:26 Transaction Type : RESPONSE +07:36:26 Received From : +07:36:26 ============================================================================ +07:36:26 FNo. Len. Field Value +07:36:26 ============================================================================ +07:36:26 [ 1] [ 4] [0810] +07:36:26 [ 7] [ 10] [0320123534] +07:36:26 [ 11] [ 6] [155207] +07:36:26 [ 39] [ 2] [00] +07:36:26 [ 70] [ 3] [301] +07:36:26 ============================================================================ +07:36:26 Calculate Source COMM Id = 2 +07:36:26 ============================================================================ +07:36:26 + + +waiting on router queue for slot.... +07:36:37 ============================================================================ +07:36:37 Slot Id : <308> +07:36:37 Transaction Type : REQUEST +07:36:37 Received From : +07:36:37 ============================================================================ +07:36:37 FNo. Len. Field Value +07:36:37 ============================================================================ +07:36:37 [ 1] [ 4] [0800] +07:36:37 [ 7] [ 10] [0320123545] +07:36:37 [ 11] [ 6] [155208] +07:36:37 [ 70] [ 3] [301] +07:36:37 ============================================================================ +07:36:37 + + +waiting on router queue for slot.... +07:36:37 Sending to : +07:36:37 ============================================================================ +07:36:37 ============================================================================ +07:36:37 Slot Id : <308> +07:36:37 Transaction Type : RESPONSE +07:36:37 Received From : +07:36:37 ============================================================================ +07:36:37 FNo. Len. Field Value +07:36:37 ============================================================================ +07:36:37 [ 1] [ 4] [0810] +07:36:37 [ 7] [ 10] [0320123545] +07:36:37 [ 11] [ 6] [155208] +07:36:37 [ 39] [ 2] [00] +07:36:37 [ 70] [ 3] [301] +07:36:37 ============================================================================ +07:36:37 Calculate Source COMM Id = 2 +07:36:37 ============================================================================ +07:36:37 + + +waiting on router queue for slot.... +07:36:38 ============================================================================ +07:36:38 Slot Id : <296> +07:36:38 Transaction Type : REQUEST +07:36:38 Received From : +07:36:38 ============================================================================ +07:36:38 FNo. Len. Field Value +07:36:38 ============================================================================ +07:36:38 [ 1] [ 4] [0200] +07:36:38 [ 2] [ 16] [6688990102444500] +07:36:38 [ 3] [ 6] [010000] +07:36:38 [ 4] [ 12] [000100000000] +07:36:38 [ 7] [ 10] [0320073634] +07:36:38 [ 11] [ 6] [671742] +07:36:38 [ 12] [ 6] [073634] +07:36:38 [ 13] [ 4] [0320] +07:36:38 [ 15] [ 4] [0320] +07:36:38 [ 18] [ 4] [6011] +07:36:38 [ 22] [ 3] [900] +07:36:38 [ 25] [ 2] [02] +07:36:38 [ 28] [ 9] [D00002000] +07:36:38 [ 32] [ 6] [621354] +07:36:38 [ 35] [ 37] [6688990102444500=42081231450047300000] +07:36:38 [ 37] [ 12] [507904350870] +07:36:38 [ 41] [ 8] [03003400] +07:36:38 [ 42] [ 15] [NATIVE ] +07:36:38 [ 43] [ 40] [Atsaphangthong Unit AtsaphangthoLAO] +07:36:38 [ 49] [ 3] [418] +07:36:38 [ 52] [ 16] [D314E660B96D51A1] +07:36:38 ============================================================================ +07:36:38 + + +waiting on router queue for slot.... +07:36:38 Sending to : +07:36:38 ============================================================================ +07:36:38 Sending to : +07:36:38 ============================================================================ +07:36:38 ============================================================================ +07:36:38 Slot Id : <296> +07:36:38 Transaction Type : REQUEST +07:36:38 Received From : +07:36:38 ============================================================================ +07:36:38 FNo. Len. Field Value +07:36:38 ============================================================================ +07:36:38 [ 1] [ 4] [0200] +07:36:38 [ 2] [ 16] [6688990102444500] +07:36:38 [ 3] [ 6] [010000] +07:36:38 [ 4] [ 12] [000100000000] +07:36:38 [ 7] [ 10] [0320073634] +07:36:38 [ 11] [ 6] [671742] +07:36:38 [ 12] [ 6] [073634] +07:36:38 [ 13] [ 4] [0320] +07:36:38 [ 15] [ 4] [0320] +07:36:38 [ 18] [ 4] [6011] +07:36:38 [ 22] [ 3] [900] +07:36:38 [ 25] [ 2] [02] +07:36:38 [ 28] [ 9] [D00002000] +07:36:38 [ 32] [ 6] [621354] +07:36:38 [ 35] [ 37] [6688990102444500=42081231450047300000] +07:36:38 [ 37] [ 12] [507904350870] +07:36:38 [ 41] [ 8] [03003400] +07:36:38 [ 42] [ 15] [NATIVE ] +07:36:38 [ 43] [ 40] [Atsaphangthong Unit AtsaphangthoLAO] +07:36:38 [ 49] [ 3] [418] +07:36:38 [ 52] [ 16] [D314E660B96D51A1] +07:36:38 ============================================================================ +07:36:38 + + +waiting on router queue for slot.... +07:36:38 Sending to : +07:36:38 ============================================================================ +07:36:38 ============================================================================ +07:36:38 Slot Id : <296> +07:36:38 Transaction Type : REQUEST +07:36:38 Received From : +07:36:38 ============================================================================ +07:36:38 FNo. Len. Field Value +07:36:38 ============================================================================ +07:36:38 [ 1] [ 4] [0200] +07:36:38 [ 2] [ 16] [6688990102444500] +07:36:38 [ 3] [ 6] [010000] +07:36:38 [ 4] [ 12] [000100000000] +07:36:38 [ 7] [ 10] [0320073634] +07:36:38 [ 11] [ 6] [671742] +07:36:38 [ 12] [ 6] [073634] +07:36:38 [ 13] [ 4] [0320] +07:36:38 [ 15] [ 4] [0320] +07:36:38 [ 18] [ 4] [6011] +07:36:38 [ 22] [ 3] [900] +07:36:38 [ 25] [ 2] [02] +07:36:38 [ 28] [ 9] [D00002000] +07:36:38 [ 32] [ 6] [621354] +07:36:38 [ 35] [ 37] [6688990102444500=42081231450047300000] +07:36:38 [ 37] [ 12] [507904350870] +07:36:38 [ 41] [ 8] [03003400] +07:36:38 [ 42] [ 15] [NATIVE ] +07:36:38 [ 43] [ 40] [Atsaphangthong Unit AtsaphangthoLAO] +07:36:38 [ 49] [ 3] [418] +07:36:38 [ 52] [ 16] [19BAEA49F6658CBF] +07:36:38 ============================================================================ +07:36:38 + + +waiting on router queue for slot.... +07:36:38 Sending to : <4> +07:36:38 ============================================================================ +07:36:38 ============================================================================ +07:36:38 Slot Id : <296> +07:36:38 Transaction Type : RESPONSE +07:36:38 Received From : +07:36:38 ============================================================================ +07:36:38 FNo. Len. Field Value +07:36:38 ============================================================================ +07:36:38 [ 1] [ 4] [0210] +07:36:38 [ 2] [ 16] [6688990102444500] +07:36:38 [ 3] [ 6] [010000] +07:36:38 [ 4] [ 12] [000100000000] +07:36:38 [ 7] [ 10] [0320073634] +07:36:38 [ 11] [ 6] [671742] +07:36:38 [ 12] [ 6] [073634] +07:36:38 [ 13] [ 4] [0320] +07:36:38 [ 15] [ 4] [0320] +07:36:38 [ 18] [ 4] [6011] +07:36:38 [ 22] [ 3] [021] +07:36:38 [ 32] [ 6] [621354] +07:36:38 [ 35] [ 37] [6688990102444500=42081231450047300000] +07:36:38 [ 37] [ 12] [507904350870] +07:36:38 [ 39] [ 2] [65] +07:36:38 [ 41] [ 8] [03003400] +07:36:38 [ 49] [ 3] [418] +07:36:38 ============================================================================ +07:36:38 Sending to : +07:36:38 ============================================================================ +07:36:38 + + +waiting on router queue for slot.... +07:36:40 ============================================================================ +07:36:40 Slot Id : <296> +07:36:40 Transaction Type : RESPONSE +07:36:40 Received From : +07:36:40 ============================================================================ +07:36:40 FNo. Len. Field Value +07:36:40 ============================================================================ +07:36:40 [ 1] [ 4] [0210] +07:36:40 [ 2] [ 16] [6688990102444500] +07:36:40 [ 3] [ 6] [010000] +07:36:40 [ 4] [ 12] [000100000000] +07:36:40 [ 7] [ 10] [0320073634] +07:36:40 [ 11] [ 6] [671742] +07:36:40 [ 12] [ 6] [073634] +07:36:40 [ 13] [ 4] [0320] +07:36:40 [ 15] [ 4] [0320] +07:36:40 [ 18] [ 4] [6011] +07:36:40 [ 22] [ 3] [021] +07:36:40 [ 32] [ 6] [621354] +07:36:40 [ 35] [ 37] [6688990102444500=42081231450047300000] +07:36:40 [ 37] [ 12] [507904350870] +07:36:40 [ 39] [ 2] [65] +07:36:40 [ 41] [ 8] [03003400] +07:36:40 [ 49] [ 3] [418] +07:36:40 ============================================================================ +07:36:40 Calculate Source COMM Id = 0 +07:36:40 ============================================================================ +07:36:40 + + +waiting on router queue for slot.... +07:36:49 ============================================================================ +07:36:49 Slot Id : <283> +07:36:49 Transaction Type : REQUEST +07:36:49 Received From : +07:36:49 ============================================================================ +07:36:49 FNo. Len. Field Value +07:36:49 ============================================================================ +07:36:49 [ 1] [ 4] [0800] +07:36:49 [ 7] [ 10] [0320123557] +07:36:49 [ 11] [ 6] [155209] +07:36:49 [ 70] [ 3] [301] +07:36:49 ============================================================================ +07:36:49 + + +waiting on router queue for slot.... +07:36:49 Sending to : +07:36:49 ============================================================================ +07:36:49 ============================================================================ +07:36:49 Slot Id : <283> +07:36:49 Transaction Type : RESPONSE +07:36:49 Received From : +07:36:49 ============================================================================ +07:36:49 FNo. Len. Field Value +07:36:49 ============================================================================ +07:36:49 [ 1] [ 4] [0810] +07:36:49 [ 7] [ 10] [0320123557] +07:36:49 [ 11] [ 6] [155209] +07:36:49 [ 39] [ 2] [00] +07:36:49 [ 70] [ 3] [301] +07:36:49 ============================================================================ +07:36:49 Calculate Source COMM Id = 2 +07:36:49 ============================================================================ +07:36:49 + + +waiting on router queue for slot.... +07:36:53 ============================================================================ +07:36:53 Slot Id : <262> +07:36:53 Transaction Type : REQUEST +07:36:53 Received From : +07:36:53 ============================================================================ +07:36:53 FNo. Len. Field Value +07:36:53 ============================================================================ +07:36:53 [ 1] [ 4] [0800] +07:36:53 [ 7] [ 10] [0320003650] +07:36:53 [ 11] [ 6] [039210] +07:36:53 [ 37] [ 12] [507907039210] +07:36:53 [ 70] [ 3] [001] +07:36:53 ============================================================================ +07:36:53 + + +waiting on router queue for slot.... +07:36:53 Sending to : +07:36:53 ============================================================================ +07:36:53 ============================================================================ +07:36:53 Slot Id : <262> +07:36:53 Transaction Type : RESPONSE +07:36:53 Received From : +07:36:53 ============================================================================ +07:36:53 FNo. Len. Field Value +07:36:53 ============================================================================ +07:36:53 [ 1] [ 4] [0810] +07:36:53 [ 7] [ 10] [0320003650] +07:36:53 [ 11] [ 6] [039210] +07:36:53 [ 37] [ 12] [507907039210] +07:36:53 [ 39] [ 2] [00] +07:36:53 [ 70] [ 3] [001] +07:36:53 ============================================================================ +07:36:53 Calculate Source COMM Id = 0 +07:36:53 ============================================================================ +07:36:53 + + +waiting on router queue for slot.... +07:36:55 ============================================================================ +07:36:55 Slot Id : <311> +07:36:55 Transaction Type : REQUEST +07:36:55 Received From : +07:36:55 ============================================================================ +07:36:55 FNo. Len. Field Value +07:36:55 ============================================================================ +07:36:55 [ 1] [ 4] [0200] +07:36:55 [ 2] [ 16] [6213544002235650] +07:36:55 [ 3] [ 6] [300000] +07:36:55 [ 4] [ 12] [000000000000] +07:36:55 [ 7] [ 10] [0320073447] +07:36:55 [ 11] [ 6] [930558] +07:36:55 [ 12] [ 6] [073447] +07:36:55 [ 13] [ 4] [0320] +07:36:55 [ 15] [ 4] [0320] +07:36:55 [ 18] [ 4] [6011] +07:36:55 [ 19] [ 3] [418] +07:36:55 [ 22] [ 3] [021] +07:36:55 [ 25] [ 2] [01] +07:36:55 [ 28] [ 9] [D00000000] +07:36:55 [ 32] [ 6] [668899] +07:36:55 [ 35] [ 32] [6213544002235650=491212013565927] +07:36:55 [ 37] [ 12] [507901303571] +07:36:55 [ 41] [ 8] [03006004] +07:36:55 [ 42] [ 15] [APT ] +07:36:55 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:36:55 [ 49] [ 3] [418] +07:36:55 [ 52] [ 16] [8B4FB1CD1717FC8B] +07:36:55 ============================================================================ +07:36:55 + + +waiting on router queue for slot.... +07:36:55 Sending to : +07:36:55 ============================================================================ +07:36:55 Sending to : +07:36:55 ============================================================================ +07:36:56 ============================================================================ +07:36:56 Slot Id : <311> +07:36:56 Transaction Type : REQUEST +07:36:56 Received From : +07:36:56 ============================================================================ +07:36:56 FNo. Len. Field Value +07:36:56 ============================================================================ +07:36:56 [ 1] [ 4] [0200] +07:36:56 [ 2] [ 16] [6213544002235650] +07:36:56 [ 3] [ 6] [300000] +07:36:56 [ 4] [ 12] [000000000000] +07:36:56 [ 7] [ 10] [0320073447] +07:36:56 [ 11] [ 6] [930558] +07:36:56 [ 12] [ 6] [073447] +07:36:56 [ 13] [ 4] [0320] +07:36:56 [ 15] [ 4] [0320] +07:36:56 [ 18] [ 4] [6011] +07:36:56 [ 19] [ 3] [418] +07:36:56 [ 22] [ 3] [021] +07:36:56 [ 25] [ 2] [01] +07:36:56 [ 28] [ 9] [D00000000] +07:36:56 [ 32] [ 6] [668899] +07:36:56 [ 35] [ 32] [6213544002235650=491212013565927] +07:36:56 [ 37] [ 12] [507901303571] +07:36:56 [ 41] [ 8] [03006004] +07:36:56 [ 42] [ 15] [APT ] +07:36:56 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:36:56 [ 49] [ 3] [418] +07:36:56 [ 52] [ 16] [8B4FB1CD1717FC8B] +07:36:56 ============================================================================ +07:36:56 + + +waiting on router queue for slot.... +07:36:56 Sending to : +07:36:56 ============================================================================ +07:36:56 ============================================================================ +07:36:56 Slot Id : <311> +07:36:56 Transaction Type : REQUEST +07:36:56 Received From : +07:36:56 ============================================================================ +07:36:56 FNo. Len. Field Value +07:36:56 ============================================================================ +07:36:56 [ 1] [ 4] [0200] +07:36:56 [ 2] [ 16] [6213544002235650] +07:36:56 [ 3] [ 6] [300000] +07:36:56 [ 4] [ 12] [000000000000] +07:36:56 [ 7] [ 10] [0320073447] +07:36:56 [ 11] [ 6] [930558] +07:36:56 [ 12] [ 6] [073447] +07:36:56 [ 13] [ 4] [0320] +07:36:56 [ 15] [ 4] [0320] +07:36:56 [ 18] [ 4] [6011] +07:36:56 [ 19] [ 3] [418] +07:36:56 [ 22] [ 3] [021] +07:36:56 [ 25] [ 2] [01] +07:36:56 [ 28] [ 9] [D00000000] +07:36:56 [ 32] [ 6] [668899] +07:36:56 [ 35] [ 32] [6213544002235650=491212013565927] +07:36:56 [ 37] [ 12] [507901303571] +07:36:56 [ 41] [ 8] [03006004] +07:36:56 [ 42] [ 15] [APT ] +07:36:56 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:36:56 [ 49] [ 3] [418] +07:36:56 [ 52] [ 16] [DEC77E40EF0B086F] +07:36:56 ============================================================================ +07:36:56 + + +waiting on router queue for slot.... +07:36:56 Sending to : <0> +07:36:56 ============================================================================ +07:36:56 ============================================================================ +07:36:56 Slot Id : <311> +07:36:56 Transaction Type : RESPONSE +07:36:56 Received From : +07:36:56 ============================================================================ +07:36:56 FNo. Len. Field Value +07:36:56 ============================================================================ +07:36:56 [ 1] [ 4] [0210] +07:36:56 [ 2] [ 16] [6213544002235650] +07:36:56 [ 3] [ 6] [300000] +07:36:56 [ 4] [ 12] [000000000000] +07:36:56 [ 7] [ 10] [0320073447] +07:36:56 [ 11] [ 6] [930558] +07:36:56 [ 12] [ 6] [073447] +07:36:56 [ 13] [ 4] [0320] +07:36:56 [ 15] [ 4] [0320] +07:36:56 [ 18] [ 4] [6011] +07:36:56 [ 19] [ 3] [418] +07:36:56 [ 22] [ 3] [021] +07:36:56 [ 32] [ 6] [668899] +07:36:56 [ 35] [ 32] [6213544002235650=491212013565927] +07:36:56 [ 37] [ 12] [507901303571] +07:36:56 [ 38] [ 6] [073652] +07:36:56 [ 39] [ 2] [75] +07:36:56 [ 41] [ 8] [03006004] +07:36:56 [ 49] [ 3] [418] +07:36:56 ============================================================================ +07:36:56 Sending to : +07:36:56 ============================================================================ +07:36:56 + + +waiting on router queue for slot.... +07:36:57 ============================================================================ +07:36:57 Slot Id : <311> +07:36:57 Transaction Type : RESPONSE +07:36:57 Received From : +07:36:57 ============================================================================ +07:36:57 FNo. Len. Field Value +07:36:57 ============================================================================ +07:36:57 [ 1] [ 4] [0210] +07:36:57 [ 2] [ 16] [6213544002235650] +07:36:57 [ 3] [ 6] [300000] +07:36:57 [ 4] [ 12] [000000000000] +07:36:57 [ 7] [ 10] [0320073447] +07:36:57 [ 11] [ 6] [930558] +07:36:57 [ 12] [ 6] [073447] +07:36:57 [ 13] [ 4] [0320] +07:36:57 [ 15] [ 4] [0320] +07:36:57 [ 18] [ 4] [6011] +07:36:57 [ 19] [ 3] [418] +07:36:57 [ 22] [ 3] [021] +07:36:57 [ 32] [ 6] [668899] +07:36:57 [ 35] [ 32] [6213544002235650=491212013565927] +07:36:57 [ 37] [ 12] [507901303571] +07:36:57 [ 38] [ 6] [073652] +07:36:57 [ 39] [ 2] [75] +07:36:57 [ 41] [ 8] [03006004] +07:36:57 [ 49] [ 3] [418] +07:36:57 ============================================================================ +07:36:57 Calculate Source COMM Id = 4 +07:36:57 ============================================================================ +07:36:57 + + +waiting on router queue for slot.... +07:37:04 ============================================================================ +07:37:04 Slot Id : <312> +07:37:04 Transaction Type : REQUEST +07:37:04 Received From : +07:37:04 ============================================================================ +07:37:04 FNo. Len. Field Value +07:37:04 ============================================================================ +07:37:04 [ 1] [ 4] [0200] +07:37:04 [ 2] [ 16] [1808930300043411] +07:37:04 [ 3] [ 6] [011000] +07:37:04 [ 4] [ 12] [000100000000] +07:37:04 [ 7] [ 10] [0320073701] +07:37:04 [ 11] [ 6] [671816] +07:37:04 [ 12] [ 6] [073701] +07:37:04 [ 13] [ 4] [0320] +07:37:04 [ 15] [ 4] [0320] +07:37:04 [ 18] [ 4] [6011] +07:37:04 [ 22] [ 3] [900] +07:37:04 [ 25] [ 2] [02] +07:37:04 [ 28] [ 9] [D00002000] +07:37:04 [ 32] [ 6] [621354] +07:37:04 [ 35] [ 27] [1808930300043411=1803500143] +07:37:04 [ 37] [ 12] [507902835020] +07:37:04 [ 41] [ 8] [01007700] +07:37:04 [ 42] [ 15] [NATIVE ] +07:37:04 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +07:37:04 [ 49] [ 3] [418] +07:37:04 [ 52] [ 16] [7715655ECF15B729] +07:37:04 ============================================================================ +07:37:04 + + +waiting on router queue for slot.... +07:37:04 Sending to : +07:37:04 ============================================================================ +07:37:04 Sending to : +07:37:04 ============================================================================ +07:37:04 ============================================================================ +07:37:04 Slot Id : <316> +07:37:04 Transaction Type : REQUEST +07:37:04 Received From : +07:37:04 ============================================================================ +07:37:04 FNo. Len. Field Value +07:37:04 ============================================================================ +07:37:04 [ 1] [ 4] [0800] +07:37:04 [ 7] [ 10] [0320123613] +07:37:04 [ 11] [ 6] [155210] +07:37:04 [ 70] [ 3] [301] +07:37:04 ============================================================================ +07:37:04 + + +waiting on router queue for slot.... +07:37:04 Sending to : +07:37:04 ============================================================================ +07:37:04 ============================================================================ +07:37:04 Slot Id : <316> +07:37:04 Transaction Type : RESPONSE +07:37:04 Received From : +07:37:04 ============================================================================ +07:37:04 FNo. Len. Field Value +07:37:04 ============================================================================ +07:37:04 [ 1] [ 4] [0810] +07:37:04 [ 7] [ 10] [0320123613] +07:37:04 [ 11] [ 6] [155210] +07:37:04 [ 39] [ 2] [00] +07:37:04 [ 70] [ 3] [301] +07:37:04 ============================================================================ +07:37:04 Calculate Source COMM Id = 2 +07:37:04 ============================================================================ +07:37:04 + + +waiting on router queue for slot.... +07:37:05 ============================================================================ +07:37:05 Slot Id : <312> +07:37:05 Transaction Type : REQUEST +07:37:05 Received From : +07:37:05 ============================================================================ +07:37:05 FNo. Len. Field Value +07:37:05 ============================================================================ +07:37:05 [ 1] [ 4] [0200] +07:37:05 [ 2] [ 16] [1808930300043411] +07:37:05 [ 3] [ 6] [011000] +07:37:05 [ 4] [ 12] [000100000000] +07:37:05 [ 7] [ 10] [0320073701] +07:37:05 [ 11] [ 6] [671816] +07:37:05 [ 12] [ 6] [073701] +07:37:05 [ 13] [ 4] [0320] +07:37:05 [ 15] [ 4] [0320] +07:37:05 [ 18] [ 4] [6011] +07:37:05 [ 22] [ 3] [900] +07:37:05 [ 25] [ 2] [02] +07:37:05 [ 28] [ 9] [D00002000] +07:37:05 [ 32] [ 6] [621354] +07:37:05 [ 35] [ 27] [1808930300043411=1803500143] +07:37:05 [ 37] [ 12] [507902835020] +07:37:05 [ 41] [ 8] [01007700] +07:37:05 [ 42] [ 15] [NATIVE ] +07:37:05 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +07:37:05 [ 49] [ 3] [418] +07:37:05 [ 52] [ 16] [7715655ECF15B729] +07:37:05 ============================================================================ +07:37:05 + + +waiting on router queue for slot.... +07:37:05 Sending to : +07:37:05 ============================================================================ +07:37:05 ============================================================================ +07:37:05 Slot Id : <312> +07:37:05 Transaction Type : REQUEST +07:37:05 Received From : +07:37:05 ============================================================================ +07:37:05 FNo. Len. Field Value +07:37:05 ============================================================================ +07:37:05 [ 1] [ 4] [0200] +07:37:05 [ 2] [ 16] [1808930300043411] +07:37:05 [ 3] [ 6] [011000] +07:37:05 [ 4] [ 12] [000100000000] +07:37:05 [ 7] [ 10] [0320073701] +07:37:05 [ 11] [ 6] [671816] +07:37:05 [ 12] [ 6] [073701] +07:37:05 [ 13] [ 4] [0320] +07:37:05 [ 15] [ 4] [0320] +07:37:05 [ 18] [ 4] [6011] +07:37:05 [ 22] [ 3] [900] +07:37:05 [ 25] [ 2] [02] +07:37:05 [ 28] [ 9] [D00002000] +07:37:05 [ 32] [ 6] [621354] +07:37:05 [ 35] [ 27] [1808930300043411=1803500143] +07:37:05 [ 37] [ 12] [507902835020] +07:37:05 [ 41] [ 8] [01007700] +07:37:05 [ 42] [ 15] [NATIVE ] +07:37:05 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +07:37:05 [ 49] [ 3] [418] +07:37:05 [ 52] [ 16] [E7B3A59E4772F100] +07:37:05 ============================================================================ +07:37:05 + + +waiting on router queue for slot.... +07:37:05 Sending to : <2> +07:37:05 ============================================================================ +07:37:09 ============================================================================ +07:37:09 Slot Id : <312> +07:37:09 Transaction Type : RESPONSE +07:37:09 Received From : +07:37:09 ============================================================================ +07:37:09 FNo. Len. Field Value +07:37:09 ============================================================================ +07:37:09 [ 1] [ 4] [0210] +07:37:09 [ 2] [ 16] [1808930300043411] +07:37:09 [ 3] [ 6] [011000] +07:37:09 [ 4] [ 12] [000100000000] +07:37:09 [ 6] [ 12] [000100000000] +07:37:09 [ 7] [ 10] [0320073701] +07:37:09 [ 11] [ 6] [671816] +07:37:09 [ 12] [ 6] [073701] +07:37:09 [ 13] [ 4] [0320] +07:37:09 [ 18] [ 4] [6011] +07:37:09 [ 19] [ 3] [418] +07:37:09 [ 22] [ 3] [021] +07:37:09 [ 32] [ 6] [621354] +07:37:09 [ 35] [ 27] [1808930300043411=1803500143] +07:37:09 [ 37] [ 12] [507902835020] +07:37:09 [ 38] [ 6] [671816] +07:37:09 [ 39] [ 2] [00] +07:37:09 [ 41] [ 8] [01007700] +07:37:09 [ 49] [ 3] [418] +07:37:09 [ 52] [ 16] [E7B3A59E4772F100] +07:37:09 [ 54] [ 20] [1001418C000036853300] +07:37:09 ============================================================================ +07:37:09 Sending to : +07:37:09 ============================================================================ +07:37:09 + + +waiting on router queue for slot.... +07:37:10 ============================================================================ +07:37:10 Slot Id : <312> +07:37:10 Transaction Type : RESPONSE +07:37:10 Received From : +07:37:10 ============================================================================ +07:37:10 FNo. Len. Field Value +07:37:10 ============================================================================ +07:37:10 [ 1] [ 4] [0210] +07:37:10 [ 2] [ 16] [1808930300043411] +07:37:10 [ 3] [ 6] [011000] +07:37:10 [ 4] [ 12] [000100000000] +07:37:10 [ 6] [ 12] [000100000000] +07:37:10 [ 7] [ 10] [0320073701] +07:37:10 [ 11] [ 6] [671816] +07:37:10 [ 12] [ 6] [073701] +07:37:10 [ 13] [ 4] [0320] +07:37:10 [ 18] [ 4] [6011] +07:37:10 [ 19] [ 3] [418] +07:37:10 [ 22] [ 3] [021] +07:37:10 [ 32] [ 6] [621354] +07:37:10 [ 35] [ 27] [1808930300043411=1803500143] +07:37:10 [ 37] [ 12] [507902835020] +07:37:10 [ 38] [ 6] [671816] +07:37:10 [ 39] [ 2] [00] +07:37:10 [ 41] [ 8] [01007700] +07:37:10 [ 49] [ 3] [418] +07:37:10 [ 52] [ 16] [E7B3A59E4772F100] +07:37:10 [ 54] [ 20] [1001418C000036853300] +07:37:10 ============================================================================ +07:37:10 Calculate Source COMM Id = 0 +07:37:10 ============================================================================ +07:37:10 + + +waiting on router queue for slot.... +07:37:13 ============================================================================ +07:37:13 Slot Id : <286> +07:37:13 Transaction Type : REQUEST +07:37:13 Received From : +07:37:13 ============================================================================ +07:37:13 FNo. Len. Field Value +07:37:13 ============================================================================ +07:37:13 [ 1] [ 4] [0800] +07:37:13 [ 7] [ 10] [0320144902] +07:37:13 [ 11] [ 6] [074902] +07:37:13 [ 37] [ 12] [57907074902] +07:37:13 [ 70] [ 3] [301] +07:37:13 ============================================================================ +07:37:13 + + +waiting on router queue for slot.... +07:37:13 Sending to : +07:37:13 ============================================================================ +07:37:13 ============================================================================ +07:37:13 Slot Id : <286> +07:37:13 Transaction Type : RESPONSE +07:37:13 Received From : +07:37:13 ============================================================================ +07:37:13 FNo. Len. Field Value +07:37:13 ============================================================================ +07:37:13 [ 1] [ 4] [0810] +07:37:13 [ 7] [ 10] [0320144902] +07:37:13 [ 11] [ 6] [074902] +07:37:13 [ 37] [ 12] [579070749020] +07:37:13 [ 39] [ 2] [00] +07:37:13 [ 70] [ 3] [810] +07:37:13 ============================================================================ +07:37:13 Calculate Source COMM Id = 6 +07:37:13 ============================================================================ +07:37:13 + + +waiting on router queue for slot.... +07:37:20 ============================================================================ +07:37:20 Slot Id : <306> +07:37:20 Transaction Type : REQUEST +07:37:20 Received From : +07:37:20 ============================================================================ +07:37:20 FNo. Len. Field Value +07:37:20 ============================================================================ +07:37:20 [ 1] [ 4] [0800] +07:37:20 [ 7] [ 10] [0320123628] +07:37:20 [ 11] [ 6] [155211] +07:37:20 [ 70] [ 3] [301] +07:37:20 ============================================================================ +07:37:20 + + +waiting on router queue for slot.... +07:37:20 Sending to : +07:37:20 ============================================================================ +07:37:20 ============================================================================ +07:37:20 Slot Id : <306> +07:37:20 Transaction Type : RESPONSE +07:37:20 Received From : +07:37:20 ============================================================================ +07:37:20 FNo. Len. Field Value +07:37:20 ============================================================================ +07:37:20 [ 1] [ 4] [0810] +07:37:20 [ 7] [ 10] [0320123628] +07:37:20 [ 11] [ 6] [155211] +07:37:20 [ 39] [ 2] [00] +07:37:20 [ 70] [ 3] [301] +07:37:20 ============================================================================ +07:37:20 Calculate Source COMM Id = 2 +07:37:20 ============================================================================ +07:37:20 + + +waiting on router queue for slot.... +07:37:20 ============================================================================ +07:37:20 Slot Id : <307> +07:37:20 Transaction Type : REQUEST +07:37:20 Received From : +07:37:20 ============================================================================ +07:37:20 FNo. Len. Field Value +07:37:20 ============================================================================ +07:37:20 [ 1] [ 4] [0800] +07:37:20 [ 2] [ 5] [02531] +07:37:20 [ 3] [ 6] [579078] +07:37:20 [ 7] [ 10] [0320003720] +07:37:20 [ 11] [ 6] [806854] +07:37:20 [ 15] [ 10] [0320003720] +07:37:20 [ 37] [ 11] [57907806854] +07:37:20 [ 70] [ 3] [001] +07:37:20 ============================================================================ +07:37:20 + + +waiting on router queue for slot.... +07:37:20 ============================================================================ +07:37:20 Slot Id : <307> +07:37:20 Transaction Type : RESPONSE +07:37:20 Received From : +07:37:20 ============================================================================ +07:37:20 FNo. Len. Field Value +07:37:20 ============================================================================ +07:37:20 [ 1] [ 4] [0810] +07:37:20 [ 7] [ 10] [0320003720] +07:37:20 [ 11] [ 6] [806854] +07:37:20 [ 15] [ 4] [0320] +07:37:20 [ 37] [ 12] [57907806854] +07:37:20 [ 39] [ 2] [00] +07:37:20 [ 70] [ 3] [001] +07:37:20 ============================================================================ +07:37:20 Sending to : +07:37:20 ============================================================================ +07:37:20 + + +waiting on router queue for slot.... +07:37:25 ============================================================================ +07:37:25 Slot Id : <317> +07:37:25 Transaction Type : REQUEST +07:37:25 Received From : +07:37:25 ============================================================================ +07:37:25 FNo. Len. Field Value +07:37:25 ============================================================================ +07:37:25 [ 1] [ 4] [0200] +07:37:25 [ 2] [ 16] [6688990102444500] +07:37:25 [ 3] [ 6] [010000] +07:37:25 [ 4] [ 12] [000100000000] +07:37:25 [ 7] [ 10] [0320073722] +07:37:25 [ 11] [ 6] [671887] +07:37:25 [ 12] [ 6] [073722] +07:37:25 [ 13] [ 4] [0320] +07:37:25 [ 15] [ 4] [0320] +07:37:25 [ 18] [ 4] [6011] +07:37:25 [ 22] [ 3] [900] +07:37:25 [ 25] [ 2] [02] +07:37:25 [ 28] [ 9] [D00002000] +07:37:25 [ 32] [ 6] [621354] +07:37:25 [ 35] [ 37] [6688990102444500=42081231450047300000] +07:37:25 [ 37] [ 12] [507904350872] +07:37:25 [ 41] [ 8] [03003400] +07:37:25 [ 42] [ 15] [NATIVE ] +07:37:25 [ 43] [ 40] [Atsaphangthong Unit AtsaphangthoLAO] +07:37:25 [ 49] [ 3] [418] +07:37:25 [ 52] [ 16] [D314E660B96D51A1] +07:37:25 ============================================================================ +07:37:25 + + +waiting on router queue for slot.... +07:37:25 Sending to : +07:37:25 ============================================================================ +07:37:25 Sending to : +07:37:25 ============================================================================ +07:37:26 ============================================================================ +07:37:26 Slot Id : <317> +07:37:26 Transaction Type : REQUEST +07:37:26 Received From : +07:37:26 ============================================================================ +07:37:26 FNo. Len. Field Value +07:37:26 ============================================================================ +07:37:26 [ 1] [ 4] [0200] +07:37:26 [ 2] [ 16] [6688990102444500] +07:37:26 [ 3] [ 6] [010000] +07:37:26 [ 4] [ 12] [000100000000] +07:37:26 [ 7] [ 10] [0320073722] +07:37:26 [ 11] [ 6] [671887] +07:37:26 [ 12] [ 6] [073722] +07:37:26 [ 13] [ 4] [0320] +07:37:26 [ 15] [ 4] [0320] +07:37:26 [ 18] [ 4] [6011] +07:37:26 [ 22] [ 3] [900] +07:37:26 [ 25] [ 2] [02] +07:37:26 [ 28] [ 9] [D00002000] +07:37:26 [ 32] [ 6] [621354] +07:37:26 [ 35] [ 37] [6688990102444500=42081231450047300000] +07:37:26 [ 37] [ 12] [507904350872] +07:37:26 [ 41] [ 8] [03003400] +07:37:26 [ 42] [ 15] [NATIVE ] +07:37:26 [ 43] [ 40] [Atsaphangthong Unit AtsaphangthoLAO] +07:37:26 [ 49] [ 3] [418] +07:37:26 [ 52] [ 16] [D314E660B96D51A1] +07:37:26 ============================================================================ +07:37:26 + + +waiting on router queue for slot.... +07:37:26 Sending to : +07:37:26 ============================================================================ +07:37:26 ============================================================================ +07:37:26 Slot Id : <317> +07:37:26 Transaction Type : REQUEST +07:37:26 Received From : +07:37:26 ============================================================================ +07:37:26 FNo. Len. Field Value +07:37:26 ============================================================================ +07:37:26 [ 1] [ 4] [0200] +07:37:26 [ 2] [ 16] [6688990102444500] +07:37:26 [ 3] [ 6] [010000] +07:37:26 [ 4] [ 12] [000100000000] +07:37:26 [ 7] [ 10] [0320073722] +07:37:26 [ 11] [ 6] [671887] +07:37:26 [ 12] [ 6] [073722] +07:37:26 [ 13] [ 4] [0320] +07:37:26 [ 15] [ 4] [0320] +07:37:26 [ 18] [ 4] [6011] +07:37:26 [ 22] [ 3] [900] +07:37:26 [ 25] [ 2] [02] +07:37:26 [ 28] [ 9] [D00002000] +07:37:26 [ 32] [ 6] [621354] +07:37:26 [ 35] [ 37] [6688990102444500=42081231450047300000] +07:37:26 [ 37] [ 12] [507904350872] +07:37:26 [ 41] [ 8] [03003400] +07:37:26 [ 42] [ 15] [NATIVE ] +07:37:26 [ 43] [ 40] [Atsaphangthong Unit AtsaphangthoLAO] +07:37:26 [ 49] [ 3] [418] +07:37:26 [ 52] [ 16] [19BAEA49F6658CBF] +07:37:26 ============================================================================ +07:37:26 + + +waiting on router queue for slot.... +07:37:26 Sending to : <4> +07:37:26 ============================================================================ +07:37:26 ============================================================================ +07:37:26 Slot Id : <317> +07:37:26 Transaction Type : RESPONSE +07:37:26 Received From : +07:37:26 ============================================================================ +07:37:26 FNo. Len. Field Value +07:37:26 ============================================================================ +07:37:26 [ 1] [ 4] [0210] +07:37:26 [ 2] [ 16] [6688990102444500] +07:37:26 [ 3] [ 6] [010000] +07:37:26 [ 4] [ 12] [000100000000] +07:37:26 [ 7] [ 10] [0320073722] +07:37:26 [ 11] [ 6] [671887] +07:37:26 [ 12] [ 6] [073722] +07:37:26 [ 13] [ 4] [0320] +07:37:26 [ 15] [ 4] [0320] +07:37:26 [ 18] [ 4] [6011] +07:37:26 [ 22] [ 3] [021] +07:37:26 [ 32] [ 6] [621354] +07:37:26 [ 35] [ 37] [6688990102444500=42081231450047300000] +07:37:26 [ 37] [ 12] [507904350872] +07:37:26 [ 39] [ 2] [65] +07:37:26 [ 41] [ 8] [03003400] +07:37:26 [ 49] [ 3] [418] +07:37:26 ============================================================================ +07:37:26 Sending to : +07:37:26 ============================================================================ +07:37:26 + + +waiting on router queue for slot.... +07:37:27 ============================================================================ +07:37:27 Slot Id : <317> +07:37:27 Transaction Type : RESPONSE +07:37:27 Received From : +07:37:27 ============================================================================ +07:37:27 FNo. Len. Field Value +07:37:27 ============================================================================ +07:37:27 [ 1] [ 4] [0210] +07:37:27 [ 2] [ 16] [6688990102444500] +07:37:27 [ 3] [ 6] [010000] +07:37:27 [ 4] [ 12] [000100000000] +07:37:27 [ 7] [ 10] [0320073722] +07:37:27 [ 11] [ 6] [671887] +07:37:27 [ 12] [ 6] [073722] +07:37:27 [ 13] [ 4] [0320] +07:37:27 [ 15] [ 4] [0320] +07:37:27 [ 18] [ 4] [6011] +07:37:27 [ 22] [ 3] [021] +07:37:27 [ 32] [ 6] [621354] +07:37:27 [ 35] [ 37] [6688990102444500=42081231450047300000] +07:37:27 [ 37] [ 12] [507904350872] +07:37:27 [ 39] [ 2] [65] +07:37:27 [ 41] [ 8] [03003400] +07:37:27 [ 49] [ 3] [418] +07:37:27 ============================================================================ +07:37:27 Calculate Source COMM Id = 0 +07:37:27 ============================================================================ +07:37:27 + + +waiting on router queue for slot.... +07:37:31 ============================================================================ +07:37:31 Slot Id : <310> +07:37:31 Transaction Type : REQUEST +07:37:31 Received From : +07:37:31 ============================================================================ +07:37:31 FNo. Len. Field Value +07:37:31 ============================================================================ +07:37:31 [ 1] [ 4] [0800] +07:37:31 [ 7] [ 10] [0320123639] +07:37:31 [ 11] [ 6] [155212] +07:37:31 [ 70] [ 3] [301] +07:37:31 ============================================================================ +07:37:31 + + +waiting on router queue for slot.... +07:37:31 Sending to : +07:37:31 ============================================================================ +07:37:31 ============================================================================ +07:37:31 Slot Id : <310> +07:37:31 Transaction Type : RESPONSE +07:37:31 Received From : +07:37:31 ============================================================================ +07:37:31 FNo. Len. Field Value +07:37:31 ============================================================================ +07:37:31 [ 1] [ 4] [0810] +07:37:31 [ 7] [ 10] [0320123639] +07:37:31 [ 11] [ 6] [155212] +07:37:31 [ 39] [ 2] [00] +07:37:31 [ 70] [ 3] [301] +07:37:31 ============================================================================ +07:37:31 Calculate Source COMM Id = 2 +07:37:31 ============================================================================ +07:37:31 + + +waiting on router queue for slot.... +07:37:46 ============================================================================ +07:37:46 Slot Id : <318> +07:37:46 Transaction Type : REQUEST +07:37:46 Received From : +07:37:46 ============================================================================ +07:37:46 FNo. Len. Field Value +07:37:46 ============================================================================ +07:37:46 [ 1] [ 4] [0800] +07:37:46 [ 7] [ 10] [0320123654] +07:37:46 [ 11] [ 6] [155213] +07:37:46 [ 70] [ 3] [301] +07:37:46 ============================================================================ +07:37:46 + + +waiting on router queue for slot.... +07:37:46 Sending to : +07:37:46 ============================================================================ +07:37:46 ============================================================================ +07:37:46 Slot Id : <318> +07:37:46 Transaction Type : RESPONSE +07:37:46 Received From : +07:37:46 ============================================================================ +07:37:46 FNo. Len. Field Value +07:37:46 ============================================================================ +07:37:46 [ 1] [ 4] [0810] +07:37:46 [ 7] [ 10] [0320123654] +07:37:46 [ 11] [ 6] [155213] +07:37:46 [ 39] [ 2] [00] +07:37:46 [ 70] [ 3] [301] +07:37:46 ============================================================================ +07:37:46 Calculate Source COMM Id = 2 +07:37:46 ============================================================================ +07:37:46 + + +waiting on router queue for slot.... +07:37:54 ============================================================================ +07:37:54 Slot Id : <289> +07:37:54 Transaction Type : REQUEST +07:37:54 Received From : +07:37:54 ============================================================================ +07:37:54 FNo. Len. Field Value +07:37:54 ============================================================================ +07:37:54 [ 1] [ 4] [0200] +07:37:54 [ 2] [ 16] [1808931100011707] +07:37:54 [ 3] [ 6] [011000] +07:37:54 [ 4] [ 12] [000050000000] +07:37:54 [ 7] [ 10] [0320073750] +07:37:54 [ 11] [ 6] [671961] +07:37:54 [ 12] [ 6] [073750] +07:37:54 [ 13] [ 4] [0320] +07:37:54 [ 15] [ 4] [0320] +07:37:54 [ 18] [ 4] [6011] +07:37:54 [ 22] [ 3] [900] +07:37:54 [ 25] [ 2] [02] +07:37:54 [ 28] [ 9] [D00002000] +07:37:54 [ 32] [ 6] [621354] +07:37:54 [ 35] [ 27] [1808931100011707=1803500055] +07:37:54 [ 37] [ 12] [507904548104] +07:37:54 [ 41] [ 8] [02001700] +07:37:54 [ 42] [ 15] [NATIVE ] +07:37:54 [ 43] [ 40] [Nongbok Unit Thakek LAO] +07:37:54 [ 49] [ 3] [418] +07:37:54 [ 52] [ 16] [28930C1880F0071D] +07:37:54 ============================================================================ +07:37:54 + + +waiting on router queue for slot.... +07:37:54 Sending to : +07:37:54 ============================================================================ +07:37:54 Sending to : +07:37:54 ============================================================================ +07:37:54 ============================================================================ +07:37:54 Slot Id : <289> +07:37:54 Transaction Type : REQUEST +07:37:54 Received From : +07:37:54 ============================================================================ +07:37:54 FNo. Len. Field Value +07:37:54 ============================================================================ +07:37:54 [ 1] [ 4] [0200] +07:37:54 [ 2] [ 16] [1808931100011707] +07:37:54 [ 3] [ 6] [011000] +07:37:54 [ 4] [ 12] [000050000000] +07:37:54 [ 7] [ 10] [0320073750] +07:37:54 [ 11] [ 6] [671961] +07:37:54 [ 12] [ 6] [073750] +07:37:54 [ 13] [ 4] [0320] +07:37:54 [ 15] [ 4] [0320] +07:37:54 [ 18] [ 4] [6011] +07:37:54 [ 22] [ 3] [900] +07:37:54 [ 25] [ 2] [02] +07:37:54 [ 28] [ 9] [D00002000] +07:37:54 [ 32] [ 6] [621354] +07:37:54 [ 35] [ 27] [1808931100011707=1803500055] +07:37:54 [ 37] [ 12] [507904548104] +07:37:54 [ 41] [ 8] [02001700] +07:37:54 [ 42] [ 15] [NATIVE ] +07:37:54 [ 43] [ 40] [Nongbok Unit Thakek LAO] +07:37:54 [ 49] [ 3] [418] +07:37:54 [ 52] [ 16] [28930C1880F0071D] +07:37:54 ============================================================================ +07:37:54 + + +waiting on router queue for slot.... +07:37:54 Sending to : +07:37:54 ============================================================================ +07:37:54 ============================================================================ +07:37:54 Slot Id : <289> +07:37:54 Transaction Type : REQUEST +07:37:54 Received From : +07:37:54 ============================================================================ +07:37:54 FNo. Len. Field Value +07:37:54 ============================================================================ +07:37:54 [ 1] [ 4] [0200] +07:37:54 [ 2] [ 16] [1808931100011707] +07:37:54 [ 3] [ 6] [011000] +07:37:54 [ 4] [ 12] [000050000000] +07:37:54 [ 7] [ 10] [0320073750] +07:37:54 [ 11] [ 6] [671961] +07:37:54 [ 12] [ 6] [073750] +07:37:54 [ 13] [ 4] [0320] +07:37:54 [ 15] [ 4] [0320] +07:37:54 [ 18] [ 4] [6011] +07:37:54 [ 22] [ 3] [900] +07:37:54 [ 25] [ 2] [02] +07:37:54 [ 28] [ 9] [D00002000] +07:37:54 [ 32] [ 6] [621354] +07:37:54 [ 35] [ 27] [1808931100011707=1803500055] +07:37:54 [ 37] [ 12] [507904548104] +07:37:54 [ 41] [ 8] [02001700] +07:37:54 [ 42] [ 15] [NATIVE ] +07:37:54 [ 43] [ 40] [Nongbok Unit Thakek LAO] +07:37:54 [ 49] [ 3] [418] +07:37:54 [ 52] [ 16] [164C5F8111E6EEB9] +07:37:54 ============================================================================ +07:37:54 + + +waiting on router queue for slot.... +07:37:54 Sending to : <2> +07:37:54 ============================================================================ +07:37:59 ============================================================================ +07:37:59 Slot Id : <315> +07:37:59 Transaction Type : REQUEST +07:37:59 Received From : +07:37:59 ============================================================================ +07:37:59 FNo. Len. Field Value +07:37:59 ============================================================================ +07:37:59 [ 1] [ 4] [0200] +07:37:59 [ 2] [ 16] [6688990601163908] +07:37:59 [ 3] [ 6] [011000] +07:37:59 [ 4] [ 12] [000040000000] +07:37:59 [ 7] [ 10] [0320073755] +07:37:59 [ 11] [ 6] [671987] +07:37:59 [ 12] [ 6] [073755] +07:37:59 [ 13] [ 4] [0320] +07:37:59 [ 15] [ 4] [0320] +07:37:59 [ 18] [ 4] [6011] +07:37:59 [ 22] [ 3] [900] +07:37:59 [ 25] [ 2] [02] +07:37:59 [ 28] [ 9] [D00002000] +07:37:59 [ 32] [ 6] [621354] +07:37:59 [ 35] [ 37] [6688990601163908=41050061390880200000] +07:37:59 [ 37] [ 12] [507904009880] +07:37:59 [ 41] [ 8] [01011600] +07:37:59 [ 42] [ 15] [NATIVE ] +07:37:59 [ 43] [ 40] [Nakeua Market Thoulakhom LAO] +07:37:59 [ 49] [ 3] [418] +07:37:59 [ 52] [ 16] [9CFE886548B0F9C4] +07:37:59 ============================================================================ +07:37:59 + + +waiting on router queue for slot.... +07:37:59 Sending to : +07:37:59 ============================================================================ +07:37:59 Sending to : +07:37:59 ============================================================================ +07:37:59 ============================================================================ +07:37:59 Slot Id : <315> +07:37:59 Transaction Type : REQUEST +07:37:59 Received From : +07:37:59 ============================================================================ +07:37:59 FNo. Len. Field Value +07:37:59 ============================================================================ +07:37:59 [ 1] [ 4] [0200] +07:37:59 [ 2] [ 16] [6688990601163908] +07:37:59 [ 3] [ 6] [011000] +07:37:59 [ 4] [ 12] [000040000000] +07:37:59 [ 7] [ 10] [0320073755] +07:37:59 [ 11] [ 6] [671987] +07:37:59 [ 12] [ 6] [073755] +07:37:59 [ 13] [ 4] [0320] +07:37:59 [ 15] [ 4] [0320] +07:37:59 [ 18] [ 4] [6011] +07:37:59 [ 22] [ 3] [900] +07:37:59 [ 25] [ 2] [02] +07:37:59 [ 28] [ 9] [D00002000] +07:37:59 [ 32] [ 6] [621354] +07:37:59 [ 35] [ 37] [6688990601163908=41050061390880200000] +07:37:59 [ 37] [ 12] [507904009880] +07:37:59 [ 41] [ 8] [01011600] +07:37:59 [ 42] [ 15] [NATIVE ] +07:37:59 [ 43] [ 40] [Nakeua Market Thoulakhom LAO] +07:37:59 [ 49] [ 3] [418] +07:37:59 [ 52] [ 16] [9CFE886548B0F9C4] +07:37:59 ============================================================================ +07:37:59 + + +waiting on router queue for slot.... +07:37:59 Sending to : +07:37:59 ============================================================================ +07:37:59 ============================================================================ +07:37:59 Slot Id : <315> +07:37:59 Transaction Type : REQUEST +07:37:59 Received From : +07:37:59 ============================================================================ +07:37:59 FNo. Len. Field Value +07:37:59 ============================================================================ +07:37:59 [ 1] [ 4] [0200] +07:37:59 [ 2] [ 16] [6688990601163908] +07:37:59 [ 3] [ 6] [011000] +07:37:59 [ 4] [ 12] [000040000000] +07:37:59 [ 7] [ 10] [0320073755] +07:37:59 [ 11] [ 6] [671987] +07:37:59 [ 12] [ 6] [073755] +07:37:59 [ 13] [ 4] [0320] +07:37:59 [ 15] [ 4] [0320] +07:37:59 [ 18] [ 4] [6011] +07:37:59 [ 22] [ 3] [900] +07:37:59 [ 25] [ 2] [02] +07:37:59 [ 28] [ 9] [D00002000] +07:37:59 [ 32] [ 6] [621354] +07:37:59 [ 35] [ 37] [6688990601163908=41050061390880200000] +07:37:59 [ 37] [ 12] [507904009880] +07:37:59 [ 41] [ 8] [01011600] +07:37:59 [ 42] [ 15] [NATIVE ] +07:37:59 [ 43] [ 40] [Nakeua Market Thoulakhom LAO] +07:37:59 [ 49] [ 3] [418] +07:37:59 [ 52] [ 16] [D744B3FE33D19CD7] +07:37:59 ============================================================================ +07:37:59 + + +waiting on router queue for slot.... +07:37:59 Sending to : <4> +07:37:59 ============================================================================ +07:38:00 ============================================================================ +07:38:00 Slot Id : <315> +07:38:00 Transaction Type : RESPONSE +07:38:00 Received From : +07:38:00 ============================================================================ +07:38:00 FNo. Len. Field Value +07:38:00 ============================================================================ +07:38:00 [ 1] [ 4] [0210] +07:38:00 [ 2] [ 16] [6688990601163908] +07:38:00 [ 3] [ 6] [011000] +07:38:00 [ 4] [ 12] [000040000000] +07:38:00 [ 11] [ 6] [671987] +07:38:00 [ 12] [ 6] [073755] +07:38:00 [ 15] [ 4] [0320] +07:38:00 [ 18] [ 4] [6011] +07:38:00 [ 32] [ 6] [621354] +07:38:00 [ 35] [ 37] [6688990601163908=41050061390880200000] +07:38:00 [ 37] [ 12] [507904009880] +07:38:00 [ 38] [ 6] [098228] +07:38:00 [ 39] [ 2] [00] +07:38:00 [ 41] [ 8] [01011600] +07:38:00 [ 49] [ 3] [418] +07:38:00 [ 54] [ 20] [1002418C000208435619] +07:38:00 ============================================================================ +07:38:00 Sending to : +07:38:00 ============================================================================ +07:38:00 + + +waiting on router queue for slot.... +07:38:00 ============================================================================ +07:38:00 Slot Id : <322> +07:38:00 Transaction Type : REQUEST +07:38:00 Received From : +07:38:00 ============================================================================ +07:38:00 FNo. Len. Field Value +07:38:00 ============================================================================ +07:38:00 [ 1] [ 4] [0200] +07:38:00 [ 2] [ 16] [1808930800006652] +07:38:00 [ 3] [ 6] [301000] +07:38:00 [ 4] [ 12] [000000000000] +07:38:00 [ 7] [ 10] [0320073757] +07:38:00 [ 11] [ 6] [671993] +07:38:00 [ 12] [ 6] [073757] +07:38:00 [ 13] [ 4] [0320] +07:38:00 [ 15] [ 4] [0320] +07:38:00 [ 18] [ 4] [6011] +07:38:00 [ 22] [ 3] [900] +07:38:00 [ 25] [ 2] [02] +07:38:00 [ 28] [ 9] [D00000000] +07:38:00 [ 32] [ 6] [621354] +07:38:00 [ 35] [ 27] [1808930800006652=1803500318] +07:38:00 [ 37] [ 12] [507902916459] +07:38:00 [ 41] [ 8] [12001400] +07:38:00 [ 42] [ 15] [NATIVE ] +07:38:00 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +07:38:00 [ 49] [ 3] [418] +07:38:00 [ 52] [ 16] [0992C37A0444ABA3] +07:38:00 ============================================================================ +07:38:00 + + +waiting on router queue for slot.... +07:38:00 Sending to : +07:38:00 ============================================================================ +07:38:00 Sending to : +07:38:00 ============================================================================ +07:38:01 ============================================================================ +07:38:01 Slot Id : <322> +07:38:01 Transaction Type : REQUEST +07:38:01 Received From : +07:38:01 ============================================================================ +07:38:01 FNo. Len. Field Value +07:38:01 ============================================================================ +07:38:01 [ 1] [ 4] [0200] +07:38:01 [ 2] [ 16] [1808930800006652] +07:38:01 [ 3] [ 6] [301000] +07:38:01 [ 4] [ 12] [000000000000] +07:38:01 [ 7] [ 10] [0320073757] +07:38:01 [ 11] [ 6] [671993] +07:38:01 [ 12] [ 6] [073757] +07:38:01 [ 13] [ 4] [0320] +07:38:01 [ 15] [ 4] [0320] +07:38:01 [ 18] [ 4] [6011] +07:38:01 [ 22] [ 3] [900] +07:38:01 [ 25] [ 2] [02] +07:38:01 [ 28] [ 9] [D00000000] +07:38:01 [ 32] [ 6] [621354] +07:38:01 [ 35] [ 27] [1808930800006652=1803500318] +07:38:01 [ 37] [ 12] [507902916459] +07:38:01 [ 41] [ 8] [12001400] +07:38:01 [ 42] [ 15] [NATIVE ] +07:38:01 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +07:38:01 [ 49] [ 3] [418] +07:38:01 [ 52] [ 16] [0992C37A0444ABA3] +07:38:01 ============================================================================ +07:38:01 + + +waiting on router queue for slot.... +07:38:01 Sending to : +07:38:01 ============================================================================ +07:38:01 ============================================================================ +07:38:01 Slot Id : <322> +07:38:01 Transaction Type : REQUEST +07:38:01 Received From : +07:38:01 ============================================================================ +07:38:01 FNo. Len. Field Value +07:38:01 ============================================================================ +07:38:01 [ 1] [ 4] [0200] +07:38:01 [ 2] [ 16] [1808930800006652] +07:38:01 [ 3] [ 6] [301000] +07:38:01 [ 4] [ 12] [000000000000] +07:38:01 [ 7] [ 10] [0320073757] +07:38:01 [ 11] [ 6] [671993] +07:38:01 [ 12] [ 6] [073757] +07:38:01 [ 13] [ 4] [0320] +07:38:01 [ 15] [ 4] [0320] +07:38:01 [ 18] [ 4] [6011] +07:38:01 [ 22] [ 3] [900] +07:38:01 [ 25] [ 2] [02] +07:38:01 [ 28] [ 9] [D00000000] +07:38:01 [ 32] [ 6] [621354] +07:38:01 [ 35] [ 27] [1808930800006652=1803500318] +07:38:01 [ 37] [ 12] [507902916459] +07:38:01 [ 41] [ 8] [12001400] +07:38:01 [ 42] [ 15] [NATIVE ] +07:38:01 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +07:38:01 [ 49] [ 3] [418] +07:38:01 [ 52] [ 16] [CA6D1BCA0FABFEF6] +07:38:01 ============================================================================ +07:38:01 + + +waiting on router queue for slot.... +07:38:01 Sending to : <2> +07:38:01 ============================================================================ +07:38:02 ============================================================================ +07:38:02 Slot Id : <315> +07:38:02 Transaction Type : RESPONSE +07:38:02 Received From : +07:38:02 ============================================================================ +07:38:02 FNo. Len. Field Value +07:38:02 ============================================================================ +07:38:02 [ 1] [ 4] [0210] +07:38:02 [ 2] [ 16] [6688990601163908] +07:38:02 [ 3] [ 6] [011000] +07:38:02 [ 4] [ 12] [000040000000] +07:38:02 [ 11] [ 6] [671987] +07:38:02 [ 12] [ 6] [073755] +07:38:02 [ 15] [ 4] [0320] +07:38:02 [ 18] [ 4] [6011] +07:38:02 [ 32] [ 6] [621354] +07:38:02 [ 35] [ 37] [6688990601163908=41050061390880200000] +07:38:02 [ 37] [ 12] [507904009880] +07:38:02 [ 38] [ 6] [098228] +07:38:02 [ 39] [ 2] [00] +07:38:02 [ 41] [ 8] [01011600] +07:38:02 [ 49] [ 3] [418] +07:38:02 [ 54] [ 20] [1002418C000208435619] +07:38:02 ============================================================================ +07:38:02 Calculate Source COMM Id = 0 +07:38:02 ============================================================================ +07:38:02 + + +waiting on router queue for slot.... +07:38:02 ============================================================================ +07:38:02 Slot Id : <289> +07:38:02 Transaction Type : RESPONSE +07:38:02 Received From : +07:38:02 ============================================================================ +07:38:02 FNo. Len. Field Value +07:38:02 ============================================================================ +07:38:02 [ 1] [ 4] [0210] +07:38:02 [ 2] [ 16] [1808931100011707] +07:38:02 [ 3] [ 6] [011000] +07:38:02 [ 4] [ 12] [000050000000] +07:38:02 [ 6] [ 12] [000050000000] +07:38:02 [ 7] [ 10] [0320073750] +07:38:02 [ 11] [ 6] [671961] +07:38:02 [ 12] [ 6] [073750] +07:38:02 [ 13] [ 4] [0320] +07:38:02 [ 18] [ 4] [6011] +07:38:02 [ 19] [ 3] [418] +07:38:02 [ 22] [ 3] [021] +07:38:02 [ 32] [ 6] [621354] +07:38:02 [ 35] [ 27] [1808931100011707=1803500055] +07:38:02 [ 37] [ 12] [507904548104] +07:38:02 [ 38] [ 6] [671961] +07:38:02 [ 39] [ 2] [00] +07:38:02 [ 41] [ 8] [02001700] +07:38:02 [ 49] [ 3] [418] +07:38:02 [ 52] [ 16] [164C5F8111E6EEB9] +07:38:02 [ 54] [ 20] [1001418C000131200000] +07:38:02 ============================================================================ +07:38:02 Sending to : +07:38:02 ============================================================================ +07:38:02 + + +waiting on router queue for slot.... +07:38:04 ============================================================================ +07:38:04 Slot Id : <289> +07:38:04 Transaction Type : RESPONSE +07:38:04 Received From : +07:38:04 ============================================================================ +07:38:04 FNo. Len. Field Value +07:38:04 ============================================================================ +07:38:04 [ 1] [ 4] [0210] +07:38:04 [ 2] [ 16] [1808931100011707] +07:38:04 [ 3] [ 6] [011000] +07:38:04 [ 4] [ 12] [000050000000] +07:38:04 [ 6] [ 12] [000050000000] +07:38:04 [ 7] [ 10] [0320073750] +07:38:04 [ 11] [ 6] [671961] +07:38:04 [ 12] [ 6] [073750] +07:38:04 [ 13] [ 4] [0320] +07:38:04 [ 18] [ 4] [6011] +07:38:04 [ 19] [ 3] [418] +07:38:04 [ 22] [ 3] [021] +07:38:04 [ 32] [ 6] [621354] +07:38:04 [ 35] [ 27] [1808931100011707=1803500055] +07:38:04 [ 37] [ 12] [507904548104] +07:38:04 [ 38] [ 6] [671961] +07:38:04 [ 39] [ 2] [00] +07:38:04 [ 41] [ 8] [02001700] +07:38:04 [ 49] [ 3] [418] +07:38:04 [ 52] [ 16] [164C5F8111E6EEB9] +07:38:04 [ 54] [ 20] [1001418C000131200000] +07:38:04 ============================================================================ +07:38:04 Calculate Source COMM Id = 0 +07:38:04 ============================================================================ +07:38:04 + + +waiting on router queue for slot.... +07:38:08 ============================================================================ +07:38:08 Slot Id : <322> +07:38:08 Transaction Type : RESPONSE +07:38:08 Received From : +07:38:08 ============================================================================ +07:38:08 FNo. Len. Field Value +07:38:08 ============================================================================ +07:38:08 [ 1] [ 4] [0210] +07:38:08 [ 2] [ 16] [1808930800006652] +07:38:08 [ 3] [ 6] [301000] +07:38:08 [ 7] [ 10] [0320073757] +07:38:08 [ 11] [ 6] [671993] +07:38:08 [ 12] [ 6] [073757] +07:38:08 [ 13] [ 4] [0320] +07:38:08 [ 14] [ 4] [1803] +07:38:08 [ 19] [ 3] [418] +07:38:08 [ 32] [ 6] [621354] +07:38:08 [ 37] [ 12] [507902916459] +07:38:08 [ 39] [ 2] [55] +07:38:08 [ 41] [ 8] [12001400] +07:38:08 [ 49] [ 3] [418] +07:38:08 [ 52] [ 16] [CA6D1BCA0FABFEF6] +07:38:08 ============================================================================ +07:38:08 Sending to : +07:38:08 ============================================================================ +07:38:08 + + +waiting on router queue for slot.... +07:38:09 ============================================================================ +07:38:09 Slot Id : <322> +07:38:09 Transaction Type : RESPONSE +07:38:09 Received From : +07:38:09 ============================================================================ +07:38:09 FNo. Len. Field Value +07:38:09 ============================================================================ +07:38:09 [ 1] [ 4] [0210] +07:38:09 [ 2] [ 16] [1808930800006652] +07:38:09 [ 3] [ 6] [301000] +07:38:09 [ 7] [ 10] [0320073757] +07:38:09 [ 11] [ 6] [671993] +07:38:09 [ 12] [ 6] [073757] +07:38:09 [ 13] [ 4] [0320] +07:38:09 [ 14] [ 4] [1803] +07:38:09 [ 19] [ 3] [418] +07:38:09 [ 32] [ 6] [621354] +07:38:09 [ 37] [ 12] [507902916459] +07:38:09 [ 39] [ 2] [55] +07:38:09 [ 41] [ 8] [12001400] +07:38:09 [ 49] [ 3] [418] +07:38:09 [ 52] [ 16] [CA6D1BCA0FABFEF6] +07:38:09 ============================================================================ +07:38:09 Calculate Source COMM Id = 0 +07:38:09 ============================================================================ +07:38:09 + + +waiting on router queue for slot.... +07:38:10 ============================================================================ +07:38:10 Slot Id : <304> +07:38:10 Transaction Type : REQUEST +07:38:10 Received From : +07:38:10 ============================================================================ +07:38:10 FNo. Len. Field Value +07:38:10 ============================================================================ +07:38:10 [ 1] [ 4] [0200] +07:38:10 [ 2] [ 16] [6688990103273908] +07:38:10 [ 3] [ 6] [010000] +07:38:10 [ 4] [ 12] [000100000000] +07:38:10 [ 7] [ 10] [0320073806] +07:38:10 [ 11] [ 6] [672016] +07:38:10 [ 12] [ 6] [073806] +07:38:10 [ 13] [ 4] [0320] +07:38:10 [ 15] [ 4] [0320] +07:38:10 [ 18] [ 4] [6011] +07:38:10 [ 22] [ 3] [900] +07:38:10 [ 25] [ 2] [02] +07:38:10 [ 28] [ 9] [D00002000] +07:38:10 [ 32] [ 6] [621354] +07:38:10 [ 35] [ 37] [6688990103273908=42121231390862900000] +07:38:10 [ 37] [ 12] [507903499449] +07:38:10 [ 41] [ 8] [06002200] +07:38:10 [ 42] [ 15] [NATIVE ] +07:38:10 [ 43] [ 40] [Beng Market Beng LAO] +07:38:10 [ 49] [ 3] [418] +07:38:10 [ 52] [ 16] [06D8605F1E16D083] +07:38:10 ============================================================================ +07:38:10 + + +waiting on router queue for slot.... +07:38:10 Sending to : +07:38:10 ============================================================================ +07:38:10 Sending to : +07:38:10 ============================================================================ +07:38:10 ============================================================================ +07:38:10 Slot Id : <304> +07:38:10 Transaction Type : REQUEST +07:38:10 Received From : +07:38:10 ============================================================================ +07:38:10 FNo. Len. Field Value +07:38:10 ============================================================================ +07:38:10 [ 1] [ 4] [0200] +07:38:10 [ 2] [ 16] [6688990103273908] +07:38:10 [ 3] [ 6] [010000] +07:38:10 [ 4] [ 12] [000100000000] +07:38:10 [ 7] [ 10] [0320073806] +07:38:10 [ 11] [ 6] [672016] +07:38:10 [ 12] [ 6] [073806] +07:38:10 [ 13] [ 4] [0320] +07:38:10 [ 15] [ 4] [0320] +07:38:10 [ 18] [ 4] [6011] +07:38:10 [ 22] [ 3] [900] +07:38:10 [ 25] [ 2] [02] +07:38:10 [ 28] [ 9] [D00002000] +07:38:10 [ 32] [ 6] [621354] +07:38:10 [ 35] [ 37] [6688990103273908=42121231390862900000] +07:38:10 [ 37] [ 12] [507903499449] +07:38:10 [ 41] [ 8] [06002200] +07:38:10 [ 42] [ 15] [NATIVE ] +07:38:10 [ 43] [ 40] [Beng Market Beng LAO] +07:38:10 [ 49] [ 3] [418] +07:38:10 [ 52] [ 16] [06D8605F1E16D083] +07:38:10 ============================================================================ +07:38:10 + + +waiting on router queue for slot.... +07:38:10 Sending to : +07:38:10 ============================================================================ +07:38:10 ============================================================================ +07:38:10 Slot Id : <304> +07:38:10 Transaction Type : REQUEST +07:38:10 Received From : +07:38:10 ============================================================================ +07:38:10 FNo. Len. Field Value +07:38:10 ============================================================================ +07:38:10 [ 1] [ 4] [0200] +07:38:10 [ 2] [ 16] [6688990103273908] +07:38:10 [ 3] [ 6] [010000] +07:38:10 [ 4] [ 12] [000100000000] +07:38:10 [ 7] [ 10] [0320073806] +07:38:10 [ 11] [ 6] [672016] +07:38:10 [ 12] [ 6] [073806] +07:38:10 [ 13] [ 4] [0320] +07:38:10 [ 15] [ 4] [0320] +07:38:10 [ 18] [ 4] [6011] +07:38:10 [ 22] [ 3] [900] +07:38:10 [ 25] [ 2] [02] +07:38:10 [ 28] [ 9] [D00002000] +07:38:10 [ 32] [ 6] [621354] +07:38:10 [ 35] [ 37] [6688990103273908=42121231390862900000] +07:38:10 [ 37] [ 12] [507903499449] +07:38:10 [ 41] [ 8] [06002200] +07:38:10 [ 42] [ 15] [NATIVE ] +07:38:10 [ 43] [ 40] [Beng Market Beng LAO] +07:38:10 [ 49] [ 3] [418] +07:38:10 [ 52] [ 16] [FFFED96FA7ADD4BF] +07:38:10 ============================================================================ +07:38:10 + + +waiting on router queue for slot.... +07:38:10 Sending to : <4> +07:38:10 ============================================================================ +07:38:13 ============================================================================ +07:38:13 Slot Id : <304> +07:38:13 Transaction Type : RESPONSE +07:38:13 Received From : +07:38:13 ============================================================================ +07:38:13 FNo. Len. Field Value +07:38:13 ============================================================================ +07:38:13 [ 1] [ 4] [0210] +07:38:13 [ 2] [ 16] [6688990103273908] +07:38:13 [ 3] [ 6] [010000] +07:38:13 [ 4] [ 12] [000100000000] +07:38:13 [ 11] [ 6] [672016] +07:38:13 [ 12] [ 6] [073806] +07:38:13 [ 15] [ 4] [0320] +07:38:13 [ 18] [ 4] [6011] +07:38:13 [ 32] [ 6] [621354] +07:38:13 [ 35] [ 37] [6688990103273908=42121231390862900000] +07:38:13 [ 37] [ 12] [507903499449] +07:38:13 [ 38] [ 6] [491510] +07:38:13 [ 39] [ 2] [00] +07:38:13 [ 41] [ 8] [06002200] +07:38:13 [ 49] [ 3] [418] +07:38:13 [ 54] [ 20] [0002418C000273465968] +07:38:13 ============================================================================ +07:38:13 Sending to : +07:38:13 ============================================================================ +07:38:13 + + +waiting on router queue for slot.... +07:38:14 ============================================================================ +07:38:14 Slot Id : <304> +07:38:14 Transaction Type : RESPONSE +07:38:14 Received From : +07:38:14 ============================================================================ +07:38:14 FNo. Len. Field Value +07:38:14 ============================================================================ +07:38:14 [ 1] [ 4] [0210] +07:38:14 [ 2] [ 16] [6688990103273908] +07:38:14 [ 3] [ 6] [010000] +07:38:14 [ 4] [ 12] [000100000000] +07:38:14 [ 11] [ 6] [672016] +07:38:14 [ 12] [ 6] [073806] +07:38:14 [ 15] [ 4] [0320] +07:38:14 [ 18] [ 4] [6011] +07:38:14 [ 32] [ 6] [621354] +07:38:14 [ 35] [ 37] [6688990103273908=42121231390862900000] +07:38:14 [ 37] [ 12] [507903499449] +07:38:14 [ 38] [ 6] [491510] +07:38:14 [ 39] [ 2] [00] +07:38:14 [ 41] [ 8] [06002200] +07:38:14 [ 49] [ 3] [418] +07:38:14 [ 54] [ 20] [0002418C000273465968] +07:38:14 ============================================================================ +07:38:14 Calculate Source COMM Id = 0 +07:38:14 ============================================================================ +07:38:14 + + +waiting on router queue for slot.... +07:38:15 ============================================================================ +07:38:15 Slot Id : <325> +07:38:15 Transaction Type : REQUEST +07:38:15 Received From : +07:38:15 ============================================================================ +07:38:15 FNo. Len. Field Value +07:38:15 ============================================================================ +07:38:15 [ 1] [ 4] [0200] +07:38:15 [ 2] [ 16] [6213544002235650] +07:38:15 [ 3] [ 6] [300000] +07:38:15 [ 4] [ 12] [000000000000] +07:38:15 [ 7] [ 10] [0320073607] +07:38:15 [ 11] [ 6] [930594] +07:38:15 [ 12] [ 6] [073607] +07:38:15 [ 13] [ 4] [0320] +07:38:15 [ 15] [ 4] [0320] +07:38:15 [ 18] [ 4] [6011] +07:38:15 [ 19] [ 3] [418] +07:38:15 [ 22] [ 3] [021] +07:38:15 [ 25] [ 2] [01] +07:38:15 [ 28] [ 9] [D00000000] +07:38:15 [ 32] [ 6] [668899] +07:38:15 [ 35] [ 32] [6213544002235650=491212013565927] +07:38:15 [ 37] [ 12] [507901303574] +07:38:15 [ 41] [ 8] [03006004] +07:38:15 [ 42] [ 15] [APT ] +07:38:15 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:38:15 [ 49] [ 3] [418] +07:38:15 [ 52] [ 16] [F98012AAD0C15C9F] +07:38:15 ============================================================================ +07:38:15 + + +waiting on router queue for slot.... +07:38:15 Sending to : +07:38:15 ============================================================================ +07:38:15 Sending to : +07:38:15 ============================================================================ +07:38:16 ============================================================================ +07:38:16 Slot Id : <325> +07:38:16 Transaction Type : REQUEST +07:38:16 Received From : +07:38:16 ============================================================================ +07:38:16 FNo. Len. Field Value +07:38:16 ============================================================================ +07:38:16 [ 1] [ 4] [0200] +07:38:16 [ 2] [ 16] [6213544002235650] +07:38:16 [ 3] [ 6] [300000] +07:38:16 [ 4] [ 12] [000000000000] +07:38:16 [ 7] [ 10] [0320073607] +07:38:16 [ 11] [ 6] [930594] +07:38:16 [ 12] [ 6] [073607] +07:38:16 [ 13] [ 4] [0320] +07:38:16 [ 15] [ 4] [0320] +07:38:16 [ 18] [ 4] [6011] +07:38:16 [ 19] [ 3] [418] +07:38:16 [ 22] [ 3] [021] +07:38:16 [ 25] [ 2] [01] +07:38:16 [ 28] [ 9] [D00000000] +07:38:16 [ 32] [ 6] [668899] +07:38:16 [ 35] [ 32] [6213544002235650=491212013565927] +07:38:16 [ 37] [ 12] [507901303574] +07:38:16 [ 41] [ 8] [03006004] +07:38:16 [ 42] [ 15] [APT ] +07:38:16 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:38:16 [ 49] [ 3] [418] +07:38:16 [ 52] [ 16] [F98012AAD0C15C9F] +07:38:16 ============================================================================ +07:38:16 + + +waiting on router queue for slot.... +07:38:16 Sending to : +07:38:16 ============================================================================ +07:38:16 ============================================================================ +07:38:16 Slot Id : <325> +07:38:16 Transaction Type : REQUEST +07:38:16 Received From : +07:38:16 ============================================================================ +07:38:16 FNo. Len. Field Value +07:38:16 ============================================================================ +07:38:16 [ 1] [ 4] [0200] +07:38:16 [ 2] [ 16] [6213544002235650] +07:38:16 [ 3] [ 6] [300000] +07:38:16 [ 4] [ 12] [000000000000] +07:38:16 [ 7] [ 10] [0320073607] +07:38:16 [ 11] [ 6] [930594] +07:38:16 [ 12] [ 6] [073607] +07:38:16 [ 13] [ 4] [0320] +07:38:16 [ 15] [ 4] [0320] +07:38:16 [ 18] [ 4] [6011] +07:38:16 [ 19] [ 3] [418] +07:38:16 [ 22] [ 3] [021] +07:38:16 [ 25] [ 2] [01] +07:38:16 [ 28] [ 9] [D00000000] +07:38:16 [ 32] [ 6] [668899] +07:38:16 [ 35] [ 32] [6213544002235650=491212013565927] +07:38:16 [ 37] [ 12] [507901303574] +07:38:16 [ 41] [ 8] [03006004] +07:38:16 [ 42] [ 15] [APT ] +07:38:16 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:38:16 [ 49] [ 3] [418] +07:38:16 [ 52] [ 16] [CD6259628566EF27] +07:38:16 ============================================================================ +07:38:16 + + +waiting on router queue for slot.... +07:38:16 Sending to : <0> +07:38:16 ============================================================================ +07:38:17 ============================================================================ +07:38:17 Slot Id : <325> +07:38:17 Transaction Type : RESPONSE +07:38:17 Received From : +07:38:17 ============================================================================ +07:38:17 FNo. Len. Field Value +07:38:17 ============================================================================ +07:38:17 [ 1] [ 4] [0210] +07:38:17 [ 2] [ 16] [6213544002235650] +07:38:17 [ 3] [ 6] [300000] +07:38:17 [ 4] [ 12] [000000000000] +07:38:17 [ 7] [ 10] [0320073607] +07:38:17 [ 11] [ 6] [930594] +07:38:17 [ 12] [ 6] [073607] +07:38:17 [ 13] [ 4] [0320] +07:38:17 [ 15] [ 4] [0320] +07:38:17 [ 18] [ 4] [6011] +07:38:17 [ 19] [ 3] [418] +07:38:17 [ 22] [ 3] [021] +07:38:17 [ 32] [ 6] [668899] +07:38:17 [ 35] [ 32] [6213544002235650=491212013565927] +07:38:17 [ 37] [ 12] [507901303574] +07:38:17 [ 38] [ 6] [073812] +07:38:17 [ 39] [ 2] [75] +07:38:17 [ 41] [ 8] [03006004] +07:38:17 [ 49] [ 3] [418] +07:38:17 ============================================================================ +07:38:17 Sending to : +07:38:17 ============================================================================ +07:38:17 + + +waiting on router queue for slot.... +07:38:18 ============================================================================ +07:38:18 Slot Id : <285> +07:38:18 Transaction Type : REQUEST +07:38:18 Received From : +07:38:18 ============================================================================ +07:38:18 FNo. Len. Field Value +07:38:18 ============================================================================ +07:38:18 [ 1] [ 4] [0800] +07:38:18 [ 7] [ 10] [0320123726] +07:38:18 [ 11] [ 6] [155214] +07:38:18 [ 70] [ 3] [301] +07:38:18 ============================================================================ +07:38:18 + + +waiting on router queue for slot.... +07:38:18 Sending to : +07:38:18 ============================================================================ +07:38:18 ============================================================================ +07:38:18 Slot Id : <285> +07:38:18 Transaction Type : RESPONSE +07:38:18 Received From : +07:38:18 ============================================================================ +07:38:18 FNo. Len. Field Value +07:38:18 ============================================================================ +07:38:18 [ 1] [ 4] [0810] +07:38:18 [ 7] [ 10] [0320123726] +07:38:18 [ 11] [ 6] [155214] +07:38:18 [ 39] [ 2] [00] +07:38:18 [ 70] [ 3] [301] +07:38:18 ============================================================================ +07:38:18 Calculate Source COMM Id = 2 +07:38:18 ============================================================================ +07:38:18 + + +waiting on router queue for slot.... +07:38:18 ============================================================================ +07:38:18 Slot Id : <297> +07:38:18 Transaction Type : REQUEST +07:38:18 Received From : +07:38:18 ============================================================================ +07:38:18 FNo. Len. Field Value +07:38:18 ============================================================================ +07:38:18 [ 1] [ 4] [0800] +07:38:18 [ 7] [ 10] [0320145008] +07:38:18 [ 11] [ 6] [075008] +07:38:18 [ 37] [ 12] [57907075008] +07:38:18 [ 70] [ 3] [301] +07:38:18 ============================================================================ +07:38:18 + + +waiting on router queue for slot.... +07:38:18 Sending to : +07:38:18 ============================================================================ +07:38:18 ============================================================================ +07:38:18 Slot Id : <297> +07:38:18 Transaction Type : RESPONSE +07:38:18 Received From : +07:38:18 ============================================================================ +07:38:18 FNo. Len. Field Value +07:38:18 ============================================================================ +07:38:18 [ 1] [ 4] [0810] +07:38:18 [ 7] [ 10] [0320145008] +07:38:18 [ 11] [ 6] [075008] +07:38:18 [ 37] [ 12] [579070750080] +07:38:18 [ 39] [ 2] [00] +07:38:18 [ 70] [ 3] [810] +07:38:18 ============================================================================ +07:38:18 Calculate Source COMM Id = 6 +07:38:18 ============================================================================ +07:38:18 + + +waiting on router queue for slot.... +07:38:19 ============================================================================ +07:38:19 Slot Id : <325> +07:38:19 Transaction Type : RESPONSE +07:38:19 Received From : +07:38:19 ============================================================================ +07:38:19 FNo. Len. Field Value +07:38:19 ============================================================================ +07:38:19 [ 1] [ 4] [0210] +07:38:19 [ 2] [ 16] [6213544002235650] +07:38:19 [ 3] [ 6] [300000] +07:38:19 [ 4] [ 12] [000000000000] +07:38:19 [ 7] [ 10] [0320073607] +07:38:19 [ 11] [ 6] [930594] +07:38:19 [ 12] [ 6] [073607] +07:38:19 [ 13] [ 4] [0320] +07:38:19 [ 15] [ 4] [0320] +07:38:19 [ 18] [ 4] [6011] +07:38:19 [ 19] [ 3] [418] +07:38:19 [ 22] [ 3] [021] +07:38:19 [ 32] [ 6] [668899] +07:38:19 [ 35] [ 32] [6213544002235650=491212013565927] +07:38:19 [ 37] [ 12] [507901303574] +07:38:19 [ 38] [ 6] [073812] +07:38:19 [ 39] [ 2] [75] +07:38:19 [ 41] [ 8] [03006004] +07:38:19 [ 49] [ 3] [418] +07:38:19 ============================================================================ +07:38:19 Calculate Source COMM Id = 4 +07:38:19 ============================================================================ +07:38:19 + + +waiting on router queue for slot.... +07:38:22 ============================================================================ +07:38:22 Slot Id : <291> +07:38:22 Transaction Type : REQUEST +07:38:22 Received From : +07:38:22 ============================================================================ +07:38:22 FNo. Len. Field Value +07:38:22 ============================================================================ +07:38:22 [ 1] [ 4] [0800] +07:38:22 [ 2] [ 5] [02531] +07:38:22 [ 3] [ 6] [579078] +07:38:22 [ 7] [ 10] [0320003822] +07:38:22 [ 11] [ 6] [806855] +07:38:22 [ 15] [ 10] [0320003822] +07:38:22 [ 37] [ 11] [57907806855] +07:38:22 [ 70] [ 3] [001] +07:38:22 ============================================================================ +07:38:22 + + +waiting on router queue for slot.... +07:38:22 ============================================================================ +07:38:22 Slot Id : <291> +07:38:22 Transaction Type : RESPONSE +07:38:22 Received From : +07:38:22 ============================================================================ +07:38:22 FNo. Len. Field Value +07:38:22 ============================================================================ +07:38:22 [ 1] [ 4] [0810] +07:38:22 [ 7] [ 10] [0320003822] +07:38:22 [ 11] [ 6] [806855] +07:38:22 [ 15] [ 4] [0320] +07:38:22 [ 37] [ 12] [57907806855] +07:38:22 [ 39] [ 2] [00] +07:38:22 [ 70] [ 3] [001] +07:38:22 ============================================================================ +07:38:22 Sending to : +07:38:22 ============================================================================ +07:38:22 + + +waiting on router queue for slot.... +07:38:33 ============================================================================ +07:38:33 Slot Id : <326> +07:38:33 Transaction Type : REQUEST +07:38:33 Received From : +07:38:33 ============================================================================ +07:38:33 FNo. Len. Field Value +07:38:33 ============================================================================ +07:38:33 [ 1] [ 4] [0800] +07:38:33 [ 7] [ 10] [0320123741] +07:38:33 [ 11] [ 6] [155215] +07:38:33 [ 70] [ 3] [301] +07:38:33 ============================================================================ +07:38:33 + + +waiting on router queue for slot.... +07:38:33 Sending to : +07:38:33 ============================================================================ +07:38:33 ============================================================================ +07:38:33 Slot Id : <326> +07:38:33 Transaction Type : RESPONSE +07:38:33 Received From : +07:38:33 ============================================================================ +07:38:33 FNo. Len. Field Value +07:38:33 ============================================================================ +07:38:33 [ 1] [ 4] [0810] +07:38:33 [ 7] [ 10] [0320123741] +07:38:33 [ 11] [ 6] [155215] +07:38:33 [ 39] [ 2] [00] +07:38:33 [ 70] [ 3] [301] +07:38:33 ============================================================================ +07:38:33 Calculate Source COMM Id = 2 +07:38:33 ============================================================================ +07:38:33 + + +waiting on router queue for slot.... +07:38:44 ============================================================================ +07:38:44 Slot Id : <305> +07:38:44 Transaction Type : REQUEST +07:38:44 Received From : +07:38:44 ============================================================================ +07:38:44 FNo. Len. Field Value +07:38:44 ============================================================================ +07:38:44 [ 1] [ 4] [0800] +07:38:44 [ 7] [ 10] [0320123752] +07:38:44 [ 11] [ 6] [155216] +07:38:44 [ 70] [ 3] [301] +07:38:44 ============================================================================ +07:38:44 + + +waiting on router queue for slot.... +07:38:44 Sending to : +07:38:44 ============================================================================ +07:38:44 ============================================================================ +07:38:44 Slot Id : <305> +07:38:44 Transaction Type : RESPONSE +07:38:44 Received From : +07:38:44 ============================================================================ +07:38:44 FNo. Len. Field Value +07:38:44 ============================================================================ +07:38:44 [ 1] [ 4] [0810] +07:38:44 [ 7] [ 10] [0320123752] +07:38:44 [ 11] [ 6] [155216] +07:38:44 [ 39] [ 2] [00] +07:38:44 [ 70] [ 3] [301] +07:38:44 ============================================================================ +07:38:44 Calculate Source COMM Id = 2 +07:38:44 ============================================================================ +07:38:44 + + +waiting on router queue for slot.... +07:38:45 ============================================================================ +07:38:45 Slot Id : <301> +07:38:45 Transaction Type : REQUEST +07:38:45 Received From : +07:38:45 ============================================================================ +07:38:45 FNo. Len. Field Value +07:38:45 ============================================================================ +07:38:45 [ 1] [ 4] [0200] +07:38:45 [ 2] [ 16] [6213544002235650] +07:38:45 [ 3] [ 6] [300000] +07:38:45 [ 4] [ 12] [000000000000] +07:38:45 [ 7] [ 10] [0320073637] +07:38:45 [ 11] [ 6] [930612] +07:38:45 [ 12] [ 6] [073637] +07:38:45 [ 13] [ 4] [0320] +07:38:45 [ 15] [ 4] [0320] +07:38:45 [ 18] [ 4] [6011] +07:38:45 [ 19] [ 3] [418] +07:38:45 [ 22] [ 3] [021] +07:38:45 [ 25] [ 2] [01] +07:38:45 [ 28] [ 9] [D00000000] +07:38:45 [ 32] [ 6] [668899] +07:38:45 [ 35] [ 32] [6213544002235650=491212013565927] +07:38:45 [ 37] [ 12] [507901303576] +07:38:45 [ 41] [ 8] [03006004] +07:38:45 [ 42] [ 15] [APT ] +07:38:45 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:38:45 [ 49] [ 3] [418] +07:38:45 [ 52] [ 16] [F98012AAD0C15C9F] +07:38:45 ============================================================================ +07:38:45 + + +waiting on router queue for slot.... +07:38:45 Sending to : +07:38:45 ============================================================================ +07:38:45 Sending to : +07:38:45 ============================================================================ +07:38:46 ============================================================================ +07:38:46 Slot Id : <301> +07:38:46 Transaction Type : REQUEST +07:38:46 Received From : +07:38:46 ============================================================================ +07:38:46 FNo. Len. Field Value +07:38:46 ============================================================================ +07:38:46 [ 1] [ 4] [0200] +07:38:46 [ 2] [ 16] [6213544002235650] +07:38:46 [ 3] [ 6] [300000] +07:38:46 [ 4] [ 12] [000000000000] +07:38:46 [ 7] [ 10] [0320073637] +07:38:46 [ 11] [ 6] [930612] +07:38:46 [ 12] [ 6] [073637] +07:38:46 [ 13] [ 4] [0320] +07:38:46 [ 15] [ 4] [0320] +07:38:46 [ 18] [ 4] [6011] +07:38:46 [ 19] [ 3] [418] +07:38:46 [ 22] [ 3] [021] +07:38:46 [ 25] [ 2] [01] +07:38:46 [ 28] [ 9] [D00000000] +07:38:46 [ 32] [ 6] [668899] +07:38:46 [ 35] [ 32] [6213544002235650=491212013565927] +07:38:46 [ 37] [ 12] [507901303576] +07:38:46 [ 41] [ 8] [03006004] +07:38:46 [ 42] [ 15] [APT ] +07:38:46 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:38:46 [ 49] [ 3] [418] +07:38:46 [ 52] [ 16] [F98012AAD0C15C9F] +07:38:46 ============================================================================ +07:38:46 + + +waiting on router queue for slot.... +07:38:46 Sending to : +07:38:46 ============================================================================ +07:38:46 ============================================================================ +07:38:46 Slot Id : <301> +07:38:46 Transaction Type : REQUEST +07:38:46 Received From : +07:38:46 ============================================================================ +07:38:46 FNo. Len. Field Value +07:38:46 ============================================================================ +07:38:46 [ 1] [ 4] [0200] +07:38:46 [ 2] [ 16] [6213544002235650] +07:38:46 [ 3] [ 6] [300000] +07:38:46 [ 4] [ 12] [000000000000] +07:38:46 [ 7] [ 10] [0320073637] +07:38:46 [ 11] [ 6] [930612] +07:38:46 [ 12] [ 6] [073637] +07:38:46 [ 13] [ 4] [0320] +07:38:46 [ 15] [ 4] [0320] +07:38:46 [ 18] [ 4] [6011] +07:38:46 [ 19] [ 3] [418] +07:38:46 [ 22] [ 3] [021] +07:38:46 [ 25] [ 2] [01] +07:38:46 [ 28] [ 9] [D00000000] +07:38:46 [ 32] [ 6] [668899] +07:38:46 [ 35] [ 32] [6213544002235650=491212013565927] +07:38:46 [ 37] [ 12] [507901303576] +07:38:46 [ 41] [ 8] [03006004] +07:38:46 [ 42] [ 15] [APT ] +07:38:46 [ 43] [ 40] [ NAVIENGKHAM MARKET LUANGP] +07:38:46 [ 49] [ 3] [418] +07:38:46 [ 52] [ 16] [CD6259628566EF27] +07:38:46 ============================================================================ +07:38:46 + + +waiting on router queue for slot.... +07:38:46 Sending to : <0> +07:38:46 ============================================================================ +07:38:46 ============================================================================ +07:38:46 Slot Id : <301> +07:38:46 Transaction Type : RESPONSE +07:38:46 Received From : +07:38:46 ============================================================================ +07:38:46 FNo. Len. Field Value +07:38:46 ============================================================================ +07:38:46 [ 1] [ 4] [0210] +07:38:46 [ 2] [ 16] [6213544002235650] +07:38:46 [ 3] [ 6] [300000] +07:38:46 [ 4] [ 12] [000000000000] +07:38:46 [ 7] [ 10] [0320073637] +07:38:46 [ 11] [ 6] [930612] +07:38:46 [ 12] [ 6] [073637] +07:38:46 [ 13] [ 4] [0320] +07:38:46 [ 15] [ 4] [0320] +07:38:46 [ 18] [ 4] [6011] +07:38:46 [ 19] [ 3] [418] +07:38:46 [ 22] [ 3] [021] +07:38:46 [ 32] [ 6] [668899] +07:38:46 [ 35] [ 32] [6213544002235650=491212013565927] +07:38:46 [ 37] [ 12] [507901303576] +07:38:46 [ 38] [ 6] [073842] +07:38:46 [ 39] [ 2] [75] +07:38:46 [ 41] [ 8] [03006004] +07:38:46 [ 49] [ 3] [418] +07:38:46 ============================================================================ +07:38:46 Sending to : +07:38:46 ============================================================================ +07:38:46 + + +waiting on router queue for slot.... +07:38:47 ============================================================================ +07:38:47 Slot Id : <301> +07:38:47 Transaction Type : RESPONSE +07:38:47 Received From : +07:38:47 ============================================================================ +07:38:47 FNo. Len. Field Value +07:38:47 ============================================================================ +07:38:47 [ 1] [ 4] [0210] +07:38:47 [ 2] [ 16] [6213544002235650] +07:38:47 [ 3] [ 6] [300000] +07:38:47 [ 4] [ 12] [000000000000] +07:38:47 [ 7] [ 10] [0320073637] +07:38:47 [ 11] [ 6] [930612] +07:38:47 [ 12] [ 6] [073637] +07:38:47 [ 13] [ 4] [0320] +07:38:47 [ 15] [ 4] [0320] +07:38:47 [ 18] [ 4] [6011] +07:38:47 [ 19] [ 3] [418] +07:38:47 [ 22] [ 3] [021] +07:38:47 [ 32] [ 6] [668899] +07:38:47 [ 35] [ 32] [6213544002235650=491212013565927] +07:38:47 [ 37] [ 12] [507901303576] +07:38:47 [ 38] [ 6] [073842] +07:38:47 [ 39] [ 2] [75] +07:38:47 [ 41] [ 8] [03006004] +07:38:47 [ 49] [ 3] [418] +07:38:47 ============================================================================ +07:38:47 Calculate Source COMM Id = 4 +07:38:47 ============================================================================ +07:38:47 + + +waiting on router queue for slot.... +07:38:59 ============================================================================ +07:38:59 Slot Id : <327> +07:38:59 Transaction Type : REQUEST +07:38:59 Received From : +07:38:59 ============================================================================ +07:38:59 FNo. Len. Field Value +07:38:59 ============================================================================ +07:38:59 [ 1] [ 4] [0800] +07:38:59 [ 7] [ 10] [0320123807] +07:38:59 [ 11] [ 6] [155217] +07:38:59 [ 70] [ 3] [301] +07:38:59 ============================================================================ +07:38:59 + + +waiting on router queue for slot.... +07:38:59 Sending to : +07:38:59 ============================================================================ +07:38:59 ============================================================================ +07:38:59 Slot Id : <327> +07:38:59 Transaction Type : RESPONSE +07:38:59 Received From : +07:38:59 ============================================================================ +07:38:59 FNo. Len. Field Value +07:38:59 ============================================================================ +07:38:59 [ 1] [ 4] [0810] +07:38:59 [ 7] [ 10] [0320123807] +07:38:59 [ 11] [ 6] [155217] +07:38:59 [ 39] [ 2] [00] +07:38:59 [ 70] [ 3] [301] +07:38:59 ============================================================================ +07:38:59 Calculate Source COMM Id = 2 +07:38:59 ============================================================================ +07:38:59 + + +waiting on router queue for slot.... +07:39:01 ============================================================================ +07:39:01 Slot Id : <333> +07:39:01 Transaction Type : REQUEST +07:39:01 Received From : +07:39:01 ============================================================================ +07:39:01 FNo. Len. Field Value +07:39:01 ============================================================================ +07:39:01 [ 1] [ 4] [0200] +07:39:01 [ 2] [ 16] [1808930200021731] +07:39:01 [ 3] [ 6] [301000] +07:39:01 [ 4] [ 12] [000000000000] +07:39:01 [ 7] [ 10] [0320073857] +07:39:01 [ 11] [ 6] [672157] +07:39:01 [ 12] [ 6] [073857] +07:39:01 [ 13] [ 4] [0320] +07:39:01 [ 15] [ 4] [0320] +07:39:01 [ 18] [ 4] [6011] +07:39:01 [ 22] [ 3] [900] +07:39:01 [ 25] [ 2] [02] +07:39:01 [ 28] [ 9] [D00000000] +07:39:01 [ 32] [ 6] [621354] +07:39:01 [ 35] [ 27] [1808930200021731=1803500914] +07:39:01 [ 37] [ 12] [507903975081] +07:39:01 [ 41] [ 8] [01011300] +07:39:01 [ 42] [ 15] [NATIVE ] +07:39:01 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:39:01 [ 49] [ 3] [418] +07:39:01 [ 52] [ 16] [CC36D6E671A2401B] +07:39:01 ============================================================================ +07:39:01 + + +waiting on router queue for slot.... +07:39:01 Sending to : +07:39:01 ============================================================================ +07:39:01 Sending to : +07:39:01 ============================================================================ +07:39:01 ============================================================================ +07:39:01 Slot Id : <333> +07:39:01 Transaction Type : REQUEST +07:39:01 Received From : +07:39:01 ============================================================================ +07:39:01 FNo. Len. Field Value +07:39:01 ============================================================================ +07:39:01 [ 1] [ 4] [0200] +07:39:01 [ 2] [ 16] [1808930200021731] +07:39:01 [ 3] [ 6] [301000] +07:39:01 [ 4] [ 12] [000000000000] +07:39:01 [ 7] [ 10] [0320073857] +07:39:01 [ 11] [ 6] [672157] +07:39:01 [ 12] [ 6] [073857] +07:39:01 [ 13] [ 4] [0320] +07:39:01 [ 15] [ 4] [0320] +07:39:01 [ 18] [ 4] [6011] +07:39:01 [ 22] [ 3] [900] +07:39:01 [ 25] [ 2] [02] +07:39:01 [ 28] [ 9] [D00000000] +07:39:01 [ 32] [ 6] [621354] +07:39:01 [ 35] [ 27] [1808930200021731=1803500914] +07:39:01 [ 37] [ 12] [507903975081] +07:39:01 [ 41] [ 8] [01011300] +07:39:01 [ 42] [ 15] [NATIVE ] +07:39:01 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:39:01 [ 49] [ 3] [418] +07:39:01 [ 52] [ 16] [CC36D6E671A2401B] +07:39:01 ============================================================================ +07:39:01 + + +waiting on router queue for slot.... +07:39:01 Sending to : +07:39:01 ============================================================================ +07:39:01 ============================================================================ +07:39:01 Slot Id : <333> +07:39:01 Transaction Type : REQUEST +07:39:01 Received From : +07:39:01 ============================================================================ +07:39:01 FNo. Len. Field Value +07:39:01 ============================================================================ +07:39:01 [ 1] [ 4] [0200] +07:39:01 [ 2] [ 16] [1808930200021731] +07:39:01 [ 3] [ 6] [301000] +07:39:01 [ 4] [ 12] [000000000000] +07:39:01 [ 7] [ 10] [0320073857] +07:39:01 [ 11] [ 6] [672157] +07:39:01 [ 12] [ 6] [073857] +07:39:01 [ 13] [ 4] [0320] +07:39:01 [ 15] [ 4] [0320] +07:39:01 [ 18] [ 4] [6011] +07:39:01 [ 22] [ 3] [900] +07:39:01 [ 25] [ 2] [02] +07:39:01 [ 28] [ 9] [D00000000] +07:39:01 [ 32] [ 6] [621354] +07:39:01 [ 35] [ 27] [1808930200021731=1803500914] +07:39:01 [ 37] [ 12] [507903975081] +07:39:01 [ 41] [ 8] [01011300] +07:39:01 [ 42] [ 15] [NATIVE ] +07:39:01 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:39:01 [ 49] [ 3] [418] +07:39:01 [ 52] [ 16] [BAE46268B39E4DA9] +07:39:01 ============================================================================ +07:39:01 + + +waiting on router queue for slot.... +07:39:01 Sending to : <2> +07:39:01 ============================================================================ +07:39:05 ============================================================================ +07:39:05 Slot Id : <333> +07:39:05 Transaction Type : RESPONSE +07:39:05 Received From : +07:39:05 ============================================================================ +07:39:05 FNo. Len. Field Value +07:39:05 ============================================================================ +07:39:05 [ 1] [ 4] [0210] +07:39:05 [ 2] [ 16] [1808930200021731] +07:39:05 [ 3] [ 6] [301000] +07:39:05 [ 7] [ 10] [0320073857] +07:39:05 [ 11] [ 6] [672157] +07:39:05 [ 12] [ 6] [073857] +07:39:05 [ 13] [ 4] [0320] +07:39:05 [ 14] [ 4] [1803] +07:39:05 [ 19] [ 3] [418] +07:39:05 [ 32] [ 6] [621354] +07:39:05 [ 37] [ 12] [507903975081] +07:39:05 [ 38] [ 6] [672157] +07:39:05 [ 39] [ 2] [00] +07:39:05 [ 41] [ 8] [01011300] +07:39:05 [ 49] [ 3] [418] +07:39:05 [ 52] [ 16] [BAE46268B39E4DA9] +07:39:05 [ 54] [ 20] [1002418C000431467800] +07:39:05 ============================================================================ +07:39:05 Sending to : +07:39:05 ============================================================================ +07:39:05 + + +waiting on router queue for slot.... +07:39:07 ============================================================================ +07:39:07 Slot Id : <333> +07:39:07 Transaction Type : RESPONSE +07:39:07 Received From : +07:39:07 ============================================================================ +07:39:07 FNo. Len. Field Value +07:39:07 ============================================================================ +07:39:07 [ 1] [ 4] [0210] +07:39:07 [ 2] [ 16] [1808930200021731] +07:39:07 [ 3] [ 6] [301000] +07:39:07 [ 7] [ 10] [0320073857] +07:39:07 [ 11] [ 6] [672157] +07:39:07 [ 12] [ 6] [073857] +07:39:07 [ 13] [ 4] [0320] +07:39:07 [ 14] [ 4] [1803] +07:39:07 [ 19] [ 3] [418] +07:39:07 [ 32] [ 6] [621354] +07:39:07 [ 37] [ 12] [507903975081] +07:39:07 [ 38] [ 6] [672157] +07:39:07 [ 39] [ 2] [00] +07:39:07 [ 41] [ 8] [01011300] +07:39:07 [ 49] [ 3] [418] +07:39:07 [ 52] [ 16] [BAE46268B39E4DA9] +07:39:07 [ 54] [ 20] [1002418C000431467800] +07:39:07 ============================================================================ +07:39:07 Calculate Source COMM Id = 0 +07:39:07 ============================================================================ +07:39:07 + + +waiting on router queue for slot.... +07:39:07 ============================================================================ +07:39:07 Slot Id : <331> +07:39:07 Transaction Type : REQUEST +07:39:07 Received From : +07:39:07 ============================================================================ +07:39:07 FNo. Len. Field Value +07:39:07 ============================================================================ +07:39:07 [ 1] [ 4] [0200] +07:39:07 [ 2] [ 16] [1808930800006652] +07:39:07 [ 3] [ 6] [301000] +07:39:07 [ 4] [ 12] [000000000000] +07:39:07 [ 7] [ 10] [0320073903] +07:39:07 [ 11] [ 6] [672178] +07:39:07 [ 12] [ 6] [073903] +07:39:07 [ 13] [ 4] [0320] +07:39:07 [ 15] [ 4] [0320] +07:39:07 [ 18] [ 4] [6011] +07:39:07 [ 22] [ 3] [900] +07:39:07 [ 25] [ 2] [02] +07:39:07 [ 28] [ 9] [D00000000] +07:39:07 [ 32] [ 6] [621354] +07:39:07 [ 35] [ 27] [1808930800006652=1803500318] +07:39:07 [ 37] [ 12] [507902916460] +07:39:07 [ 41] [ 8] [12001400] +07:39:07 [ 42] [ 15] [NATIVE ] +07:39:07 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +07:39:07 [ 49] [ 3] [418] +07:39:07 [ 52] [ 16] [2C70AB078D558989] +07:39:07 ============================================================================ +07:39:07 + + +waiting on router queue for slot.... +07:39:07 Sending to : +07:39:07 ============================================================================ +07:39:07 Sending to : +07:39:07 ============================================================================ +07:39:07 ============================================================================ +07:39:07 Slot Id : <331> +07:39:07 Transaction Type : REQUEST +07:39:07 Received From : +07:39:07 ============================================================================ +07:39:07 FNo. Len. Field Value +07:39:07 ============================================================================ +07:39:07 [ 1] [ 4] [0200] +07:39:07 [ 2] [ 16] [1808930800006652] +07:39:07 [ 3] [ 6] [301000] +07:39:07 [ 4] [ 12] [000000000000] +07:39:07 [ 7] [ 10] [0320073903] +07:39:07 [ 11] [ 6] [672178] +07:39:07 [ 12] [ 6] [073903] +07:39:07 [ 13] [ 4] [0320] +07:39:07 [ 15] [ 4] [0320] +07:39:07 [ 18] [ 4] [6011] +07:39:07 [ 22] [ 3] [900] +07:39:07 [ 25] [ 2] [02] +07:39:07 [ 28] [ 9] [D00000000] +07:39:07 [ 32] [ 6] [621354] +07:39:07 [ 35] [ 27] [1808930800006652=1803500318] +07:39:07 [ 37] [ 12] [507902916460] +07:39:07 [ 41] [ 8] [12001400] +07:39:07 [ 42] [ 15] [NATIVE ] +07:39:07 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +07:39:07 [ 49] [ 3] [418] +07:39:07 [ 52] [ 16] [2C70AB078D558989] +07:39:07 ============================================================================ +07:39:07 + + +waiting on router queue for slot.... +07:39:07 Sending to : +07:39:07 ============================================================================ +07:39:07 ============================================================================ +07:39:07 Slot Id : <331> +07:39:07 Transaction Type : REQUEST +07:39:07 Received From : +07:39:07 ============================================================================ +07:39:07 FNo. Len. Field Value +07:39:07 ============================================================================ +07:39:07 [ 1] [ 4] [0200] +07:39:07 [ 2] [ 16] [1808930800006652] +07:39:07 [ 3] [ 6] [301000] +07:39:07 [ 4] [ 12] [000000000000] +07:39:07 [ 7] [ 10] [0320073903] +07:39:07 [ 11] [ 6] [672178] +07:39:07 [ 12] [ 6] [073903] +07:39:07 [ 13] [ 4] [0320] +07:39:07 [ 15] [ 4] [0320] +07:39:07 [ 18] [ 4] [6011] +07:39:07 [ 22] [ 3] [900] +07:39:07 [ 25] [ 2] [02] +07:39:07 [ 28] [ 9] [D00000000] +07:39:07 [ 32] [ 6] [621354] +07:39:07 [ 35] [ 27] [1808930800006652=1803500318] +07:39:07 [ 37] [ 12] [507902916460] +07:39:07 [ 41] [ 8] [12001400] +07:39:07 [ 42] [ 15] [NATIVE ] +07:39:07 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +07:39:07 [ 49] [ 3] [418] +07:39:07 [ 52] [ 16] [3D17F981C57DE762] +07:39:07 ============================================================================ +07:39:07 + + +waiting on router queue for slot.... +07:39:07 Sending to : <2> +07:39:07 ============================================================================ +07:39:11 ============================================================================ +07:39:11 Slot Id : <314> +07:39:11 Transaction Type : REQUEST +07:39:11 Received From : +07:39:11 ============================================================================ +07:39:11 FNo. Len. Field Value +07:39:11 ============================================================================ +07:39:11 [ 1] [ 4] [0200] +07:39:11 [ 2] [ 16] [6688990603104603] +07:39:11 [ 3] [ 6] [010000] +07:39:11 [ 4] [ 12] [000100000000] +07:39:11 [ 7] [ 10] [0320003816] +07:39:11 [ 11] [ 6] [266834] +07:39:11 [ 12] [ 6] [073816] +07:39:11 [ 13] [ 4] [0320] +07:39:11 [ 14] [ 4] [4406] +07:39:11 [ 15] [ 4] [0320] +07:39:11 [ 18] [ 4] [6011] +07:39:11 [ 19] [ 3] [418] +07:39:11 [ 22] [ 3] [021] +07:39:11 [ 25] [ 2] [01] +07:39:11 [ 28] [ 9] [D00002000] +07:39:11 [ 32] [ 6] [180893] +07:39:11 [ 35] [ 37] [6688990603104603=44060061460333700000] +07:39:11 [ 37] [ 12] [507900266834] +07:39:11 [ 41] [ 8] [0466PSLB] +07:39:11 [ 42] [ 15] [999999 ] +07:39:11 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:39:11 [ 49] [ 3] [418] +07:39:11 [ 52] [ 16] [83B292BCCD501700] +07:39:11 ============================================================================ +07:39:11 + + +waiting on router queue for slot.... +07:39:11 Sending to : +07:39:11 ============================================================================ +07:39:11 Sending to : +07:39:11 ============================================================================ +07:39:11 ============================================================================ +07:39:11 Slot Id : <331> +07:39:11 Transaction Type : RESPONSE +07:39:11 Received From : +07:39:11 ============================================================================ +07:39:11 FNo. Len. Field Value +07:39:11 ============================================================================ +07:39:11 [ 1] [ 4] [0210] +07:39:11 [ 2] [ 16] [1808930800006652] +07:39:11 [ 3] [ 6] [301000] +07:39:11 [ 7] [ 10] [0320073903] +07:39:11 [ 11] [ 6] [672178] +07:39:11 [ 12] [ 6] [073903] +07:39:11 [ 13] [ 4] [0320] +07:39:11 [ 14] [ 4] [1803] +07:39:11 [ 19] [ 3] [418] +07:39:11 [ 32] [ 6] [621354] +07:39:11 [ 37] [ 12] [507902916460] +07:39:11 [ 38] [ 6] [672178] +07:39:11 [ 39] [ 2] [00] +07:39:11 [ 41] [ 8] [12001400] +07:39:11 [ 49] [ 3] [418] +07:39:11 [ 52] [ 16] [3D17F981C57DE762] +07:39:11 [ 54] [ 20] [1002418C000143401700] +07:39:11 ============================================================================ +07:39:11 Sending to : +07:39:11 ============================================================================ +07:39:11 + + +waiting on router queue for slot.... +07:39:11 ============================================================================ +07:39:11 Slot Id : <314> +07:39:11 Transaction Type : REQUEST +07:39:11 Received From : +07:39:11 ============================================================================ +07:39:11 FNo. Len. Field Value +07:39:11 ============================================================================ +07:39:11 [ 1] [ 4] [0200] +07:39:11 [ 2] [ 16] [6688990603104603] +07:39:11 [ 3] [ 6] [010000] +07:39:11 [ 4] [ 12] [000100000000] +07:39:11 [ 7] [ 10] [0320003816] +07:39:11 [ 11] [ 6] [266834] +07:39:11 [ 12] [ 6] [073816] +07:39:11 [ 13] [ 4] [0320] +07:39:11 [ 14] [ 4] [4406] +07:39:11 [ 15] [ 4] [0320] +07:39:11 [ 18] [ 4] [6011] +07:39:11 [ 19] [ 3] [418] +07:39:11 [ 22] [ 3] [021] +07:39:11 [ 25] [ 2] [01] +07:39:11 [ 28] [ 9] [D00002000] +07:39:11 [ 32] [ 6] [180893] +07:39:11 [ 35] [ 37] [6688990603104603=44060061460333700000] +07:39:11 [ 37] [ 12] [507900266834] +07:39:11 [ 41] [ 8] [0466PSLB] +07:39:11 [ 42] [ 15] [999999 ] +07:39:11 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:39:11 [ 49] [ 3] [418] +07:39:11 [ 52] [ 16] [83B292BCCD501700] +07:39:11 ============================================================================ +07:39:11 + + +waiting on router queue for slot.... +07:39:11 Sending to : +07:39:11 ============================================================================ +07:39:11 ============================================================================ +07:39:11 Slot Id : <314> +07:39:11 Transaction Type : REQUEST +07:39:11 Received From : +07:39:11 ============================================================================ +07:39:11 FNo. Len. Field Value +07:39:11 ============================================================================ +07:39:11 [ 1] [ 4] [0200] +07:39:11 [ 2] [ 16] [6688990603104603] +07:39:11 [ 3] [ 6] [010000] +07:39:11 [ 4] [ 12] [000100000000] +07:39:11 [ 7] [ 10] [0320003816] +07:39:11 [ 11] [ 6] [266834] +07:39:11 [ 12] [ 6] [073816] +07:39:11 [ 13] [ 4] [0320] +07:39:11 [ 14] [ 4] [4406] +07:39:11 [ 15] [ 4] [0320] +07:39:11 [ 18] [ 4] [6011] +07:39:11 [ 19] [ 3] [418] +07:39:11 [ 22] [ 3] [021] +07:39:11 [ 25] [ 2] [01] +07:39:11 [ 28] [ 9] [D00002000] +07:39:11 [ 32] [ 6] [180893] +07:39:11 [ 35] [ 37] [6688990603104603=44060061460333700000] +07:39:11 [ 37] [ 12] [507900266834] +07:39:11 [ 41] [ 8] [0466PSLB] +07:39:11 [ 42] [ 15] [999999 ] +07:39:11 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +07:39:11 [ 49] [ 3] [418] +07:39:11 [ 52] [ 16] [2EB54960AB420A32] +07:39:11 ============================================================================ +07:39:11 + + +waiting on router queue for slot.... +07:39:11 Sending to : <0> +07:39:11 ============================================================================ +07:39:11 ============================================================================ +07:39:11 Slot Id : <314> +07:39:11 Transaction Type : RESPONSE +07:39:11 Received From : +07:39:11 ============================================================================ +07:39:11 FNo. Len. Field Value +07:39:11 ============================================================================ +07:39:11 [ 1] [ 4] [0210] +07:39:11 [ 2] [ 16] [6688990603104603] +07:39:11 [ 3] [ 6] [010000] +07:39:11 [ 4] [ 12] [000100000000] +07:39:11 [ 7] [ 10] [0320003816] +07:39:11 [ 11] [ 6] [266834] +07:39:11 [ 12] [ 6] [073816] +07:39:11 [ 13] [ 4] [0320] +07:39:11 [ 15] [ 4] [0320] +07:39:11 [ 18] [ 4] [6011] +07:39:11 [ 19] [ 3] [418] +07:39:11 [ 22] [ 3] [021] +07:39:11 [ 32] [ 6] [180893] +07:39:11 [ 35] [ 37] [6688990603104603=44060061460333700000] +07:39:11 [ 37] [ 12] [507900266834] +07:39:11 [ 39] [ 2] [14] +07:39:11 [ 41] [ 8] [0466PSLB] +07:39:11 [ 49] [ 3] [418] +07:39:11 ============================================================================ +07:39:11 Sending to : +07:39:11 ============================================================================ +07:39:11 + + +waiting on router queue for slot.... +07:39:13 ============================================================================ +07:39:13 Slot Id : <331> +07:39:13 Transaction Type : RESPONSE +07:39:13 Received From : +07:39:13 ============================================================================ +07:39:13 FNo. Len. Field Value +07:39:13 ============================================================================ +07:39:13 [ 1] [ 4] [0210] +07:39:13 [ 2] [ 16] [1808930800006652] +07:39:13 [ 3] [ 6] [301000] +07:39:13 [ 7] [ 10] [0320073903] +07:39:13 [ 11] [ 6] [672178] +07:39:13 [ 12] [ 6] [073903] +07:39:13 [ 13] [ 4] [0320] +07:39:13 [ 14] [ 4] [1803] +07:39:13 [ 19] [ 3] [418] +07:39:13 [ 32] [ 6] [621354] +07:39:13 [ 37] [ 12] [507902916460] +07:39:13 [ 38] [ 6] [672178] +07:39:13 [ 39] [ 2] [00] +07:39:13 [ 41] [ 8] [12001400] +07:39:13 [ 49] [ 3] [418] +07:39:13 [ 52] [ 16] [3D17F981C57DE762] +07:39:13 [ 54] [ 20] [1002418C000143401700] +07:39:13 ============================================================================ +07:39:13 Calculate Source COMM Id = 0 +07:39:13 ============================================================================ +07:39:13 + + +waiting on router queue for slot.... +07:39:14 ============================================================================ +07:39:14 Slot Id : <314> +07:39:14 Transaction Type : RESPONSE +07:39:14 Received From : +07:39:14 ============================================================================ +07:39:14 FNo. Len. Field Value +07:39:14 ============================================================================ +07:39:14 [ 1] [ 4] [0210] +07:39:14 [ 2] [ 16] [6688990603104603] +07:39:14 [ 3] [ 6] [010000] +07:39:14 [ 4] [ 12] [000100000000] +07:39:14 [ 7] [ 10] [0320003816] +07:39:14 [ 11] [ 6] [266834] +07:39:14 [ 12] [ 6] [073816] +07:39:14 [ 13] [ 4] [0320] +07:39:14 [ 15] [ 4] [0320] +07:39:14 [ 18] [ 4] [6011] +07:39:14 [ 19] [ 3] [418] +07:39:14 [ 22] [ 3] [021] +07:39:14 [ 32] [ 6] [180893] +07:39:14 [ 35] [ 37] [6688990603104603=44060061460333700000] +07:39:14 [ 37] [ 12] [507900266834] +07:39:14 [ 39] [ 2] [14] +07:39:14 [ 41] [ 8] [0466PSLB] +07:39:14 [ 49] [ 3] [418] +07:39:14 ============================================================================ +07:39:14 Calculate Source COMM Id = 2 +07:39:14 ============================================================================ +07:39:14 + + +waiting on router queue for slot.... +07:39:21 ============================================================================ +07:39:21 Slot Id : <336> +07:39:21 Transaction Type : REQUEST +07:39:21 Received From : +07:39:21 ============================================================================ +07:39:21 FNo. Len. Field Value +07:39:21 ============================================================================ +07:39:21 [ 1] [ 4] [0200] +07:39:21 [ 2] [ 16] [1808931100011707] +07:39:21 [ 3] [ 6] [301000] +07:39:21 [ 4] [ 12] [000000000000] +07:39:21 [ 7] [ 10] [0320073917] +07:39:21 [ 11] [ 6] [672237] +07:39:21 [ 12] [ 6] [073917] +07:39:21 [ 13] [ 4] [0320] +07:39:21 [ 15] [ 4] [0320] +07:39:21 [ 18] [ 4] [6011] +07:39:21 [ 22] [ 3] [900] +07:39:21 [ 25] [ 2] [02] +07:39:21 [ 28] [ 9] [D00000000] +07:39:21 [ 32] [ 6] [621354] +07:39:21 [ 35] [ 27] [1808931100011707=1803500055] +07:39:21 [ 37] [ 12] [507904548105] +07:39:21 [ 41] [ 8] [02001700] +07:39:21 [ 42] [ 15] [NATIVE ] +07:39:21 [ 43] [ 40] [Nongbok Unit Thakek LAO] +07:39:21 [ 49] [ 3] [418] +07:39:21 [ 52] [ 16] [28930C1880F0071D] +07:39:21 ============================================================================ +07:39:21 + + +waiting on router queue for slot.... +07:39:21 Sending to : +07:39:21 ============================================================================ +07:39:21 Sending to : +07:39:21 ============================================================================ +07:39:21 ============================================================================ +07:39:21 Slot Id : <336> +07:39:21 Transaction Type : REQUEST +07:39:21 Received From : +07:39:21 ============================================================================ +07:39:21 FNo. Len. Field Value +07:39:21 ============================================================================ +07:39:21 [ 1] [ 4] [0200] +07:39:21 [ 2] [ 16] [1808931100011707] +07:39:21 [ 3] [ 6] [301000] +07:39:21 [ 4] [ 12] [000000000000] +07:39:21 [ 7] [ 10] [0320073917] +07:39:21 [ 11] [ 6] [672237] +07:39:21 [ 12] [ 6] [073917] +07:39:21 [ 13] [ 4] [0320] +07:39:21 [ 15] [ 4] [0320] +07:39:21 [ 18] [ 4] [6011] +07:39:21 [ 22] [ 3] [900] +07:39:21 [ 25] [ 2] [02] +07:39:21 [ 28] [ 9] [D00000000] +07:39:21 [ 32] [ 6] [621354] +07:39:21 [ 35] [ 27] [1808931100011707=1803500055] +07:39:21 [ 37] [ 12] [507904548105] +07:39:21 [ 41] [ 8] [02001700] +07:39:21 [ 42] [ 15] [NATIVE ] +07:39:21 [ 43] [ 40] [Nongbok Unit Thakek LAO] +07:39:21 [ 49] [ 3] [418] +07:39:21 [ 52] [ 16] [28930C1880F0071D] +07:39:21 ============================================================================ +07:39:21 + + +waiting on router queue for slot.... +07:39:21 Sending to : +07:39:21 ============================================================================ +07:39:21 ============================================================================ +07:39:21 Slot Id : <336> +07:39:21 Transaction Type : REQUEST +07:39:21 Received From : +07:39:21 ============================================================================ +07:39:21 FNo. Len. Field Value +07:39:21 ============================================================================ +07:39:21 [ 1] [ 4] [0200] +07:39:21 [ 2] [ 16] [1808931100011707] +07:39:21 [ 3] [ 6] [301000] +07:39:21 [ 4] [ 12] [000000000000] +07:39:21 [ 7] [ 10] [0320073917] +07:39:21 [ 11] [ 6] [672237] +07:39:21 [ 12] [ 6] [073917] +07:39:21 [ 13] [ 4] [0320] +07:39:21 [ 15] [ 4] [0320] +07:39:21 [ 18] [ 4] [6011] +07:39:21 [ 22] [ 3] [900] +07:39:21 [ 25] [ 2] [02] +07:39:21 [ 28] [ 9] [D00000000] +07:39:21 [ 32] [ 6] [621354] +07:39:21 [ 35] [ 27] [1808931100011707=1803500055] +07:39:21 [ 37] [ 12] [507904548105] +07:39:21 [ 41] [ 8] [02001700] +07:39:21 [ 42] [ 15] [NATIVE ] +07:39:21 [ 43] [ 40] [Nongbok Unit Thakek LAO] +07:39:21 [ 49] [ 3] [418] +07:39:21 [ 52] [ 16] [164C5F8111E6EEB9] +07:39:21 ============================================================================ +07:39:21 + + +waiting on router queue for slot.... +07:39:21 Sending to : <2> +07:39:21 ============================================================================ +07:39:23 ============================================================================ +07:39:23 Slot Id : <321> +07:39:23 Transaction Type : REQUEST +07:39:23 Received From : +07:39:23 ============================================================================ +07:39:23 FNo. Len. Field Value +07:39:23 ============================================================================ +07:39:23 [ 1] [ 4] [0800] +07:39:23 [ 7] [ 10] [0320145113] +07:39:23 [ 11] [ 6] [075113] +07:39:23 [ 37] [ 12] [57907075113] +07:39:23 [ 70] [ 3] [301] +07:39:23 ============================================================================ +07:39:23 + + +waiting on router queue for slot.... +07:39:23 Sending to : +07:39:23 ============================================================================ +07:39:23 ============================================================================ +07:39:23 Slot Id : <321> +07:39:23 Transaction Type : RESPONSE +07:39:23 Received From : +07:39:23 ============================================================================ +07:39:23 FNo. Len. Field Value +07:39:23 ============================================================================ +07:39:23 [ 1] [ 4] [0810] +07:39:23 [ 7] [ 10] [0320145113] +07:39:23 [ 11] [ 6] [075113] +07:39:23 [ 37] [ 12] [579070751130] +07:39:23 [ 39] [ 2] [00] +07:39:23 [ 70] [ 3] [810] +07:39:23 ============================================================================ +07:39:23 Calculate Source COMM Id = 6 +07:39:23 ============================================================================ +07:39:23 + + +waiting on router queue for slot.... +07:39:24 ============================================================================ +07:39:24 Slot Id : <334> +07:39:24 Transaction Type : REQUEST +07:39:24 Received From : +07:39:24 ============================================================================ +07:39:24 FNo. Len. Field Value +07:39:24 ============================================================================ +07:39:24 [ 1] [ 4] [0800] +07:39:24 [ 2] [ 5] [02531] +07:39:24 [ 3] [ 6] [579078] +07:39:24 [ 7] [ 10] [0320003924] +07:39:24 [ 11] [ 6] [806856] +07:39:24 [ 15] [ 10] [0320003924] +07:39:24 [ 37] [ 11] [57907806856] +07:39:24 [ 70] [ 3] [001] +07:39:24 ============================================================================ +07:39:24 + + +waiting on router queue for slot.... +07:39:24 ============================================================================ +07:39:24 Slot Id : <334> +07:39:24 Transaction Type : RESPONSE +07:39:24 Received From : +07:39:24 ============================================================================ +07:39:24 FNo. Len. Field Value +07:39:24 ============================================================================ +07:39:24 [ 1] [ 4] [0810] +07:39:24 [ 7] [ 10] [0320003924] +07:39:24 [ 11] [ 6] [806856] +07:39:24 [ 15] [ 4] [0320] +07:39:24 [ 37] [ 12] [57907806856] +07:39:24 [ 39] [ 2] [00] +07:39:24 [ 70] [ 3] [001] +07:39:24 ============================================================================ +07:39:24 Sending to : +07:39:24 ============================================================================ +07:39:24 + + +waiting on router queue for slot.... +07:39:24 ============================================================================ +07:39:24 Slot Id : <336> +07:39:24 Transaction Type : RESPONSE +07:39:24 Received From : +07:39:24 ============================================================================ +07:39:24 FNo. Len. Field Value +07:39:24 ============================================================================ +07:39:24 [ 1] [ 4] [0210] +07:39:24 [ 2] [ 16] [1808931100011707] +07:39:24 [ 3] [ 6] [301000] +07:39:24 [ 7] [ 10] [0320073917] +07:39:24 [ 11] [ 6] [672237] +07:39:24 [ 12] [ 6] [073917] +07:39:24 [ 13] [ 4] [0320] +07:39:24 [ 14] [ 4] [1803] +07:39:24 [ 19] [ 3] [418] +07:39:24 [ 32] [ 6] [621354] +07:39:24 [ 37] [ 12] [507904548105] +07:39:24 [ 38] [ 6] [672237] +07:39:24 [ 39] [ 2] [00] +07:39:24 [ 41] [ 8] [02001700] +07:39:24 [ 49] [ 3] [418] +07:39:24 [ 52] [ 16] [164C5F8111E6EEB9] +07:39:24 [ 54] [ 20] [1002418C000131200000] +07:39:24 ============================================================================ +07:39:24 Sending to : +07:39:24 ============================================================================ +07:39:24 + + +waiting on router queue for slot.... +07:39:25 ============================================================================ +07:39:25 Slot Id : <337> +07:39:25 Transaction Type : REQUEST +07:39:25 Received From : +07:39:25 ============================================================================ +07:39:25 FNo. Len. Field Value +07:39:25 ============================================================================ +07:39:25 [ 1] [ 4] [0800] +07:39:25 [ 7] [ 10] [0320073913] +07:39:25 [ 11] [ 6] [022986] +07:39:25 [ 37] [ 12] [507907022986] +07:39:25 [ 70] [ 3] [ ] +07:39:25 ============================================================================ +07:39:25 + + +waiting on router queue for slot.... +07:39:25 Sending to : +07:39:25 ============================================================================ +07:39:25 ============================================================================ +07:39:25 Slot Id : <337> +07:39:25 Transaction Type : RESPONSE +07:39:25 Received From : +07:39:25 ============================================================================ +07:39:25 FNo. Len. Field Value +07:39:25 ============================================================================ +07:39:25 [ 1] [ 4] [0810] +07:39:25 [ 7] [ 10] [0320073913] +07:39:25 [ 11] [ 6] [022986] +07:39:25 [ 37] [ 12] [507907022986] +07:39:25 [ 39] [ 2] [91] +07:39:25 [ 70] [ 3] [ ] +07:39:25 ============================================================================ +07:39:25 Calculate Source COMM Id = 3 +07:39:25 ============================================================================ +07:39:25 + + +waiting on router queue for slot.... +07:39:26 ============================================================================ +07:39:26 Slot Id : <336> +07:39:26 Transaction Type : RESPONSE +07:39:26 Received From : +07:39:26 ============================================================================ +07:39:26 FNo. Len. Field Value +07:39:26 ============================================================================ +07:39:26 [ 1] [ 4] [0210] +07:39:26 [ 2] [ 16] [1808931100011707] +07:39:26 [ 3] [ 6] [301000] +07:39:26 [ 7] [ 10] [0320073917] +07:39:26 [ 11] [ 6] [672237] +07:39:26 [ 12] [ 6] [073917] +07:39:26 [ 13] [ 4] [0320] +07:39:26 [ 14] [ 4] [1803] +07:39:26 [ 19] [ 3] [418] +07:39:26 [ 32] [ 6] [621354] +07:39:26 [ 37] [ 12] [507904548105] +07:39:26 [ 38] [ 6] [672237] +07:39:26 [ 39] [ 2] [00] +07:39:26 [ 41] [ 8] [02001700] +07:39:26 [ 49] [ 3] [418] +07:39:26 [ 52] [ 16] [164C5F8111E6EEB9] +07:39:26 [ 54] [ 20] [1002418C000131200000] +07:39:26 ============================================================================ +07:39:26 Calculate Source COMM Id = 0 +07:39:26 ============================================================================ +07:39:26 + + +waiting on router queue for slot.... +07:39:37 ============================================================================ +07:39:37 Slot Id : <335> +07:39:37 Transaction Type : REQUEST +07:39:37 Received From : +07:39:37 ============================================================================ +07:39:37 FNo. Len. Field Value +07:39:37 ============================================================================ +07:39:37 [ 1] [ 4] [0800] +07:39:37 [ 7] [ 10] [0320123845] +07:39:37 [ 11] [ 6] [155218] +07:39:37 [ 70] [ 3] [301] +07:39:37 ============================================================================ +07:39:37 + + +waiting on router queue for slot.... +07:39:37 Sending to : +07:39:37 ============================================================================ +07:39:37 ============================================================================ +07:39:37 Slot Id : <335> +07:39:37 Transaction Type : RESPONSE +07:39:37 Received From : +07:39:37 ============================================================================ +07:39:37 FNo. Len. Field Value +07:39:37 ============================================================================ +07:39:37 [ 1] [ 4] [0810] +07:39:37 [ 7] [ 10] [0320123845] +07:39:37 [ 11] [ 6] [155218] +07:39:37 [ 39] [ 2] [00] +07:39:37 [ 70] [ 3] [301] +07:39:37 ============================================================================ +07:39:37 Calculate Source COMM Id = 2 +07:39:37 ============================================================================ +07:39:37 + + +waiting on router queue for slot.... +07:39:40 ============================================================================ +07:39:40 Slot Id : <342> +07:39:40 Transaction Type : REQUEST +07:39:40 Received From : +07:39:40 ============================================================================ +07:39:40 FNo. Len. Field Value +07:39:40 ============================================================================ +07:39:40 [ 1] [ 4] [0200] +07:39:40 [ 2] [ 16] [6213545000137582] +07:39:40 [ 3] [ 6] [301000] +07:39:40 [ 7] [ 10] [0320003848] +07:39:40 [ 11] [ 6] [266835] +07:39:40 [ 12] [ 6] [073848] +07:39:40 [ 13] [ 4] [0320] +07:39:40 [ 14] [ 4] [4912] +07:39:40 [ 15] [ 4] [0320] +07:39:40 [ 18] [ 4] [6011] +07:39:40 [ 19] [ 3] [418] +07:39:40 [ 22] [ 3] [021] +07:39:40 [ 25] [ 2] [01] +07:39:40 [ 32] [ 6] [180893] +07:39:40 [ 35] [ 32] [6213545000137582=491212013758080] +07:39:40 [ 37] [ 12] [507900266835] +07:39:40 [ 41] [ 8] [0363CPSH] +07:39:40 [ 42] [ 15] [999999 ] +07:39:40 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:39:40 [ 49] [ 3] [418] +07:39:40 [ 52] [ 16] [80300BC67762C746] +07:39:40 ============================================================================ +07:39:40 + + +waiting on router queue for slot.... +07:39:40 Sending to : +07:39:40 ============================================================================ +07:39:40 Sending to : +07:39:40 ============================================================================ +07:39:41 ============================================================================ +07:39:41 Slot Id : <342> +07:39:41 Transaction Type : REQUEST +07:39:41 Received From : +07:39:41 ============================================================================ +07:39:41 FNo. Len. Field Value +07:39:41 ============================================================================ +07:39:41 [ 1] [ 4] [0200] +07:39:41 [ 2] [ 16] [6213545000137582] +07:39:41 [ 3] [ 6] [301000] +07:39:41 [ 7] [ 10] [0320003848] +07:39:41 [ 11] [ 6] [266835] +07:39:41 [ 12] [ 6] [073848] +07:39:41 [ 13] [ 4] [0320] +07:39:41 [ 14] [ 4] [4912] +07:39:41 [ 15] [ 4] [0320] +07:39:41 [ 18] [ 4] [6011] +07:39:41 [ 19] [ 3] [418] +07:39:41 [ 22] [ 3] [021] +07:39:41 [ 25] [ 2] [01] +07:39:41 [ 32] [ 6] [180893] +07:39:41 [ 35] [ 32] [6213545000137582=491212013758080] +07:39:41 [ 37] [ 12] [507900266835] +07:39:41 [ 41] [ 8] [0363CPSH] +07:39:41 [ 42] [ 15] [999999 ] +07:39:41 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:39:41 [ 49] [ 3] [418] +07:39:41 [ 52] [ 16] [80300BC67762C746] +07:39:41 ============================================================================ +07:39:41 + + +waiting on router queue for slot.... +07:39:41 Sending to : +07:39:41 ============================================================================ +07:39:41 ============================================================================ +07:39:41 Slot Id : <342> +07:39:41 Transaction Type : REQUEST +07:39:41 Received From : +07:39:41 ============================================================================ +07:39:41 FNo. Len. Field Value +07:39:41 ============================================================================ +07:39:41 [ 1] [ 4] [0200] +07:39:41 [ 2] [ 16] [6213545000137582] +07:39:41 [ 3] [ 6] [301000] +07:39:41 [ 7] [ 10] [0320003848] +07:39:41 [ 11] [ 6] [266835] +07:39:41 [ 12] [ 6] [073848] +07:39:41 [ 13] [ 4] [0320] +07:39:41 [ 14] [ 4] [4912] +07:39:41 [ 15] [ 4] [0320] +07:39:41 [ 18] [ 4] [6011] +07:39:41 [ 19] [ 3] [418] +07:39:41 [ 22] [ 3] [021] +07:39:41 [ 25] [ 2] [01] +07:39:41 [ 32] [ 6] [180893] +07:39:41 [ 35] [ 32] [6213545000137582=491212013758080] +07:39:41 [ 37] [ 12] [507900266835] +07:39:41 [ 41] [ 8] [0363CPSH] +07:39:41 [ 42] [ 15] [999999 ] +07:39:41 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:39:41 [ 49] [ 3] [418] +07:39:41 [ 52] [ 16] [85109449FF033646] +07:39:41 ============================================================================ +07:39:41 + + +waiting on router queue for slot.... +07:39:41 Sending to : <0> +07:39:41 ============================================================================ +07:39:41 ============================================================================ +07:39:41 Slot Id : <320> +07:39:41 Transaction Type : REQUEST +07:39:41 Received From : +07:39:41 ============================================================================ +07:39:41 FNo. Len. Field Value +07:39:41 ============================================================================ +07:39:41 [ 1] [ 4] [0200] +07:39:41 [ 2] [ 16] [1808930200021731] +07:39:41 [ 3] [ 6] [011000] +07:39:41 [ 4] [ 12] [000100000000] +07:39:41 [ 7] [ 10] [0320073937] +07:39:41 [ 11] [ 6] [672290] +07:39:41 [ 12] [ 6] [073937] +07:39:41 [ 13] [ 4] [0320] +07:39:41 [ 15] [ 4] [0320] +07:39:41 [ 18] [ 4] [6011] +07:39:41 [ 22] [ 3] [900] +07:39:41 [ 25] [ 2] [02] +07:39:41 [ 28] [ 9] [D00002000] +07:39:41 [ 32] [ 6] [621354] +07:39:41 [ 35] [ 27] [1808930200021731=1803500914] +07:39:41 [ 37] [ 12] [507903975083] +07:39:41 [ 41] [ 8] [01011300] +07:39:41 [ 42] [ 15] [NATIVE ] +07:39:41 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:39:41 [ 49] [ 3] [418] +07:39:41 [ 52] [ 16] [CC36D6E671A2401B] +07:39:41 ============================================================================ +07:39:41 + + +waiting on router queue for slot.... +07:39:41 Sending to : +07:39:41 ============================================================================ +07:39:41 Sending to : +07:39:41 ============================================================================ +07:39:41 ============================================================================ +07:39:41 Slot Id : <342> +07:39:41 Transaction Type : RESPONSE +07:39:41 Received From : +07:39:41 ============================================================================ +07:39:41 FNo. Len. Field Value +07:39:41 ============================================================================ +07:39:41 [ 1] [ 4] [0210] +07:39:41 [ 2] [ 16] [6213545000137582] +07:39:41 [ 3] [ 6] [301000] +07:39:41 [ 4] [ 12] [000000000000] +07:39:41 [ 7] [ 10] [0320003848] +07:39:41 [ 11] [ 6] [266835] +07:39:41 [ 12] [ 6] [073848] +07:39:41 [ 13] [ 4] [0320] +07:39:41 [ 15] [ 4] [0320] +07:39:41 [ 18] [ 4] [6011] +07:39:41 [ 19] [ 3] [418] +07:39:41 [ 32] [ 6] [180893] +07:39:41 [ 35] [ 32] [6213545000137582=491212013758080] +07:39:41 [ 37] [ 12] [507900266835] +07:39:41 [ 38] [ 6] [669055] +07:39:41 [ 39] [ 2] [00] +07:39:41 [ 41] [ 8] [0363CPSH] +07:39:41 [ 49] [ 3] [418] +07:39:41 [ 54] [ 40] [1001418C0001097117941002418C000109711794] +07:39:41 ============================================================================ +07:39:41 Sending to : +07:39:41 ============================================================================ +07:39:41 + + +waiting on router queue for slot.... +07:39:41 ============================================================================ +07:39:41 Slot Id : <320> +07:39:41 Transaction Type : REQUEST +07:39:41 Received From : +07:39:41 ============================================================================ +07:39:41 FNo. Len. Field Value +07:39:41 ============================================================================ +07:39:41 [ 1] [ 4] [0200] +07:39:41 [ 2] [ 16] [1808930200021731] +07:39:41 [ 3] [ 6] [011000] +07:39:41 [ 4] [ 12] [000100000000] +07:39:41 [ 7] [ 10] [0320073937] +07:39:41 [ 11] [ 6] [672290] +07:39:41 [ 12] [ 6] [073937] +07:39:41 [ 13] [ 4] [0320] +07:39:41 [ 15] [ 4] [0320] +07:39:41 [ 18] [ 4] [6011] +07:39:41 [ 22] [ 3] [900] +07:39:41 [ 25] [ 2] [02] +07:39:41 [ 28] [ 9] [D00002000] +07:39:41 [ 32] [ 6] [621354] +07:39:41 [ 35] [ 27] [1808930200021731=1803500914] +07:39:41 [ 37] [ 12] [507903975083] +07:39:41 [ 41] [ 8] [01011300] +07:39:41 [ 42] [ 15] [NATIVE ] +07:39:41 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:39:41 [ 49] [ 3] [418] +07:39:41 [ 52] [ 16] [CC36D6E671A2401B] +07:39:41 ============================================================================ +07:39:41 + + +waiting on router queue for slot.... +07:39:41 Sending to : +07:39:41 ============================================================================ +07:39:41 ============================================================================ +07:39:41 Slot Id : <320> +07:39:41 Transaction Type : REQUEST +07:39:41 Received From : +07:39:41 ============================================================================ +07:39:41 FNo. Len. Field Value +07:39:41 ============================================================================ +07:39:41 [ 1] [ 4] [0200] +07:39:41 [ 2] [ 16] [1808930200021731] +07:39:41 [ 3] [ 6] [011000] +07:39:41 [ 4] [ 12] [000100000000] +07:39:41 [ 7] [ 10] [0320073937] +07:39:41 [ 11] [ 6] [672290] +07:39:41 [ 12] [ 6] [073937] +07:39:41 [ 13] [ 4] [0320] +07:39:41 [ 15] [ 4] [0320] +07:39:41 [ 18] [ 4] [6011] +07:39:41 [ 22] [ 3] [900] +07:39:41 [ 25] [ 2] [02] +07:39:41 [ 28] [ 9] [D00002000] +07:39:41 [ 32] [ 6] [621354] +07:39:41 [ 35] [ 27] [1808930200021731=1803500914] +07:39:41 [ 37] [ 12] [507903975083] +07:39:41 [ 41] [ 8] [01011300] +07:39:41 [ 42] [ 15] [NATIVE ] +07:39:41 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:39:41 [ 49] [ 3] [418] +07:39:41 [ 52] [ 16] [BAE46268B39E4DA9] +07:39:41 ============================================================================ +07:39:41 + + +waiting on router queue for slot.... +07:39:41 Sending to : <2> +07:39:41 ============================================================================ +07:39:43 ============================================================================ +07:39:43 Slot Id : <342> +07:39:43 Transaction Type : RESPONSE +07:39:43 Received From : +07:39:43 ============================================================================ +07:39:43 FNo. Len. Field Value +07:39:43 ============================================================================ +07:39:43 [ 1] [ 4] [0210] +07:39:43 [ 2] [ 16] [6213545000137582] +07:39:43 [ 3] [ 6] [301000] +07:39:43 [ 4] [ 12] [000000000000] +07:39:43 [ 7] [ 10] [0320003848] +07:39:43 [ 11] [ 6] [266835] +07:39:43 [ 12] [ 6] [073848] +07:39:43 [ 13] [ 4] [0320] +07:39:43 [ 15] [ 4] [0320] +07:39:43 [ 18] [ 4] [6011] +07:39:43 [ 19] [ 3] [418] +07:39:43 [ 32] [ 6] [180893] +07:39:43 [ 35] [ 32] [6213545000137582=491212013758080] +07:39:43 [ 37] [ 12] [507900266835] +07:39:43 [ 38] [ 6] [669055] +07:39:43 [ 39] [ 2] [00] +07:39:43 [ 41] [ 8] [0363CPSH] +07:39:43 [ 49] [ 3] [418] +07:39:43 [ 54] [ 40] [1001418C0001097117941002418C000109711794] +07:39:43 ============================================================================ +07:39:43 Calculate Source COMM Id = 2 +07:39:43 ============================================================================ +07:39:43 + + +waiting on router queue for slot.... +07:39:45 ============================================================================ +07:39:45 Slot Id : <320> +07:39:45 Transaction Type : RESPONSE +07:39:45 Received From : +07:39:45 ============================================================================ +07:39:45 FNo. Len. Field Value +07:39:45 ============================================================================ +07:39:45 [ 1] [ 4] [0210] +07:39:45 [ 2] [ 16] [1808930200021731] +07:39:45 [ 3] [ 6] [011000] +07:39:45 [ 4] [ 12] [000100000000] +07:39:45 [ 6] [ 12] [000100000000] +07:39:45 [ 7] [ 10] [0320073937] +07:39:45 [ 11] [ 6] [672290] +07:39:45 [ 12] [ 6] [073937] +07:39:45 [ 13] [ 4] [0320] +07:39:45 [ 18] [ 4] [6011] +07:39:45 [ 19] [ 3] [418] +07:39:45 [ 22] [ 3] [021] +07:39:45 [ 32] [ 6] [621354] +07:39:45 [ 35] [ 27] [1808930200021731=1803500914] +07:39:45 [ 37] [ 12] [507903975083] +07:39:45 [ 38] [ 6] [672290] +07:39:45 [ 39] [ 2] [00] +07:39:45 [ 41] [ 8] [01011300] +07:39:45 [ 49] [ 3] [418] +07:39:45 [ 52] [ 16] [BAE46268B39E4DA9] +07:39:45 [ 54] [ 20] [1001418C000331267800] +07:39:45 ============================================================================ +07:39:45 Sending to : +07:39:45 ============================================================================ +07:39:45 + + +waiting on router queue for slot.... +07:39:47 ============================================================================ +07:39:47 Slot Id : <320> +07:39:47 Transaction Type : RESPONSE +07:39:47 Received From : +07:39:47 ============================================================================ +07:39:47 FNo. Len. Field Value +07:39:47 ============================================================================ +07:39:47 [ 1] [ 4] [0210] +07:39:47 [ 2] [ 16] [1808930200021731] +07:39:47 [ 3] [ 6] [011000] +07:39:47 [ 4] [ 12] [000100000000] +07:39:47 [ 6] [ 12] [000100000000] +07:39:47 [ 7] [ 10] [0320073937] +07:39:47 [ 11] [ 6] [672290] +07:39:47 [ 12] [ 6] [073937] +07:39:47 [ 13] [ 4] [0320] +07:39:47 [ 18] [ 4] [6011] +07:39:47 [ 19] [ 3] [418] +07:39:47 [ 22] [ 3] [021] +07:39:47 [ 32] [ 6] [621354] +07:39:47 [ 35] [ 27] [1808930200021731=1803500914] +07:39:47 [ 37] [ 12] [507903975083] +07:39:47 [ 38] [ 6] [672290] +07:39:47 [ 39] [ 2] [00] +07:39:47 [ 41] [ 8] [01011300] +07:39:47 [ 49] [ 3] [418] +07:39:47 [ 52] [ 16] [BAE46268B39E4DA9] +07:39:47 [ 54] [ 20] [1001418C000331267800] +07:39:47 ============================================================================ +07:39:47 Calculate Source COMM Id = 0 +07:39:47 ============================================================================ +07:39:47 + + +waiting on router queue for slot.... +07:39:54 ============================================================================ +07:39:54 Slot Id : <341> +07:39:54 Transaction Type : REQUEST +07:39:54 Received From : +07:39:54 ============================================================================ +07:39:54 FNo. Len. Field Value +07:39:54 ============================================================================ +07:39:54 [ 1] [ 4] [0800] +07:39:54 [ 7] [ 10] [0320004742] +07:39:54 [ 11] [ 6] [024050] +07:39:54 [ 37] [ 12] [57907024050] +07:39:54 [ 70] [ 3] [301] +07:39:54 ============================================================================ +07:39:54 + + +waiting on router queue for slot.... +07:39:54 Sending to : +07:39:54 ============================================================================ +07:39:54 ============================================================================ +07:39:54 Slot Id : <341> +07:39:54 Transaction Type : RESPONSE +07:39:54 Received From : +07:39:54 ============================================================================ +07:39:54 FNo. Len. Field Value +07:39:54 ============================================================================ +07:39:54 [ 1] [ 4] [0810] +07:39:54 [ 7] [ 10] [0320004742] +07:39:54 [ 11] [ 6] [024050] +07:39:54 [ 37] [ 12] [579070240500] +07:39:54 [ 39] [ 2] [00] +07:39:54 [ 70] [ 3] [810] +07:39:54 ============================================================================ +07:39:54 Calculate Source COMM Id = 1 +07:39:54 ============================================================================ +07:39:54 + + +waiting on router queue for slot.... +07:39:58 ============================================================================ +07:39:58 Slot Id : <345> +07:39:58 Transaction Type : REQUEST +07:39:58 Received From : +07:39:58 ============================================================================ +07:39:58 FNo. Len. Field Value +07:39:58 ============================================================================ +07:39:58 [ 1] [ 4] [0800] +07:39:58 [ 7] [ 10] [0320123906] +07:39:58 [ 11] [ 6] [155219] +07:39:58 [ 70] [ 3] [301] +07:39:58 ============================================================================ +07:39:58 + + +waiting on router queue for slot.... +07:39:58 Sending to : +07:39:58 ============================================================================ +07:39:58 ============================================================================ +07:39:58 Slot Id : <345> +07:39:58 Transaction Type : RESPONSE +07:39:58 Received From : +07:39:58 ============================================================================ +07:39:58 FNo. Len. Field Value +07:39:58 ============================================================================ +07:39:58 [ 1] [ 4] [0810] +07:39:58 [ 7] [ 10] [0320123906] +07:39:58 [ 11] [ 6] [155219] +07:39:58 [ 39] [ 2] [00] +07:39:58 [ 70] [ 3] [301] +07:39:58 ============================================================================ +07:39:58 Calculate Source COMM Id = 2 +07:39:58 ============================================================================ +07:39:58 + + +waiting on router queue for slot.... +07:40:09 ============================================================================ +07:40:09 Slot Id : <268> +07:40:09 Transaction Type : REQUEST +07:40:09 Received From : +07:40:09 ============================================================================ +07:40:09 FNo. Len. Field Value +07:40:09 ============================================================================ +07:40:09 [ 1] [ 4] [0800] +07:40:09 [ 7] [ 10] [0320123917] +07:40:09 [ 11] [ 6] [155220] +07:40:09 [ 70] [ 3] [301] +07:40:09 ============================================================================ +07:40:09 + + +waiting on router queue for slot.... +07:40:09 Sending to : +07:40:09 ============================================================================ +07:40:09 ============================================================================ +07:40:09 Slot Id : <268> +07:40:09 Transaction Type : RESPONSE +07:40:09 Received From : +07:40:09 ============================================================================ +07:40:09 FNo. Len. Field Value +07:40:09 ============================================================================ +07:40:09 [ 1] [ 4] [0810] +07:40:09 [ 7] [ 10] [0320123917] +07:40:09 [ 11] [ 6] [155220] +07:40:09 [ 39] [ 2] [00] +07:40:09 [ 70] [ 3] [301] +07:40:09 ============================================================================ +07:40:09 Calculate Source COMM Id = 2 +07:40:09 ============================================================================ +07:40:09 + + +waiting on router queue for slot.... +07:40:10 ============================================================================ +07:40:10 Slot Id : <344> +07:40:10 Transaction Type : REQUEST +07:40:10 Received From : +07:40:10 ============================================================================ +07:40:10 FNo. Len. Field Value +07:40:10 ============================================================================ +07:40:10 [ 1] [ 4] [0200] +07:40:10 [ 2] [ 16] [6688990105069304] +07:40:10 [ 3] [ 6] [010000] +07:40:10 [ 4] [ 12] [000070000000] +07:40:10 [ 7] [ 10] [0320074006] +07:40:10 [ 11] [ 6] [672384] +07:40:10 [ 12] [ 6] [074006] +07:40:10 [ 13] [ 4] [0320] +07:40:10 [ 15] [ 4] [0320] +07:40:10 [ 18] [ 4] [6011] +07:40:10 [ 22] [ 3] [900] +07:40:10 [ 25] [ 2] [02] +07:40:10 [ 28] [ 9] [D00002000] +07:40:10 [ 32] [ 6] [621354] +07:40:10 [ 35] [ 37] [6688990105069304=43071231930411100000] +07:40:10 [ 37] [ 12] [507904609428] +07:40:10 [ 41] [ 8] [02002300] +07:40:10 [ 42] [ 15] [NATIVE ] +07:40:10 [ 43] [ 40] [Meuang Mahaxay Mahaxay LAO] +07:40:10 [ 49] [ 3] [418] +07:40:10 [ 52] [ 16] [681BA9794DF5EF63] +07:40:10 ============================================================================ +07:40:10 + + +waiting on router queue for slot.... +07:40:10 Sending to : +07:40:10 ============================================================================ +07:40:10 Sending to : +07:40:10 ============================================================================ +07:40:10 ============================================================================ +07:40:10 Slot Id : <344> +07:40:10 Transaction Type : REQUEST +07:40:10 Received From : +07:40:10 ============================================================================ +07:40:10 FNo. Len. Field Value +07:40:10 ============================================================================ +07:40:10 [ 1] [ 4] [0200] +07:40:10 [ 2] [ 16] [6688990105069304] +07:40:10 [ 3] [ 6] [010000] +07:40:10 [ 4] [ 12] [000070000000] +07:40:10 [ 7] [ 10] [0320074006] +07:40:10 [ 11] [ 6] [672384] +07:40:10 [ 12] [ 6] [074006] +07:40:10 [ 13] [ 4] [0320] +07:40:10 [ 15] [ 4] [0320] +07:40:10 [ 18] [ 4] [6011] +07:40:10 [ 22] [ 3] [900] +07:40:10 [ 25] [ 2] [02] +07:40:10 [ 28] [ 9] [D00002000] +07:40:10 [ 32] [ 6] [621354] +07:40:10 [ 35] [ 37] [6688990105069304=43071231930411100000] +07:40:10 [ 37] [ 12] [507904609428] +07:40:10 [ 41] [ 8] [02002300] +07:40:10 [ 42] [ 15] [NATIVE ] +07:40:10 [ 43] [ 40] [Meuang Mahaxay Mahaxay LAO] +07:40:10 [ 49] [ 3] [418] +07:40:10 [ 52] [ 16] [681BA9794DF5EF63] +07:40:10 ============================================================================ +07:40:10 + + +waiting on router queue for slot.... +07:40:10 Sending to : +07:40:10 ============================================================================ +07:40:10 ============================================================================ +07:40:10 Slot Id : <344> +07:40:10 Transaction Type : REQUEST +07:40:10 Received From : +07:40:10 ============================================================================ +07:40:10 FNo. Len. Field Value +07:40:10 ============================================================================ +07:40:10 [ 1] [ 4] [0200] +07:40:10 [ 2] [ 16] [6688990105069304] +07:40:10 [ 3] [ 6] [010000] +07:40:10 [ 4] [ 12] [000070000000] +07:40:10 [ 7] [ 10] [0320074006] +07:40:10 [ 11] [ 6] [672384] +07:40:10 [ 12] [ 6] [074006] +07:40:10 [ 13] [ 4] [0320] +07:40:10 [ 15] [ 4] [0320] +07:40:10 [ 18] [ 4] [6011] +07:40:10 [ 22] [ 3] [900] +07:40:10 [ 25] [ 2] [02] +07:40:10 [ 28] [ 9] [D00002000] +07:40:10 [ 32] [ 6] [621354] +07:40:10 [ 35] [ 37] [6688990105069304=43071231930411100000] +07:40:10 [ 37] [ 12] [507904609428] +07:40:10 [ 41] [ 8] [02002300] +07:40:10 [ 42] [ 15] [NATIVE ] +07:40:10 [ 43] [ 40] [Meuang Mahaxay Mahaxay LAO] +07:40:10 [ 49] [ 3] [418] +07:40:10 [ 52] [ 16] [83673ECB04C8CFD1] +07:40:10 ============================================================================ +07:40:10 + + +waiting on router queue for slot.... +07:40:10 Sending to : <4> +07:40:10 ============================================================================ +07:40:11 ============================================================================ +07:40:11 Slot Id : <344> +07:40:11 Transaction Type : RESPONSE +07:40:11 Received From : +07:40:11 ============================================================================ +07:40:11 FNo. Len. Field Value +07:40:11 ============================================================================ +07:40:11 [ 1] [ 4] [0210] +07:40:11 [ 2] [ 16] [6688990105069304] +07:40:11 [ 3] [ 6] [010000] +07:40:11 [ 4] [ 12] [000070000000] +07:40:11 [ 11] [ 6] [672384] +07:40:11 [ 12] [ 6] [074006] +07:40:11 [ 15] [ 4] [0320] +07:40:11 [ 18] [ 4] [6011] +07:40:11 [ 32] [ 6] [621354] +07:40:11 [ 35] [ 37] [6688990105069304=43071231930411100000] +07:40:11 [ 37] [ 12] [507904609428] +07:40:11 [ 38] [ 6] [180514] +07:40:11 [ 39] [ 2] [00] +07:40:11 [ 41] [ 8] [02002300] +07:40:11 [ 49] [ 3] [418] +07:40:11 [ 54] [ 20] [0002418C000017077694] +07:40:11 ============================================================================ +07:40:11 Sending to : +07:40:11 ============================================================================ +07:40:11 + + +waiting on router queue for slot.... +07:40:13 ============================================================================ +07:40:13 Slot Id : <344> +07:40:13 Transaction Type : RESPONSE +07:40:13 Received From : +07:40:13 ============================================================================ +07:40:13 FNo. Len. Field Value +07:40:13 ============================================================================ +07:40:13 [ 1] [ 4] [0210] +07:40:13 [ 2] [ 16] [6688990105069304] +07:40:13 [ 3] [ 6] [010000] +07:40:13 [ 4] [ 12] [000070000000] +07:40:13 [ 11] [ 6] [672384] +07:40:13 [ 12] [ 6] [074006] +07:40:13 [ 15] [ 4] [0320] +07:40:13 [ 18] [ 4] [6011] +07:40:13 [ 32] [ 6] [621354] +07:40:13 [ 35] [ 37] [6688990105069304=43071231930411100000] +07:40:13 [ 37] [ 12] [507904609428] +07:40:13 [ 38] [ 6] [180514] +07:40:13 [ 39] [ 2] [00] +07:40:13 [ 41] [ 8] [02002300] +07:40:13 [ 49] [ 3] [418] +07:40:13 [ 54] [ 20] [0002418C000017077694] +07:40:13 ============================================================================ +07:40:13 Calculate Source COMM Id = 0 +07:40:13 ============================================================================ +07:40:13 + + +waiting on router queue for slot.... +07:40:20 ============================================================================ +07:40:20 Slot Id : <329> +07:40:20 Transaction Type : REQUEST +07:40:20 Received From : +07:40:20 ============================================================================ +07:40:20 FNo. Len. Field Value +07:40:20 ============================================================================ +07:40:20 [ 1] [ 4] [0800] +07:40:20 [ 7] [ 10] [0320123928] +07:40:20 [ 11] [ 6] [155221] +07:40:20 [ 70] [ 3] [301] +07:40:20 ============================================================================ +07:40:20 + + +waiting on router queue for slot.... +07:40:20 Sending to : +07:40:20 ============================================================================ +07:40:20 ============================================================================ +07:40:20 Slot Id : <329> +07:40:20 Transaction Type : RESPONSE +07:40:20 Received From : +07:40:20 ============================================================================ +07:40:20 FNo. Len. Field Value +07:40:20 ============================================================================ +07:40:20 [ 1] [ 4] [0810] +07:40:20 [ 7] [ 10] [0320123928] +07:40:20 [ 11] [ 6] [155221] +07:40:20 [ 39] [ 2] [00] +07:40:20 [ 70] [ 3] [301] +07:40:20 ============================================================================ +07:40:20 Calculate Source COMM Id = 2 +07:40:20 ============================================================================ +07:40:20 + + +waiting on router queue for slot.... +07:40:26 ============================================================================ +07:40:26 Slot Id : <339> +07:40:26 Transaction Type : REQUEST +07:40:26 Received From : +07:40:26 ============================================================================ +07:40:26 FNo. Len. Field Value +07:40:26 ============================================================================ +07:40:26 [ 1] [ 4] [0800] +07:40:26 [ 2] [ 5] [02531] +07:40:26 [ 3] [ 6] [579078] +07:40:26 [ 7] [ 10] [0320004026] +07:40:26 [ 11] [ 6] [806857] +07:40:26 [ 15] [ 10] [0320004026] +07:40:26 [ 37] [ 11] [57907806857] +07:40:26 [ 70] [ 3] [001] +07:40:26 ============================================================================ +07:40:26 + + +waiting on router queue for slot.... +07:40:26 ============================================================================ +07:40:26 Slot Id : <339> +07:40:26 Transaction Type : RESPONSE +07:40:26 Received From : +07:40:26 ============================================================================ +07:40:26 FNo. Len. Field Value +07:40:26 ============================================================================ +07:40:26 [ 1] [ 4] [0810] +07:40:26 [ 7] [ 10] [0320004026] +07:40:26 [ 11] [ 6] [806857] +07:40:26 [ 15] [ 4] [0320] +07:40:26 [ 37] [ 12] [57907806857] +07:40:26 [ 39] [ 2] [00] +07:40:26 [ 70] [ 3] [001] +07:40:26 ============================================================================ +07:40:26 Sending to : +07:40:26 ============================================================================ +07:40:26 + + +waiting on router queue for slot.... +07:40:28 ============================================================================ +07:40:28 Slot Id : <323> +07:40:28 Transaction Type : REQUEST +07:40:28 Received From : +07:40:28 ============================================================================ +07:40:28 FNo. Len. Field Value +07:40:28 ============================================================================ +07:40:28 [ 1] [ 4] [0800] +07:40:28 [ 7] [ 10] [0320145218] +07:40:28 [ 11] [ 6] [075218] +07:40:28 [ 37] [ 12] [57907075218] +07:40:28 [ 70] [ 3] [301] +07:40:28 ============================================================================ +07:40:28 + + +waiting on router queue for slot.... +07:40:28 Sending to : +07:40:28 ============================================================================ +07:40:28 ============================================================================ +07:40:28 Slot Id : <323> +07:40:28 Transaction Type : RESPONSE +07:40:28 Received From : +07:40:28 ============================================================================ +07:40:28 FNo. Len. Field Value +07:40:28 ============================================================================ +07:40:28 [ 1] [ 4] [0810] +07:40:28 [ 7] [ 10] [0320145218] +07:40:28 [ 11] [ 6] [075218] +07:40:28 [ 37] [ 12] [579070752180] +07:40:28 [ 39] [ 2] [00] +07:40:28 [ 70] [ 3] [810] +07:40:28 ============================================================================ +07:40:28 Calculate Source COMM Id = 6 +07:40:28 ============================================================================ +07:40:28 + + +waiting on router queue for slot.... +07:40:30 ============================================================================ +07:40:30 Slot Id : <309> +07:40:30 Transaction Type : REQUEST +07:40:30 Received From : +07:40:30 ============================================================================ +07:40:30 FNo. Len. Field Value +07:40:30 ============================================================================ +07:40:30 [ 1] [ 4] [0200] +07:40:30 [ 2] [ 16] [1808931100011707] +07:40:30 [ 3] [ 6] [011000] +07:40:30 [ 4] [ 12] [000010000000] +07:40:30 [ 7] [ 10] [0320074026] +07:40:30 [ 11] [ 6] [672437] +07:40:30 [ 12] [ 6] [074026] +07:40:30 [ 13] [ 4] [0320] +07:40:30 [ 15] [ 4] [0320] +07:40:30 [ 18] [ 4] [6011] +07:40:30 [ 22] [ 3] [900] +07:40:30 [ 25] [ 2] [02] +07:40:30 [ 28] [ 9] [D00002000] +07:40:30 [ 32] [ 6] [621354] +07:40:30 [ 35] [ 27] [1808931100011707=1803500055] +07:40:30 [ 37] [ 12] [507904548107] +07:40:30 [ 41] [ 8] [02001700] +07:40:30 [ 42] [ 15] [NATIVE ] +07:40:30 [ 43] [ 40] [Nongbok Unit Thakek LAO] +07:40:30 [ 49] [ 3] [418] +07:40:30 [ 52] [ 16] [28930C1880F0071D] +07:40:30 ============================================================================ +07:40:30 + + +waiting on router queue for slot.... +07:40:30 Sending to : +07:40:30 ============================================================================ +07:40:30 Sending to : +07:40:30 ============================================================================ +07:40:30 ============================================================================ +07:40:30 Slot Id : <309> +07:40:30 Transaction Type : REQUEST +07:40:30 Received From : +07:40:30 ============================================================================ +07:40:30 FNo. Len. Field Value +07:40:30 ============================================================================ +07:40:30 [ 1] [ 4] [0200] +07:40:30 [ 2] [ 16] [1808931100011707] +07:40:30 [ 3] [ 6] [011000] +07:40:30 [ 4] [ 12] [000010000000] +07:40:30 [ 7] [ 10] [0320074026] +07:40:30 [ 11] [ 6] [672437] +07:40:30 [ 12] [ 6] [074026] +07:40:30 [ 13] [ 4] [0320] +07:40:30 [ 15] [ 4] [0320] +07:40:30 [ 18] [ 4] [6011] +07:40:30 [ 22] [ 3] [900] +07:40:30 [ 25] [ 2] [02] +07:40:30 [ 28] [ 9] [D00002000] +07:40:30 [ 32] [ 6] [621354] +07:40:30 [ 35] [ 27] [1808931100011707=1803500055] +07:40:30 [ 37] [ 12] [507904548107] +07:40:30 [ 41] [ 8] [02001700] +07:40:30 [ 42] [ 15] [NATIVE ] +07:40:30 [ 43] [ 40] [Nongbok Unit Thakek LAO] +07:40:30 [ 49] [ 3] [418] +07:40:30 [ 52] [ 16] [28930C1880F0071D] +07:40:30 ============================================================================ +07:40:30 + + +waiting on router queue for slot.... +07:40:30 Sending to : +07:40:30 ============================================================================ +07:40:30 ============================================================================ +07:40:30 Slot Id : <309> +07:40:30 Transaction Type : REQUEST +07:40:30 Received From : +07:40:30 ============================================================================ +07:40:30 FNo. Len. Field Value +07:40:30 ============================================================================ +07:40:30 [ 1] [ 4] [0200] +07:40:30 [ 2] [ 16] [1808931100011707] +07:40:30 [ 3] [ 6] [011000] +07:40:30 [ 4] [ 12] [000010000000] +07:40:30 [ 7] [ 10] [0320074026] +07:40:30 [ 11] [ 6] [672437] +07:40:30 [ 12] [ 6] [074026] +07:40:30 [ 13] [ 4] [0320] +07:40:30 [ 15] [ 4] [0320] +07:40:30 [ 18] [ 4] [6011] +07:40:30 [ 22] [ 3] [900] +07:40:30 [ 25] [ 2] [02] +07:40:30 [ 28] [ 9] [D00002000] +07:40:30 [ 32] [ 6] [621354] +07:40:30 [ 35] [ 27] [1808931100011707=1803500055] +07:40:30 [ 37] [ 12] [507904548107] +07:40:30 [ 41] [ 8] [02001700] +07:40:30 [ 42] [ 15] [NATIVE ] +07:40:30 [ 43] [ 40] [Nongbok Unit Thakek LAO] +07:40:30 [ 49] [ 3] [418] +07:40:30 [ 52] [ 16] [164C5F8111E6EEB9] +07:40:30 ============================================================================ +07:40:30 + + +waiting on router queue for slot.... +07:40:30 Sending to : <2> +07:40:30 ============================================================================ +07:40:30 ============================================================================ +07:40:30 Slot Id : <348> +07:40:30 Transaction Type : REQUEST +07:40:30 Received From : +07:40:30 ============================================================================ +07:40:30 FNo. Len. Field Value +07:40:30 ============================================================================ +07:40:30 [ 1] [ 4] [0800] +07:40:30 [ 7] [ 10] [0320123938] +07:40:30 [ 11] [ 6] [155222] +07:40:30 [ 70] [ 3] [301] +07:40:30 ============================================================================ +07:40:30 + + +waiting on router queue for slot.... +07:40:30 Sending to : +07:40:30 ============================================================================ +07:40:30 ============================================================================ +07:40:30 Slot Id : <348> +07:40:30 Transaction Type : RESPONSE +07:40:30 Received From : +07:40:30 ============================================================================ +07:40:30 FNo. Len. Field Value +07:40:30 ============================================================================ +07:40:30 [ 1] [ 4] [0810] +07:40:30 [ 7] [ 10] [0320123938] +07:40:30 [ 11] [ 6] [155222] +07:40:30 [ 39] [ 2] [00] +07:40:30 [ 70] [ 3] [301] +07:40:30 ============================================================================ +07:40:30 Calculate Source COMM Id = 2 +07:40:30 ============================================================================ +07:40:30 + + +waiting on router queue for slot.... +07:40:36 ============================================================================ +07:40:36 Slot Id : <309> +07:40:36 Transaction Type : RESPONSE +07:40:36 Received From : +07:40:36 ============================================================================ +07:40:36 FNo. Len. Field Value +07:40:36 ============================================================================ +07:40:36 [ 1] [ 4] [0210] +07:40:36 [ 2] [ 16] [1808931100011707] +07:40:36 [ 3] [ 6] [011000] +07:40:36 [ 4] [ 12] [000010000000] +07:40:36 [ 6] [ 12] [000010000000] +07:40:36 [ 7] [ 10] [0320074026] +07:40:36 [ 11] [ 6] [672437] +07:40:36 [ 12] [ 6] [074026] +07:40:36 [ 13] [ 4] [0320] +07:40:36 [ 18] [ 4] [6011] +07:40:36 [ 19] [ 3] [418] +07:40:36 [ 22] [ 3] [021] +07:40:36 [ 32] [ 6] [621354] +07:40:36 [ 35] [ 27] [1808931100011707=1803500055] +07:40:36 [ 37] [ 12] [507904548107] +07:40:36 [ 38] [ 6] [672437] +07:40:36 [ 39] [ 2] [00] +07:40:36 [ 41] [ 8] [02001700] +07:40:36 [ 49] [ 3] [418] +07:40:36 [ 52] [ 16] [164C5F8111E6EEB9] +07:40:36 [ 54] [ 20] [1001418C000121000000] +07:40:36 ============================================================================ +07:40:36 Sending to : +07:40:36 ============================================================================ +07:40:36 + + +waiting on router queue for slot.... +07:40:38 ============================================================================ +07:40:38 Slot Id : <309> +07:40:38 Transaction Type : RESPONSE +07:40:38 Received From : +07:40:38 ============================================================================ +07:40:38 FNo. Len. Field Value +07:40:38 ============================================================================ +07:40:38 [ 1] [ 4] [0210] +07:40:38 [ 2] [ 16] [1808931100011707] +07:40:38 [ 3] [ 6] [011000] +07:40:38 [ 4] [ 12] [000010000000] +07:40:38 [ 6] [ 12] [000010000000] +07:40:38 [ 7] [ 10] [0320074026] +07:40:38 [ 11] [ 6] [672437] +07:40:38 [ 12] [ 6] [074026] +07:40:38 [ 13] [ 4] [0320] +07:40:38 [ 18] [ 4] [6011] +07:40:38 [ 19] [ 3] [418] +07:40:38 [ 22] [ 3] [021] +07:40:38 [ 32] [ 6] [621354] +07:40:38 [ 35] [ 27] [1808931100011707=1803500055] +07:40:38 [ 37] [ 12] [507904548107] +07:40:38 [ 38] [ 6] [672437] +07:40:38 [ 39] [ 2] [00] +07:40:38 [ 41] [ 8] [02001700] +07:40:38 [ 49] [ 3] [418] +07:40:38 [ 52] [ 16] [164C5F8111E6EEB9] +07:40:38 [ 54] [ 20] [1001418C000121000000] +07:40:38 ============================================================================ +07:40:38 Calculate Source COMM Id = 0 +07:40:38 ============================================================================ +07:40:38 + + +waiting on router queue for slot.... +07:40:38 ============================================================================ +07:40:38 Slot Id : <352> +07:40:38 Transaction Type : REQUEST +07:40:38 Received From : +07:40:38 ============================================================================ +07:40:38 FNo. Len. Field Value +07:40:38 ============================================================================ +07:40:38 [ 1] [ 4] [0200] +07:40:38 [ 2] [ 16] [6213545000137582] +07:40:38 [ 3] [ 6] [010000] +07:40:38 [ 4] [ 12] [000100000000] +07:40:38 [ 7] [ 10] [0320003946] +07:40:38 [ 11] [ 6] [266837] +07:40:38 [ 12] [ 6] [073946] +07:40:38 [ 13] [ 4] [0320] +07:40:38 [ 14] [ 4] [4912] +07:40:38 [ 15] [ 4] [0320] +07:40:38 [ 18] [ 4] [6011] +07:40:38 [ 19] [ 3] [418] +07:40:38 [ 22] [ 3] [021] +07:40:38 [ 25] [ 2] [01] +07:40:38 [ 28] [ 9] [D00002000] +07:40:38 [ 32] [ 6] [180893] +07:40:38 [ 35] [ 32] [6213545000137582=491212013758080] +07:40:38 [ 37] [ 12] [507900266837] +07:40:38 [ 41] [ 8] [0363CPSH] +07:40:38 [ 42] [ 15] [999999 ] +07:40:38 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:40:38 [ 49] [ 3] [418] +07:40:38 [ 52] [ 16] [7915E20A899FBAA1] +07:40:38 ============================================================================ +07:40:38 + + +waiting on router queue for slot.... +07:40:38 Sending to : +07:40:38 ============================================================================ +07:40:38 Sending to : +07:40:38 ============================================================================ +07:40:39 ============================================================================ +07:40:39 Slot Id : <352> +07:40:39 Transaction Type : REQUEST +07:40:39 Received From : +07:40:39 ============================================================================ +07:40:39 FNo. Len. Field Value +07:40:39 ============================================================================ +07:40:39 [ 1] [ 4] [0200] +07:40:39 [ 2] [ 16] [6213545000137582] +07:40:39 [ 3] [ 6] [010000] +07:40:39 [ 4] [ 12] [000100000000] +07:40:39 [ 7] [ 10] [0320003946] +07:40:39 [ 11] [ 6] [266837] +07:40:39 [ 12] [ 6] [073946] +07:40:39 [ 13] [ 4] [0320] +07:40:39 [ 14] [ 4] [4912] +07:40:39 [ 15] [ 4] [0320] +07:40:39 [ 18] [ 4] [6011] +07:40:39 [ 19] [ 3] [418] +07:40:39 [ 22] [ 3] [021] +07:40:39 [ 25] [ 2] [01] +07:40:39 [ 28] [ 9] [D00002000] +07:40:39 [ 32] [ 6] [180893] +07:40:39 [ 35] [ 32] [6213545000137582=491212013758080] +07:40:39 [ 37] [ 12] [507900266837] +07:40:39 [ 41] [ 8] [0363CPSH] +07:40:39 [ 42] [ 15] [999999 ] +07:40:39 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:40:39 [ 49] [ 3] [418] +07:40:39 [ 52] [ 16] [7915E20A899FBAA1] +07:40:39 ============================================================================ +07:40:39 + + +waiting on router queue for slot.... +07:40:39 Sending to : +07:40:39 ============================================================================ +07:40:39 ============================================================================ +07:40:39 Slot Id : <352> +07:40:39 Transaction Type : REQUEST +07:40:39 Received From : +07:40:39 ============================================================================ +07:40:39 FNo. Len. Field Value +07:40:39 ============================================================================ +07:40:39 [ 1] [ 4] [0200] +07:40:39 [ 2] [ 16] [6213545000137582] +07:40:39 [ 3] [ 6] [010000] +07:40:39 [ 4] [ 12] [000100000000] +07:40:39 [ 7] [ 10] [0320003946] +07:40:39 [ 11] [ 6] [266837] +07:40:39 [ 12] [ 6] [073946] +07:40:39 [ 13] [ 4] [0320] +07:40:39 [ 14] [ 4] [4912] +07:40:39 [ 15] [ 4] [0320] +07:40:39 [ 18] [ 4] [6011] +07:40:39 [ 19] [ 3] [418] +07:40:39 [ 22] [ 3] [021] +07:40:39 [ 25] [ 2] [01] +07:40:39 [ 28] [ 9] [D00002000] +07:40:39 [ 32] [ 6] [180893] +07:40:39 [ 35] [ 32] [6213545000137582=491212013758080] +07:40:39 [ 37] [ 12] [507900266837] +07:40:39 [ 41] [ 8] [0363CPSH] +07:40:39 [ 42] [ 15] [999999 ] +07:40:39 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:40:39 [ 49] [ 3] [418] +07:40:39 [ 52] [ 16] [C576687CB2F9D931] +07:40:39 ============================================================================ +07:40:39 + + +waiting on router queue for slot.... +07:40:39 Sending to : <0> +07:40:39 ============================================================================ +07:40:40 ============================================================================ +07:40:40 Slot Id : <352> +07:40:40 Transaction Type : RESPONSE +07:40:40 Received From : +07:40:40 ============================================================================ +07:40:40 FNo. Len. Field Value +07:40:40 ============================================================================ +07:40:40 [ 1] [ 4] [0210] +07:40:40 [ 2] [ 16] [6213545000137582] +07:40:40 [ 3] [ 6] [010000] +07:40:40 [ 4] [ 12] [000100000000] +07:40:40 [ 7] [ 10] [0320003946] +07:40:40 [ 11] [ 6] [266837] +07:40:40 [ 12] [ 6] [073946] +07:40:40 [ 13] [ 4] [0320] +07:40:40 [ 15] [ 4] [0320] +07:40:40 [ 18] [ 4] [6011] +07:40:40 [ 19] [ 3] [418] +07:40:40 [ 22] [ 3] [021] +07:40:40 [ 32] [ 6] [180893] +07:40:40 [ 35] [ 32] [6213545000137582=491212013758080] +07:40:40 [ 37] [ 12] [507900266837] +07:40:40 [ 38] [ 6] [074035] +07:40:40 [ 39] [ 2] [55] +07:40:40 [ 41] [ 8] [0363CPSH] +07:40:40 [ 49] [ 3] [418] +07:40:40 ============================================================================ +07:40:40 Sending to : +07:40:40 ============================================================================ +07:40:40 + + +waiting on router queue for slot.... +07:40:41 ============================================================================ +07:40:41 Slot Id : <352> +07:40:41 Transaction Type : RESPONSE +07:40:41 Received From : +07:40:41 ============================================================================ +07:40:41 FNo. Len. Field Value +07:40:41 ============================================================================ +07:40:41 [ 1] [ 4] [0210] +07:40:41 [ 2] [ 16] [6213545000137582] +07:40:41 [ 3] [ 6] [010000] +07:40:41 [ 4] [ 12] [000100000000] +07:40:41 [ 7] [ 10] [0320003946] +07:40:41 [ 11] [ 6] [266837] +07:40:41 [ 12] [ 6] [073946] +07:40:41 [ 13] [ 4] [0320] +07:40:41 [ 15] [ 4] [0320] +07:40:41 [ 18] [ 4] [6011] +07:40:41 [ 19] [ 3] [418] +07:40:41 [ 22] [ 3] [021] +07:40:41 [ 32] [ 6] [180893] +07:40:41 [ 35] [ 32] [6213545000137582=491212013758080] +07:40:41 [ 37] [ 12] [507900266837] +07:40:41 [ 38] [ 6] [074035] +07:40:41 [ 39] [ 2] [55] +07:40:41 [ 41] [ 8] [0363CPSH] +07:40:41 [ 49] [ 3] [418] +07:40:41 ============================================================================ +07:40:41 Calculate Source COMM Id = 2 +07:40:41 ============================================================================ +07:40:41 + + +waiting on router queue for slot.... +07:40:41 ============================================================================ +07:40:41 Slot Id : <328> +07:40:41 Transaction Type : REQUEST +07:40:41 Received From : +07:40:41 ============================================================================ +07:40:41 FNo. Len. Field Value +07:40:41 ============================================================================ +07:40:41 [ 1] [ 4] [0800] +07:40:41 [ 7] [ 10] [0320123950] +07:40:41 [ 11] [ 6] [155223] +07:40:41 [ 70] [ 3] [301] +07:40:41 ============================================================================ +07:40:41 + + +waiting on router queue for slot.... +07:40:41 Sending to : +07:40:41 ============================================================================ +07:40:41 ============================================================================ +07:40:41 Slot Id : <328> +07:40:41 Transaction Type : RESPONSE +07:40:41 Received From : +07:40:41 ============================================================================ +07:40:41 FNo. Len. Field Value +07:40:41 ============================================================================ +07:40:41 [ 1] [ 4] [0810] +07:40:41 [ 7] [ 10] [0320123950] +07:40:41 [ 11] [ 6] [155223] +07:40:41 [ 39] [ 2] [00] +07:40:41 [ 70] [ 3] [301] +07:40:41 ============================================================================ +07:40:41 Calculate Source COMM Id = 2 +07:40:41 ============================================================================ +07:40:41 + + +waiting on router queue for slot.... +07:40:41 ============================================================================ +07:40:41 Slot Id : <347> +07:40:41 Transaction Type : REQUEST +07:40:41 Received From : +07:40:41 ============================================================================ +07:40:41 FNo. Len. Field Value +07:40:41 ============================================================================ +07:40:41 [ 1] [ 4] [0200] +07:40:41 [ 2] [ 16] [1808930200021731] +07:40:41 [ 3] [ 6] [011000] +07:40:41 [ 4] [ 12] [000100000000] +07:40:41 [ 7] [ 10] [0320074038] +07:40:41 [ 11] [ 6] [672470] +07:40:41 [ 12] [ 6] [074038] +07:40:41 [ 13] [ 4] [0320] +07:40:41 [ 15] [ 4] [0320] +07:40:41 [ 18] [ 4] [6011] +07:40:41 [ 22] [ 3] [900] +07:40:41 [ 25] [ 2] [02] +07:40:41 [ 28] [ 9] [D00002000] +07:40:41 [ 32] [ 6] [621354] +07:40:41 [ 35] [ 27] [1808930200021731=1803500914] +07:40:41 [ 37] [ 12] [507903975085] +07:40:41 [ 41] [ 8] [01011300] +07:40:41 [ 42] [ 15] [NATIVE ] +07:40:41 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:40:41 [ 49] [ 3] [418] +07:40:41 [ 52] [ 16] [CC36D6E671A2401B] +07:40:41 ============================================================================ +07:40:41 + + +waiting on router queue for slot.... +07:40:41 Sending to : +07:40:41 ============================================================================ +07:40:41 Sending to : +07:40:41 ============================================================================ +07:40:42 ============================================================================ +07:40:42 Slot Id : <347> +07:40:42 Transaction Type : REQUEST +07:40:42 Received From : +07:40:42 ============================================================================ +07:40:42 FNo. Len. Field Value +07:40:42 ============================================================================ +07:40:42 [ 1] [ 4] [0200] +07:40:42 [ 2] [ 16] [1808930200021731] +07:40:42 [ 3] [ 6] [011000] +07:40:42 [ 4] [ 12] [000100000000] +07:40:42 [ 7] [ 10] [0320074038] +07:40:42 [ 11] [ 6] [672470] +07:40:42 [ 12] [ 6] [074038] +07:40:42 [ 13] [ 4] [0320] +07:40:42 [ 15] [ 4] [0320] +07:40:42 [ 18] [ 4] [6011] +07:40:42 [ 22] [ 3] [900] +07:40:42 [ 25] [ 2] [02] +07:40:42 [ 28] [ 9] [D00002000] +07:40:42 [ 32] [ 6] [621354] +07:40:42 [ 35] [ 27] [1808930200021731=1803500914] +07:40:42 [ 37] [ 12] [507903975085] +07:40:42 [ 41] [ 8] [01011300] +07:40:42 [ 42] [ 15] [NATIVE ] +07:40:42 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:40:42 [ 49] [ 3] [418] +07:40:42 [ 52] [ 16] [CC36D6E671A2401B] +07:40:42 ============================================================================ +07:40:42 + + +waiting on router queue for slot.... +07:40:42 Sending to : +07:40:42 ============================================================================ +07:40:42 ============================================================================ +07:40:42 Slot Id : <347> +07:40:42 Transaction Type : REQUEST +07:40:42 Received From : +07:40:42 ============================================================================ +07:40:42 FNo. Len. Field Value +07:40:42 ============================================================================ +07:40:42 [ 1] [ 4] [0200] +07:40:42 [ 2] [ 16] [1808930200021731] +07:40:42 [ 3] [ 6] [011000] +07:40:42 [ 4] [ 12] [000100000000] +07:40:42 [ 7] [ 10] [0320074038] +07:40:42 [ 11] [ 6] [672470] +07:40:42 [ 12] [ 6] [074038] +07:40:42 [ 13] [ 4] [0320] +07:40:42 [ 15] [ 4] [0320] +07:40:42 [ 18] [ 4] [6011] +07:40:42 [ 22] [ 3] [900] +07:40:42 [ 25] [ 2] [02] +07:40:42 [ 28] [ 9] [D00002000] +07:40:42 [ 32] [ 6] [621354] +07:40:42 [ 35] [ 27] [1808930200021731=1803500914] +07:40:42 [ 37] [ 12] [507903975085] +07:40:42 [ 41] [ 8] [01011300] +07:40:42 [ 42] [ 15] [NATIVE ] +07:40:42 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:40:42 [ 49] [ 3] [418] +07:40:42 [ 52] [ 16] [BAE46268B39E4DA9] +07:40:42 ============================================================================ +07:40:42 + + +waiting on router queue for slot.... +07:40:42 Sending to : <2> +07:40:42 ============================================================================ +07:40:47 ============================================================================ +07:40:47 Slot Id : <347> +07:40:47 Transaction Type : RESPONSE +07:40:47 Received From : +07:40:47 ============================================================================ +07:40:47 FNo. Len. Field Value +07:40:47 ============================================================================ +07:40:47 [ 1] [ 4] [0210] +07:40:47 [ 2] [ 16] [1808930200021731] +07:40:47 [ 3] [ 6] [011000] +07:40:47 [ 4] [ 12] [000100000000] +07:40:47 [ 6] [ 12] [000100000000] +07:40:47 [ 7] [ 10] [0320074038] +07:40:47 [ 11] [ 6] [672470] +07:40:47 [ 12] [ 6] [074038] +07:40:47 [ 13] [ 4] [0320] +07:40:47 [ 18] [ 4] [6011] +07:40:47 [ 19] [ 3] [418] +07:40:47 [ 22] [ 3] [021] +07:40:47 [ 32] [ 6] [621354] +07:40:47 [ 35] [ 27] [1808930200021731=1803500914] +07:40:47 [ 37] [ 12] [507903975085] +07:40:47 [ 38] [ 6] [672470] +07:40:47 [ 39] [ 2] [00] +07:40:47 [ 41] [ 8] [01011300] +07:40:47 [ 49] [ 3] [418] +07:40:47 [ 52] [ 16] [BAE46268B39E4DA9] +07:40:47 [ 54] [ 20] [1001418C000231067800] +07:40:47 ============================================================================ +07:40:47 Sending to : +07:40:47 ============================================================================ +07:40:47 + + +waiting on router queue for slot.... +07:40:49 ============================================================================ +07:40:49 Slot Id : <347> +07:40:49 Transaction Type : RESPONSE +07:40:49 Received From : +07:40:49 ============================================================================ +07:40:49 FNo. Len. Field Value +07:40:49 ============================================================================ +07:40:49 [ 1] [ 4] [0210] +07:40:49 [ 2] [ 16] [1808930200021731] +07:40:49 [ 3] [ 6] [011000] +07:40:49 [ 4] [ 12] [000100000000] +07:40:49 [ 6] [ 12] [000100000000] +07:40:49 [ 7] [ 10] [0320074038] +07:40:49 [ 11] [ 6] [672470] +07:40:49 [ 12] [ 6] [074038] +07:40:49 [ 13] [ 4] [0320] +07:40:49 [ 18] [ 4] [6011] +07:40:49 [ 19] [ 3] [418] +07:40:49 [ 22] [ 3] [021] +07:40:49 [ 32] [ 6] [621354] +07:40:49 [ 35] [ 27] [1808930200021731=1803500914] +07:40:49 [ 37] [ 12] [507903975085] +07:40:49 [ 38] [ 6] [672470] +07:40:49 [ 39] [ 2] [00] +07:40:49 [ 41] [ 8] [01011300] +07:40:49 [ 49] [ 3] [418] +07:40:49 [ 52] [ 16] [BAE46268B39E4DA9] +07:40:49 [ 54] [ 20] [1001418C000231067800] +07:40:49 ============================================================================ +07:40:49 Calculate Source COMM Id = 0 +07:40:49 ============================================================================ +07:40:49 + + +waiting on router queue for slot.... +07:40:58 ============================================================================ +07:40:58 Slot Id : <350> +07:40:58 Transaction Type : REQUEST +07:40:58 Received From : +07:40:58 ============================================================================ +07:40:58 FNo. Len. Field Value +07:40:58 ============================================================================ +07:40:58 [ 1] [ 4] [0800] +07:40:58 [ 7] [ 10] [0320124006] +07:40:58 [ 11] [ 6] [155224] +07:40:58 [ 70] [ 3] [301] +07:40:58 ============================================================================ +07:40:58 + + +waiting on router queue for slot.... +07:40:58 Sending to : +07:40:58 ============================================================================ +07:40:58 ============================================================================ +07:40:58 Slot Id : <350> +07:40:58 Transaction Type : RESPONSE +07:40:58 Received From : +07:40:58 ============================================================================ +07:40:58 FNo. Len. Field Value +07:40:58 ============================================================================ +07:40:58 [ 1] [ 4] [0810] +07:40:58 [ 7] [ 10] [0320124006] +07:40:58 [ 11] [ 6] [155224] +07:40:58 [ 39] [ 2] [00] +07:40:58 [ 70] [ 3] [301] +07:40:58 ============================================================================ +07:40:58 Calculate Source COMM Id = 2 +07:40:58 ============================================================================ +07:40:58 + + +waiting on router queue for slot.... +07:41:06 ============================================================================ +07:41:06 Slot Id : <319> +07:41:06 Transaction Type : REQUEST +07:41:06 Received From : +07:41:06 ============================================================================ +07:41:06 FNo. Len. Field Value +07:41:06 ============================================================================ +07:41:06 [ 1] [ 4] [0200] +07:41:06 [ 2] [ 16] [6688990108425404] +07:41:06 [ 3] [ 6] [011000] +07:41:06 [ 4] [ 12] [000100000000] +07:41:06 [ 7] [ 10] [0320074103] +07:41:06 [ 11] [ 6] [672541] +07:41:06 [ 12] [ 6] [074103] +07:41:06 [ 13] [ 4] [0320] +07:41:06 [ 15] [ 4] [0320] +07:41:06 [ 18] [ 4] [6011] +07:41:06 [ 22] [ 3] [900] +07:41:06 [ 25] [ 2] [02] +07:41:06 [ 28] [ 9] [D00002000] +07:41:06 [ 32] [ 6] [621354] +07:41:06 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:41:06 [ 37] [ 12] [507903499451] +07:41:06 [ 41] [ 8] [06002200] +07:41:06 [ 42] [ 15] [NATIVE ] +07:41:06 [ 43] [ 40] [Beng Market Beng LAO] +07:41:06 [ 49] [ 3] [418] +07:41:06 [ 52] [ 16] [193DDE6CEF0DA63D] +07:41:06 ============================================================================ +07:41:06 + + +waiting on router queue for slot.... +07:41:06 Sending to : +07:41:06 ============================================================================ +07:41:06 Sending to : +07:41:06 ============================================================================ +07:41:07 ============================================================================ +07:41:07 Slot Id : <319> +07:41:07 Transaction Type : REQUEST +07:41:07 Received From : +07:41:07 ============================================================================ +07:41:07 FNo. Len. Field Value +07:41:07 ============================================================================ +07:41:07 [ 1] [ 4] [0200] +07:41:07 [ 2] [ 16] [6688990108425404] +07:41:07 [ 3] [ 6] [011000] +07:41:07 [ 4] [ 12] [000100000000] +07:41:07 [ 7] [ 10] [0320074103] +07:41:07 [ 11] [ 6] [672541] +07:41:07 [ 12] [ 6] [074103] +07:41:07 [ 13] [ 4] [0320] +07:41:07 [ 15] [ 4] [0320] +07:41:07 [ 18] [ 4] [6011] +07:41:07 [ 22] [ 3] [900] +07:41:07 [ 25] [ 2] [02] +07:41:07 [ 28] [ 9] [D00002000] +07:41:07 [ 32] [ 6] [621354] +07:41:07 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:41:07 [ 37] [ 12] [507903499451] +07:41:07 [ 41] [ 8] [06002200] +07:41:07 [ 42] [ 15] [NATIVE ] +07:41:07 [ 43] [ 40] [Beng Market Beng LAO] +07:41:07 [ 49] [ 3] [418] +07:41:07 [ 52] [ 16] [193DDE6CEF0DA63D] +07:41:07 ============================================================================ +07:41:07 + + +waiting on router queue for slot.... +07:41:07 Sending to : +07:41:07 ============================================================================ +07:41:07 ============================================================================ +07:41:07 Slot Id : <319> +07:41:07 Transaction Type : REQUEST +07:41:07 Received From : +07:41:07 ============================================================================ +07:41:07 FNo. Len. Field Value +07:41:07 ============================================================================ +07:41:07 [ 1] [ 4] [0200] +07:41:07 [ 2] [ 16] [6688990108425404] +07:41:07 [ 3] [ 6] [011000] +07:41:07 [ 4] [ 12] [000100000000] +07:41:07 [ 7] [ 10] [0320074103] +07:41:07 [ 11] [ 6] [672541] +07:41:07 [ 12] [ 6] [074103] +07:41:07 [ 13] [ 4] [0320] +07:41:07 [ 15] [ 4] [0320] +07:41:07 [ 18] [ 4] [6011] +07:41:07 [ 22] [ 3] [900] +07:41:07 [ 25] [ 2] [02] +07:41:07 [ 28] [ 9] [D00002000] +07:41:07 [ 32] [ 6] [621354] +07:41:07 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:41:07 [ 37] [ 12] [507903499451] +07:41:07 [ 41] [ 8] [06002200] +07:41:07 [ 42] [ 15] [NATIVE ] +07:41:07 [ 43] [ 40] [Beng Market Beng LAO] +07:41:07 [ 49] [ 3] [418] +07:41:07 [ 52] [ 16] [14ECBF85E8FE7FCA] +07:41:07 ============================================================================ +07:41:07 + + +waiting on router queue for slot.... +07:41:07 Sending to : <4> +07:41:07 ============================================================================ +07:41:08 ============================================================================ +07:41:08 Slot Id : <319> +07:41:08 Transaction Type : RESPONSE +07:41:08 Received From : +07:41:08 ============================================================================ +07:41:08 FNo. Len. Field Value +07:41:08 ============================================================================ +07:41:08 [ 1] [ 4] [0210] +07:41:08 [ 2] [ 16] [6688990108425404] +07:41:08 [ 3] [ 6] [011000] +07:41:08 [ 4] [ 12] [000100000000] +07:41:08 [ 11] [ 6] [672541] +07:41:08 [ 12] [ 6] [074103] +07:41:08 [ 15] [ 4] [0320] +07:41:08 [ 18] [ 4] [6011] +07:41:08 [ 32] [ 6] [621354] +07:41:08 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:41:08 [ 37] [ 12] [507903499451] +07:41:08 [ 38] [ 6] [885683] +07:41:08 [ 39] [ 2] [00] +07:41:08 [ 41] [ 8] [06002200] +07:41:08 [ 49] [ 3] [418] +07:41:08 [ 54] [ 20] [1002418C000447822755] +07:41:08 ============================================================================ +07:41:08 Sending to : +07:41:08 ============================================================================ +07:41:08 + + +waiting on router queue for slot.... +07:41:10 ============================================================================ +07:41:10 Slot Id : <319> +07:41:10 Transaction Type : RESPONSE +07:41:10 Received From : +07:41:10 ============================================================================ +07:41:10 FNo. Len. Field Value +07:41:10 ============================================================================ +07:41:10 [ 1] [ 4] [0210] +07:41:10 [ 2] [ 16] [6688990108425404] +07:41:10 [ 3] [ 6] [011000] +07:41:10 [ 4] [ 12] [000100000000] +07:41:10 [ 11] [ 6] [672541] +07:41:10 [ 12] [ 6] [074103] +07:41:10 [ 15] [ 4] [0320] +07:41:10 [ 18] [ 4] [6011] +07:41:10 [ 32] [ 6] [621354] +07:41:10 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:41:10 [ 37] [ 12] [507903499451] +07:41:10 [ 38] [ 6] [885683] +07:41:10 [ 39] [ 2] [00] +07:41:10 [ 41] [ 8] [06002200] +07:41:10 [ 49] [ 3] [418] +07:41:10 [ 54] [ 20] [1002418C000447822755] +07:41:10 ============================================================================ +07:41:10 Calculate Source COMM Id = 0 +07:41:10 ============================================================================ +07:41:10 + + +waiting on router queue for slot.... +07:41:13 ============================================================================ +07:41:13 Slot Id : <332> +07:41:13 Transaction Type : REQUEST +07:41:13 Received From : +07:41:13 ============================================================================ +07:41:13 FNo. Len. Field Value +07:41:13 ============================================================================ +07:41:13 [ 1] [ 4] [0800] +07:41:13 [ 7] [ 10] [0320124021] +07:41:13 [ 11] [ 6] [155225] +07:41:13 [ 70] [ 3] [301] +07:41:13 ============================================================================ +07:41:13 + + +waiting on router queue for slot.... +07:41:13 Sending to : +07:41:13 ============================================================================ +07:41:13 ============================================================================ +07:41:13 Slot Id : <332> +07:41:13 Transaction Type : RESPONSE +07:41:13 Received From : +07:41:13 ============================================================================ +07:41:13 FNo. Len. Field Value +07:41:13 ============================================================================ +07:41:13 [ 1] [ 4] [0810] +07:41:13 [ 7] [ 10] [0320124021] +07:41:13 [ 11] [ 6] [155225] +07:41:13 [ 39] [ 2] [00] +07:41:13 [ 70] [ 3] [301] +07:41:13 ============================================================================ +07:41:13 Calculate Source COMM Id = 2 +07:41:13 ============================================================================ +07:41:13 + + +waiting on router queue for slot.... +07:41:19 ============================================================================ +07:41:19 Slot Id : <356> +07:41:19 Transaction Type : REQUEST +07:41:19 Received From : +07:41:19 ============================================================================ +07:41:19 FNo. Len. Field Value +07:41:19 ============================================================================ +07:41:19 [ 1] [ 4] [0200] +07:41:19 [ 2] [ 16] [1808930800006652] +07:41:19 [ 3] [ 6] [011000] +07:41:19 [ 4] [ 12] [000020000000] +07:41:19 [ 7] [ 10] [0320074116] +07:41:19 [ 11] [ 6] [672586] +07:41:19 [ 12] [ 6] [074116] +07:41:19 [ 13] [ 4] [0320] +07:41:19 [ 15] [ 4] [0320] +07:41:19 [ 18] [ 4] [6011] +07:41:19 [ 22] [ 3] [900] +07:41:19 [ 25] [ 2] [02] +07:41:19 [ 28] [ 9] [D00002000] +07:41:19 [ 32] [ 6] [621354] +07:41:19 [ 35] [ 27] [1808930800006652=1803500318] +07:41:19 [ 37] [ 12] [507902916462] +07:41:19 [ 41] [ 8] [12001400] +07:41:19 [ 42] [ 15] [NATIVE ] +07:41:19 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +07:41:19 [ 49] [ 3] [418] +07:41:19 [ 52] [ 16] [0992C37A0444ABA3] +07:41:19 ============================================================================ +07:41:19 + + +waiting on router queue for slot.... +07:41:19 Sending to : +07:41:19 ============================================================================ +07:41:19 Sending to : +07:41:19 ============================================================================ +07:41:20 ============================================================================ +07:41:20 Slot Id : <356> +07:41:20 Transaction Type : REQUEST +07:41:20 Received From : +07:41:20 ============================================================================ +07:41:20 FNo. Len. Field Value +07:41:20 ============================================================================ +07:41:20 [ 1] [ 4] [0200] +07:41:20 [ 2] [ 16] [1808930800006652] +07:41:20 [ 3] [ 6] [011000] +07:41:20 [ 4] [ 12] [000020000000] +07:41:20 [ 7] [ 10] [0320074116] +07:41:20 [ 11] [ 6] [672586] +07:41:20 [ 12] [ 6] [074116] +07:41:20 [ 13] [ 4] [0320] +07:41:20 [ 15] [ 4] [0320] +07:41:20 [ 18] [ 4] [6011] +07:41:20 [ 22] [ 3] [900] +07:41:20 [ 25] [ 2] [02] +07:41:20 [ 28] [ 9] [D00002000] +07:41:20 [ 32] [ 6] [621354] +07:41:20 [ 35] [ 27] [1808930800006652=1803500318] +07:41:20 [ 37] [ 12] [507902916462] +07:41:20 [ 41] [ 8] [12001400] +07:41:20 [ 42] [ 15] [NATIVE ] +07:41:20 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +07:41:20 [ 49] [ 3] [418] +07:41:20 [ 52] [ 16] [0992C37A0444ABA3] +07:41:20 ============================================================================ +07:41:20 + + +waiting on router queue for slot.... +07:41:20 Sending to : +07:41:20 ============================================================================ +07:41:20 ============================================================================ +07:41:20 Slot Id : <356> +07:41:20 Transaction Type : REQUEST +07:41:20 Received From : +07:41:20 ============================================================================ +07:41:20 FNo. Len. Field Value +07:41:20 ============================================================================ +07:41:20 [ 1] [ 4] [0200] +07:41:20 [ 2] [ 16] [1808930800006652] +07:41:20 [ 3] [ 6] [011000] +07:41:20 [ 4] [ 12] [000020000000] +07:41:20 [ 7] [ 10] [0320074116] +07:41:20 [ 11] [ 6] [672586] +07:41:20 [ 12] [ 6] [074116] +07:41:20 [ 13] [ 4] [0320] +07:41:20 [ 15] [ 4] [0320] +07:41:20 [ 18] [ 4] [6011] +07:41:20 [ 22] [ 3] [900] +07:41:20 [ 25] [ 2] [02] +07:41:20 [ 28] [ 9] [D00002000] +07:41:20 [ 32] [ 6] [621354] +07:41:20 [ 35] [ 27] [1808930800006652=1803500318] +07:41:20 [ 37] [ 12] [507902916462] +07:41:20 [ 41] [ 8] [12001400] +07:41:20 [ 42] [ 15] [NATIVE ] +07:41:20 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +07:41:20 [ 49] [ 3] [418] +07:41:20 [ 52] [ 16] [CA6D1BCA0FABFEF6] +07:41:20 ============================================================================ +07:41:20 + + +waiting on router queue for slot.... +07:41:20 Sending to : <2> +07:41:20 ============================================================================ +07:41:21 ============================================================================ +07:41:21 Slot Id : <346> +07:41:21 Transaction Type : REQUEST +07:41:21 Received From : +07:41:21 ============================================================================ +07:41:21 FNo. Len. Field Value +07:41:21 ============================================================================ +07:41:21 [ 1] [ 4] [0800] +07:41:21 [ 7] [ 10] [0320003912] +07:41:21 [ 11] [ 6] [097058] +07:41:21 [ 37] [ 12] [57907097058] +07:41:21 [ 70] [ 3] [301] +07:41:21 ============================================================================ +07:41:21 + + +waiting on router queue for slot.... +07:41:21 Sending to : +07:41:21 ============================================================================ +07:41:21 ============================================================================ +07:41:21 Slot Id : <346> +07:41:21 Transaction Type : RESPONSE +07:41:21 Received From : +07:41:21 ============================================================================ +07:41:21 FNo. Len. Field Value +07:41:21 ============================================================================ +07:41:21 [ 1] [ 4] [0810] +07:41:21 [ 7] [ 10] [0320003912] +07:41:21 [ 11] [ 6] [097058] +07:41:21 [ 37] [ 12] [579070970580] +07:41:21 [ 39] [ 2] [00] +07:41:21 [ 70] [ 3] [810] +07:41:21 ============================================================================ +07:41:21 Calculate Source COMM Id = 4 +07:41:21 ============================================================================ +07:41:21 + + +waiting on router queue for slot.... +07:41:21 ============================================================================ +07:41:21 Slot Id : <356> +07:41:21 Transaction Type : RESPONSE +07:41:21 Received From : +07:41:21 ============================================================================ +07:41:21 FNo. Len. Field Value +07:41:21 ============================================================================ +07:41:21 [ 1] [ 4] [0210] +07:41:21 [ 2] [ 16] [1808930800006652] +07:41:21 [ 3] [ 6] [011000] +07:41:21 [ 4] [ 12] [000020000000] +07:41:21 [ 6] [ 12] [000020000000] +07:41:21 [ 7] [ 10] [0320074116] +07:41:21 [ 11] [ 6] [672586] +07:41:21 [ 12] [ 6] [074116] +07:41:21 [ 13] [ 4] [0320] +07:41:21 [ 18] [ 4] [6011] +07:41:21 [ 19] [ 3] [418] +07:41:21 [ 22] [ 3] [021] +07:41:21 [ 28] [ 9] [D00002000] +07:41:21 [ 32] [ 6] [621354] +07:41:21 [ 35] [ 27] [1808930800006652=1803500318] +07:41:21 [ 37] [ 12] [507902916462] +07:41:21 [ 39] [ 2] [55] +07:41:21 [ 41] [ 8] [12001400] +07:41:21 [ 49] [ 3] [418] +07:41:21 [ 51] [ 3] [418] +07:41:21 [ 52] [ 16] [CA6D1BCA0FABFEF6] +07:41:21 ============================================================================ +07:41:21 Sending to : +07:41:21 ============================================================================ +07:41:21 + + +waiting on router queue for slot.... +07:41:22 ============================================================================ +07:41:22 Slot Id : <356> +07:41:22 Transaction Type : RESPONSE +07:41:22 Received From : +07:41:22 ============================================================================ +07:41:22 FNo. Len. Field Value +07:41:22 ============================================================================ +07:41:22 [ 1] [ 4] [0210] +07:41:22 [ 2] [ 16] [1808930800006652] +07:41:22 [ 3] [ 6] [011000] +07:41:22 [ 4] [ 12] [000020000000] +07:41:22 [ 6] [ 12] [000020000000] +07:41:22 [ 7] [ 10] [0320074116] +07:41:22 [ 11] [ 6] [672586] +07:41:22 [ 12] [ 6] [074116] +07:41:22 [ 13] [ 4] [0320] +07:41:22 [ 18] [ 4] [6011] +07:41:22 [ 19] [ 3] [418] +07:41:22 [ 22] [ 3] [021] +07:41:22 [ 28] [ 9] [D00002000] +07:41:22 [ 32] [ 6] [621354] +07:41:22 [ 35] [ 27] [1808930800006652=1803500318] +07:41:22 [ 37] [ 12] [507902916462] +07:41:22 [ 39] [ 2] [55] +07:41:22 [ 41] [ 8] [12001400] +07:41:22 [ 49] [ 3] [418] +07:41:22 [ 51] [ 3] [418] +07:41:22 [ 52] [ 16] [CA6D1BCA0FABFEF6] +07:41:22 ============================================================================ +07:41:22 Calculate Source COMM Id = 0 +07:41:22 ============================================================================ +07:41:22 + + +waiting on router queue for slot.... +07:41:28 ============================================================================ +07:41:28 Slot Id : <357> +07:41:28 Transaction Type : REQUEST +07:41:28 Received From : +07:41:28 ============================================================================ +07:41:28 FNo. Len. Field Value +07:41:28 ============================================================================ +07:41:28 [ 1] [ 4] [0800] +07:41:28 [ 2] [ 5] [02531] +07:41:28 [ 3] [ 6] [579078] +07:41:28 [ 7] [ 10] [0320004128] +07:41:28 [ 11] [ 6] [806858] +07:41:28 [ 15] [ 10] [0320004128] +07:41:28 [ 37] [ 11] [57907806858] +07:41:28 [ 70] [ 3] [001] +07:41:28 ============================================================================ +07:41:28 + + +waiting on router queue for slot.... +07:41:28 ============================================================================ +07:41:28 Slot Id : <357> +07:41:28 Transaction Type : RESPONSE +07:41:28 Received From : +07:41:28 ============================================================================ +07:41:28 FNo. Len. Field Value +07:41:28 ============================================================================ +07:41:28 [ 1] [ 4] [0810] +07:41:28 [ 7] [ 10] [0320004128] +07:41:28 [ 11] [ 6] [806858] +07:41:28 [ 15] [ 4] [0320] +07:41:28 [ 37] [ 12] [57907806858] +07:41:28 [ 39] [ 2] [00] +07:41:28 [ 70] [ 3] [001] +07:41:28 ============================================================================ +07:41:28 Sending to : +07:41:28 ============================================================================ +07:41:28 + + +waiting on router queue for slot.... +07:41:33 ============================================================================ +07:41:33 Slot Id : <330> +07:41:33 Transaction Type : REQUEST +07:41:33 Received From : +07:41:33 ============================================================================ +07:41:33 FNo. Len. Field Value +07:41:33 ============================================================================ +07:41:33 [ 1] [ 4] [0800] +07:41:33 [ 7] [ 10] [0320145323] +07:41:33 [ 11] [ 6] [075323] +07:41:33 [ 37] [ 12] [57907075323] +07:41:33 [ 70] [ 3] [301] +07:41:33 ============================================================================ +07:41:33 + + +waiting on router queue for slot.... +07:41:33 Sending to : +07:41:33 ============================================================================ +07:41:33 ============================================================================ +07:41:33 Slot Id : <330> +07:41:33 Transaction Type : RESPONSE +07:41:33 Received From : +07:41:33 ============================================================================ +07:41:33 FNo. Len. Field Value +07:41:33 ============================================================================ +07:41:33 [ 1] [ 4] [0810] +07:41:33 [ 7] [ 10] [0320145323] +07:41:33 [ 11] [ 6] [075323] +07:41:33 [ 37] [ 12] [579070753230] +07:41:33 [ 39] [ 2] [00] +07:41:33 [ 70] [ 3] [810] +07:41:33 ============================================================================ +07:41:33 Calculate Source COMM Id = 6 +07:41:33 ============================================================================ +07:41:33 + + +waiting on router queue for slot.... +07:41:34 ============================================================================ +07:41:34 Slot Id : <343> +07:41:34 Transaction Type : REQUEST +07:41:34 Received From : +07:41:34 ============================================================================ +07:41:34 FNo. Len. Field Value +07:41:34 ============================================================================ +07:41:34 [ 1] [ 4] [0800] +07:41:34 [ 7] [ 10] [0320124042] +07:41:34 [ 11] [ 6] [155226] +07:41:34 [ 70] [ 3] [301] +07:41:34 ============================================================================ +07:41:34 + + +waiting on router queue for slot.... +07:41:34 Sending to : +07:41:34 ============================================================================ +07:41:34 ============================================================================ +07:41:34 Slot Id : <343> +07:41:34 Transaction Type : RESPONSE +07:41:34 Received From : +07:41:34 ============================================================================ +07:41:34 FNo. Len. Field Value +07:41:34 ============================================================================ +07:41:34 [ 1] [ 4] [0810] +07:41:34 [ 7] [ 10] [0320124042] +07:41:34 [ 11] [ 6] [155226] +07:41:34 [ 39] [ 2] [00] +07:41:34 [ 70] [ 3] [301] +07:41:34 ============================================================================ +07:41:34 Calculate Source COMM Id = 2 +07:41:34 ============================================================================ +07:41:34 + + +waiting on router queue for slot.... +07:41:40 ============================================================================ +07:41:40 Slot Id : <366> +07:41:40 Transaction Type : REQUEST +07:41:40 Received From : +07:41:40 ============================================================================ +07:41:40 FNo. Len. Field Value +07:41:40 ============================================================================ +07:41:40 [ 1] [ 4] [0200] +07:41:40 [ 2] [ 16] [1808930200021731] +07:41:40 [ 3] [ 6] [011000] +07:41:40 [ 4] [ 12] [000100000000] +07:41:40 [ 7] [ 10] [0320074136] +07:41:40 [ 11] [ 6] [672640] +07:41:40 [ 12] [ 6] [074136] +07:41:40 [ 13] [ 4] [0320] +07:41:40 [ 15] [ 4] [0320] +07:41:40 [ 18] [ 4] [6011] +07:41:40 [ 22] [ 3] [900] +07:41:40 [ 25] [ 2] [02] +07:41:40 [ 28] [ 9] [D00002000] +07:41:40 [ 32] [ 6] [621354] +07:41:40 [ 35] [ 27] [1808930200021731=1803500914] +07:41:40 [ 37] [ 12] [507903975087] +07:41:40 [ 41] [ 8] [01011300] +07:41:40 [ 42] [ 15] [NATIVE ] +07:41:40 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:41:40 [ 49] [ 3] [418] +07:41:40 [ 52] [ 16] [CC36D6E671A2401B] +07:41:40 ============================================================================ +07:41:40 + + +waiting on router queue for slot.... +07:41:40 Sending to : +07:41:40 ============================================================================ +07:41:40 Sending to : +07:41:40 ============================================================================ +07:41:40 ============================================================================ +07:41:40 Slot Id : <366> +07:41:40 Transaction Type : REQUEST +07:41:40 Received From : +07:41:40 ============================================================================ +07:41:40 FNo. Len. Field Value +07:41:40 ============================================================================ +07:41:40 [ 1] [ 4] [0200] +07:41:40 [ 2] [ 16] [1808930200021731] +07:41:40 [ 3] [ 6] [011000] +07:41:40 [ 4] [ 12] [000100000000] +07:41:40 [ 7] [ 10] [0320074136] +07:41:40 [ 11] [ 6] [672640] +07:41:40 [ 12] [ 6] [074136] +07:41:40 [ 13] [ 4] [0320] +07:41:40 [ 15] [ 4] [0320] +07:41:40 [ 18] [ 4] [6011] +07:41:40 [ 22] [ 3] [900] +07:41:40 [ 25] [ 2] [02] +07:41:40 [ 28] [ 9] [D00002000] +07:41:40 [ 32] [ 6] [621354] +07:41:40 [ 35] [ 27] [1808930200021731=1803500914] +07:41:40 [ 37] [ 12] [507903975087] +07:41:40 [ 41] [ 8] [01011300] +07:41:40 [ 42] [ 15] [NATIVE ] +07:41:40 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:41:40 [ 49] [ 3] [418] +07:41:40 [ 52] [ 16] [CC36D6E671A2401B] +07:41:40 ============================================================================ +07:41:40 + + +waiting on router queue for slot.... +07:41:40 Sending to : +07:41:40 ============================================================================ +07:41:40 ============================================================================ +07:41:40 Slot Id : <366> +07:41:40 Transaction Type : REQUEST +07:41:40 Received From : +07:41:40 ============================================================================ +07:41:40 FNo. Len. Field Value +07:41:40 ============================================================================ +07:41:40 [ 1] [ 4] [0200] +07:41:40 [ 2] [ 16] [1808930200021731] +07:41:40 [ 3] [ 6] [011000] +07:41:40 [ 4] [ 12] [000100000000] +07:41:40 [ 7] [ 10] [0320074136] +07:41:40 [ 11] [ 6] [672640] +07:41:40 [ 12] [ 6] [074136] +07:41:40 [ 13] [ 4] [0320] +07:41:40 [ 15] [ 4] [0320] +07:41:40 [ 18] [ 4] [6011] +07:41:40 [ 22] [ 3] [900] +07:41:40 [ 25] [ 2] [02] +07:41:40 [ 28] [ 9] [D00002000] +07:41:40 [ 32] [ 6] [621354] +07:41:40 [ 35] [ 27] [1808930200021731=1803500914] +07:41:40 [ 37] [ 12] [507903975087] +07:41:40 [ 41] [ 8] [01011300] +07:41:40 [ 42] [ 15] [NATIVE ] +07:41:40 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:41:40 [ 49] [ 3] [418] +07:41:40 [ 52] [ 16] [BAE46268B39E4DA9] +07:41:40 ============================================================================ +07:41:40 + + +waiting on router queue for slot.... +07:41:40 Sending to : <2> +07:41:40 ============================================================================ +07:41:44 ============================================================================ +07:41:44 Slot Id : <366> +07:41:44 Transaction Type : RESPONSE +07:41:44 Received From : +07:41:44 ============================================================================ +07:41:44 FNo. Len. Field Value +07:41:44 ============================================================================ +07:41:44 [ 1] [ 4] [0210] +07:41:44 [ 2] [ 16] [1808930200021731] +07:41:44 [ 3] [ 6] [011000] +07:41:44 [ 4] [ 12] [000100000000] +07:41:44 [ 6] [ 12] [000100000000] +07:41:44 [ 7] [ 10] [0320074136] +07:41:44 [ 11] [ 6] [672640] +07:41:44 [ 12] [ 6] [074136] +07:41:44 [ 13] [ 4] [0320] +07:41:44 [ 18] [ 4] [6011] +07:41:44 [ 19] [ 3] [418] +07:41:44 [ 22] [ 3] [021] +07:41:44 [ 32] [ 6] [621354] +07:41:44 [ 35] [ 27] [1808930200021731=1803500914] +07:41:44 [ 37] [ 12] [507903975087] +07:41:44 [ 38] [ 6] [672640] +07:41:44 [ 39] [ 2] [00] +07:41:44 [ 41] [ 8] [01011300] +07:41:44 [ 49] [ 3] [418] +07:41:44 [ 52] [ 16] [BAE46268B39E4DA9] +07:41:44 [ 54] [ 20] [1001418C000130867800] +07:41:44 ============================================================================ +07:41:44 Sending to : +07:41:44 ============================================================================ +07:41:44 + + +waiting on router queue for slot.... +07:41:46 ============================================================================ +07:41:46 Slot Id : <366> +07:41:46 Transaction Type : RESPONSE +07:41:46 Received From : +07:41:46 ============================================================================ +07:41:46 FNo. Len. Field Value +07:41:46 ============================================================================ +07:41:46 [ 1] [ 4] [0210] +07:41:46 [ 2] [ 16] [1808930200021731] +07:41:46 [ 3] [ 6] [011000] +07:41:46 [ 4] [ 12] [000100000000] +07:41:46 [ 6] [ 12] [000100000000] +07:41:46 [ 7] [ 10] [0320074136] +07:41:46 [ 11] [ 6] [672640] +07:41:46 [ 12] [ 6] [074136] +07:41:46 [ 13] [ 4] [0320] +07:41:46 [ 18] [ 4] [6011] +07:41:46 [ 19] [ 3] [418] +07:41:46 [ 22] [ 3] [021] +07:41:46 [ 32] [ 6] [621354] +07:41:46 [ 35] [ 27] [1808930200021731=1803500914] +07:41:46 [ 37] [ 12] [507903975087] +07:41:46 [ 38] [ 6] [672640] +07:41:46 [ 39] [ 2] [00] +07:41:46 [ 41] [ 8] [01011300] +07:41:46 [ 49] [ 3] [418] +07:41:46 [ 52] [ 16] [BAE46268B39E4DA9] +07:41:46 [ 54] [ 20] [1001418C000130867800] +07:41:46 ============================================================================ +07:41:46 Calculate Source COMM Id = 0 +07:41:46 ============================================================================ +07:41:46 + + +waiting on router queue for slot.... +07:41:54 ============================================================================ +07:41:54 Slot Id : <313> +07:41:54 Transaction Type : REQUEST +07:41:54 Received From : +07:41:54 ============================================================================ +07:41:54 FNo. Len. Field Value +07:41:54 ============================================================================ +07:41:54 [ 1] [ 4] [0800] +07:41:54 [ 7] [ 10] [0320124103] +07:41:54 [ 11] [ 6] [155227] +07:41:54 [ 70] [ 3] [301] +07:41:54 ============================================================================ +07:41:54 + + +waiting on router queue for slot.... +07:41:54 Sending to : +07:41:54 ============================================================================ +07:41:54 ============================================================================ +07:41:54 Slot Id : <313> +07:41:54 Transaction Type : RESPONSE +07:41:54 Received From : +07:41:54 ============================================================================ +07:41:54 FNo. Len. Field Value +07:41:54 ============================================================================ +07:41:54 [ 1] [ 4] [0810] +07:41:54 [ 7] [ 10] [0320124103] +07:41:54 [ 11] [ 6] [155227] +07:41:54 [ 39] [ 2] [00] +07:41:54 [ 70] [ 3] [301] +07:41:54 ============================================================================ +07:41:54 Calculate Source COMM Id = 2 +07:41:54 ============================================================================ +07:41:54 + + +waiting on router queue for slot.... +07:42:03 ============================================================================ +07:42:03 Slot Id : <365> +07:42:03 Transaction Type : REQUEST +07:42:03 Received From : +07:42:03 ============================================================================ +07:42:03 FNo. Len. Field Value +07:42:03 ============================================================================ +07:42:03 [ 1] [ 4] [0200] +07:42:03 [ 2] [ 16] [6213545000786354] +07:42:03 [ 3] [ 6] [010000] +07:42:03 [ 4] [ 12] [000100000000] +07:42:03 [ 7] [ 10] [0320004111] +07:42:03 [ 11] [ 6] [266842] +07:42:03 [ 12] [ 6] [074111] +07:42:03 [ 13] [ 4] [0320] +07:42:03 [ 14] [ 4] [4912] +07:42:03 [ 15] [ 4] [0320] +07:42:03 [ 18] [ 4] [6011] +07:42:03 [ 19] [ 3] [418] +07:42:03 [ 22] [ 3] [021] +07:42:03 [ 25] [ 2] [01] +07:42:03 [ 28] [ 9] [D00002000] +07:42:03 [ 32] [ 6] [180893] +07:42:03 [ 35] [ 32] [6213545000786354=491212018635979] +07:42:03 [ 37] [ 12] [507900266842] +07:42:03 [ 41] [ 8] [0525XYBT] +07:42:03 [ 42] [ 15] [999999 ] +07:42:03 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:42:03 [ 49] [ 3] [418] +07:42:03 [ 52] [ 16] [9E3A124C621BA858] +07:42:03 ============================================================================ +07:42:03 + + +waiting on router queue for slot.... +07:42:03 Sending to : +07:42:03 ============================================================================ +07:42:03 Sending to : +07:42:03 ============================================================================ +07:42:03 ============================================================================ +07:42:03 Slot Id : <365> +07:42:03 Transaction Type : REQUEST +07:42:03 Received From : +07:42:03 ============================================================================ +07:42:03 FNo. Len. Field Value +07:42:03 ============================================================================ +07:42:03 [ 1] [ 4] [0200] +07:42:03 [ 2] [ 16] [6213545000786354] +07:42:03 [ 3] [ 6] [010000] +07:42:03 [ 4] [ 12] [000100000000] +07:42:03 [ 7] [ 10] [0320004111] +07:42:03 [ 11] [ 6] [266842] +07:42:03 [ 12] [ 6] [074111] +07:42:03 [ 13] [ 4] [0320] +07:42:03 [ 14] [ 4] [4912] +07:42:03 [ 15] [ 4] [0320] +07:42:03 [ 18] [ 4] [6011] +07:42:03 [ 19] [ 3] [418] +07:42:03 [ 22] [ 3] [021] +07:42:03 [ 25] [ 2] [01] +07:42:03 [ 28] [ 9] [D00002000] +07:42:03 [ 32] [ 6] [180893] +07:42:03 [ 35] [ 32] [6213545000786354=491212018635979] +07:42:03 [ 37] [ 12] [507900266842] +07:42:03 [ 41] [ 8] [0525XYBT] +07:42:03 [ 42] [ 15] [999999 ] +07:42:03 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:42:03 [ 49] [ 3] [418] +07:42:03 [ 52] [ 16] [9E3A124C621BA858] +07:42:03 ============================================================================ +07:42:03 + + +waiting on router queue for slot.... +07:42:03 Sending to : +07:42:03 ============================================================================ +07:42:03 ============================================================================ +07:42:03 Slot Id : <365> +07:42:03 Transaction Type : REQUEST +07:42:03 Received From : +07:42:03 ============================================================================ +07:42:03 FNo. Len. Field Value +07:42:03 ============================================================================ +07:42:03 [ 1] [ 4] [0200] +07:42:03 [ 2] [ 16] [6213545000786354] +07:42:03 [ 3] [ 6] [010000] +07:42:03 [ 4] [ 12] [000100000000] +07:42:03 [ 7] [ 10] [0320004111] +07:42:03 [ 11] [ 6] [266842] +07:42:03 [ 12] [ 6] [074111] +07:42:03 [ 13] [ 4] [0320] +07:42:03 [ 14] [ 4] [4912] +07:42:03 [ 15] [ 4] [0320] +07:42:03 [ 18] [ 4] [6011] +07:42:03 [ 19] [ 3] [418] +07:42:03 [ 22] [ 3] [021] +07:42:03 [ 25] [ 2] [01] +07:42:03 [ 28] [ 9] [D00002000] +07:42:03 [ 32] [ 6] [180893] +07:42:03 [ 35] [ 32] [6213545000786354=491212018635979] +07:42:03 [ 37] [ 12] [507900266842] +07:42:03 [ 41] [ 8] [0525XYBT] +07:42:03 [ 42] [ 15] [999999 ] +07:42:03 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:42:03 [ 49] [ 3] [418] +07:42:03 [ 52] [ 16] [D79E44AF32633FFD] +07:42:03 ============================================================================ +07:42:03 + + +waiting on router queue for slot.... +07:42:03 Sending to : <0> +07:42:03 ============================================================================ +07:42:04 ============================================================================ +07:42:04 Slot Id : <365> +07:42:04 Transaction Type : RESPONSE +07:42:04 Received From : +07:42:04 ============================================================================ +07:42:04 FNo. Len. Field Value +07:42:04 ============================================================================ +07:42:04 [ 1] [ 4] [0210] +07:42:04 [ 2] [ 16] [6213545000786354] +07:42:04 [ 3] [ 6] [010000] +07:42:04 [ 4] [ 12] [000100000000] +07:42:04 [ 7] [ 10] [0320004111] +07:42:04 [ 11] [ 6] [266842] +07:42:04 [ 12] [ 6] [074111] +07:42:04 [ 13] [ 4] [0320] +07:42:04 [ 15] [ 4] [0320] +07:42:04 [ 18] [ 4] [6011] +07:42:04 [ 19] [ 3] [418] +07:42:04 [ 32] [ 6] [180893] +07:42:04 [ 35] [ 32] [6213545000786354=491212018635979] +07:42:04 [ 37] [ 12] [507900266842] +07:42:04 [ 38] [ 6] [203567] +07:42:04 [ 39] [ 2] [00] +07:42:04 [ 41] [ 8] [0525XYBT] +07:42:04 [ 49] [ 3] [418] +07:42:04 [ 54] [ 40] [0001418C0000883993240002418C000088399324] +07:42:04 ============================================================================ +07:42:04 Sending to : +07:42:04 ============================================================================ +07:42:04 + + +waiting on router queue for slot.... +07:42:06 ============================================================================ +07:42:06 Slot Id : <365> +07:42:06 Transaction Type : RESPONSE +07:42:06 Received From : +07:42:06 ============================================================================ +07:42:06 FNo. Len. Field Value +07:42:06 ============================================================================ +07:42:06 [ 1] [ 4] [0210] +07:42:06 [ 2] [ 16] [6213545000786354] +07:42:06 [ 3] [ 6] [010000] +07:42:06 [ 4] [ 12] [000100000000] +07:42:06 [ 7] [ 10] [0320004111] +07:42:06 [ 11] [ 6] [266842] +07:42:06 [ 12] [ 6] [074111] +07:42:06 [ 13] [ 4] [0320] +07:42:06 [ 15] [ 4] [0320] +07:42:06 [ 18] [ 4] [6011] +07:42:06 [ 19] [ 3] [418] +07:42:06 [ 32] [ 6] [180893] +07:42:06 [ 35] [ 32] [6213545000786354=491212018635979] +07:42:06 [ 37] [ 12] [507900266842] +07:42:06 [ 38] [ 6] [203567] +07:42:06 [ 39] [ 2] [00] +07:42:06 [ 41] [ 8] [0525XYBT] +07:42:06 [ 49] [ 3] [418] +07:42:06 [ 54] [ 40] [0001418C0000883993240002418C000088399324] +07:42:06 ============================================================================ +07:42:06 Calculate Source COMM Id = 2 +07:42:06 ============================================================================ +07:42:06 + + +waiting on router queue for slot.... +07:42:06 ============================================================================ +07:42:06 Slot Id : <340> +07:42:06 Transaction Type : REQUEST +07:42:06 Received From : +07:42:06 ============================================================================ +07:42:06 FNo. Len. Field Value +07:42:06 ============================================================================ +07:42:06 [ 1] [ 4] [0800] +07:42:06 [ 7] [ 10] [0320124113] +07:42:06 [ 11] [ 6] [155228] +07:42:06 [ 70] [ 3] [301] +07:42:06 ============================================================================ +07:42:06 + + +waiting on router queue for slot.... +07:42:06 Sending to : +07:42:06 ============================================================================ +07:42:06 ============================================================================ +07:42:06 Slot Id : <340> +07:42:06 Transaction Type : RESPONSE +07:42:06 Received From : +07:42:06 ============================================================================ +07:42:06 FNo. Len. Field Value +07:42:06 ============================================================================ +07:42:06 [ 1] [ 4] [0810] +07:42:06 [ 7] [ 10] [0320124113] +07:42:06 [ 11] [ 6] [155228] +07:42:06 [ 39] [ 2] [00] +07:42:06 [ 70] [ 3] [301] +07:42:06 ============================================================================ +07:42:06 Calculate Source COMM Id = 2 +07:42:06 ============================================================================ +07:42:06 + + +waiting on router queue for slot.... +07:42:14 ============================================================================ +07:42:14 Slot Id : <371> +07:42:14 Transaction Type : REQUEST +07:42:14 Received From : +07:42:14 ============================================================================ +07:42:14 FNo. Len. Field Value +07:42:14 ============================================================================ +07:42:14 [ 1] [ 4] [0200] +07:42:14 [ 2] [ 16] [1808930800006652] +07:42:14 [ 3] [ 6] [011000] +07:42:14 [ 4] [ 12] [000020000000] +07:42:14 [ 7] [ 10] [0320074210] +07:42:14 [ 11] [ 6] [672772] +07:42:14 [ 12] [ 6] [074210] +07:42:14 [ 13] [ 4] [0320] +07:42:14 [ 15] [ 4] [0320] +07:42:14 [ 18] [ 4] [6011] +07:42:14 [ 22] [ 3] [900] +07:42:14 [ 25] [ 2] [02] +07:42:14 [ 28] [ 9] [D00002000] +07:42:14 [ 32] [ 6] [621354] +07:42:14 [ 35] [ 27] [1808930800006652=1803500318] +07:42:14 [ 37] [ 12] [507902916464] +07:42:14 [ 41] [ 8] [12001400] +07:42:14 [ 42] [ 15] [NATIVE ] +07:42:14 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +07:42:14 [ 49] [ 3] [418] +07:42:14 [ 52] [ 16] [2C70AB078D558989] +07:42:14 ============================================================================ +07:42:14 + + +waiting on router queue for slot.... +07:42:14 Sending to : +07:42:14 ============================================================================ +07:42:14 Sending to : +07:42:14 ============================================================================ +07:42:14 ============================================================================ +07:42:14 Slot Id : <371> +07:42:14 Transaction Type : REQUEST +07:42:14 Received From : +07:42:14 ============================================================================ +07:42:14 FNo. Len. Field Value +07:42:14 ============================================================================ +07:42:14 [ 1] [ 4] [0200] +07:42:14 [ 2] [ 16] [1808930800006652] +07:42:14 [ 3] [ 6] [011000] +07:42:14 [ 4] [ 12] [000020000000] +07:42:14 [ 7] [ 10] [0320074210] +07:42:14 [ 11] [ 6] [672772] +07:42:14 [ 12] [ 6] [074210] +07:42:14 [ 13] [ 4] [0320] +07:42:14 [ 15] [ 4] [0320] +07:42:14 [ 18] [ 4] [6011] +07:42:14 [ 22] [ 3] [900] +07:42:14 [ 25] [ 2] [02] +07:42:14 [ 28] [ 9] [D00002000] +07:42:14 [ 32] [ 6] [621354] +07:42:14 [ 35] [ 27] [1808930800006652=1803500318] +07:42:14 [ 37] [ 12] [507902916464] +07:42:14 [ 41] [ 8] [12001400] +07:42:14 [ 42] [ 15] [NATIVE ] +07:42:14 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +07:42:14 [ 49] [ 3] [418] +07:42:14 [ 52] [ 16] [2C70AB078D558989] +07:42:14 ============================================================================ +07:42:14 + + +waiting on router queue for slot.... +07:42:14 Sending to : +07:42:14 ============================================================================ +07:42:14 ============================================================================ +07:42:14 Slot Id : <371> +07:42:14 Transaction Type : REQUEST +07:42:14 Received From : +07:42:14 ============================================================================ +07:42:14 FNo. Len. Field Value +07:42:14 ============================================================================ +07:42:14 [ 1] [ 4] [0200] +07:42:14 [ 2] [ 16] [1808930800006652] +07:42:14 [ 3] [ 6] [011000] +07:42:14 [ 4] [ 12] [000020000000] +07:42:14 [ 7] [ 10] [0320074210] +07:42:14 [ 11] [ 6] [672772] +07:42:14 [ 12] [ 6] [074210] +07:42:14 [ 13] [ 4] [0320] +07:42:14 [ 15] [ 4] [0320] +07:42:14 [ 18] [ 4] [6011] +07:42:14 [ 22] [ 3] [900] +07:42:14 [ 25] [ 2] [02] +07:42:14 [ 28] [ 9] [D00002000] +07:42:14 [ 32] [ 6] [621354] +07:42:14 [ 35] [ 27] [1808930800006652=1803500318] +07:42:14 [ 37] [ 12] [507902916464] +07:42:14 [ 41] [ 8] [12001400] +07:42:14 [ 42] [ 15] [NATIVE ] +07:42:14 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +07:42:14 [ 49] [ 3] [418] +07:42:14 [ 52] [ 16] [3D17F981C57DE762] +07:42:14 ============================================================================ +07:42:14 + + +waiting on router queue for slot.... +07:42:14 Sending to : <2> +07:42:14 ============================================================================ +07:42:18 ============================================================================ +07:42:18 Slot Id : <371> +07:42:18 Transaction Type : RESPONSE +07:42:18 Received From : +07:42:18 ============================================================================ +07:42:18 FNo. Len. Field Value +07:42:18 ============================================================================ +07:42:18 [ 1] [ 4] [0210] +07:42:18 [ 2] [ 16] [1808930800006652] +07:42:18 [ 3] [ 6] [011000] +07:42:18 [ 4] [ 12] [000020000000] +07:42:18 [ 6] [ 12] [000020000000] +07:42:18 [ 7] [ 10] [0320074210] +07:42:18 [ 11] [ 6] [672772] +07:42:18 [ 12] [ 6] [074210] +07:42:18 [ 13] [ 4] [0320] +07:42:18 [ 18] [ 4] [6011] +07:42:18 [ 19] [ 3] [418] +07:42:18 [ 22] [ 3] [021] +07:42:18 [ 32] [ 6] [621354] +07:42:18 [ 35] [ 27] [1808930800006652=1803500318] +07:42:18 [ 37] [ 12] [507902916464] +07:42:18 [ 38] [ 6] [672772] +07:42:18 [ 39] [ 2] [00] +07:42:18 [ 41] [ 8] [12001400] +07:42:18 [ 49] [ 3] [418] +07:42:18 [ 52] [ 16] [3D17F981C57DE762] +07:42:18 [ 54] [ 20] [1001418C000123201700] +07:42:18 ============================================================================ +07:42:18 Sending to : +07:42:18 ============================================================================ +07:42:18 + + +waiting on router queue for slot.... +07:42:20 ============================================================================ +07:42:20 Slot Id : <371> +07:42:20 Transaction Type : RESPONSE +07:42:20 Received From : +07:42:20 ============================================================================ +07:42:20 FNo. Len. Field Value +07:42:20 ============================================================================ +07:42:20 [ 1] [ 4] [0210] +07:42:20 [ 2] [ 16] [1808930800006652] +07:42:20 [ 3] [ 6] [011000] +07:42:20 [ 4] [ 12] [000020000000] +07:42:20 [ 6] [ 12] [000020000000] +07:42:20 [ 7] [ 10] [0320074210] +07:42:20 [ 11] [ 6] [672772] +07:42:20 [ 12] [ 6] [074210] +07:42:20 [ 13] [ 4] [0320] +07:42:20 [ 18] [ 4] [6011] +07:42:20 [ 19] [ 3] [418] +07:42:20 [ 22] [ 3] [021] +07:42:20 [ 32] [ 6] [621354] +07:42:20 [ 35] [ 27] [1808930800006652=1803500318] +07:42:20 [ 37] [ 12] [507902916464] +07:42:20 [ 38] [ 6] [672772] +07:42:20 [ 39] [ 2] [00] +07:42:20 [ 41] [ 8] [12001400] +07:42:20 [ 49] [ 3] [418] +07:42:20 [ 52] [ 16] [3D17F981C57DE762] +07:42:20 [ 54] [ 20] [1001418C000123201700] +07:42:20 ============================================================================ +07:42:20 Calculate Source COMM Id = 0 +07:42:20 ============================================================================ +07:42:20 + + +waiting on router queue for slot.... +07:42:23 ============================================================================ +07:42:23 Slot Id : <378> +07:42:23 Transaction Type : REQUEST +07:42:23 Received From : +07:42:23 ============================================================================ +07:42:23 FNo. Len. Field Value +07:42:23 ============================================================================ +07:42:23 [ 1] [ 4] [0200] +07:42:23 [ 2] [ 16] [6213545000137582] +07:42:23 [ 3] [ 6] [010000] +07:42:23 [ 4] [ 12] [000100000000] +07:42:23 [ 7] [ 10] [0320004130] +07:42:23 [ 11] [ 6] [266846] +07:42:23 [ 12] [ 6] [074130] +07:42:23 [ 13] [ 4] [0320] +07:42:23 [ 14] [ 4] [4912] +07:42:23 [ 15] [ 4] [0320] +07:42:23 [ 18] [ 4] [6011] +07:42:23 [ 19] [ 3] [418] +07:42:23 [ 22] [ 3] [021] +07:42:23 [ 25] [ 2] [01] +07:42:23 [ 28] [ 9] [D00002000] +07:42:23 [ 32] [ 6] [180893] +07:42:23 [ 35] [ 32] [6213545000137582=491212013758080] +07:42:23 [ 37] [ 12] [507900266846] +07:42:23 [ 41] [ 8] [0363CPSH] +07:42:23 [ 42] [ 15] [999999 ] +07:42:23 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:42:23 [ 49] [ 3] [418] +07:42:23 [ 52] [ 16] [80300BC67762C746] +07:42:23 ============================================================================ +07:42:23 + + +waiting on router queue for slot.... +07:42:23 Sending to : +07:42:23 ============================================================================ +07:42:23 Sending to : +07:42:23 ============================================================================ +07:42:23 ============================================================================ +07:42:23 Slot Id : <378> +07:42:23 Transaction Type : REQUEST +07:42:23 Received From : +07:42:23 ============================================================================ +07:42:23 FNo. Len. Field Value +07:42:23 ============================================================================ +07:42:23 [ 1] [ 4] [0200] +07:42:23 [ 2] [ 16] [6213545000137582] +07:42:23 [ 3] [ 6] [010000] +07:42:23 [ 4] [ 12] [000100000000] +07:42:23 [ 7] [ 10] [0320004130] +07:42:23 [ 11] [ 6] [266846] +07:42:23 [ 12] [ 6] [074130] +07:42:23 [ 13] [ 4] [0320] +07:42:23 [ 14] [ 4] [4912] +07:42:23 [ 15] [ 4] [0320] +07:42:23 [ 18] [ 4] [6011] +07:42:23 [ 19] [ 3] [418] +07:42:23 [ 22] [ 3] [021] +07:42:23 [ 25] [ 2] [01] +07:42:23 [ 28] [ 9] [D00002000] +07:42:23 [ 32] [ 6] [180893] +07:42:23 [ 35] [ 32] [6213545000137582=491212013758080] +07:42:23 [ 37] [ 12] [507900266846] +07:42:23 [ 41] [ 8] [0363CPSH] +07:42:23 [ 42] [ 15] [999999 ] +07:42:23 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:42:23 [ 49] [ 3] [418] +07:42:23 [ 52] [ 16] [80300BC67762C746] +07:42:23 ============================================================================ +07:42:23 + + +waiting on router queue for slot.... +07:42:23 Sending to : +07:42:23 ============================================================================ +07:42:23 ============================================================================ +07:42:23 Slot Id : <378> +07:42:23 Transaction Type : REQUEST +07:42:23 Received From : +07:42:23 ============================================================================ +07:42:23 FNo. Len. Field Value +07:42:23 ============================================================================ +07:42:23 [ 1] [ 4] [0200] +07:42:23 [ 2] [ 16] [6213545000137582] +07:42:23 [ 3] [ 6] [010000] +07:42:23 [ 4] [ 12] [000100000000] +07:42:23 [ 7] [ 10] [0320004130] +07:42:23 [ 11] [ 6] [266846] +07:42:23 [ 12] [ 6] [074130] +07:42:23 [ 13] [ 4] [0320] +07:42:23 [ 14] [ 4] [4912] +07:42:23 [ 15] [ 4] [0320] +07:42:23 [ 18] [ 4] [6011] +07:42:23 [ 19] [ 3] [418] +07:42:23 [ 22] [ 3] [021] +07:42:23 [ 25] [ 2] [01] +07:42:23 [ 28] [ 9] [D00002000] +07:42:23 [ 32] [ 6] [180893] +07:42:23 [ 35] [ 32] [6213545000137582=491212013758080] +07:42:23 [ 37] [ 12] [507900266846] +07:42:23 [ 41] [ 8] [0363CPSH] +07:42:23 [ 42] [ 15] [999999 ] +07:42:23 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:42:23 [ 49] [ 3] [418] +07:42:23 [ 52] [ 16] [85109449FF033646] +07:42:23 ============================================================================ +07:42:23 + + +waiting on router queue for slot.... +07:42:23 Sending to : <0> +07:42:23 ============================================================================ +07:42:24 ============================================================================ +07:42:24 Slot Id : <378> +07:42:24 Transaction Type : RESPONSE +07:42:24 Received From : +07:42:24 ============================================================================ +07:42:24 FNo. Len. Field Value +07:42:24 ============================================================================ +07:42:24 [ 1] [ 4] [0210] +07:42:24 [ 2] [ 16] [6213545000137582] +07:42:24 [ 3] [ 6] [010000] +07:42:24 [ 4] [ 12] [000100000000] +07:42:24 [ 7] [ 10] [0320004130] +07:42:24 [ 11] [ 6] [266846] +07:42:24 [ 12] [ 6] [074130] +07:42:24 [ 13] [ 4] [0320] +07:42:24 [ 15] [ 4] [0320] +07:42:24 [ 18] [ 4] [6011] +07:42:24 [ 19] [ 3] [418] +07:42:24 [ 32] [ 6] [180893] +07:42:24 [ 35] [ 32] [6213545000137582=491212013758080] +07:42:24 [ 37] [ 12] [507900266846] +07:42:24 [ 38] [ 6] [873934] +07:42:24 [ 39] [ 2] [00] +07:42:24 [ 41] [ 8] [0363CPSH] +07:42:24 [ 49] [ 3] [418] +07:42:24 [ 54] [ 40] [0001418C0000095117940002418C000009511794] +07:42:24 ============================================================================ +07:42:24 Sending to : +07:42:24 ============================================================================ +07:42:24 + + +waiting on router queue for slot.... +07:42:25 ============================================================================ +07:42:25 Slot Id : <378> +07:42:25 Transaction Type : RESPONSE +07:42:25 Received From : +07:42:25 ============================================================================ +07:42:25 FNo. Len. Field Value +07:42:25 ============================================================================ +07:42:25 [ 1] [ 4] [0210] +07:42:25 [ 2] [ 16] [6213545000137582] +07:42:25 [ 3] [ 6] [010000] +07:42:25 [ 4] [ 12] [000100000000] +07:42:25 [ 7] [ 10] [0320004130] +07:42:25 [ 11] [ 6] [266846] +07:42:25 [ 12] [ 6] [074130] +07:42:25 [ 13] [ 4] [0320] +07:42:25 [ 15] [ 4] [0320] +07:42:25 [ 18] [ 4] [6011] +07:42:25 [ 19] [ 3] [418] +07:42:25 [ 32] [ 6] [180893] +07:42:25 [ 35] [ 32] [6213545000137582=491212013758080] +07:42:25 [ 37] [ 12] [507900266846] +07:42:25 [ 38] [ 6] [873934] +07:42:25 [ 39] [ 2] [00] +07:42:25 [ 41] [ 8] [0363CPSH] +07:42:25 [ 49] [ 3] [418] +07:42:25 [ 54] [ 40] [0001418C0000095117940002418C000009511794] +07:42:25 ============================================================================ +07:42:25 Calculate Source COMM Id = 2 +07:42:25 ============================================================================ +07:42:25 + + +waiting on router queue for slot.... +07:42:30 ============================================================================ +07:42:30 Slot Id : <324> +07:42:30 Transaction Type : REQUEST +07:42:30 Received From : +07:42:30 ============================================================================ +07:42:30 FNo. Len. Field Value +07:42:30 ============================================================================ +07:42:30 [ 1] [ 4] [0800] +07:42:30 [ 2] [ 5] [02531] +07:42:30 [ 3] [ 6] [579078] +07:42:30 [ 7] [ 10] [0320004230] +07:42:30 [ 11] [ 6] [806859] +07:42:30 [ 15] [ 10] [0320004230] +07:42:30 [ 37] [ 11] [57907806859] +07:42:30 [ 70] [ 3] [001] +07:42:30 ============================================================================ +07:42:30 + + +waiting on router queue for slot.... +07:42:30 ============================================================================ +07:42:30 Slot Id : <324> +07:42:30 Transaction Type : RESPONSE +07:42:30 Received From : +07:42:30 ============================================================================ +07:42:30 FNo. Len. Field Value +07:42:30 ============================================================================ +07:42:30 [ 1] [ 4] [0810] +07:42:30 [ 7] [ 10] [0320004230] +07:42:30 [ 11] [ 6] [806859] +07:42:30 [ 15] [ 4] [0320] +07:42:30 [ 37] [ 12] [57907806859] +07:42:30 [ 39] [ 2] [00] +07:42:30 [ 70] [ 3] [001] +07:42:30 ============================================================================ +07:42:30 Sending to : +07:42:30 ============================================================================ +07:42:30 + + +waiting on router queue for slot.... +07:42:38 ============================================================================ +07:42:38 Slot Id : <373> +07:42:38 Transaction Type : REQUEST +07:42:38 Received From : +07:42:38 ============================================================================ +07:42:38 FNo. Len. Field Value +07:42:38 ============================================================================ +07:42:38 [ 1] [ 4] [0800] +07:42:38 [ 7] [ 10] [0320145428] +07:42:38 [ 11] [ 6] [075428] +07:42:38 [ 37] [ 12] [57907075428] +07:42:38 [ 70] [ 3] [301] +07:42:38 ============================================================================ +07:42:38 + + +waiting on router queue for slot.... +07:42:38 Sending to : +07:42:38 ============================================================================ +07:42:38 ============================================================================ +07:42:38 Slot Id : <373> +07:42:38 Transaction Type : RESPONSE +07:42:38 Received From : +07:42:38 ============================================================================ +07:42:38 FNo. Len. Field Value +07:42:38 ============================================================================ +07:42:38 [ 1] [ 4] [0810] +07:42:38 [ 7] [ 10] [0320145428] +07:42:38 [ 11] [ 6] [075428] +07:42:38 [ 37] [ 12] [579070754280] +07:42:38 [ 39] [ 2] [00] +07:42:38 [ 70] [ 3] [810] +07:42:38 ============================================================================ +07:42:38 Calculate Source COMM Id = 6 +07:42:38 ============================================================================ +07:42:38 + + +waiting on router queue for slot.... +07:42:40 ============================================================================ +07:42:40 Slot Id : <353> +07:42:40 Transaction Type : REQUEST +07:42:40 Received From : +07:42:40 ============================================================================ +07:42:40 FNo. Len. Field Value +07:42:40 ============================================================================ +07:42:40 [ 1] [ 4] [0200] +07:42:40 [ 2] [ 16] [1808930200021731] +07:42:40 [ 3] [ 6] [011000] +07:42:40 [ 4] [ 12] [000030000000] +07:42:40 [ 7] [ 10] [0320074236] +07:42:40 [ 11] [ 6] [672856] +07:42:40 [ 12] [ 6] [074236] +07:42:40 [ 13] [ 4] [0320] +07:42:40 [ 15] [ 4] [0320] +07:42:40 [ 18] [ 4] [6011] +07:42:40 [ 22] [ 3] [900] +07:42:40 [ 25] [ 2] [02] +07:42:40 [ 28] [ 9] [D00002000] +07:42:40 [ 32] [ 6] [621354] +07:42:40 [ 35] [ 27] [1808930200021731=1803500914] +07:42:40 [ 37] [ 12] [507903975089] +07:42:40 [ 41] [ 8] [01011300] +07:42:40 [ 42] [ 15] [NATIVE ] +07:42:40 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:42:40 [ 49] [ 3] [418] +07:42:40 [ 52] [ 16] [CC36D6E671A2401B] +07:42:40 ============================================================================ +07:42:40 + + +waiting on router queue for slot.... +07:42:40 Sending to : +07:42:40 ============================================================================ +07:42:40 Sending to : +07:42:40 ============================================================================ +07:42:40 ============================================================================ +07:42:40 Slot Id : <353> +07:42:40 Transaction Type : REQUEST +07:42:40 Received From : +07:42:40 ============================================================================ +07:42:40 FNo. Len. Field Value +07:42:40 ============================================================================ +07:42:40 [ 1] [ 4] [0200] +07:42:40 [ 2] [ 16] [1808930200021731] +07:42:40 [ 3] [ 6] [011000] +07:42:40 [ 4] [ 12] [000030000000] +07:42:40 [ 7] [ 10] [0320074236] +07:42:40 [ 11] [ 6] [672856] +07:42:40 [ 12] [ 6] [074236] +07:42:40 [ 13] [ 4] [0320] +07:42:40 [ 15] [ 4] [0320] +07:42:40 [ 18] [ 4] [6011] +07:42:40 [ 22] [ 3] [900] +07:42:40 [ 25] [ 2] [02] +07:42:40 [ 28] [ 9] [D00002000] +07:42:40 [ 32] [ 6] [621354] +07:42:40 [ 35] [ 27] [1808930200021731=1803500914] +07:42:40 [ 37] [ 12] [507903975089] +07:42:40 [ 41] [ 8] [01011300] +07:42:40 [ 42] [ 15] [NATIVE ] +07:42:40 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:42:40 [ 49] [ 3] [418] +07:42:40 [ 52] [ 16] [CC36D6E671A2401B] +07:42:40 ============================================================================ +07:42:40 + + +waiting on router queue for slot.... +07:42:40 Sending to : +07:42:40 ============================================================================ +07:42:40 ============================================================================ +07:42:40 Slot Id : <353> +07:42:40 Transaction Type : REQUEST +07:42:40 Received From : +07:42:40 ============================================================================ +07:42:40 FNo. Len. Field Value +07:42:40 ============================================================================ +07:42:40 [ 1] [ 4] [0200] +07:42:40 [ 2] [ 16] [1808930200021731] +07:42:40 [ 3] [ 6] [011000] +07:42:40 [ 4] [ 12] [000030000000] +07:42:40 [ 7] [ 10] [0320074236] +07:42:40 [ 11] [ 6] [672856] +07:42:40 [ 12] [ 6] [074236] +07:42:40 [ 13] [ 4] [0320] +07:42:40 [ 15] [ 4] [0320] +07:42:40 [ 18] [ 4] [6011] +07:42:40 [ 22] [ 3] [900] +07:42:40 [ 25] [ 2] [02] +07:42:40 [ 28] [ 9] [D00002000] +07:42:40 [ 32] [ 6] [621354] +07:42:40 [ 35] [ 27] [1808930200021731=1803500914] +07:42:40 [ 37] [ 12] [507903975089] +07:42:40 [ 41] [ 8] [01011300] +07:42:40 [ 42] [ 15] [NATIVE ] +07:42:40 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:42:40 [ 49] [ 3] [418] +07:42:40 [ 52] [ 16] [BAE46268B39E4DA9] +07:42:40 ============================================================================ +07:42:40 + + +waiting on router queue for slot.... +07:42:40 Sending to : <2> +07:42:40 ============================================================================ +07:42:44 ============================================================================ +07:42:44 Slot Id : <355> +07:42:44 Transaction Type : REQUEST +07:42:44 Received From : +07:42:44 ============================================================================ +07:42:44 FNo. Len. Field Value +07:42:44 ============================================================================ +07:42:44 [ 1] [ 4] [0200] +07:42:44 [ 2] [ 16] [6688990108425404] +07:42:44 [ 3] [ 6] [011000] +07:42:44 [ 4] [ 12] [000100000000] +07:42:44 [ 7] [ 10] [0320074241] +07:42:44 [ 11] [ 6] [672872] +07:42:44 [ 12] [ 6] [074241] +07:42:44 [ 13] [ 4] [0320] +07:42:44 [ 15] [ 4] [0320] +07:42:44 [ 18] [ 4] [6011] +07:42:44 [ 22] [ 3] [900] +07:42:44 [ 25] [ 2] [02] +07:42:44 [ 28] [ 9] [D00002000] +07:42:44 [ 32] [ 6] [621354] +07:42:44 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:42:44 [ 37] [ 12] [507903499453] +07:42:44 [ 41] [ 8] [06002200] +07:42:44 [ 42] [ 15] [NATIVE ] +07:42:44 [ 43] [ 40] [Beng Market Beng LAO] +07:42:44 [ 49] [ 3] [418] +07:42:44 [ 52] [ 16] [193DDE6CEF0DA63D] +07:42:44 ============================================================================ +07:42:44 + + +waiting on router queue for slot.... +07:42:44 Sending to : +07:42:44 ============================================================================ +07:42:44 Sending to : +07:42:44 ============================================================================ +07:42:44 ============================================================================ +07:42:44 Slot Id : <353> +07:42:44 Transaction Type : RESPONSE +07:42:44 Received From : +07:42:44 ============================================================================ +07:42:44 FNo. Len. Field Value +07:42:44 ============================================================================ +07:42:44 [ 1] [ 4] [0210] +07:42:44 [ 2] [ 16] [1808930200021731] +07:42:44 [ 3] [ 6] [011000] +07:42:44 [ 4] [ 12] [000030000000] +07:42:44 [ 6] [ 12] [000030000000] +07:42:44 [ 7] [ 10] [0320074236] +07:42:44 [ 11] [ 6] [672856] +07:42:44 [ 12] [ 6] [074236] +07:42:44 [ 13] [ 4] [0320] +07:42:44 [ 18] [ 4] [6011] +07:42:44 [ 19] [ 3] [418] +07:42:44 [ 22] [ 3] [021] +07:42:44 [ 32] [ 6] [621354] +07:42:44 [ 35] [ 27] [1808930200021731=1803500914] +07:42:44 [ 37] [ 12] [507903975089] +07:42:44 [ 38] [ 6] [672856] +07:42:44 [ 39] [ 2] [00] +07:42:44 [ 41] [ 8] [01011300] +07:42:44 [ 49] [ 3] [418] +07:42:44 [ 52] [ 16] [BAE46268B39E4DA9] +07:42:44 [ 54] [ 20] [1001418C000100667800] +07:42:44 ============================================================================ +07:42:44 Sending to : +07:42:44 ============================================================================ +07:42:44 + + +waiting on router queue for slot.... +07:42:45 ============================================================================ +07:42:45 Slot Id : <355> +07:42:45 Transaction Type : REQUEST +07:42:45 Received From : +07:42:45 ============================================================================ +07:42:45 FNo. Len. Field Value +07:42:45 ============================================================================ +07:42:45 [ 1] [ 4] [0200] +07:42:45 [ 2] [ 16] [6688990108425404] +07:42:45 [ 3] [ 6] [011000] +07:42:45 [ 4] [ 12] [000100000000] +07:42:45 [ 7] [ 10] [0320074241] +07:42:45 [ 11] [ 6] [672872] +07:42:45 [ 12] [ 6] [074241] +07:42:45 [ 13] [ 4] [0320] +07:42:45 [ 15] [ 4] [0320] +07:42:45 [ 18] [ 4] [6011] +07:42:45 [ 22] [ 3] [900] +07:42:45 [ 25] [ 2] [02] +07:42:45 [ 28] [ 9] [D00002000] +07:42:45 [ 32] [ 6] [621354] +07:42:45 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:42:45 [ 37] [ 12] [507903499453] +07:42:45 [ 41] [ 8] [06002200] +07:42:45 [ 42] [ 15] [NATIVE ] +07:42:45 [ 43] [ 40] [Beng Market Beng LAO] +07:42:45 [ 49] [ 3] [418] +07:42:45 [ 52] [ 16] [193DDE6CEF0DA63D] +07:42:45 ============================================================================ +07:42:45 + + +waiting on router queue for slot.... +07:42:45 Sending to : +07:42:45 ============================================================================ +07:42:45 ============================================================================ +07:42:45 Slot Id : <355> +07:42:45 Transaction Type : REQUEST +07:42:45 Received From : +07:42:45 ============================================================================ +07:42:45 FNo. Len. Field Value +07:42:45 ============================================================================ +07:42:45 [ 1] [ 4] [0200] +07:42:45 [ 2] [ 16] [6688990108425404] +07:42:45 [ 3] [ 6] [011000] +07:42:45 [ 4] [ 12] [000100000000] +07:42:45 [ 7] [ 10] [0320074241] +07:42:45 [ 11] [ 6] [672872] +07:42:45 [ 12] [ 6] [074241] +07:42:45 [ 13] [ 4] [0320] +07:42:45 [ 15] [ 4] [0320] +07:42:45 [ 18] [ 4] [6011] +07:42:45 [ 22] [ 3] [900] +07:42:45 [ 25] [ 2] [02] +07:42:45 [ 28] [ 9] [D00002000] +07:42:45 [ 32] [ 6] [621354] +07:42:45 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:42:45 [ 37] [ 12] [507903499453] +07:42:45 [ 41] [ 8] [06002200] +07:42:45 [ 42] [ 15] [NATIVE ] +07:42:45 [ 43] [ 40] [Beng Market Beng LAO] +07:42:45 [ 49] [ 3] [418] +07:42:45 [ 52] [ 16] [14ECBF85E8FE7FCA] +07:42:45 ============================================================================ +07:42:45 + + +waiting on router queue for slot.... +07:42:45 Sending to : <4> +07:42:45 ============================================================================ +07:42:46 ============================================================================ +07:42:46 Slot Id : <355> +07:42:46 Transaction Type : RESPONSE +07:42:46 Received From : +07:42:46 ============================================================================ +07:42:46 FNo. Len. Field Value +07:42:46 ============================================================================ +07:42:46 [ 1] [ 4] [0210] +07:42:46 [ 2] [ 16] [6688990108425404] +07:42:46 [ 3] [ 6] [011000] +07:42:46 [ 4] [ 12] [000100000000] +07:42:46 [ 11] [ 6] [672872] +07:42:46 [ 12] [ 6] [074241] +07:42:46 [ 15] [ 4] [0320] +07:42:46 [ 18] [ 4] [6011] +07:42:46 [ 32] [ 6] [621354] +07:42:46 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:42:46 [ 37] [ 12] [507903499453] +07:42:46 [ 38] [ 6] [856795] +07:42:46 [ 39] [ 2] [00] +07:42:46 [ 41] [ 8] [06002200] +07:42:46 [ 49] [ 3] [418] +07:42:46 [ 54] [ 20] [1002418C000347622755] +07:42:46 ============================================================================ +07:42:46 Sending to : +07:42:46 ============================================================================ +07:42:46 + + +waiting on router queue for slot.... +07:42:46 ============================================================================ +07:42:46 Slot Id : <353> +07:42:46 Transaction Type : RESPONSE +07:42:46 Received From : +07:42:46 ============================================================================ +07:42:46 FNo. Len. Field Value +07:42:46 ============================================================================ +07:42:46 [ 1] [ 4] [0210] +07:42:46 [ 2] [ 16] [1808930200021731] +07:42:46 [ 3] [ 6] [011000] +07:42:46 [ 4] [ 12] [000030000000] +07:42:46 [ 6] [ 12] [000030000000] +07:42:46 [ 7] [ 10] [0320074236] +07:42:46 [ 11] [ 6] [672856] +07:42:46 [ 12] [ 6] [074236] +07:42:46 [ 13] [ 4] [0320] +07:42:46 [ 18] [ 4] [6011] +07:42:46 [ 19] [ 3] [418] +07:42:46 [ 22] [ 3] [021] +07:42:46 [ 32] [ 6] [621354] +07:42:46 [ 35] [ 27] [1808930200021731=1803500914] +07:42:46 [ 37] [ 12] [507903975089] +07:42:46 [ 38] [ 6] [672856] +07:42:46 [ 39] [ 2] [00] +07:42:46 [ 41] [ 8] [01011300] +07:42:46 [ 49] [ 3] [418] +07:42:46 [ 52] [ 16] [BAE46268B39E4DA9] +07:42:46 [ 54] [ 20] [1001418C000100667800] +07:42:46 ============================================================================ +07:42:46 Calculate Source COMM Id = 0 +07:42:46 ============================================================================ +07:42:46 + + +waiting on router queue for slot.... +07:42:48 ============================================================================ +07:42:48 Slot Id : <355> +07:42:48 Transaction Type : RESPONSE +07:42:48 Received From : +07:42:48 ============================================================================ +07:42:48 FNo. Len. Field Value +07:42:48 ============================================================================ +07:42:48 [ 1] [ 4] [0210] +07:42:48 [ 2] [ 16] [6688990108425404] +07:42:48 [ 3] [ 6] [011000] +07:42:48 [ 4] [ 12] [000100000000] +07:42:48 [ 11] [ 6] [672872] +07:42:48 [ 12] [ 6] [074241] +07:42:48 [ 15] [ 4] [0320] +07:42:48 [ 18] [ 4] [6011] +07:42:48 [ 32] [ 6] [621354] +07:42:48 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:42:48 [ 37] [ 12] [507903499453] +07:42:48 [ 38] [ 6] [856795] +07:42:48 [ 39] [ 2] [00] +07:42:48 [ 41] [ 8] [06002200] +07:42:48 [ 49] [ 3] [418] +07:42:48 [ 54] [ 20] [1002418C000347622755] +07:42:48 ============================================================================ +07:42:48 Calculate Source COMM Id = 0 +07:42:48 ============================================================================ +07:42:48 + + +waiting on router queue for slot.... +07:42:51 ============================================================================ +07:42:51 Slot Id : <382> +07:42:51 Transaction Type : REQUEST +07:42:51 Received From : +07:42:51 ============================================================================ +07:42:51 FNo. Len. Field Value +07:42:51 ============================================================================ +07:42:51 [ 1] [ 4] [0800] +07:42:51 [ 7] [ 10] [0320124159] +07:42:51 [ 11] [ 6] [155229] +07:42:51 [ 70] [ 3] [301] +07:42:51 ============================================================================ +07:42:51 + + +waiting on router queue for slot.... +07:42:51 Sending to : +07:42:51 ============================================================================ +07:42:51 ============================================================================ +07:42:51 Slot Id : <382> +07:42:51 Transaction Type : RESPONSE +07:42:51 Received From : +07:42:51 ============================================================================ +07:42:51 FNo. Len. Field Value +07:42:51 ============================================================================ +07:42:51 [ 1] [ 4] [0810] +07:42:51 [ 7] [ 10] [0320124159] +07:42:51 [ 11] [ 6] [155229] +07:42:51 [ 39] [ 2] [00] +07:42:51 [ 70] [ 3] [301] +07:42:51 ============================================================================ +07:42:51 Calculate Source COMM Id = 2 +07:42:51 ============================================================================ +07:42:51 + + +waiting on router queue for slot.... +07:43:01 ============================================================================ +07:43:01 Slot Id : <358> +07:43:01 Transaction Type : REQUEST +07:43:01 Received From : +07:43:01 ============================================================================ +07:43:01 FNo. Len. Field Value +07:43:01 ============================================================================ +07:43:01 [ 1] [ 4] [0200] +07:43:01 [ 2] [ 16] [6213545000786354] +07:43:01 [ 3] [ 6] [010000] +07:43:01 [ 4] [ 12] [000050000000] +07:43:01 [ 7] [ 10] [0320004209] +07:43:01 [ 11] [ 6] [266851] +07:43:01 [ 12] [ 6] [074209] +07:43:01 [ 13] [ 4] [0320] +07:43:01 [ 14] [ 4] [4912] +07:43:01 [ 15] [ 4] [0320] +07:43:01 [ 18] [ 4] [6011] +07:43:01 [ 19] [ 3] [418] +07:43:01 [ 22] [ 3] [021] +07:43:01 [ 25] [ 2] [01] +07:43:01 [ 28] [ 9] [D00002000] +07:43:01 [ 32] [ 6] [180893] +07:43:01 [ 35] [ 32] [6213545000786354=491212018635979] +07:43:01 [ 37] [ 12] [507900266851] +07:43:01 [ 41] [ 8] [0525XYBT] +07:43:01 [ 42] [ 15] [999999 ] +07:43:01 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:43:01 [ 49] [ 3] [418] +07:43:01 [ 52] [ 16] [9E3A124C621BA858] +07:43:01 ============================================================================ +07:43:01 + + +waiting on router queue for slot.... +07:43:01 Sending to : +07:43:01 ============================================================================ +07:43:01 Sending to : +07:43:01 ============================================================================ +07:43:02 ============================================================================ +07:43:02 Slot Id : <363> +07:43:02 Transaction Type : REQUEST +07:43:02 Received From : +07:43:02 ============================================================================ +07:43:02 FNo. Len. Field Value +07:43:02 ============================================================================ +07:43:02 [ 1] [ 4] [0800] +07:43:02 [ 7] [ 10] [0320124210] +07:43:02 [ 11] [ 6] [155230] +07:43:02 [ 70] [ 3] [301] +07:43:02 ============================================================================ +07:43:02 + + +waiting on router queue for slot.... +07:43:02 Sending to : +07:43:02 ============================================================================ +07:43:02 ============================================================================ +07:43:02 Slot Id : <363> +07:43:02 Transaction Type : RESPONSE +07:43:02 Received From : +07:43:02 ============================================================================ +07:43:02 FNo. Len. Field Value +07:43:02 ============================================================================ +07:43:02 [ 1] [ 4] [0810] +07:43:02 [ 7] [ 10] [0320124210] +07:43:02 [ 11] [ 6] [155230] +07:43:02 [ 39] [ 2] [00] +07:43:02 [ 70] [ 3] [301] +07:43:02 ============================================================================ +07:43:02 Calculate Source COMM Id = 2 +07:43:02 ============================================================================ +07:43:02 + + +waiting on router queue for slot.... +07:43:02 ============================================================================ +07:43:02 Slot Id : <358> +07:43:02 Transaction Type : REQUEST +07:43:02 Received From : +07:43:02 ============================================================================ +07:43:02 FNo. Len. Field Value +07:43:02 ============================================================================ +07:43:02 [ 1] [ 4] [0200] +07:43:02 [ 2] [ 16] [6213545000786354] +07:43:02 [ 3] [ 6] [010000] +07:43:02 [ 4] [ 12] [000050000000] +07:43:02 [ 7] [ 10] [0320004209] +07:43:02 [ 11] [ 6] [266851] +07:43:02 [ 12] [ 6] [074209] +07:43:02 [ 13] [ 4] [0320] +07:43:02 [ 14] [ 4] [4912] +07:43:02 [ 15] [ 4] [0320] +07:43:02 [ 18] [ 4] [6011] +07:43:02 [ 19] [ 3] [418] +07:43:02 [ 22] [ 3] [021] +07:43:02 [ 25] [ 2] [01] +07:43:02 [ 28] [ 9] [D00002000] +07:43:02 [ 32] [ 6] [180893] +07:43:02 [ 35] [ 32] [6213545000786354=491212018635979] +07:43:02 [ 37] [ 12] [507900266851] +07:43:02 [ 41] [ 8] [0525XYBT] +07:43:02 [ 42] [ 15] [999999 ] +07:43:02 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:43:02 [ 49] [ 3] [418] +07:43:02 [ 52] [ 16] [9E3A124C621BA858] +07:43:02 ============================================================================ +07:43:02 + + +waiting on router queue for slot.... +07:43:02 Sending to : +07:43:02 ============================================================================ +07:43:02 ============================================================================ +07:43:02 Slot Id : <358> +07:43:02 Transaction Type : REQUEST +07:43:02 Received From : +07:43:02 ============================================================================ +07:43:02 FNo. Len. Field Value +07:43:02 ============================================================================ +07:43:02 [ 1] [ 4] [0200] +07:43:02 [ 2] [ 16] [6213545000786354] +07:43:02 [ 3] [ 6] [010000] +07:43:02 [ 4] [ 12] [000050000000] +07:43:02 [ 7] [ 10] [0320004209] +07:43:02 [ 11] [ 6] [266851] +07:43:02 [ 12] [ 6] [074209] +07:43:02 [ 13] [ 4] [0320] +07:43:02 [ 14] [ 4] [4912] +07:43:02 [ 15] [ 4] [0320] +07:43:02 [ 18] [ 4] [6011] +07:43:02 [ 19] [ 3] [418] +07:43:02 [ 22] [ 3] [021] +07:43:02 [ 25] [ 2] [01] +07:43:02 [ 28] [ 9] [D00002000] +07:43:02 [ 32] [ 6] [180893] +07:43:02 [ 35] [ 32] [6213545000786354=491212018635979] +07:43:02 [ 37] [ 12] [507900266851] +07:43:02 [ 41] [ 8] [0525XYBT] +07:43:02 [ 42] [ 15] [999999 ] +07:43:02 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:43:02 [ 49] [ 3] [418] +07:43:02 [ 52] [ 16] [D79E44AF32633FFD] +07:43:02 ============================================================================ +07:43:02 + + +waiting on router queue for slot.... +07:43:02 Sending to : <0> +07:43:02 ============================================================================ +07:43:02 ============================================================================ +07:43:02 Slot Id : <358> +07:43:02 Transaction Type : RESPONSE +07:43:02 Received From : +07:43:02 ============================================================================ +07:43:02 FNo. Len. Field Value +07:43:02 ============================================================================ +07:43:02 [ 1] [ 4] [0210] +07:43:02 [ 2] [ 16] [6213545000786354] +07:43:02 [ 3] [ 6] [010000] +07:43:02 [ 4] [ 12] [000050000000] +07:43:02 [ 7] [ 10] [0320004209] +07:43:02 [ 11] [ 6] [266851] +07:43:02 [ 12] [ 6] [074209] +07:43:02 [ 13] [ 4] [0320] +07:43:02 [ 15] [ 4] [0320] +07:43:02 [ 18] [ 4] [6011] +07:43:02 [ 19] [ 3] [418] +07:43:02 [ 32] [ 6] [180893] +07:43:02 [ 35] [ 32] [6213545000786354=491212018635979] +07:43:02 [ 37] [ 12] [507900266851] +07:43:02 [ 38] [ 6] [380632] +07:43:02 [ 39] [ 2] [00] +07:43:02 [ 41] [ 8] [0525XYBT] +07:43:02 [ 49] [ 3] [418] +07:43:02 [ 54] [ 40] [0001418C0000381993240002418C000038199324] +07:43:02 ============================================================================ +07:43:02 Sending to : +07:43:02 ============================================================================ +07:43:02 + + +waiting on router queue for slot.... +07:43:04 ============================================================================ +07:43:04 Slot Id : <358> +07:43:04 Transaction Type : RESPONSE +07:43:04 Received From : +07:43:04 ============================================================================ +07:43:04 FNo. Len. Field Value +07:43:04 ============================================================================ +07:43:04 [ 1] [ 4] [0210] +07:43:04 [ 2] [ 16] [6213545000786354] +07:43:04 [ 3] [ 6] [010000] +07:43:04 [ 4] [ 12] [000050000000] +07:43:04 [ 7] [ 10] [0320004209] +07:43:04 [ 11] [ 6] [266851] +07:43:04 [ 12] [ 6] [074209] +07:43:04 [ 13] [ 4] [0320] +07:43:04 [ 15] [ 4] [0320] +07:43:04 [ 18] [ 4] [6011] +07:43:04 [ 19] [ 3] [418] +07:43:04 [ 32] [ 6] [180893] +07:43:04 [ 35] [ 32] [6213545000786354=491212018635979] +07:43:04 [ 37] [ 12] [507900266851] +07:43:04 [ 38] [ 6] [380632] +07:43:04 [ 39] [ 2] [00] +07:43:04 [ 41] [ 8] [0525XYBT] +07:43:04 [ 49] [ 3] [418] +07:43:04 [ 54] [ 40] [0001418C0000381993240002418C000038199324] +07:43:04 ============================================================================ +07:43:04 Calculate Source COMM Id = 2 +07:43:04 ============================================================================ +07:43:04 + + +waiting on router queue for slot.... +07:43:17 ============================================================================ +07:43:17 Slot Id : <370> +07:43:17 Transaction Type : REQUEST +07:43:17 Received From : +07:43:17 ============================================================================ +07:43:17 FNo. Len. Field Value +07:43:17 ============================================================================ +07:43:17 [ 1] [ 4] [0800] +07:43:17 [ 7] [ 10] [0320124226] +07:43:17 [ 11] [ 6] [155231] +07:43:17 [ 70] [ 3] [301] +07:43:17 ============================================================================ +07:43:17 + + +waiting on router queue for slot.... +07:43:17 Sending to : +07:43:17 ============================================================================ +07:43:17 ============================================================================ +07:43:17 Slot Id : <370> +07:43:17 Transaction Type : RESPONSE +07:43:17 Received From : +07:43:17 ============================================================================ +07:43:17 FNo. Len. Field Value +07:43:17 ============================================================================ +07:43:17 [ 1] [ 4] [0810] +07:43:17 [ 7] [ 10] [0320124226] +07:43:17 [ 11] [ 6] [155231] +07:43:17 [ 39] [ 2] [00] +07:43:17 [ 70] [ 3] [301] +07:43:17 ============================================================================ +07:43:17 Calculate Source COMM Id = 2 +07:43:17 ============================================================================ +07:43:17 + + +waiting on router queue for slot.... +07:43:25 ============================================================================ +07:43:25 Slot Id : <338> +07:43:25 Transaction Type : REQUEST +07:43:25 Received From : +07:43:25 ============================================================================ +07:43:25 FNo. Len. Field Value +07:43:25 ============================================================================ +07:43:25 [ 1] [ 4] [0200] +07:43:25 [ 2] [ 16] [6213545000362446] +07:43:25 [ 3] [ 6] [301000] +07:43:25 [ 4] [ 12] [000000000000] +07:43:25 [ 7] [ 10] [0320074116] +07:43:25 [ 11] [ 6] [930766] +07:43:25 [ 12] [ 6] [074116] +07:43:25 [ 13] [ 4] [0320] +07:43:25 [ 15] [ 4] [0320] +07:43:25 [ 18] [ 4] [6011] +07:43:25 [ 19] [ 3] [418] +07:43:25 [ 22] [ 3] [021] +07:43:25 [ 25] [ 2] [01] +07:43:25 [ 28] [ 9] [D00000000] +07:43:25 [ 32] [ 6] [668899] +07:43:25 [ 35] [ 32] [6213545000362446=491212016244353] +07:43:25 [ 37] [ 12] [507902161160] +07:43:25 [ 41] [ 8] [03020026] +07:43:25 [ 42] [ 15] [APT ] +07:43:25 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +07:43:25 [ 49] [ 3] [418] +07:43:25 [ 52] [ 16] [27EB8E5BCD8F1D45] +07:43:25 ============================================================================ +07:43:25 + + +waiting on router queue for slot.... +07:43:25 Sending to : +07:43:25 ============================================================================ +07:43:25 Sending to : +07:43:25 ============================================================================ +07:43:25 ============================================================================ +07:43:25 Slot Id : <338> +07:43:25 Transaction Type : REQUEST +07:43:25 Received From : +07:43:25 ============================================================================ +07:43:25 FNo. Len. Field Value +07:43:25 ============================================================================ +07:43:25 [ 1] [ 4] [0200] +07:43:25 [ 2] [ 16] [6213545000362446] +07:43:25 [ 3] [ 6] [301000] +07:43:25 [ 4] [ 12] [000000000000] +07:43:25 [ 7] [ 10] [0320074116] +07:43:25 [ 11] [ 6] [930766] +07:43:25 [ 12] [ 6] [074116] +07:43:25 [ 13] [ 4] [0320] +07:43:25 [ 15] [ 4] [0320] +07:43:25 [ 18] [ 4] [6011] +07:43:25 [ 19] [ 3] [418] +07:43:25 [ 22] [ 3] [021] +07:43:25 [ 25] [ 2] [01] +07:43:25 [ 28] [ 9] [D00000000] +07:43:25 [ 32] [ 6] [668899] +07:43:25 [ 35] [ 32] [6213545000362446=491212016244353] +07:43:25 [ 37] [ 12] [507902161160] +07:43:25 [ 41] [ 8] [03020026] +07:43:25 [ 42] [ 15] [APT ] +07:43:25 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +07:43:25 [ 49] [ 3] [418] +07:43:25 [ 52] [ 16] [27EB8E5BCD8F1D45] +07:43:25 ============================================================================ +07:43:25 + + +waiting on router queue for slot.... +07:43:25 Sending to : +07:43:25 ============================================================================ +07:43:25 ============================================================================ +07:43:25 Slot Id : <338> +07:43:25 Transaction Type : REQUEST +07:43:25 Received From : +07:43:25 ============================================================================ +07:43:25 FNo. Len. Field Value +07:43:25 ============================================================================ +07:43:25 [ 1] [ 4] [0200] +07:43:25 [ 2] [ 16] [6213545000362446] +07:43:25 [ 3] [ 6] [301000] +07:43:25 [ 4] [ 12] [000000000000] +07:43:25 [ 7] [ 10] [0320074116] +07:43:25 [ 11] [ 6] [930766] +07:43:25 [ 12] [ 6] [074116] +07:43:25 [ 13] [ 4] [0320] +07:43:25 [ 15] [ 4] [0320] +07:43:25 [ 18] [ 4] [6011] +07:43:25 [ 19] [ 3] [418] +07:43:25 [ 22] [ 3] [021] +07:43:25 [ 25] [ 2] [01] +07:43:25 [ 28] [ 9] [D00000000] +07:43:25 [ 32] [ 6] [668899] +07:43:25 [ 35] [ 32] [6213545000362446=491212016244353] +07:43:25 [ 37] [ 12] [507902161160] +07:43:25 [ 41] [ 8] [03020026] +07:43:25 [ 42] [ 15] [APT ] +07:43:25 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +07:43:25 [ 49] [ 3] [418] +07:43:25 [ 52] [ 16] [76562E8B74495C1F] +07:43:25 ============================================================================ +07:43:25 + + +waiting on router queue for slot.... +07:43:25 Sending to : <0> +07:43:25 ============================================================================ +07:43:25 ============================================================================ +07:43:25 Slot Id : <338> +07:43:25 Transaction Type : RESPONSE +07:43:25 Received From : +07:43:25 ============================================================================ +07:43:25 FNo. Len. Field Value +07:43:25 ============================================================================ +07:43:25 [ 1] [ 4] [0210] +07:43:25 [ 2] [ 16] [6213545000362446] +07:43:25 [ 3] [ 6] [301000] +07:43:25 [ 4] [ 12] [000000000000] +07:43:25 [ 7] [ 10] [0320074116] +07:43:25 [ 11] [ 6] [930766] +07:43:25 [ 12] [ 6] [074116] +07:43:25 [ 13] [ 4] [0320] +07:43:25 [ 15] [ 4] [0320] +07:43:25 [ 18] [ 4] [6011] +07:43:25 [ 19] [ 3] [418] +07:43:25 [ 32] [ 6] [668899] +07:43:25 [ 35] [ 32] [6213545000362446=491212016244353] +07:43:25 [ 37] [ 12] [507902161160] +07:43:25 [ 38] [ 6] [898051] +07:43:25 [ 39] [ 2] [00] +07:43:25 [ 41] [ 8] [03020026] +07:43:25 [ 49] [ 3] [418] +07:43:25 [ 54] [ 40] [1001418C0000096517521002418C000009651752] +07:43:25 ============================================================================ +07:43:25 Sending to : +07:43:25 ============================================================================ +07:43:25 + + +waiting on router queue for slot.... +07:43:27 ============================================================================ +07:43:27 Slot Id : <338> +07:43:27 Transaction Type : RESPONSE +07:43:27 Received From : +07:43:27 ============================================================================ +07:43:27 FNo. Len. Field Value +07:43:27 ============================================================================ +07:43:27 [ 1] [ 4] [0210] +07:43:27 [ 2] [ 16] [6213545000362446] +07:43:27 [ 3] [ 6] [301000] +07:43:27 [ 4] [ 12] [000000000000] +07:43:27 [ 7] [ 10] [0320074116] +07:43:27 [ 11] [ 6] [930766] +07:43:27 [ 12] [ 6] [074116] +07:43:27 [ 13] [ 4] [0320] +07:43:27 [ 15] [ 4] [0320] +07:43:27 [ 18] [ 4] [6011] +07:43:27 [ 19] [ 3] [418] +07:43:27 [ 32] [ 6] [668899] +07:43:27 [ 35] [ 32] [6213545000362446=491212016244353] +07:43:27 [ 37] [ 12] [507902161160] +07:43:27 [ 38] [ 6] [898051] +07:43:27 [ 39] [ 2] [00] +07:43:27 [ 41] [ 8] [03020026] +07:43:27 [ 49] [ 3] [418] +07:43:27 [ 54] [ 40] [1001418C0000096517521002418C000009651752] +07:43:27 ============================================================================ +07:43:27 Calculate Source COMM Id = 4 +07:43:27 ============================================================================ +07:43:27 + + +waiting on router queue for slot.... +07:43:28 ============================================================================ +07:43:28 Slot Id : <360> +07:43:28 Transaction Type : REQUEST +07:43:28 Received From : +07:43:28 ============================================================================ +07:43:28 FNo. Len. Field Value +07:43:28 ============================================================================ +07:43:28 [ 1] [ 4] [0800] +07:43:28 [ 7] [ 10] [0320124237] +07:43:28 [ 11] [ 6] [155232] +07:43:28 [ 70] [ 3] [301] +07:43:28 ============================================================================ +07:43:28 + + +waiting on router queue for slot.... +07:43:28 Sending to : +07:43:28 ============================================================================ +07:43:28 ============================================================================ +07:43:28 Slot Id : <360> +07:43:28 Transaction Type : RESPONSE +07:43:28 Received From : +07:43:28 ============================================================================ +07:43:28 FNo. Len. Field Value +07:43:28 ============================================================================ +07:43:28 [ 1] [ 4] [0810] +07:43:28 [ 7] [ 10] [0320124237] +07:43:28 [ 11] [ 6] [155232] +07:43:28 [ 39] [ 2] [00] +07:43:28 [ 70] [ 3] [301] +07:43:28 ============================================================================ +07:43:28 Calculate Source COMM Id = 2 +07:43:28 ============================================================================ +07:43:28 + + +waiting on router queue for slot.... +07:43:32 ============================================================================ +07:43:32 Slot Id : <379> +07:43:32 Transaction Type : REQUEST +07:43:32 Received From : +07:43:32 ============================================================================ +07:43:32 FNo. Len. Field Value +07:43:32 ============================================================================ +07:43:32 [ 1] [ 4] [0800] +07:43:32 [ 2] [ 5] [02531] +07:43:32 [ 3] [ 6] [579078] +07:43:32 [ 7] [ 10] [0320004332] +07:43:32 [ 11] [ 6] [806860] +07:43:32 [ 15] [ 10] [0320004332] +07:43:32 [ 37] [ 11] [57907806860] +07:43:32 [ 70] [ 3] [001] +07:43:32 ============================================================================ +07:43:32 + + +waiting on router queue for slot.... +07:43:32 ============================================================================ +07:43:32 Slot Id : <379> +07:43:32 Transaction Type : RESPONSE +07:43:32 Received From : +07:43:32 ============================================================================ +07:43:32 FNo. Len. Field Value +07:43:32 ============================================================================ +07:43:32 [ 1] [ 4] [0810] +07:43:32 [ 7] [ 10] [0320004332] +07:43:32 [ 11] [ 6] [806860] +07:43:32 [ 15] [ 4] [0320] +07:43:32 [ 37] [ 12] [57907806860] +07:43:32 [ 39] [ 2] [00] +07:43:32 [ 70] [ 3] [001] +07:43:32 ============================================================================ +07:43:32 Sending to : +07:43:32 ============================================================================ +07:43:32 + + +waiting on router queue for slot.... +07:43:33 ============================================================================ +07:43:33 Slot Id : <354> +07:43:33 Transaction Type : REQUEST +07:43:33 Received From : +07:43:33 ============================================================================ +07:43:33 FNo. Len. Field Value +07:43:33 ============================================================================ +07:43:33 [ 1] [ 4] [0200] +07:43:33 [ 2] [ 16] [1808930200021731] +07:43:33 [ 3] [ 6] [301000] +07:43:33 [ 4] [ 12] [000000000000] +07:43:33 [ 7] [ 10] [0320074330] +07:43:33 [ 11] [ 6] [673021] +07:43:33 [ 12] [ 6] [074330] +07:43:33 [ 13] [ 4] [0320] +07:43:33 [ 15] [ 4] [0320] +07:43:33 [ 18] [ 4] [6011] +07:43:33 [ 22] [ 3] [900] +07:43:33 [ 25] [ 2] [02] +07:43:33 [ 28] [ 9] [D00000000] +07:43:33 [ 32] [ 6] [621354] +07:43:33 [ 35] [ 27] [1808930200021731=1803500914] +07:43:33 [ 37] [ 12] [507903975090] +07:43:33 [ 41] [ 8] [01011300] +07:43:33 [ 42] [ 15] [NATIVE ] +07:43:33 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:43:33 [ 49] [ 3] [418] +07:43:33 [ 52] [ 16] [CC36D6E671A2401B] +07:43:33 ============================================================================ +07:43:33 + + +waiting on router queue for slot.... +07:43:33 Sending to : +07:43:33 ============================================================================ +07:43:33 Sending to : +07:43:33 ============================================================================ +07:43:34 ============================================================================ +07:43:34 Slot Id : <354> +07:43:34 Transaction Type : REQUEST +07:43:34 Received From : +07:43:34 ============================================================================ +07:43:34 FNo. Len. Field Value +07:43:34 ============================================================================ +07:43:34 [ 1] [ 4] [0200] +07:43:34 [ 2] [ 16] [1808930200021731] +07:43:34 [ 3] [ 6] [301000] +07:43:34 [ 4] [ 12] [000000000000] +07:43:34 [ 7] [ 10] [0320074330] +07:43:34 [ 11] [ 6] [673021] +07:43:34 [ 12] [ 6] [074330] +07:43:34 [ 13] [ 4] [0320] +07:43:34 [ 15] [ 4] [0320] +07:43:34 [ 18] [ 4] [6011] +07:43:34 [ 22] [ 3] [900] +07:43:34 [ 25] [ 2] [02] +07:43:34 [ 28] [ 9] [D00000000] +07:43:34 [ 32] [ 6] [621354] +07:43:34 [ 35] [ 27] [1808930200021731=1803500914] +07:43:34 [ 37] [ 12] [507903975090] +07:43:34 [ 41] [ 8] [01011300] +07:43:34 [ 42] [ 15] [NATIVE ] +07:43:34 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:43:34 [ 49] [ 3] [418] +07:43:34 [ 52] [ 16] [CC36D6E671A2401B] +07:43:34 ============================================================================ +07:43:34 + + +waiting on router queue for slot.... +07:43:34 Sending to : +07:43:34 ============================================================================ +07:43:34 ============================================================================ +07:43:34 Slot Id : <354> +07:43:34 Transaction Type : REQUEST +07:43:34 Received From : +07:43:34 ============================================================================ +07:43:34 FNo. Len. Field Value +07:43:34 ============================================================================ +07:43:34 [ 1] [ 4] [0200] +07:43:34 [ 2] [ 16] [1808930200021731] +07:43:34 [ 3] [ 6] [301000] +07:43:34 [ 4] [ 12] [000000000000] +07:43:34 [ 7] [ 10] [0320074330] +07:43:34 [ 11] [ 6] [673021] +07:43:34 [ 12] [ 6] [074330] +07:43:34 [ 13] [ 4] [0320] +07:43:34 [ 15] [ 4] [0320] +07:43:34 [ 18] [ 4] [6011] +07:43:34 [ 22] [ 3] [900] +07:43:34 [ 25] [ 2] [02] +07:43:34 [ 28] [ 9] [D00000000] +07:43:34 [ 32] [ 6] [621354] +07:43:34 [ 35] [ 27] [1808930200021731=1803500914] +07:43:34 [ 37] [ 12] [507903975090] +07:43:34 [ 41] [ 8] [01011300] +07:43:34 [ 42] [ 15] [NATIVE ] +07:43:34 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +07:43:34 [ 49] [ 3] [418] +07:43:34 [ 52] [ 16] [BAE46268B39E4DA9] +07:43:34 ============================================================================ +07:43:34 + + +waiting on router queue for slot.... +07:43:34 Sending to : <2> +07:43:34 ============================================================================ +07:43:36 ============================================================================ +07:43:36 Slot Id : <354> +07:43:36 Transaction Type : RESPONSE +07:43:36 Received From : +07:43:36 ============================================================================ +07:43:36 FNo. Len. Field Value +07:43:36 ============================================================================ +07:43:36 [ 1] [ 4] [0210] +07:43:36 [ 2] [ 16] [1808930200021731] +07:43:36 [ 3] [ 6] [301000] +07:43:36 [ 7] [ 10] [0320074330] +07:43:36 [ 11] [ 6] [673021] +07:43:36 [ 12] [ 6] [074330] +07:43:36 [ 13] [ 4] [0320] +07:43:36 [ 14] [ 4] [1803] +07:43:36 [ 19] [ 3] [418] +07:43:36 [ 32] [ 6] [621354] +07:43:36 [ 37] [ 12] [507903975090] +07:43:36 [ 38] [ 6] [673021] +07:43:36 [ 39] [ 2] [00] +07:43:36 [ 41] [ 8] [01011300] +07:43:36 [ 49] [ 3] [418] +07:43:36 [ 52] [ 16] [BAE46268B39E4DA9] +07:43:36 [ 54] [ 20] [1002418C000100667800] +07:43:36 ============================================================================ +07:43:36 Sending to : +07:43:36 ============================================================================ +07:43:36 + + +waiting on router queue for slot.... +07:43:38 ============================================================================ +07:43:38 Slot Id : <354> +07:43:38 Transaction Type : RESPONSE +07:43:38 Received From : +07:43:38 ============================================================================ +07:43:38 FNo. Len. Field Value +07:43:38 ============================================================================ +07:43:38 [ 1] [ 4] [0210] +07:43:38 [ 2] [ 16] [1808930200021731] +07:43:38 [ 3] [ 6] [301000] +07:43:38 [ 7] [ 10] [0320074330] +07:43:38 [ 11] [ 6] [673021] +07:43:38 [ 12] [ 6] [074330] +07:43:38 [ 13] [ 4] [0320] +07:43:38 [ 14] [ 4] [1803] +07:43:38 [ 19] [ 3] [418] +07:43:38 [ 32] [ 6] [621354] +07:43:38 [ 37] [ 12] [507903975090] +07:43:38 [ 38] [ 6] [673021] +07:43:38 [ 39] [ 2] [00] +07:43:38 [ 41] [ 8] [01011300] +07:43:38 [ 49] [ 3] [418] +07:43:38 [ 52] [ 16] [BAE46268B39E4DA9] +07:43:38 [ 54] [ 20] [1002418C000100667800] +07:43:38 ============================================================================ +07:43:38 Calculate Source COMM Id = 0 +07:43:38 ============================================================================ +07:43:38 + + +waiting on router queue for slot.... +07:43:43 ============================================================================ +07:43:43 Slot Id : <396> +07:43:43 Transaction Type : REQUEST +07:43:43 Received From : +07:43:43 ============================================================================ +07:43:43 FNo. Len. Field Value +07:43:43 ============================================================================ +07:43:43 [ 1] [ 4] [0800] +07:43:43 [ 7] [ 10] [0320145533] +07:43:43 [ 11] [ 6] [075533] +07:43:43 [ 37] [ 12] [57907075533] +07:43:43 [ 70] [ 3] [301] +07:43:43 ============================================================================ +07:43:43 + + +waiting on router queue for slot.... +07:43:43 Sending to : +07:43:43 ============================================================================ +07:43:43 ============================================================================ +07:43:43 Slot Id : <396> +07:43:43 Transaction Type : RESPONSE +07:43:43 Received From : +07:43:43 ============================================================================ +07:43:43 FNo. Len. Field Value +07:43:43 ============================================================================ +07:43:43 [ 1] [ 4] [0810] +07:43:43 [ 7] [ 10] [0320145533] +07:43:43 [ 11] [ 6] [075533] +07:43:43 [ 37] [ 12] [579070755330] +07:43:43 [ 39] [ 2] [00] +07:43:43 [ 70] [ 3] [810] +07:43:43 ============================================================================ +07:43:43 Calculate Source COMM Id = 6 +07:43:43 ============================================================================ +07:43:43 + + +waiting on router queue for slot.... +07:43:44 ============================================================================ +07:43:44 Slot Id : <351> +07:43:44 Transaction Type : REQUEST +07:43:44 Received From : +07:43:44 ============================================================================ +07:43:44 FNo. Len. Field Value +07:43:44 ============================================================================ +07:43:44 [ 1] [ 4] [0800] +07:43:44 [ 7] [ 10] [0320124253] +07:43:44 [ 11] [ 6] [155233] +07:43:44 [ 70] [ 3] [301] +07:43:44 ============================================================================ +07:43:44 + + +waiting on router queue for slot.... +07:43:44 Sending to : +07:43:44 ============================================================================ +07:43:44 ============================================================================ +07:43:44 Slot Id : <351> +07:43:44 Transaction Type : RESPONSE +07:43:44 Received From : +07:43:44 ============================================================================ +07:43:44 FNo. Len. Field Value +07:43:44 ============================================================================ +07:43:44 [ 1] [ 4] [0810] +07:43:44 [ 7] [ 10] [0320124253] +07:43:44 [ 11] [ 6] [155233] +07:43:44 [ 39] [ 2] [00] +07:43:44 [ 70] [ 3] [301] +07:43:44 ============================================================================ +07:43:44 Calculate Source COMM Id = 2 +07:43:44 ============================================================================ +07:43:44 + + +waiting on router queue for slot.... +07:43:48 ============================================================================ +07:43:48 Slot Id : <369> +07:43:48 Transaction Type : REQUEST +07:43:48 Received From : +07:43:48 ============================================================================ +07:43:48 FNo. Len. Field Value +07:43:48 ============================================================================ +07:43:48 [ 1] [ 4] [0200] +07:43:48 [ 2] [ 16] [6213541000597164] +07:43:48 [ 3] [ 6] [010000] +07:43:48 [ 4] [ 12] [000030000000] +07:43:48 [ 7] [ 10] [0320075135] +07:43:48 [ 11] [ 6] [254814] +07:43:48 [ 12] [ 6] [075135] +07:43:48 [ 13] [ 4] [0320] +07:43:48 [ 14] [ 4] [4912] +07:43:48 [ 15] [ 4] [0320] +07:43:48 [ 18] [ 4] [6011] +07:43:48 [ 22] [ 3] [900] +07:43:48 [ 25] [ 2] [02] +07:43:48 [ 28] [ 9] [D00002000] +07:43:48 [ 32] [ 6] [220699] +07:43:48 [ 35] [ 32] [6213541000597164=491212019716499] +07:43:48 [ 37] [ 12] [507900094400] +07:43:48 [ 41] [ 8] [01000900] +07:43:48 [ 42] [ 15] [APTRA ] +07:43:48 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:43:48 [ 49] [ 3] [418] +07:43:48 [ 52] [ 16] [20A114481F6E967A] +07:43:48 ============================================================================ +07:43:48 + + +waiting on router queue for slot.... +07:43:48 Sending to : +07:43:48 ============================================================================ +07:43:48 Sending to : +07:43:48 ============================================================================ +07:43:48 ============================================================================ +07:43:48 Slot Id : <369> +07:43:48 Transaction Type : REQUEST +07:43:48 Received From : +07:43:48 ============================================================================ +07:43:48 FNo. Len. Field Value +07:43:48 ============================================================================ +07:43:48 [ 1] [ 4] [0200] +07:43:48 [ 2] [ 16] [6213541000597164] +07:43:48 [ 3] [ 6] [010000] +07:43:48 [ 4] [ 12] [000030000000] +07:43:48 [ 7] [ 10] [0320075135] +07:43:48 [ 11] [ 6] [254814] +07:43:48 [ 12] [ 6] [075135] +07:43:48 [ 13] [ 4] [0320] +07:43:48 [ 14] [ 4] [4912] +07:43:48 [ 15] [ 4] [0320] +07:43:48 [ 18] [ 4] [6011] +07:43:48 [ 22] [ 3] [900] +07:43:48 [ 25] [ 2] [02] +07:43:48 [ 28] [ 9] [D00002000] +07:43:48 [ 32] [ 6] [220699] +07:43:48 [ 35] [ 32] [6213541000597164=491212019716499] +07:43:48 [ 37] [ 12] [507900094400] +07:43:48 [ 41] [ 8] [01000900] +07:43:48 [ 42] [ 15] [APTRA ] +07:43:48 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:43:48 [ 49] [ 3] [418] +07:43:48 [ 52] [ 16] [20A114481F6E967A] +07:43:48 ============================================================================ +07:43:48 + + +waiting on router queue for slot.... +07:43:48 Sending to : +07:43:48 ============================================================================ +07:43:48 ============================================================================ +07:43:48 Slot Id : <369> +07:43:48 Transaction Type : REQUEST +07:43:48 Received From : +07:43:48 ============================================================================ +07:43:48 FNo. Len. Field Value +07:43:48 ============================================================================ +07:43:48 [ 1] [ 4] [0200] +07:43:48 [ 2] [ 16] [6213541000597164] +07:43:48 [ 3] [ 6] [010000] +07:43:48 [ 4] [ 12] [000030000000] +07:43:48 [ 7] [ 10] [0320075135] +07:43:48 [ 11] [ 6] [254814] +07:43:48 [ 12] [ 6] [075135] +07:43:48 [ 13] [ 4] [0320] +07:43:48 [ 14] [ 4] [4912] +07:43:48 [ 15] [ 4] [0320] +07:43:48 [ 18] [ 4] [6011] +07:43:48 [ 22] [ 3] [900] +07:43:48 [ 25] [ 2] [02] +07:43:48 [ 28] [ 9] [D00002000] +07:43:48 [ 32] [ 6] [220699] +07:43:48 [ 35] [ 32] [6213541000597164=491212019716499] +07:43:48 [ 37] [ 12] [507900094400] +07:43:48 [ 41] [ 8] [01000900] +07:43:48 [ 42] [ 15] [APTRA ] +07:43:48 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:43:48 [ 49] [ 3] [418] +07:43:48 [ 52] [ 16] [7CCAA0F79CA99876] +07:43:48 ============================================================================ +07:43:48 + + +waiting on router queue for slot.... +07:43:48 Sending to : <0> +07:43:48 ============================================================================ +07:43:49 ============================================================================ +07:43:49 Slot Id : <369> +07:43:49 Transaction Type : RESPONSE +07:43:49 Received From : +07:43:49 ============================================================================ +07:43:49 FNo. Len. Field Value +07:43:49 ============================================================================ +07:43:49 [ 1] [ 4] [0210] +07:43:49 [ 2] [ 16] [6213541000597164] +07:43:49 [ 3] [ 6] [010000] +07:43:49 [ 4] [ 12] [000030000000] +07:43:49 [ 7] [ 10] [0320075135] +07:43:49 [ 11] [ 6] [254814] +07:43:49 [ 12] [ 6] [075135] +07:43:49 [ 13] [ 4] [0320] +07:43:49 [ 15] [ 4] [0320] +07:43:49 [ 18] [ 4] [6011] +07:43:49 [ 32] [ 6] [220699] +07:43:49 [ 35] [ 32] [6213541000597164=491212019716499] +07:43:49 [ 37] [ 12] [507900094400] +07:43:49 [ 38] [ 6] [883963] +07:43:49 [ 39] [ 2] [00] +07:43:49 [ 41] [ 8] [01000900] +07:43:49 [ 49] [ 3] [418] +07:43:49 [ 54] [ 40] [0001418C0000060624400002418C000006062440] +07:43:49 ============================================================================ +07:43:49 Sending to : +07:43:49 ============================================================================ +07:43:49 + + +waiting on router queue for slot.... +07:43:50 ============================================================================ +07:43:50 Slot Id : <369> +07:43:50 Transaction Type : RESPONSE +07:43:50 Received From : +07:43:50 ============================================================================ +07:43:50 FNo. Len. Field Value +07:43:50 ============================================================================ +07:43:50 [ 1] [ 4] [0210] +07:43:50 [ 2] [ 16] [6213541000597164] +07:43:50 [ 3] [ 6] [010000] +07:43:50 [ 4] [ 12] [000030000000] +07:43:50 [ 7] [ 10] [0320075135] +07:43:50 [ 11] [ 6] [254814] +07:43:50 [ 12] [ 6] [075135] +07:43:50 [ 13] [ 4] [0320] +07:43:50 [ 15] [ 4] [0320] +07:43:50 [ 18] [ 4] [6011] +07:43:50 [ 32] [ 6] [220699] +07:43:50 [ 35] [ 32] [6213541000597164=491212019716499] +07:43:50 [ 37] [ 12] [507900094400] +07:43:50 [ 38] [ 6] [883963] +07:43:50 [ 39] [ 2] [00] +07:43:50 [ 41] [ 8] [01000900] +07:43:50 [ 49] [ 3] [418] +07:43:50 [ 54] [ 40] [0001418C0000060624400002418C000006062440] +07:43:50 ============================================================================ +07:43:50 Calculate Source COMM Id = 1 +07:43:50 ============================================================================ +07:43:50 + + +waiting on router queue for slot.... +07:43:56 ============================================================================ +07:43:56 Slot Id : <390> +07:43:56 Transaction Type : REQUEST +07:43:56 Received From : +07:43:56 ============================================================================ +07:43:56 FNo. Len. Field Value +07:43:56 ============================================================================ +07:43:56 [ 1] [ 4] [0800] +07:43:56 [ 7] [ 10] [0320124304] +07:43:56 [ 11] [ 6] [155234] +07:43:56 [ 70] [ 3] [301] +07:43:56 ============================================================================ +07:43:56 + + +waiting on router queue for slot.... +07:43:56 Sending to : +07:43:56 ============================================================================ +07:43:56 ============================================================================ +07:43:56 Slot Id : <390> +07:43:56 Transaction Type : RESPONSE +07:43:56 Received From : +07:43:56 ============================================================================ +07:43:56 FNo. Len. Field Value +07:43:56 ============================================================================ +07:43:56 [ 1] [ 4] [0810] +07:43:56 [ 7] [ 10] [0320124304] +07:43:56 [ 11] [ 6] [155234] +07:43:56 [ 39] [ 2] [00] +07:43:56 [ 70] [ 3] [301] +07:43:56 ============================================================================ +07:43:56 Calculate Source COMM Id = 2 +07:43:56 ============================================================================ +07:43:56 + + +waiting on router queue for slot.... +07:44:00 ============================================================================ +07:44:00 Slot Id : <389> +07:44:00 Transaction Type : REQUEST +07:44:00 Received From : +07:44:00 ============================================================================ +07:44:00 FNo. Len. Field Value +07:44:00 ============================================================================ +07:44:00 [ 1] [ 4] [0200] +07:44:00 [ 2] [ 16] [6213545000362446] +07:44:00 [ 3] [ 6] [010000] +07:44:00 [ 4] [ 12] [000004000000] +07:44:00 [ 7] [ 10] [0320074151] +07:44:00 [ 11] [ 6] [930777] +07:44:00 [ 12] [ 6] [074151] +07:44:00 [ 13] [ 4] [0320] +07:44:00 [ 15] [ 4] [0320] +07:44:00 [ 18] [ 4] [6011] +07:44:00 [ 19] [ 3] [418] +07:44:00 [ 22] [ 3] [021] +07:44:00 [ 25] [ 2] [01] +07:44:00 [ 28] [ 9] [D00002000] +07:44:00 [ 32] [ 6] [668899] +07:44:00 [ 35] [ 32] [6213545000362446=491212016244353] +07:44:00 [ 37] [ 12] [507902161161] +07:44:00 [ 41] [ 8] [03020026] +07:44:00 [ 42] [ 15] [APT ] +07:44:00 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +07:44:00 [ 49] [ 3] [418] +07:44:00 [ 52] [ 16] [27EB8E5BCD8F1D45] +07:44:00 ============================================================================ +07:44:00 + + +waiting on router queue for slot.... +07:44:00 Sending to : +07:44:00 ============================================================================ +07:44:00 Sending to : +07:44:00 ============================================================================ +07:44:00 ============================================================================ +07:44:00 Slot Id : <389> +07:44:00 Transaction Type : REQUEST +07:44:00 Received From : +07:44:00 ============================================================================ +07:44:00 FNo. Len. Field Value +07:44:00 ============================================================================ +07:44:00 [ 1] [ 4] [0200] +07:44:00 [ 2] [ 16] [6213545000362446] +07:44:00 [ 3] [ 6] [010000] +07:44:00 [ 4] [ 12] [000004000000] +07:44:00 [ 7] [ 10] [0320074151] +07:44:00 [ 11] [ 6] [930777] +07:44:00 [ 12] [ 6] [074151] +07:44:00 [ 13] [ 4] [0320] +07:44:00 [ 15] [ 4] [0320] +07:44:00 [ 18] [ 4] [6011] +07:44:00 [ 19] [ 3] [418] +07:44:00 [ 22] [ 3] [021] +07:44:00 [ 25] [ 2] [01] +07:44:00 [ 28] [ 9] [D00002000] +07:44:00 [ 32] [ 6] [668899] +07:44:00 [ 35] [ 32] [6213545000362446=491212016244353] +07:44:00 [ 37] [ 12] [507902161161] +07:44:00 [ 41] [ 8] [03020026] +07:44:00 [ 42] [ 15] [APT ] +07:44:00 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +07:44:00 [ 49] [ 3] [418] +07:44:00 [ 52] [ 16] [27EB8E5BCD8F1D45] +07:44:00 ============================================================================ +07:44:00 + + +waiting on router queue for slot.... +07:44:00 Sending to : +07:44:00 ============================================================================ +07:44:00 ============================================================================ +07:44:00 Slot Id : <389> +07:44:00 Transaction Type : REQUEST +07:44:00 Received From : +07:44:00 ============================================================================ +07:44:00 FNo. Len. Field Value +07:44:00 ============================================================================ +07:44:00 [ 1] [ 4] [0200] +07:44:00 [ 2] [ 16] [6213545000362446] +07:44:00 [ 3] [ 6] [010000] +07:44:00 [ 4] [ 12] [000004000000] +07:44:00 [ 7] [ 10] [0320074151] +07:44:00 [ 11] [ 6] [930777] +07:44:00 [ 12] [ 6] [074151] +07:44:00 [ 13] [ 4] [0320] +07:44:00 [ 15] [ 4] [0320] +07:44:00 [ 18] [ 4] [6011] +07:44:00 [ 19] [ 3] [418] +07:44:00 [ 22] [ 3] [021] +07:44:00 [ 25] [ 2] [01] +07:44:00 [ 28] [ 9] [D00002000] +07:44:00 [ 32] [ 6] [668899] +07:44:00 [ 35] [ 32] [6213545000362446=491212016244353] +07:44:00 [ 37] [ 12] [507902161161] +07:44:00 [ 41] [ 8] [03020026] +07:44:00 [ 42] [ 15] [APT ] +07:44:00 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +07:44:00 [ 49] [ 3] [418] +07:44:00 [ 52] [ 16] [76562E8B74495C1F] +07:44:00 ============================================================================ +07:44:00 + + +waiting on router queue for slot.... +07:44:00 Sending to : <0> +07:44:00 ============================================================================ +07:44:01 ============================================================================ +07:44:01 Slot Id : <389> +07:44:01 Transaction Type : RESPONSE +07:44:01 Received From : +07:44:01 ============================================================================ +07:44:01 FNo. Len. Field Value +07:44:01 ============================================================================ +07:44:01 [ 1] [ 4] [0210] +07:44:01 [ 2] [ 16] [6213545000362446] +07:44:01 [ 3] [ 6] [010000] +07:44:01 [ 4] [ 12] [000004000000] +07:44:01 [ 7] [ 10] [0320074151] +07:44:01 [ 11] [ 6] [930777] +07:44:01 [ 12] [ 6] [074151] +07:44:01 [ 13] [ 4] [0320] +07:44:01 [ 15] [ 4] [0320] +07:44:01 [ 18] [ 4] [6011] +07:44:01 [ 19] [ 3] [418] +07:44:01 [ 32] [ 6] [668899] +07:44:01 [ 35] [ 32] [6213545000362446=491212016244353] +07:44:01 [ 37] [ 12] [507902161161] +07:44:01 [ 38] [ 6] [766971] +07:44:01 [ 39] [ 2] [00] +07:44:01 [ 41] [ 8] [03020026] +07:44:01 [ 49] [ 3] [418] +07:44:01 [ 54] [ 40] [0001418C0000054517520002418C000005451752] +07:44:01 ============================================================================ +07:44:01 Sending to : +07:44:01 ============================================================================ +07:44:01 + + +waiting on router queue for slot.... +07:44:02 ============================================================================ +07:44:02 Slot Id : <374> +07:44:02 Transaction Type : REQUEST +07:44:02 Received From : +07:44:02 ============================================================================ +07:44:02 FNo. Len. Field Value +07:44:02 ============================================================================ +07:44:02 [ 1] [ 4] [0200] +07:44:02 [ 2] [ 16] [6688990108425404] +07:44:02 [ 3] [ 6] [011000] +07:44:02 [ 4] [ 12] [000100000000] +07:44:02 [ 7] [ 10] [0320074359] +07:44:02 [ 11] [ 6] [673126] +07:44:02 [ 12] [ 6] [074359] +07:44:02 [ 13] [ 4] [0320] +07:44:02 [ 15] [ 4] [0320] +07:44:02 [ 18] [ 4] [6011] +07:44:02 [ 22] [ 3] [900] +07:44:02 [ 25] [ 2] [02] +07:44:02 [ 28] [ 9] [D00002000] +07:44:02 [ 32] [ 6] [621354] +07:44:02 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:44:02 [ 37] [ 12] [507903499455] +07:44:02 [ 41] [ 8] [06002200] +07:44:02 [ 42] [ 15] [NATIVE ] +07:44:02 [ 43] [ 40] [Beng Market Beng LAO] +07:44:02 [ 49] [ 3] [418] +07:44:02 [ 52] [ 16] [193DDE6CEF0DA63D] +07:44:02 ============================================================================ +07:44:02 + + +waiting on router queue for slot.... +07:44:02 Sending to : +07:44:02 ============================================================================ +07:44:02 Sending to : +07:44:02 ============================================================================ +07:44:02 ============================================================================ +07:44:02 Slot Id : <389> +07:44:02 Transaction Type : RESPONSE +07:44:02 Received From : +07:44:02 ============================================================================ +07:44:02 FNo. Len. Field Value +07:44:02 ============================================================================ +07:44:02 [ 1] [ 4] [0210] +07:44:02 [ 2] [ 16] [6213545000362446] +07:44:02 [ 3] [ 6] [010000] +07:44:02 [ 4] [ 12] [000004000000] +07:44:02 [ 7] [ 10] [0320074151] +07:44:02 [ 11] [ 6] [930777] +07:44:02 [ 12] [ 6] [074151] +07:44:02 [ 13] [ 4] [0320] +07:44:02 [ 15] [ 4] [0320] +07:44:02 [ 18] [ 4] [6011] +07:44:02 [ 19] [ 3] [418] +07:44:02 [ 32] [ 6] [668899] +07:44:02 [ 35] [ 32] [6213545000362446=491212016244353] +07:44:02 [ 37] [ 12] [507902161161] +07:44:02 [ 38] [ 6] [766971] +07:44:02 [ 39] [ 2] [00] +07:44:02 [ 41] [ 8] [03020026] +07:44:02 [ 49] [ 3] [418] +07:44:02 [ 54] [ 40] [0001418C0000054517520002418C000005451752] +07:44:02 ============================================================================ +07:44:02 Calculate Source COMM Id = 4 +07:44:02 ============================================================================ +07:44:02 + + +waiting on router queue for slot.... +07:44:03 ============================================================================ +07:44:03 Slot Id : <374> +07:44:03 Transaction Type : REQUEST +07:44:03 Received From : +07:44:03 ============================================================================ +07:44:03 FNo. Len. Field Value +07:44:03 ============================================================================ +07:44:03 [ 1] [ 4] [0200] +07:44:03 [ 2] [ 16] [6688990108425404] +07:44:03 [ 3] [ 6] [011000] +07:44:03 [ 4] [ 12] [000100000000] +07:44:03 [ 7] [ 10] [0320074359] +07:44:03 [ 11] [ 6] [673126] +07:44:03 [ 12] [ 6] [074359] +07:44:03 [ 13] [ 4] [0320] +07:44:03 [ 15] [ 4] [0320] +07:44:03 [ 18] [ 4] [6011] +07:44:03 [ 22] [ 3] [900] +07:44:03 [ 25] [ 2] [02] +07:44:03 [ 28] [ 9] [D00002000] +07:44:03 [ 32] [ 6] [621354] +07:44:03 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:44:03 [ 37] [ 12] [507903499455] +07:44:03 [ 41] [ 8] [06002200] +07:44:03 [ 42] [ 15] [NATIVE ] +07:44:03 [ 43] [ 40] [Beng Market Beng LAO] +07:44:03 [ 49] [ 3] [418] +07:44:03 [ 52] [ 16] [193DDE6CEF0DA63D] +07:44:03 ============================================================================ +07:44:03 + + +waiting on router queue for slot.... +07:44:03 Sending to : +07:44:03 ============================================================================ +07:44:03 ============================================================================ +07:44:03 Slot Id : <374> +07:44:03 Transaction Type : REQUEST +07:44:03 Received From : +07:44:03 ============================================================================ +07:44:03 FNo. Len. Field Value +07:44:03 ============================================================================ +07:44:03 [ 1] [ 4] [0200] +07:44:03 [ 2] [ 16] [6688990108425404] +07:44:03 [ 3] [ 6] [011000] +07:44:03 [ 4] [ 12] [000100000000] +07:44:03 [ 7] [ 10] [0320074359] +07:44:03 [ 11] [ 6] [673126] +07:44:03 [ 12] [ 6] [074359] +07:44:03 [ 13] [ 4] [0320] +07:44:03 [ 15] [ 4] [0320] +07:44:03 [ 18] [ 4] [6011] +07:44:03 [ 22] [ 3] [900] +07:44:03 [ 25] [ 2] [02] +07:44:03 [ 28] [ 9] [D00002000] +07:44:03 [ 32] [ 6] [621354] +07:44:03 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:44:03 [ 37] [ 12] [507903499455] +07:44:03 [ 41] [ 8] [06002200] +07:44:03 [ 42] [ 15] [NATIVE ] +07:44:03 [ 43] [ 40] [Beng Market Beng LAO] +07:44:03 [ 49] [ 3] [418] +07:44:03 [ 52] [ 16] [14ECBF85E8FE7FCA] +07:44:03 ============================================================================ +07:44:03 + + +waiting on router queue for slot.... +07:44:03 Sending to : <4> +07:44:03 ============================================================================ +07:44:04 ============================================================================ +07:44:04 Slot Id : <374> +07:44:04 Transaction Type : RESPONSE +07:44:04 Received From : +07:44:04 ============================================================================ +07:44:04 FNo. Len. Field Value +07:44:04 ============================================================================ +07:44:04 [ 1] [ 4] [0210] +07:44:04 [ 2] [ 16] [6688990108425404] +07:44:04 [ 3] [ 6] [011000] +07:44:04 [ 4] [ 12] [000100000000] +07:44:04 [ 11] [ 6] [673126] +07:44:04 [ 12] [ 6] [074359] +07:44:04 [ 15] [ 4] [0320] +07:44:04 [ 18] [ 4] [6011] +07:44:04 [ 32] [ 6] [621354] +07:44:04 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:44:04 [ 37] [ 12] [507903499455] +07:44:04 [ 38] [ 6] [544992] +07:44:04 [ 39] [ 2] [00] +07:44:04 [ 41] [ 8] [06002200] +07:44:04 [ 49] [ 3] [418] +07:44:04 [ 54] [ 20] [1002418C000247422755] +07:44:04 ============================================================================ +07:44:04 Sending to : +07:44:04 ============================================================================ +07:44:04 + + +waiting on router queue for slot.... +07:44:05 ============================================================================ +07:44:05 Slot Id : <374> +07:44:05 Transaction Type : RESPONSE +07:44:05 Received From : +07:44:05 ============================================================================ +07:44:05 FNo. Len. Field Value +07:44:05 ============================================================================ +07:44:05 [ 1] [ 4] [0210] +07:44:05 [ 2] [ 16] [6688990108425404] +07:44:05 [ 3] [ 6] [011000] +07:44:05 [ 4] [ 12] [000100000000] +07:44:05 [ 11] [ 6] [673126] +07:44:05 [ 12] [ 6] [074359] +07:44:05 [ 15] [ 4] [0320] +07:44:05 [ 18] [ 4] [6011] +07:44:05 [ 32] [ 6] [621354] +07:44:05 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:44:05 [ 37] [ 12] [507903499455] +07:44:05 [ 38] [ 6] [544992] +07:44:05 [ 39] [ 2] [00] +07:44:05 [ 41] [ 8] [06002200] +07:44:05 [ 49] [ 3] [418] +07:44:05 [ 54] [ 20] [1002418C000247422755] +07:44:05 ============================================================================ +07:44:05 Calculate Source COMM Id = 0 +07:44:05 ============================================================================ +07:44:05 + + +waiting on router queue for slot.... +07:44:05 ============================================================================ +07:44:05 Slot Id : <376> +07:44:05 Transaction Type : REQUEST +07:44:05 Received From : +07:44:05 ============================================================================ +07:44:05 FNo. Len. Field Value +07:44:05 ============================================================================ +07:44:05 [ 1] [ 4] [0200] +07:44:05 [ 2] [ 16] [2206990000132423] +07:44:05 [ 3] [ 6] [301000] +07:44:05 [ 4] [ 12] [000000000000] +07:44:05 [ 7] [ 10] [0320074427] +07:44:05 [ 11] [ 6] [201510] +07:44:05 [ 12] [ 6] [073540] +07:44:05 [ 13] [ 4] [0320] +07:44:05 [ 14] [ 4] [9805] +07:44:05 [ 15] [ 4] [0320] +07:44:05 [ 18] [ 4] [6011] +07:44:05 [ 19] [ 3] [418] +07:44:05 [ 22] [ 3] [021] +07:44:05 [ 25] [ 2] [01] +07:44:05 [ 28] [ 9] [D00000000] +07:44:05 [ 32] [ 6] [198901] +07:44:05 [ 35] [ 32] [2206990000132423=980512611863284] +07:44:05 [ 37] [ 12] [507907201510] +07:44:05 [ 41] [ 8] [01529026] +07:44:05 [ 42] [ 15] [000000041529026] +07:44:05 [ 43] [ 40] [JDB ATM LTC VN ] +07:44:05 [ 49] [ 3] [418] +07:44:05 [ 52] [ 16] [E18356C2EC9B4475] +07:44:05 ============================================================================ +07:44:05 + + +waiting on router queue for slot.... +07:44:05 Sending to : +07:44:05 ============================================================================ +07:44:05 Sending to : +07:44:05 ============================================================================ +07:44:06 ============================================================================ +07:44:06 Slot Id : <376> +07:44:06 Transaction Type : REQUEST +07:44:06 Received From : +07:44:06 ============================================================================ +07:44:06 FNo. Len. Field Value +07:44:06 ============================================================================ +07:44:06 [ 1] [ 4] [0200] +07:44:06 [ 2] [ 16] [2206990000132423] +07:44:06 [ 3] [ 6] [301000] +07:44:06 [ 4] [ 12] [000000000000] +07:44:06 [ 7] [ 10] [0320074427] +07:44:06 [ 11] [ 6] [201510] +07:44:06 [ 12] [ 6] [073540] +07:44:06 [ 13] [ 4] [0320] +07:44:06 [ 14] [ 4] [9805] +07:44:06 [ 15] [ 4] [0320] +07:44:06 [ 18] [ 4] [6011] +07:44:06 [ 19] [ 3] [418] +07:44:06 [ 22] [ 3] [021] +07:44:06 [ 25] [ 2] [01] +07:44:06 [ 28] [ 9] [D00000000] +07:44:06 [ 32] [ 6] [198901] +07:44:06 [ 35] [ 32] [2206990000132423=980512611863284] +07:44:06 [ 37] [ 12] [507907201510] +07:44:06 [ 41] [ 8] [01529026] +07:44:06 [ 42] [ 15] [000000041529026] +07:44:06 [ 43] [ 40] [JDB ATM LTC VN ] +07:44:06 [ 49] [ 3] [418] +07:44:06 [ 52] [ 16] [E18356C2EC9B4475] +07:44:06 ============================================================================ +07:44:06 + + +waiting on router queue for slot.... +07:44:06 Sending to : +07:44:06 ============================================================================ +07:44:06 ============================================================================ +07:44:06 Slot Id : <376> +07:44:06 Transaction Type : REQUEST +07:44:06 Received From : +07:44:06 ============================================================================ +07:44:06 FNo. Len. Field Value +07:44:06 ============================================================================ +07:44:06 [ 1] [ 4] [0200] +07:44:06 [ 2] [ 16] [2206990000132423] +07:44:06 [ 3] [ 6] [301000] +07:44:06 [ 4] [ 12] [000000000000] +07:44:06 [ 7] [ 10] [0320074427] +07:44:06 [ 11] [ 6] [201510] +07:44:06 [ 12] [ 6] [073540] +07:44:06 [ 13] [ 4] [0320] +07:44:06 [ 14] [ 4] [9805] +07:44:06 [ 15] [ 4] [0320] +07:44:06 [ 18] [ 4] [6011] +07:44:06 [ 19] [ 3] [418] +07:44:06 [ 22] [ 3] [021] +07:44:06 [ 25] [ 2] [01] +07:44:06 [ 28] [ 9] [D00000000] +07:44:06 [ 32] [ 6] [198901] +07:44:06 [ 35] [ 32] [2206990000132423=980512611863284] +07:44:06 [ 37] [ 12] [507907201510] +07:44:06 [ 41] [ 8] [01529026] +07:44:06 [ 42] [ 15] [000000041529026] +07:44:06 [ 43] [ 40] [JDB ATM LTC VN ] +07:44:06 [ 49] [ 3] [418] +07:44:06 [ 52] [ 16] [7D4CB31078F21651] +07:44:06 ============================================================================ +07:44:06 + + +waiting on router queue for slot.... +07:44:06 Sending to : <1> +07:44:06 ============================================================================ +07:44:07 ============================================================================ +07:44:07 Slot Id : <359> +07:44:07 Transaction Type : REQUEST +07:44:07 Received From : +07:44:07 ============================================================================ +07:44:07 FNo. Len. Field Value +07:44:07 ============================================================================ +07:44:07 [ 1] [ 4] [0800] +07:44:07 [ 7] [ 10] [0320124315] +07:44:07 [ 11] [ 6] [155235] +07:44:07 [ 70] [ 3] [301] +07:44:07 ============================================================================ +07:44:07 + + +waiting on router queue for slot.... +07:44:07 Sending to : +07:44:07 ============================================================================ +07:44:07 ============================================================================ +07:44:07 Slot Id : <359> +07:44:07 Transaction Type : RESPONSE +07:44:07 Received From : +07:44:07 ============================================================================ +07:44:07 FNo. Len. Field Value +07:44:07 ============================================================================ +07:44:07 [ 1] [ 4] [0810] +07:44:07 [ 7] [ 10] [0320124315] +07:44:07 [ 11] [ 6] [155235] +07:44:07 [ 39] [ 2] [00] +07:44:07 [ 70] [ 3] [301] +07:44:07 ============================================================================ +07:44:07 Calculate Source COMM Id = 2 +07:44:07 ============================================================================ +07:44:07 + + +waiting on router queue for slot.... +07:44:07 ============================================================================ +07:44:07 Slot Id : <376> +07:44:07 Transaction Type : RESPONSE +07:44:07 Received From : +07:44:07 ============================================================================ +07:44:07 FNo. Len. Field Value +07:44:07 ============================================================================ +07:44:07 [ 1] [ 4] [0210] +07:44:07 [ 2] [ 16] [2206990000132423] +07:44:07 [ 3] [ 6] [301000] +07:44:07 [ 4] [ 12] [000000000000] +07:44:07 [ 7] [ 10] [0320074427] +07:44:07 [ 11] [ 6] [201510] +07:44:07 [ 12] [ 6] [073540] +07:44:07 [ 13] [ 4] [0320] +07:44:07 [ 15] [ 4] [0320] +07:44:07 [ 18] [ 4] [6011] +07:44:07 [ 32] [ 6] [198901] +07:44:07 [ 35] [ 32] [2206990000132423=980512611863284] +07:44:07 [ 37] [ 12] [507907201510] +07:44:07 [ 38] [ 6] [657864] +07:44:07 [ 39] [ 2] [00] +07:44:07 [ 41] [ 8] [01529026] +07:44:07 [ 49] [ 3] [418] +07:44:07 [ 54] [ 40] [1001418C0000133000001002418C000013300000] +07:44:07 ============================================================================ +07:44:07 Sending to : +07:44:07 ============================================================================ +07:44:07 + + +waiting on router queue for slot.... +07:44:09 ============================================================================ +07:44:09 Slot Id : <376> +07:44:09 Transaction Type : RESPONSE +07:44:09 Received From : +07:44:09 ============================================================================ +07:44:09 FNo. Len. Field Value +07:44:09 ============================================================================ +07:44:09 [ 1] [ 4] [0210] +07:44:09 [ 2] [ 16] [2206990000132423] +07:44:09 [ 3] [ 6] [301000] +07:44:09 [ 4] [ 12] [000000000000] +07:44:09 [ 7] [ 10] [0320074427] +07:44:09 [ 11] [ 6] [201510] +07:44:09 [ 12] [ 6] [073540] +07:44:09 [ 13] [ 4] [0320] +07:44:09 [ 15] [ 4] [0320] +07:44:09 [ 18] [ 4] [6011] +07:44:09 [ 32] [ 6] [198901] +07:44:09 [ 35] [ 32] [2206990000132423=980512611863284] +07:44:09 [ 37] [ 12] [507907201510] +07:44:09 [ 38] [ 6] [657864] +07:44:09 [ 39] [ 2] [00] +07:44:09 [ 41] [ 8] [01529026] +07:44:09 [ 49] [ 3] [418] +07:44:09 [ 54] [ 40] [1001418C0000133000001002418C000013300000] +07:44:09 ============================================================================ +07:44:09 Calculate Source COMM Id = 5 +07:44:09 ============================================================================ +07:44:09 + + +waiting on router queue for slot.... +07:44:15 ============================================================================ +07:44:15 Slot Id : <395> +07:44:15 Transaction Type : REQUEST +07:44:15 Received From : +07:44:15 ============================================================================ +07:44:15 FNo. Len. Field Value +07:44:15 ============================================================================ +07:44:15 [ 1] [ 4] [0200] +07:44:15 [ 2] [ 16] [6213545000786354] +07:44:15 [ 3] [ 6] [012000] +07:44:15 [ 4] [ 12] [000030000000] +07:44:15 [ 7] [ 10] [0320004323] +07:44:15 [ 11] [ 6] [266857] +07:44:15 [ 12] [ 6] [074323] +07:44:15 [ 13] [ 4] [0320] +07:44:15 [ 14] [ 4] [4912] +07:44:15 [ 15] [ 4] [0320] +07:44:15 [ 18] [ 4] [6011] +07:44:15 [ 19] [ 3] [418] +07:44:15 [ 22] [ 3] [021] +07:44:15 [ 25] [ 2] [01] +07:44:15 [ 28] [ 9] [D00002000] +07:44:15 [ 32] [ 6] [180893] +07:44:15 [ 35] [ 32] [6213545000786354=491212018635979] +07:44:15 [ 37] [ 12] [507900266857] +07:44:15 [ 41] [ 8] [0525XYBT] +07:44:15 [ 42] [ 15] [999999 ] +07:44:15 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:44:15 [ 49] [ 3] [418] +07:44:15 [ 52] [ 16] [9E3A124C621BA858] +07:44:15 ============================================================================ +07:44:15 + + +waiting on router queue for slot.... +07:44:15 Sending to : +07:44:15 ============================================================================ +07:44:15 Sending to : +07:44:15 ============================================================================ +07:44:16 ============================================================================ +07:44:16 Slot Id : <395> +07:44:16 Transaction Type : REQUEST +07:44:16 Received From : +07:44:16 ============================================================================ +07:44:16 FNo. Len. Field Value +07:44:16 ============================================================================ +07:44:16 [ 1] [ 4] [0200] +07:44:16 [ 2] [ 16] [6213545000786354] +07:44:16 [ 3] [ 6] [012000] +07:44:16 [ 4] [ 12] [000030000000] +07:44:16 [ 7] [ 10] [0320004323] +07:44:16 [ 11] [ 6] [266857] +07:44:16 [ 12] [ 6] [074323] +07:44:16 [ 13] [ 4] [0320] +07:44:16 [ 14] [ 4] [4912] +07:44:16 [ 15] [ 4] [0320] +07:44:16 [ 18] [ 4] [6011] +07:44:16 [ 19] [ 3] [418] +07:44:16 [ 22] [ 3] [021] +07:44:16 [ 25] [ 2] [01] +07:44:16 [ 28] [ 9] [D00002000] +07:44:16 [ 32] [ 6] [180893] +07:44:16 [ 35] [ 32] [6213545000786354=491212018635979] +07:44:16 [ 37] [ 12] [507900266857] +07:44:16 [ 41] [ 8] [0525XYBT] +07:44:16 [ 42] [ 15] [999999 ] +07:44:16 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:44:16 [ 49] [ 3] [418] +07:44:16 [ 52] [ 16] [9E3A124C621BA858] +07:44:16 ============================================================================ +07:44:16 + + +waiting on router queue for slot.... +07:44:16 Sending to : +07:44:16 ============================================================================ +07:44:16 ============================================================================ +07:44:16 Slot Id : <395> +07:44:16 Transaction Type : REQUEST +07:44:16 Received From : +07:44:16 ============================================================================ +07:44:16 FNo. Len. Field Value +07:44:16 ============================================================================ +07:44:16 [ 1] [ 4] [0200] +07:44:16 [ 2] [ 16] [6213545000786354] +07:44:16 [ 3] [ 6] [012000] +07:44:16 [ 4] [ 12] [000030000000] +07:44:16 [ 7] [ 10] [0320004323] +07:44:16 [ 11] [ 6] [266857] +07:44:16 [ 12] [ 6] [074323] +07:44:16 [ 13] [ 4] [0320] +07:44:16 [ 14] [ 4] [4912] +07:44:16 [ 15] [ 4] [0320] +07:44:16 [ 18] [ 4] [6011] +07:44:16 [ 19] [ 3] [418] +07:44:16 [ 22] [ 3] [021] +07:44:16 [ 25] [ 2] [01] +07:44:16 [ 28] [ 9] [D00002000] +07:44:16 [ 32] [ 6] [180893] +07:44:16 [ 35] [ 32] [6213545000786354=491212018635979] +07:44:16 [ 37] [ 12] [507900266857] +07:44:16 [ 41] [ 8] [0525XYBT] +07:44:16 [ 42] [ 15] [999999 ] +07:44:16 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:44:16 [ 49] [ 3] [418] +07:44:16 [ 52] [ 16] [D79E44AF32633FFD] +07:44:16 ============================================================================ +07:44:16 + + +waiting on router queue for slot.... +07:44:16 Sending to : <0> +07:44:16 ============================================================================ +07:44:16 ============================================================================ +07:44:16 Slot Id : <395> +07:44:16 Transaction Type : RESPONSE +07:44:16 Received From : +07:44:16 ============================================================================ +07:44:16 FNo. Len. Field Value +07:44:16 ============================================================================ +07:44:16 [ 1] [ 4] [0210] +07:44:16 [ 2] [ 16] [6213545000786354] +07:44:16 [ 3] [ 6] [012000] +07:44:16 [ 4] [ 12] [000030000000] +07:44:16 [ 7] [ 10] [0320004323] +07:44:16 [ 11] [ 6] [266857] +07:44:16 [ 12] [ 6] [074323] +07:44:16 [ 13] [ 4] [0320] +07:44:16 [ 15] [ 4] [0320] +07:44:16 [ 18] [ 4] [6011] +07:44:16 [ 19] [ 3] [418] +07:44:16 [ 32] [ 6] [180893] +07:44:16 [ 35] [ 32] [6213545000786354=491212018635979] +07:44:16 [ 37] [ 12] [507900266857] +07:44:16 [ 38] [ 6] [394563] +07:44:16 [ 39] [ 2] [00] +07:44:16 [ 41] [ 8] [0525XYBT] +07:44:16 [ 49] [ 3] [418] +07:44:16 [ 54] [ 40] [2001418C0000079993242002418C000007999324] +07:44:16 ============================================================================ +07:44:16 Sending to : +07:44:16 ============================================================================ +07:44:16 + + +waiting on router queue for slot.... +07:44:18 ============================================================================ +07:44:18 Slot Id : <395> +07:44:18 Transaction Type : RESPONSE +07:44:18 Received From : +07:44:18 ============================================================================ +07:44:18 FNo. Len. Field Value +07:44:18 ============================================================================ +07:44:18 [ 1] [ 4] [0210] +07:44:18 [ 2] [ 16] [6213545000786354] +07:44:18 [ 3] [ 6] [012000] +07:44:18 [ 4] [ 12] [000030000000] +07:44:18 [ 7] [ 10] [0320004323] +07:44:18 [ 11] [ 6] [266857] +07:44:18 [ 12] [ 6] [074323] +07:44:18 [ 13] [ 4] [0320] +07:44:18 [ 15] [ 4] [0320] +07:44:18 [ 18] [ 4] [6011] +07:44:18 [ 19] [ 3] [418] +07:44:18 [ 32] [ 6] [180893] +07:44:18 [ 35] [ 32] [6213545000786354=491212018635979] +07:44:18 [ 37] [ 12] [507900266857] +07:44:18 [ 38] [ 6] [394563] +07:44:18 [ 39] [ 2] [00] +07:44:18 [ 41] [ 8] [0525XYBT] +07:44:18 [ 49] [ 3] [418] +07:44:18 [ 54] [ 40] [2001418C0000079993242002418C000007999324] +07:44:18 ============================================================================ +07:44:18 Calculate Source COMM Id = 2 +07:44:18 ============================================================================ +07:44:18 + + +waiting on router queue for slot.... +07:44:18 ============================================================================ +07:44:18 Slot Id : <361> +07:44:18 Transaction Type : REQUEST +07:44:18 Received From : +07:44:18 ============================================================================ +07:44:18 FNo. Len. Field Value +07:44:18 ============================================================================ +07:44:18 [ 1] [ 4] [0800] +07:44:18 [ 7] [ 10] [0320124325] +07:44:18 [ 11] [ 6] [155236] +07:44:18 [ 70] [ 3] [301] +07:44:18 ============================================================================ +07:44:18 + + +waiting on router queue for slot.... +07:44:18 Sending to : +07:44:18 ============================================================================ +07:44:18 ============================================================================ +07:44:18 Slot Id : <361> +07:44:18 Transaction Type : RESPONSE +07:44:18 Received From : +07:44:18 ============================================================================ +07:44:18 FNo. Len. Field Value +07:44:18 ============================================================================ +07:44:18 [ 1] [ 4] [0810] +07:44:18 [ 7] [ 10] [0320124325] +07:44:18 [ 11] [ 6] [155236] +07:44:18 [ 39] [ 2] [00] +07:44:18 [ 70] [ 3] [301] +07:44:18 ============================================================================ +07:44:18 Calculate Source COMM Id = 2 +07:44:18 ============================================================================ +07:44:18 + + +waiting on router queue for slot.... +07:44:28 ============================================================================ +07:44:28 Slot Id : <410> +07:44:28 Transaction Type : REQUEST +07:44:28 Received From : +07:44:28 ============================================================================ +07:44:28 FNo. Len. Field Value +07:44:28 ============================================================================ +07:44:28 [ 1] [ 4] [0800] +07:44:28 [ 7] [ 10] [0320124337] +07:44:28 [ 11] [ 6] [155237] +07:44:28 [ 70] [ 3] [301] +07:44:28 ============================================================================ +07:44:28 + + +waiting on router queue for slot.... +07:44:28 Sending to : +07:44:28 ============================================================================ +07:44:28 ============================================================================ +07:44:28 Slot Id : <410> +07:44:28 Transaction Type : RESPONSE +07:44:28 Received From : +07:44:28 ============================================================================ +07:44:28 FNo. Len. Field Value +07:44:28 ============================================================================ +07:44:28 [ 1] [ 4] [0810] +07:44:28 [ 7] [ 10] [0320124337] +07:44:28 [ 11] [ 6] [155237] +07:44:28 [ 39] [ 2] [00] +07:44:28 [ 70] [ 3] [301] +07:44:28 ============================================================================ +07:44:28 Calculate Source COMM Id = 2 +07:44:28 ============================================================================ +07:44:28 + + +waiting on router queue for slot.... +07:44:34 ============================================================================ +07:44:34 Slot Id : <383> +07:44:34 Transaction Type : REQUEST +07:44:34 Received From : +07:44:34 ============================================================================ +07:44:34 FNo. Len. Field Value +07:44:34 ============================================================================ +07:44:34 [ 1] [ 4] [0800] +07:44:34 [ 2] [ 5] [02531] +07:44:34 [ 3] [ 6] [579078] +07:44:34 [ 7] [ 10] [0320004434] +07:44:34 [ 11] [ 6] [806861] +07:44:34 [ 15] [ 10] [0320004434] +07:44:34 [ 37] [ 11] [57907806861] +07:44:34 [ 70] [ 3] [001] +07:44:34 ============================================================================ +07:44:34 + + +waiting on router queue for slot.... +07:44:34 ============================================================================ +07:44:34 Slot Id : <383> +07:44:34 Transaction Type : RESPONSE +07:44:34 Received From : +07:44:34 ============================================================================ +07:44:34 FNo. Len. Field Value +07:44:34 ============================================================================ +07:44:34 [ 1] [ 4] [0810] +07:44:34 [ 7] [ 10] [0320004434] +07:44:34 [ 11] [ 6] [806861] +07:44:34 [ 15] [ 4] [0320] +07:44:34 [ 37] [ 12] [57907806861] +07:44:34 [ 39] [ 2] [00] +07:44:34 [ 70] [ 3] [001] +07:44:34 ============================================================================ +07:44:34 Sending to : +07:44:34 ============================================================================ +07:44:34 + + +waiting on router queue for slot.... +07:44:39 ============================================================================ +07:44:39 Slot Id : <393> +07:44:39 Transaction Type : REQUEST +07:44:39 Received From : +07:44:39 ============================================================================ +07:44:39 FNo. Len. Field Value +07:44:39 ============================================================================ +07:44:39 [ 1] [ 4] [0800] +07:44:39 [ 7] [ 10] [0320124347] +07:44:39 [ 11] [ 6] [155238] +07:44:39 [ 70] [ 3] [301] +07:44:39 ============================================================================ +07:44:39 + + +waiting on router queue for slot.... +07:44:39 Sending to : +07:44:39 ============================================================================ +07:44:39 ============================================================================ +07:44:39 Slot Id : <393> +07:44:39 Transaction Type : RESPONSE +07:44:39 Received From : +07:44:39 ============================================================================ +07:44:39 FNo. Len. Field Value +07:44:39 ============================================================================ +07:44:39 [ 1] [ 4] [0810] +07:44:39 [ 7] [ 10] [0320124347] +07:44:39 [ 11] [ 6] [155238] +07:44:39 [ 39] [ 2] [00] +07:44:39 [ 70] [ 3] [301] +07:44:39 ============================================================================ +07:44:39 Calculate Source COMM Id = 2 +07:44:39 ============================================================================ +07:44:39 + + +waiting on router queue for slot.... +07:44:48 ============================================================================ +07:44:48 Slot Id : <349> +07:44:48 Transaction Type : REQUEST +07:44:48 Received From : +07:44:48 ============================================================================ +07:44:48 FNo. Len. Field Value +07:44:48 ============================================================================ +07:44:48 [ 1] [ 4] [0800] +07:44:48 [ 7] [ 10] [0320145638] +07:44:48 [ 11] [ 6] [075638] +07:44:48 [ 37] [ 12] [57907075638] +07:44:48 [ 70] [ 3] [301] +07:44:48 ============================================================================ +07:44:48 + + +waiting on router queue for slot.... +07:44:48 Sending to : +07:44:48 ============================================================================ +07:44:48 ============================================================================ +07:44:48 Slot Id : <349> +07:44:48 Transaction Type : RESPONSE +07:44:48 Received From : +07:44:48 ============================================================================ +07:44:48 FNo. Len. Field Value +07:44:48 ============================================================================ +07:44:48 [ 1] [ 4] [0810] +07:44:48 [ 7] [ 10] [0320145638] +07:44:48 [ 11] [ 6] [075638] +07:44:48 [ 37] [ 12] [579070756380] +07:44:48 [ 39] [ 2] [00] +07:44:48 [ 70] [ 3] [810] +07:44:48 ============================================================================ +07:44:48 Calculate Source COMM Id = 6 +07:44:48 ============================================================================ +07:44:48 + + +waiting on router queue for slot.... +07:44:54 ============================================================================ +07:44:54 Slot Id : <413> +07:44:54 Transaction Type : REQUEST +07:44:54 Received From : +07:44:54 ============================================================================ +07:44:54 FNo. Len. Field Value +07:44:54 ============================================================================ +07:44:54 [ 1] [ 4] [0800] +07:44:54 [ 7] [ 10] [0320005242] +07:44:54 [ 11] [ 6] [015962] +07:44:54 [ 37] [ 12] [57907015962] +07:44:54 [ 70] [ 3] [301] +07:44:54 ============================================================================ +07:44:54 + + +waiting on router queue for slot.... +07:44:54 Sending to : +07:44:54 ============================================================================ +07:44:54 ============================================================================ +07:44:54 Slot Id : <413> +07:44:54 Transaction Type : RESPONSE +07:44:54 Received From : +07:44:54 ============================================================================ +07:44:54 FNo. Len. Field Value +07:44:54 ============================================================================ +07:44:54 [ 1] [ 4] [0810] +07:44:54 [ 7] [ 10] [0320005242] +07:44:54 [ 11] [ 6] [015962] +07:44:54 [ 37] [ 12] [579070159620] +07:44:54 [ 39] [ 2] [00] +07:44:54 [ 70] [ 3] [810] +07:44:54 ============================================================================ +07:44:54 Calculate Source COMM Id = 1 +07:44:54 ============================================================================ +07:44:54 + + +waiting on router queue for slot.... +07:44:54 ============================================================================ +07:44:54 Slot Id : <397> +07:44:54 Transaction Type : REQUEST +07:44:54 Received From : +07:44:54 ============================================================================ +07:44:54 FNo. Len. Field Value +07:44:54 ============================================================================ +07:44:54 [ 1] [ 4] [0800] +07:44:54 [ 7] [ 10] [0320124403] +07:44:54 [ 11] [ 6] [155239] +07:44:54 [ 70] [ 3] [301] +07:44:54 ============================================================================ +07:44:54 + + +waiting on router queue for slot.... +07:44:54 Sending to : +07:44:54 ============================================================================ +07:44:54 ============================================================================ +07:44:54 Slot Id : <397> +07:44:54 Transaction Type : RESPONSE +07:44:54 Received From : +07:44:54 ============================================================================ +07:44:54 FNo. Len. Field Value +07:44:54 ============================================================================ +07:44:54 [ 1] [ 4] [0810] +07:44:54 [ 7] [ 10] [0320124403] +07:44:54 [ 11] [ 6] [155239] +07:44:54 [ 39] [ 2] [00] +07:44:54 [ 70] [ 3] [301] +07:44:54 ============================================================================ +07:44:54 Calculate Source COMM Id = 2 +07:44:54 ============================================================================ +07:44:54 + + +waiting on router queue for slot.... +07:45:06 ============================================================================ +07:45:06 Slot Id : <414> +07:45:06 Transaction Type : REQUEST +07:45:06 Received From : +07:45:06 ============================================================================ +07:45:06 FNo. Len. Field Value +07:45:06 ============================================================================ +07:45:06 [ 1] [ 4] [0800] +07:45:06 [ 7] [ 10] [0320124414] +07:45:06 [ 11] [ 6] [155240] +07:45:06 [ 70] [ 3] [301] +07:45:06 ============================================================================ +07:45:06 + + +waiting on router queue for slot.... +07:45:06 Sending to : +07:45:06 ============================================================================ +07:45:06 ============================================================================ +07:45:06 Slot Id : <414> +07:45:06 Transaction Type : RESPONSE +07:45:06 Received From : +07:45:06 ============================================================================ +07:45:06 FNo. Len. Field Value +07:45:06 ============================================================================ +07:45:06 [ 1] [ 4] [0810] +07:45:06 [ 7] [ 10] [0320124414] +07:45:06 [ 11] [ 6] [155240] +07:45:06 [ 39] [ 2] [00] +07:45:06 [ 70] [ 3] [301] +07:45:06 ============================================================================ +07:45:06 Calculate Source COMM Id = 2 +07:45:06 ============================================================================ +07:45:06 + + +waiting on router queue for slot.... +07:45:07 ============================================================================ +07:45:07 Slot Id : <400> +07:45:07 Transaction Type : REQUEST +07:45:07 Received From : +07:45:07 ============================================================================ +07:45:07 FNo. Len. Field Value +07:45:07 ============================================================================ +07:45:07 [ 1] [ 4] [0200] +07:45:07 [ 2] [ 16] [2206990000132423] +07:45:07 [ 3] [ 6] [011000] +07:45:07 [ 4] [ 12] [000007000000] +07:45:07 [ 7] [ 10] [0320074529] +07:45:07 [ 11] [ 6] [201525] +07:45:07 [ 12] [ 6] [073642] +07:45:07 [ 13] [ 4] [0320] +07:45:07 [ 14] [ 4] [9805] +07:45:07 [ 15] [ 4] [0320] +07:45:07 [ 18] [ 4] [6011] +07:45:07 [ 19] [ 3] [418] +07:45:07 [ 22] [ 3] [021] +07:45:07 [ 25] [ 2] [01] +07:45:07 [ 28] [ 9] [D00002000] +07:45:07 [ 32] [ 6] [198901] +07:45:07 [ 35] [ 32] [2206990000132423=980512611863284] +07:45:07 [ 37] [ 12] [507907201525] +07:45:07 [ 41] [ 8] [01529026] +07:45:07 [ 42] [ 15] [000000041529026] +07:45:07 [ 43] [ 40] [JDB ATM LTC VN ] +07:45:07 [ 49] [ 3] [418] +07:45:07 [ 52] [ 16] [E18356C2EC9B4475] +07:45:07 ============================================================================ +07:45:07 + + +waiting on router queue for slot.... +07:45:07 Sending to : +07:45:07 ============================================================================ +07:45:07 Sending to : +07:45:07 ============================================================================ +07:45:08 ============================================================================ +07:45:08 Slot Id : <400> +07:45:08 Transaction Type : REQUEST +07:45:08 Received From : +07:45:08 ============================================================================ +07:45:08 FNo. Len. Field Value +07:45:08 ============================================================================ +07:45:08 [ 1] [ 4] [0200] +07:45:08 [ 2] [ 16] [2206990000132423] +07:45:08 [ 3] [ 6] [011000] +07:45:08 [ 4] [ 12] [000007000000] +07:45:08 [ 7] [ 10] [0320074529] +07:45:08 [ 11] [ 6] [201525] +07:45:08 [ 12] [ 6] [073642] +07:45:08 [ 13] [ 4] [0320] +07:45:08 [ 14] [ 4] [9805] +07:45:08 [ 15] [ 4] [0320] +07:45:08 [ 18] [ 4] [6011] +07:45:08 [ 19] [ 3] [418] +07:45:08 [ 22] [ 3] [021] +07:45:08 [ 25] [ 2] [01] +07:45:08 [ 28] [ 9] [D00002000] +07:45:08 [ 32] [ 6] [198901] +07:45:08 [ 35] [ 32] [2206990000132423=980512611863284] +07:45:08 [ 37] [ 12] [507907201525] +07:45:08 [ 41] [ 8] [01529026] +07:45:08 [ 42] [ 15] [000000041529026] +07:45:08 [ 43] [ 40] [JDB ATM LTC VN ] +07:45:08 [ 49] [ 3] [418] +07:45:08 [ 52] [ 16] [E18356C2EC9B4475] +07:45:08 ============================================================================ +07:45:08 + + +waiting on router queue for slot.... +07:45:08 Sending to : +07:45:08 ============================================================================ +07:45:08 ============================================================================ +07:45:08 Slot Id : <400> +07:45:08 Transaction Type : REQUEST +07:45:08 Received From : +07:45:08 ============================================================================ +07:45:08 FNo. Len. Field Value +07:45:08 ============================================================================ +07:45:08 [ 1] [ 4] [0200] +07:45:08 [ 2] [ 16] [2206990000132423] +07:45:08 [ 3] [ 6] [011000] +07:45:08 [ 4] [ 12] [000007000000] +07:45:08 [ 7] [ 10] [0320074529] +07:45:08 [ 11] [ 6] [201525] +07:45:08 [ 12] [ 6] [073642] +07:45:08 [ 13] [ 4] [0320] +07:45:08 [ 14] [ 4] [9805] +07:45:08 [ 15] [ 4] [0320] +07:45:08 [ 18] [ 4] [6011] +07:45:08 [ 19] [ 3] [418] +07:45:08 [ 22] [ 3] [021] +07:45:08 [ 25] [ 2] [01] +07:45:08 [ 28] [ 9] [D00002000] +07:45:08 [ 32] [ 6] [198901] +07:45:08 [ 35] [ 32] [2206990000132423=980512611863284] +07:45:08 [ 37] [ 12] [507907201525] +07:45:08 [ 41] [ 8] [01529026] +07:45:08 [ 42] [ 15] [000000041529026] +07:45:08 [ 43] [ 40] [JDB ATM LTC VN ] +07:45:08 [ 49] [ 3] [418] +07:45:08 [ 52] [ 16] [7D4CB31078F21651] +07:45:08 ============================================================================ +07:45:08 + + +waiting on router queue for slot.... +07:45:08 Sending to : <1> +07:45:08 ============================================================================ +07:45:09 ============================================================================ +07:45:09 Slot Id : <400> +07:45:09 Transaction Type : RESPONSE +07:45:09 Received From : +07:45:09 ============================================================================ +07:45:09 FNo. Len. Field Value +07:45:09 ============================================================================ +07:45:09 [ 1] [ 4] [0210] +07:45:09 [ 2] [ 16] [2206990000132423] +07:45:09 [ 3] [ 6] [011000] +07:45:09 [ 4] [ 12] [000007000000] +07:45:09 [ 7] [ 10] [0320074529] +07:45:09 [ 11] [ 6] [201525] +07:45:09 [ 12] [ 6] [073642] +07:45:09 [ 13] [ 4] [0320] +07:45:09 [ 15] [ 4] [0320] +07:45:09 [ 18] [ 4] [6011] +07:45:09 [ 32] [ 6] [198901] +07:45:09 [ 35] [ 32] [2206990000132423=980512611863284] +07:45:09 [ 37] [ 12] [507907201525] +07:45:09 [ 38] [ 6] [477787] +07:45:09 [ 39] [ 2] [00] +07:45:09 [ 41] [ 8] [01529026] +07:45:09 [ 49] [ 3] [418] +07:45:09 [ 54] [ 40] [1001418C0000061000001002418C000006100000] +07:45:09 ============================================================================ +07:45:09 Sending to : +07:45:09 ============================================================================ +07:45:09 + + +waiting on router queue for slot.... +07:45:11 ============================================================================ +07:45:11 Slot Id : <400> +07:45:11 Transaction Type : RESPONSE +07:45:11 Received From : +07:45:11 ============================================================================ +07:45:11 FNo. Len. Field Value +07:45:11 ============================================================================ +07:45:11 [ 1] [ 4] [0210] +07:45:11 [ 2] [ 16] [2206990000132423] +07:45:11 [ 3] [ 6] [011000] +07:45:11 [ 4] [ 12] [000007000000] +07:45:11 [ 7] [ 10] [0320074529] +07:45:11 [ 11] [ 6] [201525] +07:45:11 [ 12] [ 6] [073642] +07:45:11 [ 13] [ 4] [0320] +07:45:11 [ 15] [ 4] [0320] +07:45:11 [ 18] [ 4] [6011] +07:45:11 [ 32] [ 6] [198901] +07:45:11 [ 35] [ 32] [2206990000132423=980512611863284] +07:45:11 [ 37] [ 12] [507907201525] +07:45:11 [ 38] [ 6] [477787] +07:45:11 [ 39] [ 2] [00] +07:45:11 [ 41] [ 8] [01529026] +07:45:11 [ 49] [ 3] [418] +07:45:11 [ 54] [ 40] [1001418C0000061000001002418C000006100000] +07:45:11 ============================================================================ +07:45:11 Calculate Source COMM Id = 5 +07:45:11 ============================================================================ +07:45:11 + + +waiting on router queue for slot.... +07:45:17 ============================================================================ +07:45:17 Slot Id : <399> +07:45:17 Transaction Type : REQUEST +07:45:17 Received From : +07:45:17 ============================================================================ +07:45:17 FNo. Len. Field Value +07:45:17 ============================================================================ +07:45:17 [ 1] [ 4] [0800] +07:45:17 [ 7] [ 10] [0320124425] +07:45:17 [ 11] [ 6] [155241] +07:45:17 [ 70] [ 3] [301] +07:45:17 ============================================================================ +07:45:17 + + +waiting on router queue for slot.... +07:45:17 Sending to : +07:45:17 ============================================================================ +07:45:17 ============================================================================ +07:45:17 Slot Id : <399> +07:45:17 Transaction Type : RESPONSE +07:45:17 Received From : +07:45:17 ============================================================================ +07:45:17 FNo. Len. Field Value +07:45:17 ============================================================================ +07:45:17 [ 1] [ 4] [0810] +07:45:17 [ 7] [ 10] [0320124425] +07:45:17 [ 11] [ 6] [155241] +07:45:17 [ 39] [ 2] [00] +07:45:17 [ 70] [ 3] [301] +07:45:17 ============================================================================ +07:45:17 Calculate Source COMM Id = 2 +07:45:17 ============================================================================ +07:45:17 + + +waiting on router queue for slot.... +07:45:23 ============================================================================ +07:45:23 Slot Id : <394> +07:45:23 Transaction Type : REQUEST +07:45:23 Received From : +07:45:23 ============================================================================ +07:45:23 FNo. Len. Field Value +07:45:23 ============================================================================ +07:45:23 [ 1] [ 4] [0200] +07:45:23 [ 2] [ 16] [6688990108425404] +07:45:23 [ 3] [ 6] [011000] +07:45:23 [ 4] [ 12] [000100000000] +07:45:23 [ 7] [ 10] [0320074519] +07:45:23 [ 11] [ 6] [673393] +07:45:23 [ 12] [ 6] [074519] +07:45:23 [ 13] [ 4] [0320] +07:45:23 [ 15] [ 4] [0320] +07:45:23 [ 18] [ 4] [6011] +07:45:23 [ 22] [ 3] [900] +07:45:23 [ 25] [ 2] [02] +07:45:23 [ 28] [ 9] [D00002000] +07:45:23 [ 32] [ 6] [621354] +07:45:23 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:45:23 [ 37] [ 12] [507903499457] +07:45:23 [ 41] [ 8] [06002200] +07:45:23 [ 42] [ 15] [NATIVE ] +07:45:23 [ 43] [ 40] [Beng Market Beng LAO] +07:45:23 [ 49] [ 3] [418] +07:45:23 [ 52] [ 16] [193DDE6CEF0DA63D] +07:45:23 ============================================================================ +07:45:23 + + +waiting on router queue for slot.... +07:45:23 Sending to : +07:45:23 ============================================================================ +07:45:23 Sending to : +07:45:23 ============================================================================ +07:45:23 ============================================================================ +07:45:23 Slot Id : <394> +07:45:23 Transaction Type : REQUEST +07:45:23 Received From : +07:45:23 ============================================================================ +07:45:23 FNo. Len. Field Value +07:45:23 ============================================================================ +07:45:23 [ 1] [ 4] [0200] +07:45:23 [ 2] [ 16] [6688990108425404] +07:45:23 [ 3] [ 6] [011000] +07:45:23 [ 4] [ 12] [000100000000] +07:45:23 [ 7] [ 10] [0320074519] +07:45:23 [ 11] [ 6] [673393] +07:45:23 [ 12] [ 6] [074519] +07:45:23 [ 13] [ 4] [0320] +07:45:23 [ 15] [ 4] [0320] +07:45:23 [ 18] [ 4] [6011] +07:45:23 [ 22] [ 3] [900] +07:45:23 [ 25] [ 2] [02] +07:45:23 [ 28] [ 9] [D00002000] +07:45:23 [ 32] [ 6] [621354] +07:45:23 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:45:23 [ 37] [ 12] [507903499457] +07:45:23 [ 41] [ 8] [06002200] +07:45:23 [ 42] [ 15] [NATIVE ] +07:45:23 [ 43] [ 40] [Beng Market Beng LAO] +07:45:23 [ 49] [ 3] [418] +07:45:23 [ 52] [ 16] [193DDE6CEF0DA63D] +07:45:23 ============================================================================ +07:45:23 + + +waiting on router queue for slot.... +07:45:23 Sending to : +07:45:23 ============================================================================ +07:45:23 ============================================================================ +07:45:23 Slot Id : <394> +07:45:23 Transaction Type : REQUEST +07:45:23 Received From : +07:45:23 ============================================================================ +07:45:23 FNo. Len. Field Value +07:45:23 ============================================================================ +07:45:23 [ 1] [ 4] [0200] +07:45:23 [ 2] [ 16] [6688990108425404] +07:45:23 [ 3] [ 6] [011000] +07:45:23 [ 4] [ 12] [000100000000] +07:45:23 [ 7] [ 10] [0320074519] +07:45:23 [ 11] [ 6] [673393] +07:45:23 [ 12] [ 6] [074519] +07:45:23 [ 13] [ 4] [0320] +07:45:23 [ 15] [ 4] [0320] +07:45:23 [ 18] [ 4] [6011] +07:45:23 [ 22] [ 3] [900] +07:45:23 [ 25] [ 2] [02] +07:45:23 [ 28] [ 9] [D00002000] +07:45:23 [ 32] [ 6] [621354] +07:45:23 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:45:23 [ 37] [ 12] [507903499457] +07:45:23 [ 41] [ 8] [06002200] +07:45:23 [ 42] [ 15] [NATIVE ] +07:45:23 [ 43] [ 40] [Beng Market Beng LAO] +07:45:23 [ 49] [ 3] [418] +07:45:23 [ 52] [ 16] [14ECBF85E8FE7FCA] +07:45:23 ============================================================================ +07:45:23 + + +waiting on router queue for slot.... +07:45:23 Sending to : <4> +07:45:23 ============================================================================ +07:45:24 ============================================================================ +07:45:24 Slot Id : <394> +07:45:24 Transaction Type : RESPONSE +07:45:24 Received From : +07:45:24 ============================================================================ +07:45:24 FNo. Len. Field Value +07:45:24 ============================================================================ +07:45:24 [ 1] [ 4] [0210] +07:45:24 [ 2] [ 16] [6688990108425404] +07:45:24 [ 3] [ 6] [011000] +07:45:24 [ 4] [ 12] [000100000000] +07:45:24 [ 11] [ 6] [673393] +07:45:24 [ 12] [ 6] [074519] +07:45:24 [ 15] [ 4] [0320] +07:45:24 [ 18] [ 4] [6011] +07:45:24 [ 32] [ 6] [621354] +07:45:24 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:45:24 [ 37] [ 12] [507903499457] +07:45:24 [ 38] [ 6] [370250] +07:45:24 [ 39] [ 2] [00] +07:45:24 [ 41] [ 8] [06002200] +07:45:24 [ 49] [ 3] [418] +07:45:24 [ 54] [ 20] [1002418C000147222755] +07:45:24 ============================================================================ +07:45:24 Sending to : +07:45:24 ============================================================================ +07:45:24 + + +waiting on router queue for slot.... +07:45:26 ============================================================================ +07:45:26 Slot Id : <394> +07:45:26 Transaction Type : RESPONSE +07:45:26 Received From : +07:45:26 ============================================================================ +07:45:26 FNo. Len. Field Value +07:45:26 ============================================================================ +07:45:26 [ 1] [ 4] [0210] +07:45:26 [ 2] [ 16] [6688990108425404] +07:45:26 [ 3] [ 6] [011000] +07:45:26 [ 4] [ 12] [000100000000] +07:45:26 [ 11] [ 6] [673393] +07:45:26 [ 12] [ 6] [074519] +07:45:26 [ 15] [ 4] [0320] +07:45:26 [ 18] [ 4] [6011] +07:45:26 [ 32] [ 6] [621354] +07:45:26 [ 35] [ 37] [6688990108425404=44061231540472300000] +07:45:26 [ 37] [ 12] [507903499457] +07:45:26 [ 38] [ 6] [370250] +07:45:26 [ 39] [ 2] [00] +07:45:26 [ 41] [ 8] [06002200] +07:45:26 [ 49] [ 3] [418] +07:45:26 [ 54] [ 20] [1002418C000147222755] +07:45:26 ============================================================================ +07:45:26 Calculate Source COMM Id = 0 +07:45:26 ============================================================================ +07:45:26 + + +waiting on router queue for slot.... +07:45:26 ============================================================================ +07:45:26 Slot Id : <368> +07:45:26 Transaction Type : REQUEST +07:45:26 Received From : +07:45:26 ============================================================================ +07:45:26 FNo. Len. Field Value +07:45:26 ============================================================================ +07:45:26 [ 1] [ 4] [0200] +07:45:26 [ 2] [ 16] [6213545000160147] +07:45:26 [ 3] [ 6] [301000] +07:45:26 [ 7] [ 10] [0320004433] +07:45:26 [ 11] [ 6] [266864] +07:45:26 [ 12] [ 6] [074433] +07:45:26 [ 13] [ 4] [0320] +07:45:26 [ 14] [ 4] [4912] +07:45:26 [ 15] [ 4] [0320] +07:45:26 [ 18] [ 4] [6011] +07:45:26 [ 19] [ 3] [418] +07:45:26 [ 22] [ 3] [021] +07:45:26 [ 25] [ 2] [01] +07:45:26 [ 32] [ 6] [180893] +07:45:26 [ 35] [ 32] [6213545000160147=491212016014694] +07:45:26 [ 37] [ 12] [507900266864] +07:45:26 [ 41] [ 8] [0363CPSH] +07:45:26 [ 42] [ 15] [999999 ] +07:45:26 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:45:26 [ 49] [ 3] [418] +07:45:26 [ 52] [ 16] [932C611118927F8F] +07:45:26 ============================================================================ +07:45:26 + + +waiting on router queue for slot.... +07:45:26 Sending to : +07:45:26 ============================================================================ +07:45:26 Sending to : +07:45:26 ============================================================================ +07:45:26 ============================================================================ +07:45:26 Slot Id : <368> +07:45:26 Transaction Type : REQUEST +07:45:26 Received From : +07:45:26 ============================================================================ +07:45:26 FNo. Len. Field Value +07:45:26 ============================================================================ +07:45:26 [ 1] [ 4] [0200] +07:45:26 [ 2] [ 16] [6213545000160147] +07:45:26 [ 3] [ 6] [301000] +07:45:26 [ 7] [ 10] [0320004433] +07:45:26 [ 11] [ 6] [266864] +07:45:26 [ 12] [ 6] [074433] +07:45:26 [ 13] [ 4] [0320] +07:45:26 [ 14] [ 4] [4912] +07:45:26 [ 15] [ 4] [0320] +07:45:26 [ 18] [ 4] [6011] +07:45:26 [ 19] [ 3] [418] +07:45:26 [ 22] [ 3] [021] +07:45:26 [ 25] [ 2] [01] +07:45:26 [ 32] [ 6] [180893] +07:45:26 [ 35] [ 32] [6213545000160147=491212016014694] +07:45:26 [ 37] [ 12] [507900266864] +07:45:26 [ 41] [ 8] [0363CPSH] +07:45:26 [ 42] [ 15] [999999 ] +07:45:26 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:45:26 [ 49] [ 3] [418] +07:45:26 [ 52] [ 16] [932C611118927F8F] +07:45:26 ============================================================================ +07:45:26 + + +waiting on router queue for slot.... +07:45:26 Sending to : +07:45:26 ============================================================================ +07:45:26 ============================================================================ +07:45:26 Slot Id : <368> +07:45:26 Transaction Type : REQUEST +07:45:26 Received From : +07:45:26 ============================================================================ +07:45:26 FNo. Len. Field Value +07:45:26 ============================================================================ +07:45:26 [ 1] [ 4] [0200] +07:45:26 [ 2] [ 16] [6213545000160147] +07:45:26 [ 3] [ 6] [301000] +07:45:26 [ 7] [ 10] [0320004433] +07:45:26 [ 11] [ 6] [266864] +07:45:26 [ 12] [ 6] [074433] +07:45:26 [ 13] [ 4] [0320] +07:45:26 [ 14] [ 4] [4912] +07:45:26 [ 15] [ 4] [0320] +07:45:26 [ 18] [ 4] [6011] +07:45:26 [ 19] [ 3] [418] +07:45:26 [ 22] [ 3] [021] +07:45:26 [ 25] [ 2] [01] +07:45:26 [ 32] [ 6] [180893] +07:45:26 [ 35] [ 32] [6213545000160147=491212016014694] +07:45:26 [ 37] [ 12] [507900266864] +07:45:26 [ 41] [ 8] [0363CPSH] +07:45:26 [ 42] [ 15] [999999 ] +07:45:26 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:45:26 [ 49] [ 3] [418] +07:45:26 [ 52] [ 16] [A4192494964B0492] +07:45:26 ============================================================================ +07:45:26 + + +waiting on router queue for slot.... +07:45:26 Sending to : <0> +07:45:26 ============================================================================ +07:45:28 ============================================================================ +07:45:28 Slot Id : <368> +07:45:28 Transaction Type : RESPONSE +07:45:28 Received From : +07:45:28 ============================================================================ +07:45:28 FNo. Len. Field Value +07:45:28 ============================================================================ +07:45:28 [ 1] [ 4] [0210] +07:45:28 [ 2] [ 16] [6213545000160147] +07:45:28 [ 3] [ 6] [301000] +07:45:28 [ 4] [ 12] [000000000000] +07:45:28 [ 7] [ 10] [0320004433] +07:45:28 [ 11] [ 6] [266864] +07:45:28 [ 12] [ 6] [074433] +07:45:28 [ 13] [ 4] [0320] +07:45:28 [ 15] [ 4] [0320] +07:45:28 [ 18] [ 4] [6011] +07:45:28 [ 19] [ 3] [418] +07:45:28 [ 32] [ 6] [180893] +07:45:28 [ 35] [ 32] [6213545000160147=491212016014694] +07:45:28 [ 37] [ 12] [507900266864] +07:45:28 [ 38] [ 6] [249301] +07:45:28 [ 39] [ 2] [00] +07:45:28 [ 41] [ 8] [0363CPSH] +07:45:28 [ 49] [ 3] [418] +07:45:28 [ 54] [ 40] [1001418C0001521130321002418C000152113032] +07:45:28 ============================================================================ +07:45:28 Sending to : +07:45:28 ============================================================================ +07:45:28 + + +waiting on router queue for slot.... +07:45:28 ============================================================================ +07:45:28 Slot Id : <387> +07:45:28 Transaction Type : REQUEST +07:45:28 Received From : +07:45:28 ============================================================================ +07:45:28 FNo. Len. Field Value +07:45:28 ============================================================================ +07:45:28 [ 1] [ 4] [0800] +07:45:28 [ 7] [ 10] [0320124437] +07:45:28 [ 11] [ 6] [155242] +07:45:28 [ 70] [ 3] [301] +07:45:28 ============================================================================ +07:45:28 + + +waiting on router queue for slot.... +07:45:28 Sending to : +07:45:28 ============================================================================ +07:45:28 ============================================================================ +07:45:28 Slot Id : <387> +07:45:28 Transaction Type : RESPONSE +07:45:28 Received From : +07:45:28 ============================================================================ +07:45:28 FNo. Len. Field Value +07:45:28 ============================================================================ +07:45:28 [ 1] [ 4] [0810] +07:45:28 [ 7] [ 10] [0320124437] +07:45:28 [ 11] [ 6] [155242] +07:45:28 [ 39] [ 2] [00] +07:45:28 [ 70] [ 3] [301] +07:45:28 ============================================================================ +07:45:28 Calculate Source COMM Id = 2 +07:45:28 ============================================================================ +07:45:28 + + +waiting on router queue for slot.... +07:45:28 ============================================================================ +07:45:28 Slot Id : <368> +07:45:28 Transaction Type : RESPONSE +07:45:28 Received From : +07:45:28 ============================================================================ +07:45:28 FNo. Len. Field Value +07:45:28 ============================================================================ +07:45:28 [ 1] [ 4] [0210] +07:45:28 [ 2] [ 16] [6213545000160147] +07:45:28 [ 3] [ 6] [301000] +07:45:28 [ 4] [ 12] [000000000000] +07:45:28 [ 7] [ 10] [0320004433] +07:45:28 [ 11] [ 6] [266864] +07:45:28 [ 12] [ 6] [074433] +07:45:28 [ 13] [ 4] [0320] +07:45:28 [ 15] [ 4] [0320] +07:45:28 [ 18] [ 4] [6011] +07:45:28 [ 19] [ 3] [418] +07:45:28 [ 32] [ 6] [180893] +07:45:28 [ 35] [ 32] [6213545000160147=491212016014694] +07:45:28 [ 37] [ 12] [507900266864] +07:45:28 [ 38] [ 6] [249301] +07:45:28 [ 39] [ 2] [00] +07:45:28 [ 41] [ 8] [0363CPSH] +07:45:28 [ 49] [ 3] [418] +07:45:28 [ 54] [ 40] [1001418C0001521130321002418C000152113032] +07:45:28 ============================================================================ +07:45:28 Calculate Source COMM Id = 2 +07:45:28 ============================================================================ +07:45:28 + + +waiting on router queue for slot.... +07:45:36 ============================================================================ +07:45:36 Slot Id : <372> +07:45:36 Transaction Type : REQUEST +07:45:36 Received From : +07:45:36 ============================================================================ +07:45:36 FNo. Len. Field Value +07:45:36 ============================================================================ +07:45:36 [ 1] [ 4] [0800] +07:45:36 [ 2] [ 5] [02531] +07:45:36 [ 3] [ 6] [579078] +07:45:36 [ 7] [ 10] [0320004536] +07:45:36 [ 11] [ 6] [806862] +07:45:36 [ 15] [ 10] [0320004536] +07:45:36 [ 37] [ 11] [57907806862] +07:45:36 [ 70] [ 3] [001] +07:45:36 ============================================================================ +07:45:36 + + +waiting on router queue for slot.... +07:45:36 ============================================================================ +07:45:36 Slot Id : <372> +07:45:36 Transaction Type : RESPONSE +07:45:36 Received From : +07:45:36 ============================================================================ +07:45:36 FNo. Len. Field Value +07:45:36 ============================================================================ +07:45:36 [ 1] [ 4] [0810] +07:45:36 [ 7] [ 10] [0320004536] +07:45:36 [ 11] [ 6] [806862] +07:45:36 [ 15] [ 4] [0320] +07:45:36 [ 37] [ 12] [57907806862] +07:45:36 [ 39] [ 2] [00] +07:45:36 [ 70] [ 3] [001] +07:45:36 ============================================================================ +07:45:36 Sending to : +07:45:36 ============================================================================ +07:45:36 + + +waiting on router queue for slot.... +07:45:39 ============================================================================ +07:45:39 Slot Id : <418> +07:45:39 Transaction Type : REQUEST +07:45:39 Received From : +07:45:39 ============================================================================ +07:45:39 FNo. Len. Field Value +07:45:39 ============================================================================ +07:45:39 [ 1] [ 4] [0800] +07:45:39 [ 7] [ 10] [0320124447] +07:45:39 [ 11] [ 6] [155243] +07:45:39 [ 70] [ 3] [301] +07:45:39 ============================================================================ +07:45:39 + + +waiting on router queue for slot.... +07:45:39 Sending to : +07:45:39 ============================================================================ +07:45:39 ============================================================================ +07:45:39 Slot Id : <418> +07:45:39 Transaction Type : RESPONSE +07:45:39 Received From : +07:45:39 ============================================================================ +07:45:39 FNo. Len. Field Value +07:45:39 ============================================================================ +07:45:39 [ 1] [ 4] [0810] +07:45:39 [ 7] [ 10] [0320124447] +07:45:39 [ 11] [ 6] [155243] +07:45:39 [ 39] [ 2] [00] +07:45:39 [ 70] [ 3] [301] +07:45:39 ============================================================================ +07:45:39 Calculate Source COMM Id = 2 +07:45:39 ============================================================================ +07:45:39 + + +waiting on router queue for slot.... +07:45:44 ============================================================================ +07:45:44 Slot Id : <406> +07:45:44 Transaction Type : REQUEST +07:45:44 Received From : +07:45:44 ============================================================================ +07:45:44 FNo. Len. Field Value +07:45:44 ============================================================================ +07:45:44 [ 1] [ 4] [0200] +07:45:44 [ 2] [ 16] [6213545000785893] +07:45:44 [ 3] [ 6] [010000] +07:45:44 [ 4] [ 12] [000100000000] +07:45:44 [ 7] [ 10] [0320004451] +07:45:44 [ 11] [ 6] [266867] +07:45:44 [ 12] [ 6] [074451] +07:45:44 [ 13] [ 4] [0320] +07:45:44 [ 14] [ 4] [4912] +07:45:44 [ 15] [ 4] [0320] +07:45:44 [ 18] [ 4] [6011] +07:45:44 [ 19] [ 3] [418] +07:45:44 [ 22] [ 3] [021] +07:45:44 [ 25] [ 2] [01] +07:45:44 [ 28] [ 9] [D00002000] +07:45:44 [ 32] [ 6] [180893] +07:45:44 [ 35] [ 32] [6213545000785893=491212018589324] +07:45:44 [ 37] [ 12] [507900266867] +07:45:44 [ 41] [ 8] [0525XYBT] +07:45:44 [ 42] [ 15] [999999 ] +07:45:44 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:45:44 [ 49] [ 3] [418] +07:45:44 [ 52] [ 16] [C4753755497A5F3C] +07:45:44 ============================================================================ +07:45:44 + + +waiting on router queue for slot.... +07:45:44 Sending to : +07:45:44 ============================================================================ +07:45:44 Sending to : +07:45:44 ============================================================================ +07:45:44 ============================================================================ +07:45:44 Slot Id : <406> +07:45:44 Transaction Type : REQUEST +07:45:44 Received From : +07:45:44 ============================================================================ +07:45:44 FNo. Len. Field Value +07:45:44 ============================================================================ +07:45:44 [ 1] [ 4] [0200] +07:45:44 [ 2] [ 16] [6213545000785893] +07:45:44 [ 3] [ 6] [010000] +07:45:44 [ 4] [ 12] [000100000000] +07:45:44 [ 7] [ 10] [0320004451] +07:45:44 [ 11] [ 6] [266867] +07:45:44 [ 12] [ 6] [074451] +07:45:44 [ 13] [ 4] [0320] +07:45:44 [ 14] [ 4] [4912] +07:45:44 [ 15] [ 4] [0320] +07:45:44 [ 18] [ 4] [6011] +07:45:44 [ 19] [ 3] [418] +07:45:44 [ 22] [ 3] [021] +07:45:44 [ 25] [ 2] [01] +07:45:44 [ 28] [ 9] [D00002000] +07:45:44 [ 32] [ 6] [180893] +07:45:44 [ 35] [ 32] [6213545000785893=491212018589324] +07:45:44 [ 37] [ 12] [507900266867] +07:45:44 [ 41] [ 8] [0525XYBT] +07:45:44 [ 42] [ 15] [999999 ] +07:45:44 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:45:44 [ 49] [ 3] [418] +07:45:44 [ 52] [ 16] [C4753755497A5F3C] +07:45:44 ============================================================================ +07:45:44 + + +waiting on router queue for slot.... +07:45:44 Sending to : +07:45:44 ============================================================================ +07:45:44 ============================================================================ +07:45:44 Slot Id : <406> +07:45:44 Transaction Type : REQUEST +07:45:44 Received From : +07:45:44 ============================================================================ +07:45:44 FNo. Len. Field Value +07:45:44 ============================================================================ +07:45:44 [ 1] [ 4] [0200] +07:45:44 [ 2] [ 16] [6213545000785893] +07:45:44 [ 3] [ 6] [010000] +07:45:44 [ 4] [ 12] [000100000000] +07:45:44 [ 7] [ 10] [0320004451] +07:45:44 [ 11] [ 6] [266867] +07:45:44 [ 12] [ 6] [074451] +07:45:44 [ 13] [ 4] [0320] +07:45:44 [ 14] [ 4] [4912] +07:45:44 [ 15] [ 4] [0320] +07:45:44 [ 18] [ 4] [6011] +07:45:44 [ 19] [ 3] [418] +07:45:44 [ 22] [ 3] [021] +07:45:44 [ 25] [ 2] [01] +07:45:44 [ 28] [ 9] [D00002000] +07:45:44 [ 32] [ 6] [180893] +07:45:44 [ 35] [ 32] [6213545000785893=491212018589324] +07:45:44 [ 37] [ 12] [507900266867] +07:45:44 [ 41] [ 8] [0525XYBT] +07:45:44 [ 42] [ 15] [999999 ] +07:45:44 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:45:44 [ 49] [ 3] [418] +07:45:44 [ 52] [ 16] [23787FB07884B953] +07:45:44 ============================================================================ +07:45:44 + + +waiting on router queue for slot.... +07:45:44 Sending to : <0> +07:45:44 ============================================================================ +07:45:45 ============================================================================ +07:45:45 Slot Id : <406> +07:45:45 Transaction Type : RESPONSE +07:45:45 Received From : +07:45:45 ============================================================================ +07:45:45 FNo. Len. Field Value +07:45:45 ============================================================================ +07:45:45 [ 1] [ 4] [0210] +07:45:45 [ 2] [ 16] [6213545000785893] +07:45:45 [ 3] [ 6] [010000] +07:45:45 [ 4] [ 12] [000100000000] +07:45:45 [ 7] [ 10] [0320004451] +07:45:45 [ 11] [ 6] [266867] +07:45:45 [ 12] [ 6] [074451] +07:45:45 [ 13] [ 4] [0320] +07:45:45 [ 15] [ 4] [0320] +07:45:45 [ 18] [ 4] [6011] +07:45:45 [ 19] [ 3] [418] +07:45:45 [ 32] [ 6] [180893] +07:45:45 [ 35] [ 32] [6213545000785893=491212018589324] +07:45:45 [ 37] [ 12] [507900266867] +07:45:45 [ 38] [ 6] [716997] +07:45:45 [ 39] [ 2] [00] +07:45:45 [ 41] [ 8] [0525XYBT] +07:45:45 [ 49] [ 3] [418] +07:45:45 [ 54] [ 40] [0001418C0000659189250002418C000065918925] +07:45:45 ============================================================================ +07:45:45 Sending to : +07:45:45 ============================================================================ +07:45:45 + + +waiting on router queue for slot.... +07:45:46 ============================================================================ +07:45:46 Slot Id : <406> +07:45:46 Transaction Type : RESPONSE +07:45:46 Received From : +07:45:46 ============================================================================ +07:45:46 FNo. Len. Field Value +07:45:46 ============================================================================ +07:45:46 [ 1] [ 4] [0210] +07:45:46 [ 2] [ 16] [6213545000785893] +07:45:46 [ 3] [ 6] [010000] +07:45:46 [ 4] [ 12] [000100000000] +07:45:46 [ 7] [ 10] [0320004451] +07:45:46 [ 11] [ 6] [266867] +07:45:46 [ 12] [ 6] [074451] +07:45:46 [ 13] [ 4] [0320] +07:45:46 [ 15] [ 4] [0320] +07:45:46 [ 18] [ 4] [6011] +07:45:46 [ 19] [ 3] [418] +07:45:46 [ 32] [ 6] [180893] +07:45:46 [ 35] [ 32] [6213545000785893=491212018589324] +07:45:46 [ 37] [ 12] [507900266867] +07:45:46 [ 38] [ 6] [716997] +07:45:46 [ 39] [ 2] [00] +07:45:46 [ 41] [ 8] [0525XYBT] +07:45:46 [ 49] [ 3] [418] +07:45:46 [ 54] [ 40] [0001418C0000659189250002418C000065918925] +07:45:46 ============================================================================ +07:45:46 Calculate Source COMM Id = 2 +07:45:46 ============================================================================ +07:45:46 + + +waiting on router queue for slot.... +07:45:53 ============================================================================ +07:45:53 Slot Id : <419> +07:45:53 Transaction Type : REQUEST +07:45:53 Received From : +07:45:53 ============================================================================ +07:45:53 FNo. Len. Field Value +07:45:53 ============================================================================ +07:45:53 [ 1] [ 4] [0800] +07:45:53 [ 7] [ 10] [0320145743] +07:45:53 [ 11] [ 6] [075743] +07:45:53 [ 37] [ 12] [57907075743] +07:45:53 [ 70] [ 3] [301] +07:45:53 ============================================================================ +07:45:53 + + +waiting on router queue for slot.... +07:45:53 Sending to : +07:45:53 ============================================================================ +07:45:53 ============================================================================ +07:45:53 Slot Id : <419> +07:45:53 Transaction Type : RESPONSE +07:45:53 Received From : +07:45:53 ============================================================================ +07:45:53 FNo. Len. Field Value +07:45:53 ============================================================================ +07:45:53 [ 1] [ 4] [0810] +07:45:53 [ 7] [ 10] [0320145743] +07:45:53 [ 11] [ 6] [075743] +07:45:53 [ 37] [ 12] [579070757430] +07:45:53 [ 39] [ 2] [00] +07:45:53 [ 70] [ 3] [810] +07:45:53 ============================================================================ +07:45:53 Calculate Source COMM Id = 6 +07:45:53 ============================================================================ +07:45:53 + + +waiting on router queue for slot.... +07:45:55 ============================================================================ +07:45:55 Slot Id : <380> +07:45:55 Transaction Type : REQUEST +07:45:55 Received From : +07:45:55 ============================================================================ +07:45:55 FNo. Len. Field Value +07:45:55 ============================================================================ +07:45:55 [ 1] [ 4] [0200] +07:45:55 [ 2] [ 16] [6213545000160147] +07:45:55 [ 3] [ 6] [010000] +07:45:55 [ 4] [ 12] [000100000000] +07:45:55 [ 7] [ 10] [0320004503] +07:45:55 [ 11] [ 6] [266870] +07:45:55 [ 12] [ 6] [074503] +07:45:55 [ 13] [ 4] [0320] +07:45:55 [ 14] [ 4] [4912] +07:45:55 [ 15] [ 4] [0320] +07:45:55 [ 18] [ 4] [6011] +07:45:55 [ 19] [ 3] [418] +07:45:55 [ 22] [ 3] [021] +07:45:55 [ 25] [ 2] [01] +07:45:55 [ 28] [ 9] [D00002000] +07:45:55 [ 32] [ 6] [180893] +07:45:55 [ 35] [ 32] [6213545000160147=491212016014694] +07:45:55 [ 37] [ 12] [507900266870] +07:45:55 [ 41] [ 8] [0363CPSH] +07:45:55 [ 42] [ 15] [999999 ] +07:45:55 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:45:55 [ 49] [ 3] [418] +07:45:55 [ 52] [ 16] [932C611118927F8F] +07:45:55 ============================================================================ +07:45:55 + + +waiting on router queue for slot.... +07:45:55 Sending to : +07:45:55 ============================================================================ +07:45:55 Sending to : +07:45:55 ============================================================================ +07:45:55 ============================================================================ +07:45:55 Slot Id : <411> +07:45:55 Transaction Type : REQUEST +07:45:55 Received From : +07:45:55 ============================================================================ +07:45:55 FNo. Len. Field Value +07:45:55 ============================================================================ +07:45:55 [ 1] [ 4] [0200] +07:45:55 [ 2] [ 16] [6213544001861092] +07:45:55 [ 3] [ 6] [302000] +07:45:55 [ 4] [ 12] [000000000000] +07:45:55 [ 7] [ 10] [0320074346] +07:45:55 [ 11] [ 6] [930851] +07:45:55 [ 12] [ 6] [074346] +07:45:55 [ 13] [ 4] [0320] +07:45:55 [ 15] [ 4] [0320] +07:45:55 [ 18] [ 4] [6011] +07:45:55 [ 19] [ 3] [418] +07:45:55 [ 22] [ 3] [021] +07:45:55 [ 25] [ 2] [01] +07:45:55 [ 28] [ 9] [D00000000] +07:45:55 [ 32] [ 6] [668899] +07:45:55 [ 35] [ 32] [6213544001861092=491212016109055] +07:45:55 [ 37] [ 12] [507902045642] +07:45:55 [ 41] [ 8] [03205002] +07:45:55 [ 42] [ 15] [APT ] +07:45:55 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:45:55 [ 49] [ 3] [418] +07:45:55 [ 52] [ 16] [486BBCE451C72452] +07:45:55 ============================================================================ +07:45:55 + + +waiting on router queue for slot.... +07:45:55 Sending to : +07:45:55 ============================================================================ +07:45:55 Sending to : +07:45:55 ============================================================================ +07:45:55 ============================================================================ +07:45:55 Slot Id : <380> +07:45:55 Transaction Type : REQUEST +07:45:55 Received From : +07:45:55 ============================================================================ +07:45:55 FNo. Len. Field Value +07:45:55 ============================================================================ +07:45:55 [ 1] [ 4] [0200] +07:45:55 [ 2] [ 16] [6213545000160147] +07:45:55 [ 3] [ 6] [010000] +07:45:55 [ 4] [ 12] [000100000000] +07:45:55 [ 7] [ 10] [0320004503] +07:45:55 [ 11] [ 6] [266870] +07:45:55 [ 12] [ 6] [074503] +07:45:55 [ 13] [ 4] [0320] +07:45:55 [ 14] [ 4] [4912] +07:45:55 [ 15] [ 4] [0320] +07:45:55 [ 18] [ 4] [6011] +07:45:55 [ 19] [ 3] [418] +07:45:55 [ 22] [ 3] [021] +07:45:55 [ 25] [ 2] [01] +07:45:55 [ 28] [ 9] [D00002000] +07:45:55 [ 32] [ 6] [180893] +07:45:55 [ 35] [ 32] [6213545000160147=491212016014694] +07:45:55 [ 37] [ 12] [507900266870] +07:45:55 [ 41] [ 8] [0363CPSH] +07:45:55 [ 42] [ 15] [999999 ] +07:45:55 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:45:55 [ 49] [ 3] [418] +07:45:55 [ 52] [ 16] [932C611118927F8F] +07:45:55 ============================================================================ +07:45:55 + + +waiting on router queue for slot.... +07:45:55 ============================================================================ +07:45:55 Slot Id : <411> +07:45:55 Transaction Type : REQUEST +07:45:55 Received From : +07:45:55 ============================================================================ +07:45:55 FNo. Len. Field Value +07:45:55 ============================================================================ +07:45:55 [ 1] [ 4] [0200] +07:45:55 [ 2] [ 16] [6213544001861092] +07:45:55 [ 3] [ 6] [302000] +07:45:55 [ 4] [ 12] [000000000000] +07:45:55 [ 7] [ 10] [0320074346] +07:45:55 [ 11] [ 6] [930851] +07:45:55 [ 12] [ 6] [074346] +07:45:55 [ 13] [ 4] [0320] +07:45:55 [ 15] [ 4] [0320] +07:45:55 [ 18] [ 4] [6011] +07:45:55 [ 19] [ 3] [418] +07:45:55 [ 22] [ 3] [021] +07:45:55 [ 25] [ 2] [01] +07:45:55 [ 28] [ 9] [D00000000] +07:45:55 [ 32] [ 6] [668899] +07:45:55 [ 35] [ 32] [6213544001861092=491212016109055] +07:45:55 [ 37] [ 12] [507902045642] +07:45:55 [ 41] [ 8] [03205002] +07:45:55 [ 42] [ 15] [APT ] +07:45:55 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:45:55 [ 49] [ 3] [418] +07:45:55 [ 52] [ 16] [486BBCE451C72452] +07:45:55 ============================================================================ +07:45:55 Sending to : +07:45:55 ============================================================================ +07:45:55 + + +waiting on router queue for slot.... +07:45:55 Sending to : +07:45:55 ============================================================================ +07:45:55 ============================================================================ +07:45:55 Slot Id : <380> +07:45:55 Transaction Type : REQUEST +07:45:55 Received From : +07:45:55 ============================================================================ +07:45:55 FNo. Len. Field Value +07:45:55 ============================================================================ +07:45:55 [ 1] [ 4] [0200] +07:45:55 [ 2] [ 16] [6213545000160147] +07:45:55 [ 3] [ 6] [010000] +07:45:55 [ 4] [ 12] [000100000000] +07:45:55 [ 7] [ 10] [0320004503] +07:45:55 [ 11] [ 6] [266870] +07:45:55 [ 12] [ 6] [074503] +07:45:55 [ 13] [ 4] [0320] +07:45:55 [ 14] [ 4] [4912] +07:45:55 [ 15] [ 4] [0320] +07:45:55 [ 18] [ 4] [6011] +07:45:55 [ 19] [ 3] [418] +07:45:55 [ 22] [ 3] [021] +07:45:55 [ 25] [ 2] [01] +07:45:55 [ 28] [ 9] [D00002000] +07:45:55 [ 32] [ 6] [180893] +07:45:55 [ 35] [ 32] [6213545000160147=491212016014694] +07:45:55 [ 37] [ 12] [507900266870] +07:45:55 [ 41] [ 8] [0363CPSH] +07:45:55 [ 42] [ 15] [999999 ] +07:45:55 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:45:55 [ 49] [ 3] [418] +07:45:55 [ 52] [ 16] [A4192494964B0492] +07:45:55 ============================================================================ +07:45:55 + + +waiting on router queue for slot.... +07:45:55 Sending to : <0> +07:45:55 ============================================================================ +07:45:55 ============================================================================ +07:45:55 Slot Id : <411> +07:45:55 Transaction Type : REQUEST +07:45:55 Received From : +07:45:55 ============================================================================ +07:45:55 FNo. Len. Field Value +07:45:55 ============================================================================ +07:45:55 [ 1] [ 4] [0200] +07:45:55 [ 2] [ 16] [6213544001861092] +07:45:55 [ 3] [ 6] [302000] +07:45:55 [ 4] [ 12] [000000000000] +07:45:55 [ 7] [ 10] [0320074346] +07:45:55 [ 11] [ 6] [930851] +07:45:55 [ 12] [ 6] [074346] +07:45:55 [ 13] [ 4] [0320] +07:45:55 [ 15] [ 4] [0320] +07:45:55 [ 18] [ 4] [6011] +07:45:55 [ 19] [ 3] [418] +07:45:55 [ 22] [ 3] [021] +07:45:55 [ 25] [ 2] [01] +07:45:55 [ 28] [ 9] [D00000000] +07:45:55 [ 32] [ 6] [668899] +07:45:55 [ 35] [ 32] [6213544001861092=491212016109055] +07:45:55 [ 37] [ 12] [507902045642] +07:45:55 [ 41] [ 8] [03205002] +07:45:55 [ 42] [ 15] [APT ] +07:45:55 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:45:55 [ 49] [ 3] [418] +07:45:55 [ 52] [ 16] [4758B363E7E69E35] +07:45:55 ============================================================================ +07:45:55 + + +waiting on router queue for slot.... +07:45:55 Sending to : <0> +07:45:55 ============================================================================ +07:45:55 ============================================================================ +07:45:55 Slot Id : <411> +07:45:55 Transaction Type : RESPONSE +07:45:55 Received From : +07:45:55 ============================================================================ +07:45:55 FNo. Len. Field Value +07:45:55 ============================================================================ +07:45:55 [ 1] [ 4] [0210] +07:45:55 [ 2] [ 16] [6213544001861092] +07:45:55 [ 3] [ 6] [302000] +07:45:55 [ 4] [ 12] [000000000000] +07:45:55 [ 7] [ 10] [0320074346] +07:45:55 [ 11] [ 6] [930851] +07:45:55 [ 12] [ 6] [074346] +07:45:55 [ 13] [ 4] [0320] +07:45:55 [ 15] [ 4] [0320] +07:45:55 [ 18] [ 4] [6011] +07:45:55 [ 19] [ 3] [418] +07:45:55 [ 32] [ 6] [668899] +07:45:55 [ 35] [ 32] [6213544001861092=491212016109055] +07:45:55 [ 37] [ 12] [507902045642] +07:45:55 [ 38] [ 6] [962282] +07:45:55 [ 39] [ 2] [00] +07:45:55 [ 41] [ 8] [03205002] +07:45:55 [ 49] [ 3] [418] +07:45:55 [ 54] [ 40] [2001418C0004245306382002418C000424530638] +07:45:55 ============================================================================ +07:45:55 Sending to : +07:45:55 ============================================================================ +07:45:55 + + +waiting on router queue for slot.... +07:45:56 ============================================================================ +07:45:56 Slot Id : <380> +07:45:56 Transaction Type : RESPONSE +07:45:56 Received From : +07:45:56 ============================================================================ +07:45:56 FNo. Len. Field Value +07:45:56 ============================================================================ +07:45:56 [ 1] [ 4] [0210] +07:45:56 [ 2] [ 16] [6213545000160147] +07:45:56 [ 3] [ 6] [010000] +07:45:56 [ 4] [ 12] [000100000000] +07:45:56 [ 7] [ 10] [0320004503] +07:45:56 [ 11] [ 6] [266870] +07:45:56 [ 12] [ 6] [074503] +07:45:56 [ 13] [ 4] [0320] +07:45:56 [ 15] [ 4] [0320] +07:45:56 [ 18] [ 4] [6011] +07:45:56 [ 19] [ 3] [418] +07:45:56 [ 32] [ 6] [180893] +07:45:56 [ 35] [ 32] [6213545000160147=491212016014694] +07:45:56 [ 37] [ 12] [507900266870] +07:45:56 [ 38] [ 6] [845270] +07:45:56 [ 39] [ 2] [00] +07:45:56 [ 41] [ 8] [0363CPSH] +07:45:56 [ 49] [ 3] [418] +07:45:56 [ 54] [ 40] [0001418C0000519130320002418C000051913032] +07:45:56 ============================================================================ +07:45:56 Sending to : +07:45:56 ============================================================================ +07:45:56 + + +waiting on router queue for slot.... +07:45:57 ============================================================================ +07:45:57 Slot Id : <411> +07:45:57 Transaction Type : RESPONSE +07:45:57 Received From : +07:45:57 ============================================================================ +07:45:57 FNo. Len. Field Value +07:45:57 ============================================================================ +07:45:57 [ 1] [ 4] [0210] +07:45:57 [ 2] [ 16] [6213544001861092] +07:45:57 [ 3] [ 6] [302000] +07:45:57 [ 4] [ 12] [000000000000] +07:45:57 [ 7] [ 10] [0320074346] +07:45:57 [ 11] [ 6] [930851] +07:45:57 [ 12] [ 6] [074346] +07:45:57 [ 13] [ 4] [0320] +07:45:57 [ 15] [ 4] [0320] +07:45:57 [ 18] [ 4] [6011] +07:45:57 [ 19] [ 3] [418] +07:45:57 [ 32] [ 6] [668899] +07:45:57 [ 35] [ 32] [6213544001861092=491212016109055] +07:45:57 [ 37] [ 12] [507902045642] +07:45:57 [ 38] [ 6] [962282] +07:45:57 [ 39] [ 2] [00] +07:45:57 [ 41] [ 8] [03205002] +07:45:57 [ 49] [ 3] [418] +07:45:57 [ 54] [ 40] [2001418C0004245306382002418C000424530638] +07:45:57 ============================================================================ +07:45:57 Calculate Source COMM Id = 4 +07:45:57 ============================================================================ +07:45:57 + + +waiting on router queue for slot.... +07:45:58 ============================================================================ +07:45:58 Slot Id : <380> +07:45:58 Transaction Type : RESPONSE +07:45:58 Received From : +07:45:58 ============================================================================ +07:45:58 FNo. Len. Field Value +07:45:58 ============================================================================ +07:45:58 [ 1] [ 4] [0210] +07:45:58 [ 2] [ 16] [6213545000160147] +07:45:58 [ 3] [ 6] [010000] +07:45:58 [ 4] [ 12] [000100000000] +07:45:58 [ 7] [ 10] [0320004503] +07:45:58 [ 11] [ 6] [266870] +07:45:58 [ 12] [ 6] [074503] +07:45:58 [ 13] [ 4] [0320] +07:45:58 [ 15] [ 4] [0320] +07:45:58 [ 18] [ 4] [6011] +07:45:58 [ 19] [ 3] [418] +07:45:58 [ 32] [ 6] [180893] +07:45:58 [ 35] [ 32] [6213545000160147=491212016014694] +07:45:58 [ 37] [ 12] [507900266870] +07:45:58 [ 38] [ 6] [845270] +07:45:58 [ 39] [ 2] [00] +07:45:58 [ 41] [ 8] [0363CPSH] +07:45:58 [ 49] [ 3] [418] +07:45:58 [ 54] [ 40] [0001418C0000519130320002418C000051913032] +07:45:58 ============================================================================ +07:45:58 Calculate Source COMM Id = 2 +07:45:58 ============================================================================ +07:45:58 + + +waiting on router queue for slot.... +07:46:02 ============================================================================ +07:46:02 Slot Id : <407> +07:46:02 Transaction Type : REQUEST +07:46:02 Received From : +07:46:02 ============================================================================ +07:46:02 FNo. Len. Field Value +07:46:02 ============================================================================ +07:46:02 [ 1] [ 4] [0200] +07:46:02 [ 2] [ 16] [6688990040118174] +07:46:02 [ 3] [ 6] [010000] +07:46:02 [ 4] [ 12] [000050000000] +07:46:02 [ 7] [ 10] [0320004510] +07:46:02 [ 11] [ 6] [266873] +07:46:02 [ 12] [ 6] [074510] +07:46:02 [ 13] [ 4] [0320] +07:46:02 [ 14] [ 4] [9803] +07:46:02 [ 15] [ 4] [0320] +07:46:02 [ 18] [ 4] [6011] +07:46:02 [ 19] [ 3] [418] +07:46:02 [ 22] [ 3] [021] +07:46:02 [ 25] [ 2] [01] +07:46:02 [ 28] [ 9] [D00002000] +07:46:02 [ 32] [ 6] [180893] +07:46:02 [ 35] [ 37] [6688990040118174=98031261527375800000] +07:46:02 [ 37] [ 12] [507900266873] +07:46:02 [ 41] [ 8] [0485HPXT] +07:46:02 [ 42] [ 15] [999999 ] +07:46:02 [ 43] [ 40] [ATM XAMTAI HUAPHAN PRO, Xamtai, Lao Peop] +07:46:02 [ 49] [ 3] [418] +07:46:02 [ 52] [ 16] [62C51B3D11D44A03] +07:46:02 ============================================================================ +07:46:02 + + +waiting on router queue for slot.... +07:46:02 Sending to : +07:46:02 ============================================================================ +07:46:02 Sending to : +07:46:02 ============================================================================ +07:46:03 ============================================================================ +07:46:03 Slot Id : <407> +07:46:03 Transaction Type : REQUEST +07:46:03 Received From : +07:46:03 ============================================================================ +07:46:03 FNo. Len. Field Value +07:46:03 ============================================================================ +07:46:03 [ 1] [ 4] [0200] +07:46:03 [ 2] [ 16] [6688990040118174] +07:46:03 [ 3] [ 6] [010000] +07:46:03 [ 4] [ 12] [000050000000] +07:46:03 [ 7] [ 10] [0320004510] +07:46:03 [ 11] [ 6] [266873] +07:46:03 [ 12] [ 6] [074510] +07:46:03 [ 13] [ 4] [0320] +07:46:03 [ 14] [ 4] [9803] +07:46:03 [ 15] [ 4] [0320] +07:46:03 [ 18] [ 4] [6011] +07:46:03 [ 19] [ 3] [418] +07:46:03 [ 22] [ 3] [021] +07:46:03 [ 25] [ 2] [01] +07:46:03 [ 28] [ 9] [D00002000] +07:46:03 [ 32] [ 6] [180893] +07:46:03 [ 35] [ 37] [6688990040118174=98031261527375800000] +07:46:03 [ 37] [ 12] [507900266873] +07:46:03 [ 41] [ 8] [0485HPXT] +07:46:03 [ 42] [ 15] [999999 ] +07:46:03 [ 43] [ 40] [ATM XAMTAI HUAPHAN PRO, Xamtai, Lao Peop] +07:46:03 [ 49] [ 3] [418] +07:46:03 [ 52] [ 16] [62C51B3D11D44A03] +07:46:03 ============================================================================ +07:46:03 + + +waiting on router queue for slot.... +07:46:03 Sending to : +07:46:03 ============================================================================ +07:46:03 ============================================================================ +07:46:03 Slot Id : <407> +07:46:03 Transaction Type : REQUEST +07:46:03 Received From : +07:46:03 ============================================================================ +07:46:03 FNo. Len. Field Value +07:46:03 ============================================================================ +07:46:03 [ 1] [ 4] [0200] +07:46:03 [ 2] [ 16] [6688990040118174] +07:46:03 [ 3] [ 6] [010000] +07:46:03 [ 4] [ 12] [000050000000] +07:46:03 [ 7] [ 10] [0320004510] +07:46:03 [ 11] [ 6] [266873] +07:46:03 [ 12] [ 6] [074510] +07:46:03 [ 13] [ 4] [0320] +07:46:03 [ 14] [ 4] [9803] +07:46:03 [ 15] [ 4] [0320] +07:46:03 [ 18] [ 4] [6011] +07:46:03 [ 19] [ 3] [418] +07:46:03 [ 22] [ 3] [021] +07:46:03 [ 25] [ 2] [01] +07:46:03 [ 28] [ 9] [D00002000] +07:46:03 [ 32] [ 6] [180893] +07:46:03 [ 35] [ 37] [6688990040118174=98031261527375800000] +07:46:03 [ 37] [ 12] [507900266873] +07:46:03 [ 41] [ 8] [0485HPXT] +07:46:03 [ 42] [ 15] [999999 ] +07:46:03 [ 43] [ 40] [ATM XAMTAI HUAPHAN PRO, Xamtai, Lao Peop] +07:46:03 [ 49] [ 3] [418] +07:46:03 [ 52] [ 16] [DBC0B567BF0CCE1B] +07:46:03 ============================================================================ +07:46:03 + + +waiting on router queue for slot.... +07:46:03 Sending to : <0> +07:46:03 ============================================================================ +07:46:03 ============================================================================ +07:46:03 Slot Id : <407> +07:46:03 Transaction Type : RESPONSE +07:46:03 Received From : +07:46:03 ============================================================================ +07:46:03 FNo. Len. Field Value +07:46:03 ============================================================================ +07:46:03 [ 1] [ 4] [0210] +07:46:03 [ 2] [ 16] [6688990040118174] +07:46:03 [ 3] [ 6] [010000] +07:46:03 [ 4] [ 12] [000050000000] +07:46:03 [ 7] [ 10] [0320004510] +07:46:03 [ 11] [ 6] [266873] +07:46:03 [ 12] [ 6] [074510] +07:46:03 [ 13] [ 4] [0320] +07:46:03 [ 15] [ 4] [0320] +07:46:03 [ 18] [ 4] [6011] +07:46:03 [ 19] [ 3] [418] +07:46:03 [ 22] [ 3] [021] +07:46:03 [ 32] [ 6] [180893] +07:46:03 [ 35] [ 37] [6688990040118174=98031261527375800000] +07:46:03 [ 37] [ 12] [507900266873] +07:46:03 [ 39] [ 2] [14] +07:46:03 [ 41] [ 8] [0485HPXT] +07:46:03 [ 49] [ 3] [418] +07:46:03 ============================================================================ +07:46:03 Sending to : +07:46:03 ============================================================================ +07:46:03 + + +waiting on router queue for slot.... +07:46:04 ============================================================================ +07:46:04 Slot Id : <407> +07:46:04 Transaction Type : RESPONSE +07:46:04 Received From : +07:46:04 ============================================================================ +07:46:04 FNo. Len. Field Value +07:46:04 ============================================================================ +07:46:04 [ 1] [ 4] [0210] +07:46:04 [ 2] [ 16] [6688990040118174] +07:46:04 [ 3] [ 6] [010000] +07:46:04 [ 4] [ 12] [000050000000] +07:46:04 [ 7] [ 10] [0320004510] +07:46:04 [ 11] [ 6] [266873] +07:46:04 [ 12] [ 6] [074510] +07:46:04 [ 13] [ 4] [0320] +07:46:04 [ 15] [ 4] [0320] +07:46:04 [ 18] [ 4] [6011] +07:46:04 [ 19] [ 3] [418] +07:46:04 [ 22] [ 3] [021] +07:46:04 [ 32] [ 6] [180893] +07:46:04 [ 35] [ 37] [6688990040118174=98031261527375800000] +07:46:04 [ 37] [ 12] [507900266873] +07:46:04 [ 39] [ 2] [14] +07:46:04 [ 41] [ 8] [0485HPXT] +07:46:04 [ 49] [ 3] [418] +07:46:04 ============================================================================ +07:46:04 Calculate Source COMM Id = 2 +07:46:04 ============================================================================ +07:46:04 + + +waiting on router queue for slot.... +07:46:15 ============================================================================ +07:46:15 Slot Id : <384> +07:46:15 Transaction Type : REQUEST +07:46:15 Received From : +07:46:15 ============================================================================ +07:46:15 FNo. Len. Field Value +07:46:15 ============================================================================ +07:46:15 [ 1] [ 4] [0800] +07:46:15 [ 7] [ 10] [0320124523] +07:46:15 [ 11] [ 6] [155244] +07:46:15 [ 70] [ 3] [301] +07:46:15 ============================================================================ +07:46:15 + + +waiting on router queue for slot.... +07:46:15 Sending to : +07:46:15 ============================================================================ +07:46:15 ============================================================================ +07:46:15 Slot Id : <384> +07:46:15 Transaction Type : RESPONSE +07:46:15 Received From : +07:46:15 ============================================================================ +07:46:15 FNo. Len. Field Value +07:46:15 ============================================================================ +07:46:15 [ 1] [ 4] [0810] +07:46:15 [ 7] [ 10] [0320124523] +07:46:15 [ 11] [ 6] [155244] +07:46:15 [ 39] [ 2] [00] +07:46:15 [ 70] [ 3] [301] +07:46:15 ============================================================================ +07:46:15 Calculate Source COMM Id = 2 +07:46:15 ============================================================================ +07:46:15 + + +waiting on router queue for slot.... +07:46:16 ============================================================================ +07:46:16 Slot Id : <401> +07:46:16 Transaction Type : REQUEST +07:46:16 Received From : +07:46:16 ============================================================================ +07:46:16 FNo. Len. Field Value +07:46:16 ============================================================================ +07:46:16 [ 1] [ 4] [0200] +07:46:16 [ 2] [ 16] [6213544001861092] +07:46:16 [ 3] [ 6] [301000] +07:46:16 [ 4] [ 12] [000000000000] +07:46:16 [ 7] [ 10] [0320074408] +07:46:16 [ 11] [ 6] [930864] +07:46:16 [ 12] [ 6] [074408] +07:46:16 [ 13] [ 4] [0320] +07:46:16 [ 15] [ 4] [0320] +07:46:16 [ 18] [ 4] [6011] +07:46:16 [ 19] [ 3] [418] +07:46:16 [ 22] [ 3] [021] +07:46:16 [ 25] [ 2] [01] +07:46:16 [ 28] [ 9] [D00000000] +07:46:16 [ 32] [ 6] [668899] +07:46:16 [ 35] [ 32] [6213544001861092=491212016109055] +07:46:16 [ 37] [ 12] [507902045643] +07:46:16 [ 41] [ 8] [03205002] +07:46:16 [ 42] [ 15] [APT ] +07:46:16 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:46:16 [ 49] [ 3] [418] +07:46:16 [ 52] [ 16] [486BBCE451C72452] +07:46:16 ============================================================================ +07:46:16 + + +waiting on router queue for slot.... +07:46:16 Sending to : +07:46:16 ============================================================================ +07:46:16 Sending to : +07:46:16 ============================================================================ +07:46:16 ============================================================================ +07:46:16 Slot Id : <401> +07:46:16 Transaction Type : REQUEST +07:46:16 Received From : +07:46:16 ============================================================================ +07:46:16 FNo. Len. Field Value +07:46:16 ============================================================================ +07:46:16 [ 1] [ 4] [0200] +07:46:16 [ 2] [ 16] [6213544001861092] +07:46:16 [ 3] [ 6] [301000] +07:46:16 [ 4] [ 12] [000000000000] +07:46:16 [ 7] [ 10] [0320074408] +07:46:16 [ 11] [ 6] [930864] +07:46:16 [ 12] [ 6] [074408] +07:46:16 [ 13] [ 4] [0320] +07:46:16 [ 15] [ 4] [0320] +07:46:16 [ 18] [ 4] [6011] +07:46:16 [ 19] [ 3] [418] +07:46:16 [ 22] [ 3] [021] +07:46:16 [ 25] [ 2] [01] +07:46:16 [ 28] [ 9] [D00000000] +07:46:16 [ 32] [ 6] [668899] +07:46:16 [ 35] [ 32] [6213544001861092=491212016109055] +07:46:16 [ 37] [ 12] [507902045643] +07:46:16 [ 41] [ 8] [03205002] +07:46:16 [ 42] [ 15] [APT ] +07:46:16 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:46:16 [ 49] [ 3] [418] +07:46:16 [ 52] [ 16] [486BBCE451C72452] +07:46:16 ============================================================================ +07:46:16 + + +waiting on router queue for slot.... +07:46:16 Sending to : +07:46:16 ============================================================================ +07:46:16 ============================================================================ +07:46:16 Slot Id : <401> +07:46:16 Transaction Type : REQUEST +07:46:16 Received From : +07:46:16 ============================================================================ +07:46:16 FNo. Len. Field Value +07:46:16 ============================================================================ +07:46:16 [ 1] [ 4] [0200] +07:46:16 [ 2] [ 16] [6213544001861092] +07:46:16 [ 3] [ 6] [301000] +07:46:16 [ 4] [ 12] [000000000000] +07:46:16 [ 7] [ 10] [0320074408] +07:46:16 [ 11] [ 6] [930864] +07:46:16 [ 12] [ 6] [074408] +07:46:16 [ 13] [ 4] [0320] +07:46:16 [ 15] [ 4] [0320] +07:46:16 [ 18] [ 4] [6011] +07:46:16 [ 19] [ 3] [418] +07:46:16 [ 22] [ 3] [021] +07:46:16 [ 25] [ 2] [01] +07:46:16 [ 28] [ 9] [D00000000] +07:46:16 [ 32] [ 6] [668899] +07:46:16 [ 35] [ 32] [6213544001861092=491212016109055] +07:46:16 [ 37] [ 12] [507902045643] +07:46:16 [ 41] [ 8] [03205002] +07:46:16 [ 42] [ 15] [APT ] +07:46:16 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:46:16 [ 49] [ 3] [418] +07:46:16 [ 52] [ 16] [4758B363E7E69E35] +07:46:16 ============================================================================ +07:46:16 + + +waiting on router queue for slot.... +07:46:16 Sending to : <0> +07:46:16 ============================================================================ +07:46:17 ============================================================================ +07:46:17 Slot Id : <401> +07:46:17 Transaction Type : RESPONSE +07:46:17 Received From : +07:46:17 ============================================================================ +07:46:17 FNo. Len. Field Value +07:46:17 ============================================================================ +07:46:17 [ 1] [ 4] [0210] +07:46:17 [ 2] [ 16] [6213544001861092] +07:46:17 [ 3] [ 6] [301000] +07:46:17 [ 4] [ 12] [000000000000] +07:46:17 [ 7] [ 10] [0320074408] +07:46:17 [ 11] [ 6] [930864] +07:46:17 [ 12] [ 6] [074408] +07:46:17 [ 13] [ 4] [0320] +07:46:17 [ 15] [ 4] [0320] +07:46:17 [ 18] [ 4] [6011] +07:46:17 [ 19] [ 3] [418] +07:46:17 [ 32] [ 6] [668899] +07:46:17 [ 35] [ 32] [6213544001861092=491212016109055] +07:46:17 [ 37] [ 12] [507902045643] +07:46:17 [ 38] [ 6] [231071] +07:46:17 [ 39] [ 2] [00] +07:46:17 [ 41] [ 8] [03205002] +07:46:17 [ 49] [ 3] [418] +07:46:17 [ 54] [ 40] [1001418C0004245306381002418C000424530638] +07:46:17 ============================================================================ +07:46:17 Sending to : +07:46:17 ============================================================================ +07:46:17 + + +waiting on router queue for slot.... +07:46:18 ============================================================================ +07:46:18 Slot Id : <401> +07:46:18 Transaction Type : RESPONSE +07:46:18 Received From : +07:46:18 ============================================================================ +07:46:18 FNo. Len. Field Value +07:46:18 ============================================================================ +07:46:18 [ 1] [ 4] [0210] +07:46:18 [ 2] [ 16] [6213544001861092] +07:46:18 [ 3] [ 6] [301000] +07:46:18 [ 4] [ 12] [000000000000] +07:46:18 [ 7] [ 10] [0320074408] +07:46:18 [ 11] [ 6] [930864] +07:46:18 [ 12] [ 6] [074408] +07:46:18 [ 13] [ 4] [0320] +07:46:18 [ 15] [ 4] [0320] +07:46:18 [ 18] [ 4] [6011] +07:46:18 [ 19] [ 3] [418] +07:46:18 [ 32] [ 6] [668899] +07:46:18 [ 35] [ 32] [6213544001861092=491212016109055] +07:46:18 [ 37] [ 12] [507902045643] +07:46:18 [ 38] [ 6] [231071] +07:46:18 [ 39] [ 2] [00] +07:46:18 [ 41] [ 8] [03205002] +07:46:18 [ 49] [ 3] [418] +07:46:18 [ 54] [ 40] [1001418C0004245306381002418C000424530638] +07:46:18 ============================================================================ +07:46:18 Calculate Source COMM Id = 4 +07:46:18 ============================================================================ +07:46:18 + + +waiting on router queue for slot.... +07:46:21 ============================================================================ +07:46:21 Slot Id : <416> +07:46:21 Transaction Type : REQUEST +07:46:21 Received From : +07:46:21 ============================================================================ +07:46:21 FNo. Len. Field Value +07:46:21 ============================================================================ +07:46:21 [ 1] [ 4] [0800] +07:46:21 [ 7] [ 10] [0320004412] +07:46:21 [ 11] [ 6] [016212] +07:46:21 [ 37] [ 12] [57907016212] +07:46:21 [ 70] [ 3] [301] +07:46:21 ============================================================================ +07:46:21 + + +waiting on router queue for slot.... +07:46:21 Sending to : +07:46:21 ============================================================================ +07:46:21 ============================================================================ +07:46:21 Slot Id : <416> +07:46:21 Transaction Type : RESPONSE +07:46:21 Received From : +07:46:21 ============================================================================ +07:46:21 FNo. Len. Field Value +07:46:21 ============================================================================ +07:46:21 [ 1] [ 4] [0810] +07:46:21 [ 7] [ 10] [0320004412] +07:46:21 [ 11] [ 6] [016212] +07:46:21 [ 37] [ 12] [579070162120] +07:46:21 [ 39] [ 2] [00] +07:46:21 [ 70] [ 3] [810] +07:46:21 ============================================================================ +07:46:21 Calculate Source COMM Id = 4 +07:46:21 ============================================================================ +07:46:21 + + +waiting on router queue for slot.... +07:46:25 ============================================================================ +07:46:25 Slot Id : <420> +07:46:25 Transaction Type : REQUEST +07:46:25 Received From : +07:46:25 ============================================================================ +07:46:25 FNo. Len. Field Value +07:46:25 ============================================================================ +07:46:25 [ 1] [ 4] [0800] +07:46:25 [ 7] [ 10] [0320124534] +07:46:25 [ 11] [ 6] [155245] +07:46:25 [ 70] [ 3] [301] +07:46:25 ============================================================================ +07:46:25 + + +waiting on router queue for slot.... +07:46:25 Sending to : +07:46:25 ============================================================================ +07:46:25 ============================================================================ +07:46:25 Slot Id : <420> +07:46:25 Transaction Type : RESPONSE +07:46:25 Received From : +07:46:25 ============================================================================ +07:46:25 FNo. Len. Field Value +07:46:25 ============================================================================ +07:46:25 [ 1] [ 4] [0810] +07:46:25 [ 7] [ 10] [0320124534] +07:46:25 [ 11] [ 6] [155245] +07:46:25 [ 39] [ 2] [00] +07:46:25 [ 70] [ 3] [301] +07:46:25 ============================================================================ +07:46:25 Calculate Source COMM Id = 2 +07:46:25 ============================================================================ +07:46:25 + + +waiting on router queue for slot.... +07:46:33 ============================================================================ +07:46:33 Slot Id : <415> +07:46:33 Transaction Type : REQUEST +07:46:33 Received From : +07:46:33 ============================================================================ +07:46:33 FNo. Len. Field Value +07:46:33 ============================================================================ +07:46:33 [ 1] [ 4] [0200] +07:46:33 [ 2] [ 16] [6688990040118174] +07:46:33 [ 3] [ 6] [010000] +07:46:33 [ 4] [ 12] [000050000000] +07:46:33 [ 7] [ 10] [0320004539] +07:46:33 [ 11] [ 6] [266879] +07:46:33 [ 12] [ 6] [074539] +07:46:33 [ 13] [ 4] [0320] +07:46:33 [ 14] [ 4] [9803] +07:46:33 [ 15] [ 4] [0320] +07:46:33 [ 18] [ 4] [6011] +07:46:33 [ 19] [ 3] [418] +07:46:33 [ 22] [ 3] [021] +07:46:33 [ 25] [ 2] [01] +07:46:33 [ 28] [ 9] [D00002000] +07:46:33 [ 32] [ 6] [180893] +07:46:33 [ 35] [ 37] [6688990040118174=98031261527375800000] +07:46:33 [ 37] [ 12] [507900266879] +07:46:33 [ 41] [ 8] [0485HPXT] +07:46:33 [ 42] [ 15] [999999 ] +07:46:33 [ 43] [ 40] [ATM XAMTAI HUAPHAN PRO, Xamtai, Lao Peop] +07:46:33 [ 49] [ 3] [418] +07:46:33 [ 52] [ 16] [62C51B3D11D44A03] +07:46:33 ============================================================================ +07:46:33 + + +waiting on router queue for slot.... +07:46:33 Sending to : +07:46:33 ============================================================================ +07:46:33 Sending to : +07:46:33 ============================================================================ +07:46:34 ============================================================================ +07:46:34 Slot Id : <415> +07:46:34 Transaction Type : REQUEST +07:46:34 Received From : +07:46:34 ============================================================================ +07:46:34 FNo. Len. Field Value +07:46:34 ============================================================================ +07:46:34 [ 1] [ 4] [0200] +07:46:34 [ 2] [ 16] [6688990040118174] +07:46:34 [ 3] [ 6] [010000] +07:46:34 [ 4] [ 12] [000050000000] +07:46:34 [ 7] [ 10] [0320004539] +07:46:34 [ 11] [ 6] [266879] +07:46:34 [ 12] [ 6] [074539] +07:46:34 [ 13] [ 4] [0320] +07:46:34 [ 14] [ 4] [9803] +07:46:34 [ 15] [ 4] [0320] +07:46:34 [ 18] [ 4] [6011] +07:46:34 [ 19] [ 3] [418] +07:46:34 [ 22] [ 3] [021] +07:46:34 [ 25] [ 2] [01] +07:46:34 [ 28] [ 9] [D00002000] +07:46:34 [ 32] [ 6] [180893] +07:46:34 [ 35] [ 37] [6688990040118174=98031261527375800000] +07:46:34 [ 37] [ 12] [507900266879] +07:46:34 [ 41] [ 8] [0485HPXT] +07:46:34 [ 42] [ 15] [999999 ] +07:46:34 [ 43] [ 40] [ATM XAMTAI HUAPHAN PRO, Xamtai, Lao Peop] +07:46:34 [ 49] [ 3] [418] +07:46:34 [ 52] [ 16] [62C51B3D11D44A03] +07:46:34 ============================================================================ +07:46:34 + + +waiting on router queue for slot.... +07:46:34 Sending to : +07:46:34 ============================================================================ +07:46:34 ============================================================================ +07:46:34 Slot Id : <415> +07:46:34 Transaction Type : REQUEST +07:46:34 Received From : +07:46:34 ============================================================================ +07:46:34 FNo. Len. Field Value +07:46:34 ============================================================================ +07:46:34 [ 1] [ 4] [0200] +07:46:34 [ 2] [ 16] [6688990040118174] +07:46:34 [ 3] [ 6] [010000] +07:46:34 [ 4] [ 12] [000050000000] +07:46:34 [ 7] [ 10] [0320004539] +07:46:34 [ 11] [ 6] [266879] +07:46:34 [ 12] [ 6] [074539] +07:46:34 [ 13] [ 4] [0320] +07:46:34 [ 14] [ 4] [9803] +07:46:34 [ 15] [ 4] [0320] +07:46:34 [ 18] [ 4] [6011] +07:46:34 [ 19] [ 3] [418] +07:46:34 [ 22] [ 3] [021] +07:46:34 [ 25] [ 2] [01] +07:46:34 [ 28] [ 9] [D00002000] +07:46:34 [ 32] [ 6] [180893] +07:46:34 [ 35] [ 37] [6688990040118174=98031261527375800000] +07:46:34 [ 37] [ 12] [507900266879] +07:46:34 [ 41] [ 8] [0485HPXT] +07:46:34 [ 42] [ 15] [999999 ] +07:46:34 [ 43] [ 40] [ATM XAMTAI HUAPHAN PRO, Xamtai, Lao Peop] +07:46:34 [ 49] [ 3] [418] +07:46:34 [ 52] [ 16] [DBC0B567BF0CCE1B] +07:46:34 ============================================================================ +07:46:34 + + +waiting on router queue for slot.... +07:46:34 Sending to : <0> +07:46:34 ============================================================================ +07:46:34 ============================================================================ +07:46:34 Slot Id : <415> +07:46:34 Transaction Type : RESPONSE +07:46:34 Received From : +07:46:34 ============================================================================ +07:46:34 FNo. Len. Field Value +07:46:34 ============================================================================ +07:46:34 [ 1] [ 4] [0210] +07:46:34 [ 2] [ 16] [6688990040118174] +07:46:34 [ 3] [ 6] [010000] +07:46:34 [ 4] [ 12] [000050000000] +07:46:34 [ 7] [ 10] [0320004539] +07:46:34 [ 11] [ 6] [266879] +07:46:34 [ 12] [ 6] [074539] +07:46:34 [ 13] [ 4] [0320] +07:46:34 [ 15] [ 4] [0320] +07:46:34 [ 18] [ 4] [6011] +07:46:34 [ 19] [ 3] [418] +07:46:34 [ 22] [ 3] [021] +07:46:34 [ 32] [ 6] [180893] +07:46:34 [ 35] [ 37] [6688990040118174=98031261527375800000] +07:46:34 [ 37] [ 12] [507900266879] +07:46:34 [ 39] [ 2] [14] +07:46:34 [ 41] [ 8] [0485HPXT] +07:46:34 [ 49] [ 3] [418] +07:46:34 ============================================================================ +07:46:34 Sending to : +07:46:34 ============================================================================ +07:46:34 + + +waiting on router queue for slot.... +07:46:35 ============================================================================ +07:46:35 Slot Id : <415> +07:46:35 Transaction Type : RESPONSE +07:46:35 Received From : +07:46:35 ============================================================================ +07:46:35 FNo. Len. Field Value +07:46:35 ============================================================================ +07:46:35 [ 1] [ 4] [0210] +07:46:35 [ 2] [ 16] [6688990040118174] +07:46:35 [ 3] [ 6] [010000] +07:46:35 [ 4] [ 12] [000050000000] +07:46:35 [ 7] [ 10] [0320004539] +07:46:35 [ 11] [ 6] [266879] +07:46:35 [ 12] [ 6] [074539] +07:46:35 [ 13] [ 4] [0320] +07:46:35 [ 15] [ 4] [0320] +07:46:35 [ 18] [ 4] [6011] +07:46:35 [ 19] [ 3] [418] +07:46:35 [ 22] [ 3] [021] +07:46:35 [ 32] [ 6] [180893] +07:46:35 [ 35] [ 37] [6688990040118174=98031261527375800000] +07:46:35 [ 37] [ 12] [507900266879] +07:46:35 [ 39] [ 2] [14] +07:46:35 [ 41] [ 8] [0485HPXT] +07:46:35 [ 49] [ 3] [418] +07:46:35 ============================================================================ +07:46:35 Calculate Source COMM Id = 2 +07:46:35 ============================================================================ +07:46:35 + + +waiting on router queue for slot.... +07:46:36 ============================================================================ +07:46:36 Slot Id : <381> +07:46:36 Transaction Type : REQUEST +07:46:36 Received From : +07:46:36 ============================================================================ +07:46:36 FNo. Len. Field Value +07:46:36 ============================================================================ +07:46:36 [ 1] [ 4] [0800] +07:46:36 [ 7] [ 10] [0320124544] +07:46:36 [ 11] [ 6] [155246] +07:46:36 [ 70] [ 3] [301] +07:46:36 ============================================================================ +07:46:36 + + +waiting on router queue for slot.... +07:46:36 Sending to : +07:46:36 ============================================================================ +07:46:36 ============================================================================ +07:46:36 Slot Id : <381> +07:46:36 Transaction Type : RESPONSE +07:46:36 Received From : +07:46:36 ============================================================================ +07:46:36 FNo. Len. Field Value +07:46:36 ============================================================================ +07:46:36 [ 1] [ 4] [0810] +07:46:36 [ 7] [ 10] [0320124544] +07:46:36 [ 11] [ 6] [155246] +07:46:36 [ 39] [ 2] [00] +07:46:36 [ 70] [ 3] [301] +07:46:36 ============================================================================ +07:46:36 Calculate Source COMM Id = 2 +07:46:36 ============================================================================ +07:46:36 + + +waiting on router queue for slot.... +07:46:36 ============================================================================ +07:46:36 Slot Id : <425> +07:46:36 Transaction Type : REQUEST +07:46:36 Received From : +07:46:36 ============================================================================ +07:46:36 FNo. Len. Field Value +07:46:36 ============================================================================ +07:46:36 [ 1] [ 4] [0200] +07:46:36 [ 2] [ 16] [6213544001861092] +07:46:36 [ 3] [ 6] [300000] +07:46:36 [ 4] [ 12] [000000000000] +07:46:36 [ 7] [ 10] [0320074428] +07:46:36 [ 11] [ 6] [930874] +07:46:36 [ 12] [ 6] [074428] +07:46:36 [ 13] [ 4] [0320] +07:46:36 [ 15] [ 4] [0320] +07:46:36 [ 18] [ 4] [6011] +07:46:36 [ 19] [ 3] [418] +07:46:36 [ 22] [ 3] [021] +07:46:36 [ 25] [ 2] [01] +07:46:36 [ 28] [ 9] [D00000000] +07:46:36 [ 32] [ 6] [668899] +07:46:36 [ 35] [ 32] [6213544001861092=491212016109055] +07:46:36 [ 37] [ 12] [507902045644] +07:46:36 [ 41] [ 8] [03205002] +07:46:36 [ 42] [ 15] [APT ] +07:46:36 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:46:36 [ 49] [ 3] [418] +07:46:36 [ 52] [ 16] [486BBCE451C72452] +07:46:36 ============================================================================ +07:46:36 + + +waiting on router queue for slot.... +07:46:36 Sending to : +07:46:36 ============================================================================ +07:46:36 Sending to : +07:46:36 ============================================================================ +07:46:36 ============================================================================ +07:46:36 Slot Id : <425> +07:46:36 Transaction Type : REQUEST +07:46:36 Received From : +07:46:36 ============================================================================ +07:46:36 FNo. Len. Field Value +07:46:36 ============================================================================ +07:46:36 [ 1] [ 4] [0200] +07:46:36 [ 2] [ 16] [6213544001861092] +07:46:36 [ 3] [ 6] [300000] +07:46:36 [ 4] [ 12] [000000000000] +07:46:36 [ 7] [ 10] [0320074428] +07:46:36 [ 11] [ 6] [930874] +07:46:36 [ 12] [ 6] [074428] +07:46:36 [ 13] [ 4] [0320] +07:46:36 [ 15] [ 4] [0320] +07:46:36 [ 18] [ 4] [6011] +07:46:36 [ 19] [ 3] [418] +07:46:36 [ 22] [ 3] [021] +07:46:36 [ 25] [ 2] [01] +07:46:36 [ 28] [ 9] [D00000000] +07:46:36 [ 32] [ 6] [668899] +07:46:36 [ 35] [ 32] [6213544001861092=491212016109055] +07:46:36 [ 37] [ 12] [507902045644] +07:46:36 [ 41] [ 8] [03205002] +07:46:36 [ 42] [ 15] [APT ] +07:46:36 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:46:36 [ 49] [ 3] [418] +07:46:36 [ 52] [ 16] [486BBCE451C72452] +07:46:36 ============================================================================ +07:46:36 + + +waiting on router queue for slot.... +07:46:36 Sending to : +07:46:36 ============================================================================ +07:46:36 ============================================================================ +07:46:36 Slot Id : <425> +07:46:36 Transaction Type : REQUEST +07:46:36 Received From : +07:46:36 ============================================================================ +07:46:36 FNo. Len. Field Value +07:46:36 ============================================================================ +07:46:36 [ 1] [ 4] [0200] +07:46:36 [ 2] [ 16] [6213544001861092] +07:46:36 [ 3] [ 6] [300000] +07:46:36 [ 4] [ 12] [000000000000] +07:46:36 [ 7] [ 10] [0320074428] +07:46:36 [ 11] [ 6] [930874] +07:46:36 [ 12] [ 6] [074428] +07:46:36 [ 13] [ 4] [0320] +07:46:36 [ 15] [ 4] [0320] +07:46:36 [ 18] [ 4] [6011] +07:46:36 [ 19] [ 3] [418] +07:46:36 [ 22] [ 3] [021] +07:46:36 [ 25] [ 2] [01] +07:46:36 [ 28] [ 9] [D00000000] +07:46:36 [ 32] [ 6] [668899] +07:46:36 [ 35] [ 32] [6213544001861092=491212016109055] +07:46:36 [ 37] [ 12] [507902045644] +07:46:36 [ 41] [ 8] [03205002] +07:46:36 [ 42] [ 15] [APT ] +07:46:36 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:46:36 [ 49] [ 3] [418] +07:46:36 [ 52] [ 16] [4758B363E7E69E35] +07:46:36 ============================================================================ +07:46:36 + + +waiting on router queue for slot.... +07:46:36 Sending to : <0> +07:46:36 ============================================================================ +07:46:37 ============================================================================ +07:46:37 Slot Id : <425> +07:46:37 Transaction Type : RESPONSE +07:46:37 Received From : +07:46:37 ============================================================================ +07:46:37 FNo. Len. Field Value +07:46:37 ============================================================================ +07:46:37 [ 1] [ 4] [0210] +07:46:37 [ 2] [ 16] [6213544001861092] +07:46:37 [ 3] [ 6] [300000] +07:46:37 [ 4] [ 12] [000000000000] +07:46:37 [ 7] [ 10] [0320074428] +07:46:37 [ 11] [ 6] [930874] +07:46:37 [ 12] [ 6] [074428] +07:46:37 [ 13] [ 4] [0320] +07:46:37 [ 15] [ 4] [0320] +07:46:37 [ 18] [ 4] [6011] +07:46:37 [ 19] [ 3] [418] +07:46:37 [ 32] [ 6] [668899] +07:46:37 [ 35] [ 32] [6213544001861092=491212016109055] +07:46:37 [ 37] [ 12] [507902045644] +07:46:37 [ 38] [ 6] [017291] +07:46:37 [ 39] [ 2] [00] +07:46:37 [ 41] [ 8] [03205002] +07:46:37 [ 49] [ 3] [418] +07:46:37 [ 54] [ 40] [0001418C0004245306380002418C000424530638] +07:46:37 ============================================================================ +07:46:37 Sending to : +07:46:37 ============================================================================ +07:46:37 + + +waiting on router queue for slot.... +07:46:38 ============================================================================ +07:46:38 Slot Id : <398> +07:46:38 Transaction Type : REQUEST +07:46:38 Received From : +07:46:38 ============================================================================ +07:46:38 FNo. Len. Field Value +07:46:38 ============================================================================ +07:46:38 [ 1] [ 4] [0800] +07:46:38 [ 2] [ 5] [02531] +07:46:38 [ 3] [ 6] [579078] +07:46:38 [ 7] [ 10] [0320004638] +07:46:38 [ 11] [ 6] [806863] +07:46:38 [ 15] [ 10] [0320004638] +07:46:38 [ 37] [ 11] [57907806863] +07:46:38 [ 70] [ 3] [001] +07:46:38 ============================================================================ +07:46:38 + + +waiting on router queue for slot.... +07:46:38 ============================================================================ +07:46:38 Slot Id : <398> +07:46:38 Transaction Type : RESPONSE +07:46:38 Received From : +07:46:38 ============================================================================ +07:46:38 FNo. Len. Field Value +07:46:38 ============================================================================ +07:46:38 [ 1] [ 4] [0810] +07:46:38 [ 7] [ 10] [0320004638] +07:46:38 [ 11] [ 6] [806863] +07:46:38 [ 15] [ 4] [0320] +07:46:38 [ 37] [ 12] [57907806863] +07:46:38 [ 39] [ 2] [00] +07:46:38 [ 70] [ 3] [001] +07:46:38 ============================================================================ +07:46:38 Sending to : +07:46:38 ============================================================================ +07:46:38 + + +waiting on router queue for slot.... +07:46:39 ============================================================================ +07:46:39 Slot Id : <425> +07:46:39 Transaction Type : RESPONSE +07:46:39 Received From : +07:46:39 ============================================================================ +07:46:39 FNo. Len. Field Value +07:46:39 ============================================================================ +07:46:39 [ 1] [ 4] [0210] +07:46:39 [ 2] [ 16] [6213544001861092] +07:46:39 [ 3] [ 6] [300000] +07:46:39 [ 4] [ 12] [000000000000] +07:46:39 [ 7] [ 10] [0320074428] +07:46:39 [ 11] [ 6] [930874] +07:46:39 [ 12] [ 6] [074428] +07:46:39 [ 13] [ 4] [0320] +07:46:39 [ 15] [ 4] [0320] +07:46:39 [ 18] [ 4] [6011] +07:46:39 [ 19] [ 3] [418] +07:46:39 [ 32] [ 6] [668899] +07:46:39 [ 35] [ 32] [6213544001861092=491212016109055] +07:46:39 [ 37] [ 12] [507902045644] +07:46:39 [ 38] [ 6] [017291] +07:46:39 [ 39] [ 2] [00] +07:46:39 [ 41] [ 8] [03205002] +07:46:39 [ 49] [ 3] [418] +07:46:39 [ 54] [ 40] [0001418C0004245306380002418C000424530638] +07:46:39 ============================================================================ +07:46:39 Calculate Source COMM Id = 4 +07:46:39 ============================================================================ +07:46:39 + + +waiting on router queue for slot.... +07:46:39 ============================================================================ +07:46:39 Slot Id : <433> +07:46:39 Transaction Type : REQUEST +07:46:39 Received From : +07:46:39 ============================================================================ +07:46:39 FNo. Len. Field Value +07:46:39 ============================================================================ +07:46:39 [ 1] [ 4] [0200] +07:46:39 [ 2] [ 16] [6213545000785893] +07:46:39 [ 3] [ 6] [010000] +07:46:39 [ 4] [ 12] [000050000000] +07:46:39 [ 7] [ 10] [0320004547] +07:46:39 [ 11] [ 6] [266881] +07:46:39 [ 12] [ 6] [074547] +07:46:39 [ 13] [ 4] [0320] +07:46:39 [ 14] [ 4] [4912] +07:46:39 [ 15] [ 4] [0320] +07:46:39 [ 18] [ 4] [6011] +07:46:39 [ 19] [ 3] [418] +07:46:39 [ 22] [ 3] [021] +07:46:39 [ 25] [ 2] [01] +07:46:39 [ 28] [ 9] [D00002000] +07:46:39 [ 32] [ 6] [180893] +07:46:39 [ 35] [ 32] [6213545000785893=491212018589324] +07:46:39 [ 37] [ 12] [507900266881] +07:46:39 [ 41] [ 8] [0525XYBT] +07:46:39 [ 42] [ 15] [999999 ] +07:46:39 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:46:39 [ 49] [ 3] [418] +07:46:39 [ 52] [ 16] [C4753755497A5F3C] +07:46:39 ============================================================================ +07:46:39 + + +waiting on router queue for slot.... +07:46:39 Sending to : +07:46:39 ============================================================================ +07:46:39 Sending to : +07:46:39 ============================================================================ +07:46:39 ============================================================================ +07:46:39 Slot Id : <433> +07:46:39 Transaction Type : REQUEST +07:46:39 Received From : +07:46:39 ============================================================================ +07:46:39 FNo. Len. Field Value +07:46:39 ============================================================================ +07:46:39 [ 1] [ 4] [0200] +07:46:39 [ 2] [ 16] [6213545000785893] +07:46:39 [ 3] [ 6] [010000] +07:46:39 [ 4] [ 12] [000050000000] +07:46:39 [ 7] [ 10] [0320004547] +07:46:39 [ 11] [ 6] [266881] +07:46:39 [ 12] [ 6] [074547] +07:46:39 [ 13] [ 4] [0320] +07:46:39 [ 14] [ 4] [4912] +07:46:39 [ 15] [ 4] [0320] +07:46:39 [ 18] [ 4] [6011] +07:46:39 [ 19] [ 3] [418] +07:46:39 [ 22] [ 3] [021] +07:46:39 [ 25] [ 2] [01] +07:46:39 [ 28] [ 9] [D00002000] +07:46:39 [ 32] [ 6] [180893] +07:46:39 [ 35] [ 32] [6213545000785893=491212018589324] +07:46:39 [ 37] [ 12] [507900266881] +07:46:39 [ 41] [ 8] [0525XYBT] +07:46:39 [ 42] [ 15] [999999 ] +07:46:39 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:46:39 [ 49] [ 3] [418] +07:46:39 [ 52] [ 16] [C4753755497A5F3C] +07:46:39 ============================================================================ +07:46:39 + + +waiting on router queue for slot.... +07:46:39 Sending to : +07:46:39 ============================================================================ +07:46:39 ============================================================================ +07:46:39 Slot Id : <433> +07:46:39 Transaction Type : REQUEST +07:46:39 Received From : +07:46:39 ============================================================================ +07:46:39 FNo. Len. Field Value +07:46:39 ============================================================================ +07:46:39 [ 1] [ 4] [0200] +07:46:39 [ 2] [ 16] [6213545000785893] +07:46:39 [ 3] [ 6] [010000] +07:46:39 [ 4] [ 12] [000050000000] +07:46:39 [ 7] [ 10] [0320004547] +07:46:39 [ 11] [ 6] [266881] +07:46:39 [ 12] [ 6] [074547] +07:46:39 [ 13] [ 4] [0320] +07:46:39 [ 14] [ 4] [4912] +07:46:39 [ 15] [ 4] [0320] +07:46:39 [ 18] [ 4] [6011] +07:46:39 [ 19] [ 3] [418] +07:46:39 [ 22] [ 3] [021] +07:46:39 [ 25] [ 2] [01] +07:46:39 [ 28] [ 9] [D00002000] +07:46:39 [ 32] [ 6] [180893] +07:46:39 [ 35] [ 32] [6213545000785893=491212018589324] +07:46:39 [ 37] [ 12] [507900266881] +07:46:39 [ 41] [ 8] [0525XYBT] +07:46:39 [ 42] [ 15] [999999 ] +07:46:39 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +07:46:39 [ 49] [ 3] [418] +07:46:39 [ 52] [ 16] [23787FB07884B953] +07:46:39 ============================================================================ +07:46:39 + + +waiting on router queue for slot.... +07:46:39 Sending to : <0> +07:46:39 ============================================================================ +07:46:41 ============================================================================ +07:46:41 Slot Id : <433> +07:46:41 Transaction Type : RESPONSE +07:46:41 Received From : +07:46:41 ============================================================================ +07:46:41 FNo. Len. Field Value +07:46:41 ============================================================================ +07:46:41 [ 1] [ 4] [0210] +07:46:41 [ 2] [ 16] [6213545000785893] +07:46:41 [ 3] [ 6] [010000] +07:46:41 [ 4] [ 12] [000050000000] +07:46:41 [ 7] [ 10] [0320004547] +07:46:41 [ 11] [ 6] [266881] +07:46:41 [ 12] [ 6] [074547] +07:46:41 [ 13] [ 4] [0320] +07:46:41 [ 15] [ 4] [0320] +07:46:41 [ 18] [ 4] [6011] +07:46:41 [ 19] [ 3] [418] +07:46:41 [ 32] [ 6] [180893] +07:46:41 [ 35] [ 32] [6213545000785893=491212018589324] +07:46:41 [ 37] [ 12] [507900266881] +07:46:41 [ 38] [ 6] [718790] +07:46:41 [ 39] [ 2] [00] +07:46:41 [ 41] [ 8] [0525XYBT] +07:46:41 [ 49] [ 3] [418] +07:46:41 [ 54] [ 40] [0001418C0000157189250002418C000015718925] +07:46:41 ============================================================================ +07:46:41 Sending to : +07:46:41 ============================================================================ +07:46:41 + + +waiting on router queue for slot.... +07:46:42 ============================================================================ +07:46:42 Slot Id : <433> +07:46:42 Transaction Type : RESPONSE +07:46:42 Received From : +07:46:42 ============================================================================ +07:46:42 FNo. Len. Field Value +07:46:42 ============================================================================ +07:46:42 [ 1] [ 4] [0210] +07:46:42 [ 2] [ 16] [6213545000785893] +07:46:42 [ 3] [ 6] [010000] +07:46:42 [ 4] [ 12] [000050000000] +07:46:42 [ 7] [ 10] [0320004547] +07:46:42 [ 11] [ 6] [266881] +07:46:42 [ 12] [ 6] [074547] +07:46:42 [ 13] [ 4] [0320] +07:46:42 [ 15] [ 4] [0320] +07:46:42 [ 18] [ 4] [6011] +07:46:42 [ 19] [ 3] [418] +07:46:42 [ 32] [ 6] [180893] +07:46:42 [ 35] [ 32] [6213545000785893=491212018589324] +07:46:42 [ 37] [ 12] [507900266881] +07:46:42 [ 38] [ 6] [718790] +07:46:42 [ 39] [ 2] [00] +07:46:42 [ 41] [ 8] [0525XYBT] +07:46:42 [ 49] [ 3] [418] +07:46:42 [ 54] [ 40] [0001418C0000157189250002418C000015718925] +07:46:42 ============================================================================ +07:46:42 Calculate Source COMM Id = 2 +07:46:42 ============================================================================ +07:46:42 + + +waiting on router queue for slot.... +07:46:51 ============================================================================ +07:46:51 Slot Id : <388> +07:46:51 Transaction Type : REQUEST +07:46:51 Received From : +07:46:51 ============================================================================ +07:46:51 FNo. Len. Field Value +07:46:51 ============================================================================ +07:46:51 [ 1] [ 4] [0200] +07:46:51 [ 2] [ 16] [6213545000160147] +07:46:51 [ 3] [ 6] [011000] +07:46:51 [ 4] [ 12] [000045000000] +07:46:51 [ 7] [ 10] [0320004559] +07:46:51 [ 11] [ 6] [266885] +07:46:51 [ 12] [ 6] [074559] +07:46:51 [ 13] [ 4] [0320] +07:46:51 [ 14] [ 4] [4912] +07:46:51 [ 15] [ 4] [0320] +07:46:51 [ 18] [ 4] [6011] +07:46:51 [ 19] [ 3] [418] +07:46:51 [ 22] [ 3] [021] +07:46:51 [ 25] [ 2] [01] +07:46:51 [ 28] [ 9] [D00002000] +07:46:51 [ 32] [ 6] [180893] +07:46:51 [ 35] [ 32] [6213545000160147=491212016014694] +07:46:51 [ 37] [ 12] [507900266885] +07:46:51 [ 41] [ 8] [0363CPSH] +07:46:51 [ 42] [ 15] [999999 ] +07:46:51 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:46:51 [ 49] [ 3] [418] +07:46:51 [ 52] [ 16] [932C611118927F8F] +07:46:51 ============================================================================ +07:46:51 + + +waiting on router queue for slot.... +07:46:51 Sending to : +07:46:51 ============================================================================ +07:46:51 Sending to : +07:46:51 ============================================================================ +07:46:51 ============================================================================ +07:46:51 Slot Id : <388> +07:46:51 Transaction Type : REQUEST +07:46:51 Received From : +07:46:51 ============================================================================ +07:46:51 FNo. Len. Field Value +07:46:51 ============================================================================ +07:46:51 [ 1] [ 4] [0200] +07:46:51 [ 2] [ 16] [6213545000160147] +07:46:51 [ 3] [ 6] [011000] +07:46:51 [ 4] [ 12] [000045000000] +07:46:51 [ 7] [ 10] [0320004559] +07:46:51 [ 11] [ 6] [266885] +07:46:51 [ 12] [ 6] [074559] +07:46:51 [ 13] [ 4] [0320] +07:46:51 [ 14] [ 4] [4912] +07:46:51 [ 15] [ 4] [0320] +07:46:51 [ 18] [ 4] [6011] +07:46:51 [ 19] [ 3] [418] +07:46:51 [ 22] [ 3] [021] +07:46:51 [ 25] [ 2] [01] +07:46:51 [ 28] [ 9] [D00002000] +07:46:51 [ 32] [ 6] [180893] +07:46:51 [ 35] [ 32] [6213545000160147=491212016014694] +07:46:51 [ 37] [ 12] [507900266885] +07:46:51 [ 41] [ 8] [0363CPSH] +07:46:51 [ 42] [ 15] [999999 ] +07:46:51 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:46:51 [ 49] [ 3] [418] +07:46:51 [ 52] [ 16] [932C611118927F8F] +07:46:51 ============================================================================ +07:46:51 + + +waiting on router queue for slot.... +07:46:51 Sending to : +07:46:51 ============================================================================ +07:46:51 ============================================================================ +07:46:51 Slot Id : <388> +07:46:51 Transaction Type : REQUEST +07:46:51 Received From : +07:46:51 ============================================================================ +07:46:51 FNo. Len. Field Value +07:46:51 ============================================================================ +07:46:51 [ 1] [ 4] [0200] +07:46:51 [ 2] [ 16] [6213545000160147] +07:46:51 [ 3] [ 6] [011000] +07:46:51 [ 4] [ 12] [000045000000] +07:46:51 [ 7] [ 10] [0320004559] +07:46:51 [ 11] [ 6] [266885] +07:46:51 [ 12] [ 6] [074559] +07:46:51 [ 13] [ 4] [0320] +07:46:51 [ 14] [ 4] [4912] +07:46:51 [ 15] [ 4] [0320] +07:46:51 [ 18] [ 4] [6011] +07:46:51 [ 19] [ 3] [418] +07:46:51 [ 22] [ 3] [021] +07:46:51 [ 25] [ 2] [01] +07:46:51 [ 28] [ 9] [D00002000] +07:46:51 [ 32] [ 6] [180893] +07:46:51 [ 35] [ 32] [6213545000160147=491212016014694] +07:46:51 [ 37] [ 12] [507900266885] +07:46:51 [ 41] [ 8] [0363CPSH] +07:46:51 [ 42] [ 15] [999999 ] +07:46:51 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:46:51 [ 49] [ 3] [418] +07:46:51 [ 52] [ 16] [A4192494964B0492] +07:46:51 ============================================================================ +07:46:51 + + +waiting on router queue for slot.... +07:46:51 Sending to : <0> +07:46:51 ============================================================================ +07:46:52 ============================================================================ +07:46:52 Slot Id : <388> +07:46:52 Transaction Type : RESPONSE +07:46:52 Received From : +07:46:52 ============================================================================ +07:46:52 FNo. Len. Field Value +07:46:52 ============================================================================ +07:46:52 [ 1] [ 4] [0210] +07:46:52 [ 2] [ 16] [6213545000160147] +07:46:52 [ 3] [ 6] [011000] +07:46:52 [ 4] [ 12] [000045000000] +07:46:52 [ 7] [ 10] [0320004559] +07:46:52 [ 11] [ 6] [266885] +07:46:52 [ 12] [ 6] [074559] +07:46:52 [ 13] [ 4] [0320] +07:46:52 [ 15] [ 4] [0320] +07:46:52 [ 18] [ 4] [6011] +07:46:52 [ 19] [ 3] [418] +07:46:52 [ 32] [ 6] [180893] +07:46:52 [ 35] [ 32] [6213545000160147=491212016014694] +07:46:52 [ 37] [ 12] [507900266885] +07:46:52 [ 38] [ 6] [875634] +07:46:52 [ 39] [ 2] [00] +07:46:52 [ 41] [ 8] [0363CPSH] +07:46:52 [ 49] [ 3] [418] +07:46:52 [ 54] [ 40] [1001418C0000067130321002418C000006713032] +07:46:52 ============================================================================ +07:46:52 Sending to : +07:46:52 ============================================================================ +07:46:52 + + +waiting on router queue for slot.... +07:46:53 ============================================================================ +07:46:53 Slot Id : <388> +07:46:53 Transaction Type : RESPONSE +07:46:53 Received From : +07:46:53 ============================================================================ +07:46:53 FNo. Len. Field Value +07:46:53 ============================================================================ +07:46:53 [ 1] [ 4] [0210] +07:46:53 [ 2] [ 16] [6213545000160147] +07:46:53 [ 3] [ 6] [011000] +07:46:53 [ 4] [ 12] [000045000000] +07:46:53 [ 7] [ 10] [0320004559] +07:46:53 [ 11] [ 6] [266885] +07:46:53 [ 12] [ 6] [074559] +07:46:53 [ 13] [ 4] [0320] +07:46:53 [ 15] [ 4] [0320] +07:46:53 [ 18] [ 4] [6011] +07:46:53 [ 19] [ 3] [418] +07:46:53 [ 32] [ 6] [180893] +07:46:53 [ 35] [ 32] [6213545000160147=491212016014694] +07:46:53 [ 37] [ 12] [507900266885] +07:46:53 [ 38] [ 6] [875634] +07:46:53 [ 39] [ 2] [00] +07:46:53 [ 41] [ 8] [0363CPSH] +07:46:53 [ 49] [ 3] [418] +07:46:53 [ 54] [ 40] [1001418C0000067130321002418C000006713032] +07:46:53 ============================================================================ +07:46:53 Calculate Source COMM Id = 2 +07:46:53 ============================================================================ +07:46:53 + + +waiting on router queue for slot.... +07:46:58 ============================================================================ +07:46:58 Slot Id : <364> +07:46:58 Transaction Type : REQUEST +07:46:58 Received From : +07:46:58 ============================================================================ +07:46:58 FNo. Len. Field Value +07:46:58 ============================================================================ +07:46:58 [ 1] [ 4] [0800] +07:46:58 [ 7] [ 10] [0320145848] +07:46:58 [ 11] [ 6] [075848] +07:46:58 [ 37] [ 12] [57907075848] +07:46:58 [ 70] [ 3] [301] +07:46:58 ============================================================================ +07:46:58 + + +waiting on router queue for slot.... +07:46:58 Sending to : +07:46:58 ============================================================================ +07:46:58 ============================================================================ +07:46:58 Slot Id : <364> +07:46:58 Transaction Type : RESPONSE +07:46:58 Received From : +07:46:58 ============================================================================ +07:46:58 FNo. Len. Field Value +07:46:58 ============================================================================ +07:46:58 [ 1] [ 4] [0810] +07:46:58 [ 7] [ 10] [0320145848] +07:46:58 [ 11] [ 6] [075848] +07:46:58 [ 37] [ 12] [579070758480] +07:46:58 [ 39] [ 2] [00] +07:46:58 [ 70] [ 3] [810] +07:46:58 ============================================================================ +07:46:58 Calculate Source COMM Id = 6 +07:46:58 ============================================================================ +07:46:58 + + +waiting on router queue for slot.... +07:47:06 ============================================================================ +07:47:06 Slot Id : <367> +07:47:06 Transaction Type : REQUEST +07:47:06 Received From : +07:47:06 ============================================================================ +07:47:06 FNo. Len. Field Value +07:47:06 ============================================================================ +07:47:06 [ 1] [ 4] [0200] +07:47:06 [ 2] [ 16] [6688990040020628] +07:47:06 [ 3] [ 6] [010000] +07:47:06 [ 4] [ 12] [000010000000] +07:47:06 [ 7] [ 10] [0320004611] +07:47:06 [ 11] [ 6] [266888] +07:47:06 [ 12] [ 6] [074611] +07:47:06 [ 13] [ 4] [0320] +07:47:06 [ 14] [ 4] [9711] +07:47:06 [ 15] [ 4] [0320] +07:47:06 [ 18] [ 4] [6011] +07:47:06 [ 19] [ 3] [418] +07:47:06 [ 22] [ 3] [021] +07:47:06 [ 25] [ 2] [01] +07:47:06 [ 28] [ 9] [D00002000] +07:47:06 [ 32] [ 6] [180893] +07:47:06 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:47:06 [ 37] [ 12] [507900266888] +07:47:06 [ 41] [ 8] [0401XSBR] +07:47:06 [ 42] [ 15] [999999 ] +07:47:06 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +07:47:06 [ 49] [ 3] [418] +07:47:06 [ 52] [ 16] [ADAF6B10DA6F6B75] +07:47:06 ============================================================================ +07:47:06 + + +waiting on router queue for slot.... +07:47:06 Sending to : +07:47:06 ============================================================================ +07:47:06 Sending to : +07:47:06 ============================================================================ +07:47:06 ============================================================================ +07:47:06 Slot Id : <367> +07:47:06 Transaction Type : REQUEST +07:47:06 Received From : +07:47:06 ============================================================================ +07:47:06 FNo. Len. Field Value +07:47:06 ============================================================================ +07:47:06 [ 1] [ 4] [0200] +07:47:06 [ 2] [ 16] [6688990040020628] +07:47:06 [ 3] [ 6] [010000] +07:47:06 [ 4] [ 12] [000010000000] +07:47:06 [ 7] [ 10] [0320004611] +07:47:06 [ 11] [ 6] [266888] +07:47:06 [ 12] [ 6] [074611] +07:47:06 [ 13] [ 4] [0320] +07:47:06 [ 14] [ 4] [9711] +07:47:06 [ 15] [ 4] [0320] +07:47:06 [ 18] [ 4] [6011] +07:47:06 [ 19] [ 3] [418] +07:47:06 [ 22] [ 3] [021] +07:47:06 [ 25] [ 2] [01] +07:47:06 [ 28] [ 9] [D00002000] +07:47:06 [ 32] [ 6] [180893] +07:47:06 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:47:06 [ 37] [ 12] [507900266888] +07:47:06 [ 41] [ 8] [0401XSBR] +07:47:06 [ 42] [ 15] [999999 ] +07:47:06 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +07:47:06 [ 49] [ 3] [418] +07:47:06 [ 52] [ 16] [ADAF6B10DA6F6B75] +07:47:06 ============================================================================ +07:47:06 + + +waiting on router queue for slot.... +07:47:06 Sending to : +07:47:06 ============================================================================ +07:47:06 ============================================================================ +07:47:06 Slot Id : <367> +07:47:06 Transaction Type : REQUEST +07:47:06 Received From : +07:47:06 ============================================================================ +07:47:06 FNo. Len. Field Value +07:47:06 ============================================================================ +07:47:06 [ 1] [ 4] [0200] +07:47:06 [ 2] [ 16] [6688990040020628] +07:47:06 [ 3] [ 6] [010000] +07:47:06 [ 4] [ 12] [000010000000] +07:47:06 [ 7] [ 10] [0320004611] +07:47:06 [ 11] [ 6] [266888] +07:47:06 [ 12] [ 6] [074611] +07:47:06 [ 13] [ 4] [0320] +07:47:06 [ 14] [ 4] [9711] +07:47:06 [ 15] [ 4] [0320] +07:47:06 [ 18] [ 4] [6011] +07:47:06 [ 19] [ 3] [418] +07:47:06 [ 22] [ 3] [021] +07:47:06 [ 25] [ 2] [01] +07:47:06 [ 28] [ 9] [D00002000] +07:47:06 [ 32] [ 6] [180893] +07:47:06 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:47:06 [ 37] [ 12] [507900266888] +07:47:06 [ 41] [ 8] [0401XSBR] +07:47:06 [ 42] [ 15] [999999 ] +07:47:06 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +07:47:06 [ 49] [ 3] [418] +07:47:06 [ 52] [ 16] [B9E0A16E1CF6643D] +07:47:06 ============================================================================ +07:47:06 + + +waiting on router queue for slot.... +07:47:06 Sending to : <0> +07:47:06 ============================================================================ +07:47:06 ============================================================================ +07:47:06 Slot Id : <367> +07:47:06 Transaction Type : RESPONSE +07:47:06 Received From : +07:47:06 ============================================================================ +07:47:06 FNo. Len. Field Value +07:47:06 ============================================================================ +07:47:06 [ 1] [ 4] [0210] +07:47:06 [ 2] [ 16] [6688990040020628] +07:47:06 [ 3] [ 6] [010000] +07:47:06 [ 4] [ 12] [000010000000] +07:47:06 [ 7] [ 10] [0320004611] +07:47:06 [ 11] [ 6] [266888] +07:47:06 [ 12] [ 6] [074611] +07:47:06 [ 13] [ 4] [0320] +07:47:06 [ 15] [ 4] [0320] +07:47:06 [ 18] [ 4] [6011] +07:47:06 [ 19] [ 3] [418] +07:47:06 [ 22] [ 3] [021] +07:47:06 [ 32] [ 6] [180893] +07:47:06 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:47:06 [ 37] [ 12] [507900266888] +07:47:06 [ 39] [ 2] [14] +07:47:06 [ 41] [ 8] [0401XSBR] +07:47:06 [ 49] [ 3] [418] +07:47:06 ============================================================================ +07:47:06 Sending to : +07:47:06 ============================================================================ +07:47:06 + + +waiting on router queue for slot.... +07:47:07 ============================================================================ +07:47:07 Slot Id : <430> +07:47:07 Transaction Type : REQUEST +07:47:07 Received From : +07:47:07 ============================================================================ +07:47:07 FNo. Len. Field Value +07:47:07 ============================================================================ +07:47:07 [ 1] [ 4] [0800] +07:47:07 [ 7] [ 10] [0320124615] +07:47:07 [ 11] [ 6] [155247] +07:47:07 [ 70] [ 3] [301] +07:47:07 ============================================================================ +07:47:07 + + +waiting on router queue for slot.... +07:47:07 Sending to : +07:47:07 ============================================================================ +07:47:07 ============================================================================ +07:47:07 Slot Id : <430> +07:47:07 Transaction Type : RESPONSE +07:47:07 Received From : +07:47:07 ============================================================================ +07:47:07 FNo. Len. Field Value +07:47:07 ============================================================================ +07:47:07 [ 1] [ 4] [0810] +07:47:07 [ 7] [ 10] [0320124615] +07:47:07 [ 11] [ 6] [155247] +07:47:07 [ 39] [ 2] [00] +07:47:07 [ 70] [ 3] [301] +07:47:07 ============================================================================ +07:47:07 Calculate Source COMM Id = 2 +07:47:07 ============================================================================ +07:47:07 + + +waiting on router queue for slot.... +07:47:07 ============================================================================ +07:47:07 Slot Id : <367> +07:47:07 Transaction Type : RESPONSE +07:47:07 Received From : +07:47:07 ============================================================================ +07:47:07 FNo. Len. Field Value +07:47:07 ============================================================================ +07:47:07 [ 1] [ 4] [0210] +07:47:07 [ 2] [ 16] [6688990040020628] +07:47:07 [ 3] [ 6] [010000] +07:47:07 [ 4] [ 12] [000010000000] +07:47:07 [ 7] [ 10] [0320004611] +07:47:07 [ 11] [ 6] [266888] +07:47:07 [ 12] [ 6] [074611] +07:47:07 [ 13] [ 4] [0320] +07:47:07 [ 15] [ 4] [0320] +07:47:07 [ 18] [ 4] [6011] +07:47:07 [ 19] [ 3] [418] +07:47:07 [ 22] [ 3] [021] +07:47:07 [ 32] [ 6] [180893] +07:47:07 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:47:07 [ 37] [ 12] [507900266888] +07:47:07 [ 39] [ 2] [14] +07:47:07 [ 41] [ 8] [0401XSBR] +07:47:07 [ 49] [ 3] [418] +07:47:07 ============================================================================ +07:47:07 Calculate Source COMM Id = 2 +07:47:07 ============================================================================ +07:47:07 + + +waiting on router queue for slot.... +07:47:18 ============================================================================ +07:47:18 Slot Id : <441> +07:47:18 Transaction Type : REQUEST +07:47:18 Received From : +07:47:18 ============================================================================ +07:47:18 FNo. Len. Field Value +07:47:18 ============================================================================ +07:47:18 [ 1] [ 4] [0800] +07:47:18 [ 7] [ 10] [0320124626] +07:47:18 [ 11] [ 6] [155248] +07:47:18 [ 70] [ 3] [301] +07:47:18 ============================================================================ +07:47:18 + + +waiting on router queue for slot.... +07:47:18 Sending to : +07:47:18 ============================================================================ +07:47:18 ============================================================================ +07:47:18 Slot Id : <441> +07:47:18 Transaction Type : RESPONSE +07:47:18 Received From : +07:47:18 ============================================================================ +07:47:18 FNo. Len. Field Value +07:47:18 ============================================================================ +07:47:18 [ 1] [ 4] [0810] +07:47:18 [ 7] [ 10] [0320124626] +07:47:18 [ 11] [ 6] [155248] +07:47:18 [ 39] [ 2] [00] +07:47:18 [ 70] [ 3] [301] +07:47:18 ============================================================================ +07:47:18 Calculate Source COMM Id = 2 +07:47:18 ============================================================================ +07:47:18 + + +waiting on router queue for slot.... +07:47:20 ============================================================================ +07:47:20 Slot Id : <402> +07:47:20 Transaction Type : REQUEST +07:47:20 Received From : +07:47:20 ============================================================================ +07:47:20 FNo. Len. Field Value +07:47:20 ============================================================================ +07:47:20 [ 1] [ 4] [0200] +07:47:20 [ 2] [ 16] [6213544001861092] +07:47:20 [ 3] [ 6] [010000] +07:47:20 [ 4] [ 12] [000020000000] +07:47:20 [ 7] [ 10] [0320074512] +07:47:20 [ 11] [ 6] [930898] +07:47:20 [ 12] [ 6] [074512] +07:47:20 [ 13] [ 4] [0320] +07:47:20 [ 15] [ 4] [0320] +07:47:20 [ 18] [ 4] [6011] +07:47:20 [ 19] [ 3] [418] +07:47:20 [ 22] [ 3] [021] +07:47:20 [ 25] [ 2] [01] +07:47:20 [ 28] [ 9] [D00002000] +07:47:20 [ 32] [ 6] [668899] +07:47:20 [ 35] [ 32] [6213544001861092=491212016109055] +07:47:20 [ 37] [ 12] [507902045645] +07:47:20 [ 41] [ 8] [03205002] +07:47:20 [ 42] [ 15] [APT ] +07:47:20 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:47:20 [ 49] [ 3] [418] +07:47:20 [ 52] [ 16] [486BBCE451C72452] +07:47:20 ============================================================================ +07:47:20 + + +waiting on router queue for slot.... +07:47:20 Sending to : +07:47:20 ============================================================================ +07:47:20 Sending to : +07:47:20 ============================================================================ +07:47:20 ============================================================================ +07:47:20 Slot Id : <402> +07:47:20 Transaction Type : REQUEST +07:47:20 Received From : +07:47:20 ============================================================================ +07:47:20 FNo. Len. Field Value +07:47:20 ============================================================================ +07:47:20 [ 1] [ 4] [0200] +07:47:20 [ 2] [ 16] [6213544001861092] +07:47:20 [ 3] [ 6] [010000] +07:47:20 [ 4] [ 12] [000020000000] +07:47:20 [ 7] [ 10] [0320074512] +07:47:20 [ 11] [ 6] [930898] +07:47:20 [ 12] [ 6] [074512] +07:47:20 [ 13] [ 4] [0320] +07:47:20 [ 15] [ 4] [0320] +07:47:20 [ 18] [ 4] [6011] +07:47:20 [ 19] [ 3] [418] +07:47:20 [ 22] [ 3] [021] +07:47:20 [ 25] [ 2] [01] +07:47:20 [ 28] [ 9] [D00002000] +07:47:20 [ 32] [ 6] [668899] +07:47:20 [ 35] [ 32] [6213544001861092=491212016109055] +07:47:20 [ 37] [ 12] [507902045645] +07:47:20 [ 41] [ 8] [03205002] +07:47:20 [ 42] [ 15] [APT ] +07:47:20 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:47:20 [ 49] [ 3] [418] +07:47:20 [ 52] [ 16] [486BBCE451C72452] +07:47:20 ============================================================================ +07:47:20 + + +waiting on router queue for slot.... +07:47:20 Sending to : +07:47:20 ============================================================================ +07:47:20 ============================================================================ +07:47:20 Slot Id : <402> +07:47:20 Transaction Type : REQUEST +07:47:20 Received From : +07:47:20 ============================================================================ +07:47:20 FNo. Len. Field Value +07:47:20 ============================================================================ +07:47:20 [ 1] [ 4] [0200] +07:47:20 [ 2] [ 16] [6213544001861092] +07:47:20 [ 3] [ 6] [010000] +07:47:20 [ 4] [ 12] [000020000000] +07:47:20 [ 7] [ 10] [0320074512] +07:47:20 [ 11] [ 6] [930898] +07:47:20 [ 12] [ 6] [074512] +07:47:20 [ 13] [ 4] [0320] +07:47:20 [ 15] [ 4] [0320] +07:47:20 [ 18] [ 4] [6011] +07:47:20 [ 19] [ 3] [418] +07:47:20 [ 22] [ 3] [021] +07:47:20 [ 25] [ 2] [01] +07:47:20 [ 28] [ 9] [D00002000] +07:47:20 [ 32] [ 6] [668899] +07:47:20 [ 35] [ 32] [6213544001861092=491212016109055] +07:47:20 [ 37] [ 12] [507902045645] +07:47:20 [ 41] [ 8] [03205002] +07:47:20 [ 42] [ 15] [APT ] +07:47:20 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:47:20 [ 49] [ 3] [418] +07:47:20 [ 52] [ 16] [4758B363E7E69E35] +07:47:20 ============================================================================ +07:47:20 + + +waiting on router queue for slot.... +07:47:20 Sending to : <0> +07:47:20 ============================================================================ +07:47:21 ============================================================================ +07:47:21 Slot Id : <402> +07:47:21 Transaction Type : RESPONSE +07:47:21 Received From : +07:47:21 ============================================================================ +07:47:21 FNo. Len. Field Value +07:47:21 ============================================================================ +07:47:21 [ 1] [ 4] [0210] +07:47:21 [ 2] [ 16] [6213544001861092] +07:47:21 [ 3] [ 6] [010000] +07:47:21 [ 4] [ 12] [000020000000] +07:47:21 [ 7] [ 10] [0320074512] +07:47:21 [ 11] [ 6] [930898] +07:47:21 [ 12] [ 6] [074512] +07:47:21 [ 13] [ 4] [0320] +07:47:21 [ 15] [ 4] [0320] +07:47:21 [ 18] [ 4] [6011] +07:47:21 [ 19] [ 3] [418] +07:47:21 [ 32] [ 6] [668899] +07:47:21 [ 35] [ 32] [6213544001861092=491212016109055] +07:47:21 [ 37] [ 12] [507902045645] +07:47:21 [ 38] [ 6] [186601] +07:47:21 [ 39] [ 2] [00] +07:47:21 [ 41] [ 8] [03205002] +07:47:21 [ 49] [ 3] [418] +07:47:21 [ 54] [ 40] [0001418C0004043306380002418C000404330638] +07:47:21 ============================================================================ +07:47:21 Sending to : +07:47:21 ============================================================================ +07:47:21 + + +waiting on router queue for slot.... +07:47:22 ============================================================================ +07:47:22 Slot Id : <375> +07:47:22 Transaction Type : REQUEST +07:47:22 Received From : +07:47:22 ============================================================================ +07:47:22 FNo. Len. Field Value +07:47:22 ============================================================================ +07:47:22 [ 1] [ 4] [0200] +07:47:22 [ 2] [ 16] [6688990108425909] +07:47:22 [ 3] [ 6] [301000] +07:47:22 [ 4] [ 12] [000000000000] +07:47:22 [ 7] [ 10] [0320074718] +07:47:22 [ 11] [ 6] [673877] +07:47:22 [ 12] [ 6] [074718] +07:47:22 [ 13] [ 4] [0320] +07:47:22 [ 15] [ 4] [0320] +07:47:22 [ 18] [ 4] [6011] +07:47:22 [ 22] [ 3] [900] +07:47:22 [ 25] [ 2] [02] +07:47:22 [ 28] [ 9] [D00000000] +07:47:22 [ 32] [ 6] [621354] +07:47:22 [ 35] [ 37] [6688990108425909=44061231590981400000] +07:47:22 [ 37] [ 12] [507903499458] +07:47:22 [ 41] [ 8] [06002200] +07:47:22 [ 42] [ 15] [NATIVE ] +07:47:22 [ 43] [ 40] [Beng Market Beng LAO] +07:47:22 [ 49] [ 3] [418] +07:47:22 [ 52] [ 16] [ACAF633B9F34FA26] +07:47:22 ============================================================================ +07:47:22 + + +waiting on router queue for slot.... +07:47:22 Sending to : +07:47:22 ============================================================================ +07:47:22 Sending to : +07:47:22 ============================================================================ +07:47:22 ============================================================================ +07:47:22 Slot Id : <375> +07:47:22 Transaction Type : REQUEST +07:47:22 Received From : +07:47:22 ============================================================================ +07:47:22 FNo. Len. Field Value +07:47:22 ============================================================================ +07:47:22 [ 1] [ 4] [0200] +07:47:22 [ 2] [ 16] [6688990108425909] +07:47:22 [ 3] [ 6] [301000] +07:47:22 [ 4] [ 12] [000000000000] +07:47:22 [ 7] [ 10] [0320074718] +07:47:22 [ 11] [ 6] [673877] +07:47:22 [ 12] [ 6] [074718] +07:47:22 [ 13] [ 4] [0320] +07:47:22 [ 15] [ 4] [0320] +07:47:22 [ 18] [ 4] [6011] +07:47:22 [ 22] [ 3] [900] +07:47:22 [ 25] [ 2] [02] +07:47:22 [ 28] [ 9] [D00000000] +07:47:22 [ 32] [ 6] [621354] +07:47:22 [ 35] [ 37] [6688990108425909=44061231590981400000] +07:47:22 [ 37] [ 12] [507903499458] +07:47:22 [ 41] [ 8] [06002200] +07:47:22 [ 42] [ 15] [NATIVE ] +07:47:22 [ 43] [ 40] [Beng Market Beng LAO] +07:47:22 [ 49] [ 3] [418] +07:47:22 [ 52] [ 16] [ACAF633B9F34FA26] +07:47:22 ============================================================================ +07:47:22 + + +waiting on router queue for slot.... +07:47:22 Sending to : +07:47:22 ============================================================================ +07:47:22 ============================================================================ +07:47:22 Slot Id : <375> +07:47:22 Transaction Type : REQUEST +07:47:22 Received From : +07:47:22 ============================================================================ +07:47:22 FNo. Len. Field Value +07:47:22 ============================================================================ +07:47:22 [ 1] [ 4] [0200] +07:47:22 [ 2] [ 16] [6688990108425909] +07:47:22 [ 3] [ 6] [301000] +07:47:22 [ 4] [ 12] [000000000000] +07:47:22 [ 7] [ 10] [0320074718] +07:47:22 [ 11] [ 6] [673877] +07:47:22 [ 12] [ 6] [074718] +07:47:22 [ 13] [ 4] [0320] +07:47:22 [ 15] [ 4] [0320] +07:47:22 [ 18] [ 4] [6011] +07:47:22 [ 22] [ 3] [900] +07:47:22 [ 25] [ 2] [02] +07:47:22 [ 28] [ 9] [D00000000] +07:47:22 [ 32] [ 6] [621354] +07:47:22 [ 35] [ 37] [6688990108425909=44061231590981400000] +07:47:22 [ 37] [ 12] [507903499458] +07:47:22 [ 41] [ 8] [06002200] +07:47:22 [ 42] [ 15] [NATIVE ] +07:47:22 [ 43] [ 40] [Beng Market Beng LAO] +07:47:22 [ 49] [ 3] [418] +07:47:22 [ 52] [ 16] [24BB08C196FC998E] +07:47:22 ============================================================================ +07:47:22 + + +waiting on router queue for slot.... +07:47:22 Sending to : <4> +07:47:22 ============================================================================ +07:47:22 ============================================================================ +07:47:22 Slot Id : <402> +07:47:22 Transaction Type : RESPONSE +07:47:22 Received From : +07:47:22 ============================================================================ +07:47:22 FNo. Len. Field Value +07:47:22 ============================================================================ +07:47:22 [ 1] [ 4] [0210] +07:47:22 [ 2] [ 16] [6213544001861092] +07:47:22 [ 3] [ 6] [010000] +07:47:22 [ 4] [ 12] [000020000000] +07:47:22 [ 7] [ 10] [0320074512] +07:47:22 [ 11] [ 6] [930898] +07:47:22 [ 12] [ 6] [074512] +07:47:22 [ 13] [ 4] [0320] +07:47:22 [ 15] [ 4] [0320] +07:47:22 [ 18] [ 4] [6011] +07:47:22 [ 19] [ 3] [418] +07:47:22 [ 32] [ 6] [668899] +07:47:22 [ 35] [ 32] [6213544001861092=491212016109055] +07:47:22 [ 37] [ 12] [507902045645] +07:47:22 [ 38] [ 6] [186601] +07:47:22 [ 39] [ 2] [00] +07:47:22 [ 41] [ 8] [03205002] +07:47:22 [ 49] [ 3] [418] +07:47:22 [ 54] [ 40] [0001418C0004043306380002418C000404330638] +07:47:22 ============================================================================ +07:47:22 Calculate Source COMM Id = 4 +07:47:22 ============================================================================ +07:47:22 + + +waiting on router queue for slot.... +07:47:23 ============================================================================ +07:47:23 Slot Id : <375> +07:47:23 Transaction Type : RESPONSE +07:47:23 Received From : +07:47:23 ============================================================================ +07:47:23 FNo. Len. Field Value +07:47:23 ============================================================================ +07:47:23 [ 1] [ 4] [0210] +07:47:23 [ 2] [ 16] [6688990108425909] +07:47:23 [ 3] [ 6] [301000] +07:47:23 [ 4] [ 12] [000000000000] +07:47:23 [ 11] [ 6] [673877] +07:47:23 [ 12] [ 6] [074718] +07:47:23 [ 15] [ 4] [0320] +07:47:23 [ 18] [ 4] [6011] +07:47:23 [ 32] [ 6] [621354] +07:47:23 [ 35] [ 37] [6688990108425909=44061231590981400000] +07:47:23 [ 37] [ 12] [507903499458] +07:47:23 [ 38] [ 6] [271983] +07:47:23 [ 39] [ 2] [00] +07:47:23 [ 41] [ 8] [06002200] +07:47:23 [ 49] [ 3] [418] +07:47:23 [ 54] [ 20] [1002418C000010034337] +07:47:23 ============================================================================ +07:47:23 Sending to : +07:47:23 ============================================================================ +07:47:23 + + +waiting on router queue for slot.... +07:47:24 ============================================================================ +07:47:24 Slot Id : <375> +07:47:24 Transaction Type : RESPONSE +07:47:24 Received From : +07:47:24 ============================================================================ +07:47:24 FNo. Len. Field Value +07:47:24 ============================================================================ +07:47:24 [ 1] [ 4] [0210] +07:47:24 [ 2] [ 16] [6688990108425909] +07:47:24 [ 3] [ 6] [301000] +07:47:24 [ 4] [ 12] [000000000000] +07:47:24 [ 11] [ 6] [673877] +07:47:24 [ 12] [ 6] [074718] +07:47:24 [ 15] [ 4] [0320] +07:47:24 [ 18] [ 4] [6011] +07:47:24 [ 32] [ 6] [621354] +07:47:24 [ 35] [ 37] [6688990108425909=44061231590981400000] +07:47:24 [ 37] [ 12] [507903499458] +07:47:24 [ 38] [ 6] [271983] +07:47:24 [ 39] [ 2] [00] +07:47:24 [ 41] [ 8] [06002200] +07:47:24 [ 49] [ 3] [418] +07:47:24 [ 54] [ 20] [1002418C000010034337] +07:47:24 ============================================================================ +07:47:24 Calculate Source COMM Id = 0 +07:47:24 ============================================================================ +07:47:24 + + +waiting on router queue for slot.... +07:47:29 ============================================================================ +07:47:29 Slot Id : <408> +07:47:29 Transaction Type : REQUEST +07:47:29 Received From : +07:47:29 ============================================================================ +07:47:29 FNo. Len. Field Value +07:47:29 ============================================================================ +07:47:29 [ 1] [ 4] [0800] +07:47:29 [ 7] [ 10] [0320124637] +07:47:29 [ 11] [ 6] [155249] +07:47:29 [ 70] [ 3] [301] +07:47:29 ============================================================================ +07:47:29 + + +waiting on router queue for slot.... +07:47:29 Sending to : +07:47:29 ============================================================================ +07:47:29 ============================================================================ +07:47:29 Slot Id : <408> +07:47:29 Transaction Type : RESPONSE +07:47:29 Received From : +07:47:29 ============================================================================ +07:47:29 FNo. Len. Field Value +07:47:29 ============================================================================ +07:47:29 [ 1] [ 4] [0810] +07:47:29 [ 7] [ 10] [0320124637] +07:47:29 [ 11] [ 6] [155249] +07:47:29 [ 39] [ 2] [00] +07:47:29 [ 70] [ 3] [301] +07:47:29 ============================================================================ +07:47:29 Calculate Source COMM Id = 2 +07:47:29 ============================================================================ +07:47:29 + + +waiting on router queue for slot.... +07:47:34 ============================================================================ +07:47:34 Slot Id : <409> +07:47:34 Transaction Type : REQUEST +07:47:34 Received From : +07:47:34 ============================================================================ +07:47:34 FNo. Len. Field Value +07:47:34 ============================================================================ +07:47:34 [ 1] [ 4] [0200] +07:47:34 [ 2] [ 16] [6213545000159446] +07:47:34 [ 3] [ 6] [301000] +07:47:34 [ 7] [ 10] [0320004641] +07:47:34 [ 11] [ 6] [266895] +07:47:34 [ 12] [ 6] [074641] +07:47:34 [ 13] [ 4] [0320] +07:47:34 [ 14] [ 4] [4912] +07:47:34 [ 15] [ 4] [0320] +07:47:34 [ 18] [ 4] [6011] +07:47:34 [ 19] [ 3] [418] +07:47:34 [ 22] [ 3] [021] +07:47:34 [ 25] [ 2] [01] +07:47:34 [ 32] [ 6] [180893] +07:47:34 [ 35] [ 32] [6213545000159446=491212015944197] +07:47:34 [ 37] [ 12] [507900266895] +07:47:34 [ 41] [ 8] [0363CPSH] +07:47:34 [ 42] [ 15] [999999 ] +07:47:34 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:47:34 [ 49] [ 3] [418] +07:47:34 [ 52] [ 16] [15501990136786CD] +07:47:34 ============================================================================ +07:47:34 + + +waiting on router queue for slot.... +07:47:34 Sending to : +07:47:34 ============================================================================ +07:47:34 Sending to : +07:47:34 ============================================================================ +07:47:34 ============================================================================ +07:47:34 Slot Id : <409> +07:47:34 Transaction Type : REQUEST +07:47:34 Received From : +07:47:34 ============================================================================ +07:47:34 FNo. Len. Field Value +07:47:34 ============================================================================ +07:47:34 [ 1] [ 4] [0200] +07:47:34 [ 2] [ 16] [6213545000159446] +07:47:34 [ 3] [ 6] [301000] +07:47:34 [ 7] [ 10] [0320004641] +07:47:34 [ 11] [ 6] [266895] +07:47:34 [ 12] [ 6] [074641] +07:47:34 [ 13] [ 4] [0320] +07:47:34 [ 14] [ 4] [4912] +07:47:34 [ 15] [ 4] [0320] +07:47:34 [ 18] [ 4] [6011] +07:47:34 [ 19] [ 3] [418] +07:47:34 [ 22] [ 3] [021] +07:47:34 [ 25] [ 2] [01] +07:47:34 [ 32] [ 6] [180893] +07:47:34 [ 35] [ 32] [6213545000159446=491212015944197] +07:47:34 [ 37] [ 12] [507900266895] +07:47:34 [ 41] [ 8] [0363CPSH] +07:47:34 [ 42] [ 15] [999999 ] +07:47:34 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:47:34 [ 49] [ 3] [418] +07:47:34 [ 52] [ 16] [15501990136786CD] +07:47:34 ============================================================================ +07:47:34 + + +waiting on router queue for slot.... +07:47:34 Sending to : +07:47:34 ============================================================================ +07:47:34 ============================================================================ +07:47:34 Slot Id : <409> +07:47:34 Transaction Type : REQUEST +07:47:34 Received From : +07:47:34 ============================================================================ +07:47:34 FNo. Len. Field Value +07:47:34 ============================================================================ +07:47:34 [ 1] [ 4] [0200] +07:47:34 [ 2] [ 16] [6213545000159446] +07:47:34 [ 3] [ 6] [301000] +07:47:34 [ 7] [ 10] [0320004641] +07:47:34 [ 11] [ 6] [266895] +07:47:34 [ 12] [ 6] [074641] +07:47:34 [ 13] [ 4] [0320] +07:47:34 [ 14] [ 4] [4912] +07:47:34 [ 15] [ 4] [0320] +07:47:34 [ 18] [ 4] [6011] +07:47:34 [ 19] [ 3] [418] +07:47:34 [ 22] [ 3] [021] +07:47:34 [ 25] [ 2] [01] +07:47:34 [ 32] [ 6] [180893] +07:47:34 [ 35] [ 32] [6213545000159446=491212015944197] +07:47:34 [ 37] [ 12] [507900266895] +07:47:34 [ 41] [ 8] [0363CPSH] +07:47:34 [ 42] [ 15] [999999 ] +07:47:34 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:47:34 [ 49] [ 3] [418] +07:47:34 [ 52] [ 16] [CD7AAE7E3A938E3D] +07:47:34 ============================================================================ +07:47:34 + + +waiting on router queue for slot.... +07:47:34 Sending to : <0> +07:47:34 ============================================================================ +07:47:35 ============================================================================ +07:47:35 Slot Id : <409> +07:47:35 Transaction Type : RESPONSE +07:47:35 Received From : +07:47:35 ============================================================================ +07:47:35 FNo. Len. Field Value +07:47:35 ============================================================================ +07:47:35 [ 1] [ 4] [0210] +07:47:35 [ 2] [ 16] [6213545000159446] +07:47:35 [ 3] [ 6] [301000] +07:47:35 [ 4] [ 12] [000000000000] +07:47:35 [ 7] [ 10] [0320004641] +07:47:35 [ 11] [ 6] [266895] +07:47:35 [ 12] [ 6] [074641] +07:47:35 [ 13] [ 4] [0320] +07:47:35 [ 15] [ 4] [0320] +07:47:35 [ 18] [ 4] [6011] +07:47:35 [ 19] [ 3] [418] +07:47:35 [ 32] [ 6] [180893] +07:47:35 [ 35] [ 32] [6213545000159446=491212015944197] +07:47:35 [ 37] [ 12] [507900266895] +07:47:35 [ 38] [ 6] [110898] +07:47:35 [ 39] [ 2] [00] +07:47:35 [ 41] [ 8] [0363CPSH] +07:47:35 [ 49] [ 3] [418] +07:47:35 [ 54] [ 40] [1001418C0001402186241002418C000140218624] +07:47:35 ============================================================================ +07:47:35 Sending to : +07:47:35 ============================================================================ +07:47:35 + + +waiting on router queue for slot.... +07:47:36 ============================================================================ +07:47:36 Slot Id : <409> +07:47:36 Transaction Type : RESPONSE +07:47:36 Received From : +07:47:36 ============================================================================ +07:47:36 FNo. Len. Field Value +07:47:36 ============================================================================ +07:47:36 [ 1] [ 4] [0210] +07:47:36 [ 2] [ 16] [6213545000159446] +07:47:36 [ 3] [ 6] [301000] +07:47:36 [ 4] [ 12] [000000000000] +07:47:36 [ 7] [ 10] [0320004641] +07:47:36 [ 11] [ 6] [266895] +07:47:36 [ 12] [ 6] [074641] +07:47:36 [ 13] [ 4] [0320] +07:47:36 [ 15] [ 4] [0320] +07:47:36 [ 18] [ 4] [6011] +07:47:36 [ 19] [ 3] [418] +07:47:36 [ 32] [ 6] [180893] +07:47:36 [ 35] [ 32] [6213545000159446=491212015944197] +07:47:36 [ 37] [ 12] [507900266895] +07:47:36 [ 38] [ 6] [110898] +07:47:36 [ 39] [ 2] [00] +07:47:36 [ 41] [ 8] [0363CPSH] +07:47:36 [ 49] [ 3] [418] +07:47:36 [ 54] [ 40] [1001418C0001402186241002418C000140218624] +07:47:36 ============================================================================ +07:47:36 Calculate Source COMM Id = 2 +07:47:36 ============================================================================ +07:47:36 + + +waiting on router queue for slot.... +07:47:40 ============================================================================ +07:47:40 Slot Id : <437> +07:47:40 Transaction Type : REQUEST +07:47:40 Received From : +07:47:40 ============================================================================ +07:47:40 FNo. Len. Field Value +07:47:40 ============================================================================ +07:47:40 [ 1] [ 4] [0800] +07:47:40 [ 2] [ 5] [02531] +07:47:40 [ 3] [ 6] [579078] +07:47:40 [ 7] [ 10] [0320004740] +07:47:40 [ 11] [ 6] [806864] +07:47:40 [ 15] [ 10] [0320004740] +07:47:40 [ 37] [ 11] [57907806864] +07:47:40 [ 70] [ 3] [001] +07:47:40 ============================================================================ +07:47:40 + + +waiting on router queue for slot.... +07:47:40 ============================================================================ +07:47:40 Slot Id : <437> +07:47:40 Transaction Type : RESPONSE +07:47:40 Received From : +07:47:40 ============================================================================ +07:47:40 FNo. Len. Field Value +07:47:40 ============================================================================ +07:47:40 [ 1] [ 4] [0810] +07:47:40 [ 7] [ 10] [0320004740] +07:47:40 [ 11] [ 6] [806864] +07:47:40 [ 15] [ 4] [0320] +07:47:40 [ 37] [ 12] [57907806864] +07:47:40 [ 39] [ 2] [00] +07:47:40 [ 70] [ 3] [001] +07:47:40 ============================================================================ +07:47:40 Sending to : +07:47:40 ============================================================================ +07:47:40 + + +waiting on router queue for slot.... +07:47:44 ============================================================================ +07:47:44 Slot Id : <385> +07:47:44 Transaction Type : REQUEST +07:47:44 Received From : +07:47:44 ============================================================================ +07:47:44 FNo. Len. Field Value +07:47:44 ============================================================================ +07:47:44 [ 1] [ 4] [0200] +07:47:44 [ 2] [ 16] [6688990040020628] +07:47:44 [ 3] [ 6] [010000] +07:47:44 [ 4] [ 12] [000010000000] +07:47:44 [ 7] [ 10] [0320004651] +07:47:44 [ 11] [ 6] [266898] +07:47:44 [ 12] [ 6] [074651] +07:47:44 [ 13] [ 4] [0320] +07:47:44 [ 14] [ 4] [9711] +07:47:44 [ 15] [ 4] [0320] +07:47:44 [ 18] [ 4] [6011] +07:47:44 [ 19] [ 3] [418] +07:47:44 [ 22] [ 3] [021] +07:47:44 [ 25] [ 2] [01] +07:47:44 [ 28] [ 9] [D00002000] +07:47:44 [ 32] [ 6] [180893] +07:47:44 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:47:44 [ 37] [ 12] [507900266898] +07:47:44 [ 41] [ 8] [0401XSBR] +07:47:44 [ 42] [ 15] [999999 ] +07:47:44 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +07:47:44 [ 49] [ 3] [418] +07:47:44 [ 52] [ 16] [ADAF6B10DA6F6B75] +07:47:44 ============================================================================ +07:47:44 + + +waiting on router queue for slot.... +07:47:44 Sending to : +07:47:44 ============================================================================ +07:47:44 Sending to : +07:47:44 ============================================================================ +07:47:44 ============================================================================ +07:47:44 Slot Id : <385> +07:47:44 Transaction Type : REQUEST +07:47:44 Received From : +07:47:44 ============================================================================ +07:47:44 FNo. Len. Field Value +07:47:44 ============================================================================ +07:47:44 [ 1] [ 4] [0200] +07:47:44 [ 2] [ 16] [6688990040020628] +07:47:44 [ 3] [ 6] [010000] +07:47:44 [ 4] [ 12] [000010000000] +07:47:44 [ 7] [ 10] [0320004651] +07:47:44 [ 11] [ 6] [266898] +07:47:44 [ 12] [ 6] [074651] +07:47:44 [ 13] [ 4] [0320] +07:47:44 [ 14] [ 4] [9711] +07:47:44 [ 15] [ 4] [0320] +07:47:44 [ 18] [ 4] [6011] +07:47:44 [ 19] [ 3] [418] +07:47:44 [ 22] [ 3] [021] +07:47:44 [ 25] [ 2] [01] +07:47:44 [ 28] [ 9] [D00002000] +07:47:44 [ 32] [ 6] [180893] +07:47:44 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:47:44 [ 37] [ 12] [507900266898] +07:47:44 [ 41] [ 8] [0401XSBR] +07:47:44 [ 42] [ 15] [999999 ] +07:47:44 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +07:47:44 [ 49] [ 3] [418] +07:47:44 [ 52] [ 16] [ADAF6B10DA6F6B75] +07:47:44 ============================================================================ +07:47:44 + + +waiting on router queue for slot.... +07:47:44 Sending to : +07:47:44 ============================================================================ +07:47:44 ============================================================================ +07:47:44 Slot Id : <385> +07:47:44 Transaction Type : REQUEST +07:47:44 Received From : +07:47:44 ============================================================================ +07:47:44 FNo. Len. Field Value +07:47:44 ============================================================================ +07:47:44 [ 1] [ 4] [0200] +07:47:44 [ 2] [ 16] [6688990040020628] +07:47:44 [ 3] [ 6] [010000] +07:47:44 [ 4] [ 12] [000010000000] +07:47:44 [ 7] [ 10] [0320004651] +07:47:44 [ 11] [ 6] [266898] +07:47:44 [ 12] [ 6] [074651] +07:47:44 [ 13] [ 4] [0320] +07:47:44 [ 14] [ 4] [9711] +07:47:44 [ 15] [ 4] [0320] +07:47:44 [ 18] [ 4] [6011] +07:47:44 [ 19] [ 3] [418] +07:47:44 [ 22] [ 3] [021] +07:47:44 [ 25] [ 2] [01] +07:47:44 [ 28] [ 9] [D00002000] +07:47:44 [ 32] [ 6] [180893] +07:47:44 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:47:44 [ 37] [ 12] [507900266898] +07:47:44 [ 41] [ 8] [0401XSBR] +07:47:44 [ 42] [ 15] [999999 ] +07:47:44 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +07:47:44 [ 49] [ 3] [418] +07:47:44 [ 52] [ 16] [B9E0A16E1CF6643D] +07:47:44 ============================================================================ +07:47:44 + + +waiting on router queue for slot.... +07:47:44 Sending to : <0> +07:47:44 ============================================================================ +07:47:44 ============================================================================ +07:47:44 Slot Id : <385> +07:47:44 Transaction Type : RESPONSE +07:47:44 Received From : +07:47:44 ============================================================================ +07:47:44 FNo. Len. Field Value +07:47:44 ============================================================================ +07:47:44 [ 1] [ 4] [0210] +07:47:44 [ 2] [ 16] [6688990040020628] +07:47:44 [ 3] [ 6] [010000] +07:47:44 [ 4] [ 12] [000010000000] +07:47:44 [ 7] [ 10] [0320004651] +07:47:44 [ 11] [ 6] [266898] +07:47:44 [ 12] [ 6] [074651] +07:47:44 [ 13] [ 4] [0320] +07:47:44 [ 15] [ 4] [0320] +07:47:44 [ 18] [ 4] [6011] +07:47:44 [ 19] [ 3] [418] +07:47:44 [ 22] [ 3] [021] +07:47:44 [ 32] [ 6] [180893] +07:47:44 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:47:44 [ 37] [ 12] [507900266898] +07:47:44 [ 39] [ 2] [14] +07:47:44 [ 41] [ 8] [0401XSBR] +07:47:44 [ 49] [ 3] [418] +07:47:44 ============================================================================ +07:47:44 Sending to : +07:47:44 ============================================================================ +07:47:44 + + +waiting on router queue for slot.... +07:47:45 ============================================================================ +07:47:45 Slot Id : <385> +07:47:45 Transaction Type : RESPONSE +07:47:45 Received From : +07:47:45 ============================================================================ +07:47:45 FNo. Len. Field Value +07:47:45 ============================================================================ +07:47:45 [ 1] [ 4] [0210] +07:47:45 [ 2] [ 16] [6688990040020628] +07:47:45 [ 3] [ 6] [010000] +07:47:45 [ 4] [ 12] [000010000000] +07:47:45 [ 7] [ 10] [0320004651] +07:47:45 [ 11] [ 6] [266898] +07:47:45 [ 12] [ 6] [074651] +07:47:45 [ 13] [ 4] [0320] +07:47:45 [ 15] [ 4] [0320] +07:47:45 [ 18] [ 4] [6011] +07:47:45 [ 19] [ 3] [418] +07:47:45 [ 22] [ 3] [021] +07:47:45 [ 32] [ 6] [180893] +07:47:45 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:47:45 [ 37] [ 12] [507900266898] +07:47:45 [ 39] [ 2] [14] +07:47:45 [ 41] [ 8] [0401XSBR] +07:47:45 [ 49] [ 3] [418] +07:47:45 ============================================================================ +07:47:45 Calculate Source COMM Id = 2 +07:47:45 ============================================================================ +07:47:45 + + +waiting on router queue for slot.... +07:48:00 ============================================================================ +07:48:00 Slot Id : <362> +07:48:00 Transaction Type : REQUEST +07:48:00 Received From : +07:48:00 ============================================================================ +07:48:00 FNo. Len. Field Value +07:48:00 ============================================================================ +07:48:00 [ 1] [ 4] [0800] +07:48:00 [ 7] [ 10] [0320124709] +07:48:00 [ 11] [ 6] [155250] +07:48:00 [ 70] [ 3] [301] +07:48:00 ============================================================================ +07:48:00 + + +waiting on router queue for slot.... +07:48:00 Sending to : +07:48:00 ============================================================================ +07:48:00 ============================================================================ +07:48:00 Slot Id : <362> +07:48:00 Transaction Type : RESPONSE +07:48:00 Received From : +07:48:00 ============================================================================ +07:48:00 FNo. Len. Field Value +07:48:00 ============================================================================ +07:48:00 [ 1] [ 4] [0810] +07:48:00 [ 7] [ 10] [0320124709] +07:48:00 [ 11] [ 6] [155250] +07:48:00 [ 39] [ 2] [00] +07:48:00 [ 70] [ 3] [301] +07:48:00 ============================================================================ +07:48:00 Calculate Source COMM Id = 2 +07:48:00 ============================================================================ +07:48:00 + + +waiting on router queue for slot.... +07:48:03 ============================================================================ +07:48:03 Slot Id : <403> +07:48:03 Transaction Type : REQUEST +07:48:03 Received From : +07:48:03 ============================================================================ +07:48:03 FNo. Len. Field Value +07:48:03 ============================================================================ +07:48:03 [ 1] [ 4] [0800] +07:48:03 [ 7] [ 10] [0320145953] +07:48:03 [ 11] [ 6] [075953] +07:48:03 [ 37] [ 12] [57907075953] +07:48:03 [ 70] [ 3] [301] +07:48:03 ============================================================================ +07:48:03 + + +waiting on router queue for slot.... +07:48:03 Sending to : +07:48:03 ============================================================================ +07:48:03 ============================================================================ +07:48:03 Slot Id : <403> +07:48:03 Transaction Type : RESPONSE +07:48:03 Received From : +07:48:03 ============================================================================ +07:48:03 FNo. Len. Field Value +07:48:03 ============================================================================ +07:48:03 [ 1] [ 4] [0810] +07:48:03 [ 7] [ 10] [0320145953] +07:48:03 [ 11] [ 6] [075953] +07:48:03 [ 37] [ 12] [579070759530] +07:48:03 [ 39] [ 2] [00] +07:48:03 [ 70] [ 3] [810] +07:48:03 ============================================================================ +07:48:03 Calculate Source COMM Id = 6 +07:48:03 ============================================================================ +07:48:03 + + +waiting on router queue for slot.... +07:48:07 ============================================================================ +07:48:07 Slot Id : <412> +07:48:07 Transaction Type : REQUEST +07:48:07 Received From : +07:48:07 ============================================================================ +07:48:07 FNo. Len. Field Value +07:48:07 ============================================================================ +07:48:07 [ 1] [ 4] [0200] +07:48:07 [ 2] [ 16] [6213544002213517] +07:48:07 [ 3] [ 6] [010000] +07:48:07 [ 4] [ 12] [000050000000] +07:48:07 [ 7] [ 10] [0320074558] +07:48:07 [ 11] [ 6] [930922] +07:48:07 [ 12] [ 6] [074558] +07:48:07 [ 13] [ 4] [0320] +07:48:07 [ 15] [ 4] [0320] +07:48:07 [ 18] [ 4] [6011] +07:48:07 [ 19] [ 3] [418] +07:48:07 [ 22] [ 3] [021] +07:48:07 [ 25] [ 2] [01] +07:48:07 [ 28] [ 9] [D00002000] +07:48:07 [ 32] [ 6] [668899] +07:48:07 [ 35] [ 32] [6213544002213517=491212011351917] +07:48:07 [ 37] [ 12] [507901416551] +07:48:07 [ 41] [ 8] [03011002] +07:48:07 [ 42] [ 15] [APT ] +07:48:07 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +07:48:07 [ 49] [ 3] [418] +07:48:07 [ 52] [ 16] [F54B09BD34DADC2B] +07:48:07 ============================================================================ +07:48:07 + + +waiting on router queue for slot.... +07:48:07 Sending to : +07:48:07 ============================================================================ +07:48:07 Sending to : +07:48:07 ============================================================================ +07:48:07 ============================================================================ +07:48:07 Slot Id : <412> +07:48:07 Transaction Type : REQUEST +07:48:07 Received From : +07:48:07 ============================================================================ +07:48:07 FNo. Len. Field Value +07:48:07 ============================================================================ +07:48:07 [ 1] [ 4] [0200] +07:48:07 [ 2] [ 16] [6213544002213517] +07:48:07 [ 3] [ 6] [010000] +07:48:07 [ 4] [ 12] [000050000000] +07:48:07 [ 7] [ 10] [0320074558] +07:48:07 [ 11] [ 6] [930922] +07:48:07 [ 12] [ 6] [074558] +07:48:07 [ 13] [ 4] [0320] +07:48:07 [ 15] [ 4] [0320] +07:48:07 [ 18] [ 4] [6011] +07:48:07 [ 19] [ 3] [418] +07:48:07 [ 22] [ 3] [021] +07:48:07 [ 25] [ 2] [01] +07:48:07 [ 28] [ 9] [D00002000] +07:48:07 [ 32] [ 6] [668899] +07:48:07 [ 35] [ 32] [6213544002213517=491212011351917] +07:48:07 [ 37] [ 12] [507901416551] +07:48:07 [ 41] [ 8] [03011002] +07:48:07 [ 42] [ 15] [APT ] +07:48:07 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +07:48:07 [ 49] [ 3] [418] +07:48:07 [ 52] [ 16] [F54B09BD34DADC2B] +07:48:07 ============================================================================ +07:48:07 + + +waiting on router queue for slot.... +07:48:07 Sending to : +07:48:07 ============================================================================ +07:48:07 ============================================================================ +07:48:07 Slot Id : <412> +07:48:07 Transaction Type : REQUEST +07:48:07 Received From : +07:48:07 ============================================================================ +07:48:07 FNo. Len. Field Value +07:48:07 ============================================================================ +07:48:07 [ 1] [ 4] [0200] +07:48:07 [ 2] [ 16] [6213544002213517] +07:48:07 [ 3] [ 6] [010000] +07:48:07 [ 4] [ 12] [000050000000] +07:48:07 [ 7] [ 10] [0320074558] +07:48:07 [ 11] [ 6] [930922] +07:48:07 [ 12] [ 6] [074558] +07:48:07 [ 13] [ 4] [0320] +07:48:07 [ 15] [ 4] [0320] +07:48:07 [ 18] [ 4] [6011] +07:48:07 [ 19] [ 3] [418] +07:48:07 [ 22] [ 3] [021] +07:48:07 [ 25] [ 2] [01] +07:48:07 [ 28] [ 9] [D00002000] +07:48:07 [ 32] [ 6] [668899] +07:48:07 [ 35] [ 32] [6213544002213517=491212011351917] +07:48:07 [ 37] [ 12] [507901416551] +07:48:07 [ 41] [ 8] [03011002] +07:48:07 [ 42] [ 15] [APT ] +07:48:07 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +07:48:07 [ 49] [ 3] [418] +07:48:07 [ 52] [ 16] [7E33F19C2E183F9B] +07:48:07 ============================================================================ +07:48:07 + + +waiting on router queue for slot.... +07:48:07 Sending to : <0> +07:48:07 ============================================================================ +07:48:08 ============================================================================ +07:48:08 Slot Id : <412> +07:48:08 Transaction Type : RESPONSE +07:48:08 Received From : +07:48:08 ============================================================================ +07:48:08 FNo. Len. Field Value +07:48:08 ============================================================================ +07:48:08 [ 1] [ 4] [0210] +07:48:08 [ 2] [ 16] [6213544002213517] +07:48:08 [ 3] [ 6] [010000] +07:48:08 [ 4] [ 12] [000050000000] +07:48:08 [ 7] [ 10] [0320074558] +07:48:08 [ 11] [ 6] [930922] +07:48:08 [ 12] [ 6] [074558] +07:48:08 [ 13] [ 4] [0320] +07:48:08 [ 15] [ 4] [0320] +07:48:08 [ 18] [ 4] [6011] +07:48:08 [ 19] [ 3] [418] +07:48:08 [ 32] [ 6] [668899] +07:48:08 [ 35] [ 32] [6213544002213517=491212011351917] +07:48:08 [ 37] [ 12] [507901416551] +07:48:08 [ 38] [ 6] [933439] +07:48:08 [ 39] [ 2] [00] +07:48:08 [ 41] [ 8] [03011002] +07:48:08 [ 49] [ 3] [418] +07:48:08 [ 54] [ 40] [0001840C0000000300500002840C000000030050] +07:48:08 ============================================================================ +07:48:08 Sending to : +07:48:08 ============================================================================ +07:48:08 + + +waiting on router queue for slot.... +07:48:09 ============================================================================ +07:48:09 Slot Id : <412> +07:48:09 Transaction Type : RESPONSE +07:48:09 Received From : +07:48:09 ============================================================================ +07:48:09 FNo. Len. Field Value +07:48:09 ============================================================================ +07:48:09 [ 1] [ 4] [0210] +07:48:09 [ 2] [ 16] [6213544002213517] +07:48:09 [ 3] [ 6] [010000] +07:48:09 [ 4] [ 12] [000050000000] +07:48:09 [ 7] [ 10] [0320074558] +07:48:09 [ 11] [ 6] [930922] +07:48:09 [ 12] [ 6] [074558] +07:48:09 [ 13] [ 4] [0320] +07:48:09 [ 15] [ 4] [0320] +07:48:09 [ 18] [ 4] [6011] +07:48:09 [ 19] [ 3] [418] +07:48:09 [ 32] [ 6] [668899] +07:48:09 [ 35] [ 32] [6213544002213517=491212011351917] +07:48:09 [ 37] [ 12] [507901416551] +07:48:09 [ 38] [ 6] [933439] +07:48:09 [ 39] [ 2] [00] +07:48:09 [ 41] [ 8] [03011002] +07:48:09 [ 49] [ 3] [418] +07:48:09 [ 54] [ 40] [0001840C0000000300500002840C000000030050] +07:48:09 ============================================================================ +07:48:09 Calculate Source COMM Id = 4 +07:48:09 ============================================================================ +07:48:09 + + +waiting on router queue for slot.... +07:48:09 ============================================================================ +07:48:09 Slot Id : <392> +07:48:09 Transaction Type : REQUEST +07:48:09 Received From : +07:48:09 ============================================================================ +07:48:09 FNo. Len. Field Value +07:48:09 ============================================================================ +07:48:09 [ 1] [ 4] [0200] +07:48:09 [ 2] [ 16] [6213545000159446] +07:48:09 [ 3] [ 6] [010000] +07:48:09 [ 4] [ 12] [000100000000] +07:48:09 [ 7] [ 10] [0320004717] +07:48:09 [ 11] [ 6] [266902] +07:48:09 [ 12] [ 6] [074717] +07:48:09 [ 13] [ 4] [0320] +07:48:09 [ 14] [ 4] [4912] +07:48:09 [ 15] [ 4] [0320] +07:48:09 [ 18] [ 4] [6011] +07:48:09 [ 19] [ 3] [418] +07:48:09 [ 22] [ 3] [021] +07:48:09 [ 25] [ 2] [01] +07:48:09 [ 28] [ 9] [D00002000] +07:48:09 [ 32] [ 6] [180893] +07:48:09 [ 35] [ 32] [6213545000159446=491212015944197] +07:48:09 [ 37] [ 12] [507900266902] +07:48:09 [ 41] [ 8] [0363CPSH] +07:48:09 [ 42] [ 15] [999999 ] +07:48:09 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:48:09 [ 49] [ 3] [418] +07:48:09 [ 52] [ 16] [15501990136786CD] +07:48:09 ============================================================================ +07:48:09 + + +waiting on router queue for slot.... +07:48:09 Sending to : +07:48:09 ============================================================================ +07:48:09 Sending to : +07:48:09 ============================================================================ +07:48:10 ============================================================================ +07:48:10 Slot Id : <392> +07:48:10 Transaction Type : REQUEST +07:48:10 Received From : +07:48:10 ============================================================================ +07:48:10 FNo. Len. Field Value +07:48:10 ============================================================================ +07:48:10 [ 1] [ 4] [0200] +07:48:10 [ 2] [ 16] [6213545000159446] +07:48:10 [ 3] [ 6] [010000] +07:48:10 [ 4] [ 12] [000100000000] +07:48:10 [ 7] [ 10] [0320004717] +07:48:10 [ 11] [ 6] [266902] +07:48:10 [ 12] [ 6] [074717] +07:48:10 [ 13] [ 4] [0320] +07:48:10 [ 14] [ 4] [4912] +07:48:10 [ 15] [ 4] [0320] +07:48:10 [ 18] [ 4] [6011] +07:48:10 [ 19] [ 3] [418] +07:48:10 [ 22] [ 3] [021] +07:48:10 [ 25] [ 2] [01] +07:48:10 [ 28] [ 9] [D00002000] +07:48:10 [ 32] [ 6] [180893] +07:48:10 [ 35] [ 32] [6213545000159446=491212015944197] +07:48:10 [ 37] [ 12] [507900266902] +07:48:10 [ 41] [ 8] [0363CPSH] +07:48:10 [ 42] [ 15] [999999 ] +07:48:10 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:48:10 [ 49] [ 3] [418] +07:48:10 [ 52] [ 16] [15501990136786CD] +07:48:10 ============================================================================ +07:48:10 + + +waiting on router queue for slot.... +07:48:10 Sending to : +07:48:10 ============================================================================ +07:48:10 ============================================================================ +07:48:10 Slot Id : <392> +07:48:10 Transaction Type : REQUEST +07:48:10 Received From : +07:48:10 ============================================================================ +07:48:10 FNo. Len. Field Value +07:48:10 ============================================================================ +07:48:10 [ 1] [ 4] [0200] +07:48:10 [ 2] [ 16] [6213545000159446] +07:48:10 [ 3] [ 6] [010000] +07:48:10 [ 4] [ 12] [000100000000] +07:48:10 [ 7] [ 10] [0320004717] +07:48:10 [ 11] [ 6] [266902] +07:48:10 [ 12] [ 6] [074717] +07:48:10 [ 13] [ 4] [0320] +07:48:10 [ 14] [ 4] [4912] +07:48:10 [ 15] [ 4] [0320] +07:48:10 [ 18] [ 4] [6011] +07:48:10 [ 19] [ 3] [418] +07:48:10 [ 22] [ 3] [021] +07:48:10 [ 25] [ 2] [01] +07:48:10 [ 28] [ 9] [D00002000] +07:48:10 [ 32] [ 6] [180893] +07:48:10 [ 35] [ 32] [6213545000159446=491212015944197] +07:48:10 [ 37] [ 12] [507900266902] +07:48:10 [ 41] [ 8] [0363CPSH] +07:48:10 [ 42] [ 15] [999999 ] +07:48:10 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:48:10 [ 49] [ 3] [418] +07:48:10 [ 52] [ 16] [CD7AAE7E3A938E3D] +07:48:10 ============================================================================ +07:48:10 + + +waiting on router queue for slot.... +07:48:10 Sending to : <0> +07:48:10 ============================================================================ +07:48:10 ============================================================================ +07:48:10 Slot Id : <392> +07:48:10 Transaction Type : RESPONSE +07:48:10 Received From : +07:48:10 ============================================================================ +07:48:10 FNo. Len. Field Value +07:48:10 ============================================================================ +07:48:10 [ 1] [ 4] [0210] +07:48:10 [ 2] [ 16] [6213545000159446] +07:48:10 [ 3] [ 6] [010000] +07:48:10 [ 4] [ 12] [000100000000] +07:48:10 [ 7] [ 10] [0320004717] +07:48:10 [ 11] [ 6] [266902] +07:48:10 [ 12] [ 6] [074717] +07:48:10 [ 13] [ 4] [0320] +07:48:10 [ 15] [ 4] [0320] +07:48:10 [ 18] [ 4] [6011] +07:48:10 [ 19] [ 3] [418] +07:48:10 [ 32] [ 6] [180893] +07:48:10 [ 35] [ 32] [6213545000159446=491212015944197] +07:48:10 [ 37] [ 12] [507900266902] +07:48:10 [ 38] [ 6] [621915] +07:48:10 [ 39] [ 2] [00] +07:48:10 [ 41] [ 8] [0363CPSH] +07:48:10 [ 49] [ 3] [418] +07:48:10 [ 54] [ 40] [0001418C0000400186240002418C000040018624] +07:48:10 ============================================================================ +07:48:10 Sending to : +07:48:10 ============================================================================ +07:48:10 + + +waiting on router queue for slot.... +07:48:11 ============================================================================ +07:48:11 Slot Id : <447> +07:48:11 Transaction Type : REQUEST +07:48:11 Received From : +07:48:11 ============================================================================ +07:48:11 FNo. Len. Field Value +07:48:11 ============================================================================ +07:48:11 [ 1] [ 4] [0800] +07:48:11 [ 7] [ 10] [0320124720] +07:48:11 [ 11] [ 6] [155251] +07:48:11 [ 70] [ 3] [301] +07:48:11 ============================================================================ +07:48:11 + + +waiting on router queue for slot.... +07:48:11 Sending to : +07:48:11 ============================================================================ +07:48:11 ============================================================================ +07:48:11 Slot Id : <447> +07:48:11 Transaction Type : RESPONSE +07:48:11 Received From : +07:48:11 ============================================================================ +07:48:11 FNo. Len. Field Value +07:48:11 ============================================================================ +07:48:11 [ 1] [ 4] [0810] +07:48:11 [ 7] [ 10] [0320124720] +07:48:11 [ 11] [ 6] [155251] +07:48:11 [ 39] [ 2] [00] +07:48:11 [ 70] [ 3] [301] +07:48:11 ============================================================================ +07:48:11 Calculate Source COMM Id = 2 +07:48:11 ============================================================================ +07:48:11 + + +waiting on router queue for slot.... +07:48:12 ============================================================================ +07:48:12 Slot Id : <392> +07:48:12 Transaction Type : RESPONSE +07:48:12 Received From : +07:48:12 ============================================================================ +07:48:12 FNo. Len. Field Value +07:48:12 ============================================================================ +07:48:12 [ 1] [ 4] [0210] +07:48:12 [ 2] [ 16] [6213545000159446] +07:48:12 [ 3] [ 6] [010000] +07:48:12 [ 4] [ 12] [000100000000] +07:48:12 [ 7] [ 10] [0320004717] +07:48:12 [ 11] [ 6] [266902] +07:48:12 [ 12] [ 6] [074717] +07:48:12 [ 13] [ 4] [0320] +07:48:12 [ 15] [ 4] [0320] +07:48:12 [ 18] [ 4] [6011] +07:48:12 [ 19] [ 3] [418] +07:48:12 [ 32] [ 6] [180893] +07:48:12 [ 35] [ 32] [6213545000159446=491212015944197] +07:48:12 [ 37] [ 12] [507900266902] +07:48:12 [ 38] [ 6] [621915] +07:48:12 [ 39] [ 2] [00] +07:48:12 [ 41] [ 8] [0363CPSH] +07:48:12 [ 49] [ 3] [418] +07:48:12 [ 54] [ 40] [0001418C0000400186240002418C000040018624] +07:48:12 ============================================================================ +07:48:12 Calculate Source COMM Id = 2 +07:48:12 ============================================================================ +07:48:12 + + +waiting on router queue for slot.... +07:48:28 ============================================================================ +07:48:28 Slot Id : <450> +07:48:28 Transaction Type : REQUEST +07:48:28 Received From : +07:48:28 ============================================================================ +07:48:28 FNo. Len. Field Value +07:48:28 ============================================================================ +07:48:28 [ 1] [ 4] [0800] +07:48:28 [ 7] [ 10] [0320124736] +07:48:28 [ 11] [ 6] [155252] +07:48:28 [ 70] [ 3] [301] +07:48:28 ============================================================================ +07:48:28 + + +waiting on router queue for slot.... +07:48:28 Sending to : +07:48:28 ============================================================================ +07:48:28 ============================================================================ +07:48:28 Slot Id : <450> +07:48:28 Transaction Type : RESPONSE +07:48:28 Received From : +07:48:28 ============================================================================ +07:48:28 FNo. Len. Field Value +07:48:28 ============================================================================ +07:48:28 [ 1] [ 4] [0810] +07:48:28 [ 7] [ 10] [0320124736] +07:48:28 [ 11] [ 6] [155252] +07:48:28 [ 39] [ 2] [00] +07:48:28 [ 70] [ 3] [301] +07:48:28 ============================================================================ +07:48:28 Calculate Source COMM Id = 2 +07:48:28 ============================================================================ +07:48:28 + + +waiting on router queue for slot.... +07:48:34 ============================================================================ +07:48:34 Slot Id : <386> +07:48:34 Transaction Type : REQUEST +07:48:34 Received From : +07:48:34 ============================================================================ +07:48:34 FNo. Len. Field Value +07:48:34 ============================================================================ +07:48:34 [ 1] [ 4] [0200] +07:48:34 [ 2] [ 16] [1808931300034475] +07:48:34 [ 3] [ 6] [011000] +07:48:34 [ 4] [ 12] [000010000000] +07:48:34 [ 7] [ 10] [0320074830] +07:48:34 [ 11] [ 6] [674132] +07:48:34 [ 12] [ 6] [074830] +07:48:34 [ 13] [ 4] [0320] +07:48:34 [ 15] [ 4] [0320] +07:48:34 [ 18] [ 4] [6011] +07:48:34 [ 22] [ 3] [900] +07:48:34 [ 25] [ 2] [02] +07:48:34 [ 28] [ 9] [D00002000] +07:48:34 [ 32] [ 6] [621354] +07:48:34 [ 35] [ 27] [1808931300034475=1803500436] +07:48:34 [ 37] [ 12] [507903938891] +07:48:34 [ 41] [ 8] [01010900] +07:48:34 [ 42] [ 15] [NATIVE ] +07:48:34 [ 43] [ 40] [Bank KM9 Xatthany LAO] +07:48:34 [ 49] [ 3] [418] +07:48:34 [ 52] [ 16] [2BD5DC3E06A8112F] +07:48:34 ============================================================================ +07:48:34 + + +waiting on router queue for slot.... +07:48:34 Sending to : +07:48:34 ============================================================================ +07:48:34 Sending to : +07:48:34 ============================================================================ +07:48:34 ============================================================================ +07:48:34 Slot Id : <386> +07:48:34 Transaction Type : REQUEST +07:48:34 Received From : +07:48:34 ============================================================================ +07:48:34 FNo. Len. Field Value +07:48:34 ============================================================================ +07:48:34 [ 1] [ 4] [0200] +07:48:34 [ 2] [ 16] [1808931300034475] +07:48:34 [ 3] [ 6] [011000] +07:48:34 [ 4] [ 12] [000010000000] +07:48:34 [ 7] [ 10] [0320074830] +07:48:34 [ 11] [ 6] [674132] +07:48:34 [ 12] [ 6] [074830] +07:48:34 [ 13] [ 4] [0320] +07:48:34 [ 15] [ 4] [0320] +07:48:34 [ 18] [ 4] [6011] +07:48:34 [ 22] [ 3] [900] +07:48:34 [ 25] [ 2] [02] +07:48:34 [ 28] [ 9] [D00002000] +07:48:34 [ 32] [ 6] [621354] +07:48:34 [ 35] [ 27] [1808931300034475=1803500436] +07:48:34 [ 37] [ 12] [507903938891] +07:48:34 [ 41] [ 8] [01010900] +07:48:34 [ 42] [ 15] [NATIVE ] +07:48:34 [ 43] [ 40] [Bank KM9 Xatthany LAO] +07:48:34 [ 49] [ 3] [418] +07:48:34 [ 52] [ 16] [2BD5DC3E06A8112F] +07:48:34 ============================================================================ +07:48:34 + + +waiting on router queue for slot.... +07:48:34 Sending to : +07:48:34 ============================================================================ +07:48:34 ============================================================================ +07:48:34 Slot Id : <386> +07:48:34 Transaction Type : REQUEST +07:48:34 Received From : +07:48:34 ============================================================================ +07:48:34 FNo. Len. Field Value +07:48:34 ============================================================================ +07:48:34 [ 1] [ 4] [0200] +07:48:34 [ 2] [ 16] [1808931300034475] +07:48:34 [ 3] [ 6] [011000] +07:48:34 [ 4] [ 12] [000010000000] +07:48:34 [ 7] [ 10] [0320074830] +07:48:34 [ 11] [ 6] [674132] +07:48:34 [ 12] [ 6] [074830] +07:48:34 [ 13] [ 4] [0320] +07:48:34 [ 15] [ 4] [0320] +07:48:34 [ 18] [ 4] [6011] +07:48:34 [ 22] [ 3] [900] +07:48:34 [ 25] [ 2] [02] +07:48:34 [ 28] [ 9] [D00002000] +07:48:34 [ 32] [ 6] [621354] +07:48:34 [ 35] [ 27] [1808931300034475=1803500436] +07:48:34 [ 37] [ 12] [507903938891] +07:48:34 [ 41] [ 8] [01010900] +07:48:34 [ 42] [ 15] [NATIVE ] +07:48:34 [ 43] [ 40] [Bank KM9 Xatthany LAO] +07:48:34 [ 49] [ 3] [418] +07:48:34 [ 52] [ 16] [6E661AB6059B6873] +07:48:34 ============================================================================ +07:48:34 + + +waiting on router queue for slot.... +07:48:34 Sending to : <2> +07:48:34 ============================================================================ +07:48:42 ============================================================================ +07:48:42 Slot Id : <386> +07:48:42 Transaction Type : RESPONSE +07:48:42 Received From : +07:48:42 ============================================================================ +07:48:42 FNo. Len. Field Value +07:48:42 ============================================================================ +07:48:42 [ 1] [ 4] [0210] +07:48:42 [ 2] [ 16] [1808931300034475] +07:48:42 [ 3] [ 6] [011000] +07:48:42 [ 4] [ 12] [000010000000] +07:48:42 [ 6] [ 12] [000010000000] +07:48:42 [ 7] [ 10] [0320074830] +07:48:42 [ 11] [ 6] [674132] +07:48:42 [ 12] [ 6] [074830] +07:48:42 [ 13] [ 4] [0320] +07:48:42 [ 18] [ 4] [6011] +07:48:42 [ 19] [ 3] [418] +07:48:42 [ 22] [ 3] [021] +07:48:42 [ 32] [ 6] [621354] +07:48:42 [ 35] [ 27] [1808931300034475=1803500436] +07:48:42 [ 37] [ 12] [507903938891] +07:48:42 [ 38] [ 6] [674132] +07:48:42 [ 39] [ 2] [00] +07:48:42 [ 41] [ 8] [01010900] +07:48:42 [ 49] [ 3] [418] +07:48:42 [ 52] [ 16] [6E661AB6059B6873] +07:48:42 [ 54] [ 20] [1001418C000032901200] +07:48:42 ============================================================================ +07:48:42 Sending to : +07:48:42 ============================================================================ +07:48:42 + + +waiting on router queue for slot.... +07:48:42 ============================================================================ +07:48:42 Slot Id : <417> +07:48:42 Transaction Type : REQUEST +07:48:42 Received From : +07:48:42 ============================================================================ +07:48:42 FNo. Len. Field Value +07:48:42 ============================================================================ +07:48:42 [ 1] [ 4] [0800] +07:48:42 [ 2] [ 5] [02531] +07:48:42 [ 3] [ 6] [579078] +07:48:42 [ 7] [ 10] [0320004842] +07:48:42 [ 11] [ 6] [806865] +07:48:42 [ 15] [ 10] [0320004842] +07:48:42 [ 37] [ 11] [57907806865] +07:48:42 [ 70] [ 3] [001] +07:48:42 ============================================================================ +07:48:42 + + +waiting on router queue for slot.... +07:48:42 ============================================================================ +07:48:42 Slot Id : <417> +07:48:42 Transaction Type : RESPONSE +07:48:42 Received From : +07:48:42 ============================================================================ +07:48:42 FNo. Len. Field Value +07:48:42 ============================================================================ +07:48:42 [ 1] [ 4] [0810] +07:48:42 [ 7] [ 10] [0320004842] +07:48:42 [ 11] [ 6] [806865] +07:48:42 [ 15] [ 4] [0320] +07:48:42 [ 37] [ 12] [57907806865] +07:48:42 [ 39] [ 2] [00] +07:48:42 [ 70] [ 3] [001] +07:48:42 ============================================================================ +07:48:42 Sending to : +07:48:42 ============================================================================ +07:48:42 + + +waiting on router queue for slot.... +07:48:44 ============================================================================ +07:48:44 Slot Id : <386> +07:48:44 Transaction Type : RESPONSE +07:48:44 Received From : +07:48:44 ============================================================================ +07:48:44 FNo. Len. Field Value +07:48:44 ============================================================================ +07:48:44 [ 1] [ 4] [0210] +07:48:44 [ 2] [ 16] [1808931300034475] +07:48:44 [ 3] [ 6] [011000] +07:48:44 [ 4] [ 12] [000010000000] +07:48:44 [ 6] [ 12] [000010000000] +07:48:44 [ 7] [ 10] [0320074830] +07:48:44 [ 11] [ 6] [674132] +07:48:44 [ 12] [ 6] [074830] +07:48:44 [ 13] [ 4] [0320] +07:48:44 [ 18] [ 4] [6011] +07:48:44 [ 19] [ 3] [418] +07:48:44 [ 22] [ 3] [021] +07:48:44 [ 32] [ 6] [621354] +07:48:44 [ 35] [ 27] [1808931300034475=1803500436] +07:48:44 [ 37] [ 12] [507903938891] +07:48:44 [ 38] [ 6] [674132] +07:48:44 [ 39] [ 2] [00] +07:48:44 [ 41] [ 8] [01010900] +07:48:44 [ 49] [ 3] [418] +07:48:44 [ 52] [ 16] [6E661AB6059B6873] +07:48:44 [ 54] [ 20] [1001418C000032901200] +07:48:44 ============================================================================ +07:48:44 Calculate Source COMM Id = 0 +07:48:44 ============================================================================ +07:48:44 + + +waiting on router queue for slot.... +07:48:48 ============================================================================ +07:48:48 Slot Id : <377> +07:48:48 Transaction Type : REQUEST +07:48:48 Received From : +07:48:48 ============================================================================ +07:48:48 FNo. Len. Field Value +07:48:48 ============================================================================ +07:48:48 [ 1] [ 4] [0800] +07:48:48 [ 7] [ 10] [0320124756] +07:48:48 [ 11] [ 6] [155253] +07:48:48 [ 70] [ 3] [301] +07:48:48 ============================================================================ +07:48:48 + + +waiting on router queue for slot.... +07:48:48 Sending to : +07:48:48 ============================================================================ +07:48:48 ============================================================================ +07:48:48 Slot Id : <377> +07:48:48 Transaction Type : RESPONSE +07:48:48 Received From : +07:48:48 ============================================================================ +07:48:48 FNo. Len. Field Value +07:48:48 ============================================================================ +07:48:48 [ 1] [ 4] [0810] +07:48:48 [ 7] [ 10] [0320124756] +07:48:48 [ 11] [ 6] [155253] +07:48:48 [ 39] [ 2] [00] +07:48:48 [ 70] [ 3] [301] +07:48:48 ============================================================================ +07:48:48 Calculate Source COMM Id = 2 +07:48:48 ============================================================================ +07:48:48 + + +waiting on router queue for slot.... +07:48:58 ============================================================================ +07:48:58 Slot Id : <391> +07:48:58 Transaction Type : REQUEST +07:48:58 Received From : +07:48:58 ============================================================================ +07:48:58 FNo. Len. Field Value +07:48:58 ============================================================================ +07:48:58 [ 1] [ 4] [0800] +07:48:58 [ 7] [ 10] [0320124807] +07:48:58 [ 11] [ 6] [155254] +07:48:58 [ 70] [ 3] [301] +07:48:58 ============================================================================ +07:48:58 + + +waiting on router queue for slot.... +07:48:58 Sending to : +07:48:58 ============================================================================ +07:48:58 ============================================================================ +07:48:58 Slot Id : <391> +07:48:58 Transaction Type : RESPONSE +07:48:58 Received From : +07:48:58 ============================================================================ +07:48:58 FNo. Len. Field Value +07:48:58 ============================================================================ +07:48:58 [ 1] [ 4] [0810] +07:48:58 [ 7] [ 10] [0320124807] +07:48:58 [ 11] [ 6] [155254] +07:48:58 [ 39] [ 2] [00] +07:48:58 [ 70] [ 3] [301] +07:48:58 ============================================================================ +07:48:58 Calculate Source COMM Id = 2 +07:48:58 ============================================================================ +07:48:58 + + +waiting on router queue for slot.... +07:49:04 ============================================================================ +07:49:04 Slot Id : <405> +07:49:04 Transaction Type : REQUEST +07:49:04 Received From : +07:49:04 ============================================================================ +07:49:04 FNo. Len. Field Value +07:49:04 ============================================================================ +07:49:04 [ 1] [ 4] [0200] +07:49:04 [ 2] [ 16] [6213545000159446] +07:49:04 [ 3] [ 6] [011000] +07:49:04 [ 4] [ 12] [000035000000] +07:49:04 [ 7] [ 10] [0320004812] +07:49:04 [ 11] [ 6] [266906] +07:49:04 [ 12] [ 6] [074812] +07:49:04 [ 13] [ 4] [0320] +07:49:04 [ 14] [ 4] [4912] +07:49:04 [ 15] [ 4] [0320] +07:49:04 [ 18] [ 4] [6011] +07:49:04 [ 19] [ 3] [418] +07:49:04 [ 22] [ 3] [021] +07:49:04 [ 25] [ 2] [01] +07:49:04 [ 28] [ 9] [D00002000] +07:49:04 [ 32] [ 6] [180893] +07:49:04 [ 35] [ 32] [6213545000159446=491212015944197] +07:49:04 [ 37] [ 12] [507900266906] +07:49:04 [ 41] [ 8] [0363CPSH] +07:49:04 [ 42] [ 15] [999999 ] +07:49:04 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:49:04 [ 49] [ 3] [418] +07:49:04 [ 52] [ 16] [15501990136786CD] +07:49:04 ============================================================================ +07:49:04 + + +waiting on router queue for slot.... +07:49:04 Sending to : +07:49:04 ============================================================================ +07:49:04 Sending to : +07:49:04 ============================================================================ +07:49:04 ============================================================================ +07:49:04 Slot Id : <405> +07:49:04 Transaction Type : REQUEST +07:49:04 Received From : +07:49:04 ============================================================================ +07:49:04 FNo. Len. Field Value +07:49:04 ============================================================================ +07:49:04 [ 1] [ 4] [0200] +07:49:04 [ 2] [ 16] [6213545000159446] +07:49:04 [ 3] [ 6] [011000] +07:49:04 [ 4] [ 12] [000035000000] +07:49:04 [ 7] [ 10] [0320004812] +07:49:04 [ 11] [ 6] [266906] +07:49:04 [ 12] [ 6] [074812] +07:49:04 [ 13] [ 4] [0320] +07:49:04 [ 14] [ 4] [4912] +07:49:04 [ 15] [ 4] [0320] +07:49:04 [ 18] [ 4] [6011] +07:49:04 [ 19] [ 3] [418] +07:49:04 [ 22] [ 3] [021] +07:49:04 [ 25] [ 2] [01] +07:49:04 [ 28] [ 9] [D00002000] +07:49:04 [ 32] [ 6] [180893] +07:49:04 [ 35] [ 32] [6213545000159446=491212015944197] +07:49:04 [ 37] [ 12] [507900266906] +07:49:04 [ 41] [ 8] [0363CPSH] +07:49:04 [ 42] [ 15] [999999 ] +07:49:04 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:49:04 [ 49] [ 3] [418] +07:49:04 [ 52] [ 16] [15501990136786CD] +07:49:04 ============================================================================ +07:49:04 + + +waiting on router queue for slot.... +07:49:04 Sending to : +07:49:04 ============================================================================ +07:49:04 ============================================================================ +07:49:04 Slot Id : <405> +07:49:04 Transaction Type : REQUEST +07:49:04 Received From : +07:49:04 ============================================================================ +07:49:04 FNo. Len. Field Value +07:49:04 ============================================================================ +07:49:04 [ 1] [ 4] [0200] +07:49:04 [ 2] [ 16] [6213545000159446] +07:49:04 [ 3] [ 6] [011000] +07:49:04 [ 4] [ 12] [000035000000] +07:49:04 [ 7] [ 10] [0320004812] +07:49:04 [ 11] [ 6] [266906] +07:49:04 [ 12] [ 6] [074812] +07:49:04 [ 13] [ 4] [0320] +07:49:04 [ 14] [ 4] [4912] +07:49:04 [ 15] [ 4] [0320] +07:49:04 [ 18] [ 4] [6011] +07:49:04 [ 19] [ 3] [418] +07:49:04 [ 22] [ 3] [021] +07:49:04 [ 25] [ 2] [01] +07:49:04 [ 28] [ 9] [D00002000] +07:49:04 [ 32] [ 6] [180893] +07:49:04 [ 35] [ 32] [6213545000159446=491212015944197] +07:49:04 [ 37] [ 12] [507900266906] +07:49:04 [ 41] [ 8] [0363CPSH] +07:49:04 [ 42] [ 15] [999999 ] +07:49:04 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:49:04 [ 49] [ 3] [418] +07:49:04 [ 52] [ 16] [CD7AAE7E3A938E3D] +07:49:04 ============================================================================ +07:49:04 + + +waiting on router queue for slot.... +07:49:04 Sending to : <0> +07:49:04 ============================================================================ +07:49:05 ============================================================================ +07:49:05 Slot Id : <405> +07:49:05 Transaction Type : RESPONSE +07:49:05 Received From : +07:49:05 ============================================================================ +07:49:05 FNo. Len. Field Value +07:49:05 ============================================================================ +07:49:05 [ 1] [ 4] [0210] +07:49:05 [ 2] [ 16] [6213545000159446] +07:49:05 [ 3] [ 6] [011000] +07:49:05 [ 4] [ 12] [000035000000] +07:49:05 [ 7] [ 10] [0320004812] +07:49:05 [ 11] [ 6] [266906] +07:49:05 [ 12] [ 6] [074812] +07:49:05 [ 13] [ 4] [0320] +07:49:05 [ 15] [ 4] [0320] +07:49:05 [ 18] [ 4] [6011] +07:49:05 [ 19] [ 3] [418] +07:49:05 [ 32] [ 6] [180893] +07:49:05 [ 35] [ 32] [6213545000159446=491212015944197] +07:49:05 [ 37] [ 12] [507900266906] +07:49:05 [ 38] [ 6] [266906] +07:49:05 [ 39] [ 2] [51] +07:49:05 [ 41] [ 8] [0363CPSH] +07:49:05 [ 49] [ 3] [418] +07:49:05 [ 54] [ 40] [1001418C0000400186241002418C000040018624] +07:49:05 ============================================================================ +07:49:05 Sending to : +07:49:05 ============================================================================ +07:49:05 + + +waiting on router queue for slot.... +07:49:06 ============================================================================ +07:49:06 Slot Id : <405> +07:49:06 Transaction Type : RESPONSE +07:49:06 Received From : +07:49:06 ============================================================================ +07:49:06 FNo. Len. Field Value +07:49:06 ============================================================================ +07:49:06 [ 1] [ 4] [0210] +07:49:06 [ 2] [ 16] [6213545000159446] +07:49:06 [ 3] [ 6] [011000] +07:49:06 [ 4] [ 12] [000035000000] +07:49:06 [ 7] [ 10] [0320004812] +07:49:06 [ 11] [ 6] [266906] +07:49:06 [ 12] [ 6] [074812] +07:49:06 [ 13] [ 4] [0320] +07:49:06 [ 15] [ 4] [0320] +07:49:06 [ 18] [ 4] [6011] +07:49:06 [ 19] [ 3] [418] +07:49:06 [ 32] [ 6] [180893] +07:49:06 [ 35] [ 32] [6213545000159446=491212015944197] +07:49:06 [ 37] [ 12] [507900266906] +07:49:06 [ 38] [ 6] [266906] +07:49:06 [ 39] [ 2] [51] +07:49:06 [ 41] [ 8] [0363CPSH] +07:49:06 [ 49] [ 3] [418] +07:49:06 [ 54] [ 40] [1001418C0000400186241002418C000040018624] +07:49:06 ============================================================================ +07:49:06 Calculate Source COMM Id = 2 +07:49:06 ============================================================================ +07:49:06 + + +waiting on router queue for slot.... +07:49:08 ============================================================================ +07:49:08 Slot Id : <443> +07:49:08 Transaction Type : REQUEST +07:49:08 Received From : +07:49:08 ============================================================================ +07:49:08 FNo. Len. Field Value +07:49:08 ============================================================================ +07:49:08 [ 1] [ 4] [0800] +07:49:08 [ 7] [ 10] [0320150058] +07:49:08 [ 11] [ 6] [080058] +07:49:08 [ 37] [ 12] [57908080058] +07:49:08 [ 70] [ 3] [301] +07:49:08 ============================================================================ +07:49:08 + + +waiting on router queue for slot.... +07:49:08 Sending to : +07:49:08 ============================================================================ +07:49:08 ============================================================================ +07:49:08 Slot Id : <443> +07:49:08 Transaction Type : RESPONSE +07:49:08 Received From : +07:49:08 ============================================================================ +07:49:08 FNo. Len. Field Value +07:49:08 ============================================================================ +07:49:08 [ 1] [ 4] [0810] +07:49:08 [ 7] [ 10] [0320150058] +07:49:08 [ 11] [ 6] [080058] +07:49:08 [ 37] [ 12] [579080800580] +07:49:08 [ 39] [ 2] [00] +07:49:08 [ 70] [ 3] [810] +07:49:08 ============================================================================ +07:49:08 Calculate Source COMM Id = 6 +07:49:08 ============================================================================ +07:49:08 + + +waiting on router queue for slot.... +07:49:15 ============================================================================ +07:49:15 Slot Id : <456> +07:49:15 Transaction Type : REQUEST +07:49:15 Received From : +07:49:15 ============================================================================ +07:49:15 FNo. Len. Field Value +07:49:15 ============================================================================ +07:49:15 [ 1] [ 4] [0200] +07:49:15 [ 2] [ 16] [6213545000253322] +07:49:15 [ 3] [ 6] [010000] +07:49:15 [ 4] [ 12] [000040000000] +07:49:15 [ 7] [ 10] [0320074706] +07:49:15 [ 11] [ 6] [930959] +07:49:15 [ 12] [ 6] [074706] +07:49:15 [ 13] [ 4] [0320] +07:49:15 [ 15] [ 4] [0320] +07:49:15 [ 18] [ 4] [6011] +07:49:15 [ 19] [ 3] [418] +07:49:15 [ 22] [ 3] [021] +07:49:15 [ 25] [ 2] [01] +07:49:15 [ 28] [ 9] [D00002000] +07:49:15 [ 32] [ 6] [668899] +07:49:15 [ 35] [ 32] [6213545000253322=491212015332162] +07:49:15 [ 37] [ 12] [507902730335] +07:49:15 [ 41] [ 8] [03013005] +07:49:15 [ 42] [ 15] [APT ] +07:49:15 [ 43] [ 40] [ CEMENT FACTORY THAKHAEK ] +07:49:15 [ 49] [ 3] [418] +07:49:15 [ 52] [ 16] [B169FE20EE63B9A8] +07:49:15 ============================================================================ +07:49:15 + + +waiting on router queue for slot.... +07:49:15 Sending to : +07:49:15 ============================================================================ +07:49:15 Sending to : +07:49:15 ============================================================================ +07:49:15 ============================================================================ +07:49:15 Slot Id : <456> +07:49:15 Transaction Type : REQUEST +07:49:15 Received From : +07:49:15 ============================================================================ +07:49:15 FNo. Len. Field Value +07:49:15 ============================================================================ +07:49:15 [ 1] [ 4] [0200] +07:49:15 [ 2] [ 16] [6213545000253322] +07:49:15 [ 3] [ 6] [010000] +07:49:15 [ 4] [ 12] [000040000000] +07:49:15 [ 7] [ 10] [0320074706] +07:49:15 [ 11] [ 6] [930959] +07:49:15 [ 12] [ 6] [074706] +07:49:15 [ 13] [ 4] [0320] +07:49:15 [ 15] [ 4] [0320] +07:49:15 [ 18] [ 4] [6011] +07:49:15 [ 19] [ 3] [418] +07:49:15 [ 22] [ 3] [021] +07:49:15 [ 25] [ 2] [01] +07:49:15 [ 28] [ 9] [D00002000] +07:49:15 [ 32] [ 6] [668899] +07:49:15 [ 35] [ 32] [6213545000253322=491212015332162] +07:49:15 [ 37] [ 12] [507902730335] +07:49:15 [ 41] [ 8] [03013005] +07:49:15 [ 42] [ 15] [APT ] +07:49:15 [ 43] [ 40] [ CEMENT FACTORY THAKHAEK ] +07:49:15 [ 49] [ 3] [418] +07:49:15 [ 52] [ 16] [B169FE20EE63B9A8] +07:49:15 ============================================================================ +07:49:15 + + +waiting on router queue for slot.... +07:49:15 Sending to : +07:49:15 ============================================================================ +07:49:15 ============================================================================ +07:49:15 Slot Id : <456> +07:49:15 Transaction Type : REQUEST +07:49:15 Received From : +07:49:15 ============================================================================ +07:49:15 FNo. Len. Field Value +07:49:15 ============================================================================ +07:49:15 [ 1] [ 4] [0200] +07:49:15 [ 2] [ 16] [6213545000253322] +07:49:15 [ 3] [ 6] [010000] +07:49:15 [ 4] [ 12] [000040000000] +07:49:15 [ 7] [ 10] [0320074706] +07:49:15 [ 11] [ 6] [930959] +07:49:15 [ 12] [ 6] [074706] +07:49:15 [ 13] [ 4] [0320] +07:49:15 [ 15] [ 4] [0320] +07:49:15 [ 18] [ 4] [6011] +07:49:15 [ 19] [ 3] [418] +07:49:15 [ 22] [ 3] [021] +07:49:15 [ 25] [ 2] [01] +07:49:15 [ 28] [ 9] [D00002000] +07:49:15 [ 32] [ 6] [668899] +07:49:15 [ 35] [ 32] [6213545000253322=491212015332162] +07:49:15 [ 37] [ 12] [507902730335] +07:49:15 [ 41] [ 8] [03013005] +07:49:15 [ 42] [ 15] [APT ] +07:49:15 [ 43] [ 40] [ CEMENT FACTORY THAKHAEK ] +07:49:15 [ 49] [ 3] [418] +07:49:15 [ 52] [ 16] [9E2E547E6E9BF264] +07:49:15 ============================================================================ +07:49:15 + + +waiting on router queue for slot.... +07:49:15 Sending to : <0> +07:49:15 ============================================================================ +07:49:16 ============================================================================ +07:49:16 Slot Id : <456> +07:49:16 Transaction Type : RESPONSE +07:49:16 Received From : +07:49:16 ============================================================================ +07:49:16 FNo. Len. Field Value +07:49:16 ============================================================================ +07:49:16 [ 1] [ 4] [0210] +07:49:16 [ 2] [ 16] [6213545000253322] +07:49:16 [ 3] [ 6] [010000] +07:49:16 [ 4] [ 12] [000040000000] +07:49:16 [ 7] [ 10] [0320074706] +07:49:16 [ 11] [ 6] [930959] +07:49:16 [ 12] [ 6] [074706] +07:49:16 [ 13] [ 4] [0320] +07:49:16 [ 15] [ 4] [0320] +07:49:16 [ 18] [ 4] [6011] +07:49:16 [ 19] [ 3] [418] +07:49:16 [ 32] [ 6] [668899] +07:49:16 [ 35] [ 32] [6213545000253322=491212015332162] +07:49:16 [ 37] [ 12] [507902730335] +07:49:16 [ 38] [ 6] [776044] +07:49:16 [ 39] [ 2] [00] +07:49:16 [ 41] [ 8] [03013005] +07:49:16 [ 49] [ 3] [418] +07:49:16 [ 54] [ 40] [0001418C0000062442180002418C000006244218] +07:49:16 ============================================================================ +07:49:16 Sending to : +07:49:16 ============================================================================ +07:49:16 + + +waiting on router queue for slot.... +07:49:17 ============================================================================ +07:49:17 Slot Id : <456> +07:49:17 Transaction Type : RESPONSE +07:49:17 Received From : +07:49:17 ============================================================================ +07:49:17 FNo. Len. Field Value +07:49:17 ============================================================================ +07:49:17 [ 1] [ 4] [0210] +07:49:17 [ 2] [ 16] [6213545000253322] +07:49:17 [ 3] [ 6] [010000] +07:49:17 [ 4] [ 12] [000040000000] +07:49:17 [ 7] [ 10] [0320074706] +07:49:17 [ 11] [ 6] [930959] +07:49:17 [ 12] [ 6] [074706] +07:49:17 [ 13] [ 4] [0320] +07:49:17 [ 15] [ 4] [0320] +07:49:17 [ 18] [ 4] [6011] +07:49:17 [ 19] [ 3] [418] +07:49:17 [ 32] [ 6] [668899] +07:49:17 [ 35] [ 32] [6213545000253322=491212015332162] +07:49:17 [ 37] [ 12] [507902730335] +07:49:17 [ 38] [ 6] [776044] +07:49:17 [ 39] [ 2] [00] +07:49:17 [ 41] [ 8] [03013005] +07:49:17 [ 49] [ 3] [418] +07:49:17 [ 54] [ 40] [0001418C0000062442180002418C000006244218] +07:49:17 ============================================================================ +07:49:17 Calculate Source COMM Id = 4 +07:49:17 ============================================================================ +07:49:17 + + +waiting on router queue for slot.... +07:49:19 ============================================================================ +07:49:19 Slot Id : <446> +07:49:19 Transaction Type : REQUEST +07:49:19 Received From : +07:49:19 ============================================================================ +07:49:19 FNo. Len. Field Value +07:49:19 ============================================================================ +07:49:19 [ 1] [ 4] [0800] +07:49:19 [ 7] [ 10] [0320124828] +07:49:19 [ 11] [ 6] [155255] +07:49:19 [ 70] [ 3] [301] +07:49:19 ============================================================================ +07:49:19 + + +waiting on router queue for slot.... +07:49:19 Sending to : +07:49:19 ============================================================================ +07:49:19 ============================================================================ +07:49:19 Slot Id : <446> +07:49:19 Transaction Type : RESPONSE +07:49:19 Received From : +07:49:19 ============================================================================ +07:49:19 FNo. Len. Field Value +07:49:19 ============================================================================ +07:49:19 [ 1] [ 4] [0810] +07:49:19 [ 7] [ 10] [0320124828] +07:49:19 [ 11] [ 6] [155255] +07:49:19 [ 39] [ 2] [00] +07:49:19 [ 70] [ 3] [301] +07:49:19 ============================================================================ +07:49:19 Calculate Source COMM Id = 2 +07:49:19 ============================================================================ +07:49:19 + + +waiting on router queue for slot.... +07:49:20 ============================================================================ +07:49:20 Slot Id : <435> +07:49:20 Transaction Type : REQUEST +07:49:20 Received From : +07:49:20 ============================================================================ +07:49:20 FNo. Len. Field Value +07:49:20 ============================================================================ +07:49:20 [ 1] [ 4] [0200] +07:49:20 [ 2] [ 16] [6688990040020628] +07:49:20 [ 3] [ 6] [010000] +07:49:20 [ 4] [ 12] [000010000000] +07:49:20 [ 7] [ 10] [0320004828] +07:49:20 [ 11] [ 6] [266908] +07:49:20 [ 12] [ 6] [074828] +07:49:20 [ 13] [ 4] [0320] +07:49:20 [ 14] [ 4] [9711] +07:49:20 [ 15] [ 4] [0320] +07:49:20 [ 18] [ 4] [6011] +07:49:20 [ 19] [ 3] [418] +07:49:20 [ 22] [ 3] [021] +07:49:20 [ 25] [ 2] [01] +07:49:20 [ 28] [ 9] [D00002000] +07:49:20 [ 32] [ 6] [180893] +07:49:20 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:49:20 [ 37] [ 12] [507900266908] +07:49:20 [ 41] [ 8] [0401XSBR] +07:49:20 [ 42] [ 15] [999999 ] +07:49:20 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +07:49:20 [ 49] [ 3] [418] +07:49:20 [ 52] [ 16] [ADAF6B10DA6F6B75] +07:49:20 ============================================================================ +07:49:20 + + +waiting on router queue for slot.... +07:49:20 Sending to : +07:49:20 ============================================================================ +07:49:20 Sending to : +07:49:20 ============================================================================ +07:49:21 ============================================================================ +07:49:21 Slot Id : <435> +07:49:21 Transaction Type : REQUEST +07:49:21 Received From : +07:49:21 ============================================================================ +07:49:21 FNo. Len. Field Value +07:49:21 ============================================================================ +07:49:21 [ 1] [ 4] [0200] +07:49:21 [ 2] [ 16] [6688990040020628] +07:49:21 [ 3] [ 6] [010000] +07:49:21 [ 4] [ 12] [000010000000] +07:49:21 [ 7] [ 10] [0320004828] +07:49:21 [ 11] [ 6] [266908] +07:49:21 [ 12] [ 6] [074828] +07:49:21 [ 13] [ 4] [0320] +07:49:21 [ 14] [ 4] [9711] +07:49:21 [ 15] [ 4] [0320] +07:49:21 [ 18] [ 4] [6011] +07:49:21 [ 19] [ 3] [418] +07:49:21 [ 22] [ 3] [021] +07:49:21 [ 25] [ 2] [01] +07:49:21 [ 28] [ 9] [D00002000] +07:49:21 [ 32] [ 6] [180893] +07:49:21 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:49:21 [ 37] [ 12] [507900266908] +07:49:21 [ 41] [ 8] [0401XSBR] +07:49:21 [ 42] [ 15] [999999 ] +07:49:21 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +07:49:21 [ 49] [ 3] [418] +07:49:21 [ 52] [ 16] [ADAF6B10DA6F6B75] +07:49:21 ============================================================================ +07:49:21 + + +waiting on router queue for slot.... +07:49:21 Sending to : +07:49:21 ============================================================================ +07:49:21 ============================================================================ +07:49:21 Slot Id : <435> +07:49:21 Transaction Type : REQUEST +07:49:21 Received From : +07:49:21 ============================================================================ +07:49:21 FNo. Len. Field Value +07:49:21 ============================================================================ +07:49:21 [ 1] [ 4] [0200] +07:49:21 [ 2] [ 16] [6688990040020628] +07:49:21 [ 3] [ 6] [010000] +07:49:21 [ 4] [ 12] [000010000000] +07:49:21 [ 7] [ 10] [0320004828] +07:49:21 [ 11] [ 6] [266908] +07:49:21 [ 12] [ 6] [074828] +07:49:21 [ 13] [ 4] [0320] +07:49:21 [ 14] [ 4] [9711] +07:49:21 [ 15] [ 4] [0320] +07:49:21 [ 18] [ 4] [6011] +07:49:21 [ 19] [ 3] [418] +07:49:21 [ 22] [ 3] [021] +07:49:21 [ 25] [ 2] [01] +07:49:21 [ 28] [ 9] [D00002000] +07:49:21 [ 32] [ 6] [180893] +07:49:21 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:49:21 [ 37] [ 12] [507900266908] +07:49:21 [ 41] [ 8] [0401XSBR] +07:49:21 [ 42] [ 15] [999999 ] +07:49:21 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +07:49:21 [ 49] [ 3] [418] +07:49:21 [ 52] [ 16] [B9E0A16E1CF6643D] +07:49:21 ============================================================================ +07:49:21 + + +waiting on router queue for slot.... +07:49:21 Sending to : <0> +07:49:21 ============================================================================ +07:49:21 ============================================================================ +07:49:21 Slot Id : <435> +07:49:21 Transaction Type : RESPONSE +07:49:21 Received From : +07:49:21 ============================================================================ +07:49:21 FNo. Len. Field Value +07:49:21 ============================================================================ +07:49:21 [ 1] [ 4] [0210] +07:49:21 [ 2] [ 16] [6688990040020628] +07:49:21 [ 3] [ 6] [010000] +07:49:21 [ 4] [ 12] [000010000000] +07:49:21 [ 7] [ 10] [0320004828] +07:49:21 [ 11] [ 6] [266908] +07:49:21 [ 12] [ 6] [074828] +07:49:21 [ 13] [ 4] [0320] +07:49:21 [ 15] [ 4] [0320] +07:49:21 [ 18] [ 4] [6011] +07:49:21 [ 19] [ 3] [418] +07:49:21 [ 22] [ 3] [021] +07:49:21 [ 32] [ 6] [180893] +07:49:21 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:49:21 [ 37] [ 12] [507900266908] +07:49:21 [ 39] [ 2] [14] +07:49:21 [ 41] [ 8] [0401XSBR] +07:49:21 [ 49] [ 3] [418] +07:49:21 ============================================================================ +07:49:21 Sending to : +07:49:21 ============================================================================ +07:49:21 + + +waiting on router queue for slot.... +07:49:22 ============================================================================ +07:49:22 Slot Id : <435> +07:49:22 Transaction Type : RESPONSE +07:49:22 Received From : +07:49:22 ============================================================================ +07:49:22 FNo. Len. Field Value +07:49:22 ============================================================================ +07:49:22 [ 1] [ 4] [0210] +07:49:22 [ 2] [ 16] [6688990040020628] +07:49:22 [ 3] [ 6] [010000] +07:49:22 [ 4] [ 12] [000010000000] +07:49:22 [ 7] [ 10] [0320004828] +07:49:22 [ 11] [ 6] [266908] +07:49:22 [ 12] [ 6] [074828] +07:49:22 [ 13] [ 4] [0320] +07:49:22 [ 15] [ 4] [0320] +07:49:22 [ 18] [ 4] [6011] +07:49:22 [ 19] [ 3] [418] +07:49:22 [ 22] [ 3] [021] +07:49:22 [ 32] [ 6] [180893] +07:49:22 [ 35] [ 37] [6688990040020628=97111261878990200000] +07:49:22 [ 37] [ 12] [507900266908] +07:49:22 [ 39] [ 2] [14] +07:49:22 [ 41] [ 8] [0401XSBR] +07:49:22 [ 49] [ 3] [418] +07:49:22 ============================================================================ +07:49:22 Calculate Source COMM Id = 2 +07:49:22 ============================================================================ +07:49:22 + + +waiting on router queue for slot.... +07:49:31 ============================================================================ +07:49:31 Slot Id : <404> +07:49:31 Transaction Type : REQUEST +07:49:31 Received From : +07:49:31 ============================================================================ +07:49:31 FNo. Len. Field Value +07:49:31 ============================================================================ +07:49:31 [ 1] [ 4] [0200] +07:49:31 [ 2] [ 16] [6213548000409183] +07:49:31 [ 3] [ 6] [300000] +07:49:31 [ 4] [ 12] [000000000000] +07:49:31 [ 7] [ 10] [0320074723] +07:49:31 [ 11] [ 6] [930971] +07:49:31 [ 12] [ 6] [074723] +07:49:31 [ 13] [ 4] [0320] +07:49:31 [ 15] [ 4] [0320] +07:49:31 [ 18] [ 4] [6011] +07:49:31 [ 19] [ 3] [418] +07:49:31 [ 22] [ 3] [021] +07:49:31 [ 25] [ 2] [01] +07:49:31 [ 28] [ 9] [D00000000] +07:49:31 [ 32] [ 6] [668899] +07:49:31 [ 35] [ 32] [6213548000409183=180612010918109] +07:49:31 [ 37] [ 12] [507901311927] +07:49:31 [ 41] [ 8] [03006005] +07:49:31 [ 42] [ 15] [APT ] +07:49:31 [ 43] [ 40] [ UNIVERSITY OF LAW LUANGPR] +07:49:31 [ 49] [ 3] [418] +07:49:31 [ 52] [ 16] [27DE34D3FEE9B3ED] +07:49:31 ============================================================================ +07:49:31 + + +waiting on router queue for slot.... +07:49:31 Sending to : +07:49:31 ============================================================================ +07:49:31 Sending to : +07:49:31 ============================================================================ +07:49:31 ============================================================================ +07:49:31 Slot Id : <404> +07:49:31 Transaction Type : REQUEST +07:49:31 Received From : +07:49:31 ============================================================================ +07:49:31 FNo. Len. Field Value +07:49:31 ============================================================================ +07:49:31 [ 1] [ 4] [0200] +07:49:31 [ 2] [ 16] [6213548000409183] +07:49:31 [ 3] [ 6] [300000] +07:49:31 [ 4] [ 12] [000000000000] +07:49:31 [ 7] [ 10] [0320074723] +07:49:31 [ 11] [ 6] [930971] +07:49:31 [ 12] [ 6] [074723] +07:49:31 [ 13] [ 4] [0320] +07:49:31 [ 15] [ 4] [0320] +07:49:31 [ 18] [ 4] [6011] +07:49:31 [ 19] [ 3] [418] +07:49:31 [ 22] [ 3] [021] +07:49:31 [ 25] [ 2] [01] +07:49:31 [ 28] [ 9] [D00000000] +07:49:31 [ 32] [ 6] [668899] +07:49:31 [ 35] [ 32] [6213548000409183=180612010918109] +07:49:31 [ 37] [ 12] [507901311927] +07:49:31 [ 41] [ 8] [03006005] +07:49:31 [ 42] [ 15] [APT ] +07:49:31 [ 43] [ 40] [ UNIVERSITY OF LAW LUANGPR] +07:49:31 [ 49] [ 3] [418] +07:49:31 [ 52] [ 16] [27DE34D3FEE9B3ED] +07:49:31 ============================================================================ +07:49:31 + + +waiting on router queue for slot.... +07:49:31 Sending to : +07:49:31 ============================================================================ +07:49:31 ============================================================================ +07:49:31 Slot Id : <404> +07:49:31 Transaction Type : REQUEST +07:49:31 Received From : +07:49:31 ============================================================================ +07:49:31 FNo. Len. Field Value +07:49:31 ============================================================================ +07:49:31 [ 1] [ 4] [0200] +07:49:31 [ 2] [ 16] [6213548000409183] +07:49:31 [ 3] [ 6] [300000] +07:49:31 [ 4] [ 12] [000000000000] +07:49:31 [ 7] [ 10] [0320074723] +07:49:31 [ 11] [ 6] [930971] +07:49:31 [ 12] [ 6] [074723] +07:49:31 [ 13] [ 4] [0320] +07:49:31 [ 15] [ 4] [0320] +07:49:31 [ 18] [ 4] [6011] +07:49:31 [ 19] [ 3] [418] +07:49:31 [ 22] [ 3] [021] +07:49:31 [ 25] [ 2] [01] +07:49:31 [ 28] [ 9] [D00000000] +07:49:31 [ 32] [ 6] [668899] +07:49:31 [ 35] [ 32] [6213548000409183=180612010918109] +07:49:31 [ 37] [ 12] [507901311927] +07:49:31 [ 41] [ 8] [03006005] +07:49:31 [ 42] [ 15] [APT ] +07:49:31 [ 43] [ 40] [ UNIVERSITY OF LAW LUANGPR] +07:49:31 [ 49] [ 3] [418] +07:49:31 [ 52] [ 16] [7B24C0FD28CCB1B7] +07:49:31 ============================================================================ +07:49:31 + + +waiting on router queue for slot.... +07:49:31 Sending to : <0> +07:49:31 ============================================================================ +07:49:31 ============================================================================ +07:49:31 Slot Id : <424> +07:49:31 Transaction Type : REQUEST +07:49:31 Received From : +07:49:31 ============================================================================ +07:49:31 FNo. Len. Field Value +07:49:31 ============================================================================ +07:49:31 [ 1] [ 4] [0200] +07:49:31 [ 2] [ 16] [6213544001861092] +07:49:31 [ 3] [ 6] [301000] +07:49:31 [ 4] [ 12] [000000000000] +07:49:31 [ 7] [ 10] [0320074723] +07:49:31 [ 11] [ 6] [930972] +07:49:31 [ 12] [ 6] [074723] +07:49:31 [ 13] [ 4] [0320] +07:49:31 [ 15] [ 4] [0320] +07:49:31 [ 18] [ 4] [6011] +07:49:31 [ 19] [ 3] [418] +07:49:31 [ 22] [ 3] [021] +07:49:31 [ 25] [ 2] [01] +07:49:31 [ 28] [ 9] [D00000000] +07:49:31 [ 32] [ 6] [668899] +07:49:31 [ 35] [ 32] [6213544001861092=491212016109055] +07:49:31 [ 37] [ 12] [507902045647] +07:49:31 [ 41] [ 8] [03205002] +07:49:31 [ 42] [ 15] [APT ] +07:49:31 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:49:31 [ 49] [ 3] [418] +07:49:31 [ 52] [ 16] [486BBCE451C72452] +07:49:31 ============================================================================ +07:49:31 + + +waiting on router queue for slot.... +07:49:31 Sending to : +07:49:31 ============================================================================ +07:49:31 Sending to : +07:49:31 ============================================================================ +07:49:32 ============================================================================ +07:49:32 Slot Id : <404> +07:49:32 Transaction Type : RESPONSE +07:49:32 Received From : +07:49:32 ============================================================================ +07:49:32 FNo. Len. Field Value +07:49:32 ============================================================================ +07:49:32 [ 1] [ 4] [0210] +07:49:32 [ 2] [ 16] [6213548000409183] +07:49:32 [ 3] [ 6] [300000] +07:49:32 [ 4] [ 12] [000000000000] +07:49:32 [ 7] [ 10] [0320074723] +07:49:32 [ 11] [ 6] [930971] +07:49:32 [ 12] [ 6] [074723] +07:49:32 [ 13] [ 4] [0320] +07:49:32 [ 15] [ 4] [0320] +07:49:32 [ 18] [ 4] [6011] +07:49:32 [ 19] [ 3] [418] +07:49:32 [ 32] [ 6] [668899] +07:49:32 [ 35] [ 32] [6213548000409183=180612010918109] +07:49:32 [ 37] [ 12] [507901311927] +07:49:32 [ 38] [ 6] [110752] +07:49:32 [ 39] [ 2] [00] +07:49:32 [ 41] [ 8] [03006005] +07:49:32 [ 49] [ 3] [418] +07:49:32 [ 54] [ 40] [0001418C0000126214390002418C000012621439] +07:49:32 ============================================================================ +07:49:32 Sending to : +07:49:32 ============================================================================ +07:49:32 + + +waiting on router queue for slot.... +07:49:32 ============================================================================ +07:49:32 Slot Id : <424> +07:49:32 Transaction Type : REQUEST +07:49:32 Received From : +07:49:32 ============================================================================ +07:49:32 FNo. Len. Field Value +07:49:32 ============================================================================ +07:49:32 [ 1] [ 4] [0200] +07:49:32 [ 2] [ 16] [6213544001861092] +07:49:32 [ 3] [ 6] [301000] +07:49:32 [ 4] [ 12] [000000000000] +07:49:32 [ 7] [ 10] [0320074723] +07:49:32 [ 11] [ 6] [930972] +07:49:32 [ 12] [ 6] [074723] +07:49:32 [ 13] [ 4] [0320] +07:49:32 [ 15] [ 4] [0320] +07:49:32 [ 18] [ 4] [6011] +07:49:32 [ 19] [ 3] [418] +07:49:32 [ 22] [ 3] [021] +07:49:32 [ 25] [ 2] [01] +07:49:32 [ 28] [ 9] [D00000000] +07:49:32 [ 32] [ 6] [668899] +07:49:32 [ 35] [ 32] [6213544001861092=491212016109055] +07:49:32 [ 37] [ 12] [507902045647] +07:49:32 [ 41] [ 8] [03205002] +07:49:32 [ 42] [ 15] [APT ] +07:49:32 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:49:32 [ 49] [ 3] [418] +07:49:32 [ 52] [ 16] [486BBCE451C72452] +07:49:32 ============================================================================ +07:49:32 + + +waiting on router queue for slot.... +07:49:32 Sending to : +07:49:32 ============================================================================ +07:49:32 ============================================================================ +07:49:32 Slot Id : <424> +07:49:32 Transaction Type : REQUEST +07:49:32 Received From : +07:49:32 ============================================================================ +07:49:32 FNo. Len. Field Value +07:49:32 ============================================================================ +07:49:32 [ 1] [ 4] [0200] +07:49:32 [ 2] [ 16] [6213544001861092] +07:49:32 [ 3] [ 6] [301000] +07:49:32 [ 4] [ 12] [000000000000] +07:49:32 [ 7] [ 10] [0320074723] +07:49:32 [ 11] [ 6] [930972] +07:49:32 [ 12] [ 6] [074723] +07:49:32 [ 13] [ 4] [0320] +07:49:32 [ 15] [ 4] [0320] +07:49:32 [ 18] [ 4] [6011] +07:49:32 [ 19] [ 3] [418] +07:49:32 [ 22] [ 3] [021] +07:49:32 [ 25] [ 2] [01] +07:49:32 [ 28] [ 9] [D00000000] +07:49:32 [ 32] [ 6] [668899] +07:49:32 [ 35] [ 32] [6213544001861092=491212016109055] +07:49:32 [ 37] [ 12] [507902045647] +07:49:32 [ 41] [ 8] [03205002] +07:49:32 [ 42] [ 15] [APT ] +07:49:32 [ 43] [ 40] [ HIGH SCHOOL OF MEUANGHOUN] +07:49:32 [ 49] [ 3] [418] +07:49:32 [ 52] [ 16] [4758B363E7E69E35] +07:49:32 ============================================================================ +07:49:32 + + +waiting on router queue for slot.... +07:49:32 Sending to : <0> +07:49:32 ============================================================================ +07:49:32 ============================================================================ +07:49:32 Slot Id : <424> +07:49:32 Transaction Type : RESPONSE +07:49:32 Received From : +07:49:32 ============================================================================ +07:49:32 FNo. Len. Field Value +07:49:32 ============================================================================ +07:49:32 [ 1] [ 4] [0210] +07:49:32 [ 2] [ 16] [6213544001861092] +07:49:32 [ 3] [ 6] [301000] +07:49:32 [ 4] [ 12] [000000000000] +07:49:32 [ 7] [ 10] [0320074723] +07:49:32 [ 11] [ 6] [930972] +07:49:32 [ 12] [ 6] [074723] +07:49:32 [ 13] [ 4] [0320] +07:49:32 [ 15] [ 4] [0320] +07:49:32 [ 18] [ 4] [6011] +07:49:32 [ 19] [ 3] [418] +07:49:32 [ 32] [ 6] [668899] +07:49:32 [ 35] [ 32] [6213544001861092=491212016109055] +07:49:32 [ 37] [ 12] [507902045647] +07:49:32 [ 38] [ 6] [592309] +07:49:32 [ 39] [ 2] [00] +07:49:32 [ 41] [ 8] [03205002] +07:49:32 [ 49] [ 3] [418] +07:49:32 [ 54] [ 40] [1001418C0004043306381002418C000404330638] +07:49:32 ============================================================================ +07:49:32 Sending to : +07:49:32 ============================================================================ +07:49:32 + + +waiting on router queue for slot.... +07:49:33 ============================================================================ +07:49:33 Slot Id : <404> +07:49:33 Transaction Type : RESPONSE +07:49:33 Received From : +07:49:33 ============================================================================ +07:49:33 FNo. Len. Field Value +07:49:33 ============================================================================ +07:49:33 [ 1] [ 4] [0210] +07:49:33 [ 2] [ 16] [6213548000409183] +07:49:33 [ 3] [ 6] [300000] +07:49:33 [ 4] [ 12] [000000000000] +07:49:33 [ 7] [ 10] [0320074723] +07:49:33 [ 11] [ 6] [930971] +07:49:33 [ 12] [ 6] [074723] +07:49:33 [ 13] [ 4] [0320] +07:49:33 [ 15] [ 4] [0320] +07:49:33 [ 18] [ 4] [6011] +07:49:33 [ 19] [ 3] [418] +07:49:33 [ 32] [ 6] [668899] +07:49:33 [ 35] [ 32] [6213548000409183=180612010918109] +07:49:33 [ 37] [ 12] [507901311927] +07:49:33 [ 38] [ 6] [110752] +07:49:33 [ 39] [ 2] [00] +07:49:33 [ 41] [ 8] [03006005] +07:49:33 [ 49] [ 3] [418] +07:49:33 [ 54] [ 40] [0001418C0000126214390002418C000012621439] +07:49:33 ============================================================================ +07:49:33 Calculate Source COMM Id = 4 +07:49:33 ============================================================================ +07:49:33 + + +waiting on router queue for slot.... +07:49:35 ============================================================================ +07:49:35 Slot Id : <429> +07:49:35 Transaction Type : REQUEST +07:49:35 Received From : +07:49:35 ============================================================================ +07:49:35 FNo. Len. Field Value +07:49:35 ============================================================================ +07:49:35 [ 1] [ 4] [0800] +07:49:35 [ 7] [ 10] [0320124843] +07:49:35 [ 11] [ 6] [155256] +07:49:35 [ 70] [ 3] [301] +07:49:35 ============================================================================ +07:49:35 + + +waiting on router queue for slot.... +07:49:35 Sending to : +07:49:35 ============================================================================ +07:49:35 ============================================================================ +07:49:35 Slot Id : <429> +07:49:35 Transaction Type : RESPONSE +07:49:35 Received From : +07:49:35 ============================================================================ +07:49:35 FNo. Len. Field Value +07:49:35 ============================================================================ +07:49:35 [ 1] [ 4] [0810] +07:49:35 [ 7] [ 10] [0320124843] +07:49:35 [ 11] [ 6] [155256] +07:49:35 [ 39] [ 2] [00] +07:49:35 [ 70] [ 3] [301] +07:49:35 ============================================================================ +07:49:35 Calculate Source COMM Id = 2 +07:49:35 ============================================================================ +07:49:35 + + +waiting on router queue for slot.... +07:49:35 ============================================================================ +07:49:35 Slot Id : <424> +07:49:35 Transaction Type : RESPONSE +07:49:35 Received From : +07:49:35 ============================================================================ +07:49:35 FNo. Len. Field Value +07:49:35 ============================================================================ +07:49:35 [ 1] [ 4] [0210] +07:49:35 [ 2] [ 16] [6213544001861092] +07:49:35 [ 3] [ 6] [301000] +07:49:35 [ 4] [ 12] [000000000000] +07:49:35 [ 7] [ 10] [0320074723] +07:49:35 [ 11] [ 6] [930972] +07:49:35 [ 12] [ 6] [074723] +07:49:35 [ 13] [ 4] [0320] +07:49:35 [ 15] [ 4] [0320] +07:49:35 [ 18] [ 4] [6011] +07:49:35 [ 19] [ 3] [418] +07:49:35 [ 32] [ 6] [668899] +07:49:35 [ 35] [ 32] [6213544001861092=491212016109055] +07:49:35 [ 37] [ 12] [507902045647] +07:49:35 [ 38] [ 6] [592309] +07:49:35 [ 39] [ 2] [00] +07:49:35 [ 41] [ 8] [03205002] +07:49:35 [ 49] [ 3] [418] +07:49:35 [ 54] [ 40] [1001418C0004043306381002418C000404330638] +07:49:35 ============================================================================ +07:49:35 Calculate Source COMM Id = 4 +07:49:35 ============================================================================ +07:49:35 + + +waiting on router queue for slot.... +07:49:44 ============================================================================ +07:49:44 Slot Id : <445> +07:49:44 Transaction Type : REQUEST +07:49:44 Received From : +07:49:44 ============================================================================ +07:49:44 FNo. Len. Field Value +07:49:44 ============================================================================ +07:49:44 [ 1] [ 4] [0800] +07:49:44 [ 2] [ 5] [02531] +07:49:44 [ 3] [ 6] [579078] +07:49:44 [ 7] [ 10] [0320004944] +07:49:44 [ 11] [ 6] [806866] +07:49:44 [ 15] [ 10] [0320004944] +07:49:44 [ 37] [ 11] [57907806866] +07:49:44 [ 70] [ 3] [001] +07:49:44 ============================================================================ +07:49:44 + + +waiting on router queue for slot.... +07:49:44 ============================================================================ +07:49:44 Slot Id : <445> +07:49:44 Transaction Type : RESPONSE +07:49:44 Received From : +07:49:44 ============================================================================ +07:49:44 FNo. Len. Field Value +07:49:44 ============================================================================ +07:49:44 [ 1] [ 4] [0810] +07:49:44 [ 7] [ 10] [0320004944] +07:49:44 [ 11] [ 6] [806866] +07:49:44 [ 15] [ 4] [0320] +07:49:44 [ 37] [ 12] [57907806866] +07:49:44 [ 39] [ 2] [00] +07:49:44 [ 70] [ 3] [001] +07:49:44 ============================================================================ +07:49:44 Sending to : +07:49:44 ============================================================================ +07:49:44 + + +waiting on router queue for slot.... +07:49:45 ============================================================================ +07:49:45 Slot Id : <442> +07:49:45 Transaction Type : REQUEST +07:49:45 Received From : +07:49:45 ============================================================================ +07:49:45 FNo. Len. Field Value +07:49:45 ============================================================================ +07:49:45 [ 1] [ 4] [0200] +07:49:45 [ 2] [ 16] [6688990602699207] +07:49:45 [ 3] [ 6] [010000] +07:49:45 [ 4] [ 12] [000010000000] +07:49:45 [ 7] [ 10] [0320004852] +07:49:45 [ 11] [ 6] [266911] +07:49:45 [ 12] [ 6] [074852] +07:49:45 [ 13] [ 4] [0320] +07:49:45 [ 14] [ 4] [4310] +07:49:45 [ 15] [ 4] [0320] +07:49:45 [ 18] [ 4] [6011] +07:49:45 [ 19] [ 3] [418] +07:49:45 [ 22] [ 3] [021] +07:49:45 [ 25] [ 2] [01] +07:49:45 [ 28] [ 9] [D00002000] +07:49:45 [ 32] [ 6] [180893] +07:49:45 [ 35] [ 37] [6688990602699207=43100061920753900000] +07:49:45 [ 37] [ 12] [507900266911] +07:49:45 [ 41] [ 8] [0201ADD1] +07:49:45 [ 42] [ 15] [999999 ] +07:49:45 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +07:49:45 [ 49] [ 3] [418] +07:49:45 [ 52] [ 16] [D62FF0627ACDCE57] +07:49:45 ============================================================================ +07:49:45 + + +waiting on router queue for slot.... +07:49:45 Sending to : +07:49:45 ============================================================================ +07:49:45 Sending to : +07:49:45 ============================================================================ +07:49:45 ============================================================================ +07:49:45 Slot Id : <442> +07:49:45 Transaction Type : REQUEST +07:49:45 Received From : +07:49:45 ============================================================================ +07:49:45 FNo. Len. Field Value +07:49:45 ============================================================================ +07:49:45 [ 1] [ 4] [0200] +07:49:45 [ 2] [ 16] [6688990602699207] +07:49:45 [ 3] [ 6] [010000] +07:49:45 [ 4] [ 12] [000010000000] +07:49:45 [ 7] [ 10] [0320004852] +07:49:45 [ 11] [ 6] [266911] +07:49:45 [ 12] [ 6] [074852] +07:49:45 [ 13] [ 4] [0320] +07:49:45 [ 14] [ 4] [4310] +07:49:45 [ 15] [ 4] [0320] +07:49:45 [ 18] [ 4] [6011] +07:49:45 [ 19] [ 3] [418] +07:49:45 [ 22] [ 3] [021] +07:49:45 [ 25] [ 2] [01] +07:49:45 [ 28] [ 9] [D00002000] +07:49:45 [ 32] [ 6] [180893] +07:49:45 [ 35] [ 37] [6688990602699207=43100061920753900000] +07:49:45 [ 37] [ 12] [507900266911] +07:49:45 [ 41] [ 8] [0201ADD1] +07:49:45 [ 42] [ 15] [999999 ] +07:49:45 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +07:49:45 [ 49] [ 3] [418] +07:49:45 [ 52] [ 16] [D62FF0627ACDCE57] +07:49:45 ============================================================================ +07:49:45 + + +waiting on router queue for slot.... +07:49:45 Sending to : +07:49:45 ============================================================================ +07:49:45 ============================================================================ +07:49:45 Slot Id : <442> +07:49:45 Transaction Type : REQUEST +07:49:45 Received From : +07:49:45 ============================================================================ +07:49:45 FNo. Len. Field Value +07:49:45 ============================================================================ +07:49:45 [ 1] [ 4] [0200] +07:49:45 [ 2] [ 16] [6688990602699207] +07:49:45 [ 3] [ 6] [010000] +07:49:45 [ 4] [ 12] [000010000000] +07:49:45 [ 7] [ 10] [0320004852] +07:49:45 [ 11] [ 6] [266911] +07:49:45 [ 12] [ 6] [074852] +07:49:45 [ 13] [ 4] [0320] +07:49:45 [ 14] [ 4] [4310] +07:49:45 [ 15] [ 4] [0320] +07:49:45 [ 18] [ 4] [6011] +07:49:45 [ 19] [ 3] [418] +07:49:45 [ 22] [ 3] [021] +07:49:45 [ 25] [ 2] [01] +07:49:45 [ 28] [ 9] [D00002000] +07:49:45 [ 32] [ 6] [180893] +07:49:45 [ 35] [ 37] [6688990602699207=43100061920753900000] +07:49:45 [ 37] [ 12] [507900266911] +07:49:45 [ 41] [ 8] [0201ADD1] +07:49:45 [ 42] [ 15] [999999 ] +07:49:45 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +07:49:45 [ 49] [ 3] [418] +07:49:45 [ 52] [ 16] [5353C6D5E3323BD4] +07:49:45 ============================================================================ +07:49:45 + + +waiting on router queue for slot.... +07:49:45 Sending to : <0> +07:49:45 ============================================================================ +07:49:45 ============================================================================ +07:49:45 Slot Id : <442> +07:49:45 Transaction Type : RESPONSE +07:49:45 Received From : +07:49:45 ============================================================================ +07:49:45 FNo. Len. Field Value +07:49:45 ============================================================================ +07:49:45 [ 1] [ 4] [0210] +07:49:45 [ 2] [ 16] [6688990602699207] +07:49:45 [ 3] [ 6] [010000] +07:49:45 [ 4] [ 12] [000010000000] +07:49:45 [ 7] [ 10] [0320004852] +07:49:45 [ 11] [ 6] [266911] +07:49:45 [ 12] [ 6] [074852] +07:49:45 [ 13] [ 4] [0320] +07:49:45 [ 15] [ 4] [0320] +07:49:45 [ 18] [ 4] [6011] +07:49:45 [ 19] [ 3] [418] +07:49:45 [ 22] [ 3] [021] +07:49:45 [ 32] [ 6] [180893] +07:49:45 [ 35] [ 37] [6688990602699207=43100061920753900000] +07:49:45 [ 37] [ 12] [507900266911] +07:49:45 [ 39] [ 2] [14] +07:49:45 [ 41] [ 8] [0201ADD1] +07:49:45 [ 49] [ 3] [418] +07:49:45 ============================================================================ +07:49:45 Sending to : +07:49:45 ============================================================================ +07:49:45 + + +waiting on router queue for slot.... +07:49:46 ============================================================================ +07:49:46 Slot Id : <442> +07:49:46 Transaction Type : RESPONSE +07:49:46 Received From : +07:49:46 ============================================================================ +07:49:46 FNo. Len. Field Value +07:49:46 ============================================================================ +07:49:46 [ 1] [ 4] [0210] +07:49:46 [ 2] [ 16] [6688990602699207] +07:49:46 [ 3] [ 6] [010000] +07:49:46 [ 4] [ 12] [000010000000] +07:49:46 [ 7] [ 10] [0320004852] +07:49:46 [ 11] [ 6] [266911] +07:49:46 [ 12] [ 6] [074852] +07:49:46 [ 13] [ 4] [0320] +07:49:46 [ 15] [ 4] [0320] +07:49:46 [ 18] [ 4] [6011] +07:49:46 [ 19] [ 3] [418] +07:49:46 [ 22] [ 3] [021] +07:49:46 [ 32] [ 6] [180893] +07:49:46 [ 35] [ 37] [6688990602699207=43100061920753900000] +07:49:46 [ 37] [ 12] [507900266911] +07:49:46 [ 39] [ 2] [14] +07:49:46 [ 41] [ 8] [0201ADD1] +07:49:46 [ 49] [ 3] [418] +07:49:46 ============================================================================ +07:49:46 Calculate Source COMM Id = 2 +07:49:46 ============================================================================ +07:49:46 + + +waiting on router queue for slot.... +07:49:47 ============================================================================ +07:49:47 Slot Id : <438> +07:49:47 Transaction Type : REQUEST +07:49:47 Received From : +07:49:47 ============================================================================ +07:49:47 FNo. Len. Field Value +07:49:47 ============================================================================ +07:49:47 [ 1] [ 4] [0200] +07:49:47 [ 2] [ 16] [6688990108156603] +07:49:47 [ 3] [ 6] [301000] +07:49:47 [ 7] [ 10] [0320004855] +07:49:47 [ 11] [ 6] [266913] +07:49:47 [ 12] [ 6] [074855] +07:49:47 [ 13] [ 4] [0320] +07:49:47 [ 14] [ 4] [4405] +07:49:47 [ 15] [ 4] [0320] +07:49:47 [ 18] [ 4] [6011] +07:49:47 [ 19] [ 3] [418] +07:49:47 [ 22] [ 3] [021] +07:49:47 [ 25] [ 2] [01] +07:49:47 [ 32] [ 6] [180893] +07:49:47 [ 35] [ 37] [6688990108156603=44051231660304400000] +07:49:47 [ 37] [ 12] [507900266913] +07:49:47 [ 41] [ 8] [0522XYXH] +07:49:47 [ 42] [ 15] [999999 ] +07:49:47 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +07:49:47 [ 49] [ 3] [418] +07:49:47 [ 52] [ 16] [4706BB740D572A70] +07:49:47 ============================================================================ +07:49:47 + + +waiting on router queue for slot.... +07:49:47 Sending to : +07:49:47 ============================================================================ +07:49:47 Sending to : +07:49:47 ============================================================================ +07:49:47 ============================================================================ +07:49:47 Slot Id : <438> +07:49:47 Transaction Type : REQUEST +07:49:47 Received From : +07:49:47 ============================================================================ +07:49:47 FNo. Len. Field Value +07:49:47 ============================================================================ +07:49:47 [ 1] [ 4] [0200] +07:49:47 [ 2] [ 16] [6688990108156603] +07:49:47 [ 3] [ 6] [301000] +07:49:47 [ 7] [ 10] [0320004855] +07:49:47 [ 11] [ 6] [266913] +07:49:47 [ 12] [ 6] [074855] +07:49:47 [ 13] [ 4] [0320] +07:49:47 [ 14] [ 4] [4405] +07:49:47 [ 15] [ 4] [0320] +07:49:47 [ 18] [ 4] [6011] +07:49:47 [ 19] [ 3] [418] +07:49:47 [ 22] [ 3] [021] +07:49:47 [ 25] [ 2] [01] +07:49:47 [ 32] [ 6] [180893] +07:49:47 [ 35] [ 37] [6688990108156603=44051231660304400000] +07:49:47 [ 37] [ 12] [507900266913] +07:49:47 [ 41] [ 8] [0522XYXH] +07:49:47 [ 42] [ 15] [999999 ] +07:49:47 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +07:49:47 [ 49] [ 3] [418] +07:49:47 [ 52] [ 16] [4706BB740D572A70] +07:49:47 ============================================================================ +07:49:47 + + +waiting on router queue for slot.... +07:49:47 Sending to : +07:49:47 ============================================================================ +07:49:47 ============================================================================ +07:49:47 Slot Id : <438> +07:49:47 Transaction Type : REQUEST +07:49:47 Received From : +07:49:47 ============================================================================ +07:49:47 FNo. Len. Field Value +07:49:47 ============================================================================ +07:49:47 [ 1] [ 4] [0200] +07:49:47 [ 2] [ 16] [6688990108156603] +07:49:47 [ 3] [ 6] [301000] +07:49:47 [ 7] [ 10] [0320004855] +07:49:47 [ 11] [ 6] [266913] +07:49:47 [ 12] [ 6] [074855] +07:49:47 [ 13] [ 4] [0320] +07:49:47 [ 14] [ 4] [4405] +07:49:47 [ 15] [ 4] [0320] +07:49:47 [ 18] [ 4] [6011] +07:49:47 [ 19] [ 3] [418] +07:49:47 [ 22] [ 3] [021] +07:49:47 [ 25] [ 2] [01] +07:49:47 [ 32] [ 6] [180893] +07:49:47 [ 35] [ 37] [6688990108156603=44051231660304400000] +07:49:47 [ 37] [ 12] [507900266913] +07:49:47 [ 41] [ 8] [0522XYXH] +07:49:47 [ 42] [ 15] [999999 ] +07:49:47 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +07:49:47 [ 49] [ 3] [418] +07:49:47 [ 52] [ 16] [1E45422942349127] +07:49:47 ============================================================================ +07:49:47 + + +waiting on router queue for slot.... +07:49:47 Sending to : <0> +07:49:47 ============================================================================ +07:49:48 ============================================================================ +07:49:48 Slot Id : <438> +07:49:48 Transaction Type : RESPONSE +07:49:48 Received From : +07:49:48 ============================================================================ +07:49:48 FNo. Len. Field Value +07:49:48 ============================================================================ +07:49:48 [ 1] [ 4] [0210] +07:49:48 [ 2] [ 16] [6688990108156603] +07:49:48 [ 3] [ 6] [301000] +07:49:48 [ 4] [ 12] [000000000000] +07:49:48 [ 7] [ 10] [0320004855] +07:49:48 [ 11] [ 6] [266913] +07:49:48 [ 12] [ 6] [074855] +07:49:48 [ 13] [ 4] [0320] +07:49:48 [ 15] [ 4] [0320] +07:49:48 [ 18] [ 4] [6011] +07:49:48 [ 19] [ 3] [418] +07:49:48 [ 22] [ 3] [021] +07:49:48 [ 32] [ 6] [180893] +07:49:48 [ 35] [ 37] [6688990108156603=44051231660304400000] +07:49:48 [ 37] [ 12] [507900266913] +07:49:48 [ 39] [ 2] [14] +07:49:48 [ 41] [ 8] [0522XYXH] +07:49:48 [ 49] [ 3] [418] +07:49:48 ============================================================================ +07:49:48 Sending to : +07:49:48 ============================================================================ +07:49:48 + + +waiting on router queue for slot.... +07:49:48 ============================================================================ +07:49:48 Slot Id : <438> +07:49:48 Transaction Type : RESPONSE +07:49:48 Received From : +07:49:48 ============================================================================ +07:49:48 FNo. Len. Field Value +07:49:48 ============================================================================ +07:49:48 [ 1] [ 4] [0210] +07:49:48 [ 2] [ 16] [6688990108156603] +07:49:48 [ 3] [ 6] [301000] +07:49:48 [ 4] [ 12] [000000000000] +07:49:48 [ 7] [ 10] [0320004855] +07:49:48 [ 11] [ 6] [266913] +07:49:48 [ 12] [ 6] [074855] +07:49:48 [ 13] [ 4] [0320] +07:49:48 [ 15] [ 4] [0320] +07:49:48 [ 18] [ 4] [6011] +07:49:48 [ 19] [ 3] [418] +07:49:48 [ 22] [ 3] [021] +07:49:48 [ 32] [ 6] [180893] +07:49:48 [ 35] [ 37] [6688990108156603=44051231660304400000] +07:49:48 [ 37] [ 12] [507900266913] +07:49:48 [ 39] [ 2] [14] +07:49:48 [ 41] [ 8] [0522XYXH] +07:49:48 [ 49] [ 3] [418] +07:49:48 ============================================================================ +07:49:48 Calculate Source COMM Id = 2 +07:49:48 ============================================================================ +07:49:48 + + +waiting on router queue for slot.... +07:49:54 ============================================================================ +07:49:54 Slot Id : <434> +07:49:54 Transaction Type : REQUEST +07:49:54 Received From : +07:49:54 ============================================================================ +07:49:54 FNo. Len. Field Value +07:49:54 ============================================================================ +07:49:54 [ 1] [ 4] [0800] +07:49:54 [ 7] [ 10] [0320005742] +07:49:54 [ 11] [ 6] [065494] +07:49:54 [ 37] [ 12] [57907065494] +07:49:54 [ 70] [ 3] [301] +07:49:54 ============================================================================ +07:49:54 + + +waiting on router queue for slot.... +07:49:54 Sending to : +07:49:54 ============================================================================ +07:49:54 ============================================================================ +07:49:54 Slot Id : <434> +07:49:54 Transaction Type : RESPONSE +07:49:54 Received From : +07:49:54 ============================================================================ +07:49:54 FNo. Len. Field Value +07:49:54 ============================================================================ +07:49:54 [ 1] [ 4] [0810] +07:49:54 [ 7] [ 10] [0320005742] +07:49:54 [ 11] [ 6] [065494] +07:49:54 [ 37] [ 12] [579070654940] +07:49:54 [ 39] [ 2] [00] +07:49:54 [ 70] [ 3] [810] +07:49:54 ============================================================================ +07:49:54 Calculate Source COMM Id = 1 +07:49:54 ============================================================================ +07:49:54 + + +waiting on router queue for slot.... +07:49:55 ============================================================================ +07:49:55 Slot Id : <428> +07:49:55 Transaction Type : REQUEST +07:49:55 Received From : +07:49:55 ============================================================================ +07:49:55 FNo. Len. Field Value +07:49:55 ============================================================================ +07:49:55 [ 1] [ 4] [0200] +07:49:55 [ 2] [ 16] [6213544000794070] +07:49:55 [ 3] [ 6] [010000] +07:49:55 [ 4] [ 12] [000100000000] +07:49:55 [ 7] [ 10] [0320074746] +07:49:55 [ 11] [ 6] [930980] +07:49:55 [ 12] [ 6] [074746] +07:49:55 [ 13] [ 4] [0320] +07:49:55 [ 15] [ 4] [0320] +07:49:55 [ 18] [ 4] [6011] +07:49:55 [ 19] [ 3] [418] +07:49:55 [ 22] [ 3] [021] +07:49:55 [ 25] [ 2] [01] +07:49:55 [ 28] [ 9] [D00002000] +07:49:55 [ 32] [ 6] [668899] +07:49:55 [ 35] [ 32] [6213544000794070=491212019407597] +07:49:55 [ 37] [ 12] [507901523449] +07:49:55 [ 41] [ 8] [03216001] +07:49:55 [ 42] [ 15] [APT ] +07:49:55 [ 43] [ 40] [ LAONGARM UNIT BAN NONEKHL] +07:49:55 [ 49] [ 3] [418] +07:49:55 [ 52] [ 16] [F441EE94B2CE04E4] +07:49:55 ============================================================================ +07:49:55 + + +waiting on router queue for slot.... +07:49:55 Sending to : +07:49:55 ============================================================================ +07:49:55 Sending to : +07:49:55 ============================================================================ +07:49:55 ============================================================================ +07:49:55 Slot Id : <428> +07:49:55 Transaction Type : REQUEST +07:49:55 Received From : +07:49:55 ============================================================================ +07:49:55 FNo. Len. Field Value +07:49:55 ============================================================================ +07:49:55 [ 1] [ 4] [0200] +07:49:55 [ 2] [ 16] [6213544000794070] +07:49:55 [ 3] [ 6] [010000] +07:49:55 [ 4] [ 12] [000100000000] +07:49:55 [ 7] [ 10] [0320074746] +07:49:55 [ 11] [ 6] [930980] +07:49:55 [ 12] [ 6] [074746] +07:49:55 [ 13] [ 4] [0320] +07:49:55 [ 15] [ 4] [0320] +07:49:55 [ 18] [ 4] [6011] +07:49:55 [ 19] [ 3] [418] +07:49:55 [ 22] [ 3] [021] +07:49:55 [ 25] [ 2] [01] +07:49:55 [ 28] [ 9] [D00002000] +07:49:55 [ 32] [ 6] [668899] +07:49:55 [ 35] [ 32] [6213544000794070=491212019407597] +07:49:55 [ 37] [ 12] [507901523449] +07:49:55 [ 41] [ 8] [03216001] +07:49:55 [ 42] [ 15] [APT ] +07:49:55 [ 43] [ 40] [ LAONGARM UNIT BAN NONEKHL] +07:49:55 [ 49] [ 3] [418] +07:49:55 [ 52] [ 16] [F441EE94B2CE04E4] +07:49:55 ============================================================================ +07:49:55 + + +waiting on router queue for slot.... +07:49:55 Sending to : +07:49:55 ============================================================================ +07:49:55 ============================================================================ +07:49:55 Slot Id : <428> +07:49:55 Transaction Type : REQUEST +07:49:55 Received From : +07:49:55 ============================================================================ +07:49:55 FNo. Len. Field Value +07:49:55 ============================================================================ +07:49:55 [ 1] [ 4] [0200] +07:49:55 [ 2] [ 16] [6213544000794070] +07:49:55 [ 3] [ 6] [010000] +07:49:55 [ 4] [ 12] [000100000000] +07:49:55 [ 7] [ 10] [0320074746] +07:49:55 [ 11] [ 6] [930980] +07:49:55 [ 12] [ 6] [074746] +07:49:55 [ 13] [ 4] [0320] +07:49:55 [ 15] [ 4] [0320] +07:49:55 [ 18] [ 4] [6011] +07:49:55 [ 19] [ 3] [418] +07:49:55 [ 22] [ 3] [021] +07:49:55 [ 25] [ 2] [01] +07:49:55 [ 28] [ 9] [D00002000] +07:49:55 [ 32] [ 6] [668899] +07:49:55 [ 35] [ 32] [6213544000794070=491212019407597] +07:49:55 [ 37] [ 12] [507901523449] +07:49:55 [ 41] [ 8] [03216001] +07:49:55 [ 42] [ 15] [APT ] +07:49:55 [ 43] [ 40] [ LAONGARM UNIT BAN NONEKHL] +07:49:55 [ 49] [ 3] [418] +07:49:55 [ 52] [ 16] [15172F206E803CDC] +07:49:55 ============================================================================ +07:49:55 + + +waiting on router queue for slot.... +07:49:55 Sending to : <0> +07:49:55 ============================================================================ +07:49:56 ============================================================================ +07:49:56 Slot Id : <428> +07:49:56 Transaction Type : RESPONSE +07:49:56 Received From : +07:49:56 ============================================================================ +07:49:56 FNo. Len. Field Value +07:49:56 ============================================================================ +07:49:56 [ 1] [ 4] [0210] +07:49:56 [ 2] [ 16] [6213544000794070] +07:49:56 [ 3] [ 6] [010000] +07:49:56 [ 4] [ 12] [000100000000] +07:49:56 [ 7] [ 10] [0320074746] +07:49:56 [ 11] [ 6] [930980] +07:49:56 [ 12] [ 6] [074746] +07:49:56 [ 13] [ 4] [0320] +07:49:56 [ 15] [ 4] [0320] +07:49:56 [ 18] [ 4] [6011] +07:49:56 [ 19] [ 3] [418] +07:49:56 [ 32] [ 6] [668899] +07:49:56 [ 35] [ 32] [6213544000794070=491212019407597] +07:49:56 [ 37] [ 12] [507901523449] +07:49:56 [ 38] [ 6] [048496] +07:49:56 [ 39] [ 2] [00] +07:49:56 [ 41] [ 8] [03216001] +07:49:56 [ 49] [ 3] [418] +07:49:56 [ 54] [ 40] [0001418C0008637307470002418C000863730747] +07:49:56 ============================================================================ +07:49:56 Sending to : +07:49:56 ============================================================================ +07:49:56 + + +waiting on router queue for slot.... +07:49:57 ============================================================================ +07:49:57 Slot Id : <428> +07:49:57 Transaction Type : RESPONSE +07:49:57 Received From : +07:49:57 ============================================================================ +07:49:57 FNo. Len. Field Value +07:49:57 ============================================================================ +07:49:57 [ 1] [ 4] [0210] +07:49:57 [ 2] [ 16] [6213544000794070] +07:49:57 [ 3] [ 6] [010000] +07:49:57 [ 4] [ 12] [000100000000] +07:49:57 [ 7] [ 10] [0320074746] +07:49:57 [ 11] [ 6] [930980] +07:49:57 [ 12] [ 6] [074746] +07:49:57 [ 13] [ 4] [0320] +07:49:57 [ 15] [ 4] [0320] +07:49:57 [ 18] [ 4] [6011] +07:49:57 [ 19] [ 3] [418] +07:49:57 [ 32] [ 6] [668899] +07:49:57 [ 35] [ 32] [6213544000794070=491212019407597] +07:49:57 [ 37] [ 12] [507901523449] +07:49:57 [ 38] [ 6] [048496] +07:49:57 [ 39] [ 2] [00] +07:49:57 [ 41] [ 8] [03216001] +07:49:57 [ 49] [ 3] [418] +07:49:57 [ 54] [ 40] [0001418C0008637307470002418C000863730747] +07:49:57 ============================================================================ +07:49:57 Calculate Source COMM Id = 4 +07:49:57 ============================================================================ +07:49:57 + + +waiting on router queue for slot.... +07:50:02 ============================================================================ +07:50:02 Slot Id : <427> +07:50:02 Transaction Type : REQUEST +07:50:02 Received From : +07:50:02 ============================================================================ +07:50:02 FNo. Len. Field Value +07:50:02 ============================================================================ +07:50:02 [ 1] [ 4] [0800] +07:50:02 [ 7] [ 10] [0320124910] +07:50:02 [ 11] [ 6] [155257] +07:50:02 [ 70] [ 3] [301] +07:50:02 ============================================================================ +07:50:02 + + +waiting on router queue for slot.... +07:50:02 Sending to : +07:50:02 ============================================================================ +07:50:02 ============================================================================ +07:50:02 Slot Id : <427> +07:50:02 Transaction Type : RESPONSE +07:50:02 Received From : +07:50:02 ============================================================================ +07:50:02 FNo. Len. Field Value +07:50:02 ============================================================================ +07:50:02 [ 1] [ 4] [0810] +07:50:02 [ 7] [ 10] [0320124910] +07:50:02 [ 11] [ 6] [155257] +07:50:02 [ 39] [ 2] [00] +07:50:02 [ 70] [ 3] [301] +07:50:02 ============================================================================ +07:50:02 Calculate Source COMM Id = 2 +07:50:02 ============================================================================ +07:50:02 + + +waiting on router queue for slot.... +07:50:08 ============================================================================ +07:50:08 Slot Id : <426> +07:50:08 Transaction Type : REQUEST +07:50:08 Received From : +07:50:08 ============================================================================ +07:50:08 FNo. Len. Field Value +07:50:08 ============================================================================ +07:50:08 [ 1] [ 4] [0200] +07:50:08 [ 2] [ 16] [6213544002161690] +07:50:08 [ 3] [ 6] [010000] +07:50:08 [ 4] [ 12] [000100000000] +07:50:08 [ 7] [ 10] [0320074800] +07:50:08 [ 11] [ 6] [930991] +07:50:08 [ 12] [ 6] [074800] +07:50:08 [ 13] [ 4] [0320] +07:50:08 [ 15] [ 4] [0320] +07:50:08 [ 18] [ 4] [6011] +07:50:08 [ 19] [ 3] [418] +07:50:08 [ 22] [ 3] [021] +07:50:08 [ 25] [ 2] [01] +07:50:08 [ 28] [ 9] [D00002000] +07:50:08 [ 32] [ 6] [668899] +07:50:08 [ 35] [ 32] [6213544002161690=491212016169205] +07:50:08 [ 37] [ 12] [507901963358] +07:50:08 [ 41] [ 8] [03020019] +07:50:08 [ 42] [ 15] [APT ] +07:50:08 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +07:50:08 [ 49] [ 3] [418] +07:50:08 [ 52] [ 16] [93F89C198D276EAA] +07:50:08 ============================================================================ +07:50:08 + + +waiting on router queue for slot.... +07:50:08 Sending to : +07:50:08 ============================================================================ +07:50:08 Sending to : +07:50:08 ============================================================================ +07:50:08 ============================================================================ +07:50:08 Slot Id : <426> +07:50:08 Transaction Type : REQUEST +07:50:08 Received From : +07:50:08 ============================================================================ +07:50:08 FNo. Len. Field Value +07:50:08 ============================================================================ +07:50:08 [ 1] [ 4] [0200] +07:50:08 [ 2] [ 16] [6213544002161690] +07:50:08 [ 3] [ 6] [010000] +07:50:08 [ 4] [ 12] [000100000000] +07:50:08 [ 7] [ 10] [0320074800] +07:50:08 [ 11] [ 6] [930991] +07:50:08 [ 12] [ 6] [074800] +07:50:08 [ 13] [ 4] [0320] +07:50:08 [ 15] [ 4] [0320] +07:50:08 [ 18] [ 4] [6011] +07:50:08 [ 19] [ 3] [418] +07:50:08 [ 22] [ 3] [021] +07:50:08 [ 25] [ 2] [01] +07:50:08 [ 28] [ 9] [D00002000] +07:50:08 [ 32] [ 6] [668899] +07:50:08 [ 35] [ 32] [6213544002161690=491212016169205] +07:50:08 [ 37] [ 12] [507901963358] +07:50:08 [ 41] [ 8] [03020019] +07:50:08 [ 42] [ 15] [APT ] +07:50:08 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +07:50:08 [ 49] [ 3] [418] +07:50:08 [ 52] [ 16] [93F89C198D276EAA] +07:50:08 ============================================================================ +07:50:08 + + +waiting on router queue for slot.... +07:50:08 Sending to : +07:50:08 ============================================================================ +07:50:08 ============================================================================ +07:50:08 Slot Id : <426> +07:50:08 Transaction Type : REQUEST +07:50:08 Received From : +07:50:08 ============================================================================ +07:50:08 FNo. Len. Field Value +07:50:08 ============================================================================ +07:50:08 [ 1] [ 4] [0200] +07:50:08 [ 2] [ 16] [6213544002161690] +07:50:08 [ 3] [ 6] [010000] +07:50:08 [ 4] [ 12] [000100000000] +07:50:08 [ 7] [ 10] [0320074800] +07:50:08 [ 11] [ 6] [930991] +07:50:08 [ 12] [ 6] [074800] +07:50:08 [ 13] [ 4] [0320] +07:50:08 [ 15] [ 4] [0320] +07:50:08 [ 18] [ 4] [6011] +07:50:08 [ 19] [ 3] [418] +07:50:08 [ 22] [ 3] [021] +07:50:08 [ 25] [ 2] [01] +07:50:08 [ 28] [ 9] [D00002000] +07:50:08 [ 32] [ 6] [668899] +07:50:08 [ 35] [ 32] [6213544002161690=491212016169205] +07:50:08 [ 37] [ 12] [507901963358] +07:50:08 [ 41] [ 8] [03020019] +07:50:08 [ 42] [ 15] [APT ] +07:50:08 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +07:50:08 [ 49] [ 3] [418] +07:50:08 [ 52] [ 16] [F34F163BEE7DE262] +07:50:08 ============================================================================ +07:50:08 + + +waiting on router queue for slot.... +07:50:08 Sending to : <0> +07:50:08 ============================================================================ +07:50:09 ============================================================================ +07:50:09 Slot Id : <426> +07:50:09 Transaction Type : RESPONSE +07:50:09 Received From : +07:50:09 ============================================================================ +07:50:09 FNo. Len. Field Value +07:50:09 ============================================================================ +07:50:09 [ 1] [ 4] [0210] +07:50:09 [ 2] [ 16] [6213544002161690] +07:50:09 [ 3] [ 6] [010000] +07:50:09 [ 4] [ 12] [000100000000] +07:50:09 [ 7] [ 10] [0320074800] +07:50:09 [ 11] [ 6] [930991] +07:50:09 [ 12] [ 6] [074800] +07:50:09 [ 13] [ 4] [0320] +07:50:09 [ 15] [ 4] [0320] +07:50:09 [ 18] [ 4] [6011] +07:50:09 [ 19] [ 3] [418] +07:50:09 [ 32] [ 6] [668899] +07:50:09 [ 35] [ 32] [6213544002161690=491212016169205] +07:50:09 [ 37] [ 12] [507901963358] +07:50:09 [ 38] [ 6] [235542] +07:50:09 [ 39] [ 2] [00] +07:50:09 [ 41] [ 8] [03020019] +07:50:09 [ 49] [ 3] [418] +07:50:09 [ 54] [ 40] [0001418C0007631911120002418C000763191112] +07:50:09 ============================================================================ +07:50:09 Sending to : +07:50:09 ============================================================================ +07:50:09 + + +waiting on router queue for slot.... +07:50:11 ============================================================================ +07:50:11 Slot Id : <426> +07:50:11 Transaction Type : RESPONSE +07:50:11 Received From : +07:50:11 ============================================================================ +07:50:11 FNo. Len. Field Value +07:50:11 ============================================================================ +07:50:11 [ 1] [ 4] [0210] +07:50:11 [ 2] [ 16] [6213544002161690] +07:50:11 [ 3] [ 6] [010000] +07:50:11 [ 4] [ 12] [000100000000] +07:50:11 [ 7] [ 10] [0320074800] +07:50:11 [ 11] [ 6] [930991] +07:50:11 [ 12] [ 6] [074800] +07:50:11 [ 13] [ 4] [0320] +07:50:11 [ 15] [ 4] [0320] +07:50:11 [ 18] [ 4] [6011] +07:50:11 [ 19] [ 3] [418] +07:50:11 [ 32] [ 6] [668899] +07:50:11 [ 35] [ 32] [6213544002161690=491212016169205] +07:50:11 [ 37] [ 12] [507901963358] +07:50:11 [ 38] [ 6] [235542] +07:50:11 [ 39] [ 2] [00] +07:50:11 [ 41] [ 8] [03020019] +07:50:11 [ 49] [ 3] [418] +07:50:11 [ 54] [ 40] [0001418C0007631911120002418C000763191112] +07:50:11 ============================================================================ +07:50:11 Calculate Source COMM Id = 4 +07:50:11 ============================================================================ +07:50:11 + + +waiting on router queue for slot.... +07:50:11 ============================================================================ +07:50:11 Slot Id : <431> +07:50:11 Transaction Type : REQUEST +07:50:11 Received From : +07:50:11 ============================================================================ +07:50:11 FNo. Len. Field Value +07:50:11 ============================================================================ +07:50:11 [ 1] [ 4] [0200] +07:50:11 [ 2] [ 16] [6213545000159446] +07:50:11 [ 3] [ 6] [011000] +07:50:11 [ 4] [ 12] [000034000000] +07:50:11 [ 7] [ 10] [0320004918] +07:50:11 [ 11] [ 6] [266916] +07:50:11 [ 12] [ 6] [074918] +07:50:11 [ 13] [ 4] [0320] +07:50:11 [ 14] [ 4] [4912] +07:50:11 [ 15] [ 4] [0320] +07:50:11 [ 18] [ 4] [6011] +07:50:11 [ 19] [ 3] [418] +07:50:11 [ 22] [ 3] [021] +07:50:11 [ 25] [ 2] [01] +07:50:11 [ 28] [ 9] [D00002000] +07:50:11 [ 32] [ 6] [180893] +07:50:11 [ 35] [ 32] [6213545000159446=491212015944197] +07:50:11 [ 37] [ 12] [507900266916] +07:50:11 [ 41] [ 8] [0363CPSH] +07:50:11 [ 42] [ 15] [999999 ] +07:50:11 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:50:11 [ 49] [ 3] [418] +07:50:11 [ 52] [ 16] [15501990136786CD] +07:50:11 ============================================================================ +07:50:11 + + +waiting on router queue for slot.... +07:50:11 Sending to : +07:50:11 ============================================================================ +07:50:11 Sending to : +07:50:11 ============================================================================ +07:50:11 ============================================================================ +07:50:11 Slot Id : <451> +07:50:11 Transaction Type : REQUEST +07:50:11 Received From : +07:50:11 ============================================================================ +07:50:11 FNo. Len. Field Value +07:50:11 ============================================================================ +07:50:11 [ 1] [ 4] [0800] +07:50:11 [ 7] [ 10] [0320074959] +07:50:11 [ 11] [ 6] [044755] +07:50:11 [ 37] [ 12] [507907044755] +07:50:11 [ 70] [ 3] [ ] +07:50:11 ============================================================================ +07:50:11 + + +waiting on router queue for slot.... +07:50:11 Sending to : +07:50:11 ============================================================================ +07:50:11 ============================================================================ +07:50:11 Slot Id : <451> +07:50:11 Transaction Type : RESPONSE +07:50:11 Received From : +07:50:11 ============================================================================ +07:50:11 FNo. Len. Field Value +07:50:11 ============================================================================ +07:50:11 [ 1] [ 4] [0810] +07:50:11 [ 7] [ 10] [0320074959] +07:50:11 [ 11] [ 6] [044755] +07:50:11 [ 37] [ 12] [507907044755] +07:50:11 [ 39] [ 2] [91] +07:50:11 [ 70] [ 3] [ ] +07:50:11 ============================================================================ +07:50:11 Calculate Source COMM Id = 3 +07:50:11 ============================================================================ +07:50:11 + + +waiting on router queue for slot.... +07:50:11 ============================================================================ +07:50:11 Slot Id : <431> +07:50:11 Transaction Type : REQUEST +07:50:11 Received From : +07:50:11 ============================================================================ +07:50:11 FNo. Len. Field Value +07:50:11 ============================================================================ +07:50:11 [ 1] [ 4] [0200] +07:50:11 [ 2] [ 16] [6213545000159446] +07:50:11 [ 3] [ 6] [011000] +07:50:11 [ 4] [ 12] [000034000000] +07:50:11 [ 7] [ 10] [0320004918] +07:50:11 [ 11] [ 6] [266916] +07:50:11 [ 12] [ 6] [074918] +07:50:11 [ 13] [ 4] [0320] +07:50:11 [ 14] [ 4] [4912] +07:50:11 [ 15] [ 4] [0320] +07:50:11 [ 18] [ 4] [6011] +07:50:11 [ 19] [ 3] [418] +07:50:11 [ 22] [ 3] [021] +07:50:11 [ 25] [ 2] [01] +07:50:11 [ 28] [ 9] [D00002000] +07:50:11 [ 32] [ 6] [180893] +07:50:11 [ 35] [ 32] [6213545000159446=491212015944197] +07:50:11 [ 37] [ 12] [507900266916] +07:50:11 [ 41] [ 8] [0363CPSH] +07:50:11 [ 42] [ 15] [999999 ] +07:50:11 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:50:11 [ 49] [ 3] [418] +07:50:11 [ 52] [ 16] [15501990136786CD] +07:50:11 ============================================================================ +07:50:11 + + +waiting on router queue for slot.... +07:50:11 Sending to : +07:50:11 ============================================================================ +07:50:11 ============================================================================ +07:50:11 Slot Id : <431> +07:50:11 Transaction Type : REQUEST +07:50:11 Received From : +07:50:11 ============================================================================ +07:50:11 FNo. Len. Field Value +07:50:11 ============================================================================ +07:50:11 [ 1] [ 4] [0200] +07:50:11 [ 2] [ 16] [6213545000159446] +07:50:11 [ 3] [ 6] [011000] +07:50:11 [ 4] [ 12] [000034000000] +07:50:11 [ 7] [ 10] [0320004918] +07:50:11 [ 11] [ 6] [266916] +07:50:11 [ 12] [ 6] [074918] +07:50:11 [ 13] [ 4] [0320] +07:50:11 [ 14] [ 4] [4912] +07:50:11 [ 15] [ 4] [0320] +07:50:11 [ 18] [ 4] [6011] +07:50:11 [ 19] [ 3] [418] +07:50:11 [ 22] [ 3] [021] +07:50:11 [ 25] [ 2] [01] +07:50:11 [ 28] [ 9] [D00002000] +07:50:11 [ 32] [ 6] [180893] +07:50:11 [ 35] [ 32] [6213545000159446=491212015944197] +07:50:11 [ 37] [ 12] [507900266916] +07:50:11 [ 41] [ 8] [0363CPSH] +07:50:11 [ 42] [ 15] [999999 ] +07:50:11 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +07:50:11 [ 49] [ 3] [418] +07:50:11 [ 52] [ 16] [CD7AAE7E3A938E3D] +07:50:11 ============================================================================ +07:50:11 + + +waiting on router queue for slot.... +07:50:11 Sending to : <0> +07:50:11 ============================================================================ +07:50:12 ============================================================================ +07:50:12 Slot Id : <431> +07:50:12 Transaction Type : RESPONSE +07:50:12 Received From : +07:50:12 ============================================================================ +07:50:12 FNo. Len. Field Value +07:50:12 ============================================================================ +07:50:12 [ 1] [ 4] [0210] +07:50:12 [ 2] [ 16] [6213545000159446] +07:50:12 [ 3] [ 6] [011000] +07:50:12 [ 4] [ 12] [000034000000] +07:50:12 [ 7] [ 10] [0320004918] +07:50:12 [ 11] [ 6] [266916] +07:50:12 [ 12] [ 6] [074918] +07:50:12 [ 13] [ 4] [0320] +07:50:12 [ 15] [ 4] [0320] +07:50:12 [ 18] [ 4] [6011] +07:50:12 [ 19] [ 3] [418] +07:50:12 [ 32] [ 6] [180893] +07:50:12 [ 35] [ 32] [6213545000159446=491212015944197] +07:50:12 [ 37] [ 12] [507900266916] +07:50:12 [ 38] [ 6] [150180] +07:50:12 [ 39] [ 2] [00] +07:50:12 [ 41] [ 8] [0363CPSH] +07:50:12 [ 49] [ 3] [418] +07:50:12 [ 54] [ 40] [1001418C0000058186241002418C000005818624] +07:50:12 ============================================================================ +07:50:12 Sending to : +07:50:12 ============================================================================ +07:50:12 + + +waiting on router queue for slot.... +07:50:13 ============================================================================ +07:50:13 Slot Id : <457> +07:50:13 Transaction Type : REQUEST +07:50:13 Received From : +07:50:13 ============================================================================ +07:50:13 FNo. Len. Field Value +07:50:13 ============================================================================ +07:50:13 [ 1] [ 4] [0800] +07:50:13 [ 7] [ 10] [0320124921] +07:50:13 [ 11] [ 6] [155258] +07:50:13 [ 70] [ 3] [301] +07:50:13 ============================================================================ +07:50:13 + + +waiting on router queue for slot.... +07:50:13 Sending to : +07:50:13 ============================================================================ +07:50:13 ============================================================================ +07:50:13 Slot Id : <457> +07:50:13 Transaction Type : RESPONSE +07:50:13 Received From : +07:50:13 ============================================================================ +07:50:13 FNo. Len. Field Value +07:50:13 ============================================================================ +07:50:13 [ 1] [ 4] [0810] +07:50:13 [ 7] [ 10] [0320124921] +07:50:13 [ 11] [ 6] [155258] +07:50:13 [ 39] [ 2] [00] +07:50:13 [ 70] [ 3] [301] +07:50:13 ============================================================================ +07:50:13 Calculate Source COMM Id = 2 +07:50:13 ============================================================================ +07:50:13 + + +waiting on router queue for slot.... +07:50:13 ============================================================================ +07:50:13 Slot Id : <462> +07:50:13 Transaction Type : REQUEST +07:50:13 Received From : +07:50:13 ============================================================================ +07:50:13 FNo. Len. Field Value +07:50:13 ============================================================================ +07:50:13 [ 1] [ 4] [0800] +07:50:13 [ 7] [ 10] [0320150203] +07:50:13 [ 11] [ 6] [080203] +07:50:13 [ 37] [ 12] [57908080203] +07:50:13 [ 70] [ 3] [301] +07:50:13 ============================================================================ +07:50:13 + + +waiting on router queue for slot.... +07:50:13 Sending to : +07:50:13 ============================================================================ +07:50:13 ============================================================================ +07:50:13 Slot Id : <462> +07:50:13 Transaction Type : RESPONSE +07:50:13 Received From : +07:50:13 ============================================================================ +07:50:13 FNo. Len. Field Value +07:50:13 ============================================================================ +07:50:13 [ 1] [ 4] [0810] +07:50:13 [ 7] [ 10] [0320150203] +07:50:13 [ 11] [ 6] [080203] +07:50:13 [ 37] [ 12] [579080802030] +07:50:13 [ 39] [ 2] [00] +07:50:13 [ 70] [ 3] [810] +07:50:13 ============================================================================ +07:50:13 Calculate Source COMM Id = 6 +07:50:13 ============================================================================ +07:50:13 + + +waiting on router queue for slot.... +07:50:13 ============================================================================ +07:50:13 Slot Id : <431> +07:50:13 Transaction Type : RESPONSE +07:50:13 Received From : +07:50:13 ============================================================================ +07:50:13 FNo. Len. Field Value +07:50:13 ============================================================================ +07:50:13 [ 1] [ 4] [0210] +07:50:13 [ 2] [ 16] [6213545000159446] +07:50:13 [ 3] [ 6] [011000] +07:50:13 [ 4] [ 12] [000034000000] +07:50:13 [ 7] [ 10] [0320004918] +07:50:13 [ 11] [ 6] [266916] +07:50:13 [ 12] [ 6] [074918] +07:50:13 [ 13] [ 4] [0320] +07:50:13 [ 15] [ 4] [0320] +07:50:13 [ 18] [ 4] [6011] +07:50:13 [ 19] [ 3] [418] +07:50:13 [ 32] [ 6] [180893] +07:50:13 [ 35] [ 32] [6213545000159446=491212015944197] +07:50:13 [ 37] [ 12] [507900266916] +07:50:13 [ 38] [ 6] [150180] +07:50:13 [ 39] [ 2] [00] +07:50:13 [ 41] [ 8] [0363CPSH] +07:50:13 [ 49] [ 3] [418] +07:50:13 [ 54] [ 40] [1001418C0000058186241002418C000005818624] +07:50:13 ============================================================================ +07:50:13 Calculate Source COMM Id = 2 +07:50:13 ============================================================================ +07:50:13 + + +waiting on router queue for slot.... +07:50:29 ============================================================================ +07:50:29 Slot Id : <422> +07:50:29 Transaction Type : REQUEST +07:50:29 Received From : +07:50:29 ============================================================================ +07:50:29 FNo. Len. Field Value +07:50:29 ============================================================================ +07:50:29 [ 1] [ 4] [0800] +07:50:29 [ 7] [ 10] [0320124937] +07:50:29 [ 11] [ 6] [155259] +07:50:29 [ 70] [ 3] [301] +07:50:29 ============================================================================ +07:50:29 + + +waiting on router queue for slot.... +07:50:29 Sending to : +07:50:29 ============================================================================ +07:50:29 ============================================================================ +07:50:29 Slot Id : <422> +07:50:29 Transaction Type : RESPONSE +07:50:29 Received From : +07:50:29 ============================================================================ +07:50:29 FNo. Len. Field Value +07:50:29 ============================================================================ +07:50:29 [ 1] [ 4] [0810] +07:50:29 [ 7] [ 10] [0320124937] +07:50:29 [ 11] [ 6] [155259] +07:50:29 [ 39] [ 2] [00] +07:50:29 [ 70] [ 3] [301] +07:50:29 ============================================================================ +07:50:29 Calculate Source COMM Id = 2 +07:50:29 ============================================================================ +07:50:29 + + +waiting on router queue for slot.... +07:50:38 ============================================================================ +07:50:38 Slot Id : <444> +07:50:38 Transaction Type : REQUEST +07:50:38 Received From : +07:50:38 ============================================================================ +07:50:38 FNo. Len. Field Value +07:50:38 ============================================================================ +07:50:38 [ 1] [ 4] [0200] +07:50:38 [ 2] [ 16] [6688990602699207] +07:50:38 [ 3] [ 6] [010000] +07:50:38 [ 4] [ 12] [000010000000] +07:50:38 [ 7] [ 10] [0320004946] +07:50:38 [ 11] [ 6] [266920] +07:50:38 [ 12] [ 6] [074946] +07:50:38 [ 13] [ 4] [0320] +07:50:38 [ 14] [ 4] [4310] +07:50:38 [ 15] [ 4] [0320] +07:50:38 [ 18] [ 4] [6011] +07:50:38 [ 19] [ 3] [418] +07:50:38 [ 22] [ 3] [021] +07:50:38 [ 25] [ 2] [01] +07:50:38 [ 28] [ 9] [D00002000] +07:50:38 [ 32] [ 6] [180893] +07:50:38 [ 35] [ 37] [6688990602699207=43100061920753900000] +07:50:38 [ 37] [ 12] [507900266920] +07:50:38 [ 41] [ 8] [0201ADD1] +07:50:38 [ 42] [ 15] [999999 ] +07:50:38 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +07:50:38 [ 49] [ 3] [418] +07:50:38 [ 52] [ 16] [D62FF0627ACDCE57] +07:50:38 ============================================================================ +07:50:38 + + +waiting on router queue for slot.... +07:50:38 Sending to : +07:50:38 ============================================================================ +07:50:38 Sending to : +07:50:38 ============================================================================ +07:50:39 ============================================================================ +07:50:39 Slot Id : <444> +07:50:39 Transaction Type : REQUEST +07:50:39 Received From : +07:50:39 ============================================================================ +07:50:39 FNo. Len. Field Value +07:50:39 ============================================================================ +07:50:39 [ 1] [ 4] [0200] +07:50:39 [ 2] [ 16] [6688990602699207] +07:50:39 [ 3] [ 6] [010000] +07:50:39 [ 4] [ 12] [000010000000] +07:50:39 [ 7] [ 10] [0320004946] +07:50:39 [ 11] [ 6] [266920] +07:50:39 [ 12] [ 6] [074946] +07:50:39 [ 13] [ 4] [0320] +07:50:39 [ 14] [ 4] [4310] +07:50:39 [ 15] [ 4] [0320] +07:50:39 [ 18] [ 4] [6011] +07:50:39 [ 19] [ 3] [418] +07:50:39 [ 22] [ 3] [021] +07:50:39 [ 25] [ 2] [01] +07:50:39 [ 28] [ 9] [D00002000] +07:50:39 [ 32] [ 6] [180893] +07:50:39 [ 35] [ 37] [6688990602699207=43100061920753900000] +07:50:39 [ 37] [ 12] [507900266920] +07:50:39 [ 41] [ 8] [0201ADD1] +07:50:39 [ 42] [ 15] [999999 ] +07:50:39 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +07:50:39 [ 49] [ 3] [418] +07:50:39 [ 52] [ 16] [D62FF0627ACDCE57] +07:50:39 ============================================================================ +07:50:39 + + +waiting on router queue for slot.... +07:50:39 Sending to : +07:50:39 ============================================================================ +07:50:39 ============================================================================ +07:50:39 Slot Id : <444> +07:50:39 Transaction Type : REQUEST +07:50:39 Received From : +07:50:39 ============================================================================ +07:50:39 FNo. Len. Field Value +07:50:39 ============================================================================ +07:50:39 [ 1] [ 4] [0200] +07:50:39 [ 2] [ 16] [6688990602699207] +07:50:39 [ 3] [ 6] [010000] +07:50:39 [ 4] [ 12] [000010000000] +07:50:39 [ 7] [ 10] [0320004946] +07:50:39 [ 11] [ 6] [266920] +07:50:39 [ 12] [ 6] [074946] +07:50:39 [ 13] [ 4] [0320] +07:50:39 [ 14] [ 4] [4310] +07:50:39 [ 15] [ 4] [0320] +07:50:39 [ 18] [ 4] [6011] +07:50:39 [ 19] [ 3] [418] +07:50:39 [ 22] [ 3] [021] +07:50:39 [ 25] [ 2] [01] +07:50:39 [ 28] [ 9] [D00002000] +07:50:39 [ 32] [ 6] [180893] +07:50:39 [ 35] [ 37] [6688990602699207=43100061920753900000] +07:50:39 [ 37] [ 12] [507900266920] +07:50:39 [ 41] [ 8] [0201ADD1] +07:50:39 [ 42] [ 15] [999999 ] +07:50:39 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +07:50:39 [ 49] [ 3] [418] +07:50:39 [ 52] [ 16] [5353C6D5E3323BD4] +07:50:39 ============================================================================ +07:50:39 + + +waiting on router queue for slot.... +07:50:39 Sending to : <0> +07:50:39 ============================================================================ +07:50:39 ============================================================================ +07:50:39 Slot Id : <444> +07:50:39 Transaction Type : RESPONSE +07:50:39 Received From : +07:50:39 ============================================================================ +07:50:39 FNo. Len. Field Value +07:50:39 ============================================================================ +07:50:39 [ 1] [ 4] [0210] +07:50:39 [ 2] [ 16] [6688990602699207] +07:50:39 [ 3] [ 6] [010000] +07:50:39 [ 4] [ 12] [000010000000] +07:50:39 [ 7] [ 10] [0320004946] +07:50:39 [ 11] [ 6] [266920] +07:50:39 [ 12] [ 6] [074946] +07:50:39 [ 13] [ 4] [0320] +07:50:39 [ 15] [ 4] [0320] +07:50:39 [ 18] [ 4] [6011] +07:50:39 [ 19] [ 3] [418] +07:50:39 [ 22] [ 3] [021] +07:50:39 [ 32] [ 6] [180893] +07:50:39 [ 35] [ 37] [6688990602699207=43100061920753900000] +07:50:39 [ 37] [ 12] [507900266920] +07:50:39 [ 39] [ 2] [14] +07:50:39 [ 41] [ 8] [0201ADD1] +07:50:39 [ 49] [ 3] [418] +07:50:39 ============================================================================ +07:50:39 Sending to : +07:50:39 ============================================================================ +07:50:39 + + +waiting on router queue for slot.... +07:50:40 ============================================================================ +07:50:40 Slot Id : <444> +07:50:40 Transaction Type : RESPONSE +07:50:40 Received From : +07:50:40 ============================================================================ +07:50:40 FNo. Len. Field Value +07:50:40 ============================================================================ +07:50:40 [ 1] [ 4] [0210] +07:50:40 [ 2] [ 16] [6688990602699207] +07:50:40 [ 3] [ 6] [010000] +07:50:40 [ 4] [ 12] [000010000000] +07:50:40 [ 7] [ 10] [0320004946] +07:50:40 [ 11] [ 6] [266920] +07:50:40 [ 12] [ 6] [074946] +07:50:40 [ 13] [ 4] [0320] +07:50:40 [ 15] [ 4] [0320] +07:50:40 [ 18] [ 4] [6011] +07:50:40 [ 19] [ 3] [418] +07:50:40 [ 22] [ 3] [021] +07:50:40 [ 32] [ 6] [180893] +07:50:40 [ 35] [ 37] [6688990602699207=43100061920753900000] +07:50:40 [ 37] [ 12] [507900266920] +07:50:40 [ 39] [ 2] [14] +07:50:40 [ 41] [ 8] [0201ADD1] +07:50:40 [ 49] [ 3] [418] +07:50:40 ============================================================================ +07:50:40 Calculate Source COMM Id = 2 +07:50:40 ============================================================================ +07:50:40 + + +waiting on router queue for slot.... +07:50:41 ============================================================================ +07:50:41 Slot Id : <465> +07:50:41 Transaction Type : REQUEST +07:50:41 Received From : +07:50:41 ============================================================================ +07:50:41 FNo. Len. Field Value +07:50:41 ============================================================================ +07:50:41 [ 1] [ 4] [0200] +07:50:41 [ 2] [ 16] [6213548000409183] +07:50:41 [ 3] [ 6] [300000] +07:50:41 [ 4] [ 12] [000000000000] +07:50:41 [ 7] [ 10] [0320074833] +07:50:41 [ 11] [ 6] [931014] +07:50:41 [ 12] [ 6] [074833] +07:50:41 [ 13] [ 4] [0320] +07:50:41 [ 15] [ 4] [0320] +07:50:41 [ 18] [ 4] [6011] +07:50:41 [ 19] [ 3] [418] +07:50:41 [ 22] [ 3] [021] +07:50:41 [ 25] [ 2] [01] +07:50:41 [ 28] [ 9] [D00000000] +07:50:41 [ 32] [ 6] [668899] +07:50:41 [ 35] [ 32] [6213548000409183=180612010918109] +07:50:41 [ 37] [ 12] [507901311928] +07:50:41 [ 41] [ 8] [03006005] +07:50:41 [ 42] [ 15] [APT ] +07:50:41 [ 43] [ 40] [ UNIVERSITY OF LAW LUANGPR] +07:50:41 [ 49] [ 3] [418] +07:50:41 [ 52] [ 16] [27DE34D3FEE9B3ED] +07:50:41 ============================================================================ +07:50:41 + + +waiting on router queue for slot.... +07:50:41 Sending to : +07:50:41 ============================================================================ +07:50:41 Sending to : +07:50:41 ============================================================================ +07:50:42 ============================================================================ +07:50:42 Slot Id : <421> +07:50:42 Transaction Type : REQUEST +07:50:42 Received From : +07:50:42 ============================================================================ +07:50:42 FNo. Len. Field Value +07:50:42 ============================================================================ +07:50:42 [ 1] [ 4] [0200] +07:50:42 [ 2] [ 16] [6688990108156603] +07:50:42 [ 3] [ 6] [302000] +07:50:42 [ 7] [ 10] [0320004949] +07:50:42 [ 11] [ 6] [266922] +07:50:42 [ 12] [ 6] [074949] +07:50:42 [ 13] [ 4] [0320] +07:50:42 [ 14] [ 4] [4405] +07:50:42 [ 15] [ 4] [0320] +07:50:42 [ 18] [ 4] [6011] +07:50:42 [ 19] [ 3] [418] +07:50:42 [ 22] [ 3] [021] +07:50:42 [ 25] [ 2] [01] +07:50:42 [ 32] [ 6] [180893] +07:50:42 [ 35] [ 37] [6688990108156603=44051231660304400000] +07:50:42 [ 37] [ 12] [507900266922] +07:50:42 [ 41] [ 8] [0522XYXH] +07:50:42 [ 42] [ 15] [999999 ] +07:50:42 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +07:50:42 [ 49] [ 3] [418] +07:50:42 [ 52] [ 16] [4706BB740D572A70] +07:50:42 ============================================================================ +07:50:42 + + +waiting on router queue for slot.... +07:50:42 Sending to : +07:50:42 ============================================================================ +07:50:42 Sending to : +07:50:42 ============================================================================ +07:50:42 ============================================================================ +07:50:42 Slot Id : <465> +07:50:42 Transaction Type : REQUEST +07:50:42 Received From : +07:50:42 ============================================================================ +07:50:42 FNo. Len. Field Value +07:50:42 ============================================================================ +07:50:42 [ 1] [ 4] [0200] +07:50:42 [ 2] [ 16] [6213548000409183] +07:50:42 [ 3] [ 6] [300000] +07:50:42 [ 4] [ 12] [000000000000] +07:50:42 [ 7] [ 10] [0320074833] +07:50:42 [ 11] [ 6] [931014] +07:50:42 [ 12] [ 6] [074833] +07:50:42 [ 13] [ 4] [0320] +07:50:42 [ 15] [ 4] [0320] +07:50:42 [ 18] [ 4] [6011] +07:50:42 [ 19] [ 3] [418] +07:50:42 [ 22] [ 3] [021] +07:50:42 [ 25] [ 2] [01] +07:50:42 [ 28] [ 9] [D00000000] +07:50:42 [ 32] [ 6] [668899] +07:50:42 [ 35] [ 32] [6213548000409183=180612010918109] +07:50:42 [ 37] [ 12] [507901311928] +07:50:42 [ 41] [ 8] [03006005] +07:50:42 [ 42] [ 15] [APT ] +07:50:42 [ 43] [ 40] [ UNIVERSITY OF LAW LUANGPR] +07:50:42 [ 49] [ 3] [418] +07:50:42 [ 52] [ 16] [27DE34D3FEE9B3ED] +07:50:42 ============================================================================ +07:50:42 + + +waiting on router queue for slot.... +07:50:42 Sending to : +07:50:42 ============================================================================ +07:50:42 ============================================================================ +07:50:42 Slot Id : <465> +07:50:42 Transaction Type : REQUEST +07:50:42 Received From : +07:50:42 ============================================================================ +07:50:42 FNo. Len. Field Value +07:50:42 ============================================================================ +07:50:42 [ 1] [ 4] [0200] +07:50:42 [ 2] [ 16] [6213548000409183] +07:50:42 [ 3] [ 6] [300000] +07:50:42 [ 4] [ 12] [000000000000] +07:50:42 [ 7] [ 10] [0320074833] +07:50:42 [ 11] [ 6] [931014] +07:50:42 [ 12] [ 6] [074833] +07:50:42 [ 13] [ 4] [0320] +07:50:42 [ 15] [ 4] [0320] +07:50:42 [ 18] [ 4] [6011] +07:50:42 [ 19] [ 3] [418] +07:50:42 [ 22] [ 3] [021] +07:50:42 [ 25] [ 2] [01] +07:50:42 [ 28] [ 9] [D00000000] +07:50:42 [ 32] [ 6] [668899] +07:50:42 [ 35] [ 32] [6213548000409183=180612010918109] +07:50:42 [ 37] [ 12] [507901311928] +07:50:42 [ 41] [ 8] [03006005] +07:50:42 [ 42] [ 15] [APT ] +07:50:42 [ 43] [ 40] [ UNIVERSITY OF LAW LUANGPR] +07:50:42 [ 49] [ 3] [418] +07:50:42 [ 52] [ 16] [7B24C0FD28CCB1B7] +07:50:42 ============================================================================ +07:50:42 + + +waiting on router queue for slot.... +07:50:42 Sending to : <0> +07:50:42 ============================================================================ +07:50:42 ============================================================================ +07:50:42 Slot Id : <421> +07:50:42 Transaction Type : REQUEST +07:50:42 Received From : +07:50:42 ============================================================================ +07:50:42 FNo. Len. Field Value +07:50:42 ============================================================================ +07:50:42 [ 1] [ 4] [0200] +07:50:42 [ 2] [ 16] [6688990108156603] +07:50:42 [ 3] [ 6] [302000] +07:50:42 [ 7] [ 10] [0320004949] +07:50:42 [ 11] [ 6] [266922] +07:50:42 [ 12] [ 6] [074949] +07:50:42 [ 13] [ 4] [0320] +07:50:42 [ 14] [ 4] [4405] +07:50:42 [ 15] [ 4] [0320] +07:50:42 [ 18] [ 4] [6011] +07:50:42 [ 19] [ 3] [418] +07:50:42 [ 22] [ 3] [021] +07:50:42 [ 25] [ 2] [01] +07:50:42 [ 32] [ 6] [180893] +07:50:42 [ 35] [ 37] [6688990108156603=44051231660304400000] +07:50:42 [ 37] [ 12] [507900266922] +07:50:42 [ 41] [ 8] [0522XYXH] +07:50:42 [ 42] [ 15] [999999 ] +07:50:42 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +07:50:42 [ 49] [ 3] [418] +07:50:42 [ 52] [ 16] [4706BB740D572A70] +07:50:42 ============================================================================ +07:50:42 + + +waiting on router queue for slot.... +07:50:42 Sending to : +07:50:42 ============================================================================ +07:50:42 ============================================================================ +07:50:42 Slot Id : <421> +07:50:42 Transaction Type : REQUEST +07:50:42 Received From : +07:50:42 ============================================================================ +07:50:42 FNo. Len. Field Value +07:50:42 ============================================================================ +07:50:42 [ 1] [ 4] [0200] +07:50:42 [ 2] [ 16] [6688990108156603] +07:50:42 [ 3] [ 6] [302000] +07:50:42 [ 7] [ 10] [0320004949] +07:50:42 [ 11] [ 6] [266922] +07:50:42 [ 12] [ 6] [074949] +07:50:42 [ 13] [ 4] [0320] +07:50:42 [ 14] [ 4] [4405] +07:50:42 [ 15] [ 4] [0320] +07:50:42 [ 18] [ 4] [6011] +07:50:42 [ 19] [ 3] [418] +07:50:42 [ 22] [ 3] [021] +07:50:42 [ 25] [ 2] [01] +07:50:42 [ 32] [ 6] [180893] +07:50:42 [ 35] [ 37] [6688990108156603=44051231660304400000] +07:50:42 [ 37] [ 12] [507900266922] +07:50:42 [ 41] [ 8] [0522XYXH] +07:50:42 [ 42] [ 15] [999999 ] +07:50:42 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +07:50:42 [ 49] [ 3] [418] +07:50:42 [ 52] [ 16] [1E45422942349127] +07:50:42 ============================================================================ +07:50:42 + + +waiting on router queue for slot.... +07:50:42 Sending to : <0> +07:50:42 ============================================================================ +07:50:43 ============================================================================ +07:50:43 Slot Id : <421> +07:50:43 Transaction Type : RESPONSE +07:50:43 Received From : +07:50:43 ============================================================================ +07:50:43 FNo. Len. Field Value +07:50:43 ============================================================================ +07:50:43 [ 1] [ 4] [0210] +07:50:43 [ 2] [ 16] [6688990108156603] +07:50:43 [ 3] [ 6] [302000] +07:50:43 [ 4] [ 12] [000000000000] +07:50:43 [ 7] [ 10] [0320004949] +07:50:43 [ 11] [ 6] [266922] +07:50:43 [ 12] [ 6] [074949] +07:50:43 [ 13] [ 4] [0320] +07:50:43 [ 15] [ 4] [0320] +07:50:43 [ 18] [ 4] [6011] +07:50:43 [ 19] [ 3] [418] +07:50:43 [ 22] [ 3] [021] +07:50:43 [ 32] [ 6] [180893] +07:50:43 [ 35] [ 37] [6688990108156603=44051231660304400000] +07:50:43 [ 37] [ 12] [507900266922] +07:50:43 [ 39] [ 2] [14] +07:50:43 [ 41] [ 8] [0522XYXH] +07:50:43 [ 49] [ 3] [418] +07:50:43 ============================================================================ +07:50:43 Sending to : +07:50:43 ============================================================================ +07:50:43 + + +waiting on router queue for slot.... +07:50:43 ============================================================================ +07:50:43 Slot Id : <465> +07:50:43 Transaction Type : RESPONSE +07:50:43 Received From : +07:50:43 ============================================================================ +07:50:43 FNo. Len. Field Value +07:50:43 ============================================================================ +07:50:43 [ 1] [ 4] [0210] +07:50:43 [ 2] [ 16] [6213548000409183] +07:50:43 [ 3] [ 6] [300000] +07:50:43 [ 4] [ 12] [000000000000] +07:50:43 [ 7] [ 10] [0320074833] +07:50:43 [ 11] [ 6] [931014] +07:50:43 [ 12] [ 6] [074833] +07:50:43 [ 13] [ 4] [0320] +07:50:43 [ 15] [ 4] [0320] +07:50:43 [ 18] [ 4] [6011] +07:50:43 [ 19] [ 3] [418] +07:50:43 [ 32] [ 6] [668899] +07:50:43 [ 35] [ 32] [6213548000409183=180612010918109] +07:50:43 [ 37] [ 12] [507901311928] +07:50:43 [ 38] [ 6] [520906] +07:50:43 [ 39] [ 2] [00] +07:50:43 [ 41] [ 8] [03006005] +07:50:43 [ 49] [ 3] [418] +07:50:43 [ 54] [ 40] [0001418C0000126214390002418C000012621439] +07:50:43 ============================================================================ +07:50:43 Sending to : +07:50:43 ============================================================================ +07:50:43 + + +waiting on router queue for slot.... +07:50:45 ============================================================================ +07:50:45 Slot Id : <421> +07:50:45 Transaction Type : RESPONSE +07:50:45 Received From : +07:50:45 ============================================================================ +07:50:45 FNo. Len. Field Value +07:50:45 ============================================================================ +07:50:45 [ 1] [ 4] [0210] +07:50:45 [ 2] [ 16] [6688990108156603] +07:50:45 [ 3] [ 6] [302000] +07:50:45 [ 4] [ 12] [000000000000] +07:50:45 [ 7] [ 10] [0320004949] +07:50:45 [ 11] [ 6] [266922] +07:50:45 [ 12] [ 6] [074949] +07:50:45 [ 13] [ 4] [0320] +07:50:45 [ 15] [ 4] [0320] +07:50:45 [ 18] [ 4] [6011] +07:50:45 [ 19] [ 3] [418] +07:50:45 [ 22] [ 3] [021] +07:50:45 [ 32] [ 6] [180893] +07:50:45 [ 35] [ 37] [6688990108156603=44051231660304400000] +07:50:45 [ 37] [ 12] [507900266922] +07:50:45 [ 39] [ 2] [14] +07:50:45 [ 41] [ 8] [0522XYXH] +07:50:45 [ 49] [ 3] [418] +07:50:45 ============================================================================ +07:50:45 Calculate Source COMM Id = 2 +07:50:45 ============================================================================ +07:50:45 + + +waiting on router queue for slot.... +07:50:46 ============================================================================ +07:50:46 Slot Id : <465> +07:50:46 Transaction Type : RESPONSE +07:50:46 Received From : +07:50:46 ============================================================================ +07:50:46 FNo. Len. Field Value +07:50:46 ============================================================================ +07:50:46 [ 1] [ 4] [0210] +07:50:46 [ 2] [ 16] [6213548000409183] +07:50:46 [ 3] [ 6] [300000] +07:50:46 [ 4] [ 12] [000000000000] +07:50:46 [ 7] [ 10] [0320074833] +07:50:46 [ 11] [ 6] [931014] +07:50:46 [ 12] [ 6] [074833] +07:50:46 [ 13] [ 4] [0320] +07:50:46 [ 15] [ 4] [0320] +07:50:46 [ 18] [ 4] [6011] +07:50:46 [ 19] [ 3] [418] +07:50:46 [ 32] [ 6] [668899] +07:50:46 [ 35] [ 32] [6213548000409183=180612010918109] +07:50:46 [ 37] [ 12] [507901311928] +07:50:46 [ 38] [ 6] [520906] +07:50:46 [ 39] [ 2] [00] +07:50:46 [ 41] [ 8] [03006005] +07:50:46 [ 49] [ 3] [418] +07:50:46 [ 54] [ 40] [0001418C0000126214390002418C000012621439] +07:50:46 ============================================================================ +07:50:46 Calculate Source COMM Id = 4 +07:50:46 ============================================================================ +07:50:46 + + +waiting on router queue for slot.... +07:50:46 ============================================================================ +07:50:46 Slot Id : <439> +07:50:46 Transaction Type : REQUEST +07:50:46 Received From : +07:50:46 ============================================================================ +07:50:46 FNo. Len. Field Value +07:50:46 ============================================================================ +07:50:46 [ 1] [ 4] [0800] +07:50:46 [ 2] [ 5] [02531] +07:50:46 [ 3] [ 6] [579078] +07:50:46 [ 7] [ 10] [0320005046] +07:50:46 [ 11] [ 6] [806867] +07:50:46 [ 15] [ 10] [0320005046] +07:50:46 [ 37] [ 11] [57907806867] +07:50:46 [ 70] [ 3] [001] +07:50:46 ============================================================================ +07:50:46 + + +waiting on router queue for slot.... +07:50:46 ============================================================================ +07:50:46 Slot Id : <439> +07:50:46 Transaction Type : RESPONSE +07:50:46 Received From : +07:50:46 ============================================================================ +07:50:46 FNo. Len. Field Value +07:50:46 ============================================================================ +07:50:46 [ 1] [ 4] [0810] +07:50:46 [ 7] [ 10] [0320005046] +07:50:46 [ 11] [ 6] [806867] +07:50:46 [ 15] [ 4] [0320] +07:50:46 [ 37] [ 12] [57907806867] +07:50:46 [ 39] [ 2] [00] +07:50:46 [ 70] [ 3] [001] +07:50:46 ============================================================================ +07:50:46 Sending to : +07:50:46 ============================================================================ +07:50:46 + + +waiting on router queue for slot.... +07:50:58 ============================================================================ +07:50:58 Slot Id : <458> +07:50:58 Transaction Type : REQUEST +07:50:58 Received From : +07:50:58 ============================================================================ +07:50:58 FNo. Len. Field Value +07:50:58 ============================================================================ +07:50:58 [ 1] [ 4] [0200] +07:50:58 [ 2] [ 16] [6213548000409183] +07:50:58 [ 3] [ 6] [301000] +07:50:58 [ 4] [ 12] [000000000000] +07:50:58 [ 7] [ 10] [0320074850] +07:50:58 [ 11] [ 6] [931027] +07:50:58 [ 12] [ 6] [074850] +07:50:58 [ 13] [ 4] [0320] +07:50:58 [ 15] [ 4] [0320] +07:50:58 [ 18] [ 4] [6011] +07:50:58 [ 19] [ 3] [418] +07:50:58 [ 22] [ 3] [021] +07:50:58 [ 25] [ 2] [01] +07:50:58 [ 28] [ 9] [D00000000] +07:50:58 [ 32] [ 6] [668899] +07:50:58 [ 35] [ 32] [6213548000409183=180612010918109] +07:50:58 [ 37] [ 12] [507901311929] +07:50:58 [ 41] [ 8] [03006005] +07:50:58 [ 42] [ 15] [APT ] +07:50:58 [ 43] [ 40] [ UNIVERSITY OF LAW LUANGPR] +07:50:58 [ 49] [ 3] [418] +07:50:58 [ 52] [ 16] [27DE34D3FEE9B3ED] +07:50:58 ============================================================================ +07:50:58 + + +waiting on router queue for slot.... +07:50:58 Sending to : +07:50:58 ============================================================================ +07:50:58 Sending to : +07:50:58 ============================================================================ +07:50:59 ============================================================================ +07:50:59 Slot Id : <458> +07:50:59 Transaction Type : REQUEST +07:50:59 Received From : +07:50:59 ============================================================================ +07:50:59 FNo. Len. Field Value +07:50:59 ============================================================================ +07:50:59 [ 1] [ 4] [0200] +07:50:59 [ 2] [ 16] [6213548000409183] +07:50:59 [ 3] [ 6] [301000] +07:50:59 [ 4] [ 12] [000000000000] +07:50:59 [ 7] [ 10] [0320074850] +07:50:59 [ 11] [ 6] [931027] +07:50:59 [ 12] [ 6] [074850] +07:50:59 [ 13] [ 4] [0320] +07:50:59 [ 15] [ 4] [0320] +07:50:59 [ 18] [ 4] [6011] +07:50:59 [ 19] [ 3] [418] +07:50:59 [ 22] [ 3] [021] +07:50:59 [ 25] [ 2] [01] +07:50:59 [ 28] [ 9] [D00000000] +07:50:59 [ 32] [ 6] [668899] +07:50:59 [ 35] [ 32] [6213548000409183=180612010918109] +07:50:59 [ 37] [ 12] [507901311929] +07:50:59 [ 41] [ 8] [03006005] +07:50:59 [ 42] [ 15] [APT ] +07:50:59 [ 43] [ 40] [ UNIVERSITY OF LAW LUANGPR] +07:50:59 [ 49] [ 3] [418] +07:50:59 [ 52] [ 16] [27DE34D3FEE9B3ED] +07:50:59 ============================================================================ +07:50:59 + + +waiting on router queue for slot.... +07:50:59 Sending to : +07:50:59 ============================================================================ +07:50:59 ============================================================================ +07:50:59 Slot Id : <458> +07:50:59 Transaction Type : REQUEST +07:50:59 Received From : +07:50:59 ============================================================================ +07:50:59 FNo. Len. Field Value +07:50:59 ============================================================================ +07:50:59 [ 1] [ 4] [0200] +07:50:59 [ 2] [ 16] [6213548000409183] +07:50:59 [ 3] [ 6] [301000] +07:50:59 [ 4] [ 12] [000000000000] +07:50:59 [ 7] [ 10] [0320074850] +07:50:59 [ 11] [ 6] [931027] +07:50:59 [ 12] [ 6] [074850] +07:50:59 [ 13] [ 4] [0320] +07:50:59 [ 15] [ 4] [0320] +07:50:59 [ 18] [ 4] [6011] +07:50:59 [ 19] [ 3] [418] +07:50:59 [ 22] [ 3] [021] +07:50:59 [ 25] [ 2] [01] +07:50:59 [ 28] [ 9] [D00000000] +07:50:59 [ 32] [ 6] [668899] +07:50:59 [ 35] [ 32] [6213548000409183=180612010918109] +07:50:59 [ 37] [ 12] [507901311929] +07:50:59 [ 41] [ 8] [03006005] +07:50:59 [ 42] [ 15] [APT ] +07:50:59 [ 43] [ 40] [ UNIVERSITY OF LAW LUANGPR] +07:50:59 [ 49] [ 3] [418] +07:50:59 [ 52] [ 16] [7B24C0FD28CCB1B7] +07:50:59 ============================================================================ +07:50:59 + + +waiting on router queue for slot.... +07:50:59 Sending to : <0> +07:50:59 ============================================================================ +07:50:59 ============================================================================ +07:50:59 Slot Id : <458> +07:50:59 Transaction Type : RESPONSE +07:50:59 Received From : +07:50:59 ============================================================================ +07:50:59 FNo. Len. Field Value +07:50:59 ============================================================================ +07:50:59 [ 1] [ 4] [0210] +07:50:59 [ 2] [ 16] [6213548000409183] +07:50:59 [ 3] [ 6] [301000] +07:50:59 [ 4] [ 12] [000000000000] +07:50:59 [ 7] [ 10] [0320074850] +07:50:59 [ 11] [ 6] [931027] +07:50:59 [ 12] [ 6] [074850] +07:50:59 [ 13] [ 4] [0320] +07:50:59 [ 15] [ 4] [0320] +07:50:59 [ 18] [ 4] [6011] +07:50:59 [ 19] [ 3] [418] +07:50:59 [ 32] [ 6] [668899] +07:50:59 [ 35] [ 32] [6213548000409183=180612010918109] +07:50:59 [ 37] [ 12] [507901311929] +07:50:59 [ 38] [ 6] [463035] +07:50:59 [ 39] [ 2] [00] +07:50:59 [ 41] [ 8] [03006005] +07:50:59 [ 49] [ 3] [418] +07:50:59 [ 54] [ 40] [1001418C0000126214391002418C000012621439] +07:50:59 ============================================================================ +07:50:59 Sending to : +07:50:59 ============================================================================ +07:50:59 + + +waiting on router queue for slot.... +07:50:59 ============================================================================ +07:50:59 Slot Id : <423> +07:50:59 Transaction Type : REQUEST +07:50:59 Received From : +07:50:59 ============================================================================ +07:50:59 FNo. Len. Field Value +07:50:59 ============================================================================ +07:50:59 [ 1] [ 4] [0800] +07:50:59 [ 7] [ 10] [0320125007] +07:50:59 [ 11] [ 6] [155260] +07:50:59 [ 70] [ 3] [301] +07:50:59 ============================================================================ +07:50:59 + + +waiting on router queue for slot.... +07:50:59 Sending to : +07:50:59 ============================================================================ +07:50:59 ============================================================================ +07:50:59 Slot Id : <423> +07:50:59 Transaction Type : RESPONSE +07:50:59 Received From : +07:50:59 ============================================================================ +07:50:59 FNo. Len. Field Value +07:50:59 ============================================================================ +07:50:59 [ 1] [ 4] [0810] +07:50:59 [ 7] [ 10] [0320125007] +07:50:59 [ 11] [ 6] [155260] +07:50:59 [ 39] [ 2] [00] +07:50:59 [ 70] [ 3] [301] +07:50:59 ============================================================================ +07:50:59 Calculate Source COMM Id = 2 +07:50:59 ============================================================================ +07:50:59 + + +waiting on router queue for slot.... +07:51:00 ============================================================================ +07:51:00 Slot Id : <458> +07:51:00 Transaction Type : RESPONSE +07:51:00 Received From : +07:51:00 ============================================================================ +07:51:00 FNo. Len. Field Value +07:51:00 ============================================================================ +07:51:00 [ 1] [ 4] [0210] +07:51:00 [ 2] [ 16] [6213548000409183] +07:51:00 [ 3] [ 6] [301000] +07:51:00 [ 4] [ 12] [000000000000] +07:51:00 [ 7] [ 10] [0320074850] +07:51:00 [ 11] [ 6] [931027] +07:51:00 [ 12] [ 6] [074850] +07:51:00 [ 13] [ 4] [0320] +07:51:00 [ 15] [ 4] [0320] +07:51:00 [ 18] [ 4] [6011] +07:51:00 [ 19] [ 3] [418] +07:51:00 [ 32] [ 6] [668899] +07:51:00 [ 35] [ 32] [6213548000409183=180612010918109] +07:51:00 [ 37] [ 12] [507901311929] +07:51:00 [ 38] [ 6] [463035] +07:51:00 [ 39] [ 2] [00] +07:51:00 [ 41] [ 8] [03006005] +07:51:00 [ 49] [ 3] [418] +07:51:00 [ 54] [ 40] [1001418C0000126214391002418C000012621439] +07:51:00 ============================================================================ +07:51:00 Calculate Source COMM Id = 4 +07:51:00 ============================================================================ +07:51:00 + + +waiting on router queue for slot.... +07:51:13 ============================================================================ +07:51:13 Slot Id : <466> +07:51:13 Transaction Type : REQUEST +07:51:13 Received From : +07:51:13 ============================================================================ +07:51:13 FNo. Len. Field Value +07:51:13 ============================================================================ +07:51:13 [ 1] [ 4] [0200] +07:51:13 [ 2] [ 16] [6688990108085000] +07:51:13 [ 3] [ 6] [010000] +07:51:13 [ 4] [ 12] [000010000000] +07:51:13 [ 7] [ 10] [0320075109] +07:51:13 [ 11] [ 6] [674719] +07:51:13 [ 12] [ 6] [075109] +07:51:13 [ 13] [ 4] [0320] +07:51:13 [ 15] [ 4] [0320] +07:51:13 [ 18] [ 4] [6011] +07:51:13 [ 22] [ 3] [900] +07:51:13 [ 25] [ 2] [02] +07:51:13 [ 28] [ 9] [D00002000] +07:51:13 [ 32] [ 6] [621354] +07:51:13 [ 35] [ 37] [6688990108085000=44041231500025400000] +07:51:13 [ 37] [ 12] [507903611561] +07:51:13 [ 41] [ 8] [16001400] +07:51:13 [ 42] [ 15] [NATIVE ] +07:51:13 [ 43] [ 40] [NOUL Xaythany LAO] +07:51:13 [ 49] [ 3] [418] +07:51:13 [ 52] [ 16] [06333BF02FEA14CB] +07:51:13 ============================================================================ +07:51:13 + + +waiting on router queue for slot.... +07:51:13 Sending to : +07:51:13 ============================================================================ +07:51:13 Sending to : +07:51:13 ============================================================================ +07:51:13 ============================================================================ +07:51:13 Slot Id : <466> +07:51:13 Transaction Type : REQUEST +07:51:13 Received From : +07:51:13 ============================================================================ +07:51:13 FNo. Len. Field Value +07:51:13 ============================================================================ +07:51:13 [ 1] [ 4] [0200] +07:51:13 [ 2] [ 16] [6688990108085000] +07:51:13 [ 3] [ 6] [010000] +07:51:13 [ 4] [ 12] [000010000000] +07:51:13 [ 7] [ 10] [0320075109] +07:51:13 [ 11] [ 6] [674719] +07:51:13 [ 12] [ 6] [075109] +07:51:13 [ 13] [ 4] [0320] +07:51:13 [ 15] [ 4] [0320] +07:51:13 [ 18] [ 4] [6011] +07:51:13 [ 22] [ 3] [900] +07:51:13 [ 25] [ 2] [02] +07:51:13 [ 28] [ 9] [D00002000] +07:51:13 [ 32] [ 6] [621354] +07:51:13 [ 35] [ 37] [6688990108085000=44041231500025400000] +07:51:13 [ 37] [ 12] [507903611561] +07:51:13 [ 41] [ 8] [16001400] +07:51:13 [ 42] [ 15] [NATIVE ] +07:51:13 [ 43] [ 40] [NOUL Xaythany LAO] +07:51:13 [ 49] [ 3] [418] +07:51:13 [ 52] [ 16] [06333BF02FEA14CB] +07:51:13 ============================================================================ +07:51:13 + + +waiting on router queue for slot.... +07:51:13 Sending to : +07:51:13 ============================================================================ +07:51:13 ============================================================================ +07:51:13 Slot Id : <466> +07:51:13 Transaction Type : REQUEST +07:51:13 Received From : +07:51:13 ============================================================================ +07:51:13 FNo. Len. Field Value +07:51:13 ============================================================================ +07:51:13 [ 1] [ 4] [0200] +07:51:13 [ 2] [ 16] [6688990108085000] +07:51:13 [ 3] [ 6] [010000] +07:51:13 [ 4] [ 12] [000010000000] +07:51:13 [ 7] [ 10] [0320075109] +07:51:13 [ 11] [ 6] [674719] +07:51:13 [ 12] [ 6] [075109] +07:51:13 [ 13] [ 4] [0320] +07:51:13 [ 15] [ 4] [0320] +07:51:13 [ 18] [ 4] [6011] +07:51:13 [ 22] [ 3] [900] +07:51:13 [ 25] [ 2] [02] +07:51:13 [ 28] [ 9] [D00002000] +07:51:13 [ 32] [ 6] [621354] +07:51:13 [ 35] [ 37] [6688990108085000=44041231500025400000] +07:51:13 [ 37] [ 12] [507903611561] +07:51:13 [ 41] [ 8] [16001400] +07:51:13 [ 42] [ 15] [NATIVE ] +07:51:13 [ 43] [ 40] [NOUL Xaythany LAO] +07:51:13 [ 49] [ 3] [418] +07:51:13 [ 52] [ 16] [E1062DCBAD273B63] +07:51:13 ============================================================================ +07:51:13 + + +waiting on router queue for slot.... +07:51:13 Sending to : <4> +07:51:13 ============================================================================ +07:51:15 ============================================================================ +07:51:15 Slot Id : <466> +07:51:15 Transaction Type : RESPONSE +07:51:15 Received From : +07:51:15 ============================================================================ +07:51:15 FNo. Len. Field Value +07:51:15 ============================================================================ +07:51:15 [ 1] [ 4] [0210] +07:51:15 [ 2] [ 16] [6688990108085000] +07:51:15 [ 3] [ 6] [010000] +07:51:15 [ 4] [ 12] [000010000000] +07:51:15 [ 11] [ 6] [674719] +07:51:15 [ 12] [ 6] [075109] +07:51:15 [ 15] [ 4] [0320] +07:51:15 [ 18] [ 4] [6011] +07:51:15 [ 32] [ 6] [621354] +07:51:15 [ 35] [ 37] [6688990108085000=44041231500025400000] +07:51:15 [ 37] [ 12] [507903611561] +07:51:15 [ 38] [ 6] [464271] +07:51:15 [ 39] [ 2] [00] +07:51:15 [ 41] [ 8] [16001400] +07:51:15 [ 49] [ 3] [418] +07:51:15 [ 54] [ 20] [0002418C000168800196] +07:51:15 ============================================================================ +07:51:15 Sending to : +07:51:15 ============================================================================ +07:51:15 + + +waiting on router queue for slot.... +07:51:15 ============================================================================ +07:51:15 Slot Id : <436> +07:51:15 Transaction Type : REQUEST +07:51:15 Received From : +07:51:15 ============================================================================ +07:51:15 FNo. Len. Field Value +07:51:15 ============================================================================ +07:51:15 [ 1] [ 4] [0800] +07:51:15 [ 7] [ 10] [0320125023] +07:51:15 [ 11] [ 6] [155261] +07:51:15 [ 70] [ 3] [301] +07:51:15 ============================================================================ +07:51:15 + + +waiting on router queue for slot.... +07:51:15 Sending to : +07:51:15 ============================================================================ +07:51:15 ============================================================================ +07:51:15 Slot Id : <436> +07:51:15 Transaction Type : RESPONSE +07:51:15 Received From : +07:51:15 ============================================================================ +07:51:15 FNo. Len. Field Value +07:51:15 ============================================================================ +07:51:15 [ 1] [ 4] [0810] +07:51:15 [ 7] [ 10] [0320125023] +07:51:15 [ 11] [ 6] [155261] +07:51:15 [ 39] [ 2] [00] +07:51:15 [ 70] [ 3] [301] +07:51:15 ============================================================================ +07:51:15 Calculate Source COMM Id = 2 +07:51:15 ============================================================================ +07:51:15 + + +waiting on router queue for slot.... +07:51:16 ============================================================================ +07:51:16 Slot Id : <466> +07:51:16 Transaction Type : RESPONSE +07:51:16 Received From : +07:51:16 ============================================================================ +07:51:16 FNo. Len. Field Value +07:51:16 ============================================================================ +07:51:16 [ 1] [ 4] [0210] +07:51:16 [ 2] [ 16] [6688990108085000] +07:51:16 [ 3] [ 6] [010000] +07:51:16 [ 4] [ 12] [000010000000] +07:51:16 [ 11] [ 6] [674719] +07:51:16 [ 12] [ 6] [075109] +07:51:16 [ 15] [ 4] [0320] +07:51:16 [ 18] [ 4] [6011] +07:51:16 [ 32] [ 6] [621354] +07:51:16 [ 35] [ 37] [6688990108085000=44041231500025400000] +07:51:16 [ 37] [ 12] [507903611561] +07:51:16 [ 38] [ 6] [464271] +07:51:16 [ 39] [ 2] [00] +07:51:16 [ 41] [ 8] [16001400] +07:51:16 [ 49] [ 3] [418] +07:51:16 [ 54] [ 20] [0002418C000168800196] +07:51:16 ============================================================================ +07:51:16 Calculate Source COMM Id = 0 +07:51:16 ============================================================================ +07:51:16 + + +waiting on router queue for slot.... +07:51:18 ============================================================================ +07:51:18 Slot Id : <459> +07:51:18 Transaction Type : REQUEST +07:51:18 Received From : +07:51:18 ============================================================================ +07:51:18 FNo. Len. Field Value +07:51:18 ============================================================================ +07:51:18 [ 1] [ 4] [0800] +07:51:18 [ 7] [ 10] [0320150308] +07:51:18 [ 11] [ 6] [080308] +07:51:18 [ 37] [ 12] [57908080308] +07:51:18 [ 70] [ 3] [301] +07:51:18 ============================================================================ +07:51:18 + + +waiting on router queue for slot.... +07:51:18 Sending to : +07:51:18 ============================================================================ +07:51:18 ============================================================================ +07:51:18 Slot Id : <459> +07:51:18 Transaction Type : RESPONSE +07:51:18 Received From : +07:51:18 ============================================================================ +07:51:18 FNo. Len. Field Value +07:51:18 ============================================================================ +07:51:18 [ 1] [ 4] [0810] +07:51:18 [ 7] [ 10] [0320150308] +07:51:18 [ 11] [ 6] [080308] +07:51:18 [ 37] [ 12] [579080803080] +07:51:18 [ 39] [ 2] [00] +07:51:18 [ 70] [ 3] [810] +07:51:18 ============================================================================ +07:51:18 Calculate Source COMM Id = 6 +07:51:18 ============================================================================ +07:51:18 + + +waiting on router queue for slot.... +07:51:21 ============================================================================ +07:51:21 Slot Id : <475> +07:51:21 Transaction Type : REQUEST +07:51:21 Received From : +07:51:21 ============================================================================ +07:51:21 FNo. Len. Field Value +07:51:21 ============================================================================ +07:51:21 [ 1] [ 4] [0800] +07:51:21 [ 7] [ 10] [0320004912] +07:51:21 [ 11] [ 6] [016437] +07:51:21 [ 37] [ 12] [57907016437] +07:51:21 [ 70] [ 3] [301] +07:51:21 ============================================================================ +07:51:21 + + +waiting on router queue for slot.... +07:51:21 Sending to : +07:51:21 ============================================================================ +07:51:21 ============================================================================ +07:51:21 Slot Id : <475> +07:51:21 Transaction Type : RESPONSE +07:51:21 Received From : +07:51:21 ============================================================================ +07:51:21 FNo. Len. Field Value +07:51:21 ============================================================================ +07:51:21 [ 1] [ 4] [0810] +07:51:21 [ 7] [ 10] [0320004912] +07:51:21 [ 11] [ 6] [016437] +07:51:21 [ 37] [ 12] [579070164370] +07:51:21 [ 39] [ 2] [00] +07:51:21 [ 70] [ 3] [810] +07:51:21 ============================================================================ +07:51:21 Calculate Source COMM Id = 4 +07:51:21 ============================================================================ +07:51:21 + + +waiting on router queue for slot.... +07:51:27 ============================================================================ +07:51:27 Slot Id : <468> +07:51:27 Transaction Type : REQUEST +07:51:27 Received From : +07:51:27 ============================================================================ +07:51:27 FNo. Len. Field Value +07:51:27 ============================================================================ +07:51:27 [ 1] [ 4] [0200] +07:51:27 [ 2] [ 16] [6213544002161690] +07:51:27 [ 3] [ 6] [300000] +07:51:27 [ 4] [ 12] [000000000000] +07:51:27 [ 7] [ 10] [0320074919] +07:51:27 [ 11] [ 6] [931053] +07:51:27 [ 12] [ 6] [074919] +07:51:27 [ 13] [ 4] [0320] +07:51:27 [ 15] [ 4] [0320] +07:51:27 [ 18] [ 4] [6011] +07:51:27 [ 19] [ 3] [418] +07:51:27 [ 22] [ 3] [021] +07:51:27 [ 25] [ 2] [01] +07:51:27 [ 28] [ 9] [D00000000] +07:51:27 [ 32] [ 6] [668899] +07:51:27 [ 35] [ 32] [6213544002161690=491212016169205] +07:51:27 [ 37] [ 12] [507901963360] +07:51:27 [ 41] [ 8] [03020019] +07:51:27 [ 42] [ 15] [APT ] +07:51:27 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +07:51:27 [ 49] [ 3] [418] +07:51:27 [ 52] [ 16] [93F89C198D276EAA] +07:51:27 ============================================================================ +07:51:27 + + +waiting on router queue for slot.... +07:51:27 Sending to : +07:51:27 ============================================================================ +07:51:27 Sending to : +07:51:27 ============================================================================ +07:51:28 ============================================================================ +07:51:28 Slot Id : <468> +07:51:28 Transaction Type : REQUEST +07:51:28 Received From : +07:51:28 ============================================================================ +07:51:28 FNo. Len. Field Value +07:51:28 ============================================================================ +07:51:28 [ 1] [ 4] [0200] +07:51:28 [ 2] [ 16] [6213544002161690] +07:51:28 [ 3] [ 6] [300000] +07:51:28 [ 4] [ 12] [000000000000] +07:51:28 [ 7] [ 10] [0320074919] +07:51:28 [ 11] [ 6] [931053] +07:51:28 [ 12] [ 6] [074919] +07:51:28 [ 13] [ 4] [0320] +07:51:28 [ 15] [ 4] [0320] +07:51:28 [ 18] [ 4] [6011] +07:51:28 [ 19] [ 3] [418] +07:51:28 [ 22] [ 3] [021] +07:51:28 [ 25] [ 2] [01] +07:51:28 [ 28] [ 9] [D00000000] +07:51:28 [ 32] [ 6] [668899] +07:51:28 [ 35] [ 32] [6213544002161690=491212016169205] +07:51:28 [ 37] [ 12] [507901963360] +07:51:28 [ 41] [ 8] [03020019] +07:51:28 [ 42] [ 15] [APT ] +07:51:28 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +07:51:28 [ 49] [ 3] [418] +07:51:28 [ 52] [ 16] [93F89C198D276EAA] +07:51:28 ============================================================================ +07:51:28 + + +waiting on router queue for slot.... +07:51:28 Sending to : +07:51:28 ============================================================================ +07:51:28 ============================================================================ +07:51:28 Slot Id : <468> +07:51:28 Transaction Type : REQUEST +07:51:28 Received From : +07:51:28 ============================================================================ +07:51:28 FNo. Len. Field Value +07:51:28 ============================================================================ +07:51:28 [ 1] [ 4] [0200] +07:51:28 [ 2] [ 16] [6213544002161690] +07:51:28 [ 3] [ 6] [300000] +07:51:28 [ 4] [ 12] [000000000000] +07:51:28 [ 7] [ 10] [0320074919] +07:51:28 [ 11] [ 6] [931053] +07:51:28 [ 12] [ 6] [074919] +07:51:28 [ 13] [ 4] [0320] +07:51:28 [ 15] [ 4] [0320] +07:51:28 [ 18] [ 4] [6011] +07:51:28 [ 19] [ 3] [418] +07:51:28 [ 22] [ 3] [021] +07:51:28 [ 25] [ 2] [01] +07:51:28 [ 28] [ 9] [D00000000] +07:51:28 [ 32] [ 6] [668899] +07:51:28 [ 35] [ 32] [6213544002161690=491212016169205] +07:51:28 [ 37] [ 12] [507901963360] +07:51:28 [ 41] [ 8] [03020019] +07:51:28 [ 42] [ 15] [APT ] +07:51:28 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +07:51:28 [ 49] [ 3] [418] +07:51:28 [ 52] [ 16] [F34F163BEE7DE262] +07:51:28 ============================================================================ +07:51:28 + + +waiting on router queue for slot.... +07:51:28 Sending to : <0> +07:51:28 ============================================================================ +07:51:28 ============================================================================ +07:51:28 Slot Id : <468> +07:51:28 Transaction Type : RESPONSE +07:51:28 Received From : +07:51:28 ============================================================================ +07:51:28 FNo. Len. Field Value +07:51:28 ============================================================================ +07:51:28 [ 1] [ 4] [0210] +07:51:28 [ 2] [ 16] [6213544002161690] +07:51:28 [ 3] [ 6] [300000] +07:51:28 [ 4] [ 12] [000000000000] +07:51:28 [ 7] [ 10] [0320074919] +07:51:28 [ 11] [ 6] [931053] +07:51:28 [ 12] [ 6] [074919] +07:51:28 [ 13] [ 4] [0320] +07:51:28 [ 15] [ 4] [0320] +07:51:28 [ 18] [ 4] [6011] +07:51:28 [ 19] [ 3] [418] +07:51:28 [ 32] [ 6] [668899] +07:51:28 [ 35] [ 32] [6213544002161690=491212016169205] +07:51:28 [ 37] [ 12] [507901963360] +07:51:28 [ 38] [ 6] [569212] +07:51:28 [ 39] [ 2] [00] +07:51:28 [ 41] [ 8] [03020019] +07:51:28 [ 49] [ 3] [418] +07:51:28 [ 54] [ 40] [0001418C0007631911120002418C000763191112] +07:51:28 ============================================================================ +07:51:28 Sending to : +07:51:28 ============================================================================ +07:51:28 + + +waiting on router queue for slot.... +07:51:30 ============================================================================ +07:51:30 Slot Id : <468> +07:51:30 Transaction Type : RESPONSE +07:51:30 Received From : +07:51:30 ============================================================================ +07:51:30 FNo. Len. Field Value +07:51:30 ============================================================================ +07:51:30 [ 1] [ 4] [0210] +07:51:30 [ 2] [ 16] [6213544002161690] +07:51:30 [ 3] [ 6] [300000] +07:51:30 [ 4] [ 12] [000000000000] +07:51:30 [ 7] [ 10] [0320074919] +07:51:30 [ 11] [ 6] [931053] +07:51:30 [ 12] [ 6] [074919] +07:51:30 [ 13] [ 4] [0320] +07:51:30 [ 15] [ 4] [0320] +07:51:30 [ 18] [ 4] [6011] +07:51:30 [ 19] [ 3] [418] +07:51:30 [ 32] [ 6] [668899] +07:51:30 [ 35] [ 32] [6213544002161690=491212016169205] +07:51:30 [ 37] [ 12] [507901963360] +07:51:30 [ 38] [ 6] [569212] +07:51:30 [ 39] [ 2] [00] +07:51:30 [ 41] [ 8] [03020019] +07:51:30 [ 49] [ 3] [418] +07:51:30 [ 54] [ 40] [0001418C0007631911120002418C000763191112] +07:51:30 ============================================================================ +07:51:30 Calculate Source COMM Id = 4 +07:51:30 ============================================================================ +07:51:30 + + +waiting on router queue for slot.... +07:51:31 ============================================================================ +07:51:31 Slot Id : <452> +07:51:31 Transaction Type : REQUEST +07:51:31 Received From : +07:51:31 ============================================================================ +07:51:31 FNo. Len. Field Value +07:51:31 ============================================================================ +07:51:31 [ 1] [ 4] [0800] +07:51:31 [ 7] [ 10] [0320125039] +07:51:31 [ 11] [ 6] [155262] +07:51:31 [ 70] [ 3] [301] +07:51:31 ============================================================================ +07:51:31 + + +waiting on router queue for slot.... +07:51:31 Sending to : +07:51:31 ============================================================================ +07:51:31 ============================================================================ +07:51:31 Slot Id : <452> +07:51:31 Transaction Type : RESPONSE +07:51:31 Received From : +07:51:31 ============================================================================ +07:51:31 FNo. Len. Field Value +07:51:31 ============================================================================ +07:51:31 [ 1] [ 4] [0810] +07:51:31 [ 7] [ 10] [0320125039] +07:51:31 [ 11] [ 6] [155262] +07:51:31 [ 39] [ 2] [00] +07:51:31 [ 70] [ 3] [301] +07:51:31 ============================================================================ +07:51:31 Calculate Source COMM Id = 2 +07:51:31 ============================================================================ +07:51:31 + + +waiting on router queue for slot.... +07:51:32 ============================================================================ +07:51:32 Slot Id : <449> +07:51:32 Transaction Type : REQUEST +07:51:32 Received From : +07:51:32 ============================================================================ +07:51:32 FNo. Len. Field Value +07:51:32 ============================================================================ +07:51:32 [ 1] [ 4] [0200] +07:51:32 [ 2] [ 16] [1989010003137322] +07:51:32 [ 3] [ 6] [010000] +07:51:32 [ 4] [ 12] [000010000000] +07:51:32 [ 7] [ 10] [0320075129] +07:51:32 [ 11] [ 6] [674792] +07:51:32 [ 12] [ 6] [075129] +07:51:32 [ 13] [ 4] [0320] +07:51:32 [ 15] [ 4] [0320] +07:51:32 [ 18] [ 4] [6011] +07:51:32 [ 22] [ 3] [900] +07:51:32 [ 25] [ 2] [02] +07:51:32 [ 28] [ 9] [D00002000] +07:51:32 [ 32] [ 6] [621354] +07:51:32 [ 35] [ 32] [1989010003137322=000010100000163] +07:51:32 [ 37] [ 12] [507904539409] +07:51:32 [ 41] [ 8] [02001600] +07:51:32 [ 42] [ 15] [NATIVE ] +07:51:32 [ 43] [ 40] [Thakek Hospital Thakek LAO] +07:51:32 [ 49] [ 3] [418] +07:51:32 [ 52] [ 16] [AD1FB88A0F124017] +07:51:32 ============================================================================ +07:51:32 + + +waiting on router queue for slot.... +07:51:32 Sending to : +07:51:32 ============================================================================ +07:51:32 Sending to : +07:51:32 ============================================================================ +07:51:33 ============================================================================ +07:51:33 Slot Id : <449> +07:51:33 Transaction Type : REQUEST +07:51:33 Received From : +07:51:33 ============================================================================ +07:51:33 FNo. Len. Field Value +07:51:33 ============================================================================ +07:51:33 [ 1] [ 4] [0200] +07:51:33 [ 2] [ 16] [1989010003137322] +07:51:33 [ 3] [ 6] [010000] +07:51:33 [ 4] [ 12] [000010000000] +07:51:33 [ 7] [ 10] [0320075129] +07:51:33 [ 11] [ 6] [674792] +07:51:33 [ 12] [ 6] [075129] +07:51:33 [ 13] [ 4] [0320] +07:51:33 [ 15] [ 4] [0320] +07:51:33 [ 18] [ 4] [6011] +07:51:33 [ 22] [ 3] [900] +07:51:33 [ 25] [ 2] [02] +07:51:33 [ 28] [ 9] [D00002000] +07:51:33 [ 32] [ 6] [621354] +07:51:33 [ 35] [ 32] [1989010003137322=000010100000163] +07:51:33 [ 37] [ 12] [507904539409] +07:51:33 [ 41] [ 8] [02001600] +07:51:33 [ 42] [ 15] [NATIVE ] +07:51:33 [ 43] [ 40] [Thakek Hospital Thakek LAO] +07:51:33 [ 49] [ 3] [418] +07:51:33 [ 52] [ 16] [AD1FB88A0F124017] +07:51:33 ============================================================================ +07:51:33 + + +waiting on router queue for slot.... +07:51:33 Sending to : +07:51:33 ============================================================================ +07:51:33 ============================================================================ +07:51:33 Slot Id : <449> +07:51:33 Transaction Type : REQUEST +07:51:33 Received From : +07:51:33 ============================================================================ +07:51:33 FNo. Len. Field Value +07:51:33 ============================================================================ +07:51:33 [ 1] [ 4] [0200] +07:51:33 [ 2] [ 16] [1989010003137322] +07:51:33 [ 3] [ 6] [010000] +07:51:33 [ 4] [ 12] [000010000000] +07:51:33 [ 7] [ 10] [0320075129] +07:51:33 [ 11] [ 6] [674792] +07:51:33 [ 12] [ 6] [075129] +07:51:33 [ 13] [ 4] [0320] +07:51:33 [ 15] [ 4] [0320] +07:51:33 [ 18] [ 4] [6011] +07:51:33 [ 22] [ 3] [900] +07:51:33 [ 25] [ 2] [02] +07:51:33 [ 28] [ 9] [D00002000] +07:51:33 [ 32] [ 6] [621354] +07:51:33 [ 35] [ 32] [1989010003137322=000010100000163] +07:51:33 [ 37] [ 12] [507904539409] +07:51:33 [ 41] [ 8] [02001600] +07:51:33 [ 42] [ 15] [NATIVE ] +07:51:33 [ 43] [ 40] [Thakek Hospital Thakek LAO] +07:51:33 [ 49] [ 3] [418] +07:51:33 [ 52] [ 16] [C5BE07529E161F39] +07:51:33 ============================================================================ +07:51:33 + + +waiting on router queue for slot.... +07:51:33 Sending to : <5> +07:51:33 ============================================================================ +07:51:38 ============================================================================ +07:51:38 Slot Id : <449> +07:51:38 Transaction Type : RESPONSE +07:51:38 Received From : +07:51:38 ============================================================================ +07:51:38 FNo. Len. Field Value +07:51:38 ============================================================================ +07:51:38 [ 1] [ 4] [0210] +07:51:38 [ 2] [ 16] [1989010003137322] +07:51:38 [ 3] [ 6] [010000] +07:51:38 [ 4] [ 12] [000010000000] +07:51:38 [ 7] [ 10] [0320075129] +07:51:38 [ 11] [ 6] [674792] +07:51:38 [ 12] [ 6] [075129] +07:51:38 [ 13] [ 4] [0320] +07:51:38 [ 15] [ 4] [0320] +07:51:38 [ 18] [ 4] [6011] +07:51:38 [ 19] [ 3] [418] +07:51:38 [ 32] [ 6] [621354] +07:51:38 [ 37] [ 12] [507904539409] +07:51:38 [ 38] [ 6] [188037] +07:51:38 [ 39] [ 2] [00] +07:51:38 [ 41] [ 8] [02001600] +07:51:38 [ 49] [ 3] [418] +07:51:38 [ 54] [ 20] [0001418C000025265000] +07:51:38 ============================================================================ +07:51:38 Sending to : +07:51:38 ============================================================================ +07:51:38 + + +waiting on router queue for slot.... +07:51:39 ============================================================================ +07:51:39 Slot Id : <455> +07:51:39 Transaction Type : REQUEST +07:51:39 Received From : +07:51:39 ============================================================================ +07:51:39 FNo. Len. Field Value +07:51:39 ============================================================================ +07:51:39 [ 1] [ 4] [0200] +07:51:39 [ 2] [ 16] [6213544001849113] +07:51:39 [ 3] [ 6] [010000] +07:51:39 [ 4] [ 12] [000005000000] +07:51:39 [ 7] [ 10] [0320074931] +07:51:39 [ 11] [ 6] [931062] +07:51:39 [ 12] [ 6] [074931] +07:51:39 [ 13] [ 4] [0320] +07:51:39 [ 15] [ 4] [0320] +07:51:39 [ 18] [ 4] [6011] +07:51:39 [ 19] [ 3] [418] +07:51:39 [ 22] [ 3] [021] +07:51:39 [ 25] [ 2] [01] +07:51:39 [ 28] [ 9] [D00002000] +07:51:39 [ 32] [ 6] [668899] +07:51:39 [ 35] [ 32] [6213544001849113=491212014911911] +07:51:39 [ 37] [ 12] [507902678600] +07:51:39 [ 41] [ 8] [03020035] +07:51:39 [ 42] [ 15] [APT ] +07:51:39 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +07:51:39 [ 49] [ 3] [418] +07:51:39 [ 52] [ 16] [C5E4E2AA1AA56189] +07:51:39 ============================================================================ +07:51:39 + + +waiting on router queue for slot.... +07:51:39 Sending to : +07:51:39 ============================================================================ +07:51:39 Sending to : +07:51:39 ============================================================================ +07:51:40 ============================================================================ +07:51:40 Slot Id : <455> +07:51:40 Transaction Type : REQUEST +07:51:40 Received From : +07:51:40 ============================================================================ +07:51:40 FNo. Len. Field Value +07:51:40 ============================================================================ +07:51:40 [ 1] [ 4] [0200] +07:51:40 [ 2] [ 16] [6213544001849113] +07:51:40 [ 3] [ 6] [010000] +07:51:40 [ 4] [ 12] [000005000000] +07:51:40 [ 7] [ 10] [0320074931] +07:51:40 [ 11] [ 6] [931062] +07:51:40 [ 12] [ 6] [074931] +07:51:40 [ 13] [ 4] [0320] +07:51:40 [ 15] [ 4] [0320] +07:51:40 [ 18] [ 4] [6011] +07:51:40 [ 19] [ 3] [418] +07:51:40 [ 22] [ 3] [021] +07:51:40 [ 25] [ 2] [01] +07:51:40 [ 28] [ 9] [D00002000] +07:51:40 [ 32] [ 6] [668899] +07:51:40 [ 35] [ 32] [6213544001849113=491212014911911] +07:51:40 [ 37] [ 12] [507902678600] +07:51:40 [ 41] [ 8] [03020035] +07:51:40 [ 42] [ 15] [APT ] +07:51:40 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +07:51:40 [ 49] [ 3] [418] +07:51:40 [ 52] [ 16] [C5E4E2AA1AA56189] +07:51:40 ============================================================================ +07:51:40 + + +waiting on router queue for slot.... +07:51:40 Sending to : +07:51:40 ============================================================================ +07:51:40 ============================================================================ +07:51:40 Slot Id : <455> +07:51:40 Transaction Type : REQUEST +07:51:40 Received From : +07:51:40 ============================================================================ +07:51:40 FNo. Len. Field Value +07:51:40 ============================================================================ +07:51:40 [ 1] [ 4] [0200] +07:51:40 [ 2] [ 16] [6213544001849113] +07:51:40 [ 3] [ 6] [010000] +07:51:40 [ 4] [ 12] [000005000000] +07:51:40 [ 7] [ 10] [0320074931] +07:51:40 [ 11] [ 6] [931062] +07:51:40 [ 12] [ 6] [074931] +07:51:40 [ 13] [ 4] [0320] +07:51:40 [ 15] [ 4] [0320] +07:51:40 [ 18] [ 4] [6011] +07:51:40 [ 19] [ 3] [418] +07:51:40 [ 22] [ 3] [021] +07:51:40 [ 25] [ 2] [01] +07:51:40 [ 28] [ 9] [D00002000] +07:51:40 [ 32] [ 6] [668899] +07:51:40 [ 35] [ 32] [6213544001849113=491212014911911] +07:51:40 [ 37] [ 12] [507902678600] +07:51:40 [ 41] [ 8] [03020035] +07:51:40 [ 42] [ 15] [APT ] +07:51:40 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +07:51:40 [ 49] [ 3] [418] +07:51:40 [ 52] [ 16] [2042ABEC501A88E2] +07:51:40 ============================================================================ +07:51:40 + + +waiting on router queue for slot.... +07:51:40 Sending to : <0> +07:51:40 ============================================================================ +07:51:40 ============================================================================ +07:51:40 Slot Id : <449> +07:51:40 Transaction Type : RESPONSE +07:51:40 Received From : +07:51:40 ============================================================================ +07:51:40 FNo. Len. Field Value +07:51:40 ============================================================================ +07:51:40 [ 1] [ 4] [0210] +07:51:40 [ 2] [ 16] [1989010003137322] +07:51:40 [ 3] [ 6] [010000] +07:51:40 [ 4] [ 12] [000010000000] +07:51:40 [ 7] [ 10] [0320075129] +07:51:40 [ 11] [ 6] [674792] +07:51:40 [ 12] [ 6] [075129] +07:51:40 [ 13] [ 4] [0320] +07:51:40 [ 15] [ 4] [0320] +07:51:40 [ 18] [ 4] [6011] +07:51:40 [ 19] [ 3] [418] +07:51:40 [ 32] [ 6] [621354] +07:51:40 [ 37] [ 12] [507904539409] +07:51:40 [ 38] [ 6] [188037] +07:51:40 [ 39] [ 2] [00] +07:51:40 [ 41] [ 8] [02001600] +07:51:40 [ 49] [ 3] [418] +07:51:40 [ 54] [ 20] [0001418C000025265000] +07:51:40 ============================================================================ +07:51:40 Calculate Source COMM Id = 0 +07:51:40 ============================================================================ +07:51:40 + + +waiting on router queue for slot.... +07:51:40 ============================================================================ +07:51:40 Slot Id : <455> +07:51:40 Transaction Type : RESPONSE +07:51:40 Received From : +07:51:40 ============================================================================ +07:51:40 FNo. Len. Field Value +07:51:40 ============================================================================ +07:51:40 [ 1] [ 4] [0210] +07:51:40 [ 2] [ 16] [6213544001849113] +07:51:40 [ 3] [ 6] [010000] +07:51:40 [ 4] [ 12] [000005000000] +07:51:40 [ 7] [ 10] [0320074931] +07:51:40 [ 11] [ 6] [931062] +07:51:40 [ 12] [ 6] [074931] +07:51:40 [ 13] [ 4] [0320] +07:51:40 [ 15] [ 4] [0320] +07:51:40 [ 18] [ 4] [6011] +07:51:40 [ 19] [ 3] [418] +07:51:40 [ 32] [ 6] [668899] +07:51:40 [ 35] [ 32] [6213544001849113=491212014911911] +07:51:40 [ 37] [ 12] [507902678600] +07:51:40 [ 38] [ 6] [378723] +07:51:40 [ 39] [ 2] [00] +07:51:40 [ 41] [ 8] [03020035] +07:51:40 [ 49] [ 3] [418] +07:51:40 [ 54] [ 40] [0001418C0000097305900002418C000009730590] +07:51:40 ============================================================================ +07:51:40 Sending to : +07:51:40 ============================================================================ +07:51:40 + + +waiting on router queue for slot.... +07:51:42 ============================================================================ +07:51:42 Slot Id : <455> +07:51:42 Transaction Type : RESPONSE +07:51:42 Received From : +07:51:42 ============================================================================ +07:51:42 FNo. Len. Field Value +07:51:42 ============================================================================ +07:51:42 [ 1] [ 4] [0210] +07:51:42 [ 2] [ 16] [6213544001849113] +07:51:42 [ 3] [ 6] [010000] +07:51:42 [ 4] [ 12] [000005000000] +07:51:42 [ 7] [ 10] [0320074931] +07:51:42 [ 11] [ 6] [931062] +07:51:42 [ 12] [ 6] [074931] +07:51:42 [ 13] [ 4] [0320] +07:51:42 [ 15] [ 4] [0320] +07:51:42 [ 18] [ 4] [6011] +07:51:42 [ 19] [ 3] [418] +07:51:42 [ 32] [ 6] [668899] +07:51:42 [ 35] [ 32] [6213544001849113=491212014911911] +07:51:42 [ 37] [ 12] [507902678600] +07:51:42 [ 38] [ 6] [378723] +07:51:42 [ 39] [ 2] [00] +07:51:42 [ 41] [ 8] [03020035] +07:51:42 [ 49] [ 3] [418] +07:51:42 [ 54] [ 40] [0001418C0000097305900002418C000009730590] +07:51:42 ============================================================================ +07:51:42 Calculate Source COMM Id = 4 +07:51:42 ============================================================================ +07:51:42 + + +waiting on router queue for slot.... +07:51:47 ============================================================================ +07:51:47 Slot Id : <440> +07:51:47 Transaction Type : REQUEST +07:51:47 Received From : +07:51:47 ============================================================================ +07:51:47 FNo. Len. Field Value +07:51:47 ============================================================================ +07:51:47 [ 1] [ 4] [0800] +07:51:47 [ 7] [ 10] [0320125055] +07:51:47 [ 11] [ 6] [155263] +07:51:47 [ 70] [ 3] [301] +07:51:47 ============================================================================ +07:51:47 + + +waiting on router queue for slot.... +07:51:47 Sending to : +07:51:47 ============================================================================ +07:51:47 ============================================================================ +07:51:47 Slot Id : <440> +07:51:47 Transaction Type : RESPONSE +07:51:47 Received From : +07:51:47 ============================================================================ +07:51:47 FNo. Len. Field Value +07:51:47 ============================================================================ +07:51:47 [ 1] [ 4] [0810] +07:51:47 [ 7] [ 10] [0320125055] +07:51:47 [ 11] [ 6] [155263] +07:51:47 [ 39] [ 2] [00] +07:51:47 [ 70] [ 3] [301] +07:51:47 ============================================================================ +07:51:47 Calculate Source COMM Id = 2 +07:51:47 ============================================================================ +07:51:47 + + +waiting on router queue for slot.... +07:51:48 ============================================================================ +07:51:48 Slot Id : <460> +07:51:48 Transaction Type : REQUEST +07:51:48 Received From : +07:51:48 ============================================================================ +07:51:48 FNo. Len. Field Value +07:51:48 ============================================================================ +07:51:48 [ 1] [ 4] [0800] +07:51:48 [ 2] [ 5] [02531] +07:51:48 [ 3] [ 6] [579078] +07:51:48 [ 7] [ 10] [0320005148] +07:51:48 [ 11] [ 6] [806868] +07:51:48 [ 15] [ 10] [0320005148] +07:51:48 [ 37] [ 11] [57907806868] +07:51:48 [ 70] [ 3] [001] +07:51:48 ============================================================================ +07:51:48 + + +waiting on router queue for slot.... +07:51:48 ============================================================================ +07:51:48 Slot Id : <460> +07:51:48 Transaction Type : RESPONSE +07:51:48 Received From : +07:51:48 ============================================================================ +07:51:48 FNo. Len. Field Value +07:51:48 ============================================================================ +07:51:48 [ 1] [ 4] [0810] +07:51:48 [ 7] [ 10] [0320005148] +07:51:48 [ 11] [ 6] [806868] +07:51:48 [ 15] [ 4] [0320] +07:51:48 [ 37] [ 12] [57907806868] +07:51:48 [ 39] [ 2] [00] +07:51:48 [ 70] [ 3] [001] +07:51:48 ============================================================================ +07:51:48 Sending to : +07:51:48 ============================================================================ +07:51:48 + + +waiting on router queue for slot.... +07:51:52 ============================================================================ +07:51:52 Slot Id : <432> +07:51:52 Transaction Type : REQUEST +07:51:52 Received From : +07:51:52 ============================================================================ +07:51:52 FNo. Len. Field Value +07:51:52 ============================================================================ +07:51:52 [ 1] [ 4] [0200] +07:51:52 [ 2] [ 16] [6213548000409183] +07:51:52 [ 3] [ 6] [300000] +07:51:52 [ 4] [ 12] [000000000000] +07:51:52 [ 7] [ 10] [0320074944] +07:51:52 [ 11] [ 6] [931072] +07:51:52 [ 12] [ 6] [074944] +07:51:52 [ 13] [ 4] [0320] +07:51:52 [ 15] [ 4] [0320] +07:51:52 [ 18] [ 4] [6011] +07:51:52 [ 19] [ 3] [418] +07:51:52 [ 22] [ 3] [021] +07:51:52 [ 25] [ 2] [01] +07:51:52 [ 28] [ 9] [D00000000] +07:51:52 [ 32] [ 6] [668899] +07:51:52 [ 35] [ 32] [6213548000409183=180612010918109] +07:51:52 [ 37] [ 12] [507901311931] +07:51:52 [ 41] [ 8] [03006005] +07:51:52 [ 42] [ 15] [APT ] +07:51:52 [ 43] [ 40] [ UNIVERSITY OF LAW LUANGPR] +07:51:52 [ 49] [ 3] [418] +07:51:52 [ 52] [ 16] [27DE34D3FEE9B3ED] +07:51:52 ============================================================================ +07:51:52 + + +waiting on router queue for slot.... +07:51:52 Sending to : +07:51:52 ============================================================================ +07:51:52 Sending to : +07:51:52 ============================================================================ +07:51:53 ============================================================================ +07:51:53 Slot Id : <432> +07:51:53 Transaction Type : REQUEST +07:51:53 Received From : +07:51:53 ============================================================================ +07:51:53 FNo. Len. Field Value +07:51:53 ============================================================================ +07:51:53 [ 1] [ 4] [0200] +07:51:53 [ 2] [ 16] [6213548000409183] +07:51:53 [ 3] [ 6] [300000] +07:51:53 [ 4] [ 12] [000000000000] +07:51:53 [ 7] [ 10] [0320074944] +07:51:53 [ 11] [ 6] [931072] +07:51:53 [ 12] [ 6] [074944] +07:51:53 [ 13] [ 4] [0320] +07:51:53 [ 15] [ 4] [0320] +07:51:53 [ 18] [ 4] [6011] +07:51:53 [ 19] [ 3] [418] +07:51:53 [ 22] [ 3] [021] +07:51:53 [ 25] [ 2] [01] +07:51:53 [ 28] [ 9] [D00000000] +07:51:53 [ 32] [ 6] [668899] +07:51:53 [ 35] [ 32] [6213548000409183=180612010918109] +07:51:53 [ 37] [ 12] [507901311931] +07:51:53 [ 41] [ 8] [03006005] +07:51:53 [ 42] [ 15] [APT ] +07:51:53 [ 43] [ 40] [ UNIVERSITY OF LAW LUANGPR] +07:51:53 [ 49] [ 3] [418] +07:51:53 [ 52] [ 16] [27DE34D3FEE9B3ED] +07:51:53 ============================================================================ +07:51:53 + + +waiting on router queue for slot.... +07:51:53 Sending to : +07:51:53 ============================================================================ +07:51:53 ============================================================================ +07:51:53 Slot Id : <432> +07:51:53 Transaction Type : REQUEST +07:51:53 Received From : +07:51:53 ============================================================================ +07:51:53 FNo. Len. Field Value +07:51:53 ============================================================================ +07:51:53 [ 1] [ 4] [0200] +07:51:53 [ 2] [ 16] [6213548000409183] +07:51:53 [ 3] [ 6] [300000] +07:51:53 [ 4] [ 12] [000000000000] +07:51:53 [ 7] [ 10] [0320074944] +07:51:53 [ 11] [ 6] [931072] +07:51:53 [ 12] [ 6] [074944] +07:51:53 [ 13] [ 4] [0320] +07:51:53 [ 15] [ 4] [0320] +07:51:53 [ 18] [ 4] [6011] +07:51:53 [ 19] [ 3] [418] +07:51:53 [ 22] [ 3] [021] +07:51:53 [ 25] [ 2] [01] +07:51:53 [ 28] [ 9] [D00000000] +07:51:53 [ 32] [ 6] [668899] +07:51:53 [ 35] [ 32] [6213548000409183=180612010918109] +07:51:53 [ 37] [ 12] [507901311931] +07:51:53 [ 41] [ 8] [03006005] +07:51:53 [ 42] [ 15] [APT ] +07:51:53 [ 43] [ 40] [ UNIVERSITY OF LAW LUANGPR] +07:51:53 [ 49] [ 3] [418] +07:51:53 [ 52] [ 16] [7B24C0FD28CCB1B7] +07:51:53 ============================================================================ +07:51:53 + + +waiting on router queue for slot.... +07:51:53 Sending to : <0> +07:51:53 ============================================================================ +07:51:53 ============================================================================ +07:51:53 Slot Id : <432> +07:51:53 Transaction Type : RESPONSE +07:51:53 Received From : +07:51:53 ============================================================================ +07:51:53 FNo. Len. Field Value +07:51:53 ============================================================================ +07:51:53 [ 1] [ 4] [0210] +07:51:53 [ 2] [ 16] [6213548000409183] +07:51:53 [ 3] [ 6] [300000] +07:51:53 [ 4] [ 12] [000000000000] +07:51:53 [ 7] [ 10] [0320074944] +07:51:53 [ 11] [ 6] [931072] +07:51:53 [ 12] [ 6] [074944] +07:51:53 [ 13] [ 4] [0320] +07:51:53 [ 15] [ 4] [0320] +07:51:53 [ 18] [ 4] [6011] +07:51:53 [ 19] [ 3] [418] +07:51:53 [ 32] [ 6] [668899] +07:51:53 [ 35] [ 32] [6213548000409183=180612010918109] +07:51:53 [ 37] [ 12] [507901311931] +07:51:53 [ 38] [ 6] [535408] +07:51:53 [ 39] [ 2] [00] +07:51:53 [ 41] [ 8] [03006005] +07:51:53 [ 49] [ 3] [418] +07:51:53 [ 54] [ 40] [0001418C0000126214390002418C000012621439] +07:51:53 ============================================================================ +07:51:53 Sending to : +07:51:53 ============================================================================ +07:51:53 + + +waiting on router queue for slot.... +07:51:54 ============================================================================ +07:51:54 Slot Id : <453> +07:51:54 Transaction Type : REQUEST +07:51:54 Received From : +07:51:54 ============================================================================ +07:51:54 FNo. Len. Field Value +07:51:54 ============================================================================ +07:51:54 [ 1] [ 4] [0200] +07:51:54 [ 2] [ 16] [6688990040152975] +07:51:54 [ 3] [ 6] [012000] +07:51:54 [ 4] [ 12] [000020000000] +07:51:54 [ 7] [ 10] [0320075150] +07:51:54 [ 11] [ 6] [674875] +07:51:54 [ 12] [ 6] [075150] +07:51:54 [ 13] [ 4] [0320] +07:51:54 [ 15] [ 4] [0320] +07:51:54 [ 18] [ 4] [6011] +07:51:54 [ 22] [ 3] [900] +07:51:54 [ 25] [ 2] [02] +07:51:54 [ 28] [ 9] [D00002000] +07:51:54 [ 32] [ 6] [621354] +07:51:54 [ 35] [ 37] [6688990040152975=98051261453126000000] +07:51:54 [ 37] [ 12] [507904965363] +07:51:54 [ 41] [ 8] [15001100] +07:51:54 [ 42] [ 15] [NATIVE ] +07:51:54 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +07:51:54 [ 49] [ 3] [418] +07:51:54 [ 52] [ 16] [01D977FB5897D306] +07:51:54 ============================================================================ +07:51:54 + + +waiting on router queue for slot.... +07:51:54 Sending to : +07:51:54 ============================================================================ +07:51:54 Sending to : +07:51:54 ============================================================================ +07:51:54 ============================================================================ +07:51:54 Slot Id : <453> +07:51:54 Transaction Type : REQUEST +07:51:54 Received From : +07:51:54 ============================================================================ +07:51:54 FNo. Len. Field Value +07:51:54 ============================================================================ +07:51:54 [ 1] [ 4] [0200] +07:51:54 [ 2] [ 16] [6688990040152975] +07:51:54 [ 3] [ 6] [012000] +07:51:54 [ 4] [ 12] [000020000000] +07:51:54 [ 7] [ 10] [0320075150] +07:51:54 [ 11] [ 6] [674875] +07:51:54 [ 12] [ 6] [075150] +07:51:54 [ 13] [ 4] [0320] +07:51:54 [ 15] [ 4] [0320] +07:51:54 [ 18] [ 4] [6011] +07:51:54 [ 22] [ 3] [900] +07:51:54 [ 25] [ 2] [02] +07:51:54 [ 28] [ 9] [D00002000] +07:51:54 [ 32] [ 6] [621354] +07:51:54 [ 35] [ 37] [6688990040152975=98051261453126000000] +07:51:54 [ 37] [ 12] [507904965363] +07:51:54 [ 41] [ 8] [15001100] +07:51:54 [ 42] [ 15] [NATIVE ] +07:51:54 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +07:51:54 [ 49] [ 3] [418] +07:51:54 [ 52] [ 16] [01D977FB5897D306] +07:51:54 ============================================================================ +07:51:54 + + +waiting on router queue for slot.... +07:51:54 Sending to : +07:51:54 ============================================================================ +07:51:54 ============================================================================ +07:51:54 Slot Id : <453> +07:51:54 Transaction Type : REQUEST +07:51:54 Received From : +07:51:54 ============================================================================ +07:51:54 FNo. Len. Field Value +07:51:54 ============================================================================ +07:51:54 [ 1] [ 4] [0200] +07:51:54 [ 2] [ 16] [6688990040152975] +07:51:54 [ 3] [ 6] [012000] +07:51:54 [ 4] [ 12] [000020000000] +07:51:54 [ 7] [ 10] [0320075150] +07:51:54 [ 11] [ 6] [674875] +07:51:54 [ 12] [ 6] [075150] +07:51:54 [ 13] [ 4] [0320] +07:51:54 [ 15] [ 4] [0320] +07:51:54 [ 18] [ 4] [6011] +07:51:54 [ 22] [ 3] [900] +07:51:54 [ 25] [ 2] [02] +07:51:54 [ 28] [ 9] [D00002000] +07:51:54 [ 32] [ 6] [621354] +07:51:54 [ 35] [ 37] [6688990040152975=98051261453126000000] +07:51:54 [ 37] [ 12] [507904965363] +07:51:54 [ 41] [ 8] [15001100] +07:51:54 [ 42] [ 15] [NATIVE ] +07:51:54 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +07:51:54 [ 49] [ 3] [418] +07:51:54 [ 52] [ 16] [FF844B347FC05BEE] +07:51:54 ============================================================================ +07:51:54 + + +waiting on router queue for slot.... +07:51:54 Sending to : <4> +07:51:54 ============================================================================ +07:51:55 ============================================================================ +07:51:55 Slot Id : <432> +07:51:55 Transaction Type : RESPONSE +07:51:55 Received From : +07:51:55 ============================================================================ +07:51:55 FNo. Len. Field Value +07:51:55 ============================================================================ +07:51:55 [ 1] [ 4] [0210] +07:51:55 [ 2] [ 16] [6213548000409183] +07:51:55 [ 3] [ 6] [300000] +07:51:55 [ 4] [ 12] [000000000000] +07:51:55 [ 7] [ 10] [0320074944] +07:51:55 [ 11] [ 6] [931072] +07:51:55 [ 12] [ 6] [074944] +07:51:55 [ 13] [ 4] [0320] +07:51:55 [ 15] [ 4] [0320] +07:51:55 [ 18] [ 4] [6011] +07:51:55 [ 19] [ 3] [418] +07:51:55 [ 32] [ 6] [668899] +07:51:55 [ 35] [ 32] [6213548000409183=180612010918109] +07:51:55 [ 37] [ 12] [507901311931] +07:51:55 [ 38] [ 6] [535408] +07:51:55 [ 39] [ 2] [00] +07:51:55 [ 41] [ 8] [03006005] +07:51:55 [ 49] [ 3] [418] +07:51:55 [ 54] [ 40] [0001418C0000126214390002418C000012621439] +07:51:55 ============================================================================ +07:51:55 Calculate Source COMM Id = 4 +07:51:55 ============================================================================ +07:51:55 + + +waiting on router queue for slot.... +07:51:55 ============================================================================ +07:51:55 Slot Id : <453> +07:51:55 Transaction Type : RESPONSE +07:51:55 Received From : +07:51:55 ============================================================================ +07:51:55 FNo. Len. Field Value +07:51:55 ============================================================================ +07:51:55 [ 1] [ 4] [0210] +07:51:55 [ 2] [ 16] [6688990040152975] +07:51:55 [ 3] [ 6] [012000] +07:51:55 [ 4] [ 12] [000020000000] +07:51:55 [ 11] [ 6] [674875] +07:51:55 [ 12] [ 6] [075150] +07:51:55 [ 15] [ 4] [0320] +07:51:55 [ 18] [ 4] [6011] +07:51:55 [ 32] [ 6] [621354] +07:51:55 [ 35] [ 37] [6688990040152975=98051261453126000000] +07:51:55 [ 37] [ 12] [507904965363] +07:51:55 [ 38] [ 6] [265289] +07:51:55 [ 39] [ 2] [00] +07:51:55 [ 41] [ 8] [15001100] +07:51:55 [ 49] [ 3] [418] +07:51:55 [ 54] [ 20] [2002764C000000379334] +07:51:55 ============================================================================ +07:51:55 Sending to : +07:51:55 ============================================================================ +07:51:55 + + +waiting on router queue for slot.... +07:51:57 ============================================================================ +07:51:57 Slot Id : <453> +07:51:57 Transaction Type : RESPONSE +07:51:57 Received From : +07:51:57 ============================================================================ +07:51:57 FNo. Len. Field Value +07:51:57 ============================================================================ +07:51:57 [ 1] [ 4] [0210] +07:51:57 [ 2] [ 16] [6688990040152975] +07:51:57 [ 3] [ 6] [012000] +07:51:57 [ 4] [ 12] [000020000000] +07:51:57 [ 11] [ 6] [674875] +07:51:57 [ 12] [ 6] [075150] +07:51:57 [ 15] [ 4] [0320] +07:51:57 [ 18] [ 4] [6011] +07:51:57 [ 32] [ 6] [621354] +07:51:57 [ 35] [ 37] [6688990040152975=98051261453126000000] +07:51:57 [ 37] [ 12] [507904965363] +07:51:57 [ 38] [ 6] [265289] +07:51:57 [ 39] [ 2] [00] +07:51:57 [ 41] [ 8] [15001100] +07:51:57 [ 49] [ 3] [418] +07:51:57 [ 54] [ 20] [2002764C000000379334] +07:51:57 ============================================================================ +07:51:57 Calculate Source COMM Id = 0 +07:51:57 ============================================================================ +07:51:57 + + +waiting on router queue for slot.... +07:51:58 ============================================================================ +07:51:58 Slot Id : <482> +07:51:58 Transaction Type : REQUEST +07:51:58 Received From : +07:51:58 ============================================================================ +07:51:58 FNo. Len. Field Value +07:51:58 ============================================================================ +07:51:58 [ 1] [ 4] [0800] +07:51:58 [ 7] [ 10] [0320125106] +07:51:58 [ 11] [ 6] [155264] +07:51:58 [ 70] [ 3] [301] +07:51:58 ============================================================================ +07:51:58 + + +waiting on router queue for slot.... +07:51:58 Sending to : +07:51:58 ============================================================================ +07:51:58 ============================================================================ +07:51:58 Slot Id : <482> +07:51:58 Transaction Type : RESPONSE +07:51:58 Received From : +07:51:58 ============================================================================ +07:51:58 FNo. Len. Field Value +07:51:58 ============================================================================ +07:51:58 [ 1] [ 4] [0810] +07:51:58 [ 7] [ 10] [0320125106] +07:51:58 [ 11] [ 6] [155264] +07:51:58 [ 39] [ 2] [00] +07:51:58 [ 70] [ 3] [301] +07:51:58 ============================================================================ +07:51:58 Calculate Source COMM Id = 2 +07:51:58 ============================================================================ +07:51:58 + + +waiting on router queue for slot.... +07:52:09 ============================================================================ +07:52:09 Slot Id : <488> +07:52:09 Transaction Type : REQUEST +07:52:09 Received From : +07:52:09 ============================================================================ +07:52:09 FNo. Len. Field Value +07:52:09 ============================================================================ +07:52:09 [ 1] [ 4] [0800] +07:52:09 [ 7] [ 10] [0320125117] +07:52:09 [ 11] [ 6] [155265] +07:52:09 [ 70] [ 3] [301] +07:52:09 ============================================================================ +07:52:09 + + +waiting on router queue for slot.... +07:52:09 Sending to : +07:52:09 ============================================================================ +07:52:09 ============================================================================ +07:52:09 Slot Id : <488> +07:52:09 Transaction Type : RESPONSE +07:52:09 Received From : +07:52:09 ============================================================================ +07:52:09 FNo. Len. Field Value +07:52:09 ============================================================================ +07:52:09 [ 1] [ 4] [0810] +07:52:09 [ 7] [ 10] [0320125117] +07:52:09 [ 11] [ 6] [155265] +07:52:09 [ 39] [ 2] [00] +07:52:09 [ 70] [ 3] [301] +07:52:09 ============================================================================ +07:52:09 Calculate Source COMM Id = 2 +07:52:09 ============================================================================ +07:52:09 + + +waiting on router queue for slot.... +07:52:20 ============================================================================ +07:52:20 Slot Id : <470> +07:52:20 Transaction Type : REQUEST +07:52:20 Received From : +07:52:20 ============================================================================ +07:52:20 FNo. Len. Field Value +07:52:20 ============================================================================ +07:52:20 [ 1] [ 4] [0800] +07:52:20 [ 7] [ 10] [0320125128] +07:52:20 [ 11] [ 6] [155266] +07:52:20 [ 70] [ 3] [301] +07:52:20 ============================================================================ +07:52:20 + + +waiting on router queue for slot.... +07:52:20 Sending to : +07:52:20 ============================================================================ +07:52:20 ============================================================================ +07:52:20 Slot Id : <470> +07:52:20 Transaction Type : RESPONSE +07:52:20 Received From : +07:52:20 ============================================================================ +07:52:20 FNo. Len. Field Value +07:52:20 ============================================================================ +07:52:20 [ 1] [ 4] [0810] +07:52:20 [ 7] [ 10] [0320125128] +07:52:20 [ 11] [ 6] [155266] +07:52:20 [ 39] [ 2] [00] +07:52:20 [ 70] [ 3] [301] +07:52:20 ============================================================================ +07:52:20 Calculate Source COMM Id = 2 +07:52:20 ============================================================================ +07:52:20 + + +waiting on router queue for slot.... +07:52:23 ============================================================================ +07:52:23 Slot Id : <495> +07:52:23 Transaction Type : REQUEST +07:52:23 Received From : +07:52:23 ============================================================================ +07:52:23 FNo. Len. Field Value +07:52:23 ============================================================================ +07:52:23 [ 1] [ 4] [0800] +07:52:23 [ 7] [ 10] [0320150413] +07:52:23 [ 11] [ 6] [080413] +07:52:23 [ 37] [ 12] [57908080413] +07:52:23 [ 70] [ 3] [301] +07:52:23 ============================================================================ +07:52:23 + + +waiting on router queue for slot.... +07:52:23 Sending to : +07:52:23 ============================================================================ +07:52:23 ============================================================================ +07:52:23 Slot Id : <495> +07:52:23 Transaction Type : RESPONSE +07:52:23 Received From : +07:52:23 ============================================================================ +07:52:23 FNo. Len. Field Value +07:52:23 ============================================================================ +07:52:23 [ 1] [ 4] [0810] +07:52:23 [ 7] [ 10] [0320150413] +07:52:23 [ 11] [ 6] [080413] +07:52:23 [ 37] [ 12] [579080804130] +07:52:23 [ 39] [ 2] [00] +07:52:23 [ 70] [ 3] [810] +07:52:23 ============================================================================ +07:52:23 Calculate Source COMM Id = 6 +07:52:23 ============================================================================ +07:52:23 + + +waiting on router queue for slot.... +07:52:24 ============================================================================ +07:52:24 Slot Id : <463> +07:52:24 Transaction Type : REQUEST +07:52:24 Received From : +07:52:24 ============================================================================ +07:52:24 FNo. Len. Field Value +07:52:24 ============================================================================ +07:52:24 [ 1] [ 4] [0200] +07:52:24 [ 2] [ 16] [6213544002045760] +07:52:24 [ 3] [ 6] [010000] +07:52:24 [ 4] [ 12] [000010000000] +07:52:24 [ 7] [ 10] [0320075015] +07:52:24 [ 11] [ 6] [931114] +07:52:24 [ 12] [ 6] [075015] +07:52:24 [ 13] [ 4] [0320] +07:52:24 [ 15] [ 4] [0320] +07:52:24 [ 18] [ 4] [6011] +07:52:24 [ 19] [ 3] [418] +07:52:24 [ 22] [ 3] [021] +07:52:24 [ 25] [ 2] [01] +07:52:24 [ 28] [ 9] [D00002000] +07:52:24 [ 32] [ 6] [668899] +07:52:24 [ 35] [ 32] [6213544002045760=491212014576659] +07:52:24 [ 37] [ 12] [507901963362] +07:52:24 [ 41] [ 8] [03020019] +07:52:24 [ 42] [ 15] [APT ] +07:52:24 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +07:52:24 [ 49] [ 3] [418] +07:52:24 [ 52] [ 16] [8842E5072A326906] +07:52:24 ============================================================================ +07:52:24 + + +waiting on router queue for slot.... +07:52:24 Sending to : +07:52:24 ============================================================================ +07:52:24 Sending to : +07:52:24 ============================================================================ +07:52:24 ============================================================================ +07:52:24 Slot Id : <463> +07:52:24 Transaction Type : REQUEST +07:52:24 Received From : +07:52:24 ============================================================================ +07:52:24 FNo. Len. Field Value +07:52:24 ============================================================================ +07:52:24 [ 1] [ 4] [0200] +07:52:24 [ 2] [ 16] [6213544002045760] +07:52:24 [ 3] [ 6] [010000] +07:52:24 [ 4] [ 12] [000010000000] +07:52:24 [ 7] [ 10] [0320075015] +07:52:24 [ 11] [ 6] [931114] +07:52:24 [ 12] [ 6] [075015] +07:52:24 [ 13] [ 4] [0320] +07:52:24 [ 15] [ 4] [0320] +07:52:24 [ 18] [ 4] [6011] +07:52:24 [ 19] [ 3] [418] +07:52:24 [ 22] [ 3] [021] +07:52:24 [ 25] [ 2] [01] +07:52:24 [ 28] [ 9] [D00002000] +07:52:24 [ 32] [ 6] [668899] +07:52:24 [ 35] [ 32] [6213544002045760=491212014576659] +07:52:24 [ 37] [ 12] [507901963362] +07:52:24 [ 41] [ 8] [03020019] +07:52:24 [ 42] [ 15] [APT ] +07:52:24 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +07:52:24 [ 49] [ 3] [418] +07:52:24 [ 52] [ 16] [8842E5072A326906] +07:52:24 ============================================================================ +07:52:24 + + +waiting on router queue for slot.... +07:52:24 Sending to : +07:52:24 ============================================================================ +07:52:24 ============================================================================ +07:52:24 Slot Id : <463> +07:52:24 Transaction Type : REQUEST +07:52:24 Received From : +07:52:24 ============================================================================ +07:52:24 FNo. Len. Field Value +07:52:24 ============================================================================ +07:52:24 [ 1] [ 4] [0200] +07:52:24 [ 2] [ 16] [6213544002045760] +07:52:24 [ 3] [ 6] [010000] +07:52:24 [ 4] [ 12] [000010000000] +07:52:24 [ 7] [ 10] [0320075015] +07:52:24 [ 11] [ 6] [931114] +07:52:24 [ 12] [ 6] [075015] +07:52:24 [ 13] [ 4] [0320] +07:52:24 [ 15] [ 4] [0320] +07:52:24 [ 18] [ 4] [6011] +07:52:24 [ 19] [ 3] [418] +07:52:24 [ 22] [ 3] [021] +07:52:24 [ 25] [ 2] [01] +07:52:24 [ 28] [ 9] [D00002000] +07:52:24 [ 32] [ 6] [668899] +07:52:24 [ 35] [ 32] [6213544002045760=491212014576659] +07:52:24 [ 37] [ 12] [507901963362] +07:52:24 [ 41] [ 8] [03020019] +07:52:24 [ 42] [ 15] [APT ] +07:52:24 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +07:52:24 [ 49] [ 3] [418] +07:52:24 [ 52] [ 16] [A7B422A9A0FBE0F2] +07:52:24 ============================================================================ +07:52:24 + + +waiting on router queue for slot.... +07:52:24 Sending to : <0> +07:52:24 ============================================================================ +07:52:25 ============================================================================ +07:52:25 Slot Id : <463> +07:52:25 Transaction Type : RESPONSE +07:52:25 Received From : +07:52:25 ============================================================================ +07:52:25 FNo. Len. Field Value +07:52:25 ============================================================================ +07:52:25 [ 1] [ 4] [0210] +07:52:25 [ 2] [ 16] [6213544002045760] +07:52:25 [ 3] [ 6] [010000] +07:52:25 [ 4] [ 12] [000010000000] +07:52:25 [ 7] [ 10] [0320075015] +07:52:25 [ 11] [ 6] [931114] +07:52:25 [ 12] [ 6] [075015] +07:52:25 [ 13] [ 4] [0320] +07:52:25 [ 15] [ 4] [0320] +07:52:25 [ 18] [ 4] [6011] +07:52:25 [ 19] [ 3] [418] +07:52:25 [ 32] [ 6] [668899] +07:52:25 [ 35] [ 32] [6213544002045760=491212014576659] +07:52:25 [ 37] [ 12] [507901963362] +07:52:25 [ 38] [ 6] [007648] +07:52:25 [ 39] [ 2] [00] +07:52:25 [ 41] [ 8] [03020019] +07:52:25 [ 49] [ 3] [418] +07:52:25 [ 54] [ 40] [0001418C0000535554660002418C000053555466] +07:52:25 ============================================================================ +07:52:25 Sending to : +07:52:25 ============================================================================ +07:52:25 + + +waiting on router queue for slot.... +07:52:26 ============================================================================ +07:52:26 Slot Id : <463> +07:52:26 Transaction Type : RESPONSE +07:52:26 Received From : +07:52:26 ============================================================================ +07:52:26 FNo. Len. Field Value +07:52:26 ============================================================================ +07:52:26 [ 1] [ 4] [0210] +07:52:26 [ 2] [ 16] [6213544002045760] +07:52:26 [ 3] [ 6] [010000] +07:52:26 [ 4] [ 12] [000010000000] +07:52:26 [ 7] [ 10] [0320075015] +07:52:26 [ 11] [ 6] [931114] +07:52:26 [ 12] [ 6] [075015] +07:52:26 [ 13] [ 4] [0320] +07:52:26 [ 15] [ 4] [0320] +07:52:26 [ 18] [ 4] [6011] +07:52:26 [ 19] [ 3] [418] +07:52:26 [ 32] [ 6] [668899] +07:52:26 [ 35] [ 32] [6213544002045760=491212014576659] +07:52:26 [ 37] [ 12] [507901963362] +07:52:26 [ 38] [ 6] [007648] +07:52:26 [ 39] [ 2] [00] +07:52:26 [ 41] [ 8] [03020019] +07:52:26 [ 49] [ 3] [418] +07:52:26 [ 54] [ 40] [0001418C0000535554660002418C000053555466] +07:52:26 ============================================================================ +07:52:26 Calculate Source COMM Id = 4 +07:52:26 ============================================================================ +07:52:26 + + +waiting on router queue for slot.... +07:52:31 ============================================================================ +07:52:31 Slot Id : <490> +07:52:31 Transaction Type : REQUEST +07:52:31 Received From : +07:52:31 ============================================================================ +07:52:31 FNo. Len. Field Value +07:52:31 ============================================================================ +07:52:31 [ 1] [ 4] [0800] +07:52:31 [ 7] [ 10] [0320125139] +07:52:31 [ 11] [ 6] [155267] +07:52:31 [ 70] [ 3] [301] +07:52:31 ============================================================================ +07:52:31 + + +waiting on router queue for slot.... +07:52:31 Sending to : +07:52:31 ============================================================================ +07:52:31 ============================================================================ +07:52:31 Slot Id : <490> +07:52:31 Transaction Type : RESPONSE +07:52:31 Received From : +07:52:31 ============================================================================ +07:52:31 FNo. Len. Field Value +07:52:31 ============================================================================ +07:52:31 [ 1] [ 4] [0810] +07:52:31 [ 7] [ 10] [0320125139] +07:52:31 [ 11] [ 6] [155267] +07:52:31 [ 39] [ 2] [00] +07:52:31 [ 70] [ 3] [301] +07:52:31 ============================================================================ +07:52:31 Calculate Source COMM Id = 2 +07:52:31 ============================================================================ +07:52:31 + + +waiting on router queue for slot.... +07:52:31 ============================================================================ +07:52:31 Slot Id : <484> +07:52:31 Transaction Type : REQUEST +07:52:31 Received From : +07:52:31 ============================================================================ +07:52:31 FNo. Len. Field Value +07:52:31 ============================================================================ +07:52:31 [ 1] [ 4] [0200] +07:52:31 [ 2] [ 16] [6213543000242155] +07:52:31 [ 3] [ 6] [300000] +07:52:31 [ 4] [ 12] [000000000000] +07:52:31 [ 7] [ 10] [0320075023] +07:52:31 [ 11] [ 6] [931120] +07:52:31 [ 12] [ 6] [075023] +07:52:31 [ 13] [ 4] [0320] +07:52:31 [ 15] [ 4] [0320] +07:52:31 [ 18] [ 4] [6011] +07:52:31 [ 19] [ 3] [418] +07:52:31 [ 22] [ 3] [021] +07:52:31 [ 25] [ 2] [01] +07:52:31 [ 28] [ 9] [D00000000] +07:52:31 [ 32] [ 6] [668899] +07:52:31 [ 35] [ 32] [6213543000242155=491212014215813] +07:52:31 [ 37] [ 12] [507901972357] +07:52:31 [ 41] [ 8] [03012003] +07:52:31 [ 42] [ 15] [APT ] +07:52:31 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:52:31 [ 49] [ 3] [418] +07:52:31 [ 52] [ 16] [CA1423064F3390AC] +07:52:31 ============================================================================ +07:52:31 + + +waiting on router queue for slot.... +07:52:31 Sending to : +07:52:31 ============================================================================ +07:52:31 Sending to : +07:52:31 ============================================================================ +07:52:32 ============================================================================ +07:52:32 Slot Id : <484> +07:52:32 Transaction Type : REQUEST +07:52:32 Received From : +07:52:32 ============================================================================ +07:52:32 FNo. Len. Field Value +07:52:32 ============================================================================ +07:52:32 [ 1] [ 4] [0200] +07:52:32 [ 2] [ 16] [6213543000242155] +07:52:32 [ 3] [ 6] [300000] +07:52:32 [ 4] [ 12] [000000000000] +07:52:32 [ 7] [ 10] [0320075023] +07:52:32 [ 11] [ 6] [931120] +07:52:32 [ 12] [ 6] [075023] +07:52:32 [ 13] [ 4] [0320] +07:52:32 [ 15] [ 4] [0320] +07:52:32 [ 18] [ 4] [6011] +07:52:32 [ 19] [ 3] [418] +07:52:32 [ 22] [ 3] [021] +07:52:32 [ 25] [ 2] [01] +07:52:32 [ 28] [ 9] [D00000000] +07:52:32 [ 32] [ 6] [668899] +07:52:32 [ 35] [ 32] [6213543000242155=491212014215813] +07:52:32 [ 37] [ 12] [507901972357] +07:52:32 [ 41] [ 8] [03012003] +07:52:32 [ 42] [ 15] [APT ] +07:52:32 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:52:32 [ 49] [ 3] [418] +07:52:32 [ 52] [ 16] [CA1423064F3390AC] +07:52:32 ============================================================================ +07:52:32 + + +waiting on router queue for slot.... +07:52:32 Sending to : +07:52:32 ============================================================================ +07:52:32 ============================================================================ +07:52:32 Slot Id : <484> +07:52:32 Transaction Type : REQUEST +07:52:32 Received From : +07:52:32 ============================================================================ +07:52:32 FNo. Len. Field Value +07:52:32 ============================================================================ +07:52:32 [ 1] [ 4] [0200] +07:52:32 [ 2] [ 16] [6213543000242155] +07:52:32 [ 3] [ 6] [300000] +07:52:32 [ 4] [ 12] [000000000000] +07:52:32 [ 7] [ 10] [0320075023] +07:52:32 [ 11] [ 6] [931120] +07:52:32 [ 12] [ 6] [075023] +07:52:32 [ 13] [ 4] [0320] +07:52:32 [ 15] [ 4] [0320] +07:52:32 [ 18] [ 4] [6011] +07:52:32 [ 19] [ 3] [418] +07:52:32 [ 22] [ 3] [021] +07:52:32 [ 25] [ 2] [01] +07:52:32 [ 28] [ 9] [D00000000] +07:52:32 [ 32] [ 6] [668899] +07:52:32 [ 35] [ 32] [6213543000242155=491212014215813] +07:52:32 [ 37] [ 12] [507901972357] +07:52:32 [ 41] [ 8] [03012003] +07:52:32 [ 42] [ 15] [APT ] +07:52:32 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:52:32 [ 49] [ 3] [418] +07:52:32 [ 52] [ 16] [ACC9C7E711E6067E] +07:52:32 ============================================================================ +07:52:32 + + +waiting on router queue for slot.... +07:52:32 Sending to : <0> +07:52:32 ============================================================================ +07:52:32 ============================================================================ +07:52:32 Slot Id : <484> +07:52:32 Transaction Type : RESPONSE +07:52:32 Received From : +07:52:32 ============================================================================ +07:52:32 FNo. Len. Field Value +07:52:32 ============================================================================ +07:52:32 [ 1] [ 4] [0210] +07:52:32 [ 2] [ 16] [6213543000242155] +07:52:32 [ 3] [ 6] [300000] +07:52:32 [ 4] [ 12] [000000000000] +07:52:32 [ 7] [ 10] [0320075023] +07:52:32 [ 11] [ 6] [931120] +07:52:32 [ 12] [ 6] [075023] +07:52:32 [ 13] [ 4] [0320] +07:52:32 [ 15] [ 4] [0320] +07:52:32 [ 18] [ 4] [6011] +07:52:32 [ 19] [ 3] [418] +07:52:32 [ 32] [ 6] [668899] +07:52:32 [ 35] [ 32] [6213543000242155=491212014215813] +07:52:32 [ 37] [ 12] [507901972357] +07:52:32 [ 38] [ 6] [489317] +07:52:32 [ 39] [ 2] [00] +07:52:32 [ 41] [ 8] [03012003] +07:52:32 [ 49] [ 3] [418] +07:52:32 [ 54] [ 40] [0001418C0004100000000002418C000410000000] +07:52:32 ============================================================================ +07:52:32 Sending to : +07:52:32 ============================================================================ +07:52:32 + + +waiting on router queue for slot.... +07:52:34 ============================================================================ +07:52:34 Slot Id : <484> +07:52:34 Transaction Type : RESPONSE +07:52:34 Received From : +07:52:34 ============================================================================ +07:52:34 FNo. Len. Field Value +07:52:34 ============================================================================ +07:52:34 [ 1] [ 4] [0210] +07:52:34 [ 2] [ 16] [6213543000242155] +07:52:34 [ 3] [ 6] [300000] +07:52:34 [ 4] [ 12] [000000000000] +07:52:34 [ 7] [ 10] [0320075023] +07:52:34 [ 11] [ 6] [931120] +07:52:34 [ 12] [ 6] [075023] +07:52:34 [ 13] [ 4] [0320] +07:52:34 [ 15] [ 4] [0320] +07:52:34 [ 18] [ 4] [6011] +07:52:34 [ 19] [ 3] [418] +07:52:34 [ 32] [ 6] [668899] +07:52:34 [ 35] [ 32] [6213543000242155=491212014215813] +07:52:34 [ 37] [ 12] [507901972357] +07:52:34 [ 38] [ 6] [489317] +07:52:34 [ 39] [ 2] [00] +07:52:34 [ 41] [ 8] [03012003] +07:52:34 [ 49] [ 3] [418] +07:52:34 [ 54] [ 40] [0001418C0004100000000002418C000410000000] +07:52:34 ============================================================================ +07:52:34 Calculate Source COMM Id = 4 +07:52:34 ============================================================================ +07:52:34 + + +waiting on router queue for slot.... +07:52:42 ============================================================================ +07:52:42 Slot Id : <448> +07:52:42 Transaction Type : REQUEST +07:52:42 Received From : +07:52:42 ============================================================================ +07:52:42 FNo. Len. Field Value +07:52:42 ============================================================================ +07:52:42 [ 1] [ 4] [0800] +07:52:42 [ 7] [ 10] [0320125150] +07:52:42 [ 11] [ 6] [155268] +07:52:42 [ 70] [ 3] [301] +07:52:42 ============================================================================ +07:52:42 + + +waiting on router queue for slot.... +07:52:42 Sending to : +07:52:42 ============================================================================ +07:52:42 ============================================================================ +07:52:42 Slot Id : <448> +07:52:42 Transaction Type : RESPONSE +07:52:42 Received From : +07:52:42 ============================================================================ +07:52:42 FNo. Len. Field Value +07:52:42 ============================================================================ +07:52:42 [ 1] [ 4] [0810] +07:52:42 [ 7] [ 10] [0320125150] +07:52:42 [ 11] [ 6] [155268] +07:52:42 [ 39] [ 2] [00] +07:52:42 [ 70] [ 3] [301] +07:52:42 ============================================================================ +07:52:42 Calculate Source COMM Id = 2 +07:52:42 ============================================================================ +07:52:42 + + +waiting on router queue for slot.... +07:52:49 ============================================================================ +07:52:49 Slot Id : <471> +07:52:49 Transaction Type : REQUEST +07:52:49 Received From : +07:52:49 ============================================================================ +07:52:49 FNo. Len. Field Value +07:52:49 ============================================================================ +07:52:49 [ 1] [ 4] [0200] +07:52:49 [ 2] [ 16] [6213544002022223] +07:52:49 [ 3] [ 6] [010000] +07:52:49 [ 4] [ 12] [000035000000] +07:52:49 [ 7] [ 10] [0320080037] +07:52:49 [ 11] [ 6] [177305] +07:52:49 [ 12] [ 6] [080037] +07:52:49 [ 13] [ 4] [0320] +07:52:49 [ 14] [ 4] [4912] +07:52:49 [ 15] [ 4] [0320] +07:52:49 [ 18] [ 4] [6011] +07:52:49 [ 22] [ 3] [900] +07:52:49 [ 25] [ 2] [02] +07:52:49 [ 28] [ 9] [D00002000] +07:52:49 [ 32] [ 6] [220699] +07:52:49 [ 35] [ 32] [6213544002022223=491212012222970] +07:52:49 [ 37] [ 12] [507900010185] +07:52:49 [ 41] [ 8] [01000100] +07:52:49 [ 42] [ 15] [APTRA ] +07:52:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:52:49 [ 49] [ 3] [418] +07:52:49 [ 52] [ 16] [AD1D980C3069B397] +07:52:49 ============================================================================ +07:52:49 + + +waiting on router queue for slot.... +07:52:49 Sending to : +07:52:49 ============================================================================ +07:52:49 Sending to : +07:52:49 ============================================================================ +07:52:50 ============================================================================ +07:52:50 Slot Id : <471> +07:52:50 Transaction Type : REQUEST +07:52:50 Received From : +07:52:50 ============================================================================ +07:52:50 FNo. Len. Field Value +07:52:50 ============================================================================ +07:52:50 [ 1] [ 4] [0200] +07:52:50 [ 2] [ 16] [6213544002022223] +07:52:50 [ 3] [ 6] [010000] +07:52:50 [ 4] [ 12] [000035000000] +07:52:50 [ 7] [ 10] [0320080037] +07:52:50 [ 11] [ 6] [177305] +07:52:50 [ 12] [ 6] [080037] +07:52:50 [ 13] [ 4] [0320] +07:52:50 [ 14] [ 4] [4912] +07:52:50 [ 15] [ 4] [0320] +07:52:50 [ 18] [ 4] [6011] +07:52:50 [ 22] [ 3] [900] +07:52:50 [ 25] [ 2] [02] +07:52:50 [ 28] [ 9] [D00002000] +07:52:50 [ 32] [ 6] [220699] +07:52:50 [ 35] [ 32] [6213544002022223=491212012222970] +07:52:50 [ 37] [ 12] [507900010185] +07:52:50 [ 41] [ 8] [01000100] +07:52:50 [ 42] [ 15] [APTRA ] +07:52:50 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:52:50 [ 49] [ 3] [418] +07:52:50 [ 52] [ 16] [AD1D980C3069B397] +07:52:50 ============================================================================ +07:52:50 + + +waiting on router queue for slot.... +07:52:50 Sending to : +07:52:50 ============================================================================ +07:52:50 ============================================================================ +07:52:50 Slot Id : <471> +07:52:50 Transaction Type : REQUEST +07:52:50 Received From : +07:52:50 ============================================================================ +07:52:50 FNo. Len. Field Value +07:52:50 ============================================================================ +07:52:50 [ 1] [ 4] [0200] +07:52:50 [ 2] [ 16] [6213544002022223] +07:52:50 [ 3] [ 6] [010000] +07:52:50 [ 4] [ 12] [000035000000] +07:52:50 [ 7] [ 10] [0320080037] +07:52:50 [ 11] [ 6] [177305] +07:52:50 [ 12] [ 6] [080037] +07:52:50 [ 13] [ 4] [0320] +07:52:50 [ 14] [ 4] [4912] +07:52:50 [ 15] [ 4] [0320] +07:52:50 [ 18] [ 4] [6011] +07:52:50 [ 22] [ 3] [900] +07:52:50 [ 25] [ 2] [02] +07:52:50 [ 28] [ 9] [D00002000] +07:52:50 [ 32] [ 6] [220699] +07:52:50 [ 35] [ 32] [6213544002022223=491212012222970] +07:52:50 [ 37] [ 12] [507900010185] +07:52:50 [ 41] [ 8] [01000100] +07:52:50 [ 42] [ 15] [APTRA ] +07:52:50 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:52:50 [ 49] [ 3] [418] +07:52:50 [ 52] [ 16] [004945E53FCFB5AC] +07:52:50 ============================================================================ +07:52:50 + + +waiting on router queue for slot.... +07:52:50 Sending to : <0> +07:52:50 ============================================================================ +07:52:50 ============================================================================ +07:52:50 Slot Id : <471> +07:52:50 Transaction Type : RESPONSE +07:52:50 Received From : +07:52:50 ============================================================================ +07:52:50 FNo. Len. Field Value +07:52:50 ============================================================================ +07:52:50 [ 1] [ 4] [0210] +07:52:50 [ 2] [ 16] [6213544002022223] +07:52:50 [ 3] [ 6] [010000] +07:52:50 [ 4] [ 12] [000035000000] +07:52:50 [ 7] [ 10] [0320080037] +07:52:50 [ 11] [ 6] [177305] +07:52:50 [ 12] [ 6] [080037] +07:52:50 [ 13] [ 4] [0320] +07:52:50 [ 15] [ 4] [0320] +07:52:50 [ 18] [ 4] [6011] +07:52:50 [ 32] [ 6] [220699] +07:52:50 [ 35] [ 32] [6213544002022223=491212012222970] +07:52:50 [ 37] [ 12] [507900010185] +07:52:50 [ 38] [ 6] [361206] +07:52:50 [ 39] [ 2] [00] +07:52:50 [ 41] [ 8] [01000100] +07:52:50 [ 49] [ 3] [418] +07:52:50 [ 54] [ 40] [0001418C0000052111840002418C000005211184] +07:52:50 ============================================================================ +07:52:50 Sending to : +07:52:50 ============================================================================ +07:52:50 + + +waiting on router queue for slot.... +07:52:50 ============================================================================ +07:52:50 Slot Id : <480> +07:52:50 Transaction Type : REQUEST +07:52:50 Received From : +07:52:50 ============================================================================ +07:52:50 FNo. Len. Field Value +07:52:50 ============================================================================ +07:52:50 [ 1] [ 4] [0800] +07:52:50 [ 2] [ 5] [02531] +07:52:50 [ 3] [ 6] [579078] +07:52:50 [ 7] [ 10] [0320005250] +07:52:50 [ 11] [ 6] [806869] +07:52:50 [ 15] [ 10] [0320005250] +07:52:50 [ 37] [ 11] [57907806869] +07:52:50 [ 70] [ 3] [001] +07:52:50 ============================================================================ +07:52:50 + + +waiting on router queue for slot.... +07:52:50 ============================================================================ +07:52:50 Slot Id : <480> +07:52:50 Transaction Type : RESPONSE +07:52:50 Received From : +07:52:50 ============================================================================ +07:52:50 FNo. Len. Field Value +07:52:50 ============================================================================ +07:52:50 [ 1] [ 4] [0810] +07:52:50 [ 7] [ 10] [0320005250] +07:52:50 [ 11] [ 6] [806869] +07:52:50 [ 15] [ 4] [0320] +07:52:50 [ 37] [ 12] [57907806869] +07:52:50 [ 39] [ 2] [00] +07:52:50 [ 70] [ 3] [001] +07:52:50 ============================================================================ +07:52:50 Sending to : +07:52:50 ============================================================================ +07:52:50 + + +waiting on router queue for slot.... +07:52:52 ============================================================================ +07:52:52 Slot Id : <471> +07:52:52 Transaction Type : RESPONSE +07:52:52 Received From : +07:52:52 ============================================================================ +07:52:52 FNo. Len. Field Value +07:52:52 ============================================================================ +07:52:52 [ 1] [ 4] [0210] +07:52:52 [ 2] [ 16] [6213544002022223] +07:52:52 [ 3] [ 6] [010000] +07:52:52 [ 4] [ 12] [000035000000] +07:52:52 [ 7] [ 10] [0320080037] +07:52:52 [ 11] [ 6] [177305] +07:52:52 [ 12] [ 6] [080037] +07:52:52 [ 13] [ 4] [0320] +07:52:52 [ 15] [ 4] [0320] +07:52:52 [ 18] [ 4] [6011] +07:52:52 [ 32] [ 6] [220699] +07:52:52 [ 35] [ 32] [6213544002022223=491212012222970] +07:52:52 [ 37] [ 12] [507900010185] +07:52:52 [ 38] [ 6] [361206] +07:52:52 [ 39] [ 2] [00] +07:52:52 [ 41] [ 8] [01000100] +07:52:52 [ 49] [ 3] [418] +07:52:52 [ 54] [ 40] [0001418C0000052111840002418C000005211184] +07:52:52 ============================================================================ +07:52:52 Calculate Source COMM Id = 1 +07:52:52 ============================================================================ +07:52:52 + + +waiting on router queue for slot.... +07:52:58 ============================================================================ +07:52:58 Slot Id : <479> +07:52:58 Transaction Type : REQUEST +07:52:58 Received From : +07:52:58 ============================================================================ +07:52:58 FNo. Len. Field Value +07:52:58 ============================================================================ +07:52:58 [ 1] [ 4] [0800] +07:52:58 [ 7] [ 10] [0320125206] +07:52:58 [ 11] [ 6] [155269] +07:52:58 [ 70] [ 3] [301] +07:52:58 ============================================================================ +07:52:58 + + +waiting on router queue for slot.... +07:52:58 Sending to : +07:52:58 ============================================================================ +07:52:58 ============================================================================ +07:52:58 Slot Id : <479> +07:52:58 Transaction Type : RESPONSE +07:52:58 Received From : +07:52:58 ============================================================================ +07:52:58 FNo. Len. Field Value +07:52:58 ============================================================================ +07:52:58 [ 1] [ 4] [0810] +07:52:58 [ 7] [ 10] [0320125206] +07:52:58 [ 11] [ 6] [155269] +07:52:58 [ 39] [ 2] [00] +07:52:58 [ 70] [ 3] [301] +07:52:58 ============================================================================ +07:52:58 Calculate Source COMM Id = 2 +07:52:58 ============================================================================ +07:52:58 + + +waiting on router queue for slot.... +07:53:07 ============================================================================ +07:53:07 Slot Id : <498> +07:53:07 Transaction Type : REQUEST +07:53:07 Received From : +07:53:07 ============================================================================ +07:53:07 FNo. Len. Field Value +07:53:07 ============================================================================ +07:53:07 [ 1] [ 4] [0200] +07:53:07 [ 2] [ 16] [6213543000242155] +07:53:07 [ 3] [ 6] [302000] +07:53:07 [ 4] [ 12] [000000000000] +07:53:07 [ 7] [ 10] [0320075058] +07:53:07 [ 11] [ 6] [931154] +07:53:07 [ 12] [ 6] [075058] +07:53:07 [ 13] [ 4] [0320] +07:53:07 [ 15] [ 4] [0320] +07:53:07 [ 18] [ 4] [6011] +07:53:07 [ 19] [ 3] [418] +07:53:07 [ 22] [ 3] [021] +07:53:07 [ 25] [ 2] [01] +07:53:07 [ 28] [ 9] [D00000000] +07:53:07 [ 32] [ 6] [668899] +07:53:07 [ 35] [ 32] [6213543000242155=491212014215813] +07:53:07 [ 37] [ 12] [507901972358] +07:53:07 [ 41] [ 8] [03012003] +07:53:07 [ 42] [ 15] [APT ] +07:53:07 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:53:07 [ 49] [ 3] [418] +07:53:07 [ 52] [ 16] [CA1423064F3390AC] +07:53:07 ============================================================================ +07:53:07 + + +waiting on router queue for slot.... +07:53:07 Sending to : +07:53:07 ============================================================================ +07:53:07 Sending to : +07:53:07 ============================================================================ +07:53:07 ============================================================================ +07:53:07 Slot Id : <498> +07:53:07 Transaction Type : REQUEST +07:53:07 Received From : +07:53:07 ============================================================================ +07:53:07 FNo. Len. Field Value +07:53:07 ============================================================================ +07:53:07 [ 1] [ 4] [0200] +07:53:07 [ 2] [ 16] [6213543000242155] +07:53:07 [ 3] [ 6] [302000] +07:53:07 [ 4] [ 12] [000000000000] +07:53:07 [ 7] [ 10] [0320075058] +07:53:07 [ 11] [ 6] [931154] +07:53:07 [ 12] [ 6] [075058] +07:53:07 [ 13] [ 4] [0320] +07:53:07 [ 15] [ 4] [0320] +07:53:07 [ 18] [ 4] [6011] +07:53:07 [ 19] [ 3] [418] +07:53:07 [ 22] [ 3] [021] +07:53:07 [ 25] [ 2] [01] +07:53:07 [ 28] [ 9] [D00000000] +07:53:07 [ 32] [ 6] [668899] +07:53:07 [ 35] [ 32] [6213543000242155=491212014215813] +07:53:07 [ 37] [ 12] [507901972358] +07:53:07 [ 41] [ 8] [03012003] +07:53:07 [ 42] [ 15] [APT ] +07:53:07 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:53:07 [ 49] [ 3] [418] +07:53:07 [ 52] [ 16] [CA1423064F3390AC] +07:53:07 ============================================================================ +07:53:07 + + +waiting on router queue for slot.... +07:53:07 Sending to : +07:53:07 ============================================================================ +07:53:07 ============================================================================ +07:53:07 Slot Id : <498> +07:53:07 Transaction Type : REQUEST +07:53:07 Received From : +07:53:07 ============================================================================ +07:53:07 FNo. Len. Field Value +07:53:07 ============================================================================ +07:53:07 [ 1] [ 4] [0200] +07:53:07 [ 2] [ 16] [6213543000242155] +07:53:07 [ 3] [ 6] [302000] +07:53:07 [ 4] [ 12] [000000000000] +07:53:07 [ 7] [ 10] [0320075058] +07:53:07 [ 11] [ 6] [931154] +07:53:07 [ 12] [ 6] [075058] +07:53:07 [ 13] [ 4] [0320] +07:53:07 [ 15] [ 4] [0320] +07:53:07 [ 18] [ 4] [6011] +07:53:07 [ 19] [ 3] [418] +07:53:07 [ 22] [ 3] [021] +07:53:07 [ 25] [ 2] [01] +07:53:07 [ 28] [ 9] [D00000000] +07:53:07 [ 32] [ 6] [668899] +07:53:07 [ 35] [ 32] [6213543000242155=491212014215813] +07:53:07 [ 37] [ 12] [507901972358] +07:53:07 [ 41] [ 8] [03012003] +07:53:07 [ 42] [ 15] [APT ] +07:53:07 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:53:07 [ 49] [ 3] [418] +07:53:07 [ 52] [ 16] [ACC9C7E711E6067E] +07:53:07 ============================================================================ +07:53:07 + + +waiting on router queue for slot.... +07:53:07 Sending to : <0> +07:53:07 ============================================================================ +07:53:07 ============================================================================ +07:53:07 Slot Id : <498> +07:53:07 Transaction Type : RESPONSE +07:53:07 Received From : +07:53:07 ============================================================================ +07:53:07 FNo. Len. Field Value +07:53:07 ============================================================================ +07:53:07 [ 1] [ 4] [0210] +07:53:07 [ 2] [ 16] [6213543000242155] +07:53:07 [ 3] [ 6] [302000] +07:53:07 [ 4] [ 12] [000000000000] +07:53:07 [ 7] [ 10] [0320075058] +07:53:07 [ 11] [ 6] [931154] +07:53:07 [ 12] [ 6] [075058] +07:53:07 [ 13] [ 4] [0320] +07:53:07 [ 15] [ 4] [0320] +07:53:07 [ 18] [ 4] [6011] +07:53:07 [ 19] [ 3] [418] +07:53:07 [ 32] [ 6] [668899] +07:53:07 [ 35] [ 32] [6213543000242155=491212014215813] +07:53:07 [ 37] [ 12] [507901972358] +07:53:07 [ 38] [ 6] [997300] +07:53:07 [ 39] [ 2] [00] +07:53:07 [ 41] [ 8] [03012003] +07:53:07 [ 49] [ 3] [418] +07:53:07 [ 54] [ 40] [2001418C0004100000002002418C000410000000] +07:53:07 ============================================================================ +07:53:07 Sending to : +07:53:07 ============================================================================ +07:53:07 + + +waiting on router queue for slot.... +07:53:09 ============================================================================ +07:53:09 Slot Id : <498> +07:53:09 Transaction Type : RESPONSE +07:53:09 Received From : +07:53:09 ============================================================================ +07:53:09 FNo. Len. Field Value +07:53:09 ============================================================================ +07:53:09 [ 1] [ 4] [0210] +07:53:09 [ 2] [ 16] [6213543000242155] +07:53:09 [ 3] [ 6] [302000] +07:53:09 [ 4] [ 12] [000000000000] +07:53:09 [ 7] [ 10] [0320075058] +07:53:09 [ 11] [ 6] [931154] +07:53:09 [ 12] [ 6] [075058] +07:53:09 [ 13] [ 4] [0320] +07:53:09 [ 15] [ 4] [0320] +07:53:09 [ 18] [ 4] [6011] +07:53:09 [ 19] [ 3] [418] +07:53:09 [ 32] [ 6] [668899] +07:53:09 [ 35] [ 32] [6213543000242155=491212014215813] +07:53:09 [ 37] [ 12] [507901972358] +07:53:09 [ 38] [ 6] [997300] +07:53:09 [ 39] [ 2] [00] +07:53:09 [ 41] [ 8] [03012003] +07:53:09 [ 49] [ 3] [418] +07:53:09 [ 54] [ 40] [2001418C0004100000002002418C000410000000] +07:53:09 ============================================================================ +07:53:09 Calculate Source COMM Id = 4 +07:53:09 ============================================================================ +07:53:09 + + +waiting on router queue for slot.... +07:53:09 ============================================================================ +07:53:09 Slot Id : <0> +07:53:09 Transaction Type : REQUEST +07:53:09 Received From : +07:53:09 ============================================================================ +07:53:09 FNo. Len. Field Value +07:53:09 ============================================================================ +07:53:09 [ 1] [ 4] [0800] +07:53:09 [ 7] [ 10] [0320125217] +07:53:09 [ 11] [ 6] [155270] +07:53:09 [ 70] [ 3] [301] +07:53:09 ============================================================================ +07:53:09 + + +waiting on router queue for slot.... +07:53:09 Sending to : +07:53:09 ============================================================================ +07:53:09 ============================================================================ +07:53:09 Slot Id : <0> +07:53:09 Transaction Type : RESPONSE +07:53:09 Received From : +07:53:09 ============================================================================ +07:53:09 FNo. Len. Field Value +07:53:09 ============================================================================ +07:53:09 [ 1] [ 4] [0810] +07:53:09 [ 7] [ 10] [0320125217] +07:53:09 [ 11] [ 6] [155270] +07:53:09 [ 39] [ 2] [00] +07:53:09 [ 70] [ 3] [301] +07:53:09 ============================================================================ +07:53:09 Calculate Source COMM Id = 2 +07:53:09 ============================================================================ +07:53:09 + + +waiting on router queue for slot.... +07:53:26 ============================================================================ +07:53:26 Slot Id : <2> +07:53:26 Transaction Type : REQUEST +07:53:26 Received From : +07:53:26 ============================================================================ +07:53:26 FNo. Len. Field Value +07:53:26 ============================================================================ +07:53:26 [ 1] [ 4] [0800] +07:53:26 [ 7] [ 10] [0320125234] +07:53:26 [ 11] [ 6] [155271] +07:53:26 [ 70] [ 3] [301] +07:53:26 ============================================================================ +07:53:26 + + +waiting on router queue for slot.... +07:53:26 Sending to : +07:53:26 ============================================================================ +07:53:26 ============================================================================ +07:53:26 Slot Id : <2> +07:53:26 Transaction Type : RESPONSE +07:53:26 Received From : +07:53:26 ============================================================================ +07:53:26 FNo. Len. Field Value +07:53:26 ============================================================================ +07:53:26 [ 1] [ 4] [0810] +07:53:26 [ 7] [ 10] [0320125234] +07:53:26 [ 11] [ 6] [155271] +07:53:26 [ 39] [ 2] [00] +07:53:26 [ 70] [ 3] [301] +07:53:26 ============================================================================ +07:53:26 Calculate Source COMM Id = 2 +07:53:26 ============================================================================ +07:53:26 + + +waiting on router queue for slot.... +07:53:28 ============================================================================ +07:53:28 Slot Id : <493> +07:53:28 Transaction Type : REQUEST +07:53:28 Received From : +07:53:28 ============================================================================ +07:53:28 FNo. Len. Field Value +07:53:28 ============================================================================ +07:53:28 [ 1] [ 4] [0800] +07:53:28 [ 7] [ 10] [0320150518] +07:53:28 [ 11] [ 6] [080518] +07:53:28 [ 37] [ 12] [57908080518] +07:53:28 [ 70] [ 3] [301] +07:53:28 ============================================================================ +07:53:28 + + +waiting on router queue for slot.... +07:53:28 Sending to : +07:53:28 ============================================================================ +07:53:28 ============================================================================ +07:53:28 Slot Id : <493> +07:53:28 Transaction Type : RESPONSE +07:53:28 Received From : +07:53:28 ============================================================================ +07:53:28 FNo. Len. Field Value +07:53:28 ============================================================================ +07:53:28 [ 1] [ 4] [0810] +07:53:28 [ 7] [ 10] [0320150518] +07:53:28 [ 11] [ 6] [080518] +07:53:28 [ 37] [ 12] [579080805180] +07:53:28 [ 39] [ 2] [00] +07:53:28 [ 70] [ 3] [810] +07:53:28 ============================================================================ +07:53:28 Calculate Source COMM Id = 6 +07:53:28 ============================================================================ +07:53:28 + + +waiting on router queue for slot.... +07:53:33 ============================================================================ +07:53:33 Slot Id : <473> +07:53:33 Transaction Type : REQUEST +07:53:33 Received From : +07:53:33 ============================================================================ +07:53:33 FNo. Len. Field Value +07:53:33 ============================================================================ +07:53:33 [ 1] [ 4] [0200] +07:53:33 [ 2] [ 16] [6213545001028699] +07:53:33 [ 3] [ 6] [301000] +07:53:33 [ 4] [ 12] [000000000000] +07:53:33 [ 7] [ 10] [0320075125] +07:53:33 [ 11] [ 6] [931172] +07:53:33 [ 12] [ 6] [075125] +07:53:33 [ 13] [ 4] [0320] +07:53:33 [ 15] [ 4] [0320] +07:53:33 [ 18] [ 4] [6011] +07:53:33 [ 19] [ 3] [418] +07:53:33 [ 22] [ 3] [021] +07:53:33 [ 25] [ 2] [01] +07:53:33 [ 28] [ 9] [D00000000] +07:53:33 [ 32] [ 6] [668899] +07:53:33 [ 35] [ 32] [6213545001028699=491212012869624] +07:53:33 [ 37] [ 12] [507901196821] +07:53:33 [ 41] [ 8] [03020011] +07:53:33 [ 42] [ 15] [APT ] +07:53:33 [ 43] [ 40] [ SOUTHERN BUS STATION VTE ] +07:53:33 [ 49] [ 3] [418] +07:53:33 [ 52] [ 16] [2DED30FDA1A63F74] +07:53:33 ============================================================================ +07:53:33 + + +waiting on router queue for slot.... +07:53:33 Sending to : +07:53:33 ============================================================================ +07:53:33 Sending to : +07:53:33 ============================================================================ +07:53:34 ============================================================================ +07:53:34 Slot Id : <473> +07:53:34 Transaction Type : REQUEST +07:53:34 Received From : +07:53:34 ============================================================================ +07:53:34 FNo. Len. Field Value +07:53:34 ============================================================================ +07:53:34 [ 1] [ 4] [0200] +07:53:34 [ 2] [ 16] [6213545001028699] +07:53:34 [ 3] [ 6] [301000] +07:53:34 [ 4] [ 12] [000000000000] +07:53:34 [ 7] [ 10] [0320075125] +07:53:34 [ 11] [ 6] [931172] +07:53:34 [ 12] [ 6] [075125] +07:53:34 [ 13] [ 4] [0320] +07:53:34 [ 15] [ 4] [0320] +07:53:34 [ 18] [ 4] [6011] +07:53:34 [ 19] [ 3] [418] +07:53:34 [ 22] [ 3] [021] +07:53:34 [ 25] [ 2] [01] +07:53:34 [ 28] [ 9] [D00000000] +07:53:34 [ 32] [ 6] [668899] +07:53:34 [ 35] [ 32] [6213545001028699=491212012869624] +07:53:34 [ 37] [ 12] [507901196821] +07:53:34 [ 41] [ 8] [03020011] +07:53:34 [ 42] [ 15] [APT ] +07:53:34 [ 43] [ 40] [ SOUTHERN BUS STATION VTE ] +07:53:34 [ 49] [ 3] [418] +07:53:34 [ 52] [ 16] [2DED30FDA1A63F74] +07:53:34 ============================================================================ +07:53:34 + + +waiting on router queue for slot.... +07:53:34 Sending to : +07:53:34 ============================================================================ +07:53:34 ============================================================================ +07:53:34 Slot Id : <473> +07:53:34 Transaction Type : REQUEST +07:53:34 Received From : +07:53:34 ============================================================================ +07:53:34 FNo. Len. Field Value +07:53:34 ============================================================================ +07:53:34 [ 1] [ 4] [0200] +07:53:34 [ 2] [ 16] [6213545001028699] +07:53:34 [ 3] [ 6] [301000] +07:53:34 [ 4] [ 12] [000000000000] +07:53:34 [ 7] [ 10] [0320075125] +07:53:34 [ 11] [ 6] [931172] +07:53:34 [ 12] [ 6] [075125] +07:53:34 [ 13] [ 4] [0320] +07:53:34 [ 15] [ 4] [0320] +07:53:34 [ 18] [ 4] [6011] +07:53:34 [ 19] [ 3] [418] +07:53:34 [ 22] [ 3] [021] +07:53:34 [ 25] [ 2] [01] +07:53:34 [ 28] [ 9] [D00000000] +07:53:34 [ 32] [ 6] [668899] +07:53:34 [ 35] [ 32] [6213545001028699=491212012869624] +07:53:34 [ 37] [ 12] [507901196821] +07:53:34 [ 41] [ 8] [03020011] +07:53:34 [ 42] [ 15] [APT ] +07:53:34 [ 43] [ 40] [ SOUTHERN BUS STATION VTE ] +07:53:34 [ 49] [ 3] [418] +07:53:34 [ 52] [ 16] [348AD603F2A17E51] +07:53:34 ============================================================================ +07:53:34 + + +waiting on router queue for slot.... +07:53:34 Sending to : <0> +07:53:34 ============================================================================ +07:53:34 ============================================================================ +07:53:34 Slot Id : <473> +07:53:34 Transaction Type : RESPONSE +07:53:34 Received From : +07:53:34 ============================================================================ +07:53:34 FNo. Len. Field Value +07:53:34 ============================================================================ +07:53:34 [ 1] [ 4] [0210] +07:53:34 [ 2] [ 16] [6213545001028699] +07:53:34 [ 3] [ 6] [301000] +07:53:34 [ 4] [ 12] [000000000000] +07:53:34 [ 7] [ 10] [0320075125] +07:53:34 [ 11] [ 6] [931172] +07:53:34 [ 12] [ 6] [075125] +07:53:34 [ 13] [ 4] [0320] +07:53:34 [ 15] [ 4] [0320] +07:53:34 [ 18] [ 4] [6011] +07:53:34 [ 19] [ 3] [418] +07:53:34 [ 32] [ 6] [668899] +07:53:34 [ 35] [ 32] [6213545001028699=491212012869624] +07:53:34 [ 37] [ 12] [507901196821] +07:53:34 [ 38] [ 6] [582347] +07:53:34 [ 39] [ 2] [00] +07:53:34 [ 41] [ 8] [03020011] +07:53:34 [ 49] [ 3] [418] +07:53:34 [ 54] [ 40] [1001418C0001076159851002418C000107615985] +07:53:34 ============================================================================ +07:53:34 Sending to : +07:53:34 ============================================================================ +07:53:34 + + +waiting on router queue for slot.... +07:53:35 ============================================================================ +07:53:35 Slot Id : <1> +07:53:35 Transaction Type : REQUEST +07:53:35 Received From : +07:53:35 ============================================================================ +07:53:35 FNo. Len. Field Value +07:53:35 ============================================================================ +07:53:35 [ 1] [ 4] [0800] +07:53:35 [ 7] [ 10] [0320005332] +07:53:35 [ 11] [ 6] [058063] +07:53:35 [ 37] [ 12] [507907058063] +07:53:35 [ 70] [ 3] [001] +07:53:35 ============================================================================ +07:53:35 + + +waiting on router queue for slot.... +07:53:35 Sending to : +07:53:35 ============================================================================ +07:53:35 ============================================================================ +07:53:35 Slot Id : <1> +07:53:35 Transaction Type : RESPONSE +07:53:35 Received From : +07:53:35 ============================================================================ +07:53:35 FNo. Len. Field Value +07:53:35 ============================================================================ +07:53:35 [ 1] [ 4] [0810] +07:53:35 [ 7] [ 10] [0320005332] +07:53:35 [ 11] [ 6] [058063] +07:53:35 [ 37] [ 12] [507907058063] +07:53:35 [ 39] [ 2] [00] +07:53:35 [ 70] [ 3] [001] +07:53:35 ============================================================================ +07:53:35 Calculate Source COMM Id = 0 +07:53:35 ============================================================================ +07:53:35 + + +waiting on router queue for slot.... +07:53:36 ============================================================================ +07:53:36 Slot Id : <473> +07:53:36 Transaction Type : RESPONSE +07:53:36 Received From : +07:53:36 ============================================================================ +07:53:36 FNo. Len. Field Value +07:53:36 ============================================================================ +07:53:36 [ 1] [ 4] [0210] +07:53:36 [ 2] [ 16] [6213545001028699] +07:53:36 [ 3] [ 6] [301000] +07:53:36 [ 4] [ 12] [000000000000] +07:53:36 [ 7] [ 10] [0320075125] +07:53:36 [ 11] [ 6] [931172] +07:53:36 [ 12] [ 6] [075125] +07:53:36 [ 13] [ 4] [0320] +07:53:36 [ 15] [ 4] [0320] +07:53:36 [ 18] [ 4] [6011] +07:53:36 [ 19] [ 3] [418] +07:53:36 [ 32] [ 6] [668899] +07:53:36 [ 35] [ 32] [6213545001028699=491212012869624] +07:53:36 [ 37] [ 12] [507901196821] +07:53:36 [ 38] [ 6] [582347] +07:53:36 [ 39] [ 2] [00] +07:53:36 [ 41] [ 8] [03020011] +07:53:36 [ 49] [ 3] [418] +07:53:36 [ 54] [ 40] [1001418C0001076159851002418C000107615985] +07:53:36 ============================================================================ +07:53:36 Calculate Source COMM Id = 4 +07:53:36 ============================================================================ +07:53:36 + + +waiting on router queue for slot.... +07:53:38 ============================================================================ +07:53:38 Slot Id : <4> +07:53:38 Transaction Type : REQUEST +07:53:38 Received From : +07:53:38 ============================================================================ +07:53:38 FNo. Len. Field Value +07:53:38 ============================================================================ +07:53:38 [ 1] [ 4] [0800] +07:53:38 [ 7] [ 10] [0320125245] +07:53:38 [ 11] [ 6] [155272] +07:53:38 [ 70] [ 3] [301] +07:53:38 ============================================================================ +07:53:38 + + +waiting on router queue for slot.... +07:53:38 Sending to : +07:53:38 ============================================================================ +07:53:38 ============================================================================ +07:53:38 Slot Id : <4> +07:53:38 Transaction Type : RESPONSE +07:53:38 Received From : +07:53:38 ============================================================================ +07:53:38 FNo. Len. Field Value +07:53:38 ============================================================================ +07:53:38 [ 1] [ 4] [0810] +07:53:38 [ 7] [ 10] [0320125245] +07:53:38 [ 11] [ 6] [155272] +07:53:38 [ 39] [ 2] [00] +07:53:38 [ 70] [ 3] [301] +07:53:38 ============================================================================ +07:53:38 Calculate Source COMM Id = 2 +07:53:38 ============================================================================ +07:53:38 + + +waiting on router queue for slot.... +07:53:52 ============================================================================ +07:53:52 Slot Id : <474> +07:53:52 Transaction Type : REQUEST +07:53:52 Received From : +07:53:52 ============================================================================ +07:53:52 FNo. Len. Field Value +07:53:52 ============================================================================ +07:53:52 [ 1] [ 4] [0800] +07:53:52 [ 2] [ 5] [02531] +07:53:52 [ 3] [ 6] [579078] +07:53:52 [ 7] [ 10] [0320005352] +07:53:52 [ 11] [ 6] [806870] +07:53:52 [ 15] [ 10] [0320005352] +07:53:52 [ 37] [ 11] [57907806870] +07:53:52 [ 70] [ 3] [001] +07:53:52 ============================================================================ +07:53:52 + + +waiting on router queue for slot.... +07:53:52 ============================================================================ +07:53:52 Slot Id : <474> +07:53:52 Transaction Type : RESPONSE +07:53:52 Received From : +07:53:52 ============================================================================ +07:53:52 FNo. Len. Field Value +07:53:52 ============================================================================ +07:53:52 [ 1] [ 4] [0810] +07:53:52 [ 7] [ 10] [0320005352] +07:53:52 [ 11] [ 6] [806870] +07:53:52 [ 15] [ 4] [0320] +07:53:52 [ 37] [ 12] [57907806870] +07:53:52 [ 39] [ 2] [00] +07:53:52 [ 70] [ 3] [001] +07:53:52 ============================================================================ +07:53:52 Sending to : +07:53:52 ============================================================================ +07:53:52 + + +waiting on router queue for slot.... +07:53:53 ============================================================================ +07:53:53 Slot Id : <483> +07:53:53 Transaction Type : REQUEST +07:53:53 Received From : +07:53:53 ============================================================================ +07:53:53 FNo. Len. Field Value +07:53:53 ============================================================================ +07:53:53 [ 1] [ 4] [0800] +07:53:53 [ 7] [ 10] [0320125301] +07:53:53 [ 11] [ 6] [155273] +07:53:53 [ 70] [ 3] [301] +07:53:53 ============================================================================ +07:53:53 + + +waiting on router queue for slot.... +07:53:53 Sending to : +07:53:53 ============================================================================ +07:53:53 ============================================================================ +07:53:53 Slot Id : <483> +07:53:53 Transaction Type : RESPONSE +07:53:53 Received From : +07:53:53 ============================================================================ +07:53:53 FNo. Len. Field Value +07:53:53 ============================================================================ +07:53:53 [ 1] [ 4] [0810] +07:53:53 [ 7] [ 10] [0320125301] +07:53:53 [ 11] [ 6] [155273] +07:53:53 [ 39] [ 2] [00] +07:53:53 [ 70] [ 3] [301] +07:53:53 ============================================================================ +07:53:53 Calculate Source COMM Id = 2 +07:53:53 ============================================================================ +07:53:53 + + +waiting on router queue for slot.... +07:54:00 ============================================================================ +07:54:00 Slot Id : <489> +07:54:00 Transaction Type : REQUEST +07:54:00 Received From : +07:54:00 ============================================================================ +07:54:00 FNo. Len. Field Value +07:54:00 ============================================================================ +07:54:00 [ 1] [ 4] [0200] +07:54:00 [ 2] [ 16] [6213541000725161] +07:54:00 [ 3] [ 6] [301000] +07:54:00 [ 7] [ 10] [0320005308] +07:54:00 [ 11] [ 6] [266936] +07:54:00 [ 12] [ 6] [075308] +07:54:00 [ 13] [ 4] [0320] +07:54:00 [ 14] [ 4] [4912] +07:54:00 [ 15] [ 4] [0320] +07:54:00 [ 18] [ 4] [6011] +07:54:00 [ 19] [ 3] [418] +07:54:00 [ 22] [ 3] [021] +07:54:00 [ 25] [ 2] [01] +07:54:00 [ 32] [ 6] [180893] +07:54:00 [ 35] [ 32] [6213541000725161=491212012516608] +07:54:00 [ 37] [ 12] [507900266936] +07:54:00 [ 41] [ 8] [0527LPBL] +07:54:00 [ 42] [ 15] [999999 ] +07:54:00 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +07:54:00 [ 49] [ 3] [418] +07:54:00 [ 52] [ 16] [60D7E94295BF7384] +07:54:00 ============================================================================ +07:54:00 + + +waiting on router queue for slot.... +07:54:00 Sending to : +07:54:00 ============================================================================ +07:54:00 Sending to : +07:54:00 ============================================================================ +07:54:00 ============================================================================ +07:54:00 Slot Id : <489> +07:54:00 Transaction Type : REQUEST +07:54:00 Received From : +07:54:00 ============================================================================ +07:54:00 FNo. Len. Field Value +07:54:00 ============================================================================ +07:54:00 [ 1] [ 4] [0200] +07:54:00 [ 2] [ 16] [6213541000725161] +07:54:00 [ 3] [ 6] [301000] +07:54:00 [ 7] [ 10] [0320005308] +07:54:00 [ 11] [ 6] [266936] +07:54:00 [ 12] [ 6] [075308] +07:54:00 [ 13] [ 4] [0320] +07:54:00 [ 14] [ 4] [4912] +07:54:00 [ 15] [ 4] [0320] +07:54:00 [ 18] [ 4] [6011] +07:54:00 [ 19] [ 3] [418] +07:54:00 [ 22] [ 3] [021] +07:54:00 [ 25] [ 2] [01] +07:54:00 [ 32] [ 6] [180893] +07:54:00 [ 35] [ 32] [6213541000725161=491212012516608] +07:54:00 [ 37] [ 12] [507900266936] +07:54:00 [ 41] [ 8] [0527LPBL] +07:54:00 [ 42] [ 15] [999999 ] +07:54:00 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +07:54:00 [ 49] [ 3] [418] +07:54:00 [ 52] [ 16] [60D7E94295BF7384] +07:54:00 ============================================================================ +07:54:00 + + +waiting on router queue for slot.... +07:54:00 Sending to : +07:54:00 ============================================================================ +07:54:00 ============================================================================ +07:54:00 Slot Id : <489> +07:54:00 Transaction Type : REQUEST +07:54:00 Received From : +07:54:00 ============================================================================ +07:54:00 FNo. Len. Field Value +07:54:00 ============================================================================ +07:54:00 [ 1] [ 4] [0200] +07:54:00 [ 2] [ 16] [6213541000725161] +07:54:00 [ 3] [ 6] [301000] +07:54:00 [ 7] [ 10] [0320005308] +07:54:00 [ 11] [ 6] [266936] +07:54:00 [ 12] [ 6] [075308] +07:54:00 [ 13] [ 4] [0320] +07:54:00 [ 14] [ 4] [4912] +07:54:00 [ 15] [ 4] [0320] +07:54:00 [ 18] [ 4] [6011] +07:54:00 [ 19] [ 3] [418] +07:54:00 [ 22] [ 3] [021] +07:54:00 [ 25] [ 2] [01] +07:54:00 [ 32] [ 6] [180893] +07:54:00 [ 35] [ 32] [6213541000725161=491212012516608] +07:54:00 [ 37] [ 12] [507900266936] +07:54:00 [ 41] [ 8] [0527LPBL] +07:54:00 [ 42] [ 15] [999999 ] +07:54:00 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +07:54:00 [ 49] [ 3] [418] +07:54:00 [ 52] [ 16] [699FDF224EC0850B] +07:54:00 ============================================================================ +07:54:00 + + +waiting on router queue for slot.... +07:54:00 Sending to : <0> +07:54:00 ============================================================================ +07:54:00 ============================================================================ +07:54:00 Slot Id : <489> +07:54:00 Transaction Type : RESPONSE +07:54:00 Received From : +07:54:00 ============================================================================ +07:54:00 FNo. Len. Field Value +07:54:00 ============================================================================ +07:54:00 [ 1] [ 4] [0210] +07:54:00 [ 2] [ 16] [6213541000725161] +07:54:00 [ 3] [ 6] [301000] +07:54:00 [ 4] [ 12] [000000000000] +07:54:00 [ 7] [ 10] [0320005308] +07:54:00 [ 11] [ 6] [266936] +07:54:00 [ 12] [ 6] [075308] +07:54:00 [ 13] [ 4] [0320] +07:54:00 [ 15] [ 4] [0320] +07:54:00 [ 18] [ 4] [6011] +07:54:00 [ 19] [ 3] [418] +07:54:00 [ 32] [ 6] [180893] +07:54:00 [ 35] [ 32] [6213541000725161=491212012516608] +07:54:00 [ 37] [ 12] [507900266936] +07:54:00 [ 38] [ 6] [940694] +07:54:00 [ 39] [ 2] [00] +07:54:00 [ 41] [ 8] [0527LPBL] +07:54:00 [ 49] [ 3] [418] +07:54:00 [ 54] [ 40] [1001418C0001551976071002418C000155197607] +07:54:00 ============================================================================ +07:54:00 Sending to : +07:54:00 ============================================================================ +07:54:00 + + +waiting on router queue for slot.... +07:54:02 ============================================================================ +07:54:02 Slot Id : <489> +07:54:02 Transaction Type : RESPONSE +07:54:02 Received From : +07:54:02 ============================================================================ +07:54:02 FNo. Len. Field Value +07:54:02 ============================================================================ +07:54:02 [ 1] [ 4] [0210] +07:54:02 [ 2] [ 16] [6213541000725161] +07:54:02 [ 3] [ 6] [301000] +07:54:02 [ 4] [ 12] [000000000000] +07:54:02 [ 7] [ 10] [0320005308] +07:54:02 [ 11] [ 6] [266936] +07:54:02 [ 12] [ 6] [075308] +07:54:02 [ 13] [ 4] [0320] +07:54:02 [ 15] [ 4] [0320] +07:54:02 [ 18] [ 4] [6011] +07:54:02 [ 19] [ 3] [418] +07:54:02 [ 32] [ 6] [180893] +07:54:02 [ 35] [ 32] [6213541000725161=491212012516608] +07:54:02 [ 37] [ 12] [507900266936] +07:54:02 [ 38] [ 6] [940694] +07:54:02 [ 39] [ 2] [00] +07:54:02 [ 41] [ 8] [0527LPBL] +07:54:02 [ 49] [ 3] [418] +07:54:02 [ 54] [ 40] [1001418C0001551976071002418C000155197607] +07:54:02 ============================================================================ +07:54:02 Calculate Source COMM Id = 2 +07:54:02 ============================================================================ +07:54:02 + + +waiting on router queue for slot.... +07:54:15 ============================================================================ +07:54:15 Slot Id : <476> +07:54:15 Transaction Type : REQUEST +07:54:15 Received From : +07:54:15 ============================================================================ +07:54:15 FNo. Len. Field Value +07:54:15 ============================================================================ +07:54:15 [ 1] [ 4] [0800] +07:54:15 [ 7] [ 10] [0320125323] +07:54:15 [ 11] [ 6] [155274] +07:54:15 [ 70] [ 3] [301] +07:54:15 ============================================================================ +07:54:15 + + +waiting on router queue for slot.... +07:54:15 Sending to : +07:54:15 ============================================================================ +07:54:15 ============================================================================ +07:54:15 Slot Id : <476> +07:54:15 Transaction Type : RESPONSE +07:54:15 Received From : +07:54:15 ============================================================================ +07:54:15 FNo. Len. Field Value +07:54:15 ============================================================================ +07:54:15 [ 1] [ 4] [0810] +07:54:15 [ 7] [ 10] [0320125323] +07:54:15 [ 11] [ 6] [155274] +07:54:15 [ 39] [ 2] [00] +07:54:15 [ 70] [ 3] [301] +07:54:15 ============================================================================ +07:54:15 Calculate Source COMM Id = 2 +07:54:15 ============================================================================ +07:54:15 + + +waiting on router queue for slot.... +07:54:26 ============================================================================ +07:54:26 Slot Id : <472> +07:54:26 Transaction Type : REQUEST +07:54:26 Received From : +07:54:26 ============================================================================ +07:54:26 FNo. Len. Field Value +07:54:26 ============================================================================ +07:54:26 [ 1] [ 4] [0800] +07:54:26 [ 7] [ 10] [0320125334] +07:54:26 [ 11] [ 6] [155275] +07:54:26 [ 70] [ 3] [301] +07:54:26 ============================================================================ +07:54:26 + + +waiting on router queue for slot.... +07:54:26 Sending to : +07:54:26 ============================================================================ +07:54:26 ============================================================================ +07:54:26 Slot Id : <472> +07:54:26 Transaction Type : RESPONSE +07:54:26 Received From : +07:54:26 ============================================================================ +07:54:26 FNo. Len. Field Value +07:54:26 ============================================================================ +07:54:26 [ 1] [ 4] [0810] +07:54:26 [ 7] [ 10] [0320125334] +07:54:26 [ 11] [ 6] [155275] +07:54:26 [ 39] [ 2] [00] +07:54:26 [ 70] [ 3] [301] +07:54:26 ============================================================================ +07:54:26 Calculate Source COMM Id = 2 +07:54:26 ============================================================================ +07:54:26 + + +waiting on router queue for slot.... +07:54:30 ============================================================================ +07:54:30 Slot Id : <477> +07:54:30 Transaction Type : REQUEST +07:54:30 Received From : +07:54:30 ============================================================================ +07:54:30 FNo. Len. Field Value +07:54:30 ============================================================================ +07:54:30 [ 1] [ 4] [0200] +07:54:30 [ 2] [ 16] [6213544002198866] +07:54:30 [ 3] [ 6] [010000] +07:54:30 [ 4] [ 12] [000025000000] +07:54:30 [ 7] [ 10] [0320075221] +07:54:30 [ 11] [ 6] [931227] +07:54:30 [ 12] [ 6] [075221] +07:54:30 [ 13] [ 4] [0320] +07:54:30 [ 15] [ 4] [0320] +07:54:30 [ 18] [ 4] [6011] +07:54:30 [ 19] [ 3] [418] +07:54:30 [ 22] [ 3] [021] +07:54:30 [ 25] [ 2] [01] +07:54:30 [ 28] [ 9] [D00002000] +07:54:30 [ 32] [ 6] [668899] +07:54:30 [ 35] [ 32] [6213544002198866=491212019886344] +07:54:30 [ 37] [ 12] [507900537001] +07:54:30 [ 41] [ 8] [03014001] +07:54:30 [ 42] [ 15] [APT ] +07:54:30 [ 43] [ 40] [ SAVAN BR OFFICE SAVANNAKH] +07:54:30 [ 49] [ 3] [418] +07:54:30 [ 52] [ 16] [2D5FEBCC78DA7267] +07:54:30 ============================================================================ +07:54:30 + + +waiting on router queue for slot.... +07:54:30 Sending to : +07:54:30 ============================================================================ +07:54:30 Sending to : +07:54:30 ============================================================================ +07:54:30 ============================================================================ +07:54:30 Slot Id : <477> +07:54:30 Transaction Type : REQUEST +07:54:30 Received From : +07:54:30 ============================================================================ +07:54:30 FNo. Len. Field Value +07:54:30 ============================================================================ +07:54:30 [ 1] [ 4] [0200] +07:54:30 [ 2] [ 16] [6213544002198866] +07:54:30 [ 3] [ 6] [010000] +07:54:30 [ 4] [ 12] [000025000000] +07:54:30 [ 7] [ 10] [0320075221] +07:54:30 [ 11] [ 6] [931227] +07:54:30 [ 12] [ 6] [075221] +07:54:30 [ 13] [ 4] [0320] +07:54:30 [ 15] [ 4] [0320] +07:54:30 [ 18] [ 4] [6011] +07:54:30 [ 19] [ 3] [418] +07:54:30 [ 22] [ 3] [021] +07:54:30 [ 25] [ 2] [01] +07:54:30 [ 28] [ 9] [D00002000] +07:54:30 [ 32] [ 6] [668899] +07:54:30 [ 35] [ 32] [6213544002198866=491212019886344] +07:54:30 [ 37] [ 12] [507900537001] +07:54:30 [ 41] [ 8] [03014001] +07:54:30 [ 42] [ 15] [APT ] +07:54:30 [ 43] [ 40] [ SAVAN BR OFFICE SAVANNAKH] +07:54:30 [ 49] [ 3] [418] +07:54:30 [ 52] [ 16] [2D5FEBCC78DA7267] +07:54:30 ============================================================================ +07:54:30 + + +waiting on router queue for slot.... +07:54:30 Sending to : +07:54:30 ============================================================================ +07:54:30 ============================================================================ +07:54:30 Slot Id : <477> +07:54:30 Transaction Type : REQUEST +07:54:30 Received From : +07:54:30 ============================================================================ +07:54:30 FNo. Len. Field Value +07:54:30 ============================================================================ +07:54:30 [ 1] [ 4] [0200] +07:54:30 [ 2] [ 16] [6213544002198866] +07:54:30 [ 3] [ 6] [010000] +07:54:30 [ 4] [ 12] [000025000000] +07:54:30 [ 7] [ 10] [0320075221] +07:54:30 [ 11] [ 6] [931227] +07:54:30 [ 12] [ 6] [075221] +07:54:30 [ 13] [ 4] [0320] +07:54:30 [ 15] [ 4] [0320] +07:54:30 [ 18] [ 4] [6011] +07:54:30 [ 19] [ 3] [418] +07:54:30 [ 22] [ 3] [021] +07:54:30 [ 25] [ 2] [01] +07:54:30 [ 28] [ 9] [D00002000] +07:54:30 [ 32] [ 6] [668899] +07:54:30 [ 35] [ 32] [6213544002198866=491212019886344] +07:54:30 [ 37] [ 12] [507900537001] +07:54:30 [ 41] [ 8] [03014001] +07:54:30 [ 42] [ 15] [APT ] +07:54:30 [ 43] [ 40] [ SAVAN BR OFFICE SAVANNAKH] +07:54:30 [ 49] [ 3] [418] +07:54:30 [ 52] [ 16] [75337152C7278366] +07:54:30 ============================================================================ +07:54:30 + + +waiting on router queue for slot.... +07:54:30 Sending to : <0> +07:54:30 ============================================================================ +07:54:31 ============================================================================ +07:54:31 Slot Id : <477> +07:54:31 Transaction Type : RESPONSE +07:54:31 Received From : +07:54:31 ============================================================================ +07:54:31 FNo. Len. Field Value +07:54:31 ============================================================================ +07:54:31 [ 1] [ 4] [0210] +07:54:31 [ 2] [ 16] [6213544002198866] +07:54:31 [ 3] [ 6] [010000] +07:54:31 [ 4] [ 12] [000025000000] +07:54:31 [ 7] [ 10] [0320075221] +07:54:31 [ 11] [ 6] [931227] +07:54:31 [ 12] [ 6] [075221] +07:54:31 [ 13] [ 4] [0320] +07:54:31 [ 15] [ 4] [0320] +07:54:31 [ 18] [ 4] [6011] +07:54:31 [ 19] [ 3] [418] +07:54:31 [ 32] [ 6] [668899] +07:54:31 [ 35] [ 32] [6213544002198866=491212019886344] +07:54:31 [ 37] [ 12] [507900537001] +07:54:31 [ 38] [ 6] [929070] +07:54:31 [ 39] [ 2] [00] +07:54:31 [ 41] [ 8] [03014001] +07:54:31 [ 49] [ 3] [418] +07:54:31 [ 54] [ 40] [0001418C0000063565000002418C000006356500] +07:54:31 ============================================================================ +07:54:31 Sending to : +07:54:31 ============================================================================ +07:54:31 + + +waiting on router queue for slot.... +07:54:32 ============================================================================ +07:54:32 Slot Id : <477> +07:54:32 Transaction Type : RESPONSE +07:54:32 Received From : +07:54:32 ============================================================================ +07:54:32 FNo. Len. Field Value +07:54:32 ============================================================================ +07:54:32 [ 1] [ 4] [0210] +07:54:32 [ 2] [ 16] [6213544002198866] +07:54:32 [ 3] [ 6] [010000] +07:54:32 [ 4] [ 12] [000025000000] +07:54:32 [ 7] [ 10] [0320075221] +07:54:32 [ 11] [ 6] [931227] +07:54:32 [ 12] [ 6] [075221] +07:54:32 [ 13] [ 4] [0320] +07:54:32 [ 15] [ 4] [0320] +07:54:32 [ 18] [ 4] [6011] +07:54:32 [ 19] [ 3] [418] +07:54:32 [ 32] [ 6] [668899] +07:54:32 [ 35] [ 32] [6213544002198866=491212019886344] +07:54:32 [ 37] [ 12] [507900537001] +07:54:32 [ 38] [ 6] [929070] +07:54:32 [ 39] [ 2] [00] +07:54:32 [ 41] [ 8] [03014001] +07:54:32 [ 49] [ 3] [418] +07:54:32 [ 54] [ 40] [0001418C0000063565000002418C000006356500] +07:54:32 ============================================================================ +07:54:32 Calculate Source COMM Id = 4 +07:54:32 ============================================================================ +07:54:32 + + +waiting on router queue for slot.... +07:54:33 ============================================================================ +07:54:33 Slot Id : <486> +07:54:33 Transaction Type : REQUEST +07:54:33 Received From : +07:54:33 ============================================================================ +07:54:33 FNo. Len. Field Value +07:54:33 ============================================================================ +07:54:33 [ 1] [ 4] [0800] +07:54:33 [ 7] [ 10] [0320150623] +07:54:33 [ 11] [ 6] [080623] +07:54:33 [ 37] [ 12] [57908080623] +07:54:33 [ 70] [ 3] [301] +07:54:33 ============================================================================ +07:54:33 + + +waiting on router queue for slot.... +07:54:33 Sending to : +07:54:33 ============================================================================ +07:54:33 ============================================================================ +07:54:33 Slot Id : <486> +07:54:33 Transaction Type : RESPONSE +07:54:33 Received From : +07:54:33 ============================================================================ +07:54:33 FNo. Len. Field Value +07:54:33 ============================================================================ +07:54:33 [ 1] [ 4] [0810] +07:54:33 [ 7] [ 10] [0320150623] +07:54:33 [ 11] [ 6] [080623] +07:54:33 [ 37] [ 12] [579080806230] +07:54:33 [ 39] [ 2] [00] +07:54:33 [ 70] [ 3] [810] +07:54:33 ============================================================================ +07:54:33 Calculate Source COMM Id = 6 +07:54:33 ============================================================================ +07:54:33 + + +waiting on router queue for slot.... +07:54:36 ============================================================================ +07:54:36 Slot Id : <492> +07:54:36 Transaction Type : REQUEST +07:54:36 Received From : +07:54:36 ============================================================================ +07:54:36 FNo. Len. Field Value +07:54:36 ============================================================================ +07:54:36 [ 1] [ 4] [0800] +07:54:36 [ 7] [ 10] [0320125345] +07:54:36 [ 11] [ 6] [155276] +07:54:36 [ 70] [ 3] [301] +07:54:36 ============================================================================ +07:54:36 + + +waiting on router queue for slot.... +07:54:36 Sending to : +07:54:36 ============================================================================ +07:54:36 ============================================================================ +07:54:36 Slot Id : <492> +07:54:36 Transaction Type : RESPONSE +07:54:36 Received From : +07:54:36 ============================================================================ +07:54:36 FNo. Len. Field Value +07:54:36 ============================================================================ +07:54:36 [ 1] [ 4] [0810] +07:54:36 [ 7] [ 10] [0320125345] +07:54:36 [ 11] [ 6] [155276] +07:54:36 [ 39] [ 2] [00] +07:54:36 [ 70] [ 3] [301] +07:54:36 ============================================================================ +07:54:36 Calculate Source COMM Id = 2 +07:54:36 ============================================================================ +07:54:36 + + +waiting on router queue for slot.... +07:54:37 ============================================================================ +07:54:37 Slot Id : <6> +07:54:37 Transaction Type : REQUEST +07:54:37 Received From : +07:54:37 ============================================================================ +07:54:37 FNo. Len. Field Value +07:54:37 ============================================================================ +07:54:37 [ 1] [ 4] [0200] +07:54:37 [ 2] [ 16] [6213543000242155] +07:54:37 [ 3] [ 6] [010000] +07:54:37 [ 4] [ 12] [000100000000] +07:54:37 [ 7] [ 10] [0320075229] +07:54:37 [ 11] [ 6] [931232] +07:54:37 [ 12] [ 6] [075229] +07:54:37 [ 13] [ 4] [0320] +07:54:37 [ 15] [ 4] [0320] +07:54:37 [ 18] [ 4] [6011] +07:54:37 [ 19] [ 3] [418] +07:54:37 [ 22] [ 3] [021] +07:54:37 [ 25] [ 2] [01] +07:54:37 [ 28] [ 9] [D00002000] +07:54:37 [ 32] [ 6] [668899] +07:54:37 [ 35] [ 32] [6213543000242155=491212014215813] +07:54:37 [ 37] [ 12] [507901972360] +07:54:37 [ 41] [ 8] [03012003] +07:54:37 [ 42] [ 15] [APT ] +07:54:37 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:54:37 [ 49] [ 3] [418] +07:54:37 [ 52] [ 16] [CA1423064F3390AC] +07:54:37 ============================================================================ +07:54:37 + + +waiting on router queue for slot.... +07:54:37 Sending to : +07:54:37 ============================================================================ +07:54:37 Sending to : +07:54:37 ============================================================================ +07:54:38 ============================================================================ +07:54:38 Slot Id : <6> +07:54:38 Transaction Type : REQUEST +07:54:38 Received From : +07:54:38 ============================================================================ +07:54:38 FNo. Len. Field Value +07:54:38 ============================================================================ +07:54:38 [ 1] [ 4] [0200] +07:54:38 [ 2] [ 16] [6213543000242155] +07:54:38 [ 3] [ 6] [010000] +07:54:38 [ 4] [ 12] [000100000000] +07:54:38 [ 7] [ 10] [0320075229] +07:54:38 [ 11] [ 6] [931232] +07:54:38 [ 12] [ 6] [075229] +07:54:38 [ 13] [ 4] [0320] +07:54:38 [ 15] [ 4] [0320] +07:54:38 [ 18] [ 4] [6011] +07:54:38 [ 19] [ 3] [418] +07:54:38 [ 22] [ 3] [021] +07:54:38 [ 25] [ 2] [01] +07:54:38 [ 28] [ 9] [D00002000] +07:54:38 [ 32] [ 6] [668899] +07:54:38 [ 35] [ 32] [6213543000242155=491212014215813] +07:54:38 [ 37] [ 12] [507901972360] +07:54:38 [ 41] [ 8] [03012003] +07:54:38 [ 42] [ 15] [APT ] +07:54:38 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:54:38 [ 49] [ 3] [418] +07:54:38 [ 52] [ 16] [CA1423064F3390AC] +07:54:38 ============================================================================ +07:54:38 + + +waiting on router queue for slot.... +07:54:38 Sending to : +07:54:38 ============================================================================ +07:54:38 ============================================================================ +07:54:38 Slot Id : <6> +07:54:38 Transaction Type : REQUEST +07:54:38 Received From : +07:54:38 ============================================================================ +07:54:38 FNo. Len. Field Value +07:54:38 ============================================================================ +07:54:38 [ 1] [ 4] [0200] +07:54:38 [ 2] [ 16] [6213543000242155] +07:54:38 [ 3] [ 6] [010000] +07:54:38 [ 4] [ 12] [000100000000] +07:54:38 [ 7] [ 10] [0320075229] +07:54:38 [ 11] [ 6] [931232] +07:54:38 [ 12] [ 6] [075229] +07:54:38 [ 13] [ 4] [0320] +07:54:38 [ 15] [ 4] [0320] +07:54:38 [ 18] [ 4] [6011] +07:54:38 [ 19] [ 3] [418] +07:54:38 [ 22] [ 3] [021] +07:54:38 [ 25] [ 2] [01] +07:54:38 [ 28] [ 9] [D00002000] +07:54:38 [ 32] [ 6] [668899] +07:54:38 [ 35] [ 32] [6213543000242155=491212014215813] +07:54:38 [ 37] [ 12] [507901972360] +07:54:38 [ 41] [ 8] [03012003] +07:54:38 [ 42] [ 15] [APT ] +07:54:38 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:54:38 [ 49] [ 3] [418] +07:54:38 [ 52] [ 16] [ACC9C7E711E6067E] +07:54:38 ============================================================================ +07:54:38 + + +waiting on router queue for slot.... +07:54:38 Sending to : <0> +07:54:38 ============================================================================ +07:54:38 ============================================================================ +07:54:38 Slot Id : <6> +07:54:38 Transaction Type : RESPONSE +07:54:38 Received From : +07:54:38 ============================================================================ +07:54:38 FNo. Len. Field Value +07:54:38 ============================================================================ +07:54:38 [ 1] [ 4] [0210] +07:54:38 [ 2] [ 16] [6213543000242155] +07:54:38 [ 3] [ 6] [010000] +07:54:38 [ 4] [ 12] [000100000000] +07:54:38 [ 7] [ 10] [0320075229] +07:54:38 [ 11] [ 6] [931232] +07:54:38 [ 12] [ 6] [075229] +07:54:38 [ 13] [ 4] [0320] +07:54:38 [ 15] [ 4] [0320] +07:54:38 [ 18] [ 4] [6011] +07:54:38 [ 19] [ 3] [418] +07:54:38 [ 32] [ 6] [668899] +07:54:38 [ 35] [ 32] [6213543000242155=491212014215813] +07:54:38 [ 37] [ 12] [507901972360] +07:54:38 [ 38] [ 6] [602379] +07:54:38 [ 39] [ 2] [00] +07:54:38 [ 41] [ 8] [03012003] +07:54:38 [ 49] [ 3] [418] +07:54:38 [ 54] [ 40] [0001418C0003098000000002418C000309800000] +07:54:38 ============================================================================ +07:54:38 Sending to : +07:54:38 ============================================================================ +07:54:38 + + +waiting on router queue for slot.... +07:54:39 ============================================================================ +07:54:39 Slot Id : <485> +07:54:39 Transaction Type : REQUEST +07:54:39 Received From : +07:54:39 ============================================================================ +07:54:39 FNo. Len. Field Value +07:54:39 ============================================================================ +07:54:39 [ 1] [ 4] [0200] +07:54:39 [ 2] [ 16] [6213544002031695] +07:54:39 [ 3] [ 6] [302000] +07:54:39 [ 4] [ 12] [000000000000] +07:54:39 [ 7] [ 10] [0320075231] +07:54:39 [ 11] [ 6] [931235] +07:54:39 [ 12] [ 6] [075231] +07:54:39 [ 13] [ 4] [0320] +07:54:39 [ 15] [ 4] [0320] +07:54:39 [ 18] [ 4] [6011] +07:54:39 [ 19] [ 3] [418] +07:54:39 [ 22] [ 3] [021] +07:54:39 [ 25] [ 2] [01] +07:54:39 [ 28] [ 9] [D00000000] +07:54:39 [ 32] [ 6] [668899] +07:54:39 [ 35] [ 32] [6213544002031695=491212013169607] +07:54:39 [ 37] [ 12] [507900285705] +07:54:39 [ 41] [ 8] [03010005] +07:54:39 [ 42] [ 15] [APT ] +07:54:39 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +07:54:39 [ 49] [ 3] [418] +07:54:39 [ 52] [ 16] [6C62224981805D94] +07:54:39 ============================================================================ +07:54:39 + + +waiting on router queue for slot.... +07:54:39 Sending to : +07:54:39 ============================================================================ +07:54:39 Sending to : +07:54:39 ============================================================================ +07:54:40 ============================================================================ +07:54:40 Slot Id : <485> +07:54:40 Transaction Type : REQUEST +07:54:40 Received From : +07:54:40 ============================================================================ +07:54:40 FNo. Len. Field Value +07:54:40 ============================================================================ +07:54:40 [ 1] [ 4] [0200] +07:54:40 [ 2] [ 16] [6213544002031695] +07:54:40 [ 3] [ 6] [302000] +07:54:40 [ 4] [ 12] [000000000000] +07:54:40 [ 7] [ 10] [0320075231] +07:54:40 [ 11] [ 6] [931235] +07:54:40 [ 12] [ 6] [075231] +07:54:40 [ 13] [ 4] [0320] +07:54:40 [ 15] [ 4] [0320] +07:54:40 [ 18] [ 4] [6011] +07:54:40 [ 19] [ 3] [418] +07:54:40 [ 22] [ 3] [021] +07:54:40 [ 25] [ 2] [01] +07:54:40 [ 28] [ 9] [D00000000] +07:54:40 [ 32] [ 6] [668899] +07:54:40 [ 35] [ 32] [6213544002031695=491212013169607] +07:54:40 [ 37] [ 12] [507900285705] +07:54:40 [ 41] [ 8] [03010005] +07:54:40 [ 42] [ 15] [APT ] +07:54:40 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +07:54:40 [ 49] [ 3] [418] +07:54:40 [ 52] [ 16] [6C62224981805D94] +07:54:40 ============================================================================ +07:54:40 + + +waiting on router queue for slot.... +07:54:40 Sending to : +07:54:40 ============================================================================ +07:54:40 ============================================================================ +07:54:40 Slot Id : <485> +07:54:40 Transaction Type : REQUEST +07:54:40 Received From : +07:54:40 ============================================================================ +07:54:40 FNo. Len. Field Value +07:54:40 ============================================================================ +07:54:40 [ 1] [ 4] [0200] +07:54:40 [ 2] [ 16] [6213544002031695] +07:54:40 [ 3] [ 6] [302000] +07:54:40 [ 4] [ 12] [000000000000] +07:54:40 [ 7] [ 10] [0320075231] +07:54:40 [ 11] [ 6] [931235] +07:54:40 [ 12] [ 6] [075231] +07:54:40 [ 13] [ 4] [0320] +07:54:40 [ 15] [ 4] [0320] +07:54:40 [ 18] [ 4] [6011] +07:54:40 [ 19] [ 3] [418] +07:54:40 [ 22] [ 3] [021] +07:54:40 [ 25] [ 2] [01] +07:54:40 [ 28] [ 9] [D00000000] +07:54:40 [ 32] [ 6] [668899] +07:54:40 [ 35] [ 32] [6213544002031695=491212013169607] +07:54:40 [ 37] [ 12] [507900285705] +07:54:40 [ 41] [ 8] [03010005] +07:54:40 [ 42] [ 15] [APT ] +07:54:40 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +07:54:40 [ 49] [ 3] [418] +07:54:40 [ 52] [ 16] [229CF5555A7F663D] +07:54:40 ============================================================================ +07:54:40 + + +waiting on router queue for slot.... +07:54:40 Sending to : <0> +07:54:40 ============================================================================ +07:54:40 ============================================================================ +07:54:40 Slot Id : <485> +07:54:40 Transaction Type : RESPONSE +07:54:40 Received From : +07:54:40 ============================================================================ +07:54:40 FNo. Len. Field Value +07:54:40 ============================================================================ +07:54:40 [ 1] [ 4] [0210] +07:54:40 [ 2] [ 16] [6213544002031695] +07:54:40 [ 3] [ 6] [302000] +07:54:40 [ 4] [ 12] [000000000000] +07:54:40 [ 7] [ 10] [0320075231] +07:54:40 [ 11] [ 6] [931235] +07:54:40 [ 12] [ 6] [075231] +07:54:40 [ 13] [ 4] [0320] +07:54:40 [ 15] [ 4] [0320] +07:54:40 [ 18] [ 4] [6011] +07:54:40 [ 19] [ 3] [418] +07:54:40 [ 32] [ 6] [668899] +07:54:40 [ 35] [ 32] [6213544002031695=491212013169607] +07:54:40 [ 37] [ 12] [507900285705] +07:54:40 [ 38] [ 6] [499582] +07:54:40 [ 39] [ 2] [00] +07:54:40 [ 41] [ 8] [03010005] +07:54:40 [ 49] [ 3] [418] +07:54:40 [ 54] [ 40] [2001418C0003347891502002418C000334789150] +07:54:40 ============================================================================ +07:54:40 Sending to : +07:54:40 ============================================================================ +07:54:40 + + +waiting on router queue for slot.... +07:54:40 ============================================================================ +07:54:40 Slot Id : <6> +07:54:40 Transaction Type : RESPONSE +07:54:40 Received From : +07:54:40 ============================================================================ +07:54:40 FNo. Len. Field Value +07:54:40 ============================================================================ +07:54:40 [ 1] [ 4] [0210] +07:54:40 [ 2] [ 16] [6213543000242155] +07:54:40 [ 3] [ 6] [010000] +07:54:40 [ 4] [ 12] [000100000000] +07:54:40 [ 7] [ 10] [0320075229] +07:54:40 [ 11] [ 6] [931232] +07:54:40 [ 12] [ 6] [075229] +07:54:40 [ 13] [ 4] [0320] +07:54:40 [ 15] [ 4] [0320] +07:54:40 [ 18] [ 4] [6011] +07:54:40 [ 19] [ 3] [418] +07:54:40 [ 32] [ 6] [668899] +07:54:40 [ 35] [ 32] [6213543000242155=491212014215813] +07:54:40 [ 37] [ 12] [507901972360] +07:54:40 [ 38] [ 6] [602379] +07:54:40 [ 39] [ 2] [00] +07:54:40 [ 41] [ 8] [03012003] +07:54:40 [ 49] [ 3] [418] +07:54:40 [ 54] [ 40] [0001418C0003098000000002418C000309800000] +07:54:40 ============================================================================ +07:54:40 Calculate Source COMM Id = 4 +07:54:40 ============================================================================ +07:54:40 + + +waiting on router queue for slot.... +07:54:42 ============================================================================ +07:54:42 Slot Id : <485> +07:54:42 Transaction Type : RESPONSE +07:54:42 Received From : +07:54:42 ============================================================================ +07:54:42 FNo. Len. Field Value +07:54:42 ============================================================================ +07:54:42 [ 1] [ 4] [0210] +07:54:42 [ 2] [ 16] [6213544002031695] +07:54:42 [ 3] [ 6] [302000] +07:54:42 [ 4] [ 12] [000000000000] +07:54:42 [ 7] [ 10] [0320075231] +07:54:42 [ 11] [ 6] [931235] +07:54:42 [ 12] [ 6] [075231] +07:54:42 [ 13] [ 4] [0320] +07:54:42 [ 15] [ 4] [0320] +07:54:42 [ 18] [ 4] [6011] +07:54:42 [ 19] [ 3] [418] +07:54:42 [ 32] [ 6] [668899] +07:54:42 [ 35] [ 32] [6213544002031695=491212013169607] +07:54:42 [ 37] [ 12] [507900285705] +07:54:42 [ 38] [ 6] [499582] +07:54:42 [ 39] [ 2] [00] +07:54:42 [ 41] [ 8] [03010005] +07:54:42 [ 49] [ 3] [418] +07:54:42 [ 54] [ 40] [2001418C0003347891502002418C000334789150] +07:54:42 ============================================================================ +07:54:42 Calculate Source COMM Id = 4 +07:54:42 ============================================================================ +07:54:42 + + +waiting on router queue for slot.... +07:54:49 ============================================================================ +07:54:49 Slot Id : <454> +07:54:49 Transaction Type : REQUEST +07:54:49 Received From : +07:54:49 ============================================================================ +07:54:49 FNo. Len. Field Value +07:54:49 ============================================================================ +07:54:49 [ 1] [ 4] [0800] +07:54:49 [ 7] [ 10] [0320125357] +07:54:49 [ 11] [ 6] [155277] +07:54:49 [ 70] [ 3] [301] +07:54:49 ============================================================================ +07:54:49 + + +waiting on router queue for slot.... +07:54:49 Sending to : +07:54:49 ============================================================================ +07:54:49 ============================================================================ +07:54:49 Slot Id : <454> +07:54:49 Transaction Type : RESPONSE +07:54:49 Received From : +07:54:49 ============================================================================ +07:54:49 FNo. Len. Field Value +07:54:49 ============================================================================ +07:54:49 [ 1] [ 4] [0810] +07:54:49 [ 7] [ 10] [0320125357] +07:54:49 [ 11] [ 6] [155277] +07:54:49 [ 39] [ 2] [00] +07:54:49 [ 70] [ 3] [301] +07:54:49 ============================================================================ +07:54:49 Calculate Source COMM Id = 2 +07:54:49 ============================================================================ +07:54:49 + + +waiting on router queue for slot.... +07:54:54 ============================================================================ +07:54:54 Slot Id : <14> +07:54:54 Transaction Type : REQUEST +07:54:54 Received From : +07:54:54 ============================================================================ +07:54:54 FNo. Len. Field Value +07:54:54 ============================================================================ +07:54:54 [ 1] [ 4] [0800] +07:54:54 [ 7] [ 10] [0320010242] +07:54:54 [ 11] [ 6] [088700] +07:54:54 [ 37] [ 12] [57908088700] +07:54:54 [ 70] [ 3] [301] +07:54:54 ============================================================================ +07:54:54 + + +waiting on router queue for slot.... +07:54:54 Sending to : +07:54:54 ============================================================================ +07:54:54 ============================================================================ +07:54:54 Slot Id : <14> +07:54:54 Transaction Type : RESPONSE +07:54:54 Received From : +07:54:54 ============================================================================ +07:54:54 FNo. Len. Field Value +07:54:54 ============================================================================ +07:54:54 [ 1] [ 4] [0810] +07:54:54 [ 7] [ 10] [0320010242] +07:54:54 [ 11] [ 6] [088700] +07:54:54 [ 37] [ 12] [579080887000] +07:54:54 [ 39] [ 2] [00] +07:54:54 [ 70] [ 3] [810] +07:54:54 ============================================================================ +07:54:54 Calculate Source COMM Id = 1 +07:54:54 ============================================================================ +07:54:54 + + +waiting on router queue for slot.... +07:54:54 ============================================================================ +07:54:54 Slot Id : <13> +07:54:54 Transaction Type : REQUEST +07:54:54 Received From : +07:54:54 ============================================================================ +07:54:54 FNo. Len. Field Value +07:54:54 ============================================================================ +07:54:54 [ 1] [ 4] [0800] +07:54:54 [ 2] [ 5] [02531] +07:54:54 [ 3] [ 6] [579078] +07:54:54 [ 7] [ 10] [0320005454] +07:54:54 [ 11] [ 6] [806871] +07:54:54 [ 15] [ 10] [0320005454] +07:54:54 [ 37] [ 11] [57907806871] +07:54:54 [ 70] [ 3] [001] +07:54:54 ============================================================================ +07:54:54 + + +waiting on router queue for slot.... +07:54:54 ============================================================================ +07:54:54 Slot Id : <13> +07:54:54 Transaction Type : RESPONSE +07:54:54 Received From : +07:54:54 ============================================================================ +07:54:54 FNo. Len. Field Value +07:54:54 ============================================================================ +07:54:54 [ 1] [ 4] [0810] +07:54:54 [ 7] [ 10] [0320005454] +07:54:54 [ 11] [ 6] [806871] +07:54:54 [ 15] [ 4] [0320] +07:54:54 [ 37] [ 12] [57907806871] +07:54:54 [ 39] [ 2] [00] +07:54:54 [ 70] [ 3] [001] +07:54:54 ============================================================================ +07:54:54 Sending to : +07:54:54 ============================================================================ +07:54:54 + + +waiting on router queue for slot.... +07:54:55 ============================================================================ +07:54:55 Slot Id : <12> +07:54:55 Transaction Type : REQUEST +07:54:55 Received From : +07:54:55 ============================================================================ +07:54:55 FNo. Len. Field Value +07:54:55 ============================================================================ +07:54:55 [ 1] [ 4] [0200] +07:54:55 [ 2] [ 16] [6213545000830715] +07:54:55 [ 3] [ 6] [010000] +07:54:55 [ 4] [ 12] [000050000000] +07:54:55 [ 7] [ 10] [0320005403] +07:54:55 [ 11] [ 6] [266938] +07:54:55 [ 12] [ 6] [075403] +07:54:55 [ 13] [ 4] [0320] +07:54:55 [ 14] [ 4] [4912] +07:54:55 [ 15] [ 4] [0320] +07:54:55 [ 18] [ 4] [6011] +07:54:55 [ 19] [ 3] [418] +07:54:55 [ 22] [ 3] [021] +07:54:55 [ 25] [ 2] [01] +07:54:55 [ 28] [ 9] [D00002000] +07:54:55 [ 32] [ 6] [180893] +07:54:55 [ 35] [ 32] [6213545000830715=491212013071140] +07:54:55 [ 37] [ 12] [507900266938] +07:54:55 [ 41] [ 8] [0367BL20] +07:54:55 [ 42] [ 15] [999999 ] +07:54:55 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +07:54:55 [ 49] [ 3] [418] +07:54:55 [ 52] [ 16] [3D50954897C7E48B] +07:54:55 ============================================================================ +07:54:55 + + +waiting on router queue for slot.... +07:54:55 Sending to : +07:54:55 ============================================================================ +07:54:55 Sending to : +07:54:55 ============================================================================ +07:54:56 ============================================================================ +07:54:56 Slot Id : <12> +07:54:56 Transaction Type : REQUEST +07:54:56 Received From : +07:54:56 ============================================================================ +07:54:56 FNo. Len. Field Value +07:54:56 ============================================================================ +07:54:56 [ 1] [ 4] [0200] +07:54:56 [ 2] [ 16] [6213545000830715] +07:54:56 [ 3] [ 6] [010000] +07:54:56 [ 4] [ 12] [000050000000] +07:54:56 [ 7] [ 10] [0320005403] +07:54:56 [ 11] [ 6] [266938] +07:54:56 [ 12] [ 6] [075403] +07:54:56 [ 13] [ 4] [0320] +07:54:56 [ 14] [ 4] [4912] +07:54:56 [ 15] [ 4] [0320] +07:54:56 [ 18] [ 4] [6011] +07:54:56 [ 19] [ 3] [418] +07:54:56 [ 22] [ 3] [021] +07:54:56 [ 25] [ 2] [01] +07:54:56 [ 28] [ 9] [D00002000] +07:54:56 [ 32] [ 6] [180893] +07:54:56 [ 35] [ 32] [6213545000830715=491212013071140] +07:54:56 [ 37] [ 12] [507900266938] +07:54:56 [ 41] [ 8] [0367BL20] +07:54:56 [ 42] [ 15] [999999 ] +07:54:56 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +07:54:56 [ 49] [ 3] [418] +07:54:56 [ 52] [ 16] [3D50954897C7E48B] +07:54:56 ============================================================================ +07:54:56 + + +waiting on router queue for slot.... +07:54:56 Sending to : +07:54:56 ============================================================================ +07:54:56 ============================================================================ +07:54:56 Slot Id : <12> +07:54:56 Transaction Type : REQUEST +07:54:56 Received From : +07:54:56 ============================================================================ +07:54:56 FNo. Len. Field Value +07:54:56 ============================================================================ +07:54:56 [ 1] [ 4] [0200] +07:54:56 [ 2] [ 16] [6213545000830715] +07:54:56 [ 3] [ 6] [010000] +07:54:56 [ 4] [ 12] [000050000000] +07:54:56 [ 7] [ 10] [0320005403] +07:54:56 [ 11] [ 6] [266938] +07:54:56 [ 12] [ 6] [075403] +07:54:56 [ 13] [ 4] [0320] +07:54:56 [ 14] [ 4] [4912] +07:54:56 [ 15] [ 4] [0320] +07:54:56 [ 18] [ 4] [6011] +07:54:56 [ 19] [ 3] [418] +07:54:56 [ 22] [ 3] [021] +07:54:56 [ 25] [ 2] [01] +07:54:56 [ 28] [ 9] [D00002000] +07:54:56 [ 32] [ 6] [180893] +07:54:56 [ 35] [ 32] [6213545000830715=491212013071140] +07:54:56 [ 37] [ 12] [507900266938] +07:54:56 [ 41] [ 8] [0367BL20] +07:54:56 [ 42] [ 15] [999999 ] +07:54:56 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +07:54:56 [ 49] [ 3] [418] +07:54:56 [ 52] [ 16] [2567E07111A3BA9B] +07:54:56 ============================================================================ +07:54:56 + + +waiting on router queue for slot.... +07:54:56 Sending to : <0> +07:54:56 ============================================================================ +07:54:56 ============================================================================ +07:54:56 Slot Id : <12> +07:54:56 Transaction Type : RESPONSE +07:54:56 Received From : +07:54:56 ============================================================================ +07:54:56 FNo. Len. Field Value +07:54:56 ============================================================================ +07:54:56 [ 1] [ 4] [0210] +07:54:56 [ 2] [ 16] [6213545000830715] +07:54:56 [ 3] [ 6] [010000] +07:54:56 [ 4] [ 12] [000050000000] +07:54:56 [ 7] [ 10] [0320005403] +07:54:56 [ 11] [ 6] [266938] +07:54:56 [ 12] [ 6] [075403] +07:54:56 [ 13] [ 4] [0320] +07:54:56 [ 15] [ 4] [0320] +07:54:56 [ 18] [ 4] [6011] +07:54:56 [ 19] [ 3] [418] +07:54:56 [ 32] [ 6] [180893] +07:54:56 [ 35] [ 32] [6213545000830715=491212013071140] +07:54:56 [ 37] [ 12] [507900266938] +07:54:56 [ 38] [ 6] [511337] +07:54:56 [ 39] [ 2] [00] +07:54:56 [ 41] [ 8] [0367BL20] +07:54:56 [ 49] [ 3] [418] +07:54:56 [ 54] [ 40] [0001418C0001229268180002418C000122926818] +07:54:56 ============================================================================ +07:54:56 Sending to : +07:54:56 ============================================================================ +07:54:56 + + +waiting on router queue for slot.... +07:54:58 ============================================================================ +07:54:58 Slot Id : <12> +07:54:58 Transaction Type : RESPONSE +07:54:58 Received From : +07:54:58 ============================================================================ +07:54:58 FNo. Len. Field Value +07:54:58 ============================================================================ +07:54:58 [ 1] [ 4] [0210] +07:54:58 [ 2] [ 16] [6213545000830715] +07:54:58 [ 3] [ 6] [010000] +07:54:58 [ 4] [ 12] [000050000000] +07:54:58 [ 7] [ 10] [0320005403] +07:54:58 [ 11] [ 6] [266938] +07:54:58 [ 12] [ 6] [075403] +07:54:58 [ 13] [ 4] [0320] +07:54:58 [ 15] [ 4] [0320] +07:54:58 [ 18] [ 4] [6011] +07:54:58 [ 19] [ 3] [418] +07:54:58 [ 32] [ 6] [180893] +07:54:58 [ 35] [ 32] [6213545000830715=491212013071140] +07:54:58 [ 37] [ 12] [507900266938] +07:54:58 [ 38] [ 6] [511337] +07:54:58 [ 39] [ 2] [00] +07:54:58 [ 41] [ 8] [0367BL20] +07:54:58 [ 49] [ 3] [418] +07:54:58 [ 54] [ 40] [0001418C0001229268180002418C000122926818] +07:54:58 ============================================================================ +07:54:58 Calculate Source COMM Id = 2 +07:54:58 ============================================================================ +07:54:58 + + +waiting on router queue for slot.... +07:55:10 ============================================================================ +07:55:10 Slot Id : <16> +07:55:10 Transaction Type : REQUEST +07:55:10 Received From : +07:55:10 ============================================================================ +07:55:10 FNo. Len. Field Value +07:55:10 ============================================================================ +07:55:10 [ 1] [ 4] [0800] +07:55:10 [ 7] [ 10] [0320125419] +07:55:10 [ 11] [ 6] [155278] +07:55:10 [ 70] [ 3] [301] +07:55:10 ============================================================================ +07:55:10 + + +waiting on router queue for slot.... +07:55:10 Sending to : +07:55:10 ============================================================================ +07:55:10 ============================================================================ +07:55:10 Slot Id : <16> +07:55:10 Transaction Type : RESPONSE +07:55:10 Received From : +07:55:10 ============================================================================ +07:55:10 FNo. Len. Field Value +07:55:10 ============================================================================ +07:55:10 [ 1] [ 4] [0810] +07:55:10 [ 7] [ 10] [0320125419] +07:55:10 [ 11] [ 6] [155278] +07:55:10 [ 39] [ 2] [00] +07:55:10 [ 70] [ 3] [301] +07:55:10 ============================================================================ +07:55:10 Calculate Source COMM Id = 2 +07:55:10 ============================================================================ +07:55:10 + + +waiting on router queue for slot.... +07:55:15 ============================================================================ +07:55:15 Slot Id : <494> +07:55:15 Transaction Type : REQUEST +07:55:15 Received From : +07:55:15 ============================================================================ +07:55:15 FNo. Len. Field Value +07:55:15 ============================================================================ +07:55:15 [ 1] [ 4] [0200] +07:55:15 [ 2] [ 16] [6213541000725161] +07:55:15 [ 3] [ 6] [011000] +07:55:15 [ 4] [ 12] [000010000000] +07:55:15 [ 7] [ 10] [0320005422] +07:55:15 [ 11] [ 6] [266941] +07:55:15 [ 12] [ 6] [075422] +07:55:15 [ 13] [ 4] [0320] +07:55:15 [ 14] [ 4] [4912] +07:55:15 [ 15] [ 4] [0320] +07:55:15 [ 18] [ 4] [6011] +07:55:15 [ 19] [ 3] [418] +07:55:15 [ 22] [ 3] [021] +07:55:15 [ 25] [ 2] [01] +07:55:15 [ 28] [ 9] [D00002000] +07:55:15 [ 32] [ 6] [180893] +07:55:15 [ 35] [ 32] [6213541000725161=491212012516608] +07:55:15 [ 37] [ 12] [507900266941] +07:55:15 [ 41] [ 8] [0527LPBL] +07:55:15 [ 42] [ 15] [999999 ] +07:55:15 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +07:55:15 [ 49] [ 3] [418] +07:55:15 [ 52] [ 16] [60D7E94295BF7384] +07:55:15 ============================================================================ +07:55:15 + + +waiting on router queue for slot.... +07:55:15 Sending to : +07:55:15 ============================================================================ +07:55:15 Sending to : +07:55:15 ============================================================================ +07:55:15 ============================================================================ +07:55:15 Slot Id : <494> +07:55:15 Transaction Type : REQUEST +07:55:15 Received From : +07:55:15 ============================================================================ +07:55:15 FNo. Len. Field Value +07:55:15 ============================================================================ +07:55:15 [ 1] [ 4] [0200] +07:55:15 [ 2] [ 16] [6213541000725161] +07:55:15 [ 3] [ 6] [011000] +07:55:15 [ 4] [ 12] [000010000000] +07:55:15 [ 7] [ 10] [0320005422] +07:55:15 [ 11] [ 6] [266941] +07:55:15 [ 12] [ 6] [075422] +07:55:15 [ 13] [ 4] [0320] +07:55:15 [ 14] [ 4] [4912] +07:55:15 [ 15] [ 4] [0320] +07:55:15 [ 18] [ 4] [6011] +07:55:15 [ 19] [ 3] [418] +07:55:15 [ 22] [ 3] [021] +07:55:15 [ 25] [ 2] [01] +07:55:15 [ 28] [ 9] [D00002000] +07:55:15 [ 32] [ 6] [180893] +07:55:15 [ 35] [ 32] [6213541000725161=491212012516608] +07:55:15 [ 37] [ 12] [507900266941] +07:55:15 [ 41] [ 8] [0527LPBL] +07:55:15 [ 42] [ 15] [999999 ] +07:55:15 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +07:55:15 [ 49] [ 3] [418] +07:55:15 [ 52] [ 16] [60D7E94295BF7384] +07:55:15 ============================================================================ +07:55:15 + + +waiting on router queue for slot.... +07:55:15 Sending to : +07:55:15 ============================================================================ +07:55:15 ============================================================================ +07:55:15 Slot Id : <494> +07:55:15 Transaction Type : REQUEST +07:55:15 Received From : +07:55:15 ============================================================================ +07:55:15 FNo. Len. Field Value +07:55:15 ============================================================================ +07:55:15 [ 1] [ 4] [0200] +07:55:15 [ 2] [ 16] [6213541000725161] +07:55:15 [ 3] [ 6] [011000] +07:55:15 [ 4] [ 12] [000010000000] +07:55:15 [ 7] [ 10] [0320005422] +07:55:15 [ 11] [ 6] [266941] +07:55:15 [ 12] [ 6] [075422] +07:55:15 [ 13] [ 4] [0320] +07:55:15 [ 14] [ 4] [4912] +07:55:15 [ 15] [ 4] [0320] +07:55:15 [ 18] [ 4] [6011] +07:55:15 [ 19] [ 3] [418] +07:55:15 [ 22] [ 3] [021] +07:55:15 [ 25] [ 2] [01] +07:55:15 [ 28] [ 9] [D00002000] +07:55:15 [ 32] [ 6] [180893] +07:55:15 [ 35] [ 32] [6213541000725161=491212012516608] +07:55:15 [ 37] [ 12] [507900266941] +07:55:15 [ 41] [ 8] [0527LPBL] +07:55:15 [ 42] [ 15] [999999 ] +07:55:15 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +07:55:15 [ 49] [ 3] [418] +07:55:15 [ 52] [ 16] [699FDF224EC0850B] +07:55:15 ============================================================================ +07:55:15 + + +waiting on router queue for slot.... +07:55:15 Sending to : <0> +07:55:15 ============================================================================ +07:55:16 ============================================================================ +07:55:16 Slot Id : <494> +07:55:16 Transaction Type : RESPONSE +07:55:16 Received From : +07:55:16 ============================================================================ +07:55:16 FNo. Len. Field Value +07:55:16 ============================================================================ +07:55:16 [ 1] [ 4] [0210] +07:55:16 [ 2] [ 16] [6213541000725161] +07:55:16 [ 3] [ 6] [011000] +07:55:16 [ 4] [ 12] [000010000000] +07:55:16 [ 7] [ 10] [0320005422] +07:55:16 [ 11] [ 6] [266941] +07:55:16 [ 12] [ 6] [075422] +07:55:16 [ 13] [ 4] [0320] +07:55:16 [ 15] [ 4] [0320] +07:55:16 [ 18] [ 4] [6011] +07:55:16 [ 19] [ 3] [418] +07:55:16 [ 32] [ 6] [180893] +07:55:16 [ 35] [ 32] [6213541000725161=491212012516608] +07:55:16 [ 37] [ 12] [507900266941] +07:55:16 [ 38] [ 6] [267510] +07:55:16 [ 39] [ 2] [00] +07:55:16 [ 41] [ 8] [0527LPBL] +07:55:16 [ 49] [ 3] [418] +07:55:16 [ 54] [ 40] [1001418C0001449976071002418C000144997607] +07:55:16 ============================================================================ +07:55:16 Sending to : +07:55:16 ============================================================================ +07:55:16 + + +waiting on router queue for slot.... +07:55:18 ============================================================================ +07:55:18 Slot Id : <494> +07:55:18 Transaction Type : RESPONSE +07:55:18 Received From : +07:55:18 ============================================================================ +07:55:18 FNo. Len. Field Value +07:55:18 ============================================================================ +07:55:18 [ 1] [ 4] [0210] +07:55:18 [ 2] [ 16] [6213541000725161] +07:55:18 [ 3] [ 6] [011000] +07:55:18 [ 4] [ 12] [000010000000] +07:55:18 [ 7] [ 10] [0320005422] +07:55:18 [ 11] [ 6] [266941] +07:55:18 [ 12] [ 6] [075422] +07:55:18 [ 13] [ 4] [0320] +07:55:18 [ 15] [ 4] [0320] +07:55:18 [ 18] [ 4] [6011] +07:55:18 [ 19] [ 3] [418] +07:55:18 [ 32] [ 6] [180893] +07:55:18 [ 35] [ 32] [6213541000725161=491212012516608] +07:55:18 [ 37] [ 12] [507900266941] +07:55:18 [ 38] [ 6] [267510] +07:55:18 [ 39] [ 2] [00] +07:55:18 [ 41] [ 8] [0527LPBL] +07:55:18 [ 49] [ 3] [418] +07:55:18 [ 54] [ 40] [1001418C0001449976071002418C000144997607] +07:55:18 ============================================================================ +07:55:18 Calculate Source COMM Id = 2 +07:55:18 ============================================================================ +07:55:18 + + +waiting on router queue for slot.... +07:55:21 ============================================================================ +07:55:21 Slot Id : <22> +07:55:21 Transaction Type : REQUEST +07:55:21 Received From : +07:55:21 ============================================================================ +07:55:21 FNo. Len. Field Value +07:55:21 ============================================================================ +07:55:21 [ 1] [ 4] [0200] +07:55:21 [ 2] [ 16] [6213544002031695] +07:55:21 [ 3] [ 6] [010000] +07:55:21 [ 4] [ 12] [000007000000] +07:55:21 [ 7] [ 10] [0320075313] +07:55:21 [ 11] [ 6] [931265] +07:55:21 [ 12] [ 6] [075313] +07:55:21 [ 13] [ 4] [0320] +07:55:21 [ 15] [ 4] [0320] +07:55:21 [ 18] [ 4] [6011] +07:55:21 [ 19] [ 3] [418] +07:55:21 [ 22] [ 3] [021] +07:55:21 [ 25] [ 2] [01] +07:55:21 [ 28] [ 9] [D00002000] +07:55:21 [ 32] [ 6] [668899] +07:55:21 [ 35] [ 32] [6213544002031695=491212013169607] +07:55:21 [ 37] [ 12] [507900285706] +07:55:21 [ 41] [ 8] [03010005] +07:55:21 [ 42] [ 15] [APT ] +07:55:21 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +07:55:21 [ 49] [ 3] [418] +07:55:21 [ 52] [ 16] [6C62224981805D94] +07:55:21 ============================================================================ +07:55:21 + + +waiting on router queue for slot.... +07:55:21 Sending to : +07:55:21 ============================================================================ +07:55:21 Sending to : +07:55:21 ============================================================================ +07:55:22 ============================================================================ +07:55:22 Slot Id : <22> +07:55:22 Transaction Type : REQUEST +07:55:22 Received From : +07:55:22 ============================================================================ +07:55:22 FNo. Len. Field Value +07:55:22 ============================================================================ +07:55:22 [ 1] [ 4] [0200] +07:55:22 [ 2] [ 16] [6213544002031695] +07:55:22 [ 3] [ 6] [010000] +07:55:22 [ 4] [ 12] [000007000000] +07:55:22 [ 7] [ 10] [0320075313] +07:55:22 [ 11] [ 6] [931265] +07:55:22 [ 12] [ 6] [075313] +07:55:22 [ 13] [ 4] [0320] +07:55:22 [ 15] [ 4] [0320] +07:55:22 [ 18] [ 4] [6011] +07:55:22 [ 19] [ 3] [418] +07:55:22 [ 22] [ 3] [021] +07:55:22 [ 25] [ 2] [01] +07:55:22 [ 28] [ 9] [D00002000] +07:55:22 [ 32] [ 6] [668899] +07:55:22 [ 35] [ 32] [6213544002031695=491212013169607] +07:55:22 [ 37] [ 12] [507900285706] +07:55:22 [ 41] [ 8] [03010005] +07:55:22 [ 42] [ 15] [APT ] +07:55:22 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +07:55:22 [ 49] [ 3] [418] +07:55:22 [ 52] [ 16] [6C62224981805D94] +07:55:22 ============================================================================ +07:55:22 + + +waiting on router queue for slot.... +07:55:22 Sending to : +07:55:22 ============================================================================ +07:55:22 ============================================================================ +07:55:22 Slot Id : <22> +07:55:22 Transaction Type : REQUEST +07:55:22 Received From : +07:55:22 ============================================================================ +07:55:22 FNo. Len. Field Value +07:55:22 ============================================================================ +07:55:22 [ 1] [ 4] [0200] +07:55:22 [ 2] [ 16] [6213544002031695] +07:55:22 [ 3] [ 6] [010000] +07:55:22 [ 4] [ 12] [000007000000] +07:55:22 [ 7] [ 10] [0320075313] +07:55:22 [ 11] [ 6] [931265] +07:55:22 [ 12] [ 6] [075313] +07:55:22 [ 13] [ 4] [0320] +07:55:22 [ 15] [ 4] [0320] +07:55:22 [ 18] [ 4] [6011] +07:55:22 [ 19] [ 3] [418] +07:55:22 [ 22] [ 3] [021] +07:55:22 [ 25] [ 2] [01] +07:55:22 [ 28] [ 9] [D00002000] +07:55:22 [ 32] [ 6] [668899] +07:55:22 [ 35] [ 32] [6213544002031695=491212013169607] +07:55:22 [ 37] [ 12] [507900285706] +07:55:22 [ 41] [ 8] [03010005] +07:55:22 [ 42] [ 15] [APT ] +07:55:22 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +07:55:22 [ 49] [ 3] [418] +07:55:22 [ 52] [ 16] [229CF5555A7F663D] +07:55:22 ============================================================================ +07:55:22 + + +waiting on router queue for slot.... +07:55:22 Sending to : <0> +07:55:22 ============================================================================ +07:55:23 ============================================================================ +07:55:23 Slot Id : <22> +07:55:23 Transaction Type : RESPONSE +07:55:23 Received From : +07:55:23 ============================================================================ +07:55:23 FNo. Len. Field Value +07:55:23 ============================================================================ +07:55:23 [ 1] [ 4] [0210] +07:55:23 [ 2] [ 16] [6213544002031695] +07:55:23 [ 3] [ 6] [010000] +07:55:23 [ 4] [ 12] [000007000000] +07:55:23 [ 7] [ 10] [0320075313] +07:55:23 [ 11] [ 6] [931265] +07:55:23 [ 12] [ 6] [075313] +07:55:23 [ 13] [ 4] [0320] +07:55:23 [ 15] [ 4] [0320] +07:55:23 [ 18] [ 4] [6011] +07:55:23 [ 19] [ 3] [418] +07:55:23 [ 32] [ 6] [668899] +07:55:23 [ 35] [ 32] [6213544002031695=491212013169607] +07:55:23 [ 37] [ 12] [507900285706] +07:55:23 [ 38] [ 6] [615248] +07:55:23 [ 39] [ 2] [00] +07:55:23 [ 41] [ 8] [03010005] +07:55:23 [ 49] [ 3] [418] +07:55:23 [ 54] [ 40] [0001418C0003275891500002418C000327589150] +07:55:23 ============================================================================ +07:55:23 Sending to : +07:55:23 ============================================================================ +07:55:23 + + +waiting on router queue for slot.... +07:55:24 ============================================================================ +07:55:24 Slot Id : <22> +07:55:24 Transaction Type : RESPONSE +07:55:24 Received From : +07:55:24 ============================================================================ +07:55:24 FNo. Len. Field Value +07:55:24 ============================================================================ +07:55:24 [ 1] [ 4] [0210] +07:55:24 [ 2] [ 16] [6213544002031695] +07:55:24 [ 3] [ 6] [010000] +07:55:24 [ 4] [ 12] [000007000000] +07:55:24 [ 7] [ 10] [0320075313] +07:55:24 [ 11] [ 6] [931265] +07:55:24 [ 12] [ 6] [075313] +07:55:24 [ 13] [ 4] [0320] +07:55:24 [ 15] [ 4] [0320] +07:55:24 [ 18] [ 4] [6011] +07:55:24 [ 19] [ 3] [418] +07:55:24 [ 32] [ 6] [668899] +07:55:24 [ 35] [ 32] [6213544002031695=491212013169607] +07:55:24 [ 37] [ 12] [507900285706] +07:55:24 [ 38] [ 6] [615248] +07:55:24 [ 39] [ 2] [00] +07:55:24 [ 41] [ 8] [03010005] +07:55:24 [ 49] [ 3] [418] +07:55:24 [ 54] [ 40] [0001418C0003275891500002418C000327589150] +07:55:24 ============================================================================ +07:55:24 Calculate Source COMM Id = 4 +07:55:24 ============================================================================ +07:55:24 + + +waiting on router queue for slot.... +07:55:27 ============================================================================ +07:55:27 Slot Id : <469> +07:55:27 Transaction Type : REQUEST +07:55:27 Received From : +07:55:27 ============================================================================ +07:55:27 FNo. Len. Field Value +07:55:27 ============================================================================ +07:55:27 [ 1] [ 4] [0200] +07:55:27 [ 2] [ 16] [6213544001716817] +07:55:27 [ 3] [ 6] [010000] +07:55:27 [ 4] [ 12] [000004000000] +07:55:27 [ 7] [ 10] [0320075319] +07:55:27 [ 11] [ 6] [931271] +07:55:27 [ 12] [ 6] [075319] +07:55:27 [ 13] [ 4] [0320] +07:55:27 [ 15] [ 4] [0320] +07:55:27 [ 18] [ 4] [6011] +07:55:27 [ 19] [ 3] [418] +07:55:27 [ 22] [ 3] [021] +07:55:27 [ 25] [ 2] [01] +07:55:27 [ 28] [ 9] [D00002000] +07:55:27 [ 32] [ 6] [668899] +07:55:27 [ 35] [ 32] [6213544001716817=491212011681519] +07:55:27 [ 37] [ 12] [507902475657] +07:55:27 [ 41] [ 8] [03020032] +07:55:27 [ 42] [ 15] [APT ] +07:55:27 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +07:55:27 [ 49] [ 3] [418] +07:55:27 [ 52] [ 16] [456AEFA3E6310973] +07:55:27 ============================================================================ +07:55:27 + + +waiting on router queue for slot.... +07:55:27 Sending to : +07:55:27 ============================================================================ +07:55:27 Sending to : +07:55:27 ============================================================================ +07:55:28 ============================================================================ +07:55:28 Slot Id : <469> +07:55:28 Transaction Type : REQUEST +07:55:28 Received From : +07:55:28 ============================================================================ +07:55:28 FNo. Len. Field Value +07:55:28 ============================================================================ +07:55:28 [ 1] [ 4] [0200] +07:55:28 [ 2] [ 16] [6213544001716817] +07:55:28 [ 3] [ 6] [010000] +07:55:28 [ 4] [ 12] [000004000000] +07:55:28 [ 7] [ 10] [0320075319] +07:55:28 [ 11] [ 6] [931271] +07:55:28 [ 12] [ 6] [075319] +07:55:28 [ 13] [ 4] [0320] +07:55:28 [ 15] [ 4] [0320] +07:55:28 [ 18] [ 4] [6011] +07:55:28 [ 19] [ 3] [418] +07:55:28 [ 22] [ 3] [021] +07:55:28 [ 25] [ 2] [01] +07:55:28 [ 28] [ 9] [D00002000] +07:55:28 [ 32] [ 6] [668899] +07:55:28 [ 35] [ 32] [6213544001716817=491212011681519] +07:55:28 [ 37] [ 12] [507902475657] +07:55:28 [ 41] [ 8] [03020032] +07:55:28 [ 42] [ 15] [APT ] +07:55:28 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +07:55:28 [ 49] [ 3] [418] +07:55:28 [ 52] [ 16] [456AEFA3E6310973] +07:55:28 ============================================================================ +07:55:28 + + +waiting on router queue for slot.... +07:55:28 Sending to : +07:55:28 ============================================================================ +07:55:28 ============================================================================ +07:55:28 Slot Id : <469> +07:55:28 Transaction Type : REQUEST +07:55:28 Received From : +07:55:28 ============================================================================ +07:55:28 FNo. Len. Field Value +07:55:28 ============================================================================ +07:55:28 [ 1] [ 4] [0200] +07:55:28 [ 2] [ 16] [6213544001716817] +07:55:28 [ 3] [ 6] [010000] +07:55:28 [ 4] [ 12] [000004000000] +07:55:28 [ 7] [ 10] [0320075319] +07:55:28 [ 11] [ 6] [931271] +07:55:28 [ 12] [ 6] [075319] +07:55:28 [ 13] [ 4] [0320] +07:55:28 [ 15] [ 4] [0320] +07:55:28 [ 18] [ 4] [6011] +07:55:28 [ 19] [ 3] [418] +07:55:28 [ 22] [ 3] [021] +07:55:28 [ 25] [ 2] [01] +07:55:28 [ 28] [ 9] [D00002000] +07:55:28 [ 32] [ 6] [668899] +07:55:28 [ 35] [ 32] [6213544001716817=491212011681519] +07:55:28 [ 37] [ 12] [507902475657] +07:55:28 [ 41] [ 8] [03020032] +07:55:28 [ 42] [ 15] [APT ] +07:55:28 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +07:55:28 [ 49] [ 3] [418] +07:55:28 [ 52] [ 16] [772BF996C9A7882F] +07:55:28 ============================================================================ +07:55:28 + + +waiting on router queue for slot.... +07:55:28 Sending to : <0> +07:55:28 ============================================================================ +07:55:28 ============================================================================ +07:55:28 Slot Id : <469> +07:55:28 Transaction Type : RESPONSE +07:55:28 Received From : +07:55:28 ============================================================================ +07:55:28 FNo. Len. Field Value +07:55:28 ============================================================================ +07:55:28 [ 1] [ 4] [0210] +07:55:28 [ 2] [ 16] [6213544001716817] +07:55:28 [ 3] [ 6] [010000] +07:55:28 [ 4] [ 12] [000004000000] +07:55:28 [ 7] [ 10] [0320075319] +07:55:28 [ 11] [ 6] [931271] +07:55:28 [ 12] [ 6] [075319] +07:55:28 [ 13] [ 4] [0320] +07:55:28 [ 15] [ 4] [0320] +07:55:28 [ 18] [ 4] [6011] +07:55:28 [ 19] [ 3] [418] +07:55:28 [ 32] [ 6] [668899] +07:55:28 [ 35] [ 32] [6213544001716817=491212011681519] +07:55:28 [ 37] [ 12] [507902475657] +07:55:28 [ 38] [ 6] [432318] +07:55:28 [ 39] [ 2] [00] +07:55:28 [ 41] [ 8] [03020032] +07:55:28 [ 49] [ 3] [418] +07:55:28 [ 54] [ 40] [0001418C0000056563090002418C000005656309] +07:55:28 ============================================================================ +07:55:28 Sending to : +07:55:28 ============================================================================ +07:55:28 + + +waiting on router queue for slot.... +07:55:30 ============================================================================ +07:55:30 Slot Id : <469> +07:55:30 Transaction Type : RESPONSE +07:55:30 Received From : +07:55:30 ============================================================================ +07:55:30 FNo. Len. Field Value +07:55:30 ============================================================================ +07:55:30 [ 1] [ 4] [0210] +07:55:30 [ 2] [ 16] [6213544001716817] +07:55:30 [ 3] [ 6] [010000] +07:55:30 [ 4] [ 12] [000004000000] +07:55:30 [ 7] [ 10] [0320075319] +07:55:30 [ 11] [ 6] [931271] +07:55:30 [ 12] [ 6] [075319] +07:55:30 [ 13] [ 4] [0320] +07:55:30 [ 15] [ 4] [0320] +07:55:30 [ 18] [ 4] [6011] +07:55:30 [ 19] [ 3] [418] +07:55:30 [ 32] [ 6] [668899] +07:55:30 [ 35] [ 32] [6213544001716817=491212011681519] +07:55:30 [ 37] [ 12] [507902475657] +07:55:30 [ 38] [ 6] [432318] +07:55:30 [ 39] [ 2] [00] +07:55:30 [ 41] [ 8] [03020032] +07:55:30 [ 49] [ 3] [418] +07:55:30 [ 54] [ 40] [0001418C0000056563090002418C000005656309] +07:55:30 ============================================================================ +07:55:30 Calculate Source COMM Id = 4 +07:55:30 ============================================================================ +07:55:30 + + +waiting on router queue for slot.... +07:55:31 ============================================================================ +07:55:31 Slot Id : <491> +07:55:31 Transaction Type : REQUEST +07:55:31 Received From : +07:55:31 ============================================================================ +07:55:31 FNo. Len. Field Value +07:55:31 ============================================================================ +07:55:31 [ 1] [ 4] [0800] +07:55:31 [ 7] [ 10] [0320125439] +07:55:31 [ 11] [ 6] [155279] +07:55:31 [ 70] [ 3] [301] +07:55:31 ============================================================================ +07:55:31 + + +waiting on router queue for slot.... +07:55:31 Sending to : +07:55:31 ============================================================================ +07:55:31 ============================================================================ +07:55:31 Slot Id : <491> +07:55:31 Transaction Type : RESPONSE +07:55:31 Received From : +07:55:31 ============================================================================ +07:55:31 FNo. Len. Field Value +07:55:31 ============================================================================ +07:55:31 [ 1] [ 4] [0810] +07:55:31 [ 7] [ 10] [0320125439] +07:55:31 [ 11] [ 6] [155279] +07:55:31 [ 39] [ 2] [00] +07:55:31 [ 70] [ 3] [301] +07:55:31 ============================================================================ +07:55:31 Calculate Source COMM Id = 2 +07:55:31 ============================================================================ +07:55:31 + + +waiting on router queue for slot.... +07:55:38 ============================================================================ +07:55:38 Slot Id : <17> +07:55:38 Transaction Type : REQUEST +07:55:38 Received From : +07:55:38 ============================================================================ +07:55:38 FNo. Len. Field Value +07:55:38 ============================================================================ +07:55:38 [ 1] [ 4] [0800] +07:55:38 [ 7] [ 10] [0320150728] +07:55:38 [ 11] [ 6] [080728] +07:55:38 [ 37] [ 12] [57908080728] +07:55:38 [ 70] [ 3] [301] +07:55:38 ============================================================================ +07:55:38 + + +waiting on router queue for slot.... +07:55:38 Sending to : +07:55:38 ============================================================================ +07:55:38 ============================================================================ +07:55:38 Slot Id : <17> +07:55:38 Transaction Type : RESPONSE +07:55:38 Received From : +07:55:38 ============================================================================ +07:55:38 FNo. Len. Field Value +07:55:38 ============================================================================ +07:55:38 [ 1] [ 4] [0810] +07:55:38 [ 7] [ 10] [0320150728] +07:55:38 [ 11] [ 6] [080728] +07:55:38 [ 37] [ 12] [579080807280] +07:55:38 [ 39] [ 2] [00] +07:55:38 [ 70] [ 3] [810] +07:55:38 ============================================================================ +07:55:38 Calculate Source COMM Id = 6 +07:55:38 ============================================================================ +07:55:38 + + +waiting on router queue for slot.... +07:55:47 ============================================================================ +07:55:47 Slot Id : <499> +07:55:47 Transaction Type : REQUEST +07:55:47 Received From : +07:55:47 ============================================================================ +07:55:47 FNo. Len. Field Value +07:55:47 ============================================================================ +07:55:47 [ 1] [ 4] [0800] +07:55:47 [ 7] [ 10] [0320125455] +07:55:47 [ 11] [ 6] [155280] +07:55:47 [ 70] [ 3] [301] +07:55:47 ============================================================================ +07:55:47 + + +waiting on router queue for slot.... +07:55:47 Sending to : +07:55:47 ============================================================================ +07:55:47 ============================================================================ +07:55:47 Slot Id : <499> +07:55:47 Transaction Type : RESPONSE +07:55:47 Received From : +07:55:47 ============================================================================ +07:55:47 FNo. Len. Field Value +07:55:47 ============================================================================ +07:55:47 [ 1] [ 4] [0810] +07:55:47 [ 7] [ 10] [0320125455] +07:55:47 [ 11] [ 6] [155280] +07:55:47 [ 39] [ 2] [00] +07:55:47 [ 70] [ 3] [301] +07:55:47 ============================================================================ +07:55:47 Calculate Source COMM Id = 2 +07:55:47 ============================================================================ +07:55:47 + + +waiting on router queue for slot.... +07:55:56 ============================================================================ +07:55:56 Slot Id : <31> +07:55:56 Transaction Type : REQUEST +07:55:56 Received From : +07:55:56 ============================================================================ +07:55:56 FNo. Len. Field Value +07:55:56 ============================================================================ +07:55:56 [ 1] [ 4] [0800] +07:55:56 [ 2] [ 5] [02531] +07:55:56 [ 3] [ 6] [579078] +07:55:56 [ 7] [ 10] [0320005556] +07:55:56 [ 11] [ 6] [806872] +07:55:56 [ 15] [ 10] [0320005556] +07:55:56 [ 37] [ 11] [57907806872] +07:55:56 [ 70] [ 3] [001] +07:55:56 ============================================================================ +07:55:56 + + +waiting on router queue for slot.... +07:55:56 ============================================================================ +07:55:56 Slot Id : <31> +07:55:56 Transaction Type : RESPONSE +07:55:56 Received From : +07:55:56 ============================================================================ +07:55:56 FNo. Len. Field Value +07:55:56 ============================================================================ +07:55:56 [ 1] [ 4] [0810] +07:55:56 [ 7] [ 10] [0320005556] +07:55:56 [ 11] [ 6] [806872] +07:55:56 [ 15] [ 4] [0320] +07:55:56 [ 37] [ 12] [57907806872] +07:55:56 [ 39] [ 2] [00] +07:55:56 [ 70] [ 3] [001] +07:55:56 ============================================================================ +07:55:56 Sending to : +07:55:56 ============================================================================ +07:55:56 + + +waiting on router queue for slot.... +07:55:58 ============================================================================ +07:55:58 Slot Id : <10> +07:55:58 Transaction Type : REQUEST +07:55:58 Received From : +07:55:58 ============================================================================ +07:55:58 FNo. Len. Field Value +07:55:58 ============================================================================ +07:55:58 [ 1] [ 4] [0800] +07:55:58 [ 7] [ 10] [0320125506] +07:55:58 [ 11] [ 6] [155281] +07:55:58 [ 70] [ 3] [301] +07:55:58 ============================================================================ +07:55:58 + + +waiting on router queue for slot.... +07:55:58 Sending to : +07:55:58 ============================================================================ +07:55:58 ============================================================================ +07:55:58 Slot Id : <10> +07:55:58 Transaction Type : RESPONSE +07:55:58 Received From : +07:55:58 ============================================================================ +07:55:58 FNo. Len. Field Value +07:55:58 ============================================================================ +07:55:58 [ 1] [ 4] [0810] +07:55:58 [ 7] [ 10] [0320125506] +07:55:58 [ 11] [ 6] [155281] +07:55:58 [ 39] [ 2] [00] +07:55:58 [ 70] [ 3] [301] +07:55:58 ============================================================================ +07:55:58 Calculate Source COMM Id = 2 +07:55:58 ============================================================================ +07:55:58 + + +waiting on router queue for slot.... +07:56:08 ============================================================================ +07:56:08 Slot Id : <481> +07:56:08 Transaction Type : REQUEST +07:56:08 Received From : +07:56:08 ============================================================================ +07:56:08 FNo. Len. Field Value +07:56:08 ============================================================================ +07:56:08 [ 1] [ 4] [0800] +07:56:08 [ 7] [ 10] [0320125517] +07:56:08 [ 11] [ 6] [155282] +07:56:08 [ 70] [ 3] [301] +07:56:08 ============================================================================ +07:56:08 + + +waiting on router queue for slot.... +07:56:08 Sending to : +07:56:08 ============================================================================ +07:56:08 ============================================================================ +07:56:08 Slot Id : <481> +07:56:08 Transaction Type : RESPONSE +07:56:08 Received From : +07:56:08 ============================================================================ +07:56:08 FNo. Len. Field Value +07:56:08 ============================================================================ +07:56:08 [ 1] [ 4] [0810] +07:56:08 [ 7] [ 10] [0320125517] +07:56:08 [ 11] [ 6] [155282] +07:56:08 [ 39] [ 2] [00] +07:56:08 [ 70] [ 3] [301] +07:56:08 ============================================================================ +07:56:08 Calculate Source COMM Id = 2 +07:56:08 ============================================================================ +07:56:08 + + +waiting on router queue for slot.... +07:56:19 ============================================================================ +07:56:19 Slot Id : <23> +07:56:19 Transaction Type : REQUEST +07:56:19 Received From : +07:56:19 ============================================================================ +07:56:19 FNo. Len. Field Value +07:56:19 ============================================================================ +07:56:19 [ 1] [ 4] [0800] +07:56:19 [ 7] [ 10] [0320125527] +07:56:19 [ 11] [ 6] [155283] +07:56:19 [ 70] [ 3] [301] +07:56:19 ============================================================================ +07:56:19 + + +waiting on router queue for slot.... +07:56:19 Sending to : +07:56:19 ============================================================================ +07:56:19 ============================================================================ +07:56:19 Slot Id : <23> +07:56:19 Transaction Type : RESPONSE +07:56:19 Received From : +07:56:19 ============================================================================ +07:56:19 FNo. Len. Field Value +07:56:19 ============================================================================ +07:56:19 [ 1] [ 4] [0810] +07:56:19 [ 7] [ 10] [0320125527] +07:56:19 [ 11] [ 6] [155283] +07:56:19 [ 39] [ 2] [00] +07:56:19 [ 70] [ 3] [301] +07:56:19 ============================================================================ +07:56:19 Calculate Source COMM Id = 2 +07:56:19 ============================================================================ +07:56:19 + + +waiting on router queue for slot.... +07:56:21 ============================================================================ +07:56:21 Slot Id : <3> +07:56:21 Transaction Type : REQUEST +07:56:21 Received From : +07:56:21 ============================================================================ +07:56:21 FNo. Len. Field Value +07:56:21 ============================================================================ +07:56:21 [ 1] [ 4] [0800] +07:56:21 [ 7] [ 10] [0320005412] +07:56:21 [ 11] [ 6] [057692] +07:56:21 [ 37] [ 12] [57907057692] +07:56:21 [ 70] [ 3] [301] +07:56:21 ============================================================================ +07:56:21 + + +waiting on router queue for slot.... +07:56:21 Sending to : +07:56:21 ============================================================================ +07:56:21 ============================================================================ +07:56:21 Slot Id : <3> +07:56:21 Transaction Type : RESPONSE +07:56:21 Received From : +07:56:21 ============================================================================ +07:56:21 FNo. Len. Field Value +07:56:21 ============================================================================ +07:56:21 [ 1] [ 4] [0810] +07:56:21 [ 7] [ 10] [0320005412] +07:56:21 [ 11] [ 6] [057692] +07:56:21 [ 37] [ 12] [579070576920] +07:56:21 [ 39] [ 2] [00] +07:56:21 [ 70] [ 3] [810] +07:56:21 ============================================================================ +07:56:21 Calculate Source COMM Id = 4 +07:56:21 ============================================================================ +07:56:21 + + +waiting on router queue for slot.... +07:56:25 ============================================================================ +07:56:25 Slot Id : <29> +07:56:25 Transaction Type : REQUEST +07:56:25 Received From : +07:56:25 ============================================================================ +07:56:25 FNo. Len. Field Value +07:56:25 ============================================================================ +07:56:25 [ 1] [ 4] [0200] +07:56:25 [ 2] [ 16] [6213545000830715] +07:56:25 [ 3] [ 6] [010000] +07:56:25 [ 4] [ 12] [000010000000] +07:56:25 [ 7] [ 10] [0320005532] +07:56:25 [ 11] [ 6] [266952] +07:56:25 [ 12] [ 6] [075532] +07:56:25 [ 13] [ 4] [0320] +07:56:25 [ 14] [ 4] [4912] +07:56:25 [ 15] [ 4] [0320] +07:56:25 [ 18] [ 4] [6011] +07:56:25 [ 19] [ 3] [418] +07:56:25 [ 22] [ 3] [021] +07:56:25 [ 25] [ 2] [01] +07:56:25 [ 28] [ 9] [D00002000] +07:56:25 [ 32] [ 6] [180893] +07:56:25 [ 35] [ 32] [6213545000830715=491212013071140] +07:56:25 [ 37] [ 12] [507900266952] +07:56:25 [ 41] [ 8] [0367BL20] +07:56:25 [ 42] [ 15] [999999 ] +07:56:25 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +07:56:25 [ 49] [ 3] [418] +07:56:25 [ 52] [ 16] [3D50954897C7E48B] +07:56:25 ============================================================================ +07:56:25 + + +waiting on router queue for slot.... +07:56:25 Sending to : +07:56:25 ============================================================================ +07:56:25 Sending to : +07:56:25 ============================================================================ +07:56:25 ============================================================================ +07:56:25 Slot Id : <29> +07:56:25 Transaction Type : REQUEST +07:56:25 Received From : +07:56:25 ============================================================================ +07:56:25 FNo. Len. Field Value +07:56:25 ============================================================================ +07:56:25 [ 1] [ 4] [0200] +07:56:25 [ 2] [ 16] [6213545000830715] +07:56:25 [ 3] [ 6] [010000] +07:56:25 [ 4] [ 12] [000010000000] +07:56:25 [ 7] [ 10] [0320005532] +07:56:25 [ 11] [ 6] [266952] +07:56:25 [ 12] [ 6] [075532] +07:56:25 [ 13] [ 4] [0320] +07:56:25 [ 14] [ 4] [4912] +07:56:25 [ 15] [ 4] [0320] +07:56:25 [ 18] [ 4] [6011] +07:56:25 [ 19] [ 3] [418] +07:56:25 [ 22] [ 3] [021] +07:56:25 [ 25] [ 2] [01] +07:56:25 [ 28] [ 9] [D00002000] +07:56:25 [ 32] [ 6] [180893] +07:56:25 [ 35] [ 32] [6213545000830715=491212013071140] +07:56:25 [ 37] [ 12] [507900266952] +07:56:25 [ 41] [ 8] [0367BL20] +07:56:25 [ 42] [ 15] [999999 ] +07:56:25 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +07:56:25 [ 49] [ 3] [418] +07:56:25 [ 52] [ 16] [3D50954897C7E48B] +07:56:25 ============================================================================ +07:56:25 + + +waiting on router queue for slot.... +07:56:25 Sending to : +07:56:25 ============================================================================ +07:56:25 ============================================================================ +07:56:25 Slot Id : <29> +07:56:25 Transaction Type : REQUEST +07:56:25 Received From : +07:56:25 ============================================================================ +07:56:25 FNo. Len. Field Value +07:56:25 ============================================================================ +07:56:25 [ 1] [ 4] [0200] +07:56:25 [ 2] [ 16] [6213545000830715] +07:56:25 [ 3] [ 6] [010000] +07:56:25 [ 4] [ 12] [000010000000] +07:56:25 [ 7] [ 10] [0320005532] +07:56:25 [ 11] [ 6] [266952] +07:56:25 [ 12] [ 6] [075532] +07:56:25 [ 13] [ 4] [0320] +07:56:25 [ 14] [ 4] [4912] +07:56:25 [ 15] [ 4] [0320] +07:56:25 [ 18] [ 4] [6011] +07:56:25 [ 19] [ 3] [418] +07:56:25 [ 22] [ 3] [021] +07:56:25 [ 25] [ 2] [01] +07:56:25 [ 28] [ 9] [D00002000] +07:56:25 [ 32] [ 6] [180893] +07:56:25 [ 35] [ 32] [6213545000830715=491212013071140] +07:56:25 [ 37] [ 12] [507900266952] +07:56:25 [ 41] [ 8] [0367BL20] +07:56:25 [ 42] [ 15] [999999 ] +07:56:25 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +07:56:25 [ 49] [ 3] [418] +07:56:25 [ 52] [ 16] [2567E07111A3BA9B] +07:56:25 ============================================================================ +07:56:25 + + +waiting on router queue for slot.... +07:56:25 Sending to : <0> +07:56:25 ============================================================================ +07:56:26 ============================================================================ +07:56:26 Slot Id : <29> +07:56:26 Transaction Type : RESPONSE +07:56:26 Received From : +07:56:26 ============================================================================ +07:56:26 FNo. Len. Field Value +07:56:26 ============================================================================ +07:56:26 [ 1] [ 4] [0210] +07:56:26 [ 2] [ 16] [6213545000830715] +07:56:26 [ 3] [ 6] [010000] +07:56:26 [ 4] [ 12] [000010000000] +07:56:26 [ 7] [ 10] [0320005532] +07:56:26 [ 11] [ 6] [266952] +07:56:26 [ 12] [ 6] [075532] +07:56:26 [ 13] [ 4] [0320] +07:56:26 [ 15] [ 4] [0320] +07:56:26 [ 18] [ 4] [6011] +07:56:26 [ 19] [ 3] [418] +07:56:26 [ 32] [ 6] [180893] +07:56:26 [ 35] [ 32] [6213545000830715=491212013071140] +07:56:26 [ 37] [ 12] [507900266952] +07:56:26 [ 38] [ 6] [162572] +07:56:26 [ 39] [ 2] [00] +07:56:26 [ 41] [ 8] [0367BL20] +07:56:26 [ 49] [ 3] [418] +07:56:26 [ 54] [ 40] [0001418C0001127268180002418C000112726818] +07:56:26 ============================================================================ +07:56:26 Sending to : +07:56:26 ============================================================================ +07:56:26 + + +waiting on router queue for slot.... +07:56:28 ============================================================================ +07:56:28 Slot Id : <29> +07:56:28 Transaction Type : RESPONSE +07:56:28 Received From : +07:56:28 ============================================================================ +07:56:28 FNo. Len. Field Value +07:56:28 ============================================================================ +07:56:28 [ 1] [ 4] [0210] +07:56:28 [ 2] [ 16] [6213545000830715] +07:56:28 [ 3] [ 6] [010000] +07:56:28 [ 4] [ 12] [000010000000] +07:56:28 [ 7] [ 10] [0320005532] +07:56:28 [ 11] [ 6] [266952] +07:56:28 [ 12] [ 6] [075532] +07:56:28 [ 13] [ 4] [0320] +07:56:28 [ 15] [ 4] [0320] +07:56:28 [ 18] [ 4] [6011] +07:56:28 [ 19] [ 3] [418] +07:56:28 [ 32] [ 6] [180893] +07:56:28 [ 35] [ 32] [6213545000830715=491212013071140] +07:56:28 [ 37] [ 12] [507900266952] +07:56:28 [ 38] [ 6] [162572] +07:56:28 [ 39] [ 2] [00] +07:56:28 [ 41] [ 8] [0367BL20] +07:56:28 [ 49] [ 3] [418] +07:56:28 [ 54] [ 40] [0001418C0001127268180002418C000112726818] +07:56:28 ============================================================================ +07:56:28 Calculate Source COMM Id = 2 +07:56:28 ============================================================================ +07:56:28 + + +waiting on router queue for slot.... +07:56:40 ============================================================================ +07:56:40 Slot Id : <7> +07:56:40 Transaction Type : REQUEST +07:56:40 Received From : +07:56:40 ============================================================================ +07:56:40 FNo. Len. Field Value +07:56:40 ============================================================================ +07:56:40 [ 1] [ 4] [0800] +07:56:40 [ 7] [ 10] [0320125549] +07:56:40 [ 11] [ 6] [155284] +07:56:40 [ 70] [ 3] [301] +07:56:40 ============================================================================ +07:56:40 + + +waiting on router queue for slot.... +07:56:40 Sending to : +07:56:40 ============================================================================ +07:56:40 ============================================================================ +07:56:40 Slot Id : <7> +07:56:40 Transaction Type : RESPONSE +07:56:40 Received From : +07:56:40 ============================================================================ +07:56:40 FNo. Len. Field Value +07:56:40 ============================================================================ +07:56:40 [ 1] [ 4] [0810] +07:56:40 [ 7] [ 10] [0320125549] +07:56:40 [ 11] [ 6] [155284] +07:56:40 [ 39] [ 2] [00] +07:56:40 [ 70] [ 3] [301] +07:56:40 ============================================================================ +07:56:40 Calculate Source COMM Id = 2 +07:56:40 ============================================================================ +07:56:40 + + +waiting on router queue for slot.... +07:56:43 ============================================================================ +07:56:43 Slot Id : <33> +07:56:43 Transaction Type : REQUEST +07:56:43 Received From : +07:56:43 ============================================================================ +07:56:43 FNo. Len. Field Value +07:56:43 ============================================================================ +07:56:43 [ 1] [ 4] [0800] +07:56:43 [ 7] [ 10] [0320150833] +07:56:43 [ 11] [ 6] [080833] +07:56:43 [ 37] [ 12] [57908080833] +07:56:43 [ 70] [ 3] [301] +07:56:43 ============================================================================ +07:56:43 + + +waiting on router queue for slot.... +07:56:43 Sending to : +07:56:43 ============================================================================ +07:56:43 ============================================================================ +07:56:43 Slot Id : <33> +07:56:43 Transaction Type : RESPONSE +07:56:43 Received From : +07:56:43 ============================================================================ +07:56:43 FNo. Len. Field Value +07:56:43 ============================================================================ +07:56:43 [ 1] [ 4] [0810] +07:56:43 [ 7] [ 10] [0320150833] +07:56:43 [ 11] [ 6] [080833] +07:56:43 [ 37] [ 12] [579080808330] +07:56:43 [ 39] [ 2] [00] +07:56:43 [ 70] [ 3] [810] +07:56:43 ============================================================================ +07:56:43 Calculate Source COMM Id = 6 +07:56:43 ============================================================================ +07:56:43 + + +waiting on router queue for slot.... +07:56:51 ============================================================================ +07:56:51 Slot Id : <21> +07:56:51 Transaction Type : REQUEST +07:56:51 Received From : +07:56:51 ============================================================================ +07:56:51 FNo. Len. Field Value +07:56:51 ============================================================================ +07:56:51 [ 1] [ 4] [0800] +07:56:51 [ 7] [ 10] [0320125559] +07:56:51 [ 11] [ 6] [155285] +07:56:51 [ 70] [ 3] [301] +07:56:51 ============================================================================ +07:56:51 + + +waiting on router queue for slot.... +07:56:51 Sending to : +07:56:51 ============================================================================ +07:56:51 ============================================================================ +07:56:51 Slot Id : <21> +07:56:51 Transaction Type : RESPONSE +07:56:51 Received From : +07:56:51 ============================================================================ +07:56:51 FNo. Len. Field Value +07:56:51 ============================================================================ +07:56:51 [ 1] [ 4] [0810] +07:56:51 [ 7] [ 10] [0320125559] +07:56:51 [ 11] [ 6] [155285] +07:56:51 [ 39] [ 2] [00] +07:56:51 [ 70] [ 3] [301] +07:56:51 ============================================================================ +07:56:51 Calculate Source COMM Id = 2 +07:56:51 ============================================================================ +07:56:51 + + +waiting on router queue for slot.... +07:56:53 ============================================================================ +07:56:53 Slot Id : <35> +07:56:53 Transaction Type : REQUEST +07:56:53 Received From : +07:56:53 ============================================================================ +07:56:53 FNo. Len. Field Value +07:56:53 ============================================================================ +07:56:53 [ 1] [ 4] [0200] +07:56:53 [ 2] [ 16] [6213543000242155] +07:56:53 [ 3] [ 6] [010000] +07:56:53 [ 4] [ 12] [000050000000] +07:56:53 [ 7] [ 10] [0320075444] +07:56:53 [ 11] [ 6] [931349] +07:56:53 [ 12] [ 6] [075444] +07:56:53 [ 13] [ 4] [0320] +07:56:53 [ 15] [ 4] [0320] +07:56:53 [ 18] [ 4] [6011] +07:56:53 [ 19] [ 3] [418] +07:56:53 [ 22] [ 3] [021] +07:56:53 [ 25] [ 2] [01] +07:56:53 [ 28] [ 9] [D00002000] +07:56:53 [ 32] [ 6] [668899] +07:56:53 [ 35] [ 32] [6213543000242155=491212014215813] +07:56:53 [ 37] [ 12] [507901972362] +07:56:53 [ 41] [ 8] [03012003] +07:56:53 [ 42] [ 15] [APT ] +07:56:53 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:56:53 [ 49] [ 3] [418] +07:56:53 [ 52] [ 16] [CA1423064F3390AC] +07:56:53 ============================================================================ +07:56:53 + + +waiting on router queue for slot.... +07:56:53 Sending to : +07:56:53 ============================================================================ +07:56:53 Sending to : +07:56:53 ============================================================================ +07:56:53 ============================================================================ +07:56:53 Slot Id : <35> +07:56:53 Transaction Type : REQUEST +07:56:53 Received From : +07:56:53 ============================================================================ +07:56:53 FNo. Len. Field Value +07:56:53 ============================================================================ +07:56:53 [ 1] [ 4] [0200] +07:56:53 [ 2] [ 16] [6213543000242155] +07:56:53 [ 3] [ 6] [010000] +07:56:53 [ 4] [ 12] [000050000000] +07:56:53 [ 7] [ 10] [0320075444] +07:56:53 [ 11] [ 6] [931349] +07:56:53 [ 12] [ 6] [075444] +07:56:53 [ 13] [ 4] [0320] +07:56:53 [ 15] [ 4] [0320] +07:56:53 [ 18] [ 4] [6011] +07:56:53 [ 19] [ 3] [418] +07:56:53 [ 22] [ 3] [021] +07:56:53 [ 25] [ 2] [01] +07:56:53 [ 28] [ 9] [D00002000] +07:56:53 [ 32] [ 6] [668899] +07:56:53 [ 35] [ 32] [6213543000242155=491212014215813] +07:56:53 [ 37] [ 12] [507901972362] +07:56:53 [ 41] [ 8] [03012003] +07:56:53 [ 42] [ 15] [APT ] +07:56:53 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:56:53 [ 49] [ 3] [418] +07:56:53 [ 52] [ 16] [CA1423064F3390AC] +07:56:53 ============================================================================ +07:56:53 + + +waiting on router queue for slot.... +07:56:53 Sending to : +07:56:53 ============================================================================ +07:56:53 ============================================================================ +07:56:53 Slot Id : <35> +07:56:53 Transaction Type : REQUEST +07:56:53 Received From : +07:56:53 ============================================================================ +07:56:53 FNo. Len. Field Value +07:56:53 ============================================================================ +07:56:53 [ 1] [ 4] [0200] +07:56:53 [ 2] [ 16] [6213543000242155] +07:56:53 [ 3] [ 6] [010000] +07:56:53 [ 4] [ 12] [000050000000] +07:56:53 [ 7] [ 10] [0320075444] +07:56:53 [ 11] [ 6] [931349] +07:56:53 [ 12] [ 6] [075444] +07:56:53 [ 13] [ 4] [0320] +07:56:53 [ 15] [ 4] [0320] +07:56:53 [ 18] [ 4] [6011] +07:56:53 [ 19] [ 3] [418] +07:56:53 [ 22] [ 3] [021] +07:56:53 [ 25] [ 2] [01] +07:56:53 [ 28] [ 9] [D00002000] +07:56:53 [ 32] [ 6] [668899] +07:56:53 [ 35] [ 32] [6213543000242155=491212014215813] +07:56:53 [ 37] [ 12] [507901972362] +07:56:53 [ 41] [ 8] [03012003] +07:56:53 [ 42] [ 15] [APT ] +07:56:53 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +07:56:53 [ 49] [ 3] [418] +07:56:53 [ 52] [ 16] [ACC9C7E711E6067E] +07:56:53 ============================================================================ +07:56:53 + + +waiting on router queue for slot.... +07:56:53 Sending to : <0> +07:56:53 ============================================================================ +07:56:54 ============================================================================ +07:56:54 Slot Id : <35> +07:56:54 Transaction Type : RESPONSE +07:56:54 Received From : +07:56:54 ============================================================================ +07:56:54 FNo. Len. Field Value +07:56:54 ============================================================================ +07:56:54 [ 1] [ 4] [0210] +07:56:54 [ 2] [ 16] [6213543000242155] +07:56:54 [ 3] [ 6] [010000] +07:56:54 [ 4] [ 12] [000050000000] +07:56:54 [ 7] [ 10] [0320075444] +07:56:54 [ 11] [ 6] [931349] +07:56:54 [ 12] [ 6] [075444] +07:56:54 [ 13] [ 4] [0320] +07:56:54 [ 15] [ 4] [0320] +07:56:54 [ 18] [ 4] [6011] +07:56:54 [ 19] [ 3] [418] +07:56:54 [ 32] [ 6] [668899] +07:56:54 [ 35] [ 32] [6213543000242155=491212014215813] +07:56:54 [ 37] [ 12] [507901972362] +07:56:54 [ 38] [ 6] [878018] +07:56:54 [ 39] [ 2] [00] +07:56:54 [ 41] [ 8] [03012003] +07:56:54 [ 49] [ 3] [418] +07:56:54 [ 54] [ 40] [0001418C0002596000000002418C000259600000] +07:56:54 ============================================================================ +07:56:54 Sending to : +07:56:54 ============================================================================ +07:56:54 + + +waiting on router queue for slot.... +07:56:55 ============================================================================ +07:56:55 Slot Id : <35> +07:56:55 Transaction Type : RESPONSE +07:56:55 Received From : +07:56:55 ============================================================================ +07:56:55 FNo. Len. Field Value +07:56:55 ============================================================================ +07:56:55 [ 1] [ 4] [0210] +07:56:55 [ 2] [ 16] [6213543000242155] +07:56:55 [ 3] [ 6] [010000] +07:56:55 [ 4] [ 12] [000050000000] +07:56:55 [ 7] [ 10] [0320075444] +07:56:55 [ 11] [ 6] [931349] +07:56:55 [ 12] [ 6] [075444] +07:56:55 [ 13] [ 4] [0320] +07:56:55 [ 15] [ 4] [0320] +07:56:55 [ 18] [ 4] [6011] +07:56:55 [ 19] [ 3] [418] +07:56:55 [ 32] [ 6] [668899] +07:56:55 [ 35] [ 32] [6213543000242155=491212014215813] +07:56:55 [ 37] [ 12] [507901972362] +07:56:55 [ 38] [ 6] [878018] +07:56:55 [ 39] [ 2] [00] +07:56:55 [ 41] [ 8] [03012003] +07:56:55 [ 49] [ 3] [418] +07:56:55 [ 54] [ 40] [0001418C0002596000000002418C000259600000] +07:56:55 ============================================================================ +07:56:55 Calculate Source COMM Id = 4 +07:56:55 ============================================================================ +07:56:55 + + +waiting on router queue for slot.... +07:56:58 ============================================================================ +07:56:58 Slot Id : <11> +07:56:58 Transaction Type : REQUEST +07:56:58 Received From : +07:56:58 ============================================================================ +07:56:58 FNo. Len. Field Value +07:56:58 ============================================================================ +07:56:58 [ 1] [ 4] [0800] +07:56:58 [ 2] [ 5] [02531] +07:56:58 [ 3] [ 6] [579078] +07:56:58 [ 7] [ 10] [0320005658] +07:56:58 [ 11] [ 6] [806873] +07:56:58 [ 15] [ 10] [0320005658] +07:56:58 [ 37] [ 11] [57907806873] +07:56:58 [ 70] [ 3] [001] +07:56:58 ============================================================================ +07:56:58 + + +waiting on router queue for slot.... +07:56:58 ============================================================================ +07:56:58 Slot Id : <11> +07:56:58 Transaction Type : RESPONSE +07:56:58 Received From : +07:56:58 ============================================================================ +07:56:58 FNo. Len. Field Value +07:56:58 ============================================================================ +07:56:58 [ 1] [ 4] [0810] +07:56:58 [ 7] [ 10] [0320005658] +07:56:58 [ 11] [ 6] [806873] +07:56:58 [ 15] [ 4] [0320] +07:56:58 [ 37] [ 12] [57907806873] +07:56:58 [ 39] [ 2] [00] +07:56:58 [ 70] [ 3] [001] +07:56:58 ============================================================================ +07:56:58 Sending to : +07:56:58 ============================================================================ +07:56:58 + + +waiting on router queue for slot.... +07:57:02 ============================================================================ +07:57:02 Slot Id : <30> +07:57:02 Transaction Type : REQUEST +07:57:02 Received From : +07:57:02 ============================================================================ +07:57:02 FNo. Len. Field Value +07:57:02 ============================================================================ +07:57:02 [ 1] [ 4] [0800] +07:57:02 [ 7] [ 10] [0320125610] +07:57:02 [ 11] [ 6] [155286] +07:57:02 [ 70] [ 3] [301] +07:57:02 ============================================================================ +07:57:02 + + +waiting on router queue for slot.... +07:57:02 Sending to : +07:57:02 ============================================================================ +07:57:02 ============================================================================ +07:57:02 Slot Id : <30> +07:57:02 Transaction Type : RESPONSE +07:57:02 Received From : +07:57:02 ============================================================================ +07:57:02 FNo. Len. Field Value +07:57:02 ============================================================================ +07:57:02 [ 1] [ 4] [0810] +07:57:02 [ 7] [ 10] [0320125610] +07:57:02 [ 11] [ 6] [155286] +07:57:02 [ 39] [ 2] [00] +07:57:02 [ 70] [ 3] [301] +07:57:02 ============================================================================ +07:57:02 Calculate Source COMM Id = 2 +07:57:02 ============================================================================ +07:57:02 + + +waiting on router queue for slot.... +07:57:06 ============================================================================ +07:57:06 Slot Id : <496> +07:57:06 Transaction Type : REQUEST +07:57:06 Received From : +07:57:06 ============================================================================ +07:57:06 FNo. Len. Field Value +07:57:06 ============================================================================ +07:57:06 [ 1] [ 4] [0200] +07:57:06 [ 2] [ 16] [6213548000409183] +07:57:06 [ 3] [ 6] [012000] +07:57:06 [ 4] [ 12] [000004000000] +07:57:06 [ 7] [ 10] [0320005614] +07:57:06 [ 11] [ 6] [266957] +07:57:06 [ 12] [ 6] [075614] +07:57:06 [ 13] [ 4] [0320] +07:57:06 [ 14] [ 4] [1806] +07:57:06 [ 15] [ 4] [0320] +07:57:06 [ 18] [ 4] [6011] +07:57:06 [ 19] [ 3] [418] +07:57:06 [ 22] [ 3] [021] +07:57:06 [ 25] [ 2] [01] +07:57:06 [ 28] [ 9] [D00002000] +07:57:06 [ 32] [ 6] [180893] +07:57:06 [ 35] [ 32] [6213548000409183=180612010918109] +07:57:06 [ 37] [ 12] [507900266957] +07:57:06 [ 41] [ 8] [0527LPBL] +07:57:06 [ 42] [ 15] [999999 ] +07:57:06 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +07:57:06 [ 49] [ 3] [418] +07:57:06 [ 52] [ 16] [3F818244B2F99269] +07:57:06 ============================================================================ +07:57:06 + + +waiting on router queue for slot.... +07:57:06 Sending to : +07:57:06 ============================================================================ +07:57:06 Sending to : +07:57:06 ============================================================================ +07:57:06 ============================================================================ +07:57:06 Slot Id : <496> +07:57:06 Transaction Type : REQUEST +07:57:06 Received From : +07:57:06 ============================================================================ +07:57:06 FNo. Len. Field Value +07:57:06 ============================================================================ +07:57:06 [ 1] [ 4] [0200] +07:57:06 [ 2] [ 16] [6213548000409183] +07:57:06 [ 3] [ 6] [012000] +07:57:06 [ 4] [ 12] [000004000000] +07:57:06 [ 7] [ 10] [0320005614] +07:57:06 [ 11] [ 6] [266957] +07:57:06 [ 12] [ 6] [075614] +07:57:06 [ 13] [ 4] [0320] +07:57:06 [ 14] [ 4] [1806] +07:57:06 [ 15] [ 4] [0320] +07:57:06 [ 18] [ 4] [6011] +07:57:06 [ 19] [ 3] [418] +07:57:06 [ 22] [ 3] [021] +07:57:06 [ 25] [ 2] [01] +07:57:06 [ 28] [ 9] [D00002000] +07:57:06 [ 32] [ 6] [180893] +07:57:06 [ 35] [ 32] [6213548000409183=180612010918109] +07:57:06 [ 37] [ 12] [507900266957] +07:57:06 [ 41] [ 8] [0527LPBL] +07:57:06 [ 42] [ 15] [999999 ] +07:57:06 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +07:57:06 [ 49] [ 3] [418] +07:57:06 [ 52] [ 16] [3F818244B2F99269] +07:57:06 ============================================================================ +07:57:06 + + +waiting on router queue for slot.... +07:57:06 Sending to : +07:57:06 ============================================================================ +07:57:06 ============================================================================ +07:57:06 Slot Id : <496> +07:57:06 Transaction Type : REQUEST +07:57:06 Received From : +07:57:06 ============================================================================ +07:57:06 FNo. Len. Field Value +07:57:06 ============================================================================ +07:57:06 [ 1] [ 4] [0200] +07:57:06 [ 2] [ 16] [6213548000409183] +07:57:06 [ 3] [ 6] [012000] +07:57:06 [ 4] [ 12] [000004000000] +07:57:06 [ 7] [ 10] [0320005614] +07:57:06 [ 11] [ 6] [266957] +07:57:06 [ 12] [ 6] [075614] +07:57:06 [ 13] [ 4] [0320] +07:57:06 [ 14] [ 4] [1806] +07:57:06 [ 15] [ 4] [0320] +07:57:06 [ 18] [ 4] [6011] +07:57:06 [ 19] [ 3] [418] +07:57:06 [ 22] [ 3] [021] +07:57:06 [ 25] [ 2] [01] +07:57:06 [ 28] [ 9] [D00002000] +07:57:06 [ 32] [ 6] [180893] +07:57:06 [ 35] [ 32] [6213548000409183=180612010918109] +07:57:06 [ 37] [ 12] [507900266957] +07:57:06 [ 41] [ 8] [0527LPBL] +07:57:06 [ 42] [ 15] [999999 ] +07:57:06 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +07:57:06 [ 49] [ 3] [418] +07:57:06 [ 52] [ 16] [7B24C0FD28CCB1B7] +07:57:06 ============================================================================ +07:57:06 + + +waiting on router queue for slot.... +07:57:06 Sending to : <0> +07:57:06 ============================================================================ +07:57:07 ============================================================================ +07:57:07 Slot Id : <496> +07:57:07 Transaction Type : RESPONSE +07:57:07 Received From : +07:57:07 ============================================================================ +07:57:07 FNo. Len. Field Value +07:57:07 ============================================================================ +07:57:07 [ 1] [ 4] [0210] +07:57:07 [ 2] [ 16] [6213548000409183] +07:57:07 [ 3] [ 6] [012000] +07:57:07 [ 4] [ 12] [000004000000] +07:57:07 [ 7] [ 10] [0320005614] +07:57:07 [ 11] [ 6] [266957] +07:57:07 [ 12] [ 6] [075614] +07:57:07 [ 13] [ 4] [0320] +07:57:07 [ 15] [ 4] [0320] +07:57:07 [ 18] [ 4] [6011] +07:57:07 [ 19] [ 3] [418] +07:57:07 [ 32] [ 6] [180893] +07:57:07 [ 35] [ 32] [6213548000409183=180612010918109] +07:57:07 [ 37] [ 12] [507900266957] +07:57:07 [ 38] [ 6] [794615] +07:57:07 [ 39] [ 2] [00] +07:57:07 [ 41] [ 8] [0527LPBL] +07:57:07 [ 49] [ 3] [418] +07:57:07 [ 54] [ 40] [2001418C0000084214392002418C000008421439] +07:57:07 ============================================================================ +07:57:07 Sending to : +07:57:07 ============================================================================ +07:57:07 + + +waiting on router queue for slot.... +07:57:08 ============================================================================ +07:57:08 Slot Id : <496> +07:57:08 Transaction Type : RESPONSE +07:57:08 Received From : +07:57:08 ============================================================================ +07:57:08 FNo. Len. Field Value +07:57:08 ============================================================================ +07:57:08 [ 1] [ 4] [0210] +07:57:08 [ 2] [ 16] [6213548000409183] +07:57:08 [ 3] [ 6] [012000] +07:57:08 [ 4] [ 12] [000004000000] +07:57:08 [ 7] [ 10] [0320005614] +07:57:08 [ 11] [ 6] [266957] +07:57:08 [ 12] [ 6] [075614] +07:57:08 [ 13] [ 4] [0320] +07:57:08 [ 15] [ 4] [0320] +07:57:08 [ 18] [ 4] [6011] +07:57:08 [ 19] [ 3] [418] +07:57:08 [ 32] [ 6] [180893] +07:57:08 [ 35] [ 32] [6213548000409183=180612010918109] +07:57:08 [ 37] [ 12] [507900266957] +07:57:08 [ 38] [ 6] [794615] +07:57:08 [ 39] [ 2] [00] +07:57:08 [ 41] [ 8] [0527LPBL] +07:57:08 [ 49] [ 3] [418] +07:57:08 [ 54] [ 40] [2001418C0000084214392002418C000008421439] +07:57:08 ============================================================================ +07:57:08 Calculate Source COMM Id = 2 +07:57:08 ============================================================================ +07:57:08 + + +waiting on router queue for slot.... +07:57:21 ============================================================================ +07:57:21 Slot Id : <461> +07:57:21 Transaction Type : REQUEST +07:57:21 Received From : +07:57:21 ============================================================================ +07:57:21 FNo. Len. Field Value +07:57:21 ============================================================================ +07:57:21 [ 1] [ 4] [0200] +07:57:21 [ 2] [ 16] [6213545001030968] +07:57:21 [ 3] [ 6] [010000] +07:57:21 [ 4] [ 12] [000050000000] +07:57:21 [ 7] [ 10] [0320075513] +07:57:21 [ 11] [ 6] [931378] +07:57:21 [ 12] [ 6] [075513] +07:57:21 [ 13] [ 4] [0320] +07:57:21 [ 15] [ 4] [0320] +07:57:21 [ 18] [ 4] [6011] +07:57:21 [ 19] [ 3] [418] +07:57:21 [ 22] [ 3] [021] +07:57:21 [ 25] [ 2] [01] +07:57:21 [ 28] [ 9] [D00002000] +07:57:21 [ 32] [ 6] [668899] +07:57:21 [ 35] [ 32] [6213545001030968=491212013096547] +07:57:21 [ 37] [ 12] [507902150926] +07:57:21 [ 41] [ 8] [03020025] +07:57:21 [ 42] [ 15] [APT ] +07:57:21 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +07:57:21 [ 49] [ 3] [418] +07:57:21 [ 52] [ 16] [ABDBE2F5D1E91A08] +07:57:21 ============================================================================ +07:57:21 + + +waiting on router queue for slot.... +07:57:21 Sending to : +07:57:21 ============================================================================ +07:57:21 Sending to : +07:57:21 ============================================================================ +07:57:22 ============================================================================ +07:57:22 Slot Id : <461> +07:57:22 Transaction Type : REQUEST +07:57:22 Received From : +07:57:22 ============================================================================ +07:57:22 FNo. Len. Field Value +07:57:22 ============================================================================ +07:57:22 [ 1] [ 4] [0200] +07:57:22 [ 2] [ 16] [6213545001030968] +07:57:22 [ 3] [ 6] [010000] +07:57:22 [ 4] [ 12] [000050000000] +07:57:22 [ 7] [ 10] [0320075513] +07:57:22 [ 11] [ 6] [931378] +07:57:22 [ 12] [ 6] [075513] +07:57:22 [ 13] [ 4] [0320] +07:57:22 [ 15] [ 4] [0320] +07:57:22 [ 18] [ 4] [6011] +07:57:22 [ 19] [ 3] [418] +07:57:22 [ 22] [ 3] [021] +07:57:22 [ 25] [ 2] [01] +07:57:22 [ 28] [ 9] [D00002000] +07:57:22 [ 32] [ 6] [668899] +07:57:22 [ 35] [ 32] [6213545001030968=491212013096547] +07:57:22 [ 37] [ 12] [507902150926] +07:57:22 [ 41] [ 8] [03020025] +07:57:22 [ 42] [ 15] [APT ] +07:57:22 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +07:57:22 [ 49] [ 3] [418] +07:57:22 [ 52] [ 16] [ABDBE2F5D1E91A08] +07:57:22 ============================================================================ +07:57:22 + + +waiting on router queue for slot.... +07:57:22 Sending to : +07:57:22 ============================================================================ +07:57:22 ============================================================================ +07:57:22 Slot Id : <461> +07:57:22 Transaction Type : REQUEST +07:57:22 Received From : +07:57:22 ============================================================================ +07:57:22 FNo. Len. Field Value +07:57:22 ============================================================================ +07:57:22 [ 1] [ 4] [0200] +07:57:22 [ 2] [ 16] [6213545001030968] +07:57:22 [ 3] [ 6] [010000] +07:57:22 [ 4] [ 12] [000050000000] +07:57:22 [ 7] [ 10] [0320075513] +07:57:22 [ 11] [ 6] [931378] +07:57:22 [ 12] [ 6] [075513] +07:57:22 [ 13] [ 4] [0320] +07:57:22 [ 15] [ 4] [0320] +07:57:22 [ 18] [ 4] [6011] +07:57:22 [ 19] [ 3] [418] +07:57:22 [ 22] [ 3] [021] +07:57:22 [ 25] [ 2] [01] +07:57:22 [ 28] [ 9] [D00002000] +07:57:22 [ 32] [ 6] [668899] +07:57:22 [ 35] [ 32] [6213545001030968=491212013096547] +07:57:22 [ 37] [ 12] [507902150926] +07:57:22 [ 41] [ 8] [03020025] +07:57:22 [ 42] [ 15] [APT ] +07:57:22 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +07:57:22 [ 49] [ 3] [418] +07:57:22 [ 52] [ 16] [A641EAFA33C103C1] +07:57:22 ============================================================================ +07:57:22 + + +waiting on router queue for slot.... +07:57:22 Sending to : <0> +07:57:22 ============================================================================ +07:57:22 ============================================================================ +07:57:22 Slot Id : <36> +07:57:22 Transaction Type : REQUEST +07:57:22 Received From : +07:57:22 ============================================================================ +07:57:22 FNo. Len. Field Value +07:57:22 ============================================================================ +07:57:22 [ 1] [ 4] [0200] +07:57:22 [ 2] [ 16] [6213545000830715] +07:57:22 [ 3] [ 6] [301000] +07:57:22 [ 7] [ 10] [0320005629] +07:57:22 [ 11] [ 6] [266960] +07:57:22 [ 12] [ 6] [075629] +07:57:22 [ 13] [ 4] [0320] +07:57:22 [ 14] [ 4] [4912] +07:57:22 [ 15] [ 4] [0320] +07:57:22 [ 18] [ 4] [6011] +07:57:22 [ 19] [ 3] [418] +07:57:22 [ 22] [ 3] [021] +07:57:22 [ 25] [ 2] [01] +07:57:22 [ 32] [ 6] [180893] +07:57:22 [ 35] [ 32] [6213545000830715=491212013071140] +07:57:22 [ 37] [ 12] [507900266960] +07:57:22 [ 41] [ 8] [0367BL20] +07:57:22 [ 42] [ 15] [999999 ] +07:57:22 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +07:57:22 [ 49] [ 3] [418] +07:57:22 [ 52] [ 16] [3D50954897C7E48B] +07:57:22 ============================================================================ +07:57:22 + + +waiting on router queue for slot.... +07:57:22 Sending to : +07:57:22 ============================================================================ +07:57:22 Sending to : +07:57:22 ============================================================================ +07:57:22 ============================================================================ +07:57:22 Slot Id : <461> +07:57:22 Transaction Type : RESPONSE +07:57:22 Received From : +07:57:22 ============================================================================ +07:57:22 FNo. Len. Field Value +07:57:22 ============================================================================ +07:57:22 [ 1] [ 4] [0210] +07:57:22 [ 2] [ 16] [6213545001030968] +07:57:22 [ 3] [ 6] [010000] +07:57:22 [ 4] [ 12] [000050000000] +07:57:22 [ 7] [ 10] [0320075513] +07:57:22 [ 11] [ 6] [931378] +07:57:22 [ 12] [ 6] [075513] +07:57:22 [ 13] [ 4] [0320] +07:57:22 [ 15] [ 4] [0320] +07:57:22 [ 18] [ 4] [6011] +07:57:22 [ 19] [ 3] [418] +07:57:22 [ 32] [ 6] [668899] +07:57:22 [ 35] [ 32] [6213545001030968=491212013096547] +07:57:22 [ 37] [ 12] [507902150926] +07:57:22 [ 38] [ 6] [441439] +07:57:22 [ 39] [ 2] [00] +07:57:22 [ 41] [ 8] [03020025] +07:57:22 [ 49] [ 3] [418] +07:57:22 [ 54] [ 40] [0001418C0000832184980002418C000083218498] +07:57:22 ============================================================================ +07:57:22 Sending to : +07:57:22 ============================================================================ +07:57:22 + + +waiting on router queue for slot.... +07:57:23 ============================================================================ +07:57:23 Slot Id : <36> +07:57:23 Transaction Type : REQUEST +07:57:23 Received From : +07:57:23 ============================================================================ +07:57:23 FNo. Len. Field Value +07:57:23 ============================================================================ +07:57:23 [ 1] [ 4] [0200] +07:57:23 [ 2] [ 16] [6213545000830715] +07:57:23 [ 3] [ 6] [301000] +07:57:23 [ 7] [ 10] [0320005629] +07:57:23 [ 11] [ 6] [266960] +07:57:23 [ 12] [ 6] [075629] +07:57:23 [ 13] [ 4] [0320] +07:57:23 [ 14] [ 4] [4912] +07:57:23 [ 15] [ 4] [0320] +07:57:23 [ 18] [ 4] [6011] +07:57:23 [ 19] [ 3] [418] +07:57:23 [ 22] [ 3] [021] +07:57:23 [ 25] [ 2] [01] +07:57:23 [ 32] [ 6] [180893] +07:57:23 [ 35] [ 32] [6213545000830715=491212013071140] +07:57:23 [ 37] [ 12] [507900266960] +07:57:23 [ 41] [ 8] [0367BL20] +07:57:23 [ 42] [ 15] [999999 ] +07:57:23 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +07:57:23 [ 49] [ 3] [418] +07:57:23 [ 52] [ 16] [3D50954897C7E48B] +07:57:23 ============================================================================ +07:57:23 + + +waiting on router queue for slot.... +07:57:23 Sending to : +07:57:23 ============================================================================ +07:57:23 ============================================================================ +07:57:23 Slot Id : <36> +07:57:23 Transaction Type : REQUEST +07:57:23 Received From : +07:57:23 ============================================================================ +07:57:23 FNo. Len. Field Value +07:57:23 ============================================================================ +07:57:23 [ 1] [ 4] [0200] +07:57:23 [ 2] [ 16] [6213545000830715] +07:57:23 [ 3] [ 6] [301000] +07:57:23 [ 7] [ 10] [0320005629] +07:57:23 [ 11] [ 6] [266960] +07:57:23 [ 12] [ 6] [075629] +07:57:23 [ 13] [ 4] [0320] +07:57:23 [ 14] [ 4] [4912] +07:57:23 [ 15] [ 4] [0320] +07:57:23 [ 18] [ 4] [6011] +07:57:23 [ 19] [ 3] [418] +07:57:23 [ 22] [ 3] [021] +07:57:23 [ 25] [ 2] [01] +07:57:23 [ 32] [ 6] [180893] +07:57:23 [ 35] [ 32] [6213545000830715=491212013071140] +07:57:23 [ 37] [ 12] [507900266960] +07:57:23 [ 41] [ 8] [0367BL20] +07:57:23 [ 42] [ 15] [999999 ] +07:57:23 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +07:57:23 [ 49] [ 3] [418] +07:57:23 [ 52] [ 16] [2567E07111A3BA9B] +07:57:23 ============================================================================ +07:57:23 + + +waiting on router queue for slot.... +07:57:23 Sending to : <0> +07:57:23 ============================================================================ +07:57:23 ============================================================================ +07:57:23 Slot Id : <37> +07:57:23 Transaction Type : REQUEST +07:57:23 Received From : +07:57:23 ============================================================================ +07:57:23 FNo. Len. Field Value +07:57:23 ============================================================================ +07:57:23 [ 1] [ 4] [0800] +07:57:23 [ 7] [ 10] [0320125631] +07:57:23 [ 11] [ 6] [155287] +07:57:23 [ 70] [ 3] [301] +07:57:23 ============================================================================ +07:57:23 + + +waiting on router queue for slot.... +07:57:23 Sending to : +07:57:23 ============================================================================ +07:57:23 ============================================================================ +07:57:23 Slot Id : <37> +07:57:23 Transaction Type : RESPONSE +07:57:23 Received From : +07:57:23 ============================================================================ +07:57:23 FNo. Len. Field Value +07:57:23 ============================================================================ +07:57:23 [ 1] [ 4] [0810] +07:57:23 [ 7] [ 10] [0320125631] +07:57:23 [ 11] [ 6] [155287] +07:57:23 [ 39] [ 2] [00] +07:57:23 [ 70] [ 3] [301] +07:57:23 ============================================================================ +07:57:23 Calculate Source COMM Id = 2 +07:57:23 ============================================================================ +07:57:23 + + +waiting on router queue for slot.... +07:57:23 ============================================================================ +07:57:23 Slot Id : <36> +07:57:23 Transaction Type : RESPONSE +07:57:23 Received From : +07:57:23 ============================================================================ +07:57:23 FNo. Len. Field Value +07:57:23 ============================================================================ +07:57:23 [ 1] [ 4] [0210] +07:57:23 [ 2] [ 16] [6213545000830715] +07:57:23 [ 3] [ 6] [301000] +07:57:23 [ 4] [ 12] [000000000000] +07:57:23 [ 7] [ 10] [0320005629] +07:57:23 [ 11] [ 6] [266960] +07:57:23 [ 12] [ 6] [075629] +07:57:23 [ 13] [ 4] [0320] +07:57:23 [ 15] [ 4] [0320] +07:57:23 [ 18] [ 4] [6011] +07:57:23 [ 19] [ 3] [418] +07:57:23 [ 32] [ 6] [180893] +07:57:23 [ 35] [ 32] [6213545000830715=491212013071140] +07:57:23 [ 37] [ 12] [507900266960] +07:57:23 [ 38] [ 6] [337814] +07:57:23 [ 39] [ 2] [00] +07:57:23 [ 41] [ 8] [0367BL20] +07:57:23 [ 49] [ 3] [418] +07:57:23 [ 54] [ 40] [1001418C0001127268181002418C000112726818] +07:57:23 ============================================================================ +07:57:23 Sending to : +07:57:23 ============================================================================ +07:57:23 + + +waiting on router queue for slot.... +07:57:24 ============================================================================ +07:57:24 Slot Id : <461> +07:57:24 Transaction Type : RESPONSE +07:57:24 Received From : +07:57:24 ============================================================================ +07:57:24 FNo. Len. Field Value +07:57:24 ============================================================================ +07:57:24 [ 1] [ 4] [0210] +07:57:24 [ 2] [ 16] [6213545001030968] +07:57:24 [ 3] [ 6] [010000] +07:57:24 [ 4] [ 12] [000050000000] +07:57:24 [ 7] [ 10] [0320075513] +07:57:24 [ 11] [ 6] [931378] +07:57:24 [ 12] [ 6] [075513] +07:57:24 [ 13] [ 4] [0320] +07:57:24 [ 15] [ 4] [0320] +07:57:24 [ 18] [ 4] [6011] +07:57:24 [ 19] [ 3] [418] +07:57:24 [ 32] [ 6] [668899] +07:57:24 [ 35] [ 32] [6213545001030968=491212013096547] +07:57:24 [ 37] [ 12] [507902150926] +07:57:24 [ 38] [ 6] [441439] +07:57:24 [ 39] [ 2] [00] +07:57:24 [ 41] [ 8] [03020025] +07:57:24 [ 49] [ 3] [418] +07:57:24 [ 54] [ 40] [0001418C0000832184980002418C000083218498] +07:57:24 ============================================================================ +07:57:24 Calculate Source COMM Id = 4 +07:57:24 ============================================================================ +07:57:24 + + +waiting on router queue for slot.... +07:57:26 ============================================================================ +07:57:26 Slot Id : <36> +07:57:26 Transaction Type : RESPONSE +07:57:26 Received From : +07:57:26 ============================================================================ +07:57:26 FNo. Len. Field Value +07:57:26 ============================================================================ +07:57:26 [ 1] [ 4] [0210] +07:57:26 [ 2] [ 16] [6213545000830715] +07:57:26 [ 3] [ 6] [301000] +07:57:26 [ 4] [ 12] [000000000000] +07:57:26 [ 7] [ 10] [0320005629] +07:57:26 [ 11] [ 6] [266960] +07:57:26 [ 12] [ 6] [075629] +07:57:26 [ 13] [ 4] [0320] +07:57:26 [ 15] [ 4] [0320] +07:57:26 [ 18] [ 4] [6011] +07:57:26 [ 19] [ 3] [418] +07:57:26 [ 32] [ 6] [180893] +07:57:26 [ 35] [ 32] [6213545000830715=491212013071140] +07:57:26 [ 37] [ 12] [507900266960] +07:57:26 [ 38] [ 6] [337814] +07:57:26 [ 39] [ 2] [00] +07:57:26 [ 41] [ 8] [0367BL20] +07:57:26 [ 49] [ 3] [418] +07:57:26 [ 54] [ 40] [1001418C0001127268181002418C000112726818] +07:57:26 ============================================================================ +07:57:26 Calculate Source COMM Id = 2 +07:57:26 ============================================================================ +07:57:26 + + +waiting on router queue for slot.... +07:57:38 ============================================================================ +07:57:38 Slot Id : <9> +07:57:38 Transaction Type : REQUEST +07:57:38 Received From : +07:57:38 ============================================================================ +07:57:38 FNo. Len. Field Value +07:57:38 ============================================================================ +07:57:38 [ 1] [ 4] [0800] +07:57:38 [ 7] [ 10] [0320125647] +07:57:38 [ 11] [ 6] [155288] +07:57:38 [ 70] [ 3] [301] +07:57:38 ============================================================================ +07:57:38 + + +waiting on router queue for slot.... +07:57:38 Sending to : +07:57:38 ============================================================================ +07:57:38 ============================================================================ +07:57:38 Slot Id : <9> +07:57:38 Transaction Type : RESPONSE +07:57:38 Received From : +07:57:38 ============================================================================ +07:57:38 FNo. Len. Field Value +07:57:38 ============================================================================ +07:57:38 [ 1] [ 4] [0810] +07:57:38 [ 7] [ 10] [0320125647] +07:57:38 [ 11] [ 6] [155288] +07:57:38 [ 39] [ 2] [00] +07:57:38 [ 70] [ 3] [301] +07:57:38 ============================================================================ +07:57:38 Calculate Source COMM Id = 2 +07:57:38 ============================================================================ +07:57:38 + + +waiting on router queue for slot.... +07:57:48 ============================================================================ +07:57:48 Slot Id : <467> +07:57:48 Transaction Type : REQUEST +07:57:48 Received From : +07:57:48 ============================================================================ +07:57:48 FNo. Len. Field Value +07:57:48 ============================================================================ +07:57:48 [ 1] [ 4] [0200] +07:57:48 [ 2] [ 16] [6213544001171450] +07:57:48 [ 3] [ 6] [010000] +07:57:48 [ 4] [ 12] [000100000000] +07:57:48 [ 7] [ 10] [0320075539] +07:57:48 [ 11] [ 6] [931402] +07:57:48 [ 12] [ 6] [075539] +07:57:48 [ 13] [ 4] [0320] +07:57:48 [ 15] [ 4] [0320] +07:57:48 [ 18] [ 4] [6011] +07:57:48 [ 19] [ 3] [418] +07:57:48 [ 22] [ 3] [021] +07:57:48 [ 25] [ 2] [01] +07:57:48 [ 28] [ 9] [D00002000] +07:57:48 [ 32] [ 6] [668899] +07:57:48 [ 35] [ 32] [6213544001171450=491212017145147] +07:57:48 [ 37] [ 12] [507900858218] +07:57:48 [ 41] [ 8] [03015004] +07:57:48 [ 42] [ 15] [APT ] +07:57:48 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +07:57:48 [ 49] [ 3] [418] +07:57:48 [ 52] [ 16] [D314D03CD5D98FBC] +07:57:48 ============================================================================ +07:57:48 + + +waiting on router queue for slot.... +07:57:48 Sending to : +07:57:48 ============================================================================ +07:57:48 Sending to : +07:57:48 ============================================================================ +07:57:48 ============================================================================ +07:57:48 Slot Id : <467> +07:57:48 Transaction Type : REQUEST +07:57:48 Received From : +07:57:48 ============================================================================ +07:57:48 FNo. Len. Field Value +07:57:48 ============================================================================ +07:57:48 [ 1] [ 4] [0200] +07:57:48 [ 2] [ 16] [6213544001171450] +07:57:48 [ 3] [ 6] [010000] +07:57:48 [ 4] [ 12] [000100000000] +07:57:48 [ 7] [ 10] [0320075539] +07:57:48 [ 11] [ 6] [931402] +07:57:48 [ 12] [ 6] [075539] +07:57:48 [ 13] [ 4] [0320] +07:57:48 [ 15] [ 4] [0320] +07:57:48 [ 18] [ 4] [6011] +07:57:48 [ 19] [ 3] [418] +07:57:48 [ 22] [ 3] [021] +07:57:48 [ 25] [ 2] [01] +07:57:48 [ 28] [ 9] [D00002000] +07:57:48 [ 32] [ 6] [668899] +07:57:48 [ 35] [ 32] [6213544001171450=491212017145147] +07:57:48 [ 37] [ 12] [507900858218] +07:57:48 [ 41] [ 8] [03015004] +07:57:48 [ 42] [ 15] [APT ] +07:57:48 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +07:57:48 [ 49] [ 3] [418] +07:57:48 [ 52] [ 16] [D314D03CD5D98FBC] +07:57:48 ============================================================================ +07:57:48 + + +waiting on router queue for slot.... +07:57:48 Sending to : +07:57:48 ============================================================================ +07:57:48 ============================================================================ +07:57:48 Slot Id : <467> +07:57:48 Transaction Type : REQUEST +07:57:48 Received From : +07:57:48 ============================================================================ +07:57:48 FNo. Len. Field Value +07:57:48 ============================================================================ +07:57:48 [ 1] [ 4] [0200] +07:57:48 [ 2] [ 16] [6213544001171450] +07:57:48 [ 3] [ 6] [010000] +07:57:48 [ 4] [ 12] [000100000000] +07:57:48 [ 7] [ 10] [0320075539] +07:57:48 [ 11] [ 6] [931402] +07:57:48 [ 12] [ 6] [075539] +07:57:48 [ 13] [ 4] [0320] +07:57:48 [ 15] [ 4] [0320] +07:57:48 [ 18] [ 4] [6011] +07:57:48 [ 19] [ 3] [418] +07:57:48 [ 22] [ 3] [021] +07:57:48 [ 25] [ 2] [01] +07:57:48 [ 28] [ 9] [D00002000] +07:57:48 [ 32] [ 6] [668899] +07:57:48 [ 35] [ 32] [6213544001171450=491212017145147] +07:57:48 [ 37] [ 12] [507900858218] +07:57:48 [ 41] [ 8] [03015004] +07:57:48 [ 42] [ 15] [APT ] +07:57:48 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +07:57:48 [ 49] [ 3] [418] +07:57:48 [ 52] [ 16] [225654C7A640E60A] +07:57:48 ============================================================================ +07:57:48 + + +waiting on router queue for slot.... +07:57:48 Sending to : <0> +07:57:48 ============================================================================ +07:57:48 ============================================================================ +07:57:48 Slot Id : <45> +07:57:48 Transaction Type : REQUEST +07:57:48 Received From : +07:57:48 ============================================================================ +07:57:48 FNo. Len. Field Value +07:57:48 ============================================================================ +07:57:48 [ 1] [ 4] [0800] +07:57:48 [ 7] [ 10] [0320150938] +07:57:48 [ 11] [ 6] [080938] +07:57:48 [ 37] [ 12] [57908080938] +07:57:48 [ 70] [ 3] [301] +07:57:48 ============================================================================ +07:57:48 + + +waiting on router queue for slot.... +07:57:48 Sending to : +07:57:48 ============================================================================ +07:57:48 ============================================================================ +07:57:48 Slot Id : <45> +07:57:48 Transaction Type : RESPONSE +07:57:48 Received From : +07:57:48 ============================================================================ +07:57:48 FNo. Len. Field Value +07:57:48 ============================================================================ +07:57:48 [ 1] [ 4] [0810] +07:57:48 [ 7] [ 10] [0320150938] +07:57:48 [ 11] [ 6] [080938] +07:57:48 [ 37] [ 12] [579080809380] +07:57:48 [ 39] [ 2] [00] +07:57:48 [ 70] [ 3] [810] +07:57:48 ============================================================================ +07:57:48 Calculate Source COMM Id = 6 +07:57:48 ============================================================================ +07:57:48 + + +waiting on router queue for slot.... +07:57:49 ============================================================================ +07:57:49 Slot Id : <467> +07:57:49 Transaction Type : RESPONSE +07:57:49 Received From : +07:57:49 ============================================================================ +07:57:49 FNo. Len. Field Value +07:57:49 ============================================================================ +07:57:49 [ 1] [ 4] [0210] +07:57:49 [ 2] [ 16] [6213544001171450] +07:57:49 [ 3] [ 6] [010000] +07:57:49 [ 4] [ 12] [000100000000] +07:57:49 [ 7] [ 10] [0320075539] +07:57:49 [ 11] [ 6] [931402] +07:57:49 [ 12] [ 6] [075539] +07:57:49 [ 13] [ 4] [0320] +07:57:49 [ 15] [ 4] [0320] +07:57:49 [ 18] [ 4] [6011] +07:57:49 [ 19] [ 3] [418] +07:57:49 [ 32] [ 6] [668899] +07:57:49 [ 35] [ 32] [6213544001171450=491212017145147] +07:57:49 [ 37] [ 12] [507900858218] +07:57:49 [ 38] [ 6] [950659] +07:57:49 [ 39] [ 2] [00] +07:57:49 [ 41] [ 8] [03015004] +07:57:49 [ 49] [ 3] [418] +07:57:49 [ 54] [ 40] [0001418C0018037858620002418C001803785862] +07:57:49 ============================================================================ +07:57:49 Sending to : +07:57:49 ============================================================================ +07:57:49 + + +waiting on router queue for slot.... +07:57:49 ============================================================================ +07:57:49 Slot Id : <18> +07:57:49 Transaction Type : REQUEST +07:57:49 Received From : +07:57:49 ============================================================================ +07:57:49 FNo. Len. Field Value +07:57:49 ============================================================================ +07:57:49 [ 1] [ 4] [0800] +07:57:49 [ 7] [ 10] [0320125658] +07:57:49 [ 11] [ 6] [155289] +07:57:49 [ 70] [ 3] [301] +07:57:49 ============================================================================ +07:57:49 + + +waiting on router queue for slot.... +07:57:49 Sending to : +07:57:49 ============================================================================ +07:57:49 ============================================================================ +07:57:49 Slot Id : <18> +07:57:49 Transaction Type : RESPONSE +07:57:49 Received From : +07:57:49 ============================================================================ +07:57:49 FNo. Len. Field Value +07:57:49 ============================================================================ +07:57:49 [ 1] [ 4] [0810] +07:57:49 [ 7] [ 10] [0320125658] +07:57:49 [ 11] [ 6] [155289] +07:57:49 [ 39] [ 2] [00] +07:57:49 [ 70] [ 3] [301] +07:57:49 ============================================================================ +07:57:49 Calculate Source COMM Id = 2 +07:57:49 ============================================================================ +07:57:49 + + +waiting on router queue for slot.... +07:57:49 ============================================================================ +07:57:49 Slot Id : <40> +07:57:49 Transaction Type : REQUEST +07:57:49 Received From : +07:57:49 ============================================================================ +07:57:49 FNo. Len. Field Value +07:57:49 ============================================================================ +07:57:49 [ 1] [ 4] [0200] +07:57:49 [ 2] [ 16] [1808931300011242] +07:57:49 [ 3] [ 6] [010000] +07:57:49 [ 4] [ 12] [000010000000] +07:57:49 [ 7] [ 10] [0320075541] +07:57:49 [ 11] [ 6] [931403] +07:57:49 [ 12] [ 6] [075541] +07:57:49 [ 13] [ 4] [0320] +07:57:49 [ 15] [ 4] [0320] +07:57:49 [ 18] [ 4] [6011] +07:57:49 [ 19] [ 3] [418] +07:57:49 [ 22] [ 3] [021] +07:57:49 [ 25] [ 2] [01] +07:57:49 [ 28] [ 9] [D00002000] +07:57:49 [ 32] [ 6] [668899] +07:57:49 [ 35] [ 27] [1808931300011242=1803500160] +07:57:49 [ 37] [ 12] [507901203864] +07:57:49 [ 41] [ 8] [03020012] +07:57:49 [ 42] [ 15] [APT ] +07:57:49 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +07:57:49 [ 49] [ 3] [418] +07:57:49 [ 52] [ 16] [31A1CF2F9DD3430C] +07:57:49 ============================================================================ +07:57:49 + + +waiting on router queue for slot.... +07:57:49 Sending to : +07:57:49 ============================================================================ +07:57:49 Sending to : +07:57:49 ============================================================================ +07:57:50 ============================================================================ +07:57:50 Slot Id : <40> +07:57:50 Transaction Type : REQUEST +07:57:50 Received From : +07:57:50 ============================================================================ +07:57:50 FNo. Len. Field Value +07:57:50 ============================================================================ +07:57:50 [ 1] [ 4] [0200] +07:57:50 [ 2] [ 16] [1808931300011242] +07:57:50 [ 3] [ 6] [010000] +07:57:50 [ 4] [ 12] [000010000000] +07:57:50 [ 7] [ 10] [0320075541] +07:57:50 [ 11] [ 6] [931403] +07:57:50 [ 12] [ 6] [075541] +07:57:50 [ 13] [ 4] [0320] +07:57:50 [ 15] [ 4] [0320] +07:57:50 [ 18] [ 4] [6011] +07:57:50 [ 19] [ 3] [418] +07:57:50 [ 22] [ 3] [021] +07:57:50 [ 25] [ 2] [01] +07:57:50 [ 28] [ 9] [D00002000] +07:57:50 [ 32] [ 6] [668899] +07:57:50 [ 35] [ 27] [1808931300011242=1803500160] +07:57:50 [ 37] [ 12] [507901203864] +07:57:50 [ 41] [ 8] [03020012] +07:57:50 [ 42] [ 15] [APT ] +07:57:50 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +07:57:50 [ 49] [ 3] [418] +07:57:50 [ 52] [ 16] [31A1CF2F9DD3430C] +07:57:50 ============================================================================ +07:57:50 + + +waiting on router queue for slot.... +07:57:50 Sending to : +07:57:50 ============================================================================ +07:57:50 ============================================================================ +07:57:50 Slot Id : <40> +07:57:50 Transaction Type : REQUEST +07:57:50 Received From : +07:57:50 ============================================================================ +07:57:50 FNo. Len. Field Value +07:57:50 ============================================================================ +07:57:50 [ 1] [ 4] [0200] +07:57:50 [ 2] [ 16] [1808931300011242] +07:57:50 [ 3] [ 6] [010000] +07:57:50 [ 4] [ 12] [000010000000] +07:57:50 [ 7] [ 10] [0320075541] +07:57:50 [ 11] [ 6] [931403] +07:57:50 [ 12] [ 6] [075541] +07:57:50 [ 13] [ 4] [0320] +07:57:50 [ 15] [ 4] [0320] +07:57:50 [ 18] [ 4] [6011] +07:57:50 [ 19] [ 3] [418] +07:57:50 [ 22] [ 3] [021] +07:57:50 [ 25] [ 2] [01] +07:57:50 [ 28] [ 9] [D00002000] +07:57:50 [ 32] [ 6] [668899] +07:57:50 [ 35] [ 27] [1808931300011242=1803500160] +07:57:50 [ 37] [ 12] [507901203864] +07:57:50 [ 41] [ 8] [03020012] +07:57:50 [ 42] [ 15] [APT ] +07:57:50 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +07:57:50 [ 49] [ 3] [418] +07:57:50 [ 52] [ 16] [40BC7C03462E75DF] +07:57:50 ============================================================================ +07:57:50 + + +waiting on router queue for slot.... +07:57:50 Sending to : <2> +07:57:50 ============================================================================ +07:57:50 ============================================================================ +07:57:50 Slot Id : <467> +07:57:50 Transaction Type : RESPONSE +07:57:50 Received From : +07:57:50 ============================================================================ +07:57:50 FNo. Len. Field Value +07:57:50 ============================================================================ +07:57:50 [ 1] [ 4] [0210] +07:57:50 [ 2] [ 16] [6213544001171450] +07:57:50 [ 3] [ 6] [010000] +07:57:50 [ 4] [ 12] [000100000000] +07:57:50 [ 7] [ 10] [0320075539] +07:57:50 [ 11] [ 6] [931402] +07:57:50 [ 12] [ 6] [075539] +07:57:50 [ 13] [ 4] [0320] +07:57:50 [ 15] [ 4] [0320] +07:57:50 [ 18] [ 4] [6011] +07:57:50 [ 19] [ 3] [418] +07:57:50 [ 32] [ 6] [668899] +07:57:50 [ 35] [ 32] [6213544001171450=491212017145147] +07:57:50 [ 37] [ 12] [507900858218] +07:57:50 [ 38] [ 6] [950659] +07:57:50 [ 39] [ 2] [00] +07:57:50 [ 41] [ 8] [03015004] +07:57:50 [ 49] [ 3] [418] +07:57:50 [ 54] [ 40] [0001418C0018037858620002418C001803785862] +07:57:50 ============================================================================ +07:57:50 Calculate Source COMM Id = 4 +07:57:50 ============================================================================ +07:57:50 + + +waiting on router queue for slot.... +07:57:51 ============================================================================ +07:57:51 Slot Id : <40> +07:57:51 Transaction Type : RESPONSE +07:57:51 Received From : +07:57:51 ============================================================================ +07:57:51 FNo. Len. Field Value +07:57:51 ============================================================================ +07:57:51 [ 1] [ 4] [0210] +07:57:51 [ 2] [ 16] [1808931300011242] +07:57:51 [ 3] [ 6] [010000] +07:57:51 [ 4] [ 12] [000010000000] +07:57:51 [ 6] [ 12] [000010000000] +07:57:51 [ 7] [ 10] [0320075541] +07:57:51 [ 11] [ 6] [931403] +07:57:51 [ 12] [ 6] [075541] +07:57:51 [ 13] [ 4] [0320] +07:57:51 [ 18] [ 4] [6011] +07:57:51 [ 19] [ 3] [418] +07:57:51 [ 22] [ 3] [021] +07:57:51 [ 28] [ 9] [D00002000] +07:57:51 [ 32] [ 6] [668899] +07:57:51 [ 35] [ 27] [1808931300011242=1803500160] +07:57:51 [ 37] [ 12] [507901203864] +07:57:51 [ 39] [ 2] [55] +07:57:51 [ 41] [ 8] [03020012] +07:57:51 [ 49] [ 3] [418] +07:57:51 [ 51] [ 3] [418] +07:57:51 [ 52] [ 16] [40BC7C03462E75DF] +07:57:51 ============================================================================ +07:57:51 Sending to : +07:57:51 ============================================================================ +07:57:51 + + +waiting on router queue for slot.... +07:57:52 ============================================================================ +07:57:52 Slot Id : <40> +07:57:52 Transaction Type : RESPONSE +07:57:52 Received From : +07:57:52 ============================================================================ +07:57:52 FNo. Len. Field Value +07:57:52 ============================================================================ +07:57:52 [ 1] [ 4] [0210] +07:57:52 [ 2] [ 16] [1808931300011242] +07:57:52 [ 3] [ 6] [010000] +07:57:52 [ 4] [ 12] [000010000000] +07:57:52 [ 6] [ 12] [000010000000] +07:57:52 [ 7] [ 10] [0320075541] +07:57:52 [ 11] [ 6] [931403] +07:57:52 [ 12] [ 6] [075541] +07:57:52 [ 13] [ 4] [0320] +07:57:52 [ 18] [ 4] [6011] +07:57:52 [ 19] [ 3] [418] +07:57:52 [ 22] [ 3] [021] +07:57:52 [ 28] [ 9] [D00002000] +07:57:52 [ 32] [ 6] [668899] +07:57:52 [ 35] [ 27] [1808931300011242=1803500160] +07:57:52 [ 37] [ 12] [507901203864] +07:57:52 [ 39] [ 2] [55] +07:57:52 [ 41] [ 8] [03020012] +07:57:52 [ 49] [ 3] [418] +07:57:52 [ 51] [ 3] [418] +07:57:52 [ 52] [ 16] [40BC7C03462E75DF] +07:57:52 ============================================================================ +07:57:52 Calculate Source COMM Id = 4 +07:57:52 ============================================================================ +07:57:52 + + +waiting on router queue for slot.... +07:58:00 ============================================================================ +07:58:00 Slot Id : <497> +07:58:00 Transaction Type : REQUEST +07:58:00 Received From : +07:58:00 ============================================================================ +07:58:00 FNo. Len. Field Value +07:58:00 ============================================================================ +07:58:00 [ 1] [ 4] [0800] +07:58:00 [ 2] [ 5] [02531] +07:58:00 [ 3] [ 6] [579078] +07:58:00 [ 7] [ 10] [0320005800] +07:58:00 [ 11] [ 6] [806874] +07:58:00 [ 15] [ 10] [0320005800] +07:58:00 [ 37] [ 11] [57907806874] +07:58:00 [ 70] [ 3] [001] +07:58:00 ============================================================================ +07:58:00 + + +waiting on router queue for slot.... +07:58:00 ============================================================================ +07:58:00 Slot Id : <497> +07:58:00 Transaction Type : RESPONSE +07:58:00 Received From : +07:58:00 ============================================================================ +07:58:00 FNo. Len. Field Value +07:58:00 ============================================================================ +07:58:00 [ 1] [ 4] [0810] +07:58:00 [ 7] [ 10] [0320005800] +07:58:00 [ 11] [ 6] [806874] +07:58:00 [ 15] [ 4] [0320] +07:58:00 [ 37] [ 12] [57907806874] +07:58:00 [ 39] [ 2] [00] +07:58:00 [ 70] [ 3] [001] +07:58:00 ============================================================================ +07:58:00 Sending to : +07:58:00 ============================================================================ +07:58:00 + + +waiting on router queue for slot.... +07:58:06 ============================================================================ +07:58:06 Slot Id : <43> +07:58:06 Transaction Type : REQUEST +07:58:06 Received From : +07:58:06 ============================================================================ +07:58:06 FNo. Len. Field Value +07:58:06 ============================================================================ +07:58:06 [ 1] [ 4] [0800] +07:58:06 [ 7] [ 10] [0320125714] +07:58:06 [ 11] [ 6] [155290] +07:58:06 [ 70] [ 3] [301] +07:58:06 ============================================================================ +07:58:06 + + +waiting on router queue for slot.... +07:58:06 Sending to : +07:58:06 ============================================================================ +07:58:06 ============================================================================ +07:58:06 Slot Id : <43> +07:58:06 Transaction Type : RESPONSE +07:58:06 Received From : +07:58:06 ============================================================================ +07:58:06 FNo. Len. Field Value +07:58:06 ============================================================================ +07:58:06 [ 1] [ 4] [0810] +07:58:06 [ 7] [ 10] [0320125714] +07:58:06 [ 11] [ 6] [155290] +07:58:06 [ 39] [ 2] [00] +07:58:06 [ 70] [ 3] [301] +07:58:06 ============================================================================ +07:58:06 Calculate Source COMM Id = 2 +07:58:06 ============================================================================ +07:58:06 + + +waiting on router queue for slot.... +07:58:09 ============================================================================ +07:58:09 Slot Id : <8> +07:58:09 Transaction Type : REQUEST +07:58:09 Received From : +07:58:09 ============================================================================ +07:58:09 FNo. Len. Field Value +07:58:09 ============================================================================ +07:58:09 [ 1] [ 4] [0200] +07:58:09 [ 2] [ 16] [6213545000951891] +07:58:09 [ 3] [ 6] [011000] +07:58:09 [ 4] [ 12] [000020000000] +07:58:09 [ 7] [ 10] [0320005717] +07:58:09 [ 11] [ 6] [266965] +07:58:09 [ 12] [ 6] [075717] +07:58:09 [ 13] [ 4] [0320] +07:58:09 [ 14] [ 4] [4912] +07:58:09 [ 15] [ 4] [0320] +07:58:09 [ 18] [ 4] [6011] +07:58:09 [ 19] [ 3] [418] +07:58:09 [ 22] [ 3] [021] +07:58:09 [ 25] [ 2] [01] +07:58:09 [ 28] [ 9] [D00002000] +07:58:09 [ 32] [ 6] [180893] +07:58:09 [ 35] [ 32] [6213545000951891=491212015189598] +07:58:09 [ 37] [ 12] [507900266965] +07:58:09 [ 41] [ 8] [0115LPBR] +07:58:09 [ 42] [ 15] [999999 ] +07:58:09 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +07:58:09 [ 49] [ 3] [418] +07:58:09 [ 52] [ 16] [90D632FA400A6D64] +07:58:09 ============================================================================ +07:58:09 + + +waiting on router queue for slot.... +07:58:09 Sending to : +07:58:09 ============================================================================ +07:58:09 Sending to : +07:58:09 ============================================================================ +07:58:09 ============================================================================ +07:58:09 Slot Id : <8> +07:58:09 Transaction Type : REQUEST +07:58:09 Received From : +07:58:09 ============================================================================ +07:58:09 FNo. Len. Field Value +07:58:09 ============================================================================ +07:58:09 [ 1] [ 4] [0200] +07:58:09 [ 2] [ 16] [6213545000951891] +07:58:09 [ 3] [ 6] [011000] +07:58:09 [ 4] [ 12] [000020000000] +07:58:09 [ 7] [ 10] [0320005717] +07:58:09 [ 11] [ 6] [266965] +07:58:09 [ 12] [ 6] [075717] +07:58:09 [ 13] [ 4] [0320] +07:58:09 [ 14] [ 4] [4912] +07:58:09 [ 15] [ 4] [0320] +07:58:09 [ 18] [ 4] [6011] +07:58:09 [ 19] [ 3] [418] +07:58:09 [ 22] [ 3] [021] +07:58:09 [ 25] [ 2] [01] +07:58:09 [ 28] [ 9] [D00002000] +07:58:09 [ 32] [ 6] [180893] +07:58:09 [ 35] [ 32] [6213545000951891=491212015189598] +07:58:09 [ 37] [ 12] [507900266965] +07:58:09 [ 41] [ 8] [0115LPBR] +07:58:09 [ 42] [ 15] [999999 ] +07:58:09 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +07:58:09 [ 49] [ 3] [418] +07:58:09 [ 52] [ 16] [90D632FA400A6D64] +07:58:09 ============================================================================ +07:58:09 + + +waiting on router queue for slot.... +07:58:09 Sending to : +07:58:09 ============================================================================ +07:58:09 ============================================================================ +07:58:09 Slot Id : <8> +07:58:09 Transaction Type : REQUEST +07:58:09 Received From : +07:58:09 ============================================================================ +07:58:09 FNo. Len. Field Value +07:58:09 ============================================================================ +07:58:09 [ 1] [ 4] [0200] +07:58:09 [ 2] [ 16] [6213545000951891] +07:58:09 [ 3] [ 6] [011000] +07:58:09 [ 4] [ 12] [000020000000] +07:58:09 [ 7] [ 10] [0320005717] +07:58:09 [ 11] [ 6] [266965] +07:58:09 [ 12] [ 6] [075717] +07:58:09 [ 13] [ 4] [0320] +07:58:09 [ 14] [ 4] [4912] +07:58:09 [ 15] [ 4] [0320] +07:58:09 [ 18] [ 4] [6011] +07:58:09 [ 19] [ 3] [418] +07:58:09 [ 22] [ 3] [021] +07:58:09 [ 25] [ 2] [01] +07:58:09 [ 28] [ 9] [D00002000] +07:58:09 [ 32] [ 6] [180893] +07:58:09 [ 35] [ 32] [6213545000951891=491212015189598] +07:58:09 [ 37] [ 12] [507900266965] +07:58:09 [ 41] [ 8] [0115LPBR] +07:58:09 [ 42] [ 15] [999999 ] +07:58:09 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +07:58:09 [ 49] [ 3] [418] +07:58:09 [ 52] [ 16] [962BEC3BAAF435EF] +07:58:09 ============================================================================ +07:58:09 + + +waiting on router queue for slot.... +07:58:09 Sending to : <0> +07:58:09 ============================================================================ +07:58:10 ============================================================================ +07:58:10 Slot Id : <8> +07:58:10 Transaction Type : RESPONSE +07:58:10 Received From : +07:58:10 ============================================================================ +07:58:10 FNo. Len. Field Value +07:58:10 ============================================================================ +07:58:10 [ 1] [ 4] [0210] +07:58:10 [ 2] [ 16] [6213545000951891] +07:58:10 [ 3] [ 6] [011000] +07:58:10 [ 4] [ 12] [000020000000] +07:58:10 [ 7] [ 10] [0320005717] +07:58:10 [ 11] [ 6] [266965] +07:58:10 [ 12] [ 6] [075717] +07:58:10 [ 13] [ 4] [0320] +07:58:10 [ 15] [ 4] [0320] +07:58:10 [ 18] [ 4] [6011] +07:58:10 [ 19] [ 3] [418] +07:58:10 [ 32] [ 6] [180893] +07:58:10 [ 35] [ 32] [6213545000951891=491212015189598] +07:58:10 [ 37] [ 12] [507900266965] +07:58:10 [ 38] [ 6] [184820] +07:58:10 [ 39] [ 2] [00] +07:58:10 [ 41] [ 8] [0115LPBR] +07:58:10 [ 49] [ 3] [418] +07:58:10 [ 54] [ 40] [1001418C0000385812011002418C000038581201] +07:58:10 ============================================================================ +07:58:10 Sending to : +07:58:10 ============================================================================ +07:58:10 + + +waiting on router queue for slot.... +07:58:12 ============================================================================ +07:58:12 Slot Id : <8> +07:58:12 Transaction Type : RESPONSE +07:58:12 Received From : +07:58:12 ============================================================================ +07:58:12 FNo. Len. Field Value +07:58:12 ============================================================================ +07:58:12 [ 1] [ 4] [0210] +07:58:12 [ 2] [ 16] [6213545000951891] +07:58:12 [ 3] [ 6] [011000] +07:58:12 [ 4] [ 12] [000020000000] +07:58:12 [ 7] [ 10] [0320005717] +07:58:12 [ 11] [ 6] [266965] +07:58:12 [ 12] [ 6] [075717] +07:58:12 [ 13] [ 4] [0320] +07:58:12 [ 15] [ 4] [0320] +07:58:12 [ 18] [ 4] [6011] +07:58:12 [ 19] [ 3] [418] +07:58:12 [ 32] [ 6] [180893] +07:58:12 [ 35] [ 32] [6213545000951891=491212015189598] +07:58:12 [ 37] [ 12] [507900266965] +07:58:12 [ 38] [ 6] [184820] +07:58:12 [ 39] [ 2] [00] +07:58:12 [ 41] [ 8] [0115LPBR] +07:58:12 [ 49] [ 3] [418] +07:58:12 [ 54] [ 40] [1001418C0000385812011002418C000038581201] +07:58:12 ============================================================================ +07:58:12 Calculate Source COMM Id = 2 +07:58:12 ============================================================================ +07:58:12 + + +waiting on router queue for slot.... +07:58:13 ============================================================================ +07:58:13 Slot Id : <28> +07:58:13 Transaction Type : REQUEST +07:58:13 Received From : +07:58:13 ============================================================================ +07:58:13 FNo. Len. Field Value +07:58:13 ============================================================================ +07:58:13 [ 1] [ 4] [0200] +07:58:13 [ 2] [ 16] [6213543000001114] +07:58:13 [ 3] [ 6] [010000] +07:58:13 [ 4] [ 12] [000100000000] +07:58:13 [ 7] [ 10] [0320005721] +07:58:13 [ 11] [ 6] [266966] +07:58:13 [ 12] [ 6] [075721] +07:58:13 [ 13] [ 4] [0320] +07:58:13 [ 14] [ 4] [4912] +07:58:13 [ 15] [ 4] [0320] +07:58:13 [ 18] [ 4] [6011] +07:58:13 [ 19] [ 3] [418] +07:58:13 [ 22] [ 3] [021] +07:58:13 [ 25] [ 2] [01] +07:58:13 [ 28] [ 9] [D00002000] +07:58:13 [ 32] [ 6] [180893] +07:58:13 [ 35] [ 32] [6213543000001114=491212010111483] +07:58:13 [ 37] [ 12] [507900266966] +07:58:13 [ 41] [ 8] [0120SLVB] +07:58:13 [ 42] [ 15] [999999 ] +07:58:13 [ 43] [ 40] [ATM SALAVAN BRANCH LOCATION, Salavan, La] +07:58:13 [ 49] [ 3] [418] +07:58:13 [ 52] [ 16] [75543564563C6E79] +07:58:13 ============================================================================ +07:58:13 + + +waiting on router queue for slot.... +07:58:13 Sending to : +07:58:13 ============================================================================ +07:58:13 Sending to : +07:58:13 ============================================================================ +07:58:14 ============================================================================ +07:58:14 Slot Id : <28> +07:58:14 Transaction Type : REQUEST +07:58:14 Received From : +07:58:14 ============================================================================ +07:58:14 FNo. Len. Field Value +07:58:14 ============================================================================ +07:58:14 [ 1] [ 4] [0200] +07:58:14 [ 2] [ 16] [6213543000001114] +07:58:14 [ 3] [ 6] [010000] +07:58:14 [ 4] [ 12] [000100000000] +07:58:14 [ 7] [ 10] [0320005721] +07:58:14 [ 11] [ 6] [266966] +07:58:14 [ 12] [ 6] [075721] +07:58:14 [ 13] [ 4] [0320] +07:58:14 [ 14] [ 4] [4912] +07:58:14 [ 15] [ 4] [0320] +07:58:14 [ 18] [ 4] [6011] +07:58:14 [ 19] [ 3] [418] +07:58:14 [ 22] [ 3] [021] +07:58:14 [ 25] [ 2] [01] +07:58:14 [ 28] [ 9] [D00002000] +07:58:14 [ 32] [ 6] [180893] +07:58:14 [ 35] [ 32] [6213543000001114=491212010111483] +07:58:14 [ 37] [ 12] [507900266966] +07:58:14 [ 41] [ 8] [0120SLVB] +07:58:14 [ 42] [ 15] [999999 ] +07:58:14 [ 43] [ 40] [ATM SALAVAN BRANCH LOCATION, Salavan, La] +07:58:14 [ 49] [ 3] [418] +07:58:14 [ 52] [ 16] [75543564563C6E79] +07:58:14 ============================================================================ +07:58:14 + + +waiting on router queue for slot.... +07:58:14 Sending to : +07:58:14 ============================================================================ +07:58:14 ============================================================================ +07:58:14 Slot Id : <28> +07:58:14 Transaction Type : REQUEST +07:58:14 Received From : +07:58:14 ============================================================================ +07:58:14 FNo. Len. Field Value +07:58:14 ============================================================================ +07:58:14 [ 1] [ 4] [0200] +07:58:14 [ 2] [ 16] [6213543000001114] +07:58:14 [ 3] [ 6] [010000] +07:58:14 [ 4] [ 12] [000100000000] +07:58:14 [ 7] [ 10] [0320005721] +07:58:14 [ 11] [ 6] [266966] +07:58:14 [ 12] [ 6] [075721] +07:58:14 [ 13] [ 4] [0320] +07:58:14 [ 14] [ 4] [4912] +07:58:14 [ 15] [ 4] [0320] +07:58:14 [ 18] [ 4] [6011] +07:58:14 [ 19] [ 3] [418] +07:58:14 [ 22] [ 3] [021] +07:58:14 [ 25] [ 2] [01] +07:58:14 [ 28] [ 9] [D00002000] +07:58:14 [ 32] [ 6] [180893] +07:58:14 [ 35] [ 32] [6213543000001114=491212010111483] +07:58:14 [ 37] [ 12] [507900266966] +07:58:14 [ 41] [ 8] [0120SLVB] +07:58:14 [ 42] [ 15] [999999 ] +07:58:14 [ 43] [ 40] [ATM SALAVAN BRANCH LOCATION, Salavan, La] +07:58:14 [ 49] [ 3] [418] +07:58:14 [ 52] [ 16] [348EF6C7B06577EE] +07:58:14 ============================================================================ +07:58:14 + + +waiting on router queue for slot.... +07:58:14 Sending to : <0> +07:58:14 ============================================================================ +07:58:15 ============================================================================ +07:58:15 Slot Id : <28> +07:58:15 Transaction Type : RESPONSE +07:58:15 Received From : +07:58:15 ============================================================================ +07:58:15 FNo. Len. Field Value +07:58:15 ============================================================================ +07:58:15 [ 1] [ 4] [0210] +07:58:15 [ 2] [ 16] [6213543000001114] +07:58:15 [ 3] [ 6] [010000] +07:58:15 [ 4] [ 12] [000100000000] +07:58:15 [ 7] [ 10] [0320005721] +07:58:15 [ 11] [ 6] [266966] +07:58:15 [ 12] [ 6] [075721] +07:58:15 [ 13] [ 4] [0320] +07:58:15 [ 15] [ 4] [0320] +07:58:15 [ 18] [ 4] [6011] +07:58:15 [ 19] [ 3] [418] +07:58:15 [ 32] [ 6] [180893] +07:58:15 [ 35] [ 32] [6213543000001114=491212010111483] +07:58:15 [ 37] [ 12] [507900266966] +07:58:15 [ 38] [ 6] [602708] +07:58:15 [ 39] [ 2] [00] +07:58:15 [ 41] [ 8] [0120SLVB] +07:58:15 [ 49] [ 3] [418] +07:58:15 [ 54] [ 40] [0001418C0000242808580002418C000024280858] +07:58:15 ============================================================================ +07:58:15 Sending to : +07:58:15 ============================================================================ +07:58:15 + + +waiting on router queue for slot.... +07:58:16 ============================================================================ +07:58:16 Slot Id : <28> +07:58:16 Transaction Type : RESPONSE +07:58:16 Received From : +07:58:16 ============================================================================ +07:58:16 FNo. Len. Field Value +07:58:16 ============================================================================ +07:58:16 [ 1] [ 4] [0210] +07:58:16 [ 2] [ 16] [6213543000001114] +07:58:16 [ 3] [ 6] [010000] +07:58:16 [ 4] [ 12] [000100000000] +07:58:16 [ 7] [ 10] [0320005721] +07:58:16 [ 11] [ 6] [266966] +07:58:16 [ 12] [ 6] [075721] +07:58:16 [ 13] [ 4] [0320] +07:58:16 [ 15] [ 4] [0320] +07:58:16 [ 18] [ 4] [6011] +07:58:16 [ 19] [ 3] [418] +07:58:16 [ 32] [ 6] [180893] +07:58:16 [ 35] [ 32] [6213543000001114=491212010111483] +07:58:16 [ 37] [ 12] [507900266966] +07:58:16 [ 38] [ 6] [602708] +07:58:16 [ 39] [ 2] [00] +07:58:16 [ 41] [ 8] [0120SLVB] +07:58:16 [ 49] [ 3] [418] +07:58:16 [ 54] [ 40] [0001418C0000242808580002418C000024280858] +07:58:16 ============================================================================ +07:58:16 Calculate Source COMM Id = 2 +07:58:16 ============================================================================ +07:58:16 + + +waiting on router queue for slot.... +07:58:28 ============================================================================ +07:58:28 Slot Id : <50> +07:58:28 Transaction Type : REQUEST +07:58:28 Received From : +07:58:28 ============================================================================ +07:58:28 FNo. Len. Field Value +07:58:28 ============================================================================ +07:58:28 [ 1] [ 4] [0800] +07:58:28 [ 7] [ 10] [0320125736] +07:58:28 [ 11] [ 6] [155291] +07:58:28 [ 70] [ 3] [301] +07:58:28 ============================================================================ +07:58:28 + + +waiting on router queue for slot.... +07:58:28 Sending to : +07:58:28 ============================================================================ +07:58:28 ============================================================================ +07:58:28 Slot Id : <50> +07:58:28 Transaction Type : RESPONSE +07:58:28 Received From : +07:58:28 ============================================================================ +07:58:28 FNo. Len. Field Value +07:58:28 ============================================================================ +07:58:28 [ 1] [ 4] [0810] +07:58:28 [ 7] [ 10] [0320125736] +07:58:28 [ 11] [ 6] [155291] +07:58:28 [ 39] [ 2] [00] +07:58:28 [ 70] [ 3] [301] +07:58:28 ============================================================================ +07:58:28 Calculate Source COMM Id = 2 +07:58:28 ============================================================================ +07:58:28 + + +waiting on router queue for slot.... +07:58:37 ============================================================================ +07:58:37 Slot Id : <44> +07:58:37 Transaction Type : REQUEST +07:58:37 Received From : +07:58:37 ============================================================================ +07:58:37 FNo. Len. Field Value +07:58:37 ============================================================================ +07:58:37 [ 1] [ 4] [0200] +07:58:37 [ 2] [ 16] [6213545000830715] +07:58:37 [ 3] [ 6] [011000] +07:58:37 [ 4] [ 12] [000020000000] +07:58:37 [ 7] [ 10] [0320005745] +07:58:37 [ 11] [ 6] [266971] +07:58:37 [ 12] [ 6] [075745] +07:58:37 [ 13] [ 4] [0320] +07:58:37 [ 14] [ 4] [4912] +07:58:37 [ 15] [ 4] [0320] +07:58:37 [ 18] [ 4] [6011] +07:58:37 [ 19] [ 3] [418] +07:58:37 [ 22] [ 3] [021] +07:58:37 [ 25] [ 2] [01] +07:58:37 [ 28] [ 9] [D00002000] +07:58:37 [ 32] [ 6] [180893] +07:58:37 [ 35] [ 32] [6213545000830715=491212013071140] +07:58:37 [ 37] [ 12] [507900266971] +07:58:37 [ 41] [ 8] [0367BL20] +07:58:37 [ 42] [ 15] [999999 ] +07:58:37 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +07:58:37 [ 49] [ 3] [418] +07:58:37 [ 52] [ 16] [3D50954897C7E48B] +07:58:37 ============================================================================ +07:58:37 + + +waiting on router queue for slot.... +07:58:37 Sending to : +07:58:37 ============================================================================ +07:58:37 Sending to : +07:58:37 ============================================================================ +07:58:37 ============================================================================ +07:58:37 Slot Id : <44> +07:58:37 Transaction Type : REQUEST +07:58:37 Received From : +07:58:37 ============================================================================ +07:58:37 FNo. Len. Field Value +07:58:37 ============================================================================ +07:58:37 [ 1] [ 4] [0200] +07:58:37 [ 2] [ 16] [6213545000830715] +07:58:37 [ 3] [ 6] [011000] +07:58:37 [ 4] [ 12] [000020000000] +07:58:37 [ 7] [ 10] [0320005745] +07:58:37 [ 11] [ 6] [266971] +07:58:37 [ 12] [ 6] [075745] +07:58:37 [ 13] [ 4] [0320] +07:58:37 [ 14] [ 4] [4912] +07:58:37 [ 15] [ 4] [0320] +07:58:37 [ 18] [ 4] [6011] +07:58:37 [ 19] [ 3] [418] +07:58:37 [ 22] [ 3] [021] +07:58:37 [ 25] [ 2] [01] +07:58:37 [ 28] [ 9] [D00002000] +07:58:37 [ 32] [ 6] [180893] +07:58:37 [ 35] [ 32] [6213545000830715=491212013071140] +07:58:37 [ 37] [ 12] [507900266971] +07:58:37 [ 41] [ 8] [0367BL20] +07:58:37 [ 42] [ 15] [999999 ] +07:58:37 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +07:58:37 [ 49] [ 3] [418] +07:58:37 [ 52] [ 16] [3D50954897C7E48B] +07:58:37 ============================================================================ +07:58:37 + + +waiting on router queue for slot.... +07:58:37 Sending to : +07:58:37 ============================================================================ +07:58:38 ============================================================================ +07:58:38 Slot Id : <44> +07:58:38 Transaction Type : REQUEST +07:58:38 Received From : +07:58:38 ============================================================================ +07:58:38 FNo. Len. Field Value +07:58:38 ============================================================================ +07:58:38 [ 1] [ 4] [0200] +07:58:38 [ 2] [ 16] [6213545000830715] +07:58:38 [ 3] [ 6] [011000] +07:58:38 [ 4] [ 12] [000020000000] +07:58:38 [ 7] [ 10] [0320005745] +07:58:38 [ 11] [ 6] [266971] +07:58:38 [ 12] [ 6] [075745] +07:58:38 [ 13] [ 4] [0320] +07:58:38 [ 14] [ 4] [4912] +07:58:38 [ 15] [ 4] [0320] +07:58:38 [ 18] [ 4] [6011] +07:58:38 [ 19] [ 3] [418] +07:58:38 [ 22] [ 3] [021] +07:58:38 [ 25] [ 2] [01] +07:58:38 [ 28] [ 9] [D00002000] +07:58:38 [ 32] [ 6] [180893] +07:58:38 [ 35] [ 32] [6213545000830715=491212013071140] +07:58:38 [ 37] [ 12] [507900266971] +07:58:38 [ 41] [ 8] [0367BL20] +07:58:38 [ 42] [ 15] [999999 ] +07:58:38 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +07:58:38 [ 49] [ 3] [418] +07:58:38 [ 52] [ 16] [2567E07111A3BA9B] +07:58:38 ============================================================================ +07:58:38 + + +waiting on router queue for slot.... +07:58:38 Sending to : <0> +07:58:38 ============================================================================ +07:58:38 ============================================================================ +07:58:38 Slot Id : <44> +07:58:38 Transaction Type : RESPONSE +07:58:38 Received From : +07:58:38 ============================================================================ +07:58:38 FNo. Len. Field Value +07:58:38 ============================================================================ +07:58:38 [ 1] [ 4] [0210] +07:58:38 [ 2] [ 16] [6213545000830715] +07:58:38 [ 3] [ 6] [011000] +07:58:38 [ 4] [ 12] [000020000000] +07:58:38 [ 7] [ 10] [0320005745] +07:58:38 [ 11] [ 6] [266971] +07:58:38 [ 12] [ 6] [075745] +07:58:38 [ 13] [ 4] [0320] +07:58:38 [ 15] [ 4] [0320] +07:58:38 [ 18] [ 4] [6011] +07:58:38 [ 19] [ 3] [418] +07:58:38 [ 32] [ 6] [180893] +07:58:38 [ 35] [ 32] [6213545000830715=491212013071140] +07:58:38 [ 37] [ 12] [507900266971] +07:58:38 [ 38] [ 6] [290146] +07:58:38 [ 39] [ 2] [00] +07:58:38 [ 41] [ 8] [0367BL20] +07:58:38 [ 49] [ 3] [418] +07:58:38 [ 54] [ 40] [1001418C0000925268181002418C000092526818] +07:58:38 ============================================================================ +07:58:38 Sending to : +07:58:38 ============================================================================ +07:58:38 + + +waiting on router queue for slot.... +07:58:38 ============================================================================ +07:58:38 Slot Id : <52> +07:58:38 Transaction Type : REQUEST +07:58:38 Received From : +07:58:38 ============================================================================ +07:58:38 FNo. Len. Field Value +07:58:38 ============================================================================ +07:58:38 [ 1] [ 4] [0800] +07:58:38 [ 7] [ 10] [0320125747] +07:58:38 [ 11] [ 6] [155292] +07:58:38 [ 70] [ 3] [301] +07:58:38 ============================================================================ +07:58:38 + + +waiting on router queue for slot.... +07:58:38 Sending to : +07:58:38 ============================================================================ +07:58:38 ============================================================================ +07:58:38 Slot Id : <52> +07:58:38 Transaction Type : RESPONSE +07:58:38 Received From : +07:58:38 ============================================================================ +07:58:38 FNo. Len. Field Value +07:58:38 ============================================================================ +07:58:38 [ 1] [ 4] [0810] +07:58:38 [ 7] [ 10] [0320125747] +07:58:38 [ 11] [ 6] [155292] +07:58:38 [ 39] [ 2] [00] +07:58:38 [ 70] [ 3] [301] +07:58:38 ============================================================================ +07:58:38 Calculate Source COMM Id = 2 +07:58:38 ============================================================================ +07:58:38 + + +waiting on router queue for slot.... +07:58:39 ============================================================================ +07:58:39 Slot Id : <61> +07:58:39 Transaction Type : REQUEST +07:58:39 Received From : +07:58:39 ============================================================================ +07:58:39 FNo. Len. Field Value +07:58:39 ============================================================================ +07:58:39 [ 1] [ 4] [0200] +07:58:39 [ 2] [ 16] [1808931300011242] +07:58:39 [ 3] [ 6] [010000] +07:58:39 [ 4] [ 12] [000010000000] +07:58:39 [ 7] [ 10] [0320075630] +07:58:39 [ 11] [ 6] [931455] +07:58:39 [ 12] [ 6] [075630] +07:58:39 [ 13] [ 4] [0320] +07:58:39 [ 15] [ 4] [0320] +07:58:39 [ 18] [ 4] [6011] +07:58:39 [ 19] [ 3] [418] +07:58:39 [ 22] [ 3] [021] +07:58:39 [ 25] [ 2] [01] +07:58:39 [ 28] [ 9] [D00002000] +07:58:39 [ 32] [ 6] [668899] +07:58:39 [ 35] [ 27] [1808931300011242=1803500160] +07:58:39 [ 37] [ 12] [507901203866] +07:58:39 [ 41] [ 8] [03020012] +07:58:39 [ 42] [ 15] [APT ] +07:58:39 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +07:58:39 [ 49] [ 3] [418] +07:58:39 [ 52] [ 16] [A8CAF6E47B6D0533] +07:58:39 ============================================================================ +07:58:39 + + +waiting on router queue for slot.... +07:58:39 Sending to : +07:58:39 ============================================================================ +07:58:39 Sending to : +07:58:39 ============================================================================ +07:58:39 ============================================================================ +07:58:39 Slot Id : <61> +07:58:39 Transaction Type : REQUEST +07:58:39 Received From : +07:58:39 ============================================================================ +07:58:39 FNo. Len. Field Value +07:58:39 ============================================================================ +07:58:39 [ 1] [ 4] [0200] +07:58:39 [ 2] [ 16] [1808931300011242] +07:58:39 [ 3] [ 6] [010000] +07:58:39 [ 4] [ 12] [000010000000] +07:58:39 [ 7] [ 10] [0320075630] +07:58:39 [ 11] [ 6] [931455] +07:58:39 [ 12] [ 6] [075630] +07:58:39 [ 13] [ 4] [0320] +07:58:39 [ 15] [ 4] [0320] +07:58:39 [ 18] [ 4] [6011] +07:58:39 [ 19] [ 3] [418] +07:58:39 [ 22] [ 3] [021] +07:58:39 [ 25] [ 2] [01] +07:58:39 [ 28] [ 9] [D00002000] +07:58:39 [ 32] [ 6] [668899] +07:58:39 [ 35] [ 27] [1808931300011242=1803500160] +07:58:39 [ 37] [ 12] [507901203866] +07:58:39 [ 41] [ 8] [03020012] +07:58:39 [ 42] [ 15] [APT ] +07:58:39 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +07:58:39 [ 49] [ 3] [418] +07:58:39 [ 52] [ 16] [A8CAF6E47B6D0533] +07:58:39 ============================================================================ +07:58:39 + + +waiting on router queue for slot.... +07:58:39 Sending to : +07:58:39 ============================================================================ +07:58:39 ============================================================================ +07:58:39 Slot Id : <61> +07:58:39 Transaction Type : REQUEST +07:58:39 Received From : +07:58:39 ============================================================================ +07:58:39 FNo. Len. Field Value +07:58:39 ============================================================================ +07:58:39 [ 1] [ 4] [0200] +07:58:39 [ 2] [ 16] [1808931300011242] +07:58:39 [ 3] [ 6] [010000] +07:58:39 [ 4] [ 12] [000010000000] +07:58:39 [ 7] [ 10] [0320075630] +07:58:39 [ 11] [ 6] [931455] +07:58:39 [ 12] [ 6] [075630] +07:58:39 [ 13] [ 4] [0320] +07:58:39 [ 15] [ 4] [0320] +07:58:39 [ 18] [ 4] [6011] +07:58:39 [ 19] [ 3] [418] +07:58:39 [ 22] [ 3] [021] +07:58:39 [ 25] [ 2] [01] +07:58:39 [ 28] [ 9] [D00002000] +07:58:39 [ 32] [ 6] [668899] +07:58:39 [ 35] [ 27] [1808931300011242=1803500160] +07:58:39 [ 37] [ 12] [507901203866] +07:58:39 [ 41] [ 8] [03020012] +07:58:39 [ 42] [ 15] [APT ] +07:58:39 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +07:58:39 [ 49] [ 3] [418] +07:58:39 [ 52] [ 16] [A2DAE6A57A8D37DA] +07:58:39 ============================================================================ +07:58:39 + + +waiting on router queue for slot.... +07:58:39 Sending to : <2> +07:58:39 ============================================================================ +07:58:40 ============================================================================ +07:58:40 Slot Id : <44> +07:58:40 Transaction Type : RESPONSE +07:58:40 Received From : +07:58:40 ============================================================================ +07:58:40 FNo. Len. Field Value +07:58:40 ============================================================================ +07:58:40 [ 1] [ 4] [0210] +07:58:40 [ 2] [ 16] [6213545000830715] +07:58:40 [ 3] [ 6] [011000] +07:58:40 [ 4] [ 12] [000020000000] +07:58:40 [ 7] [ 10] [0320005745] +07:58:40 [ 11] [ 6] [266971] +07:58:40 [ 12] [ 6] [075745] +07:58:40 [ 13] [ 4] [0320] +07:58:40 [ 15] [ 4] [0320] +07:58:40 [ 18] [ 4] [6011] +07:58:40 [ 19] [ 3] [418] +07:58:40 [ 32] [ 6] [180893] +07:58:40 [ 35] [ 32] [6213545000830715=491212013071140] +07:58:40 [ 37] [ 12] [507900266971] +07:58:40 [ 38] [ 6] [290146] +07:58:40 [ 39] [ 2] [00] +07:58:40 [ 41] [ 8] [0367BL20] +07:58:40 [ 49] [ 3] [418] +07:58:40 [ 54] [ 40] [1001418C0000925268181002418C000092526818] +07:58:40 ============================================================================ +07:58:40 Calculate Source COMM Id = 2 +07:58:40 ============================================================================ +07:58:40 + + +waiting on router queue for slot.... +07:58:43 ============================================================================ +07:58:43 Slot Id : <61> +07:58:43 Transaction Type : RESPONSE +07:58:43 Received From : +07:58:43 ============================================================================ +07:58:43 FNo. Len. Field Value +07:58:43 ============================================================================ +07:58:43 [ 1] [ 4] [0210] +07:58:43 [ 2] [ 16] [1808931300011242] +07:58:43 [ 3] [ 6] [010000] +07:58:43 [ 4] [ 12] [000010000000] +07:58:43 [ 6] [ 12] [000010000000] +07:58:43 [ 7] [ 10] [0320075630] +07:58:43 [ 11] [ 6] [931455] +07:58:43 [ 12] [ 6] [075630] +07:58:43 [ 13] [ 4] [0320] +07:58:43 [ 18] [ 4] [6011] +07:58:43 [ 19] [ 3] [418] +07:58:43 [ 22] [ 3] [021] +07:58:43 [ 32] [ 6] [668899] +07:58:43 [ 35] [ 27] [1808931300011242=1803500160] +07:58:43 [ 37] [ 12] [507901203866] +07:58:43 [ 38] [ 6] [931455] +07:58:43 [ 39] [ 2] [00] +07:58:43 [ 41] [ 8] [03020012] +07:58:43 [ 49] [ 3] [418] +07:58:43 [ 52] [ 16] [A2DAE6A57A8D37DA] +07:58:43 [ 54] [ 20] [1001418C000015763000] +07:58:43 ============================================================================ +07:58:43 Sending to : +07:58:43 ============================================================================ +07:58:43 + + +waiting on router queue for slot.... +07:58:45 ============================================================================ +07:58:45 Slot Id : <61> +07:58:45 Transaction Type : RESPONSE +07:58:45 Received From : +07:58:45 ============================================================================ +07:58:45 FNo. Len. Field Value +07:58:45 ============================================================================ +07:58:45 [ 1] [ 4] [0210] +07:58:45 [ 2] [ 16] [1808931300011242] +07:58:45 [ 3] [ 6] [010000] +07:58:45 [ 4] [ 12] [000010000000] +07:58:45 [ 6] [ 12] [000010000000] +07:58:45 [ 7] [ 10] [0320075630] +07:58:45 [ 11] [ 6] [931455] +07:58:45 [ 12] [ 6] [075630] +07:58:45 [ 13] [ 4] [0320] +07:58:45 [ 18] [ 4] [6011] +07:58:45 [ 19] [ 3] [418] +07:58:45 [ 22] [ 3] [021] +07:58:45 [ 32] [ 6] [668899] +07:58:45 [ 35] [ 27] [1808931300011242=1803500160] +07:58:45 [ 37] [ 12] [507901203866] +07:58:45 [ 38] [ 6] [931455] +07:58:45 [ 39] [ 2] [00] +07:58:45 [ 41] [ 8] [03020012] +07:58:45 [ 49] [ 3] [418] +07:58:45 [ 52] [ 16] [A2DAE6A57A8D37DA] +07:58:45 [ 54] [ 20] [1001418C000015763000] +07:58:45 ============================================================================ +07:58:45 Calculate Source COMM Id = 4 +07:58:45 ============================================================================ +07:58:45 + + +waiting on router queue for slot.... +07:58:53 ============================================================================ +07:58:53 Slot Id : <25> +07:58:53 Transaction Type : REQUEST +07:58:53 Received From : +07:58:53 ============================================================================ +07:58:53 FNo. Len. Field Value +07:58:53 ============================================================================ +07:58:53 [ 1] [ 4] [0800] +07:58:53 [ 7] [ 10] [0320151043] +07:58:53 [ 11] [ 6] [081043] +07:58:53 [ 37] [ 12] [57908081043] +07:58:53 [ 70] [ 3] [301] +07:58:53 ============================================================================ +07:58:53 + + +waiting on router queue for slot.... +07:58:53 Sending to : +07:58:53 ============================================================================ +07:58:53 ============================================================================ +07:58:53 Slot Id : <25> +07:58:53 Transaction Type : RESPONSE +07:58:53 Received From : +07:58:53 ============================================================================ +07:58:53 FNo. Len. Field Value +07:58:53 ============================================================================ +07:58:53 [ 1] [ 4] [0810] +07:58:53 [ 7] [ 10] [0320151043] +07:58:53 [ 11] [ 6] [081043] +07:58:53 [ 37] [ 12] [579080810430] +07:58:53 [ 39] [ 2] [00] +07:58:53 [ 70] [ 3] [810] +07:58:53 ============================================================================ +07:58:53 Calculate Source COMM Id = 6 +07:58:53 ============================================================================ +07:58:53 + + +waiting on router queue for slot.... +07:58:55 ============================================================================ +07:58:55 Slot Id : <15> +07:58:55 Transaction Type : REQUEST +07:58:55 Received From : +07:58:55 ============================================================================ +07:58:55 FNo. Len. Field Value +07:58:55 ============================================================================ +07:58:55 [ 1] [ 4] [0800] +07:58:55 [ 7] [ 10] [0320125802] +07:58:55 [ 11] [ 6] [155293] +07:58:55 [ 70] [ 3] [301] +07:58:55 ============================================================================ +07:58:55 + + +waiting on router queue for slot.... +07:58:55 Sending to : +07:58:55 ============================================================================ +07:58:55 ============================================================================ +07:58:55 Slot Id : <15> +07:58:55 Transaction Type : RESPONSE +07:58:55 Received From : +07:58:55 ============================================================================ +07:58:55 FNo. Len. Field Value +07:58:55 ============================================================================ +07:58:55 [ 1] [ 4] [0810] +07:58:55 [ 7] [ 10] [0320125802] +07:58:55 [ 11] [ 6] [155293] +07:58:55 [ 39] [ 2] [00] +07:58:55 [ 70] [ 3] [301] +07:58:55 ============================================================================ +07:58:55 Calculate Source COMM Id = 2 +07:58:55 ============================================================================ +07:58:55 + + +waiting on router queue for slot.... +07:59:02 ============================================================================ +07:59:02 Slot Id : <55> +07:59:02 Transaction Type : REQUEST +07:59:02 Received From : +07:59:02 ============================================================================ +07:59:02 FNo. Len. Field Value +07:59:02 ============================================================================ +07:59:02 [ 1] [ 4] [0800] +07:59:02 [ 2] [ 5] [02531] +07:59:02 [ 3] [ 6] [579078] +07:59:02 [ 7] [ 10] [0320005902] +07:59:02 [ 11] [ 6] [806875] +07:59:02 [ 15] [ 10] [0320005902] +07:59:02 [ 37] [ 11] [57907806875] +07:59:02 [ 70] [ 3] [001] +07:59:02 ============================================================================ +07:59:02 + + +waiting on router queue for slot.... +07:59:02 ============================================================================ +07:59:02 Slot Id : <55> +07:59:02 Transaction Type : RESPONSE +07:59:02 Received From : +07:59:02 ============================================================================ +07:59:02 FNo. Len. Field Value +07:59:02 ============================================================================ +07:59:02 [ 1] [ 4] [0810] +07:59:02 [ 7] [ 10] [0320005902] +07:59:02 [ 11] [ 6] [806875] +07:59:02 [ 15] [ 4] [0320] +07:59:02 [ 37] [ 12] [57907806875] +07:59:02 [ 39] [ 2] [00] +07:59:02 [ 70] [ 3] [001] +07:59:02 ============================================================================ +07:59:02 Sending to : +07:59:02 ============================================================================ +07:59:02 + + +waiting on router queue for slot.... +07:59:07 ============================================================================ +07:59:07 Slot Id : <478> +07:59:07 Transaction Type : REQUEST +07:59:07 Received From : +07:59:07 ============================================================================ +07:59:07 FNo. Len. Field Value +07:59:07 ============================================================================ +07:59:07 [ 1] [ 4] [0200] +07:59:07 [ 2] [ 16] [6213541000677545] +07:59:07 [ 3] [ 6] [301000] +07:59:07 [ 7] [ 10] [0320005813] +07:59:07 [ 11] [ 6] [266977] +07:59:07 [ 12] [ 6] [075813] +07:59:07 [ 13] [ 4] [0320] +07:59:07 [ 14] [ 4] [4912] +07:59:07 [ 15] [ 4] [0320] +07:59:07 [ 18] [ 4] [6011] +07:59:07 [ 19] [ 3] [418] +07:59:07 [ 22] [ 3] [021] +07:59:07 [ 25] [ 2] [01] +07:59:07 [ 32] [ 6] [180893] +07:59:07 [ 35] [ 32] [6213541000677545=491212017754088] +07:59:07 [ 37] [ 12] [507900266977] +07:59:07 [ 41] [ 8] [0441VT52] +07:59:07 [ 42] [ 15] [999999 ] +07:59:07 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +07:59:07 [ 49] [ 3] [418] +07:59:07 [ 52] [ 16] [FC8A2A418327FD4D] +07:59:07 ============================================================================ +07:59:07 + + +waiting on router queue for slot.... +07:59:07 Sending to : +07:59:07 ============================================================================ +07:59:07 Sending to : +07:59:07 ============================================================================ +07:59:07 ============================================================================ +07:59:07 Slot Id : <478> +07:59:07 Transaction Type : REQUEST +07:59:07 Received From : +07:59:07 ============================================================================ +07:59:07 FNo. Len. Field Value +07:59:07 ============================================================================ +07:59:07 [ 1] [ 4] [0200] +07:59:07 [ 2] [ 16] [6213541000677545] +07:59:07 [ 3] [ 6] [301000] +07:59:07 [ 7] [ 10] [0320005813] +07:59:07 [ 11] [ 6] [266977] +07:59:07 [ 12] [ 6] [075813] +07:59:07 [ 13] [ 4] [0320] +07:59:07 [ 14] [ 4] [4912] +07:59:07 [ 15] [ 4] [0320] +07:59:07 [ 18] [ 4] [6011] +07:59:07 [ 19] [ 3] [418] +07:59:07 [ 22] [ 3] [021] +07:59:07 [ 25] [ 2] [01] +07:59:07 [ 32] [ 6] [180893] +07:59:07 [ 35] [ 32] [6213541000677545=491212017754088] +07:59:07 [ 37] [ 12] [507900266977] +07:59:07 [ 41] [ 8] [0441VT52] +07:59:07 [ 42] [ 15] [999999 ] +07:59:07 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +07:59:07 [ 49] [ 3] [418] +07:59:07 [ 52] [ 16] [FC8A2A418327FD4D] +07:59:07 ============================================================================ +07:59:07 + + +waiting on router queue for slot.... +07:59:07 Sending to : +07:59:07 ============================================================================ +07:59:07 ============================================================================ +07:59:07 Slot Id : <478> +07:59:07 Transaction Type : REQUEST +07:59:07 Received From : +07:59:07 ============================================================================ +07:59:07 FNo. Len. Field Value +07:59:07 ============================================================================ +07:59:07 [ 1] [ 4] [0200] +07:59:07 [ 2] [ 16] [6213541000677545] +07:59:07 [ 3] [ 6] [301000] +07:59:07 [ 7] [ 10] [0320005813] +07:59:07 [ 11] [ 6] [266977] +07:59:07 [ 12] [ 6] [075813] +07:59:07 [ 13] [ 4] [0320] +07:59:07 [ 14] [ 4] [4912] +07:59:07 [ 15] [ 4] [0320] +07:59:07 [ 18] [ 4] [6011] +07:59:07 [ 19] [ 3] [418] +07:59:07 [ 22] [ 3] [021] +07:59:07 [ 25] [ 2] [01] +07:59:07 [ 32] [ 6] [180893] +07:59:07 [ 35] [ 32] [6213541000677545=491212017754088] +07:59:07 [ 37] [ 12] [507900266977] +07:59:07 [ 41] [ 8] [0441VT52] +07:59:07 [ 42] [ 15] [999999 ] +07:59:07 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +07:59:07 [ 49] [ 3] [418] +07:59:07 [ 52] [ 16] [6BCB58A08BBD61FE] +07:59:07 ============================================================================ +07:59:07 + + +waiting on router queue for slot.... +07:59:07 Sending to : <0> +07:59:07 ============================================================================ +07:59:08 ============================================================================ +07:59:08 Slot Id : <478> +07:59:08 Transaction Type : RESPONSE +07:59:08 Received From : +07:59:08 ============================================================================ +07:59:08 FNo. Len. Field Value +07:59:08 ============================================================================ +07:59:08 [ 1] [ 4] [0210] +07:59:08 [ 2] [ 16] [6213541000677545] +07:59:08 [ 3] [ 6] [301000] +07:59:08 [ 4] [ 12] [000000000000] +07:59:08 [ 7] [ 10] [0320005813] +07:59:08 [ 11] [ 6] [266977] +07:59:08 [ 12] [ 6] [075813] +07:59:08 [ 13] [ 4] [0320] +07:59:08 [ 15] [ 4] [0320] +07:59:08 [ 18] [ 4] [6011] +07:59:08 [ 19] [ 3] [418] +07:59:08 [ 32] [ 6] [180893] +07:59:08 [ 35] [ 32] [6213541000677545=491212017754088] +07:59:08 [ 37] [ 12] [507900266977] +07:59:08 [ 38] [ 6] [152477] +07:59:08 [ 39] [ 2] [00] +07:59:08 [ 41] [ 8] [0441VT52] +07:59:08 [ 49] [ 3] [418] +07:59:08 [ 54] [ 40] [1001418C0001930110961002418C000193011096] +07:59:08 ============================================================================ +07:59:08 Sending to : +07:59:08 ============================================================================ +07:59:08 + + +waiting on router queue for slot.... +07:59:09 ============================================================================ +07:59:09 Slot Id : <478> +07:59:09 Transaction Type : RESPONSE +07:59:09 Received From : +07:59:09 ============================================================================ +07:59:09 FNo. Len. Field Value +07:59:09 ============================================================================ +07:59:09 [ 1] [ 4] [0210] +07:59:09 [ 2] [ 16] [6213541000677545] +07:59:09 [ 3] [ 6] [301000] +07:59:09 [ 4] [ 12] [000000000000] +07:59:09 [ 7] [ 10] [0320005813] +07:59:09 [ 11] [ 6] [266977] +07:59:09 [ 12] [ 6] [075813] +07:59:09 [ 13] [ 4] [0320] +07:59:09 [ 15] [ 4] [0320] +07:59:09 [ 18] [ 4] [6011] +07:59:09 [ 19] [ 3] [418] +07:59:09 [ 32] [ 6] [180893] +07:59:09 [ 35] [ 32] [6213541000677545=491212017754088] +07:59:09 [ 37] [ 12] [507900266977] +07:59:09 [ 38] [ 6] [152477] +07:59:09 [ 39] [ 2] [00] +07:59:09 [ 41] [ 8] [0441VT52] +07:59:09 [ 49] [ 3] [418] +07:59:09 [ 54] [ 40] [1001418C0001930110961002418C000193011096] +07:59:09 ============================================================================ +07:59:09 Calculate Source COMM Id = 2 +07:59:09 ============================================================================ +07:59:09 + + +waiting on router queue for slot.... +07:59:22 ============================================================================ +07:59:22 Slot Id : <68> +07:59:22 Transaction Type : REQUEST +07:59:22 Received From : +07:59:22 ============================================================================ +07:59:22 FNo. Len. Field Value +07:59:22 ============================================================================ +07:59:22 [ 1] [ 4] [0800] +07:59:22 [ 7] [ 10] [0320125830] +07:59:22 [ 11] [ 6] [155294] +07:59:22 [ 70] [ 3] [301] +07:59:22 ============================================================================ +07:59:22 + + +waiting on router queue for slot.... +07:59:22 Sending to : +07:59:22 ============================================================================ +07:59:22 ============================================================================ +07:59:22 Slot Id : <68> +07:59:22 Transaction Type : RESPONSE +07:59:22 Received From : +07:59:22 ============================================================================ +07:59:22 FNo. Len. Field Value +07:59:22 ============================================================================ +07:59:22 [ 1] [ 4] [0810] +07:59:22 [ 7] [ 10] [0320125830] +07:59:22 [ 11] [ 6] [155294] +07:59:22 [ 39] [ 2] [00] +07:59:22 [ 70] [ 3] [301] +07:59:22 ============================================================================ +07:59:22 Calculate Source COMM Id = 2 +07:59:22 ============================================================================ +07:59:22 + + +waiting on router queue for slot.... +07:59:22 ============================================================================ +07:59:22 Slot Id : <63> +07:59:22 Transaction Type : REQUEST +07:59:22 Received From : +07:59:22 ============================================================================ +07:59:22 FNo. Len. Field Value +07:59:22 ============================================================================ +07:59:22 [ 1] [ 4] [0200] +07:59:22 [ 2] [ 16] [1888880000079202] +07:59:22 [ 3] [ 6] [010000] +07:59:22 [ 4] [ 12] [000100000000] +07:59:22 [ 7] [ 10] [0320075713] +07:59:22 [ 11] [ 6] [931502] +07:59:22 [ 12] [ 6] [075713] +07:59:22 [ 13] [ 4] [0320] +07:59:22 [ 15] [ 4] [0320] +07:59:22 [ 18] [ 4] [6011] +07:59:22 [ 19] [ 3] [418] +07:59:22 [ 22] [ 3] [021] +07:59:22 [ 25] [ 2] [01] +07:59:22 [ 28] [ 9] [D00002000] +07:59:22 [ 32] [ 6] [668899] +07:59:22 [ 35] [ 32] [1888880000079202=000010100000863] +07:59:22 [ 37] [ 12] [507902531610] +07:59:22 [ 41] [ 8] [03020033] +07:59:22 [ 42] [ 15] [APT ] +07:59:22 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +07:59:22 [ 49] [ 3] [418] +07:59:22 [ 52] [ 16] [4771ACAC88A63541] +07:59:22 ============================================================================ +07:59:22 + + +waiting on router queue for slot.... +07:59:22 Sending to : +07:59:22 ============================================================================ +07:59:22 Sending to : +07:59:22 ============================================================================ +07:59:22 ============================================================================ +07:59:22 Slot Id : <63> +07:59:22 Transaction Type : REQUEST +07:59:22 Received From : +07:59:22 ============================================================================ +07:59:22 FNo. Len. Field Value +07:59:22 ============================================================================ +07:59:22 [ 1] [ 4] [0200] +07:59:22 [ 2] [ 16] [1888880000079202] +07:59:22 [ 3] [ 6] [010000] +07:59:22 [ 4] [ 12] [000100000000] +07:59:22 [ 7] [ 10] [0320075713] +07:59:22 [ 11] [ 6] [931502] +07:59:22 [ 12] [ 6] [075713] +07:59:22 [ 13] [ 4] [0320] +07:59:22 [ 15] [ 4] [0320] +07:59:22 [ 18] [ 4] [6011] +07:59:22 [ 19] [ 3] [418] +07:59:22 [ 22] [ 3] [021] +07:59:22 [ 25] [ 2] [01] +07:59:22 [ 28] [ 9] [D00002000] +07:59:22 [ 32] [ 6] [668899] +07:59:22 [ 35] [ 32] [1888880000079202=000010100000863] +07:59:22 [ 37] [ 12] [507902531610] +07:59:22 [ 41] [ 8] [03020033] +07:59:22 [ 42] [ 15] [APT ] +07:59:22 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +07:59:22 [ 49] [ 3] [418] +07:59:22 [ 52] [ 16] [4771ACAC88A63541] +07:59:22 ============================================================================ +07:59:22 + + +waiting on router queue for slot.... +07:59:22 Sending to : +07:59:22 ============================================================================ +07:59:22 ============================================================================ +07:59:22 Slot Id : <63> +07:59:22 Transaction Type : REQUEST +07:59:22 Received From : +07:59:22 ============================================================================ +07:59:22 FNo. Len. Field Value +07:59:22 ============================================================================ +07:59:22 [ 1] [ 4] [0200] +07:59:22 [ 2] [ 16] [1888880000079202] +07:59:22 [ 3] [ 6] [010000] +07:59:22 [ 4] [ 12] [000100000000] +07:59:22 [ 7] [ 10] [0320075713] +07:59:22 [ 11] [ 6] [931502] +07:59:22 [ 12] [ 6] [075713] +07:59:22 [ 13] [ 4] [0320] +07:59:22 [ 15] [ 4] [0320] +07:59:22 [ 18] [ 4] [6011] +07:59:22 [ 19] [ 3] [418] +07:59:22 [ 22] [ 3] [021] +07:59:22 [ 25] [ 2] [01] +07:59:22 [ 28] [ 9] [D00002000] +07:59:22 [ 32] [ 6] [668899] +07:59:22 [ 35] [ 32] [1888880000079202=000010100000863] +07:59:22 [ 37] [ 12] [507902531610] +07:59:22 [ 41] [ 8] [03020033] +07:59:22 [ 42] [ 15] [APT ] +07:59:22 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +07:59:22 [ 49] [ 3] [418] +07:59:22 [ 52] [ 16] [E34411B471989DCF] +07:59:22 ============================================================================ +07:59:22 + + +waiting on router queue for slot.... +07:59:22 Sending to : <5> +07:59:22 ============================================================================ +07:59:30 ============================================================================ +07:59:30 Slot Id : <63> +07:59:30 Transaction Type : RESPONSE +07:59:30 Received From : +07:59:30 ============================================================================ +07:59:30 FNo. Len. Field Value +07:59:30 ============================================================================ +07:59:30 [ 1] [ 4] [0210] +07:59:30 [ 2] [ 16] [1888880000079202] +07:59:30 [ 3] [ 6] [010000] +07:59:30 [ 4] [ 12] [000100000000] +07:59:30 [ 7] [ 10] [0320075713] +07:59:30 [ 11] [ 6] [931502] +07:59:30 [ 12] [ 6] [075713] +07:59:30 [ 13] [ 4] [0320] +07:59:30 [ 15] [ 4] [0320] +07:59:30 [ 18] [ 4] [6011] +07:59:30 [ 19] [ 3] [418] +07:59:30 [ 32] [ 6] [668899] +07:59:30 [ 37] [ 12] [507902531610] +07:59:30 [ 38] [ 6] [804889] +07:59:30 [ 39] [ 2] [00] +07:59:30 [ 41] [ 8] [03020033] +07:59:30 [ 49] [ 3] [418] +07:59:30 [ 54] [ 0] [] +07:59:30 ============================================================================ +07:59:30 Sending to : +07:59:30 ============================================================================ +07:59:30 + + +waiting on router queue for slot.... +07:59:32 ============================================================================ +07:59:32 Slot Id : <63> +07:59:32 Transaction Type : RESPONSE +07:59:32 Received From : +07:59:32 ============================================================================ +07:59:32 FNo. Len. Field Value +07:59:32 ============================================================================ +07:59:32 [ 1] [ 4] [0210] +07:59:32 [ 2] [ 16] [1888880000079202] +07:59:32 [ 3] [ 6] [010000] +07:59:32 [ 4] [ 12] [000100000000] +07:59:32 [ 7] [ 10] [0320075713] +07:59:32 [ 11] [ 6] [931502] +07:59:32 [ 12] [ 6] [075713] +07:59:32 [ 13] [ 4] [0320] +07:59:32 [ 15] [ 4] [0320] +07:59:32 [ 18] [ 4] [6011] +07:59:32 [ 19] [ 3] [418] +07:59:32 [ 32] [ 6] [668899] +07:59:32 [ 37] [ 12] [507902531610] +07:59:32 [ 38] [ 6] [804889] +07:59:32 [ 39] [ 2] [00] +07:59:32 [ 41] [ 8] [03020033] +07:59:32 [ 49] [ 3] [418] +07:59:32 [ 54] [ 0] [] +07:59:32 ============================================================================ +07:59:32 Calculate Source COMM Id = 4 +07:59:32 ============================================================================ +07:59:32 + + +waiting on router queue for slot.... +07:59:33 ============================================================================ +07:59:33 Slot Id : <60> +07:59:33 Transaction Type : REQUEST +07:59:33 Received From : +07:59:33 ============================================================================ +07:59:33 FNo. Len. Field Value +07:59:33 ============================================================================ +07:59:33 [ 1] [ 4] [0800] +07:59:33 [ 7] [ 10] [0320125842] +07:59:33 [ 11] [ 6] [155295] +07:59:33 [ 70] [ 3] [301] +07:59:33 ============================================================================ +07:59:33 + + +waiting on router queue for slot.... +07:59:33 Sending to : +07:59:33 ============================================================================ +07:59:33 ============================================================================ +07:59:33 Slot Id : <60> +07:59:33 Transaction Type : RESPONSE +07:59:33 Received From : +07:59:33 ============================================================================ +07:59:33 FNo. Len. Field Value +07:59:33 ============================================================================ +07:59:33 [ 1] [ 4] [0810] +07:59:33 [ 7] [ 10] [0320125842] +07:59:33 [ 11] [ 6] [155295] +07:59:33 [ 39] [ 2] [00] +07:59:33 [ 70] [ 3] [301] +07:59:33 ============================================================================ +07:59:33 Calculate Source COMM Id = 2 +07:59:33 ============================================================================ +07:59:33 + + +waiting on router queue for slot.... +07:59:43 ============================================================================ +07:59:43 Slot Id : <41> +07:59:43 Transaction Type : REQUEST +07:59:43 Received From : +07:59:43 ============================================================================ +07:59:43 FNo. Len. Field Value +07:59:43 ============================================================================ +07:59:43 [ 1] [ 4] [0200] +07:59:43 [ 2] [ 16] [6213545000537245] +07:59:43 [ 3] [ 6] [311000] +07:59:43 [ 4] [ 12] [000000000000] +07:59:43 [ 7] [ 10] [0320080731] +07:59:43 [ 11] [ 6] [021099] +07:59:43 [ 12] [ 6] [080731] +07:59:43 [ 13] [ 4] [0320] +07:59:43 [ 14] [ 4] [4912] +07:59:43 [ 15] [ 4] [0320] +07:59:43 [ 18] [ 4] [6011] +07:59:43 [ 22] [ 3] [900] +07:59:43 [ 25] [ 2] [02] +07:59:43 [ 28] [ 9] [000000000] +07:59:43 [ 32] [ 6] [220699] +07:59:43 [ 35] [ 32] [6213545000537245=491212013724445] +07:59:43 [ 37] [ 12] [507900263070] +07:59:43 [ 41] [ 8] [01001400] +07:59:43 [ 42] [ 15] [APTRA ] +07:59:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:59:43 [ 49] [ 3] [418] +07:59:43 [ 52] [ 16] [DF3E9517EEDA9050] +07:59:43 ============================================================================ +07:59:43 + + +waiting on router queue for slot.... +07:59:43 Sending to : +07:59:43 ============================================================================ +07:59:43 Sending to : +07:59:43 ============================================================================ +07:59:44 ============================================================================ +07:59:44 Slot Id : <41> +07:59:44 Transaction Type : REQUEST +07:59:44 Received From : +07:59:44 ============================================================================ +07:59:44 FNo. Len. Field Value +07:59:44 ============================================================================ +07:59:44 [ 1] [ 4] [0200] +07:59:44 [ 2] [ 16] [6213545000537245] +07:59:44 [ 3] [ 6] [311000] +07:59:44 [ 4] [ 12] [000000000000] +07:59:44 [ 7] [ 10] [0320080731] +07:59:44 [ 11] [ 6] [021099] +07:59:44 [ 12] [ 6] [080731] +07:59:44 [ 13] [ 4] [0320] +07:59:44 [ 14] [ 4] [4912] +07:59:44 [ 15] [ 4] [0320] +07:59:44 [ 18] [ 4] [6011] +07:59:44 [ 22] [ 3] [900] +07:59:44 [ 25] [ 2] [02] +07:59:44 [ 28] [ 9] [000000000] +07:59:44 [ 32] [ 6] [220699] +07:59:44 [ 35] [ 32] [6213545000537245=491212013724445] +07:59:44 [ 37] [ 12] [507900263070] +07:59:44 [ 41] [ 8] [01001400] +07:59:44 [ 42] [ 15] [APTRA ] +07:59:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:59:44 [ 49] [ 3] [418] +07:59:44 [ 52] [ 16] [DF3E9517EEDA9050] +07:59:44 ============================================================================ +07:59:44 + + +waiting on router queue for slot.... +07:59:44 Sending to : +07:59:44 ============================================================================ +07:59:44 ============================================================================ +07:59:44 Slot Id : <41> +07:59:44 Transaction Type : REQUEST +07:59:44 Received From : +07:59:44 ============================================================================ +07:59:44 FNo. Len. Field Value +07:59:44 ============================================================================ +07:59:44 [ 1] [ 4] [0200] +07:59:44 [ 2] [ 16] [6213545000537245] +07:59:44 [ 3] [ 6] [311000] +07:59:44 [ 4] [ 12] [000000000000] +07:59:44 [ 7] [ 10] [0320080731] +07:59:44 [ 11] [ 6] [021099] +07:59:44 [ 12] [ 6] [080731] +07:59:44 [ 13] [ 4] [0320] +07:59:44 [ 14] [ 4] [4912] +07:59:44 [ 15] [ 4] [0320] +07:59:44 [ 18] [ 4] [6011] +07:59:44 [ 22] [ 3] [900] +07:59:44 [ 25] [ 2] [02] +07:59:44 [ 28] [ 9] [000000000] +07:59:44 [ 32] [ 6] [220699] +07:59:44 [ 35] [ 32] [6213545000537245=491212013724445] +07:59:44 [ 37] [ 12] [507900263070] +07:59:44 [ 41] [ 8] [01001400] +07:59:44 [ 42] [ 15] [APTRA ] +07:59:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +07:59:44 [ 49] [ 3] [418] +07:59:44 [ 52] [ 16] [8C8EEDDC97ED0441] +07:59:44 ============================================================================ +07:59:44 + + +waiting on router queue for slot.... +07:59:44 Sending to : <0> +07:59:44 ============================================================================ +07:59:44 ============================================================================ +07:59:44 Slot Id : <41> +07:59:44 Transaction Type : RESPONSE +07:59:44 Received From : +07:59:44 ============================================================================ +07:59:44 FNo. Len. Field Value +07:59:44 ============================================================================ +07:59:44 [ 1] [ 4] [0210] +07:59:44 [ 2] [ 16] [6213545000537245] +07:59:44 [ 3] [ 6] [311000] +07:59:44 [ 4] [ 12] [000000000000] +07:59:44 [ 7] [ 10] [0320080731] +07:59:44 [ 11] [ 6] [021099] +07:59:44 [ 12] [ 6] [080731] +07:59:44 [ 13] [ 4] [0320] +07:59:44 [ 15] [ 4] [0320] +07:59:44 [ 18] [ 4] [6011] +07:59:44 [ 32] [ 6] [220699] +07:59:44 [ 35] [ 32] [6213545000537245=491212013724445] +07:59:44 [ 37] [ 12] [507900263070] +07:59:44 [ 38] [ 6] [352303] +07:59:44 [ 39] [ 2] [00] +07:59:44 [ 41] [ 8] [01001400] +07:59:44 [ 49] [ 3] [418] +07:59:44 [ 54] [ 40] [1001418C0002267411201002418C000226741120] +07:59:44 ============================================================================ +07:59:44 Sending to : +07:59:44 ============================================================================ +07:59:44 + + +waiting on router queue for slot.... +07:59:46 ============================================================================ +07:59:46 Slot Id : <41> +07:59:46 Transaction Type : RESPONSE +07:59:46 Received From : +07:59:46 ============================================================================ +07:59:46 FNo. Len. Field Value +07:59:46 ============================================================================ +07:59:46 [ 1] [ 4] [0210] +07:59:46 [ 2] [ 16] [6213545000537245] +07:59:46 [ 3] [ 6] [311000] +07:59:46 [ 4] [ 12] [000000000000] +07:59:46 [ 7] [ 10] [0320080731] +07:59:46 [ 11] [ 6] [021099] +07:59:46 [ 12] [ 6] [080731] +07:59:46 [ 13] [ 4] [0320] +07:59:46 [ 15] [ 4] [0320] +07:59:46 [ 18] [ 4] [6011] +07:59:46 [ 32] [ 6] [220699] +07:59:46 [ 35] [ 32] [6213545000537245=491212013724445] +07:59:46 [ 37] [ 12] [507900263070] +07:59:46 [ 38] [ 6] [352303] +07:59:46 [ 39] [ 2] [00] +07:59:46 [ 41] [ 8] [01001400] +07:59:46 [ 49] [ 3] [418] +07:59:46 [ 54] [ 40] [1001418C0002267411201002418C000226741120] +07:59:46 ============================================================================ +07:59:46 Calculate Source COMM Id = 1 +07:59:46 ============================================================================ +07:59:46 + + +waiting on router queue for slot.... +07:59:48 ============================================================================ +07:59:48 Slot Id : <38> +07:59:48 Transaction Type : REQUEST +07:59:48 Received From : +07:59:48 ============================================================================ +07:59:48 FNo. Len. Field Value +07:59:48 ============================================================================ +07:59:48 [ 1] [ 4] [0200] +07:59:48 [ 2] [ 16] [6213541000677545] +07:59:48 [ 3] [ 6] [010000] +07:59:48 [ 4] [ 12] [000100000000] +07:59:48 [ 7] [ 10] [0320005855] +07:59:48 [ 11] [ 6] [266983] +07:59:48 [ 12] [ 6] [075855] +07:59:48 [ 13] [ 4] [0320] +07:59:48 [ 14] [ 4] [4912] +07:59:48 [ 15] [ 4] [0320] +07:59:48 [ 18] [ 4] [6011] +07:59:48 [ 19] [ 3] [418] +07:59:48 [ 22] [ 3] [021] +07:59:48 [ 25] [ 2] [01] +07:59:48 [ 28] [ 9] [D00002000] +07:59:48 [ 32] [ 6] [180893] +07:59:48 [ 35] [ 32] [6213541000677545=491212017754088] +07:59:48 [ 37] [ 12] [507900266983] +07:59:48 [ 41] [ 8] [0441VT52] +07:59:48 [ 42] [ 15] [999999 ] +07:59:48 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +07:59:48 [ 49] [ 3] [418] +07:59:48 [ 52] [ 16] [FC8A2A418327FD4D] +07:59:48 ============================================================================ +07:59:48 + + +waiting on router queue for slot.... +07:59:48 Sending to : +07:59:48 ============================================================================ +07:59:48 Sending to : +07:59:48 ============================================================================ +07:59:48 ============================================================================ +07:59:48 Slot Id : <38> +07:59:48 Transaction Type : REQUEST +07:59:48 Received From : +07:59:48 ============================================================================ +07:59:48 FNo. Len. Field Value +07:59:48 ============================================================================ +07:59:48 [ 1] [ 4] [0200] +07:59:48 [ 2] [ 16] [6213541000677545] +07:59:48 [ 3] [ 6] [010000] +07:59:48 [ 4] [ 12] [000100000000] +07:59:48 [ 7] [ 10] [0320005855] +07:59:48 [ 11] [ 6] [266983] +07:59:48 [ 12] [ 6] [075855] +07:59:48 [ 13] [ 4] [0320] +07:59:48 [ 14] [ 4] [4912] +07:59:48 [ 15] [ 4] [0320] +07:59:48 [ 18] [ 4] [6011] +07:59:48 [ 19] [ 3] [418] +07:59:48 [ 22] [ 3] [021] +07:59:48 [ 25] [ 2] [01] +07:59:48 [ 28] [ 9] [D00002000] +07:59:48 [ 32] [ 6] [180893] +07:59:48 [ 35] [ 32] [6213541000677545=491212017754088] +07:59:48 [ 37] [ 12] [507900266983] +07:59:48 [ 41] [ 8] [0441VT52] +07:59:48 [ 42] [ 15] [999999 ] +07:59:48 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +07:59:48 [ 49] [ 3] [418] +07:59:48 [ 52] [ 16] [FC8A2A418327FD4D] +07:59:48 ============================================================================ +07:59:48 + + +waiting on router queue for slot.... +07:59:48 Sending to : +07:59:48 ============================================================================ +07:59:48 ============================================================================ +07:59:48 Slot Id : <38> +07:59:48 Transaction Type : REQUEST +07:59:48 Received From : +07:59:48 ============================================================================ +07:59:48 FNo. Len. Field Value +07:59:48 ============================================================================ +07:59:48 [ 1] [ 4] [0200] +07:59:48 [ 2] [ 16] [6213541000677545] +07:59:48 [ 3] [ 6] [010000] +07:59:48 [ 4] [ 12] [000100000000] +07:59:48 [ 7] [ 10] [0320005855] +07:59:48 [ 11] [ 6] [266983] +07:59:48 [ 12] [ 6] [075855] +07:59:48 [ 13] [ 4] [0320] +07:59:48 [ 14] [ 4] [4912] +07:59:48 [ 15] [ 4] [0320] +07:59:48 [ 18] [ 4] [6011] +07:59:48 [ 19] [ 3] [418] +07:59:48 [ 22] [ 3] [021] +07:59:48 [ 25] [ 2] [01] +07:59:48 [ 28] [ 9] [D00002000] +07:59:48 [ 32] [ 6] [180893] +07:59:48 [ 35] [ 32] [6213541000677545=491212017754088] +07:59:48 [ 37] [ 12] [507900266983] +07:59:48 [ 41] [ 8] [0441VT52] +07:59:48 [ 42] [ 15] [999999 ] +07:59:48 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +07:59:48 [ 49] [ 3] [418] +07:59:48 [ 52] [ 16] [6BCB58A08BBD61FE] +07:59:48 ============================================================================ +07:59:48 + + +waiting on router queue for slot.... +07:59:48 Sending to : <0> +07:59:48 ============================================================================ +07:59:49 ============================================================================ +07:59:49 Slot Id : <38> +07:59:49 Transaction Type : RESPONSE +07:59:49 Received From : +07:59:49 ============================================================================ +07:59:49 FNo. Len. Field Value +07:59:49 ============================================================================ +07:59:49 [ 1] [ 4] [0210] +07:59:49 [ 2] [ 16] [6213541000677545] +07:59:49 [ 3] [ 6] [010000] +07:59:49 [ 4] [ 12] [000100000000] +07:59:49 [ 7] [ 10] [0320005855] +07:59:49 [ 11] [ 6] [266983] +07:59:49 [ 12] [ 6] [075855] +07:59:49 [ 13] [ 4] [0320] +07:59:49 [ 15] [ 4] [0320] +07:59:49 [ 18] [ 4] [6011] +07:59:49 [ 19] [ 3] [418] +07:59:49 [ 32] [ 6] [180893] +07:59:49 [ 35] [ 32] [6213541000677545=491212017754088] +07:59:49 [ 37] [ 12] [507900266983] +07:59:49 [ 38] [ 6] [721568] +07:59:49 [ 39] [ 2] [00] +07:59:49 [ 41] [ 8] [0441VT52] +07:59:49 [ 49] [ 3] [418] +07:59:49 [ 54] [ 40] [0001418C0000928110960002418C000092811096] +07:59:49 ============================================================================ +07:59:49 Sending to : +07:59:49 ============================================================================ +07:59:49 + + +waiting on router queue for slot.... +07:59:49 ============================================================================ +07:59:49 Slot Id : <464> +07:59:49 Transaction Type : REQUEST +07:59:49 Received From : +07:59:49 ============================================================================ +07:59:49 FNo. Len. Field Value +07:59:49 ============================================================================ +07:59:49 [ 1] [ 4] [0800] +07:59:49 [ 7] [ 10] [0320125857] +07:59:49 [ 11] [ 6] [155296] +07:59:49 [ 70] [ 3] [301] +07:59:49 ============================================================================ +07:59:49 + + +waiting on router queue for slot.... +07:59:49 Sending to : +07:59:49 ============================================================================ +07:59:49 ============================================================================ +07:59:49 Slot Id : <464> +07:59:49 Transaction Type : RESPONSE +07:59:49 Received From : +07:59:49 ============================================================================ +07:59:49 FNo. Len. Field Value +07:59:49 ============================================================================ +07:59:49 [ 1] [ 4] [0810] +07:59:49 [ 7] [ 10] [0320125857] +07:59:49 [ 11] [ 6] [155296] +07:59:49 [ 39] [ 2] [00] +07:59:49 [ 70] [ 3] [301] +07:59:49 ============================================================================ +07:59:49 Calculate Source COMM Id = 2 +07:59:49 ============================================================================ +07:59:49 + + +waiting on router queue for slot.... +07:59:50 ============================================================================ +07:59:50 Slot Id : <38> +07:59:50 Transaction Type : RESPONSE +07:59:50 Received From : +07:59:50 ============================================================================ +07:59:50 FNo. Len. Field Value +07:59:50 ============================================================================ +07:59:50 [ 1] [ 4] [0210] +07:59:50 [ 2] [ 16] [6213541000677545] +07:59:50 [ 3] [ 6] [010000] +07:59:50 [ 4] [ 12] [000100000000] +07:59:50 [ 7] [ 10] [0320005855] +07:59:50 [ 11] [ 6] [266983] +07:59:50 [ 12] [ 6] [075855] +07:59:50 [ 13] [ 4] [0320] +07:59:50 [ 15] [ 4] [0320] +07:59:50 [ 18] [ 4] [6011] +07:59:50 [ 19] [ 3] [418] +07:59:50 [ 32] [ 6] [180893] +07:59:50 [ 35] [ 32] [6213541000677545=491212017754088] +07:59:50 [ 37] [ 12] [507900266983] +07:59:50 [ 38] [ 6] [721568] +07:59:50 [ 39] [ 2] [00] +07:59:50 [ 41] [ 8] [0441VT52] +07:59:50 [ 49] [ 3] [418] +07:59:50 [ 54] [ 40] [0001418C0000928110960002418C000092811096] +07:59:50 ============================================================================ +07:59:50 Calculate Source COMM Id = 2 +07:59:50 ============================================================================ +07:59:50 + + +waiting on router queue for slot.... +07:59:54 ============================================================================ +07:59:54 Slot Id : <73> +07:59:54 Transaction Type : REQUEST +07:59:54 Received From : +07:59:54 ============================================================================ +07:59:54 FNo. Len. Field Value +07:59:54 ============================================================================ +07:59:54 [ 1] [ 4] [0800] +07:59:54 [ 7] [ 10] [0320010742] +07:59:54 [ 11] [ 6] [029560] +07:59:54 [ 37] [ 12] [57908029560] +07:59:54 [ 70] [ 3] [301] +07:59:54 ============================================================================ +07:59:54 + + +waiting on router queue for slot.... +07:59:54 Sending to : +07:59:54 ============================================================================ +07:59:54 ============================================================================ +07:59:54 Slot Id : <73> +07:59:54 Transaction Type : RESPONSE +07:59:54 Received From : +07:59:54 ============================================================================ +07:59:54 FNo. Len. Field Value +07:59:54 ============================================================================ +07:59:54 [ 1] [ 4] [0810] +07:59:54 [ 7] [ 10] [0320010742] +07:59:54 [ 11] [ 6] [029560] +07:59:54 [ 37] [ 12] [579080295600] +07:59:54 [ 39] [ 2] [00] +07:59:54 [ 70] [ 3] [810] +07:59:54 ============================================================================ +07:59:54 Calculate Source COMM Id = 1 +07:59:54 ============================================================================ +07:59:54 + + +waiting on router queue for slot.... +08:00:00 ============================================================================ +08:00:00 Slot Id : <27> +08:00:00 Transaction Type : REQUEST +08:00:00 Received From : +08:00:00 ============================================================================ +08:00:00 FNo. Len. Field Value +08:00:00 ============================================================================ +08:00:00 [ 1] [ 4] [0800] +08:00:00 [ 7] [ 10] [0320151148] +08:00:00 [ 11] [ 6] [081148] +08:00:00 [ 37] [ 12] [57908081148] +08:00:00 [ 70] [ 3] [301] +08:00:00 ============================================================================ +08:00:00 + + +waiting on router queue for slot.... +08:00:00 Sending to : +08:00:00 ============================================================================ +08:00:00 ============================================================================ +08:00:00 Slot Id : <27> +08:00:00 Transaction Type : RESPONSE +08:00:00 Received From : +08:00:00 ============================================================================ +08:00:00 FNo. Len. Field Value +08:00:00 ============================================================================ +08:00:00 [ 1] [ 4] [0810] +08:00:00 [ 7] [ 10] [0320151148] +08:00:00 [ 11] [ 6] [081148] +08:00:00 [ 37] [ 12] [579080811480] +08:00:00 [ 39] [ 2] [00] +08:00:00 [ 70] [ 3] [810] +08:00:00 ============================================================================ +08:00:00 Calculate Source COMM Id = 6 +08:00:00 ============================================================================ +08:00:00 + + +waiting on router queue for slot.... +08:00:04 ============================================================================ +08:00:04 Slot Id : <487> +08:00:04 Transaction Type : REQUEST +08:00:04 Received From : +08:00:04 ============================================================================ +08:00:04 FNo. Len. Field Value +08:00:04 ============================================================================ +08:00:04 [ 1] [ 4] [0800] +08:00:04 [ 2] [ 5] [02531] +08:00:04 [ 3] [ 6] [579088] +08:00:04 [ 7] [ 10] [0320010004] +08:00:04 [ 11] [ 6] [806876] +08:00:04 [ 15] [ 10] [0320010004] +08:00:04 [ 37] [ 11] [57908806876] +08:00:04 [ 70] [ 3] [001] +08:00:04 ============================================================================ +08:00:04 + + +waiting on router queue for slot.... +08:00:04 ============================================================================ +08:00:04 Slot Id : <487> +08:00:04 Transaction Type : RESPONSE +08:00:04 Received From : +08:00:04 ============================================================================ +08:00:04 FNo. Len. Field Value +08:00:04 ============================================================================ +08:00:04 [ 1] [ 4] [0810] +08:00:04 [ 7] [ 10] [0320010004] +08:00:04 [ 11] [ 6] [806876] +08:00:04 [ 15] [ 4] [0320] +08:00:04 [ 37] [ 12] [57908806876] +08:00:04 [ 39] [ 2] [00] +08:00:04 [ 70] [ 3] [001] +08:00:04 ============================================================================ +08:00:04 Sending to : +08:00:04 ============================================================================ +08:00:04 + + +waiting on router queue for slot.... +08:00:05 ============================================================================ +08:00:05 Slot Id : <32> +08:00:05 Transaction Type : REQUEST +08:00:05 Received From : +08:00:05 ============================================================================ +08:00:05 FNo. Len. Field Value +08:00:05 ============================================================================ +08:00:05 [ 1] [ 4] [0800] +08:00:05 [ 7] [ 10] [0320125913] +08:00:05 [ 11] [ 6] [155297] +08:00:05 [ 70] [ 3] [301] +08:00:05 ============================================================================ +08:00:05 + + +waiting on router queue for slot.... +08:00:05 Sending to : +08:00:05 ============================================================================ +08:00:05 ============================================================================ +08:00:05 Slot Id : <32> +08:00:05 Transaction Type : RESPONSE +08:00:05 Received From : +08:00:05 ============================================================================ +08:00:05 FNo. Len. Field Value +08:00:05 ============================================================================ +08:00:05 [ 1] [ 4] [0810] +08:00:05 [ 7] [ 10] [0320125913] +08:00:05 [ 11] [ 6] [155297] +08:00:05 [ 39] [ 2] [00] +08:00:05 [ 70] [ 3] [301] +08:00:05 ============================================================================ +08:00:05 Calculate Source COMM Id = 2 +08:00:05 ============================================================================ +08:00:05 + + +waiting on router queue for slot.... +08:00:18 ============================================================================ +08:00:18 Slot Id : <20> +08:00:18 Transaction Type : REQUEST +08:00:18 Received From : +08:00:18 ============================================================================ +08:00:18 FNo. Len. Field Value +08:00:18 ============================================================================ +08:00:18 [ 1] [ 4] [0800] +08:00:18 [ 7] [ 10] [0320125924] +08:00:18 [ 11] [ 6] [155298] +08:00:18 [ 70] [ 3] [301] +08:00:18 ============================================================================ +08:00:18 + + +waiting on router queue for slot.... +08:00:18 Sending to : +08:00:18 ============================================================================ +08:00:18 ============================================================================ +08:00:18 Slot Id : <20> +08:00:18 Transaction Type : RESPONSE +08:00:18 Received From : +08:00:18 ============================================================================ +08:00:18 FNo. Len. Field Value +08:00:18 ============================================================================ +08:00:18 [ 1] [ 4] [0810] +08:00:18 [ 7] [ 10] [0320125924] +08:00:18 [ 11] [ 6] [155298] +08:00:18 [ 39] [ 2] [00] +08:00:18 [ 70] [ 3] [301] +08:00:18 ============================================================================ +08:00:18 Calculate Source COMM Id = 2 +08:00:18 ============================================================================ +08:00:18 + + +waiting on router queue for slot.... +08:00:32 ============================================================================ +08:00:32 Slot Id : <26> +08:00:32 Transaction Type : REQUEST +08:00:32 Received From : +08:00:32 ============================================================================ +08:00:32 FNo. Len. Field Value +08:00:32 ============================================================================ +08:00:32 [ 1] [ 4] [0800] +08:00:32 [ 7] [ 10] [0320125940] +08:00:32 [ 11] [ 6] [155299] +08:00:32 [ 70] [ 3] [301] +08:00:32 ============================================================================ +08:00:32 + + +waiting on router queue for slot.... +08:00:32 Sending to : +08:00:32 ============================================================================ +08:00:32 ============================================================================ +08:00:32 Slot Id : <26> +08:00:32 Transaction Type : RESPONSE +08:00:32 Received From : +08:00:32 ============================================================================ +08:00:32 FNo. Len. Field Value +08:00:32 ============================================================================ +08:00:32 [ 1] [ 4] [0810] +08:00:32 [ 7] [ 10] [0320125940] +08:00:32 [ 11] [ 6] [155299] +08:00:32 [ 39] [ 2] [00] +08:00:32 [ 70] [ 3] [301] +08:00:32 ============================================================================ +08:00:32 Calculate Source COMM Id = 2 +08:00:32 ============================================================================ +08:00:32 + + +waiting on router queue for slot.... +08:00:32 ============================================================================ +08:00:32 Slot Id : <48> +08:00:32 Transaction Type : REQUEST +08:00:32 Received From : +08:00:32 ============================================================================ +08:00:32 FNo. Len. Field Value +08:00:32 ============================================================================ +08:00:32 [ 1] [ 4] [0200] +08:00:32 [ 2] [ 16] [6213545000537245] +08:00:32 [ 3] [ 6] [010000] +08:00:32 [ 4] [ 12] [000100000000] +08:00:32 [ 7] [ 10] [0320080819] +08:00:32 [ 11] [ 6] [021103] +08:00:32 [ 12] [ 6] [080819] +08:00:32 [ 13] [ 4] [0320] +08:00:32 [ 14] [ 4] [4912] +08:00:32 [ 15] [ 4] [0320] +08:00:32 [ 18] [ 4] [6011] +08:00:32 [ 22] [ 3] [900] +08:00:32 [ 25] [ 2] [02] +08:00:32 [ 28] [ 9] [D00002000] +08:00:32 [ 32] [ 6] [220699] +08:00:32 [ 35] [ 32] [6213545000537245=491212013724445] +08:00:32 [ 37] [ 12] [507900263073] +08:00:32 [ 41] [ 8] [01001400] +08:00:32 [ 42] [ 15] [APTRA ] +08:00:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:00:32 [ 49] [ 3] [418] +08:00:32 [ 52] [ 16] [DF3E9517EEDA9050] +08:00:32 ============================================================================ +08:00:32 + + +waiting on router queue for slot.... +08:00:32 Sending to : +08:00:32 ============================================================================ +08:00:32 Sending to : +08:00:32 ============================================================================ +08:00:32 ============================================================================ +08:00:32 Slot Id : <48> +08:00:32 Transaction Type : REQUEST +08:00:32 Received From : +08:00:32 ============================================================================ +08:00:32 FNo. Len. Field Value +08:00:32 ============================================================================ +08:00:32 [ 1] [ 4] [0200] +08:00:32 [ 2] [ 16] [6213545000537245] +08:00:32 [ 3] [ 6] [010000] +08:00:32 [ 4] [ 12] [000100000000] +08:00:32 [ 7] [ 10] [0320080819] +08:00:32 [ 11] [ 6] [021103] +08:00:32 [ 12] [ 6] [080819] +08:00:32 [ 13] [ 4] [0320] +08:00:32 [ 14] [ 4] [4912] +08:00:32 [ 15] [ 4] [0320] +08:00:32 [ 18] [ 4] [6011] +08:00:32 [ 22] [ 3] [900] +08:00:32 [ 25] [ 2] [02] +08:00:32 [ 28] [ 9] [D00002000] +08:00:32 [ 32] [ 6] [220699] +08:00:32 [ 35] [ 32] [6213545000537245=491212013724445] +08:00:32 [ 37] [ 12] [507900263073] +08:00:32 [ 41] [ 8] [01001400] +08:00:32 [ 42] [ 15] [APTRA ] +08:00:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:00:32 [ 49] [ 3] [418] +08:00:32 [ 52] [ 16] [DF3E9517EEDA9050] +08:00:32 ============================================================================ +08:00:32 + + +waiting on router queue for slot.... +08:00:32 Sending to : +08:00:32 ============================================================================ +08:00:32 ============================================================================ +08:00:32 Slot Id : <48> +08:00:32 Transaction Type : REQUEST +08:00:32 Received From : +08:00:32 ============================================================================ +08:00:32 FNo. Len. Field Value +08:00:32 ============================================================================ +08:00:32 [ 1] [ 4] [0200] +08:00:32 [ 2] [ 16] [6213545000537245] +08:00:32 [ 3] [ 6] [010000] +08:00:32 [ 4] [ 12] [000100000000] +08:00:32 [ 7] [ 10] [0320080819] +08:00:32 [ 11] [ 6] [021103] +08:00:32 [ 12] [ 6] [080819] +08:00:32 [ 13] [ 4] [0320] +08:00:32 [ 14] [ 4] [4912] +08:00:32 [ 15] [ 4] [0320] +08:00:32 [ 18] [ 4] [6011] +08:00:32 [ 22] [ 3] [900] +08:00:32 [ 25] [ 2] [02] +08:00:32 [ 28] [ 9] [D00002000] +08:00:32 [ 32] [ 6] [220699] +08:00:32 [ 35] [ 32] [6213545000537245=491212013724445] +08:00:32 [ 37] [ 12] [507900263073] +08:00:32 [ 41] [ 8] [01001400] +08:00:32 [ 42] [ 15] [APTRA ] +08:00:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:00:32 [ 49] [ 3] [418] +08:00:32 [ 52] [ 16] [8C8EEDDC97ED0441] +08:00:32 ============================================================================ +08:00:32 + + +waiting on router queue for slot.... +08:00:32 Sending to : <0> +08:00:32 ============================================================================ +08:00:33 ============================================================================ +08:00:33 Slot Id : <48> +08:00:33 Transaction Type : RESPONSE +08:00:33 Received From : +08:00:33 ============================================================================ +08:00:33 FNo. Len. Field Value +08:00:33 ============================================================================ +08:00:33 [ 1] [ 4] [0210] +08:00:33 [ 2] [ 16] [6213545000537245] +08:00:33 [ 3] [ 6] [010000] +08:00:33 [ 4] [ 12] [000100000000] +08:00:33 [ 7] [ 10] [0320080819] +08:00:33 [ 11] [ 6] [021103] +08:00:33 [ 12] [ 6] [080819] +08:00:33 [ 13] [ 4] [0320] +08:00:33 [ 15] [ 4] [0320] +08:00:33 [ 18] [ 4] [6011] +08:00:33 [ 32] [ 6] [220699] +08:00:33 [ 35] [ 32] [6213545000537245=491212013724445] +08:00:33 [ 37] [ 12] [507900263073] +08:00:33 [ 38] [ 6] [040873] +08:00:33 [ 39] [ 2] [00] +08:00:33 [ 41] [ 8] [01001400] +08:00:33 [ 49] [ 3] [418] +08:00:33 [ 54] [ 40] [0001418C0001265411200002418C000126541120] +08:00:33 ============================================================================ +08:00:33 Sending to : +08:00:33 ============================================================================ +08:00:33 + + +waiting on router queue for slot.... +08:00:34 ============================================================================ +08:00:34 Slot Id : <48> +08:00:34 Transaction Type : RESPONSE +08:00:34 Received From : +08:00:34 ============================================================================ +08:00:34 FNo. Len. Field Value +08:00:34 ============================================================================ +08:00:34 [ 1] [ 4] [0210] +08:00:34 [ 2] [ 16] [6213545000537245] +08:00:34 [ 3] [ 6] [010000] +08:00:34 [ 4] [ 12] [000100000000] +08:00:34 [ 7] [ 10] [0320080819] +08:00:34 [ 11] [ 6] [021103] +08:00:34 [ 12] [ 6] [080819] +08:00:34 [ 13] [ 4] [0320] +08:00:34 [ 15] [ 4] [0320] +08:00:34 [ 18] [ 4] [6011] +08:00:34 [ 32] [ 6] [220699] +08:00:34 [ 35] [ 32] [6213545000537245=491212013724445] +08:00:34 [ 37] [ 12] [507900263073] +08:00:34 [ 38] [ 6] [040873] +08:00:34 [ 39] [ 2] [00] +08:00:34 [ 41] [ 8] [01001400] +08:00:34 [ 49] [ 3] [418] +08:00:34 [ 54] [ 40] [0001418C0001265411200002418C000126541120] +08:00:34 ============================================================================ +08:00:34 Calculate Source COMM Id = 1 +08:00:34 ============================================================================ +08:00:34 + + +waiting on router queue for slot.... +08:00:35 ============================================================================ +08:00:35 Slot Id : <46> +08:00:35 Transaction Type : REQUEST +08:00:35 Received From : +08:00:35 ============================================================================ +08:00:35 FNo. Len. Field Value +08:00:35 ============================================================================ +08:00:35 [ 1] [ 4] [0200] +08:00:35 [ 2] [ 16] [6213544001447850] +08:00:35 [ 3] [ 6] [010000] +08:00:35 [ 4] [ 12] [000050000000] +08:00:35 [ 7] [ 10] [0320075827] +08:00:35 [ 11] [ 6] [931558] +08:00:35 [ 12] [ 6] [075827] +08:00:35 [ 13] [ 4] [0320] +08:00:35 [ 15] [ 4] [0320] +08:00:35 [ 18] [ 4] [6011] +08:00:35 [ 19] [ 3] [418] +08:00:35 [ 22] [ 3] [021] +08:00:35 [ 25] [ 2] [01] +08:00:35 [ 28] [ 9] [D00002000] +08:00:35 [ 32] [ 6] [668899] +08:00:35 [ 35] [ 32] [6213544001447850=491212014785165] +08:00:35 [ 37] [ 12] [507900858220] +08:00:35 [ 41] [ 8] [03015004] +08:00:35 [ 42] [ 15] [APT ] +08:00:35 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +08:00:35 [ 49] [ 3] [418] +08:00:35 [ 52] [ 16] [4BF8D01027E5402B] +08:00:35 ============================================================================ +08:00:35 + + +waiting on router queue for slot.... +08:00:35 Sending to : +08:00:35 ============================================================================ +08:00:35 Sending to : +08:00:35 ============================================================================ +08:00:35 ============================================================================ +08:00:35 Slot Id : <46> +08:00:35 Transaction Type : REQUEST +08:00:35 Received From : +08:00:35 ============================================================================ +08:00:35 FNo. Len. Field Value +08:00:35 ============================================================================ +08:00:35 [ 1] [ 4] [0200] +08:00:35 [ 2] [ 16] [6213544001447850] +08:00:35 [ 3] [ 6] [010000] +08:00:35 [ 4] [ 12] [000050000000] +08:00:35 [ 7] [ 10] [0320075827] +08:00:35 [ 11] [ 6] [931558] +08:00:35 [ 12] [ 6] [075827] +08:00:35 [ 13] [ 4] [0320] +08:00:35 [ 15] [ 4] [0320] +08:00:35 [ 18] [ 4] [6011] +08:00:35 [ 19] [ 3] [418] +08:00:35 [ 22] [ 3] [021] +08:00:35 [ 25] [ 2] [01] +08:00:35 [ 28] [ 9] [D00002000] +08:00:35 [ 32] [ 6] [668899] +08:00:35 [ 35] [ 32] [6213544001447850=491212014785165] +08:00:35 [ 37] [ 12] [507900858220] +08:00:35 [ 41] [ 8] [03015004] +08:00:35 [ 42] [ 15] [APT ] +08:00:35 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +08:00:35 [ 49] [ 3] [418] +08:00:35 [ 52] [ 16] [4BF8D01027E5402B] +08:00:35 ============================================================================ +08:00:35 + + +waiting on router queue for slot.... +08:00:35 Sending to : +08:00:35 ============================================================================ +08:00:35 ============================================================================ +08:00:35 Slot Id : <46> +08:00:35 Transaction Type : REQUEST +08:00:35 Received From : +08:00:35 ============================================================================ +08:00:35 FNo. Len. Field Value +08:00:35 ============================================================================ +08:00:35 [ 1] [ 4] [0200] +08:00:35 [ 2] [ 16] [6213544001447850] +08:00:35 [ 3] [ 6] [010000] +08:00:35 [ 4] [ 12] [000050000000] +08:00:35 [ 7] [ 10] [0320075827] +08:00:35 [ 11] [ 6] [931558] +08:00:35 [ 12] [ 6] [075827] +08:00:35 [ 13] [ 4] [0320] +08:00:35 [ 15] [ 4] [0320] +08:00:35 [ 18] [ 4] [6011] +08:00:35 [ 19] [ 3] [418] +08:00:35 [ 22] [ 3] [021] +08:00:35 [ 25] [ 2] [01] +08:00:35 [ 28] [ 9] [D00002000] +08:00:35 [ 32] [ 6] [668899] +08:00:35 [ 35] [ 32] [6213544001447850=491212014785165] +08:00:35 [ 37] [ 12] [507900858220] +08:00:35 [ 41] [ 8] [03015004] +08:00:35 [ 42] [ 15] [APT ] +08:00:35 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +08:00:35 [ 49] [ 3] [418] +08:00:35 [ 52] [ 16] [B4EFE1549971BC9D] +08:00:35 ============================================================================ +08:00:35 + + +waiting on router queue for slot.... +08:00:35 Sending to : <0> +08:00:35 ============================================================================ +08:00:36 ============================================================================ +08:00:36 Slot Id : <46> +08:00:36 Transaction Type : RESPONSE +08:00:36 Received From : +08:00:36 ============================================================================ +08:00:36 FNo. Len. Field Value +08:00:36 ============================================================================ +08:00:36 [ 1] [ 4] [0210] +08:00:36 [ 2] [ 16] [6213544001447850] +08:00:36 [ 3] [ 6] [010000] +08:00:36 [ 4] [ 12] [000050000000] +08:00:36 [ 7] [ 10] [0320075827] +08:00:36 [ 11] [ 6] [931558] +08:00:36 [ 12] [ 6] [075827] +08:00:36 [ 13] [ 4] [0320] +08:00:36 [ 15] [ 4] [0320] +08:00:36 [ 18] [ 4] [6011] +08:00:36 [ 19] [ 3] [418] +08:00:36 [ 32] [ 6] [668899] +08:00:36 [ 35] [ 32] [6213544001447850=491212014785165] +08:00:36 [ 37] [ 12] [507900858220] +08:00:36 [ 38] [ 6] [156381] +08:00:36 [ 39] [ 2] [00] +08:00:36 [ 41] [ 8] [03015004] +08:00:36 [ 49] [ 3] [418] +08:00:36 [ 54] [ 40] [0001418C0001005873940002418C000100587394] +08:00:36 ============================================================================ +08:00:36 Sending to : +08:00:36 ============================================================================ +08:00:36 + + +waiting on router queue for slot.... +08:00:37 ============================================================================ +08:00:37 Slot Id : <46> +08:00:37 Transaction Type : RESPONSE +08:00:37 Received From : +08:00:37 ============================================================================ +08:00:37 FNo. Len. Field Value +08:00:37 ============================================================================ +08:00:37 [ 1] [ 4] [0210] +08:00:37 [ 2] [ 16] [6213544001447850] +08:00:37 [ 3] [ 6] [010000] +08:00:37 [ 4] [ 12] [000050000000] +08:00:37 [ 7] [ 10] [0320075827] +08:00:37 [ 11] [ 6] [931558] +08:00:37 [ 12] [ 6] [075827] +08:00:37 [ 13] [ 4] [0320] +08:00:37 [ 15] [ 4] [0320] +08:00:37 [ 18] [ 4] [6011] +08:00:37 [ 19] [ 3] [418] +08:00:37 [ 32] [ 6] [668899] +08:00:37 [ 35] [ 32] [6213544001447850=491212014785165] +08:00:37 [ 37] [ 12] [507900858220] +08:00:37 [ 38] [ 6] [156381] +08:00:37 [ 39] [ 2] [00] +08:00:37 [ 41] [ 8] [03015004] +08:00:37 [ 49] [ 3] [418] +08:00:37 [ 54] [ 40] [0001418C0001005873940002418C000100587394] +08:00:37 ============================================================================ +08:00:37 Calculate Source COMM Id = 4 +08:00:37 ============================================================================ +08:00:37 + + +waiting on router queue for slot.... +08:00:45 ============================================================================ +08:00:45 Slot Id : <19> +08:00:45 Transaction Type : REQUEST +08:00:45 Received From : +08:00:45 ============================================================================ +08:00:45 FNo. Len. Field Value +08:00:45 ============================================================================ +08:00:45 [ 1] [ 4] [0200] +08:00:45 [ 2] [ 16] [1808931000004760] +08:00:45 [ 3] [ 6] [011000] +08:00:45 [ 4] [ 12] [000015000000] +08:00:45 [ 7] [ 10] [0320080041] +08:00:45 [ 11] [ 6] [677058] +08:00:45 [ 12] [ 6] [080041] +08:00:45 [ 13] [ 4] [0320] +08:00:45 [ 15] [ 4] [0320] +08:00:45 [ 18] [ 4] [6011] +08:00:45 [ 22] [ 3] [900] +08:00:45 [ 25] [ 2] [02] +08:00:45 [ 28] [ 9] [D00002000] +08:00:45 [ 32] [ 6] [621354] +08:00:45 [ 35] [ 27] [1808931000004760=1803500501] +08:00:45 [ 37] [ 12] [507904830347] +08:00:45 [ 41] [ 8] [11000700] +08:00:45 [ 42] [ 15] [NATIVE ] +08:00:45 [ 43] [ 40] [Samosone Bokeo Houysai LAO] +08:00:45 [ 49] [ 3] [418] +08:00:45 [ 52] [ 16] [A1CC62603D599859] +08:00:45 ============================================================================ +08:00:45 + + +waiting on router queue for slot.... +08:00:45 Sending to : +08:00:45 ============================================================================ +08:00:45 Sending to : +08:00:45 ============================================================================ +08:00:45 ============================================================================ +08:00:45 Slot Id : <19> +08:00:45 Transaction Type : REQUEST +08:00:45 Received From : +08:00:45 ============================================================================ +08:00:45 FNo. Len. Field Value +08:00:45 ============================================================================ +08:00:45 [ 1] [ 4] [0200] +08:00:45 [ 2] [ 16] [1808931000004760] +08:00:45 [ 3] [ 6] [011000] +08:00:45 [ 4] [ 12] [000015000000] +08:00:45 [ 7] [ 10] [0320080041] +08:00:45 [ 11] [ 6] [677058] +08:00:45 [ 12] [ 6] [080041] +08:00:45 [ 13] [ 4] [0320] +08:00:45 [ 15] [ 4] [0320] +08:00:45 [ 18] [ 4] [6011] +08:00:45 [ 22] [ 3] [900] +08:00:45 [ 25] [ 2] [02] +08:00:45 [ 28] [ 9] [D00002000] +08:00:45 [ 32] [ 6] [621354] +08:00:45 [ 35] [ 27] [1808931000004760=1803500501] +08:00:45 [ 37] [ 12] [507904830347] +08:00:45 [ 41] [ 8] [11000700] +08:00:45 [ 42] [ 15] [NATIVE ] +08:00:45 [ 43] [ 40] [Samosone Bokeo Houysai LAO] +08:00:45 [ 49] [ 3] [418] +08:00:45 [ 52] [ 16] [A1CC62603D599859] +08:00:45 ============================================================================ +08:00:45 + + +waiting on router queue for slot.... +08:00:45 Sending to : +08:00:45 ============================================================================ +08:00:45 ============================================================================ +08:00:45 Slot Id : <19> +08:00:45 Transaction Type : REQUEST +08:00:45 Received From : +08:00:45 ============================================================================ +08:00:45 FNo. Len. Field Value +08:00:45 ============================================================================ +08:00:45 [ 1] [ 4] [0200] +08:00:45 [ 2] [ 16] [1808931000004760] +08:00:45 [ 3] [ 6] [011000] +08:00:45 [ 4] [ 12] [000015000000] +08:00:45 [ 7] [ 10] [0320080041] +08:00:45 [ 11] [ 6] [677058] +08:00:45 [ 12] [ 6] [080041] +08:00:45 [ 13] [ 4] [0320] +08:00:45 [ 15] [ 4] [0320] +08:00:45 [ 18] [ 4] [6011] +08:00:45 [ 22] [ 3] [900] +08:00:45 [ 25] [ 2] [02] +08:00:45 [ 28] [ 9] [D00002000] +08:00:45 [ 32] [ 6] [621354] +08:00:45 [ 35] [ 27] [1808931000004760=1803500501] +08:00:45 [ 37] [ 12] [507904830347] +08:00:45 [ 41] [ 8] [11000700] +08:00:45 [ 42] [ 15] [NATIVE ] +08:00:45 [ 43] [ 40] [Samosone Bokeo Houysai LAO] +08:00:45 [ 49] [ 3] [418] +08:00:45 [ 52] [ 16] [50016EA12A44598F] +08:00:45 ============================================================================ +08:00:45 + + +waiting on router queue for slot.... +08:00:45 Sending to : <2> +08:00:45 ============================================================================ +08:00:51 ============================================================================ +08:00:51 Slot Id : <19> +08:00:51 Transaction Type : RESPONSE +08:00:51 Received From : +08:00:51 ============================================================================ +08:00:51 FNo. Len. Field Value +08:00:51 ============================================================================ +08:00:51 [ 1] [ 4] [0210] +08:00:51 [ 2] [ 16] [1808931000004760] +08:00:51 [ 3] [ 6] [011000] +08:00:51 [ 4] [ 12] [000015000000] +08:00:51 [ 6] [ 12] [000015000000] +08:00:51 [ 7] [ 10] [0320080041] +08:00:51 [ 11] [ 6] [677058] +08:00:51 [ 12] [ 6] [080041] +08:00:51 [ 13] [ 4] [0320] +08:00:51 [ 18] [ 4] [6011] +08:00:51 [ 19] [ 3] [418] +08:00:51 [ 22] [ 3] [021] +08:00:51 [ 32] [ 6] [621354] +08:00:51 [ 35] [ 27] [1808931000004760=1803500501] +08:00:51 [ 37] [ 12] [507904830347] +08:00:51 [ 38] [ 6] [677058] +08:00:51 [ 39] [ 2] [00] +08:00:51 [ 41] [ 8] [11000700] +08:00:51 [ 49] [ 3] [418] +08:00:51 [ 52] [ 16] [50016EA12A44598F] +08:00:51 [ 54] [ 20] [1001418C000019616600] +08:00:51 ============================================================================ +08:00:51 Sending to : +08:00:51 ============================================================================ +08:00:51 + + +waiting on router queue for slot.... +08:00:53 ============================================================================ +08:00:53 Slot Id : <19> +08:00:53 Transaction Type : RESPONSE +08:00:53 Received From : +08:00:53 ============================================================================ +08:00:53 FNo. Len. Field Value +08:00:53 ============================================================================ +08:00:53 [ 1] [ 4] [0210] +08:00:53 [ 2] [ 16] [1808931000004760] +08:00:53 [ 3] [ 6] [011000] +08:00:53 [ 4] [ 12] [000015000000] +08:00:53 [ 6] [ 12] [000015000000] +08:00:53 [ 7] [ 10] [0320080041] +08:00:53 [ 11] [ 6] [677058] +08:00:53 [ 12] [ 6] [080041] +08:00:53 [ 13] [ 4] [0320] +08:00:53 [ 18] [ 4] [6011] +08:00:53 [ 19] [ 3] [418] +08:00:53 [ 22] [ 3] [021] +08:00:53 [ 32] [ 6] [621354] +08:00:53 [ 35] [ 27] [1808931000004760=1803500501] +08:00:53 [ 37] [ 12] [507904830347] +08:00:53 [ 38] [ 6] [677058] +08:00:53 [ 39] [ 2] [00] +08:00:53 [ 41] [ 8] [11000700] +08:00:53 [ 49] [ 3] [418] +08:00:53 [ 52] [ 16] [50016EA12A44598F] +08:00:53 [ 54] [ 20] [1001418C000019616600] +08:00:53 ============================================================================ +08:00:53 Calculate Source COMM Id = 0 +08:00:53 ============================================================================ +08:00:53 + + +waiting on router queue for slot.... +08:00:57 ============================================================================ +08:00:57 Slot Id : <69> +08:00:57 Transaction Type : REQUEST +08:00:57 Received From : +08:00:57 ============================================================================ +08:00:57 FNo. Len. Field Value +08:00:57 ============================================================================ +08:00:57 [ 1] [ 4] [0800] +08:00:57 [ 7] [ 10] [0320080044] +08:00:57 [ 11] [ 6] [062973] +08:00:57 [ 37] [ 12] [507908062973] +08:00:57 [ 70] [ 3] [ ] +08:00:57 ============================================================================ +08:00:57 + + +waiting on router queue for slot.... +08:00:57 Sending to : +08:00:57 ============================================================================ +08:00:57 ============================================================================ +08:00:57 Slot Id : <69> +08:00:57 Transaction Type : RESPONSE +08:00:57 Received From : +08:00:57 ============================================================================ +08:00:57 FNo. Len. Field Value +08:00:57 ============================================================================ +08:00:57 [ 1] [ 4] [0810] +08:00:57 [ 7] [ 10] [0320080044] +08:00:57 [ 11] [ 6] [062973] +08:00:57 [ 37] [ 12] [507908062973] +08:00:57 [ 39] [ 2] [91] +08:00:57 [ 70] [ 3] [ ] +08:00:57 ============================================================================ +08:00:57 Calculate Source COMM Id = 3 +08:00:57 ============================================================================ +08:00:57 + + +waiting on router queue for slot.... +08:00:58 ============================================================================ +08:00:58 Slot Id : <58> +08:00:58 Transaction Type : REQUEST +08:00:58 Received From : +08:00:58 ============================================================================ +08:00:58 FNo. Len. Field Value +08:00:58 ============================================================================ +08:00:58 [ 1] [ 4] [0800] +08:00:58 [ 7] [ 10] [0320010007] +08:00:58 [ 11] [ 6] [155300] +08:00:58 [ 70] [ 3] [301] +08:00:58 ============================================================================ +08:00:58 + + +waiting on router queue for slot.... +08:00:58 Sending to : +08:00:58 ============================================================================ +08:00:58 ============================================================================ +08:00:58 Slot Id : <58> +08:00:58 Transaction Type : RESPONSE +08:00:58 Received From : +08:00:58 ============================================================================ +08:00:58 FNo. Len. Field Value +08:00:58 ============================================================================ +08:00:58 [ 1] [ 4] [0810] +08:00:58 [ 7] [ 10] [0320010007] +08:00:58 [ 11] [ 6] [155300] +08:00:58 [ 39] [ 2] [00] +08:00:58 [ 70] [ 3] [301] +08:00:58 ============================================================================ +08:00:58 Calculate Source COMM Id = 2 +08:00:58 ============================================================================ +08:00:58 + + +waiting on router queue for slot.... +08:01:02 ============================================================================ +08:01:02 Slot Id : <47> +08:01:02 Transaction Type : REQUEST +08:01:02 Received From : +08:01:02 ============================================================================ +08:01:02 FNo. Len. Field Value +08:01:02 ============================================================================ +08:01:02 [ 1] [ 4] [0200] +08:01:02 [ 2] [ 16] [6213541000677545] +08:01:02 [ 3] [ 6] [010000] +08:01:02 [ 4] [ 12] [000010000000] +08:01:02 [ 7] [ 10] [0320010010] +08:01:02 [ 11] [ 6] [266995] +08:01:02 [ 12] [ 6] [080010] +08:01:02 [ 13] [ 4] [0320] +08:01:02 [ 14] [ 4] [4912] +08:01:02 [ 15] [ 4] [0320] +08:01:02 [ 18] [ 4] [6011] +08:01:02 [ 19] [ 3] [418] +08:01:02 [ 22] [ 3] [021] +08:01:02 [ 25] [ 2] [01] +08:01:02 [ 28] [ 9] [D00002000] +08:01:02 [ 32] [ 6] [180893] +08:01:02 [ 35] [ 32] [6213541000677545=491212017754088] +08:01:02 [ 37] [ 12] [507901266995] +08:01:02 [ 41] [ 8] [0441VT52] +08:01:02 [ 42] [ 15] [999999 ] +08:01:02 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +08:01:02 [ 49] [ 3] [418] +08:01:02 [ 52] [ 16] [FC8A2A418327FD4D] +08:01:02 ============================================================================ +08:01:02 + + +waiting on router queue for slot.... +08:01:02 Sending to : +08:01:02 ============================================================================ +08:01:02 Sending to : +08:01:02 ============================================================================ +08:01:02 ============================================================================ +08:01:02 Slot Id : <47> +08:01:02 Transaction Type : REQUEST +08:01:02 Received From : +08:01:02 ============================================================================ +08:01:02 FNo. Len. Field Value +08:01:02 ============================================================================ +08:01:02 [ 1] [ 4] [0200] +08:01:02 [ 2] [ 16] [6213541000677545] +08:01:02 [ 3] [ 6] [010000] +08:01:02 [ 4] [ 12] [000010000000] +08:01:02 [ 7] [ 10] [0320010010] +08:01:02 [ 11] [ 6] [266995] +08:01:02 [ 12] [ 6] [080010] +08:01:02 [ 13] [ 4] [0320] +08:01:02 [ 14] [ 4] [4912] +08:01:02 [ 15] [ 4] [0320] +08:01:02 [ 18] [ 4] [6011] +08:01:02 [ 19] [ 3] [418] +08:01:02 [ 22] [ 3] [021] +08:01:02 [ 25] [ 2] [01] +08:01:02 [ 28] [ 9] [D00002000] +08:01:02 [ 32] [ 6] [180893] +08:01:02 [ 35] [ 32] [6213541000677545=491212017754088] +08:01:02 [ 37] [ 12] [507901266995] +08:01:02 [ 41] [ 8] [0441VT52] +08:01:02 [ 42] [ 15] [999999 ] +08:01:02 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +08:01:02 [ 49] [ 3] [418] +08:01:02 [ 52] [ 16] [FC8A2A418327FD4D] +08:01:02 ============================================================================ +08:01:02 + + +waiting on router queue for slot.... +08:01:02 Sending to : +08:01:02 ============================================================================ +08:01:02 ============================================================================ +08:01:02 Slot Id : <47> +08:01:02 Transaction Type : REQUEST +08:01:02 Received From : +08:01:02 ============================================================================ +08:01:02 FNo. Len. Field Value +08:01:02 ============================================================================ +08:01:02 [ 1] [ 4] [0200] +08:01:02 [ 2] [ 16] [6213541000677545] +08:01:02 [ 3] [ 6] [010000] +08:01:02 [ 4] [ 12] [000010000000] +08:01:02 [ 7] [ 10] [0320010010] +08:01:02 [ 11] [ 6] [266995] +08:01:02 [ 12] [ 6] [080010] +08:01:02 [ 13] [ 4] [0320] +08:01:02 [ 14] [ 4] [4912] +08:01:02 [ 15] [ 4] [0320] +08:01:02 [ 18] [ 4] [6011] +08:01:02 [ 19] [ 3] [418] +08:01:02 [ 22] [ 3] [021] +08:01:02 [ 25] [ 2] [01] +08:01:02 [ 28] [ 9] [D00002000] +08:01:02 [ 32] [ 6] [180893] +08:01:02 [ 35] [ 32] [6213541000677545=491212017754088] +08:01:02 [ 37] [ 12] [507901266995] +08:01:02 [ 41] [ 8] [0441VT52] +08:01:02 [ 42] [ 15] [999999 ] +08:01:02 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +08:01:02 [ 49] [ 3] [418] +08:01:02 [ 52] [ 16] [6BCB58A08BBD61FE] +08:01:02 ============================================================================ +08:01:02 + + +waiting on router queue for slot.... +08:01:02 Sending to : <0> +08:01:02 ============================================================================ +08:01:03 ============================================================================ +08:01:03 Slot Id : <47> +08:01:03 Transaction Type : RESPONSE +08:01:03 Received From : +08:01:03 ============================================================================ +08:01:03 FNo. Len. Field Value +08:01:03 ============================================================================ +08:01:03 [ 1] [ 4] [0210] +08:01:03 [ 2] [ 16] [6213541000677545] +08:01:03 [ 3] [ 6] [010000] +08:01:03 [ 4] [ 12] [000010000000] +08:01:03 [ 7] [ 10] [0320010010] +08:01:03 [ 11] [ 6] [266995] +08:01:03 [ 12] [ 6] [080010] +08:01:03 [ 13] [ 4] [0320] +08:01:03 [ 15] [ 4] [0320] +08:01:03 [ 18] [ 4] [6011] +08:01:03 [ 19] [ 3] [418] +08:01:03 [ 32] [ 6] [180893] +08:01:03 [ 35] [ 32] [6213541000677545=491212017754088] +08:01:03 [ 37] [ 12] [507901266995] +08:01:03 [ 38] [ 6] [989536] +08:01:03 [ 39] [ 2] [00] +08:01:03 [ 41] [ 8] [0441VT52] +08:01:03 [ 49] [ 3] [418] +08:01:03 [ 54] [ 40] [0001418C0000826110960002418C000082611096] +08:01:03 ============================================================================ +08:01:03 Sending to : +08:01:03 ============================================================================ +08:01:03 + + +waiting on router queue for slot.... +08:01:04 ============================================================================ +08:01:04 Slot Id : <47> +08:01:04 Transaction Type : RESPONSE +08:01:04 Received From : +08:01:04 ============================================================================ +08:01:04 FNo. Len. Field Value +08:01:04 ============================================================================ +08:01:04 [ 1] [ 4] [0210] +08:01:04 [ 2] [ 16] [6213541000677545] +08:01:04 [ 3] [ 6] [010000] +08:01:04 [ 4] [ 12] [000010000000] +08:01:04 [ 7] [ 10] [0320010010] +08:01:04 [ 11] [ 6] [266995] +08:01:04 [ 12] [ 6] [080010] +08:01:04 [ 13] [ 4] [0320] +08:01:04 [ 15] [ 4] [0320] +08:01:04 [ 18] [ 4] [6011] +08:01:04 [ 19] [ 3] [418] +08:01:04 [ 32] [ 6] [180893] +08:01:04 [ 35] [ 32] [6213541000677545=491212017754088] +08:01:04 [ 37] [ 12] [507901266995] +08:01:04 [ 38] [ 6] [989536] +08:01:04 [ 39] [ 2] [00] +08:01:04 [ 41] [ 8] [0441VT52] +08:01:04 [ 49] [ 3] [418] +08:01:04 [ 54] [ 40] [0001418C0000826110960002418C000082611096] +08:01:04 ============================================================================ +08:01:04 Calculate Source COMM Id = 2 +08:01:04 ============================================================================ +08:01:04 + + +waiting on router queue for slot.... +08:01:05 ============================================================================ +08:01:05 Slot Id : <78> +08:01:05 Transaction Type : REQUEST +08:01:05 Received From : +08:01:05 ============================================================================ +08:01:05 FNo. Len. Field Value +08:01:05 ============================================================================ +08:01:05 [ 1] [ 4] [0800] +08:01:05 [ 7] [ 10] [0320151253] +08:01:05 [ 11] [ 6] [081253] +08:01:05 [ 37] [ 12] [57908081253] +08:01:05 [ 70] [ 3] [301] +08:01:05 ============================================================================ +08:01:05 + + +waiting on router queue for slot.... +08:01:05 Sending to : +08:01:05 ============================================================================ +08:01:05 ============================================================================ +08:01:05 Slot Id : <78> +08:01:05 Transaction Type : RESPONSE +08:01:05 Received From : +08:01:05 ============================================================================ +08:01:05 FNo. Len. Field Value +08:01:05 ============================================================================ +08:01:05 [ 1] [ 4] [0810] +08:01:05 [ 7] [ 10] [0320151253] +08:01:05 [ 11] [ 6] [081253] +08:01:05 [ 37] [ 12] [579080812530] +08:01:05 [ 39] [ 2] [00] +08:01:05 [ 70] [ 3] [810] +08:01:05 ============================================================================ +08:01:05 Calculate Source COMM Id = 6 +08:01:05 ============================================================================ +08:01:05 + + +waiting on router queue for slot.... +08:01:06 ============================================================================ +08:01:06 Slot Id : <54> +08:01:06 Transaction Type : REQUEST +08:01:06 Received From : +08:01:06 ============================================================================ +08:01:06 FNo. Len. Field Value +08:01:06 ============================================================================ +08:01:06 [ 1] [ 4] [0800] +08:01:06 [ 2] [ 5] [02531] +08:01:06 [ 3] [ 6] [579088] +08:01:06 [ 7] [ 10] [0320010106] +08:01:06 [ 11] [ 6] [806877] +08:01:06 [ 15] [ 10] [0320010106] +08:01:06 [ 37] [ 11] [57908806877] +08:01:06 [ 70] [ 3] [001] +08:01:06 ============================================================================ +08:01:06 + + +waiting on router queue for slot.... +08:01:06 ============================================================================ +08:01:06 Slot Id : <54> +08:01:06 Transaction Type : RESPONSE +08:01:06 Received From : +08:01:06 ============================================================================ +08:01:06 FNo. Len. Field Value +08:01:06 ============================================================================ +08:01:06 [ 1] [ 4] [0810] +08:01:06 [ 7] [ 10] [0320010106] +08:01:06 [ 11] [ 6] [806877] +08:01:06 [ 15] [ 4] [0320] +08:01:06 [ 37] [ 12] [57908806877] +08:01:06 [ 39] [ 2] [00] +08:01:06 [ 70] [ 3] [001] +08:01:06 ============================================================================ +08:01:06 Sending to : +08:01:06 ============================================================================ +08:01:06 + + +waiting on router queue for slot.... +08:01:20 ============================================================================ +08:01:20 Slot Id : <81> +08:01:20 Transaction Type : REQUEST +08:01:20 Received From : +08:01:20 ============================================================================ +08:01:20 FNo. Len. Field Value +08:01:20 ============================================================================ +08:01:20 [ 1] [ 4] [0800] +08:01:20 [ 7] [ 10] [0320010028] +08:01:20 [ 11] [ 6] [155301] +08:01:20 [ 70] [ 3] [301] +08:01:20 ============================================================================ +08:01:20 + + +waiting on router queue for slot.... +08:01:20 Sending to : +08:01:20 ============================================================================ +08:01:20 ============================================================================ +08:01:20 Slot Id : <81> +08:01:20 Transaction Type : RESPONSE +08:01:20 Received From : +08:01:20 ============================================================================ +08:01:20 FNo. Len. Field Value +08:01:20 ============================================================================ +08:01:20 [ 1] [ 4] [0810] +08:01:20 [ 7] [ 10] [0320010028] +08:01:20 [ 11] [ 6] [155301] +08:01:20 [ 39] [ 2] [00] +08:01:20 [ 70] [ 3] [301] +08:01:20 ============================================================================ +08:01:20 Calculate Source COMM Id = 2 +08:01:20 ============================================================================ +08:01:20 + + +waiting on router queue for slot.... +08:01:20 ============================================================================ +08:01:20 Slot Id : <24> +08:01:20 Transaction Type : REQUEST +08:01:20 Received From : +08:01:20 ============================================================================ +08:01:20 FNo. Len. Field Value +08:01:20 ============================================================================ +08:01:20 [ 1] [ 4] [0800] +08:01:20 [ 7] [ 10] [0320005912] +08:01:20 [ 11] [ 6] [010675] +08:01:20 [ 37] [ 12] [57907010675] +08:01:20 [ 70] [ 3] [301] +08:01:20 ============================================================================ +08:01:20 + + +waiting on router queue for slot.... +08:01:20 Sending to : +08:01:20 ============================================================================ +08:01:20 ============================================================================ +08:01:20 Slot Id : <24> +08:01:20 Transaction Type : RESPONSE +08:01:20 Received From : +08:01:20 ============================================================================ +08:01:20 FNo. Len. Field Value +08:01:20 ============================================================================ +08:01:20 [ 1] [ 4] [0810] +08:01:20 [ 7] [ 10] [0320005912] +08:01:20 [ 11] [ 6] [010675] +08:01:20 [ 37] [ 12] [579070106750] +08:01:20 [ 39] [ 2] [00] +08:01:20 [ 70] [ 3] [810] +08:01:20 ============================================================================ +08:01:20 Calculate Source COMM Id = 4 +08:01:20 ============================================================================ +08:01:20 + + +waiting on router queue for slot.... +08:01:30 ============================================================================ +08:01:30 Slot Id : <57> +08:01:30 Transaction Type : REQUEST +08:01:30 Received From : +08:01:30 ============================================================================ +08:01:30 FNo. Len. Field Value +08:01:30 ============================================================================ +08:01:30 [ 1] [ 4] [0800] +08:01:30 [ 7] [ 10] [0320010038] +08:01:30 [ 11] [ 6] [155302] +08:01:30 [ 70] [ 3] [301] +08:01:30 ============================================================================ +08:01:30 + + +waiting on router queue for slot.... +08:01:30 Sending to : +08:01:30 ============================================================================ +08:01:30 ============================================================================ +08:01:30 Slot Id : <57> +08:01:30 Transaction Type : RESPONSE +08:01:30 Received From : +08:01:30 ============================================================================ +08:01:30 FNo. Len. Field Value +08:01:30 ============================================================================ +08:01:30 [ 1] [ 4] [0810] +08:01:30 [ 7] [ 10] [0320010038] +08:01:30 [ 11] [ 6] [155302] +08:01:30 [ 39] [ 2] [00] +08:01:30 [ 70] [ 3] [301] +08:01:30 ============================================================================ +08:01:30 Calculate Source COMM Id = 2 +08:01:30 ============================================================================ +08:01:30 + + +waiting on router queue for slot.... +08:01:32 ============================================================================ +08:01:32 Slot Id : <34> +08:01:32 Transaction Type : REQUEST +08:01:32 Received From : +08:01:32 ============================================================================ +08:01:32 FNo. Len. Field Value +08:01:32 ============================================================================ +08:01:32 [ 1] [ 4] [0200] +08:01:32 [ 2] [ 16] [6213545000537245] +08:01:32 [ 3] [ 6] [010000] +08:01:32 [ 4] [ 12] [000100000000] +08:01:32 [ 7] [ 10] [0320080919] +08:01:32 [ 11] [ 6] [021106] +08:01:32 [ 12] [ 6] [080919] +08:01:32 [ 13] [ 4] [0320] +08:01:32 [ 14] [ 4] [4912] +08:01:32 [ 15] [ 4] [0320] +08:01:32 [ 18] [ 4] [6011] +08:01:32 [ 22] [ 3] [900] +08:01:32 [ 25] [ 2] [02] +08:01:32 [ 28] [ 9] [D00002000] +08:01:32 [ 32] [ 6] [220699] +08:01:32 [ 35] [ 32] [6213545000537245=491212013724445] +08:01:32 [ 37] [ 12] [507900263075] +08:01:32 [ 41] [ 8] [01001400] +08:01:32 [ 42] [ 15] [APTRA ] +08:01:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:01:32 [ 49] [ 3] [418] +08:01:32 [ 52] [ 16] [DF3E9517EEDA9050] +08:01:32 ============================================================================ +08:01:32 + + +waiting on router queue for slot.... +08:01:32 Sending to : +08:01:32 ============================================================================ +08:01:32 Sending to : +08:01:32 ============================================================================ +08:01:32 ============================================================================ +08:01:32 Slot Id : <34> +08:01:32 Transaction Type : REQUEST +08:01:32 Received From : +08:01:32 ============================================================================ +08:01:32 FNo. Len. Field Value +08:01:32 ============================================================================ +08:01:32 [ 1] [ 4] [0200] +08:01:32 [ 2] [ 16] [6213545000537245] +08:01:32 [ 3] [ 6] [010000] +08:01:32 [ 4] [ 12] [000100000000] +08:01:32 [ 7] [ 10] [0320080919] +08:01:32 [ 11] [ 6] [021106] +08:01:32 [ 12] [ 6] [080919] +08:01:32 [ 13] [ 4] [0320] +08:01:32 [ 14] [ 4] [4912] +08:01:32 [ 15] [ 4] [0320] +08:01:32 [ 18] [ 4] [6011] +08:01:32 [ 22] [ 3] [900] +08:01:32 [ 25] [ 2] [02] +08:01:32 [ 28] [ 9] [D00002000] +08:01:32 [ 32] [ 6] [220699] +08:01:32 [ 35] [ 32] [6213545000537245=491212013724445] +08:01:32 [ 37] [ 12] [507900263075] +08:01:32 [ 41] [ 8] [01001400] +08:01:32 [ 42] [ 15] [APTRA ] +08:01:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:01:32 [ 49] [ 3] [418] +08:01:32 [ 52] [ 16] [DF3E9517EEDA9050] +08:01:32 ============================================================================ +08:01:32 + + +waiting on router queue for slot.... +08:01:32 Sending to : +08:01:32 ============================================================================ +08:01:32 ============================================================================ +08:01:32 Slot Id : <34> +08:01:32 Transaction Type : REQUEST +08:01:32 Received From : +08:01:32 ============================================================================ +08:01:32 FNo. Len. Field Value +08:01:32 ============================================================================ +08:01:32 [ 1] [ 4] [0200] +08:01:32 [ 2] [ 16] [6213545000537245] +08:01:32 [ 3] [ 6] [010000] +08:01:32 [ 4] [ 12] [000100000000] +08:01:32 [ 7] [ 10] [0320080919] +08:01:32 [ 11] [ 6] [021106] +08:01:32 [ 12] [ 6] [080919] +08:01:32 [ 13] [ 4] [0320] +08:01:32 [ 14] [ 4] [4912] +08:01:32 [ 15] [ 4] [0320] +08:01:32 [ 18] [ 4] [6011] +08:01:32 [ 22] [ 3] [900] +08:01:32 [ 25] [ 2] [02] +08:01:32 [ 28] [ 9] [D00002000] +08:01:32 [ 32] [ 6] [220699] +08:01:32 [ 35] [ 32] [6213545000537245=491212013724445] +08:01:32 [ 37] [ 12] [507900263075] +08:01:32 [ 41] [ 8] [01001400] +08:01:32 [ 42] [ 15] [APTRA ] +08:01:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:01:32 [ 49] [ 3] [418] +08:01:32 [ 52] [ 16] [8C8EEDDC97ED0441] +08:01:32 ============================================================================ +08:01:32 + + +waiting on router queue for slot.... +08:01:32 Sending to : <0> +08:01:32 ============================================================================ +08:01:33 ============================================================================ +08:01:33 Slot Id : <34> +08:01:33 Transaction Type : RESPONSE +08:01:33 Received From : +08:01:33 ============================================================================ +08:01:33 FNo. Len. Field Value +08:01:33 ============================================================================ +08:01:33 [ 1] [ 4] [0210] +08:01:33 [ 2] [ 16] [6213545000537245] +08:01:33 [ 3] [ 6] [010000] +08:01:33 [ 4] [ 12] [000100000000] +08:01:33 [ 7] [ 10] [0320080919] +08:01:33 [ 11] [ 6] [021106] +08:01:33 [ 12] [ 6] [080919] +08:01:33 [ 13] [ 4] [0320] +08:01:33 [ 15] [ 4] [0320] +08:01:33 [ 18] [ 4] [6011] +08:01:33 [ 32] [ 6] [220699] +08:01:33 [ 35] [ 32] [6213545000537245=491212013724445] +08:01:33 [ 37] [ 12] [507900263075] +08:01:33 [ 38] [ 6] [035617] +08:01:33 [ 39] [ 2] [00] +08:01:33 [ 41] [ 8] [01001400] +08:01:33 [ 49] [ 3] [418] +08:01:33 [ 54] [ 40] [0001418C0000263411200002418C000026341120] +08:01:33 ============================================================================ +08:01:33 Sending to : +08:01:33 ============================================================================ +08:01:33 + + +waiting on router queue for slot.... +08:01:35 ============================================================================ +08:01:35 Slot Id : <34> +08:01:35 Transaction Type : RESPONSE +08:01:35 Received From : +08:01:35 ============================================================================ +08:01:35 FNo. Len. Field Value +08:01:35 ============================================================================ +08:01:35 [ 1] [ 4] [0210] +08:01:35 [ 2] [ 16] [6213545000537245] +08:01:35 [ 3] [ 6] [010000] +08:01:35 [ 4] [ 12] [000100000000] +08:01:35 [ 7] [ 10] [0320080919] +08:01:35 [ 11] [ 6] [021106] +08:01:35 [ 12] [ 6] [080919] +08:01:35 [ 13] [ 4] [0320] +08:01:35 [ 15] [ 4] [0320] +08:01:35 [ 18] [ 4] [6011] +08:01:35 [ 32] [ 6] [220699] +08:01:35 [ 35] [ 32] [6213545000537245=491212013724445] +08:01:35 [ 37] [ 12] [507900263075] +08:01:35 [ 38] [ 6] [035617] +08:01:35 [ 39] [ 2] [00] +08:01:35 [ 41] [ 8] [01001400] +08:01:35 [ 49] [ 3] [418] +08:01:35 [ 54] [ 40] [0001418C0000263411200002418C000026341120] +08:01:35 ============================================================================ +08:01:35 Calculate Source COMM Id = 1 +08:01:35 ============================================================================ +08:01:35 + + +waiting on router queue for slot.... +08:01:40 ============================================================================ +08:01:40 Slot Id : <42> +08:01:40 Transaction Type : REQUEST +08:01:40 Received From : +08:01:40 ============================================================================ +08:01:40 FNo. Len. Field Value +08:01:40 ============================================================================ +08:01:40 [ 1] [ 4] [0800] +08:01:40 [ 7] [ 10] [0320010049] +08:01:40 [ 11] [ 6] [155303] +08:01:40 [ 70] [ 3] [301] +08:01:40 ============================================================================ +08:01:40 + + +waiting on router queue for slot.... +08:01:40 Sending to : +08:01:40 ============================================================================ +08:01:40 ============================================================================ +08:01:40 Slot Id : <42> +08:01:40 Transaction Type : RESPONSE +08:01:40 Received From : +08:01:40 ============================================================================ +08:01:40 FNo. Len. Field Value +08:01:40 ============================================================================ +08:01:40 [ 1] [ 4] [0810] +08:01:40 [ 7] [ 10] [0320010049] +08:01:40 [ 11] [ 6] [155303] +08:01:40 [ 39] [ 2] [00] +08:01:40 [ 70] [ 3] [301] +08:01:40 ============================================================================ +08:01:40 Calculate Source COMM Id = 2 +08:01:40 ============================================================================ +08:01:40 + + +waiting on router queue for slot.... +08:01:51 ============================================================================ +08:01:51 Slot Id : <86> +08:01:51 Transaction Type : REQUEST +08:01:51 Received From : +08:01:51 ============================================================================ +08:01:51 FNo. Len. Field Value +08:01:51 ============================================================================ +08:01:51 [ 1] [ 4] [0800] +08:01:51 [ 7] [ 10] [0320010100] +08:01:51 [ 11] [ 6] [155304] +08:01:51 [ 70] [ 3] [301] +08:01:51 ============================================================================ +08:01:51 + + +waiting on router queue for slot.... +08:01:51 Sending to : +08:01:51 ============================================================================ +08:01:51 ============================================================================ +08:01:51 Slot Id : <86> +08:01:51 Transaction Type : RESPONSE +08:01:51 Received From : +08:01:51 ============================================================================ +08:01:51 FNo. Len. Field Value +08:01:51 ============================================================================ +08:01:51 [ 1] [ 4] [0810] +08:01:51 [ 7] [ 10] [0320010100] +08:01:51 [ 11] [ 6] [155304] +08:01:51 [ 39] [ 2] [00] +08:01:51 [ 70] [ 3] [301] +08:01:51 ============================================================================ +08:01:51 Calculate Source COMM Id = 2 +08:01:51 ============================================================================ +08:01:51 + + +waiting on router queue for slot.... +08:01:54 ============================================================================ +08:01:54 Slot Id : <49> +08:01:54 Transaction Type : REQUEST +08:01:54 Received From : +08:01:54 ============================================================================ +08:01:54 FNo. Len. Field Value +08:01:54 ============================================================================ +08:01:54 [ 1] [ 4] [0200] +08:01:54 [ 2] [ 16] [1888880000079202] +08:01:54 [ 3] [ 6] [010000] +08:01:54 [ 4] [ 12] [000100000000] +08:01:54 [ 7] [ 10] [0320075946] +08:01:54 [ 11] [ 6] [931623] +08:01:54 [ 12] [ 6] [075946] +08:01:54 [ 13] [ 4] [0320] +08:01:54 [ 15] [ 4] [0320] +08:01:54 [ 18] [ 4] [6011] +08:01:54 [ 19] [ 3] [418] +08:01:54 [ 22] [ 3] [021] +08:01:54 [ 25] [ 2] [01] +08:01:54 [ 28] [ 9] [D00002000] +08:01:54 [ 32] [ 6] [668899] +08:01:54 [ 35] [ 32] [1888880000079202=000010100000863] +08:01:54 [ 37] [ 12] [507902531612] +08:01:54 [ 41] [ 8] [03020033] +08:01:54 [ 42] [ 15] [APT ] +08:01:54 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:01:54 [ 49] [ 3] [418] +08:01:54 [ 52] [ 16] [4771ACAC88A63541] +08:01:54 ============================================================================ +08:01:54 + + +waiting on router queue for slot.... +08:01:54 Sending to : +08:01:54 ============================================================================ +08:01:54 Sending to : +08:01:54 ============================================================================ +08:01:55 ============================================================================ +08:01:55 Slot Id : <49> +08:01:55 Transaction Type : REQUEST +08:01:55 Received From : +08:01:55 ============================================================================ +08:01:55 FNo. Len. Field Value +08:01:55 ============================================================================ +08:01:55 [ 1] [ 4] [0200] +08:01:55 [ 2] [ 16] [1888880000079202] +08:01:55 [ 3] [ 6] [010000] +08:01:55 [ 4] [ 12] [000100000000] +08:01:55 [ 7] [ 10] [0320075946] +08:01:55 [ 11] [ 6] [931623] +08:01:55 [ 12] [ 6] [075946] +08:01:55 [ 13] [ 4] [0320] +08:01:55 [ 15] [ 4] [0320] +08:01:55 [ 18] [ 4] [6011] +08:01:55 [ 19] [ 3] [418] +08:01:55 [ 22] [ 3] [021] +08:01:55 [ 25] [ 2] [01] +08:01:55 [ 28] [ 9] [D00002000] +08:01:55 [ 32] [ 6] [668899] +08:01:55 [ 35] [ 32] [1888880000079202=000010100000863] +08:01:55 [ 37] [ 12] [507902531612] +08:01:55 [ 41] [ 8] [03020033] +08:01:55 [ 42] [ 15] [APT ] +08:01:55 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:01:55 [ 49] [ 3] [418] +08:01:55 [ 52] [ 16] [4771ACAC88A63541] +08:01:55 ============================================================================ +08:01:55 + + +waiting on router queue for slot.... +08:01:55 Sending to : +08:01:55 ============================================================================ +08:01:55 ============================================================================ +08:01:55 Slot Id : <49> +08:01:55 Transaction Type : REQUEST +08:01:55 Received From : +08:01:55 ============================================================================ +08:01:55 FNo. Len. Field Value +08:01:55 ============================================================================ +08:01:55 [ 1] [ 4] [0200] +08:01:55 [ 2] [ 16] [1888880000079202] +08:01:55 [ 3] [ 6] [010000] +08:01:55 [ 4] [ 12] [000100000000] +08:01:55 [ 7] [ 10] [0320075946] +08:01:55 [ 11] [ 6] [931623] +08:01:55 [ 12] [ 6] [075946] +08:01:55 [ 13] [ 4] [0320] +08:01:55 [ 15] [ 4] [0320] +08:01:55 [ 18] [ 4] [6011] +08:01:55 [ 19] [ 3] [418] +08:01:55 [ 22] [ 3] [021] +08:01:55 [ 25] [ 2] [01] +08:01:55 [ 28] [ 9] [D00002000] +08:01:55 [ 32] [ 6] [668899] +08:01:55 [ 35] [ 32] [1888880000079202=000010100000863] +08:01:55 [ 37] [ 12] [507902531612] +08:01:55 [ 41] [ 8] [03020033] +08:01:55 [ 42] [ 15] [APT ] +08:01:55 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:01:55 [ 49] [ 3] [418] +08:01:55 [ 52] [ 16] [E34411B471989DCF] +08:01:55 ============================================================================ +08:01:55 + + +waiting on router queue for slot.... +08:01:55 Sending to : <5> +08:01:55 ============================================================================ +08:01:58 ============================================================================ +08:01:58 Slot Id : <49> +08:01:58 Transaction Type : RESPONSE +08:01:58 Received From : +08:01:58 ============================================================================ +08:01:58 FNo. Len. Field Value +08:01:58 ============================================================================ +08:01:58 [ 1] [ 4] [0210] +08:01:58 [ 2] [ 16] [1888880000079202] +08:01:58 [ 3] [ 6] [010000] +08:01:58 [ 4] [ 12] [000100000000] +08:01:58 [ 7] [ 10] [0320075946] +08:01:58 [ 11] [ 6] [931623] +08:01:58 [ 12] [ 6] [075946] +08:01:58 [ 13] [ 4] [0320] +08:01:58 [ 15] [ 4] [0320] +08:01:58 [ 18] [ 4] [6011] +08:01:58 [ 19] [ 3] [418] +08:01:58 [ 32] [ 6] [668899] +08:01:58 [ 37] [ 12] [507902531612] +08:01:58 [ 38] [ 6] [984532] +08:01:58 [ 39] [ 2] [00] +08:01:58 [ 41] [ 8] [03020033] +08:01:58 [ 49] [ 3] [418] +08:01:58 [ 54] [ 0] [] +08:01:58 ============================================================================ +08:01:58 Sending to : +08:01:58 ============================================================================ +08:01:58 + + +waiting on router queue for slot.... +08:01:59 ============================================================================ +08:01:59 Slot Id : <49> +08:01:59 Transaction Type : RESPONSE +08:01:59 Received From : +08:01:59 ============================================================================ +08:01:59 FNo. Len. Field Value +08:01:59 ============================================================================ +08:01:59 [ 1] [ 4] [0210] +08:01:59 [ 2] [ 16] [1888880000079202] +08:01:59 [ 3] [ 6] [010000] +08:01:59 [ 4] [ 12] [000100000000] +08:01:59 [ 7] [ 10] [0320075946] +08:01:59 [ 11] [ 6] [931623] +08:01:59 [ 12] [ 6] [075946] +08:01:59 [ 13] [ 4] [0320] +08:01:59 [ 15] [ 4] [0320] +08:01:59 [ 18] [ 4] [6011] +08:01:59 [ 19] [ 3] [418] +08:01:59 [ 32] [ 6] [668899] +08:01:59 [ 37] [ 12] [507902531612] +08:01:59 [ 38] [ 6] [984532] +08:01:59 [ 39] [ 2] [00] +08:01:59 [ 41] [ 8] [03020033] +08:01:59 [ 49] [ 3] [418] +08:01:59 [ 54] [ 0] [] +08:01:59 ============================================================================ +08:01:59 Calculate Source COMM Id = 4 +08:01:59 ============================================================================ +08:01:59 + + +waiting on router queue for slot.... +08:02:07 ============================================================================ +08:02:07 Slot Id : <88> +08:02:07 Transaction Type : REQUEST +08:02:07 Received From : +08:02:07 ============================================================================ +08:02:07 FNo. Len. Field Value +08:02:07 ============================================================================ +08:02:07 [ 1] [ 4] [0800] +08:02:07 [ 7] [ 10] [0320010115] +08:02:07 [ 11] [ 6] [155305] +08:02:07 [ 70] [ 3] [301] +08:02:07 ============================================================================ +08:02:07 + + +waiting on router queue for slot.... +08:02:07 Sending to : +08:02:07 ============================================================================ +08:02:07 ============================================================================ +08:02:07 Slot Id : <88> +08:02:07 Transaction Type : RESPONSE +08:02:07 Received From : +08:02:07 ============================================================================ +08:02:07 FNo. Len. Field Value +08:02:07 ============================================================================ +08:02:07 [ 1] [ 4] [0810] +08:02:07 [ 7] [ 10] [0320010115] +08:02:07 [ 11] [ 6] [155305] +08:02:07 [ 39] [ 2] [00] +08:02:07 [ 70] [ 3] [301] +08:02:07 ============================================================================ +08:02:07 Calculate Source COMM Id = 2 +08:02:07 ============================================================================ +08:02:07 + + +waiting on router queue for slot.... +08:02:08 ============================================================================ +08:02:08 Slot Id : <5> +08:02:08 Transaction Type : REQUEST +08:02:08 Received From : +08:02:08 ============================================================================ +08:02:08 FNo. Len. Field Value +08:02:08 ============================================================================ +08:02:08 [ 1] [ 4] [0200] +08:02:08 [ 2] [ 16] [6213541000677545] +08:02:08 [ 3] [ 6] [011000] +08:02:08 [ 4] [ 12] [000040000000] +08:02:08 [ 7] [ 10] [0320010115] +08:02:08 [ 11] [ 6] [267003] +08:02:08 [ 12] [ 6] [080115] +08:02:08 [ 13] [ 4] [0320] +08:02:08 [ 14] [ 4] [4912] +08:02:08 [ 15] [ 4] [0320] +08:02:08 [ 18] [ 4] [6011] +08:02:08 [ 19] [ 3] [418] +08:02:08 [ 22] [ 3] [021] +08:02:08 [ 25] [ 2] [01] +08:02:08 [ 28] [ 9] [D00002000] +08:02:08 [ 32] [ 6] [180893] +08:02:08 [ 35] [ 32] [6213541000677545=491212017754088] +08:02:08 [ 37] [ 12] [507901267003] +08:02:08 [ 41] [ 8] [0441VT52] +08:02:08 [ 42] [ 15] [999999 ] +08:02:08 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +08:02:08 [ 49] [ 3] [418] +08:02:08 [ 52] [ 16] [FC8A2A418327FD4D] +08:02:08 ============================================================================ +08:02:08 + + +waiting on router queue for slot.... +08:02:08 Sending to : +08:02:08 ============================================================================ +08:02:08 Sending to : +08:02:08 ============================================================================ +08:02:08 ============================================================================ +08:02:08 Slot Id : <89> +08:02:08 Transaction Type : REQUEST +08:02:08 Received From : +08:02:08 ============================================================================ +08:02:08 FNo. Len. Field Value +08:02:08 ============================================================================ +08:02:08 [ 1] [ 4] [0800] +08:02:08 [ 2] [ 5] [02531] +08:02:08 [ 3] [ 6] [579088] +08:02:08 [ 7] [ 10] [0320010208] +08:02:08 [ 11] [ 6] [806878] +08:02:08 [ 15] [ 10] [0320010208] +08:02:08 [ 37] [ 11] [57908806878] +08:02:08 [ 70] [ 3] [001] +08:02:08 ============================================================================ +08:02:08 + + +waiting on router queue for slot.... +08:02:08 ============================================================================ +08:02:08 Slot Id : <5> +08:02:08 Transaction Type : REQUEST +08:02:08 Received From : +08:02:08 ============================================================================ +08:02:08 FNo. Len. Field Value +08:02:08 ============================================================================ +08:02:08 [ 1] [ 4] [0200] +08:02:08 [ 2] [ 16] [6213541000677545] +08:02:08 [ 3] [ 6] [011000] +08:02:08 [ 4] [ 12] [000040000000] +08:02:08 [ 7] [ 10] [0320010115] +08:02:08 [ 11] [ 6] [267003] +08:02:08 [ 12] [ 6] [080115] +08:02:08 [ 13] [ 4] [0320] +08:02:08 [ 14] [ 4] [4912] +08:02:08 [ 15] [ 4] [0320] +08:02:08 [ 18] [ 4] [6011] +08:02:08 [ 19] [ 3] [418] +08:02:08 [ 22] [ 3] [021] +08:02:08 [ 25] [ 2] [01] +08:02:08 [ 28] [ 9] [D00002000] +08:02:08 [ 32] [ 6] [180893] +08:02:08 [ 35] [ 32] [6213541000677545=491212017754088] +08:02:08 [ 37] [ 12] [507901267003] +08:02:08 [ 41] [ 8] [0441VT52] +08:02:08 [ 42] [ 15] [999999 ] +08:02:08 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +08:02:08 [ 49] [ 3] [418] +08:02:08 [ 52] [ 16] [FC8A2A418327FD4D] +08:02:08 ============================================================================ +08:02:08 + + +waiting on router queue for slot.... +08:02:08 Sending to : +08:02:08 ============================================================================ +08:02:08 ============================================================================ +08:02:08 Slot Id : <89> +08:02:08 Transaction Type : RESPONSE +08:02:08 Received From : +08:02:08 ============================================================================ +08:02:08 FNo. Len. Field Value +08:02:08 ============================================================================ +08:02:08 [ 1] [ 4] [0810] +08:02:08 [ 7] [ 10] [0320010208] +08:02:08 [ 11] [ 6] [806878] +08:02:08 [ 15] [ 4] [0320] +08:02:08 [ 37] [ 12] [57908806878] +08:02:08 [ 39] [ 2] [00] +08:02:08 [ 70] [ 3] [001] +08:02:08 ============================================================================ +08:02:08 Sending to : +08:02:08 ============================================================================ +08:02:08 + + +waiting on router queue for slot.... +08:02:08 ============================================================================ +08:02:08 Slot Id : <5> +08:02:08 Transaction Type : REQUEST +08:02:08 Received From : +08:02:08 ============================================================================ +08:02:08 FNo. Len. Field Value +08:02:08 ============================================================================ +08:02:08 [ 1] [ 4] [0200] +08:02:08 [ 2] [ 16] [6213541000677545] +08:02:08 [ 3] [ 6] [011000] +08:02:08 [ 4] [ 12] [000040000000] +08:02:08 [ 7] [ 10] [0320010115] +08:02:08 [ 11] [ 6] [267003] +08:02:08 [ 12] [ 6] [080115] +08:02:08 [ 13] [ 4] [0320] +08:02:08 [ 14] [ 4] [4912] +08:02:08 [ 15] [ 4] [0320] +08:02:08 [ 18] [ 4] [6011] +08:02:08 [ 19] [ 3] [418] +08:02:08 [ 22] [ 3] [021] +08:02:08 [ 25] [ 2] [01] +08:02:08 [ 28] [ 9] [D00002000] +08:02:08 [ 32] [ 6] [180893] +08:02:08 [ 35] [ 32] [6213541000677545=491212017754088] +08:02:08 [ 37] [ 12] [507901267003] +08:02:08 [ 41] [ 8] [0441VT52] +08:02:08 [ 42] [ 15] [999999 ] +08:02:08 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +08:02:08 [ 49] [ 3] [418] +08:02:08 [ 52] [ 16] [6BCB58A08BBD61FE] +08:02:08 ============================================================================ +08:02:08 + + +waiting on router queue for slot.... +08:02:08 Sending to : <0> +08:02:08 ============================================================================ +08:02:09 ============================================================================ +08:02:09 Slot Id : <5> +08:02:09 Transaction Type : RESPONSE +08:02:09 Received From : +08:02:09 ============================================================================ +08:02:09 FNo. Len. Field Value +08:02:09 ============================================================================ +08:02:09 [ 1] [ 4] [0210] +08:02:09 [ 2] [ 16] [6213541000677545] +08:02:09 [ 3] [ 6] [011000] +08:02:09 [ 4] [ 12] [000040000000] +08:02:09 [ 7] [ 10] [0320010115] +08:02:09 [ 11] [ 6] [267003] +08:02:09 [ 12] [ 6] [080115] +08:02:09 [ 13] [ 4] [0320] +08:02:09 [ 15] [ 4] [0320] +08:02:09 [ 18] [ 4] [6011] +08:02:09 [ 19] [ 3] [418] +08:02:09 [ 32] [ 6] [180893] +08:02:09 [ 35] [ 32] [6213541000677545=491212017754088] +08:02:09 [ 37] [ 12] [507901267003] +08:02:09 [ 38] [ 6] [026858] +08:02:09 [ 39] [ 2] [00] +08:02:09 [ 41] [ 8] [0441VT52] +08:02:09 [ 49] [ 3] [418] +08:02:09 [ 54] [ 40] [1001418C0000424110961002418C000042411096] +08:02:09 ============================================================================ +08:02:09 Sending to : +08:02:09 ============================================================================ +08:02:09 + + +waiting on router queue for slot.... +08:02:10 ============================================================================ +08:02:10 Slot Id : <5> +08:02:10 Transaction Type : RESPONSE +08:02:10 Received From : +08:02:10 ============================================================================ +08:02:10 FNo. Len. Field Value +08:02:10 ============================================================================ +08:02:10 [ 1] [ 4] [0210] +08:02:10 [ 2] [ 16] [6213541000677545] +08:02:10 [ 3] [ 6] [011000] +08:02:10 [ 4] [ 12] [000040000000] +08:02:10 [ 7] [ 10] [0320010115] +08:02:10 [ 11] [ 6] [267003] +08:02:10 [ 12] [ 6] [080115] +08:02:10 [ 13] [ 4] [0320] +08:02:10 [ 15] [ 4] [0320] +08:02:10 [ 18] [ 4] [6011] +08:02:10 [ 19] [ 3] [418] +08:02:10 [ 32] [ 6] [180893] +08:02:10 [ 35] [ 32] [6213541000677545=491212017754088] +08:02:10 [ 37] [ 12] [507901267003] +08:02:10 [ 38] [ 6] [026858] +08:02:10 [ 39] [ 2] [00] +08:02:10 [ 41] [ 8] [0441VT52] +08:02:10 [ 49] [ 3] [418] +08:02:10 [ 54] [ 40] [1001418C0000424110961002418C000042411096] +08:02:10 ============================================================================ +08:02:10 Calculate Source COMM Id = 2 +08:02:10 ============================================================================ +08:02:10 + + +waiting on router queue for slot.... +08:02:10 ============================================================================ +08:02:10 Slot Id : <59> +08:02:10 Transaction Type : REQUEST +08:02:10 Received From : +08:02:10 ============================================================================ +08:02:10 FNo. Len. Field Value +08:02:10 ============================================================================ +08:02:10 [ 1] [ 4] [0800] +08:02:10 [ 7] [ 10] [0320151358] +08:02:10 [ 11] [ 6] [081358] +08:02:10 [ 37] [ 12] [57908081358] +08:02:10 [ 70] [ 3] [301] +08:02:10 ============================================================================ +08:02:10 + + +waiting on router queue for slot.... +08:02:10 Sending to : +08:02:10 ============================================================================ +08:02:10 ============================================================================ +08:02:10 Slot Id : <59> +08:02:10 Transaction Type : RESPONSE +08:02:10 Received From : +08:02:10 ============================================================================ +08:02:10 FNo. Len. Field Value +08:02:10 ============================================================================ +08:02:10 [ 1] [ 4] [0810] +08:02:10 [ 7] [ 10] [0320151358] +08:02:10 [ 11] [ 6] [081358] +08:02:10 [ 37] [ 12] [579080813580] +08:02:10 [ 39] [ 2] [00] +08:02:10 [ 70] [ 3] [810] +08:02:10 ============================================================================ +08:02:10 Calculate Source COMM Id = 6 +08:02:10 ============================================================================ +08:02:10 + + +waiting on router queue for slot.... +08:02:23 ============================================================================ +08:02:23 Slot Id : <79> +08:02:23 Transaction Type : REQUEST +08:02:23 Received From : +08:02:23 ============================================================================ +08:02:23 FNo. Len. Field Value +08:02:23 ============================================================================ +08:02:23 [ 1] [ 4] [0800] +08:02:23 [ 7] [ 10] [0320010131] +08:02:23 [ 11] [ 6] [155306] +08:02:23 [ 70] [ 3] [301] +08:02:23 ============================================================================ +08:02:23 + + +waiting on router queue for slot.... +08:02:23 Sending to : +08:02:23 ============================================================================ +08:02:23 ============================================================================ +08:02:23 Slot Id : <79> +08:02:23 Transaction Type : RESPONSE +08:02:23 Received From : +08:02:23 ============================================================================ +08:02:23 FNo. Len. Field Value +08:02:23 ============================================================================ +08:02:23 [ 1] [ 4] [0810] +08:02:23 [ 7] [ 10] [0320010131] +08:02:23 [ 11] [ 6] [155306] +08:02:23 [ 39] [ 2] [00] +08:02:23 [ 70] [ 3] [301] +08:02:23 ============================================================================ +08:02:23 Calculate Source COMM Id = 2 +08:02:23 ============================================================================ +08:02:23 + + +waiting on router queue for slot.... +08:02:35 ============================================================================ +08:02:35 Slot Id : <84> +08:02:35 Transaction Type : REQUEST +08:02:35 Received From : +08:02:35 ============================================================================ +08:02:35 FNo. Len. Field Value +08:02:35 ============================================================================ +08:02:35 [ 1] [ 4] [0800] +08:02:35 [ 7] [ 10] [0320010142] +08:02:35 [ 11] [ 6] [155307] +08:02:35 [ 70] [ 3] [301] +08:02:35 ============================================================================ +08:02:35 + + +waiting on router queue for slot.... +08:02:35 Sending to : +08:02:35 ============================================================================ +08:02:35 ============================================================================ +08:02:35 Slot Id : <84> +08:02:35 Transaction Type : RESPONSE +08:02:35 Received From : +08:02:35 ============================================================================ +08:02:35 FNo. Len. Field Value +08:02:35 ============================================================================ +08:02:35 [ 1] [ 4] [0810] +08:02:35 [ 7] [ 10] [0320010142] +08:02:35 [ 11] [ 6] [155307] +08:02:35 [ 39] [ 2] [00] +08:02:35 [ 70] [ 3] [301] +08:02:35 ============================================================================ +08:02:35 Calculate Source COMM Id = 2 +08:02:35 ============================================================================ +08:02:35 + + +waiting on router queue for slot.... +08:02:44 ============================================================================ +08:02:44 Slot Id : <62> +08:02:44 Transaction Type : REQUEST +08:02:44 Received From : +08:02:44 ============================================================================ +08:02:44 FNo. Len. Field Value +08:02:44 ============================================================================ +08:02:44 [ 1] [ 4] [0200] +08:02:44 [ 2] [ 16] [6213542000048893] +08:02:44 [ 3] [ 6] [301000] +08:02:44 [ 4] [ 12] [000000000000] +08:02:44 [ 7] [ 10] [0320080036] +08:02:44 [ 11] [ 6] [931667] +08:02:44 [ 12] [ 6] [080036] +08:02:44 [ 13] [ 4] [0320] +08:02:44 [ 15] [ 4] [0320] +08:02:44 [ 18] [ 4] [6011] +08:02:44 [ 19] [ 3] [418] +08:02:44 [ 22] [ 3] [021] +08:02:44 [ 25] [ 2] [01] +08:02:44 [ 28] [ 9] [D00000000] +08:02:44 [ 32] [ 6] [668899] +08:02:44 [ 35] [ 32] [6213542000048893=491212014889426] +08:02:44 [ 37] [ 12] [507901416555] +08:02:44 [ 41] [ 8] [03011002] +08:02:44 [ 42] [ 15] [APT ] +08:02:44 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:02:44 [ 49] [ 3] [418] +08:02:44 [ 52] [ 16] [3420877F57C6BC87] +08:02:44 ============================================================================ +08:02:44 + + +waiting on router queue for slot.... +08:02:44 Sending to : +08:02:44 ============================================================================ +08:02:44 Sending to : +08:02:44 ============================================================================ +08:02:45 ============================================================================ +08:02:45 Slot Id : <62> +08:02:45 Transaction Type : REQUEST +08:02:45 Received From : +08:02:45 ============================================================================ +08:02:45 FNo. Len. Field Value +08:02:45 ============================================================================ +08:02:45 [ 1] [ 4] [0200] +08:02:45 [ 2] [ 16] [6213542000048893] +08:02:45 [ 3] [ 6] [301000] +08:02:45 [ 4] [ 12] [000000000000] +08:02:45 [ 7] [ 10] [0320080036] +08:02:45 [ 11] [ 6] [931667] +08:02:45 [ 12] [ 6] [080036] +08:02:45 [ 13] [ 4] [0320] +08:02:45 [ 15] [ 4] [0320] +08:02:45 [ 18] [ 4] [6011] +08:02:45 [ 19] [ 3] [418] +08:02:45 [ 22] [ 3] [021] +08:02:45 [ 25] [ 2] [01] +08:02:45 [ 28] [ 9] [D00000000] +08:02:45 [ 32] [ 6] [668899] +08:02:45 [ 35] [ 32] [6213542000048893=491212014889426] +08:02:45 [ 37] [ 12] [507901416555] +08:02:45 [ 41] [ 8] [03011002] +08:02:45 [ 42] [ 15] [APT ] +08:02:45 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:02:45 [ 49] [ 3] [418] +08:02:45 [ 52] [ 16] [3420877F57C6BC87] +08:02:45 ============================================================================ +08:02:45 + + +waiting on router queue for slot.... +08:02:45 Sending to : +08:02:45 ============================================================================ +08:02:45 ============================================================================ +08:02:45 Slot Id : <62> +08:02:45 Transaction Type : REQUEST +08:02:45 Received From : +08:02:45 ============================================================================ +08:02:45 FNo. Len. Field Value +08:02:45 ============================================================================ +08:02:45 [ 1] [ 4] [0200] +08:02:45 [ 2] [ 16] [6213542000048893] +08:02:45 [ 3] [ 6] [301000] +08:02:45 [ 4] [ 12] [000000000000] +08:02:45 [ 7] [ 10] [0320080036] +08:02:45 [ 11] [ 6] [931667] +08:02:45 [ 12] [ 6] [080036] +08:02:45 [ 13] [ 4] [0320] +08:02:45 [ 15] [ 4] [0320] +08:02:45 [ 18] [ 4] [6011] +08:02:45 [ 19] [ 3] [418] +08:02:45 [ 22] [ 3] [021] +08:02:45 [ 25] [ 2] [01] +08:02:45 [ 28] [ 9] [D00000000] +08:02:45 [ 32] [ 6] [668899] +08:02:45 [ 35] [ 32] [6213542000048893=491212014889426] +08:02:45 [ 37] [ 12] [507901416555] +08:02:45 [ 41] [ 8] [03011002] +08:02:45 [ 42] [ 15] [APT ] +08:02:45 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:02:45 [ 49] [ 3] [418] +08:02:45 [ 52] [ 16] [0358DC86BB5BE190] +08:02:45 ============================================================================ +08:02:45 + + +waiting on router queue for slot.... +08:02:45 Sending to : <0> +08:02:45 ============================================================================ +08:02:45 ============================================================================ +08:02:45 Slot Id : <62> +08:02:45 Transaction Type : RESPONSE +08:02:45 Received From : +08:02:45 ============================================================================ +08:02:45 FNo. Len. Field Value +08:02:45 ============================================================================ +08:02:45 [ 1] [ 4] [0210] +08:02:45 [ 2] [ 16] [6213542000048893] +08:02:45 [ 3] [ 6] [301000] +08:02:45 [ 4] [ 12] [000000000000] +08:02:45 [ 7] [ 10] [0320080036] +08:02:45 [ 11] [ 6] [931667] +08:02:45 [ 12] [ 6] [080036] +08:02:45 [ 13] [ 4] [0320] +08:02:45 [ 15] [ 4] [0320] +08:02:45 [ 18] [ 4] [6011] +08:02:45 [ 19] [ 3] [418] +08:02:45 [ 32] [ 6] [668899] +08:02:45 [ 35] [ 32] [6213542000048893=491212014889426] +08:02:45 [ 37] [ 12] [507901416555] +08:02:45 [ 38] [ 6] [335057] +08:02:45 [ 39] [ 2] [00] +08:02:45 [ 41] [ 8] [03011002] +08:02:45 [ 49] [ 3] [418] +08:02:45 [ 54] [ 40] [1001418C0001884928811002418C000188492881] +08:02:45 ============================================================================ +08:02:45 Sending to : +08:02:45 ============================================================================ +08:02:45 + + +waiting on router queue for slot.... +08:02:46 ============================================================================ +08:02:46 Slot Id : <67> +08:02:46 Transaction Type : REQUEST +08:02:46 Received From : +08:02:46 ============================================================================ +08:02:46 FNo. Len. Field Value +08:02:46 ============================================================================ +08:02:46 [ 1] [ 4] [0800] +08:02:46 [ 7] [ 10] [0320010154] +08:02:46 [ 11] [ 6] [155308] +08:02:46 [ 70] [ 3] [301] +08:02:46 ============================================================================ +08:02:46 + + +waiting on router queue for slot.... +08:02:46 Sending to : +08:02:46 ============================================================================ +08:02:46 ============================================================================ +08:02:46 Slot Id : <67> +08:02:46 Transaction Type : RESPONSE +08:02:46 Received From : +08:02:46 ============================================================================ +08:02:46 FNo. Len. Field Value +08:02:46 ============================================================================ +08:02:46 [ 1] [ 4] [0810] +08:02:46 [ 7] [ 10] [0320010154] +08:02:46 [ 11] [ 6] [155308] +08:02:46 [ 39] [ 2] [00] +08:02:46 [ 70] [ 3] [301] +08:02:46 ============================================================================ +08:02:46 Calculate Source COMM Id = 2 +08:02:46 ============================================================================ +08:02:46 + + +waiting on router queue for slot.... +08:02:46 ============================================================================ +08:02:46 Slot Id : <99> +08:02:46 Transaction Type : REQUEST +08:02:46 Received From : +08:02:46 ============================================================================ +08:02:46 FNo. Len. Field Value +08:02:46 ============================================================================ +08:02:46 [ 1] [ 4] [0200] +08:02:46 [ 2] [ 16] [6688990100639606] +08:02:46 [ 3] [ 6] [300000] +08:02:46 [ 4] [ 12] [000000000000] +08:02:46 [ 7] [ 10] [0320080243] +08:02:46 [ 11] [ 6] [677604] +08:02:46 [ 12] [ 6] [080243] +08:02:46 [ 13] [ 4] [0320] +08:02:46 [ 15] [ 4] [0320] +08:02:46 [ 18] [ 4] [6011] +08:02:46 [ 22] [ 3] [900] +08:02:46 [ 25] [ 2] [02] +08:02:46 [ 28] [ 9] [D00000000] +08:02:46 [ 32] [ 6] [621354] +08:02:46 [ 35] [ 37] [6688990100639606=41091231960633400000] +08:02:46 [ 37] [ 12] [507903433171] +08:02:46 [ 41] [ 8] [06001600] +08:02:46 [ 42] [ 15] [NATIVE ] +08:02:46 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +08:02:46 [ 49] [ 3] [418] +08:02:46 [ 52] [ 16] [CD58FA53935A77DD] +08:02:46 ============================================================================ +08:02:46 + + +waiting on router queue for slot.... +08:02:46 Sending to : +08:02:46 ============================================================================ +08:02:46 Sending to : +08:02:46 ============================================================================ +08:02:46 ============================================================================ +08:02:46 Slot Id : <62> +08:02:46 Transaction Type : RESPONSE +08:02:46 Received From : +08:02:46 ============================================================================ +08:02:46 FNo. Len. Field Value +08:02:46 ============================================================================ +08:02:46 [ 1] [ 4] [0210] +08:02:46 [ 2] [ 16] [6213542000048893] +08:02:46 [ 3] [ 6] [301000] +08:02:46 [ 4] [ 12] [000000000000] +08:02:46 [ 7] [ 10] [0320080036] +08:02:46 [ 11] [ 6] [931667] +08:02:46 [ 12] [ 6] [080036] +08:02:46 [ 13] [ 4] [0320] +08:02:46 [ 15] [ 4] [0320] +08:02:46 [ 18] [ 4] [6011] +08:02:46 [ 19] [ 3] [418] +08:02:46 [ 32] [ 6] [668899] +08:02:46 [ 35] [ 32] [6213542000048893=491212014889426] +08:02:46 [ 37] [ 12] [507901416555] +08:02:46 [ 38] [ 6] [335057] +08:02:46 [ 39] [ 2] [00] +08:02:46 [ 41] [ 8] [03011002] +08:02:46 [ 49] [ 3] [418] +08:02:46 [ 54] [ 40] [1001418C0001884928811002418C000188492881] +08:02:46 ============================================================================ +08:02:46 Calculate Source COMM Id = 4 +08:02:46 ============================================================================ +08:02:46 + + +waiting on router queue for slot.... +08:02:47 ============================================================================ +08:02:47 Slot Id : <99> +08:02:47 Transaction Type : REQUEST +08:02:47 Received From : +08:02:47 ============================================================================ +08:02:47 FNo. Len. Field Value +08:02:47 ============================================================================ +08:02:47 [ 1] [ 4] [0200] +08:02:47 [ 2] [ 16] [6688990100639606] +08:02:47 [ 3] [ 6] [300000] +08:02:47 [ 4] [ 12] [000000000000] +08:02:47 [ 7] [ 10] [0320080243] +08:02:47 [ 11] [ 6] [677604] +08:02:47 [ 12] [ 6] [080243] +08:02:47 [ 13] [ 4] [0320] +08:02:47 [ 15] [ 4] [0320] +08:02:47 [ 18] [ 4] [6011] +08:02:47 [ 22] [ 3] [900] +08:02:47 [ 25] [ 2] [02] +08:02:47 [ 28] [ 9] [D00000000] +08:02:47 [ 32] [ 6] [621354] +08:02:47 [ 35] [ 37] [6688990100639606=41091231960633400000] +08:02:47 [ 37] [ 12] [507903433171] +08:02:47 [ 41] [ 8] [06001600] +08:02:47 [ 42] [ 15] [NATIVE ] +08:02:47 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +08:02:47 [ 49] [ 3] [418] +08:02:47 [ 52] [ 16] [CD58FA53935A77DD] +08:02:47 ============================================================================ +08:02:47 + + +waiting on router queue for slot.... +08:02:47 Sending to : +08:02:47 ============================================================================ +08:02:47 ============================================================================ +08:02:47 Slot Id : <99> +08:02:47 Transaction Type : REQUEST +08:02:47 Received From : +08:02:47 ============================================================================ +08:02:47 FNo. Len. Field Value +08:02:47 ============================================================================ +08:02:47 [ 1] [ 4] [0200] +08:02:47 [ 2] [ 16] [6688990100639606] +08:02:47 [ 3] [ 6] [300000] +08:02:47 [ 4] [ 12] [000000000000] +08:02:47 [ 7] [ 10] [0320080243] +08:02:47 [ 11] [ 6] [677604] +08:02:47 [ 12] [ 6] [080243] +08:02:47 [ 13] [ 4] [0320] +08:02:47 [ 15] [ 4] [0320] +08:02:47 [ 18] [ 4] [6011] +08:02:47 [ 22] [ 3] [900] +08:02:47 [ 25] [ 2] [02] +08:02:47 [ 28] [ 9] [D00000000] +08:02:47 [ 32] [ 6] [621354] +08:02:47 [ 35] [ 37] [6688990100639606=41091231960633400000] +08:02:47 [ 37] [ 12] [507903433171] +08:02:47 [ 41] [ 8] [06001600] +08:02:47 [ 42] [ 15] [NATIVE ] +08:02:47 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +08:02:47 [ 49] [ 3] [418] +08:02:47 [ 52] [ 16] [17332DD6763F7BF3] +08:02:47 ============================================================================ +08:02:47 + + +waiting on router queue for slot.... +08:02:47 Sending to : <4> +08:02:47 ============================================================================ +08:02:48 ============================================================================ +08:02:48 Slot Id : <99> +08:02:48 Transaction Type : RESPONSE +08:02:48 Received From : +08:02:48 ============================================================================ +08:02:48 FNo. Len. Field Value +08:02:48 ============================================================================ +08:02:48 [ 1] [ 4] [0210] +08:02:48 [ 2] [ 16] [6688990100639606] +08:02:48 [ 3] [ 6] [300000] +08:02:48 [ 4] [ 12] [000000000000] +08:02:48 [ 11] [ 6] [677604] +08:02:48 [ 12] [ 6] [080243] +08:02:48 [ 15] [ 4] [0320] +08:02:48 [ 18] [ 4] [6011] +08:02:48 [ 32] [ 6] [621354] +08:02:48 [ 35] [ 37] [6688990100639606=41091231960633400000] +08:02:48 [ 37] [ 12] [507903433171] +08:02:48 [ 38] [ 6] [527047] +08:02:48 [ 39] [ 2] [00] +08:02:48 [ 41] [ 8] [06001600] +08:02:48 [ 49] [ 3] [418] +08:02:48 [ 54] [ 20] [0002418C000003002245] +08:02:48 ============================================================================ +08:02:48 Sending to : +08:02:48 ============================================================================ +08:02:48 + + +waiting on router queue for slot.... +08:02:49 ============================================================================ +08:02:49 Slot Id : <99> +08:02:49 Transaction Type : RESPONSE +08:02:49 Received From : +08:02:49 ============================================================================ +08:02:49 FNo. Len. Field Value +08:02:49 ============================================================================ +08:02:49 [ 1] [ 4] [0210] +08:02:49 [ 2] [ 16] [6688990100639606] +08:02:49 [ 3] [ 6] [300000] +08:02:49 [ 4] [ 12] [000000000000] +08:02:49 [ 11] [ 6] [677604] +08:02:49 [ 12] [ 6] [080243] +08:02:49 [ 15] [ 4] [0320] +08:02:49 [ 18] [ 4] [6011] +08:02:49 [ 32] [ 6] [621354] +08:02:49 [ 35] [ 37] [6688990100639606=41091231960633400000] +08:02:49 [ 37] [ 12] [507903433171] +08:02:49 [ 38] [ 6] [527047] +08:02:49 [ 39] [ 2] [00] +08:02:49 [ 41] [ 8] [06001600] +08:02:49 [ 49] [ 3] [418] +08:02:49 [ 54] [ 20] [0002418C000003002245] +08:02:49 ============================================================================ +08:02:49 Calculate Source COMM Id = 0 +08:02:49 ============================================================================ +08:02:49 + + +waiting on router queue for slot.... +08:02:56 ============================================================================ +08:02:56 Slot Id : <39> +08:02:56 Transaction Type : REQUEST +08:02:56 Received From : +08:02:56 ============================================================================ +08:02:56 FNo. Len. Field Value +08:02:56 ============================================================================ +08:02:56 [ 1] [ 4] [0800] +08:02:56 [ 7] [ 10] [0320010204] +08:02:56 [ 11] [ 6] [155309] +08:02:56 [ 70] [ 3] [301] +08:02:56 ============================================================================ +08:02:56 + + +waiting on router queue for slot.... +08:02:56 Sending to : +08:02:56 ============================================================================ +08:02:56 ============================================================================ +08:02:56 Slot Id : <39> +08:02:56 Transaction Type : RESPONSE +08:02:56 Received From : +08:02:56 ============================================================================ +08:02:56 FNo. Len. Field Value +08:02:56 ============================================================================ +08:02:56 [ 1] [ 4] [0810] +08:02:56 [ 7] [ 10] [0320010204] +08:02:56 [ 11] [ 6] [155309] +08:02:56 [ 39] [ 2] [00] +08:02:56 [ 70] [ 3] [301] +08:02:56 ============================================================================ +08:02:56 Calculate Source COMM Id = 2 +08:02:56 ============================================================================ +08:02:56 + + +waiting on router queue for slot.... +08:03:06 ============================================================================ +08:03:06 Slot Id : <64> +08:03:06 Transaction Type : REQUEST +08:03:06 Received From : +08:03:06 ============================================================================ +08:03:06 FNo. Len. Field Value +08:03:06 ============================================================================ +08:03:06 [ 1] [ 4] [0200] +08:03:06 [ 2] [ 16] [6213542000048893] +08:03:06 [ 3] [ 6] [300000] +08:03:06 [ 4] [ 12] [000000000000] +08:03:06 [ 7] [ 10] [0320080058] +08:03:06 [ 11] [ 6] [931680] +08:03:06 [ 12] [ 6] [080058] +08:03:06 [ 13] [ 4] [0320] +08:03:06 [ 15] [ 4] [0320] +08:03:06 [ 18] [ 4] [6011] +08:03:06 [ 19] [ 3] [418] +08:03:06 [ 22] [ 3] [021] +08:03:06 [ 25] [ 2] [01] +08:03:06 [ 28] [ 9] [D00000000] +08:03:06 [ 32] [ 6] [668899] +08:03:06 [ 35] [ 32] [6213542000048893=491212014889426] +08:03:06 [ 37] [ 12] [507901416556] +08:03:06 [ 41] [ 8] [03011002] +08:03:06 [ 42] [ 15] [APT ] +08:03:06 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:03:06 [ 49] [ 3] [418] +08:03:06 [ 52] [ 16] [3420877F57C6BC87] +08:03:06 ============================================================================ +08:03:06 + + +waiting on router queue for slot.... +08:03:06 Sending to : +08:03:06 ============================================================================ +08:03:06 Sending to : +08:03:06 ============================================================================ +08:03:07 ============================================================================ +08:03:07 Slot Id : <64> +08:03:07 Transaction Type : REQUEST +08:03:07 Received From : +08:03:07 ============================================================================ +08:03:07 FNo. Len. Field Value +08:03:07 ============================================================================ +08:03:07 [ 1] [ 4] [0200] +08:03:07 [ 2] [ 16] [6213542000048893] +08:03:07 [ 3] [ 6] [300000] +08:03:07 [ 4] [ 12] [000000000000] +08:03:07 [ 7] [ 10] [0320080058] +08:03:07 [ 11] [ 6] [931680] +08:03:07 [ 12] [ 6] [080058] +08:03:07 [ 13] [ 4] [0320] +08:03:07 [ 15] [ 4] [0320] +08:03:07 [ 18] [ 4] [6011] +08:03:07 [ 19] [ 3] [418] +08:03:07 [ 22] [ 3] [021] +08:03:07 [ 25] [ 2] [01] +08:03:07 [ 28] [ 9] [D00000000] +08:03:07 [ 32] [ 6] [668899] +08:03:07 [ 35] [ 32] [6213542000048893=491212014889426] +08:03:07 [ 37] [ 12] [507901416556] +08:03:07 [ 41] [ 8] [03011002] +08:03:07 [ 42] [ 15] [APT ] +08:03:07 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:03:07 [ 49] [ 3] [418] +08:03:07 [ 52] [ 16] [3420877F57C6BC87] +08:03:07 ============================================================================ +08:03:07 + + +waiting on router queue for slot.... +08:03:07 Sending to : +08:03:07 ============================================================================ +08:03:07 ============================================================================ +08:03:07 Slot Id : <64> +08:03:07 Transaction Type : REQUEST +08:03:07 Received From : +08:03:07 ============================================================================ +08:03:07 FNo. Len. Field Value +08:03:07 ============================================================================ +08:03:07 [ 1] [ 4] [0200] +08:03:07 [ 2] [ 16] [6213542000048893] +08:03:07 [ 3] [ 6] [300000] +08:03:07 [ 4] [ 12] [000000000000] +08:03:07 [ 7] [ 10] [0320080058] +08:03:07 [ 11] [ 6] [931680] +08:03:07 [ 12] [ 6] [080058] +08:03:07 [ 13] [ 4] [0320] +08:03:07 [ 15] [ 4] [0320] +08:03:07 [ 18] [ 4] [6011] +08:03:07 [ 19] [ 3] [418] +08:03:07 [ 22] [ 3] [021] +08:03:07 [ 25] [ 2] [01] +08:03:07 [ 28] [ 9] [D00000000] +08:03:07 [ 32] [ 6] [668899] +08:03:07 [ 35] [ 32] [6213542000048893=491212014889426] +08:03:07 [ 37] [ 12] [507901416556] +08:03:07 [ 41] [ 8] [03011002] +08:03:07 [ 42] [ 15] [APT ] +08:03:07 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:03:07 [ 49] [ 3] [418] +08:03:07 [ 52] [ 16] [0358DC86BB5BE190] +08:03:07 ============================================================================ +08:03:07 + + +waiting on router queue for slot.... +08:03:07 Sending to : <0> +08:03:07 ============================================================================ +08:03:07 ============================================================================ +08:03:07 Slot Id : <64> +08:03:07 Transaction Type : RESPONSE +08:03:07 Received From : +08:03:07 ============================================================================ +08:03:07 FNo. Len. Field Value +08:03:07 ============================================================================ +08:03:07 [ 1] [ 4] [0210] +08:03:07 [ 2] [ 16] [6213542000048893] +08:03:07 [ 3] [ 6] [300000] +08:03:07 [ 4] [ 12] [000000000000] +08:03:07 [ 7] [ 10] [0320080058] +08:03:07 [ 11] [ 6] [931680] +08:03:07 [ 12] [ 6] [080058] +08:03:07 [ 13] [ 4] [0320] +08:03:07 [ 15] [ 4] [0320] +08:03:07 [ 18] [ 4] [6011] +08:03:07 [ 19] [ 3] [418] +08:03:07 [ 32] [ 6] [668899] +08:03:07 [ 35] [ 32] [6213542000048893=491212014889426] +08:03:07 [ 37] [ 12] [507901416556] +08:03:07 [ 38] [ 6] [586590] +08:03:07 [ 39] [ 2] [00] +08:03:07 [ 41] [ 8] [03011002] +08:03:07 [ 49] [ 3] [418] +08:03:07 [ 54] [ 40] [0001418C0001884928810002418C000188492881] +08:03:07 ============================================================================ +08:03:07 Sending to : +08:03:07 ============================================================================ +08:03:07 + + +waiting on router queue for slot.... +08:03:09 ============================================================================ +08:03:09 Slot Id : <64> +08:03:09 Transaction Type : RESPONSE +08:03:09 Received From : +08:03:09 ============================================================================ +08:03:09 FNo. Len. Field Value +08:03:09 ============================================================================ +08:03:09 [ 1] [ 4] [0210] +08:03:09 [ 2] [ 16] [6213542000048893] +08:03:09 [ 3] [ 6] [300000] +08:03:09 [ 4] [ 12] [000000000000] +08:03:09 [ 7] [ 10] [0320080058] +08:03:09 [ 11] [ 6] [931680] +08:03:09 [ 12] [ 6] [080058] +08:03:09 [ 13] [ 4] [0320] +08:03:09 [ 15] [ 4] [0320] +08:03:09 [ 18] [ 4] [6011] +08:03:09 [ 19] [ 3] [418] +08:03:09 [ 32] [ 6] [668899] +08:03:09 [ 35] [ 32] [6213542000048893=491212014889426] +08:03:09 [ 37] [ 12] [507901416556] +08:03:09 [ 38] [ 6] [586590] +08:03:09 [ 39] [ 2] [00] +08:03:09 [ 41] [ 8] [03011002] +08:03:09 [ 49] [ 3] [418] +08:03:09 [ 54] [ 40] [0001418C0001884928810002418C000188492881] +08:03:09 ============================================================================ +08:03:09 Calculate Source COMM Id = 4 +08:03:09 ============================================================================ +08:03:09 + + +waiting on router queue for slot.... +08:03:10 ============================================================================ +08:03:10 Slot Id : <51> +08:03:10 Transaction Type : REQUEST +08:03:10 Received From : +08:03:10 ============================================================================ +08:03:10 FNo. Len. Field Value +08:03:10 ============================================================================ +08:03:10 [ 1] [ 4] [0800] +08:03:10 [ 2] [ 5] [02531] +08:03:10 [ 3] [ 6] [579088] +08:03:10 [ 7] [ 10] [0320010310] +08:03:10 [ 11] [ 6] [806879] +08:03:10 [ 15] [ 10] [0320010310] +08:03:10 [ 37] [ 11] [57908806879] +08:03:10 [ 70] [ 3] [001] +08:03:10 ============================================================================ +08:03:10 + + +waiting on router queue for slot.... +08:03:10 ============================================================================ +08:03:10 Slot Id : <51> +08:03:10 Transaction Type : RESPONSE +08:03:10 Received From : +08:03:10 ============================================================================ +08:03:10 FNo. Len. Field Value +08:03:10 ============================================================================ +08:03:10 [ 1] [ 4] [0810] +08:03:10 [ 7] [ 10] [0320010310] +08:03:10 [ 11] [ 6] [806879] +08:03:10 [ 15] [ 4] [0320] +08:03:10 [ 37] [ 12] [57908806879] +08:03:10 [ 39] [ 2] [00] +08:03:10 [ 70] [ 3] [001] +08:03:10 ============================================================================ +08:03:10 Sending to : +08:03:10 ============================================================================ +08:03:10 + + +waiting on router queue for slot.... +08:03:13 ============================================================================ +08:03:13 Slot Id : <82> +08:03:13 Transaction Type : REQUEST +08:03:13 Received From : +08:03:13 ============================================================================ +08:03:13 FNo. Len. Field Value +08:03:13 ============================================================================ +08:03:13 [ 1] [ 4] [0800] +08:03:13 [ 7] [ 10] [0320010220] +08:03:13 [ 11] [ 6] [155310] +08:03:13 [ 70] [ 3] [301] +08:03:13 ============================================================================ +08:03:13 + + +waiting on router queue for slot.... +08:03:13 Sending to : +08:03:13 ============================================================================ +08:03:13 ============================================================================ +08:03:13 Slot Id : <82> +08:03:13 Transaction Type : RESPONSE +08:03:13 Received From : +08:03:13 ============================================================================ +08:03:13 FNo. Len. Field Value +08:03:13 ============================================================================ +08:03:13 [ 1] [ 4] [0810] +08:03:13 [ 7] [ 10] [0320010220] +08:03:13 [ 11] [ 6] [155310] +08:03:13 [ 39] [ 2] [00] +08:03:13 [ 70] [ 3] [301] +08:03:13 ============================================================================ +08:03:13 Calculate Source COMM Id = 2 +08:03:13 ============================================================================ +08:03:13 + + +waiting on router queue for slot.... +08:03:15 ============================================================================ +08:03:15 Slot Id : <93> +08:03:15 Transaction Type : REQUEST +08:03:15 Received From : +08:03:15 ============================================================================ +08:03:15 FNo. Len. Field Value +08:03:15 ============================================================================ +08:03:15 [ 1] [ 4] [0800] +08:03:15 [ 7] [ 10] [0320151503] +08:03:15 [ 11] [ 6] [081503] +08:03:15 [ 37] [ 12] [57908081503] +08:03:15 [ 70] [ 3] [301] +08:03:15 ============================================================================ +08:03:15 + + +waiting on router queue for slot.... +08:03:15 Sending to : +08:03:15 ============================================================================ +08:03:15 ============================================================================ +08:03:15 Slot Id : <93> +08:03:15 Transaction Type : RESPONSE +08:03:15 Received From : +08:03:15 ============================================================================ +08:03:15 FNo. Len. Field Value +08:03:15 ============================================================================ +08:03:15 [ 1] [ 4] [0810] +08:03:15 [ 7] [ 10] [0320151503] +08:03:15 [ 11] [ 6] [081503] +08:03:15 [ 37] [ 12] [579080815030] +08:03:15 [ 39] [ 2] [00] +08:03:15 [ 70] [ 3] [810] +08:03:15 ============================================================================ +08:03:15 Calculate Source COMM Id = 6 +08:03:15 ============================================================================ +08:03:15 + + +waiting on router queue for slot.... +08:03:22 ============================================================================ +08:03:22 Slot Id : <56> +08:03:22 Transaction Type : REQUEST +08:03:22 Received From : +08:03:22 ============================================================================ +08:03:22 FNo. Len. Field Value +08:03:22 ============================================================================ +08:03:22 [ 1] [ 4] [0200] +08:03:22 [ 2] [ 16] [6213548000248698] +08:03:22 [ 3] [ 6] [010000] +08:03:22 [ 4] [ 12] [000050000000] +08:03:22 [ 7] [ 10] [0320080114] +08:03:22 [ 11] [ 6] [931694] +08:03:22 [ 12] [ 6] [080114] +08:03:22 [ 13] [ 4] [0320] +08:03:22 [ 15] [ 4] [0320] +08:03:22 [ 18] [ 4] [6011] +08:03:22 [ 19] [ 3] [418] +08:03:22 [ 22] [ 3] [021] +08:03:22 [ 25] [ 2] [01] +08:03:22 [ 28] [ 9] [D00002000] +08:03:22 [ 32] [ 6] [668899] +08:03:22 [ 35] [ 32] [6213548000248698=180112014869026] +08:03:22 [ 37] [ 12] [507901343755] +08:03:22 [ 41] [ 8] [03307001] +08:03:22 [ 42] [ 15] [APT ] +08:03:22 [ 43] [ 40] [ KHENTHAO UNIT XAYYABOURYK] +08:03:22 [ 49] [ 3] [418] +08:03:22 [ 52] [ 16] [BC08A7324519FDF0] +08:03:22 ============================================================================ +08:03:22 + + +waiting on router queue for slot.... +08:03:22 Sending to : +08:03:22 ============================================================================ +08:03:22 Sending to : +08:03:22 ============================================================================ +08:03:22 ============================================================================ +08:03:22 Slot Id : <56> +08:03:22 Transaction Type : REQUEST +08:03:22 Received From : +08:03:22 ============================================================================ +08:03:22 FNo. Len. Field Value +08:03:22 ============================================================================ +08:03:22 [ 1] [ 4] [0200] +08:03:22 [ 2] [ 16] [6213548000248698] +08:03:22 [ 3] [ 6] [010000] +08:03:22 [ 4] [ 12] [000050000000] +08:03:22 [ 7] [ 10] [0320080114] +08:03:22 [ 11] [ 6] [931694] +08:03:22 [ 12] [ 6] [080114] +08:03:22 [ 13] [ 4] [0320] +08:03:22 [ 15] [ 4] [0320] +08:03:22 [ 18] [ 4] [6011] +08:03:22 [ 19] [ 3] [418] +08:03:22 [ 22] [ 3] [021] +08:03:22 [ 25] [ 2] [01] +08:03:22 [ 28] [ 9] [D00002000] +08:03:22 [ 32] [ 6] [668899] +08:03:22 [ 35] [ 32] [6213548000248698=180112014869026] +08:03:22 [ 37] [ 12] [507901343755] +08:03:22 [ 41] [ 8] [03307001] +08:03:22 [ 42] [ 15] [APT ] +08:03:22 [ 43] [ 40] [ KHENTHAO UNIT XAYYABOURYK] +08:03:22 [ 49] [ 3] [418] +08:03:22 [ 52] [ 16] [BC08A7324519FDF0] +08:03:22 ============================================================================ +08:03:22 + + +waiting on router queue for slot.... +08:03:22 Sending to : +08:03:22 ============================================================================ +08:03:22 ============================================================================ +08:03:22 Slot Id : <56> +08:03:22 Transaction Type : REQUEST +08:03:22 Received From : +08:03:22 ============================================================================ +08:03:22 FNo. Len. Field Value +08:03:22 ============================================================================ +08:03:22 [ 1] [ 4] [0200] +08:03:22 [ 2] [ 16] [6213548000248698] +08:03:22 [ 3] [ 6] [010000] +08:03:22 [ 4] [ 12] [000050000000] +08:03:22 [ 7] [ 10] [0320080114] +08:03:22 [ 11] [ 6] [931694] +08:03:22 [ 12] [ 6] [080114] +08:03:22 [ 13] [ 4] [0320] +08:03:22 [ 15] [ 4] [0320] +08:03:22 [ 18] [ 4] [6011] +08:03:22 [ 19] [ 3] [418] +08:03:22 [ 22] [ 3] [021] +08:03:22 [ 25] [ 2] [01] +08:03:22 [ 28] [ 9] [D00002000] +08:03:22 [ 32] [ 6] [668899] +08:03:22 [ 35] [ 32] [6213548000248698=180112014869026] +08:03:22 [ 37] [ 12] [507901343755] +08:03:22 [ 41] [ 8] [03307001] +08:03:22 [ 42] [ 15] [APT ] +08:03:22 [ 43] [ 40] [ KHENTHAO UNIT XAYYABOURYK] +08:03:22 [ 49] [ 3] [418] +08:03:22 [ 52] [ 16] [B1DD9154F53463FC] +08:03:22 ============================================================================ +08:03:22 + + +waiting on router queue for slot.... +08:03:22 Sending to : <0> +08:03:22 ============================================================================ +08:03:23 ============================================================================ +08:03:23 Slot Id : <56> +08:03:23 Transaction Type : RESPONSE +08:03:23 Received From : +08:03:23 ============================================================================ +08:03:23 FNo. Len. Field Value +08:03:23 ============================================================================ +08:03:23 [ 1] [ 4] [0210] +08:03:23 [ 2] [ 16] [6213548000248698] +08:03:23 [ 3] [ 6] [010000] +08:03:23 [ 4] [ 12] [000050000000] +08:03:23 [ 7] [ 10] [0320080114] +08:03:23 [ 11] [ 6] [931694] +08:03:23 [ 12] [ 6] [080114] +08:03:23 [ 13] [ 4] [0320] +08:03:23 [ 15] [ 4] [0320] +08:03:23 [ 18] [ 4] [6011] +08:03:23 [ 19] [ 3] [418] +08:03:23 [ 32] [ 6] [668899] +08:03:23 [ 35] [ 32] [6213548000248698=180112014869026] +08:03:23 [ 37] [ 12] [507901343755] +08:03:23 [ 38] [ 6] [931694] +08:03:23 [ 39] [ 2] [51] +08:03:23 [ 41] [ 8] [03307001] +08:03:23 [ 49] [ 3] [418] +08:03:23 [ 54] [ 40] [0001418C0000051988680002418C000005198868] +08:03:23 ============================================================================ +08:03:23 Sending to : +08:03:23 ============================================================================ +08:03:23 + + +waiting on router queue for slot.... +08:03:24 ============================================================================ +08:03:24 Slot Id : <56> +08:03:24 Transaction Type : RESPONSE +08:03:24 Received From : +08:03:24 ============================================================================ +08:03:24 FNo. Len. Field Value +08:03:24 ============================================================================ +08:03:24 [ 1] [ 4] [0210] +08:03:24 [ 2] [ 16] [6213548000248698] +08:03:24 [ 3] [ 6] [010000] +08:03:24 [ 4] [ 12] [000050000000] +08:03:24 [ 7] [ 10] [0320080114] +08:03:24 [ 11] [ 6] [931694] +08:03:24 [ 12] [ 6] [080114] +08:03:24 [ 13] [ 4] [0320] +08:03:24 [ 15] [ 4] [0320] +08:03:24 [ 18] [ 4] [6011] +08:03:24 [ 19] [ 3] [418] +08:03:24 [ 32] [ 6] [668899] +08:03:24 [ 35] [ 32] [6213548000248698=180112014869026] +08:03:24 [ 37] [ 12] [507901343755] +08:03:24 [ 38] [ 6] [931694] +08:03:24 [ 39] [ 2] [51] +08:03:24 [ 41] [ 8] [03307001] +08:03:24 [ 49] [ 3] [418] +08:03:24 [ 54] [ 40] [0001418C0000051988680002418C000005198868] +08:03:24 ============================================================================ +08:03:24 Calculate Source COMM Id = 4 +08:03:24 ============================================================================ +08:03:24 + + +waiting on router queue for slot.... +08:03:27 ============================================================================ +08:03:27 Slot Id : <100> +08:03:27 Transaction Type : REQUEST +08:03:27 Received From : +08:03:27 ============================================================================ +08:03:27 FNo. Len. Field Value +08:03:27 ============================================================================ +08:03:27 [ 1] [ 4] [0800] +08:03:27 [ 7] [ 10] [0320010235] +08:03:27 [ 11] [ 6] [155311] +08:03:27 [ 70] [ 3] [301] +08:03:27 ============================================================================ +08:03:27 + + +waiting on router queue for slot.... +08:03:27 Sending to : +08:03:27 ============================================================================ +08:03:27 ============================================================================ +08:03:27 Slot Id : <100> +08:03:27 Transaction Type : RESPONSE +08:03:27 Received From : +08:03:27 ============================================================================ +08:03:27 FNo. Len. Field Value +08:03:27 ============================================================================ +08:03:27 [ 1] [ 4] [0810] +08:03:27 [ 7] [ 10] [0320010235] +08:03:27 [ 11] [ 6] [155311] +08:03:27 [ 39] [ 2] [00] +08:03:27 [ 70] [ 3] [301] +08:03:27 ============================================================================ +08:03:27 Calculate Source COMM Id = 2 +08:03:27 ============================================================================ +08:03:27 + + +waiting on router queue for slot.... +08:03:29 ============================================================================ +08:03:29 Slot Id : <91> +08:03:29 Transaction Type : REQUEST +08:03:29 Received From : +08:03:29 ============================================================================ +08:03:29 FNo. Len. Field Value +08:03:29 ============================================================================ +08:03:29 [ 1] [ 4] [0200] +08:03:29 [ 2] [ 16] [6213542000048893] +08:03:29 [ 3] [ 6] [010000] +08:03:29 [ 4] [ 12] [000100000000] +08:03:29 [ 7] [ 10] [0320080121] +08:03:29 [ 11] [ 6] [931699] +08:03:29 [ 12] [ 6] [080121] +08:03:29 [ 13] [ 4] [0320] +08:03:29 [ 15] [ 4] [0320] +08:03:29 [ 18] [ 4] [6011] +08:03:29 [ 19] [ 3] [418] +08:03:29 [ 22] [ 3] [021] +08:03:29 [ 25] [ 2] [01] +08:03:29 [ 28] [ 9] [D00002000] +08:03:29 [ 32] [ 6] [668899] +08:03:29 [ 35] [ 32] [6213542000048893=491212014889426] +08:03:29 [ 37] [ 12] [507901416557] +08:03:29 [ 41] [ 8] [03011002] +08:03:29 [ 42] [ 15] [APT ] +08:03:29 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:03:29 [ 49] [ 3] [418] +08:03:29 [ 52] [ 16] [3420877F57C6BC87] +08:03:29 ============================================================================ +08:03:29 + + +waiting on router queue for slot.... +08:03:29 Sending to : +08:03:29 ============================================================================ +08:03:29 Sending to : +08:03:29 ============================================================================ +08:03:29 ============================================================================ +08:03:29 Slot Id : <91> +08:03:29 Transaction Type : REQUEST +08:03:29 Received From : +08:03:29 ============================================================================ +08:03:29 FNo. Len. Field Value +08:03:29 ============================================================================ +08:03:29 [ 1] [ 4] [0200] +08:03:29 [ 2] [ 16] [6213542000048893] +08:03:29 [ 3] [ 6] [010000] +08:03:29 [ 4] [ 12] [000100000000] +08:03:29 [ 7] [ 10] [0320080121] +08:03:29 [ 11] [ 6] [931699] +08:03:29 [ 12] [ 6] [080121] +08:03:29 [ 13] [ 4] [0320] +08:03:29 [ 15] [ 4] [0320] +08:03:29 [ 18] [ 4] [6011] +08:03:29 [ 19] [ 3] [418] +08:03:29 [ 22] [ 3] [021] +08:03:29 [ 25] [ 2] [01] +08:03:29 [ 28] [ 9] [D00002000] +08:03:29 [ 32] [ 6] [668899] +08:03:29 [ 35] [ 32] [6213542000048893=491212014889426] +08:03:29 [ 37] [ 12] [507901416557] +08:03:29 [ 41] [ 8] [03011002] +08:03:29 [ 42] [ 15] [APT ] +08:03:29 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:03:29 [ 49] [ 3] [418] +08:03:29 [ 52] [ 16] [3420877F57C6BC87] +08:03:29 ============================================================================ +08:03:29 + + +waiting on router queue for slot.... +08:03:29 Sending to : +08:03:29 ============================================================================ +08:03:30 ============================================================================ +08:03:30 Slot Id : <91> +08:03:30 Transaction Type : REQUEST +08:03:30 Received From : +08:03:30 ============================================================================ +08:03:30 FNo. Len. Field Value +08:03:30 ============================================================================ +08:03:30 [ 1] [ 4] [0200] +08:03:30 [ 2] [ 16] [6213542000048893] +08:03:30 [ 3] [ 6] [010000] +08:03:30 [ 4] [ 12] [000100000000] +08:03:30 [ 7] [ 10] [0320080121] +08:03:30 [ 11] [ 6] [931699] +08:03:30 [ 12] [ 6] [080121] +08:03:30 [ 13] [ 4] [0320] +08:03:30 [ 15] [ 4] [0320] +08:03:30 [ 18] [ 4] [6011] +08:03:30 [ 19] [ 3] [418] +08:03:30 [ 22] [ 3] [021] +08:03:30 [ 25] [ 2] [01] +08:03:30 [ 28] [ 9] [D00002000] +08:03:30 [ 32] [ 6] [668899] +08:03:30 [ 35] [ 32] [6213542000048893=491212014889426] +08:03:30 [ 37] [ 12] [507901416557] +08:03:30 [ 41] [ 8] [03011002] +08:03:30 [ 42] [ 15] [APT ] +08:03:30 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:03:30 [ 49] [ 3] [418] +08:03:30 [ 52] [ 16] [0358DC86BB5BE190] +08:03:30 ============================================================================ +08:03:30 + + +waiting on router queue for slot.... +08:03:30 Sending to : <0> +08:03:30 ============================================================================ +08:03:30 ============================================================================ +08:03:30 Slot Id : <91> +08:03:30 Transaction Type : RESPONSE +08:03:30 Received From : +08:03:30 ============================================================================ +08:03:30 FNo. Len. Field Value +08:03:30 ============================================================================ +08:03:30 [ 1] [ 4] [0210] +08:03:30 [ 2] [ 16] [6213542000048893] +08:03:30 [ 3] [ 6] [010000] +08:03:30 [ 4] [ 12] [000100000000] +08:03:30 [ 7] [ 10] [0320080121] +08:03:30 [ 11] [ 6] [931699] +08:03:30 [ 12] [ 6] [080121] +08:03:30 [ 13] [ 4] [0320] +08:03:30 [ 15] [ 4] [0320] +08:03:30 [ 18] [ 4] [6011] +08:03:30 [ 19] [ 3] [418] +08:03:30 [ 32] [ 6] [668899] +08:03:30 [ 35] [ 32] [6213542000048893=491212014889426] +08:03:30 [ 37] [ 12] [507901416557] +08:03:30 [ 38] [ 6] [283489] +08:03:30 [ 39] [ 2] [00] +08:03:30 [ 41] [ 8] [03011002] +08:03:30 [ 49] [ 3] [418] +08:03:30 [ 54] [ 40] [0001418C0000882928810002418C000088292881] +08:03:30 ============================================================================ +08:03:30 Sending to : +08:03:30 ============================================================================ +08:03:30 + + +waiting on router queue for slot.... +08:03:32 ============================================================================ +08:03:32 Slot Id : <91> +08:03:32 Transaction Type : RESPONSE +08:03:32 Received From : +08:03:32 ============================================================================ +08:03:32 FNo. Len. Field Value +08:03:32 ============================================================================ +08:03:32 [ 1] [ 4] [0210] +08:03:32 [ 2] [ 16] [6213542000048893] +08:03:32 [ 3] [ 6] [010000] +08:03:32 [ 4] [ 12] [000100000000] +08:03:32 [ 7] [ 10] [0320080121] +08:03:32 [ 11] [ 6] [931699] +08:03:32 [ 12] [ 6] [080121] +08:03:32 [ 13] [ 4] [0320] +08:03:32 [ 15] [ 4] [0320] +08:03:32 [ 18] [ 4] [6011] +08:03:32 [ 19] [ 3] [418] +08:03:32 [ 32] [ 6] [668899] +08:03:32 [ 35] [ 32] [6213542000048893=491212014889426] +08:03:32 [ 37] [ 12] [507901416557] +08:03:32 [ 38] [ 6] [283489] +08:03:32 [ 39] [ 2] [00] +08:03:32 [ 41] [ 8] [03011002] +08:03:32 [ 49] [ 3] [418] +08:03:32 [ 54] [ 40] [0001418C0000882928810002418C000088292881] +08:03:32 ============================================================================ +08:03:32 Calculate Source COMM Id = 4 +08:03:32 ============================================================================ +08:03:32 + + +waiting on router queue for slot.... +08:03:38 ============================================================================ +08:03:38 Slot Id : <77> +08:03:38 Transaction Type : REQUEST +08:03:38 Received From : +08:03:38 ============================================================================ +08:03:38 FNo. Len. Field Value +08:03:38 ============================================================================ +08:03:38 [ 1] [ 4] [0800] +08:03:38 [ 7] [ 10] [0320010246] +08:03:38 [ 11] [ 6] [155312] +08:03:38 [ 70] [ 3] [301] +08:03:38 ============================================================================ +08:03:38 + + +waiting on router queue for slot.... +08:03:38 Sending to : +08:03:38 ============================================================================ +08:03:38 ============================================================================ +08:03:38 Slot Id : <77> +08:03:38 Transaction Type : RESPONSE +08:03:38 Received From : +08:03:38 ============================================================================ +08:03:38 FNo. Len. Field Value +08:03:38 ============================================================================ +08:03:38 [ 1] [ 4] [0810] +08:03:38 [ 7] [ 10] [0320010246] +08:03:38 [ 11] [ 6] [155312] +08:03:38 [ 39] [ 2] [00] +08:03:38 [ 70] [ 3] [301] +08:03:38 ============================================================================ +08:03:38 Calculate Source COMM Id = 2 +08:03:38 ============================================================================ +08:03:38 + + +waiting on router queue for slot.... +08:03:39 ============================================================================ +08:03:39 Slot Id : <65> +08:03:39 Transaction Type : REQUEST +08:03:39 Received From : +08:03:39 ============================================================================ +08:03:39 FNo. Len. Field Value +08:03:39 ============================================================================ +08:03:39 [ 1] [ 4] [0200] +08:03:39 [ 2] [ 16] [6213545000782635] +08:03:39 [ 3] [ 6] [010000] +08:03:39 [ 4] [ 12] [000060000000] +08:03:39 [ 7] [ 10] [0320080130] +08:03:39 [ 11] [ 6] [931703] +08:03:39 [ 12] [ 6] [080130] +08:03:39 [ 13] [ 4] [0320] +08:03:39 [ 15] [ 4] [0320] +08:03:39 [ 18] [ 4] [6011] +08:03:39 [ 19] [ 3] [418] +08:03:39 [ 22] [ 3] [021] +08:03:39 [ 25] [ 2] [01] +08:03:39 [ 28] [ 9] [D00002000] +08:03:39 [ 32] [ 6] [668899] +08:03:39 [ 35] [ 32] [6213545000782635=491212018263409] +08:03:39 [ 37] [ 12] [507900858222] +08:03:39 [ 41] [ 8] [03015004] +08:03:39 [ 42] [ 15] [APT ] +08:03:39 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +08:03:39 [ 49] [ 3] [418] +08:03:39 [ 52] [ 16] [9CEF7C96DE0390B4] +08:03:39 ============================================================================ +08:03:39 + + +waiting on router queue for slot.... +08:03:39 Sending to : +08:03:39 ============================================================================ +08:03:39 Sending to : +08:03:39 ============================================================================ +08:03:39 ============================================================================ +08:03:39 Slot Id : <65> +08:03:39 Transaction Type : REQUEST +08:03:39 Received From : +08:03:39 ============================================================================ +08:03:39 FNo. Len. Field Value +08:03:39 ============================================================================ +08:03:39 [ 1] [ 4] [0200] +08:03:39 [ 2] [ 16] [6213545000782635] +08:03:39 [ 3] [ 6] [010000] +08:03:39 [ 4] [ 12] [000060000000] +08:03:39 [ 7] [ 10] [0320080130] +08:03:39 [ 11] [ 6] [931703] +08:03:39 [ 12] [ 6] [080130] +08:03:39 [ 13] [ 4] [0320] +08:03:39 [ 15] [ 4] [0320] +08:03:39 [ 18] [ 4] [6011] +08:03:39 [ 19] [ 3] [418] +08:03:39 [ 22] [ 3] [021] +08:03:39 [ 25] [ 2] [01] +08:03:39 [ 28] [ 9] [D00002000] +08:03:39 [ 32] [ 6] [668899] +08:03:39 [ 35] [ 32] [6213545000782635=491212018263409] +08:03:39 [ 37] [ 12] [507900858222] +08:03:39 [ 41] [ 8] [03015004] +08:03:39 [ 42] [ 15] [APT ] +08:03:39 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +08:03:39 [ 49] [ 3] [418] +08:03:39 [ 52] [ 16] [9CEF7C96DE0390B4] +08:03:39 ============================================================================ +08:03:39 + + +waiting on router queue for slot.... +08:03:39 Sending to : +08:03:39 ============================================================================ +08:03:39 ============================================================================ +08:03:39 Slot Id : <65> +08:03:39 Transaction Type : REQUEST +08:03:39 Received From : +08:03:39 ============================================================================ +08:03:39 FNo. Len. Field Value +08:03:39 ============================================================================ +08:03:39 [ 1] [ 4] [0200] +08:03:39 [ 2] [ 16] [6213545000782635] +08:03:39 [ 3] [ 6] [010000] +08:03:39 [ 4] [ 12] [000060000000] +08:03:39 [ 7] [ 10] [0320080130] +08:03:39 [ 11] [ 6] [931703] +08:03:39 [ 12] [ 6] [080130] +08:03:39 [ 13] [ 4] [0320] +08:03:39 [ 15] [ 4] [0320] +08:03:39 [ 18] [ 4] [6011] +08:03:39 [ 19] [ 3] [418] +08:03:39 [ 22] [ 3] [021] +08:03:39 [ 25] [ 2] [01] +08:03:39 [ 28] [ 9] [D00002000] +08:03:39 [ 32] [ 6] [668899] +08:03:39 [ 35] [ 32] [6213545000782635=491212018263409] +08:03:39 [ 37] [ 12] [507900858222] +08:03:39 [ 41] [ 8] [03015004] +08:03:39 [ 42] [ 15] [APT ] +08:03:39 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +08:03:39 [ 49] [ 3] [418] +08:03:39 [ 52] [ 16] [F8D23DD0A12F9841] +08:03:39 ============================================================================ +08:03:39 + + +waiting on router queue for slot.... +08:03:39 Sending to : <0> +08:03:39 ============================================================================ +08:03:40 ============================================================================ +08:03:40 Slot Id : <65> +08:03:40 Transaction Type : RESPONSE +08:03:40 Received From : +08:03:40 ============================================================================ +08:03:40 FNo. Len. Field Value +08:03:40 ============================================================================ +08:03:40 [ 1] [ 4] [0210] +08:03:40 [ 2] [ 16] [6213545000782635] +08:03:40 [ 3] [ 6] [010000] +08:03:40 [ 4] [ 12] [000060000000] +08:03:40 [ 7] [ 10] [0320080130] +08:03:40 [ 11] [ 6] [931703] +08:03:40 [ 12] [ 6] [080130] +08:03:40 [ 13] [ 4] [0320] +08:03:40 [ 15] [ 4] [0320] +08:03:40 [ 18] [ 4] [6011] +08:03:40 [ 19] [ 3] [418] +08:03:40 [ 32] [ 6] [668899] +08:03:40 [ 35] [ 32] [6213545000782635=491212018263409] +08:03:40 [ 37] [ 12] [507900858222] +08:03:40 [ 38] [ 6] [775987] +08:03:40 [ 39] [ 2] [00] +08:03:40 [ 41] [ 8] [03015004] +08:03:40 [ 49] [ 3] [418] +08:03:40 [ 54] [ 40] [0001418C0001261931620002418C000126193162] +08:03:40 ============================================================================ +08:03:40 Sending to : +08:03:40 ============================================================================ +08:03:40 + + +waiting on router queue for slot.... +08:03:41 ============================================================================ +08:03:41 Slot Id : <65> +08:03:41 Transaction Type : RESPONSE +08:03:41 Received From : +08:03:41 ============================================================================ +08:03:41 FNo. Len. Field Value +08:03:41 ============================================================================ +08:03:41 [ 1] [ 4] [0210] +08:03:41 [ 2] [ 16] [6213545000782635] +08:03:41 [ 3] [ 6] [010000] +08:03:41 [ 4] [ 12] [000060000000] +08:03:41 [ 7] [ 10] [0320080130] +08:03:41 [ 11] [ 6] [931703] +08:03:41 [ 12] [ 6] [080130] +08:03:41 [ 13] [ 4] [0320] +08:03:41 [ 15] [ 4] [0320] +08:03:41 [ 18] [ 4] [6011] +08:03:41 [ 19] [ 3] [418] +08:03:41 [ 32] [ 6] [668899] +08:03:41 [ 35] [ 32] [6213545000782635=491212018263409] +08:03:41 [ 37] [ 12] [507900858222] +08:03:41 [ 38] [ 6] [775987] +08:03:41 [ 39] [ 2] [00] +08:03:41 [ 41] [ 8] [03015004] +08:03:41 [ 49] [ 3] [418] +08:03:41 [ 54] [ 40] [0001418C0001261931620002418C000126193162] +08:03:41 ============================================================================ +08:03:41 Calculate Source COMM Id = 4 +08:03:41 ============================================================================ +08:03:41 + + +waiting on router queue for slot.... +08:03:49 ============================================================================ +08:03:49 Slot Id : <72> +08:03:49 Transaction Type : REQUEST +08:03:49 Received From : +08:03:49 ============================================================================ +08:03:49 FNo. Len. Field Value +08:03:49 ============================================================================ +08:03:49 [ 1] [ 4] [0800] +08:03:49 [ 7] [ 10] [0320010257] +08:03:49 [ 11] [ 6] [155313] +08:03:49 [ 70] [ 3] [301] +08:03:49 ============================================================================ +08:03:49 + + +waiting on router queue for slot.... +08:03:49 Sending to : +08:03:49 ============================================================================ +08:03:49 ============================================================================ +08:03:49 Slot Id : <72> +08:03:49 Transaction Type : RESPONSE +08:03:49 Received From : +08:03:49 ============================================================================ +08:03:49 FNo. Len. Field Value +08:03:49 ============================================================================ +08:03:49 [ 1] [ 4] [0810] +08:03:49 [ 7] [ 10] [0320010257] +08:03:49 [ 11] [ 6] [155313] +08:03:49 [ 39] [ 2] [00] +08:03:49 [ 70] [ 3] [301] +08:03:49 ============================================================================ +08:03:49 Calculate Source COMM Id = 2 +08:03:49 ============================================================================ +08:03:49 + + +waiting on router queue for slot.... +08:04:04 ============================================================================ +08:04:04 Slot Id : <106> +08:04:04 Transaction Type : REQUEST +08:04:04 Received From : +08:04:04 ============================================================================ +08:04:04 FNo. Len. Field Value +08:04:04 ============================================================================ +08:04:04 [ 1] [ 4] [0800] +08:04:04 [ 7] [ 10] [0320010312] +08:04:04 [ 11] [ 6] [155314] +08:04:04 [ 70] [ 3] [301] +08:04:04 ============================================================================ +08:04:04 + + +waiting on router queue for slot.... +08:04:04 Sending to : +08:04:04 ============================================================================ +08:04:04 ============================================================================ +08:04:04 Slot Id : <106> +08:04:04 Transaction Type : RESPONSE +08:04:04 Received From : +08:04:04 ============================================================================ +08:04:04 FNo. Len. Field Value +08:04:04 ============================================================================ +08:04:04 [ 1] [ 4] [0810] +08:04:04 [ 7] [ 10] [0320010312] +08:04:04 [ 11] [ 6] [155314] +08:04:04 [ 39] [ 2] [00] +08:04:04 [ 70] [ 3] [301] +08:04:04 ============================================================================ +08:04:04 Calculate Source COMM Id = 2 +08:04:04 ============================================================================ +08:04:04 + + +waiting on router queue for slot.... +08:04:12 ============================================================================ +08:04:12 Slot Id : <66> +08:04:12 Transaction Type : REQUEST +08:04:12 Received From : +08:04:12 ============================================================================ +08:04:12 FNo. Len. Field Value +08:04:12 ============================================================================ +08:04:12 [ 1] [ 4] [0800] +08:04:12 [ 2] [ 5] [02531] +08:04:12 [ 3] [ 6] [579088] +08:04:12 [ 7] [ 10] [0320010412] +08:04:12 [ 11] [ 6] [806880] +08:04:12 [ 15] [ 10] [0320010412] +08:04:12 [ 37] [ 11] [57908806880] +08:04:12 [ 70] [ 3] [001] +08:04:12 ============================================================================ +08:04:12 + + +waiting on router queue for slot.... +08:04:12 ============================================================================ +08:04:12 Slot Id : <66> +08:04:12 Transaction Type : RESPONSE +08:04:12 Received From : +08:04:12 ============================================================================ +08:04:12 FNo. Len. Field Value +08:04:12 ============================================================================ +08:04:12 [ 1] [ 4] [0810] +08:04:12 [ 7] [ 10] [0320010412] +08:04:12 [ 11] [ 6] [806880] +08:04:12 [ 15] [ 4] [0320] +08:04:12 [ 37] [ 12] [57908806880] +08:04:12 [ 39] [ 2] [00] +08:04:12 [ 70] [ 3] [001] +08:04:12 ============================================================================ +08:04:12 Sending to : +08:04:12 ============================================================================ +08:04:12 + + +waiting on router queue for slot.... +08:04:15 ============================================================================ +08:04:15 Slot Id : <76> +08:04:15 Transaction Type : REQUEST +08:04:15 Received From : +08:04:15 ============================================================================ +08:04:15 FNo. Len. Field Value +08:04:15 ============================================================================ +08:04:15 [ 1] [ 4] [0800] +08:04:15 [ 7] [ 10] [0320010323] +08:04:15 [ 11] [ 6] [155315] +08:04:15 [ 70] [ 3] [301] +08:04:15 ============================================================================ +08:04:15 + + +waiting on router queue for slot.... +08:04:15 Sending to : +08:04:15 ============================================================================ +08:04:15 ============================================================================ +08:04:15 Slot Id : <76> +08:04:15 Transaction Type : RESPONSE +08:04:15 Received From : +08:04:15 ============================================================================ +08:04:15 FNo. Len. Field Value +08:04:15 ============================================================================ +08:04:15 [ 1] [ 4] [0810] +08:04:15 [ 7] [ 10] [0320010323] +08:04:15 [ 11] [ 6] [155315] +08:04:15 [ 39] [ 2] [00] +08:04:15 [ 70] [ 3] [301] +08:04:15 ============================================================================ +08:04:15 Calculate Source COMM Id = 2 +08:04:15 ============================================================================ +08:04:15 + + +waiting on router queue for slot.... +08:04:20 ============================================================================ +08:04:20 Slot Id : <90> +08:04:20 Transaction Type : REQUEST +08:04:20 Received From : +08:04:20 ============================================================================ +08:04:20 FNo. Len. Field Value +08:04:20 ============================================================================ +08:04:20 [ 1] [ 4] [0800] +08:04:20 [ 7] [ 10] [0320151608] +08:04:20 [ 11] [ 6] [081608] +08:04:20 [ 37] [ 12] [57908081608] +08:04:20 [ 70] [ 3] [301] +08:04:20 ============================================================================ +08:04:20 + + +waiting on router queue for slot.... +08:04:20 Sending to : +08:04:20 ============================================================================ +08:04:20 ============================================================================ +08:04:20 Slot Id : <90> +08:04:20 Transaction Type : RESPONSE +08:04:20 Received From : +08:04:20 ============================================================================ +08:04:20 FNo. Len. Field Value +08:04:20 ============================================================================ +08:04:20 [ 1] [ 4] [0810] +08:04:20 [ 7] [ 10] [0320151608] +08:04:20 [ 11] [ 6] [081608] +08:04:20 [ 37] [ 12] [579080816080] +08:04:20 [ 39] [ 2] [00] +08:04:20 [ 70] [ 3] [810] +08:04:20 ============================================================================ +08:04:20 Calculate Source COMM Id = 6 +08:04:20 ============================================================================ +08:04:20 + + +waiting on router queue for slot.... +08:04:22 ============================================================================ +08:04:22 Slot Id : <114> +08:04:22 Transaction Type : REQUEST +08:04:22 Received From : +08:04:22 ============================================================================ +08:04:22 FNo. Len. Field Value +08:04:22 ============================================================================ +08:04:22 [ 1] [ 4] [0200] +08:04:22 [ 2] [ 16] [6213542000048893] +08:04:22 [ 3] [ 6] [010000] +08:04:22 [ 4] [ 12] [000080000000] +08:04:22 [ 7] [ 10] [0320080213] +08:04:22 [ 11] [ 6] [931732] +08:04:22 [ 12] [ 6] [080213] +08:04:22 [ 13] [ 4] [0320] +08:04:22 [ 15] [ 4] [0320] +08:04:22 [ 18] [ 4] [6011] +08:04:22 [ 19] [ 3] [418] +08:04:22 [ 22] [ 3] [021] +08:04:22 [ 25] [ 2] [01] +08:04:22 [ 28] [ 9] [D00002000] +08:04:22 [ 32] [ 6] [668899] +08:04:22 [ 35] [ 32] [6213542000048893=491212014889426] +08:04:22 [ 37] [ 12] [507901416559] +08:04:22 [ 41] [ 8] [03011002] +08:04:22 [ 42] [ 15] [APT ] +08:04:22 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:04:22 [ 49] [ 3] [418] +08:04:22 [ 52] [ 16] [3420877F57C6BC87] +08:04:22 ============================================================================ +08:04:22 + + +waiting on router queue for slot.... +08:04:22 Sending to : +08:04:22 ============================================================================ +08:04:22 Sending to : +08:04:22 ============================================================================ +08:04:22 ============================================================================ +08:04:22 Slot Id : <114> +08:04:22 Transaction Type : REQUEST +08:04:22 Received From : +08:04:22 ============================================================================ +08:04:22 FNo. Len. Field Value +08:04:22 ============================================================================ +08:04:22 [ 1] [ 4] [0200] +08:04:22 [ 2] [ 16] [6213542000048893] +08:04:22 [ 3] [ 6] [010000] +08:04:22 [ 4] [ 12] [000080000000] +08:04:22 [ 7] [ 10] [0320080213] +08:04:22 [ 11] [ 6] [931732] +08:04:22 [ 12] [ 6] [080213] +08:04:22 [ 13] [ 4] [0320] +08:04:22 [ 15] [ 4] [0320] +08:04:22 [ 18] [ 4] [6011] +08:04:22 [ 19] [ 3] [418] +08:04:22 [ 22] [ 3] [021] +08:04:22 [ 25] [ 2] [01] +08:04:22 [ 28] [ 9] [D00002000] +08:04:22 [ 32] [ 6] [668899] +08:04:22 [ 35] [ 32] [6213542000048893=491212014889426] +08:04:22 [ 37] [ 12] [507901416559] +08:04:22 [ 41] [ 8] [03011002] +08:04:22 [ 42] [ 15] [APT ] +08:04:22 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:04:22 [ 49] [ 3] [418] +08:04:22 [ 52] [ 16] [3420877F57C6BC87] +08:04:22 ============================================================================ +08:04:22 + + +waiting on router queue for slot.... +08:04:22 Sending to : +08:04:22 ============================================================================ +08:04:22 ============================================================================ +08:04:22 Slot Id : <114> +08:04:22 Transaction Type : REQUEST +08:04:22 Received From : +08:04:22 ============================================================================ +08:04:22 FNo. Len. Field Value +08:04:22 ============================================================================ +08:04:22 [ 1] [ 4] [0200] +08:04:22 [ 2] [ 16] [6213542000048893] +08:04:22 [ 3] [ 6] [010000] +08:04:22 [ 4] [ 12] [000080000000] +08:04:22 [ 7] [ 10] [0320080213] +08:04:22 [ 11] [ 6] [931732] +08:04:22 [ 12] [ 6] [080213] +08:04:22 [ 13] [ 4] [0320] +08:04:22 [ 15] [ 4] [0320] +08:04:22 [ 18] [ 4] [6011] +08:04:22 [ 19] [ 3] [418] +08:04:22 [ 22] [ 3] [021] +08:04:22 [ 25] [ 2] [01] +08:04:22 [ 28] [ 9] [D00002000] +08:04:22 [ 32] [ 6] [668899] +08:04:22 [ 35] [ 32] [6213542000048893=491212014889426] +08:04:22 [ 37] [ 12] [507901416559] +08:04:22 [ 41] [ 8] [03011002] +08:04:22 [ 42] [ 15] [APT ] +08:04:22 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:04:22 [ 49] [ 3] [418] +08:04:22 [ 52] [ 16] [0358DC86BB5BE190] +08:04:22 ============================================================================ +08:04:22 + + +waiting on router queue for slot.... +08:04:22 Sending to : <0> +08:04:22 ============================================================================ +08:04:22 ============================================================================ +08:04:22 Slot Id : <107> +08:04:22 Transaction Type : REQUEST +08:04:22 Received From : +08:04:22 ============================================================================ +08:04:22 FNo. Len. Field Value +08:04:22 ============================================================================ +08:04:22 [ 1] [ 4] [0200] +08:04:22 [ 2] [ 16] [6213544001980306] +08:04:22 [ 3] [ 6] [010000] +08:04:22 [ 4] [ 12] [000200000000] +08:04:22 [ 7] [ 10] [0320010330] +08:04:22 [ 11] [ 6] [267013] +08:04:22 [ 12] [ 6] [080330] +08:04:22 [ 13] [ 4] [0320] +08:04:22 [ 14] [ 4] [4912] +08:04:22 [ 15] [ 4] [0320] +08:04:22 [ 18] [ 4] [6011] +08:04:22 [ 19] [ 3] [418] +08:04:22 [ 22] [ 3] [021] +08:04:22 [ 25] [ 2] [01] +08:04:22 [ 28] [ 9] [D00002000] +08:04:22 [ 32] [ 6] [180893] +08:04:22 [ 35] [ 32] [6213544001980306=491212018030216] +08:04:22 [ 37] [ 12] [507901267013] +08:04:22 [ 41] [ 8] [0522XYXH] +08:04:22 [ 42] [ 15] [999999 ] +08:04:22 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:04:22 [ 49] [ 3] [418] +08:04:22 [ 52] [ 16] [9EB6B23E3AFCDF0C] +08:04:22 ============================================================================ +08:04:22 + + +waiting on router queue for slot.... +08:04:22 Sending to : +08:04:22 ============================================================================ +08:04:22 Sending to : +08:04:22 ============================================================================ +08:04:23 ============================================================================ +08:04:23 Slot Id : <107> +08:04:23 Transaction Type : REQUEST +08:04:23 Received From : +08:04:23 ============================================================================ +08:04:23 FNo. Len. Field Value +08:04:23 ============================================================================ +08:04:23 [ 1] [ 4] [0200] +08:04:23 [ 2] [ 16] [6213544001980306] +08:04:23 [ 3] [ 6] [010000] +08:04:23 [ 4] [ 12] [000200000000] +08:04:23 [ 7] [ 10] [0320010330] +08:04:23 [ 11] [ 6] [267013] +08:04:23 [ 12] [ 6] [080330] +08:04:23 [ 13] [ 4] [0320] +08:04:23 [ 14] [ 4] [4912] +08:04:23 [ 15] [ 4] [0320] +08:04:23 [ 18] [ 4] [6011] +08:04:23 [ 19] [ 3] [418] +08:04:23 [ 22] [ 3] [021] +08:04:23 [ 25] [ 2] [01] +08:04:23 [ 28] [ 9] [D00002000] +08:04:23 [ 32] [ 6] [180893] +08:04:23 [ 35] [ 32] [6213544001980306=491212018030216] +08:04:23 [ 37] [ 12] [507901267013] +08:04:23 [ 41] [ 8] [0522XYXH] +08:04:23 [ 42] [ 15] [999999 ] +08:04:23 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:04:23 [ 49] [ 3] [418] +08:04:23 [ 52] [ 16] [9EB6B23E3AFCDF0C] +08:04:23 ============================================================================ +08:04:23 + + +waiting on router queue for slot.... +08:04:23 Sending to : +08:04:23 ============================================================================ +08:04:23 ============================================================================ +08:04:23 Slot Id : <107> +08:04:23 Transaction Type : REQUEST +08:04:23 Received From : +08:04:23 ============================================================================ +08:04:23 FNo. Len. Field Value +08:04:23 ============================================================================ +08:04:23 [ 1] [ 4] [0200] +08:04:23 [ 2] [ 16] [6213544001980306] +08:04:23 [ 3] [ 6] [010000] +08:04:23 [ 4] [ 12] [000200000000] +08:04:23 [ 7] [ 10] [0320010330] +08:04:23 [ 11] [ 6] [267013] +08:04:23 [ 12] [ 6] [080330] +08:04:23 [ 13] [ 4] [0320] +08:04:23 [ 14] [ 4] [4912] +08:04:23 [ 15] [ 4] [0320] +08:04:23 [ 18] [ 4] [6011] +08:04:23 [ 19] [ 3] [418] +08:04:23 [ 22] [ 3] [021] +08:04:23 [ 25] [ 2] [01] +08:04:23 [ 28] [ 9] [D00002000] +08:04:23 [ 32] [ 6] [180893] +08:04:23 [ 35] [ 32] [6213544001980306=491212018030216] +08:04:23 [ 37] [ 12] [507901267013] +08:04:23 [ 41] [ 8] [0522XYXH] +08:04:23 [ 42] [ 15] [999999 ] +08:04:23 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:04:23 [ 49] [ 3] [418] +08:04:23 [ 52] [ 16] [E8D39E041D8BC752] +08:04:23 ============================================================================ +08:04:23 + + +waiting on router queue for slot.... +08:04:23 Sending to : <0> +08:04:23 ============================================================================ +08:04:23 ============================================================================ +08:04:23 Slot Id : <114> +08:04:23 Transaction Type : RESPONSE +08:04:23 Received From : +08:04:23 ============================================================================ +08:04:23 FNo. Len. Field Value +08:04:23 ============================================================================ +08:04:23 [ 1] [ 4] [0210] +08:04:23 [ 2] [ 16] [6213542000048893] +08:04:23 [ 3] [ 6] [010000] +08:04:23 [ 4] [ 12] [000080000000] +08:04:23 [ 7] [ 10] [0320080213] +08:04:23 [ 11] [ 6] [931732] +08:04:23 [ 12] [ 6] [080213] +08:04:23 [ 13] [ 4] [0320] +08:04:23 [ 15] [ 4] [0320] +08:04:23 [ 18] [ 4] [6011] +08:04:23 [ 19] [ 3] [418] +08:04:23 [ 32] [ 6] [668899] +08:04:23 [ 35] [ 32] [6213542000048893=491212014889426] +08:04:23 [ 37] [ 12] [507901416559] +08:04:23 [ 38] [ 6] [944363] +08:04:23 [ 39] [ 2] [00] +08:04:23 [ 41] [ 8] [03011002] +08:04:23 [ 49] [ 3] [418] +08:04:23 [ 54] [ 40] [0001418C0000080928810002418C000008092881] +08:04:23 ============================================================================ +08:04:23 Sending to : +08:04:23 ============================================================================ +08:04:23 + + +waiting on router queue for slot.... +08:04:23 ============================================================================ +08:04:23 Slot Id : <107> +08:04:23 Transaction Type : RESPONSE +08:04:23 Received From : +08:04:23 ============================================================================ +08:04:23 FNo. Len. Field Value +08:04:23 ============================================================================ +08:04:23 [ 1] [ 4] [0210] +08:04:23 [ 2] [ 16] [6213544001980306] +08:04:23 [ 3] [ 6] [010000] +08:04:23 [ 4] [ 12] [000200000000] +08:04:23 [ 7] [ 10] [0320010330] +08:04:23 [ 11] [ 6] [267013] +08:04:23 [ 12] [ 6] [080330] +08:04:23 [ 13] [ 4] [0320] +08:04:23 [ 15] [ 4] [0320] +08:04:23 [ 18] [ 4] [6011] +08:04:23 [ 19] [ 3] [418] +08:04:23 [ 22] [ 3] [021] +08:04:23 [ 32] [ 6] [180893] +08:04:23 [ 35] [ 32] [6213544001980306=491212018030216] +08:04:23 [ 37] [ 12] [507901267013] +08:04:23 [ 39] [ 2] [61] +08:04:23 [ 41] [ 8] [0522XYXH] +08:04:23 [ 49] [ 3] [418] +08:04:23 ============================================================================ +08:04:23 Sending to : +08:04:23 ============================================================================ +08:04:23 + + +waiting on router queue for slot.... +08:04:23 ============================================================================ +08:04:23 Slot Id : <74> +08:04:23 Transaction Type : REQUEST +08:04:23 Received From : +08:04:23 ============================================================================ +08:04:23 FNo. Len. Field Value +08:04:23 ============================================================================ +08:04:23 [ 1] [ 4] [0200] +08:04:23 [ 2] [ 16] [6688990103330203] +08:04:23 [ 3] [ 6] [300000] +08:04:23 [ 4] [ 12] [000000000000] +08:04:23 [ 7] [ 10] [0320080419] +08:04:23 [ 11] [ 6] [678016] +08:04:23 [ 12] [ 6] [080419] +08:04:23 [ 13] [ 4] [0320] +08:04:23 [ 15] [ 4] [0320] +08:04:23 [ 18] [ 4] [6011] +08:04:23 [ 22] [ 3] [900] +08:04:23 [ 25] [ 2] [02] +08:04:23 [ 28] [ 9] [D00000000] +08:04:23 [ 32] [ 6] [621354] +08:04:23 [ 35] [ 37] [6688990103330203=42121231020366400000] +08:04:23 [ 37] [ 12] [507903385624] +08:04:23 [ 41] [ 8] [13001800] +08:04:23 [ 42] [ 15] [NATIVE ] +08:04:23 [ 43] [ 40] [Phonesavanh Unit Phonesavanh LAO] +08:04:23 [ 49] [ 3] [418] +08:04:23 [ 52] [ 16] [43CEB679B0875025] +08:04:23 ============================================================================ +08:04:23 + + +waiting on router queue for slot.... +08:04:23 Sending to : +08:04:23 ============================================================================ +08:04:23 Sending to : +08:04:23 ============================================================================ +08:04:23 ============================================================================ +08:04:23 Slot Id : <74> +08:04:23 Transaction Type : REQUEST +08:04:23 Received From : +08:04:23 ============================================================================ +08:04:23 FNo. Len. Field Value +08:04:23 ============================================================================ +08:04:23 [ 1] [ 4] [0200] +08:04:23 [ 2] [ 16] [6688990103330203] +08:04:23 [ 3] [ 6] [300000] +08:04:23 [ 4] [ 12] [000000000000] +08:04:23 [ 7] [ 10] [0320080419] +08:04:23 [ 11] [ 6] [678016] +08:04:23 [ 12] [ 6] [080419] +08:04:23 [ 13] [ 4] [0320] +08:04:23 [ 15] [ 4] [0320] +08:04:23 [ 18] [ 4] [6011] +08:04:23 [ 22] [ 3] [900] +08:04:23 [ 25] [ 2] [02] +08:04:23 [ 28] [ 9] [D00000000] +08:04:23 [ 32] [ 6] [621354] +08:04:23 [ 35] [ 37] [6688990103330203=42121231020366400000] +08:04:23 [ 37] [ 12] [507903385624] +08:04:23 [ 41] [ 8] [13001800] +08:04:23 [ 42] [ 15] [NATIVE ] +08:04:23 [ 43] [ 40] [Phonesavanh Unit Phonesavanh LAO] +08:04:23 [ 49] [ 3] [418] +08:04:23 [ 52] [ 16] [43CEB679B0875025] +08:04:23 ============================================================================ +08:04:23 + + +waiting on router queue for slot.... +08:04:23 Sending to : +08:04:23 ============================================================================ +08:04:23 ============================================================================ +08:04:23 Slot Id : <74> +08:04:23 Transaction Type : REQUEST +08:04:23 Received From : +08:04:23 ============================================================================ +08:04:23 FNo. Len. Field Value +08:04:23 ============================================================================ +08:04:23 [ 1] [ 4] [0200] +08:04:23 [ 2] [ 16] [6688990103330203] +08:04:23 [ 3] [ 6] [300000] +08:04:23 [ 4] [ 12] [000000000000] +08:04:23 [ 7] [ 10] [0320080419] +08:04:23 [ 11] [ 6] [678016] +08:04:23 [ 12] [ 6] [080419] +08:04:23 [ 13] [ 4] [0320] +08:04:23 [ 15] [ 4] [0320] +08:04:23 [ 18] [ 4] [6011] +08:04:23 [ 22] [ 3] [900] +08:04:23 [ 25] [ 2] [02] +08:04:23 [ 28] [ 9] [D00000000] +08:04:23 [ 32] [ 6] [621354] +08:04:23 [ 35] [ 37] [6688990103330203=42121231020366400000] +08:04:23 [ 37] [ 12] [507903385624] +08:04:23 [ 41] [ 8] [13001800] +08:04:23 [ 42] [ 15] [NATIVE ] +08:04:23 [ 43] [ 40] [Phonesavanh Unit Phonesavanh LAO] +08:04:23 [ 49] [ 3] [418] +08:04:23 [ 52] [ 16] [B7720B989F8F5A41] +08:04:23 ============================================================================ +08:04:23 + + +waiting on router queue for slot.... +08:04:23 Sending to : <4> +08:04:23 ============================================================================ +08:04:24 ============================================================================ +08:04:24 Slot Id : <74> +08:04:24 Transaction Type : RESPONSE +08:04:24 Received From : +08:04:24 ============================================================================ +08:04:24 FNo. Len. Field Value +08:04:24 ============================================================================ +08:04:24 [ 1] [ 4] [0210] +08:04:24 [ 2] [ 16] [6688990103330203] +08:04:24 [ 3] [ 6] [300000] +08:04:24 [ 4] [ 12] [000000000000] +08:04:24 [ 11] [ 6] [678016] +08:04:24 [ 12] [ 6] [080419] +08:04:24 [ 15] [ 4] [0320] +08:04:24 [ 18] [ 4] [6011] +08:04:24 [ 32] [ 6] [621354] +08:04:24 [ 35] [ 37] [6688990103330203=42121231020366400000] +08:04:24 [ 37] [ 12] [507903385624] +08:04:24 [ 38] [ 6] [311258] +08:04:24 [ 39] [ 2] [00] +08:04:24 [ 41] [ 8] [13001800] +08:04:24 [ 49] [ 3] [418] +08:04:24 [ 54] [ 20] [0002418C000351967926] +08:04:24 ============================================================================ +08:04:24 Sending to : +08:04:24 ============================================================================ +08:04:24 + + +waiting on router queue for slot.... +08:04:24 ============================================================================ +08:04:24 Slot Id : <114> +08:04:24 Transaction Type : RESPONSE +08:04:24 Received From : +08:04:24 ============================================================================ +08:04:24 FNo. Len. Field Value +08:04:24 ============================================================================ +08:04:24 [ 1] [ 4] [0210] +08:04:24 [ 2] [ 16] [6213542000048893] +08:04:24 [ 3] [ 6] [010000] +08:04:24 [ 4] [ 12] [000080000000] +08:04:24 [ 7] [ 10] [0320080213] +08:04:24 [ 11] [ 6] [931732] +08:04:24 [ 12] [ 6] [080213] +08:04:24 [ 13] [ 4] [0320] +08:04:24 [ 15] [ 4] [0320] +08:04:24 [ 18] [ 4] [6011] +08:04:24 [ 19] [ 3] [418] +08:04:24 [ 32] [ 6] [668899] +08:04:24 [ 35] [ 32] [6213542000048893=491212014889426] +08:04:24 [ 37] [ 12] [507901416559] +08:04:24 [ 38] [ 6] [944363] +08:04:24 [ 39] [ 2] [00] +08:04:24 [ 41] [ 8] [03011002] +08:04:24 [ 49] [ 3] [418] +08:04:24 [ 54] [ 40] [0001418C0000080928810002418C000008092881] +08:04:24 ============================================================================ +08:04:24 Calculate Source COMM Id = 4 +08:04:24 ============================================================================ +08:04:24 + + +waiting on router queue for slot.... +08:04:26 ============================================================================ +08:04:26 Slot Id : <83> +08:04:26 Transaction Type : REQUEST +08:04:26 Received From : +08:04:26 ============================================================================ +08:04:26 FNo. Len. Field Value +08:04:26 ============================================================================ +08:04:26 [ 1] [ 4] [0800] +08:04:26 [ 7] [ 10] [0320010334] +08:04:26 [ 11] [ 6] [155316] +08:04:26 [ 70] [ 3] [301] +08:04:26 ============================================================================ +08:04:26 + + +waiting on router queue for slot.... +08:04:26 Sending to : +08:04:26 ============================================================================ +08:04:26 ============================================================================ +08:04:26 Slot Id : <83> +08:04:26 Transaction Type : RESPONSE +08:04:26 Received From : +08:04:26 ============================================================================ +08:04:26 FNo. Len. Field Value +08:04:26 ============================================================================ +08:04:26 [ 1] [ 4] [0810] +08:04:26 [ 7] [ 10] [0320010334] +08:04:26 [ 11] [ 6] [155316] +08:04:26 [ 39] [ 2] [00] +08:04:26 [ 70] [ 3] [301] +08:04:26 ============================================================================ +08:04:26 Calculate Source COMM Id = 2 +08:04:26 ============================================================================ +08:04:26 + + +waiting on router queue for slot.... +08:04:26 ============================================================================ +08:04:26 Slot Id : <74> +08:04:26 Transaction Type : RESPONSE +08:04:26 Received From : +08:04:26 ============================================================================ +08:04:26 FNo. Len. Field Value +08:04:26 ============================================================================ +08:04:26 [ 1] [ 4] [0210] +08:04:26 [ 2] [ 16] [6688990103330203] +08:04:26 [ 3] [ 6] [300000] +08:04:26 [ 4] [ 12] [000000000000] +08:04:26 [ 11] [ 6] [678016] +08:04:26 [ 12] [ 6] [080419] +08:04:26 [ 15] [ 4] [0320] +08:04:26 [ 18] [ 4] [6011] +08:04:26 [ 32] [ 6] [621354] +08:04:26 [ 35] [ 37] [6688990103330203=42121231020366400000] +08:04:26 [ 37] [ 12] [507903385624] +08:04:26 [ 38] [ 6] [311258] +08:04:26 [ 39] [ 2] [00] +08:04:26 [ 41] [ 8] [13001800] +08:04:26 [ 49] [ 3] [418] +08:04:26 [ 54] [ 20] [0002418C000351967926] +08:04:26 ============================================================================ +08:04:26 Calculate Source COMM Id = 0 +08:04:26 ============================================================================ +08:04:26 + + +waiting on router queue for slot.... +08:04:27 ============================================================================ +08:04:27 Slot Id : <107> +08:04:27 Transaction Type : RESPONSE +08:04:27 Received From : +08:04:27 ============================================================================ +08:04:27 FNo. Len. Field Value +08:04:27 ============================================================================ +08:04:27 [ 1] [ 4] [0210] +08:04:27 [ 2] [ 16] [6213544001980306] +08:04:27 [ 3] [ 6] [010000] +08:04:27 [ 4] [ 12] [000200000000] +08:04:27 [ 7] [ 10] [0320010330] +08:04:27 [ 11] [ 6] [267013] +08:04:27 [ 12] [ 6] [080330] +08:04:27 [ 13] [ 4] [0320] +08:04:27 [ 15] [ 4] [0320] +08:04:27 [ 18] [ 4] [6011] +08:04:27 [ 19] [ 3] [418] +08:04:27 [ 22] [ 3] [021] +08:04:27 [ 32] [ 6] [180893] +08:04:27 [ 35] [ 32] [6213544001980306=491212018030216] +08:04:27 [ 37] [ 12] [507901267013] +08:04:27 [ 39] [ 2] [61] +08:04:27 [ 41] [ 8] [0522XYXH] +08:04:27 [ 49] [ 3] [418] +08:04:27 ============================================================================ +08:04:27 Calculate Source COMM Id = 2 +08:04:27 ============================================================================ +08:04:27 + + +waiting on router queue for slot.... +08:04:41 ============================================================================ +08:04:41 Slot Id : <118> +08:04:41 Transaction Type : REQUEST +08:04:41 Received From : +08:04:41 ============================================================================ +08:04:41 FNo. Len. Field Value +08:04:41 ============================================================================ +08:04:41 [ 1] [ 4] [0800] +08:04:41 [ 7] [ 10] [0320010349] +08:04:41 [ 11] [ 6] [155317] +08:04:41 [ 70] [ 3] [301] +08:04:41 ============================================================================ +08:04:41 + + +waiting on router queue for slot.... +08:04:41 Sending to : +08:04:41 ============================================================================ +08:04:41 ============================================================================ +08:04:41 Slot Id : <118> +08:04:41 Transaction Type : RESPONSE +08:04:41 Received From : +08:04:41 ============================================================================ +08:04:41 FNo. Len. Field Value +08:04:41 ============================================================================ +08:04:41 [ 1] [ 4] [0810] +08:04:41 [ 7] [ 10] [0320010349] +08:04:41 [ 11] [ 6] [155317] +08:04:41 [ 39] [ 2] [00] +08:04:41 [ 70] [ 3] [301] +08:04:41 ============================================================================ +08:04:41 Calculate Source COMM Id = 2 +08:04:41 ============================================================================ +08:04:41 + + +waiting on router queue for slot.... +08:04:52 ============================================================================ +08:04:52 Slot Id : <92> +08:04:52 Transaction Type : REQUEST +08:04:52 Received From : +08:04:52 ============================================================================ +08:04:52 FNo. Len. Field Value +08:04:52 ============================================================================ +08:04:52 [ 1] [ 4] [0800] +08:04:52 [ 7] [ 10] [0320010400] +08:04:52 [ 11] [ 6] [155318] +08:04:52 [ 70] [ 3] [301] +08:04:52 ============================================================================ +08:04:52 + + +waiting on router queue for slot.... +08:04:52 Sending to : +08:04:52 ============================================================================ +08:04:52 ============================================================================ +08:04:52 Slot Id : <92> +08:04:52 Transaction Type : RESPONSE +08:04:52 Received From : +08:04:52 ============================================================================ +08:04:52 FNo. Len. Field Value +08:04:52 ============================================================================ +08:04:52 [ 1] [ 4] [0810] +08:04:52 [ 7] [ 10] [0320010400] +08:04:52 [ 11] [ 6] [155318] +08:04:52 [ 39] [ 2] [00] +08:04:52 [ 70] [ 3] [301] +08:04:52 ============================================================================ +08:04:52 Calculate Source COMM Id = 2 +08:04:52 ============================================================================ +08:04:52 + + +waiting on router queue for slot.... +08:04:54 ============================================================================ +08:04:54 Slot Id : <113> +08:04:54 Transaction Type : REQUEST +08:04:54 Received From : +08:04:54 ============================================================================ +08:04:54 FNo. Len. Field Value +08:04:54 ============================================================================ +08:04:54 [ 1] [ 4] [0200] +08:04:54 [ 2] [ 16] [6688990101025904] +08:04:54 [ 3] [ 6] [300000] +08:04:54 [ 4] [ 12] [000000000000] +08:04:54 [ 7] [ 10] [0320080450] +08:04:54 [ 11] [ 6] [678165] +08:04:54 [ 12] [ 6] [080450] +08:04:54 [ 13] [ 4] [0320] +08:04:54 [ 15] [ 4] [0320] +08:04:54 [ 18] [ 4] [6011] +08:04:54 [ 22] [ 3] [900] +08:04:54 [ 25] [ 2] [02] +08:04:54 [ 28] [ 9] [D00000000] +08:04:54 [ 32] [ 6] [621354] +08:04:54 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:04:54 [ 37] [ 12] [507904719357] +08:04:54 [ 41] [ 8] [18001000] +08:04:54 [ 42] [ 15] [NATIVE ] +08:04:54 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:04:54 [ 49] [ 3] [418] +08:04:54 [ 52] [ 16] [9A5B843C1EA1B1CC] +08:04:54 ============================================================================ +08:04:54 + + +waiting on router queue for slot.... +08:04:54 Sending to : +08:04:54 ============================================================================ +08:04:54 Sending to : +08:04:54 ============================================================================ +08:04:54 ============================================================================ +08:04:54 Slot Id : <113> +08:04:54 Transaction Type : REQUEST +08:04:54 Received From : +08:04:54 ============================================================================ +08:04:54 FNo. Len. Field Value +08:04:54 ============================================================================ +08:04:54 [ 1] [ 4] [0200] +08:04:54 [ 2] [ 16] [6688990101025904] +08:04:54 [ 3] [ 6] [300000] +08:04:54 [ 4] [ 12] [000000000000] +08:04:54 [ 7] [ 10] [0320080450] +08:04:54 [ 11] [ 6] [678165] +08:04:54 [ 12] [ 6] [080450] +08:04:54 [ 13] [ 4] [0320] +08:04:54 [ 15] [ 4] [0320] +08:04:54 [ 18] [ 4] [6011] +08:04:54 [ 22] [ 3] [900] +08:04:54 [ 25] [ 2] [02] +08:04:54 [ 28] [ 9] [D00000000] +08:04:54 [ 32] [ 6] [621354] +08:04:54 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:04:54 [ 37] [ 12] [507904719357] +08:04:54 [ 41] [ 8] [18001000] +08:04:54 [ 42] [ 15] [NATIVE ] +08:04:54 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:04:54 [ 49] [ 3] [418] +08:04:54 [ 52] [ 16] [9A5B843C1EA1B1CC] +08:04:54 ============================================================================ +08:04:54 + + +waiting on router queue for slot.... +08:04:54 Sending to : +08:04:54 ============================================================================ +08:04:54 ============================================================================ +08:04:54 Slot Id : <113> +08:04:54 Transaction Type : REQUEST +08:04:54 Received From : +08:04:54 ============================================================================ +08:04:54 FNo. Len. Field Value +08:04:54 ============================================================================ +08:04:54 [ 1] [ 4] [0200] +08:04:54 [ 2] [ 16] [6688990101025904] +08:04:54 [ 3] [ 6] [300000] +08:04:54 [ 4] [ 12] [000000000000] +08:04:54 [ 7] [ 10] [0320080450] +08:04:54 [ 11] [ 6] [678165] +08:04:54 [ 12] [ 6] [080450] +08:04:54 [ 13] [ 4] [0320] +08:04:54 [ 15] [ 4] [0320] +08:04:54 [ 18] [ 4] [6011] +08:04:54 [ 22] [ 3] [900] +08:04:54 [ 25] [ 2] [02] +08:04:54 [ 28] [ 9] [D00000000] +08:04:54 [ 32] [ 6] [621354] +08:04:54 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:04:54 [ 37] [ 12] [507904719357] +08:04:54 [ 41] [ 8] [18001000] +08:04:54 [ 42] [ 15] [NATIVE ] +08:04:54 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:04:54 [ 49] [ 3] [418] +08:04:54 [ 52] [ 16] [1A2F1C571474B7A7] +08:04:54 ============================================================================ +08:04:54 + + +waiting on router queue for slot.... +08:04:54 Sending to : <4> +08:04:54 ============================================================================ +08:04:54 ============================================================================ +08:04:54 Slot Id : <121> +08:04:54 Transaction Type : REQUEST +08:04:54 Received From : +08:04:54 ============================================================================ +08:04:54 FNo. Len. Field Value +08:04:54 ============================================================================ +08:04:54 [ 1] [ 4] [0800] +08:04:54 [ 7] [ 10] [0320011242] +08:04:54 [ 11] [ 6] [014974] +08:04:54 [ 37] [ 12] [57908014974] +08:04:54 [ 70] [ 3] [301] +08:04:54 ============================================================================ +08:04:54 + + +waiting on router queue for slot.... +08:04:54 Sending to : +08:04:54 ============================================================================ +08:04:54 ============================================================================ +08:04:54 Slot Id : <121> +08:04:54 Transaction Type : RESPONSE +08:04:54 Received From : +08:04:54 ============================================================================ +08:04:54 FNo. Len. Field Value +08:04:54 ============================================================================ +08:04:54 [ 1] [ 4] [0810] +08:04:54 [ 7] [ 10] [0320011242] +08:04:54 [ 11] [ 6] [014974] +08:04:54 [ 37] [ 12] [579080149740] +08:04:54 [ 39] [ 2] [00] +08:04:54 [ 70] [ 3] [810] +08:04:54 ============================================================================ +08:04:54 Calculate Source COMM Id = 1 +08:04:54 ============================================================================ +08:04:54 + + +waiting on router queue for slot.... +08:04:55 ============================================================================ +08:04:55 Slot Id : <113> +08:04:55 Transaction Type : RESPONSE +08:04:55 Received From : +08:04:55 ============================================================================ +08:04:55 FNo. Len. Field Value +08:04:55 ============================================================================ +08:04:55 [ 1] [ 4] [0210] +08:04:55 [ 2] [ 16] [6688990101025904] +08:04:55 [ 3] [ 6] [300000] +08:04:55 [ 4] [ 12] [000000000000] +08:04:55 [ 11] [ 6] [678165] +08:04:55 [ 12] [ 6] [080450] +08:04:55 [ 15] [ 4] [0320] +08:04:55 [ 18] [ 4] [6011] +08:04:55 [ 32] [ 6] [621354] +08:04:55 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:04:55 [ 37] [ 12] [507904719357] +08:04:55 [ 38] [ 6] [868992] +08:04:55 [ 39] [ 2] [00] +08:04:55 [ 41] [ 8] [18001000] +08:04:55 [ 49] [ 3] [418] +08:04:55 [ 54] [ 20] [0002418C000218402010] +08:04:55 ============================================================================ +08:04:55 Sending to : +08:04:55 ============================================================================ +08:04:55 + + +waiting on router queue for slot.... +08:04:56 ============================================================================ +08:04:56 Slot Id : <113> +08:04:56 Transaction Type : RESPONSE +08:04:56 Received From : +08:04:56 ============================================================================ +08:04:56 FNo. Len. Field Value +08:04:56 ============================================================================ +08:04:56 [ 1] [ 4] [0210] +08:04:56 [ 2] [ 16] [6688990101025904] +08:04:56 [ 3] [ 6] [300000] +08:04:56 [ 4] [ 12] [000000000000] +08:04:56 [ 11] [ 6] [678165] +08:04:56 [ 12] [ 6] [080450] +08:04:56 [ 15] [ 4] [0320] +08:04:56 [ 18] [ 4] [6011] +08:04:56 [ 32] [ 6] [621354] +08:04:56 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:04:56 [ 37] [ 12] [507904719357] +08:04:56 [ 38] [ 6] [868992] +08:04:56 [ 39] [ 2] [00] +08:04:56 [ 41] [ 8] [18001000] +08:04:56 [ 49] [ 3] [418] +08:04:56 [ 54] [ 20] [0002418C000218402010] +08:04:56 ============================================================================ +08:04:56 Calculate Source COMM Id = 0 +08:04:56 ============================================================================ +08:04:56 + + +waiting on router queue for slot.... +08:04:57 ============================================================================ +08:04:57 Slot Id : <108> +08:04:57 Transaction Type : REQUEST +08:04:57 Received From : +08:04:57 ============================================================================ +08:04:57 FNo. Len. Field Value +08:04:57 ============================================================================ +08:04:57 [ 1] [ 4] [0200] +08:04:57 [ 2] [ 16] [1808930200055176] +08:04:57 [ 3] [ 6] [011000] +08:04:57 [ 4] [ 12] [000020000000] +08:04:57 [ 7] [ 10] [0320080453] +08:04:57 [ 11] [ 6] [678178] +08:04:57 [ 12] [ 6] [080453] +08:04:57 [ 13] [ 4] [0320] +08:04:57 [ 15] [ 4] [0320] +08:04:57 [ 18] [ 4] [6011] +08:04:57 [ 22] [ 3] [900] +08:04:57 [ 25] [ 2] [02] +08:04:57 [ 28] [ 9] [D00002000] +08:04:57 [ 32] [ 6] [621354] +08:04:57 [ 35] [ 27] [1808930200055176=1803500206] +08:04:57 [ 37] [ 12] [507903592039] +08:04:57 [ 41] [ 8] [16001200] +08:04:57 [ 42] [ 15] [NATIVE ] +08:04:57 [ 43] [ 40] [Dongdok 01 Xaythany LAO] +08:04:57 [ 49] [ 3] [418] +08:04:57 [ 52] [ 16] [E021A685EC09293C] +08:04:57 ============================================================================ +08:04:57 + + +waiting on router queue for slot.... +08:04:57 Sending to : +08:04:57 ============================================================================ +08:04:57 Sending to : +08:04:57 ============================================================================ +08:04:57 ============================================================================ +08:04:57 Slot Id : <108> +08:04:57 Transaction Type : REQUEST +08:04:57 Received From : +08:04:57 ============================================================================ +08:04:57 FNo. Len. Field Value +08:04:57 ============================================================================ +08:04:57 [ 1] [ 4] [0200] +08:04:57 [ 2] [ 16] [1808930200055176] +08:04:57 [ 3] [ 6] [011000] +08:04:57 [ 4] [ 12] [000020000000] +08:04:57 [ 7] [ 10] [0320080453] +08:04:57 [ 11] [ 6] [678178] +08:04:57 [ 12] [ 6] [080453] +08:04:57 [ 13] [ 4] [0320] +08:04:57 [ 15] [ 4] [0320] +08:04:57 [ 18] [ 4] [6011] +08:04:57 [ 22] [ 3] [900] +08:04:57 [ 25] [ 2] [02] +08:04:57 [ 28] [ 9] [D00002000] +08:04:57 [ 32] [ 6] [621354] +08:04:57 [ 35] [ 27] [1808930200055176=1803500206] +08:04:57 [ 37] [ 12] [507903592039] +08:04:57 [ 41] [ 8] [16001200] +08:04:57 [ 42] [ 15] [NATIVE ] +08:04:57 [ 43] [ 40] [Dongdok 01 Xaythany LAO] +08:04:57 [ 49] [ 3] [418] +08:04:57 [ 52] [ 16] [E021A685EC09293C] +08:04:57 ============================================================================ +08:04:57 + + +waiting on router queue for slot.... +08:04:57 Sending to : +08:04:57 ============================================================================ +08:04:57 ============================================================================ +08:04:57 Slot Id : <108> +08:04:57 Transaction Type : REQUEST +08:04:57 Received From : +08:04:57 ============================================================================ +08:04:57 FNo. Len. Field Value +08:04:57 ============================================================================ +08:04:57 [ 1] [ 4] [0200] +08:04:57 [ 2] [ 16] [1808930200055176] +08:04:57 [ 3] [ 6] [011000] +08:04:57 [ 4] [ 12] [000020000000] +08:04:57 [ 7] [ 10] [0320080453] +08:04:57 [ 11] [ 6] [678178] +08:04:57 [ 12] [ 6] [080453] +08:04:57 [ 13] [ 4] [0320] +08:04:57 [ 15] [ 4] [0320] +08:04:57 [ 18] [ 4] [6011] +08:04:57 [ 22] [ 3] [900] +08:04:57 [ 25] [ 2] [02] +08:04:57 [ 28] [ 9] [D00002000] +08:04:57 [ 32] [ 6] [621354] +08:04:57 [ 35] [ 27] [1808930200055176=1803500206] +08:04:57 [ 37] [ 12] [507903592039] +08:04:57 [ 41] [ 8] [16001200] +08:04:57 [ 42] [ 15] [NATIVE ] +08:04:57 [ 43] [ 40] [Dongdok 01 Xaythany LAO] +08:04:57 [ 49] [ 3] [418] +08:04:57 [ 52] [ 16] [E1F4BF06A157AF9B] +08:04:57 ============================================================================ +08:04:57 + + +waiting on router queue for slot.... +08:04:57 Sending to : <2> +08:04:57 ============================================================================ +08:05:01 ============================================================================ +08:05:01 Slot Id : <108> +08:05:01 Transaction Type : RESPONSE +08:05:01 Received From : +08:05:01 ============================================================================ +08:05:01 FNo. Len. Field Value +08:05:01 ============================================================================ +08:05:01 [ 1] [ 4] [0210] +08:05:01 [ 2] [ 16] [1808930200055176] +08:05:01 [ 3] [ 6] [011000] +08:05:01 [ 4] [ 12] [000020000000] +08:05:01 [ 6] [ 12] [000020000000] +08:05:01 [ 7] [ 10] [0320080453] +08:05:01 [ 11] [ 6] [678178] +08:05:01 [ 12] [ 6] [080453] +08:05:01 [ 13] [ 4] [0320] +08:05:01 [ 18] [ 4] [6011] +08:05:01 [ 19] [ 3] [418] +08:05:01 [ 22] [ 3] [021] +08:05:01 [ 32] [ 6] [621354] +08:05:01 [ 35] [ 27] [1808930200055176=1803500206] +08:05:01 [ 37] [ 12] [507903592039] +08:05:01 [ 38] [ 6] [678178] +08:05:01 [ 39] [ 2] [00] +08:05:01 [ 41] [ 8] [16001200] +08:05:01 [ 49] [ 3] [418] +08:05:01 [ 52] [ 16] [E1F4BF06A157AF9B] +08:05:01 [ 54] [ 20] [1001418C000006703600] +08:05:01 ============================================================================ +08:05:01 Sending to : +08:05:01 ============================================================================ +08:05:01 + + +waiting on router queue for slot.... +08:05:02 ============================================================================ +08:05:02 Slot Id : <108> +08:05:02 Transaction Type : RESPONSE +08:05:02 Received From : +08:05:02 ============================================================================ +08:05:02 FNo. Len. Field Value +08:05:02 ============================================================================ +08:05:02 [ 1] [ 4] [0210] +08:05:02 [ 2] [ 16] [1808930200055176] +08:05:02 [ 3] [ 6] [011000] +08:05:02 [ 4] [ 12] [000020000000] +08:05:02 [ 6] [ 12] [000020000000] +08:05:02 [ 7] [ 10] [0320080453] +08:05:02 [ 11] [ 6] [678178] +08:05:02 [ 12] [ 6] [080453] +08:05:02 [ 13] [ 4] [0320] +08:05:02 [ 18] [ 4] [6011] +08:05:02 [ 19] [ 3] [418] +08:05:02 [ 22] [ 3] [021] +08:05:02 [ 32] [ 6] [621354] +08:05:02 [ 35] [ 27] [1808930200055176=1803500206] +08:05:02 [ 37] [ 12] [507903592039] +08:05:02 [ 38] [ 6] [678178] +08:05:02 [ 39] [ 2] [00] +08:05:02 [ 41] [ 8] [16001200] +08:05:02 [ 49] [ 3] [418] +08:05:02 [ 52] [ 16] [E1F4BF06A157AF9B] +08:05:02 [ 54] [ 20] [1001418C000006703600] +08:05:02 ============================================================================ +08:05:02 Calculate Source COMM Id = 0 +08:05:02 ============================================================================ +08:05:02 + + +waiting on router queue for slot.... +08:05:09 ============================================================================ +08:05:09 Slot Id : <94> +08:05:09 Transaction Type : REQUEST +08:05:09 Received From : +08:05:09 ============================================================================ +08:05:09 FNo. Len. Field Value +08:05:09 ============================================================================ +08:05:09 [ 1] [ 4] [0800] +08:05:09 [ 7] [ 10] [0320010417] +08:05:09 [ 11] [ 6] [155319] +08:05:09 [ 70] [ 3] [301] +08:05:09 ============================================================================ +08:05:09 + + +waiting on router queue for slot.... +08:05:09 Sending to : +08:05:09 ============================================================================ +08:05:09 ============================================================================ +08:05:09 Slot Id : <94> +08:05:09 Transaction Type : RESPONSE +08:05:09 Received From : +08:05:09 ============================================================================ +08:05:09 FNo. Len. Field Value +08:05:09 ============================================================================ +08:05:09 [ 1] [ 4] [0810] +08:05:09 [ 7] [ 10] [0320010417] +08:05:09 [ 11] [ 6] [155319] +08:05:09 [ 39] [ 2] [00] +08:05:09 [ 70] [ 3] [301] +08:05:09 ============================================================================ +08:05:09 Calculate Source COMM Id = 2 +08:05:09 ============================================================================ +08:05:09 + + +waiting on router queue for slot.... +08:05:14 ============================================================================ +08:05:14 Slot Id : <115> +08:05:14 Transaction Type : REQUEST +08:05:14 Received From : +08:05:14 ============================================================================ +08:05:14 FNo. Len. Field Value +08:05:14 ============================================================================ +08:05:14 [ 1] [ 4] [0800] +08:05:14 [ 2] [ 5] [02531] +08:05:14 [ 3] [ 6] [579088] +08:05:14 [ 7] [ 10] [0320010514] +08:05:14 [ 11] [ 6] [806881] +08:05:14 [ 15] [ 10] [0320010514] +08:05:14 [ 37] [ 11] [57908806881] +08:05:14 [ 70] [ 3] [001] +08:05:14 ============================================================================ +08:05:14 + + +waiting on router queue for slot.... +08:05:14 ============================================================================ +08:05:14 Slot Id : <115> +08:05:14 Transaction Type : RESPONSE +08:05:14 Received From : +08:05:14 ============================================================================ +08:05:14 FNo. Len. Field Value +08:05:14 ============================================================================ +08:05:14 [ 1] [ 4] [0810] +08:05:14 [ 7] [ 10] [0320010514] +08:05:14 [ 11] [ 6] [806881] +08:05:14 [ 15] [ 4] [0320] +08:05:14 [ 37] [ 12] [57908806881] +08:05:14 [ 39] [ 2] [00] +08:05:14 [ 70] [ 3] [001] +08:05:14 ============================================================================ +08:05:14 Sending to : +08:05:14 ============================================================================ +08:05:14 + + +waiting on router queue for slot.... +08:05:25 ============================================================================ +08:05:25 Slot Id : <127> +08:05:25 Transaction Type : REQUEST +08:05:25 Received From : +08:05:25 ============================================================================ +08:05:25 FNo. Len. Field Value +08:05:25 ============================================================================ +08:05:25 [ 1] [ 4] [0800] +08:05:25 [ 7] [ 10] [0320010433] +08:05:25 [ 11] [ 6] [155320] +08:05:25 [ 70] [ 3] [301] +08:05:25 ============================================================================ +08:05:25 + + +waiting on router queue for slot.... +08:05:25 Sending to : +08:05:25 ============================================================================ +08:05:25 ============================================================================ +08:05:25 Slot Id : <127> +08:05:25 Transaction Type : RESPONSE +08:05:25 Received From : +08:05:25 ============================================================================ +08:05:25 FNo. Len. Field Value +08:05:25 ============================================================================ +08:05:25 [ 1] [ 4] [0810] +08:05:25 [ 7] [ 10] [0320010433] +08:05:25 [ 11] [ 6] [155320] +08:05:25 [ 39] [ 2] [00] +08:05:25 [ 70] [ 3] [301] +08:05:25 ============================================================================ +08:05:25 Calculate Source COMM Id = 2 +08:05:25 ============================================================================ +08:05:25 + + +waiting on router queue for slot.... +08:05:26 ============================================================================ +08:05:26 Slot Id : <95> +08:05:26 Transaction Type : REQUEST +08:05:26 Received From : +08:05:26 ============================================================================ +08:05:26 FNo. Len. Field Value +08:05:26 ============================================================================ +08:05:26 [ 1] [ 4] [0800] +08:05:26 [ 7] [ 10] [0320151714] +08:05:26 [ 11] [ 6] [081714] +08:05:26 [ 37] [ 12] [57908081714] +08:05:26 [ 70] [ 3] [301] +08:05:26 ============================================================================ +08:05:26 + + +waiting on router queue for slot.... +08:05:26 Sending to : +08:05:26 ============================================================================ +08:05:26 ============================================================================ +08:05:26 Slot Id : <95> +08:05:26 Transaction Type : RESPONSE +08:05:26 Received From : +08:05:26 ============================================================================ +08:05:26 FNo. Len. Field Value +08:05:26 ============================================================================ +08:05:26 [ 1] [ 4] [0810] +08:05:26 [ 7] [ 10] [0320151714] +08:05:26 [ 11] [ 6] [081714] +08:05:26 [ 37] [ 12] [579080817140] +08:05:26 [ 39] [ 2] [00] +08:05:26 [ 70] [ 3] [810] +08:05:26 ============================================================================ +08:05:26 Calculate Source COMM Id = 6 +08:05:26 ============================================================================ +08:05:26 + + +waiting on router queue for slot.... +08:05:29 ============================================================================ +08:05:29 Slot Id : <125> +08:05:29 Transaction Type : REQUEST +08:05:29 Received From : +08:05:29 ============================================================================ +08:05:29 FNo. Len. Field Value +08:05:29 ============================================================================ +08:05:29 [ 1] [ 4] [0200] +08:05:29 [ 2] [ 16] [6213544001840682] +08:05:29 [ 3] [ 6] [311000] +08:05:29 [ 4] [ 12] [000000000000] +08:05:29 [ 7] [ 10] [0320081317] +08:05:29 [ 11] [ 6] [079023] +08:05:29 [ 12] [ 6] [081317] +08:05:29 [ 13] [ 4] [0320] +08:05:29 [ 14] [ 4] [4912] +08:05:29 [ 15] [ 4] [0320] +08:05:29 [ 18] [ 4] [6011] +08:05:29 [ 22] [ 3] [900] +08:05:29 [ 25] [ 2] [02] +08:05:29 [ 28] [ 9] [000000000] +08:05:29 [ 32] [ 6] [220699] +08:05:29 [ 35] [ 32] [6213544001840682=491212014068775] +08:05:29 [ 37] [ 12] [507900132913] +08:05:29 [ 41] [ 8] [03000100] +08:05:29 [ 42] [ 15] [APTRA ] +08:05:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:05:29 [ 49] [ 3] [418] +08:05:29 [ 52] [ 16] [73B4E5E837BE4C52] +08:05:29 ============================================================================ +08:05:29 + + +waiting on router queue for slot.... +08:05:29 Sending to : +08:05:29 ============================================================================ +08:05:29 Sending to : +08:05:29 ============================================================================ +08:05:30 ============================================================================ +08:05:30 Slot Id : <125> +08:05:30 Transaction Type : REQUEST +08:05:30 Received From : +08:05:30 ============================================================================ +08:05:30 FNo. Len. Field Value +08:05:30 ============================================================================ +08:05:30 [ 1] [ 4] [0200] +08:05:30 [ 2] [ 16] [6213544001840682] +08:05:30 [ 3] [ 6] [311000] +08:05:30 [ 4] [ 12] [000000000000] +08:05:30 [ 7] [ 10] [0320081317] +08:05:30 [ 11] [ 6] [079023] +08:05:30 [ 12] [ 6] [081317] +08:05:30 [ 13] [ 4] [0320] +08:05:30 [ 14] [ 4] [4912] +08:05:30 [ 15] [ 4] [0320] +08:05:30 [ 18] [ 4] [6011] +08:05:30 [ 22] [ 3] [900] +08:05:30 [ 25] [ 2] [02] +08:05:30 [ 28] [ 9] [000000000] +08:05:30 [ 32] [ 6] [220699] +08:05:30 [ 35] [ 32] [6213544001840682=491212014068775] +08:05:30 [ 37] [ 12] [507900132913] +08:05:30 [ 41] [ 8] [03000100] +08:05:30 [ 42] [ 15] [APTRA ] +08:05:30 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:05:30 [ 49] [ 3] [418] +08:05:30 [ 52] [ 16] [73B4E5E837BE4C52] +08:05:30 ============================================================================ +08:05:30 + + +waiting on router queue for slot.... +08:05:30 Sending to : +08:05:30 ============================================================================ +08:05:30 ============================================================================ +08:05:30 Slot Id : <125> +08:05:30 Transaction Type : REQUEST +08:05:30 Received From : +08:05:30 ============================================================================ +08:05:30 FNo. Len. Field Value +08:05:30 ============================================================================ +08:05:30 [ 1] [ 4] [0200] +08:05:30 [ 2] [ 16] [6213544001840682] +08:05:30 [ 3] [ 6] [311000] +08:05:30 [ 4] [ 12] [000000000000] +08:05:30 [ 7] [ 10] [0320081317] +08:05:30 [ 11] [ 6] [079023] +08:05:30 [ 12] [ 6] [081317] +08:05:30 [ 13] [ 4] [0320] +08:05:30 [ 14] [ 4] [4912] +08:05:30 [ 15] [ 4] [0320] +08:05:30 [ 18] [ 4] [6011] +08:05:30 [ 22] [ 3] [900] +08:05:30 [ 25] [ 2] [02] +08:05:30 [ 28] [ 9] [000000000] +08:05:30 [ 32] [ 6] [220699] +08:05:30 [ 35] [ 32] [6213544001840682=491212014068775] +08:05:30 [ 37] [ 12] [507900132913] +08:05:30 [ 41] [ 8] [03000100] +08:05:30 [ 42] [ 15] [APTRA ] +08:05:30 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:05:30 [ 49] [ 3] [418] +08:05:30 [ 52] [ 16] [FF56D334FB22424C] +08:05:30 ============================================================================ +08:05:30 + + +waiting on router queue for slot.... +08:05:30 Sending to : <0> +08:05:30 ============================================================================ +08:05:30 ============================================================================ +08:05:30 Slot Id : <125> +08:05:30 Transaction Type : RESPONSE +08:05:30 Received From : +08:05:30 ============================================================================ +08:05:30 FNo. Len. Field Value +08:05:30 ============================================================================ +08:05:30 [ 1] [ 4] [0210] +08:05:30 [ 2] [ 16] [6213544001840682] +08:05:30 [ 3] [ 6] [311000] +08:05:30 [ 4] [ 12] [000000000000] +08:05:30 [ 7] [ 10] [0320081317] +08:05:30 [ 11] [ 6] [079023] +08:05:30 [ 12] [ 6] [081317] +08:05:30 [ 13] [ 4] [0320] +08:05:30 [ 15] [ 4] [0320] +08:05:30 [ 18] [ 4] [6011] +08:05:30 [ 32] [ 6] [220699] +08:05:30 [ 35] [ 32] [6213544001840682=491212014068775] +08:05:30 [ 37] [ 12] [507900132913] +08:05:30 [ 38] [ 6] [437286] +08:05:30 [ 39] [ 2] [00] +08:05:30 [ 41] [ 8] [03000100] +08:05:30 [ 49] [ 3] [418] +08:05:30 [ 54] [ 40] [1001418C0000030817231002418C000003081723] +08:05:30 ============================================================================ +08:05:30 Sending to : +08:05:30 ============================================================================ +08:05:30 + + +waiting on router queue for slot.... +08:05:32 ============================================================================ +08:05:32 Slot Id : <125> +08:05:32 Transaction Type : RESPONSE +08:05:32 Received From : +08:05:32 ============================================================================ +08:05:32 FNo. Len. Field Value +08:05:32 ============================================================================ +08:05:32 [ 1] [ 4] [0210] +08:05:32 [ 2] [ 16] [6213544001840682] +08:05:32 [ 3] [ 6] [311000] +08:05:32 [ 4] [ 12] [000000000000] +08:05:32 [ 7] [ 10] [0320081317] +08:05:32 [ 11] [ 6] [079023] +08:05:32 [ 12] [ 6] [081317] +08:05:32 [ 13] [ 4] [0320] +08:05:32 [ 15] [ 4] [0320] +08:05:32 [ 18] [ 4] [6011] +08:05:32 [ 32] [ 6] [220699] +08:05:32 [ 35] [ 32] [6213544001840682=491212014068775] +08:05:32 [ 37] [ 12] [507900132913] +08:05:32 [ 38] [ 6] [437286] +08:05:32 [ 39] [ 2] [00] +08:05:32 [ 41] [ 8] [03000100] +08:05:32 [ 49] [ 3] [418] +08:05:32 [ 54] [ 40] [1001418C0000030817231002418C000003081723] +08:05:32 ============================================================================ +08:05:32 Calculate Source COMM Id = 1 +08:05:32 ============================================================================ +08:05:32 + + +waiting on router queue for slot.... +08:05:36 ============================================================================ +08:05:36 Slot Id : <75> +08:05:36 Transaction Type : REQUEST +08:05:36 Received From : +08:05:36 ============================================================================ +08:05:36 FNo. Len. Field Value +08:05:36 ============================================================================ +08:05:36 [ 1] [ 4] [0800] +08:05:36 [ 7] [ 10] [0320010444] +08:05:36 [ 11] [ 6] [155321] +08:05:36 [ 70] [ 3] [301] +08:05:36 ============================================================================ +08:05:36 + + +waiting on router queue for slot.... +08:05:36 Sending to : +08:05:36 ============================================================================ +08:05:36 ============================================================================ +08:05:36 Slot Id : <75> +08:05:36 Transaction Type : RESPONSE +08:05:36 Received From : +08:05:36 ============================================================================ +08:05:36 FNo. Len. Field Value +08:05:36 ============================================================================ +08:05:36 [ 1] [ 4] [0810] +08:05:36 [ 7] [ 10] [0320010444] +08:05:36 [ 11] [ 6] [155321] +08:05:36 [ 39] [ 2] [00] +08:05:36 [ 70] [ 3] [301] +08:05:36 ============================================================================ +08:05:36 Calculate Source COMM Id = 2 +08:05:36 ============================================================================ +08:05:36 + + +waiting on router queue for slot.... +08:05:36 ============================================================================ +08:05:36 Slot Id : <53> +08:05:36 Transaction Type : REQUEST +08:05:36 Received From : +08:05:36 ============================================================================ +08:05:36 FNo. Len. Field Value +08:05:36 ============================================================================ +08:05:36 [ 1] [ 4] [0200] +08:05:36 [ 2] [ 16] [6213544001980306] +08:05:36 [ 3] [ 6] [010000] +08:05:36 [ 4] [ 12] [000100000000] +08:05:36 [ 7] [ 10] [0320010444] +08:05:36 [ 11] [ 6] [267019] +08:05:36 [ 12] [ 6] [080444] +08:05:36 [ 13] [ 4] [0320] +08:05:36 [ 14] [ 4] [4912] +08:05:36 [ 15] [ 4] [0320] +08:05:36 [ 18] [ 4] [6011] +08:05:36 [ 19] [ 3] [418] +08:05:36 [ 22] [ 3] [021] +08:05:36 [ 25] [ 2] [01] +08:05:36 [ 28] [ 9] [D00002000] +08:05:36 [ 32] [ 6] [180893] +08:05:36 [ 35] [ 32] [6213544001980306=491212018030216] +08:05:36 [ 37] [ 12] [507901267019] +08:05:36 [ 41] [ 8] [0522XYXH] +08:05:36 [ 42] [ 15] [999999 ] +08:05:36 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:05:36 [ 49] [ 3] [418] +08:05:36 [ 52] [ 16] [9EB6B23E3AFCDF0C] +08:05:36 ============================================================================ +08:05:36 + + +waiting on router queue for slot.... +08:05:36 Sending to : +08:05:36 ============================================================================ +08:05:36 Sending to : +08:05:36 ============================================================================ +08:05:37 ============================================================================ +08:05:37 Slot Id : <53> +08:05:37 Transaction Type : REQUEST +08:05:37 Received From : +08:05:37 ============================================================================ +08:05:37 FNo. Len. Field Value +08:05:37 ============================================================================ +08:05:37 [ 1] [ 4] [0200] +08:05:37 [ 2] [ 16] [6213544001980306] +08:05:37 [ 3] [ 6] [010000] +08:05:37 [ 4] [ 12] [000100000000] +08:05:37 [ 7] [ 10] [0320010444] +08:05:37 [ 11] [ 6] [267019] +08:05:37 [ 12] [ 6] [080444] +08:05:37 [ 13] [ 4] [0320] +08:05:37 [ 14] [ 4] [4912] +08:05:37 [ 15] [ 4] [0320] +08:05:37 [ 18] [ 4] [6011] +08:05:37 [ 19] [ 3] [418] +08:05:37 [ 22] [ 3] [021] +08:05:37 [ 25] [ 2] [01] +08:05:37 [ 28] [ 9] [D00002000] +08:05:37 [ 32] [ 6] [180893] +08:05:37 [ 35] [ 32] [6213544001980306=491212018030216] +08:05:37 [ 37] [ 12] [507901267019] +08:05:37 [ 41] [ 8] [0522XYXH] +08:05:37 [ 42] [ 15] [999999 ] +08:05:37 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:05:37 [ 49] [ 3] [418] +08:05:37 [ 52] [ 16] [9EB6B23E3AFCDF0C] +08:05:37 ============================================================================ +08:05:37 + + +waiting on router queue for slot.... +08:05:37 Sending to : +08:05:37 ============================================================================ +08:05:37 ============================================================================ +08:05:37 Slot Id : <53> +08:05:37 Transaction Type : REQUEST +08:05:37 Received From : +08:05:37 ============================================================================ +08:05:37 FNo. Len. Field Value +08:05:37 ============================================================================ +08:05:37 [ 1] [ 4] [0200] +08:05:37 [ 2] [ 16] [6213544001980306] +08:05:37 [ 3] [ 6] [010000] +08:05:37 [ 4] [ 12] [000100000000] +08:05:37 [ 7] [ 10] [0320010444] +08:05:37 [ 11] [ 6] [267019] +08:05:37 [ 12] [ 6] [080444] +08:05:37 [ 13] [ 4] [0320] +08:05:37 [ 14] [ 4] [4912] +08:05:37 [ 15] [ 4] [0320] +08:05:37 [ 18] [ 4] [6011] +08:05:37 [ 19] [ 3] [418] +08:05:37 [ 22] [ 3] [021] +08:05:37 [ 25] [ 2] [01] +08:05:37 [ 28] [ 9] [D00002000] +08:05:37 [ 32] [ 6] [180893] +08:05:37 [ 35] [ 32] [6213544001980306=491212018030216] +08:05:37 [ 37] [ 12] [507901267019] +08:05:37 [ 41] [ 8] [0522XYXH] +08:05:37 [ 42] [ 15] [999999 ] +08:05:37 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:05:37 [ 49] [ 3] [418] +08:05:37 [ 52] [ 16] [E8D39E041D8BC752] +08:05:37 ============================================================================ +08:05:37 + + +waiting on router queue for slot.... +08:05:37 Sending to : <0> +08:05:37 ============================================================================ +08:05:37 ============================================================================ +08:05:37 Slot Id : <53> +08:05:37 Transaction Type : RESPONSE +08:05:37 Received From : +08:05:37 ============================================================================ +08:05:37 FNo. Len. Field Value +08:05:37 ============================================================================ +08:05:37 [ 1] [ 4] [0210] +08:05:37 [ 2] [ 16] [6213544001980306] +08:05:37 [ 3] [ 6] [010000] +08:05:37 [ 4] [ 12] [000100000000] +08:05:37 [ 7] [ 10] [0320010444] +08:05:37 [ 11] [ 6] [267019] +08:05:37 [ 12] [ 6] [080444] +08:05:37 [ 13] [ 4] [0320] +08:05:37 [ 15] [ 4] [0320] +08:05:37 [ 18] [ 4] [6011] +08:05:37 [ 19] [ 3] [418] +08:05:37 [ 32] [ 6] [180893] +08:05:37 [ 35] [ 32] [6213544001980306=491212018030216] +08:05:37 [ 37] [ 12] [507901267019] +08:05:37 [ 38] [ 6] [318539] +08:05:37 [ 39] [ 2] [00] +08:05:37 [ 41] [ 8] [0522XYXH] +08:05:37 [ 49] [ 3] [418] +08:05:37 [ 54] [ 40] [0001418C0001226112640002418C000122611264] +08:05:37 ============================================================================ +08:05:37 Sending to : +08:05:37 ============================================================================ +08:05:37 + + +waiting on router queue for slot.... +08:05:38 ============================================================================ +08:05:38 Slot Id : <134> +08:05:38 Transaction Type : REQUEST +08:05:38 Received From : +08:05:38 ============================================================================ +08:05:38 FNo. Len. Field Value +08:05:38 ============================================================================ +08:05:38 [ 1] [ 4] [0200] +08:05:38 [ 2] [ 16] [6213548000228765] +08:05:38 [ 3] [ 6] [010000] +08:05:38 [ 4] [ 12] [000005000000] +08:05:38 [ 7] [ 10] [0320080329] +08:05:38 [ 11] [ 6] [931801] +08:05:38 [ 12] [ 6] [080329] +08:05:38 [ 13] [ 4] [0320] +08:05:38 [ 15] [ 4] [0320] +08:05:38 [ 18] [ 4] [6011] +08:05:38 [ 19] [ 3] [418] +08:05:38 [ 22] [ 3] [021] +08:05:38 [ 25] [ 2] [01] +08:05:38 [ 28] [ 9] [D00002000] +08:05:38 [ 32] [ 6] [668899] +08:05:38 [ 35] [ 32] [6213548000228765=180112012876625] +08:05:38 [ 37] [ 12] [507901963372] +08:05:38 [ 41] [ 8] [03020019] +08:05:38 [ 42] [ 15] [APT ] +08:05:38 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +08:05:38 [ 49] [ 3] [418] +08:05:38 [ 52] [ 16] [494ED059B44D3600] +08:05:38 ============================================================================ +08:05:38 + + +waiting on router queue for slot.... +08:05:38 Sending to : +08:05:38 ============================================================================ +08:05:38 Sending to : +08:05:38 ============================================================================ +08:05:38 ============================================================================ +08:05:38 Slot Id : <134> +08:05:38 Transaction Type : REQUEST +08:05:38 Received From : +08:05:38 ============================================================================ +08:05:38 FNo. Len. Field Value +08:05:38 ============================================================================ +08:05:38 [ 1] [ 4] [0200] +08:05:38 [ 2] [ 16] [6213548000228765] +08:05:38 [ 3] [ 6] [010000] +08:05:38 [ 4] [ 12] [000005000000] +08:05:38 [ 7] [ 10] [0320080329] +08:05:38 [ 11] [ 6] [931801] +08:05:38 [ 12] [ 6] [080329] +08:05:38 [ 13] [ 4] [0320] +08:05:38 [ 15] [ 4] [0320] +08:05:38 [ 18] [ 4] [6011] +08:05:38 [ 19] [ 3] [418] +08:05:38 [ 22] [ 3] [021] +08:05:38 [ 25] [ 2] [01] +08:05:38 [ 28] [ 9] [D00002000] +08:05:38 [ 32] [ 6] [668899] +08:05:38 [ 35] [ 32] [6213548000228765=180112012876625] +08:05:38 [ 37] [ 12] [507901963372] +08:05:38 [ 41] [ 8] [03020019] +08:05:38 [ 42] [ 15] [APT ] +08:05:38 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +08:05:38 [ 49] [ 3] [418] +08:05:38 [ 52] [ 16] [494ED059B44D3600] +08:05:38 ============================================================================ +08:05:38 + + +waiting on router queue for slot.... +08:05:38 Sending to : +08:05:38 ============================================================================ +08:05:38 ============================================================================ +08:05:38 Slot Id : <134> +08:05:38 Transaction Type : REQUEST +08:05:38 Received From : +08:05:38 ============================================================================ +08:05:38 FNo. Len. Field Value +08:05:38 ============================================================================ +08:05:38 [ 1] [ 4] [0200] +08:05:38 [ 2] [ 16] [6213548000228765] +08:05:38 [ 3] [ 6] [010000] +08:05:38 [ 4] [ 12] [000005000000] +08:05:38 [ 7] [ 10] [0320080329] +08:05:38 [ 11] [ 6] [931801] +08:05:38 [ 12] [ 6] [080329] +08:05:38 [ 13] [ 4] [0320] +08:05:38 [ 15] [ 4] [0320] +08:05:38 [ 18] [ 4] [6011] +08:05:38 [ 19] [ 3] [418] +08:05:38 [ 22] [ 3] [021] +08:05:38 [ 25] [ 2] [01] +08:05:38 [ 28] [ 9] [D00002000] +08:05:38 [ 32] [ 6] [668899] +08:05:38 [ 35] [ 32] [6213548000228765=180112012876625] +08:05:38 [ 37] [ 12] [507901963372] +08:05:38 [ 41] [ 8] [03020019] +08:05:38 [ 42] [ 15] [APT ] +08:05:38 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +08:05:38 [ 49] [ 3] [418] +08:05:38 [ 52] [ 16] [66ECB78EE226E6C1] +08:05:38 ============================================================================ +08:05:38 + + +waiting on router queue for slot.... +08:05:38 Sending to : <0> +08:05:38 ============================================================================ +08:05:38 ============================================================================ +08:05:38 Slot Id : <98> +08:05:38 Transaction Type : REQUEST +08:05:38 Received From : +08:05:38 ============================================================================ +08:05:38 FNo. Len. Field Value +08:05:38 ============================================================================ +08:05:38 [ 1] [ 4] [0200] +08:05:38 [ 2] [ 16] [6688990101025904] +08:05:38 [ 3] [ 6] [010000] +08:05:38 [ 4] [ 12] [000100000000] +08:05:38 [ 7] [ 10] [0320080534] +08:05:38 [ 11] [ 6] [678399] +08:05:38 [ 12] [ 6] [080534] +08:05:38 [ 13] [ 4] [0320] +08:05:38 [ 15] [ 4] [0320] +08:05:38 [ 18] [ 4] [6011] +08:05:38 [ 22] [ 3] [900] +08:05:38 [ 25] [ 2] [02] +08:05:38 [ 28] [ 9] [D00002000] +08:05:38 [ 32] [ 6] [621354] +08:05:38 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:05:38 [ 37] [ 12] [507904719359] +08:05:38 [ 41] [ 8] [18001000] +08:05:38 [ 42] [ 15] [NATIVE ] +08:05:38 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:05:38 [ 49] [ 3] [418] +08:05:38 [ 52] [ 16] [9A5B843C1EA1B1CC] +08:05:38 ============================================================================ +08:05:38 + + +waiting on router queue for slot.... +08:05:38 Sending to : +08:05:38 ============================================================================ +08:05:38 Sending to : +08:05:38 ============================================================================ +08:05:38 ============================================================================ +08:05:38 Slot Id : <98> +08:05:38 Transaction Type : REQUEST +08:05:38 Received From : +08:05:38 ============================================================================ +08:05:38 FNo. Len. Field Value +08:05:38 ============================================================================ +08:05:38 [ 1] [ 4] [0200] +08:05:38 [ 2] [ 16] [6688990101025904] +08:05:38 [ 3] [ 6] [010000] +08:05:38 [ 4] [ 12] [000100000000] +08:05:38 [ 7] [ 10] [0320080534] +08:05:38 [ 11] [ 6] [678399] +08:05:38 [ 12] [ 6] [080534] +08:05:38 [ 13] [ 4] [0320] +08:05:38 [ 15] [ 4] [0320] +08:05:38 [ 18] [ 4] [6011] +08:05:38 [ 22] [ 3] [900] +08:05:38 [ 25] [ 2] [02] +08:05:38 [ 28] [ 9] [D00002000] +08:05:38 [ 32] [ 6] [621354] +08:05:38 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:05:38 [ 37] [ 12] [507904719359] +08:05:38 [ 41] [ 8] [18001000] +08:05:38 [ 42] [ 15] [NATIVE ] +08:05:38 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:05:38 [ 49] [ 3] [418] +08:05:38 [ 52] [ 16] [9A5B843C1EA1B1CC] +08:05:38 ============================================================================ +08:05:38 + + +waiting on router queue for slot.... +08:05:38 Sending to : +08:05:38 ============================================================================ +08:05:38 ============================================================================ +08:05:38 Slot Id : <98> +08:05:38 Transaction Type : REQUEST +08:05:38 Received From : +08:05:38 ============================================================================ +08:05:38 FNo. Len. Field Value +08:05:38 ============================================================================ +08:05:38 [ 1] [ 4] [0200] +08:05:38 [ 2] [ 16] [6688990101025904] +08:05:38 [ 3] [ 6] [010000] +08:05:38 [ 4] [ 12] [000100000000] +08:05:38 [ 7] [ 10] [0320080534] +08:05:38 [ 11] [ 6] [678399] +08:05:38 [ 12] [ 6] [080534] +08:05:38 [ 13] [ 4] [0320] +08:05:38 [ 15] [ 4] [0320] +08:05:38 [ 18] [ 4] [6011] +08:05:38 [ 22] [ 3] [900] +08:05:38 [ 25] [ 2] [02] +08:05:38 [ 28] [ 9] [D00002000] +08:05:38 [ 32] [ 6] [621354] +08:05:38 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:05:38 [ 37] [ 12] [507904719359] +08:05:38 [ 41] [ 8] [18001000] +08:05:38 [ 42] [ 15] [NATIVE ] +08:05:38 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:05:38 [ 49] [ 3] [418] +08:05:38 [ 52] [ 16] [1A2F1C571474B7A7] +08:05:38 ============================================================================ +08:05:38 + + +waiting on router queue for slot.... +08:05:38 Sending to : <4> +08:05:38 ============================================================================ +08:05:39 ============================================================================ +08:05:39 Slot Id : <134> +08:05:39 Transaction Type : RESPONSE +08:05:39 Received From : +08:05:39 ============================================================================ +08:05:39 FNo. Len. Field Value +08:05:39 ============================================================================ +08:05:39 [ 1] [ 4] [0210] +08:05:39 [ 2] [ 16] [6213548000228765] +08:05:39 [ 3] [ 6] [010000] +08:05:39 [ 4] [ 12] [000005000000] +08:05:39 [ 7] [ 10] [0320080329] +08:05:39 [ 11] [ 6] [931801] +08:05:39 [ 12] [ 6] [080329] +08:05:39 [ 13] [ 4] [0320] +08:05:39 [ 15] [ 4] [0320] +08:05:39 [ 18] [ 4] [6011] +08:05:39 [ 19] [ 3] [418] +08:05:39 [ 32] [ 6] [668899] +08:05:39 [ 35] [ 32] [6213548000228765=180112012876625] +08:05:39 [ 37] [ 12] [507901963372] +08:05:39 [ 38] [ 6] [710316] +08:05:39 [ 39] [ 2] [00] +08:05:39 [ 41] [ 8] [03020019] +08:05:39 [ 49] [ 3] [418] +08:05:39 [ 54] [ 40] [0001418C0000157942400002418C000015794240] +08:05:39 ============================================================================ +08:05:39 Sending to : +08:05:39 ============================================================================ +08:05:39 + + +waiting on router queue for slot.... +08:05:39 ============================================================================ +08:05:39 Slot Id : <53> +08:05:39 Transaction Type : RESPONSE +08:05:39 Received From : +08:05:39 ============================================================================ +08:05:39 FNo. Len. Field Value +08:05:39 ============================================================================ +08:05:39 [ 1] [ 4] [0210] +08:05:39 [ 2] [ 16] [6213544001980306] +08:05:39 [ 3] [ 6] [010000] +08:05:39 [ 4] [ 12] [000100000000] +08:05:39 [ 7] [ 10] [0320010444] +08:05:39 [ 11] [ 6] [267019] +08:05:39 [ 12] [ 6] [080444] +08:05:39 [ 13] [ 4] [0320] +08:05:39 [ 15] [ 4] [0320] +08:05:39 [ 18] [ 4] [6011] +08:05:39 [ 19] [ 3] [418] +08:05:39 [ 32] [ 6] [180893] +08:05:39 [ 35] [ 32] [6213544001980306=491212018030216] +08:05:39 [ 37] [ 12] [507901267019] +08:05:39 [ 38] [ 6] [318539] +08:05:39 [ 39] [ 2] [00] +08:05:39 [ 41] [ 8] [0522XYXH] +08:05:39 [ 49] [ 3] [418] +08:05:39 [ 54] [ 40] [0001418C0001226112640002418C000122611264] +08:05:39 ============================================================================ +08:05:39 Calculate Source COMM Id = 2 +08:05:39 ============================================================================ +08:05:39 + + +waiting on router queue for slot.... +08:05:39 ============================================================================ +08:05:39 Slot Id : <98> +08:05:39 Transaction Type : RESPONSE +08:05:39 Received From : +08:05:39 ============================================================================ +08:05:39 FNo. Len. Field Value +08:05:39 ============================================================================ +08:05:39 [ 1] [ 4] [0210] +08:05:39 [ 2] [ 16] [6688990101025904] +08:05:39 [ 3] [ 6] [010000] +08:05:39 [ 4] [ 12] [000100000000] +08:05:39 [ 11] [ 6] [678399] +08:05:39 [ 12] [ 6] [080534] +08:05:39 [ 15] [ 4] [0320] +08:05:39 [ 18] [ 4] [6011] +08:05:39 [ 32] [ 6] [621354] +08:05:39 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:05:39 [ 37] [ 12] [507904719359] +08:05:39 [ 38] [ 6] [291419] +08:05:39 [ 39] [ 2] [00] +08:05:39 [ 41] [ 8] [18001000] +08:05:39 [ 49] [ 3] [418] +08:05:39 [ 54] [ 20] [0002418C000118202010] +08:05:39 ============================================================================ +08:05:39 Sending to : +08:05:39 ============================================================================ +08:05:39 + + +waiting on router queue for slot.... +08:05:40 ============================================================================ +08:05:40 Slot Id : <134> +08:05:40 Transaction Type : RESPONSE +08:05:40 Received From : +08:05:40 ============================================================================ +08:05:40 FNo. Len. Field Value +08:05:40 ============================================================================ +08:05:40 [ 1] [ 4] [0210] +08:05:40 [ 2] [ 16] [6213548000228765] +08:05:40 [ 3] [ 6] [010000] +08:05:40 [ 4] [ 12] [000005000000] +08:05:40 [ 7] [ 10] [0320080329] +08:05:40 [ 11] [ 6] [931801] +08:05:40 [ 12] [ 6] [080329] +08:05:40 [ 13] [ 4] [0320] +08:05:40 [ 15] [ 4] [0320] +08:05:40 [ 18] [ 4] [6011] +08:05:40 [ 19] [ 3] [418] +08:05:40 [ 32] [ 6] [668899] +08:05:40 [ 35] [ 32] [6213548000228765=180112012876625] +08:05:40 [ 37] [ 12] [507901963372] +08:05:40 [ 38] [ 6] [710316] +08:05:40 [ 39] [ 2] [00] +08:05:40 [ 41] [ 8] [03020019] +08:05:40 [ 49] [ 3] [418] +08:05:40 [ 54] [ 40] [0001418C0000157942400002418C000015794240] +08:05:40 ============================================================================ +08:05:40 Calculate Source COMM Id = 4 +08:05:40 ============================================================================ +08:05:40 + + +waiting on router queue for slot.... +08:05:42 ============================================================================ +08:05:42 Slot Id : <98> +08:05:42 Transaction Type : RESPONSE +08:05:42 Received From : +08:05:42 ============================================================================ +08:05:42 FNo. Len. Field Value +08:05:42 ============================================================================ +08:05:42 [ 1] [ 4] [0210] +08:05:42 [ 2] [ 16] [6688990101025904] +08:05:42 [ 3] [ 6] [010000] +08:05:42 [ 4] [ 12] [000100000000] +08:05:42 [ 11] [ 6] [678399] +08:05:42 [ 12] [ 6] [080534] +08:05:42 [ 15] [ 4] [0320] +08:05:42 [ 18] [ 4] [6011] +08:05:42 [ 32] [ 6] [621354] +08:05:42 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:05:42 [ 37] [ 12] [507904719359] +08:05:42 [ 38] [ 6] [291419] +08:05:42 [ 39] [ 2] [00] +08:05:42 [ 41] [ 8] [18001000] +08:05:42 [ 49] [ 3] [418] +08:05:42 [ 54] [ 20] [0002418C000118202010] +08:05:42 ============================================================================ +08:05:42 Calculate Source COMM Id = 0 +08:05:42 ============================================================================ +08:05:42 + + +waiting on router queue for slot.... +08:05:52 ============================================================================ +08:05:52 Slot Id : <96> +08:05:52 Transaction Type : REQUEST +08:05:52 Received From : +08:05:52 ============================================================================ +08:05:52 FNo. Len. Field Value +08:05:52 ============================================================================ +08:05:52 [ 1] [ 4] [0800] +08:05:52 [ 7] [ 10] [0320010501] +08:05:52 [ 11] [ 6] [155322] +08:05:52 [ 70] [ 3] [301] +08:05:52 ============================================================================ +08:05:52 + + +waiting on router queue for slot.... +08:05:52 Sending to : +08:05:52 ============================================================================ +08:05:52 ============================================================================ +08:05:52 Slot Id : <96> +08:05:52 Transaction Type : RESPONSE +08:05:52 Received From : +08:05:52 ============================================================================ +08:05:52 FNo. Len. Field Value +08:05:52 ============================================================================ +08:05:52 [ 1] [ 4] [0810] +08:05:52 [ 7] [ 10] [0320010501] +08:05:52 [ 11] [ 6] [155322] +08:05:52 [ 39] [ 2] [00] +08:05:52 [ 70] [ 3] [301] +08:05:52 ============================================================================ +08:05:52 Calculate Source COMM Id = 2 +08:05:52 ============================================================================ +08:05:52 + + +waiting on router queue for slot.... +08:05:57 ============================================================================ +08:05:57 Slot Id : <103> +08:05:57 Transaction Type : REQUEST +08:05:57 Received From : +08:05:57 ============================================================================ +08:05:57 FNo. Len. Field Value +08:05:57 ============================================================================ +08:05:57 [ 1] [ 4] [0200] +08:05:57 [ 2] [ 16] [6688990100966108] +08:05:57 [ 3] [ 6] [010000] +08:05:57 [ 4] [ 12] [000010000000] +08:05:57 [ 7] [ 10] [0320010504] +08:05:57 [ 11] [ 6] [267022] +08:05:57 [ 12] [ 6] [080504] +08:05:57 [ 13] [ 4] [0320] +08:05:57 [ 14] [ 4] [4112] +08:05:57 [ 15] [ 4] [0320] +08:05:57 [ 18] [ 4] [6011] +08:05:57 [ 19] [ 3] [418] +08:05:57 [ 22] [ 3] [021] +08:05:57 [ 25] [ 2] [01] +08:05:57 [ 28] [ 9] [D00002000] +08:05:57 [ 32] [ 6] [180893] +08:05:57 [ 35] [ 37] [6688990100966108=41121231610830500000] +08:05:57 [ 37] [ 12] [507901267022] +08:05:57 [ 41] [ 8] [0467PSLK] +08:05:57 [ 42] [ 15] [999999 ] +08:05:57 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +08:05:57 [ 49] [ 3] [418] +08:05:57 [ 52] [ 16] [29147AE02347C463] +08:05:57 ============================================================================ +08:05:57 + + +waiting on router queue for slot.... +08:05:57 Sending to : +08:05:57 ============================================================================ +08:05:57 Sending to : +08:05:57 ============================================================================ +08:05:57 ============================================================================ +08:05:57 Slot Id : <103> +08:05:57 Transaction Type : REQUEST +08:05:57 Received From : +08:05:57 ============================================================================ +08:05:57 FNo. Len. Field Value +08:05:57 ============================================================================ +08:05:57 [ 1] [ 4] [0200] +08:05:57 [ 2] [ 16] [6688990100966108] +08:05:57 [ 3] [ 6] [010000] +08:05:57 [ 4] [ 12] [000010000000] +08:05:57 [ 7] [ 10] [0320010504] +08:05:57 [ 11] [ 6] [267022] +08:05:57 [ 12] [ 6] [080504] +08:05:57 [ 13] [ 4] [0320] +08:05:57 [ 14] [ 4] [4112] +08:05:57 [ 15] [ 4] [0320] +08:05:57 [ 18] [ 4] [6011] +08:05:57 [ 19] [ 3] [418] +08:05:57 [ 22] [ 3] [021] +08:05:57 [ 25] [ 2] [01] +08:05:57 [ 28] [ 9] [D00002000] +08:05:57 [ 32] [ 6] [180893] +08:05:57 [ 35] [ 37] [6688990100966108=41121231610830500000] +08:05:57 [ 37] [ 12] [507901267022] +08:05:57 [ 41] [ 8] [0467PSLK] +08:05:57 [ 42] [ 15] [999999 ] +08:05:57 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +08:05:57 [ 49] [ 3] [418] +08:05:57 [ 52] [ 16] [29147AE02347C463] +08:05:57 ============================================================================ +08:05:57 + + +waiting on router queue for slot.... +08:05:57 Sending to : +08:05:57 ============================================================================ +08:05:57 ============================================================================ +08:05:57 Slot Id : <103> +08:05:57 Transaction Type : REQUEST +08:05:57 Received From : +08:05:57 ============================================================================ +08:05:57 FNo. Len. Field Value +08:05:57 ============================================================================ +08:05:57 [ 1] [ 4] [0200] +08:05:57 [ 2] [ 16] [6688990100966108] +08:05:57 [ 3] [ 6] [010000] +08:05:57 [ 4] [ 12] [000010000000] +08:05:57 [ 7] [ 10] [0320010504] +08:05:57 [ 11] [ 6] [267022] +08:05:57 [ 12] [ 6] [080504] +08:05:57 [ 13] [ 4] [0320] +08:05:57 [ 14] [ 4] [4112] +08:05:57 [ 15] [ 4] [0320] +08:05:57 [ 18] [ 4] [6011] +08:05:57 [ 19] [ 3] [418] +08:05:57 [ 22] [ 3] [021] +08:05:57 [ 25] [ 2] [01] +08:05:57 [ 28] [ 9] [D00002000] +08:05:57 [ 32] [ 6] [180893] +08:05:57 [ 35] [ 37] [6688990100966108=41121231610830500000] +08:05:57 [ 37] [ 12] [507901267022] +08:05:57 [ 41] [ 8] [0467PSLK] +08:05:57 [ 42] [ 15] [999999 ] +08:05:57 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +08:05:57 [ 49] [ 3] [418] +08:05:57 [ 52] [ 16] [B62EAFDDB22551DF] +08:05:57 ============================================================================ +08:05:57 + + +waiting on router queue for slot.... +08:05:57 Sending to : <0> +08:05:57 ============================================================================ +08:05:57 ============================================================================ +08:05:57 Slot Id : <103> +08:05:57 Transaction Type : RESPONSE +08:05:57 Received From : +08:05:57 ============================================================================ +08:05:57 FNo. Len. Field Value +08:05:57 ============================================================================ +08:05:57 [ 1] [ 4] [0210] +08:05:57 [ 2] [ 16] [6688990100966108] +08:05:57 [ 3] [ 6] [010000] +08:05:57 [ 4] [ 12] [000010000000] +08:05:57 [ 7] [ 10] [0320010504] +08:05:57 [ 11] [ 6] [267022] +08:05:57 [ 12] [ 6] [080504] +08:05:57 [ 13] [ 4] [0320] +08:05:57 [ 15] [ 4] [0320] +08:05:57 [ 18] [ 4] [6011] +08:05:57 [ 19] [ 3] [418] +08:05:57 [ 22] [ 3] [021] +08:05:57 [ 32] [ 6] [180893] +08:05:57 [ 35] [ 37] [6688990100966108=41121231610830500000] +08:05:57 [ 37] [ 12] [507901267022] +08:05:57 [ 39] [ 2] [14] +08:05:57 [ 41] [ 8] [0467PSLK] +08:05:57 [ 49] [ 3] [418] +08:05:57 ============================================================================ +08:05:57 Sending to : +08:05:57 ============================================================================ +08:05:57 + + +waiting on router queue for slot.... +08:05:58 ============================================================================ +08:05:58 Slot Id : <103> +08:05:58 Transaction Type : RESPONSE +08:05:58 Received From : +08:05:58 ============================================================================ +08:05:58 FNo. Len. Field Value +08:05:58 ============================================================================ +08:05:58 [ 1] [ 4] [0210] +08:05:58 [ 2] [ 16] [6688990100966108] +08:05:58 [ 3] [ 6] [010000] +08:05:58 [ 4] [ 12] [000010000000] +08:05:58 [ 7] [ 10] [0320010504] +08:05:58 [ 11] [ 6] [267022] +08:05:58 [ 12] [ 6] [080504] +08:05:58 [ 13] [ 4] [0320] +08:05:58 [ 15] [ 4] [0320] +08:05:58 [ 18] [ 4] [6011] +08:05:58 [ 19] [ 3] [418] +08:05:58 [ 22] [ 3] [021] +08:05:58 [ 32] [ 6] [180893] +08:05:58 [ 35] [ 37] [6688990100966108=41121231610830500000] +08:05:58 [ 37] [ 12] [507901267022] +08:05:58 [ 39] [ 2] [14] +08:05:58 [ 41] [ 8] [0467PSLK] +08:05:58 [ 49] [ 3] [418] +08:05:58 ============================================================================ +08:05:58 Calculate Source COMM Id = 2 +08:05:58 ============================================================================ +08:05:58 + + +waiting on router queue for slot.... +08:06:03 ============================================================================ +08:06:03 Slot Id : <71> +08:06:03 Transaction Type : REQUEST +08:06:03 Received From : +08:06:03 ============================================================================ +08:06:03 FNo. Len. Field Value +08:06:03 ============================================================================ +08:06:03 [ 1] [ 4] [0200] +08:06:03 [ 2] [ 16] [1808930300018793] +08:06:03 [ 3] [ 6] [011000] +08:06:03 [ 4] [ 12] [000100000000] +08:06:03 [ 7] [ 10] [0320080600] +08:06:03 [ 11] [ 6] [678527] +08:06:03 [ 12] [ 6] [080600] +08:06:03 [ 13] [ 4] [0320] +08:06:03 [ 15] [ 4] [0320] +08:06:03 [ 18] [ 4] [6011] +08:06:03 [ 22] [ 3] [900] +08:06:03 [ 25] [ 2] [02] +08:06:03 [ 28] [ 9] [D00002000] +08:06:03 [ 32] [ 6] [621354] +08:06:03 [ 35] [ 27] [1808930300018793=1803500401] +08:06:03 [ 37] [ 12] [507903028249] +08:06:03 [ 41] [ 8] [12002500] +08:06:03 [ 42] [ 15] [NATIVE ] +08:06:03 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:06:03 [ 49] [ 3] [418] +08:06:03 [ 52] [ 16] [F73FC271F9743D05] +08:06:03 ============================================================================ +08:06:03 + + +waiting on router queue for slot.... +08:06:03 Sending to : +08:06:03 ============================================================================ +08:06:03 Sending to : +08:06:03 ============================================================================ +08:06:04 ============================================================================ +08:06:04 Slot Id : <71> +08:06:04 Transaction Type : REQUEST +08:06:04 Received From : +08:06:04 ============================================================================ +08:06:04 FNo. Len. Field Value +08:06:04 ============================================================================ +08:06:04 [ 1] [ 4] [0200] +08:06:04 [ 2] [ 16] [1808930300018793] +08:06:04 [ 3] [ 6] [011000] +08:06:04 [ 4] [ 12] [000100000000] +08:06:04 [ 7] [ 10] [0320080600] +08:06:04 [ 11] [ 6] [678527] +08:06:04 [ 12] [ 6] [080600] +08:06:04 [ 13] [ 4] [0320] +08:06:04 [ 15] [ 4] [0320] +08:06:04 [ 18] [ 4] [6011] +08:06:04 [ 22] [ 3] [900] +08:06:04 [ 25] [ 2] [02] +08:06:04 [ 28] [ 9] [D00002000] +08:06:04 [ 32] [ 6] [621354] +08:06:04 [ 35] [ 27] [1808930300018793=1803500401] +08:06:04 [ 37] [ 12] [507903028249] +08:06:04 [ 41] [ 8] [12002500] +08:06:04 [ 42] [ 15] [NATIVE ] +08:06:04 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:06:04 [ 49] [ 3] [418] +08:06:04 [ 52] [ 16] [F73FC271F9743D05] +08:06:04 ============================================================================ +08:06:04 + + +waiting on router queue for slot.... +08:06:04 Sending to : +08:06:04 ============================================================================ +08:06:04 ============================================================================ +08:06:04 Slot Id : <71> +08:06:04 Transaction Type : REQUEST +08:06:04 Received From : +08:06:04 ============================================================================ +08:06:04 FNo. Len. Field Value +08:06:04 ============================================================================ +08:06:04 [ 1] [ 4] [0200] +08:06:04 [ 2] [ 16] [1808930300018793] +08:06:04 [ 3] [ 6] [011000] +08:06:04 [ 4] [ 12] [000100000000] +08:06:04 [ 7] [ 10] [0320080600] +08:06:04 [ 11] [ 6] [678527] +08:06:04 [ 12] [ 6] [080600] +08:06:04 [ 13] [ 4] [0320] +08:06:04 [ 15] [ 4] [0320] +08:06:04 [ 18] [ 4] [6011] +08:06:04 [ 22] [ 3] [900] +08:06:04 [ 25] [ 2] [02] +08:06:04 [ 28] [ 9] [D00002000] +08:06:04 [ 32] [ 6] [621354] +08:06:04 [ 35] [ 27] [1808930300018793=1803500401] +08:06:04 [ 37] [ 12] [507903028249] +08:06:04 [ 41] [ 8] [12002500] +08:06:04 [ 42] [ 15] [NATIVE ] +08:06:04 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:06:04 [ 49] [ 3] [418] +08:06:04 [ 52] [ 16] [046447BB3AB000B8] +08:06:04 ============================================================================ +08:06:04 + + +waiting on router queue for slot.... +08:06:04 Sending to : <2> +08:06:04 ============================================================================ +08:06:07 ============================================================================ +08:06:07 Slot Id : <71> +08:06:07 Transaction Type : RESPONSE +08:06:07 Received From : +08:06:07 ============================================================================ +08:06:07 FNo. Len. Field Value +08:06:07 ============================================================================ +08:06:07 [ 1] [ 4] [0210] +08:06:07 [ 2] [ 16] [1808930300018793] +08:06:07 [ 3] [ 6] [011000] +08:06:07 [ 4] [ 12] [000100000000] +08:06:07 [ 6] [ 12] [000100000000] +08:06:07 [ 7] [ 10] [0320080600] +08:06:07 [ 11] [ 6] [678527] +08:06:07 [ 12] [ 6] [080600] +08:06:07 [ 13] [ 4] [0320] +08:06:07 [ 18] [ 4] [6011] +08:06:07 [ 19] [ 3] [418] +08:06:07 [ 22] [ 3] [021] +08:06:07 [ 32] [ 6] [621354] +08:06:07 [ 35] [ 27] [1808930300018793=1803500401] +08:06:07 [ 37] [ 12] [507903028249] +08:06:07 [ 38] [ 6] [678527] +08:06:07 [ 39] [ 2] [00] +08:06:07 [ 41] [ 8] [12002500] +08:06:07 [ 49] [ 3] [418] +08:06:07 [ 52] [ 16] [046447BB3AB000B8] +08:06:07 [ 54] [ 20] [1001418C000882106800] +08:06:07 ============================================================================ +08:06:07 Sending to : +08:06:07 ============================================================================ +08:06:07 + + +waiting on router queue for slot.... +08:06:08 ============================================================================ +08:06:08 Slot Id : <71> +08:06:08 Transaction Type : RESPONSE +08:06:08 Received From : +08:06:08 ============================================================================ +08:06:08 FNo. Len. Field Value +08:06:08 ============================================================================ +08:06:08 [ 1] [ 4] [0210] +08:06:08 [ 2] [ 16] [1808930300018793] +08:06:08 [ 3] [ 6] [011000] +08:06:08 [ 4] [ 12] [000100000000] +08:06:08 [ 6] [ 12] [000100000000] +08:06:08 [ 7] [ 10] [0320080600] +08:06:08 [ 11] [ 6] [678527] +08:06:08 [ 12] [ 6] [080600] +08:06:08 [ 13] [ 4] [0320] +08:06:08 [ 18] [ 4] [6011] +08:06:08 [ 19] [ 3] [418] +08:06:08 [ 22] [ 3] [021] +08:06:08 [ 32] [ 6] [621354] +08:06:08 [ 35] [ 27] [1808930300018793=1803500401] +08:06:08 [ 37] [ 12] [507903028249] +08:06:08 [ 38] [ 6] [678527] +08:06:08 [ 39] [ 2] [00] +08:06:08 [ 41] [ 8] [12002500] +08:06:08 [ 49] [ 3] [418] +08:06:08 [ 52] [ 16] [046447BB3AB000B8] +08:06:08 [ 54] [ 20] [1001418C000882106800] +08:06:08 ============================================================================ +08:06:08 Calculate Source COMM Id = 0 +08:06:08 ============================================================================ +08:06:08 + + +waiting on router queue for slot.... +08:06:16 ============================================================================ +08:06:16 Slot Id : <101> +08:06:16 Transaction Type : REQUEST +08:06:16 Received From : +08:06:16 ============================================================================ +08:06:16 FNo. Len. Field Value +08:06:16 ============================================================================ +08:06:16 [ 1] [ 4] [0800] +08:06:16 [ 2] [ 5] [02531] +08:06:16 [ 3] [ 6] [579088] +08:06:16 [ 7] [ 10] [0320010616] +08:06:16 [ 11] [ 6] [806882] +08:06:16 [ 15] [ 10] [0320010616] +08:06:16 [ 37] [ 11] [57908806882] +08:06:16 [ 70] [ 3] [001] +08:06:16 ============================================================================ +08:06:16 + + +waiting on router queue for slot.... +08:06:16 ============================================================================ +08:06:16 Slot Id : <101> +08:06:16 Transaction Type : RESPONSE +08:06:16 Received From : +08:06:16 ============================================================================ +08:06:16 FNo. Len. Field Value +08:06:16 ============================================================================ +08:06:16 [ 1] [ 4] [0810] +08:06:16 [ 7] [ 10] [0320010616] +08:06:16 [ 11] [ 6] [806882] +08:06:16 [ 15] [ 4] [0320] +08:06:16 [ 37] [ 12] [57908806882] +08:06:16 [ 39] [ 2] [00] +08:06:16 [ 70] [ 3] [001] +08:06:16 ============================================================================ +08:06:16 Sending to : +08:06:16 ============================================================================ +08:06:16 + + +waiting on router queue for slot.... +08:06:18 ============================================================================ +08:06:18 Slot Id : <102> +08:06:18 Transaction Type : REQUEST +08:06:18 Received From : +08:06:18 ============================================================================ +08:06:18 FNo. Len. Field Value +08:06:18 ============================================================================ +08:06:18 [ 1] [ 4] [0800] +08:06:18 [ 7] [ 10] [0320010526] +08:06:18 [ 11] [ 6] [155323] +08:06:18 [ 70] [ 3] [301] +08:06:18 ============================================================================ +08:06:18 + + +waiting on router queue for slot.... +08:06:18 Sending to : +08:06:18 ============================================================================ +08:06:18 ============================================================================ +08:06:18 Slot Id : <102> +08:06:18 Transaction Type : RESPONSE +08:06:18 Received From : +08:06:18 ============================================================================ +08:06:18 FNo. Len. Field Value +08:06:18 ============================================================================ +08:06:18 [ 1] [ 4] [0810] +08:06:18 [ 7] [ 10] [0320010526] +08:06:18 [ 11] [ 6] [155323] +08:06:18 [ 39] [ 2] [00] +08:06:18 [ 70] [ 3] [301] +08:06:18 ============================================================================ +08:06:18 Calculate Source COMM Id = 2 +08:06:18 ============================================================================ +08:06:18 + + +waiting on router queue for slot.... +08:06:20 ============================================================================ +08:06:20 Slot Id : <70> +08:06:20 Transaction Type : REQUEST +08:06:20 Received From : +08:06:20 ============================================================================ +08:06:20 FNo. Len. Field Value +08:06:20 ============================================================================ +08:06:20 [ 1] [ 4] [0800] +08:06:20 [ 7] [ 10] [0320010412] +08:06:20 [ 11] [ 6] [084445] +08:06:20 [ 37] [ 12] [57908084445] +08:06:20 [ 70] [ 3] [301] +08:06:20 ============================================================================ +08:06:20 + + +waiting on router queue for slot.... +08:06:20 Sending to : +08:06:20 ============================================================================ +08:06:20 ============================================================================ +08:06:20 Slot Id : <70> +08:06:20 Transaction Type : RESPONSE +08:06:20 Received From : +08:06:20 ============================================================================ +08:06:20 FNo. Len. Field Value +08:06:20 ============================================================================ +08:06:20 [ 1] [ 4] [0810] +08:06:20 [ 7] [ 10] [0320010412] +08:06:20 [ 11] [ 6] [084445] +08:06:20 [ 37] [ 12] [579080844450] +08:06:20 [ 39] [ 2] [00] +08:06:20 [ 70] [ 3] [810] +08:06:20 ============================================================================ +08:06:20 Calculate Source COMM Id = 4 +08:06:20 ============================================================================ +08:06:20 + + +waiting on router queue for slot.... +08:06:28 ============================================================================ +08:06:28 Slot Id : <109> +08:06:28 Transaction Type : REQUEST +08:06:28 Received From : +08:06:28 ============================================================================ +08:06:28 FNo. Len. Field Value +08:06:28 ============================================================================ +08:06:28 [ 1] [ 4] [0800] +08:06:28 [ 7] [ 10] [0320010537] +08:06:28 [ 11] [ 6] [155324] +08:06:28 [ 70] [ 3] [301] +08:06:28 ============================================================================ +08:06:28 + + +waiting on router queue for slot.... +08:06:28 Sending to : +08:06:28 ============================================================================ +08:06:28 ============================================================================ +08:06:28 Slot Id : <109> +08:06:28 Transaction Type : RESPONSE +08:06:28 Received From : +08:06:28 ============================================================================ +08:06:28 FNo. Len. Field Value +08:06:28 ============================================================================ +08:06:28 [ 1] [ 4] [0810] +08:06:28 [ 7] [ 10] [0320010537] +08:06:28 [ 11] [ 6] [155324] +08:06:28 [ 39] [ 2] [00] +08:06:28 [ 70] [ 3] [301] +08:06:28 ============================================================================ +08:06:28 Calculate Source COMM Id = 2 +08:06:28 ============================================================================ +08:06:28 + + +waiting on router queue for slot.... +08:06:31 ============================================================================ +08:06:31 Slot Id : <136> +08:06:31 Transaction Type : REQUEST +08:06:31 Received From : +08:06:31 ============================================================================ +08:06:31 FNo. Len. Field Value +08:06:31 ============================================================================ +08:06:31 [ 1] [ 4] [0800] +08:06:31 [ 7] [ 10] [0320151819] +08:06:31 [ 11] [ 6] [081819] +08:06:31 [ 37] [ 12] [57908081819] +08:06:31 [ 70] [ 3] [301] +08:06:31 ============================================================================ +08:06:31 + + +waiting on router queue for slot.... +08:06:31 Sending to : +08:06:31 ============================================================================ +08:06:31 ============================================================================ +08:06:31 Slot Id : <136> +08:06:31 Transaction Type : RESPONSE +08:06:31 Received From : +08:06:31 ============================================================================ +08:06:31 FNo. Len. Field Value +08:06:31 ============================================================================ +08:06:31 [ 1] [ 4] [0810] +08:06:31 [ 7] [ 10] [0320151819] +08:06:31 [ 11] [ 6] [081819] +08:06:31 [ 37] [ 12] [579080818190] +08:06:31 [ 39] [ 2] [00] +08:06:31 [ 70] [ 3] [810] +08:06:31 ============================================================================ +08:06:31 Calculate Source COMM Id = 6 +08:06:31 ============================================================================ +08:06:31 + + +waiting on router queue for slot.... +08:06:32 ============================================================================ +08:06:32 Slot Id : <131> +08:06:32 Transaction Type : REQUEST +08:06:32 Received From : +08:06:32 ============================================================================ +08:06:32 FNo. Len. Field Value +08:06:32 ============================================================================ +08:06:32 [ 1] [ 4] [0200] +08:06:32 [ 2] [ 16] [6213544001980306] +08:06:32 [ 3] [ 6] [010000] +08:06:32 [ 4] [ 12] [000100000000] +08:06:32 [ 7] [ 10] [0320010540] +08:06:32 [ 11] [ 6] [267024] +08:06:32 [ 12] [ 6] [080540] +08:06:32 [ 13] [ 4] [0320] +08:06:32 [ 14] [ 4] [4912] +08:06:32 [ 15] [ 4] [0320] +08:06:32 [ 18] [ 4] [6011] +08:06:32 [ 19] [ 3] [418] +08:06:32 [ 22] [ 3] [021] +08:06:32 [ 25] [ 2] [01] +08:06:32 [ 28] [ 9] [D00002000] +08:06:32 [ 32] [ 6] [180893] +08:06:32 [ 35] [ 32] [6213544001980306=491212018030216] +08:06:32 [ 37] [ 12] [507901267024] +08:06:32 [ 41] [ 8] [0522XYXH] +08:06:32 [ 42] [ 15] [999999 ] +08:06:32 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:06:32 [ 49] [ 3] [418] +08:06:32 [ 52] [ 16] [9EB6B23E3AFCDF0C] +08:06:32 ============================================================================ +08:06:32 + + +waiting on router queue for slot.... +08:06:32 Sending to : +08:06:32 ============================================================================ +08:06:32 Sending to : +08:06:32 ============================================================================ +08:06:32 ============================================================================ +08:06:32 Slot Id : <131> +08:06:32 Transaction Type : REQUEST +08:06:32 Received From : +08:06:32 ============================================================================ +08:06:32 FNo. Len. Field Value +08:06:32 ============================================================================ +08:06:32 [ 1] [ 4] [0200] +08:06:32 [ 2] [ 16] [6213544001980306] +08:06:32 [ 3] [ 6] [010000] +08:06:32 [ 4] [ 12] [000100000000] +08:06:32 [ 7] [ 10] [0320010540] +08:06:32 [ 11] [ 6] [267024] +08:06:32 [ 12] [ 6] [080540] +08:06:32 [ 13] [ 4] [0320] +08:06:32 [ 14] [ 4] [4912] +08:06:32 [ 15] [ 4] [0320] +08:06:32 [ 18] [ 4] [6011] +08:06:32 [ 19] [ 3] [418] +08:06:32 [ 22] [ 3] [021] +08:06:32 [ 25] [ 2] [01] +08:06:32 [ 28] [ 9] [D00002000] +08:06:32 [ 32] [ 6] [180893] +08:06:32 [ 35] [ 32] [6213544001980306=491212018030216] +08:06:32 [ 37] [ 12] [507901267024] +08:06:32 [ 41] [ 8] [0522XYXH] +08:06:32 [ 42] [ 15] [999999 ] +08:06:32 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:06:32 [ 49] [ 3] [418] +08:06:32 [ 52] [ 16] [9EB6B23E3AFCDF0C] +08:06:32 ============================================================================ +08:06:32 + + +waiting on router queue for slot.... +08:06:32 Sending to : +08:06:32 ============================================================================ +08:06:32 ============================================================================ +08:06:32 Slot Id : <131> +08:06:32 Transaction Type : REQUEST +08:06:32 Received From : +08:06:32 ============================================================================ +08:06:32 FNo. Len. Field Value +08:06:32 ============================================================================ +08:06:32 [ 1] [ 4] [0200] +08:06:32 [ 2] [ 16] [6213544001980306] +08:06:32 [ 3] [ 6] [010000] +08:06:32 [ 4] [ 12] [000100000000] +08:06:32 [ 7] [ 10] [0320010540] +08:06:32 [ 11] [ 6] [267024] +08:06:32 [ 12] [ 6] [080540] +08:06:32 [ 13] [ 4] [0320] +08:06:32 [ 14] [ 4] [4912] +08:06:32 [ 15] [ 4] [0320] +08:06:32 [ 18] [ 4] [6011] +08:06:32 [ 19] [ 3] [418] +08:06:32 [ 22] [ 3] [021] +08:06:32 [ 25] [ 2] [01] +08:06:32 [ 28] [ 9] [D00002000] +08:06:32 [ 32] [ 6] [180893] +08:06:32 [ 35] [ 32] [6213544001980306=491212018030216] +08:06:32 [ 37] [ 12] [507901267024] +08:06:32 [ 41] [ 8] [0522XYXH] +08:06:32 [ 42] [ 15] [999999 ] +08:06:32 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:06:32 [ 49] [ 3] [418] +08:06:32 [ 52] [ 16] [E8D39E041D8BC752] +08:06:32 ============================================================================ +08:06:32 + + +waiting on router queue for slot.... +08:06:32 Sending to : <0> +08:06:32 ============================================================================ +08:06:33 ============================================================================ +08:06:33 Slot Id : <131> +08:06:33 Transaction Type : RESPONSE +08:06:33 Received From : +08:06:33 ============================================================================ +08:06:33 FNo. Len. Field Value +08:06:33 ============================================================================ +08:06:33 [ 1] [ 4] [0210] +08:06:33 [ 2] [ 16] [6213544001980306] +08:06:33 [ 3] [ 6] [010000] +08:06:33 [ 4] [ 12] [000100000000] +08:06:33 [ 7] [ 10] [0320010540] +08:06:33 [ 11] [ 6] [267024] +08:06:33 [ 12] [ 6] [080540] +08:06:33 [ 13] [ 4] [0320] +08:06:33 [ 15] [ 4] [0320] +08:06:33 [ 18] [ 4] [6011] +08:06:33 [ 19] [ 3] [418] +08:06:33 [ 32] [ 6] [180893] +08:06:33 [ 35] [ 32] [6213544001980306=491212018030216] +08:06:33 [ 37] [ 12] [507901267024] +08:06:33 [ 38] [ 6] [083172] +08:06:33 [ 39] [ 2] [00] +08:06:33 [ 41] [ 8] [0522XYXH] +08:06:33 [ 49] [ 3] [418] +08:06:33 [ 54] [ 40] [0001418C0000224112640002418C000022411264] +08:06:33 ============================================================================ +08:06:33 Sending to : +08:06:33 ============================================================================ +08:06:33 + + +waiting on router queue for slot.... +08:06:34 ============================================================================ +08:06:34 Slot Id : <131> +08:06:34 Transaction Type : RESPONSE +08:06:34 Received From : +08:06:34 ============================================================================ +08:06:34 FNo. Len. Field Value +08:06:34 ============================================================================ +08:06:34 [ 1] [ 4] [0210] +08:06:34 [ 2] [ 16] [6213544001980306] +08:06:34 [ 3] [ 6] [010000] +08:06:34 [ 4] [ 12] [000100000000] +08:06:34 [ 7] [ 10] [0320010540] +08:06:34 [ 11] [ 6] [267024] +08:06:34 [ 12] [ 6] [080540] +08:06:34 [ 13] [ 4] [0320] +08:06:34 [ 15] [ 4] [0320] +08:06:34 [ 18] [ 4] [6011] +08:06:34 [ 19] [ 3] [418] +08:06:34 [ 32] [ 6] [180893] +08:06:34 [ 35] [ 32] [6213544001980306=491212018030216] +08:06:34 [ 37] [ 12] [507901267024] +08:06:34 [ 38] [ 6] [083172] +08:06:34 [ 39] [ 2] [00] +08:06:34 [ 41] [ 8] [0522XYXH] +08:06:34 [ 49] [ 3] [418] +08:06:34 [ 54] [ 40] [0001418C0000224112640002418C000022411264] +08:06:34 ============================================================================ +08:06:34 Calculate Source COMM Id = 2 +08:06:34 ============================================================================ +08:06:34 + + +waiting on router queue for slot.... +08:06:44 ============================================================================ +08:06:44 Slot Id : <129> +08:06:44 Transaction Type : REQUEST +08:06:44 Received From : +08:06:44 ============================================================================ +08:06:44 FNo. Len. Field Value +08:06:44 ============================================================================ +08:06:44 [ 1] [ 4] [0200] +08:06:44 [ 2] [ 16] [6688990101025904] +08:06:44 [ 3] [ 6] [010000] +08:06:44 [ 4] [ 12] [000050000000] +08:06:44 [ 7] [ 10] [0320080641] +08:06:44 [ 11] [ 6] [678740] +08:06:44 [ 12] [ 6] [080641] +08:06:44 [ 13] [ 4] [0320] +08:06:44 [ 15] [ 4] [0320] +08:06:44 [ 18] [ 4] [6011] +08:06:44 [ 22] [ 3] [900] +08:06:44 [ 25] [ 2] [02] +08:06:44 [ 28] [ 9] [D00002000] +08:06:44 [ 32] [ 6] [621354] +08:06:44 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:06:44 [ 37] [ 12] [507904719361] +08:06:44 [ 41] [ 8] [18001000] +08:06:44 [ 42] [ 15] [NATIVE ] +08:06:44 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:06:44 [ 49] [ 3] [418] +08:06:44 [ 52] [ 16] [9A5B843C1EA1B1CC] +08:06:44 ============================================================================ +08:06:44 + + +waiting on router queue for slot.... +08:06:44 Sending to : +08:06:44 ============================================================================ +08:06:44 Sending to : +08:06:44 ============================================================================ +08:06:45 ============================================================================ +08:06:45 Slot Id : <129> +08:06:45 Transaction Type : REQUEST +08:06:45 Received From : +08:06:45 ============================================================================ +08:06:45 FNo. Len. Field Value +08:06:45 ============================================================================ +08:06:45 [ 1] [ 4] [0200] +08:06:45 [ 2] [ 16] [6688990101025904] +08:06:45 [ 3] [ 6] [010000] +08:06:45 [ 4] [ 12] [000050000000] +08:06:45 [ 7] [ 10] [0320080641] +08:06:45 [ 11] [ 6] [678740] +08:06:45 [ 12] [ 6] [080641] +08:06:45 [ 13] [ 4] [0320] +08:06:45 [ 15] [ 4] [0320] +08:06:45 [ 18] [ 4] [6011] +08:06:45 [ 22] [ 3] [900] +08:06:45 [ 25] [ 2] [02] +08:06:45 [ 28] [ 9] [D00002000] +08:06:45 [ 32] [ 6] [621354] +08:06:45 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:06:45 [ 37] [ 12] [507904719361] +08:06:45 [ 41] [ 8] [18001000] +08:06:45 [ 42] [ 15] [NATIVE ] +08:06:45 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:06:45 [ 49] [ 3] [418] +08:06:45 [ 52] [ 16] [9A5B843C1EA1B1CC] +08:06:45 ============================================================================ +08:06:45 + + +waiting on router queue for slot.... +08:06:45 Sending to : +08:06:45 ============================================================================ +08:06:45 ============================================================================ +08:06:45 Slot Id : <129> +08:06:45 Transaction Type : REQUEST +08:06:45 Received From : +08:06:45 ============================================================================ +08:06:45 FNo. Len. Field Value +08:06:45 ============================================================================ +08:06:45 [ 1] [ 4] [0200] +08:06:45 [ 2] [ 16] [6688990101025904] +08:06:45 [ 3] [ 6] [010000] +08:06:45 [ 4] [ 12] [000050000000] +08:06:45 [ 7] [ 10] [0320080641] +08:06:45 [ 11] [ 6] [678740] +08:06:45 [ 12] [ 6] [080641] +08:06:45 [ 13] [ 4] [0320] +08:06:45 [ 15] [ 4] [0320] +08:06:45 [ 18] [ 4] [6011] +08:06:45 [ 22] [ 3] [900] +08:06:45 [ 25] [ 2] [02] +08:06:45 [ 28] [ 9] [D00002000] +08:06:45 [ 32] [ 6] [621354] +08:06:45 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:06:45 [ 37] [ 12] [507904719361] +08:06:45 [ 41] [ 8] [18001000] +08:06:45 [ 42] [ 15] [NATIVE ] +08:06:45 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:06:45 [ 49] [ 3] [418] +08:06:45 [ 52] [ 16] [1A2F1C571474B7A7] +08:06:45 ============================================================================ +08:06:45 + + +waiting on router queue for slot.... +08:06:45 Sending to : <4> +08:06:45 ============================================================================ +08:06:46 ============================================================================ +08:06:46 Slot Id : <129> +08:06:46 Transaction Type : RESPONSE +08:06:46 Received From : +08:06:46 ============================================================================ +08:06:46 FNo. Len. Field Value +08:06:46 ============================================================================ +08:06:46 [ 1] [ 4] [0210] +08:06:46 [ 2] [ 16] [6688990101025904] +08:06:46 [ 3] [ 6] [010000] +08:06:46 [ 4] [ 12] [000050000000] +08:06:46 [ 11] [ 6] [678740] +08:06:46 [ 12] [ 6] [080641] +08:06:46 [ 15] [ 4] [0320] +08:06:46 [ 18] [ 4] [6011] +08:06:46 [ 32] [ 6] [621354] +08:06:46 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:06:46 [ 37] [ 12] [507904719361] +08:06:46 [ 38] [ 6] [845962] +08:06:46 [ 39] [ 2] [00] +08:06:46 [ 41] [ 8] [18001000] +08:06:46 [ 49] [ 3] [418] +08:06:46 [ 54] [ 20] [0002418C000068002010] +08:06:46 ============================================================================ +08:06:46 Sending to : +08:06:46 ============================================================================ +08:06:46 + + +waiting on router queue for slot.... +08:06:46 ============================================================================ +08:06:46 Slot Id : <85> +08:06:46 Transaction Type : REQUEST +08:06:46 Received From : +08:06:46 ============================================================================ +08:06:46 FNo. Len. Field Value +08:06:46 ============================================================================ +08:06:46 [ 1] [ 4] [0800] +08:06:46 [ 7] [ 10] [0320010555] +08:06:46 [ 11] [ 6] [155325] +08:06:46 [ 70] [ 3] [301] +08:06:46 ============================================================================ +08:06:46 + + +waiting on router queue for slot.... +08:06:46 Sending to : +08:06:46 ============================================================================ +08:06:46 ============================================================================ +08:06:46 Slot Id : <85> +08:06:46 Transaction Type : RESPONSE +08:06:46 Received From : +08:06:46 ============================================================================ +08:06:46 FNo. Len. Field Value +08:06:46 ============================================================================ +08:06:46 [ 1] [ 4] [0810] +08:06:46 [ 7] [ 10] [0320010555] +08:06:46 [ 11] [ 6] [155325] +08:06:46 [ 39] [ 2] [00] +08:06:46 [ 70] [ 3] [301] +08:06:46 ============================================================================ +08:06:46 Calculate Source COMM Id = 2 +08:06:46 ============================================================================ +08:06:46 + + +waiting on router queue for slot.... +08:06:48 ============================================================================ +08:06:48 Slot Id : <129> +08:06:48 Transaction Type : RESPONSE +08:06:48 Received From : +08:06:48 ============================================================================ +08:06:48 FNo. Len. Field Value +08:06:48 ============================================================================ +08:06:48 [ 1] [ 4] [0210] +08:06:48 [ 2] [ 16] [6688990101025904] +08:06:48 [ 3] [ 6] [010000] +08:06:48 [ 4] [ 12] [000050000000] +08:06:48 [ 11] [ 6] [678740] +08:06:48 [ 12] [ 6] [080641] +08:06:48 [ 15] [ 4] [0320] +08:06:48 [ 18] [ 4] [6011] +08:06:48 [ 32] [ 6] [621354] +08:06:48 [ 35] [ 37] [6688990101025904=41121231590410900000] +08:06:48 [ 37] [ 12] [507904719361] +08:06:48 [ 38] [ 6] [845962] +08:06:48 [ 39] [ 2] [00] +08:06:48 [ 41] [ 8] [18001000] +08:06:48 [ 49] [ 3] [418] +08:06:48 [ 54] [ 20] [0002418C000068002010] +08:06:48 ============================================================================ +08:06:48 Calculate Source COMM Id = 0 +08:06:48 ============================================================================ +08:06:48 + + +waiting on router queue for slot.... +08:06:58 ============================================================================ +08:06:58 Slot Id : <105> +08:06:58 Transaction Type : REQUEST +08:06:58 Received From : +08:06:58 ============================================================================ +08:06:58 FNo. Len. Field Value +08:06:58 ============================================================================ +08:06:58 [ 1] [ 4] [0800] +08:06:58 [ 7] [ 10] [0320010605] +08:06:58 [ 11] [ 6] [155326] +08:06:58 [ 70] [ 3] [301] +08:06:58 ============================================================================ +08:06:58 + + +waiting on router queue for slot.... +08:06:58 Sending to : +08:06:58 ============================================================================ +08:06:58 ============================================================================ +08:06:58 Slot Id : <105> +08:06:58 Transaction Type : RESPONSE +08:06:58 Received From : +08:06:58 ============================================================================ +08:06:58 FNo. Len. Field Value +08:06:58 ============================================================================ +08:06:58 [ 1] [ 4] [0810] +08:06:58 [ 7] [ 10] [0320010605] +08:06:58 [ 11] [ 6] [155326] +08:06:58 [ 39] [ 2] [00] +08:06:58 [ 70] [ 3] [301] +08:06:58 ============================================================================ +08:06:58 Calculate Source COMM Id = 2 +08:06:58 ============================================================================ +08:06:58 + + +waiting on router queue for slot.... +08:07:08 ============================================================================ +08:07:08 Slot Id : <87> +08:07:08 Transaction Type : REQUEST +08:07:08 Received From : +08:07:08 ============================================================================ +08:07:08 FNo. Len. Field Value +08:07:08 ============================================================================ +08:07:08 [ 1] [ 4] [0200] +08:07:08 [ 2] [ 16] [6213541000001464] +08:07:08 [ 3] [ 6] [010000] +08:07:08 [ 4] [ 12] [000050000000] +08:07:08 [ 7] [ 10] [0320080500] +08:07:08 [ 11] [ 6] [931870] +08:07:08 [ 12] [ 6] [080500] +08:07:08 [ 13] [ 4] [0320] +08:07:08 [ 15] [ 4] [0320] +08:07:08 [ 18] [ 4] [6011] +08:07:08 [ 19] [ 3] [418] +08:07:08 [ 22] [ 3] [021] +08:07:08 [ 25] [ 2] [01] +08:07:08 [ 28] [ 9] [D00002000] +08:07:08 [ 32] [ 6] [668899] +08:07:08 [ 35] [ 32] [6213541000001464=491212010146112] +08:07:08 [ 37] [ 12] [507900493842] +08:07:08 [ 41] [ 8] [03001006] +08:07:08 [ 42] [ 15] [APT ] +08:07:08 [ 43] [ 40] [ DONENOUN UNIT VIENTIANE ] +08:07:08 [ 49] [ 3] [418] +08:07:08 [ 52] [ 16] [45128C3E441CAE64] +08:07:08 ============================================================================ +08:07:08 + + +waiting on router queue for slot.... +08:07:08 Sending to : +08:07:08 ============================================================================ +08:07:08 Sending to : +08:07:08 ============================================================================ +08:07:09 ============================================================================ +08:07:09 Slot Id : <87> +08:07:09 Transaction Type : REQUEST +08:07:09 Received From : +08:07:09 ============================================================================ +08:07:09 FNo. Len. Field Value +08:07:09 ============================================================================ +08:07:09 [ 1] [ 4] [0200] +08:07:09 [ 2] [ 16] [6213541000001464] +08:07:09 [ 3] [ 6] [010000] +08:07:09 [ 4] [ 12] [000050000000] +08:07:09 [ 7] [ 10] [0320080500] +08:07:09 [ 11] [ 6] [931870] +08:07:09 [ 12] [ 6] [080500] +08:07:09 [ 13] [ 4] [0320] +08:07:09 [ 15] [ 4] [0320] +08:07:09 [ 18] [ 4] [6011] +08:07:09 [ 19] [ 3] [418] +08:07:09 [ 22] [ 3] [021] +08:07:09 [ 25] [ 2] [01] +08:07:09 [ 28] [ 9] [D00002000] +08:07:09 [ 32] [ 6] [668899] +08:07:09 [ 35] [ 32] [6213541000001464=491212010146112] +08:07:09 [ 37] [ 12] [507900493842] +08:07:09 [ 41] [ 8] [03001006] +08:07:09 [ 42] [ 15] [APT ] +08:07:09 [ 43] [ 40] [ DONENOUN UNIT VIENTIANE ] +08:07:09 [ 49] [ 3] [418] +08:07:09 [ 52] [ 16] [45128C3E441CAE64] +08:07:09 ============================================================================ +08:07:09 + + +waiting on router queue for slot.... +08:07:09 Sending to : +08:07:09 ============================================================================ +08:07:09 ============================================================================ +08:07:09 Slot Id : <87> +08:07:09 Transaction Type : REQUEST +08:07:09 Received From : +08:07:09 ============================================================================ +08:07:09 FNo. Len. Field Value +08:07:09 ============================================================================ +08:07:09 [ 1] [ 4] [0200] +08:07:09 [ 2] [ 16] [6213541000001464] +08:07:09 [ 3] [ 6] [010000] +08:07:09 [ 4] [ 12] [000050000000] +08:07:09 [ 7] [ 10] [0320080500] +08:07:09 [ 11] [ 6] [931870] +08:07:09 [ 12] [ 6] [080500] +08:07:09 [ 13] [ 4] [0320] +08:07:09 [ 15] [ 4] [0320] +08:07:09 [ 18] [ 4] [6011] +08:07:09 [ 19] [ 3] [418] +08:07:09 [ 22] [ 3] [021] +08:07:09 [ 25] [ 2] [01] +08:07:09 [ 28] [ 9] [D00002000] +08:07:09 [ 32] [ 6] [668899] +08:07:09 [ 35] [ 32] [6213541000001464=491212010146112] +08:07:09 [ 37] [ 12] [507900493842] +08:07:09 [ 41] [ 8] [03001006] +08:07:09 [ 42] [ 15] [APT ] +08:07:09 [ 43] [ 40] [ DONENOUN UNIT VIENTIANE ] +08:07:09 [ 49] [ 3] [418] +08:07:09 [ 52] [ 16] [7B94AD2B9B1524B0] +08:07:09 ============================================================================ +08:07:09 + + +waiting on router queue for slot.... +08:07:09 Sending to : <0> +08:07:09 ============================================================================ +08:07:09 ============================================================================ +08:07:09 Slot Id : <87> +08:07:09 Transaction Type : RESPONSE +08:07:09 Received From : +08:07:09 ============================================================================ +08:07:09 FNo. Len. Field Value +08:07:09 ============================================================================ +08:07:09 [ 1] [ 4] [0210] +08:07:09 [ 2] [ 16] [6213541000001464] +08:07:09 [ 3] [ 6] [010000] +08:07:09 [ 4] [ 12] [000050000000] +08:07:09 [ 7] [ 10] [0320080500] +08:07:09 [ 11] [ 6] [931870] +08:07:09 [ 12] [ 6] [080500] +08:07:09 [ 13] [ 4] [0320] +08:07:09 [ 15] [ 4] [0320] +08:07:09 [ 18] [ 4] [6011] +08:07:09 [ 19] [ 3] [418] +08:07:09 [ 32] [ 6] [668899] +08:07:09 [ 35] [ 32] [6213541000001464=491212010146112] +08:07:09 [ 37] [ 12] [507900493842] +08:07:09 [ 38] [ 6] [474426] +08:07:09 [ 39] [ 2] [00] +08:07:09 [ 41] [ 8] [03001006] +08:07:09 [ 49] [ 3] [418] +08:07:09 [ 54] [ 40] [0001418C0015900498780002418C001590049878] +08:07:09 ============================================================================ +08:07:09 Sending to : +08:07:09 ============================================================================ +08:07:09 + + +waiting on router queue for slot.... +08:07:11 ============================================================================ +08:07:11 Slot Id : <138> +08:07:11 Transaction Type : REQUEST +08:07:11 Received From : +08:07:11 ============================================================================ +08:07:11 FNo. Len. Field Value +08:07:11 ============================================================================ +08:07:11 [ 1] [ 4] [0420] +08:07:11 [ 2] [ 16] [1808930300018793] +08:07:11 [ 3] [ 6] [011000] +08:07:11 [ 4] [ 12] [000100000000] +08:07:11 [ 7] [ 10] [0320080600] +08:07:11 [ 11] [ 6] [678527] +08:07:11 [ 12] [ 6] [080600] +08:07:11 [ 13] [ 4] [0320] +08:07:11 [ 15] [ 4] [0320] +08:07:11 [ 18] [ 4] [6011] +08:07:11 [ 22] [ 3] [900] +08:07:11 [ 25] [ 2] [02] +08:07:11 [ 28] [ 9] [C00002000] +08:07:11 [ 32] [ 6] [621354] +08:07:11 [ 35] [ 27] [1808930300018793=1803500401] +08:07:11 [ 37] [ 12] [507903028249] +08:07:11 [ 39] [ 2] [00] +08:07:11 [ 41] [ 8] [12002500] +08:07:11 [ 42] [ 15] [NATIVE ] +08:07:11 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:07:11 [ 49] [ 3] [418] +08:07:11 [ 90] [ 42] [020067852703200806000000062135400000000000] +08:07:11 ============================================================================ +08:07:11 + + +waiting on router queue for slot.... +08:07:11 Sending to : +08:07:11 ============================================================================ +08:07:11 ============================================================================ +08:07:11 Slot Id : <87> +08:07:11 Transaction Type : RESPONSE +08:07:11 Received From : +08:07:11 ============================================================================ +08:07:11 FNo. Len. Field Value +08:07:11 ============================================================================ +08:07:11 [ 1] [ 4] [0210] +08:07:11 [ 2] [ 16] [6213541000001464] +08:07:11 [ 3] [ 6] [010000] +08:07:11 [ 4] [ 12] [000050000000] +08:07:11 [ 7] [ 10] [0320080500] +08:07:11 [ 11] [ 6] [931870] +08:07:11 [ 12] [ 6] [080500] +08:07:11 [ 13] [ 4] [0320] +08:07:11 [ 15] [ 4] [0320] +08:07:11 [ 18] [ 4] [6011] +08:07:11 [ 19] [ 3] [418] +08:07:11 [ 32] [ 6] [668899] +08:07:11 [ 35] [ 32] [6213541000001464=491212010146112] +08:07:11 [ 37] [ 12] [507900493842] +08:07:11 [ 38] [ 6] [474426] +08:07:11 [ 39] [ 2] [00] +08:07:11 [ 41] [ 8] [03001006] +08:07:11 [ 49] [ 3] [418] +08:07:11 [ 54] [ 40] [0001418C0015900498780002418C001590049878] +08:07:11 ============================================================================ +08:07:11 Calculate Source COMM Id = 4 +08:07:11 ============================================================================ +08:07:11 + + +waiting on router queue for slot.... +08:07:15 ============================================================================ +08:07:15 Slot Id : <104> +08:07:15 Transaction Type : REQUEST +08:07:15 Received From : +08:07:15 ============================================================================ +08:07:15 FNo. Len. Field Value +08:07:15 ============================================================================ +08:07:15 [ 1] [ 4] [0800] +08:07:15 [ 7] [ 10] [0320010623] +08:07:15 [ 11] [ 6] [155327] +08:07:15 [ 70] [ 3] [301] +08:07:15 ============================================================================ +08:07:15 + + +waiting on router queue for slot.... +08:07:15 Sending to : +08:07:15 ============================================================================ +08:07:15 ============================================================================ +08:07:15 Slot Id : <104> +08:07:15 Transaction Type : RESPONSE +08:07:15 Received From : +08:07:15 ============================================================================ +08:07:15 FNo. Len. Field Value +08:07:15 ============================================================================ +08:07:15 [ 1] [ 4] [0810] +08:07:15 [ 7] [ 10] [0320010623] +08:07:15 [ 11] [ 6] [155327] +08:07:15 [ 39] [ 2] [00] +08:07:15 [ 70] [ 3] [301] +08:07:15 ============================================================================ +08:07:15 Calculate Source COMM Id = 2 +08:07:15 ============================================================================ +08:07:15 + + +waiting on router queue for slot.... +08:07:16 ============================================================================ +08:07:16 Slot Id : <138> +08:07:16 Transaction Type : RESPONSE +08:07:16 Received From : +08:07:16 ============================================================================ +08:07:16 FNo. Len. Field Value +08:07:16 ============================================================================ +08:07:16 [ 1] [ 4] [0430] +08:07:16 [ 2] [ 16] [1808930300018793] +08:07:16 [ 3] [ 6] [011000] +08:07:16 [ 4] [ 12] [000100000000] +08:07:16 [ 7] [ 10] [0320080600] +08:07:16 [ 11] [ 6] [678527] +08:07:16 [ 12] [ 6] [080600] +08:07:16 [ 13] [ 4] [0320] +08:07:16 [ 15] [ 4] [0320] +08:07:16 [ 18] [ 4] [6011] +08:07:16 [ 22] [ 3] [900] +08:07:16 [ 25] [ 2] [02] +08:07:16 [ 28] [ 9] [C00002000] +08:07:16 [ 32] [ 6] [621354] +08:07:16 [ 35] [ 27] [1808930300018793=1803500401] +08:07:16 [ 37] [ 12] [507903028249] +08:07:16 [ 39] [ 2] [00] +08:07:16 [ 41] [ 8] [12002500] +08:07:16 [ 42] [ 15] [NATIVE ] +08:07:16 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:07:16 [ 49] [ 3] [418] +08:07:16 [ 90] [ 42] [020067852703200806000000062135400000000000] +08:07:16 ============================================================================ +08:07:16 Calculate Source COMM Id = 0 +08:07:16 ============================================================================ +08:07:16 + + +waiting on router queue for slot.... +08:07:18 ============================================================================ +08:07:18 Slot Id : <97> +08:07:18 Transaction Type : REQUEST +08:07:18 Received From : +08:07:18 ============================================================================ +08:07:18 FNo. Len. Field Value +08:07:18 ============================================================================ +08:07:18 [ 1] [ 4] [0800] +08:07:18 [ 2] [ 5] [02531] +08:07:18 [ 3] [ 6] [579088] +08:07:18 [ 7] [ 10] [0320010718] +08:07:18 [ 11] [ 6] [806883] +08:07:18 [ 15] [ 10] [0320010718] +08:07:18 [ 37] [ 11] [57908806883] +08:07:18 [ 70] [ 3] [001] +08:07:18 ============================================================================ +08:07:18 + + +waiting on router queue for slot.... +08:07:18 ============================================================================ +08:07:18 Slot Id : <97> +08:07:18 Transaction Type : RESPONSE +08:07:18 Received From : +08:07:18 ============================================================================ +08:07:18 FNo. Len. Field Value +08:07:18 ============================================================================ +08:07:18 [ 1] [ 4] [0810] +08:07:18 [ 7] [ 10] [0320010718] +08:07:18 [ 11] [ 6] [806883] +08:07:18 [ 15] [ 4] [0320] +08:07:18 [ 37] [ 12] [57908806883] +08:07:18 [ 39] [ 2] [00] +08:07:18 [ 70] [ 3] [001] +08:07:18 ============================================================================ +08:07:18 Sending to : +08:07:18 ============================================================================ +08:07:18 + + +waiting on router queue for slot.... +08:07:31 ============================================================================ +08:07:31 Slot Id : <117> +08:07:31 Transaction Type : REQUEST +08:07:31 Received From : +08:07:31 ============================================================================ +08:07:31 FNo. Len. Field Value +08:07:31 ============================================================================ +08:07:31 [ 1] [ 4] [0800] +08:07:31 [ 7] [ 10] [0320010638] +08:07:31 [ 11] [ 6] [155328] +08:07:31 [ 70] [ 3] [301] +08:07:31 ============================================================================ +08:07:31 + + +waiting on router queue for slot.... +08:07:31 Sending to : +08:07:31 ============================================================================ +08:07:31 ============================================================================ +08:07:31 Slot Id : <117> +08:07:31 Transaction Type : RESPONSE +08:07:31 Received From : +08:07:31 ============================================================================ +08:07:31 FNo. Len. Field Value +08:07:31 ============================================================================ +08:07:31 [ 1] [ 4] [0810] +08:07:31 [ 7] [ 10] [0320010638] +08:07:31 [ 11] [ 6] [155328] +08:07:31 [ 39] [ 2] [00] +08:07:31 [ 70] [ 3] [301] +08:07:31 ============================================================================ +08:07:31 Calculate Source COMM Id = 2 +08:07:31 ============================================================================ +08:07:31 + + +waiting on router queue for slot.... +08:07:36 ============================================================================ +08:07:36 Slot Id : <112> +08:07:36 Transaction Type : REQUEST +08:07:36 Received From : +08:07:36 ============================================================================ +08:07:36 FNo. Len. Field Value +08:07:36 ============================================================================ +08:07:36 [ 1] [ 4] [0800] +08:07:36 [ 7] [ 10] [0320151924] +08:07:36 [ 11] [ 6] [081924] +08:07:36 [ 37] [ 12] [57908081924] +08:07:36 [ 70] [ 3] [301] +08:07:36 ============================================================================ +08:07:36 + + +waiting on router queue for slot.... +08:07:36 Sending to : +08:07:36 ============================================================================ +08:07:36 ============================================================================ +08:07:36 Slot Id : <112> +08:07:36 Transaction Type : RESPONSE +08:07:36 Received From : +08:07:36 ============================================================================ +08:07:36 FNo. Len. Field Value +08:07:36 ============================================================================ +08:07:36 [ 1] [ 4] [0810] +08:07:36 [ 7] [ 10] [0320151924] +08:07:36 [ 11] [ 6] [081924] +08:07:36 [ 37] [ 12] [579080819240] +08:07:36 [ 39] [ 2] [00] +08:07:36 [ 70] [ 3] [810] +08:07:36 ============================================================================ +08:07:36 Calculate Source COMM Id = 6 +08:07:36 ============================================================================ +08:07:36 + + +waiting on router queue for slot.... +08:07:38 ============================================================================ +08:07:38 Slot Id : <140> +08:07:38 Transaction Type : REQUEST +08:07:38 Received From : +08:07:38 ============================================================================ +08:07:38 FNo. Len. Field Value +08:07:38 ============================================================================ +08:07:38 [ 1] [ 4] [0200] +08:07:38 [ 2] [ 16] [6213545001102825] +08:07:38 [ 3] [ 6] [302000] +08:07:38 [ 4] [ 12] [000000000000] +08:07:38 [ 7] [ 10] [0320080529] +08:07:38 [ 11] [ 6] [931895] +08:07:38 [ 12] [ 6] [080529] +08:07:38 [ 13] [ 4] [0320] +08:07:38 [ 15] [ 4] [0320] +08:07:38 [ 18] [ 4] [6011] +08:07:38 [ 19] [ 3] [418] +08:07:38 [ 22] [ 3] [021] +08:07:38 [ 25] [ 2] [01] +08:07:38 [ 28] [ 9] [D00000000] +08:07:38 [ 32] [ 6] [668899] +08:07:38 [ 35] [ 32] [6213545001102825=491212010282305] +08:07:38 [ 37] [ 12] [507900844806] +08:07:38 [ 41] [ 8] [03015003] +08:07:38 [ 42] [ 15] [APT ] +08:07:38 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:07:38 [ 49] [ 3] [418] +08:07:38 [ 52] [ 16] [E75EF229FC65B9B9] +08:07:38 ============================================================================ +08:07:38 + + +waiting on router queue for slot.... +08:07:38 Sending to : +08:07:38 ============================================================================ +08:07:38 Sending to : +08:07:38 ============================================================================ +08:07:38 ============================================================================ +08:07:38 Slot Id : <140> +08:07:38 Transaction Type : REQUEST +08:07:38 Received From : +08:07:38 ============================================================================ +08:07:38 FNo. Len. Field Value +08:07:38 ============================================================================ +08:07:38 [ 1] [ 4] [0200] +08:07:38 [ 2] [ 16] [6213545001102825] +08:07:38 [ 3] [ 6] [302000] +08:07:38 [ 4] [ 12] [000000000000] +08:07:38 [ 7] [ 10] [0320080529] +08:07:38 [ 11] [ 6] [931895] +08:07:38 [ 12] [ 6] [080529] +08:07:38 [ 13] [ 4] [0320] +08:07:38 [ 15] [ 4] [0320] +08:07:38 [ 18] [ 4] [6011] +08:07:38 [ 19] [ 3] [418] +08:07:38 [ 22] [ 3] [021] +08:07:38 [ 25] [ 2] [01] +08:07:38 [ 28] [ 9] [D00000000] +08:07:38 [ 32] [ 6] [668899] +08:07:38 [ 35] [ 32] [6213545001102825=491212010282305] +08:07:38 [ 37] [ 12] [507900844806] +08:07:38 [ 41] [ 8] [03015003] +08:07:38 [ 42] [ 15] [APT ] +08:07:38 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:07:38 [ 49] [ 3] [418] +08:07:38 [ 52] [ 16] [E75EF229FC65B9B9] +08:07:38 ============================================================================ +08:07:38 + + +waiting on router queue for slot.... +08:07:38 Sending to : +08:07:38 ============================================================================ +08:07:38 ============================================================================ +08:07:38 Slot Id : <140> +08:07:38 Transaction Type : REQUEST +08:07:38 Received From : +08:07:38 ============================================================================ +08:07:38 FNo. Len. Field Value +08:07:38 ============================================================================ +08:07:38 [ 1] [ 4] [0200] +08:07:38 [ 2] [ 16] [6213545001102825] +08:07:38 [ 3] [ 6] [302000] +08:07:38 [ 4] [ 12] [000000000000] +08:07:38 [ 7] [ 10] [0320080529] +08:07:38 [ 11] [ 6] [931895] +08:07:38 [ 12] [ 6] [080529] +08:07:38 [ 13] [ 4] [0320] +08:07:38 [ 15] [ 4] [0320] +08:07:38 [ 18] [ 4] [6011] +08:07:38 [ 19] [ 3] [418] +08:07:38 [ 22] [ 3] [021] +08:07:38 [ 25] [ 2] [01] +08:07:38 [ 28] [ 9] [D00000000] +08:07:38 [ 32] [ 6] [668899] +08:07:38 [ 35] [ 32] [6213545001102825=491212010282305] +08:07:38 [ 37] [ 12] [507900844806] +08:07:38 [ 41] [ 8] [03015003] +08:07:38 [ 42] [ 15] [APT ] +08:07:38 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:07:38 [ 49] [ 3] [418] +08:07:38 [ 52] [ 16] [C26790FD70F759D1] +08:07:38 ============================================================================ +08:07:38 + + +waiting on router queue for slot.... +08:07:38 Sending to : <0> +08:07:38 ============================================================================ +08:07:38 ============================================================================ +08:07:38 Slot Id : <140> +08:07:38 Transaction Type : RESPONSE +08:07:38 Received From : +08:07:38 ============================================================================ +08:07:38 FNo. Len. Field Value +08:07:38 ============================================================================ +08:07:38 [ 1] [ 4] [0210] +08:07:38 [ 2] [ 16] [6213545001102825] +08:07:38 [ 3] [ 6] [302000] +08:07:38 [ 4] [ 12] [000000000000] +08:07:38 [ 7] [ 10] [0320080529] +08:07:38 [ 11] [ 6] [931895] +08:07:38 [ 12] [ 6] [080529] +08:07:38 [ 13] [ 4] [0320] +08:07:38 [ 15] [ 4] [0320] +08:07:38 [ 18] [ 4] [6011] +08:07:38 [ 19] [ 3] [418] +08:07:38 [ 32] [ 6] [668899] +08:07:38 [ 35] [ 32] [6213545001102825=491212010282305] +08:07:38 [ 37] [ 12] [507900844806] +08:07:38 [ 38] [ 6] [729237] +08:07:38 [ 39] [ 2] [00] +08:07:38 [ 41] [ 8] [03015003] +08:07:38 [ 49] [ 3] [418] +08:07:38 [ 54] [ 40] [2001418C0003776166552002418C000377616655] +08:07:38 ============================================================================ +08:07:38 Sending to : +08:07:38 ============================================================================ +08:07:38 + + +waiting on router queue for slot.... +08:07:40 ============================================================================ +08:07:40 Slot Id : <140> +08:07:40 Transaction Type : RESPONSE +08:07:40 Received From : +08:07:40 ============================================================================ +08:07:40 FNo. Len. Field Value +08:07:40 ============================================================================ +08:07:40 [ 1] [ 4] [0210] +08:07:40 [ 2] [ 16] [6213545001102825] +08:07:40 [ 3] [ 6] [302000] +08:07:40 [ 4] [ 12] [000000000000] +08:07:40 [ 7] [ 10] [0320080529] +08:07:40 [ 11] [ 6] [931895] +08:07:40 [ 12] [ 6] [080529] +08:07:40 [ 13] [ 4] [0320] +08:07:40 [ 15] [ 4] [0320] +08:07:40 [ 18] [ 4] [6011] +08:07:40 [ 19] [ 3] [418] +08:07:40 [ 32] [ 6] [668899] +08:07:40 [ 35] [ 32] [6213545001102825=491212010282305] +08:07:40 [ 37] [ 12] [507900844806] +08:07:40 [ 38] [ 6] [729237] +08:07:40 [ 39] [ 2] [00] +08:07:40 [ 41] [ 8] [03015003] +08:07:40 [ 49] [ 3] [418] +08:07:40 [ 54] [ 40] [2001418C0003776166552002418C000377616655] +08:07:40 ============================================================================ +08:07:40 Calculate Source COMM Id = 4 +08:07:40 ============================================================================ +08:07:40 + + +waiting on router queue for slot.... +08:07:46 ============================================================================ +08:07:46 Slot Id : <116> +08:07:46 Transaction Type : REQUEST +08:07:46 Received From : +08:07:46 ============================================================================ +08:07:46 FNo. Len. Field Value +08:07:46 ============================================================================ +08:07:46 [ 1] [ 4] [0800] +08:07:46 [ 7] [ 10] [0320010655] +08:07:46 [ 11] [ 6] [155329] +08:07:46 [ 70] [ 3] [301] +08:07:46 ============================================================================ +08:07:46 + + +waiting on router queue for slot.... +08:07:46 Sending to : +08:07:46 ============================================================================ +08:07:46 ============================================================================ +08:07:46 Slot Id : <116> +08:07:46 Transaction Type : RESPONSE +08:07:46 Received From : +08:07:46 ============================================================================ +08:07:46 FNo. Len. Field Value +08:07:46 ============================================================================ +08:07:46 [ 1] [ 4] [0810] +08:07:46 [ 7] [ 10] [0320010655] +08:07:46 [ 11] [ 6] [155329] +08:07:46 [ 39] [ 2] [00] +08:07:46 [ 70] [ 3] [301] +08:07:46 ============================================================================ +08:07:46 Calculate Source COMM Id = 2 +08:07:46 ============================================================================ +08:07:46 + + +waiting on router queue for slot.... +08:07:57 ============================================================================ +08:07:57 Slot Id : <111> +08:07:57 Transaction Type : REQUEST +08:07:57 Received From : +08:07:57 ============================================================================ +08:07:57 FNo. Len. Field Value +08:07:57 ============================================================================ +08:07:57 [ 1] [ 4] [0800] +08:07:57 [ 7] [ 10] [0320010705] +08:07:57 [ 11] [ 6] [155330] +08:07:57 [ 70] [ 3] [301] +08:07:57 ============================================================================ +08:07:57 + + +waiting on router queue for slot.... +08:07:57 Sending to : +08:07:57 ============================================================================ +08:07:57 ============================================================================ +08:07:57 Slot Id : <111> +08:07:57 Transaction Type : RESPONSE +08:07:57 Received From : +08:07:57 ============================================================================ +08:07:57 FNo. Len. Field Value +08:07:57 ============================================================================ +08:07:57 [ 1] [ 4] [0810] +08:07:57 [ 7] [ 10] [0320010705] +08:07:57 [ 11] [ 6] [155330] +08:07:57 [ 39] [ 2] [00] +08:07:57 [ 70] [ 3] [301] +08:07:57 ============================================================================ +08:07:57 Calculate Source COMM Id = 2 +08:07:57 ============================================================================ +08:07:57 + + +waiting on router queue for slot.... +08:08:02 ============================================================================ +08:08:02 Slot Id : <147> +08:08:02 Transaction Type : REQUEST +08:08:02 Received From : +08:08:02 ============================================================================ +08:08:02 FNo. Len. Field Value +08:08:02 ============================================================================ +08:08:02 [ 1] [ 4] [0200] +08:08:02 [ 2] [ 16] [6688990603097609] +08:08:02 [ 3] [ 6] [301000] +08:08:02 [ 7] [ 10] [0320010710] +08:08:02 [ 11] [ 6] [267034] +08:08:02 [ 12] [ 6] [080710] +08:08:02 [ 13] [ 4] [0320] +08:08:02 [ 14] [ 4] [4405] +08:08:02 [ 15] [ 4] [0320] +08:08:02 [ 18] [ 4] [6011] +08:08:02 [ 19] [ 3] [418] +08:08:02 [ 22] [ 3] [021] +08:08:02 [ 25] [ 2] [01] +08:08:02 [ 32] [ 6] [180893] +08:08:02 [ 35] [ 37] [6688990603097609=44050061760928400000] +08:08:02 [ 37] [ 12] [507901267034] +08:08:02 [ 41] [ 8] [0522XYXH] +08:08:02 [ 42] [ 15] [999999 ] +08:08:02 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:08:02 [ 49] [ 3] [418] +08:08:02 [ 52] [ 16] [A22515F2D0FB4F8F] +08:08:02 ============================================================================ +08:08:02 + + +waiting on router queue for slot.... +08:08:02 Sending to : +08:08:02 ============================================================================ +08:08:02 Sending to : +08:08:02 ============================================================================ +08:08:03 ============================================================================ +08:08:03 Slot Id : <147> +08:08:03 Transaction Type : REQUEST +08:08:03 Received From : +08:08:03 ============================================================================ +08:08:03 FNo. Len. Field Value +08:08:03 ============================================================================ +08:08:03 [ 1] [ 4] [0200] +08:08:03 [ 2] [ 16] [6688990603097609] +08:08:03 [ 3] [ 6] [301000] +08:08:03 [ 7] [ 10] [0320010710] +08:08:03 [ 11] [ 6] [267034] +08:08:03 [ 12] [ 6] [080710] +08:08:03 [ 13] [ 4] [0320] +08:08:03 [ 14] [ 4] [4405] +08:08:03 [ 15] [ 4] [0320] +08:08:03 [ 18] [ 4] [6011] +08:08:03 [ 19] [ 3] [418] +08:08:03 [ 22] [ 3] [021] +08:08:03 [ 25] [ 2] [01] +08:08:03 [ 32] [ 6] [180893] +08:08:03 [ 35] [ 37] [6688990603097609=44050061760928400000] +08:08:03 [ 37] [ 12] [507901267034] +08:08:03 [ 41] [ 8] [0522XYXH] +08:08:03 [ 42] [ 15] [999999 ] +08:08:03 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:08:03 [ 49] [ 3] [418] +08:08:03 [ 52] [ 16] [A22515F2D0FB4F8F] +08:08:03 ============================================================================ +08:08:03 + + +waiting on router queue for slot.... +08:08:03 Sending to : +08:08:03 ============================================================================ +08:08:03 ============================================================================ +08:08:03 Slot Id : <147> +08:08:03 Transaction Type : REQUEST +08:08:03 Received From : +08:08:03 ============================================================================ +08:08:03 FNo. Len. Field Value +08:08:03 ============================================================================ +08:08:03 [ 1] [ 4] [0200] +08:08:03 [ 2] [ 16] [6688990603097609] +08:08:03 [ 3] [ 6] [301000] +08:08:03 [ 7] [ 10] [0320010710] +08:08:03 [ 11] [ 6] [267034] +08:08:03 [ 12] [ 6] [080710] +08:08:03 [ 13] [ 4] [0320] +08:08:03 [ 14] [ 4] [4405] +08:08:03 [ 15] [ 4] [0320] +08:08:03 [ 18] [ 4] [6011] +08:08:03 [ 19] [ 3] [418] +08:08:03 [ 22] [ 3] [021] +08:08:03 [ 25] [ 2] [01] +08:08:03 [ 32] [ 6] [180893] +08:08:03 [ 35] [ 37] [6688990603097609=44050061760928400000] +08:08:03 [ 37] [ 12] [507901267034] +08:08:03 [ 41] [ 8] [0522XYXH] +08:08:03 [ 42] [ 15] [999999 ] +08:08:03 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:08:03 [ 49] [ 3] [418] +08:08:03 [ 52] [ 16] [96F42659277875AE] +08:08:03 ============================================================================ +08:08:03 + + +waiting on router queue for slot.... +08:08:03 Sending to : <0> +08:08:03 ============================================================================ +08:08:03 ============================================================================ +08:08:03 Slot Id : <147> +08:08:03 Transaction Type : RESPONSE +08:08:03 Received From : +08:08:03 ============================================================================ +08:08:03 FNo. Len. Field Value +08:08:03 ============================================================================ +08:08:03 [ 1] [ 4] [0210] +08:08:03 [ 2] [ 16] [6688990603097609] +08:08:03 [ 3] [ 6] [301000] +08:08:03 [ 4] [ 12] [000000000000] +08:08:03 [ 7] [ 10] [0320010710] +08:08:03 [ 11] [ 6] [267034] +08:08:03 [ 12] [ 6] [080710] +08:08:03 [ 13] [ 4] [0320] +08:08:03 [ 15] [ 4] [0320] +08:08:03 [ 18] [ 4] [6011] +08:08:03 [ 19] [ 3] [418] +08:08:03 [ 22] [ 3] [021] +08:08:03 [ 32] [ 6] [180893] +08:08:03 [ 35] [ 37] [6688990603097609=44050061760928400000] +08:08:03 [ 37] [ 12] [507901267034] +08:08:03 [ 39] [ 2] [14] +08:08:03 [ 41] [ 8] [0522XYXH] +08:08:03 [ 49] [ 3] [418] +08:08:03 ============================================================================ +08:08:03 Sending to : +08:08:03 ============================================================================ +08:08:03 + + +waiting on router queue for slot.... +08:08:04 ============================================================================ +08:08:04 Slot Id : <147> +08:08:04 Transaction Type : RESPONSE +08:08:04 Received From : +08:08:04 ============================================================================ +08:08:04 FNo. Len. Field Value +08:08:04 ============================================================================ +08:08:04 [ 1] [ 4] [0210] +08:08:04 [ 2] [ 16] [6688990603097609] +08:08:04 [ 3] [ 6] [301000] +08:08:04 [ 4] [ 12] [000000000000] +08:08:04 [ 7] [ 10] [0320010710] +08:08:04 [ 11] [ 6] [267034] +08:08:04 [ 12] [ 6] [080710] +08:08:04 [ 13] [ 4] [0320] +08:08:04 [ 15] [ 4] [0320] +08:08:04 [ 18] [ 4] [6011] +08:08:04 [ 19] [ 3] [418] +08:08:04 [ 22] [ 3] [021] +08:08:04 [ 32] [ 6] [180893] +08:08:04 [ 35] [ 37] [6688990603097609=44050061760928400000] +08:08:04 [ 37] [ 12] [507901267034] +08:08:04 [ 39] [ 2] [14] +08:08:04 [ 41] [ 8] [0522XYXH] +08:08:04 [ 49] [ 3] [418] +08:08:04 ============================================================================ +08:08:04 Calculate Source COMM Id = 2 +08:08:04 ============================================================================ +08:08:04 + + +waiting on router queue for slot.... +08:08:11 ============================================================================ +08:08:11 Slot Id : <124> +08:08:11 Transaction Type : REQUEST +08:08:11 Received From : +08:08:11 ============================================================================ +08:08:11 FNo. Len. Field Value +08:08:11 ============================================================================ +08:08:11 [ 1] [ 4] [0200] +08:08:11 [ 2] [ 16] [2206991200035946] +08:08:11 [ 3] [ 6] [010000] +08:08:11 [ 4] [ 12] [000100000000] +08:08:11 [ 7] [ 10] [0320010718] +08:08:11 [ 11] [ 6] [267036] +08:08:11 [ 12] [ 6] [080718] +08:08:11 [ 13] [ 4] [0320] +08:08:11 [ 14] [ 4] [1205] +08:08:11 [ 15] [ 4] [0320] +08:08:11 [ 18] [ 4] [6011] +08:08:11 [ 19] [ 3] [418] +08:08:11 [ 22] [ 3] [021] +08:08:11 [ 25] [ 2] [01] +08:08:11 [ 28] [ 9] [D00002000] +08:08:11 [ 32] [ 6] [180893] +08:08:11 [ 35] [ 32] [2206991200035946=120500013594000] +08:08:11 [ 37] [ 12] [507901267036] +08:08:11 [ 41] [ 8] [0101VTEB] +08:08:11 [ 42] [ 15] [999999 ] +08:08:11 [ 43] [ 40] [ATM VIENTIANE CAPITAL BRANCH LOCATION, C] +08:08:11 [ 49] [ 3] [418] +08:08:11 [ 52] [ 16] [BFD50A1C2553DC8E] +08:08:11 ============================================================================ +08:08:11 + + +waiting on router queue for slot.... +08:08:11 Sending to : +08:08:11 ============================================================================ +08:08:11 Sending to : +08:08:11 ============================================================================ +08:08:11 ============================================================================ +08:08:11 Slot Id : <124> +08:08:11 Transaction Type : REQUEST +08:08:11 Received From : +08:08:11 ============================================================================ +08:08:11 FNo. Len. Field Value +08:08:11 ============================================================================ +08:08:11 [ 1] [ 4] [0200] +08:08:11 [ 2] [ 16] [2206991200035946] +08:08:11 [ 3] [ 6] [010000] +08:08:11 [ 4] [ 12] [000100000000] +08:08:11 [ 7] [ 10] [0320010718] +08:08:11 [ 11] [ 6] [267036] +08:08:11 [ 12] [ 6] [080718] +08:08:11 [ 13] [ 4] [0320] +08:08:11 [ 14] [ 4] [1205] +08:08:11 [ 15] [ 4] [0320] +08:08:11 [ 18] [ 4] [6011] +08:08:11 [ 19] [ 3] [418] +08:08:11 [ 22] [ 3] [021] +08:08:11 [ 25] [ 2] [01] +08:08:11 [ 28] [ 9] [D00002000] +08:08:11 [ 32] [ 6] [180893] +08:08:11 [ 35] [ 32] [2206991200035946=120500013594000] +08:08:11 [ 37] [ 12] [507901267036] +08:08:11 [ 41] [ 8] [0101VTEB] +08:08:11 [ 42] [ 15] [999999 ] +08:08:11 [ 43] [ 40] [ATM VIENTIANE CAPITAL BRANCH LOCATION, C] +08:08:11 [ 49] [ 3] [418] +08:08:11 [ 52] [ 16] [BFD50A1C2553DC8E] +08:08:11 ============================================================================ +08:08:11 + + +waiting on router queue for slot.... +08:08:11 Sending to : +08:08:11 ============================================================================ +08:08:11 ============================================================================ +08:08:11 Slot Id : <124> +08:08:11 Transaction Type : REQUEST +08:08:11 Received From : +08:08:11 ============================================================================ +08:08:11 FNo. Len. Field Value +08:08:11 ============================================================================ +08:08:11 [ 1] [ 4] [0200] +08:08:11 [ 2] [ 16] [2206991200035946] +08:08:11 [ 3] [ 6] [010000] +08:08:11 [ 4] [ 12] [000100000000] +08:08:11 [ 7] [ 10] [0320010718] +08:08:11 [ 11] [ 6] [267036] +08:08:11 [ 12] [ 6] [080718] +08:08:11 [ 13] [ 4] [0320] +08:08:11 [ 14] [ 4] [1205] +08:08:11 [ 15] [ 4] [0320] +08:08:11 [ 18] [ 4] [6011] +08:08:11 [ 19] [ 3] [418] +08:08:11 [ 22] [ 3] [021] +08:08:11 [ 25] [ 2] [01] +08:08:11 [ 28] [ 9] [D00002000] +08:08:11 [ 32] [ 6] [180893] +08:08:11 [ 35] [ 32] [2206991200035946=120500013594000] +08:08:11 [ 37] [ 12] [507901267036] +08:08:11 [ 41] [ 8] [0101VTEB] +08:08:11 [ 42] [ 15] [999999 ] +08:08:11 [ 43] [ 40] [ATM VIENTIANE CAPITAL BRANCH LOCATION, C] +08:08:11 [ 49] [ 3] [418] +08:08:11 [ 52] [ 16] [FC74E695A0D6CD9A] +08:08:11 ============================================================================ +08:08:11 + + +waiting on router queue for slot.... +08:08:11 Sending to : <1> +08:08:11 ============================================================================ +08:08:13 ============================================================================ +08:08:13 Slot Id : <124> +08:08:13 Transaction Type : RESPONSE +08:08:13 Received From : +08:08:13 ============================================================================ +08:08:13 FNo. Len. Field Value +08:08:13 ============================================================================ +08:08:13 [ 1] [ 4] [0210] +08:08:13 [ 2] [ 16] [2206991200035946] +08:08:13 [ 3] [ 6] [010000] +08:08:13 [ 4] [ 12] [000100000000] +08:08:13 [ 7] [ 10] [0320010718] +08:08:13 [ 11] [ 6] [267036] +08:08:13 [ 12] [ 6] [080718] +08:08:13 [ 13] [ 4] [0320] +08:08:13 [ 15] [ 4] [0320] +08:08:13 [ 18] [ 4] [6011] +08:08:13 [ 32] [ 6] [180893] +08:08:13 [ 35] [ 32] [2206991200035946=120500013594000] +08:08:13 [ 37] [ 12] [507901267036] +08:08:13 [ 38] [ 6] [939657] +08:08:13 [ 39] [ 2] [00] +08:08:13 [ 41] [ 8] [0101VTEB] +08:08:13 [ 49] [ 3] [418] +08:08:13 [ 54] [ 40] [0001418C0000076853000002418C000007685300] +08:08:13 ============================================================================ +08:08:13 Sending to : +08:08:13 ============================================================================ +08:08:13 + + +waiting on router queue for slot.... +08:08:14 ============================================================================ +08:08:14 Slot Id : <124> +08:08:14 Transaction Type : RESPONSE +08:08:14 Received From : +08:08:14 ============================================================================ +08:08:14 FNo. Len. Field Value +08:08:14 ============================================================================ +08:08:14 [ 1] [ 4] [0210] +08:08:14 [ 2] [ 16] [2206991200035946] +08:08:14 [ 3] [ 6] [010000] +08:08:14 [ 4] [ 12] [000100000000] +08:08:14 [ 7] [ 10] [0320010718] +08:08:14 [ 11] [ 6] [267036] +08:08:14 [ 12] [ 6] [080718] +08:08:14 [ 13] [ 4] [0320] +08:08:14 [ 15] [ 4] [0320] +08:08:14 [ 18] [ 4] [6011] +08:08:14 [ 32] [ 6] [180893] +08:08:14 [ 35] [ 32] [2206991200035946=120500013594000] +08:08:14 [ 37] [ 12] [507901267036] +08:08:14 [ 38] [ 6] [939657] +08:08:14 [ 39] [ 2] [00] +08:08:14 [ 41] [ 8] [0101VTEB] +08:08:14 [ 49] [ 3] [418] +08:08:14 [ 54] [ 40] [0001418C0000076853000002418C000007685300] +08:08:14 ============================================================================ +08:08:14 Calculate Source COMM Id = 2 +08:08:14 ============================================================================ +08:08:14 + + +waiting on router queue for slot.... +08:08:19 ============================================================================ +08:08:19 Slot Id : <80> +08:08:19 Transaction Type : REQUEST +08:08:19 Received From : +08:08:19 ============================================================================ +08:08:19 FNo. Len. Field Value +08:08:19 ============================================================================ +08:08:19 [ 1] [ 4] [0200] +08:08:19 [ 2] [ 16] [6688990105999906] +08:08:19 [ 3] [ 6] [010000] +08:08:19 [ 4] [ 12] [000010000000] +08:08:19 [ 7] [ 10] [0320080815] +08:08:19 [ 11] [ 6] [679193] +08:08:19 [ 12] [ 6] [080815] +08:08:19 [ 13] [ 4] [0320] +08:08:19 [ 15] [ 4] [0320] +08:08:19 [ 18] [ 4] [6011] +08:08:19 [ 22] [ 3] [900] +08:08:19 [ 25] [ 2] [02] +08:08:19 [ 28] [ 9] [D00002000] +08:08:19 [ 32] [ 6] [621354] +08:08:19 [ 35] [ 37] [6688990105999906=43111231990671400000] +08:08:19 [ 37] [ 12] [507903938920] +08:08:19 [ 41] [ 8] [01010900] +08:08:19 [ 42] [ 15] [NATIVE ] +08:08:19 [ 43] [ 40] [Bank KM9 Xatthany LAO] +08:08:19 [ 49] [ 3] [418] +08:08:19 [ 52] [ 16] [FAC5390444B8BBEA] +08:08:19 ============================================================================ +08:08:19 + + +waiting on router queue for slot.... +08:08:19 Sending to : +08:08:19 ============================================================================ +08:08:19 Sending to : +08:08:19 ============================================================================ +08:08:19 ============================================================================ +08:08:19 Slot Id : <80> +08:08:19 Transaction Type : REQUEST +08:08:19 Received From : +08:08:19 ============================================================================ +08:08:19 FNo. Len. Field Value +08:08:19 ============================================================================ +08:08:19 [ 1] [ 4] [0200] +08:08:19 [ 2] [ 16] [6688990105999906] +08:08:19 [ 3] [ 6] [010000] +08:08:19 [ 4] [ 12] [000010000000] +08:08:19 [ 7] [ 10] [0320080815] +08:08:19 [ 11] [ 6] [679193] +08:08:19 [ 12] [ 6] [080815] +08:08:19 [ 13] [ 4] [0320] +08:08:19 [ 15] [ 4] [0320] +08:08:19 [ 18] [ 4] [6011] +08:08:19 [ 22] [ 3] [900] +08:08:19 [ 25] [ 2] [02] +08:08:19 [ 28] [ 9] [D00002000] +08:08:19 [ 32] [ 6] [621354] +08:08:19 [ 35] [ 37] [6688990105999906=43111231990671400000] +08:08:19 [ 37] [ 12] [507903938920] +08:08:19 [ 41] [ 8] [01010900] +08:08:19 [ 42] [ 15] [NATIVE ] +08:08:19 [ 43] [ 40] [Bank KM9 Xatthany LAO] +08:08:19 [ 49] [ 3] [418] +08:08:19 [ 52] [ 16] [FAC5390444B8BBEA] +08:08:19 ============================================================================ +08:08:19 + + +waiting on router queue for slot.... +08:08:19 Sending to : +08:08:19 ============================================================================ +08:08:19 ============================================================================ +08:08:19 Slot Id : <80> +08:08:19 Transaction Type : REQUEST +08:08:19 Received From : +08:08:19 ============================================================================ +08:08:19 FNo. Len. Field Value +08:08:19 ============================================================================ +08:08:19 [ 1] [ 4] [0200] +08:08:19 [ 2] [ 16] [6688990105999906] +08:08:19 [ 3] [ 6] [010000] +08:08:19 [ 4] [ 12] [000010000000] +08:08:19 [ 7] [ 10] [0320080815] +08:08:19 [ 11] [ 6] [679193] +08:08:19 [ 12] [ 6] [080815] +08:08:19 [ 13] [ 4] [0320] +08:08:19 [ 15] [ 4] [0320] +08:08:19 [ 18] [ 4] [6011] +08:08:19 [ 22] [ 3] [900] +08:08:19 [ 25] [ 2] [02] +08:08:19 [ 28] [ 9] [D00002000] +08:08:19 [ 32] [ 6] [621354] +08:08:19 [ 35] [ 37] [6688990105999906=43111231990671400000] +08:08:19 [ 37] [ 12] [507903938920] +08:08:19 [ 41] [ 8] [01010900] +08:08:19 [ 42] [ 15] [NATIVE ] +08:08:19 [ 43] [ 40] [Bank KM9 Xatthany LAO] +08:08:19 [ 49] [ 3] [418] +08:08:19 [ 52] [ 16] [C989D017DCC1C648] +08:08:19 ============================================================================ +08:08:19 + + +waiting on router queue for slot.... +08:08:19 Sending to : <4> +08:08:19 ============================================================================ +08:08:20 ============================================================================ +08:08:20 Slot Id : <80> +08:08:20 Transaction Type : RESPONSE +08:08:20 Received From : +08:08:20 ============================================================================ +08:08:20 FNo. Len. Field Value +08:08:20 ============================================================================ +08:08:20 [ 1] [ 4] [0210] +08:08:20 [ 2] [ 16] [6688990105999906] +08:08:20 [ 3] [ 6] [010000] +08:08:20 [ 4] [ 12] [000010000000] +08:08:20 [ 11] [ 6] [679193] +08:08:20 [ 12] [ 6] [080815] +08:08:20 [ 15] [ 4] [0320] +08:08:20 [ 18] [ 4] [6011] +08:08:20 [ 32] [ 6] [621354] +08:08:20 [ 35] [ 37] [6688990105999906=43111231990671400000] +08:08:20 [ 37] [ 12] [507903938920] +08:08:20 [ 38] [ 6] [071193] +08:08:20 [ 39] [ 2] [00] +08:08:20 [ 41] [ 8] [01010900] +08:08:20 [ 49] [ 3] [418] +08:08:20 [ 54] [ 20] [0002418C000022278474] +08:08:20 ============================================================================ +08:08:20 Sending to : +08:08:20 ============================================================================ +08:08:20 + + +waiting on router queue for slot.... +08:08:20 ============================================================================ +08:08:20 Slot Id : <123> +08:08:20 Transaction Type : REQUEST +08:08:20 Received From : +08:08:20 ============================================================================ +08:08:20 FNo. Len. Field Value +08:08:20 ============================================================================ +08:08:20 [ 1] [ 4] [0800] +08:08:20 [ 2] [ 5] [02531] +08:08:20 [ 3] [ 6] [579088] +08:08:20 [ 7] [ 10] [0320010820] +08:08:20 [ 11] [ 6] [806884] +08:08:20 [ 15] [ 10] [0320010820] +08:08:20 [ 37] [ 11] [57908806884] +08:08:20 [ 70] [ 3] [001] +08:08:20 ============================================================================ +08:08:20 + + +waiting on router queue for slot.... +08:08:20 ============================================================================ +08:08:20 Slot Id : <123> +08:08:20 Transaction Type : RESPONSE +08:08:20 Received From : +08:08:20 ============================================================================ +08:08:20 FNo. Len. Field Value +08:08:20 ============================================================================ +08:08:20 [ 1] [ 4] [0810] +08:08:20 [ 7] [ 10] [0320010820] +08:08:20 [ 11] [ 6] [806884] +08:08:20 [ 15] [ 4] [0320] +08:08:20 [ 37] [ 12] [57908806884] +08:08:20 [ 39] [ 2] [00] +08:08:20 [ 70] [ 3] [001] +08:08:20 ============================================================================ +08:08:20 Sending to : +08:08:20 ============================================================================ +08:08:20 + + +waiting on router queue for slot.... +08:08:22 ============================================================================ +08:08:22 Slot Id : <80> +08:08:22 Transaction Type : RESPONSE +08:08:22 Received From : +08:08:22 ============================================================================ +08:08:22 FNo. Len. Field Value +08:08:22 ============================================================================ +08:08:22 [ 1] [ 4] [0210] +08:08:22 [ 2] [ 16] [6688990105999906] +08:08:22 [ 3] [ 6] [010000] +08:08:22 [ 4] [ 12] [000010000000] +08:08:22 [ 11] [ 6] [679193] +08:08:22 [ 12] [ 6] [080815] +08:08:22 [ 15] [ 4] [0320] +08:08:22 [ 18] [ 4] [6011] +08:08:22 [ 32] [ 6] [621354] +08:08:22 [ 35] [ 37] [6688990105999906=43111231990671400000] +08:08:22 [ 37] [ 12] [507903938920] +08:08:22 [ 38] [ 6] [071193] +08:08:22 [ 39] [ 2] [00] +08:08:22 [ 41] [ 8] [01010900] +08:08:22 [ 49] [ 3] [418] +08:08:22 [ 54] [ 20] [0002418C000022278474] +08:08:22 ============================================================================ +08:08:22 Calculate Source COMM Id = 0 +08:08:22 ============================================================================ +08:08:22 + + +waiting on router queue for slot.... +08:08:28 ============================================================================ +08:08:28 Slot Id : <122> +08:08:28 Transaction Type : REQUEST +08:08:28 Received From : +08:08:28 ============================================================================ +08:08:28 FNo. Len. Field Value +08:08:28 ============================================================================ +08:08:28 [ 0] [ 4] [0420] +08:08:28 [ 1] [ 4] [0420] +08:08:28 [ 2] [ 16] [1808930300018793] +08:08:28 [ 3] [ 6] [011000] +08:08:28 [ 4] [ 12] [000100000000] +08:08:28 [ 6] [ 12] [000100000000] +08:08:28 [ 7] [ 10] [0320080600] +08:08:28 [ 11] [ 6] [678527] +08:08:28 [ 12] [ 6] [080600] +08:08:28 [ 13] [ 4] [0320] +08:08:28 [ 15] [ 4] [0320] +08:08:28 [ 18] [ 4] [6011] +08:08:28 [ 22] [ 3] [900] +08:08:28 [ 25] [ 2] [02] +08:08:28 [ 28] [ 9] [D00002000] +08:08:28 [ 32] [ 6] [621354] +08:08:28 [ 35] [ 27] [1808930300018793=1803500401] +08:08:28 [ 37] [ 12] [507903028249] +08:08:28 [ 39] [ 2] [00] +08:08:28 [ 41] [ 8] [12002500] +08:08:28 [ 42] [ 15] [NATIVE ] +08:08:28 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:08:28 [ 49] [ 3] [418] +08:08:28 [ 52] [ 16] [F73FC271F9743D05] +08:08:28 ============================================================================ +08:08:28 + + +waiting on router queue for slot.... +08:08:29 ============================================================================ +08:08:29 Slot Id : <161> +08:08:29 Transaction Type : REQUEST +08:08:29 Received From : +08:08:29 ============================================================================ +08:08:29 FNo. Len. Field Value +08:08:29 ============================================================================ +08:08:29 [ 1] [ 4] [0800] +08:08:29 [ 7] [ 10] [0320010737] +08:08:29 [ 11] [ 6] [155331] +08:08:29 [ 70] [ 3] [301] +08:08:29 ============================================================================ +08:08:29 + + +waiting on router queue for slot.... +08:08:29 Sending to : +08:08:29 ============================================================================ +08:08:29 ============================================================================ +08:08:29 Slot Id : <161> +08:08:29 Transaction Type : RESPONSE +08:08:29 Received From : +08:08:29 ============================================================================ +08:08:29 FNo. Len. Field Value +08:08:29 ============================================================================ +08:08:29 [ 1] [ 4] [0810] +08:08:29 [ 7] [ 10] [0320010737] +08:08:29 [ 11] [ 6] [155331] +08:08:29 [ 39] [ 2] [00] +08:08:29 [ 70] [ 3] [301] +08:08:29 ============================================================================ +08:08:29 Calculate Source COMM Id = 2 +08:08:29 ============================================================================ +08:08:29 + + +waiting on router queue for slot.... +08:08:31 ============================================================================ +08:08:31 Slot Id : <132> +08:08:31 Transaction Type : REQUEST +08:08:31 Received From : +08:08:31 ============================================================================ +08:08:31 FNo. Len. Field Value +08:08:31 ============================================================================ +08:08:31 [ 1] [ 4] [0200] +08:08:31 [ 2] [ 16] [1808930800023293] +08:08:31 [ 3] [ 6] [011000] +08:08:31 [ 4] [ 12] [000010000000] +08:08:31 [ 7] [ 10] [0320080827] +08:08:31 [ 11] [ 6] [679236] +08:08:31 [ 12] [ 6] [080827] +08:08:31 [ 13] [ 4] [0320] +08:08:31 [ 15] [ 4] [0320] +08:08:31 [ 18] [ 4] [6011] +08:08:31 [ 22] [ 3] [900] +08:08:31 [ 25] [ 2] [02] +08:08:31 [ 28] [ 9] [D00002000] +08:08:31 [ 32] [ 6] [621354] +08:08:31 [ 35] [ 27] [1808930800023293=1803500201] +08:08:31 [ 37] [ 12] [507905064593] +08:08:31 [ 41] [ 8] [12002900] +08:08:31 [ 42] [ 15] [NATIVE ] +08:08:31 [ 43] [ 40] [KM18 Xayyabouly LAO] +08:08:31 [ 49] [ 3] [418] +08:08:31 [ 52] [ 16] [688A5606B06D2D85] +08:08:31 ============================================================================ +08:08:31 + + +waiting on router queue for slot.... +08:08:31 Sending to : +08:08:31 ============================================================================ +08:08:31 Sending to : +08:08:31 ============================================================================ +08:08:31 ============================================================================ +08:08:31 Slot Id : <132> +08:08:31 Transaction Type : REQUEST +08:08:31 Received From : +08:08:31 ============================================================================ +08:08:31 FNo. Len. Field Value +08:08:31 ============================================================================ +08:08:31 [ 1] [ 4] [0200] +08:08:31 [ 2] [ 16] [1808930800023293] +08:08:31 [ 3] [ 6] [011000] +08:08:31 [ 4] [ 12] [000010000000] +08:08:31 [ 7] [ 10] [0320080827] +08:08:31 [ 11] [ 6] [679236] +08:08:31 [ 12] [ 6] [080827] +08:08:31 [ 13] [ 4] [0320] +08:08:31 [ 15] [ 4] [0320] +08:08:31 [ 18] [ 4] [6011] +08:08:31 [ 22] [ 3] [900] +08:08:31 [ 25] [ 2] [02] +08:08:31 [ 28] [ 9] [D00002000] +08:08:31 [ 32] [ 6] [621354] +08:08:31 [ 35] [ 27] [1808930800023293=1803500201] +08:08:31 [ 37] [ 12] [507905064593] +08:08:31 [ 41] [ 8] [12002900] +08:08:31 [ 42] [ 15] [NATIVE ] +08:08:31 [ 43] [ 40] [KM18 Xayyabouly LAO] +08:08:31 [ 49] [ 3] [418] +08:08:31 [ 52] [ 16] [688A5606B06D2D85] +08:08:31 ============================================================================ +08:08:31 + + +waiting on router queue for slot.... +08:08:31 Sending to : +08:08:31 ============================================================================ +08:08:31 ============================================================================ +08:08:31 Slot Id : <132> +08:08:31 Transaction Type : REQUEST +08:08:31 Received From : +08:08:31 ============================================================================ +08:08:31 FNo. Len. Field Value +08:08:31 ============================================================================ +08:08:31 [ 1] [ 4] [0200] +08:08:31 [ 2] [ 16] [1808930800023293] +08:08:31 [ 3] [ 6] [011000] +08:08:31 [ 4] [ 12] [000010000000] +08:08:31 [ 7] [ 10] [0320080827] +08:08:31 [ 11] [ 6] [679236] +08:08:31 [ 12] [ 6] [080827] +08:08:31 [ 13] [ 4] [0320] +08:08:31 [ 15] [ 4] [0320] +08:08:31 [ 18] [ 4] [6011] +08:08:31 [ 22] [ 3] [900] +08:08:31 [ 25] [ 2] [02] +08:08:31 [ 28] [ 9] [D00002000] +08:08:31 [ 32] [ 6] [621354] +08:08:31 [ 35] [ 27] [1808930800023293=1803500201] +08:08:31 [ 37] [ 12] [507905064593] +08:08:31 [ 41] [ 8] [12002900] +08:08:31 [ 42] [ 15] [NATIVE ] +08:08:31 [ 43] [ 40] [KM18 Xayyabouly LAO] +08:08:31 [ 49] [ 3] [418] +08:08:31 [ 52] [ 16] [98A81F273A32A899] +08:08:31 ============================================================================ +08:08:31 + + +waiting on router queue for slot.... +08:08:31 Sending to : <2> +08:08:31 ============================================================================ +08:08:32 ============================================================================ +08:08:32 Slot Id : <122> +08:08:32 Transaction Type : RESPONSE +08:08:32 Received From : +08:08:32 ============================================================================ +08:08:32 FNo. Len. Field Value +08:08:32 ============================================================================ +08:08:32 [ 1] [ 4] [0430] +08:08:32 [ 2] [ 16] [1808930300018793] +08:08:32 [ 3] [ 6] [011000] +08:08:32 [ 4] [ 12] [000100000000] +08:08:32 [ 6] [ 12] [000100000000] +08:08:32 [ 7] [ 10] [0320080600] +08:08:32 [ 11] [ 6] [678527] +08:08:32 [ 12] [ 6] [080600] +08:08:32 [ 13] [ 4] [0320] +08:08:32 [ 19] [ 3] [418] +08:08:32 [ 32] [ 6] [621354] +08:08:32 [ 35] [ 27] [1808930300018793=1803500401] +08:08:32 [ 37] [ 12] [507903028249] +08:08:32 [ 38] [ 6] [678527] +08:08:32 [ 39] [ 2] [00] +08:08:32 [ 41] [ 8] [12002500] +08:08:32 [ 49] [ 3] [418] +08:08:32 ============================================================================ +08:08:32 Successfully send the slot [122] To REVERSAL Process +08:08:32 + + +waiting on router queue for slot.... +08:08:39 ============================================================================ +08:08:39 Slot Id : <132> +08:08:39 Transaction Type : RESPONSE +08:08:39 Received From : +08:08:39 ============================================================================ +08:08:39 FNo. Len. Field Value +08:08:39 ============================================================================ +08:08:39 [ 1] [ 4] [0210] +08:08:39 [ 2] [ 16] [1808930800023293] +08:08:39 [ 3] [ 6] [011000] +08:08:39 [ 4] [ 12] [000010000000] +08:08:39 [ 6] [ 12] [000010000000] +08:08:39 [ 7] [ 10] [0320080827] +08:08:39 [ 11] [ 6] [679236] +08:08:39 [ 12] [ 6] [080827] +08:08:39 [ 13] [ 4] [0320] +08:08:39 [ 18] [ 4] [6011] +08:08:39 [ 19] [ 3] [418] +08:08:39 [ 22] [ 3] [021] +08:08:39 [ 32] [ 6] [621354] +08:08:39 [ 35] [ 27] [1808930800023293=1803500201] +08:08:39 [ 37] [ 12] [507905064593] +08:08:39 [ 38] [ 6] [679236] +08:08:39 [ 39] [ 2] [00] +08:08:39 [ 41] [ 8] [12002900] +08:08:39 [ 49] [ 3] [418] +08:08:39 [ 52] [ 16] [98A81F273A32A899] +08:08:39 [ 54] [ 20] [1001418C000051814400] +08:08:39 ============================================================================ +08:08:39 Sending to : +08:08:39 ============================================================================ +08:08:39 + + +waiting on router queue for slot.... +08:08:40 ============================================================================ +08:08:40 Slot Id : <132> +08:08:40 Transaction Type : RESPONSE +08:08:40 Received From : +08:08:40 ============================================================================ +08:08:40 FNo. Len. Field Value +08:08:40 ============================================================================ +08:08:40 [ 1] [ 4] [0210] +08:08:40 [ 2] [ 16] [1808930800023293] +08:08:40 [ 3] [ 6] [011000] +08:08:40 [ 4] [ 12] [000010000000] +08:08:40 [ 6] [ 12] [000010000000] +08:08:40 [ 7] [ 10] [0320080827] +08:08:40 [ 11] [ 6] [679236] +08:08:40 [ 12] [ 6] [080827] +08:08:40 [ 13] [ 4] [0320] +08:08:40 [ 18] [ 4] [6011] +08:08:40 [ 19] [ 3] [418] +08:08:40 [ 22] [ 3] [021] +08:08:40 [ 32] [ 6] [621354] +08:08:40 [ 35] [ 27] [1808930800023293=1803500201] +08:08:40 [ 37] [ 12] [507905064593] +08:08:40 [ 38] [ 6] [679236] +08:08:40 [ 39] [ 2] [00] +08:08:40 [ 41] [ 8] [12002900] +08:08:40 [ 49] [ 3] [418] +08:08:40 [ 52] [ 16] [98A81F273A32A899] +08:08:40 [ 54] [ 20] [1001418C000051814400] +08:08:40 ============================================================================ +08:08:40 Calculate Source COMM Id = 0 +08:08:40 ============================================================================ +08:08:40 + + +waiting on router queue for slot.... +08:08:41 ============================================================================ +08:08:41 Slot Id : <162> +08:08:41 Transaction Type : REQUEST +08:08:41 Received From : +08:08:41 ============================================================================ +08:08:41 FNo. Len. Field Value +08:08:41 ============================================================================ +08:08:41 [ 1] [ 4] [0800] +08:08:41 [ 7] [ 10] [0320152029] +08:08:41 [ 11] [ 6] [082029] +08:08:41 [ 37] [ 12] [57908082029] +08:08:41 [ 70] [ 3] [301] +08:08:41 ============================================================================ +08:08:41 + + +waiting on router queue for slot.... +08:08:41 Sending to : +08:08:41 ============================================================================ +08:08:41 ============================================================================ +08:08:41 Slot Id : <162> +08:08:41 Transaction Type : RESPONSE +08:08:41 Received From : +08:08:41 ============================================================================ +08:08:41 FNo. Len. Field Value +08:08:41 ============================================================================ +08:08:41 [ 1] [ 4] [0810] +08:08:41 [ 7] [ 10] [0320152029] +08:08:41 [ 11] [ 6] [082029] +08:08:41 [ 37] [ 12] [579080820290] +08:08:41 [ 39] [ 2] [00] +08:08:41 [ 70] [ 3] [810] +08:08:41 ============================================================================ +08:08:41 Calculate Source COMM Id = 6 +08:08:41 ============================================================================ +08:08:41 + + +waiting on router queue for slot.... +08:08:41 ============================================================================ +08:08:41 Slot Id : <154> +08:08:41 Transaction Type : REQUEST +08:08:41 Received From : +08:08:41 ============================================================================ +08:08:41 FNo. Len. Field Value +08:08:41 ============================================================================ +08:08:41 [ 1] [ 4] [0200] +08:08:41 [ 2] [ 16] [6213544001065157] +08:08:41 [ 3] [ 6] [010000] +08:08:41 [ 4] [ 12] [000080000000] +08:08:41 [ 7] [ 10] [0320080633] +08:08:41 [ 11] [ 6] [931945] +08:08:41 [ 12] [ 6] [080633] +08:08:41 [ 13] [ 4] [0320] +08:08:41 [ 15] [ 4] [0320] +08:08:41 [ 18] [ 4] [6011] +08:08:41 [ 19] [ 3] [418] +08:08:41 [ 22] [ 3] [021] +08:08:41 [ 25] [ 2] [01] +08:08:41 [ 28] [ 9] [D00002000] +08:08:41 [ 32] [ 6] [668899] +08:08:41 [ 35] [ 32] [6213544001065157=491212016515257] +08:08:41 [ 37] [ 12] [507900285712] +08:08:41 [ 41] [ 8] [03010005] +08:08:41 [ 42] [ 15] [APT ] +08:08:41 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +08:08:41 [ 49] [ 3] [418] +08:08:41 [ 52] [ 16] [200484E403847DCD] +08:08:41 ============================================================================ +08:08:41 + + +waiting on router queue for slot.... +08:08:41 Sending to : +08:08:41 ============================================================================ +08:08:41 Sending to : +08:08:41 ============================================================================ +08:08:41 ============================================================================ +08:08:41 Slot Id : <154> +08:08:41 Transaction Type : REQUEST +08:08:41 Received From : +08:08:41 ============================================================================ +08:08:41 FNo. Len. Field Value +08:08:41 ============================================================================ +08:08:41 [ 1] [ 4] [0200] +08:08:41 [ 2] [ 16] [6213544001065157] +08:08:41 [ 3] [ 6] [010000] +08:08:41 [ 4] [ 12] [000080000000] +08:08:41 [ 7] [ 10] [0320080633] +08:08:41 [ 11] [ 6] [931945] +08:08:41 [ 12] [ 6] [080633] +08:08:41 [ 13] [ 4] [0320] +08:08:41 [ 15] [ 4] [0320] +08:08:41 [ 18] [ 4] [6011] +08:08:41 [ 19] [ 3] [418] +08:08:41 [ 22] [ 3] [021] +08:08:41 [ 25] [ 2] [01] +08:08:41 [ 28] [ 9] [D00002000] +08:08:41 [ 32] [ 6] [668899] +08:08:41 [ 35] [ 32] [6213544001065157=491212016515257] +08:08:41 [ 37] [ 12] [507900285712] +08:08:41 [ 41] [ 8] [03010005] +08:08:41 [ 42] [ 15] [APT ] +08:08:41 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +08:08:41 [ 49] [ 3] [418] +08:08:41 [ 52] [ 16] [200484E403847DCD] +08:08:41 ============================================================================ +08:08:41 + + +waiting on router queue for slot.... +08:08:41 Sending to : +08:08:41 ============================================================================ +08:08:41 ============================================================================ +08:08:41 Slot Id : <154> +08:08:41 Transaction Type : REQUEST +08:08:41 Received From : +08:08:41 ============================================================================ +08:08:41 FNo. Len. Field Value +08:08:41 ============================================================================ +08:08:41 [ 1] [ 4] [0200] +08:08:41 [ 2] [ 16] [6213544001065157] +08:08:41 [ 3] [ 6] [010000] +08:08:41 [ 4] [ 12] [000080000000] +08:08:41 [ 7] [ 10] [0320080633] +08:08:41 [ 11] [ 6] [931945] +08:08:41 [ 12] [ 6] [080633] +08:08:41 [ 13] [ 4] [0320] +08:08:41 [ 15] [ 4] [0320] +08:08:41 [ 18] [ 4] [6011] +08:08:41 [ 19] [ 3] [418] +08:08:41 [ 22] [ 3] [021] +08:08:41 [ 25] [ 2] [01] +08:08:41 [ 28] [ 9] [D00002000] +08:08:41 [ 32] [ 6] [668899] +08:08:41 [ 35] [ 32] [6213544001065157=491212016515257] +08:08:41 [ 37] [ 12] [507900285712] +08:08:41 [ 41] [ 8] [03010005] +08:08:41 [ 42] [ 15] [APT ] +08:08:41 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +08:08:41 [ 49] [ 3] [418] +08:08:41 [ 52] [ 16] [FA514AE607677D3F] +08:08:41 ============================================================================ +08:08:41 + + +waiting on router queue for slot.... +08:08:41 Sending to : <0> +08:08:41 ============================================================================ +08:08:42 ============================================================================ +08:08:42 Slot Id : <154> +08:08:42 Transaction Type : RESPONSE +08:08:42 Received From : +08:08:42 ============================================================================ +08:08:42 FNo. Len. Field Value +08:08:42 ============================================================================ +08:08:42 [ 1] [ 4] [0210] +08:08:42 [ 2] [ 16] [6213544001065157] +08:08:42 [ 3] [ 6] [010000] +08:08:42 [ 4] [ 12] [000080000000] +08:08:42 [ 7] [ 10] [0320080633] +08:08:42 [ 11] [ 6] [931945] +08:08:42 [ 12] [ 6] [080633] +08:08:42 [ 13] [ 4] [0320] +08:08:42 [ 15] [ 4] [0320] +08:08:42 [ 18] [ 4] [6011] +08:08:42 [ 19] [ 3] [418] +08:08:42 [ 32] [ 6] [668899] +08:08:42 [ 35] [ 32] [6213544001065157=491212016515257] +08:08:42 [ 37] [ 12] [507900285712] +08:08:42 [ 38] [ 6] [169097] +08:08:42 [ 39] [ 2] [00] +08:08:42 [ 41] [ 8] [03010005] +08:08:42 [ 49] [ 3] [418] +08:08:42 [ 54] [ 40] [0001418C0001120382800002418C000112038280] +08:08:42 ============================================================================ +08:08:42 Sending to : +08:08:42 ============================================================================ +08:08:42 + + +waiting on router queue for slot.... +08:08:43 ============================================================================ +08:08:43 Slot Id : <154> +08:08:43 Transaction Type : RESPONSE +08:08:43 Received From : +08:08:43 ============================================================================ +08:08:43 FNo. Len. Field Value +08:08:43 ============================================================================ +08:08:43 [ 1] [ 4] [0210] +08:08:43 [ 2] [ 16] [6213544001065157] +08:08:43 [ 3] [ 6] [010000] +08:08:43 [ 4] [ 12] [000080000000] +08:08:43 [ 7] [ 10] [0320080633] +08:08:43 [ 11] [ 6] [931945] +08:08:43 [ 12] [ 6] [080633] +08:08:43 [ 13] [ 4] [0320] +08:08:43 [ 15] [ 4] [0320] +08:08:43 [ 18] [ 4] [6011] +08:08:43 [ 19] [ 3] [418] +08:08:43 [ 32] [ 6] [668899] +08:08:43 [ 35] [ 32] [6213544001065157=491212016515257] +08:08:43 [ 37] [ 12] [507900285712] +08:08:43 [ 38] [ 6] [169097] +08:08:43 [ 39] [ 2] [00] +08:08:43 [ 41] [ 8] [03010005] +08:08:43 [ 49] [ 3] [418] +08:08:43 [ 54] [ 40] [0001418C0001120382800002418C000112038280] +08:08:43 ============================================================================ +08:08:43 Calculate Source COMM Id = 4 +08:08:43 ============================================================================ +08:08:43 + + +waiting on router queue for slot.... +08:08:45 ============================================================================ +08:08:45 Slot Id : <143> +08:08:45 Transaction Type : REQUEST +08:08:45 Received From : +08:08:45 ============================================================================ +08:08:45 FNo. Len. Field Value +08:08:45 ============================================================================ +08:08:45 [ 1] [ 4] [0800] +08:08:45 [ 7] [ 10] [0320010753] +08:08:45 [ 11] [ 6] [155332] +08:08:45 [ 70] [ 3] [301] +08:08:45 ============================================================================ +08:08:45 + + +waiting on router queue for slot.... +08:08:45 Sending to : +08:08:45 ============================================================================ +08:08:45 ============================================================================ +08:08:45 Slot Id : <143> +08:08:45 Transaction Type : RESPONSE +08:08:45 Received From : +08:08:45 ============================================================================ +08:08:45 FNo. Len. Field Value +08:08:45 ============================================================================ +08:08:45 [ 1] [ 4] [0810] +08:08:45 [ 7] [ 10] [0320010753] +08:08:45 [ 11] [ 6] [155332] +08:08:45 [ 39] [ 2] [00] +08:08:45 [ 70] [ 3] [301] +08:08:45 ============================================================================ +08:08:45 Calculate Source COMM Id = 2 +08:08:45 ============================================================================ +08:08:45 + + +waiting on router queue for slot.... +08:08:55 ============================================================================ +08:08:55 Slot Id : <145> +08:08:55 Transaction Type : REQUEST +08:08:55 Received From : +08:08:55 ============================================================================ +08:08:55 FNo. Len. Field Value +08:08:55 ============================================================================ +08:08:55 [ 1] [ 4] [0800] +08:08:55 [ 7] [ 10] [0320010804] +08:08:55 [ 11] [ 6] [155333] +08:08:55 [ 70] [ 3] [301] +08:08:55 ============================================================================ +08:08:55 + + +waiting on router queue for slot.... +08:08:55 Sending to : +08:08:55 ============================================================================ +08:08:55 ============================================================================ +08:08:55 Slot Id : <145> +08:08:55 Transaction Type : RESPONSE +08:08:55 Received From : +08:08:55 ============================================================================ +08:08:55 FNo. Len. Field Value +08:08:55 ============================================================================ +08:08:55 [ 1] [ 4] [0810] +08:08:55 [ 7] [ 10] [0320010804] +08:08:55 [ 11] [ 6] [155333] +08:08:55 [ 39] [ 2] [00] +08:08:55 [ 70] [ 3] [301] +08:08:55 ============================================================================ +08:08:55 Calculate Source COMM Id = 2 +08:08:55 ============================================================================ +08:08:55 + + +waiting on router queue for slot.... +08:08:59 ============================================================================ +08:08:59 Slot Id : <158> +08:08:59 Transaction Type : REQUEST +08:08:59 Received From : +08:08:59 ============================================================================ +08:08:59 FNo. Len. Field Value +08:08:59 ============================================================================ +08:08:59 [ 1] [ 4] [0200] +08:08:59 [ 2] [ 16] [6213548000341055] +08:08:59 [ 3] [ 6] [301000] +08:08:59 [ 7] [ 10] [0320010806] +08:08:59 [ 11] [ 6] [267041] +08:08:59 [ 12] [ 6] [080806] +08:08:59 [ 13] [ 4] [0320] +08:08:59 [ 14] [ 4] [1804] +08:08:59 [ 15] [ 4] [0320] +08:08:59 [ 18] [ 4] [6011] +08:08:59 [ 19] [ 3] [418] +08:08:59 [ 22] [ 3] [021] +08:08:59 [ 25] [ 2] [01] +08:08:59 [ 32] [ 6] [180893] +08:08:59 [ 35] [ 32] [6213548000341055=180412014105764] +08:08:59 [ 37] [ 12] [507901267041] +08:08:59 [ 41] [ 8] [0522XYXH] +08:08:59 [ 42] [ 15] [999999 ] +08:08:59 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:08:59 [ 49] [ 3] [418] +08:08:59 [ 52] [ 16] [160DB32AD03B5E07] +08:08:59 ============================================================================ +08:08:59 + + +waiting on router queue for slot.... +08:08:59 Sending to : +08:08:59 ============================================================================ +08:08:59 Sending to : +08:08:59 ============================================================================ +08:08:59 ============================================================================ +08:08:59 Slot Id : <158> +08:08:59 Transaction Type : REQUEST +08:08:59 Received From : +08:08:59 ============================================================================ +08:08:59 FNo. Len. Field Value +08:08:59 ============================================================================ +08:08:59 [ 1] [ 4] [0200] +08:08:59 [ 2] [ 16] [6213548000341055] +08:08:59 [ 3] [ 6] [301000] +08:08:59 [ 7] [ 10] [0320010806] +08:08:59 [ 11] [ 6] [267041] +08:08:59 [ 12] [ 6] [080806] +08:08:59 [ 13] [ 4] [0320] +08:08:59 [ 14] [ 4] [1804] +08:08:59 [ 15] [ 4] [0320] +08:08:59 [ 18] [ 4] [6011] +08:08:59 [ 19] [ 3] [418] +08:08:59 [ 22] [ 3] [021] +08:08:59 [ 25] [ 2] [01] +08:08:59 [ 32] [ 6] [180893] +08:08:59 [ 35] [ 32] [6213548000341055=180412014105764] +08:08:59 [ 37] [ 12] [507901267041] +08:08:59 [ 41] [ 8] [0522XYXH] +08:08:59 [ 42] [ 15] [999999 ] +08:08:59 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:08:59 [ 49] [ 3] [418] +08:08:59 [ 52] [ 16] [160DB32AD03B5E07] +08:08:59 ============================================================================ +08:08:59 + + +waiting on router queue for slot.... +08:08:59 Sending to : +08:08:59 ============================================================================ +08:08:59 ============================================================================ +08:08:59 Slot Id : <158> +08:08:59 Transaction Type : REQUEST +08:08:59 Received From : +08:08:59 ============================================================================ +08:08:59 FNo. Len. Field Value +08:08:59 ============================================================================ +08:08:59 [ 1] [ 4] [0200] +08:08:59 [ 2] [ 16] [6213548000341055] +08:08:59 [ 3] [ 6] [301000] +08:08:59 [ 7] [ 10] [0320010806] +08:08:59 [ 11] [ 6] [267041] +08:08:59 [ 12] [ 6] [080806] +08:08:59 [ 13] [ 4] [0320] +08:08:59 [ 14] [ 4] [1804] +08:08:59 [ 15] [ 4] [0320] +08:08:59 [ 18] [ 4] [6011] +08:08:59 [ 19] [ 3] [418] +08:08:59 [ 22] [ 3] [021] +08:08:59 [ 25] [ 2] [01] +08:08:59 [ 32] [ 6] [180893] +08:08:59 [ 35] [ 32] [6213548000341055=180412014105764] +08:08:59 [ 37] [ 12] [507901267041] +08:08:59 [ 41] [ 8] [0522XYXH] +08:08:59 [ 42] [ 15] [999999 ] +08:08:59 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:08:59 [ 49] [ 3] [418] +08:08:59 [ 52] [ 16] [90BEAE937CFD15F1] +08:08:59 ============================================================================ +08:08:59 + + +waiting on router queue for slot.... +08:08:59 Sending to : <0> +08:08:59 ============================================================================ +08:08:59 ============================================================================ +08:08:59 Slot Id : <158> +08:08:59 Transaction Type : RESPONSE +08:08:59 Received From : +08:08:59 ============================================================================ +08:08:59 FNo. Len. Field Value +08:08:59 ============================================================================ +08:08:59 [ 1] [ 4] [0210] +08:08:59 [ 2] [ 16] [6213548000341055] +08:08:59 [ 3] [ 6] [301000] +08:08:59 [ 4] [ 12] [000000000000] +08:08:59 [ 7] [ 10] [0320010806] +08:08:59 [ 11] [ 6] [267041] +08:08:59 [ 12] [ 6] [080806] +08:08:59 [ 13] [ 4] [0320] +08:08:59 [ 15] [ 4] [0320] +08:08:59 [ 18] [ 4] [6011] +08:08:59 [ 19] [ 3] [418] +08:08:59 [ 22] [ 3] [021] +08:08:59 [ 32] [ 6] [180893] +08:08:59 [ 35] [ 32] [6213548000341055=180412014105764] +08:08:59 [ 37] [ 12] [507901267041] +08:08:59 [ 38] [ 6] [080855] +08:08:59 [ 39] [ 2] [55] +08:08:59 [ 41] [ 8] [0522XYXH] +08:08:59 [ 49] [ 3] [418] +08:08:59 ============================================================================ +08:08:59 Sending to : +08:08:59 ============================================================================ +08:08:59 + + +waiting on router queue for slot.... +08:09:00 ============================================================================ +08:09:00 Slot Id : <158> +08:09:00 Transaction Type : RESPONSE +08:09:00 Received From : +08:09:00 ============================================================================ +08:09:00 FNo. Len. Field Value +08:09:00 ============================================================================ +08:09:00 [ 1] [ 4] [0210] +08:09:00 [ 2] [ 16] [6213548000341055] +08:09:00 [ 3] [ 6] [301000] +08:09:00 [ 4] [ 12] [000000000000] +08:09:00 [ 7] [ 10] [0320010806] +08:09:00 [ 11] [ 6] [267041] +08:09:00 [ 12] [ 6] [080806] +08:09:00 [ 13] [ 4] [0320] +08:09:00 [ 15] [ 4] [0320] +08:09:00 [ 18] [ 4] [6011] +08:09:00 [ 19] [ 3] [418] +08:09:00 [ 22] [ 3] [021] +08:09:00 [ 32] [ 6] [180893] +08:09:00 [ 35] [ 32] [6213548000341055=180412014105764] +08:09:00 [ 37] [ 12] [507901267041] +08:09:00 [ 38] [ 6] [080855] +08:09:00 [ 39] [ 2] [55] +08:09:00 [ 41] [ 8] [0522XYXH] +08:09:00 [ 49] [ 3] [418] +08:09:00 ============================================================================ +08:09:00 Calculate Source COMM Id = 2 +08:09:00 ============================================================================ +08:09:00 + + +waiting on router queue for slot.... +08:09:11 ============================================================================ +08:09:11 Slot Id : <120> +08:09:11 Transaction Type : REQUEST +08:09:11 Received From : +08:09:11 ============================================================================ +08:09:11 FNo. Len. Field Value +08:09:11 ============================================================================ +08:09:11 [ 1] [ 4] [0200] +08:09:11 [ 2] [ 16] [6213544000492733] +08:09:11 [ 3] [ 6] [010000] +08:09:11 [ 4] [ 12] [000100000000] +08:09:11 [ 7] [ 10] [0320010818] +08:09:11 [ 11] [ 6] [267044] +08:09:11 [ 12] [ 6] [080818] +08:09:11 [ 13] [ 4] [0320] +08:09:11 [ 14] [ 4] [4912] +08:09:11 [ 15] [ 4] [0320] +08:09:11 [ 18] [ 4] [6011] +08:09:11 [ 19] [ 3] [418] +08:09:11 [ 22] [ 3] [021] +08:09:11 [ 25] [ 2] [01] +08:09:11 [ 28] [ 9] [D00002000] +08:09:11 [ 32] [ 6] [180893] +08:09:11 [ 35] [ 32] [6213544000492733=491212019273946] +08:09:11 [ 37] [ 12] [507901267044] +08:09:11 [ 41] [ 8] [0301LPBX] +08:09:11 [ 42] [ 15] [999999 ] +08:09:11 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +08:09:11 [ 49] [ 3] [418] +08:09:11 [ 52] [ 16] [D3760CD0A2FEE4D8] +08:09:11 ============================================================================ +08:09:11 + + +waiting on router queue for slot.... +08:09:11 Sending to : +08:09:11 ============================================================================ +08:09:11 Sending to : +08:09:11 ============================================================================ +08:09:11 ============================================================================ +08:09:11 Slot Id : <120> +08:09:11 Transaction Type : REQUEST +08:09:11 Received From : +08:09:11 ============================================================================ +08:09:11 FNo. Len. Field Value +08:09:11 ============================================================================ +08:09:11 [ 1] [ 4] [0200] +08:09:11 [ 2] [ 16] [6213544000492733] +08:09:11 [ 3] [ 6] [010000] +08:09:11 [ 4] [ 12] [000100000000] +08:09:11 [ 7] [ 10] [0320010818] +08:09:11 [ 11] [ 6] [267044] +08:09:11 [ 12] [ 6] [080818] +08:09:11 [ 13] [ 4] [0320] +08:09:11 [ 14] [ 4] [4912] +08:09:11 [ 15] [ 4] [0320] +08:09:11 [ 18] [ 4] [6011] +08:09:11 [ 19] [ 3] [418] +08:09:11 [ 22] [ 3] [021] +08:09:11 [ 25] [ 2] [01] +08:09:11 [ 28] [ 9] [D00002000] +08:09:11 [ 32] [ 6] [180893] +08:09:11 [ 35] [ 32] [6213544000492733=491212019273946] +08:09:11 [ 37] [ 12] [507901267044] +08:09:11 [ 41] [ 8] [0301LPBX] +08:09:11 [ 42] [ 15] [999999 ] +08:09:11 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +08:09:11 [ 49] [ 3] [418] +08:09:11 [ 52] [ 16] [D3760CD0A2FEE4D8] +08:09:11 ============================================================================ +08:09:11 + + +waiting on router queue for slot.... +08:09:11 Sending to : +08:09:11 ============================================================================ +08:09:11 ============================================================================ +08:09:11 Slot Id : <120> +08:09:11 Transaction Type : REQUEST +08:09:11 Received From : +08:09:11 ============================================================================ +08:09:11 FNo. Len. Field Value +08:09:11 ============================================================================ +08:09:11 [ 1] [ 4] [0200] +08:09:11 [ 2] [ 16] [6213544000492733] +08:09:11 [ 3] [ 6] [010000] +08:09:11 [ 4] [ 12] [000100000000] +08:09:11 [ 7] [ 10] [0320010818] +08:09:11 [ 11] [ 6] [267044] +08:09:11 [ 12] [ 6] [080818] +08:09:11 [ 13] [ 4] [0320] +08:09:11 [ 14] [ 4] [4912] +08:09:11 [ 15] [ 4] [0320] +08:09:11 [ 18] [ 4] [6011] +08:09:11 [ 19] [ 3] [418] +08:09:11 [ 22] [ 3] [021] +08:09:11 [ 25] [ 2] [01] +08:09:11 [ 28] [ 9] [D00002000] +08:09:11 [ 32] [ 6] [180893] +08:09:11 [ 35] [ 32] [6213544000492733=491212019273946] +08:09:11 [ 37] [ 12] [507901267044] +08:09:11 [ 41] [ 8] [0301LPBX] +08:09:11 [ 42] [ 15] [999999 ] +08:09:11 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +08:09:11 [ 49] [ 3] [418] +08:09:11 [ 52] [ 16] [8034FC067FBC5852] +08:09:11 ============================================================================ +08:09:11 + + +waiting on router queue for slot.... +08:09:11 Sending to : <0> +08:09:11 ============================================================================ +08:09:11 ============================================================================ +08:09:11 Slot Id : <150> +08:09:11 Transaction Type : REQUEST +08:09:11 Received From : +08:09:11 ============================================================================ +08:09:11 FNo. Len. Field Value +08:09:11 ============================================================================ +08:09:11 [ 1] [ 4] [0800] +08:09:11 [ 7] [ 10] [0320010820] +08:09:11 [ 11] [ 6] [155334] +08:09:11 [ 70] [ 3] [301] +08:09:11 ============================================================================ +08:09:11 + + +waiting on router queue for slot.... +08:09:11 Sending to : +08:09:11 ============================================================================ +08:09:11 ============================================================================ +08:09:11 Slot Id : <150> +08:09:11 Transaction Type : RESPONSE +08:09:11 Received From : +08:09:11 ============================================================================ +08:09:11 FNo. Len. Field Value +08:09:11 ============================================================================ +08:09:11 [ 1] [ 4] [0810] +08:09:11 [ 7] [ 10] [0320010820] +08:09:11 [ 11] [ 6] [155334] +08:09:11 [ 39] [ 2] [00] +08:09:11 [ 70] [ 3] [301] +08:09:11 ============================================================================ +08:09:11 Calculate Source COMM Id = 2 +08:09:11 ============================================================================ +08:09:11 + + +waiting on router queue for slot.... +08:09:12 ============================================================================ +08:09:12 Slot Id : <120> +08:09:12 Transaction Type : RESPONSE +08:09:12 Received From : +08:09:12 ============================================================================ +08:09:12 FNo. Len. Field Value +08:09:12 ============================================================================ +08:09:12 [ 1] [ 4] [0210] +08:09:12 [ 2] [ 16] [6213544000492733] +08:09:12 [ 3] [ 6] [010000] +08:09:12 [ 4] [ 12] [000100000000] +08:09:12 [ 7] [ 10] [0320010818] +08:09:12 [ 11] [ 6] [267044] +08:09:12 [ 12] [ 6] [080818] +08:09:12 [ 13] [ 4] [0320] +08:09:12 [ 15] [ 4] [0320] +08:09:12 [ 18] [ 4] [6011] +08:09:12 [ 19] [ 3] [418] +08:09:12 [ 32] [ 6] [180893] +08:09:12 [ 35] [ 32] [6213544000492733=491212019273946] +08:09:12 [ 37] [ 12] [507901267044] +08:09:12 [ 38] [ 6] [703722] +08:09:12 [ 39] [ 2] [00] +08:09:12 [ 41] [ 8] [0301LPBX] +08:09:12 [ 49] [ 3] [418] +08:09:12 [ 54] [ 40] [0001418C0000327062940002418C000032706294] +08:09:12 ============================================================================ +08:09:12 Sending to : +08:09:12 ============================================================================ +08:09:12 + + +waiting on router queue for slot.... +08:09:13 ============================================================================ +08:09:13 Slot Id : <166> +08:09:13 Transaction Type : REQUEST +08:09:13 Received From : +08:09:13 ============================================================================ +08:09:13 FNo. Len. Field Value +08:09:13 ============================================================================ +08:09:13 [ 1] [ 4] [0200] +08:09:13 [ 2] [ 16] [6688990103644405] +08:09:13 [ 3] [ 6] [010000] +08:09:13 [ 4] [ 12] [000050000000] +08:09:13 [ 7] [ 10] [0320010820] +08:09:13 [ 11] [ 6] [267045] +08:09:13 [ 12] [ 6] [080820] +08:09:13 [ 13] [ 4] [0320] +08:09:13 [ 14] [ 4] [4301] +08:09:13 [ 15] [ 4] [0320] +08:09:13 [ 18] [ 4] [6011] +08:09:13 [ 19] [ 3] [418] +08:09:13 [ 22] [ 3] [021] +08:09:13 [ 25] [ 2] [01] +08:09:13 [ 28] [ 9] [D00002000] +08:09:13 [ 32] [ 6] [180893] +08:09:13 [ 35] [ 37] [6688990103644405=43011231440578600000] +08:09:13 [ 37] [ 12] [507901267045] +08:09:13 [ 41] [ 8] [0464UDPB] +08:09:13 [ 42] [ 15] [999999 ] +08:09:13 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +08:09:13 [ 49] [ 3] [418] +08:09:13 [ 52] [ 16] [BF0E66F93819F15E] +08:09:13 ============================================================================ +08:09:13 + + +waiting on router queue for slot.... +08:09:13 Sending to : +08:09:13 ============================================================================ +08:09:13 Sending to : +08:09:13 ============================================================================ +08:09:13 ============================================================================ +08:09:13 Slot Id : <166> +08:09:13 Transaction Type : REQUEST +08:09:13 Received From : +08:09:13 ============================================================================ +08:09:13 FNo. Len. Field Value +08:09:13 ============================================================================ +08:09:13 [ 1] [ 4] [0200] +08:09:13 [ 2] [ 16] [6688990103644405] +08:09:13 [ 3] [ 6] [010000] +08:09:13 [ 4] [ 12] [000050000000] +08:09:13 [ 7] [ 10] [0320010820] +08:09:13 [ 11] [ 6] [267045] +08:09:13 [ 12] [ 6] [080820] +08:09:13 [ 13] [ 4] [0320] +08:09:13 [ 14] [ 4] [4301] +08:09:13 [ 15] [ 4] [0320] +08:09:13 [ 18] [ 4] [6011] +08:09:13 [ 19] [ 3] [418] +08:09:13 [ 22] [ 3] [021] +08:09:13 [ 25] [ 2] [01] +08:09:13 [ 28] [ 9] [D00002000] +08:09:13 [ 32] [ 6] [180893] +08:09:13 [ 35] [ 37] [6688990103644405=43011231440578600000] +08:09:13 [ 37] [ 12] [507901267045] +08:09:13 [ 41] [ 8] [0464UDPB] +08:09:13 [ 42] [ 15] [999999 ] +08:09:13 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +08:09:13 [ 49] [ 3] [418] +08:09:13 [ 52] [ 16] [BF0E66F93819F15E] +08:09:13 ============================================================================ +08:09:13 + + +waiting on router queue for slot.... +08:09:13 Sending to : +08:09:13 ============================================================================ +08:09:13 ============================================================================ +08:09:13 Slot Id : <166> +08:09:13 Transaction Type : REQUEST +08:09:13 Received From : +08:09:13 ============================================================================ +08:09:13 FNo. Len. Field Value +08:09:13 ============================================================================ +08:09:13 [ 1] [ 4] [0200] +08:09:13 [ 2] [ 16] [6688990103644405] +08:09:13 [ 3] [ 6] [010000] +08:09:13 [ 4] [ 12] [000050000000] +08:09:13 [ 7] [ 10] [0320010820] +08:09:13 [ 11] [ 6] [267045] +08:09:13 [ 12] [ 6] [080820] +08:09:13 [ 13] [ 4] [0320] +08:09:13 [ 14] [ 4] [4301] +08:09:13 [ 15] [ 4] [0320] +08:09:13 [ 18] [ 4] [6011] +08:09:13 [ 19] [ 3] [418] +08:09:13 [ 22] [ 3] [021] +08:09:13 [ 25] [ 2] [01] +08:09:13 [ 28] [ 9] [D00002000] +08:09:13 [ 32] [ 6] [180893] +08:09:13 [ 35] [ 37] [6688990103644405=43011231440578600000] +08:09:13 [ 37] [ 12] [507901267045] +08:09:13 [ 41] [ 8] [0464UDPB] +08:09:13 [ 42] [ 15] [999999 ] +08:09:13 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +08:09:13 [ 49] [ 3] [418] +08:09:13 [ 52] [ 16] [B5C825B61DA31A64] +08:09:13 ============================================================================ +08:09:13 + + +waiting on router queue for slot.... +08:09:13 Sending to : <0> +08:09:13 ============================================================================ +08:09:13 ============================================================================ +08:09:13 Slot Id : <166> +08:09:13 Transaction Type : RESPONSE +08:09:13 Received From : +08:09:13 ============================================================================ +08:09:13 FNo. Len. Field Value +08:09:13 ============================================================================ +08:09:13 [ 1] [ 4] [0210] +08:09:13 [ 2] [ 16] [6688990103644405] +08:09:13 [ 3] [ 6] [010000] +08:09:13 [ 4] [ 12] [000050000000] +08:09:13 [ 7] [ 10] [0320010820] +08:09:13 [ 11] [ 6] [267045] +08:09:13 [ 12] [ 6] [080820] +08:09:13 [ 13] [ 4] [0320] +08:09:13 [ 15] [ 4] [0320] +08:09:13 [ 18] [ 4] [6011] +08:09:13 [ 19] [ 3] [418] +08:09:13 [ 22] [ 3] [021] +08:09:13 [ 32] [ 6] [180893] +08:09:13 [ 35] [ 37] [6688990103644405=43011231440578600000] +08:09:13 [ 37] [ 12] [507901267045] +08:09:13 [ 39] [ 2] [14] +08:09:13 [ 41] [ 8] [0464UDPB] +08:09:13 [ 49] [ 3] [418] +08:09:13 ============================================================================ +08:09:13 Sending to : +08:09:13 ============================================================================ +08:09:13 + + +waiting on router queue for slot.... +08:09:13 ============================================================================ +08:09:13 Slot Id : <120> +08:09:13 Transaction Type : RESPONSE +08:09:13 Received From : +08:09:13 ============================================================================ +08:09:13 FNo. Len. Field Value +08:09:13 ============================================================================ +08:09:13 [ 1] [ 4] [0210] +08:09:13 [ 2] [ 16] [6213544000492733] +08:09:13 [ 3] [ 6] [010000] +08:09:13 [ 4] [ 12] [000100000000] +08:09:13 [ 7] [ 10] [0320010818] +08:09:13 [ 11] [ 6] [267044] +08:09:13 [ 12] [ 6] [080818] +08:09:13 [ 13] [ 4] [0320] +08:09:13 [ 15] [ 4] [0320] +08:09:13 [ 18] [ 4] [6011] +08:09:13 [ 19] [ 3] [418] +08:09:13 [ 32] [ 6] [180893] +08:09:13 [ 35] [ 32] [6213544000492733=491212019273946] +08:09:13 [ 37] [ 12] [507901267044] +08:09:13 [ 38] [ 6] [703722] +08:09:13 [ 39] [ 2] [00] +08:09:13 [ 41] [ 8] [0301LPBX] +08:09:13 [ 49] [ 3] [418] +08:09:13 [ 54] [ 40] [0001418C0000327062940002418C000032706294] +08:09:13 ============================================================================ +08:09:13 Calculate Source COMM Id = 2 +08:09:13 ============================================================================ +08:09:13 + + +waiting on router queue for slot.... +08:09:15 ============================================================================ +08:09:15 Slot Id : <166> +08:09:15 Transaction Type : RESPONSE +08:09:15 Received From : +08:09:15 ============================================================================ +08:09:15 FNo. Len. Field Value +08:09:15 ============================================================================ +08:09:15 [ 1] [ 4] [0210] +08:09:15 [ 2] [ 16] [6688990103644405] +08:09:15 [ 3] [ 6] [010000] +08:09:15 [ 4] [ 12] [000050000000] +08:09:15 [ 7] [ 10] [0320010820] +08:09:15 [ 11] [ 6] [267045] +08:09:15 [ 12] [ 6] [080820] +08:09:15 [ 13] [ 4] [0320] +08:09:15 [ 15] [ 4] [0320] +08:09:15 [ 18] [ 4] [6011] +08:09:15 [ 19] [ 3] [418] +08:09:15 [ 22] [ 3] [021] +08:09:15 [ 32] [ 6] [180893] +08:09:15 [ 35] [ 37] [6688990103644405=43011231440578600000] +08:09:15 [ 37] [ 12] [507901267045] +08:09:15 [ 39] [ 2] [14] +08:09:15 [ 41] [ 8] [0464UDPB] +08:09:15 [ 49] [ 3] [418] +08:09:15 ============================================================================ +08:09:15 Calculate Source COMM Id = 2 +08:09:15 ============================================================================ +08:09:15 + + +waiting on router queue for slot.... +08:09:22 ============================================================================ +08:09:22 Slot Id : <130> +08:09:22 Transaction Type : REQUEST +08:09:22 Received From : +08:09:22 ============================================================================ +08:09:22 FNo. Len. Field Value +08:09:22 ============================================================================ +08:09:22 [ 1] [ 4] [0800] +08:09:22 [ 2] [ 5] [02531] +08:09:22 [ 3] [ 6] [579088] +08:09:22 [ 7] [ 10] [0320010922] +08:09:22 [ 11] [ 6] [806885] +08:09:22 [ 15] [ 10] [0320010922] +08:09:22 [ 37] [ 11] [57908806885] +08:09:22 [ 70] [ 3] [001] +08:09:22 ============================================================================ +08:09:22 + + +waiting on router queue for slot.... +08:09:22 ============================================================================ +08:09:22 Slot Id : <130> +08:09:22 Transaction Type : RESPONSE +08:09:22 Received From : +08:09:22 ============================================================================ +08:09:22 FNo. Len. Field Value +08:09:22 ============================================================================ +08:09:22 [ 1] [ 4] [0810] +08:09:22 [ 7] [ 10] [0320010922] +08:09:22 [ 11] [ 6] [806885] +08:09:22 [ 15] [ 4] [0320] +08:09:22 [ 37] [ 12] [57908806885] +08:09:22 [ 39] [ 2] [00] +08:09:22 [ 70] [ 3] [001] +08:09:22 ============================================================================ +08:09:22 Sending to : +08:09:22 ============================================================================ +08:09:22 + + +waiting on router queue for slot.... +08:09:27 ============================================================================ +08:09:27 Slot Id : <133> +08:09:27 Transaction Type : REQUEST +08:09:27 Received From : +08:09:27 ============================================================================ +08:09:27 FNo. Len. Field Value +08:09:27 ============================================================================ +08:09:27 [ 1] [ 4] [0800] +08:09:27 [ 7] [ 10] [0320010835] +08:09:27 [ 11] [ 6] [155335] +08:09:27 [ 70] [ 3] [301] +08:09:27 ============================================================================ +08:09:27 + + +waiting on router queue for slot.... +08:09:27 Sending to : +08:09:27 ============================================================================ +08:09:27 ============================================================================ +08:09:27 Slot Id : <133> +08:09:27 Transaction Type : RESPONSE +08:09:27 Received From : +08:09:27 ============================================================================ +08:09:27 FNo. Len. Field Value +08:09:27 ============================================================================ +08:09:27 [ 1] [ 4] [0810] +08:09:27 [ 7] [ 10] [0320010835] +08:09:27 [ 11] [ 6] [155335] +08:09:27 [ 39] [ 2] [00] +08:09:27 [ 70] [ 3] [301] +08:09:27 ============================================================================ +08:09:27 Calculate Source COMM Id = 2 +08:09:27 ============================================================================ +08:09:27 + + +waiting on router queue for slot.... +08:09:27 ============================================================================ +08:09:27 Slot Id : <153> +08:09:27 Transaction Type : REQUEST +08:09:27 Received From : +08:09:27 ============================================================================ +08:09:27 FNo. Len. Field Value +08:09:27 ============================================================================ +08:09:27 [ 1] [ 4] [0200] +08:09:27 [ 2] [ 16] [6213541000473317] +08:09:27 [ 3] [ 6] [010000] +08:09:27 [ 4] [ 12] [000100000000] +08:09:27 [ 7] [ 10] [0320080719] +08:09:27 [ 11] [ 6] [931978] +08:09:27 [ 12] [ 6] [080719] +08:09:27 [ 13] [ 4] [0320] +08:09:27 [ 15] [ 4] [0320] +08:09:27 [ 18] [ 4] [6011] +08:09:27 [ 19] [ 3] [418] +08:09:27 [ 22] [ 3] [021] +08:09:27 [ 25] [ 2] [01] +08:09:27 [ 28] [ 9] [D00002000] +08:09:27 [ 32] [ 6] [668899] +08:09:27 [ 35] [ 32] [6213541000473317=491212017331171] +08:09:27 [ 37] [ 12] [507900844808] +08:09:27 [ 41] [ 8] [03015003] +08:09:27 [ 42] [ 15] [APT ] +08:09:27 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:09:27 [ 49] [ 3] [418] +08:09:27 [ 52] [ 16] [A4AA7DCD034875C8] +08:09:27 ============================================================================ +08:09:27 + + +waiting on router queue for slot.... +08:09:27 Sending to : +08:09:27 ============================================================================ +08:09:27 Sending to : +08:09:27 ============================================================================ +08:09:27 ============================================================================ +08:09:27 Slot Id : <142> +08:09:27 Transaction Type : REQUEST +08:09:27 Received From : +08:09:27 ============================================================================ +08:09:27 FNo. Len. Field Value +08:09:27 ============================================================================ +08:09:27 [ 1] [ 4] [0200] +08:09:27 [ 2] [ 16] [1808930300018793] +08:09:27 [ 3] [ 6] [011000] +08:09:27 [ 4] [ 12] [000100000000] +08:09:27 [ 7] [ 10] [0320080924] +08:09:27 [ 11] [ 6] [679433] +08:09:27 [ 12] [ 6] [080924] +08:09:27 [ 13] [ 4] [0320] +08:09:27 [ 15] [ 4] [0320] +08:09:27 [ 18] [ 4] [6011] +08:09:27 [ 22] [ 3] [900] +08:09:27 [ 25] [ 2] [02] +08:09:27 [ 28] [ 9] [D00002000] +08:09:27 [ 32] [ 6] [621354] +08:09:27 [ 35] [ 27] [1808930300018793=1803500401] +08:09:27 [ 37] [ 12] [507903028252] +08:09:27 [ 41] [ 8] [12002500] +08:09:27 [ 42] [ 15] [NATIVE ] +08:09:27 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:09:27 [ 49] [ 3] [418] +08:09:27 [ 52] [ 16] [F73FC271F9743D05] +08:09:27 ============================================================================ +08:09:27 + + +waiting on router queue for slot.... +08:09:27 Sending to : +08:09:27 ============================================================================ +08:09:27 Sending to : +08:09:27 ============================================================================ +08:09:27 ============================================================================ +08:09:27 Slot Id : <153> +08:09:27 Transaction Type : REQUEST +08:09:27 Received From : +08:09:27 ============================================================================ +08:09:27 FNo. Len. Field Value +08:09:27 ============================================================================ +08:09:27 [ 1] [ 4] [0200] +08:09:27 [ 2] [ 16] [6213541000473317] +08:09:27 [ 3] [ 6] [010000] +08:09:27 [ 4] [ 12] [000100000000] +08:09:27 [ 7] [ 10] [0320080719] +08:09:27 [ 11] [ 6] [931978] +08:09:27 [ 12] [ 6] [080719] +08:09:27 [ 13] [ 4] [0320] +08:09:27 [ 15] [ 4] [0320] +08:09:27 [ 18] [ 4] [6011] +08:09:27 [ 19] [ 3] [418] +08:09:27 [ 22] [ 3] [021] +08:09:27 [ 25] [ 2] [01] +08:09:27 [ 28] [ 9] [D00002000] +08:09:27 [ 32] [ 6] [668899] +08:09:27 [ 35] [ 32] [6213541000473317=491212017331171] +08:09:27 [ 37] [ 12] [507900844808] +08:09:27 [ 41] [ 8] [03015003] +08:09:27 [ 42] [ 15] [APT ] +08:09:27 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:09:27 [ 49] [ 3] [418] +08:09:27 [ 52] [ 16] [A4AA7DCD034875C8] +08:09:27 ============================================================================ +08:09:27 + + +waiting on router queue for slot.... +08:09:27 Sending to : +08:09:27 ============================================================================ +08:09:27 ============================================================================ +08:09:27 Slot Id : <153> +08:09:27 Transaction Type : REQUEST +08:09:27 Received From : +08:09:27 ============================================================================ +08:09:27 FNo. Len. Field Value +08:09:27 ============================================================================ +08:09:27 [ 1] [ 4] [0200] +08:09:27 [ 2] [ 16] [6213541000473317] +08:09:27 [ 3] [ 6] [010000] +08:09:27 [ 4] [ 12] [000100000000] +08:09:27 [ 7] [ 10] [0320080719] +08:09:27 [ 11] [ 6] [931978] +08:09:27 [ 12] [ 6] [080719] +08:09:27 [ 13] [ 4] [0320] +08:09:27 [ 15] [ 4] [0320] +08:09:27 [ 18] [ 4] [6011] +08:09:27 [ 19] [ 3] [418] +08:09:27 [ 22] [ 3] [021] +08:09:27 [ 25] [ 2] [01] +08:09:27 [ 28] [ 9] [D00002000] +08:09:27 [ 32] [ 6] [668899] +08:09:27 [ 35] [ 32] [6213541000473317=491212017331171] +08:09:27 [ 37] [ 12] [507900844808] +08:09:27 [ 41] [ 8] [03015003] +08:09:27 [ 42] [ 15] [APT ] +08:09:27 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:09:27 [ 49] [ 3] [418] +08:09:27 [ 52] [ 16] [11C2AF8F961CA130] +08:09:27 ============================================================================ +08:09:27 + + +waiting on router queue for slot.... +08:09:27 Sending to : <0> +08:09:27 ============================================================================ +08:09:28 ============================================================================ +08:09:28 Slot Id : <142> +08:09:28 Transaction Type : REQUEST +08:09:28 Received From : +08:09:28 ============================================================================ +08:09:28 FNo. Len. Field Value +08:09:28 ============================================================================ +08:09:28 [ 1] [ 4] [0200] +08:09:28 [ 2] [ 16] [1808930300018793] +08:09:28 [ 3] [ 6] [011000] +08:09:28 [ 4] [ 12] [000100000000] +08:09:28 [ 7] [ 10] [0320080924] +08:09:28 [ 11] [ 6] [679433] +08:09:28 [ 12] [ 6] [080924] +08:09:28 [ 13] [ 4] [0320] +08:09:28 [ 15] [ 4] [0320] +08:09:28 [ 18] [ 4] [6011] +08:09:28 [ 22] [ 3] [900] +08:09:28 [ 25] [ 2] [02] +08:09:28 [ 28] [ 9] [D00002000] +08:09:28 [ 32] [ 6] [621354] +08:09:28 [ 35] [ 27] [1808930300018793=1803500401] +08:09:28 [ 37] [ 12] [507903028252] +08:09:28 [ 41] [ 8] [12002500] +08:09:28 [ 42] [ 15] [NATIVE ] +08:09:28 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:09:28 [ 49] [ 3] [418] +08:09:28 [ 52] [ 16] [F73FC271F9743D05] +08:09:28 ============================================================================ +08:09:28 + + +waiting on router queue for slot.... +08:09:28 Sending to : +08:09:28 ============================================================================ +08:09:28 ============================================================================ +08:09:28 Slot Id : <142> +08:09:28 Transaction Type : REQUEST +08:09:28 Received From : +08:09:28 ============================================================================ +08:09:28 FNo. Len. Field Value +08:09:28 ============================================================================ +08:09:28 [ 1] [ 4] [0200] +08:09:28 [ 2] [ 16] [1808930300018793] +08:09:28 [ 3] [ 6] [011000] +08:09:28 [ 4] [ 12] [000100000000] +08:09:28 [ 7] [ 10] [0320080924] +08:09:28 [ 11] [ 6] [679433] +08:09:28 [ 12] [ 6] [080924] +08:09:28 [ 13] [ 4] [0320] +08:09:28 [ 15] [ 4] [0320] +08:09:28 [ 18] [ 4] [6011] +08:09:28 [ 22] [ 3] [900] +08:09:28 [ 25] [ 2] [02] +08:09:28 [ 28] [ 9] [D00002000] +08:09:28 [ 32] [ 6] [621354] +08:09:28 [ 35] [ 27] [1808930300018793=1803500401] +08:09:28 [ 37] [ 12] [507903028252] +08:09:28 [ 41] [ 8] [12002500] +08:09:28 [ 42] [ 15] [NATIVE ] +08:09:28 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:09:28 [ 49] [ 3] [418] +08:09:28 [ 52] [ 16] [046447BB3AB000B8] +08:09:28 ============================================================================ +08:09:28 + + +waiting on router queue for slot.... +08:09:28 Sending to : <2> +08:09:28 ============================================================================ +08:09:28 ============================================================================ +08:09:28 Slot Id : <153> +08:09:28 Transaction Type : RESPONSE +08:09:28 Received From : +08:09:28 ============================================================================ +08:09:28 FNo. Len. Field Value +08:09:28 ============================================================================ +08:09:28 [ 1] [ 4] [0210] +08:09:28 [ 2] [ 16] [6213541000473317] +08:09:28 [ 3] [ 6] [010000] +08:09:28 [ 4] [ 12] [000100000000] +08:09:28 [ 7] [ 10] [0320080719] +08:09:28 [ 11] [ 6] [931978] +08:09:28 [ 12] [ 6] [080719] +08:09:28 [ 13] [ 4] [0320] +08:09:28 [ 15] [ 4] [0320] +08:09:28 [ 18] [ 4] [6011] +08:09:28 [ 19] [ 3] [418] +08:09:28 [ 32] [ 6] [668899] +08:09:28 [ 35] [ 32] [6213541000473317=491212017331171] +08:09:28 [ 37] [ 12] [507900844808] +08:09:28 [ 38] [ 6] [154828] +08:09:28 [ 39] [ 2] [00] +08:09:28 [ 41] [ 8] [03015003] +08:09:28 [ 49] [ 3] [418] +08:09:28 [ 54] [ 40] [0001418C0002530052290002418C000253005229] +08:09:28 ============================================================================ +08:09:28 Sending to : +08:09:28 ============================================================================ +08:09:28 + + +waiting on router queue for slot.... +08:09:30 ============================================================================ +08:09:30 Slot Id : <153> +08:09:30 Transaction Type : RESPONSE +08:09:30 Received From : +08:09:30 ============================================================================ +08:09:30 FNo. Len. Field Value +08:09:30 ============================================================================ +08:09:30 [ 1] [ 4] [0210] +08:09:30 [ 2] [ 16] [6213541000473317] +08:09:30 [ 3] [ 6] [010000] +08:09:30 [ 4] [ 12] [000100000000] +08:09:30 [ 7] [ 10] [0320080719] +08:09:30 [ 11] [ 6] [931978] +08:09:30 [ 12] [ 6] [080719] +08:09:30 [ 13] [ 4] [0320] +08:09:30 [ 15] [ 4] [0320] +08:09:30 [ 18] [ 4] [6011] +08:09:30 [ 19] [ 3] [418] +08:09:30 [ 32] [ 6] [668899] +08:09:30 [ 35] [ 32] [6213541000473317=491212017331171] +08:09:30 [ 37] [ 12] [507900844808] +08:09:30 [ 38] [ 6] [154828] +08:09:30 [ 39] [ 2] [00] +08:09:30 [ 41] [ 8] [03015003] +08:09:30 [ 49] [ 3] [418] +08:09:30 [ 54] [ 40] [0001418C0002530052290002418C000253005229] +08:09:30 ============================================================================ +08:09:30 Calculate Source COMM Id = 4 +08:09:30 ============================================================================ +08:09:30 + + +waiting on router queue for slot.... +08:09:31 ============================================================================ +08:09:31 Slot Id : <110> +08:09:31 Transaction Type : REQUEST +08:09:31 Received From : +08:09:31 ============================================================================ +08:09:31 FNo. Len. Field Value +08:09:31 ============================================================================ +08:09:31 [ 1] [ 4] [0200] +08:09:31 [ 2] [ 16] [1808930800023293] +08:09:31 [ 3] [ 6] [301000] +08:09:31 [ 4] [ 12] [000000000000] +08:09:31 [ 7] [ 10] [0320080928] +08:09:31 [ 11] [ 6] [679453] +08:09:31 [ 12] [ 6] [080928] +08:09:31 [ 13] [ 4] [0320] +08:09:31 [ 15] [ 4] [0320] +08:09:31 [ 18] [ 4] [6011] +08:09:31 [ 22] [ 3] [900] +08:09:31 [ 25] [ 2] [02] +08:09:31 [ 28] [ 9] [D00000000] +08:09:31 [ 32] [ 6] [621354] +08:09:31 [ 35] [ 27] [1808930800023293=1803500201] +08:09:31 [ 37] [ 12] [507905064594] +08:09:31 [ 41] [ 8] [12002900] +08:09:31 [ 42] [ 15] [NATIVE ] +08:09:31 [ 43] [ 40] [KM18 Xayyabouly LAO] +08:09:31 [ 49] [ 3] [418] +08:09:31 [ 52] [ 16] [688A5606B06D2D85] +08:09:31 ============================================================================ +08:09:31 + + +waiting on router queue for slot.... +08:09:31 Sending to : +08:09:31 ============================================================================ +08:09:31 Sending to : +08:09:31 ============================================================================ +08:09:32 ============================================================================ +08:09:32 Slot Id : <110> +08:09:32 Transaction Type : REQUEST +08:09:32 Received From : +08:09:32 ============================================================================ +08:09:32 FNo. Len. Field Value +08:09:32 ============================================================================ +08:09:32 [ 1] [ 4] [0200] +08:09:32 [ 2] [ 16] [1808930800023293] +08:09:32 [ 3] [ 6] [301000] +08:09:32 [ 4] [ 12] [000000000000] +08:09:32 [ 7] [ 10] [0320080928] +08:09:32 [ 11] [ 6] [679453] +08:09:32 [ 12] [ 6] [080928] +08:09:32 [ 13] [ 4] [0320] +08:09:32 [ 15] [ 4] [0320] +08:09:32 [ 18] [ 4] [6011] +08:09:32 [ 22] [ 3] [900] +08:09:32 [ 25] [ 2] [02] +08:09:32 [ 28] [ 9] [D00000000] +08:09:32 [ 32] [ 6] [621354] +08:09:32 [ 35] [ 27] [1808930800023293=1803500201] +08:09:32 [ 37] [ 12] [507905064594] +08:09:32 [ 41] [ 8] [12002900] +08:09:32 [ 42] [ 15] [NATIVE ] +08:09:32 [ 43] [ 40] [KM18 Xayyabouly LAO] +08:09:32 [ 49] [ 3] [418] +08:09:32 [ 52] [ 16] [688A5606B06D2D85] +08:09:32 ============================================================================ +08:09:32 + + +waiting on router queue for slot.... +08:09:32 Sending to : +08:09:32 ============================================================================ +08:09:32 ============================================================================ +08:09:32 Slot Id : <110> +08:09:32 Transaction Type : REQUEST +08:09:32 Received From : +08:09:32 ============================================================================ +08:09:32 FNo. Len. Field Value +08:09:32 ============================================================================ +08:09:32 [ 1] [ 4] [0200] +08:09:32 [ 2] [ 16] [1808930800023293] +08:09:32 [ 3] [ 6] [301000] +08:09:32 [ 4] [ 12] [000000000000] +08:09:32 [ 7] [ 10] [0320080928] +08:09:32 [ 11] [ 6] [679453] +08:09:32 [ 12] [ 6] [080928] +08:09:32 [ 13] [ 4] [0320] +08:09:32 [ 15] [ 4] [0320] +08:09:32 [ 18] [ 4] [6011] +08:09:32 [ 22] [ 3] [900] +08:09:32 [ 25] [ 2] [02] +08:09:32 [ 28] [ 9] [D00000000] +08:09:32 [ 32] [ 6] [621354] +08:09:32 [ 35] [ 27] [1808930800023293=1803500201] +08:09:32 [ 37] [ 12] [507905064594] +08:09:32 [ 41] [ 8] [12002900] +08:09:32 [ 42] [ 15] [NATIVE ] +08:09:32 [ 43] [ 40] [KM18 Xayyabouly LAO] +08:09:32 [ 49] [ 3] [418] +08:09:32 [ 52] [ 16] [98A81F273A32A899] +08:09:32 ============================================================================ +08:09:32 + + +waiting on router queue for slot.... +08:09:32 Sending to : <2> +08:09:32 ============================================================================ +08:09:34 ============================================================================ +08:09:34 Slot Id : <142> +08:09:34 Transaction Type : RESPONSE +08:09:34 Received From : +08:09:34 ============================================================================ +08:09:34 FNo. Len. Field Value +08:09:34 ============================================================================ +08:09:34 [ 1] [ 4] [0210] +08:09:34 [ 2] [ 16] [1808930300018793] +08:09:34 [ 3] [ 6] [011000] +08:09:34 [ 4] [ 12] [000100000000] +08:09:34 [ 6] [ 12] [000100000000] +08:09:34 [ 7] [ 10] [0320080924] +08:09:34 [ 11] [ 6] [679433] +08:09:34 [ 12] [ 6] [080924] +08:09:34 [ 13] [ 4] [0320] +08:09:34 [ 18] [ 4] [6011] +08:09:34 [ 19] [ 3] [418] +08:09:34 [ 22] [ 3] [021] +08:09:34 [ 32] [ 6] [621354] +08:09:34 [ 35] [ 27] [1808930300018793=1803500401] +08:09:34 [ 37] [ 12] [507903028252] +08:09:34 [ 38] [ 6] [679433] +08:09:34 [ 39] [ 2] [00] +08:09:34 [ 41] [ 8] [12002500] +08:09:34 [ 49] [ 3] [418] +08:09:34 [ 52] [ 16] [046447BB3AB000B8] +08:09:34 [ 54] [ 20] [1001418C000882106800] +08:09:34 ============================================================================ +08:09:34 Sending to : +08:09:34 ============================================================================ +08:09:34 + + +waiting on router queue for slot.... +08:09:36 ============================================================================ +08:09:36 Slot Id : <110> +08:09:36 Transaction Type : RESPONSE +08:09:36 Received From : +08:09:36 ============================================================================ +08:09:36 FNo. Len. Field Value +08:09:36 ============================================================================ +08:09:36 [ 1] [ 4] [0210] +08:09:36 [ 2] [ 16] [1808930800023293] +08:09:36 [ 3] [ 6] [301000] +08:09:36 [ 7] [ 10] [0320080928] +08:09:36 [ 11] [ 6] [679453] +08:09:36 [ 12] [ 6] [080928] +08:09:36 [ 13] [ 4] [0320] +08:09:36 [ 14] [ 4] [1803] +08:09:36 [ 19] [ 3] [418] +08:09:36 [ 32] [ 6] [621354] +08:09:36 [ 37] [ 12] [507905064594] +08:09:36 [ 38] [ 6] [679453] +08:09:36 [ 39] [ 2] [00] +08:09:36 [ 41] [ 8] [12002900] +08:09:36 [ 49] [ 3] [418] +08:09:36 [ 52] [ 16] [98A81F273A32A899] +08:09:36 [ 54] [ 20] [1002418C000051814400] +08:09:36 ============================================================================ +08:09:36 Sending to : +08:09:36 ============================================================================ +08:09:36 + + +waiting on router queue for slot.... +08:09:36 ============================================================================ +08:09:36 Slot Id : <142> +08:09:36 Transaction Type : RESPONSE +08:09:36 Received From : +08:09:36 ============================================================================ +08:09:36 FNo. Len. Field Value +08:09:36 ============================================================================ +08:09:36 [ 1] [ 4] [0210] +08:09:36 [ 2] [ 16] [1808930300018793] +08:09:36 [ 3] [ 6] [011000] +08:09:36 [ 4] [ 12] [000100000000] +08:09:36 [ 6] [ 12] [000100000000] +08:09:36 [ 7] [ 10] [0320080924] +08:09:36 [ 11] [ 6] [679433] +08:09:36 [ 12] [ 6] [080924] +08:09:36 [ 13] [ 4] [0320] +08:09:36 [ 18] [ 4] [6011] +08:09:36 [ 19] [ 3] [418] +08:09:36 [ 22] [ 3] [021] +08:09:36 [ 32] [ 6] [621354] +08:09:36 [ 35] [ 27] [1808930300018793=1803500401] +08:09:36 [ 37] [ 12] [507903028252] +08:09:36 [ 38] [ 6] [679433] +08:09:36 [ 39] [ 2] [00] +08:09:36 [ 41] [ 8] [12002500] +08:09:36 [ 49] [ 3] [418] +08:09:36 [ 52] [ 16] [046447BB3AB000B8] +08:09:36 [ 54] [ 20] [1001418C000882106800] +08:09:36 ============================================================================ +08:09:36 Calculate Source COMM Id = 0 +08:09:36 ============================================================================ +08:09:36 + + +waiting on router queue for slot.... +08:09:38 ============================================================================ +08:09:38 Slot Id : <110> +08:09:38 Transaction Type : RESPONSE +08:09:38 Received From : +08:09:38 ============================================================================ +08:09:38 FNo. Len. Field Value +08:09:38 ============================================================================ +08:09:38 [ 1] [ 4] [0210] +08:09:38 [ 2] [ 16] [1808930800023293] +08:09:38 [ 3] [ 6] [301000] +08:09:38 [ 7] [ 10] [0320080928] +08:09:38 [ 11] [ 6] [679453] +08:09:38 [ 12] [ 6] [080928] +08:09:38 [ 13] [ 4] [0320] +08:09:38 [ 14] [ 4] [1803] +08:09:38 [ 19] [ 3] [418] +08:09:38 [ 32] [ 6] [621354] +08:09:38 [ 37] [ 12] [507905064594] +08:09:38 [ 38] [ 6] [679453] +08:09:38 [ 39] [ 2] [00] +08:09:38 [ 41] [ 8] [12002900] +08:09:38 [ 49] [ 3] [418] +08:09:38 [ 52] [ 16] [98A81F273A32A899] +08:09:38 [ 54] [ 20] [1002418C000051814400] +08:09:38 ============================================================================ +08:09:38 Calculate Source COMM Id = 0 +08:09:38 ============================================================================ +08:09:38 + + +waiting on router queue for slot.... +08:09:45 ============================================================================ +08:09:45 Slot Id : <167> +08:09:45 Transaction Type : REQUEST +08:09:45 Received From : +08:09:45 ============================================================================ +08:09:45 FNo. Len. Field Value +08:09:45 ============================================================================ +08:09:45 [ 1] [ 4] [0800] +08:09:45 [ 7] [ 10] [0320010853] +08:09:45 [ 11] [ 6] [155336] +08:09:45 [ 70] [ 3] [301] +08:09:45 ============================================================================ +08:09:45 + + +waiting on router queue for slot.... +08:09:45 Sending to : +08:09:45 ============================================================================ +08:09:45 ============================================================================ +08:09:45 Slot Id : <167> +08:09:45 Transaction Type : RESPONSE +08:09:45 Received From : +08:09:45 ============================================================================ +08:09:45 FNo. Len. Field Value +08:09:45 ============================================================================ +08:09:45 [ 1] [ 4] [0810] +08:09:45 [ 7] [ 10] [0320010853] +08:09:45 [ 11] [ 6] [155336] +08:09:45 [ 39] [ 2] [00] +08:09:45 [ 70] [ 3] [301] +08:09:45 ============================================================================ +08:09:45 Calculate Source COMM Id = 2 +08:09:45 ============================================================================ +08:09:45 + + +waiting on router queue for slot.... +08:09:46 ============================================================================ +08:09:46 Slot Id : <137> +08:09:46 Transaction Type : REQUEST +08:09:46 Received From : +08:09:46 ============================================================================ +08:09:46 FNo. Len. Field Value +08:09:46 ============================================================================ +08:09:46 [ 1] [ 4] [0800] +08:09:46 [ 7] [ 10] [0320152134] +08:09:46 [ 11] [ 6] [082134] +08:09:46 [ 37] [ 12] [57908082134] +08:09:46 [ 70] [ 3] [301] +08:09:46 ============================================================================ +08:09:46 + + +waiting on router queue for slot.... +08:09:46 Sending to : +08:09:46 ============================================================================ +08:09:46 ============================================================================ +08:09:46 Slot Id : <137> +08:09:46 Transaction Type : RESPONSE +08:09:46 Received From : +08:09:46 ============================================================================ +08:09:46 FNo. Len. Field Value +08:09:46 ============================================================================ +08:09:46 [ 1] [ 4] [0810] +08:09:46 [ 7] [ 10] [0320152134] +08:09:46 [ 11] [ 6] [082134] +08:09:46 [ 37] [ 12] [579080821340] +08:09:46 [ 39] [ 2] [00] +08:09:46 [ 70] [ 3] [810] +08:09:46 ============================================================================ +08:09:46 Calculate Source COMM Id = 6 +08:09:46 ============================================================================ +08:09:46 + + +waiting on router queue for slot.... +08:09:49 ============================================================================ +08:09:49 Slot Id : <128> +08:09:49 Transaction Type : REQUEST +08:09:49 Received From : +08:09:49 ============================================================================ +08:09:49 FNo. Len. Field Value +08:09:49 ============================================================================ +08:09:49 [ 1] [ 4] [0200] +08:09:49 [ 2] [ 16] [6213545000697551] +08:09:49 [ 3] [ 6] [010000] +08:09:49 [ 4] [ 12] [000100000000] +08:09:49 [ 7] [ 10] [0320080740] +08:09:49 [ 11] [ 6] [932000] +08:09:49 [ 12] [ 6] [080740] +08:09:49 [ 13] [ 4] [0320] +08:09:49 [ 15] [ 4] [0320] +08:09:49 [ 18] [ 4] [6011] +08:09:49 [ 19] [ 3] [418] +08:09:49 [ 22] [ 3] [021] +08:09:49 [ 25] [ 2] [01] +08:09:49 [ 28] [ 9] [D00002000] +08:09:49 [ 32] [ 6] [668899] +08:09:49 [ 35] [ 32] [6213545000697551=491212019755860] +08:09:49 [ 37] [ 12] [507901373543] +08:09:49 [ 41] [ 8] [03209001] +08:09:49 [ 42] [ 15] [APT ] +08:09:49 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +08:09:49 [ 49] [ 3] [418] +08:09:49 [ 52] [ 16] [10D3D1D72B2850CE] +08:09:49 ============================================================================ +08:09:49 + + +waiting on router queue for slot.... +08:09:49 Sending to : +08:09:49 ============================================================================ +08:09:49 Sending to : +08:09:49 ============================================================================ +08:09:49 ============================================================================ +08:09:49 Slot Id : <128> +08:09:49 Transaction Type : REQUEST +08:09:49 Received From : +08:09:49 ============================================================================ +08:09:49 FNo. Len. Field Value +08:09:49 ============================================================================ +08:09:49 [ 1] [ 4] [0200] +08:09:49 [ 2] [ 16] [6213545000697551] +08:09:49 [ 3] [ 6] [010000] +08:09:49 [ 4] [ 12] [000100000000] +08:09:49 [ 7] [ 10] [0320080740] +08:09:49 [ 11] [ 6] [932000] +08:09:49 [ 12] [ 6] [080740] +08:09:49 [ 13] [ 4] [0320] +08:09:49 [ 15] [ 4] [0320] +08:09:49 [ 18] [ 4] [6011] +08:09:49 [ 19] [ 3] [418] +08:09:49 [ 22] [ 3] [021] +08:09:49 [ 25] [ 2] [01] +08:09:49 [ 28] [ 9] [D00002000] +08:09:49 [ 32] [ 6] [668899] +08:09:49 [ 35] [ 32] [6213545000697551=491212019755860] +08:09:49 [ 37] [ 12] [507901373543] +08:09:49 [ 41] [ 8] [03209001] +08:09:49 [ 42] [ 15] [APT ] +08:09:49 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +08:09:49 [ 49] [ 3] [418] +08:09:49 [ 52] [ 16] [10D3D1D72B2850CE] +08:09:49 ============================================================================ +08:09:49 + + +waiting on router queue for slot.... +08:09:49 Sending to : +08:09:49 ============================================================================ +08:09:49 ============================================================================ +08:09:49 Slot Id : <128> +08:09:49 Transaction Type : REQUEST +08:09:49 Received From : +08:09:49 ============================================================================ +08:09:49 FNo. Len. Field Value +08:09:49 ============================================================================ +08:09:49 [ 1] [ 4] [0200] +08:09:49 [ 2] [ 16] [6213545000697551] +08:09:49 [ 3] [ 6] [010000] +08:09:49 [ 4] [ 12] [000100000000] +08:09:49 [ 7] [ 10] [0320080740] +08:09:49 [ 11] [ 6] [932000] +08:09:49 [ 12] [ 6] [080740] +08:09:49 [ 13] [ 4] [0320] +08:09:49 [ 15] [ 4] [0320] +08:09:49 [ 18] [ 4] [6011] +08:09:49 [ 19] [ 3] [418] +08:09:49 [ 22] [ 3] [021] +08:09:49 [ 25] [ 2] [01] +08:09:49 [ 28] [ 9] [D00002000] +08:09:49 [ 32] [ 6] [668899] +08:09:49 [ 35] [ 32] [6213545000697551=491212019755860] +08:09:49 [ 37] [ 12] [507901373543] +08:09:49 [ 41] [ 8] [03209001] +08:09:49 [ 42] [ 15] [APT ] +08:09:49 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +08:09:49 [ 49] [ 3] [418] +08:09:49 [ 52] [ 16] [154C3A46ECB3F302] +08:09:49 ============================================================================ +08:09:49 + + +waiting on router queue for slot.... +08:09:49 Sending to : <0> +08:09:49 ============================================================================ +08:09:50 ============================================================================ +08:09:50 Slot Id : <128> +08:09:50 Transaction Type : RESPONSE +08:09:50 Received From : +08:09:50 ============================================================================ +08:09:50 FNo. Len. Field Value +08:09:50 ============================================================================ +08:09:50 [ 1] [ 4] [0210] +08:09:50 [ 2] [ 16] [6213545000697551] +08:09:50 [ 3] [ 6] [010000] +08:09:50 [ 4] [ 12] [000100000000] +08:09:50 [ 7] [ 10] [0320080740] +08:09:50 [ 11] [ 6] [932000] +08:09:50 [ 12] [ 6] [080740] +08:09:50 [ 13] [ 4] [0320] +08:09:50 [ 15] [ 4] [0320] +08:09:50 [ 18] [ 4] [6011] +08:09:50 [ 19] [ 3] [418] +08:09:50 [ 32] [ 6] [668899] +08:09:50 [ 35] [ 32] [6213545000697551=491212019755860] +08:09:50 [ 37] [ 12] [507901373543] +08:09:50 [ 38] [ 6] [056729] +08:09:50 [ 39] [ 2] [00] +08:09:50 [ 41] [ 8] [03209001] +08:09:50 [ 49] [ 3] [418] +08:09:50 [ 54] [ 40] [0001418C0001732587770002418C000173258777] +08:09:50 ============================================================================ +08:09:50 Sending to : +08:09:50 ============================================================================ +08:09:50 + + +waiting on router queue for slot.... +08:09:51 ============================================================================ +08:09:51 Slot Id : <128> +08:09:51 Transaction Type : RESPONSE +08:09:51 Received From : +08:09:51 ============================================================================ +08:09:51 FNo. Len. Field Value +08:09:51 ============================================================================ +08:09:51 [ 1] [ 4] [0210] +08:09:51 [ 2] [ 16] [6213545000697551] +08:09:51 [ 3] [ 6] [010000] +08:09:51 [ 4] [ 12] [000100000000] +08:09:51 [ 7] [ 10] [0320080740] +08:09:51 [ 11] [ 6] [932000] +08:09:51 [ 12] [ 6] [080740] +08:09:51 [ 13] [ 4] [0320] +08:09:51 [ 15] [ 4] [0320] +08:09:51 [ 18] [ 4] [6011] +08:09:51 [ 19] [ 3] [418] +08:09:51 [ 32] [ 6] [668899] +08:09:51 [ 35] [ 32] [6213545000697551=491212019755860] +08:09:51 [ 37] [ 12] [507901373543] +08:09:51 [ 38] [ 6] [056729] +08:09:51 [ 39] [ 2] [00] +08:09:51 [ 41] [ 8] [03209001] +08:09:51 [ 49] [ 3] [418] +08:09:51 [ 54] [ 40] [0001418C0001732587770002418C000173258777] +08:09:51 ============================================================================ +08:09:51 Calculate Source COMM Id = 4 +08:09:51 ============================================================================ +08:09:51 + + +waiting on router queue for slot.... +08:09:54 ============================================================================ +08:09:54 Slot Id : <159> +08:09:54 Transaction Type : REQUEST +08:09:54 Received From : +08:09:54 ============================================================================ +08:09:54 FNo. Len. Field Value +08:09:54 ============================================================================ +08:09:54 [ 1] [ 4] [0800] +08:09:54 [ 7] [ 10] [0320011742] +08:09:54 [ 11] [ 6] [070763] +08:09:54 [ 37] [ 12] [57908070763] +08:09:54 [ 70] [ 3] [301] +08:09:54 ============================================================================ +08:09:54 + + +waiting on router queue for slot.... +08:09:54 Sending to : +08:09:54 ============================================================================ +08:09:54 ============================================================================ +08:09:54 Slot Id : <159> +08:09:54 Transaction Type : RESPONSE +08:09:54 Received From : +08:09:54 ============================================================================ +08:09:54 FNo. Len. Field Value +08:09:54 ============================================================================ +08:09:54 [ 1] [ 4] [0810] +08:09:54 [ 7] [ 10] [0320011742] +08:09:54 [ 11] [ 6] [070763] +08:09:54 [ 37] [ 12] [579080707630] +08:09:54 [ 39] [ 2] [00] +08:09:54 [ 70] [ 3] [810] +08:09:54 ============================================================================ +08:09:54 Calculate Source COMM Id = 1 +08:09:54 ============================================================================ +08:09:54 + + +waiting on router queue for slot.... +08:10:01 ============================================================================ +08:10:01 Slot Id : <175> +08:10:01 Transaction Type : REQUEST +08:10:01 Received From : +08:10:01 ============================================================================ +08:10:01 FNo. Len. Field Value +08:10:01 ============================================================================ +08:10:01 [ 1] [ 4] [0800] +08:10:01 [ 7] [ 10] [0320010909] +08:10:01 [ 11] [ 6] [155337] +08:10:01 [ 70] [ 3] [301] +08:10:01 ============================================================================ +08:10:01 + + +waiting on router queue for slot.... +08:10:01 Sending to : +08:10:01 ============================================================================ +08:10:01 ============================================================================ +08:10:01 Slot Id : <175> +08:10:01 Transaction Type : RESPONSE +08:10:01 Received From : +08:10:01 ============================================================================ +08:10:01 FNo. Len. Field Value +08:10:01 ============================================================================ +08:10:01 [ 1] [ 4] [0810] +08:10:01 [ 7] [ 10] [0320010909] +08:10:01 [ 11] [ 6] [155337] +08:10:01 [ 39] [ 2] [00] +08:10:01 [ 70] [ 3] [301] +08:10:01 ============================================================================ +08:10:01 Calculate Source COMM Id = 2 +08:10:01 ============================================================================ +08:10:01 + + +waiting on router queue for slot.... +08:10:05 ============================================================================ +08:10:05 Slot Id : <146> +08:10:05 Transaction Type : REQUEST +08:10:05 Received From : +08:10:05 ============================================================================ +08:10:05 FNo. Len. Field Value +08:10:05 ============================================================================ +08:10:05 [ 1] [ 4] [0200] +08:10:05 [ 2] [ 16] [6213544000492733] +08:10:05 [ 3] [ 6] [010000] +08:10:05 [ 4] [ 12] [000010000000] +08:10:05 [ 7] [ 10] [0320010912] +08:10:05 [ 11] [ 6] [267050] +08:10:05 [ 12] [ 6] [080912] +08:10:05 [ 13] [ 4] [0320] +08:10:05 [ 14] [ 4] [4912] +08:10:05 [ 15] [ 4] [0320] +08:10:05 [ 18] [ 4] [6011] +08:10:05 [ 19] [ 3] [418] +08:10:05 [ 22] [ 3] [021] +08:10:05 [ 25] [ 2] [01] +08:10:05 [ 28] [ 9] [D00002000] +08:10:05 [ 32] [ 6] [180893] +08:10:05 [ 35] [ 32] [6213544000492733=491212019273946] +08:10:05 [ 37] [ 12] [507901267050] +08:10:05 [ 41] [ 8] [0301LPBX] +08:10:05 [ 42] [ 15] [999999 ] +08:10:05 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +08:10:05 [ 49] [ 3] [418] +08:10:05 [ 52] [ 16] [D3760CD0A2FEE4D8] +08:10:05 ============================================================================ +08:10:05 + + +waiting on router queue for slot.... +08:10:05 Sending to : +08:10:05 ============================================================================ +08:10:05 Sending to : +08:10:05 ============================================================================ +08:10:05 ============================================================================ +08:10:05 Slot Id : <146> +08:10:05 Transaction Type : REQUEST +08:10:05 Received From : +08:10:05 ============================================================================ +08:10:05 FNo. Len. Field Value +08:10:05 ============================================================================ +08:10:05 [ 1] [ 4] [0200] +08:10:05 [ 2] [ 16] [6213544000492733] +08:10:05 [ 3] [ 6] [010000] +08:10:05 [ 4] [ 12] [000010000000] +08:10:05 [ 7] [ 10] [0320010912] +08:10:05 [ 11] [ 6] [267050] +08:10:05 [ 12] [ 6] [080912] +08:10:05 [ 13] [ 4] [0320] +08:10:05 [ 14] [ 4] [4912] +08:10:05 [ 15] [ 4] [0320] +08:10:05 [ 18] [ 4] [6011] +08:10:05 [ 19] [ 3] [418] +08:10:05 [ 22] [ 3] [021] +08:10:05 [ 25] [ 2] [01] +08:10:05 [ 28] [ 9] [D00002000] +08:10:05 [ 32] [ 6] [180893] +08:10:05 [ 35] [ 32] [6213544000492733=491212019273946] +08:10:05 [ 37] [ 12] [507901267050] +08:10:05 [ 41] [ 8] [0301LPBX] +08:10:05 [ 42] [ 15] [999999 ] +08:10:05 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +08:10:05 [ 49] [ 3] [418] +08:10:05 [ 52] [ 16] [D3760CD0A2FEE4D8] +08:10:05 ============================================================================ +08:10:05 + + +waiting on router queue for slot.... +08:10:05 Sending to : +08:10:05 ============================================================================ +08:10:05 ============================================================================ +08:10:05 Slot Id : <146> +08:10:05 Transaction Type : REQUEST +08:10:05 Received From : +08:10:05 ============================================================================ +08:10:05 FNo. Len. Field Value +08:10:05 ============================================================================ +08:10:05 [ 1] [ 4] [0200] +08:10:05 [ 2] [ 16] [6213544000492733] +08:10:05 [ 3] [ 6] [010000] +08:10:05 [ 4] [ 12] [000010000000] +08:10:05 [ 7] [ 10] [0320010912] +08:10:05 [ 11] [ 6] [267050] +08:10:05 [ 12] [ 6] [080912] +08:10:05 [ 13] [ 4] [0320] +08:10:05 [ 14] [ 4] [4912] +08:10:05 [ 15] [ 4] [0320] +08:10:05 [ 18] [ 4] [6011] +08:10:05 [ 19] [ 3] [418] +08:10:05 [ 22] [ 3] [021] +08:10:05 [ 25] [ 2] [01] +08:10:05 [ 28] [ 9] [D00002000] +08:10:05 [ 32] [ 6] [180893] +08:10:05 [ 35] [ 32] [6213544000492733=491212019273946] +08:10:05 [ 37] [ 12] [507901267050] +08:10:05 [ 41] [ 8] [0301LPBX] +08:10:05 [ 42] [ 15] [999999 ] +08:10:05 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +08:10:05 [ 49] [ 3] [418] +08:10:05 [ 52] [ 16] [8034FC067FBC5852] +08:10:05 ============================================================================ +08:10:05 + + +waiting on router queue for slot.... +08:10:05 Sending to : <0> +08:10:05 ============================================================================ +08:10:06 ============================================================================ +08:10:06 Slot Id : <146> +08:10:06 Transaction Type : RESPONSE +08:10:06 Received From : +08:10:06 ============================================================================ +08:10:06 FNo. Len. Field Value +08:10:06 ============================================================================ +08:10:06 [ 1] [ 4] [0210] +08:10:06 [ 2] [ 16] [6213544000492733] +08:10:06 [ 3] [ 6] [010000] +08:10:06 [ 4] [ 12] [000010000000] +08:10:06 [ 7] [ 10] [0320010912] +08:10:06 [ 11] [ 6] [267050] +08:10:06 [ 12] [ 6] [080912] +08:10:06 [ 13] [ 4] [0320] +08:10:06 [ 15] [ 4] [0320] +08:10:06 [ 18] [ 4] [6011] +08:10:06 [ 19] [ 3] [418] +08:10:06 [ 32] [ 6] [180893] +08:10:06 [ 35] [ 32] [6213544000492733=491212019273946] +08:10:06 [ 37] [ 12] [507901267050] +08:10:06 [ 38] [ 6] [173431] +08:10:06 [ 39] [ 2] [00] +08:10:06 [ 41] [ 8] [0301LPBX] +08:10:06 [ 49] [ 3] [418] +08:10:06 [ 54] [ 40] [0001418C0000225062940002418C000022506294] +08:10:06 ============================================================================ +08:10:06 Sending to : +08:10:06 ============================================================================ +08:10:06 + + +waiting on router queue for slot.... +08:10:08 ============================================================================ +08:10:08 Slot Id : <146> +08:10:08 Transaction Type : RESPONSE +08:10:08 Received From : +08:10:08 ============================================================================ +08:10:08 FNo. Len. Field Value +08:10:08 ============================================================================ +08:10:08 [ 1] [ 4] [0210] +08:10:08 [ 2] [ 16] [6213544000492733] +08:10:08 [ 3] [ 6] [010000] +08:10:08 [ 4] [ 12] [000010000000] +08:10:08 [ 7] [ 10] [0320010912] +08:10:08 [ 11] [ 6] [267050] +08:10:08 [ 12] [ 6] [080912] +08:10:08 [ 13] [ 4] [0320] +08:10:08 [ 15] [ 4] [0320] +08:10:08 [ 18] [ 4] [6011] +08:10:08 [ 19] [ 3] [418] +08:10:08 [ 32] [ 6] [180893] +08:10:08 [ 35] [ 32] [6213544000492733=491212019273946] +08:10:08 [ 37] [ 12] [507901267050] +08:10:08 [ 38] [ 6] [173431] +08:10:08 [ 39] [ 2] [00] +08:10:08 [ 41] [ 8] [0301LPBX] +08:10:08 [ 49] [ 3] [418] +08:10:08 [ 54] [ 40] [0001418C0000225062940002418C000022506294] +08:10:08 ============================================================================ +08:10:08 Calculate Source COMM Id = 2 +08:10:08 ============================================================================ +08:10:08 + + +waiting on router queue for slot.... +08:10:15 ============================================================================ +08:10:15 Slot Id : <170> +08:10:15 Transaction Type : REQUEST +08:10:15 Received From : +08:10:15 ============================================================================ +08:10:15 FNo. Len. Field Value +08:10:15 ============================================================================ +08:10:15 [ 1] [ 4] [0200] +08:10:15 [ 2] [ 16] [6688990103063903] +08:10:15 [ 3] [ 6] [301000] +08:10:15 [ 7] [ 10] [0320010923] +08:10:15 [ 11] [ 6] [267052] +08:10:15 [ 12] [ 6] [080923] +08:10:15 [ 13] [ 4] [0320] +08:10:15 [ 14] [ 4] [4212] +08:10:15 [ 15] [ 4] [0320] +08:10:15 [ 18] [ 4] [6011] +08:10:15 [ 19] [ 3] [418] +08:10:15 [ 22] [ 3] [021] +08:10:15 [ 25] [ 2] [01] +08:10:15 [ 32] [ 6] [180893] +08:10:15 [ 35] [ 37] [6688990103063903=42121231390389200000] +08:10:15 [ 37] [ 12] [507901267052] +08:10:15 [ 41] [ 8] [0522XYXH] +08:10:15 [ 42] [ 15] [999999 ] +08:10:15 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:10:15 [ 49] [ 3] [418] +08:10:15 [ 52] [ 16] [BCF9ADFBF38DB7B4] +08:10:15 ============================================================================ +08:10:15 + + +waiting on router queue for slot.... +08:10:15 Sending to : +08:10:15 ============================================================================ +08:10:15 Sending to : +08:10:15 ============================================================================ +08:10:15 ============================================================================ +08:10:15 Slot Id : <170> +08:10:15 Transaction Type : REQUEST +08:10:15 Received From : +08:10:15 ============================================================================ +08:10:15 FNo. Len. Field Value +08:10:15 ============================================================================ +08:10:15 [ 1] [ 4] [0200] +08:10:15 [ 2] [ 16] [6688990103063903] +08:10:15 [ 3] [ 6] [301000] +08:10:15 [ 7] [ 10] [0320010923] +08:10:15 [ 11] [ 6] [267052] +08:10:15 [ 12] [ 6] [080923] +08:10:15 [ 13] [ 4] [0320] +08:10:15 [ 14] [ 4] [4212] +08:10:15 [ 15] [ 4] [0320] +08:10:15 [ 18] [ 4] [6011] +08:10:15 [ 19] [ 3] [418] +08:10:15 [ 22] [ 3] [021] +08:10:15 [ 25] [ 2] [01] +08:10:15 [ 32] [ 6] [180893] +08:10:15 [ 35] [ 37] [6688990103063903=42121231390389200000] +08:10:15 [ 37] [ 12] [507901267052] +08:10:15 [ 41] [ 8] [0522XYXH] +08:10:15 [ 42] [ 15] [999999 ] +08:10:15 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:10:15 [ 49] [ 3] [418] +08:10:15 [ 52] [ 16] [BCF9ADFBF38DB7B4] +08:10:15 ============================================================================ +08:10:15 + + +waiting on router queue for slot.... +08:10:15 Sending to : +08:10:15 ============================================================================ +08:10:15 ============================================================================ +08:10:15 Slot Id : <170> +08:10:15 Transaction Type : REQUEST +08:10:15 Received From : +08:10:15 ============================================================================ +08:10:15 FNo. Len. Field Value +08:10:15 ============================================================================ +08:10:15 [ 1] [ 4] [0200] +08:10:15 [ 2] [ 16] [6688990103063903] +08:10:15 [ 3] [ 6] [301000] +08:10:15 [ 7] [ 10] [0320010923] +08:10:15 [ 11] [ 6] [267052] +08:10:15 [ 12] [ 6] [080923] +08:10:15 [ 13] [ 4] [0320] +08:10:15 [ 14] [ 4] [4212] +08:10:15 [ 15] [ 4] [0320] +08:10:15 [ 18] [ 4] [6011] +08:10:15 [ 19] [ 3] [418] +08:10:15 [ 22] [ 3] [021] +08:10:15 [ 25] [ 2] [01] +08:10:15 [ 32] [ 6] [180893] +08:10:15 [ 35] [ 37] [6688990103063903=42121231390389200000] +08:10:15 [ 37] [ 12] [507901267052] +08:10:15 [ 41] [ 8] [0522XYXH] +08:10:15 [ 42] [ 15] [999999 ] +08:10:15 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:10:15 [ 49] [ 3] [418] +08:10:15 [ 52] [ 16] [9EDA6166146D4CAA] +08:10:15 ============================================================================ +08:10:15 + + +waiting on router queue for slot.... +08:10:15 Sending to : <0> +08:10:15 ============================================================================ +08:10:15 ============================================================================ +08:10:15 Slot Id : <170> +08:10:15 Transaction Type : RESPONSE +08:10:15 Received From : +08:10:15 ============================================================================ +08:10:15 FNo. Len. Field Value +08:10:15 ============================================================================ +08:10:15 [ 1] [ 4] [0210] +08:10:15 [ 2] [ 16] [6688990103063903] +08:10:15 [ 3] [ 6] [301000] +08:10:15 [ 4] [ 12] [000000000000] +08:10:15 [ 7] [ 10] [0320010923] +08:10:15 [ 11] [ 6] [267052] +08:10:15 [ 12] [ 6] [080923] +08:10:15 [ 13] [ 4] [0320] +08:10:15 [ 15] [ 4] [0320] +08:10:15 [ 18] [ 4] [6011] +08:10:15 [ 19] [ 3] [418] +08:10:15 [ 22] [ 3] [021] +08:10:15 [ 32] [ 6] [180893] +08:10:15 [ 35] [ 37] [6688990103063903=42121231390389200000] +08:10:15 [ 37] [ 12] [507901267052] +08:10:15 [ 39] [ 2] [14] +08:10:15 [ 41] [ 8] [0522XYXH] +08:10:15 [ 49] [ 3] [418] +08:10:15 ============================================================================ +08:10:15 Sending to : +08:10:15 ============================================================================ +08:10:15 + + +waiting on router queue for slot.... +08:10:16 ============================================================================ +08:10:16 Slot Id : <170> +08:10:16 Transaction Type : RESPONSE +08:10:16 Received From : +08:10:16 ============================================================================ +08:10:16 FNo. Len. Field Value +08:10:16 ============================================================================ +08:10:16 [ 1] [ 4] [0210] +08:10:16 [ 2] [ 16] [6688990103063903] +08:10:16 [ 3] [ 6] [301000] +08:10:16 [ 4] [ 12] [000000000000] +08:10:16 [ 7] [ 10] [0320010923] +08:10:16 [ 11] [ 6] [267052] +08:10:16 [ 12] [ 6] [080923] +08:10:16 [ 13] [ 4] [0320] +08:10:16 [ 15] [ 4] [0320] +08:10:16 [ 18] [ 4] [6011] +08:10:16 [ 19] [ 3] [418] +08:10:16 [ 22] [ 3] [021] +08:10:16 [ 32] [ 6] [180893] +08:10:16 [ 35] [ 37] [6688990103063903=42121231390389200000] +08:10:16 [ 37] [ 12] [507901267052] +08:10:16 [ 39] [ 2] [14] +08:10:16 [ 41] [ 8] [0522XYXH] +08:10:16 [ 49] [ 3] [418] +08:10:16 ============================================================================ +08:10:16 Calculate Source COMM Id = 2 +08:10:16 ============================================================================ +08:10:16 + + +waiting on router queue for slot.... +08:10:17 ============================================================================ +08:10:17 Slot Id : <141> +08:10:17 Transaction Type : REQUEST +08:10:17 Received From : +08:10:17 ============================================================================ +08:10:17 FNo. Len. Field Value +08:10:17 ============================================================================ +08:10:17 [ 1] [ 4] [0800] +08:10:17 [ 7] [ 10] [0320011014] +08:10:17 [ 11] [ 6] [056050] +08:10:17 [ 37] [ 12] [507908056050] +08:10:17 [ 70] [ 3] [001] +08:10:17 ============================================================================ +08:10:17 + + +waiting on router queue for slot.... +08:10:17 Sending to : +08:10:17 ============================================================================ +08:10:17 ============================================================================ +08:10:17 Slot Id : <141> +08:10:17 Transaction Type : RESPONSE +08:10:17 Received From : +08:10:17 ============================================================================ +08:10:17 FNo. Len. Field Value +08:10:17 ============================================================================ +08:10:17 [ 1] [ 4] [0810] +08:10:17 [ 7] [ 10] [0320011014] +08:10:17 [ 11] [ 6] [056050] +08:10:17 [ 37] [ 12] [507908056050] +08:10:17 [ 39] [ 2] [00] +08:10:17 [ 70] [ 3] [001] +08:10:17 ============================================================================ +08:10:17 Calculate Source COMM Id = 0 +08:10:17 ============================================================================ +08:10:17 + + +waiting on router queue for slot.... +08:10:24 ============================================================================ +08:10:24 Slot Id : <151> +08:10:24 Transaction Type : REQUEST +08:10:24 Received From : +08:10:24 ============================================================================ +08:10:24 FNo. Len. Field Value +08:10:24 ============================================================================ +08:10:24 [ 1] [ 4] [0800] +08:10:24 [ 2] [ 5] [02531] +08:10:24 [ 3] [ 6] [579088] +08:10:24 [ 7] [ 10] [0320011024] +08:10:24 [ 11] [ 6] [806886] +08:10:24 [ 15] [ 10] [0320011024] +08:10:24 [ 37] [ 11] [57908806886] +08:10:24 [ 70] [ 3] [001] +08:10:24 ============================================================================ +08:10:24 + + +waiting on router queue for slot.... +08:10:24 ============================================================================ +08:10:24 Slot Id : <151> +08:10:24 Transaction Type : RESPONSE +08:10:24 Received From : +08:10:24 ============================================================================ +08:10:24 FNo. Len. Field Value +08:10:24 ============================================================================ +08:10:24 [ 1] [ 4] [0810] +08:10:24 [ 7] [ 10] [0320011024] +08:10:24 [ 11] [ 6] [806886] +08:10:24 [ 15] [ 4] [0320] +08:10:24 [ 37] [ 12] [57908806886] +08:10:24 [ 39] [ 2] [00] +08:10:24 [ 70] [ 3] [001] +08:10:24 ============================================================================ +08:10:24 Sending to : +08:10:24 ============================================================================ +08:10:24 + + +waiting on router queue for slot.... +08:10:25 ============================================================================ +08:10:25 Slot Id : <164> +08:10:25 Transaction Type : REQUEST +08:10:25 Received From : +08:10:25 ============================================================================ +08:10:25 FNo. Len. Field Value +08:10:25 ============================================================================ +08:10:25 [ 1] [ 4] [0200] +08:10:25 [ 2] [ 16] [6213541000314255] +08:10:25 [ 3] [ 6] [010000] +08:10:25 [ 4] [ 12] [000100000000] +08:10:25 [ 7] [ 10] [0320010933] +08:10:25 [ 11] [ 6] [267055] +08:10:25 [ 12] [ 6] [080933] +08:10:25 [ 13] [ 4] [0320] +08:10:25 [ 14] [ 4] [4912] +08:10:25 [ 15] [ 4] [0320] +08:10:25 [ 18] [ 4] [6011] +08:10:25 [ 19] [ 3] [418] +08:10:25 [ 22] [ 3] [021] +08:10:25 [ 25] [ 2] [01] +08:10:25 [ 28] [ 9] [D00002000] +08:10:25 [ 32] [ 6] [180893] +08:10:25 [ 35] [ 32] [6213541000314255=491212011425008] +08:10:25 [ 37] [ 12] [507901267055] +08:10:25 [ 41] [ 8] [0482XKMO] +08:10:25 [ 42] [ 15] [999999 ] +08:10:25 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +08:10:25 [ 49] [ 3] [418] +08:10:25 [ 52] [ 16] [6C3EF849B61FB311] +08:10:25 ============================================================================ +08:10:25 + + +waiting on router queue for slot.... +08:10:25 Sending to : +08:10:25 ============================================================================ +08:10:25 Sending to : +08:10:25 ============================================================================ +08:10:25 ============================================================================ +08:10:25 Slot Id : <164> +08:10:25 Transaction Type : REQUEST +08:10:25 Received From : +08:10:25 ============================================================================ +08:10:25 FNo. Len. Field Value +08:10:25 ============================================================================ +08:10:25 [ 1] [ 4] [0200] +08:10:25 [ 2] [ 16] [6213541000314255] +08:10:25 [ 3] [ 6] [010000] +08:10:25 [ 4] [ 12] [000100000000] +08:10:25 [ 7] [ 10] [0320010933] +08:10:25 [ 11] [ 6] [267055] +08:10:25 [ 12] [ 6] [080933] +08:10:25 [ 13] [ 4] [0320] +08:10:25 [ 14] [ 4] [4912] +08:10:25 [ 15] [ 4] [0320] +08:10:25 [ 18] [ 4] [6011] +08:10:25 [ 19] [ 3] [418] +08:10:25 [ 22] [ 3] [021] +08:10:25 [ 25] [ 2] [01] +08:10:25 [ 28] [ 9] [D00002000] +08:10:25 [ 32] [ 6] [180893] +08:10:25 [ 35] [ 32] [6213541000314255=491212011425008] +08:10:25 [ 37] [ 12] [507901267055] +08:10:25 [ 41] [ 8] [0482XKMO] +08:10:25 [ 42] [ 15] [999999 ] +08:10:25 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +08:10:25 [ 49] [ 3] [418] +08:10:25 [ 52] [ 16] [6C3EF849B61FB311] +08:10:25 ============================================================================ +08:10:25 + + +waiting on router queue for slot.... +08:10:25 Sending to : +08:10:25 ============================================================================ +08:10:25 ============================================================================ +08:10:25 Slot Id : <164> +08:10:25 Transaction Type : REQUEST +08:10:25 Received From : +08:10:25 ============================================================================ +08:10:25 FNo. Len. Field Value +08:10:25 ============================================================================ +08:10:25 [ 1] [ 4] [0200] +08:10:25 [ 2] [ 16] [6213541000314255] +08:10:25 [ 3] [ 6] [010000] +08:10:25 [ 4] [ 12] [000100000000] +08:10:25 [ 7] [ 10] [0320010933] +08:10:25 [ 11] [ 6] [267055] +08:10:25 [ 12] [ 6] [080933] +08:10:25 [ 13] [ 4] [0320] +08:10:25 [ 14] [ 4] [4912] +08:10:25 [ 15] [ 4] [0320] +08:10:25 [ 18] [ 4] [6011] +08:10:25 [ 19] [ 3] [418] +08:10:25 [ 22] [ 3] [021] +08:10:25 [ 25] [ 2] [01] +08:10:25 [ 28] [ 9] [D00002000] +08:10:25 [ 32] [ 6] [180893] +08:10:25 [ 35] [ 32] [6213541000314255=491212011425008] +08:10:25 [ 37] [ 12] [507901267055] +08:10:25 [ 41] [ 8] [0482XKMO] +08:10:25 [ 42] [ 15] [999999 ] +08:10:25 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +08:10:25 [ 49] [ 3] [418] +08:10:25 [ 52] [ 16] [4D6E481CD412859B] +08:10:25 ============================================================================ +08:10:25 + + +waiting on router queue for slot.... +08:10:25 Sending to : <0> +08:10:25 ============================================================================ +08:10:26 ============================================================================ +08:10:26 Slot Id : <164> +08:10:26 Transaction Type : RESPONSE +08:10:26 Received From : +08:10:26 ============================================================================ +08:10:26 FNo. Len. Field Value +08:10:26 ============================================================================ +08:10:26 [ 1] [ 4] [0210] +08:10:26 [ 2] [ 16] [6213541000314255] +08:10:26 [ 3] [ 6] [010000] +08:10:26 [ 4] [ 12] [000100000000] +08:10:26 [ 7] [ 10] [0320010933] +08:10:26 [ 11] [ 6] [267055] +08:10:26 [ 12] [ 6] [080933] +08:10:26 [ 13] [ 4] [0320] +08:10:26 [ 15] [ 4] [0320] +08:10:26 [ 18] [ 4] [6011] +08:10:26 [ 19] [ 3] [418] +08:10:26 [ 32] [ 6] [180893] +08:10:26 [ 35] [ 32] [6213541000314255=491212011425008] +08:10:26 [ 37] [ 12] [507901267055] +08:10:26 [ 38] [ 6] [743760] +08:10:26 [ 39] [ 2] [00] +08:10:26 [ 41] [ 8] [0482XKMO] +08:10:26 [ 49] [ 3] [418] +08:10:26 [ 54] [ 40] [0001418C0009241317210002418C000924131721] +08:10:26 ============================================================================ +08:10:26 Sending to : +08:10:26 ============================================================================ +08:10:26 + + +waiting on router queue for slot.... +08:10:27 ============================================================================ +08:10:27 Slot Id : <164> +08:10:27 Transaction Type : RESPONSE +08:10:27 Received From : +08:10:27 ============================================================================ +08:10:27 FNo. Len. Field Value +08:10:27 ============================================================================ +08:10:27 [ 1] [ 4] [0210] +08:10:27 [ 2] [ 16] [6213541000314255] +08:10:27 [ 3] [ 6] [010000] +08:10:27 [ 4] [ 12] [000100000000] +08:10:27 [ 7] [ 10] [0320010933] +08:10:27 [ 11] [ 6] [267055] +08:10:27 [ 12] [ 6] [080933] +08:10:27 [ 13] [ 4] [0320] +08:10:27 [ 15] [ 4] [0320] +08:10:27 [ 18] [ 4] [6011] +08:10:27 [ 19] [ 3] [418] +08:10:27 [ 32] [ 6] [180893] +08:10:27 [ 35] [ 32] [6213541000314255=491212011425008] +08:10:27 [ 37] [ 12] [507901267055] +08:10:27 [ 38] [ 6] [743760] +08:10:27 [ 39] [ 2] [00] +08:10:27 [ 41] [ 8] [0482XKMO] +08:10:27 [ 49] [ 3] [418] +08:10:27 [ 54] [ 40] [0001418C0009241317210002418C000924131721] +08:10:27 ============================================================================ +08:10:27 Calculate Source COMM Id = 2 +08:10:27 ============================================================================ +08:10:27 + + +waiting on router queue for slot.... +08:10:28 ============================================================================ +08:10:28 Slot Id : <157> +08:10:28 Transaction Type : REQUEST +08:10:28 Received From : +08:10:28 ============================================================================ +08:10:28 FNo. Len. Field Value +08:10:28 ============================================================================ +08:10:28 [ 1] [ 4] [0800] +08:10:28 [ 7] [ 10] [0320010936] +08:10:28 [ 11] [ 6] [155338] +08:10:28 [ 70] [ 3] [301] +08:10:28 ============================================================================ +08:10:28 + + +waiting on router queue for slot.... +08:10:28 Sending to : +08:10:28 ============================================================================ +08:10:28 ============================================================================ +08:10:28 Slot Id : <157> +08:10:28 Transaction Type : RESPONSE +08:10:28 Received From : +08:10:28 ============================================================================ +08:10:28 FNo. Len. Field Value +08:10:28 ============================================================================ +08:10:28 [ 1] [ 4] [0810] +08:10:28 [ 7] [ 10] [0320010936] +08:10:28 [ 11] [ 6] [155338] +08:10:28 [ 39] [ 2] [00] +08:10:28 [ 70] [ 3] [301] +08:10:28 ============================================================================ +08:10:28 Calculate Source COMM Id = 2 +08:10:28 ============================================================================ +08:10:28 + + +waiting on router queue for slot.... +08:10:28 ============================================================================ +08:10:28 Slot Id : <172> +08:10:28 Transaction Type : REQUEST +08:10:28 Received From : +08:10:28 ============================================================================ +08:10:28 FNo. Len. Field Value +08:10:28 ============================================================================ +08:10:28 [ 1] [ 4] [0200] +08:10:28 [ 2] [ 16] [6213541000473317] +08:10:28 [ 3] [ 6] [010000] +08:10:28 [ 4] [ 12] [000100000000] +08:10:28 [ 7] [ 10] [0320080820] +08:10:28 [ 11] [ 6] [932026] +08:10:28 [ 12] [ 6] [080820] +08:10:28 [ 13] [ 4] [0320] +08:10:28 [ 15] [ 4] [0320] +08:10:28 [ 18] [ 4] [6011] +08:10:28 [ 19] [ 3] [418] +08:10:28 [ 22] [ 3] [021] +08:10:28 [ 25] [ 2] [01] +08:10:28 [ 28] [ 9] [D00002000] +08:10:28 [ 32] [ 6] [668899] +08:10:28 [ 35] [ 32] [6213541000473317=491212017331171] +08:10:28 [ 37] [ 12] [507900844810] +08:10:28 [ 41] [ 8] [03015003] +08:10:28 [ 42] [ 15] [APT ] +08:10:28 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:10:28 [ 49] [ 3] [418] +08:10:28 [ 52] [ 16] [A4AA7DCD034875C8] +08:10:28 ============================================================================ +08:10:28 + + +waiting on router queue for slot.... +08:10:28 Sending to : +08:10:28 ============================================================================ +08:10:28 Sending to : +08:10:28 ============================================================================ +08:10:29 ============================================================================ +08:10:29 Slot Id : <172> +08:10:29 Transaction Type : REQUEST +08:10:29 Received From : +08:10:29 ============================================================================ +08:10:29 FNo. Len. Field Value +08:10:29 ============================================================================ +08:10:29 [ 1] [ 4] [0200] +08:10:29 [ 2] [ 16] [6213541000473317] +08:10:29 [ 3] [ 6] [010000] +08:10:29 [ 4] [ 12] [000100000000] +08:10:29 [ 7] [ 10] [0320080820] +08:10:29 [ 11] [ 6] [932026] +08:10:29 [ 12] [ 6] [080820] +08:10:29 [ 13] [ 4] [0320] +08:10:29 [ 15] [ 4] [0320] +08:10:29 [ 18] [ 4] [6011] +08:10:29 [ 19] [ 3] [418] +08:10:29 [ 22] [ 3] [021] +08:10:29 [ 25] [ 2] [01] +08:10:29 [ 28] [ 9] [D00002000] +08:10:29 [ 32] [ 6] [668899] +08:10:29 [ 35] [ 32] [6213541000473317=491212017331171] +08:10:29 [ 37] [ 12] [507900844810] +08:10:29 [ 41] [ 8] [03015003] +08:10:29 [ 42] [ 15] [APT ] +08:10:29 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:10:29 [ 49] [ 3] [418] +08:10:29 [ 52] [ 16] [A4AA7DCD034875C8] +08:10:29 ============================================================================ +08:10:29 + + +waiting on router queue for slot.... +08:10:29 Sending to : +08:10:29 ============================================================================ +08:10:29 ============================================================================ +08:10:29 Slot Id : <172> +08:10:29 Transaction Type : REQUEST +08:10:29 Received From : +08:10:29 ============================================================================ +08:10:29 FNo. Len. Field Value +08:10:29 ============================================================================ +08:10:29 [ 1] [ 4] [0200] +08:10:29 [ 2] [ 16] [6213541000473317] +08:10:29 [ 3] [ 6] [010000] +08:10:29 [ 4] [ 12] [000100000000] +08:10:29 [ 7] [ 10] [0320080820] +08:10:29 [ 11] [ 6] [932026] +08:10:29 [ 12] [ 6] [080820] +08:10:29 [ 13] [ 4] [0320] +08:10:29 [ 15] [ 4] [0320] +08:10:29 [ 18] [ 4] [6011] +08:10:29 [ 19] [ 3] [418] +08:10:29 [ 22] [ 3] [021] +08:10:29 [ 25] [ 2] [01] +08:10:29 [ 28] [ 9] [D00002000] +08:10:29 [ 32] [ 6] [668899] +08:10:29 [ 35] [ 32] [6213541000473317=491212017331171] +08:10:29 [ 37] [ 12] [507900844810] +08:10:29 [ 41] [ 8] [03015003] +08:10:29 [ 42] [ 15] [APT ] +08:10:29 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:10:29 [ 49] [ 3] [418] +08:10:29 [ 52] [ 16] [11C2AF8F961CA130] +08:10:29 ============================================================================ +08:10:29 + + +waiting on router queue for slot.... +08:10:29 Sending to : <0> +08:10:29 ============================================================================ +08:10:30 ============================================================================ +08:10:30 Slot Id : <172> +08:10:30 Transaction Type : RESPONSE +08:10:30 Received From : +08:10:30 ============================================================================ +08:10:30 FNo. Len. Field Value +08:10:30 ============================================================================ +08:10:30 [ 1] [ 4] [0210] +08:10:30 [ 2] [ 16] [6213541000473317] +08:10:30 [ 3] [ 6] [010000] +08:10:30 [ 4] [ 12] [000100000000] +08:10:30 [ 7] [ 10] [0320080820] +08:10:30 [ 11] [ 6] [932026] +08:10:30 [ 12] [ 6] [080820] +08:10:30 [ 13] [ 4] [0320] +08:10:30 [ 15] [ 4] [0320] +08:10:30 [ 18] [ 4] [6011] +08:10:30 [ 19] [ 3] [418] +08:10:30 [ 32] [ 6] [668899] +08:10:30 [ 35] [ 32] [6213541000473317=491212017331171] +08:10:30 [ 37] [ 12] [507900844810] +08:10:30 [ 38] [ 6] [536575] +08:10:30 [ 39] [ 2] [00] +08:10:30 [ 41] [ 8] [03015003] +08:10:30 [ 49] [ 3] [418] +08:10:30 [ 54] [ 40] [0001418C0001528052290002418C000152805229] +08:10:30 ============================================================================ +08:10:30 Sending to : +08:10:30 ============================================================================ +08:10:30 + + +waiting on router queue for slot.... +08:10:32 ============================================================================ +08:10:32 Slot Id : <172> +08:10:32 Transaction Type : RESPONSE +08:10:32 Received From : +08:10:32 ============================================================================ +08:10:32 FNo. Len. Field Value +08:10:32 ============================================================================ +08:10:32 [ 1] [ 4] [0210] +08:10:32 [ 2] [ 16] [6213541000473317] +08:10:32 [ 3] [ 6] [010000] +08:10:32 [ 4] [ 12] [000100000000] +08:10:32 [ 7] [ 10] [0320080820] +08:10:32 [ 11] [ 6] [932026] +08:10:32 [ 12] [ 6] [080820] +08:10:32 [ 13] [ 4] [0320] +08:10:32 [ 15] [ 4] [0320] +08:10:32 [ 18] [ 4] [6011] +08:10:32 [ 19] [ 3] [418] +08:10:32 [ 32] [ 6] [668899] +08:10:32 [ 35] [ 32] [6213541000473317=491212017331171] +08:10:32 [ 37] [ 12] [507900844810] +08:10:32 [ 38] [ 6] [536575] +08:10:32 [ 39] [ 2] [00] +08:10:32 [ 41] [ 8] [03015003] +08:10:32 [ 49] [ 3] [418] +08:10:32 [ 54] [ 40] [0001418C0001528052290002418C000152805229] +08:10:32 ============================================================================ +08:10:32 Calculate Source COMM Id = 4 +08:10:32 ============================================================================ +08:10:32 + + +waiting on router queue for slot.... +08:10:37 ============================================================================ +08:10:37 Slot Id : <186> +08:10:37 Transaction Type : REQUEST +08:10:37 Received From : +08:10:37 ============================================================================ +08:10:37 FNo. Len. Field Value +08:10:37 ============================================================================ +08:10:37 [ 1] [ 4] [0420] +08:10:37 [ 2] [ 16] [1808930300018793] +08:10:37 [ 3] [ 6] [011000] +08:10:37 [ 4] [ 12] [000100000000] +08:10:37 [ 7] [ 10] [0320080924] +08:10:37 [ 11] [ 6] [679433] +08:10:37 [ 12] [ 6] [080924] +08:10:37 [ 13] [ 4] [0320] +08:10:37 [ 15] [ 4] [0320] +08:10:37 [ 18] [ 4] [6011] +08:10:37 [ 22] [ 3] [900] +08:10:37 [ 25] [ 2] [02] +08:10:37 [ 28] [ 9] [C00002000] +08:10:37 [ 32] [ 6] [621354] +08:10:37 [ 35] [ 27] [1808930300018793=1803500401] +08:10:37 [ 37] [ 12] [507903028252] +08:10:37 [ 39] [ 2] [00] +08:10:37 [ 41] [ 8] [12002500] +08:10:37 [ 42] [ 15] [NATIVE ] +08:10:37 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:10:37 [ 49] [ 3] [418] +08:10:37 [ 90] [ 42] [020067943303200809240000062135400000000000] +08:10:37 ============================================================================ +08:10:37 + + +waiting on router queue for slot.... +08:10:37 Sending to : +08:10:37 ============================================================================ +08:10:38 ============================================================================ +08:10:38 Slot Id : <148> +08:10:38 Transaction Type : REQUEST +08:10:38 Received From : +08:10:38 ============================================================================ +08:10:38 FNo. Len. Field Value +08:10:38 ============================================================================ +08:10:38 [ 1] [ 4] [0800] +08:10:38 [ 7] [ 10] [0320010946] +08:10:38 [ 11] [ 6] [155339] +08:10:38 [ 70] [ 3] [301] +08:10:38 ============================================================================ +08:10:38 + + +waiting on router queue for slot.... +08:10:38 Sending to : +08:10:38 ============================================================================ +08:10:38 ============================================================================ +08:10:38 Slot Id : <148> +08:10:38 Transaction Type : RESPONSE +08:10:38 Received From : +08:10:38 ============================================================================ +08:10:38 FNo. Len. Field Value +08:10:38 ============================================================================ +08:10:38 [ 1] [ 4] [0810] +08:10:38 [ 7] [ 10] [0320010946] +08:10:38 [ 11] [ 6] [155339] +08:10:38 [ 39] [ 2] [00] +08:10:38 [ 70] [ 3] [301] +08:10:38 ============================================================================ +08:10:38 Calculate Source COMM Id = 2 +08:10:38 ============================================================================ +08:10:38 + + +waiting on router queue for slot.... +08:10:42 ============================================================================ +08:10:42 Slot Id : <186> +08:10:42 Transaction Type : RESPONSE +08:10:42 Received From : +08:10:42 ============================================================================ +08:10:42 FNo. Len. Field Value +08:10:42 ============================================================================ +08:10:42 [ 1] [ 4] [0430] +08:10:42 [ 2] [ 16] [1808930300018793] +08:10:42 [ 3] [ 6] [011000] +08:10:42 [ 4] [ 12] [000100000000] +08:10:42 [ 7] [ 10] [0320080924] +08:10:42 [ 11] [ 6] [679433] +08:10:42 [ 12] [ 6] [080924] +08:10:42 [ 13] [ 4] [0320] +08:10:42 [ 15] [ 4] [0320] +08:10:42 [ 18] [ 4] [6011] +08:10:42 [ 22] [ 3] [900] +08:10:42 [ 25] [ 2] [02] +08:10:42 [ 28] [ 9] [C00002000] +08:10:42 [ 32] [ 6] [621354] +08:10:42 [ 35] [ 27] [1808930300018793=1803500401] +08:10:42 [ 37] [ 12] [507903028252] +08:10:42 [ 39] [ 2] [00] +08:10:42 [ 41] [ 8] [12002500] +08:10:42 [ 42] [ 15] [NATIVE ] +08:10:42 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:10:42 [ 49] [ 3] [418] +08:10:42 [ 90] [ 42] [020067943303200809240000062135400000000000] +08:10:42 ============================================================================ +08:10:42 Calculate Source COMM Id = 0 +08:10:42 ============================================================================ +08:10:42 + + +waiting on router queue for slot.... +08:10:49 ============================================================================ +08:10:49 Slot Id : <182> +08:10:49 Transaction Type : REQUEST +08:10:49 Received From : +08:10:49 ============================================================================ +08:10:49 FNo. Len. Field Value +08:10:49 ============================================================================ +08:10:49 [ 1] [ 4] [0800] +08:10:49 [ 7] [ 10] [0320010957] +08:10:49 [ 11] [ 6] [155340] +08:10:49 [ 70] [ 3] [301] +08:10:49 ============================================================================ +08:10:49 + + +waiting on router queue for slot.... +08:10:49 Sending to : +08:10:49 ============================================================================ +08:10:49 ============================================================================ +08:10:49 Slot Id : <182> +08:10:49 Transaction Type : RESPONSE +08:10:49 Received From : +08:10:49 ============================================================================ +08:10:49 FNo. Len. Field Value +08:10:49 ============================================================================ +08:10:49 [ 1] [ 4] [0810] +08:10:49 [ 7] [ 10] [0320010957] +08:10:49 [ 11] [ 6] [155340] +08:10:49 [ 39] [ 2] [00] +08:10:49 [ 70] [ 3] [301] +08:10:49 ============================================================================ +08:10:49 Calculate Source COMM Id = 2 +08:10:49 ============================================================================ +08:10:49 + + +waiting on router queue for slot.... +08:10:51 ============================================================================ +08:10:51 Slot Id : <126> +08:10:51 Transaction Type : REQUEST +08:10:51 Received From : +08:10:51 ============================================================================ +08:10:51 FNo. Len. Field Value +08:10:51 ============================================================================ +08:10:51 [ 1] [ 4] [0800] +08:10:51 [ 7] [ 10] [0320152239] +08:10:51 [ 11] [ 6] [082239] +08:10:51 [ 37] [ 12] [57908082239] +08:10:51 [ 70] [ 3] [301] +08:10:51 ============================================================================ +08:10:51 + + +waiting on router queue for slot.... +08:10:51 Sending to : +08:10:51 ============================================================================ +08:10:51 ============================================================================ +08:10:51 Slot Id : <126> +08:10:51 Transaction Type : RESPONSE +08:10:51 Received From : +08:10:51 ============================================================================ +08:10:51 FNo. Len. Field Value +08:10:51 ============================================================================ +08:10:51 [ 1] [ 4] [0810] +08:10:51 [ 7] [ 10] [0320152239] +08:10:51 [ 11] [ 6] [082239] +08:10:51 [ 37] [ 12] [579080822390] +08:10:51 [ 39] [ 2] [00] +08:10:51 [ 70] [ 3] [810] +08:10:51 ============================================================================ +08:10:51 Calculate Source COMM Id = 6 +08:10:51 ============================================================================ +08:10:51 + + +waiting on router queue for slot.... +08:10:51 ============================================================================ +08:10:51 Slot Id : <171> +08:10:51 Transaction Type : REQUEST +08:10:51 Received From : +08:10:51 ============================================================================ +08:10:51 FNo. Len. Field Value +08:10:51 ============================================================================ +08:10:51 [ 1] [ 4] [0200] +08:10:51 [ 2] [ 16] [6213545000697551] +08:10:51 [ 3] [ 6] [010000] +08:10:51 [ 4] [ 12] [000100000000] +08:10:51 [ 7] [ 10] [0320080843] +08:10:51 [ 11] [ 6] [932050] +08:10:51 [ 12] [ 6] [080843] +08:10:51 [ 13] [ 4] [0320] +08:10:51 [ 15] [ 4] [0320] +08:10:51 [ 18] [ 4] [6011] +08:10:51 [ 19] [ 3] [418] +08:10:51 [ 22] [ 3] [021] +08:10:51 [ 25] [ 2] [01] +08:10:51 [ 28] [ 9] [D00002000] +08:10:51 [ 32] [ 6] [668899] +08:10:51 [ 35] [ 32] [6213545000697551=491212019755860] +08:10:51 [ 37] [ 12] [507901373545] +08:10:51 [ 41] [ 8] [03209001] +08:10:51 [ 42] [ 15] [APT ] +08:10:51 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +08:10:51 [ 49] [ 3] [418] +08:10:51 [ 52] [ 16] [10D3D1D72B2850CE] +08:10:51 ============================================================================ +08:10:51 + + +waiting on router queue for slot.... +08:10:51 Sending to : +08:10:51 ============================================================================ +08:10:51 Sending to : +08:10:51 ============================================================================ +08:10:52 ============================================================================ +08:10:52 Slot Id : <171> +08:10:52 Transaction Type : REQUEST +08:10:52 Received From : +08:10:52 ============================================================================ +08:10:52 FNo. Len. Field Value +08:10:52 ============================================================================ +08:10:52 [ 1] [ 4] [0200] +08:10:52 [ 2] [ 16] [6213545000697551] +08:10:52 [ 3] [ 6] [010000] +08:10:52 [ 4] [ 12] [000100000000] +08:10:52 [ 7] [ 10] [0320080843] +08:10:52 [ 11] [ 6] [932050] +08:10:52 [ 12] [ 6] [080843] +08:10:52 [ 13] [ 4] [0320] +08:10:52 [ 15] [ 4] [0320] +08:10:52 [ 18] [ 4] [6011] +08:10:52 [ 19] [ 3] [418] +08:10:52 [ 22] [ 3] [021] +08:10:52 [ 25] [ 2] [01] +08:10:52 [ 28] [ 9] [D00002000] +08:10:52 [ 32] [ 6] [668899] +08:10:52 [ 35] [ 32] [6213545000697551=491212019755860] +08:10:52 [ 37] [ 12] [507901373545] +08:10:52 [ 41] [ 8] [03209001] +08:10:52 [ 42] [ 15] [APT ] +08:10:52 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +08:10:52 [ 49] [ 3] [418] +08:10:52 [ 52] [ 16] [10D3D1D72B2850CE] +08:10:52 ============================================================================ +08:10:52 + + +waiting on router queue for slot.... +08:10:52 Sending to : +08:10:52 ============================================================================ +08:10:52 ============================================================================ +08:10:52 Slot Id : <171> +08:10:52 Transaction Type : REQUEST +08:10:52 Received From : +08:10:52 ============================================================================ +08:10:52 FNo. Len. Field Value +08:10:52 ============================================================================ +08:10:52 [ 1] [ 4] [0200] +08:10:52 [ 2] [ 16] [6213545000697551] +08:10:52 [ 3] [ 6] [010000] +08:10:52 [ 4] [ 12] [000100000000] +08:10:52 [ 7] [ 10] [0320080843] +08:10:52 [ 11] [ 6] [932050] +08:10:52 [ 12] [ 6] [080843] +08:10:52 [ 13] [ 4] [0320] +08:10:52 [ 15] [ 4] [0320] +08:10:52 [ 18] [ 4] [6011] +08:10:52 [ 19] [ 3] [418] +08:10:52 [ 22] [ 3] [021] +08:10:52 [ 25] [ 2] [01] +08:10:52 [ 28] [ 9] [D00002000] +08:10:52 [ 32] [ 6] [668899] +08:10:52 [ 35] [ 32] [6213545000697551=491212019755860] +08:10:52 [ 37] [ 12] [507901373545] +08:10:52 [ 41] [ 8] [03209001] +08:10:52 [ 42] [ 15] [APT ] +08:10:52 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +08:10:52 [ 49] [ 3] [418] +08:10:52 [ 52] [ 16] [154C3A46ECB3F302] +08:10:52 ============================================================================ +08:10:52 + + +waiting on router queue for slot.... +08:10:52 Sending to : <0> +08:10:52 ============================================================================ +08:10:52 ============================================================================ +08:10:52 Slot Id : <171> +08:10:52 Transaction Type : RESPONSE +08:10:52 Received From : +08:10:52 ============================================================================ +08:10:52 FNo. Len. Field Value +08:10:52 ============================================================================ +08:10:52 [ 1] [ 4] [0210] +08:10:52 [ 2] [ 16] [6213545000697551] +08:10:52 [ 3] [ 6] [010000] +08:10:52 [ 4] [ 12] [000100000000] +08:10:52 [ 7] [ 10] [0320080843] +08:10:52 [ 11] [ 6] [932050] +08:10:52 [ 12] [ 6] [080843] +08:10:52 [ 13] [ 4] [0320] +08:10:52 [ 15] [ 4] [0320] +08:10:52 [ 18] [ 4] [6011] +08:10:52 [ 19] [ 3] [418] +08:10:52 [ 32] [ 6] [668899] +08:10:52 [ 35] [ 32] [6213545000697551=491212019755860] +08:10:52 [ 37] [ 12] [507901373545] +08:10:52 [ 38] [ 6] [449397] +08:10:52 [ 39] [ 2] [00] +08:10:52 [ 41] [ 8] [03209001] +08:10:52 [ 49] [ 3] [418] +08:10:52 [ 54] [ 40] [0001418C0000730587770002418C000073058777] +08:10:52 ============================================================================ +08:10:52 Sending to : +08:10:52 ============================================================================ +08:10:52 + + +waiting on router queue for slot.... +08:10:53 ============================================================================ +08:10:53 Slot Id : <119> +08:10:53 Transaction Type : REQUEST +08:10:53 Received From : +08:10:53 ============================================================================ +08:10:53 FNo. Len. Field Value +08:10:53 ============================================================================ +08:10:53 [ 1] [ 4] [0200] +08:10:53 [ 2] [ 16] [6688990603097609] +08:10:53 [ 3] [ 6] [301000] +08:10:53 [ 7] [ 10] [0320011001] +08:10:53 [ 11] [ 6] [267061] +08:10:53 [ 12] [ 6] [081001] +08:10:53 [ 13] [ 4] [0320] +08:10:53 [ 14] [ 4] [4405] +08:10:53 [ 15] [ 4] [0320] +08:10:53 [ 18] [ 4] [6011] +08:10:53 [ 19] [ 3] [418] +08:10:53 [ 22] [ 3] [021] +08:10:53 [ 25] [ 2] [01] +08:10:53 [ 32] [ 6] [180893] +08:10:53 [ 35] [ 37] [6688990603097609=44050061760928400000] +08:10:53 [ 37] [ 12] [507901267061] +08:10:53 [ 41] [ 8] [0522XYXH] +08:10:53 [ 42] [ 15] [999999 ] +08:10:53 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:10:53 [ 49] [ 3] [418] +08:10:53 [ 52] [ 16] [A22515F2D0FB4F8F] +08:10:53 ============================================================================ +08:10:53 + + +waiting on router queue for slot.... +08:10:53 Sending to : +08:10:53 ============================================================================ +08:10:53 Sending to : +08:10:53 ============================================================================ +08:10:53 ============================================================================ +08:10:53 Slot Id : <119> +08:10:53 Transaction Type : REQUEST +08:10:53 Received From : +08:10:53 ============================================================================ +08:10:53 FNo. Len. Field Value +08:10:53 ============================================================================ +08:10:53 [ 1] [ 4] [0200] +08:10:53 [ 2] [ 16] [6688990603097609] +08:10:53 [ 3] [ 6] [301000] +08:10:53 [ 7] [ 10] [0320011001] +08:10:53 [ 11] [ 6] [267061] +08:10:53 [ 12] [ 6] [081001] +08:10:53 [ 13] [ 4] [0320] +08:10:53 [ 14] [ 4] [4405] +08:10:53 [ 15] [ 4] [0320] +08:10:53 [ 18] [ 4] [6011] +08:10:53 [ 19] [ 3] [418] +08:10:53 [ 22] [ 3] [021] +08:10:53 [ 25] [ 2] [01] +08:10:53 [ 32] [ 6] [180893] +08:10:53 [ 35] [ 37] [6688990603097609=44050061760928400000] +08:10:53 [ 37] [ 12] [507901267061] +08:10:53 [ 41] [ 8] [0522XYXH] +08:10:53 [ 42] [ 15] [999999 ] +08:10:53 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:10:53 [ 49] [ 3] [418] +08:10:53 [ 52] [ 16] [A22515F2D0FB4F8F] +08:10:53 ============================================================================ +08:10:53 + + +waiting on router queue for slot.... +08:10:53 Sending to : +08:10:53 ============================================================================ +08:10:53 ============================================================================ +08:10:53 Slot Id : <119> +08:10:53 Transaction Type : REQUEST +08:10:53 Received From : +08:10:53 ============================================================================ +08:10:53 FNo. Len. Field Value +08:10:53 ============================================================================ +08:10:53 [ 1] [ 4] [0200] +08:10:53 [ 2] [ 16] [6688990603097609] +08:10:53 [ 3] [ 6] [301000] +08:10:53 [ 7] [ 10] [0320011001] +08:10:53 [ 11] [ 6] [267061] +08:10:53 [ 12] [ 6] [081001] +08:10:53 [ 13] [ 4] [0320] +08:10:53 [ 14] [ 4] [4405] +08:10:53 [ 15] [ 4] [0320] +08:10:53 [ 18] [ 4] [6011] +08:10:53 [ 19] [ 3] [418] +08:10:53 [ 22] [ 3] [021] +08:10:53 [ 25] [ 2] [01] +08:10:53 [ 32] [ 6] [180893] +08:10:53 [ 35] [ 37] [6688990603097609=44050061760928400000] +08:10:53 [ 37] [ 12] [507901267061] +08:10:53 [ 41] [ 8] [0522XYXH] +08:10:53 [ 42] [ 15] [999999 ] +08:10:53 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:10:53 [ 49] [ 3] [418] +08:10:53 [ 52] [ 16] [96F42659277875AE] +08:10:53 ============================================================================ +08:10:53 + + +waiting on router queue for slot.... +08:10:53 Sending to : <0> +08:10:53 ============================================================================ +08:10:53 ============================================================================ +08:10:53 Slot Id : <119> +08:10:53 Transaction Type : RESPONSE +08:10:53 Received From : +08:10:53 ============================================================================ +08:10:53 FNo. Len. Field Value +08:10:53 ============================================================================ +08:10:53 [ 1] [ 4] [0210] +08:10:53 [ 2] [ 16] [6688990603097609] +08:10:53 [ 3] [ 6] [301000] +08:10:53 [ 4] [ 12] [000000000000] +08:10:53 [ 7] [ 10] [0320011001] +08:10:53 [ 11] [ 6] [267061] +08:10:53 [ 12] [ 6] [081001] +08:10:53 [ 13] [ 4] [0320] +08:10:53 [ 15] [ 4] [0320] +08:10:53 [ 18] [ 4] [6011] +08:10:53 [ 19] [ 3] [418] +08:10:53 [ 22] [ 3] [021] +08:10:53 [ 32] [ 6] [180893] +08:10:53 [ 35] [ 37] [6688990603097609=44050061760928400000] +08:10:53 [ 37] [ 12] [507901267061] +08:10:53 [ 39] [ 2] [14] +08:10:53 [ 41] [ 8] [0522XYXH] +08:10:53 [ 49] [ 3] [418] +08:10:53 ============================================================================ +08:10:53 Sending to : +08:10:53 ============================================================================ +08:10:53 + + +waiting on router queue for slot.... +08:10:54 ============================================================================ +08:10:54 Slot Id : <171> +08:10:54 Transaction Type : RESPONSE +08:10:54 Received From : +08:10:54 ============================================================================ +08:10:54 FNo. Len. Field Value +08:10:54 ============================================================================ +08:10:54 [ 1] [ 4] [0210] +08:10:54 [ 2] [ 16] [6213545000697551] +08:10:54 [ 3] [ 6] [010000] +08:10:54 [ 4] [ 12] [000100000000] +08:10:54 [ 7] [ 10] [0320080843] +08:10:54 [ 11] [ 6] [932050] +08:10:54 [ 12] [ 6] [080843] +08:10:54 [ 13] [ 4] [0320] +08:10:54 [ 15] [ 4] [0320] +08:10:54 [ 18] [ 4] [6011] +08:10:54 [ 19] [ 3] [418] +08:10:54 [ 32] [ 6] [668899] +08:10:54 [ 35] [ 32] [6213545000697551=491212019755860] +08:10:54 [ 37] [ 12] [507901373545] +08:10:54 [ 38] [ 6] [449397] +08:10:54 [ 39] [ 2] [00] +08:10:54 [ 41] [ 8] [03209001] +08:10:54 [ 49] [ 3] [418] +08:10:54 [ 54] [ 40] [0001418C0000730587770002418C000073058777] +08:10:54 ============================================================================ +08:10:54 Calculate Source COMM Id = 4 +08:10:54 ============================================================================ +08:10:54 + + +waiting on router queue for slot.... +08:10:55 ============================================================================ +08:10:55 Slot Id : <119> +08:10:55 Transaction Type : RESPONSE +08:10:55 Received From : +08:10:55 ============================================================================ +08:10:55 FNo. Len. Field Value +08:10:55 ============================================================================ +08:10:55 [ 1] [ 4] [0210] +08:10:55 [ 2] [ 16] [6688990603097609] +08:10:55 [ 3] [ 6] [301000] +08:10:55 [ 4] [ 12] [000000000000] +08:10:55 [ 7] [ 10] [0320011001] +08:10:55 [ 11] [ 6] [267061] +08:10:55 [ 12] [ 6] [081001] +08:10:55 [ 13] [ 4] [0320] +08:10:55 [ 15] [ 4] [0320] +08:10:55 [ 18] [ 4] [6011] +08:10:55 [ 19] [ 3] [418] +08:10:55 [ 22] [ 3] [021] +08:10:55 [ 32] [ 6] [180893] +08:10:55 [ 35] [ 37] [6688990603097609=44050061760928400000] +08:10:55 [ 37] [ 12] [507901267061] +08:10:55 [ 39] [ 2] [14] +08:10:55 [ 41] [ 8] [0522XYXH] +08:10:55 [ 49] [ 3] [418] +08:10:55 ============================================================================ +08:10:55 Calculate Source COMM Id = 2 +08:10:55 ============================================================================ +08:10:55 + + +waiting on router queue for slot.... +08:11:07 ============================================================================ +08:11:07 Slot Id : <176> +08:11:07 Transaction Type : REQUEST +08:11:07 Received From : +08:11:07 ============================================================================ +08:11:07 FNo. Len. Field Value +08:11:07 ============================================================================ +08:11:07 [ 1] [ 4] [0800] +08:11:07 [ 7] [ 10] [0320011014] +08:11:07 [ 11] [ 6] [155341] +08:11:07 [ 70] [ 3] [301] +08:11:07 ============================================================================ +08:11:07 + + +waiting on router queue for slot.... +08:11:07 Sending to : +08:11:07 ============================================================================ +08:11:07 ============================================================================ +08:11:07 Slot Id : <176> +08:11:07 Transaction Type : RESPONSE +08:11:07 Received From : +08:11:07 ============================================================================ +08:11:07 FNo. Len. Field Value +08:11:07 ============================================================================ +08:11:07 [ 1] [ 4] [0810] +08:11:07 [ 7] [ 10] [0320011014] +08:11:07 [ 11] [ 6] [155341] +08:11:07 [ 39] [ 2] [00] +08:11:07 [ 70] [ 3] [301] +08:11:07 ============================================================================ +08:11:07 Calculate Source COMM Id = 2 +08:11:07 ============================================================================ +08:11:07 + + +waiting on router queue for slot.... +08:11:14 ============================================================================ +08:11:14 Slot Id : <139> +08:11:14 Transaction Type : REQUEST +08:11:14 Received From : +08:11:14 ============================================================================ +08:11:14 FNo. Len. Field Value +08:11:14 ============================================================================ +08:11:14 [ 1] [ 4] [0200] +08:11:14 [ 2] [ 16] [6213541000314255] +08:11:14 [ 3] [ 6] [010000] +08:11:14 [ 4] [ 12] [000100000000] +08:11:14 [ 7] [ 10] [0320011020] +08:11:14 [ 11] [ 6] [267064] +08:11:14 [ 12] [ 6] [081020] +08:11:14 [ 13] [ 4] [0320] +08:11:14 [ 14] [ 4] [4912] +08:11:14 [ 15] [ 4] [0320] +08:11:14 [ 18] [ 4] [6011] +08:11:14 [ 19] [ 3] [418] +08:11:14 [ 22] [ 3] [021] +08:11:14 [ 25] [ 2] [01] +08:11:14 [ 28] [ 9] [D00002000] +08:11:14 [ 32] [ 6] [180893] +08:11:14 [ 35] [ 32] [6213541000314255=491212011425008] +08:11:14 [ 37] [ 12] [507901267064] +08:11:14 [ 41] [ 8] [0482XKMO] +08:11:14 [ 42] [ 15] [999999 ] +08:11:14 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +08:11:14 [ 49] [ 3] [418] +08:11:14 [ 52] [ 16] [6C3EF849B61FB311] +08:11:14 ============================================================================ +08:11:14 + + +waiting on router queue for slot.... +08:11:14 Sending to : +08:11:14 ============================================================================ +08:11:14 Sending to : +08:11:14 ============================================================================ +08:11:15 ============================================================================ +08:11:15 Slot Id : <139> +08:11:15 Transaction Type : REQUEST +08:11:15 Received From : +08:11:15 ============================================================================ +08:11:15 FNo. Len. Field Value +08:11:15 ============================================================================ +08:11:15 [ 1] [ 4] [0200] +08:11:15 [ 2] [ 16] [6213541000314255] +08:11:15 [ 3] [ 6] [010000] +08:11:15 [ 4] [ 12] [000100000000] +08:11:15 [ 7] [ 10] [0320011020] +08:11:15 [ 11] [ 6] [267064] +08:11:15 [ 12] [ 6] [081020] +08:11:15 [ 13] [ 4] [0320] +08:11:15 [ 14] [ 4] [4912] +08:11:15 [ 15] [ 4] [0320] +08:11:15 [ 18] [ 4] [6011] +08:11:15 [ 19] [ 3] [418] +08:11:15 [ 22] [ 3] [021] +08:11:15 [ 25] [ 2] [01] +08:11:15 [ 28] [ 9] [D00002000] +08:11:15 [ 32] [ 6] [180893] +08:11:15 [ 35] [ 32] [6213541000314255=491212011425008] +08:11:15 [ 37] [ 12] [507901267064] +08:11:15 [ 41] [ 8] [0482XKMO] +08:11:15 [ 42] [ 15] [999999 ] +08:11:15 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +08:11:15 [ 49] [ 3] [418] +08:11:15 [ 52] [ 16] [6C3EF849B61FB311] +08:11:15 ============================================================================ +08:11:15 + + +waiting on router queue for slot.... +08:11:15 Sending to : +08:11:15 ============================================================================ +08:11:15 ============================================================================ +08:11:15 Slot Id : <139> +08:11:15 Transaction Type : REQUEST +08:11:15 Received From : +08:11:15 ============================================================================ +08:11:15 FNo. Len. Field Value +08:11:15 ============================================================================ +08:11:15 [ 1] [ 4] [0200] +08:11:15 [ 2] [ 16] [6213541000314255] +08:11:15 [ 3] [ 6] [010000] +08:11:15 [ 4] [ 12] [000100000000] +08:11:15 [ 7] [ 10] [0320011020] +08:11:15 [ 11] [ 6] [267064] +08:11:15 [ 12] [ 6] [081020] +08:11:15 [ 13] [ 4] [0320] +08:11:15 [ 14] [ 4] [4912] +08:11:15 [ 15] [ 4] [0320] +08:11:15 [ 18] [ 4] [6011] +08:11:15 [ 19] [ 3] [418] +08:11:15 [ 22] [ 3] [021] +08:11:15 [ 25] [ 2] [01] +08:11:15 [ 28] [ 9] [D00002000] +08:11:15 [ 32] [ 6] [180893] +08:11:15 [ 35] [ 32] [6213541000314255=491212011425008] +08:11:15 [ 37] [ 12] [507901267064] +08:11:15 [ 41] [ 8] [0482XKMO] +08:11:15 [ 42] [ 15] [999999 ] +08:11:15 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +08:11:15 [ 49] [ 3] [418] +08:11:15 [ 52] [ 16] [4D6E481CD412859B] +08:11:15 ============================================================================ +08:11:15 + + +waiting on router queue for slot.... +08:11:15 Sending to : <0> +08:11:15 ============================================================================ +08:11:15 ============================================================================ +08:11:15 Slot Id : <139> +08:11:15 Transaction Type : RESPONSE +08:11:15 Received From : +08:11:15 ============================================================================ +08:11:15 FNo. Len. Field Value +08:11:15 ============================================================================ +08:11:15 [ 1] [ 4] [0210] +08:11:15 [ 2] [ 16] [6213541000314255] +08:11:15 [ 3] [ 6] [010000] +08:11:15 [ 4] [ 12] [000100000000] +08:11:15 [ 7] [ 10] [0320011020] +08:11:15 [ 11] [ 6] [267064] +08:11:15 [ 12] [ 6] [081020] +08:11:15 [ 13] [ 4] [0320] +08:11:15 [ 15] [ 4] [0320] +08:11:15 [ 18] [ 4] [6011] +08:11:15 [ 19] [ 3] [418] +08:11:15 [ 32] [ 6] [180893] +08:11:15 [ 35] [ 32] [6213541000314255=491212011425008] +08:11:15 [ 37] [ 12] [507901267064] +08:11:15 [ 38] [ 6] [330805] +08:11:15 [ 39] [ 2] [00] +08:11:15 [ 41] [ 8] [0482XKMO] +08:11:15 [ 49] [ 3] [418] +08:11:15 [ 54] [ 40] [0001418C0008239317210002418C000823931721] +08:11:15 ============================================================================ +08:11:15 Sending to : +08:11:15 ============================================================================ +08:11:15 + + +waiting on router queue for slot.... +08:11:17 ============================================================================ +08:11:17 Slot Id : <139> +08:11:17 Transaction Type : RESPONSE +08:11:17 Received From : +08:11:17 ============================================================================ +08:11:17 FNo. Len. Field Value +08:11:17 ============================================================================ +08:11:17 [ 1] [ 4] [0210] +08:11:17 [ 2] [ 16] [6213541000314255] +08:11:17 [ 3] [ 6] [010000] +08:11:17 [ 4] [ 12] [000100000000] +08:11:17 [ 7] [ 10] [0320011020] +08:11:17 [ 11] [ 6] [267064] +08:11:17 [ 12] [ 6] [081020] +08:11:17 [ 13] [ 4] [0320] +08:11:17 [ 15] [ 4] [0320] +08:11:17 [ 18] [ 4] [6011] +08:11:17 [ 19] [ 3] [418] +08:11:17 [ 32] [ 6] [180893] +08:11:17 [ 35] [ 32] [6213541000314255=491212011425008] +08:11:17 [ 37] [ 12] [507901267064] +08:11:17 [ 38] [ 6] [330805] +08:11:17 [ 39] [ 2] [00] +08:11:17 [ 41] [ 8] [0482XKMO] +08:11:17 [ 49] [ 3] [418] +08:11:17 [ 54] [ 40] [0001418C0008239317210002418C000823931721] +08:11:17 ============================================================================ +08:11:17 Calculate Source COMM Id = 2 +08:11:17 ============================================================================ +08:11:17 + + +waiting on router queue for slot.... +08:11:20 ============================================================================ +08:11:20 Slot Id : <202> +08:11:20 Transaction Type : REQUEST +08:11:20 Received From : +08:11:20 ============================================================================ +08:11:20 FNo. Len. Field Value +08:11:20 ============================================================================ +08:11:20 [ 1] [ 4] [0800] +08:11:20 [ 7] [ 10] [0320010912] +08:11:20 [ 11] [ 6] [006570] +08:11:20 [ 37] [ 12] [57908006570] +08:11:20 [ 70] [ 3] [301] +08:11:20 ============================================================================ +08:11:20 + + +waiting on router queue for slot.... +08:11:20 Sending to : +08:11:20 ============================================================================ +08:11:20 ============================================================================ +08:11:20 Slot Id : <202> +08:11:20 Transaction Type : RESPONSE +08:11:20 Received From : +08:11:20 ============================================================================ +08:11:20 FNo. Len. Field Value +08:11:20 ============================================================================ +08:11:20 [ 1] [ 4] [0810] +08:11:20 [ 7] [ 10] [0320010912] +08:11:20 [ 11] [ 6] [006570] +08:11:20 [ 37] [ 12] [579080065700] +08:11:20 [ 39] [ 2] [00] +08:11:20 [ 70] [ 3] [810] +08:11:20 ============================================================================ +08:11:20 Calculate Source COMM Id = 4 +08:11:20 ============================================================================ +08:11:20 + + +waiting on router queue for slot.... +08:11:26 ============================================================================ +08:11:26 Slot Id : <156> +08:11:26 Transaction Type : REQUEST +08:11:26 Received From : +08:11:26 ============================================================================ +08:11:26 FNo. Len. Field Value +08:11:26 ============================================================================ +08:11:26 [ 1] [ 4] [0800] +08:11:26 [ 2] [ 5] [02531] +08:11:26 [ 3] [ 6] [579088] +08:11:26 [ 7] [ 10] [0320011126] +08:11:26 [ 11] [ 6] [806887] +08:11:26 [ 15] [ 10] [0320011126] +08:11:26 [ 37] [ 11] [57908806887] +08:11:26 [ 70] [ 3] [001] +08:11:26 ============================================================================ +08:11:26 + + +waiting on router queue for slot.... +08:11:26 ============================================================================ +08:11:26 Slot Id : <156> +08:11:26 Transaction Type : RESPONSE +08:11:26 Received From : +08:11:26 ============================================================================ +08:11:26 FNo. Len. Field Value +08:11:26 ============================================================================ +08:11:26 [ 1] [ 4] [0810] +08:11:26 [ 7] [ 10] [0320011126] +08:11:26 [ 11] [ 6] [806887] +08:11:26 [ 15] [ 4] [0320] +08:11:26 [ 37] [ 12] [57908806887] +08:11:26 [ 39] [ 2] [00] +08:11:26 [ 70] [ 3] [001] +08:11:26 ============================================================================ +08:11:26 Sending to : +08:11:26 ============================================================================ +08:11:26 + + +waiting on router queue for slot.... +08:11:28 ============================================================================ +08:11:28 Slot Id : <187> +08:11:28 Transaction Type : REQUEST +08:11:28 Received From : +08:11:28 ============================================================================ +08:11:28 FNo. Len. Field Value +08:11:28 ============================================================================ +08:11:28 [ 1] [ 4] [0800] +08:11:28 [ 7] [ 10] [0320011036] +08:11:28 [ 11] [ 6] [155342] +08:11:28 [ 70] [ 3] [301] +08:11:28 ============================================================================ +08:11:28 + + +waiting on router queue for slot.... +08:11:28 Sending to : +08:11:28 ============================================================================ +08:11:28 ============================================================================ +08:11:28 Slot Id : <187> +08:11:28 Transaction Type : RESPONSE +08:11:28 Received From : +08:11:28 ============================================================================ +08:11:28 FNo. Len. Field Value +08:11:28 ============================================================================ +08:11:28 [ 1] [ 4] [0810] +08:11:28 [ 7] [ 10] [0320011036] +08:11:28 [ 11] [ 6] [155342] +08:11:28 [ 39] [ 2] [00] +08:11:28 [ 70] [ 3] [301] +08:11:28 ============================================================================ +08:11:28 Calculate Source COMM Id = 2 +08:11:28 ============================================================================ +08:11:28 + + +waiting on router queue for slot.... +08:11:31 ============================================================================ +08:11:31 Slot Id : <160> +08:11:31 Transaction Type : REQUEST +08:11:31 Received From : +08:11:31 ============================================================================ +08:11:31 FNo. Len. Field Value +08:11:31 ============================================================================ +08:11:31 [ 1] [ 4] [0200] +08:11:31 [ 2] [ 16] [6688990103644405] +08:11:31 [ 3] [ 6] [010000] +08:11:31 [ 4] [ 12] [000050000000] +08:11:31 [ 7] [ 10] [0320011038] +08:11:31 [ 11] [ 6] [267069] +08:11:31 [ 12] [ 6] [081038] +08:11:31 [ 13] [ 4] [0320] +08:11:31 [ 14] [ 4] [4301] +08:11:31 [ 15] [ 4] [0320] +08:11:31 [ 18] [ 4] [6011] +08:11:31 [ 19] [ 3] [418] +08:11:31 [ 22] [ 3] [021] +08:11:31 [ 25] [ 2] [01] +08:11:31 [ 28] [ 9] [D00002000] +08:11:31 [ 32] [ 6] [180893] +08:11:31 [ 35] [ 37] [6688990103644405=43011231440578600000] +08:11:31 [ 37] [ 12] [507901267069] +08:11:31 [ 41] [ 8] [0464UDPB] +08:11:31 [ 42] [ 15] [999999 ] +08:11:31 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +08:11:31 [ 49] [ 3] [418] +08:11:31 [ 52] [ 16] [BF0E66F93819F15E] +08:11:31 ============================================================================ +08:11:31 + + +waiting on router queue for slot.... +08:11:31 Sending to : +08:11:31 ============================================================================ +08:11:31 Sending to : +08:11:31 ============================================================================ +08:11:31 ============================================================================ +08:11:31 Slot Id : <160> +08:11:31 Transaction Type : REQUEST +08:11:31 Received From : +08:11:31 ============================================================================ +08:11:31 FNo. Len. Field Value +08:11:31 ============================================================================ +08:11:31 [ 1] [ 4] [0200] +08:11:31 [ 2] [ 16] [6688990103644405] +08:11:31 [ 3] [ 6] [010000] +08:11:31 [ 4] [ 12] [000050000000] +08:11:31 [ 7] [ 10] [0320011038] +08:11:31 [ 11] [ 6] [267069] +08:11:31 [ 12] [ 6] [081038] +08:11:31 [ 13] [ 4] [0320] +08:11:31 [ 14] [ 4] [4301] +08:11:31 [ 15] [ 4] [0320] +08:11:31 [ 18] [ 4] [6011] +08:11:31 [ 19] [ 3] [418] +08:11:31 [ 22] [ 3] [021] +08:11:31 [ 25] [ 2] [01] +08:11:31 [ 28] [ 9] [D00002000] +08:11:31 [ 32] [ 6] [180893] +08:11:31 [ 35] [ 37] [6688990103644405=43011231440578600000] +08:11:31 [ 37] [ 12] [507901267069] +08:11:31 [ 41] [ 8] [0464UDPB] +08:11:31 [ 42] [ 15] [999999 ] +08:11:31 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +08:11:31 [ 49] [ 3] [418] +08:11:31 [ 52] [ 16] [BF0E66F93819F15E] +08:11:31 ============================================================================ +08:11:31 + + +waiting on router queue for slot.... +08:11:31 Sending to : +08:11:31 ============================================================================ +08:11:31 ============================================================================ +08:11:31 Slot Id : <160> +08:11:31 Transaction Type : REQUEST +08:11:31 Received From : +08:11:31 ============================================================================ +08:11:31 FNo. Len. Field Value +08:11:31 ============================================================================ +08:11:31 [ 1] [ 4] [0200] +08:11:31 [ 2] [ 16] [6688990103644405] +08:11:31 [ 3] [ 6] [010000] +08:11:31 [ 4] [ 12] [000050000000] +08:11:31 [ 7] [ 10] [0320011038] +08:11:31 [ 11] [ 6] [267069] +08:11:31 [ 12] [ 6] [081038] +08:11:31 [ 13] [ 4] [0320] +08:11:31 [ 14] [ 4] [4301] +08:11:31 [ 15] [ 4] [0320] +08:11:31 [ 18] [ 4] [6011] +08:11:31 [ 19] [ 3] [418] +08:11:31 [ 22] [ 3] [021] +08:11:31 [ 25] [ 2] [01] +08:11:31 [ 28] [ 9] [D00002000] +08:11:31 [ 32] [ 6] [180893] +08:11:31 [ 35] [ 37] [6688990103644405=43011231440578600000] +08:11:31 [ 37] [ 12] [507901267069] +08:11:31 [ 41] [ 8] [0464UDPB] +08:11:31 [ 42] [ 15] [999999 ] +08:11:31 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +08:11:31 [ 49] [ 3] [418] +08:11:31 [ 52] [ 16] [B5C825B61DA31A64] +08:11:31 ============================================================================ +08:11:31 + + +waiting on router queue for slot.... +08:11:31 Sending to : <0> +08:11:31 ============================================================================ +08:11:31 ============================================================================ +08:11:31 Slot Id : <160> +08:11:31 Transaction Type : RESPONSE +08:11:31 Received From : +08:11:31 ============================================================================ +08:11:31 FNo. Len. Field Value +08:11:31 ============================================================================ +08:11:31 [ 1] [ 4] [0210] +08:11:31 [ 2] [ 16] [6688990103644405] +08:11:31 [ 3] [ 6] [010000] +08:11:31 [ 4] [ 12] [000050000000] +08:11:31 [ 7] [ 10] [0320011038] +08:11:31 [ 11] [ 6] [267069] +08:11:31 [ 12] [ 6] [081038] +08:11:31 [ 13] [ 4] [0320] +08:11:31 [ 15] [ 4] [0320] +08:11:31 [ 18] [ 4] [6011] +08:11:31 [ 19] [ 3] [418] +08:11:31 [ 22] [ 3] [021] +08:11:31 [ 32] [ 6] [180893] +08:11:31 [ 35] [ 37] [6688990103644405=43011231440578600000] +08:11:31 [ 37] [ 12] [507901267069] +08:11:31 [ 39] [ 2] [14] +08:11:31 [ 41] [ 8] [0464UDPB] +08:11:31 [ 49] [ 3] [418] +08:11:31 ============================================================================ +08:11:31 Sending to : +08:11:31 ============================================================================ +08:11:31 + + +waiting on router queue for slot.... +08:11:33 ============================================================================ +08:11:33 Slot Id : <160> +08:11:33 Transaction Type : RESPONSE +08:11:33 Received From : +08:11:33 ============================================================================ +08:11:33 FNo. Len. Field Value +08:11:33 ============================================================================ +08:11:33 [ 1] [ 4] [0210] +08:11:33 [ 2] [ 16] [6688990103644405] +08:11:33 [ 3] [ 6] [010000] +08:11:33 [ 4] [ 12] [000050000000] +08:11:33 [ 7] [ 10] [0320011038] +08:11:33 [ 11] [ 6] [267069] +08:11:33 [ 12] [ 6] [081038] +08:11:33 [ 13] [ 4] [0320] +08:11:33 [ 15] [ 4] [0320] +08:11:33 [ 18] [ 4] [6011] +08:11:33 [ 19] [ 3] [418] +08:11:33 [ 22] [ 3] [021] +08:11:33 [ 32] [ 6] [180893] +08:11:33 [ 35] [ 37] [6688990103644405=43011231440578600000] +08:11:33 [ 37] [ 12] [507901267069] +08:11:33 [ 39] [ 2] [14] +08:11:33 [ 41] [ 8] [0464UDPB] +08:11:33 [ 49] [ 3] [418] +08:11:33 ============================================================================ +08:11:33 Calculate Source COMM Id = 2 +08:11:33 ============================================================================ +08:11:33 + + +waiting on router queue for slot.... +08:11:43 ============================================================================ +08:11:43 Slot Id : <203> +08:11:43 Transaction Type : REQUEST +08:11:43 Received From : +08:11:43 ============================================================================ +08:11:43 FNo. Len. Field Value +08:11:43 ============================================================================ +08:11:43 [ 1] [ 4] [0800] +08:11:43 [ 7] [ 10] [0320081130] +08:11:43 [ 11] [ 6] [080992] +08:11:43 [ 37] [ 12] [507908080992] +08:11:43 [ 70] [ 3] [ ] +08:11:43 ============================================================================ +08:11:43 + + +waiting on router queue for slot.... +08:11:43 Sending to : +08:11:43 ============================================================================ +08:11:43 ============================================================================ +08:11:43 Slot Id : <203> +08:11:43 Transaction Type : RESPONSE +08:11:43 Received From : +08:11:43 ============================================================================ +08:11:43 FNo. Len. Field Value +08:11:43 ============================================================================ +08:11:43 [ 1] [ 4] [0810] +08:11:43 [ 7] [ 10] [0320081130] +08:11:43 [ 11] [ 6] [080992] +08:11:43 [ 37] [ 12] [507908080992] +08:11:43 [ 39] [ 2] [91] +08:11:43 [ 70] [ 3] [ ] +08:11:43 ============================================================================ +08:11:43 Calculate Source COMM Id = 3 +08:11:43 ============================================================================ +08:11:43 + + +waiting on router queue for slot.... +08:11:47 ============================================================================ +08:11:47 Slot Id : <163> +08:11:47 Transaction Type : REQUEST +08:11:47 Received From : +08:11:47 ============================================================================ +08:11:47 FNo. Len. Field Value +08:11:47 ============================================================================ +08:11:47 [ 1] [ 4] [0200] +08:11:47 [ 2] [ 16] [6688990104774706] +08:11:47 [ 3] [ 6] [011000] +08:11:47 [ 4] [ 12] [000030000000] +08:11:47 [ 7] [ 10] [0320081143] +08:11:47 [ 11] [ 6] [679992] +08:11:47 [ 12] [ 6] [081143] +08:11:47 [ 13] [ 4] [0320] +08:11:47 [ 15] [ 4] [0320] +08:11:47 [ 18] [ 4] [6011] +08:11:47 [ 22] [ 3] [900] +08:11:47 [ 25] [ 2] [02] +08:11:47 [ 28] [ 9] [D00002000] +08:11:47 [ 32] [ 6] [621354] +08:11:47 [ 35] [ 37] [6688990104774706=43051231470683300000] +08:11:47 [ 37] [ 12] [507903499464] +08:11:47 [ 41] [ 8] [06002200] +08:11:47 [ 42] [ 15] [NATIVE ] +08:11:47 [ 43] [ 40] [Beng Market Beng LAO] +08:11:47 [ 49] [ 3] [418] +08:11:47 [ 52] [ 16] [7E55307FA638E755] +08:11:47 ============================================================================ +08:11:47 + + +waiting on router queue for slot.... +08:11:47 Sending to : +08:11:47 ============================================================================ +08:11:47 Sending to : +08:11:47 ============================================================================ +08:11:47 ============================================================================ +08:11:47 Slot Id : <163> +08:11:47 Transaction Type : REQUEST +08:11:47 Received From : +08:11:47 ============================================================================ +08:11:47 FNo. Len. Field Value +08:11:47 ============================================================================ +08:11:47 [ 1] [ 4] [0200] +08:11:47 [ 2] [ 16] [6688990104774706] +08:11:47 [ 3] [ 6] [011000] +08:11:47 [ 4] [ 12] [000030000000] +08:11:47 [ 7] [ 10] [0320081143] +08:11:47 [ 11] [ 6] [679992] +08:11:47 [ 12] [ 6] [081143] +08:11:47 [ 13] [ 4] [0320] +08:11:47 [ 15] [ 4] [0320] +08:11:47 [ 18] [ 4] [6011] +08:11:47 [ 22] [ 3] [900] +08:11:47 [ 25] [ 2] [02] +08:11:47 [ 28] [ 9] [D00002000] +08:11:47 [ 32] [ 6] [621354] +08:11:47 [ 35] [ 37] [6688990104774706=43051231470683300000] +08:11:47 [ 37] [ 12] [507903499464] +08:11:47 [ 41] [ 8] [06002200] +08:11:47 [ 42] [ 15] [NATIVE ] +08:11:47 [ 43] [ 40] [Beng Market Beng LAO] +08:11:47 [ 49] [ 3] [418] +08:11:47 [ 52] [ 16] [7E55307FA638E755] +08:11:47 ============================================================================ +08:11:47 + + +waiting on router queue for slot.... +08:11:47 Sending to : +08:11:47 ============================================================================ +08:11:47 ============================================================================ +08:11:47 Slot Id : <163> +08:11:47 Transaction Type : REQUEST +08:11:47 Received From : +08:11:47 ============================================================================ +08:11:47 FNo. Len. Field Value +08:11:47 ============================================================================ +08:11:47 [ 1] [ 4] [0200] +08:11:47 [ 2] [ 16] [6688990104774706] +08:11:47 [ 3] [ 6] [011000] +08:11:47 [ 4] [ 12] [000030000000] +08:11:47 [ 7] [ 10] [0320081143] +08:11:47 [ 11] [ 6] [679992] +08:11:47 [ 12] [ 6] [081143] +08:11:47 [ 13] [ 4] [0320] +08:11:47 [ 15] [ 4] [0320] +08:11:47 [ 18] [ 4] [6011] +08:11:47 [ 22] [ 3] [900] +08:11:47 [ 25] [ 2] [02] +08:11:47 [ 28] [ 9] [D00002000] +08:11:47 [ 32] [ 6] [621354] +08:11:47 [ 35] [ 37] [6688990104774706=43051231470683300000] +08:11:47 [ 37] [ 12] [507903499464] +08:11:47 [ 41] [ 8] [06002200] +08:11:47 [ 42] [ 15] [NATIVE ] +08:11:47 [ 43] [ 40] [Beng Market Beng LAO] +08:11:47 [ 49] [ 3] [418] +08:11:47 [ 52] [ 16] [CE10BB18F514B7ED] +08:11:47 ============================================================================ +08:11:47 + + +waiting on router queue for slot.... +08:11:47 Sending to : <4> +08:11:47 ============================================================================ +08:11:48 ============================================================================ +08:11:48 Slot Id : <163> +08:11:48 Transaction Type : RESPONSE +08:11:48 Received From : +08:11:48 ============================================================================ +08:11:48 FNo. Len. Field Value +08:11:48 ============================================================================ +08:11:48 [ 1] [ 4] [0210] +08:11:48 [ 2] [ 16] [6688990104774706] +08:11:48 [ 3] [ 6] [011000] +08:11:48 [ 4] [ 12] [000030000000] +08:11:48 [ 11] [ 6] [679992] +08:11:48 [ 12] [ 6] [081143] +08:11:48 [ 15] [ 4] [0320] +08:11:48 [ 18] [ 4] [6011] +08:11:48 [ 32] [ 6] [621354] +08:11:48 [ 35] [ 37] [6688990104774706=43051231470683300000] +08:11:48 [ 37] [ 12] [507903499464] +08:11:48 [ 38] [ 6] [066087] +08:11:48 [ 39] [ 2] [00] +08:11:48 [ 41] [ 8] [06002200] +08:11:48 [ 49] [ 3] [418] +08:11:48 [ 54] [ 20] [1002418C000202119810] +08:11:48 ============================================================================ +08:11:48 Sending to : +08:11:48 ============================================================================ +08:11:48 + + +waiting on router queue for slot.... +08:11:49 ============================================================================ +08:11:49 Slot Id : <179> +08:11:49 Transaction Type : REQUEST +08:11:49 Received From : +08:11:49 ============================================================================ +08:11:49 FNo. Len. Field Value +08:11:49 ============================================================================ +08:11:49 [ 1] [ 4] [0800] +08:11:49 [ 7] [ 10] [0320011057] +08:11:49 [ 11] [ 6] [155343] +08:11:49 [ 70] [ 3] [301] +08:11:49 ============================================================================ +08:11:49 + + +waiting on router queue for slot.... +08:11:49 Sending to : +08:11:49 ============================================================================ +08:11:49 ============================================================================ +08:11:49 Slot Id : <179> +08:11:49 Transaction Type : RESPONSE +08:11:49 Received From : +08:11:49 ============================================================================ +08:11:49 FNo. Len. Field Value +08:11:49 ============================================================================ +08:11:49 [ 1] [ 4] [0810] +08:11:49 [ 7] [ 10] [0320011057] +08:11:49 [ 11] [ 6] [155343] +08:11:49 [ 39] [ 2] [00] +08:11:49 [ 70] [ 3] [301] +08:11:49 ============================================================================ +08:11:49 Calculate Source COMM Id = 2 +08:11:49 ============================================================================ +08:11:49 + + +waiting on router queue for slot.... +08:11:50 ============================================================================ +08:11:50 Slot Id : <163> +08:11:50 Transaction Type : RESPONSE +08:11:50 Received From : +08:11:50 ============================================================================ +08:11:50 FNo. Len. Field Value +08:11:50 ============================================================================ +08:11:50 [ 1] [ 4] [0210] +08:11:50 [ 2] [ 16] [6688990104774706] +08:11:50 [ 3] [ 6] [011000] +08:11:50 [ 4] [ 12] [000030000000] +08:11:50 [ 11] [ 6] [679992] +08:11:50 [ 12] [ 6] [081143] +08:11:50 [ 15] [ 4] [0320] +08:11:50 [ 18] [ 4] [6011] +08:11:50 [ 32] [ 6] [621354] +08:11:50 [ 35] [ 37] [6688990104774706=43051231470683300000] +08:11:50 [ 37] [ 12] [507903499464] +08:11:50 [ 38] [ 6] [066087] +08:11:50 [ 39] [ 2] [00] +08:11:50 [ 41] [ 8] [06002200] +08:11:50 [ 49] [ 3] [418] +08:11:50 [ 54] [ 20] [1002418C000202119810] +08:11:50 ============================================================================ +08:11:50 Calculate Source COMM Id = 0 +08:11:50 ============================================================================ +08:11:50 + + +waiting on router queue for slot.... +08:11:53 ============================================================================ +08:11:53 Slot Id : <192> +08:11:53 Transaction Type : REQUEST +08:11:53 Received From : +08:11:53 ============================================================================ +08:11:53 FNo. Len. Field Value +08:11:53 ============================================================================ +08:11:53 [ 0] [ 4] [0420] +08:11:53 [ 1] [ 4] [0420] +08:11:53 [ 2] [ 16] [1808930300018793] +08:11:53 [ 3] [ 6] [011000] +08:11:53 [ 4] [ 12] [000100000000] +08:11:53 [ 6] [ 12] [000100000000] +08:11:53 [ 7] [ 10] [0320080924] +08:11:53 [ 11] [ 6] [679433] +08:11:53 [ 12] [ 6] [080924] +08:11:53 [ 13] [ 4] [0320] +08:11:53 [ 15] [ 4] [0320] +08:11:53 [ 18] [ 4] [6011] +08:11:53 [ 22] [ 3] [900] +08:11:53 [ 25] [ 2] [02] +08:11:53 [ 28] [ 9] [D00002000] +08:11:53 [ 32] [ 6] [621354] +08:11:53 [ 35] [ 27] [1808930300018793=1803500401] +08:11:53 [ 37] [ 12] [507903028252] +08:11:53 [ 39] [ 2] [00] +08:11:53 [ 41] [ 8] [12002500] +08:11:53 [ 42] [ 15] [NATIVE ] +08:11:53 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:11:53 [ 49] [ 3] [418] +08:11:53 [ 52] [ 16] [F73FC271F9743D05] +08:11:53 ============================================================================ +08:11:53 + + +waiting on router queue for slot.... +08:11:55 ============================================================================ +08:11:55 Slot Id : <192> +08:11:55 Transaction Type : RESPONSE +08:11:55 Received From : +08:11:55 ============================================================================ +08:11:55 FNo. Len. Field Value +08:11:55 ============================================================================ +08:11:55 [ 1] [ 4] [0430] +08:11:55 [ 2] [ 16] [1808930300018793] +08:11:55 [ 3] [ 6] [011000] +08:11:55 [ 4] [ 12] [000100000000] +08:11:55 [ 6] [ 12] [000100000000] +08:11:55 [ 7] [ 10] [0320080924] +08:11:55 [ 11] [ 6] [679433] +08:11:55 [ 12] [ 6] [080924] +08:11:55 [ 13] [ 4] [0320] +08:11:55 [ 19] [ 3] [418] +08:11:55 [ 32] [ 6] [621354] +08:11:55 [ 35] [ 27] [1808930300018793=1803500401] +08:11:55 [ 37] [ 12] [507903028252] +08:11:55 [ 38] [ 6] [679433] +08:11:55 [ 39] [ 2] [00] +08:11:55 [ 41] [ 8] [12002500] +08:11:55 [ 49] [ 3] [418] +08:11:55 ============================================================================ +08:11:55 Successfully send the slot [192] To REVERSAL Process +08:11:55 + + +waiting on router queue for slot.... +08:11:56 ============================================================================ +08:11:56 Slot Id : <144> +08:11:56 Transaction Type : REQUEST +08:11:56 Received From : +08:11:56 ============================================================================ +08:11:56 FNo. Len. Field Value +08:11:56 ============================================================================ +08:11:56 [ 1] [ 4] [0800] +08:11:56 [ 7] [ 10] [0320152344] +08:11:56 [ 11] [ 6] [082344] +08:11:56 [ 37] [ 12] [57908082344] +08:11:56 [ 70] [ 3] [301] +08:11:56 ============================================================================ +08:11:56 + + +waiting on router queue for slot.... +08:11:56 Sending to : +08:11:56 ============================================================================ +08:11:56 ============================================================================ +08:11:56 Slot Id : <144> +08:11:56 Transaction Type : RESPONSE +08:11:56 Received From : +08:11:56 ============================================================================ +08:11:56 FNo. Len. Field Value +08:11:56 ============================================================================ +08:11:56 [ 1] [ 4] [0810] +08:11:56 [ 7] [ 10] [0320152344] +08:11:56 [ 11] [ 6] [082344] +08:11:56 [ 37] [ 12] [579080823440] +08:11:56 [ 39] [ 2] [00] +08:11:56 [ 70] [ 3] [810] +08:11:56 ============================================================================ +08:11:56 Calculate Source COMM Id = 6 +08:11:56 ============================================================================ +08:11:56 + + +waiting on router queue for slot.... +08:12:01 ============================================================================ +08:12:01 Slot Id : <204> +08:12:01 Transaction Type : REQUEST +08:12:01 Received From : +08:12:01 ============================================================================ +08:12:01 FNo. Len. Field Value +08:12:01 ============================================================================ +08:12:01 [ 1] [ 4] [0200] +08:12:01 [ 2] [ 16] [6213545000697551] +08:12:01 [ 3] [ 6] [010000] +08:12:01 [ 4] [ 12] [000020000000] +08:12:01 [ 7] [ 10] [0320080952] +08:12:01 [ 11] [ 6] [932114] +08:12:01 [ 12] [ 6] [080952] +08:12:01 [ 13] [ 4] [0320] +08:12:01 [ 15] [ 4] [0320] +08:12:01 [ 18] [ 4] [6011] +08:12:01 [ 19] [ 3] [418] +08:12:01 [ 22] [ 3] [021] +08:12:01 [ 25] [ 2] [01] +08:12:01 [ 28] [ 9] [D00002000] +08:12:01 [ 32] [ 6] [668899] +08:12:01 [ 35] [ 32] [6213545000697551=491212019755860] +08:12:01 [ 37] [ 12] [507901373547] +08:12:01 [ 41] [ 8] [03209001] +08:12:01 [ 42] [ 15] [APT ] +08:12:01 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +08:12:01 [ 49] [ 3] [418] +08:12:01 [ 52] [ 16] [10D3D1D72B2850CE] +08:12:01 ============================================================================ +08:12:01 + + +waiting on router queue for slot.... +08:12:01 Sending to : +08:12:01 ============================================================================ +08:12:01 Sending to : +08:12:01 ============================================================================ +08:12:01 ============================================================================ +08:12:01 Slot Id : <204> +08:12:01 Transaction Type : REQUEST +08:12:01 Received From : +08:12:01 ============================================================================ +08:12:01 FNo. Len. Field Value +08:12:01 ============================================================================ +08:12:01 [ 1] [ 4] [0200] +08:12:01 [ 2] [ 16] [6213545000697551] +08:12:01 [ 3] [ 6] [010000] +08:12:01 [ 4] [ 12] [000020000000] +08:12:01 [ 7] [ 10] [0320080952] +08:12:01 [ 11] [ 6] [932114] +08:12:01 [ 12] [ 6] [080952] +08:12:01 [ 13] [ 4] [0320] +08:12:01 [ 15] [ 4] [0320] +08:12:01 [ 18] [ 4] [6011] +08:12:01 [ 19] [ 3] [418] +08:12:01 [ 22] [ 3] [021] +08:12:01 [ 25] [ 2] [01] +08:12:01 [ 28] [ 9] [D00002000] +08:12:01 [ 32] [ 6] [668899] +08:12:01 [ 35] [ 32] [6213545000697551=491212019755860] +08:12:01 [ 37] [ 12] [507901373547] +08:12:01 [ 41] [ 8] [03209001] +08:12:01 [ 42] [ 15] [APT ] +08:12:01 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +08:12:01 [ 49] [ 3] [418] +08:12:01 [ 52] [ 16] [10D3D1D72B2850CE] +08:12:01 ============================================================================ +08:12:01 + + +waiting on router queue for slot.... +08:12:01 Sending to : +08:12:01 ============================================================================ +08:12:01 ============================================================================ +08:12:01 Slot Id : <204> +08:12:01 Transaction Type : REQUEST +08:12:01 Received From : +08:12:01 ============================================================================ +08:12:01 FNo. Len. Field Value +08:12:01 ============================================================================ +08:12:01 [ 1] [ 4] [0200] +08:12:01 [ 2] [ 16] [6213545000697551] +08:12:01 [ 3] [ 6] [010000] +08:12:01 [ 4] [ 12] [000020000000] +08:12:01 [ 7] [ 10] [0320080952] +08:12:01 [ 11] [ 6] [932114] +08:12:01 [ 12] [ 6] [080952] +08:12:01 [ 13] [ 4] [0320] +08:12:01 [ 15] [ 4] [0320] +08:12:01 [ 18] [ 4] [6011] +08:12:01 [ 19] [ 3] [418] +08:12:01 [ 22] [ 3] [021] +08:12:01 [ 25] [ 2] [01] +08:12:01 [ 28] [ 9] [D00002000] +08:12:01 [ 32] [ 6] [668899] +08:12:01 [ 35] [ 32] [6213545000697551=491212019755860] +08:12:01 [ 37] [ 12] [507901373547] +08:12:01 [ 41] [ 8] [03209001] +08:12:01 [ 42] [ 15] [APT ] +08:12:01 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +08:12:01 [ 49] [ 3] [418] +08:12:01 [ 52] [ 16] [154C3A46ECB3F302] +08:12:01 ============================================================================ +08:12:01 + + +waiting on router queue for slot.... +08:12:01 Sending to : <0> +08:12:01 ============================================================================ +08:12:02 ============================================================================ +08:12:02 Slot Id : <204> +08:12:02 Transaction Type : RESPONSE +08:12:02 Received From : +08:12:02 ============================================================================ +08:12:02 FNo. Len. Field Value +08:12:02 ============================================================================ +08:12:02 [ 1] [ 4] [0210] +08:12:02 [ 2] [ 16] [6213545000697551] +08:12:02 [ 3] [ 6] [010000] +08:12:02 [ 4] [ 12] [000020000000] +08:12:02 [ 7] [ 10] [0320080952] +08:12:02 [ 11] [ 6] [932114] +08:12:02 [ 12] [ 6] [080952] +08:12:02 [ 13] [ 4] [0320] +08:12:02 [ 15] [ 4] [0320] +08:12:02 [ 18] [ 4] [6011] +08:12:02 [ 19] [ 3] [418] +08:12:02 [ 32] [ 6] [668899] +08:12:02 [ 35] [ 32] [6213545000697551=491212019755860] +08:12:02 [ 37] [ 12] [507901373547] +08:12:02 [ 38] [ 6] [981682] +08:12:02 [ 39] [ 2] [00] +08:12:02 [ 41] [ 8] [03209001] +08:12:02 [ 49] [ 3] [418] +08:12:02 [ 54] [ 40] [0001418C0000528587770002418C000052858777] +08:12:02 ============================================================================ +08:12:02 Sending to : +08:12:02 ============================================================================ +08:12:02 + + +waiting on router queue for slot.... +08:12:03 ============================================================================ +08:12:03 Slot Id : <135> +08:12:03 Transaction Type : REQUEST +08:12:03 Received From : +08:12:03 ============================================================================ +08:12:03 FNo. Len. Field Value +08:12:03 ============================================================================ +08:12:03 [ 1] [ 4] [0200] +08:12:03 [ 2] [ 16] [6213541000473317] +08:12:03 [ 3] [ 6] [010000] +08:12:03 [ 4] [ 12] [000100000000] +08:12:03 [ 7] [ 10] [0320080955] +08:12:03 [ 11] [ 6] [932117] +08:12:03 [ 12] [ 6] [080955] +08:12:03 [ 13] [ 4] [0320] +08:12:03 [ 15] [ 4] [0320] +08:12:03 [ 18] [ 4] [6011] +08:12:03 [ 19] [ 3] [418] +08:12:03 [ 22] [ 3] [021] +08:12:03 [ 25] [ 2] [01] +08:12:03 [ 28] [ 9] [D00002000] +08:12:03 [ 32] [ 6] [668899] +08:12:03 [ 35] [ 32] [6213541000473317=491212017331171] +08:12:03 [ 37] [ 12] [507900844812] +08:12:03 [ 41] [ 8] [03015003] +08:12:03 [ 42] [ 15] [APT ] +08:12:03 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:12:03 [ 49] [ 3] [418] +08:12:03 [ 52] [ 16] [A4AA7DCD034875C8] +08:12:03 ============================================================================ +08:12:03 + + +waiting on router queue for slot.... +08:12:03 Sending to : +08:12:03 ============================================================================ +08:12:03 Sending to : +08:12:03 ============================================================================ +08:12:03 ============================================================================ +08:12:03 Slot Id : <135> +08:12:03 Transaction Type : REQUEST +08:12:03 Received From : +08:12:03 ============================================================================ +08:12:03 FNo. Len. Field Value +08:12:03 ============================================================================ +08:12:03 [ 1] [ 4] [0200] +08:12:03 [ 2] [ 16] [6213541000473317] +08:12:03 [ 3] [ 6] [010000] +08:12:03 [ 4] [ 12] [000100000000] +08:12:03 [ 7] [ 10] [0320080955] +08:12:03 [ 11] [ 6] [932117] +08:12:03 [ 12] [ 6] [080955] +08:12:03 [ 13] [ 4] [0320] +08:12:03 [ 15] [ 4] [0320] +08:12:03 [ 18] [ 4] [6011] +08:12:03 [ 19] [ 3] [418] +08:12:03 [ 22] [ 3] [021] +08:12:03 [ 25] [ 2] [01] +08:12:03 [ 28] [ 9] [D00002000] +08:12:03 [ 32] [ 6] [668899] +08:12:03 [ 35] [ 32] [6213541000473317=491212017331171] +08:12:03 [ 37] [ 12] [507900844812] +08:12:03 [ 41] [ 8] [03015003] +08:12:03 [ 42] [ 15] [APT ] +08:12:03 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:12:03 [ 49] [ 3] [418] +08:12:03 [ 52] [ 16] [A4AA7DCD034875C8] +08:12:03 ============================================================================ +08:12:03 + + +waiting on router queue for slot.... +08:12:03 Sending to : +08:12:03 ============================================================================ +08:12:03 ============================================================================ +08:12:03 Slot Id : <135> +08:12:03 Transaction Type : REQUEST +08:12:03 Received From : +08:12:03 ============================================================================ +08:12:03 FNo. Len. Field Value +08:12:03 ============================================================================ +08:12:03 [ 1] [ 4] [0200] +08:12:03 [ 2] [ 16] [6213541000473317] +08:12:03 [ 3] [ 6] [010000] +08:12:03 [ 4] [ 12] [000100000000] +08:12:03 [ 7] [ 10] [0320080955] +08:12:03 [ 11] [ 6] [932117] +08:12:03 [ 12] [ 6] [080955] +08:12:03 [ 13] [ 4] [0320] +08:12:03 [ 15] [ 4] [0320] +08:12:03 [ 18] [ 4] [6011] +08:12:03 [ 19] [ 3] [418] +08:12:03 [ 22] [ 3] [021] +08:12:03 [ 25] [ 2] [01] +08:12:03 [ 28] [ 9] [D00002000] +08:12:03 [ 32] [ 6] [668899] +08:12:03 [ 35] [ 32] [6213541000473317=491212017331171] +08:12:03 [ 37] [ 12] [507900844812] +08:12:03 [ 41] [ 8] [03015003] +08:12:03 [ 42] [ 15] [APT ] +08:12:03 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:12:03 [ 49] [ 3] [418] +08:12:03 [ 52] [ 16] [11C2AF8F961CA130] +08:12:03 ============================================================================ +08:12:03 + + +waiting on router queue for slot.... +08:12:03 Sending to : <0> +08:12:03 ============================================================================ +08:12:03 ============================================================================ +08:12:03 Slot Id : <204> +08:12:03 Transaction Type : RESPONSE +08:12:03 Received From : +08:12:03 ============================================================================ +08:12:03 FNo. Len. Field Value +08:12:03 ============================================================================ +08:12:03 [ 1] [ 4] [0210] +08:12:03 [ 2] [ 16] [6213545000697551] +08:12:03 [ 3] [ 6] [010000] +08:12:03 [ 4] [ 12] [000020000000] +08:12:03 [ 7] [ 10] [0320080952] +08:12:03 [ 11] [ 6] [932114] +08:12:03 [ 12] [ 6] [080952] +08:12:03 [ 13] [ 4] [0320] +08:12:03 [ 15] [ 4] [0320] +08:12:03 [ 18] [ 4] [6011] +08:12:03 [ 19] [ 3] [418] +08:12:03 [ 32] [ 6] [668899] +08:12:03 [ 35] [ 32] [6213545000697551=491212019755860] +08:12:03 [ 37] [ 12] [507901373547] +08:12:03 [ 38] [ 6] [981682] +08:12:03 [ 39] [ 2] [00] +08:12:03 [ 41] [ 8] [03209001] +08:12:03 [ 49] [ 3] [418] +08:12:03 [ 54] [ 40] [0001418C0000528587770002418C000052858777] +08:12:03 ============================================================================ +08:12:03 Calculate Source COMM Id = 4 +08:12:03 ============================================================================ +08:12:03 + + +waiting on router queue for slot.... +08:12:04 ============================================================================ +08:12:04 Slot Id : <135> +08:12:04 Transaction Type : RESPONSE +08:12:04 Received From : +08:12:04 ============================================================================ +08:12:04 FNo. Len. Field Value +08:12:04 ============================================================================ +08:12:04 [ 1] [ 4] [0210] +08:12:04 [ 2] [ 16] [6213541000473317] +08:12:04 [ 3] [ 6] [010000] +08:12:04 [ 4] [ 12] [000100000000] +08:12:04 [ 7] [ 10] [0320080955] +08:12:04 [ 11] [ 6] [932117] +08:12:04 [ 12] [ 6] [080955] +08:12:04 [ 13] [ 4] [0320] +08:12:04 [ 15] [ 4] [0320] +08:12:04 [ 18] [ 4] [6011] +08:12:04 [ 19] [ 3] [418] +08:12:04 [ 32] [ 6] [668899] +08:12:04 [ 35] [ 32] [6213541000473317=491212017331171] +08:12:04 [ 37] [ 12] [507900844812] +08:12:04 [ 38] [ 6] [100231] +08:12:04 [ 39] [ 2] [00] +08:12:04 [ 41] [ 8] [03015003] +08:12:04 [ 49] [ 3] [418] +08:12:04 [ 54] [ 40] [0001418C0000526052290002418C000052605229] +08:12:04 ============================================================================ +08:12:04 Sending to : +08:12:04 ============================================================================ +08:12:04 + + +waiting on router queue for slot.... +08:12:06 ============================================================================ +08:12:06 Slot Id : <135> +08:12:06 Transaction Type : RESPONSE +08:12:06 Received From : +08:12:06 ============================================================================ +08:12:06 FNo. Len. Field Value +08:12:06 ============================================================================ +08:12:06 [ 1] [ 4] [0210] +08:12:06 [ 2] [ 16] [6213541000473317] +08:12:06 [ 3] [ 6] [010000] +08:12:06 [ 4] [ 12] [000100000000] +08:12:06 [ 7] [ 10] [0320080955] +08:12:06 [ 11] [ 6] [932117] +08:12:06 [ 12] [ 6] [080955] +08:12:06 [ 13] [ 4] [0320] +08:12:06 [ 15] [ 4] [0320] +08:12:06 [ 18] [ 4] [6011] +08:12:06 [ 19] [ 3] [418] +08:12:06 [ 32] [ 6] [668899] +08:12:06 [ 35] [ 32] [6213541000473317=491212017331171] +08:12:06 [ 37] [ 12] [507900844812] +08:12:06 [ 38] [ 6] [100231] +08:12:06 [ 39] [ 2] [00] +08:12:06 [ 41] [ 8] [03015003] +08:12:06 [ 49] [ 3] [418] +08:12:06 [ 54] [ 40] [0001418C0000526052290002418C000052605229] +08:12:06 ============================================================================ +08:12:06 Calculate Source COMM Id = 4 +08:12:06 ============================================================================ +08:12:06 + + +waiting on router queue for slot.... +08:12:09 ============================================================================ +08:12:09 Slot Id : <152> +08:12:09 Transaction Type : REQUEST +08:12:09 Received From : +08:12:09 ============================================================================ +08:12:09 FNo. Len. Field Value +08:12:09 ============================================================================ +08:12:09 [ 1] [ 4] [0800] +08:12:09 [ 7] [ 10] [0320011118] +08:12:09 [ 11] [ 6] [155344] +08:12:09 [ 70] [ 3] [301] +08:12:09 ============================================================================ +08:12:09 + + +waiting on router queue for slot.... +08:12:09 Sending to : +08:12:09 ============================================================================ +08:12:09 ============================================================================ +08:12:09 Slot Id : <152> +08:12:09 Transaction Type : RESPONSE +08:12:09 Received From : +08:12:09 ============================================================================ +08:12:09 FNo. Len. Field Value +08:12:09 ============================================================================ +08:12:09 [ 1] [ 4] [0810] +08:12:09 [ 7] [ 10] [0320011118] +08:12:09 [ 11] [ 6] [155344] +08:12:09 [ 39] [ 2] [00] +08:12:09 [ 70] [ 3] [301] +08:12:09 ============================================================================ +08:12:09 Calculate Source COMM Id = 2 +08:12:09 ============================================================================ +08:12:09 + + +waiting on router queue for slot.... +08:12:25 ============================================================================ +08:12:25 Slot Id : <196> +08:12:25 Transaction Type : REQUEST +08:12:25 Received From : +08:12:25 ============================================================================ +08:12:25 FNo. Len. Field Value +08:12:25 ============================================================================ +08:12:25 [ 1] [ 4] [0800] +08:12:25 [ 7] [ 10] [0320011133] +08:12:25 [ 11] [ 6] [155345] +08:12:25 [ 70] [ 3] [301] +08:12:25 ============================================================================ +08:12:25 + + +waiting on router queue for slot.... +08:12:25 Sending to : +08:12:25 ============================================================================ +08:12:25 ============================================================================ +08:12:25 Slot Id : <196> +08:12:25 Transaction Type : RESPONSE +08:12:25 Received From : +08:12:25 ============================================================================ +08:12:25 FNo. Len. Field Value +08:12:25 ============================================================================ +08:12:25 [ 1] [ 4] [0810] +08:12:25 [ 7] [ 10] [0320011133] +08:12:25 [ 11] [ 6] [155345] +08:12:25 [ 39] [ 2] [00] +08:12:25 [ 70] [ 3] [301] +08:12:25 ============================================================================ +08:12:25 Calculate Source COMM Id = 2 +08:12:25 ============================================================================ +08:12:25 + + +waiting on router queue for slot.... +08:12:28 ============================================================================ +08:12:28 Slot Id : <191> +08:12:28 Transaction Type : REQUEST +08:12:28 Received From : +08:12:28 ============================================================================ +08:12:28 FNo. Len. Field Value +08:12:28 ============================================================================ +08:12:28 [ 1] [ 4] [0800] +08:12:28 [ 2] [ 5] [02531] +08:12:28 [ 3] [ 6] [579088] +08:12:28 [ 7] [ 10] [0320011228] +08:12:28 [ 11] [ 6] [806888] +08:12:28 [ 15] [ 10] [0320011228] +08:12:28 [ 37] [ 11] [57908806888] +08:12:28 [ 70] [ 3] [001] +08:12:28 ============================================================================ +08:12:28 + + +waiting on router queue for slot.... +08:12:28 ============================================================================ +08:12:28 Slot Id : <191> +08:12:28 Transaction Type : RESPONSE +08:12:28 Received From : +08:12:28 ============================================================================ +08:12:28 FNo. Len. Field Value +08:12:28 ============================================================================ +08:12:28 [ 1] [ 4] [0810] +08:12:28 [ 7] [ 10] [0320011228] +08:12:28 [ 11] [ 6] [806888] +08:12:28 [ 15] [ 4] [0320] +08:12:28 [ 37] [ 12] [57908806888] +08:12:28 [ 39] [ 2] [00] +08:12:28 [ 70] [ 3] [001] +08:12:28 ============================================================================ +08:12:28 Sending to : +08:12:28 ============================================================================ +08:12:28 + + +waiting on router queue for slot.... +08:12:30 ============================================================================ +08:12:30 Slot Id : <155> +08:12:30 Transaction Type : REQUEST +08:12:30 Received From : +08:12:30 ============================================================================ +08:12:30 FNo. Len. Field Value +08:12:30 ============================================================================ +08:12:30 [ 1] [ 4] [0200] +08:12:30 [ 2] [ 16] [6213544001517850] +08:12:30 [ 3] [ 6] [302000] +08:12:30 [ 4] [ 12] [000000000000] +08:12:30 [ 7] [ 10] [0320081021] +08:12:30 [ 11] [ 6] [932133] +08:12:30 [ 12] [ 6] [081021] +08:12:30 [ 13] [ 4] [0320] +08:12:30 [ 15] [ 4] [0320] +08:12:30 [ 18] [ 4] [6011] +08:12:30 [ 19] [ 3] [418] +08:12:30 [ 22] [ 3] [021] +08:12:30 [ 25] [ 2] [01] +08:12:30 [ 28] [ 9] [D00000000] +08:12:30 [ 32] [ 6] [668899] +08:12:30 [ 35] [ 32] [6213544001517850=491212011785433] +08:12:30 [ 37] [ 12] [507902415377] +08:12:30 [ 41] [ 8] [03001011] +08:12:30 [ 42] [ 15] [APT ] +08:12:30 [ 43] [ 40] [ NONGNEOW UNIT NONGNEOW ] +08:12:30 [ 49] [ 3] [418] +08:12:30 [ 52] [ 16] [5562704051A2ADE9] +08:12:30 ============================================================================ +08:12:30 + + +waiting on router queue for slot.... +08:12:30 Sending to : +08:12:30 ============================================================================ +08:12:30 Sending to : +08:12:30 ============================================================================ +08:12:30 ============================================================================ +08:12:30 Slot Id : <155> +08:12:30 Transaction Type : REQUEST +08:12:30 Received From : +08:12:30 ============================================================================ +08:12:30 FNo. Len. Field Value +08:12:30 ============================================================================ +08:12:30 [ 1] [ 4] [0200] +08:12:30 [ 2] [ 16] [6213544001517850] +08:12:30 [ 3] [ 6] [302000] +08:12:30 [ 4] [ 12] [000000000000] +08:12:30 [ 7] [ 10] [0320081021] +08:12:30 [ 11] [ 6] [932133] +08:12:30 [ 12] [ 6] [081021] +08:12:30 [ 13] [ 4] [0320] +08:12:30 [ 15] [ 4] [0320] +08:12:30 [ 18] [ 4] [6011] +08:12:30 [ 19] [ 3] [418] +08:12:30 [ 22] [ 3] [021] +08:12:30 [ 25] [ 2] [01] +08:12:30 [ 28] [ 9] [D00000000] +08:12:30 [ 32] [ 6] [668899] +08:12:30 [ 35] [ 32] [6213544001517850=491212011785433] +08:12:30 [ 37] [ 12] [507902415377] +08:12:30 [ 41] [ 8] [03001011] +08:12:30 [ 42] [ 15] [APT ] +08:12:30 [ 43] [ 40] [ NONGNEOW UNIT NONGNEOW ] +08:12:30 [ 49] [ 3] [418] +08:12:30 [ 52] [ 16] [5562704051A2ADE9] +08:12:30 ============================================================================ +08:12:30 + + +waiting on router queue for slot.... +08:12:30 Sending to : +08:12:30 ============================================================================ +08:12:30 ============================================================================ +08:12:30 Slot Id : <155> +08:12:30 Transaction Type : REQUEST +08:12:30 Received From : +08:12:30 ============================================================================ +08:12:30 FNo. Len. Field Value +08:12:30 ============================================================================ +08:12:30 [ 1] [ 4] [0200] +08:12:30 [ 2] [ 16] [6213544001517850] +08:12:30 [ 3] [ 6] [302000] +08:12:30 [ 4] [ 12] [000000000000] +08:12:30 [ 7] [ 10] [0320081021] +08:12:30 [ 11] [ 6] [932133] +08:12:30 [ 12] [ 6] [081021] +08:12:30 [ 13] [ 4] [0320] +08:12:30 [ 15] [ 4] [0320] +08:12:30 [ 18] [ 4] [6011] +08:12:30 [ 19] [ 3] [418] +08:12:30 [ 22] [ 3] [021] +08:12:30 [ 25] [ 2] [01] +08:12:30 [ 28] [ 9] [D00000000] +08:12:30 [ 32] [ 6] [668899] +08:12:30 [ 35] [ 32] [6213544001517850=491212011785433] +08:12:30 [ 37] [ 12] [507902415377] +08:12:30 [ 41] [ 8] [03001011] +08:12:30 [ 42] [ 15] [APT ] +08:12:30 [ 43] [ 40] [ NONGNEOW UNIT NONGNEOW ] +08:12:30 [ 49] [ 3] [418] +08:12:30 [ 52] [ 16] [D8332FAE59C63531] +08:12:30 ============================================================================ +08:12:30 + + +waiting on router queue for slot.... +08:12:30 Sending to : <0> +08:12:30 ============================================================================ +08:12:30 ============================================================================ +08:12:30 Slot Id : <155> +08:12:30 Transaction Type : RESPONSE +08:12:30 Received From : +08:12:30 ============================================================================ +08:12:30 FNo. Len. Field Value +08:12:30 ============================================================================ +08:12:30 [ 1] [ 4] [0210] +08:12:30 [ 2] [ 16] [6213544001517850] +08:12:30 [ 3] [ 6] [302000] +08:12:30 [ 4] [ 12] [000000000000] +08:12:30 [ 7] [ 10] [0320081021] +08:12:30 [ 11] [ 6] [932133] +08:12:30 [ 12] [ 6] [081021] +08:12:30 [ 13] [ 4] [0320] +08:12:30 [ 15] [ 4] [0320] +08:12:30 [ 18] [ 4] [6011] +08:12:30 [ 19] [ 3] [418] +08:12:30 [ 32] [ 6] [668899] +08:12:30 [ 35] [ 32] [6213544001517850=491212011785433] +08:12:30 [ 37] [ 12] [507902415377] +08:12:30 [ 38] [ 6] [774862] +08:12:30 [ 39] [ 2] [00] +08:12:30 [ 41] [ 8] [03001011] +08:12:30 [ 49] [ 3] [418] +08:12:30 [ 54] [ 40] [2001418C0000145448092002418C000014544809] +08:12:30 ============================================================================ +08:12:30 Sending to : +08:12:30 ============================================================================ +08:12:30 + + +waiting on router queue for slot.... +08:12:32 ============================================================================ +08:12:32 Slot Id : <155> +08:12:32 Transaction Type : RESPONSE +08:12:32 Received From : +08:12:32 ============================================================================ +08:12:32 FNo. Len. Field Value +08:12:32 ============================================================================ +08:12:32 [ 1] [ 4] [0210] +08:12:32 [ 2] [ 16] [6213544001517850] +08:12:32 [ 3] [ 6] [302000] +08:12:32 [ 4] [ 12] [000000000000] +08:12:32 [ 7] [ 10] [0320081021] +08:12:32 [ 11] [ 6] [932133] +08:12:32 [ 12] [ 6] [081021] +08:12:32 [ 13] [ 4] [0320] +08:12:32 [ 15] [ 4] [0320] +08:12:32 [ 18] [ 4] [6011] +08:12:32 [ 19] [ 3] [418] +08:12:32 [ 32] [ 6] [668899] +08:12:32 [ 35] [ 32] [6213544001517850=491212011785433] +08:12:32 [ 37] [ 12] [507902415377] +08:12:32 [ 38] [ 6] [774862] +08:12:32 [ 39] [ 2] [00] +08:12:32 [ 41] [ 8] [03001011] +08:12:32 [ 49] [ 3] [418] +08:12:32 [ 54] [ 40] [2001418C0000145448092002418C000014544809] +08:12:32 ============================================================================ +08:12:32 Calculate Source COMM Id = 4 +08:12:32 ============================================================================ +08:12:32 + + +waiting on router queue for slot.... +08:12:36 ============================================================================ +08:12:36 Slot Id : <181> +08:12:36 Transaction Type : REQUEST +08:12:36 Received From : +08:12:36 ============================================================================ +08:12:36 FNo. Len. Field Value +08:12:36 ============================================================================ +08:12:36 [ 1] [ 4] [0800] +08:12:36 [ 7] [ 10] [0320011144] +08:12:36 [ 11] [ 6] [155346] +08:12:36 [ 70] [ 3] [301] +08:12:36 ============================================================================ +08:12:36 + + +waiting on router queue for slot.... +08:12:36 Sending to : +08:12:36 ============================================================================ +08:12:36 ============================================================================ +08:12:36 Slot Id : <181> +08:12:36 Transaction Type : RESPONSE +08:12:36 Received From : +08:12:36 ============================================================================ +08:12:36 FNo. Len. Field Value +08:12:36 ============================================================================ +08:12:36 [ 1] [ 4] [0810] +08:12:36 [ 7] [ 10] [0320011144] +08:12:36 [ 11] [ 6] [155346] +08:12:36 [ 39] [ 2] [00] +08:12:36 [ 70] [ 3] [301] +08:12:36 ============================================================================ +08:12:36 Calculate Source COMM Id = 2 +08:12:36 ============================================================================ +08:12:36 + + +waiting on router queue for slot.... +08:12:43 ============================================================================ +08:12:43 Slot Id : <190> +08:12:43 Transaction Type : REQUEST +08:12:43 Received From : +08:12:43 ============================================================================ +08:12:43 FNo. Len. Field Value +08:12:43 ============================================================================ +08:12:43 [ 1] [ 4] [0200] +08:12:43 [ 2] [ 16] [6688990040086033] +08:12:43 [ 3] [ 6] [011000] +08:12:43 [ 4] [ 12] [000005000000] +08:12:43 [ 7] [ 10] [0320081239] +08:12:43 [ 11] [ 6] [680206] +08:12:43 [ 12] [ 6] [081239] +08:12:43 [ 13] [ 4] [0320] +08:12:43 [ 15] [ 4] [0320] +08:12:43 [ 18] [ 4] [6011] +08:12:43 [ 22] [ 3] [900] +08:12:43 [ 25] [ 2] [02] +08:12:43 [ 28] [ 9] [D00002000] +08:12:43 [ 32] [ 6] [621354] +08:12:43 [ 35] [ 37] [6688990040086033=98011261602789800000] +08:12:43 [ 37] [ 12] [507903908248] +08:12:43 [ 41] [ 8] [01010600] +08:12:43 [ 42] [ 15] [NATIVE ] +08:12:43 [ 43] [ 40] [Maria Hospital Phonhong LAO] +08:12:43 [ 49] [ 3] [418] +08:12:43 [ 52] [ 16] [24CE6F1E565C2EF7] +08:12:43 ============================================================================ +08:12:43 + + +waiting on router queue for slot.... +08:12:43 Sending to : +08:12:43 ============================================================================ +08:12:43 Sending to : +08:12:43 ============================================================================ +08:12:43 ============================================================================ +08:12:43 Slot Id : <190> +08:12:43 Transaction Type : REQUEST +08:12:43 Received From : +08:12:43 ============================================================================ +08:12:43 FNo. Len. Field Value +08:12:43 ============================================================================ +08:12:43 [ 1] [ 4] [0200] +08:12:43 [ 2] [ 16] [6688990040086033] +08:12:43 [ 3] [ 6] [011000] +08:12:43 [ 4] [ 12] [000005000000] +08:12:43 [ 7] [ 10] [0320081239] +08:12:43 [ 11] [ 6] [680206] +08:12:43 [ 12] [ 6] [081239] +08:12:43 [ 13] [ 4] [0320] +08:12:43 [ 15] [ 4] [0320] +08:12:43 [ 18] [ 4] [6011] +08:12:43 [ 22] [ 3] [900] +08:12:43 [ 25] [ 2] [02] +08:12:43 [ 28] [ 9] [D00002000] +08:12:43 [ 32] [ 6] [621354] +08:12:43 [ 35] [ 37] [6688990040086033=98011261602789800000] +08:12:43 [ 37] [ 12] [507903908248] +08:12:43 [ 41] [ 8] [01010600] +08:12:43 [ 42] [ 15] [NATIVE ] +08:12:43 [ 43] [ 40] [Maria Hospital Phonhong LAO] +08:12:43 [ 49] [ 3] [418] +08:12:43 [ 52] [ 16] [24CE6F1E565C2EF7] +08:12:43 ============================================================================ +08:12:43 + + +waiting on router queue for slot.... +08:12:43 Sending to : +08:12:43 ============================================================================ +08:12:43 ============================================================================ +08:12:43 Slot Id : <190> +08:12:43 Transaction Type : REQUEST +08:12:43 Received From : +08:12:43 ============================================================================ +08:12:43 FNo. Len. Field Value +08:12:43 ============================================================================ +08:12:43 [ 1] [ 4] [0200] +08:12:43 [ 2] [ 16] [6688990040086033] +08:12:43 [ 3] [ 6] [011000] +08:12:43 [ 4] [ 12] [000005000000] +08:12:43 [ 7] [ 10] [0320081239] +08:12:43 [ 11] [ 6] [680206] +08:12:43 [ 12] [ 6] [081239] +08:12:43 [ 13] [ 4] [0320] +08:12:43 [ 15] [ 4] [0320] +08:12:43 [ 18] [ 4] [6011] +08:12:43 [ 22] [ 3] [900] +08:12:43 [ 25] [ 2] [02] +08:12:43 [ 28] [ 9] [D00002000] +08:12:43 [ 32] [ 6] [621354] +08:12:43 [ 35] [ 37] [6688990040086033=98011261602789800000] +08:12:43 [ 37] [ 12] [507903908248] +08:12:43 [ 41] [ 8] [01010600] +08:12:43 [ 42] [ 15] [NATIVE ] +08:12:43 [ 43] [ 40] [Maria Hospital Phonhong LAO] +08:12:43 [ 49] [ 3] [418] +08:12:43 [ 52] [ 16] [94D033539C6C9280] +08:12:43 ============================================================================ +08:12:43 + + +waiting on router queue for slot.... +08:12:43 Sending to : <4> +08:12:43 ============================================================================ +08:12:44 ============================================================================ +08:12:44 Slot Id : <198> +08:12:44 Transaction Type : REQUEST +08:12:44 Received From : +08:12:44 ============================================================================ +08:12:44 FNo. Len. Field Value +08:12:44 ============================================================================ +08:12:44 [ 1] [ 4] [0200] +08:12:44 [ 2] [ 16] [1808930300018793] +08:12:44 [ 3] [ 6] [011000] +08:12:44 [ 4] [ 12] [000010000000] +08:12:44 [ 7] [ 10] [0320081240] +08:12:44 [ 11] [ 6] [680209] +08:12:44 [ 12] [ 6] [081240] +08:12:44 [ 13] [ 4] [0320] +08:12:44 [ 15] [ 4] [0320] +08:12:44 [ 18] [ 4] [6011] +08:12:44 [ 22] [ 3] [900] +08:12:44 [ 25] [ 2] [02] +08:12:44 [ 28] [ 9] [D00002000] +08:12:44 [ 32] [ 6] [621354] +08:12:44 [ 35] [ 27] [1808930300018793=1803500401] +08:12:44 [ 37] [ 12] [507903028254] +08:12:44 [ 41] [ 8] [12002500] +08:12:44 [ 42] [ 15] [NATIVE ] +08:12:44 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:12:44 [ 49] [ 3] [418] +08:12:44 [ 52] [ 16] [F73FC271F9743D05] +08:12:44 ============================================================================ +08:12:44 + + +waiting on router queue for slot.... +08:12:44 Sending to : +08:12:44 ============================================================================ +08:12:44 Sending to : +08:12:44 ============================================================================ +08:12:44 ============================================================================ +08:12:44 Slot Id : <198> +08:12:44 Transaction Type : REQUEST +08:12:44 Received From : +08:12:44 ============================================================================ +08:12:44 FNo. Len. Field Value +08:12:44 ============================================================================ +08:12:44 [ 1] [ 4] [0200] +08:12:44 [ 2] [ 16] [1808930300018793] +08:12:44 [ 3] [ 6] [011000] +08:12:44 [ 4] [ 12] [000010000000] +08:12:44 [ 7] [ 10] [0320081240] +08:12:44 [ 11] [ 6] [680209] +08:12:44 [ 12] [ 6] [081240] +08:12:44 [ 13] [ 4] [0320] +08:12:44 [ 15] [ 4] [0320] +08:12:44 [ 18] [ 4] [6011] +08:12:44 [ 22] [ 3] [900] +08:12:44 [ 25] [ 2] [02] +08:12:44 [ 28] [ 9] [D00002000] +08:12:44 [ 32] [ 6] [621354] +08:12:44 [ 35] [ 27] [1808930300018793=1803500401] +08:12:44 [ 37] [ 12] [507903028254] +08:12:44 [ 41] [ 8] [12002500] +08:12:44 [ 42] [ 15] [NATIVE ] +08:12:44 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:12:44 [ 49] [ 3] [418] +08:12:44 [ 52] [ 16] [F73FC271F9743D05] +08:12:44 ============================================================================ +08:12:44 + + +waiting on router queue for slot.... +08:12:44 Sending to : +08:12:44 ============================================================================ +08:12:44 ============================================================================ +08:12:44 Slot Id : <198> +08:12:44 Transaction Type : REQUEST +08:12:44 Received From : +08:12:44 ============================================================================ +08:12:44 FNo. Len. Field Value +08:12:44 ============================================================================ +08:12:44 [ 1] [ 4] [0200] +08:12:44 [ 2] [ 16] [1808930300018793] +08:12:44 [ 3] [ 6] [011000] +08:12:44 [ 4] [ 12] [000010000000] +08:12:44 [ 7] [ 10] [0320081240] +08:12:44 [ 11] [ 6] [680209] +08:12:44 [ 12] [ 6] [081240] +08:12:44 [ 13] [ 4] [0320] +08:12:44 [ 15] [ 4] [0320] +08:12:44 [ 18] [ 4] [6011] +08:12:44 [ 22] [ 3] [900] +08:12:44 [ 25] [ 2] [02] +08:12:44 [ 28] [ 9] [D00002000] +08:12:44 [ 32] [ 6] [621354] +08:12:44 [ 35] [ 27] [1808930300018793=1803500401] +08:12:44 [ 37] [ 12] [507903028254] +08:12:44 [ 41] [ 8] [12002500] +08:12:44 [ 42] [ 15] [NATIVE ] +08:12:44 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:12:44 [ 49] [ 3] [418] +08:12:44 [ 52] [ 16] [046447BB3AB000B8] +08:12:44 ============================================================================ +08:12:44 + + +waiting on router queue for slot.... +08:12:44 Sending to : <2> +08:12:44 ============================================================================ +08:12:45 ============================================================================ +08:12:45 Slot Id : <190> +08:12:45 Transaction Type : RESPONSE +08:12:45 Received From : +08:12:45 ============================================================================ +08:12:45 FNo. Len. Field Value +08:12:45 ============================================================================ +08:12:45 [ 1] [ 4] [0210] +08:12:45 [ 2] [ 16] [6688990040086033] +08:12:45 [ 3] [ 6] [011000] +08:12:45 [ 4] [ 12] [000005000000] +08:12:45 [ 11] [ 6] [680206] +08:12:45 [ 12] [ 6] [081239] +08:12:45 [ 15] [ 4] [0320] +08:12:45 [ 18] [ 4] [6011] +08:12:45 [ 32] [ 6] [621354] +08:12:45 [ 35] [ 37] [6688990040086033=98011261602789800000] +08:12:45 [ 37] [ 12] [507903908248] +08:12:45 [ 38] [ 6] [430456] +08:12:45 [ 39] [ 2] [00] +08:12:45 [ 41] [ 8] [01010600] +08:12:45 [ 49] [ 3] [418] +08:12:45 [ 54] [ 20] [1002418C000050855889] +08:12:45 ============================================================================ +08:12:45 Sending to : +08:12:45 ============================================================================ +08:12:45 + + +waiting on router queue for slot.... +08:12:46 ============================================================================ +08:12:46 Slot Id : <190> +08:12:46 Transaction Type : RESPONSE +08:12:46 Received From : +08:12:46 ============================================================================ +08:12:46 FNo. Len. Field Value +08:12:46 ============================================================================ +08:12:46 [ 1] [ 4] [0210] +08:12:46 [ 2] [ 16] [6688990040086033] +08:12:46 [ 3] [ 6] [011000] +08:12:46 [ 4] [ 12] [000005000000] +08:12:46 [ 11] [ 6] [680206] +08:12:46 [ 12] [ 6] [081239] +08:12:46 [ 15] [ 4] [0320] +08:12:46 [ 18] [ 4] [6011] +08:12:46 [ 32] [ 6] [621354] +08:12:46 [ 35] [ 37] [6688990040086033=98011261602789800000] +08:12:46 [ 37] [ 12] [507903908248] +08:12:46 [ 38] [ 6] [430456] +08:12:46 [ 39] [ 2] [00] +08:12:46 [ 41] [ 8] [01010600] +08:12:46 [ 49] [ 3] [418] +08:12:46 [ 54] [ 20] [1002418C000050855889] +08:12:46 ============================================================================ +08:12:46 Calculate Source COMM Id = 0 +08:12:46 ============================================================================ +08:12:46 + + +waiting on router queue for slot.... +08:12:51 ============================================================================ +08:12:51 Slot Id : <198> +08:12:51 Transaction Type : RESPONSE +08:12:51 Received From : +08:12:51 ============================================================================ +08:12:51 FNo. Len. Field Value +08:12:51 ============================================================================ +08:12:51 [ 1] [ 4] [0210] +08:12:51 [ 2] [ 16] [1808930300018793] +08:12:51 [ 3] [ 6] [011000] +08:12:51 [ 4] [ 12] [000010000000] +08:12:51 [ 6] [ 12] [000010000000] +08:12:51 [ 7] [ 10] [0320081240] +08:12:51 [ 11] [ 6] [680209] +08:12:51 [ 12] [ 6] [081240] +08:12:51 [ 13] [ 4] [0320] +08:12:51 [ 18] [ 4] [6011] +08:12:51 [ 19] [ 3] [418] +08:12:51 [ 22] [ 3] [021] +08:12:51 [ 32] [ 6] [621354] +08:12:51 [ 35] [ 27] [1808930300018793=1803500401] +08:12:51 [ 37] [ 12] [507903028254] +08:12:51 [ 38] [ 6] [680209] +08:12:51 [ 39] [ 2] [00] +08:12:51 [ 41] [ 8] [12002500] +08:12:51 [ 49] [ 3] [418] +08:12:51 [ 52] [ 16] [046447BB3AB000B8] +08:12:51 [ 54] [ 20] [1001418C000972106800] +08:12:51 ============================================================================ +08:12:51 Sending to : +08:12:51 ============================================================================ +08:12:51 + + +waiting on router queue for slot.... +08:12:52 ============================================================================ +08:12:52 Slot Id : <201> +08:12:52 Transaction Type : REQUEST +08:12:52 Received From : +08:12:52 ============================================================================ +08:12:52 FNo. Len. Field Value +08:12:52 ============================================================================ +08:12:52 [ 1] [ 4] [0200] +08:12:52 [ 2] [ 16] [6213544001517850] +08:12:52 [ 3] [ 6] [302000] +08:12:52 [ 4] [ 12] [000000000000] +08:12:52 [ 7] [ 10] [0320081043] +08:12:52 [ 11] [ 6] [932149] +08:12:52 [ 12] [ 6] [081043] +08:12:52 [ 13] [ 4] [0320] +08:12:52 [ 15] [ 4] [0320] +08:12:52 [ 18] [ 4] [6011] +08:12:52 [ 19] [ 3] [418] +08:12:52 [ 22] [ 3] [021] +08:12:52 [ 25] [ 2] [01] +08:12:52 [ 28] [ 9] [D00000000] +08:12:52 [ 32] [ 6] [668899] +08:12:52 [ 35] [ 32] [6213544001517850=491212011785433] +08:12:52 [ 37] [ 12] [507902415378] +08:12:52 [ 41] [ 8] [03001011] +08:12:52 [ 42] [ 15] [APT ] +08:12:52 [ 43] [ 40] [ NONGNEOW UNIT NONGNEOW ] +08:12:52 [ 49] [ 3] [418] +08:12:52 [ 52] [ 16] [5562704051A2ADE9] +08:12:52 ============================================================================ +08:12:52 + + +waiting on router queue for slot.... +08:12:52 Sending to : +08:12:52 ============================================================================ +08:12:52 Sending to : +08:12:52 ============================================================================ +08:12:52 ============================================================================ +08:12:52 Slot Id : <201> +08:12:52 Transaction Type : REQUEST +08:12:52 Received From : +08:12:52 ============================================================================ +08:12:52 FNo. Len. Field Value +08:12:52 ============================================================================ +08:12:52 [ 1] [ 4] [0200] +08:12:52 [ 2] [ 16] [6213544001517850] +08:12:52 [ 3] [ 6] [302000] +08:12:52 [ 4] [ 12] [000000000000] +08:12:52 [ 7] [ 10] [0320081043] +08:12:52 [ 11] [ 6] [932149] +08:12:52 [ 12] [ 6] [081043] +08:12:52 [ 13] [ 4] [0320] +08:12:52 [ 15] [ 4] [0320] +08:12:52 [ 18] [ 4] [6011] +08:12:52 [ 19] [ 3] [418] +08:12:52 [ 22] [ 3] [021] +08:12:52 [ 25] [ 2] [01] +08:12:52 [ 28] [ 9] [D00000000] +08:12:52 [ 32] [ 6] [668899] +08:12:52 [ 35] [ 32] [6213544001517850=491212011785433] +08:12:52 [ 37] [ 12] [507902415378] +08:12:52 [ 41] [ 8] [03001011] +08:12:52 [ 42] [ 15] [APT ] +08:12:52 [ 43] [ 40] [ NONGNEOW UNIT NONGNEOW ] +08:12:52 [ 49] [ 3] [418] +08:12:52 [ 52] [ 16] [5562704051A2ADE9] +08:12:52 ============================================================================ +08:12:52 + + +waiting on router queue for slot.... +08:12:52 Sending to : +08:12:52 ============================================================================ +08:12:52 ============================================================================ +08:12:52 Slot Id : <201> +08:12:52 Transaction Type : REQUEST +08:12:52 Received From : +08:12:52 ============================================================================ +08:12:52 FNo. Len. Field Value +08:12:52 ============================================================================ +08:12:52 [ 1] [ 4] [0200] +08:12:52 [ 2] [ 16] [6213544001517850] +08:12:52 [ 3] [ 6] [302000] +08:12:52 [ 4] [ 12] [000000000000] +08:12:52 [ 7] [ 10] [0320081043] +08:12:52 [ 11] [ 6] [932149] +08:12:52 [ 12] [ 6] [081043] +08:12:52 [ 13] [ 4] [0320] +08:12:52 [ 15] [ 4] [0320] +08:12:52 [ 18] [ 4] [6011] +08:12:52 [ 19] [ 3] [418] +08:12:52 [ 22] [ 3] [021] +08:12:52 [ 25] [ 2] [01] +08:12:52 [ 28] [ 9] [D00000000] +08:12:52 [ 32] [ 6] [668899] +08:12:52 [ 35] [ 32] [6213544001517850=491212011785433] +08:12:52 [ 37] [ 12] [507902415378] +08:12:52 [ 41] [ 8] [03001011] +08:12:52 [ 42] [ 15] [APT ] +08:12:52 [ 43] [ 40] [ NONGNEOW UNIT NONGNEOW ] +08:12:52 [ 49] [ 3] [418] +08:12:52 [ 52] [ 16] [D8332FAE59C63531] +08:12:52 ============================================================================ +08:12:52 + + +waiting on router queue for slot.... +08:12:52 Sending to : <0> +08:12:52 ============================================================================ +08:12:52 ============================================================================ +08:12:52 Slot Id : <198> +08:12:52 Transaction Type : RESPONSE +08:12:52 Received From : +08:12:52 ============================================================================ +08:12:52 FNo. Len. Field Value +08:12:52 ============================================================================ +08:12:52 [ 1] [ 4] [0210] +08:12:52 [ 2] [ 16] [1808930300018793] +08:12:52 [ 3] [ 6] [011000] +08:12:52 [ 4] [ 12] [000010000000] +08:12:52 [ 6] [ 12] [000010000000] +08:12:52 [ 7] [ 10] [0320081240] +08:12:52 [ 11] [ 6] [680209] +08:12:52 [ 12] [ 6] [081240] +08:12:52 [ 13] [ 4] [0320] +08:12:52 [ 18] [ 4] [6011] +08:12:52 [ 19] [ 3] [418] +08:12:52 [ 22] [ 3] [021] +08:12:52 [ 32] [ 6] [621354] +08:12:52 [ 35] [ 27] [1808930300018793=1803500401] +08:12:52 [ 37] [ 12] [507903028254] +08:12:52 [ 38] [ 6] [680209] +08:12:52 [ 39] [ 2] [00] +08:12:52 [ 41] [ 8] [12002500] +08:12:52 [ 49] [ 3] [418] +08:12:52 [ 52] [ 16] [046447BB3AB000B8] +08:12:52 [ 54] [ 20] [1001418C000972106800] +08:12:52 ============================================================================ +08:12:52 Calculate Source COMM Id = 0 +08:12:52 ============================================================================ +08:12:52 + + +waiting on router queue for slot.... +08:12:52 ============================================================================ +08:12:52 Slot Id : <201> +08:12:52 Transaction Type : RESPONSE +08:12:52 Received From : +08:12:52 ============================================================================ +08:12:52 FNo. Len. Field Value +08:12:52 ============================================================================ +08:12:52 [ 1] [ 4] [0210] +08:12:52 [ 2] [ 16] [6213544001517850] +08:12:52 [ 3] [ 6] [302000] +08:12:52 [ 4] [ 12] [000000000000] +08:12:52 [ 7] [ 10] [0320081043] +08:12:52 [ 11] [ 6] [932149] +08:12:52 [ 12] [ 6] [081043] +08:12:52 [ 13] [ 4] [0320] +08:12:52 [ 15] [ 4] [0320] +08:12:52 [ 18] [ 4] [6011] +08:12:52 [ 19] [ 3] [418] +08:12:52 [ 32] [ 6] [668899] +08:12:52 [ 35] [ 32] [6213544001517850=491212011785433] +08:12:52 [ 37] [ 12] [507902415378] +08:12:52 [ 38] [ 6] [781208] +08:12:52 [ 39] [ 2] [00] +08:12:52 [ 41] [ 8] [03001011] +08:12:52 [ 49] [ 3] [418] +08:12:52 [ 54] [ 40] [2001418C0000145448092002418C000014544809] +08:12:52 ============================================================================ +08:12:52 Sending to : +08:12:52 ============================================================================ +08:12:52 + + +waiting on router queue for slot.... +08:12:54 ============================================================================ +08:12:54 Slot Id : <201> +08:12:54 Transaction Type : RESPONSE +08:12:54 Received From : +08:12:54 ============================================================================ +08:12:54 FNo. Len. Field Value +08:12:54 ============================================================================ +08:12:54 [ 1] [ 4] [0210] +08:12:54 [ 2] [ 16] [6213544001517850] +08:12:54 [ 3] [ 6] [302000] +08:12:54 [ 4] [ 12] [000000000000] +08:12:54 [ 7] [ 10] [0320081043] +08:12:54 [ 11] [ 6] [932149] +08:12:54 [ 12] [ 6] [081043] +08:12:54 [ 13] [ 4] [0320] +08:12:54 [ 15] [ 4] [0320] +08:12:54 [ 18] [ 4] [6011] +08:12:54 [ 19] [ 3] [418] +08:12:54 [ 32] [ 6] [668899] +08:12:54 [ 35] [ 32] [6213544001517850=491212011785433] +08:12:54 [ 37] [ 12] [507902415378] +08:12:54 [ 38] [ 6] [781208] +08:12:54 [ 39] [ 2] [00] +08:12:54 [ 41] [ 8] [03001011] +08:12:54 [ 49] [ 3] [418] +08:12:54 [ 54] [ 40] [2001418C0000145448092002418C000014544809] +08:12:54 ============================================================================ +08:12:54 Calculate Source COMM Id = 4 +08:12:54 ============================================================================ +08:12:54 + + +waiting on router queue for slot.... +08:12:55 ============================================================================ +08:12:55 Slot Id : <194> +08:12:55 Transaction Type : REQUEST +08:12:55 Received From : +08:12:55 ============================================================================ +08:12:55 FNo. Len. Field Value +08:12:55 ============================================================================ +08:12:55 [ 1] [ 4] [0200] +08:12:55 [ 2] [ 16] [6688990108408301] +08:12:55 [ 3] [ 6] [301000] +08:12:55 [ 4] [ 12] [000000000000] +08:12:55 [ 7] [ 10] [0320081251] +08:12:55 [ 11] [ 6] [680254] +08:12:55 [ 12] [ 6] [081251] +08:12:55 [ 13] [ 4] [0320] +08:12:55 [ 15] [ 4] [0320] +08:12:55 [ 18] [ 4] [6011] +08:12:55 [ 22] [ 3] [900] +08:12:55 [ 25] [ 2] [02] +08:12:55 [ 28] [ 9] [D00000000] +08:12:55 [ 32] [ 6] [621354] +08:12:55 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:12:55 [ 37] [ 12] [507903226533] +08:12:55 [ 41] [ 8] [04003200] +08:12:55 [ 42] [ 15] [NATIVE ] +08:12:55 [ 43] [ 40] [DONKHONG Kong LAO] +08:12:55 [ 49] [ 3] [418] +08:12:55 [ 52] [ 16] [D4851EE20FD0A8AD] +08:12:55 ============================================================================ +08:12:55 + + +waiting on router queue for slot.... +08:12:55 Sending to : +08:12:55 ============================================================================ +08:12:55 Sending to : +08:12:55 ============================================================================ +08:12:55 ============================================================================ +08:12:55 Slot Id : <194> +08:12:55 Transaction Type : REQUEST +08:12:55 Received From : +08:12:55 ============================================================================ +08:12:55 FNo. Len. Field Value +08:12:55 ============================================================================ +08:12:55 [ 1] [ 4] [0200] +08:12:55 [ 2] [ 16] [6688990108408301] +08:12:55 [ 3] [ 6] [301000] +08:12:55 [ 4] [ 12] [000000000000] +08:12:55 [ 7] [ 10] [0320081251] +08:12:55 [ 11] [ 6] [680254] +08:12:55 [ 12] [ 6] [081251] +08:12:55 [ 13] [ 4] [0320] +08:12:55 [ 15] [ 4] [0320] +08:12:55 [ 18] [ 4] [6011] +08:12:55 [ 22] [ 3] [900] +08:12:55 [ 25] [ 2] [02] +08:12:55 [ 28] [ 9] [D00000000] +08:12:55 [ 32] [ 6] [621354] +08:12:55 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:12:55 [ 37] [ 12] [507903226533] +08:12:55 [ 41] [ 8] [04003200] +08:12:55 [ 42] [ 15] [NATIVE ] +08:12:55 [ 43] [ 40] [DONKHONG Kong LAO] +08:12:55 [ 49] [ 3] [418] +08:12:55 [ 52] [ 16] [D4851EE20FD0A8AD] +08:12:55 ============================================================================ +08:12:55 + + +waiting on router queue for slot.... +08:12:55 Sending to : +08:12:55 ============================================================================ +08:12:55 ============================================================================ +08:12:55 Slot Id : <194> +08:12:55 Transaction Type : REQUEST +08:12:55 Received From : +08:12:55 ============================================================================ +08:12:55 FNo. Len. Field Value +08:12:55 ============================================================================ +08:12:55 [ 1] [ 4] [0200] +08:12:55 [ 2] [ 16] [6688990108408301] +08:12:55 [ 3] [ 6] [301000] +08:12:55 [ 4] [ 12] [000000000000] +08:12:55 [ 7] [ 10] [0320081251] +08:12:55 [ 11] [ 6] [680254] +08:12:55 [ 12] [ 6] [081251] +08:12:55 [ 13] [ 4] [0320] +08:12:55 [ 15] [ 4] [0320] +08:12:55 [ 18] [ 4] [6011] +08:12:55 [ 22] [ 3] [900] +08:12:55 [ 25] [ 2] [02] +08:12:55 [ 28] [ 9] [D00000000] +08:12:55 [ 32] [ 6] [621354] +08:12:55 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:12:55 [ 37] [ 12] [507903226533] +08:12:55 [ 41] [ 8] [04003200] +08:12:55 [ 42] [ 15] [NATIVE ] +08:12:55 [ 43] [ 40] [DONKHONG Kong LAO] +08:12:55 [ 49] [ 3] [418] +08:12:55 [ 52] [ 16] [5D77FEE3FCAB5D64] +08:12:55 ============================================================================ +08:12:55 + + +waiting on router queue for slot.... +08:12:55 Sending to : <4> +08:12:55 ============================================================================ +08:12:57 ============================================================================ +08:12:57 Slot Id : <194> +08:12:57 Transaction Type : RESPONSE +08:12:57 Received From : +08:12:57 ============================================================================ +08:12:57 FNo. Len. Field Value +08:12:57 ============================================================================ +08:12:57 [ 1] [ 4] [0210] +08:12:57 [ 2] [ 16] [6688990108408301] +08:12:57 [ 3] [ 6] [301000] +08:12:57 [ 4] [ 12] [000000000000] +08:12:57 [ 11] [ 6] [680254] +08:12:57 [ 12] [ 6] [081251] +08:12:57 [ 15] [ 4] [0320] +08:12:57 [ 18] [ 4] [6011] +08:12:57 [ 32] [ 6] [621354] +08:12:57 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:12:57 [ 37] [ 12] [507903226533] +08:12:57 [ 38] [ 6] [114328] +08:12:57 [ 39] [ 2] [00] +08:12:57 [ 41] [ 8] [04003200] +08:12:57 [ 49] [ 3] [418] +08:12:57 [ 54] [ 20] [1002418C000590138358] +08:12:57 ============================================================================ +08:12:57 Sending to : +08:12:57 ============================================================================ +08:12:57 + + +waiting on router queue for slot.... +08:12:57 ============================================================================ +08:12:57 Slot Id : <214> +08:12:57 Transaction Type : REQUEST +08:12:57 Received From : +08:12:57 ============================================================================ +08:12:57 FNo. Len. Field Value +08:12:57 ============================================================================ +08:12:57 [ 1] [ 4] [0800] +08:12:57 [ 7] [ 10] [0320011206] +08:12:57 [ 11] [ 6] [155347] +08:12:57 [ 70] [ 3] [301] +08:12:57 ============================================================================ +08:12:57 + + +waiting on router queue for slot.... +08:12:57 Sending to : +08:12:57 ============================================================================ +08:12:57 ============================================================================ +08:12:57 Slot Id : <214> +08:12:57 Transaction Type : RESPONSE +08:12:57 Received From : +08:12:57 ============================================================================ +08:12:57 FNo. Len. Field Value +08:12:57 ============================================================================ +08:12:57 [ 1] [ 4] [0810] +08:12:57 [ 7] [ 10] [0320011206] +08:12:57 [ 11] [ 6] [155347] +08:12:57 [ 39] [ 2] [00] +08:12:57 [ 70] [ 3] [301] +08:12:57 ============================================================================ +08:12:57 Calculate Source COMM Id = 2 +08:12:57 ============================================================================ +08:12:57 + + +waiting on router queue for slot.... +08:12:59 ============================================================================ +08:12:59 Slot Id : <194> +08:12:59 Transaction Type : RESPONSE +08:12:59 Received From : +08:12:59 ============================================================================ +08:12:59 FNo. Len. Field Value +08:12:59 ============================================================================ +08:12:59 [ 1] [ 4] [0210] +08:12:59 [ 2] [ 16] [6688990108408301] +08:12:59 [ 3] [ 6] [301000] +08:12:59 [ 4] [ 12] [000000000000] +08:12:59 [ 11] [ 6] [680254] +08:12:59 [ 12] [ 6] [081251] +08:12:59 [ 15] [ 4] [0320] +08:12:59 [ 18] [ 4] [6011] +08:12:59 [ 32] [ 6] [621354] +08:12:59 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:12:59 [ 37] [ 12] [507903226533] +08:12:59 [ 38] [ 6] [114328] +08:12:59 [ 39] [ 2] [00] +08:12:59 [ 41] [ 8] [04003200] +08:12:59 [ 49] [ 3] [418] +08:12:59 [ 54] [ 20] [1002418C000590138358] +08:12:59 ============================================================================ +08:12:59 Calculate Source COMM Id = 0 +08:12:59 ============================================================================ +08:12:59 + + +waiting on router queue for slot.... +08:13:01 ============================================================================ +08:13:01 Slot Id : <165> +08:13:01 Transaction Type : REQUEST +08:13:01 Received From : +08:13:01 ============================================================================ +08:13:01 FNo. Len. Field Value +08:13:01 ============================================================================ +08:13:01 [ 1] [ 4] [0800] +08:13:01 [ 7] [ 10] [0320152449] +08:13:01 [ 11] [ 6] [082449] +08:13:01 [ 37] [ 12] [57908082449] +08:13:01 [ 70] [ 3] [301] +08:13:01 ============================================================================ +08:13:01 + + +waiting on router queue for slot.... +08:13:01 Sending to : +08:13:01 ============================================================================ +08:13:01 ============================================================================ +08:13:01 Slot Id : <165> +08:13:01 Transaction Type : RESPONSE +08:13:01 Received From : +08:13:01 ============================================================================ +08:13:01 FNo. Len. Field Value +08:13:01 ============================================================================ +08:13:01 [ 1] [ 4] [0810] +08:13:01 [ 7] [ 10] [0320152449] +08:13:01 [ 11] [ 6] [082449] +08:13:01 [ 37] [ 12] [579080824490] +08:13:01 [ 39] [ 2] [00] +08:13:01 [ 70] [ 3] [810] +08:13:01 ============================================================================ +08:13:01 Calculate Source COMM Id = 6 +08:13:01 ============================================================================ +08:13:01 + + +waiting on router queue for slot.... +08:13:05 ============================================================================ +08:13:05 Slot Id : <195> +08:13:05 Transaction Type : REQUEST +08:13:05 Received From : +08:13:05 ============================================================================ +08:13:05 FNo. Len. Field Value +08:13:05 ============================================================================ +08:13:05 [ 1] [ 4] [0200] +08:13:05 [ 2] [ 16] [6213541000473317] +08:13:05 [ 3] [ 6] [010000] +08:13:05 [ 4] [ 12] [000030000000] +08:13:05 [ 7] [ 10] [0320081056] +08:13:05 [ 11] [ 6] [932165] +08:13:05 [ 12] [ 6] [081056] +08:13:05 [ 13] [ 4] [0320] +08:13:05 [ 15] [ 4] [0320] +08:13:05 [ 18] [ 4] [6011] +08:13:05 [ 19] [ 3] [418] +08:13:05 [ 22] [ 3] [021] +08:13:05 [ 25] [ 2] [01] +08:13:05 [ 28] [ 9] [D00002000] +08:13:05 [ 32] [ 6] [668899] +08:13:05 [ 35] [ 32] [6213541000473317=491212017331171] +08:13:05 [ 37] [ 12] [507900844814] +08:13:05 [ 41] [ 8] [03015003] +08:13:05 [ 42] [ 15] [APT ] +08:13:05 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:13:05 [ 49] [ 3] [418] +08:13:05 [ 52] [ 16] [A4AA7DCD034875C8] +08:13:05 ============================================================================ +08:13:05 + + +waiting on router queue for slot.... +08:13:05 Sending to : +08:13:05 ============================================================================ +08:13:05 Sending to : +08:13:05 ============================================================================ +08:13:05 ============================================================================ +08:13:05 Slot Id : <195> +08:13:05 Transaction Type : REQUEST +08:13:05 Received From : +08:13:05 ============================================================================ +08:13:05 FNo. Len. Field Value +08:13:05 ============================================================================ +08:13:05 [ 1] [ 4] [0200] +08:13:05 [ 2] [ 16] [6213541000473317] +08:13:05 [ 3] [ 6] [010000] +08:13:05 [ 4] [ 12] [000030000000] +08:13:05 [ 7] [ 10] [0320081056] +08:13:05 [ 11] [ 6] [932165] +08:13:05 [ 12] [ 6] [081056] +08:13:05 [ 13] [ 4] [0320] +08:13:05 [ 15] [ 4] [0320] +08:13:05 [ 18] [ 4] [6011] +08:13:05 [ 19] [ 3] [418] +08:13:05 [ 22] [ 3] [021] +08:13:05 [ 25] [ 2] [01] +08:13:05 [ 28] [ 9] [D00002000] +08:13:05 [ 32] [ 6] [668899] +08:13:05 [ 35] [ 32] [6213541000473317=491212017331171] +08:13:05 [ 37] [ 12] [507900844814] +08:13:05 [ 41] [ 8] [03015003] +08:13:05 [ 42] [ 15] [APT ] +08:13:05 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:13:05 [ 49] [ 3] [418] +08:13:05 [ 52] [ 16] [A4AA7DCD034875C8] +08:13:05 ============================================================================ +08:13:05 + + +waiting on router queue for slot.... +08:13:05 Sending to : +08:13:05 ============================================================================ +08:13:05 ============================================================================ +08:13:05 Slot Id : <195> +08:13:05 Transaction Type : REQUEST +08:13:05 Received From : +08:13:05 ============================================================================ +08:13:05 FNo. Len. Field Value +08:13:05 ============================================================================ +08:13:05 [ 1] [ 4] [0200] +08:13:05 [ 2] [ 16] [6213541000473317] +08:13:05 [ 3] [ 6] [010000] +08:13:05 [ 4] [ 12] [000030000000] +08:13:05 [ 7] [ 10] [0320081056] +08:13:05 [ 11] [ 6] [932165] +08:13:05 [ 12] [ 6] [081056] +08:13:05 [ 13] [ 4] [0320] +08:13:05 [ 15] [ 4] [0320] +08:13:05 [ 18] [ 4] [6011] +08:13:05 [ 19] [ 3] [418] +08:13:05 [ 22] [ 3] [021] +08:13:05 [ 25] [ 2] [01] +08:13:05 [ 28] [ 9] [D00002000] +08:13:05 [ 32] [ 6] [668899] +08:13:05 [ 35] [ 32] [6213541000473317=491212017331171] +08:13:05 [ 37] [ 12] [507900844814] +08:13:05 [ 41] [ 8] [03015003] +08:13:05 [ 42] [ 15] [APT ] +08:13:05 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:13:05 [ 49] [ 3] [418] +08:13:05 [ 52] [ 16] [11C2AF8F961CA130] +08:13:05 ============================================================================ +08:13:05 + + +waiting on router queue for slot.... +08:13:05 Sending to : <0> +08:13:05 ============================================================================ +08:13:06 ============================================================================ +08:13:06 Slot Id : <195> +08:13:06 Transaction Type : RESPONSE +08:13:06 Received From : +08:13:06 ============================================================================ +08:13:06 FNo. Len. Field Value +08:13:06 ============================================================================ +08:13:06 [ 1] [ 4] [0210] +08:13:06 [ 2] [ 16] [6213541000473317] +08:13:06 [ 3] [ 6] [010000] +08:13:06 [ 4] [ 12] [000030000000] +08:13:06 [ 7] [ 10] [0320081056] +08:13:06 [ 11] [ 6] [932165] +08:13:06 [ 12] [ 6] [081056] +08:13:06 [ 13] [ 4] [0320] +08:13:06 [ 15] [ 4] [0320] +08:13:06 [ 18] [ 4] [6011] +08:13:06 [ 19] [ 3] [418] +08:13:06 [ 32] [ 6] [668899] +08:13:06 [ 35] [ 32] [6213541000473317=491212017331171] +08:13:06 [ 37] [ 12] [507900844814] +08:13:06 [ 38] [ 6] [044086] +08:13:06 [ 39] [ 2] [00] +08:13:06 [ 41] [ 8] [03015003] +08:13:06 [ 49] [ 3] [418] +08:13:06 [ 54] [ 40] [0001418C0000224052290002418C000022405229] +08:13:06 ============================================================================ +08:13:06 Sending to : +08:13:06 ============================================================================ +08:13:06 + + +waiting on router queue for slot.... +08:13:07 ============================================================================ +08:13:07 Slot Id : <195> +08:13:07 Transaction Type : RESPONSE +08:13:07 Received From : +08:13:07 ============================================================================ +08:13:07 FNo. Len. Field Value +08:13:07 ============================================================================ +08:13:07 [ 1] [ 4] [0210] +08:13:07 [ 2] [ 16] [6213541000473317] +08:13:07 [ 3] [ 6] [010000] +08:13:07 [ 4] [ 12] [000030000000] +08:13:07 [ 7] [ 10] [0320081056] +08:13:07 [ 11] [ 6] [932165] +08:13:07 [ 12] [ 6] [081056] +08:13:07 [ 13] [ 4] [0320] +08:13:07 [ 15] [ 4] [0320] +08:13:07 [ 18] [ 4] [6011] +08:13:07 [ 19] [ 3] [418] +08:13:07 [ 32] [ 6] [668899] +08:13:07 [ 35] [ 32] [6213541000473317=491212017331171] +08:13:07 [ 37] [ 12] [507900844814] +08:13:07 [ 38] [ 6] [044086] +08:13:07 [ 39] [ 2] [00] +08:13:07 [ 41] [ 8] [03015003] +08:13:07 [ 49] [ 3] [418] +08:13:07 [ 54] [ 40] [0001418C0000224052290002418C000022405229] +08:13:07 ============================================================================ +08:13:07 Calculate Source COMM Id = 4 +08:13:07 ============================================================================ +08:13:07 + + +waiting on router queue for slot.... +08:13:09 ============================================================================ +08:13:09 Slot Id : <184> +08:13:09 Transaction Type : REQUEST +08:13:09 Received From : +08:13:09 ============================================================================ +08:13:09 FNo. Len. Field Value +08:13:09 ============================================================================ +08:13:09 [ 1] [ 4] [0800] +08:13:09 [ 7] [ 10] [0320011217] +08:13:09 [ 11] [ 6] [155348] +08:13:09 [ 70] [ 3] [301] +08:13:09 ============================================================================ +08:13:09 + + +waiting on router queue for slot.... +08:13:09 Sending to : +08:13:09 ============================================================================ +08:13:09 ============================================================================ +08:13:09 Slot Id : <184> +08:13:09 Transaction Type : RESPONSE +08:13:09 Received From : +08:13:09 ============================================================================ +08:13:09 FNo. Len. Field Value +08:13:09 ============================================================================ +08:13:09 [ 1] [ 4] [0810] +08:13:09 [ 7] [ 10] [0320011217] +08:13:09 [ 11] [ 6] [155348] +08:13:09 [ 39] [ 2] [00] +08:13:09 [ 70] [ 3] [301] +08:13:09 ============================================================================ +08:13:09 Calculate Source COMM Id = 2 +08:13:09 ============================================================================ +08:13:09 + + +waiting on router queue for slot.... +08:13:19 ============================================================================ +08:13:19 Slot Id : <209> +08:13:19 Transaction Type : REQUEST +08:13:19 Received From : +08:13:19 ============================================================================ +08:13:19 FNo. Len. Field Value +08:13:19 ============================================================================ +08:13:19 [ 1] [ 4] [0200] +08:13:19 [ 2] [ 16] [6213544001109369] +08:13:19 [ 3] [ 6] [011000] +08:13:19 [ 4] [ 12] [000030000000] +08:13:19 [ 7] [ 10] [0320011227] +08:13:19 [ 11] [ 6] [267080] +08:13:19 [ 12] [ 6] [081227] +08:13:19 [ 13] [ 4] [0320] +08:13:19 [ 14] [ 4] [4912] +08:13:19 [ 15] [ 4] [0320] +08:13:19 [ 18] [ 4] [6011] +08:13:19 [ 19] [ 3] [418] +08:13:19 [ 22] [ 3] [021] +08:13:19 [ 25] [ 2] [01] +08:13:19 [ 28] [ 9] [D00002000] +08:13:19 [ 32] [ 6] [180893] +08:13:19 [ 35] [ 32] [6213544001109369=491212010936465] +08:13:19 [ 37] [ 12] [507901267080] +08:13:19 [ 41] [ 8] [0115LPBR] +08:13:19 [ 42] [ 15] [999999 ] +08:13:19 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +08:13:19 [ 49] [ 3] [418] +08:13:19 [ 52] [ 16] [CEC397566ED66408] +08:13:19 ============================================================================ +08:13:19 + + +waiting on router queue for slot.... +08:13:19 Sending to : +08:13:19 ============================================================================ +08:13:19 Sending to : +08:13:19 ============================================================================ +08:13:20 ============================================================================ +08:13:20 Slot Id : <209> +08:13:20 Transaction Type : REQUEST +08:13:20 Received From : +08:13:20 ============================================================================ +08:13:20 FNo. Len. Field Value +08:13:20 ============================================================================ +08:13:20 [ 1] [ 4] [0200] +08:13:20 [ 2] [ 16] [6213544001109369] +08:13:20 [ 3] [ 6] [011000] +08:13:20 [ 4] [ 12] [000030000000] +08:13:20 [ 7] [ 10] [0320011227] +08:13:20 [ 11] [ 6] [267080] +08:13:20 [ 12] [ 6] [081227] +08:13:20 [ 13] [ 4] [0320] +08:13:20 [ 14] [ 4] [4912] +08:13:20 [ 15] [ 4] [0320] +08:13:20 [ 18] [ 4] [6011] +08:13:20 [ 19] [ 3] [418] +08:13:20 [ 22] [ 3] [021] +08:13:20 [ 25] [ 2] [01] +08:13:20 [ 28] [ 9] [D00002000] +08:13:20 [ 32] [ 6] [180893] +08:13:20 [ 35] [ 32] [6213544001109369=491212010936465] +08:13:20 [ 37] [ 12] [507901267080] +08:13:20 [ 41] [ 8] [0115LPBR] +08:13:20 [ 42] [ 15] [999999 ] +08:13:20 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +08:13:20 [ 49] [ 3] [418] +08:13:20 [ 52] [ 16] [CEC397566ED66408] +08:13:20 ============================================================================ +08:13:20 + + +waiting on router queue for slot.... +08:13:20 Sending to : +08:13:20 ============================================================================ +08:13:20 ============================================================================ +08:13:20 Slot Id : <209> +08:13:20 Transaction Type : REQUEST +08:13:20 Received From : +08:13:20 ============================================================================ +08:13:20 FNo. Len. Field Value +08:13:20 ============================================================================ +08:13:20 [ 1] [ 4] [0200] +08:13:20 [ 2] [ 16] [6213544001109369] +08:13:20 [ 3] [ 6] [011000] +08:13:20 [ 4] [ 12] [000030000000] +08:13:20 [ 7] [ 10] [0320011227] +08:13:20 [ 11] [ 6] [267080] +08:13:20 [ 12] [ 6] [081227] +08:13:20 [ 13] [ 4] [0320] +08:13:20 [ 14] [ 4] [4912] +08:13:20 [ 15] [ 4] [0320] +08:13:20 [ 18] [ 4] [6011] +08:13:20 [ 19] [ 3] [418] +08:13:20 [ 22] [ 3] [021] +08:13:20 [ 25] [ 2] [01] +08:13:20 [ 28] [ 9] [D00002000] +08:13:20 [ 32] [ 6] [180893] +08:13:20 [ 35] [ 32] [6213544001109369=491212010936465] +08:13:20 [ 37] [ 12] [507901267080] +08:13:20 [ 41] [ 8] [0115LPBR] +08:13:20 [ 42] [ 15] [999999 ] +08:13:20 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +08:13:20 [ 49] [ 3] [418] +08:13:20 [ 52] [ 16] [206B2F3864B48FBC] +08:13:20 ============================================================================ +08:13:20 + + +waiting on router queue for slot.... +08:13:20 Sending to : <0> +08:13:20 ============================================================================ +08:13:20 ============================================================================ +08:13:20 Slot Id : <209> +08:13:20 Transaction Type : RESPONSE +08:13:20 Received From : +08:13:20 ============================================================================ +08:13:20 FNo. Len. Field Value +08:13:20 ============================================================================ +08:13:20 [ 1] [ 4] [0210] +08:13:20 [ 2] [ 16] [6213544001109369] +08:13:20 [ 3] [ 6] [011000] +08:13:20 [ 4] [ 12] [000030000000] +08:13:20 [ 7] [ 10] [0320011227] +08:13:20 [ 11] [ 6] [267080] +08:13:20 [ 12] [ 6] [081227] +08:13:20 [ 13] [ 4] [0320] +08:13:20 [ 15] [ 4] [0320] +08:13:20 [ 18] [ 4] [6011] +08:13:20 [ 19] [ 3] [418] +08:13:20 [ 32] [ 6] [180893] +08:13:20 [ 35] [ 32] [6213544001109369=491212010936465] +08:13:20 [ 37] [ 12] [507901267080] +08:13:20 [ 38] [ 6] [563833] +08:13:20 [ 39] [ 2] [00] +08:13:20 [ 41] [ 8] [0115LPBR] +08:13:20 [ 49] [ 3] [418] +08:13:20 [ 54] [ 40] [1001418C0000071674181002418C000007167418] +08:13:20 ============================================================================ +08:13:20 Sending to : +08:13:20 ============================================================================ +08:13:20 + + +waiting on router queue for slot.... +08:13:22 ============================================================================ +08:13:22 Slot Id : <209> +08:13:22 Transaction Type : RESPONSE +08:13:22 Received From : +08:13:22 ============================================================================ +08:13:22 FNo. Len. Field Value +08:13:22 ============================================================================ +08:13:22 [ 1] [ 4] [0210] +08:13:22 [ 2] [ 16] [6213544001109369] +08:13:22 [ 3] [ 6] [011000] +08:13:22 [ 4] [ 12] [000030000000] +08:13:22 [ 7] [ 10] [0320011227] +08:13:22 [ 11] [ 6] [267080] +08:13:22 [ 12] [ 6] [081227] +08:13:22 [ 13] [ 4] [0320] +08:13:22 [ 15] [ 4] [0320] +08:13:22 [ 18] [ 4] [6011] +08:13:22 [ 19] [ 3] [418] +08:13:22 [ 32] [ 6] [180893] +08:13:22 [ 35] [ 32] [6213544001109369=491212010936465] +08:13:22 [ 37] [ 12] [507901267080] +08:13:22 [ 38] [ 6] [563833] +08:13:22 [ 39] [ 2] [00] +08:13:22 [ 41] [ 8] [0115LPBR] +08:13:22 [ 49] [ 3] [418] +08:13:22 [ 54] [ 40] [1001418C0000071674181002418C000007167418] +08:13:22 ============================================================================ +08:13:22 Calculate Source COMM Id = 2 +08:13:22 ============================================================================ +08:13:22 + + +waiting on router queue for slot.... +08:13:30 ============================================================================ +08:13:30 Slot Id : <178> +08:13:30 Transaction Type : REQUEST +08:13:30 Received From : +08:13:30 ============================================================================ +08:13:30 FNo. Len. Field Value +08:13:30 ============================================================================ +08:13:30 [ 1] [ 4] [0800] +08:13:30 [ 2] [ 5] [02531] +08:13:30 [ 3] [ 6] [579088] +08:13:30 [ 7] [ 10] [0320011330] +08:13:30 [ 11] [ 6] [806889] +08:13:30 [ 15] [ 10] [0320011330] +08:13:30 [ 37] [ 11] [57908806889] +08:13:30 [ 70] [ 3] [001] +08:13:30 ============================================================================ +08:13:30 + + +waiting on router queue for slot.... +08:13:30 ============================================================================ +08:13:30 Slot Id : <178> +08:13:30 Transaction Type : RESPONSE +08:13:30 Received From : +08:13:30 ============================================================================ +08:13:30 FNo. Len. Field Value +08:13:30 ============================================================================ +08:13:30 [ 1] [ 4] [0810] +08:13:30 [ 7] [ 10] [0320011330] +08:13:30 [ 11] [ 6] [806889] +08:13:30 [ 15] [ 4] [0320] +08:13:30 [ 37] [ 12] [57908806889] +08:13:30 [ 39] [ 2] [00] +08:13:30 [ 70] [ 3] [001] +08:13:30 ============================================================================ +08:13:30 Sending to : +08:13:30 ============================================================================ +08:13:30 + + +waiting on router queue for slot.... +08:13:32 ============================================================================ +08:13:32 Slot Id : <213> +08:13:32 Transaction Type : REQUEST +08:13:32 Received From : +08:13:32 ============================================================================ +08:13:32 FNo. Len. Field Value +08:13:32 ============================================================================ +08:13:32 [ 1] [ 4] [0200] +08:13:32 [ 2] [ 16] [6213545001074388] +08:13:32 [ 3] [ 6] [012000] +08:13:32 [ 4] [ 12] [000015000000] +08:13:32 [ 7] [ 10] [0320011239] +08:13:32 [ 11] [ 6] [267083] +08:13:32 [ 12] [ 6] [081239] +08:13:32 [ 13] [ 4] [0320] +08:13:32 [ 14] [ 4] [4912] +08:13:32 [ 15] [ 4] [0320] +08:13:32 [ 18] [ 4] [6011] +08:13:32 [ 19] [ 3] [418] +08:13:32 [ 22] [ 3] [021] +08:13:32 [ 25] [ 2] [01] +08:13:32 [ 28] [ 9] [D00002000] +08:13:32 [ 32] [ 6] [180893] +08:13:32 [ 35] [ 32] [6213545001074388=491212017438139] +08:13:32 [ 37] [ 12] [507901267083] +08:13:32 [ 41] [ 8] [0368KMMX] +08:13:32 [ 42] [ 15] [999999 ] +08:13:32 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +08:13:32 [ 49] [ 3] [418] +08:13:32 [ 52] [ 16] [E98FB2B3A36D9B60] +08:13:32 ============================================================================ +08:13:32 + + +waiting on router queue for slot.... +08:13:32 Sending to : +08:13:32 ============================================================================ +08:13:32 Sending to : +08:13:32 ============================================================================ +08:13:32 ============================================================================ +08:13:32 Slot Id : <213> +08:13:32 Transaction Type : REQUEST +08:13:32 Received From : +08:13:32 ============================================================================ +08:13:32 FNo. Len. Field Value +08:13:32 ============================================================================ +08:13:32 [ 1] [ 4] [0200] +08:13:32 [ 2] [ 16] [6213545001074388] +08:13:32 [ 3] [ 6] [012000] +08:13:32 [ 4] [ 12] [000015000000] +08:13:32 [ 7] [ 10] [0320011239] +08:13:32 [ 11] [ 6] [267083] +08:13:32 [ 12] [ 6] [081239] +08:13:32 [ 13] [ 4] [0320] +08:13:32 [ 14] [ 4] [4912] +08:13:32 [ 15] [ 4] [0320] +08:13:32 [ 18] [ 4] [6011] +08:13:32 [ 19] [ 3] [418] +08:13:32 [ 22] [ 3] [021] +08:13:32 [ 25] [ 2] [01] +08:13:32 [ 28] [ 9] [D00002000] +08:13:32 [ 32] [ 6] [180893] +08:13:32 [ 35] [ 32] [6213545001074388=491212017438139] +08:13:32 [ 37] [ 12] [507901267083] +08:13:32 [ 41] [ 8] [0368KMMX] +08:13:32 [ 42] [ 15] [999999 ] +08:13:32 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +08:13:32 [ 49] [ 3] [418] +08:13:32 [ 52] [ 16] [E98FB2B3A36D9B60] +08:13:32 ============================================================================ +08:13:32 + + +waiting on router queue for slot.... +08:13:32 Sending to : +08:13:32 ============================================================================ +08:13:32 ============================================================================ +08:13:32 Slot Id : <213> +08:13:32 Transaction Type : REQUEST +08:13:32 Received From : +08:13:32 ============================================================================ +08:13:32 FNo. Len. Field Value +08:13:32 ============================================================================ +08:13:32 [ 1] [ 4] [0200] +08:13:32 [ 2] [ 16] [6213545001074388] +08:13:32 [ 3] [ 6] [012000] +08:13:32 [ 4] [ 12] [000015000000] +08:13:32 [ 7] [ 10] [0320011239] +08:13:32 [ 11] [ 6] [267083] +08:13:32 [ 12] [ 6] [081239] +08:13:32 [ 13] [ 4] [0320] +08:13:32 [ 14] [ 4] [4912] +08:13:32 [ 15] [ 4] [0320] +08:13:32 [ 18] [ 4] [6011] +08:13:32 [ 19] [ 3] [418] +08:13:32 [ 22] [ 3] [021] +08:13:32 [ 25] [ 2] [01] +08:13:32 [ 28] [ 9] [D00002000] +08:13:32 [ 32] [ 6] [180893] +08:13:32 [ 35] [ 32] [6213545001074388=491212017438139] +08:13:32 [ 37] [ 12] [507901267083] +08:13:32 [ 41] [ 8] [0368KMMX] +08:13:32 [ 42] [ 15] [999999 ] +08:13:32 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +08:13:32 [ 49] [ 3] [418] +08:13:32 [ 52] [ 16] [D21B1BE3EB659B6F] +08:13:32 ============================================================================ +08:13:32 + + +waiting on router queue for slot.... +08:13:32 Sending to : <0> +08:13:32 ============================================================================ +08:13:33 ============================================================================ +08:13:33 Slot Id : <213> +08:13:33 Transaction Type : RESPONSE +08:13:33 Received From : +08:13:33 ============================================================================ +08:13:33 FNo. Len. Field Value +08:13:33 ============================================================================ +08:13:33 [ 1] [ 4] [0210] +08:13:33 [ 2] [ 16] [6213545001074388] +08:13:33 [ 3] [ 6] [012000] +08:13:33 [ 4] [ 12] [000015000000] +08:13:33 [ 7] [ 10] [0320011239] +08:13:33 [ 11] [ 6] [267083] +08:13:33 [ 12] [ 6] [081239] +08:13:33 [ 13] [ 4] [0320] +08:13:33 [ 15] [ 4] [0320] +08:13:33 [ 18] [ 4] [6011] +08:13:33 [ 19] [ 3] [418] +08:13:33 [ 32] [ 6] [180893] +08:13:33 [ 35] [ 32] [6213545001074388=491212017438139] +08:13:33 [ 37] [ 12] [507901267083] +08:13:33 [ 38] [ 6] [007865] +08:13:33 [ 39] [ 2] [00] +08:13:33 [ 41] [ 8] [0368KMMX] +08:13:33 [ 49] [ 3] [418] +08:13:33 [ 54] [ 40] [2001418C0000216019642002418C000021601964] +08:13:33 ============================================================================ +08:13:33 Sending to : +08:13:33 ============================================================================ +08:13:33 + + +waiting on router queue for slot.... +08:13:34 ============================================================================ +08:13:34 Slot Id : <213> +08:13:34 Transaction Type : RESPONSE +08:13:34 Received From : +08:13:34 ============================================================================ +08:13:34 FNo. Len. Field Value +08:13:34 ============================================================================ +08:13:34 [ 1] [ 4] [0210] +08:13:34 [ 2] [ 16] [6213545001074388] +08:13:34 [ 3] [ 6] [012000] +08:13:34 [ 4] [ 12] [000015000000] +08:13:34 [ 7] [ 10] [0320011239] +08:13:34 [ 11] [ 6] [267083] +08:13:34 [ 12] [ 6] [081239] +08:13:34 [ 13] [ 4] [0320] +08:13:34 [ 15] [ 4] [0320] +08:13:34 [ 18] [ 4] [6011] +08:13:34 [ 19] [ 3] [418] +08:13:34 [ 32] [ 6] [180893] +08:13:34 [ 35] [ 32] [6213545001074388=491212017438139] +08:13:34 [ 37] [ 12] [507901267083] +08:13:34 [ 38] [ 6] [007865] +08:13:34 [ 39] [ 2] [00] +08:13:34 [ 41] [ 8] [0368KMMX] +08:13:34 [ 49] [ 3] [418] +08:13:34 [ 54] [ 40] [2001418C0000216019642002418C000021601964] +08:13:34 ============================================================================ +08:13:34 Calculate Source COMM Id = 2 +08:13:34 ============================================================================ +08:13:34 + + +waiting on router queue for slot.... +08:13:35 ============================================================================ +08:13:35 Slot Id : <208> +08:13:35 Transaction Type : REQUEST +08:13:35 Received From : +08:13:35 ============================================================================ +08:13:35 FNo. Len. Field Value +08:13:35 ============================================================================ +08:13:35 [ 1] [ 4] [0800] +08:13:35 [ 7] [ 10] [0320011244] +08:13:35 [ 11] [ 6] [155349] +08:13:35 [ 70] [ 3] [301] +08:13:35 ============================================================================ +08:13:35 + + +waiting on router queue for slot.... +08:13:35 Sending to : +08:13:35 ============================================================================ +08:13:35 ============================================================================ +08:13:35 Slot Id : <208> +08:13:35 Transaction Type : RESPONSE +08:13:35 Received From : +08:13:35 ============================================================================ +08:13:35 FNo. Len. Field Value +08:13:35 ============================================================================ +08:13:35 [ 1] [ 4] [0810] +08:13:35 [ 7] [ 10] [0320011244] +08:13:35 [ 11] [ 6] [155349] +08:13:35 [ 39] [ 2] [00] +08:13:35 [ 70] [ 3] [301] +08:13:35 ============================================================================ +08:13:35 Calculate Source COMM Id = 2 +08:13:35 ============================================================================ +08:13:35 + + +waiting on router queue for slot.... +08:13:45 ============================================================================ +08:13:45 Slot Id : <206> +08:13:45 Transaction Type : REQUEST +08:13:45 Received From : +08:13:45 ============================================================================ +08:13:45 FNo. Len. Field Value +08:13:45 ============================================================================ +08:13:45 [ 1] [ 4] [0200] +08:13:45 [ 2] [ 16] [6688990108408301] +08:13:45 [ 3] [ 6] [011000] +08:13:45 [ 4] [ 12] [000100000000] +08:13:45 [ 7] [ 10] [0320081342] +08:13:45 [ 11] [ 6] [680490] +08:13:45 [ 12] [ 6] [081342] +08:13:45 [ 13] [ 4] [0320] +08:13:45 [ 15] [ 4] [0320] +08:13:45 [ 18] [ 4] [6011] +08:13:45 [ 22] [ 3] [900] +08:13:45 [ 25] [ 2] [02] +08:13:45 [ 28] [ 9] [D00002000] +08:13:45 [ 32] [ 6] [621354] +08:13:45 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:13:45 [ 37] [ 12] [507903226535] +08:13:45 [ 41] [ 8] [04003200] +08:13:45 [ 42] [ 15] [NATIVE ] +08:13:45 [ 43] [ 40] [DONKHONG Kong LAO] +08:13:45 [ 49] [ 3] [418] +08:13:45 [ 52] [ 16] [D4851EE20FD0A8AD] +08:13:45 ============================================================================ +08:13:45 + + +waiting on router queue for slot.... +08:13:45 Sending to : +08:13:45 ============================================================================ +08:13:45 Sending to : +08:13:45 ============================================================================ +08:13:46 ============================================================================ +08:13:46 Slot Id : <206> +08:13:46 Transaction Type : REQUEST +08:13:46 Received From : +08:13:46 ============================================================================ +08:13:46 FNo. Len. Field Value +08:13:46 ============================================================================ +08:13:46 [ 1] [ 4] [0200] +08:13:46 [ 2] [ 16] [6688990108408301] +08:13:46 [ 3] [ 6] [011000] +08:13:46 [ 4] [ 12] [000100000000] +08:13:46 [ 7] [ 10] [0320081342] +08:13:46 [ 11] [ 6] [680490] +08:13:46 [ 12] [ 6] [081342] +08:13:46 [ 13] [ 4] [0320] +08:13:46 [ 15] [ 4] [0320] +08:13:46 [ 18] [ 4] [6011] +08:13:46 [ 22] [ 3] [900] +08:13:46 [ 25] [ 2] [02] +08:13:46 [ 28] [ 9] [D00002000] +08:13:46 [ 32] [ 6] [621354] +08:13:46 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:13:46 [ 37] [ 12] [507903226535] +08:13:46 [ 41] [ 8] [04003200] +08:13:46 [ 42] [ 15] [NATIVE ] +08:13:46 [ 43] [ 40] [DONKHONG Kong LAO] +08:13:46 [ 49] [ 3] [418] +08:13:46 [ 52] [ 16] [D4851EE20FD0A8AD] +08:13:46 ============================================================================ +08:13:46 + + +waiting on router queue for slot.... +08:13:46 Sending to : +08:13:46 ============================================================================ +08:13:46 ============================================================================ +08:13:46 Slot Id : <206> +08:13:46 Transaction Type : REQUEST +08:13:46 Received From : +08:13:46 ============================================================================ +08:13:46 FNo. Len. Field Value +08:13:46 ============================================================================ +08:13:46 [ 1] [ 4] [0200] +08:13:46 [ 2] [ 16] [6688990108408301] +08:13:46 [ 3] [ 6] [011000] +08:13:46 [ 4] [ 12] [000100000000] +08:13:46 [ 7] [ 10] [0320081342] +08:13:46 [ 11] [ 6] [680490] +08:13:46 [ 12] [ 6] [081342] +08:13:46 [ 13] [ 4] [0320] +08:13:46 [ 15] [ 4] [0320] +08:13:46 [ 18] [ 4] [6011] +08:13:46 [ 22] [ 3] [900] +08:13:46 [ 25] [ 2] [02] +08:13:46 [ 28] [ 9] [D00002000] +08:13:46 [ 32] [ 6] [621354] +08:13:46 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:13:46 [ 37] [ 12] [507903226535] +08:13:46 [ 41] [ 8] [04003200] +08:13:46 [ 42] [ 15] [NATIVE ] +08:13:46 [ 43] [ 40] [DONKHONG Kong LAO] +08:13:46 [ 49] [ 3] [418] +08:13:46 [ 52] [ 16] [5D77FEE3FCAB5D64] +08:13:46 ============================================================================ +08:13:46 + + +waiting on router queue for slot.... +08:13:46 Sending to : <4> +08:13:46 ============================================================================ +08:13:46 ============================================================================ +08:13:46 Slot Id : <193> +08:13:46 Transaction Type : REQUEST +08:13:46 Received From : +08:13:46 ============================================================================ +08:13:46 FNo. Len. Field Value +08:13:46 ============================================================================ +08:13:46 [ 1] [ 4] [0800] +08:13:46 [ 7] [ 10] [0320011254] +08:13:46 [ 11] [ 6] [155350] +08:13:46 [ 70] [ 3] [301] +08:13:46 ============================================================================ +08:13:46 + + +waiting on router queue for slot.... +08:13:46 Sending to : +08:13:46 ============================================================================ +08:13:46 ============================================================================ +08:13:46 Slot Id : <193> +08:13:46 Transaction Type : RESPONSE +08:13:46 Received From : +08:13:46 ============================================================================ +08:13:46 FNo. Len. Field Value +08:13:46 ============================================================================ +08:13:46 [ 1] [ 4] [0810] +08:13:46 [ 7] [ 10] [0320011254] +08:13:46 [ 11] [ 6] [155350] +08:13:46 [ 39] [ 2] [00] +08:13:46 [ 70] [ 3] [301] +08:13:46 ============================================================================ +08:13:46 Calculate Source COMM Id = 2 +08:13:46 ============================================================================ +08:13:46 + + +waiting on router queue for slot.... +08:13:47 ============================================================================ +08:13:47 Slot Id : <206> +08:13:47 Transaction Type : RESPONSE +08:13:47 Received From : +08:13:47 ============================================================================ +08:13:47 FNo. Len. Field Value +08:13:47 ============================================================================ +08:13:47 [ 1] [ 4] [0210] +08:13:47 [ 2] [ 16] [6688990108408301] +08:13:47 [ 3] [ 6] [011000] +08:13:47 [ 4] [ 12] [000100000000] +08:13:47 [ 11] [ 6] [680490] +08:13:47 [ 12] [ 6] [081342] +08:13:47 [ 15] [ 4] [0320] +08:13:47 [ 18] [ 4] [6011] +08:13:47 [ 32] [ 6] [621354] +08:13:47 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:13:47 [ 37] [ 12] [507903226535] +08:13:47 [ 38] [ 6] [591547] +08:13:47 [ 39] [ 2] [00] +08:13:47 [ 41] [ 8] [04003200] +08:13:47 [ 49] [ 3] [418] +08:13:47 [ 54] [ 20] [1002418C000489938358] +08:13:47 ============================================================================ +08:13:47 Sending to : +08:13:47 ============================================================================ +08:13:47 + + +waiting on router queue for slot.... +08:13:48 ============================================================================ +08:13:48 Slot Id : <206> +08:13:48 Transaction Type : RESPONSE +08:13:48 Received From : +08:13:48 ============================================================================ +08:13:48 FNo. Len. Field Value +08:13:48 ============================================================================ +08:13:48 [ 1] [ 4] [0210] +08:13:48 [ 2] [ 16] [6688990108408301] +08:13:48 [ 3] [ 6] [011000] +08:13:48 [ 4] [ 12] [000100000000] +08:13:48 [ 11] [ 6] [680490] +08:13:48 [ 12] [ 6] [081342] +08:13:48 [ 15] [ 4] [0320] +08:13:48 [ 18] [ 4] [6011] +08:13:48 [ 32] [ 6] [621354] +08:13:48 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:13:48 [ 37] [ 12] [507903226535] +08:13:48 [ 38] [ 6] [591547] +08:13:48 [ 39] [ 2] [00] +08:13:48 [ 41] [ 8] [04003200] +08:13:48 [ 49] [ 3] [418] +08:13:48 [ 54] [ 20] [1002418C000489938358] +08:13:48 ============================================================================ +08:13:48 Calculate Source COMM Id = 0 +08:13:48 ============================================================================ +08:13:48 + + +waiting on router queue for slot.... +08:14:02 ============================================================================ +08:14:02 Slot Id : <221> +08:14:02 Transaction Type : REQUEST +08:14:02 Received From : +08:14:02 ============================================================================ +08:14:02 FNo. Len. Field Value +08:14:02 ============================================================================ +08:14:02 [ 1] [ 4] [0800] +08:14:02 [ 7] [ 10] [0320011310] +08:14:02 [ 11] [ 6] [155351] +08:14:02 [ 70] [ 3] [301] +08:14:02 ============================================================================ +08:14:02 + + +waiting on router queue for slot.... +08:14:02 Sending to : +08:14:02 ============================================================================ +08:14:02 ============================================================================ +08:14:02 Slot Id : <221> +08:14:02 Transaction Type : RESPONSE +08:14:02 Received From : +08:14:02 ============================================================================ +08:14:02 FNo. Len. Field Value +08:14:02 ============================================================================ +08:14:02 [ 1] [ 4] [0810] +08:14:02 [ 7] [ 10] [0320011310] +08:14:02 [ 11] [ 6] [155351] +08:14:02 [ 39] [ 2] [00] +08:14:02 [ 70] [ 3] [301] +08:14:02 ============================================================================ +08:14:02 Calculate Source COMM Id = 2 +08:14:02 ============================================================================ +08:14:02 + + +waiting on router queue for slot.... +08:14:06 ============================================================================ +08:14:06 Slot Id : <212> +08:14:06 Transaction Type : REQUEST +08:14:06 Received From : +08:14:06 ============================================================================ +08:14:06 FNo. Len. Field Value +08:14:06 ============================================================================ +08:14:06 [ 1] [ 4] [0800] +08:14:06 [ 7] [ 10] [0320152554] +08:14:06 [ 11] [ 6] [082554] +08:14:06 [ 37] [ 12] [57908082554] +08:14:06 [ 70] [ 3] [301] +08:14:06 ============================================================================ +08:14:06 + + +waiting on router queue for slot.... +08:14:06 Sending to : +08:14:06 ============================================================================ +08:14:06 ============================================================================ +08:14:06 Slot Id : <212> +08:14:06 Transaction Type : RESPONSE +08:14:06 Received From : +08:14:06 ============================================================================ +08:14:06 FNo. Len. Field Value +08:14:06 ============================================================================ +08:14:06 [ 1] [ 4] [0810] +08:14:06 [ 7] [ 10] [0320152554] +08:14:06 [ 11] [ 6] [082554] +08:14:06 [ 37] [ 12] [579080825540] +08:14:06 [ 39] [ 2] [00] +08:14:06 [ 70] [ 3] [810] +08:14:06 ============================================================================ +08:14:06 Calculate Source COMM Id = 6 +08:14:06 ============================================================================ +08:14:06 + + +waiting on router queue for slot.... +08:14:12 ============================================================================ +08:14:12 Slot Id : <185> +08:14:12 Transaction Type : REQUEST +08:14:12 Received From : +08:14:12 ============================================================================ +08:14:12 FNo. Len. Field Value +08:14:12 ============================================================================ +08:14:12 [ 1] [ 4] [0200] +08:14:12 [ 2] [ 16] [1808930300018793] +08:14:12 [ 3] [ 6] [011000] +08:14:12 [ 4] [ 12] [000050000000] +08:14:12 [ 7] [ 10] [0320081408] +08:14:12 [ 11] [ 6] [680600] +08:14:12 [ 12] [ 6] [081408] +08:14:12 [ 13] [ 4] [0320] +08:14:12 [ 15] [ 4] [0320] +08:14:12 [ 18] [ 4] [6011] +08:14:12 [ 22] [ 3] [900] +08:14:12 [ 25] [ 2] [02] +08:14:12 [ 28] [ 9] [D00002000] +08:14:12 [ 32] [ 6] [621354] +08:14:12 [ 35] [ 27] [1808930300018793=1803500401] +08:14:12 [ 37] [ 12] [507903028256] +08:14:12 [ 41] [ 8] [12002500] +08:14:12 [ 42] [ 15] [NATIVE ] +08:14:12 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:14:12 [ 49] [ 3] [418] +08:14:12 [ 52] [ 16] [F73FC271F9743D05] +08:14:12 ============================================================================ +08:14:12 + + +waiting on router queue for slot.... +08:14:12 Sending to : +08:14:12 ============================================================================ +08:14:12 Sending to : +08:14:12 ============================================================================ +08:14:12 ============================================================================ +08:14:12 Slot Id : <185> +08:14:12 Transaction Type : REQUEST +08:14:12 Received From : +08:14:12 ============================================================================ +08:14:12 FNo. Len. Field Value +08:14:12 ============================================================================ +08:14:12 [ 1] [ 4] [0200] +08:14:12 [ 2] [ 16] [1808930300018793] +08:14:12 [ 3] [ 6] [011000] +08:14:12 [ 4] [ 12] [000050000000] +08:14:12 [ 7] [ 10] [0320081408] +08:14:12 [ 11] [ 6] [680600] +08:14:12 [ 12] [ 6] [081408] +08:14:12 [ 13] [ 4] [0320] +08:14:12 [ 15] [ 4] [0320] +08:14:12 [ 18] [ 4] [6011] +08:14:12 [ 22] [ 3] [900] +08:14:12 [ 25] [ 2] [02] +08:14:12 [ 28] [ 9] [D00002000] +08:14:12 [ 32] [ 6] [621354] +08:14:12 [ 35] [ 27] [1808930300018793=1803500401] +08:14:12 [ 37] [ 12] [507903028256] +08:14:12 [ 41] [ 8] [12002500] +08:14:12 [ 42] [ 15] [NATIVE ] +08:14:12 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:14:12 [ 49] [ 3] [418] +08:14:12 [ 52] [ 16] [F73FC271F9743D05] +08:14:12 ============================================================================ +08:14:12 + + +waiting on router queue for slot.... +08:14:12 Sending to : +08:14:12 ============================================================================ +08:14:13 ============================================================================ +08:14:13 Slot Id : <185> +08:14:13 Transaction Type : REQUEST +08:14:13 Received From : +08:14:13 ============================================================================ +08:14:13 FNo. Len. Field Value +08:14:13 ============================================================================ +08:14:13 [ 1] [ 4] [0200] +08:14:13 [ 2] [ 16] [1808930300018793] +08:14:13 [ 3] [ 6] [011000] +08:14:13 [ 4] [ 12] [000050000000] +08:14:13 [ 7] [ 10] [0320081408] +08:14:13 [ 11] [ 6] [680600] +08:14:13 [ 12] [ 6] [081408] +08:14:13 [ 13] [ 4] [0320] +08:14:13 [ 15] [ 4] [0320] +08:14:13 [ 18] [ 4] [6011] +08:14:13 [ 22] [ 3] [900] +08:14:13 [ 25] [ 2] [02] +08:14:13 [ 28] [ 9] [D00002000] +08:14:13 [ 32] [ 6] [621354] +08:14:13 [ 35] [ 27] [1808930300018793=1803500401] +08:14:13 [ 37] [ 12] [507903028256] +08:14:13 [ 41] [ 8] [12002500] +08:14:13 [ 42] [ 15] [NATIVE ] +08:14:13 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:14:13 [ 49] [ 3] [418] +08:14:13 [ 52] [ 16] [046447BB3AB000B8] +08:14:13 ============================================================================ +08:14:13 + + +waiting on router queue for slot.... +08:14:13 Sending to : <2> +08:14:13 ============================================================================ +08:14:13 ============================================================================ +08:14:13 Slot Id : <211> +08:14:13 Transaction Type : REQUEST +08:14:13 Received From : +08:14:13 ============================================================================ +08:14:13 FNo. Len. Field Value +08:14:13 ============================================================================ +08:14:13 [ 1] [ 4] [0800] +08:14:13 [ 7] [ 10] [0320011321] +08:14:13 [ 11] [ 6] [155352] +08:14:13 [ 70] [ 3] [301] +08:14:13 ============================================================================ +08:14:13 + + +waiting on router queue for slot.... +08:14:13 Sending to : +08:14:13 ============================================================================ +08:14:13 ============================================================================ +08:14:13 Slot Id : <211> +08:14:13 Transaction Type : RESPONSE +08:14:13 Received From : +08:14:13 ============================================================================ +08:14:13 FNo. Len. Field Value +08:14:13 ============================================================================ +08:14:13 [ 1] [ 4] [0810] +08:14:13 [ 7] [ 10] [0320011321] +08:14:13 [ 11] [ 6] [155352] +08:14:13 [ 39] [ 2] [00] +08:14:13 [ 70] [ 3] [301] +08:14:13 ============================================================================ +08:14:13 Calculate Source COMM Id = 2 +08:14:13 ============================================================================ +08:14:13 + + +waiting on router queue for slot.... +08:14:17 ============================================================================ +08:14:17 Slot Id : <185> +08:14:17 Transaction Type : RESPONSE +08:14:17 Received From : +08:14:17 ============================================================================ +08:14:17 FNo. Len. Field Value +08:14:17 ============================================================================ +08:14:17 [ 1] [ 4] [0210] +08:14:17 [ 2] [ 16] [1808930300018793] +08:14:17 [ 3] [ 6] [011000] +08:14:17 [ 4] [ 12] [000050000000] +08:14:17 [ 6] [ 12] [000050000000] +08:14:17 [ 7] [ 10] [0320081408] +08:14:17 [ 11] [ 6] [680600] +08:14:17 [ 12] [ 6] [081408] +08:14:17 [ 13] [ 4] [0320] +08:14:17 [ 18] [ 4] [6011] +08:14:17 [ 19] [ 3] [418] +08:14:17 [ 22] [ 3] [021] +08:14:17 [ 32] [ 6] [621354] +08:14:17 [ 35] [ 27] [1808930300018793=1803500401] +08:14:17 [ 37] [ 12] [507903028256] +08:14:17 [ 38] [ 6] [680600] +08:14:17 [ 39] [ 2] [00] +08:14:17 [ 41] [ 8] [12002500] +08:14:17 [ 49] [ 3] [418] +08:14:17 [ 52] [ 16] [046447BB3AB000B8] +08:14:17 [ 54] [ 20] [1001418C000921906800] +08:14:17 ============================================================================ +08:14:17 Sending to : +08:14:17 ============================================================================ +08:14:17 + + +waiting on router queue for slot.... +08:14:19 ============================================================================ +08:14:19 Slot Id : <185> +08:14:19 Transaction Type : RESPONSE +08:14:19 Received From : +08:14:19 ============================================================================ +08:14:19 FNo. Len. Field Value +08:14:19 ============================================================================ +08:14:19 [ 1] [ 4] [0210] +08:14:19 [ 2] [ 16] [1808930300018793] +08:14:19 [ 3] [ 6] [011000] +08:14:19 [ 4] [ 12] [000050000000] +08:14:19 [ 6] [ 12] [000050000000] +08:14:19 [ 7] [ 10] [0320081408] +08:14:19 [ 11] [ 6] [680600] +08:14:19 [ 12] [ 6] [081408] +08:14:19 [ 13] [ 4] [0320] +08:14:19 [ 18] [ 4] [6011] +08:14:19 [ 19] [ 3] [418] +08:14:19 [ 22] [ 3] [021] +08:14:19 [ 32] [ 6] [621354] +08:14:19 [ 35] [ 27] [1808930300018793=1803500401] +08:14:19 [ 37] [ 12] [507903028256] +08:14:19 [ 38] [ 6] [680600] +08:14:19 [ 39] [ 2] [00] +08:14:19 [ 41] [ 8] [12002500] +08:14:19 [ 49] [ 3] [418] +08:14:19 [ 52] [ 16] [046447BB3AB000B8] +08:14:19 [ 54] [ 20] [1001418C000921906800] +08:14:19 ============================================================================ +08:14:19 Calculate Source COMM Id = 0 +08:14:19 ============================================================================ +08:14:19 + + +waiting on router queue for slot.... +08:14:24 ============================================================================ +08:14:24 Slot Id : <183> +08:14:24 Transaction Type : REQUEST +08:14:24 Received From : +08:14:24 ============================================================================ +08:14:24 FNo. Len. Field Value +08:14:24 ============================================================================ +08:14:24 [ 1] [ 4] [0800] +08:14:24 [ 7] [ 10] [0320011332] +08:14:24 [ 11] [ 6] [155353] +08:14:24 [ 70] [ 3] [301] +08:14:24 ============================================================================ +08:14:24 + + +waiting on router queue for slot.... +08:14:24 Sending to : +08:14:24 ============================================================================ +08:14:24 ============================================================================ +08:14:24 Slot Id : <183> +08:14:24 Transaction Type : RESPONSE +08:14:24 Received From : +08:14:24 ============================================================================ +08:14:24 FNo. Len. Field Value +08:14:24 ============================================================================ +08:14:24 [ 1] [ 4] [0810] +08:14:24 [ 7] [ 10] [0320011332] +08:14:24 [ 11] [ 6] [155353] +08:14:24 [ 39] [ 2] [00] +08:14:24 [ 70] [ 3] [301] +08:14:24 ============================================================================ +08:14:24 Calculate Source COMM Id = 2 +08:14:24 ============================================================================ +08:14:24 + + +waiting on router queue for slot.... +08:14:32 ============================================================================ +08:14:32 Slot Id : <207> +08:14:32 Transaction Type : REQUEST +08:14:32 Received From : +08:14:32 ============================================================================ +08:14:32 FNo. Len. Field Value +08:14:32 ============================================================================ +08:14:32 [ 1] [ 4] [0800] +08:14:32 [ 2] [ 5] [02531] +08:14:32 [ 3] [ 6] [579088] +08:14:32 [ 7] [ 10] [0320011432] +08:14:32 [ 11] [ 6] [806890] +08:14:32 [ 15] [ 10] [0320011432] +08:14:32 [ 37] [ 11] [57908806890] +08:14:32 [ 70] [ 3] [001] +08:14:32 ============================================================================ +08:14:32 + + +waiting on router queue for slot.... +08:14:32 ============================================================================ +08:14:32 Slot Id : <207> +08:14:32 Transaction Type : RESPONSE +08:14:32 Received From : +08:14:32 ============================================================================ +08:14:32 FNo. Len. Field Value +08:14:32 ============================================================================ +08:14:32 [ 1] [ 4] [0810] +08:14:32 [ 7] [ 10] [0320011432] +08:14:32 [ 11] [ 6] [806890] +08:14:32 [ 15] [ 4] [0320] +08:14:32 [ 37] [ 12] [57908806890] +08:14:32 [ 39] [ 2] [00] +08:14:32 [ 70] [ 3] [001] +08:14:32 ============================================================================ +08:14:32 Sending to : +08:14:32 ============================================================================ +08:14:32 + + +waiting on router queue for slot.... +08:14:34 ============================================================================ +08:14:34 Slot Id : <149> +08:14:34 Transaction Type : REQUEST +08:14:34 Received From : +08:14:34 ============================================================================ +08:14:34 FNo. Len. Field Value +08:14:34 ============================================================================ +08:14:34 [ 1] [ 4] [0800] +08:14:34 [ 7] [ 10] [0320011343] +08:14:34 [ 11] [ 6] [155354] +08:14:34 [ 70] [ 3] [301] +08:14:34 ============================================================================ +08:14:34 + + +waiting on router queue for slot.... +08:14:34 Sending to : +08:14:34 ============================================================================ +08:14:34 ============================================================================ +08:14:34 Slot Id : <149> +08:14:34 Transaction Type : RESPONSE +08:14:34 Received From : +08:14:34 ============================================================================ +08:14:34 FNo. Len. Field Value +08:14:34 ============================================================================ +08:14:34 [ 1] [ 4] [0810] +08:14:34 [ 7] [ 10] [0320011343] +08:14:34 [ 11] [ 6] [155354] +08:14:34 [ 39] [ 2] [00] +08:14:34 [ 70] [ 3] [301] +08:14:34 ============================================================================ +08:14:34 Calculate Source COMM Id = 2 +08:14:34 ============================================================================ +08:14:34 + + +waiting on router queue for slot.... +08:14:42 ============================================================================ +08:14:42 Slot Id : <180> +08:14:42 Transaction Type : REQUEST +08:14:42 Received From : +08:14:42 ============================================================================ +08:14:42 FNo. Len. Field Value +08:14:42 ============================================================================ +08:14:42 [ 1] [ 4] [0200] +08:14:42 [ 2] [ 16] [6213544000621661] +08:14:42 [ 3] [ 6] [010000] +08:14:42 [ 4] [ 12] [000050000000] +08:14:42 [ 7] [ 10] [0320082229] +08:14:42 [ 11] [ 6] [223689] +08:14:42 [ 12] [ 6] [082229] +08:14:42 [ 13] [ 4] [0320] +08:14:42 [ 14] [ 4] [4912] +08:14:42 [ 15] [ 4] [0320] +08:14:42 [ 18] [ 4] [6011] +08:14:42 [ 22] [ 3] [900] +08:14:42 [ 25] [ 2] [02] +08:14:42 [ 28] [ 9] [D00002000] +08:14:42 [ 32] [ 6] [220699] +08:14:42 [ 35] [ 32] [6213544000621661=491212012166356] +08:14:42 [ 37] [ 12] [507900118739] +08:14:42 [ 41] [ 8] [01001100] +08:14:42 [ 42] [ 15] [APTRA ] +08:14:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:14:42 [ 49] [ 3] [418] +08:14:42 [ 52] [ 16] [97E5DFA5D1DB473F] +08:14:42 ============================================================================ +08:14:42 + + +waiting on router queue for slot.... +08:14:42 Sending to : +08:14:42 ============================================================================ +08:14:42 Sending to : +08:14:42 ============================================================================ +08:14:42 ============================================================================ +08:14:42 Slot Id : <180> +08:14:42 Transaction Type : REQUEST +08:14:42 Received From : +08:14:42 ============================================================================ +08:14:42 FNo. Len. Field Value +08:14:42 ============================================================================ +08:14:42 [ 1] [ 4] [0200] +08:14:42 [ 2] [ 16] [6213544000621661] +08:14:42 [ 3] [ 6] [010000] +08:14:42 [ 4] [ 12] [000050000000] +08:14:42 [ 7] [ 10] [0320082229] +08:14:42 [ 11] [ 6] [223689] +08:14:42 [ 12] [ 6] [082229] +08:14:42 [ 13] [ 4] [0320] +08:14:42 [ 14] [ 4] [4912] +08:14:42 [ 15] [ 4] [0320] +08:14:42 [ 18] [ 4] [6011] +08:14:42 [ 22] [ 3] [900] +08:14:42 [ 25] [ 2] [02] +08:14:42 [ 28] [ 9] [D00002000] +08:14:42 [ 32] [ 6] [220699] +08:14:42 [ 35] [ 32] [6213544000621661=491212012166356] +08:14:42 [ 37] [ 12] [507900118739] +08:14:42 [ 41] [ 8] [01001100] +08:14:42 [ 42] [ 15] [APTRA ] +08:14:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:14:42 [ 49] [ 3] [418] +08:14:42 [ 52] [ 16] [97E5DFA5D1DB473F] +08:14:42 ============================================================================ +08:14:42 + + +waiting on router queue for slot.... +08:14:42 Sending to : +08:14:42 ============================================================================ +08:14:42 ============================================================================ +08:14:42 Slot Id : <180> +08:14:42 Transaction Type : REQUEST +08:14:42 Received From : +08:14:42 ============================================================================ +08:14:42 FNo. Len. Field Value +08:14:42 ============================================================================ +08:14:42 [ 1] [ 4] [0200] +08:14:42 [ 2] [ 16] [6213544000621661] +08:14:42 [ 3] [ 6] [010000] +08:14:42 [ 4] [ 12] [000050000000] +08:14:42 [ 7] [ 10] [0320082229] +08:14:42 [ 11] [ 6] [223689] +08:14:42 [ 12] [ 6] [082229] +08:14:42 [ 13] [ 4] [0320] +08:14:42 [ 14] [ 4] [4912] +08:14:42 [ 15] [ 4] [0320] +08:14:42 [ 18] [ 4] [6011] +08:14:42 [ 22] [ 3] [900] +08:14:42 [ 25] [ 2] [02] +08:14:42 [ 28] [ 9] [D00002000] +08:14:42 [ 32] [ 6] [220699] +08:14:42 [ 35] [ 32] [6213544000621661=491212012166356] +08:14:42 [ 37] [ 12] [507900118739] +08:14:42 [ 41] [ 8] [01001100] +08:14:42 [ 42] [ 15] [APTRA ] +08:14:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:14:42 [ 49] [ 3] [418] +08:14:42 [ 52] [ 16] [8BD9888592804118] +08:14:42 ============================================================================ +08:14:42 + + +waiting on router queue for slot.... +08:14:42 Sending to : <0> +08:14:42 ============================================================================ +08:14:43 ============================================================================ +08:14:43 Slot Id : <180> +08:14:43 Transaction Type : RESPONSE +08:14:43 Received From : +08:14:43 ============================================================================ +08:14:43 FNo. Len. Field Value +08:14:43 ============================================================================ +08:14:43 [ 1] [ 4] [0210] +08:14:43 [ 2] [ 16] [6213544000621661] +08:14:43 [ 3] [ 6] [010000] +08:14:43 [ 4] [ 12] [000050000000] +08:14:43 [ 7] [ 10] [0320082229] +08:14:43 [ 11] [ 6] [223689] +08:14:43 [ 12] [ 6] [082229] +08:14:43 [ 13] [ 4] [0320] +08:14:43 [ 15] [ 4] [0320] +08:14:43 [ 18] [ 4] [6011] +08:14:43 [ 32] [ 6] [220699] +08:14:43 [ 35] [ 32] [6213544000621661=491212012166356] +08:14:43 [ 37] [ 12] [507900118739] +08:14:43 [ 38] [ 6] [911017] +08:14:43 [ 39] [ 2] [00] +08:14:43 [ 41] [ 8] [01001100] +08:14:43 [ 49] [ 3] [418] +08:14:43 [ 54] [ 40] [0001418C0004026519140002418C000402651914] +08:14:43 ============================================================================ +08:14:43 Sending to : +08:14:43 ============================================================================ +08:14:43 + + +waiting on router queue for slot.... +08:14:45 ============================================================================ +08:14:45 Slot Id : <180> +08:14:45 Transaction Type : RESPONSE +08:14:45 Received From : +08:14:45 ============================================================================ +08:14:45 FNo. Len. Field Value +08:14:45 ============================================================================ +08:14:45 [ 1] [ 4] [0210] +08:14:45 [ 2] [ 16] [6213544000621661] +08:14:45 [ 3] [ 6] [010000] +08:14:45 [ 4] [ 12] [000050000000] +08:14:45 [ 7] [ 10] [0320082229] +08:14:45 [ 11] [ 6] [223689] +08:14:45 [ 12] [ 6] [082229] +08:14:45 [ 13] [ 4] [0320] +08:14:45 [ 15] [ 4] [0320] +08:14:45 [ 18] [ 4] [6011] +08:14:45 [ 32] [ 6] [220699] +08:14:45 [ 35] [ 32] [6213544000621661=491212012166356] +08:14:45 [ 37] [ 12] [507900118739] +08:14:45 [ 38] [ 6] [911017] +08:14:45 [ 39] [ 2] [00] +08:14:45 [ 41] [ 8] [01001100] +08:14:45 [ 49] [ 3] [418] +08:14:45 [ 54] [ 40] [0001418C0004026519140002418C000402651914] +08:14:45 ============================================================================ +08:14:45 Calculate Source COMM Id = 1 +08:14:45 ============================================================================ +08:14:45 + + +waiting on router queue for slot.... +08:14:45 ============================================================================ +08:14:45 Slot Id : <174> +08:14:45 Transaction Type : REQUEST +08:14:45 Received From : +08:14:45 ============================================================================ +08:14:45 FNo. Len. Field Value +08:14:45 ============================================================================ +08:14:45 [ 1] [ 4] [0800] +08:14:45 [ 7] [ 10] [0320011354] +08:14:45 [ 11] [ 6] [155355] +08:14:45 [ 70] [ 3] [301] +08:14:45 ============================================================================ +08:14:45 + + +waiting on router queue for slot.... +08:14:45 Sending to : +08:14:45 ============================================================================ +08:14:45 ============================================================================ +08:14:45 Slot Id : <174> +08:14:45 Transaction Type : RESPONSE +08:14:45 Received From : +08:14:45 ============================================================================ +08:14:45 FNo. Len. Field Value +08:14:45 ============================================================================ +08:14:45 [ 1] [ 4] [0810] +08:14:45 [ 7] [ 10] [0320011354] +08:14:45 [ 11] [ 6] [155355] +08:14:45 [ 39] [ 2] [00] +08:14:45 [ 70] [ 3] [301] +08:14:45 ============================================================================ +08:14:45 Calculate Source COMM Id = 2 +08:14:45 ============================================================================ +08:14:45 + + +waiting on router queue for slot.... +08:14:48 ============================================================================ +08:14:48 Slot Id : <168> +08:14:48 Transaction Type : REQUEST +08:14:48 Received From : +08:14:48 ============================================================================ +08:14:48 FNo. Len. Field Value +08:14:48 ============================================================================ +08:14:48 [ 1] [ 4] [0200] +08:14:48 [ 2] [ 16] [6688990108408301] +08:14:48 [ 3] [ 6] [011000] +08:14:48 [ 4] [ 12] [000100000000] +08:14:48 [ 7] [ 10] [0320081445] +08:14:48 [ 11] [ 6] [680745] +08:14:48 [ 12] [ 6] [081445] +08:14:48 [ 13] [ 4] [0320] +08:14:48 [ 15] [ 4] [0320] +08:14:48 [ 18] [ 4] [6011] +08:14:48 [ 22] [ 3] [900] +08:14:48 [ 25] [ 2] [02] +08:14:48 [ 28] [ 9] [D00002000] +08:14:48 [ 32] [ 6] [621354] +08:14:48 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:14:48 [ 37] [ 12] [507903226537] +08:14:48 [ 41] [ 8] [04003200] +08:14:48 [ 42] [ 15] [NATIVE ] +08:14:48 [ 43] [ 40] [DONKHONG Kong LAO] +08:14:48 [ 49] [ 3] [418] +08:14:48 [ 52] [ 16] [D4851EE20FD0A8AD] +08:14:48 ============================================================================ +08:14:48 + + +waiting on router queue for slot.... +08:14:48 Sending to : +08:14:48 ============================================================================ +08:14:48 Sending to : +08:14:48 ============================================================================ +08:14:49 ============================================================================ +08:14:49 Slot Id : <168> +08:14:49 Transaction Type : REQUEST +08:14:49 Received From : +08:14:49 ============================================================================ +08:14:49 FNo. Len. Field Value +08:14:49 ============================================================================ +08:14:49 [ 1] [ 4] [0200] +08:14:49 [ 2] [ 16] [6688990108408301] +08:14:49 [ 3] [ 6] [011000] +08:14:49 [ 4] [ 12] [000100000000] +08:14:49 [ 7] [ 10] [0320081445] +08:14:49 [ 11] [ 6] [680745] +08:14:49 [ 12] [ 6] [081445] +08:14:49 [ 13] [ 4] [0320] +08:14:49 [ 15] [ 4] [0320] +08:14:49 [ 18] [ 4] [6011] +08:14:49 [ 22] [ 3] [900] +08:14:49 [ 25] [ 2] [02] +08:14:49 [ 28] [ 9] [D00002000] +08:14:49 [ 32] [ 6] [621354] +08:14:49 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:14:49 [ 37] [ 12] [507903226537] +08:14:49 [ 41] [ 8] [04003200] +08:14:49 [ 42] [ 15] [NATIVE ] +08:14:49 [ 43] [ 40] [DONKHONG Kong LAO] +08:14:49 [ 49] [ 3] [418] +08:14:49 [ 52] [ 16] [D4851EE20FD0A8AD] +08:14:49 ============================================================================ +08:14:49 + + +waiting on router queue for slot.... +08:14:49 Sending to : +08:14:49 ============================================================================ +08:14:49 ============================================================================ +08:14:49 Slot Id : <168> +08:14:49 Transaction Type : REQUEST +08:14:49 Received From : +08:14:49 ============================================================================ +08:14:49 FNo. Len. Field Value +08:14:49 ============================================================================ +08:14:49 [ 1] [ 4] [0200] +08:14:49 [ 2] [ 16] [6688990108408301] +08:14:49 [ 3] [ 6] [011000] +08:14:49 [ 4] [ 12] [000100000000] +08:14:49 [ 7] [ 10] [0320081445] +08:14:49 [ 11] [ 6] [680745] +08:14:49 [ 12] [ 6] [081445] +08:14:49 [ 13] [ 4] [0320] +08:14:49 [ 15] [ 4] [0320] +08:14:49 [ 18] [ 4] [6011] +08:14:49 [ 22] [ 3] [900] +08:14:49 [ 25] [ 2] [02] +08:14:49 [ 28] [ 9] [D00002000] +08:14:49 [ 32] [ 6] [621354] +08:14:49 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:14:49 [ 37] [ 12] [507903226537] +08:14:49 [ 41] [ 8] [04003200] +08:14:49 [ 42] [ 15] [NATIVE ] +08:14:49 [ 43] [ 40] [DONKHONG Kong LAO] +08:14:49 [ 49] [ 3] [418] +08:14:49 [ 52] [ 16] [5D77FEE3FCAB5D64] +08:14:49 ============================================================================ +08:14:49 + + +waiting on router queue for slot.... +08:14:49 Sending to : <4> +08:14:49 ============================================================================ +08:14:50 ============================================================================ +08:14:50 Slot Id : <168> +08:14:50 Transaction Type : RESPONSE +08:14:50 Received From : +08:14:50 ============================================================================ +08:14:50 FNo. Len. Field Value +08:14:50 ============================================================================ +08:14:50 [ 1] [ 4] [0210] +08:14:50 [ 2] [ 16] [6688990108408301] +08:14:50 [ 3] [ 6] [011000] +08:14:50 [ 4] [ 12] [000100000000] +08:14:50 [ 11] [ 6] [680745] +08:14:50 [ 12] [ 6] [081445] +08:14:50 [ 15] [ 4] [0320] +08:14:50 [ 18] [ 4] [6011] +08:14:50 [ 32] [ 6] [621354] +08:14:50 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:14:50 [ 37] [ 12] [507903226537] +08:14:50 [ 38] [ 6] [671027] +08:14:50 [ 39] [ 2] [00] +08:14:50 [ 41] [ 8] [04003200] +08:14:50 [ 49] [ 3] [418] +08:14:50 [ 54] [ 20] [1002418C000389738358] +08:14:50 ============================================================================ +08:14:50 Sending to : +08:14:50 ============================================================================ +08:14:50 + + +waiting on router queue for slot.... +08:14:51 ============================================================================ +08:14:51 Slot Id : <168> +08:14:51 Transaction Type : RESPONSE +08:14:51 Received From : +08:14:51 ============================================================================ +08:14:51 FNo. Len. Field Value +08:14:51 ============================================================================ +08:14:51 [ 1] [ 4] [0210] +08:14:51 [ 2] [ 16] [6688990108408301] +08:14:51 [ 3] [ 6] [011000] +08:14:51 [ 4] [ 12] [000100000000] +08:14:51 [ 11] [ 6] [680745] +08:14:51 [ 12] [ 6] [081445] +08:14:51 [ 15] [ 4] [0320] +08:14:51 [ 18] [ 4] [6011] +08:14:51 [ 32] [ 6] [621354] +08:14:51 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:14:51 [ 37] [ 12] [507903226537] +08:14:51 [ 38] [ 6] [671027] +08:14:51 [ 39] [ 2] [00] +08:14:51 [ 41] [ 8] [04003200] +08:14:51 [ 49] [ 3] [418] +08:14:51 [ 54] [ 20] [1002418C000389738358] +08:14:51 ============================================================================ +08:14:51 Calculate Source COMM Id = 0 +08:14:51 ============================================================================ +08:14:51 + + +waiting on router queue for slot.... +08:14:54 ============================================================================ +08:14:54 Slot Id : <189> +08:14:54 Transaction Type : REQUEST +08:14:54 Received From : +08:14:54 ============================================================================ +08:14:54 FNo. Len. Field Value +08:14:54 ============================================================================ +08:14:54 [ 1] [ 4] [0800] +08:14:54 [ 7] [ 10] [0320012242] +08:14:54 [ 11] [ 6] [020067] +08:14:54 [ 37] [ 12] [57908020067] +08:14:54 [ 70] [ 3] [301] +08:14:54 ============================================================================ +08:14:54 + + +waiting on router queue for slot.... +08:14:54 Sending to : +08:14:54 ============================================================================ +08:14:54 ============================================================================ +08:14:54 Slot Id : <189> +08:14:54 Transaction Type : RESPONSE +08:14:54 Received From : +08:14:54 ============================================================================ +08:14:54 FNo. Len. Field Value +08:14:54 ============================================================================ +08:14:54 [ 1] [ 4] [0810] +08:14:54 [ 7] [ 10] [0320012242] +08:14:54 [ 11] [ 6] [020067] +08:14:54 [ 37] [ 12] [579080200670] +08:14:54 [ 39] [ 2] [00] +08:14:54 [ 70] [ 3] [810] +08:14:54 ============================================================================ +08:14:54 Calculate Source COMM Id = 1 +08:14:54 ============================================================================ +08:14:54 + + +waiting on router queue for slot.... +08:14:56 ============================================================================ +08:14:56 Slot Id : <169> +08:14:56 Transaction Type : REQUEST +08:14:56 Received From : +08:14:56 ============================================================================ +08:14:56 FNo. Len. Field Value +08:14:56 ============================================================================ +08:14:56 [ 1] [ 4] [0800] +08:14:56 [ 7] [ 10] [0320011404] +08:14:56 [ 11] [ 6] [155356] +08:14:56 [ 70] [ 3] [301] +08:14:56 ============================================================================ +08:14:56 + + +waiting on router queue for slot.... +08:14:56 Sending to : +08:14:56 ============================================================================ +08:14:56 ============================================================================ +08:14:56 Slot Id : <169> +08:14:56 Transaction Type : RESPONSE +08:14:56 Received From : +08:14:56 ============================================================================ +08:14:56 FNo. Len. Field Value +08:14:56 ============================================================================ +08:14:56 [ 1] [ 4] [0810] +08:14:56 [ 7] [ 10] [0320011404] +08:14:56 [ 11] [ 6] [155356] +08:14:56 [ 39] [ 2] [00] +08:14:56 [ 70] [ 3] [301] +08:14:56 ============================================================================ +08:14:56 Calculate Source COMM Id = 2 +08:14:56 ============================================================================ +08:14:56 + + +waiting on router queue for slot.... +08:15:01 ============================================================================ +08:15:01 Slot Id : <225> +08:15:01 Transaction Type : REQUEST +08:15:01 Received From : +08:15:01 ============================================================================ +08:15:01 FNo. Len. Field Value +08:15:01 ============================================================================ +08:15:01 [ 1] [ 4] [0200] +08:15:01 [ 2] [ 16] [6213545001078934] +08:15:01 [ 3] [ 6] [300000] +08:15:01 [ 4] [ 12] [000000000000] +08:15:01 [ 7] [ 10] [0320081253] +08:15:01 [ 11] [ 6] [932279] +08:15:01 [ 12] [ 6] [081253] +08:15:01 [ 13] [ 4] [0320] +08:15:01 [ 15] [ 4] [0320] +08:15:01 [ 18] [ 4] [6011] +08:15:01 [ 19] [ 3] [418] +08:15:01 [ 22] [ 3] [021] +08:15:01 [ 25] [ 2] [01] +08:15:01 [ 28] [ 9] [D00000000] +08:15:01 [ 32] [ 6] [668899] +08:15:01 [ 35] [ 32] [6213545001078934=491212017893333] +08:15:01 [ 37] [ 12] [507901726910] +08:15:01 [ 41] [ 8] [03316002] +08:15:01 [ 42] [ 15] [APT ] +08:15:01 [ 43] [ 40] [ LAKORNPHENG UNIT LAKORNPH] +08:15:01 [ 49] [ 3] [418] +08:15:01 [ 52] [ 16] [D0362EE1D6640B17] +08:15:01 ============================================================================ +08:15:01 + + +waiting on router queue for slot.... +08:15:01 Sending to : +08:15:01 ============================================================================ +08:15:01 Sending to : +08:15:01 ============================================================================ +08:15:02 ============================================================================ +08:15:02 Slot Id : <225> +08:15:02 Transaction Type : REQUEST +08:15:02 Received From : +08:15:02 ============================================================================ +08:15:02 FNo. Len. Field Value +08:15:02 ============================================================================ +08:15:02 [ 1] [ 4] [0200] +08:15:02 [ 2] [ 16] [6213545001078934] +08:15:02 [ 3] [ 6] [300000] +08:15:02 [ 4] [ 12] [000000000000] +08:15:02 [ 7] [ 10] [0320081253] +08:15:02 [ 11] [ 6] [932279] +08:15:02 [ 12] [ 6] [081253] +08:15:02 [ 13] [ 4] [0320] +08:15:02 [ 15] [ 4] [0320] +08:15:02 [ 18] [ 4] [6011] +08:15:02 [ 19] [ 3] [418] +08:15:02 [ 22] [ 3] [021] +08:15:02 [ 25] [ 2] [01] +08:15:02 [ 28] [ 9] [D00000000] +08:15:02 [ 32] [ 6] [668899] +08:15:02 [ 35] [ 32] [6213545001078934=491212017893333] +08:15:02 [ 37] [ 12] [507901726910] +08:15:02 [ 41] [ 8] [03316002] +08:15:02 [ 42] [ 15] [APT ] +08:15:02 [ 43] [ 40] [ LAKORNPHENG UNIT LAKORNPH] +08:15:02 [ 49] [ 3] [418] +08:15:02 [ 52] [ 16] [D0362EE1D6640B17] +08:15:02 ============================================================================ +08:15:02 + + +waiting on router queue for slot.... +08:15:02 Sending to : +08:15:02 ============================================================================ +08:15:02 ============================================================================ +08:15:02 Slot Id : <225> +08:15:02 Transaction Type : REQUEST +08:15:02 Received From : +08:15:02 ============================================================================ +08:15:02 FNo. Len. Field Value +08:15:02 ============================================================================ +08:15:02 [ 1] [ 4] [0200] +08:15:02 [ 2] [ 16] [6213545001078934] +08:15:02 [ 3] [ 6] [300000] +08:15:02 [ 4] [ 12] [000000000000] +08:15:02 [ 7] [ 10] [0320081253] +08:15:02 [ 11] [ 6] [932279] +08:15:02 [ 12] [ 6] [081253] +08:15:02 [ 13] [ 4] [0320] +08:15:02 [ 15] [ 4] [0320] +08:15:02 [ 18] [ 4] [6011] +08:15:02 [ 19] [ 3] [418] +08:15:02 [ 22] [ 3] [021] +08:15:02 [ 25] [ 2] [01] +08:15:02 [ 28] [ 9] [D00000000] +08:15:02 [ 32] [ 6] [668899] +08:15:02 [ 35] [ 32] [6213545001078934=491212017893333] +08:15:02 [ 37] [ 12] [507901726910] +08:15:02 [ 41] [ 8] [03316002] +08:15:02 [ 42] [ 15] [APT ] +08:15:02 [ 43] [ 40] [ LAKORNPHENG UNIT LAKORNPH] +08:15:02 [ 49] [ 3] [418] +08:15:02 [ 52] [ 16] [EB169AA0161B56D2] +08:15:02 ============================================================================ +08:15:02 + + +waiting on router queue for slot.... +08:15:02 Sending to : <0> +08:15:02 ============================================================================ +08:15:02 ============================================================================ +08:15:02 Slot Id : <222> +08:15:02 Transaction Type : REQUEST +08:15:02 Received From : +08:15:02 ============================================================================ +08:15:02 FNo. Len. Field Value +08:15:02 ============================================================================ +08:15:02 [ 1] [ 4] [0200] +08:15:02 [ 2] [ 16] [6213544001794640] +08:15:02 [ 3] [ 6] [010000] +08:15:02 [ 4] [ 12] [000050000000] +08:15:02 [ 7] [ 10] [0320081253] +08:15:02 [ 11] [ 6] [932280] +08:15:02 [ 12] [ 6] [081253] +08:15:02 [ 13] [ 4] [0320] +08:15:02 [ 15] [ 4] [0320] +08:15:02 [ 18] [ 4] [6011] +08:15:02 [ 19] [ 3] [418] +08:15:02 [ 22] [ 3] [021] +08:15:02 [ 25] [ 2] [01] +08:15:02 [ 28] [ 9] [D00002000] +08:15:02 [ 32] [ 6] [668899] +08:15:02 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:02 [ 37] [ 12] [507902435595] +08:15:02 [ 41] [ 8] [03020031] +08:15:02 [ 42] [ 15] [APT ] +08:15:02 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:15:02 [ 49] [ 3] [418] +08:15:02 [ 52] [ 16] [099C3D1962FC8A41] +08:15:02 ============================================================================ +08:15:02 + + +waiting on router queue for slot.... +08:15:02 Sending to : +08:15:02 ============================================================================ +08:15:02 Sending to : +08:15:02 ============================================================================ +08:15:02 ============================================================================ +08:15:02 Slot Id : <205> +08:15:02 Transaction Type : REQUEST +08:15:02 Received From : +08:15:02 ============================================================================ +08:15:02 FNo. Len. Field Value +08:15:02 ============================================================================ +08:15:02 [ 1] [ 4] [0200] +08:15:02 [ 2] [ 16] [6213545000804652] +08:15:02 [ 3] [ 6] [302000] +08:15:02 [ 7] [ 10] [0320011410] +08:15:02 [ 11] [ 6] [267094] +08:15:02 [ 12] [ 6] [081410] +08:15:02 [ 13] [ 4] [0320] +08:15:02 [ 14] [ 4] [4912] +08:15:02 [ 15] [ 4] [0320] +08:15:02 [ 18] [ 4] [6011] +08:15:02 [ 19] [ 3] [418] +08:15:02 [ 22] [ 3] [021] +08:15:02 [ 25] [ 2] [01] +08:15:02 [ 32] [ 6] [180893] +08:15:02 [ 35] [ 32] [6213545000804652=491212010465433] +08:15:02 [ 37] [ 12] [507901267094] +08:15:02 [ 41] [ 8] [0261PSL1] +08:15:02 [ 42] [ 15] [999999 ] +08:15:02 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +08:15:02 [ 49] [ 3] [418] +08:15:02 [ 52] [ 16] [BF3CCAEB333DDAAB] +08:15:02 ============================================================================ +08:15:02 + + +waiting on router queue for slot.... +08:15:02 Sending to : +08:15:02 ============================================================================ +08:15:02 Sending to : +08:15:02 ============================================================================ +08:15:02 ============================================================================ +08:15:02 Slot Id : <225> +08:15:02 Transaction Type : RESPONSE +08:15:02 Received From : +08:15:02 ============================================================================ +08:15:02 FNo. Len. Field Value +08:15:02 ============================================================================ +08:15:02 [ 1] [ 4] [0210] +08:15:02 [ 2] [ 16] [6213545001078934] +08:15:02 [ 3] [ 6] [300000] +08:15:02 [ 4] [ 12] [000000000000] +08:15:02 [ 7] [ 10] [0320081253] +08:15:02 [ 11] [ 6] [932279] +08:15:02 [ 12] [ 6] [081253] +08:15:02 [ 13] [ 4] [0320] +08:15:02 [ 15] [ 4] [0320] +08:15:02 [ 18] [ 4] [6011] +08:15:02 [ 19] [ 3] [418] +08:15:02 [ 32] [ 6] [668899] +08:15:02 [ 35] [ 32] [6213545001078934=491212017893333] +08:15:02 [ 37] [ 12] [507901726910] +08:15:02 [ 38] [ 6] [307443] +08:15:02 [ 39] [ 2] [00] +08:15:02 [ 41] [ 8] [03316002] +08:15:02 [ 49] [ 3] [418] +08:15:02 [ 54] [ 40] [0001418C0005401730320002418C000540173032] +08:15:02 ============================================================================ +08:15:02 Sending to : +08:15:02 ============================================================================ +08:15:02 + + +waiting on router queue for slot.... +08:15:02 ============================================================================ +08:15:02 Slot Id : <222> +08:15:02 Transaction Type : REQUEST +08:15:02 Received From : +08:15:02 ============================================================================ +08:15:02 FNo. Len. Field Value +08:15:02 ============================================================================ +08:15:02 [ 1] [ 4] [0200] +08:15:02 [ 2] [ 16] [6213544001794640] +08:15:02 [ 3] [ 6] [010000] +08:15:02 [ 4] [ 12] [000050000000] +08:15:02 [ 7] [ 10] [0320081253] +08:15:02 [ 11] [ 6] [932280] +08:15:02 [ 12] [ 6] [081253] +08:15:02 [ 13] [ 4] [0320] +08:15:02 [ 15] [ 4] [0320] +08:15:02 [ 18] [ 4] [6011] +08:15:02 [ 19] [ 3] [418] +08:15:02 [ 22] [ 3] [021] +08:15:02 [ 25] [ 2] [01] +08:15:02 [ 28] [ 9] [D00002000] +08:15:02 [ 32] [ 6] [668899] +08:15:02 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:02 [ 37] [ 12] [507902435595] +08:15:02 [ 41] [ 8] [03020031] +08:15:02 [ 42] [ 15] [APT ] +08:15:02 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:15:02 [ 49] [ 3] [418] +08:15:02 [ 52] [ 16] [099C3D1962FC8A41] +08:15:02 ============================================================================ +08:15:02 + + +waiting on router queue for slot.... +08:15:02 Sending to : +08:15:02 ============================================================================ +08:15:02 ============================================================================ +08:15:02 Slot Id : <222> +08:15:02 Transaction Type : REQUEST +08:15:02 Received From : +08:15:02 ============================================================================ +08:15:02 FNo. Len. Field Value +08:15:02 ============================================================================ +08:15:02 [ 1] [ 4] [0200] +08:15:02 [ 2] [ 16] [6213544001794640] +08:15:02 [ 3] [ 6] [010000] +08:15:02 [ 4] [ 12] [000050000000] +08:15:02 [ 7] [ 10] [0320081253] +08:15:02 [ 11] [ 6] [932280] +08:15:02 [ 12] [ 6] [081253] +08:15:02 [ 13] [ 4] [0320] +08:15:02 [ 15] [ 4] [0320] +08:15:02 [ 18] [ 4] [6011] +08:15:02 [ 19] [ 3] [418] +08:15:02 [ 22] [ 3] [021] +08:15:02 [ 25] [ 2] [01] +08:15:02 [ 28] [ 9] [D00002000] +08:15:02 [ 32] [ 6] [668899] +08:15:02 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:02 [ 37] [ 12] [507902435595] +08:15:02 [ 41] [ 8] [03020031] +08:15:02 [ 42] [ 15] [APT ] +08:15:02 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:15:02 [ 49] [ 3] [418] +08:15:02 [ 52] [ 16] [508A017068498B53] +08:15:02 ============================================================================ +08:15:02 + + +waiting on router queue for slot.... +08:15:02 Sending to : <0> +08:15:02 ============================================================================ +08:15:02 ============================================================================ +08:15:02 Slot Id : <205> +08:15:02 Transaction Type : REQUEST +08:15:02 Received From : +08:15:02 ============================================================================ +08:15:02 FNo. Len. Field Value +08:15:02 ============================================================================ +08:15:02 [ 1] [ 4] [0200] +08:15:02 [ 2] [ 16] [6213545000804652] +08:15:02 [ 3] [ 6] [302000] +08:15:02 [ 7] [ 10] [0320011410] +08:15:02 [ 11] [ 6] [267094] +08:15:02 [ 12] [ 6] [081410] +08:15:02 [ 13] [ 4] [0320] +08:15:02 [ 14] [ 4] [4912] +08:15:02 [ 15] [ 4] [0320] +08:15:02 [ 18] [ 4] [6011] +08:15:02 [ 19] [ 3] [418] +08:15:02 [ 22] [ 3] [021] +08:15:02 [ 25] [ 2] [01] +08:15:02 [ 32] [ 6] [180893] +08:15:02 [ 35] [ 32] [6213545000804652=491212010465433] +08:15:02 [ 37] [ 12] [507901267094] +08:15:02 [ 41] [ 8] [0261PSL1] +08:15:02 [ 42] [ 15] [999999 ] +08:15:02 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +08:15:02 [ 49] [ 3] [418] +08:15:02 [ 52] [ 16] [BF3CCAEB333DDAAB] +08:15:02 ============================================================================ +08:15:02 + + +waiting on router queue for slot.... +08:15:02 Sending to : +08:15:02 ============================================================================ +08:15:02 ============================================================================ +08:15:02 Slot Id : <205> +08:15:02 Transaction Type : REQUEST +08:15:02 Received From : +08:15:02 ============================================================================ +08:15:02 FNo. Len. Field Value +08:15:02 ============================================================================ +08:15:02 [ 1] [ 4] [0200] +08:15:02 [ 2] [ 16] [6213545000804652] +08:15:02 [ 3] [ 6] [302000] +08:15:02 [ 7] [ 10] [0320011410] +08:15:02 [ 11] [ 6] [267094] +08:15:02 [ 12] [ 6] [081410] +08:15:02 [ 13] [ 4] [0320] +08:15:02 [ 14] [ 4] [4912] +08:15:02 [ 15] [ 4] [0320] +08:15:02 [ 18] [ 4] [6011] +08:15:02 [ 19] [ 3] [418] +08:15:02 [ 22] [ 3] [021] +08:15:02 [ 25] [ 2] [01] +08:15:02 [ 32] [ 6] [180893] +08:15:02 [ 35] [ 32] [6213545000804652=491212010465433] +08:15:02 [ 37] [ 12] [507901267094] +08:15:02 [ 41] [ 8] [0261PSL1] +08:15:02 [ 42] [ 15] [999999 ] +08:15:02 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +08:15:02 [ 49] [ 3] [418] +08:15:02 [ 52] [ 16] [B394E0288BE5F6ED] +08:15:02 ============================================================================ +08:15:02 + + +waiting on router queue for slot.... +08:15:02 Sending to : <0> +08:15:02 ============================================================================ +08:15:03 ============================================================================ +08:15:03 Slot Id : <222> +08:15:03 Transaction Type : RESPONSE +08:15:03 Received From : +08:15:03 ============================================================================ +08:15:03 FNo. Len. Field Value +08:15:03 ============================================================================ +08:15:03 [ 1] [ 4] [0210] +08:15:03 [ 2] [ 16] [6213544001794640] +08:15:03 [ 3] [ 6] [010000] +08:15:03 [ 4] [ 12] [000050000000] +08:15:03 [ 7] [ 10] [0320081253] +08:15:03 [ 11] [ 6] [932280] +08:15:03 [ 12] [ 6] [081253] +08:15:03 [ 13] [ 4] [0320] +08:15:03 [ 15] [ 4] [0320] +08:15:03 [ 18] [ 4] [6011] +08:15:03 [ 19] [ 3] [418] +08:15:03 [ 32] [ 6] [668899] +08:15:03 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:03 [ 37] [ 12] [507902435595] +08:15:03 [ 38] [ 6] [932280] +08:15:03 [ 39] [ 2] [51] +08:15:03 [ 41] [ 8] [03020031] +08:15:03 [ 49] [ 3] [418] +08:15:03 [ 54] [ 40] [0001418C0000547760570002418C000054776057] +08:15:03 ============================================================================ +08:15:03 Sending to : +08:15:03 ============================================================================ +08:15:03 + + +waiting on router queue for slot.... +08:15:03 ============================================================================ +08:15:03 Slot Id : <205> +08:15:03 Transaction Type : RESPONSE +08:15:03 Received From : +08:15:03 ============================================================================ +08:15:03 FNo. Len. Field Value +08:15:03 ============================================================================ +08:15:03 [ 1] [ 4] [0210] +08:15:03 [ 2] [ 16] [6213545000804652] +08:15:03 [ 3] [ 6] [302000] +08:15:03 [ 4] [ 12] [000000000000] +08:15:03 [ 7] [ 10] [0320011410] +08:15:03 [ 11] [ 6] [267094] +08:15:03 [ 12] [ 6] [081410] +08:15:03 [ 13] [ 4] [0320] +08:15:03 [ 15] [ 4] [0320] +08:15:03 [ 18] [ 4] [6011] +08:15:03 [ 19] [ 3] [418] +08:15:03 [ 32] [ 6] [180893] +08:15:03 [ 35] [ 32] [6213545000804652=491212010465433] +08:15:03 [ 37] [ 12] [507901267094] +08:15:03 [ 38] [ 6] [980342] +08:15:03 [ 39] [ 2] [00] +08:15:03 [ 41] [ 8] [0261PSL1] +08:15:03 [ 49] [ 3] [418] +08:15:03 [ 54] [ 40] [2001418C0010891061212002418C001089106121] +08:15:03 ============================================================================ +08:15:03 Sending to : +08:15:03 ============================================================================ +08:15:03 + + +waiting on router queue for slot.... +08:15:03 ============================================================================ +08:15:03 Slot Id : <232> +08:15:03 Transaction Type : REQUEST +08:15:03 Received From : +08:15:03 ============================================================================ +08:15:03 FNo. Len. Field Value +08:15:03 ============================================================================ +08:15:03 [ 1] [ 4] [0200] +08:15:03 [ 2] [ 16] [6688990108391507] +08:15:03 [ 3] [ 6] [300000] +08:15:03 [ 4] [ 12] [000000000000] +08:15:03 [ 7] [ 10] [0320081500] +08:15:03 [ 11] [ 6] [680815] +08:15:03 [ 12] [ 6] [081500] +08:15:03 [ 13] [ 4] [0320] +08:15:03 [ 15] [ 4] [0320] +08:15:03 [ 18] [ 4] [6011] +08:15:03 [ 22] [ 3] [900] +08:15:03 [ 25] [ 2] [02] +08:15:03 [ 28] [ 9] [D00000000] +08:15:03 [ 32] [ 6] [621354] +08:15:03 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:15:03 [ 37] [ 12] [507904719364] +08:15:03 [ 41] [ 8] [18001000] +08:15:03 [ 42] [ 15] [NATIVE ] +08:15:03 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:15:03 [ 49] [ 3] [418] +08:15:03 [ 52] [ 16] [50E9A6D4743FC41B] +08:15:03 ============================================================================ +08:15:03 + + +waiting on router queue for slot.... +08:15:03 Sending to : +08:15:03 ============================================================================ +08:15:03 Sending to : +08:15:03 ============================================================================ +08:15:03 ============================================================================ +08:15:03 Slot Id : <225> +08:15:03 Transaction Type : RESPONSE +08:15:03 Received From : +08:15:03 ============================================================================ +08:15:03 FNo. Len. Field Value +08:15:03 ============================================================================ +08:15:03 [ 1] [ 4] [0210] +08:15:03 [ 2] [ 16] [6213545001078934] +08:15:03 [ 3] [ 6] [300000] +08:15:03 [ 4] [ 12] [000000000000] +08:15:03 [ 7] [ 10] [0320081253] +08:15:03 [ 11] [ 6] [932279] +08:15:03 [ 12] [ 6] [081253] +08:15:03 [ 13] [ 4] [0320] +08:15:03 [ 15] [ 4] [0320] +08:15:03 [ 18] [ 4] [6011] +08:15:03 [ 19] [ 3] [418] +08:15:03 [ 32] [ 6] [668899] +08:15:03 [ 35] [ 32] [6213545001078934=491212017893333] +08:15:03 [ 37] [ 12] [507901726910] +08:15:03 [ 38] [ 6] [307443] +08:15:03 [ 39] [ 2] [00] +08:15:03 [ 41] [ 8] [03316002] +08:15:03 [ 49] [ 3] [418] +08:15:03 [ 54] [ 40] [0001418C0005401730320002418C000540173032] +08:15:03 ============================================================================ +08:15:03 Calculate Source COMM Id = 4 +08:15:03 ============================================================================ +08:15:03 + + +waiting on router queue for slot.... +08:15:04 ============================================================================ +08:15:04 Slot Id : <232> +08:15:04 Transaction Type : REQUEST +08:15:04 Received From : +08:15:04 ============================================================================ +08:15:04 FNo. Len. Field Value +08:15:04 ============================================================================ +08:15:04 [ 1] [ 4] [0200] +08:15:04 [ 2] [ 16] [6688990108391507] +08:15:04 [ 3] [ 6] [300000] +08:15:04 [ 4] [ 12] [000000000000] +08:15:04 [ 7] [ 10] [0320081500] +08:15:04 [ 11] [ 6] [680815] +08:15:04 [ 12] [ 6] [081500] +08:15:04 [ 13] [ 4] [0320] +08:15:04 [ 15] [ 4] [0320] +08:15:04 [ 18] [ 4] [6011] +08:15:04 [ 22] [ 3] [900] +08:15:04 [ 25] [ 2] [02] +08:15:04 [ 28] [ 9] [D00000000] +08:15:04 [ 32] [ 6] [621354] +08:15:04 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:15:04 [ 37] [ 12] [507904719364] +08:15:04 [ 41] [ 8] [18001000] +08:15:04 [ 42] [ 15] [NATIVE ] +08:15:04 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:15:04 [ 49] [ 3] [418] +08:15:04 [ 52] [ 16] [50E9A6D4743FC41B] +08:15:04 ============================================================================ +08:15:04 + + +waiting on router queue for slot.... +08:15:04 Sending to : +08:15:04 ============================================================================ +08:15:04 ============================================================================ +08:15:04 Slot Id : <232> +08:15:04 Transaction Type : REQUEST +08:15:04 Received From : +08:15:04 ============================================================================ +08:15:04 FNo. Len. Field Value +08:15:04 ============================================================================ +08:15:04 [ 1] [ 4] [0200] +08:15:04 [ 2] [ 16] [6688990108391507] +08:15:04 [ 3] [ 6] [300000] +08:15:04 [ 4] [ 12] [000000000000] +08:15:04 [ 7] [ 10] [0320081500] +08:15:04 [ 11] [ 6] [680815] +08:15:04 [ 12] [ 6] [081500] +08:15:04 [ 13] [ 4] [0320] +08:15:04 [ 15] [ 4] [0320] +08:15:04 [ 18] [ 4] [6011] +08:15:04 [ 22] [ 3] [900] +08:15:04 [ 25] [ 2] [02] +08:15:04 [ 28] [ 9] [D00000000] +08:15:04 [ 32] [ 6] [621354] +08:15:04 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:15:04 [ 37] [ 12] [507904719364] +08:15:04 [ 41] [ 8] [18001000] +08:15:04 [ 42] [ 15] [NATIVE ] +08:15:04 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:15:04 [ 49] [ 3] [418] +08:15:04 [ 52] [ 16] [6B472D7BCFE61048] +08:15:04 ============================================================================ +08:15:04 + + +waiting on router queue for slot.... +08:15:04 Sending to : <4> +08:15:04 ============================================================================ +08:15:05 ============================================================================ +08:15:05 Slot Id : <232> +08:15:05 Transaction Type : RESPONSE +08:15:05 Received From : +08:15:05 ============================================================================ +08:15:05 FNo. Len. Field Value +08:15:05 ============================================================================ +08:15:05 [ 1] [ 4] [0210] +08:15:05 [ 2] [ 16] [6688990108391507] +08:15:05 [ 3] [ 6] [300000] +08:15:05 [ 4] [ 12] [000000000000] +08:15:05 [ 11] [ 6] [680815] +08:15:05 [ 12] [ 6] [081500] +08:15:05 [ 15] [ 4] [0320] +08:15:05 [ 18] [ 4] [6011] +08:15:05 [ 32] [ 6] [621354] +08:15:05 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:15:05 [ 37] [ 12] [507904719364] +08:15:05 [ 38] [ 6] [706086] +08:15:05 [ 39] [ 2] [00] +08:15:05 [ 41] [ 8] [18001000] +08:15:05 [ 49] [ 3] [418] +08:15:05 [ 54] [ 20] [0002418C000202769643] +08:15:05 ============================================================================ +08:15:05 Sending to : +08:15:05 ============================================================================ +08:15:05 + + +waiting on router queue for slot.... +08:15:05 ============================================================================ +08:15:05 Slot Id : <205> +08:15:05 Transaction Type : RESPONSE +08:15:05 Received From : +08:15:05 ============================================================================ +08:15:05 FNo. Len. Field Value +08:15:05 ============================================================================ +08:15:05 [ 1] [ 4] [0210] +08:15:05 [ 2] [ 16] [6213545000804652] +08:15:05 [ 3] [ 6] [302000] +08:15:05 [ 4] [ 12] [000000000000] +08:15:05 [ 7] [ 10] [0320011410] +08:15:05 [ 11] [ 6] [267094] +08:15:05 [ 12] [ 6] [081410] +08:15:05 [ 13] [ 4] [0320] +08:15:05 [ 15] [ 4] [0320] +08:15:05 [ 18] [ 4] [6011] +08:15:05 [ 19] [ 3] [418] +08:15:05 [ 32] [ 6] [180893] +08:15:05 [ 35] [ 32] [6213545000804652=491212010465433] +08:15:05 [ 37] [ 12] [507901267094] +08:15:05 [ 38] [ 6] [980342] +08:15:05 [ 39] [ 2] [00] +08:15:05 [ 41] [ 8] [0261PSL1] +08:15:05 [ 49] [ 3] [418] +08:15:05 [ 54] [ 40] [2001418C0010891061212002418C001089106121] +08:15:05 ============================================================================ +08:15:05 Calculate Source COMM Id = 2 +08:15:05 ============================================================================ +08:15:05 + + +waiting on router queue for slot.... +08:15:06 ============================================================================ +08:15:06 Slot Id : <188> +08:15:06 Transaction Type : REQUEST +08:15:06 Received From : +08:15:06 ============================================================================ +08:15:06 FNo. Len. Field Value +08:15:06 ============================================================================ +08:15:06 [ 1] [ 4] [0200] +08:15:06 [ 2] [ 16] [2206990000109009] +08:15:06 [ 3] [ 6] [010000] +08:15:06 [ 4] [ 12] [000040000000] +08:15:06 [ 7] [ 10] [0320081258] +08:15:06 [ 11] [ 6] [932287] +08:15:06 [ 12] [ 6] [081258] +08:15:06 [ 13] [ 4] [0320] +08:15:06 [ 15] [ 4] [0320] +08:15:06 [ 18] [ 4] [6011] +08:15:06 [ 19] [ 3] [418] +08:15:06 [ 22] [ 3] [021] +08:15:06 [ 25] [ 2] [01] +08:15:06 [ 28] [ 9] [D00002000] +08:15:06 [ 32] [ 6] [668899] +08:15:06 [ 35] [ 32] [2206990000109009=971212613698292] +08:15:06 [ 37] [ 12] [507900880359] +08:15:06 [ 41] [ 8] [03017001] +08:15:06 [ 42] [ 15] [APT ] +08:15:06 [ 43] [ 40] [ SEKONG BRANCH OFFICE SEKO] +08:15:06 [ 49] [ 3] [418] +08:15:06 [ 52] [ 16] [C38DEF6D6B8BC01C] +08:15:06 ============================================================================ +08:15:06 + + +waiting on router queue for slot.... +08:15:06 Sending to : +08:15:06 ============================================================================ +08:15:06 Sending to : +08:15:06 ============================================================================ +08:15:06 ============================================================================ +08:15:06 Slot Id : <188> +08:15:06 Transaction Type : REQUEST +08:15:06 Received From : +08:15:06 ============================================================================ +08:15:06 FNo. Len. Field Value +08:15:06 ============================================================================ +08:15:06 [ 1] [ 4] [0200] +08:15:06 [ 2] [ 16] [2206990000109009] +08:15:06 [ 3] [ 6] [010000] +08:15:06 [ 4] [ 12] [000040000000] +08:15:06 [ 7] [ 10] [0320081258] +08:15:06 [ 11] [ 6] [932287] +08:15:06 [ 12] [ 6] [081258] +08:15:06 [ 13] [ 4] [0320] +08:15:06 [ 15] [ 4] [0320] +08:15:06 [ 18] [ 4] [6011] +08:15:06 [ 19] [ 3] [418] +08:15:06 [ 22] [ 3] [021] +08:15:06 [ 25] [ 2] [01] +08:15:06 [ 28] [ 9] [D00002000] +08:15:06 [ 32] [ 6] [668899] +08:15:06 [ 35] [ 32] [2206990000109009=971212613698292] +08:15:06 [ 37] [ 12] [507900880359] +08:15:06 [ 41] [ 8] [03017001] +08:15:06 [ 42] [ 15] [APT ] +08:15:06 [ 43] [ 40] [ SEKONG BRANCH OFFICE SEKO] +08:15:06 [ 49] [ 3] [418] +08:15:06 [ 52] [ 16] [C38DEF6D6B8BC01C] +08:15:06 ============================================================================ +08:15:06 + + +waiting on router queue for slot.... +08:15:06 Sending to : +08:15:06 ============================================================================ +08:15:06 ============================================================================ +08:15:06 Slot Id : <188> +08:15:06 Transaction Type : REQUEST +08:15:06 Received From : +08:15:06 ============================================================================ +08:15:06 FNo. Len. Field Value +08:15:06 ============================================================================ +08:15:06 [ 1] [ 4] [0200] +08:15:06 [ 2] [ 16] [2206990000109009] +08:15:06 [ 3] [ 6] [010000] +08:15:06 [ 4] [ 12] [000040000000] +08:15:06 [ 7] [ 10] [0320081258] +08:15:06 [ 11] [ 6] [932287] +08:15:06 [ 12] [ 6] [081258] +08:15:06 [ 13] [ 4] [0320] +08:15:06 [ 15] [ 4] [0320] +08:15:06 [ 18] [ 4] [6011] +08:15:06 [ 19] [ 3] [418] +08:15:06 [ 22] [ 3] [021] +08:15:06 [ 25] [ 2] [01] +08:15:06 [ 28] [ 9] [D00002000] +08:15:06 [ 32] [ 6] [668899] +08:15:06 [ 35] [ 32] [2206990000109009=971212613698292] +08:15:06 [ 37] [ 12] [507900880359] +08:15:06 [ 41] [ 8] [03017001] +08:15:06 [ 42] [ 15] [APT ] +08:15:06 [ 43] [ 40] [ SEKONG BRANCH OFFICE SEKO] +08:15:06 [ 49] [ 3] [418] +08:15:06 [ 52] [ 16] [352BAE6F52D0CF9E] +08:15:06 ============================================================================ +08:15:06 + + +waiting on router queue for slot.... +08:15:06 Sending to : <1> +08:15:06 ============================================================================ +08:15:07 ============================================================================ +08:15:07 Slot Id : <232> +08:15:07 Transaction Type : RESPONSE +08:15:07 Received From : +08:15:07 ============================================================================ +08:15:07 FNo. Len. Field Value +08:15:07 ============================================================================ +08:15:07 [ 1] [ 4] [0210] +08:15:07 [ 2] [ 16] [6688990108391507] +08:15:07 [ 3] [ 6] [300000] +08:15:07 [ 4] [ 12] [000000000000] +08:15:07 [ 11] [ 6] [680815] +08:15:07 [ 12] [ 6] [081500] +08:15:07 [ 15] [ 4] [0320] +08:15:07 [ 18] [ 4] [6011] +08:15:07 [ 32] [ 6] [621354] +08:15:07 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:15:07 [ 37] [ 12] [507904719364] +08:15:07 [ 38] [ 6] [706086] +08:15:07 [ 39] [ 2] [00] +08:15:07 [ 41] [ 8] [18001000] +08:15:07 [ 49] [ 3] [418] +08:15:07 [ 54] [ 20] [0002418C000202769643] +08:15:07 ============================================================================ +08:15:07 Calculate Source COMM Id = 0 +08:15:07 ============================================================================ +08:15:07 + + +waiting on router queue for slot.... +08:15:08 ============================================================================ +08:15:08 Slot Id : <222> +08:15:08 Transaction Type : RESPONSE +08:15:08 Received From : +08:15:08 ============================================================================ +08:15:08 FNo. Len. Field Value +08:15:08 ============================================================================ +08:15:08 [ 1] [ 4] [0210] +08:15:08 [ 2] [ 16] [6213544001794640] +08:15:08 [ 3] [ 6] [010000] +08:15:08 [ 4] [ 12] [000050000000] +08:15:08 [ 7] [ 10] [0320081253] +08:15:08 [ 11] [ 6] [932280] +08:15:08 [ 12] [ 6] [081253] +08:15:08 [ 13] [ 4] [0320] +08:15:08 [ 15] [ 4] [0320] +08:15:08 [ 18] [ 4] [6011] +08:15:08 [ 19] [ 3] [418] +08:15:08 [ 32] [ 6] [668899] +08:15:08 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:08 [ 37] [ 12] [507902435595] +08:15:08 [ 38] [ 6] [932280] +08:15:08 [ 39] [ 2] [51] +08:15:08 [ 41] [ 8] [03020031] +08:15:08 [ 49] [ 3] [418] +08:15:08 [ 54] [ 40] [0001418C0000547760570002418C000054776057] +08:15:08 ============================================================================ +08:15:08 Calculate Source COMM Id = 4 +08:15:08 ============================================================================ +08:15:08 + + +waiting on router queue for slot.... +08:15:09 ============================================================================ +08:15:09 Slot Id : <188> +08:15:09 Transaction Type : RESPONSE +08:15:09 Received From : +08:15:09 ============================================================================ +08:15:09 FNo. Len. Field Value +08:15:09 ============================================================================ +08:15:09 [ 1] [ 4] [0210] +08:15:09 [ 2] [ 16] [2206990000109009] +08:15:09 [ 3] [ 6] [010000] +08:15:09 [ 4] [ 12] [000040000000] +08:15:09 [ 7] [ 10] [0320081258] +08:15:09 [ 11] [ 6] [932287] +08:15:09 [ 12] [ 6] [081258] +08:15:09 [ 13] [ 4] [0320] +08:15:09 [ 15] [ 4] [0320] +08:15:09 [ 18] [ 4] [6011] +08:15:09 [ 32] [ 6] [668899] +08:15:09 [ 35] [ 32] [2206990000109009=971212613698292] +08:15:09 [ 37] [ 12] [507900880359] +08:15:09 [ 38] [ 6] [382237] +08:15:09 [ 39] [ 2] [00] +08:15:09 [ 41] [ 8] [03017001] +08:15:09 [ 49] [ 3] [418] +08:15:09 [ 54] [ 40] [0001418C0001412060000002418C000141206000] +08:15:09 ============================================================================ +08:15:09 Sending to : +08:15:09 ============================================================================ +08:15:09 + + +waiting on router queue for slot.... +08:15:10 ============================================================================ +08:15:10 Slot Id : <188> +08:15:10 Transaction Type : RESPONSE +08:15:10 Received From : +08:15:10 ============================================================================ +08:15:10 FNo. Len. Field Value +08:15:10 ============================================================================ +08:15:10 [ 1] [ 4] [0210] +08:15:10 [ 2] [ 16] [2206990000109009] +08:15:10 [ 3] [ 6] [010000] +08:15:10 [ 4] [ 12] [000040000000] +08:15:10 [ 7] [ 10] [0320081258] +08:15:10 [ 11] [ 6] [932287] +08:15:10 [ 12] [ 6] [081258] +08:15:10 [ 13] [ 4] [0320] +08:15:10 [ 15] [ 4] [0320] +08:15:10 [ 18] [ 4] [6011] +08:15:10 [ 32] [ 6] [668899] +08:15:10 [ 35] [ 32] [2206990000109009=971212613698292] +08:15:10 [ 37] [ 12] [507900880359] +08:15:10 [ 38] [ 6] [382237] +08:15:10 [ 39] [ 2] [00] +08:15:10 [ 41] [ 8] [03017001] +08:15:10 [ 49] [ 3] [418] +08:15:10 [ 54] [ 40] [0001418C0001412060000002418C000141206000] +08:15:10 ============================================================================ +08:15:10 Calculate Source COMM Id = 4 +08:15:10 ============================================================================ +08:15:10 + + +waiting on router queue for slot.... +08:15:11 ============================================================================ +08:15:11 Slot Id : <230> +08:15:11 Transaction Type : REQUEST +08:15:11 Received From : +08:15:11 ============================================================================ +08:15:11 FNo. Len. Field Value +08:15:11 ============================================================================ +08:15:11 [ 1] [ 4] [0800] +08:15:11 [ 7] [ 10] [0320152659] +08:15:11 [ 11] [ 6] [082659] +08:15:11 [ 37] [ 12] [57908082659] +08:15:11 [ 70] [ 3] [301] +08:15:11 ============================================================================ +08:15:11 + + +waiting on router queue for slot.... +08:15:11 Sending to : +08:15:11 ============================================================================ +08:15:11 ============================================================================ +08:15:11 Slot Id : <230> +08:15:11 Transaction Type : RESPONSE +08:15:11 Received From : +08:15:11 ============================================================================ +08:15:11 FNo. Len. Field Value +08:15:11 ============================================================================ +08:15:11 [ 1] [ 4] [0810] +08:15:11 [ 7] [ 10] [0320152659] +08:15:11 [ 11] [ 6] [082659] +08:15:11 [ 37] [ 12] [579080826590] +08:15:11 [ 39] [ 2] [00] +08:15:11 [ 70] [ 3] [810] +08:15:11 ============================================================================ +08:15:11 Calculate Source COMM Id = 6 +08:15:11 ============================================================================ +08:15:11 + + +waiting on router queue for slot.... +08:15:18 ============================================================================ +08:15:18 Slot Id : <173> +08:15:18 Transaction Type : REQUEST +08:15:18 Received From : +08:15:18 ============================================================================ +08:15:18 FNo. Len. Field Value +08:15:18 ============================================================================ +08:15:18 [ 1] [ 4] [0800] +08:15:18 [ 7] [ 10] [0320011426] +08:15:18 [ 11] [ 6] [155357] +08:15:18 [ 70] [ 3] [301] +08:15:18 ============================================================================ +08:15:18 + + +waiting on router queue for slot.... +08:15:18 Sending to : +08:15:18 ============================================================================ +08:15:18 ============================================================================ +08:15:18 Slot Id : <173> +08:15:18 Transaction Type : RESPONSE +08:15:18 Received From : +08:15:18 ============================================================================ +08:15:18 FNo. Len. Field Value +08:15:18 ============================================================================ +08:15:18 [ 1] [ 4] [0810] +08:15:18 [ 7] [ 10] [0320011426] +08:15:18 [ 11] [ 6] [155357] +08:15:18 [ 39] [ 2] [00] +08:15:18 [ 70] [ 3] [301] +08:15:18 ============================================================================ +08:15:18 Calculate Source COMM Id = 2 +08:15:18 ============================================================================ +08:15:18 + + +waiting on router queue for slot.... +08:15:22 ============================================================================ +08:15:22 Slot Id : <229> +08:15:22 Transaction Type : REQUEST +08:15:22 Received From : +08:15:22 ============================================================================ +08:15:22 FNo. Len. Field Value +08:15:22 ============================================================================ +08:15:22 [ 1] [ 4] [0200] +08:15:22 [ 2] [ 16] [6213545000975478] +08:15:22 [ 3] [ 6] [300000] +08:15:22 [ 4] [ 12] [000000000000] +08:15:22 [ 7] [ 10] [0320081314] +08:15:22 [ 11] [ 6] [932300] +08:15:22 [ 12] [ 6] [081314] +08:15:22 [ 13] [ 4] [0320] +08:15:22 [ 15] [ 4] [0320] +08:15:22 [ 18] [ 4] [6011] +08:15:22 [ 19] [ 3] [418] +08:15:22 [ 22] [ 3] [021] +08:15:22 [ 25] [ 2] [01] +08:15:22 [ 28] [ 9] [D00000000] +08:15:22 [ 32] [ 6] [668899] +08:15:22 [ 35] [ 32] [6213545000975478=491212017547455] +08:15:22 [ 37] [ 12] [507900771375] +08:15:22 [ 41] [ 8] [03005001] +08:15:22 [ 42] [ 15] [APT ] +08:15:22 [ 43] [ 40] [ OUDOMSAY BRANCH OFFICE OU] +08:15:22 [ 49] [ 3] [418] +08:15:22 [ 52] [ 16] [420CBA57DA0806F8] +08:15:22 ============================================================================ +08:15:22 + + +waiting on router queue for slot.... +08:15:22 Sending to : +08:15:22 ============================================================================ +08:15:22 Sending to : +08:15:22 ============================================================================ +08:15:22 ============================================================================ +08:15:22 Slot Id : <229> +08:15:22 Transaction Type : REQUEST +08:15:22 Received From : +08:15:22 ============================================================================ +08:15:22 FNo. Len. Field Value +08:15:22 ============================================================================ +08:15:22 [ 1] [ 4] [0200] +08:15:22 [ 2] [ 16] [6213545000975478] +08:15:22 [ 3] [ 6] [300000] +08:15:22 [ 4] [ 12] [000000000000] +08:15:22 [ 7] [ 10] [0320081314] +08:15:22 [ 11] [ 6] [932300] +08:15:22 [ 12] [ 6] [081314] +08:15:22 [ 13] [ 4] [0320] +08:15:22 [ 15] [ 4] [0320] +08:15:22 [ 18] [ 4] [6011] +08:15:22 [ 19] [ 3] [418] +08:15:22 [ 22] [ 3] [021] +08:15:22 [ 25] [ 2] [01] +08:15:22 [ 28] [ 9] [D00000000] +08:15:22 [ 32] [ 6] [668899] +08:15:22 [ 35] [ 32] [6213545000975478=491212017547455] +08:15:22 [ 37] [ 12] [507900771375] +08:15:22 [ 41] [ 8] [03005001] +08:15:22 [ 42] [ 15] [APT ] +08:15:22 [ 43] [ 40] [ OUDOMSAY BRANCH OFFICE OU] +08:15:22 [ 49] [ 3] [418] +08:15:22 [ 52] [ 16] [420CBA57DA0806F8] +08:15:22 ============================================================================ +08:15:22 + + +waiting on router queue for slot.... +08:15:22 Sending to : +08:15:22 ============================================================================ +08:15:22 ============================================================================ +08:15:22 Slot Id : <229> +08:15:22 Transaction Type : REQUEST +08:15:22 Received From : +08:15:22 ============================================================================ +08:15:22 FNo. Len. Field Value +08:15:22 ============================================================================ +08:15:22 [ 1] [ 4] [0200] +08:15:22 [ 2] [ 16] [6213545000975478] +08:15:22 [ 3] [ 6] [300000] +08:15:22 [ 4] [ 12] [000000000000] +08:15:22 [ 7] [ 10] [0320081314] +08:15:22 [ 11] [ 6] [932300] +08:15:22 [ 12] [ 6] [081314] +08:15:22 [ 13] [ 4] [0320] +08:15:22 [ 15] [ 4] [0320] +08:15:22 [ 18] [ 4] [6011] +08:15:22 [ 19] [ 3] [418] +08:15:22 [ 22] [ 3] [021] +08:15:22 [ 25] [ 2] [01] +08:15:22 [ 28] [ 9] [D00000000] +08:15:22 [ 32] [ 6] [668899] +08:15:22 [ 35] [ 32] [6213545000975478=491212017547455] +08:15:22 [ 37] [ 12] [507900771375] +08:15:22 [ 41] [ 8] [03005001] +08:15:22 [ 42] [ 15] [APT ] +08:15:22 [ 43] [ 40] [ OUDOMSAY BRANCH OFFICE OU] +08:15:22 [ 49] [ 3] [418] +08:15:22 [ 52] [ 16] [B999D69A26CC7A63] +08:15:22 ============================================================================ +08:15:22 + + +waiting on router queue for slot.... +08:15:22 Sending to : <0> +08:15:22 ============================================================================ +08:15:23 ============================================================================ +08:15:23 Slot Id : <229> +08:15:23 Transaction Type : RESPONSE +08:15:23 Received From : +08:15:23 ============================================================================ +08:15:23 FNo. Len. Field Value +08:15:23 ============================================================================ +08:15:23 [ 1] [ 4] [0210] +08:15:23 [ 2] [ 16] [6213545000975478] +08:15:23 [ 3] [ 6] [300000] +08:15:23 [ 4] [ 12] [000000000000] +08:15:23 [ 7] [ 10] [0320081314] +08:15:23 [ 11] [ 6] [932300] +08:15:23 [ 12] [ 6] [081314] +08:15:23 [ 13] [ 4] [0320] +08:15:23 [ 15] [ 4] [0320] +08:15:23 [ 18] [ 4] [6011] +08:15:23 [ 19] [ 3] [418] +08:15:23 [ 32] [ 6] [668899] +08:15:23 [ 35] [ 32] [6213545000975478=491212017547455] +08:15:23 [ 37] [ 12] [507900771375] +08:15:23 [ 38] [ 6] [191256] +08:15:23 [ 39] [ 2] [00] +08:15:23 [ 41] [ 8] [03005001] +08:15:23 [ 49] [ 3] [418] +08:15:23 [ 54] [ 40] [0001418C0002411733770002418C000241173377] +08:15:23 ============================================================================ +08:15:23 Sending to : +08:15:23 ============================================================================ +08:15:23 + + +waiting on router queue for slot.... +08:15:24 ============================================================================ +08:15:24 Slot Id : <223> +08:15:24 Transaction Type : REQUEST +08:15:24 Received From : +08:15:24 ============================================================================ +08:15:24 FNo. Len. Field Value +08:15:24 ============================================================================ +08:15:24 [ 1] [ 4] [0200] +08:15:24 [ 2] [ 16] [6213544001794640] +08:15:24 [ 3] [ 6] [010000] +08:15:24 [ 4] [ 12] [000050000000] +08:15:24 [ 7] [ 10] [0320081316] +08:15:24 [ 11] [ 6] [932303] +08:15:24 [ 12] [ 6] [081316] +08:15:24 [ 13] [ 4] [0320] +08:15:24 [ 15] [ 4] [0320] +08:15:24 [ 18] [ 4] [6011] +08:15:24 [ 19] [ 3] [418] +08:15:24 [ 22] [ 3] [021] +08:15:24 [ 25] [ 2] [01] +08:15:24 [ 28] [ 9] [D00002000] +08:15:24 [ 32] [ 6] [668899] +08:15:24 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:24 [ 37] [ 12] [507902435596] +08:15:24 [ 41] [ 8] [03020031] +08:15:24 [ 42] [ 15] [APT ] +08:15:24 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:15:24 [ 49] [ 3] [418] +08:15:24 [ 52] [ 16] [099C3D1962FC8A41] +08:15:24 ============================================================================ +08:15:24 + + +waiting on router queue for slot.... +08:15:24 Sending to : +08:15:24 ============================================================================ +08:15:24 Sending to : +08:15:24 ============================================================================ +08:15:24 ============================================================================ +08:15:24 Slot Id : <223> +08:15:24 Transaction Type : REQUEST +08:15:24 Received From : +08:15:24 ============================================================================ +08:15:24 FNo. Len. Field Value +08:15:24 ============================================================================ +08:15:24 [ 1] [ 4] [0200] +08:15:24 [ 2] [ 16] [6213544001794640] +08:15:24 [ 3] [ 6] [010000] +08:15:24 [ 4] [ 12] [000050000000] +08:15:24 [ 7] [ 10] [0320081316] +08:15:24 [ 11] [ 6] [932303] +08:15:24 [ 12] [ 6] [081316] +08:15:24 [ 13] [ 4] [0320] +08:15:24 [ 15] [ 4] [0320] +08:15:24 [ 18] [ 4] [6011] +08:15:24 [ 19] [ 3] [418] +08:15:24 [ 22] [ 3] [021] +08:15:24 [ 25] [ 2] [01] +08:15:24 [ 28] [ 9] [D00002000] +08:15:24 [ 32] [ 6] [668899] +08:15:24 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:24 [ 37] [ 12] [507902435596] +08:15:24 [ 41] [ 8] [03020031] +08:15:24 [ 42] [ 15] [APT ] +08:15:24 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:15:24 [ 49] [ 3] [418] +08:15:24 [ 52] [ 16] [099C3D1962FC8A41] +08:15:24 ============================================================================ +08:15:24 + + +waiting on router queue for slot.... +08:15:24 Sending to : +08:15:24 ============================================================================ +08:15:24 ============================================================================ +08:15:24 Slot Id : <223> +08:15:24 Transaction Type : REQUEST +08:15:24 Received From : +08:15:24 ============================================================================ +08:15:24 FNo. Len. Field Value +08:15:24 ============================================================================ +08:15:24 [ 1] [ 4] [0200] +08:15:24 [ 2] [ 16] [6213544001794640] +08:15:24 [ 3] [ 6] [010000] +08:15:24 [ 4] [ 12] [000050000000] +08:15:24 [ 7] [ 10] [0320081316] +08:15:24 [ 11] [ 6] [932303] +08:15:24 [ 12] [ 6] [081316] +08:15:24 [ 13] [ 4] [0320] +08:15:24 [ 15] [ 4] [0320] +08:15:24 [ 18] [ 4] [6011] +08:15:24 [ 19] [ 3] [418] +08:15:24 [ 22] [ 3] [021] +08:15:24 [ 25] [ 2] [01] +08:15:24 [ 28] [ 9] [D00002000] +08:15:24 [ 32] [ 6] [668899] +08:15:24 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:24 [ 37] [ 12] [507902435596] +08:15:24 [ 41] [ 8] [03020031] +08:15:24 [ 42] [ 15] [APT ] +08:15:24 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:15:24 [ 49] [ 3] [418] +08:15:24 [ 52] [ 16] [508A017068498B53] +08:15:24 ============================================================================ +08:15:24 + + +waiting on router queue for slot.... +08:15:24 Sending to : <0> +08:15:24 ============================================================================ +08:15:24 ============================================================================ +08:15:24 Slot Id : <229> +08:15:24 Transaction Type : RESPONSE +08:15:24 Received From : +08:15:24 ============================================================================ +08:15:24 FNo. Len. Field Value +08:15:24 ============================================================================ +08:15:24 [ 1] [ 4] [0210] +08:15:24 [ 2] [ 16] [6213545000975478] +08:15:24 [ 3] [ 6] [300000] +08:15:24 [ 4] [ 12] [000000000000] +08:15:24 [ 7] [ 10] [0320081314] +08:15:24 [ 11] [ 6] [932300] +08:15:24 [ 12] [ 6] [081314] +08:15:24 [ 13] [ 4] [0320] +08:15:24 [ 15] [ 4] [0320] +08:15:24 [ 18] [ 4] [6011] +08:15:24 [ 19] [ 3] [418] +08:15:24 [ 32] [ 6] [668899] +08:15:24 [ 35] [ 32] [6213545000975478=491212017547455] +08:15:24 [ 37] [ 12] [507900771375] +08:15:24 [ 38] [ 6] [191256] +08:15:24 [ 39] [ 2] [00] +08:15:24 [ 41] [ 8] [03005001] +08:15:24 [ 49] [ 3] [418] +08:15:24 [ 54] [ 40] [0001418C0002411733770002418C000241173377] +08:15:24 ============================================================================ +08:15:24 Calculate Source COMM Id = 4 +08:15:24 ============================================================================ +08:15:24 + + +waiting on router queue for slot.... +08:15:25 ============================================================================ +08:15:25 Slot Id : <223> +08:15:25 Transaction Type : RESPONSE +08:15:25 Received From : +08:15:25 ============================================================================ +08:15:25 FNo. Len. Field Value +08:15:25 ============================================================================ +08:15:25 [ 1] [ 4] [0210] +08:15:25 [ 2] [ 16] [6213544001794640] +08:15:25 [ 3] [ 6] [010000] +08:15:25 [ 4] [ 12] [000050000000] +08:15:25 [ 7] [ 10] [0320081316] +08:15:25 [ 11] [ 6] [932303] +08:15:25 [ 12] [ 6] [081316] +08:15:25 [ 13] [ 4] [0320] +08:15:25 [ 15] [ 4] [0320] +08:15:25 [ 18] [ 4] [6011] +08:15:25 [ 19] [ 3] [418] +08:15:25 [ 32] [ 6] [668899] +08:15:25 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:25 [ 37] [ 12] [507902435596] +08:15:25 [ 38] [ 6] [932303] +08:15:25 [ 39] [ 2] [51] +08:15:25 [ 41] [ 8] [03020031] +08:15:25 [ 49] [ 3] [418] +08:15:25 [ 54] [ 40] [0001418C0000547760570002418C000054776057] +08:15:25 ============================================================================ +08:15:25 Sending to : +08:15:25 ============================================================================ +08:15:25 + + +waiting on router queue for slot.... +08:15:27 ============================================================================ +08:15:27 Slot Id : <223> +08:15:27 Transaction Type : RESPONSE +08:15:27 Received From : +08:15:27 ============================================================================ +08:15:27 FNo. Len. Field Value +08:15:27 ============================================================================ +08:15:27 [ 1] [ 4] [0210] +08:15:27 [ 2] [ 16] [6213544001794640] +08:15:27 [ 3] [ 6] [010000] +08:15:27 [ 4] [ 12] [000050000000] +08:15:27 [ 7] [ 10] [0320081316] +08:15:27 [ 11] [ 6] [932303] +08:15:27 [ 12] [ 6] [081316] +08:15:27 [ 13] [ 4] [0320] +08:15:27 [ 15] [ 4] [0320] +08:15:27 [ 18] [ 4] [6011] +08:15:27 [ 19] [ 3] [418] +08:15:27 [ 32] [ 6] [668899] +08:15:27 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:27 [ 37] [ 12] [507902435596] +08:15:27 [ 38] [ 6] [932303] +08:15:27 [ 39] [ 2] [51] +08:15:27 [ 41] [ 8] [03020031] +08:15:27 [ 49] [ 3] [418] +08:15:27 [ 54] [ 40] [0001418C0000547760570002418C000054776057] +08:15:27 ============================================================================ +08:15:27 Calculate Source COMM Id = 4 +08:15:27 ============================================================================ +08:15:27 + + +waiting on router queue for slot.... +08:15:28 ============================================================================ +08:15:28 Slot Id : <177> +08:15:28 Transaction Type : REQUEST +08:15:28 Received From : +08:15:28 ============================================================================ +08:15:28 FNo. Len. Field Value +08:15:28 ============================================================================ +08:15:28 [ 1] [ 4] [0200] +08:15:28 [ 2] [ 16] [1808930300018793] +08:15:28 [ 3] [ 6] [011000] +08:15:28 [ 4] [ 12] [000050000000] +08:15:28 [ 7] [ 10] [0320081524] +08:15:28 [ 11] [ 6] [680924] +08:15:28 [ 12] [ 6] [081524] +08:15:28 [ 13] [ 4] [0320] +08:15:28 [ 15] [ 4] [0320] +08:15:28 [ 18] [ 4] [6011] +08:15:28 [ 22] [ 3] [900] +08:15:28 [ 25] [ 2] [02] +08:15:28 [ 28] [ 9] [D00002000] +08:15:28 [ 32] [ 6] [621354] +08:15:28 [ 35] [ 27] [1808930300018793=1803500401] +08:15:28 [ 37] [ 12] [507903028258] +08:15:28 [ 41] [ 8] [12002500] +08:15:28 [ 42] [ 15] [NATIVE ] +08:15:28 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:15:28 [ 49] [ 3] [418] +08:15:28 [ 52] [ 16] [F73FC271F9743D05] +08:15:28 ============================================================================ +08:15:28 + + +waiting on router queue for slot.... +08:15:28 Sending to : +08:15:28 ============================================================================ +08:15:28 Sending to : +08:15:28 ============================================================================ +08:15:28 ============================================================================ +08:15:28 Slot Id : <177> +08:15:28 Transaction Type : REQUEST +08:15:28 Received From : +08:15:28 ============================================================================ +08:15:28 FNo. Len. Field Value +08:15:28 ============================================================================ +08:15:28 [ 1] [ 4] [0200] +08:15:28 [ 2] [ 16] [1808930300018793] +08:15:28 [ 3] [ 6] [011000] +08:15:28 [ 4] [ 12] [000050000000] +08:15:28 [ 7] [ 10] [0320081524] +08:15:28 [ 11] [ 6] [680924] +08:15:28 [ 12] [ 6] [081524] +08:15:28 [ 13] [ 4] [0320] +08:15:28 [ 15] [ 4] [0320] +08:15:28 [ 18] [ 4] [6011] +08:15:28 [ 22] [ 3] [900] +08:15:28 [ 25] [ 2] [02] +08:15:28 [ 28] [ 9] [D00002000] +08:15:28 [ 32] [ 6] [621354] +08:15:28 [ 35] [ 27] [1808930300018793=1803500401] +08:15:28 [ 37] [ 12] [507903028258] +08:15:28 [ 41] [ 8] [12002500] +08:15:28 [ 42] [ 15] [NATIVE ] +08:15:28 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:15:28 [ 49] [ 3] [418] +08:15:28 [ 52] [ 16] [F73FC271F9743D05] +08:15:28 ============================================================================ +08:15:28 + + +waiting on router queue for slot.... +08:15:28 Sending to : +08:15:28 ============================================================================ +08:15:28 ============================================================================ +08:15:28 Slot Id : <177> +08:15:28 Transaction Type : REQUEST +08:15:28 Received From : +08:15:28 ============================================================================ +08:15:28 FNo. Len. Field Value +08:15:28 ============================================================================ +08:15:28 [ 1] [ 4] [0200] +08:15:28 [ 2] [ 16] [1808930300018793] +08:15:28 [ 3] [ 6] [011000] +08:15:28 [ 4] [ 12] [000050000000] +08:15:28 [ 7] [ 10] [0320081524] +08:15:28 [ 11] [ 6] [680924] +08:15:28 [ 12] [ 6] [081524] +08:15:28 [ 13] [ 4] [0320] +08:15:28 [ 15] [ 4] [0320] +08:15:28 [ 18] [ 4] [6011] +08:15:28 [ 22] [ 3] [900] +08:15:28 [ 25] [ 2] [02] +08:15:28 [ 28] [ 9] [D00002000] +08:15:28 [ 32] [ 6] [621354] +08:15:28 [ 35] [ 27] [1808930300018793=1803500401] +08:15:28 [ 37] [ 12] [507903028258] +08:15:28 [ 41] [ 8] [12002500] +08:15:28 [ 42] [ 15] [NATIVE ] +08:15:28 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:15:28 [ 49] [ 3] [418] +08:15:28 [ 52] [ 16] [046447BB3AB000B8] +08:15:28 ============================================================================ +08:15:28 + + +waiting on router queue for slot.... +08:15:28 Sending to : <2> +08:15:28 ============================================================================ +08:15:29 ============================================================================ +08:15:29 Slot Id : <215> +08:15:29 Transaction Type : REQUEST +08:15:29 Received From : +08:15:29 ============================================================================ +08:15:29 FNo. Len. Field Value +08:15:29 ============================================================================ +08:15:29 [ 1] [ 4] [0800] +08:15:29 [ 7] [ 10] [0320011437] +08:15:29 [ 11] [ 6] [155358] +08:15:29 [ 70] [ 3] [301] +08:15:29 ============================================================================ +08:15:29 + + +waiting on router queue for slot.... +08:15:29 Sending to : +08:15:29 ============================================================================ +08:15:29 ============================================================================ +08:15:29 Slot Id : <215> +08:15:29 Transaction Type : RESPONSE +08:15:29 Received From : +08:15:29 ============================================================================ +08:15:29 FNo. Len. Field Value +08:15:29 ============================================================================ +08:15:29 [ 1] [ 4] [0810] +08:15:29 [ 7] [ 10] [0320011437] +08:15:29 [ 11] [ 6] [155358] +08:15:29 [ 39] [ 2] [00] +08:15:29 [ 70] [ 3] [301] +08:15:29 ============================================================================ +08:15:29 Calculate Source COMM Id = 2 +08:15:29 ============================================================================ +08:15:29 + + +waiting on router queue for slot.... +08:15:33 ============================================================================ +08:15:33 Slot Id : <177> +08:15:33 Transaction Type : RESPONSE +08:15:33 Received From : +08:15:33 ============================================================================ +08:15:33 FNo. Len. Field Value +08:15:33 ============================================================================ +08:15:33 [ 1] [ 4] [0210] +08:15:33 [ 2] [ 16] [1808930300018793] +08:15:33 [ 3] [ 6] [011000] +08:15:33 [ 4] [ 12] [000050000000] +08:15:33 [ 6] [ 12] [000050000000] +08:15:33 [ 7] [ 10] [0320081524] +08:15:33 [ 11] [ 6] [680924] +08:15:33 [ 12] [ 6] [081524] +08:15:33 [ 13] [ 4] [0320] +08:15:33 [ 18] [ 4] [6011] +08:15:33 [ 19] [ 3] [418] +08:15:33 [ 22] [ 3] [021] +08:15:33 [ 32] [ 6] [621354] +08:15:33 [ 35] [ 27] [1808930300018793=1803500401] +08:15:33 [ 37] [ 12] [507903028258] +08:15:33 [ 38] [ 6] [680924] +08:15:33 [ 39] [ 2] [00] +08:15:33 [ 41] [ 8] [12002500] +08:15:33 [ 49] [ 3] [418] +08:15:33 [ 52] [ 16] [046447BB3AB000B8] +08:15:33 [ 54] [ 20] [1001418C000871706800] +08:15:33 ============================================================================ +08:15:33 Sending to : +08:15:33 ============================================================================ +08:15:33 + + +waiting on router queue for slot.... +08:15:34 ============================================================================ +08:15:34 Slot Id : <246> +08:15:34 Transaction Type : REQUEST +08:15:34 Received From : +08:15:34 ============================================================================ +08:15:34 FNo. Len. Field Value +08:15:34 ============================================================================ +08:15:34 [ 1] [ 4] [0800] +08:15:34 [ 2] [ 5] [02531] +08:15:34 [ 3] [ 6] [579088] +08:15:34 [ 7] [ 10] [0320011534] +08:15:34 [ 11] [ 6] [806891] +08:15:34 [ 15] [ 10] [0320011534] +08:15:34 [ 37] [ 11] [57908806891] +08:15:34 [ 70] [ 3] [001] +08:15:34 ============================================================================ +08:15:34 + + +waiting on router queue for slot.... +08:15:34 ============================================================================ +08:15:34 Slot Id : <246> +08:15:34 Transaction Type : RESPONSE +08:15:34 Received From : +08:15:34 ============================================================================ +08:15:34 FNo. Len. Field Value +08:15:34 ============================================================================ +08:15:34 [ 1] [ 4] [0810] +08:15:34 [ 7] [ 10] [0320011534] +08:15:34 [ 11] [ 6] [806891] +08:15:34 [ 15] [ 4] [0320] +08:15:34 [ 37] [ 12] [57908806891] +08:15:34 [ 39] [ 2] [00] +08:15:34 [ 70] [ 3] [001] +08:15:34 ============================================================================ +08:15:34 Sending to : +08:15:34 ============================================================================ +08:15:34 + + +waiting on router queue for slot.... +08:15:35 ============================================================================ +08:15:35 Slot Id : <177> +08:15:35 Transaction Type : RESPONSE +08:15:35 Received From : +08:15:35 ============================================================================ +08:15:35 FNo. Len. Field Value +08:15:35 ============================================================================ +08:15:35 [ 1] [ 4] [0210] +08:15:35 [ 2] [ 16] [1808930300018793] +08:15:35 [ 3] [ 6] [011000] +08:15:35 [ 4] [ 12] [000050000000] +08:15:35 [ 6] [ 12] [000050000000] +08:15:35 [ 7] [ 10] [0320081524] +08:15:35 [ 11] [ 6] [680924] +08:15:35 [ 12] [ 6] [081524] +08:15:35 [ 13] [ 4] [0320] +08:15:35 [ 18] [ 4] [6011] +08:15:35 [ 19] [ 3] [418] +08:15:35 [ 22] [ 3] [021] +08:15:35 [ 32] [ 6] [621354] +08:15:35 [ 35] [ 27] [1808930300018793=1803500401] +08:15:35 [ 37] [ 12] [507903028258] +08:15:35 [ 38] [ 6] [680924] +08:15:35 [ 39] [ 2] [00] +08:15:35 [ 41] [ 8] [12002500] +08:15:35 [ 49] [ 3] [418] +08:15:35 [ 52] [ 16] [046447BB3AB000B8] +08:15:35 [ 54] [ 20] [1001418C000871706800] +08:15:35 ============================================================================ +08:15:35 Calculate Source COMM Id = 0 +08:15:35 ============================================================================ +08:15:35 + + +waiting on router queue for slot.... +08:15:42 ============================================================================ +08:15:42 Slot Id : <242> +08:15:42 Transaction Type : REQUEST +08:15:42 Received From : +08:15:42 ============================================================================ +08:15:42 FNo. Len. Field Value +08:15:42 ============================================================================ +08:15:42 [ 1] [ 4] [0200] +08:15:42 [ 2] [ 16] [6213544001794640] +08:15:42 [ 3] [ 6] [010000] +08:15:42 [ 4] [ 12] [000030000000] +08:15:42 [ 7] [ 10] [0320081333] +08:15:42 [ 11] [ 6] [932314] +08:15:42 [ 12] [ 6] [081333] +08:15:42 [ 13] [ 4] [0320] +08:15:42 [ 15] [ 4] [0320] +08:15:42 [ 18] [ 4] [6011] +08:15:42 [ 19] [ 3] [418] +08:15:42 [ 22] [ 3] [021] +08:15:42 [ 25] [ 2] [01] +08:15:42 [ 28] [ 9] [D00002000] +08:15:42 [ 32] [ 6] [668899] +08:15:42 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:42 [ 37] [ 12] [507902435597] +08:15:42 [ 41] [ 8] [03020031] +08:15:42 [ 42] [ 15] [APT ] +08:15:42 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:15:42 [ 49] [ 3] [418] +08:15:42 [ 52] [ 16] [099C3D1962FC8A41] +08:15:42 ============================================================================ +08:15:42 + + +waiting on router queue for slot.... +08:15:42 Sending to : +08:15:42 ============================================================================ +08:15:42 Sending to : +08:15:42 ============================================================================ +08:15:42 ============================================================================ +08:15:42 Slot Id : <242> +08:15:42 Transaction Type : REQUEST +08:15:42 Received From : +08:15:42 ============================================================================ +08:15:42 FNo. Len. Field Value +08:15:42 ============================================================================ +08:15:42 [ 1] [ 4] [0200] +08:15:42 [ 2] [ 16] [6213544001794640] +08:15:42 [ 3] [ 6] [010000] +08:15:42 [ 4] [ 12] [000030000000] +08:15:42 [ 7] [ 10] [0320081333] +08:15:42 [ 11] [ 6] [932314] +08:15:42 [ 12] [ 6] [081333] +08:15:42 [ 13] [ 4] [0320] +08:15:42 [ 15] [ 4] [0320] +08:15:42 [ 18] [ 4] [6011] +08:15:42 [ 19] [ 3] [418] +08:15:42 [ 22] [ 3] [021] +08:15:42 [ 25] [ 2] [01] +08:15:42 [ 28] [ 9] [D00002000] +08:15:42 [ 32] [ 6] [668899] +08:15:42 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:42 [ 37] [ 12] [507902435597] +08:15:42 [ 41] [ 8] [03020031] +08:15:42 [ 42] [ 15] [APT ] +08:15:42 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:15:42 [ 49] [ 3] [418] +08:15:42 [ 52] [ 16] [099C3D1962FC8A41] +08:15:42 ============================================================================ +08:15:42 + + +waiting on router queue for slot.... +08:15:42 Sending to : +08:15:42 ============================================================================ +08:15:42 ============================================================================ +08:15:42 Slot Id : <242> +08:15:42 Transaction Type : REQUEST +08:15:42 Received From : +08:15:42 ============================================================================ +08:15:42 FNo. Len. Field Value +08:15:42 ============================================================================ +08:15:42 [ 1] [ 4] [0200] +08:15:42 [ 2] [ 16] [6213544001794640] +08:15:42 [ 3] [ 6] [010000] +08:15:42 [ 4] [ 12] [000030000000] +08:15:42 [ 7] [ 10] [0320081333] +08:15:42 [ 11] [ 6] [932314] +08:15:42 [ 12] [ 6] [081333] +08:15:42 [ 13] [ 4] [0320] +08:15:42 [ 15] [ 4] [0320] +08:15:42 [ 18] [ 4] [6011] +08:15:42 [ 19] [ 3] [418] +08:15:42 [ 22] [ 3] [021] +08:15:42 [ 25] [ 2] [01] +08:15:42 [ 28] [ 9] [D00002000] +08:15:42 [ 32] [ 6] [668899] +08:15:42 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:42 [ 37] [ 12] [507902435597] +08:15:42 [ 41] [ 8] [03020031] +08:15:42 [ 42] [ 15] [APT ] +08:15:42 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:15:42 [ 49] [ 3] [418] +08:15:42 [ 52] [ 16] [508A017068498B53] +08:15:42 ============================================================================ +08:15:42 + + +waiting on router queue for slot.... +08:15:42 Sending to : <0> +08:15:42 ============================================================================ +08:15:43 ============================================================================ +08:15:43 Slot Id : <242> +08:15:43 Transaction Type : RESPONSE +08:15:43 Received From : +08:15:43 ============================================================================ +08:15:43 FNo. Len. Field Value +08:15:43 ============================================================================ +08:15:43 [ 1] [ 4] [0210] +08:15:43 [ 2] [ 16] [6213544001794640] +08:15:43 [ 3] [ 6] [010000] +08:15:43 [ 4] [ 12] [000030000000] +08:15:43 [ 7] [ 10] [0320081333] +08:15:43 [ 11] [ 6] [932314] +08:15:43 [ 12] [ 6] [081333] +08:15:43 [ 13] [ 4] [0320] +08:15:43 [ 15] [ 4] [0320] +08:15:43 [ 18] [ 4] [6011] +08:15:43 [ 19] [ 3] [418] +08:15:43 [ 32] [ 6] [668899] +08:15:43 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:43 [ 37] [ 12] [507902435597] +08:15:43 [ 38] [ 6] [777234] +08:15:43 [ 39] [ 2] [00] +08:15:43 [ 41] [ 8] [03020031] +08:15:43 [ 49] [ 3] [418] +08:15:43 [ 54] [ 40] [0001418C0000245760570002418C000024576057] +08:15:43 ============================================================================ +08:15:43 Sending to : +08:15:43 ============================================================================ +08:15:43 + + +waiting on router queue for slot.... +08:15:44 ============================================================================ +08:15:44 Slot Id : <242> +08:15:44 Transaction Type : RESPONSE +08:15:44 Received From : +08:15:44 ============================================================================ +08:15:44 FNo. Len. Field Value +08:15:44 ============================================================================ +08:15:44 [ 1] [ 4] [0210] +08:15:44 [ 2] [ 16] [6213544001794640] +08:15:44 [ 3] [ 6] [010000] +08:15:44 [ 4] [ 12] [000030000000] +08:15:44 [ 7] [ 10] [0320081333] +08:15:44 [ 11] [ 6] [932314] +08:15:44 [ 12] [ 6] [081333] +08:15:44 [ 13] [ 4] [0320] +08:15:44 [ 15] [ 4] [0320] +08:15:44 [ 18] [ 4] [6011] +08:15:44 [ 19] [ 3] [418] +08:15:44 [ 32] [ 6] [668899] +08:15:44 [ 35] [ 32] [6213544001794640=491212019464370] +08:15:44 [ 37] [ 12] [507902435597] +08:15:44 [ 38] [ 6] [777234] +08:15:44 [ 39] [ 2] [00] +08:15:44 [ 41] [ 8] [03020031] +08:15:44 [ 49] [ 3] [418] +08:15:44 [ 54] [ 40] [0001418C0000245760570002418C000024576057] +08:15:44 ============================================================================ +08:15:44 Calculate Source COMM Id = 4 +08:15:44 ============================================================================ +08:15:44 + + +waiting on router queue for slot.... +08:15:44 ============================================================================ +08:15:44 Slot Id : <243> +08:15:44 Transaction Type : REQUEST +08:15:44 Received From : +08:15:44 ============================================================================ +08:15:44 FNo. Len. Field Value +08:15:44 ============================================================================ +08:15:44 [ 1] [ 4] [0800] +08:15:44 [ 7] [ 10] [0320011452] +08:15:44 [ 11] [ 6] [155359] +08:15:44 [ 70] [ 3] [301] +08:15:44 ============================================================================ +08:15:44 + + +waiting on router queue for slot.... +08:15:44 Sending to : +08:15:44 ============================================================================ +08:15:44 ============================================================================ +08:15:44 Slot Id : <243> +08:15:44 Transaction Type : RESPONSE +08:15:44 Received From : +08:15:44 ============================================================================ +08:15:44 FNo. Len. Field Value +08:15:44 ============================================================================ +08:15:44 [ 1] [ 4] [0810] +08:15:44 [ 7] [ 10] [0320011452] +08:15:44 [ 11] [ 6] [155359] +08:15:44 [ 39] [ 2] [00] +08:15:44 [ 70] [ 3] [301] +08:15:44 ============================================================================ +08:15:44 Calculate Source COMM Id = 2 +08:15:44 ============================================================================ +08:15:44 + + +waiting on router queue for slot.... +08:15:46 ============================================================================ +08:15:46 Slot Id : <235> +08:15:46 Transaction Type : REQUEST +08:15:46 Received From : +08:15:46 ============================================================================ +08:15:46 FNo. Len. Field Value +08:15:46 ============================================================================ +08:15:46 [ 1] [ 4] [0200] +08:15:46 [ 2] [ 16] [6688990108391507] +08:15:46 [ 3] [ 6] [010000] +08:15:46 [ 4] [ 12] [000100000000] +08:15:46 [ 7] [ 10] [0320081542] +08:15:46 [ 11] [ 6] [680990] +08:15:46 [ 12] [ 6] [081542] +08:15:46 [ 13] [ 4] [0320] +08:15:46 [ 15] [ 4] [0320] +08:15:46 [ 18] [ 4] [6011] +08:15:46 [ 22] [ 3] [900] +08:15:46 [ 25] [ 2] [02] +08:15:46 [ 28] [ 9] [D00002000] +08:15:46 [ 32] [ 6] [621354] +08:15:46 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:15:46 [ 37] [ 12] [507904719366] +08:15:46 [ 41] [ 8] [18001000] +08:15:46 [ 42] [ 15] [NATIVE ] +08:15:46 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:15:46 [ 49] [ 3] [418] +08:15:46 [ 52] [ 16] [50E9A6D4743FC41B] +08:15:46 ============================================================================ +08:15:46 + + +waiting on router queue for slot.... +08:15:46 Sending to : +08:15:46 ============================================================================ +08:15:46 Sending to : +08:15:46 ============================================================================ +08:15:46 ============================================================================ +08:15:46 Slot Id : <235> +08:15:46 Transaction Type : REQUEST +08:15:46 Received From : +08:15:46 ============================================================================ +08:15:46 FNo. Len. Field Value +08:15:46 ============================================================================ +08:15:46 [ 1] [ 4] [0200] +08:15:46 [ 2] [ 16] [6688990108391507] +08:15:46 [ 3] [ 6] [010000] +08:15:46 [ 4] [ 12] [000100000000] +08:15:46 [ 7] [ 10] [0320081542] +08:15:46 [ 11] [ 6] [680990] +08:15:46 [ 12] [ 6] [081542] +08:15:46 [ 13] [ 4] [0320] +08:15:46 [ 15] [ 4] [0320] +08:15:46 [ 18] [ 4] [6011] +08:15:46 [ 22] [ 3] [900] +08:15:46 [ 25] [ 2] [02] +08:15:46 [ 28] [ 9] [D00002000] +08:15:46 [ 32] [ 6] [621354] +08:15:46 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:15:46 [ 37] [ 12] [507904719366] +08:15:46 [ 41] [ 8] [18001000] +08:15:46 [ 42] [ 15] [NATIVE ] +08:15:46 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:15:46 [ 49] [ 3] [418] +08:15:46 [ 52] [ 16] [50E9A6D4743FC41B] +08:15:46 ============================================================================ +08:15:46 + + +waiting on router queue for slot.... +08:15:46 Sending to : +08:15:46 ============================================================================ +08:15:46 ============================================================================ +08:15:46 Slot Id : <235> +08:15:46 Transaction Type : REQUEST +08:15:46 Received From : +08:15:46 ============================================================================ +08:15:46 FNo. Len. Field Value +08:15:46 ============================================================================ +08:15:46 [ 1] [ 4] [0200] +08:15:46 [ 2] [ 16] [6688990108391507] +08:15:46 [ 3] [ 6] [010000] +08:15:46 [ 4] [ 12] [000100000000] +08:15:46 [ 7] [ 10] [0320081542] +08:15:46 [ 11] [ 6] [680990] +08:15:46 [ 12] [ 6] [081542] +08:15:46 [ 13] [ 4] [0320] +08:15:46 [ 15] [ 4] [0320] +08:15:46 [ 18] [ 4] [6011] +08:15:46 [ 22] [ 3] [900] +08:15:46 [ 25] [ 2] [02] +08:15:46 [ 28] [ 9] [D00002000] +08:15:46 [ 32] [ 6] [621354] +08:15:46 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:15:46 [ 37] [ 12] [507904719366] +08:15:46 [ 41] [ 8] [18001000] +08:15:46 [ 42] [ 15] [NATIVE ] +08:15:46 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:15:46 [ 49] [ 3] [418] +08:15:46 [ 52] [ 16] [6B472D7BCFE61048] +08:15:46 ============================================================================ +08:15:46 + + +waiting on router queue for slot.... +08:15:46 Sending to : <4> +08:15:46 ============================================================================ +08:15:48 ============================================================================ +08:15:48 Slot Id : <235> +08:15:48 Transaction Type : RESPONSE +08:15:48 Received From : +08:15:48 ============================================================================ +08:15:48 FNo. Len. Field Value +08:15:48 ============================================================================ +08:15:48 [ 1] [ 4] [0210] +08:15:48 [ 2] [ 16] [6688990108391507] +08:15:48 [ 3] [ 6] [010000] +08:15:48 [ 4] [ 12] [000100000000] +08:15:48 [ 11] [ 6] [680990] +08:15:48 [ 12] [ 6] [081542] +08:15:48 [ 15] [ 4] [0320] +08:15:48 [ 18] [ 4] [6011] +08:15:48 [ 32] [ 6] [621354] +08:15:48 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:15:48 [ 37] [ 12] [507904719366] +08:15:48 [ 38] [ 6] [029069] +08:15:48 [ 39] [ 2] [00] +08:15:48 [ 41] [ 8] [18001000] +08:15:48 [ 49] [ 3] [418] +08:15:48 [ 54] [ 20] [0002418C000102569643] +08:15:48 ============================================================================ +08:15:48 Sending to : +08:15:48 ============================================================================ +08:15:48 + + +waiting on router queue for slot.... +08:15:48 ============================================================================ +08:15:48 Slot Id : <248> +08:15:48 Transaction Type : REQUEST +08:15:48 Received From : +08:15:48 ============================================================================ +08:15:48 FNo. Len. Field Value +08:15:48 ============================================================================ +08:15:48 [ 1] [ 4] [0200] +08:15:48 [ 2] [ 16] [6688990108408301] +08:15:48 [ 3] [ 6] [011000] +08:15:48 [ 4] [ 12] [000100000000] +08:15:48 [ 7] [ 10] [0320081544] +08:15:48 [ 11] [ 6] [681001] +08:15:48 [ 12] [ 6] [081544] +08:15:48 [ 13] [ 4] [0320] +08:15:48 [ 15] [ 4] [0320] +08:15:48 [ 18] [ 4] [6011] +08:15:48 [ 22] [ 3] [900] +08:15:48 [ 25] [ 2] [02] +08:15:48 [ 28] [ 9] [D00002000] +08:15:48 [ 32] [ 6] [621354] +08:15:48 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:15:48 [ 37] [ 12] [507903226539] +08:15:48 [ 41] [ 8] [04003200] +08:15:48 [ 42] [ 15] [NATIVE ] +08:15:48 [ 43] [ 40] [DONKHONG Kong LAO] +08:15:48 [ 49] [ 3] [418] +08:15:48 [ 52] [ 16] [D4851EE20FD0A8AD] +08:15:48 ============================================================================ +08:15:48 + + +waiting on router queue for slot.... +08:15:48 Sending to : +08:15:48 ============================================================================ +08:15:48 Sending to : +08:15:48 ============================================================================ +08:15:48 ============================================================================ +08:15:48 Slot Id : <248> +08:15:48 Transaction Type : REQUEST +08:15:48 Received From : +08:15:48 ============================================================================ +08:15:48 FNo. Len. Field Value +08:15:48 ============================================================================ +08:15:48 [ 1] [ 4] [0200] +08:15:48 [ 2] [ 16] [6688990108408301] +08:15:48 [ 3] [ 6] [011000] +08:15:48 [ 4] [ 12] [000100000000] +08:15:48 [ 7] [ 10] [0320081544] +08:15:48 [ 11] [ 6] [681001] +08:15:48 [ 12] [ 6] [081544] +08:15:48 [ 13] [ 4] [0320] +08:15:48 [ 15] [ 4] [0320] +08:15:48 [ 18] [ 4] [6011] +08:15:48 [ 22] [ 3] [900] +08:15:48 [ 25] [ 2] [02] +08:15:48 [ 28] [ 9] [D00002000] +08:15:48 [ 32] [ 6] [621354] +08:15:48 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:15:48 [ 37] [ 12] [507903226539] +08:15:48 [ 41] [ 8] [04003200] +08:15:48 [ 42] [ 15] [NATIVE ] +08:15:48 [ 43] [ 40] [DONKHONG Kong LAO] +08:15:48 [ 49] [ 3] [418] +08:15:48 [ 52] [ 16] [D4851EE20FD0A8AD] +08:15:48 ============================================================================ +08:15:48 + + +waiting on router queue for slot.... +08:15:48 Sending to : +08:15:48 ============================================================================ +08:15:48 ============================================================================ +08:15:48 Slot Id : <248> +08:15:48 Transaction Type : REQUEST +08:15:48 Received From : +08:15:48 ============================================================================ +08:15:48 FNo. Len. Field Value +08:15:48 ============================================================================ +08:15:48 [ 1] [ 4] [0200] +08:15:48 [ 2] [ 16] [6688990108408301] +08:15:48 [ 3] [ 6] [011000] +08:15:48 [ 4] [ 12] [000100000000] +08:15:48 [ 7] [ 10] [0320081544] +08:15:48 [ 11] [ 6] [681001] +08:15:48 [ 12] [ 6] [081544] +08:15:48 [ 13] [ 4] [0320] +08:15:48 [ 15] [ 4] [0320] +08:15:48 [ 18] [ 4] [6011] +08:15:48 [ 22] [ 3] [900] +08:15:48 [ 25] [ 2] [02] +08:15:48 [ 28] [ 9] [D00002000] +08:15:48 [ 32] [ 6] [621354] +08:15:48 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:15:48 [ 37] [ 12] [507903226539] +08:15:48 [ 41] [ 8] [04003200] +08:15:48 [ 42] [ 15] [NATIVE ] +08:15:48 [ 43] [ 40] [DONKHONG Kong LAO] +08:15:48 [ 49] [ 3] [418] +08:15:48 [ 52] [ 16] [5D77FEE3FCAB5D64] +08:15:48 ============================================================================ +08:15:48 + + +waiting on router queue for slot.... +08:15:48 Sending to : <4> +08:15:48 ============================================================================ +08:15:49 ============================================================================ +08:15:49 Slot Id : <248> +08:15:49 Transaction Type : RESPONSE +08:15:49 Received From : +08:15:49 ============================================================================ +08:15:49 FNo. Len. Field Value +08:15:49 ============================================================================ +08:15:49 [ 1] [ 4] [0210] +08:15:49 [ 2] [ 16] [6688990108408301] +08:15:49 [ 3] [ 6] [011000] +08:15:49 [ 4] [ 12] [000100000000] +08:15:49 [ 11] [ 6] [681001] +08:15:49 [ 12] [ 6] [081544] +08:15:49 [ 15] [ 4] [0320] +08:15:49 [ 18] [ 4] [6011] +08:15:49 [ 32] [ 6] [621354] +08:15:49 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:15:49 [ 37] [ 12] [507903226539] +08:15:49 [ 38] [ 6] [134320] +08:15:49 [ 39] [ 2] [00] +08:15:49 [ 41] [ 8] [04003200] +08:15:49 [ 49] [ 3] [418] +08:15:49 [ 54] [ 20] [1002418C000289538358] +08:15:49 ============================================================================ +08:15:49 Sending to : +08:15:49 ============================================================================ +08:15:49 + + +waiting on router queue for slot.... +08:15:49 ============================================================================ +08:15:49 Slot Id : <235> +08:15:49 Transaction Type : RESPONSE +08:15:49 Received From : +08:15:49 ============================================================================ +08:15:49 FNo. Len. Field Value +08:15:49 ============================================================================ +08:15:49 [ 1] [ 4] [0210] +08:15:49 [ 2] [ 16] [6688990108391507] +08:15:49 [ 3] [ 6] [010000] +08:15:49 [ 4] [ 12] [000100000000] +08:15:49 [ 11] [ 6] [680990] +08:15:49 [ 12] [ 6] [081542] +08:15:49 [ 15] [ 4] [0320] +08:15:49 [ 18] [ 4] [6011] +08:15:49 [ 32] [ 6] [621354] +08:15:49 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:15:49 [ 37] [ 12] [507904719366] +08:15:49 [ 38] [ 6] [029069] +08:15:49 [ 39] [ 2] [00] +08:15:49 [ 41] [ 8] [18001000] +08:15:49 [ 49] [ 3] [418] +08:15:49 [ 54] [ 20] [0002418C000102569643] +08:15:49 ============================================================================ +08:15:49 Calculate Source COMM Id = 0 +08:15:49 ============================================================================ +08:15:49 + + +waiting on router queue for slot.... +08:15:51 ============================================================================ +08:15:51 Slot Id : <248> +08:15:51 Transaction Type : RESPONSE +08:15:51 Received From : +08:15:51 ============================================================================ +08:15:51 FNo. Len. Field Value +08:15:51 ============================================================================ +08:15:51 [ 1] [ 4] [0210] +08:15:51 [ 2] [ 16] [6688990108408301] +08:15:51 [ 3] [ 6] [011000] +08:15:51 [ 4] [ 12] [000100000000] +08:15:51 [ 11] [ 6] [681001] +08:15:51 [ 12] [ 6] [081544] +08:15:51 [ 15] [ 4] [0320] +08:15:51 [ 18] [ 4] [6011] +08:15:51 [ 32] [ 6] [621354] +08:15:51 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:15:51 [ 37] [ 12] [507903226539] +08:15:51 [ 38] [ 6] [134320] +08:15:51 [ 39] [ 2] [00] +08:15:51 [ 41] [ 8] [04003200] +08:15:51 [ 49] [ 3] [418] +08:15:51 [ 54] [ 20] [1002418C000289538358] +08:15:51 ============================================================================ +08:15:51 Calculate Source COMM Id = 0 +08:15:51 ============================================================================ +08:15:51 + + +waiting on router queue for slot.... +08:15:53 ============================================================================ +08:15:53 Slot Id : <244> +08:15:53 Transaction Type : REQUEST +08:15:53 Received From : +08:15:53 ============================================================================ +08:15:53 FNo. Len. Field Value +08:15:53 ============================================================================ +08:15:53 [ 1] [ 4] [0200] +08:15:53 [ 2] [ 16] [6213545001078934] +08:15:53 [ 3] [ 6] [010000] +08:15:53 [ 4] [ 12] [000100000000] +08:15:53 [ 7] [ 10] [0320081345] +08:15:53 [ 11] [ 6] [932331] +08:15:53 [ 12] [ 6] [081345] +08:15:53 [ 13] [ 4] [0320] +08:15:53 [ 15] [ 4] [0320] +08:15:53 [ 18] [ 4] [6011] +08:15:53 [ 19] [ 3] [418] +08:15:53 [ 22] [ 3] [021] +08:15:53 [ 25] [ 2] [01] +08:15:53 [ 28] [ 9] [D00002000] +08:15:53 [ 32] [ 6] [668899] +08:15:53 [ 35] [ 32] [6213545001078934=491212017893333] +08:15:53 [ 37] [ 12] [507901726911] +08:15:53 [ 41] [ 8] [03316002] +08:15:53 [ 42] [ 15] [APT ] +08:15:53 [ 43] [ 40] [ LAKORNPHENG UNIT LAKORNPH] +08:15:53 [ 49] [ 3] [418] +08:15:53 [ 52] [ 16] [D0362EE1D6640B17] +08:15:53 ============================================================================ +08:15:53 + + +waiting on router queue for slot.... +08:15:53 Sending to : +08:15:53 ============================================================================ +08:15:53 Sending to : +08:15:53 ============================================================================ +08:15:53 ============================================================================ +08:15:53 Slot Id : <244> +08:15:53 Transaction Type : REQUEST +08:15:53 Received From : +08:15:53 ============================================================================ +08:15:53 FNo. Len. Field Value +08:15:53 ============================================================================ +08:15:53 [ 1] [ 4] [0200] +08:15:53 [ 2] [ 16] [6213545001078934] +08:15:53 [ 3] [ 6] [010000] +08:15:53 [ 4] [ 12] [000100000000] +08:15:53 [ 7] [ 10] [0320081345] +08:15:53 [ 11] [ 6] [932331] +08:15:53 [ 12] [ 6] [081345] +08:15:53 [ 13] [ 4] [0320] +08:15:53 [ 15] [ 4] [0320] +08:15:53 [ 18] [ 4] [6011] +08:15:53 [ 19] [ 3] [418] +08:15:53 [ 22] [ 3] [021] +08:15:53 [ 25] [ 2] [01] +08:15:53 [ 28] [ 9] [D00002000] +08:15:53 [ 32] [ 6] [668899] +08:15:53 [ 35] [ 32] [6213545001078934=491212017893333] +08:15:53 [ 37] [ 12] [507901726911] +08:15:53 [ 41] [ 8] [03316002] +08:15:53 [ 42] [ 15] [APT ] +08:15:53 [ 43] [ 40] [ LAKORNPHENG UNIT LAKORNPH] +08:15:53 [ 49] [ 3] [418] +08:15:53 [ 52] [ 16] [D0362EE1D6640B17] +08:15:53 ============================================================================ +08:15:53 + + +waiting on router queue for slot.... +08:15:53 Sending to : +08:15:53 ============================================================================ +08:15:54 ============================================================================ +08:15:54 Slot Id : <227> +08:15:54 Transaction Type : REQUEST +08:15:54 Received From : +08:15:54 ============================================================================ +08:15:54 FNo. Len. Field Value +08:15:54 ============================================================================ +08:15:54 [ 1] [ 4] [0200] +08:15:54 [ 2] [ 16] [6688990030014276] +08:15:54 [ 3] [ 6] [010000] +08:15:54 [ 4] [ 12] [000100000000] +08:15:54 [ 7] [ 10] [0320081550] +08:15:54 [ 11] [ 6] [681027] +08:15:54 [ 12] [ 6] [081550] +08:15:54 [ 13] [ 4] [0320] +08:15:54 [ 15] [ 4] [0320] +08:15:54 [ 18] [ 4] [6011] +08:15:54 [ 22] [ 3] [900] +08:15:54 [ 25] [ 2] [02] +08:15:54 [ 28] [ 9] [D00002000] +08:15:54 [ 32] [ 6] [621354] +08:15:54 [ 35] [ 37] [6688990030014276=98041261562082400000] +08:15:54 [ 37] [ 12] [507903719166] +08:15:54 [ 41] [ 8] [01008900] +08:15:54 [ 42] [ 15] [NATIVE ] +08:15:54 [ 43] [ 40] [Thulakhom Service Unit Xaythany LAO] +08:15:54 [ 49] [ 3] [418] +08:15:54 [ 52] [ 16] [450E98A59D39D334] +08:15:54 ============================================================================ +08:15:54 + + +waiting on router queue for slot.... +08:15:54 Sending to : +08:15:54 ============================================================================ +08:15:54 Sending to : +08:15:54 ============================================================================ +08:15:54 ============================================================================ +08:15:54 Slot Id : <227> +08:15:54 Transaction Type : REQUEST +08:15:54 Received From : +08:15:54 ============================================================================ +08:15:54 FNo. Len. Field Value +08:15:54 ============================================================================ +08:15:54 [ 1] [ 4] [0200] +08:15:54 [ 2] [ 16] [6688990030014276] +08:15:54 [ 3] [ 6] [010000] +08:15:54 [ 4] [ 12] [000100000000] +08:15:54 [ 7] [ 10] [0320081550] +08:15:54 [ 11] [ 6] [681027] +08:15:54 [ 12] [ 6] [081550] +08:15:54 [ 13] [ 4] [0320] +08:15:54 [ 15] [ 4] [0320] +08:15:54 [ 18] [ 4] [6011] +08:15:54 [ 22] [ 3] [900] +08:15:54 [ 25] [ 2] [02] +08:15:54 [ 28] [ 9] [D00002000] +08:15:54 [ 32] [ 6] [621354] +08:15:54 [ 35] [ 37] [6688990030014276=98041261562082400000] +08:15:54 [ 37] [ 12] [507903719166] +08:15:54 [ 41] [ 8] [01008900] +08:15:54 [ 42] [ 15] [NATIVE ] +08:15:54 [ 43] [ 40] [Thulakhom Service Unit Xaythany LAO] +08:15:54 [ 49] [ 3] [418] +08:15:54 [ 52] [ 16] [450E98A59D39D334] +08:15:54 ============================================================================ +08:15:54 + + +waiting on router queue for slot.... +08:15:54 Sending to : +08:15:54 ============================================================================ +08:15:55 ============================================================================ +08:15:55 Slot Id : <251> +08:15:55 Transaction Type : REQUEST +08:15:55 Received From : +08:15:55 ============================================================================ +08:15:55 FNo. Len. Field Value +08:15:55 ============================================================================ +08:15:55 [ 1] [ 4] [0800] +08:15:55 [ 7] [ 10] [0320011503] +08:15:55 [ 11] [ 6] [155360] +08:15:55 [ 70] [ 3] [301] +08:15:55 ============================================================================ +08:15:55 + + +waiting on router queue for slot.... +08:15:55 Sending to : +08:15:55 ============================================================================ +08:15:55 ============================================================================ +08:15:55 Slot Id : <251> +08:15:55 Transaction Type : RESPONSE +08:15:55 Received From : +08:15:55 ============================================================================ +08:15:55 FNo. Len. Field Value +08:15:55 ============================================================================ +08:15:55 [ 1] [ 4] [0810] +08:15:55 [ 7] [ 10] [0320011503] +08:15:55 [ 11] [ 6] [155360] +08:15:55 [ 39] [ 2] [00] +08:15:55 [ 70] [ 3] [301] +08:15:55 ============================================================================ +08:15:55 Calculate Source COMM Id = 2 +08:15:55 ============================================================================ +08:15:55 + + +waiting on router queue for slot.... +08:15:56 ============================================================================ +08:15:56 Slot Id : <244> +08:15:56 Transaction Type : REQUEST +08:15:56 Received From : +08:15:56 ============================================================================ +08:15:56 FNo. Len. Field Value +08:15:56 ============================================================================ +08:15:56 [ 1] [ 4] [0200] +08:15:56 [ 2] [ 16] [6213545001078934] +08:15:56 [ 3] [ 6] [010000] +08:15:56 [ 4] [ 12] [000100000000] +08:15:56 [ 7] [ 10] [0320081345] +08:15:56 [ 11] [ 6] [932331] +08:15:56 [ 12] [ 6] [081345] +08:15:56 [ 13] [ 4] [0320] +08:15:56 [ 15] [ 4] [0320] +08:15:56 [ 18] [ 4] [6011] +08:15:56 [ 19] [ 3] [418] +08:15:56 [ 22] [ 3] [021] +08:15:56 [ 25] [ 2] [01] +08:15:56 [ 28] [ 9] [D00002000] +08:15:56 [ 32] [ 6] [668899] +08:15:56 [ 35] [ 32] [6213545001078934=491212017893333] +08:15:56 [ 37] [ 12] [507901726911] +08:15:56 [ 41] [ 8] [03316002] +08:15:56 [ 42] [ 15] [APT ] +08:15:56 [ 43] [ 40] [ LAKORNPHENG UNIT LAKORNPH] +08:15:56 [ 49] [ 3] [418] +08:15:56 [ 52] [ 16] [EB169AA0161B56D2] +08:15:56 ============================================================================ +08:15:56 + + +waiting on router queue for slot.... +08:15:56 Sending to : <0> +08:15:56 ============================================================================ +08:15:56 ============================================================================ +08:15:56 Slot Id : <227> +08:15:56 Transaction Type : REQUEST +08:15:56 Received From : +08:15:56 ============================================================================ +08:15:56 FNo. Len. Field Value +08:15:56 ============================================================================ +08:15:56 [ 1] [ 4] [0200] +08:15:56 [ 2] [ 16] [6688990030014276] +08:15:56 [ 3] [ 6] [010000] +08:15:56 [ 4] [ 12] [000100000000] +08:15:56 [ 7] [ 10] [0320081550] +08:15:56 [ 11] [ 6] [681027] +08:15:56 [ 12] [ 6] [081550] +08:15:56 [ 13] [ 4] [0320] +08:15:56 [ 15] [ 4] [0320] +08:15:56 [ 18] [ 4] [6011] +08:15:56 [ 22] [ 3] [900] +08:15:56 [ 25] [ 2] [02] +08:15:56 [ 28] [ 9] [D00002000] +08:15:56 [ 32] [ 6] [621354] +08:15:56 [ 35] [ 37] [6688990030014276=98041261562082400000] +08:15:56 [ 37] [ 12] [507903719166] +08:15:56 [ 41] [ 8] [01008900] +08:15:56 [ 42] [ 15] [NATIVE ] +08:15:56 [ 43] [ 40] [Thulakhom Service Unit Xaythany LAO] +08:15:56 [ 49] [ 3] [418] +08:15:56 [ 52] [ 16] [EA54A2C4AAF5B5FE] +08:15:56 ============================================================================ +08:15:56 + + +waiting on router queue for slot.... +08:15:56 Sending to : <4> +08:15:56 ============================================================================ +08:15:56 ============================================================================ +08:15:56 Slot Id : <244> +08:15:56 Transaction Type : RESPONSE +08:15:56 Received From : +08:15:56 ============================================================================ +08:15:56 FNo. Len. Field Value +08:15:56 ============================================================================ +08:15:56 [ 1] [ 4] [0210] +08:15:56 [ 2] [ 16] [6213545001078934] +08:15:56 [ 3] [ 6] [010000] +08:15:56 [ 4] [ 12] [000100000000] +08:15:56 [ 7] [ 10] [0320081345] +08:15:56 [ 11] [ 6] [932331] +08:15:56 [ 12] [ 6] [081345] +08:15:56 [ 13] [ 4] [0320] +08:15:56 [ 15] [ 4] [0320] +08:15:56 [ 18] [ 4] [6011] +08:15:56 [ 19] [ 3] [418] +08:15:56 [ 32] [ 6] [668899] +08:15:56 [ 35] [ 32] [6213545001078934=491212017893333] +08:15:56 [ 37] [ 12] [507901726911] +08:15:56 [ 38] [ 6] [347264] +08:15:56 [ 39] [ 2] [00] +08:15:56 [ 41] [ 8] [03316002] +08:15:56 [ 49] [ 3] [418] +08:15:56 [ 54] [ 40] [0001418C0004399730320002418C000439973032] +08:15:56 ============================================================================ +08:15:56 Sending to : +08:15:56 ============================================================================ +08:15:56 + + +waiting on router queue for slot.... +08:15:57 ============================================================================ +08:15:57 Slot Id : <227> +08:15:57 Transaction Type : RESPONSE +08:15:57 Received From : +08:15:57 ============================================================================ +08:15:57 FNo. Len. Field Value +08:15:57 ============================================================================ +08:15:57 [ 1] [ 4] [0210] +08:15:57 [ 2] [ 16] [6688990030014276] +08:15:57 [ 3] [ 6] [010000] +08:15:57 [ 4] [ 12] [000100000000] +08:15:57 [ 11] [ 6] [681027] +08:15:57 [ 12] [ 6] [081550] +08:15:57 [ 15] [ 4] [0320] +08:15:57 [ 18] [ 4] [6011] +08:15:57 [ 32] [ 6] [621354] +08:15:57 [ 35] [ 37] [6688990030014276=98041261562082400000] +08:15:57 [ 37] [ 12] [507903719166] +08:15:57 [ 38] [ 6] [532958] +08:15:57 [ 39] [ 2] [00] +08:15:57 [ 41] [ 8] [01008900] +08:15:57 [ 49] [ 3] [418] +08:15:57 [ 54] [ 20] [0002418C000520800000] +08:15:57 ============================================================================ +08:15:57 Sending to : +08:15:57 ============================================================================ +08:15:57 + + +waiting on router queue for slot.... +08:15:58 ============================================================================ +08:15:58 Slot Id : <244> +08:15:58 Transaction Type : RESPONSE +08:15:58 Received From : +08:15:58 ============================================================================ +08:15:58 FNo. Len. Field Value +08:15:58 ============================================================================ +08:15:58 [ 1] [ 4] [0210] +08:15:58 [ 2] [ 16] [6213545001078934] +08:15:58 [ 3] [ 6] [010000] +08:15:58 [ 4] [ 12] [000100000000] +08:15:58 [ 7] [ 10] [0320081345] +08:15:58 [ 11] [ 6] [932331] +08:15:58 [ 12] [ 6] [081345] +08:15:58 [ 13] [ 4] [0320] +08:15:58 [ 15] [ 4] [0320] +08:15:58 [ 18] [ 4] [6011] +08:15:58 [ 19] [ 3] [418] +08:15:58 [ 32] [ 6] [668899] +08:15:58 [ 35] [ 32] [6213545001078934=491212017893333] +08:15:58 [ 37] [ 12] [507901726911] +08:15:58 [ 38] [ 6] [347264] +08:15:58 [ 39] [ 2] [00] +08:15:58 [ 41] [ 8] [03316002] +08:15:58 [ 49] [ 3] [418] +08:15:58 [ 54] [ 40] [0001418C0004399730320002418C000439973032] +08:15:58 ============================================================================ +08:15:58 Calculate Source COMM Id = 4 +08:15:58 ============================================================================ +08:15:58 + + +waiting on router queue for slot.... +08:16:00 ============================================================================ +08:16:00 Slot Id : <227> +08:16:00 Transaction Type : RESPONSE +08:16:00 Received From : +08:16:00 ============================================================================ +08:16:00 FNo. Len. Field Value +08:16:00 ============================================================================ +08:16:00 [ 1] [ 4] [0210] +08:16:00 [ 2] [ 16] [6688990030014276] +08:16:00 [ 3] [ 6] [010000] +08:16:00 [ 4] [ 12] [000100000000] +08:16:00 [ 11] [ 6] [681027] +08:16:00 [ 12] [ 6] [081550] +08:16:00 [ 15] [ 4] [0320] +08:16:00 [ 18] [ 4] [6011] +08:16:00 [ 32] [ 6] [621354] +08:16:00 [ 35] [ 37] [6688990030014276=98041261562082400000] +08:16:00 [ 37] [ 12] [507903719166] +08:16:00 [ 38] [ 6] [532958] +08:16:00 [ 39] [ 2] [00] +08:16:00 [ 41] [ 8] [01008900] +08:16:00 [ 49] [ 3] [418] +08:16:00 [ 54] [ 20] [0002418C000520800000] +08:16:00 ============================================================================ +08:16:00 Calculate Source COMM Id = 0 +08:16:00 ============================================================================ +08:16:00 + + +waiting on router queue for slot.... +08:16:10 ============================================================================ +08:16:10 Slot Id : <250> +08:16:10 Transaction Type : REQUEST +08:16:10 Received From : +08:16:10 ============================================================================ +08:16:10 FNo. Len. Field Value +08:16:10 ============================================================================ +08:16:10 [ 1] [ 4] [0800] +08:16:10 [ 7] [ 10] [0320011518] +08:16:10 [ 11] [ 6] [155361] +08:16:10 [ 70] [ 3] [301] +08:16:10 ============================================================================ +08:16:10 + + +waiting on router queue for slot.... +08:16:10 Sending to : +08:16:10 ============================================================================ +08:16:10 ============================================================================ +08:16:10 Slot Id : <250> +08:16:10 Transaction Type : RESPONSE +08:16:10 Received From : +08:16:10 ============================================================================ +08:16:10 FNo. Len. Field Value +08:16:10 ============================================================================ +08:16:10 [ 1] [ 4] [0810] +08:16:10 [ 7] [ 10] [0320011518] +08:16:10 [ 11] [ 6] [155361] +08:16:10 [ 39] [ 2] [00] +08:16:10 [ 70] [ 3] [301] +08:16:10 ============================================================================ +08:16:10 Calculate Source COMM Id = 2 +08:16:10 ============================================================================ +08:16:10 + + +waiting on router queue for slot.... +08:16:13 ============================================================================ +08:16:13 Slot Id : <200> +08:16:13 Transaction Type : REQUEST +08:16:13 Received From : +08:16:13 ============================================================================ +08:16:13 FNo. Len. Field Value +08:16:13 ============================================================================ +08:16:13 [ 1] [ 4] [0200] +08:16:13 [ 2] [ 16] [6213545000418313] +08:16:13 [ 3] [ 6] [311000] +08:16:13 [ 4] [ 12] [000000000000] +08:16:13 [ 7] [ 10] [0320082401] +08:16:13 [ 11] [ 6] [001928] +08:16:13 [ 12] [ 6] [082401] +08:16:13 [ 13] [ 4] [0320] +08:16:13 [ 14] [ 4] [4912] +08:16:13 [ 15] [ 4] [0320] +08:16:13 [ 18] [ 4] [6011] +08:16:13 [ 22] [ 3] [900] +08:16:13 [ 25] [ 2] [02] +08:16:13 [ 28] [ 9] [000000000] +08:16:13 [ 32] [ 6] [220699] +08:16:13 [ 35] [ 32] [6213545000418313=491212011831004] +08:16:13 [ 37] [ 12] [507900296926] +08:16:13 [ 41] [ 8] [01001600] +08:16:13 [ 42] [ 15] [APTRA ] +08:16:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:16:13 [ 49] [ 3] [418] +08:16:13 [ 52] [ 16] [F1EFF3C7BB552A5C] +08:16:13 ============================================================================ +08:16:13 + + +waiting on router queue for slot.... +08:16:13 Sending to : +08:16:13 ============================================================================ +08:16:13 Sending to : +08:16:13 ============================================================================ +08:16:14 ============================================================================ +08:16:14 Slot Id : <200> +08:16:14 Transaction Type : REQUEST +08:16:14 Received From : +08:16:14 ============================================================================ +08:16:14 FNo. Len. Field Value +08:16:14 ============================================================================ +08:16:14 [ 1] [ 4] [0200] +08:16:14 [ 2] [ 16] [6213545000418313] +08:16:14 [ 3] [ 6] [311000] +08:16:14 [ 4] [ 12] [000000000000] +08:16:14 [ 7] [ 10] [0320082401] +08:16:14 [ 11] [ 6] [001928] +08:16:14 [ 12] [ 6] [082401] +08:16:14 [ 13] [ 4] [0320] +08:16:14 [ 14] [ 4] [4912] +08:16:14 [ 15] [ 4] [0320] +08:16:14 [ 18] [ 4] [6011] +08:16:14 [ 22] [ 3] [900] +08:16:14 [ 25] [ 2] [02] +08:16:14 [ 28] [ 9] [000000000] +08:16:14 [ 32] [ 6] [220699] +08:16:14 [ 35] [ 32] [6213545000418313=491212011831004] +08:16:14 [ 37] [ 12] [507900296926] +08:16:14 [ 41] [ 8] [01001600] +08:16:14 [ 42] [ 15] [APTRA ] +08:16:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:16:14 [ 49] [ 3] [418] +08:16:14 [ 52] [ 16] [F1EFF3C7BB552A5C] +08:16:14 ============================================================================ +08:16:14 + + +waiting on router queue for slot.... +08:16:14 Sending to : +08:16:14 ============================================================================ +08:16:14 ============================================================================ +08:16:14 Slot Id : <200> +08:16:14 Transaction Type : REQUEST +08:16:14 Received From : +08:16:14 ============================================================================ +08:16:14 FNo. Len. Field Value +08:16:14 ============================================================================ +08:16:14 [ 1] [ 4] [0200] +08:16:14 [ 2] [ 16] [6213545000418313] +08:16:14 [ 3] [ 6] [311000] +08:16:14 [ 4] [ 12] [000000000000] +08:16:14 [ 7] [ 10] [0320082401] +08:16:14 [ 11] [ 6] [001928] +08:16:14 [ 12] [ 6] [082401] +08:16:14 [ 13] [ 4] [0320] +08:16:14 [ 14] [ 4] [4912] +08:16:14 [ 15] [ 4] [0320] +08:16:14 [ 18] [ 4] [6011] +08:16:14 [ 22] [ 3] [900] +08:16:14 [ 25] [ 2] [02] +08:16:14 [ 28] [ 9] [000000000] +08:16:14 [ 32] [ 6] [220699] +08:16:14 [ 35] [ 32] [6213545000418313=491212011831004] +08:16:14 [ 37] [ 12] [507900296926] +08:16:14 [ 41] [ 8] [01001600] +08:16:14 [ 42] [ 15] [APTRA ] +08:16:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:16:14 [ 49] [ 3] [418] +08:16:14 [ 52] [ 16] [87A7B23E34CCFC4E] +08:16:14 ============================================================================ +08:16:14 + + +waiting on router queue for slot.... +08:16:14 Sending to : <0> +08:16:14 ============================================================================ +08:16:14 ============================================================================ +08:16:14 Slot Id : <200> +08:16:14 Transaction Type : RESPONSE +08:16:14 Received From : +08:16:14 ============================================================================ +08:16:14 FNo. Len. Field Value +08:16:14 ============================================================================ +08:16:14 [ 1] [ 4] [0210] +08:16:14 [ 2] [ 16] [6213545000418313] +08:16:14 [ 3] [ 6] [311000] +08:16:14 [ 4] [ 12] [000000000000] +08:16:14 [ 7] [ 10] [0320082401] +08:16:14 [ 11] [ 6] [001928] +08:16:14 [ 12] [ 6] [082401] +08:16:14 [ 13] [ 4] [0320] +08:16:14 [ 15] [ 4] [0320] +08:16:14 [ 18] [ 4] [6011] +08:16:14 [ 32] [ 6] [220699] +08:16:14 [ 35] [ 32] [6213545000418313=491212011831004] +08:16:14 [ 37] [ 12] [507900296926] +08:16:14 [ 38] [ 6] [604725] +08:16:14 [ 39] [ 2] [00] +08:16:14 [ 41] [ 8] [01001600] +08:16:14 [ 49] [ 3] [418] +08:16:14 [ 54] [ 40] [1001418C0003034370341002418C000303437034] +08:16:14 ============================================================================ +08:16:14 Sending to : +08:16:14 ============================================================================ +08:16:14 + + +waiting on router queue for slot.... +08:16:16 ============================================================================ +08:16:16 Slot Id : <255> +08:16:16 Transaction Type : REQUEST +08:16:16 Received From : +08:16:16 ============================================================================ +08:16:16 FNo. Len. Field Value +08:16:16 ============================================================================ +08:16:16 [ 1] [ 4] [0800] +08:16:16 [ 7] [ 10] [0320152804] +08:16:16 [ 11] [ 6] [082804] +08:16:16 [ 37] [ 12] [57908082804] +08:16:16 [ 70] [ 3] [301] +08:16:16 ============================================================================ +08:16:16 + + +waiting on router queue for slot.... +08:16:16 Sending to : +08:16:16 ============================================================================ +08:16:16 ============================================================================ +08:16:16 Slot Id : <255> +08:16:16 Transaction Type : RESPONSE +08:16:16 Received From : +08:16:16 ============================================================================ +08:16:16 FNo. Len. Field Value +08:16:16 ============================================================================ +08:16:16 [ 1] [ 4] [0810] +08:16:16 [ 7] [ 10] [0320152804] +08:16:16 [ 11] [ 6] [082804] +08:16:16 [ 37] [ 12] [579080828040] +08:16:16 [ 39] [ 2] [00] +08:16:16 [ 70] [ 3] [810] +08:16:16 ============================================================================ +08:16:16 Calculate Source COMM Id = 6 +08:16:16 ============================================================================ +08:16:16 + + +waiting on router queue for slot.... +08:16:16 ============================================================================ +08:16:16 Slot Id : <200> +08:16:16 Transaction Type : RESPONSE +08:16:16 Received From : +08:16:16 ============================================================================ +08:16:16 FNo. Len. Field Value +08:16:16 ============================================================================ +08:16:16 [ 1] [ 4] [0210] +08:16:16 [ 2] [ 16] [6213545000418313] +08:16:16 [ 3] [ 6] [311000] +08:16:16 [ 4] [ 12] [000000000000] +08:16:16 [ 7] [ 10] [0320082401] +08:16:16 [ 11] [ 6] [001928] +08:16:16 [ 12] [ 6] [082401] +08:16:16 [ 13] [ 4] [0320] +08:16:16 [ 15] [ 4] [0320] +08:16:16 [ 18] [ 4] [6011] +08:16:16 [ 32] [ 6] [220699] +08:16:16 [ 35] [ 32] [6213545000418313=491212011831004] +08:16:16 [ 37] [ 12] [507900296926] +08:16:16 [ 38] [ 6] [604725] +08:16:16 [ 39] [ 2] [00] +08:16:16 [ 41] [ 8] [01001600] +08:16:16 [ 49] [ 3] [418] +08:16:16 [ 54] [ 40] [1001418C0003034370341002418C000303437034] +08:16:16 ============================================================================ +08:16:16 Calculate Source COMM Id = 1 +08:16:16 ============================================================================ +08:16:16 + + +waiting on router queue for slot.... +08:16:20 ============================================================================ +08:16:20 Slot Id : <226> +08:16:20 Transaction Type : REQUEST +08:16:20 Received From : +08:16:20 ============================================================================ +08:16:20 FNo. Len. Field Value +08:16:20 ============================================================================ +08:16:20 [ 1] [ 4] [0800] +08:16:20 [ 7] [ 10] [0320011412] +08:16:20 [ 11] [ 6] [033056] +08:16:20 [ 37] [ 12] [57908033056] +08:16:20 [ 70] [ 3] [301] +08:16:20 ============================================================================ +08:16:20 + + +waiting on router queue for slot.... +08:16:20 Sending to : +08:16:20 ============================================================================ +08:16:20 ============================================================================ +08:16:20 Slot Id : <226> +08:16:20 Transaction Type : RESPONSE +08:16:20 Received From : +08:16:20 ============================================================================ +08:16:20 FNo. Len. Field Value +08:16:20 ============================================================================ +08:16:20 [ 1] [ 4] [0810] +08:16:20 [ 7] [ 10] [0320011412] +08:16:20 [ 11] [ 6] [033056] +08:16:20 [ 37] [ 12] [579080330560] +08:16:20 [ 39] [ 2] [00] +08:16:20 [ 70] [ 3] [810] +08:16:20 ============================================================================ +08:16:20 Calculate Source COMM Id = 4 +08:16:20 ============================================================================ +08:16:20 + + +waiting on router queue for slot.... +08:16:20 ============================================================================ +08:16:20 Slot Id : <233> +08:16:20 Transaction Type : REQUEST +08:16:20 Received From : +08:16:20 ============================================================================ +08:16:20 FNo. Len. Field Value +08:16:20 ============================================================================ +08:16:20 [ 1] [ 4] [0200] +08:16:20 [ 2] [ 16] [6213548000054112] +08:16:20 [ 3] [ 6] [011000] +08:16:20 [ 4] [ 12] [000004000000] +08:16:20 [ 7] [ 10] [0320082408] +08:16:20 [ 11] [ 6] [153713] +08:16:20 [ 12] [ 6] [082408] +08:16:20 [ 13] [ 4] [0320] +08:16:20 [ 14] [ 4] [1307] +08:16:20 [ 15] [ 4] [0320] +08:16:20 [ 18] [ 4] [6011] +08:16:20 [ 22] [ 3] [900] +08:16:20 [ 25] [ 2] [02] +08:16:20 [ 28] [ 9] [D00002000] +08:16:20 [ 32] [ 6] [220699] +08:16:20 [ 35] [ 32] [6213548000054112=130712015411846] +08:16:20 [ 37] [ 12] [507900035463] +08:16:20 [ 41] [ 8] [01000300] +08:16:20 [ 42] [ 15] [APTRA ] +08:16:20 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:16:20 [ 49] [ 3] [418] +08:16:20 [ 52] [ 16] [C8B27443F0C73A9A] +08:16:20 ============================================================================ +08:16:20 + + +waiting on router queue for slot.... +08:16:20 Sending to : +08:16:20 ============================================================================ +08:16:20 Sending to : +08:16:20 ============================================================================ +08:16:21 ============================================================================ +08:16:21 Slot Id : <233> +08:16:21 Transaction Type : REQUEST +08:16:21 Received From : +08:16:21 ============================================================================ +08:16:21 FNo. Len. Field Value +08:16:21 ============================================================================ +08:16:21 [ 1] [ 4] [0200] +08:16:21 [ 2] [ 16] [6213548000054112] +08:16:21 [ 3] [ 6] [011000] +08:16:21 [ 4] [ 12] [000004000000] +08:16:21 [ 7] [ 10] [0320082408] +08:16:21 [ 11] [ 6] [153713] +08:16:21 [ 12] [ 6] [082408] +08:16:21 [ 13] [ 4] [0320] +08:16:21 [ 14] [ 4] [1307] +08:16:21 [ 15] [ 4] [0320] +08:16:21 [ 18] [ 4] [6011] +08:16:21 [ 22] [ 3] [900] +08:16:21 [ 25] [ 2] [02] +08:16:21 [ 28] [ 9] [D00002000] +08:16:21 [ 32] [ 6] [220699] +08:16:21 [ 35] [ 32] [6213548000054112=130712015411846] +08:16:21 [ 37] [ 12] [507900035463] +08:16:21 [ 41] [ 8] [01000300] +08:16:21 [ 42] [ 15] [APTRA ] +08:16:21 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:16:21 [ 49] [ 3] [418] +08:16:21 [ 52] [ 16] [C8B27443F0C73A9A] +08:16:21 ============================================================================ +08:16:21 + + +waiting on router queue for slot.... +08:16:21 Sending to : +08:16:21 ============================================================================ +08:16:21 ============================================================================ +08:16:21 Slot Id : <233> +08:16:21 Transaction Type : REQUEST +08:16:21 Received From : +08:16:21 ============================================================================ +08:16:21 FNo. Len. Field Value +08:16:21 ============================================================================ +08:16:21 [ 1] [ 4] [0200] +08:16:21 [ 2] [ 16] [6213548000054112] +08:16:21 [ 3] [ 6] [011000] +08:16:21 [ 4] [ 12] [000004000000] +08:16:21 [ 7] [ 10] [0320082408] +08:16:21 [ 11] [ 6] [153713] +08:16:21 [ 12] [ 6] [082408] +08:16:21 [ 13] [ 4] [0320] +08:16:21 [ 14] [ 4] [1307] +08:16:21 [ 15] [ 4] [0320] +08:16:21 [ 18] [ 4] [6011] +08:16:21 [ 22] [ 3] [900] +08:16:21 [ 25] [ 2] [02] +08:16:21 [ 28] [ 9] [D00002000] +08:16:21 [ 32] [ 6] [220699] +08:16:21 [ 35] [ 32] [6213548000054112=130712015411846] +08:16:21 [ 37] [ 12] [507900035463] +08:16:21 [ 41] [ 8] [01000300] +08:16:21 [ 42] [ 15] [APTRA ] +08:16:21 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:16:21 [ 49] [ 3] [418] +08:16:21 [ 52] [ 16] [B4A37BA43795ABDB] +08:16:21 ============================================================================ +08:16:21 + + +waiting on router queue for slot.... +08:16:21 Sending to : <0> +08:16:21 ============================================================================ +08:16:21 ============================================================================ +08:16:21 Slot Id : <238> +08:16:21 Transaction Type : REQUEST +08:16:21 Received From : +08:16:21 ============================================================================ +08:16:21 FNo. Len. Field Value +08:16:21 ============================================================================ +08:16:21 [ 1] [ 4] [0800] +08:16:21 [ 7] [ 10] [0320011529] +08:16:21 [ 11] [ 6] [155362] +08:16:21 [ 70] [ 3] [301] +08:16:21 ============================================================================ +08:16:21 + + +waiting on router queue for slot.... +08:16:21 Sending to : +08:16:21 ============================================================================ +08:16:21 ============================================================================ +08:16:21 Slot Id : <238> +08:16:21 Transaction Type : RESPONSE +08:16:21 Received From : +08:16:21 ============================================================================ +08:16:21 FNo. Len. Field Value +08:16:21 ============================================================================ +08:16:21 [ 1] [ 4] [0810] +08:16:21 [ 7] [ 10] [0320011529] +08:16:21 [ 11] [ 6] [155362] +08:16:21 [ 39] [ 2] [00] +08:16:21 [ 70] [ 3] [301] +08:16:21 ============================================================================ +08:16:21 Calculate Source COMM Id = 2 +08:16:21 ============================================================================ +08:16:21 + + +waiting on router queue for slot.... +08:16:21 ============================================================================ +08:16:21 Slot Id : <233> +08:16:21 Transaction Type : RESPONSE +08:16:21 Received From : +08:16:21 ============================================================================ +08:16:21 FNo. Len. Field Value +08:16:21 ============================================================================ +08:16:21 [ 1] [ 4] [0210] +08:16:21 [ 2] [ 16] [6213548000054112] +08:16:21 [ 3] [ 6] [011000] +08:16:21 [ 4] [ 12] [000004000000] +08:16:21 [ 7] [ 10] [0320082408] +08:16:21 [ 11] [ 6] [153713] +08:16:21 [ 12] [ 6] [082408] +08:16:21 [ 13] [ 4] [0320] +08:16:21 [ 15] [ 4] [0320] +08:16:21 [ 18] [ 4] [6011] +08:16:21 [ 32] [ 6] [220699] +08:16:21 [ 35] [ 32] [6213548000054112=130712015411846] +08:16:21 [ 37] [ 12] [507900035463] +08:16:21 [ 38] [ 6] [410266] +08:16:21 [ 39] [ 2] [00] +08:16:21 [ 41] [ 8] [01000300] +08:16:21 [ 49] [ 3] [418] +08:16:21 [ 54] [ 40] [1001418C0000050710831002418C000005071083] +08:16:21 ============================================================================ +08:16:21 Sending to : +08:16:21 ============================================================================ +08:16:21 + + +waiting on router queue for slot.... +08:16:23 ============================================================================ +08:16:23 Slot Id : <233> +08:16:23 Transaction Type : RESPONSE +08:16:23 Received From : +08:16:23 ============================================================================ +08:16:23 FNo. Len. Field Value +08:16:23 ============================================================================ +08:16:23 [ 1] [ 4] [0210] +08:16:23 [ 2] [ 16] [6213548000054112] +08:16:23 [ 3] [ 6] [011000] +08:16:23 [ 4] [ 12] [000004000000] +08:16:23 [ 7] [ 10] [0320082408] +08:16:23 [ 11] [ 6] [153713] +08:16:23 [ 12] [ 6] [082408] +08:16:23 [ 13] [ 4] [0320] +08:16:23 [ 15] [ 4] [0320] +08:16:23 [ 18] [ 4] [6011] +08:16:23 [ 32] [ 6] [220699] +08:16:23 [ 35] [ 32] [6213548000054112=130712015411846] +08:16:23 [ 37] [ 12] [507900035463] +08:16:23 [ 38] [ 6] [410266] +08:16:23 [ 39] [ 2] [00] +08:16:23 [ 41] [ 8] [01000300] +08:16:23 [ 49] [ 3] [418] +08:16:23 [ 54] [ 40] [1001418C0000050710831002418C000005071083] +08:16:23 ============================================================================ +08:16:23 Calculate Source COMM Id = 1 +08:16:23 ============================================================================ +08:16:23 + + +waiting on router queue for slot.... +08:16:29 ============================================================================ +08:16:29 Slot Id : <216> +08:16:29 Transaction Type : REQUEST +08:16:29 Received From : +08:16:29 ============================================================================ +08:16:29 FNo. Len. Field Value +08:16:29 ============================================================================ +08:16:29 [ 1] [ 4] [0200] +08:16:29 [ 2] [ 16] [6213544001794640] +08:16:29 [ 3] [ 6] [010000] +08:16:29 [ 4] [ 12] [000020000000] +08:16:29 [ 7] [ 10] [0320081420] +08:16:29 [ 11] [ 6] [932362] +08:16:29 [ 12] [ 6] [081420] +08:16:29 [ 13] [ 4] [0320] +08:16:29 [ 15] [ 4] [0320] +08:16:29 [ 18] [ 4] [6011] +08:16:29 [ 19] [ 3] [418] +08:16:29 [ 22] [ 3] [021] +08:16:29 [ 25] [ 2] [01] +08:16:29 [ 28] [ 9] [D00002000] +08:16:29 [ 32] [ 6] [668899] +08:16:29 [ 35] [ 32] [6213544001794640=491212019464370] +08:16:29 [ 37] [ 12] [507902435599] +08:16:29 [ 41] [ 8] [03020031] +08:16:29 [ 42] [ 15] [APT ] +08:16:29 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:16:29 [ 49] [ 3] [418] +08:16:29 [ 52] [ 16] [3D87841A3D092293] +08:16:29 ============================================================================ +08:16:29 + + +waiting on router queue for slot.... +08:16:29 Sending to : +08:16:29 ============================================================================ +08:16:29 Sending to : +08:16:29 ============================================================================ +08:16:29 ============================================================================ +08:16:29 Slot Id : <216> +08:16:29 Transaction Type : REQUEST +08:16:29 Received From : +08:16:29 ============================================================================ +08:16:29 FNo. Len. Field Value +08:16:29 ============================================================================ +08:16:29 [ 1] [ 4] [0200] +08:16:29 [ 2] [ 16] [6213544001794640] +08:16:29 [ 3] [ 6] [010000] +08:16:29 [ 4] [ 12] [000020000000] +08:16:29 [ 7] [ 10] [0320081420] +08:16:29 [ 11] [ 6] [932362] +08:16:29 [ 12] [ 6] [081420] +08:16:29 [ 13] [ 4] [0320] +08:16:29 [ 15] [ 4] [0320] +08:16:29 [ 18] [ 4] [6011] +08:16:29 [ 19] [ 3] [418] +08:16:29 [ 22] [ 3] [021] +08:16:29 [ 25] [ 2] [01] +08:16:29 [ 28] [ 9] [D00002000] +08:16:29 [ 32] [ 6] [668899] +08:16:29 [ 35] [ 32] [6213544001794640=491212019464370] +08:16:29 [ 37] [ 12] [507902435599] +08:16:29 [ 41] [ 8] [03020031] +08:16:29 [ 42] [ 15] [APT ] +08:16:29 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:16:29 [ 49] [ 3] [418] +08:16:29 [ 52] [ 16] [3D87841A3D092293] +08:16:29 ============================================================================ +08:16:29 + + +waiting on router queue for slot.... +08:16:29 Sending to : +08:16:29 ============================================================================ +08:16:29 ============================================================================ +08:16:29 Slot Id : <216> +08:16:29 Transaction Type : REQUEST +08:16:29 Received From : +08:16:29 ============================================================================ +08:16:29 FNo. Len. Field Value +08:16:29 ============================================================================ +08:16:29 [ 1] [ 4] [0200] +08:16:29 [ 2] [ 16] [6213544001794640] +08:16:29 [ 3] [ 6] [010000] +08:16:29 [ 4] [ 12] [000020000000] +08:16:29 [ 7] [ 10] [0320081420] +08:16:29 [ 11] [ 6] [932362] +08:16:29 [ 12] [ 6] [081420] +08:16:29 [ 13] [ 4] [0320] +08:16:29 [ 15] [ 4] [0320] +08:16:29 [ 18] [ 4] [6011] +08:16:29 [ 19] [ 3] [418] +08:16:29 [ 22] [ 3] [021] +08:16:29 [ 25] [ 2] [01] +08:16:29 [ 28] [ 9] [D00002000] +08:16:29 [ 32] [ 6] [668899] +08:16:29 [ 35] [ 32] [6213544001794640=491212019464370] +08:16:29 [ 37] [ 12] [507902435599] +08:16:29 [ 41] [ 8] [03020031] +08:16:29 [ 42] [ 15] [APT ] +08:16:29 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:16:29 [ 49] [ 3] [418] +08:16:29 [ 52] [ 16] [BF6B4C14DF04F035] +08:16:29 ============================================================================ +08:16:29 + + +waiting on router queue for slot.... +08:16:29 Sending to : <0> +08:16:29 ============================================================================ +08:16:29 ============================================================================ +08:16:29 Slot Id : <216> +08:16:29 Transaction Type : RESPONSE +08:16:29 Received From : +08:16:29 ============================================================================ +08:16:29 FNo. Len. Field Value +08:16:29 ============================================================================ +08:16:29 [ 1] [ 4] [0210] +08:16:29 [ 2] [ 16] [6213544001794640] +08:16:29 [ 3] [ 6] [010000] +08:16:29 [ 4] [ 12] [000020000000] +08:16:29 [ 7] [ 10] [0320081420] +08:16:29 [ 11] [ 6] [932362] +08:16:29 [ 12] [ 6] [081420] +08:16:29 [ 13] [ 4] [0320] +08:16:29 [ 15] [ 4] [0320] +08:16:29 [ 18] [ 4] [6011] +08:16:29 [ 19] [ 3] [418] +08:16:29 [ 22] [ 3] [021] +08:16:29 [ 32] [ 6] [668899] +08:16:29 [ 35] [ 32] [6213544001794640=491212019464370] +08:16:29 [ 37] [ 12] [507902435599] +08:16:29 [ 38] [ 6] [081626] +08:16:29 [ 39] [ 2] [55] +08:16:29 [ 41] [ 8] [03020031] +08:16:29 [ 49] [ 3] [418] +08:16:29 ============================================================================ +08:16:29 Sending to : +08:16:29 ============================================================================ +08:16:29 + + +waiting on router queue for slot.... +08:16:31 ============================================================================ +08:16:31 Slot Id : <216> +08:16:31 Transaction Type : RESPONSE +08:16:31 Received From : +08:16:31 ============================================================================ +08:16:31 FNo. Len. Field Value +08:16:31 ============================================================================ +08:16:31 [ 1] [ 4] [0210] +08:16:31 [ 2] [ 16] [6213544001794640] +08:16:31 [ 3] [ 6] [010000] +08:16:31 [ 4] [ 12] [000020000000] +08:16:31 [ 7] [ 10] [0320081420] +08:16:31 [ 11] [ 6] [932362] +08:16:31 [ 12] [ 6] [081420] +08:16:31 [ 13] [ 4] [0320] +08:16:31 [ 15] [ 4] [0320] +08:16:31 [ 18] [ 4] [6011] +08:16:31 [ 19] [ 3] [418] +08:16:31 [ 22] [ 3] [021] +08:16:31 [ 32] [ 6] [668899] +08:16:31 [ 35] [ 32] [6213544001794640=491212019464370] +08:16:31 [ 37] [ 12] [507902435599] +08:16:31 [ 38] [ 6] [081626] +08:16:31 [ 39] [ 2] [55] +08:16:31 [ 41] [ 8] [03020031] +08:16:31 [ 49] [ 3] [418] +08:16:31 ============================================================================ +08:16:31 Calculate Source COMM Id = 4 +08:16:31 ============================================================================ +08:16:31 + + +waiting on router queue for slot.... +08:16:33 ============================================================================ +08:16:33 Slot Id : <237> +08:16:33 Transaction Type : REQUEST +08:16:33 Received From : +08:16:33 ============================================================================ +08:16:33 FNo. Len. Field Value +08:16:33 ============================================================================ +08:16:33 [ 1] [ 4] [0800] +08:16:33 [ 7] [ 10] [0320011540] +08:16:33 [ 11] [ 6] [155363] +08:16:33 [ 70] [ 3] [301] +08:16:33 ============================================================================ +08:16:33 + + +waiting on router queue for slot.... +08:16:33 Sending to : +08:16:33 ============================================================================ +08:16:33 ============================================================================ +08:16:33 Slot Id : <237> +08:16:33 Transaction Type : RESPONSE +08:16:33 Received From : +08:16:33 ============================================================================ +08:16:33 FNo. Len. Field Value +08:16:33 ============================================================================ +08:16:33 [ 1] [ 4] [0810] +08:16:33 [ 7] [ 10] [0320011540] +08:16:33 [ 11] [ 6] [155363] +08:16:33 [ 39] [ 2] [00] +08:16:33 [ 70] [ 3] [301] +08:16:33 ============================================================================ +08:16:33 Calculate Source COMM Id = 2 +08:16:33 ============================================================================ +08:16:33 + + +waiting on router queue for slot.... +08:16:36 ============================================================================ +08:16:36 Slot Id : <234> +08:16:36 Transaction Type : REQUEST +08:16:36 Received From : +08:16:36 ============================================================================ +08:16:36 FNo. Len. Field Value +08:16:36 ============================================================================ +08:16:36 [ 1] [ 4] [0800] +08:16:36 [ 2] [ 5] [02531] +08:16:36 [ 3] [ 6] [579088] +08:16:36 [ 7] [ 10] [0320011636] +08:16:36 [ 11] [ 6] [806892] +08:16:36 [ 15] [ 10] [0320011636] +08:16:36 [ 37] [ 11] [57908806892] +08:16:36 [ 70] [ 3] [001] +08:16:36 ============================================================================ +08:16:36 + + +waiting on router queue for slot.... +08:16:36 ============================================================================ +08:16:36 Slot Id : <234> +08:16:36 Transaction Type : RESPONSE +08:16:36 Received From : +08:16:36 ============================================================================ +08:16:36 FNo. Len. Field Value +08:16:36 ============================================================================ +08:16:36 [ 1] [ 4] [0810] +08:16:36 [ 7] [ 10] [0320011636] +08:16:36 [ 11] [ 6] [806892] +08:16:36 [ 15] [ 4] [0320] +08:16:36 [ 37] [ 12] [57908806892] +08:16:36 [ 39] [ 2] [00] +08:16:36 [ 70] [ 3] [001] +08:16:36 ============================================================================ +08:16:36 Sending to : +08:16:36 ============================================================================ +08:16:36 + + +waiting on router queue for slot.... +08:16:41 ============================================================================ +08:16:41 Slot Id : <253> +08:16:41 Transaction Type : REQUEST +08:16:41 Received From : +08:16:41 ============================================================================ +08:16:41 FNo. Len. Field Value +08:16:41 ============================================================================ +08:16:41 [ 1] [ 4] [0200] +08:16:41 [ 2] [ 16] [6688990107352609] +08:16:41 [ 3] [ 6] [010000] +08:16:41 [ 4] [ 12] [000005000000] +08:16:41 [ 7] [ 10] [0320081637] +08:16:41 [ 11] [ 6] [681240] +08:16:41 [ 12] [ 6] [081637] +08:16:41 [ 13] [ 4] [0320] +08:16:41 [ 15] [ 4] [0320] +08:16:41 [ 18] [ 4] [6011] +08:16:41 [ 22] [ 3] [900] +08:16:41 [ 25] [ 2] [02] +08:16:41 [ 28] [ 9] [D00002000] +08:16:41 [ 32] [ 6] [621354] +08:16:41 [ 35] [ 37] [6688990107352609=44021231260949700000] +08:16:41 [ 37] [ 12] [507903443119] +08:16:41 [ 41] [ 8] [06001700] +08:16:41 [ 42] [ 15] [NATIVE ] +08:16:41 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +08:16:41 [ 49] [ 3] [418] +08:16:41 [ 52] [ 16] [8DC0717567A13D0B] +08:16:41 ============================================================================ +08:16:41 + + +waiting on router queue for slot.... +08:16:41 Sending to : +08:16:41 ============================================================================ +08:16:41 Sending to : +08:16:41 ============================================================================ +08:16:42 ============================================================================ +08:16:42 Slot Id : <253> +08:16:42 Transaction Type : REQUEST +08:16:42 Received From : +08:16:42 ============================================================================ +08:16:42 FNo. Len. Field Value +08:16:42 ============================================================================ +08:16:42 [ 1] [ 4] [0200] +08:16:42 [ 2] [ 16] [6688990107352609] +08:16:42 [ 3] [ 6] [010000] +08:16:42 [ 4] [ 12] [000005000000] +08:16:42 [ 7] [ 10] [0320081637] +08:16:42 [ 11] [ 6] [681240] +08:16:42 [ 12] [ 6] [081637] +08:16:42 [ 13] [ 4] [0320] +08:16:42 [ 15] [ 4] [0320] +08:16:42 [ 18] [ 4] [6011] +08:16:42 [ 22] [ 3] [900] +08:16:42 [ 25] [ 2] [02] +08:16:42 [ 28] [ 9] [D00002000] +08:16:42 [ 32] [ 6] [621354] +08:16:42 [ 35] [ 37] [6688990107352609=44021231260949700000] +08:16:42 [ 37] [ 12] [507903443119] +08:16:42 [ 41] [ 8] [06001700] +08:16:42 [ 42] [ 15] [NATIVE ] +08:16:42 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +08:16:42 [ 49] [ 3] [418] +08:16:42 [ 52] [ 16] [8DC0717567A13D0B] +08:16:42 ============================================================================ +08:16:42 + + +waiting on router queue for slot.... +08:16:42 Sending to : +08:16:42 ============================================================================ +08:16:42 ============================================================================ +08:16:42 Slot Id : <253> +08:16:42 Transaction Type : REQUEST +08:16:42 Received From : +08:16:42 ============================================================================ +08:16:42 FNo. Len. Field Value +08:16:42 ============================================================================ +08:16:42 [ 1] [ 4] [0200] +08:16:42 [ 2] [ 16] [6688990107352609] +08:16:42 [ 3] [ 6] [010000] +08:16:42 [ 4] [ 12] [000005000000] +08:16:42 [ 7] [ 10] [0320081637] +08:16:42 [ 11] [ 6] [681240] +08:16:42 [ 12] [ 6] [081637] +08:16:42 [ 13] [ 4] [0320] +08:16:42 [ 15] [ 4] [0320] +08:16:42 [ 18] [ 4] [6011] +08:16:42 [ 22] [ 3] [900] +08:16:42 [ 25] [ 2] [02] +08:16:42 [ 28] [ 9] [D00002000] +08:16:42 [ 32] [ 6] [621354] +08:16:42 [ 35] [ 37] [6688990107352609=44021231260949700000] +08:16:42 [ 37] [ 12] [507903443119] +08:16:42 [ 41] [ 8] [06001700] +08:16:42 [ 42] [ 15] [NATIVE ] +08:16:42 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +08:16:42 [ 49] [ 3] [418] +08:16:42 [ 52] [ 16] [0ED3C7708E1C45A5] +08:16:42 ============================================================================ +08:16:42 + + +waiting on router queue for slot.... +08:16:42 Sending to : <4> +08:16:42 ============================================================================ +08:16:43 ============================================================================ +08:16:43 Slot Id : <253> +08:16:43 Transaction Type : RESPONSE +08:16:43 Received From : +08:16:43 ============================================================================ +08:16:43 FNo. Len. Field Value +08:16:43 ============================================================================ +08:16:43 [ 1] [ 4] [0210] +08:16:43 [ 2] [ 16] [6688990107352609] +08:16:43 [ 3] [ 6] [010000] +08:16:43 [ 4] [ 12] [000005000000] +08:16:43 [ 11] [ 6] [681240] +08:16:43 [ 12] [ 6] [081637] +08:16:43 [ 15] [ 4] [0320] +08:16:43 [ 18] [ 4] [6011] +08:16:43 [ 32] [ 6] [621354] +08:16:43 [ 35] [ 37] [6688990107352609=44021231260949700000] +08:16:43 [ 37] [ 12] [507903443119] +08:16:43 [ 38] [ 6] [476814] +08:16:43 [ 39] [ 2] [00] +08:16:43 [ 41] [ 8] [06001700] +08:16:43 [ 49] [ 3] [418] +08:16:43 [ 54] [ 20] [0002418C000050107355] +08:16:43 ============================================================================ +08:16:43 Sending to : +08:16:43 ============================================================================ +08:16:43 + + +waiting on router queue for slot.... +08:16:44 ============================================================================ +08:16:44 Slot Id : <253> +08:16:44 Transaction Type : RESPONSE +08:16:44 Received From : +08:16:44 ============================================================================ +08:16:44 FNo. Len. Field Value +08:16:44 ============================================================================ +08:16:44 [ 1] [ 4] [0210] +08:16:44 [ 2] [ 16] [6688990107352609] +08:16:44 [ 3] [ 6] [010000] +08:16:44 [ 4] [ 12] [000005000000] +08:16:44 [ 11] [ 6] [681240] +08:16:44 [ 12] [ 6] [081637] +08:16:44 [ 15] [ 4] [0320] +08:16:44 [ 18] [ 4] [6011] +08:16:44 [ 32] [ 6] [621354] +08:16:44 [ 35] [ 37] [6688990107352609=44021231260949700000] +08:16:44 [ 37] [ 12] [507903443119] +08:16:44 [ 38] [ 6] [476814] +08:16:44 [ 39] [ 2] [00] +08:16:44 [ 41] [ 8] [06001700] +08:16:44 [ 49] [ 3] [418] +08:16:44 [ 54] [ 20] [0002418C000050107355] +08:16:44 ============================================================================ +08:16:44 Calculate Source COMM Id = 0 +08:16:44 ============================================================================ +08:16:44 + + +waiting on router queue for slot.... +08:16:47 ============================================================================ +08:16:47 Slot Id : <210> +08:16:47 Transaction Type : REQUEST +08:16:47 Received From : +08:16:47 ============================================================================ +08:16:47 FNo. Len. Field Value +08:16:47 ============================================================================ +08:16:47 [ 1] [ 4] [0200] +08:16:47 [ 2] [ 16] [6688990108408301] +08:16:47 [ 3] [ 6] [011000] +08:16:47 [ 4] [ 12] [000100000000] +08:16:47 [ 7] [ 10] [0320081643] +08:16:47 [ 11] [ 6] [681265] +08:16:47 [ 12] [ 6] [081643] +08:16:47 [ 13] [ 4] [0320] +08:16:47 [ 15] [ 4] [0320] +08:16:47 [ 18] [ 4] [6011] +08:16:47 [ 22] [ 3] [900] +08:16:47 [ 25] [ 2] [02] +08:16:47 [ 28] [ 9] [D00002000] +08:16:47 [ 32] [ 6] [621354] +08:16:47 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:16:47 [ 37] [ 12] [507903226541] +08:16:47 [ 41] [ 8] [04003200] +08:16:47 [ 42] [ 15] [NATIVE ] +08:16:47 [ 43] [ 40] [DONKHONG Kong LAO] +08:16:47 [ 49] [ 3] [418] +08:16:47 [ 52] [ 16] [D4851EE20FD0A8AD] +08:16:47 ============================================================================ +08:16:47 + + +waiting on router queue for slot.... +08:16:47 Sending to : +08:16:47 ============================================================================ +08:16:47 Sending to : +08:16:47 ============================================================================ +08:16:47 ============================================================================ +08:16:47 Slot Id : <210> +08:16:47 Transaction Type : REQUEST +08:16:47 Received From : +08:16:47 ============================================================================ +08:16:47 FNo. Len. Field Value +08:16:47 ============================================================================ +08:16:47 [ 1] [ 4] [0200] +08:16:47 [ 2] [ 16] [6688990108408301] +08:16:47 [ 3] [ 6] [011000] +08:16:47 [ 4] [ 12] [000100000000] +08:16:47 [ 7] [ 10] [0320081643] +08:16:47 [ 11] [ 6] [681265] +08:16:47 [ 12] [ 6] [081643] +08:16:47 [ 13] [ 4] [0320] +08:16:47 [ 15] [ 4] [0320] +08:16:47 [ 18] [ 4] [6011] +08:16:47 [ 22] [ 3] [900] +08:16:47 [ 25] [ 2] [02] +08:16:47 [ 28] [ 9] [D00002000] +08:16:47 [ 32] [ 6] [621354] +08:16:47 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:16:47 [ 37] [ 12] [507903226541] +08:16:47 [ 41] [ 8] [04003200] +08:16:47 [ 42] [ 15] [NATIVE ] +08:16:47 [ 43] [ 40] [DONKHONG Kong LAO] +08:16:47 [ 49] [ 3] [418] +08:16:47 [ 52] [ 16] [D4851EE20FD0A8AD] +08:16:47 ============================================================================ +08:16:47 + + +waiting on router queue for slot.... +08:16:47 Sending to : +08:16:47 ============================================================================ +08:16:47 ============================================================================ +08:16:47 Slot Id : <210> +08:16:47 Transaction Type : REQUEST +08:16:47 Received From : +08:16:47 ============================================================================ +08:16:47 FNo. Len. Field Value +08:16:47 ============================================================================ +08:16:47 [ 1] [ 4] [0200] +08:16:47 [ 2] [ 16] [6688990108408301] +08:16:47 [ 3] [ 6] [011000] +08:16:47 [ 4] [ 12] [000100000000] +08:16:47 [ 7] [ 10] [0320081643] +08:16:47 [ 11] [ 6] [681265] +08:16:47 [ 12] [ 6] [081643] +08:16:47 [ 13] [ 4] [0320] +08:16:47 [ 15] [ 4] [0320] +08:16:47 [ 18] [ 4] [6011] +08:16:47 [ 22] [ 3] [900] +08:16:47 [ 25] [ 2] [02] +08:16:47 [ 28] [ 9] [D00002000] +08:16:47 [ 32] [ 6] [621354] +08:16:47 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:16:47 [ 37] [ 12] [507903226541] +08:16:47 [ 41] [ 8] [04003200] +08:16:47 [ 42] [ 15] [NATIVE ] +08:16:47 [ 43] [ 40] [DONKHONG Kong LAO] +08:16:47 [ 49] [ 3] [418] +08:16:47 [ 52] [ 16] [5D77FEE3FCAB5D64] +08:16:47 ============================================================================ +08:16:47 + + +waiting on router queue for slot.... +08:16:47 Sending to : <4> +08:16:47 ============================================================================ +08:16:47 ============================================================================ +08:16:47 Slot Id : <220> +08:16:47 Transaction Type : REQUEST +08:16:47 Received From : +08:16:47 ============================================================================ +08:16:47 FNo. Len. Field Value +08:16:47 ============================================================================ +08:16:47 [ 1] [ 4] [0800] +08:16:47 [ 7] [ 10] [0320011556] +08:16:47 [ 11] [ 6] [155364] +08:16:47 [ 70] [ 3] [301] +08:16:47 ============================================================================ +08:16:47 + + +waiting on router queue for slot.... +08:16:47 Sending to : +08:16:47 ============================================================================ +08:16:47 ============================================================================ +08:16:47 Slot Id : <220> +08:16:47 Transaction Type : RESPONSE +08:16:47 Received From : +08:16:47 ============================================================================ +08:16:47 FNo. Len. Field Value +08:16:47 ============================================================================ +08:16:47 [ 1] [ 4] [0810] +08:16:47 [ 7] [ 10] [0320011556] +08:16:47 [ 11] [ 6] [155364] +08:16:47 [ 39] [ 2] [00] +08:16:47 [ 70] [ 3] [301] +08:16:47 ============================================================================ +08:16:47 Calculate Source COMM Id = 2 +08:16:47 ============================================================================ +08:16:47 + + +waiting on router queue for slot.... +08:16:48 ============================================================================ +08:16:48 Slot Id : <210> +08:16:48 Transaction Type : RESPONSE +08:16:48 Received From : +08:16:48 ============================================================================ +08:16:48 FNo. Len. Field Value +08:16:48 ============================================================================ +08:16:48 [ 1] [ 4] [0210] +08:16:48 [ 2] [ 16] [6688990108408301] +08:16:48 [ 3] [ 6] [011000] +08:16:48 [ 4] [ 12] [000100000000] +08:16:48 [ 11] [ 6] [681265] +08:16:48 [ 12] [ 6] [081643] +08:16:48 [ 15] [ 4] [0320] +08:16:48 [ 18] [ 4] [6011] +08:16:48 [ 32] [ 6] [621354] +08:16:48 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:16:48 [ 37] [ 12] [507903226541] +08:16:48 [ 38] [ 6] [826437] +08:16:48 [ 39] [ 2] [00] +08:16:48 [ 41] [ 8] [04003200] +08:16:48 [ 49] [ 3] [418] +08:16:48 [ 54] [ 20] [1002418C000189338358] +08:16:48 ============================================================================ +08:16:48 Sending to : +08:16:48 ============================================================================ +08:16:48 + + +waiting on router queue for slot.... +08:16:49 ============================================================================ +08:16:49 Slot Id : <249> +08:16:49 Transaction Type : REQUEST +08:16:49 Received From : +08:16:49 ============================================================================ +08:16:49 FNo. Len. Field Value +08:16:49 ============================================================================ +08:16:49 [ 1] [ 4] [0200] +08:16:49 [ 2] [ 16] [1808930300018793] +08:16:49 [ 3] [ 6] [011000] +08:16:49 [ 4] [ 12] [000010000000] +08:16:49 [ 7] [ 10] [0320081645] +08:16:49 [ 11] [ 6] [681271] +08:16:49 [ 12] [ 6] [081645] +08:16:49 [ 13] [ 4] [0320] +08:16:49 [ 15] [ 4] [0320] +08:16:49 [ 18] [ 4] [6011] +08:16:49 [ 22] [ 3] [900] +08:16:49 [ 25] [ 2] [02] +08:16:49 [ 28] [ 9] [D00002000] +08:16:49 [ 32] [ 6] [621354] +08:16:49 [ 35] [ 27] [1808930300018793=1803500401] +08:16:49 [ 37] [ 12] [507903028260] +08:16:49 [ 41] [ 8] [12002500] +08:16:49 [ 42] [ 15] [NATIVE ] +08:16:49 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:16:49 [ 49] [ 3] [418] +08:16:49 [ 52] [ 16] [F73FC271F9743D05] +08:16:49 ============================================================================ +08:16:49 + + +waiting on router queue for slot.... +08:16:49 Sending to : +08:16:49 ============================================================================ +08:16:49 Sending to : +08:16:49 ============================================================================ +08:16:49 ============================================================================ +08:16:49 Slot Id : <249> +08:16:49 Transaction Type : REQUEST +08:16:49 Received From : +08:16:49 ============================================================================ +08:16:49 FNo. Len. Field Value +08:16:49 ============================================================================ +08:16:49 [ 1] [ 4] [0200] +08:16:49 [ 2] [ 16] [1808930300018793] +08:16:49 [ 3] [ 6] [011000] +08:16:49 [ 4] [ 12] [000010000000] +08:16:49 [ 7] [ 10] [0320081645] +08:16:49 [ 11] [ 6] [681271] +08:16:49 [ 12] [ 6] [081645] +08:16:49 [ 13] [ 4] [0320] +08:16:49 [ 15] [ 4] [0320] +08:16:49 [ 18] [ 4] [6011] +08:16:49 [ 22] [ 3] [900] +08:16:49 [ 25] [ 2] [02] +08:16:49 [ 28] [ 9] [D00002000] +08:16:49 [ 32] [ 6] [621354] +08:16:49 [ 35] [ 27] [1808930300018793=1803500401] +08:16:49 [ 37] [ 12] [507903028260] +08:16:49 [ 41] [ 8] [12002500] +08:16:49 [ 42] [ 15] [NATIVE ] +08:16:49 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:16:49 [ 49] [ 3] [418] +08:16:49 [ 52] [ 16] [F73FC271F9743D05] +08:16:49 ============================================================================ +08:16:49 + + +waiting on router queue for slot.... +08:16:49 Sending to : +08:16:49 ============================================================================ +08:16:49 ============================================================================ +08:16:49 Slot Id : <249> +08:16:49 Transaction Type : REQUEST +08:16:49 Received From : +08:16:49 ============================================================================ +08:16:49 FNo. Len. Field Value +08:16:49 ============================================================================ +08:16:49 [ 1] [ 4] [0200] +08:16:49 [ 2] [ 16] [1808930300018793] +08:16:49 [ 3] [ 6] [011000] +08:16:49 [ 4] [ 12] [000010000000] +08:16:49 [ 7] [ 10] [0320081645] +08:16:49 [ 11] [ 6] [681271] +08:16:49 [ 12] [ 6] [081645] +08:16:49 [ 13] [ 4] [0320] +08:16:49 [ 15] [ 4] [0320] +08:16:49 [ 18] [ 4] [6011] +08:16:49 [ 22] [ 3] [900] +08:16:49 [ 25] [ 2] [02] +08:16:49 [ 28] [ 9] [D00002000] +08:16:49 [ 32] [ 6] [621354] +08:16:49 [ 35] [ 27] [1808930300018793=1803500401] +08:16:49 [ 37] [ 12] [507903028260] +08:16:49 [ 41] [ 8] [12002500] +08:16:49 [ 42] [ 15] [NATIVE ] +08:16:49 [ 43] [ 40] [KANETHAO UNIT Xayabouly LAO] +08:16:49 [ 49] [ 3] [418] +08:16:49 [ 52] [ 16] [046447BB3AB000B8] +08:16:49 ============================================================================ +08:16:49 + + +waiting on router queue for slot.... +08:16:49 Sending to : <2> +08:16:49 ============================================================================ +08:16:50 ============================================================================ +08:16:50 Slot Id : <210> +08:16:50 Transaction Type : RESPONSE +08:16:50 Received From : +08:16:50 ============================================================================ +08:16:50 FNo. Len. Field Value +08:16:50 ============================================================================ +08:16:50 [ 1] [ 4] [0210] +08:16:50 [ 2] [ 16] [6688990108408301] +08:16:50 [ 3] [ 6] [011000] +08:16:50 [ 4] [ 12] [000100000000] +08:16:50 [ 11] [ 6] [681265] +08:16:50 [ 12] [ 6] [081643] +08:16:50 [ 15] [ 4] [0320] +08:16:50 [ 18] [ 4] [6011] +08:16:50 [ 32] [ 6] [621354] +08:16:50 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:16:50 [ 37] [ 12] [507903226541] +08:16:50 [ 38] [ 6] [826437] +08:16:50 [ 39] [ 2] [00] +08:16:50 [ 41] [ 8] [04003200] +08:16:50 [ 49] [ 3] [418] +08:16:50 [ 54] [ 20] [1002418C000189338358] +08:16:50 ============================================================================ +08:16:50 Calculate Source COMM Id = 0 +08:16:50 ============================================================================ +08:16:50 + + +waiting on router queue for slot.... +08:16:50 ============================================================================ +08:16:50 Slot Id : <260> +08:16:50 Transaction Type : REQUEST +08:16:50 Received From : +08:16:50 ============================================================================ +08:16:50 FNo. Len. Field Value +08:16:50 ============================================================================ +08:16:50 [ 1] [ 4] [0200] +08:16:50 [ 2] [ 16] [6688990108391507] +08:16:50 [ 3] [ 6] [010000] +08:16:50 [ 4] [ 12] [000100000000] +08:16:50 [ 7] [ 10] [0320081646] +08:16:50 [ 11] [ 6] [681273] +08:16:50 [ 12] [ 6] [081646] +08:16:50 [ 13] [ 4] [0320] +08:16:50 [ 15] [ 4] [0320] +08:16:50 [ 18] [ 4] [6011] +08:16:50 [ 22] [ 3] [900] +08:16:50 [ 25] [ 2] [02] +08:16:50 [ 28] [ 9] [D00002000] +08:16:50 [ 32] [ 6] [621354] +08:16:50 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:16:50 [ 37] [ 12] [507904719368] +08:16:50 [ 41] [ 8] [18001000] +08:16:50 [ 42] [ 15] [NATIVE ] +08:16:50 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:16:50 [ 49] [ 3] [418] +08:16:50 [ 52] [ 16] [50E9A6D4743FC41B] +08:16:50 ============================================================================ +08:16:50 + + +waiting on router queue for slot.... +08:16:50 Sending to : +08:16:50 ============================================================================ +08:16:50 Sending to : +08:16:50 ============================================================================ +08:16:50 ============================================================================ +08:16:50 Slot Id : <260> +08:16:50 Transaction Type : REQUEST +08:16:50 Received From : +08:16:50 ============================================================================ +08:16:50 FNo. Len. Field Value +08:16:50 ============================================================================ +08:16:50 [ 1] [ 4] [0200] +08:16:50 [ 2] [ 16] [6688990108391507] +08:16:50 [ 3] [ 6] [010000] +08:16:50 [ 4] [ 12] [000100000000] +08:16:50 [ 7] [ 10] [0320081646] +08:16:50 [ 11] [ 6] [681273] +08:16:50 [ 12] [ 6] [081646] +08:16:50 [ 13] [ 4] [0320] +08:16:50 [ 15] [ 4] [0320] +08:16:50 [ 18] [ 4] [6011] +08:16:50 [ 22] [ 3] [900] +08:16:50 [ 25] [ 2] [02] +08:16:50 [ 28] [ 9] [D00002000] +08:16:50 [ 32] [ 6] [621354] +08:16:50 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:16:50 [ 37] [ 12] [507904719368] +08:16:50 [ 41] [ 8] [18001000] +08:16:50 [ 42] [ 15] [NATIVE ] +08:16:50 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:16:50 [ 49] [ 3] [418] +08:16:50 [ 52] [ 16] [50E9A6D4743FC41B] +08:16:50 ============================================================================ +08:16:50 + + +waiting on router queue for slot.... +08:16:50 Sending to : +08:16:50 ============================================================================ +08:16:50 ============================================================================ +08:16:50 Slot Id : <260> +08:16:50 Transaction Type : REQUEST +08:16:50 Received From : +08:16:50 ============================================================================ +08:16:50 FNo. Len. Field Value +08:16:50 ============================================================================ +08:16:50 [ 1] [ 4] [0200] +08:16:50 [ 2] [ 16] [6688990108391507] +08:16:50 [ 3] [ 6] [010000] +08:16:50 [ 4] [ 12] [000100000000] +08:16:50 [ 7] [ 10] [0320081646] +08:16:50 [ 11] [ 6] [681273] +08:16:50 [ 12] [ 6] [081646] +08:16:50 [ 13] [ 4] [0320] +08:16:50 [ 15] [ 4] [0320] +08:16:50 [ 18] [ 4] [6011] +08:16:50 [ 22] [ 3] [900] +08:16:50 [ 25] [ 2] [02] +08:16:50 [ 28] [ 9] [D00002000] +08:16:50 [ 32] [ 6] [621354] +08:16:50 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:16:50 [ 37] [ 12] [507904719368] +08:16:50 [ 41] [ 8] [18001000] +08:16:50 [ 42] [ 15] [NATIVE ] +08:16:50 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:16:50 [ 49] [ 3] [418] +08:16:50 [ 52] [ 16] [6B472D7BCFE61048] +08:16:50 ============================================================================ +08:16:50 + + +waiting on router queue for slot.... +08:16:50 Sending to : <4> +08:16:50 ============================================================================ +08:16:51 ============================================================================ +08:16:51 Slot Id : <260> +08:16:51 Transaction Type : RESPONSE +08:16:51 Received From : +08:16:51 ============================================================================ +08:16:51 FNo. Len. Field Value +08:16:51 ============================================================================ +08:16:51 [ 1] [ 4] [0210] +08:16:51 [ 2] [ 16] [6688990108391507] +08:16:51 [ 3] [ 6] [010000] +08:16:51 [ 4] [ 12] [000100000000] +08:16:51 [ 11] [ 6] [681273] +08:16:51 [ 12] [ 6] [081646] +08:16:51 [ 15] [ 4] [0320] +08:16:51 [ 18] [ 4] [6011] +08:16:51 [ 32] [ 6] [621354] +08:16:51 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:16:51 [ 37] [ 12] [507904719368] +08:16:51 [ 38] [ 6] [922071] +08:16:51 [ 39] [ 2] [00] +08:16:51 [ 41] [ 8] [18001000] +08:16:51 [ 49] [ 3] [418] +08:16:51 [ 54] [ 20] [0002418C000002369643] +08:16:51 ============================================================================ +08:16:51 Sending to : +08:16:51 ============================================================================ +08:16:51 + + +waiting on router queue for slot.... +08:16:52 ============================================================================ +08:16:52 Slot Id : <249> +08:16:52 Transaction Type : RESPONSE +08:16:52 Received From : +08:16:52 ============================================================================ +08:16:52 FNo. Len. Field Value +08:16:52 ============================================================================ +08:16:52 [ 1] [ 4] [0210] +08:16:52 [ 2] [ 16] [1808930300018793] +08:16:52 [ 3] [ 6] [011000] +08:16:52 [ 4] [ 12] [000010000000] +08:16:52 [ 6] [ 12] [000010000000] +08:16:52 [ 7] [ 10] [0320081645] +08:16:52 [ 11] [ 6] [681271] +08:16:52 [ 12] [ 6] [081645] +08:16:52 [ 13] [ 4] [0320] +08:16:52 [ 18] [ 4] [6011] +08:16:52 [ 19] [ 3] [418] +08:16:52 [ 22] [ 3] [021] +08:16:52 [ 32] [ 6] [621354] +08:16:52 [ 35] [ 27] [1808930300018793=1803500401] +08:16:52 [ 37] [ 12] [507903028260] +08:16:52 [ 38] [ 6] [681271] +08:16:52 [ 39] [ 2] [00] +08:16:52 [ 41] [ 8] [12002500] +08:16:52 [ 49] [ 3] [418] +08:16:52 [ 52] [ 16] [046447BB3AB000B8] +08:16:52 [ 54] [ 20] [1001418C000861506800] +08:16:52 ============================================================================ +08:16:52 Sending to : +08:16:52 ============================================================================ +08:16:52 + + +waiting on router queue for slot.... +08:16:52 ============================================================================ +08:16:52 Slot Id : <260> +08:16:52 Transaction Type : RESPONSE +08:16:52 Received From : +08:16:52 ============================================================================ +08:16:52 FNo. Len. Field Value +08:16:52 ============================================================================ +08:16:52 [ 1] [ 4] [0210] +08:16:52 [ 2] [ 16] [6688990108391507] +08:16:52 [ 3] [ 6] [010000] +08:16:52 [ 4] [ 12] [000100000000] +08:16:52 [ 11] [ 6] [681273] +08:16:52 [ 12] [ 6] [081646] +08:16:52 [ 15] [ 4] [0320] +08:16:52 [ 18] [ 4] [6011] +08:16:52 [ 32] [ 6] [621354] +08:16:52 [ 35] [ 37] [6688990108391507=44061231150778900000] +08:16:52 [ 37] [ 12] [507904719368] +08:16:52 [ 38] [ 6] [922071] +08:16:52 [ 39] [ 2] [00] +08:16:52 [ 41] [ 8] [18001000] +08:16:52 [ 49] [ 3] [418] +08:16:52 [ 54] [ 20] [0002418C000002369643] +08:16:52 ============================================================================ +08:16:52 Calculate Source COMM Id = 0 +08:16:52 ============================================================================ +08:16:52 + + +waiting on router queue for slot.... +08:16:53 ============================================================================ +08:16:53 Slot Id : <249> +08:16:53 Transaction Type : RESPONSE +08:16:53 Received From : +08:16:53 ============================================================================ +08:16:53 FNo. Len. Field Value +08:16:53 ============================================================================ +08:16:53 [ 1] [ 4] [0210] +08:16:53 [ 2] [ 16] [1808930300018793] +08:16:53 [ 3] [ 6] [011000] +08:16:53 [ 4] [ 12] [000010000000] +08:16:53 [ 6] [ 12] [000010000000] +08:16:53 [ 7] [ 10] [0320081645] +08:16:53 [ 11] [ 6] [681271] +08:16:53 [ 12] [ 6] [081645] +08:16:53 [ 13] [ 4] [0320] +08:16:53 [ 18] [ 4] [6011] +08:16:53 [ 19] [ 3] [418] +08:16:53 [ 22] [ 3] [021] +08:16:53 [ 32] [ 6] [621354] +08:16:53 [ 35] [ 27] [1808930300018793=1803500401] +08:16:53 [ 37] [ 12] [507903028260] +08:16:53 [ 38] [ 6] [681271] +08:16:53 [ 39] [ 2] [00] +08:16:53 [ 41] [ 8] [12002500] +08:16:53 [ 49] [ 3] [418] +08:16:53 [ 52] [ 16] [046447BB3AB000B8] +08:16:53 [ 54] [ 20] [1001418C000861506800] +08:16:53 ============================================================================ +08:16:53 Calculate Source COMM Id = 0 +08:16:53 ============================================================================ +08:16:53 + + +waiting on router queue for slot.... +08:17:01 ============================================================================ +08:17:01 Slot Id : <199> +08:17:01 Transaction Type : REQUEST +08:17:01 Received From : +08:17:01 ============================================================================ +08:17:01 FNo. Len. Field Value +08:17:01 ============================================================================ +08:17:01 [ 1] [ 4] [0200] +08:17:01 [ 2] [ 16] [6213544001794640] +08:17:01 [ 3] [ 6] [010000] +08:17:01 [ 4] [ 12] [000020000000] +08:17:01 [ 7] [ 10] [0320081453] +08:17:01 [ 11] [ 6] [932383] +08:17:01 [ 12] [ 6] [081453] +08:17:01 [ 13] [ 4] [0320] +08:17:01 [ 15] [ 4] [0320] +08:17:01 [ 18] [ 4] [6011] +08:17:01 [ 19] [ 3] [418] +08:17:01 [ 22] [ 3] [021] +08:17:01 [ 25] [ 2] [01] +08:17:01 [ 28] [ 9] [D00002000] +08:17:01 [ 32] [ 6] [668899] +08:17:01 [ 35] [ 32] [6213544001794640=491212019464370] +08:17:01 [ 37] [ 12] [507902435601] +08:17:01 [ 41] [ 8] [03020031] +08:17:01 [ 42] [ 15] [APT ] +08:17:01 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:17:01 [ 49] [ 3] [418] +08:17:01 [ 52] [ 16] [3D87841A3D092293] +08:17:01 ============================================================================ +08:17:01 + + +waiting on router queue for slot.... +08:17:01 Sending to : +08:17:01 ============================================================================ +08:17:01 Sending to : +08:17:01 ============================================================================ +08:17:01 ============================================================================ +08:17:01 Slot Id : <199> +08:17:01 Transaction Type : REQUEST +08:17:01 Received From : +08:17:01 ============================================================================ +08:17:01 FNo. Len. Field Value +08:17:01 ============================================================================ +08:17:01 [ 1] [ 4] [0200] +08:17:01 [ 2] [ 16] [6213544001794640] +08:17:01 [ 3] [ 6] [010000] +08:17:01 [ 4] [ 12] [000020000000] +08:17:01 [ 7] [ 10] [0320081453] +08:17:01 [ 11] [ 6] [932383] +08:17:01 [ 12] [ 6] [081453] +08:17:01 [ 13] [ 4] [0320] +08:17:01 [ 15] [ 4] [0320] +08:17:01 [ 18] [ 4] [6011] +08:17:01 [ 19] [ 3] [418] +08:17:01 [ 22] [ 3] [021] +08:17:01 [ 25] [ 2] [01] +08:17:01 [ 28] [ 9] [D00002000] +08:17:01 [ 32] [ 6] [668899] +08:17:01 [ 35] [ 32] [6213544001794640=491212019464370] +08:17:01 [ 37] [ 12] [507902435601] +08:17:01 [ 41] [ 8] [03020031] +08:17:01 [ 42] [ 15] [APT ] +08:17:01 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:17:01 [ 49] [ 3] [418] +08:17:01 [ 52] [ 16] [3D87841A3D092293] +08:17:01 ============================================================================ +08:17:01 + + +waiting on router queue for slot.... +08:17:01 Sending to : +08:17:01 ============================================================================ +08:17:01 ============================================================================ +08:17:01 Slot Id : <199> +08:17:01 Transaction Type : REQUEST +08:17:01 Received From : +08:17:01 ============================================================================ +08:17:01 FNo. Len. Field Value +08:17:01 ============================================================================ +08:17:01 [ 1] [ 4] [0200] +08:17:01 [ 2] [ 16] [6213544001794640] +08:17:01 [ 3] [ 6] [010000] +08:17:01 [ 4] [ 12] [000020000000] +08:17:01 [ 7] [ 10] [0320081453] +08:17:01 [ 11] [ 6] [932383] +08:17:01 [ 12] [ 6] [081453] +08:17:01 [ 13] [ 4] [0320] +08:17:01 [ 15] [ 4] [0320] +08:17:01 [ 18] [ 4] [6011] +08:17:01 [ 19] [ 3] [418] +08:17:01 [ 22] [ 3] [021] +08:17:01 [ 25] [ 2] [01] +08:17:01 [ 28] [ 9] [D00002000] +08:17:01 [ 32] [ 6] [668899] +08:17:01 [ 35] [ 32] [6213544001794640=491212019464370] +08:17:01 [ 37] [ 12] [507902435601] +08:17:01 [ 41] [ 8] [03020031] +08:17:01 [ 42] [ 15] [APT ] +08:17:01 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:17:01 [ 49] [ 3] [418] +08:17:01 [ 52] [ 16] [BF6B4C14DF04F035] +08:17:01 ============================================================================ +08:17:01 + + +waiting on router queue for slot.... +08:17:01 Sending to : <0> +08:17:01 ============================================================================ +08:17:01 ============================================================================ +08:17:01 Slot Id : <199> +08:17:01 Transaction Type : RESPONSE +08:17:01 Received From : +08:17:01 ============================================================================ +08:17:01 FNo. Len. Field Value +08:17:01 ============================================================================ +08:17:01 [ 1] [ 4] [0210] +08:17:01 [ 2] [ 16] [6213544001794640] +08:17:01 [ 3] [ 6] [010000] +08:17:01 [ 4] [ 12] [000020000000] +08:17:01 [ 7] [ 10] [0320081453] +08:17:01 [ 11] [ 6] [932383] +08:17:01 [ 12] [ 6] [081453] +08:17:01 [ 13] [ 4] [0320] +08:17:01 [ 15] [ 4] [0320] +08:17:01 [ 18] [ 4] [6011] +08:17:01 [ 19] [ 3] [418] +08:17:01 [ 22] [ 3] [021] +08:17:01 [ 32] [ 6] [668899] +08:17:01 [ 35] [ 32] [6213544001794640=491212019464370] +08:17:01 [ 37] [ 12] [507902435601] +08:17:01 [ 38] [ 6] [081658] +08:17:01 [ 39] [ 2] [55] +08:17:01 [ 41] [ 8] [03020031] +08:17:01 [ 49] [ 3] [418] +08:17:01 ============================================================================ +08:17:01 Sending to : +08:17:01 ============================================================================ +08:17:01 + + +waiting on router queue for slot.... +08:17:03 ============================================================================ +08:17:03 Slot Id : <199> +08:17:03 Transaction Type : RESPONSE +08:17:03 Received From : +08:17:03 ============================================================================ +08:17:03 FNo. Len. Field Value +08:17:03 ============================================================================ +08:17:03 [ 1] [ 4] [0210] +08:17:03 [ 2] [ 16] [6213544001794640] +08:17:03 [ 3] [ 6] [010000] +08:17:03 [ 4] [ 12] [000020000000] +08:17:03 [ 7] [ 10] [0320081453] +08:17:03 [ 11] [ 6] [932383] +08:17:03 [ 12] [ 6] [081453] +08:17:03 [ 13] [ 4] [0320] +08:17:03 [ 15] [ 4] [0320] +08:17:03 [ 18] [ 4] [6011] +08:17:03 [ 19] [ 3] [418] +08:17:03 [ 22] [ 3] [021] +08:17:03 [ 32] [ 6] [668899] +08:17:03 [ 35] [ 32] [6213544001794640=491212019464370] +08:17:03 [ 37] [ 12] [507902435601] +08:17:03 [ 38] [ 6] [081658] +08:17:03 [ 39] [ 2] [55] +08:17:03 [ 41] [ 8] [03020031] +08:17:03 [ 49] [ 3] [418] +08:17:03 ============================================================================ +08:17:03 Calculate Source COMM Id = 4 +08:17:03 ============================================================================ +08:17:03 + + +waiting on router queue for slot.... +08:17:05 ============================================================================ +08:17:05 Slot Id : <259> +08:17:05 Transaction Type : REQUEST +08:17:05 Received From : +08:17:05 ============================================================================ +08:17:05 FNo. Len. Field Value +08:17:05 ============================================================================ +08:17:05 [ 1] [ 4] [0800] +08:17:05 [ 7] [ 10] [0320011613] +08:17:05 [ 11] [ 6] [155365] +08:17:05 [ 70] [ 3] [301] +08:17:05 ============================================================================ +08:17:05 + + +waiting on router queue for slot.... +08:17:05 Sending to : +08:17:05 ============================================================================ +08:17:05 ============================================================================ +08:17:05 Slot Id : <259> +08:17:05 Transaction Type : RESPONSE +08:17:05 Received From : +08:17:05 ============================================================================ +08:17:05 FNo. Len. Field Value +08:17:05 ============================================================================ +08:17:05 [ 1] [ 4] [0810] +08:17:05 [ 7] [ 10] [0320011613] +08:17:05 [ 11] [ 6] [155365] +08:17:05 [ 39] [ 2] [00] +08:17:05 [ 70] [ 3] [301] +08:17:05 ============================================================================ +08:17:05 Calculate Source COMM Id = 2 +08:17:05 ============================================================================ +08:17:05 + + +waiting on router queue for slot.... +08:17:15 ============================================================================ +08:17:15 Slot Id : <263> +08:17:15 Transaction Type : REQUEST +08:17:15 Received From : +08:17:15 ============================================================================ +08:17:15 FNo. Len. Field Value +08:17:15 ============================================================================ +08:17:15 [ 1] [ 4] [0200] +08:17:15 [ 2] [ 16] [6213545000418313] +08:17:15 [ 3] [ 6] [011000] +08:17:15 [ 4] [ 12] [000100000000] +08:17:15 [ 7] [ 10] [0320082502] +08:17:15 [ 11] [ 6] [001932] +08:17:15 [ 12] [ 6] [082502] +08:17:15 [ 13] [ 4] [0320] +08:17:15 [ 14] [ 4] [4912] +08:17:15 [ 15] [ 4] [0320] +08:17:15 [ 18] [ 4] [6011] +08:17:15 [ 22] [ 3] [900] +08:17:15 [ 25] [ 2] [02] +08:17:15 [ 28] [ 9] [D00002000] +08:17:15 [ 32] [ 6] [220699] +08:17:15 [ 35] [ 32] [6213545000418313=491212011831004] +08:17:15 [ 37] [ 12] [507900296929] +08:17:15 [ 41] [ 8] [01001600] +08:17:15 [ 42] [ 15] [APTRA ] +08:17:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:17:15 [ 49] [ 3] [418] +08:17:15 [ 52] [ 16] [F1EFF3C7BB552A5C] +08:17:15 ============================================================================ +08:17:15 + + +waiting on router queue for slot.... +08:17:15 Sending to : +08:17:15 ============================================================================ +08:17:15 Sending to : +08:17:15 ============================================================================ +08:17:15 ============================================================================ +08:17:15 Slot Id : <263> +08:17:15 Transaction Type : REQUEST +08:17:15 Received From : +08:17:15 ============================================================================ +08:17:15 FNo. Len. Field Value +08:17:15 ============================================================================ +08:17:15 [ 1] [ 4] [0200] +08:17:15 [ 2] [ 16] [6213545000418313] +08:17:15 [ 3] [ 6] [011000] +08:17:15 [ 4] [ 12] [000100000000] +08:17:15 [ 7] [ 10] [0320082502] +08:17:15 [ 11] [ 6] [001932] +08:17:15 [ 12] [ 6] [082502] +08:17:15 [ 13] [ 4] [0320] +08:17:15 [ 14] [ 4] [4912] +08:17:15 [ 15] [ 4] [0320] +08:17:15 [ 18] [ 4] [6011] +08:17:15 [ 22] [ 3] [900] +08:17:15 [ 25] [ 2] [02] +08:17:15 [ 28] [ 9] [D00002000] +08:17:15 [ 32] [ 6] [220699] +08:17:15 [ 35] [ 32] [6213545000418313=491212011831004] +08:17:15 [ 37] [ 12] [507900296929] +08:17:15 [ 41] [ 8] [01001600] +08:17:15 [ 42] [ 15] [APTRA ] +08:17:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:17:15 [ 49] [ 3] [418] +08:17:15 [ 52] [ 16] [F1EFF3C7BB552A5C] +08:17:15 ============================================================================ +08:17:15 + + +waiting on router queue for slot.... +08:17:15 Sending to : +08:17:15 ============================================================================ +08:17:15 ============================================================================ +08:17:15 Slot Id : <263> +08:17:15 Transaction Type : REQUEST +08:17:15 Received From : +08:17:15 ============================================================================ +08:17:15 FNo. Len. Field Value +08:17:15 ============================================================================ +08:17:15 [ 1] [ 4] [0200] +08:17:15 [ 2] [ 16] [6213545000418313] +08:17:15 [ 3] [ 6] [011000] +08:17:15 [ 4] [ 12] [000100000000] +08:17:15 [ 7] [ 10] [0320082502] +08:17:15 [ 11] [ 6] [001932] +08:17:15 [ 12] [ 6] [082502] +08:17:15 [ 13] [ 4] [0320] +08:17:15 [ 14] [ 4] [4912] +08:17:15 [ 15] [ 4] [0320] +08:17:15 [ 18] [ 4] [6011] +08:17:15 [ 22] [ 3] [900] +08:17:15 [ 25] [ 2] [02] +08:17:15 [ 28] [ 9] [D00002000] +08:17:15 [ 32] [ 6] [220699] +08:17:15 [ 35] [ 32] [6213545000418313=491212011831004] +08:17:15 [ 37] [ 12] [507900296929] +08:17:15 [ 41] [ 8] [01001600] +08:17:15 [ 42] [ 15] [APTRA ] +08:17:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:17:15 [ 49] [ 3] [418] +08:17:15 [ 52] [ 16] [87A7B23E34CCFC4E] +08:17:15 ============================================================================ +08:17:15 + + +waiting on router queue for slot.... +08:17:15 Sending to : <0> +08:17:15 ============================================================================ +08:17:15 ============================================================================ +08:17:15 Slot Id : <263> +08:17:15 Transaction Type : RESPONSE +08:17:15 Received From : +08:17:15 ============================================================================ +08:17:15 FNo. Len. Field Value +08:17:15 ============================================================================ +08:17:15 [ 1] [ 4] [0210] +08:17:15 [ 2] [ 16] [6213545000418313] +08:17:15 [ 3] [ 6] [011000] +08:17:15 [ 4] [ 12] [000100000000] +08:17:15 [ 7] [ 10] [0320082502] +08:17:15 [ 11] [ 6] [001932] +08:17:15 [ 12] [ 6] [082502] +08:17:15 [ 13] [ 4] [0320] +08:17:15 [ 15] [ 4] [0320] +08:17:15 [ 18] [ 4] [6011] +08:17:15 [ 32] [ 6] [220699] +08:17:15 [ 35] [ 32] [6213545000418313=491212011831004] +08:17:15 [ 37] [ 12] [507900296929] +08:17:15 [ 38] [ 6] [668075] +08:17:15 [ 39] [ 2] [00] +08:17:15 [ 41] [ 8] [01001600] +08:17:15 [ 49] [ 3] [418] +08:17:15 [ 54] [ 40] [1001418C0002032370341002418C000203237034] +08:17:15 ============================================================================ +08:17:15 Sending to : +08:17:15 ============================================================================ +08:17:15 + + +waiting on router queue for slot.... +08:17:17 ============================================================================ +08:17:17 Slot Id : <263> +08:17:17 Transaction Type : RESPONSE +08:17:17 Received From : +08:17:17 ============================================================================ +08:17:17 FNo. Len. Field Value +08:17:17 ============================================================================ +08:17:17 [ 1] [ 4] [0210] +08:17:17 [ 2] [ 16] [6213545000418313] +08:17:17 [ 3] [ 6] [011000] +08:17:17 [ 4] [ 12] [000100000000] +08:17:17 [ 7] [ 10] [0320082502] +08:17:17 [ 11] [ 6] [001932] +08:17:17 [ 12] [ 6] [082502] +08:17:17 [ 13] [ 4] [0320] +08:17:17 [ 15] [ 4] [0320] +08:17:17 [ 18] [ 4] [6011] +08:17:17 [ 32] [ 6] [220699] +08:17:17 [ 35] [ 32] [6213545000418313=491212011831004] +08:17:17 [ 37] [ 12] [507900296929] +08:17:17 [ 38] [ 6] [668075] +08:17:17 [ 39] [ 2] [00] +08:17:17 [ 41] [ 8] [01001600] +08:17:17 [ 49] [ 3] [418] +08:17:17 [ 54] [ 40] [1001418C0002032370341002418C000203237034] +08:17:17 ============================================================================ +08:17:17 Calculate Source COMM Id = 1 +08:17:17 ============================================================================ +08:17:17 + + +waiting on router queue for slot.... +08:17:20 ============================================================================ +08:17:20 Slot Id : <261> +08:17:20 Transaction Type : REQUEST +08:17:20 Received From : +08:17:20 ============================================================================ +08:17:20 FNo. Len. Field Value +08:17:20 ============================================================================ +08:17:20 [ 1] [ 4] [0800] +08:17:20 [ 7] [ 10] [0320011628] +08:17:20 [ 11] [ 6] [155366] +08:17:20 [ 70] [ 3] [301] +08:17:20 ============================================================================ +08:17:20 + + +waiting on router queue for slot.... +08:17:20 Sending to : +08:17:20 ============================================================================ +08:17:20 ============================================================================ +08:17:20 Slot Id : <261> +08:17:20 Transaction Type : RESPONSE +08:17:20 Received From : +08:17:20 ============================================================================ +08:17:20 FNo. Len. Field Value +08:17:20 ============================================================================ +08:17:20 [ 1] [ 4] [0810] +08:17:20 [ 7] [ 10] [0320011628] +08:17:20 [ 11] [ 6] [155366] +08:17:20 [ 39] [ 2] [00] +08:17:20 [ 70] [ 3] [301] +08:17:20 ============================================================================ +08:17:20 Calculate Source COMM Id = 2 +08:17:20 ============================================================================ +08:17:20 + + +waiting on router queue for slot.... +08:17:21 ============================================================================ +08:17:21 Slot Id : <270> +08:17:21 Transaction Type : REQUEST +08:17:21 Received From : +08:17:21 ============================================================================ +08:17:21 FNo. Len. Field Value +08:17:21 ============================================================================ +08:17:21 [ 1] [ 4] [0800] +08:17:21 [ 7] [ 10] [0320152909] +08:17:21 [ 11] [ 6] [082909] +08:17:21 [ 37] [ 12] [57908082909] +08:17:21 [ 70] [ 3] [301] +08:17:21 ============================================================================ +08:17:21 + + +waiting on router queue for slot.... +08:17:21 Sending to : +08:17:21 ============================================================================ +08:17:21 ============================================================================ +08:17:21 Slot Id : <270> +08:17:21 Transaction Type : RESPONSE +08:17:21 Received From : +08:17:21 ============================================================================ +08:17:21 FNo. Len. Field Value +08:17:21 ============================================================================ +08:17:21 [ 1] [ 4] [0810] +08:17:21 [ 7] [ 10] [0320152909] +08:17:21 [ 11] [ 6] [082909] +08:17:21 [ 37] [ 12] [579080829090] +08:17:21 [ 39] [ 2] [00] +08:17:21 [ 70] [ 3] [810] +08:17:21 ============================================================================ +08:17:21 Calculate Source COMM Id = 6 +08:17:21 ============================================================================ +08:17:21 + + +waiting on router queue for slot.... +08:17:30 ============================================================================ +08:17:30 Slot Id : <269> +08:17:30 Transaction Type : REQUEST +08:17:30 Received From : +08:17:30 ============================================================================ +08:17:30 FNo. Len. Field Value +08:17:30 ============================================================================ +08:17:30 [ 1] [ 4] [0800] +08:17:30 [ 7] [ 10] [0320011638] +08:17:30 [ 11] [ 6] [155367] +08:17:30 [ 70] [ 3] [301] +08:17:30 ============================================================================ +08:17:30 + + +waiting on router queue for slot.... +08:17:30 Sending to : +08:17:30 ============================================================================ +08:17:30 ============================================================================ +08:17:30 Slot Id : <269> +08:17:30 Transaction Type : RESPONSE +08:17:30 Received From : +08:17:30 ============================================================================ +08:17:30 FNo. Len. Field Value +08:17:30 ============================================================================ +08:17:30 [ 1] [ 4] [0810] +08:17:30 [ 7] [ 10] [0320011638] +08:17:30 [ 11] [ 6] [155367] +08:17:30 [ 39] [ 2] [00] +08:17:30 [ 70] [ 3] [301] +08:17:30 ============================================================================ +08:17:30 Calculate Source COMM Id = 2 +08:17:30 ============================================================================ +08:17:30 + + +waiting on router queue for slot.... +08:17:35 ============================================================================ +08:17:35 Slot Id : <240> +08:17:35 Transaction Type : REQUEST +08:17:35 Received From : +08:17:35 ============================================================================ +08:17:35 FNo. Len. Field Value +08:17:35 ============================================================================ +08:17:35 [ 1] [ 4] [0200] +08:17:35 [ 2] [ 16] [6213544001794640] +08:17:35 [ 3] [ 6] [010000] +08:17:35 [ 4] [ 12] [000010000000] +08:17:35 [ 7] [ 10] [0320081526] +08:17:35 [ 11] [ 6] [932418] +08:17:35 [ 12] [ 6] [081526] +08:17:35 [ 13] [ 4] [0320] +08:17:35 [ 15] [ 4] [0320] +08:17:35 [ 18] [ 4] [6011] +08:17:35 [ 19] [ 3] [418] +08:17:35 [ 22] [ 3] [021] +08:17:35 [ 25] [ 2] [01] +08:17:35 [ 28] [ 9] [D00002000] +08:17:35 [ 32] [ 6] [668899] +08:17:35 [ 35] [ 32] [6213544001794640=491212019464370] +08:17:35 [ 37] [ 12] [507902435603] +08:17:35 [ 41] [ 8] [03020031] +08:17:35 [ 42] [ 15] [APT ] +08:17:35 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:17:35 [ 49] [ 3] [418] +08:17:35 [ 52] [ 16] [3D87841A3D092293] +08:17:35 ============================================================================ +08:17:35 + + +waiting on router queue for slot.... +08:17:35 Sending to : +08:17:35 ============================================================================ +08:17:35 Sending to : +08:17:35 ============================================================================ +08:17:35 ============================================================================ +08:17:35 Slot Id : <240> +08:17:35 Transaction Type : REQUEST +08:17:35 Received From : +08:17:35 ============================================================================ +08:17:35 FNo. Len. Field Value +08:17:35 ============================================================================ +08:17:35 [ 1] [ 4] [0200] +08:17:35 [ 2] [ 16] [6213544001794640] +08:17:35 [ 3] [ 6] [010000] +08:17:35 [ 4] [ 12] [000010000000] +08:17:35 [ 7] [ 10] [0320081526] +08:17:35 [ 11] [ 6] [932418] +08:17:35 [ 12] [ 6] [081526] +08:17:35 [ 13] [ 4] [0320] +08:17:35 [ 15] [ 4] [0320] +08:17:35 [ 18] [ 4] [6011] +08:17:35 [ 19] [ 3] [418] +08:17:35 [ 22] [ 3] [021] +08:17:35 [ 25] [ 2] [01] +08:17:35 [ 28] [ 9] [D00002000] +08:17:35 [ 32] [ 6] [668899] +08:17:35 [ 35] [ 32] [6213544001794640=491212019464370] +08:17:35 [ 37] [ 12] [507902435603] +08:17:35 [ 41] [ 8] [03020031] +08:17:35 [ 42] [ 15] [APT ] +08:17:35 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:17:35 [ 49] [ 3] [418] +08:17:35 [ 52] [ 16] [3D87841A3D092293] +08:17:35 ============================================================================ +08:17:35 + + +waiting on router queue for slot.... +08:17:35 Sending to : +08:17:35 ============================================================================ +08:17:35 ============================================================================ +08:17:35 Slot Id : <240> +08:17:35 Transaction Type : REQUEST +08:17:35 Received From : +08:17:35 ============================================================================ +08:17:35 FNo. Len. Field Value +08:17:35 ============================================================================ +08:17:35 [ 1] [ 4] [0200] +08:17:35 [ 2] [ 16] [6213544001794640] +08:17:35 [ 3] [ 6] [010000] +08:17:35 [ 4] [ 12] [000010000000] +08:17:35 [ 7] [ 10] [0320081526] +08:17:35 [ 11] [ 6] [932418] +08:17:35 [ 12] [ 6] [081526] +08:17:35 [ 13] [ 4] [0320] +08:17:35 [ 15] [ 4] [0320] +08:17:35 [ 18] [ 4] [6011] +08:17:35 [ 19] [ 3] [418] +08:17:35 [ 22] [ 3] [021] +08:17:35 [ 25] [ 2] [01] +08:17:35 [ 28] [ 9] [D00002000] +08:17:35 [ 32] [ 6] [668899] +08:17:35 [ 35] [ 32] [6213544001794640=491212019464370] +08:17:35 [ 37] [ 12] [507902435603] +08:17:35 [ 41] [ 8] [03020031] +08:17:35 [ 42] [ 15] [APT ] +08:17:35 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:17:35 [ 49] [ 3] [418] +08:17:35 [ 52] [ 16] [BF6B4C14DF04F035] +08:17:35 ============================================================================ +08:17:35 + + +waiting on router queue for slot.... +08:17:35 Sending to : <0> +08:17:35 ============================================================================ +08:17:35 ============================================================================ +08:17:35 Slot Id : <240> +08:17:35 Transaction Type : RESPONSE +08:17:35 Received From : +08:17:35 ============================================================================ +08:17:35 FNo. Len. Field Value +08:17:35 ============================================================================ +08:17:35 [ 1] [ 4] [0210] +08:17:35 [ 2] [ 16] [6213544001794640] +08:17:35 [ 3] [ 6] [010000] +08:17:35 [ 4] [ 12] [000010000000] +08:17:35 [ 7] [ 10] [0320081526] +08:17:35 [ 11] [ 6] [932418] +08:17:35 [ 12] [ 6] [081526] +08:17:35 [ 13] [ 4] [0320] +08:17:35 [ 15] [ 4] [0320] +08:17:35 [ 18] [ 4] [6011] +08:17:35 [ 19] [ 3] [418] +08:17:35 [ 22] [ 3] [021] +08:17:35 [ 32] [ 6] [668899] +08:17:35 [ 35] [ 32] [6213544001794640=491212019464370] +08:17:35 [ 37] [ 12] [507902435603] +08:17:35 [ 38] [ 6] [081732] +08:17:35 [ 39] [ 2] [75] +08:17:35 [ 41] [ 8] [03020031] +08:17:35 [ 49] [ 3] [418] +08:17:35 ============================================================================ +08:17:35 Sending to : +08:17:35 ============================================================================ +08:17:35 + + +waiting on router queue for slot.... +08:17:37 ============================================================================ +08:17:37 Slot Id : <240> +08:17:37 Transaction Type : RESPONSE +08:17:37 Received From : +08:17:37 ============================================================================ +08:17:37 FNo. Len. Field Value +08:17:37 ============================================================================ +08:17:37 [ 1] [ 4] [0210] +08:17:37 [ 2] [ 16] [6213544001794640] +08:17:37 [ 3] [ 6] [010000] +08:17:37 [ 4] [ 12] [000010000000] +08:17:37 [ 7] [ 10] [0320081526] +08:17:37 [ 11] [ 6] [932418] +08:17:37 [ 12] [ 6] [081526] +08:17:37 [ 13] [ 4] [0320] +08:17:37 [ 15] [ 4] [0320] +08:17:37 [ 18] [ 4] [6011] +08:17:37 [ 19] [ 3] [418] +08:17:37 [ 22] [ 3] [021] +08:17:37 [ 32] [ 6] [668899] +08:17:37 [ 35] [ 32] [6213544001794640=491212019464370] +08:17:37 [ 37] [ 12] [507902435603] +08:17:37 [ 38] [ 6] [081732] +08:17:37 [ 39] [ 2] [75] +08:17:37 [ 41] [ 8] [03020031] +08:17:37 [ 49] [ 3] [418] +08:17:37 ============================================================================ +08:17:37 Calculate Source COMM Id = 4 +08:17:37 ============================================================================ +08:17:37 + + +waiting on router queue for slot.... +08:17:38 ============================================================================ +08:17:38 Slot Id : <197> +08:17:38 Transaction Type : REQUEST +08:17:38 Received From : +08:17:38 ============================================================================ +08:17:38 FNo. Len. Field Value +08:17:38 ============================================================================ +08:17:38 [ 1] [ 4] [0800] +08:17:38 [ 2] [ 5] [02531] +08:17:38 [ 3] [ 6] [579088] +08:17:38 [ 7] [ 10] [0320011738] +08:17:38 [ 11] [ 6] [806893] +08:17:38 [ 15] [ 10] [0320011738] +08:17:38 [ 37] [ 11] [57908806893] +08:17:38 [ 70] [ 3] [001] +08:17:38 ============================================================================ +08:17:38 + + +waiting on router queue for slot.... +08:17:38 ============================================================================ +08:17:38 Slot Id : <197> +08:17:38 Transaction Type : RESPONSE +08:17:38 Received From : +08:17:38 ============================================================================ +08:17:38 FNo. Len. Field Value +08:17:38 ============================================================================ +08:17:38 [ 1] [ 4] [0810] +08:17:38 [ 7] [ 10] [0320011738] +08:17:38 [ 11] [ 6] [806893] +08:17:38 [ 15] [ 4] [0320] +08:17:38 [ 37] [ 12] [57908806893] +08:17:38 [ 39] [ 2] [00] +08:17:38 [ 70] [ 3] [001] +08:17:38 ============================================================================ +08:17:38 Sending to : +08:17:38 ============================================================================ +08:17:38 + + +waiting on router queue for slot.... +08:17:41 ============================================================================ +08:17:41 Slot Id : <228> +08:17:41 Transaction Type : REQUEST +08:17:41 Received From : +08:17:41 ============================================================================ +08:17:41 FNo. Len. Field Value +08:17:41 ============================================================================ +08:17:41 [ 1] [ 4] [0800] +08:17:41 [ 7] [ 10] [0320011649] +08:17:41 [ 11] [ 6] [155368] +08:17:41 [ 70] [ 3] [301] +08:17:41 ============================================================================ +08:17:41 + + +waiting on router queue for slot.... +08:17:41 Sending to : +08:17:41 ============================================================================ +08:17:41 ============================================================================ +08:17:41 Slot Id : <228> +08:17:41 Transaction Type : RESPONSE +08:17:41 Received From : +08:17:41 ============================================================================ +08:17:41 FNo. Len. Field Value +08:17:41 ============================================================================ +08:17:41 [ 1] [ 4] [0810] +08:17:41 [ 7] [ 10] [0320011649] +08:17:41 [ 11] [ 6] [155368] +08:17:41 [ 39] [ 2] [00] +08:17:41 [ 70] [ 3] [301] +08:17:41 ============================================================================ +08:17:41 Calculate Source COMM Id = 2 +08:17:41 ============================================================================ +08:17:41 + + +waiting on router queue for slot.... +08:17:41 ============================================================================ +08:17:41 Slot Id : <256> +08:17:41 Transaction Type : REQUEST +08:17:41 Received From : +08:17:41 ============================================================================ +08:17:41 FNo. Len. Field Value +08:17:41 ============================================================================ +08:17:41 [ 1] [ 4] [0200] +08:17:41 [ 2] [ 16] [6688990108408301] +08:17:41 [ 3] [ 6] [011000] +08:17:41 [ 4] [ 12] [000100000000] +08:17:41 [ 7] [ 10] [0320081738] +08:17:41 [ 11] [ 6] [681496] +08:17:41 [ 12] [ 6] [081738] +08:17:41 [ 13] [ 4] [0320] +08:17:41 [ 15] [ 4] [0320] +08:17:41 [ 18] [ 4] [6011] +08:17:41 [ 22] [ 3] [900] +08:17:41 [ 25] [ 2] [02] +08:17:41 [ 28] [ 9] [D00002000] +08:17:41 [ 32] [ 6] [621354] +08:17:41 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:17:41 [ 37] [ 12] [507903226543] +08:17:41 [ 41] [ 8] [04003200] +08:17:41 [ 42] [ 15] [NATIVE ] +08:17:41 [ 43] [ 40] [DONKHONG Kong LAO] +08:17:41 [ 49] [ 3] [418] +08:17:41 [ 52] [ 16] [D4851EE20FD0A8AD] +08:17:41 ============================================================================ +08:17:41 + + +waiting on router queue for slot.... +08:17:41 Sending to : +08:17:41 ============================================================================ +08:17:41 Sending to : +08:17:41 ============================================================================ +08:17:42 ============================================================================ +08:17:42 Slot Id : <256> +08:17:42 Transaction Type : REQUEST +08:17:42 Received From : +08:17:42 ============================================================================ +08:17:42 FNo. Len. Field Value +08:17:42 ============================================================================ +08:17:42 [ 1] [ 4] [0200] +08:17:42 [ 2] [ 16] [6688990108408301] +08:17:42 [ 3] [ 6] [011000] +08:17:42 [ 4] [ 12] [000100000000] +08:17:42 [ 7] [ 10] [0320081738] +08:17:42 [ 11] [ 6] [681496] +08:17:42 [ 12] [ 6] [081738] +08:17:42 [ 13] [ 4] [0320] +08:17:42 [ 15] [ 4] [0320] +08:17:42 [ 18] [ 4] [6011] +08:17:42 [ 22] [ 3] [900] +08:17:42 [ 25] [ 2] [02] +08:17:42 [ 28] [ 9] [D00002000] +08:17:42 [ 32] [ 6] [621354] +08:17:42 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:17:42 [ 37] [ 12] [507903226543] +08:17:42 [ 41] [ 8] [04003200] +08:17:42 [ 42] [ 15] [NATIVE ] +08:17:42 [ 43] [ 40] [DONKHONG Kong LAO] +08:17:42 [ 49] [ 3] [418] +08:17:42 [ 52] [ 16] [D4851EE20FD0A8AD] +08:17:42 ============================================================================ +08:17:42 + + +waiting on router queue for slot.... +08:17:42 Sending to : +08:17:42 ============================================================================ +08:17:42 ============================================================================ +08:17:42 Slot Id : <256> +08:17:42 Transaction Type : REQUEST +08:17:42 Received From : +08:17:42 ============================================================================ +08:17:42 FNo. Len. Field Value +08:17:42 ============================================================================ +08:17:42 [ 1] [ 4] [0200] +08:17:42 [ 2] [ 16] [6688990108408301] +08:17:42 [ 3] [ 6] [011000] +08:17:42 [ 4] [ 12] [000100000000] +08:17:42 [ 7] [ 10] [0320081738] +08:17:42 [ 11] [ 6] [681496] +08:17:42 [ 12] [ 6] [081738] +08:17:42 [ 13] [ 4] [0320] +08:17:42 [ 15] [ 4] [0320] +08:17:42 [ 18] [ 4] [6011] +08:17:42 [ 22] [ 3] [900] +08:17:42 [ 25] [ 2] [02] +08:17:42 [ 28] [ 9] [D00002000] +08:17:42 [ 32] [ 6] [621354] +08:17:42 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:17:42 [ 37] [ 12] [507903226543] +08:17:42 [ 41] [ 8] [04003200] +08:17:42 [ 42] [ 15] [NATIVE ] +08:17:42 [ 43] [ 40] [DONKHONG Kong LAO] +08:17:42 [ 49] [ 3] [418] +08:17:42 [ 52] [ 16] [5D77FEE3FCAB5D64] +08:17:42 ============================================================================ +08:17:42 + + +waiting on router queue for slot.... +08:17:42 Sending to : <4> +08:17:42 ============================================================================ +08:17:43 ============================================================================ +08:17:43 Slot Id : <256> +08:17:43 Transaction Type : RESPONSE +08:17:43 Received From : +08:17:43 ============================================================================ +08:17:43 FNo. Len. Field Value +08:17:43 ============================================================================ +08:17:43 [ 1] [ 4] [0210] +08:17:43 [ 2] [ 16] [6688990108408301] +08:17:43 [ 3] [ 6] [011000] +08:17:43 [ 4] [ 12] [000100000000] +08:17:43 [ 11] [ 6] [681496] +08:17:43 [ 12] [ 6] [081738] +08:17:43 [ 15] [ 4] [0320] +08:17:43 [ 18] [ 4] [6011] +08:17:43 [ 32] [ 6] [621354] +08:17:43 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:17:43 [ 37] [ 12] [507903226543] +08:17:43 [ 38] [ 6] [766975] +08:17:43 [ 39] [ 2] [00] +08:17:43 [ 41] [ 8] [04003200] +08:17:43 [ 49] [ 3] [418] +08:17:43 [ 54] [ 20] [1002418C000089138358] +08:17:43 ============================================================================ +08:17:43 Sending to : +08:17:43 ============================================================================ +08:17:43 + + +waiting on router queue for slot.... +08:17:44 ============================================================================ +08:17:44 Slot Id : <256> +08:17:44 Transaction Type : RESPONSE +08:17:44 Received From : +08:17:44 ============================================================================ +08:17:44 FNo. Len. Field Value +08:17:44 ============================================================================ +08:17:44 [ 1] [ 4] [0210] +08:17:44 [ 2] [ 16] [6688990108408301] +08:17:44 [ 3] [ 6] [011000] +08:17:44 [ 4] [ 12] [000100000000] +08:17:44 [ 11] [ 6] [681496] +08:17:44 [ 12] [ 6] [081738] +08:17:44 [ 15] [ 4] [0320] +08:17:44 [ 18] [ 4] [6011] +08:17:44 [ 32] [ 6] [621354] +08:17:44 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:17:44 [ 37] [ 12] [507903226543] +08:17:44 [ 38] [ 6] [766975] +08:17:44 [ 39] [ 2] [00] +08:17:44 [ 41] [ 8] [04003200] +08:17:44 [ 49] [ 3] [418] +08:17:44 [ 54] [ 20] [1002418C000089138358] +08:17:44 ============================================================================ +08:17:44 Calculate Source COMM Id = 0 +08:17:44 ============================================================================ +08:17:44 + + +waiting on router queue for slot.... +08:17:56 ============================================================================ +08:17:56 Slot Id : <265> +08:17:56 Transaction Type : REQUEST +08:17:56 Received From : +08:17:56 ============================================================================ +08:17:56 FNo. Len. Field Value +08:17:56 ============================================================================ +08:17:56 [ 1] [ 4] [0800] +08:17:56 [ 7] [ 10] [0320011704] +08:17:56 [ 11] [ 6] [155369] +08:17:56 [ 70] [ 3] [301] +08:17:56 ============================================================================ +08:17:56 + + +waiting on router queue for slot.... +08:17:56 Sending to : +08:17:56 ============================================================================ +08:17:56 ============================================================================ +08:17:56 Slot Id : <265> +08:17:56 Transaction Type : RESPONSE +08:17:56 Received From : +08:17:56 ============================================================================ +08:17:56 FNo. Len. Field Value +08:17:56 ============================================================================ +08:17:56 [ 1] [ 4] [0810] +08:17:56 [ 7] [ 10] [0320011704] +08:17:56 [ 11] [ 6] [155369] +08:17:56 [ 39] [ 2] [00] +08:17:56 [ 70] [ 3] [301] +08:17:56 ============================================================================ +08:17:56 Calculate Source COMM Id = 2 +08:17:56 ============================================================================ +08:17:56 + + +waiting on router queue for slot.... +08:17:58 ============================================================================ +08:17:58 Slot Id : <275> +08:17:58 Transaction Type : REQUEST +08:17:58 Received From : +08:17:58 ============================================================================ +08:17:58 FNo. Len. Field Value +08:17:58 ============================================================================ +08:17:58 [ 1] [ 4] [0200] +08:17:58 [ 2] [ 16] [6688990100951100] +08:17:58 [ 3] [ 6] [300000] +08:17:58 [ 4] [ 12] [000000000000] +08:17:58 [ 7] [ 10] [0320081754] +08:17:58 [ 11] [ 6] [681574] +08:17:58 [ 12] [ 6] [081754] +08:17:58 [ 13] [ 4] [0320] +08:17:58 [ 15] [ 4] [0320] +08:17:58 [ 18] [ 4] [6011] +08:17:58 [ 22] [ 3] [900] +08:17:58 [ 25] [ 2] [02] +08:17:58 [ 28] [ 9] [D00000000] +08:17:58 [ 32] [ 6] [621354] +08:17:58 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:17:58 [ 37] [ 12] [507904719369] +08:17:58 [ 41] [ 8] [18001000] +08:17:58 [ 42] [ 15] [NATIVE ] +08:17:58 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:17:58 [ 49] [ 3] [418] +08:17:58 [ 52] [ 16] [B8E5BA684A61D2FD] +08:17:58 ============================================================================ +08:17:58 + + +waiting on router queue for slot.... +08:17:58 Sending to : +08:17:58 ============================================================================ +08:17:58 Sending to : +08:17:58 ============================================================================ +08:17:58 ============================================================================ +08:17:58 Slot Id : <275> +08:17:58 Transaction Type : REQUEST +08:17:58 Received From : +08:17:58 ============================================================================ +08:17:58 FNo. Len. Field Value +08:17:58 ============================================================================ +08:17:58 [ 1] [ 4] [0200] +08:17:58 [ 2] [ 16] [6688990100951100] +08:17:58 [ 3] [ 6] [300000] +08:17:58 [ 4] [ 12] [000000000000] +08:17:58 [ 7] [ 10] [0320081754] +08:17:58 [ 11] [ 6] [681574] +08:17:58 [ 12] [ 6] [081754] +08:17:58 [ 13] [ 4] [0320] +08:17:58 [ 15] [ 4] [0320] +08:17:58 [ 18] [ 4] [6011] +08:17:58 [ 22] [ 3] [900] +08:17:58 [ 25] [ 2] [02] +08:17:58 [ 28] [ 9] [D00000000] +08:17:58 [ 32] [ 6] [621354] +08:17:58 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:17:58 [ 37] [ 12] [507904719369] +08:17:58 [ 41] [ 8] [18001000] +08:17:58 [ 42] [ 15] [NATIVE ] +08:17:58 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:17:58 [ 49] [ 3] [418] +08:17:58 [ 52] [ 16] [B8E5BA684A61D2FD] +08:17:58 ============================================================================ +08:17:58 + + +waiting on router queue for slot.... +08:17:58 Sending to : +08:17:58 ============================================================================ +08:17:58 ============================================================================ +08:17:58 Slot Id : <275> +08:17:58 Transaction Type : REQUEST +08:17:58 Received From : +08:17:58 ============================================================================ +08:17:58 FNo. Len. Field Value +08:17:58 ============================================================================ +08:17:58 [ 1] [ 4] [0200] +08:17:58 [ 2] [ 16] [6688990100951100] +08:17:58 [ 3] [ 6] [300000] +08:17:58 [ 4] [ 12] [000000000000] +08:17:58 [ 7] [ 10] [0320081754] +08:17:58 [ 11] [ 6] [681574] +08:17:58 [ 12] [ 6] [081754] +08:17:58 [ 13] [ 4] [0320] +08:17:58 [ 15] [ 4] [0320] +08:17:58 [ 18] [ 4] [6011] +08:17:58 [ 22] [ 3] [900] +08:17:58 [ 25] [ 2] [02] +08:17:58 [ 28] [ 9] [D00000000] +08:17:58 [ 32] [ 6] [621354] +08:17:58 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:17:58 [ 37] [ 12] [507904719369] +08:17:58 [ 41] [ 8] [18001000] +08:17:58 [ 42] [ 15] [NATIVE ] +08:17:58 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:17:58 [ 49] [ 3] [418] +08:17:58 [ 52] [ 16] [23C7B0DAE11A9C77] +08:17:58 ============================================================================ +08:17:58 + + +waiting on router queue for slot.... +08:17:58 Sending to : <4> +08:17:58 ============================================================================ +08:17:59 ============================================================================ +08:17:59 Slot Id : <275> +08:17:59 Transaction Type : RESPONSE +08:17:59 Received From : +08:17:59 ============================================================================ +08:17:59 FNo. Len. Field Value +08:17:59 ============================================================================ +08:17:59 [ 1] [ 4] [0210] +08:17:59 [ 2] [ 16] [6688990100951100] +08:17:59 [ 3] [ 6] [300000] +08:17:59 [ 4] [ 12] [000000000000] +08:17:59 [ 11] [ 6] [681574] +08:17:59 [ 12] [ 6] [081754] +08:17:59 [ 15] [ 4] [0320] +08:17:59 [ 18] [ 4] [6011] +08:17:59 [ 32] [ 6] [621354] +08:17:59 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:17:59 [ 37] [ 12] [507904719369] +08:17:59 [ 38] [ 6] [972383] +08:17:59 [ 39] [ 2] [00] +08:17:59 [ 41] [ 8] [18001000] +08:17:59 [ 49] [ 3] [418] +08:17:59 [ 54] [ 20] [0002418C000222355625] +08:17:59 ============================================================================ +08:17:59 Sending to : +08:17:59 ============================================================================ +08:17:59 + + +waiting on router queue for slot.... +08:18:01 ============================================================================ +08:18:01 Slot Id : <275> +08:18:01 Transaction Type : RESPONSE +08:18:01 Received From : +08:18:01 ============================================================================ +08:18:01 FNo. Len. Field Value +08:18:01 ============================================================================ +08:18:01 [ 1] [ 4] [0210] +08:18:01 [ 2] [ 16] [6688990100951100] +08:18:01 [ 3] [ 6] [300000] +08:18:01 [ 4] [ 12] [000000000000] +08:18:01 [ 11] [ 6] [681574] +08:18:01 [ 12] [ 6] [081754] +08:18:01 [ 15] [ 4] [0320] +08:18:01 [ 18] [ 4] [6011] +08:18:01 [ 32] [ 6] [621354] +08:18:01 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:18:01 [ 37] [ 12] [507904719369] +08:18:01 [ 38] [ 6] [972383] +08:18:01 [ 39] [ 2] [00] +08:18:01 [ 41] [ 8] [18001000] +08:18:01 [ 49] [ 3] [418] +08:18:01 [ 54] [ 20] [0002418C000222355625] +08:18:01 ============================================================================ +08:18:01 Calculate Source COMM Id = 0 +08:18:01 ============================================================================ +08:18:01 + + +waiting on router queue for slot.... +08:18:07 ============================================================================ +08:18:07 Slot Id : <247> +08:18:07 Transaction Type : REQUEST +08:18:07 Received From : +08:18:07 ============================================================================ +08:18:07 FNo. Len. Field Value +08:18:07 ============================================================================ +08:18:07 [ 1] [ 4] [0800] +08:18:07 [ 7] [ 10] [0320011715] +08:18:07 [ 11] [ 6] [155370] +08:18:07 [ 70] [ 3] [301] +08:18:07 ============================================================================ +08:18:07 + + +waiting on router queue for slot.... +08:18:07 Sending to : +08:18:07 ============================================================================ +08:18:07 ============================================================================ +08:18:07 Slot Id : <247> +08:18:07 Transaction Type : RESPONSE +08:18:07 Received From : +08:18:07 ============================================================================ +08:18:07 FNo. Len. Field Value +08:18:07 ============================================================================ +08:18:07 [ 1] [ 4] [0810] +08:18:07 [ 7] [ 10] [0320011715] +08:18:07 [ 11] [ 6] [155370] +08:18:07 [ 39] [ 2] [00] +08:18:07 [ 70] [ 3] [301] +08:18:07 ============================================================================ +08:18:07 Calculate Source COMM Id = 2 +08:18:07 ============================================================================ +08:18:07 + + +waiting on router queue for slot.... +08:18:18 ============================================================================ +08:18:18 Slot Id : <218> +08:18:18 Transaction Type : REQUEST +08:18:18 Received From : +08:18:18 ============================================================================ +08:18:18 FNo. Len. Field Value +08:18:18 ============================================================================ +08:18:18 [ 1] [ 4] [0800] +08:18:18 [ 7] [ 10] [0320011726] +08:18:18 [ 11] [ 6] [155371] +08:18:18 [ 70] [ 3] [301] +08:18:18 ============================================================================ +08:18:18 + + +waiting on router queue for slot.... +08:18:18 Sending to : +08:18:18 ============================================================================ +08:18:18 ============================================================================ +08:18:18 Slot Id : <218> +08:18:18 Transaction Type : RESPONSE +08:18:18 Received From : +08:18:18 ============================================================================ +08:18:18 FNo. Len. Field Value +08:18:18 ============================================================================ +08:18:18 [ 1] [ 4] [0810] +08:18:18 [ 7] [ 10] [0320011726] +08:18:18 [ 11] [ 6] [155371] +08:18:18 [ 39] [ 2] [00] +08:18:18 [ 70] [ 3] [301] +08:18:18 ============================================================================ +08:18:18 Calculate Source COMM Id = 2 +08:18:18 ============================================================================ +08:18:18 + + +waiting on router queue for slot.... +08:18:21 ============================================================================ +08:18:21 Slot Id : <274> +08:18:21 Transaction Type : REQUEST +08:18:21 Received From : +08:18:21 ============================================================================ +08:18:21 FNo. Len. Field Value +08:18:21 ============================================================================ +08:18:21 [ 1] [ 4] [0200] +08:18:21 [ 2] [ 16] [6213544001794640] +08:18:21 [ 3] [ 6] [010000] +08:18:21 [ 4] [ 12] [000020000000] +08:18:21 [ 7] [ 10] [0320081613] +08:18:21 [ 11] [ 6] [932461] +08:18:21 [ 12] [ 6] [081613] +08:18:21 [ 13] [ 4] [0320] +08:18:21 [ 15] [ 4] [0320] +08:18:21 [ 18] [ 4] [6011] +08:18:21 [ 19] [ 3] [418] +08:18:21 [ 22] [ 3] [021] +08:18:21 [ 25] [ 2] [01] +08:18:21 [ 28] [ 9] [D00002000] +08:18:21 [ 32] [ 6] [668899] +08:18:21 [ 35] [ 32] [6213544001794640=491212019464370] +08:18:21 [ 37] [ 12] [507902435605] +08:18:21 [ 41] [ 8] [03020031] +08:18:21 [ 42] [ 15] [APT ] +08:18:21 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:18:21 [ 49] [ 3] [418] +08:18:21 [ 52] [ 16] [3D87841A3D092293] +08:18:21 ============================================================================ +08:18:21 + + +waiting on router queue for slot.... +08:18:21 Sending to : +08:18:21 ============================================================================ +08:18:21 Sending to : +08:18:21 ============================================================================ +08:18:21 ============================================================================ +08:18:21 Slot Id : <274> +08:18:21 Transaction Type : REQUEST +08:18:21 Received From : +08:18:21 ============================================================================ +08:18:21 FNo. Len. Field Value +08:18:21 ============================================================================ +08:18:21 [ 1] [ 4] [0200] +08:18:21 [ 2] [ 16] [6213544001794640] +08:18:21 [ 3] [ 6] [010000] +08:18:21 [ 4] [ 12] [000020000000] +08:18:21 [ 7] [ 10] [0320081613] +08:18:21 [ 11] [ 6] [932461] +08:18:21 [ 12] [ 6] [081613] +08:18:21 [ 13] [ 4] [0320] +08:18:21 [ 15] [ 4] [0320] +08:18:21 [ 18] [ 4] [6011] +08:18:21 [ 19] [ 3] [418] +08:18:21 [ 22] [ 3] [021] +08:18:21 [ 25] [ 2] [01] +08:18:21 [ 28] [ 9] [D00002000] +08:18:21 [ 32] [ 6] [668899] +08:18:21 [ 35] [ 32] [6213544001794640=491212019464370] +08:18:21 [ 37] [ 12] [507902435605] +08:18:21 [ 41] [ 8] [03020031] +08:18:21 [ 42] [ 15] [APT ] +08:18:21 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:18:21 [ 49] [ 3] [418] +08:18:21 [ 52] [ 16] [3D87841A3D092293] +08:18:21 ============================================================================ +08:18:21 + + +waiting on router queue for slot.... +08:18:21 Sending to : +08:18:21 ============================================================================ +08:18:21 ============================================================================ +08:18:21 Slot Id : <274> +08:18:21 Transaction Type : REQUEST +08:18:21 Received From : +08:18:21 ============================================================================ +08:18:21 FNo. Len. Field Value +08:18:21 ============================================================================ +08:18:21 [ 1] [ 4] [0200] +08:18:21 [ 2] [ 16] [6213544001794640] +08:18:21 [ 3] [ 6] [010000] +08:18:21 [ 4] [ 12] [000020000000] +08:18:21 [ 7] [ 10] [0320081613] +08:18:21 [ 11] [ 6] [932461] +08:18:21 [ 12] [ 6] [081613] +08:18:21 [ 13] [ 4] [0320] +08:18:21 [ 15] [ 4] [0320] +08:18:21 [ 18] [ 4] [6011] +08:18:21 [ 19] [ 3] [418] +08:18:21 [ 22] [ 3] [021] +08:18:21 [ 25] [ 2] [01] +08:18:21 [ 28] [ 9] [D00002000] +08:18:21 [ 32] [ 6] [668899] +08:18:21 [ 35] [ 32] [6213544001794640=491212019464370] +08:18:21 [ 37] [ 12] [507902435605] +08:18:21 [ 41] [ 8] [03020031] +08:18:21 [ 42] [ 15] [APT ] +08:18:21 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:18:21 [ 49] [ 3] [418] +08:18:21 [ 52] [ 16] [BF6B4C14DF04F035] +08:18:21 ============================================================================ +08:18:21 + + +waiting on router queue for slot.... +08:18:21 Sending to : <0> +08:18:21 ============================================================================ +08:18:22 ============================================================================ +08:18:22 Slot Id : <274> +08:18:22 Transaction Type : RESPONSE +08:18:22 Received From : +08:18:22 ============================================================================ +08:18:22 FNo. Len. Field Value +08:18:22 ============================================================================ +08:18:22 [ 1] [ 4] [0210] +08:18:22 [ 2] [ 16] [6213544001794640] +08:18:22 [ 3] [ 6] [010000] +08:18:22 [ 4] [ 12] [000020000000] +08:18:22 [ 7] [ 10] [0320081613] +08:18:22 [ 11] [ 6] [932461] +08:18:22 [ 12] [ 6] [081613] +08:18:22 [ 13] [ 4] [0320] +08:18:22 [ 15] [ 4] [0320] +08:18:22 [ 18] [ 4] [6011] +08:18:22 [ 19] [ 3] [418] +08:18:22 [ 22] [ 3] [021] +08:18:22 [ 32] [ 6] [668899] +08:18:22 [ 35] [ 32] [6213544001794640=491212019464370] +08:18:22 [ 37] [ 12] [507902435605] +08:18:22 [ 38] [ 6] [081818] +08:18:22 [ 39] [ 2] [75] +08:18:22 [ 41] [ 8] [03020031] +08:18:22 [ 49] [ 3] [418] +08:18:22 ============================================================================ +08:18:22 Sending to : +08:18:22 ============================================================================ +08:18:22 + + +waiting on router queue for slot.... +08:18:23 ============================================================================ +08:18:23 Slot Id : <274> +08:18:23 Transaction Type : RESPONSE +08:18:23 Received From : +08:18:23 ============================================================================ +08:18:23 FNo. Len. Field Value +08:18:23 ============================================================================ +08:18:23 [ 1] [ 4] [0210] +08:18:23 [ 2] [ 16] [6213544001794640] +08:18:23 [ 3] [ 6] [010000] +08:18:23 [ 4] [ 12] [000020000000] +08:18:23 [ 7] [ 10] [0320081613] +08:18:23 [ 11] [ 6] [932461] +08:18:23 [ 12] [ 6] [081613] +08:18:23 [ 13] [ 4] [0320] +08:18:23 [ 15] [ 4] [0320] +08:18:23 [ 18] [ 4] [6011] +08:18:23 [ 19] [ 3] [418] +08:18:23 [ 22] [ 3] [021] +08:18:23 [ 32] [ 6] [668899] +08:18:23 [ 35] [ 32] [6213544001794640=491212019464370] +08:18:23 [ 37] [ 12] [507902435605] +08:18:23 [ 38] [ 6] [081818] +08:18:23 [ 39] [ 2] [75] +08:18:23 [ 41] [ 8] [03020031] +08:18:23 [ 49] [ 3] [418] +08:18:23 ============================================================================ +08:18:23 Calculate Source COMM Id = 4 +08:18:23 ============================================================================ +08:18:23 + + +waiting on router queue for slot.... +08:18:26 ============================================================================ +08:18:26 Slot Id : <231> +08:18:26 Transaction Type : REQUEST +08:18:26 Received From : +08:18:26 ============================================================================ +08:18:26 FNo. Len. Field Value +08:18:26 ============================================================================ +08:18:26 [ 1] [ 4] [0800] +08:18:26 [ 7] [ 10] [0320153014] +08:18:26 [ 11] [ 6] [083014] +08:18:26 [ 37] [ 12] [57908083014] +08:18:26 [ 70] [ 3] [301] +08:18:26 ============================================================================ +08:18:26 + + +waiting on router queue for slot.... +08:18:26 Sending to : +08:18:26 ============================================================================ +08:18:26 ============================================================================ +08:18:26 Slot Id : <231> +08:18:26 Transaction Type : RESPONSE +08:18:26 Received From : +08:18:26 ============================================================================ +08:18:26 FNo. Len. Field Value +08:18:26 ============================================================================ +08:18:26 [ 1] [ 4] [0810] +08:18:26 [ 7] [ 10] [0320153014] +08:18:26 [ 11] [ 6] [083014] +08:18:26 [ 37] [ 12] [579080830140] +08:18:26 [ 39] [ 2] [00] +08:18:26 [ 70] [ 3] [810] +08:18:26 ============================================================================ +08:18:26 Calculate Source COMM Id = 6 +08:18:26 ============================================================================ +08:18:26 + + +waiting on router queue for slot.... +08:18:29 ============================================================================ +08:18:29 Slot Id : <279> +08:18:29 Transaction Type : REQUEST +08:18:29 Received From : +08:18:29 ============================================================================ +08:18:29 FNo. Len. Field Value +08:18:29 ============================================================================ +08:18:29 [ 1] [ 4] [0800] +08:18:29 [ 7] [ 10] [0320011737] +08:18:29 [ 11] [ 6] [155372] +08:18:29 [ 70] [ 3] [301] +08:18:29 ============================================================================ +08:18:29 + + +waiting on router queue for slot.... +08:18:29 Sending to : +08:18:29 ============================================================================ +08:18:29 ============================================================================ +08:18:29 Slot Id : <279> +08:18:29 Transaction Type : RESPONSE +08:18:29 Received From : +08:18:29 ============================================================================ +08:18:29 FNo. Len. Field Value +08:18:29 ============================================================================ +08:18:29 [ 1] [ 4] [0810] +08:18:29 [ 7] [ 10] [0320011737] +08:18:29 [ 11] [ 6] [155372] +08:18:29 [ 39] [ 2] [00] +08:18:29 [ 70] [ 3] [301] +08:18:29 ============================================================================ +08:18:29 Calculate Source COMM Id = 2 +08:18:29 ============================================================================ +08:18:29 + + +waiting on router queue for slot.... +08:18:40 ============================================================================ +08:18:40 Slot Id : <264> +08:18:40 Transaction Type : REQUEST +08:18:40 Received From : +08:18:40 ============================================================================ +08:18:40 FNo. Len. Field Value +08:18:40 ============================================================================ +08:18:40 [ 1] [ 4] [0800] +08:18:40 [ 2] [ 5] [02531] +08:18:40 [ 3] [ 6] [579088] +08:18:40 [ 7] [ 10] [0320011840] +08:18:40 [ 11] [ 6] [806894] +08:18:40 [ 15] [ 10] [0320011840] +08:18:40 [ 37] [ 11] [57908806894] +08:18:40 [ 70] [ 3] [001] +08:18:40 ============================================================================ +08:18:40 + + +waiting on router queue for slot.... +08:18:40 ============================================================================ +08:18:40 Slot Id : <264> +08:18:40 Transaction Type : RESPONSE +08:18:40 Received From : +08:18:40 ============================================================================ +08:18:40 FNo. Len. Field Value +08:18:40 ============================================================================ +08:18:40 [ 1] [ 4] [0810] +08:18:40 [ 7] [ 10] [0320011840] +08:18:40 [ 11] [ 6] [806894] +08:18:40 [ 15] [ 4] [0320] +08:18:40 [ 37] [ 12] [57908806894] +08:18:40 [ 39] [ 2] [00] +08:18:40 [ 70] [ 3] [001] +08:18:40 ============================================================================ +08:18:40 Sending to : +08:18:40 ============================================================================ +08:18:40 + + +waiting on router queue for slot.... +08:18:42 ============================================================================ +08:18:42 Slot Id : <254> +08:18:42 Transaction Type : REQUEST +08:18:42 Received From : +08:18:42 ============================================================================ +08:18:42 FNo. Len. Field Value +08:18:42 ============================================================================ +08:18:42 [ 1] [ 4] [0200] +08:18:42 [ 2] [ 16] [6213545000418313] +08:18:42 [ 3] [ 6] [011000] +08:18:42 [ 4] [ 12] [000100000000] +08:18:42 [ 7] [ 10] [0320082629] +08:18:42 [ 11] [ 6] [001938] +08:18:42 [ 12] [ 6] [082629] +08:18:42 [ 13] [ 4] [0320] +08:18:42 [ 14] [ 4] [4912] +08:18:42 [ 15] [ 4] [0320] +08:18:42 [ 18] [ 4] [6011] +08:18:42 [ 22] [ 3] [900] +08:18:42 [ 25] [ 2] [02] +08:18:42 [ 28] [ 9] [D00002000] +08:18:42 [ 32] [ 6] [220699] +08:18:42 [ 35] [ 32] [6213545000418313=491212011831004] +08:18:42 [ 37] [ 12] [507900296933] +08:18:42 [ 41] [ 8] [01001600] +08:18:42 [ 42] [ 15] [APTRA ] +08:18:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:18:42 [ 49] [ 3] [418] +08:18:42 [ 52] [ 16] [F1EFF3C7BB552A5C] +08:18:42 ============================================================================ +08:18:42 + + +waiting on router queue for slot.... +08:18:42 Sending to : +08:18:42 ============================================================================ +08:18:42 Sending to : +08:18:42 ============================================================================ +08:18:42 ============================================================================ +08:18:42 Slot Id : <254> +08:18:42 Transaction Type : REQUEST +08:18:42 Received From : +08:18:42 ============================================================================ +08:18:42 FNo. Len. Field Value +08:18:42 ============================================================================ +08:18:42 [ 1] [ 4] [0200] +08:18:42 [ 2] [ 16] [6213545000418313] +08:18:42 [ 3] [ 6] [011000] +08:18:42 [ 4] [ 12] [000100000000] +08:18:42 [ 7] [ 10] [0320082629] +08:18:42 [ 11] [ 6] [001938] +08:18:42 [ 12] [ 6] [082629] +08:18:42 [ 13] [ 4] [0320] +08:18:42 [ 14] [ 4] [4912] +08:18:42 [ 15] [ 4] [0320] +08:18:42 [ 18] [ 4] [6011] +08:18:42 [ 22] [ 3] [900] +08:18:42 [ 25] [ 2] [02] +08:18:42 [ 28] [ 9] [D00002000] +08:18:42 [ 32] [ 6] [220699] +08:18:42 [ 35] [ 32] [6213545000418313=491212011831004] +08:18:42 [ 37] [ 12] [507900296933] +08:18:42 [ 41] [ 8] [01001600] +08:18:42 [ 42] [ 15] [APTRA ] +08:18:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:18:42 [ 49] [ 3] [418] +08:18:42 [ 52] [ 16] [F1EFF3C7BB552A5C] +08:18:42 ============================================================================ +08:18:42 + + +waiting on router queue for slot.... +08:18:42 Sending to : +08:18:42 ============================================================================ +08:18:42 ============================================================================ +08:18:42 Slot Id : <254> +08:18:42 Transaction Type : REQUEST +08:18:42 Received From : +08:18:42 ============================================================================ +08:18:42 FNo. Len. Field Value +08:18:42 ============================================================================ +08:18:42 [ 1] [ 4] [0200] +08:18:42 [ 2] [ 16] [6213545000418313] +08:18:42 [ 3] [ 6] [011000] +08:18:42 [ 4] [ 12] [000100000000] +08:18:42 [ 7] [ 10] [0320082629] +08:18:42 [ 11] [ 6] [001938] +08:18:42 [ 12] [ 6] [082629] +08:18:42 [ 13] [ 4] [0320] +08:18:42 [ 14] [ 4] [4912] +08:18:42 [ 15] [ 4] [0320] +08:18:42 [ 18] [ 4] [6011] +08:18:42 [ 22] [ 3] [900] +08:18:42 [ 25] [ 2] [02] +08:18:42 [ 28] [ 9] [D00002000] +08:18:42 [ 32] [ 6] [220699] +08:18:42 [ 35] [ 32] [6213545000418313=491212011831004] +08:18:42 [ 37] [ 12] [507900296933] +08:18:42 [ 41] [ 8] [01001600] +08:18:42 [ 42] [ 15] [APTRA ] +08:18:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:18:42 [ 49] [ 3] [418] +08:18:42 [ 52] [ 16] [87A7B23E34CCFC4E] +08:18:42 ============================================================================ +08:18:42 + + +waiting on router queue for slot.... +08:18:42 Sending to : <0> +08:18:42 ============================================================================ +08:18:43 ============================================================================ +08:18:43 Slot Id : <254> +08:18:43 Transaction Type : RESPONSE +08:18:43 Received From : +08:18:43 ============================================================================ +08:18:43 FNo. Len. Field Value +08:18:43 ============================================================================ +08:18:43 [ 1] [ 4] [0210] +08:18:43 [ 2] [ 16] [6213545000418313] +08:18:43 [ 3] [ 6] [011000] +08:18:43 [ 4] [ 12] [000100000000] +08:18:43 [ 7] [ 10] [0320082629] +08:18:43 [ 11] [ 6] [001938] +08:18:43 [ 12] [ 6] [082629] +08:18:43 [ 13] [ 4] [0320] +08:18:43 [ 15] [ 4] [0320] +08:18:43 [ 18] [ 4] [6011] +08:18:43 [ 32] [ 6] [220699] +08:18:43 [ 35] [ 32] [6213545000418313=491212011831004] +08:18:43 [ 37] [ 12] [507900296933] +08:18:43 [ 38] [ 6] [834956] +08:18:43 [ 39] [ 2] [00] +08:18:43 [ 41] [ 8] [01001600] +08:18:43 [ 49] [ 3] [418] +08:18:43 [ 54] [ 40] [1001418C0001030370341002418C000103037034] +08:18:43 ============================================================================ +08:18:43 Sending to : +08:18:43 ============================================================================ +08:18:43 + + +waiting on router queue for slot.... +08:18:44 ============================================================================ +08:18:44 Slot Id : <239> +08:18:44 Transaction Type : REQUEST +08:18:44 Received From : +08:18:44 ============================================================================ +08:18:44 FNo. Len. Field Value +08:18:44 ============================================================================ +08:18:44 [ 1] [ 4] [0800] +08:18:44 [ 7] [ 10] [0320011752] +08:18:44 [ 11] [ 6] [155373] +08:18:44 [ 70] [ 3] [301] +08:18:44 ============================================================================ +08:18:44 + + +waiting on router queue for slot.... +08:18:44 Sending to : +08:18:44 ============================================================================ +08:18:44 ============================================================================ +08:18:44 Slot Id : <239> +08:18:44 Transaction Type : RESPONSE +08:18:44 Received From : +08:18:44 ============================================================================ +08:18:44 FNo. Len. Field Value +08:18:44 ============================================================================ +08:18:44 [ 1] [ 4] [0810] +08:18:44 [ 7] [ 10] [0320011752] +08:18:44 [ 11] [ 6] [155373] +08:18:44 [ 39] [ 2] [00] +08:18:44 [ 70] [ 3] [301] +08:18:44 ============================================================================ +08:18:44 Calculate Source COMM Id = 2 +08:18:44 ============================================================================ +08:18:44 + + +waiting on router queue for slot.... +08:18:44 ============================================================================ +08:18:44 Slot Id : <254> +08:18:44 Transaction Type : RESPONSE +08:18:44 Received From : +08:18:44 ============================================================================ +08:18:44 FNo. Len. Field Value +08:18:44 ============================================================================ +08:18:44 [ 1] [ 4] [0210] +08:18:44 [ 2] [ 16] [6213545000418313] +08:18:44 [ 3] [ 6] [011000] +08:18:44 [ 4] [ 12] [000100000000] +08:18:44 [ 7] [ 10] [0320082629] +08:18:44 [ 11] [ 6] [001938] +08:18:44 [ 12] [ 6] [082629] +08:18:44 [ 13] [ 4] [0320] +08:18:44 [ 15] [ 4] [0320] +08:18:44 [ 18] [ 4] [6011] +08:18:44 [ 32] [ 6] [220699] +08:18:44 [ 35] [ 32] [6213545000418313=491212011831004] +08:18:44 [ 37] [ 12] [507900296933] +08:18:44 [ 38] [ 6] [834956] +08:18:44 [ 39] [ 2] [00] +08:18:44 [ 41] [ 8] [01001600] +08:18:44 [ 49] [ 3] [418] +08:18:44 [ 54] [ 40] [1001418C0001030370341002418C000103037034] +08:18:44 ============================================================================ +08:18:44 Calculate Source COMM Id = 1 +08:18:44 ============================================================================ +08:18:44 + + +waiting on router queue for slot.... +08:18:49 ============================================================================ +08:18:49 Slot Id : <273> +08:18:49 Transaction Type : REQUEST +08:18:49 Received From : +08:18:49 ============================================================================ +08:18:49 FNo. Len. Field Value +08:18:49 ============================================================================ +08:18:49 [ 1] [ 4] [0200] +08:18:49 [ 2] [ 16] [6688990100951100] +08:18:49 [ 3] [ 6] [010000] +08:18:49 [ 4] [ 12] [000100000000] +08:18:49 [ 7] [ 10] [0320081845] +08:18:49 [ 11] [ 6] [681787] +08:18:49 [ 12] [ 6] [081845] +08:18:49 [ 13] [ 4] [0320] +08:18:49 [ 15] [ 4] [0320] +08:18:49 [ 18] [ 4] [6011] +08:18:49 [ 22] [ 3] [900] +08:18:49 [ 25] [ 2] [02] +08:18:49 [ 28] [ 9] [D00002000] +08:18:49 [ 32] [ 6] [621354] +08:18:49 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:18:49 [ 37] [ 12] [507904719371] +08:18:49 [ 41] [ 8] [18001000] +08:18:49 [ 42] [ 15] [NATIVE ] +08:18:49 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:18:49 [ 49] [ 3] [418] +08:18:49 [ 52] [ 16] [B8E5BA684A61D2FD] +08:18:49 ============================================================================ +08:18:49 + + +waiting on router queue for slot.... +08:18:49 Sending to : +08:18:49 ============================================================================ +08:18:49 Sending to : +08:18:49 ============================================================================ +08:18:49 ============================================================================ +08:18:49 Slot Id : <273> +08:18:49 Transaction Type : REQUEST +08:18:49 Received From : +08:18:49 ============================================================================ +08:18:49 FNo. Len. Field Value +08:18:49 ============================================================================ +08:18:49 [ 1] [ 4] [0200] +08:18:49 [ 2] [ 16] [6688990100951100] +08:18:49 [ 3] [ 6] [010000] +08:18:49 [ 4] [ 12] [000100000000] +08:18:49 [ 7] [ 10] [0320081845] +08:18:49 [ 11] [ 6] [681787] +08:18:49 [ 12] [ 6] [081845] +08:18:49 [ 13] [ 4] [0320] +08:18:49 [ 15] [ 4] [0320] +08:18:49 [ 18] [ 4] [6011] +08:18:49 [ 22] [ 3] [900] +08:18:49 [ 25] [ 2] [02] +08:18:49 [ 28] [ 9] [D00002000] +08:18:49 [ 32] [ 6] [621354] +08:18:49 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:18:49 [ 37] [ 12] [507904719371] +08:18:49 [ 41] [ 8] [18001000] +08:18:49 [ 42] [ 15] [NATIVE ] +08:18:49 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:18:49 [ 49] [ 3] [418] +08:18:49 [ 52] [ 16] [B8E5BA684A61D2FD] +08:18:49 ============================================================================ +08:18:49 + + +waiting on router queue for slot.... +08:18:49 Sending to : +08:18:49 ============================================================================ +08:18:49 ============================================================================ +08:18:49 Slot Id : <273> +08:18:49 Transaction Type : REQUEST +08:18:49 Received From : +08:18:49 ============================================================================ +08:18:49 FNo. Len. Field Value +08:18:49 ============================================================================ +08:18:49 [ 1] [ 4] [0200] +08:18:49 [ 2] [ 16] [6688990100951100] +08:18:49 [ 3] [ 6] [010000] +08:18:49 [ 4] [ 12] [000100000000] +08:18:49 [ 7] [ 10] [0320081845] +08:18:49 [ 11] [ 6] [681787] +08:18:49 [ 12] [ 6] [081845] +08:18:49 [ 13] [ 4] [0320] +08:18:49 [ 15] [ 4] [0320] +08:18:49 [ 18] [ 4] [6011] +08:18:49 [ 22] [ 3] [900] +08:18:49 [ 25] [ 2] [02] +08:18:49 [ 28] [ 9] [D00002000] +08:18:49 [ 32] [ 6] [621354] +08:18:49 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:18:49 [ 37] [ 12] [507904719371] +08:18:49 [ 41] [ 8] [18001000] +08:18:49 [ 42] [ 15] [NATIVE ] +08:18:49 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:18:49 [ 49] [ 3] [418] +08:18:49 [ 52] [ 16] [23C7B0DAE11A9C77] +08:18:49 ============================================================================ +08:18:49 + + +waiting on router queue for slot.... +08:18:49 Sending to : <4> +08:18:49 ============================================================================ +08:18:50 ============================================================================ +08:18:50 Slot Id : <273> +08:18:50 Transaction Type : RESPONSE +08:18:50 Received From : +08:18:50 ============================================================================ +08:18:50 FNo. Len. Field Value +08:18:50 ============================================================================ +08:18:50 [ 1] [ 4] [0210] +08:18:50 [ 2] [ 16] [6688990100951100] +08:18:50 [ 3] [ 6] [010000] +08:18:50 [ 4] [ 12] [000100000000] +08:18:50 [ 11] [ 6] [681787] +08:18:50 [ 12] [ 6] [081845] +08:18:50 [ 15] [ 4] [0320] +08:18:50 [ 18] [ 4] [6011] +08:18:50 [ 32] [ 6] [621354] +08:18:50 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:18:50 [ 37] [ 12] [507904719371] +08:18:50 [ 38] [ 6] [889333] +08:18:50 [ 39] [ 2] [00] +08:18:50 [ 41] [ 8] [18001000] +08:18:50 [ 49] [ 3] [418] +08:18:50 [ 54] [ 20] [0002418C000122155625] +08:18:50 ============================================================================ +08:18:50 Sending to : +08:18:50 ============================================================================ +08:18:50 + + +waiting on router queue for slot.... +08:18:51 ============================================================================ +08:18:51 Slot Id : <266> +08:18:51 Transaction Type : REQUEST +08:18:51 Received From : +08:18:51 ============================================================================ +08:18:51 FNo. Len. Field Value +08:18:51 ============================================================================ +08:18:51 [ 1] [ 4] [0200] +08:18:51 [ 2] [ 16] [6688990108408301] +08:18:51 [ 3] [ 6] [011000] +08:18:51 [ 4] [ 12] [000080000000] +08:18:51 [ 7] [ 10] [0320081847] +08:18:51 [ 11] [ 6] [681796] +08:18:51 [ 12] [ 6] [081847] +08:18:51 [ 13] [ 4] [0320] +08:18:51 [ 15] [ 4] [0320] +08:18:51 [ 18] [ 4] [6011] +08:18:51 [ 22] [ 3] [900] +08:18:51 [ 25] [ 2] [02] +08:18:51 [ 28] [ 9] [D00002000] +08:18:51 [ 32] [ 6] [621354] +08:18:51 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:18:51 [ 37] [ 12] [507903226545] +08:18:51 [ 41] [ 8] [04003200] +08:18:51 [ 42] [ 15] [NATIVE ] +08:18:51 [ 43] [ 40] [DONKHONG Kong LAO] +08:18:51 [ 49] [ 3] [418] +08:18:51 [ 52] [ 16] [D4851EE20FD0A8AD] +08:18:51 ============================================================================ +08:18:51 + + +waiting on router queue for slot.... +08:18:51 Sending to : +08:18:51 ============================================================================ +08:18:51 Sending to : +08:18:51 ============================================================================ +08:18:51 ============================================================================ +08:18:51 Slot Id : <266> +08:18:51 Transaction Type : REQUEST +08:18:51 Received From : +08:18:51 ============================================================================ +08:18:51 FNo. Len. Field Value +08:18:51 ============================================================================ +08:18:51 [ 1] [ 4] [0200] +08:18:51 [ 2] [ 16] [6688990108408301] +08:18:51 [ 3] [ 6] [011000] +08:18:51 [ 4] [ 12] [000080000000] +08:18:51 [ 7] [ 10] [0320081847] +08:18:51 [ 11] [ 6] [681796] +08:18:51 [ 12] [ 6] [081847] +08:18:51 [ 13] [ 4] [0320] +08:18:51 [ 15] [ 4] [0320] +08:18:51 [ 18] [ 4] [6011] +08:18:51 [ 22] [ 3] [900] +08:18:51 [ 25] [ 2] [02] +08:18:51 [ 28] [ 9] [D00002000] +08:18:51 [ 32] [ 6] [621354] +08:18:51 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:18:51 [ 37] [ 12] [507903226545] +08:18:51 [ 41] [ 8] [04003200] +08:18:51 [ 42] [ 15] [NATIVE ] +08:18:51 [ 43] [ 40] [DONKHONG Kong LAO] +08:18:51 [ 49] [ 3] [418] +08:18:51 [ 52] [ 16] [D4851EE20FD0A8AD] +08:18:51 ============================================================================ +08:18:51 + + +waiting on router queue for slot.... +08:18:51 Sending to : +08:18:51 ============================================================================ +08:18:51 ============================================================================ +08:18:51 Slot Id : <266> +08:18:51 Transaction Type : REQUEST +08:18:51 Received From : +08:18:51 ============================================================================ +08:18:51 FNo. Len. Field Value +08:18:51 ============================================================================ +08:18:51 [ 1] [ 4] [0200] +08:18:51 [ 2] [ 16] [6688990108408301] +08:18:51 [ 3] [ 6] [011000] +08:18:51 [ 4] [ 12] [000080000000] +08:18:51 [ 7] [ 10] [0320081847] +08:18:51 [ 11] [ 6] [681796] +08:18:51 [ 12] [ 6] [081847] +08:18:51 [ 13] [ 4] [0320] +08:18:51 [ 15] [ 4] [0320] +08:18:51 [ 18] [ 4] [6011] +08:18:51 [ 22] [ 3] [900] +08:18:51 [ 25] [ 2] [02] +08:18:51 [ 28] [ 9] [D00002000] +08:18:51 [ 32] [ 6] [621354] +08:18:51 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:18:51 [ 37] [ 12] [507903226545] +08:18:51 [ 41] [ 8] [04003200] +08:18:51 [ 42] [ 15] [NATIVE ] +08:18:51 [ 43] [ 40] [DONKHONG Kong LAO] +08:18:51 [ 49] [ 3] [418] +08:18:51 [ 52] [ 16] [5D77FEE3FCAB5D64] +08:18:51 ============================================================================ +08:18:51 + + +waiting on router queue for slot.... +08:18:51 Sending to : <4> +08:18:51 ============================================================================ +08:18:52 ============================================================================ +08:18:52 Slot Id : <273> +08:18:52 Transaction Type : RESPONSE +08:18:52 Received From : +08:18:52 ============================================================================ +08:18:52 FNo. Len. Field Value +08:18:52 ============================================================================ +08:18:52 [ 1] [ 4] [0210] +08:18:52 [ 2] [ 16] [6688990100951100] +08:18:52 [ 3] [ 6] [010000] +08:18:52 [ 4] [ 12] [000100000000] +08:18:52 [ 11] [ 6] [681787] +08:18:52 [ 12] [ 6] [081845] +08:18:52 [ 15] [ 4] [0320] +08:18:52 [ 18] [ 4] [6011] +08:18:52 [ 32] [ 6] [621354] +08:18:52 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:18:52 [ 37] [ 12] [507904719371] +08:18:52 [ 38] [ 6] [889333] +08:18:52 [ 39] [ 2] [00] +08:18:52 [ 41] [ 8] [18001000] +08:18:52 [ 49] [ 3] [418] +08:18:52 [ 54] [ 20] [0002418C000122155625] +08:18:52 ============================================================================ +08:18:52 Calculate Source COMM Id = 0 +08:18:52 ============================================================================ +08:18:52 + + +waiting on router queue for slot.... +08:18:52 ============================================================================ +08:18:52 Slot Id : <266> +08:18:52 Transaction Type : RESPONSE +08:18:52 Received From : +08:18:52 ============================================================================ +08:18:52 FNo. Len. Field Value +08:18:52 ============================================================================ +08:18:52 [ 1] [ 4] [0210] +08:18:52 [ 2] [ 16] [6688990108408301] +08:18:52 [ 3] [ 6] [011000] +08:18:52 [ 4] [ 12] [000080000000] +08:18:52 [ 11] [ 6] [681796] +08:18:52 [ 12] [ 6] [081847] +08:18:52 [ 15] [ 4] [0320] +08:18:52 [ 18] [ 4] [6011] +08:18:52 [ 32] [ 6] [621354] +08:18:52 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:18:52 [ 37] [ 12] [507903226545] +08:18:52 [ 38] [ 6] [018544] +08:18:52 [ 39] [ 2] [00] +08:18:52 [ 41] [ 8] [04003200] +08:18:52 [ 49] [ 3] [418] +08:18:52 [ 54] [ 20] [1002418C000008938358] +08:18:52 ============================================================================ +08:18:52 Sending to : +08:18:52 ============================================================================ +08:18:52 + + +waiting on router queue for slot.... +08:18:54 ============================================================================ +08:18:54 Slot Id : <266> +08:18:54 Transaction Type : RESPONSE +08:18:54 Received From : +08:18:54 ============================================================================ +08:18:54 FNo. Len. Field Value +08:18:54 ============================================================================ +08:18:54 [ 1] [ 4] [0210] +08:18:54 [ 2] [ 16] [6688990108408301] +08:18:54 [ 3] [ 6] [011000] +08:18:54 [ 4] [ 12] [000080000000] +08:18:54 [ 11] [ 6] [681796] +08:18:54 [ 12] [ 6] [081847] +08:18:54 [ 15] [ 4] [0320] +08:18:54 [ 18] [ 4] [6011] +08:18:54 [ 32] [ 6] [621354] +08:18:54 [ 35] [ 37] [6688990108408301=44061231830139900000] +08:18:54 [ 37] [ 12] [507903226545] +08:18:54 [ 38] [ 6] [018544] +08:18:54 [ 39] [ 2] [00] +08:18:54 [ 41] [ 8] [04003200] +08:18:54 [ 49] [ 3] [418] +08:18:54 [ 54] [ 20] [1002418C000008938358] +08:18:54 ============================================================================ +08:18:54 Calculate Source COMM Id = 0 +08:18:54 ============================================================================ +08:18:54 + + +waiting on router queue for slot.... +08:18:59 ============================================================================ +08:18:59 Slot Id : <272> +08:18:59 Transaction Type : REQUEST +08:18:59 Received From : +08:18:59 ============================================================================ +08:18:59 FNo. Len. Field Value +08:18:59 ============================================================================ +08:18:59 [ 1] [ 4] [0800] +08:18:59 [ 7] [ 10] [0320011807] +08:18:59 [ 11] [ 6] [155374] +08:18:59 [ 70] [ 3] [301] +08:18:59 ============================================================================ +08:18:59 + + +waiting on router queue for slot.... +08:18:59 Sending to : +08:18:59 ============================================================================ +08:18:59 ============================================================================ +08:18:59 Slot Id : <272> +08:18:59 Transaction Type : RESPONSE +08:18:59 Received From : +08:18:59 ============================================================================ +08:18:59 FNo. Len. Field Value +08:18:59 ============================================================================ +08:18:59 [ 1] [ 4] [0810] +08:18:59 [ 7] [ 10] [0320011807] +08:18:59 [ 11] [ 6] [155374] +08:18:59 [ 39] [ 2] [00] +08:18:59 [ 70] [ 3] [301] +08:18:59 ============================================================================ +08:18:59 Calculate Source COMM Id = 2 +08:18:59 ============================================================================ +08:18:59 + + +waiting on router queue for slot.... +08:19:01 ============================================================================ +08:19:01 Slot Id : <282> +08:19:01 Transaction Type : REQUEST +08:19:01 Received From : +08:19:01 ============================================================================ +08:19:01 FNo. Len. Field Value +08:19:01 ============================================================================ +08:19:01 [ 1] [ 4] [0200] +08:19:01 [ 2] [ 16] [6213544001794640] +08:19:01 [ 3] [ 6] [010000] +08:19:01 [ 4] [ 12] [000020000000] +08:19:01 [ 7] [ 10] [0320081653] +08:19:01 [ 11] [ 6] [932491] +08:19:01 [ 12] [ 6] [081653] +08:19:01 [ 13] [ 4] [0320] +08:19:01 [ 15] [ 4] [0320] +08:19:01 [ 18] [ 4] [6011] +08:19:01 [ 19] [ 3] [418] +08:19:01 [ 22] [ 3] [021] +08:19:01 [ 25] [ 2] [01] +08:19:01 [ 28] [ 9] [D00002000] +08:19:01 [ 32] [ 6] [668899] +08:19:01 [ 35] [ 32] [6213544001794640=491212019464370] +08:19:01 [ 37] [ 12] [507902435607] +08:19:01 [ 41] [ 8] [03020031] +08:19:01 [ 42] [ 15] [APT ] +08:19:01 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:19:01 [ 49] [ 3] [418] +08:19:01 [ 52] [ 16] [3D87841A3D092293] +08:19:01 ============================================================================ +08:19:01 + + +waiting on router queue for slot.... +08:19:01 Sending to : +08:19:01 ============================================================================ +08:19:01 Sending to : +08:19:01 ============================================================================ +08:19:01 ============================================================================ +08:19:01 Slot Id : <282> +08:19:01 Transaction Type : REQUEST +08:19:01 Received From : +08:19:01 ============================================================================ +08:19:01 FNo. Len. Field Value +08:19:01 ============================================================================ +08:19:01 [ 1] [ 4] [0200] +08:19:01 [ 2] [ 16] [6213544001794640] +08:19:01 [ 3] [ 6] [010000] +08:19:01 [ 4] [ 12] [000020000000] +08:19:01 [ 7] [ 10] [0320081653] +08:19:01 [ 11] [ 6] [932491] +08:19:01 [ 12] [ 6] [081653] +08:19:01 [ 13] [ 4] [0320] +08:19:01 [ 15] [ 4] [0320] +08:19:01 [ 18] [ 4] [6011] +08:19:01 [ 19] [ 3] [418] +08:19:01 [ 22] [ 3] [021] +08:19:01 [ 25] [ 2] [01] +08:19:01 [ 28] [ 9] [D00002000] +08:19:01 [ 32] [ 6] [668899] +08:19:01 [ 35] [ 32] [6213544001794640=491212019464370] +08:19:01 [ 37] [ 12] [507902435607] +08:19:01 [ 41] [ 8] [03020031] +08:19:01 [ 42] [ 15] [APT ] +08:19:01 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:19:01 [ 49] [ 3] [418] +08:19:01 [ 52] [ 16] [3D87841A3D092293] +08:19:01 ============================================================================ +08:19:01 + + +waiting on router queue for slot.... +08:19:01 Sending to : +08:19:01 ============================================================================ +08:19:01 ============================================================================ +08:19:01 Slot Id : <282> +08:19:01 Transaction Type : REQUEST +08:19:01 Received From : +08:19:01 ============================================================================ +08:19:01 FNo. Len. Field Value +08:19:01 ============================================================================ +08:19:01 [ 1] [ 4] [0200] +08:19:01 [ 2] [ 16] [6213544001794640] +08:19:01 [ 3] [ 6] [010000] +08:19:01 [ 4] [ 12] [000020000000] +08:19:01 [ 7] [ 10] [0320081653] +08:19:01 [ 11] [ 6] [932491] +08:19:01 [ 12] [ 6] [081653] +08:19:01 [ 13] [ 4] [0320] +08:19:01 [ 15] [ 4] [0320] +08:19:01 [ 18] [ 4] [6011] +08:19:01 [ 19] [ 3] [418] +08:19:01 [ 22] [ 3] [021] +08:19:01 [ 25] [ 2] [01] +08:19:01 [ 28] [ 9] [D00002000] +08:19:01 [ 32] [ 6] [668899] +08:19:01 [ 35] [ 32] [6213544001794640=491212019464370] +08:19:01 [ 37] [ 12] [507902435607] +08:19:01 [ 41] [ 8] [03020031] +08:19:01 [ 42] [ 15] [APT ] +08:19:01 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +08:19:01 [ 49] [ 3] [418] +08:19:01 [ 52] [ 16] [BF6B4C14DF04F035] +08:19:01 ============================================================================ +08:19:01 + + +waiting on router queue for slot.... +08:19:01 Sending to : <0> +08:19:01 ============================================================================ +08:19:01 ============================================================================ +08:19:01 Slot Id : <282> +08:19:01 Transaction Type : RESPONSE +08:19:01 Received From : +08:19:01 ============================================================================ +08:19:01 FNo. Len. Field Value +08:19:01 ============================================================================ +08:19:01 [ 1] [ 4] [0210] +08:19:01 [ 2] [ 16] [6213544001794640] +08:19:01 [ 3] [ 6] [010000] +08:19:01 [ 4] [ 12] [000020000000] +08:19:01 [ 7] [ 10] [0320081653] +08:19:01 [ 11] [ 6] [932491] +08:19:01 [ 12] [ 6] [081653] +08:19:01 [ 13] [ 4] [0320] +08:19:01 [ 15] [ 4] [0320] +08:19:01 [ 18] [ 4] [6011] +08:19:01 [ 19] [ 3] [418] +08:19:01 [ 22] [ 3] [021] +08:19:01 [ 32] [ 6] [668899] +08:19:01 [ 35] [ 32] [6213544001794640=491212019464370] +08:19:01 [ 37] [ 12] [507902435607] +08:19:01 [ 38] [ 6] [081858] +08:19:01 [ 39] [ 2] [75] +08:19:01 [ 41] [ 8] [03020031] +08:19:01 [ 49] [ 3] [418] +08:19:01 ============================================================================ +08:19:01 Sending to : +08:19:01 ============================================================================ +08:19:01 + + +waiting on router queue for slot.... +08:19:03 ============================================================================ +08:19:03 Slot Id : <241> +08:19:03 Transaction Type : REQUEST +08:19:03 Received From : +08:19:03 ============================================================================ +08:19:03 FNo. Len. Field Value +08:19:03 ============================================================================ +08:19:03 [ 1] [ 4] [0200] +08:19:03 [ 2] [ 16] [6213545000417521] +08:19:03 [ 3] [ 6] [010000] +08:19:03 [ 4] [ 12] [000050000000] +08:19:03 [ 7] [ 10] [0320081654] +08:19:03 [ 11] [ 6] [932494] +08:19:03 [ 12] [ 6] [081654] +08:19:03 [ 13] [ 4] [0320] +08:19:03 [ 15] [ 4] [0320] +08:19:03 [ 18] [ 4] [6011] +08:19:03 [ 19] [ 3] [418] +08:19:03 [ 22] [ 3] [021] +08:19:03 [ 25] [ 2] [01] +08:19:03 [ 28] [ 9] [D00002000] +08:19:03 [ 32] [ 6] [668899] +08:19:03 [ 35] [ 32] [6213545000417521=491212011752298] +08:19:03 [ 37] [ 12] [507902683024] +08:19:03 [ 41] [ 8] [03020036] +08:19:03 [ 42] [ 15] [APT ] +08:19:03 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +08:19:03 [ 49] [ 3] [418] +08:19:03 [ 52] [ 16] [A4A037572253A558] +08:19:03 ============================================================================ +08:19:03 + + +waiting on router queue for slot.... +08:19:03 Sending to : +08:19:03 ============================================================================ +08:19:03 Sending to : +08:19:03 ============================================================================ +08:19:03 ============================================================================ +08:19:03 Slot Id : <282> +08:19:03 Transaction Type : RESPONSE +08:19:03 Received From : +08:19:03 ============================================================================ +08:19:03 FNo. Len. Field Value +08:19:03 ============================================================================ +08:19:03 [ 1] [ 4] [0210] +08:19:03 [ 2] [ 16] [6213544001794640] +08:19:03 [ 3] [ 6] [010000] +08:19:03 [ 4] [ 12] [000020000000] +08:19:03 [ 7] [ 10] [0320081653] +08:19:03 [ 11] [ 6] [932491] +08:19:03 [ 12] [ 6] [081653] +08:19:03 [ 13] [ 4] [0320] +08:19:03 [ 15] [ 4] [0320] +08:19:03 [ 18] [ 4] [6011] +08:19:03 [ 19] [ 3] [418] +08:19:03 [ 22] [ 3] [021] +08:19:03 [ 32] [ 6] [668899] +08:19:03 [ 35] [ 32] [6213544001794640=491212019464370] +08:19:03 [ 37] [ 12] [507902435607] +08:19:03 [ 38] [ 6] [081858] +08:19:03 [ 39] [ 2] [75] +08:19:03 [ 41] [ 8] [03020031] +08:19:03 [ 49] [ 3] [418] +08:19:03 ============================================================================ +08:19:03 Calculate Source COMM Id = 4 +08:19:03 ============================================================================ +08:19:03 + + +waiting on router queue for slot.... +08:19:03 ============================================================================ +08:19:03 Slot Id : <241> +08:19:03 Transaction Type : REQUEST +08:19:03 Received From : +08:19:03 ============================================================================ +08:19:03 FNo. Len. Field Value +08:19:03 ============================================================================ +08:19:03 [ 1] [ 4] [0200] +08:19:03 [ 2] [ 16] [6213545000417521] +08:19:03 [ 3] [ 6] [010000] +08:19:03 [ 4] [ 12] [000050000000] +08:19:03 [ 7] [ 10] [0320081654] +08:19:03 [ 11] [ 6] [932494] +08:19:03 [ 12] [ 6] [081654] +08:19:03 [ 13] [ 4] [0320] +08:19:03 [ 15] [ 4] [0320] +08:19:03 [ 18] [ 4] [6011] +08:19:03 [ 19] [ 3] [418] +08:19:03 [ 22] [ 3] [021] +08:19:03 [ 25] [ 2] [01] +08:19:03 [ 28] [ 9] [D00002000] +08:19:03 [ 32] [ 6] [668899] +08:19:03 [ 35] [ 32] [6213545000417521=491212011752298] +08:19:03 [ 37] [ 12] [507902683024] +08:19:03 [ 41] [ 8] [03020036] +08:19:03 [ 42] [ 15] [APT ] +08:19:03 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +08:19:03 [ 49] [ 3] [418] +08:19:03 [ 52] [ 16] [A4A037572253A558] +08:19:03 ============================================================================ +08:19:03 + + +waiting on router queue for slot.... +08:19:03 Sending to : +08:19:03 ============================================================================ +08:19:03 ============================================================================ +08:19:03 Slot Id : <241> +08:19:03 Transaction Type : REQUEST +08:19:03 Received From : +08:19:03 ============================================================================ +08:19:03 FNo. Len. Field Value +08:19:03 ============================================================================ +08:19:03 [ 1] [ 4] [0200] +08:19:03 [ 2] [ 16] [6213545000417521] +08:19:03 [ 3] [ 6] [010000] +08:19:03 [ 4] [ 12] [000050000000] +08:19:03 [ 7] [ 10] [0320081654] +08:19:03 [ 11] [ 6] [932494] +08:19:03 [ 12] [ 6] [081654] +08:19:03 [ 13] [ 4] [0320] +08:19:03 [ 15] [ 4] [0320] +08:19:03 [ 18] [ 4] [6011] +08:19:03 [ 19] [ 3] [418] +08:19:03 [ 22] [ 3] [021] +08:19:03 [ 25] [ 2] [01] +08:19:03 [ 28] [ 9] [D00002000] +08:19:03 [ 32] [ 6] [668899] +08:19:03 [ 35] [ 32] [6213545000417521=491212011752298] +08:19:03 [ 37] [ 12] [507902683024] +08:19:03 [ 41] [ 8] [03020036] +08:19:03 [ 42] [ 15] [APT ] +08:19:03 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +08:19:03 [ 49] [ 3] [418] +08:19:03 [ 52] [ 16] [719B6F031C6584CB] +08:19:03 ============================================================================ +08:19:03 + + +waiting on router queue for slot.... +08:19:03 Sending to : <0> +08:19:03 ============================================================================ +08:19:04 ============================================================================ +08:19:04 Slot Id : <241> +08:19:04 Transaction Type : RESPONSE +08:19:04 Received From : +08:19:04 ============================================================================ +08:19:04 FNo. Len. Field Value +08:19:04 ============================================================================ +08:19:04 [ 1] [ 4] [0210] +08:19:04 [ 2] [ 16] [6213545000417521] +08:19:04 [ 3] [ 6] [010000] +08:19:04 [ 4] [ 12] [000050000000] +08:19:04 [ 7] [ 10] [0320081654] +08:19:04 [ 11] [ 6] [932494] +08:19:04 [ 12] [ 6] [081654] +08:19:04 [ 13] [ 4] [0320] +08:19:04 [ 15] [ 4] [0320] +08:19:04 [ 18] [ 4] [6011] +08:19:04 [ 19] [ 3] [418] +08:19:04 [ 32] [ 6] [668899] +08:19:04 [ 35] [ 32] [6213545000417521=491212011752298] +08:19:04 [ 37] [ 12] [507902683024] +08:19:04 [ 38] [ 6] [823730] +08:19:04 [ 39] [ 2] [00] +08:19:04 [ 41] [ 8] [03020036] +08:19:04 [ 49] [ 3] [418] +08:19:04 [ 54] [ 40] [0001418C0000331060270002418C000033106027] +08:19:04 ============================================================================ +08:19:04 Sending to : +08:19:04 ============================================================================ +08:19:04 + + +waiting on router queue for slot.... +08:19:05 ============================================================================ +08:19:05 Slot Id : <241> +08:19:05 Transaction Type : RESPONSE +08:19:05 Received From : +08:19:05 ============================================================================ +08:19:05 FNo. Len. Field Value +08:19:05 ============================================================================ +08:19:05 [ 1] [ 4] [0210] +08:19:05 [ 2] [ 16] [6213545000417521] +08:19:05 [ 3] [ 6] [010000] +08:19:05 [ 4] [ 12] [000050000000] +08:19:05 [ 7] [ 10] [0320081654] +08:19:05 [ 11] [ 6] [932494] +08:19:05 [ 12] [ 6] [081654] +08:19:05 [ 13] [ 4] [0320] +08:19:05 [ 15] [ 4] [0320] +08:19:05 [ 18] [ 4] [6011] +08:19:05 [ 19] [ 3] [418] +08:19:05 [ 32] [ 6] [668899] +08:19:05 [ 35] [ 32] [6213545000417521=491212011752298] +08:19:05 [ 37] [ 12] [507902683024] +08:19:05 [ 38] [ 6] [823730] +08:19:05 [ 39] [ 2] [00] +08:19:05 [ 41] [ 8] [03020036] +08:19:05 [ 49] [ 3] [418] +08:19:05 [ 54] [ 40] [0001418C0000331060270002418C000033106027] +08:19:05 ============================================================================ +08:19:05 Calculate Source COMM Id = 4 +08:19:05 ============================================================================ +08:19:05 + + +waiting on router queue for slot.... +08:19:15 ============================================================================ +08:19:15 Slot Id : <252> +08:19:15 Transaction Type : REQUEST +08:19:15 Received From : +08:19:15 ============================================================================ +08:19:15 FNo. Len. Field Value +08:19:15 ============================================================================ +08:19:15 [ 1] [ 4] [0800] +08:19:15 [ 7] [ 10] [0320011824] +08:19:15 [ 11] [ 6] [155375] +08:19:15 [ 70] [ 3] [301] +08:19:15 ============================================================================ +08:19:15 + + +waiting on router queue for slot.... +08:19:15 Sending to : +08:19:15 ============================================================================ +08:19:15 ============================================================================ +08:19:15 Slot Id : <252> +08:19:15 Transaction Type : RESPONSE +08:19:15 Received From : +08:19:15 ============================================================================ +08:19:15 FNo. Len. Field Value +08:19:15 ============================================================================ +08:19:15 [ 1] [ 4] [0810] +08:19:15 [ 7] [ 10] [0320011824] +08:19:15 [ 11] [ 6] [155375] +08:19:15 [ 39] [ 2] [00] +08:19:15 [ 70] [ 3] [301] +08:19:15 ============================================================================ +08:19:15 Calculate Source COMM Id = 2 +08:19:15 ============================================================================ +08:19:15 + + +waiting on router queue for slot.... +08:19:31 ============================================================================ +08:19:31 Slot Id : <245> +08:19:31 Transaction Type : REQUEST +08:19:31 Received From : +08:19:31 ============================================================================ +08:19:31 FNo. Len. Field Value +08:19:31 ============================================================================ +08:19:31 [ 1] [ 4] [0800] +08:19:31 [ 7] [ 10] [0320153119] +08:19:31 [ 11] [ 6] [083119] +08:19:31 [ 37] [ 12] [57908083119] +08:19:31 [ 70] [ 3] [301] +08:19:31 ============================================================================ +08:19:31 + + +waiting on router queue for slot.... +08:19:31 Sending to : +08:19:31 ============================================================================ +08:19:31 ============================================================================ +08:19:31 Slot Id : <245> +08:19:31 Transaction Type : RESPONSE +08:19:31 Received From : +08:19:31 ============================================================================ +08:19:31 FNo. Len. Field Value +08:19:31 ============================================================================ +08:19:31 [ 1] [ 4] [0810] +08:19:31 [ 7] [ 10] [0320153119] +08:19:31 [ 11] [ 6] [083119] +08:19:31 [ 37] [ 12] [579080831190] +08:19:31 [ 39] [ 2] [00] +08:19:31 [ 70] [ 3] [810] +08:19:31 ============================================================================ +08:19:31 Calculate Source COMM Id = 6 +08:19:31 ============================================================================ +08:19:31 + + +waiting on router queue for slot.... +08:19:31 ============================================================================ +08:19:31 Slot Id : <280> +08:19:31 Transaction Type : REQUEST +08:19:31 Received From : +08:19:31 ============================================================================ +08:19:31 FNo. Len. Field Value +08:19:31 ============================================================================ +08:19:31 [ 1] [ 4] [0800] +08:19:31 [ 7] [ 10] [0320011839] +08:19:31 [ 11] [ 6] [155376] +08:19:31 [ 70] [ 3] [301] +08:19:31 ============================================================================ +08:19:31 + + +waiting on router queue for slot.... +08:19:31 Sending to : +08:19:31 ============================================================================ +08:19:31 ============================================================================ +08:19:31 Slot Id : <280> +08:19:31 Transaction Type : RESPONSE +08:19:31 Received From : +08:19:31 ============================================================================ +08:19:31 FNo. Len. Field Value +08:19:31 ============================================================================ +08:19:31 [ 1] [ 4] [0810] +08:19:31 [ 7] [ 10] [0320011839] +08:19:31 [ 11] [ 6] [155376] +08:19:31 [ 39] [ 2] [00] +08:19:31 [ 70] [ 3] [301] +08:19:31 ============================================================================ +08:19:31 Calculate Source COMM Id = 2 +08:19:31 ============================================================================ +08:19:31 + + +waiting on router queue for slot.... +08:19:42 ============================================================================ +08:19:42 Slot Id : <276> +08:19:42 Transaction Type : REQUEST +08:19:42 Received From : +08:19:42 ============================================================================ +08:19:42 FNo. Len. Field Value +08:19:42 ============================================================================ +08:19:42 [ 1] [ 4] [0800] +08:19:42 [ 2] [ 5] [02531] +08:19:42 [ 3] [ 6] [579088] +08:19:42 [ 7] [ 10] [0320011942] +08:19:42 [ 11] [ 6] [806895] +08:19:42 [ 15] [ 10] [0320011942] +08:19:42 [ 37] [ 11] [57908806895] +08:19:42 [ 70] [ 3] [001] +08:19:42 ============================================================================ +08:19:42 + + +waiting on router queue for slot.... +08:19:42 ============================================================================ +08:19:42 Slot Id : <276> +08:19:42 Transaction Type : RESPONSE +08:19:42 Received From : +08:19:42 ============================================================================ +08:19:42 FNo. Len. Field Value +08:19:42 ============================================================================ +08:19:42 [ 1] [ 4] [0810] +08:19:42 [ 7] [ 10] [0320011942] +08:19:42 [ 11] [ 6] [806895] +08:19:42 [ 15] [ 4] [0320] +08:19:42 [ 37] [ 12] [57908806895] +08:19:42 [ 39] [ 2] [00] +08:19:42 [ 70] [ 3] [001] +08:19:42 ============================================================================ +08:19:42 Sending to : +08:19:42 ============================================================================ +08:19:42 + + +waiting on router queue for slot.... +08:19:46 ============================================================================ +08:19:46 Slot Id : <258> +08:19:46 Transaction Type : REQUEST +08:19:46 Received From : +08:19:46 ============================================================================ +08:19:46 FNo. Len. Field Value +08:19:46 ============================================================================ +08:19:46 [ 1] [ 4] [0800] +08:19:46 [ 7] [ 10] [0320011855] +08:19:46 [ 11] [ 6] [155377] +08:19:46 [ 70] [ 3] [301] +08:19:46 ============================================================================ +08:19:46 + + +waiting on router queue for slot.... +08:19:46 Sending to : +08:19:46 ============================================================================ +08:19:46 ============================================================================ +08:19:46 Slot Id : <258> +08:19:46 Transaction Type : RESPONSE +08:19:46 Received From : +08:19:46 ============================================================================ +08:19:46 FNo. Len. Field Value +08:19:46 ============================================================================ +08:19:46 [ 1] [ 4] [0810] +08:19:46 [ 7] [ 10] [0320011855] +08:19:46 [ 11] [ 6] [155377] +08:19:46 [ 39] [ 2] [00] +08:19:46 [ 70] [ 3] [301] +08:19:46 ============================================================================ +08:19:46 Calculate Source COMM Id = 2 +08:19:46 ============================================================================ +08:19:46 + + +waiting on router queue for slot.... +08:19:51 ============================================================================ +08:19:51 Slot Id : <284> +08:19:51 Transaction Type : REQUEST +08:19:51 Received From : +08:19:51 ============================================================================ +08:19:51 FNo. Len. Field Value +08:19:51 ============================================================================ +08:19:51 [ 1] [ 4] [0200] +08:19:51 [ 2] [ 16] [6688990100951100] +08:19:51 [ 3] [ 6] [010000] +08:19:51 [ 4] [ 12] [000100000000] +08:19:51 [ 7] [ 10] [0320081947] +08:19:51 [ 11] [ 6] [682072] +08:19:51 [ 12] [ 6] [081947] +08:19:51 [ 13] [ 4] [0320] +08:19:51 [ 15] [ 4] [0320] +08:19:51 [ 18] [ 4] [6011] +08:19:51 [ 22] [ 3] [900] +08:19:51 [ 25] [ 2] [02] +08:19:51 [ 28] [ 9] [D00002000] +08:19:51 [ 32] [ 6] [621354] +08:19:51 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:19:51 [ 37] [ 12] [507904719373] +08:19:51 [ 41] [ 8] [18001000] +08:19:51 [ 42] [ 15] [NATIVE ] +08:19:51 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:19:51 [ 49] [ 3] [418] +08:19:51 [ 52] [ 16] [B8E5BA684A61D2FD] +08:19:51 ============================================================================ +08:19:51 + + +waiting on router queue for slot.... +08:19:51 Sending to : +08:19:51 ============================================================================ +08:19:51 Sending to : +08:19:51 ============================================================================ +08:19:51 ============================================================================ +08:19:51 Slot Id : <284> +08:19:51 Transaction Type : REQUEST +08:19:51 Received From : +08:19:51 ============================================================================ +08:19:51 FNo. Len. Field Value +08:19:51 ============================================================================ +08:19:51 [ 1] [ 4] [0200] +08:19:51 [ 2] [ 16] [6688990100951100] +08:19:51 [ 3] [ 6] [010000] +08:19:51 [ 4] [ 12] [000100000000] +08:19:51 [ 7] [ 10] [0320081947] +08:19:51 [ 11] [ 6] [682072] +08:19:51 [ 12] [ 6] [081947] +08:19:51 [ 13] [ 4] [0320] +08:19:51 [ 15] [ 4] [0320] +08:19:51 [ 18] [ 4] [6011] +08:19:51 [ 22] [ 3] [900] +08:19:51 [ 25] [ 2] [02] +08:19:51 [ 28] [ 9] [D00002000] +08:19:51 [ 32] [ 6] [621354] +08:19:51 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:19:51 [ 37] [ 12] [507904719373] +08:19:51 [ 41] [ 8] [18001000] +08:19:51 [ 42] [ 15] [NATIVE ] +08:19:51 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:19:51 [ 49] [ 3] [418] +08:19:51 [ 52] [ 16] [B8E5BA684A61D2FD] +08:19:51 ============================================================================ +08:19:51 + + +waiting on router queue for slot.... +08:19:51 Sending to : +08:19:51 ============================================================================ +08:19:51 ============================================================================ +08:19:51 Slot Id : <284> +08:19:51 Transaction Type : REQUEST +08:19:51 Received From : +08:19:51 ============================================================================ +08:19:51 FNo. Len. Field Value +08:19:51 ============================================================================ +08:19:51 [ 1] [ 4] [0200] +08:19:51 [ 2] [ 16] [6688990100951100] +08:19:51 [ 3] [ 6] [010000] +08:19:51 [ 4] [ 12] [000100000000] +08:19:51 [ 7] [ 10] [0320081947] +08:19:51 [ 11] [ 6] [682072] +08:19:51 [ 12] [ 6] [081947] +08:19:51 [ 13] [ 4] [0320] +08:19:51 [ 15] [ 4] [0320] +08:19:51 [ 18] [ 4] [6011] +08:19:51 [ 22] [ 3] [900] +08:19:51 [ 25] [ 2] [02] +08:19:51 [ 28] [ 9] [D00002000] +08:19:51 [ 32] [ 6] [621354] +08:19:51 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:19:51 [ 37] [ 12] [507904719373] +08:19:51 [ 41] [ 8] [18001000] +08:19:51 [ 42] [ 15] [NATIVE ] +08:19:51 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:19:51 [ 49] [ 3] [418] +08:19:51 [ 52] [ 16] [23C7B0DAE11A9C77] +08:19:51 ============================================================================ +08:19:51 + + +waiting on router queue for slot.... +08:19:51 Sending to : <4> +08:19:51 ============================================================================ +08:19:53 ============================================================================ +08:19:53 Slot Id : <284> +08:19:53 Transaction Type : RESPONSE +08:19:53 Received From : +08:19:53 ============================================================================ +08:19:53 FNo. Len. Field Value +08:19:53 ============================================================================ +08:19:53 [ 1] [ 4] [0210] +08:19:53 [ 2] [ 16] [6688990100951100] +08:19:53 [ 3] [ 6] [010000] +08:19:53 [ 4] [ 12] [000100000000] +08:19:53 [ 11] [ 6] [682072] +08:19:53 [ 12] [ 6] [081947] +08:19:53 [ 15] [ 4] [0320] +08:19:53 [ 18] [ 4] [6011] +08:19:53 [ 32] [ 6] [621354] +08:19:53 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:19:53 [ 37] [ 12] [507904719373] +08:19:53 [ 38] [ 6] [401780] +08:19:53 [ 39] [ 2] [00] +08:19:53 [ 41] [ 8] [18001000] +08:19:53 [ 49] [ 3] [418] +08:19:53 [ 54] [ 20] [0002418C000021955625] +08:19:53 ============================================================================ +08:19:53 Sending to : +08:19:53 ============================================================================ +08:19:53 + + +waiting on router queue for slot.... +08:19:54 ============================================================================ +08:19:54 Slot Id : <284> +08:19:54 Transaction Type : RESPONSE +08:19:54 Received From : +08:19:54 ============================================================================ +08:19:54 FNo. Len. Field Value +08:19:54 ============================================================================ +08:19:54 [ 1] [ 4] [0210] +08:19:54 [ 2] [ 16] [6688990100951100] +08:19:54 [ 3] [ 6] [010000] +08:19:54 [ 4] [ 12] [000100000000] +08:19:54 [ 11] [ 6] [682072] +08:19:54 [ 12] [ 6] [081947] +08:19:54 [ 15] [ 4] [0320] +08:19:54 [ 18] [ 4] [6011] +08:19:54 [ 32] [ 6] [621354] +08:19:54 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:19:54 [ 37] [ 12] [507904719373] +08:19:54 [ 38] [ 6] [401780] +08:19:54 [ 39] [ 2] [00] +08:19:54 [ 41] [ 8] [18001000] +08:19:54 [ 49] [ 3] [418] +08:19:54 [ 54] [ 20] [0002418C000021955625] +08:19:54 ============================================================================ +08:19:54 Calculate Source COMM Id = 0 +08:19:54 ============================================================================ +08:19:54 + + +waiting on router queue for slot.... +08:19:54 ============================================================================ +08:19:54 Slot Id : <219> +08:19:54 Transaction Type : REQUEST +08:19:54 Received From : +08:19:54 ============================================================================ +08:19:54 FNo. Len. Field Value +08:19:54 ============================================================================ +08:19:54 [ 1] [ 4] [0800] +08:19:54 [ 7] [ 10] [0320012742] +08:19:54 [ 11] [ 6] [089202] +08:19:54 [ 37] [ 12] [57908089202] +08:19:54 [ 70] [ 3] [301] +08:19:54 ============================================================================ +08:19:54 + + +waiting on router queue for slot.... +08:19:54 Sending to : +08:19:54 ============================================================================ +08:19:54 ============================================================================ +08:19:54 Slot Id : <219> +08:19:54 Transaction Type : RESPONSE +08:19:54 Received From : +08:19:54 ============================================================================ +08:19:54 FNo. Len. Field Value +08:19:54 ============================================================================ +08:19:54 [ 1] [ 4] [0810] +08:19:54 [ 7] [ 10] [0320012742] +08:19:54 [ 11] [ 6] [089202] +08:19:54 [ 37] [ 12] [579080892020] +08:19:54 [ 39] [ 2] [00] +08:19:54 [ 70] [ 3] [810] +08:19:54 ============================================================================ +08:19:54 Calculate Source COMM Id = 1 +08:19:54 ============================================================================ +08:19:54 + + +waiting on router queue for slot.... +08:19:57 ============================================================================ +08:19:57 Slot Id : <290> +08:19:57 Transaction Type : REQUEST +08:19:57 Received From : +08:19:57 ============================================================================ +08:19:57 FNo. Len. Field Value +08:19:57 ============================================================================ +08:19:57 [ 1] [ 4] [0200] +08:19:57 [ 2] [ 16] [6213545000418313] +08:19:57 [ 3] [ 6] [011000] +08:19:57 [ 4] [ 12] [000095000000] +08:19:57 [ 7] [ 10] [0320082744] +08:19:57 [ 11] [ 6] [001941] +08:19:57 [ 12] [ 6] [082744] +08:19:57 [ 13] [ 4] [0320] +08:19:57 [ 14] [ 4] [4912] +08:19:57 [ 15] [ 4] [0320] +08:19:57 [ 18] [ 4] [6011] +08:19:57 [ 22] [ 3] [900] +08:19:57 [ 25] [ 2] [02] +08:19:57 [ 28] [ 9] [D00002000] +08:19:57 [ 32] [ 6] [220699] +08:19:57 [ 35] [ 32] [6213545000418313=491212011831004] +08:19:57 [ 37] [ 12] [507900296935] +08:19:57 [ 41] [ 8] [01001600] +08:19:57 [ 42] [ 15] [APTRA ] +08:19:57 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:19:57 [ 49] [ 3] [418] +08:19:57 [ 52] [ 16] [F1EFF3C7BB552A5C] +08:19:57 ============================================================================ +08:19:57 + + +waiting on router queue for slot.... +08:19:57 Sending to : +08:19:57 ============================================================================ +08:19:57 Sending to : +08:19:57 ============================================================================ +08:19:57 ============================================================================ +08:19:57 Slot Id : <290> +08:19:57 Transaction Type : REQUEST +08:19:57 Received From : +08:19:57 ============================================================================ +08:19:57 FNo. Len. Field Value +08:19:57 ============================================================================ +08:19:57 [ 1] [ 4] [0200] +08:19:57 [ 2] [ 16] [6213545000418313] +08:19:57 [ 3] [ 6] [011000] +08:19:57 [ 4] [ 12] [000095000000] +08:19:57 [ 7] [ 10] [0320082744] +08:19:57 [ 11] [ 6] [001941] +08:19:57 [ 12] [ 6] [082744] +08:19:57 [ 13] [ 4] [0320] +08:19:57 [ 14] [ 4] [4912] +08:19:57 [ 15] [ 4] [0320] +08:19:57 [ 18] [ 4] [6011] +08:19:57 [ 22] [ 3] [900] +08:19:57 [ 25] [ 2] [02] +08:19:57 [ 28] [ 9] [D00002000] +08:19:57 [ 32] [ 6] [220699] +08:19:57 [ 35] [ 32] [6213545000418313=491212011831004] +08:19:57 [ 37] [ 12] [507900296935] +08:19:57 [ 41] [ 8] [01001600] +08:19:57 [ 42] [ 15] [APTRA ] +08:19:57 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:19:57 [ 49] [ 3] [418] +08:19:57 [ 52] [ 16] [F1EFF3C7BB552A5C] +08:19:57 ============================================================================ +08:19:57 + + +waiting on router queue for slot.... +08:19:57 Sending to : +08:19:57 ============================================================================ +08:19:57 ============================================================================ +08:19:57 Slot Id : <290> +08:19:57 Transaction Type : REQUEST +08:19:57 Received From : +08:19:57 ============================================================================ +08:19:57 FNo. Len. Field Value +08:19:57 ============================================================================ +08:19:57 [ 1] [ 4] [0200] +08:19:57 [ 2] [ 16] [6213545000418313] +08:19:57 [ 3] [ 6] [011000] +08:19:57 [ 4] [ 12] [000095000000] +08:19:57 [ 7] [ 10] [0320082744] +08:19:57 [ 11] [ 6] [001941] +08:19:57 [ 12] [ 6] [082744] +08:19:57 [ 13] [ 4] [0320] +08:19:57 [ 14] [ 4] [4912] +08:19:57 [ 15] [ 4] [0320] +08:19:57 [ 18] [ 4] [6011] +08:19:57 [ 22] [ 3] [900] +08:19:57 [ 25] [ 2] [02] +08:19:57 [ 28] [ 9] [D00002000] +08:19:57 [ 32] [ 6] [220699] +08:19:57 [ 35] [ 32] [6213545000418313=491212011831004] +08:19:57 [ 37] [ 12] [507900296935] +08:19:57 [ 41] [ 8] [01001600] +08:19:57 [ 42] [ 15] [APTRA ] +08:19:57 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:19:57 [ 49] [ 3] [418] +08:19:57 [ 52] [ 16] [87A7B23E34CCFC4E] +08:19:57 ============================================================================ +08:19:57 + + +waiting on router queue for slot.... +08:19:57 Sending to : <0> +08:19:57 ============================================================================ +08:19:58 ============================================================================ +08:19:58 Slot Id : <290> +08:19:58 Transaction Type : RESPONSE +08:19:58 Received From : +08:19:58 ============================================================================ +08:19:58 FNo. Len. Field Value +08:19:58 ============================================================================ +08:19:58 [ 1] [ 4] [0210] +08:19:58 [ 2] [ 16] [6213545000418313] +08:19:58 [ 3] [ 6] [011000] +08:19:58 [ 4] [ 12] [000095000000] +08:19:58 [ 7] [ 10] [0320082744] +08:19:58 [ 11] [ 6] [001941] +08:19:58 [ 12] [ 6] [082744] +08:19:58 [ 13] [ 4] [0320] +08:19:58 [ 15] [ 4] [0320] +08:19:58 [ 18] [ 4] [6011] +08:19:58 [ 32] [ 6] [220699] +08:19:58 [ 35] [ 32] [6213545000418313=491212011831004] +08:19:58 [ 37] [ 12] [507900296935] +08:19:58 [ 38] [ 6] [937193] +08:19:58 [ 39] [ 2] [00] +08:19:58 [ 41] [ 8] [01001600] +08:19:58 [ 49] [ 3] [418] +08:19:58 [ 54] [ 40] [1001418C0000078370341002418C000007837034] +08:19:58 ============================================================================ +08:19:58 Sending to : +08:19:58 ============================================================================ +08:19:58 + + +waiting on router queue for slot.... +08:20:00 ============================================================================ +08:20:00 Slot Id : <290> +08:20:00 Transaction Type : RESPONSE +08:20:00 Received From : +08:20:00 ============================================================================ +08:20:00 FNo. Len. Field Value +08:20:00 ============================================================================ +08:20:00 [ 1] [ 4] [0210] +08:20:00 [ 2] [ 16] [6213545000418313] +08:20:00 [ 3] [ 6] [011000] +08:20:00 [ 4] [ 12] [000095000000] +08:20:00 [ 7] [ 10] [0320082744] +08:20:00 [ 11] [ 6] [001941] +08:20:00 [ 12] [ 6] [082744] +08:20:00 [ 13] [ 4] [0320] +08:20:00 [ 15] [ 4] [0320] +08:20:00 [ 18] [ 4] [6011] +08:20:00 [ 32] [ 6] [220699] +08:20:00 [ 35] [ 32] [6213545000418313=491212011831004] +08:20:00 [ 37] [ 12] [507900296935] +08:20:00 [ 38] [ 6] [937193] +08:20:00 [ 39] [ 2] [00] +08:20:00 [ 41] [ 8] [01001600] +08:20:00 [ 49] [ 3] [418] +08:20:00 [ 54] [ 40] [1001418C0000078370341002418C000007837034] +08:20:00 ============================================================================ +08:20:00 Calculate Source COMM Id = 1 +08:20:00 ============================================================================ +08:20:00 + + +waiting on router queue for slot.... +08:20:02 ============================================================================ +08:20:02 Slot Id : <287> +08:20:02 Transaction Type : REQUEST +08:20:02 Received From : +08:20:02 ============================================================================ +08:20:02 FNo. Len. Field Value +08:20:02 ============================================================================ +08:20:02 [ 1] [ 4] [0200] +08:20:02 [ 2] [ 16] [2206990000081083] +08:20:02 [ 3] [ 6] [011000] +08:20:02 [ 4] [ 12] [000005000000] +08:20:02 [ 7] [ 10] [0320081959] +08:20:02 [ 11] [ 6] [682113] +08:20:02 [ 12] [ 6] [081959] +08:20:02 [ 13] [ 4] [0320] +08:20:02 [ 15] [ 4] [0320] +08:20:02 [ 18] [ 4] [6011] +08:20:02 [ 22] [ 3] [900] +08:20:02 [ 25] [ 2] [02] +08:20:02 [ 28] [ 9] [D00002000] +08:20:02 [ 32] [ 6] [621354] +08:20:02 [ 35] [ 32] [2206990000081083=970912611997302] +08:20:02 [ 37] [ 12] [507903517262] +08:20:02 [ 41] [ 8] [09000800] +08:20:02 [ 42] [ 15] [NATIVE ] +08:20:02 [ 43] [ 40] [Thongkhankham 02 ChanthaboulyLAO] +08:20:02 [ 49] [ 3] [418] +08:20:02 [ 52] [ 16] [3E9E312CAC741CD4] +08:20:02 ============================================================================ +08:20:02 + + +waiting on router queue for slot.... +08:20:02 Sending to : +08:20:02 ============================================================================ +08:20:02 Sending to : +08:20:02 ============================================================================ +08:20:02 ============================================================================ +08:20:02 Slot Id : <224> +08:20:02 Transaction Type : REQUEST +08:20:02 Received From : +08:20:02 ============================================================================ +08:20:02 FNo. Len. Field Value +08:20:02 ============================================================================ +08:20:02 [ 1] [ 4] [0800] +08:20:02 [ 7] [ 10] [0320011910] +08:20:02 [ 11] [ 6] [155378] +08:20:02 [ 70] [ 3] [301] +08:20:02 ============================================================================ +08:20:02 + + +waiting on router queue for slot.... +08:20:02 Sending to : +08:20:02 ============================================================================ +08:20:02 ============================================================================ +08:20:02 Slot Id : <224> +08:20:02 Transaction Type : RESPONSE +08:20:02 Received From : +08:20:02 ============================================================================ +08:20:02 FNo. Len. Field Value +08:20:02 ============================================================================ +08:20:02 [ 1] [ 4] [0810] +08:20:02 [ 7] [ 10] [0320011910] +08:20:02 [ 11] [ 6] [155378] +08:20:02 [ 39] [ 2] [00] +08:20:02 [ 70] [ 3] [301] +08:20:02 ============================================================================ +08:20:02 Calculate Source COMM Id = 2 +08:20:02 ============================================================================ +08:20:02 + + +waiting on router queue for slot.... +08:20:03 ============================================================================ +08:20:03 Slot Id : <287> +08:20:03 Transaction Type : REQUEST +08:20:03 Received From : +08:20:03 ============================================================================ +08:20:03 FNo. Len. Field Value +08:20:03 ============================================================================ +08:20:03 [ 1] [ 4] [0200] +08:20:03 [ 2] [ 16] [2206990000081083] +08:20:03 [ 3] [ 6] [011000] +08:20:03 [ 4] [ 12] [000005000000] +08:20:03 [ 7] [ 10] [0320081959] +08:20:03 [ 11] [ 6] [682113] +08:20:03 [ 12] [ 6] [081959] +08:20:03 [ 13] [ 4] [0320] +08:20:03 [ 15] [ 4] [0320] +08:20:03 [ 18] [ 4] [6011] +08:20:03 [ 22] [ 3] [900] +08:20:03 [ 25] [ 2] [02] +08:20:03 [ 28] [ 9] [D00002000] +08:20:03 [ 32] [ 6] [621354] +08:20:03 [ 35] [ 32] [2206990000081083=970912611997302] +08:20:03 [ 37] [ 12] [507903517262] +08:20:03 [ 41] [ 8] [09000800] +08:20:03 [ 42] [ 15] [NATIVE ] +08:20:03 [ 43] [ 40] [Thongkhankham 02 ChanthaboulyLAO] +08:20:03 [ 49] [ 3] [418] +08:20:03 [ 52] [ 16] [3E9E312CAC741CD4] +08:20:03 ============================================================================ +08:20:03 + + +waiting on router queue for slot.... +08:20:03 Sending to : +08:20:03 ============================================================================ +08:20:03 ============================================================================ +08:20:03 Slot Id : <287> +08:20:03 Transaction Type : REQUEST +08:20:03 Received From : +08:20:03 ============================================================================ +08:20:03 FNo. Len. Field Value +08:20:03 ============================================================================ +08:20:03 [ 1] [ 4] [0200] +08:20:03 [ 2] [ 16] [2206990000081083] +08:20:03 [ 3] [ 6] [011000] +08:20:03 [ 4] [ 12] [000005000000] +08:20:03 [ 7] [ 10] [0320081959] +08:20:03 [ 11] [ 6] [682113] +08:20:03 [ 12] [ 6] [081959] +08:20:03 [ 13] [ 4] [0320] +08:20:03 [ 15] [ 4] [0320] +08:20:03 [ 18] [ 4] [6011] +08:20:03 [ 22] [ 3] [900] +08:20:03 [ 25] [ 2] [02] +08:20:03 [ 28] [ 9] [D00002000] +08:20:03 [ 32] [ 6] [621354] +08:20:03 [ 35] [ 32] [2206990000081083=970912611997302] +08:20:03 [ 37] [ 12] [507903517262] +08:20:03 [ 41] [ 8] [09000800] +08:20:03 [ 42] [ 15] [NATIVE ] +08:20:03 [ 43] [ 40] [Thongkhankham 02 ChanthaboulyLAO] +08:20:03 [ 49] [ 3] [418] +08:20:03 [ 52] [ 16] [534DCB11AFD20FD0] +08:20:03 ============================================================================ +08:20:03 + + +waiting on router queue for slot.... +08:20:03 Sending to : <1> +08:20:03 ============================================================================ +08:20:04 ============================================================================ +08:20:04 Slot Id : <287> +08:20:04 Transaction Type : RESPONSE +08:20:04 Received From : +08:20:04 ============================================================================ +08:20:04 FNo. Len. Field Value +08:20:04 ============================================================================ +08:20:04 [ 1] [ 4] [0210] +08:20:04 [ 2] [ 16] [2206990000081083] +08:20:04 [ 3] [ 6] [011000] +08:20:04 [ 4] [ 12] [000005000000] +08:20:04 [ 7] [ 10] [0320081959] +08:20:04 [ 11] [ 6] [682113] +08:20:04 [ 12] [ 6] [081959] +08:20:04 [ 13] [ 4] [0320] +08:20:04 [ 15] [ 4] [0320] +08:20:04 [ 18] [ 4] [6011] +08:20:04 [ 32] [ 6] [621354] +08:20:04 [ 35] [ 32] [2206990000081083=970912611997302] +08:20:04 [ 37] [ 12] [507903517262] +08:20:04 [ 38] [ 6] [468247] +08:20:04 [ 39] [ 2] [00] +08:20:04 [ 41] [ 8] [09000800] +08:20:04 [ 49] [ 3] [418] +08:20:04 [ 54] [ 40] [1001418C0000334295001002418C000033429500] +08:20:04 ============================================================================ +08:20:04 Sending to : +08:20:04 ============================================================================ +08:20:04 + + +waiting on router queue for slot.... +08:20:06 ============================================================================ +08:20:06 Slot Id : <287> +08:20:06 Transaction Type : RESPONSE +08:20:06 Received From : +08:20:06 ============================================================================ +08:20:06 FNo. Len. Field Value +08:20:06 ============================================================================ +08:20:06 [ 1] [ 4] [0210] +08:20:06 [ 2] [ 16] [2206990000081083] +08:20:06 [ 3] [ 6] [011000] +08:20:06 [ 4] [ 12] [000005000000] +08:20:06 [ 7] [ 10] [0320081959] +08:20:06 [ 11] [ 6] [682113] +08:20:06 [ 12] [ 6] [081959] +08:20:06 [ 13] [ 4] [0320] +08:20:06 [ 15] [ 4] [0320] +08:20:06 [ 18] [ 4] [6011] +08:20:06 [ 32] [ 6] [621354] +08:20:06 [ 35] [ 32] [2206990000081083=970912611997302] +08:20:06 [ 37] [ 12] [507903517262] +08:20:06 [ 38] [ 6] [468247] +08:20:06 [ 39] [ 2] [00] +08:20:06 [ 41] [ 8] [09000800] +08:20:06 [ 49] [ 3] [418] +08:20:06 [ 54] [ 40] [1001418C0000334295001002418C000033429500] +08:20:06 ============================================================================ +08:20:06 Calculate Source COMM Id = 0 +08:20:06 ============================================================================ +08:20:06 + + +waiting on router queue for slot.... +08:20:17 ============================================================================ +08:20:17 Slot Id : <271> +08:20:17 Transaction Type : REQUEST +08:20:17 Received From : +08:20:17 ============================================================================ +08:20:17 FNo. Len. Field Value +08:20:17 ============================================================================ +08:20:17 [ 1] [ 4] [0800] +08:20:17 [ 7] [ 10] [0320011925] +08:20:17 [ 11] [ 6] [155379] +08:20:17 [ 70] [ 3] [301] +08:20:17 ============================================================================ +08:20:17 + + +waiting on router queue for slot.... +08:20:17 Sending to : +08:20:17 ============================================================================ +08:20:17 ============================================================================ +08:20:17 Slot Id : <271> +08:20:17 Transaction Type : RESPONSE +08:20:17 Received From : +08:20:17 ============================================================================ +08:20:17 FNo. Len. Field Value +08:20:17 ============================================================================ +08:20:17 [ 1] [ 4] [0810] +08:20:17 [ 7] [ 10] [0320011925] +08:20:17 [ 11] [ 6] [155379] +08:20:17 [ 39] [ 2] [00] +08:20:17 [ 70] [ 3] [301] +08:20:17 ============================================================================ +08:20:17 Calculate Source COMM Id = 2 +08:20:17 ============================================================================ +08:20:17 + + +waiting on router queue for slot.... +08:20:27 ============================================================================ +08:20:27 Slot Id : <288> +08:20:27 Transaction Type : REQUEST +08:20:27 Received From : +08:20:27 ============================================================================ +08:20:27 FNo. Len. Field Value +08:20:27 ============================================================================ +08:20:27 [ 1] [ 4] [0800] +08:20:27 [ 7] [ 10] [0320011935] +08:20:27 [ 11] [ 6] [155380] +08:20:27 [ 70] [ 3] [301] +08:20:27 ============================================================================ +08:20:27 + + +waiting on router queue for slot.... +08:20:27 Sending to : +08:20:27 ============================================================================ +08:20:27 ============================================================================ +08:20:27 Slot Id : <288> +08:20:27 Transaction Type : RESPONSE +08:20:27 Received From : +08:20:27 ============================================================================ +08:20:27 FNo. Len. Field Value +08:20:27 ============================================================================ +08:20:27 [ 1] [ 4] [0810] +08:20:27 [ 7] [ 10] [0320011935] +08:20:27 [ 11] [ 6] [155380] +08:20:27 [ 39] [ 2] [00] +08:20:27 [ 70] [ 3] [301] +08:20:27 ============================================================================ +08:20:27 Calculate Source COMM Id = 2 +08:20:27 ============================================================================ +08:20:27 + + +waiting on router queue for slot.... +08:20:36 ============================================================================ +08:20:36 Slot Id : <277> +08:20:36 Transaction Type : REQUEST +08:20:36 Received From : +08:20:36 ============================================================================ +08:20:36 FNo. Len. Field Value +08:20:36 ============================================================================ +08:20:36 [ 1] [ 4] [0800] +08:20:36 [ 7] [ 10] [0320153224] +08:20:36 [ 11] [ 6] [083224] +08:20:36 [ 37] [ 12] [57908083224] +08:20:36 [ 70] [ 3] [301] +08:20:36 ============================================================================ +08:20:36 + + +waiting on router queue for slot.... +08:20:36 Sending to : +08:20:36 ============================================================================ +08:20:36 ============================================================================ +08:20:36 Slot Id : <277> +08:20:36 Transaction Type : RESPONSE +08:20:36 Received From : +08:20:36 ============================================================================ +08:20:36 FNo. Len. Field Value +08:20:36 ============================================================================ +08:20:36 [ 1] [ 4] [0810] +08:20:36 [ 7] [ 10] [0320153224] +08:20:36 [ 11] [ 6] [083224] +08:20:36 [ 37] [ 12] [579080832240] +08:20:36 [ 39] [ 2] [00] +08:20:36 [ 70] [ 3] [810] +08:20:36 ============================================================================ +08:20:36 Calculate Source COMM Id = 6 +08:20:36 ============================================================================ +08:20:36 + + +waiting on router queue for slot.... +08:20:38 ============================================================================ +08:20:38 Slot Id : <236> +08:20:38 Transaction Type : REQUEST +08:20:38 Received From : +08:20:38 ============================================================================ +08:20:38 FNo. Len. Field Value +08:20:38 ============================================================================ +08:20:38 [ 1] [ 4] [0800] +08:20:38 [ 7] [ 10] [0320011946] +08:20:38 [ 11] [ 6] [155381] +08:20:38 [ 70] [ 3] [301] +08:20:38 ============================================================================ +08:20:38 + + +waiting on router queue for slot.... +08:20:38 Sending to : +08:20:38 ============================================================================ +08:20:38 ============================================================================ +08:20:38 Slot Id : <236> +08:20:38 Transaction Type : RESPONSE +08:20:38 Received From : +08:20:38 ============================================================================ +08:20:38 FNo. Len. Field Value +08:20:38 ============================================================================ +08:20:38 [ 1] [ 4] [0810] +08:20:38 [ 7] [ 10] [0320011946] +08:20:38 [ 11] [ 6] [155381] +08:20:38 [ 39] [ 2] [00] +08:20:38 [ 70] [ 3] [301] +08:20:38 ============================================================================ +08:20:38 Calculate Source COMM Id = 2 +08:20:38 ============================================================================ +08:20:38 + + +waiting on router queue for slot.... +08:20:44 ============================================================================ +08:20:44 Slot Id : <267> +08:20:44 Transaction Type : REQUEST +08:20:44 Received From : +08:20:44 ============================================================================ +08:20:44 FNo. Len. Field Value +08:20:44 ============================================================================ +08:20:44 [ 1] [ 4] [0800] +08:20:44 [ 2] [ 5] [02531] +08:20:44 [ 3] [ 6] [579088] +08:20:44 [ 7] [ 10] [0320012044] +08:20:44 [ 11] [ 6] [806896] +08:20:44 [ 15] [ 10] [0320012044] +08:20:44 [ 37] [ 11] [57908806896] +08:20:44 [ 70] [ 3] [001] +08:20:44 ============================================================================ +08:20:44 + + +waiting on router queue for slot.... +08:20:44 ============================================================================ +08:20:44 Slot Id : <267> +08:20:44 Transaction Type : RESPONSE +08:20:44 Received From : +08:20:44 ============================================================================ +08:20:44 FNo. Len. Field Value +08:20:44 ============================================================================ +08:20:44 [ 1] [ 4] [0810] +08:20:44 [ 7] [ 10] [0320012044] +08:20:44 [ 11] [ 6] [806896] +08:20:44 [ 15] [ 4] [0320] +08:20:44 [ 37] [ 12] [57908806896] +08:20:44 [ 39] [ 2] [00] +08:20:44 [ 70] [ 3] [001] +08:20:44 ============================================================================ +08:20:44 Sending to : +08:20:44 ============================================================================ +08:20:44 + + +waiting on router queue for slot.... +08:20:48 ============================================================================ +08:20:48 Slot Id : <293> +08:20:48 Transaction Type : REQUEST +08:20:48 Received From : +08:20:48 ============================================================================ +08:20:48 FNo. Len. Field Value +08:20:48 ============================================================================ +08:20:48 [ 1] [ 4] [0200] +08:20:48 [ 2] [ 16] [6688990601017302] +08:20:48 [ 3] [ 6] [011000] +08:20:48 [ 4] [ 12] [000020000000] +08:20:48 [ 7] [ 10] [0320082044] +08:20:48 [ 11] [ 6] [682307] +08:20:48 [ 12] [ 6] [082044] +08:20:48 [ 13] [ 4] [0320] +08:20:48 [ 15] [ 4] [0320] +08:20:48 [ 18] [ 4] [6011] +08:20:48 [ 22] [ 3] [900] +08:20:48 [ 25] [ 2] [02] +08:20:48 [ 28] [ 9] [D00002000] +08:20:48 [ 32] [ 6] [621354] +08:20:48 [ 35] [ 37] [6688990601017302=41040061730275700000] +08:20:48 [ 37] [ 12] [507904706741] +08:20:48 [ 41] [ 8] [18000900] +08:20:48 [ 42] [ 15] [NATIVE ] +08:20:48 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:20:48 [ 49] [ 3] [418] +08:20:48 [ 52] [ 16] [01CE3F177FBE2151] +08:20:48 ============================================================================ +08:20:48 + + +waiting on router queue for slot.... +08:20:48 Sending to : +08:20:48 ============================================================================ +08:20:48 Sending to : +08:20:48 ============================================================================ +08:20:48 ============================================================================ +08:20:48 Slot Id : <293> +08:20:48 Transaction Type : REQUEST +08:20:48 Received From : +08:20:48 ============================================================================ +08:20:48 FNo. Len. Field Value +08:20:48 ============================================================================ +08:20:48 [ 1] [ 4] [0200] +08:20:48 [ 2] [ 16] [6688990601017302] +08:20:48 [ 3] [ 6] [011000] +08:20:48 [ 4] [ 12] [000020000000] +08:20:48 [ 7] [ 10] [0320082044] +08:20:48 [ 11] [ 6] [682307] +08:20:48 [ 12] [ 6] [082044] +08:20:48 [ 13] [ 4] [0320] +08:20:48 [ 15] [ 4] [0320] +08:20:48 [ 18] [ 4] [6011] +08:20:48 [ 22] [ 3] [900] +08:20:48 [ 25] [ 2] [02] +08:20:48 [ 28] [ 9] [D00002000] +08:20:48 [ 32] [ 6] [621354] +08:20:48 [ 35] [ 37] [6688990601017302=41040061730275700000] +08:20:48 [ 37] [ 12] [507904706741] +08:20:48 [ 41] [ 8] [18000900] +08:20:48 [ 42] [ 15] [NATIVE ] +08:20:48 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:20:48 [ 49] [ 3] [418] +08:20:48 [ 52] [ 16] [01CE3F177FBE2151] +08:20:48 ============================================================================ +08:20:48 + + +waiting on router queue for slot.... +08:20:48 Sending to : +08:20:48 ============================================================================ +08:20:48 ============================================================================ +08:20:48 Slot Id : <293> +08:20:48 Transaction Type : REQUEST +08:20:48 Received From : +08:20:48 ============================================================================ +08:20:48 FNo. Len. Field Value +08:20:48 ============================================================================ +08:20:48 [ 1] [ 4] [0200] +08:20:48 [ 2] [ 16] [6688990601017302] +08:20:48 [ 3] [ 6] [011000] +08:20:48 [ 4] [ 12] [000020000000] +08:20:48 [ 7] [ 10] [0320082044] +08:20:48 [ 11] [ 6] [682307] +08:20:48 [ 12] [ 6] [082044] +08:20:48 [ 13] [ 4] [0320] +08:20:48 [ 15] [ 4] [0320] +08:20:48 [ 18] [ 4] [6011] +08:20:48 [ 22] [ 3] [900] +08:20:48 [ 25] [ 2] [02] +08:20:48 [ 28] [ 9] [D00002000] +08:20:48 [ 32] [ 6] [621354] +08:20:48 [ 35] [ 37] [6688990601017302=41040061730275700000] +08:20:48 [ 37] [ 12] [507904706741] +08:20:48 [ 41] [ 8] [18000900] +08:20:48 [ 42] [ 15] [NATIVE ] +08:20:48 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:20:48 [ 49] [ 3] [418] +08:20:48 [ 52] [ 16] [70F1E3B82EDF94A0] +08:20:48 ============================================================================ +08:20:48 + + +waiting on router queue for slot.... +08:20:48 Sending to : <4> +08:20:48 ============================================================================ +08:20:49 ============================================================================ +08:20:49 Slot Id : <278> +08:20:49 Transaction Type : REQUEST +08:20:49 Received From : +08:20:49 ============================================================================ +08:20:49 FNo. Len. Field Value +08:20:49 ============================================================================ +08:20:49 [ 1] [ 4] [0800] +08:20:49 [ 7] [ 10] [0320011957] +08:20:49 [ 11] [ 6] [155382] +08:20:49 [ 70] [ 3] [301] +08:20:49 ============================================================================ +08:20:49 + + +waiting on router queue for slot.... +08:20:49 Sending to : +08:20:49 ============================================================================ +08:20:49 ============================================================================ +08:20:49 Slot Id : <278> +08:20:49 Transaction Type : RESPONSE +08:20:49 Received From : +08:20:49 ============================================================================ +08:20:49 FNo. Len. Field Value +08:20:49 ============================================================================ +08:20:49 [ 1] [ 4] [0810] +08:20:49 [ 7] [ 10] [0320011957] +08:20:49 [ 11] [ 6] [155382] +08:20:49 [ 39] [ 2] [00] +08:20:49 [ 70] [ 3] [301] +08:20:49 ============================================================================ +08:20:49 Calculate Source COMM Id = 2 +08:20:49 ============================================================================ +08:20:49 + + +waiting on router queue for slot.... +08:20:49 ============================================================================ +08:20:49 Slot Id : <293> +08:20:49 Transaction Type : RESPONSE +08:20:49 Received From : +08:20:49 ============================================================================ +08:20:49 FNo. Len. Field Value +08:20:49 ============================================================================ +08:20:49 [ 1] [ 4] [0210] +08:20:49 [ 2] [ 16] [6688990601017302] +08:20:49 [ 3] [ 6] [011000] +08:20:49 [ 4] [ 12] [000020000000] +08:20:49 [ 11] [ 6] [682307] +08:20:49 [ 12] [ 6] [082044] +08:20:49 [ 15] [ 4] [0320] +08:20:49 [ 18] [ 4] [6011] +08:20:49 [ 32] [ 6] [621354] +08:20:49 [ 35] [ 37] [6688990601017302=41040061730275700000] +08:20:49 [ 37] [ 12] [507904706741] +08:20:49 [ 38] [ 6] [112445] +08:20:49 [ 39] [ 2] [00] +08:20:49 [ 41] [ 8] [18000900] +08:20:49 [ 49] [ 3] [418] +08:20:49 [ 54] [ 20] [1002418C000731310292] +08:20:49 ============================================================================ +08:20:49 Sending to : +08:20:49 ============================================================================ +08:20:49 + + +waiting on router queue for slot.... +08:20:51 ============================================================================ +08:20:51 Slot Id : <293> +08:20:51 Transaction Type : RESPONSE +08:20:51 Received From : +08:20:51 ============================================================================ +08:20:51 FNo. Len. Field Value +08:20:51 ============================================================================ +08:20:51 [ 1] [ 4] [0210] +08:20:51 [ 2] [ 16] [6688990601017302] +08:20:51 [ 3] [ 6] [011000] +08:20:51 [ 4] [ 12] [000020000000] +08:20:51 [ 11] [ 6] [682307] +08:20:51 [ 12] [ 6] [082044] +08:20:51 [ 15] [ 4] [0320] +08:20:51 [ 18] [ 4] [6011] +08:20:51 [ 32] [ 6] [621354] +08:20:51 [ 35] [ 37] [6688990601017302=41040061730275700000] +08:20:51 [ 37] [ 12] [507904706741] +08:20:51 [ 38] [ 6] [112445] +08:20:51 [ 39] [ 2] [00] +08:20:51 [ 41] [ 8] [18000900] +08:20:51 [ 49] [ 3] [418] +08:20:51 [ 54] [ 20] [1002418C000731310292] +08:20:51 ============================================================================ +08:20:51 Calculate Source COMM Id = 0 +08:20:51 ============================================================================ +08:20:51 + + +waiting on router queue for slot.... +08:20:55 ============================================================================ +08:20:55 Slot Id : <217> +08:20:55 Transaction Type : REQUEST +08:20:55 Received From : +08:20:55 ============================================================================ +08:20:55 FNo. Len. Field Value +08:20:55 ============================================================================ +08:20:55 [ 1] [ 4] [0200] +08:20:55 [ 2] [ 16] [6688990100951100] +08:20:55 [ 3] [ 6] [010000] +08:20:55 [ 4] [ 12] [000015000000] +08:20:55 [ 7] [ 10] [0320082051] +08:20:55 [ 11] [ 6] [682331] +08:20:55 [ 12] [ 6] [082051] +08:20:55 [ 13] [ 4] [0320] +08:20:55 [ 15] [ 4] [0320] +08:20:55 [ 18] [ 4] [6011] +08:20:55 [ 22] [ 3] [900] +08:20:55 [ 25] [ 2] [02] +08:20:55 [ 28] [ 9] [D00002000] +08:20:55 [ 32] [ 6] [621354] +08:20:55 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:20:55 [ 37] [ 12] [507904719375] +08:20:55 [ 41] [ 8] [18001000] +08:20:55 [ 42] [ 15] [NATIVE ] +08:20:55 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:20:55 [ 49] [ 3] [418] +08:20:55 [ 52] [ 16] [B8E5BA684A61D2FD] +08:20:55 ============================================================================ +08:20:55 + + +waiting on router queue for slot.... +08:20:55 Sending to : +08:20:55 ============================================================================ +08:20:55 Sending to : +08:20:55 ============================================================================ +08:20:55 ============================================================================ +08:20:55 Slot Id : <217> +08:20:55 Transaction Type : REQUEST +08:20:55 Received From : +08:20:55 ============================================================================ +08:20:55 FNo. Len. Field Value +08:20:55 ============================================================================ +08:20:55 [ 1] [ 4] [0200] +08:20:55 [ 2] [ 16] [6688990100951100] +08:20:55 [ 3] [ 6] [010000] +08:20:55 [ 4] [ 12] [000015000000] +08:20:55 [ 7] [ 10] [0320082051] +08:20:55 [ 11] [ 6] [682331] +08:20:55 [ 12] [ 6] [082051] +08:20:55 [ 13] [ 4] [0320] +08:20:55 [ 15] [ 4] [0320] +08:20:55 [ 18] [ 4] [6011] +08:20:55 [ 22] [ 3] [900] +08:20:55 [ 25] [ 2] [02] +08:20:55 [ 28] [ 9] [D00002000] +08:20:55 [ 32] [ 6] [621354] +08:20:55 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:20:55 [ 37] [ 12] [507904719375] +08:20:55 [ 41] [ 8] [18001000] +08:20:55 [ 42] [ 15] [NATIVE ] +08:20:55 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:20:55 [ 49] [ 3] [418] +08:20:55 [ 52] [ 16] [B8E5BA684A61D2FD] +08:20:55 ============================================================================ +08:20:55 + + +waiting on router queue for slot.... +08:20:55 Sending to : +08:20:55 ============================================================================ +08:20:55 ============================================================================ +08:20:55 Slot Id : <217> +08:20:55 Transaction Type : REQUEST +08:20:55 Received From : +08:20:55 ============================================================================ +08:20:55 FNo. Len. Field Value +08:20:55 ============================================================================ +08:20:55 [ 1] [ 4] [0200] +08:20:55 [ 2] [ 16] [6688990100951100] +08:20:55 [ 3] [ 6] [010000] +08:20:55 [ 4] [ 12] [000015000000] +08:20:55 [ 7] [ 10] [0320082051] +08:20:55 [ 11] [ 6] [682331] +08:20:55 [ 12] [ 6] [082051] +08:20:55 [ 13] [ 4] [0320] +08:20:55 [ 15] [ 4] [0320] +08:20:55 [ 18] [ 4] [6011] +08:20:55 [ 22] [ 3] [900] +08:20:55 [ 25] [ 2] [02] +08:20:55 [ 28] [ 9] [D00002000] +08:20:55 [ 32] [ 6] [621354] +08:20:55 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:20:55 [ 37] [ 12] [507904719375] +08:20:55 [ 41] [ 8] [18001000] +08:20:55 [ 42] [ 15] [NATIVE ] +08:20:55 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:20:55 [ 49] [ 3] [418] +08:20:55 [ 52] [ 16] [23C7B0DAE11A9C77] +08:20:55 ============================================================================ +08:20:55 + + +waiting on router queue for slot.... +08:20:55 Sending to : <4> +08:20:55 ============================================================================ +08:20:56 ============================================================================ +08:20:56 Slot Id : <217> +08:20:56 Transaction Type : RESPONSE +08:20:56 Received From : +08:20:56 ============================================================================ +08:20:56 FNo. Len. Field Value +08:20:56 ============================================================================ +08:20:56 [ 1] [ 4] [0210] +08:20:56 [ 2] [ 16] [6688990100951100] +08:20:56 [ 3] [ 6] [010000] +08:20:56 [ 4] [ 12] [000015000000] +08:20:56 [ 11] [ 6] [682331] +08:20:56 [ 12] [ 6] [082051] +08:20:56 [ 15] [ 4] [0320] +08:20:56 [ 18] [ 4] [6011] +08:20:56 [ 32] [ 6] [621354] +08:20:56 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:20:56 [ 37] [ 12] [507904719375] +08:20:56 [ 38] [ 6] [840711] +08:20:56 [ 39] [ 2] [00] +08:20:56 [ 41] [ 8] [18001000] +08:20:56 [ 49] [ 3] [418] +08:20:56 [ 54] [ 20] [0002418C000006755625] +08:20:56 ============================================================================ +08:20:56 Sending to : +08:20:56 ============================================================================ +08:20:56 + + +waiting on router queue for slot.... +08:20:57 ============================================================================ +08:20:57 Slot Id : <217> +08:20:57 Transaction Type : RESPONSE +08:20:57 Received From : +08:20:57 ============================================================================ +08:20:57 FNo. Len. Field Value +08:20:57 ============================================================================ +08:20:57 [ 1] [ 4] [0210] +08:20:57 [ 2] [ 16] [6688990100951100] +08:20:57 [ 3] [ 6] [010000] +08:20:57 [ 4] [ 12] [000015000000] +08:20:57 [ 11] [ 6] [682331] +08:20:57 [ 12] [ 6] [082051] +08:20:57 [ 15] [ 4] [0320] +08:20:57 [ 18] [ 4] [6011] +08:20:57 [ 32] [ 6] [621354] +08:20:57 [ 35] [ 37] [6688990100951100=41121231110020900000] +08:20:57 [ 37] [ 12] [507904719375] +08:20:57 [ 38] [ 6] [840711] +08:20:57 [ 39] [ 2] [00] +08:20:57 [ 41] [ 8] [18001000] +08:20:57 [ 49] [ 3] [418] +08:20:57 [ 54] [ 20] [0002418C000006755625] +08:20:57 ============================================================================ +08:20:57 Calculate Source COMM Id = 0 +08:20:57 ============================================================================ +08:20:57 + + +waiting on router queue for slot.... +08:21:01 ============================================================================ +08:21:01 Slot Id : <294> +08:21:01 Transaction Type : REQUEST +08:21:01 Received From : +08:21:01 ============================================================================ +08:21:01 FNo. Len. Field Value +08:21:01 ============================================================================ +08:21:01 [ 1] [ 4] [0200] +08:21:01 [ 2] [ 16] [1808930600026058] +08:21:01 [ 3] [ 6] [010000] +08:21:01 [ 4] [ 12] [000010000000] +08:21:01 [ 7] [ 10] [0320082057] +08:21:01 [ 11] [ 6] [682373] +08:21:01 [ 12] [ 6] [082057] +08:21:01 [ 13] [ 4] [0320] +08:21:01 [ 15] [ 4] [0320] +08:21:01 [ 18] [ 4] [6011] +08:21:01 [ 22] [ 3] [900] +08:21:01 [ 25] [ 2] [02] +08:21:01 [ 28] [ 9] [D00002000] +08:21:01 [ 32] [ 6] [621354] +08:21:01 [ 35] [ 27] [1808930600026058=1803500163] +08:21:01 [ 37] [ 12] [507905271160] +08:21:01 [ 41] [ 8] [02002900] +08:21:01 [ 42] [ 15] [NATIVE ] +08:21:01 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:21:01 [ 49] [ 3] [418] +08:21:01 [ 52] [ 16] [0FBB204CB12C21CD] +08:21:01 ============================================================================ +08:21:01 + + +waiting on router queue for slot.... +08:21:01 Sending to : +08:21:01 ============================================================================ +08:21:01 Sending to : +08:21:01 ============================================================================ +08:21:01 ============================================================================ +08:21:01 Slot Id : <294> +08:21:01 Transaction Type : REQUEST +08:21:01 Received From : +08:21:01 ============================================================================ +08:21:01 FNo. Len. Field Value +08:21:01 ============================================================================ +08:21:01 [ 1] [ 4] [0200] +08:21:01 [ 2] [ 16] [1808930600026058] +08:21:01 [ 3] [ 6] [010000] +08:21:01 [ 4] [ 12] [000010000000] +08:21:01 [ 7] [ 10] [0320082057] +08:21:01 [ 11] [ 6] [682373] +08:21:01 [ 12] [ 6] [082057] +08:21:01 [ 13] [ 4] [0320] +08:21:01 [ 15] [ 4] [0320] +08:21:01 [ 18] [ 4] [6011] +08:21:01 [ 22] [ 3] [900] +08:21:01 [ 25] [ 2] [02] +08:21:01 [ 28] [ 9] [D00002000] +08:21:01 [ 32] [ 6] [621354] +08:21:01 [ 35] [ 27] [1808930600026058=1803500163] +08:21:01 [ 37] [ 12] [507905271160] +08:21:01 [ 41] [ 8] [02002900] +08:21:01 [ 42] [ 15] [NATIVE ] +08:21:01 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:21:01 [ 49] [ 3] [418] +08:21:01 [ 52] [ 16] [0FBB204CB12C21CD] +08:21:01 ============================================================================ +08:21:01 + + +waiting on router queue for slot.... +08:21:01 Sending to : +08:21:01 ============================================================================ +08:21:02 ============================================================================ +08:21:02 Slot Id : <294> +08:21:02 Transaction Type : REQUEST +08:21:02 Received From : +08:21:02 ============================================================================ +08:21:02 FNo. Len. Field Value +08:21:02 ============================================================================ +08:21:02 [ 1] [ 4] [0200] +08:21:02 [ 2] [ 16] [1808930600026058] +08:21:02 [ 3] [ 6] [010000] +08:21:02 [ 4] [ 12] [000010000000] +08:21:02 [ 7] [ 10] [0320082057] +08:21:02 [ 11] [ 6] [682373] +08:21:02 [ 12] [ 6] [082057] +08:21:02 [ 13] [ 4] [0320] +08:21:02 [ 15] [ 4] [0320] +08:21:02 [ 18] [ 4] [6011] +08:21:02 [ 22] [ 3] [900] +08:21:02 [ 25] [ 2] [02] +08:21:02 [ 28] [ 9] [D00002000] +08:21:02 [ 32] [ 6] [621354] +08:21:02 [ 35] [ 27] [1808930600026058=1803500163] +08:21:02 [ 37] [ 12] [507905271160] +08:21:02 [ 41] [ 8] [02002900] +08:21:02 [ 42] [ 15] [NATIVE ] +08:21:02 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:21:02 [ 49] [ 3] [418] +08:21:02 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:21:02 ============================================================================ +08:21:02 + + +waiting on router queue for slot.... +08:21:02 Sending to : <2> +08:21:02 ============================================================================ +08:21:09 ============================================================================ +08:21:09 Slot Id : <294> +08:21:09 Transaction Type : RESPONSE +08:21:09 Received From : +08:21:09 ============================================================================ +08:21:09 FNo. Len. Field Value +08:21:09 ============================================================================ +08:21:09 [ 1] [ 4] [0210] +08:21:09 [ 2] [ 16] [1808930600026058] +08:21:09 [ 3] [ 6] [010000] +08:21:09 [ 4] [ 12] [000010000000] +08:21:09 [ 6] [ 12] [000010000000] +08:21:09 [ 7] [ 10] [0320082057] +08:21:09 [ 11] [ 6] [682373] +08:21:09 [ 12] [ 6] [082057] +08:21:09 [ 13] [ 4] [0320] +08:21:09 [ 18] [ 4] [6011] +08:21:09 [ 19] [ 3] [418] +08:21:09 [ 22] [ 3] [021] +08:21:09 [ 32] [ 6] [621354] +08:21:09 [ 35] [ 27] [1808930600026058=1803500163] +08:21:09 [ 37] [ 12] [507905271160] +08:21:09 [ 38] [ 6] [682373] +08:21:09 [ 39] [ 2] [00] +08:21:09 [ 41] [ 8] [02002900] +08:21:09 [ 49] [ 3] [418] +08:21:09 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:21:09 [ 54] [ 20] [1001418C000233500366] +08:21:09 ============================================================================ +08:21:09 Sending to : +08:21:09 ============================================================================ +08:21:09 + + +waiting on router queue for slot.... +08:21:11 ============================================================================ +08:21:11 Slot Id : <294> +08:21:11 Transaction Type : RESPONSE +08:21:11 Received From : +08:21:11 ============================================================================ +08:21:11 FNo. Len. Field Value +08:21:11 ============================================================================ +08:21:11 [ 1] [ 4] [0210] +08:21:11 [ 2] [ 16] [1808930600026058] +08:21:11 [ 3] [ 6] [010000] +08:21:11 [ 4] [ 12] [000010000000] +08:21:11 [ 6] [ 12] [000010000000] +08:21:11 [ 7] [ 10] [0320082057] +08:21:11 [ 11] [ 6] [682373] +08:21:11 [ 12] [ 6] [082057] +08:21:11 [ 13] [ 4] [0320] +08:21:11 [ 18] [ 4] [6011] +08:21:11 [ 19] [ 3] [418] +08:21:11 [ 22] [ 3] [021] +08:21:11 [ 32] [ 6] [621354] +08:21:11 [ 35] [ 27] [1808930600026058=1803500163] +08:21:11 [ 37] [ 12] [507905271160] +08:21:11 [ 38] [ 6] [682373] +08:21:11 [ 39] [ 2] [00] +08:21:11 [ 41] [ 8] [02002900] +08:21:11 [ 49] [ 3] [418] +08:21:11 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:21:11 [ 54] [ 20] [1001418C000233500366] +08:21:11 ============================================================================ +08:21:11 Calculate Source COMM Id = 0 +08:21:11 ============================================================================ +08:21:11 + + +waiting on router queue for slot.... +08:21:17 ============================================================================ +08:21:17 Slot Id : <298> +08:21:17 Transaction Type : REQUEST +08:21:17 Received From : +08:21:17 ============================================================================ +08:21:17 FNo. Len. Field Value +08:21:17 ============================================================================ +08:21:17 [ 1] [ 4] [0800] +08:21:17 [ 7] [ 10] [0320012024] +08:21:17 [ 11] [ 6] [155383] +08:21:17 [ 70] [ 3] [301] +08:21:17 ============================================================================ +08:21:17 + + +waiting on router queue for slot.... +08:21:17 Sending to : +08:21:17 ============================================================================ +08:21:17 ============================================================================ +08:21:17 Slot Id : <298> +08:21:17 Transaction Type : RESPONSE +08:21:17 Received From : +08:21:17 ============================================================================ +08:21:17 FNo. Len. Field Value +08:21:17 ============================================================================ +08:21:17 [ 1] [ 4] [0810] +08:21:17 [ 7] [ 10] [0320012024] +08:21:17 [ 11] [ 6] [155383] +08:21:17 [ 39] [ 2] [00] +08:21:17 [ 70] [ 3] [301] +08:21:17 ============================================================================ +08:21:17 Calculate Source COMM Id = 2 +08:21:17 ============================================================================ +08:21:17 + + +waiting on router queue for slot.... +08:21:20 ============================================================================ +08:21:20 Slot Id : <257> +08:21:20 Transaction Type : REQUEST +08:21:20 Received From : +08:21:20 ============================================================================ +08:21:20 FNo. Len. Field Value +08:21:20 ============================================================================ +08:21:20 [ 1] [ 4] [0800] +08:21:20 [ 7] [ 10] [0320011912] +08:21:20 [ 11] [ 6] [043323] +08:21:20 [ 37] [ 12] [57908043323] +08:21:20 [ 70] [ 3] [301] +08:21:20 ============================================================================ +08:21:20 + + +waiting on router queue for slot.... +08:21:20 Sending to : +08:21:20 ============================================================================ +08:21:20 ============================================================================ +08:21:20 Slot Id : <257> +08:21:20 Transaction Type : RESPONSE +08:21:20 Received From : +08:21:20 ============================================================================ +08:21:20 FNo. Len. Field Value +08:21:20 ============================================================================ +08:21:20 [ 1] [ 4] [0810] +08:21:20 [ 7] [ 10] [0320011912] +08:21:20 [ 11] [ 6] [043323] +08:21:20 [ 37] [ 12] [579080433230] +08:21:20 [ 39] [ 2] [00] +08:21:20 [ 70] [ 3] [810] +08:21:20 ============================================================================ +08:21:20 Calculate Source COMM Id = 4 +08:21:20 ============================================================================ +08:21:20 + + +waiting on router queue for slot.... +08:21:32 ============================================================================ +08:21:32 Slot Id : <303> +08:21:32 Transaction Type : REQUEST +08:21:32 Received From : +08:21:32 ============================================================================ +08:21:32 FNo. Len. Field Value +08:21:32 ============================================================================ +08:21:32 [ 1] [ 4] [0800] +08:21:32 [ 7] [ 10] [0320012040] +08:21:32 [ 11] [ 6] [155384] +08:21:32 [ 70] [ 3] [301] +08:21:32 ============================================================================ +08:21:32 + + +waiting on router queue for slot.... +08:21:32 Sending to : +08:21:32 ============================================================================ +08:21:32 ============================================================================ +08:21:32 Slot Id : <303> +08:21:32 Transaction Type : RESPONSE +08:21:32 Received From : +08:21:32 ============================================================================ +08:21:32 FNo. Len. Field Value +08:21:32 ============================================================================ +08:21:32 [ 1] [ 4] [0810] +08:21:32 [ 7] [ 10] [0320012040] +08:21:32 [ 11] [ 6] [155384] +08:21:32 [ 39] [ 2] [00] +08:21:32 [ 70] [ 3] [301] +08:21:32 ============================================================================ +08:21:32 Calculate Source COMM Id = 2 +08:21:32 ============================================================================ +08:21:32 + + +waiting on router queue for slot.... +08:21:41 ============================================================================ +08:21:41 Slot Id : <302> +08:21:41 Transaction Type : REQUEST +08:21:41 Received From : +08:21:41 ============================================================================ +08:21:41 FNo. Len. Field Value +08:21:41 ============================================================================ +08:21:41 [ 1] [ 4] [0800] +08:21:41 [ 7] [ 10] [0320153329] +08:21:41 [ 11] [ 6] [083329] +08:21:41 [ 37] [ 12] [57908083329] +08:21:41 [ 70] [ 3] [301] +08:21:41 ============================================================================ +08:21:41 + + +waiting on router queue for slot.... +08:21:41 Sending to : +08:21:41 ============================================================================ +08:21:41 ============================================================================ +08:21:41 Slot Id : <302> +08:21:41 Transaction Type : RESPONSE +08:21:41 Received From : +08:21:41 ============================================================================ +08:21:41 FNo. Len. Field Value +08:21:41 ============================================================================ +08:21:41 [ 1] [ 4] [0810] +08:21:41 [ 7] [ 10] [0320153329] +08:21:41 [ 11] [ 6] [083329] +08:21:41 [ 37] [ 12] [579080833290] +08:21:41 [ 39] [ 2] [00] +08:21:41 [ 70] [ 3] [810] +08:21:41 ============================================================================ +08:21:41 Calculate Source COMM Id = 6 +08:21:41 ============================================================================ +08:21:41 + + +waiting on router queue for slot.... +08:21:44 ============================================================================ +08:21:44 Slot Id : <299> +08:21:44 Transaction Type : REQUEST +08:21:44 Received From : +08:21:44 ============================================================================ +08:21:44 FNo. Len. Field Value +08:21:44 ============================================================================ +08:21:44 [ 1] [ 4] [0800] +08:21:44 [ 7] [ 10] [0320012051] +08:21:44 [ 11] [ 6] [155385] +08:21:44 [ 70] [ 3] [301] +08:21:44 ============================================================================ +08:21:44 + + +waiting on router queue for slot.... +08:21:44 Sending to : +08:21:44 ============================================================================ +08:21:44 ============================================================================ +08:21:44 Slot Id : <299> +08:21:44 Transaction Type : RESPONSE +08:21:44 Received From : +08:21:44 ============================================================================ +08:21:44 FNo. Len. Field Value +08:21:44 ============================================================================ +08:21:44 [ 1] [ 4] [0810] +08:21:44 [ 7] [ 10] [0320012051] +08:21:44 [ 11] [ 6] [155385] +08:21:44 [ 39] [ 2] [00] +08:21:44 [ 70] [ 3] [301] +08:21:44 ============================================================================ +08:21:44 Calculate Source COMM Id = 2 +08:21:44 ============================================================================ +08:21:44 + + +waiting on router queue for slot.... +08:21:46 ============================================================================ +08:21:46 Slot Id : <292> +08:21:46 Transaction Type : REQUEST +08:21:46 Received From : +08:21:46 ============================================================================ +08:21:46 FNo. Len. Field Value +08:21:46 ============================================================================ +08:21:46 [ 1] [ 4] [0800] +08:21:46 [ 2] [ 5] [02531] +08:21:46 [ 3] [ 6] [579088] +08:21:46 [ 7] [ 10] [0320012146] +08:21:46 [ 11] [ 6] [806897] +08:21:46 [ 15] [ 10] [0320012146] +08:21:46 [ 37] [ 11] [57908806897] +08:21:46 [ 70] [ 3] [001] +08:21:46 ============================================================================ +08:21:46 + + +waiting on router queue for slot.... +08:21:46 ============================================================================ +08:21:46 Slot Id : <292> +08:21:46 Transaction Type : RESPONSE +08:21:46 Received From : +08:21:46 ============================================================================ +08:21:46 FNo. Len. Field Value +08:21:46 ============================================================================ +08:21:46 [ 1] [ 4] [0810] +08:21:46 [ 7] [ 10] [0320012146] +08:21:46 [ 11] [ 6] [806897] +08:21:46 [ 15] [ 4] [0320] +08:21:46 [ 37] [ 12] [57908806897] +08:21:46 [ 39] [ 2] [00] +08:21:46 [ 70] [ 3] [001] +08:21:46 ============================================================================ +08:21:46 Sending to : +08:21:46 ============================================================================ +08:21:46 + + +waiting on router queue for slot.... +08:21:58 ============================================================================ +08:21:58 Slot Id : <281> +08:21:58 Transaction Type : REQUEST +08:21:58 Received From : +08:21:58 ============================================================================ +08:21:58 FNo. Len. Field Value +08:21:58 ============================================================================ +08:21:58 [ 1] [ 4] [0800] +08:21:58 [ 7] [ 10] [0320012106] +08:21:58 [ 11] [ 6] [155386] +08:21:58 [ 70] [ 3] [301] +08:21:58 ============================================================================ +08:21:58 + + +waiting on router queue for slot.... +08:21:58 Sending to : +08:21:58 ============================================================================ +08:21:58 ============================================================================ +08:21:58 Slot Id : <281> +08:21:58 Transaction Type : RESPONSE +08:21:58 Received From : +08:21:58 ============================================================================ +08:21:58 FNo. Len. Field Value +08:21:58 ============================================================================ +08:21:58 [ 1] [ 4] [0810] +08:21:58 [ 7] [ 10] [0320012106] +08:21:58 [ 11] [ 6] [155386] +08:21:58 [ 39] [ 2] [00] +08:21:58 [ 70] [ 3] [301] +08:21:58 ============================================================================ +08:21:58 Calculate Source COMM Id = 2 +08:21:58 ============================================================================ +08:21:58 + + +waiting on router queue for slot.... +08:22:01 ============================================================================ +08:22:01 Slot Id : <300> +08:22:01 Transaction Type : REQUEST +08:22:01 Received From : +08:22:01 ============================================================================ +08:22:01 FNo. Len. Field Value +08:22:01 ============================================================================ +08:22:01 [ 1] [ 4] [0200] +08:22:01 [ 2] [ 16] [1808930600026058] +08:22:01 [ 3] [ 6] [010000] +08:22:01 [ 4] [ 12] [000100000000] +08:22:01 [ 7] [ 10] [0320082158] +08:22:01 [ 11] [ 6] [682624] +08:22:01 [ 12] [ 6] [082158] +08:22:01 [ 13] [ 4] [0320] +08:22:01 [ 15] [ 4] [0320] +08:22:01 [ 18] [ 4] [6011] +08:22:01 [ 22] [ 3] [900] +08:22:01 [ 25] [ 2] [02] +08:22:01 [ 28] [ 9] [D00002000] +08:22:01 [ 32] [ 6] [621354] +08:22:01 [ 35] [ 27] [1808930600026058=1803500163] +08:22:01 [ 37] [ 12] [507905271162] +08:22:01 [ 41] [ 8] [02002900] +08:22:01 [ 42] [ 15] [NATIVE ] +08:22:01 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:22:01 [ 49] [ 3] [418] +08:22:01 [ 52] [ 16] [0FBB204CB12C21CD] +08:22:01 ============================================================================ +08:22:01 + + +waiting on router queue for slot.... +08:22:01 Sending to : +08:22:01 ============================================================================ +08:22:01 Sending to : +08:22:01 ============================================================================ +08:22:02 ============================================================================ +08:22:02 Slot Id : <300> +08:22:02 Transaction Type : REQUEST +08:22:02 Received From : +08:22:02 ============================================================================ +08:22:02 FNo. Len. Field Value +08:22:02 ============================================================================ +08:22:02 [ 1] [ 4] [0200] +08:22:02 [ 2] [ 16] [1808930600026058] +08:22:02 [ 3] [ 6] [010000] +08:22:02 [ 4] [ 12] [000100000000] +08:22:02 [ 7] [ 10] [0320082158] +08:22:02 [ 11] [ 6] [682624] +08:22:02 [ 12] [ 6] [082158] +08:22:02 [ 13] [ 4] [0320] +08:22:02 [ 15] [ 4] [0320] +08:22:02 [ 18] [ 4] [6011] +08:22:02 [ 22] [ 3] [900] +08:22:02 [ 25] [ 2] [02] +08:22:02 [ 28] [ 9] [D00002000] +08:22:02 [ 32] [ 6] [621354] +08:22:02 [ 35] [ 27] [1808930600026058=1803500163] +08:22:02 [ 37] [ 12] [507905271162] +08:22:02 [ 41] [ 8] [02002900] +08:22:02 [ 42] [ 15] [NATIVE ] +08:22:02 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:22:02 [ 49] [ 3] [418] +08:22:02 [ 52] [ 16] [0FBB204CB12C21CD] +08:22:02 ============================================================================ +08:22:02 + + +waiting on router queue for slot.... +08:22:02 Sending to : +08:22:02 ============================================================================ +08:22:02 ============================================================================ +08:22:02 Slot Id : <300> +08:22:02 Transaction Type : REQUEST +08:22:02 Received From : +08:22:02 ============================================================================ +08:22:02 FNo. Len. Field Value +08:22:02 ============================================================================ +08:22:02 [ 1] [ 4] [0200] +08:22:02 [ 2] [ 16] [1808930600026058] +08:22:02 [ 3] [ 6] [010000] +08:22:02 [ 4] [ 12] [000100000000] +08:22:02 [ 7] [ 10] [0320082158] +08:22:02 [ 11] [ 6] [682624] +08:22:02 [ 12] [ 6] [082158] +08:22:02 [ 13] [ 4] [0320] +08:22:02 [ 15] [ 4] [0320] +08:22:02 [ 18] [ 4] [6011] +08:22:02 [ 22] [ 3] [900] +08:22:02 [ 25] [ 2] [02] +08:22:02 [ 28] [ 9] [D00002000] +08:22:02 [ 32] [ 6] [621354] +08:22:02 [ 35] [ 27] [1808930600026058=1803500163] +08:22:02 [ 37] [ 12] [507905271162] +08:22:02 [ 41] [ 8] [02002900] +08:22:02 [ 42] [ 15] [NATIVE ] +08:22:02 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:22:02 [ 49] [ 3] [418] +08:22:02 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:22:02 ============================================================================ +08:22:02 + + +waiting on router queue for slot.... +08:22:02 Sending to : <2> +08:22:02 ============================================================================ +08:22:08 ============================================================================ +08:22:08 Slot Id : <300> +08:22:08 Transaction Type : RESPONSE +08:22:08 Received From : +08:22:08 ============================================================================ +08:22:08 FNo. Len. Field Value +08:22:08 ============================================================================ +08:22:08 [ 1] [ 4] [0210] +08:22:08 [ 2] [ 16] [1808930600026058] +08:22:08 [ 3] [ 6] [010000] +08:22:08 [ 4] [ 12] [000100000000] +08:22:08 [ 6] [ 12] [000100000000] +08:22:08 [ 7] [ 10] [0320082158] +08:22:08 [ 11] [ 6] [682624] +08:22:08 [ 12] [ 6] [082158] +08:22:08 [ 13] [ 4] [0320] +08:22:08 [ 18] [ 4] [6011] +08:22:08 [ 19] [ 3] [418] +08:22:08 [ 22] [ 3] [021] +08:22:08 [ 32] [ 6] [621354] +08:22:08 [ 35] [ 27] [1808930600026058=1803500163] +08:22:08 [ 37] [ 12] [507905271162] +08:22:08 [ 38] [ 6] [682624] +08:22:08 [ 39] [ 2] [00] +08:22:08 [ 41] [ 8] [02002900] +08:22:08 [ 49] [ 3] [418] +08:22:08 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:22:08 [ 54] [ 20] [1001418C000133300366] +08:22:08 ============================================================================ +08:22:08 Sending to : +08:22:08 ============================================================================ +08:22:08 + + +waiting on router queue for slot.... +08:22:10 ============================================================================ +08:22:10 Slot Id : <300> +08:22:10 Transaction Type : RESPONSE +08:22:10 Received From : +08:22:10 ============================================================================ +08:22:10 FNo. Len. Field Value +08:22:10 ============================================================================ +08:22:10 [ 1] [ 4] [0210] +08:22:10 [ 2] [ 16] [1808930600026058] +08:22:10 [ 3] [ 6] [010000] +08:22:10 [ 4] [ 12] [000100000000] +08:22:10 [ 6] [ 12] [000100000000] +08:22:10 [ 7] [ 10] [0320082158] +08:22:10 [ 11] [ 6] [682624] +08:22:10 [ 12] [ 6] [082158] +08:22:10 [ 13] [ 4] [0320] +08:22:10 [ 18] [ 4] [6011] +08:22:10 [ 19] [ 3] [418] +08:22:10 [ 22] [ 3] [021] +08:22:10 [ 32] [ 6] [621354] +08:22:10 [ 35] [ 27] [1808930600026058=1803500163] +08:22:10 [ 37] [ 12] [507905271162] +08:22:10 [ 38] [ 6] [682624] +08:22:10 [ 39] [ 2] [00] +08:22:10 [ 41] [ 8] [02002900] +08:22:10 [ 49] [ 3] [418] +08:22:10 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:22:10 [ 54] [ 20] [1001418C000133300366] +08:22:10 ============================================================================ +08:22:10 Calculate Source COMM Id = 0 +08:22:10 ============================================================================ +08:22:10 + + +waiting on router queue for slot.... +08:22:13 ============================================================================ +08:22:13 Slot Id : <295> +08:22:13 Transaction Type : REQUEST +08:22:13 Received From : +08:22:13 ============================================================================ +08:22:13 FNo. Len. Field Value +08:22:13 ============================================================================ +08:22:13 [ 1] [ 4] [0800] +08:22:13 [ 7] [ 10] [0320012122] +08:22:13 [ 11] [ 6] [155387] +08:22:13 [ 70] [ 3] [301] +08:22:13 ============================================================================ +08:22:13 + + +waiting on router queue for slot.... +08:22:13 Sending to : +08:22:13 ============================================================================ +08:22:13 ============================================================================ +08:22:13 Slot Id : <295> +08:22:13 Transaction Type : RESPONSE +08:22:13 Received From : +08:22:13 ============================================================================ +08:22:13 FNo. Len. Field Value +08:22:13 ============================================================================ +08:22:13 [ 1] [ 4] [0810] +08:22:13 [ 7] [ 10] [0320012122] +08:22:13 [ 11] [ 6] [155387] +08:22:13 [ 39] [ 2] [00] +08:22:13 [ 70] [ 3] [301] +08:22:13 ============================================================================ +08:22:13 Calculate Source COMM Id = 2 +08:22:13 ============================================================================ +08:22:13 + + +waiting on router queue for slot.... +08:22:29 ============================================================================ +08:22:29 Slot Id : <308> +08:22:29 Transaction Type : REQUEST +08:22:29 Received From : +08:22:29 ============================================================================ +08:22:29 FNo. Len. Field Value +08:22:29 ============================================================================ +08:22:29 [ 1] [ 4] [0800] +08:22:29 [ 7] [ 10] [0320082216] +08:22:29 [ 11] [ 6] [099407] +08:22:29 [ 37] [ 12] [507908099407] +08:22:29 [ 70] [ 3] [ ] +08:22:29 ============================================================================ +08:22:29 + + +waiting on router queue for slot.... +08:22:29 Sending to : +08:22:29 ============================================================================ +08:22:29 ============================================================================ +08:22:29 Slot Id : <308> +08:22:29 Transaction Type : RESPONSE +08:22:29 Received From : +08:22:29 ============================================================================ +08:22:29 FNo. Len. Field Value +08:22:29 ============================================================================ +08:22:29 [ 1] [ 4] [0810] +08:22:29 [ 7] [ 10] [0320082216] +08:22:29 [ 11] [ 6] [099407] +08:22:29 [ 37] [ 12] [507908099407] +08:22:29 [ 39] [ 2] [91] +08:22:29 [ 70] [ 3] [ ] +08:22:29 ============================================================================ +08:22:29 Calculate Source COMM Id = 3 +08:22:29 ============================================================================ +08:22:29 + + +waiting on router queue for slot.... +08:22:30 ============================================================================ +08:22:30 Slot Id : <296> +08:22:30 Transaction Type : REQUEST +08:22:30 Received From : +08:22:30 ============================================================================ +08:22:30 FNo. Len. Field Value +08:22:30 ============================================================================ +08:22:30 [ 1] [ 4] [0800] +08:22:30 [ 7] [ 10] [0320012138] +08:22:30 [ 11] [ 6] [155388] +08:22:30 [ 70] [ 3] [301] +08:22:30 ============================================================================ +08:22:30 + + +waiting on router queue for slot.... +08:22:30 Sending to : +08:22:30 ============================================================================ +08:22:30 ============================================================================ +08:22:30 Slot Id : <296> +08:22:30 Transaction Type : RESPONSE +08:22:30 Received From : +08:22:30 ============================================================================ +08:22:30 FNo. Len. Field Value +08:22:30 ============================================================================ +08:22:30 [ 1] [ 4] [0810] +08:22:30 [ 7] [ 10] [0320012138] +08:22:30 [ 11] [ 6] [155388] +08:22:30 [ 39] [ 2] [00] +08:22:30 [ 70] [ 3] [301] +08:22:30 ============================================================================ +08:22:30 Calculate Source COMM Id = 2 +08:22:30 ============================================================================ +08:22:30 + + +waiting on router queue for slot.... +08:22:36 ============================================================================ +08:22:36 Slot Id : <283> +08:22:36 Transaction Type : REQUEST +08:22:36 Received From : +08:22:36 ============================================================================ +08:22:36 FNo. Len. Field Value +08:22:36 ============================================================================ +08:22:36 [ 1] [ 4] [0200] +08:22:36 [ 2] [ 16] [6688990103569701] +08:22:36 [ 3] [ 6] [301000] +08:22:36 [ 7] [ 10] [0320012144] +08:22:36 [ 11] [ 6] [267138] +08:22:36 [ 12] [ 6] [082144] +08:22:36 [ 13] [ 4] [0320] +08:22:36 [ 14] [ 4] [4301] +08:22:36 [ 15] [ 4] [0320] +08:22:36 [ 18] [ 4] [6011] +08:22:36 [ 19] [ 3] [418] +08:22:36 [ 22] [ 3] [021] +08:22:36 [ 25] [ 2] [01] +08:22:36 [ 32] [ 6] [180893] +08:22:36 [ 35] [ 37] [6688990103569701=43011231970119200000] +08:22:36 [ 37] [ 12] [507901267138] +08:22:36 [ 41] [ 8] [0464UDPB] +08:22:36 [ 42] [ 15] [999999 ] +08:22:36 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +08:22:36 [ 49] [ 3] [418] +08:22:36 [ 52] [ 16] [35EB0A617CD471B7] +08:22:36 ============================================================================ +08:22:36 + + +waiting on router queue for slot.... +08:22:36 Sending to : +08:22:36 ============================================================================ +08:22:36 Sending to : +08:22:36 ============================================================================ +08:22:36 ============================================================================ +08:22:36 Slot Id : <283> +08:22:36 Transaction Type : REQUEST +08:22:36 Received From : +08:22:36 ============================================================================ +08:22:36 FNo. Len. Field Value +08:22:36 ============================================================================ +08:22:36 [ 1] [ 4] [0200] +08:22:36 [ 2] [ 16] [6688990103569701] +08:22:36 [ 3] [ 6] [301000] +08:22:36 [ 7] [ 10] [0320012144] +08:22:36 [ 11] [ 6] [267138] +08:22:36 [ 12] [ 6] [082144] +08:22:36 [ 13] [ 4] [0320] +08:22:36 [ 14] [ 4] [4301] +08:22:36 [ 15] [ 4] [0320] +08:22:36 [ 18] [ 4] [6011] +08:22:36 [ 19] [ 3] [418] +08:22:36 [ 22] [ 3] [021] +08:22:36 [ 25] [ 2] [01] +08:22:36 [ 32] [ 6] [180893] +08:22:36 [ 35] [ 37] [6688990103569701=43011231970119200000] +08:22:36 [ 37] [ 12] [507901267138] +08:22:36 [ 41] [ 8] [0464UDPB] +08:22:36 [ 42] [ 15] [999999 ] +08:22:36 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +08:22:36 [ 49] [ 3] [418] +08:22:36 [ 52] [ 16] [35EB0A617CD471B7] +08:22:36 ============================================================================ +08:22:36 + + +waiting on router queue for slot.... +08:22:36 Sending to : +08:22:36 ============================================================================ +08:22:36 ============================================================================ +08:22:36 Slot Id : <283> +08:22:36 Transaction Type : REQUEST +08:22:36 Received From : +08:22:36 ============================================================================ +08:22:36 FNo. Len. Field Value +08:22:36 ============================================================================ +08:22:36 [ 1] [ 4] [0200] +08:22:36 [ 2] [ 16] [6688990103569701] +08:22:36 [ 3] [ 6] [301000] +08:22:36 [ 7] [ 10] [0320012144] +08:22:36 [ 11] [ 6] [267138] +08:22:36 [ 12] [ 6] [082144] +08:22:36 [ 13] [ 4] [0320] +08:22:36 [ 14] [ 4] [4301] +08:22:36 [ 15] [ 4] [0320] +08:22:36 [ 18] [ 4] [6011] +08:22:36 [ 19] [ 3] [418] +08:22:36 [ 22] [ 3] [021] +08:22:36 [ 25] [ 2] [01] +08:22:36 [ 32] [ 6] [180893] +08:22:36 [ 35] [ 37] [6688990103569701=43011231970119200000] +08:22:36 [ 37] [ 12] [507901267138] +08:22:36 [ 41] [ 8] [0464UDPB] +08:22:36 [ 42] [ 15] [999999 ] +08:22:36 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +08:22:36 [ 49] [ 3] [418] +08:22:36 [ 52] [ 16] [F8B7B46ECADC2C23] +08:22:36 ============================================================================ +08:22:36 + + +waiting on router queue for slot.... +08:22:36 Sending to : <0> +08:22:36 ============================================================================ +08:22:36 ============================================================================ +08:22:36 Slot Id : <283> +08:22:36 Transaction Type : RESPONSE +08:22:36 Received From : +08:22:36 ============================================================================ +08:22:36 FNo. Len. Field Value +08:22:36 ============================================================================ +08:22:36 [ 1] [ 4] [0210] +08:22:36 [ 2] [ 16] [6688990103569701] +08:22:36 [ 3] [ 6] [301000] +08:22:36 [ 4] [ 12] [000000000000] +08:22:36 [ 7] [ 10] [0320012144] +08:22:36 [ 11] [ 6] [267138] +08:22:36 [ 12] [ 6] [082144] +08:22:36 [ 13] [ 4] [0320] +08:22:36 [ 15] [ 4] [0320] +08:22:36 [ 18] [ 4] [6011] +08:22:36 [ 19] [ 3] [418] +08:22:36 [ 22] [ 3] [021] +08:22:36 [ 32] [ 6] [180893] +08:22:36 [ 35] [ 37] [6688990103569701=43011231970119200000] +08:22:36 [ 37] [ 12] [507901267138] +08:22:36 [ 39] [ 2] [14] +08:22:36 [ 41] [ 8] [0464UDPB] +08:22:36 [ 49] [ 3] [418] +08:22:36 ============================================================================ +08:22:36 Sending to : +08:22:36 ============================================================================ +08:22:36 + + +waiting on router queue for slot.... +08:22:37 ============================================================================ +08:22:37 Slot Id : <283> +08:22:37 Transaction Type : RESPONSE +08:22:37 Received From : +08:22:37 ============================================================================ +08:22:37 FNo. Len. Field Value +08:22:37 ============================================================================ +08:22:37 [ 1] [ 4] [0210] +08:22:37 [ 2] [ 16] [6688990103569701] +08:22:37 [ 3] [ 6] [301000] +08:22:37 [ 4] [ 12] [000000000000] +08:22:37 [ 7] [ 10] [0320012144] +08:22:37 [ 11] [ 6] [267138] +08:22:37 [ 12] [ 6] [082144] +08:22:37 [ 13] [ 4] [0320] +08:22:37 [ 15] [ 4] [0320] +08:22:37 [ 18] [ 4] [6011] +08:22:37 [ 19] [ 3] [418] +08:22:37 [ 22] [ 3] [021] +08:22:37 [ 32] [ 6] [180893] +08:22:37 [ 35] [ 37] [6688990103569701=43011231970119200000] +08:22:37 [ 37] [ 12] [507901267138] +08:22:37 [ 39] [ 2] [14] +08:22:37 [ 41] [ 8] [0464UDPB] +08:22:37 [ 49] [ 3] [418] +08:22:37 ============================================================================ +08:22:37 Calculate Source COMM Id = 2 +08:22:37 ============================================================================ +08:22:37 + + +waiting on router queue for slot.... +08:22:46 ============================================================================ +08:22:46 Slot Id : <262> +08:22:46 Transaction Type : REQUEST +08:22:46 Received From : +08:22:46 ============================================================================ +08:22:46 FNo. Len. Field Value +08:22:46 ============================================================================ +08:22:46 [ 1] [ 4] [0800] +08:22:46 [ 7] [ 10] [0320153434] +08:22:46 [ 11] [ 6] [083434] +08:22:46 [ 37] [ 12] [57908083434] +08:22:46 [ 70] [ 3] [301] +08:22:46 ============================================================================ +08:22:46 + + +waiting on router queue for slot.... +08:22:46 Sending to : +08:22:46 ============================================================================ +08:22:46 ============================================================================ +08:22:46 Slot Id : <262> +08:22:46 Transaction Type : RESPONSE +08:22:46 Received From : +08:22:46 ============================================================================ +08:22:46 FNo. Len. Field Value +08:22:46 ============================================================================ +08:22:46 [ 1] [ 4] [0810] +08:22:46 [ 7] [ 10] [0320153434] +08:22:46 [ 11] [ 6] [083434] +08:22:46 [ 37] [ 12] [579080834340] +08:22:46 [ 39] [ 2] [00] +08:22:46 [ 70] [ 3] [810] +08:22:46 ============================================================================ +08:22:46 Calculate Source COMM Id = 6 +08:22:46 ============================================================================ +08:22:46 + + +waiting on router queue for slot.... +08:22:46 ============================================================================ +08:22:46 Slot Id : <311> +08:22:46 Transaction Type : REQUEST +08:22:46 Received From : +08:22:46 ============================================================================ +08:22:46 FNo. Len. Field Value +08:22:46 ============================================================================ +08:22:46 [ 1] [ 4] [0200] +08:22:46 [ 2] [ 16] [6213541000686322] +08:22:46 [ 3] [ 6] [011000] +08:22:46 [ 4] [ 12] [000050000000] +08:22:46 [ 7] [ 10] [0320082308] +08:22:46 [ 11] [ 6] [202024] +08:22:46 [ 12] [ 6] [080602] +08:22:46 [ 13] [ 4] [0320] +08:22:46 [ 14] [ 4] [4912] +08:22:46 [ 15] [ 4] [0320] +08:22:46 [ 18] [ 4] [6011] +08:22:46 [ 19] [ 3] [418] +08:22:46 [ 22] [ 3] [021] +08:22:46 [ 25] [ 2] [01] +08:22:46 [ 28] [ 9] [D00002000] +08:22:46 [ 32] [ 6] [198901] +08:22:46 [ 35] [ 32] [6213541000686322=491212018632178] +08:22:46 [ 37] [ 12] [507908202024] +08:22:46 [ 41] [ 8] [01529010] +08:22:46 [ 42] [ 15] [000000041529010] +08:22:46 [ 43] [ 40] [JDB ATM MECURE HOTEL VN ] +08:22:46 [ 49] [ 3] [418] +08:22:46 [ 52] [ 16] [0D3A6A9332F2EAD9] +08:22:46 ============================================================================ +08:22:46 + + +waiting on router queue for slot.... +08:22:46 Sending to : +08:22:46 ============================================================================ +08:22:46 Sending to : +08:22:46 ============================================================================ +08:22:46 ============================================================================ +08:22:46 Slot Id : <311> +08:22:46 Transaction Type : REQUEST +08:22:46 Received From : +08:22:46 ============================================================================ +08:22:46 FNo. Len. Field Value +08:22:46 ============================================================================ +08:22:46 [ 1] [ 4] [0200] +08:22:46 [ 2] [ 16] [6213541000686322] +08:22:46 [ 3] [ 6] [011000] +08:22:46 [ 4] [ 12] [000050000000] +08:22:46 [ 7] [ 10] [0320082308] +08:22:46 [ 11] [ 6] [202024] +08:22:46 [ 12] [ 6] [080602] +08:22:46 [ 13] [ 4] [0320] +08:22:46 [ 14] [ 4] [4912] +08:22:46 [ 15] [ 4] [0320] +08:22:46 [ 18] [ 4] [6011] +08:22:46 [ 19] [ 3] [418] +08:22:46 [ 22] [ 3] [021] +08:22:46 [ 25] [ 2] [01] +08:22:46 [ 28] [ 9] [D00002000] +08:22:46 [ 32] [ 6] [198901] +08:22:46 [ 35] [ 32] [6213541000686322=491212018632178] +08:22:46 [ 37] [ 12] [507908202024] +08:22:46 [ 41] [ 8] [01529010] +08:22:46 [ 42] [ 15] [000000041529010] +08:22:46 [ 43] [ 40] [JDB ATM MECURE HOTEL VN ] +08:22:46 [ 49] [ 3] [418] +08:22:46 [ 52] [ 16] [0D3A6A9332F2EAD9] +08:22:46 ============================================================================ +08:22:46 + + +waiting on router queue for slot.... +08:22:46 Sending to : +08:22:46 ============================================================================ +08:22:46 ============================================================================ +08:22:46 Slot Id : <311> +08:22:46 Transaction Type : REQUEST +08:22:46 Received From : +08:22:46 ============================================================================ +08:22:46 FNo. Len. Field Value +08:22:46 ============================================================================ +08:22:46 [ 1] [ 4] [0200] +08:22:46 [ 2] [ 16] [6213541000686322] +08:22:46 [ 3] [ 6] [011000] +08:22:46 [ 4] [ 12] [000050000000] +08:22:46 [ 7] [ 10] [0320082308] +08:22:46 [ 11] [ 6] [202024] +08:22:46 [ 12] [ 6] [080602] +08:22:46 [ 13] [ 4] [0320] +08:22:46 [ 14] [ 4] [4912] +08:22:46 [ 15] [ 4] [0320] +08:22:46 [ 18] [ 4] [6011] +08:22:46 [ 19] [ 3] [418] +08:22:46 [ 22] [ 3] [021] +08:22:46 [ 25] [ 2] [01] +08:22:46 [ 28] [ 9] [D00002000] +08:22:46 [ 32] [ 6] [198901] +08:22:46 [ 35] [ 32] [6213541000686322=491212018632178] +08:22:46 [ 37] [ 12] [507908202024] +08:22:46 [ 41] [ 8] [01529010] +08:22:46 [ 42] [ 15] [000000041529010] +08:22:46 [ 43] [ 40] [JDB ATM MECURE HOTEL VN ] +08:22:46 [ 49] [ 3] [418] +08:22:46 [ 52] [ 16] [395E3EE0A037D401] +08:22:46 ============================================================================ +08:22:46 + + +waiting on router queue for slot.... +08:22:46 Sending to : <0> +08:22:46 ============================================================================ +08:22:47 ============================================================================ +08:22:47 Slot Id : <311> +08:22:47 Transaction Type : RESPONSE +08:22:47 Received From : +08:22:47 ============================================================================ +08:22:47 FNo. Len. Field Value +08:22:47 ============================================================================ +08:22:47 [ 1] [ 4] [0210] +08:22:47 [ 2] [ 16] [6213541000686322] +08:22:47 [ 3] [ 6] [011000] +08:22:47 [ 4] [ 12] [000050000000] +08:22:47 [ 7] [ 10] [0320082308] +08:22:47 [ 11] [ 6] [202024] +08:22:47 [ 12] [ 6] [080602] +08:22:47 [ 13] [ 4] [0320] +08:22:47 [ 15] [ 4] [0320] +08:22:47 [ 18] [ 4] [6011] +08:22:47 [ 19] [ 3] [418] +08:22:47 [ 32] [ 6] [198901] +08:22:47 [ 35] [ 32] [6213541000686322=491212018632178] +08:22:47 [ 37] [ 12] [507908202024] +08:22:47 [ 38] [ 6] [203111] +08:22:47 [ 39] [ 2] [00] +08:22:47 [ 41] [ 8] [01529010] +08:22:47 [ 49] [ 3] [418] +08:22:47 [ 54] [ 40] [1001418C0001483462071002418C000148346207] +08:22:47 ============================================================================ +08:22:47 Sending to : +08:22:47 ============================================================================ +08:22:47 + + +waiting on router queue for slot.... +08:22:48 ============================================================================ +08:22:48 Slot Id : <316> +08:22:48 Transaction Type : REQUEST +08:22:48 Received From : +08:22:48 ============================================================================ +08:22:48 FNo. Len. Field Value +08:22:48 ============================================================================ +08:22:48 [ 1] [ 4] [0800] +08:22:48 [ 2] [ 5] [02531] +08:22:48 [ 3] [ 6] [579088] +08:22:48 [ 7] [ 10] [0320012248] +08:22:48 [ 11] [ 6] [806898] +08:22:48 [ 15] [ 10] [0320012248] +08:22:48 [ 37] [ 11] [57908806898] +08:22:48 [ 70] [ 3] [001] +08:22:48 ============================================================================ +08:22:48 + + +waiting on router queue for slot.... +08:22:48 ============================================================================ +08:22:48 Slot Id : <316> +08:22:48 Transaction Type : RESPONSE +08:22:48 Received From : +08:22:48 ============================================================================ +08:22:48 FNo. Len. Field Value +08:22:48 ============================================================================ +08:22:48 [ 1] [ 4] [0810] +08:22:48 [ 7] [ 10] [0320012248] +08:22:48 [ 11] [ 6] [806898] +08:22:48 [ 15] [ 4] [0320] +08:22:48 [ 37] [ 12] [57908806898] +08:22:48 [ 39] [ 2] [00] +08:22:48 [ 70] [ 3] [001] +08:22:48 ============================================================================ +08:22:48 Sending to : +08:22:48 ============================================================================ +08:22:48 + + +waiting on router queue for slot.... +08:22:49 ============================================================================ +08:22:49 Slot Id : <311> +08:22:49 Transaction Type : RESPONSE +08:22:49 Received From : +08:22:49 ============================================================================ +08:22:49 FNo. Len. Field Value +08:22:49 ============================================================================ +08:22:49 [ 1] [ 4] [0210] +08:22:49 [ 2] [ 16] [6213541000686322] +08:22:49 [ 3] [ 6] [011000] +08:22:49 [ 4] [ 12] [000050000000] +08:22:49 [ 7] [ 10] [0320082308] +08:22:49 [ 11] [ 6] [202024] +08:22:49 [ 12] [ 6] [080602] +08:22:49 [ 13] [ 4] [0320] +08:22:49 [ 15] [ 4] [0320] +08:22:49 [ 18] [ 4] [6011] +08:22:49 [ 19] [ 3] [418] +08:22:49 [ 32] [ 6] [198901] +08:22:49 [ 35] [ 32] [6213541000686322=491212018632178] +08:22:49 [ 37] [ 12] [507908202024] +08:22:49 [ 38] [ 6] [203111] +08:22:49 [ 39] [ 2] [00] +08:22:49 [ 41] [ 8] [01529010] +08:22:49 [ 49] [ 3] [418] +08:22:49 [ 54] [ 40] [1001418C0001483462071002418C000148346207] +08:22:49 ============================================================================ +08:22:49 Calculate Source COMM Id = 5 +08:22:49 ============================================================================ +08:22:49 + + +waiting on router queue for slot.... +08:22:52 ============================================================================ +08:22:52 Slot Id : <286> +08:22:52 Transaction Type : REQUEST +08:22:52 Received From : +08:22:52 ============================================================================ +08:22:52 FNo. Len. Field Value +08:22:52 ============================================================================ +08:22:52 [ 1] [ 4] [0800] +08:22:52 [ 7] [ 10] [0320012200] +08:22:52 [ 11] [ 6] [155389] +08:22:52 [ 70] [ 3] [301] +08:22:52 ============================================================================ +08:22:52 + + +waiting on router queue for slot.... +08:22:52 Sending to : +08:22:52 ============================================================================ +08:22:52 ============================================================================ +08:22:52 Slot Id : <286> +08:22:52 Transaction Type : RESPONSE +08:22:52 Received From : +08:22:52 ============================================================================ +08:22:52 FNo. Len. Field Value +08:22:52 ============================================================================ +08:22:52 [ 1] [ 4] [0810] +08:22:52 [ 7] [ 10] [0320012200] +08:22:52 [ 11] [ 6] [155389] +08:22:52 [ 39] [ 2] [00] +08:22:52 [ 70] [ 3] [301] +08:22:52 ============================================================================ +08:22:52 Calculate Source COMM Id = 2 +08:22:52 ============================================================================ +08:22:52 + + +waiting on router queue for slot.... +08:22:58 ============================================================================ +08:22:58 Slot Id : <312> +08:22:58 Transaction Type : REQUEST +08:22:58 Received From : +08:22:58 ============================================================================ +08:22:58 FNo. Len. Field Value +08:22:58 ============================================================================ +08:22:58 [ 1] [ 4] [0200] +08:22:58 [ 2] [ 16] [1808930600026058] +08:22:58 [ 3] [ 6] [010000] +08:22:58 [ 4] [ 12] [000100000000] +08:22:58 [ 7] [ 10] [0320082254] +08:22:58 [ 11] [ 6] [682851] +08:22:58 [ 12] [ 6] [082254] +08:22:58 [ 13] [ 4] [0320] +08:22:58 [ 15] [ 4] [0320] +08:22:58 [ 18] [ 4] [6011] +08:22:58 [ 22] [ 3] [900] +08:22:58 [ 25] [ 2] [02] +08:22:58 [ 28] [ 9] [D00002000] +08:22:58 [ 32] [ 6] [621354] +08:22:58 [ 35] [ 27] [1808930600026058=1803500163] +08:22:58 [ 37] [ 12] [507905271164] +08:22:58 [ 41] [ 8] [02002900] +08:22:58 [ 42] [ 15] [NATIVE ] +08:22:58 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:22:58 [ 49] [ 3] [418] +08:22:58 [ 52] [ 16] [0FBB204CB12C21CD] +08:22:58 ============================================================================ +08:22:58 + + +waiting on router queue for slot.... +08:22:58 Sending to : +08:22:58 ============================================================================ +08:22:58 Sending to : +08:22:58 ============================================================================ +08:22:58 ============================================================================ +08:22:58 Slot Id : <312> +08:22:58 Transaction Type : REQUEST +08:22:58 Received From : +08:22:58 ============================================================================ +08:22:58 FNo. Len. Field Value +08:22:58 ============================================================================ +08:22:58 [ 1] [ 4] [0200] +08:22:58 [ 2] [ 16] [1808930600026058] +08:22:58 [ 3] [ 6] [010000] +08:22:58 [ 4] [ 12] [000100000000] +08:22:58 [ 7] [ 10] [0320082254] +08:22:58 [ 11] [ 6] [682851] +08:22:58 [ 12] [ 6] [082254] +08:22:58 [ 13] [ 4] [0320] +08:22:58 [ 15] [ 4] [0320] +08:22:58 [ 18] [ 4] [6011] +08:22:58 [ 22] [ 3] [900] +08:22:58 [ 25] [ 2] [02] +08:22:58 [ 28] [ 9] [D00002000] +08:22:58 [ 32] [ 6] [621354] +08:22:58 [ 35] [ 27] [1808930600026058=1803500163] +08:22:58 [ 37] [ 12] [507905271164] +08:22:58 [ 41] [ 8] [02002900] +08:22:58 [ 42] [ 15] [NATIVE ] +08:22:58 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:22:58 [ 49] [ 3] [418] +08:22:58 [ 52] [ 16] [0FBB204CB12C21CD] +08:22:58 ============================================================================ +08:22:58 + + +waiting on router queue for slot.... +08:22:58 Sending to : +08:22:58 ============================================================================ +08:22:58 ============================================================================ +08:22:58 Slot Id : <312> +08:22:58 Transaction Type : REQUEST +08:22:58 Received From : +08:22:58 ============================================================================ +08:22:58 FNo. Len. Field Value +08:22:58 ============================================================================ +08:22:58 [ 1] [ 4] [0200] +08:22:58 [ 2] [ 16] [1808930600026058] +08:22:58 [ 3] [ 6] [010000] +08:22:58 [ 4] [ 12] [000100000000] +08:22:58 [ 7] [ 10] [0320082254] +08:22:58 [ 11] [ 6] [682851] +08:22:58 [ 12] [ 6] [082254] +08:22:58 [ 13] [ 4] [0320] +08:22:58 [ 15] [ 4] [0320] +08:22:58 [ 18] [ 4] [6011] +08:22:58 [ 22] [ 3] [900] +08:22:58 [ 25] [ 2] [02] +08:22:58 [ 28] [ 9] [D00002000] +08:22:58 [ 32] [ 6] [621354] +08:22:58 [ 35] [ 27] [1808930600026058=1803500163] +08:22:58 [ 37] [ 12] [507905271164] +08:22:58 [ 41] [ 8] [02002900] +08:22:58 [ 42] [ 15] [NATIVE ] +08:22:58 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:22:58 [ 49] [ 3] [418] +08:22:58 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:22:58 ============================================================================ +08:22:58 + + +waiting on router queue for slot.... +08:22:58 Sending to : <2> +08:22:58 ============================================================================ +08:23:01 ============================================================================ +08:23:01 Slot Id : <312> +08:23:01 Transaction Type : RESPONSE +08:23:01 Received From : +08:23:01 ============================================================================ +08:23:01 FNo. Len. Field Value +08:23:01 ============================================================================ +08:23:01 [ 1] [ 4] [0210] +08:23:01 [ 2] [ 16] [1808930600026058] +08:23:01 [ 3] [ 6] [010000] +08:23:01 [ 4] [ 12] [000100000000] +08:23:01 [ 6] [ 12] [000100000000] +08:23:01 [ 7] [ 10] [0320082254] +08:23:01 [ 11] [ 6] [682851] +08:23:01 [ 12] [ 6] [082254] +08:23:01 [ 13] [ 4] [0320] +08:23:01 [ 18] [ 4] [6011] +08:23:01 [ 19] [ 3] [418] +08:23:01 [ 22] [ 3] [021] +08:23:01 [ 32] [ 6] [621354] +08:23:01 [ 35] [ 27] [1808930600026058=1803500163] +08:23:01 [ 37] [ 12] [507905271164] +08:23:01 [ 38] [ 6] [682851] +08:23:01 [ 39] [ 2] [00] +08:23:01 [ 41] [ 8] [02002900] +08:23:01 [ 49] [ 3] [418] +08:23:01 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:23:01 [ 54] [ 20] [1001418C000033100366] +08:23:01 ============================================================================ +08:23:01 Sending to : +08:23:01 ============================================================================ +08:23:01 + + +waiting on router queue for slot.... +08:23:03 ============================================================================ +08:23:03 Slot Id : <312> +08:23:03 Transaction Type : RESPONSE +08:23:03 Received From : +08:23:03 ============================================================================ +08:23:03 FNo. Len. Field Value +08:23:03 ============================================================================ +08:23:03 [ 1] [ 4] [0210] +08:23:03 [ 2] [ 16] [1808930600026058] +08:23:03 [ 3] [ 6] [010000] +08:23:03 [ 4] [ 12] [000100000000] +08:23:03 [ 6] [ 12] [000100000000] +08:23:03 [ 7] [ 10] [0320082254] +08:23:03 [ 11] [ 6] [682851] +08:23:03 [ 12] [ 6] [082254] +08:23:03 [ 13] [ 4] [0320] +08:23:03 [ 18] [ 4] [6011] +08:23:03 [ 19] [ 3] [418] +08:23:03 [ 22] [ 3] [021] +08:23:03 [ 32] [ 6] [621354] +08:23:03 [ 35] [ 27] [1808930600026058=1803500163] +08:23:03 [ 37] [ 12] [507905271164] +08:23:03 [ 38] [ 6] [682851] +08:23:03 [ 39] [ 2] [00] +08:23:03 [ 41] [ 8] [02002900] +08:23:03 [ 49] [ 3] [418] +08:23:03 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:23:03 [ 54] [ 20] [1001418C000033100366] +08:23:03 ============================================================================ +08:23:03 Calculate Source COMM Id = 0 +08:23:03 ============================================================================ +08:23:03 + + +waiting on router queue for slot.... +08:23:06 ============================================================================ +08:23:06 Slot Id : <306> +08:23:06 Transaction Type : REQUEST +08:23:06 Received From : +08:23:06 ============================================================================ +08:23:06 FNo. Len. Field Value +08:23:06 ============================================================================ +08:23:06 [ 1] [ 4] [0200] +08:23:06 [ 2] [ 16] [6688990040156620] +08:23:06 [ 3] [ 6] [011000] +08:23:06 [ 4] [ 12] [000030000000] +08:23:06 [ 7] [ 10] [0320083054] +08:23:06 [ 11] [ 6] [107156] +08:23:06 [ 12] [ 6] [083054] +08:23:06 [ 13] [ 4] [0320] +08:23:06 [ 14] [ 4] [9805] +08:23:06 [ 15] [ 4] [0320] +08:23:06 [ 18] [ 4] [6011] +08:23:06 [ 22] [ 3] [900] +08:23:06 [ 25] [ 2] [02] +08:23:06 [ 28] [ 9] [D00002000] +08:23:06 [ 32] [ 6] [220699] +08:23:06 [ 35] [ 37] [6688990040156620=98051261668098000000] +08:23:06 [ 37] [ 12] [507900327789] +08:23:06 [ 41] [ 8] [01001800] +08:23:06 [ 42] [ 15] [APTRA ] +08:23:06 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:23:06 [ 49] [ 3] [418] +08:23:06 [ 52] [ 16] [4611FC2368FA1136] +08:23:06 ============================================================================ +08:23:06 + + +waiting on router queue for slot.... +08:23:06 Sending to : +08:23:06 ============================================================================ +08:23:06 Sending to : +08:23:06 ============================================================================ +08:23:06 ============================================================================ +08:23:06 Slot Id : <306> +08:23:06 Transaction Type : REQUEST +08:23:06 Received From : +08:23:06 ============================================================================ +08:23:06 FNo. Len. Field Value +08:23:06 ============================================================================ +08:23:06 [ 1] [ 4] [0200] +08:23:06 [ 2] [ 16] [6688990040156620] +08:23:06 [ 3] [ 6] [011000] +08:23:06 [ 4] [ 12] [000030000000] +08:23:06 [ 7] [ 10] [0320083054] +08:23:06 [ 11] [ 6] [107156] +08:23:06 [ 12] [ 6] [083054] +08:23:06 [ 13] [ 4] [0320] +08:23:06 [ 14] [ 4] [9805] +08:23:06 [ 15] [ 4] [0320] +08:23:06 [ 18] [ 4] [6011] +08:23:06 [ 22] [ 3] [900] +08:23:06 [ 25] [ 2] [02] +08:23:06 [ 28] [ 9] [D00002000] +08:23:06 [ 32] [ 6] [220699] +08:23:06 [ 35] [ 37] [6688990040156620=98051261668098000000] +08:23:06 [ 37] [ 12] [507900327789] +08:23:06 [ 41] [ 8] [01001800] +08:23:06 [ 42] [ 15] [APTRA ] +08:23:06 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:23:06 [ 49] [ 3] [418] +08:23:06 [ 52] [ 16] [4611FC2368FA1136] +08:23:06 ============================================================================ +08:23:06 + + +waiting on router queue for slot.... +08:23:06 Sending to : +08:23:06 ============================================================================ +08:23:06 ============================================================================ +08:23:06 Slot Id : <306> +08:23:06 Transaction Type : REQUEST +08:23:06 Received From : +08:23:06 ============================================================================ +08:23:06 FNo. Len. Field Value +08:23:06 ============================================================================ +08:23:06 [ 1] [ 4] [0200] +08:23:06 [ 2] [ 16] [6688990040156620] +08:23:06 [ 3] [ 6] [011000] +08:23:06 [ 4] [ 12] [000030000000] +08:23:06 [ 7] [ 10] [0320083054] +08:23:06 [ 11] [ 6] [107156] +08:23:06 [ 12] [ 6] [083054] +08:23:06 [ 13] [ 4] [0320] +08:23:06 [ 14] [ 4] [9805] +08:23:06 [ 15] [ 4] [0320] +08:23:06 [ 18] [ 4] [6011] +08:23:06 [ 22] [ 3] [900] +08:23:06 [ 25] [ 2] [02] +08:23:06 [ 28] [ 9] [D00002000] +08:23:06 [ 32] [ 6] [220699] +08:23:06 [ 35] [ 37] [6688990040156620=98051261668098000000] +08:23:06 [ 37] [ 12] [507900327789] +08:23:06 [ 41] [ 8] [01001800] +08:23:06 [ 42] [ 15] [APTRA ] +08:23:06 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:23:06 [ 49] [ 3] [418] +08:23:06 [ 52] [ 16] [0B6FD495C01750CE] +08:23:06 ============================================================================ +08:23:06 + + +waiting on router queue for slot.... +08:23:06 Sending to : <0> +08:23:06 ============================================================================ +08:23:06 ============================================================================ +08:23:06 Slot Id : <306> +08:23:06 Transaction Type : RESPONSE +08:23:06 Received From : +08:23:06 ============================================================================ +08:23:06 FNo. Len. Field Value +08:23:06 ============================================================================ +08:23:06 [ 1] [ 4] [0210] +08:23:06 [ 2] [ 16] [6688990040156620] +08:23:06 [ 3] [ 6] [011000] +08:23:06 [ 4] [ 12] [000030000000] +08:23:06 [ 7] [ 10] [0320083054] +08:23:06 [ 11] [ 6] [107156] +08:23:06 [ 12] [ 6] [083054] +08:23:06 [ 13] [ 4] [0320] +08:23:06 [ 15] [ 4] [0320] +08:23:06 [ 18] [ 4] [6011] +08:23:06 [ 22] [ 3] [900] +08:23:06 [ 32] [ 6] [220699] +08:23:06 [ 35] [ 37] [6688990040156620=98051261668098000000] +08:23:06 [ 37] [ 12] [507900327789] +08:23:06 [ 39] [ 2] [14] +08:23:06 [ 41] [ 8] [01001800] +08:23:06 [ 49] [ 3] [418] +08:23:06 ============================================================================ +08:23:06 Sending to : +08:23:06 ============================================================================ +08:23:06 + + +waiting on router queue for slot.... +08:23:08 ============================================================================ +08:23:08 Slot Id : <306> +08:23:08 Transaction Type : RESPONSE +08:23:08 Received From : +08:23:08 ============================================================================ +08:23:08 FNo. Len. Field Value +08:23:08 ============================================================================ +08:23:08 [ 1] [ 4] [0210] +08:23:08 [ 2] [ 16] [6688990040156620] +08:23:08 [ 3] [ 6] [011000] +08:23:08 [ 4] [ 12] [000030000000] +08:23:08 [ 7] [ 10] [0320083054] +08:23:08 [ 11] [ 6] [107156] +08:23:08 [ 12] [ 6] [083054] +08:23:08 [ 13] [ 4] [0320] +08:23:08 [ 15] [ 4] [0320] +08:23:08 [ 18] [ 4] [6011] +08:23:08 [ 22] [ 3] [900] +08:23:08 [ 32] [ 6] [220699] +08:23:08 [ 35] [ 37] [6688990040156620=98051261668098000000] +08:23:08 [ 37] [ 12] [507900327789] +08:23:08 [ 39] [ 2] [14] +08:23:08 [ 41] [ 8] [01001800] +08:23:08 [ 49] [ 3] [418] +08:23:08 ============================================================================ +08:23:08 Calculate Source COMM Id = 1 +08:23:08 ============================================================================ +08:23:08 + + +waiting on router queue for slot.... +08:23:12 ============================================================================ +08:23:12 Slot Id : <307> +08:23:12 Transaction Type : REQUEST +08:23:12 Received From : +08:23:12 ============================================================================ +08:23:12 FNo. Len. Field Value +08:23:12 ============================================================================ +08:23:12 [ 1] [ 4] [0800] +08:23:12 [ 7] [ 10] [0320012221] +08:23:12 [ 11] [ 6] [155390] +08:23:12 [ 70] [ 3] [301] +08:23:12 ============================================================================ +08:23:12 + + +waiting on router queue for slot.... +08:23:12 Sending to : +08:23:12 ============================================================================ +08:23:12 ============================================================================ +08:23:12 Slot Id : <307> +08:23:12 Transaction Type : RESPONSE +08:23:12 Received From : +08:23:12 ============================================================================ +08:23:12 FNo. Len. Field Value +08:23:12 ============================================================================ +08:23:12 [ 1] [ 4] [0810] +08:23:12 [ 7] [ 10] [0320012221] +08:23:12 [ 11] [ 6] [155390] +08:23:12 [ 39] [ 2] [00] +08:23:12 [ 70] [ 3] [301] +08:23:12 ============================================================================ +08:23:12 Calculate Source COMM Id = 2 +08:23:12 ============================================================================ +08:23:12 + + +waiting on router queue for slot.... +08:23:23 ============================================================================ +08:23:23 Slot Id : <317> +08:23:23 Transaction Type : REQUEST +08:23:23 Received From : +08:23:23 ============================================================================ +08:23:23 FNo. Len. Field Value +08:23:23 ============================================================================ +08:23:23 [ 1] [ 4] [0800] +08:23:23 [ 7] [ 10] [0320012232] +08:23:23 [ 11] [ 6] [155391] +08:23:23 [ 70] [ 3] [301] +08:23:23 ============================================================================ +08:23:23 + + +waiting on router queue for slot.... +08:23:23 Sending to : +08:23:23 ============================================================================ +08:23:23 ============================================================================ +08:23:23 Slot Id : <317> +08:23:23 Transaction Type : RESPONSE +08:23:23 Received From : +08:23:23 ============================================================================ +08:23:23 FNo. Len. Field Value +08:23:23 ============================================================================ +08:23:23 [ 1] [ 4] [0810] +08:23:23 [ 7] [ 10] [0320012232] +08:23:23 [ 11] [ 6] [155391] +08:23:23 [ 39] [ 2] [00] +08:23:23 [ 70] [ 3] [301] +08:23:23 ============================================================================ +08:23:23 Calculate Source COMM Id = 2 +08:23:23 ============================================================================ +08:23:23 + + +waiting on router queue for slot.... +08:23:26 ============================================================================ +08:23:26 Slot Id : <310> +08:23:26 Transaction Type : REQUEST +08:23:26 Received From : +08:23:26 ============================================================================ +08:23:26 FNo. Len. Field Value +08:23:26 ============================================================================ +08:23:26 [ 1] [ 4] [0200] +08:23:26 [ 2] [ 16] [6213541000686322] +08:23:26 [ 3] [ 6] [301000] +08:23:26 [ 4] [ 12] [000000000000] +08:23:26 [ 7] [ 10] [0320082348] +08:23:26 [ 11] [ 6] [202032] +08:23:26 [ 12] [ 6] [080642] +08:23:26 [ 13] [ 4] [0320] +08:23:26 [ 14] [ 4] [4912] +08:23:26 [ 15] [ 4] [0320] +08:23:26 [ 18] [ 4] [6011] +08:23:26 [ 19] [ 3] [418] +08:23:26 [ 22] [ 3] [021] +08:23:26 [ 25] [ 2] [01] +08:23:26 [ 28] [ 9] [D00000000] +08:23:26 [ 32] [ 6] [198901] +08:23:26 [ 35] [ 32] [6213541000686322=491212018632178] +08:23:26 [ 37] [ 12] [507908202032] +08:23:26 [ 41] [ 8] [01529010] +08:23:26 [ 42] [ 15] [000000041529010] +08:23:26 [ 43] [ 40] [JDB ATM MECURE HOTEL VN ] +08:23:26 [ 49] [ 3] [418] +08:23:26 [ 52] [ 16] [0D3A6A9332F2EAD9] +08:23:26 ============================================================================ +08:23:26 + + +waiting on router queue for slot.... +08:23:26 Sending to : +08:23:26 ============================================================================ +08:23:26 Sending to : +08:23:26 ============================================================================ +08:23:26 ============================================================================ +08:23:26 Slot Id : <310> +08:23:26 Transaction Type : REQUEST +08:23:26 Received From : +08:23:26 ============================================================================ +08:23:26 FNo. Len. Field Value +08:23:26 ============================================================================ +08:23:26 [ 1] [ 4] [0200] +08:23:26 [ 2] [ 16] [6213541000686322] +08:23:26 [ 3] [ 6] [301000] +08:23:26 [ 4] [ 12] [000000000000] +08:23:26 [ 7] [ 10] [0320082348] +08:23:26 [ 11] [ 6] [202032] +08:23:26 [ 12] [ 6] [080642] +08:23:26 [ 13] [ 4] [0320] +08:23:26 [ 14] [ 4] [4912] +08:23:26 [ 15] [ 4] [0320] +08:23:26 [ 18] [ 4] [6011] +08:23:26 [ 19] [ 3] [418] +08:23:26 [ 22] [ 3] [021] +08:23:26 [ 25] [ 2] [01] +08:23:26 [ 28] [ 9] [D00000000] +08:23:26 [ 32] [ 6] [198901] +08:23:26 [ 35] [ 32] [6213541000686322=491212018632178] +08:23:26 [ 37] [ 12] [507908202032] +08:23:26 [ 41] [ 8] [01529010] +08:23:26 [ 42] [ 15] [000000041529010] +08:23:26 [ 43] [ 40] [JDB ATM MECURE HOTEL VN ] +08:23:26 [ 49] [ 3] [418] +08:23:26 [ 52] [ 16] [0D3A6A9332F2EAD9] +08:23:26 ============================================================================ +08:23:26 + + +waiting on router queue for slot.... +08:23:26 Sending to : +08:23:26 ============================================================================ +08:23:26 ============================================================================ +08:23:26 Slot Id : <310> +08:23:26 Transaction Type : REQUEST +08:23:26 Received From : +08:23:26 ============================================================================ +08:23:26 FNo. Len. Field Value +08:23:26 ============================================================================ +08:23:26 [ 1] [ 4] [0200] +08:23:26 [ 2] [ 16] [6213541000686322] +08:23:26 [ 3] [ 6] [301000] +08:23:26 [ 4] [ 12] [000000000000] +08:23:26 [ 7] [ 10] [0320082348] +08:23:26 [ 11] [ 6] [202032] +08:23:26 [ 12] [ 6] [080642] +08:23:26 [ 13] [ 4] [0320] +08:23:26 [ 14] [ 4] [4912] +08:23:26 [ 15] [ 4] [0320] +08:23:26 [ 18] [ 4] [6011] +08:23:26 [ 19] [ 3] [418] +08:23:26 [ 22] [ 3] [021] +08:23:26 [ 25] [ 2] [01] +08:23:26 [ 28] [ 9] [D00000000] +08:23:26 [ 32] [ 6] [198901] +08:23:26 [ 35] [ 32] [6213541000686322=491212018632178] +08:23:26 [ 37] [ 12] [507908202032] +08:23:26 [ 41] [ 8] [01529010] +08:23:26 [ 42] [ 15] [000000041529010] +08:23:26 [ 43] [ 40] [JDB ATM MECURE HOTEL VN ] +08:23:26 [ 49] [ 3] [418] +08:23:26 [ 52] [ 16] [395E3EE0A037D401] +08:23:26 ============================================================================ +08:23:26 + + +waiting on router queue for slot.... +08:23:26 Sending to : <0> +08:23:26 ============================================================================ +08:23:27 ============================================================================ +08:23:27 Slot Id : <310> +08:23:27 Transaction Type : RESPONSE +08:23:27 Received From : +08:23:27 ============================================================================ +08:23:27 FNo. Len. Field Value +08:23:27 ============================================================================ +08:23:27 [ 1] [ 4] [0210] +08:23:27 [ 2] [ 16] [6213541000686322] +08:23:27 [ 3] [ 6] [301000] +08:23:27 [ 4] [ 12] [000000000000] +08:23:27 [ 7] [ 10] [0320082348] +08:23:27 [ 11] [ 6] [202032] +08:23:27 [ 12] [ 6] [080642] +08:23:27 [ 13] [ 4] [0320] +08:23:27 [ 15] [ 4] [0320] +08:23:27 [ 18] [ 4] [6011] +08:23:27 [ 19] [ 3] [418] +08:23:27 [ 32] [ 6] [198901] +08:23:27 [ 35] [ 32] [6213541000686322=491212018632178] +08:23:27 [ 37] [ 12] [507908202032] +08:23:27 [ 38] [ 6] [201381] +08:23:27 [ 39] [ 2] [00] +08:23:27 [ 41] [ 8] [01529010] +08:23:27 [ 49] [ 3] [418] +08:23:27 [ 54] [ 40] [1001418C0001483462071002418C000148346207] +08:23:27 ============================================================================ +08:23:27 Sending to : +08:23:27 ============================================================================ +08:23:27 + + +waiting on router queue for slot.... +08:23:28 ============================================================================ +08:23:28 Slot Id : <310> +08:23:28 Transaction Type : RESPONSE +08:23:28 Received From : +08:23:28 ============================================================================ +08:23:28 FNo. Len. Field Value +08:23:28 ============================================================================ +08:23:28 [ 1] [ 4] [0210] +08:23:28 [ 2] [ 16] [6213541000686322] +08:23:28 [ 3] [ 6] [301000] +08:23:28 [ 4] [ 12] [000000000000] +08:23:28 [ 7] [ 10] [0320082348] +08:23:28 [ 11] [ 6] [202032] +08:23:28 [ 12] [ 6] [080642] +08:23:28 [ 13] [ 4] [0320] +08:23:28 [ 15] [ 4] [0320] +08:23:28 [ 18] [ 4] [6011] +08:23:28 [ 19] [ 3] [418] +08:23:28 [ 32] [ 6] [198901] +08:23:28 [ 35] [ 32] [6213541000686322=491212018632178] +08:23:28 [ 37] [ 12] [507908202032] +08:23:28 [ 38] [ 6] [201381] +08:23:28 [ 39] [ 2] [00] +08:23:28 [ 41] [ 8] [01529010] +08:23:28 [ 49] [ 3] [418] +08:23:28 [ 54] [ 40] [1001418C0001483462071002418C000148346207] +08:23:28 ============================================================================ +08:23:28 Calculate Source COMM Id = 5 +08:23:28 ============================================================================ +08:23:28 + + +waiting on router queue for slot.... +08:23:34 ============================================================================ +08:23:34 Slot Id : <318> +08:23:34 Transaction Type : REQUEST +08:23:34 Received From : +08:23:34 ============================================================================ +08:23:34 FNo. Len. Field Value +08:23:34 ============================================================================ +08:23:34 [ 1] [ 4] [0800] +08:23:34 [ 7] [ 10] [0320012242] +08:23:34 [ 11] [ 6] [155392] +08:23:34 [ 70] [ 3] [301] +08:23:34 ============================================================================ +08:23:34 + + +waiting on router queue for slot.... +08:23:34 Sending to : +08:23:34 ============================================================================ +08:23:34 ============================================================================ +08:23:34 Slot Id : <318> +08:23:34 Transaction Type : RESPONSE +08:23:34 Received From : +08:23:34 ============================================================================ +08:23:34 FNo. Len. Field Value +08:23:34 ============================================================================ +08:23:34 [ 1] [ 4] [0810] +08:23:34 [ 7] [ 10] [0320012242] +08:23:34 [ 11] [ 6] [155392] +08:23:34 [ 39] [ 2] [00] +08:23:34 [ 70] [ 3] [301] +08:23:34 ============================================================================ +08:23:34 Calculate Source COMM Id = 2 +08:23:34 ============================================================================ +08:23:34 + + +waiting on router queue for slot.... +08:23:45 ============================================================================ +08:23:45 Slot Id : <315> +08:23:45 Transaction Type : REQUEST +08:23:45 Received From : +08:23:45 ============================================================================ +08:23:45 FNo. Len. Field Value +08:23:45 ============================================================================ +08:23:45 [ 1] [ 4] [0800] +08:23:45 [ 7] [ 10] [0320012253] +08:23:45 [ 11] [ 6] [155393] +08:23:45 [ 70] [ 3] [301] +08:23:45 ============================================================================ +08:23:45 + + +waiting on router queue for slot.... +08:23:45 Sending to : +08:23:45 ============================================================================ +08:23:45 ============================================================================ +08:23:45 Slot Id : <315> +08:23:45 Transaction Type : RESPONSE +08:23:45 Received From : +08:23:45 ============================================================================ +08:23:45 FNo. Len. Field Value +08:23:45 ============================================================================ +08:23:45 [ 1] [ 4] [0810] +08:23:45 [ 7] [ 10] [0320012253] +08:23:45 [ 11] [ 6] [155393] +08:23:45 [ 39] [ 2] [00] +08:23:45 [ 70] [ 3] [301] +08:23:45 ============================================================================ +08:23:45 Calculate Source COMM Id = 2 +08:23:45 ============================================================================ +08:23:45 + + +waiting on router queue for slot.... +08:23:50 ============================================================================ +08:23:50 Slot Id : <289> +08:23:50 Transaction Type : REQUEST +08:23:50 Received From : +08:23:50 ============================================================================ +08:23:50 FNo. Len. Field Value +08:23:50 ============================================================================ +08:23:50 [ 1] [ 4] [0800] +08:23:50 [ 2] [ 5] [02531] +08:23:50 [ 3] [ 6] [579088] +08:23:50 [ 7] [ 10] [0320012350] +08:23:50 [ 11] [ 6] [806899] +08:23:50 [ 15] [ 10] [0320012350] +08:23:50 [ 37] [ 11] [57908806899] +08:23:50 [ 70] [ 3] [001] +08:23:50 ============================================================================ +08:23:50 + + +waiting on router queue for slot.... +08:23:50 ============================================================================ +08:23:50 Slot Id : <289> +08:23:50 Transaction Type : RESPONSE +08:23:50 Received From : +08:23:50 ============================================================================ +08:23:50 FNo. Len. Field Value +08:23:50 ============================================================================ +08:23:50 [ 1] [ 4] [0810] +08:23:50 [ 7] [ 10] [0320012350] +08:23:50 [ 11] [ 6] [806899] +08:23:50 [ 15] [ 4] [0320] +08:23:50 [ 37] [ 12] [57908806899] +08:23:50 [ 39] [ 2] [00] +08:23:50 [ 70] [ 3] [001] +08:23:50 ============================================================================ +08:23:50 Sending to : +08:23:50 ============================================================================ +08:23:50 + + +waiting on router queue for slot.... +08:23:51 ============================================================================ +08:23:51 Slot Id : <322> +08:23:51 Transaction Type : REQUEST +08:23:51 Received From : +08:23:51 ============================================================================ +08:23:51 FNo. Len. Field Value +08:23:51 ============================================================================ +08:23:51 [ 1] [ 4] [0800] +08:23:51 [ 7] [ 10] [0320153539] +08:23:51 [ 11] [ 6] [083539] +08:23:51 [ 37] [ 12] [57908083539] +08:23:51 [ 70] [ 3] [301] +08:23:51 ============================================================================ +08:23:51 + + +waiting on router queue for slot.... +08:23:51 Sending to : +08:23:51 ============================================================================ +08:23:51 ============================================================================ +08:23:51 Slot Id : <322> +08:23:51 Transaction Type : RESPONSE +08:23:51 Received From : +08:23:51 ============================================================================ +08:23:51 FNo. Len. Field Value +08:23:51 ============================================================================ +08:23:51 [ 1] [ 4] [0810] +08:23:51 [ 7] [ 10] [0320153539] +08:23:51 [ 11] [ 6] [083539] +08:23:51 [ 37] [ 12] [579080835390] +08:23:51 [ 39] [ 2] [00] +08:23:51 [ 70] [ 3] [810] +08:23:51 ============================================================================ +08:23:51 Calculate Source COMM Id = 6 +08:23:51 ============================================================================ +08:23:51 + + +waiting on router queue for slot.... +08:23:51 ============================================================================ +08:23:51 Slot Id : <304> +08:23:51 Transaction Type : REQUEST +08:23:51 Received From : +08:23:51 ============================================================================ +08:23:51 FNo. Len. Field Value +08:23:51 ============================================================================ +08:23:51 [ 1] [ 4] [0200] +08:23:51 [ 2] [ 16] [6213545000585863] +08:23:51 [ 3] [ 6] [301000] +08:23:51 [ 4] [ 12] [000000000000] +08:23:51 [ 7] [ 10] [0320082142] +08:23:51 [ 11] [ 6] [932679] +08:23:51 [ 12] [ 6] [082142] +08:23:51 [ 13] [ 4] [0320] +08:23:51 [ 15] [ 4] [0320] +08:23:51 [ 18] [ 4] [6011] +08:23:51 [ 19] [ 3] [418] +08:23:51 [ 22] [ 3] [021] +08:23:51 [ 25] [ 2] [01] +08:23:51 [ 28] [ 9] [D00000000] +08:23:51 [ 32] [ 6] [668899] +08:23:51 [ 35] [ 32] [6213545000585863=491212018586418] +08:23:51 [ 37] [ 12] [507900234060] +08:23:51 [ 41] [ 8] [03010001] +08:23:51 [ 42] [ 15] [APT ] +08:23:51 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +08:23:51 [ 49] [ 3] [418] +08:23:51 [ 52] [ 16] [75E6CC04D22BE78B] +08:23:51 ============================================================================ +08:23:51 + + +waiting on router queue for slot.... +08:23:51 Sending to : +08:23:51 ============================================================================ +08:23:51 Sending to : +08:23:51 ============================================================================ +08:23:51 ============================================================================ +08:23:51 Slot Id : <304> +08:23:51 Transaction Type : REQUEST +08:23:51 Received From : +08:23:51 ============================================================================ +08:23:51 FNo. Len. Field Value +08:23:51 ============================================================================ +08:23:51 [ 1] [ 4] [0200] +08:23:51 [ 2] [ 16] [6213545000585863] +08:23:51 [ 3] [ 6] [301000] +08:23:51 [ 4] [ 12] [000000000000] +08:23:51 [ 7] [ 10] [0320082142] +08:23:51 [ 11] [ 6] [932679] +08:23:51 [ 12] [ 6] [082142] +08:23:51 [ 13] [ 4] [0320] +08:23:51 [ 15] [ 4] [0320] +08:23:51 [ 18] [ 4] [6011] +08:23:51 [ 19] [ 3] [418] +08:23:51 [ 22] [ 3] [021] +08:23:51 [ 25] [ 2] [01] +08:23:51 [ 28] [ 9] [D00000000] +08:23:51 [ 32] [ 6] [668899] +08:23:51 [ 35] [ 32] [6213545000585863=491212018586418] +08:23:51 [ 37] [ 12] [507900234060] +08:23:51 [ 41] [ 8] [03010001] +08:23:51 [ 42] [ 15] [APT ] +08:23:51 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +08:23:51 [ 49] [ 3] [418] +08:23:51 [ 52] [ 16] [75E6CC04D22BE78B] +08:23:51 ============================================================================ +08:23:51 + + +waiting on router queue for slot.... +08:23:51 Sending to : +08:23:51 ============================================================================ +08:23:51 ============================================================================ +08:23:51 Slot Id : <304> +08:23:51 Transaction Type : REQUEST +08:23:51 Received From : +08:23:51 ============================================================================ +08:23:51 FNo. Len. Field Value +08:23:51 ============================================================================ +08:23:51 [ 1] [ 4] [0200] +08:23:51 [ 2] [ 16] [6213545000585863] +08:23:51 [ 3] [ 6] [301000] +08:23:51 [ 4] [ 12] [000000000000] +08:23:51 [ 7] [ 10] [0320082142] +08:23:51 [ 11] [ 6] [932679] +08:23:51 [ 12] [ 6] [082142] +08:23:51 [ 13] [ 4] [0320] +08:23:51 [ 15] [ 4] [0320] +08:23:51 [ 18] [ 4] [6011] +08:23:51 [ 19] [ 3] [418] +08:23:51 [ 22] [ 3] [021] +08:23:51 [ 25] [ 2] [01] +08:23:51 [ 28] [ 9] [D00000000] +08:23:51 [ 32] [ 6] [668899] +08:23:51 [ 35] [ 32] [6213545000585863=491212018586418] +08:23:51 [ 37] [ 12] [507900234060] +08:23:51 [ 41] [ 8] [03010001] +08:23:51 [ 42] [ 15] [APT ] +08:23:51 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +08:23:51 [ 49] [ 3] [418] +08:23:51 [ 52] [ 16] [B59039B12065ED46] +08:23:51 ============================================================================ +08:23:51 + + +waiting on router queue for slot.... +08:23:51 Sending to : <0> +08:23:51 ============================================================================ +08:23:52 ============================================================================ +08:23:52 Slot Id : <304> +08:23:52 Transaction Type : RESPONSE +08:23:52 Received From : +08:23:52 ============================================================================ +08:23:52 FNo. Len. Field Value +08:23:52 ============================================================================ +08:23:52 [ 1] [ 4] [0210] +08:23:52 [ 2] [ 16] [6213545000585863] +08:23:52 [ 3] [ 6] [301000] +08:23:52 [ 4] [ 12] [000000000000] +08:23:52 [ 7] [ 10] [0320082142] +08:23:52 [ 11] [ 6] [932679] +08:23:52 [ 12] [ 6] [082142] +08:23:52 [ 13] [ 4] [0320] +08:23:52 [ 15] [ 4] [0320] +08:23:52 [ 18] [ 4] [6011] +08:23:52 [ 19] [ 3] [418] +08:23:52 [ 32] [ 6] [668899] +08:23:52 [ 35] [ 32] [6213545000585863=491212018586418] +08:23:52 [ 37] [ 12] [507900234060] +08:23:52 [ 38] [ 6] [980280] +08:23:52 [ 39] [ 2] [00] +08:23:52 [ 41] [ 8] [03010001] +08:23:52 [ 49] [ 3] [418] +08:23:52 [ 54] [ 40] [1001418C0002050209331002418C000205020933] +08:23:52 ============================================================================ +08:23:52 Sending to : +08:23:52 ============================================================================ +08:23:52 + + +waiting on router queue for slot.... +08:23:53 ============================================================================ +08:23:53 Slot Id : <304> +08:23:53 Transaction Type : RESPONSE +08:23:53 Received From : +08:23:53 ============================================================================ +08:23:53 FNo. Len. Field Value +08:23:53 ============================================================================ +08:23:53 [ 1] [ 4] [0210] +08:23:53 [ 2] [ 16] [6213545000585863] +08:23:53 [ 3] [ 6] [301000] +08:23:53 [ 4] [ 12] [000000000000] +08:23:53 [ 7] [ 10] [0320082142] +08:23:53 [ 11] [ 6] [932679] +08:23:53 [ 12] [ 6] [082142] +08:23:53 [ 13] [ 4] [0320] +08:23:53 [ 15] [ 4] [0320] +08:23:53 [ 18] [ 4] [6011] +08:23:53 [ 19] [ 3] [418] +08:23:53 [ 32] [ 6] [668899] +08:23:53 [ 35] [ 32] [6213545000585863=491212018586418] +08:23:53 [ 37] [ 12] [507900234060] +08:23:53 [ 38] [ 6] [980280] +08:23:53 [ 39] [ 2] [00] +08:23:53 [ 41] [ 8] [03010001] +08:23:53 [ 49] [ 3] [418] +08:23:53 [ 54] [ 40] [1001418C0002050209331002418C000205020933] +08:23:53 ============================================================================ +08:23:53 Calculate Source COMM Id = 4 +08:23:53 ============================================================================ +08:23:53 + + +waiting on router queue for slot.... +08:23:56 ============================================================================ +08:23:56 Slot Id : <285> +08:23:56 Transaction Type : REQUEST +08:23:56 Received From : +08:23:56 ============================================================================ +08:23:56 FNo. Len. Field Value +08:23:56 ============================================================================ +08:23:56 [ 1] [ 4] [0200] +08:23:56 [ 2] [ 16] [1808930600026058] +08:23:56 [ 3] [ 6] [010000] +08:23:56 [ 4] [ 12] [000040000000] +08:23:56 [ 7] [ 10] [0320082352] +08:23:56 [ 11] [ 6] [683125] +08:23:56 [ 12] [ 6] [082352] +08:23:56 [ 13] [ 4] [0320] +08:23:56 [ 15] [ 4] [0320] +08:23:56 [ 18] [ 4] [6011] +08:23:56 [ 22] [ 3] [900] +08:23:56 [ 25] [ 2] [02] +08:23:56 [ 28] [ 9] [D00002000] +08:23:56 [ 32] [ 6] [621354] +08:23:56 [ 35] [ 27] [1808930600026058=1803500163] +08:23:56 [ 37] [ 12] [507905271166] +08:23:56 [ 41] [ 8] [02002900] +08:23:56 [ 42] [ 15] [NATIVE ] +08:23:56 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:23:56 [ 49] [ 3] [418] +08:23:56 [ 52] [ 16] [0FBB204CB12C21CD] +08:23:56 ============================================================================ +08:23:56 + + +waiting on router queue for slot.... +08:23:56 Sending to : +08:23:56 ============================================================================ +08:23:56 Sending to : +08:23:56 ============================================================================ +08:23:57 ============================================================================ +08:23:57 Slot Id : <285> +08:23:57 Transaction Type : REQUEST +08:23:57 Received From : +08:23:57 ============================================================================ +08:23:57 FNo. Len. Field Value +08:23:57 ============================================================================ +08:23:57 [ 1] [ 4] [0200] +08:23:57 [ 2] [ 16] [1808930600026058] +08:23:57 [ 3] [ 6] [010000] +08:23:57 [ 4] [ 12] [000040000000] +08:23:57 [ 7] [ 10] [0320082352] +08:23:57 [ 11] [ 6] [683125] +08:23:57 [ 12] [ 6] [082352] +08:23:57 [ 13] [ 4] [0320] +08:23:57 [ 15] [ 4] [0320] +08:23:57 [ 18] [ 4] [6011] +08:23:57 [ 22] [ 3] [900] +08:23:57 [ 25] [ 2] [02] +08:23:57 [ 28] [ 9] [D00002000] +08:23:57 [ 32] [ 6] [621354] +08:23:57 [ 35] [ 27] [1808930600026058=1803500163] +08:23:57 [ 37] [ 12] [507905271166] +08:23:57 [ 41] [ 8] [02002900] +08:23:57 [ 42] [ 15] [NATIVE ] +08:23:57 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:23:57 [ 49] [ 3] [418] +08:23:57 [ 52] [ 16] [0FBB204CB12C21CD] +08:23:57 ============================================================================ +08:23:57 + + +waiting on router queue for slot.... +08:23:57 Sending to : +08:23:57 ============================================================================ +08:23:57 ============================================================================ +08:23:57 Slot Id : <285> +08:23:57 Transaction Type : REQUEST +08:23:57 Received From : +08:23:57 ============================================================================ +08:23:57 FNo. Len. Field Value +08:23:57 ============================================================================ +08:23:57 [ 1] [ 4] [0200] +08:23:57 [ 2] [ 16] [1808930600026058] +08:23:57 [ 3] [ 6] [010000] +08:23:57 [ 4] [ 12] [000040000000] +08:23:57 [ 7] [ 10] [0320082352] +08:23:57 [ 11] [ 6] [683125] +08:23:57 [ 12] [ 6] [082352] +08:23:57 [ 13] [ 4] [0320] +08:23:57 [ 15] [ 4] [0320] +08:23:57 [ 18] [ 4] [6011] +08:23:57 [ 22] [ 3] [900] +08:23:57 [ 25] [ 2] [02] +08:23:57 [ 28] [ 9] [D00002000] +08:23:57 [ 32] [ 6] [621354] +08:23:57 [ 35] [ 27] [1808930600026058=1803500163] +08:23:57 [ 37] [ 12] [507905271166] +08:23:57 [ 41] [ 8] [02002900] +08:23:57 [ 42] [ 15] [NATIVE ] +08:23:57 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:23:57 [ 49] [ 3] [418] +08:23:57 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:23:57 ============================================================================ +08:23:57 + + +waiting on router queue for slot.... +08:23:57 Sending to : <2> +08:23:57 ============================================================================ +08:24:01 ============================================================================ +08:24:01 Slot Id : <285> +08:24:01 Transaction Type : RESPONSE +08:24:01 Received From : +08:24:01 ============================================================================ +08:24:01 FNo. Len. Field Value +08:24:01 ============================================================================ +08:24:01 [ 1] [ 4] [0210] +08:24:01 [ 2] [ 16] [1808930600026058] +08:24:01 [ 3] [ 6] [010000] +08:24:01 [ 4] [ 12] [000040000000] +08:24:01 [ 6] [ 12] [000040000000] +08:24:01 [ 7] [ 10] [0320082352] +08:24:01 [ 11] [ 6] [683125] +08:24:01 [ 12] [ 6] [082352] +08:24:01 [ 13] [ 4] [0320] +08:24:01 [ 18] [ 4] [6011] +08:24:01 [ 19] [ 3] [418] +08:24:01 [ 22] [ 3] [021] +08:24:01 [ 32] [ 6] [621354] +08:24:01 [ 35] [ 27] [1808930600026058=1803500163] +08:24:01 [ 37] [ 12] [507905271166] +08:24:01 [ 38] [ 6] [683125] +08:24:01 [ 39] [ 2] [51] +08:24:01 [ 41] [ 8] [02002900] +08:24:01 [ 49] [ 3] [418] +08:24:01 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:24:01 ============================================================================ +08:24:01 Sending to : +08:24:01 ============================================================================ +08:24:01 + + +waiting on router queue for slot.... +08:24:03 ============================================================================ +08:24:03 Slot Id : <285> +08:24:03 Transaction Type : RESPONSE +08:24:03 Received From : +08:24:03 ============================================================================ +08:24:03 FNo. Len. Field Value +08:24:03 ============================================================================ +08:24:03 [ 1] [ 4] [0210] +08:24:03 [ 2] [ 16] [1808930600026058] +08:24:03 [ 3] [ 6] [010000] +08:24:03 [ 4] [ 12] [000040000000] +08:24:03 [ 6] [ 12] [000040000000] +08:24:03 [ 7] [ 10] [0320082352] +08:24:03 [ 11] [ 6] [683125] +08:24:03 [ 12] [ 6] [082352] +08:24:03 [ 13] [ 4] [0320] +08:24:03 [ 18] [ 4] [6011] +08:24:03 [ 19] [ 3] [418] +08:24:03 [ 22] [ 3] [021] +08:24:03 [ 32] [ 6] [621354] +08:24:03 [ 35] [ 27] [1808930600026058=1803500163] +08:24:03 [ 37] [ 12] [507905271166] +08:24:03 [ 38] [ 6] [683125] +08:24:03 [ 39] [ 2] [51] +08:24:03 [ 41] [ 8] [02002900] +08:24:03 [ 49] [ 3] [418] +08:24:03 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:24:03 ============================================================================ +08:24:03 Calculate Source COMM Id = 0 +08:24:03 ============================================================================ +08:24:03 + + +waiting on router queue for slot.... +08:24:12 ============================================================================ +08:24:12 Slot Id : <297> +08:24:12 Transaction Type : REQUEST +08:24:12 Received From : +08:24:12 ============================================================================ +08:24:12 FNo. Len. Field Value +08:24:12 ============================================================================ +08:24:12 [ 1] [ 4] [0800] +08:24:12 [ 7] [ 10] [0320012320] +08:24:12 [ 11] [ 6] [155394] +08:24:12 [ 70] [ 3] [301] +08:24:12 ============================================================================ +08:24:12 + + +waiting on router queue for slot.... +08:24:12 Sending to : +08:24:12 ============================================================================ +08:24:12 ============================================================================ +08:24:12 Slot Id : <297> +08:24:12 Transaction Type : RESPONSE +08:24:12 Received From : +08:24:12 ============================================================================ +08:24:12 FNo. Len. Field Value +08:24:12 ============================================================================ +08:24:12 [ 1] [ 4] [0810] +08:24:12 [ 7] [ 10] [0320012320] +08:24:12 [ 11] [ 6] [155394] +08:24:12 [ 39] [ 2] [00] +08:24:12 [ 70] [ 3] [301] +08:24:12 ============================================================================ +08:24:12 Calculate Source COMM Id = 2 +08:24:12 ============================================================================ +08:24:12 + + +waiting on router queue for slot.... +08:24:27 ============================================================================ +08:24:27 Slot Id : <325> +08:24:27 Transaction Type : REQUEST +08:24:27 Received From : +08:24:27 ============================================================================ +08:24:27 FNo. Len. Field Value +08:24:27 ============================================================================ +08:24:27 [ 1] [ 4] [0800] +08:24:27 [ 7] [ 10] [0320012335] +08:24:27 [ 11] [ 6] [155395] +08:24:27 [ 70] [ 3] [301] +08:24:27 ============================================================================ +08:24:27 + + +waiting on router queue for slot.... +08:24:27 Sending to : +08:24:27 ============================================================================ +08:24:27 ============================================================================ +08:24:27 Slot Id : <325> +08:24:27 Transaction Type : RESPONSE +08:24:27 Received From : +08:24:27 ============================================================================ +08:24:27 FNo. Len. Field Value +08:24:27 ============================================================================ +08:24:27 [ 1] [ 4] [0810] +08:24:27 [ 7] [ 10] [0320012335] +08:24:27 [ 11] [ 6] [155395] +08:24:27 [ 39] [ 2] [00] +08:24:27 [ 70] [ 3] [301] +08:24:27 ============================================================================ +08:24:27 Calculate Source COMM Id = 2 +08:24:27 ============================================================================ +08:24:27 + + +waiting on router queue for slot.... +08:24:38 ============================================================================ +08:24:38 Slot Id : <291> +08:24:38 Transaction Type : REQUEST +08:24:38 Received From : +08:24:38 ============================================================================ +08:24:38 FNo. Len. Field Value +08:24:38 ============================================================================ +08:24:38 [ 1] [ 4] [0800] +08:24:38 [ 7] [ 10] [0320012346] +08:24:38 [ 11] [ 6] [155396] +08:24:38 [ 70] [ 3] [301] +08:24:38 ============================================================================ +08:24:38 + + +waiting on router queue for slot.... +08:24:38 Sending to : +08:24:38 ============================================================================ +08:24:38 ============================================================================ +08:24:38 Slot Id : <291> +08:24:38 Transaction Type : RESPONSE +08:24:38 Received From : +08:24:38 ============================================================================ +08:24:38 FNo. Len. Field Value +08:24:38 ============================================================================ +08:24:38 [ 1] [ 4] [0810] +08:24:38 [ 7] [ 10] [0320012346] +08:24:38 [ 11] [ 6] [155396] +08:24:38 [ 39] [ 2] [00] +08:24:38 [ 70] [ 3] [301] +08:24:38 ============================================================================ +08:24:38 Calculate Source COMM Id = 2 +08:24:38 ============================================================================ +08:24:38 + + +waiting on router queue for slot.... +08:24:41 ============================================================================ +08:24:41 Slot Id : <326> +08:24:41 Transaction Type : REQUEST +08:24:41 Received From : +08:24:41 ============================================================================ +08:24:41 FNo. Len. Field Value +08:24:41 ============================================================================ +08:24:41 [ 1] [ 4] [0200] +08:24:41 [ 2] [ 16] [1808930600026058] +08:24:41 [ 3] [ 6] [010000] +08:24:41 [ 4] [ 12] [000030000000] +08:24:41 [ 7] [ 10] [0320082438] +08:24:41 [ 11] [ 6] [683327] +08:24:41 [ 12] [ 6] [082438] +08:24:41 [ 13] [ 4] [0320] +08:24:41 [ 15] [ 4] [0320] +08:24:41 [ 18] [ 4] [6011] +08:24:41 [ 22] [ 3] [900] +08:24:41 [ 25] [ 2] [02] +08:24:41 [ 28] [ 9] [D00002000] +08:24:41 [ 32] [ 6] [621354] +08:24:41 [ 35] [ 27] [1808930600026058=1803500163] +08:24:41 [ 37] [ 12] [507905271168] +08:24:41 [ 41] [ 8] [02002900] +08:24:41 [ 42] [ 15] [NATIVE ] +08:24:41 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:24:41 [ 49] [ 3] [418] +08:24:41 [ 52] [ 16] [0FBB204CB12C21CD] +08:24:41 ============================================================================ +08:24:41 + + +waiting on router queue for slot.... +08:24:41 Sending to : +08:24:41 ============================================================================ +08:24:41 Sending to : +08:24:41 ============================================================================ +08:24:42 ============================================================================ +08:24:42 Slot Id : <326> +08:24:42 Transaction Type : REQUEST +08:24:42 Received From : +08:24:42 ============================================================================ +08:24:42 FNo. Len. Field Value +08:24:42 ============================================================================ +08:24:42 [ 1] [ 4] [0200] +08:24:42 [ 2] [ 16] [1808930600026058] +08:24:42 [ 3] [ 6] [010000] +08:24:42 [ 4] [ 12] [000030000000] +08:24:42 [ 7] [ 10] [0320082438] +08:24:42 [ 11] [ 6] [683327] +08:24:42 [ 12] [ 6] [082438] +08:24:42 [ 13] [ 4] [0320] +08:24:42 [ 15] [ 4] [0320] +08:24:42 [ 18] [ 4] [6011] +08:24:42 [ 22] [ 3] [900] +08:24:42 [ 25] [ 2] [02] +08:24:42 [ 28] [ 9] [D00002000] +08:24:42 [ 32] [ 6] [621354] +08:24:42 [ 35] [ 27] [1808930600026058=1803500163] +08:24:42 [ 37] [ 12] [507905271168] +08:24:42 [ 41] [ 8] [02002900] +08:24:42 [ 42] [ 15] [NATIVE ] +08:24:42 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:24:42 [ 49] [ 3] [418] +08:24:42 [ 52] [ 16] [0FBB204CB12C21CD] +08:24:42 ============================================================================ +08:24:42 + + +waiting on router queue for slot.... +08:24:42 Sending to : +08:24:42 ============================================================================ +08:24:42 ============================================================================ +08:24:42 Slot Id : <326> +08:24:42 Transaction Type : REQUEST +08:24:42 Received From : +08:24:42 ============================================================================ +08:24:42 FNo. Len. Field Value +08:24:42 ============================================================================ +08:24:42 [ 1] [ 4] [0200] +08:24:42 [ 2] [ 16] [1808930600026058] +08:24:42 [ 3] [ 6] [010000] +08:24:42 [ 4] [ 12] [000030000000] +08:24:42 [ 7] [ 10] [0320082438] +08:24:42 [ 11] [ 6] [683327] +08:24:42 [ 12] [ 6] [082438] +08:24:42 [ 13] [ 4] [0320] +08:24:42 [ 15] [ 4] [0320] +08:24:42 [ 18] [ 4] [6011] +08:24:42 [ 22] [ 3] [900] +08:24:42 [ 25] [ 2] [02] +08:24:42 [ 28] [ 9] [D00002000] +08:24:42 [ 32] [ 6] [621354] +08:24:42 [ 35] [ 27] [1808930600026058=1803500163] +08:24:42 [ 37] [ 12] [507905271168] +08:24:42 [ 41] [ 8] [02002900] +08:24:42 [ 42] [ 15] [NATIVE ] +08:24:42 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +08:24:42 [ 49] [ 3] [418] +08:24:42 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:24:42 ============================================================================ +08:24:42 + + +waiting on router queue for slot.... +08:24:42 Sending to : <2> +08:24:42 ============================================================================ +08:24:47 ============================================================================ +08:24:47 Slot Id : <326> +08:24:47 Transaction Type : RESPONSE +08:24:47 Received From : +08:24:47 ============================================================================ +08:24:47 FNo. Len. Field Value +08:24:47 ============================================================================ +08:24:47 [ 1] [ 4] [0210] +08:24:47 [ 2] [ 16] [1808930600026058] +08:24:47 [ 3] [ 6] [010000] +08:24:47 [ 4] [ 12] [000030000000] +08:24:47 [ 6] [ 12] [000030000000] +08:24:47 [ 7] [ 10] [0320082438] +08:24:47 [ 11] [ 6] [683327] +08:24:47 [ 12] [ 6] [082438] +08:24:47 [ 13] [ 4] [0320] +08:24:47 [ 18] [ 4] [6011] +08:24:47 [ 19] [ 3] [418] +08:24:47 [ 22] [ 3] [021] +08:24:47 [ 32] [ 6] [621354] +08:24:47 [ 35] [ 27] [1808930600026058=1803500163] +08:24:47 [ 37] [ 12] [507905271168] +08:24:47 [ 38] [ 6] [683327] +08:24:47 [ 39] [ 2] [00] +08:24:47 [ 41] [ 8] [02002900] +08:24:47 [ 49] [ 3] [418] +08:24:47 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:24:47 [ 54] [ 20] [1001418C000002900366] +08:24:47 ============================================================================ +08:24:47 Sending to : +08:24:47 ============================================================================ +08:24:47 + + +waiting on router queue for slot.... +08:24:48 ============================================================================ +08:24:48 Slot Id : <326> +08:24:48 Transaction Type : RESPONSE +08:24:48 Received From : +08:24:48 ============================================================================ +08:24:48 FNo. Len. Field Value +08:24:48 ============================================================================ +08:24:48 [ 1] [ 4] [0210] +08:24:48 [ 2] [ 16] [1808930600026058] +08:24:48 [ 3] [ 6] [010000] +08:24:48 [ 4] [ 12] [000030000000] +08:24:48 [ 6] [ 12] [000030000000] +08:24:48 [ 7] [ 10] [0320082438] +08:24:48 [ 11] [ 6] [683327] +08:24:48 [ 12] [ 6] [082438] +08:24:48 [ 13] [ 4] [0320] +08:24:48 [ 18] [ 4] [6011] +08:24:48 [ 19] [ 3] [418] +08:24:48 [ 22] [ 3] [021] +08:24:48 [ 32] [ 6] [621354] +08:24:48 [ 35] [ 27] [1808930600026058=1803500163] +08:24:48 [ 37] [ 12] [507905271168] +08:24:48 [ 38] [ 6] [683327] +08:24:48 [ 39] [ 2] [00] +08:24:48 [ 41] [ 8] [02002900] +08:24:48 [ 49] [ 3] [418] +08:24:48 [ 52] [ 16] [3DFD2A8A33E6EEAF] +08:24:48 [ 54] [ 20] [1001418C000002900366] +08:24:48 ============================================================================ +08:24:48 Calculate Source COMM Id = 0 +08:24:48 ============================================================================ +08:24:48 + + +waiting on router queue for slot.... +08:24:50 ============================================================================ +08:24:50 Slot Id : <305> +08:24:50 Transaction Type : REQUEST +08:24:50 Received From : +08:24:50 ============================================================================ +08:24:50 FNo. Len. Field Value +08:24:50 ============================================================================ +08:24:50 [ 1] [ 4] [0200] +08:24:50 [ 2] [ 16] [1808930700001928] +08:24:50 [ 3] [ 6] [011000] +08:24:50 [ 4] [ 12] [000010000000] +08:24:50 [ 7] [ 10] [0320082446] +08:24:50 [ 11] [ 6] [683361] +08:24:50 [ 12] [ 6] [082446] +08:24:50 [ 13] [ 4] [0320] +08:24:50 [ 15] [ 4] [0320] +08:24:50 [ 18] [ 4] [6011] +08:24:50 [ 22] [ 3] [900] +08:24:50 [ 25] [ 2] [02] +08:24:50 [ 28] [ 9] [D00002000] +08:24:50 [ 32] [ 6] [621354] +08:24:50 [ 35] [ 27] [1808930700001928=1803500015] +08:24:50 [ 37] [ 12] [507903385641] +08:24:50 [ 41] [ 8] [13001800] +08:24:50 [ 42] [ 15] [NATIVE ] +08:24:50 [ 43] [ 40] [Phonesavanh Unit Phonesavanh LAO] +08:24:50 [ 49] [ 3] [418] +08:24:50 [ 52] [ 16] [CAE04C7498A0FC80] +08:24:50 ============================================================================ +08:24:50 + + +waiting on router queue for slot.... +08:24:50 Sending to : +08:24:50 ============================================================================ +08:24:50 Sending to : +08:24:50 ============================================================================ +08:24:50 ============================================================================ +08:24:50 Slot Id : <305> +08:24:50 Transaction Type : REQUEST +08:24:50 Received From : +08:24:50 ============================================================================ +08:24:50 FNo. Len. Field Value +08:24:50 ============================================================================ +08:24:50 [ 1] [ 4] [0200] +08:24:50 [ 2] [ 16] [1808930700001928] +08:24:50 [ 3] [ 6] [011000] +08:24:50 [ 4] [ 12] [000010000000] +08:24:50 [ 7] [ 10] [0320082446] +08:24:50 [ 11] [ 6] [683361] +08:24:50 [ 12] [ 6] [082446] +08:24:50 [ 13] [ 4] [0320] +08:24:50 [ 15] [ 4] [0320] +08:24:50 [ 18] [ 4] [6011] +08:24:50 [ 22] [ 3] [900] +08:24:50 [ 25] [ 2] [02] +08:24:50 [ 28] [ 9] [D00002000] +08:24:50 [ 32] [ 6] [621354] +08:24:50 [ 35] [ 27] [1808930700001928=1803500015] +08:24:50 [ 37] [ 12] [507903385641] +08:24:50 [ 41] [ 8] [13001800] +08:24:50 [ 42] [ 15] [NATIVE ] +08:24:50 [ 43] [ 40] [Phonesavanh Unit Phonesavanh LAO] +08:24:50 [ 49] [ 3] [418] +08:24:50 [ 52] [ 16] [CAE04C7498A0FC80] +08:24:50 ============================================================================ +08:24:50 + + +waiting on router queue for slot.... +08:24:50 Sending to : +08:24:50 ============================================================================ +08:24:50 ============================================================================ +08:24:50 Slot Id : <305> +08:24:50 Transaction Type : REQUEST +08:24:50 Received From : +08:24:50 ============================================================================ +08:24:50 FNo. Len. Field Value +08:24:50 ============================================================================ +08:24:50 [ 1] [ 4] [0200] +08:24:50 [ 2] [ 16] [1808930700001928] +08:24:50 [ 3] [ 6] [011000] +08:24:50 [ 4] [ 12] [000010000000] +08:24:50 [ 7] [ 10] [0320082446] +08:24:50 [ 11] [ 6] [683361] +08:24:50 [ 12] [ 6] [082446] +08:24:50 [ 13] [ 4] [0320] +08:24:50 [ 15] [ 4] [0320] +08:24:50 [ 18] [ 4] [6011] +08:24:50 [ 22] [ 3] [900] +08:24:50 [ 25] [ 2] [02] +08:24:50 [ 28] [ 9] [D00002000] +08:24:50 [ 32] [ 6] [621354] +08:24:50 [ 35] [ 27] [1808930700001928=1803500015] +08:24:50 [ 37] [ 12] [507903385641] +08:24:50 [ 41] [ 8] [13001800] +08:24:50 [ 42] [ 15] [NATIVE ] +08:24:50 [ 43] [ 40] [Phonesavanh Unit Phonesavanh LAO] +08:24:50 [ 49] [ 3] [418] +08:24:50 [ 52] [ 16] [4CB3B992C8D33BC0] +08:24:50 ============================================================================ +08:24:50 + + +waiting on router queue for slot.... +08:24:50 Sending to : <2> +08:24:50 ============================================================================ +08:24:52 ============================================================================ +08:24:52 Slot Id : <301> +08:24:52 Transaction Type : REQUEST +08:24:52 Received From : +08:24:52 ============================================================================ +08:24:52 FNo. Len. Field Value +08:24:52 ============================================================================ +08:24:52 [ 1] [ 4] [0800] +08:24:52 [ 2] [ 5] [02531] +08:24:52 [ 3] [ 6] [579088] +08:24:52 [ 7] [ 10] [0320012452] +08:24:52 [ 11] [ 6] [806900] +08:24:52 [ 15] [ 10] [0320012452] +08:24:52 [ 37] [ 11] [57908806900] +08:24:52 [ 70] [ 3] [001] +08:24:52 ============================================================================ +08:24:52 + + +waiting on router queue for slot.... +08:24:52 ============================================================================ +08:24:52 Slot Id : <301> +08:24:52 Transaction Type : RESPONSE +08:24:52 Received From : +08:24:52 ============================================================================ +08:24:52 FNo. Len. Field Value +08:24:52 ============================================================================ +08:24:52 [ 1] [ 4] [0810] +08:24:52 [ 7] [ 10] [0320012452] +08:24:52 [ 11] [ 6] [806900] +08:24:52 [ 15] [ 4] [0320] +08:24:52 [ 37] [ 12] [57908806900] +08:24:52 [ 39] [ 2] [00] +08:24:52 [ 70] [ 3] [001] +08:24:52 ============================================================================ +08:24:52 Sending to : +08:24:52 ============================================================================ +08:24:52 + + +waiting on router queue for slot.... +08:24:54 ============================================================================ +08:24:54 Slot Id : <327> +08:24:54 Transaction Type : REQUEST +08:24:54 Received From : +08:24:54 ============================================================================ +08:24:54 FNo. Len. Field Value +08:24:54 ============================================================================ +08:24:54 [ 1] [ 4] [0800] +08:24:54 [ 7] [ 10] [0320013242] +08:24:54 [ 11] [ 6] [029252] +08:24:54 [ 37] [ 12] [57908029252] +08:24:54 [ 70] [ 3] [301] +08:24:54 ============================================================================ +08:24:54 + + +waiting on router queue for slot.... +08:24:54 Sending to : +08:24:54 ============================================================================ +08:24:54 ============================================================================ +08:24:54 Slot Id : <327> +08:24:54 Transaction Type : RESPONSE +08:24:54 Received From : +08:24:54 ============================================================================ +08:24:54 FNo. Len. Field Value +08:24:54 ============================================================================ +08:24:54 [ 1] [ 4] [0810] +08:24:54 [ 7] [ 10] [0320013242] +08:24:54 [ 11] [ 6] [029252] +08:24:54 [ 37] [ 12] [579080292520] +08:24:54 [ 39] [ 2] [00] +08:24:54 [ 70] [ 3] [810] +08:24:54 ============================================================================ +08:24:54 Calculate Source COMM Id = 1 +08:24:54 ============================================================================ +08:24:54 + + +waiting on router queue for slot.... +08:24:56 ============================================================================ +08:24:56 Slot Id : <333> +08:24:56 Transaction Type : REQUEST +08:24:56 Received From : +08:24:56 ============================================================================ +08:24:56 FNo. Len. Field Value +08:24:56 ============================================================================ +08:24:56 [ 1] [ 4] [0800] +08:24:56 [ 7] [ 10] [0320153644] +08:24:56 [ 11] [ 6] [083644] +08:24:56 [ 37] [ 12] [57908083644] +08:24:56 [ 70] [ 3] [301] +08:24:56 ============================================================================ +08:24:56 + + +waiting on router queue for slot.... +08:24:56 Sending to : +08:24:56 ============================================================================ +08:24:56 ============================================================================ +08:24:56 Slot Id : <333> +08:24:56 Transaction Type : RESPONSE +08:24:56 Received From : +08:24:56 ============================================================================ +08:24:56 FNo. Len. Field Value +08:24:56 ============================================================================ +08:24:56 [ 1] [ 4] [0810] +08:24:56 [ 7] [ 10] [0320153644] +08:24:56 [ 11] [ 6] [083644] +08:24:56 [ 37] [ 12] [579080836440] +08:24:56 [ 39] [ 2] [00] +08:24:56 [ 70] [ 3] [810] +08:24:56 ============================================================================ +08:24:56 Calculate Source COMM Id = 6 +08:24:56 ============================================================================ +08:24:56 + + +waiting on router queue for slot.... +08:24:57 ============================================================================ +08:24:57 Slot Id : <305> +08:24:57 Transaction Type : RESPONSE +08:24:57 Received From : +08:24:57 ============================================================================ +08:24:57 FNo. Len. Field Value +08:24:57 ============================================================================ +08:24:57 [ 1] [ 4] [0210] +08:24:57 [ 2] [ 16] [1808930700001928] +08:24:57 [ 3] [ 6] [011000] +08:24:57 [ 4] [ 12] [000010000000] +08:24:57 [ 6] [ 12] [000010000000] +08:24:57 [ 7] [ 10] [0320082446] +08:24:57 [ 11] [ 6] [683361] +08:24:57 [ 12] [ 6] [082446] +08:24:57 [ 13] [ 4] [0320] +08:24:57 [ 18] [ 4] [6011] +08:24:57 [ 19] [ 3] [418] +08:24:57 [ 22] [ 3] [021] +08:24:57 [ 32] [ 6] [621354] +08:24:57 [ 35] [ 27] [1808930700001928=1803500015] +08:24:57 [ 37] [ 12] [507903385641] +08:24:57 [ 38] [ 6] [683361] +08:24:57 [ 39] [ 2] [00] +08:24:57 [ 41] [ 8] [13001800] +08:24:57 [ 49] [ 3] [418] +08:24:57 [ 52] [ 16] [4CB3B992C8D33BC0] +08:24:57 [ 54] [ 20] [1001418C000033483600] +08:24:57 ============================================================================ +08:24:57 Sending to : +08:24:57 ============================================================================ +08:24:57 + + +waiting on router queue for slot.... +08:24:59 ============================================================================ +08:24:59 Slot Id : <305> +08:24:59 Transaction Type : RESPONSE +08:24:59 Received From : +08:24:59 ============================================================================ +08:24:59 FNo. Len. Field Value +08:24:59 ============================================================================ +08:24:59 [ 1] [ 4] [0210] +08:24:59 [ 2] [ 16] [1808930700001928] +08:24:59 [ 3] [ 6] [011000] +08:24:59 [ 4] [ 12] [000010000000] +08:24:59 [ 6] [ 12] [000010000000] +08:24:59 [ 7] [ 10] [0320082446] +08:24:59 [ 11] [ 6] [683361] +08:24:59 [ 12] [ 6] [082446] +08:24:59 [ 13] [ 4] [0320] +08:24:59 [ 18] [ 4] [6011] +08:24:59 [ 19] [ 3] [418] +08:24:59 [ 22] [ 3] [021] +08:24:59 [ 32] [ 6] [621354] +08:24:59 [ 35] [ 27] [1808930700001928=1803500015] +08:24:59 [ 37] [ 12] [507903385641] +08:24:59 [ 38] [ 6] [683361] +08:24:59 [ 39] [ 2] [00] +08:24:59 [ 41] [ 8] [13001800] +08:24:59 [ 49] [ 3] [418] +08:24:59 [ 52] [ 16] [4CB3B992C8D33BC0] +08:24:59 [ 54] [ 20] [1001418C000033483600] +08:24:59 ============================================================================ +08:24:59 Calculate Source COMM Id = 0 +08:24:59 ============================================================================ +08:24:59 + + +waiting on router queue for slot.... +08:25:05 ============================================================================ +08:25:05 Slot Id : <331> +08:25:05 Transaction Type : REQUEST +08:25:05 Received From : +08:25:05 ============================================================================ +08:25:05 FNo. Len. Field Value +08:25:05 ============================================================================ +08:25:05 [ 1] [ 4] [0800] +08:25:05 [ 7] [ 10] [0320012413] +08:25:05 [ 11] [ 6] [155397] +08:25:05 [ 70] [ 3] [301] +08:25:05 ============================================================================ +08:25:05 + + +waiting on router queue for slot.... +08:25:05 Sending to : +08:25:05 ============================================================================ +08:25:05 ============================================================================ +08:25:05 Slot Id : <331> +08:25:05 Transaction Type : RESPONSE +08:25:05 Received From : +08:25:05 ============================================================================ +08:25:05 FNo. Len. Field Value +08:25:05 ============================================================================ +08:25:05 [ 1] [ 4] [0810] +08:25:05 [ 7] [ 10] [0320012413] +08:25:05 [ 11] [ 6] [155397] +08:25:05 [ 39] [ 2] [00] +08:25:05 [ 70] [ 3] [301] +08:25:05 ============================================================================ +08:25:05 Calculate Source COMM Id = 2 +08:25:05 ============================================================================ +08:25:05 + + +waiting on router queue for slot.... +08:25:05 ============================================================================ +08:25:05 Slot Id : <314> +08:25:05 Transaction Type : REQUEST +08:25:05 Received From : +08:25:05 ============================================================================ +08:25:05 FNo. Len. Field Value +08:25:05 ============================================================================ +08:25:05 [ 1] [ 4] [0200] +08:25:05 [ 2] [ 16] [6688990108408202] +08:25:05 [ 3] [ 6] [011000] +08:25:05 [ 4] [ 12] [000010000000] +08:25:05 [ 7] [ 10] [0320082502] +08:25:05 [ 11] [ 6] [683447] +08:25:05 [ 12] [ 6] [082502] +08:25:05 [ 13] [ 4] [0320] +08:25:05 [ 15] [ 4] [0320] +08:25:05 [ 18] [ 4] [6011] +08:25:05 [ 22] [ 3] [900] +08:25:05 [ 25] [ 2] [02] +08:25:05 [ 28] [ 9] [D00002000] +08:25:05 [ 32] [ 6] [621354] +08:25:05 [ 35] [ 37] [6688990108408202=44061231820270900000] +08:25:05 [ 37] [ 12] [507903226553] +08:25:05 [ 41] [ 8] [04003200] +08:25:05 [ 42] [ 15] [NATIVE ] +08:25:05 [ 43] [ 40] [DONKHONG Kong LAO] +08:25:05 [ 49] [ 3] [418] +08:25:05 [ 52] [ 16] [DB8CD85406551448] +08:25:05 ============================================================================ +08:25:05 + + +waiting on router queue for slot.... +08:25:05 Sending to : +08:25:05 ============================================================================ +08:25:05 Sending to : +08:25:05 ============================================================================ +08:25:06 ============================================================================ +08:25:06 Slot Id : <314> +08:25:06 Transaction Type : REQUEST +08:25:06 Received From : +08:25:06 ============================================================================ +08:25:06 FNo. Len. Field Value +08:25:06 ============================================================================ +08:25:06 [ 1] [ 4] [0200] +08:25:06 [ 2] [ 16] [6688990108408202] +08:25:06 [ 3] [ 6] [011000] +08:25:06 [ 4] [ 12] [000010000000] +08:25:06 [ 7] [ 10] [0320082502] +08:25:06 [ 11] [ 6] [683447] +08:25:06 [ 12] [ 6] [082502] +08:25:06 [ 13] [ 4] [0320] +08:25:06 [ 15] [ 4] [0320] +08:25:06 [ 18] [ 4] [6011] +08:25:06 [ 22] [ 3] [900] +08:25:06 [ 25] [ 2] [02] +08:25:06 [ 28] [ 9] [D00002000] +08:25:06 [ 32] [ 6] [621354] +08:25:06 [ 35] [ 37] [6688990108408202=44061231820270900000] +08:25:06 [ 37] [ 12] [507903226553] +08:25:06 [ 41] [ 8] [04003200] +08:25:06 [ 42] [ 15] [NATIVE ] +08:25:06 [ 43] [ 40] [DONKHONG Kong LAO] +08:25:06 [ 49] [ 3] [418] +08:25:06 [ 52] [ 16] [DB8CD85406551448] +08:25:06 ============================================================================ +08:25:06 + + +waiting on router queue for slot.... +08:25:06 Sending to : +08:25:06 ============================================================================ +08:25:06 ============================================================================ +08:25:06 Slot Id : <314> +08:25:06 Transaction Type : REQUEST +08:25:06 Received From : +08:25:06 ============================================================================ +08:25:06 FNo. Len. Field Value +08:25:06 ============================================================================ +08:25:06 [ 1] [ 4] [0200] +08:25:06 [ 2] [ 16] [6688990108408202] +08:25:06 [ 3] [ 6] [011000] +08:25:06 [ 4] [ 12] [000010000000] +08:25:06 [ 7] [ 10] [0320082502] +08:25:06 [ 11] [ 6] [683447] +08:25:06 [ 12] [ 6] [082502] +08:25:06 [ 13] [ 4] [0320] +08:25:06 [ 15] [ 4] [0320] +08:25:06 [ 18] [ 4] [6011] +08:25:06 [ 22] [ 3] [900] +08:25:06 [ 25] [ 2] [02] +08:25:06 [ 28] [ 9] [D00002000] +08:25:06 [ 32] [ 6] [621354] +08:25:06 [ 35] [ 37] [6688990108408202=44061231820270900000] +08:25:06 [ 37] [ 12] [507903226553] +08:25:06 [ 41] [ 8] [04003200] +08:25:06 [ 42] [ 15] [NATIVE ] +08:25:06 [ 43] [ 40] [DONKHONG Kong LAO] +08:25:06 [ 49] [ 3] [418] +08:25:06 [ 52] [ 16] [2C6D1CEAD9F00BF9] +08:25:06 ============================================================================ +08:25:06 + + +waiting on router queue for slot.... +08:25:06 Sending to : <4> +08:25:06 ============================================================================ +08:25:06 ============================================================================ +08:25:06 Slot Id : <314> +08:25:06 Transaction Type : RESPONSE +08:25:06 Received From : +08:25:06 ============================================================================ +08:25:06 FNo. Len. Field Value +08:25:06 ============================================================================ +08:25:06 [ 1] [ 4] [0210] +08:25:06 [ 2] [ 16] [6688990108408202] +08:25:06 [ 3] [ 6] [011000] +08:25:06 [ 4] [ 12] [000010000000] +08:25:06 [ 11] [ 6] [683447] +08:25:06 [ 12] [ 6] [082502] +08:25:06 [ 15] [ 4] [0320] +08:25:06 [ 18] [ 4] [6011] +08:25:06 [ 32] [ 6] [621354] +08:25:06 [ 35] [ 37] [6688990108408202=44061231820270900000] +08:25:06 [ 37] [ 12] [507903226553] +08:25:06 [ 39] [ 2] [51] +08:25:06 [ 41] [ 8] [04003200] +08:25:06 [ 49] [ 3] [418] +08:25:06 [ 54] [ 0] [] +08:25:06 ============================================================================ +08:25:06 Sending to : +08:25:06 ============================================================================ +08:25:06 + + +waiting on router queue for slot.... +08:25:07 ============================================================================ +08:25:07 Slot Id : <314> +08:25:07 Transaction Type : RESPONSE +08:25:07 Received From : +08:25:07 ============================================================================ +08:25:07 FNo. Len. Field Value +08:25:07 ============================================================================ +08:25:07 [ 1] [ 4] [0210] +08:25:07 [ 2] [ 16] [6688990108408202] +08:25:07 [ 3] [ 6] [011000] +08:25:07 [ 4] [ 12] [000010000000] +08:25:07 [ 11] [ 6] [683447] +08:25:07 [ 12] [ 6] [082502] +08:25:07 [ 15] [ 4] [0320] +08:25:07 [ 18] [ 4] [6011] +08:25:07 [ 32] [ 6] [621354] +08:25:07 [ 35] [ 37] [6688990108408202=44061231820270900000] +08:25:07 [ 37] [ 12] [507903226553] +08:25:07 [ 39] [ 2] [51] +08:25:07 [ 41] [ 8] [04003200] +08:25:07 [ 49] [ 3] [418] +08:25:07 [ 54] [ 0] [] +08:25:07 ============================================================================ +08:25:07 Calculate Source COMM Id = 0 +08:25:07 ============================================================================ +08:25:07 + + +waiting on router queue for slot.... +08:25:11 ============================================================================ +08:25:11 Slot Id : <321> +08:25:11 Transaction Type : REQUEST +08:25:11 Received From : +08:25:11 ============================================================================ +08:25:11 FNo. Len. Field Value +08:25:11 ============================================================================ +08:25:11 [ 1] [ 4] [0200] +08:25:11 [ 2] [ 16] [6688990040059428] +08:25:11 [ 3] [ 6] [010000] +08:25:11 [ 4] [ 12] [000020000000] +08:25:11 [ 7] [ 10] [0320082507] +08:25:11 [ 11] [ 6] [683468] +08:25:11 [ 12] [ 6] [082507] +08:25:11 [ 13] [ 4] [0320] +08:25:11 [ 15] [ 4] [0320] +08:25:11 [ 18] [ 4] [6011] +08:25:11 [ 22] [ 3] [900] +08:25:11 [ 25] [ 2] [02] +08:25:11 [ 28] [ 9] [D00002000] +08:25:11 [ 32] [ 6] [621354] +08:25:11 [ 35] [ 37] [6688990040059428=97121261612149800000] +08:25:11 [ 37] [ 12] [507903365330] +08:25:11 [ 41] [ 8] [13001600] +08:25:11 [ 42] [ 15] [NATIVE ] +08:25:11 [ 43] [ 40] [Khangkhai College Paek LAO] +08:25:11 [ 49] [ 3] [418] +08:25:11 [ 52] [ 16] [31BD2BE1C917BE61] +08:25:11 ============================================================================ +08:25:11 + + +waiting on router queue for slot.... +08:25:11 Sending to : +08:25:11 ============================================================================ +08:25:11 Sending to : +08:25:11 ============================================================================ +08:25:11 ============================================================================ +08:25:11 Slot Id : <321> +08:25:11 Transaction Type : REQUEST +08:25:11 Received From : +08:25:11 ============================================================================ +08:25:11 FNo. Len. Field Value +08:25:11 ============================================================================ +08:25:11 [ 1] [ 4] [0200] +08:25:11 [ 2] [ 16] [6688990040059428] +08:25:11 [ 3] [ 6] [010000] +08:25:11 [ 4] [ 12] [000020000000] +08:25:11 [ 7] [ 10] [0320082507] +08:25:11 [ 11] [ 6] [683468] +08:25:11 [ 12] [ 6] [082507] +08:25:11 [ 13] [ 4] [0320] +08:25:11 [ 15] [ 4] [0320] +08:25:11 [ 18] [ 4] [6011] +08:25:11 [ 22] [ 3] [900] +08:25:11 [ 25] [ 2] [02] +08:25:11 [ 28] [ 9] [D00002000] +08:25:11 [ 32] [ 6] [621354] +08:25:11 [ 35] [ 37] [6688990040059428=97121261612149800000] +08:25:11 [ 37] [ 12] [507903365330] +08:25:11 [ 41] [ 8] [13001600] +08:25:11 [ 42] [ 15] [NATIVE ] +08:25:11 [ 43] [ 40] [Khangkhai College Paek LAO] +08:25:11 [ 49] [ 3] [418] +08:25:11 [ 52] [ 16] [31BD2BE1C917BE61] +08:25:11 ============================================================================ +08:25:11 + + +waiting on router queue for slot.... +08:25:11 Sending to : +08:25:11 ============================================================================ +08:25:11 ============================================================================ +08:25:11 Slot Id : <321> +08:25:11 Transaction Type : REQUEST +08:25:11 Received From : +08:25:11 ============================================================================ +08:25:11 FNo. Len. Field Value +08:25:11 ============================================================================ +08:25:11 [ 1] [ 4] [0200] +08:25:11 [ 2] [ 16] [6688990040059428] +08:25:11 [ 3] [ 6] [010000] +08:25:11 [ 4] [ 12] [000020000000] +08:25:11 [ 7] [ 10] [0320082507] +08:25:11 [ 11] [ 6] [683468] +08:25:11 [ 12] [ 6] [082507] +08:25:11 [ 13] [ 4] [0320] +08:25:11 [ 15] [ 4] [0320] +08:25:11 [ 18] [ 4] [6011] +08:25:11 [ 22] [ 3] [900] +08:25:11 [ 25] [ 2] [02] +08:25:11 [ 28] [ 9] [D00002000] +08:25:11 [ 32] [ 6] [621354] +08:25:11 [ 35] [ 37] [6688990040059428=97121261612149800000] +08:25:11 [ 37] [ 12] [507903365330] +08:25:11 [ 41] [ 8] [13001600] +08:25:11 [ 42] [ 15] [NATIVE ] +08:25:11 [ 43] [ 40] [Khangkhai College Paek LAO] +08:25:11 [ 49] [ 3] [418] +08:25:11 [ 52] [ 16] [3BB4490A13D96039] +08:25:11 ============================================================================ +08:25:11 + + +waiting on router queue for slot.... +08:25:11 Sending to : <4> +08:25:11 ============================================================================ +08:25:12 ============================================================================ +08:25:12 Slot Id : <321> +08:25:12 Transaction Type : RESPONSE +08:25:12 Received From : +08:25:12 ============================================================================ +08:25:12 FNo. Len. Field Value +08:25:12 ============================================================================ +08:25:12 [ 1] [ 4] [0210] +08:25:12 [ 2] [ 16] [6688990040059428] +08:25:12 [ 3] [ 6] [010000] +08:25:12 [ 4] [ 12] [000020000000] +08:25:12 [ 11] [ 6] [683468] +08:25:12 [ 12] [ 6] [082507] +08:25:12 [ 15] [ 4] [0320] +08:25:12 [ 18] [ 4] [6011] +08:25:12 [ 32] [ 6] [621354] +08:25:12 [ 35] [ 37] [6688990040059428=97121261612149800000] +08:25:12 [ 37] [ 12] [507903365330] +08:25:12 [ 38] [ 6] [975829] +08:25:12 [ 39] [ 2] [00] +08:25:12 [ 41] [ 8] [13001600] +08:25:12 [ 49] [ 3] [418] +08:25:12 [ 54] [ 20] [0002418C000014079628] +08:25:12 ============================================================================ +08:25:12 Sending to : +08:25:12 ============================================================================ +08:25:12 + + +waiting on router queue for slot.... +08:25:14 ============================================================================ +08:25:14 Slot Id : <321> +08:25:14 Transaction Type : RESPONSE +08:25:14 Received From : +08:25:14 ============================================================================ +08:25:14 FNo. Len. Field Value +08:25:14 ============================================================================ +08:25:14 [ 1] [ 4] [0210] +08:25:14 [ 2] [ 16] [6688990040059428] +08:25:14 [ 3] [ 6] [010000] +08:25:14 [ 4] [ 12] [000020000000] +08:25:14 [ 11] [ 6] [683468] +08:25:14 [ 12] [ 6] [082507] +08:25:14 [ 15] [ 4] [0320] +08:25:14 [ 18] [ 4] [6011] +08:25:14 [ 32] [ 6] [621354] +08:25:14 [ 35] [ 37] [6688990040059428=97121261612149800000] +08:25:14 [ 37] [ 12] [507903365330] +08:25:14 [ 38] [ 6] [975829] +08:25:14 [ 39] [ 2] [00] +08:25:14 [ 41] [ 8] [13001600] +08:25:14 [ 49] [ 3] [418] +08:25:14 [ 54] [ 20] [0002418C000014079628] +08:25:14 ============================================================================ +08:25:14 Calculate Source COMM Id = 0 +08:25:14 ============================================================================ +08:25:14 + + +waiting on router queue for slot.... +08:25:22 ============================================================================ +08:25:22 Slot Id : <337> +08:25:22 Transaction Type : REQUEST +08:25:22 Received From : +08:25:22 ============================================================================ +08:25:22 FNo. Len. Field Value +08:25:22 ============================================================================ +08:25:22 [ 1] [ 4] [0800] +08:25:22 [ 7] [ 10] [0320012430] +08:25:22 [ 11] [ 6] [155398] +08:25:22 [ 70] [ 3] [301] +08:25:22 ============================================================================ +08:25:22 + + +waiting on router queue for slot.... +08:25:22 Sending to : +08:25:22 ============================================================================ +08:25:22 ============================================================================ +08:25:22 Slot Id : <337> +08:25:22 Transaction Type : RESPONSE +08:25:22 Received From : +08:25:22 ============================================================================ +08:25:22 FNo. Len. Field Value +08:25:22 ============================================================================ +08:25:22 [ 1] [ 4] [0810] +08:25:22 [ 7] [ 10] [0320012430] +08:25:22 [ 11] [ 6] [155398] +08:25:22 [ 39] [ 2] [00] +08:25:22 [ 70] [ 3] [301] +08:25:22 ============================================================================ +08:25:22 Calculate Source COMM Id = 2 +08:25:22 ============================================================================ +08:25:22 + + +waiting on router queue for slot.... +08:25:22 ============================================================================ +08:25:22 Slot Id : <334> +08:25:22 Transaction Type : REQUEST +08:25:22 Received From : +08:25:22 ============================================================================ +08:25:22 FNo. Len. Field Value +08:25:22 ============================================================================ +08:25:22 [ 1] [ 4] [0200] +08:25:22 [ 2] [ 16] [6213545000585863] +08:25:22 [ 3] [ 6] [301000] +08:25:22 [ 4] [ 12] [000000000000] +08:25:22 [ 7] [ 10] [0320082314] +08:25:22 [ 11] [ 6] [932774] +08:25:22 [ 12] [ 6] [082314] +08:25:22 [ 13] [ 4] [0320] +08:25:22 [ 15] [ 4] [0320] +08:25:22 [ 18] [ 4] [6011] +08:25:22 [ 19] [ 3] [418] +08:25:22 [ 22] [ 3] [021] +08:25:22 [ 25] [ 2] [01] +08:25:22 [ 28] [ 9] [D00000000] +08:25:22 [ 32] [ 6] [668899] +08:25:22 [ 35] [ 32] [6213545000585863=491212018586418] +08:25:22 [ 37] [ 12] [507900234064] +08:25:22 [ 41] [ 8] [03010001] +08:25:22 [ 42] [ 15] [APT ] +08:25:22 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +08:25:22 [ 49] [ 3] [418] +08:25:22 [ 52] [ 16] [75E6CC04D22BE78B] +08:25:22 ============================================================================ +08:25:22 + + +waiting on router queue for slot.... +08:25:22 Sending to : +08:25:22 ============================================================================ +08:25:22 Sending to : +08:25:22 ============================================================================ +08:25:23 ============================================================================ +08:25:23 Slot Id : <334> +08:25:23 Transaction Type : REQUEST +08:25:23 Received From : +08:25:23 ============================================================================ +08:25:23 FNo. Len. Field Value +08:25:23 ============================================================================ +08:25:23 [ 1] [ 4] [0200] +08:25:23 [ 2] [ 16] [6213545000585863] +08:25:23 [ 3] [ 6] [301000] +08:25:23 [ 4] [ 12] [000000000000] +08:25:23 [ 7] [ 10] [0320082314] +08:25:23 [ 11] [ 6] [932774] +08:25:23 [ 12] [ 6] [082314] +08:25:23 [ 13] [ 4] [0320] +08:25:23 [ 15] [ 4] [0320] +08:25:23 [ 18] [ 4] [6011] +08:25:23 [ 19] [ 3] [418] +08:25:23 [ 22] [ 3] [021] +08:25:23 [ 25] [ 2] [01] +08:25:23 [ 28] [ 9] [D00000000] +08:25:23 [ 32] [ 6] [668899] +08:25:23 [ 35] [ 32] [6213545000585863=491212018586418] +08:25:23 [ 37] [ 12] [507900234064] +08:25:23 [ 41] [ 8] [03010001] +08:25:23 [ 42] [ 15] [APT ] +08:25:23 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +08:25:23 [ 49] [ 3] [418] +08:25:23 [ 52] [ 16] [75E6CC04D22BE78B] +08:25:23 ============================================================================ +08:25:23 + + +waiting on router queue for slot.... +08:25:23 Sending to : +08:25:23 ============================================================================ +08:25:23 ============================================================================ +08:25:23 Slot Id : <334> +08:25:23 Transaction Type : REQUEST +08:25:23 Received From : +08:25:23 ============================================================================ +08:25:23 FNo. Len. Field Value +08:25:23 ============================================================================ +08:25:23 [ 1] [ 4] [0200] +08:25:23 [ 2] [ 16] [6213545000585863] +08:25:23 [ 3] [ 6] [301000] +08:25:23 [ 4] [ 12] [000000000000] +08:25:23 [ 7] [ 10] [0320082314] +08:25:23 [ 11] [ 6] [932774] +08:25:23 [ 12] [ 6] [082314] +08:25:23 [ 13] [ 4] [0320] +08:25:23 [ 15] [ 4] [0320] +08:25:23 [ 18] [ 4] [6011] +08:25:23 [ 19] [ 3] [418] +08:25:23 [ 22] [ 3] [021] +08:25:23 [ 25] [ 2] [01] +08:25:23 [ 28] [ 9] [D00000000] +08:25:23 [ 32] [ 6] [668899] +08:25:23 [ 35] [ 32] [6213545000585863=491212018586418] +08:25:23 [ 37] [ 12] [507900234064] +08:25:23 [ 41] [ 8] [03010001] +08:25:23 [ 42] [ 15] [APT ] +08:25:23 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +08:25:23 [ 49] [ 3] [418] +08:25:23 [ 52] [ 16] [B59039B12065ED46] +08:25:23 ============================================================================ +08:25:23 + + +waiting on router queue for slot.... +08:25:23 Sending to : <0> +08:25:23 ============================================================================ +08:25:23 ============================================================================ +08:25:23 Slot Id : <334> +08:25:23 Transaction Type : RESPONSE +08:25:23 Received From : +08:25:23 ============================================================================ +08:25:23 FNo. Len. Field Value +08:25:23 ============================================================================ +08:25:23 [ 1] [ 4] [0210] +08:25:23 [ 2] [ 16] [6213545000585863] +08:25:23 [ 3] [ 6] [301000] +08:25:23 [ 4] [ 12] [000000000000] +08:25:23 [ 7] [ 10] [0320082314] +08:25:23 [ 11] [ 6] [932774] +08:25:23 [ 12] [ 6] [082314] +08:25:23 [ 13] [ 4] [0320] +08:25:23 [ 15] [ 4] [0320] +08:25:23 [ 18] [ 4] [6011] +08:25:23 [ 19] [ 3] [418] +08:25:23 [ 32] [ 6] [668899] +08:25:23 [ 35] [ 32] [6213545000585863=491212018586418] +08:25:23 [ 37] [ 12] [507900234064] +08:25:23 [ 38] [ 6] [551867] +08:25:23 [ 39] [ 2] [00] +08:25:23 [ 41] [ 8] [03010001] +08:25:23 [ 49] [ 3] [418] +08:25:23 [ 54] [ 40] [1001418C0002050209331002418C000205020933] +08:25:23 ============================================================================ +08:25:23 Sending to : +08:25:23 ============================================================================ +08:25:23 + + +waiting on router queue for slot.... +08:25:25 ============================================================================ +08:25:25 Slot Id : <334> +08:25:25 Transaction Type : RESPONSE +08:25:25 Received From : +08:25:25 ============================================================================ +08:25:25 FNo. Len. Field Value +08:25:25 ============================================================================ +08:25:25 [ 1] [ 4] [0210] +08:25:25 [ 2] [ 16] [6213545000585863] +08:25:25 [ 3] [ 6] [301000] +08:25:25 [ 4] [ 12] [000000000000] +08:25:25 [ 7] [ 10] [0320082314] +08:25:25 [ 11] [ 6] [932774] +08:25:25 [ 12] [ 6] [082314] +08:25:25 [ 13] [ 4] [0320] +08:25:25 [ 15] [ 4] [0320] +08:25:25 [ 18] [ 4] [6011] +08:25:25 [ 19] [ 3] [418] +08:25:25 [ 32] [ 6] [668899] +08:25:25 [ 35] [ 32] [6213545000585863=491212018586418] +08:25:25 [ 37] [ 12] [507900234064] +08:25:25 [ 38] [ 6] [551867] +08:25:25 [ 39] [ 2] [00] +08:25:25 [ 41] [ 8] [03010001] +08:25:25 [ 49] [ 3] [418] +08:25:25 [ 54] [ 40] [1001418C0002050209331002418C000205020933] +08:25:25 ============================================================================ +08:25:25 Calculate Source COMM Id = 4 +08:25:25 ============================================================================ +08:25:25 + + +waiting on router queue for slot.... +08:25:27 ============================================================================ +08:25:27 Slot Id : <336> +08:25:27 Transaction Type : REQUEST +08:25:27 Received From : +08:25:27 ============================================================================ +08:25:27 FNo. Len. Field Value +08:25:27 ============================================================================ +08:25:27 [ 1] [ 4] [0200] +08:25:27 [ 2] [ 16] [6688990060026802] +08:25:27 [ 3] [ 6] [011000] +08:25:27 [ 4] [ 12] [000010000000] +08:25:27 [ 7] [ 10] [0320082523] +08:25:27 [ 11] [ 6] [683552] +08:25:27 [ 12] [ 6] [082523] +08:25:27 [ 13] [ 4] [0320] +08:25:27 [ 15] [ 4] [0320] +08:25:27 [ 18] [ 4] [6011] +08:25:27 [ 22] [ 3] [900] +08:25:27 [ 25] [ 2] [02] +08:25:27 [ 28] [ 9] [D00002000] +08:25:27 [ 32] [ 6] [621354] +08:25:27 [ 35] [ 37] [6688990060026802=98021261727789100000] +08:25:27 [ 37] [ 12] [507904153770] +08:25:27 [ 41] [ 8] [20001000] +08:25:27 [ 42] [ 15] [NATIVE ] +08:25:27 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:25:27 [ 49] [ 3] [418] +08:25:27 [ 52] [ 16] [55C281F155460FFD] +08:25:27 ============================================================================ +08:25:27 + + +waiting on router queue for slot.... +08:25:27 Sending to : +08:25:27 ============================================================================ +08:25:27 Sending to : +08:25:27 ============================================================================ +08:25:27 ============================================================================ +08:25:27 Slot Id : <336> +08:25:27 Transaction Type : REQUEST +08:25:27 Received From : +08:25:27 ============================================================================ +08:25:27 FNo. Len. Field Value +08:25:27 ============================================================================ +08:25:27 [ 1] [ 4] [0200] +08:25:27 [ 2] [ 16] [6688990060026802] +08:25:27 [ 3] [ 6] [011000] +08:25:27 [ 4] [ 12] [000010000000] +08:25:27 [ 7] [ 10] [0320082523] +08:25:27 [ 11] [ 6] [683552] +08:25:27 [ 12] [ 6] [082523] +08:25:27 [ 13] [ 4] [0320] +08:25:27 [ 15] [ 4] [0320] +08:25:27 [ 18] [ 4] [6011] +08:25:27 [ 22] [ 3] [900] +08:25:27 [ 25] [ 2] [02] +08:25:27 [ 28] [ 9] [D00002000] +08:25:27 [ 32] [ 6] [621354] +08:25:27 [ 35] [ 37] [6688990060026802=98021261727789100000] +08:25:27 [ 37] [ 12] [507904153770] +08:25:27 [ 41] [ 8] [20001000] +08:25:27 [ 42] [ 15] [NATIVE ] +08:25:27 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:25:27 [ 49] [ 3] [418] +08:25:27 [ 52] [ 16] [55C281F155460FFD] +08:25:27 ============================================================================ +08:25:27 + + +waiting on router queue for slot.... +08:25:27 Sending to : +08:25:27 ============================================================================ +08:25:27 ============================================================================ +08:25:27 Slot Id : <336> +08:25:27 Transaction Type : REQUEST +08:25:27 Received From : +08:25:27 ============================================================================ +08:25:27 FNo. Len. Field Value +08:25:27 ============================================================================ +08:25:27 [ 1] [ 4] [0200] +08:25:27 [ 2] [ 16] [6688990060026802] +08:25:27 [ 3] [ 6] [011000] +08:25:27 [ 4] [ 12] [000010000000] +08:25:27 [ 7] [ 10] [0320082523] +08:25:27 [ 11] [ 6] [683552] +08:25:27 [ 12] [ 6] [082523] +08:25:27 [ 13] [ 4] [0320] +08:25:27 [ 15] [ 4] [0320] +08:25:27 [ 18] [ 4] [6011] +08:25:27 [ 22] [ 3] [900] +08:25:27 [ 25] [ 2] [02] +08:25:27 [ 28] [ 9] [D00002000] +08:25:27 [ 32] [ 6] [621354] +08:25:27 [ 35] [ 37] [6688990060026802=98021261727789100000] +08:25:27 [ 37] [ 12] [507904153770] +08:25:27 [ 41] [ 8] [20001000] +08:25:27 [ 42] [ 15] [NATIVE ] +08:25:27 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:25:27 [ 49] [ 3] [418] +08:25:27 [ 52] [ 16] [BDD19AC369DF1D39] +08:25:27 ============================================================================ +08:25:27 + + +waiting on router queue for slot.... +08:25:27 Sending to : <4> +08:25:27 ============================================================================ +08:25:29 ============================================================================ +08:25:29 Slot Id : <336> +08:25:29 Transaction Type : RESPONSE +08:25:29 Received From : +08:25:29 ============================================================================ +08:25:29 FNo. Len. Field Value +08:25:29 ============================================================================ +08:25:29 [ 1] [ 4] [0210] +08:25:29 [ 2] [ 16] [6688990060026802] +08:25:29 [ 3] [ 6] [011000] +08:25:29 [ 4] [ 12] [000010000000] +08:25:29 [ 11] [ 6] [683552] +08:25:29 [ 12] [ 6] [082523] +08:25:29 [ 15] [ 4] [0320] +08:25:29 [ 18] [ 4] [6011] +08:25:29 [ 32] [ 6] [621354] +08:25:29 [ 35] [ 37] [6688990060026802=98021261727789100000] +08:25:29 [ 37] [ 12] [507904153770] +08:25:29 [ 38] [ 6] [028401] +08:25:29 [ 39] [ 2] [00] +08:25:29 [ 41] [ 8] [20001000] +08:25:29 [ 49] [ 3] [418] +08:25:29 [ 54] [ 20] [1002418C000058179874] +08:25:29 ============================================================================ +08:25:29 Sending to : +08:25:29 ============================================================================ +08:25:29 + + +waiting on router queue for slot.... +08:25:30 ============================================================================ +08:25:30 Slot Id : <336> +08:25:30 Transaction Type : RESPONSE +08:25:30 Received From : +08:25:30 ============================================================================ +08:25:30 FNo. Len. Field Value +08:25:30 ============================================================================ +08:25:30 [ 1] [ 4] [0210] +08:25:30 [ 2] [ 16] [6688990060026802] +08:25:30 [ 3] [ 6] [011000] +08:25:30 [ 4] [ 12] [000010000000] +08:25:30 [ 11] [ 6] [683552] +08:25:30 [ 12] [ 6] [082523] +08:25:30 [ 15] [ 4] [0320] +08:25:30 [ 18] [ 4] [6011] +08:25:30 [ 32] [ 6] [621354] +08:25:30 [ 35] [ 37] [6688990060026802=98021261727789100000] +08:25:30 [ 37] [ 12] [507904153770] +08:25:30 [ 38] [ 6] [028401] +08:25:30 [ 39] [ 2] [00] +08:25:30 [ 41] [ 8] [20001000] +08:25:30 [ 49] [ 3] [418] +08:25:30 [ 54] [ 20] [1002418C000058179874] +08:25:30 ============================================================================ +08:25:30 Calculate Source COMM Id = 0 +08:25:30 ============================================================================ +08:25:30 + + +waiting on router queue for slot.... +08:25:34 ============================================================================ +08:25:34 Slot Id : <335> +08:25:34 Transaction Type : REQUEST +08:25:34 Received From : +08:25:34 ============================================================================ +08:25:34 FNo. Len. Field Value +08:25:34 ============================================================================ +08:25:34 [ 1] [ 4] [0800] +08:25:34 [ 7] [ 10] [0320012442] +08:25:34 [ 11] [ 6] [155399] +08:25:34 [ 70] [ 3] [301] +08:25:34 ============================================================================ +08:25:34 + + +waiting on router queue for slot.... +08:25:34 Sending to : +08:25:34 ============================================================================ +08:25:34 ============================================================================ +08:25:34 Slot Id : <335> +08:25:34 Transaction Type : RESPONSE +08:25:34 Received From : +08:25:34 ============================================================================ +08:25:34 FNo. Len. Field Value +08:25:34 ============================================================================ +08:25:34 [ 1] [ 4] [0810] +08:25:34 [ 7] [ 10] [0320012442] +08:25:34 [ 11] [ 6] [155399] +08:25:34 [ 39] [ 2] [00] +08:25:34 [ 70] [ 3] [301] +08:25:34 ============================================================================ +08:25:34 Calculate Source COMM Id = 2 +08:25:34 ============================================================================ +08:25:34 + + +waiting on router queue for slot.... +08:25:38 ============================================================================ +08:25:38 Slot Id : <342> +08:25:38 Transaction Type : REQUEST +08:25:38 Received From : +08:25:38 ============================================================================ +08:25:38 FNo. Len. Field Value +08:25:38 ============================================================================ +08:25:38 [ 1] [ 4] [0200] +08:25:38 [ 2] [ 16] [1888880000087668] +08:25:38 [ 3] [ 6] [011000] +08:25:38 [ 4] [ 12] [000002000000] +08:25:38 [ 7] [ 10] [0320082534] +08:25:38 [ 11] [ 6] [683594] +08:25:38 [ 12] [ 6] [082534] +08:25:38 [ 13] [ 4] [0320] +08:25:38 [ 15] [ 4] [0320] +08:25:38 [ 18] [ 4] [6011] +08:25:38 [ 22] [ 3] [900] +08:25:38 [ 25] [ 2] [02] +08:25:38 [ 28] [ 9] [D00002000] +08:25:38 [ 32] [ 6] [621354] +08:25:38 [ 35] [ 32] [1888880000087668=000010100000063] +08:25:38 [ 37] [ 12] [507903443141] +08:25:38 [ 41] [ 8] [06001700] +08:25:38 [ 42] [ 15] [NATIVE ] +08:25:38 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +08:25:38 [ 49] [ 3] [418] +08:25:38 [ 52] [ 16] [5F27299EA13C86F5] +08:25:38 ============================================================================ +08:25:38 + + +waiting on router queue for slot.... +08:25:38 Sending to : +08:25:38 ============================================================================ +08:25:38 Sending to : +08:25:38 ============================================================================ +08:25:38 ============================================================================ +08:25:38 Slot Id : <342> +08:25:38 Transaction Type : REQUEST +08:25:38 Received From : +08:25:38 ============================================================================ +08:25:38 FNo. Len. Field Value +08:25:38 ============================================================================ +08:25:38 [ 1] [ 4] [0200] +08:25:38 [ 2] [ 16] [1888880000087668] +08:25:38 [ 3] [ 6] [011000] +08:25:38 [ 4] [ 12] [000002000000] +08:25:38 [ 7] [ 10] [0320082534] +08:25:38 [ 11] [ 6] [683594] +08:25:38 [ 12] [ 6] [082534] +08:25:38 [ 13] [ 4] [0320] +08:25:38 [ 15] [ 4] [0320] +08:25:38 [ 18] [ 4] [6011] +08:25:38 [ 22] [ 3] [900] +08:25:38 [ 25] [ 2] [02] +08:25:38 [ 28] [ 9] [D00002000] +08:25:38 [ 32] [ 6] [621354] +08:25:38 [ 35] [ 32] [1888880000087668=000010100000063] +08:25:38 [ 37] [ 12] [507903443141] +08:25:38 [ 41] [ 8] [06001700] +08:25:38 [ 42] [ 15] [NATIVE ] +08:25:38 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +08:25:38 [ 49] [ 3] [418] +08:25:38 [ 52] [ 16] [5F27299EA13C86F5] +08:25:38 ============================================================================ +08:25:38 + + +waiting on router queue for slot.... +08:25:38 Sending to : +08:25:38 ============================================================================ +08:25:39 ============================================================================ +08:25:39 Slot Id : <342> +08:25:39 Transaction Type : REQUEST +08:25:39 Received From : +08:25:39 ============================================================================ +08:25:39 FNo. Len. Field Value +08:25:39 ============================================================================ +08:25:39 [ 1] [ 4] [0200] +08:25:39 [ 2] [ 16] [1888880000087668] +08:25:39 [ 3] [ 6] [011000] +08:25:39 [ 4] [ 12] [000002000000] +08:25:39 [ 7] [ 10] [0320082534] +08:25:39 [ 11] [ 6] [683594] +08:25:39 [ 12] [ 6] [082534] +08:25:39 [ 13] [ 4] [0320] +08:25:39 [ 15] [ 4] [0320] +08:25:39 [ 18] [ 4] [6011] +08:25:39 [ 22] [ 3] [900] +08:25:39 [ 25] [ 2] [02] +08:25:39 [ 28] [ 9] [D00002000] +08:25:39 [ 32] [ 6] [621354] +08:25:39 [ 35] [ 32] [1888880000087668=000010100000063] +08:25:39 [ 37] [ 12] [507903443141] +08:25:39 [ 41] [ 8] [06001700] +08:25:39 [ 42] [ 15] [NATIVE ] +08:25:39 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +08:25:39 [ 49] [ 3] [418] +08:25:39 [ 52] [ 16] [45995AFB6ECABEEE] +08:25:39 ============================================================================ +08:25:39 + + +waiting on router queue for slot.... +08:25:39 Sending to : <5> +08:25:39 ============================================================================ +08:25:44 ============================================================================ +08:25:44 Slot Id : <320> +08:25:44 Transaction Type : REQUEST +08:25:44 Received From : +08:25:44 ============================================================================ +08:25:44 FNo. Len. Field Value +08:25:44 ============================================================================ +08:25:44 [ 1] [ 4] [0800] +08:25:44 [ 7] [ 10] [0320012453] +08:25:44 [ 11] [ 6] [155400] +08:25:44 [ 70] [ 3] [301] +08:25:44 ============================================================================ +08:25:44 + + +waiting on router queue for slot.... +08:25:44 Sending to : +08:25:44 ============================================================================ +08:25:44 ============================================================================ +08:25:44 Slot Id : <320> +08:25:44 Transaction Type : RESPONSE +08:25:44 Received From : +08:25:44 ============================================================================ +08:25:44 FNo. Len. Field Value +08:25:44 ============================================================================ +08:25:44 [ 1] [ 4] [0810] +08:25:44 [ 7] [ 10] [0320012453] +08:25:44 [ 11] [ 6] [155400] +08:25:44 [ 39] [ 2] [00] +08:25:44 [ 70] [ 3] [301] +08:25:44 ============================================================================ +08:25:44 Calculate Source COMM Id = 2 +08:25:44 ============================================================================ +08:25:44 + + +waiting on router queue for slot.... +08:25:46 ============================================================================ +08:25:46 Slot Id : <342> +08:25:46 Transaction Type : RESPONSE +08:25:46 Received From : +08:25:46 ============================================================================ +08:25:46 FNo. Len. Field Value +08:25:46 ============================================================================ +08:25:46 [ 1] [ 4] [0210] +08:25:46 [ 2] [ 16] [1888880000087668] +08:25:46 [ 3] [ 6] [011000] +08:25:46 [ 4] [ 12] [000002000000] +08:25:46 [ 7] [ 10] [0320082534] +08:25:46 [ 11] [ 6] [683594] +08:25:46 [ 12] [ 6] [082534] +08:25:46 [ 13] [ 4] [0320] +08:25:46 [ 15] [ 4] [0320] +08:25:46 [ 18] [ 4] [6011] +08:25:46 [ 19] [ 3] [418] +08:25:46 [ 32] [ 6] [621354] +08:25:46 [ 37] [ 12] [507903443141] +08:25:46 [ 38] [ 6] [000000] +08:25:46 [ 39] [ 2] [51] +08:25:46 [ 41] [ 8] [06001700] +08:25:46 [ 49] [ 3] [418] +08:25:46 ============================================================================ +08:25:46 Sending to : +08:25:46 ============================================================================ +08:25:46 + + +waiting on router queue for slot.... +08:25:47 ============================================================================ +08:25:47 Slot Id : <342> +08:25:47 Transaction Type : RESPONSE +08:25:47 Received From : +08:25:47 ============================================================================ +08:25:47 FNo. Len. Field Value +08:25:47 ============================================================================ +08:25:47 [ 1] [ 4] [0210] +08:25:47 [ 2] [ 16] [1888880000087668] +08:25:47 [ 3] [ 6] [011000] +08:25:47 [ 4] [ 12] [000002000000] +08:25:47 [ 7] [ 10] [0320082534] +08:25:47 [ 11] [ 6] [683594] +08:25:47 [ 12] [ 6] [082534] +08:25:47 [ 13] [ 4] [0320] +08:25:47 [ 15] [ 4] [0320] +08:25:47 [ 18] [ 4] [6011] +08:25:47 [ 19] [ 3] [418] +08:25:47 [ 32] [ 6] [621354] +08:25:47 [ 37] [ 12] [507903443141] +08:25:47 [ 38] [ 6] [000000] +08:25:47 [ 39] [ 2] [51] +08:25:47 [ 41] [ 8] [06001700] +08:25:47 [ 49] [ 3] [418] +08:25:47 ============================================================================ +08:25:47 Calculate Source COMM Id = 0 +08:25:47 ============================================================================ +08:25:47 + + +waiting on router queue for slot.... +08:25:54 ============================================================================ +08:25:54 Slot Id : <341> +08:25:54 Transaction Type : REQUEST +08:25:54 Received From : +08:25:54 ============================================================================ +08:25:54 FNo. Len. Field Value +08:25:54 ============================================================================ +08:25:54 [ 1] [ 4] [0800] +08:25:54 [ 2] [ 5] [02531] +08:25:54 [ 3] [ 6] [579088] +08:25:54 [ 7] [ 10] [0320012554] +08:25:54 [ 11] [ 6] [806901] +08:25:54 [ 15] [ 10] [0320012554] +08:25:54 [ 37] [ 11] [57908806901] +08:25:54 [ 70] [ 3] [001] +08:25:54 ============================================================================ +08:25:54 + + +waiting on router queue for slot.... +08:25:54 ============================================================================ +08:25:54 Slot Id : <341> +08:25:54 Transaction Type : RESPONSE +08:25:54 Received From : +08:25:54 ============================================================================ +08:25:54 FNo. Len. Field Value +08:25:54 ============================================================================ +08:25:54 [ 1] [ 4] [0810] +08:25:54 [ 7] [ 10] [0320012554] +08:25:54 [ 11] [ 6] [806901] +08:25:54 [ 15] [ 4] [0320] +08:25:54 [ 37] [ 12] [57908806901] +08:25:54 [ 39] [ 2] [00] +08:25:54 [ 70] [ 3] [001] +08:25:54 ============================================================================ +08:25:54 Sending to : +08:25:54 ============================================================================ +08:25:54 + + +waiting on router queue for slot.... +08:25:56 ============================================================================ +08:25:56 Slot Id : <345> +08:25:56 Transaction Type : REQUEST +08:25:56 Received From : +08:25:56 ============================================================================ +08:25:56 FNo. Len. Field Value +08:25:56 ============================================================================ +08:25:56 [ 1] [ 4] [0800] +08:25:56 [ 7] [ 10] [0320012504] +08:25:56 [ 11] [ 6] [155401] +08:25:56 [ 70] [ 3] [301] +08:25:56 ============================================================================ +08:25:56 + + +waiting on router queue for slot.... +08:25:56 Sending to : +08:25:56 ============================================================================ +08:25:56 ============================================================================ +08:25:56 Slot Id : <345> +08:25:56 Transaction Type : RESPONSE +08:25:56 Received From : +08:25:56 ============================================================================ +08:25:56 FNo. Len. Field Value +08:25:56 ============================================================================ +08:25:56 [ 1] [ 4] [0810] +08:25:56 [ 7] [ 10] [0320012504] +08:25:56 [ 11] [ 6] [155401] +08:25:56 [ 39] [ 2] [00] +08:25:56 [ 70] [ 3] [301] +08:25:56 ============================================================================ +08:25:56 Calculate Source COMM Id = 2 +08:25:56 ============================================================================ +08:25:56 + + +waiting on router queue for slot.... +08:25:57 ============================================================================ +08:25:57 Slot Id : <268> +08:25:57 Transaction Type : REQUEST +08:25:57 Received From : +08:25:57 ============================================================================ +08:25:57 FNo. Len. Field Value +08:25:58 ============================================================================ +08:25:58 [ 1] [ 4] [0200] +08:25:58 [ 2] [ 16] [6213542000004870] +08:25:58 [ 3] [ 6] [310000] +08:25:58 [ 4] [ 12] [000000000000] +08:25:58 [ 7] [ 10] [0320083345] +08:25:58 [ 11] [ 6] [254822] +08:25:58 [ 12] [ 6] [083345] +08:25:58 [ 13] [ 4] [0320] +08:25:58 [ 14] [ 4] [4912] +08:25:58 [ 15] [ 4] [0320] +08:25:58 [ 18] [ 4] [6011] +08:25:58 [ 22] [ 3] [900] +08:25:58 [ 25] [ 2] [02] +08:25:58 [ 28] [ 9] [000000000] +08:25:58 [ 32] [ 6] [220699] +08:25:58 [ 35] [ 32] [6213542000004870=491212010487013] +08:25:58 [ 37] [ 12] [507900094404] +08:25:58 [ 41] [ 8] [01000900] +08:25:58 [ 42] [ 15] [APTRA ] +08:25:58 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:25:58 [ 49] [ 3] [418] +08:25:58 [ 52] [ 16] [8891E810D83D98E1] +08:25:58 ============================================================================ +08:25:58 + + +waiting on router queue for slot.... +08:25:58 Sending to : +08:25:58 ============================================================================ +08:25:58 Sending to : +08:25:58 ============================================================================ +08:25:58 ============================================================================ +08:25:58 Slot Id : <268> +08:25:58 Transaction Type : REQUEST +08:25:58 Received From : +08:25:58 ============================================================================ +08:25:58 FNo. Len. Field Value +08:25:58 ============================================================================ +08:25:58 [ 1] [ 4] [0200] +08:25:58 [ 2] [ 16] [6213542000004870] +08:25:58 [ 3] [ 6] [310000] +08:25:58 [ 4] [ 12] [000000000000] +08:25:58 [ 7] [ 10] [0320083345] +08:25:58 [ 11] [ 6] [254822] +08:25:58 [ 12] [ 6] [083345] +08:25:58 [ 13] [ 4] [0320] +08:25:58 [ 14] [ 4] [4912] +08:25:58 [ 15] [ 4] [0320] +08:25:58 [ 18] [ 4] [6011] +08:25:58 [ 22] [ 3] [900] +08:25:58 [ 25] [ 2] [02] +08:25:58 [ 28] [ 9] [000000000] +08:25:58 [ 32] [ 6] [220699] +08:25:58 [ 35] [ 32] [6213542000004870=491212010487013] +08:25:58 [ 37] [ 12] [507900094404] +08:25:58 [ 41] [ 8] [01000900] +08:25:58 [ 42] [ 15] [APTRA ] +08:25:58 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:25:58 [ 49] [ 3] [418] +08:25:58 [ 52] [ 16] [8891E810D83D98E1] +08:25:58 ============================================================================ +08:25:58 + + +waiting on router queue for slot.... +08:25:58 Sending to : +08:25:58 ============================================================================ +08:25:58 ============================================================================ +08:25:58 Slot Id : <268> +08:25:58 Transaction Type : REQUEST +08:25:58 Received From : +08:25:58 ============================================================================ +08:25:58 FNo. Len. Field Value +08:25:58 ============================================================================ +08:25:58 [ 1] [ 4] [0200] +08:25:58 [ 2] [ 16] [6213542000004870] +08:25:58 [ 3] [ 6] [310000] +08:25:58 [ 4] [ 12] [000000000000] +08:25:58 [ 7] [ 10] [0320083345] +08:25:58 [ 11] [ 6] [254822] +08:25:58 [ 12] [ 6] [083345] +08:25:58 [ 13] [ 4] [0320] +08:25:58 [ 14] [ 4] [4912] +08:25:58 [ 15] [ 4] [0320] +08:25:58 [ 18] [ 4] [6011] +08:25:58 [ 22] [ 3] [900] +08:25:58 [ 25] [ 2] [02] +08:25:58 [ 28] [ 9] [000000000] +08:25:58 [ 32] [ 6] [220699] +08:25:58 [ 35] [ 32] [6213542000004870=491212010487013] +08:25:58 [ 37] [ 12] [507900094404] +08:25:58 [ 41] [ 8] [01000900] +08:25:58 [ 42] [ 15] [APTRA ] +08:25:58 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:25:58 [ 49] [ 3] [418] +08:25:58 [ 52] [ 16] [82F7077CDD51E6F8] +08:25:58 ============================================================================ +08:25:58 + + +waiting on router queue for slot.... +08:25:58 Sending to : <0> +08:25:58 ============================================================================ +08:25:58 ============================================================================ +08:25:58 Slot Id : <268> +08:25:58 Transaction Type : RESPONSE +08:25:58 Received From : +08:25:58 ============================================================================ +08:25:58 FNo. Len. Field Value +08:25:58 ============================================================================ +08:25:58 [ 1] [ 4] [0210] +08:25:58 [ 2] [ 16] [6213542000004870] +08:25:58 [ 3] [ 6] [310000] +08:25:58 [ 4] [ 12] [000000000000] +08:25:58 [ 7] [ 10] [0320083345] +08:25:58 [ 11] [ 6] [254822] +08:25:58 [ 12] [ 6] [083345] +08:25:58 [ 13] [ 4] [0320] +08:25:58 [ 15] [ 4] [0320] +08:25:58 [ 18] [ 4] [6011] +08:25:58 [ 32] [ 6] [220699] +08:25:58 [ 35] [ 32] [6213542000004870=491212010487013] +08:25:58 [ 37] [ 12] [507900094404] +08:25:58 [ 38] [ 6] [639184] +08:25:58 [ 39] [ 2] [00] +08:25:58 [ 41] [ 8] [01000900] +08:25:58 [ 49] [ 3] [418] +08:25:58 [ 54] [ 40] [0001418C0001648875240002418C000164887524] +08:25:58 ============================================================================ +08:25:58 Sending to : +08:25:58 ============================================================================ +08:25:58 + + +waiting on router queue for slot.... +08:26:00 ============================================================================ +08:26:00 Slot Id : <268> +08:26:00 Transaction Type : RESPONSE +08:26:00 Received From : +08:26:00 ============================================================================ +08:26:00 FNo. Len. Field Value +08:26:00 ============================================================================ +08:26:00 [ 1] [ 4] [0210] +08:26:00 [ 2] [ 16] [6213542000004870] +08:26:00 [ 3] [ 6] [310000] +08:26:00 [ 4] [ 12] [000000000000] +08:26:00 [ 7] [ 10] [0320083345] +08:26:00 [ 11] [ 6] [254822] +08:26:00 [ 12] [ 6] [083345] +08:26:00 [ 13] [ 4] [0320] +08:26:00 [ 15] [ 4] [0320] +08:26:00 [ 18] [ 4] [6011] +08:26:00 [ 32] [ 6] [220699] +08:26:00 [ 35] [ 32] [6213542000004870=491212010487013] +08:26:00 [ 37] [ 12] [507900094404] +08:26:00 [ 38] [ 6] [639184] +08:26:00 [ 39] [ 2] [00] +08:26:00 [ 41] [ 8] [01000900] +08:26:00 [ 49] [ 3] [418] +08:26:00 [ 54] [ 40] [0001418C0001648875240002418C000164887524] +08:26:00 ============================================================================ +08:26:00 Calculate Source COMM Id = 1 +08:26:00 ============================================================================ +08:26:00 + + +waiting on router queue for slot.... +08:26:01 ============================================================================ +08:26:01 Slot Id : <344> +08:26:01 Transaction Type : REQUEST +08:26:01 Received From : +08:26:01 ============================================================================ +08:26:01 FNo. Len. Field Value +08:26:01 ============================================================================ +08:26:01 [ 1] [ 4] [0800] +08:26:01 [ 7] [ 10] [0320153749] +08:26:01 [ 11] [ 6] [083749] +08:26:01 [ 37] [ 12] [57908083749] +08:26:01 [ 70] [ 3] [301] +08:26:01 ============================================================================ +08:26:01 + + +waiting on router queue for slot.... +08:26:01 Sending to : +08:26:01 ============================================================================ +08:26:01 ============================================================================ +08:26:01 Slot Id : <344> +08:26:01 Transaction Type : RESPONSE +08:26:01 Received From : +08:26:01 ============================================================================ +08:26:01 FNo. Len. Field Value +08:26:01 ============================================================================ +08:26:01 [ 1] [ 4] [0810] +08:26:01 [ 7] [ 10] [0320153749] +08:26:01 [ 11] [ 6] [083749] +08:26:01 [ 37] [ 12] [579080837490] +08:26:01 [ 39] [ 2] [00] +08:26:01 [ 70] [ 3] [810] +08:26:01 ============================================================================ +08:26:01 Calculate Source COMM Id = 6 +08:26:01 ============================================================================ +08:26:01 + + +waiting on router queue for slot.... +08:26:10 ============================================================================ +08:26:10 Slot Id : <329> +08:26:10 Transaction Type : REQUEST +08:26:10 Received From : +08:26:10 ============================================================================ +08:26:10 FNo. Len. Field Value +08:26:10 ============================================================================ +08:26:10 [ 1] [ 4] [0200] +08:26:10 [ 2] [ 16] [6688990040116079] +08:26:10 [ 3] [ 6] [301000] +08:26:10 [ 4] [ 12] [000000000000] +08:26:10 [ 7] [ 10] [0320082631] +08:26:10 [ 11] [ 6] [202077] +08:26:10 [ 12] [ 6] [202442] +08:26:10 [ 13] [ 4] [0319] +08:26:10 [ 14] [ 4] [9803] +08:26:10 [ 15] [ 4] [0319] +08:26:10 [ 18] [ 4] [6011] +08:26:10 [ 19] [ 3] [418] +08:26:10 [ 22] [ 3] [021] +08:26:10 [ 25] [ 2] [01] +08:26:10 [ 28] [ 9] [D00000000] +08:26:10 [ 32] [ 6] [198901] +08:26:10 [ 35] [ 37] [6688990040116079=98031261868918700000] +08:26:10 [ 37] [ 12] [507908202077] +08:26:10 [ 41] [ 8] [01529031] +08:26:10 [ 42] [ 15] [000000041529031] +08:26:10 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +08:26:10 [ 49] [ 3] [418] +08:26:10 [ 52] [ 16] [D4B4E301339F3E33] +08:26:10 ============================================================================ +08:26:10 + + +waiting on router queue for slot.... +08:26:10 Sending to : +08:26:10 ============================================================================ +08:26:10 Sending to : +08:26:10 ============================================================================ +08:26:10 ============================================================================ +08:26:10 Slot Id : <329> +08:26:10 Transaction Type : REQUEST +08:26:10 Received From : +08:26:10 ============================================================================ +08:26:10 FNo. Len. Field Value +08:26:10 ============================================================================ +08:26:10 [ 1] [ 4] [0200] +08:26:10 [ 2] [ 16] [6688990040116079] +08:26:10 [ 3] [ 6] [301000] +08:26:10 [ 4] [ 12] [000000000000] +08:26:10 [ 7] [ 10] [0320082631] +08:26:10 [ 11] [ 6] [202077] +08:26:10 [ 12] [ 6] [202442] +08:26:10 [ 13] [ 4] [0319] +08:26:10 [ 14] [ 4] [9803] +08:26:10 [ 15] [ 4] [0319] +08:26:10 [ 18] [ 4] [6011] +08:26:10 [ 19] [ 3] [418] +08:26:10 [ 22] [ 3] [021] +08:26:10 [ 25] [ 2] [01] +08:26:10 [ 28] [ 9] [D00000000] +08:26:10 [ 32] [ 6] [198901] +08:26:10 [ 35] [ 37] [6688990040116079=98031261868918700000] +08:26:10 [ 37] [ 12] [507908202077] +08:26:10 [ 41] [ 8] [01529031] +08:26:10 [ 42] [ 15] [000000041529031] +08:26:10 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +08:26:10 [ 49] [ 3] [418] +08:26:10 [ 52] [ 16] [D4B4E301339F3E33] +08:26:10 ============================================================================ +08:26:10 + + +waiting on router queue for slot.... +08:26:10 Sending to : +08:26:10 ============================================================================ +08:26:10 ============================================================================ +08:26:10 Slot Id : <329> +08:26:10 Transaction Type : REQUEST +08:26:10 Received From : +08:26:10 ============================================================================ +08:26:10 FNo. Len. Field Value +08:26:10 ============================================================================ +08:26:10 [ 1] [ 4] [0200] +08:26:10 [ 2] [ 16] [6688990040116079] +08:26:10 [ 3] [ 6] [301000] +08:26:10 [ 4] [ 12] [000000000000] +08:26:10 [ 7] [ 10] [0320082631] +08:26:10 [ 11] [ 6] [202077] +08:26:10 [ 12] [ 6] [202442] +08:26:10 [ 13] [ 4] [0319] +08:26:10 [ 14] [ 4] [9803] +08:26:10 [ 15] [ 4] [0319] +08:26:10 [ 18] [ 4] [6011] +08:26:10 [ 19] [ 3] [418] +08:26:10 [ 22] [ 3] [021] +08:26:10 [ 25] [ 2] [01] +08:26:10 [ 28] [ 9] [D00000000] +08:26:10 [ 32] [ 6] [198901] +08:26:10 [ 35] [ 37] [6688990040116079=98031261868918700000] +08:26:10 [ 37] [ 12] [507908202077] +08:26:10 [ 41] [ 8] [01529031] +08:26:10 [ 42] [ 15] [000000041529031] +08:26:10 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +08:26:10 [ 49] [ 3] [418] +08:26:10 [ 52] [ 16] [8BB0A78338F66C3F] +08:26:10 ============================================================================ +08:26:10 + + +waiting on router queue for slot.... +08:26:10 Sending to : <4> +08:26:10 ============================================================================ +08:26:11 ============================================================================ +08:26:11 Slot Id : <329> +08:26:11 Transaction Type : RESPONSE +08:26:11 Received From : +08:26:11 ============================================================================ +08:26:11 FNo. Len. Field Value +08:26:11 ============================================================================ +08:26:11 [ 1] [ 4] [0210] +08:26:11 [ 2] [ 16] [6688990040116079] +08:26:11 [ 3] [ 6] [301000] +08:26:11 [ 4] [ 12] [000000000000] +08:26:11 [ 11] [ 6] [202077] +08:26:11 [ 12] [ 6] [202442] +08:26:11 [ 15] [ 4] [0319] +08:26:11 [ 18] [ 4] [6011] +08:26:11 [ 32] [ 6] [198901] +08:26:11 [ 35] [ 37] [6688990040116079=98031261868918700000] +08:26:11 [ 37] [ 12] [507908202077] +08:26:11 [ 38] [ 6] [032529] +08:26:11 [ 39] [ 2] [00] +08:26:11 [ 41] [ 8] [01529031] +08:26:11 [ 49] [ 3] [418] +08:26:11 [ 54] [ 20] [1002418C000019804932] +08:26:11 ============================================================================ +08:26:11 Sending to : +08:26:11 ============================================================================ +08:26:11 + + +waiting on router queue for slot.... +08:26:12 ============================================================================ +08:26:12 Slot Id : <323> +08:26:12 Transaction Type : REQUEST +08:26:12 Received From : +08:26:12 ============================================================================ +08:26:12 FNo. Len. Field Value +08:26:12 ============================================================================ +08:26:12 [ 1] [ 4] [0800] +08:26:12 [ 7] [ 10] [0320012520] +08:26:12 [ 11] [ 6] [155402] +08:26:12 [ 70] [ 3] [301] +08:26:12 ============================================================================ +08:26:12 + + +waiting on router queue for slot.... +08:26:12 Sending to : +08:26:12 ============================================================================ +08:26:12 ============================================================================ +08:26:12 Slot Id : <323> +08:26:12 Transaction Type : RESPONSE +08:26:12 Received From : +08:26:12 ============================================================================ +08:26:12 FNo. Len. Field Value +08:26:12 ============================================================================ +08:26:12 [ 1] [ 4] [0810] +08:26:12 [ 7] [ 10] [0320012520] +08:26:12 [ 11] [ 6] [155402] +08:26:12 [ 39] [ 2] [00] +08:26:12 [ 70] [ 3] [301] +08:26:12 ============================================================================ +08:26:12 Calculate Source COMM Id = 2 +08:26:12 ============================================================================ +08:26:12 + + +waiting on router queue for slot.... +08:26:12 ============================================================================ +08:26:12 Slot Id : <339> +08:26:12 Transaction Type : REQUEST +08:26:12 Received From : +08:26:12 ============================================================================ +08:26:12 FNo. Len. Field Value +08:26:12 ============================================================================ +08:26:12 [ 1] [ 4] [0200] +08:26:12 [ 2] [ 16] [6688990040059428] +08:26:12 [ 3] [ 6] [010000] +08:26:12 [ 4] [ 12] [000005000000] +08:26:12 [ 7] [ 10] [0320082609] +08:26:12 [ 11] [ 6] [683754] +08:26:12 [ 12] [ 6] [082609] +08:26:12 [ 13] [ 4] [0320] +08:26:12 [ 15] [ 4] [0320] +08:26:12 [ 18] [ 4] [6011] +08:26:12 [ 22] [ 3] [900] +08:26:12 [ 25] [ 2] [02] +08:26:12 [ 28] [ 9] [D00002000] +08:26:12 [ 32] [ 6] [621354] +08:26:12 [ 35] [ 37] [6688990040059428=97121261612149800000] +08:26:12 [ 37] [ 12] [507903365332] +08:26:12 [ 41] [ 8] [13001600] +08:26:12 [ 42] [ 15] [NATIVE ] +08:26:12 [ 43] [ 40] [Khangkhai College Paek LAO] +08:26:12 [ 49] [ 3] [418] +08:26:12 [ 52] [ 16] [31BD2BE1C917BE61] +08:26:12 ============================================================================ +08:26:12 + + +waiting on router queue for slot.... +08:26:12 Sending to : +08:26:12 ============================================================================ +08:26:12 Sending to : +08:26:12 ============================================================================ +08:26:13 ============================================================================ +08:26:13 Slot Id : <339> +08:26:13 Transaction Type : REQUEST +08:26:13 Received From : +08:26:13 ============================================================================ +08:26:13 FNo. Len. Field Value +08:26:13 ============================================================================ +08:26:13 [ 1] [ 4] [0200] +08:26:13 [ 2] [ 16] [6688990040059428] +08:26:13 [ 3] [ 6] [010000] +08:26:13 [ 4] [ 12] [000005000000] +08:26:13 [ 7] [ 10] [0320082609] +08:26:13 [ 11] [ 6] [683754] +08:26:13 [ 12] [ 6] [082609] +08:26:13 [ 13] [ 4] [0320] +08:26:13 [ 15] [ 4] [0320] +08:26:13 [ 18] [ 4] [6011] +08:26:13 [ 22] [ 3] [900] +08:26:13 [ 25] [ 2] [02] +08:26:13 [ 28] [ 9] [D00002000] +08:26:13 [ 32] [ 6] [621354] +08:26:13 [ 35] [ 37] [6688990040059428=97121261612149800000] +08:26:13 [ 37] [ 12] [507903365332] +08:26:13 [ 41] [ 8] [13001600] +08:26:13 [ 42] [ 15] [NATIVE ] +08:26:13 [ 43] [ 40] [Khangkhai College Paek LAO] +08:26:13 [ 49] [ 3] [418] +08:26:13 [ 52] [ 16] [31BD2BE1C917BE61] +08:26:13 ============================================================================ +08:26:13 + + +waiting on router queue for slot.... +08:26:13 Sending to : +08:26:13 ============================================================================ +08:26:13 ============================================================================ +08:26:13 Slot Id : <339> +08:26:13 Transaction Type : REQUEST +08:26:13 Received From : +08:26:13 ============================================================================ +08:26:13 FNo. Len. Field Value +08:26:13 ============================================================================ +08:26:13 [ 1] [ 4] [0200] +08:26:13 [ 2] [ 16] [6688990040059428] +08:26:13 [ 3] [ 6] [010000] +08:26:13 [ 4] [ 12] [000005000000] +08:26:13 [ 7] [ 10] [0320082609] +08:26:13 [ 11] [ 6] [683754] +08:26:13 [ 12] [ 6] [082609] +08:26:13 [ 13] [ 4] [0320] +08:26:13 [ 15] [ 4] [0320] +08:26:13 [ 18] [ 4] [6011] +08:26:13 [ 22] [ 3] [900] +08:26:13 [ 25] [ 2] [02] +08:26:13 [ 28] [ 9] [D00002000] +08:26:13 [ 32] [ 6] [621354] +08:26:13 [ 35] [ 37] [6688990040059428=97121261612149800000] +08:26:13 [ 37] [ 12] [507903365332] +08:26:13 [ 41] [ 8] [13001600] +08:26:13 [ 42] [ 15] [NATIVE ] +08:26:13 [ 43] [ 40] [Khangkhai College Paek LAO] +08:26:13 [ 49] [ 3] [418] +08:26:13 [ 52] [ 16] [3BB4490A13D96039] +08:26:13 ============================================================================ +08:26:13 + + +waiting on router queue for slot.... +08:26:13 Sending to : <4> +08:26:13 ============================================================================ +08:26:13 ============================================================================ +08:26:13 Slot Id : <329> +08:26:13 Transaction Type : RESPONSE +08:26:13 Received From : +08:26:13 ============================================================================ +08:26:13 FNo. Len. Field Value +08:26:13 ============================================================================ +08:26:13 [ 1] [ 4] [0210] +08:26:13 [ 2] [ 16] [6688990040116079] +08:26:13 [ 3] [ 6] [301000] +08:26:13 [ 4] [ 12] [000000000000] +08:26:13 [ 11] [ 6] [202077] +08:26:13 [ 12] [ 6] [202442] +08:26:13 [ 15] [ 4] [0319] +08:26:13 [ 18] [ 4] [6011] +08:26:13 [ 32] [ 6] [198901] +08:26:13 [ 35] [ 37] [6688990040116079=98031261868918700000] +08:26:13 [ 37] [ 12] [507908202077] +08:26:13 [ 38] [ 6] [032529] +08:26:13 [ 39] [ 2] [00] +08:26:13 [ 41] [ 8] [01529031] +08:26:13 [ 49] [ 3] [418] +08:26:13 [ 54] [ 20] [1002418C000019804932] +08:26:13 ============================================================================ +08:26:13 Calculate Source COMM Id = 5 +08:26:13 ============================================================================ +08:26:13 + + +waiting on router queue for slot.... +08:26:14 ============================================================================ +08:26:14 Slot Id : <339> +08:26:14 Transaction Type : RESPONSE +08:26:14 Received From : +08:26:14 ============================================================================ +08:26:14 FNo. Len. Field Value +08:26:14 ============================================================================ +08:26:14 [ 1] [ 4] [0210] +08:26:14 [ 2] [ 16] [6688990040059428] +08:26:14 [ 3] [ 6] [010000] +08:26:14 [ 4] [ 12] [000005000000] +08:26:14 [ 11] [ 6] [683754] +08:26:14 [ 12] [ 6] [082609] +08:26:14 [ 15] [ 4] [0320] +08:26:14 [ 18] [ 4] [6011] +08:26:14 [ 32] [ 6] [621354] +08:26:14 [ 35] [ 37] [6688990040059428=97121261612149800000] +08:26:14 [ 37] [ 12] [507903365332] +08:26:14 [ 38] [ 6] [502951] +08:26:14 [ 39] [ 2] [00] +08:26:14 [ 41] [ 8] [13001600] +08:26:14 [ 49] [ 3] [418] +08:26:14 [ 54] [ 20] [0002418C000008879628] +08:26:14 ============================================================================ +08:26:14 Sending to : +08:26:14 ============================================================================ +08:26:14 + + +waiting on router queue for slot.... +08:26:15 ============================================================================ +08:26:15 Slot Id : <339> +08:26:15 Transaction Type : RESPONSE +08:26:15 Received From : +08:26:15 ============================================================================ +08:26:15 FNo. Len. Field Value +08:26:15 ============================================================================ +08:26:15 [ 1] [ 4] [0210] +08:26:15 [ 2] [ 16] [6688990040059428] +08:26:15 [ 3] [ 6] [010000] +08:26:15 [ 4] [ 12] [000005000000] +08:26:15 [ 11] [ 6] [683754] +08:26:15 [ 12] [ 6] [082609] +08:26:15 [ 15] [ 4] [0320] +08:26:15 [ 18] [ 4] [6011] +08:26:15 [ 32] [ 6] [621354] +08:26:15 [ 35] [ 37] [6688990040059428=97121261612149800000] +08:26:15 [ 37] [ 12] [507903365332] +08:26:15 [ 38] [ 6] [502951] +08:26:15 [ 39] [ 2] [00] +08:26:15 [ 41] [ 8] [13001600] +08:26:15 [ 49] [ 3] [418] +08:26:15 [ 54] [ 20] [0002418C000008879628] +08:26:15 ============================================================================ +08:26:15 Calculate Source COMM Id = 0 +08:26:15 ============================================================================ +08:26:15 + + +waiting on router queue for slot.... +08:26:20 ============================================================================ +08:26:20 Slot Id : <348> +08:26:20 Transaction Type : REQUEST +08:26:20 Received From : +08:26:20 ============================================================================ +08:26:20 FNo. Len. Field Value +08:26:20 ============================================================================ +08:26:20 [ 1] [ 4] [0200] +08:26:20 [ 2] [ 16] [6688990060026802] +08:26:20 [ 3] [ 6] [301000] +08:26:20 [ 4] [ 12] [000000000000] +08:26:20 [ 7] [ 10] [0320082616] +08:26:20 [ 11] [ 6] [683768] +08:26:20 [ 12] [ 6] [082616] +08:26:20 [ 13] [ 4] [0320] +08:26:20 [ 15] [ 4] [0320] +08:26:20 [ 18] [ 4] [6011] +08:26:20 [ 22] [ 3] [900] +08:26:20 [ 25] [ 2] [02] +08:26:20 [ 28] [ 9] [D00000000] +08:26:20 [ 32] [ 6] [621354] +08:26:20 [ 35] [ 37] [6688990060026802=98021261727789100000] +08:26:20 [ 37] [ 12] [507904153771] +08:26:20 [ 41] [ 8] [20001000] +08:26:20 [ 42] [ 15] [NATIVE ] +08:26:20 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:26:20 [ 49] [ 3] [418] +08:26:20 [ 52] [ 16] [55C281F155460FFD] +08:26:20 ============================================================================ +08:26:20 + + +waiting on router queue for slot.... +08:26:20 Sending to : +08:26:20 ============================================================================ +08:26:20 Sending to : +08:26:20 ============================================================================ +08:26:20 ============================================================================ +08:26:20 Slot Id : <309> +08:26:20 Transaction Type : REQUEST +08:26:20 Received From : +08:26:20 ============================================================================ +08:26:20 FNo. Len. Field Value +08:26:20 ============================================================================ +08:26:20 [ 1] [ 4] [0800] +08:26:20 [ 7] [ 10] [0320012412] +08:26:20 [ 11] [ 6] [077668] +08:26:20 [ 37] [ 12] [57908077668] +08:26:20 [ 70] [ 3] [301] +08:26:20 ============================================================================ +08:26:20 + + +waiting on router queue for slot.... +08:26:20 Sending to : +08:26:20 ============================================================================ +08:26:20 ============================================================================ +08:26:20 Slot Id : <309> +08:26:20 Transaction Type : RESPONSE +08:26:20 Received From : +08:26:20 ============================================================================ +08:26:20 FNo. Len. Field Value +08:26:20 ============================================================================ +08:26:20 [ 1] [ 4] [0810] +08:26:20 [ 7] [ 10] [0320012412] +08:26:20 [ 11] [ 6] [077668] +08:26:20 [ 37] [ 12] [579080776680] +08:26:20 [ 39] [ 2] [00] +08:26:20 [ 70] [ 3] [810] +08:26:20 ============================================================================ +08:26:20 Calculate Source COMM Id = 4 +08:26:20 ============================================================================ +08:26:20 + + +waiting on router queue for slot.... +08:26:20 ============================================================================ +08:26:20 Slot Id : <348> +08:26:20 Transaction Type : REQUEST +08:26:20 Received From : +08:26:20 ============================================================================ +08:26:20 FNo. Len. Field Value +08:26:20 ============================================================================ +08:26:20 [ 1] [ 4] [0200] +08:26:20 [ 2] [ 16] [6688990060026802] +08:26:20 [ 3] [ 6] [301000] +08:26:20 [ 4] [ 12] [000000000000] +08:26:20 [ 7] [ 10] [0320082616] +08:26:20 [ 11] [ 6] [683768] +08:26:20 [ 12] [ 6] [082616] +08:26:20 [ 13] [ 4] [0320] +08:26:20 [ 15] [ 4] [0320] +08:26:20 [ 18] [ 4] [6011] +08:26:20 [ 22] [ 3] [900] +08:26:20 [ 25] [ 2] [02] +08:26:20 [ 28] [ 9] [D00000000] +08:26:20 [ 32] [ 6] [621354] +08:26:20 [ 35] [ 37] [6688990060026802=98021261727789100000] +08:26:20 [ 37] [ 12] [507904153771] +08:26:20 [ 41] [ 8] [20001000] +08:26:20 [ 42] [ 15] [NATIVE ] +08:26:20 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:26:20 [ 49] [ 3] [418] +08:26:20 [ 52] [ 16] [55C281F155460FFD] +08:26:20 ============================================================================ +08:26:20 + + +waiting on router queue for slot.... +08:26:20 Sending to : +08:26:20 ============================================================================ +08:26:21 ============================================================================ +08:26:21 Slot Id : <348> +08:26:21 Transaction Type : REQUEST +08:26:21 Received From : +08:26:21 ============================================================================ +08:26:21 FNo. Len. Field Value +08:26:21 ============================================================================ +08:26:21 [ 1] [ 4] [0200] +08:26:21 [ 2] [ 16] [6688990060026802] +08:26:21 [ 3] [ 6] [301000] +08:26:21 [ 4] [ 12] [000000000000] +08:26:21 [ 7] [ 10] [0320082616] +08:26:21 [ 11] [ 6] [683768] +08:26:21 [ 12] [ 6] [082616] +08:26:21 [ 13] [ 4] [0320] +08:26:21 [ 15] [ 4] [0320] +08:26:21 [ 18] [ 4] [6011] +08:26:21 [ 22] [ 3] [900] +08:26:21 [ 25] [ 2] [02] +08:26:21 [ 28] [ 9] [D00000000] +08:26:21 [ 32] [ 6] [621354] +08:26:21 [ 35] [ 37] [6688990060026802=98021261727789100000] +08:26:21 [ 37] [ 12] [507904153771] +08:26:21 [ 41] [ 8] [20001000] +08:26:21 [ 42] [ 15] [NATIVE ] +08:26:21 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:26:21 [ 49] [ 3] [418] +08:26:21 [ 52] [ 16] [BDD19AC369DF1D39] +08:26:21 ============================================================================ +08:26:21 + + +waiting on router queue for slot.... +08:26:21 Sending to : <4> +08:26:21 ============================================================================ +08:26:21 ============================================================================ +08:26:21 Slot Id : <348> +08:26:21 Transaction Type : RESPONSE +08:26:21 Received From : +08:26:21 ============================================================================ +08:26:21 FNo. Len. Field Value +08:26:21 ============================================================================ +08:26:21 [ 1] [ 4] [0210] +08:26:21 [ 2] [ 16] [6688990060026802] +08:26:21 [ 3] [ 6] [301000] +08:26:21 [ 4] [ 12] [000000000000] +08:26:21 [ 11] [ 6] [683768] +08:26:21 [ 12] [ 6] [082616] +08:26:21 [ 15] [ 4] [0320] +08:26:21 [ 18] [ 4] [6011] +08:26:21 [ 32] [ 6] [621354] +08:26:21 [ 35] [ 37] [6688990060026802=98021261727789100000] +08:26:21 [ 37] [ 12] [507904153771] +08:26:21 [ 38] [ 6] [403046] +08:26:21 [ 39] [ 2] [00] +08:26:21 [ 41] [ 8] [20001000] +08:26:21 [ 49] [ 3] [418] +08:26:21 [ 54] [ 20] [1002418C000058179874] +08:26:21 ============================================================================ +08:26:21 Sending to : +08:26:21 ============================================================================ +08:26:21 + + +waiting on router queue for slot.... +08:26:23 ============================================================================ +08:26:23 Slot Id : <348> +08:26:23 Transaction Type : RESPONSE +08:26:23 Received From : +08:26:23 ============================================================================ +08:26:23 FNo. Len. Field Value +08:26:23 ============================================================================ +08:26:23 [ 1] [ 4] [0210] +08:26:23 [ 2] [ 16] [6688990060026802] +08:26:23 [ 3] [ 6] [301000] +08:26:23 [ 4] [ 12] [000000000000] +08:26:23 [ 11] [ 6] [683768] +08:26:23 [ 12] [ 6] [082616] +08:26:23 [ 15] [ 4] [0320] +08:26:23 [ 18] [ 4] [6011] +08:26:23 [ 32] [ 6] [621354] +08:26:23 [ 35] [ 37] [6688990060026802=98021261727789100000] +08:26:23 [ 37] [ 12] [507904153771] +08:26:23 [ 38] [ 6] [403046] +08:26:23 [ 39] [ 2] [00] +08:26:23 [ 41] [ 8] [20001000] +08:26:23 [ 49] [ 3] [418] +08:26:23 [ 54] [ 20] [1002418C000058179874] +08:26:23 ============================================================================ +08:26:23 Calculate Source COMM Id = 0 +08:26:23 ============================================================================ +08:26:23 + + +waiting on router queue for slot.... +08:26:26 ============================================================================ +08:26:26 Slot Id : <328> +08:26:26 Transaction Type : REQUEST +08:26:26 Received From : +08:26:26 ============================================================================ +08:26:26 FNo. Len. Field Value +08:26:26 ============================================================================ +08:26:26 [ 1] [ 4] [0200] +08:26:26 [ 2] [ 16] [6213544001183562] +08:26:26 [ 3] [ 6] [011000] +08:26:26 [ 4] [ 12] [000030000000] +08:26:26 [ 7] [ 10] [0320012533] +08:26:26 [ 11] [ 6] [267156] +08:26:26 [ 12] [ 6] [082533] +08:26:26 [ 13] [ 4] [0320] +08:26:26 [ 14] [ 4] [4912] +08:26:26 [ 15] [ 4] [0320] +08:26:26 [ 18] [ 4] [6011] +08:26:26 [ 19] [ 3] [418] +08:26:26 [ 22] [ 3] [021] +08:26:26 [ 25] [ 2] [01] +08:26:26 [ 28] [ 9] [D00002000] +08:26:26 [ 32] [ 6] [180893] +08:26:26 [ 35] [ 32] [6213544001183562=491212018356298] +08:26:26 [ 37] [ 12] [507901267156] +08:26:26 [ 41] [ 8] [0421BKPH] +08:26:26 [ 42] [ 15] [999999 ] +08:26:26 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +08:26:26 [ 49] [ 3] [418] +08:26:26 [ 52] [ 16] [977F0EC6CFDBB30C] +08:26:26 ============================================================================ +08:26:26 + + +waiting on router queue for slot.... +08:26:26 Sending to : +08:26:26 ============================================================================ +08:26:26 Sending to : +08:26:26 ============================================================================ +08:26:26 ============================================================================ +08:26:26 Slot Id : <328> +08:26:26 Transaction Type : REQUEST +08:26:26 Received From : +08:26:26 ============================================================================ +08:26:26 FNo. Len. Field Value +08:26:26 ============================================================================ +08:26:26 [ 1] [ 4] [0200] +08:26:26 [ 2] [ 16] [6213544001183562] +08:26:26 [ 3] [ 6] [011000] +08:26:26 [ 4] [ 12] [000030000000] +08:26:26 [ 7] [ 10] [0320012533] +08:26:26 [ 11] [ 6] [267156] +08:26:26 [ 12] [ 6] [082533] +08:26:26 [ 13] [ 4] [0320] +08:26:26 [ 14] [ 4] [4912] +08:26:26 [ 15] [ 4] [0320] +08:26:26 [ 18] [ 4] [6011] +08:26:26 [ 19] [ 3] [418] +08:26:26 [ 22] [ 3] [021] +08:26:26 [ 25] [ 2] [01] +08:26:26 [ 28] [ 9] [D00002000] +08:26:26 [ 32] [ 6] [180893] +08:26:26 [ 35] [ 32] [6213544001183562=491212018356298] +08:26:26 [ 37] [ 12] [507901267156] +08:26:26 [ 41] [ 8] [0421BKPH] +08:26:26 [ 42] [ 15] [999999 ] +08:26:26 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +08:26:26 [ 49] [ 3] [418] +08:26:26 [ 52] [ 16] [977F0EC6CFDBB30C] +08:26:26 ============================================================================ +08:26:26 + + +waiting on router queue for slot.... +08:26:26 Sending to : +08:26:26 ============================================================================ +08:26:26 ============================================================================ +08:26:26 Slot Id : <328> +08:26:26 Transaction Type : REQUEST +08:26:26 Received From : +08:26:26 ============================================================================ +08:26:26 FNo. Len. Field Value +08:26:26 ============================================================================ +08:26:26 [ 1] [ 4] [0200] +08:26:26 [ 2] [ 16] [6213544001183562] +08:26:26 [ 3] [ 6] [011000] +08:26:26 [ 4] [ 12] [000030000000] +08:26:26 [ 7] [ 10] [0320012533] +08:26:26 [ 11] [ 6] [267156] +08:26:26 [ 12] [ 6] [082533] +08:26:26 [ 13] [ 4] [0320] +08:26:26 [ 14] [ 4] [4912] +08:26:26 [ 15] [ 4] [0320] +08:26:26 [ 18] [ 4] [6011] +08:26:26 [ 19] [ 3] [418] +08:26:26 [ 22] [ 3] [021] +08:26:26 [ 25] [ 2] [01] +08:26:26 [ 28] [ 9] [D00002000] +08:26:26 [ 32] [ 6] [180893] +08:26:26 [ 35] [ 32] [6213544001183562=491212018356298] +08:26:26 [ 37] [ 12] [507901267156] +08:26:26 [ 41] [ 8] [0421BKPH] +08:26:26 [ 42] [ 15] [999999 ] +08:26:26 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +08:26:26 [ 49] [ 3] [418] +08:26:26 [ 52] [ 16] [DCD484C7120BB4B1] +08:26:26 ============================================================================ +08:26:26 + + +waiting on router queue for slot.... +08:26:26 Sending to : <0> +08:26:26 ============================================================================ +08:26:27 ============================================================================ +08:26:27 Slot Id : <352> +08:26:27 Transaction Type : REQUEST +08:26:27 Received From : +08:26:27 ============================================================================ +08:26:27 FNo. Len. Field Value +08:26:27 ============================================================================ +08:26:27 [ 1] [ 4] [0800] +08:26:27 [ 7] [ 10] [0320012535] +08:26:27 [ 11] [ 6] [155403] +08:26:27 [ 70] [ 3] [301] +08:26:27 ============================================================================ +08:26:27 + + +waiting on router queue for slot.... +08:26:27 Sending to : +08:26:27 ============================================================================ +08:26:27 ============================================================================ +08:26:27 Slot Id : <352> +08:26:27 Transaction Type : RESPONSE +08:26:27 Received From : +08:26:27 ============================================================================ +08:26:27 FNo. Len. Field Value +08:26:27 ============================================================================ +08:26:27 [ 1] [ 4] [0810] +08:26:27 [ 7] [ 10] [0320012535] +08:26:27 [ 11] [ 6] [155403] +08:26:27 [ 39] [ 2] [00] +08:26:27 [ 70] [ 3] [301] +08:26:27 ============================================================================ +08:26:27 Calculate Source COMM Id = 2 +08:26:27 ============================================================================ +08:26:27 + + +waiting on router queue for slot.... +08:26:27 ============================================================================ +08:26:27 Slot Id : <328> +08:26:27 Transaction Type : RESPONSE +08:26:27 Received From : +08:26:27 ============================================================================ +08:26:27 FNo. Len. Field Value +08:26:27 ============================================================================ +08:26:27 [ 1] [ 4] [0210] +08:26:27 [ 2] [ 16] [6213544001183562] +08:26:27 [ 3] [ 6] [011000] +08:26:27 [ 4] [ 12] [000030000000] +08:26:27 [ 7] [ 10] [0320012533] +08:26:27 [ 11] [ 6] [267156] +08:26:27 [ 12] [ 6] [082533] +08:26:27 [ 13] [ 4] [0320] +08:26:27 [ 15] [ 4] [0320] +08:26:27 [ 18] [ 4] [6011] +08:26:27 [ 19] [ 3] [418] +08:26:27 [ 32] [ 6] [180893] +08:26:27 [ 35] [ 32] [6213544001183562=491212018356298] +08:26:27 [ 37] [ 12] [507901267156] +08:26:27 [ 38] [ 6] [894625] +08:26:27 [ 39] [ 2] [00] +08:26:27 [ 41] [ 8] [0421BKPH] +08:26:27 [ 49] [ 3] [418] +08:26:27 [ 54] [ 40] [1001418C0000143195271002418C000014319527] +08:26:27 ============================================================================ +08:26:27 Sending to : +08:26:27 ============================================================================ +08:26:27 + + +waiting on router queue for slot.... +08:26:29 ============================================================================ +08:26:29 Slot Id : <328> +08:26:29 Transaction Type : RESPONSE +08:26:29 Received From : +08:26:29 ============================================================================ +08:26:29 FNo. Len. Field Value +08:26:29 ============================================================================ +08:26:29 [ 1] [ 4] [0210] +08:26:29 [ 2] [ 16] [6213544001183562] +08:26:29 [ 3] [ 6] [011000] +08:26:29 [ 4] [ 12] [000030000000] +08:26:29 [ 7] [ 10] [0320012533] +08:26:29 [ 11] [ 6] [267156] +08:26:29 [ 12] [ 6] [082533] +08:26:29 [ 13] [ 4] [0320] +08:26:29 [ 15] [ 4] [0320] +08:26:29 [ 18] [ 4] [6011] +08:26:29 [ 19] [ 3] [418] +08:26:29 [ 32] [ 6] [180893] +08:26:29 [ 35] [ 32] [6213544001183562=491212018356298] +08:26:29 [ 37] [ 12] [507901267156] +08:26:29 [ 38] [ 6] [894625] +08:26:29 [ 39] [ 2] [00] +08:26:29 [ 41] [ 8] [0421BKPH] +08:26:29 [ 49] [ 3] [418] +08:26:29 [ 54] [ 40] [1001418C0000143195271002418C000014319527] +08:26:29 ============================================================================ +08:26:29 Calculate Source COMM Id = 2 +08:26:29 ============================================================================ +08:26:29 + + +waiting on router queue for slot.... +08:26:42 ============================================================================ +08:26:42 Slot Id : <347> +08:26:42 Transaction Type : REQUEST +08:26:42 Received From : +08:26:42 ============================================================================ +08:26:42 FNo. Len. Field Value +08:26:42 ============================================================================ +08:26:42 [ 1] [ 4] [0800] +08:26:42 [ 7] [ 10] [0320012551] +08:26:42 [ 11] [ 6] [155404] +08:26:42 [ 70] [ 3] [301] +08:26:42 ============================================================================ +08:26:42 + + +waiting on router queue for slot.... +08:26:42 Sending to : +08:26:42 ============================================================================ +08:26:42 ============================================================================ +08:26:42 Slot Id : <347> +08:26:42 Transaction Type : RESPONSE +08:26:42 Received From : +08:26:42 ============================================================================ +08:26:42 FNo. Len. Field Value +08:26:42 ============================================================================ +08:26:42 [ 1] [ 4] [0810] +08:26:42 [ 7] [ 10] [0320012551] +08:26:42 [ 11] [ 6] [155404] +08:26:42 [ 39] [ 2] [00] +08:26:42 [ 70] [ 3] [301] +08:26:42 ============================================================================ +08:26:42 Calculate Source COMM Id = 2 +08:26:42 ============================================================================ +08:26:42 + + +waiting on router queue for slot.... +08:26:44 ============================================================================ +08:26:44 Slot Id : <350> +08:26:44 Transaction Type : REQUEST +08:26:44 Received From : +08:26:44 ============================================================================ +08:26:44 FNo. Len. Field Value +08:26:44 ============================================================================ +08:26:44 [ 1] [ 4] [0200] +08:26:44 [ 2] [ 16] [6688990040116079] +08:26:44 [ 3] [ 6] [011000] +08:26:44 [ 4] [ 12] [000005000000] +08:26:44 [ 7] [ 10] [0320082706] +08:26:44 [ 11] [ 6] [202081] +08:26:44 [ 12] [ 6] [202517] +08:26:44 [ 13] [ 4] [0319] +08:26:44 [ 14] [ 4] [9803] +08:26:44 [ 15] [ 4] [0319] +08:26:44 [ 18] [ 4] [6011] +08:26:44 [ 19] [ 3] [418] +08:26:44 [ 22] [ 3] [021] +08:26:44 [ 25] [ 2] [01] +08:26:44 [ 28] [ 9] [D00002000] +08:26:44 [ 32] [ 6] [198901] +08:26:44 [ 35] [ 37] [6688990040116079=98031261868918700000] +08:26:44 [ 37] [ 12] [507908202081] +08:26:44 [ 41] [ 8] [01529031] +08:26:44 [ 42] [ 15] [000000041529031] +08:26:44 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +08:26:44 [ 49] [ 3] [418] +08:26:44 [ 52] [ 16] [D4B4E301339F3E33] +08:26:44 ============================================================================ +08:26:44 + + +waiting on router queue for slot.... +08:26:44 Sending to : +08:26:44 ============================================================================ +08:26:44 Sending to : +08:26:44 ============================================================================ +08:26:45 ============================================================================ +08:26:45 Slot Id : <350> +08:26:45 Transaction Type : REQUEST +08:26:45 Received From : +08:26:45 ============================================================================ +08:26:45 FNo. Len. Field Value +08:26:45 ============================================================================ +08:26:45 [ 1] [ 4] [0200] +08:26:45 [ 2] [ 16] [6688990040116079] +08:26:45 [ 3] [ 6] [011000] +08:26:45 [ 4] [ 12] [000005000000] +08:26:45 [ 7] [ 10] [0320082706] +08:26:45 [ 11] [ 6] [202081] +08:26:45 [ 12] [ 6] [202517] +08:26:45 [ 13] [ 4] [0319] +08:26:45 [ 14] [ 4] [9803] +08:26:45 [ 15] [ 4] [0319] +08:26:45 [ 18] [ 4] [6011] +08:26:45 [ 19] [ 3] [418] +08:26:45 [ 22] [ 3] [021] +08:26:45 [ 25] [ 2] [01] +08:26:45 [ 28] [ 9] [D00002000] +08:26:45 [ 32] [ 6] [198901] +08:26:45 [ 35] [ 37] [6688990040116079=98031261868918700000] +08:26:45 [ 37] [ 12] [507908202081] +08:26:45 [ 41] [ 8] [01529031] +08:26:45 [ 42] [ 15] [000000041529031] +08:26:45 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +08:26:45 [ 49] [ 3] [418] +08:26:45 [ 52] [ 16] [D4B4E301339F3E33] +08:26:45 ============================================================================ +08:26:45 + + +waiting on router queue for slot.... +08:26:45 Sending to : +08:26:45 ============================================================================ +08:26:45 ============================================================================ +08:26:45 Slot Id : <350> +08:26:45 Transaction Type : REQUEST +08:26:45 Received From : +08:26:45 ============================================================================ +08:26:45 FNo. Len. Field Value +08:26:45 ============================================================================ +08:26:45 [ 1] [ 4] [0200] +08:26:45 [ 2] [ 16] [6688990040116079] +08:26:45 [ 3] [ 6] [011000] +08:26:45 [ 4] [ 12] [000005000000] +08:26:45 [ 7] [ 10] [0320082706] +08:26:45 [ 11] [ 6] [202081] +08:26:45 [ 12] [ 6] [202517] +08:26:45 [ 13] [ 4] [0319] +08:26:45 [ 14] [ 4] [9803] +08:26:45 [ 15] [ 4] [0319] +08:26:45 [ 18] [ 4] [6011] +08:26:45 [ 19] [ 3] [418] +08:26:45 [ 22] [ 3] [021] +08:26:45 [ 25] [ 2] [01] +08:26:45 [ 28] [ 9] [D00002000] +08:26:45 [ 32] [ 6] [198901] +08:26:45 [ 35] [ 37] [6688990040116079=98031261868918700000] +08:26:45 [ 37] [ 12] [507908202081] +08:26:45 [ 41] [ 8] [01529031] +08:26:45 [ 42] [ 15] [000000041529031] +08:26:45 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +08:26:45 [ 49] [ 3] [418] +08:26:45 [ 52] [ 16] [8BB0A78338F66C3F] +08:26:45 ============================================================================ +08:26:45 + + +waiting on router queue for slot.... +08:26:45 Sending to : <4> +08:26:45 ============================================================================ +08:26:47 ============================================================================ +08:26:47 Slot Id : <350> +08:26:47 Transaction Type : RESPONSE +08:26:47 Received From : +08:26:47 ============================================================================ +08:26:47 FNo. Len. Field Value +08:26:47 ============================================================================ +08:26:47 [ 1] [ 4] [0210] +08:26:47 [ 2] [ 16] [6688990040116079] +08:26:47 [ 3] [ 6] [011000] +08:26:47 [ 4] [ 12] [000005000000] +08:26:47 [ 11] [ 6] [202081] +08:26:47 [ 12] [ 6] [202517] +08:26:47 [ 15] [ 4] [0319] +08:26:47 [ 18] [ 4] [6011] +08:26:47 [ 32] [ 6] [198901] +08:26:47 [ 35] [ 37] [6688990040116079=98031261868918700000] +08:26:47 [ 37] [ 12] [507908202081] +08:26:47 [ 38] [ 6] [603407] +08:26:47 [ 39] [ 2] [00] +08:26:47 [ 41] [ 8] [01529031] +08:26:47 [ 49] [ 3] [418] +08:26:47 [ 54] [ 20] [1002418C000014604932] +08:26:47 ============================================================================ +08:26:47 Sending to : +08:26:47 ============================================================================ +08:26:47 + + +waiting on router queue for slot.... +08:26:48 ============================================================================ +08:26:48 Slot Id : <350> +08:26:48 Transaction Type : RESPONSE +08:26:48 Received From : +08:26:48 ============================================================================ +08:26:48 FNo. Len. Field Value +08:26:48 ============================================================================ +08:26:48 [ 1] [ 4] [0210] +08:26:48 [ 2] [ 16] [6688990040116079] +08:26:48 [ 3] [ 6] [011000] +08:26:48 [ 4] [ 12] [000005000000] +08:26:48 [ 11] [ 6] [202081] +08:26:48 [ 12] [ 6] [202517] +08:26:48 [ 15] [ 4] [0319] +08:26:48 [ 18] [ 4] [6011] +08:26:48 [ 32] [ 6] [198901] +08:26:48 [ 35] [ 37] [6688990040116079=98031261868918700000] +08:26:48 [ 37] [ 12] [507908202081] +08:26:48 [ 38] [ 6] [603407] +08:26:48 [ 39] [ 2] [00] +08:26:48 [ 41] [ 8] [01529031] +08:26:48 [ 49] [ 3] [418] +08:26:48 [ 54] [ 20] [1002418C000014604932] +08:26:48 ============================================================================ +08:26:48 Calculate Source COMM Id = 5 +08:26:48 ============================================================================ +08:26:48 + + +waiting on router queue for slot.... +08:26:50 ============================================================================ +08:26:50 Slot Id : <319> +08:26:50 Transaction Type : REQUEST +08:26:50 Received From : +08:26:50 ============================================================================ +08:26:50 FNo. Len. Field Value +08:26:50 ============================================================================ +08:26:50 [ 1] [ 4] [0200] +08:26:50 [ 2] [ 16] [6688990106517608] +08:26:50 [ 3] [ 6] [301000] +08:26:50 [ 4] [ 12] [000000000000] +08:26:50 [ 7] [ 10] [0320082646] +08:26:50 [ 11] [ 6] [683918] +08:26:50 [ 12] [ 6] [082646] +08:26:50 [ 13] [ 4] [0320] +08:26:50 [ 15] [ 4] [0320] +08:26:50 [ 18] [ 4] [6011] +08:26:50 [ 22] [ 3] [900] +08:26:50 [ 25] [ 2] [02] +08:26:50 [ 28] [ 9] [D00000000] +08:26:50 [ 32] [ 6] [621354] +08:26:50 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:26:50 [ 37] [ 12] [507902782761] +08:26:50 [ 41] [ 8] [01007200] +08:26:50 [ 42] [ 15] [NATIVE ] +08:26:50 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +08:26:50 [ 49] [ 3] [418] +08:26:50 [ 52] [ 16] [478FFCC2538FF966] +08:26:50 ============================================================================ +08:26:50 + + +waiting on router queue for slot.... +08:26:50 Sending to : +08:26:50 ============================================================================ +08:26:50 Sending to : +08:26:50 ============================================================================ +08:26:50 ============================================================================ +08:26:50 Slot Id : <319> +08:26:50 Transaction Type : REQUEST +08:26:50 Received From : +08:26:50 ============================================================================ +08:26:50 FNo. Len. Field Value +08:26:50 ============================================================================ +08:26:50 [ 1] [ 4] [0200] +08:26:50 [ 2] [ 16] [6688990106517608] +08:26:50 [ 3] [ 6] [301000] +08:26:50 [ 4] [ 12] [000000000000] +08:26:50 [ 7] [ 10] [0320082646] +08:26:50 [ 11] [ 6] [683918] +08:26:50 [ 12] [ 6] [082646] +08:26:50 [ 13] [ 4] [0320] +08:26:50 [ 15] [ 4] [0320] +08:26:50 [ 18] [ 4] [6011] +08:26:50 [ 22] [ 3] [900] +08:26:50 [ 25] [ 2] [02] +08:26:50 [ 28] [ 9] [D00000000] +08:26:50 [ 32] [ 6] [621354] +08:26:50 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:26:50 [ 37] [ 12] [507902782761] +08:26:50 [ 41] [ 8] [01007200] +08:26:50 [ 42] [ 15] [NATIVE ] +08:26:50 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +08:26:50 [ 49] [ 3] [418] +08:26:50 [ 52] [ 16] [478FFCC2538FF966] +08:26:50 ============================================================================ +08:26:50 + + +waiting on router queue for slot.... +08:26:50 Sending to : +08:26:50 ============================================================================ +08:26:50 ============================================================================ +08:26:50 Slot Id : <319> +08:26:50 Transaction Type : REQUEST +08:26:50 Received From : +08:26:50 ============================================================================ +08:26:50 FNo. Len. Field Value +08:26:50 ============================================================================ +08:26:50 [ 1] [ 4] [0200] +08:26:50 [ 2] [ 16] [6688990106517608] +08:26:50 [ 3] [ 6] [301000] +08:26:50 [ 4] [ 12] [000000000000] +08:26:50 [ 7] [ 10] [0320082646] +08:26:50 [ 11] [ 6] [683918] +08:26:50 [ 12] [ 6] [082646] +08:26:50 [ 13] [ 4] [0320] +08:26:50 [ 15] [ 4] [0320] +08:26:50 [ 18] [ 4] [6011] +08:26:50 [ 22] [ 3] [900] +08:26:50 [ 25] [ 2] [02] +08:26:50 [ 28] [ 9] [D00000000] +08:26:50 [ 32] [ 6] [621354] +08:26:50 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:26:50 [ 37] [ 12] [507902782761] +08:26:50 [ 41] [ 8] [01007200] +08:26:50 [ 42] [ 15] [NATIVE ] +08:26:50 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +08:26:50 [ 49] [ 3] [418] +08:26:50 [ 52] [ 16] [53E9485D13E0029B] +08:26:50 ============================================================================ +08:26:50 + + +waiting on router queue for slot.... +08:26:50 Sending to : <4> +08:26:50 ============================================================================ +08:26:51 ============================================================================ +08:26:51 Slot Id : <319> +08:26:51 Transaction Type : RESPONSE +08:26:51 Received From : +08:26:51 ============================================================================ +08:26:51 FNo. Len. Field Value +08:26:51 ============================================================================ +08:26:51 [ 1] [ 4] [0210] +08:26:51 [ 2] [ 16] [6688990106517608] +08:26:51 [ 3] [ 6] [301000] +08:26:51 [ 4] [ 12] [000000000000] +08:26:51 [ 11] [ 6] [683918] +08:26:51 [ 12] [ 6] [082646] +08:26:51 [ 15] [ 4] [0320] +08:26:51 [ 18] [ 4] [6011] +08:26:51 [ 32] [ 6] [621354] +08:26:51 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:26:51 [ 37] [ 12] [507902782761] +08:26:51 [ 38] [ 6] [180983] +08:26:51 [ 39] [ 2] [00] +08:26:51 [ 41] [ 8] [01007200] +08:26:51 [ 49] [ 3] [418] +08:26:51 [ 54] [ 20] [1002418C000300205952] +08:26:51 ============================================================================ +08:26:51 Sending to : +08:26:51 ============================================================================ +08:26:51 + + +waiting on router queue for slot.... +08:26:53 ============================================================================ +08:26:53 Slot Id : <319> +08:26:53 Transaction Type : RESPONSE +08:26:53 Received From : +08:26:53 ============================================================================ +08:26:53 FNo. Len. Field Value +08:26:53 ============================================================================ +08:26:53 [ 1] [ 4] [0210] +08:26:53 [ 2] [ 16] [6688990106517608] +08:26:53 [ 3] [ 6] [301000] +08:26:53 [ 4] [ 12] [000000000000] +08:26:53 [ 11] [ 6] [683918] +08:26:53 [ 12] [ 6] [082646] +08:26:53 [ 15] [ 4] [0320] +08:26:53 [ 18] [ 4] [6011] +08:26:53 [ 32] [ 6] [621354] +08:26:53 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:26:53 [ 37] [ 12] [507902782761] +08:26:53 [ 38] [ 6] [180983] +08:26:53 [ 39] [ 2] [00] +08:26:53 [ 41] [ 8] [01007200] +08:26:53 [ 49] [ 3] [418] +08:26:53 [ 54] [ 20] [1002418C000300205952] +08:26:53 ============================================================================ +08:26:53 Calculate Source COMM Id = 0 +08:26:53 ============================================================================ +08:26:53 + + +waiting on router queue for slot.... +08:26:56 ============================================================================ +08:26:56 Slot Id : <332> +08:26:56 Transaction Type : REQUEST +08:26:56 Received From : +08:26:56 ============================================================================ +08:26:56 FNo. Len. Field Value +08:26:56 ============================================================================ +08:26:56 [ 1] [ 4] [0800] +08:26:56 [ 2] [ 5] [02531] +08:26:56 [ 3] [ 6] [579088] +08:26:56 [ 7] [ 10] [0320012656] +08:26:56 [ 11] [ 6] [806902] +08:26:56 [ 15] [ 10] [0320012656] +08:26:56 [ 37] [ 11] [57908806902] +08:26:56 [ 70] [ 3] [001] +08:26:56 ============================================================================ +08:26:56 + + +waiting on router queue for slot.... +08:26:56 ============================================================================ +08:26:56 Slot Id : <332> +08:26:56 Transaction Type : RESPONSE +08:26:56 Received From : +08:26:56 ============================================================================ +08:26:56 FNo. Len. Field Value +08:26:56 ============================================================================ +08:26:56 [ 1] [ 4] [0810] +08:26:56 [ 7] [ 10] [0320012656] +08:26:56 [ 11] [ 6] [806902] +08:26:56 [ 15] [ 4] [0320] +08:26:56 [ 37] [ 12] [57908806902] +08:26:56 [ 39] [ 2] [00] +08:26:56 [ 70] [ 3] [001] +08:26:56 ============================================================================ +08:26:56 Sending to : +08:26:56 ============================================================================ +08:26:56 + + +waiting on router queue for slot.... +08:26:59 ============================================================================ +08:26:59 Slot Id : <346> +08:26:59 Transaction Type : REQUEST +08:26:59 Received From : +08:26:59 ============================================================================ +08:26:59 FNo. Len. Field Value +08:26:59 ============================================================================ +08:26:59 [ 1] [ 4] [0800] +08:26:59 [ 7] [ 10] [0320012607] +08:26:59 [ 11] [ 6] [155405] +08:26:59 [ 70] [ 3] [301] +08:26:59 ============================================================================ +08:26:59 + + +waiting on router queue for slot.... +08:26:59 Sending to : +08:26:59 ============================================================================ +08:26:59 ============================================================================ +08:26:59 Slot Id : <346> +08:26:59 Transaction Type : RESPONSE +08:26:59 Received From : +08:26:59 ============================================================================ +08:26:59 FNo. Len. Field Value +08:26:59 ============================================================================ +08:26:59 [ 1] [ 4] [0810] +08:26:59 [ 7] [ 10] [0320012607] +08:26:59 [ 11] [ 6] [155405] +08:26:59 [ 39] [ 2] [00] +08:26:59 [ 70] [ 3] [301] +08:26:59 ============================================================================ +08:26:59 Calculate Source COMM Id = 2 +08:26:59 ============================================================================ +08:26:59 + + +waiting on router queue for slot.... +08:27:00 ============================================================================ +08:27:00 Slot Id : <356> +08:27:00 Transaction Type : REQUEST +08:27:00 Received From : +08:27:00 ============================================================================ +08:27:00 FNo. Len. Field Value +08:27:00 ============================================================================ +08:27:00 [ 1] [ 4] [0800] +08:27:00 [ 7] [ 10] [0320012656] +08:27:00 [ 11] [ 6] [030682] +08:27:00 [ 37] [ 12] [507908030682] +08:27:00 [ 70] [ 3] [001] +08:27:00 ============================================================================ +08:27:00 + + +waiting on router queue for slot.... +08:27:00 Sending to : +08:27:00 ============================================================================ +08:27:00 ============================================================================ +08:27:00 Slot Id : <356> +08:27:00 Transaction Type : RESPONSE +08:27:00 Received From : +08:27:00 ============================================================================ +08:27:00 FNo. Len. Field Value +08:27:00 ============================================================================ +08:27:00 [ 1] [ 4] [0810] +08:27:00 [ 7] [ 10] [0320012656] +08:27:00 [ 11] [ 6] [030682] +08:27:00 [ 37] [ 12] [507908030682] +08:27:00 [ 39] [ 2] [00] +08:27:00 [ 70] [ 3] [001] +08:27:00 ============================================================================ +08:27:00 Calculate Source COMM Id = 0 +08:27:00 ============================================================================ +08:27:00 + + +waiting on router queue for slot.... +08:27:06 ============================================================================ +08:27:06 Slot Id : <357> +08:27:06 Transaction Type : REQUEST +08:27:06 Received From : +08:27:06 ============================================================================ +08:27:06 FNo. Len. Field Value +08:27:06 ============================================================================ +08:27:06 [ 1] [ 4] [0800] +08:27:06 [ 7] [ 10] [0320153854] +08:27:06 [ 11] [ 6] [083854] +08:27:06 [ 37] [ 12] [57908083854] +08:27:06 [ 70] [ 3] [301] +08:27:06 ============================================================================ +08:27:06 + + +waiting on router queue for slot.... +08:27:06 Sending to : +08:27:06 ============================================================================ +08:27:06 ============================================================================ +08:27:06 Slot Id : <357> +08:27:06 Transaction Type : RESPONSE +08:27:06 Received From : +08:27:06 ============================================================================ +08:27:06 FNo. Len. Field Value +08:27:06 ============================================================================ +08:27:06 [ 1] [ 4] [0810] +08:27:06 [ 7] [ 10] [0320153854] +08:27:06 [ 11] [ 6] [083854] +08:27:06 [ 37] [ 12] [579080838540] +08:27:06 [ 39] [ 2] [00] +08:27:06 [ 70] [ 3] [810] +08:27:06 ============================================================================ +08:27:06 Calculate Source COMM Id = 6 +08:27:06 ============================================================================ +08:27:06 + + +waiting on router queue for slot.... +08:27:09 ============================================================================ +08:27:09 Slot Id : <330> +08:27:09 Transaction Type : REQUEST +08:27:09 Received From : +08:27:09 ============================================================================ +08:27:09 FNo. Len. Field Value +08:27:09 ============================================================================ +08:27:09 [ 1] [ 4] [0800] +08:27:09 [ 7] [ 10] [0320012618] +08:27:09 [ 11] [ 6] [155406] +08:27:09 [ 70] [ 3] [301] +08:27:09 ============================================================================ +08:27:09 + + +waiting on router queue for slot.... +08:27:09 Sending to : +08:27:09 ============================================================================ +08:27:09 ============================================================================ +08:27:09 Slot Id : <330> +08:27:09 Transaction Type : RESPONSE +08:27:09 Received From : +08:27:09 ============================================================================ +08:27:09 FNo. Len. Field Value +08:27:09 ============================================================================ +08:27:09 [ 1] [ 4] [0810] +08:27:09 [ 7] [ 10] [0320012618] +08:27:09 [ 11] [ 6] [155406] +08:27:09 [ 39] [ 2] [00] +08:27:09 [ 70] [ 3] [301] +08:27:09 ============================================================================ +08:27:09 Calculate Source COMM Id = 2 +08:27:09 ============================================================================ +08:27:09 + + +waiting on router queue for slot.... +08:27:22 ============================================================================ +08:27:22 Slot Id : <343> +08:27:22 Transaction Type : REQUEST +08:27:22 Received From : +08:27:22 ============================================================================ +08:27:22 FNo. Len. Field Value +08:27:22 ============================================================================ +08:27:22 [ 1] [ 4] [0800] +08:27:22 [ 7] [ 10] [0320012630] +08:27:22 [ 11] [ 6] [155407] +08:27:22 [ 70] [ 3] [301] +08:27:22 ============================================================================ +08:27:22 + + +waiting on router queue for slot.... +08:27:22 Sending to : +08:27:22 ============================================================================ +08:27:22 ============================================================================ +08:27:22 Slot Id : <343> +08:27:22 Transaction Type : RESPONSE +08:27:22 Received From : +08:27:22 ============================================================================ +08:27:22 FNo. Len. Field Value +08:27:22 ============================================================================ +08:27:22 [ 1] [ 4] [0810] +08:27:22 [ 7] [ 10] [0320012630] +08:27:22 [ 11] [ 6] [155407] +08:27:22 [ 39] [ 2] [00] +08:27:22 [ 70] [ 3] [301] +08:27:22 ============================================================================ +08:27:22 Calculate Source COMM Id = 2 +08:27:22 ============================================================================ +08:27:22 + + +waiting on router queue for slot.... +08:27:29 ============================================================================ +08:27:29 Slot Id : <366> +08:27:29 Transaction Type : REQUEST +08:27:29 Received From : +08:27:29 ============================================================================ +08:27:29 FNo. Len. Field Value +08:27:29 ============================================================================ +08:27:29 [ 1] [ 4] [0200] +08:27:29 [ 2] [ 16] [6213542000004870] +08:27:29 [ 3] [ 6] [010000] +08:27:29 [ 4] [ 12] [000100000000] +08:27:29 [ 7] [ 10] [0320083516] +08:27:29 [ 11] [ 6] [254826] +08:27:29 [ 12] [ 6] [083516] +08:27:29 [ 13] [ 4] [0320] +08:27:29 [ 14] [ 4] [4912] +08:27:29 [ 15] [ 4] [0320] +08:27:29 [ 18] [ 4] [6011] +08:27:29 [ 22] [ 3] [900] +08:27:29 [ 25] [ 2] [02] +08:27:29 [ 28] [ 9] [D00002000] +08:27:29 [ 32] [ 6] [220699] +08:27:29 [ 35] [ 32] [6213542000004870=491212010487013] +08:27:29 [ 37] [ 12] [507900094407] +08:27:29 [ 41] [ 8] [01000900] +08:27:29 [ 42] [ 15] [APTRA ] +08:27:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:27:29 [ 49] [ 3] [418] +08:27:29 [ 52] [ 16] [8891E810D83D98E1] +08:27:29 ============================================================================ +08:27:29 + + +waiting on router queue for slot.... +08:27:29 Sending to : +08:27:29 ============================================================================ +08:27:29 Sending to : +08:27:29 ============================================================================ +08:27:29 ============================================================================ +08:27:29 Slot Id : <366> +08:27:29 Transaction Type : REQUEST +08:27:29 Received From : +08:27:29 ============================================================================ +08:27:29 FNo. Len. Field Value +08:27:29 ============================================================================ +08:27:29 [ 1] [ 4] [0200] +08:27:29 [ 2] [ 16] [6213542000004870] +08:27:29 [ 3] [ 6] [010000] +08:27:29 [ 4] [ 12] [000100000000] +08:27:29 [ 7] [ 10] [0320083516] +08:27:29 [ 11] [ 6] [254826] +08:27:29 [ 12] [ 6] [083516] +08:27:29 [ 13] [ 4] [0320] +08:27:29 [ 14] [ 4] [4912] +08:27:29 [ 15] [ 4] [0320] +08:27:29 [ 18] [ 4] [6011] +08:27:29 [ 22] [ 3] [900] +08:27:29 [ 25] [ 2] [02] +08:27:29 [ 28] [ 9] [D00002000] +08:27:29 [ 32] [ 6] [220699] +08:27:29 [ 35] [ 32] [6213542000004870=491212010487013] +08:27:29 [ 37] [ 12] [507900094407] +08:27:29 [ 41] [ 8] [01000900] +08:27:29 [ 42] [ 15] [APTRA ] +08:27:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:27:29 [ 49] [ 3] [418] +08:27:29 [ 52] [ 16] [8891E810D83D98E1] +08:27:29 ============================================================================ +08:27:29 + + +waiting on router queue for slot.... +08:27:29 Sending to : +08:27:29 ============================================================================ +08:27:29 ============================================================================ +08:27:29 Slot Id : <366> +08:27:29 Transaction Type : REQUEST +08:27:29 Received From : +08:27:29 ============================================================================ +08:27:29 FNo. Len. Field Value +08:27:29 ============================================================================ +08:27:29 [ 1] [ 4] [0200] +08:27:29 [ 2] [ 16] [6213542000004870] +08:27:29 [ 3] [ 6] [010000] +08:27:29 [ 4] [ 12] [000100000000] +08:27:29 [ 7] [ 10] [0320083516] +08:27:29 [ 11] [ 6] [254826] +08:27:29 [ 12] [ 6] [083516] +08:27:29 [ 13] [ 4] [0320] +08:27:29 [ 14] [ 4] [4912] +08:27:29 [ 15] [ 4] [0320] +08:27:29 [ 18] [ 4] [6011] +08:27:29 [ 22] [ 3] [900] +08:27:29 [ 25] [ 2] [02] +08:27:29 [ 28] [ 9] [D00002000] +08:27:29 [ 32] [ 6] [220699] +08:27:29 [ 35] [ 32] [6213542000004870=491212010487013] +08:27:29 [ 37] [ 12] [507900094407] +08:27:29 [ 41] [ 8] [01000900] +08:27:29 [ 42] [ 15] [APTRA ] +08:27:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:27:29 [ 49] [ 3] [418] +08:27:29 [ 52] [ 16] [82F7077CDD51E6F8] +08:27:29 ============================================================================ +08:27:29 + + +waiting on router queue for slot.... +08:27:29 Sending to : <0> +08:27:29 ============================================================================ +08:27:30 ============================================================================ +08:27:30 Slot Id : <366> +08:27:30 Transaction Type : RESPONSE +08:27:30 Received From : +08:27:30 ============================================================================ +08:27:30 FNo. Len. Field Value +08:27:30 ============================================================================ +08:27:30 [ 1] [ 4] [0210] +08:27:30 [ 2] [ 16] [6213542000004870] +08:27:30 [ 3] [ 6] [010000] +08:27:30 [ 4] [ 12] [000100000000] +08:27:30 [ 7] [ 10] [0320083516] +08:27:30 [ 11] [ 6] [254826] +08:27:30 [ 12] [ 6] [083516] +08:27:30 [ 13] [ 4] [0320] +08:27:30 [ 15] [ 4] [0320] +08:27:30 [ 18] [ 4] [6011] +08:27:30 [ 32] [ 6] [220699] +08:27:30 [ 35] [ 32] [6213542000004870=491212010487013] +08:27:30 [ 37] [ 12] [507900094407] +08:27:30 [ 38] [ 6] [808271] +08:27:30 [ 39] [ 2] [00] +08:27:30 [ 41] [ 8] [01000900] +08:27:30 [ 49] [ 3] [418] +08:27:30 [ 54] [ 40] [0001418C0000646875240002418C000064687524] +08:27:30 ============================================================================ +08:27:30 Sending to : +08:27:30 ============================================================================ +08:27:30 + + +waiting on router queue for slot.... +08:27:32 ============================================================================ +08:27:32 Slot Id : <366> +08:27:32 Transaction Type : RESPONSE +08:27:32 Received From : +08:27:32 ============================================================================ +08:27:32 FNo. Len. Field Value +08:27:32 ============================================================================ +08:27:32 [ 1] [ 4] [0210] +08:27:32 [ 2] [ 16] [6213542000004870] +08:27:32 [ 3] [ 6] [010000] +08:27:32 [ 4] [ 12] [000100000000] +08:27:32 [ 7] [ 10] [0320083516] +08:27:32 [ 11] [ 6] [254826] +08:27:32 [ 12] [ 6] [083516] +08:27:32 [ 13] [ 4] [0320] +08:27:32 [ 15] [ 4] [0320] +08:27:32 [ 18] [ 4] [6011] +08:27:32 [ 32] [ 6] [220699] +08:27:32 [ 35] [ 32] [6213542000004870=491212010487013] +08:27:32 [ 37] [ 12] [507900094407] +08:27:32 [ 38] [ 6] [808271] +08:27:32 [ 39] [ 2] [00] +08:27:32 [ 41] [ 8] [01000900] +08:27:32 [ 49] [ 3] [418] +08:27:32 [ 54] [ 40] [0001418C0000646875240002418C000064687524] +08:27:32 ============================================================================ +08:27:32 Calculate Source COMM Id = 1 +08:27:32 ============================================================================ +08:27:32 + + +waiting on router queue for slot.... +08:27:34 ============================================================================ +08:27:34 Slot Id : <313> +08:27:34 Transaction Type : REQUEST +08:27:34 Received From : +08:27:34 ============================================================================ +08:27:34 FNo. Len. Field Value +08:27:34 ============================================================================ +08:27:34 [ 1] [ 4] [0800] +08:27:34 [ 7] [ 10] [0320012642] +08:27:34 [ 11] [ 6] [155408] +08:27:34 [ 70] [ 3] [301] +08:27:34 ============================================================================ +08:27:34 + + +waiting on router queue for slot.... +08:27:34 Sending to : +08:27:34 ============================================================================ +08:27:34 ============================================================================ +08:27:34 Slot Id : <313> +08:27:34 Transaction Type : RESPONSE +08:27:34 Received From : +08:27:34 ============================================================================ +08:27:34 FNo. Len. Field Value +08:27:34 ============================================================================ +08:27:34 [ 1] [ 4] [0810] +08:27:34 [ 7] [ 10] [0320012642] +08:27:34 [ 11] [ 6] [155408] +08:27:34 [ 39] [ 2] [00] +08:27:34 [ 70] [ 3] [301] +08:27:34 ============================================================================ +08:27:34 Calculate Source COMM Id = 2 +08:27:34 ============================================================================ +08:27:34 + + +waiting on router queue for slot.... +08:27:45 ============================================================================ +08:27:45 Slot Id : <340> +08:27:45 Transaction Type : REQUEST +08:27:45 Received From : +08:27:45 ============================================================================ +08:27:45 FNo. Len. Field Value +08:27:45 ============================================================================ +08:27:45 [ 1] [ 4] [0800] +08:27:45 [ 7] [ 10] [0320012654] +08:27:45 [ 11] [ 6] [155409] +08:27:45 [ 70] [ 3] [301] +08:27:45 ============================================================================ +08:27:45 + + +waiting on router queue for slot.... +08:27:45 Sending to : +08:27:45 ============================================================================ +08:27:45 ============================================================================ +08:27:45 Slot Id : <340> +08:27:45 Transaction Type : RESPONSE +08:27:45 Received From : +08:27:45 ============================================================================ +08:27:45 FNo. Len. Field Value +08:27:45 ============================================================================ +08:27:45 [ 1] [ 4] [0810] +08:27:45 [ 7] [ 10] [0320012654] +08:27:45 [ 11] [ 6] [155409] +08:27:45 [ 39] [ 2] [00] +08:27:45 [ 70] [ 3] [301] +08:27:45 ============================================================================ +08:27:45 Calculate Source COMM Id = 2 +08:27:45 ============================================================================ +08:27:45 + + +waiting on router queue for slot.... +08:27:58 ============================================================================ +08:27:58 Slot Id : <365> +08:27:58 Transaction Type : REQUEST +08:27:58 Received From : +08:27:58 ============================================================================ +08:27:58 FNo. Len. Field Value +08:27:58 ============================================================================ +08:27:58 [ 1] [ 4] [0800] +08:27:58 [ 2] [ 5] [02531] +08:27:58 [ 3] [ 6] [579088] +08:27:58 [ 7] [ 10] [0320012758] +08:27:58 [ 11] [ 6] [806903] +08:27:58 [ 15] [ 10] [0320012758] +08:27:58 [ 37] [ 11] [57908806903] +08:27:58 [ 70] [ 3] [001] +08:27:58 ============================================================================ +08:27:58 + + +waiting on router queue for slot.... +08:27:58 ============================================================================ +08:27:58 Slot Id : <365> +08:27:58 Transaction Type : RESPONSE +08:27:58 Received From : +08:27:58 ============================================================================ +08:27:58 FNo. Len. Field Value +08:27:58 ============================================================================ +08:27:58 [ 1] [ 4] [0810] +08:27:58 [ 7] [ 10] [0320012758] +08:27:58 [ 11] [ 6] [806903] +08:27:58 [ 15] [ 4] [0320] +08:27:58 [ 37] [ 12] [57908806903] +08:27:58 [ 39] [ 2] [00] +08:27:58 [ 70] [ 3] [001] +08:27:58 ============================================================================ +08:27:58 Sending to : +08:27:58 ============================================================================ +08:27:58 + + +waiting on router queue for slot.... +08:28:01 ============================================================================ +08:28:01 Slot Id : <371> +08:28:01 Transaction Type : REQUEST +08:28:01 Received From : +08:28:01 ============================================================================ +08:28:01 FNo. Len. Field Value +08:28:01 ============================================================================ +08:28:01 [ 1] [ 4] [0800] +08:28:01 [ 7] [ 10] [0320012709] +08:28:01 [ 11] [ 6] [155410] +08:28:01 [ 70] [ 3] [301] +08:28:01 ============================================================================ +08:28:01 + + +waiting on router queue for slot.... +08:28:01 Sending to : +08:28:01 ============================================================================ +08:28:01 ============================================================================ +08:28:01 Slot Id : <371> +08:28:01 Transaction Type : RESPONSE +08:28:01 Received From : +08:28:01 ============================================================================ +08:28:01 FNo. Len. Field Value +08:28:01 ============================================================================ +08:28:01 [ 1] [ 4] [0810] +08:28:01 [ 7] [ 10] [0320012709] +08:28:01 [ 11] [ 6] [155410] +08:28:01 [ 39] [ 2] [00] +08:28:01 [ 70] [ 3] [301] +08:28:01 ============================================================================ +08:28:01 Calculate Source COMM Id = 2 +08:28:01 ============================================================================ +08:28:01 + + +waiting on router queue for slot.... +08:28:11 ============================================================================ +08:28:11 Slot Id : <378> +08:28:11 Transaction Type : REQUEST +08:28:11 Received From : +08:28:11 ============================================================================ +08:28:11 FNo. Len. Field Value +08:28:11 ============================================================================ +08:28:11 [ 1] [ 4] [0800] +08:28:11 [ 7] [ 10] [0320153959] +08:28:11 [ 11] [ 6] [083959] +08:28:11 [ 37] [ 12] [57908083959] +08:28:11 [ 70] [ 3] [301] +08:28:11 ============================================================================ +08:28:11 + + +waiting on router queue for slot.... +08:28:11 Sending to : +08:28:11 ============================================================================ +08:28:11 ============================================================================ +08:28:11 Slot Id : <378> +08:28:11 Transaction Type : RESPONSE +08:28:11 Received From : +08:28:11 ============================================================================ +08:28:11 FNo. Len. Field Value +08:28:11 ============================================================================ +08:28:11 [ 1] [ 4] [0810] +08:28:11 [ 7] [ 10] [0320153959] +08:28:11 [ 11] [ 6] [083959] +08:28:11 [ 37] [ 12] [579080839590] +08:28:11 [ 39] [ 2] [00] +08:28:11 [ 70] [ 3] [810] +08:28:11 ============================================================================ +08:28:11 Calculate Source COMM Id = 6 +08:28:11 ============================================================================ +08:28:11 + + +waiting on router queue for slot.... +08:28:12 ============================================================================ +08:28:12 Slot Id : <324> +08:28:12 Transaction Type : REQUEST +08:28:12 Received From : +08:28:12 ============================================================================ +08:28:12 FNo. Len. Field Value +08:28:12 ============================================================================ +08:28:12 [ 1] [ 4] [0800] +08:28:12 [ 7] [ 10] [0320012720] +08:28:12 [ 11] [ 6] [155411] +08:28:12 [ 70] [ 3] [301] +08:28:12 ============================================================================ +08:28:12 + + +waiting on router queue for slot.... +08:28:12 Sending to : +08:28:12 ============================================================================ +08:28:12 ============================================================================ +08:28:12 Slot Id : <324> +08:28:12 Transaction Type : RESPONSE +08:28:12 Received From : +08:28:12 ============================================================================ +08:28:12 FNo. Len. Field Value +08:28:12 ============================================================================ +08:28:12 [ 1] [ 4] [0810] +08:28:12 [ 7] [ 10] [0320012720] +08:28:12 [ 11] [ 6] [155411] +08:28:12 [ 39] [ 2] [00] +08:28:12 [ 70] [ 3] [301] +08:28:12 ============================================================================ +08:28:12 Calculate Source COMM Id = 2 +08:28:12 ============================================================================ +08:28:12 + + +waiting on router queue for slot.... +08:28:23 ============================================================================ +08:28:23 Slot Id : <373> +08:28:23 Transaction Type : REQUEST +08:28:23 Received From : +08:28:23 ============================================================================ +08:28:23 FNo. Len. Field Value +08:28:23 ============================================================================ +08:28:23 [ 1] [ 4] [0800] +08:28:23 [ 7] [ 10] [0320012731] +08:28:23 [ 11] [ 6] [155412] +08:28:23 [ 70] [ 3] [301] +08:28:23 ============================================================================ +08:28:23 + + +waiting on router queue for slot.... +08:28:23 Sending to : +08:28:23 ============================================================================ +08:28:23 ============================================================================ +08:28:23 Slot Id : <373> +08:28:23 Transaction Type : RESPONSE +08:28:23 Received From : +08:28:23 ============================================================================ +08:28:23 FNo. Len. Field Value +08:28:23 ============================================================================ +08:28:23 [ 1] [ 4] [0810] +08:28:23 [ 7] [ 10] [0320012731] +08:28:23 [ 11] [ 6] [155412] +08:28:23 [ 39] [ 2] [00] +08:28:23 [ 70] [ 3] [301] +08:28:23 ============================================================================ +08:28:23 Calculate Source COMM Id = 2 +08:28:23 ============================================================================ +08:28:23 + + +waiting on router queue for slot.... +08:28:29 ============================================================================ +08:28:29 Slot Id : <353> +08:28:29 Transaction Type : REQUEST +08:28:29 Received From : +08:28:29 ============================================================================ +08:28:29 FNo. Len. Field Value +08:28:29 ============================================================================ +08:28:29 [ 1] [ 4] [0200] +08:28:29 [ 2] [ 16] [6688990106517608] +08:28:29 [ 3] [ 6] [011000] +08:28:29 [ 4] [ 12] [000100000000] +08:28:29 [ 7] [ 10] [0320082825] +08:28:29 [ 11] [ 6] [684352] +08:28:29 [ 12] [ 6] [082825] +08:28:29 [ 13] [ 4] [0320] +08:28:29 [ 15] [ 4] [0320] +08:28:29 [ 18] [ 4] [6011] +08:28:29 [ 22] [ 3] [900] +08:28:29 [ 25] [ 2] [02] +08:28:29 [ 28] [ 9] [D00002000] +08:28:29 [ 32] [ 6] [621354] +08:28:29 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:28:29 [ 37] [ 12] [507902782763] +08:28:29 [ 41] [ 8] [01007200] +08:28:29 [ 42] [ 15] [NATIVE ] +08:28:29 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +08:28:29 [ 49] [ 3] [418] +08:28:29 [ 52] [ 16] [478FFCC2538FF966] +08:28:29 ============================================================================ +08:28:29 + + +waiting on router queue for slot.... +08:28:29 Sending to : +08:28:29 ============================================================================ +08:28:29 Sending to : +08:28:29 ============================================================================ +08:28:29 ============================================================================ +08:28:29 Slot Id : <353> +08:28:29 Transaction Type : REQUEST +08:28:29 Received From : +08:28:29 ============================================================================ +08:28:29 FNo. Len. Field Value +08:28:29 ============================================================================ +08:28:29 [ 1] [ 4] [0200] +08:28:29 [ 2] [ 16] [6688990106517608] +08:28:29 [ 3] [ 6] [011000] +08:28:29 [ 4] [ 12] [000100000000] +08:28:29 [ 7] [ 10] [0320082825] +08:28:29 [ 11] [ 6] [684352] +08:28:29 [ 12] [ 6] [082825] +08:28:29 [ 13] [ 4] [0320] +08:28:29 [ 15] [ 4] [0320] +08:28:29 [ 18] [ 4] [6011] +08:28:29 [ 22] [ 3] [900] +08:28:29 [ 25] [ 2] [02] +08:28:29 [ 28] [ 9] [D00002000] +08:28:29 [ 32] [ 6] [621354] +08:28:29 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:28:29 [ 37] [ 12] [507902782763] +08:28:29 [ 41] [ 8] [01007200] +08:28:29 [ 42] [ 15] [NATIVE ] +08:28:29 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +08:28:29 [ 49] [ 3] [418] +08:28:29 [ 52] [ 16] [478FFCC2538FF966] +08:28:29 ============================================================================ +08:28:29 + + +waiting on router queue for slot.... +08:28:29 Sending to : +08:28:29 ============================================================================ +08:28:29 ============================================================================ +08:28:29 Slot Id : <353> +08:28:29 Transaction Type : REQUEST +08:28:29 Received From : +08:28:29 ============================================================================ +08:28:29 FNo. Len. Field Value +08:28:29 ============================================================================ +08:28:29 [ 1] [ 4] [0200] +08:28:29 [ 2] [ 16] [6688990106517608] +08:28:29 [ 3] [ 6] [011000] +08:28:29 [ 4] [ 12] [000100000000] +08:28:29 [ 7] [ 10] [0320082825] +08:28:29 [ 11] [ 6] [684352] +08:28:29 [ 12] [ 6] [082825] +08:28:29 [ 13] [ 4] [0320] +08:28:29 [ 15] [ 4] [0320] +08:28:29 [ 18] [ 4] [6011] +08:28:29 [ 22] [ 3] [900] +08:28:29 [ 25] [ 2] [02] +08:28:29 [ 28] [ 9] [D00002000] +08:28:29 [ 32] [ 6] [621354] +08:28:29 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:28:29 [ 37] [ 12] [507902782763] +08:28:29 [ 41] [ 8] [01007200] +08:28:29 [ 42] [ 15] [NATIVE ] +08:28:29 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +08:28:29 [ 49] [ 3] [418] +08:28:29 [ 52] [ 16] [53E9485D13E0029B] +08:28:29 ============================================================================ +08:28:29 + + +waiting on router queue for slot.... +08:28:29 Sending to : <4> +08:28:29 ============================================================================ +08:28:30 ============================================================================ +08:28:30 Slot Id : <353> +08:28:30 Transaction Type : RESPONSE +08:28:30 Received From : +08:28:30 ============================================================================ +08:28:30 FNo. Len. Field Value +08:28:30 ============================================================================ +08:28:30 [ 1] [ 4] [0210] +08:28:30 [ 2] [ 16] [6688990106517608] +08:28:30 [ 3] [ 6] [011000] +08:28:30 [ 4] [ 12] [000100000000] +08:28:30 [ 11] [ 6] [684352] +08:28:30 [ 12] [ 6] [082825] +08:28:30 [ 15] [ 4] [0320] +08:28:30 [ 18] [ 4] [6011] +08:28:30 [ 32] [ 6] [621354] +08:28:30 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:28:30 [ 37] [ 12] [507902782763] +08:28:30 [ 38] [ 6] [008087] +08:28:30 [ 39] [ 2] [00] +08:28:30 [ 41] [ 8] [01007200] +08:28:30 [ 49] [ 3] [418] +08:28:30 [ 54] [ 20] [1002418C000200005952] +08:28:30 ============================================================================ +08:28:30 Sending to : +08:28:30 ============================================================================ +08:28:30 + + +waiting on router queue for slot.... +08:28:32 ============================================================================ +08:28:32 Slot Id : <353> +08:28:32 Transaction Type : RESPONSE +08:28:32 Received From : +08:28:32 ============================================================================ +08:28:32 FNo. Len. Field Value +08:28:32 ============================================================================ +08:28:32 [ 1] [ 4] [0210] +08:28:32 [ 2] [ 16] [6688990106517608] +08:28:32 [ 3] [ 6] [011000] +08:28:32 [ 4] [ 12] [000100000000] +08:28:32 [ 11] [ 6] [684352] +08:28:32 [ 12] [ 6] [082825] +08:28:32 [ 15] [ 4] [0320] +08:28:32 [ 18] [ 4] [6011] +08:28:32 [ 32] [ 6] [621354] +08:28:32 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:28:32 [ 37] [ 12] [507902782763] +08:28:32 [ 38] [ 6] [008087] +08:28:32 [ 39] [ 2] [00] +08:28:32 [ 41] [ 8] [01007200] +08:28:32 [ 49] [ 3] [418] +08:28:32 [ 54] [ 20] [1002418C000200005952] +08:28:32 ============================================================================ +08:28:32 Calculate Source COMM Id = 0 +08:28:32 ============================================================================ +08:28:32 + + +waiting on router queue for slot.... +08:28:38 ============================================================================ +08:28:38 Slot Id : <382> +08:28:38 Transaction Type : REQUEST +08:28:38 Received From : +08:28:38 ============================================================================ +08:28:38 FNo. Len. Field Value +08:28:38 ============================================================================ +08:28:38 [ 1] [ 4] [0200] +08:28:38 [ 2] [ 16] [1808931800018051] +08:28:38 [ 3] [ 6] [301000] +08:28:38 [ 4] [ 12] [000000000000] +08:28:38 [ 7] [ 10] [0320082835] +08:28:38 [ 11] [ 6] [684394] +08:28:38 [ 12] [ 6] [082835] +08:28:38 [ 13] [ 4] [0320] +08:28:38 [ 15] [ 4] [0320] +08:28:38 [ 18] [ 4] [6011] +08:28:38 [ 22] [ 3] [900] +08:28:38 [ 25] [ 2] [02] +08:28:38 [ 28] [ 9] [D00000000] +08:28:38 [ 32] [ 6] [621354] +08:28:38 [ 35] [ 27] [1808931800018051=1803500398] +08:28:38 [ 37] [ 12] [507904635401] +08:28:38 [ 41] [ 8] [17000800] +08:28:38 [ 42] [ 15] [NATIVE ] +08:28:38 [ 43] [ 40] [Ban Nakhai Naxay LAO] +08:28:38 [ 49] [ 3] [418] +08:28:38 [ 52] [ 16] [5483E6E488A02F7D] +08:28:38 ============================================================================ +08:28:38 + + +waiting on router queue for slot.... +08:28:38 Sending to : +08:28:38 ============================================================================ +08:28:38 Sending to : +08:28:38 ============================================================================ +08:28:39 ============================================================================ +08:28:39 Slot Id : <382> +08:28:39 Transaction Type : REQUEST +08:28:39 Received From : +08:28:39 ============================================================================ +08:28:39 FNo. Len. Field Value +08:28:39 ============================================================================ +08:28:39 [ 1] [ 4] [0200] +08:28:39 [ 2] [ 16] [1808931800018051] +08:28:39 [ 3] [ 6] [301000] +08:28:39 [ 4] [ 12] [000000000000] +08:28:39 [ 7] [ 10] [0320082835] +08:28:39 [ 11] [ 6] [684394] +08:28:39 [ 12] [ 6] [082835] +08:28:39 [ 13] [ 4] [0320] +08:28:39 [ 15] [ 4] [0320] +08:28:39 [ 18] [ 4] [6011] +08:28:39 [ 22] [ 3] [900] +08:28:39 [ 25] [ 2] [02] +08:28:39 [ 28] [ 9] [D00000000] +08:28:39 [ 32] [ 6] [621354] +08:28:39 [ 35] [ 27] [1808931800018051=1803500398] +08:28:39 [ 37] [ 12] [507904635401] +08:28:39 [ 41] [ 8] [17000800] +08:28:39 [ 42] [ 15] [NATIVE ] +08:28:39 [ 43] [ 40] [Ban Nakhai Naxay LAO] +08:28:39 [ 49] [ 3] [418] +08:28:39 [ 52] [ 16] [5483E6E488A02F7D] +08:28:39 ============================================================================ +08:28:39 + + +waiting on router queue for slot.... +08:28:39 Sending to : +08:28:39 ============================================================================ +08:28:39 ============================================================================ +08:28:39 Slot Id : <382> +08:28:39 Transaction Type : REQUEST +08:28:39 Received From : +08:28:39 ============================================================================ +08:28:39 FNo. Len. Field Value +08:28:39 ============================================================================ +08:28:39 [ 1] [ 4] [0200] +08:28:39 [ 2] [ 16] [1808931800018051] +08:28:39 [ 3] [ 6] [301000] +08:28:39 [ 4] [ 12] [000000000000] +08:28:39 [ 7] [ 10] [0320082835] +08:28:39 [ 11] [ 6] [684394] +08:28:39 [ 12] [ 6] [082835] +08:28:39 [ 13] [ 4] [0320] +08:28:39 [ 15] [ 4] [0320] +08:28:39 [ 18] [ 4] [6011] +08:28:39 [ 22] [ 3] [900] +08:28:39 [ 25] [ 2] [02] +08:28:39 [ 28] [ 9] [D00000000] +08:28:39 [ 32] [ 6] [621354] +08:28:39 [ 35] [ 27] [1808931800018051=1803500398] +08:28:39 [ 37] [ 12] [507904635401] +08:28:39 [ 41] [ 8] [17000800] +08:28:39 [ 42] [ 15] [NATIVE ] +08:28:39 [ 43] [ 40] [Ban Nakhai Naxay LAO] +08:28:39 [ 49] [ 3] [418] +08:28:39 [ 52] [ 16] [59E931F6A6E58539] +08:28:39 ============================================================================ +08:28:39 + + +waiting on router queue for slot.... +08:28:39 Sending to : <2> +08:28:39 ============================================================================ +08:28:45 ============================================================================ +08:28:45 Slot Id : <382> +08:28:45 Transaction Type : RESPONSE +08:28:45 Received From : +08:28:45 ============================================================================ +08:28:45 FNo. Len. Field Value +08:28:45 ============================================================================ +08:28:45 [ 1] [ 4] [0210] +08:28:45 [ 2] [ 16] [1808931800018051] +08:28:45 [ 3] [ 6] [301000] +08:28:45 [ 7] [ 10] [0320082835] +08:28:45 [ 11] [ 6] [684394] +08:28:45 [ 12] [ 6] [082835] +08:28:45 [ 13] [ 4] [0320] +08:28:45 [ 14] [ 4] [1803] +08:28:45 [ 19] [ 3] [418] +08:28:45 [ 32] [ 6] [621354] +08:28:45 [ 37] [ 12] [507904635401] +08:28:45 [ 38] [ 6] [684394] +08:28:45 [ 39] [ 2] [00] +08:28:45 [ 41] [ 8] [17000800] +08:28:45 [ 49] [ 3] [418] +08:28:45 [ 52] [ 16] [59E931F6A6E58539] +08:28:45 [ 54] [ 20] [1002418C000160521600] +08:28:45 ============================================================================ +08:28:45 Sending to : +08:28:45 ============================================================================ +08:28:45 + + +waiting on router queue for slot.... +08:28:47 ============================================================================ +08:28:47 Slot Id : <382> +08:28:47 Transaction Type : RESPONSE +08:28:47 Received From : +08:28:47 ============================================================================ +08:28:47 FNo. Len. Field Value +08:28:47 ============================================================================ +08:28:47 [ 1] [ 4] [0210] +08:28:47 [ 2] [ 16] [1808931800018051] +08:28:47 [ 3] [ 6] [301000] +08:28:47 [ 7] [ 10] [0320082835] +08:28:47 [ 11] [ 6] [684394] +08:28:47 [ 12] [ 6] [082835] +08:28:47 [ 13] [ 4] [0320] +08:28:47 [ 14] [ 4] [1803] +08:28:47 [ 19] [ 3] [418] +08:28:47 [ 32] [ 6] [621354] +08:28:47 [ 37] [ 12] [507904635401] +08:28:47 [ 38] [ 6] [684394] +08:28:47 [ 39] [ 2] [00] +08:28:47 [ 41] [ 8] [17000800] +08:28:47 [ 49] [ 3] [418] +08:28:47 [ 52] [ 16] [59E931F6A6E58539] +08:28:47 [ 54] [ 20] [1002418C000160521600] +08:28:47 ============================================================================ +08:28:47 Calculate Source COMM Id = 0 +08:28:47 ============================================================================ +08:28:47 + + +waiting on router queue for slot.... +08:28:51 ============================================================================ +08:28:51 Slot Id : <355> +08:28:51 Transaction Type : REQUEST +08:28:51 Received From : +08:28:51 ============================================================================ +08:28:51 FNo. Len. Field Value +08:28:51 ============================================================================ +08:28:51 [ 1] [ 4] [0800] +08:28:51 [ 7] [ 10] [0320012800] +08:28:51 [ 11] [ 6] [155413] +08:28:51 [ 70] [ 3] [301] +08:28:51 ============================================================================ +08:28:51 + + +waiting on router queue for slot.... +08:28:51 Sending to : +08:28:51 ============================================================================ +08:28:51 ============================================================================ +08:28:51 Slot Id : <355> +08:28:51 Transaction Type : RESPONSE +08:28:51 Received From : +08:28:51 ============================================================================ +08:28:51 FNo. Len. Field Value +08:28:51 ============================================================================ +08:28:51 [ 1] [ 4] [0810] +08:28:51 [ 7] [ 10] [0320012800] +08:28:51 [ 11] [ 6] [155413] +08:28:51 [ 39] [ 2] [00] +08:28:51 [ 70] [ 3] [301] +08:28:51 ============================================================================ +08:28:51 Calculate Source COMM Id = 2 +08:28:51 ============================================================================ +08:28:51 + + +waiting on router queue for slot.... +08:28:54 ============================================================================ +08:28:54 Slot Id : <363> +08:28:54 Transaction Type : REQUEST +08:28:54 Received From : +08:28:54 ============================================================================ +08:28:54 FNo. Len. Field Value +08:28:54 ============================================================================ +08:28:54 [ 1] [ 4] [0200] +08:28:54 [ 2] [ 16] [6213542000004870] +08:28:54 [ 3] [ 6] [010000] +08:28:54 [ 4] [ 12] [000059000000] +08:28:54 [ 7] [ 10] [0320083642] +08:28:54 [ 11] [ 6] [254829] +08:28:54 [ 12] [ 6] [083642] +08:28:54 [ 13] [ 4] [0320] +08:28:54 [ 14] [ 4] [4912] +08:28:54 [ 15] [ 4] [0320] +08:28:54 [ 18] [ 4] [6011] +08:28:54 [ 22] [ 3] [900] +08:28:54 [ 25] [ 2] [02] +08:28:54 [ 28] [ 9] [D00002000] +08:28:54 [ 32] [ 6] [220699] +08:28:54 [ 35] [ 32] [6213542000004870=491212010487013] +08:28:54 [ 37] [ 12] [507900094409] +08:28:54 [ 41] [ 8] [01000900] +08:28:54 [ 42] [ 15] [APTRA ] +08:28:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:28:54 [ 49] [ 3] [418] +08:28:54 [ 52] [ 16] [8891E810D83D98E1] +08:28:54 ============================================================================ +08:28:54 + + +waiting on router queue for slot.... +08:28:54 Sending to : +08:28:54 ============================================================================ +08:28:54 Sending to : +08:28:54 ============================================================================ +08:28:55 ============================================================================ +08:28:55 Slot Id : <363> +08:28:55 Transaction Type : REQUEST +08:28:55 Received From : +08:28:55 ============================================================================ +08:28:55 FNo. Len. Field Value +08:28:55 ============================================================================ +08:28:55 [ 1] [ 4] [0200] +08:28:55 [ 2] [ 16] [6213542000004870] +08:28:55 [ 3] [ 6] [010000] +08:28:55 [ 4] [ 12] [000059000000] +08:28:55 [ 7] [ 10] [0320083642] +08:28:55 [ 11] [ 6] [254829] +08:28:55 [ 12] [ 6] [083642] +08:28:55 [ 13] [ 4] [0320] +08:28:55 [ 14] [ 4] [4912] +08:28:55 [ 15] [ 4] [0320] +08:28:55 [ 18] [ 4] [6011] +08:28:55 [ 22] [ 3] [900] +08:28:55 [ 25] [ 2] [02] +08:28:55 [ 28] [ 9] [D00002000] +08:28:55 [ 32] [ 6] [220699] +08:28:55 [ 35] [ 32] [6213542000004870=491212010487013] +08:28:55 [ 37] [ 12] [507900094409] +08:28:55 [ 41] [ 8] [01000900] +08:28:55 [ 42] [ 15] [APTRA ] +08:28:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:28:55 [ 49] [ 3] [418] +08:28:55 [ 52] [ 16] [8891E810D83D98E1] +08:28:55 ============================================================================ +08:28:55 + + +waiting on router queue for slot.... +08:28:55 Sending to : +08:28:55 ============================================================================ +08:28:55 ============================================================================ +08:28:55 Slot Id : <363> +08:28:55 Transaction Type : REQUEST +08:28:55 Received From : +08:28:55 ============================================================================ +08:28:55 FNo. Len. Field Value +08:28:55 ============================================================================ +08:28:55 [ 1] [ 4] [0200] +08:28:55 [ 2] [ 16] [6213542000004870] +08:28:55 [ 3] [ 6] [010000] +08:28:55 [ 4] [ 12] [000059000000] +08:28:55 [ 7] [ 10] [0320083642] +08:28:55 [ 11] [ 6] [254829] +08:28:55 [ 12] [ 6] [083642] +08:28:55 [ 13] [ 4] [0320] +08:28:55 [ 14] [ 4] [4912] +08:28:55 [ 15] [ 4] [0320] +08:28:55 [ 18] [ 4] [6011] +08:28:55 [ 22] [ 3] [900] +08:28:55 [ 25] [ 2] [02] +08:28:55 [ 28] [ 9] [D00002000] +08:28:55 [ 32] [ 6] [220699] +08:28:55 [ 35] [ 32] [6213542000004870=491212010487013] +08:28:55 [ 37] [ 12] [507900094409] +08:28:55 [ 41] [ 8] [01000900] +08:28:55 [ 42] [ 15] [APTRA ] +08:28:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:28:55 [ 49] [ 3] [418] +08:28:55 [ 52] [ 16] [82F7077CDD51E6F8] +08:28:55 ============================================================================ +08:28:55 + + +waiting on router queue for slot.... +08:28:55 Sending to : <0> +08:28:55 ============================================================================ +08:28:55 ============================================================================ +08:28:55 Slot Id : <363> +08:28:55 Transaction Type : RESPONSE +08:28:55 Received From : +08:28:55 ============================================================================ +08:28:55 FNo. Len. Field Value +08:28:55 ============================================================================ +08:28:55 [ 1] [ 4] [0210] +08:28:55 [ 2] [ 16] [6213542000004870] +08:28:55 [ 3] [ 6] [010000] +08:28:55 [ 4] [ 12] [000059000000] +08:28:55 [ 7] [ 10] [0320083642] +08:28:55 [ 11] [ 6] [254829] +08:28:55 [ 12] [ 6] [083642] +08:28:55 [ 13] [ 4] [0320] +08:28:55 [ 15] [ 4] [0320] +08:28:55 [ 18] [ 4] [6011] +08:28:55 [ 32] [ 6] [220699] +08:28:55 [ 35] [ 32] [6213542000004870=491212010487013] +08:28:55 [ 37] [ 12] [507900094409] +08:28:55 [ 38] [ 6] [467228] +08:28:55 [ 39] [ 2] [00] +08:28:55 [ 41] [ 8] [01000900] +08:28:55 [ 49] [ 3] [418] +08:28:55 [ 54] [ 40] [0001418C0000054875240002418C000005487524] +08:28:55 ============================================================================ +08:28:55 Sending to : +08:28:55 ============================================================================ +08:28:55 + + +waiting on router queue for slot.... +08:28:57 ============================================================================ +08:28:57 Slot Id : <363> +08:28:57 Transaction Type : RESPONSE +08:28:57 Received From : +08:28:57 ============================================================================ +08:28:57 FNo. Len. Field Value +08:28:57 ============================================================================ +08:28:57 [ 1] [ 4] [0210] +08:28:57 [ 2] [ 16] [6213542000004870] +08:28:57 [ 3] [ 6] [010000] +08:28:57 [ 4] [ 12] [000059000000] +08:28:57 [ 7] [ 10] [0320083642] +08:28:57 [ 11] [ 6] [254829] +08:28:57 [ 12] [ 6] [083642] +08:28:57 [ 13] [ 4] [0320] +08:28:57 [ 15] [ 4] [0320] +08:28:57 [ 18] [ 4] [6011] +08:28:57 [ 32] [ 6] [220699] +08:28:57 [ 35] [ 32] [6213542000004870=491212010487013] +08:28:57 [ 37] [ 12] [507900094409] +08:28:57 [ 38] [ 6] [467228] +08:28:57 [ 39] [ 2] [00] +08:28:57 [ 41] [ 8] [01000900] +08:28:57 [ 49] [ 3] [418] +08:28:57 [ 54] [ 40] [0001418C0000054875240002418C000005487524] +08:28:57 ============================================================================ +08:28:57 Calculate Source COMM Id = 1 +08:28:57 ============================================================================ +08:28:57 + + +waiting on router queue for slot.... +08:29:00 ============================================================================ +08:29:00 Slot Id : <358> +08:29:00 Transaction Type : REQUEST +08:29:00 Received From : +08:29:00 ============================================================================ +08:29:00 FNo. Len. Field Value +08:29:00 ============================================================================ +08:29:00 [ 1] [ 4] [0800] +08:29:00 [ 2] [ 5] [02531] +08:29:00 [ 3] [ 6] [579088] +08:29:00 [ 7] [ 10] [0320012900] +08:29:00 [ 11] [ 6] [806904] +08:29:00 [ 15] [ 10] [0320012900] +08:29:00 [ 37] [ 11] [57908806904] +08:29:00 [ 70] [ 3] [001] +08:29:00 ============================================================================ +08:29:00 + + +waiting on router queue for slot.... +08:29:00 ============================================================================ +08:29:00 Slot Id : <358> +08:29:00 Transaction Type : RESPONSE +08:29:00 Received From : +08:29:00 ============================================================================ +08:29:00 FNo. Len. Field Value +08:29:00 ============================================================================ +08:29:00 [ 1] [ 4] [0810] +08:29:00 [ 7] [ 10] [0320012900] +08:29:00 [ 11] [ 6] [806904] +08:29:00 [ 15] [ 4] [0320] +08:29:00 [ 37] [ 12] [57908806904] +08:29:00 [ 39] [ 2] [00] +08:29:00 [ 70] [ 3] [001] +08:29:00 ============================================================================ +08:29:00 Sending to : +08:29:00 ============================================================================ +08:29:00 + + +waiting on router queue for slot.... +08:29:04 ============================================================================ +08:29:04 Slot Id : <370> +08:29:04 Transaction Type : REQUEST +08:29:04 Received From : +08:29:04 ============================================================================ +08:29:04 FNo. Len. Field Value +08:29:04 ============================================================================ +08:29:04 [ 1] [ 4] [0800] +08:29:04 [ 7] [ 10] [0320012811] +08:29:04 [ 11] [ 6] [155414] +08:29:04 [ 70] [ 3] [301] +08:29:04 ============================================================================ +08:29:04 + + +waiting on router queue for slot.... +08:29:04 Sending to : +08:29:04 ============================================================================ +08:29:04 ============================================================================ +08:29:04 Slot Id : <370> +08:29:04 Transaction Type : RESPONSE +08:29:04 Received From : +08:29:04 ============================================================================ +08:29:04 FNo. Len. Field Value +08:29:04 ============================================================================ +08:29:04 [ 1] [ 4] [0810] +08:29:04 [ 7] [ 10] [0320012811] +08:29:04 [ 11] [ 6] [155414] +08:29:04 [ 39] [ 2] [00] +08:29:04 [ 70] [ 3] [301] +08:29:04 ============================================================================ +08:29:04 Calculate Source COMM Id = 2 +08:29:04 ============================================================================ +08:29:04 + + +waiting on router queue for slot.... +08:29:16 ============================================================================ +08:29:16 Slot Id : <360> +08:29:16 Transaction Type : REQUEST +08:29:16 Received From : +08:29:16 ============================================================================ +08:29:16 FNo. Len. Field Value +08:29:16 ============================================================================ +08:29:16 [ 1] [ 4] [0800] +08:29:16 [ 7] [ 10] [0320154104] +08:29:16 [ 11] [ 6] [084104] +08:29:16 [ 37] [ 12] [57908084104] +08:29:16 [ 70] [ 3] [301] +08:29:16 ============================================================================ +08:29:16 + + +waiting on router queue for slot.... +08:29:16 Sending to : +08:29:16 ============================================================================ +08:29:16 ============================================================================ +08:29:16 Slot Id : <360> +08:29:16 Transaction Type : RESPONSE +08:29:16 Received From : +08:29:16 ============================================================================ +08:29:16 FNo. Len. Field Value +08:29:16 ============================================================================ +08:29:16 [ 1] [ 4] [0810] +08:29:16 [ 7] [ 10] [0320154104] +08:29:16 [ 11] [ 6] [084104] +08:29:16 [ 37] [ 12] [579080841040] +08:29:16 [ 39] [ 2] [00] +08:29:16 [ 70] [ 3] [810] +08:29:16 ============================================================================ +08:29:16 Calculate Source COMM Id = 6 +08:29:16 ============================================================================ +08:29:16 + + +waiting on router queue for slot.... +08:29:19 ============================================================================ +08:29:19 Slot Id : <338> +08:29:19 Transaction Type : REQUEST +08:29:19 Received From : +08:29:19 ============================================================================ +08:29:19 FNo. Len. Field Value +08:29:19 ============================================================================ +08:29:19 [ 1] [ 4] [0800] +08:29:19 [ 7] [ 10] [0320012827] +08:29:19 [ 11] [ 6] [155415] +08:29:19 [ 70] [ 3] [301] +08:29:19 ============================================================================ +08:29:19 + + +waiting on router queue for slot.... +08:29:19 Sending to : +08:29:19 ============================================================================ +08:29:19 ============================================================================ +08:29:19 Slot Id : <338> +08:29:19 Transaction Type : RESPONSE +08:29:19 Received From : +08:29:19 ============================================================================ +08:29:19 FNo. Len. Field Value +08:29:19 ============================================================================ +08:29:19 [ 1] [ 4] [0810] +08:29:19 [ 7] [ 10] [0320012827] +08:29:19 [ 11] [ 6] [155415] +08:29:19 [ 39] [ 2] [00] +08:29:19 [ 70] [ 3] [301] +08:29:19 ============================================================================ +08:29:19 Calculate Source COMM Id = 2 +08:29:19 ============================================================================ +08:29:19 + + +waiting on router queue for slot.... +08:29:30 ============================================================================ +08:29:30 Slot Id : <379> +08:29:30 Transaction Type : REQUEST +08:29:30 Received From : +08:29:30 ============================================================================ +08:29:30 FNo. Len. Field Value +08:29:30 ============================================================================ +08:29:30 [ 1] [ 4] [0200] +08:29:30 [ 2] [ 16] [6688990040146159] +08:29:30 [ 3] [ 6] [012000] +08:29:30 [ 4] [ 12] [000020000000] +08:29:30 [ 7] [ 10] [0320082924] +08:29:30 [ 11] [ 6] [684616] +08:29:30 [ 12] [ 6] [082924] +08:29:30 [ 13] [ 4] [0320] +08:29:30 [ 15] [ 4] [0320] +08:29:30 [ 18] [ 4] [6011] +08:29:30 [ 22] [ 3] [900] +08:29:30 [ 25] [ 2] [02] +08:29:30 [ 28] [ 9] [D00002000] +08:29:30 [ 32] [ 6] [621354] +08:29:30 [ 35] [ 37] [6688990040146159=98041261727106100000] +08:29:30 [ 37] [ 12] [507903176930] +08:29:30 [ 41] [ 8] [04002700] +08:29:30 [ 42] [ 15] [NATIVE ] +08:29:30 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +08:29:30 [ 49] [ 3] [418] +08:29:30 [ 52] [ 16] [26D6C2418F28D6BB] +08:29:30 ============================================================================ +08:29:30 + + +waiting on router queue for slot.... +08:29:30 Sending to : +08:29:30 ============================================================================ +08:29:30 Sending to : +08:29:30 ============================================================================ +08:29:30 ============================================================================ +08:29:30 Slot Id : <379> +08:29:30 Transaction Type : REQUEST +08:29:30 Received From : +08:29:30 ============================================================================ +08:29:30 FNo. Len. Field Value +08:29:30 ============================================================================ +08:29:30 [ 1] [ 4] [0200] +08:29:30 [ 2] [ 16] [6688990040146159] +08:29:30 [ 3] [ 6] [012000] +08:29:30 [ 4] [ 12] [000020000000] +08:29:30 [ 7] [ 10] [0320082924] +08:29:30 [ 11] [ 6] [684616] +08:29:30 [ 12] [ 6] [082924] +08:29:30 [ 13] [ 4] [0320] +08:29:30 [ 15] [ 4] [0320] +08:29:30 [ 18] [ 4] [6011] +08:29:30 [ 22] [ 3] [900] +08:29:30 [ 25] [ 2] [02] +08:29:30 [ 28] [ 9] [D00002000] +08:29:30 [ 32] [ 6] [621354] +08:29:30 [ 35] [ 37] [6688990040146159=98041261727106100000] +08:29:30 [ 37] [ 12] [507903176930] +08:29:30 [ 41] [ 8] [04002700] +08:29:30 [ 42] [ 15] [NATIVE ] +08:29:30 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +08:29:30 [ 49] [ 3] [418] +08:29:30 [ 52] [ 16] [26D6C2418F28D6BB] +08:29:30 ============================================================================ +08:29:30 + + +waiting on router queue for slot.... +08:29:30 Sending to : +08:29:30 ============================================================================ +08:29:30 ============================================================================ +08:29:30 Slot Id : <379> +08:29:30 Transaction Type : REQUEST +08:29:30 Received From : +08:29:30 ============================================================================ +08:29:30 FNo. Len. Field Value +08:29:30 ============================================================================ +08:29:30 [ 1] [ 4] [0200] +08:29:30 [ 2] [ 16] [6688990040146159] +08:29:30 [ 3] [ 6] [012000] +08:29:30 [ 4] [ 12] [000020000000] +08:29:30 [ 7] [ 10] [0320082924] +08:29:30 [ 11] [ 6] [684616] +08:29:30 [ 12] [ 6] [082924] +08:29:30 [ 13] [ 4] [0320] +08:29:30 [ 15] [ 4] [0320] +08:29:30 [ 18] [ 4] [6011] +08:29:30 [ 22] [ 3] [900] +08:29:30 [ 25] [ 2] [02] +08:29:30 [ 28] [ 9] [D00002000] +08:29:30 [ 32] [ 6] [621354] +08:29:30 [ 35] [ 37] [6688990040146159=98041261727106100000] +08:29:30 [ 37] [ 12] [507903176930] +08:29:30 [ 41] [ 8] [04002700] +08:29:30 [ 42] [ 15] [NATIVE ] +08:29:30 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +08:29:30 [ 49] [ 3] [418] +08:29:30 [ 52] [ 16] [F90345896852675E] +08:29:30 ============================================================================ +08:29:30 + + +waiting on router queue for slot.... +08:29:30 Sending to : <4> +08:29:30 ============================================================================ +08:29:31 ============================================================================ +08:29:31 Slot Id : <354> +08:29:31 Transaction Type : REQUEST +08:29:31 Received From : +08:29:31 ============================================================================ +08:29:31 FNo. Len. Field Value +08:29:31 ============================================================================ +08:29:31 [ 1] [ 4] [0800] +08:29:31 [ 7] [ 10] [0320012839] +08:29:31 [ 11] [ 6] [155416] +08:29:31 [ 70] [ 3] [301] +08:29:31 ============================================================================ +08:29:31 + + +waiting on router queue for slot.... +08:29:31 Sending to : +08:29:31 ============================================================================ +08:29:31 ============================================================================ +08:29:31 Slot Id : <354> +08:29:31 Transaction Type : RESPONSE +08:29:31 Received From : +08:29:31 ============================================================================ +08:29:31 FNo. Len. Field Value +08:29:31 ============================================================================ +08:29:31 [ 1] [ 4] [0810] +08:29:31 [ 7] [ 10] [0320012839] +08:29:31 [ 11] [ 6] [155416] +08:29:31 [ 39] [ 2] [00] +08:29:31 [ 70] [ 3] [301] +08:29:31 ============================================================================ +08:29:31 Calculate Source COMM Id = 2 +08:29:31 ============================================================================ +08:29:31 + + +waiting on router queue for slot.... +08:29:31 ============================================================================ +08:29:31 Slot Id : <379> +08:29:31 Transaction Type : RESPONSE +08:29:31 Received From : +08:29:31 ============================================================================ +08:29:31 FNo. Len. Field Value +08:29:31 ============================================================================ +08:29:31 [ 1] [ 4] [0210] +08:29:31 [ 2] [ 16] [6688990040146159] +08:29:31 [ 3] [ 6] [012000] +08:29:31 [ 4] [ 12] [000020000000] +08:29:31 [ 11] [ 6] [684616] +08:29:31 [ 12] [ 6] [082924] +08:29:31 [ 15] [ 4] [0320] +08:29:31 [ 18] [ 4] [6011] +08:29:31 [ 32] [ 6] [621354] +08:29:31 [ 35] [ 37] [6688990040146159=98041261727106100000] +08:29:31 [ 37] [ 12] [507903176930] +08:29:31 [ 38] [ 6] [221704] +08:29:31 [ 39] [ 2] [00] +08:29:31 [ 41] [ 8] [04002700] +08:29:31 [ 49] [ 3] [418] +08:29:31 [ 54] [ 20] [2002418C000039100000] +08:29:31 ============================================================================ +08:29:31 Sending to : +08:29:31 ============================================================================ +08:29:31 + + +waiting on router queue for slot.... +08:29:33 ============================================================================ +08:29:33 Slot Id : <379> +08:29:33 Transaction Type : RESPONSE +08:29:33 Received From : +08:29:33 ============================================================================ +08:29:33 FNo. Len. Field Value +08:29:33 ============================================================================ +08:29:33 [ 1] [ 4] [0210] +08:29:33 [ 2] [ 16] [6688990040146159] +08:29:33 [ 3] [ 6] [012000] +08:29:33 [ 4] [ 12] [000020000000] +08:29:33 [ 11] [ 6] [684616] +08:29:33 [ 12] [ 6] [082924] +08:29:33 [ 15] [ 4] [0320] +08:29:33 [ 18] [ 4] [6011] +08:29:33 [ 32] [ 6] [621354] +08:29:33 [ 35] [ 37] [6688990040146159=98041261727106100000] +08:29:33 [ 37] [ 12] [507903176930] +08:29:33 [ 38] [ 6] [221704] +08:29:33 [ 39] [ 2] [00] +08:29:33 [ 41] [ 8] [04002700] +08:29:33 [ 49] [ 3] [418] +08:29:33 [ 54] [ 20] [2002418C000039100000] +08:29:33 ============================================================================ +08:29:33 Calculate Source COMM Id = 0 +08:29:33 ============================================================================ +08:29:33 + + +waiting on router queue for slot.... +08:29:46 ============================================================================ +08:29:46 Slot Id : <396> +08:29:46 Transaction Type : REQUEST +08:29:46 Received From : +08:29:46 ============================================================================ +08:29:46 FNo. Len. Field Value +08:29:46 ============================================================================ +08:29:46 [ 1] [ 4] [0800] +08:29:46 [ 7] [ 10] [0320012854] +08:29:46 [ 11] [ 6] [155417] +08:29:46 [ 70] [ 3] [301] +08:29:46 ============================================================================ +08:29:46 + + +waiting on router queue for slot.... +08:29:46 Sending to : +08:29:46 ============================================================================ +08:29:46 ============================================================================ +08:29:46 Slot Id : <396> +08:29:46 Transaction Type : RESPONSE +08:29:46 Received From : +08:29:46 ============================================================================ +08:29:46 FNo. Len. Field Value +08:29:46 ============================================================================ +08:29:46 [ 1] [ 4] [0810] +08:29:46 [ 7] [ 10] [0320012854] +08:29:46 [ 11] [ 6] [155417] +08:29:46 [ 39] [ 2] [00] +08:29:46 [ 70] [ 3] [301] +08:29:46 ============================================================================ +08:29:46 Calculate Source COMM Id = 2 +08:29:46 ============================================================================ +08:29:46 + + +waiting on router queue for slot.... +08:29:53 ============================================================================ +08:29:53 Slot Id : <351> +08:29:53 Transaction Type : REQUEST +08:29:53 Received From : +08:29:53 ============================================================================ +08:29:53 FNo. Len. Field Value +08:29:53 ============================================================================ +08:29:53 [ 1] [ 4] [0200] +08:29:53 [ 2] [ 16] [6688990106517608] +08:29:53 [ 3] [ 6] [011000] +08:29:53 [ 4] [ 12] [000050000000] +08:29:53 [ 7] [ 10] [0320082949] +08:29:53 [ 11] [ 6] [684738] +08:29:53 [ 12] [ 6] [082949] +08:29:53 [ 13] [ 4] [0320] +08:29:53 [ 15] [ 4] [0320] +08:29:53 [ 18] [ 4] [6011] +08:29:53 [ 22] [ 3] [900] +08:29:53 [ 25] [ 2] [02] +08:29:53 [ 28] [ 9] [D00002000] +08:29:53 [ 32] [ 6] [621354] +08:29:53 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:29:53 [ 37] [ 12] [507902782765] +08:29:53 [ 41] [ 8] [01007200] +08:29:53 [ 42] [ 15] [NATIVE ] +08:29:53 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +08:29:53 [ 49] [ 3] [418] +08:29:53 [ 52] [ 16] [478FFCC2538FF966] +08:29:53 ============================================================================ +08:29:53 + + +waiting on router queue for slot.... +08:29:53 Sending to : +08:29:53 ============================================================================ +08:29:53 Sending to : +08:29:53 ============================================================================ +08:29:53 ============================================================================ +08:29:53 Slot Id : <351> +08:29:53 Transaction Type : REQUEST +08:29:53 Received From : +08:29:53 ============================================================================ +08:29:53 FNo. Len. Field Value +08:29:53 ============================================================================ +08:29:53 [ 1] [ 4] [0200] +08:29:53 [ 2] [ 16] [6688990106517608] +08:29:53 [ 3] [ 6] [011000] +08:29:53 [ 4] [ 12] [000050000000] +08:29:53 [ 7] [ 10] [0320082949] +08:29:53 [ 11] [ 6] [684738] +08:29:53 [ 12] [ 6] [082949] +08:29:53 [ 13] [ 4] [0320] +08:29:53 [ 15] [ 4] [0320] +08:29:53 [ 18] [ 4] [6011] +08:29:53 [ 22] [ 3] [900] +08:29:53 [ 25] [ 2] [02] +08:29:53 [ 28] [ 9] [D00002000] +08:29:53 [ 32] [ 6] [621354] +08:29:53 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:29:53 [ 37] [ 12] [507902782765] +08:29:53 [ 41] [ 8] [01007200] +08:29:53 [ 42] [ 15] [NATIVE ] +08:29:53 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +08:29:53 [ 49] [ 3] [418] +08:29:53 [ 52] [ 16] [478FFCC2538FF966] +08:29:53 ============================================================================ +08:29:53 + + +waiting on router queue for slot.... +08:29:53 Sending to : +08:29:53 ============================================================================ +08:29:53 ============================================================================ +08:29:53 Slot Id : <351> +08:29:53 Transaction Type : REQUEST +08:29:53 Received From : +08:29:53 ============================================================================ +08:29:53 FNo. Len. Field Value +08:29:53 ============================================================================ +08:29:53 [ 1] [ 4] [0200] +08:29:53 [ 2] [ 16] [6688990106517608] +08:29:53 [ 3] [ 6] [011000] +08:29:53 [ 4] [ 12] [000050000000] +08:29:53 [ 7] [ 10] [0320082949] +08:29:53 [ 11] [ 6] [684738] +08:29:53 [ 12] [ 6] [082949] +08:29:53 [ 13] [ 4] [0320] +08:29:53 [ 15] [ 4] [0320] +08:29:53 [ 18] [ 4] [6011] +08:29:53 [ 22] [ 3] [900] +08:29:53 [ 25] [ 2] [02] +08:29:53 [ 28] [ 9] [D00002000] +08:29:53 [ 32] [ 6] [621354] +08:29:53 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:29:53 [ 37] [ 12] [507902782765] +08:29:53 [ 41] [ 8] [01007200] +08:29:53 [ 42] [ 15] [NATIVE ] +08:29:53 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +08:29:53 [ 49] [ 3] [418] +08:29:53 [ 52] [ 16] [53E9485D13E0029B] +08:29:53 ============================================================================ +08:29:53 + + +waiting on router queue for slot.... +08:29:53 Sending to : <4> +08:29:53 ============================================================================ +08:29:54 ============================================================================ +08:29:54 Slot Id : <369> +08:29:54 Transaction Type : REQUEST +08:29:54 Received From : +08:29:54 ============================================================================ +08:29:54 FNo. Len. Field Value +08:29:54 ============================================================================ +08:29:54 [ 1] [ 4] [0800] +08:29:54 [ 7] [ 10] [0320013742] +08:29:54 [ 11] [ 6] [001387] +08:29:54 [ 37] [ 12] [57908001387] +08:29:54 [ 70] [ 3] [301] +08:29:54 ============================================================================ +08:29:54 + + +waiting on router queue for slot.... +08:29:54 Sending to : +08:29:54 ============================================================================ +08:29:54 ============================================================================ +08:29:54 Slot Id : <369> +08:29:54 Transaction Type : RESPONSE +08:29:54 Received From : +08:29:54 ============================================================================ +08:29:54 FNo. Len. Field Value +08:29:54 ============================================================================ +08:29:54 [ 1] [ 4] [0810] +08:29:54 [ 7] [ 10] [0320013742] +08:29:54 [ 11] [ 6] [001387] +08:29:54 [ 37] [ 12] [579080013870] +08:29:54 [ 39] [ 2] [00] +08:29:54 [ 70] [ 3] [810] +08:29:54 ============================================================================ +08:29:54 Calculate Source COMM Id = 1 +08:29:54 ============================================================================ +08:29:54 + + +waiting on router queue for slot.... +08:29:54 ============================================================================ +08:29:54 Slot Id : <351> +08:29:54 Transaction Type : RESPONSE +08:29:54 Received From : +08:29:54 ============================================================================ +08:29:54 FNo. Len. Field Value +08:29:54 ============================================================================ +08:29:54 [ 1] [ 4] [0210] +08:29:54 [ 2] [ 16] [6688990106517608] +08:29:54 [ 3] [ 6] [011000] +08:29:54 [ 4] [ 12] [000050000000] +08:29:54 [ 11] [ 6] [684738] +08:29:54 [ 12] [ 6] [082949] +08:29:54 [ 15] [ 4] [0320] +08:29:54 [ 18] [ 4] [6011] +08:29:54 [ 32] [ 6] [621354] +08:29:54 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:29:54 [ 37] [ 12] [507902782765] +08:29:54 [ 38] [ 6] [232294] +08:29:54 [ 39] [ 2] [00] +08:29:54 [ 41] [ 8] [01007200] +08:29:54 [ 49] [ 3] [418] +08:29:54 [ 54] [ 20] [1002418C000149805952] +08:29:54 ============================================================================ +08:29:54 Sending to : +08:29:54 ============================================================================ +08:29:54 + + +waiting on router queue for slot.... +08:29:56 ============================================================================ +08:29:56 Slot Id : <351> +08:29:56 Transaction Type : RESPONSE +08:29:56 Received From : +08:29:56 ============================================================================ +08:29:56 FNo. Len. Field Value +08:29:56 ============================================================================ +08:29:56 [ 1] [ 4] [0210] +08:29:56 [ 2] [ 16] [6688990106517608] +08:29:56 [ 3] [ 6] [011000] +08:29:56 [ 4] [ 12] [000050000000] +08:29:56 [ 11] [ 6] [684738] +08:29:56 [ 12] [ 6] [082949] +08:29:56 [ 15] [ 4] [0320] +08:29:56 [ 18] [ 4] [6011] +08:29:56 [ 32] [ 6] [621354] +08:29:56 [ 35] [ 37] [6688990106517608=43121231760875100000] +08:29:56 [ 37] [ 12] [507902782765] +08:29:56 [ 38] [ 6] [232294] +08:29:56 [ 39] [ 2] [00] +08:29:56 [ 41] [ 8] [01007200] +08:29:56 [ 49] [ 3] [418] +08:29:56 [ 54] [ 20] [1002418C000149805952] +08:29:56 ============================================================================ +08:29:56 Calculate Source COMM Id = 0 +08:29:56 ============================================================================ +08:29:56 + + +waiting on router queue for slot.... +08:29:58 ============================================================================ +08:29:58 Slot Id : <390> +08:29:58 Transaction Type : REQUEST +08:29:58 Received From : +08:29:58 ============================================================================ +08:29:58 FNo. Len. Field Value +08:29:58 ============================================================================ +08:29:58 [ 1] [ 4] [0800] +08:29:58 [ 7] [ 10] [0320012905] +08:29:58 [ 11] [ 6] [155418] +08:29:58 [ 70] [ 3] [301] +08:29:58 ============================================================================ +08:29:58 + + +waiting on router queue for slot.... +08:29:58 Sending to : +08:29:58 ============================================================================ +08:29:58 ============================================================================ +08:29:58 Slot Id : <390> +08:29:58 Transaction Type : RESPONSE +08:29:58 Received From : +08:29:58 ============================================================================ +08:29:58 FNo. Len. Field Value +08:29:58 ============================================================================ +08:29:58 [ 1] [ 4] [0810] +08:29:58 [ 7] [ 10] [0320012905] +08:29:58 [ 11] [ 6] [155418] +08:29:58 [ 39] [ 2] [00] +08:29:58 [ 70] [ 3] [301] +08:29:58 ============================================================================ +08:29:58 Calculate Source COMM Id = 2 +08:29:58 ============================================================================ +08:29:58 + + +waiting on router queue for slot.... +08:30:02 ============================================================================ +08:30:02 Slot Id : <389> +08:30:02 Transaction Type : REQUEST +08:30:02 Received From : +08:30:02 ============================================================================ +08:30:02 FNo. Len. Field Value +08:30:02 ============================================================================ +08:30:02 [ 1] [ 4] [0800] +08:30:02 [ 2] [ 5] [02531] +08:30:02 [ 3] [ 6] [579088] +08:30:02 [ 7] [ 10] [0320013002] +08:30:02 [ 11] [ 6] [806905] +08:30:02 [ 15] [ 10] [0320013002] +08:30:02 [ 37] [ 11] [57908806905] +08:30:02 [ 70] [ 3] [001] +08:30:02 ============================================================================ +08:30:02 + + +waiting on router queue for slot.... +08:30:02 ============================================================================ +08:30:02 Slot Id : <389> +08:30:02 Transaction Type : RESPONSE +08:30:02 Received From : +08:30:02 ============================================================================ +08:30:02 FNo. Len. Field Value +08:30:02 ============================================================================ +08:30:02 [ 1] [ 4] [0810] +08:30:02 [ 7] [ 10] [0320013002] +08:30:02 [ 11] [ 6] [806905] +08:30:02 [ 15] [ 4] [0320] +08:30:02 [ 37] [ 12] [57908806905] +08:30:02 [ 39] [ 2] [00] +08:30:02 [ 70] [ 3] [001] +08:30:02 ============================================================================ +08:30:02 Sending to : +08:30:02 ============================================================================ +08:30:02 + + +waiting on router queue for slot.... +08:30:04 ============================================================================ +08:30:04 Slot Id : <359> +08:30:04 Transaction Type : REQUEST +08:30:04 Received From : +08:30:04 ============================================================================ +08:30:04 FNo. Len. Field Value +08:30:04 ============================================================================ +08:30:04 [ 1] [ 4] [0200] +08:30:04 [ 2] [ 16] [6688990040038836] +08:30:04 [ 3] [ 6] [012000] +08:30:04 [ 4] [ 12] [000040000000] +08:30:04 [ 7] [ 10] [0320083000] +08:30:04 [ 11] [ 6] [684789] +08:30:04 [ 12] [ 6] [083000] +08:30:04 [ 13] [ 4] [0320] +08:30:04 [ 15] [ 4] [0320] +08:30:04 [ 18] [ 4] [6011] +08:30:04 [ 22] [ 3] [900] +08:30:04 [ 25] [ 2] [02] +08:30:04 [ 28] [ 9] [D00002000] +08:30:04 [ 32] [ 6] [621354] +08:30:04 [ 35] [ 37] [6688990040038836=97111261972514900000] +08:30:04 [ 37] [ 12] [507902381120] +08:30:04 [ 41] [ 8] [01006300] +08:30:04 [ 42] [ 15] [NATIVE ] +08:30:04 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +08:30:04 [ 49] [ 3] [418] +08:30:04 [ 52] [ 16] [99272E2E49394CBA] +08:30:04 ============================================================================ +08:30:04 + + +waiting on router queue for slot.... +08:30:04 Sending to : +08:30:04 ============================================================================ +08:30:04 Sending to : +08:30:04 ============================================================================ +08:30:04 ============================================================================ +08:30:04 Slot Id : <359> +08:30:04 Transaction Type : REQUEST +08:30:04 Received From : +08:30:04 ============================================================================ +08:30:04 FNo. Len. Field Value +08:30:04 ============================================================================ +08:30:04 [ 1] [ 4] [0200] +08:30:04 [ 2] [ 16] [6688990040038836] +08:30:04 [ 3] [ 6] [012000] +08:30:04 [ 4] [ 12] [000040000000] +08:30:04 [ 7] [ 10] [0320083000] +08:30:04 [ 11] [ 6] [684789] +08:30:04 [ 12] [ 6] [083000] +08:30:04 [ 13] [ 4] [0320] +08:30:04 [ 15] [ 4] [0320] +08:30:04 [ 18] [ 4] [6011] +08:30:04 [ 22] [ 3] [900] +08:30:04 [ 25] [ 2] [02] +08:30:04 [ 28] [ 9] [D00002000] +08:30:04 [ 32] [ 6] [621354] +08:30:04 [ 35] [ 37] [6688990040038836=97111261972514900000] +08:30:04 [ 37] [ 12] [507902381120] +08:30:04 [ 41] [ 8] [01006300] +08:30:04 [ 42] [ 15] [NATIVE ] +08:30:04 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +08:30:04 [ 49] [ 3] [418] +08:30:04 [ 52] [ 16] [99272E2E49394CBA] +08:30:04 ============================================================================ +08:30:04 + + +waiting on router queue for slot.... +08:30:04 Sending to : +08:30:04 ============================================================================ +08:30:04 ============================================================================ +08:30:04 Slot Id : <359> +08:30:04 Transaction Type : REQUEST +08:30:04 Received From : +08:30:04 ============================================================================ +08:30:04 FNo. Len. Field Value +08:30:04 ============================================================================ +08:30:04 [ 1] [ 4] [0200] +08:30:04 [ 2] [ 16] [6688990040038836] +08:30:04 [ 3] [ 6] [012000] +08:30:04 [ 4] [ 12] [000040000000] +08:30:04 [ 7] [ 10] [0320083000] +08:30:04 [ 11] [ 6] [684789] +08:30:04 [ 12] [ 6] [083000] +08:30:04 [ 13] [ 4] [0320] +08:30:04 [ 15] [ 4] [0320] +08:30:04 [ 18] [ 4] [6011] +08:30:04 [ 22] [ 3] [900] +08:30:04 [ 25] [ 2] [02] +08:30:04 [ 28] [ 9] [D00002000] +08:30:04 [ 32] [ 6] [621354] +08:30:04 [ 35] [ 37] [6688990040038836=97111261972514900000] +08:30:04 [ 37] [ 12] [507902381120] +08:30:04 [ 41] [ 8] [01006300] +08:30:04 [ 42] [ 15] [NATIVE ] +08:30:04 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +08:30:04 [ 49] [ 3] [418] +08:30:04 [ 52] [ 16] [F1FF207CBBE52DDB] +08:30:04 ============================================================================ +08:30:04 + + +waiting on router queue for slot.... +08:30:04 Sending to : <4> +08:30:04 ============================================================================ +08:30:04 ============================================================================ +08:30:04 Slot Id : <359> +08:30:04 Transaction Type : RESPONSE +08:30:04 Received From : +08:30:04 ============================================================================ +08:30:04 FNo. Len. Field Value +08:30:04 ============================================================================ +08:30:04 [ 1] [ 4] [0210] +08:30:04 [ 2] [ 16] [6688990040038836] +08:30:04 [ 3] [ 6] [012000] +08:30:04 [ 4] [ 12] [000040000000] +08:30:04 [ 11] [ 6] [684789] +08:30:04 [ 12] [ 6] [083000] +08:30:04 [ 15] [ 4] [0320] +08:30:04 [ 18] [ 4] [6011] +08:30:04 [ 32] [ 6] [621354] +08:30:04 [ 35] [ 37] [6688990040038836=97111261972514900000] +08:30:04 [ 37] [ 12] [507902381120] +08:30:04 [ 39] [ 2] [51] +08:30:04 [ 41] [ 8] [01006300] +08:30:04 [ 49] [ 3] [418] +08:30:04 [ 54] [ 0] [] +08:30:04 ============================================================================ +08:30:04 Sending to : +08:30:04 ============================================================================ +08:30:04 + + +waiting on router queue for slot.... +08:30:05 ============================================================================ +08:30:05 Slot Id : <359> +08:30:05 Transaction Type : RESPONSE +08:30:05 Received From : +08:30:05 ============================================================================ +08:30:05 FNo. Len. Field Value +08:30:05 ============================================================================ +08:30:05 [ 1] [ 4] [0210] +08:30:05 [ 2] [ 16] [6688990040038836] +08:30:05 [ 3] [ 6] [012000] +08:30:05 [ 4] [ 12] [000040000000] +08:30:05 [ 11] [ 6] [684789] +08:30:05 [ 12] [ 6] [083000] +08:30:05 [ 15] [ 4] [0320] +08:30:05 [ 18] [ 4] [6011] +08:30:05 [ 32] [ 6] [621354] +08:30:05 [ 35] [ 37] [6688990040038836=97111261972514900000] +08:30:05 [ 37] [ 12] [507902381120] +08:30:05 [ 39] [ 2] [51] +08:30:05 [ 41] [ 8] [01006300] +08:30:05 [ 49] [ 3] [418] +08:30:05 [ 54] [ 0] [] +08:30:05 ============================================================================ +08:30:05 Calculate Source COMM Id = 0 +08:30:05 ============================================================================ +08:30:05 + + +waiting on router queue for slot.... +08:30:14 ============================================================================ +08:30:14 Slot Id : <374> +08:30:14 Transaction Type : REQUEST +08:30:14 Received From : +08:30:14 ============================================================================ +08:30:14 FNo. Len. Field Value +08:30:14 ============================================================================ +08:30:14 [ 1] [ 4] [0200] +08:30:14 [ 2] [ 16] [6688990030002537] +08:30:14 [ 3] [ 6] [011000] +08:30:14 [ 4] [ 12] [000100000000] +08:30:14 [ 7] [ 10] [0320083010] +08:30:14 [ 11] [ 6] [684834] +08:30:14 [ 12] [ 6] [083010] +08:30:14 [ 13] [ 4] [0320] +08:30:14 [ 15] [ 4] [0320] +08:30:14 [ 18] [ 4] [6011] +08:30:14 [ 22] [ 3] [900] +08:30:14 [ 25] [ 2] [02] +08:30:14 [ 28] [ 9] [D00002000] +08:30:14 [ 32] [ 6] [621354] +08:30:14 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:30:14 [ 37] [ 12] [507904706770] +08:30:14 [ 41] [ 8] [18000900] +08:30:14 [ 42] [ 15] [NATIVE ] +08:30:14 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:30:14 [ 49] [ 3] [418] +08:30:14 [ 52] [ 16] [AF1695B864875CB4] +08:30:14 ============================================================================ +08:30:14 + + +waiting on router queue for slot.... +08:30:14 Sending to : +08:30:14 ============================================================================ +08:30:14 Sending to : +08:30:14 ============================================================================ +08:30:14 ============================================================================ +08:30:14 Slot Id : <376> +08:30:14 Transaction Type : REQUEST +08:30:14 Received From : +08:30:14 ============================================================================ +08:30:14 FNo. Len. Field Value +08:30:14 ============================================================================ +08:30:14 [ 1] [ 4] [0800] +08:30:14 [ 7] [ 10] [0320012921] +08:30:14 [ 11] [ 6] [155419] +08:30:14 [ 70] [ 3] [301] +08:30:14 ============================================================================ +08:30:14 + + +waiting on router queue for slot.... +08:30:14 Sending to : +08:30:14 ============================================================================ +08:30:14 ============================================================================ +08:30:14 Slot Id : <376> +08:30:14 Transaction Type : RESPONSE +08:30:14 Received From : +08:30:14 ============================================================================ +08:30:14 FNo. Len. Field Value +08:30:14 ============================================================================ +08:30:14 [ 1] [ 4] [0810] +08:30:14 [ 7] [ 10] [0320012921] +08:30:14 [ 11] [ 6] [155419] +08:30:14 [ 39] [ 2] [00] +08:30:14 [ 70] [ 3] [301] +08:30:14 ============================================================================ +08:30:14 Calculate Source COMM Id = 2 +08:30:14 ============================================================================ +08:30:14 + + +waiting on router queue for slot.... +08:30:14 ============================================================================ +08:30:14 Slot Id : <374> +08:30:14 Transaction Type : REQUEST +08:30:14 Received From : +08:30:14 ============================================================================ +08:30:14 FNo. Len. Field Value +08:30:14 ============================================================================ +08:30:14 [ 1] [ 4] [0200] +08:30:14 [ 2] [ 16] [6688990030002537] +08:30:14 [ 3] [ 6] [011000] +08:30:14 [ 4] [ 12] [000100000000] +08:30:14 [ 7] [ 10] [0320083010] +08:30:14 [ 11] [ 6] [684834] +08:30:14 [ 12] [ 6] [083010] +08:30:14 [ 13] [ 4] [0320] +08:30:14 [ 15] [ 4] [0320] +08:30:14 [ 18] [ 4] [6011] +08:30:14 [ 22] [ 3] [900] +08:30:14 [ 25] [ 2] [02] +08:30:14 [ 28] [ 9] [D00002000] +08:30:14 [ 32] [ 6] [621354] +08:30:14 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:30:14 [ 37] [ 12] [507904706770] +08:30:14 [ 41] [ 8] [18000900] +08:30:14 [ 42] [ 15] [NATIVE ] +08:30:14 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:30:14 [ 49] [ 3] [418] +08:30:14 [ 52] [ 16] [AF1695B864875CB4] +08:30:14 ============================================================================ +08:30:14 + + +waiting on router queue for slot.... +08:30:14 Sending to : +08:30:14 ============================================================================ +08:30:14 ============================================================================ +08:30:14 Slot Id : <374> +08:30:14 Transaction Type : REQUEST +08:30:14 Received From : +08:30:14 ============================================================================ +08:30:14 FNo. Len. Field Value +08:30:14 ============================================================================ +08:30:14 [ 1] [ 4] [0200] +08:30:14 [ 2] [ 16] [6688990030002537] +08:30:14 [ 3] [ 6] [011000] +08:30:14 [ 4] [ 12] [000100000000] +08:30:14 [ 7] [ 10] [0320083010] +08:30:14 [ 11] [ 6] [684834] +08:30:14 [ 12] [ 6] [083010] +08:30:14 [ 13] [ 4] [0320] +08:30:14 [ 15] [ 4] [0320] +08:30:14 [ 18] [ 4] [6011] +08:30:14 [ 22] [ 3] [900] +08:30:14 [ 25] [ 2] [02] +08:30:14 [ 28] [ 9] [D00002000] +08:30:14 [ 32] [ 6] [621354] +08:30:14 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:30:14 [ 37] [ 12] [507904706770] +08:30:14 [ 41] [ 8] [18000900] +08:30:14 [ 42] [ 15] [NATIVE ] +08:30:14 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:30:14 [ 49] [ 3] [418] +08:30:14 [ 52] [ 16] [1C6E9F847813C343] +08:30:14 ============================================================================ +08:30:14 + + +waiting on router queue for slot.... +08:30:14 Sending to : <4> +08:30:14 ============================================================================ +08:30:14 ============================================================================ +08:30:14 Slot Id : <374> +08:30:14 Transaction Type : RESPONSE +08:30:14 Received From : +08:30:14 ============================================================================ +08:30:14 FNo. Len. Field Value +08:30:14 ============================================================================ +08:30:14 [ 1] [ 4] [0210] +08:30:14 [ 2] [ 16] [6688990030002537] +08:30:14 [ 3] [ 6] [011000] +08:30:14 [ 4] [ 12] [000100000000] +08:30:14 [ 7] [ 10] [0320083010] +08:30:14 [ 11] [ 6] [684834] +08:30:14 [ 12] [ 6] [083010] +08:30:14 [ 13] [ 4] [0320] +08:30:14 [ 15] [ 4] [0320] +08:30:14 [ 18] [ 4] [6011] +08:30:14 [ 22] [ 3] [021] +08:30:14 [ 32] [ 6] [621354] +08:30:14 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:30:14 [ 37] [ 12] [507904706770] +08:30:14 [ 38] [ 6] [082806] +08:30:14 [ 39] [ 2] [55] +08:30:14 [ 41] [ 8] [18000900] +08:30:14 [ 49] [ 3] [418] +08:30:14 ============================================================================ +08:30:14 Sending to : +08:30:14 ============================================================================ +08:30:14 + + +waiting on router queue for slot.... +08:30:15 ============================================================================ +08:30:15 Slot Id : <374> +08:30:15 Transaction Type : RESPONSE +08:30:15 Received From : +08:30:15 ============================================================================ +08:30:15 FNo. Len. Field Value +08:30:15 ============================================================================ +08:30:15 [ 1] [ 4] [0210] +08:30:15 [ 2] [ 16] [6688990030002537] +08:30:15 [ 3] [ 6] [011000] +08:30:15 [ 4] [ 12] [000100000000] +08:30:15 [ 7] [ 10] [0320083010] +08:30:15 [ 11] [ 6] [684834] +08:30:15 [ 12] [ 6] [083010] +08:30:15 [ 13] [ 4] [0320] +08:30:15 [ 15] [ 4] [0320] +08:30:15 [ 18] [ 4] [6011] +08:30:15 [ 22] [ 3] [021] +08:30:15 [ 32] [ 6] [621354] +08:30:15 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:30:15 [ 37] [ 12] [507904706770] +08:30:15 [ 38] [ 6] [082806] +08:30:15 [ 39] [ 2] [55] +08:30:15 [ 41] [ 8] [18000900] +08:30:15 [ 49] [ 3] [418] +08:30:15 ============================================================================ +08:30:15 Calculate Source COMM Id = 0 +08:30:15 ============================================================================ +08:30:15 + + +waiting on router queue for slot.... +08:30:21 ============================================================================ +08:30:21 Slot Id : <361> +08:30:21 Transaction Type : REQUEST +08:30:21 Received From : +08:30:21 ============================================================================ +08:30:21 FNo. Len. Field Value +08:30:21 ============================================================================ +08:30:21 [ 1] [ 4] [0800] +08:30:21 [ 7] [ 10] [0320154209] +08:30:21 [ 11] [ 6] [084209] +08:30:21 [ 37] [ 12] [57908084209] +08:30:21 [ 70] [ 3] [301] +08:30:21 ============================================================================ +08:30:21 + + +waiting on router queue for slot.... +08:30:21 Sending to : +08:30:21 ============================================================================ +08:30:21 ============================================================================ +08:30:21 Slot Id : <361> +08:30:21 Transaction Type : RESPONSE +08:30:21 Received From : +08:30:21 ============================================================================ +08:30:21 FNo. Len. Field Value +08:30:21 ============================================================================ +08:30:21 [ 1] [ 4] [0810] +08:30:21 [ 7] [ 10] [0320154209] +08:30:21 [ 11] [ 6] [084209] +08:30:21 [ 37] [ 12] [579080842090] +08:30:21 [ 39] [ 2] [00] +08:30:21 [ 70] [ 3] [810] +08:30:21 ============================================================================ +08:30:21 Calculate Source COMM Id = 6 +08:30:21 ============================================================================ +08:30:21 + + +waiting on router queue for slot.... +08:30:21 ============================================================================ +08:30:21 Slot Id : <395> +08:30:21 Transaction Type : REQUEST +08:30:21 Received From : +08:30:21 ============================================================================ +08:30:21 FNo. Len. Field Value +08:30:21 ============================================================================ +08:30:21 [ 1] [ 4] [0200] +08:30:21 [ 2] [ 16] [6213545000897326] +08:30:21 [ 3] [ 6] [301000] +08:30:21 [ 7] [ 10] [0320012929] +08:30:21 [ 11] [ 6] [267185] +08:30:21 [ 12] [ 6] [082929] +08:30:21 [ 13] [ 4] [0320] +08:30:21 [ 14] [ 4] [4912] +08:30:21 [ 15] [ 4] [0320] +08:30:21 [ 18] [ 4] [6011] +08:30:21 [ 19] [ 3] [418] +08:30:21 [ 22] [ 3] [021] +08:30:21 [ 25] [ 2] [01] +08:30:21 [ 32] [ 6] [180893] +08:30:21 [ 35] [ 32] [6213545000897326=491212019732189] +08:30:21 [ 37] [ 12] [507901267185] +08:30:21 [ 41] [ 8] [0243VTKS] +08:30:21 [ 42] [ 15] [999999 ] +08:30:21 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +08:30:21 [ 49] [ 3] [418] +08:30:21 [ 52] [ 16] [6ADE1543430EC17E] +08:30:21 ============================================================================ +08:30:21 + + +waiting on router queue for slot.... +08:30:21 Sending to : +08:30:21 ============================================================================ +08:30:21 Sending to : +08:30:21 ============================================================================ +08:30:22 ============================================================================ +08:30:22 Slot Id : <395> +08:30:22 Transaction Type : REQUEST +08:30:22 Received From : +08:30:22 ============================================================================ +08:30:22 FNo. Len. Field Value +08:30:22 ============================================================================ +08:30:22 [ 1] [ 4] [0200] +08:30:22 [ 2] [ 16] [6213545000897326] +08:30:22 [ 3] [ 6] [301000] +08:30:22 [ 7] [ 10] [0320012929] +08:30:22 [ 11] [ 6] [267185] +08:30:22 [ 12] [ 6] [082929] +08:30:22 [ 13] [ 4] [0320] +08:30:22 [ 14] [ 4] [4912] +08:30:22 [ 15] [ 4] [0320] +08:30:22 [ 18] [ 4] [6011] +08:30:22 [ 19] [ 3] [418] +08:30:22 [ 22] [ 3] [021] +08:30:22 [ 25] [ 2] [01] +08:30:22 [ 32] [ 6] [180893] +08:30:22 [ 35] [ 32] [6213545000897326=491212019732189] +08:30:22 [ 37] [ 12] [507901267185] +08:30:22 [ 41] [ 8] [0243VTKS] +08:30:22 [ 42] [ 15] [999999 ] +08:30:22 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +08:30:22 [ 49] [ 3] [418] +08:30:22 [ 52] [ 16] [6ADE1543430EC17E] +08:30:22 ============================================================================ +08:30:22 + + +waiting on router queue for slot.... +08:30:22 Sending to : +08:30:22 ============================================================================ +08:30:22 ============================================================================ +08:30:22 Slot Id : <395> +08:30:22 Transaction Type : REQUEST +08:30:22 Received From : +08:30:22 ============================================================================ +08:30:22 FNo. Len. Field Value +08:30:22 ============================================================================ +08:30:22 [ 1] [ 4] [0200] +08:30:22 [ 2] [ 16] [6213545000897326] +08:30:22 [ 3] [ 6] [301000] +08:30:22 [ 7] [ 10] [0320012929] +08:30:22 [ 11] [ 6] [267185] +08:30:22 [ 12] [ 6] [082929] +08:30:22 [ 13] [ 4] [0320] +08:30:22 [ 14] [ 4] [4912] +08:30:22 [ 15] [ 4] [0320] +08:30:22 [ 18] [ 4] [6011] +08:30:22 [ 19] [ 3] [418] +08:30:22 [ 22] [ 3] [021] +08:30:22 [ 25] [ 2] [01] +08:30:22 [ 32] [ 6] [180893] +08:30:22 [ 35] [ 32] [6213545000897326=491212019732189] +08:30:22 [ 37] [ 12] [507901267185] +08:30:22 [ 41] [ 8] [0243VTKS] +08:30:22 [ 42] [ 15] [999999 ] +08:30:22 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +08:30:22 [ 49] [ 3] [418] +08:30:22 [ 52] [ 16] [1265119009B7CB42] +08:30:22 ============================================================================ +08:30:22 + + +waiting on router queue for slot.... +08:30:22 Sending to : <0> +08:30:22 ============================================================================ +08:30:23 ============================================================================ +08:30:23 Slot Id : <395> +08:30:23 Transaction Type : RESPONSE +08:30:23 Received From : +08:30:23 ============================================================================ +08:30:23 FNo. Len. Field Value +08:30:23 ============================================================================ +08:30:23 [ 1] [ 4] [0210] +08:30:23 [ 2] [ 16] [6213545000897326] +08:30:23 [ 3] [ 6] [301000] +08:30:23 [ 4] [ 12] [000000000000] +08:30:23 [ 7] [ 10] [0320012929] +08:30:23 [ 11] [ 6] [267185] +08:30:23 [ 12] [ 6] [082929] +08:30:23 [ 13] [ 4] [0320] +08:30:23 [ 15] [ 4] [0320] +08:30:23 [ 18] [ 4] [6011] +08:30:23 [ 19] [ 3] [418] +08:30:23 [ 32] [ 6] [180893] +08:30:23 [ 35] [ 32] [6213545000897326=491212019732189] +08:30:23 [ 37] [ 12] [507901267185] +08:30:23 [ 38] [ 6] [309970] +08:30:23 [ 39] [ 2] [00] +08:30:23 [ 41] [ 8] [0243VTKS] +08:30:23 [ 49] [ 3] [418] +08:30:23 [ 54] [ 40] [1001418C0000051060351002418C000005106035] +08:30:23 ============================================================================ +08:30:23 Sending to : +08:30:23 ============================================================================ +08:30:23 + + +waiting on router queue for slot.... +08:30:24 ============================================================================ +08:30:24 Slot Id : <395> +08:30:24 Transaction Type : RESPONSE +08:30:24 Received From : +08:30:24 ============================================================================ +08:30:24 FNo. Len. Field Value +08:30:24 ============================================================================ +08:30:24 [ 1] [ 4] [0210] +08:30:24 [ 2] [ 16] [6213545000897326] +08:30:24 [ 3] [ 6] [301000] +08:30:24 [ 4] [ 12] [000000000000] +08:30:24 [ 7] [ 10] [0320012929] +08:30:24 [ 11] [ 6] [267185] +08:30:24 [ 12] [ 6] [082929] +08:30:24 [ 13] [ 4] [0320] +08:30:24 [ 15] [ 4] [0320] +08:30:24 [ 18] [ 4] [6011] +08:30:24 [ 19] [ 3] [418] +08:30:24 [ 32] [ 6] [180893] +08:30:24 [ 35] [ 32] [6213545000897326=491212019732189] +08:30:24 [ 37] [ 12] [507901267185] +08:30:24 [ 38] [ 6] [309970] +08:30:24 [ 39] [ 2] [00] +08:30:24 [ 41] [ 8] [0243VTKS] +08:30:24 [ 49] [ 3] [418] +08:30:24 [ 54] [ 40] [1001418C0000051060351002418C000005106035] +08:30:24 ============================================================================ +08:30:24 Calculate Source COMM Id = 2 +08:30:24 ============================================================================ +08:30:24 + + +waiting on router queue for slot.... +08:30:26 ============================================================================ +08:30:26 Slot Id : <410> +08:30:26 Transaction Type : REQUEST +08:30:26 Received From : +08:30:26 ============================================================================ +08:30:26 FNo. Len. Field Value +08:30:26 ============================================================================ +08:30:26 [ 1] [ 4] [0200] +08:30:26 [ 2] [ 16] [6688990030002537] +08:30:26 [ 3] [ 6] [011000] +08:30:26 [ 4] [ 12] [000100000000] +08:30:26 [ 7] [ 10] [0320083022] +08:30:26 [ 11] [ 6] [684878] +08:30:26 [ 12] [ 6] [083022] +08:30:26 [ 13] [ 4] [0320] +08:30:26 [ 15] [ 4] [0320] +08:30:26 [ 18] [ 4] [6011] +08:30:26 [ 22] [ 3] [900] +08:30:26 [ 25] [ 2] [02] +08:30:26 [ 28] [ 9] [D00002000] +08:30:26 [ 32] [ 6] [621354] +08:30:26 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:30:26 [ 37] [ 12] [507904706772] +08:30:26 [ 41] [ 8] [18000900] +08:30:26 [ 42] [ 15] [NATIVE ] +08:30:26 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:30:26 [ 49] [ 3] [418] +08:30:26 [ 52] [ 16] [752B6104E86573C5] +08:30:26 ============================================================================ +08:30:26 + + +waiting on router queue for slot.... +08:30:26 Sending to : +08:30:26 ============================================================================ +08:30:26 Sending to : +08:30:26 ============================================================================ +08:30:27 ============================================================================ +08:30:27 Slot Id : <410> +08:30:27 Transaction Type : REQUEST +08:30:27 Received From : +08:30:27 ============================================================================ +08:30:27 FNo. Len. Field Value +08:30:27 ============================================================================ +08:30:27 [ 1] [ 4] [0200] +08:30:27 [ 2] [ 16] [6688990030002537] +08:30:27 [ 3] [ 6] [011000] +08:30:27 [ 4] [ 12] [000100000000] +08:30:27 [ 7] [ 10] [0320083022] +08:30:27 [ 11] [ 6] [684878] +08:30:27 [ 12] [ 6] [083022] +08:30:27 [ 13] [ 4] [0320] +08:30:27 [ 15] [ 4] [0320] +08:30:27 [ 18] [ 4] [6011] +08:30:27 [ 22] [ 3] [900] +08:30:27 [ 25] [ 2] [02] +08:30:27 [ 28] [ 9] [D00002000] +08:30:27 [ 32] [ 6] [621354] +08:30:27 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:30:27 [ 37] [ 12] [507904706772] +08:30:27 [ 41] [ 8] [18000900] +08:30:27 [ 42] [ 15] [NATIVE ] +08:30:27 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:30:27 [ 49] [ 3] [418] +08:30:27 [ 52] [ 16] [752B6104E86573C5] +08:30:27 ============================================================================ +08:30:27 + + +waiting on router queue for slot.... +08:30:27 Sending to : +08:30:27 ============================================================================ +08:30:27 ============================================================================ +08:30:27 Slot Id : <410> +08:30:27 Transaction Type : REQUEST +08:30:27 Received From : +08:30:27 ============================================================================ +08:30:27 FNo. Len. Field Value +08:30:27 ============================================================================ +08:30:27 [ 1] [ 4] [0200] +08:30:27 [ 2] [ 16] [6688990030002537] +08:30:27 [ 3] [ 6] [011000] +08:30:27 [ 4] [ 12] [000100000000] +08:30:27 [ 7] [ 10] [0320083022] +08:30:27 [ 11] [ 6] [684878] +08:30:27 [ 12] [ 6] [083022] +08:30:27 [ 13] [ 4] [0320] +08:30:27 [ 15] [ 4] [0320] +08:30:27 [ 18] [ 4] [6011] +08:30:27 [ 22] [ 3] [900] +08:30:27 [ 25] [ 2] [02] +08:30:27 [ 28] [ 9] [D00002000] +08:30:27 [ 32] [ 6] [621354] +08:30:27 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:30:27 [ 37] [ 12] [507904706772] +08:30:27 [ 41] [ 8] [18000900] +08:30:27 [ 42] [ 15] [NATIVE ] +08:30:27 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:30:27 [ 49] [ 3] [418] +08:30:27 [ 52] [ 16] [3B0E9D1F650AC498] +08:30:27 ============================================================================ +08:30:27 + + +waiting on router queue for slot.... +08:30:27 Sending to : <4> +08:30:27 ============================================================================ +08:30:27 ============================================================================ +08:30:27 Slot Id : <383> +08:30:27 Transaction Type : REQUEST +08:30:27 Received From : +08:30:27 ============================================================================ +08:30:27 FNo. Len. Field Value +08:30:27 ============================================================================ +08:30:27 [ 1] [ 4] [0200] +08:30:27 [ 2] [ 16] [6213545000585863] +08:30:27 [ 3] [ 6] [010000] +08:30:27 [ 4] [ 12] [000100000000] +08:30:27 [ 7] [ 10] [0320082818] +08:30:27 [ 11] [ 6] [933003] +08:30:27 [ 12] [ 6] [082818] +08:30:27 [ 13] [ 4] [0320] +08:30:27 [ 15] [ 4] [0320] +08:30:27 [ 18] [ 4] [6011] +08:30:27 [ 19] [ 3] [418] +08:30:27 [ 22] [ 3] [021] +08:30:27 [ 25] [ 2] [01] +08:30:27 [ 28] [ 9] [D00002000] +08:30:27 [ 32] [ 6] [668899] +08:30:27 [ 35] [ 32] [6213545000585863=491212018586418] +08:30:27 [ 37] [ 12] [507900234069] +08:30:27 [ 41] [ 8] [03010001] +08:30:27 [ 42] [ 15] [APT ] +08:30:27 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +08:30:27 [ 49] [ 3] [418] +08:30:27 [ 52] [ 16] [75E6CC04D22BE78B] +08:30:27 ============================================================================ +08:30:27 + + +waiting on router queue for slot.... +08:30:27 Sending to : +08:30:27 ============================================================================ +08:30:27 Sending to : +08:30:27 ============================================================================ +08:30:27 ============================================================================ +08:30:27 Slot Id : <383> +08:30:27 Transaction Type : REQUEST +08:30:27 Received From : +08:30:27 ============================================================================ +08:30:27 FNo. Len. Field Value +08:30:27 ============================================================================ +08:30:27 [ 1] [ 4] [0200] +08:30:27 [ 2] [ 16] [6213545000585863] +08:30:27 [ 3] [ 6] [010000] +08:30:27 [ 4] [ 12] [000100000000] +08:30:27 [ 7] [ 10] [0320082818] +08:30:27 [ 11] [ 6] [933003] +08:30:27 [ 12] [ 6] [082818] +08:30:27 [ 13] [ 4] [0320] +08:30:27 [ 15] [ 4] [0320] +08:30:27 [ 18] [ 4] [6011] +08:30:27 [ 19] [ 3] [418] +08:30:27 [ 22] [ 3] [021] +08:30:27 [ 25] [ 2] [01] +08:30:27 [ 28] [ 9] [D00002000] +08:30:27 [ 32] [ 6] [668899] +08:30:27 [ 35] [ 32] [6213545000585863=491212018586418] +08:30:27 [ 37] [ 12] [507900234069] +08:30:27 [ 41] [ 8] [03010001] +08:30:27 [ 42] [ 15] [APT ] +08:30:27 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +08:30:27 [ 49] [ 3] [418] +08:30:27 [ 52] [ 16] [75E6CC04D22BE78B] +08:30:27 ============================================================================ +08:30:27 + + +waiting on router queue for slot.... +08:30:27 Sending to : +08:30:27 ============================================================================ +08:30:27 ============================================================================ +08:30:27 Slot Id : <383> +08:30:27 Transaction Type : REQUEST +08:30:27 Received From : +08:30:27 ============================================================================ +08:30:27 FNo. Len. Field Value +08:30:27 ============================================================================ +08:30:27 [ 1] [ 4] [0200] +08:30:27 [ 2] [ 16] [6213545000585863] +08:30:27 [ 3] [ 6] [010000] +08:30:27 [ 4] [ 12] [000100000000] +08:30:27 [ 7] [ 10] [0320082818] +08:30:27 [ 11] [ 6] [933003] +08:30:27 [ 12] [ 6] [082818] +08:30:27 [ 13] [ 4] [0320] +08:30:27 [ 15] [ 4] [0320] +08:30:27 [ 18] [ 4] [6011] +08:30:27 [ 19] [ 3] [418] +08:30:27 [ 22] [ 3] [021] +08:30:27 [ 25] [ 2] [01] +08:30:27 [ 28] [ 9] [D00002000] +08:30:27 [ 32] [ 6] [668899] +08:30:27 [ 35] [ 32] [6213545000585863=491212018586418] +08:30:27 [ 37] [ 12] [507900234069] +08:30:27 [ 41] [ 8] [03010001] +08:30:27 [ 42] [ 15] [APT ] +08:30:27 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +08:30:27 [ 49] [ 3] [418] +08:30:27 [ 52] [ 16] [B59039B12065ED46] +08:30:27 ============================================================================ +08:30:27 + + +waiting on router queue for slot.... +08:30:27 Sending to : <0> +08:30:27 ============================================================================ +08:30:28 ============================================================================ +08:30:28 Slot Id : <410> +08:30:28 Transaction Type : RESPONSE +08:30:28 Received From : +08:30:28 ============================================================================ +08:30:28 FNo. Len. Field Value +08:30:28 ============================================================================ +08:30:28 [ 1] [ 4] [0210] +08:30:28 [ 2] [ 16] [6688990030002537] +08:30:28 [ 3] [ 6] [011000] +08:30:28 [ 4] [ 12] [000100000000] +08:30:28 [ 11] [ 6] [684878] +08:30:28 [ 12] [ 6] [083022] +08:30:28 [ 15] [ 4] [0320] +08:30:28 [ 18] [ 4] [6011] +08:30:28 [ 32] [ 6] [621354] +08:30:28 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:30:28 [ 37] [ 12] [507904706772] +08:30:28 [ 38] [ 6] [418475] +08:30:28 [ 39] [ 2] [00] +08:30:28 [ 41] [ 8] [18000900] +08:30:28 [ 49] [ 3] [418] +08:30:28 [ 54] [ 20] [1002418C002938268956] +08:30:28 ============================================================================ +08:30:28 Sending to : +08:30:28 ============================================================================ +08:30:28 + + +waiting on router queue for slot.... +08:30:28 ============================================================================ +08:30:28 Slot Id : <383> +08:30:28 Transaction Type : RESPONSE +08:30:28 Received From : +08:30:28 ============================================================================ +08:30:28 FNo. Len. Field Value +08:30:28 ============================================================================ +08:30:28 [ 1] [ 4] [0210] +08:30:28 [ 2] [ 16] [6213545000585863] +08:30:28 [ 3] [ 6] [010000] +08:30:28 [ 4] [ 12] [000100000000] +08:30:28 [ 7] [ 10] [0320082818] +08:30:28 [ 11] [ 6] [933003] +08:30:28 [ 12] [ 6] [082818] +08:30:28 [ 13] [ 4] [0320] +08:30:28 [ 15] [ 4] [0320] +08:30:28 [ 18] [ 4] [6011] +08:30:28 [ 19] [ 3] [418] +08:30:28 [ 32] [ 6] [668899] +08:30:28 [ 35] [ 32] [6213545000585863=491212018586418] +08:30:28 [ 37] [ 12] [507900234069] +08:30:28 [ 38] [ 6] [727387] +08:30:28 [ 39] [ 2] [00] +08:30:28 [ 41] [ 8] [03010001] +08:30:28 [ 49] [ 3] [418] +08:30:28 [ 54] [ 40] [0001418C0001048209330002418C000104820933] +08:30:28 ============================================================================ +08:30:28 Sending to : +08:30:28 ============================================================================ +08:30:28 + + +waiting on router queue for slot.... +08:30:29 ============================================================================ +08:30:29 Slot Id : <410> +08:30:29 Transaction Type : RESPONSE +08:30:29 Received From : +08:30:29 ============================================================================ +08:30:29 FNo. Len. Field Value +08:30:29 ============================================================================ +08:30:29 [ 1] [ 4] [0210] +08:30:29 [ 2] [ 16] [6688990030002537] +08:30:29 [ 3] [ 6] [011000] +08:30:29 [ 4] [ 12] [000100000000] +08:30:29 [ 11] [ 6] [684878] +08:30:29 [ 12] [ 6] [083022] +08:30:29 [ 15] [ 4] [0320] +08:30:29 [ 18] [ 4] [6011] +08:30:29 [ 32] [ 6] [621354] +08:30:29 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:30:29 [ 37] [ 12] [507904706772] +08:30:29 [ 38] [ 6] [418475] +08:30:29 [ 39] [ 2] [00] +08:30:29 [ 41] [ 8] [18000900] +08:30:29 [ 49] [ 3] [418] +08:30:29 [ 54] [ 20] [1002418C002938268956] +08:30:29 ============================================================================ +08:30:29 Calculate Source COMM Id = 0 +08:30:29 ============================================================================ +08:30:29 + + +waiting on router queue for slot.... +08:30:31 ============================================================================ +08:30:31 Slot Id : <383> +08:30:31 Transaction Type : RESPONSE +08:30:31 Received From : +08:30:31 ============================================================================ +08:30:31 FNo. Len. Field Value +08:30:31 ============================================================================ +08:30:31 [ 1] [ 4] [0210] +08:30:31 [ 2] [ 16] [6213545000585863] +08:30:31 [ 3] [ 6] [010000] +08:30:31 [ 4] [ 12] [000100000000] +08:30:31 [ 7] [ 10] [0320082818] +08:30:31 [ 11] [ 6] [933003] +08:30:31 [ 12] [ 6] [082818] +08:30:31 [ 13] [ 4] [0320] +08:30:31 [ 15] [ 4] [0320] +08:30:31 [ 18] [ 4] [6011] +08:30:31 [ 19] [ 3] [418] +08:30:31 [ 32] [ 6] [668899] +08:30:31 [ 35] [ 32] [6213545000585863=491212018586418] +08:30:31 [ 37] [ 12] [507900234069] +08:30:31 [ 38] [ 6] [727387] +08:30:31 [ 39] [ 2] [00] +08:30:31 [ 41] [ 8] [03010001] +08:30:31 [ 49] [ 3] [418] +08:30:31 [ 54] [ 40] [0001418C0001048209330002418C000104820933] +08:30:31 ============================================================================ +08:30:31 Calculate Source COMM Id = 4 +08:30:31 ============================================================================ +08:30:31 + + +waiting on router queue for slot.... +08:30:34 ============================================================================ +08:30:34 Slot Id : <393> +08:30:34 Transaction Type : REQUEST +08:30:34 Received From : +08:30:34 ============================================================================ +08:30:34 FNo. Len. Field Value +08:30:34 ============================================================================ +08:30:34 [ 1] [ 4] [0200] +08:30:34 [ 2] [ 16] [6688990060029723] +08:30:34 [ 3] [ 6] [301000] +08:30:34 [ 4] [ 12] [000000000000] +08:30:34 [ 7] [ 10] [0320083030] +08:30:34 [ 11] [ 6] [684912] +08:30:34 [ 12] [ 6] [083030] +08:30:34 [ 13] [ 4] [0320] +08:30:34 [ 15] [ 4] [0320] +08:30:34 [ 18] [ 4] [6011] +08:30:34 [ 22] [ 3] [900] +08:30:34 [ 25] [ 2] [02] +08:30:34 [ 28] [ 9] [D00000000] +08:30:34 [ 32] [ 6] [621354] +08:30:34 [ 35] [ 37] [6688990060029723=98021261891984000000] +08:30:34 [ 37] [ 12] [507904153773] +08:30:34 [ 41] [ 8] [20001000] +08:30:34 [ 42] [ 15] [NATIVE ] +08:30:34 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:30:34 [ 49] [ 3] [418] +08:30:34 [ 52] [ 16] [119C3CC49EAACEA3] +08:30:34 ============================================================================ +08:30:34 + + +waiting on router queue for slot.... +08:30:34 Sending to : +08:30:34 ============================================================================ +08:30:34 Sending to : +08:30:34 ============================================================================ +08:30:35 ============================================================================ +08:30:35 Slot Id : <393> +08:30:35 Transaction Type : REQUEST +08:30:35 Received From : +08:30:35 ============================================================================ +08:30:35 FNo. Len. Field Value +08:30:35 ============================================================================ +08:30:35 [ 1] [ 4] [0200] +08:30:35 [ 2] [ 16] [6688990060029723] +08:30:35 [ 3] [ 6] [301000] +08:30:35 [ 4] [ 12] [000000000000] +08:30:35 [ 7] [ 10] [0320083030] +08:30:35 [ 11] [ 6] [684912] +08:30:35 [ 12] [ 6] [083030] +08:30:35 [ 13] [ 4] [0320] +08:30:35 [ 15] [ 4] [0320] +08:30:35 [ 18] [ 4] [6011] +08:30:35 [ 22] [ 3] [900] +08:30:35 [ 25] [ 2] [02] +08:30:35 [ 28] [ 9] [D00000000] +08:30:35 [ 32] [ 6] [621354] +08:30:35 [ 35] [ 37] [6688990060029723=98021261891984000000] +08:30:35 [ 37] [ 12] [507904153773] +08:30:35 [ 41] [ 8] [20001000] +08:30:35 [ 42] [ 15] [NATIVE ] +08:30:35 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:30:35 [ 49] [ 3] [418] +08:30:35 [ 52] [ 16] [119C3CC49EAACEA3] +08:30:35 ============================================================================ +08:30:35 + + +waiting on router queue for slot.... +08:30:35 Sending to : +08:30:35 ============================================================================ +08:30:35 ============================================================================ +08:30:35 Slot Id : <393> +08:30:35 Transaction Type : REQUEST +08:30:35 Received From : +08:30:35 ============================================================================ +08:30:35 FNo. Len. Field Value +08:30:35 ============================================================================ +08:30:35 [ 1] [ 4] [0200] +08:30:35 [ 2] [ 16] [6688990060029723] +08:30:35 [ 3] [ 6] [301000] +08:30:35 [ 4] [ 12] [000000000000] +08:30:35 [ 7] [ 10] [0320083030] +08:30:35 [ 11] [ 6] [684912] +08:30:35 [ 12] [ 6] [083030] +08:30:35 [ 13] [ 4] [0320] +08:30:35 [ 15] [ 4] [0320] +08:30:35 [ 18] [ 4] [6011] +08:30:35 [ 22] [ 3] [900] +08:30:35 [ 25] [ 2] [02] +08:30:35 [ 28] [ 9] [D00000000] +08:30:35 [ 32] [ 6] [621354] +08:30:35 [ 35] [ 37] [6688990060029723=98021261891984000000] +08:30:35 [ 37] [ 12] [507904153773] +08:30:35 [ 41] [ 8] [20001000] +08:30:35 [ 42] [ 15] [NATIVE ] +08:30:35 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:30:35 [ 49] [ 3] [418] +08:30:35 [ 52] [ 16] [17C06E6490E916FE] +08:30:35 ============================================================================ +08:30:35 + + +waiting on router queue for slot.... +08:30:35 Sending to : <4> +08:30:35 ============================================================================ +08:30:35 ============================================================================ +08:30:35 Slot Id : <393> +08:30:35 Transaction Type : RESPONSE +08:30:35 Received From : +08:30:35 ============================================================================ +08:30:35 FNo. Len. Field Value +08:30:35 ============================================================================ +08:30:35 [ 1] [ 4] [0210] +08:30:35 [ 2] [ 16] [6688990060029723] +08:30:35 [ 3] [ 6] [301000] +08:30:35 [ 4] [ 12] [000000000000] +08:30:35 [ 7] [ 10] [0320083030] +08:30:35 [ 11] [ 6] [684912] +08:30:35 [ 12] [ 6] [083030] +08:30:35 [ 13] [ 4] [0320] +08:30:35 [ 15] [ 4] [0320] +08:30:35 [ 18] [ 4] [6011] +08:30:35 [ 22] [ 3] [021] +08:30:35 [ 32] [ 6] [621354] +08:30:35 [ 35] [ 37] [6688990060029723=98021261891984000000] +08:30:35 [ 37] [ 12] [507904153773] +08:30:35 [ 38] [ 6] [082826] +08:30:35 [ 39] [ 2] [55] +08:30:35 [ 41] [ 8] [20001000] +08:30:35 [ 49] [ 3] [418] +08:30:35 ============================================================================ +08:30:35 Sending to : +08:30:35 ============================================================================ +08:30:35 + + +waiting on router queue for slot.... +08:30:36 ============================================================================ +08:30:36 Slot Id : <393> +08:30:36 Transaction Type : RESPONSE +08:30:36 Received From : +08:30:36 ============================================================================ +08:30:36 FNo. Len. Field Value +08:30:36 ============================================================================ +08:30:36 [ 1] [ 4] [0210] +08:30:36 [ 2] [ 16] [6688990060029723] +08:30:36 [ 3] [ 6] [301000] +08:30:36 [ 4] [ 12] [000000000000] +08:30:36 [ 7] [ 10] [0320083030] +08:30:36 [ 11] [ 6] [684912] +08:30:36 [ 12] [ 6] [083030] +08:30:36 [ 13] [ 4] [0320] +08:30:36 [ 15] [ 4] [0320] +08:30:36 [ 18] [ 4] [6011] +08:30:36 [ 22] [ 3] [021] +08:30:36 [ 32] [ 6] [621354] +08:30:36 [ 35] [ 37] [6688990060029723=98021261891984000000] +08:30:36 [ 37] [ 12] [507904153773] +08:30:36 [ 38] [ 6] [082826] +08:30:36 [ 39] [ 2] [55] +08:30:36 [ 41] [ 8] [20001000] +08:30:36 [ 49] [ 3] [418] +08:30:36 ============================================================================ +08:30:36 Calculate Source COMM Id = 0 +08:30:36 ============================================================================ +08:30:36 + + +waiting on router queue for slot.... +08:30:39 ============================================================================ +08:30:39 Slot Id : <349> +08:30:39 Transaction Type : REQUEST +08:30:39 Received From : +08:30:39 ============================================================================ +08:30:39 FNo. Len. Field Value +08:30:39 ============================================================================ +08:30:39 [ 1] [ 4] [0800] +08:30:39 [ 7] [ 10] [0320012947] +08:30:39 [ 11] [ 6] [155420] +08:30:39 [ 70] [ 3] [301] +08:30:39 ============================================================================ +08:30:39 + + +waiting on router queue for slot.... +08:30:39 Sending to : +08:30:39 ============================================================================ +08:30:39 ============================================================================ +08:30:39 Slot Id : <349> +08:30:39 Transaction Type : RESPONSE +08:30:39 Received From : +08:30:39 ============================================================================ +08:30:39 FNo. Len. Field Value +08:30:39 ============================================================================ +08:30:39 [ 1] [ 4] [0810] +08:30:39 [ 7] [ 10] [0320012947] +08:30:39 [ 11] [ 6] [155420] +08:30:39 [ 39] [ 2] [00] +08:30:39 [ 70] [ 3] [301] +08:30:39 ============================================================================ +08:30:39 Calculate Source COMM Id = 2 +08:30:39 ============================================================================ +08:30:39 + + +waiting on router queue for slot.... +08:30:50 ============================================================================ +08:30:50 Slot Id : <413> +08:30:50 Transaction Type : REQUEST +08:30:50 Received From : +08:30:50 ============================================================================ +08:30:50 FNo. Len. Field Value +08:30:50 ============================================================================ +08:30:50 [ 1] [ 4] [0800] +08:30:50 [ 7] [ 10] [0320012958] +08:30:50 [ 11] [ 6] [155421] +08:30:50 [ 70] [ 3] [301] +08:30:50 ============================================================================ +08:30:50 + + +waiting on router queue for slot.... +08:30:50 Sending to : +08:30:50 ============================================================================ +08:30:50 ============================================================================ +08:30:50 Slot Id : <413> +08:30:50 Transaction Type : RESPONSE +08:30:50 Received From : +08:30:50 ============================================================================ +08:30:50 FNo. Len. Field Value +08:30:50 ============================================================================ +08:30:50 [ 1] [ 4] [0810] +08:30:50 [ 7] [ 10] [0320012958] +08:30:50 [ 11] [ 6] [155421] +08:30:50 [ 39] [ 2] [00] +08:30:50 [ 70] [ 3] [301] +08:30:50 ============================================================================ +08:30:50 Calculate Source COMM Id = 2 +08:30:50 ============================================================================ +08:30:50 + + +waiting on router queue for slot.... +08:30:57 ============================================================================ +08:30:57 Slot Id : <397> +08:30:57 Transaction Type : REQUEST +08:30:57 Received From : +08:30:57 ============================================================================ +08:30:57 FNo. Len. Field Value +08:30:57 ============================================================================ +08:30:57 [ 1] [ 4] [0200] +08:30:57 [ 2] [ 16] [6213544002079843] +08:30:57 [ 3] [ 6] [011000] +08:30:57 [ 4] [ 12] [000010000000] +08:30:57 [ 7] [ 10] [0320083118] +08:30:57 [ 11] [ 6] [202144] +08:30:57 [ 12] [ 6] [083302] +08:30:57 [ 13] [ 4] [0320] +08:30:57 [ 14] [ 4] [4912] +08:30:57 [ 15] [ 4] [0320] +08:30:57 [ 18] [ 4] [6011] +08:30:57 [ 19] [ 3] [418] +08:30:57 [ 22] [ 3] [021] +08:30:57 [ 25] [ 2] [01] +08:30:57 [ 28] [ 9] [D00002000] +08:30:57 [ 32] [ 6] [198901] +08:30:57 [ 35] [ 32] [6213544002079843=491212017984121] +08:30:57 [ 37] [ 12] [507908202144] +08:30:57 [ 41] [ 8] [00002222] +08:30:57 [ 42] [ 15] [000000041002222] +08:30:57 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +08:30:57 [ 49] [ 3] [418] +08:30:57 [ 52] [ 16] [BBA50279F04A12C0] +08:30:57 ============================================================================ +08:30:57 + + +waiting on router queue for slot.... +08:30:57 Sending to : +08:30:57 ============================================================================ +08:30:57 Sending to : +08:30:57 ============================================================================ +08:30:57 ============================================================================ +08:30:57 Slot Id : <397> +08:30:57 Transaction Type : REQUEST +08:30:57 Received From : +08:30:57 ============================================================================ +08:30:57 FNo. Len. Field Value +08:30:57 ============================================================================ +08:30:57 [ 1] [ 4] [0200] +08:30:57 [ 2] [ 16] [6213544002079843] +08:30:57 [ 3] [ 6] [011000] +08:30:57 [ 4] [ 12] [000010000000] +08:30:57 [ 7] [ 10] [0320083118] +08:30:57 [ 11] [ 6] [202144] +08:30:57 [ 12] [ 6] [083302] +08:30:57 [ 13] [ 4] [0320] +08:30:57 [ 14] [ 4] [4912] +08:30:57 [ 15] [ 4] [0320] +08:30:57 [ 18] [ 4] [6011] +08:30:57 [ 19] [ 3] [418] +08:30:57 [ 22] [ 3] [021] +08:30:57 [ 25] [ 2] [01] +08:30:57 [ 28] [ 9] [D00002000] +08:30:57 [ 32] [ 6] [198901] +08:30:57 [ 35] [ 32] [6213544002079843=491212017984121] +08:30:57 [ 37] [ 12] [507908202144] +08:30:57 [ 41] [ 8] [00002222] +08:30:57 [ 42] [ 15] [000000041002222] +08:30:57 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +08:30:57 [ 49] [ 3] [418] +08:30:57 [ 52] [ 16] [BBA50279F04A12C0] +08:30:57 ============================================================================ +08:30:57 + + +waiting on router queue for slot.... +08:30:57 Sending to : +08:30:57 ============================================================================ +08:30:57 ============================================================================ +08:30:57 Slot Id : <397> +08:30:57 Transaction Type : REQUEST +08:30:57 Received From : +08:30:57 ============================================================================ +08:30:57 FNo. Len. Field Value +08:30:57 ============================================================================ +08:30:57 [ 1] [ 4] [0200] +08:30:57 [ 2] [ 16] [6213544002079843] +08:30:57 [ 3] [ 6] [011000] +08:30:57 [ 4] [ 12] [000010000000] +08:30:57 [ 7] [ 10] [0320083118] +08:30:57 [ 11] [ 6] [202144] +08:30:57 [ 12] [ 6] [083302] +08:30:57 [ 13] [ 4] [0320] +08:30:57 [ 14] [ 4] [4912] +08:30:57 [ 15] [ 4] [0320] +08:30:57 [ 18] [ 4] [6011] +08:30:57 [ 19] [ 3] [418] +08:30:57 [ 22] [ 3] [021] +08:30:57 [ 25] [ 2] [01] +08:30:57 [ 28] [ 9] [D00002000] +08:30:57 [ 32] [ 6] [198901] +08:30:57 [ 35] [ 32] [6213544002079843=491212017984121] +08:30:57 [ 37] [ 12] [507908202144] +08:30:57 [ 41] [ 8] [00002222] +08:30:57 [ 42] [ 15] [000000041002222] +08:30:57 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +08:30:57 [ 49] [ 3] [418] +08:30:57 [ 52] [ 16] [B0590EE6B418AB57] +08:30:57 ============================================================================ +08:30:57 + + +waiting on router queue for slot.... +08:30:57 Sending to : <0> +08:30:57 ============================================================================ +08:30:58 ============================================================================ +08:30:58 Slot Id : <397> +08:30:58 Transaction Type : RESPONSE +08:30:58 Received From : +08:30:58 ============================================================================ +08:30:58 FNo. Len. Field Value +08:30:58 ============================================================================ +08:30:58 [ 1] [ 4] [0210] +08:30:58 [ 2] [ 16] [6213544002079843] +08:30:58 [ 3] [ 6] [011000] +08:30:58 [ 4] [ 12] [000010000000] +08:30:58 [ 7] [ 10] [0320083118] +08:30:58 [ 11] [ 6] [202144] +08:30:58 [ 12] [ 6] [083302] +08:30:58 [ 13] [ 4] [0320] +08:30:58 [ 15] [ 4] [0320] +08:30:58 [ 18] [ 4] [6011] +08:30:58 [ 19] [ 3] [418] +08:30:58 [ 32] [ 6] [198901] +08:30:58 [ 35] [ 32] [6213544002079843=491212017984121] +08:30:58 [ 37] [ 12] [507908202144] +08:30:58 [ 38] [ 6] [202144] +08:30:58 [ 39] [ 2] [51] +08:30:58 [ 41] [ 8] [00002222] +08:30:58 [ 49] [ 3] [418] +08:30:58 [ 54] [ 40] [1001418C0000146722451002418C000014672245] +08:30:58 ============================================================================ +08:30:58 Sending to : +08:30:58 ============================================================================ +08:30:58 + + +waiting on router queue for slot.... +08:30:58 ============================================================================ +08:30:58 Slot Id : <414> +08:30:58 Transaction Type : REQUEST +08:30:58 Received From : +08:30:58 ============================================================================ +08:30:58 FNo. Len. Field Value +08:30:58 ============================================================================ +08:30:58 [ 1] [ 4] [0200] +08:30:58 [ 2] [ 16] [6688990060029723] +08:30:58 [ 3] [ 6] [301000] +08:30:58 [ 4] [ 12] [000000000000] +08:30:58 [ 7] [ 10] [0320083054] +08:30:58 [ 11] [ 6] [685022] +08:30:58 [ 12] [ 6] [083054] +08:30:58 [ 13] [ 4] [0320] +08:30:58 [ 15] [ 4] [0320] +08:30:58 [ 18] [ 4] [6011] +08:30:58 [ 22] [ 3] [900] +08:30:58 [ 25] [ 2] [02] +08:30:58 [ 28] [ 9] [D00000000] +08:30:58 [ 32] [ 6] [621354] +08:30:58 [ 35] [ 37] [6688990060029723=98021261891984000000] +08:30:58 [ 37] [ 12] [507904153774] +08:30:58 [ 41] [ 8] [20001000] +08:30:58 [ 42] [ 15] [NATIVE ] +08:30:58 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:30:58 [ 49] [ 3] [418] +08:30:58 [ 52] [ 16] [119C3CC49EAACEA3] +08:30:58 ============================================================================ +08:30:58 + + +waiting on router queue for slot.... +08:30:58 Sending to : +08:30:58 ============================================================================ +08:30:58 Sending to : +08:30:58 ============================================================================ +08:30:58 ============================================================================ +08:30:58 Slot Id : <414> +08:30:58 Transaction Type : REQUEST +08:30:58 Received From : +08:30:58 ============================================================================ +08:30:58 FNo. Len. Field Value +08:30:58 ============================================================================ +08:30:58 [ 1] [ 4] [0200] +08:30:58 [ 2] [ 16] [6688990060029723] +08:30:58 [ 3] [ 6] [301000] +08:30:58 [ 4] [ 12] [000000000000] +08:30:58 [ 7] [ 10] [0320083054] +08:30:58 [ 11] [ 6] [685022] +08:30:58 [ 12] [ 6] [083054] +08:30:58 [ 13] [ 4] [0320] +08:30:58 [ 15] [ 4] [0320] +08:30:58 [ 18] [ 4] [6011] +08:30:58 [ 22] [ 3] [900] +08:30:58 [ 25] [ 2] [02] +08:30:58 [ 28] [ 9] [D00000000] +08:30:58 [ 32] [ 6] [621354] +08:30:58 [ 35] [ 37] [6688990060029723=98021261891984000000] +08:30:58 [ 37] [ 12] [507904153774] +08:30:58 [ 41] [ 8] [20001000] +08:30:58 [ 42] [ 15] [NATIVE ] +08:30:58 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:30:58 [ 49] [ 3] [418] +08:30:58 [ 52] [ 16] [119C3CC49EAACEA3] +08:30:58 ============================================================================ +08:30:58 + + +waiting on router queue for slot.... +08:30:58 Sending to : +08:30:58 ============================================================================ +08:30:58 ============================================================================ +08:30:58 Slot Id : <414> +08:30:58 Transaction Type : REQUEST +08:30:58 Received From : +08:30:58 ============================================================================ +08:30:58 FNo. Len. Field Value +08:30:58 ============================================================================ +08:30:58 [ 1] [ 4] [0200] +08:30:58 [ 2] [ 16] [6688990060029723] +08:30:58 [ 3] [ 6] [301000] +08:30:58 [ 4] [ 12] [000000000000] +08:30:58 [ 7] [ 10] [0320083054] +08:30:58 [ 11] [ 6] [685022] +08:30:58 [ 12] [ 6] [083054] +08:30:58 [ 13] [ 4] [0320] +08:30:58 [ 15] [ 4] [0320] +08:30:58 [ 18] [ 4] [6011] +08:30:58 [ 22] [ 3] [900] +08:30:58 [ 25] [ 2] [02] +08:30:58 [ 28] [ 9] [D00000000] +08:30:58 [ 32] [ 6] [621354] +08:30:58 [ 35] [ 37] [6688990060029723=98021261891984000000] +08:30:58 [ 37] [ 12] [507904153774] +08:30:58 [ 41] [ 8] [20001000] +08:30:58 [ 42] [ 15] [NATIVE ] +08:30:58 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:30:58 [ 49] [ 3] [418] +08:30:58 [ 52] [ 16] [17C06E6490E916FE] +08:30:58 ============================================================================ +08:30:58 + + +waiting on router queue for slot.... +08:30:58 Sending to : <4> +08:30:58 ============================================================================ +08:30:58 ============================================================================ +08:30:58 Slot Id : <414> +08:30:58 Transaction Type : RESPONSE +08:30:58 Received From : +08:30:58 ============================================================================ +08:30:58 FNo. Len. Field Value +08:30:58 ============================================================================ +08:30:58 [ 1] [ 4] [0210] +08:30:58 [ 2] [ 16] [6688990060029723] +08:30:58 [ 3] [ 6] [301000] +08:30:58 [ 4] [ 12] [000000000000] +08:30:58 [ 7] [ 10] [0320083054] +08:30:58 [ 11] [ 6] [685022] +08:30:58 [ 12] [ 6] [083054] +08:30:58 [ 13] [ 4] [0320] +08:30:58 [ 15] [ 4] [0320] +08:30:58 [ 18] [ 4] [6011] +08:30:58 [ 22] [ 3] [021] +08:30:58 [ 32] [ 6] [621354] +08:30:58 [ 35] [ 37] [6688990060029723=98021261891984000000] +08:30:58 [ 37] [ 12] [507904153774] +08:30:58 [ 38] [ 6] [082850] +08:30:58 [ 39] [ 2] [75] +08:30:58 [ 41] [ 8] [20001000] +08:30:58 [ 49] [ 3] [418] +08:30:58 ============================================================================ +08:30:58 Sending to : +08:30:58 ============================================================================ +08:30:58 + + +waiting on router queue for slot.... +08:30:59 ============================================================================ +08:30:59 Slot Id : <397> +08:30:59 Transaction Type : RESPONSE +08:30:59 Received From : +08:30:59 ============================================================================ +08:30:59 FNo. Len. Field Value +08:30:59 ============================================================================ +08:30:59 [ 1] [ 4] [0210] +08:30:59 [ 2] [ 16] [6213544002079843] +08:30:59 [ 3] [ 6] [011000] +08:30:59 [ 4] [ 12] [000010000000] +08:30:59 [ 7] [ 10] [0320083118] +08:30:59 [ 11] [ 6] [202144] +08:30:59 [ 12] [ 6] [083302] +08:30:59 [ 13] [ 4] [0320] +08:30:59 [ 15] [ 4] [0320] +08:30:59 [ 18] [ 4] [6011] +08:30:59 [ 19] [ 3] [418] +08:30:59 [ 32] [ 6] [198901] +08:30:59 [ 35] [ 32] [6213544002079843=491212017984121] +08:30:59 [ 37] [ 12] [507908202144] +08:30:59 [ 38] [ 6] [202144] +08:30:59 [ 39] [ 2] [51] +08:30:59 [ 41] [ 8] [00002222] +08:30:59 [ 49] [ 3] [418] +08:30:59 [ 54] [ 40] [1001418C0000146722451002418C000014672245] +08:30:59 ============================================================================ +08:30:59 Calculate Source COMM Id = 5 +08:30:59 ============================================================================ +08:30:59 + + +waiting on router queue for slot.... +08:31:01 ============================================================================ +08:31:01 Slot Id : <400> +08:31:01 Transaction Type : REQUEST +08:31:01 Received From : +08:31:01 ============================================================================ +08:31:01 FNo. Len. Field Value +08:31:01 ============================================================================ +08:31:01 [ 1] [ 4] [0800] +08:31:01 [ 7] [ 10] [0320013009] +08:31:01 [ 11] [ 6] [155422] +08:31:01 [ 70] [ 3] [301] +08:31:01 ============================================================================ +08:31:01 + + +waiting on router queue for slot.... +08:31:01 Sending to : +08:31:01 ============================================================================ +08:31:01 ============================================================================ +08:31:01 Slot Id : <400> +08:31:01 Transaction Type : RESPONSE +08:31:01 Received From : +08:31:01 ============================================================================ +08:31:01 FNo. Len. Field Value +08:31:01 ============================================================================ +08:31:01 [ 1] [ 4] [0810] +08:31:01 [ 7] [ 10] [0320013009] +08:31:01 [ 11] [ 6] [155422] +08:31:01 [ 39] [ 2] [00] +08:31:01 [ 70] [ 3] [301] +08:31:01 ============================================================================ +08:31:01 Calculate Source COMM Id = 2 +08:31:01 ============================================================================ +08:31:01 + + +waiting on router queue for slot.... +08:31:01 ============================================================================ +08:31:01 Slot Id : <414> +08:31:01 Transaction Type : RESPONSE +08:31:01 Received From : +08:31:01 ============================================================================ +08:31:01 FNo. Len. Field Value +08:31:01 ============================================================================ +08:31:01 [ 1] [ 4] [0210] +08:31:01 [ 2] [ 16] [6688990060029723] +08:31:01 [ 3] [ 6] [301000] +08:31:01 [ 4] [ 12] [000000000000] +08:31:01 [ 7] [ 10] [0320083054] +08:31:01 [ 11] [ 6] [685022] +08:31:01 [ 12] [ 6] [083054] +08:31:01 [ 13] [ 4] [0320] +08:31:01 [ 15] [ 4] [0320] +08:31:01 [ 18] [ 4] [6011] +08:31:01 [ 22] [ 3] [021] +08:31:01 [ 32] [ 6] [621354] +08:31:01 [ 35] [ 37] [6688990060029723=98021261891984000000] +08:31:01 [ 37] [ 12] [507904153774] +08:31:01 [ 38] [ 6] [082850] +08:31:01 [ 39] [ 2] [75] +08:31:01 [ 41] [ 8] [20001000] +08:31:01 [ 49] [ 3] [418] +08:31:01 ============================================================================ +08:31:01 Calculate Source COMM Id = 0 +08:31:01 ============================================================================ +08:31:01 + + +waiting on router queue for slot.... +08:31:01 ============================================================================ +08:31:01 Slot Id : <399> +08:31:01 Transaction Type : REQUEST +08:31:01 Received From : +08:31:01 ============================================================================ +08:31:01 FNo. Len. Field Value +08:31:01 ============================================================================ +08:31:01 [ 1] [ 4] [0200] +08:31:01 [ 2] [ 16] [6213544000509627] +08:31:01 [ 3] [ 6] [010000] +08:31:01 [ 4] [ 12] [000050000000] +08:31:01 [ 7] [ 10] [0320082852] +08:31:01 [ 11] [ 6] [933037] +08:31:01 [ 12] [ 6] [082852] +08:31:01 [ 13] [ 4] [0320] +08:31:01 [ 15] [ 4] [0320] +08:31:01 [ 18] [ 4] [6011] +08:31:01 [ 19] [ 3] [418] +08:31:01 [ 22] [ 3] [021] +08:31:01 [ 25] [ 2] [01] +08:31:01 [ 28] [ 9] [D00002000] +08:31:01 [ 32] [ 6] [668899] +08:31:01 [ 35] [ 32] [6213544000509627=491212010962071] +08:31:01 [ 37] [ 12] [507901203871] +08:31:01 [ 41] [ 8] [03020012] +08:31:01 [ 42] [ 15] [APT ] +08:31:01 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +08:31:01 [ 49] [ 3] [418] +08:31:01 [ 52] [ 16] [D423C81735477E8C] +08:31:01 ============================================================================ +08:31:01 + + +waiting on router queue for slot.... +08:31:01 Sending to : +08:31:01 ============================================================================ +08:31:01 Sending to : +08:31:01 ============================================================================ +08:31:01 ============================================================================ +08:31:01 Slot Id : <399> +08:31:01 Transaction Type : REQUEST +08:31:01 Received From : +08:31:01 ============================================================================ +08:31:01 FNo. Len. Field Value +08:31:01 ============================================================================ +08:31:01 [ 1] [ 4] [0200] +08:31:01 [ 2] [ 16] [6213544000509627] +08:31:01 [ 3] [ 6] [010000] +08:31:01 [ 4] [ 12] [000050000000] +08:31:01 [ 7] [ 10] [0320082852] +08:31:01 [ 11] [ 6] [933037] +08:31:01 [ 12] [ 6] [082852] +08:31:01 [ 13] [ 4] [0320] +08:31:01 [ 15] [ 4] [0320] +08:31:01 [ 18] [ 4] [6011] +08:31:01 [ 19] [ 3] [418] +08:31:01 [ 22] [ 3] [021] +08:31:01 [ 25] [ 2] [01] +08:31:01 [ 28] [ 9] [D00002000] +08:31:01 [ 32] [ 6] [668899] +08:31:01 [ 35] [ 32] [6213544000509627=491212010962071] +08:31:01 [ 37] [ 12] [507901203871] +08:31:01 [ 41] [ 8] [03020012] +08:31:01 [ 42] [ 15] [APT ] +08:31:01 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +08:31:01 [ 49] [ 3] [418] +08:31:01 [ 52] [ 16] [D423C81735477E8C] +08:31:01 ============================================================================ +08:31:01 + + +waiting on router queue for slot.... +08:31:01 Sending to : +08:31:01 ============================================================================ +08:31:01 ============================================================================ +08:31:01 Slot Id : <399> +08:31:01 Transaction Type : REQUEST +08:31:01 Received From : +08:31:01 ============================================================================ +08:31:01 FNo. Len. Field Value +08:31:01 ============================================================================ +08:31:01 [ 1] [ 4] [0200] +08:31:01 [ 2] [ 16] [6213544000509627] +08:31:01 [ 3] [ 6] [010000] +08:31:01 [ 4] [ 12] [000050000000] +08:31:01 [ 7] [ 10] [0320082852] +08:31:01 [ 11] [ 6] [933037] +08:31:01 [ 12] [ 6] [082852] +08:31:01 [ 13] [ 4] [0320] +08:31:01 [ 15] [ 4] [0320] +08:31:01 [ 18] [ 4] [6011] +08:31:01 [ 19] [ 3] [418] +08:31:01 [ 22] [ 3] [021] +08:31:01 [ 25] [ 2] [01] +08:31:01 [ 28] [ 9] [D00002000] +08:31:01 [ 32] [ 6] [668899] +08:31:01 [ 35] [ 32] [6213544000509627=491212010962071] +08:31:01 [ 37] [ 12] [507901203871] +08:31:01 [ 41] [ 8] [03020012] +08:31:01 [ 42] [ 15] [APT ] +08:31:01 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +08:31:01 [ 49] [ 3] [418] +08:31:01 [ 52] [ 16] [895B0B8247616238] +08:31:01 ============================================================================ +08:31:01 + + +waiting on router queue for slot.... +08:31:01 Sending to : <0> +08:31:01 ============================================================================ +08:31:03 ============================================================================ +08:31:03 Slot Id : <399> +08:31:03 Transaction Type : RESPONSE +08:31:03 Received From : +08:31:03 ============================================================================ +08:31:03 FNo. Len. Field Value +08:31:03 ============================================================================ +08:31:03 [ 1] [ 4] [0210] +08:31:03 [ 2] [ 16] [6213544000509627] +08:31:03 [ 3] [ 6] [010000] +08:31:03 [ 4] [ 12] [000050000000] +08:31:03 [ 7] [ 10] [0320082852] +08:31:03 [ 11] [ 6] [933037] +08:31:03 [ 12] [ 6] [082852] +08:31:03 [ 13] [ 4] [0320] +08:31:03 [ 15] [ 4] [0320] +08:31:03 [ 18] [ 4] [6011] +08:31:03 [ 19] [ 3] [418] +08:31:03 [ 32] [ 6] [668899] +08:31:03 [ 35] [ 32] [6213544000509627=491212010962071] +08:31:03 [ 37] [ 12] [507901203871] +08:31:03 [ 38] [ 6] [859241] +08:31:03 [ 39] [ 2] [00] +08:31:03 [ 41] [ 8] [03020012] +08:31:03 [ 49] [ 3] [418] +08:31:03 [ 54] [ 40] [0001418C0004801859120002418C000480185912] +08:31:03 ============================================================================ +08:31:03 Sending to : +08:31:03 ============================================================================ +08:31:03 + + +waiting on router queue for slot.... +08:31:04 ============================================================================ +08:31:04 Slot Id : <387> +08:31:04 Transaction Type : REQUEST +08:31:04 Received From : +08:31:04 ============================================================================ +08:31:04 FNo. Len. Field Value +08:31:04 ============================================================================ +08:31:04 [ 1] [ 4] [0800] +08:31:04 [ 2] [ 5] [02531] +08:31:04 [ 3] [ 6] [579088] +08:31:04 [ 7] [ 10] [0320013104] +08:31:04 [ 11] [ 6] [806906] +08:31:04 [ 15] [ 10] [0320013104] +08:31:04 [ 37] [ 11] [57908806906] +08:31:04 [ 70] [ 3] [001] +08:31:04 ============================================================================ +08:31:04 + + +waiting on router queue for slot.... +08:31:04 ============================================================================ +08:31:04 Slot Id : <387> +08:31:04 Transaction Type : RESPONSE +08:31:04 Received From : +08:31:04 ============================================================================ +08:31:04 FNo. Len. Field Value +08:31:04 ============================================================================ +08:31:04 [ 1] [ 4] [0810] +08:31:04 [ 7] [ 10] [0320013104] +08:31:04 [ 11] [ 6] [806906] +08:31:04 [ 15] [ 4] [0320] +08:31:04 [ 37] [ 12] [57908806906] +08:31:04 [ 39] [ 2] [00] +08:31:04 [ 70] [ 3] [001] +08:31:04 ============================================================================ +08:31:04 Sending to : +08:31:04 ============================================================================ +08:31:04 + + +waiting on router queue for slot.... +08:31:05 ============================================================================ +08:31:05 Slot Id : <399> +08:31:05 Transaction Type : RESPONSE +08:31:05 Received From : +08:31:05 ============================================================================ +08:31:05 FNo. Len. Field Value +08:31:05 ============================================================================ +08:31:05 [ 1] [ 4] [0210] +08:31:05 [ 2] [ 16] [6213544000509627] +08:31:05 [ 3] [ 6] [010000] +08:31:05 [ 4] [ 12] [000050000000] +08:31:05 [ 7] [ 10] [0320082852] +08:31:05 [ 11] [ 6] [933037] +08:31:05 [ 12] [ 6] [082852] +08:31:05 [ 13] [ 4] [0320] +08:31:05 [ 15] [ 4] [0320] +08:31:05 [ 18] [ 4] [6011] +08:31:05 [ 19] [ 3] [418] +08:31:05 [ 32] [ 6] [668899] +08:31:05 [ 35] [ 32] [6213544000509627=491212010962071] +08:31:05 [ 37] [ 12] [507901203871] +08:31:05 [ 38] [ 6] [859241] +08:31:05 [ 39] [ 2] [00] +08:31:05 [ 41] [ 8] [03020012] +08:31:05 [ 49] [ 3] [418] +08:31:05 [ 54] [ 40] [0001418C0004801859120002418C000480185912] +08:31:05 ============================================================================ +08:31:05 Calculate Source COMM Id = 4 +08:31:05 ============================================================================ +08:31:05 + + +waiting on router queue for slot.... +08:31:18 ============================================================================ +08:31:18 Slot Id : <394> +08:31:18 Transaction Type : REQUEST +08:31:18 Received From : +08:31:18 ============================================================================ +08:31:18 FNo. Len. Field Value +08:31:18 ============================================================================ +08:31:18 [ 1] [ 4] [0800] +08:31:18 [ 7] [ 10] [0320013026] +08:31:18 [ 11] [ 6] [155423] +08:31:18 [ 70] [ 3] [301] +08:31:18 ============================================================================ +08:31:18 + + +waiting on router queue for slot.... +08:31:18 Sending to : +08:31:18 ============================================================================ +08:31:18 ============================================================================ +08:31:18 Slot Id : <394> +08:31:18 Transaction Type : RESPONSE +08:31:18 Received From : +08:31:18 ============================================================================ +08:31:18 FNo. Len. Field Value +08:31:18 ============================================================================ +08:31:18 [ 1] [ 4] [0810] +08:31:18 [ 7] [ 10] [0320013026] +08:31:18 [ 11] [ 6] [155423] +08:31:18 [ 39] [ 2] [00] +08:31:18 [ 70] [ 3] [301] +08:31:18 ============================================================================ +08:31:18 Calculate Source COMM Id = 2 +08:31:18 ============================================================================ +08:31:18 + + +waiting on router queue for slot.... +08:31:20 ============================================================================ +08:31:20 Slot Id : <368> +08:31:20 Transaction Type : REQUEST +08:31:20 Received From : +08:31:20 ============================================================================ +08:31:20 FNo. Len. Field Value +08:31:20 ============================================================================ +08:31:20 [ 1] [ 4] [0200] +08:31:20 [ 2] [ 16] [6688990103675102] +08:31:20 [ 3] [ 6] [012000] +08:31:20 [ 4] [ 12] [000020000000] +08:31:20 [ 7] [ 10] [0320083116] +08:31:20 [ 11] [ 6] [685105] +08:31:20 [ 12] [ 6] [083116] +08:31:20 [ 13] [ 4] [0320] +08:31:20 [ 15] [ 4] [0320] +08:31:20 [ 18] [ 4] [6011] +08:31:20 [ 22] [ 3] [900] +08:31:20 [ 25] [ 2] [02] +08:31:20 [ 28] [ 9] [D00002000] +08:31:20 [ 32] [ 6] [621354] +08:31:20 [ 35] [ 37] [6688990103675102=43011231510234300000] +08:31:20 [ 37] [ 12] [507903372743] +08:31:20 [ 41] [ 8] [13001700] +08:31:20 [ 42] [ 15] [NATIVE ] +08:31:20 [ 43] [ 40] [Khoun District Khoun LAO] +08:31:20 [ 49] [ 3] [418] +08:31:20 [ 52] [ 16] [A7CA9247BEFB384B] +08:31:20 ============================================================================ +08:31:20 + + +waiting on router queue for slot.... +08:31:20 Sending to : +08:31:20 ============================================================================ +08:31:20 Sending to : +08:31:20 ============================================================================ +08:31:20 ============================================================================ +08:31:20 Slot Id : <368> +08:31:20 Transaction Type : REQUEST +08:31:20 Received From : +08:31:20 ============================================================================ +08:31:20 FNo. Len. Field Value +08:31:20 ============================================================================ +08:31:20 [ 1] [ 4] [0200] +08:31:20 [ 2] [ 16] [6688990103675102] +08:31:20 [ 3] [ 6] [012000] +08:31:20 [ 4] [ 12] [000020000000] +08:31:20 [ 7] [ 10] [0320083116] +08:31:20 [ 11] [ 6] [685105] +08:31:20 [ 12] [ 6] [083116] +08:31:20 [ 13] [ 4] [0320] +08:31:20 [ 15] [ 4] [0320] +08:31:20 [ 18] [ 4] [6011] +08:31:20 [ 22] [ 3] [900] +08:31:20 [ 25] [ 2] [02] +08:31:20 [ 28] [ 9] [D00002000] +08:31:20 [ 32] [ 6] [621354] +08:31:20 [ 35] [ 37] [6688990103675102=43011231510234300000] +08:31:20 [ 37] [ 12] [507903372743] +08:31:20 [ 41] [ 8] [13001700] +08:31:20 [ 42] [ 15] [NATIVE ] +08:31:20 [ 43] [ 40] [Khoun District Khoun LAO] +08:31:20 [ 49] [ 3] [418] +08:31:20 [ 52] [ 16] [A7CA9247BEFB384B] +08:31:20 ============================================================================ +08:31:20 + + +waiting on router queue for slot.... +08:31:20 Sending to : +08:31:20 ============================================================================ +08:31:20 ============================================================================ +08:31:20 Slot Id : <368> +08:31:20 Transaction Type : REQUEST +08:31:20 Received From : +08:31:20 ============================================================================ +08:31:20 FNo. Len. Field Value +08:31:20 ============================================================================ +08:31:20 [ 1] [ 4] [0200] +08:31:20 [ 2] [ 16] [6688990103675102] +08:31:20 [ 3] [ 6] [012000] +08:31:20 [ 4] [ 12] [000020000000] +08:31:20 [ 7] [ 10] [0320083116] +08:31:20 [ 11] [ 6] [685105] +08:31:20 [ 12] [ 6] [083116] +08:31:20 [ 13] [ 4] [0320] +08:31:20 [ 15] [ 4] [0320] +08:31:20 [ 18] [ 4] [6011] +08:31:20 [ 22] [ 3] [900] +08:31:20 [ 25] [ 2] [02] +08:31:20 [ 28] [ 9] [D00002000] +08:31:20 [ 32] [ 6] [621354] +08:31:20 [ 35] [ 37] [6688990103675102=43011231510234300000] +08:31:20 [ 37] [ 12] [507903372743] +08:31:20 [ 41] [ 8] [13001700] +08:31:20 [ 42] [ 15] [NATIVE ] +08:31:20 [ 43] [ 40] [Khoun District Khoun LAO] +08:31:20 [ 49] [ 3] [418] +08:31:20 [ 52] [ 16] [A61CA5F8D38920AE] +08:31:20 ============================================================================ +08:31:20 + + +waiting on router queue for slot.... +08:31:20 Sending to : <4> +08:31:20 ============================================================================ +08:31:20 ============================================================================ +08:31:20 Slot Id : <372> +08:31:20 Transaction Type : REQUEST +08:31:20 Received From : +08:31:20 ============================================================================ +08:31:20 FNo. Len. Field Value +08:31:20 ============================================================================ +08:31:20 [ 1] [ 4] [0800] +08:31:20 [ 7] [ 10] [0320012912] +08:31:20 [ 11] [ 6] [036798] +08:31:20 [ 37] [ 12] [57908036798] +08:31:20 [ 70] [ 3] [301] +08:31:20 ============================================================================ +08:31:20 + + +waiting on router queue for slot.... +08:31:20 Sending to : +08:31:20 ============================================================================ +08:31:20 ============================================================================ +08:31:20 Slot Id : <372> +08:31:20 Transaction Type : RESPONSE +08:31:20 Received From : +08:31:20 ============================================================================ +08:31:20 FNo. Len. Field Value +08:31:20 ============================================================================ +08:31:20 [ 1] [ 4] [0810] +08:31:20 [ 7] [ 10] [0320012912] +08:31:20 [ 11] [ 6] [036798] +08:31:20 [ 37] [ 12] [579080367980] +08:31:20 [ 39] [ 2] [00] +08:31:20 [ 70] [ 3] [810] +08:31:20 ============================================================================ +08:31:20 Calculate Source COMM Id = 4 +08:31:20 ============================================================================ +08:31:20 + + +waiting on router queue for slot.... +08:31:21 ============================================================================ +08:31:21 Slot Id : <368> +08:31:21 Transaction Type : RESPONSE +08:31:21 Received From : +08:31:21 ============================================================================ +08:31:21 FNo. Len. Field Value +08:31:21 ============================================================================ +08:31:21 [ 1] [ 4] [0210] +08:31:21 [ 2] [ 16] [6688990103675102] +08:31:21 [ 3] [ 6] [012000] +08:31:21 [ 4] [ 12] [000020000000] +08:31:21 [ 11] [ 6] [685105] +08:31:21 [ 12] [ 6] [083116] +08:31:21 [ 15] [ 4] [0320] +08:31:21 [ 18] [ 4] [6011] +08:31:21 [ 32] [ 6] [621354] +08:31:21 [ 35] [ 37] [6688990103675102=43011231510234300000] +08:31:21 [ 37] [ 12] [507903372743] +08:31:21 [ 38] [ 6] [911097] +08:31:21 [ 39] [ 2] [00] +08:31:21 [ 41] [ 8] [13001700] +08:31:21 [ 49] [ 3] [418] +08:31:21 [ 54] [ 20] [2002418C000089486391] +08:31:21 ============================================================================ +08:31:21 Sending to : +08:31:21 ============================================================================ +08:31:21 + + +waiting on router queue for slot.... +08:31:23 ============================================================================ +08:31:23 Slot Id : <368> +08:31:23 Transaction Type : RESPONSE +08:31:23 Received From : +08:31:23 ============================================================================ +08:31:23 FNo. Len. Field Value +08:31:23 ============================================================================ +08:31:23 [ 1] [ 4] [0210] +08:31:23 [ 2] [ 16] [6688990103675102] +08:31:23 [ 3] [ 6] [012000] +08:31:23 [ 4] [ 12] [000020000000] +08:31:23 [ 11] [ 6] [685105] +08:31:23 [ 12] [ 6] [083116] +08:31:23 [ 15] [ 4] [0320] +08:31:23 [ 18] [ 4] [6011] +08:31:23 [ 32] [ 6] [621354] +08:31:23 [ 35] [ 37] [6688990103675102=43011231510234300000] +08:31:23 [ 37] [ 12] [507903372743] +08:31:23 [ 38] [ 6] [911097] +08:31:23 [ 39] [ 2] [00] +08:31:23 [ 41] [ 8] [13001700] +08:31:23 [ 49] [ 3] [418] +08:31:23 [ 54] [ 20] [2002418C000089486391] +08:31:23 ============================================================================ +08:31:23 Calculate Source COMM Id = 0 +08:31:23 ============================================================================ +08:31:23 + + +waiting on router queue for slot.... +08:31:24 ============================================================================ +08:31:24 Slot Id : <418> +08:31:24 Transaction Type : REQUEST +08:31:24 Received From : +08:31:24 ============================================================================ +08:31:24 FNo. Len. Field Value +08:31:24 ============================================================================ +08:31:24 [ 1] [ 4] [0200] +08:31:24 [ 2] [ 16] [6688990030002537] +08:31:24 [ 3] [ 6] [011000] +08:31:24 [ 4] [ 12] [000100000000] +08:31:24 [ 7] [ 10] [0320083120] +08:31:24 [ 11] [ 6] [685121] +08:31:24 [ 12] [ 6] [083120] +08:31:24 [ 13] [ 4] [0320] +08:31:24 [ 15] [ 4] [0320] +08:31:24 [ 18] [ 4] [6011] +08:31:24 [ 22] [ 3] [900] +08:31:24 [ 25] [ 2] [02] +08:31:24 [ 28] [ 9] [D00002000] +08:31:24 [ 32] [ 6] [621354] +08:31:24 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:31:24 [ 37] [ 12] [507904706774] +08:31:24 [ 41] [ 8] [18000900] +08:31:24 [ 42] [ 15] [NATIVE ] +08:31:24 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:31:24 [ 49] [ 3] [418] +08:31:24 [ 52] [ 16] [752B6104E86573C5] +08:31:24 ============================================================================ +08:31:24 + + +waiting on router queue for slot.... +08:31:24 Sending to : +08:31:24 ============================================================================ +08:31:24 Sending to : +08:31:24 ============================================================================ +08:31:24 ============================================================================ +08:31:24 Slot Id : <418> +08:31:24 Transaction Type : REQUEST +08:31:24 Received From : +08:31:24 ============================================================================ +08:31:24 FNo. Len. Field Value +08:31:24 ============================================================================ +08:31:24 [ 1] [ 4] [0200] +08:31:24 [ 2] [ 16] [6688990030002537] +08:31:24 [ 3] [ 6] [011000] +08:31:24 [ 4] [ 12] [000100000000] +08:31:24 [ 7] [ 10] [0320083120] +08:31:24 [ 11] [ 6] [685121] +08:31:24 [ 12] [ 6] [083120] +08:31:24 [ 13] [ 4] [0320] +08:31:24 [ 15] [ 4] [0320] +08:31:24 [ 18] [ 4] [6011] +08:31:24 [ 22] [ 3] [900] +08:31:24 [ 25] [ 2] [02] +08:31:24 [ 28] [ 9] [D00002000] +08:31:24 [ 32] [ 6] [621354] +08:31:24 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:31:24 [ 37] [ 12] [507904706774] +08:31:24 [ 41] [ 8] [18000900] +08:31:24 [ 42] [ 15] [NATIVE ] +08:31:24 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:31:24 [ 49] [ 3] [418] +08:31:24 [ 52] [ 16] [752B6104E86573C5] +08:31:24 ============================================================================ +08:31:24 + + +waiting on router queue for slot.... +08:31:24 Sending to : +08:31:24 ============================================================================ +08:31:24 ============================================================================ +08:31:24 Slot Id : <418> +08:31:24 Transaction Type : REQUEST +08:31:24 Received From : +08:31:24 ============================================================================ +08:31:24 FNo. Len. Field Value +08:31:24 ============================================================================ +08:31:24 [ 1] [ 4] [0200] +08:31:24 [ 2] [ 16] [6688990030002537] +08:31:24 [ 3] [ 6] [011000] +08:31:24 [ 4] [ 12] [000100000000] +08:31:24 [ 7] [ 10] [0320083120] +08:31:24 [ 11] [ 6] [685121] +08:31:24 [ 12] [ 6] [083120] +08:31:24 [ 13] [ 4] [0320] +08:31:24 [ 15] [ 4] [0320] +08:31:24 [ 18] [ 4] [6011] +08:31:24 [ 22] [ 3] [900] +08:31:24 [ 25] [ 2] [02] +08:31:24 [ 28] [ 9] [D00002000] +08:31:24 [ 32] [ 6] [621354] +08:31:24 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:31:24 [ 37] [ 12] [507904706774] +08:31:24 [ 41] [ 8] [18000900] +08:31:24 [ 42] [ 15] [NATIVE ] +08:31:24 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:31:24 [ 49] [ 3] [418] +08:31:24 [ 52] [ 16] [3B0E9D1F650AC498] +08:31:24 ============================================================================ +08:31:24 + + +waiting on router queue for slot.... +08:31:24 Sending to : <4> +08:31:24 ============================================================================ +08:31:25 ============================================================================ +08:31:25 Slot Id : <418> +08:31:25 Transaction Type : RESPONSE +08:31:25 Received From : +08:31:25 ============================================================================ +08:31:25 FNo. Len. Field Value +08:31:25 ============================================================================ +08:31:25 [ 1] [ 4] [0210] +08:31:25 [ 2] [ 16] [6688990030002537] +08:31:25 [ 3] [ 6] [011000] +08:31:25 [ 4] [ 12] [000100000000] +08:31:25 [ 11] [ 6] [685121] +08:31:25 [ 12] [ 6] [083120] +08:31:25 [ 15] [ 4] [0320] +08:31:25 [ 18] [ 4] [6011] +08:31:25 [ 32] [ 6] [621354] +08:31:25 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:31:25 [ 37] [ 12] [507904706774] +08:31:25 [ 38] [ 6] [768855] +08:31:25 [ 39] [ 2] [00] +08:31:25 [ 41] [ 8] [18000900] +08:31:25 [ 49] [ 3] [418] +08:31:25 [ 54] [ 20] [1002418C002838068956] +08:31:25 ============================================================================ +08:31:25 Sending to : +08:31:25 ============================================================================ +08:31:25 + + +waiting on router queue for slot.... +08:31:26 ============================================================================ +08:31:26 Slot Id : <406> +08:31:26 Transaction Type : REQUEST +08:31:26 Received From : +08:31:26 ============================================================================ +08:31:26 FNo. Len. Field Value +08:31:26 ============================================================================ +08:31:26 [ 1] [ 4] [0800] +08:31:26 [ 7] [ 10] [0320154315] +08:31:26 [ 11] [ 6] [084315] +08:31:26 [ 37] [ 12] [57908084315] +08:31:26 [ 70] [ 3] [301] +08:31:26 ============================================================================ +08:31:26 + + +waiting on router queue for slot.... +08:31:26 Sending to : +08:31:26 ============================================================================ +08:31:26 ============================================================================ +08:31:26 Slot Id : <406> +08:31:26 Transaction Type : RESPONSE +08:31:26 Received From : +08:31:26 ============================================================================ +08:31:26 FNo. Len. Field Value +08:31:26 ============================================================================ +08:31:26 [ 1] [ 4] [0810] +08:31:26 [ 7] [ 10] [0320154315] +08:31:26 [ 11] [ 6] [084315] +08:31:26 [ 37] [ 12] [579080843150] +08:31:26 [ 39] [ 2] [00] +08:31:26 [ 70] [ 3] [810] +08:31:26 ============================================================================ +08:31:26 Calculate Source COMM Id = 6 +08:31:26 ============================================================================ +08:31:26 + + +waiting on router queue for slot.... +08:31:26 ============================================================================ +08:31:26 Slot Id : <418> +08:31:26 Transaction Type : RESPONSE +08:31:26 Received From : +08:31:26 ============================================================================ +08:31:26 FNo. Len. Field Value +08:31:26 ============================================================================ +08:31:26 [ 1] [ 4] [0210] +08:31:26 [ 2] [ 16] [6688990030002537] +08:31:26 [ 3] [ 6] [011000] +08:31:26 [ 4] [ 12] [000100000000] +08:31:26 [ 11] [ 6] [685121] +08:31:26 [ 12] [ 6] [083120] +08:31:26 [ 15] [ 4] [0320] +08:31:26 [ 18] [ 4] [6011] +08:31:26 [ 32] [ 6] [621354] +08:31:26 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:31:26 [ 37] [ 12] [507904706774] +08:31:26 [ 38] [ 6] [768855] +08:31:26 [ 39] [ 2] [00] +08:31:26 [ 41] [ 8] [18000900] +08:31:26 [ 49] [ 3] [418] +08:31:26 [ 54] [ 20] [1002418C002838068956] +08:31:26 ============================================================================ +08:31:26 Calculate Source COMM Id = 0 +08:31:26 ============================================================================ +08:31:26 + + +waiting on router queue for slot.... +08:31:30 ============================================================================ +08:31:30 Slot Id : <419> +08:31:30 Transaction Type : REQUEST +08:31:30 Received From : +08:31:30 ============================================================================ +08:31:30 FNo. Len. Field Value +08:31:30 ============================================================================ +08:31:30 [ 1] [ 4] [0800] +08:31:30 [ 7] [ 10] [0320013038] +08:31:30 [ 11] [ 6] [155424] +08:31:30 [ 70] [ 3] [301] +08:31:30 ============================================================================ +08:31:30 + + +waiting on router queue for slot.... +08:31:30 Sending to : +08:31:30 ============================================================================ +08:31:30 ============================================================================ +08:31:30 Slot Id : <419> +08:31:30 Transaction Type : RESPONSE +08:31:30 Received From : +08:31:30 ============================================================================ +08:31:30 FNo. Len. Field Value +08:31:30 ============================================================================ +08:31:30 [ 1] [ 4] [0810] +08:31:30 [ 7] [ 10] [0320013038] +08:31:30 [ 11] [ 6] [155424] +08:31:30 [ 39] [ 2] [00] +08:31:30 [ 70] [ 3] [301] +08:31:30 ============================================================================ +08:31:30 Calculate Source COMM Id = 2 +08:31:30 ============================================================================ +08:31:30 + + +waiting on router queue for slot.... +08:31:36 ============================================================================ +08:31:36 Slot Id : <411> +08:31:36 Transaction Type : REQUEST +08:31:36 Received From : +08:31:36 ============================================================================ +08:31:36 FNo. Len. Field Value +08:31:36 ============================================================================ +08:31:36 [ 1] [ 4] [0200] +08:31:36 [ 2] [ 16] [6213545001031925] +08:31:36 [ 3] [ 6] [301000] +08:31:36 [ 7] [ 10] [0320013042] +08:31:36 [ 11] [ 6] [267189] +08:31:36 [ 12] [ 6] [083042] +08:31:36 [ 13] [ 4] [0320] +08:31:36 [ 14] [ 4] [4912] +08:31:36 [ 15] [ 4] [0320] +08:31:36 [ 18] [ 4] [6011] +08:31:36 [ 19] [ 3] [418] +08:31:36 [ 22] [ 3] [021] +08:31:36 [ 25] [ 2] [01] +08:31:36 [ 32] [ 6] [180893] +08:31:36 [ 35] [ 32] [6213545001031925=491212013192992] +08:31:36 [ 37] [ 12] [507901267189] +08:31:36 [ 41] [ 8] [0243VTKS] +08:31:36 [ 42] [ 15] [999999 ] +08:31:36 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +08:31:36 [ 49] [ 3] [418] +08:31:36 [ 52] [ 16] [FBB618BA70EF4429] +08:31:36 ============================================================================ +08:31:36 + + +waiting on router queue for slot.... +08:31:36 Sending to : +08:31:36 ============================================================================ +08:31:36 Sending to : +08:31:36 ============================================================================ +08:31:37 ============================================================================ +08:31:37 Slot Id : <411> +08:31:37 Transaction Type : REQUEST +08:31:37 Received From : +08:31:37 ============================================================================ +08:31:37 FNo. Len. Field Value +08:31:37 ============================================================================ +08:31:37 [ 1] [ 4] [0200] +08:31:37 [ 2] [ 16] [6213545001031925] +08:31:37 [ 3] [ 6] [301000] +08:31:37 [ 7] [ 10] [0320013042] +08:31:37 [ 11] [ 6] [267189] +08:31:37 [ 12] [ 6] [083042] +08:31:37 [ 13] [ 4] [0320] +08:31:37 [ 14] [ 4] [4912] +08:31:37 [ 15] [ 4] [0320] +08:31:37 [ 18] [ 4] [6011] +08:31:37 [ 19] [ 3] [418] +08:31:37 [ 22] [ 3] [021] +08:31:37 [ 25] [ 2] [01] +08:31:37 [ 32] [ 6] [180893] +08:31:37 [ 35] [ 32] [6213545001031925=491212013192992] +08:31:37 [ 37] [ 12] [507901267189] +08:31:37 [ 41] [ 8] [0243VTKS] +08:31:37 [ 42] [ 15] [999999 ] +08:31:37 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +08:31:37 [ 49] [ 3] [418] +08:31:37 [ 52] [ 16] [FBB618BA70EF4429] +08:31:37 ============================================================================ +08:31:37 + + +waiting on router queue for slot.... +08:31:37 Sending to : +08:31:37 ============================================================================ +08:31:37 ============================================================================ +08:31:37 Slot Id : <411> +08:31:37 Transaction Type : REQUEST +08:31:37 Received From : +08:31:37 ============================================================================ +08:31:37 FNo. Len. Field Value +08:31:37 ============================================================================ +08:31:37 [ 1] [ 4] [0200] +08:31:37 [ 2] [ 16] [6213545001031925] +08:31:37 [ 3] [ 6] [301000] +08:31:37 [ 7] [ 10] [0320013042] +08:31:37 [ 11] [ 6] [267189] +08:31:37 [ 12] [ 6] [083042] +08:31:37 [ 13] [ 4] [0320] +08:31:37 [ 14] [ 4] [4912] +08:31:37 [ 15] [ 4] [0320] +08:31:37 [ 18] [ 4] [6011] +08:31:37 [ 19] [ 3] [418] +08:31:37 [ 22] [ 3] [021] +08:31:37 [ 25] [ 2] [01] +08:31:37 [ 32] [ 6] [180893] +08:31:37 [ 35] [ 32] [6213545001031925=491212013192992] +08:31:37 [ 37] [ 12] [507901267189] +08:31:37 [ 41] [ 8] [0243VTKS] +08:31:37 [ 42] [ 15] [999999 ] +08:31:37 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +08:31:37 [ 49] [ 3] [418] +08:31:37 [ 52] [ 16] [DC53DB2E8579A506] +08:31:37 ============================================================================ +08:31:37 + + +waiting on router queue for slot.... +08:31:37 Sending to : <0> +08:31:37 ============================================================================ +08:31:37 ============================================================================ +08:31:37 Slot Id : <411> +08:31:37 Transaction Type : RESPONSE +08:31:37 Received From : +08:31:37 ============================================================================ +08:31:37 FNo. Len. Field Value +08:31:37 ============================================================================ +08:31:37 [ 1] [ 4] [0210] +08:31:37 [ 2] [ 16] [6213545001031925] +08:31:37 [ 3] [ 6] [301000] +08:31:37 [ 4] [ 12] [000000000000] +08:31:37 [ 7] [ 10] [0320013042] +08:31:37 [ 11] [ 6] [267189] +08:31:37 [ 12] [ 6] [083042] +08:31:37 [ 13] [ 4] [0320] +08:31:37 [ 15] [ 4] [0320] +08:31:37 [ 18] [ 4] [6011] +08:31:37 [ 19] [ 3] [418] +08:31:37 [ 32] [ 6] [180893] +08:31:37 [ 35] [ 32] [6213545001031925=491212013192992] +08:31:37 [ 37] [ 12] [507901267189] +08:31:37 [ 38] [ 6] [449170] +08:31:37 [ 39] [ 2] [00] +08:31:37 [ 41] [ 8] [0243VTKS] +08:31:37 [ 49] [ 3] [418] +08:31:37 [ 54] [ 40] [1001418C0001605174101002418C000160517410] +08:31:37 ============================================================================ +08:31:37 Sending to : +08:31:37 ============================================================================ +08:31:37 + + +waiting on router queue for slot.... +08:31:39 ============================================================================ +08:31:39 Slot Id : <411> +08:31:39 Transaction Type : RESPONSE +08:31:39 Received From : +08:31:39 ============================================================================ +08:31:39 FNo. Len. Field Value +08:31:39 ============================================================================ +08:31:39 [ 1] [ 4] [0210] +08:31:39 [ 2] [ 16] [6213545001031925] +08:31:39 [ 3] [ 6] [301000] +08:31:39 [ 4] [ 12] [000000000000] +08:31:39 [ 7] [ 10] [0320013042] +08:31:39 [ 11] [ 6] [267189] +08:31:39 [ 12] [ 6] [083042] +08:31:39 [ 13] [ 4] [0320] +08:31:39 [ 15] [ 4] [0320] +08:31:39 [ 18] [ 4] [6011] +08:31:39 [ 19] [ 3] [418] +08:31:39 [ 32] [ 6] [180893] +08:31:39 [ 35] [ 32] [6213545001031925=491212013192992] +08:31:39 [ 37] [ 12] [507901267189] +08:31:39 [ 38] [ 6] [449170] +08:31:39 [ 39] [ 2] [00] +08:31:39 [ 41] [ 8] [0243VTKS] +08:31:39 [ 49] [ 3] [418] +08:31:39 [ 54] [ 40] [1001418C0001605174101002418C000160517410] +08:31:39 ============================================================================ +08:31:39 Calculate Source COMM Id = 2 +08:31:39 ============================================================================ +08:31:39 + + +waiting on router queue for slot.... +08:31:53 ============================================================================ +08:31:53 Slot Id : <380> +08:31:53 Transaction Type : REQUEST +08:31:53 Received From : +08:31:53 ============================================================================ +08:31:53 FNo. Len. Field Value +08:31:53 ============================================================================ +08:31:53 [ 1] [ 4] [0200] +08:31:53 [ 2] [ 16] [6213545000125926] +08:31:53 [ 3] [ 6] [300000] +08:31:53 [ 4] [ 12] [000000000000] +08:31:53 [ 7] [ 10] [0320082945] +08:31:53 [ 11] [ 6] [933079] +08:31:53 [ 12] [ 6] [082945] +08:31:53 [ 13] [ 4] [0320] +08:31:53 [ 15] [ 4] [0320] +08:31:53 [ 18] [ 4] [6011] +08:31:53 [ 19] [ 3] [418] +08:31:53 [ 22] [ 3] [021] +08:31:53 [ 25] [ 2] [01] +08:31:53 [ 28] [ 9] [D00000000] +08:31:53 [ 32] [ 6] [668899] +08:31:53 [ 35] [ 32] [6213545000125926=491212012592742] +08:31:53 [ 37] [ 12] [507900961540] +08:31:53 [ 41] [ 8] [03407001] +08:31:53 [ 42] [ 15] [APT ] +08:31:53 [ 43] [ 40] [ HONGSA XAYABOULY LAO] +08:31:53 [ 49] [ 3] [418] +08:31:53 [ 52] [ 16] [7D0BA9706BA2D8C2] +08:31:53 ============================================================================ +08:31:53 + + +waiting on router queue for slot.... +08:31:53 Sending to : +08:31:53 ============================================================================ +08:31:53 Sending to : +08:31:53 ============================================================================ +08:31:54 ============================================================================ +08:31:54 Slot Id : <380> +08:31:54 Transaction Type : REQUEST +08:31:54 Received From : +08:31:54 ============================================================================ +08:31:54 FNo. Len. Field Value +08:31:54 ============================================================================ +08:31:54 [ 1] [ 4] [0200] +08:31:54 [ 2] [ 16] [6213545000125926] +08:31:54 [ 3] [ 6] [300000] +08:31:54 [ 4] [ 12] [000000000000] +08:31:54 [ 7] [ 10] [0320082945] +08:31:54 [ 11] [ 6] [933079] +08:31:54 [ 12] [ 6] [082945] +08:31:54 [ 13] [ 4] [0320] +08:31:54 [ 15] [ 4] [0320] +08:31:54 [ 18] [ 4] [6011] +08:31:54 [ 19] [ 3] [418] +08:31:54 [ 22] [ 3] [021] +08:31:54 [ 25] [ 2] [01] +08:31:54 [ 28] [ 9] [D00000000] +08:31:54 [ 32] [ 6] [668899] +08:31:54 [ 35] [ 32] [6213545000125926=491212012592742] +08:31:54 [ 37] [ 12] [507900961540] +08:31:54 [ 41] [ 8] [03407001] +08:31:54 [ 42] [ 15] [APT ] +08:31:54 [ 43] [ 40] [ HONGSA XAYABOULY LAO] +08:31:54 [ 49] [ 3] [418] +08:31:54 [ 52] [ 16] [7D0BA9706BA2D8C2] +08:31:54 ============================================================================ +08:31:54 + + +waiting on router queue for slot.... +08:31:54 Sending to : +08:31:54 ============================================================================ +08:31:54 ============================================================================ +08:31:54 Slot Id : <380> +08:31:54 Transaction Type : REQUEST +08:31:54 Received From : +08:31:54 ============================================================================ +08:31:54 FNo. Len. Field Value +08:31:54 ============================================================================ +08:31:54 [ 1] [ 4] [0200] +08:31:54 [ 2] [ 16] [6213545000125926] +08:31:54 [ 3] [ 6] [300000] +08:31:54 [ 4] [ 12] [000000000000] +08:31:54 [ 7] [ 10] [0320082945] +08:31:54 [ 11] [ 6] [933079] +08:31:54 [ 12] [ 6] [082945] +08:31:54 [ 13] [ 4] [0320] +08:31:54 [ 15] [ 4] [0320] +08:31:54 [ 18] [ 4] [6011] +08:31:54 [ 19] [ 3] [418] +08:31:54 [ 22] [ 3] [021] +08:31:54 [ 25] [ 2] [01] +08:31:54 [ 28] [ 9] [D00000000] +08:31:54 [ 32] [ 6] [668899] +08:31:54 [ 35] [ 32] [6213545000125926=491212012592742] +08:31:54 [ 37] [ 12] [507900961540] +08:31:54 [ 41] [ 8] [03407001] +08:31:54 [ 42] [ 15] [APT ] +08:31:54 [ 43] [ 40] [ HONGSA XAYABOULY LAO] +08:31:54 [ 49] [ 3] [418] +08:31:54 [ 52] [ 16] [504D1AFB81562806] +08:31:54 ============================================================================ +08:31:54 + + +waiting on router queue for slot.... +08:31:54 Sending to : <0> +08:31:54 ============================================================================ +08:31:54 ============================================================================ +08:31:54 Slot Id : <380> +08:31:54 Transaction Type : RESPONSE +08:31:54 Received From : +08:31:54 ============================================================================ +08:31:54 FNo. Len. Field Value +08:31:54 ============================================================================ +08:31:54 [ 1] [ 4] [0210] +08:31:54 [ 2] [ 16] [6213545000125926] +08:31:54 [ 3] [ 6] [300000] +08:31:54 [ 4] [ 12] [000000000000] +08:31:54 [ 7] [ 10] [0320082945] +08:31:54 [ 11] [ 6] [933079] +08:31:54 [ 12] [ 6] [082945] +08:31:54 [ 13] [ 4] [0320] +08:31:54 [ 15] [ 4] [0320] +08:31:54 [ 18] [ 4] [6011] +08:31:54 [ 19] [ 3] [418] +08:31:54 [ 32] [ 6] [668899] +08:31:54 [ 35] [ 32] [6213545000125926=491212012592742] +08:31:54 [ 37] [ 12] [507900961540] +08:31:54 [ 38] [ 6] [575750] +08:31:54 [ 39] [ 2] [00] +08:31:54 [ 41] [ 8] [03407001] +08:31:54 [ 49] [ 3] [418] +08:31:54 [ 54] [ 40] [0001418C0002610357900002418C000261035790] +08:31:54 ============================================================================ +08:31:54 Sending to : +08:31:54 ============================================================================ +08:31:54 + + +waiting on router queue for slot.... +08:31:56 ============================================================================ +08:31:56 Slot Id : <407> +08:31:56 Transaction Type : REQUEST +08:31:56 Received From : +08:31:56 ============================================================================ +08:31:56 FNo. Len. Field Value +08:31:56 ============================================================================ +08:31:56 [ 1] [ 4] [0800] +08:31:56 [ 7] [ 10] [0320013102] +08:31:56 [ 11] [ 6] [155425] +08:31:56 [ 70] [ 3] [301] +08:31:56 ============================================================================ +08:31:56 + + +waiting on router queue for slot.... +08:31:56 Sending to : +08:31:56 ============================================================================ +08:31:56 ============================================================================ +08:31:56 Slot Id : <407> +08:31:56 Transaction Type : RESPONSE +08:31:56 Received From : +08:31:56 ============================================================================ +08:31:56 FNo. Len. Field Value +08:31:56 ============================================================================ +08:31:56 [ 1] [ 4] [0810] +08:31:56 [ 7] [ 10] [0320013102] +08:31:56 [ 11] [ 6] [155425] +08:31:56 [ 39] [ 2] [00] +08:31:56 [ 70] [ 3] [301] +08:31:56 ============================================================================ +08:31:56 Calculate Source COMM Id = 2 +08:31:56 ============================================================================ +08:31:56 + + +waiting on router queue for slot.... +08:31:56 ============================================================================ +08:31:56 Slot Id : <380> +08:31:56 Transaction Type : RESPONSE +08:31:56 Received From : +08:31:56 ============================================================================ +08:31:56 FNo. Len. Field Value +08:31:56 ============================================================================ +08:31:56 [ 1] [ 4] [0210] +08:31:56 [ 2] [ 16] [6213545000125926] +08:31:56 [ 3] [ 6] [300000] +08:31:56 [ 4] [ 12] [000000000000] +08:31:56 [ 7] [ 10] [0320082945] +08:31:56 [ 11] [ 6] [933079] +08:31:56 [ 12] [ 6] [082945] +08:31:56 [ 13] [ 4] [0320] +08:31:56 [ 15] [ 4] [0320] +08:31:56 [ 18] [ 4] [6011] +08:31:56 [ 19] [ 3] [418] +08:31:56 [ 32] [ 6] [668899] +08:31:56 [ 35] [ 32] [6213545000125926=491212012592742] +08:31:56 [ 37] [ 12] [507900961540] +08:31:56 [ 38] [ 6] [575750] +08:31:56 [ 39] [ 2] [00] +08:31:56 [ 41] [ 8] [03407001] +08:31:56 [ 49] [ 3] [418] +08:31:56 [ 54] [ 40] [0001418C0002610357900002418C000261035790] +08:31:56 ============================================================================ +08:31:56 Calculate Source COMM Id = 4 +08:31:56 ============================================================================ +08:31:56 + + +waiting on router queue for slot.... +08:32:06 ============================================================================ +08:32:06 Slot Id : <384> +08:32:06 Transaction Type : REQUEST +08:32:06 Received From : +08:32:06 ============================================================================ +08:32:06 FNo. Len. Field Value +08:32:06 ============================================================================ +08:32:06 [ 1] [ 4] [0800] +08:32:06 [ 2] [ 5] [02531] +08:32:06 [ 3] [ 6] [579088] +08:32:06 [ 7] [ 10] [0320013206] +08:32:06 [ 11] [ 6] [806907] +08:32:06 [ 15] [ 10] [0320013206] +08:32:06 [ 37] [ 11] [57908806907] +08:32:06 [ 70] [ 3] [001] +08:32:06 ============================================================================ +08:32:06 + + +waiting on router queue for slot.... +08:32:06 ============================================================================ +08:32:06 Slot Id : <384> +08:32:06 Transaction Type : RESPONSE +08:32:06 Received From : +08:32:06 ============================================================================ +08:32:06 FNo. Len. Field Value +08:32:06 ============================================================================ +08:32:06 [ 1] [ 4] [0810] +08:32:06 [ 7] [ 10] [0320013206] +08:32:06 [ 11] [ 6] [806907] +08:32:06 [ 15] [ 4] [0320] +08:32:06 [ 37] [ 12] [57908806907] +08:32:06 [ 39] [ 2] [00] +08:32:06 [ 70] [ 3] [001] +08:32:06 ============================================================================ +08:32:06 Sending to : +08:32:06 ============================================================================ +08:32:06 + + +waiting on router queue for slot.... +08:32:11 ============================================================================ +08:32:11 Slot Id : <416> +08:32:11 Transaction Type : REQUEST +08:32:11 Received From : +08:32:11 ============================================================================ +08:32:11 FNo. Len. Field Value +08:32:11 ============================================================================ +08:32:11 [ 1] [ 4] [0800] +08:32:11 [ 7] [ 10] [0320013119] +08:32:11 [ 11] [ 6] [155426] +08:32:11 [ 70] [ 3] [301] +08:32:11 ============================================================================ +08:32:11 + + +waiting on router queue for slot.... +08:32:11 Sending to : +08:32:11 ============================================================================ +08:32:11 ============================================================================ +08:32:11 Slot Id : <416> +08:32:11 Transaction Type : RESPONSE +08:32:11 Received From : +08:32:11 ============================================================================ +08:32:11 FNo. Len. Field Value +08:32:11 ============================================================================ +08:32:11 [ 1] [ 4] [0810] +08:32:11 [ 7] [ 10] [0320013119] +08:32:11 [ 11] [ 6] [155426] +08:32:11 [ 39] [ 2] [00] +08:32:11 [ 70] [ 3] [301] +08:32:11 ============================================================================ +08:32:11 Calculate Source COMM Id = 2 +08:32:11 ============================================================================ +08:32:11 + + +waiting on router queue for slot.... +08:32:15 ============================================================================ +08:32:15 Slot Id : <401> +08:32:15 Transaction Type : REQUEST +08:32:15 Received From : +08:32:15 ============================================================================ +08:32:15 FNo. Len. Field Value +08:32:15 ============================================================================ +08:32:15 [ 1] [ 4] [0200] +08:32:15 [ 2] [ 16] [6688990030002537] +08:32:15 [ 3] [ 6] [011000] +08:32:15 [ 4] [ 12] [000100000000] +08:32:15 [ 7] [ 10] [0320083212] +08:32:15 [ 11] [ 6] [685329] +08:32:15 [ 12] [ 6] [083212] +08:32:15 [ 13] [ 4] [0320] +08:32:15 [ 15] [ 4] [0320] +08:32:15 [ 18] [ 4] [6011] +08:32:15 [ 22] [ 3] [900] +08:32:15 [ 25] [ 2] [02] +08:32:15 [ 28] [ 9] [D00002000] +08:32:15 [ 32] [ 6] [621354] +08:32:15 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:32:15 [ 37] [ 12] [507904706776] +08:32:15 [ 41] [ 8] [18000900] +08:32:15 [ 42] [ 15] [NATIVE ] +08:32:15 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:32:15 [ 49] [ 3] [418] +08:32:15 [ 52] [ 16] [752B6104E86573C5] +08:32:15 ============================================================================ +08:32:15 + + +waiting on router queue for slot.... +08:32:15 Sending to : +08:32:15 ============================================================================ +08:32:15 Sending to : +08:32:15 ============================================================================ +08:32:16 ============================================================================ +08:32:16 Slot Id : <401> +08:32:16 Transaction Type : REQUEST +08:32:16 Received From : +08:32:16 ============================================================================ +08:32:16 FNo. Len. Field Value +08:32:16 ============================================================================ +08:32:16 [ 1] [ 4] [0200] +08:32:16 [ 2] [ 16] [6688990030002537] +08:32:16 [ 3] [ 6] [011000] +08:32:16 [ 4] [ 12] [000100000000] +08:32:16 [ 7] [ 10] [0320083212] +08:32:16 [ 11] [ 6] [685329] +08:32:16 [ 12] [ 6] [083212] +08:32:16 [ 13] [ 4] [0320] +08:32:16 [ 15] [ 4] [0320] +08:32:16 [ 18] [ 4] [6011] +08:32:16 [ 22] [ 3] [900] +08:32:16 [ 25] [ 2] [02] +08:32:16 [ 28] [ 9] [D00002000] +08:32:16 [ 32] [ 6] [621354] +08:32:16 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:32:16 [ 37] [ 12] [507904706776] +08:32:16 [ 41] [ 8] [18000900] +08:32:16 [ 42] [ 15] [NATIVE ] +08:32:16 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:32:16 [ 49] [ 3] [418] +08:32:16 [ 52] [ 16] [752B6104E86573C5] +08:32:16 ============================================================================ +08:32:16 + + +waiting on router queue for slot.... +08:32:16 Sending to : +08:32:16 ============================================================================ +08:32:16 ============================================================================ +08:32:16 Slot Id : <401> +08:32:16 Transaction Type : REQUEST +08:32:16 Received From : +08:32:16 ============================================================================ +08:32:16 FNo. Len. Field Value +08:32:16 ============================================================================ +08:32:16 [ 1] [ 4] [0200] +08:32:16 [ 2] [ 16] [6688990030002537] +08:32:16 [ 3] [ 6] [011000] +08:32:16 [ 4] [ 12] [000100000000] +08:32:16 [ 7] [ 10] [0320083212] +08:32:16 [ 11] [ 6] [685329] +08:32:16 [ 12] [ 6] [083212] +08:32:16 [ 13] [ 4] [0320] +08:32:16 [ 15] [ 4] [0320] +08:32:16 [ 18] [ 4] [6011] +08:32:16 [ 22] [ 3] [900] +08:32:16 [ 25] [ 2] [02] +08:32:16 [ 28] [ 9] [D00002000] +08:32:16 [ 32] [ 6] [621354] +08:32:16 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:32:16 [ 37] [ 12] [507904706776] +08:32:16 [ 41] [ 8] [18000900] +08:32:16 [ 42] [ 15] [NATIVE ] +08:32:16 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:32:16 [ 49] [ 3] [418] +08:32:16 [ 52] [ 16] [3B0E9D1F650AC498] +08:32:16 ============================================================================ +08:32:16 + + +waiting on router queue for slot.... +08:32:16 Sending to : <4> +08:32:16 ============================================================================ +08:32:17 ============================================================================ +08:32:17 Slot Id : <401> +08:32:17 Transaction Type : RESPONSE +08:32:17 Received From : +08:32:17 ============================================================================ +08:32:17 FNo. Len. Field Value +08:32:17 ============================================================================ +08:32:17 [ 1] [ 4] [0210] +08:32:17 [ 2] [ 16] [6688990030002537] +08:32:17 [ 3] [ 6] [011000] +08:32:17 [ 4] [ 12] [000100000000] +08:32:17 [ 11] [ 6] [685329] +08:32:17 [ 12] [ 6] [083212] +08:32:17 [ 15] [ 4] [0320] +08:32:17 [ 18] [ 4] [6011] +08:32:17 [ 32] [ 6] [621354] +08:32:17 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:32:17 [ 37] [ 12] [507904706776] +08:32:17 [ 38] [ 6] [607556] +08:32:17 [ 39] [ 2] [00] +08:32:17 [ 41] [ 8] [18000900] +08:32:17 [ 49] [ 3] [418] +08:32:17 [ 54] [ 20] [1002418C002737868956] +08:32:17 ============================================================================ +08:32:17 Sending to : +08:32:17 ============================================================================ +08:32:17 + + +waiting on router queue for slot.... +08:32:19 ============================================================================ +08:32:19 Slot Id : <401> +08:32:19 Transaction Type : RESPONSE +08:32:19 Received From : +08:32:19 ============================================================================ +08:32:19 FNo. Len. Field Value +08:32:19 ============================================================================ +08:32:19 [ 1] [ 4] [0210] +08:32:19 [ 2] [ 16] [6688990030002537] +08:32:19 [ 3] [ 6] [011000] +08:32:19 [ 4] [ 12] [000100000000] +08:32:19 [ 11] [ 6] [685329] +08:32:19 [ 12] [ 6] [083212] +08:32:19 [ 15] [ 4] [0320] +08:32:19 [ 18] [ 4] [6011] +08:32:19 [ 32] [ 6] [621354] +08:32:19 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:32:19 [ 37] [ 12] [507904706776] +08:32:19 [ 38] [ 6] [607556] +08:32:19 [ 39] [ 2] [00] +08:32:19 [ 41] [ 8] [18000900] +08:32:19 [ 49] [ 3] [418] +08:32:19 [ 54] [ 20] [1002418C002737868956] +08:32:19 ============================================================================ +08:32:19 Calculate Source COMM Id = 0 +08:32:19 ============================================================================ +08:32:19 + + +waiting on router queue for slot.... +08:32:25 ============================================================================ +08:32:25 Slot Id : <420> +08:32:25 Transaction Type : REQUEST +08:32:25 Received From : +08:32:25 ============================================================================ +08:32:25 FNo. Len. Field Value +08:32:25 ============================================================================ +08:32:25 [ 1] [ 4] [0200] +08:32:25 [ 2] [ 16] [6213545001031925] +08:32:25 [ 3] [ 6] [010000] +08:32:25 [ 4] [ 12] [000100000000] +08:32:25 [ 7] [ 10] [0320013133] +08:32:25 [ 11] [ 6] [267192] +08:32:25 [ 12] [ 6] [083133] +08:32:25 [ 13] [ 4] [0320] +08:32:25 [ 14] [ 4] [4912] +08:32:25 [ 15] [ 4] [0320] +08:32:25 [ 18] [ 4] [6011] +08:32:25 [ 19] [ 3] [418] +08:32:25 [ 22] [ 3] [021] +08:32:25 [ 25] [ 2] [01] +08:32:25 [ 28] [ 9] [D00002000] +08:32:25 [ 32] [ 6] [180893] +08:32:25 [ 35] [ 32] [6213545001031925=491212013192992] +08:32:25 [ 37] [ 12] [507901267192] +08:32:25 [ 41] [ 8] [0243VTKS] +08:32:25 [ 42] [ 15] [999999 ] +08:32:25 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +08:32:25 [ 49] [ 3] [418] +08:32:25 [ 52] [ 16] [FBB618BA70EF4429] +08:32:25 ============================================================================ +08:32:25 + + +waiting on router queue for slot.... +08:32:25 Sending to : +08:32:25 ============================================================================ +08:32:25 Sending to : +08:32:25 ============================================================================ +08:32:25 ============================================================================ +08:32:25 Slot Id : <420> +08:32:25 Transaction Type : REQUEST +08:32:25 Received From : +08:32:25 ============================================================================ +08:32:25 FNo. Len. Field Value +08:32:25 ============================================================================ +08:32:25 [ 1] [ 4] [0200] +08:32:25 [ 2] [ 16] [6213545001031925] +08:32:25 [ 3] [ 6] [010000] +08:32:25 [ 4] [ 12] [000100000000] +08:32:25 [ 7] [ 10] [0320013133] +08:32:25 [ 11] [ 6] [267192] +08:32:25 [ 12] [ 6] [083133] +08:32:25 [ 13] [ 4] [0320] +08:32:25 [ 14] [ 4] [4912] +08:32:25 [ 15] [ 4] [0320] +08:32:25 [ 18] [ 4] [6011] +08:32:25 [ 19] [ 3] [418] +08:32:25 [ 22] [ 3] [021] +08:32:25 [ 25] [ 2] [01] +08:32:25 [ 28] [ 9] [D00002000] +08:32:25 [ 32] [ 6] [180893] +08:32:25 [ 35] [ 32] [6213545001031925=491212013192992] +08:32:25 [ 37] [ 12] [507901267192] +08:32:25 [ 41] [ 8] [0243VTKS] +08:32:25 [ 42] [ 15] [999999 ] +08:32:25 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +08:32:25 [ 49] [ 3] [418] +08:32:25 [ 52] [ 16] [FBB618BA70EF4429] +08:32:25 ============================================================================ +08:32:25 + + +waiting on router queue for slot.... +08:32:25 Sending to : +08:32:25 ============================================================================ +08:32:25 ============================================================================ +08:32:25 Slot Id : <420> +08:32:25 Transaction Type : REQUEST +08:32:25 Received From : +08:32:25 ============================================================================ +08:32:25 FNo. Len. Field Value +08:32:25 ============================================================================ +08:32:25 [ 1] [ 4] [0200] +08:32:25 [ 2] [ 16] [6213545001031925] +08:32:25 [ 3] [ 6] [010000] +08:32:25 [ 4] [ 12] [000100000000] +08:32:25 [ 7] [ 10] [0320013133] +08:32:25 [ 11] [ 6] [267192] +08:32:25 [ 12] [ 6] [083133] +08:32:25 [ 13] [ 4] [0320] +08:32:25 [ 14] [ 4] [4912] +08:32:25 [ 15] [ 4] [0320] +08:32:25 [ 18] [ 4] [6011] +08:32:25 [ 19] [ 3] [418] +08:32:25 [ 22] [ 3] [021] +08:32:25 [ 25] [ 2] [01] +08:32:25 [ 28] [ 9] [D00002000] +08:32:25 [ 32] [ 6] [180893] +08:32:25 [ 35] [ 32] [6213545001031925=491212013192992] +08:32:25 [ 37] [ 12] [507901267192] +08:32:25 [ 41] [ 8] [0243VTKS] +08:32:25 [ 42] [ 15] [999999 ] +08:32:25 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +08:32:25 [ 49] [ 3] [418] +08:32:25 [ 52] [ 16] [DC53DB2E8579A506] +08:32:25 ============================================================================ +08:32:25 + + +waiting on router queue for slot.... +08:32:25 Sending to : <0> +08:32:25 ============================================================================ +08:32:26 ============================================================================ +08:32:26 Slot Id : <420> +08:32:26 Transaction Type : RESPONSE +08:32:26 Received From : +08:32:26 ============================================================================ +08:32:26 FNo. Len. Field Value +08:32:26 ============================================================================ +08:32:26 [ 1] [ 4] [0210] +08:32:26 [ 2] [ 16] [6213545001031925] +08:32:26 [ 3] [ 6] [010000] +08:32:26 [ 4] [ 12] [000100000000] +08:32:26 [ 7] [ 10] [0320013133] +08:32:26 [ 11] [ 6] [267192] +08:32:26 [ 12] [ 6] [083133] +08:32:26 [ 13] [ 4] [0320] +08:32:26 [ 15] [ 4] [0320] +08:32:26 [ 18] [ 4] [6011] +08:32:26 [ 19] [ 3] [418] +08:32:26 [ 32] [ 6] [180893] +08:32:26 [ 35] [ 32] [6213545001031925=491212013192992] +08:32:26 [ 37] [ 12] [507901267192] +08:32:26 [ 38] [ 6] [210495] +08:32:26 [ 39] [ 2] [00] +08:32:26 [ 41] [ 8] [0243VTKS] +08:32:26 [ 49] [ 3] [418] +08:32:26 [ 54] [ 40] [0001418C0000603174100002418C000060317410] +08:32:26 ============================================================================ +08:32:26 Sending to : +08:32:26 ============================================================================ +08:32:26 + + +waiting on router queue for slot.... +08:32:27 ============================================================================ +08:32:27 Slot Id : <381> +08:32:27 Transaction Type : REQUEST +08:32:27 Received From : +08:32:27 ============================================================================ +08:32:27 FNo. Len. Field Value +08:32:27 ============================================================================ +08:32:27 [ 1] [ 4] [0800] +08:32:27 [ 7] [ 10] [0320013135] +08:32:27 [ 11] [ 6] [155427] +08:32:27 [ 70] [ 3] [301] +08:32:27 ============================================================================ +08:32:27 + + +waiting on router queue for slot.... +08:32:27 Sending to : +08:32:27 ============================================================================ +08:32:27 ============================================================================ +08:32:27 Slot Id : <381> +08:32:27 Transaction Type : RESPONSE +08:32:27 Received From : +08:32:27 ============================================================================ +08:32:27 FNo. Len. Field Value +08:32:27 ============================================================================ +08:32:27 [ 1] [ 4] [0810] +08:32:27 [ 7] [ 10] [0320013135] +08:32:27 [ 11] [ 6] [155427] +08:32:27 [ 39] [ 2] [00] +08:32:27 [ 70] [ 3] [301] +08:32:27 ============================================================================ +08:32:27 Calculate Source COMM Id = 2 +08:32:27 ============================================================================ +08:32:27 + + +waiting on router queue for slot.... +08:32:28 ============================================================================ +08:32:28 Slot Id : <420> +08:32:28 Transaction Type : RESPONSE +08:32:28 Received From : +08:32:28 ============================================================================ +08:32:28 FNo. Len. Field Value +08:32:28 ============================================================================ +08:32:28 [ 1] [ 4] [0210] +08:32:28 [ 2] [ 16] [6213545001031925] +08:32:28 [ 3] [ 6] [010000] +08:32:28 [ 4] [ 12] [000100000000] +08:32:28 [ 7] [ 10] [0320013133] +08:32:28 [ 11] [ 6] [267192] +08:32:28 [ 12] [ 6] [083133] +08:32:28 [ 13] [ 4] [0320] +08:32:28 [ 15] [ 4] [0320] +08:32:28 [ 18] [ 4] [6011] +08:32:28 [ 19] [ 3] [418] +08:32:28 [ 32] [ 6] [180893] +08:32:28 [ 35] [ 32] [6213545001031925=491212013192992] +08:32:28 [ 37] [ 12] [507901267192] +08:32:28 [ 38] [ 6] [210495] +08:32:28 [ 39] [ 2] [00] +08:32:28 [ 41] [ 8] [0243VTKS] +08:32:28 [ 49] [ 3] [418] +08:32:28 [ 54] [ 40] [0001418C0000603174100002418C000060317410] +08:32:28 ============================================================================ +08:32:28 Calculate Source COMM Id = 2 +08:32:28 ============================================================================ +08:32:28 + + +waiting on router queue for slot.... +08:32:31 ============================================================================ +08:32:31 Slot Id : <415> +08:32:31 Transaction Type : REQUEST +08:32:31 Received From : +08:32:31 ============================================================================ +08:32:31 FNo. Len. Field Value +08:32:31 ============================================================================ +08:32:31 [ 1] [ 4] [0800] +08:32:31 [ 7] [ 10] [0320154420] +08:32:31 [ 11] [ 6] [084420] +08:32:31 [ 37] [ 12] [57908084420] +08:32:31 [ 70] [ 3] [301] +08:32:31 ============================================================================ +08:32:31 + + +waiting on router queue for slot.... +08:32:31 Sending to : +08:32:31 ============================================================================ +08:32:31 ============================================================================ +08:32:31 Slot Id : <415> +08:32:31 Transaction Type : RESPONSE +08:32:31 Received From : +08:32:31 ============================================================================ +08:32:31 FNo. Len. Field Value +08:32:31 ============================================================================ +08:32:31 [ 1] [ 4] [0810] +08:32:31 [ 7] [ 10] [0320154420] +08:32:31 [ 11] [ 6] [084420] +08:32:31 [ 37] [ 12] [579080844200] +08:32:31 [ 39] [ 2] [00] +08:32:31 [ 70] [ 3] [810] +08:32:31 ============================================================================ +08:32:31 Calculate Source COMM Id = 6 +08:32:31 ============================================================================ +08:32:31 + + +waiting on router queue for slot.... +08:32:32 ============================================================================ +08:32:32 Slot Id : <398> +08:32:32 Transaction Type : REQUEST +08:32:32 Received From : +08:32:32 ============================================================================ +08:32:32 FNo. Len. Field Value +08:32:32 ============================================================================ +08:32:32 [ 1] [ 4] [0200] +08:32:32 [ 2] [ 16] [6688990103694202] +08:32:32 [ 3] [ 6] [010000] +08:32:32 [ 4] [ 12] [000040000000] +08:32:32 [ 7] [ 10] [0320083228] +08:32:32 [ 11] [ 6] [685382] +08:32:32 [ 12] [ 6] [083228] +08:32:32 [ 13] [ 4] [0320] +08:32:32 [ 15] [ 4] [0320] +08:32:32 [ 18] [ 4] [6011] +08:32:32 [ 22] [ 3] [900] +08:32:32 [ 25] [ 2] [02] +08:32:32 [ 28] [ 9] [D00002000] +08:32:32 [ 32] [ 6] [621354] +08:32:32 [ 35] [ 37] [6688990103694202=43011231420215900000] +08:32:32 [ 37] [ 12] [507903372745] +08:32:32 [ 41] [ 8] [13001700] +08:32:32 [ 42] [ 15] [NATIVE ] +08:32:32 [ 43] [ 40] [Khoun District Khoun LAO] +08:32:32 [ 49] [ 3] [418] +08:32:32 [ 52] [ 16] [93D1D9F733947E8A] +08:32:32 ============================================================================ +08:32:32 + + +waiting on router queue for slot.... +08:32:32 Sending to : +08:32:32 ============================================================================ +08:32:32 Sending to : +08:32:32 ============================================================================ +08:32:32 ============================================================================ +08:32:32 Slot Id : <398> +08:32:32 Transaction Type : REQUEST +08:32:32 Received From : +08:32:32 ============================================================================ +08:32:32 FNo. Len. Field Value +08:32:32 ============================================================================ +08:32:32 [ 1] [ 4] [0200] +08:32:32 [ 2] [ 16] [6688990103694202] +08:32:32 [ 3] [ 6] [010000] +08:32:32 [ 4] [ 12] [000040000000] +08:32:32 [ 7] [ 10] [0320083228] +08:32:32 [ 11] [ 6] [685382] +08:32:32 [ 12] [ 6] [083228] +08:32:32 [ 13] [ 4] [0320] +08:32:32 [ 15] [ 4] [0320] +08:32:32 [ 18] [ 4] [6011] +08:32:32 [ 22] [ 3] [900] +08:32:32 [ 25] [ 2] [02] +08:32:32 [ 28] [ 9] [D00002000] +08:32:32 [ 32] [ 6] [621354] +08:32:32 [ 35] [ 37] [6688990103694202=43011231420215900000] +08:32:32 [ 37] [ 12] [507903372745] +08:32:32 [ 41] [ 8] [13001700] +08:32:32 [ 42] [ 15] [NATIVE ] +08:32:32 [ 43] [ 40] [Khoun District Khoun LAO] +08:32:32 [ 49] [ 3] [418] +08:32:32 [ 52] [ 16] [93D1D9F733947E8A] +08:32:32 ============================================================================ +08:32:32 + + +waiting on router queue for slot.... +08:32:32 Sending to : +08:32:32 ============================================================================ +08:32:32 ============================================================================ +08:32:32 Slot Id : <398> +08:32:32 Transaction Type : REQUEST +08:32:32 Received From : +08:32:32 ============================================================================ +08:32:32 FNo. Len. Field Value +08:32:32 ============================================================================ +08:32:32 [ 1] [ 4] [0200] +08:32:32 [ 2] [ 16] [6688990103694202] +08:32:32 [ 3] [ 6] [010000] +08:32:32 [ 4] [ 12] [000040000000] +08:32:32 [ 7] [ 10] [0320083228] +08:32:32 [ 11] [ 6] [685382] +08:32:32 [ 12] [ 6] [083228] +08:32:32 [ 13] [ 4] [0320] +08:32:32 [ 15] [ 4] [0320] +08:32:32 [ 18] [ 4] [6011] +08:32:32 [ 22] [ 3] [900] +08:32:32 [ 25] [ 2] [02] +08:32:32 [ 28] [ 9] [D00002000] +08:32:32 [ 32] [ 6] [621354] +08:32:32 [ 35] [ 37] [6688990103694202=43011231420215900000] +08:32:32 [ 37] [ 12] [507903372745] +08:32:32 [ 41] [ 8] [13001700] +08:32:32 [ 42] [ 15] [NATIVE ] +08:32:32 [ 43] [ 40] [Khoun District Khoun LAO] +08:32:32 [ 49] [ 3] [418] +08:32:32 [ 52] [ 16] [8984E500B22D8875] +08:32:32 ============================================================================ +08:32:32 + + +waiting on router queue for slot.... +08:32:32 Sending to : <4> +08:32:32 ============================================================================ +08:32:33 ============================================================================ +08:32:33 Slot Id : <398> +08:32:33 Transaction Type : RESPONSE +08:32:33 Received From : +08:32:33 ============================================================================ +08:32:33 FNo. Len. Field Value +08:32:33 ============================================================================ +08:32:33 [ 1] [ 4] [0210] +08:32:33 [ 2] [ 16] [6688990103694202] +08:32:33 [ 3] [ 6] [010000] +08:32:33 [ 4] [ 12] [000040000000] +08:32:33 [ 11] [ 6] [685382] +08:32:33 [ 12] [ 6] [083228] +08:32:33 [ 15] [ 4] [0320] +08:32:33 [ 18] [ 4] [6011] +08:32:33 [ 32] [ 6] [621354] +08:32:33 [ 35] [ 37] [6688990103694202=43011231420215900000] +08:32:33 [ 37] [ 12] [507903372745] +08:32:33 [ 38] [ 6] [220947] +08:32:33 [ 39] [ 2] [00] +08:32:33 [ 41] [ 8] [13001700] +08:32:33 [ 49] [ 3] [418] +08:32:33 [ 54] [ 20] [0002418C000302439485] +08:32:33 ============================================================================ +08:32:33 Sending to : +08:32:33 ============================================================================ +08:32:33 + + +waiting on router queue for slot.... +08:32:35 ============================================================================ +08:32:35 Slot Id : <398> +08:32:35 Transaction Type : RESPONSE +08:32:35 Received From : +08:32:35 ============================================================================ +08:32:35 FNo. Len. Field Value +08:32:35 ============================================================================ +08:32:35 [ 1] [ 4] [0210] +08:32:35 [ 2] [ 16] [6688990103694202] +08:32:35 [ 3] [ 6] [010000] +08:32:35 [ 4] [ 12] [000040000000] +08:32:35 [ 11] [ 6] [685382] +08:32:35 [ 12] [ 6] [083228] +08:32:35 [ 15] [ 4] [0320] +08:32:35 [ 18] [ 4] [6011] +08:32:35 [ 32] [ 6] [621354] +08:32:35 [ 35] [ 37] [6688990103694202=43011231420215900000] +08:32:35 [ 37] [ 12] [507903372745] +08:32:35 [ 38] [ 6] [220947] +08:32:35 [ 39] [ 2] [00] +08:32:35 [ 41] [ 8] [13001700] +08:32:35 [ 49] [ 3] [418] +08:32:35 [ 54] [ 20] [0002418C000302439485] +08:32:35 ============================================================================ +08:32:35 Calculate Source COMM Id = 0 +08:32:35 ============================================================================ +08:32:35 + + +waiting on router queue for slot.... +08:32:37 ============================================================================ +08:32:37 Slot Id : <425> +08:32:37 Transaction Type : REQUEST +08:32:37 Received From : +08:32:37 ============================================================================ +08:32:37 FNo. Len. Field Value +08:32:37 ============================================================================ +08:32:37 [ 1] [ 4] [0200] +08:32:37 [ 2] [ 16] [6213544002079843] +08:32:37 [ 3] [ 6] [301000] +08:32:37 [ 4] [ 12] [000000000000] +08:32:37 [ 7] [ 10] [0320083258] +08:32:37 [ 11] [ 6] [202165] +08:32:37 [ 12] [ 6] [083442] +08:32:37 [ 13] [ 4] [0320] +08:32:37 [ 14] [ 4] [4912] +08:32:37 [ 15] [ 4] [0320] +08:32:37 [ 18] [ 4] [6011] +08:32:37 [ 19] [ 3] [418] +08:32:37 [ 22] [ 3] [021] +08:32:37 [ 25] [ 2] [01] +08:32:37 [ 28] [ 9] [D00000000] +08:32:37 [ 32] [ 6] [198901] +08:32:37 [ 35] [ 32] [6213544002079843=491212017984121] +08:32:37 [ 37] [ 12] [507908202165] +08:32:37 [ 41] [ 8] [00002222] +08:32:37 [ 42] [ 15] [000000041002222] +08:32:37 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +08:32:37 [ 49] [ 3] [418] +08:32:37 [ 52] [ 16] [BBA50279F04A12C0] +08:32:37 ============================================================================ +08:32:37 + + +waiting on router queue for slot.... +08:32:37 Sending to : +08:32:37 ============================================================================ +08:32:37 Sending to : +08:32:37 ============================================================================ +08:32:37 ============================================================================ +08:32:37 Slot Id : <425> +08:32:37 Transaction Type : REQUEST +08:32:37 Received From : +08:32:37 ============================================================================ +08:32:37 FNo. Len. Field Value +08:32:37 ============================================================================ +08:32:37 [ 1] [ 4] [0200] +08:32:37 [ 2] [ 16] [6213544002079843] +08:32:37 [ 3] [ 6] [301000] +08:32:37 [ 4] [ 12] [000000000000] +08:32:37 [ 7] [ 10] [0320083258] +08:32:37 [ 11] [ 6] [202165] +08:32:37 [ 12] [ 6] [083442] +08:32:37 [ 13] [ 4] [0320] +08:32:37 [ 14] [ 4] [4912] +08:32:37 [ 15] [ 4] [0320] +08:32:37 [ 18] [ 4] [6011] +08:32:37 [ 19] [ 3] [418] +08:32:37 [ 22] [ 3] [021] +08:32:37 [ 25] [ 2] [01] +08:32:37 [ 28] [ 9] [D00000000] +08:32:37 [ 32] [ 6] [198901] +08:32:37 [ 35] [ 32] [6213544002079843=491212017984121] +08:32:37 [ 37] [ 12] [507908202165] +08:32:37 [ 41] [ 8] [00002222] +08:32:37 [ 42] [ 15] [000000041002222] +08:32:37 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +08:32:37 [ 49] [ 3] [418] +08:32:37 [ 52] [ 16] [BBA50279F04A12C0] +08:32:37 ============================================================================ +08:32:37 + + +waiting on router queue for slot.... +08:32:37 Sending to : +08:32:37 ============================================================================ +08:32:37 ============================================================================ +08:32:37 Slot Id : <425> +08:32:37 Transaction Type : REQUEST +08:32:37 Received From : +08:32:37 ============================================================================ +08:32:37 FNo. Len. Field Value +08:32:37 ============================================================================ +08:32:37 [ 1] [ 4] [0200] +08:32:37 [ 2] [ 16] [6213544002079843] +08:32:37 [ 3] [ 6] [301000] +08:32:37 [ 4] [ 12] [000000000000] +08:32:37 [ 7] [ 10] [0320083258] +08:32:37 [ 11] [ 6] [202165] +08:32:37 [ 12] [ 6] [083442] +08:32:37 [ 13] [ 4] [0320] +08:32:37 [ 14] [ 4] [4912] +08:32:37 [ 15] [ 4] [0320] +08:32:37 [ 18] [ 4] [6011] +08:32:37 [ 19] [ 3] [418] +08:32:37 [ 22] [ 3] [021] +08:32:37 [ 25] [ 2] [01] +08:32:37 [ 28] [ 9] [D00000000] +08:32:37 [ 32] [ 6] [198901] +08:32:37 [ 35] [ 32] [6213544002079843=491212017984121] +08:32:37 [ 37] [ 12] [507908202165] +08:32:37 [ 41] [ 8] [00002222] +08:32:37 [ 42] [ 15] [000000041002222] +08:32:37 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +08:32:37 [ 49] [ 3] [418] +08:32:37 [ 52] [ 16] [B0590EE6B418AB57] +08:32:37 ============================================================================ +08:32:37 + + +waiting on router queue for slot.... +08:32:37 Sending to : <0> +08:32:37 ============================================================================ +08:32:38 ============================================================================ +08:32:38 Slot Id : <425> +08:32:38 Transaction Type : RESPONSE +08:32:38 Received From : +08:32:38 ============================================================================ +08:32:38 FNo. Len. Field Value +08:32:38 ============================================================================ +08:32:38 [ 1] [ 4] [0210] +08:32:38 [ 2] [ 16] [6213544002079843] +08:32:38 [ 3] [ 6] [301000] +08:32:38 [ 4] [ 12] [000000000000] +08:32:38 [ 7] [ 10] [0320083258] +08:32:38 [ 11] [ 6] [202165] +08:32:38 [ 12] [ 6] [083442] +08:32:38 [ 13] [ 4] [0320] +08:32:38 [ 15] [ 4] [0320] +08:32:38 [ 18] [ 4] [6011] +08:32:38 [ 19] [ 3] [418] +08:32:38 [ 32] [ 6] [198901] +08:32:38 [ 35] [ 32] [6213544002079843=491212017984121] +08:32:38 [ 37] [ 12] [507908202165] +08:32:38 [ 38] [ 6] [830009] +08:32:38 [ 39] [ 2] [00] +08:32:38 [ 41] [ 8] [00002222] +08:32:38 [ 49] [ 3] [418] +08:32:38 [ 54] [ 40] [1001418C0000146722451002418C000014672245] +08:32:38 ============================================================================ +08:32:38 Sending to : +08:32:38 ============================================================================ +08:32:38 + + +waiting on router queue for slot.... +08:32:40 ============================================================================ +08:32:40 Slot Id : <425> +08:32:40 Transaction Type : RESPONSE +08:32:40 Received From : +08:32:40 ============================================================================ +08:32:40 FNo. Len. Field Value +08:32:40 ============================================================================ +08:32:40 [ 1] [ 4] [0210] +08:32:40 [ 2] [ 16] [6213544002079843] +08:32:40 [ 3] [ 6] [301000] +08:32:40 [ 4] [ 12] [000000000000] +08:32:40 [ 7] [ 10] [0320083258] +08:32:40 [ 11] [ 6] [202165] +08:32:40 [ 12] [ 6] [083442] +08:32:40 [ 13] [ 4] [0320] +08:32:40 [ 15] [ 4] [0320] +08:32:40 [ 18] [ 4] [6011] +08:32:40 [ 19] [ 3] [418] +08:32:40 [ 32] [ 6] [198901] +08:32:40 [ 35] [ 32] [6213544002079843=491212017984121] +08:32:40 [ 37] [ 12] [507908202165] +08:32:40 [ 38] [ 6] [830009] +08:32:40 [ 39] [ 2] [00] +08:32:40 [ 41] [ 8] [00002222] +08:32:40 [ 49] [ 3] [418] +08:32:40 [ 54] [ 40] [1001418C0000146722451002418C000014672245] +08:32:40 ============================================================================ +08:32:40 Calculate Source COMM Id = 5 +08:32:40 ============================================================================ +08:32:40 + + +waiting on router queue for slot.... +08:32:42 ============================================================================ +08:32:42 Slot Id : <433> +08:32:42 Transaction Type : REQUEST +08:32:42 Received From : +08:32:42 ============================================================================ +08:32:42 FNo. Len. Field Value +08:32:42 ============================================================================ +08:32:42 [ 1] [ 4] [0800] +08:32:42 [ 7] [ 10] [0320013150] +08:32:42 [ 11] [ 6] [155428] +08:32:42 [ 70] [ 3] [301] +08:32:42 ============================================================================ +08:32:42 + + +waiting on router queue for slot.... +08:32:42 Sending to : +08:32:42 ============================================================================ +08:32:42 ============================================================================ +08:32:42 Slot Id : <433> +08:32:42 Transaction Type : RESPONSE +08:32:42 Received From : +08:32:42 ============================================================================ +08:32:42 FNo. Len. Field Value +08:32:42 ============================================================================ +08:32:42 [ 1] [ 4] [0810] +08:32:42 [ 7] [ 10] [0320013150] +08:32:42 [ 11] [ 6] [155428] +08:32:42 [ 39] [ 2] [00] +08:32:42 [ 70] [ 3] [301] +08:32:42 ============================================================================ +08:32:42 Calculate Source COMM Id = 2 +08:32:42 ============================================================================ +08:32:42 + + +waiting on router queue for slot.... +08:32:50 ============================================================================ +08:32:50 Slot Id : <388> +08:32:50 Transaction Type : REQUEST +08:32:50 Received From : +08:32:50 ============================================================================ +08:32:50 FNo. Len. Field Value +08:32:50 ============================================================================ +08:32:50 [ 1] [ 4] [0200] +08:32:50 [ 2] [ 16] [6213544001594149] +08:32:50 [ 3] [ 6] [010000] +08:32:50 [ 4] [ 12] [000010000000] +08:32:50 [ 7] [ 10] [0320013157] +08:32:50 [ 11] [ 6] [267197] +08:32:50 [ 12] [ 6] [083157] +08:32:50 [ 13] [ 4] [0320] +08:32:50 [ 14] [ 4] [4912] +08:32:50 [ 15] [ 4] [0320] +08:32:50 [ 18] [ 4] [6011] +08:32:50 [ 19] [ 3] [418] +08:32:50 [ 22] [ 3] [021] +08:32:50 [ 25] [ 2] [01] +08:32:50 [ 28] [ 9] [D00002000] +08:32:50 [ 32] [ 6] [180893] +08:32:50 [ 35] [ 32] [6213544001594149=491212019414441] +08:32:50 [ 37] [ 12] [507901267197] +08:32:50 [ 41] [ 8] [0301LPBX] +08:32:50 [ 42] [ 15] [999999 ] +08:32:50 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +08:32:50 [ 49] [ 3] [418] +08:32:50 [ 52] [ 16] [21D7B2DB1AC2FE49] +08:32:50 ============================================================================ +08:32:50 + + +waiting on router queue for slot.... +08:32:50 Sending to : +08:32:50 ============================================================================ +08:32:50 Sending to : +08:32:50 ============================================================================ +08:32:50 ============================================================================ +08:32:50 Slot Id : <388> +08:32:50 Transaction Type : REQUEST +08:32:50 Received From : +08:32:50 ============================================================================ +08:32:50 FNo. Len. Field Value +08:32:50 ============================================================================ +08:32:50 [ 1] [ 4] [0200] +08:32:50 [ 2] [ 16] [6213544001594149] +08:32:50 [ 3] [ 6] [010000] +08:32:50 [ 4] [ 12] [000010000000] +08:32:50 [ 7] [ 10] [0320013157] +08:32:50 [ 11] [ 6] [267197] +08:32:50 [ 12] [ 6] [083157] +08:32:50 [ 13] [ 4] [0320] +08:32:50 [ 14] [ 4] [4912] +08:32:50 [ 15] [ 4] [0320] +08:32:50 [ 18] [ 4] [6011] +08:32:50 [ 19] [ 3] [418] +08:32:50 [ 22] [ 3] [021] +08:32:50 [ 25] [ 2] [01] +08:32:50 [ 28] [ 9] [D00002000] +08:32:50 [ 32] [ 6] [180893] +08:32:50 [ 35] [ 32] [6213544001594149=491212019414441] +08:32:50 [ 37] [ 12] [507901267197] +08:32:50 [ 41] [ 8] [0301LPBX] +08:32:50 [ 42] [ 15] [999999 ] +08:32:50 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +08:32:50 [ 49] [ 3] [418] +08:32:50 [ 52] [ 16] [21D7B2DB1AC2FE49] +08:32:50 ============================================================================ +08:32:50 + + +waiting on router queue for slot.... +08:32:50 Sending to : +08:32:50 ============================================================================ +08:32:50 ============================================================================ +08:32:50 Slot Id : <388> +08:32:50 Transaction Type : REQUEST +08:32:50 Received From : +08:32:50 ============================================================================ +08:32:50 FNo. Len. Field Value +08:32:50 ============================================================================ +08:32:50 [ 1] [ 4] [0200] +08:32:50 [ 2] [ 16] [6213544001594149] +08:32:50 [ 3] [ 6] [010000] +08:32:50 [ 4] [ 12] [000010000000] +08:32:50 [ 7] [ 10] [0320013157] +08:32:50 [ 11] [ 6] [267197] +08:32:50 [ 12] [ 6] [083157] +08:32:50 [ 13] [ 4] [0320] +08:32:50 [ 14] [ 4] [4912] +08:32:50 [ 15] [ 4] [0320] +08:32:50 [ 18] [ 4] [6011] +08:32:50 [ 19] [ 3] [418] +08:32:50 [ 22] [ 3] [021] +08:32:50 [ 25] [ 2] [01] +08:32:50 [ 28] [ 9] [D00002000] +08:32:50 [ 32] [ 6] [180893] +08:32:50 [ 35] [ 32] [6213544001594149=491212019414441] +08:32:50 [ 37] [ 12] [507901267197] +08:32:50 [ 41] [ 8] [0301LPBX] +08:32:50 [ 42] [ 15] [999999 ] +08:32:50 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +08:32:50 [ 49] [ 3] [418] +08:32:50 [ 52] [ 16] [26933B696165F582] +08:32:50 ============================================================================ +08:32:50 + + +waiting on router queue for slot.... +08:32:50 Sending to : <0> +08:32:50 ============================================================================ +08:32:51 ============================================================================ +08:32:51 Slot Id : <388> +08:32:51 Transaction Type : RESPONSE +08:32:51 Received From : +08:32:51 ============================================================================ +08:32:51 FNo. Len. Field Value +08:32:51 ============================================================================ +08:32:51 [ 1] [ 4] [0210] +08:32:51 [ 2] [ 16] [6213544001594149] +08:32:51 [ 3] [ 6] [010000] +08:32:51 [ 4] [ 12] [000010000000] +08:32:51 [ 7] [ 10] [0320013157] +08:32:51 [ 11] [ 6] [267197] +08:32:51 [ 12] [ 6] [083157] +08:32:51 [ 13] [ 4] [0320] +08:32:51 [ 15] [ 4] [0320] +08:32:51 [ 18] [ 4] [6011] +08:32:51 [ 19] [ 3] [418] +08:32:51 [ 32] [ 6] [180893] +08:32:51 [ 35] [ 32] [6213544001594149=491212019414441] +08:32:51 [ 37] [ 12] [507901267197] +08:32:51 [ 38] [ 6] [694738] +08:32:51 [ 39] [ 2] [00] +08:32:51 [ 41] [ 8] [0301LPBX] +08:32:51 [ 49] [ 3] [418] +08:32:51 [ 54] [ 40] [0001418C0000408062690002418C000040806269] +08:32:51 ============================================================================ +08:32:51 Sending to : +08:32:51 ============================================================================ +08:32:51 + + +waiting on router queue for slot.... +08:32:52 ============================================================================ +08:32:52 Slot Id : <388> +08:32:52 Transaction Type : RESPONSE +08:32:52 Received From : +08:32:52 ============================================================================ +08:32:52 FNo. Len. Field Value +08:32:52 ============================================================================ +08:32:52 [ 1] [ 4] [0210] +08:32:52 [ 2] [ 16] [6213544001594149] +08:32:52 [ 3] [ 6] [010000] +08:32:52 [ 4] [ 12] [000010000000] +08:32:52 [ 7] [ 10] [0320013157] +08:32:52 [ 11] [ 6] [267197] +08:32:52 [ 12] [ 6] [083157] +08:32:52 [ 13] [ 4] [0320] +08:32:52 [ 15] [ 4] [0320] +08:32:52 [ 18] [ 4] [6011] +08:32:52 [ 19] [ 3] [418] +08:32:52 [ 32] [ 6] [180893] +08:32:52 [ 35] [ 32] [6213544001594149=491212019414441] +08:32:52 [ 37] [ 12] [507901267197] +08:32:52 [ 38] [ 6] [694738] +08:32:52 [ 39] [ 2] [00] +08:32:52 [ 41] [ 8] [0301LPBX] +08:32:52 [ 49] [ 3] [418] +08:32:52 [ 54] [ 40] [0001418C0000408062690002418C000040806269] +08:32:52 ============================================================================ +08:32:52 Calculate Source COMM Id = 2 +08:32:52 ============================================================================ +08:32:52 + + +waiting on router queue for slot.... +08:32:53 ============================================================================ +08:32:53 Slot Id : <364> +08:32:53 Transaction Type : REQUEST +08:32:53 Received From : +08:32:53 ============================================================================ +08:32:53 FNo. Len. Field Value +08:32:53 ============================================================================ +08:32:53 [ 1] [ 4] [0800] +08:32:53 [ 7] [ 10] [0320013201] +08:32:53 [ 11] [ 6] [155429] +08:32:53 [ 70] [ 3] [301] +08:32:53 ============================================================================ +08:32:53 + + +waiting on router queue for slot.... +08:32:53 Sending to : +08:32:53 ============================================================================ +08:32:53 ============================================================================ +08:32:53 Slot Id : <364> +08:32:53 Transaction Type : RESPONSE +08:32:53 Received From : +08:32:53 ============================================================================ +08:32:53 FNo. Len. Field Value +08:32:53 ============================================================================ +08:32:53 [ 1] [ 4] [0810] +08:32:53 [ 7] [ 10] [0320013201] +08:32:53 [ 11] [ 6] [155429] +08:32:53 [ 39] [ 2] [00] +08:32:53 [ 70] [ 3] [301] +08:32:53 ============================================================================ +08:32:53 Calculate Source COMM Id = 2 +08:32:53 ============================================================================ +08:32:53 + + +waiting on router queue for slot.... +08:32:54 ============================================================================ +08:32:54 Slot Id : <430> +08:32:54 Transaction Type : REQUEST +08:32:54 Received From : +08:32:54 ============================================================================ +08:32:54 FNo. Len. Field Value +08:32:54 ============================================================================ +08:32:54 [ 1] [ 4] [0200] +08:32:54 [ 2] [ 16] [6688990040038836] +08:32:54 [ 3] [ 6] [011000] +08:32:54 [ 4] [ 12] [000030000000] +08:32:54 [ 7] [ 10] [0320083250] +08:32:54 [ 11] [ 6] [685461] +08:32:54 [ 12] [ 6] [083250] +08:32:54 [ 13] [ 4] [0320] +08:32:54 [ 15] [ 4] [0320] +08:32:54 [ 18] [ 4] [6011] +08:32:54 [ 22] [ 3] [900] +08:32:54 [ 25] [ 2] [02] +08:32:54 [ 28] [ 9] [D00002000] +08:32:54 [ 32] [ 6] [621354] +08:32:54 [ 35] [ 37] [6688990040038836=97111261972514900000] +08:32:54 [ 37] [ 12] [507902381128] +08:32:54 [ 41] [ 8] [01006300] +08:32:54 [ 42] [ 15] [NATIVE ] +08:32:54 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +08:32:54 [ 49] [ 3] [418] +08:32:54 [ 52] [ 16] [99272E2E49394CBA] +08:32:54 ============================================================================ +08:32:54 + + +waiting on router queue for slot.... +08:32:54 Sending to : +08:32:54 ============================================================================ +08:32:54 Sending to : +08:32:54 ============================================================================ +08:32:54 ============================================================================ +08:32:54 Slot Id : <430> +08:32:54 Transaction Type : REQUEST +08:32:54 Received From : +08:32:54 ============================================================================ +08:32:54 FNo. Len. Field Value +08:32:54 ============================================================================ +08:32:54 [ 1] [ 4] [0200] +08:32:54 [ 2] [ 16] [6688990040038836] +08:32:54 [ 3] [ 6] [011000] +08:32:54 [ 4] [ 12] [000030000000] +08:32:54 [ 7] [ 10] [0320083250] +08:32:54 [ 11] [ 6] [685461] +08:32:54 [ 12] [ 6] [083250] +08:32:54 [ 13] [ 4] [0320] +08:32:54 [ 15] [ 4] [0320] +08:32:54 [ 18] [ 4] [6011] +08:32:54 [ 22] [ 3] [900] +08:32:54 [ 25] [ 2] [02] +08:32:54 [ 28] [ 9] [D00002000] +08:32:54 [ 32] [ 6] [621354] +08:32:54 [ 35] [ 37] [6688990040038836=97111261972514900000] +08:32:54 [ 37] [ 12] [507902381128] +08:32:54 [ 41] [ 8] [01006300] +08:32:54 [ 42] [ 15] [NATIVE ] +08:32:54 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +08:32:54 [ 49] [ 3] [418] +08:32:54 [ 52] [ 16] [99272E2E49394CBA] +08:32:54 ============================================================================ +08:32:54 + + +waiting on router queue for slot.... +08:32:54 Sending to : +08:32:54 ============================================================================ +08:32:54 ============================================================================ +08:32:54 Slot Id : <430> +08:32:54 Transaction Type : REQUEST +08:32:54 Received From : +08:32:54 ============================================================================ +08:32:54 FNo. Len. Field Value +08:32:54 ============================================================================ +08:32:54 [ 1] [ 4] [0200] +08:32:54 [ 2] [ 16] [6688990040038836] +08:32:54 [ 3] [ 6] [011000] +08:32:54 [ 4] [ 12] [000030000000] +08:32:54 [ 7] [ 10] [0320083250] +08:32:54 [ 11] [ 6] [685461] +08:32:54 [ 12] [ 6] [083250] +08:32:54 [ 13] [ 4] [0320] +08:32:54 [ 15] [ 4] [0320] +08:32:54 [ 18] [ 4] [6011] +08:32:54 [ 22] [ 3] [900] +08:32:54 [ 25] [ 2] [02] +08:32:54 [ 28] [ 9] [D00002000] +08:32:54 [ 32] [ 6] [621354] +08:32:54 [ 35] [ 37] [6688990040038836=97111261972514900000] +08:32:54 [ 37] [ 12] [507902381128] +08:32:54 [ 41] [ 8] [01006300] +08:32:54 [ 42] [ 15] [NATIVE ] +08:32:54 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +08:32:54 [ 49] [ 3] [418] +08:32:54 [ 52] [ 16] [F1FF207CBBE52DDB] +08:32:54 ============================================================================ +08:32:54 + + +waiting on router queue for slot.... +08:32:54 Sending to : <4> +08:32:54 ============================================================================ +08:32:55 ============================================================================ +08:32:55 Slot Id : <367> +08:32:55 Transaction Type : REQUEST +08:32:55 Received From : +08:32:55 ============================================================================ +08:32:55 FNo. Len. Field Value +08:32:55 ============================================================================ +08:32:55 [ 1] [ 4] [0200] +08:32:55 [ 2] [ 16] [1808931800018051] +08:32:55 [ 3] [ 6] [012000] +08:32:55 [ 4] [ 12] [000010000000] +08:32:55 [ 7] [ 10] [0320083252] +08:32:55 [ 11] [ 6] [685468] +08:32:55 [ 12] [ 6] [083252] +08:32:55 [ 13] [ 4] [0320] +08:32:55 [ 15] [ 4] [0320] +08:32:55 [ 18] [ 4] [6011] +08:32:55 [ 22] [ 3] [900] +08:32:55 [ 25] [ 2] [02] +08:32:55 [ 28] [ 9] [D00002000] +08:32:55 [ 32] [ 6] [621354] +08:32:55 [ 35] [ 27] [1808931800018051=1803500398] +08:32:55 [ 37] [ 12] [507904635407] +08:32:55 [ 41] [ 8] [17000800] +08:32:55 [ 42] [ 15] [NATIVE ] +08:32:55 [ 43] [ 40] [Ban Nakhai Naxay LAO] +08:32:55 [ 49] [ 3] [418] +08:32:55 [ 52] [ 16] [5483E6E488A02F7D] +08:32:55 ============================================================================ +08:32:55 + + +waiting on router queue for slot.... +08:32:55 Sending to : +08:32:55 ============================================================================ +08:32:55 Sending to : +08:32:55 ============================================================================ +08:32:56 ============================================================================ +08:32:56 Slot Id : <367> +08:32:56 Transaction Type : REQUEST +08:32:56 Received From : +08:32:56 ============================================================================ +08:32:56 FNo. Len. Field Value +08:32:56 ============================================================================ +08:32:56 [ 1] [ 4] [0200] +08:32:56 [ 2] [ 16] [1808931800018051] +08:32:56 [ 3] [ 6] [012000] +08:32:56 [ 4] [ 12] [000010000000] +08:32:56 [ 7] [ 10] [0320083252] +08:32:56 [ 11] [ 6] [685468] +08:32:56 [ 12] [ 6] [083252] +08:32:56 [ 13] [ 4] [0320] +08:32:56 [ 15] [ 4] [0320] +08:32:56 [ 18] [ 4] [6011] +08:32:56 [ 22] [ 3] [900] +08:32:56 [ 25] [ 2] [02] +08:32:56 [ 28] [ 9] [D00002000] +08:32:56 [ 32] [ 6] [621354] +08:32:56 [ 35] [ 27] [1808931800018051=1803500398] +08:32:56 [ 37] [ 12] [507904635407] +08:32:56 [ 41] [ 8] [17000800] +08:32:56 [ 42] [ 15] [NATIVE ] +08:32:56 [ 43] [ 40] [Ban Nakhai Naxay LAO] +08:32:56 [ 49] [ 3] [418] +08:32:56 [ 52] [ 16] [5483E6E488A02F7D] +08:32:56 ============================================================================ +08:32:56 + + +waiting on router queue for slot.... +08:32:56 Sending to : +08:32:56 ============================================================================ +08:32:56 ============================================================================ +08:32:56 Slot Id : <367> +08:32:56 Transaction Type : REQUEST +08:32:56 Received From : +08:32:56 ============================================================================ +08:32:56 FNo. Len. Field Value +08:32:56 ============================================================================ +08:32:56 [ 1] [ 4] [0200] +08:32:56 [ 2] [ 16] [1808931800018051] +08:32:56 [ 3] [ 6] [012000] +08:32:56 [ 4] [ 12] [000010000000] +08:32:56 [ 7] [ 10] [0320083252] +08:32:56 [ 11] [ 6] [685468] +08:32:56 [ 12] [ 6] [083252] +08:32:56 [ 13] [ 4] [0320] +08:32:56 [ 15] [ 4] [0320] +08:32:56 [ 18] [ 4] [6011] +08:32:56 [ 22] [ 3] [900] +08:32:56 [ 25] [ 2] [02] +08:32:56 [ 28] [ 9] [D00002000] +08:32:56 [ 32] [ 6] [621354] +08:32:56 [ 35] [ 27] [1808931800018051=1803500398] +08:32:56 [ 37] [ 12] [507904635407] +08:32:56 [ 41] [ 8] [17000800] +08:32:56 [ 42] [ 15] [NATIVE ] +08:32:56 [ 43] [ 40] [Ban Nakhai Naxay LAO] +08:32:56 [ 49] [ 3] [418] +08:32:56 [ 52] [ 16] [59E931F6A6E58539] +08:32:56 ============================================================================ +08:32:56 + + +waiting on router queue for slot.... +08:32:56 Sending to : <2> +08:32:56 ============================================================================ +08:32:56 ============================================================================ +08:32:56 Slot Id : <430> +08:32:56 Transaction Type : RESPONSE +08:32:56 Received From : +08:32:56 ============================================================================ +08:32:56 FNo. Len. Field Value +08:32:56 ============================================================================ +08:32:56 [ 1] [ 4] [0210] +08:32:56 [ 2] [ 16] [6688990040038836] +08:32:56 [ 3] [ 6] [011000] +08:32:56 [ 4] [ 12] [000030000000] +08:32:56 [ 11] [ 6] [685461] +08:32:56 [ 12] [ 6] [083250] +08:32:56 [ 15] [ 4] [0320] +08:32:56 [ 18] [ 4] [6011] +08:32:56 [ 32] [ 6] [621354] +08:32:56 [ 35] [ 37] [6688990040038836=97111261972514900000] +08:32:56 [ 37] [ 12] [507902381128] +08:32:56 [ 38] [ 6] [954682] +08:32:56 [ 39] [ 2] [00] +08:32:56 [ 41] [ 8] [01006300] +08:32:56 [ 49] [ 3] [418] +08:32:56 [ 54] [ 20] [1002418C000010378701] +08:32:56 ============================================================================ +08:32:56 Sending to : +08:32:56 ============================================================================ +08:32:56 + + +waiting on router queue for slot.... +08:32:57 ============================================================================ +08:32:57 Slot Id : <367> +08:32:57 Transaction Type : RESPONSE +08:32:57 Received From : +08:32:57 ============================================================================ +08:32:57 FNo. Len. Field Value +08:32:57 ============================================================================ +08:32:57 [ 1] [ 4] [0210] +08:32:57 [ 2] [ 16] [1808931800018051] +08:32:57 [ 3] [ 6] [012000] +08:32:57 [ 4] [ 12] [000010000000] +08:32:57 [ 7] [ 10] [0320083252] +08:32:57 [ 11] [ 6] [685468] +08:32:57 [ 12] [ 6] [083252] +08:32:57 [ 13] [ 4] [0320] +08:32:57 [ 18] [ 4] [6011] +08:32:57 [ 19] [ 3] [418] +08:32:57 [ 22] [ 3] [021] +08:32:57 [ 28] [ 9] [D00002000] +08:32:57 [ 32] [ 6] [621354] +08:32:57 [ 35] [ 27] [1808931800018051=1803500398] +08:32:57 [ 37] [ 12] [507904635407] +08:32:57 [ 39] [ 2] [42] +08:32:57 [ 41] [ 8] [17000800] +08:32:57 [ 49] [ 3] [418] +08:32:57 [ 52] [ 16] [59E931F6A6E58539] +08:32:57 ============================================================================ +08:32:57 Sending to : +08:32:57 ============================================================================ +08:32:57 + + +waiting on router queue for slot.... +08:32:58 ============================================================================ +08:32:58 Slot Id : <430> +08:32:58 Transaction Type : RESPONSE +08:32:58 Received From : +08:32:58 ============================================================================ +08:32:58 FNo. Len. Field Value +08:32:58 ============================================================================ +08:32:58 [ 1] [ 4] [0210] +08:32:58 [ 2] [ 16] [6688990040038836] +08:32:58 [ 3] [ 6] [011000] +08:32:58 [ 4] [ 12] [000030000000] +08:32:58 [ 11] [ 6] [685461] +08:32:58 [ 12] [ 6] [083250] +08:32:58 [ 15] [ 4] [0320] +08:32:58 [ 18] [ 4] [6011] +08:32:58 [ 32] [ 6] [621354] +08:32:58 [ 35] [ 37] [6688990040038836=97111261972514900000] +08:32:58 [ 37] [ 12] [507902381128] +08:32:58 [ 38] [ 6] [954682] +08:32:58 [ 39] [ 2] [00] +08:32:58 [ 41] [ 8] [01006300] +08:32:58 [ 49] [ 3] [418] +08:32:58 [ 54] [ 20] [1002418C000010378701] +08:32:58 ============================================================================ +08:32:58 Calculate Source COMM Id = 0 +08:32:58 ============================================================================ +08:32:58 + + +waiting on router queue for slot.... +08:32:58 ============================================================================ +08:32:58 Slot Id : <441> +08:32:58 Transaction Type : REQUEST +08:32:58 Received From : +08:32:58 ============================================================================ +08:32:58 FNo. Len. Field Value +08:32:58 ============================================================================ +08:32:58 [ 1] [ 4] [0200] +08:32:58 [ 2] [ 16] [6213545000585863] +08:32:58 [ 3] [ 6] [010000] +08:32:58 [ 4] [ 12] [000095000000] +08:32:58 [ 7] [ 10] [0320083050] +08:32:58 [ 11] [ 6] [933131] +08:32:58 [ 12] [ 6] [083050] +08:32:58 [ 13] [ 4] [0320] +08:32:58 [ 15] [ 4] [0320] +08:32:58 [ 18] [ 4] [6011] +08:32:58 [ 19] [ 3] [418] +08:32:58 [ 22] [ 3] [021] +08:32:58 [ 25] [ 2] [01] +08:32:58 [ 28] [ 9] [D00002000] +08:32:58 [ 32] [ 6] [668899] +08:32:58 [ 35] [ 32] [6213545000585863=491212018586418] +08:32:58 [ 37] [ 12] [507900234071] +08:32:58 [ 41] [ 8] [03010001] +08:32:58 [ 42] [ 15] [APT ] +08:32:58 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +08:32:58 [ 49] [ 3] [418] +08:32:58 [ 52] [ 16] [75E6CC04D22BE78B] +08:32:58 ============================================================================ +08:32:58 + + +waiting on router queue for slot.... +08:32:58 Sending to : +08:32:58 ============================================================================ +08:32:58 Sending to : +08:32:58 ============================================================================ +08:32:59 ============================================================================ +08:32:59 Slot Id : <441> +08:32:59 Transaction Type : REQUEST +08:32:59 Received From : +08:32:59 ============================================================================ +08:32:59 FNo. Len. Field Value +08:32:59 ============================================================================ +08:32:59 [ 1] [ 4] [0200] +08:32:59 [ 2] [ 16] [6213545000585863] +08:32:59 [ 3] [ 6] [010000] +08:32:59 [ 4] [ 12] [000095000000] +08:32:59 [ 7] [ 10] [0320083050] +08:32:59 [ 11] [ 6] [933131] +08:32:59 [ 12] [ 6] [083050] +08:32:59 [ 13] [ 4] [0320] +08:32:59 [ 15] [ 4] [0320] +08:32:59 [ 18] [ 4] [6011] +08:32:59 [ 19] [ 3] [418] +08:32:59 [ 22] [ 3] [021] +08:32:59 [ 25] [ 2] [01] +08:32:59 [ 28] [ 9] [D00002000] +08:32:59 [ 32] [ 6] [668899] +08:32:59 [ 35] [ 32] [6213545000585863=491212018586418] +08:32:59 [ 37] [ 12] [507900234071] +08:32:59 [ 41] [ 8] [03010001] +08:32:59 [ 42] [ 15] [APT ] +08:32:59 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +08:32:59 [ 49] [ 3] [418] +08:32:59 [ 52] [ 16] [75E6CC04D22BE78B] +08:32:59 ============================================================================ +08:32:59 + + +waiting on router queue for slot.... +08:32:59 Sending to : +08:32:59 ============================================================================ +08:32:59 ============================================================================ +08:32:59 Slot Id : <441> +08:32:59 Transaction Type : REQUEST +08:32:59 Received From : +08:32:59 ============================================================================ +08:32:59 FNo. Len. Field Value +08:32:59 ============================================================================ +08:32:59 [ 1] [ 4] [0200] +08:32:59 [ 2] [ 16] [6213545000585863] +08:32:59 [ 3] [ 6] [010000] +08:32:59 [ 4] [ 12] [000095000000] +08:32:59 [ 7] [ 10] [0320083050] +08:32:59 [ 11] [ 6] [933131] +08:32:59 [ 12] [ 6] [083050] +08:32:59 [ 13] [ 4] [0320] +08:32:59 [ 15] [ 4] [0320] +08:32:59 [ 18] [ 4] [6011] +08:32:59 [ 19] [ 3] [418] +08:32:59 [ 22] [ 3] [021] +08:32:59 [ 25] [ 2] [01] +08:32:59 [ 28] [ 9] [D00002000] +08:32:59 [ 32] [ 6] [668899] +08:32:59 [ 35] [ 32] [6213545000585863=491212018586418] +08:32:59 [ 37] [ 12] [507900234071] +08:32:59 [ 41] [ 8] [03010001] +08:32:59 [ 42] [ 15] [APT ] +08:32:59 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +08:32:59 [ 49] [ 3] [418] +08:32:59 [ 52] [ 16] [B59039B12065ED46] +08:32:59 ============================================================================ +08:32:59 + + +waiting on router queue for slot.... +08:32:59 Sending to : <0> +08:32:59 ============================================================================ +08:32:59 ============================================================================ +08:32:59 Slot Id : <367> +08:32:59 Transaction Type : RESPONSE +08:32:59 Received From : +08:32:59 ============================================================================ +08:32:59 FNo. Len. Field Value +08:32:59 ============================================================================ +08:32:59 [ 1] [ 4] [0210] +08:32:59 [ 2] [ 16] [1808931800018051] +08:32:59 [ 3] [ 6] [012000] +08:32:59 [ 4] [ 12] [000010000000] +08:32:59 [ 7] [ 10] [0320083252] +08:32:59 [ 11] [ 6] [685468] +08:32:59 [ 12] [ 6] [083252] +08:32:59 [ 13] [ 4] [0320] +08:32:59 [ 18] [ 4] [6011] +08:32:59 [ 19] [ 3] [418] +08:32:59 [ 22] [ 3] [021] +08:32:59 [ 28] [ 9] [D00002000] +08:32:59 [ 32] [ 6] [621354] +08:32:59 [ 35] [ 27] [1808931800018051=1803500398] +08:32:59 [ 37] [ 12] [507904635407] +08:32:59 [ 39] [ 2] [42] +08:32:59 [ 41] [ 8] [17000800] +08:32:59 [ 49] [ 3] [418] +08:32:59 [ 52] [ 16] [59E931F6A6E58539] +08:32:59 ============================================================================ +08:32:59 Calculate Source COMM Id = 0 +08:32:59 ============================================================================ +08:32:59 + + +waiting on router queue for slot.... +08:32:59 ============================================================================ +08:32:59 Slot Id : <441> +08:32:59 Transaction Type : RESPONSE +08:32:59 Received From : +08:32:59 ============================================================================ +08:32:59 FNo. Len. Field Value +08:32:59 ============================================================================ +08:32:59 [ 1] [ 4] [0210] +08:32:59 [ 2] [ 16] [6213545000585863] +08:32:59 [ 3] [ 6] [010000] +08:32:59 [ 4] [ 12] [000095000000] +08:32:59 [ 7] [ 10] [0320083050] +08:32:59 [ 11] [ 6] [933131] +08:32:59 [ 12] [ 6] [083050] +08:32:59 [ 13] [ 4] [0320] +08:32:59 [ 15] [ 4] [0320] +08:32:59 [ 18] [ 4] [6011] +08:32:59 [ 19] [ 3] [418] +08:32:59 [ 32] [ 6] [668899] +08:32:59 [ 35] [ 32] [6213545000585863=491212018586418] +08:32:59 [ 37] [ 12] [507900234071] +08:32:59 [ 38] [ 6] [487600] +08:32:59 [ 39] [ 2] [00] +08:32:59 [ 41] [ 8] [03010001] +08:32:59 [ 49] [ 3] [418] +08:32:59 [ 54] [ 40] [0001418C0000096209330002418C000009620933] +08:32:59 ============================================================================ +08:32:59 Sending to : +08:32:59 ============================================================================ +08:32:59 + + +waiting on router queue for slot.... +08:33:01 ============================================================================ +08:33:01 Slot Id : <441> +08:33:01 Transaction Type : RESPONSE +08:33:01 Received From : +08:33:01 ============================================================================ +08:33:01 FNo. Len. Field Value +08:33:01 ============================================================================ +08:33:01 [ 1] [ 4] [0210] +08:33:01 [ 2] [ 16] [6213545000585863] +08:33:01 [ 3] [ 6] [010000] +08:33:01 [ 4] [ 12] [000095000000] +08:33:01 [ 7] [ 10] [0320083050] +08:33:01 [ 11] [ 6] [933131] +08:33:01 [ 12] [ 6] [083050] +08:33:01 [ 13] [ 4] [0320] +08:33:01 [ 15] [ 4] [0320] +08:33:01 [ 18] [ 4] [6011] +08:33:01 [ 19] [ 3] [418] +08:33:01 [ 32] [ 6] [668899] +08:33:01 [ 35] [ 32] [6213545000585863=491212018586418] +08:33:01 [ 37] [ 12] [507900234071] +08:33:01 [ 38] [ 6] [487600] +08:33:01 [ 39] [ 2] [00] +08:33:01 [ 41] [ 8] [03010001] +08:33:01 [ 49] [ 3] [418] +08:33:01 [ 54] [ 40] [0001418C0000096209330002418C000009620933] +08:33:01 ============================================================================ +08:33:01 Calculate Source COMM Id = 4 +08:33:01 ============================================================================ +08:33:01 + + +waiting on router queue for slot.... +08:33:06 ============================================================================ +08:33:06 Slot Id : <402> +08:33:06 Transaction Type : REQUEST +08:33:06 Received From : +08:33:06 ============================================================================ +08:33:06 FNo. Len. Field Value +08:33:06 ============================================================================ +08:33:06 [ 1] [ 4] [0200] +08:33:06 [ 2] [ 16] [6688990030002537] +08:33:06 [ 3] [ 6] [011000] +08:33:06 [ 4] [ 12] [000100000000] +08:33:06 [ 7] [ 10] [0320083303] +08:33:06 [ 11] [ 6] [685509] +08:33:06 [ 12] [ 6] [083303] +08:33:06 [ 13] [ 4] [0320] +08:33:06 [ 15] [ 4] [0320] +08:33:06 [ 18] [ 4] [6011] +08:33:06 [ 22] [ 3] [900] +08:33:06 [ 25] [ 2] [02] +08:33:06 [ 28] [ 9] [D00002000] +08:33:06 [ 32] [ 6] [621354] +08:33:06 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:33:06 [ 37] [ 12] [507904706778] +08:33:06 [ 41] [ 8] [18000900] +08:33:06 [ 42] [ 15] [NATIVE ] +08:33:06 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:33:06 [ 49] [ 3] [418] +08:33:06 [ 52] [ 16] [752B6104E86573C5] +08:33:06 ============================================================================ +08:33:06 + + +waiting on router queue for slot.... +08:33:06 Sending to : +08:33:06 ============================================================================ +08:33:06 Sending to : +08:33:06 ============================================================================ +08:33:07 ============================================================================ +08:33:07 Slot Id : <402> +08:33:07 Transaction Type : REQUEST +08:33:07 Received From : +08:33:07 ============================================================================ +08:33:07 FNo. Len. Field Value +08:33:07 ============================================================================ +08:33:07 [ 1] [ 4] [0200] +08:33:07 [ 2] [ 16] [6688990030002537] +08:33:07 [ 3] [ 6] [011000] +08:33:07 [ 4] [ 12] [000100000000] +08:33:07 [ 7] [ 10] [0320083303] +08:33:07 [ 11] [ 6] [685509] +08:33:07 [ 12] [ 6] [083303] +08:33:07 [ 13] [ 4] [0320] +08:33:07 [ 15] [ 4] [0320] +08:33:07 [ 18] [ 4] [6011] +08:33:07 [ 22] [ 3] [900] +08:33:07 [ 25] [ 2] [02] +08:33:07 [ 28] [ 9] [D00002000] +08:33:07 [ 32] [ 6] [621354] +08:33:07 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:33:07 [ 37] [ 12] [507904706778] +08:33:07 [ 41] [ 8] [18000900] +08:33:07 [ 42] [ 15] [NATIVE ] +08:33:07 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:33:07 [ 49] [ 3] [418] +08:33:07 [ 52] [ 16] [752B6104E86573C5] +08:33:07 ============================================================================ +08:33:07 + + +waiting on router queue for slot.... +08:33:07 Sending to : +08:33:07 ============================================================================ +08:33:07 ============================================================================ +08:33:07 Slot Id : <402> +08:33:07 Transaction Type : REQUEST +08:33:07 Received From : +08:33:07 ============================================================================ +08:33:07 FNo. Len. Field Value +08:33:07 ============================================================================ +08:33:07 [ 1] [ 4] [0200] +08:33:07 [ 2] [ 16] [6688990030002537] +08:33:07 [ 3] [ 6] [011000] +08:33:07 [ 4] [ 12] [000100000000] +08:33:07 [ 7] [ 10] [0320083303] +08:33:07 [ 11] [ 6] [685509] +08:33:07 [ 12] [ 6] [083303] +08:33:07 [ 13] [ 4] [0320] +08:33:07 [ 15] [ 4] [0320] +08:33:07 [ 18] [ 4] [6011] +08:33:07 [ 22] [ 3] [900] +08:33:07 [ 25] [ 2] [02] +08:33:07 [ 28] [ 9] [D00002000] +08:33:07 [ 32] [ 6] [621354] +08:33:07 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:33:07 [ 37] [ 12] [507904706778] +08:33:07 [ 41] [ 8] [18000900] +08:33:07 [ 42] [ 15] [NATIVE ] +08:33:07 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:33:07 [ 49] [ 3] [418] +08:33:07 [ 52] [ 16] [3B0E9D1F650AC498] +08:33:07 ============================================================================ +08:33:07 + + +waiting on router queue for slot.... +08:33:07 Sending to : <4> +08:33:07 ============================================================================ +08:33:07 ============================================================================ +08:33:07 Slot Id : <375> +08:33:07 Transaction Type : REQUEST +08:33:07 Received From : +08:33:07 ============================================================================ +08:33:07 FNo. Len. Field Value +08:33:07 ============================================================================ +08:33:07 [ 1] [ 4] [0200] +08:33:07 [ 2] [ 16] [6213541000287709] +08:33:07 [ 3] [ 6] [011000] +08:33:07 [ 4] [ 12] [000070000000] +08:33:07 [ 7] [ 10] [0320084054] +08:33:07 [ 11] [ 6] [251093] +08:33:07 [ 12] [ 6] [084054] +08:33:07 [ 13] [ 4] [0320] +08:33:07 [ 14] [ 4] [4912] +08:33:07 [ 15] [ 4] [0320] +08:33:07 [ 18] [ 4] [6011] +08:33:07 [ 22] [ 3] [900] +08:33:07 [ 25] [ 2] [02] +08:33:07 [ 28] [ 9] [D00002000] +08:33:07 [ 32] [ 6] [220699] +08:33:07 [ 35] [ 32] [6213541000287709=491212018770915] +08:33:07 [ 37] [ 12] [507900336124] +08:33:07 [ 41] [ 8] [01001900] +08:33:07 [ 42] [ 15] [APTRA ] +08:33:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:33:07 [ 49] [ 3] [418] +08:33:07 [ 52] [ 16] [1BAA46B33C4F9558] +08:33:07 ============================================================================ +08:33:07 + + +waiting on router queue for slot.... +08:33:07 Sending to : +08:33:07 ============================================================================ +08:33:07 Sending to : +08:33:07 ============================================================================ +08:33:07 ============================================================================ +08:33:07 Slot Id : <408> +08:33:07 Transaction Type : REQUEST +08:33:07 Received From : +08:33:07 ============================================================================ +08:33:07 FNo. Len. Field Value +08:33:07 ============================================================================ +08:33:07 [ 1] [ 4] [0200] +08:33:07 [ 2] [ 16] [6213545000015192] +08:33:07 [ 3] [ 6] [011000] +08:33:07 [ 4] [ 12] [000040000000] +08:33:07 [ 7] [ 10] [0320083329] +08:33:07 [ 11] [ 6] [202172] +08:33:07 [ 12] [ 6] [083040] +08:33:07 [ 13] [ 4] [0320] +08:33:07 [ 14] [ 4] [4912] +08:33:07 [ 15] [ 4] [0320] +08:33:07 [ 18] [ 4] [6011] +08:33:07 [ 19] [ 3] [418] +08:33:07 [ 22] [ 3] [021] +08:33:07 [ 25] [ 2] [01] +08:33:07 [ 28] [ 9] [D00002000] +08:33:07 [ 32] [ 6] [198901] +08:33:07 [ 35] [ 32] [6213545000015192=491212011519958] +08:33:07 [ 37] [ 12] [507908202172] +08:33:07 [ 41] [ 8] [01529002] +08:33:07 [ 42] [ 15] [000000041529002] +08:33:07 [ 43] [ 40] [JDB ATM 150 HOSPITAL VN ] +08:33:07 [ 49] [ 3] [418] +08:33:07 [ 52] [ 16] [86D09811DCA19480] +08:33:07 ============================================================================ +08:33:07 + + +waiting on router queue for slot.... +08:33:07 Sending to : +08:33:07 ============================================================================ +08:33:07 Sending to : +08:33:07 ============================================================================ +08:33:07 ============================================================================ +08:33:07 Slot Id : <375> +08:33:07 Transaction Type : REQUEST +08:33:07 Received From : +08:33:07 ============================================================================ +08:33:07 FNo. Len. Field Value +08:33:07 ============================================================================ +08:33:07 [ 1] [ 4] [0200] +08:33:07 [ 2] [ 16] [6213541000287709] +08:33:07 [ 3] [ 6] [011000] +08:33:07 [ 4] [ 12] [000070000000] +08:33:07 [ 7] [ 10] [0320084054] +08:33:07 [ 11] [ 6] [251093] +08:33:07 [ 12] [ 6] [084054] +08:33:07 [ 13] [ 4] [0320] +08:33:07 [ 14] [ 4] [4912] +08:33:07 [ 15] [ 4] [0320] +08:33:07 [ 18] [ 4] [6011] +08:33:07 [ 22] [ 3] [900] +08:33:07 [ 25] [ 2] [02] +08:33:07 [ 28] [ 9] [D00002000] +08:33:07 [ 32] [ 6] [220699] +08:33:07 [ 35] [ 32] [6213541000287709=491212018770915] +08:33:07 [ 37] [ 12] [507900336124] +08:33:07 [ 41] [ 8] [01001900] +08:33:07 [ 42] [ 15] [APTRA ] +08:33:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:33:07 [ 49] [ 3] [418] +08:33:07 [ 52] [ 16] [1BAA46B33C4F9558] +08:33:07 ============================================================================ +08:33:07 + + +waiting on router queue for slot.... +08:33:07 Sending to : +08:33:07 ============================================================================ +08:33:07 ============================================================================ +08:33:07 Slot Id : <375> +08:33:07 Transaction Type : REQUEST +08:33:07 Received From : +08:33:07 ============================================================================ +08:33:07 FNo. Len. Field Value +08:33:07 ============================================================================ +08:33:07 [ 1] [ 4] [0200] +08:33:07 [ 2] [ 16] [6213541000287709] +08:33:07 [ 3] [ 6] [011000] +08:33:07 [ 4] [ 12] [000070000000] +08:33:07 [ 7] [ 10] [0320084054] +08:33:07 [ 11] [ 6] [251093] +08:33:07 [ 12] [ 6] [084054] +08:33:07 [ 13] [ 4] [0320] +08:33:07 [ 14] [ 4] [4912] +08:33:07 [ 15] [ 4] [0320] +08:33:07 [ 18] [ 4] [6011] +08:33:07 [ 22] [ 3] [900] +08:33:07 [ 25] [ 2] [02] +08:33:07 [ 28] [ 9] [D00002000] +08:33:07 [ 32] [ 6] [220699] +08:33:07 [ 35] [ 32] [6213541000287709=491212018770915] +08:33:07 [ 37] [ 12] [507900336124] +08:33:07 [ 41] [ 8] [01001900] +08:33:07 [ 42] [ 15] [APTRA ] +08:33:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:33:07 [ 49] [ 3] [418] +08:33:07 [ 52] [ 16] [F0C00F40FB134992] +08:33:07 ============================================================================ +08:33:07 + + +waiting on router queue for slot.... +08:33:07 Sending to : <0> +08:33:07 ============================================================================ +08:33:07 ============================================================================ +08:33:07 Slot Id : <408> +08:33:07 Transaction Type : REQUEST +08:33:07 Received From : +08:33:07 ============================================================================ +08:33:07 FNo. Len. Field Value +08:33:07 ============================================================================ +08:33:07 [ 1] [ 4] [0200] +08:33:07 [ 2] [ 16] [6213545000015192] +08:33:07 [ 3] [ 6] [011000] +08:33:07 [ 4] [ 12] [000040000000] +08:33:07 [ 7] [ 10] [0320083329] +08:33:07 [ 11] [ 6] [202172] +08:33:07 [ 12] [ 6] [083040] +08:33:07 [ 13] [ 4] [0320] +08:33:07 [ 14] [ 4] [4912] +08:33:07 [ 15] [ 4] [0320] +08:33:07 [ 18] [ 4] [6011] +08:33:07 [ 19] [ 3] [418] +08:33:07 [ 22] [ 3] [021] +08:33:07 [ 25] [ 2] [01] +08:33:07 [ 28] [ 9] [D00002000] +08:33:07 [ 32] [ 6] [198901] +08:33:07 [ 35] [ 32] [6213545000015192=491212011519958] +08:33:07 [ 37] [ 12] [507908202172] +08:33:07 [ 41] [ 8] [01529002] +08:33:07 [ 42] [ 15] [000000041529002] +08:33:07 [ 43] [ 40] [JDB ATM 150 HOSPITAL VN ] +08:33:07 [ 49] [ 3] [418] +08:33:07 [ 52] [ 16] [86D09811DCA19480] +08:33:07 ============================================================================ +08:33:07 + + +waiting on router queue for slot.... +08:33:07 Sending to : +08:33:07 ============================================================================ +08:33:07 ============================================================================ +08:33:07 Slot Id : <408> +08:33:07 Transaction Type : REQUEST +08:33:07 Received From : +08:33:07 ============================================================================ +08:33:07 FNo. Len. Field Value +08:33:07 ============================================================================ +08:33:07 [ 1] [ 4] [0200] +08:33:07 [ 2] [ 16] [6213545000015192] +08:33:07 [ 3] [ 6] [011000] +08:33:07 [ 4] [ 12] [000040000000] +08:33:07 [ 7] [ 10] [0320083329] +08:33:07 [ 11] [ 6] [202172] +08:33:07 [ 12] [ 6] [083040] +08:33:07 [ 13] [ 4] [0320] +08:33:07 [ 14] [ 4] [4912] +08:33:07 [ 15] [ 4] [0320] +08:33:07 [ 18] [ 4] [6011] +08:33:07 [ 19] [ 3] [418] +08:33:07 [ 22] [ 3] [021] +08:33:07 [ 25] [ 2] [01] +08:33:07 [ 28] [ 9] [D00002000] +08:33:07 [ 32] [ 6] [198901] +08:33:07 [ 35] [ 32] [6213545000015192=491212011519958] +08:33:07 [ 37] [ 12] [507908202172] +08:33:07 [ 41] [ 8] [01529002] +08:33:07 [ 42] [ 15] [000000041529002] +08:33:07 [ 43] [ 40] [JDB ATM 150 HOSPITAL VN ] +08:33:07 [ 49] [ 3] [418] +08:33:07 [ 52] [ 16] [5F8FD0E47EA20958] +08:33:07 ============================================================================ +08:33:07 + + +waiting on router queue for slot.... +08:33:07 Sending to : <0> +08:33:07 ============================================================================ +08:33:08 ============================================================================ +08:33:08 Slot Id : <402> +08:33:08 Transaction Type : RESPONSE +08:33:08 Received From : +08:33:08 ============================================================================ +08:33:08 FNo. Len. Field Value +08:33:08 ============================================================================ +08:33:08 [ 1] [ 4] [0210] +08:33:08 [ 2] [ 16] [6688990030002537] +08:33:08 [ 3] [ 6] [011000] +08:33:08 [ 4] [ 12] [000100000000] +08:33:08 [ 11] [ 6] [685509] +08:33:08 [ 12] [ 6] [083303] +08:33:08 [ 15] [ 4] [0320] +08:33:08 [ 18] [ 4] [6011] +08:33:08 [ 32] [ 6] [621354] +08:33:08 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:33:08 [ 37] [ 12] [507904706778] +08:33:08 [ 38] [ 6] [504726] +08:33:08 [ 39] [ 2] [00] +08:33:08 [ 41] [ 8] [18000900] +08:33:08 [ 49] [ 3] [418] +08:33:08 [ 54] [ 20] [1002418C002637668956] +08:33:08 ============================================================================ +08:33:08 Sending to : +08:33:08 ============================================================================ +08:33:08 + + +waiting on router queue for slot.... +08:33:08 ============================================================================ +08:33:08 Slot Id : <375> +08:33:08 Transaction Type : RESPONSE +08:33:08 Received From : +08:33:08 ============================================================================ +08:33:08 FNo. Len. Field Value +08:33:08 ============================================================================ +08:33:08 [ 1] [ 4] [0210] +08:33:08 [ 2] [ 16] [6213541000287709] +08:33:08 [ 3] [ 6] [011000] +08:33:08 [ 4] [ 12] [000070000000] +08:33:08 [ 7] [ 10] [0320084054] +08:33:08 [ 11] [ 6] [251093] +08:33:08 [ 12] [ 6] [084054] +08:33:08 [ 13] [ 4] [0320] +08:33:08 [ 15] [ 4] [0320] +08:33:08 [ 18] [ 4] [6011] +08:33:08 [ 32] [ 6] [220699] +08:33:08 [ 35] [ 32] [6213541000287709=491212018770915] +08:33:08 [ 37] [ 12] [507900336124] +08:33:08 [ 38] [ 6] [251093] +08:33:08 [ 39] [ 2] [51] +08:33:08 [ 41] [ 8] [01001900] +08:33:08 [ 49] [ 3] [418] +08:33:08 [ 54] [ 40] [1001418C0000675445141002418C000067544514] +08:33:08 ============================================================================ +08:33:08 Sending to : +08:33:08 ============================================================================ +08:33:08 + + +waiting on router queue for slot.... +08:33:08 ============================================================================ +08:33:08 Slot Id : <408> +08:33:08 Transaction Type : RESPONSE +08:33:08 Received From : +08:33:08 ============================================================================ +08:33:08 FNo. Len. Field Value +08:33:08 ============================================================================ +08:33:08 [ 1] [ 4] [0210] +08:33:08 [ 2] [ 16] [6213545000015192] +08:33:08 [ 3] [ 6] [011000] +08:33:08 [ 4] [ 12] [000040000000] +08:33:08 [ 7] [ 10] [0320083329] +08:33:08 [ 11] [ 6] [202172] +08:33:08 [ 12] [ 6] [083040] +08:33:08 [ 13] [ 4] [0320] +08:33:08 [ 15] [ 4] [0320] +08:33:08 [ 18] [ 4] [6011] +08:33:08 [ 19] [ 3] [418] +08:33:08 [ 32] [ 6] [198901] +08:33:08 [ 35] [ 32] [6213545000015192=491212011519958] +08:33:08 [ 37] [ 12] [507908202172] +08:33:08 [ 38] [ 6] [186092] +08:33:08 [ 39] [ 2] [00] +08:33:08 [ 41] [ 8] [01529002] +08:33:08 [ 49] [ 3] [418] +08:33:08 [ 54] [ 40] [1001418C0000082997981002418C000008299798] +08:33:08 ============================================================================ +08:33:08 Sending to : +08:33:08 ============================================================================ +08:33:08 + + +waiting on router queue for slot.... +08:33:08 ============================================================================ +08:33:08 Slot Id : <409> +08:33:08 Transaction Type : REQUEST +08:33:08 Received From : +08:33:08 ============================================================================ +08:33:08 FNo. Len. Field Value +08:33:08 ============================================================================ +08:33:08 [ 1] [ 4] [0800] +08:33:08 [ 7] [ 10] [0320013216] +08:33:08 [ 11] [ 6] [155430] +08:33:08 [ 70] [ 3] [301] +08:33:08 ============================================================================ +08:33:08 + + +waiting on router queue for slot.... +08:33:08 Sending to : +08:33:08 ============================================================================ +08:33:08 ============================================================================ +08:33:08 Slot Id : <409> +08:33:08 Transaction Type : RESPONSE +08:33:08 Received From : +08:33:08 ============================================================================ +08:33:08 FNo. Len. Field Value +08:33:08 ============================================================================ +08:33:08 [ 1] [ 4] [0810] +08:33:08 [ 7] [ 10] [0320013216] +08:33:08 [ 11] [ 6] [155430] +08:33:08 [ 39] [ 2] [00] +08:33:08 [ 70] [ 3] [301] +08:33:08 ============================================================================ +08:33:08 Calculate Source COMM Id = 2 +08:33:08 ============================================================================ +08:33:08 + + +waiting on router queue for slot.... +08:33:08 ============================================================================ +08:33:08 Slot Id : <437> +08:33:08 Transaction Type : REQUEST +08:33:08 Received From : +08:33:08 ============================================================================ +08:33:08 FNo. Len. Field Value +08:33:08 ============================================================================ +08:33:08 [ 1] [ 4] [0800] +08:33:08 [ 2] [ 5] [02531] +08:33:08 [ 3] [ 6] [579088] +08:33:08 [ 7] [ 10] [0320013308] +08:33:08 [ 11] [ 6] [806908] +08:33:08 [ 15] [ 10] [0320013308] +08:33:08 [ 37] [ 11] [57908806908] +08:33:08 [ 70] [ 3] [001] +08:33:08 ============================================================================ +08:33:08 + + +waiting on router queue for slot.... +08:33:08 ============================================================================ +08:33:08 Slot Id : <437> +08:33:08 Transaction Type : RESPONSE +08:33:08 Received From : +08:33:08 ============================================================================ +08:33:08 FNo. Len. Field Value +08:33:08 ============================================================================ +08:33:08 [ 1] [ 4] [0810] +08:33:08 [ 7] [ 10] [0320013308] +08:33:08 [ 11] [ 6] [806908] +08:33:08 [ 15] [ 4] [0320] +08:33:08 [ 37] [ 12] [57908806908] +08:33:08 [ 39] [ 2] [00] +08:33:08 [ 70] [ 3] [001] +08:33:08 ============================================================================ +08:33:08 Sending to : +08:33:08 ============================================================================ +08:33:08 + + +waiting on router queue for slot.... +08:33:09 ============================================================================ +08:33:09 Slot Id : <402> +08:33:09 Transaction Type : RESPONSE +08:33:09 Received From : +08:33:09 ============================================================================ +08:33:09 FNo. Len. Field Value +08:33:09 ============================================================================ +08:33:09 [ 1] [ 4] [0210] +08:33:09 [ 2] [ 16] [6688990030002537] +08:33:09 [ 3] [ 6] [011000] +08:33:09 [ 4] [ 12] [000100000000] +08:33:09 [ 11] [ 6] [685509] +08:33:09 [ 12] [ 6] [083303] +08:33:09 [ 15] [ 4] [0320] +08:33:09 [ 18] [ 4] [6011] +08:33:09 [ 32] [ 6] [621354] +08:33:09 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:33:09 [ 37] [ 12] [507904706778] +08:33:09 [ 38] [ 6] [504726] +08:33:09 [ 39] [ 2] [00] +08:33:09 [ 41] [ 8] [18000900] +08:33:09 [ 49] [ 3] [418] +08:33:09 [ 54] [ 20] [1002418C002637668956] +08:33:09 ============================================================================ +08:33:09 Calculate Source COMM Id = 0 +08:33:09 ============================================================================ +08:33:09 + + +waiting on router queue for slot.... +08:33:11 ============================================================================ +08:33:11 Slot Id : <408> +08:33:11 Transaction Type : RESPONSE +08:33:11 Received From : +08:33:11 ============================================================================ +08:33:11 FNo. Len. Field Value +08:33:11 ============================================================================ +08:33:11 [ 1] [ 4] [0210] +08:33:11 [ 2] [ 16] [6213545000015192] +08:33:11 [ 3] [ 6] [011000] +08:33:11 [ 4] [ 12] [000040000000] +08:33:11 [ 7] [ 10] [0320083329] +08:33:11 [ 11] [ 6] [202172] +08:33:11 [ 12] [ 6] [083040] +08:33:11 [ 13] [ 4] [0320] +08:33:11 [ 15] [ 4] [0320] +08:33:11 [ 18] [ 4] [6011] +08:33:11 [ 19] [ 3] [418] +08:33:11 [ 32] [ 6] [198901] +08:33:11 [ 35] [ 32] [6213545000015192=491212011519958] +08:33:11 [ 37] [ 12] [507908202172] +08:33:11 [ 38] [ 6] [186092] +08:33:11 [ 39] [ 2] [00] +08:33:11 [ 41] [ 8] [01529002] +08:33:11 [ 49] [ 3] [418] +08:33:11 [ 54] [ 40] [1001418C0000082997981002418C000008299798] +08:33:11 ============================================================================ +08:33:11 Calculate Source COMM Id = 5 +08:33:11 ============================================================================ +08:33:11 + + +waiting on router queue for slot.... +08:33:11 ============================================================================ +08:33:11 Slot Id : <385> +08:33:11 Transaction Type : REQUEST +08:33:11 Received From : +08:33:11 ============================================================================ +08:33:11 FNo. Len. Field Value +08:33:11 ============================================================================ +08:33:11 [ 1] [ 4] [0200] +08:33:11 [ 2] [ 16] [6213544002079843] +08:33:11 [ 3] [ 6] [011000] +08:33:11 [ 4] [ 12] [000010000000] +08:33:11 [ 7] [ 10] [0320083333] +08:33:11 [ 11] [ 6] [202173] +08:33:11 [ 12] [ 6] [083514] +08:33:11 [ 13] [ 4] [0320] +08:33:11 [ 14] [ 4] [4912] +08:33:11 [ 15] [ 4] [0320] +08:33:11 [ 18] [ 4] [6011] +08:33:11 [ 19] [ 3] [418] +08:33:11 [ 22] [ 3] [021] +08:33:11 [ 25] [ 2] [01] +08:33:11 [ 28] [ 9] [D00002000] +08:33:11 [ 32] [ 6] [198901] +08:33:11 [ 35] [ 32] [6213544002079843=491212017984121] +08:33:11 [ 37] [ 12] [507908202173] +08:33:11 [ 41] [ 8] [00002222] +08:33:11 [ 42] [ 15] [000000041002222] +08:33:11 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +08:33:11 [ 49] [ 3] [418] +08:33:11 [ 52] [ 16] [BBA50279F04A12C0] +08:33:11 ============================================================================ +08:33:11 + + +waiting on router queue for slot.... +08:33:11 Sending to : +08:33:11 ============================================================================ +08:33:11 Sending to : +08:33:11 ============================================================================ +08:33:12 ============================================================================ +08:33:12 Slot Id : <385> +08:33:12 Transaction Type : REQUEST +08:33:12 Received From : +08:33:12 ============================================================================ +08:33:12 FNo. Len. Field Value +08:33:12 ============================================================================ +08:33:12 [ 1] [ 4] [0200] +08:33:12 [ 2] [ 16] [6213544002079843] +08:33:12 [ 3] [ 6] [011000] +08:33:12 [ 4] [ 12] [000010000000] +08:33:12 [ 7] [ 10] [0320083333] +08:33:12 [ 11] [ 6] [202173] +08:33:12 [ 12] [ 6] [083514] +08:33:12 [ 13] [ 4] [0320] +08:33:12 [ 14] [ 4] [4912] +08:33:12 [ 15] [ 4] [0320] +08:33:12 [ 18] [ 4] [6011] +08:33:12 [ 19] [ 3] [418] +08:33:12 [ 22] [ 3] [021] +08:33:12 [ 25] [ 2] [01] +08:33:12 [ 28] [ 9] [D00002000] +08:33:12 [ 32] [ 6] [198901] +08:33:12 [ 35] [ 32] [6213544002079843=491212017984121] +08:33:12 [ 37] [ 12] [507908202173] +08:33:12 [ 41] [ 8] [00002222] +08:33:12 [ 42] [ 15] [000000041002222] +08:33:12 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +08:33:12 [ 49] [ 3] [418] +08:33:12 [ 52] [ 16] [BBA50279F04A12C0] +08:33:12 ============================================================================ +08:33:12 + + +waiting on router queue for slot.... +08:33:12 Sending to : +08:33:12 ============================================================================ +08:33:12 ============================================================================ +08:33:12 Slot Id : <385> +08:33:12 Transaction Type : REQUEST +08:33:12 Received From : +08:33:12 ============================================================================ +08:33:12 FNo. Len. Field Value +08:33:12 ============================================================================ +08:33:12 [ 1] [ 4] [0200] +08:33:12 [ 2] [ 16] [6213544002079843] +08:33:12 [ 3] [ 6] [011000] +08:33:12 [ 4] [ 12] [000010000000] +08:33:12 [ 7] [ 10] [0320083333] +08:33:12 [ 11] [ 6] [202173] +08:33:12 [ 12] [ 6] [083514] +08:33:12 [ 13] [ 4] [0320] +08:33:12 [ 14] [ 4] [4912] +08:33:12 [ 15] [ 4] [0320] +08:33:12 [ 18] [ 4] [6011] +08:33:12 [ 19] [ 3] [418] +08:33:12 [ 22] [ 3] [021] +08:33:12 [ 25] [ 2] [01] +08:33:12 [ 28] [ 9] [D00002000] +08:33:12 [ 32] [ 6] [198901] +08:33:12 [ 35] [ 32] [6213544002079843=491212017984121] +08:33:12 [ 37] [ 12] [507908202173] +08:33:12 [ 41] [ 8] [00002222] +08:33:12 [ 42] [ 15] [000000041002222] +08:33:12 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +08:33:12 [ 49] [ 3] [418] +08:33:12 [ 52] [ 16] [B0590EE6B418AB57] +08:33:12 ============================================================================ +08:33:12 + + +waiting on router queue for slot.... +08:33:12 Sending to : <0> +08:33:12 ============================================================================ +08:33:12 ============================================================================ +08:33:12 Slot Id : <375> +08:33:12 Transaction Type : RESPONSE +08:33:12 Received From : +08:33:12 ============================================================================ +08:33:12 FNo. Len. Field Value +08:33:12 ============================================================================ +08:33:12 [ 1] [ 4] [0210] +08:33:12 [ 2] [ 16] [6213541000287709] +08:33:12 [ 3] [ 6] [011000] +08:33:12 [ 4] [ 12] [000070000000] +08:33:12 [ 7] [ 10] [0320084054] +08:33:12 [ 11] [ 6] [251093] +08:33:12 [ 12] [ 6] [084054] +08:33:12 [ 13] [ 4] [0320] +08:33:12 [ 15] [ 4] [0320] +08:33:12 [ 18] [ 4] [6011] +08:33:12 [ 32] [ 6] [220699] +08:33:12 [ 35] [ 32] [6213541000287709=491212018770915] +08:33:12 [ 37] [ 12] [507900336124] +08:33:12 [ 38] [ 6] [251093] +08:33:12 [ 39] [ 2] [51] +08:33:12 [ 41] [ 8] [01001900] +08:33:12 [ 49] [ 3] [418] +08:33:12 [ 54] [ 40] [1001418C0000675445141002418C000067544514] +08:33:12 ============================================================================ +08:33:12 Calculate Source COMM Id = 1 +08:33:12 ============================================================================ +08:33:12 + + +waiting on router queue for slot.... +08:33:13 ============================================================================ +08:33:13 Slot Id : <385> +08:33:13 Transaction Type : RESPONSE +08:33:13 Received From : +08:33:13 ============================================================================ +08:33:13 FNo. Len. Field Value +08:33:13 ============================================================================ +08:33:13 [ 1] [ 4] [0210] +08:33:13 [ 2] [ 16] [6213544002079843] +08:33:13 [ 3] [ 6] [011000] +08:33:13 [ 4] [ 12] [000010000000] +08:33:13 [ 7] [ 10] [0320083333] +08:33:13 [ 11] [ 6] [202173] +08:33:13 [ 12] [ 6] [083514] +08:33:13 [ 13] [ 4] [0320] +08:33:13 [ 15] [ 4] [0320] +08:33:13 [ 18] [ 4] [6011] +08:33:13 [ 19] [ 3] [418] +08:33:13 [ 32] [ 6] [198901] +08:33:13 [ 35] [ 32] [6213544002079843=491212017984121] +08:33:13 [ 37] [ 12] [507908202173] +08:33:13 [ 38] [ 6] [202173] +08:33:13 [ 39] [ 2] [51] +08:33:13 [ 41] [ 8] [00002222] +08:33:13 [ 49] [ 3] [418] +08:33:13 [ 54] [ 40] [1001418C0000146722451002418C000014672245] +08:33:13 ============================================================================ +08:33:13 Sending to : +08:33:13 ============================================================================ +08:33:13 + + +waiting on router queue for slot.... +08:33:13 ============================================================================ +08:33:13 Slot Id : <362> +08:33:13 Transaction Type : REQUEST +08:33:13 Received From : +08:33:13 ============================================================================ +08:33:13 FNo. Len. Field Value +08:33:13 ============================================================================ +08:33:13 [ 1] [ 4] [0200] +08:33:13 [ 2] [ 16] [6213544000509627] +08:33:13 [ 3] [ 6] [010000] +08:33:13 [ 4] [ 12] [000010000000] +08:33:13 [ 7] [ 10] [0320083104] +08:33:13 [ 11] [ 6] [933150] +08:33:13 [ 12] [ 6] [083104] +08:33:13 [ 13] [ 4] [0320] +08:33:13 [ 15] [ 4] [0320] +08:33:13 [ 18] [ 4] [6011] +08:33:13 [ 19] [ 3] [418] +08:33:13 [ 22] [ 3] [021] +08:33:13 [ 25] [ 2] [01] +08:33:13 [ 28] [ 9] [D00002000] +08:33:13 [ 32] [ 6] [668899] +08:33:13 [ 35] [ 32] [6213544000509627=491212010962071] +08:33:13 [ 37] [ 12] [507901203873] +08:33:13 [ 41] [ 8] [03020012] +08:33:13 [ 42] [ 15] [APT ] +08:33:13 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +08:33:13 [ 49] [ 3] [418] +08:33:13 [ 52] [ 16] [D423C81735477E8C] +08:33:13 ============================================================================ +08:33:13 + + +waiting on router queue for slot.... +08:33:13 Sending to : +08:33:13 ============================================================================ +08:33:13 Sending to : +08:33:13 ============================================================================ +08:33:13 ============================================================================ +08:33:13 Slot Id : <362> +08:33:13 Transaction Type : REQUEST +08:33:13 Received From : +08:33:13 ============================================================================ +08:33:13 FNo. Len. Field Value +08:33:13 ============================================================================ +08:33:13 [ 1] [ 4] [0200] +08:33:13 [ 2] [ 16] [6213544000509627] +08:33:13 [ 3] [ 6] [010000] +08:33:13 [ 4] [ 12] [000010000000] +08:33:13 [ 7] [ 10] [0320083104] +08:33:13 [ 11] [ 6] [933150] +08:33:13 [ 12] [ 6] [083104] +08:33:13 [ 13] [ 4] [0320] +08:33:13 [ 15] [ 4] [0320] +08:33:13 [ 18] [ 4] [6011] +08:33:13 [ 19] [ 3] [418] +08:33:13 [ 22] [ 3] [021] +08:33:13 [ 25] [ 2] [01] +08:33:13 [ 28] [ 9] [D00002000] +08:33:13 [ 32] [ 6] [668899] +08:33:13 [ 35] [ 32] [6213544000509627=491212010962071] +08:33:13 [ 37] [ 12] [507901203873] +08:33:13 [ 41] [ 8] [03020012] +08:33:13 [ 42] [ 15] [APT ] +08:33:13 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +08:33:13 [ 49] [ 3] [418] +08:33:13 [ 52] [ 16] [D423C81735477E8C] +08:33:13 ============================================================================ +08:33:13 + + +waiting on router queue for slot.... +08:33:13 Sending to : +08:33:13 ============================================================================ +08:33:13 ============================================================================ +08:33:13 Slot Id : <362> +08:33:13 Transaction Type : REQUEST +08:33:13 Received From : +08:33:13 ============================================================================ +08:33:13 FNo. Len. Field Value +08:33:13 ============================================================================ +08:33:13 [ 1] [ 4] [0200] +08:33:13 [ 2] [ 16] [6213544000509627] +08:33:13 [ 3] [ 6] [010000] +08:33:13 [ 4] [ 12] [000010000000] +08:33:13 [ 7] [ 10] [0320083104] +08:33:13 [ 11] [ 6] [933150] +08:33:13 [ 12] [ 6] [083104] +08:33:13 [ 13] [ 4] [0320] +08:33:13 [ 15] [ 4] [0320] +08:33:13 [ 18] [ 4] [6011] +08:33:13 [ 19] [ 3] [418] +08:33:13 [ 22] [ 3] [021] +08:33:13 [ 25] [ 2] [01] +08:33:13 [ 28] [ 9] [D00002000] +08:33:13 [ 32] [ 6] [668899] +08:33:13 [ 35] [ 32] [6213544000509627=491212010962071] +08:33:13 [ 37] [ 12] [507901203873] +08:33:13 [ 41] [ 8] [03020012] +08:33:13 [ 42] [ 15] [APT ] +08:33:13 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +08:33:13 [ 49] [ 3] [418] +08:33:13 [ 52] [ 16] [895B0B8247616238] +08:33:13 ============================================================================ +08:33:13 + + +waiting on router queue for slot.... +08:33:13 Sending to : <0> +08:33:13 ============================================================================ +08:33:14 ============================================================================ +08:33:14 Slot Id : <362> +08:33:14 Transaction Type : RESPONSE +08:33:14 Received From : +08:33:14 ============================================================================ +08:33:14 FNo. Len. Field Value +08:33:14 ============================================================================ +08:33:14 [ 1] [ 4] [0210] +08:33:14 [ 2] [ 16] [6213544000509627] +08:33:14 [ 3] [ 6] [010000] +08:33:14 [ 4] [ 12] [000010000000] +08:33:14 [ 7] [ 10] [0320083104] +08:33:14 [ 11] [ 6] [933150] +08:33:14 [ 12] [ 6] [083104] +08:33:14 [ 13] [ 4] [0320] +08:33:14 [ 15] [ 4] [0320] +08:33:14 [ 18] [ 4] [6011] +08:33:14 [ 19] [ 3] [418] +08:33:14 [ 32] [ 6] [668899] +08:33:14 [ 35] [ 32] [6213544000509627=491212010962071] +08:33:14 [ 37] [ 12] [507901203873] +08:33:14 [ 38] [ 6] [658590] +08:33:14 [ 39] [ 2] [00] +08:33:14 [ 41] [ 8] [03020012] +08:33:14 [ 49] [ 3] [418] +08:33:14 [ 54] [ 40] [0001418C0004699859120002418C000469985912] +08:33:14 ============================================================================ +08:33:14 Sending to : +08:33:14 ============================================================================ +08:33:14 + + +waiting on router queue for slot.... +08:33:15 ============================================================================ +08:33:15 Slot Id : <385> +08:33:15 Transaction Type : RESPONSE +08:33:15 Received From : +08:33:15 ============================================================================ +08:33:15 FNo. Len. Field Value +08:33:15 ============================================================================ +08:33:15 [ 1] [ 4] [0210] +08:33:15 [ 2] [ 16] [6213544002079843] +08:33:15 [ 3] [ 6] [011000] +08:33:15 [ 4] [ 12] [000010000000] +08:33:15 [ 7] [ 10] [0320083333] +08:33:15 [ 11] [ 6] [202173] +08:33:15 [ 12] [ 6] [083514] +08:33:15 [ 13] [ 4] [0320] +08:33:15 [ 15] [ 4] [0320] +08:33:15 [ 18] [ 4] [6011] +08:33:15 [ 19] [ 3] [418] +08:33:15 [ 32] [ 6] [198901] +08:33:15 [ 35] [ 32] [6213544002079843=491212017984121] +08:33:15 [ 37] [ 12] [507908202173] +08:33:15 [ 38] [ 6] [202173] +08:33:15 [ 39] [ 2] [51] +08:33:15 [ 41] [ 8] [00002222] +08:33:15 [ 49] [ 3] [418] +08:33:15 [ 54] [ 40] [1001418C0000146722451002418C000014672245] +08:33:15 ============================================================================ +08:33:15 Calculate Source COMM Id = 5 +08:33:15 ============================================================================ +08:33:15 + + +waiting on router queue for slot.... +08:33:15 ============================================================================ +08:33:15 Slot Id : <403> +08:33:15 Transaction Type : REQUEST +08:33:15 Received From : +08:33:15 ============================================================================ +08:33:15 FNo. Len. Field Value +08:33:15 ============================================================================ +08:33:15 [ 1] [ 4] [0800] +08:33:15 [ 7] [ 10] [0320083302] +08:33:15 [ 11] [ 6] [018700] +08:33:15 [ 37] [ 12] [507908018700] +08:33:15 [ 70] [ 3] [ ] +08:33:15 ============================================================================ +08:33:15 + + +waiting on router queue for slot.... +08:33:15 Sending to : +08:33:15 ============================================================================ +08:33:15 ============================================================================ +08:33:15 Slot Id : <403> +08:33:15 Transaction Type : RESPONSE +08:33:15 Received From : +08:33:15 ============================================================================ +08:33:15 FNo. Len. Field Value +08:33:15 ============================================================================ +08:33:15 [ 1] [ 4] [0810] +08:33:15 [ 7] [ 10] [0320083302] +08:33:15 [ 11] [ 6] [018700] +08:33:15 [ 37] [ 12] [507908018700] +08:33:15 [ 39] [ 2] [91] +08:33:15 [ 70] [ 3] [ ] +08:33:15 ============================================================================ +08:33:15 Calculate Source COMM Id = 3 +08:33:15 ============================================================================ +08:33:15 + + +waiting on router queue for slot.... +08:33:16 ============================================================================ +08:33:16 Slot Id : <362> +08:33:16 Transaction Type : RESPONSE +08:33:16 Received From : +08:33:16 ============================================================================ +08:33:16 FNo. Len. Field Value +08:33:16 ============================================================================ +08:33:16 [ 1] [ 4] [0210] +08:33:16 [ 2] [ 16] [6213544000509627] +08:33:16 [ 3] [ 6] [010000] +08:33:16 [ 4] [ 12] [000010000000] +08:33:16 [ 7] [ 10] [0320083104] +08:33:16 [ 11] [ 6] [933150] +08:33:16 [ 12] [ 6] [083104] +08:33:16 [ 13] [ 4] [0320] +08:33:16 [ 15] [ 4] [0320] +08:33:16 [ 18] [ 4] [6011] +08:33:16 [ 19] [ 3] [418] +08:33:16 [ 32] [ 6] [668899] +08:33:16 [ 35] [ 32] [6213544000509627=491212010962071] +08:33:16 [ 37] [ 12] [507901203873] +08:33:16 [ 38] [ 6] [658590] +08:33:16 [ 39] [ 2] [00] +08:33:16 [ 41] [ 8] [03020012] +08:33:16 [ 49] [ 3] [418] +08:33:16 [ 54] [ 40] [0001418C0004699859120002418C000469985912] +08:33:16 ============================================================================ +08:33:16 Calculate Source COMM Id = 4 +08:33:16 ============================================================================ +08:33:16 + + +waiting on router queue for slot.... +08:33:19 ============================================================================ +08:33:19 Slot Id : <447> +08:33:19 Transaction Type : REQUEST +08:33:19 Received From : +08:33:19 ============================================================================ +08:33:19 FNo. Len. Field Value +08:33:19 ============================================================================ +08:33:19 [ 1] [ 4] [0800] +08:33:19 [ 7] [ 10] [0320013227] +08:33:19 [ 11] [ 6] [155431] +08:33:19 [ 70] [ 3] [301] +08:33:19 ============================================================================ +08:33:19 + + +waiting on router queue for slot.... +08:33:19 Sending to : +08:33:19 ============================================================================ +08:33:19 ============================================================================ +08:33:19 Slot Id : <447> +08:33:19 Transaction Type : RESPONSE +08:33:19 Received From : +08:33:19 ============================================================================ +08:33:19 FNo. Len. Field Value +08:33:19 ============================================================================ +08:33:19 [ 1] [ 4] [0810] +08:33:19 [ 7] [ 10] [0320013227] +08:33:19 [ 11] [ 6] [155431] +08:33:19 [ 39] [ 2] [00] +08:33:19 [ 70] [ 3] [301] +08:33:19 ============================================================================ +08:33:19 Calculate Source COMM Id = 2 +08:33:19 ============================================================================ +08:33:19 + + +waiting on router queue for slot.... +08:33:30 ============================================================================ +08:33:30 Slot Id : <412> +08:33:30 Transaction Type : REQUEST +08:33:30 Received From : +08:33:30 ============================================================================ +08:33:30 FNo. Len. Field Value +08:33:30 ============================================================================ +08:33:30 [ 1] [ 4] [0800] +08:33:30 [ 7] [ 10] [0320013238] +08:33:30 [ 11] [ 6] [155432] +08:33:30 [ 70] [ 3] [301] +08:33:30 ============================================================================ +08:33:30 + + +waiting on router queue for slot.... +08:33:30 Sending to : +08:33:30 ============================================================================ +08:33:30 ============================================================================ +08:33:30 Slot Id : <412> +08:33:30 Transaction Type : RESPONSE +08:33:30 Received From : +08:33:30 ============================================================================ +08:33:30 FNo. Len. Field Value +08:33:30 ============================================================================ +08:33:30 [ 1] [ 4] [0810] +08:33:30 [ 7] [ 10] [0320013238] +08:33:30 [ 11] [ 6] [155432] +08:33:30 [ 39] [ 2] [00] +08:33:30 [ 70] [ 3] [301] +08:33:30 ============================================================================ +08:33:30 Calculate Source COMM Id = 2 +08:33:30 ============================================================================ +08:33:30 + + +waiting on router queue for slot.... +08:33:36 ============================================================================ +08:33:36 Slot Id : <392> +08:33:36 Transaction Type : REQUEST +08:33:36 Received From : +08:33:36 ============================================================================ +08:33:36 FNo. Len. Field Value +08:33:36 ============================================================================ +08:33:36 [ 1] [ 4] [0800] +08:33:36 [ 7] [ 10] [0320154525] +08:33:36 [ 11] [ 6] [084525] +08:33:36 [ 37] [ 12] [57908084525] +08:33:36 [ 70] [ 3] [301] +08:33:36 ============================================================================ +08:33:36 + + +waiting on router queue for slot.... +08:33:36 Sending to : +08:33:36 ============================================================================ +08:33:36 ============================================================================ +08:33:36 Slot Id : <392> +08:33:36 Transaction Type : RESPONSE +08:33:36 Received From : +08:33:36 ============================================================================ +08:33:36 FNo. Len. Field Value +08:33:36 ============================================================================ +08:33:36 [ 1] [ 4] [0810] +08:33:36 [ 7] [ 10] [0320154525] +08:33:36 [ 11] [ 6] [084525] +08:33:36 [ 37] [ 12] [579080845250] +08:33:36 [ 39] [ 2] [00] +08:33:36 [ 70] [ 3] [810] +08:33:36 ============================================================================ +08:33:36 Calculate Source COMM Id = 6 +08:33:36 ============================================================================ +08:33:36 + + +waiting on router queue for slot.... +08:33:41 ============================================================================ +08:33:41 Slot Id : <450> +08:33:41 Transaction Type : REQUEST +08:33:41 Received From : +08:33:41 ============================================================================ +08:33:41 FNo. Len. Field Value +08:33:41 ============================================================================ +08:33:41 [ 1] [ 4] [0800] +08:33:41 [ 7] [ 10] [0320013249] +08:33:41 [ 11] [ 6] [155433] +08:33:41 [ 70] [ 3] [301] +08:33:41 ============================================================================ +08:33:41 + + +waiting on router queue for slot.... +08:33:41 Sending to : +08:33:41 ============================================================================ +08:33:41 ============================================================================ +08:33:41 Slot Id : <450> +08:33:41 Transaction Type : RESPONSE +08:33:41 Received From : +08:33:41 ============================================================================ +08:33:41 FNo. Len. Field Value +08:33:41 ============================================================================ +08:33:41 [ 1] [ 4] [0810] +08:33:41 [ 7] [ 10] [0320013249] +08:33:41 [ 11] [ 6] [155433] +08:33:41 [ 39] [ 2] [00] +08:33:41 [ 70] [ 3] [301] +08:33:41 ============================================================================ +08:33:41 Calculate Source COMM Id = 2 +08:33:41 ============================================================================ +08:33:41 + + +waiting on router queue for slot.... +08:33:53 ============================================================================ +08:33:53 Slot Id : <417> +08:33:53 Transaction Type : REQUEST +08:33:53 Received From : +08:33:53 ============================================================================ +08:33:53 FNo. Len. Field Value +08:33:53 ============================================================================ +08:33:53 [ 1] [ 4] [0800] +08:33:53 [ 7] [ 10] [0320013300] +08:33:53 [ 11] [ 6] [155434] +08:33:53 [ 70] [ 3] [301] +08:33:53 ============================================================================ +08:33:53 + + +waiting on router queue for slot.... +08:33:53 Sending to : +08:33:53 ============================================================================ +08:33:53 ============================================================================ +08:33:53 Slot Id : <417> +08:33:53 Transaction Type : RESPONSE +08:33:53 Received From : +08:33:53 ============================================================================ +08:33:53 FNo. Len. Field Value +08:33:53 ============================================================================ +08:33:53 [ 1] [ 4] [0810] +08:33:53 [ 7] [ 10] [0320013300] +08:33:53 [ 11] [ 6] [155434] +08:33:53 [ 39] [ 2] [00] +08:33:53 [ 70] [ 3] [301] +08:33:53 ============================================================================ +08:33:53 Calculate Source COMM Id = 2 +08:33:53 ============================================================================ +08:33:53 + + +waiting on router queue for slot.... +08:33:55 ============================================================================ +08:33:55 Slot Id : <386> +08:33:55 Transaction Type : REQUEST +08:33:55 Received From : +08:33:55 ============================================================================ +08:33:55 FNo. Len. Field Value +08:33:55 ============================================================================ +08:33:55 [ 1] [ 4] [0200] +08:33:55 [ 2] [ 16] [6213541000718067] +08:33:55 [ 3] [ 6] [012000] +08:33:55 [ 4] [ 12] [000100000000] +08:33:55 [ 7] [ 10] [0320084142] +08:33:55 [ 11] [ 6] [177312] +08:33:55 [ 12] [ 6] [084142] +08:33:55 [ 13] [ 4] [0320] +08:33:55 [ 14] [ 4] [4912] +08:33:55 [ 15] [ 4] [0320] +08:33:55 [ 18] [ 4] [6011] +08:33:55 [ 22] [ 3] [900] +08:33:55 [ 25] [ 2] [02] +08:33:55 [ 28] [ 9] [D00002000] +08:33:55 [ 32] [ 6] [220699] +08:33:55 [ 35] [ 32] [6213541000718067=491212011806485] +08:33:55 [ 37] [ 12] [507900010192] +08:33:55 [ 41] [ 8] [01000100] +08:33:55 [ 42] [ 15] [APTRA ] +08:33:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:33:55 [ 49] [ 3] [418] +08:33:55 [ 52] [ 16] [4D7D96D154F59F76] +08:33:55 ============================================================================ +08:33:55 + + +waiting on router queue for slot.... +08:33:55 Sending to : +08:33:55 ============================================================================ +08:33:55 Sending to : +08:33:55 ============================================================================ +08:33:55 ============================================================================ +08:33:55 Slot Id : <386> +08:33:55 Transaction Type : REQUEST +08:33:55 Received From : +08:33:55 ============================================================================ +08:33:55 FNo. Len. Field Value +08:33:55 ============================================================================ +08:33:55 [ 1] [ 4] [0200] +08:33:55 [ 2] [ 16] [6213541000718067] +08:33:55 [ 3] [ 6] [012000] +08:33:55 [ 4] [ 12] [000100000000] +08:33:55 [ 7] [ 10] [0320084142] +08:33:55 [ 11] [ 6] [177312] +08:33:55 [ 12] [ 6] [084142] +08:33:55 [ 13] [ 4] [0320] +08:33:55 [ 14] [ 4] [4912] +08:33:55 [ 15] [ 4] [0320] +08:33:55 [ 18] [ 4] [6011] +08:33:55 [ 22] [ 3] [900] +08:33:55 [ 25] [ 2] [02] +08:33:55 [ 28] [ 9] [D00002000] +08:33:55 [ 32] [ 6] [220699] +08:33:55 [ 35] [ 32] [6213541000718067=491212011806485] +08:33:55 [ 37] [ 12] [507900010192] +08:33:55 [ 41] [ 8] [01000100] +08:33:55 [ 42] [ 15] [APTRA ] +08:33:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:33:55 [ 49] [ 3] [418] +08:33:55 [ 52] [ 16] [4D7D96D154F59F76] +08:33:55 ============================================================================ +08:33:55 + + +waiting on router queue for slot.... +08:33:55 Sending to : +08:33:55 ============================================================================ +08:33:55 ============================================================================ +08:33:55 Slot Id : <386> +08:33:55 Transaction Type : REQUEST +08:33:55 Received From : +08:33:55 ============================================================================ +08:33:55 FNo. Len. Field Value +08:33:55 ============================================================================ +08:33:55 [ 1] [ 4] [0200] +08:33:55 [ 2] [ 16] [6213541000718067] +08:33:55 [ 3] [ 6] [012000] +08:33:55 [ 4] [ 12] [000100000000] +08:33:55 [ 7] [ 10] [0320084142] +08:33:55 [ 11] [ 6] [177312] +08:33:55 [ 12] [ 6] [084142] +08:33:55 [ 13] [ 4] [0320] +08:33:55 [ 14] [ 4] [4912] +08:33:55 [ 15] [ 4] [0320] +08:33:55 [ 18] [ 4] [6011] +08:33:55 [ 22] [ 3] [900] +08:33:55 [ 25] [ 2] [02] +08:33:55 [ 28] [ 9] [D00002000] +08:33:55 [ 32] [ 6] [220699] +08:33:55 [ 35] [ 32] [6213541000718067=491212011806485] +08:33:55 [ 37] [ 12] [507900010192] +08:33:55 [ 41] [ 8] [01000100] +08:33:55 [ 42] [ 15] [APTRA ] +08:33:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:33:55 [ 49] [ 3] [418] +08:33:55 [ 52] [ 16] [719095620F2CDCAC] +08:33:55 ============================================================================ +08:33:55 + + +waiting on router queue for slot.... +08:33:55 Sending to : <0> +08:33:55 ============================================================================ +08:33:56 ============================================================================ +08:33:56 Slot Id : <386> +08:33:56 Transaction Type : RESPONSE +08:33:56 Received From : +08:33:56 ============================================================================ +08:33:56 FNo. Len. Field Value +08:33:56 ============================================================================ +08:33:56 [ 1] [ 4] [0210] +08:33:56 [ 2] [ 16] [6213541000718067] +08:33:56 [ 3] [ 6] [012000] +08:33:56 [ 4] [ 12] [000100000000] +08:33:56 [ 7] [ 10] [0320084142] +08:33:56 [ 11] [ 6] [177312] +08:33:56 [ 12] [ 6] [084142] +08:33:56 [ 13] [ 4] [0320] +08:33:56 [ 15] [ 4] [0320] +08:33:56 [ 18] [ 4] [6011] +08:33:56 [ 32] [ 6] [220699] +08:33:56 [ 35] [ 32] [6213541000718067=491212011806485] +08:33:56 [ 37] [ 12] [507900010192] +08:33:56 [ 38] [ 6] [711691] +08:33:56 [ 39] [ 2] [00] +08:33:56 [ 41] [ 8] [01000100] +08:33:56 [ 49] [ 3] [418] +08:33:56 [ 54] [ 40] [2001418C0003147568282002418C000314756828] +08:33:56 ============================================================================ +08:33:56 Sending to : +08:33:56 ============================================================================ +08:33:56 + + +waiting on router queue for slot.... +08:33:57 ============================================================================ +08:33:57 Slot Id : <386> +08:33:57 Transaction Type : RESPONSE +08:33:57 Received From : +08:33:57 ============================================================================ +08:33:57 FNo. Len. Field Value +08:33:57 ============================================================================ +08:33:57 [ 1] [ 4] [0210] +08:33:57 [ 2] [ 16] [6213541000718067] +08:33:57 [ 3] [ 6] [012000] +08:33:57 [ 4] [ 12] [000100000000] +08:33:57 [ 7] [ 10] [0320084142] +08:33:57 [ 11] [ 6] [177312] +08:33:57 [ 12] [ 6] [084142] +08:33:57 [ 13] [ 4] [0320] +08:33:57 [ 15] [ 4] [0320] +08:33:57 [ 18] [ 4] [6011] +08:33:57 [ 32] [ 6] [220699] +08:33:57 [ 35] [ 32] [6213541000718067=491212011806485] +08:33:57 [ 37] [ 12] [507900010192] +08:33:57 [ 38] [ 6] [711691] +08:33:57 [ 39] [ 2] [00] +08:33:57 [ 41] [ 8] [01000100] +08:33:57 [ 49] [ 3] [418] +08:33:57 [ 54] [ 40] [2001418C0003147568282002418C000314756828] +08:33:57 ============================================================================ +08:33:57 Calculate Source COMM Id = 1 +08:33:57 ============================================================================ +08:33:57 + + +waiting on router queue for slot.... +08:33:57 ============================================================================ +08:33:57 Slot Id : <377> +08:33:57 Transaction Type : REQUEST +08:33:57 Received From : +08:33:57 ============================================================================ +08:33:57 FNo. Len. Field Value +08:33:57 ============================================================================ +08:33:57 [ 1] [ 4] [0200] +08:33:57 [ 2] [ 16] [6688990030002537] +08:33:57 [ 3] [ 6] [011000] +08:33:57 [ 4] [ 12] [000100000000] +08:33:57 [ 7] [ 10] [0320083354] +08:33:57 [ 11] [ 6] [685715] +08:33:57 [ 12] [ 6] [083354] +08:33:57 [ 13] [ 4] [0320] +08:33:57 [ 15] [ 4] [0320] +08:33:57 [ 18] [ 4] [6011] +08:33:57 [ 22] [ 3] [900] +08:33:57 [ 25] [ 2] [02] +08:33:57 [ 28] [ 9] [D00002000] +08:33:57 [ 32] [ 6] [621354] +08:33:57 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:33:57 [ 37] [ 12] [507904706780] +08:33:57 [ 41] [ 8] [18000900] +08:33:57 [ 42] [ 15] [NATIVE ] +08:33:57 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:33:57 [ 49] [ 3] [418] +08:33:57 [ 52] [ 16] [752B6104E86573C5] +08:33:57 ============================================================================ +08:33:57 + + +waiting on router queue for slot.... +08:33:57 Sending to : +08:33:57 ============================================================================ +08:33:57 Sending to : +08:33:57 ============================================================================ +08:33:58 ============================================================================ +08:33:58 Slot Id : <377> +08:33:58 Transaction Type : REQUEST +08:33:58 Received From : +08:33:58 ============================================================================ +08:33:58 FNo. Len. Field Value +08:33:58 ============================================================================ +08:33:58 [ 1] [ 4] [0200] +08:33:58 [ 2] [ 16] [6688990030002537] +08:33:58 [ 3] [ 6] [011000] +08:33:58 [ 4] [ 12] [000100000000] +08:33:58 [ 7] [ 10] [0320083354] +08:33:58 [ 11] [ 6] [685715] +08:33:58 [ 12] [ 6] [083354] +08:33:58 [ 13] [ 4] [0320] +08:33:58 [ 15] [ 4] [0320] +08:33:58 [ 18] [ 4] [6011] +08:33:58 [ 22] [ 3] [900] +08:33:58 [ 25] [ 2] [02] +08:33:58 [ 28] [ 9] [D00002000] +08:33:58 [ 32] [ 6] [621354] +08:33:58 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:33:58 [ 37] [ 12] [507904706780] +08:33:58 [ 41] [ 8] [18000900] +08:33:58 [ 42] [ 15] [NATIVE ] +08:33:58 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:33:58 [ 49] [ 3] [418] +08:33:58 [ 52] [ 16] [752B6104E86573C5] +08:33:58 ============================================================================ +08:33:58 + + +waiting on router queue for slot.... +08:33:58 Sending to : +08:33:58 ============================================================================ +08:33:58 ============================================================================ +08:33:58 Slot Id : <377> +08:33:58 Transaction Type : REQUEST +08:33:58 Received From : +08:33:58 ============================================================================ +08:33:58 FNo. Len. Field Value +08:33:58 ============================================================================ +08:33:58 [ 1] [ 4] [0200] +08:33:58 [ 2] [ 16] [6688990030002537] +08:33:58 [ 3] [ 6] [011000] +08:33:58 [ 4] [ 12] [000100000000] +08:33:58 [ 7] [ 10] [0320083354] +08:33:58 [ 11] [ 6] [685715] +08:33:58 [ 12] [ 6] [083354] +08:33:58 [ 13] [ 4] [0320] +08:33:58 [ 15] [ 4] [0320] +08:33:58 [ 18] [ 4] [6011] +08:33:58 [ 22] [ 3] [900] +08:33:58 [ 25] [ 2] [02] +08:33:58 [ 28] [ 9] [D00002000] +08:33:58 [ 32] [ 6] [621354] +08:33:58 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:33:58 [ 37] [ 12] [507904706780] +08:33:58 [ 41] [ 8] [18000900] +08:33:58 [ 42] [ 15] [NATIVE ] +08:33:58 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:33:58 [ 49] [ 3] [418] +08:33:58 [ 52] [ 16] [3B0E9D1F650AC498] +08:33:58 ============================================================================ +08:33:58 + + +waiting on router queue for slot.... +08:33:58 Sending to : <4> +08:33:58 ============================================================================ +08:33:59 ============================================================================ +08:33:59 Slot Id : <377> +08:33:59 Transaction Type : RESPONSE +08:33:59 Received From : +08:33:59 ============================================================================ +08:33:59 FNo. Len. Field Value +08:33:59 ============================================================================ +08:33:59 [ 1] [ 4] [0210] +08:33:59 [ 2] [ 16] [6688990030002537] +08:33:59 [ 3] [ 6] [011000] +08:33:59 [ 4] [ 12] [000100000000] +08:33:59 [ 11] [ 6] [685715] +08:33:59 [ 12] [ 6] [083354] +08:33:59 [ 15] [ 4] [0320] +08:33:59 [ 18] [ 4] [6011] +08:33:59 [ 32] [ 6] [621354] +08:33:59 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:33:59 [ 37] [ 12] [507904706780] +08:33:59 [ 38] [ 6] [778232] +08:33:59 [ 39] [ 2] [00] +08:33:59 [ 41] [ 8] [18000900] +08:33:59 [ 49] [ 3] [418] +08:33:59 [ 54] [ 20] [1002418C002537468956] +08:33:59 ============================================================================ +08:33:59 Sending to : +08:33:59 ============================================================================ +08:33:59 + + +waiting on router queue for slot.... +08:34:00 ============================================================================ +08:34:00 Slot Id : <377> +08:34:00 Transaction Type : RESPONSE +08:34:00 Received From : +08:34:00 ============================================================================ +08:34:00 FNo. Len. Field Value +08:34:00 ============================================================================ +08:34:00 [ 1] [ 4] [0210] +08:34:00 [ 2] [ 16] [6688990030002537] +08:34:00 [ 3] [ 6] [011000] +08:34:00 [ 4] [ 12] [000100000000] +08:34:00 [ 11] [ 6] [685715] +08:34:00 [ 12] [ 6] [083354] +08:34:00 [ 15] [ 4] [0320] +08:34:00 [ 18] [ 4] [6011] +08:34:00 [ 32] [ 6] [621354] +08:34:00 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:34:00 [ 37] [ 12] [507904706780] +08:34:00 [ 38] [ 6] [778232] +08:34:00 [ 39] [ 2] [00] +08:34:00 [ 41] [ 8] [18000900] +08:34:00 [ 49] [ 3] [418] +08:34:00 [ 54] [ 20] [1002418C002537468956] +08:34:00 ============================================================================ +08:34:00 Calculate Source COMM Id = 0 +08:34:00 ============================================================================ +08:34:00 + + +waiting on router queue for slot.... +08:34:04 ============================================================================ +08:34:04 Slot Id : <391> +08:34:04 Transaction Type : REQUEST +08:34:04 Received From : +08:34:04 ============================================================================ +08:34:04 FNo. Len. Field Value +08:34:04 ============================================================================ +08:34:04 [ 1] [ 4] [0200] +08:34:04 [ 2] [ 16] [6213541000287709] +08:34:04 [ 3] [ 6] [011000] +08:34:04 [ 4] [ 12] [000060000000] +08:34:04 [ 7] [ 10] [0320084151] +08:34:04 [ 11] [ 6] [251096] +08:34:04 [ 12] [ 6] [084151] +08:34:04 [ 13] [ 4] [0320] +08:34:04 [ 14] [ 4] [4912] +08:34:04 [ 15] [ 4] [0320] +08:34:04 [ 18] [ 4] [6011] +08:34:04 [ 22] [ 3] [900] +08:34:04 [ 25] [ 2] [02] +08:34:04 [ 28] [ 9] [D00002000] +08:34:04 [ 32] [ 6] [220699] +08:34:04 [ 35] [ 32] [6213541000287709=491212018770915] +08:34:04 [ 37] [ 12] [507900336126] +08:34:04 [ 41] [ 8] [01001900] +08:34:04 [ 42] [ 15] [APTRA ] +08:34:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:34:04 [ 49] [ 3] [418] +08:34:04 [ 52] [ 16] [1BAA46B33C4F9558] +08:34:04 ============================================================================ +08:34:04 + + +waiting on router queue for slot.... +08:34:04 Sending to : +08:34:04 ============================================================================ +08:34:04 Sending to : +08:34:04 ============================================================================ +08:34:04 ============================================================================ +08:34:04 Slot Id : <391> +08:34:04 Transaction Type : REQUEST +08:34:04 Received From : +08:34:04 ============================================================================ +08:34:04 FNo. Len. Field Value +08:34:04 ============================================================================ +08:34:04 [ 1] [ 4] [0200] +08:34:04 [ 2] [ 16] [6213541000287709] +08:34:04 [ 3] [ 6] [011000] +08:34:04 [ 4] [ 12] [000060000000] +08:34:04 [ 7] [ 10] [0320084151] +08:34:04 [ 11] [ 6] [251096] +08:34:04 [ 12] [ 6] [084151] +08:34:04 [ 13] [ 4] [0320] +08:34:04 [ 14] [ 4] [4912] +08:34:04 [ 15] [ 4] [0320] +08:34:04 [ 18] [ 4] [6011] +08:34:04 [ 22] [ 3] [900] +08:34:04 [ 25] [ 2] [02] +08:34:04 [ 28] [ 9] [D00002000] +08:34:04 [ 32] [ 6] [220699] +08:34:04 [ 35] [ 32] [6213541000287709=491212018770915] +08:34:04 [ 37] [ 12] [507900336126] +08:34:04 [ 41] [ 8] [01001900] +08:34:04 [ 42] [ 15] [APTRA ] +08:34:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:34:04 [ 49] [ 3] [418] +08:34:04 [ 52] [ 16] [1BAA46B33C4F9558] +08:34:04 ============================================================================ +08:34:04 + + +waiting on router queue for slot.... +08:34:04 Sending to : +08:34:04 ============================================================================ +08:34:04 ============================================================================ +08:34:04 Slot Id : <391> +08:34:04 Transaction Type : REQUEST +08:34:04 Received From : +08:34:04 ============================================================================ +08:34:04 FNo. Len. Field Value +08:34:04 ============================================================================ +08:34:04 [ 1] [ 4] [0200] +08:34:04 [ 2] [ 16] [6213541000287709] +08:34:04 [ 3] [ 6] [011000] +08:34:04 [ 4] [ 12] [000060000000] +08:34:04 [ 7] [ 10] [0320084151] +08:34:04 [ 11] [ 6] [251096] +08:34:04 [ 12] [ 6] [084151] +08:34:04 [ 13] [ 4] [0320] +08:34:04 [ 14] [ 4] [4912] +08:34:04 [ 15] [ 4] [0320] +08:34:04 [ 18] [ 4] [6011] +08:34:04 [ 22] [ 3] [900] +08:34:04 [ 25] [ 2] [02] +08:34:04 [ 28] [ 9] [D00002000] +08:34:04 [ 32] [ 6] [220699] +08:34:04 [ 35] [ 32] [6213541000287709=491212018770915] +08:34:04 [ 37] [ 12] [507900336126] +08:34:04 [ 41] [ 8] [01001900] +08:34:04 [ 42] [ 15] [APTRA ] +08:34:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:34:04 [ 49] [ 3] [418] +08:34:04 [ 52] [ 16] [F0C00F40FB134992] +08:34:04 ============================================================================ +08:34:04 + + +waiting on router queue for slot.... +08:34:04 Sending to : <0> +08:34:04 ============================================================================ +08:34:05 ============================================================================ +08:34:05 Slot Id : <391> +08:34:05 Transaction Type : RESPONSE +08:34:05 Received From : +08:34:05 ============================================================================ +08:34:05 FNo. Len. Field Value +08:34:05 ============================================================================ +08:34:05 [ 1] [ 4] [0210] +08:34:05 [ 2] [ 16] [6213541000287709] +08:34:05 [ 3] [ 6] [011000] +08:34:05 [ 4] [ 12] [000060000000] +08:34:05 [ 7] [ 10] [0320084151] +08:34:05 [ 11] [ 6] [251096] +08:34:05 [ 12] [ 6] [084151] +08:34:05 [ 13] [ 4] [0320] +08:34:05 [ 15] [ 4] [0320] +08:34:05 [ 18] [ 4] [6011] +08:34:05 [ 32] [ 6] [220699] +08:34:05 [ 35] [ 32] [6213541000287709=491212018770915] +08:34:05 [ 37] [ 12] [507900336126] +08:34:05 [ 38] [ 6] [849588] +08:34:05 [ 39] [ 2] [00] +08:34:05 [ 41] [ 8] [01001900] +08:34:05 [ 49] [ 3] [418] +08:34:05 [ 54] [ 40] [1001418C0000073445141002418C000007344514] +08:34:05 ============================================================================ +08:34:05 Sending to : +08:34:05 ============================================================================ +08:34:05 + + +waiting on router queue for slot.... +08:34:06 ============================================================================ +08:34:06 Slot Id : <391> +08:34:06 Transaction Type : RESPONSE +08:34:06 Received From : +08:34:06 ============================================================================ +08:34:06 FNo. Len. Field Value +08:34:06 ============================================================================ +08:34:06 [ 1] [ 4] [0210] +08:34:06 [ 2] [ 16] [6213541000287709] +08:34:06 [ 3] [ 6] [011000] +08:34:06 [ 4] [ 12] [000060000000] +08:34:06 [ 7] [ 10] [0320084151] +08:34:06 [ 11] [ 6] [251096] +08:34:06 [ 12] [ 6] [084151] +08:34:06 [ 13] [ 4] [0320] +08:34:06 [ 15] [ 4] [0320] +08:34:06 [ 18] [ 4] [6011] +08:34:06 [ 32] [ 6] [220699] +08:34:06 [ 35] [ 32] [6213541000287709=491212018770915] +08:34:06 [ 37] [ 12] [507900336126] +08:34:06 [ 38] [ 6] [849588] +08:34:06 [ 39] [ 2] [00] +08:34:06 [ 41] [ 8] [01001900] +08:34:06 [ 49] [ 3] [418] +08:34:06 [ 54] [ 40] [1001418C0000073445141002418C000007344514] +08:34:06 ============================================================================ +08:34:06 Calculate Source COMM Id = 1 +08:34:06 ============================================================================ +08:34:06 + + +waiting on router queue for slot.... +08:34:08 ============================================================================ +08:34:08 Slot Id : <443> +08:34:08 Transaction Type : REQUEST +08:34:08 Received From : +08:34:08 ============================================================================ +08:34:08 FNo. Len. Field Value +08:34:08 ============================================================================ +08:34:08 [ 1] [ 4] [0800] +08:34:08 [ 7] [ 10] [0320013316] +08:34:08 [ 11] [ 6] [155435] +08:34:08 [ 70] [ 3] [301] +08:34:08 ============================================================================ +08:34:08 + + +waiting on router queue for slot.... +08:34:08 Sending to : +08:34:08 ============================================================================ +08:34:08 ============================================================================ +08:34:08 Slot Id : <443> +08:34:08 Transaction Type : RESPONSE +08:34:08 Received From : +08:34:08 ============================================================================ +08:34:08 FNo. Len. Field Value +08:34:08 ============================================================================ +08:34:08 [ 1] [ 4] [0810] +08:34:08 [ 7] [ 10] [0320013316] +08:34:08 [ 11] [ 6] [155435] +08:34:08 [ 39] [ 2] [00] +08:34:08 [ 70] [ 3] [301] +08:34:08 ============================================================================ +08:34:08 Calculate Source COMM Id = 2 +08:34:08 ============================================================================ +08:34:08 + + +waiting on router queue for slot.... +08:34:10 ============================================================================ +08:34:10 Slot Id : <405> +08:34:10 Transaction Type : REQUEST +08:34:10 Received From : +08:34:10 ============================================================================ +08:34:10 FNo. Len. Field Value +08:34:10 ============================================================================ +08:34:10 [ 1] [ 4] [0800] +08:34:10 [ 2] [ 5] [02531] +08:34:10 [ 3] [ 6] [579088] +08:34:10 [ 7] [ 10] [0320013410] +08:34:10 [ 11] [ 6] [806909] +08:34:10 [ 15] [ 10] [0320013410] +08:34:10 [ 37] [ 11] [57908806909] +08:34:10 [ 70] [ 3] [001] +08:34:10 ============================================================================ +08:34:10 + + +waiting on router queue for slot.... +08:34:10 ============================================================================ +08:34:10 Slot Id : <405> +08:34:10 Transaction Type : RESPONSE +08:34:10 Received From : +08:34:10 ============================================================================ +08:34:10 FNo. Len. Field Value +08:34:10 ============================================================================ +08:34:10 [ 1] [ 4] [0810] +08:34:10 [ 7] [ 10] [0320013410] +08:34:10 [ 11] [ 6] [806909] +08:34:10 [ 15] [ 4] [0320] +08:34:10 [ 37] [ 12] [57908806909] +08:34:10 [ 39] [ 2] [00] +08:34:10 [ 70] [ 3] [001] +08:34:10 ============================================================================ +08:34:10 Sending to : +08:34:10 ============================================================================ +08:34:10 + + +waiting on router queue for slot.... +08:34:19 ============================================================================ +08:34:19 Slot Id : <446> +08:34:19 Transaction Type : REQUEST +08:34:19 Received From : +08:34:19 ============================================================================ +08:34:19 FNo. Len. Field Value +08:34:19 ============================================================================ +08:34:19 [ 1] [ 4] [0200] +08:34:19 [ 2] [ 16] [6688990602689505] +08:34:19 [ 3] [ 6] [010000] +08:34:19 [ 4] [ 12] [000010000000] +08:34:19 [ 7] [ 10] [0320083415] +08:34:19 [ 11] [ 6] [685800] +08:34:19 [ 12] [ 6] [083415] +08:34:19 [ 13] [ 4] [0320] +08:34:19 [ 15] [ 4] [0320] +08:34:19 [ 18] [ 4] [6011] +08:34:19 [ 22] [ 3] [900] +08:34:19 [ 25] [ 2] [02] +08:34:19 [ 28] [ 9] [D00002000] +08:34:19 [ 32] [ 6] [621354] +08:34:19 [ 35] [ 37] [6688990602689505=43100061950517300000] +08:34:19 [ 37] [ 12] [507904179567] +08:34:19 [ 41] [ 8] [20001200] +08:34:19 [ 42] [ 15] [NATIVE ] +08:34:19 [ 43] [ 40] [Meuang Khong Unit Khong LAO] +08:34:19 [ 49] [ 3] [418] +08:34:19 [ 52] [ 16] [6327E8EAD0DF057E] +08:34:19 ============================================================================ +08:34:19 + + +waiting on router queue for slot.... +08:34:19 Sending to : +08:34:19 ============================================================================ +08:34:19 Sending to : +08:34:19 ============================================================================ +08:34:19 ============================================================================ +08:34:19 Slot Id : <456> +08:34:19 Transaction Type : REQUEST +08:34:19 Received From : +08:34:19 ============================================================================ +08:34:19 FNo. Len. Field Value +08:34:19 ============================================================================ +08:34:19 [ 1] [ 4] [0800] +08:34:19 [ 7] [ 10] [0320013327] +08:34:19 [ 11] [ 6] [155436] +08:34:19 [ 70] [ 3] [301] +08:34:19 ============================================================================ +08:34:19 + + +waiting on router queue for slot.... +08:34:19 Sending to : +08:34:19 ============================================================================ +08:34:19 ============================================================================ +08:34:19 Slot Id : <456> +08:34:19 Transaction Type : RESPONSE +08:34:19 Received From : +08:34:19 ============================================================================ +08:34:19 FNo. Len. Field Value +08:34:19 ============================================================================ +08:34:19 [ 1] [ 4] [0810] +08:34:19 [ 7] [ 10] [0320013327] +08:34:19 [ 11] [ 6] [155436] +08:34:19 [ 39] [ 2] [00] +08:34:19 [ 70] [ 3] [301] +08:34:19 ============================================================================ +08:34:19 Calculate Source COMM Id = 2 +08:34:19 ============================================================================ +08:34:19 + + +waiting on router queue for slot.... +08:34:19 ============================================================================ +08:34:19 Slot Id : <446> +08:34:19 Transaction Type : REQUEST +08:34:19 Received From : +08:34:19 ============================================================================ +08:34:19 FNo. Len. Field Value +08:34:19 ============================================================================ +08:34:19 [ 1] [ 4] [0200] +08:34:19 [ 2] [ 16] [6688990602689505] +08:34:19 [ 3] [ 6] [010000] +08:34:19 [ 4] [ 12] [000010000000] +08:34:19 [ 7] [ 10] [0320083415] +08:34:19 [ 11] [ 6] [685800] +08:34:19 [ 12] [ 6] [083415] +08:34:19 [ 13] [ 4] [0320] +08:34:19 [ 15] [ 4] [0320] +08:34:19 [ 18] [ 4] [6011] +08:34:19 [ 22] [ 3] [900] +08:34:19 [ 25] [ 2] [02] +08:34:19 [ 28] [ 9] [D00002000] +08:34:19 [ 32] [ 6] [621354] +08:34:19 [ 35] [ 37] [6688990602689505=43100061950517300000] +08:34:19 [ 37] [ 12] [507904179567] +08:34:19 [ 41] [ 8] [20001200] +08:34:19 [ 42] [ 15] [NATIVE ] +08:34:19 [ 43] [ 40] [Meuang Khong Unit Khong LAO] +08:34:19 [ 49] [ 3] [418] +08:34:19 [ 52] [ 16] [6327E8EAD0DF057E] +08:34:19 ============================================================================ +08:34:19 + + +waiting on router queue for slot.... +08:34:19 Sending to : +08:34:19 ============================================================================ +08:34:19 ============================================================================ +08:34:19 Slot Id : <446> +08:34:19 Transaction Type : REQUEST +08:34:19 Received From : +08:34:19 ============================================================================ +08:34:19 FNo. Len. Field Value +08:34:19 ============================================================================ +08:34:19 [ 1] [ 4] [0200] +08:34:19 [ 2] [ 16] [6688990602689505] +08:34:19 [ 3] [ 6] [010000] +08:34:19 [ 4] [ 12] [000010000000] +08:34:19 [ 7] [ 10] [0320083415] +08:34:19 [ 11] [ 6] [685800] +08:34:19 [ 12] [ 6] [083415] +08:34:19 [ 13] [ 4] [0320] +08:34:19 [ 15] [ 4] [0320] +08:34:19 [ 18] [ 4] [6011] +08:34:19 [ 22] [ 3] [900] +08:34:19 [ 25] [ 2] [02] +08:34:19 [ 28] [ 9] [D00002000] +08:34:19 [ 32] [ 6] [621354] +08:34:19 [ 35] [ 37] [6688990602689505=43100061950517300000] +08:34:19 [ 37] [ 12] [507904179567] +08:34:19 [ 41] [ 8] [20001200] +08:34:19 [ 42] [ 15] [NATIVE ] +08:34:19 [ 43] [ 40] [Meuang Khong Unit Khong LAO] +08:34:19 [ 49] [ 3] [418] +08:34:19 [ 52] [ 16] [AB44ED701AEE6233] +08:34:19 ============================================================================ +08:34:19 + + +waiting on router queue for slot.... +08:34:19 Sending to : <4> +08:34:19 ============================================================================ +08:34:20 ============================================================================ +08:34:20 Slot Id : <446> +08:34:20 Transaction Type : RESPONSE +08:34:20 Received From : +08:34:20 ============================================================================ +08:34:20 FNo. Len. Field Value +08:34:20 ============================================================================ +08:34:20 [ 1] [ 4] [0210] +08:34:20 [ 2] [ 16] [6688990602689505] +08:34:20 [ 3] [ 6] [010000] +08:34:20 [ 4] [ 12] [000010000000] +08:34:20 [ 11] [ 6] [685800] +08:34:20 [ 12] [ 6] [083415] +08:34:20 [ 15] [ 4] [0320] +08:34:20 [ 18] [ 4] [6011] +08:34:20 [ 32] [ 6] [621354] +08:34:20 [ 35] [ 37] [6688990602689505=43100061950517300000] +08:34:20 [ 37] [ 12] [507904179567] +08:34:20 [ 38] [ 6] [068309] +08:34:20 [ 39] [ 2] [00] +08:34:20 [ 41] [ 8] [20001200] +08:34:20 [ 49] [ 3] [418] +08:34:20 [ 54] [ 20] [0002418C000222052715] +08:34:20 ============================================================================ +08:34:20 Sending to : +08:34:20 ============================================================================ +08:34:20 + + +waiting on router queue for slot.... +08:34:22 ============================================================================ +08:34:22 Slot Id : <446> +08:34:22 Transaction Type : RESPONSE +08:34:22 Received From : +08:34:22 ============================================================================ +08:34:22 FNo. Len. Field Value +08:34:22 ============================================================================ +08:34:22 [ 1] [ 4] [0210] +08:34:22 [ 2] [ 16] [6688990602689505] +08:34:22 [ 3] [ 6] [010000] +08:34:22 [ 4] [ 12] [000010000000] +08:34:22 [ 11] [ 6] [685800] +08:34:22 [ 12] [ 6] [083415] +08:34:22 [ 15] [ 4] [0320] +08:34:22 [ 18] [ 4] [6011] +08:34:22 [ 32] [ 6] [621354] +08:34:22 [ 35] [ 37] [6688990602689505=43100061950517300000] +08:34:22 [ 37] [ 12] [507904179567] +08:34:22 [ 38] [ 6] [068309] +08:34:22 [ 39] [ 2] [00] +08:34:22 [ 41] [ 8] [20001200] +08:34:22 [ 49] [ 3] [418] +08:34:22 [ 54] [ 20] [0002418C000222052715] +08:34:22 ============================================================================ +08:34:22 Calculate Source COMM Id = 0 +08:34:22 ============================================================================ +08:34:22 + + +waiting on router queue for slot.... +08:34:25 ============================================================================ +08:34:25 Slot Id : <435> +08:34:25 Transaction Type : REQUEST +08:34:25 Received From : +08:34:25 ============================================================================ +08:34:25 FNo. Len. Field Value +08:34:25 ============================================================================ +08:34:25 [ 1] [ 4] [0200] +08:34:25 [ 2] [ 16] [6688990107135103] +08:34:25 [ 3] [ 6] [300000] +08:34:25 [ 4] [ 12] [000000000000] +08:34:25 [ 7] [ 10] [0320083421] +08:34:25 [ 11] [ 6] [685821] +08:34:25 [ 12] [ 6] [083421] +08:34:25 [ 13] [ 4] [0320] +08:34:25 [ 15] [ 4] [0320] +08:34:25 [ 18] [ 4] [6011] +08:34:25 [ 22] [ 3] [900] +08:34:25 [ 25] [ 2] [02] +08:34:25 [ 28] [ 9] [D00000000] +08:34:25 [ 32] [ 6] [621354] +08:34:25 [ 35] [ 37] [6688990107135103=44021231510390000000] +08:34:25 [ 37] [ 12] [507903344922] +08:34:25 [ 41] [ 8] [13001400] +08:34:25 [ 42] [ 15] [NATIVE ] +08:34:25 [ 43] [ 40] [Kham Unit Kham LAO] +08:34:25 [ 49] [ 3] [418] +08:34:25 [ 52] [ 16] [7F1A99060A71CEAE] +08:34:25 ============================================================================ +08:34:25 + + +waiting on router queue for slot.... +08:34:25 Sending to : +08:34:25 ============================================================================ +08:34:25 Sending to : +08:34:25 ============================================================================ +08:34:25 ============================================================================ +08:34:25 Slot Id : <435> +08:34:25 Transaction Type : REQUEST +08:34:25 Received From : +08:34:25 ============================================================================ +08:34:25 FNo. Len. Field Value +08:34:25 ============================================================================ +08:34:25 [ 1] [ 4] [0200] +08:34:25 [ 2] [ 16] [6688990107135103] +08:34:25 [ 3] [ 6] [300000] +08:34:25 [ 4] [ 12] [000000000000] +08:34:25 [ 7] [ 10] [0320083421] +08:34:25 [ 11] [ 6] [685821] +08:34:25 [ 12] [ 6] [083421] +08:34:25 [ 13] [ 4] [0320] +08:34:25 [ 15] [ 4] [0320] +08:34:25 [ 18] [ 4] [6011] +08:34:25 [ 22] [ 3] [900] +08:34:25 [ 25] [ 2] [02] +08:34:25 [ 28] [ 9] [D00000000] +08:34:25 [ 32] [ 6] [621354] +08:34:25 [ 35] [ 37] [6688990107135103=44021231510390000000] +08:34:25 [ 37] [ 12] [507903344922] +08:34:25 [ 41] [ 8] [13001400] +08:34:25 [ 42] [ 15] [NATIVE ] +08:34:25 [ 43] [ 40] [Kham Unit Kham LAO] +08:34:25 [ 49] [ 3] [418] +08:34:25 [ 52] [ 16] [7F1A99060A71CEAE] +08:34:25 ============================================================================ +08:34:25 + + +waiting on router queue for slot.... +08:34:25 Sending to : +08:34:25 ============================================================================ +08:34:25 ============================================================================ +08:34:25 Slot Id : <435> +08:34:25 Transaction Type : REQUEST +08:34:25 Received From : +08:34:25 ============================================================================ +08:34:25 FNo. Len. Field Value +08:34:25 ============================================================================ +08:34:25 [ 1] [ 4] [0200] +08:34:25 [ 2] [ 16] [6688990107135103] +08:34:25 [ 3] [ 6] [300000] +08:34:25 [ 4] [ 12] [000000000000] +08:34:25 [ 7] [ 10] [0320083421] +08:34:25 [ 11] [ 6] [685821] +08:34:25 [ 12] [ 6] [083421] +08:34:25 [ 13] [ 4] [0320] +08:34:25 [ 15] [ 4] [0320] +08:34:25 [ 18] [ 4] [6011] +08:34:25 [ 22] [ 3] [900] +08:34:25 [ 25] [ 2] [02] +08:34:25 [ 28] [ 9] [D00000000] +08:34:25 [ 32] [ 6] [621354] +08:34:25 [ 35] [ 37] [6688990107135103=44021231510390000000] +08:34:25 [ 37] [ 12] [507903344922] +08:34:25 [ 41] [ 8] [13001400] +08:34:25 [ 42] [ 15] [NATIVE ] +08:34:25 [ 43] [ 40] [Kham Unit Kham LAO] +08:34:25 [ 49] [ 3] [418] +08:34:25 [ 52] [ 16] [A2BC92AAE13B9441] +08:34:25 ============================================================================ +08:34:25 + + +waiting on router queue for slot.... +08:34:25 Sending to : <4> +08:34:25 ============================================================================ +08:34:27 ============================================================================ +08:34:27 Slot Id : <435> +08:34:27 Transaction Type : RESPONSE +08:34:27 Received From : +08:34:27 ============================================================================ +08:34:27 FNo. Len. Field Value +08:34:27 ============================================================================ +08:34:27 [ 1] [ 4] [0210] +08:34:27 [ 2] [ 16] [6688990107135103] +08:34:27 [ 3] [ 6] [300000] +08:34:27 [ 4] [ 12] [000000000000] +08:34:27 [ 11] [ 6] [685821] +08:34:27 [ 12] [ 6] [083421] +08:34:27 [ 15] [ 4] [0320] +08:34:27 [ 18] [ 4] [6011] +08:34:27 [ 32] [ 6] [621354] +08:34:27 [ 35] [ 37] [6688990107135103=44021231510390000000] +08:34:27 [ 37] [ 12] [507903344922] +08:34:27 [ 38] [ 6] [357563] +08:34:27 [ 39] [ 2] [00] +08:34:27 [ 41] [ 8] [13001400] +08:34:27 [ 49] [ 3] [418] +08:34:27 [ 54] [ 20] [0002418C000069595025] +08:34:27 ============================================================================ +08:34:27 Sending to : +08:34:27 ============================================================================ +08:34:27 + + +waiting on router queue for slot.... +08:34:28 ============================================================================ +08:34:28 Slot Id : <435> +08:34:28 Transaction Type : RESPONSE +08:34:28 Received From : +08:34:28 ============================================================================ +08:34:28 FNo. Len. Field Value +08:34:28 ============================================================================ +08:34:28 [ 1] [ 4] [0210] +08:34:28 [ 2] [ 16] [6688990107135103] +08:34:28 [ 3] [ 6] [300000] +08:34:28 [ 4] [ 12] [000000000000] +08:34:28 [ 11] [ 6] [685821] +08:34:28 [ 12] [ 6] [083421] +08:34:28 [ 15] [ 4] [0320] +08:34:28 [ 18] [ 4] [6011] +08:34:28 [ 32] [ 6] [621354] +08:34:28 [ 35] [ 37] [6688990107135103=44021231510390000000] +08:34:28 [ 37] [ 12] [507903344922] +08:34:28 [ 38] [ 6] [357563] +08:34:28 [ 39] [ 2] [00] +08:34:28 [ 41] [ 8] [13001400] +08:34:28 [ 49] [ 3] [418] +08:34:28 [ 54] [ 20] [0002418C000069595025] +08:34:28 ============================================================================ +08:34:28 Calculate Source COMM Id = 0 +08:34:28 ============================================================================ +08:34:28 + + +waiting on router queue for slot.... +08:34:30 ============================================================================ +08:34:30 Slot Id : <429> +08:34:30 Transaction Type : REQUEST +08:34:30 Received From : +08:34:30 ============================================================================ +08:34:30 FNo. Len. Field Value +08:34:30 ============================================================================ +08:34:30 [ 1] [ 4] [0800] +08:34:30 [ 7] [ 10] [0320013338] +08:34:30 [ 11] [ 6] [155437] +08:34:30 [ 70] [ 3] [301] +08:34:30 ============================================================================ +08:34:30 + + +waiting on router queue for slot.... +08:34:30 Sending to : +08:34:30 ============================================================================ +08:34:30 ============================================================================ +08:34:30 Slot Id : <429> +08:34:30 Transaction Type : RESPONSE +08:34:30 Received From : +08:34:30 ============================================================================ +08:34:30 FNo. Len. Field Value +08:34:30 ============================================================================ +08:34:30 [ 1] [ 4] [0810] +08:34:30 [ 7] [ 10] [0320013338] +08:34:30 [ 11] [ 6] [155437] +08:34:30 [ 39] [ 2] [00] +08:34:30 [ 70] [ 3] [301] +08:34:30 ============================================================================ +08:34:30 Calculate Source COMM Id = 2 +08:34:30 ============================================================================ +08:34:30 + + +waiting on router queue for slot.... +08:34:39 ============================================================================ +08:34:39 Slot Id : <404> +08:34:39 Transaction Type : REQUEST +08:34:39 Received From : +08:34:39 ============================================================================ +08:34:39 FNo. Len. Field Value +08:34:39 ============================================================================ +08:34:39 [ 1] [ 4] [0200] +08:34:39 [ 2] [ 16] [6213545000331714] +08:34:39 [ 3] [ 6] [010000] +08:34:39 [ 4] [ 12] [000002000000] +08:34:39 [ 7] [ 10] [0320083231] +08:34:39 [ 11] [ 6] [933225] +08:34:39 [ 12] [ 6] [083231] +08:34:39 [ 13] [ 4] [0320] +08:34:39 [ 15] [ 4] [0320] +08:34:39 [ 18] [ 4] [6011] +08:34:39 [ 19] [ 3] [418] +08:34:39 [ 22] [ 3] [021] +08:34:39 [ 25] [ 2] [01] +08:34:39 [ 28] [ 9] [D00002000] +08:34:39 [ 32] [ 6] [668899] +08:34:39 [ 35] [ 32] [6213545000331714=491212013171001] +08:34:39 [ 37] [ 12] [507901391775] +08:34:39 [ 41] [ 8] [03210002] +08:34:39 [ 42] [ 15] [APT ] +08:34:39 [ 43] [ 40] [ VANGVIENG2 PHONEHONG LAO] +08:34:39 [ 49] [ 3] [418] +08:34:39 [ 52] [ 16] [45EEA5DC9410E1DD] +08:34:39 ============================================================================ +08:34:39 + + +waiting on router queue for slot.... +08:34:39 Sending to : +08:34:39 ============================================================================ +08:34:39 Sending to : +08:34:39 ============================================================================ +08:34:40 ============================================================================ +08:34:40 Slot Id : <404> +08:34:40 Transaction Type : REQUEST +08:34:40 Received From : +08:34:40 ============================================================================ +08:34:40 FNo. Len. Field Value +08:34:40 ============================================================================ +08:34:40 [ 1] [ 4] [0200] +08:34:40 [ 2] [ 16] [6213545000331714] +08:34:40 [ 3] [ 6] [010000] +08:34:40 [ 4] [ 12] [000002000000] +08:34:40 [ 7] [ 10] [0320083231] +08:34:40 [ 11] [ 6] [933225] +08:34:40 [ 12] [ 6] [083231] +08:34:40 [ 13] [ 4] [0320] +08:34:40 [ 15] [ 4] [0320] +08:34:40 [ 18] [ 4] [6011] +08:34:40 [ 19] [ 3] [418] +08:34:40 [ 22] [ 3] [021] +08:34:40 [ 25] [ 2] [01] +08:34:40 [ 28] [ 9] [D00002000] +08:34:40 [ 32] [ 6] [668899] +08:34:40 [ 35] [ 32] [6213545000331714=491212013171001] +08:34:40 [ 37] [ 12] [507901391775] +08:34:40 [ 41] [ 8] [03210002] +08:34:40 [ 42] [ 15] [APT ] +08:34:40 [ 43] [ 40] [ VANGVIENG2 PHONEHONG LAO] +08:34:40 [ 49] [ 3] [418] +08:34:40 [ 52] [ 16] [45EEA5DC9410E1DD] +08:34:40 ============================================================================ +08:34:40 + + +waiting on router queue for slot.... +08:34:40 Sending to : +08:34:40 ============================================================================ +08:34:40 ============================================================================ +08:34:40 Slot Id : <404> +08:34:40 Transaction Type : REQUEST +08:34:40 Received From : +08:34:40 ============================================================================ +08:34:40 FNo. Len. Field Value +08:34:40 ============================================================================ +08:34:40 [ 1] [ 4] [0200] +08:34:40 [ 2] [ 16] [6213545000331714] +08:34:40 [ 3] [ 6] [010000] +08:34:40 [ 4] [ 12] [000002000000] +08:34:40 [ 7] [ 10] [0320083231] +08:34:40 [ 11] [ 6] [933225] +08:34:40 [ 12] [ 6] [083231] +08:34:40 [ 13] [ 4] [0320] +08:34:40 [ 15] [ 4] [0320] +08:34:40 [ 18] [ 4] [6011] +08:34:40 [ 19] [ 3] [418] +08:34:40 [ 22] [ 3] [021] +08:34:40 [ 25] [ 2] [01] +08:34:40 [ 28] [ 9] [D00002000] +08:34:40 [ 32] [ 6] [668899] +08:34:40 [ 35] [ 32] [6213545000331714=491212013171001] +08:34:40 [ 37] [ 12] [507901391775] +08:34:40 [ 41] [ 8] [03210002] +08:34:40 [ 42] [ 15] [APT ] +08:34:40 [ 43] [ 40] [ VANGVIENG2 PHONEHONG LAO] +08:34:40 [ 49] [ 3] [418] +08:34:40 [ 52] [ 16] [068A51D3FE27154A] +08:34:40 ============================================================================ +08:34:40 + + +waiting on router queue for slot.... +08:34:40 Sending to : <0> +08:34:40 ============================================================================ +08:34:40 ============================================================================ +08:34:40 Slot Id : <404> +08:34:40 Transaction Type : RESPONSE +08:34:40 Received From : +08:34:40 ============================================================================ +08:34:40 FNo. Len. Field Value +08:34:40 ============================================================================ +08:34:40 [ 1] [ 4] [0210] +08:34:40 [ 2] [ 16] [6213545000331714] +08:34:40 [ 3] [ 6] [010000] +08:34:40 [ 4] [ 12] [000002000000] +08:34:40 [ 7] [ 10] [0320083231] +08:34:40 [ 11] [ 6] [933225] +08:34:40 [ 12] [ 6] [083231] +08:34:40 [ 13] [ 4] [0320] +08:34:40 [ 15] [ 4] [0320] +08:34:40 [ 18] [ 4] [6011] +08:34:40 [ 19] [ 3] [418] +08:34:40 [ 32] [ 6] [668899] +08:34:40 [ 35] [ 32] [6213545000331714=491212013171001] +08:34:40 [ 37] [ 12] [507901391775] +08:34:40 [ 38] [ 6] [262834] +08:34:40 [ 39] [ 2] [00] +08:34:40 [ 41] [ 8] [03210002] +08:34:40 [ 49] [ 3] [418] +08:34:40 [ 54] [ 40] [0001418C0030239303230002418C003023930323] +08:34:40 ============================================================================ +08:34:40 Sending to : +08:34:40 ============================================================================ +08:34:40 + + +waiting on router queue for slot.... +08:34:41 ============================================================================ +08:34:41 Slot Id : <424> +08:34:41 Transaction Type : REQUEST +08:34:41 Received From : +08:34:41 ============================================================================ +08:34:41 FNo. Len. Field Value +08:34:41 ============================================================================ +08:34:41 [ 1] [ 4] [0800] +08:34:41 [ 7] [ 10] [0320013349] +08:34:41 [ 11] [ 6] [155438] +08:34:41 [ 70] [ 3] [301] +08:34:41 ============================================================================ +08:34:41 + + +waiting on router queue for slot.... +08:34:41 Sending to : +08:34:41 ============================================================================ +08:34:41 ============================================================================ +08:34:41 Slot Id : <424> +08:34:41 Transaction Type : RESPONSE +08:34:41 Received From : +08:34:41 ============================================================================ +08:34:41 FNo. Len. Field Value +08:34:41 ============================================================================ +08:34:41 [ 1] [ 4] [0810] +08:34:41 [ 7] [ 10] [0320013349] +08:34:41 [ 11] [ 6] [155438] +08:34:41 [ 39] [ 2] [00] +08:34:41 [ 70] [ 3] [301] +08:34:41 ============================================================================ +08:34:41 Calculate Source COMM Id = 2 +08:34:41 ============================================================================ +08:34:41 + + +waiting on router queue for slot.... +08:34:41 ============================================================================ +08:34:41 Slot Id : <445> +08:34:41 Transaction Type : REQUEST +08:34:41 Received From : +08:34:41 ============================================================================ +08:34:41 FNo. Len. Field Value +08:34:41 ============================================================================ +08:34:41 [ 1] [ 4] [0800] +08:34:41 [ 7] [ 10] [0320154630] +08:34:41 [ 11] [ 6] [084630] +08:34:41 [ 37] [ 12] [57908084630] +08:34:41 [ 70] [ 3] [301] +08:34:41 ============================================================================ +08:34:41 + + +waiting on router queue for slot.... +08:34:41 Sending to : +08:34:41 ============================================================================ +08:34:41 ============================================================================ +08:34:41 Slot Id : <445> +08:34:41 Transaction Type : RESPONSE +08:34:41 Received From : +08:34:41 ============================================================================ +08:34:41 FNo. Len. Field Value +08:34:41 ============================================================================ +08:34:41 [ 1] [ 4] [0810] +08:34:41 [ 7] [ 10] [0320154630] +08:34:41 [ 11] [ 6] [084630] +08:34:41 [ 37] [ 12] [579080846300] +08:34:41 [ 39] [ 2] [00] +08:34:41 [ 70] [ 3] [810] +08:34:41 ============================================================================ +08:34:41 Calculate Source COMM Id = 6 +08:34:41 ============================================================================ +08:34:41 + + +waiting on router queue for slot.... +08:34:42 ============================================================================ +08:34:42 Slot Id : <404> +08:34:42 Transaction Type : RESPONSE +08:34:42 Received From : +08:34:42 ============================================================================ +08:34:42 FNo. Len. Field Value +08:34:42 ============================================================================ +08:34:42 [ 1] [ 4] [0210] +08:34:42 [ 2] [ 16] [6213545000331714] +08:34:42 [ 3] [ 6] [010000] +08:34:42 [ 4] [ 12] [000002000000] +08:34:42 [ 7] [ 10] [0320083231] +08:34:42 [ 11] [ 6] [933225] +08:34:42 [ 12] [ 6] [083231] +08:34:42 [ 13] [ 4] [0320] +08:34:42 [ 15] [ 4] [0320] +08:34:42 [ 18] [ 4] [6011] +08:34:42 [ 19] [ 3] [418] +08:34:42 [ 32] [ 6] [668899] +08:34:42 [ 35] [ 32] [6213545000331714=491212013171001] +08:34:42 [ 37] [ 12] [507901391775] +08:34:42 [ 38] [ 6] [262834] +08:34:42 [ 39] [ 2] [00] +08:34:42 [ 41] [ 8] [03210002] +08:34:42 [ 49] [ 3] [418] +08:34:42 [ 54] [ 40] [0001418C0030239303230002418C003023930323] +08:34:42 ============================================================================ +08:34:42 Calculate Source COMM Id = 4 +08:34:42 ============================================================================ +08:34:42 + + +waiting on router queue for slot.... +08:34:47 ============================================================================ +08:34:47 Slot Id : <442> +08:34:47 Transaction Type : REQUEST +08:34:47 Received From : +08:34:47 ============================================================================ +08:34:47 FNo. Len. Field Value +08:34:47 ============================================================================ +08:34:47 [ 1] [ 4] [0200] +08:34:47 [ 2] [ 16] [6688990030002537] +08:34:47 [ 3] [ 6] [011000] +08:34:47 [ 4] [ 12] [000100000000] +08:34:47 [ 7] [ 10] [0320083444] +08:34:47 [ 11] [ 6] [685920] +08:34:47 [ 12] [ 6] [083444] +08:34:47 [ 13] [ 4] [0320] +08:34:47 [ 15] [ 4] [0320] +08:34:47 [ 18] [ 4] [6011] +08:34:47 [ 22] [ 3] [900] +08:34:47 [ 25] [ 2] [02] +08:34:47 [ 28] [ 9] [D00002000] +08:34:47 [ 32] [ 6] [621354] +08:34:47 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:34:47 [ 37] [ 12] [507904706782] +08:34:47 [ 41] [ 8] [18000900] +08:34:47 [ 42] [ 15] [NATIVE ] +08:34:47 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:34:47 [ 49] [ 3] [418] +08:34:47 [ 52] [ 16] [752B6104E86573C5] +08:34:47 ============================================================================ +08:34:47 + + +waiting on router queue for slot.... +08:34:47 Sending to : +08:34:47 ============================================================================ +08:34:47 Sending to : +08:34:47 ============================================================================ +08:34:48 ============================================================================ +08:34:48 Slot Id : <442> +08:34:48 Transaction Type : REQUEST +08:34:48 Received From : +08:34:48 ============================================================================ +08:34:48 FNo. Len. Field Value +08:34:48 ============================================================================ +08:34:48 [ 1] [ 4] [0200] +08:34:48 [ 2] [ 16] [6688990030002537] +08:34:48 [ 3] [ 6] [011000] +08:34:48 [ 4] [ 12] [000100000000] +08:34:48 [ 7] [ 10] [0320083444] +08:34:48 [ 11] [ 6] [685920] +08:34:48 [ 12] [ 6] [083444] +08:34:48 [ 13] [ 4] [0320] +08:34:48 [ 15] [ 4] [0320] +08:34:48 [ 18] [ 4] [6011] +08:34:48 [ 22] [ 3] [900] +08:34:48 [ 25] [ 2] [02] +08:34:48 [ 28] [ 9] [D00002000] +08:34:48 [ 32] [ 6] [621354] +08:34:48 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:34:48 [ 37] [ 12] [507904706782] +08:34:48 [ 41] [ 8] [18000900] +08:34:48 [ 42] [ 15] [NATIVE ] +08:34:48 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:34:48 [ 49] [ 3] [418] +08:34:48 [ 52] [ 16] [752B6104E86573C5] +08:34:48 ============================================================================ +08:34:48 + + +waiting on router queue for slot.... +08:34:48 Sending to : +08:34:48 ============================================================================ +08:34:48 ============================================================================ +08:34:48 Slot Id : <442> +08:34:48 Transaction Type : REQUEST +08:34:48 Received From : +08:34:48 ============================================================================ +08:34:48 FNo. Len. Field Value +08:34:48 ============================================================================ +08:34:48 [ 1] [ 4] [0200] +08:34:48 [ 2] [ 16] [6688990030002537] +08:34:48 [ 3] [ 6] [011000] +08:34:48 [ 4] [ 12] [000100000000] +08:34:48 [ 7] [ 10] [0320083444] +08:34:48 [ 11] [ 6] [685920] +08:34:48 [ 12] [ 6] [083444] +08:34:48 [ 13] [ 4] [0320] +08:34:48 [ 15] [ 4] [0320] +08:34:48 [ 18] [ 4] [6011] +08:34:48 [ 22] [ 3] [900] +08:34:48 [ 25] [ 2] [02] +08:34:48 [ 28] [ 9] [D00002000] +08:34:48 [ 32] [ 6] [621354] +08:34:48 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:34:48 [ 37] [ 12] [507904706782] +08:34:48 [ 41] [ 8] [18000900] +08:34:48 [ 42] [ 15] [NATIVE ] +08:34:48 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:34:48 [ 49] [ 3] [418] +08:34:48 [ 52] [ 16] [3B0E9D1F650AC498] +08:34:48 ============================================================================ +08:34:48 + + +waiting on router queue for slot.... +08:34:48 Sending to : <4> +08:34:48 ============================================================================ +08:34:49 ============================================================================ +08:34:49 Slot Id : <442> +08:34:49 Transaction Type : RESPONSE +08:34:49 Received From : +08:34:49 ============================================================================ +08:34:49 FNo. Len. Field Value +08:34:49 ============================================================================ +08:34:49 [ 1] [ 4] [0210] +08:34:49 [ 2] [ 16] [6688990030002537] +08:34:49 [ 3] [ 6] [011000] +08:34:49 [ 4] [ 12] [000100000000] +08:34:49 [ 11] [ 6] [685920] +08:34:49 [ 12] [ 6] [083444] +08:34:49 [ 15] [ 4] [0320] +08:34:49 [ 18] [ 4] [6011] +08:34:49 [ 32] [ 6] [621354] +08:34:49 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:34:49 [ 37] [ 12] [507904706782] +08:34:49 [ 38] [ 6] [663027] +08:34:49 [ 39] [ 2] [00] +08:34:49 [ 41] [ 8] [18000900] +08:34:49 [ 49] [ 3] [418] +08:34:49 [ 54] [ 20] [1002418C002437268956] +08:34:49 ============================================================================ +08:34:49 Sending to : +08:34:49 ============================================================================ +08:34:49 + + +waiting on router queue for slot.... +08:34:50 ============================================================================ +08:34:50 Slot Id : <442> +08:34:50 Transaction Type : RESPONSE +08:34:50 Received From : +08:34:50 ============================================================================ +08:34:50 FNo. Len. Field Value +08:34:50 ============================================================================ +08:34:50 [ 1] [ 4] [0210] +08:34:50 [ 2] [ 16] [6688990030002537] +08:34:50 [ 3] [ 6] [011000] +08:34:50 [ 4] [ 12] [000100000000] +08:34:50 [ 11] [ 6] [685920] +08:34:50 [ 12] [ 6] [083444] +08:34:50 [ 15] [ 4] [0320] +08:34:50 [ 18] [ 4] [6011] +08:34:50 [ 32] [ 6] [621354] +08:34:50 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:34:50 [ 37] [ 12] [507904706782] +08:34:50 [ 38] [ 6] [663027] +08:34:50 [ 39] [ 2] [00] +08:34:50 [ 41] [ 8] [18000900] +08:34:50 [ 49] [ 3] [418] +08:34:50 [ 54] [ 20] [1002418C002437268956] +08:34:50 ============================================================================ +08:34:50 Calculate Source COMM Id = 0 +08:34:50 ============================================================================ +08:34:50 + + +waiting on router queue for slot.... +08:34:53 ============================================================================ +08:34:53 Slot Id : <438> +08:34:53 Transaction Type : REQUEST +08:34:53 Received From : +08:34:53 ============================================================================ +08:34:53 FNo. Len. Field Value +08:34:53 ============================================================================ +08:34:53 [ 1] [ 4] [0800] +08:34:53 [ 7] [ 10] [0320013359] +08:34:53 [ 11] [ 6] [155439] +08:34:53 [ 70] [ 3] [301] +08:34:53 ============================================================================ +08:34:53 + + +waiting on router queue for slot.... +08:34:53 Sending to : +08:34:53 ============================================================================ +08:34:53 ============================================================================ +08:34:53 Slot Id : <438> +08:34:53 Transaction Type : RESPONSE +08:34:53 Received From : +08:34:53 ============================================================================ +08:34:53 FNo. Len. Field Value +08:34:53 ============================================================================ +08:34:53 [ 1] [ 4] [0810] +08:34:53 [ 7] [ 10] [0320013359] +08:34:53 [ 11] [ 6] [155439] +08:34:53 [ 39] [ 2] [00] +08:34:53 [ 70] [ 3] [301] +08:34:53 ============================================================================ +08:34:53 Calculate Source COMM Id = 2 +08:34:53 ============================================================================ +08:34:53 + + +waiting on router queue for slot.... +08:34:54 ============================================================================ +08:34:54 Slot Id : <434> +08:34:54 Transaction Type : REQUEST +08:34:54 Received From : +08:34:54 ============================================================================ +08:34:54 FNo. Len. Field Value +08:34:54 ============================================================================ +08:34:54 [ 1] [ 4] [0800] +08:34:54 [ 7] [ 10] [0320014242] +08:34:54 [ 11] [ 6] [039419] +08:34:54 [ 37] [ 12] [57908039419] +08:34:54 [ 70] [ 3] [301] +08:34:54 ============================================================================ +08:34:54 + + +waiting on router queue for slot.... +08:34:54 Sending to : +08:34:54 ============================================================================ +08:34:54 ============================================================================ +08:34:54 Slot Id : <434> +08:34:54 Transaction Type : RESPONSE +08:34:54 Received From : +08:34:54 ============================================================================ +08:34:54 FNo. Len. Field Value +08:34:54 ============================================================================ +08:34:54 [ 1] [ 4] [0810] +08:34:54 [ 7] [ 10] [0320014242] +08:34:54 [ 11] [ 6] [039419] +08:34:54 [ 37] [ 12] [579080394190] +08:34:54 [ 39] [ 2] [00] +08:34:54 [ 70] [ 3] [810] +08:34:54 ============================================================================ +08:34:54 Calculate Source COMM Id = 1 +08:34:54 ============================================================================ +08:34:54 + + +waiting on router queue for slot.... +08:35:00 ============================================================================ +08:35:00 Slot Id : <428> +08:35:00 Transaction Type : REQUEST +08:35:00 Received From : +08:35:00 ============================================================================ +08:35:00 FNo. Len. Field Value +08:35:00 ============================================================================ +08:35:00 [ 1] [ 4] [0200] +08:35:00 [ 2] [ 16] [6213545000362313] +08:35:00 [ 3] [ 6] [010000] +08:35:00 [ 4] [ 12] [000050000000] +08:35:00 [ 7] [ 10] [0320013408] +08:35:00 [ 11] [ 6] [267209] +08:35:00 [ 12] [ 6] [083408] +08:35:00 [ 13] [ 4] [0320] +08:35:00 [ 14] [ 4] [4912] +08:35:00 [ 15] [ 4] [0320] +08:35:00 [ 18] [ 4] [6011] +08:35:00 [ 19] [ 3] [418] +08:35:00 [ 22] [ 3] [021] +08:35:00 [ 25] [ 2] [01] +08:35:00 [ 28] [ 9] [D00002000] +08:35:00 [ 32] [ 6] [180893] +08:35:00 [ 35] [ 32] [6213545000362313=491212016231893] +08:35:00 [ 37] [ 12] [507901267209] +08:35:00 [ 41] [ 8] [0461BKPO] +08:35:00 [ 42] [ 15] [999999 ] +08:35:00 [ 43] [ 40] [ATM BORKEO PAROY, Hauysay, Lao People ] +08:35:00 [ 49] [ 3] [418] +08:35:00 [ 52] [ 16] [9F6F5CA68DC15101] +08:35:00 ============================================================================ +08:35:00 + + +waiting on router queue for slot.... +08:35:00 Sending to : +08:35:00 ============================================================================ +08:35:00 Sending to : +08:35:00 ============================================================================ +08:35:01 ============================================================================ +08:35:01 Slot Id : <428> +08:35:01 Transaction Type : REQUEST +08:35:01 Received From : +08:35:01 ============================================================================ +08:35:01 FNo. Len. Field Value +08:35:01 ============================================================================ +08:35:01 [ 1] [ 4] [0200] +08:35:01 [ 2] [ 16] [6213545000362313] +08:35:01 [ 3] [ 6] [010000] +08:35:01 [ 4] [ 12] [000050000000] +08:35:01 [ 7] [ 10] [0320013408] +08:35:01 [ 11] [ 6] [267209] +08:35:01 [ 12] [ 6] [083408] +08:35:01 [ 13] [ 4] [0320] +08:35:01 [ 14] [ 4] [4912] +08:35:01 [ 15] [ 4] [0320] +08:35:01 [ 18] [ 4] [6011] +08:35:01 [ 19] [ 3] [418] +08:35:01 [ 22] [ 3] [021] +08:35:01 [ 25] [ 2] [01] +08:35:01 [ 28] [ 9] [D00002000] +08:35:01 [ 32] [ 6] [180893] +08:35:01 [ 35] [ 32] [6213545000362313=491212016231893] +08:35:01 [ 37] [ 12] [507901267209] +08:35:01 [ 41] [ 8] [0461BKPO] +08:35:01 [ 42] [ 15] [999999 ] +08:35:01 [ 43] [ 40] [ATM BORKEO PAROY, Hauysay, Lao People ] +08:35:01 [ 49] [ 3] [418] +08:35:01 [ 52] [ 16] [9F6F5CA68DC15101] +08:35:01 ============================================================================ +08:35:01 + + +waiting on router queue for slot.... +08:35:01 Sending to : +08:35:01 ============================================================================ +08:35:01 ============================================================================ +08:35:01 Slot Id : <428> +08:35:01 Transaction Type : REQUEST +08:35:01 Received From : +08:35:01 ============================================================================ +08:35:01 FNo. Len. Field Value +08:35:01 ============================================================================ +08:35:01 [ 1] [ 4] [0200] +08:35:01 [ 2] [ 16] [6213545000362313] +08:35:01 [ 3] [ 6] [010000] +08:35:01 [ 4] [ 12] [000050000000] +08:35:01 [ 7] [ 10] [0320013408] +08:35:01 [ 11] [ 6] [267209] +08:35:01 [ 12] [ 6] [083408] +08:35:01 [ 13] [ 4] [0320] +08:35:01 [ 14] [ 4] [4912] +08:35:01 [ 15] [ 4] [0320] +08:35:01 [ 18] [ 4] [6011] +08:35:01 [ 19] [ 3] [418] +08:35:01 [ 22] [ 3] [021] +08:35:01 [ 25] [ 2] [01] +08:35:01 [ 28] [ 9] [D00002000] +08:35:01 [ 32] [ 6] [180893] +08:35:01 [ 35] [ 32] [6213545000362313=491212016231893] +08:35:01 [ 37] [ 12] [507901267209] +08:35:01 [ 41] [ 8] [0461BKPO] +08:35:01 [ 42] [ 15] [999999 ] +08:35:01 [ 43] [ 40] [ATM BORKEO PAROY, Hauysay, Lao People ] +08:35:01 [ 49] [ 3] [418] +08:35:01 [ 52] [ 16] [0740F9BDBDA6BE71] +08:35:01 ============================================================================ +08:35:01 + + +waiting on router queue for slot.... +08:35:01 Sending to : <0> +08:35:01 ============================================================================ +08:35:01 ============================================================================ +08:35:01 Slot Id : <428> +08:35:01 Transaction Type : RESPONSE +08:35:01 Received From : +08:35:01 ============================================================================ +08:35:01 FNo. Len. Field Value +08:35:01 ============================================================================ +08:35:01 [ 1] [ 4] [0210] +08:35:01 [ 2] [ 16] [6213545000362313] +08:35:01 [ 3] [ 6] [010000] +08:35:01 [ 4] [ 12] [000050000000] +08:35:01 [ 7] [ 10] [0320013408] +08:35:01 [ 11] [ 6] [267209] +08:35:01 [ 12] [ 6] [083408] +08:35:01 [ 13] [ 4] [0320] +08:35:01 [ 15] [ 4] [0320] +08:35:01 [ 18] [ 4] [6011] +08:35:01 [ 19] [ 3] [418] +08:35:01 [ 32] [ 6] [180893] +08:35:01 [ 35] [ 32] [6213545000362313=491212016231893] +08:35:01 [ 37] [ 12] [507901267209] +08:35:01 [ 38] [ 6] [406114] +08:35:01 [ 39] [ 2] [00] +08:35:01 [ 41] [ 8] [0461BKPO] +08:35:01 [ 49] [ 3] [418] +08:35:01 [ 54] [ 40] [0001418C0005675529030002418C000567552903] +08:35:01 ============================================================================ +08:35:01 Sending to : +08:35:01 ============================================================================ +08:35:01 + + +waiting on router queue for slot.... +08:35:03 ============================================================================ +08:35:03 Slot Id : <428> +08:35:03 Transaction Type : RESPONSE +08:35:03 Received From : +08:35:03 ============================================================================ +08:35:03 FNo. Len. Field Value +08:35:03 ============================================================================ +08:35:03 [ 1] [ 4] [0210] +08:35:03 [ 2] [ 16] [6213545000362313] +08:35:03 [ 3] [ 6] [010000] +08:35:03 [ 4] [ 12] [000050000000] +08:35:03 [ 7] [ 10] [0320013408] +08:35:03 [ 11] [ 6] [267209] +08:35:03 [ 12] [ 6] [083408] +08:35:03 [ 13] [ 4] [0320] +08:35:03 [ 15] [ 4] [0320] +08:35:03 [ 18] [ 4] [6011] +08:35:03 [ 19] [ 3] [418] +08:35:03 [ 32] [ 6] [180893] +08:35:03 [ 35] [ 32] [6213545000362313=491212016231893] +08:35:03 [ 37] [ 12] [507901267209] +08:35:03 [ 38] [ 6] [406114] +08:35:03 [ 39] [ 2] [00] +08:35:03 [ 41] [ 8] [0461BKPO] +08:35:03 [ 49] [ 3] [418] +08:35:03 [ 54] [ 40] [0001418C0005675529030002418C000567552903] +08:35:03 ============================================================================ +08:35:03 Calculate Source COMM Id = 2 +08:35:03 ============================================================================ +08:35:03 + + +waiting on router queue for slot.... +08:35:12 ============================================================================ +08:35:12 Slot Id : <427> +08:35:12 Transaction Type : REQUEST +08:35:12 Received From : +08:35:12 ============================================================================ +08:35:12 FNo. Len. Field Value +08:35:12 ============================================================================ +08:35:12 [ 1] [ 4] [0800] +08:35:12 [ 2] [ 5] [02531] +08:35:12 [ 3] [ 6] [579088] +08:35:12 [ 7] [ 10] [0320013512] +08:35:12 [ 11] [ 6] [806910] +08:35:12 [ 15] [ 10] [0320013512] +08:35:12 [ 37] [ 11] [57908806910] +08:35:12 [ 70] [ 3] [001] +08:35:12 ============================================================================ +08:35:12 + + +waiting on router queue for slot.... +08:35:12 ============================================================================ +08:35:12 Slot Id : <427> +08:35:12 Transaction Type : RESPONSE +08:35:12 Received From : +08:35:12 ============================================================================ +08:35:12 FNo. Len. Field Value +08:35:12 ============================================================================ +08:35:12 [ 1] [ 4] [0810] +08:35:12 [ 7] [ 10] [0320013512] +08:35:12 [ 11] [ 6] [806910] +08:35:12 [ 15] [ 4] [0320] +08:35:12 [ 37] [ 12] [57908806910] +08:35:12 [ 39] [ 2] [00] +08:35:12 [ 70] [ 3] [001] +08:35:12 ============================================================================ +08:35:12 Sending to : +08:35:12 ============================================================================ +08:35:12 + + +waiting on router queue for slot.... +08:35:16 ============================================================================ +08:35:16 Slot Id : <451> +08:35:16 Transaction Type : REQUEST +08:35:16 Received From : +08:35:16 ============================================================================ +08:35:16 FNo. Len. Field Value +08:35:16 ============================================================================ +08:35:16 [ 1] [ 4] [0800] +08:35:16 [ 7] [ 10] [0320013423] +08:35:16 [ 11] [ 6] [155440] +08:35:16 [ 70] [ 3] [301] +08:35:16 ============================================================================ +08:35:16 + + +waiting on router queue for slot.... +08:35:16 Sending to : +08:35:16 ============================================================================ +08:35:16 ============================================================================ +08:35:16 Slot Id : <451> +08:35:16 Transaction Type : RESPONSE +08:35:16 Received From : +08:35:16 ============================================================================ +08:35:16 FNo. Len. Field Value +08:35:16 ============================================================================ +08:35:16 [ 1] [ 4] [0810] +08:35:16 [ 7] [ 10] [0320013423] +08:35:16 [ 11] [ 6] [155440] +08:35:16 [ 39] [ 2] [00] +08:35:16 [ 70] [ 3] [301] +08:35:16 ============================================================================ +08:35:16 Calculate Source COMM Id = 2 +08:35:16 ============================================================================ +08:35:16 + + +waiting on router queue for slot.... +08:35:26 ============================================================================ +08:35:26 Slot Id : <457> +08:35:26 Transaction Type : REQUEST +08:35:26 Received From : +08:35:26 ============================================================================ +08:35:26 FNo. Len. Field Value +08:35:26 ============================================================================ +08:35:26 [ 1] [ 4] [0800] +08:35:26 [ 7] [ 10] [0320013434] +08:35:26 [ 11] [ 6] [155441] +08:35:26 [ 70] [ 3] [301] +08:35:26 ============================================================================ +08:35:26 + + +waiting on router queue for slot.... +08:35:26 Sending to : +08:35:26 ============================================================================ +08:35:26 ============================================================================ +08:35:26 Slot Id : <457> +08:35:26 Transaction Type : RESPONSE +08:35:26 Received From : +08:35:26 ============================================================================ +08:35:26 FNo. Len. Field Value +08:35:26 ============================================================================ +08:35:26 [ 1] [ 4] [0810] +08:35:26 [ 7] [ 10] [0320013434] +08:35:26 [ 11] [ 6] [155441] +08:35:26 [ 39] [ 2] [00] +08:35:26 [ 70] [ 3] [301] +08:35:26 ============================================================================ +08:35:26 Calculate Source COMM Id = 2 +08:35:26 ============================================================================ +08:35:26 + + +waiting on router queue for slot.... +08:35:27 ============================================================================ +08:35:27 Slot Id : <462> +08:35:27 Transaction Type : REQUEST +08:35:27 Received From : +08:35:27 ============================================================================ +08:35:27 FNo. Len. Field Value +08:35:27 ============================================================================ +08:35:27 [ 1] [ 4] [0200] +08:35:27 [ 2] [ 16] [6688990107135103] +08:35:27 [ 3] [ 6] [012000] +08:35:27 [ 4] [ 12] [000050000000] +08:35:27 [ 7] [ 10] [0320083523] +08:35:27 [ 11] [ 6] [686052] +08:35:27 [ 12] [ 6] [083523] +08:35:27 [ 13] [ 4] [0320] +08:35:27 [ 15] [ 4] [0320] +08:35:27 [ 18] [ 4] [6011] +08:35:27 [ 22] [ 3] [900] +08:35:27 [ 25] [ 2] [02] +08:35:27 [ 28] [ 9] [D00002000] +08:35:27 [ 32] [ 6] [621354] +08:35:27 [ 35] [ 37] [6688990107135103=44021231510390000000] +08:35:27 [ 37] [ 12] [507903344924] +08:35:27 [ 41] [ 8] [13001400] +08:35:27 [ 42] [ 15] [NATIVE ] +08:35:27 [ 43] [ 40] [Kham Unit Kham LAO] +08:35:27 [ 49] [ 3] [418] +08:35:27 [ 52] [ 16] [7F1A99060A71CEAE] +08:35:27 ============================================================================ +08:35:27 + + +waiting on router queue for slot.... +08:35:27 Sending to : +08:35:27 ============================================================================ +08:35:27 Sending to : +08:35:27 ============================================================================ +08:35:27 ============================================================================ +08:35:27 Slot Id : <462> +08:35:27 Transaction Type : REQUEST +08:35:27 Received From : +08:35:27 ============================================================================ +08:35:27 FNo. Len. Field Value +08:35:27 ============================================================================ +08:35:27 [ 1] [ 4] [0200] +08:35:27 [ 2] [ 16] [6688990107135103] +08:35:27 [ 3] [ 6] [012000] +08:35:27 [ 4] [ 12] [000050000000] +08:35:27 [ 7] [ 10] [0320083523] +08:35:27 [ 11] [ 6] [686052] +08:35:27 [ 12] [ 6] [083523] +08:35:27 [ 13] [ 4] [0320] +08:35:27 [ 15] [ 4] [0320] +08:35:27 [ 18] [ 4] [6011] +08:35:27 [ 22] [ 3] [900] +08:35:27 [ 25] [ 2] [02] +08:35:27 [ 28] [ 9] [D00002000] +08:35:27 [ 32] [ 6] [621354] +08:35:27 [ 35] [ 37] [6688990107135103=44021231510390000000] +08:35:27 [ 37] [ 12] [507903344924] +08:35:27 [ 41] [ 8] [13001400] +08:35:27 [ 42] [ 15] [NATIVE ] +08:35:27 [ 43] [ 40] [Kham Unit Kham LAO] +08:35:27 [ 49] [ 3] [418] +08:35:27 [ 52] [ 16] [7F1A99060A71CEAE] +08:35:27 ============================================================================ +08:35:27 + + +waiting on router queue for slot.... +08:35:27 Sending to : +08:35:27 ============================================================================ +08:35:27 ============================================================================ +08:35:27 Slot Id : <462> +08:35:27 Transaction Type : REQUEST +08:35:27 Received From : +08:35:27 ============================================================================ +08:35:27 FNo. Len. Field Value +08:35:27 ============================================================================ +08:35:27 [ 1] [ 4] [0200] +08:35:27 [ 2] [ 16] [6688990107135103] +08:35:27 [ 3] [ 6] [012000] +08:35:27 [ 4] [ 12] [000050000000] +08:35:27 [ 7] [ 10] [0320083523] +08:35:27 [ 11] [ 6] [686052] +08:35:27 [ 12] [ 6] [083523] +08:35:27 [ 13] [ 4] [0320] +08:35:27 [ 15] [ 4] [0320] +08:35:27 [ 18] [ 4] [6011] +08:35:27 [ 22] [ 3] [900] +08:35:27 [ 25] [ 2] [02] +08:35:27 [ 28] [ 9] [D00002000] +08:35:27 [ 32] [ 6] [621354] +08:35:27 [ 35] [ 37] [6688990107135103=44021231510390000000] +08:35:27 [ 37] [ 12] [507903344924] +08:35:27 [ 41] [ 8] [13001400] +08:35:27 [ 42] [ 15] [NATIVE ] +08:35:27 [ 43] [ 40] [Kham Unit Kham LAO] +08:35:27 [ 49] [ 3] [418] +08:35:27 [ 52] [ 16] [A2BC92AAE13B9441] +08:35:27 ============================================================================ +08:35:27 + + +waiting on router queue for slot.... +08:35:27 Sending to : <4> +08:35:27 ============================================================================ +08:35:28 ============================================================================ +08:35:28 Slot Id : <462> +08:35:28 Transaction Type : RESPONSE +08:35:28 Received From : +08:35:28 ============================================================================ +08:35:28 FNo. Len. Field Value +08:35:28 ============================================================================ +08:35:28 [ 1] [ 4] [0210] +08:35:28 [ 2] [ 16] [6688990107135103] +08:35:28 [ 3] [ 6] [012000] +08:35:28 [ 4] [ 12] [000050000000] +08:35:28 [ 11] [ 6] [686052] +08:35:28 [ 12] [ 6] [083523] +08:35:28 [ 15] [ 4] [0320] +08:35:28 [ 18] [ 4] [6011] +08:35:28 [ 32] [ 6] [621354] +08:35:28 [ 35] [ 37] [6688990107135103=44021231510390000000] +08:35:28 [ 37] [ 12] [507903344924] +08:35:28 [ 38] [ 6] [030143] +08:35:28 [ 39] [ 2] [00] +08:35:28 [ 41] [ 8] [13001400] +08:35:28 [ 49] [ 3] [418] +08:35:28 [ 54] [ 20] [2002418C000019395025] +08:35:28 ============================================================================ +08:35:28 Sending to : +08:35:28 ============================================================================ +08:35:28 + + +waiting on router queue for slot.... +08:35:30 ============================================================================ +08:35:30 Slot Id : <462> +08:35:30 Transaction Type : RESPONSE +08:35:30 Received From : +08:35:30 ============================================================================ +08:35:30 FNo. Len. Field Value +08:35:30 ============================================================================ +08:35:30 [ 1] [ 4] [0210] +08:35:30 [ 2] [ 16] [6688990107135103] +08:35:30 [ 3] [ 6] [012000] +08:35:30 [ 4] [ 12] [000050000000] +08:35:30 [ 11] [ 6] [686052] +08:35:30 [ 12] [ 6] [083523] +08:35:30 [ 15] [ 4] [0320] +08:35:30 [ 18] [ 4] [6011] +08:35:30 [ 32] [ 6] [621354] +08:35:30 [ 35] [ 37] [6688990107135103=44021231510390000000] +08:35:30 [ 37] [ 12] [507903344924] +08:35:30 [ 38] [ 6] [030143] +08:35:30 [ 39] [ 2] [00] +08:35:30 [ 41] [ 8] [13001400] +08:35:30 [ 49] [ 3] [418] +08:35:30 [ 54] [ 20] [2002418C000019395025] +08:35:30 ============================================================================ +08:35:30 Calculate Source COMM Id = 0 +08:35:30 ============================================================================ +08:35:30 + + +waiting on router queue for slot.... +08:35:34 ============================================================================ +08:35:34 Slot Id : <426> +08:35:34 Transaction Type : REQUEST +08:35:34 Received From : +08:35:34 ============================================================================ +08:35:34 FNo. Len. Field Value +08:35:34 ============================================================================ +08:35:34 [ 1] [ 4] [0200] +08:35:34 [ 2] [ 16] [6688990030002537] +08:35:34 [ 3] [ 6] [301000] +08:35:34 [ 4] [ 12] [000000000000] +08:35:34 [ 7] [ 10] [0320083530] +08:35:34 [ 11] [ 6] [686072] +08:35:34 [ 12] [ 6] [083530] +08:35:34 [ 13] [ 4] [0320] +08:35:34 [ 15] [ 4] [0320] +08:35:34 [ 18] [ 4] [6011] +08:35:34 [ 22] [ 3] [900] +08:35:34 [ 25] [ 2] [02] +08:35:34 [ 28] [ 9] [D00000000] +08:35:34 [ 32] [ 6] [621354] +08:35:34 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:35:34 [ 37] [ 12] [507904706783] +08:35:34 [ 41] [ 8] [18000900] +08:35:34 [ 42] [ 15] [NATIVE ] +08:35:34 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:35:34 [ 49] [ 3] [418] +08:35:34 [ 52] [ 16] [752B6104E86573C5] +08:35:34 ============================================================================ +08:35:34 + + +waiting on router queue for slot.... +08:35:34 Sending to : +08:35:34 ============================================================================ +08:35:34 Sending to : +08:35:34 ============================================================================ +08:35:34 ============================================================================ +08:35:34 Slot Id : <426> +08:35:34 Transaction Type : REQUEST +08:35:34 Received From : +08:35:34 ============================================================================ +08:35:34 FNo. Len. Field Value +08:35:34 ============================================================================ +08:35:34 [ 1] [ 4] [0200] +08:35:34 [ 2] [ 16] [6688990030002537] +08:35:34 [ 3] [ 6] [301000] +08:35:34 [ 4] [ 12] [000000000000] +08:35:34 [ 7] [ 10] [0320083530] +08:35:34 [ 11] [ 6] [686072] +08:35:34 [ 12] [ 6] [083530] +08:35:34 [ 13] [ 4] [0320] +08:35:34 [ 15] [ 4] [0320] +08:35:34 [ 18] [ 4] [6011] +08:35:34 [ 22] [ 3] [900] +08:35:34 [ 25] [ 2] [02] +08:35:34 [ 28] [ 9] [D00000000] +08:35:34 [ 32] [ 6] [621354] +08:35:34 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:35:34 [ 37] [ 12] [507904706783] +08:35:34 [ 41] [ 8] [18000900] +08:35:34 [ 42] [ 15] [NATIVE ] +08:35:34 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:35:34 [ 49] [ 3] [418] +08:35:34 [ 52] [ 16] [752B6104E86573C5] +08:35:34 ============================================================================ +08:35:34 + + +waiting on router queue for slot.... +08:35:34 Sending to : +08:35:34 ============================================================================ +08:35:34 ============================================================================ +08:35:34 Slot Id : <426> +08:35:34 Transaction Type : REQUEST +08:35:34 Received From : +08:35:34 ============================================================================ +08:35:34 FNo. Len. Field Value +08:35:34 ============================================================================ +08:35:34 [ 1] [ 4] [0200] +08:35:34 [ 2] [ 16] [6688990030002537] +08:35:34 [ 3] [ 6] [301000] +08:35:34 [ 4] [ 12] [000000000000] +08:35:34 [ 7] [ 10] [0320083530] +08:35:34 [ 11] [ 6] [686072] +08:35:34 [ 12] [ 6] [083530] +08:35:34 [ 13] [ 4] [0320] +08:35:34 [ 15] [ 4] [0320] +08:35:34 [ 18] [ 4] [6011] +08:35:34 [ 22] [ 3] [900] +08:35:34 [ 25] [ 2] [02] +08:35:34 [ 28] [ 9] [D00000000] +08:35:34 [ 32] [ 6] [621354] +08:35:34 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:35:34 [ 37] [ 12] [507904706783] +08:35:34 [ 41] [ 8] [18000900] +08:35:34 [ 42] [ 15] [NATIVE ] +08:35:34 [ 43] [ 40] [Bounneau District Bounneua LAO] +08:35:34 [ 49] [ 3] [418] +08:35:34 [ 52] [ 16] [3B0E9D1F650AC498] +08:35:34 ============================================================================ +08:35:34 + + +waiting on router queue for slot.... +08:35:34 Sending to : <4> +08:35:34 ============================================================================ +08:35:35 ============================================================================ +08:35:35 Slot Id : <426> +08:35:35 Transaction Type : RESPONSE +08:35:35 Received From : +08:35:35 ============================================================================ +08:35:35 FNo. Len. Field Value +08:35:35 ============================================================================ +08:35:35 [ 1] [ 4] [0210] +08:35:35 [ 2] [ 16] [6688990030002537] +08:35:35 [ 3] [ 6] [301000] +08:35:35 [ 4] [ 12] [000000000000] +08:35:35 [ 11] [ 6] [686072] +08:35:35 [ 12] [ 6] [083530] +08:35:35 [ 15] [ 4] [0320] +08:35:35 [ 18] [ 4] [6011] +08:35:35 [ 32] [ 6] [621354] +08:35:35 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:35:35 [ 37] [ 12] [507904706783] +08:35:35 [ 38] [ 6] [050384] +08:35:35 [ 39] [ 2] [00] +08:35:35 [ 41] [ 8] [18000900] +08:35:35 [ 49] [ 3] [418] +08:35:35 [ 54] [ 20] [1002418C002437268956] +08:35:35 ============================================================================ +08:35:35 Sending to : +08:35:35 ============================================================================ +08:35:35 + + +waiting on router queue for slot.... +08:35:37 ============================================================================ +08:35:37 Slot Id : <426> +08:35:37 Transaction Type : RESPONSE +08:35:37 Received From : +08:35:37 ============================================================================ +08:35:37 FNo. Len. Field Value +08:35:37 ============================================================================ +08:35:37 [ 1] [ 4] [0210] +08:35:37 [ 2] [ 16] [6688990030002537] +08:35:37 [ 3] [ 6] [301000] +08:35:37 [ 4] [ 12] [000000000000] +08:35:37 [ 11] [ 6] [686072] +08:35:37 [ 12] [ 6] [083530] +08:35:37 [ 15] [ 4] [0320] +08:35:37 [ 18] [ 4] [6011] +08:35:37 [ 32] [ 6] [621354] +08:35:37 [ 35] [ 37] [6688990030002537=97101261427111700000] +08:35:37 [ 37] [ 12] [507904706783] +08:35:37 [ 38] [ 6] [050384] +08:35:37 [ 39] [ 2] [00] +08:35:37 [ 41] [ 8] [18000900] +08:35:37 [ 49] [ 3] [418] +08:35:37 [ 54] [ 20] [1002418C002437268956] +08:35:37 ============================================================================ +08:35:37 Calculate Source COMM Id = 0 +08:35:37 ============================================================================ +08:35:37 + + +waiting on router queue for slot.... +08:35:39 ============================================================================ +08:35:39 Slot Id : <431> +08:35:39 Transaction Type : REQUEST +08:35:39 Received From : +08:35:39 ============================================================================ +08:35:39 FNo. Len. Field Value +08:35:39 ============================================================================ +08:35:39 [ 1] [ 4] [0200] +08:35:39 [ 2] [ 16] [6213545000955108] +08:35:39 [ 3] [ 6] [010000] +08:35:39 [ 4] [ 12] [000100000000] +08:35:39 [ 7] [ 10] [0320013444] +08:35:39 [ 11] [ 6] [267217] +08:35:39 [ 12] [ 6] [083444] +08:35:39 [ 13] [ 4] [0320] +08:35:39 [ 14] [ 4] [4912] +08:35:39 [ 15] [ 4] [0320] +08:35:39 [ 18] [ 4] [6011] +08:35:39 [ 19] [ 3] [418] +08:35:39 [ 22] [ 3] [021] +08:35:39 [ 25] [ 2] [01] +08:35:39 [ 28] [ 9] [D00002000] +08:35:39 [ 32] [ 6] [180893] +08:35:39 [ 35] [ 32] [6213545000955108=491212015510046] +08:35:39 [ 37] [ 12] [507901267217] +08:35:39 [ 41] [ 8] [0324BKDT] +08:35:39 [ 42] [ 15] [999999 ] +08:35:39 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +08:35:39 [ 49] [ 3] [418] +08:35:39 [ 52] [ 16] [230AB4DCAD8600EC] +08:35:39 ============================================================================ +08:35:39 + + +waiting on router queue for slot.... +08:35:39 Sending to : +08:35:39 ============================================================================ +08:35:39 Sending to : +08:35:39 ============================================================================ +08:35:39 ============================================================================ +08:35:39 Slot Id : <431> +08:35:39 Transaction Type : REQUEST +08:35:39 Received From : +08:35:39 ============================================================================ +08:35:39 FNo. Len. Field Value +08:35:39 ============================================================================ +08:35:39 [ 1] [ 4] [0200] +08:35:39 [ 2] [ 16] [6213545000955108] +08:35:39 [ 3] [ 6] [010000] +08:35:39 [ 4] [ 12] [000100000000] +08:35:39 [ 7] [ 10] [0320013444] +08:35:39 [ 11] [ 6] [267217] +08:35:39 [ 12] [ 6] [083444] +08:35:39 [ 13] [ 4] [0320] +08:35:39 [ 14] [ 4] [4912] +08:35:39 [ 15] [ 4] [0320] +08:35:39 [ 18] [ 4] [6011] +08:35:39 [ 19] [ 3] [418] +08:35:39 [ 22] [ 3] [021] +08:35:39 [ 25] [ 2] [01] +08:35:39 [ 28] [ 9] [D00002000] +08:35:39 [ 32] [ 6] [180893] +08:35:39 [ 35] [ 32] [6213545000955108=491212015510046] +08:35:39 [ 37] [ 12] [507901267217] +08:35:39 [ 41] [ 8] [0324BKDT] +08:35:39 [ 42] [ 15] [999999 ] +08:35:39 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +08:35:39 [ 49] [ 3] [418] +08:35:39 [ 52] [ 16] [230AB4DCAD8600EC] +08:35:39 ============================================================================ +08:35:39 + + +waiting on router queue for slot.... +08:35:39 Sending to : +08:35:39 ============================================================================ +08:35:39 ============================================================================ +08:35:39 Slot Id : <431> +08:35:39 Transaction Type : REQUEST +08:35:39 Received From : +08:35:39 ============================================================================ +08:35:39 FNo. Len. Field Value +08:35:39 ============================================================================ +08:35:39 [ 1] [ 4] [0200] +08:35:39 [ 2] [ 16] [6213545000955108] +08:35:39 [ 3] [ 6] [010000] +08:35:39 [ 4] [ 12] [000100000000] +08:35:39 [ 7] [ 10] [0320013444] +08:35:39 [ 11] [ 6] [267217] +08:35:39 [ 12] [ 6] [083444] +08:35:39 [ 13] [ 4] [0320] +08:35:39 [ 14] [ 4] [4912] +08:35:39 [ 15] [ 4] [0320] +08:35:39 [ 18] [ 4] [6011] +08:35:39 [ 19] [ 3] [418] +08:35:39 [ 22] [ 3] [021] +08:35:39 [ 25] [ 2] [01] +08:35:39 [ 28] [ 9] [D00002000] +08:35:39 [ 32] [ 6] [180893] +08:35:39 [ 35] [ 32] [6213545000955108=491212015510046] +08:35:39 [ 37] [ 12] [507901267217] +08:35:39 [ 41] [ 8] [0324BKDT] +08:35:39 [ 42] [ 15] [999999 ] +08:35:39 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +08:35:39 [ 49] [ 3] [418] +08:35:39 [ 52] [ 16] [1C5FCAFC5B1ED8CA] +08:35:39 ============================================================================ +08:35:39 + + +waiting on router queue for slot.... +08:35:39 Sending to : <0> +08:35:39 ============================================================================ +08:35:40 ============================================================================ +08:35:40 Slot Id : <431> +08:35:40 Transaction Type : RESPONSE +08:35:40 Received From : +08:35:40 ============================================================================ +08:35:40 FNo. Len. Field Value +08:35:40 ============================================================================ +08:35:40 [ 1] [ 4] [0210] +08:35:40 [ 2] [ 16] [6213545000955108] +08:35:40 [ 3] [ 6] [010000] +08:35:40 [ 4] [ 12] [000100000000] +08:35:40 [ 7] [ 10] [0320013444] +08:35:40 [ 11] [ 6] [267217] +08:35:40 [ 12] [ 6] [083444] +08:35:40 [ 13] [ 4] [0320] +08:35:40 [ 15] [ 4] [0320] +08:35:40 [ 18] [ 4] [6011] +08:35:40 [ 19] [ 3] [418] +08:35:40 [ 32] [ 6] [180893] +08:35:40 [ 35] [ 32] [6213545000955108=491212015510046] +08:35:40 [ 37] [ 12] [507901267217] +08:35:40 [ 38] [ 6] [127350] +08:35:40 [ 39] [ 2] [00] +08:35:40 [ 41] [ 8] [0324BKDT] +08:35:40 [ 49] [ 3] [418] +08:35:40 [ 54] [ 40] [0001418C0003338096690002418C000333809669] +08:35:40 ============================================================================ +08:35:40 Sending to : +08:35:40 ============================================================================ +08:35:40 + + +waiting on router queue for slot.... +08:35:41 ============================================================================ +08:35:41 Slot Id : <431> +08:35:41 Transaction Type : RESPONSE +08:35:41 Received From : +08:35:41 ============================================================================ +08:35:41 FNo. Len. Field Value +08:35:41 ============================================================================ +08:35:41 [ 1] [ 4] [0210] +08:35:41 [ 2] [ 16] [6213545000955108] +08:35:41 [ 3] [ 6] [010000] +08:35:41 [ 4] [ 12] [000100000000] +08:35:41 [ 7] [ 10] [0320013444] +08:35:41 [ 11] [ 6] [267217] +08:35:41 [ 12] [ 6] [083444] +08:35:41 [ 13] [ 4] [0320] +08:35:41 [ 15] [ 4] [0320] +08:35:41 [ 18] [ 4] [6011] +08:35:41 [ 19] [ 3] [418] +08:35:41 [ 32] [ 6] [180893] +08:35:41 [ 35] [ 32] [6213545000955108=491212015510046] +08:35:41 [ 37] [ 12] [507901267217] +08:35:41 [ 38] [ 6] [127350] +08:35:41 [ 39] [ 2] [00] +08:35:41 [ 41] [ 8] [0324BKDT] +08:35:41 [ 49] [ 3] [418] +08:35:41 [ 54] [ 40] [0001418C0003338096690002418C000333809669] +08:35:41 ============================================================================ +08:35:41 Calculate Source COMM Id = 2 +08:35:41 ============================================================================ +08:35:41 + + +waiting on router queue for slot.... +08:35:46 ============================================================================ +08:35:46 Slot Id : <422> +08:35:46 Transaction Type : REQUEST +08:35:46 Received From : +08:35:46 ============================================================================ +08:35:46 FNo. Len. Field Value +08:35:46 ============================================================================ +08:35:46 [ 1] [ 4] [0800] +08:35:46 [ 7] [ 10] [0320154735] +08:35:46 [ 11] [ 6] [084735] +08:35:46 [ 37] [ 12] [57908084735] +08:35:46 [ 70] [ 3] [301] +08:35:46 ============================================================================ +08:35:46 + + +waiting on router queue for slot.... +08:35:46 Sending to : +08:35:46 ============================================================================ +08:35:46 ============================================================================ +08:35:46 Slot Id : <422> +08:35:46 Transaction Type : RESPONSE +08:35:46 Received From : +08:35:46 ============================================================================ +08:35:46 FNo. Len. Field Value +08:35:46 ============================================================================ +08:35:46 [ 1] [ 4] [0810] +08:35:46 [ 7] [ 10] [0320154735] +08:35:46 [ 11] [ 6] [084735] +08:35:46 [ 37] [ 12] [579080847350] +08:35:46 [ 39] [ 2] [00] +08:35:46 [ 70] [ 3] [810] +08:35:46 ============================================================================ +08:35:46 Calculate Source COMM Id = 6 +08:35:46 ============================================================================ +08:35:46 + + +waiting on router queue for slot.... +08:35:54 ============================================================================ +08:35:54 Slot Id : <444> +08:35:54 Transaction Type : REQUEST +08:35:54 Received From : +08:35:54 ============================================================================ +08:35:54 FNo. Len. Field Value +08:35:54 ============================================================================ +08:35:54 [ 1] [ 4] [0800] +08:35:54 [ 7] [ 10] [0320013502] +08:35:54 [ 11] [ 6] [155442] +08:35:54 [ 70] [ 3] [301] +08:35:54 ============================================================================ +08:35:54 + + +waiting on router queue for slot.... +08:35:54 Sending to : +08:35:54 ============================================================================ +08:35:54 ============================================================================ +08:35:54 Slot Id : <444> +08:35:54 Transaction Type : RESPONSE +08:35:54 Received From : +08:35:54 ============================================================================ +08:35:54 FNo. Len. Field Value +08:35:54 ============================================================================ +08:35:54 [ 1] [ 4] [0810] +08:35:54 [ 7] [ 10] [0320013502] +08:35:54 [ 11] [ 6] [155442] +08:35:54 [ 39] [ 2] [00] +08:35:54 [ 70] [ 3] [301] +08:35:54 ============================================================================ +08:35:54 Calculate Source COMM Id = 2 +08:35:54 ============================================================================ +08:35:54 + + +waiting on router queue for slot.... +08:36:09 ============================================================================ +08:36:09 Slot Id : <421> +08:36:09 Transaction Type : REQUEST +08:36:09 Received From : +08:36:09 ============================================================================ +08:36:09 FNo. Len. Field Value +08:36:09 ============================================================================ +08:36:09 [ 1] [ 4] [0800] +08:36:09 [ 7] [ 10] [0320013517] +08:36:09 [ 11] [ 6] [155443] +08:36:09 [ 70] [ 3] [301] +08:36:09 ============================================================================ +08:36:09 + + +waiting on router queue for slot.... +08:36:09 Sending to : +08:36:09 ============================================================================ +08:36:09 ============================================================================ +08:36:09 Slot Id : <421> +08:36:09 Transaction Type : RESPONSE +08:36:09 Received From : +08:36:09 ============================================================================ +08:36:09 FNo. Len. Field Value +08:36:09 ============================================================================ +08:36:09 [ 1] [ 4] [0810] +08:36:09 [ 7] [ 10] [0320013517] +08:36:09 [ 11] [ 6] [155443] +08:36:09 [ 39] [ 2] [00] +08:36:09 [ 70] [ 3] [301] +08:36:09 ============================================================================ +08:36:09 Calculate Source COMM Id = 2 +08:36:09 ============================================================================ +08:36:09 + + +waiting on router queue for slot.... +08:36:14 ============================================================================ +08:36:14 Slot Id : <465> +08:36:14 Transaction Type : REQUEST +08:36:14 Received From : +08:36:14 ============================================================================ +08:36:14 FNo. Len. Field Value +08:36:14 ============================================================================ +08:36:14 [ 1] [ 4] [0800] +08:36:14 [ 2] [ 5] [02531] +08:36:14 [ 3] [ 6] [579088] +08:36:14 [ 7] [ 10] [0320013614] +08:36:14 [ 11] [ 6] [806911] +08:36:14 [ 15] [ 10] [0320013614] +08:36:14 [ 37] [ 11] [57908806911] +08:36:14 [ 70] [ 3] [001] +08:36:14 ============================================================================ +08:36:14 + + +waiting on router queue for slot.... +08:36:14 ============================================================================ +08:36:14 Slot Id : <465> +08:36:14 Transaction Type : RESPONSE +08:36:14 Received From : +08:36:14 ============================================================================ +08:36:14 FNo. Len. Field Value +08:36:14 ============================================================================ +08:36:14 [ 1] [ 4] [0810] +08:36:14 [ 7] [ 10] [0320013614] +08:36:14 [ 11] [ 6] [806911] +08:36:14 [ 15] [ 4] [0320] +08:36:14 [ 37] [ 12] [57908806911] +08:36:14 [ 39] [ 2] [00] +08:36:14 [ 70] [ 3] [001] +08:36:14 ============================================================================ +08:36:14 Sending to : +08:36:14 ============================================================================ +08:36:14 + + +waiting on router queue for slot.... +08:36:14 ============================================================================ +08:36:14 Slot Id : <439> +08:36:14 Transaction Type : REQUEST +08:36:14 Received From : +08:36:14 ============================================================================ +08:36:14 FNo. Len. Field Value +08:36:14 ============================================================================ +08:36:14 [ 1] [ 4] [0200] +08:36:14 [ 2] [ 16] [6213542000052713] +08:36:14 [ 3] [ 6] [011000] +08:36:14 [ 4] [ 12] [000030000000] +08:36:14 [ 7] [ 10] [0320084402] +08:36:14 [ 11] [ 6] [085582] +08:36:14 [ 12] [ 6] [084402] +08:36:14 [ 13] [ 4] [0320] +08:36:14 [ 14] [ 4] [4912] +08:36:14 [ 15] [ 4] [0320] +08:36:14 [ 18] [ 4] [6011] +08:36:14 [ 22] [ 3] [900] +08:36:14 [ 25] [ 2] [02] +08:36:14 [ 28] [ 9] [D00002000] +08:36:14 [ 32] [ 6] [220699] +08:36:14 [ 35] [ 32] [6213542000052713=491212015271484] +08:36:14 [ 37] [ 12] [507900140203] +08:36:14 [ 41] [ 8] [03000200] +08:36:14 [ 42] [ 15] [APTRA ] +08:36:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:36:14 [ 49] [ 3] [418] +08:36:14 [ 52] [ 16] [A38D72D343AD4CC8] +08:36:14 ============================================================================ +08:36:14 + + +waiting on router queue for slot.... +08:36:14 Sending to : +08:36:14 ============================================================================ +08:36:14 Sending to : +08:36:14 ============================================================================ +08:36:15 ============================================================================ +08:36:15 Slot Id : <423> +08:36:15 Transaction Type : REQUEST +08:36:15 Received From : +08:36:15 ============================================================================ +08:36:15 FNo. Len. Field Value +08:36:15 ============================================================================ +08:36:15 [ 1] [ 4] [0200] +08:36:15 [ 2] [ 16] [6213543000007939] +08:36:15 [ 3] [ 6] [300000] +08:36:15 [ 4] [ 12] [000000000000] +08:36:15 [ 7] [ 10] [0320083406] +08:36:15 [ 11] [ 6] [933292] +08:36:15 [ 12] [ 6] [083406] +08:36:15 [ 13] [ 4] [0320] +08:36:15 [ 15] [ 4] [0320] +08:36:15 [ 18] [ 4] [6011] +08:36:15 [ 19] [ 3] [418] +08:36:15 [ 22] [ 3] [021] +08:36:15 [ 25] [ 2] [01] +08:36:15 [ 28] [ 9] [D00000000] +08:36:15 [ 32] [ 6] [668899] +08:36:15 [ 35] [ 32] [6213543000007939=491212010793561] +08:36:15 [ 37] [ 12] [507901416563] +08:36:15 [ 41] [ 8] [03011002] +08:36:15 [ 42] [ 15] [APT ] +08:36:15 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:36:15 [ 49] [ 3] [418] +08:36:15 [ 52] [ 16] [B2CCABE832DDCE1B] +08:36:15 ============================================================================ +08:36:15 + + +waiting on router queue for slot.... +08:36:15 Sending to : +08:36:15 ============================================================================ +08:36:15 Sending to : +08:36:15 ============================================================================ +08:36:15 ============================================================================ +08:36:15 Slot Id : <439> +08:36:15 Transaction Type : REQUEST +08:36:15 Received From : +08:36:15 ============================================================================ +08:36:15 FNo. Len. Field Value +08:36:15 ============================================================================ +08:36:15 [ 1] [ 4] [0200] +08:36:15 [ 2] [ 16] [6213542000052713] +08:36:15 [ 3] [ 6] [011000] +08:36:15 [ 4] [ 12] [000030000000] +08:36:15 [ 7] [ 10] [0320084402] +08:36:15 [ 11] [ 6] [085582] +08:36:15 [ 12] [ 6] [084402] +08:36:15 [ 13] [ 4] [0320] +08:36:15 [ 14] [ 4] [4912] +08:36:15 [ 15] [ 4] [0320] +08:36:15 [ 18] [ 4] [6011] +08:36:15 [ 22] [ 3] [900] +08:36:15 [ 25] [ 2] [02] +08:36:15 [ 28] [ 9] [D00002000] +08:36:15 [ 32] [ 6] [220699] +08:36:15 [ 35] [ 32] [6213542000052713=491212015271484] +08:36:15 [ 37] [ 12] [507900140203] +08:36:15 [ 41] [ 8] [03000200] +08:36:15 [ 42] [ 15] [APTRA ] +08:36:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:36:15 [ 49] [ 3] [418] +08:36:15 [ 52] [ 16] [A38D72D343AD4CC8] +08:36:15 ============================================================================ +08:36:15 + + +waiting on router queue for slot.... +08:36:15 Sending to : +08:36:15 ============================================================================ +08:36:15 ============================================================================ +08:36:15 Slot Id : <439> +08:36:15 Transaction Type : REQUEST +08:36:15 Received From : +08:36:15 ============================================================================ +08:36:15 FNo. Len. Field Value +08:36:15 ============================================================================ +08:36:15 [ 1] [ 4] [0200] +08:36:15 [ 2] [ 16] [6213542000052713] +08:36:15 [ 3] [ 6] [011000] +08:36:15 [ 4] [ 12] [000030000000] +08:36:15 [ 7] [ 10] [0320084402] +08:36:15 [ 11] [ 6] [085582] +08:36:15 [ 12] [ 6] [084402] +08:36:15 [ 13] [ 4] [0320] +08:36:15 [ 14] [ 4] [4912] +08:36:15 [ 15] [ 4] [0320] +08:36:15 [ 18] [ 4] [6011] +08:36:15 [ 22] [ 3] [900] +08:36:15 [ 25] [ 2] [02] +08:36:15 [ 28] [ 9] [D00002000] +08:36:15 [ 32] [ 6] [220699] +08:36:15 [ 35] [ 32] [6213542000052713=491212015271484] +08:36:15 [ 37] [ 12] [507900140203] +08:36:15 [ 41] [ 8] [03000200] +08:36:15 [ 42] [ 15] [APTRA ] +08:36:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:36:15 [ 49] [ 3] [418] +08:36:15 [ 52] [ 16] [C2D5A6F128BA2D6B] +08:36:15 ============================================================================ +08:36:15 + + +waiting on router queue for slot.... +08:36:15 Sending to : <0> +08:36:15 ============================================================================ +08:36:15 ============================================================================ +08:36:15 Slot Id : <423> +08:36:15 Transaction Type : REQUEST +08:36:15 Received From : +08:36:15 ============================================================================ +08:36:15 FNo. Len. Field Value +08:36:15 ============================================================================ +08:36:15 [ 1] [ 4] [0200] +08:36:15 [ 2] [ 16] [6213543000007939] +08:36:15 [ 3] [ 6] [300000] +08:36:15 [ 4] [ 12] [000000000000] +08:36:15 [ 7] [ 10] [0320083406] +08:36:15 [ 11] [ 6] [933292] +08:36:15 [ 12] [ 6] [083406] +08:36:15 [ 13] [ 4] [0320] +08:36:15 [ 15] [ 4] [0320] +08:36:15 [ 18] [ 4] [6011] +08:36:15 [ 19] [ 3] [418] +08:36:15 [ 22] [ 3] [021] +08:36:15 [ 25] [ 2] [01] +08:36:15 [ 28] [ 9] [D00000000] +08:36:15 [ 32] [ 6] [668899] +08:36:15 [ 35] [ 32] [6213543000007939=491212010793561] +08:36:15 [ 37] [ 12] [507901416563] +08:36:15 [ 41] [ 8] [03011002] +08:36:15 [ 42] [ 15] [APT ] +08:36:15 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:36:15 [ 49] [ 3] [418] +08:36:15 [ 52] [ 16] [B2CCABE832DDCE1B] +08:36:15 ============================================================================ +08:36:15 + + +waiting on router queue for slot.... +08:36:15 Sending to : +08:36:15 ============================================================================ +08:36:15 ============================================================================ +08:36:15 Slot Id : <423> +08:36:15 Transaction Type : REQUEST +08:36:15 Received From : +08:36:15 ============================================================================ +08:36:15 FNo. Len. Field Value +08:36:15 ============================================================================ +08:36:15 [ 1] [ 4] [0200] +08:36:15 [ 2] [ 16] [6213543000007939] +08:36:15 [ 3] [ 6] [300000] +08:36:15 [ 4] [ 12] [000000000000] +08:36:15 [ 7] [ 10] [0320083406] +08:36:15 [ 11] [ 6] [933292] +08:36:15 [ 12] [ 6] [083406] +08:36:15 [ 13] [ 4] [0320] +08:36:15 [ 15] [ 4] [0320] +08:36:15 [ 18] [ 4] [6011] +08:36:15 [ 19] [ 3] [418] +08:36:15 [ 22] [ 3] [021] +08:36:15 [ 25] [ 2] [01] +08:36:15 [ 28] [ 9] [D00000000] +08:36:15 [ 32] [ 6] [668899] +08:36:15 [ 35] [ 32] [6213543000007939=491212010793561] +08:36:15 [ 37] [ 12] [507901416563] +08:36:15 [ 41] [ 8] [03011002] +08:36:15 [ 42] [ 15] [APT ] +08:36:15 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:36:15 [ 49] [ 3] [418] +08:36:15 [ 52] [ 16] [09BC347C583A8CD1] +08:36:15 ============================================================================ +08:36:15 + + +waiting on router queue for slot.... +08:36:15 Sending to : <0> +08:36:15 ============================================================================ +08:36:15 ============================================================================ +08:36:15 Slot Id : <423> +08:36:15 Transaction Type : RESPONSE +08:36:15 Received From : +08:36:15 ============================================================================ +08:36:15 FNo. Len. Field Value +08:36:15 ============================================================================ +08:36:15 [ 1] [ 4] [0210] +08:36:15 [ 2] [ 16] [6213543000007939] +08:36:15 [ 3] [ 6] [300000] +08:36:15 [ 4] [ 12] [000000000000] +08:36:15 [ 7] [ 10] [0320083406] +08:36:15 [ 11] [ 6] [933292] +08:36:15 [ 12] [ 6] [083406] +08:36:15 [ 13] [ 4] [0320] +08:36:15 [ 15] [ 4] [0320] +08:36:15 [ 18] [ 4] [6011] +08:36:15 [ 19] [ 3] [418] +08:36:15 [ 32] [ 6] [668899] +08:36:15 [ 35] [ 32] [6213543000007939=491212010793561] +08:36:15 [ 37] [ 12] [507901416563] +08:36:15 [ 38] [ 6] [599560] +08:36:15 [ 39] [ 2] [00] +08:36:15 [ 41] [ 8] [03011002] +08:36:15 [ 49] [ 3] [418] +08:36:15 [ 54] [ 40] [0001418C0005263497770002418C000526349777] +08:36:15 ============================================================================ +08:36:15 Sending to : +08:36:15 ============================================================================ +08:36:15 + + +waiting on router queue for slot.... +08:36:16 ============================================================================ +08:36:16 Slot Id : <439> +08:36:16 Transaction Type : RESPONSE +08:36:16 Received From : +08:36:16 ============================================================================ +08:36:16 FNo. Len. Field Value +08:36:16 ============================================================================ +08:36:16 [ 1] [ 4] [0210] +08:36:16 [ 2] [ 16] [6213542000052713] +08:36:16 [ 3] [ 6] [011000] +08:36:16 [ 4] [ 12] [000030000000] +08:36:16 [ 7] [ 10] [0320084402] +08:36:16 [ 11] [ 6] [085582] +08:36:16 [ 12] [ 6] [084402] +08:36:16 [ 13] [ 4] [0320] +08:36:16 [ 15] [ 4] [0320] +08:36:16 [ 18] [ 4] [6011] +08:36:16 [ 32] [ 6] [220699] +08:36:16 [ 35] [ 32] [6213542000052713=491212015271484] +08:36:16 [ 37] [ 12] [507900140203] +08:36:16 [ 38] [ 6] [485761] +08:36:16 [ 39] [ 2] [00] +08:36:16 [ 41] [ 8] [03000200] +08:36:16 [ 49] [ 3] [418] +08:36:16 [ 54] [ 40] [1001418C0000392857821002418C000039285782] +08:36:16 ============================================================================ +08:36:16 Sending to : +08:36:16 ============================================================================ +08:36:16 + + +waiting on router queue for slot.... +08:36:16 ============================================================================ +08:36:16 Slot Id : <458> +08:36:16 Transaction Type : REQUEST +08:36:16 Received From : +08:36:16 ============================================================================ +08:36:16 FNo. Len. Field Value +08:36:16 ============================================================================ +08:36:16 [ 1] [ 4] [0200] +08:36:16 [ 2] [ 16] [6213544000213402] +08:36:16 [ 3] [ 6] [010000] +08:36:16 [ 4] [ 12] [000020000000] +08:36:16 [ 7] [ 10] [0320083408] +08:36:16 [ 11] [ 6] [933293] +08:36:16 [ 12] [ 6] [083408] +08:36:16 [ 13] [ 4] [0320] +08:36:16 [ 15] [ 4] [0320] +08:36:16 [ 18] [ 4] [6011] +08:36:16 [ 19] [ 3] [418] +08:36:16 [ 22] [ 3] [021] +08:36:16 [ 25] [ 2] [01] +08:36:16 [ 28] [ 9] [D00002000] +08:36:16 [ 32] [ 6] [668899] +08:36:16 [ 35] [ 32] [6213544000213402=491212011340923] +08:36:16 [ 37] [ 12] [507900502255] +08:36:16 [ 41] [ 8] [03011001] +08:36:16 [ 42] [ 15] [APT ] +08:36:16 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +08:36:16 [ 49] [ 3] [418] +08:36:16 [ 52] [ 16] [ABF062BBBACAB378] +08:36:16 ============================================================================ +08:36:16 + + +waiting on router queue for slot.... +08:36:16 Sending to : +08:36:16 ============================================================================ +08:36:16 Sending to : +08:36:16 ============================================================================ +08:36:17 ============================================================================ +08:36:17 Slot Id : <458> +08:36:17 Transaction Type : REQUEST +08:36:17 Received From : +08:36:17 ============================================================================ +08:36:17 FNo. Len. Field Value +08:36:17 ============================================================================ +08:36:17 [ 1] [ 4] [0200] +08:36:17 [ 2] [ 16] [6213544000213402] +08:36:17 [ 3] [ 6] [010000] +08:36:17 [ 4] [ 12] [000020000000] +08:36:17 [ 7] [ 10] [0320083408] +08:36:17 [ 11] [ 6] [933293] +08:36:17 [ 12] [ 6] [083408] +08:36:17 [ 13] [ 4] [0320] +08:36:17 [ 15] [ 4] [0320] +08:36:17 [ 18] [ 4] [6011] +08:36:17 [ 19] [ 3] [418] +08:36:17 [ 22] [ 3] [021] +08:36:17 [ 25] [ 2] [01] +08:36:17 [ 28] [ 9] [D00002000] +08:36:17 [ 32] [ 6] [668899] +08:36:17 [ 35] [ 32] [6213544000213402=491212011340923] +08:36:17 [ 37] [ 12] [507900502255] +08:36:17 [ 41] [ 8] [03011001] +08:36:17 [ 42] [ 15] [APT ] +08:36:17 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +08:36:17 [ 49] [ 3] [418] +08:36:17 [ 52] [ 16] [ABF062BBBACAB378] +08:36:17 ============================================================================ +08:36:17 + + +waiting on router queue for slot.... +08:36:17 Sending to : +08:36:17 ============================================================================ +08:36:17 ============================================================================ +08:36:17 Slot Id : <458> +08:36:17 Transaction Type : REQUEST +08:36:17 Received From : +08:36:17 ============================================================================ +08:36:17 FNo. Len. Field Value +08:36:17 ============================================================================ +08:36:17 [ 1] [ 4] [0200] +08:36:17 [ 2] [ 16] [6213544000213402] +08:36:17 [ 3] [ 6] [010000] +08:36:17 [ 4] [ 12] [000020000000] +08:36:17 [ 7] [ 10] [0320083408] +08:36:17 [ 11] [ 6] [933293] +08:36:17 [ 12] [ 6] [083408] +08:36:17 [ 13] [ 4] [0320] +08:36:17 [ 15] [ 4] [0320] +08:36:17 [ 18] [ 4] [6011] +08:36:17 [ 19] [ 3] [418] +08:36:17 [ 22] [ 3] [021] +08:36:17 [ 25] [ 2] [01] +08:36:17 [ 28] [ 9] [D00002000] +08:36:17 [ 32] [ 6] [668899] +08:36:17 [ 35] [ 32] [6213544000213402=491212011340923] +08:36:17 [ 37] [ 12] [507900502255] +08:36:17 [ 41] [ 8] [03011001] +08:36:17 [ 42] [ 15] [APT ] +08:36:17 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +08:36:17 [ 49] [ 3] [418] +08:36:17 [ 52] [ 16] [8859F16AD525D7EE] +08:36:17 ============================================================================ +08:36:17 + + +waiting on router queue for slot.... +08:36:17 Sending to : <0> +08:36:17 ============================================================================ +08:36:17 ============================================================================ +08:36:17 Slot Id : <423> +08:36:17 Transaction Type : RESPONSE +08:36:17 Received From : +08:36:17 ============================================================================ +08:36:17 FNo. Len. Field Value +08:36:17 ============================================================================ +08:36:17 [ 1] [ 4] [0210] +08:36:17 [ 2] [ 16] [6213543000007939] +08:36:17 [ 3] [ 6] [300000] +08:36:17 [ 4] [ 12] [000000000000] +08:36:17 [ 7] [ 10] [0320083406] +08:36:17 [ 11] [ 6] [933292] +08:36:17 [ 12] [ 6] [083406] +08:36:17 [ 13] [ 4] [0320] +08:36:17 [ 15] [ 4] [0320] +08:36:17 [ 18] [ 4] [6011] +08:36:17 [ 19] [ 3] [418] +08:36:17 [ 32] [ 6] [668899] +08:36:17 [ 35] [ 32] [6213543000007939=491212010793561] +08:36:17 [ 37] [ 12] [507901416563] +08:36:17 [ 38] [ 6] [599560] +08:36:17 [ 39] [ 2] [00] +08:36:17 [ 41] [ 8] [03011002] +08:36:17 [ 49] [ 3] [418] +08:36:17 [ 54] [ 40] [0001418C0005263497770002418C000526349777] +08:36:17 ============================================================================ +08:36:17 Calculate Source COMM Id = 4 +08:36:17 ============================================================================ +08:36:17 + + +waiting on router queue for slot.... +08:36:17 ============================================================================ +08:36:17 Slot Id : <458> +08:36:17 Transaction Type : RESPONSE +08:36:17 Received From : +08:36:17 ============================================================================ +08:36:17 FNo. Len. Field Value +08:36:17 ============================================================================ +08:36:17 [ 1] [ 4] [0210] +08:36:17 [ 2] [ 16] [6213544000213402] +08:36:17 [ 3] [ 6] [010000] +08:36:17 [ 4] [ 12] [000020000000] +08:36:17 [ 7] [ 10] [0320083408] +08:36:17 [ 11] [ 6] [933293] +08:36:17 [ 12] [ 6] [083408] +08:36:17 [ 13] [ 4] [0320] +08:36:17 [ 15] [ 4] [0320] +08:36:17 [ 18] [ 4] [6011] +08:36:17 [ 19] [ 3] [418] +08:36:17 [ 32] [ 6] [668899] +08:36:17 [ 35] [ 32] [6213544000213402=491212011340923] +08:36:17 [ 37] [ 12] [507900502255] +08:36:17 [ 38] [ 6] [320199] +08:36:17 [ 39] [ 2] [00] +08:36:17 [ 41] [ 8] [03011001] +08:36:17 [ 49] [ 3] [418] +08:36:17 [ 54] [ 40] [0001418C0004531612200002418C000453161220] +08:36:17 ============================================================================ +08:36:17 Sending to : +08:36:17 ============================================================================ +08:36:17 + + +waiting on router queue for slot.... +08:36:19 ============================================================================ +08:36:19 Slot Id : <439> +08:36:19 Transaction Type : RESPONSE +08:36:19 Received From : +08:36:19 ============================================================================ +08:36:19 FNo. Len. Field Value +08:36:19 ============================================================================ +08:36:19 [ 1] [ 4] [0210] +08:36:19 [ 2] [ 16] [6213542000052713] +08:36:19 [ 3] [ 6] [011000] +08:36:19 [ 4] [ 12] [000030000000] +08:36:19 [ 7] [ 10] [0320084402] +08:36:19 [ 11] [ 6] [085582] +08:36:19 [ 12] [ 6] [084402] +08:36:19 [ 13] [ 4] [0320] +08:36:19 [ 15] [ 4] [0320] +08:36:19 [ 18] [ 4] [6011] +08:36:19 [ 32] [ 6] [220699] +08:36:19 [ 35] [ 32] [6213542000052713=491212015271484] +08:36:19 [ 37] [ 12] [507900140203] +08:36:19 [ 38] [ 6] [485761] +08:36:19 [ 39] [ 2] [00] +08:36:19 [ 41] [ 8] [03000200] +08:36:19 [ 49] [ 3] [418] +08:36:19 [ 54] [ 40] [1001418C0000392857821002418C000039285782] +08:36:19 ============================================================================ +08:36:19 Calculate Source COMM Id = 1 +08:36:19 ============================================================================ +08:36:19 + + +waiting on router queue for slot.... +08:36:20 ============================================================================ +08:36:20 Slot Id : <458> +08:36:20 Transaction Type : RESPONSE +08:36:20 Received From : +08:36:20 ============================================================================ +08:36:20 FNo. Len. Field Value +08:36:20 ============================================================================ +08:36:20 [ 1] [ 4] [0210] +08:36:20 [ 2] [ 16] [6213544000213402] +08:36:20 [ 3] [ 6] [010000] +08:36:20 [ 4] [ 12] [000020000000] +08:36:20 [ 7] [ 10] [0320083408] +08:36:20 [ 11] [ 6] [933293] +08:36:20 [ 12] [ 6] [083408] +08:36:20 [ 13] [ 4] [0320] +08:36:20 [ 15] [ 4] [0320] +08:36:20 [ 18] [ 4] [6011] +08:36:20 [ 19] [ 3] [418] +08:36:20 [ 32] [ 6] [668899] +08:36:20 [ 35] [ 32] [6213544000213402=491212011340923] +08:36:20 [ 37] [ 12] [507900502255] +08:36:20 [ 38] [ 6] [320199] +08:36:20 [ 39] [ 2] [00] +08:36:20 [ 41] [ 8] [03011001] +08:36:20 [ 49] [ 3] [418] +08:36:20 [ 54] [ 40] [0001418C0004531612200002418C000453161220] +08:36:20 ============================================================================ +08:36:20 Calculate Source COMM Id = 4 +08:36:20 ============================================================================ +08:36:20 + + +waiting on router queue for slot.... +08:36:21 ============================================================================ +08:36:21 Slot Id : <436> +08:36:21 Transaction Type : REQUEST +08:36:21 Received From : +08:36:21 ============================================================================ +08:36:21 FNo. Len. Field Value +08:36:21 ============================================================================ +08:36:21 [ 1] [ 4] [0800] +08:36:21 [ 7] [ 10] [0320013412] +08:36:21 [ 11] [ 6] [000493] +08:36:21 [ 37] [ 12] [57908000493] +08:36:21 [ 70] [ 3] [301] +08:36:21 ============================================================================ +08:36:21 + + +waiting on router queue for slot.... +08:36:21 Sending to : +08:36:21 ============================================================================ +08:36:21 ============================================================================ +08:36:21 Slot Id : <436> +08:36:21 Transaction Type : RESPONSE +08:36:21 Received From : +08:36:21 ============================================================================ +08:36:21 FNo. Len. Field Value +08:36:21 ============================================================================ +08:36:21 [ 1] [ 4] [0810] +08:36:21 [ 7] [ 10] [0320013412] +08:36:21 [ 11] [ 6] [000493] +08:36:21 [ 37] [ 12] [579080004930] +08:36:21 [ 39] [ 2] [00] +08:36:21 [ 70] [ 3] [810] +08:36:21 ============================================================================ +08:36:21 Calculate Source COMM Id = 4 +08:36:21 ============================================================================ +08:36:21 + + +waiting on router queue for slot.... +08:36:26 ============================================================================ +08:36:26 Slot Id : <459> +08:36:26 Transaction Type : REQUEST +08:36:26 Received From : +08:36:26 ============================================================================ +08:36:26 FNo. Len. Field Value +08:36:26 ============================================================================ +08:36:26 [ 1] [ 4] [0800] +08:36:26 [ 7] [ 10] [0320013534] +08:36:26 [ 11] [ 6] [155444] +08:36:26 [ 70] [ 3] [301] +08:36:26 ============================================================================ +08:36:26 + + +waiting on router queue for slot.... +08:36:26 Sending to : +08:36:26 ============================================================================ +08:36:26 ============================================================================ +08:36:26 Slot Id : <459> +08:36:26 Transaction Type : RESPONSE +08:36:26 Received From : +08:36:26 ============================================================================ +08:36:26 FNo. Len. Field Value +08:36:26 ============================================================================ +08:36:26 [ 1] [ 4] [0810] +08:36:26 [ 7] [ 10] [0320013534] +08:36:26 [ 11] [ 6] [155444] +08:36:26 [ 39] [ 2] [00] +08:36:26 [ 70] [ 3] [301] +08:36:26 ============================================================================ +08:36:26 Calculate Source COMM Id = 2 +08:36:26 ============================================================================ +08:36:26 + + +waiting on router queue for slot.... +08:36:41 ============================================================================ +08:36:41 Slot Id : <466> +08:36:41 Transaction Type : REQUEST +08:36:41 Received From : +08:36:41 ============================================================================ +08:36:41 FNo. Len. Field Value +08:36:41 ============================================================================ +08:36:41 [ 1] [ 4] [0800] +08:36:41 [ 7] [ 10] [0320013549] +08:36:41 [ 11] [ 6] [155445] +08:36:41 [ 70] [ 3] [301] +08:36:41 ============================================================================ +08:36:41 + + +waiting on router queue for slot.... +08:36:41 Sending to : +08:36:41 ============================================================================ +08:36:41 ============================================================================ +08:36:41 Slot Id : <466> +08:36:41 Transaction Type : RESPONSE +08:36:41 Received From : +08:36:41 ============================================================================ +08:36:41 FNo. Len. Field Value +08:36:41 ============================================================================ +08:36:41 [ 1] [ 4] [0810] +08:36:41 [ 7] [ 10] [0320013549] +08:36:41 [ 11] [ 6] [155445] +08:36:41 [ 39] [ 2] [00] +08:36:41 [ 70] [ 3] [301] +08:36:41 ============================================================================ +08:36:41 Calculate Source COMM Id = 2 +08:36:41 ============================================================================ +08:36:41 + + +waiting on router queue for slot.... +08:36:49 ============================================================================ +08:36:49 Slot Id : <475> +08:36:49 Transaction Type : REQUEST +08:36:49 Received From : +08:36:49 ============================================================================ +08:36:49 FNo. Len. Field Value +08:36:49 ============================================================================ +08:36:49 [ 1] [ 4] [0200] +08:36:49 [ 2] [ 16] [6213543000007939] +08:36:49 [ 3] [ 6] [302000] +08:36:49 [ 4] [ 12] [000000000000] +08:36:49 [ 7] [ 10] [0320083441] +08:36:49 [ 11] [ 6] [933313] +08:36:49 [ 12] [ 6] [083441] +08:36:49 [ 13] [ 4] [0320] +08:36:49 [ 15] [ 4] [0320] +08:36:49 [ 18] [ 4] [6011] +08:36:49 [ 19] [ 3] [418] +08:36:49 [ 22] [ 3] [021] +08:36:49 [ 25] [ 2] [01] +08:36:49 [ 28] [ 9] [D00000000] +08:36:49 [ 32] [ 6] [668899] +08:36:49 [ 35] [ 32] [6213543000007939=491212010793561] +08:36:49 [ 37] [ 12] [507901416564] +08:36:49 [ 41] [ 8] [03011002] +08:36:49 [ 42] [ 15] [APT ] +08:36:49 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:36:49 [ 49] [ 3] [418] +08:36:49 [ 52] [ 16] [B2CCABE832DDCE1B] +08:36:49 ============================================================================ +08:36:49 + + +waiting on router queue for slot.... +08:36:49 Sending to : +08:36:49 ============================================================================ +08:36:49 Sending to : +08:36:49 ============================================================================ +08:36:50 ============================================================================ +08:36:50 Slot Id : <475> +08:36:50 Transaction Type : REQUEST +08:36:50 Received From : +08:36:50 ============================================================================ +08:36:50 FNo. Len. Field Value +08:36:50 ============================================================================ +08:36:50 [ 1] [ 4] [0200] +08:36:50 [ 2] [ 16] [6213543000007939] +08:36:50 [ 3] [ 6] [302000] +08:36:50 [ 4] [ 12] [000000000000] +08:36:50 [ 7] [ 10] [0320083441] +08:36:50 [ 11] [ 6] [933313] +08:36:50 [ 12] [ 6] [083441] +08:36:50 [ 13] [ 4] [0320] +08:36:50 [ 15] [ 4] [0320] +08:36:50 [ 18] [ 4] [6011] +08:36:50 [ 19] [ 3] [418] +08:36:50 [ 22] [ 3] [021] +08:36:50 [ 25] [ 2] [01] +08:36:50 [ 28] [ 9] [D00000000] +08:36:50 [ 32] [ 6] [668899] +08:36:50 [ 35] [ 32] [6213543000007939=491212010793561] +08:36:50 [ 37] [ 12] [507901416564] +08:36:50 [ 41] [ 8] [03011002] +08:36:50 [ 42] [ 15] [APT ] +08:36:50 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:36:50 [ 49] [ 3] [418] +08:36:50 [ 52] [ 16] [B2CCABE832DDCE1B] +08:36:50 ============================================================================ +08:36:50 + + +waiting on router queue for slot.... +08:36:50 Sending to : +08:36:50 ============================================================================ +08:36:50 ============================================================================ +08:36:50 Slot Id : <475> +08:36:50 Transaction Type : REQUEST +08:36:50 Received From : +08:36:50 ============================================================================ +08:36:50 FNo. Len. Field Value +08:36:50 ============================================================================ +08:36:50 [ 1] [ 4] [0200] +08:36:50 [ 2] [ 16] [6213543000007939] +08:36:50 [ 3] [ 6] [302000] +08:36:50 [ 4] [ 12] [000000000000] +08:36:50 [ 7] [ 10] [0320083441] +08:36:50 [ 11] [ 6] [933313] +08:36:50 [ 12] [ 6] [083441] +08:36:50 [ 13] [ 4] [0320] +08:36:50 [ 15] [ 4] [0320] +08:36:50 [ 18] [ 4] [6011] +08:36:50 [ 19] [ 3] [418] +08:36:50 [ 22] [ 3] [021] +08:36:50 [ 25] [ 2] [01] +08:36:50 [ 28] [ 9] [D00000000] +08:36:50 [ 32] [ 6] [668899] +08:36:50 [ 35] [ 32] [6213543000007939=491212010793561] +08:36:50 [ 37] [ 12] [507901416564] +08:36:50 [ 41] [ 8] [03011002] +08:36:50 [ 42] [ 15] [APT ] +08:36:50 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:36:50 [ 49] [ 3] [418] +08:36:50 [ 52] [ 16] [09BC347C583A8CD1] +08:36:50 ============================================================================ +08:36:50 + + +waiting on router queue for slot.... +08:36:50 Sending to : <0> +08:36:50 ============================================================================ +08:36:50 ============================================================================ +08:36:50 Slot Id : <475> +08:36:50 Transaction Type : RESPONSE +08:36:50 Received From : +08:36:50 ============================================================================ +08:36:50 FNo. Len. Field Value +08:36:50 ============================================================================ +08:36:50 [ 1] [ 4] [0210] +08:36:50 [ 2] [ 16] [6213543000007939] +08:36:50 [ 3] [ 6] [302000] +08:36:50 [ 4] [ 12] [000000000000] +08:36:50 [ 7] [ 10] [0320083441] +08:36:50 [ 11] [ 6] [933313] +08:36:50 [ 12] [ 6] [083441] +08:36:50 [ 13] [ 4] [0320] +08:36:50 [ 15] [ 4] [0320] +08:36:50 [ 18] [ 4] [6011] +08:36:50 [ 19] [ 3] [418] +08:36:50 [ 32] [ 6] [668899] +08:36:50 [ 35] [ 32] [6213543000007939=491212010793561] +08:36:50 [ 37] [ 12] [507901416564] +08:36:50 [ 38] [ 6] [239590] +08:36:50 [ 39] [ 2] [00] +08:36:50 [ 41] [ 8] [03011002] +08:36:50 [ 49] [ 3] [418] +08:36:50 [ 54] [ 40] [2001418C0005263497772002418C000526349777] +08:36:50 ============================================================================ +08:36:50 Sending to : +08:36:50 ============================================================================ +08:36:50 + + +waiting on router queue for slot.... +08:36:51 ============================================================================ +08:36:51 Slot Id : <452> +08:36:51 Transaction Type : REQUEST +08:36:51 Received From : +08:36:51 ============================================================================ +08:36:51 FNo. Len. Field Value +08:36:51 ============================================================================ +08:36:51 [ 1] [ 4] [0800] +08:36:51 [ 7] [ 10] [0320154840] +08:36:51 [ 11] [ 6] [084840] +08:36:51 [ 37] [ 12] [57908084840] +08:36:51 [ 70] [ 3] [301] +08:36:51 ============================================================================ +08:36:51 + + +waiting on router queue for slot.... +08:36:51 Sending to : +08:36:51 ============================================================================ +08:36:51 ============================================================================ +08:36:51 Slot Id : <452> +08:36:51 Transaction Type : RESPONSE +08:36:51 Received From : +08:36:51 ============================================================================ +08:36:51 FNo. Len. Field Value +08:36:51 ============================================================================ +08:36:51 [ 1] [ 4] [0810] +08:36:51 [ 7] [ 10] [0320154840] +08:36:51 [ 11] [ 6] [084840] +08:36:51 [ 37] [ 12] [579080848400] +08:36:51 [ 39] [ 2] [00] +08:36:51 [ 70] [ 3] [810] +08:36:51 ============================================================================ +08:36:51 Calculate Source COMM Id = 6 +08:36:51 ============================================================================ +08:36:51 + + +waiting on router queue for slot.... +08:36:51 ============================================================================ +08:36:51 Slot Id : <475> +08:36:51 Transaction Type : RESPONSE +08:36:51 Received From : +08:36:51 ============================================================================ +08:36:51 FNo. Len. Field Value +08:36:51 ============================================================================ +08:36:51 [ 1] [ 4] [0210] +08:36:51 [ 2] [ 16] [6213543000007939] +08:36:51 [ 3] [ 6] [302000] +08:36:51 [ 4] [ 12] [000000000000] +08:36:51 [ 7] [ 10] [0320083441] +08:36:51 [ 11] [ 6] [933313] +08:36:51 [ 12] [ 6] [083441] +08:36:51 [ 13] [ 4] [0320] +08:36:51 [ 15] [ 4] [0320] +08:36:51 [ 18] [ 4] [6011] +08:36:51 [ 19] [ 3] [418] +08:36:51 [ 32] [ 6] [668899] +08:36:51 [ 35] [ 32] [6213543000007939=491212010793561] +08:36:51 [ 37] [ 12] [507901416564] +08:36:51 [ 38] [ 6] [239590] +08:36:51 [ 39] [ 2] [00] +08:36:51 [ 41] [ 8] [03011002] +08:36:51 [ 49] [ 3] [418] +08:36:51 [ 54] [ 40] [2001418C0005263497772002418C000526349777] +08:36:51 ============================================================================ +08:36:51 Calculate Source COMM Id = 4 +08:36:51 ============================================================================ +08:36:51 + + +waiting on router queue for slot.... +08:36:51 ============================================================================ +08:36:51 Slot Id : <468> +08:36:51 Transaction Type : REQUEST +08:36:51 Received From : +08:36:51 ============================================================================ +08:36:51 FNo. Len. Field Value +08:36:51 ============================================================================ +08:36:51 [ 1] [ 4] [0800] +08:36:51 [ 7] [ 10] [0320013600] +08:36:51 [ 11] [ 6] [155446] +08:36:51 [ 70] [ 3] [301] +08:36:51 ============================================================================ +08:36:51 + + +waiting on router queue for slot.... +08:36:51 Sending to : +08:36:51 ============================================================================ +08:36:51 ============================================================================ +08:36:51 Slot Id : <468> +08:36:51 Transaction Type : RESPONSE +08:36:51 Received From : +08:36:51 ============================================================================ +08:36:51 FNo. Len. Field Value +08:36:51 ============================================================================ +08:36:51 [ 1] [ 4] [0810] +08:36:51 [ 7] [ 10] [0320013600] +08:36:51 [ 11] [ 6] [155446] +08:36:51 [ 39] [ 2] [00] +08:36:51 [ 70] [ 3] [301] +08:36:51 ============================================================================ +08:36:51 Calculate Source COMM Id = 2 +08:36:51 ============================================================================ +08:36:51 + + +waiting on router queue for slot.... +08:36:56 ============================================================================ +08:36:56 Slot Id : <449> +08:36:56 Transaction Type : REQUEST +08:36:56 Received From : +08:36:56 ============================================================================ +08:36:56 FNo. Len. Field Value +08:36:56 ============================================================================ +08:36:56 [ 1] [ 4] [0200] +08:36:56 [ 2] [ 16] [1808931400006662] +08:36:56 [ 3] [ 6] [010000] +08:36:56 [ 4] [ 12] [000100000000] +08:36:56 [ 7] [ 10] [0320083652] +08:36:56 [ 11] [ 6] [686369] +08:36:56 [ 12] [ 6] [083652] +08:36:56 [ 13] [ 4] [0320] +08:36:56 [ 15] [ 4] [0320] +08:36:56 [ 18] [ 4] [6011] +08:36:56 [ 22] [ 3] [900] +08:36:56 [ 25] [ 2] [02] +08:36:56 [ 28] [ 9] [D00002000] +08:36:56 [ 32] [ 6] [621354] +08:36:56 [ 35] [ 27] [1808931400006662=1803500859] +08:36:56 [ 37] [ 12] [507904672328] +08:36:56 [ 41] [ 8] [18000600] +08:36:56 [ 42] [ 15] [NATIVE ] +08:36:56 [ 43] [ 40] [Phongsaly Branch 01 Phongsaly LAO] +08:36:56 [ 49] [ 3] [418] +08:36:56 [ 52] [ 16] [E12366CBD5705BD8] +08:36:56 ============================================================================ +08:36:56 + + +waiting on router queue for slot.... +08:36:56 Sending to : +08:36:56 ============================================================================ +08:36:56 Sending to : +08:36:56 ============================================================================ +08:36:56 ============================================================================ +08:36:56 Slot Id : <449> +08:36:56 Transaction Type : REQUEST +08:36:56 Received From : +08:36:56 ============================================================================ +08:36:56 FNo. Len. Field Value +08:36:56 ============================================================================ +08:36:56 [ 1] [ 4] [0200] +08:36:56 [ 2] [ 16] [1808931400006662] +08:36:56 [ 3] [ 6] [010000] +08:36:56 [ 4] [ 12] [000100000000] +08:36:56 [ 7] [ 10] [0320083652] +08:36:56 [ 11] [ 6] [686369] +08:36:56 [ 12] [ 6] [083652] +08:36:56 [ 13] [ 4] [0320] +08:36:56 [ 15] [ 4] [0320] +08:36:56 [ 18] [ 4] [6011] +08:36:56 [ 22] [ 3] [900] +08:36:56 [ 25] [ 2] [02] +08:36:56 [ 28] [ 9] [D00002000] +08:36:56 [ 32] [ 6] [621354] +08:36:56 [ 35] [ 27] [1808931400006662=1803500859] +08:36:56 [ 37] [ 12] [507904672328] +08:36:56 [ 41] [ 8] [18000600] +08:36:56 [ 42] [ 15] [NATIVE ] +08:36:56 [ 43] [ 40] [Phongsaly Branch 01 Phongsaly LAO] +08:36:56 [ 49] [ 3] [418] +08:36:56 [ 52] [ 16] [E12366CBD5705BD8] +08:36:56 ============================================================================ +08:36:56 + + +waiting on router queue for slot.... +08:36:56 Sending to : +08:36:56 ============================================================================ +08:36:56 ============================================================================ +08:36:56 Slot Id : <449> +08:36:56 Transaction Type : REQUEST +08:36:56 Received From : +08:36:56 ============================================================================ +08:36:56 FNo. Len. Field Value +08:36:56 ============================================================================ +08:36:56 [ 1] [ 4] [0200] +08:36:56 [ 2] [ 16] [1808931400006662] +08:36:56 [ 3] [ 6] [010000] +08:36:56 [ 4] [ 12] [000100000000] +08:36:56 [ 7] [ 10] [0320083652] +08:36:56 [ 11] [ 6] [686369] +08:36:56 [ 12] [ 6] [083652] +08:36:56 [ 13] [ 4] [0320] +08:36:56 [ 15] [ 4] [0320] +08:36:56 [ 18] [ 4] [6011] +08:36:56 [ 22] [ 3] [900] +08:36:56 [ 25] [ 2] [02] +08:36:56 [ 28] [ 9] [D00002000] +08:36:56 [ 32] [ 6] [621354] +08:36:56 [ 35] [ 27] [1808931400006662=1803500859] +08:36:56 [ 37] [ 12] [507904672328] +08:36:56 [ 41] [ 8] [18000600] +08:36:56 [ 42] [ 15] [NATIVE ] +08:36:56 [ 43] [ 40] [Phongsaly Branch 01 Phongsaly LAO] +08:36:56 [ 49] [ 3] [418] +08:36:56 [ 52] [ 16] [6B9A6C295964D7E0] +08:36:56 ============================================================================ +08:36:56 + + +waiting on router queue for slot.... +08:36:56 Sending to : <2> +08:36:56 ============================================================================ +08:37:03 ============================================================================ +08:37:03 Slot Id : <449> +08:37:03 Transaction Type : RESPONSE +08:37:03 Received From : +08:37:03 ============================================================================ +08:37:03 FNo. Len. Field Value +08:37:03 ============================================================================ +08:37:03 [ 1] [ 4] [0210] +08:37:03 [ 2] [ 16] [1808931400006662] +08:37:03 [ 3] [ 6] [010000] +08:37:03 [ 4] [ 12] [000100000000] +08:37:03 [ 6] [ 12] [000100000000] +08:37:03 [ 7] [ 10] [0320083652] +08:37:03 [ 11] [ 6] [686369] +08:37:03 [ 12] [ 6] [083652] +08:37:03 [ 13] [ 4] [0320] +08:37:03 [ 18] [ 4] [6011] +08:37:03 [ 19] [ 3] [418] +08:37:03 [ 22] [ 3] [021] +08:37:03 [ 32] [ 6] [621354] +08:37:03 [ 35] [ 27] [1808931400006662=1803500859] +08:37:03 [ 37] [ 12] [507904672328] +08:37:03 [ 38] [ 6] [686369] +08:37:03 [ 39] [ 2] [00] +08:37:03 [ 41] [ 8] [18000600] +08:37:03 [ 49] [ 3] [418] +08:37:03 [ 52] [ 16] [6B9A6C295964D7E0] +08:37:03 [ 54] [ 20] [1001418C000078298500] +08:37:03 ============================================================================ +08:37:03 Sending to : +08:37:03 ============================================================================ +08:37:03 + + +waiting on router queue for slot.... +08:37:05 ============================================================================ +08:37:05 Slot Id : <449> +08:37:05 Transaction Type : RESPONSE +08:37:05 Received From : +08:37:05 ============================================================================ +08:37:05 FNo. Len. Field Value +08:37:05 ============================================================================ +08:37:05 [ 1] [ 4] [0210] +08:37:05 [ 2] [ 16] [1808931400006662] +08:37:05 [ 3] [ 6] [010000] +08:37:05 [ 4] [ 12] [000100000000] +08:37:05 [ 6] [ 12] [000100000000] +08:37:05 [ 7] [ 10] [0320083652] +08:37:05 [ 11] [ 6] [686369] +08:37:05 [ 12] [ 6] [083652] +08:37:05 [ 13] [ 4] [0320] +08:37:05 [ 18] [ 4] [6011] +08:37:05 [ 19] [ 3] [418] +08:37:05 [ 22] [ 3] [021] +08:37:05 [ 32] [ 6] [621354] +08:37:05 [ 35] [ 27] [1808931400006662=1803500859] +08:37:05 [ 37] [ 12] [507904672328] +08:37:05 [ 38] [ 6] [686369] +08:37:05 [ 39] [ 2] [00] +08:37:05 [ 41] [ 8] [18000600] +08:37:05 [ 49] [ 3] [418] +08:37:05 [ 52] [ 16] [6B9A6C295964D7E0] +08:37:05 [ 54] [ 20] [1001418C000078298500] +08:37:05 ============================================================================ +08:37:05 Calculate Source COMM Id = 0 +08:37:05 ============================================================================ +08:37:05 + + +waiting on router queue for slot.... +08:37:08 ============================================================================ +08:37:08 Slot Id : <455> +08:37:08 Transaction Type : REQUEST +08:37:08 Received From : +08:37:08 ============================================================================ +08:37:08 FNo. Len. Field Value +08:37:08 ============================================================================ +08:37:08 [ 1] [ 4] [0800] +08:37:08 [ 7] [ 10] [0320013615] +08:37:08 [ 11] [ 6] [155447] +08:37:08 [ 70] [ 3] [301] +08:37:08 ============================================================================ +08:37:08 + + +waiting on router queue for slot.... +08:37:08 Sending to : +08:37:08 ============================================================================ +08:37:08 ============================================================================ +08:37:08 Slot Id : <455> +08:37:08 Transaction Type : RESPONSE +08:37:08 Received From : +08:37:08 ============================================================================ +08:37:08 FNo. Len. Field Value +08:37:08 ============================================================================ +08:37:08 [ 1] [ 4] [0810] +08:37:08 [ 7] [ 10] [0320013615] +08:37:08 [ 11] [ 6] [155447] +08:37:08 [ 39] [ 2] [00] +08:37:08 [ 70] [ 3] [301] +08:37:08 ============================================================================ +08:37:08 Calculate Source COMM Id = 2 +08:37:08 ============================================================================ +08:37:08 + + +waiting on router queue for slot.... +08:37:16 ============================================================================ +08:37:16 Slot Id : <440> +08:37:16 Transaction Type : REQUEST +08:37:16 Received From : +08:37:16 ============================================================================ +08:37:16 FNo. Len. Field Value +08:37:16 ============================================================================ +08:37:16 [ 1] [ 4] [0800] +08:37:16 [ 2] [ 5] [02531] +08:37:16 [ 3] [ 6] [579088] +08:37:16 [ 7] [ 10] [0320013716] +08:37:16 [ 11] [ 6] [806912] +08:37:16 [ 15] [ 10] [0320013716] +08:37:16 [ 37] [ 11] [57908806912] +08:37:16 [ 70] [ 3] [001] +08:37:16 ============================================================================ +08:37:16 + + +waiting on router queue for slot.... +08:37:16 ============================================================================ +08:37:16 Slot Id : <440> +08:37:16 Transaction Type : RESPONSE +08:37:16 Received From : +08:37:16 ============================================================================ +08:37:16 FNo. Len. Field Value +08:37:16 ============================================================================ +08:37:16 [ 1] [ 4] [0810] +08:37:16 [ 7] [ 10] [0320013716] +08:37:16 [ 11] [ 6] [806912] +08:37:16 [ 15] [ 4] [0320] +08:37:16 [ 37] [ 12] [57908806912] +08:37:16 [ 39] [ 2] [00] +08:37:16 [ 70] [ 3] [001] +08:37:16 ============================================================================ +08:37:16 Sending to : +08:37:16 ============================================================================ +08:37:16 + + +waiting on router queue for slot.... +08:37:22 ============================================================================ +08:37:22 Slot Id : <460> +08:37:22 Transaction Type : REQUEST +08:37:22 Received From : +08:37:22 ============================================================================ +08:37:22 FNo. Len. Field Value +08:37:22 ============================================================================ +08:37:22 [ 1] [ 4] [0200] +08:37:22 [ 2] [ 16] [1808931100010790] +08:37:22 [ 3] [ 6] [010000] +08:37:22 [ 4] [ 12] [000040000000] +08:37:22 [ 7] [ 10] [0320083718] +08:37:22 [ 11] [ 6] [686492] +08:37:22 [ 12] [ 6] [083718] +08:37:22 [ 13] [ 4] [0320] +08:37:22 [ 15] [ 4] [0320] +08:37:22 [ 18] [ 4] [6011] +08:37:22 [ 22] [ 3] [900] +08:37:22 [ 25] [ 2] [02] +08:37:22 [ 28] [ 9] [D00002000] +08:37:22 [ 32] [ 6] [621354] +08:37:22 [ 35] [ 27] [1808931100010790=1803500236] +08:37:22 [ 37] [ 12] [507904599628] +08:37:22 [ 41] [ 8] [02002200] +08:37:22 [ 42] [ 15] [NATIVE ] +08:37:22 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +08:37:22 [ 49] [ 3] [418] +08:37:22 [ 52] [ 16] [63CB3CF506AD6B14] +08:37:22 ============================================================================ +08:37:22 + + +waiting on router queue for slot.... +08:37:22 Sending to : +08:37:22 ============================================================================ +08:37:22 Sending to : +08:37:22 ============================================================================ +08:37:22 ============================================================================ +08:37:22 Slot Id : <460> +08:37:22 Transaction Type : REQUEST +08:37:22 Received From : +08:37:22 ============================================================================ +08:37:22 FNo. Len. Field Value +08:37:22 ============================================================================ +08:37:22 [ 1] [ 4] [0200] +08:37:22 [ 2] [ 16] [1808931100010790] +08:37:22 [ 3] [ 6] [010000] +08:37:22 [ 4] [ 12] [000040000000] +08:37:22 [ 7] [ 10] [0320083718] +08:37:22 [ 11] [ 6] [686492] +08:37:22 [ 12] [ 6] [083718] +08:37:22 [ 13] [ 4] [0320] +08:37:22 [ 15] [ 4] [0320] +08:37:22 [ 18] [ 4] [6011] +08:37:22 [ 22] [ 3] [900] +08:37:22 [ 25] [ 2] [02] +08:37:22 [ 28] [ 9] [D00002000] +08:37:22 [ 32] [ 6] [621354] +08:37:22 [ 35] [ 27] [1808931100010790=1803500236] +08:37:22 [ 37] [ 12] [507904599628] +08:37:22 [ 41] [ 8] [02002200] +08:37:22 [ 42] [ 15] [NATIVE ] +08:37:22 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +08:37:22 [ 49] [ 3] [418] +08:37:22 [ 52] [ 16] [63CB3CF506AD6B14] +08:37:22 ============================================================================ +08:37:22 + + +waiting on router queue for slot.... +08:37:22 Sending to : +08:37:22 ============================================================================ +08:37:22 ============================================================================ +08:37:22 Slot Id : <460> +08:37:22 Transaction Type : REQUEST +08:37:22 Received From : +08:37:22 ============================================================================ +08:37:22 FNo. Len. Field Value +08:37:22 ============================================================================ +08:37:22 [ 1] [ 4] [0200] +08:37:22 [ 2] [ 16] [1808931100010790] +08:37:22 [ 3] [ 6] [010000] +08:37:22 [ 4] [ 12] [000040000000] +08:37:22 [ 7] [ 10] [0320083718] +08:37:22 [ 11] [ 6] [686492] +08:37:22 [ 12] [ 6] [083718] +08:37:22 [ 13] [ 4] [0320] +08:37:22 [ 15] [ 4] [0320] +08:37:22 [ 18] [ 4] [6011] +08:37:22 [ 22] [ 3] [900] +08:37:22 [ 25] [ 2] [02] +08:37:22 [ 28] [ 9] [D00002000] +08:37:22 [ 32] [ 6] [621354] +08:37:22 [ 35] [ 27] [1808931100010790=1803500236] +08:37:22 [ 37] [ 12] [507904599628] +08:37:22 [ 41] [ 8] [02002200] +08:37:22 [ 42] [ 15] [NATIVE ] +08:37:22 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +08:37:22 [ 49] [ 3] [418] +08:37:22 [ 52] [ 16] [74734ADE236B9A24] +08:37:22 ============================================================================ +08:37:22 + + +waiting on router queue for slot.... +08:37:22 Sending to : <2> +08:37:22 ============================================================================ +08:37:27 ============================================================================ +08:37:27 Slot Id : <460> +08:37:27 Transaction Type : RESPONSE +08:37:27 Received From : +08:37:27 ============================================================================ +08:37:27 FNo. Len. Field Value +08:37:27 ============================================================================ +08:37:27 [ 1] [ 4] [0210] +08:37:27 [ 2] [ 16] [1808931100010790] +08:37:27 [ 3] [ 6] [010000] +08:37:27 [ 4] [ 12] [000040000000] +08:37:27 [ 6] [ 12] [000040000000] +08:37:27 [ 7] [ 10] [0320083718] +08:37:27 [ 11] [ 6] [686492] +08:37:27 [ 12] [ 6] [083718] +08:37:27 [ 13] [ 4] [0320] +08:37:27 [ 18] [ 4] [6011] +08:37:27 [ 19] [ 3] [418] +08:37:27 [ 22] [ 3] [021] +08:37:27 [ 32] [ 6] [621354] +08:37:27 [ 35] [ 27] [1808931100010790=1803500236] +08:37:27 [ 37] [ 12] [507904599628] +08:37:27 [ 38] [ 6] [686492] +08:37:27 [ 39] [ 2] [00] +08:37:27 [ 41] [ 8] [02002200] +08:37:27 [ 49] [ 3] [418] +08:37:27 [ 52] [ 16] [74734ADE236B9A24] +08:37:27 [ 54] [ 20] [1001418C002402640800] +08:37:27 ============================================================================ +08:37:27 Sending to : +08:37:27 ============================================================================ +08:37:27 + + +waiting on router queue for slot.... +08:37:29 ============================================================================ +08:37:29 Slot Id : <460> +08:37:29 Transaction Type : RESPONSE +08:37:29 Received From : +08:37:29 ============================================================================ +08:37:29 FNo. Len. Field Value +08:37:29 ============================================================================ +08:37:29 [ 1] [ 4] [0210] +08:37:29 [ 2] [ 16] [1808931100010790] +08:37:29 [ 3] [ 6] [010000] +08:37:29 [ 4] [ 12] [000040000000] +08:37:29 [ 6] [ 12] [000040000000] +08:37:29 [ 7] [ 10] [0320083718] +08:37:29 [ 11] [ 6] [686492] +08:37:29 [ 12] [ 6] [083718] +08:37:29 [ 13] [ 4] [0320] +08:37:29 [ 18] [ 4] [6011] +08:37:29 [ 19] [ 3] [418] +08:37:29 [ 22] [ 3] [021] +08:37:29 [ 32] [ 6] [621354] +08:37:29 [ 35] [ 27] [1808931100010790=1803500236] +08:37:29 [ 37] [ 12] [507904599628] +08:37:29 [ 38] [ 6] [686492] +08:37:29 [ 39] [ 2] [00] +08:37:29 [ 41] [ 8] [02002200] +08:37:29 [ 49] [ 3] [418] +08:37:29 [ 52] [ 16] [74734ADE236B9A24] +08:37:29 [ 54] [ 20] [1001418C002402640800] +08:37:29 ============================================================================ +08:37:29 Calculate Source COMM Id = 0 +08:37:29 ============================================================================ +08:37:29 + + +waiting on router queue for slot.... +08:37:34 ============================================================================ +08:37:34 Slot Id : <432> +08:37:34 Transaction Type : REQUEST +08:37:34 Received From : +08:37:34 ============================================================================ +08:37:34 FNo. Len. Field Value +08:37:34 ============================================================================ +08:37:34 [ 1] [ 4] [0800] +08:37:34 [ 7] [ 10] [0320013642] +08:37:34 [ 11] [ 6] [155448] +08:37:34 [ 70] [ 3] [301] +08:37:34 ============================================================================ +08:37:34 + + +waiting on router queue for slot.... +08:37:34 Sending to : +08:37:34 ============================================================================ +08:37:34 ============================================================================ +08:37:34 Slot Id : <432> +08:37:34 Transaction Type : RESPONSE +08:37:34 Received From : +08:37:34 ============================================================================ +08:37:34 FNo. Len. Field Value +08:37:34 ============================================================================ +08:37:34 [ 1] [ 4] [0810] +08:37:34 [ 7] [ 10] [0320013642] +08:37:34 [ 11] [ 6] [155448] +08:37:34 [ 39] [ 2] [00] +08:37:34 [ 70] [ 3] [301] +08:37:34 ============================================================================ +08:37:34 Calculate Source COMM Id = 2 +08:37:34 ============================================================================ +08:37:34 + + +waiting on router queue for slot.... +08:37:45 ============================================================================ +08:37:45 Slot Id : <482> +08:37:45 Transaction Type : REQUEST +08:37:45 Received From : +08:37:45 ============================================================================ +08:37:45 FNo. Len. Field Value +08:37:45 ============================================================================ +08:37:45 [ 1] [ 4] [0800] +08:37:45 [ 7] [ 10] [0320013653] +08:37:45 [ 11] [ 6] [155449] +08:37:45 [ 70] [ 3] [301] +08:37:45 ============================================================================ +08:37:45 + + +waiting on router queue for slot.... +08:37:45 Sending to : +08:37:45 ============================================================================ +08:37:45 ============================================================================ +08:37:45 Slot Id : <482> +08:37:45 Transaction Type : RESPONSE +08:37:45 Received From : +08:37:45 ============================================================================ +08:37:45 FNo. Len. Field Value +08:37:45 ============================================================================ +08:37:45 [ 1] [ 4] [0810] +08:37:45 [ 7] [ 10] [0320013653] +08:37:45 [ 11] [ 6] [155449] +08:37:45 [ 39] [ 2] [00] +08:37:45 [ 70] [ 3] [301] +08:37:45 ============================================================================ +08:37:45 Calculate Source COMM Id = 2 +08:37:45 ============================================================================ +08:37:45 + + +waiting on router queue for slot.... +08:37:50 ============================================================================ +08:37:50 Slot Id : <453> +08:37:50 Transaction Type : REQUEST +08:37:50 Received From : +08:37:50 ============================================================================ +08:37:50 FNo. Len. Field Value +08:37:50 ============================================================================ +08:37:50 [ 1] [ 4] [0200] +08:37:50 [ 2] [ 16] [1888880000094458] +08:37:50 [ 3] [ 6] [010000] +08:37:50 [ 4] [ 12] [000100000000] +08:37:50 [ 7] [ 10] [0320083542] +08:37:50 [ 11] [ 6] [933351] +08:37:50 [ 12] [ 6] [083542] +08:37:50 [ 13] [ 4] [0320] +08:37:50 [ 15] [ 4] [0320] +08:37:50 [ 18] [ 4] [6011] +08:37:50 [ 19] [ 3] [418] +08:37:50 [ 22] [ 3] [021] +08:37:50 [ 25] [ 2] [01] +08:37:50 [ 28] [ 9] [D00002000] +08:37:50 [ 32] [ 6] [668899] +08:37:50 [ 35] [ 32] [1888880000094458=000010100000658] +08:37:50 [ 37] [ 12] [507902001637] +08:37:50 [ 41] [ 8] [03212002] +08:37:50 [ 42] [ 15] [APT ] +08:37:50 [ 43] [ 40] [ ROAD 8 A NAHIN LAO] +08:37:50 [ 49] [ 3] [418] +08:37:50 [ 52] [ 16] [C938AADCF4EE78EF] +08:37:50 ============================================================================ +08:37:50 + + +waiting on router queue for slot.... +08:37:50 Sending to : +08:37:50 ============================================================================ +08:37:50 Sending to : +08:37:50 ============================================================================ +08:37:51 ============================================================================ +08:37:51 Slot Id : <453> +08:37:51 Transaction Type : REQUEST +08:37:51 Received From : +08:37:51 ============================================================================ +08:37:51 FNo. Len. Field Value +08:37:51 ============================================================================ +08:37:51 [ 1] [ 4] [0200] +08:37:51 [ 2] [ 16] [1888880000094458] +08:37:51 [ 3] [ 6] [010000] +08:37:51 [ 4] [ 12] [000100000000] +08:37:51 [ 7] [ 10] [0320083542] +08:37:51 [ 11] [ 6] [933351] +08:37:51 [ 12] [ 6] [083542] +08:37:51 [ 13] [ 4] [0320] +08:37:51 [ 15] [ 4] [0320] +08:37:51 [ 18] [ 4] [6011] +08:37:51 [ 19] [ 3] [418] +08:37:51 [ 22] [ 3] [021] +08:37:51 [ 25] [ 2] [01] +08:37:51 [ 28] [ 9] [D00002000] +08:37:51 [ 32] [ 6] [668899] +08:37:51 [ 35] [ 32] [1888880000094458=000010100000658] +08:37:51 [ 37] [ 12] [507902001637] +08:37:51 [ 41] [ 8] [03212002] +08:37:51 [ 42] [ 15] [APT ] +08:37:51 [ 43] [ 40] [ ROAD 8 A NAHIN LAO] +08:37:51 [ 49] [ 3] [418] +08:37:51 [ 52] [ 16] [C938AADCF4EE78EF] +08:37:51 ============================================================================ +08:37:51 + + +waiting on router queue for slot.... +08:37:51 Sending to : +08:37:51 ============================================================================ +08:37:51 ============================================================================ +08:37:51 Slot Id : <453> +08:37:51 Transaction Type : REQUEST +08:37:51 Received From : +08:37:51 ============================================================================ +08:37:51 FNo. Len. Field Value +08:37:51 ============================================================================ +08:37:51 [ 1] [ 4] [0200] +08:37:51 [ 2] [ 16] [1888880000094458] +08:37:51 [ 3] [ 6] [010000] +08:37:51 [ 4] [ 12] [000100000000] +08:37:51 [ 7] [ 10] [0320083542] +08:37:51 [ 11] [ 6] [933351] +08:37:51 [ 12] [ 6] [083542] +08:37:51 [ 13] [ 4] [0320] +08:37:51 [ 15] [ 4] [0320] +08:37:51 [ 18] [ 4] [6011] +08:37:51 [ 19] [ 3] [418] +08:37:51 [ 22] [ 3] [021] +08:37:51 [ 25] [ 2] [01] +08:37:51 [ 28] [ 9] [D00002000] +08:37:51 [ 32] [ 6] [668899] +08:37:51 [ 35] [ 32] [1888880000094458=000010100000658] +08:37:51 [ 37] [ 12] [507902001637] +08:37:51 [ 41] [ 8] [03212002] +08:37:51 [ 42] [ 15] [APT ] +08:37:51 [ 43] [ 40] [ ROAD 8 A NAHIN LAO] +08:37:51 [ 49] [ 3] [418] +08:37:51 [ 52] [ 16] [6D33AF6825EB7DF0] +08:37:51 ============================================================================ +08:37:51 + + +waiting on router queue for slot.... +08:37:51 Sending to : <5> +08:37:51 ============================================================================ +08:37:52 ============================================================================ +08:37:52 Slot Id : <488> +08:37:52 Transaction Type : REQUEST +08:37:52 Received From : +08:37:52 ============================================================================ +08:37:52 FNo. Len. Field Value +08:37:52 ============================================================================ +08:37:52 [ 1] [ 4] [0200] +08:37:52 [ 2] [ 16] [6213545000955108] +08:37:52 [ 3] [ 6] [011000] +08:37:52 [ 4] [ 12] [000080000000] +08:37:52 [ 7] [ 10] [0320013658] +08:37:52 [ 11] [ 6] [267230] +08:37:52 [ 12] [ 6] [083658] +08:37:52 [ 13] [ 4] [0320] +08:37:52 [ 14] [ 4] [4912] +08:37:52 [ 15] [ 4] [0320] +08:37:52 [ 18] [ 4] [6011] +08:37:52 [ 19] [ 3] [418] +08:37:52 [ 22] [ 3] [021] +08:37:52 [ 25] [ 2] [01] +08:37:52 [ 28] [ 9] [D00002000] +08:37:52 [ 32] [ 6] [180893] +08:37:52 [ 35] [ 32] [6213545000955108=491212015510046] +08:37:52 [ 37] [ 12] [507901267230] +08:37:52 [ 41] [ 8] [0324BKDT] +08:37:52 [ 42] [ 15] [999999 ] +08:37:52 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +08:37:52 [ 49] [ 3] [418] +08:37:52 [ 52] [ 16] [230AB4DCAD8600EC] +08:37:52 ============================================================================ +08:37:52 + + +waiting on router queue for slot.... +08:37:52 Sending to : +08:37:52 ============================================================================ +08:37:52 Sending to : +08:37:52 ============================================================================ +08:37:52 ============================================================================ +08:37:52 Slot Id : <488> +08:37:52 Transaction Type : REQUEST +08:37:52 Received From : +08:37:52 ============================================================================ +08:37:52 FNo. Len. Field Value +08:37:52 ============================================================================ +08:37:52 [ 1] [ 4] [0200] +08:37:52 [ 2] [ 16] [6213545000955108] +08:37:52 [ 3] [ 6] [011000] +08:37:52 [ 4] [ 12] [000080000000] +08:37:52 [ 7] [ 10] [0320013658] +08:37:52 [ 11] [ 6] [267230] +08:37:52 [ 12] [ 6] [083658] +08:37:52 [ 13] [ 4] [0320] +08:37:52 [ 14] [ 4] [4912] +08:37:52 [ 15] [ 4] [0320] +08:37:52 [ 18] [ 4] [6011] +08:37:52 [ 19] [ 3] [418] +08:37:52 [ 22] [ 3] [021] +08:37:52 [ 25] [ 2] [01] +08:37:52 [ 28] [ 9] [D00002000] +08:37:52 [ 32] [ 6] [180893] +08:37:52 [ 35] [ 32] [6213545000955108=491212015510046] +08:37:52 [ 37] [ 12] [507901267230] +08:37:52 [ 41] [ 8] [0324BKDT] +08:37:52 [ 42] [ 15] [999999 ] +08:37:52 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +08:37:52 [ 49] [ 3] [418] +08:37:52 [ 52] [ 16] [230AB4DCAD8600EC] +08:37:52 ============================================================================ +08:37:52 + + +waiting on router queue for slot.... +08:37:52 Sending to : +08:37:52 ============================================================================ +08:37:52 ============================================================================ +08:37:52 Slot Id : <488> +08:37:52 Transaction Type : REQUEST +08:37:52 Received From : +08:37:52 ============================================================================ +08:37:52 FNo. Len. Field Value +08:37:52 ============================================================================ +08:37:52 [ 1] [ 4] [0200] +08:37:52 [ 2] [ 16] [6213545000955108] +08:37:52 [ 3] [ 6] [011000] +08:37:52 [ 4] [ 12] [000080000000] +08:37:52 [ 7] [ 10] [0320013658] +08:37:52 [ 11] [ 6] [267230] +08:37:52 [ 12] [ 6] [083658] +08:37:52 [ 13] [ 4] [0320] +08:37:52 [ 14] [ 4] [4912] +08:37:52 [ 15] [ 4] [0320] +08:37:52 [ 18] [ 4] [6011] +08:37:52 [ 19] [ 3] [418] +08:37:52 [ 22] [ 3] [021] +08:37:52 [ 25] [ 2] [01] +08:37:52 [ 28] [ 9] [D00002000] +08:37:52 [ 32] [ 6] [180893] +08:37:52 [ 35] [ 32] [6213545000955108=491212015510046] +08:37:52 [ 37] [ 12] [507901267230] +08:37:52 [ 41] [ 8] [0324BKDT] +08:37:52 [ 42] [ 15] [999999 ] +08:37:52 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +08:37:52 [ 49] [ 3] [418] +08:37:52 [ 52] [ 16] [1C5FCAFC5B1ED8CA] +08:37:52 ============================================================================ +08:37:52 + + +waiting on router queue for slot.... +08:37:52 Sending to : <0> +08:37:52 ============================================================================ +08:37:53 ============================================================================ +08:37:53 Slot Id : <488> +08:37:53 Transaction Type : RESPONSE +08:37:53 Received From : +08:37:53 ============================================================================ +08:37:53 FNo. Len. Field Value +08:37:53 ============================================================================ +08:37:53 [ 1] [ 4] [0210] +08:37:53 [ 2] [ 16] [6213545000955108] +08:37:53 [ 3] [ 6] [011000] +08:37:53 [ 4] [ 12] [000080000000] +08:37:53 [ 7] [ 10] [0320013658] +08:37:53 [ 11] [ 6] [267230] +08:37:53 [ 12] [ 6] [083658] +08:37:53 [ 13] [ 4] [0320] +08:37:53 [ 15] [ 4] [0320] +08:37:53 [ 18] [ 4] [6011] +08:37:53 [ 19] [ 3] [418] +08:37:53 [ 32] [ 6] [180893] +08:37:53 [ 35] [ 32] [6213545000955108=491212015510046] +08:37:53 [ 37] [ 12] [507901267230] +08:37:53 [ 38] [ 6] [690405] +08:37:53 [ 39] [ 2] [00] +08:37:53 [ 41] [ 8] [0324BKDT] +08:37:53 [ 49] [ 3] [418] +08:37:53 [ 54] [ 40] [1001418C0002536096691002418C000253609669] +08:37:53 ============================================================================ +08:37:53 Sending to : +08:37:53 ============================================================================ +08:37:53 + + +waiting on router queue for slot.... +08:37:54 ============================================================================ +08:37:54 Slot Id : <488> +08:37:54 Transaction Type : RESPONSE +08:37:54 Received From : +08:37:54 ============================================================================ +08:37:54 FNo. Len. Field Value +08:37:54 ============================================================================ +08:37:54 [ 1] [ 4] [0210] +08:37:54 [ 2] [ 16] [6213545000955108] +08:37:54 [ 3] [ 6] [011000] +08:37:54 [ 4] [ 12] [000080000000] +08:37:54 [ 7] [ 10] [0320013658] +08:37:54 [ 11] [ 6] [267230] +08:37:54 [ 12] [ 6] [083658] +08:37:54 [ 13] [ 4] [0320] +08:37:54 [ 15] [ 4] [0320] +08:37:54 [ 18] [ 4] [6011] +08:37:54 [ 19] [ 3] [418] +08:37:54 [ 32] [ 6] [180893] +08:37:54 [ 35] [ 32] [6213545000955108=491212015510046] +08:37:54 [ 37] [ 12] [507901267230] +08:37:54 [ 38] [ 6] [690405] +08:37:54 [ 39] [ 2] [00] +08:37:54 [ 41] [ 8] [0324BKDT] +08:37:54 [ 49] [ 3] [418] +08:37:54 [ 54] [ 40] [1001418C0002536096691002418C000253609669] +08:37:54 ============================================================================ +08:37:54 Calculate Source COMM Id = 2 +08:37:54 ============================================================================ +08:37:54 + + +waiting on router queue for slot.... +08:37:54 ============================================================================ +08:37:54 Slot Id : <470> +08:37:54 Transaction Type : REQUEST +08:37:54 Received From : +08:37:54 ============================================================================ +08:37:54 FNo. Len. Field Value +08:37:54 ============================================================================ +08:37:54 [ 1] [ 4] [0200] +08:37:54 [ 2] [ 16] [6688990105931701] +08:37:54 [ 3] [ 6] [011000] +08:37:54 [ 4] [ 12] [000005000000] +08:37:54 [ 7] [ 10] [0320083751] +08:37:54 [ 11] [ 6] [686653] +08:37:54 [ 12] [ 6] [083751] +08:37:54 [ 13] [ 4] [0320] +08:37:54 [ 15] [ 4] [0320] +08:37:54 [ 18] [ 4] [6011] +08:37:54 [ 22] [ 3] [900] +08:37:54 [ 25] [ 2] [02] +08:37:54 [ 28] [ 9] [D00002000] +08:37:54 [ 32] [ 6] [621354] +08:37:54 [ 35] [ 37] [6688990105931701=43111231170154000000] +08:37:54 [ 37] [ 12] [507905397310] +08:37:54 [ 41] [ 8] [15001300] +08:37:54 [ 42] [ 15] [NATIVE ] +08:37:54 [ 43] [ 40] [Lek20 Unit02 Bolikhamxay LAO] +08:37:54 [ 49] [ 3] [418] +08:37:54 [ 52] [ 16] [88E34DCFD9424F28] +08:37:54 ============================================================================ +08:37:54 + + +waiting on router queue for slot.... +08:37:54 Sending to : +08:37:54 ============================================================================ +08:37:54 Sending to : +08:37:54 ============================================================================ +08:37:55 ============================================================================ +08:37:55 Slot Id : <470> +08:37:55 Transaction Type : REQUEST +08:37:55 Received From : +08:37:55 ============================================================================ +08:37:55 FNo. Len. Field Value +08:37:55 ============================================================================ +08:37:55 [ 1] [ 4] [0200] +08:37:55 [ 2] [ 16] [6688990105931701] +08:37:55 [ 3] [ 6] [011000] +08:37:55 [ 4] [ 12] [000005000000] +08:37:55 [ 7] [ 10] [0320083751] +08:37:55 [ 11] [ 6] [686653] +08:37:55 [ 12] [ 6] [083751] +08:37:55 [ 13] [ 4] [0320] +08:37:55 [ 15] [ 4] [0320] +08:37:55 [ 18] [ 4] [6011] +08:37:55 [ 22] [ 3] [900] +08:37:55 [ 25] [ 2] [02] +08:37:55 [ 28] [ 9] [D00002000] +08:37:55 [ 32] [ 6] [621354] +08:37:55 [ 35] [ 37] [6688990105931701=43111231170154000000] +08:37:55 [ 37] [ 12] [507905397310] +08:37:55 [ 41] [ 8] [15001300] +08:37:55 [ 42] [ 15] [NATIVE ] +08:37:55 [ 43] [ 40] [Lek20 Unit02 Bolikhamxay LAO] +08:37:55 [ 49] [ 3] [418] +08:37:55 [ 52] [ 16] [88E34DCFD9424F28] +08:37:55 ============================================================================ +08:37:55 + + +waiting on router queue for slot.... +08:37:55 Sending to : +08:37:55 ============================================================================ +08:37:55 ============================================================================ +08:37:55 Slot Id : <470> +08:37:55 Transaction Type : REQUEST +08:37:55 Received From : +08:37:55 ============================================================================ +08:37:55 FNo. Len. Field Value +08:37:55 ============================================================================ +08:37:55 [ 1] [ 4] [0200] +08:37:55 [ 2] [ 16] [6688990105931701] +08:37:55 [ 3] [ 6] [011000] +08:37:55 [ 4] [ 12] [000005000000] +08:37:55 [ 7] [ 10] [0320083751] +08:37:55 [ 11] [ 6] [686653] +08:37:55 [ 12] [ 6] [083751] +08:37:55 [ 13] [ 4] [0320] +08:37:55 [ 15] [ 4] [0320] +08:37:55 [ 18] [ 4] [6011] +08:37:55 [ 22] [ 3] [900] +08:37:55 [ 25] [ 2] [02] +08:37:55 [ 28] [ 9] [D00002000] +08:37:55 [ 32] [ 6] [621354] +08:37:55 [ 35] [ 37] [6688990105931701=43111231170154000000] +08:37:55 [ 37] [ 12] [507905397310] +08:37:55 [ 41] [ 8] [15001300] +08:37:55 [ 42] [ 15] [NATIVE ] +08:37:55 [ 43] [ 40] [Lek20 Unit02 Bolikhamxay LAO] +08:37:55 [ 49] [ 3] [418] +08:37:55 [ 52] [ 16] [E67972FC7CF1AC4B] +08:37:55 ============================================================================ +08:37:55 + + +waiting on router queue for slot.... +08:37:55 Sending to : <4> +08:37:55 ============================================================================ +08:37:56 ============================================================================ +08:37:56 Slot Id : <470> +08:37:56 Transaction Type : RESPONSE +08:37:56 Received From : +08:37:56 ============================================================================ +08:37:56 FNo. Len. Field Value +08:37:56 ============================================================================ +08:37:56 [ 1] [ 4] [0210] +08:37:56 [ 2] [ 16] [6688990105931701] +08:37:56 [ 3] [ 6] [011000] +08:37:56 [ 4] [ 12] [000005000000] +08:37:56 [ 11] [ 6] [686653] +08:37:56 [ 12] [ 6] [083751] +08:37:56 [ 15] [ 4] [0320] +08:37:56 [ 18] [ 4] [6011] +08:37:56 [ 32] [ 6] [621354] +08:37:56 [ 35] [ 37] [6688990105931701=43111231170154000000] +08:37:56 [ 37] [ 12] [507905397310] +08:37:56 [ 38] [ 6] [711210] +08:37:56 [ 39] [ 2] [00] +08:37:56 [ 41] [ 8] [15001300] +08:37:56 [ 49] [ 3] [418] +08:37:56 [ 54] [ 20] [1002418C000007957121] +08:37:56 ============================================================================ +08:37:56 Sending to : +08:37:56 ============================================================================ +08:37:56 + + +waiting on router queue for slot.... +08:37:56 ============================================================================ +08:37:56 Slot Id : <495> +08:37:56 Transaction Type : REQUEST +08:37:56 Received From : +08:37:56 ============================================================================ +08:37:56 FNo. Len. Field Value +08:37:56 ============================================================================ +08:37:56 [ 1] [ 4] [0800] +08:37:56 [ 7] [ 10] [0320154945] +08:37:56 [ 11] [ 6] [084945] +08:37:56 [ 37] [ 12] [57908084945] +08:37:56 [ 70] [ 3] [301] +08:37:56 ============================================================================ +08:37:56 + + +waiting on router queue for slot.... +08:37:56 Sending to : +08:37:56 ============================================================================ +08:37:56 ============================================================================ +08:37:56 Slot Id : <495> +08:37:56 Transaction Type : RESPONSE +08:37:56 Received From : +08:37:56 ============================================================================ +08:37:56 FNo. Len. Field Value +08:37:56 ============================================================================ +08:37:56 [ 1] [ 4] [0810] +08:37:56 [ 7] [ 10] [0320154945] +08:37:56 [ 11] [ 6] [084945] +08:37:56 [ 37] [ 12] [579080849450] +08:37:56 [ 39] [ 2] [00] +08:37:56 [ 70] [ 3] [810] +08:37:56 ============================================================================ +08:37:56 Calculate Source COMM Id = 6 +08:37:56 ============================================================================ +08:37:56 + + +waiting on router queue for slot.... +08:37:57 ============================================================================ +08:37:57 Slot Id : <470> +08:37:57 Transaction Type : RESPONSE +08:37:57 Received From : +08:37:57 ============================================================================ +08:37:57 FNo. Len. Field Value +08:37:57 ============================================================================ +08:37:57 [ 1] [ 4] [0210] +08:37:57 [ 2] [ 16] [6688990105931701] +08:37:57 [ 3] [ 6] [011000] +08:37:57 [ 4] [ 12] [000005000000] +08:37:57 [ 11] [ 6] [686653] +08:37:57 [ 12] [ 6] [083751] +08:37:57 [ 15] [ 4] [0320] +08:37:57 [ 18] [ 4] [6011] +08:37:57 [ 32] [ 6] [621354] +08:37:57 [ 35] [ 37] [6688990105931701=43111231170154000000] +08:37:57 [ 37] [ 12] [507905397310] +08:37:57 [ 38] [ 6] [711210] +08:37:57 [ 39] [ 2] [00] +08:37:57 [ 41] [ 8] [15001300] +08:37:57 [ 49] [ 3] [418] +08:37:57 [ 54] [ 20] [1002418C000007957121] +08:37:57 ============================================================================ +08:37:57 Calculate Source COMM Id = 0 +08:37:57 ============================================================================ +08:37:57 + + +waiting on router queue for slot.... +08:37:59 ============================================================================ +08:37:59 Slot Id : <453> +08:37:59 Transaction Type : RESPONSE +08:37:59 Received From : +08:37:59 ============================================================================ +08:37:59 FNo. Len. Field Value +08:37:59 ============================================================================ +08:37:59 [ 1] [ 4] [0210] +08:37:59 [ 2] [ 16] [1888880000094458] +08:37:59 [ 3] [ 6] [010000] +08:37:59 [ 4] [ 12] [000100000000] +08:37:59 [ 7] [ 10] [0320083542] +08:37:59 [ 11] [ 6] [933351] +08:37:59 [ 12] [ 6] [083542] +08:37:59 [ 13] [ 4] [0320] +08:37:59 [ 15] [ 4] [0320] +08:37:59 [ 18] [ 4] [6011] +08:37:59 [ 19] [ 3] [418] +08:37:59 [ 32] [ 6] [668899] +08:37:59 [ 37] [ 12] [507902001637] +08:37:59 [ 38] [ 6] [904926] +08:37:59 [ 39] [ 2] [00] +08:37:59 [ 41] [ 8] [03212002] +08:37:59 [ 49] [ 3] [418] +08:37:59 [ 54] [ 0] [] +08:37:59 ============================================================================ +08:37:59 Sending to : +08:37:59 ============================================================================ +08:37:59 + + +waiting on router queue for slot.... +08:38:00 ============================================================================ +08:38:00 Slot Id : <453> +08:38:00 Transaction Type : RESPONSE +08:38:00 Received From : +08:38:00 ============================================================================ +08:38:00 FNo. Len. Field Value +08:38:00 ============================================================================ +08:38:00 [ 1] [ 4] [0210] +08:38:00 [ 2] [ 16] [1888880000094458] +08:38:00 [ 3] [ 6] [010000] +08:38:00 [ 4] [ 12] [000100000000] +08:38:00 [ 7] [ 10] [0320083542] +08:38:00 [ 11] [ 6] [933351] +08:38:00 [ 12] [ 6] [083542] +08:38:00 [ 13] [ 4] [0320] +08:38:00 [ 15] [ 4] [0320] +08:38:00 [ 18] [ 4] [6011] +08:38:00 [ 19] [ 3] [418] +08:38:00 [ 32] [ 6] [668899] +08:38:00 [ 37] [ 12] [507902001637] +08:38:00 [ 38] [ 6] [904926] +08:38:00 [ 39] [ 2] [00] +08:38:00 [ 41] [ 8] [03212002] +08:38:00 [ 49] [ 3] [418] +08:38:00 [ 54] [ 0] [] +08:38:00 ============================================================================ +08:38:00 Calculate Source COMM Id = 4 +08:38:00 ============================================================================ +08:38:00 + + +waiting on router queue for slot.... +08:38:04 ============================================================================ +08:38:04 Slot Id : <463> +08:38:04 Transaction Type : REQUEST +08:38:04 Received From : +08:38:04 ============================================================================ +08:38:04 FNo. Len. Field Value +08:38:04 ============================================================================ +08:38:04 [ 1] [ 4] [0200] +08:38:04 [ 2] [ 16] [1808931400006662] +08:38:04 [ 3] [ 6] [010000] +08:38:04 [ 4] [ 12] [000050000000] +08:38:04 [ 7] [ 10] [0320083801] +08:38:04 [ 11] [ 6] [686687] +08:38:04 [ 12] [ 6] [083801] +08:38:04 [ 13] [ 4] [0320] +08:38:04 [ 15] [ 4] [0320] +08:38:04 [ 18] [ 4] [6011] +08:38:04 [ 22] [ 3] [900] +08:38:04 [ 25] [ 2] [02] +08:38:04 [ 28] [ 9] [D00002000] +08:38:04 [ 32] [ 6] [621354] +08:38:04 [ 35] [ 27] [1808931400006662=1803500859] +08:38:04 [ 37] [ 12] [507904672330] +08:38:04 [ 41] [ 8] [18000600] +08:38:04 [ 42] [ 15] [NATIVE ] +08:38:04 [ 43] [ 40] [Phongsaly Branch 01 Phongsaly LAO] +08:38:04 [ 49] [ 3] [418] +08:38:04 [ 52] [ 16] [E12366CBD5705BD8] +08:38:04 ============================================================================ +08:38:04 + + +waiting on router queue for slot.... +08:38:04 Sending to : +08:38:04 ============================================================================ +08:38:04 Sending to : +08:38:04 ============================================================================ +08:38:05 ============================================================================ +08:38:05 Slot Id : <463> +08:38:05 Transaction Type : REQUEST +08:38:05 Received From : +08:38:05 ============================================================================ +08:38:05 FNo. Len. Field Value +08:38:05 ============================================================================ +08:38:05 [ 1] [ 4] [0200] +08:38:05 [ 2] [ 16] [1808931400006662] +08:38:05 [ 3] [ 6] [010000] +08:38:05 [ 4] [ 12] [000050000000] +08:38:05 [ 7] [ 10] [0320083801] +08:38:05 [ 11] [ 6] [686687] +08:38:05 [ 12] [ 6] [083801] +08:38:05 [ 13] [ 4] [0320] +08:38:05 [ 15] [ 4] [0320] +08:38:05 [ 18] [ 4] [6011] +08:38:05 [ 22] [ 3] [900] +08:38:05 [ 25] [ 2] [02] +08:38:05 [ 28] [ 9] [D00002000] +08:38:05 [ 32] [ 6] [621354] +08:38:05 [ 35] [ 27] [1808931400006662=1803500859] +08:38:05 [ 37] [ 12] [507904672330] +08:38:05 [ 41] [ 8] [18000600] +08:38:05 [ 42] [ 15] [NATIVE ] +08:38:05 [ 43] [ 40] [Phongsaly Branch 01 Phongsaly LAO] +08:38:05 [ 49] [ 3] [418] +08:38:05 [ 52] [ 16] [E12366CBD5705BD8] +08:38:05 ============================================================================ +08:38:05 + + +waiting on router queue for slot.... +08:38:05 Sending to : +08:38:05 ============================================================================ +08:38:05 ============================================================================ +08:38:05 Slot Id : <463> +08:38:05 Transaction Type : REQUEST +08:38:05 Received From : +08:38:05 ============================================================================ +08:38:05 FNo. Len. Field Value +08:38:05 ============================================================================ +08:38:05 [ 1] [ 4] [0200] +08:38:05 [ 2] [ 16] [1808931400006662] +08:38:05 [ 3] [ 6] [010000] +08:38:05 [ 4] [ 12] [000050000000] +08:38:05 [ 7] [ 10] [0320083801] +08:38:05 [ 11] [ 6] [686687] +08:38:05 [ 12] [ 6] [083801] +08:38:05 [ 13] [ 4] [0320] +08:38:05 [ 15] [ 4] [0320] +08:38:05 [ 18] [ 4] [6011] +08:38:05 [ 22] [ 3] [900] +08:38:05 [ 25] [ 2] [02] +08:38:05 [ 28] [ 9] [D00002000] +08:38:05 [ 32] [ 6] [621354] +08:38:05 [ 35] [ 27] [1808931400006662=1803500859] +08:38:05 [ 37] [ 12] [507904672330] +08:38:05 [ 41] [ 8] [18000600] +08:38:05 [ 42] [ 15] [NATIVE ] +08:38:05 [ 43] [ 40] [Phongsaly Branch 01 Phongsaly LAO] +08:38:05 [ 49] [ 3] [418] +08:38:05 [ 52] [ 16] [6B9A6C295964D7E0] +08:38:05 ============================================================================ +08:38:05 + + +waiting on router queue for slot.... +08:38:05 Sending to : <2> +08:38:05 ============================================================================ +08:38:07 ============================================================================ +08:38:07 Slot Id : <490> +08:38:07 Transaction Type : REQUEST +08:38:07 Received From : +08:38:07 ============================================================================ +08:38:07 FNo. Len. Field Value +08:38:07 ============================================================================ +08:38:07 [ 1] [ 4] [0200] +08:38:07 [ 2] [ 16] [6213543000120500] +08:38:07 [ 3] [ 6] [010000] +08:38:07 [ 4] [ 12] [000050000000] +08:38:07 [ 7] [ 10] [0320083558] +08:38:07 [ 11] [ 6] [933362] +08:38:07 [ 12] [ 6] [083558] +08:38:07 [ 13] [ 4] [0320] +08:38:07 [ 15] [ 4] [0320] +08:38:07 [ 18] [ 4] [6011] +08:38:07 [ 19] [ 3] [418] +08:38:07 [ 22] [ 3] [021] +08:38:07 [ 25] [ 2] [01] +08:38:07 [ 28] [ 9] [D00002000] +08:38:07 [ 32] [ 6] [668899] +08:38:07 [ 35] [ 32] [6213543000120500=491212012050726] +08:38:07 [ 37] [ 12] [507900961542] +08:38:07 [ 41] [ 8] [03407001] +08:38:07 [ 42] [ 15] [APT ] +08:38:07 [ 43] [ 40] [ HONGSA XAYABOULY LAO] +08:38:07 [ 49] [ 3] [418] +08:38:07 [ 52] [ 16] [832D56D8DC5BA829] +08:38:07 ============================================================================ +08:38:07 + + +waiting on router queue for slot.... +08:38:07 Sending to : +08:38:07 ============================================================================ +08:38:07 Sending to : +08:38:07 ============================================================================ +08:38:07 ============================================================================ +08:38:07 Slot Id : <490> +08:38:07 Transaction Type : REQUEST +08:38:07 Received From : +08:38:07 ============================================================================ +08:38:07 FNo. Len. Field Value +08:38:07 ============================================================================ +08:38:07 [ 1] [ 4] [0200] +08:38:07 [ 2] [ 16] [6213543000120500] +08:38:07 [ 3] [ 6] [010000] +08:38:07 [ 4] [ 12] [000050000000] +08:38:07 [ 7] [ 10] [0320083558] +08:38:07 [ 11] [ 6] [933362] +08:38:07 [ 12] [ 6] [083558] +08:38:07 [ 13] [ 4] [0320] +08:38:07 [ 15] [ 4] [0320] +08:38:07 [ 18] [ 4] [6011] +08:38:07 [ 19] [ 3] [418] +08:38:07 [ 22] [ 3] [021] +08:38:07 [ 25] [ 2] [01] +08:38:07 [ 28] [ 9] [D00002000] +08:38:07 [ 32] [ 6] [668899] +08:38:07 [ 35] [ 32] [6213543000120500=491212012050726] +08:38:07 [ 37] [ 12] [507900961542] +08:38:07 [ 41] [ 8] [03407001] +08:38:07 [ 42] [ 15] [APT ] +08:38:07 [ 43] [ 40] [ HONGSA XAYABOULY LAO] +08:38:07 [ 49] [ 3] [418] +08:38:07 [ 52] [ 16] [832D56D8DC5BA829] +08:38:07 ============================================================================ +08:38:07 + + +waiting on router queue for slot.... +08:38:07 Sending to : +08:38:07 ============================================================================ +08:38:07 ============================================================================ +08:38:07 Slot Id : <490> +08:38:07 Transaction Type : REQUEST +08:38:07 Received From : +08:38:07 ============================================================================ +08:38:07 FNo. Len. Field Value +08:38:07 ============================================================================ +08:38:07 [ 1] [ 4] [0200] +08:38:07 [ 2] [ 16] [6213543000120500] +08:38:07 [ 3] [ 6] [010000] +08:38:07 [ 4] [ 12] [000050000000] +08:38:07 [ 7] [ 10] [0320083558] +08:38:07 [ 11] [ 6] [933362] +08:38:07 [ 12] [ 6] [083558] +08:38:07 [ 13] [ 4] [0320] +08:38:07 [ 15] [ 4] [0320] +08:38:07 [ 18] [ 4] [6011] +08:38:07 [ 19] [ 3] [418] +08:38:07 [ 22] [ 3] [021] +08:38:07 [ 25] [ 2] [01] +08:38:07 [ 28] [ 9] [D00002000] +08:38:07 [ 32] [ 6] [668899] +08:38:07 [ 35] [ 32] [6213543000120500=491212012050726] +08:38:07 [ 37] [ 12] [507900961542] +08:38:07 [ 41] [ 8] [03407001] +08:38:07 [ 42] [ 15] [APT ] +08:38:07 [ 43] [ 40] [ HONGSA XAYABOULY LAO] +08:38:07 [ 49] [ 3] [418] +08:38:07 [ 52] [ 16] [E047B799C138B6DB] +08:38:07 ============================================================================ +08:38:07 + + +waiting on router queue for slot.... +08:38:07 Sending to : <0> +08:38:07 ============================================================================ +08:38:08 ============================================================================ +08:38:08 Slot Id : <490> +08:38:08 Transaction Type : RESPONSE +08:38:08 Received From : +08:38:08 ============================================================================ +08:38:08 FNo. Len. Field Value +08:38:08 ============================================================================ +08:38:08 [ 1] [ 4] [0210] +08:38:08 [ 2] [ 16] [6213543000120500] +08:38:08 [ 3] [ 6] [010000] +08:38:08 [ 4] [ 12] [000050000000] +08:38:08 [ 7] [ 10] [0320083558] +08:38:08 [ 11] [ 6] [933362] +08:38:08 [ 12] [ 6] [083558] +08:38:08 [ 13] [ 4] [0320] +08:38:08 [ 15] [ 4] [0320] +08:38:08 [ 18] [ 4] [6011] +08:38:08 [ 19] [ 3] [418] +08:38:08 [ 32] [ 6] [668899] +08:38:08 [ 35] [ 32] [6213543000120500=491212012050726] +08:38:08 [ 37] [ 12] [507900961542] +08:38:08 [ 38] [ 6] [933362] +08:38:08 [ 39] [ 2] [51] +08:38:08 [ 41] [ 8] [03407001] +08:38:08 [ 49] [ 3] [418] +08:38:08 [ 54] [ 40] [0001418C0000462098740002418C000046209874] +08:38:08 ============================================================================ +08:38:08 Sending to : +08:38:08 ============================================================================ +08:38:08 + + +waiting on router queue for slot.... +08:38:09 ============================================================================ +08:38:09 Slot Id : <490> +08:38:09 Transaction Type : RESPONSE +08:38:09 Received From : +08:38:09 ============================================================================ +08:38:09 FNo. Len. Field Value +08:38:09 ============================================================================ +08:38:09 [ 1] [ 4] [0210] +08:38:09 [ 2] [ 16] [6213543000120500] +08:38:09 [ 3] [ 6] [010000] +08:38:09 [ 4] [ 12] [000050000000] +08:38:09 [ 7] [ 10] [0320083558] +08:38:09 [ 11] [ 6] [933362] +08:38:09 [ 12] [ 6] [083558] +08:38:09 [ 13] [ 4] [0320] +08:38:09 [ 15] [ 4] [0320] +08:38:09 [ 18] [ 4] [6011] +08:38:09 [ 19] [ 3] [418] +08:38:09 [ 32] [ 6] [668899] +08:38:09 [ 35] [ 32] [6213543000120500=491212012050726] +08:38:09 [ 37] [ 12] [507900961542] +08:38:09 [ 38] [ 6] [933362] +08:38:09 [ 39] [ 2] [51] +08:38:09 [ 41] [ 8] [03407001] +08:38:09 [ 49] [ 3] [418] +08:38:09 [ 54] [ 40] [0001418C0000462098740002418C000046209874] +08:38:09 ============================================================================ +08:38:09 Calculate Source COMM Id = 4 +08:38:09 ============================================================================ +08:38:09 + + +waiting on router queue for slot.... +08:38:13 ============================================================================ +08:38:13 Slot Id : <463> +08:38:13 Transaction Type : RESPONSE +08:38:13 Received From : +08:38:13 ============================================================================ +08:38:13 FNo. Len. Field Value +08:38:13 ============================================================================ +08:38:13 [ 1] [ 4] [0210] +08:38:13 [ 2] [ 16] [1808931400006662] +08:38:13 [ 3] [ 6] [010000] +08:38:13 [ 4] [ 12] [000050000000] +08:38:13 [ 6] [ 12] [000050000000] +08:38:13 [ 7] [ 10] [0320083801] +08:38:13 [ 11] [ 6] [686687] +08:38:13 [ 12] [ 6] [083801] +08:38:13 [ 13] [ 4] [0320] +08:38:13 [ 18] [ 4] [6011] +08:38:13 [ 19] [ 3] [418] +08:38:13 [ 22] [ 3] [021] +08:38:13 [ 32] [ 6] [621354] +08:38:13 [ 35] [ 27] [1808931400006662=1803500859] +08:38:13 [ 37] [ 12] [507904672330] +08:38:13 [ 38] [ 6] [686687] +08:38:13 [ 39] [ 2] [00] +08:38:13 [ 41] [ 8] [18000600] +08:38:13 [ 49] [ 3] [418] +08:38:13 [ 52] [ 16] [6B9A6C295964D7E0] +08:38:13 [ 54] [ 20] [1001418C000028098500] +08:38:13 ============================================================================ +08:38:13 Sending to : +08:38:13 ============================================================================ +08:38:13 + + +waiting on router queue for slot.... +08:38:14 ============================================================================ +08:38:14 Slot Id : <463> +08:38:14 Transaction Type : RESPONSE +08:38:14 Received From : +08:38:14 ============================================================================ +08:38:14 FNo. Len. Field Value +08:38:14 ============================================================================ +08:38:14 [ 1] [ 4] [0210] +08:38:14 [ 2] [ 16] [1808931400006662] +08:38:14 [ 3] [ 6] [010000] +08:38:14 [ 4] [ 12] [000050000000] +08:38:14 [ 6] [ 12] [000050000000] +08:38:14 [ 7] [ 10] [0320083801] +08:38:14 [ 11] [ 6] [686687] +08:38:14 [ 12] [ 6] [083801] +08:38:14 [ 13] [ 4] [0320] +08:38:14 [ 18] [ 4] [6011] +08:38:14 [ 19] [ 3] [418] +08:38:14 [ 22] [ 3] [021] +08:38:14 [ 32] [ 6] [621354] +08:38:14 [ 35] [ 27] [1808931400006662=1803500859] +08:38:14 [ 37] [ 12] [507904672330] +08:38:14 [ 38] [ 6] [686687] +08:38:14 [ 39] [ 2] [00] +08:38:14 [ 41] [ 8] [18000600] +08:38:14 [ 49] [ 3] [418] +08:38:14 [ 52] [ 16] [6B9A6C295964D7E0] +08:38:14 [ 54] [ 20] [1001418C000028098500] +08:38:14 ============================================================================ +08:38:14 Calculate Source COMM Id = 0 +08:38:14 ============================================================================ +08:38:14 + + +waiting on router queue for slot.... +08:38:18 ============================================================================ +08:38:18 Slot Id : <484> +08:38:18 Transaction Type : REQUEST +08:38:18 Received From : +08:38:18 ============================================================================ +08:38:18 FNo. Len. Field Value +08:38:18 ============================================================================ +08:38:18 [ 1] [ 4] [0800] +08:38:18 [ 7] [ 10] [0320013726] +08:38:18 [ 11] [ 6] [155450] +08:38:18 [ 70] [ 3] [301] +08:38:18 ============================================================================ +08:38:18 + + +waiting on router queue for slot.... +08:38:18 Sending to : +08:38:18 ============================================================================ +08:38:18 ============================================================================ +08:38:18 Slot Id : <484> +08:38:18 Transaction Type : RESPONSE +08:38:18 Received From : +08:38:18 ============================================================================ +08:38:18 FNo. Len. Field Value +08:38:18 ============================================================================ +08:38:18 [ 1] [ 4] [0810] +08:38:18 [ 7] [ 10] [0320013726] +08:38:18 [ 11] [ 6] [155450] +08:38:18 [ 39] [ 2] [00] +08:38:18 [ 70] [ 3] [301] +08:38:18 ============================================================================ +08:38:18 Calculate Source COMM Id = 2 +08:38:18 ============================================================================ +08:38:18 + + +waiting on router queue for slot.... +08:38:18 ============================================================================ +08:38:18 Slot Id : <448> +08:38:18 Transaction Type : REQUEST +08:38:18 Received From : +08:38:18 ============================================================================ +08:38:18 FNo. Len. Field Value +08:38:18 ============================================================================ +08:38:18 [ 1] [ 4] [0800] +08:38:18 [ 2] [ 5] [02531] +08:38:18 [ 3] [ 6] [579088] +08:38:18 [ 7] [ 10] [0320013818] +08:38:18 [ 11] [ 6] [806913] +08:38:18 [ 15] [ 10] [0320013818] +08:38:18 [ 37] [ 11] [57908806913] +08:38:18 [ 70] [ 3] [001] +08:38:18 ============================================================================ +08:38:18 + + +waiting on router queue for slot.... +08:38:18 ============================================================================ +08:38:18 Slot Id : <448> +08:38:18 Transaction Type : RESPONSE +08:38:18 Received From : +08:38:18 ============================================================================ +08:38:18 FNo. Len. Field Value +08:38:18 ============================================================================ +08:38:18 [ 1] [ 4] [0810] +08:38:18 [ 7] [ 10] [0320013818] +08:38:18 [ 11] [ 6] [806913] +08:38:18 [ 15] [ 4] [0320] +08:38:18 [ 37] [ 12] [57908806913] +08:38:18 [ 39] [ 2] [00] +08:38:18 [ 70] [ 3] [001] +08:38:18 ============================================================================ +08:38:18 Sending to : +08:38:18 ============================================================================ +08:38:18 + + +waiting on router queue for slot.... +08:38:28 ============================================================================ +08:38:28 Slot Id : <480> +08:38:28 Transaction Type : REQUEST +08:38:28 Received From : +08:38:28 ============================================================================ +08:38:28 FNo. Len. Field Value +08:38:28 ============================================================================ +08:38:28 [ 1] [ 4] [0800] +08:38:28 [ 7] [ 10] [0320013737] +08:38:28 [ 11] [ 6] [155451] +08:38:28 [ 70] [ 3] [301] +08:38:28 ============================================================================ +08:38:28 + + +waiting on router queue for slot.... +08:38:28 Sending to : +08:38:28 ============================================================================ +08:38:28 ============================================================================ +08:38:28 Slot Id : <480> +08:38:28 Transaction Type : RESPONSE +08:38:28 Received From : +08:38:28 ============================================================================ +08:38:28 FNo. Len. Field Value +08:38:28 ============================================================================ +08:38:28 [ 1] [ 4] [0810] +08:38:28 [ 7] [ 10] [0320013737] +08:38:28 [ 11] [ 6] [155451] +08:38:28 [ 39] [ 2] [00] +08:38:28 [ 70] [ 3] [301] +08:38:28 ============================================================================ +08:38:28 Calculate Source COMM Id = 2 +08:38:28 ============================================================================ +08:38:28 + + +waiting on router queue for slot.... +08:38:40 ============================================================================ +08:38:40 Slot Id : <471> +08:38:40 Transaction Type : REQUEST +08:38:40 Received From : +08:38:40 ============================================================================ +08:38:40 FNo. Len. Field Value +08:38:40 ============================================================================ +08:38:40 [ 1] [ 4] [0800] +08:38:40 [ 7] [ 10] [0320013749] +08:38:40 [ 11] [ 6] [155452] +08:38:40 [ 70] [ 3] [301] +08:38:40 ============================================================================ +08:38:40 + + +waiting on router queue for slot.... +08:38:40 Sending to : +08:38:40 ============================================================================ +08:38:40 ============================================================================ +08:38:40 Slot Id : <471> +08:38:40 Transaction Type : RESPONSE +08:38:40 Received From : +08:38:40 ============================================================================ +08:38:40 FNo. Len. Field Value +08:38:40 ============================================================================ +08:38:40 [ 1] [ 4] [0810] +08:38:40 [ 7] [ 10] [0320013749] +08:38:40 [ 11] [ 6] [155452] +08:38:40 [ 39] [ 2] [00] +08:38:40 [ 70] [ 3] [301] +08:38:40 ============================================================================ +08:38:40 Calculate Source COMM Id = 2 +08:38:40 ============================================================================ +08:38:40 + + +waiting on router queue for slot.... +08:38:42 ============================================================================ +08:38:42 Slot Id : <479> +08:38:42 Transaction Type : REQUEST +08:38:42 Received From : +08:38:42 ============================================================================ +08:38:42 FNo. Len. Field Value +08:38:42 ============================================================================ +08:38:42 [ 1] [ 4] [0200] +08:38:42 [ 2] [ 16] [6213544000196300] +08:38:42 [ 3] [ 6] [300000] +08:38:42 [ 4] [ 12] [000000000000] +08:38:42 [ 7] [ 10] [0320083633] +08:38:42 [ 11] [ 6] [933392] +08:38:42 [ 12] [ 6] [083633] +08:38:42 [ 13] [ 4] [0320] +08:38:42 [ 15] [ 4] [0320] +08:38:42 [ 18] [ 4] [6011] +08:38:42 [ 19] [ 3] [418] +08:38:42 [ 22] [ 3] [021] +08:38:42 [ 25] [ 2] [01] +08:38:42 [ 28] [ 9] [D00000000] +08:38:42 [ 32] [ 6] [668899] +08:38:42 [ 35] [ 32] [6213544000196300=491212019630091] +08:38:42 [ 37] [ 12] [507902531627] +08:38:42 [ 41] [ 8] [03020033] +08:38:42 [ 42] [ 15] [APT ] +08:38:42 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:38:42 [ 49] [ 3] [418] +08:38:42 [ 52] [ 16] [B9509D15BF4BC81B] +08:38:42 ============================================================================ +08:38:42 + + +waiting on router queue for slot.... +08:38:42 Sending to : +08:38:42 ============================================================================ +08:38:42 Sending to : +08:38:42 ============================================================================ +08:38:42 ============================================================================ +08:38:42 Slot Id : <479> +08:38:42 Transaction Type : REQUEST +08:38:42 Received From : +08:38:42 ============================================================================ +08:38:42 FNo. Len. Field Value +08:38:42 ============================================================================ +08:38:42 [ 1] [ 4] [0200] +08:38:42 [ 2] [ 16] [6213544000196300] +08:38:42 [ 3] [ 6] [300000] +08:38:42 [ 4] [ 12] [000000000000] +08:38:42 [ 7] [ 10] [0320083633] +08:38:42 [ 11] [ 6] [933392] +08:38:42 [ 12] [ 6] [083633] +08:38:42 [ 13] [ 4] [0320] +08:38:42 [ 15] [ 4] [0320] +08:38:42 [ 18] [ 4] [6011] +08:38:42 [ 19] [ 3] [418] +08:38:42 [ 22] [ 3] [021] +08:38:42 [ 25] [ 2] [01] +08:38:42 [ 28] [ 9] [D00000000] +08:38:42 [ 32] [ 6] [668899] +08:38:42 [ 35] [ 32] [6213544000196300=491212019630091] +08:38:42 [ 37] [ 12] [507902531627] +08:38:42 [ 41] [ 8] [03020033] +08:38:42 [ 42] [ 15] [APT ] +08:38:42 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:38:42 [ 49] [ 3] [418] +08:38:42 [ 52] [ 16] [B9509D15BF4BC81B] +08:38:42 ============================================================================ +08:38:42 + + +waiting on router queue for slot.... +08:38:42 Sending to : +08:38:42 ============================================================================ +08:38:42 ============================================================================ +08:38:42 Slot Id : <479> +08:38:42 Transaction Type : REQUEST +08:38:42 Received From : +08:38:42 ============================================================================ +08:38:42 FNo. Len. Field Value +08:38:42 ============================================================================ +08:38:42 [ 1] [ 4] [0200] +08:38:42 [ 2] [ 16] [6213544000196300] +08:38:42 [ 3] [ 6] [300000] +08:38:42 [ 4] [ 12] [000000000000] +08:38:42 [ 7] [ 10] [0320083633] +08:38:42 [ 11] [ 6] [933392] +08:38:42 [ 12] [ 6] [083633] +08:38:42 [ 13] [ 4] [0320] +08:38:42 [ 15] [ 4] [0320] +08:38:42 [ 18] [ 4] [6011] +08:38:42 [ 19] [ 3] [418] +08:38:42 [ 22] [ 3] [021] +08:38:42 [ 25] [ 2] [01] +08:38:42 [ 28] [ 9] [D00000000] +08:38:42 [ 32] [ 6] [668899] +08:38:42 [ 35] [ 32] [6213544000196300=491212019630091] +08:38:42 [ 37] [ 12] [507902531627] +08:38:42 [ 41] [ 8] [03020033] +08:38:42 [ 42] [ 15] [APT ] +08:38:42 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:38:42 [ 49] [ 3] [418] +08:38:42 [ 52] [ 16] [44669A749233FA10] +08:38:42 ============================================================================ +08:38:42 + + +waiting on router queue for slot.... +08:38:42 Sending to : <0> +08:38:42 ============================================================================ +08:38:42 ============================================================================ +08:38:42 Slot Id : <479> +08:38:42 Transaction Type : RESPONSE +08:38:42 Received From : +08:38:42 ============================================================================ +08:38:42 FNo. Len. Field Value +08:38:42 ============================================================================ +08:38:42 [ 1] [ 4] [0210] +08:38:42 [ 2] [ 16] [6213544000196300] +08:38:42 [ 3] [ 6] [300000] +08:38:42 [ 4] [ 12] [000000000000] +08:38:42 [ 7] [ 10] [0320083633] +08:38:42 [ 11] [ 6] [933392] +08:38:42 [ 12] [ 6] [083633] +08:38:42 [ 13] [ 4] [0320] +08:38:42 [ 15] [ 4] [0320] +08:38:42 [ 18] [ 4] [6011] +08:38:42 [ 19] [ 3] [418] +08:38:42 [ 32] [ 6] [668899] +08:38:42 [ 35] [ 32] [6213544000196300=491212019630091] +08:38:42 [ 37] [ 12] [507902531627] +08:38:42 [ 38] [ 6] [802667] +08:38:42 [ 39] [ 2] [00] +08:38:42 [ 41] [ 8] [03020033] +08:38:42 [ 49] [ 3] [418] +08:38:42 [ 54] [ 40] [0001418C0000151527660002418C000015152766] +08:38:42 ============================================================================ +08:38:42 Sending to : +08:38:42 ============================================================================ +08:38:42 + + +waiting on router queue for slot.... +08:38:43 ============================================================================ +08:38:43 Slot Id : <0> +08:38:43 Transaction Type : REQUEST +08:38:43 Received From : +08:38:43 ============================================================================ +08:38:43 FNo. Len. Field Value +08:38:43 ============================================================================ +08:38:43 [ 1] [ 4] [0200] +08:38:43 [ 2] [ 16] [6213543000120500] +08:38:43 [ 3] [ 6] [010000] +08:38:43 [ 4] [ 12] [000040000000] +08:38:43 [ 7] [ 10] [0320083634] +08:38:43 [ 11] [ 6] [933395] +08:38:43 [ 12] [ 6] [083634] +08:38:43 [ 13] [ 4] [0320] +08:38:43 [ 15] [ 4] [0320] +08:38:43 [ 18] [ 4] [6011] +08:38:43 [ 19] [ 3] [418] +08:38:43 [ 22] [ 3] [021] +08:38:43 [ 25] [ 2] [01] +08:38:43 [ 28] [ 9] [D00002000] +08:38:43 [ 32] [ 6] [668899] +08:38:43 [ 35] [ 32] [6213543000120500=491212012050726] +08:38:43 [ 37] [ 12] [507900961543] +08:38:43 [ 41] [ 8] [03407001] +08:38:43 [ 42] [ 15] [APT ] +08:38:43 [ 43] [ 40] [ HONGSA XAYABOULY LAO] +08:38:43 [ 49] [ 3] [418] +08:38:43 [ 52] [ 16] [832D56D8DC5BA829] +08:38:43 ============================================================================ +08:38:43 + + +waiting on router queue for slot.... +08:38:43 Sending to : +08:38:43 ============================================================================ +08:38:43 Sending to : +08:38:43 ============================================================================ +08:38:43 ============================================================================ +08:38:43 Slot Id : <0> +08:38:43 Transaction Type : REQUEST +08:38:43 Received From : +08:38:43 ============================================================================ +08:38:43 FNo. Len. Field Value +08:38:43 ============================================================================ +08:38:43 [ 1] [ 4] [0200] +08:38:43 [ 2] [ 16] [6213543000120500] +08:38:43 [ 3] [ 6] [010000] +08:38:43 [ 4] [ 12] [000040000000] +08:38:43 [ 7] [ 10] [0320083634] +08:38:43 [ 11] [ 6] [933395] +08:38:43 [ 12] [ 6] [083634] +08:38:43 [ 13] [ 4] [0320] +08:38:43 [ 15] [ 4] [0320] +08:38:43 [ 18] [ 4] [6011] +08:38:43 [ 19] [ 3] [418] +08:38:43 [ 22] [ 3] [021] +08:38:43 [ 25] [ 2] [01] +08:38:43 [ 28] [ 9] [D00002000] +08:38:43 [ 32] [ 6] [668899] +08:38:43 [ 35] [ 32] [6213543000120500=491212012050726] +08:38:43 [ 37] [ 12] [507900961543] +08:38:43 [ 41] [ 8] [03407001] +08:38:43 [ 42] [ 15] [APT ] +08:38:43 [ 43] [ 40] [ HONGSA XAYABOULY LAO] +08:38:43 [ 49] [ 3] [418] +08:38:43 [ 52] [ 16] [832D56D8DC5BA829] +08:38:43 ============================================================================ +08:38:43 + + +waiting on router queue for slot.... +08:38:43 Sending to : +08:38:43 ============================================================================ +08:38:43 ============================================================================ +08:38:43 Slot Id : <0> +08:38:43 Transaction Type : REQUEST +08:38:43 Received From : +08:38:43 ============================================================================ +08:38:43 FNo. Len. Field Value +08:38:43 ============================================================================ +08:38:43 [ 1] [ 4] [0200] +08:38:43 [ 2] [ 16] [6213543000120500] +08:38:43 [ 3] [ 6] [010000] +08:38:43 [ 4] [ 12] [000040000000] +08:38:43 [ 7] [ 10] [0320083634] +08:38:43 [ 11] [ 6] [933395] +08:38:43 [ 12] [ 6] [083634] +08:38:43 [ 13] [ 4] [0320] +08:38:43 [ 15] [ 4] [0320] +08:38:43 [ 18] [ 4] [6011] +08:38:43 [ 19] [ 3] [418] +08:38:43 [ 22] [ 3] [021] +08:38:43 [ 25] [ 2] [01] +08:38:43 [ 28] [ 9] [D00002000] +08:38:43 [ 32] [ 6] [668899] +08:38:43 [ 35] [ 32] [6213543000120500=491212012050726] +08:38:43 [ 37] [ 12] [507900961543] +08:38:43 [ 41] [ 8] [03407001] +08:38:43 [ 42] [ 15] [APT ] +08:38:43 [ 43] [ 40] [ HONGSA XAYABOULY LAO] +08:38:43 [ 49] [ 3] [418] +08:38:43 [ 52] [ 16] [E047B799C138B6DB] +08:38:43 ============================================================================ +08:38:43 + + +waiting on router queue for slot.... +08:38:43 Sending to : <0> +08:38:43 ============================================================================ +08:38:44 ============================================================================ +08:38:44 Slot Id : <0> +08:38:44 Transaction Type : RESPONSE +08:38:44 Received From : +08:38:44 ============================================================================ +08:38:44 FNo. Len. Field Value +08:38:44 ============================================================================ +08:38:44 [ 1] [ 4] [0210] +08:38:44 [ 2] [ 16] [6213543000120500] +08:38:44 [ 3] [ 6] [010000] +08:38:44 [ 4] [ 12] [000040000000] +08:38:44 [ 7] [ 10] [0320083634] +08:38:44 [ 11] [ 6] [933395] +08:38:44 [ 12] [ 6] [083634] +08:38:44 [ 13] [ 4] [0320] +08:38:44 [ 15] [ 4] [0320] +08:38:44 [ 18] [ 4] [6011] +08:38:44 [ 19] [ 3] [418] +08:38:44 [ 32] [ 6] [668899] +08:38:44 [ 35] [ 32] [6213543000120500=491212012050726] +08:38:44 [ 37] [ 12] [507900961543] +08:38:44 [ 38] [ 6] [762350] +08:38:44 [ 39] [ 2] [00] +08:38:44 [ 41] [ 8] [03407001] +08:38:44 [ 49] [ 3] [418] +08:38:44 [ 54] [ 40] [0001418C0000060098740002418C000006009874] +08:38:44 ============================================================================ +08:38:44 Sending to : +08:38:44 ============================================================================ +08:38:44 + + +waiting on router queue for slot.... +08:38:44 ============================================================================ +08:38:44 Slot Id : <479> +08:38:44 Transaction Type : RESPONSE +08:38:44 Received From : +08:38:44 ============================================================================ +08:38:44 FNo. Len. Field Value +08:38:44 ============================================================================ +08:38:44 [ 1] [ 4] [0210] +08:38:44 [ 2] [ 16] [6213544000196300] +08:38:44 [ 3] [ 6] [300000] +08:38:44 [ 4] [ 12] [000000000000] +08:38:44 [ 7] [ 10] [0320083633] +08:38:44 [ 11] [ 6] [933392] +08:38:44 [ 12] [ 6] [083633] +08:38:44 [ 13] [ 4] [0320] +08:38:44 [ 15] [ 4] [0320] +08:38:44 [ 18] [ 4] [6011] +08:38:44 [ 19] [ 3] [418] +08:38:44 [ 32] [ 6] [668899] +08:38:44 [ 35] [ 32] [6213544000196300=491212019630091] +08:38:44 [ 37] [ 12] [507902531627] +08:38:44 [ 38] [ 6] [802667] +08:38:44 [ 39] [ 2] [00] +08:38:44 [ 41] [ 8] [03020033] +08:38:44 [ 49] [ 3] [418] +08:38:44 [ 54] [ 40] [0001418C0000151527660002418C000015152766] +08:38:44 ============================================================================ +08:38:44 Calculate Source COMM Id = 4 +08:38:44 ============================================================================ +08:38:44 + + +waiting on router queue for slot.... +08:38:46 ============================================================================ +08:38:46 Slot Id : <0> +08:38:46 Transaction Type : RESPONSE +08:38:46 Received From : +08:38:46 ============================================================================ +08:38:46 FNo. Len. Field Value +08:38:46 ============================================================================ +08:38:46 [ 1] [ 4] [0210] +08:38:46 [ 2] [ 16] [6213543000120500] +08:38:46 [ 3] [ 6] [010000] +08:38:46 [ 4] [ 12] [000040000000] +08:38:46 [ 7] [ 10] [0320083634] +08:38:46 [ 11] [ 6] [933395] +08:38:46 [ 12] [ 6] [083634] +08:38:46 [ 13] [ 4] [0320] +08:38:46 [ 15] [ 4] [0320] +08:38:46 [ 18] [ 4] [6011] +08:38:46 [ 19] [ 3] [418] +08:38:46 [ 32] [ 6] [668899] +08:38:46 [ 35] [ 32] [6213543000120500=491212012050726] +08:38:46 [ 37] [ 12] [507900961543] +08:38:46 [ 38] [ 6] [762350] +08:38:46 [ 39] [ 2] [00] +08:38:46 [ 41] [ 8] [03407001] +08:38:46 [ 49] [ 3] [418] +08:38:46 [ 54] [ 40] [0001418C0000060098740002418C000006009874] +08:38:46 ============================================================================ +08:38:46 Calculate Source COMM Id = 4 +08:38:46 ============================================================================ +08:38:46 + + +waiting on router queue for slot.... +08:38:50 ============================================================================ +08:38:50 Slot Id : <498> +08:38:50 Transaction Type : REQUEST +08:38:50 Received From : +08:38:50 ============================================================================ +08:38:50 FNo. Len. Field Value +08:38:50 ============================================================================ +08:38:50 [ 1] [ 4] [0200] +08:38:50 [ 2] [ 16] [1808930600003727] +08:38:50 [ 3] [ 6] [011000] +08:38:50 [ 4] [ 12] [000030000000] +08:38:50 [ 7] [ 10] [0320083846] +08:38:50 [ 11] [ 6] [686825] +08:38:50 [ 12] [ 6] [083846] +08:38:50 [ 13] [ 4] [0320] +08:38:50 [ 15] [ 4] [0320] +08:38:50 [ 18] [ 4] [6011] +08:38:50 [ 22] [ 3] [900] +08:38:50 [ 25] [ 2] [02] +08:38:50 [ 28] [ 9] [D00002000] +08:38:50 [ 32] [ 6] [621354] +08:38:50 [ 35] [ 27] [1808930600003727=1803500178] +08:38:50 [ 37] [ 12] [507904308906] +08:38:50 [ 41] [ 8] [03002900] +08:38:50 [ 42] [ 15] [NATIVE ] +08:38:50 [ 43] [ 40] [Head of Province KaisonephomvLAO] +08:38:50 [ 49] [ 3] [418] +08:38:50 [ 52] [ 16] [318DA3286AE6C825] +08:38:50 ============================================================================ +08:38:50 + + +waiting on router queue for slot.... +08:38:50 Sending to : +08:38:50 ============================================================================ +08:38:50 Sending to : +08:38:50 ============================================================================ +08:38:50 ============================================================================ +08:38:50 Slot Id : <498> +08:38:50 Transaction Type : REQUEST +08:38:50 Received From : +08:38:50 ============================================================================ +08:38:50 FNo. Len. Field Value +08:38:50 ============================================================================ +08:38:50 [ 1] [ 4] [0200] +08:38:50 [ 2] [ 16] [1808930600003727] +08:38:50 [ 3] [ 6] [011000] +08:38:50 [ 4] [ 12] [000030000000] +08:38:50 [ 7] [ 10] [0320083846] +08:38:50 [ 11] [ 6] [686825] +08:38:50 [ 12] [ 6] [083846] +08:38:50 [ 13] [ 4] [0320] +08:38:50 [ 15] [ 4] [0320] +08:38:50 [ 18] [ 4] [6011] +08:38:50 [ 22] [ 3] [900] +08:38:50 [ 25] [ 2] [02] +08:38:50 [ 28] [ 9] [D00002000] +08:38:50 [ 32] [ 6] [621354] +08:38:50 [ 35] [ 27] [1808930600003727=1803500178] +08:38:50 [ 37] [ 12] [507904308906] +08:38:50 [ 41] [ 8] [03002900] +08:38:50 [ 42] [ 15] [NATIVE ] +08:38:50 [ 43] [ 40] [Head of Province KaisonephomvLAO] +08:38:50 [ 49] [ 3] [418] +08:38:50 [ 52] [ 16] [318DA3286AE6C825] +08:38:50 ============================================================================ +08:38:50 + + +waiting on router queue for slot.... +08:38:50 Sending to : +08:38:50 ============================================================================ +08:38:50 ============================================================================ +08:38:50 Slot Id : <498> +08:38:50 Transaction Type : REQUEST +08:38:50 Received From : +08:38:50 ============================================================================ +08:38:50 FNo. Len. Field Value +08:38:50 ============================================================================ +08:38:50 [ 1] [ 4] [0200] +08:38:50 [ 2] [ 16] [1808930600003727] +08:38:50 [ 3] [ 6] [011000] +08:38:50 [ 4] [ 12] [000030000000] +08:38:50 [ 7] [ 10] [0320083846] +08:38:50 [ 11] [ 6] [686825] +08:38:50 [ 12] [ 6] [083846] +08:38:50 [ 13] [ 4] [0320] +08:38:50 [ 15] [ 4] [0320] +08:38:50 [ 18] [ 4] [6011] +08:38:50 [ 22] [ 3] [900] +08:38:50 [ 25] [ 2] [02] +08:38:50 [ 28] [ 9] [D00002000] +08:38:50 [ 32] [ 6] [621354] +08:38:50 [ 35] [ 27] [1808930600003727=1803500178] +08:38:50 [ 37] [ 12] [507904308906] +08:38:50 [ 41] [ 8] [03002900] +08:38:50 [ 42] [ 15] [NATIVE ] +08:38:50 [ 43] [ 40] [Head of Province KaisonephomvLAO] +08:38:50 [ 49] [ 3] [418] +08:38:50 [ 52] [ 16] [E6B9162F7835817A] +08:38:50 ============================================================================ +08:38:50 + + +waiting on router queue for slot.... +08:38:50 Sending to : <2> +08:38:50 ============================================================================ +08:38:58 ============================================================================ +08:38:58 Slot Id : <498> +08:38:58 Transaction Type : RESPONSE +08:38:58 Received From : +08:38:58 ============================================================================ +08:38:58 FNo. Len. Field Value +08:38:58 ============================================================================ +08:38:58 [ 1] [ 4] [0210] +08:38:58 [ 2] [ 16] [1808930600003727] +08:38:58 [ 3] [ 6] [011000] +08:38:58 [ 4] [ 12] [000030000000] +08:38:58 [ 6] [ 12] [000030000000] +08:38:58 [ 7] [ 10] [0320083846] +08:38:58 [ 11] [ 6] [686825] +08:38:58 [ 12] [ 6] [083846] +08:38:58 [ 13] [ 4] [0320] +08:38:58 [ 18] [ 4] [6011] +08:38:58 [ 19] [ 3] [418] +08:38:58 [ 22] [ 3] [021] +08:38:58 [ 32] [ 6] [621354] +08:38:58 [ 35] [ 27] [1808930600003727=1803500178] +08:38:58 [ 37] [ 12] [507904308906] +08:38:58 [ 38] [ 6] [686825] +08:38:58 [ 39] [ 2] [00] +08:38:58 [ 41] [ 8] [03002900] +08:38:58 [ 49] [ 3] [418] +08:38:58 [ 52] [ 16] [E6B9162F7835817A] +08:38:58 [ 54] [ 20] [1001418C000534895400] +08:38:58 ============================================================================ +08:38:58 Sending to : +08:38:58 ============================================================================ +08:38:58 + + +waiting on router queue for slot.... +08:39:00 ============================================================================ +08:39:00 Slot Id : <498> +08:39:00 Transaction Type : RESPONSE +08:39:00 Received From : +08:39:00 ============================================================================ +08:39:00 FNo. Len. Field Value +08:39:00 ============================================================================ +08:39:00 [ 1] [ 4] [0210] +08:39:00 [ 2] [ 16] [1808930600003727] +08:39:00 [ 3] [ 6] [011000] +08:39:00 [ 4] [ 12] [000030000000] +08:39:00 [ 6] [ 12] [000030000000] +08:39:00 [ 7] [ 10] [0320083846] +08:39:00 [ 11] [ 6] [686825] +08:39:00 [ 12] [ 6] [083846] +08:39:00 [ 13] [ 4] [0320] +08:39:00 [ 18] [ 4] [6011] +08:39:00 [ 19] [ 3] [418] +08:39:00 [ 22] [ 3] [021] +08:39:00 [ 32] [ 6] [621354] +08:39:00 [ 35] [ 27] [1808930600003727=1803500178] +08:39:00 [ 37] [ 12] [507904308906] +08:39:00 [ 38] [ 6] [686825] +08:39:00 [ 39] [ 2] [00] +08:39:00 [ 41] [ 8] [03002900] +08:39:00 [ 49] [ 3] [418] +08:39:00 [ 52] [ 16] [E6B9162F7835817A] +08:39:00 [ 54] [ 20] [1001418C000534895400] +08:39:00 ============================================================================ +08:39:00 Calculate Source COMM Id = 0 +08:39:00 ============================================================================ +08:39:00 + + +waiting on router queue for slot.... +08:39:01 ============================================================================ +08:39:01 Slot Id : <2> +08:39:01 Transaction Type : REQUEST +08:39:01 Received From : +08:39:01 ============================================================================ +08:39:01 FNo. Len. Field Value +08:39:01 ============================================================================ +08:39:01 [ 1] [ 4] [0800] +08:39:01 [ 7] [ 10] [0320155050] +08:39:01 [ 11] [ 6] [085050] +08:39:01 [ 37] [ 12] [57908085050] +08:39:01 [ 70] [ 3] [301] +08:39:01 ============================================================================ +08:39:01 + + +waiting on router queue for slot.... +08:39:01 Sending to : +08:39:01 ============================================================================ +08:39:01 ============================================================================ +08:39:01 Slot Id : <2> +08:39:01 Transaction Type : RESPONSE +08:39:01 Received From : +08:39:01 ============================================================================ +08:39:01 FNo. Len. Field Value +08:39:01 ============================================================================ +08:39:01 [ 1] [ 4] [0810] +08:39:01 [ 7] [ 10] [0320155050] +08:39:01 [ 11] [ 6] [085050] +08:39:01 [ 37] [ 12] [579080850500] +08:39:01 [ 39] [ 2] [00] +08:39:01 [ 70] [ 3] [810] +08:39:01 ============================================================================ +08:39:01 Calculate Source COMM Id = 6 +08:39:01 ============================================================================ +08:39:01 + + +waiting on router queue for slot.... +08:39:02 ============================================================================ +08:39:02 Slot Id : <493> +08:39:02 Transaction Type : REQUEST +08:39:02 Received From : +08:39:02 ============================================================================ +08:39:02 FNo. Len. Field Value +08:39:02 ============================================================================ +08:39:02 [ 1] [ 4] [0800] +08:39:02 [ 7] [ 10] [0320013811] +08:39:02 [ 11] [ 6] [155453] +08:39:02 [ 70] [ 3] [301] +08:39:02 ============================================================================ +08:39:02 + + +waiting on router queue for slot.... +08:39:02 Sending to : +08:39:02 ============================================================================ +08:39:02 ============================================================================ +08:39:02 Slot Id : <493> +08:39:02 Transaction Type : RESPONSE +08:39:02 Received From : +08:39:02 ============================================================================ +08:39:02 FNo. Len. Field Value +08:39:02 ============================================================================ +08:39:02 [ 1] [ 4] [0810] +08:39:02 [ 7] [ 10] [0320013811] +08:39:02 [ 11] [ 6] [155453] +08:39:02 [ 39] [ 2] [00] +08:39:02 [ 70] [ 3] [301] +08:39:02 ============================================================================ +08:39:02 Calculate Source COMM Id = 2 +08:39:02 ============================================================================ +08:39:02 + + +waiting on router queue for slot.... +08:39:04 ============================================================================ +08:39:04 Slot Id : <1> +08:39:04 Transaction Type : REQUEST +08:39:04 Received From : +08:39:04 ============================================================================ +08:39:04 FNo. Len. Field Value +08:39:04 ============================================================================ +08:39:04 [ 1] [ 4] [0200] +08:39:04 [ 2] [ 16] [6213541000432719] +08:39:04 [ 3] [ 6] [011000] +08:39:04 [ 4] [ 12] [000095000000] +08:39:04 [ 7] [ 10] [0320013812] +08:39:04 [ 11] [ 6] [267239] +08:39:04 [ 12] [ 6] [083812] +08:39:04 [ 13] [ 4] [0320] +08:39:04 [ 14] [ 4] [4912] +08:39:04 [ 15] [ 4] [0320] +08:39:04 [ 18] [ 4] [6011] +08:39:04 [ 19] [ 3] [418] +08:39:04 [ 22] [ 3] [021] +08:39:04 [ 25] [ 2] [01] +08:39:04 [ 28] [ 9] [D00002000] +08:39:04 [ 32] [ 6] [180893] +08:39:04 [ 35] [ 32] [6213541000432719=491212013271141] +08:39:04 [ 37] [ 12] [507901267239] +08:39:04 [ 41] [ 8] [0531VTHH] +08:39:04 [ 42] [ 15] [999999 ] +08:39:04 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +08:39:04 [ 49] [ 3] [418] +08:39:04 [ 52] [ 16] [B5ECED09F9B96EEF] +08:39:04 ============================================================================ +08:39:04 + + +waiting on router queue for slot.... +08:39:04 Sending to : +08:39:04 ============================================================================ +08:39:04 Sending to : +08:39:04 ============================================================================ +08:39:05 ============================================================================ +08:39:05 Slot Id : <1> +08:39:05 Transaction Type : REQUEST +08:39:05 Received From : +08:39:05 ============================================================================ +08:39:05 FNo. Len. Field Value +08:39:05 ============================================================================ +08:39:05 [ 1] [ 4] [0200] +08:39:05 [ 2] [ 16] [6213541000432719] +08:39:05 [ 3] [ 6] [011000] +08:39:05 [ 4] [ 12] [000095000000] +08:39:05 [ 7] [ 10] [0320013812] +08:39:05 [ 11] [ 6] [267239] +08:39:05 [ 12] [ 6] [083812] +08:39:05 [ 13] [ 4] [0320] +08:39:05 [ 14] [ 4] [4912] +08:39:05 [ 15] [ 4] [0320] +08:39:05 [ 18] [ 4] [6011] +08:39:05 [ 19] [ 3] [418] +08:39:05 [ 22] [ 3] [021] +08:39:05 [ 25] [ 2] [01] +08:39:05 [ 28] [ 9] [D00002000] +08:39:05 [ 32] [ 6] [180893] +08:39:05 [ 35] [ 32] [6213541000432719=491212013271141] +08:39:05 [ 37] [ 12] [507901267239] +08:39:05 [ 41] [ 8] [0531VTHH] +08:39:05 [ 42] [ 15] [999999 ] +08:39:05 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +08:39:05 [ 49] [ 3] [418] +08:39:05 [ 52] [ 16] [B5ECED09F9B96EEF] +08:39:05 ============================================================================ +08:39:05 + + +waiting on router queue for slot.... +08:39:05 Sending to : +08:39:05 ============================================================================ +08:39:05 ============================================================================ +08:39:05 Slot Id : <1> +08:39:05 Transaction Type : REQUEST +08:39:05 Received From : +08:39:05 ============================================================================ +08:39:05 FNo. Len. Field Value +08:39:05 ============================================================================ +08:39:05 [ 1] [ 4] [0200] +08:39:05 [ 2] [ 16] [6213541000432719] +08:39:05 [ 3] [ 6] [011000] +08:39:05 [ 4] [ 12] [000095000000] +08:39:05 [ 7] [ 10] [0320013812] +08:39:05 [ 11] [ 6] [267239] +08:39:05 [ 12] [ 6] [083812] +08:39:05 [ 13] [ 4] [0320] +08:39:05 [ 14] [ 4] [4912] +08:39:05 [ 15] [ 4] [0320] +08:39:05 [ 18] [ 4] [6011] +08:39:05 [ 19] [ 3] [418] +08:39:05 [ 22] [ 3] [021] +08:39:05 [ 25] [ 2] [01] +08:39:05 [ 28] [ 9] [D00002000] +08:39:05 [ 32] [ 6] [180893] +08:39:05 [ 35] [ 32] [6213541000432719=491212013271141] +08:39:05 [ 37] [ 12] [507901267239] +08:39:05 [ 41] [ 8] [0531VTHH] +08:39:05 [ 42] [ 15] [999999 ] +08:39:05 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +08:39:05 [ 49] [ 3] [418] +08:39:05 [ 52] [ 16] [03E6EC844A04918C] +08:39:05 ============================================================================ +08:39:05 + + +waiting on router queue for slot.... +08:39:05 Sending to : <0> +08:39:05 ============================================================================ +08:39:05 ============================================================================ +08:39:05 Slot Id : <1> +08:39:05 Transaction Type : RESPONSE +08:39:05 Received From : +08:39:05 ============================================================================ +08:39:05 FNo. Len. Field Value +08:39:05 ============================================================================ +08:39:05 [ 1] [ 4] [0210] +08:39:05 [ 2] [ 16] [6213541000432719] +08:39:05 [ 3] [ 6] [011000] +08:39:05 [ 4] [ 12] [000095000000] +08:39:05 [ 7] [ 10] [0320013812] +08:39:05 [ 11] [ 6] [267239] +08:39:05 [ 12] [ 6] [083812] +08:39:05 [ 13] [ 4] [0320] +08:39:05 [ 15] [ 4] [0320] +08:39:05 [ 18] [ 4] [6011] +08:39:05 [ 19] [ 3] [418] +08:39:05 [ 32] [ 6] [180893] +08:39:05 [ 35] [ 32] [6213541000432719=491212013271141] +08:39:05 [ 37] [ 12] [507901267239] +08:39:05 [ 38] [ 6] [436731] +08:39:05 [ 39] [ 2] [00] +08:39:05 [ 41] [ 8] [0531VTHH] +08:39:05 [ 49] [ 3] [418] +08:39:05 [ 54] [ 40] [1001418C0000080684131002418C000008068413] +08:39:05 ============================================================================ +08:39:05 Sending to : +08:39:05 ============================================================================ +08:39:05 + + +waiting on router queue for slot.... +08:39:07 ============================================================================ +08:39:07 Slot Id : <1> +08:39:07 Transaction Type : RESPONSE +08:39:07 Received From : +08:39:07 ============================================================================ +08:39:07 FNo. Len. Field Value +08:39:07 ============================================================================ +08:39:07 [ 1] [ 4] [0210] +08:39:07 [ 2] [ 16] [6213541000432719] +08:39:07 [ 3] [ 6] [011000] +08:39:07 [ 4] [ 12] [000095000000] +08:39:07 [ 7] [ 10] [0320013812] +08:39:07 [ 11] [ 6] [267239] +08:39:07 [ 12] [ 6] [083812] +08:39:07 [ 13] [ 4] [0320] +08:39:07 [ 15] [ 4] [0320] +08:39:07 [ 18] [ 4] [6011] +08:39:07 [ 19] [ 3] [418] +08:39:07 [ 32] [ 6] [180893] +08:39:07 [ 35] [ 32] [6213541000432719=491212013271141] +08:39:07 [ 37] [ 12] [507901267239] +08:39:07 [ 38] [ 6] [436731] +08:39:07 [ 39] [ 2] [00] +08:39:07 [ 41] [ 8] [0531VTHH] +08:39:07 [ 49] [ 3] [418] +08:39:07 [ 54] [ 40] [1001418C0000080684131002418C000008068413] +08:39:07 ============================================================================ +08:39:07 Calculate Source COMM Id = 2 +08:39:07 ============================================================================ +08:39:07 + + +waiting on router queue for slot.... +08:39:20 ============================================================================ +08:39:20 Slot Id : <473> +08:39:20 Transaction Type : REQUEST +08:39:20 Received From : +08:39:20 ============================================================================ +08:39:20 FNo. Len. Field Value +08:39:20 ============================================================================ +08:39:20 [ 1] [ 4] [0800] +08:39:20 [ 2] [ 5] [02531] +08:39:20 [ 3] [ 6] [579088] +08:39:20 [ 7] [ 10] [0320013920] +08:39:20 [ 11] [ 6] [806914] +08:39:20 [ 15] [ 10] [0320013920] +08:39:20 [ 37] [ 11] [57908806914] +08:39:20 [ 70] [ 3] [001] +08:39:20 ============================================================================ +08:39:20 + + +waiting on router queue for slot.... +08:39:20 ============================================================================ +08:39:20 Slot Id : <473> +08:39:20 Transaction Type : RESPONSE +08:39:20 Received From : +08:39:20 ============================================================================ +08:39:20 FNo. Len. Field Value +08:39:20 ============================================================================ +08:39:20 [ 1] [ 4] [0810] +08:39:20 [ 7] [ 10] [0320013920] +08:39:20 [ 11] [ 6] [806914] +08:39:20 [ 15] [ 4] [0320] +08:39:20 [ 37] [ 12] [57908806914] +08:39:20 [ 39] [ 2] [00] +08:39:20 [ 70] [ 3] [001] +08:39:20 ============================================================================ +08:39:20 Sending to : +08:39:20 ============================================================================ +08:39:20 + + +waiting on router queue for slot.... +08:39:24 ============================================================================ +08:39:24 Slot Id : <4> +08:39:24 Transaction Type : REQUEST +08:39:24 Received From : +08:39:24 ============================================================================ +08:39:24 FNo. Len. Field Value +08:39:24 ============================================================================ +08:39:24 [ 1] [ 4] [0800] +08:39:24 [ 7] [ 10] [0320013832] +08:39:24 [ 11] [ 6] [155454] +08:39:24 [ 70] [ 3] [301] +08:39:24 ============================================================================ +08:39:24 + + +waiting on router queue for slot.... +08:39:24 Sending to : +08:39:24 ============================================================================ +08:39:24 ============================================================================ +08:39:24 Slot Id : <4> +08:39:24 Transaction Type : RESPONSE +08:39:24 Received From : +08:39:24 ============================================================================ +08:39:24 FNo. Len. Field Value +08:39:24 ============================================================================ +08:39:24 [ 1] [ 4] [0810] +08:39:24 [ 7] [ 10] [0320013832] +08:39:24 [ 11] [ 6] [155454] +08:39:24 [ 39] [ 2] [00] +08:39:24 [ 70] [ 3] [301] +08:39:24 ============================================================================ +08:39:24 Calculate Source COMM Id = 2 +08:39:24 ============================================================================ +08:39:24 + + +waiting on router queue for slot.... +08:39:24 ============================================================================ +08:39:24 Slot Id : <483> +08:39:24 Transaction Type : REQUEST +08:39:24 Received From : +08:39:24 ============================================================================ +08:39:24 FNo. Len. Field Value +08:39:24 ============================================================================ +08:39:24 [ 1] [ 4] [0200] +08:39:24 [ 2] [ 16] [6688990107847400] +08:39:24 [ 3] [ 6] [012000] +08:39:24 [ 4] [ 12] [000020000000] +08:39:24 [ 7] [ 10] [0320083920] +08:39:24 [ 11] [ 6] [686982] +08:39:24 [ 12] [ 6] [083920] +08:39:24 [ 13] [ 4] [0320] +08:39:24 [ 15] [ 4] [0320] +08:39:24 [ 18] [ 4] [6011] +08:39:24 [ 22] [ 3] [900] +08:39:24 [ 25] [ 2] [02] +08:39:24 [ 28] [ 9] [D00002000] +08:39:24 [ 32] [ 6] [621354] +08:39:24 [ 35] [ 37] [6688990107847400=44041231740008100000] +08:39:24 [ 37] [ 12] [507904100375] +08:39:24 [ 41] [ 8] [08000700] +08:39:24 [ 42] [ 15] [NATIVE ] +08:39:24 [ 43] [ 40] [Attapeu Branch03 Samakyxay LAO] +08:39:24 [ 49] [ 3] [418] +08:39:24 [ 52] [ 16] [4300D50E96FAE8FE] +08:39:24 ============================================================================ +08:39:24 + + +waiting on router queue for slot.... +08:39:24 Sending to : +08:39:24 ============================================================================ +08:39:24 Sending to : +08:39:24 ============================================================================ +08:39:24 ============================================================================ +08:39:24 Slot Id : <483> +08:39:24 Transaction Type : REQUEST +08:39:24 Received From : +08:39:24 ============================================================================ +08:39:24 FNo. Len. Field Value +08:39:24 ============================================================================ +08:39:24 [ 1] [ 4] [0200] +08:39:24 [ 2] [ 16] [6688990107847400] +08:39:24 [ 3] [ 6] [012000] +08:39:24 [ 4] [ 12] [000020000000] +08:39:24 [ 7] [ 10] [0320083920] +08:39:24 [ 11] [ 6] [686982] +08:39:24 [ 12] [ 6] [083920] +08:39:24 [ 13] [ 4] [0320] +08:39:24 [ 15] [ 4] [0320] +08:39:24 [ 18] [ 4] [6011] +08:39:24 [ 22] [ 3] [900] +08:39:24 [ 25] [ 2] [02] +08:39:24 [ 28] [ 9] [D00002000] +08:39:24 [ 32] [ 6] [621354] +08:39:24 [ 35] [ 37] [6688990107847400=44041231740008100000] +08:39:24 [ 37] [ 12] [507904100375] +08:39:24 [ 41] [ 8] [08000700] +08:39:24 [ 42] [ 15] [NATIVE ] +08:39:24 [ 43] [ 40] [Attapeu Branch03 Samakyxay LAO] +08:39:24 [ 49] [ 3] [418] +08:39:24 [ 52] [ 16] [4300D50E96FAE8FE] +08:39:24 ============================================================================ +08:39:24 + + +waiting on router queue for slot.... +08:39:24 Sending to : +08:39:24 ============================================================================ +08:39:25 ============================================================================ +08:39:25 Slot Id : <483> +08:39:25 Transaction Type : REQUEST +08:39:25 Received From : +08:39:25 ============================================================================ +08:39:25 FNo. Len. Field Value +08:39:25 ============================================================================ +08:39:25 [ 1] [ 4] [0200] +08:39:25 [ 2] [ 16] [6688990107847400] +08:39:25 [ 3] [ 6] [012000] +08:39:25 [ 4] [ 12] [000020000000] +08:39:25 [ 7] [ 10] [0320083920] +08:39:25 [ 11] [ 6] [686982] +08:39:25 [ 12] [ 6] [083920] +08:39:25 [ 13] [ 4] [0320] +08:39:25 [ 15] [ 4] [0320] +08:39:25 [ 18] [ 4] [6011] +08:39:25 [ 22] [ 3] [900] +08:39:25 [ 25] [ 2] [02] +08:39:25 [ 28] [ 9] [D00002000] +08:39:25 [ 32] [ 6] [621354] +08:39:25 [ 35] [ 37] [6688990107847400=44041231740008100000] +08:39:25 [ 37] [ 12] [507904100375] +08:39:25 [ 41] [ 8] [08000700] +08:39:25 [ 42] [ 15] [NATIVE ] +08:39:25 [ 43] [ 40] [Attapeu Branch03 Samakyxay LAO] +08:39:25 [ 49] [ 3] [418] +08:39:25 [ 52] [ 16] [6054AE0FBB2AF43E] +08:39:25 ============================================================================ +08:39:25 + + +waiting on router queue for slot.... +08:39:25 Sending to : <4> +08:39:25 ============================================================================ +08:39:26 ============================================================================ +08:39:26 Slot Id : <483> +08:39:26 Transaction Type : RESPONSE +08:39:26 Received From : +08:39:26 ============================================================================ +08:39:26 FNo. Len. Field Value +08:39:26 ============================================================================ +08:39:26 [ 1] [ 4] [0210] +08:39:26 [ 2] [ 16] [6688990107847400] +08:39:26 [ 3] [ 6] [012000] +08:39:26 [ 4] [ 12] [000020000000] +08:39:26 [ 11] [ 6] [686982] +08:39:26 [ 12] [ 6] [083920] +08:39:26 [ 15] [ 4] [0320] +08:39:26 [ 18] [ 4] [6011] +08:39:26 [ 32] [ 6] [621354] +08:39:26 [ 35] [ 37] [6688990107847400=44041231740008100000] +08:39:26 [ 37] [ 12] [507904100375] +08:39:26 [ 38] [ 6] [365014] +08:39:26 [ 39] [ 2] [00] +08:39:26 [ 41] [ 8] [08000700] +08:39:26 [ 49] [ 3] [418] +08:39:26 [ 54] [ 20] [2002418C000074281776] +08:39:26 ============================================================================ +08:39:26 Sending to : +08:39:26 ============================================================================ +08:39:26 + + +waiting on router queue for slot.... +08:39:27 ============================================================================ +08:39:27 Slot Id : <483> +08:39:27 Transaction Type : RESPONSE +08:39:27 Received From : +08:39:27 ============================================================================ +08:39:27 FNo. Len. Field Value +08:39:27 ============================================================================ +08:39:27 [ 1] [ 4] [0210] +08:39:27 [ 2] [ 16] [6688990107847400] +08:39:27 [ 3] [ 6] [012000] +08:39:27 [ 4] [ 12] [000020000000] +08:39:27 [ 11] [ 6] [686982] +08:39:27 [ 12] [ 6] [083920] +08:39:27 [ 15] [ 4] [0320] +08:39:27 [ 18] [ 4] [6011] +08:39:27 [ 32] [ 6] [621354] +08:39:27 [ 35] [ 37] [6688990107847400=44041231740008100000] +08:39:27 [ 37] [ 12] [507904100375] +08:39:27 [ 38] [ 6] [365014] +08:39:27 [ 39] [ 2] [00] +08:39:27 [ 41] [ 8] [08000700] +08:39:27 [ 49] [ 3] [418] +08:39:27 [ 54] [ 20] [2002418C000074281776] +08:39:27 ============================================================================ +08:39:27 Calculate Source COMM Id = 0 +08:39:27 ============================================================================ +08:39:27 + + +waiting on router queue for slot.... +08:39:39 ============================================================================ +08:39:39 Slot Id : <474> +08:39:39 Transaction Type : REQUEST +08:39:39 Received From : +08:39:39 ============================================================================ +08:39:39 FNo. Len. Field Value +08:39:39 ============================================================================ +08:39:39 [ 1] [ 4] [0800] +08:39:39 [ 7] [ 10] [0320013847] +08:39:39 [ 11] [ 6] [155455] +08:39:39 [ 70] [ 3] [301] +08:39:39 ============================================================================ +08:39:39 + + +waiting on router queue for slot.... +08:39:39 Sending to : +08:39:39 ============================================================================ +08:39:39 ============================================================================ +08:39:39 Slot Id : <474> +08:39:39 Transaction Type : RESPONSE +08:39:39 Received From : +08:39:39 ============================================================================ +08:39:39 FNo. Len. Field Value +08:39:39 ============================================================================ +08:39:39 [ 1] [ 4] [0810] +08:39:39 [ 7] [ 10] [0320013847] +08:39:39 [ 11] [ 6] [155455] +08:39:39 [ 39] [ 2] [00] +08:39:39 [ 70] [ 3] [301] +08:39:39 ============================================================================ +08:39:39 Calculate Source COMM Id = 2 +08:39:39 ============================================================================ +08:39:39 + + +waiting on router queue for slot.... +08:39:44 ============================================================================ +08:39:44 Slot Id : <489> +08:39:44 Transaction Type : REQUEST +08:39:44 Received From : +08:39:44 ============================================================================ +08:39:44 FNo. Len. Field Value +08:39:44 ============================================================================ +08:39:44 [ 1] [ 4] [0200] +08:39:44 [ 2] [ 16] [6213544000196300] +08:39:44 [ 3] [ 6] [010000] +08:39:44 [ 4] [ 12] [000010000000] +08:39:44 [ 7] [ 10] [0320083735] +08:39:44 [ 11] [ 6] [933434] +08:39:44 [ 12] [ 6] [083735] +08:39:44 [ 13] [ 4] [0320] +08:39:44 [ 15] [ 4] [0320] +08:39:44 [ 18] [ 4] [6011] +08:39:44 [ 19] [ 3] [418] +08:39:44 [ 22] [ 3] [021] +08:39:44 [ 25] [ 2] [01] +08:39:44 [ 28] [ 9] [D00002000] +08:39:44 [ 32] [ 6] [668899] +08:39:44 [ 35] [ 32] [6213544000196300=491212019630091] +08:39:44 [ 37] [ 12] [507902531629] +08:39:44 [ 41] [ 8] [03020033] +08:39:44 [ 42] [ 15] [APT ] +08:39:44 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:39:44 [ 49] [ 3] [418] +08:39:44 [ 52] [ 16] [B9509D15BF4BC81B] +08:39:44 ============================================================================ +08:39:44 + + +waiting on router queue for slot.... +08:39:44 Sending to : +08:39:44 ============================================================================ +08:39:44 Sending to : +08:39:44 ============================================================================ +08:39:44 ============================================================================ +08:39:44 Slot Id : <489> +08:39:44 Transaction Type : REQUEST +08:39:44 Received From : +08:39:44 ============================================================================ +08:39:44 FNo. Len. Field Value +08:39:44 ============================================================================ +08:39:44 [ 1] [ 4] [0200] +08:39:44 [ 2] [ 16] [6213544000196300] +08:39:44 [ 3] [ 6] [010000] +08:39:44 [ 4] [ 12] [000010000000] +08:39:44 [ 7] [ 10] [0320083735] +08:39:44 [ 11] [ 6] [933434] +08:39:44 [ 12] [ 6] [083735] +08:39:44 [ 13] [ 4] [0320] +08:39:44 [ 15] [ 4] [0320] +08:39:44 [ 18] [ 4] [6011] +08:39:44 [ 19] [ 3] [418] +08:39:44 [ 22] [ 3] [021] +08:39:44 [ 25] [ 2] [01] +08:39:44 [ 28] [ 9] [D00002000] +08:39:44 [ 32] [ 6] [668899] +08:39:44 [ 35] [ 32] [6213544000196300=491212019630091] +08:39:44 [ 37] [ 12] [507902531629] +08:39:44 [ 41] [ 8] [03020033] +08:39:44 [ 42] [ 15] [APT ] +08:39:44 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:39:44 [ 49] [ 3] [418] +08:39:44 [ 52] [ 16] [B9509D15BF4BC81B] +08:39:44 ============================================================================ +08:39:44 + + +waiting on router queue for slot.... +08:39:44 Sending to : +08:39:44 ============================================================================ +08:39:44 ============================================================================ +08:39:44 Slot Id : <489> +08:39:44 Transaction Type : REQUEST +08:39:44 Received From : +08:39:44 ============================================================================ +08:39:44 FNo. Len. Field Value +08:39:44 ============================================================================ +08:39:44 [ 1] [ 4] [0200] +08:39:44 [ 2] [ 16] [6213544000196300] +08:39:44 [ 3] [ 6] [010000] +08:39:44 [ 4] [ 12] [000010000000] +08:39:44 [ 7] [ 10] [0320083735] +08:39:44 [ 11] [ 6] [933434] +08:39:44 [ 12] [ 6] [083735] +08:39:44 [ 13] [ 4] [0320] +08:39:44 [ 15] [ 4] [0320] +08:39:44 [ 18] [ 4] [6011] +08:39:44 [ 19] [ 3] [418] +08:39:44 [ 22] [ 3] [021] +08:39:44 [ 25] [ 2] [01] +08:39:44 [ 28] [ 9] [D00002000] +08:39:44 [ 32] [ 6] [668899] +08:39:44 [ 35] [ 32] [6213544000196300=491212019630091] +08:39:44 [ 37] [ 12] [507902531629] +08:39:44 [ 41] [ 8] [03020033] +08:39:44 [ 42] [ 15] [APT ] +08:39:44 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:39:44 [ 49] [ 3] [418] +08:39:44 [ 52] [ 16] [44669A749233FA10] +08:39:44 ============================================================================ +08:39:44 + + +waiting on router queue for slot.... +08:39:44 Sending to : <0> +08:39:44 ============================================================================ +08:39:44 ============================================================================ +08:39:44 Slot Id : <489> +08:39:44 Transaction Type : RESPONSE +08:39:44 Received From : +08:39:44 ============================================================================ +08:39:44 FNo. Len. Field Value +08:39:44 ============================================================================ +08:39:44 [ 1] [ 4] [0210] +08:39:44 [ 2] [ 16] [6213544000196300] +08:39:44 [ 3] [ 6] [010000] +08:39:44 [ 4] [ 12] [000010000000] +08:39:44 [ 7] [ 10] [0320083735] +08:39:44 [ 11] [ 6] [933434] +08:39:44 [ 12] [ 6] [083735] +08:39:44 [ 13] [ 4] [0320] +08:39:44 [ 15] [ 4] [0320] +08:39:44 [ 18] [ 4] [6011] +08:39:44 [ 19] [ 3] [418] +08:39:44 [ 32] [ 6] [668899] +08:39:44 [ 35] [ 32] [6213544000196300=491212019630091] +08:39:44 [ 37] [ 12] [507902531629] +08:39:44 [ 38] [ 6] [933434] +08:39:44 [ 39] [ 2] [51] +08:39:44 [ 41] [ 8] [03020033] +08:39:44 [ 49] [ 3] [418] +08:39:44 [ 54] [ 40] [0001418C0000151527660002418C000015152766] +08:39:44 ============================================================================ +08:39:44 Sending to : +08:39:44 ============================================================================ +08:39:44 + + +waiting on router queue for slot.... +08:39:46 ============================================================================ +08:39:46 Slot Id : <489> +08:39:46 Transaction Type : RESPONSE +08:39:46 Received From : +08:39:46 ============================================================================ +08:39:46 FNo. Len. Field Value +08:39:46 ============================================================================ +08:39:46 [ 1] [ 4] [0210] +08:39:46 [ 2] [ 16] [6213544000196300] +08:39:46 [ 3] [ 6] [010000] +08:39:46 [ 4] [ 12] [000010000000] +08:39:46 [ 7] [ 10] [0320083735] +08:39:46 [ 11] [ 6] [933434] +08:39:46 [ 12] [ 6] [083735] +08:39:46 [ 13] [ 4] [0320] +08:39:46 [ 15] [ 4] [0320] +08:39:46 [ 18] [ 4] [6011] +08:39:46 [ 19] [ 3] [418] +08:39:46 [ 32] [ 6] [668899] +08:39:46 [ 35] [ 32] [6213544000196300=491212019630091] +08:39:46 [ 37] [ 12] [507902531629] +08:39:46 [ 38] [ 6] [933434] +08:39:46 [ 39] [ 2] [51] +08:39:46 [ 41] [ 8] [03020033] +08:39:46 [ 49] [ 3] [418] +08:39:46 [ 54] [ 40] [0001418C0000151527660002418C000015152766] +08:39:46 ============================================================================ +08:39:46 Calculate Source COMM Id = 4 +08:39:46 ============================================================================ +08:39:46 + + +waiting on router queue for slot.... +08:39:48 ============================================================================ +08:39:48 Slot Id : <476> +08:39:48 Transaction Type : REQUEST +08:39:48 Received From : +08:39:48 ============================================================================ +08:39:48 FNo. Len. Field Value +08:39:48 ============================================================================ +08:39:48 [ 1] [ 4] [0200] +08:39:48 [ 2] [ 16] [6213545000641492] +08:39:48 [ 3] [ 6] [010000] +08:39:48 [ 4] [ 12] [000100000000] +08:39:48 [ 7] [ 10] [0320013856] +08:39:48 [ 11] [ 6] [267244] +08:39:48 [ 12] [ 6] [083856] +08:39:48 [ 13] [ 4] [0320] +08:39:48 [ 14] [ 4] [4912] +08:39:48 [ 15] [ 4] [0320] +08:39:48 [ 18] [ 4] [6011] +08:39:48 [ 19] [ 3] [418] +08:39:48 [ 22] [ 3] [021] +08:39:48 [ 25] [ 2] [01] +08:39:48 [ 28] [ 9] [D00002000] +08:39:48 [ 32] [ 6] [180893] +08:39:48 [ 35] [ 32] [6213545000641492=491212014149807] +08:39:48 [ 37] [ 12] [507901267244] +08:39:48 [ 41] [ 8] [0222XKPV] +08:39:48 [ 42] [ 15] [999999 ] +08:39:48 [ 43] [ 40] [ATM XIENGKHUANG PHONSAVAN MARKET LOCATE,] +08:39:48 [ 49] [ 3] [418] +08:39:48 [ 52] [ 16] [B6E308A9EE8D7D3C] +08:39:48 ============================================================================ +08:39:48 + + +waiting on router queue for slot.... +08:39:48 Sending to : +08:39:48 ============================================================================ +08:39:48 Sending to : +08:39:48 ============================================================================ +08:39:49 ============================================================================ +08:39:49 Slot Id : <476> +08:39:49 Transaction Type : REQUEST +08:39:49 Received From : +08:39:49 ============================================================================ +08:39:49 FNo. Len. Field Value +08:39:49 ============================================================================ +08:39:49 [ 1] [ 4] [0200] +08:39:49 [ 2] [ 16] [6213545000641492] +08:39:49 [ 3] [ 6] [010000] +08:39:49 [ 4] [ 12] [000100000000] +08:39:49 [ 7] [ 10] [0320013856] +08:39:49 [ 11] [ 6] [267244] +08:39:49 [ 12] [ 6] [083856] +08:39:49 [ 13] [ 4] [0320] +08:39:49 [ 14] [ 4] [4912] +08:39:49 [ 15] [ 4] [0320] +08:39:49 [ 18] [ 4] [6011] +08:39:49 [ 19] [ 3] [418] +08:39:49 [ 22] [ 3] [021] +08:39:49 [ 25] [ 2] [01] +08:39:49 [ 28] [ 9] [D00002000] +08:39:49 [ 32] [ 6] [180893] +08:39:49 [ 35] [ 32] [6213545000641492=491212014149807] +08:39:49 [ 37] [ 12] [507901267244] +08:39:49 [ 41] [ 8] [0222XKPV] +08:39:49 [ 42] [ 15] [999999 ] +08:39:49 [ 43] [ 40] [ATM XIENGKHUANG PHONSAVAN MARKET LOCATE,] +08:39:49 [ 49] [ 3] [418] +08:39:49 [ 52] [ 16] [B6E308A9EE8D7D3C] +08:39:49 ============================================================================ +08:39:49 + + +waiting on router queue for slot.... +08:39:49 Sending to : +08:39:49 ============================================================================ +08:39:49 ============================================================================ +08:39:49 Slot Id : <476> +08:39:49 Transaction Type : REQUEST +08:39:49 Received From : +08:39:49 ============================================================================ +08:39:49 FNo. Len. Field Value +08:39:49 ============================================================================ +08:39:49 [ 1] [ 4] [0200] +08:39:49 [ 2] [ 16] [6213545000641492] +08:39:49 [ 3] [ 6] [010000] +08:39:49 [ 4] [ 12] [000100000000] +08:39:49 [ 7] [ 10] [0320013856] +08:39:49 [ 11] [ 6] [267244] +08:39:49 [ 12] [ 6] [083856] +08:39:49 [ 13] [ 4] [0320] +08:39:49 [ 14] [ 4] [4912] +08:39:49 [ 15] [ 4] [0320] +08:39:49 [ 18] [ 4] [6011] +08:39:49 [ 19] [ 3] [418] +08:39:49 [ 22] [ 3] [021] +08:39:49 [ 25] [ 2] [01] +08:39:49 [ 28] [ 9] [D00002000] +08:39:49 [ 32] [ 6] [180893] +08:39:49 [ 35] [ 32] [6213545000641492=491212014149807] +08:39:49 [ 37] [ 12] [507901267244] +08:39:49 [ 41] [ 8] [0222XKPV] +08:39:49 [ 42] [ 15] [999999 ] +08:39:49 [ 43] [ 40] [ATM XIENGKHUANG PHONSAVAN MARKET LOCATE,] +08:39:49 [ 49] [ 3] [418] +08:39:49 [ 52] [ 16] [1009F7A36B75B483] +08:39:49 ============================================================================ +08:39:49 + + +waiting on router queue for slot.... +08:39:49 Sending to : <0> +08:39:49 ============================================================================ +08:39:50 ============================================================================ +08:39:50 Slot Id : <476> +08:39:50 Transaction Type : RESPONSE +08:39:50 Received From : +08:39:50 ============================================================================ +08:39:50 FNo. Len. Field Value +08:39:50 ============================================================================ +08:39:50 [ 1] [ 4] [0210] +08:39:50 [ 2] [ 16] [6213545000641492] +08:39:50 [ 3] [ 6] [010000] +08:39:50 [ 4] [ 12] [000100000000] +08:39:50 [ 7] [ 10] [0320013856] +08:39:50 [ 11] [ 6] [267244] +08:39:50 [ 12] [ 6] [083856] +08:39:50 [ 13] [ 4] [0320] +08:39:50 [ 15] [ 4] [0320] +08:39:50 [ 18] [ 4] [6011] +08:39:50 [ 19] [ 3] [418] +08:39:50 [ 32] [ 6] [180893] +08:39:50 [ 35] [ 32] [6213545000641492=491212014149807] +08:39:50 [ 37] [ 12] [507901267244] +08:39:50 [ 38] [ 6] [460303] +08:39:50 [ 39] [ 2] [00] +08:39:50 [ 41] [ 8] [0222XKPV] +08:39:50 [ 49] [ 3] [418] +08:39:50 [ 54] [ 40] [0001418C0002042011500002418C000204201150] +08:39:50 ============================================================================ +08:39:50 Sending to : +08:39:50 ============================================================================ +08:39:50 + + +waiting on router queue for slot.... +08:39:51 ============================================================================ +08:39:51 Slot Id : <476> +08:39:51 Transaction Type : RESPONSE +08:39:51 Received From : +08:39:51 ============================================================================ +08:39:51 FNo. Len. Field Value +08:39:51 ============================================================================ +08:39:51 [ 1] [ 4] [0210] +08:39:51 [ 2] [ 16] [6213545000641492] +08:39:51 [ 3] [ 6] [010000] +08:39:51 [ 4] [ 12] [000100000000] +08:39:51 [ 7] [ 10] [0320013856] +08:39:51 [ 11] [ 6] [267244] +08:39:51 [ 12] [ 6] [083856] +08:39:51 [ 13] [ 4] [0320] +08:39:51 [ 15] [ 4] [0320] +08:39:51 [ 18] [ 4] [6011] +08:39:51 [ 19] [ 3] [418] +08:39:51 [ 32] [ 6] [180893] +08:39:51 [ 35] [ 32] [6213545000641492=491212014149807] +08:39:51 [ 37] [ 12] [507901267244] +08:39:51 [ 38] [ 6] [460303] +08:39:51 [ 39] [ 2] [00] +08:39:51 [ 41] [ 8] [0222XKPV] +08:39:51 [ 49] [ 3] [418] +08:39:51 [ 54] [ 40] [0001418C0002042011500002418C000204201150] +08:39:51 ============================================================================ +08:39:51 Calculate Source COMM Id = 2 +08:39:51 ============================================================================ +08:39:51 + + +waiting on router queue for slot.... +08:39:54 ============================================================================ +08:39:54 Slot Id : <472> +08:39:54 Transaction Type : REQUEST +08:39:54 Received From : +08:39:54 ============================================================================ +08:39:54 FNo. Len. Field Value +08:39:54 ============================================================================ +08:39:54 [ 1] [ 4] [0800] +08:39:54 [ 7] [ 10] [0320014742] +08:39:54 [ 11] [ 6] [012755] +08:39:54 [ 37] [ 12] [57908012755] +08:39:54 [ 70] [ 3] [301] +08:39:54 ============================================================================ +08:39:54 + + +waiting on router queue for slot.... +08:39:54 Sending to : +08:39:54 ============================================================================ +08:39:54 ============================================================================ +08:39:54 Slot Id : <472> +08:39:54 Transaction Type : RESPONSE +08:39:54 Received From : +08:39:54 ============================================================================ +08:39:54 FNo. Len. Field Value +08:39:54 ============================================================================ +08:39:54 [ 1] [ 4] [0810] +08:39:54 [ 7] [ 10] [0320014742] +08:39:54 [ 11] [ 6] [012755] +08:39:54 [ 37] [ 12] [579080127550] +08:39:54 [ 39] [ 2] [00] +08:39:54 [ 70] [ 3] [810] +08:39:54 ============================================================================ +08:39:54 Calculate Source COMM Id = 1 +08:39:54 ============================================================================ +08:39:54 + + +waiting on router queue for slot.... +08:40:02 ============================================================================ +08:40:02 Slot Id : <486> +08:40:02 Transaction Type : REQUEST +08:40:02 Received From : +08:40:02 ============================================================================ +08:40:02 FNo. Len. Field Value +08:40:02 ============================================================================ +08:40:02 [ 1] [ 4] [0800] +08:40:02 [ 7] [ 10] [0320013910] +08:40:02 [ 11] [ 6] [155456] +08:40:02 [ 70] [ 3] [301] +08:40:02 ============================================================================ +08:40:02 + + +waiting on router queue for slot.... +08:40:02 Sending to : +08:40:02 ============================================================================ +08:40:02 ============================================================================ +08:40:02 Slot Id : <486> +08:40:02 Transaction Type : RESPONSE +08:40:02 Received From : +08:40:02 ============================================================================ +08:40:02 FNo. Len. Field Value +08:40:02 ============================================================================ +08:40:02 [ 1] [ 4] [0810] +08:40:02 [ 7] [ 10] [0320013910] +08:40:02 [ 11] [ 6] [155456] +08:40:02 [ 39] [ 2] [00] +08:40:02 [ 70] [ 3] [301] +08:40:02 ============================================================================ +08:40:02 Calculate Source COMM Id = 2 +08:40:02 ============================================================================ +08:40:02 + + +waiting on router queue for slot.... +08:40:06 ============================================================================ +08:40:06 Slot Id : <477> +08:40:06 Transaction Type : REQUEST +08:40:06 Received From : +08:40:06 ============================================================================ +08:40:06 FNo. Len. Field Value +08:40:06 ============================================================================ +08:40:06 [ 1] [ 4] [0800] +08:40:06 [ 7] [ 10] [0320155155] +08:40:06 [ 11] [ 6] [085155] +08:40:06 [ 37] [ 12] [57908085155] +08:40:06 [ 70] [ 3] [301] +08:40:06 ============================================================================ +08:40:06 + + +waiting on router queue for slot.... +08:40:06 Sending to : +08:40:06 ============================================================================ +08:40:06 ============================================================================ +08:40:06 Slot Id : <477> +08:40:06 Transaction Type : RESPONSE +08:40:06 Received From : +08:40:06 ============================================================================ +08:40:06 FNo. Len. Field Value +08:40:06 ============================================================================ +08:40:06 [ 1] [ 4] [0810] +08:40:06 [ 7] [ 10] [0320155155] +08:40:06 [ 11] [ 6] [085155] +08:40:06 [ 37] [ 12] [579080851550] +08:40:06 [ 39] [ 2] [00] +08:40:06 [ 70] [ 3] [810] +08:40:06 ============================================================================ +08:40:06 Calculate Source COMM Id = 6 +08:40:06 ============================================================================ +08:40:06 + + +waiting on router queue for slot.... +08:40:17 ============================================================================ +08:40:17 Slot Id : <492> +08:40:17 Transaction Type : REQUEST +08:40:17 Received From : +08:40:17 ============================================================================ +08:40:17 FNo. Len. Field Value +08:40:17 ============================================================================ +08:40:17 [ 1] [ 4] [0200] +08:40:17 [ 2] [ 16] [6213544000196300] +08:40:17 [ 3] [ 6] [010000] +08:40:17 [ 4] [ 12] [000005000000] +08:40:17 [ 7] [ 10] [0320083809] +08:40:17 [ 11] [ 6] [933458] +08:40:17 [ 12] [ 6] [083809] +08:40:17 [ 13] [ 4] [0320] +08:40:17 [ 15] [ 4] [0320] +08:40:17 [ 18] [ 4] [6011] +08:40:17 [ 19] [ 3] [418] +08:40:17 [ 22] [ 3] [021] +08:40:17 [ 25] [ 2] [01] +08:40:17 [ 28] [ 9] [D00002000] +08:40:17 [ 32] [ 6] [668899] +08:40:17 [ 35] [ 32] [6213544000196300=491212019630091] +08:40:17 [ 37] [ 12] [507902531630] +08:40:17 [ 41] [ 8] [03020033] +08:40:17 [ 42] [ 15] [APT ] +08:40:17 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:40:17 [ 49] [ 3] [418] +08:40:17 [ 52] [ 16] [B9509D15BF4BC81B] +08:40:17 ============================================================================ +08:40:17 + + +waiting on router queue for slot.... +08:40:17 Sending to : +08:40:17 ============================================================================ +08:40:17 Sending to : +08:40:17 ============================================================================ +08:40:18 ============================================================================ +08:40:18 Slot Id : <6> +08:40:18 Transaction Type : REQUEST +08:40:18 Received From : +08:40:18 ============================================================================ +08:40:18 FNo. Len. Field Value +08:40:18 ============================================================================ +08:40:18 [ 1] [ 4] [0800] +08:40:18 [ 7] [ 10] [0320013926] +08:40:18 [ 11] [ 6] [155457] +08:40:18 [ 70] [ 3] [301] +08:40:18 ============================================================================ +08:40:18 + + +waiting on router queue for slot.... +08:40:18 Sending to : +08:40:18 ============================================================================ +08:40:18 ============================================================================ +08:40:18 Slot Id : <6> +08:40:18 Transaction Type : RESPONSE +08:40:18 Received From : +08:40:18 ============================================================================ +08:40:18 FNo. Len. Field Value +08:40:18 ============================================================================ +08:40:18 [ 1] [ 4] [0810] +08:40:18 [ 7] [ 10] [0320013926] +08:40:18 [ 11] [ 6] [155457] +08:40:18 [ 39] [ 2] [00] +08:40:18 [ 70] [ 3] [301] +08:40:18 ============================================================================ +08:40:18 Calculate Source COMM Id = 2 +08:40:18 ============================================================================ +08:40:18 + + +waiting on router queue for slot.... +08:40:18 ============================================================================ +08:40:18 Slot Id : <492> +08:40:18 Transaction Type : REQUEST +08:40:18 Received From : +08:40:18 ============================================================================ +08:40:18 FNo. Len. Field Value +08:40:18 ============================================================================ +08:40:18 [ 1] [ 4] [0200] +08:40:18 [ 2] [ 16] [6213544000196300] +08:40:18 [ 3] [ 6] [010000] +08:40:18 [ 4] [ 12] [000005000000] +08:40:18 [ 7] [ 10] [0320083809] +08:40:18 [ 11] [ 6] [933458] +08:40:18 [ 12] [ 6] [083809] +08:40:18 [ 13] [ 4] [0320] +08:40:18 [ 15] [ 4] [0320] +08:40:18 [ 18] [ 4] [6011] +08:40:18 [ 19] [ 3] [418] +08:40:18 [ 22] [ 3] [021] +08:40:18 [ 25] [ 2] [01] +08:40:18 [ 28] [ 9] [D00002000] +08:40:18 [ 32] [ 6] [668899] +08:40:18 [ 35] [ 32] [6213544000196300=491212019630091] +08:40:18 [ 37] [ 12] [507902531630] +08:40:18 [ 41] [ 8] [03020033] +08:40:18 [ 42] [ 15] [APT ] +08:40:18 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:40:18 [ 49] [ 3] [418] +08:40:18 [ 52] [ 16] [B9509D15BF4BC81B] +08:40:18 ============================================================================ +08:40:18 + + +waiting on router queue for slot.... +08:40:18 Sending to : +08:40:18 ============================================================================ +08:40:18 ============================================================================ +08:40:18 Slot Id : <492> +08:40:18 Transaction Type : REQUEST +08:40:18 Received From : +08:40:18 ============================================================================ +08:40:18 FNo. Len. Field Value +08:40:18 ============================================================================ +08:40:18 [ 1] [ 4] [0200] +08:40:18 [ 2] [ 16] [6213544000196300] +08:40:18 [ 3] [ 6] [010000] +08:40:18 [ 4] [ 12] [000005000000] +08:40:18 [ 7] [ 10] [0320083809] +08:40:18 [ 11] [ 6] [933458] +08:40:18 [ 12] [ 6] [083809] +08:40:18 [ 13] [ 4] [0320] +08:40:18 [ 15] [ 4] [0320] +08:40:18 [ 18] [ 4] [6011] +08:40:18 [ 19] [ 3] [418] +08:40:18 [ 22] [ 3] [021] +08:40:18 [ 25] [ 2] [01] +08:40:18 [ 28] [ 9] [D00002000] +08:40:18 [ 32] [ 6] [668899] +08:40:18 [ 35] [ 32] [6213544000196300=491212019630091] +08:40:18 [ 37] [ 12] [507902531630] +08:40:18 [ 41] [ 8] [03020033] +08:40:18 [ 42] [ 15] [APT ] +08:40:18 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:40:18 [ 49] [ 3] [418] +08:40:18 [ 52] [ 16] [44669A749233FA10] +08:40:18 ============================================================================ +08:40:18 + + +waiting on router queue for slot.... +08:40:18 Sending to : <0> +08:40:18 ============================================================================ +08:40:18 ============================================================================ +08:40:18 Slot Id : <492> +08:40:18 Transaction Type : RESPONSE +08:40:18 Received From : +08:40:18 ============================================================================ +08:40:18 FNo. Len. Field Value +08:40:18 ============================================================================ +08:40:18 [ 1] [ 4] [0210] +08:40:18 [ 2] [ 16] [6213544000196300] +08:40:18 [ 3] [ 6] [010000] +08:40:18 [ 4] [ 12] [000005000000] +08:40:18 [ 7] [ 10] [0320083809] +08:40:18 [ 11] [ 6] [933458] +08:40:18 [ 12] [ 6] [083809] +08:40:18 [ 13] [ 4] [0320] +08:40:18 [ 15] [ 4] [0320] +08:40:18 [ 18] [ 4] [6011] +08:40:18 [ 19] [ 3] [418] +08:40:18 [ 32] [ 6] [668899] +08:40:18 [ 35] [ 32] [6213544000196300=491212019630091] +08:40:18 [ 37] [ 12] [507902531630] +08:40:18 [ 38] [ 6] [425038] +08:40:18 [ 39] [ 2] [00] +08:40:18 [ 41] [ 8] [03020033] +08:40:18 [ 49] [ 3] [418] +08:40:18 [ 54] [ 40] [0001418C0000099527660002418C000009952766] +08:40:18 ============================================================================ +08:40:18 Sending to : +08:40:18 ============================================================================ +08:40:18 + + +waiting on router queue for slot.... +08:40:20 ============================================================================ +08:40:20 Slot Id : <492> +08:40:20 Transaction Type : RESPONSE +08:40:20 Received From : +08:40:20 ============================================================================ +08:40:20 FNo. Len. Field Value +08:40:20 ============================================================================ +08:40:20 [ 1] [ 4] [0210] +08:40:20 [ 2] [ 16] [6213544000196300] +08:40:20 [ 3] [ 6] [010000] +08:40:20 [ 4] [ 12] [000005000000] +08:40:20 [ 7] [ 10] [0320083809] +08:40:20 [ 11] [ 6] [933458] +08:40:20 [ 12] [ 6] [083809] +08:40:20 [ 13] [ 4] [0320] +08:40:20 [ 15] [ 4] [0320] +08:40:20 [ 18] [ 4] [6011] +08:40:20 [ 19] [ 3] [418] +08:40:20 [ 32] [ 6] [668899] +08:40:20 [ 35] [ 32] [6213544000196300=491212019630091] +08:40:20 [ 37] [ 12] [507902531630] +08:40:20 [ 38] [ 6] [425038] +08:40:20 [ 39] [ 2] [00] +08:40:20 [ 41] [ 8] [03020033] +08:40:20 [ 49] [ 3] [418] +08:40:20 [ 54] [ 40] [0001418C0000099527660002418C000009952766] +08:40:20 ============================================================================ +08:40:20 Calculate Source COMM Id = 4 +08:40:20 ============================================================================ +08:40:20 + + +waiting on router queue for slot.... +08:40:22 ============================================================================ +08:40:22 Slot Id : <485> +08:40:22 Transaction Type : REQUEST +08:40:22 Received From : +08:40:22 ============================================================================ +08:40:22 FNo. Len. Field Value +08:40:22 ============================================================================ +08:40:22 [ 1] [ 4] [0800] +08:40:22 [ 2] [ 5] [02531] +08:40:22 [ 3] [ 6] [579088] +08:40:22 [ 7] [ 10] [0320014022] +08:40:22 [ 11] [ 6] [806915] +08:40:22 [ 15] [ 10] [0320014022] +08:40:22 [ 37] [ 11] [57908806915] +08:40:22 [ 70] [ 3] [001] +08:40:22 ============================================================================ +08:40:22 + + +waiting on router queue for slot.... +08:40:22 ============================================================================ +08:40:22 Slot Id : <485> +08:40:22 Transaction Type : RESPONSE +08:40:22 Received From : +08:40:22 ============================================================================ +08:40:22 FNo. Len. Field Value +08:40:22 ============================================================================ +08:40:22 [ 1] [ 4] [0810] +08:40:22 [ 7] [ 10] [0320014022] +08:40:22 [ 11] [ 6] [806915] +08:40:22 [ 15] [ 4] [0320] +08:40:22 [ 37] [ 12] [57908806915] +08:40:22 [ 39] [ 2] [00] +08:40:22 [ 70] [ 3] [001] +08:40:22 ============================================================================ +08:40:22 Sending to : +08:40:22 ============================================================================ +08:40:22 + + +waiting on router queue for slot.... +08:40:23 ============================================================================ +08:40:23 Slot Id : <454> +08:40:23 Transaction Type : REQUEST +08:40:23 Received From : +08:40:23 ============================================================================ +08:40:23 FNo. Len. Field Value +08:40:23 ============================================================================ +08:40:23 [ 1] [ 4] [0200] +08:40:23 [ 2] [ 16] [6213544001514972] +08:40:23 [ 3] [ 6] [010000] +08:40:23 [ 4] [ 12] [000150000000] +08:40:23 [ 7] [ 10] [0320013930] +08:40:23 [ 11] [ 6] [267247] +08:40:23 [ 12] [ 6] [083930] +08:40:23 [ 13] [ 4] [0320] +08:40:23 [ 14] [ 4] [4912] +08:40:23 [ 15] [ 4] [0320] +08:40:23 [ 18] [ 4] [6011] +08:40:23 [ 19] [ 3] [418] +08:40:23 [ 22] [ 3] [021] +08:40:23 [ 25] [ 2] [01] +08:40:23 [ 28] [ 9] [D00002000] +08:40:23 [ 32] [ 6] [180893] +08:40:23 [ 35] [ 32] [6213544001514972=491212011497195] +08:40:23 [ 37] [ 12] [507901267247] +08:40:23 [ 41] [ 8] [0522XYXH] +08:40:23 [ 42] [ 15] [999999 ] +08:40:23 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:40:23 [ 49] [ 3] [418] +08:40:23 [ 52] [ 16] [868CE306C5F84B9C] +08:40:23 ============================================================================ +08:40:23 + + +waiting on router queue for slot.... +08:40:23 Sending to : +08:40:23 ============================================================================ +08:40:23 Sending to : +08:40:23 ============================================================================ +08:40:23 ============================================================================ +08:40:23 Slot Id : <454> +08:40:23 Transaction Type : REQUEST +08:40:23 Received From : +08:40:23 ============================================================================ +08:40:23 FNo. Len. Field Value +08:40:23 ============================================================================ +08:40:23 [ 1] [ 4] [0200] +08:40:23 [ 2] [ 16] [6213544001514972] +08:40:23 [ 3] [ 6] [010000] +08:40:23 [ 4] [ 12] [000150000000] +08:40:23 [ 7] [ 10] [0320013930] +08:40:23 [ 11] [ 6] [267247] +08:40:23 [ 12] [ 6] [083930] +08:40:23 [ 13] [ 4] [0320] +08:40:23 [ 14] [ 4] [4912] +08:40:23 [ 15] [ 4] [0320] +08:40:23 [ 18] [ 4] [6011] +08:40:23 [ 19] [ 3] [418] +08:40:23 [ 22] [ 3] [021] +08:40:23 [ 25] [ 2] [01] +08:40:23 [ 28] [ 9] [D00002000] +08:40:23 [ 32] [ 6] [180893] +08:40:23 [ 35] [ 32] [6213544001514972=491212011497195] +08:40:23 [ 37] [ 12] [507901267247] +08:40:23 [ 41] [ 8] [0522XYXH] +08:40:23 [ 42] [ 15] [999999 ] +08:40:23 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:40:23 [ 49] [ 3] [418] +08:40:23 [ 52] [ 16] [868CE306C5F84B9C] +08:40:23 ============================================================================ +08:40:23 + + +waiting on router queue for slot.... +08:40:23 Sending to : +08:40:23 ============================================================================ +08:40:24 ============================================================================ +08:40:24 Slot Id : <454> +08:40:24 Transaction Type : REQUEST +08:40:24 Received From : +08:40:24 ============================================================================ +08:40:24 FNo. Len. Field Value +08:40:24 ============================================================================ +08:40:24 [ 1] [ 4] [0200] +08:40:24 [ 2] [ 16] [6213544001514972] +08:40:24 [ 3] [ 6] [010000] +08:40:24 [ 4] [ 12] [000150000000] +08:40:24 [ 7] [ 10] [0320013930] +08:40:24 [ 11] [ 6] [267247] +08:40:24 [ 12] [ 6] [083930] +08:40:24 [ 13] [ 4] [0320] +08:40:24 [ 14] [ 4] [4912] +08:40:24 [ 15] [ 4] [0320] +08:40:24 [ 18] [ 4] [6011] +08:40:24 [ 19] [ 3] [418] +08:40:24 [ 22] [ 3] [021] +08:40:24 [ 25] [ 2] [01] +08:40:24 [ 28] [ 9] [D00002000] +08:40:24 [ 32] [ 6] [180893] +08:40:24 [ 35] [ 32] [6213544001514972=491212011497195] +08:40:24 [ 37] [ 12] [507901267247] +08:40:24 [ 41] [ 8] [0522XYXH] +08:40:24 [ 42] [ 15] [999999 ] +08:40:24 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:40:24 [ 49] [ 3] [418] +08:40:24 [ 52] [ 16] [D3073E68C270F0E7] +08:40:24 ============================================================================ +08:40:24 + + +waiting on router queue for slot.... +08:40:24 Sending to : <0> +08:40:24 ============================================================================ +08:40:24 ============================================================================ +08:40:24 Slot Id : <454> +08:40:24 Transaction Type : RESPONSE +08:40:24 Received From : +08:40:24 ============================================================================ +08:40:24 FNo. Len. Field Value +08:40:24 ============================================================================ +08:40:24 [ 1] [ 4] [0210] +08:40:24 [ 2] [ 16] [6213544001514972] +08:40:24 [ 3] [ 6] [010000] +08:40:24 [ 4] [ 12] [000150000000] +08:40:24 [ 7] [ 10] [0320013930] +08:40:24 [ 11] [ 6] [267247] +08:40:24 [ 12] [ 6] [083930] +08:40:24 [ 13] [ 4] [0320] +08:40:24 [ 15] [ 4] [0320] +08:40:24 [ 18] [ 4] [6011] +08:40:24 [ 19] [ 3] [418] +08:40:24 [ 22] [ 3] [021] +08:40:24 [ 32] [ 6] [180893] +08:40:24 [ 35] [ 32] [6213544001514972=491212011497195] +08:40:24 [ 37] [ 12] [507901267247] +08:40:24 [ 39] [ 2] [61] +08:40:24 [ 41] [ 8] [0522XYXH] +08:40:24 [ 49] [ 3] [418] +08:40:24 ============================================================================ +08:40:24 Sending to : +08:40:24 ============================================================================ +08:40:24 + + +waiting on router queue for slot.... +08:40:25 ============================================================================ +08:40:25 Slot Id : <454> +08:40:25 Transaction Type : RESPONSE +08:40:25 Received From : +08:40:25 ============================================================================ +08:40:25 FNo. Len. Field Value +08:40:25 ============================================================================ +08:40:25 [ 1] [ 4] [0210] +08:40:25 [ 2] [ 16] [6213544001514972] +08:40:25 [ 3] [ 6] [010000] +08:40:25 [ 4] [ 12] [000150000000] +08:40:25 [ 7] [ 10] [0320013930] +08:40:25 [ 11] [ 6] [267247] +08:40:25 [ 12] [ 6] [083930] +08:40:25 [ 13] [ 4] [0320] +08:40:25 [ 15] [ 4] [0320] +08:40:25 [ 18] [ 4] [6011] +08:40:25 [ 19] [ 3] [418] +08:40:25 [ 22] [ 3] [021] +08:40:25 [ 32] [ 6] [180893] +08:40:25 [ 35] [ 32] [6213544001514972=491212011497195] +08:40:25 [ 37] [ 12] [507901267247] +08:40:25 [ 39] [ 2] [61] +08:40:25 [ 41] [ 8] [0522XYXH] +08:40:25 [ 49] [ 3] [418] +08:40:25 ============================================================================ +08:40:25 Calculate Source COMM Id = 2 +08:40:25 ============================================================================ +08:40:25 + + +waiting on router queue for slot.... +08:40:36 ============================================================================ +08:40:36 Slot Id : <14> +08:40:36 Transaction Type : REQUEST +08:40:36 Received From : +08:40:36 ============================================================================ +08:40:36 FNo. Len. Field Value +08:40:36 ============================================================================ +08:40:36 [ 1] [ 4] [0200] +08:40:36 [ 2] [ 16] [1808930500014287] +08:40:36 [ 3] [ 6] [010000] +08:40:36 [ 4] [ 12] [000100000000] +08:40:36 [ 7] [ 10] [0320084033] +08:40:36 [ 11] [ 6] [687259] +08:40:36 [ 12] [ 6] [084033] +08:40:36 [ 13] [ 4] [0320] +08:40:36 [ 15] [ 4] [0320] +08:40:36 [ 18] [ 4] [6011] +08:40:36 [ 22] [ 3] [900] +08:40:36 [ 25] [ 2] [02] +08:40:36 [ 28] [ 9] [D00002000] +08:40:36 [ 32] [ 6] [621354] +08:40:36 [ 35] [ 27] [1808930500014287=1803500992] +08:40:36 [ 37] [ 12] [507903148762] +08:40:36 [ 41] [ 8] [04002400] +08:40:36 [ 42] [ 15] [NATIVE ] +08:40:36 [ 43] [ 40] [PAKSE SUPER MARKET Pakse LAO] +08:40:36 [ 49] [ 3] [418] +08:40:36 [ 52] [ 16] [40C6CF2738948B4D] +08:40:36 ============================================================================ +08:40:36 + + +waiting on router queue for slot.... +08:40:36 Sending to : +08:40:36 ============================================================================ +08:40:36 Sending to : +08:40:36 ============================================================================ +08:40:37 ============================================================================ +08:40:37 Slot Id : <14> +08:40:37 Transaction Type : REQUEST +08:40:37 Received From : +08:40:37 ============================================================================ +08:40:37 FNo. Len. Field Value +08:40:37 ============================================================================ +08:40:37 [ 1] [ 4] [0200] +08:40:37 [ 2] [ 16] [1808930500014287] +08:40:37 [ 3] [ 6] [010000] +08:40:37 [ 4] [ 12] [000100000000] +08:40:37 [ 7] [ 10] [0320084033] +08:40:37 [ 11] [ 6] [687259] +08:40:37 [ 12] [ 6] [084033] +08:40:37 [ 13] [ 4] [0320] +08:40:37 [ 15] [ 4] [0320] +08:40:37 [ 18] [ 4] [6011] +08:40:37 [ 22] [ 3] [900] +08:40:37 [ 25] [ 2] [02] +08:40:37 [ 28] [ 9] [D00002000] +08:40:37 [ 32] [ 6] [621354] +08:40:37 [ 35] [ 27] [1808930500014287=1803500992] +08:40:37 [ 37] [ 12] [507903148762] +08:40:37 [ 41] [ 8] [04002400] +08:40:37 [ 42] [ 15] [NATIVE ] +08:40:37 [ 43] [ 40] [PAKSE SUPER MARKET Pakse LAO] +08:40:37 [ 49] [ 3] [418] +08:40:37 [ 52] [ 16] [40C6CF2738948B4D] +08:40:37 ============================================================================ +08:40:37 + + +waiting on router queue for slot.... +08:40:37 Sending to : +08:40:37 ============================================================================ +08:40:37 ============================================================================ +08:40:37 Slot Id : <14> +08:40:37 Transaction Type : REQUEST +08:40:37 Received From : +08:40:37 ============================================================================ +08:40:37 FNo. Len. Field Value +08:40:37 ============================================================================ +08:40:37 [ 1] [ 4] [0200] +08:40:37 [ 2] [ 16] [1808930500014287] +08:40:37 [ 3] [ 6] [010000] +08:40:37 [ 4] [ 12] [000100000000] +08:40:37 [ 7] [ 10] [0320084033] +08:40:37 [ 11] [ 6] [687259] +08:40:37 [ 12] [ 6] [084033] +08:40:37 [ 13] [ 4] [0320] +08:40:37 [ 15] [ 4] [0320] +08:40:37 [ 18] [ 4] [6011] +08:40:37 [ 22] [ 3] [900] +08:40:37 [ 25] [ 2] [02] +08:40:37 [ 28] [ 9] [D00002000] +08:40:37 [ 32] [ 6] [621354] +08:40:37 [ 35] [ 27] [1808930500014287=1803500992] +08:40:37 [ 37] [ 12] [507903148762] +08:40:37 [ 41] [ 8] [04002400] +08:40:37 [ 42] [ 15] [NATIVE ] +08:40:37 [ 43] [ 40] [PAKSE SUPER MARKET Pakse LAO] +08:40:37 [ 49] [ 3] [418] +08:40:37 [ 52] [ 16] [E0FDAB2415DA6816] +08:40:37 ============================================================================ +08:40:37 + + +waiting on router queue for slot.... +08:40:37 Sending to : <2> +08:40:37 ============================================================================ +08:40:41 ============================================================================ +08:40:41 Slot Id : <14> +08:40:41 Transaction Type : RESPONSE +08:40:41 Received From : +08:40:41 ============================================================================ +08:40:41 FNo. Len. Field Value +08:40:41 ============================================================================ +08:40:41 [ 1] [ 4] [0210] +08:40:41 [ 2] [ 16] [1808930500014287] +08:40:41 [ 3] [ 6] [010000] +08:40:41 [ 4] [ 12] [000100000000] +08:40:41 [ 6] [ 12] [000100000000] +08:40:41 [ 7] [ 10] [0320084033] +08:40:41 [ 11] [ 6] [687259] +08:40:41 [ 12] [ 6] [084033] +08:40:41 [ 13] [ 4] [0320] +08:40:41 [ 18] [ 4] [6011] +08:40:41 [ 19] [ 3] [418] +08:40:41 [ 22] [ 3] [021] +08:40:41 [ 28] [ 9] [D00002000] +08:40:41 [ 32] [ 6] [621354] +08:40:41 [ 35] [ 27] [1808930500014287=1803500992] +08:40:41 [ 37] [ 12] [507903148762] +08:40:41 [ 39] [ 2] [55] +08:40:41 [ 41] [ 8] [04002400] +08:40:41 [ 49] [ 3] [418] +08:40:41 [ 51] [ 3] [418] +08:40:41 [ 52] [ 16] [E0FDAB2415DA6816] +08:40:41 ============================================================================ +08:40:41 Sending to : +08:40:41 ============================================================================ +08:40:41 + + +waiting on router queue for slot.... +08:40:43 ============================================================================ +08:40:43 Slot Id : <14> +08:40:43 Transaction Type : RESPONSE +08:40:43 Received From : +08:40:43 ============================================================================ +08:40:43 FNo. Len. Field Value +08:40:43 ============================================================================ +08:40:43 [ 1] [ 4] [0210] +08:40:43 [ 2] [ 16] [1808930500014287] +08:40:43 [ 3] [ 6] [010000] +08:40:43 [ 4] [ 12] [000100000000] +08:40:43 [ 6] [ 12] [000100000000] +08:40:43 [ 7] [ 10] [0320084033] +08:40:43 [ 11] [ 6] [687259] +08:40:43 [ 12] [ 6] [084033] +08:40:43 [ 13] [ 4] [0320] +08:40:43 [ 18] [ 4] [6011] +08:40:43 [ 19] [ 3] [418] +08:40:43 [ 22] [ 3] [021] +08:40:43 [ 28] [ 9] [D00002000] +08:40:43 [ 32] [ 6] [621354] +08:40:43 [ 35] [ 27] [1808930500014287=1803500992] +08:40:43 [ 37] [ 12] [507903148762] +08:40:43 [ 39] [ 2] [55] +08:40:43 [ 41] [ 8] [04002400] +08:40:43 [ 49] [ 3] [418] +08:40:43 [ 51] [ 3] [418] +08:40:43 [ 52] [ 16] [E0FDAB2415DA6816] +08:40:43 ============================================================================ +08:40:43 Calculate Source COMM Id = 0 +08:40:43 ============================================================================ +08:40:43 + + +waiting on router queue for slot.... +08:40:49 ============================================================================ +08:40:49 Slot Id : <13> +08:40:49 Transaction Type : REQUEST +08:40:49 Received From : +08:40:49 ============================================================================ +08:40:49 FNo. Len. Field Value +08:40:49 ============================================================================ +08:40:49 [ 1] [ 4] [0800] +08:40:49 [ 7] [ 10] [0320013957] +08:40:49 [ 11] [ 6] [155458] +08:40:49 [ 70] [ 3] [301] +08:40:49 ============================================================================ +08:40:49 + + +waiting on router queue for slot.... +08:40:49 Sending to : +08:40:49 ============================================================================ +08:40:49 ============================================================================ +08:40:49 Slot Id : <13> +08:40:49 Transaction Type : RESPONSE +08:40:49 Received From : +08:40:49 ============================================================================ +08:40:49 FNo. Len. Field Value +08:40:49 ============================================================================ +08:40:49 [ 1] [ 4] [0810] +08:40:49 [ 7] [ 10] [0320013957] +08:40:49 [ 11] [ 6] [155458] +08:40:49 [ 39] [ 2] [00] +08:40:49 [ 70] [ 3] [301] +08:40:49 ============================================================================ +08:40:49 Calculate Source COMM Id = 2 +08:40:49 ============================================================================ +08:40:49 + + +waiting on router queue for slot.... +08:41:00 ============================================================================ +08:41:00 Slot Id : <12> +08:41:00 Transaction Type : REQUEST +08:41:00 Received From : +08:41:00 ============================================================================ +08:41:00 FNo. Len. Field Value +08:41:00 ============================================================================ +08:41:00 [ 1] [ 4] [0800] +08:41:00 [ 7] [ 10] [0320014007] +08:41:00 [ 11] [ 6] [155459] +08:41:00 [ 70] [ 3] [301] +08:41:00 ============================================================================ +08:41:00 + + +waiting on router queue for slot.... +08:41:00 Sending to : +08:41:00 ============================================================================ +08:41:00 ============================================================================ +08:41:00 Slot Id : <12> +08:41:00 Transaction Type : RESPONSE +08:41:00 Received From : +08:41:00 ============================================================================ +08:41:00 FNo. Len. Field Value +08:41:00 ============================================================================ +08:41:00 [ 1] [ 4] [0810] +08:41:00 [ 7] [ 10] [0320014007] +08:41:00 [ 11] [ 6] [155459] +08:41:00 [ 39] [ 2] [00] +08:41:00 [ 70] [ 3] [301] +08:41:00 ============================================================================ +08:41:00 Calculate Source COMM Id = 2 +08:41:00 ============================================================================ +08:41:00 + + +waiting on router queue for slot.... +08:41:11 ============================================================================ +08:41:11 Slot Id : <16> +08:41:11 Transaction Type : REQUEST +08:41:11 Received From : +08:41:11 ============================================================================ +08:41:11 FNo. Len. Field Value +08:41:11 ============================================================================ +08:41:11 [ 1] [ 4] [0800] +08:41:11 [ 7] [ 10] [0320155300] +08:41:11 [ 11] [ 6] [085300] +08:41:11 [ 37] [ 12] [57908085300] +08:41:11 [ 70] [ 3] [301] +08:41:11 ============================================================================ +08:41:11 + + +waiting on router queue for slot.... +08:41:11 Sending to : +08:41:11 ============================================================================ +08:41:11 ============================================================================ +08:41:11 Slot Id : <16> +08:41:11 Transaction Type : RESPONSE +08:41:11 Received From : +08:41:11 ============================================================================ +08:41:11 FNo. Len. Field Value +08:41:11 ============================================================================ +08:41:11 [ 1] [ 4] [0810] +08:41:11 [ 7] [ 10] [0320155300] +08:41:11 [ 11] [ 6] [085300] +08:41:11 [ 37] [ 12] [579080853000] +08:41:11 [ 39] [ 2] [00] +08:41:11 [ 70] [ 3] [810] +08:41:11 ============================================================================ +08:41:11 Calculate Source COMM Id = 6 +08:41:11 ============================================================================ +08:41:11 + + +waiting on router queue for slot.... +08:41:15 ============================================================================ +08:41:15 Slot Id : <494> +08:41:15 Transaction Type : REQUEST +08:41:15 Received From : +08:41:15 ============================================================================ +08:41:15 FNo. Len. Field Value +08:41:15 ============================================================================ +08:41:15 [ 1] [ 4] [0800] +08:41:15 [ 7] [ 10] [0320014023] +08:41:15 [ 11] [ 6] [155460] +08:41:15 [ 70] [ 3] [301] +08:41:15 ============================================================================ +08:41:15 + + +waiting on router queue for slot.... +08:41:15 Sending to : +08:41:15 ============================================================================ +08:41:15 ============================================================================ +08:41:15 Slot Id : <494> +08:41:15 Transaction Type : RESPONSE +08:41:15 Received From : +08:41:15 ============================================================================ +08:41:15 FNo. Len. Field Value +08:41:15 ============================================================================ +08:41:15 [ 1] [ 4] [0810] +08:41:15 [ 7] [ 10] [0320014023] +08:41:15 [ 11] [ 6] [155460] +08:41:15 [ 39] [ 2] [00] +08:41:15 [ 70] [ 3] [301] +08:41:15 ============================================================================ +08:41:15 Calculate Source COMM Id = 2 +08:41:15 ============================================================================ +08:41:15 + + +waiting on router queue for slot.... +08:41:21 ============================================================================ +08:41:21 Slot Id : <22> +08:41:21 Transaction Type : REQUEST +08:41:21 Received From : +08:41:21 ============================================================================ +08:41:21 FNo. Len. Field Value +08:41:21 ============================================================================ +08:41:21 [ 1] [ 4] [0800] +08:41:21 [ 7] [ 10] [0320013912] +08:41:21 [ 11] [ 6] [022220] +08:41:21 [ 37] [ 12] [57908022220] +08:41:21 [ 70] [ 3] [301] +08:41:21 ============================================================================ +08:41:21 + + +waiting on router queue for slot.... +08:41:21 Sending to : +08:41:21 ============================================================================ +08:41:21 ============================================================================ +08:41:21 Slot Id : <22> +08:41:21 Transaction Type : RESPONSE +08:41:21 Received From : +08:41:21 ============================================================================ +08:41:21 FNo. Len. Field Value +08:41:21 ============================================================================ +08:41:21 [ 1] [ 4] [0810] +08:41:21 [ 7] [ 10] [0320013912] +08:41:21 [ 11] [ 6] [022220] +08:41:21 [ 37] [ 12] [579080222200] +08:41:21 [ 39] [ 2] [00] +08:41:21 [ 70] [ 3] [810] +08:41:21 ============================================================================ +08:41:21 Calculate Source COMM Id = 4 +08:41:21 ============================================================================ +08:41:21 + + +waiting on router queue for slot.... +08:41:24 ============================================================================ +08:41:24 Slot Id : <491> +08:41:24 Transaction Type : REQUEST +08:41:24 Received From : +08:41:24 ============================================================================ +08:41:24 FNo. Len. Field Value +08:41:24 ============================================================================ +08:41:24 [ 1] [ 4] [0800] +08:41:24 [ 2] [ 5] [02531] +08:41:24 [ 3] [ 6] [579088] +08:41:24 [ 7] [ 10] [0320014124] +08:41:24 [ 11] [ 6] [806916] +08:41:24 [ 15] [ 10] [0320014124] +08:41:24 [ 37] [ 11] [57908806916] +08:41:24 [ 70] [ 3] [001] +08:41:24 ============================================================================ +08:41:24 + + +waiting on router queue for slot.... +08:41:24 ============================================================================ +08:41:24 Slot Id : <491> +08:41:24 Transaction Type : RESPONSE +08:41:24 Received From : +08:41:24 ============================================================================ +08:41:24 FNo. Len. Field Value +08:41:24 ============================================================================ +08:41:24 [ 1] [ 4] [0810] +08:41:24 [ 7] [ 10] [0320014124] +08:41:24 [ 11] [ 6] [806916] +08:41:24 [ 15] [ 4] [0320] +08:41:24 [ 37] [ 12] [57908806916] +08:41:24 [ 39] [ 2] [00] +08:41:24 [ 70] [ 3] [001] +08:41:24 ============================================================================ +08:41:24 Sending to : +08:41:24 ============================================================================ +08:41:24 + + +waiting on router queue for slot.... +08:41:27 ============================================================================ +08:41:27 Slot Id : <469> +08:41:27 Transaction Type : REQUEST +08:41:27 Received From : +08:41:27 ============================================================================ +08:41:27 FNo. Len. Field Value +08:41:27 ============================================================================ +08:41:27 [ 1] [ 4] [0200] +08:41:27 [ 2] [ 16] [1808930500014287] +08:41:27 [ 3] [ 6] [010000] +08:41:27 [ 4] [ 12] [000100000000] +08:41:27 [ 7] [ 10] [0320084123] +08:41:27 [ 11] [ 6] [687447] +08:41:27 [ 12] [ 6] [084123] +08:41:27 [ 13] [ 4] [0320] +08:41:27 [ 15] [ 4] [0320] +08:41:27 [ 18] [ 4] [6011] +08:41:27 [ 22] [ 3] [900] +08:41:27 [ 25] [ 2] [02] +08:41:27 [ 28] [ 9] [D00002000] +08:41:27 [ 32] [ 6] [621354] +08:41:27 [ 35] [ 27] [1808930500014287=1803500992] +08:41:27 [ 37] [ 12] [507903148764] +08:41:27 [ 41] [ 8] [04002400] +08:41:27 [ 42] [ 15] [NATIVE ] +08:41:27 [ 43] [ 40] [PAKSE SUPER MARKET Pakse LAO] +08:41:27 [ 49] [ 3] [418] +08:41:27 [ 52] [ 16] [40C6CF2738948B4D] +08:41:27 ============================================================================ +08:41:27 + + +waiting on router queue for slot.... +08:41:27 Sending to : +08:41:27 ============================================================================ +08:41:27 Sending to : +08:41:27 ============================================================================ +08:41:27 ============================================================================ +08:41:27 Slot Id : <469> +08:41:27 Transaction Type : REQUEST +08:41:27 Received From : +08:41:27 ============================================================================ +08:41:27 FNo. Len. Field Value +08:41:27 ============================================================================ +08:41:27 [ 1] [ 4] [0200] +08:41:27 [ 2] [ 16] [1808930500014287] +08:41:27 [ 3] [ 6] [010000] +08:41:27 [ 4] [ 12] [000100000000] +08:41:27 [ 7] [ 10] [0320084123] +08:41:27 [ 11] [ 6] [687447] +08:41:27 [ 12] [ 6] [084123] +08:41:27 [ 13] [ 4] [0320] +08:41:27 [ 15] [ 4] [0320] +08:41:27 [ 18] [ 4] [6011] +08:41:27 [ 22] [ 3] [900] +08:41:27 [ 25] [ 2] [02] +08:41:27 [ 28] [ 9] [D00002000] +08:41:27 [ 32] [ 6] [621354] +08:41:27 [ 35] [ 27] [1808930500014287=1803500992] +08:41:27 [ 37] [ 12] [507903148764] +08:41:27 [ 41] [ 8] [04002400] +08:41:27 [ 42] [ 15] [NATIVE ] +08:41:27 [ 43] [ 40] [PAKSE SUPER MARKET Pakse LAO] +08:41:27 [ 49] [ 3] [418] +08:41:27 [ 52] [ 16] [40C6CF2738948B4D] +08:41:27 ============================================================================ +08:41:27 + + +waiting on router queue for slot.... +08:41:27 Sending to : +08:41:27 ============================================================================ +08:41:27 ============================================================================ +08:41:27 Slot Id : <469> +08:41:27 Transaction Type : REQUEST +08:41:27 Received From : +08:41:27 ============================================================================ +08:41:27 FNo. Len. Field Value +08:41:27 ============================================================================ +08:41:27 [ 1] [ 4] [0200] +08:41:27 [ 2] [ 16] [1808930500014287] +08:41:27 [ 3] [ 6] [010000] +08:41:27 [ 4] [ 12] [000100000000] +08:41:27 [ 7] [ 10] [0320084123] +08:41:27 [ 11] [ 6] [687447] +08:41:27 [ 12] [ 6] [084123] +08:41:27 [ 13] [ 4] [0320] +08:41:27 [ 15] [ 4] [0320] +08:41:27 [ 18] [ 4] [6011] +08:41:27 [ 22] [ 3] [900] +08:41:27 [ 25] [ 2] [02] +08:41:27 [ 28] [ 9] [D00002000] +08:41:27 [ 32] [ 6] [621354] +08:41:27 [ 35] [ 27] [1808930500014287=1803500992] +08:41:27 [ 37] [ 12] [507903148764] +08:41:27 [ 41] [ 8] [04002400] +08:41:27 [ 42] [ 15] [NATIVE ] +08:41:27 [ 43] [ 40] [PAKSE SUPER MARKET Pakse LAO] +08:41:27 [ 49] [ 3] [418] +08:41:27 [ 52] [ 16] [E0FDAB2415DA6816] +08:41:27 ============================================================================ +08:41:27 + + +waiting on router queue for slot.... +08:41:27 Sending to : <2> +08:41:27 ============================================================================ +08:41:30 ============================================================================ +08:41:30 Slot Id : <469> +08:41:30 Transaction Type : RESPONSE +08:41:30 Received From : +08:41:30 ============================================================================ +08:41:30 FNo. Len. Field Value +08:41:30 ============================================================================ +08:41:30 [ 1] [ 4] [0210] +08:41:30 [ 2] [ 16] [1808930500014287] +08:41:30 [ 3] [ 6] [010000] +08:41:30 [ 4] [ 12] [000100000000] +08:41:30 [ 6] [ 12] [000100000000] +08:41:30 [ 7] [ 10] [0320084123] +08:41:30 [ 11] [ 6] [687447] +08:41:30 [ 12] [ 6] [084123] +08:41:30 [ 13] [ 4] [0320] +08:41:30 [ 18] [ 4] [6011] +08:41:30 [ 19] [ 3] [418] +08:41:30 [ 22] [ 3] [021] +08:41:30 [ 28] [ 9] [D00002000] +08:41:30 [ 32] [ 6] [621354] +08:41:30 [ 35] [ 27] [1808930500014287=1803500992] +08:41:30 [ 37] [ 12] [507903148764] +08:41:30 [ 39] [ 2] [55] +08:41:30 [ 41] [ 8] [04002400] +08:41:30 [ 49] [ 3] [418] +08:41:30 [ 51] [ 3] [418] +08:41:30 [ 52] [ 16] [E0FDAB2415DA6816] +08:41:30 ============================================================================ +08:41:30 Sending to : +08:41:30 ============================================================================ +08:41:30 + + +waiting on router queue for slot.... +08:41:31 ============================================================================ +08:41:31 Slot Id : <469> +08:41:31 Transaction Type : RESPONSE +08:41:31 Received From : +08:41:31 ============================================================================ +08:41:31 FNo. Len. Field Value +08:41:31 ============================================================================ +08:41:31 [ 1] [ 4] [0210] +08:41:31 [ 2] [ 16] [1808930500014287] +08:41:31 [ 3] [ 6] [010000] +08:41:31 [ 4] [ 12] [000100000000] +08:41:31 [ 6] [ 12] [000100000000] +08:41:31 [ 7] [ 10] [0320084123] +08:41:31 [ 11] [ 6] [687447] +08:41:31 [ 12] [ 6] [084123] +08:41:31 [ 13] [ 4] [0320] +08:41:31 [ 18] [ 4] [6011] +08:41:31 [ 19] [ 3] [418] +08:41:31 [ 22] [ 3] [021] +08:41:31 [ 28] [ 9] [D00002000] +08:41:31 [ 32] [ 6] [621354] +08:41:31 [ 35] [ 27] [1808930500014287=1803500992] +08:41:31 [ 37] [ 12] [507903148764] +08:41:31 [ 39] [ 2] [55] +08:41:31 [ 41] [ 8] [04002400] +08:41:31 [ 49] [ 3] [418] +08:41:31 [ 51] [ 3] [418] +08:41:31 [ 52] [ 16] [E0FDAB2415DA6816] +08:41:31 ============================================================================ +08:41:31 Calculate Source COMM Id = 0 +08:41:31 ============================================================================ +08:41:31 + + +waiting on router queue for slot.... +08:41:40 ============================================================================ +08:41:40 Slot Id : <17> +08:41:40 Transaction Type : REQUEST +08:41:40 Received From : +08:41:40 ============================================================================ +08:41:40 FNo. Len. Field Value +08:41:40 ============================================================================ +08:41:40 [ 1] [ 4] [0800] +08:41:40 [ 7] [ 10] [0320014048] +08:41:40 [ 11] [ 6] [155461] +08:41:40 [ 70] [ 3] [301] +08:41:40 ============================================================================ +08:41:40 + + +waiting on router queue for slot.... +08:41:40 Sending to : +08:41:40 ============================================================================ +08:41:40 ============================================================================ +08:41:40 Slot Id : <17> +08:41:40 Transaction Type : RESPONSE +08:41:40 Received From : +08:41:40 ============================================================================ +08:41:40 FNo. Len. Field Value +08:41:40 ============================================================================ +08:41:40 [ 1] [ 4] [0810] +08:41:40 [ 7] [ 10] [0320014048] +08:41:40 [ 11] [ 6] [155461] +08:41:40 [ 39] [ 2] [00] +08:41:40 [ 70] [ 3] [301] +08:41:40 ============================================================================ +08:41:40 Calculate Source COMM Id = 2 +08:41:40 ============================================================================ +08:41:40 + + +waiting on router queue for slot.... +08:41:51 ============================================================================ +08:41:51 Slot Id : <499> +08:41:51 Transaction Type : REQUEST +08:41:51 Received From : +08:41:51 ============================================================================ +08:41:51 FNo. Len. Field Value +08:41:51 ============================================================================ +08:41:51 [ 1] [ 4] [0800] +08:41:51 [ 7] [ 10] [0320014059] +08:41:51 [ 11] [ 6] [155462] +08:41:51 [ 70] [ 3] [301] +08:41:51 ============================================================================ +08:41:51 + + +waiting on router queue for slot.... +08:41:51 Sending to : +08:41:51 ============================================================================ +08:41:51 ============================================================================ +08:41:51 Slot Id : <499> +08:41:51 Transaction Type : RESPONSE +08:41:51 Received From : +08:41:51 ============================================================================ +08:41:51 FNo. Len. Field Value +08:41:51 ============================================================================ +08:41:51 [ 1] [ 4] [0810] +08:41:51 [ 7] [ 10] [0320014059] +08:41:51 [ 11] [ 6] [155462] +08:41:51 [ 39] [ 2] [00] +08:41:51 [ 70] [ 3] [301] +08:41:51 ============================================================================ +08:41:51 Calculate Source COMM Id = 2 +08:41:51 ============================================================================ +08:41:51 + + +waiting on router queue for slot.... +08:42:00 ============================================================================ +08:42:00 Slot Id : <10> +08:42:00 Transaction Type : REQUEST +08:42:00 Received From : +08:42:00 ============================================================================ +08:42:00 FNo. Len. Field Value +08:42:00 ============================================================================ +08:42:00 [ 1] [ 4] [0200] +08:42:00 [ 2] [ 16] [6213548000188159] +08:42:00 [ 3] [ 6] [010000] +08:42:00 [ 4] [ 12] [000010000000] +08:42:00 [ 7] [ 10] [0320083952] +08:42:00 [ 11] [ 6] [933520] +08:42:00 [ 12] [ 6] [083952] +08:42:00 [ 13] [ 4] [0320] +08:42:00 [ 15] [ 4] [0320] +08:42:00 [ 18] [ 4] [6011] +08:42:00 [ 19] [ 3] [418] +08:42:00 [ 22] [ 3] [021] +08:42:00 [ 25] [ 2] [01] +08:42:00 [ 28] [ 9] [D00002000] +08:42:00 [ 32] [ 6] [668899] +08:42:00 [ 35] [ 32] [6213548000188159=171212018815258] +08:42:00 [ 37] [ 12] [507900297307] +08:42:00 [ 41] [ 8] [03010006] +08:42:00 [ 42] [ 15] [APT ] +08:42:00 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +08:42:00 [ 49] [ 3] [418] +08:42:00 [ 52] [ 16] [E4DF33CE203ED66D] +08:42:00 ============================================================================ +08:42:00 + + +waiting on router queue for slot.... +08:42:00 Sending to : +08:42:00 ============================================================================ +08:42:00 Sending to : +08:42:00 ============================================================================ +08:42:01 ============================================================================ +08:42:01 Slot Id : <10> +08:42:01 Transaction Type : REQUEST +08:42:01 Received From : +08:42:01 ============================================================================ +08:42:01 FNo. Len. Field Value +08:42:01 ============================================================================ +08:42:01 [ 1] [ 4] [0200] +08:42:01 [ 2] [ 16] [6213548000188159] +08:42:01 [ 3] [ 6] [010000] +08:42:01 [ 4] [ 12] [000010000000] +08:42:01 [ 7] [ 10] [0320083952] +08:42:01 [ 11] [ 6] [933520] +08:42:01 [ 12] [ 6] [083952] +08:42:01 [ 13] [ 4] [0320] +08:42:01 [ 15] [ 4] [0320] +08:42:01 [ 18] [ 4] [6011] +08:42:01 [ 19] [ 3] [418] +08:42:01 [ 22] [ 3] [021] +08:42:01 [ 25] [ 2] [01] +08:42:01 [ 28] [ 9] [D00002000] +08:42:01 [ 32] [ 6] [668899] +08:42:01 [ 35] [ 32] [6213548000188159=171212018815258] +08:42:01 [ 37] [ 12] [507900297307] +08:42:01 [ 41] [ 8] [03010006] +08:42:01 [ 42] [ 15] [APT ] +08:42:01 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +08:42:01 [ 49] [ 3] [418] +08:42:01 [ 52] [ 16] [E4DF33CE203ED66D] +08:42:01 ============================================================================ +08:42:01 + + +waiting on router queue for slot.... +08:42:01 Sending to : +08:42:01 ============================================================================ +08:42:01 ============================================================================ +08:42:01 Slot Id : <10> +08:42:01 Transaction Type : REQUEST +08:42:01 Received From : +08:42:01 ============================================================================ +08:42:01 FNo. Len. Field Value +08:42:01 ============================================================================ +08:42:01 [ 1] [ 4] [0200] +08:42:01 [ 2] [ 16] [6213548000188159] +08:42:01 [ 3] [ 6] [010000] +08:42:01 [ 4] [ 12] [000010000000] +08:42:01 [ 7] [ 10] [0320083952] +08:42:01 [ 11] [ 6] [933520] +08:42:01 [ 12] [ 6] [083952] +08:42:01 [ 13] [ 4] [0320] +08:42:01 [ 15] [ 4] [0320] +08:42:01 [ 18] [ 4] [6011] +08:42:01 [ 19] [ 3] [418] +08:42:01 [ 22] [ 3] [021] +08:42:01 [ 25] [ 2] [01] +08:42:01 [ 28] [ 9] [D00002000] +08:42:01 [ 32] [ 6] [668899] +08:42:01 [ 35] [ 32] [6213548000188159=171212018815258] +08:42:01 [ 37] [ 12] [507900297307] +08:42:01 [ 41] [ 8] [03010006] +08:42:01 [ 42] [ 15] [APT ] +08:42:01 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +08:42:01 [ 49] [ 3] [418] +08:42:01 [ 52] [ 16] [83D827FFDE474444] +08:42:01 ============================================================================ +08:42:01 + + +waiting on router queue for slot.... +08:42:01 Sending to : <0> +08:42:01 ============================================================================ +08:42:01 ============================================================================ +08:42:01 Slot Id : <31> +08:42:01 Transaction Type : REQUEST +08:42:01 Received From : +08:42:01 ============================================================================ +08:42:01 FNo. Len. Field Value +08:42:01 ============================================================================ +08:42:01 [ 1] [ 4] [0200] +08:42:01 [ 2] [ 16] [6213544001514972] +08:42:01 [ 3] [ 6] [010000] +08:42:01 [ 4] [ 12] [000150000000] +08:42:01 [ 7] [ 10] [0320014107] +08:42:01 [ 11] [ 6] [267254] +08:42:01 [ 12] [ 6] [084106] +08:42:01 [ 13] [ 4] [0320] +08:42:01 [ 14] [ 4] [4912] +08:42:01 [ 15] [ 4] [0320] +08:42:01 [ 18] [ 4] [6011] +08:42:01 [ 19] [ 3] [418] +08:42:01 [ 22] [ 3] [021] +08:42:01 [ 25] [ 2] [01] +08:42:01 [ 28] [ 9] [D00002000] +08:42:01 [ 32] [ 6] [180893] +08:42:01 [ 35] [ 32] [6213544001514972=491212011497195] +08:42:01 [ 37] [ 12] [507901267254] +08:42:01 [ 41] [ 8] [0522XYXH] +08:42:01 [ 42] [ 15] [999999 ] +08:42:01 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:42:01 [ 49] [ 3] [418] +08:42:01 [ 52] [ 16] [868CE306C5F84B9C] +08:42:01 ============================================================================ +08:42:01 + + +waiting on router queue for slot.... +08:42:01 Sending to : +08:42:01 ============================================================================ +08:42:01 Sending to : +08:42:01 ============================================================================ +08:42:01 ============================================================================ +08:42:01 Slot Id : <481> +08:42:01 Transaction Type : REQUEST +08:42:01 Received From : +08:42:01 ============================================================================ +08:42:01 FNo. Len. Field Value +08:42:01 ============================================================================ +08:42:01 [ 1] [ 4] [0800] +08:42:01 [ 7] [ 10] [0320014109] +08:42:01 [ 11] [ 6] [155463] +08:42:01 [ 70] [ 3] [301] +08:42:01 ============================================================================ +08:42:01 + + +waiting on router queue for slot.... +08:42:01 Sending to : +08:42:01 ============================================================================ +08:42:01 ============================================================================ +08:42:01 Slot Id : <481> +08:42:01 Transaction Type : RESPONSE +08:42:01 Received From : +08:42:01 ============================================================================ +08:42:01 FNo. Len. Field Value +08:42:01 ============================================================================ +08:42:01 [ 1] [ 4] [0810] +08:42:01 [ 7] [ 10] [0320014109] +08:42:01 [ 11] [ 6] [155463] +08:42:01 [ 39] [ 2] [00] +08:42:01 [ 70] [ 3] [301] +08:42:01 ============================================================================ +08:42:01 Calculate Source COMM Id = 2 +08:42:01 ============================================================================ +08:42:01 + + +waiting on router queue for slot.... +08:42:01 ============================================================================ +08:42:01 Slot Id : <31> +08:42:01 Transaction Type : REQUEST +08:42:01 Received From : +08:42:01 ============================================================================ +08:42:01 FNo. Len. Field Value +08:42:01 ============================================================================ +08:42:01 [ 1] [ 4] [0200] +08:42:01 [ 2] [ 16] [6213544001514972] +08:42:01 [ 3] [ 6] [010000] +08:42:01 [ 4] [ 12] [000150000000] +08:42:01 [ 7] [ 10] [0320014107] +08:42:01 [ 11] [ 6] [267254] +08:42:01 [ 12] [ 6] [084106] +08:42:01 [ 13] [ 4] [0320] +08:42:01 [ 14] [ 4] [4912] +08:42:01 [ 15] [ 4] [0320] +08:42:01 [ 18] [ 4] [6011] +08:42:01 [ 19] [ 3] [418] +08:42:01 [ 22] [ 3] [021] +08:42:01 [ 25] [ 2] [01] +08:42:01 [ 28] [ 9] [D00002000] +08:42:01 [ 32] [ 6] [180893] +08:42:01 [ 35] [ 32] [6213544001514972=491212011497195] +08:42:01 [ 37] [ 12] [507901267254] +08:42:01 [ 41] [ 8] [0522XYXH] +08:42:01 [ 42] [ 15] [999999 ] +08:42:01 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:42:01 [ 49] [ 3] [418] +08:42:01 [ 52] [ 16] [868CE306C5F84B9C] +08:42:01 ============================================================================ +08:42:01 + + +waiting on router queue for slot.... +08:42:01 Sending to : +08:42:01 ============================================================================ +08:42:01 ============================================================================ +08:42:01 Slot Id : <31> +08:42:01 Transaction Type : REQUEST +08:42:01 Received From : +08:42:01 ============================================================================ +08:42:01 FNo. Len. Field Value +08:42:01 ============================================================================ +08:42:01 [ 1] [ 4] [0200] +08:42:01 [ 2] [ 16] [6213544001514972] +08:42:01 [ 3] [ 6] [010000] +08:42:01 [ 4] [ 12] [000150000000] +08:42:01 [ 7] [ 10] [0320014107] +08:42:01 [ 11] [ 6] [267254] +08:42:01 [ 12] [ 6] [084106] +08:42:01 [ 13] [ 4] [0320] +08:42:01 [ 14] [ 4] [4912] +08:42:01 [ 15] [ 4] [0320] +08:42:01 [ 18] [ 4] [6011] +08:42:01 [ 19] [ 3] [418] +08:42:01 [ 22] [ 3] [021] +08:42:01 [ 25] [ 2] [01] +08:42:01 [ 28] [ 9] [D00002000] +08:42:01 [ 32] [ 6] [180893] +08:42:01 [ 35] [ 32] [6213544001514972=491212011497195] +08:42:01 [ 37] [ 12] [507901267254] +08:42:01 [ 41] [ 8] [0522XYXH] +08:42:01 [ 42] [ 15] [999999 ] +08:42:01 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +08:42:01 [ 49] [ 3] [418] +08:42:01 [ 52] [ 16] [D3073E68C270F0E7] +08:42:01 ============================================================================ +08:42:01 + + +waiting on router queue for slot.... +08:42:01 Sending to : <0> +08:42:01 ============================================================================ +08:42:01 ============================================================================ +08:42:01 Slot Id : <31> +08:42:01 Transaction Type : RESPONSE +08:42:01 Received From : +08:42:01 ============================================================================ +08:42:01 FNo. Len. Field Value +08:42:01 ============================================================================ +08:42:01 [ 1] [ 4] [0210] +08:42:01 [ 2] [ 16] [6213544001514972] +08:42:01 [ 3] [ 6] [010000] +08:42:01 [ 4] [ 12] [000150000000] +08:42:01 [ 7] [ 10] [0320014107] +08:42:01 [ 11] [ 6] [267254] +08:42:01 [ 12] [ 6] [084106] +08:42:01 [ 13] [ 4] [0320] +08:42:01 [ 15] [ 4] [0320] +08:42:01 [ 18] [ 4] [6011] +08:42:01 [ 19] [ 3] [418] +08:42:01 [ 22] [ 3] [021] +08:42:01 [ 32] [ 6] [180893] +08:42:01 [ 35] [ 32] [6213544001514972=491212011497195] +08:42:01 [ 37] [ 12] [507901267254] +08:42:01 [ 39] [ 2] [61] +08:42:01 [ 41] [ 8] [0522XYXH] +08:42:01 [ 49] [ 3] [418] +08:42:01 ============================================================================ +08:42:01 Sending to : +08:42:01 ============================================================================ +08:42:01 + + +waiting on router queue for slot.... +08:42:01 ============================================================================ +08:42:01 Slot Id : <10> +08:42:01 Transaction Type : RESPONSE +08:42:01 Received From : +08:42:01 ============================================================================ +08:42:01 FNo. Len. Field Value +08:42:01 ============================================================================ +08:42:01 [ 1] [ 4] [0210] +08:42:01 [ 2] [ 16] [6213548000188159] +08:42:01 [ 3] [ 6] [010000] +08:42:01 [ 4] [ 12] [000010000000] +08:42:01 [ 7] [ 10] [0320083952] +08:42:01 [ 11] [ 6] [933520] +08:42:01 [ 12] [ 6] [083952] +08:42:01 [ 13] [ 4] [0320] +08:42:01 [ 15] [ 4] [0320] +08:42:01 [ 18] [ 4] [6011] +08:42:01 [ 19] [ 3] [418] +08:42:01 [ 32] [ 6] [668899] +08:42:01 [ 35] [ 32] [6213548000188159=171212018815258] +08:42:01 [ 37] [ 12] [507900297307] +08:42:01 [ 38] [ 6] [294585] +08:42:01 [ 39] [ 2] [00] +08:42:01 [ 41] [ 8] [03010006] +08:42:01 [ 49] [ 3] [418] +08:42:01 [ 54] [ 40] [0001418C0000158220240002418C000015822024] +08:42:01 ============================================================================ +08:42:01 Sending to : +08:42:01 ============================================================================ +08:42:01 + + +waiting on router queue for slot.... +08:42:02 ============================================================================ +08:42:02 Slot Id : <31> +08:42:02 Transaction Type : RESPONSE +08:42:02 Received From : +08:42:02 ============================================================================ +08:42:02 FNo. Len. Field Value +08:42:02 ============================================================================ +08:42:02 [ 1] [ 4] [0210] +08:42:02 [ 2] [ 16] [6213544001514972] +08:42:02 [ 3] [ 6] [010000] +08:42:02 [ 4] [ 12] [000150000000] +08:42:02 [ 7] [ 10] [0320014107] +08:42:02 [ 11] [ 6] [267254] +08:42:02 [ 12] [ 6] [084106] +08:42:02 [ 13] [ 4] [0320] +08:42:02 [ 15] [ 4] [0320] +08:42:02 [ 18] [ 4] [6011] +08:42:02 [ 19] [ 3] [418] +08:42:02 [ 22] [ 3] [021] +08:42:02 [ 32] [ 6] [180893] +08:42:02 [ 35] [ 32] [6213544001514972=491212011497195] +08:42:02 [ 37] [ 12] [507901267254] +08:42:02 [ 39] [ 2] [61] +08:42:02 [ 41] [ 8] [0522XYXH] +08:42:02 [ 49] [ 3] [418] +08:42:02 ============================================================================ +08:42:02 Calculate Source COMM Id = 2 +08:42:02 ============================================================================ +08:42:02 + + +waiting on router queue for slot.... +08:42:04 ============================================================================ +08:42:04 Slot Id : <10> +08:42:04 Transaction Type : RESPONSE +08:42:04 Received From : +08:42:04 ============================================================================ +08:42:04 FNo. Len. Field Value +08:42:04 ============================================================================ +08:42:04 [ 1] [ 4] [0210] +08:42:04 [ 2] [ 16] [6213548000188159] +08:42:04 [ 3] [ 6] [010000] +08:42:04 [ 4] [ 12] [000010000000] +08:42:04 [ 7] [ 10] [0320083952] +08:42:04 [ 11] [ 6] [933520] +08:42:04 [ 12] [ 6] [083952] +08:42:04 [ 13] [ 4] [0320] +08:42:04 [ 15] [ 4] [0320] +08:42:04 [ 18] [ 4] [6011] +08:42:04 [ 19] [ 3] [418] +08:42:04 [ 32] [ 6] [668899] +08:42:04 [ 35] [ 32] [6213548000188159=171212018815258] +08:42:04 [ 37] [ 12] [507900297307] +08:42:04 [ 38] [ 6] [294585] +08:42:04 [ 39] [ 2] [00] +08:42:04 [ 41] [ 8] [03010006] +08:42:04 [ 49] [ 3] [418] +08:42:04 [ 54] [ 40] [0001418C0000158220240002418C000015822024] +08:42:04 ============================================================================ +08:42:04 Calculate Source COMM Id = 4 +08:42:04 ============================================================================ +08:42:04 + + +waiting on router queue for slot.... +08:42:11 ============================================================================ +08:42:11 Slot Id : <23> +08:42:11 Transaction Type : REQUEST +08:42:11 Received From : +08:42:11 ============================================================================ +08:42:11 FNo. Len. Field Value +08:42:11 ============================================================================ +08:42:11 [ 1] [ 4] [0200] +08:42:11 [ 2] [ 16] [6688990103684708] +08:42:11 [ 3] [ 6] [010000] +08:42:11 [ 4] [ 12] [000050000000] +08:42:11 [ 7] [ 10] [0320084208] +08:42:11 [ 11] [ 6] [687635] +08:42:11 [ 12] [ 6] [084208] +08:42:11 [ 13] [ 4] [0320] +08:42:11 [ 15] [ 4] [0320] +08:42:11 [ 18] [ 4] [6011] +08:42:11 [ 22] [ 3] [900] +08:42:11 [ 25] [ 2] [02] +08:42:11 [ 28] [ 9] [D00002000] +08:42:11 [ 32] [ 6] [621354] +08:42:11 [ 35] [ 37] [6688990103684708=43011231470836200000] +08:42:11 [ 37] [ 12] [507903372747] +08:42:11 [ 41] [ 8] [13001700] +08:42:11 [ 42] [ 15] [NATIVE ] +08:42:11 [ 43] [ 40] [Khoun District Khoun LAO] +08:42:11 [ 49] [ 3] [418] +08:42:11 [ 52] [ 16] [4F8559568D2CC47F] +08:42:11 ============================================================================ +08:42:11 + + +waiting on router queue for slot.... +08:42:11 Sending to : +08:42:11 ============================================================================ +08:42:11 Sending to : +08:42:11 ============================================================================ +08:42:12 ============================================================================ +08:42:12 Slot Id : <23> +08:42:12 Transaction Type : REQUEST +08:42:12 Received From : +08:42:12 ============================================================================ +08:42:12 FNo. Len. Field Value +08:42:12 ============================================================================ +08:42:12 [ 1] [ 4] [0200] +08:42:12 [ 2] [ 16] [6688990103684708] +08:42:12 [ 3] [ 6] [010000] +08:42:12 [ 4] [ 12] [000050000000] +08:42:12 [ 7] [ 10] [0320084208] +08:42:12 [ 11] [ 6] [687635] +08:42:12 [ 12] [ 6] [084208] +08:42:12 [ 13] [ 4] [0320] +08:42:12 [ 15] [ 4] [0320] +08:42:12 [ 18] [ 4] [6011] +08:42:12 [ 22] [ 3] [900] +08:42:12 [ 25] [ 2] [02] +08:42:12 [ 28] [ 9] [D00002000] +08:42:12 [ 32] [ 6] [621354] +08:42:12 [ 35] [ 37] [6688990103684708=43011231470836200000] +08:42:12 [ 37] [ 12] [507903372747] +08:42:12 [ 41] [ 8] [13001700] +08:42:12 [ 42] [ 15] [NATIVE ] +08:42:12 [ 43] [ 40] [Khoun District Khoun LAO] +08:42:12 [ 49] [ 3] [418] +08:42:12 [ 52] [ 16] [4F8559568D2CC47F] +08:42:12 ============================================================================ +08:42:12 + + +waiting on router queue for slot.... +08:42:12 Sending to : +08:42:12 ============================================================================ +08:42:12 ============================================================================ +08:42:12 Slot Id : <23> +08:42:12 Transaction Type : REQUEST +08:42:12 Received From : +08:42:12 ============================================================================ +08:42:12 FNo. Len. Field Value +08:42:12 ============================================================================ +08:42:12 [ 1] [ 4] [0200] +08:42:12 [ 2] [ 16] [6688990103684708] +08:42:12 [ 3] [ 6] [010000] +08:42:12 [ 4] [ 12] [000050000000] +08:42:12 [ 7] [ 10] [0320084208] +08:42:12 [ 11] [ 6] [687635] +08:42:12 [ 12] [ 6] [084208] +08:42:12 [ 13] [ 4] [0320] +08:42:12 [ 15] [ 4] [0320] +08:42:12 [ 18] [ 4] [6011] +08:42:12 [ 22] [ 3] [900] +08:42:12 [ 25] [ 2] [02] +08:42:12 [ 28] [ 9] [D00002000] +08:42:12 [ 32] [ 6] [621354] +08:42:12 [ 35] [ 37] [6688990103684708=43011231470836200000] +08:42:12 [ 37] [ 12] [507903372747] +08:42:12 [ 41] [ 8] [13001700] +08:42:12 [ 42] [ 15] [NATIVE ] +08:42:12 [ 43] [ 40] [Khoun District Khoun LAO] +08:42:12 [ 49] [ 3] [418] +08:42:12 [ 52] [ 16] [EEA2EF46828C9829] +08:42:12 ============================================================================ +08:42:12 + + +waiting on router queue for slot.... +08:42:12 Sending to : <4> +08:42:12 ============================================================================ +08:42:13 ============================================================================ +08:42:13 Slot Id : <23> +08:42:13 Transaction Type : RESPONSE +08:42:13 Received From : +08:42:13 ============================================================================ +08:42:13 FNo. Len. Field Value +08:42:13 ============================================================================ +08:42:13 [ 1] [ 4] [0210] +08:42:13 [ 2] [ 16] [6688990103684708] +08:42:13 [ 3] [ 6] [010000] +08:42:13 [ 4] [ 12] [000050000000] +08:42:13 [ 11] [ 6] [687635] +08:42:13 [ 12] [ 6] [084208] +08:42:13 [ 15] [ 4] [0320] +08:42:13 [ 18] [ 4] [6011] +08:42:13 [ 32] [ 6] [621354] +08:42:13 [ 35] [ 37] [6688990103684708=43011231470836200000] +08:42:13 [ 37] [ 12] [507903372747] +08:42:13 [ 38] [ 6] [630608] +08:42:13 [ 39] [ 2] [00] +08:42:13 [ 41] [ 8] [13001700] +08:42:13 [ 49] [ 3] [418] +08:42:13 [ 54] [ 20] [0002418C000102901234] +08:42:13 ============================================================================ +08:42:13 Sending to : +08:42:13 ============================================================================ +08:42:13 + + +waiting on router queue for slot.... +08:42:14 ============================================================================ +08:42:14 Slot Id : <23> +08:42:14 Transaction Type : RESPONSE +08:42:14 Received From : +08:42:14 ============================================================================ +08:42:14 FNo. Len. Field Value +08:42:14 ============================================================================ +08:42:14 [ 1] [ 4] [0210] +08:42:14 [ 2] [ 16] [6688990103684708] +08:42:14 [ 3] [ 6] [010000] +08:42:14 [ 4] [ 12] [000050000000] +08:42:14 [ 11] [ 6] [687635] +08:42:14 [ 12] [ 6] [084208] +08:42:14 [ 15] [ 4] [0320] +08:42:14 [ 18] [ 4] [6011] +08:42:14 [ 32] [ 6] [621354] +08:42:14 [ 35] [ 37] [6688990103684708=43011231470836200000] +08:42:14 [ 37] [ 12] [507903372747] +08:42:14 [ 38] [ 6] [630608] +08:42:14 [ 39] [ 2] [00] +08:42:14 [ 41] [ 8] [13001700] +08:42:14 [ 49] [ 3] [418] +08:42:14 [ 54] [ 20] [0002418C000102901234] +08:42:14 ============================================================================ +08:42:14 Calculate Source COMM Id = 0 +08:42:14 ============================================================================ +08:42:14 + + +waiting on router queue for slot.... +08:42:16 ============================================================================ +08:42:16 Slot Id : <3> +08:42:16 Transaction Type : REQUEST +08:42:16 Received From : +08:42:16 ============================================================================ +08:42:16 FNo. Len. Field Value +08:42:16 ============================================================================ +08:42:16 [ 1] [ 4] [0800] +08:42:16 [ 7] [ 10] [0320155405] +08:42:16 [ 11] [ 6] [085405] +08:42:16 [ 37] [ 12] [57908085405] +08:42:16 [ 70] [ 3] [301] +08:42:16 ============================================================================ +08:42:16 + + +waiting on router queue for slot.... +08:42:16 Sending to : +08:42:16 ============================================================================ +08:42:16 ============================================================================ +08:42:16 Slot Id : <3> +08:42:16 Transaction Type : RESPONSE +08:42:16 Received From : +08:42:16 ============================================================================ +08:42:16 FNo. Len. Field Value +08:42:16 ============================================================================ +08:42:16 [ 1] [ 4] [0810] +08:42:16 [ 7] [ 10] [0320155405] +08:42:16 [ 11] [ 6] [085405] +08:42:16 [ 37] [ 12] [579080854050] +08:42:16 [ 39] [ 2] [00] +08:42:16 [ 70] [ 3] [810] +08:42:16 ============================================================================ +08:42:16 Calculate Source COMM Id = 6 +08:42:16 ============================================================================ +08:42:16 + + +waiting on router queue for slot.... +08:42:16 ============================================================================ +08:42:16 Slot Id : <29> +08:42:16 Transaction Type : REQUEST +08:42:16 Received From : +08:42:16 ============================================================================ +08:42:16 FNo. Len. Field Value +08:42:16 ============================================================================ +08:42:16 [ 1] [ 4] [0800] +08:42:16 [ 7] [ 10] [0320014124] +08:42:16 [ 11] [ 6] [155464] +08:42:16 [ 70] [ 3] [301] +08:42:16 ============================================================================ +08:42:16 + + +waiting on router queue for slot.... +08:42:16 Sending to : +08:42:16 ============================================================================ +08:42:16 ============================================================================ +08:42:16 Slot Id : <29> +08:42:16 Transaction Type : RESPONSE +08:42:16 Received From : +08:42:16 ============================================================================ +08:42:16 FNo. Len. Field Value +08:42:16 ============================================================================ +08:42:16 [ 1] [ 4] [0810] +08:42:16 [ 7] [ 10] [0320014124] +08:42:16 [ 11] [ 6] [155464] +08:42:16 [ 39] [ 2] [00] +08:42:16 [ 70] [ 3] [301] +08:42:16 ============================================================================ +08:42:16 Calculate Source COMM Id = 2 +08:42:16 ============================================================================ +08:42:16 + + +waiting on router queue for slot.... +08:42:26 ============================================================================ +08:42:26 Slot Id : <7> +08:42:26 Transaction Type : REQUEST +08:42:26 Received From : +08:42:26 ============================================================================ +08:42:26 FNo. Len. Field Value +08:42:26 ============================================================================ +08:42:26 [ 1] [ 4] [0800] +08:42:26 [ 2] [ 5] [02531] +08:42:26 [ 3] [ 6] [579088] +08:42:26 [ 7] [ 10] [0320014226] +08:42:26 [ 11] [ 6] [806917] +08:42:26 [ 15] [ 10] [0320014226] +08:42:26 [ 37] [ 11] [57908806917] +08:42:26 [ 70] [ 3] [001] +08:42:26 ============================================================================ +08:42:26 + + +waiting on router queue for slot.... +08:42:26 ============================================================================ +08:42:26 Slot Id : <7> +08:42:26 Transaction Type : RESPONSE +08:42:26 Received From : +08:42:26 ============================================================================ +08:42:26 FNo. Len. Field Value +08:42:26 ============================================================================ +08:42:26 [ 1] [ 4] [0810] +08:42:26 [ 7] [ 10] [0320014226] +08:42:26 [ 11] [ 6] [806917] +08:42:26 [ 15] [ 4] [0320] +08:42:26 [ 37] [ 12] [57908806917] +08:42:26 [ 39] [ 2] [00] +08:42:26 [ 70] [ 3] [001] +08:42:26 ============================================================================ +08:42:26 Sending to : +08:42:26 ============================================================================ +08:42:26 + + +waiting on router queue for slot.... +08:42:34 ============================================================================ +08:42:34 Slot Id : <33> +08:42:34 Transaction Type : REQUEST +08:42:34 Received From : +08:42:34 ============================================================================ +08:42:34 FNo. Len. Field Value +08:42:34 ============================================================================ +08:42:34 [ 1] [ 4] [0800] +08:42:34 [ 7] [ 10] [0320014141] +08:42:34 [ 11] [ 6] [155465] +08:42:34 [ 70] [ 3] [301] +08:42:34 ============================================================================ +08:42:34 + + +waiting on router queue for slot.... +08:42:34 Sending to : +08:42:34 ============================================================================ +08:42:34 ============================================================================ +08:42:34 Slot Id : <33> +08:42:34 Transaction Type : RESPONSE +08:42:34 Received From : +08:42:34 ============================================================================ +08:42:34 FNo. Len. Field Value +08:42:34 ============================================================================ +08:42:34 [ 1] [ 4] [0810] +08:42:34 [ 7] [ 10] [0320014141] +08:42:34 [ 11] [ 6] [155465] +08:42:34 [ 39] [ 2] [00] +08:42:34 [ 70] [ 3] [301] +08:42:34 ============================================================================ +08:42:34 Calculate Source COMM Id = 2 +08:42:34 ============================================================================ +08:42:34 + + +waiting on router queue for slot.... +08:42:49 ============================================================================ +08:42:49 Slot Id : <21> +08:42:49 Transaction Type : REQUEST +08:42:49 Received From : +08:42:49 ============================================================================ +08:42:49 FNo. Len. Field Value +08:42:49 ============================================================================ +08:42:49 [ 1] [ 4] [0800] +08:42:49 [ 7] [ 10] [0320014158] +08:42:49 [ 11] [ 6] [155466] +08:42:49 [ 70] [ 3] [301] +08:42:49 ============================================================================ +08:42:49 + + +waiting on router queue for slot.... +08:42:49 Sending to : +08:42:49 ============================================================================ +08:42:49 ============================================================================ +08:42:49 Slot Id : <21> +08:42:49 Transaction Type : RESPONSE +08:42:49 Received From : +08:42:49 ============================================================================ +08:42:49 FNo. Len. Field Value +08:42:49 ============================================================================ +08:42:49 [ 1] [ 4] [0810] +08:42:49 [ 7] [ 10] [0320014158] +08:42:49 [ 11] [ 6] [155466] +08:42:49 [ 39] [ 2] [00] +08:42:49 [ 70] [ 3] [301] +08:42:49 ============================================================================ +08:42:49 Calculate Source COMM Id = 2 +08:42:49 ============================================================================ +08:42:49 + + +waiting on router queue for slot.... +08:42:57 ============================================================================ +08:42:57 Slot Id : <35> +08:42:57 Transaction Type : REQUEST +08:42:57 Received From : +08:42:57 ============================================================================ +08:42:57 FNo. Len. Field Value +08:42:57 ============================================================================ +08:42:57 [ 1] [ 4] [0200] +08:42:57 [ 2] [ 16] [6213548000372316] +08:42:57 [ 3] [ 6] [010000] +08:42:57 [ 4] [ 12] [000004000000] +08:42:57 [ 7] [ 10] [0320084049] +08:42:57 [ 11] [ 6] [933559] +08:42:57 [ 12] [ 6] [084049] +08:42:57 [ 13] [ 4] [0320] +08:42:57 [ 15] [ 4] [0320] +08:42:57 [ 18] [ 4] [6011] +08:42:57 [ 19] [ 3] [418] +08:42:57 [ 22] [ 3] [021] +08:42:57 [ 25] [ 2] [01] +08:42:57 [ 28] [ 9] [D00002000] +08:42:57 [ 32] [ 6] [668899] +08:42:57 [ 35] [ 32] [6213548000372316=180512017231687] +08:42:57 [ 37] [ 12] [507902531632] +08:42:57 [ 41] [ 8] [03020033] +08:42:57 [ 42] [ 15] [APT ] +08:42:57 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:42:57 [ 49] [ 3] [418] +08:42:57 [ 52] [ 16] [2E5EC3C82ED08781] +08:42:57 ============================================================================ +08:42:57 + + +waiting on router queue for slot.... +08:42:57 Sending to : +08:42:57 ============================================================================ +08:42:57 Sending to : +08:42:57 ============================================================================ +08:42:58 ============================================================================ +08:42:58 Slot Id : <35> +08:42:58 Transaction Type : REQUEST +08:42:58 Received From : +08:42:58 ============================================================================ +08:42:58 FNo. Len. Field Value +08:42:58 ============================================================================ +08:42:58 [ 1] [ 4] [0200] +08:42:58 [ 2] [ 16] [6213548000372316] +08:42:58 [ 3] [ 6] [010000] +08:42:58 [ 4] [ 12] [000004000000] +08:42:58 [ 7] [ 10] [0320084049] +08:42:58 [ 11] [ 6] [933559] +08:42:58 [ 12] [ 6] [084049] +08:42:58 [ 13] [ 4] [0320] +08:42:58 [ 15] [ 4] [0320] +08:42:58 [ 18] [ 4] [6011] +08:42:58 [ 19] [ 3] [418] +08:42:58 [ 22] [ 3] [021] +08:42:58 [ 25] [ 2] [01] +08:42:58 [ 28] [ 9] [D00002000] +08:42:58 [ 32] [ 6] [668899] +08:42:58 [ 35] [ 32] [6213548000372316=180512017231687] +08:42:58 [ 37] [ 12] [507902531632] +08:42:58 [ 41] [ 8] [03020033] +08:42:58 [ 42] [ 15] [APT ] +08:42:58 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:42:58 [ 49] [ 3] [418] +08:42:58 [ 52] [ 16] [2E5EC3C82ED08781] +08:42:58 ============================================================================ +08:42:58 + + +waiting on router queue for slot.... +08:42:58 Sending to : +08:42:58 ============================================================================ +08:42:58 ============================================================================ +08:42:58 Slot Id : <35> +08:42:58 Transaction Type : REQUEST +08:42:58 Received From : +08:42:58 ============================================================================ +08:42:58 FNo. Len. Field Value +08:42:58 ============================================================================ +08:42:58 [ 1] [ 4] [0200] +08:42:58 [ 2] [ 16] [6213548000372316] +08:42:58 [ 3] [ 6] [010000] +08:42:58 [ 4] [ 12] [000004000000] +08:42:58 [ 7] [ 10] [0320084049] +08:42:58 [ 11] [ 6] [933559] +08:42:58 [ 12] [ 6] [084049] +08:42:58 [ 13] [ 4] [0320] +08:42:58 [ 15] [ 4] [0320] +08:42:58 [ 18] [ 4] [6011] +08:42:58 [ 19] [ 3] [418] +08:42:58 [ 22] [ 3] [021] +08:42:58 [ 25] [ 2] [01] +08:42:58 [ 28] [ 9] [D00002000] +08:42:58 [ 32] [ 6] [668899] +08:42:58 [ 35] [ 32] [6213548000372316=180512017231687] +08:42:58 [ 37] [ 12] [507902531632] +08:42:58 [ 41] [ 8] [03020033] +08:42:58 [ 42] [ 15] [APT ] +08:42:58 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:42:58 [ 49] [ 3] [418] +08:42:58 [ 52] [ 16] [1DBB288F06E7930F] +08:42:58 ============================================================================ +08:42:58 + + +waiting on router queue for slot.... +08:42:58 Sending to : <0> +08:42:58 ============================================================================ +08:42:58 ============================================================================ +08:42:58 Slot Id : <35> +08:42:58 Transaction Type : RESPONSE +08:42:58 Received From : +08:42:58 ============================================================================ +08:42:58 FNo. Len. Field Value +08:42:58 ============================================================================ +08:42:58 [ 1] [ 4] [0210] +08:42:58 [ 2] [ 16] [6213548000372316] +08:42:58 [ 3] [ 6] [010000] +08:42:58 [ 4] [ 12] [000004000000] +08:42:58 [ 7] [ 10] [0320084049] +08:42:58 [ 11] [ 6] [933559] +08:42:58 [ 12] [ 6] [084049] +08:42:58 [ 13] [ 4] [0320] +08:42:58 [ 15] [ 4] [0320] +08:42:58 [ 18] [ 4] [6011] +08:42:58 [ 19] [ 3] [418] +08:42:58 [ 32] [ 6] [668899] +08:42:58 [ 35] [ 32] [6213548000372316=180512017231687] +08:42:58 [ 37] [ 12] [507902531632] +08:42:58 [ 38] [ 6] [933559] +08:42:58 [ 39] [ 2] [51] +08:42:58 [ 41] [ 8] [03020033] +08:42:58 [ 49] [ 3] [418] +08:42:58 [ 54] [ 40] [0001418C0000086191400002418C000008619140] +08:42:58 ============================================================================ +08:42:58 Sending to : +08:42:58 ============================================================================ +08:42:58 + + +waiting on router queue for slot.... +08:43:00 ============================================================================ +08:43:00 Slot Id : <35> +08:43:00 Transaction Type : RESPONSE +08:43:00 Received From : +08:43:00 ============================================================================ +08:43:00 FNo. Len. Field Value +08:43:00 ============================================================================ +08:43:00 [ 1] [ 4] [0210] +08:43:00 [ 2] [ 16] [6213548000372316] +08:43:00 [ 3] [ 6] [010000] +08:43:00 [ 4] [ 12] [000004000000] +08:43:00 [ 7] [ 10] [0320084049] +08:43:00 [ 11] [ 6] [933559] +08:43:00 [ 12] [ 6] [084049] +08:43:00 [ 13] [ 4] [0320] +08:43:00 [ 15] [ 4] [0320] +08:43:00 [ 18] [ 4] [6011] +08:43:00 [ 19] [ 3] [418] +08:43:00 [ 32] [ 6] [668899] +08:43:00 [ 35] [ 32] [6213548000372316=180512017231687] +08:43:00 [ 37] [ 12] [507902531632] +08:43:00 [ 38] [ 6] [933559] +08:43:00 [ 39] [ 2] [51] +08:43:00 [ 41] [ 8] [03020033] +08:43:00 [ 49] [ 3] [418] +08:43:00 [ 54] [ 40] [0001418C0000086191400002418C000008619140] +08:43:00 ============================================================================ +08:43:00 Calculate Source COMM Id = 4 +08:43:00 ============================================================================ +08:43:00 + + +waiting on router queue for slot.... +08:43:01 ============================================================================ +08:43:01 Slot Id : <11> +08:43:01 Transaction Type : REQUEST +08:43:01 Received From : +08:43:01 ============================================================================ +08:43:01 FNo. Len. Field Value +08:43:01 ============================================================================ +08:43:01 [ 1] [ 4] [0800] +08:43:01 [ 7] [ 10] [0320014208] +08:43:01 [ 11] [ 6] [155467] +08:43:01 [ 70] [ 3] [301] +08:43:01 ============================================================================ +08:43:01 + + +waiting on router queue for slot.... +08:43:01 Sending to : +08:43:01 ============================================================================ +08:43:01 ============================================================================ +08:43:01 Slot Id : <11> +08:43:01 Transaction Type : RESPONSE +08:43:01 Received From : +08:43:01 ============================================================================ +08:43:01 FNo. Len. Field Value +08:43:01 ============================================================================ +08:43:01 [ 1] [ 4] [0810] +08:43:01 [ 7] [ 10] [0320014208] +08:43:01 [ 11] [ 6] [155467] +08:43:01 [ 39] [ 2] [00] +08:43:01 [ 70] [ 3] [301] +08:43:01 ============================================================================ +08:43:01 Calculate Source COMM Id = 2 +08:43:01 ============================================================================ +08:43:01 + + +waiting on router queue for slot.... +08:43:11 ============================================================================ +08:43:11 Slot Id : <30> +08:43:11 Transaction Type : REQUEST +08:43:11 Received From : +08:43:11 ============================================================================ +08:43:11 FNo. Len. Field Value +08:43:11 ============================================================================ +08:43:11 [ 1] [ 4] [0200] +08:43:11 [ 2] [ 16] [1808930500014287] +08:43:11 [ 3] [ 6] [010000] +08:43:11 [ 4] [ 12] [000100000000] +08:43:11 [ 7] [ 10] [0320084308] +08:43:11 [ 11] [ 6] [687872] +08:43:11 [ 12] [ 6] [084308] +08:43:11 [ 13] [ 4] [0320] +08:43:11 [ 15] [ 4] [0320] +08:43:11 [ 18] [ 4] [6011] +08:43:11 [ 22] [ 3] [900] +08:43:11 [ 25] [ 2] [02] +08:43:11 [ 28] [ 9] [D00002000] +08:43:11 [ 32] [ 6] [621354] +08:43:11 [ 35] [ 27] [1808930500014287=1803500992] +08:43:11 [ 37] [ 12] [507903148766] +08:43:11 [ 41] [ 8] [04002400] +08:43:11 [ 42] [ 15] [NATIVE ] +08:43:11 [ 43] [ 40] [PAKSE SUPER MARKET Pakse LAO] +08:43:11 [ 49] [ 3] [418] +08:43:11 [ 52] [ 16] [40C6CF2738948B4D] +08:43:11 ============================================================================ +08:43:11 + + +waiting on router queue for slot.... +08:43:11 Sending to : +08:43:11 ============================================================================ +08:43:11 Sending to : +08:43:11 ============================================================================ +08:43:12 ============================================================================ +08:43:12 Slot Id : <30> +08:43:12 Transaction Type : REQUEST +08:43:12 Received From : +08:43:12 ============================================================================ +08:43:12 FNo. Len. Field Value +08:43:12 ============================================================================ +08:43:12 [ 1] [ 4] [0200] +08:43:12 [ 2] [ 16] [1808930500014287] +08:43:12 [ 3] [ 6] [010000] +08:43:12 [ 4] [ 12] [000100000000] +08:43:12 [ 7] [ 10] [0320084308] +08:43:12 [ 11] [ 6] [687872] +08:43:12 [ 12] [ 6] [084308] +08:43:12 [ 13] [ 4] [0320] +08:43:12 [ 15] [ 4] [0320] +08:43:12 [ 18] [ 4] [6011] +08:43:12 [ 22] [ 3] [900] +08:43:12 [ 25] [ 2] [02] +08:43:12 [ 28] [ 9] [D00002000] +08:43:12 [ 32] [ 6] [621354] +08:43:12 [ 35] [ 27] [1808930500014287=1803500992] +08:43:12 [ 37] [ 12] [507903148766] +08:43:12 [ 41] [ 8] [04002400] +08:43:12 [ 42] [ 15] [NATIVE ] +08:43:12 [ 43] [ 40] [PAKSE SUPER MARKET Pakse LAO] +08:43:12 [ 49] [ 3] [418] +08:43:12 [ 52] [ 16] [40C6CF2738948B4D] +08:43:12 ============================================================================ +08:43:12 + + +waiting on router queue for slot.... +08:43:12 Sending to : +08:43:12 ============================================================================ +08:43:12 ============================================================================ +08:43:12 Slot Id : <30> +08:43:12 Transaction Type : REQUEST +08:43:12 Received From : +08:43:12 ============================================================================ +08:43:12 FNo. Len. Field Value +08:43:12 ============================================================================ +08:43:12 [ 1] [ 4] [0200] +08:43:12 [ 2] [ 16] [1808930500014287] +08:43:12 [ 3] [ 6] [010000] +08:43:12 [ 4] [ 12] [000100000000] +08:43:12 [ 7] [ 10] [0320084308] +08:43:12 [ 11] [ 6] [687872] +08:43:12 [ 12] [ 6] [084308] +08:43:12 [ 13] [ 4] [0320] +08:43:12 [ 15] [ 4] [0320] +08:43:12 [ 18] [ 4] [6011] +08:43:12 [ 22] [ 3] [900] +08:43:12 [ 25] [ 2] [02] +08:43:12 [ 28] [ 9] [D00002000] +08:43:12 [ 32] [ 6] [621354] +08:43:12 [ 35] [ 27] [1808930500014287=1803500992] +08:43:12 [ 37] [ 12] [507903148766] +08:43:12 [ 41] [ 8] [04002400] +08:43:12 [ 42] [ 15] [NATIVE ] +08:43:12 [ 43] [ 40] [PAKSE SUPER MARKET Pakse LAO] +08:43:12 [ 49] [ 3] [418] +08:43:12 [ 52] [ 16] [E0FDAB2415DA6816] +08:43:12 ============================================================================ +08:43:12 + + +waiting on router queue for slot.... +08:43:12 Sending to : <2> +08:43:12 ============================================================================ +08:43:18 ============================================================================ +08:43:18 Slot Id : <30> +08:43:18 Transaction Type : RESPONSE +08:43:18 Received From : +08:43:18 ============================================================================ +08:43:18 FNo. Len. Field Value +08:43:18 ============================================================================ +08:43:18 [ 1] [ 4] [0210] +08:43:18 [ 2] [ 16] [1808930500014287] +08:43:18 [ 3] [ 6] [010000] +08:43:18 [ 4] [ 12] [000100000000] +08:43:18 [ 6] [ 12] [000100000000] +08:43:18 [ 7] [ 10] [0320084308] +08:43:18 [ 11] [ 6] [687872] +08:43:18 [ 12] [ 6] [084308] +08:43:18 [ 13] [ 4] [0320] +08:43:18 [ 18] [ 4] [6011] +08:43:18 [ 19] [ 3] [418] +08:43:18 [ 22] [ 3] [021] +08:43:18 [ 28] [ 9] [D00002000] +08:43:18 [ 32] [ 6] [621354] +08:43:18 [ 35] [ 27] [1808930500014287=1803500992] +08:43:18 [ 37] [ 12] [507903148766] +08:43:18 [ 39] [ 2] [75] +08:43:18 [ 41] [ 8] [04002400] +08:43:18 [ 49] [ 3] [418] +08:43:18 [ 51] [ 3] [418] +08:43:18 [ 52] [ 16] [E0FDAB2415DA6816] +08:43:18 ============================================================================ +08:43:18 Sending to : +08:43:18 ============================================================================ +08:43:18 + + +waiting on router queue for slot.... +08:43:19 ============================================================================ +08:43:19 Slot Id : <30> +08:43:19 Transaction Type : RESPONSE +08:43:19 Received From : +08:43:19 ============================================================================ +08:43:19 FNo. Len. Field Value +08:43:19 ============================================================================ +08:43:19 [ 1] [ 4] [0210] +08:43:19 [ 2] [ 16] [1808930500014287] +08:43:19 [ 3] [ 6] [010000] +08:43:19 [ 4] [ 12] [000100000000] +08:43:19 [ 6] [ 12] [000100000000] +08:43:19 [ 7] [ 10] [0320084308] +08:43:19 [ 11] [ 6] [687872] +08:43:19 [ 12] [ 6] [084308] +08:43:19 [ 13] [ 4] [0320] +08:43:19 [ 18] [ 4] [6011] +08:43:19 [ 19] [ 3] [418] +08:43:19 [ 22] [ 3] [021] +08:43:19 [ 28] [ 9] [D00002000] +08:43:19 [ 32] [ 6] [621354] +08:43:19 [ 35] [ 27] [1808930500014287=1803500992] +08:43:19 [ 37] [ 12] [507903148766] +08:43:19 [ 39] [ 2] [75] +08:43:19 [ 41] [ 8] [04002400] +08:43:19 [ 49] [ 3] [418] +08:43:19 [ 51] [ 3] [418] +08:43:19 [ 52] [ 16] [E0FDAB2415DA6816] +08:43:19 ============================================================================ +08:43:19 Calculate Source COMM Id = 0 +08:43:19 ============================================================================ +08:43:19 + + +waiting on router queue for slot.... +08:43:21 ============================================================================ +08:43:21 Slot Id : <496> +08:43:21 Transaction Type : REQUEST +08:43:21 Received From : +08:43:21 ============================================================================ +08:43:21 FNo. Len. Field Value +08:43:21 ============================================================================ +08:43:21 [ 1] [ 4] [0800] +08:43:21 [ 7] [ 10] [0320155510] +08:43:21 [ 11] [ 6] [085510] +08:43:21 [ 37] [ 12] [57908085510] +08:43:21 [ 70] [ 3] [301] +08:43:21 ============================================================================ +08:43:21 + + +waiting on router queue for slot.... +08:43:21 Sending to : +08:43:21 ============================================================================ +08:43:21 ============================================================================ +08:43:21 Slot Id : <496> +08:43:21 Transaction Type : RESPONSE +08:43:21 Received From : +08:43:21 ============================================================================ +08:43:21 FNo. Len. Field Value +08:43:21 ============================================================================ +08:43:21 [ 1] [ 4] [0810] +08:43:21 [ 7] [ 10] [0320155510] +08:43:21 [ 11] [ 6] [085510] +08:43:21 [ 37] [ 12] [579080855100] +08:43:21 [ 39] [ 2] [00] +08:43:21 [ 70] [ 3] [810] +08:43:21 ============================================================================ +08:43:21 Calculate Source COMM Id = 6 +08:43:21 ============================================================================ +08:43:21 + + +waiting on router queue for slot.... +08:43:27 ============================================================================ +08:43:27 Slot Id : <37> +08:43:27 Transaction Type : REQUEST +08:43:27 Received From : +08:43:27 ============================================================================ +08:43:27 FNo. Len. Field Value +08:43:27 ============================================================================ +08:43:27 [ 1] [ 4] [0200] +08:43:27 [ 2] [ 16] [6213545000391742] +08:43:27 [ 3] [ 6] [301000] +08:43:27 [ 4] [ 12] [000000000000] +08:43:27 [ 7] [ 10] [0320084119] +08:43:27 [ 11] [ 6] [933573] +08:43:27 [ 12] [ 6] [084119] +08:43:27 [ 13] [ 4] [0320] +08:43:27 [ 15] [ 4] [0320] +08:43:27 [ 18] [ 4] [6011] +08:43:27 [ 19] [ 3] [418] +08:43:27 [ 22] [ 3] [021] +08:43:27 [ 25] [ 2] [01] +08:43:27 [ 28] [ 9] [D00000000] +08:43:27 [ 32] [ 6] [668899] +08:43:27 [ 35] [ 32] [6213545000391742=491212019174427] +08:43:27 [ 37] [ 12] [507900906179] +08:43:27 [ 41] [ 8] [03016001] +08:43:27 [ 42] [ 15] [APT ] +08:43:27 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:43:27 [ 49] [ 3] [418] +08:43:27 [ 52] [ 16] [40F920712F90566C] +08:43:27 ============================================================================ +08:43:27 + + +waiting on router queue for slot.... +08:43:27 Sending to : +08:43:27 ============================================================================ +08:43:27 Sending to : +08:43:27 ============================================================================ +08:43:27 ============================================================================ +08:43:27 Slot Id : <461> +08:43:27 Transaction Type : REQUEST +08:43:27 Received From : +08:43:27 ============================================================================ +08:43:27 FNo. Len. Field Value +08:43:27 ============================================================================ +08:43:27 [ 1] [ 4] [0800] +08:43:27 [ 7] [ 10] [0320014235] +08:43:27 [ 11] [ 6] [155468] +08:43:27 [ 70] [ 3] [301] +08:43:27 ============================================================================ +08:43:27 + + +waiting on router queue for slot.... +08:43:27 Sending to : +08:43:27 ============================================================================ +08:43:27 ============================================================================ +08:43:27 Slot Id : <461> +08:43:27 Transaction Type : RESPONSE +08:43:27 Received From : +08:43:27 ============================================================================ +08:43:27 FNo. Len. Field Value +08:43:27 ============================================================================ +08:43:27 [ 1] [ 4] [0810] +08:43:27 [ 7] [ 10] [0320014235] +08:43:27 [ 11] [ 6] [155468] +08:43:27 [ 39] [ 2] [00] +08:43:27 [ 70] [ 3] [301] +08:43:27 ============================================================================ +08:43:27 Calculate Source COMM Id = 2 +08:43:27 ============================================================================ +08:43:27 + + +waiting on router queue for slot.... +08:43:28 ============================================================================ +08:43:28 Slot Id : <37> +08:43:28 Transaction Type : REQUEST +08:43:28 Received From : +08:43:28 ============================================================================ +08:43:28 FNo. Len. Field Value +08:43:28 ============================================================================ +08:43:28 [ 1] [ 4] [0200] +08:43:28 [ 2] [ 16] [6213545000391742] +08:43:28 [ 3] [ 6] [301000] +08:43:28 [ 4] [ 12] [000000000000] +08:43:28 [ 7] [ 10] [0320084119] +08:43:28 [ 11] [ 6] [933573] +08:43:28 [ 12] [ 6] [084119] +08:43:28 [ 13] [ 4] [0320] +08:43:28 [ 15] [ 4] [0320] +08:43:28 [ 18] [ 4] [6011] +08:43:28 [ 19] [ 3] [418] +08:43:28 [ 22] [ 3] [021] +08:43:28 [ 25] [ 2] [01] +08:43:28 [ 28] [ 9] [D00000000] +08:43:28 [ 32] [ 6] [668899] +08:43:28 [ 35] [ 32] [6213545000391742=491212019174427] +08:43:28 [ 37] [ 12] [507900906179] +08:43:28 [ 41] [ 8] [03016001] +08:43:28 [ 42] [ 15] [APT ] +08:43:28 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:43:28 [ 49] [ 3] [418] +08:43:28 [ 52] [ 16] [40F920712F90566C] +08:43:28 ============================================================================ +08:43:28 + + +waiting on router queue for slot.... +08:43:28 Sending to : +08:43:28 ============================================================================ +08:43:28 ============================================================================ +08:43:28 Slot Id : <37> +08:43:28 Transaction Type : REQUEST +08:43:28 Received From : +08:43:28 ============================================================================ +08:43:28 FNo. Len. Field Value +08:43:28 ============================================================================ +08:43:28 [ 1] [ 4] [0200] +08:43:28 [ 2] [ 16] [6213545000391742] +08:43:28 [ 3] [ 6] [301000] +08:43:28 [ 4] [ 12] [000000000000] +08:43:28 [ 7] [ 10] [0320084119] +08:43:28 [ 11] [ 6] [933573] +08:43:28 [ 12] [ 6] [084119] +08:43:28 [ 13] [ 4] [0320] +08:43:28 [ 15] [ 4] [0320] +08:43:28 [ 18] [ 4] [6011] +08:43:28 [ 19] [ 3] [418] +08:43:28 [ 22] [ 3] [021] +08:43:28 [ 25] [ 2] [01] +08:43:28 [ 28] [ 9] [D00000000] +08:43:28 [ 32] [ 6] [668899] +08:43:28 [ 35] [ 32] [6213545000391742=491212019174427] +08:43:28 [ 37] [ 12] [507900906179] +08:43:28 [ 41] [ 8] [03016001] +08:43:28 [ 42] [ 15] [APT ] +08:43:28 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:43:28 [ 49] [ 3] [418] +08:43:28 [ 52] [ 16] [201CCE29D8AC5FCF] +08:43:28 ============================================================================ +08:43:28 + + +waiting on router queue for slot.... +08:43:28 Sending to : <0> +08:43:28 ============================================================================ +08:43:28 ============================================================================ +08:43:28 Slot Id : <37> +08:43:28 Transaction Type : RESPONSE +08:43:28 Received From : +08:43:28 ============================================================================ +08:43:28 FNo. Len. Field Value +08:43:28 ============================================================================ +08:43:28 [ 1] [ 4] [0210] +08:43:28 [ 2] [ 16] [6213545000391742] +08:43:28 [ 3] [ 6] [301000] +08:43:28 [ 4] [ 12] [000000000000] +08:43:28 [ 7] [ 10] [0320084119] +08:43:28 [ 11] [ 6] [933573] +08:43:28 [ 12] [ 6] [084119] +08:43:28 [ 13] [ 4] [0320] +08:43:28 [ 15] [ 4] [0320] +08:43:28 [ 18] [ 4] [6011] +08:43:28 [ 19] [ 3] [418] +08:43:28 [ 32] [ 6] [668899] +08:43:28 [ 35] [ 32] [6213545000391742=491212019174427] +08:43:28 [ 37] [ 12] [507900906179] +08:43:28 [ 38] [ 6] [257900] +08:43:28 [ 39] [ 2] [00] +08:43:28 [ 41] [ 8] [03016001] +08:43:28 [ 49] [ 3] [418] +08:43:28 [ 54] [ 40] [1001418C0001553229621002418C000155322962] +08:43:28 ============================================================================ +08:43:28 Sending to : +08:43:28 ============================================================================ +08:43:28 + + +waiting on router queue for slot.... +08:43:28 ============================================================================ +08:43:28 Slot Id : <36> +08:43:28 Transaction Type : REQUEST +08:43:28 Received From : +08:43:28 ============================================================================ +08:43:28 FNo. Len. Field Value +08:43:28 ============================================================================ +08:43:28 [ 1] [ 4] [0200] +08:43:28 [ 2] [ 16] [6213548000372316] +08:43:28 [ 3] [ 6] [010000] +08:43:28 [ 4] [ 12] [000004000000] +08:43:28 [ 7] [ 10] [0320084120] +08:43:28 [ 11] [ 6] [933574] +08:43:28 [ 12] [ 6] [084120] +08:43:28 [ 13] [ 4] [0320] +08:43:28 [ 15] [ 4] [0320] +08:43:28 [ 18] [ 4] [6011] +08:43:28 [ 19] [ 3] [418] +08:43:28 [ 22] [ 3] [021] +08:43:28 [ 25] [ 2] [01] +08:43:28 [ 28] [ 9] [D00002000] +08:43:28 [ 32] [ 6] [668899] +08:43:28 [ 35] [ 32] [6213548000372316=180512017231687] +08:43:28 [ 37] [ 12] [507902531633] +08:43:28 [ 41] [ 8] [03020033] +08:43:28 [ 42] [ 15] [APT ] +08:43:28 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:43:28 [ 49] [ 3] [418] +08:43:28 [ 52] [ 16] [2E5EC3C82ED08781] +08:43:28 ============================================================================ +08:43:28 + + +waiting on router queue for slot.... +08:43:28 Sending to : +08:43:28 ============================================================================ +08:43:28 Sending to : +08:43:28 ============================================================================ +08:43:28 ============================================================================ +08:43:28 Slot Id : <9> +08:43:28 Transaction Type : REQUEST +08:43:28 Received From : +08:43:28 ============================================================================ +08:43:28 FNo. Len. Field Value +08:43:28 ============================================================================ +08:43:28 [ 1] [ 4] [0800] +08:43:28 [ 2] [ 5] [02531] +08:43:28 [ 3] [ 6] [579088] +08:43:28 [ 7] [ 10] [0320014328] +08:43:28 [ 11] [ 6] [806918] +08:43:28 [ 15] [ 10] [0320014328] +08:43:28 [ 37] [ 11] [57908806918] +08:43:28 [ 70] [ 3] [001] +08:43:28 ============================================================================ +08:43:28 + + +waiting on router queue for slot.... +08:43:28 ============================================================================ +08:43:28 Slot Id : <9> +08:43:28 Transaction Type : RESPONSE +08:43:28 Received From : +08:43:28 ============================================================================ +08:43:28 FNo. Len. Field Value +08:43:28 ============================================================================ +08:43:28 [ 1] [ 4] [0810] +08:43:28 [ 7] [ 10] [0320014328] +08:43:28 [ 11] [ 6] [806918] +08:43:28 [ 15] [ 4] [0320] +08:43:28 [ 37] [ 12] [57908806918] +08:43:28 [ 39] [ 2] [00] +08:43:28 [ 70] [ 3] [001] +08:43:28 ============================================================================ +08:43:28 Sending to : +08:43:28 ============================================================================ +08:43:28 + + +waiting on router queue for slot.... +08:43:28 ============================================================================ +08:43:28 Slot Id : <36> +08:43:28 Transaction Type : REQUEST +08:43:28 Received From : +08:43:28 ============================================================================ +08:43:28 FNo. Len. Field Value +08:43:28 ============================================================================ +08:43:28 [ 1] [ 4] [0200] +08:43:28 [ 2] [ 16] [6213548000372316] +08:43:28 [ 3] [ 6] [010000] +08:43:28 [ 4] [ 12] [000004000000] +08:43:28 [ 7] [ 10] [0320084120] +08:43:28 [ 11] [ 6] [933574] +08:43:28 [ 12] [ 6] [084120] +08:43:28 [ 13] [ 4] [0320] +08:43:28 [ 15] [ 4] [0320] +08:43:28 [ 18] [ 4] [6011] +08:43:28 [ 19] [ 3] [418] +08:43:28 [ 22] [ 3] [021] +08:43:28 [ 25] [ 2] [01] +08:43:28 [ 28] [ 9] [D00002000] +08:43:28 [ 32] [ 6] [668899] +08:43:28 [ 35] [ 32] [6213548000372316=180512017231687] +08:43:28 [ 37] [ 12] [507902531633] +08:43:28 [ 41] [ 8] [03020033] +08:43:28 [ 42] [ 15] [APT ] +08:43:28 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:43:28 [ 49] [ 3] [418] +08:43:28 [ 52] [ 16] [2E5EC3C82ED08781] +08:43:28 ============================================================================ +08:43:28 + + +waiting on router queue for slot.... +08:43:28 Sending to : +08:43:28 ============================================================================ +08:43:28 ============================================================================ +08:43:28 Slot Id : <36> +08:43:28 Transaction Type : REQUEST +08:43:28 Received From : +08:43:28 ============================================================================ +08:43:28 FNo. Len. Field Value +08:43:28 ============================================================================ +08:43:28 [ 1] [ 4] [0200] +08:43:28 [ 2] [ 16] [6213548000372316] +08:43:28 [ 3] [ 6] [010000] +08:43:28 [ 4] [ 12] [000004000000] +08:43:28 [ 7] [ 10] [0320084120] +08:43:28 [ 11] [ 6] [933574] +08:43:28 [ 12] [ 6] [084120] +08:43:28 [ 13] [ 4] [0320] +08:43:28 [ 15] [ 4] [0320] +08:43:28 [ 18] [ 4] [6011] +08:43:28 [ 19] [ 3] [418] +08:43:28 [ 22] [ 3] [021] +08:43:28 [ 25] [ 2] [01] +08:43:28 [ 28] [ 9] [D00002000] +08:43:28 [ 32] [ 6] [668899] +08:43:28 [ 35] [ 32] [6213548000372316=180512017231687] +08:43:28 [ 37] [ 12] [507902531633] +08:43:28 [ 41] [ 8] [03020033] +08:43:28 [ 42] [ 15] [APT ] +08:43:28 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:43:28 [ 49] [ 3] [418] +08:43:28 [ 52] [ 16] [1DBB288F06E7930F] +08:43:28 ============================================================================ +08:43:28 + + +waiting on router queue for slot.... +08:43:29 Sending to : <0> +08:43:29 ============================================================================ +08:43:29 ============================================================================ +08:43:29 Slot Id : <36> +08:43:29 Transaction Type : RESPONSE +08:43:29 Received From : +08:43:29 ============================================================================ +08:43:29 FNo. Len. Field Value +08:43:29 ============================================================================ +08:43:29 [ 1] [ 4] [0210] +08:43:29 [ 2] [ 16] [6213548000372316] +08:43:29 [ 3] [ 6] [010000] +08:43:29 [ 4] [ 12] [000004000000] +08:43:29 [ 7] [ 10] [0320084120] +08:43:29 [ 11] [ 6] [933574] +08:43:29 [ 12] [ 6] [084120] +08:43:29 [ 13] [ 4] [0320] +08:43:29 [ 15] [ 4] [0320] +08:43:29 [ 18] [ 4] [6011] +08:43:29 [ 19] [ 3] [418] +08:43:29 [ 32] [ 6] [668899] +08:43:29 [ 35] [ 32] [6213548000372316=180512017231687] +08:43:29 [ 37] [ 12] [507902531633] +08:43:29 [ 38] [ 6] [933574] +08:43:29 [ 39] [ 2] [51] +08:43:29 [ 41] [ 8] [03020033] +08:43:29 [ 49] [ 3] [418] +08:43:29 [ 54] [ 40] [0001418C0000086191400002418C000008619140] +08:43:29 ============================================================================ +08:43:29 Sending to : +08:43:29 ============================================================================ +08:43:29 + + +waiting on router queue for slot.... +08:43:30 ============================================================================ +08:43:30 Slot Id : <37> +08:43:30 Transaction Type : RESPONSE +08:43:30 Received From : +08:43:30 ============================================================================ +08:43:30 FNo. Len. Field Value +08:43:30 ============================================================================ +08:43:30 [ 1] [ 4] [0210] +08:43:30 [ 2] [ 16] [6213545000391742] +08:43:30 [ 3] [ 6] [301000] +08:43:30 [ 4] [ 12] [000000000000] +08:43:30 [ 7] [ 10] [0320084119] +08:43:30 [ 11] [ 6] [933573] +08:43:30 [ 12] [ 6] [084119] +08:43:30 [ 13] [ 4] [0320] +08:43:30 [ 15] [ 4] [0320] +08:43:30 [ 18] [ 4] [6011] +08:43:30 [ 19] [ 3] [418] +08:43:30 [ 32] [ 6] [668899] +08:43:30 [ 35] [ 32] [6213545000391742=491212019174427] +08:43:30 [ 37] [ 12] [507900906179] +08:43:30 [ 38] [ 6] [257900] +08:43:30 [ 39] [ 2] [00] +08:43:30 [ 41] [ 8] [03016001] +08:43:30 [ 49] [ 3] [418] +08:43:30 [ 54] [ 40] [1001418C0001553229621002418C000155322962] +08:43:30 ============================================================================ +08:43:30 Calculate Source COMM Id = 4 +08:43:30 ============================================================================ +08:43:30 + + +waiting on router queue for slot.... +08:43:31 ============================================================================ +08:43:31 Slot Id : <36> +08:43:31 Transaction Type : RESPONSE +08:43:31 Received From : +08:43:31 ============================================================================ +08:43:31 FNo. Len. Field Value +08:43:31 ============================================================================ +08:43:31 [ 1] [ 4] [0210] +08:43:31 [ 2] [ 16] [6213548000372316] +08:43:31 [ 3] [ 6] [010000] +08:43:31 [ 4] [ 12] [000004000000] +08:43:31 [ 7] [ 10] [0320084120] +08:43:31 [ 11] [ 6] [933574] +08:43:31 [ 12] [ 6] [084120] +08:43:31 [ 13] [ 4] [0320] +08:43:31 [ 15] [ 4] [0320] +08:43:31 [ 18] [ 4] [6011] +08:43:31 [ 19] [ 3] [418] +08:43:31 [ 32] [ 6] [668899] +08:43:31 [ 35] [ 32] [6213548000372316=180512017231687] +08:43:31 [ 37] [ 12] [507902531633] +08:43:31 [ 38] [ 6] [933574] +08:43:31 [ 39] [ 2] [51] +08:43:31 [ 41] [ 8] [03020033] +08:43:31 [ 49] [ 3] [418] +08:43:31 [ 54] [ 40] [0001418C0000086191400002418C000008619140] +08:43:31 ============================================================================ +08:43:31 Calculate Source COMM Id = 4 +08:43:31 ============================================================================ +08:43:31 + + +waiting on router queue for slot.... +08:43:39 ============================================================================ +08:43:39 Slot Id : <45> +08:43:39 Transaction Type : REQUEST +08:43:39 Received From : +08:43:39 ============================================================================ +08:43:39 FNo. Len. Field Value +08:43:39 ============================================================================ +08:43:39 [ 1] [ 4] [0800] +08:43:39 [ 7] [ 10] [0320014248] +08:43:39 [ 11] [ 6] [155469] +08:43:39 [ 70] [ 3] [301] +08:43:39 ============================================================================ +08:43:39 + + +waiting on router queue for slot.... +08:43:39 Sending to : +08:43:39 ============================================================================ +08:43:39 ============================================================================ +08:43:39 Slot Id : <45> +08:43:39 Transaction Type : RESPONSE +08:43:40 Received From : +08:43:40 ============================================================================ +08:43:40 FNo. Len. Field Value +08:43:40 ============================================================================ +08:43:40 [ 1] [ 4] [0810] +08:43:40 [ 7] [ 10] [0320014248] +08:43:40 [ 11] [ 6] [155469] +08:43:40 [ 39] [ 2] [00] +08:43:40 [ 70] [ 3] [301] +08:43:40 ============================================================================ +08:43:40 Calculate Source COMM Id = 2 +08:43:40 ============================================================================ +08:43:40 + + +waiting on router queue for slot.... +08:43:42 ============================================================================ +08:43:42 Slot Id : <18> +08:43:42 Transaction Type : REQUEST +08:43:42 Received From : +08:43:42 ============================================================================ +08:43:42 FNo. Len. Field Value +08:43:42 ============================================================================ +08:43:42 [ 1] [ 4] [0800] +08:43:42 [ 7] [ 10] [0320014338] +08:43:42 [ 11] [ 6] [093819] +08:43:42 [ 37] [ 12] [507908093819] +08:43:42 [ 70] [ 3] [001] +08:43:42 ============================================================================ +08:43:42 + + +waiting on router queue for slot.... +08:43:42 Sending to : +08:43:42 ============================================================================ +08:43:42 ============================================================================ +08:43:42 Slot Id : <18> +08:43:42 Transaction Type : RESPONSE +08:43:42 Received From : +08:43:42 ============================================================================ +08:43:42 FNo. Len. Field Value +08:43:42 ============================================================================ +08:43:42 [ 1] [ 4] [0810] +08:43:42 [ 7] [ 10] [0320014338] +08:43:42 [ 11] [ 6] [093819] +08:43:42 [ 37] [ 12] [507908093819] +08:43:42 [ 39] [ 2] [00] +08:43:42 [ 70] [ 3] [001] +08:43:42 ============================================================================ +08:43:42 Calculate Source COMM Id = 0 +08:43:42 ============================================================================ +08:43:42 + + +waiting on router queue for slot.... +08:43:49 ============================================================================ +08:43:49 Slot Id : <467> +08:43:49 Transaction Type : REQUEST +08:43:49 Received From : +08:43:49 ============================================================================ +08:43:49 FNo. Len. Field Value +08:43:49 ============================================================================ +08:43:49 [ 1] [ 4] [0200] +08:43:49 [ 2] [ 16] [6213548000372316] +08:43:49 [ 3] [ 6] [010000] +08:43:49 [ 4] [ 12] [000002000000] +08:43:49 [ 7] [ 10] [0320084140] +08:43:49 [ 11] [ 6] [933584] +08:43:49 [ 12] [ 6] [084140] +08:43:49 [ 13] [ 4] [0320] +08:43:49 [ 15] [ 4] [0320] +08:43:49 [ 18] [ 4] [6011] +08:43:49 [ 19] [ 3] [418] +08:43:49 [ 22] [ 3] [021] +08:43:49 [ 25] [ 2] [01] +08:43:49 [ 28] [ 9] [D00002000] +08:43:49 [ 32] [ 6] [668899] +08:43:49 [ 35] [ 32] [6213548000372316=180512017231687] +08:43:49 [ 37] [ 12] [507902531634] +08:43:49 [ 41] [ 8] [03020033] +08:43:49 [ 42] [ 15] [APT ] +08:43:49 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:43:49 [ 49] [ 3] [418] +08:43:49 [ 52] [ 16] [2E5EC3C82ED08781] +08:43:49 ============================================================================ +08:43:49 + + +waiting on router queue for slot.... +08:43:49 Sending to : +08:43:49 ============================================================================ +08:43:49 Sending to : +08:43:49 ============================================================================ +08:43:49 ============================================================================ +08:43:49 Slot Id : <40> +08:43:49 Transaction Type : REQUEST +08:43:49 Received From : +08:43:49 ============================================================================ +08:43:49 FNo. Len. Field Value +08:43:49 ============================================================================ +08:43:49 [ 1] [ 4] [0200] +08:43:49 [ 2] [ 16] [6213548000438299] +08:43:49 [ 3] [ 6] [300000] +08:43:49 [ 4] [ 12] [000000000000] +08:43:49 [ 7] [ 10] [0320084140] +08:43:49 [ 11] [ 6] [933585] +08:43:49 [ 12] [ 6] [084140] +08:43:49 [ 13] [ 4] [0320] +08:43:49 [ 15] [ 4] [0320] +08:43:49 [ 18] [ 4] [6011] +08:43:49 [ 19] [ 3] [418] +08:43:49 [ 22] [ 3] [021] +08:43:49 [ 25] [ 2] [01] +08:43:49 [ 28] [ 9] [D00000000] +08:43:49 [ 32] [ 6] [668899] +08:43:49 [ 35] [ 32] [6213548000438299=180612013829621] +08:43:49 [ 37] [ 12] [507901963386] +08:43:49 [ 41] [ 8] [03020019] +08:43:49 [ 42] [ 15] [APT ] +08:43:49 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +08:43:49 [ 49] [ 3] [418] +08:43:49 [ 52] [ 16] [AED3FDF296789835] +08:43:49 ============================================================================ +08:43:49 + + +waiting on router queue for slot.... +08:43:49 Sending to : +08:43:49 ============================================================================ +08:43:49 Sending to : +08:43:49 ============================================================================ +08:43:49 ============================================================================ +08:43:49 Slot Id : <467> +08:43:49 Transaction Type : REQUEST +08:43:49 Received From : +08:43:49 ============================================================================ +08:43:49 FNo. Len. Field Value +08:43:49 ============================================================================ +08:43:49 [ 1] [ 4] [0200] +08:43:49 [ 2] [ 16] [6213548000372316] +08:43:49 [ 3] [ 6] [010000] +08:43:49 [ 4] [ 12] [000002000000] +08:43:49 [ 7] [ 10] [0320084140] +08:43:49 [ 11] [ 6] [933584] +08:43:49 [ 12] [ 6] [084140] +08:43:49 [ 13] [ 4] [0320] +08:43:49 [ 15] [ 4] [0320] +08:43:49 [ 18] [ 4] [6011] +08:43:49 [ 19] [ 3] [418] +08:43:49 [ 22] [ 3] [021] +08:43:49 [ 25] [ 2] [01] +08:43:49 [ 28] [ 9] [D00002000] +08:43:49 [ 32] [ 6] [668899] +08:43:49 [ 35] [ 32] [6213548000372316=180512017231687] +08:43:49 [ 37] [ 12] [507902531634] +08:43:49 [ 41] [ 8] [03020033] +08:43:49 [ 42] [ 15] [APT ] +08:43:49 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:43:49 [ 49] [ 3] [418] +08:43:49 [ 52] [ 16] [2E5EC3C82ED08781] +08:43:49 ============================================================================ +08:43:49 + + +waiting on router queue for slot.... +08:43:49 Sending to : +08:43:49 ============================================================================ +08:43:49 ============================================================================ +08:43:49 Slot Id : <467> +08:43:49 Transaction Type : REQUEST +08:43:49 Received From : +08:43:49 ============================================================================ +08:43:49 FNo. Len. Field Value +08:43:49 ============================================================================ +08:43:49 [ 1] [ 4] [0200] +08:43:49 [ 2] [ 16] [6213548000372316] +08:43:49 [ 3] [ 6] [010000] +08:43:49 [ 4] [ 12] [000002000000] +08:43:49 [ 7] [ 10] [0320084140] +08:43:49 [ 11] [ 6] [933584] +08:43:49 [ 12] [ 6] [084140] +08:43:49 [ 13] [ 4] [0320] +08:43:49 [ 15] [ 4] [0320] +08:43:49 [ 18] [ 4] [6011] +08:43:49 [ 19] [ 3] [418] +08:43:49 [ 22] [ 3] [021] +08:43:49 [ 25] [ 2] [01] +08:43:49 [ 28] [ 9] [D00002000] +08:43:49 [ 32] [ 6] [668899] +08:43:49 [ 35] [ 32] [6213548000372316=180512017231687] +08:43:49 [ 37] [ 12] [507902531634] +08:43:49 [ 41] [ 8] [03020033] +08:43:49 [ 42] [ 15] [APT ] +08:43:49 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +08:43:49 [ 49] [ 3] [418] +08:43:49 [ 52] [ 16] [1DBB288F06E7930F] +08:43:49 ============================================================================ +08:43:49 + + +waiting on router queue for slot.... +08:43:49 Sending to : <0> +08:43:49 ============================================================================ +08:43:49 ============================================================================ +08:43:49 Slot Id : <40> +08:43:49 Transaction Type : REQUEST +08:43:49 Received From : +08:43:49 ============================================================================ +08:43:49 FNo. Len. Field Value +08:43:49 ============================================================================ +08:43:49 [ 1] [ 4] [0200] +08:43:49 [ 2] [ 16] [6213548000438299] +08:43:49 [ 3] [ 6] [300000] +08:43:49 [ 4] [ 12] [000000000000] +08:43:49 [ 7] [ 10] [0320084140] +08:43:49 [ 11] [ 6] [933585] +08:43:49 [ 12] [ 6] [084140] +08:43:49 [ 13] [ 4] [0320] +08:43:49 [ 15] [ 4] [0320] +08:43:49 [ 18] [ 4] [6011] +08:43:49 [ 19] [ 3] [418] +08:43:49 [ 22] [ 3] [021] +08:43:49 [ 25] [ 2] [01] +08:43:49 [ 28] [ 9] [D00000000] +08:43:49 [ 32] [ 6] [668899] +08:43:49 [ 35] [ 32] [6213548000438299=180612013829621] +08:43:49 [ 37] [ 12] [507901963386] +08:43:49 [ 41] [ 8] [03020019] +08:43:49 [ 42] [ 15] [APT ] +08:43:49 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +08:43:49 [ 49] [ 3] [418] +08:43:49 [ 52] [ 16] [AED3FDF296789835] +08:43:49 ============================================================================ +08:43:49 + + +waiting on router queue for slot.... +08:43:49 Sending to : +08:43:49 ============================================================================ +08:43:49 ============================================================================ +08:43:49 Slot Id : <40> +08:43:49 Transaction Type : REQUEST +08:43:49 Received From : +08:43:49 ============================================================================ +08:43:49 FNo. Len. Field Value +08:43:49 ============================================================================ +08:43:49 [ 1] [ 4] [0200] +08:43:49 [ 2] [ 16] [6213548000438299] +08:43:49 [ 3] [ 6] [300000] +08:43:49 [ 4] [ 12] [000000000000] +08:43:49 [ 7] [ 10] [0320084140] +08:43:49 [ 11] [ 6] [933585] +08:43:49 [ 12] [ 6] [084140] +08:43:49 [ 13] [ 4] [0320] +08:43:49 [ 15] [ 4] [0320] +08:43:49 [ 18] [ 4] [6011] +08:43:49 [ 19] [ 3] [418] +08:43:49 [ 22] [ 3] [021] +08:43:49 [ 25] [ 2] [01] +08:43:49 [ 28] [ 9] [D00000000] +08:43:49 [ 32] [ 6] [668899] +08:43:49 [ 35] [ 32] [6213548000438299=180612013829621] +08:43:49 [ 37] [ 12] [507901963386] +08:43:49 [ 41] [ 8] [03020019] +08:43:49 [ 42] [ 15] [APT ] +08:43:49 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +08:43:49 [ 49] [ 3] [418] +08:43:49 [ 52] [ 16] [8EA4F0C7B7695ECA] +08:43:49 ============================================================================ +08:43:49 + + +waiting on router queue for slot.... +08:43:49 Sending to : <0> +08:43:49 ============================================================================ +08:43:50 ============================================================================ +08:43:50 Slot Id : <40> +08:43:50 Transaction Type : RESPONSE +08:43:50 Received From : +08:43:50 ============================================================================ +08:43:50 FNo. Len. Field Value +08:43:50 ============================================================================ +08:43:50 [ 1] [ 4] [0210] +08:43:50 [ 2] [ 16] [6213548000438299] +08:43:50 [ 3] [ 6] [300000] +08:43:50 [ 4] [ 12] [000000000000] +08:43:50 [ 7] [ 10] [0320084140] +08:43:50 [ 11] [ 6] [933585] +08:43:50 [ 12] [ 6] [084140] +08:43:50 [ 13] [ 4] [0320] +08:43:50 [ 15] [ 4] [0320] +08:43:50 [ 18] [ 4] [6011] +08:43:50 [ 19] [ 3] [418] +08:43:50 [ 32] [ 6] [668899] +08:43:50 [ 35] [ 32] [6213548000438299=180612013829621] +08:43:50 [ 37] [ 12] [507901963386] +08:43:50 [ 38] [ 6] [080563] +08:43:50 [ 39] [ 2] [00] +08:43:50 [ 41] [ 8] [03020019] +08:43:50 [ 49] [ 3] [418] +08:43:50 [ 54] [ 40] [0001418C0000837530350002418C000083753035] +08:43:50 ============================================================================ +08:43:50 Sending to : +08:43:50 ============================================================================ +08:43:50 + + +waiting on router queue for slot.... +08:43:50 ============================================================================ +08:43:50 Slot Id : <467> +08:43:50 Transaction Type : RESPONSE +08:43:50 Received From : +08:43:50 ============================================================================ +08:43:50 FNo. Len. Field Value +08:43:50 ============================================================================ +08:43:50 [ 1] [ 4] [0210] +08:43:50 [ 2] [ 16] [6213548000372316] +08:43:50 [ 3] [ 6] [010000] +08:43:50 [ 4] [ 12] [000002000000] +08:43:50 [ 7] [ 10] [0320084140] +08:43:50 [ 11] [ 6] [933584] +08:43:50 [ 12] [ 6] [084140] +08:43:50 [ 13] [ 4] [0320] +08:43:50 [ 15] [ 4] [0320] +08:43:50 [ 18] [ 4] [6011] +08:43:50 [ 19] [ 3] [418] +08:43:50 [ 32] [ 6] [668899] +08:43:50 [ 35] [ 32] [6213548000372316=180512017231687] +08:43:50 [ 37] [ 12] [507902531634] +08:43:50 [ 38] [ 6] [962675] +08:43:50 [ 39] [ 2] [00] +08:43:50 [ 41] [ 8] [03020033] +08:43:50 [ 49] [ 3] [418] +08:43:50 [ 54] [ 40] [0001418C0000064191400002418C000006419140] +08:43:50 ============================================================================ +08:43:50 Sending to : +08:43:50 ============================================================================ +08:43:50 + + +waiting on router queue for slot.... +08:43:51 ============================================================================ +08:43:51 Slot Id : <40> +08:43:51 Transaction Type : RESPONSE +08:43:51 Received From : +08:43:51 ============================================================================ +08:43:51 FNo. Len. Field Value +08:43:51 ============================================================================ +08:43:51 [ 1] [ 4] [0210] +08:43:51 [ 2] [ 16] [6213548000438299] +08:43:51 [ 3] [ 6] [300000] +08:43:51 [ 4] [ 12] [000000000000] +08:43:51 [ 7] [ 10] [0320084140] +08:43:51 [ 11] [ 6] [933585] +08:43:51 [ 12] [ 6] [084140] +08:43:51 [ 13] [ 4] [0320] +08:43:51 [ 15] [ 4] [0320] +08:43:51 [ 18] [ 4] [6011] +08:43:51 [ 19] [ 3] [418] +08:43:51 [ 32] [ 6] [668899] +08:43:51 [ 35] [ 32] [6213548000438299=180612013829621] +08:43:51 [ 37] [ 12] [507901963386] +08:43:51 [ 38] [ 6] [080563] +08:43:51 [ 39] [ 2] [00] +08:43:51 [ 41] [ 8] [03020019] +08:43:51 [ 49] [ 3] [418] +08:43:51 [ 54] [ 40] [0001418C0000837530350002418C000083753035] +08:43:51 ============================================================================ +08:43:51 Calculate Source COMM Id = 4 +08:43:51 ============================================================================ +08:43:51 + + +waiting on router queue for slot.... +08:43:53 ============================================================================ +08:43:53 Slot Id : <467> +08:43:53 Transaction Type : RESPONSE +08:43:53 Received From : +08:43:53 ============================================================================ +08:43:53 FNo. Len. Field Value +08:43:53 ============================================================================ +08:43:53 [ 1] [ 4] [0210] +08:43:53 [ 2] [ 16] [6213548000372316] +08:43:53 [ 3] [ 6] [010000] +08:43:53 [ 4] [ 12] [000002000000] +08:43:53 [ 7] [ 10] [0320084140] +08:43:53 [ 11] [ 6] [933584] +08:43:53 [ 12] [ 6] [084140] +08:43:53 [ 13] [ 4] [0320] +08:43:53 [ 15] [ 4] [0320] +08:43:53 [ 18] [ 4] [6011] +08:43:53 [ 19] [ 3] [418] +08:43:53 [ 32] [ 6] [668899] +08:43:53 [ 35] [ 32] [6213548000372316=180512017231687] +08:43:53 [ 37] [ 12] [507902531634] +08:43:53 [ 38] [ 6] [962675] +08:43:53 [ 39] [ 2] [00] +08:43:53 [ 41] [ 8] [03020033] +08:43:53 [ 49] [ 3] [418] +08:43:53 [ 54] [ 40] [0001418C0000064191400002418C000006419140] +08:43:53 ============================================================================ +08:43:53 Calculate Source COMM Id = 4 +08:43:53 ============================================================================ +08:43:53 + + +waiting on router queue for slot.... +08:43:55 ============================================================================ +08:43:55 Slot Id : <497> +08:43:55 Transaction Type : REQUEST +08:43:55 Received From : +08:43:55 ============================================================================ +08:43:55 FNo. Len. Field Value +08:43:55 ============================================================================ +08:43:55 [ 1] [ 4] [0800] +08:43:55 [ 7] [ 10] [0320014303] +08:43:55 [ 11] [ 6] [155470] +08:43:55 [ 70] [ 3] [301] +08:43:55 ============================================================================ +08:43:55 + + +waiting on router queue for slot.... +08:43:55 Sending to : +08:43:55 ============================================================================ +08:43:55 ============================================================================ +08:43:55 Slot Id : <497> +08:43:55 Transaction Type : RESPONSE +08:43:55 Received From : +08:43:55 ============================================================================ +08:43:55 FNo. Len. Field Value +08:43:55 ============================================================================ +08:43:55 [ 1] [ 4] [0810] +08:43:55 [ 7] [ 10] [0320014303] +08:43:55 [ 11] [ 6] [155470] +08:43:55 [ 39] [ 2] [00] +08:43:55 [ 70] [ 3] [301] +08:43:55 ============================================================================ +08:43:55 Calculate Source COMM Id = 2 +08:43:55 ============================================================================ +08:43:55 + + +waiting on router queue for slot.... +08:44:00 ============================================================================ +08:44:00 Slot Id : <43> +08:44:00 Transaction Type : REQUEST +08:44:00 Received From : +08:44:00 ============================================================================ +08:44:00 FNo. Len. Field Value +08:44:00 ============================================================================ +08:44:00 [ 1] [ 4] [0800] +08:44:00 [ 7] [ 10] [0320084348] +08:44:00 [ 11] [ 6] [038456] +08:44:00 [ 37] [ 12] [507908038456] +08:44:00 [ 70] [ 3] [ ] +08:44:00 ============================================================================ +08:44:00 + + +waiting on router queue for slot.... +08:44:00 Sending to : +08:44:00 ============================================================================ +08:44:00 ============================================================================ +08:44:00 Slot Id : <43> +08:44:00 Transaction Type : RESPONSE +08:44:00 Received From : +08:44:00 ============================================================================ +08:44:00 FNo. Len. Field Value +08:44:00 ============================================================================ +08:44:00 [ 1] [ 4] [0810] +08:44:00 [ 7] [ 10] [0320084348] +08:44:00 [ 11] [ 6] [038456] +08:44:00 [ 37] [ 12] [507908038456] +08:44:00 [ 39] [ 2] [91] +08:44:00 [ 70] [ 3] [ ] +08:44:00 ============================================================================ +08:44:00 Calculate Source COMM Id = 3 +08:44:00 ============================================================================ +08:44:00 + + +waiting on router queue for slot.... +08:44:05 ============================================================================ +08:44:05 Slot Id : <8> +08:44:05 Transaction Type : REQUEST +08:44:05 Received From : +08:44:05 ============================================================================ +08:44:05 FNo. Len. Field Value +08:44:05 ============================================================================ +08:44:05 [ 1] [ 4] [0800] +08:44:05 [ 7] [ 10] [0320014314] +08:44:05 [ 11] [ 6] [155471] +08:44:05 [ 70] [ 3] [301] +08:44:05 ============================================================================ +08:44:05 + + +waiting on router queue for slot.... +08:44:06 Sending to : +08:44:06 ============================================================================ +08:44:06 ============================================================================ +08:44:06 Slot Id : <8> +08:44:06 Transaction Type : RESPONSE +08:44:06 Received From : +08:44:06 ============================================================================ +08:44:06 FNo. Len. Field Value +08:44:06 ============================================================================ +08:44:06 [ 1] [ 4] [0810] +08:44:06 [ 7] [ 10] [0320014314] +08:44:06 [ 11] [ 6] [155471] +08:44:06 [ 39] [ 2] [00] +08:44:06 [ 70] [ 3] [301] +08:44:06 ============================================================================ +08:44:06 Calculate Source COMM Id = 2 +08:44:06 ============================================================================ +08:44:06 + + +waiting on router queue for slot.... +08:44:17 ============================================================================ +08:44:17 Slot Id : <28> +08:44:17 Transaction Type : REQUEST +08:44:17 Received From : +08:44:17 ============================================================================ +08:44:17 FNo. Len. Field Value +08:44:17 ============================================================================ +08:44:17 [ 1] [ 4] [0800] +08:44:17 [ 7] [ 10] [0320014325] +08:44:17 [ 11] [ 6] [155472] +08:44:17 [ 70] [ 3] [301] +08:44:17 ============================================================================ +08:44:17 + + +waiting on router queue for slot.... +08:44:17 Sending to : +08:44:17 ============================================================================ +08:44:17 ============================================================================ +08:44:17 Slot Id : <28> +08:44:17 Transaction Type : RESPONSE +08:44:17 Received From : +08:44:17 ============================================================================ +08:44:17 FNo. Len. Field Value +08:44:17 ============================================================================ +08:44:17 [ 1] [ 4] [0810] +08:44:17 [ 7] [ 10] [0320014325] +08:44:17 [ 11] [ 6] [155472] +08:44:17 [ 39] [ 2] [00] +08:44:17 [ 70] [ 3] [301] +08:44:17 ============================================================================ +08:44:17 Calculate Source COMM Id = 2 +08:44:17 ============================================================================ +08:44:17 + + +waiting on router queue for slot.... +08:44:26 ============================================================================ +08:44:26 Slot Id : <50> +08:44:26 Transaction Type : REQUEST +08:44:26 Received From : +08:44:26 ============================================================================ +08:44:26 FNo. Len. Field Value +08:44:26 ============================================================================ +08:44:26 [ 1] [ 4] [0800] +08:44:26 [ 7] [ 10] [0320155615] +08:44:26 [ 11] [ 6] [085615] +08:44:26 [ 37] [ 12] [57908085615] +08:44:26 [ 70] [ 3] [301] +08:44:26 ============================================================================ +08:44:26 + + +waiting on router queue for slot.... +08:44:26 Sending to : +08:44:26 ============================================================================ +08:44:26 ============================================================================ +08:44:26 Slot Id : <50> +08:44:26 Transaction Type : RESPONSE +08:44:26 Received From : +08:44:26 ============================================================================ +08:44:26 FNo. Len. Field Value +08:44:26 ============================================================================ +08:44:26 [ 1] [ 4] [0810] +08:44:26 [ 7] [ 10] [0320155615] +08:44:26 [ 11] [ 6] [085615] +08:44:26 [ 37] [ 12] [579080856150] +08:44:26 [ 39] [ 2] [00] +08:44:26 [ 70] [ 3] [810] +08:44:26 ============================================================================ +08:44:26 Calculate Source COMM Id = 6 +08:44:26 ============================================================================ +08:44:26 + + +waiting on router queue for slot.... +08:44:27 ============================================================================ +08:44:27 Slot Id : <52> +08:44:27 Transaction Type : REQUEST +08:44:27 Received From : +08:44:27 ============================================================================ +08:44:27 FNo. Len. Field Value +08:44:27 ============================================================================ +08:44:27 [ 1] [ 4] [0800] +08:44:27 [ 7] [ 10] [0320014335] +08:44:27 [ 11] [ 6] [155473] +08:44:27 [ 70] [ 3] [301] +08:44:27 ============================================================================ +08:44:27 + + +waiting on router queue for slot.... +08:44:27 Sending to : +08:44:27 ============================================================================ +08:44:27 ============================================================================ +08:44:27 Slot Id : <52> +08:44:27 Transaction Type : RESPONSE +08:44:27 Received From : +08:44:27 ============================================================================ +08:44:27 FNo. Len. Field Value +08:44:27 ============================================================================ +08:44:27 [ 1] [ 4] [0810] +08:44:27 [ 7] [ 10] [0320014335] +08:44:27 [ 11] [ 6] [155473] +08:44:27 [ 39] [ 2] [00] +08:44:27 [ 70] [ 3] [301] +08:44:27 ============================================================================ +08:44:27 Calculate Source COMM Id = 2 +08:44:27 ============================================================================ +08:44:27 + + +waiting on router queue for slot.... +08:44:30 ============================================================================ +08:44:30 Slot Id : <44> +08:44:30 Transaction Type : REQUEST +08:44:30 Received From : +08:44:30 ============================================================================ +08:44:30 FNo. Len. Field Value +08:44:30 ============================================================================ +08:44:30 [ 1] [ 4] [0800] +08:44:30 [ 2] [ 5] [02531] +08:44:30 [ 3] [ 6] [579088] +08:44:30 [ 7] [ 10] [0320014430] +08:44:30 [ 11] [ 6] [806919] +08:44:30 [ 15] [ 10] [0320014430] +08:44:30 [ 37] [ 11] [57908806919] +08:44:30 [ 70] [ 3] [001] +08:44:30 ============================================================================ +08:44:30 + + +waiting on router queue for slot.... +08:44:30 ============================================================================ +08:44:30 Slot Id : <44> +08:44:30 Transaction Type : RESPONSE +08:44:30 Received From : +08:44:30 ============================================================================ +08:44:30 FNo. Len. Field Value +08:44:30 ============================================================================ +08:44:30 [ 1] [ 4] [0810] +08:44:30 [ 7] [ 10] [0320014430] +08:44:30 [ 11] [ 6] [806919] +08:44:30 [ 15] [ 4] [0320] +08:44:30 [ 37] [ 12] [57908806919] +08:44:30 [ 39] [ 2] [00] +08:44:30 [ 70] [ 3] [001] +08:44:30 ============================================================================ +08:44:30 Sending to : +08:44:30 ============================================================================ +08:44:30 + + +waiting on router queue for slot.... +08:44:43 ============================================================================ +08:44:43 Slot Id : <61> +08:44:43 Transaction Type : REQUEST +08:44:43 Received From : +08:44:43 ============================================================================ +08:44:43 FNo. Len. Field Value +08:44:43 ============================================================================ +08:44:43 [ 1] [ 4] [0800] +08:44:43 [ 7] [ 10] [0320014351] +08:44:43 [ 11] [ 6] [155474] +08:44:43 [ 70] [ 3] [301] +08:44:43 ============================================================================ +08:44:43 + + +waiting on router queue for slot.... +08:44:43 Sending to : +08:44:43 ============================================================================ +08:44:43 ============================================================================ +08:44:43 Slot Id : <61> +08:44:43 Transaction Type : RESPONSE +08:44:43 Received From : +08:44:43 ============================================================================ +08:44:43 FNo. Len. Field Value +08:44:43 ============================================================================ +08:44:43 [ 1] [ 4] [0810] +08:44:43 [ 7] [ 10] [0320014351] +08:44:43 [ 11] [ 6] [155474] +08:44:43 [ 39] [ 2] [00] +08:44:43 [ 70] [ 3] [301] +08:44:43 ============================================================================ +08:44:43 Calculate Source COMM Id = 2 +08:44:43 ============================================================================ +08:44:43 + + +waiting on router queue for slot.... +08:44:53 ============================================================================ +08:44:53 Slot Id : <25> +08:44:53 Transaction Type : REQUEST +08:44:53 Received From : +08:44:53 ============================================================================ +08:44:53 FNo. Len. Field Value +08:44:53 ============================================================================ +08:44:53 [ 1] [ 4] [0800] +08:44:53 [ 7] [ 10] [0320014401] +08:44:53 [ 11] [ 6] [155475] +08:44:53 [ 70] [ 3] [301] +08:44:53 ============================================================================ +08:44:53 + + +waiting on router queue for slot.... +08:44:53 Sending to : +08:44:53 ============================================================================ +08:44:53 ============================================================================ +08:44:53 Slot Id : <25> +08:44:53 Transaction Type : RESPONSE +08:44:53 Received From : +08:44:53 ============================================================================ +08:44:53 FNo. Len. Field Value +08:44:53 ============================================================================ +08:44:53 [ 1] [ 4] [0810] +08:44:53 [ 7] [ 10] [0320014401] +08:44:53 [ 11] [ 6] [155475] +08:44:53 [ 39] [ 2] [00] +08:44:53 [ 70] [ 3] [301] +08:44:53 ============================================================================ +08:44:53 Calculate Source COMM Id = 2 +08:44:53 ============================================================================ +08:44:53 + + +waiting on router queue for slot.... +08:44:55 ============================================================================ +08:44:55 Slot Id : <15> +08:44:55 Transaction Type : REQUEST +08:44:55 Received From : +08:44:55 ============================================================================ +08:44:55 FNo. Len. Field Value +08:44:55 ============================================================================ +08:44:55 [ 1] [ 4] [0800] +08:44:55 [ 7] [ 10] [0320015242] +08:44:55 [ 11] [ 6] [027721] +08:44:55 [ 37] [ 12] [57908027721] +08:44:55 [ 70] [ 3] [301] +08:44:55 ============================================================================ +08:44:55 + + +waiting on router queue for slot.... +08:44:55 Sending to : +08:44:55 ============================================================================ +08:44:55 ============================================================================ +08:44:55 Slot Id : <15> +08:44:55 Transaction Type : RESPONSE +08:44:55 Received From : +08:44:55 ============================================================================ +08:44:55 FNo. Len. Field Value +08:44:55 ============================================================================ +08:44:55 [ 1] [ 4] [0810] +08:44:55 [ 7] [ 10] [0320015242] +08:44:55 [ 11] [ 6] [027721] +08:44:55 [ 37] [ 12] [579080277210] +08:44:55 [ 39] [ 2] [00] +08:44:55 [ 70] [ 3] [810] +08:44:55 ============================================================================ +08:44:55 Calculate Source COMM Id = 1 +08:44:55 ============================================================================ +08:44:55 + + +waiting on router queue for slot.... +08:44:55 ============================================================================ +08:44:55 Slot Id : <55> +08:44:55 Transaction Type : REQUEST +08:44:55 Received From : +08:44:55 ============================================================================ +08:44:55 FNo. Len. Field Value +08:44:55 ============================================================================ +08:44:55 [ 1] [ 4] [0200] +08:44:55 [ 2] [ 16] [6213545000391742] +08:44:55 [ 3] [ 6] [302000] +08:44:55 [ 4] [ 12] [000000000000] +08:44:55 [ 7] [ 10] [0320084246] +08:44:55 [ 11] [ 6] [933642] +08:44:55 [ 12] [ 6] [084246] +08:44:55 [ 13] [ 4] [0320] +08:44:55 [ 15] [ 4] [0320] +08:44:55 [ 18] [ 4] [6011] +08:44:55 [ 19] [ 3] [418] +08:44:55 [ 22] [ 3] [021] +08:44:55 [ 25] [ 2] [01] +08:44:55 [ 28] [ 9] [D00000000] +08:44:55 [ 32] [ 6] [668899] +08:44:55 [ 35] [ 32] [6213545000391742=491212019174427] +08:44:55 [ 37] [ 12] [507900906182] +08:44:55 [ 41] [ 8] [03016001] +08:44:55 [ 42] [ 15] [APT ] +08:44:55 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:44:55 [ 49] [ 3] [418] +08:44:55 [ 52] [ 16] [40F920712F90566C] +08:44:55 ============================================================================ +08:44:55 + + +waiting on router queue for slot.... +08:44:55 Sending to : +08:44:55 ============================================================================ +08:44:55 Sending to : +08:44:55 ============================================================================ +08:44:55 ============================================================================ +08:44:55 Slot Id : <55> +08:44:55 Transaction Type : REQUEST +08:44:55 Received From : +08:44:55 ============================================================================ +08:44:55 FNo. Len. Field Value +08:44:55 ============================================================================ +08:44:55 [ 1] [ 4] [0200] +08:44:55 [ 2] [ 16] [6213545000391742] +08:44:55 [ 3] [ 6] [302000] +08:44:55 [ 4] [ 12] [000000000000] +08:44:55 [ 7] [ 10] [0320084246] +08:44:55 [ 11] [ 6] [933642] +08:44:55 [ 12] [ 6] [084246] +08:44:55 [ 13] [ 4] [0320] +08:44:55 [ 15] [ 4] [0320] +08:44:55 [ 18] [ 4] [6011] +08:44:55 [ 19] [ 3] [418] +08:44:55 [ 22] [ 3] [021] +08:44:55 [ 25] [ 2] [01] +08:44:55 [ 28] [ 9] [D00000000] +08:44:55 [ 32] [ 6] [668899] +08:44:55 [ 35] [ 32] [6213545000391742=491212019174427] +08:44:55 [ 37] [ 12] [507900906182] +08:44:55 [ 41] [ 8] [03016001] +08:44:55 [ 42] [ 15] [APT ] +08:44:55 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:44:55 [ 49] [ 3] [418] +08:44:55 [ 52] [ 16] [40F920712F90566C] +08:44:55 ============================================================================ +08:44:55 + + +waiting on router queue for slot.... +08:44:55 Sending to : +08:44:55 ============================================================================ +08:44:55 ============================================================================ +08:44:55 Slot Id : <55> +08:44:55 Transaction Type : REQUEST +08:44:55 Received From : +08:44:55 ============================================================================ +08:44:55 FNo. Len. Field Value +08:44:55 ============================================================================ +08:44:55 [ 1] [ 4] [0200] +08:44:55 [ 2] [ 16] [6213545000391742] +08:44:55 [ 3] [ 6] [302000] +08:44:55 [ 4] [ 12] [000000000000] +08:44:55 [ 7] [ 10] [0320084246] +08:44:55 [ 11] [ 6] [933642] +08:44:55 [ 12] [ 6] [084246] +08:44:55 [ 13] [ 4] [0320] +08:44:55 [ 15] [ 4] [0320] +08:44:55 [ 18] [ 4] [6011] +08:44:55 [ 19] [ 3] [418] +08:44:55 [ 22] [ 3] [021] +08:44:55 [ 25] [ 2] [01] +08:44:55 [ 28] [ 9] [D00000000] +08:44:55 [ 32] [ 6] [668899] +08:44:55 [ 35] [ 32] [6213545000391742=491212019174427] +08:44:55 [ 37] [ 12] [507900906182] +08:44:55 [ 41] [ 8] [03016001] +08:44:55 [ 42] [ 15] [APT ] +08:44:55 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:44:55 [ 49] [ 3] [418] +08:44:55 [ 52] [ 16] [201CCE29D8AC5FCF] +08:44:55 ============================================================================ +08:44:55 + + +waiting on router queue for slot.... +08:44:55 Sending to : <0> +08:44:55 ============================================================================ +08:44:55 ============================================================================ +08:44:55 Slot Id : <55> +08:44:55 Transaction Type : RESPONSE +08:44:55 Received From : +08:44:55 ============================================================================ +08:44:55 FNo. Len. Field Value +08:44:55 ============================================================================ +08:44:55 [ 1] [ 4] [0210] +08:44:55 [ 2] [ 16] [6213545000391742] +08:44:55 [ 3] [ 6] [302000] +08:44:55 [ 4] [ 12] [000000000000] +08:44:55 [ 7] [ 10] [0320084246] +08:44:55 [ 11] [ 6] [933642] +08:44:55 [ 12] [ 6] [084246] +08:44:55 [ 13] [ 4] [0320] +08:44:55 [ 15] [ 4] [0320] +08:44:55 [ 18] [ 4] [6011] +08:44:55 [ 19] [ 3] [418] +08:44:55 [ 32] [ 6] [668899] +08:44:55 [ 35] [ 32] [6213545000391742=491212019174427] +08:44:55 [ 37] [ 12] [507900906182] +08:44:55 [ 38] [ 6] [844711] +08:44:55 [ 39] [ 2] [00] +08:44:55 [ 41] [ 8] [03016001] +08:44:55 [ 49] [ 3] [418] +08:44:55 [ 54] [ 40] [2001418C0001553229622002418C000155322962] +08:44:55 ============================================================================ +08:44:55 Sending to : +08:44:55 ============================================================================ +08:44:55 + + +waiting on router queue for slot.... +08:44:57 ============================================================================ +08:44:57 Slot Id : <55> +08:44:57 Transaction Type : RESPONSE +08:44:57 Received From : +08:44:57 ============================================================================ +08:44:57 FNo. Len. Field Value +08:44:57 ============================================================================ +08:44:57 [ 1] [ 4] [0210] +08:44:57 [ 2] [ 16] [6213545000391742] +08:44:57 [ 3] [ 6] [302000] +08:44:57 [ 4] [ 12] [000000000000] +08:44:57 [ 7] [ 10] [0320084246] +08:44:57 [ 11] [ 6] [933642] +08:44:57 [ 12] [ 6] [084246] +08:44:57 [ 13] [ 4] [0320] +08:44:57 [ 15] [ 4] [0320] +08:44:57 [ 18] [ 4] [6011] +08:44:57 [ 19] [ 3] [418] +08:44:57 [ 32] [ 6] [668899] +08:44:57 [ 35] [ 32] [6213545000391742=491212019174427] +08:44:57 [ 37] [ 12] [507900906182] +08:44:57 [ 38] [ 6] [844711] +08:44:57 [ 39] [ 2] [00] +08:44:57 [ 41] [ 8] [03016001] +08:44:57 [ 49] [ 3] [418] +08:44:57 [ 54] [ 40] [2001418C0001553229622002418C000155322962] +08:44:57 ============================================================================ +08:44:57 Calculate Source COMM Id = 4 +08:44:57 ============================================================================ +08:44:57 + + +waiting on router queue for slot.... +08:45:08 ============================================================================ +08:45:08 Slot Id : <478> +08:45:08 Transaction Type : REQUEST +08:45:08 Received From : +08:45:08 ============================================================================ +08:45:08 FNo. Len. Field Value +08:45:08 ============================================================================ +08:45:08 [ 1] [ 4] [0200] +08:45:08 [ 2] [ 16] [6213548000438299] +08:45:08 [ 3] [ 6] [301000] +08:45:08 [ 4] [ 12] [000000000000] +08:45:08 [ 7] [ 10] [0320084300] +08:45:08 [ 11] [ 6] [933654] +08:45:08 [ 12] [ 6] [084300] +08:45:08 [ 13] [ 4] [0320] +08:45:08 [ 15] [ 4] [0320] +08:45:08 [ 18] [ 4] [6011] +08:45:08 [ 19] [ 3] [418] +08:45:08 [ 22] [ 3] [021] +08:45:08 [ 25] [ 2] [01] +08:45:08 [ 28] [ 9] [D00000000] +08:45:08 [ 32] [ 6] [668899] +08:45:08 [ 35] [ 32] [6213548000438299=180612013829621] +08:45:08 [ 37] [ 12] [507901963388] +08:45:08 [ 41] [ 8] [03020019] +08:45:08 [ 42] [ 15] [APT ] +08:45:08 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +08:45:08 [ 49] [ 3] [418] +08:45:08 [ 52] [ 16] [AED3FDF296789835] +08:45:08 ============================================================================ +08:45:08 + + +waiting on router queue for slot.... +08:45:08 Sending to : +08:45:08 ============================================================================ +08:45:08 Sending to : +08:45:08 ============================================================================ +08:45:08 ============================================================================ +08:45:08 Slot Id : <478> +08:45:08 Transaction Type : REQUEST +08:45:08 Received From : +08:45:08 ============================================================================ +08:45:08 FNo. Len. Field Value +08:45:08 ============================================================================ +08:45:08 [ 1] [ 4] [0200] +08:45:08 [ 2] [ 16] [6213548000438299] +08:45:08 [ 3] [ 6] [301000] +08:45:08 [ 4] [ 12] [000000000000] +08:45:08 [ 7] [ 10] [0320084300] +08:45:08 [ 11] [ 6] [933654] +08:45:08 [ 12] [ 6] [084300] +08:45:08 [ 13] [ 4] [0320] +08:45:08 [ 15] [ 4] [0320] +08:45:08 [ 18] [ 4] [6011] +08:45:08 [ 19] [ 3] [418] +08:45:08 [ 22] [ 3] [021] +08:45:08 [ 25] [ 2] [01] +08:45:08 [ 28] [ 9] [D00000000] +08:45:08 [ 32] [ 6] [668899] +08:45:08 [ 35] [ 32] [6213548000438299=180612013829621] +08:45:08 [ 37] [ 12] [507901963388] +08:45:08 [ 41] [ 8] [03020019] +08:45:08 [ 42] [ 15] [APT ] +08:45:08 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +08:45:08 [ 49] [ 3] [418] +08:45:08 [ 52] [ 16] [AED3FDF296789835] +08:45:08 ============================================================================ +08:45:08 + + +waiting on router queue for slot.... +08:45:08 Sending to : +08:45:08 ============================================================================ +08:45:08 ============================================================================ +08:45:08 Slot Id : <478> +08:45:08 Transaction Type : REQUEST +08:45:08 Received From : +08:45:08 ============================================================================ +08:45:08 FNo. Len. Field Value +08:45:08 ============================================================================ +08:45:08 [ 1] [ 4] [0200] +08:45:08 [ 2] [ 16] [6213548000438299] +08:45:08 [ 3] [ 6] [301000] +08:45:08 [ 4] [ 12] [000000000000] +08:45:08 [ 7] [ 10] [0320084300] +08:45:08 [ 11] [ 6] [933654] +08:45:08 [ 12] [ 6] [084300] +08:45:08 [ 13] [ 4] [0320] +08:45:08 [ 15] [ 4] [0320] +08:45:08 [ 18] [ 4] [6011] +08:45:08 [ 19] [ 3] [418] +08:45:08 [ 22] [ 3] [021] +08:45:08 [ 25] [ 2] [01] +08:45:08 [ 28] [ 9] [D00000000] +08:45:08 [ 32] [ 6] [668899] +08:45:08 [ 35] [ 32] [6213548000438299=180612013829621] +08:45:08 [ 37] [ 12] [507901963388] +08:45:08 [ 41] [ 8] [03020019] +08:45:08 [ 42] [ 15] [APT ] +08:45:08 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +08:45:08 [ 49] [ 3] [418] +08:45:08 [ 52] [ 16] [8EA4F0C7B7695ECA] +08:45:08 ============================================================================ +08:45:08 + + +waiting on router queue for slot.... +08:45:08 Sending to : <0> +08:45:08 ============================================================================ +08:45:09 ============================================================================ +08:45:09 Slot Id : <478> +08:45:09 Transaction Type : RESPONSE +08:45:09 Received From : +08:45:09 ============================================================================ +08:45:09 FNo. Len. Field Value +08:45:09 ============================================================================ +08:45:09 [ 1] [ 4] [0210] +08:45:09 [ 2] [ 16] [6213548000438299] +08:45:09 [ 3] [ 6] [301000] +08:45:09 [ 4] [ 12] [000000000000] +08:45:09 [ 7] [ 10] [0320084300] +08:45:09 [ 11] [ 6] [933654] +08:45:09 [ 12] [ 6] [084300] +08:45:09 [ 13] [ 4] [0320] +08:45:09 [ 15] [ 4] [0320] +08:45:09 [ 18] [ 4] [6011] +08:45:09 [ 19] [ 3] [418] +08:45:09 [ 32] [ 6] [668899] +08:45:09 [ 35] [ 32] [6213548000438299=180612013829621] +08:45:09 [ 37] [ 12] [507901963388] +08:45:09 [ 38] [ 6] [177726] +08:45:09 [ 39] [ 2] [00] +08:45:09 [ 41] [ 8] [03020019] +08:45:09 [ 49] [ 3] [418] +08:45:09 [ 54] [ 40] [1001418C0000837530351002418C000083753035] +08:45:09 ============================================================================ +08:45:09 Sending to : +08:45:09 ============================================================================ +08:45:09 + + +waiting on router queue for slot.... +08:45:09 ============================================================================ +08:45:09 Slot Id : <68> +08:45:09 Transaction Type : REQUEST +08:45:09 Received From : +08:45:09 ============================================================================ +08:45:09 FNo. Len. Field Value +08:45:09 ============================================================================ +08:45:09 [ 1] [ 4] [0800] +08:45:09 [ 7] [ 10] [0320014417] +08:45:09 [ 11] [ 6] [155476] +08:45:09 [ 70] [ 3] [301] +08:45:09 ============================================================================ +08:45:09 + + +waiting on router queue for slot.... +08:45:09 Sending to : +08:45:09 ============================================================================ +08:45:09 ============================================================================ +08:45:09 Slot Id : <68> +08:45:09 Transaction Type : RESPONSE +08:45:09 Received From : +08:45:09 ============================================================================ +08:45:09 FNo. Len. Field Value +08:45:09 ============================================================================ +08:45:09 [ 1] [ 4] [0810] +08:45:09 [ 7] [ 10] [0320014417] +08:45:09 [ 11] [ 6] [155476] +08:45:09 [ 39] [ 2] [00] +08:45:09 [ 70] [ 3] [301] +08:45:09 ============================================================================ +08:45:09 Calculate Source COMM Id = 2 +08:45:09 ============================================================================ +08:45:09 + + +waiting on router queue for slot.... +08:45:10 ============================================================================ +08:45:10 Slot Id : <478> +08:45:10 Transaction Type : RESPONSE +08:45:10 Received From : +08:45:10 ============================================================================ +08:45:10 FNo. Len. Field Value +08:45:10 ============================================================================ +08:45:10 [ 1] [ 4] [0210] +08:45:10 [ 2] [ 16] [6213548000438299] +08:45:10 [ 3] [ 6] [301000] +08:45:10 [ 4] [ 12] [000000000000] +08:45:10 [ 7] [ 10] [0320084300] +08:45:10 [ 11] [ 6] [933654] +08:45:10 [ 12] [ 6] [084300] +08:45:10 [ 13] [ 4] [0320] +08:45:10 [ 15] [ 4] [0320] +08:45:10 [ 18] [ 4] [6011] +08:45:10 [ 19] [ 3] [418] +08:45:10 [ 32] [ 6] [668899] +08:45:10 [ 35] [ 32] [6213548000438299=180612013829621] +08:45:10 [ 37] [ 12] [507901963388] +08:45:10 [ 38] [ 6] [177726] +08:45:10 [ 39] [ 2] [00] +08:45:10 [ 41] [ 8] [03020019] +08:45:10 [ 49] [ 3] [418] +08:45:10 [ 54] [ 40] [1001418C0000837530351002418C000083753035] +08:45:10 ============================================================================ +08:45:10 Calculate Source COMM Id = 4 +08:45:10 ============================================================================ +08:45:10 + + +waiting on router queue for slot.... +08:45:13 ============================================================================ +08:45:13 Slot Id : <60> +08:45:13 Transaction Type : REQUEST +08:45:13 Received From : +08:45:13 ============================================================================ +08:45:13 FNo. Len. Field Value +08:45:13 ============================================================================ +08:45:13 [ 1] [ 4] [0200] +08:45:13 [ 2] [ 16] [6213545000391742] +08:45:13 [ 3] [ 6] [300000] +08:45:13 [ 4] [ 12] [000000000000] +08:45:13 [ 7] [ 10] [0320084304] +08:45:13 [ 11] [ 6] [933657] +08:45:13 [ 12] [ 6] [084304] +08:45:13 [ 13] [ 4] [0320] +08:45:13 [ 15] [ 4] [0320] +08:45:13 [ 18] [ 4] [6011] +08:45:13 [ 19] [ 3] [418] +08:45:13 [ 22] [ 3] [021] +08:45:13 [ 25] [ 2] [01] +08:45:13 [ 28] [ 9] [D00000000] +08:45:13 [ 32] [ 6] [668899] +08:45:13 [ 35] [ 32] [6213545000391742=491212019174427] +08:45:13 [ 37] [ 12] [507900906183] +08:45:13 [ 41] [ 8] [03016001] +08:45:13 [ 42] [ 15] [APT ] +08:45:13 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:45:13 [ 49] [ 3] [418] +08:45:13 [ 52] [ 16] [40F920712F90566C] +08:45:13 ============================================================================ +08:45:13 + + +waiting on router queue for slot.... +08:45:13 Sending to : +08:45:13 ============================================================================ +08:45:13 Sending to : +08:45:13 ============================================================================ +08:45:13 ============================================================================ +08:45:13 Slot Id : <60> +08:45:13 Transaction Type : REQUEST +08:45:13 Received From : +08:45:13 ============================================================================ +08:45:13 FNo. Len. Field Value +08:45:13 ============================================================================ +08:45:13 [ 1] [ 4] [0200] +08:45:13 [ 2] [ 16] [6213545000391742] +08:45:13 [ 3] [ 6] [300000] +08:45:13 [ 4] [ 12] [000000000000] +08:45:13 [ 7] [ 10] [0320084304] +08:45:13 [ 11] [ 6] [933657] +08:45:13 [ 12] [ 6] [084304] +08:45:13 [ 13] [ 4] [0320] +08:45:13 [ 15] [ 4] [0320] +08:45:13 [ 18] [ 4] [6011] +08:45:13 [ 19] [ 3] [418] +08:45:13 [ 22] [ 3] [021] +08:45:13 [ 25] [ 2] [01] +08:45:13 [ 28] [ 9] [D00000000] +08:45:13 [ 32] [ 6] [668899] +08:45:13 [ 35] [ 32] [6213545000391742=491212019174427] +08:45:13 [ 37] [ 12] [507900906183] +08:45:13 [ 41] [ 8] [03016001] +08:45:13 [ 42] [ 15] [APT ] +08:45:13 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:45:13 [ 49] [ 3] [418] +08:45:13 [ 52] [ 16] [40F920712F90566C] +08:45:13 ============================================================================ +08:45:13 + + +waiting on router queue for slot.... +08:45:13 Sending to : +08:45:13 ============================================================================ +08:45:13 ============================================================================ +08:45:13 Slot Id : <60> +08:45:13 Transaction Type : REQUEST +08:45:13 Received From : +08:45:13 ============================================================================ +08:45:13 FNo. Len. Field Value +08:45:13 ============================================================================ +08:45:13 [ 1] [ 4] [0200] +08:45:13 [ 2] [ 16] [6213545000391742] +08:45:13 [ 3] [ 6] [300000] +08:45:13 [ 4] [ 12] [000000000000] +08:45:13 [ 7] [ 10] [0320084304] +08:45:13 [ 11] [ 6] [933657] +08:45:13 [ 12] [ 6] [084304] +08:45:13 [ 13] [ 4] [0320] +08:45:13 [ 15] [ 4] [0320] +08:45:13 [ 18] [ 4] [6011] +08:45:13 [ 19] [ 3] [418] +08:45:13 [ 22] [ 3] [021] +08:45:13 [ 25] [ 2] [01] +08:45:13 [ 28] [ 9] [D00000000] +08:45:13 [ 32] [ 6] [668899] +08:45:13 [ 35] [ 32] [6213545000391742=491212019174427] +08:45:13 [ 37] [ 12] [507900906183] +08:45:13 [ 41] [ 8] [03016001] +08:45:13 [ 42] [ 15] [APT ] +08:45:13 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:45:13 [ 49] [ 3] [418] +08:45:13 [ 52] [ 16] [201CCE29D8AC5FCF] +08:45:13 ============================================================================ +08:45:13 + + +waiting on router queue for slot.... +08:45:13 Sending to : <0> +08:45:13 ============================================================================ +08:45:13 ============================================================================ +08:45:13 Slot Id : <60> +08:45:13 Transaction Type : RESPONSE +08:45:13 Received From : +08:45:13 ============================================================================ +08:45:13 FNo. Len. Field Value +08:45:13 ============================================================================ +08:45:13 [ 1] [ 4] [0210] +08:45:13 [ 2] [ 16] [6213545000391742] +08:45:13 [ 3] [ 6] [300000] +08:45:13 [ 4] [ 12] [000000000000] +08:45:13 [ 7] [ 10] [0320084304] +08:45:13 [ 11] [ 6] [933657] +08:45:13 [ 12] [ 6] [084304] +08:45:13 [ 13] [ 4] [0320] +08:45:13 [ 15] [ 4] [0320] +08:45:13 [ 18] [ 4] [6011] +08:45:13 [ 19] [ 3] [418] +08:45:13 [ 32] [ 6] [668899] +08:45:13 [ 35] [ 32] [6213545000391742=491212019174427] +08:45:13 [ 37] [ 12] [507900906183] +08:45:13 [ 38] [ 6] [627516] +08:45:13 [ 39] [ 2] [00] +08:45:13 [ 41] [ 8] [03016001] +08:45:13 [ 49] [ 3] [418] +08:45:13 [ 54] [ 40] [0001418C0001553229620002418C000155322962] +08:45:13 ============================================================================ +08:45:13 Sending to : +08:45:13 ============================================================================ +08:45:13 + + +waiting on router queue for slot.... +08:45:15 ============================================================================ +08:45:15 Slot Id : <60> +08:45:15 Transaction Type : RESPONSE +08:45:15 Received From : +08:45:15 ============================================================================ +08:45:15 FNo. Len. Field Value +08:45:15 ============================================================================ +08:45:15 [ 1] [ 4] [0210] +08:45:15 [ 2] [ 16] [6213545000391742] +08:45:15 [ 3] [ 6] [300000] +08:45:15 [ 4] [ 12] [000000000000] +08:45:15 [ 7] [ 10] [0320084304] +08:45:15 [ 11] [ 6] [933657] +08:45:15 [ 12] [ 6] [084304] +08:45:15 [ 13] [ 4] [0320] +08:45:15 [ 15] [ 4] [0320] +08:45:15 [ 18] [ 4] [6011] +08:45:15 [ 19] [ 3] [418] +08:45:15 [ 32] [ 6] [668899] +08:45:15 [ 35] [ 32] [6213545000391742=491212019174427] +08:45:15 [ 37] [ 12] [507900906183] +08:45:15 [ 38] [ 6] [627516] +08:45:15 [ 39] [ 2] [00] +08:45:15 [ 41] [ 8] [03016001] +08:45:15 [ 49] [ 3] [418] +08:45:15 [ 54] [ 40] [0001418C0001553229620002418C000155322962] +08:45:15 ============================================================================ +08:45:15 Calculate Source COMM Id = 4 +08:45:15 ============================================================================ +08:45:15 + + +waiting on router queue for slot.... +08:45:16 ============================================================================ +08:45:16 Slot Id : <63> +08:45:16 Transaction Type : REQUEST +08:45:16 Received From : +08:45:16 ============================================================================ +08:45:16 FNo. Len. Field Value +08:45:16 ============================================================================ +08:45:16 [ 1] [ 4] [0200] +08:45:16 [ 2] [ 16] [1808930500014303] +08:45:16 [ 3] [ 6] [010000] +08:45:16 [ 4] [ 12] [000100000000] +08:45:16 [ 7] [ 10] [0320084308] +08:45:16 [ 11] [ 6] [933662] +08:45:16 [ 12] [ 6] [084308] +08:45:16 [ 13] [ 4] [0320] +08:45:16 [ 15] [ 4] [0320] +08:45:16 [ 18] [ 4] [6011] +08:45:16 [ 19] [ 3] [418] +08:45:16 [ 22] [ 3] [021] +08:45:16 [ 25] [ 2] [01] +08:45:16 [ 28] [ 9] [D00002000] +08:45:16 [ 32] [ 6] [668899] +08:45:16 [ 35] [ 27] [1808930500014303=1803500022] +08:45:16 [ 37] [ 12] [507900844821] +08:45:16 [ 41] [ 8] [03015003] +08:45:16 [ 42] [ 15] [APT ] +08:45:16 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:45:16 [ 49] [ 3] [418] +08:45:16 [ 52] [ 16] [10A73A561F4E1342] +08:45:16 ============================================================================ +08:45:16 + + +waiting on router queue for slot.... +08:45:16 Sending to : +08:45:16 ============================================================================ +08:45:16 Sending to : +08:45:16 ============================================================================ +08:45:16 ============================================================================ +08:45:16 Slot Id : <63> +08:45:16 Transaction Type : REQUEST +08:45:16 Received From : +08:45:16 ============================================================================ +08:45:16 FNo. Len. Field Value +08:45:16 ============================================================================ +08:45:16 [ 1] [ 4] [0200] +08:45:16 [ 2] [ 16] [1808930500014303] +08:45:16 [ 3] [ 6] [010000] +08:45:16 [ 4] [ 12] [000100000000] +08:45:16 [ 7] [ 10] [0320084308] +08:45:16 [ 11] [ 6] [933662] +08:45:16 [ 12] [ 6] [084308] +08:45:16 [ 13] [ 4] [0320] +08:45:16 [ 15] [ 4] [0320] +08:45:16 [ 18] [ 4] [6011] +08:45:16 [ 19] [ 3] [418] +08:45:16 [ 22] [ 3] [021] +08:45:16 [ 25] [ 2] [01] +08:45:16 [ 28] [ 9] [D00002000] +08:45:16 [ 32] [ 6] [668899] +08:45:16 [ 35] [ 27] [1808930500014303=1803500022] +08:45:16 [ 37] [ 12] [507900844821] +08:45:16 [ 41] [ 8] [03015003] +08:45:16 [ 42] [ 15] [APT ] +08:45:16 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:45:16 [ 49] [ 3] [418] +08:45:16 [ 52] [ 16] [10A73A561F4E1342] +08:45:16 ============================================================================ +08:45:16 + + +waiting on router queue for slot.... +08:45:16 Sending to : +08:45:16 ============================================================================ +08:45:16 ============================================================================ +08:45:16 Slot Id : <63> +08:45:16 Transaction Type : REQUEST +08:45:16 Received From : +08:45:16 ============================================================================ +08:45:16 FNo. Len. Field Value +08:45:16 ============================================================================ +08:45:16 [ 1] [ 4] [0200] +08:45:16 [ 2] [ 16] [1808930500014303] +08:45:16 [ 3] [ 6] [010000] +08:45:16 [ 4] [ 12] [000100000000] +08:45:16 [ 7] [ 10] [0320084308] +08:45:16 [ 11] [ 6] [933662] +08:45:16 [ 12] [ 6] [084308] +08:45:16 [ 13] [ 4] [0320] +08:45:16 [ 15] [ 4] [0320] +08:45:16 [ 18] [ 4] [6011] +08:45:16 [ 19] [ 3] [418] +08:45:16 [ 22] [ 3] [021] +08:45:16 [ 25] [ 2] [01] +08:45:16 [ 28] [ 9] [D00002000] +08:45:16 [ 32] [ 6] [668899] +08:45:16 [ 35] [ 27] [1808930500014303=1803500022] +08:45:16 [ 37] [ 12] [507900844821] +08:45:16 [ 41] [ 8] [03015003] +08:45:16 [ 42] [ 15] [APT ] +08:45:16 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:45:16 [ 49] [ 3] [418] +08:45:16 [ 52] [ 16] [A9C475A12153C244] +08:45:16 ============================================================================ +08:45:16 + + +waiting on router queue for slot.... +08:45:16 Sending to : <2> +08:45:16 ============================================================================ +08:45:19 ============================================================================ +08:45:19 Slot Id : <63> +08:45:19 Transaction Type : RESPONSE +08:45:19 Received From : +08:45:19 ============================================================================ +08:45:19 FNo. Len. Field Value +08:45:19 ============================================================================ +08:45:19 [ 1] [ 4] [0210] +08:45:19 [ 2] [ 16] [1808930500014303] +08:45:19 [ 3] [ 6] [010000] +08:45:19 [ 4] [ 12] [000100000000] +08:45:19 [ 6] [ 12] [000100000000] +08:45:19 [ 7] [ 10] [0320084308] +08:45:19 [ 11] [ 6] [933662] +08:45:19 [ 12] [ 6] [084308] +08:45:19 [ 13] [ 4] [0320] +08:45:19 [ 18] [ 4] [6011] +08:45:19 [ 19] [ 3] [418] +08:45:19 [ 22] [ 3] [021] +08:45:19 [ 28] [ 9] [D00002000] +08:45:19 [ 32] [ 6] [668899] +08:45:19 [ 35] [ 27] [1808930500014303=1803500022] +08:45:19 [ 37] [ 12] [507900844821] +08:45:19 [ 39] [ 2] [55] +08:45:19 [ 41] [ 8] [03015003] +08:45:19 [ 49] [ 3] [418] +08:45:19 [ 51] [ 3] [418] +08:45:19 [ 52] [ 16] [A9C475A12153C244] +08:45:19 ============================================================================ +08:45:19 Sending to : +08:45:19 ============================================================================ +08:45:19 + + +waiting on router queue for slot.... +08:45:20 ============================================================================ +08:45:20 Slot Id : <63> +08:45:20 Transaction Type : RESPONSE +08:45:20 Received From : +08:45:20 ============================================================================ +08:45:20 FNo. Len. Field Value +08:45:20 ============================================================================ +08:45:20 [ 1] [ 4] [0210] +08:45:20 [ 2] [ 16] [1808930500014303] +08:45:20 [ 3] [ 6] [010000] +08:45:20 [ 4] [ 12] [000100000000] +08:45:20 [ 6] [ 12] [000100000000] +08:45:20 [ 7] [ 10] [0320084308] +08:45:20 [ 11] [ 6] [933662] +08:45:20 [ 12] [ 6] [084308] +08:45:20 [ 13] [ 4] [0320] +08:45:20 [ 18] [ 4] [6011] +08:45:20 [ 19] [ 3] [418] +08:45:20 [ 22] [ 3] [021] +08:45:20 [ 28] [ 9] [D00002000] +08:45:20 [ 32] [ 6] [668899] +08:45:20 [ 35] [ 27] [1808930500014303=1803500022] +08:45:20 [ 37] [ 12] [507900844821] +08:45:20 [ 39] [ 2] [55] +08:45:20 [ 41] [ 8] [03015003] +08:45:20 [ 49] [ 3] [418] +08:45:20 [ 51] [ 3] [418] +08:45:20 [ 52] [ 16] [A9C475A12153C244] +08:45:20 ============================================================================ +08:45:20 Calculate Source COMM Id = 4 +08:45:20 ============================================================================ +08:45:20 + + +waiting on router queue for slot.... +08:45:31 ============================================================================ +08:45:31 Slot Id : <41> +08:45:31 Transaction Type : REQUEST +08:45:31 Received From : +08:45:31 ============================================================================ +08:45:31 FNo. Len. Field Value +08:45:31 ============================================================================ +08:45:31 [ 1] [ 4] [0800] +08:45:31 [ 7] [ 10] [0320155720] +08:45:31 [ 11] [ 6] [085720] +08:45:31 [ 37] [ 12] [57908085720] +08:45:31 [ 70] [ 3] [301] +08:45:31 ============================================================================ +08:45:31 + + +waiting on router queue for slot.... +08:45:31 Sending to : +08:45:31 ============================================================================ +08:45:31 ============================================================================ +08:45:31 Slot Id : <41> +08:45:31 Transaction Type : RESPONSE +08:45:31 Received From : +08:45:31 ============================================================================ +08:45:31 FNo. Len. Field Value +08:45:31 ============================================================================ +08:45:31 [ 1] [ 4] [0810] +08:45:31 [ 7] [ 10] [0320155720] +08:45:31 [ 11] [ 6] [085720] +08:45:31 [ 37] [ 12] [579080857200] +08:45:31 [ 39] [ 2] [00] +08:45:31 [ 70] [ 3] [810] +08:45:31 ============================================================================ +08:45:31 Calculate Source COMM Id = 6 +08:45:31 ============================================================================ +08:45:31 + + +waiting on router queue for slot.... +08:45:32 ============================================================================ +08:45:32 Slot Id : <464> +08:45:32 Transaction Type : REQUEST +08:45:32 Received From : +08:45:32 ============================================================================ +08:45:32 FNo. Len. Field Value +08:45:32 ============================================================================ +08:45:32 [ 1] [ 4] [0800] +08:45:32 [ 2] [ 5] [02531] +08:45:32 [ 3] [ 6] [579088] +08:45:32 [ 7] [ 10] [0320014532] +08:45:32 [ 11] [ 6] [806920] +08:45:32 [ 15] [ 10] [0320014532] +08:45:32 [ 37] [ 11] [57908806920] +08:45:32 [ 70] [ 3] [001] +08:45:32 ============================================================================ +08:45:32 + + +waiting on router queue for slot.... +08:45:32 ============================================================================ +08:45:32 Slot Id : <464> +08:45:32 Transaction Type : RESPONSE +08:45:32 Received From : +08:45:32 ============================================================================ +08:45:32 FNo. Len. Field Value +08:45:32 ============================================================================ +08:45:32 [ 1] [ 4] [0810] +08:45:32 [ 7] [ 10] [0320014532] +08:45:32 [ 11] [ 6] [806920] +08:45:32 [ 15] [ 4] [0320] +08:45:32 [ 37] [ 12] [57908806920] +08:45:32 [ 39] [ 2] [00] +08:45:32 [ 70] [ 3] [001] +08:45:32 ============================================================================ +08:45:32 Sending to : +08:45:32 ============================================================================ +08:45:32 + + +waiting on router queue for slot.... +08:45:32 ============================================================================ +08:45:32 Slot Id : <38> +08:45:32 Transaction Type : REQUEST +08:45:32 Received From : +08:45:32 ============================================================================ +08:45:32 FNo. Len. Field Value +08:45:32 ============================================================================ +08:45:32 [ 1] [ 4] [0800] +08:45:32 [ 7] [ 10] [0320014439] +08:45:32 [ 11] [ 6] [155477] +08:45:32 [ 70] [ 3] [301] +08:45:32 ============================================================================ +08:45:32 + + +waiting on router queue for slot.... +08:45:32 Sending to : +08:45:32 ============================================================================ +08:45:32 ============================================================================ +08:45:32 Slot Id : <38> +08:45:32 Transaction Type : RESPONSE +08:45:32 Received From : +08:45:32 ============================================================================ +08:45:32 FNo. Len. Field Value +08:45:32 ============================================================================ +08:45:32 [ 1] [ 4] [0810] +08:45:32 [ 7] [ 10] [0320014439] +08:45:32 [ 11] [ 6] [155477] +08:45:32 [ 39] [ 2] [00] +08:45:32 [ 70] [ 3] [301] +08:45:32 ============================================================================ +08:45:32 Calculate Source COMM Id = 2 +08:45:32 ============================================================================ +08:45:32 + + +waiting on router queue for slot.... +08:45:41 ============================================================================ +08:45:41 Slot Id : <73> +08:45:41 Transaction Type : REQUEST +08:45:41 Received From : +08:45:41 ============================================================================ +08:45:41 FNo. Len. Field Value +08:45:41 ============================================================================ +08:45:41 [ 1] [ 4] [0200] +08:45:41 [ 2] [ 16] [6213545000391742] +08:45:41 [ 3] [ 6] [300000] +08:45:41 [ 4] [ 12] [000000000000] +08:45:41 [ 7] [ 10] [0320084332] +08:45:41 [ 11] [ 6] [933688] +08:45:41 [ 12] [ 6] [084332] +08:45:41 [ 13] [ 4] [0320] +08:45:41 [ 15] [ 4] [0320] +08:45:41 [ 18] [ 4] [6011] +08:45:41 [ 19] [ 3] [418] +08:45:41 [ 22] [ 3] [021] +08:45:41 [ 25] [ 2] [01] +08:45:41 [ 28] [ 9] [D00000000] +08:45:41 [ 32] [ 6] [668899] +08:45:41 [ 35] [ 32] [6213545000391742=491212019174427] +08:45:41 [ 37] [ 12] [507900906184] +08:45:41 [ 41] [ 8] [03016001] +08:45:41 [ 42] [ 15] [APT ] +08:45:41 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:45:41 [ 49] [ 3] [418] +08:45:41 [ 52] [ 16] [40F920712F90566C] +08:45:41 ============================================================================ +08:45:41 + + +waiting on router queue for slot.... +08:45:41 Sending to : +08:45:41 ============================================================================ +08:45:41 Sending to : +08:45:41 ============================================================================ +08:45:41 ============================================================================ +08:45:41 Slot Id : <73> +08:45:41 Transaction Type : REQUEST +08:45:41 Received From : +08:45:41 ============================================================================ +08:45:41 FNo. Len. Field Value +08:45:41 ============================================================================ +08:45:41 [ 1] [ 4] [0200] +08:45:41 [ 2] [ 16] [6213545000391742] +08:45:41 [ 3] [ 6] [300000] +08:45:41 [ 4] [ 12] [000000000000] +08:45:41 [ 7] [ 10] [0320084332] +08:45:41 [ 11] [ 6] [933688] +08:45:41 [ 12] [ 6] [084332] +08:45:41 [ 13] [ 4] [0320] +08:45:41 [ 15] [ 4] [0320] +08:45:41 [ 18] [ 4] [6011] +08:45:41 [ 19] [ 3] [418] +08:45:41 [ 22] [ 3] [021] +08:45:41 [ 25] [ 2] [01] +08:45:41 [ 28] [ 9] [D00000000] +08:45:41 [ 32] [ 6] [668899] +08:45:41 [ 35] [ 32] [6213545000391742=491212019174427] +08:45:41 [ 37] [ 12] [507900906184] +08:45:41 [ 41] [ 8] [03016001] +08:45:41 [ 42] [ 15] [APT ] +08:45:41 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:45:41 [ 49] [ 3] [418] +08:45:41 [ 52] [ 16] [40F920712F90566C] +08:45:41 ============================================================================ +08:45:41 + + +waiting on router queue for slot.... +08:45:41 Sending to : +08:45:41 ============================================================================ +08:45:41 ============================================================================ +08:45:41 Slot Id : <73> +08:45:41 Transaction Type : REQUEST +08:45:41 Received From : +08:45:41 ============================================================================ +08:45:41 FNo. Len. Field Value +08:45:41 ============================================================================ +08:45:41 [ 1] [ 4] [0200] +08:45:41 [ 2] [ 16] [6213545000391742] +08:45:41 [ 3] [ 6] [300000] +08:45:41 [ 4] [ 12] [000000000000] +08:45:41 [ 7] [ 10] [0320084332] +08:45:41 [ 11] [ 6] [933688] +08:45:41 [ 12] [ 6] [084332] +08:45:41 [ 13] [ 4] [0320] +08:45:41 [ 15] [ 4] [0320] +08:45:41 [ 18] [ 4] [6011] +08:45:41 [ 19] [ 3] [418] +08:45:41 [ 22] [ 3] [021] +08:45:41 [ 25] [ 2] [01] +08:45:41 [ 28] [ 9] [D00000000] +08:45:41 [ 32] [ 6] [668899] +08:45:41 [ 35] [ 32] [6213545000391742=491212019174427] +08:45:41 [ 37] [ 12] [507900906184] +08:45:41 [ 41] [ 8] [03016001] +08:45:41 [ 42] [ 15] [APT ] +08:45:41 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:45:41 [ 49] [ 3] [418] +08:45:41 [ 52] [ 16] [201CCE29D8AC5FCF] +08:45:41 ============================================================================ +08:45:41 + + +waiting on router queue for slot.... +08:45:41 Sending to : <0> +08:45:41 ============================================================================ +08:45:41 ============================================================================ +08:45:41 Slot Id : <73> +08:45:41 Transaction Type : RESPONSE +08:45:41 Received From : +08:45:41 ============================================================================ +08:45:41 FNo. Len. Field Value +08:45:41 ============================================================================ +08:45:41 [ 1] [ 4] [0210] +08:45:41 [ 2] [ 16] [6213545000391742] +08:45:41 [ 3] [ 6] [300000] +08:45:41 [ 4] [ 12] [000000000000] +08:45:41 [ 7] [ 10] [0320084332] +08:45:41 [ 11] [ 6] [933688] +08:45:41 [ 12] [ 6] [084332] +08:45:41 [ 13] [ 4] [0320] +08:45:41 [ 15] [ 4] [0320] +08:45:41 [ 18] [ 4] [6011] +08:45:41 [ 19] [ 3] [418] +08:45:41 [ 32] [ 6] [668899] +08:45:41 [ 35] [ 32] [6213545000391742=491212019174427] +08:45:41 [ 37] [ 12] [507900906184] +08:45:41 [ 38] [ 6] [768344] +08:45:41 [ 39] [ 2] [00] +08:45:41 [ 41] [ 8] [03016001] +08:45:41 [ 49] [ 3] [418] +08:45:41 [ 54] [ 40] [0001418C0001553229620002418C000155322962] +08:45:41 ============================================================================ +08:45:41 Sending to : +08:45:41 ============================================================================ +08:45:41 + + +waiting on router queue for slot.... +08:45:43 ============================================================================ +08:45:43 Slot Id : <73> +08:45:43 Transaction Type : RESPONSE +08:45:43 Received From : +08:45:43 ============================================================================ +08:45:43 FNo. Len. Field Value +08:45:43 ============================================================================ +08:45:43 [ 1] [ 4] [0210] +08:45:43 [ 2] [ 16] [6213545000391742] +08:45:43 [ 3] [ 6] [300000] +08:45:43 [ 4] [ 12] [000000000000] +08:45:43 [ 7] [ 10] [0320084332] +08:45:43 [ 11] [ 6] [933688] +08:45:43 [ 12] [ 6] [084332] +08:45:43 [ 13] [ 4] [0320] +08:45:43 [ 15] [ 4] [0320] +08:45:43 [ 18] [ 4] [6011] +08:45:43 [ 19] [ 3] [418] +08:45:43 [ 32] [ 6] [668899] +08:45:43 [ 35] [ 32] [6213545000391742=491212019174427] +08:45:43 [ 37] [ 12] [507900906184] +08:45:43 [ 38] [ 6] [768344] +08:45:43 [ 39] [ 2] [00] +08:45:43 [ 41] [ 8] [03016001] +08:45:43 [ 49] [ 3] [418] +08:45:43 [ 54] [ 40] [0001418C0001553229620002418C000155322962] +08:45:43 ============================================================================ +08:45:43 Calculate Source COMM Id = 4 +08:45:43 ============================================================================ +08:45:43 + + +waiting on router queue for slot.... +08:45:44 ============================================================================ +08:45:44 Slot Id : <27> +08:45:44 Transaction Type : REQUEST +08:45:44 Received From : +08:45:44 ============================================================================ +08:45:44 FNo. Len. Field Value +08:45:44 ============================================================================ +08:45:44 [ 1] [ 4] [0200] +08:45:44 [ 2] [ 16] [1808930200011443] +08:45:44 [ 3] [ 6] [011000] +08:45:44 [ 4] [ 12] [000050000000] +08:45:44 [ 7] [ 10] [0320084540] +08:45:44 [ 11] [ 6] [688497] +08:45:44 [ 12] [ 6] [084540] +08:45:44 [ 13] [ 4] [0320] +08:45:44 [ 15] [ 4] [0320] +08:45:44 [ 18] [ 4] [6011] +08:45:44 [ 22] [ 3] [900] +08:45:44 [ 25] [ 2] [02] +08:45:44 [ 28] [ 9] [D00002000] +08:45:44 [ 32] [ 6] [621354] +08:45:44 [ 35] [ 27] [1808930200011443=1803500591] +08:45:44 [ 37] [ 12] [507902826598] +08:45:44 [ 41] [ 8] [01007600] +08:45:44 [ 42] [ 15] [NATIVE ] +08:45:44 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +08:45:44 [ 49] [ 3] [418] +08:45:44 [ 52] [ 16] [935CA2FBD8657BEF] +08:45:44 ============================================================================ +08:45:44 + + +waiting on router queue for slot.... +08:45:44 Sending to : +08:45:44 ============================================================================ +08:45:44 Sending to : +08:45:44 ============================================================================ +08:45:44 ============================================================================ +08:45:44 Slot Id : <27> +08:45:44 Transaction Type : REQUEST +08:45:44 Received From : +08:45:44 ============================================================================ +08:45:44 FNo. Len. Field Value +08:45:44 ============================================================================ +08:45:44 [ 1] [ 4] [0200] +08:45:44 [ 2] [ 16] [1808930200011443] +08:45:44 [ 3] [ 6] [011000] +08:45:44 [ 4] [ 12] [000050000000] +08:45:44 [ 7] [ 10] [0320084540] +08:45:44 [ 11] [ 6] [688497] +08:45:44 [ 12] [ 6] [084540] +08:45:44 [ 13] [ 4] [0320] +08:45:44 [ 15] [ 4] [0320] +08:45:44 [ 18] [ 4] [6011] +08:45:44 [ 22] [ 3] [900] +08:45:44 [ 25] [ 2] [02] +08:45:44 [ 28] [ 9] [D00002000] +08:45:44 [ 32] [ 6] [621354] +08:45:44 [ 35] [ 27] [1808930200011443=1803500591] +08:45:44 [ 37] [ 12] [507902826598] +08:45:44 [ 41] [ 8] [01007600] +08:45:44 [ 42] [ 15] [NATIVE ] +08:45:44 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +08:45:44 [ 49] [ 3] [418] +08:45:44 [ 52] [ 16] [935CA2FBD8657BEF] +08:45:44 ============================================================================ +08:45:44 + + +waiting on router queue for slot.... +08:45:44 Sending to : +08:45:44 ============================================================================ +08:45:44 ============================================================================ +08:45:44 Slot Id : <27> +08:45:44 Transaction Type : REQUEST +08:45:44 Received From : +08:45:44 ============================================================================ +08:45:44 FNo. Len. Field Value +08:45:44 ============================================================================ +08:45:44 [ 1] [ 4] [0200] +08:45:44 [ 2] [ 16] [1808930200011443] +08:45:44 [ 3] [ 6] [011000] +08:45:44 [ 4] [ 12] [000050000000] +08:45:44 [ 7] [ 10] [0320084540] +08:45:44 [ 11] [ 6] [688497] +08:45:44 [ 12] [ 6] [084540] +08:45:44 [ 13] [ 4] [0320] +08:45:44 [ 15] [ 4] [0320] +08:45:44 [ 18] [ 4] [6011] +08:45:44 [ 22] [ 3] [900] +08:45:44 [ 25] [ 2] [02] +08:45:44 [ 28] [ 9] [D00002000] +08:45:44 [ 32] [ 6] [621354] +08:45:44 [ 35] [ 27] [1808930200011443=1803500591] +08:45:44 [ 37] [ 12] [507902826598] +08:45:44 [ 41] [ 8] [01007600] +08:45:44 [ 42] [ 15] [NATIVE ] +08:45:44 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +08:45:44 [ 49] [ 3] [418] +08:45:44 [ 52] [ 16] [AD25434C25365DC3] +08:45:44 ============================================================================ +08:45:44 + + +waiting on router queue for slot.... +08:45:44 Sending to : <2> +08:45:44 ============================================================================ +08:45:49 ============================================================================ +08:45:49 Slot Id : <27> +08:45:49 Transaction Type : RESPONSE +08:45:49 Received From : +08:45:49 ============================================================================ +08:45:49 FNo. Len. Field Value +08:45:49 ============================================================================ +08:45:49 [ 1] [ 4] [0210] +08:45:49 [ 2] [ 16] [1808930200011443] +08:45:49 [ 3] [ 6] [011000] +08:45:49 [ 4] [ 12] [000050000000] +08:45:49 [ 6] [ 12] [000050000000] +08:45:49 [ 7] [ 10] [0320084540] +08:45:49 [ 11] [ 6] [688497] +08:45:49 [ 12] [ 6] [084540] +08:45:49 [ 13] [ 4] [0320] +08:45:49 [ 18] [ 4] [6011] +08:45:49 [ 19] [ 3] [418] +08:45:49 [ 22] [ 3] [021] +08:45:49 [ 32] [ 6] [621354] +08:45:49 [ 35] [ 27] [1808930200011443=1803500591] +08:45:49 [ 37] [ 12] [507902826598] +08:45:49 [ 38] [ 6] [688497] +08:45:49 [ 39] [ 2] [00] +08:45:49 [ 41] [ 8] [01007600] +08:45:49 [ 49] [ 3] [418] +08:45:49 [ 52] [ 16] [AD25434C25365DC3] +08:45:49 [ 54] [ 20] [1001418C000899401600] +08:45:49 ============================================================================ +08:45:49 Sending to : +08:45:49 ============================================================================ +08:45:49 + + +waiting on router queue for slot.... +08:45:50 ============================================================================ +08:45:50 Slot Id : <27> +08:45:50 Transaction Type : RESPONSE +08:45:50 Received From : +08:45:50 ============================================================================ +08:45:50 FNo. Len. Field Value +08:45:50 ============================================================================ +08:45:50 [ 1] [ 4] [0210] +08:45:50 [ 2] [ 16] [1808930200011443] +08:45:50 [ 3] [ 6] [011000] +08:45:50 [ 4] [ 12] [000050000000] +08:45:50 [ 6] [ 12] [000050000000] +08:45:50 [ 7] [ 10] [0320084540] +08:45:50 [ 11] [ 6] [688497] +08:45:50 [ 12] [ 6] [084540] +08:45:50 [ 13] [ 4] [0320] +08:45:50 [ 18] [ 4] [6011] +08:45:50 [ 19] [ 3] [418] +08:45:50 [ 22] [ 3] [021] +08:45:50 [ 32] [ 6] [621354] +08:45:50 [ 35] [ 27] [1808930200011443=1803500591] +08:45:50 [ 37] [ 12] [507902826598] +08:45:50 [ 38] [ 6] [688497] +08:45:50 [ 39] [ 2] [00] +08:45:50 [ 41] [ 8] [01007600] +08:45:50 [ 49] [ 3] [418] +08:45:50 [ 52] [ 16] [AD25434C25365DC3] +08:45:50 [ 54] [ 20] [1001418C000899401600] +08:45:50 ============================================================================ +08:45:50 Calculate Source COMM Id = 0 +08:45:50 ============================================================================ +08:45:50 + + +waiting on router queue for slot.... +08:45:58 ============================================================================ +08:45:58 Slot Id : <32> +08:45:58 Transaction Type : REQUEST +08:45:58 Received From : +08:45:58 ============================================================================ +08:45:58 FNo. Len. Field Value +08:45:58 ============================================================================ +08:45:58 [ 1] [ 4] [0800] +08:45:58 [ 7] [ 10] [0320014506] +08:45:58 [ 11] [ 6] [155478] +08:45:58 [ 70] [ 3] [301] +08:45:58 ============================================================================ +08:45:58 + + +waiting on router queue for slot.... +08:45:58 Sending to : +08:45:58 ============================================================================ +08:45:58 ============================================================================ +08:45:58 Slot Id : <32> +08:45:58 Transaction Type : RESPONSE +08:45:58 Received From : +08:45:58 ============================================================================ +08:45:58 FNo. Len. Field Value +08:45:58 ============================================================================ +08:45:58 [ 1] [ 4] [0810] +08:45:58 [ 7] [ 10] [0320014506] +08:45:58 [ 11] [ 6] [155478] +08:45:58 [ 39] [ 2] [00] +08:45:58 [ 70] [ 3] [301] +08:45:58 ============================================================================ +08:45:58 Calculate Source COMM Id = 2 +08:45:58 ============================================================================ +08:45:58 + + +waiting on router queue for slot.... +08:46:08 ============================================================================ +08:46:08 Slot Id : <487> +08:46:08 Transaction Type : REQUEST +08:46:08 Received From : +08:46:08 ============================================================================ +08:46:08 FNo. Len. Field Value +08:46:08 ============================================================================ +08:46:08 [ 1] [ 4] [0800] +08:46:08 [ 7] [ 10] [0320014516] +08:46:08 [ 11] [ 6] [155479] +08:46:08 [ 70] [ 3] [301] +08:46:08 ============================================================================ +08:46:08 + + +waiting on router queue for slot.... +08:46:08 Sending to : +08:46:08 ============================================================================ +08:46:08 ============================================================================ +08:46:08 Slot Id : <487> +08:46:08 Transaction Type : RESPONSE +08:46:08 Received From : +08:46:08 ============================================================================ +08:46:08 FNo. Len. Field Value +08:46:08 ============================================================================ +08:46:08 [ 1] [ 4] [0810] +08:46:08 [ 7] [ 10] [0320014516] +08:46:08 [ 11] [ 6] [155479] +08:46:08 [ 39] [ 2] [00] +08:46:08 [ 70] [ 3] [301] +08:46:08 ============================================================================ +08:46:08 Calculate Source COMM Id = 2 +08:46:08 ============================================================================ +08:46:08 + + +waiting on router queue for slot.... +08:46:21 ============================================================================ +08:46:21 Slot Id : <20> +08:46:21 Transaction Type : REQUEST +08:46:21 Received From : +08:46:21 ============================================================================ +08:46:21 FNo. Len. Field Value +08:46:21 ============================================================================ +08:46:21 [ 1] [ 4] [0800] +08:46:21 [ 7] [ 10] [0320014412] +08:46:21 [ 11] [ 6] [086567] +08:46:21 [ 37] [ 12] [57908086567] +08:46:21 [ 70] [ 3] [301] +08:46:21 ============================================================================ +08:46:21 + + +waiting on router queue for slot.... +08:46:21 Sending to : +08:46:21 ============================================================================ +08:46:21 ============================================================================ +08:46:21 Slot Id : <20> +08:46:21 Transaction Type : RESPONSE +08:46:21 Received From : +08:46:21 ============================================================================ +08:46:21 FNo. Len. Field Value +08:46:21 ============================================================================ +08:46:21 [ 1] [ 4] [0810] +08:46:21 [ 7] [ 10] [0320014412] +08:46:21 [ 11] [ 6] [086567] +08:46:21 [ 37] [ 12] [579080865670] +08:46:21 [ 39] [ 2] [00] +08:46:21 [ 70] [ 3] [810] +08:46:21 ============================================================================ +08:46:21 Calculate Source COMM Id = 4 +08:46:21 ============================================================================ +08:46:21 + + +waiting on router queue for slot.... +08:46:21 ============================================================================ +08:46:21 Slot Id : <26> +08:46:21 Transaction Type : REQUEST +08:46:21 Received From : +08:46:21 ============================================================================ +08:46:21 FNo. Len. Field Value +08:46:21 ============================================================================ +08:46:21 [ 1] [ 4] [0200] +08:46:21 [ 2] [ 16] [6213545000391742] +08:46:21 [ 3] [ 6] [302000] +08:46:21 [ 4] [ 12] [000000000000] +08:46:21 [ 7] [ 10] [0320084413] +08:46:21 [ 11] [ 6] [933719] +08:46:21 [ 12] [ 6] [084413] +08:46:21 [ 13] [ 4] [0320] +08:46:21 [ 15] [ 4] [0320] +08:46:21 [ 18] [ 4] [6011] +08:46:21 [ 19] [ 3] [418] +08:46:21 [ 22] [ 3] [021] +08:46:21 [ 25] [ 2] [01] +08:46:21 [ 28] [ 9] [D00000000] +08:46:21 [ 32] [ 6] [668899] +08:46:21 [ 35] [ 32] [6213545000391742=491212019174427] +08:46:21 [ 37] [ 12] [507900906186] +08:46:21 [ 41] [ 8] [03016001] +08:46:21 [ 42] [ 15] [APT ] +08:46:21 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:46:21 [ 49] [ 3] [418] +08:46:21 [ 52] [ 16] [40F920712F90566C] +08:46:21 ============================================================================ +08:46:21 + + +waiting on router queue for slot.... +08:46:21 Sending to : +08:46:21 ============================================================================ +08:46:21 Sending to : +08:46:21 ============================================================================ +08:46:22 ============================================================================ +08:46:22 Slot Id : <26> +08:46:22 Transaction Type : REQUEST +08:46:22 Received From : +08:46:22 ============================================================================ +08:46:22 FNo. Len. Field Value +08:46:22 ============================================================================ +08:46:22 [ 1] [ 4] [0200] +08:46:22 [ 2] [ 16] [6213545000391742] +08:46:22 [ 3] [ 6] [302000] +08:46:22 [ 4] [ 12] [000000000000] +08:46:22 [ 7] [ 10] [0320084413] +08:46:22 [ 11] [ 6] [933719] +08:46:22 [ 12] [ 6] [084413] +08:46:22 [ 13] [ 4] [0320] +08:46:22 [ 15] [ 4] [0320] +08:46:22 [ 18] [ 4] [6011] +08:46:22 [ 19] [ 3] [418] +08:46:22 [ 22] [ 3] [021] +08:46:22 [ 25] [ 2] [01] +08:46:22 [ 28] [ 9] [D00000000] +08:46:22 [ 32] [ 6] [668899] +08:46:22 [ 35] [ 32] [6213545000391742=491212019174427] +08:46:22 [ 37] [ 12] [507900906186] +08:46:22 [ 41] [ 8] [03016001] +08:46:22 [ 42] [ 15] [APT ] +08:46:22 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:46:22 [ 49] [ 3] [418] +08:46:22 [ 52] [ 16] [40F920712F90566C] +08:46:22 ============================================================================ +08:46:22 + + +waiting on router queue for slot.... +08:46:22 Sending to : +08:46:22 ============================================================================ +08:46:22 ============================================================================ +08:46:22 Slot Id : <26> +08:46:22 Transaction Type : REQUEST +08:46:22 Received From : +08:46:22 ============================================================================ +08:46:22 FNo. Len. Field Value +08:46:22 ============================================================================ +08:46:22 [ 1] [ 4] [0200] +08:46:22 [ 2] [ 16] [6213545000391742] +08:46:22 [ 3] [ 6] [302000] +08:46:22 [ 4] [ 12] [000000000000] +08:46:22 [ 7] [ 10] [0320084413] +08:46:22 [ 11] [ 6] [933719] +08:46:22 [ 12] [ 6] [084413] +08:46:22 [ 13] [ 4] [0320] +08:46:22 [ 15] [ 4] [0320] +08:46:22 [ 18] [ 4] [6011] +08:46:22 [ 19] [ 3] [418] +08:46:22 [ 22] [ 3] [021] +08:46:22 [ 25] [ 2] [01] +08:46:22 [ 28] [ 9] [D00000000] +08:46:22 [ 32] [ 6] [668899] +08:46:22 [ 35] [ 32] [6213545000391742=491212019174427] +08:46:22 [ 37] [ 12] [507900906186] +08:46:22 [ 41] [ 8] [03016001] +08:46:22 [ 42] [ 15] [APT ] +08:46:22 [ 43] [ 40] [ SARAVANH BR OFFICE SARAVA] +08:46:22 [ 49] [ 3] [418] +08:46:22 [ 52] [ 16] [201CCE29D8AC5FCF] +08:46:22 ============================================================================ +08:46:22 + + +waiting on router queue for slot.... +08:46:22 Sending to : <0> +08:46:22 ============================================================================ +08:46:22 ============================================================================ +08:46:22 Slot Id : <26> +08:46:22 Transaction Type : RESPONSE +08:46:22 Received From : +08:46:22 ============================================================================ +08:46:22 FNo. Len. Field Value +08:46:22 ============================================================================ +08:46:22 [ 1] [ 4] [0210] +08:46:22 [ 2] [ 16] [6213545000391742] +08:46:22 [ 3] [ 6] [302000] +08:46:22 [ 4] [ 12] [000000000000] +08:46:22 [ 7] [ 10] [0320084413] +08:46:22 [ 11] [ 6] [933719] +08:46:22 [ 12] [ 6] [084413] +08:46:22 [ 13] [ 4] [0320] +08:46:22 [ 15] [ 4] [0320] +08:46:22 [ 18] [ 4] [6011] +08:46:22 [ 19] [ 3] [418] +08:46:22 [ 32] [ 6] [668899] +08:46:22 [ 35] [ 32] [6213545000391742=491212019174427] +08:46:22 [ 37] [ 12] [507900906186] +08:46:22 [ 38] [ 6] [429084] +08:46:22 [ 39] [ 2] [00] +08:46:22 [ 41] [ 8] [03016001] +08:46:22 [ 49] [ 3] [418] +08:46:22 [ 54] [ 40] [2001418C0001553229622002418C000155322962] +08:46:22 ============================================================================ +08:46:22 Sending to : +08:46:22 ============================================================================ +08:46:22 + + +waiting on router queue for slot.... +08:46:24 ============================================================================ +08:46:24 Slot Id : <48> +08:46:24 Transaction Type : REQUEST +08:46:24 Received From : +08:46:24 ============================================================================ +08:46:24 FNo. Len. Field Value +08:46:24 ============================================================================ +08:46:24 [ 1] [ 4] [0800] +08:46:24 [ 7] [ 10] [0320014532] +08:46:24 [ 11] [ 6] [155480] +08:46:24 [ 70] [ 3] [301] +08:46:24 ============================================================================ +08:46:24 + + +waiting on router queue for slot.... +08:46:24 Sending to : +08:46:24 ============================================================================ +08:46:24 ============================================================================ +08:46:24 Slot Id : <48> +08:46:24 Transaction Type : RESPONSE +08:46:24 Received From : +08:46:24 ============================================================================ +08:46:24 FNo. Len. Field Value +08:46:24 ============================================================================ +08:46:24 [ 1] [ 4] [0810] +08:46:24 [ 7] [ 10] [0320014532] +08:46:24 [ 11] [ 6] [155480] +08:46:24 [ 39] [ 2] [00] +08:46:24 [ 70] [ 3] [301] +08:46:24 ============================================================================ +08:46:24 Calculate Source COMM Id = 2 +08:46:24 ============================================================================ +08:46:24 + + +waiting on router queue for slot.... +08:46:24 ============================================================================ +08:46:24 Slot Id : <26> +08:46:24 Transaction Type : RESPONSE +08:46:24 Received From : +08:46:24 ============================================================================ +08:46:24 FNo. Len. Field Value +08:46:24 ============================================================================ +08:46:24 [ 1] [ 4] [0210] +08:46:24 [ 2] [ 16] [6213545000391742] +08:46:24 [ 3] [ 6] [302000] +08:46:24 [ 4] [ 12] [000000000000] +08:46:24 [ 7] [ 10] [0320084413] +08:46:24 [ 11] [ 6] [933719] +08:46:24 [ 12] [ 6] [084413] +08:46:24 [ 13] [ 4] [0320] +08:46:24 [ 15] [ 4] [0320] +08:46:24 [ 18] [ 4] [6011] +08:46:24 [ 19] [ 3] [418] +08:46:24 [ 32] [ 6] [668899] +08:46:24 [ 35] [ 32] [6213545000391742=491212019174427] +08:46:24 [ 37] [ 12] [507900906186] +08:46:24 [ 38] [ 6] [429084] +08:46:24 [ 39] [ 2] [00] +08:46:24 [ 41] [ 8] [03016001] +08:46:24 [ 49] [ 3] [418] +08:46:24 [ 54] [ 40] [2001418C0001553229622002418C000155322962] +08:46:24 ============================================================================ +08:46:24 Calculate Source COMM Id = 4 +08:46:24 ============================================================================ +08:46:24 + + +waiting on router queue for slot.... +08:46:26 ============================================================================ +08:46:26 Slot Id : <46> +08:46:26 Transaction Type : REQUEST +08:46:26 Received From : +08:46:26 ============================================================================ +08:46:26 FNo. Len. Field Value +08:46:26 ============================================================================ +08:46:26 [ 1] [ 4] [0200] +08:46:26 [ 2] [ 16] [8888884000052859] +08:46:26 [ 3] [ 6] [310000] +08:46:26 [ 4] [ 12] [000000000000] +08:46:26 [ 7] [ 10] [0320085413] +08:46:26 [ 11] [ 6] [177316] +08:46:26 [ 12] [ 6] [085413] +08:46:26 [ 13] [ 4] [0320] +08:46:26 [ 14] [ 4] [4912] +08:46:26 [ 15] [ 4] [0320] +08:46:26 [ 18] [ 4] [6011] +08:46:26 [ 22] [ 3] [900] +08:46:26 [ 25] [ 2] [02] +08:46:26 [ 28] [ 9] [000000000] +08:46:26 [ 32] [ 6] [220699] +08:46:26 [ 35] [ 32] [8888884000052859=491299915285660] +08:46:26 [ 37] [ 12] [507900010194] +08:46:26 [ 41] [ 8] [01000100] +08:46:26 [ 42] [ 15] [APTRA ] +08:46:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:46:26 [ 49] [ 3] [418] +08:46:26 [ 52] [ 16] [343D283D2DD1A889] +08:46:26 ============================================================================ +08:46:26 + + +waiting on router queue for slot.... +08:46:26 Sending to : +08:46:26 ============================================================================ +08:46:26 Sending to : +08:46:26 ============================================================================ +08:46:26 ============================================================================ +08:46:26 Slot Id : <46> +08:46:26 Transaction Type : REQUEST +08:46:26 Received From : +08:46:26 ============================================================================ +08:46:26 FNo. Len. Field Value +08:46:26 ============================================================================ +08:46:26 [ 1] [ 4] [0200] +08:46:26 [ 2] [ 16] [8888884000052859] +08:46:26 [ 3] [ 6] [310000] +08:46:26 [ 4] [ 12] [000000000000] +08:46:26 [ 7] [ 10] [0320085413] +08:46:26 [ 11] [ 6] [177316] +08:46:26 [ 12] [ 6] [085413] +08:46:26 [ 13] [ 4] [0320] +08:46:26 [ 14] [ 4] [4912] +08:46:26 [ 15] [ 4] [0320] +08:46:26 [ 18] [ 4] [6011] +08:46:26 [ 22] [ 3] [900] +08:46:26 [ 25] [ 2] [02] +08:46:26 [ 28] [ 9] [000000000] +08:46:26 [ 32] [ 6] [220699] +08:46:26 [ 35] [ 32] [8888884000052859=491299915285660] +08:46:26 [ 37] [ 12] [507900010194] +08:46:26 [ 41] [ 8] [01000100] +08:46:26 [ 42] [ 15] [APTRA ] +08:46:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:46:26 [ 49] [ 3] [418] +08:46:26 [ 52] [ 16] [343D283D2DD1A889] +08:46:26 ============================================================================ +08:46:26 + + +waiting on router queue for slot.... +08:46:26 Sending to : +08:46:26 ============================================================================ +08:46:26 ============================================================================ +08:46:26 Slot Id : <46> +08:46:26 Transaction Type : REQUEST +08:46:26 Received From : +08:46:26 ============================================================================ +08:46:26 FNo. Len. Field Value +08:46:26 ============================================================================ +08:46:26 [ 1] [ 4] [0200] +08:46:26 [ 2] [ 16] [8888884000052859] +08:46:26 [ 3] [ 6] [310000] +08:46:26 [ 4] [ 12] [000000000000] +08:46:26 [ 7] [ 10] [0320085413] +08:46:26 [ 11] [ 6] [177316] +08:46:26 [ 12] [ 6] [085413] +08:46:26 [ 13] [ 4] [0320] +08:46:26 [ 14] [ 4] [4912] +08:46:26 [ 15] [ 4] [0320] +08:46:26 [ 18] [ 4] [6011] +08:46:26 [ 22] [ 3] [900] +08:46:26 [ 25] [ 2] [02] +08:46:26 [ 28] [ 9] [000000000] +08:46:26 [ 32] [ 6] [220699] +08:46:26 [ 35] [ 32] [8888884000052859=491299915285660] +08:46:26 [ 37] [ 12] [507900010194] +08:46:26 [ 41] [ 8] [01000100] +08:46:26 [ 42] [ 15] [APTRA ] +08:46:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:46:26 [ 49] [ 3] [418] +08:46:26 [ 52] [ 16] [A451FCB6071240FA] +08:46:26 ============================================================================ +08:46:26 + + +waiting on router queue for slot.... +08:46:26 Sending to : <0> +08:46:26 ============================================================================ +08:46:27 ============================================================================ +08:46:27 Slot Id : <46> +08:46:27 Transaction Type : RESPONSE +08:46:27 Received From : +08:46:27 ============================================================================ +08:46:27 FNo. Len. Field Value +08:46:27 ============================================================================ +08:46:27 [ 1] [ 4] [0210] +08:46:27 [ 2] [ 16] [8888884000052859] +08:46:27 [ 3] [ 6] [310000] +08:46:27 [ 4] [ 12] [000000000000] +08:46:27 [ 7] [ 10] [0320085413] +08:46:27 [ 11] [ 6] [177316] +08:46:27 [ 12] [ 6] [085413] +08:46:27 [ 13] [ 4] [0320] +08:46:27 [ 15] [ 4] [0320] +08:46:27 [ 18] [ 4] [6011] +08:46:27 [ 32] [ 6] [220699] +08:46:27 [ 35] [ 32] [8888884000052859=491299915285660] +08:46:27 [ 37] [ 12] [507900010194] +08:46:27 [ 38] [ 6] [605885] +08:46:27 [ 39] [ 2] [00] +08:46:27 [ 41] [ 8] [01000100] +08:46:27 [ 49] [ 3] [418] +08:46:27 [ 54] [ 40] [0001418C0018168033910002418C001816803391] +08:46:27 ============================================================================ +08:46:27 Sending to : +08:46:27 ============================================================================ +08:46:27 + + +waiting on router queue for slot.... +08:46:29 ============================================================================ +08:46:29 Slot Id : <46> +08:46:29 Transaction Type : RESPONSE +08:46:29 Received From : +08:46:29 ============================================================================ +08:46:29 FNo. Len. Field Value +08:46:29 ============================================================================ +08:46:29 [ 1] [ 4] [0210] +08:46:29 [ 2] [ 16] [8888884000052859] +08:46:29 [ 3] [ 6] [310000] +08:46:29 [ 4] [ 12] [000000000000] +08:46:29 [ 7] [ 10] [0320085413] +08:46:29 [ 11] [ 6] [177316] +08:46:29 [ 12] [ 6] [085413] +08:46:29 [ 13] [ 4] [0320] +08:46:29 [ 15] [ 4] [0320] +08:46:29 [ 18] [ 4] [6011] +08:46:29 [ 32] [ 6] [220699] +08:46:29 [ 35] [ 32] [8888884000052859=491299915285660] +08:46:29 [ 37] [ 12] [507900010194] +08:46:29 [ 38] [ 6] [605885] +08:46:29 [ 39] [ 2] [00] +08:46:29 [ 41] [ 8] [01000100] +08:46:29 [ 49] [ 3] [418] +08:46:29 [ 54] [ 40] [0001418C0018168033910002418C001816803391] +08:46:29 ============================================================================ +08:46:29 Calculate Source COMM Id = 1 +08:46:29 ============================================================================ +08:46:29 + + +waiting on router queue for slot.... +08:46:34 ============================================================================ +08:46:34 Slot Id : <19> +08:46:34 Transaction Type : REQUEST +08:46:34 Received From : +08:46:34 ============================================================================ +08:46:34 FNo. Len. Field Value +08:46:34 ============================================================================ +08:46:34 [ 1] [ 4] [0800] +08:46:34 [ 7] [ 10] [0320014542] +08:46:34 [ 11] [ 6] [155481] +08:46:34 [ 70] [ 3] [301] +08:46:34 ============================================================================ +08:46:34 + + +waiting on router queue for slot.... +08:46:34 Sending to : +08:46:34 ============================================================================ +08:46:34 ============================================================================ +08:46:34 Slot Id : <19> +08:46:34 Transaction Type : RESPONSE +08:46:34 Received From : +08:46:34 ============================================================================ +08:46:34 FNo. Len. Field Value +08:46:34 ============================================================================ +08:46:34 [ 1] [ 4] [0810] +08:46:34 [ 7] [ 10] [0320014542] +08:46:34 [ 11] [ 6] [155481] +08:46:34 [ 39] [ 2] [00] +08:46:34 [ 70] [ 3] [301] +08:46:34 ============================================================================ +08:46:34 Calculate Source COMM Id = 2 +08:46:34 ============================================================================ +08:46:34 + + +waiting on router queue for slot.... +08:46:34 ============================================================================ +08:46:34 Slot Id : <69> +08:46:34 Transaction Type : REQUEST +08:46:34 Received From : +08:46:34 ============================================================================ +08:46:34 FNo. Len. Field Value +08:46:34 ============================================================================ +08:46:34 [ 1] [ 4] [0800] +08:46:34 [ 2] [ 5] [02531] +08:46:34 [ 3] [ 6] [579088] +08:46:34 [ 7] [ 10] [0320014634] +08:46:34 [ 11] [ 6] [806921] +08:46:34 [ 15] [ 10] [0320014634] +08:46:34 [ 37] [ 11] [57908806921] +08:46:34 [ 70] [ 3] [001] +08:46:34 ============================================================================ +08:46:34 + + +waiting on router queue for slot.... +08:46:34 ============================================================================ +08:46:34 Slot Id : <69> +08:46:34 Transaction Type : RESPONSE +08:46:34 Received From : +08:46:34 ============================================================================ +08:46:34 FNo. Len. Field Value +08:46:34 ============================================================================ +08:46:34 [ 1] [ 4] [0810] +08:46:34 [ 7] [ 10] [0320014634] +08:46:34 [ 11] [ 6] [806921] +08:46:34 [ 15] [ 4] [0320] +08:46:34 [ 37] [ 12] [57908806921] +08:46:34 [ 39] [ 2] [00] +08:46:34 [ 70] [ 3] [001] +08:46:34 ============================================================================ +08:46:34 Sending to : +08:46:34 ============================================================================ +08:46:34 + + +waiting on router queue for slot.... +08:46:36 ============================================================================ +08:46:36 Slot Id : <58> +08:46:36 Transaction Type : REQUEST +08:46:36 Received From : +08:46:36 ============================================================================ +08:46:36 FNo. Len. Field Value +08:46:36 ============================================================================ +08:46:36 [ 1] [ 4] [0800] +08:46:36 [ 7] [ 10] [0320155825] +08:46:36 [ 11] [ 6] [085825] +08:46:36 [ 37] [ 12] [57908085825] +08:46:36 [ 70] [ 3] [301] +08:46:36 ============================================================================ +08:46:36 + + +waiting on router queue for slot.... +08:46:36 Sending to : +08:46:36 ============================================================================ +08:46:36 ============================================================================ +08:46:36 Slot Id : <58> +08:46:36 Transaction Type : RESPONSE +08:46:36 Received From : +08:46:36 ============================================================================ +08:46:36 FNo. Len. Field Value +08:46:36 ============================================================================ +08:46:36 [ 1] [ 4] [0810] +08:46:36 [ 7] [ 10] [0320155825] +08:46:36 [ 11] [ 6] [085825] +08:46:36 [ 37] [ 12] [579080858250] +08:46:36 [ 39] [ 2] [00] +08:46:36 [ 70] [ 3] [810] +08:46:36 ============================================================================ +08:46:36 Calculate Source COMM Id = 6 +08:46:36 ============================================================================ +08:46:36 + + +waiting on router queue for slot.... +08:46:41 ============================================================================ +08:46:41 Slot Id : <78> +08:46:41 Transaction Type : REQUEST +08:46:41 Received From : +08:46:41 ============================================================================ +08:46:41 FNo. Len. Field Value +08:46:41 ============================================================================ +08:46:41 [ 1] [ 4] [0200] +08:46:41 [ 2] [ 16] [1808930500014303] +08:46:41 [ 3] [ 6] [010000] +08:46:41 [ 4] [ 12] [000100000000] +08:46:41 [ 7] [ 10] [0320084433] +08:46:41 [ 11] [ 6] [933734] +08:46:41 [ 12] [ 6] [084433] +08:46:41 [ 13] [ 4] [0320] +08:46:41 [ 15] [ 4] [0320] +08:46:41 [ 18] [ 4] [6011] +08:46:41 [ 19] [ 3] [418] +08:46:41 [ 22] [ 3] [021] +08:46:41 [ 25] [ 2] [01] +08:46:41 [ 28] [ 9] [D00002000] +08:46:41 [ 32] [ 6] [668899] +08:46:41 [ 35] [ 27] [1808930500014303=1803500022] +08:46:41 [ 37] [ 12] [507900844823] +08:46:41 [ 41] [ 8] [03015003] +08:46:41 [ 42] [ 15] [APT ] +08:46:41 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:46:41 [ 49] [ 3] [418] +08:46:41 [ 52] [ 16] [10A73A561F4E1342] +08:46:41 ============================================================================ +08:46:41 + + +waiting on router queue for slot.... +08:46:41 Sending to : +08:46:41 ============================================================================ +08:46:41 Sending to : +08:46:41 ============================================================================ +08:46:41 ============================================================================ +08:46:41 Slot Id : <78> +08:46:41 Transaction Type : REQUEST +08:46:41 Received From : +08:46:41 ============================================================================ +08:46:41 FNo. Len. Field Value +08:46:41 ============================================================================ +08:46:41 [ 1] [ 4] [0200] +08:46:41 [ 2] [ 16] [1808930500014303] +08:46:41 [ 3] [ 6] [010000] +08:46:41 [ 4] [ 12] [000100000000] +08:46:41 [ 7] [ 10] [0320084433] +08:46:41 [ 11] [ 6] [933734] +08:46:41 [ 12] [ 6] [084433] +08:46:41 [ 13] [ 4] [0320] +08:46:41 [ 15] [ 4] [0320] +08:46:41 [ 18] [ 4] [6011] +08:46:41 [ 19] [ 3] [418] +08:46:41 [ 22] [ 3] [021] +08:46:41 [ 25] [ 2] [01] +08:46:41 [ 28] [ 9] [D00002000] +08:46:41 [ 32] [ 6] [668899] +08:46:41 [ 35] [ 27] [1808930500014303=1803500022] +08:46:41 [ 37] [ 12] [507900844823] +08:46:41 [ 41] [ 8] [03015003] +08:46:41 [ 42] [ 15] [APT ] +08:46:41 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:46:41 [ 49] [ 3] [418] +08:46:41 [ 52] [ 16] [10A73A561F4E1342] +08:46:41 ============================================================================ +08:46:41 + + +waiting on router queue for slot.... +08:46:41 Sending to : +08:46:41 ============================================================================ +08:46:41 ============================================================================ +08:46:41 Slot Id : <78> +08:46:41 Transaction Type : REQUEST +08:46:41 Received From : +08:46:41 ============================================================================ +08:46:41 FNo. Len. Field Value +08:46:41 ============================================================================ +08:46:41 [ 1] [ 4] [0200] +08:46:41 [ 2] [ 16] [1808930500014303] +08:46:41 [ 3] [ 6] [010000] +08:46:41 [ 4] [ 12] [000100000000] +08:46:41 [ 7] [ 10] [0320084433] +08:46:41 [ 11] [ 6] [933734] +08:46:41 [ 12] [ 6] [084433] +08:46:41 [ 13] [ 4] [0320] +08:46:41 [ 15] [ 4] [0320] +08:46:41 [ 18] [ 4] [6011] +08:46:41 [ 19] [ 3] [418] +08:46:41 [ 22] [ 3] [021] +08:46:41 [ 25] [ 2] [01] +08:46:41 [ 28] [ 9] [D00002000] +08:46:41 [ 32] [ 6] [668899] +08:46:41 [ 35] [ 27] [1808930500014303=1803500022] +08:46:41 [ 37] [ 12] [507900844823] +08:46:41 [ 41] [ 8] [03015003] +08:46:41 [ 42] [ 15] [APT ] +08:46:41 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:46:41 [ 49] [ 3] [418] +08:46:41 [ 52] [ 16] [A9C475A12153C244] +08:46:41 ============================================================================ +08:46:41 + + +waiting on router queue for slot.... +08:46:41 Sending to : <2> +08:46:41 ============================================================================ +08:46:43 ============================================================================ +08:46:43 Slot Id : <78> +08:46:43 Transaction Type : RESPONSE +08:46:43 Received From : +08:46:43 ============================================================================ +08:46:43 FNo. Len. Field Value +08:46:43 ============================================================================ +08:46:43 [ 1] [ 4] [0210] +08:46:43 [ 2] [ 16] [1808930500014303] +08:46:43 [ 3] [ 6] [010000] +08:46:43 [ 4] [ 12] [000100000000] +08:46:43 [ 6] [ 12] [000100000000] +08:46:43 [ 7] [ 10] [0320084433] +08:46:43 [ 11] [ 6] [933734] +08:46:43 [ 12] [ 6] [084433] +08:46:43 [ 13] [ 4] [0320] +08:46:43 [ 18] [ 4] [6011] +08:46:43 [ 19] [ 3] [418] +08:46:43 [ 22] [ 3] [021] +08:46:43 [ 28] [ 9] [D00002000] +08:46:43 [ 32] [ 6] [668899] +08:46:43 [ 35] [ 27] [1808930500014303=1803500022] +08:46:43 [ 37] [ 12] [507900844823] +08:46:43 [ 39] [ 2] [55] +08:46:43 [ 41] [ 8] [03015003] +08:46:43 [ 49] [ 3] [418] +08:46:43 [ 51] [ 3] [418] +08:46:43 [ 52] [ 16] [A9C475A12153C244] +08:46:43 ============================================================================ +08:46:43 Sending to : +08:46:43 ============================================================================ +08:46:43 + + +waiting on router queue for slot.... +08:46:45 ============================================================================ +08:46:45 Slot Id : <78> +08:46:45 Transaction Type : RESPONSE +08:46:45 Received From : +08:46:45 ============================================================================ +08:46:45 FNo. Len. Field Value +08:46:45 ============================================================================ +08:46:45 [ 1] [ 4] [0210] +08:46:45 [ 2] [ 16] [1808930500014303] +08:46:45 [ 3] [ 6] [010000] +08:46:45 [ 4] [ 12] [000100000000] +08:46:45 [ 6] [ 12] [000100000000] +08:46:45 [ 7] [ 10] [0320084433] +08:46:45 [ 11] [ 6] [933734] +08:46:45 [ 12] [ 6] [084433] +08:46:45 [ 13] [ 4] [0320] +08:46:45 [ 18] [ 4] [6011] +08:46:45 [ 19] [ 3] [418] +08:46:45 [ 22] [ 3] [021] +08:46:45 [ 28] [ 9] [D00002000] +08:46:45 [ 32] [ 6] [668899] +08:46:45 [ 35] [ 27] [1808930500014303=1803500022] +08:46:45 [ 37] [ 12] [507900844823] +08:46:45 [ 39] [ 2] [55] +08:46:45 [ 41] [ 8] [03015003] +08:46:45 [ 49] [ 3] [418] +08:46:45 [ 51] [ 3] [418] +08:46:45 [ 52] [ 16] [A9C475A12153C244] +08:46:45 ============================================================================ +08:46:45 Calculate Source COMM Id = 4 +08:46:45 ============================================================================ +08:46:45 + + +waiting on router queue for slot.... +08:46:56 ============================================================================ +08:46:56 Slot Id : <47> +08:46:56 Transaction Type : REQUEST +08:46:56 Received From : +08:46:56 ============================================================================ +08:46:56 FNo. Len. Field Value +08:46:56 ============================================================================ +08:46:56 [ 1] [ 4] [0800] +08:46:56 [ 7] [ 10] [0320014604] +08:46:56 [ 11] [ 6] [155482] +08:46:56 [ 70] [ 3] [301] +08:46:56 ============================================================================ +08:46:56 + + +waiting on router queue for slot.... +08:46:56 Sending to : +08:46:56 ============================================================================ +08:46:56 ============================================================================ +08:46:56 Slot Id : <47> +08:46:56 Transaction Type : RESPONSE +08:46:56 Received From : +08:46:56 ============================================================================ +08:46:56 FNo. Len. Field Value +08:46:56 ============================================================================ +08:46:56 [ 1] [ 4] [0810] +08:46:56 [ 7] [ 10] [0320014604] +08:46:56 [ 11] [ 6] [155482] +08:46:56 [ 39] [ 2] [00] +08:46:56 [ 70] [ 3] [301] +08:46:56 ============================================================================ +08:46:56 Calculate Source COMM Id = 2 +08:46:56 ============================================================================ +08:46:56 + + +waiting on router queue for slot.... +08:47:06 ============================================================================ +08:47:06 Slot Id : <54> +08:47:06 Transaction Type : REQUEST +08:47:06 Received From : +08:47:06 ============================================================================ +08:47:06 FNo. Len. Field Value +08:47:06 ============================================================================ +08:47:06 [ 1] [ 4] [0200] +08:47:06 [ 2] [ 16] [6688990040157909] +08:47:06 [ 3] [ 6] [011000] +08:47:06 [ 4] [ 12] [000010000000] +08:47:06 [ 7] [ 10] [0320084702] +08:47:06 [ 11] [ 6] [688818] +08:47:06 [ 12] [ 6] [084702] +08:47:06 [ 13] [ 4] [0320] +08:47:06 [ 15] [ 4] [0320] +08:47:06 [ 18] [ 4] [6011] +08:47:06 [ 22] [ 3] [900] +08:47:06 [ 25] [ 2] [02] +08:47:06 [ 28] [ 9] [D00002000] +08:47:06 [ 32] [ 6] [621354] +08:47:06 [ 35] [ 37] [6688990040157909=98051261760055500000] +08:47:06 [ 37] [ 12] [507903161050] +08:47:06 [ 41] [ 8] [04002600] +08:47:06 [ 42] [ 15] [NATIVE ] +08:47:06 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +08:47:06 [ 49] [ 3] [418] +08:47:06 [ 52] [ 16] [2715CF0593096AAB] +08:47:06 ============================================================================ +08:47:06 + + +waiting on router queue for slot.... +08:47:06 Sending to : +08:47:06 ============================================================================ +08:47:06 Sending to : +08:47:06 ============================================================================ +08:47:06 ============================================================================ +08:47:06 Slot Id : <54> +08:47:06 Transaction Type : REQUEST +08:47:06 Received From : +08:47:06 ============================================================================ +08:47:06 FNo. Len. Field Value +08:47:06 ============================================================================ +08:47:06 [ 1] [ 4] [0200] +08:47:06 [ 2] [ 16] [6688990040157909] +08:47:06 [ 3] [ 6] [011000] +08:47:06 [ 4] [ 12] [000010000000] +08:47:06 [ 7] [ 10] [0320084702] +08:47:06 [ 11] [ 6] [688818] +08:47:06 [ 12] [ 6] [084702] +08:47:06 [ 13] [ 4] [0320] +08:47:06 [ 15] [ 4] [0320] +08:47:06 [ 18] [ 4] [6011] +08:47:06 [ 22] [ 3] [900] +08:47:06 [ 25] [ 2] [02] +08:47:06 [ 28] [ 9] [D00002000] +08:47:06 [ 32] [ 6] [621354] +08:47:06 [ 35] [ 37] [6688990040157909=98051261760055500000] +08:47:06 [ 37] [ 12] [507903161050] +08:47:06 [ 41] [ 8] [04002600] +08:47:06 [ 42] [ 15] [NATIVE ] +08:47:06 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +08:47:06 [ 49] [ 3] [418] +08:47:06 [ 52] [ 16] [2715CF0593096AAB] +08:47:06 ============================================================================ +08:47:06 + + +waiting on router queue for slot.... +08:47:06 Sending to : +08:47:06 ============================================================================ +08:47:06 ============================================================================ +08:47:06 Slot Id : <54> +08:47:06 Transaction Type : REQUEST +08:47:06 Received From : +08:47:06 ============================================================================ +08:47:06 FNo. Len. Field Value +08:47:06 ============================================================================ +08:47:06 [ 1] [ 4] [0200] +08:47:06 [ 2] [ 16] [6688990040157909] +08:47:06 [ 3] [ 6] [011000] +08:47:06 [ 4] [ 12] [000010000000] +08:47:06 [ 7] [ 10] [0320084702] +08:47:06 [ 11] [ 6] [688818] +08:47:06 [ 12] [ 6] [084702] +08:47:06 [ 13] [ 4] [0320] +08:47:06 [ 15] [ 4] [0320] +08:47:06 [ 18] [ 4] [6011] +08:47:06 [ 22] [ 3] [900] +08:47:06 [ 25] [ 2] [02] +08:47:06 [ 28] [ 9] [D00002000] +08:47:06 [ 32] [ 6] [621354] +08:47:06 [ 35] [ 37] [6688990040157909=98051261760055500000] +08:47:06 [ 37] [ 12] [507903161050] +08:47:06 [ 41] [ 8] [04002600] +08:47:06 [ 42] [ 15] [NATIVE ] +08:47:06 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +08:47:06 [ 49] [ 3] [418] +08:47:06 [ 52] [ 16] [34731605D7C36C22] +08:47:06 ============================================================================ +08:47:06 + + +waiting on router queue for slot.... +08:47:06 Sending to : <4> +08:47:06 ============================================================================ +08:47:07 ============================================================================ +08:47:07 Slot Id : <54> +08:47:07 Transaction Type : RESPONSE +08:47:07 Received From : +08:47:07 ============================================================================ +08:47:07 FNo. Len. Field Value +08:47:07 ============================================================================ +08:47:07 [ 1] [ 4] [0210] +08:47:07 [ 2] [ 16] [6688990040157909] +08:47:07 [ 3] [ 6] [011000] +08:47:07 [ 4] [ 12] [000010000000] +08:47:07 [ 11] [ 6] [688818] +08:47:07 [ 12] [ 6] [084702] +08:47:07 [ 15] [ 4] [0320] +08:47:07 [ 18] [ 4] [6011] +08:47:07 [ 32] [ 6] [621354] +08:47:07 [ 35] [ 37] [6688990040157909=98051261760055500000] +08:47:07 [ 37] [ 12] [507903161050] +08:47:07 [ 38] [ 6] [195360] +08:47:07 [ 39] [ 2] [00] +08:47:07 [ 41] [ 8] [04002600] +08:47:07 [ 49] [ 3] [418] +08:47:07 [ 54] [ 20] [1002418C000058200000] +08:47:07 ============================================================================ +08:47:07 Sending to : +08:47:07 ============================================================================ +08:47:07 + + +waiting on router queue for slot.... +08:47:09 ============================================================================ +08:47:09 Slot Id : <54> +08:47:09 Transaction Type : RESPONSE +08:47:09 Received From : +08:47:09 ============================================================================ +08:47:09 FNo. Len. Field Value +08:47:09 ============================================================================ +08:47:09 [ 1] [ 4] [0210] +08:47:09 [ 2] [ 16] [6688990040157909] +08:47:09 [ 3] [ 6] [011000] +08:47:09 [ 4] [ 12] [000010000000] +08:47:09 [ 11] [ 6] [688818] +08:47:09 [ 12] [ 6] [084702] +08:47:09 [ 15] [ 4] [0320] +08:47:09 [ 18] [ 4] [6011] +08:47:09 [ 32] [ 6] [621354] +08:47:09 [ 35] [ 37] [6688990040157909=98051261760055500000] +08:47:09 [ 37] [ 12] [507903161050] +08:47:09 [ 38] [ 6] [195360] +08:47:09 [ 39] [ 2] [00] +08:47:09 [ 41] [ 8] [04002600] +08:47:09 [ 49] [ 3] [418] +08:47:09 [ 54] [ 20] [1002418C000058200000] +08:47:09 ============================================================================ +08:47:09 Calculate Source COMM Id = 0 +08:47:09 ============================================================================ +08:47:09 + + +waiting on router queue for slot.... +08:47:11 ============================================================================ +08:47:11 Slot Id : <81> +08:47:11 Transaction Type : REQUEST +08:47:11 Received From : +08:47:11 ============================================================================ +08:47:11 FNo. Len. Field Value +08:47:11 ============================================================================ +08:47:11 [ 1] [ 4] [0800] +08:47:11 [ 7] [ 10] [0320014619] +08:47:11 [ 11] [ 6] [155483] +08:47:11 [ 70] [ 3] [301] +08:47:11 ============================================================================ +08:47:11 + + +waiting on router queue for slot.... +08:47:11 Sending to : +08:47:11 ============================================================================ +08:47:11 ============================================================================ +08:47:11 Slot Id : <81> +08:47:11 Transaction Type : RESPONSE +08:47:11 Received From : +08:47:11 ============================================================================ +08:47:11 FNo. Len. Field Value +08:47:11 ============================================================================ +08:47:11 [ 1] [ 4] [0810] +08:47:11 [ 7] [ 10] [0320014619] +08:47:11 [ 11] [ 6] [155483] +08:47:11 [ 39] [ 2] [00] +08:47:11 [ 70] [ 3] [301] +08:47:11 ============================================================================ +08:47:11 Calculate Source COMM Id = 2 +08:47:11 ============================================================================ +08:47:11 + + +waiting on router queue for slot.... +08:47:24 ============================================================================ +08:47:24 Slot Id : <24> +08:47:24 Transaction Type : REQUEST +08:47:24 Received From : +08:47:24 ============================================================================ +08:47:24 FNo. Len. Field Value +08:47:24 ============================================================================ +08:47:24 [ 1] [ 4] [0200] +08:47:24 [ 2] [ 16] [6688990101414009] +08:47:24 [ 3] [ 6] [301000] +08:47:24 [ 4] [ 12] [000000000000] +08:47:24 [ 7] [ 10] [0320084720] +08:47:24 [ 11] [ 6] [688886] +08:47:24 [ 12] [ 6] [084720] +08:47:24 [ 13] [ 4] [0320] +08:47:24 [ 15] [ 4] [0320] +08:47:24 [ 18] [ 4] [6011] +08:47:24 [ 22] [ 3] [900] +08:47:24 [ 25] [ 2] [02] +08:47:24 [ 28] [ 9] [D00000000] +08:47:24 [ 32] [ 6] [621354] +08:47:24 [ 35] [ 37] [6688990101414009=42021231400970200000] +08:47:24 [ 37] [ 12] [507904698866] +08:47:24 [ 41] [ 8] [18000800] +08:47:24 [ 42] [ 15] [NATIVE ] +08:47:24 [ 43] [ 40] [Bountai District Bountai LAO] +08:47:24 [ 49] [ 3] [418] +08:47:24 [ 52] [ 16] [3787AA2FD63726A4] +08:47:24 ============================================================================ +08:47:24 + + +waiting on router queue for slot.... +08:47:24 Sending to : +08:47:24 ============================================================================ +08:47:24 Sending to : +08:47:24 ============================================================================ +08:47:25 ============================================================================ +08:47:25 Slot Id : <24> +08:47:25 Transaction Type : REQUEST +08:47:25 Received From : +08:47:25 ============================================================================ +08:47:25 FNo. Len. Field Value +08:47:25 ============================================================================ +08:47:25 [ 1] [ 4] [0200] +08:47:25 [ 2] [ 16] [6688990101414009] +08:47:25 [ 3] [ 6] [301000] +08:47:25 [ 4] [ 12] [000000000000] +08:47:25 [ 7] [ 10] [0320084720] +08:47:25 [ 11] [ 6] [688886] +08:47:25 [ 12] [ 6] [084720] +08:47:25 [ 13] [ 4] [0320] +08:47:25 [ 15] [ 4] [0320] +08:47:25 [ 18] [ 4] [6011] +08:47:25 [ 22] [ 3] [900] +08:47:25 [ 25] [ 2] [02] +08:47:25 [ 28] [ 9] [D00000000] +08:47:25 [ 32] [ 6] [621354] +08:47:25 [ 35] [ 37] [6688990101414009=42021231400970200000] +08:47:25 [ 37] [ 12] [507904698866] +08:47:25 [ 41] [ 8] [18000800] +08:47:25 [ 42] [ 15] [NATIVE ] +08:47:25 [ 43] [ 40] [Bountai District Bountai LAO] +08:47:25 [ 49] [ 3] [418] +08:47:25 [ 52] [ 16] [3787AA2FD63726A4] +08:47:25 ============================================================================ +08:47:25 + + +waiting on router queue for slot.... +08:47:25 Sending to : +08:47:25 ============================================================================ +08:47:25 ============================================================================ +08:47:25 Slot Id : <24> +08:47:25 Transaction Type : REQUEST +08:47:25 Received From : +08:47:25 ============================================================================ +08:47:25 FNo. Len. Field Value +08:47:25 ============================================================================ +08:47:25 [ 1] [ 4] [0200] +08:47:25 [ 2] [ 16] [6688990101414009] +08:47:25 [ 3] [ 6] [301000] +08:47:25 [ 4] [ 12] [000000000000] +08:47:25 [ 7] [ 10] [0320084720] +08:47:25 [ 11] [ 6] [688886] +08:47:25 [ 12] [ 6] [084720] +08:47:25 [ 13] [ 4] [0320] +08:47:25 [ 15] [ 4] [0320] +08:47:25 [ 18] [ 4] [6011] +08:47:25 [ 22] [ 3] [900] +08:47:25 [ 25] [ 2] [02] +08:47:25 [ 28] [ 9] [D00000000] +08:47:25 [ 32] [ 6] [621354] +08:47:25 [ 35] [ 37] [6688990101414009=42021231400970200000] +08:47:25 [ 37] [ 12] [507904698866] +08:47:25 [ 41] [ 8] [18000800] +08:47:25 [ 42] [ 15] [NATIVE ] +08:47:25 [ 43] [ 40] [Bountai District Bountai LAO] +08:47:25 [ 49] [ 3] [418] +08:47:25 [ 52] [ 16] [A6FF0EAE8CC8B7DB] +08:47:25 ============================================================================ +08:47:25 + + +waiting on router queue for slot.... +08:47:25 Sending to : <4> +08:47:25 ============================================================================ +08:47:26 ============================================================================ +08:47:26 Slot Id : <24> +08:47:26 Transaction Type : RESPONSE +08:47:26 Received From : +08:47:26 ============================================================================ +08:47:26 FNo. Len. Field Value +08:47:26 ============================================================================ +08:47:26 [ 1] [ 4] [0210] +08:47:26 [ 2] [ 16] [6688990101414009] +08:47:26 [ 3] [ 6] [301000] +08:47:26 [ 4] [ 12] [000000000000] +08:47:26 [ 11] [ 6] [688886] +08:47:26 [ 12] [ 6] [084720] +08:47:26 [ 15] [ 4] [0320] +08:47:26 [ 18] [ 4] [6011] +08:47:26 [ 32] [ 6] [621354] +08:47:26 [ 35] [ 37] [6688990101414009=42021231400970200000] +08:47:26 [ 37] [ 12] [507904698866] +08:47:26 [ 38] [ 6] [493787] +08:47:26 [ 39] [ 2] [00] +08:47:26 [ 41] [ 8] [18000800] +08:47:26 [ 49] [ 3] [418] +08:47:26 [ 54] [ 20] [1002418C000070751714] +08:47:26 ============================================================================ +08:47:26 Sending to : +08:47:26 ============================================================================ +08:47:26 + + +waiting on router queue for slot.... +08:47:27 ============================================================================ +08:47:27 Slot Id : <24> +08:47:27 Transaction Type : RESPONSE +08:47:27 Received From : +08:47:27 ============================================================================ +08:47:27 FNo. Len. Field Value +08:47:27 ============================================================================ +08:47:27 [ 1] [ 4] [0210] +08:47:27 [ 2] [ 16] [6688990101414009] +08:47:27 [ 3] [ 6] [301000] +08:47:27 [ 4] [ 12] [000000000000] +08:47:27 [ 11] [ 6] [688886] +08:47:27 [ 12] [ 6] [084720] +08:47:27 [ 15] [ 4] [0320] +08:47:27 [ 18] [ 4] [6011] +08:47:27 [ 32] [ 6] [621354] +08:47:27 [ 35] [ 37] [6688990101414009=42021231400970200000] +08:47:27 [ 37] [ 12] [507904698866] +08:47:27 [ 38] [ 6] [493787] +08:47:27 [ 39] [ 2] [00] +08:47:27 [ 41] [ 8] [18000800] +08:47:27 [ 49] [ 3] [418] +08:47:27 [ 54] [ 20] [1002418C000070751714] +08:47:27 ============================================================================ +08:47:27 Calculate Source COMM Id = 0 +08:47:27 ============================================================================ +08:47:27 + + +waiting on router queue for slot.... +08:47:28 ============================================================================ +08:47:28 Slot Id : <57> +08:47:28 Transaction Type : REQUEST +08:47:28 Received From : +08:47:28 ============================================================================ +08:47:28 FNo. Len. Field Value +08:47:28 ============================================================================ +08:47:28 [ 1] [ 4] [0800] +08:47:28 [ 7] [ 10] [0320014635] +08:47:28 [ 11] [ 6] [155484] +08:47:28 [ 70] [ 3] [301] +08:47:28 ============================================================================ +08:47:28 + + +waiting on router queue for slot.... +08:47:28 Sending to : +08:47:28 ============================================================================ +08:47:28 ============================================================================ +08:47:28 Slot Id : <57> +08:47:28 Transaction Type : RESPONSE +08:47:28 Received From : +08:47:28 ============================================================================ +08:47:28 FNo. Len. Field Value +08:47:28 ============================================================================ +08:47:28 [ 1] [ 4] [0810] +08:47:28 [ 7] [ 10] [0320014635] +08:47:28 [ 11] [ 6] [155484] +08:47:28 [ 39] [ 2] [00] +08:47:28 [ 70] [ 3] [301] +08:47:28 ============================================================================ +08:47:28 Calculate Source COMM Id = 2 +08:47:28 ============================================================================ +08:47:28 + + +waiting on router queue for slot.... +08:47:34 ============================================================================ +08:47:34 Slot Id : <34> +08:47:34 Transaction Type : REQUEST +08:47:34 Received From : +08:47:34 ============================================================================ +08:47:34 FNo. Len. Field Value +08:47:34 ============================================================================ +08:47:34 [ 1] [ 4] [0200] +08:47:34 [ 2] [ 16] [6213544001191409] +08:47:34 [ 3] [ 6] [011000] +08:47:34 [ 4] [ 12] [000005000000] +08:47:34 [ 7] [ 10] [0320084755] +08:47:34 [ 11] [ 6] [202359] +08:47:34 [ 12] [ 6] [084908] +08:47:34 [ 13] [ 4] [0320] +08:47:34 [ 14] [ 4] [4912] +08:47:34 [ 15] [ 4] [0320] +08:47:34 [ 18] [ 4] [6011] +08:47:34 [ 19] [ 3] [418] +08:47:34 [ 22] [ 3] [021] +08:47:34 [ 25] [ 2] [01] +08:47:34 [ 28] [ 9] [D00002000] +08:47:34 [ 32] [ 6] [198901] +08:47:34 [ 35] [ 32] [6213544001191409=491212019140257] +08:47:34 [ 37] [ 12] [507908202359] +08:47:34 [ 41] [ 8] [00002213] +08:47:34 [ 42] [ 15] [000000041002213] +08:47:34 [ 43] [ 40] [JDB ATM VANGVIENG UNIT VN ] +08:47:34 [ 49] [ 3] [418] +08:47:34 [ 52] [ 16] [2D07CDECD04A81AE] +08:47:34 ============================================================================ +08:47:34 + + +waiting on router queue for slot.... +08:47:34 Sending to : +08:47:34 ============================================================================ +08:47:34 Sending to : +08:47:34 ============================================================================ +08:47:34 ============================================================================ +08:47:34 Slot Id : <34> +08:47:34 Transaction Type : REQUEST +08:47:34 Received From : +08:47:34 ============================================================================ +08:47:34 FNo. Len. Field Value +08:47:34 ============================================================================ +08:47:34 [ 1] [ 4] [0200] +08:47:34 [ 2] [ 16] [6213544001191409] +08:47:34 [ 3] [ 6] [011000] +08:47:34 [ 4] [ 12] [000005000000] +08:47:34 [ 7] [ 10] [0320084755] +08:47:34 [ 11] [ 6] [202359] +08:47:34 [ 12] [ 6] [084908] +08:47:34 [ 13] [ 4] [0320] +08:47:34 [ 14] [ 4] [4912] +08:47:34 [ 15] [ 4] [0320] +08:47:34 [ 18] [ 4] [6011] +08:47:34 [ 19] [ 3] [418] +08:47:34 [ 22] [ 3] [021] +08:47:34 [ 25] [ 2] [01] +08:47:34 [ 28] [ 9] [D00002000] +08:47:34 [ 32] [ 6] [198901] +08:47:34 [ 35] [ 32] [6213544001191409=491212019140257] +08:47:34 [ 37] [ 12] [507908202359] +08:47:34 [ 41] [ 8] [00002213] +08:47:34 [ 42] [ 15] [000000041002213] +08:47:34 [ 43] [ 40] [JDB ATM VANGVIENG UNIT VN ] +08:47:34 [ 49] [ 3] [418] +08:47:34 [ 52] [ 16] [2D07CDECD04A81AE] +08:47:34 ============================================================================ +08:47:34 + + +waiting on router queue for slot.... +08:47:34 Sending to : +08:47:34 ============================================================================ +08:47:34 ============================================================================ +08:47:34 Slot Id : <34> +08:47:34 Transaction Type : REQUEST +08:47:34 Received From : +08:47:34 ============================================================================ +08:47:34 FNo. Len. Field Value +08:47:34 ============================================================================ +08:47:34 [ 1] [ 4] [0200] +08:47:34 [ 2] [ 16] [6213544001191409] +08:47:34 [ 3] [ 6] [011000] +08:47:34 [ 4] [ 12] [000005000000] +08:47:34 [ 7] [ 10] [0320084755] +08:47:34 [ 11] [ 6] [202359] +08:47:34 [ 12] [ 6] [084908] +08:47:34 [ 13] [ 4] [0320] +08:47:34 [ 14] [ 4] [4912] +08:47:34 [ 15] [ 4] [0320] +08:47:34 [ 18] [ 4] [6011] +08:47:34 [ 19] [ 3] [418] +08:47:34 [ 22] [ 3] [021] +08:47:34 [ 25] [ 2] [01] +08:47:34 [ 28] [ 9] [D00002000] +08:47:34 [ 32] [ 6] [198901] +08:47:34 [ 35] [ 32] [6213544001191409=491212019140257] +08:47:34 [ 37] [ 12] [507908202359] +08:47:34 [ 41] [ 8] [00002213] +08:47:34 [ 42] [ 15] [000000041002213] +08:47:34 [ 43] [ 40] [JDB ATM VANGVIENG UNIT VN ] +08:47:34 [ 49] [ 3] [418] +08:47:34 [ 52] [ 16] [73B67A768E8D3E38] +08:47:34 ============================================================================ +08:47:34 + + +waiting on router queue for slot.... +08:47:34 Sending to : <0> +08:47:34 ============================================================================ +08:47:35 ============================================================================ +08:47:35 Slot Id : <34> +08:47:35 Transaction Type : RESPONSE +08:47:35 Received From : +08:47:35 ============================================================================ +08:47:35 FNo. Len. Field Value +08:47:35 ============================================================================ +08:47:35 [ 1] [ 4] [0210] +08:47:35 [ 2] [ 16] [6213544001191409] +08:47:35 [ 3] [ 6] [011000] +08:47:35 [ 4] [ 12] [000005000000] +08:47:35 [ 7] [ 10] [0320084755] +08:47:35 [ 11] [ 6] [202359] +08:47:35 [ 12] [ 6] [084908] +08:47:35 [ 13] [ 4] [0320] +08:47:35 [ 15] [ 4] [0320] +08:47:35 [ 18] [ 4] [6011] +08:47:35 [ 19] [ 3] [418] +08:47:35 [ 32] [ 6] [198901] +08:47:35 [ 35] [ 32] [6213544001191409=491212019140257] +08:47:35 [ 37] [ 12] [507908202359] +08:47:35 [ 38] [ 6] [202359] +08:47:35 [ 39] [ 2] [51] +08:47:35 [ 41] [ 8] [00002213] +08:47:35 [ 49] [ 3] [418] +08:47:35 [ 54] [ 40] [1001418C0000100756501002418C000010075650] +08:47:35 ============================================================================ +08:47:35 Sending to : +08:47:35 ============================================================================ +08:47:35 + + +waiting on router queue for slot.... +08:47:36 ============================================================================ +08:47:36 Slot Id : <34> +08:47:36 Transaction Type : RESPONSE +08:47:36 Received From : +08:47:36 ============================================================================ +08:47:36 FNo. Len. Field Value +08:47:36 ============================================================================ +08:47:36 [ 1] [ 4] [0210] +08:47:36 [ 2] [ 16] [6213544001191409] +08:47:36 [ 3] [ 6] [011000] +08:47:36 [ 4] [ 12] [000005000000] +08:47:36 [ 7] [ 10] [0320084755] +08:47:36 [ 11] [ 6] [202359] +08:47:36 [ 12] [ 6] [084908] +08:47:36 [ 13] [ 4] [0320] +08:47:36 [ 15] [ 4] [0320] +08:47:36 [ 18] [ 4] [6011] +08:47:36 [ 19] [ 3] [418] +08:47:36 [ 32] [ 6] [198901] +08:47:36 [ 35] [ 32] [6213544001191409=491212019140257] +08:47:36 [ 37] [ 12] [507908202359] +08:47:36 [ 38] [ 6] [202359] +08:47:36 [ 39] [ 2] [51] +08:47:36 [ 41] [ 8] [00002213] +08:47:36 [ 49] [ 3] [418] +08:47:36 [ 54] [ 40] [1001418C0000100756501002418C000010075650] +08:47:36 ============================================================================ +08:47:36 Calculate Source COMM Id = 5 +08:47:36 ============================================================================ +08:47:36 + + +waiting on router queue for slot.... +08:47:36 ============================================================================ +08:47:36 Slot Id : <42> +08:47:36 Transaction Type : REQUEST +08:47:36 Received From : +08:47:36 ============================================================================ +08:47:36 FNo. Len. Field Value +08:47:36 ============================================================================ +08:47:36 [ 1] [ 4] [0800] +08:47:36 [ 2] [ 5] [02531] +08:47:36 [ 3] [ 6] [579088] +08:47:36 [ 7] [ 10] [0320014736] +08:47:36 [ 11] [ 6] [806922] +08:47:36 [ 15] [ 10] [0320014736] +08:47:36 [ 37] [ 11] [57908806922] +08:47:36 [ 70] [ 3] [001] +08:47:36 ============================================================================ +08:47:36 + + +waiting on router queue for slot.... +08:47:36 ============================================================================ +08:47:36 Slot Id : <42> +08:47:36 Transaction Type : RESPONSE +08:47:36 Received From : +08:47:36 ============================================================================ +08:47:36 FNo. Len. Field Value +08:47:36 ============================================================================ +08:47:36 [ 1] [ 4] [0810] +08:47:36 [ 7] [ 10] [0320014736] +08:47:36 [ 11] [ 6] [806922] +08:47:36 [ 15] [ 4] [0320] +08:47:36 [ 37] [ 12] [57908806922] +08:47:36 [ 39] [ 2] [00] +08:47:36 [ 70] [ 3] [001] +08:47:36 ============================================================================ +08:47:36 Sending to : +08:47:36 ============================================================================ +08:47:36 + + +waiting on router queue for slot.... +08:47:41 ============================================================================ +08:47:41 Slot Id : <86> +08:47:41 Transaction Type : REQUEST +08:47:41 Received From : +08:47:41 ============================================================================ +08:47:41 FNo. Len. Field Value +08:47:41 ============================================================================ +08:47:41 [ 1] [ 4] [0800] +08:47:41 [ 7] [ 10] [0320155930] +08:47:41 [ 11] [ 6] [085930] +08:47:41 [ 37] [ 12] [57908085930] +08:47:41 [ 70] [ 3] [301] +08:47:41 ============================================================================ +08:47:41 + + +waiting on router queue for slot.... +08:47:41 Sending to : +08:47:41 ============================================================================ +08:47:41 ============================================================================ +08:47:41 Slot Id : <86> +08:47:41 Transaction Type : RESPONSE +08:47:41 Received From : +08:47:41 ============================================================================ +08:47:41 FNo. Len. Field Value +08:47:41 ============================================================================ +08:47:41 [ 1] [ 4] [0810] +08:47:41 [ 7] [ 10] [0320155930] +08:47:41 [ 11] [ 6] [085930] +08:47:41 [ 37] [ 12] [579080859300] +08:47:41 [ 39] [ 2] [00] +08:47:41 [ 70] [ 3] [810] +08:47:41 ============================================================================ +08:47:41 Calculate Source COMM Id = 6 +08:47:41 ============================================================================ +08:47:41 + + +waiting on router queue for slot.... +08:47:42 ============================================================================ +08:47:42 Slot Id : <49> +08:47:42 Transaction Type : REQUEST +08:47:42 Received From : +08:47:42 ============================================================================ +08:47:42 FNo. Len. Field Value +08:47:42 ============================================================================ +08:47:42 [ 1] [ 4] [0800] +08:47:42 [ 7] [ 10] [0320014650] +08:47:42 [ 11] [ 6] [155485] +08:47:42 [ 70] [ 3] [301] +08:47:42 ============================================================================ +08:47:42 + + +waiting on router queue for slot.... +08:47:42 Sending to : +08:47:42 ============================================================================ +08:47:42 ============================================================================ +08:47:42 Slot Id : <49> +08:47:42 Transaction Type : RESPONSE +08:47:42 Received From : +08:47:42 ============================================================================ +08:47:42 FNo. Len. Field Value +08:47:42 ============================================================================ +08:47:42 [ 1] [ 4] [0810] +08:47:42 [ 7] [ 10] [0320014650] +08:47:42 [ 11] [ 6] [155485] +08:47:42 [ 39] [ 2] [00] +08:47:42 [ 70] [ 3] [301] +08:47:42 ============================================================================ +08:47:42 Calculate Source COMM Id = 2 +08:47:42 ============================================================================ +08:47:42 + + +waiting on router queue for slot.... +08:47:57 ============================================================================ +08:47:57 Slot Id : <88> +08:47:57 Transaction Type : REQUEST +08:47:57 Received From : +08:47:57 ============================================================================ +08:47:57 FNo. Len. Field Value +08:47:57 ============================================================================ +08:47:57 [ 1] [ 4] [0800] +08:47:57 [ 7] [ 10] [0320014705] +08:47:57 [ 11] [ 6] [155486] +08:47:57 [ 70] [ 3] [301] +08:47:57 ============================================================================ +08:47:57 + + +waiting on router queue for slot.... +08:47:57 Sending to : +08:47:57 ============================================================================ +08:47:57 ============================================================================ +08:47:57 Slot Id : <88> +08:47:57 Transaction Type : RESPONSE +08:47:57 Received From : +08:47:57 ============================================================================ +08:47:57 FNo. Len. Field Value +08:47:57 ============================================================================ +08:47:57 [ 1] [ 4] [0810] +08:47:57 [ 7] [ 10] [0320014705] +08:47:57 [ 11] [ 6] [155486] +08:47:57 [ 39] [ 2] [00] +08:47:57 [ 70] [ 3] [301] +08:47:57 ============================================================================ +08:47:57 Calculate Source COMM Id = 2 +08:47:57 ============================================================================ +08:47:57 + + +waiting on router queue for slot.... +08:48:08 ============================================================================ +08:48:08 Slot Id : <89> +08:48:08 Transaction Type : REQUEST +08:48:08 Received From : +08:48:08 ============================================================================ +08:48:08 FNo. Len. Field Value +08:48:08 ============================================================================ +08:48:08 [ 1] [ 4] [0800] +08:48:08 [ 7] [ 10] [0320014716] +08:48:08 [ 11] [ 6] [155487] +08:48:08 [ 70] [ 3] [301] +08:48:08 ============================================================================ +08:48:08 + + +waiting on router queue for slot.... +08:48:08 Sending to : +08:48:08 ============================================================================ +08:48:08 ============================================================================ +08:48:08 Slot Id : <89> +08:48:08 Transaction Type : RESPONSE +08:48:08 Received From : +08:48:08 ============================================================================ +08:48:08 FNo. Len. Field Value +08:48:08 ============================================================================ +08:48:08 [ 1] [ 4] [0810] +08:48:08 [ 7] [ 10] [0320014716] +08:48:08 [ 11] [ 6] [155487] +08:48:08 [ 39] [ 2] [00] +08:48:08 [ 70] [ 3] [301] +08:48:08 ============================================================================ +08:48:08 Calculate Source COMM Id = 2 +08:48:08 ============================================================================ +08:48:08 + + +waiting on router queue for slot.... +08:48:13 ============================================================================ +08:48:13 Slot Id : <59> +08:48:13 Transaction Type : REQUEST +08:48:13 Received From : +08:48:13 ============================================================================ +08:48:13 FNo. Len. Field Value +08:48:13 ============================================================================ +08:48:13 [ 1] [ 4] [0200] +08:48:13 [ 2] [ 16] [1808930500014303] +08:48:13 [ 3] [ 6] [010000] +08:48:13 [ 4] [ 12] [000100000000] +08:48:13 [ 7] [ 10] [0320084605] +08:48:13 [ 11] [ 6] [933796] +08:48:13 [ 12] [ 6] [084605] +08:48:13 [ 13] [ 4] [0320] +08:48:13 [ 15] [ 4] [0320] +08:48:13 [ 18] [ 4] [6011] +08:48:13 [ 19] [ 3] [418] +08:48:13 [ 22] [ 3] [021] +08:48:13 [ 25] [ 2] [01] +08:48:13 [ 28] [ 9] [D00002000] +08:48:13 [ 32] [ 6] [668899] +08:48:13 [ 35] [ 27] [1808930500014303=1803500022] +08:48:13 [ 37] [ 12] [507900844825] +08:48:13 [ 41] [ 8] [03015003] +08:48:13 [ 42] [ 15] [APT ] +08:48:13 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:48:13 [ 49] [ 3] [418] +08:48:13 [ 52] [ 16] [10FFC6C354F7AB45] +08:48:13 ============================================================================ +08:48:13 + + +waiting on router queue for slot.... +08:48:13 Sending to : +08:48:13 ============================================================================ +08:48:13 Sending to : +08:48:13 ============================================================================ +08:48:14 ============================================================================ +08:48:14 Slot Id : <59> +08:48:14 Transaction Type : REQUEST +08:48:14 Received From : +08:48:14 ============================================================================ +08:48:14 FNo. Len. Field Value +08:48:14 ============================================================================ +08:48:14 [ 1] [ 4] [0200] +08:48:14 [ 2] [ 16] [1808930500014303] +08:48:14 [ 3] [ 6] [010000] +08:48:14 [ 4] [ 12] [000100000000] +08:48:14 [ 7] [ 10] [0320084605] +08:48:14 [ 11] [ 6] [933796] +08:48:14 [ 12] [ 6] [084605] +08:48:14 [ 13] [ 4] [0320] +08:48:14 [ 15] [ 4] [0320] +08:48:14 [ 18] [ 4] [6011] +08:48:14 [ 19] [ 3] [418] +08:48:14 [ 22] [ 3] [021] +08:48:14 [ 25] [ 2] [01] +08:48:14 [ 28] [ 9] [D00002000] +08:48:14 [ 32] [ 6] [668899] +08:48:14 [ 35] [ 27] [1808930500014303=1803500022] +08:48:14 [ 37] [ 12] [507900844825] +08:48:14 [ 41] [ 8] [03015003] +08:48:14 [ 42] [ 15] [APT ] +08:48:14 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:48:14 [ 49] [ 3] [418] +08:48:14 [ 52] [ 16] [10FFC6C354F7AB45] +08:48:14 ============================================================================ +08:48:14 + + +waiting on router queue for slot.... +08:48:14 Sending to : +08:48:14 ============================================================================ +08:48:14 ============================================================================ +08:48:14 Slot Id : <59> +08:48:14 Transaction Type : REQUEST +08:48:14 Received From : +08:48:14 ============================================================================ +08:48:14 FNo. Len. Field Value +08:48:14 ============================================================================ +08:48:14 [ 1] [ 4] [0200] +08:48:14 [ 2] [ 16] [1808930500014303] +08:48:14 [ 3] [ 6] [010000] +08:48:14 [ 4] [ 12] [000100000000] +08:48:14 [ 7] [ 10] [0320084605] +08:48:14 [ 11] [ 6] [933796] +08:48:14 [ 12] [ 6] [084605] +08:48:14 [ 13] [ 4] [0320] +08:48:14 [ 15] [ 4] [0320] +08:48:14 [ 18] [ 4] [6011] +08:48:14 [ 19] [ 3] [418] +08:48:14 [ 22] [ 3] [021] +08:48:14 [ 25] [ 2] [01] +08:48:14 [ 28] [ 9] [D00002000] +08:48:14 [ 32] [ 6] [668899] +08:48:14 [ 35] [ 27] [1808930500014303=1803500022] +08:48:14 [ 37] [ 12] [507900844825] +08:48:14 [ 41] [ 8] [03015003] +08:48:14 [ 42] [ 15] [APT ] +08:48:14 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:48:14 [ 49] [ 3] [418] +08:48:14 [ 52] [ 16] [08F610331435960F] +08:48:14 ============================================================================ +08:48:14 + + +waiting on router queue for slot.... +08:48:14 Sending to : <2> +08:48:14 ============================================================================ +08:48:20 ============================================================================ +08:48:20 Slot Id : <59> +08:48:20 Transaction Type : RESPONSE +08:48:20 Received From : +08:48:20 ============================================================================ +08:48:20 FNo. Len. Field Value +08:48:20 ============================================================================ +08:48:20 [ 1] [ 4] [0210] +08:48:20 [ 2] [ 16] [1808930500014303] +08:48:20 [ 3] [ 6] [010000] +08:48:20 [ 4] [ 12] [000100000000] +08:48:20 [ 6] [ 12] [000100000000] +08:48:20 [ 7] [ 10] [0320084605] +08:48:20 [ 11] [ 6] [933796] +08:48:20 [ 12] [ 6] [084605] +08:48:20 [ 13] [ 4] [0320] +08:48:20 [ 18] [ 4] [6011] +08:48:20 [ 19] [ 3] [418] +08:48:20 [ 22] [ 3] [021] +08:48:20 [ 32] [ 6] [668899] +08:48:20 [ 35] [ 27] [1808930500014303=1803500022] +08:48:20 [ 37] [ 12] [507900844825] +08:48:20 [ 38] [ 6] [933796] +08:48:20 [ 39] [ 2] [00] +08:48:20 [ 41] [ 8] [03015003] +08:48:20 [ 49] [ 3] [418] +08:48:20 [ 52] [ 16] [08F610331435960F] +08:48:20 [ 54] [ 20] [1001418C000068584200] +08:48:20 ============================================================================ +08:48:20 Sending to : +08:48:20 ============================================================================ +08:48:20 + + +waiting on router queue for slot.... +08:48:21 ============================================================================ +08:48:21 Slot Id : <59> +08:48:21 Transaction Type : RESPONSE +08:48:21 Received From : +08:48:21 ============================================================================ +08:48:21 FNo. Len. Field Value +08:48:21 ============================================================================ +08:48:21 [ 1] [ 4] [0210] +08:48:21 [ 2] [ 16] [1808930500014303] +08:48:21 [ 3] [ 6] [010000] +08:48:21 [ 4] [ 12] [000100000000] +08:48:21 [ 6] [ 12] [000100000000] +08:48:21 [ 7] [ 10] [0320084605] +08:48:21 [ 11] [ 6] [933796] +08:48:21 [ 12] [ 6] [084605] +08:48:21 [ 13] [ 4] [0320] +08:48:21 [ 18] [ 4] [6011] +08:48:21 [ 19] [ 3] [418] +08:48:21 [ 22] [ 3] [021] +08:48:21 [ 32] [ 6] [668899] +08:48:21 [ 35] [ 27] [1808930500014303=1803500022] +08:48:21 [ 37] [ 12] [507900844825] +08:48:21 [ 38] [ 6] [933796] +08:48:21 [ 39] [ 2] [00] +08:48:21 [ 41] [ 8] [03015003] +08:48:21 [ 49] [ 3] [418] +08:48:21 [ 52] [ 16] [08F610331435960F] +08:48:21 [ 54] [ 20] [1001418C000068584200] +08:48:21 ============================================================================ +08:48:21 Calculate Source COMM Id = 4 +08:48:21 ============================================================================ +08:48:21 + + +waiting on router queue for slot.... +08:48:26 ============================================================================ +08:48:26 Slot Id : <5> +08:48:26 Transaction Type : REQUEST +08:48:26 Received From : +08:48:26 ============================================================================ +08:48:26 FNo. Len. Field Value +08:48:26 ============================================================================ +08:48:26 [ 1] [ 4] [0800] +08:48:26 [ 7] [ 10] [0320014733] +08:48:26 [ 11] [ 6] [155488] +08:48:26 [ 70] [ 3] [301] +08:48:26 ============================================================================ +08:48:26 + + +waiting on router queue for slot.... +08:48:26 Sending to : +08:48:26 ============================================================================ +08:48:26 ============================================================================ +08:48:26 Slot Id : <5> +08:48:26 Transaction Type : RESPONSE +08:48:26 Received From : +08:48:26 ============================================================================ +08:48:26 FNo. Len. Field Value +08:48:26 ============================================================================ +08:48:26 [ 1] [ 4] [0810] +08:48:26 [ 7] [ 10] [0320014733] +08:48:26 [ 11] [ 6] [155488] +08:48:26 [ 39] [ 2] [00] +08:48:26 [ 70] [ 3] [301] +08:48:26 ============================================================================ +08:48:26 Calculate Source COMM Id = 2 +08:48:26 ============================================================================ +08:48:26 + + +waiting on router queue for slot.... +08:48:38 ============================================================================ +08:48:38 Slot Id : <79> +08:48:38 Transaction Type : REQUEST +08:48:38 Received From : +08:48:38 ============================================================================ +08:48:38 FNo. Len. Field Value +08:48:38 ============================================================================ +08:48:38 [ 1] [ 4] [0800] +08:48:38 [ 2] [ 5] [02531] +08:48:38 [ 3] [ 6] [579088] +08:48:38 [ 7] [ 10] [0320014838] +08:48:38 [ 11] [ 6] [806923] +08:48:38 [ 15] [ 10] [0320014838] +08:48:38 [ 37] [ 11] [57908806923] +08:48:38 [ 70] [ 3] [001] +08:48:38 ============================================================================ +08:48:38 + + +waiting on router queue for slot.... +08:48:38 ============================================================================ +08:48:38 Slot Id : <79> +08:48:38 Transaction Type : RESPONSE +08:48:38 Received From : +08:48:38 ============================================================================ +08:48:38 FNo. Len. Field Value +08:48:38 ============================================================================ +08:48:38 [ 1] [ 4] [0810] +08:48:38 [ 7] [ 10] [0320014838] +08:48:38 [ 11] [ 6] [806923] +08:48:38 [ 15] [ 4] [0320] +08:48:38 [ 37] [ 12] [57908806923] +08:48:38 [ 39] [ 2] [00] +08:48:38 [ 70] [ 3] [001] +08:48:38 ============================================================================ +08:48:38 Sending to : +08:48:38 ============================================================================ +08:48:38 + + +waiting on router queue for slot.... +08:48:40 ============================================================================ +08:48:40 Slot Id : <84> +08:48:40 Transaction Type : REQUEST +08:48:40 Received From : +08:48:40 ============================================================================ +08:48:40 FNo. Len. Field Value +08:48:40 ============================================================================ +08:48:40 [ 1] [ 4] [0200] +08:48:40 [ 2] [ 16] [1808931800018051] +08:48:40 [ 3] [ 6] [012000] +08:48:40 [ 4] [ 12] [000010000000] +08:48:40 [ 7] [ 10] [0320084837] +08:48:40 [ 11] [ 6] [689203] +08:48:40 [ 12] [ 6] [084837] +08:48:40 [ 13] [ 4] [0320] +08:48:40 [ 15] [ 4] [0320] +08:48:40 [ 18] [ 4] [6011] +08:48:40 [ 22] [ 3] [900] +08:48:40 [ 25] [ 2] [02] +08:48:40 [ 28] [ 9] [D00002000] +08:48:40 [ 32] [ 6] [621354] +08:48:40 [ 35] [ 27] [1808931800018051=1803500398] +08:48:40 [ 37] [ 12] [507904635420] +08:48:40 [ 41] [ 8] [17000800] +08:48:40 [ 42] [ 15] [NATIVE ] +08:48:40 [ 43] [ 40] [Ban Nakhai Naxay LAO] +08:48:40 [ 49] [ 3] [418] +08:48:40 [ 52] [ 16] [5483E6E488A02F7D] +08:48:40 ============================================================================ +08:48:40 + + +waiting on router queue for slot.... +08:48:40 Sending to : +08:48:40 ============================================================================ +08:48:40 Sending to : +08:48:40 ============================================================================ +08:48:40 ============================================================================ +08:48:40 Slot Id : <67> +08:48:40 Transaction Type : REQUEST +08:48:40 Received From : +08:48:40 ============================================================================ +08:48:40 FNo. Len. Field Value +08:48:40 ============================================================================ +08:48:40 [ 1] [ 4] [0800] +08:48:40 [ 7] [ 10] [0320014749] +08:48:40 [ 11] [ 6] [155489] +08:48:40 [ 70] [ 3] [301] +08:48:40 ============================================================================ +08:48:40 + + +waiting on router queue for slot.... +08:48:40 Sending to : +08:48:40 ============================================================================ +08:48:40 ============================================================================ +08:48:40 Slot Id : <67> +08:48:40 Transaction Type : RESPONSE +08:48:40 Received From : +08:48:40 ============================================================================ +08:48:40 FNo. Len. Field Value +08:48:40 ============================================================================ +08:48:40 [ 1] [ 4] [0810] +08:48:40 [ 7] [ 10] [0320014749] +08:48:40 [ 11] [ 6] [155489] +08:48:40 [ 39] [ 2] [00] +08:48:40 [ 70] [ 3] [301] +08:48:40 ============================================================================ +08:48:40 Calculate Source COMM Id = 2 +08:48:40 ============================================================================ +08:48:40 + + +waiting on router queue for slot.... +08:48:41 ============================================================================ +08:48:41 Slot Id : <84> +08:48:41 Transaction Type : REQUEST +08:48:41 Received From : +08:48:41 ============================================================================ +08:48:41 FNo. Len. Field Value +08:48:41 ============================================================================ +08:48:41 [ 1] [ 4] [0200] +08:48:41 [ 2] [ 16] [1808931800018051] +08:48:41 [ 3] [ 6] [012000] +08:48:41 [ 4] [ 12] [000010000000] +08:48:41 [ 7] [ 10] [0320084837] +08:48:41 [ 11] [ 6] [689203] +08:48:41 [ 12] [ 6] [084837] +08:48:41 [ 13] [ 4] [0320] +08:48:41 [ 15] [ 4] [0320] +08:48:41 [ 18] [ 4] [6011] +08:48:41 [ 22] [ 3] [900] +08:48:41 [ 25] [ 2] [02] +08:48:41 [ 28] [ 9] [D00002000] +08:48:41 [ 32] [ 6] [621354] +08:48:41 [ 35] [ 27] [1808931800018051=1803500398] +08:48:41 [ 37] [ 12] [507904635420] +08:48:41 [ 41] [ 8] [17000800] +08:48:41 [ 42] [ 15] [NATIVE ] +08:48:41 [ 43] [ 40] [Ban Nakhai Naxay LAO] +08:48:41 [ 49] [ 3] [418] +08:48:41 [ 52] [ 16] [5483E6E488A02F7D] +08:48:41 ============================================================================ +08:48:41 + + +waiting on router queue for slot.... +08:48:41 Sending to : +08:48:41 ============================================================================ +08:48:41 ============================================================================ +08:48:41 Slot Id : <84> +08:48:41 Transaction Type : REQUEST +08:48:41 Received From : +08:48:41 ============================================================================ +08:48:41 FNo. Len. Field Value +08:48:41 ============================================================================ +08:48:41 [ 1] [ 4] [0200] +08:48:41 [ 2] [ 16] [1808931800018051] +08:48:41 [ 3] [ 6] [012000] +08:48:41 [ 4] [ 12] [000010000000] +08:48:41 [ 7] [ 10] [0320084837] +08:48:41 [ 11] [ 6] [689203] +08:48:41 [ 12] [ 6] [084837] +08:48:41 [ 13] [ 4] [0320] +08:48:41 [ 15] [ 4] [0320] +08:48:41 [ 18] [ 4] [6011] +08:48:41 [ 22] [ 3] [900] +08:48:41 [ 25] [ 2] [02] +08:48:41 [ 28] [ 9] [D00002000] +08:48:41 [ 32] [ 6] [621354] +08:48:41 [ 35] [ 27] [1808931800018051=1803500398] +08:48:41 [ 37] [ 12] [507904635420] +08:48:41 [ 41] [ 8] [17000800] +08:48:41 [ 42] [ 15] [NATIVE ] +08:48:41 [ 43] [ 40] [Ban Nakhai Naxay LAO] +08:48:41 [ 49] [ 3] [418] +08:48:41 [ 52] [ 16] [59E931F6A6E58539] +08:48:41 ============================================================================ +08:48:41 + + +waiting on router queue for slot.... +08:48:41 Sending to : <2> +08:48:41 ============================================================================ +08:48:43 ============================================================================ +08:48:43 Slot Id : <84> +08:48:43 Transaction Type : RESPONSE +08:48:43 Received From : +08:48:43 ============================================================================ +08:48:43 FNo. Len. Field Value +08:48:43 ============================================================================ +08:48:43 [ 1] [ 4] [0210] +08:48:43 [ 2] [ 16] [1808931800018051] +08:48:43 [ 3] [ 6] [012000] +08:48:43 [ 4] [ 12] [000010000000] +08:48:43 [ 7] [ 10] [0320084837] +08:48:43 [ 11] [ 6] [689203] +08:48:43 [ 12] [ 6] [084837] +08:48:43 [ 13] [ 4] [0320] +08:48:43 [ 18] [ 4] [6011] +08:48:43 [ 19] [ 3] [418] +08:48:43 [ 22] [ 3] [021] +08:48:43 [ 28] [ 9] [D00002000] +08:48:43 [ 32] [ 6] [621354] +08:48:43 [ 35] [ 27] [1808931800018051=1803500398] +08:48:43 [ 37] [ 12] [507904635420] +08:48:43 [ 39] [ 2] [42] +08:48:43 [ 41] [ 8] [17000800] +08:48:43 [ 49] [ 3] [418] +08:48:43 [ 52] [ 16] [59E931F6A6E58539] +08:48:43 ============================================================================ +08:48:43 Sending to : +08:48:43 ============================================================================ +08:48:43 + + +waiting on router queue for slot.... +08:48:44 ============================================================================ +08:48:44 Slot Id : <84> +08:48:44 Transaction Type : RESPONSE +08:48:44 Received From : +08:48:44 ============================================================================ +08:48:44 FNo. Len. Field Value +08:48:44 ============================================================================ +08:48:44 [ 1] [ 4] [0210] +08:48:44 [ 2] [ 16] [1808931800018051] +08:48:44 [ 3] [ 6] [012000] +08:48:44 [ 4] [ 12] [000010000000] +08:48:44 [ 7] [ 10] [0320084837] +08:48:44 [ 11] [ 6] [689203] +08:48:44 [ 12] [ 6] [084837] +08:48:44 [ 13] [ 4] [0320] +08:48:44 [ 18] [ 4] [6011] +08:48:44 [ 19] [ 3] [418] +08:48:44 [ 22] [ 3] [021] +08:48:44 [ 28] [ 9] [D00002000] +08:48:44 [ 32] [ 6] [621354] +08:48:44 [ 35] [ 27] [1808931800018051=1803500398] +08:48:44 [ 37] [ 12] [507904635420] +08:48:44 [ 39] [ 2] [42] +08:48:44 [ 41] [ 8] [17000800] +08:48:44 [ 49] [ 3] [418] +08:48:44 [ 52] [ 16] [59E931F6A6E58539] +08:48:44 ============================================================================ +08:48:44 Calculate Source COMM Id = 0 +08:48:44 ============================================================================ +08:48:44 + + +waiting on router queue for slot.... +08:48:46 ============================================================================ +08:48:46 Slot Id : <62> +08:48:46 Transaction Type : REQUEST +08:48:46 Received From : +08:48:46 ============================================================================ +08:48:46 FNo. Len. Field Value +08:48:46 ============================================================================ +08:48:46 [ 1] [ 4] [0800] +08:48:46 [ 7] [ 10] [0320160035] +08:48:46 [ 11] [ 6] [090035] +08:48:46 [ 37] [ 12] [57909090035] +08:48:46 [ 70] [ 3] [301] +08:48:46 ============================================================================ +08:48:46 + + +waiting on router queue for slot.... +08:48:46 Sending to : +08:48:46 ============================================================================ +08:48:46 ============================================================================ +08:48:46 Slot Id : <62> +08:48:46 Transaction Type : RESPONSE +08:48:46 Received From : +08:48:46 ============================================================================ +08:48:46 FNo. Len. Field Value +08:48:46 ============================================================================ +08:48:46 [ 1] [ 4] [0810] +08:48:46 [ 7] [ 10] [0320160035] +08:48:46 [ 11] [ 6] [090035] +08:48:46 [ 37] [ 12] [579090900350] +08:48:46 [ 39] [ 2] [00] +08:48:46 [ 70] [ 3] [810] +08:48:46 ============================================================================ +08:48:46 Calculate Source COMM Id = 6 +08:48:46 ============================================================================ +08:48:46 + + +waiting on router queue for slot.... +08:48:55 ============================================================================ +08:48:55 Slot Id : <99> +08:48:55 Transaction Type : REQUEST +08:48:55 Received From : +08:48:55 ============================================================================ +08:48:55 FNo. Len. Field Value +08:48:55 ============================================================================ +08:48:55 [ 1] [ 4] [0800] +08:48:55 [ 7] [ 10] [0320014804] +08:48:55 [ 11] [ 6] [155490] +08:48:55 [ 70] [ 3] [301] +08:48:55 ============================================================================ +08:48:55 + + +waiting on router queue for slot.... +08:48:55 Sending to : +08:48:55 ============================================================================ +08:48:55 ============================================================================ +08:48:55 Slot Id : <99> +08:48:55 Transaction Type : RESPONSE +08:48:55 Received From : +08:48:55 ============================================================================ +08:48:55 FNo. Len. Field Value +08:48:55 ============================================================================ +08:48:55 [ 1] [ 4] [0810] +08:48:55 [ 7] [ 10] [0320014804] +08:48:55 [ 11] [ 6] [155490] +08:48:55 [ 39] [ 2] [00] +08:48:55 [ 70] [ 3] [301] +08:48:55 ============================================================================ +08:48:55 Calculate Source COMM Id = 2 +08:48:55 ============================================================================ +08:48:55 + + +waiting on router queue for slot.... +08:49:06 ============================================================================ +08:49:06 Slot Id : <39> +08:49:06 Transaction Type : REQUEST +08:49:06 Received From : +08:49:06 ============================================================================ +08:49:06 FNo. Len. Field Value +08:49:06 ============================================================================ +08:49:06 [ 1] [ 4] [0800] +08:49:06 [ 7] [ 10] [0320014814] +08:49:06 [ 11] [ 6] [155491] +08:49:06 [ 70] [ 3] [301] +08:49:06 ============================================================================ +08:49:06 + + +waiting on router queue for slot.... +08:49:06 Sending to : +08:49:06 ============================================================================ +08:49:06 ============================================================================ +08:49:06 Slot Id : <39> +08:49:06 Transaction Type : RESPONSE +08:49:06 Received From : +08:49:06 ============================================================================ +08:49:06 FNo. Len. Field Value +08:49:06 ============================================================================ +08:49:06 [ 1] [ 4] [0810] +08:49:06 [ 7] [ 10] [0320014814] +08:49:06 [ 11] [ 6] [155491] +08:49:06 [ 39] [ 2] [00] +08:49:06 [ 70] [ 3] [301] +08:49:06 ============================================================================ +08:49:06 Calculate Source COMM Id = 2 +08:49:06 ============================================================================ +08:49:06 + + +waiting on router queue for slot.... +08:49:16 ============================================================================ +08:49:16 Slot Id : <64> +08:49:16 Transaction Type : REQUEST +08:49:16 Received From : +08:49:16 ============================================================================ +08:49:16 FNo. Len. Field Value +08:49:16 ============================================================================ +08:49:16 [ 1] [ 4] [0200] +08:49:16 [ 2] [ 16] [6213542000006883] +08:49:16 [ 3] [ 6] [300000] +08:49:16 [ 4] [ 12] [000000000000] +08:49:16 [ 7] [ 10] [0320084708] +08:49:16 [ 11] [ 6] [933843] +08:49:16 [ 12] [ 6] [084708] +08:49:16 [ 13] [ 4] [0320] +08:49:16 [ 15] [ 4] [0320] +08:49:16 [ 18] [ 4] [6011] +08:49:16 [ 19] [ 3] [418] +08:49:16 [ 22] [ 3] [021] +08:49:16 [ 25] [ 2] [01] +08:49:16 [ 28] [ 9] [D00000000] +08:49:16 [ 32] [ 6] [668899] +08:49:16 [ 35] [ 32] [6213542000006883=491212010688989] +08:49:16 [ 37] [ 12] [507901416575] +08:49:16 [ 41] [ 8] [03011002] +08:49:16 [ 42] [ 15] [APT ] +08:49:16 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:49:16 [ 49] [ 3] [418] +08:49:16 [ 52] [ 16] [E0F848A1712FC2CD] +08:49:16 ============================================================================ +08:49:16 + + +waiting on router queue for slot.... +08:49:16 Sending to : +08:49:16 ============================================================================ +08:49:16 Sending to : +08:49:16 ============================================================================ +08:49:17 ============================================================================ +08:49:17 Slot Id : <64> +08:49:17 Transaction Type : REQUEST +08:49:17 Received From : +08:49:17 ============================================================================ +08:49:17 FNo. Len. Field Value +08:49:17 ============================================================================ +08:49:17 [ 1] [ 4] [0200] +08:49:17 [ 2] [ 16] [6213542000006883] +08:49:17 [ 3] [ 6] [300000] +08:49:17 [ 4] [ 12] [000000000000] +08:49:17 [ 7] [ 10] [0320084708] +08:49:17 [ 11] [ 6] [933843] +08:49:17 [ 12] [ 6] [084708] +08:49:17 [ 13] [ 4] [0320] +08:49:17 [ 15] [ 4] [0320] +08:49:17 [ 18] [ 4] [6011] +08:49:17 [ 19] [ 3] [418] +08:49:17 [ 22] [ 3] [021] +08:49:17 [ 25] [ 2] [01] +08:49:17 [ 28] [ 9] [D00000000] +08:49:17 [ 32] [ 6] [668899] +08:49:17 [ 35] [ 32] [6213542000006883=491212010688989] +08:49:17 [ 37] [ 12] [507901416575] +08:49:17 [ 41] [ 8] [03011002] +08:49:17 [ 42] [ 15] [APT ] +08:49:17 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:49:17 [ 49] [ 3] [418] +08:49:17 [ 52] [ 16] [E0F848A1712FC2CD] +08:49:17 ============================================================================ +08:49:17 + + +waiting on router queue for slot.... +08:49:17 Sending to : +08:49:17 ============================================================================ +08:49:17 ============================================================================ +08:49:17 Slot Id : <51> +08:49:17 Transaction Type : REQUEST +08:49:17 Received From : +08:49:17 ============================================================================ +08:49:17 FNo. Len. Field Value +08:49:17 ============================================================================ +08:49:17 [ 1] [ 4] [0800] +08:49:17 [ 7] [ 10] [0320014825] +08:49:17 [ 11] [ 6] [155492] +08:49:17 [ 70] [ 3] [301] +08:49:17 ============================================================================ +08:49:17 + + +waiting on router queue for slot.... +08:49:17 Sending to : +08:49:17 ============================================================================ +08:49:17 ============================================================================ +08:49:17 Slot Id : <51> +08:49:17 Transaction Type : RESPONSE +08:49:17 Received From : +08:49:17 ============================================================================ +08:49:17 FNo. Len. Field Value +08:49:17 ============================================================================ +08:49:17 [ 1] [ 4] [0810] +08:49:17 [ 7] [ 10] [0320014825] +08:49:17 [ 11] [ 6] [155492] +08:49:17 [ 39] [ 2] [00] +08:49:17 [ 70] [ 3] [301] +08:49:17 ============================================================================ +08:49:17 Calculate Source COMM Id = 2 +08:49:17 ============================================================================ +08:49:17 + + +waiting on router queue for slot.... +08:49:17 ============================================================================ +08:49:17 Slot Id : <64> +08:49:17 Transaction Type : REQUEST +08:49:17 Received From : +08:49:17 ============================================================================ +08:49:17 FNo. Len. Field Value +08:49:17 ============================================================================ +08:49:17 [ 1] [ 4] [0200] +08:49:17 [ 2] [ 16] [6213542000006883] +08:49:17 [ 3] [ 6] [300000] +08:49:17 [ 4] [ 12] [000000000000] +08:49:17 [ 7] [ 10] [0320084708] +08:49:17 [ 11] [ 6] [933843] +08:49:17 [ 12] [ 6] [084708] +08:49:17 [ 13] [ 4] [0320] +08:49:17 [ 15] [ 4] [0320] +08:49:17 [ 18] [ 4] [6011] +08:49:17 [ 19] [ 3] [418] +08:49:17 [ 22] [ 3] [021] +08:49:17 [ 25] [ 2] [01] +08:49:17 [ 28] [ 9] [D00000000] +08:49:17 [ 32] [ 6] [668899] +08:49:17 [ 35] [ 32] [6213542000006883=491212010688989] +08:49:17 [ 37] [ 12] [507901416575] +08:49:17 [ 41] [ 8] [03011002] +08:49:17 [ 42] [ 15] [APT ] +08:49:17 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +08:49:17 [ 49] [ 3] [418] +08:49:17 [ 52] [ 16] [61BCE9D1F78EA51E] +08:49:17 ============================================================================ +08:49:17 + + +waiting on router queue for slot.... +08:49:17 Sending to : <0> +08:49:17 ============================================================================ +08:49:17 ============================================================================ +08:49:17 Slot Id : <64> +08:49:17 Transaction Type : RESPONSE +08:49:17 Received From : +08:49:17 ============================================================================ +08:49:17 FNo. Len. Field Value +08:49:17 ============================================================================ +08:49:17 [ 1] [ 4] [0210] +08:49:17 [ 2] [ 16] [6213542000006883] +08:49:17 [ 3] [ 6] [300000] +08:49:17 [ 4] [ 12] [000000000000] +08:49:17 [ 7] [ 10] [0320084708] +08:49:17 [ 11] [ 6] [933843] +08:49:17 [ 12] [ 6] [084708] +08:49:17 [ 13] [ 4] [0320] +08:49:17 [ 15] [ 4] [0320] +08:49:17 [ 18] [ 4] [6011] +08:49:17 [ 19] [ 3] [418] +08:49:17 [ 32] [ 6] [668899] +08:49:17 [ 35] [ 32] [6213542000006883=491212010688989] +08:49:17 [ 37] [ 12] [507901416575] +08:49:17 [ 38] [ 6] [204317] +08:49:17 [ 39] [ 2] [00] +08:49:17 [ 41] [ 8] [03011002] +08:49:17 [ 49] [ 3] [418] +08:49:17 [ 54] [ 40] [0001418C0010298345490002418C001029834549] +08:49:17 ============================================================================ +08:49:17 Sending to : +08:49:17 ============================================================================ +08:49:17 + + +waiting on router queue for slot.... +08:49:19 ============================================================================ +08:49:19 Slot Id : <64> +08:49:19 Transaction Type : RESPONSE +08:49:19 Received From : +08:49:19 ============================================================================ +08:49:19 FNo. Len. Field Value +08:49:19 ============================================================================ +08:49:19 [ 1] [ 4] [0210] +08:49:19 [ 2] [ 16] [6213542000006883] +08:49:19 [ 3] [ 6] [300000] +08:49:19 [ 4] [ 12] [000000000000] +08:49:19 [ 7] [ 10] [0320084708] +08:49:19 [ 11] [ 6] [933843] +08:49:19 [ 12] [ 6] [084708] +08:49:19 [ 13] [ 4] [0320] +08:49:19 [ 15] [ 4] [0320] +08:49:19 [ 18] [ 4] [6011] +08:49:19 [ 19] [ 3] [418] +08:49:19 [ 32] [ 6] [668899] +08:49:19 [ 35] [ 32] [6213542000006883=491212010688989] +08:49:19 [ 37] [ 12] [507901416575] +08:49:19 [ 38] [ 6] [204317] +08:49:19 [ 39] [ 2] [00] +08:49:19 [ 41] [ 8] [03011002] +08:49:19 [ 49] [ 3] [418] +08:49:19 [ 54] [ 40] [0001418C0010298345490002418C001029834549] +08:49:19 ============================================================================ +08:49:19 Calculate Source COMM Id = 4 +08:49:19 ============================================================================ +08:49:19 + + +waiting on router queue for slot.... +08:49:27 ============================================================================ +08:49:27 Slot Id : <82> +08:49:27 Transaction Type : REQUEST +08:49:27 Received From : +08:49:27 ============================================================================ +08:49:27 FNo. Len. Field Value +08:49:27 ============================================================================ +08:49:27 [ 1] [ 4] [0800] +08:49:27 [ 7] [ 10] [0320014835] +08:49:27 [ 11] [ 6] [155493] +08:49:27 [ 70] [ 3] [301] +08:49:27 ============================================================================ +08:49:27 + + +waiting on router queue for slot.... +08:49:27 Sending to : +08:49:27 ============================================================================ +08:49:27 ============================================================================ +08:49:27 Slot Id : <82> +08:49:27 Transaction Type : RESPONSE +08:49:27 Received From : +08:49:27 ============================================================================ +08:49:27 FNo. Len. Field Value +08:49:27 ============================================================================ +08:49:27 [ 1] [ 4] [0810] +08:49:27 [ 7] [ 10] [0320014835] +08:49:27 [ 11] [ 6] [155493] +08:49:27 [ 39] [ 2] [00] +08:49:27 [ 70] [ 3] [301] +08:49:27 ============================================================================ +08:49:27 Calculate Source COMM Id = 2 +08:49:27 ============================================================================ +08:49:27 + + +waiting on router queue for slot.... +08:49:40 ============================================================================ +08:49:40 Slot Id : <93> +08:49:40 Transaction Type : REQUEST +08:49:40 Received From : +08:49:40 ============================================================================ +08:49:40 FNo. Len. Field Value +08:49:40 ============================================================================ +08:49:40 [ 1] [ 4] [0800] +08:49:40 [ 2] [ 5] [02531] +08:49:40 [ 3] [ 6] [579088] +08:49:40 [ 7] [ 10] [0320014940] +08:49:40 [ 11] [ 6] [806924] +08:49:40 [ 15] [ 10] [0320014940] +08:49:40 [ 37] [ 11] [57908806924] +08:49:40 [ 70] [ 3] [001] +08:49:40 ============================================================================ +08:49:40 + + +waiting on router queue for slot.... +08:49:40 ============================================================================ +08:49:40 Slot Id : <93> +08:49:40 Transaction Type : RESPONSE +08:49:40 Received From : +08:49:40 ============================================================================ +08:49:40 FNo. Len. Field Value +08:49:40 ============================================================================ +08:49:40 [ 1] [ 4] [0810] +08:49:40 [ 7] [ 10] [0320014940] +08:49:40 [ 11] [ 6] [806924] +08:49:40 [ 15] [ 4] [0320] +08:49:40 [ 37] [ 12] [57908806924] +08:49:40 [ 39] [ 2] [00] +08:49:40 [ 70] [ 3] [001] +08:49:40 ============================================================================ +08:49:40 Sending to : +08:49:40 ============================================================================ +08:49:40 + + +waiting on router queue for slot.... +08:49:43 ============================================================================ +08:49:43 Slot Id : <56> +08:49:43 Transaction Type : REQUEST +08:49:43 Received From : +08:49:43 ============================================================================ +08:49:43 FNo. Len. Field Value +08:49:43 ============================================================================ +08:49:43 [ 1] [ 4] [0800] +08:49:43 [ 7] [ 10] [0320014850] +08:49:43 [ 11] [ 6] [155494] +08:49:43 [ 70] [ 3] [301] +08:49:43 ============================================================================ +08:49:43 + + +waiting on router queue for slot.... +08:49:43 Sending to : +08:49:43 ============================================================================ +08:49:43 ============================================================================ +08:49:43 Slot Id : <56> +08:49:43 Transaction Type : RESPONSE +08:49:43 Received From : +08:49:43 ============================================================================ +08:49:43 FNo. Len. Field Value +08:49:43 ============================================================================ +08:49:43 [ 1] [ 4] [0810] +08:49:43 [ 7] [ 10] [0320014850] +08:49:43 [ 11] [ 6] [155494] +08:49:43 [ 39] [ 2] [00] +08:49:43 [ 70] [ 3] [301] +08:49:43 ============================================================================ +08:49:43 Calculate Source COMM Id = 2 +08:49:43 ============================================================================ +08:49:43 + + +waiting on router queue for slot.... +08:49:51 ============================================================================ +08:49:51 Slot Id : <100> +08:49:51 Transaction Type : REQUEST +08:49:51 Received From : +08:49:51 ============================================================================ +08:49:51 FNo. Len. Field Value +08:49:51 ============================================================================ +08:49:51 [ 1] [ 4] [0800] +08:49:51 [ 7] [ 10] [0320160140] +08:49:51 [ 11] [ 6] [090140] +08:49:51 [ 37] [ 12] [57909090140] +08:49:51 [ 70] [ 3] [301] +08:49:51 ============================================================================ +08:49:51 + + +waiting on router queue for slot.... +08:49:51 Sending to : +08:49:51 ============================================================================ +08:49:51 ============================================================================ +08:49:51 Slot Id : <100> +08:49:51 Transaction Type : RESPONSE +08:49:51 Received From : +08:49:51 ============================================================================ +08:49:51 FNo. Len. Field Value +08:49:51 ============================================================================ +08:49:51 [ 1] [ 4] [0810] +08:49:51 [ 7] [ 10] [0320160140] +08:49:51 [ 11] [ 6] [090140] +08:49:51 [ 37] [ 12] [579090901400] +08:49:51 [ 39] [ 2] [00] +08:49:51 [ 70] [ 3] [810] +08:49:51 ============================================================================ +08:49:51 Calculate Source COMM Id = 6 +08:49:51 ============================================================================ +08:49:51 + + +waiting on router queue for slot.... +08:49:54 ============================================================================ +08:49:54 Slot Id : <91> +08:49:54 Transaction Type : REQUEST +08:49:54 Received From : +08:49:54 ============================================================================ +08:49:54 FNo. Len. Field Value +08:49:54 ============================================================================ +08:49:54 [ 1] [ 4] [0800] +08:49:54 [ 7] [ 10] [0320014902] +08:49:54 [ 11] [ 6] [155495] +08:49:54 [ 70] [ 3] [301] +08:49:54 ============================================================================ +08:49:54 + + +waiting on router queue for slot.... +08:49:54 Sending to : +08:49:54 ============================================================================ +08:49:54 ============================================================================ +08:49:54 Slot Id : <91> +08:49:54 Transaction Type : RESPONSE +08:49:54 Received From : +08:49:54 ============================================================================ +08:49:54 FNo. Len. Field Value +08:49:54 ============================================================================ +08:49:54 [ 1] [ 4] [0810] +08:49:54 [ 7] [ 10] [0320014902] +08:49:54 [ 11] [ 6] [155495] +08:49:54 [ 39] [ 2] [00] +08:49:54 [ 70] [ 3] [301] +08:49:54 ============================================================================ +08:49:54 Calculate Source COMM Id = 2 +08:49:54 ============================================================================ +08:49:54 + + +waiting on router queue for slot.... +08:49:55 ============================================================================ +08:49:55 Slot Id : <77> +08:49:55 Transaction Type : REQUEST +08:49:55 Received From : +08:49:55 ============================================================================ +08:49:55 FNo. Len. Field Value +08:49:55 ============================================================================ +08:49:55 [ 1] [ 4] [0800] +08:49:55 [ 7] [ 10] [0320015742] +08:49:55 [ 11] [ 6] [026585] +08:49:55 [ 37] [ 12] [57908026585] +08:49:55 [ 70] [ 3] [301] +08:49:55 ============================================================================ +08:49:55 + + +waiting on router queue for slot.... +08:49:55 Sending to : +08:49:55 ============================================================================ +08:49:55 ============================================================================ +08:49:55 Slot Id : <77> +08:49:55 Transaction Type : RESPONSE +08:49:55 Received From : +08:49:55 ============================================================================ +08:49:55 FNo. Len. Field Value +08:49:55 ============================================================================ +08:49:55 [ 1] [ 4] [0810] +08:49:55 [ 7] [ 10] [0320015742] +08:49:55 [ 11] [ 6] [026585] +08:49:55 [ 37] [ 12] [579080265850] +08:49:55 [ 39] [ 2] [00] +08:49:55 [ 70] [ 3] [810] +08:49:55 ============================================================================ +08:49:55 Calculate Source COMM Id = 1 +08:49:55 ============================================================================ +08:49:55 + + +waiting on router queue for slot.... +08:50:06 ============================================================================ +08:50:06 Slot Id : <65> +08:50:06 Transaction Type : REQUEST +08:50:06 Received From : +08:50:06 ============================================================================ +08:50:06 FNo. Len. Field Value +08:50:06 ============================================================================ +08:50:06 [ 1] [ 4] [0800] +08:50:06 [ 7] [ 10] [0320014914] +08:50:06 [ 11] [ 6] [155496] +08:50:06 [ 70] [ 3] [301] +08:50:06 ============================================================================ +08:50:06 + + +waiting on router queue for slot.... +08:50:06 Sending to : +08:50:06 ============================================================================ +08:50:06 ============================================================================ +08:50:06 Slot Id : <65> +08:50:06 Transaction Type : RESPONSE +08:50:06 Received From : +08:50:06 ============================================================================ +08:50:06 FNo. Len. Field Value +08:50:06 ============================================================================ +08:50:06 [ 1] [ 4] [0810] +08:50:06 [ 7] [ 10] [0320014914] +08:50:06 [ 11] [ 6] [155496] +08:50:06 [ 39] [ 2] [00] +08:50:06 [ 70] [ 3] [301] +08:50:06 ============================================================================ +08:50:06 Calculate Source COMM Id = 2 +08:50:06 ============================================================================ +08:50:06 + + +waiting on router queue for slot.... +08:50:22 ============================================================================ +08:50:22 Slot Id : <72> +08:50:22 Transaction Type : REQUEST +08:50:22 Received From : +08:50:22 ============================================================================ +08:50:22 FNo. Len. Field Value +08:50:22 ============================================================================ +08:50:22 [ 1] [ 4] [0800] +08:50:22 [ 7] [ 10] [0320014930] +08:50:22 [ 11] [ 6] [155497] +08:50:22 [ 70] [ 3] [301] +08:50:22 ============================================================================ +08:50:22 + + +waiting on router queue for slot.... +08:50:22 Sending to : +08:50:22 ============================================================================ +08:50:22 ============================================================================ +08:50:22 Slot Id : <72> +08:50:22 Transaction Type : RESPONSE +08:50:22 Received From : +08:50:22 ============================================================================ +08:50:22 FNo. Len. Field Value +08:50:22 ============================================================================ +08:50:22 [ 1] [ 4] [0810] +08:50:22 [ 7] [ 10] [0320014930] +08:50:22 [ 11] [ 6] [155497] +08:50:22 [ 39] [ 2] [00] +08:50:22 [ 70] [ 3] [301] +08:50:22 ============================================================================ +08:50:22 Calculate Source COMM Id = 2 +08:50:22 ============================================================================ +08:50:22 + + +waiting on router queue for slot.... +08:50:33 ============================================================================ +08:50:33 Slot Id : <106> +08:50:33 Transaction Type : REQUEST +08:50:33 Received From : +08:50:33 ============================================================================ +08:50:33 FNo. Len. Field Value +08:50:33 ============================================================================ +08:50:33 [ 1] [ 4] [0800] +08:50:33 [ 7] [ 10] [0320014941] +08:50:33 [ 11] [ 6] [155498] +08:50:33 [ 70] [ 3] [301] +08:50:33 ============================================================================ +08:50:33 + + +waiting on router queue for slot.... +08:50:33 Sending to : +08:50:33 ============================================================================ +08:50:33 ============================================================================ +08:50:33 Slot Id : <106> +08:50:33 Transaction Type : RESPONSE +08:50:33 Received From : +08:50:33 ============================================================================ +08:50:33 FNo. Len. Field Value +08:50:33 ============================================================================ +08:50:33 [ 1] [ 4] [0810] +08:50:33 [ 7] [ 10] [0320014941] +08:50:33 [ 11] [ 6] [155498] +08:50:33 [ 39] [ 2] [00] +08:50:33 [ 70] [ 3] [301] +08:50:33 ============================================================================ +08:50:33 Calculate Source COMM Id = 2 +08:50:33 ============================================================================ +08:50:33 + + +waiting on router queue for slot.... +08:50:39 ============================================================================ +08:50:39 Slot Id : <66> +08:50:39 Transaction Type : REQUEST +08:50:39 Received From : +08:50:39 ============================================================================ +08:50:39 FNo. Len. Field Value +08:50:39 ============================================================================ +08:50:39 [ 1] [ 4] [0200] +08:50:39 [ 2] [ 16] [1808931300012117] +08:50:39 [ 3] [ 6] [010000] +08:50:39 [ 4] [ 12] [000010000000] +08:50:39 [ 7] [ 10] [0320085036] +08:50:39 [ 11] [ 6] [689663] +08:50:39 [ 12] [ 6] [085036] +08:50:39 [ 13] [ 4] [0320] +08:50:39 [ 15] [ 4] [0320] +08:50:39 [ 18] [ 4] [6011] +08:50:39 [ 22] [ 3] [900] +08:50:39 [ 25] [ 2] [02] +08:50:39 [ 28] [ 9] [D00002000] +08:50:39 [ 32] [ 6] [621354] +08:50:39 [ 35] [ 27] [1808931300012117=1803500359] +08:50:39 [ 37] [ 12] [507903938988] +08:50:39 [ 41] [ 8] [01010900] +08:50:39 [ 42] [ 15] [NATIVE ] +08:50:39 [ 43] [ 40] [Bank KM9 Xatthany LAO] +08:50:39 [ 49] [ 3] [418] +08:50:39 [ 52] [ 16] [C188C455921C6B83] +08:50:39 ============================================================================ +08:50:39 + + +waiting on router queue for slot.... +08:50:39 Sending to : +08:50:39 ============================================================================ +08:50:39 Sending to : +08:50:39 ============================================================================ +08:50:40 ============================================================================ +08:50:40 Slot Id : <66> +08:50:40 Transaction Type : REQUEST +08:50:40 Received From : +08:50:40 ============================================================================ +08:50:40 FNo. Len. Field Value +08:50:40 ============================================================================ +08:50:40 [ 1] [ 4] [0200] +08:50:40 [ 2] [ 16] [1808931300012117] +08:50:40 [ 3] [ 6] [010000] +08:50:40 [ 4] [ 12] [000010000000] +08:50:40 [ 7] [ 10] [0320085036] +08:50:40 [ 11] [ 6] [689663] +08:50:40 [ 12] [ 6] [085036] +08:50:40 [ 13] [ 4] [0320] +08:50:40 [ 15] [ 4] [0320] +08:50:40 [ 18] [ 4] [6011] +08:50:40 [ 22] [ 3] [900] +08:50:40 [ 25] [ 2] [02] +08:50:40 [ 28] [ 9] [D00002000] +08:50:40 [ 32] [ 6] [621354] +08:50:40 [ 35] [ 27] [1808931300012117=1803500359] +08:50:40 [ 37] [ 12] [507903938988] +08:50:40 [ 41] [ 8] [01010900] +08:50:40 [ 42] [ 15] [NATIVE ] +08:50:40 [ 43] [ 40] [Bank KM9 Xatthany LAO] +08:50:40 [ 49] [ 3] [418] +08:50:40 [ 52] [ 16] [C188C455921C6B83] +08:50:40 ============================================================================ +08:50:40 + + +waiting on router queue for slot.... +08:50:40 Sending to : +08:50:40 ============================================================================ +08:50:40 ============================================================================ +08:50:40 Slot Id : <66> +08:50:40 Transaction Type : REQUEST +08:50:40 Received From : +08:50:40 ============================================================================ +08:50:40 FNo. Len. Field Value +08:50:40 ============================================================================ +08:50:40 [ 1] [ 4] [0200] +08:50:40 [ 2] [ 16] [1808931300012117] +08:50:40 [ 3] [ 6] [010000] +08:50:40 [ 4] [ 12] [000010000000] +08:50:40 [ 7] [ 10] [0320085036] +08:50:40 [ 11] [ 6] [689663] +08:50:40 [ 12] [ 6] [085036] +08:50:40 [ 13] [ 4] [0320] +08:50:40 [ 15] [ 4] [0320] +08:50:40 [ 18] [ 4] [6011] +08:50:40 [ 22] [ 3] [900] +08:50:40 [ 25] [ 2] [02] +08:50:40 [ 28] [ 9] [D00002000] +08:50:40 [ 32] [ 6] [621354] +08:50:40 [ 35] [ 27] [1808931300012117=1803500359] +08:50:40 [ 37] [ 12] [507903938988] +08:50:40 [ 41] [ 8] [01010900] +08:50:40 [ 42] [ 15] [NATIVE ] +08:50:40 [ 43] [ 40] [Bank KM9 Xatthany LAO] +08:50:40 [ 49] [ 3] [418] +08:50:40 [ 52] [ 16] [96927D2CA2AE0D99] +08:50:40 ============================================================================ +08:50:40 + + +waiting on router queue for slot.... +08:50:40 Sending to : <2> +08:50:40 ============================================================================ +08:50:42 ============================================================================ +08:50:42 Slot Id : <76> +08:50:42 Transaction Type : REQUEST +08:50:42 Received From : +08:50:42 ============================================================================ +08:50:42 FNo. Len. Field Value +08:50:42 ============================================================================ +08:50:42 [ 1] [ 4] [0800] +08:50:42 [ 2] [ 5] [02531] +08:50:42 [ 3] [ 6] [579088] +08:50:42 [ 7] [ 10] [0320015042] +08:50:42 [ 11] [ 6] [806925] +08:50:42 [ 15] [ 10] [0320015042] +08:50:42 [ 37] [ 11] [57908806925] +08:50:42 [ 70] [ 3] [001] +08:50:42 ============================================================================ +08:50:42 + + +waiting on router queue for slot.... +08:50:42 ============================================================================ +08:50:42 Slot Id : <76> +08:50:42 Transaction Type : RESPONSE +08:50:42 Received From : +08:50:42 ============================================================================ +08:50:42 FNo. Len. Field Value +08:50:42 ============================================================================ +08:50:42 [ 1] [ 4] [0810] +08:50:42 [ 7] [ 10] [0320015042] +08:50:42 [ 11] [ 6] [806925] +08:50:42 [ 15] [ 4] [0320] +08:50:42 [ 37] [ 12] [57908806925] +08:50:42 [ 39] [ 2] [00] +08:50:42 [ 70] [ 3] [001] +08:50:42 ============================================================================ +08:50:42 Sending to : +08:50:42 ============================================================================ +08:50:42 + + +waiting on router queue for slot.... +08:50:47 ============================================================================ +08:50:47 Slot Id : <66> +08:50:47 Transaction Type : RESPONSE +08:50:47 Received From : +08:50:47 ============================================================================ +08:50:47 FNo. Len. Field Value +08:50:47 ============================================================================ +08:50:47 [ 1] [ 4] [0210] +08:50:47 [ 2] [ 16] [1808931300012117] +08:50:47 [ 3] [ 6] [010000] +08:50:47 [ 4] [ 12] [000010000000] +08:50:47 [ 6] [ 12] [000010000000] +08:50:47 [ 7] [ 10] [0320085036] +08:50:47 [ 11] [ 6] [689663] +08:50:47 [ 12] [ 6] [085036] +08:50:47 [ 13] [ 4] [0320] +08:50:47 [ 18] [ 4] [6011] +08:50:47 [ 19] [ 3] [418] +08:50:47 [ 22] [ 3] [021] +08:50:47 [ 32] [ 6] [621354] +08:50:47 [ 35] [ 27] [1808931300012117=1803500359] +08:50:47 [ 37] [ 12] [507903938988] +08:50:47 [ 38] [ 6] [689663] +08:50:47 [ 39] [ 2] [00] +08:50:47 [ 41] [ 8] [01010900] +08:50:47 [ 49] [ 3] [418] +08:50:47 [ 52] [ 16] [96927D2CA2AE0D99] +08:50:47 [ 54] [ 20] [1001418C000006061400] +08:50:47 ============================================================================ +08:50:47 Sending to : +08:50:47 ============================================================================ +08:50:47 + + +waiting on router queue for slot.... +08:50:48 ============================================================================ +08:50:48 Slot Id : <66> +08:50:48 Transaction Type : RESPONSE +08:50:48 Received From : +08:50:48 ============================================================================ +08:50:48 FNo. Len. Field Value +08:50:48 ============================================================================ +08:50:48 [ 1] [ 4] [0210] +08:50:48 [ 2] [ 16] [1808931300012117] +08:50:48 [ 3] [ 6] [010000] +08:50:48 [ 4] [ 12] [000010000000] +08:50:48 [ 6] [ 12] [000010000000] +08:50:48 [ 7] [ 10] [0320085036] +08:50:48 [ 11] [ 6] [689663] +08:50:48 [ 12] [ 6] [085036] +08:50:48 [ 13] [ 4] [0320] +08:50:48 [ 18] [ 4] [6011] +08:50:48 [ 19] [ 3] [418] +08:50:48 [ 22] [ 3] [021] +08:50:48 [ 32] [ 6] [621354] +08:50:48 [ 35] [ 27] [1808931300012117=1803500359] +08:50:48 [ 37] [ 12] [507903938988] +08:50:48 [ 38] [ 6] [689663] +08:50:48 [ 39] [ 2] [00] +08:50:48 [ 41] [ 8] [01010900] +08:50:48 [ 49] [ 3] [418] +08:50:48 [ 52] [ 16] [96927D2CA2AE0D99] +08:50:48 [ 54] [ 20] [1001418C000006061400] +08:50:48 ============================================================================ +08:50:48 Calculate Source COMM Id = 0 +08:50:48 ============================================================================ +08:50:48 + + +waiting on router queue for slot.... +08:50:54 ============================================================================ +08:50:54 Slot Id : <90> +08:50:54 Transaction Type : REQUEST +08:50:54 Received From : +08:50:54 ============================================================================ +08:50:54 FNo. Len. Field Value +08:50:54 ============================================================================ +08:50:54 [ 1] [ 4] [0800] +08:50:54 [ 7] [ 10] [0320015002] +08:50:54 [ 11] [ 6] [155499] +08:50:54 [ 70] [ 3] [301] +08:50:54 ============================================================================ +08:50:54 + + +waiting on router queue for slot.... +08:50:54 Sending to : +08:50:54 ============================================================================ +08:50:54 ============================================================================ +08:50:54 Slot Id : <90> +08:50:54 Transaction Type : RESPONSE +08:50:54 Received From : +08:50:54 ============================================================================ +08:50:54 FNo. Len. Field Value +08:50:54 ============================================================================ +08:50:54 [ 1] [ 4] [0810] +08:50:54 [ 7] [ 10] [0320015002] +08:50:54 [ 11] [ 6] [155499] +08:50:54 [ 39] [ 2] [00] +08:50:54 [ 70] [ 3] [301] +08:50:54 ============================================================================ +08:50:54 Calculate Source COMM Id = 2 +08:50:54 ============================================================================ +08:50:54 + + +waiting on router queue for slot.... +08:50:55 ============================================================================ +08:50:55 Slot Id : <83> +08:50:55 Transaction Type : REQUEST +08:50:55 Received From : +08:50:55 ============================================================================ +08:50:55 FNo. Len. Field Value +08:50:55 ============================================================================ +08:50:55 [ 1] [ 4] [0200] +08:50:55 [ 2] [ 16] [2206990000035642] +08:50:55 [ 3] [ 6] [301000] +08:50:55 [ 4] [ 12] [000000000000] +08:50:55 [ 7] [ 10] [0320085051] +08:50:55 [ 11] [ 6] [689734] +08:50:55 [ 12] [ 6] [085051] +08:50:55 [ 13] [ 4] [0320] +08:50:55 [ 15] [ 4] [0320] +08:50:55 [ 18] [ 4] [6011] +08:50:55 [ 22] [ 3] [900] +08:50:55 [ 25] [ 2] [02] +08:50:55 [ 28] [ 9] [D00000000] +08:50:55 [ 32] [ 6] [621354] +08:50:55 [ 35] [ 32] [2206990000035642=961212615910384] +08:50:55 [ 37] [ 12] [507902514723] +08:50:55 [ 41] [ 8] [05003400] +08:50:55 [ 42] [ 15] [NATIVE ] +08:50:55 [ 43] [ 40] [MINI BUSTATION LuangprabangLAO] +08:50:55 [ 49] [ 3] [418] +08:50:55 [ 52] [ 16] [75542DFD82E111FA] +08:50:55 ============================================================================ +08:50:55 + + +waiting on router queue for slot.... +08:50:55 Sending to : +08:50:55 ============================================================================ +08:50:55 Sending to : +08:50:55 ============================================================================ +08:50:55 ============================================================================ +08:50:55 Slot Id : <83> +08:50:55 Transaction Type : REQUEST +08:50:55 Received From : +08:50:55 ============================================================================ +08:50:55 FNo. Len. Field Value +08:50:55 ============================================================================ +08:50:55 [ 1] [ 4] [0200] +08:50:55 [ 2] [ 16] [2206990000035642] +08:50:55 [ 3] [ 6] [301000] +08:50:55 [ 4] [ 12] [000000000000] +08:50:55 [ 7] [ 10] [0320085051] +08:50:55 [ 11] [ 6] [689734] +08:50:55 [ 12] [ 6] [085051] +08:50:55 [ 13] [ 4] [0320] +08:50:55 [ 15] [ 4] [0320] +08:50:55 [ 18] [ 4] [6011] +08:50:55 [ 22] [ 3] [900] +08:50:55 [ 25] [ 2] [02] +08:50:55 [ 28] [ 9] [D00000000] +08:50:55 [ 32] [ 6] [621354] +08:50:55 [ 35] [ 32] [2206990000035642=961212615910384] +08:50:55 [ 37] [ 12] [507902514723] +08:50:55 [ 41] [ 8] [05003400] +08:50:55 [ 42] [ 15] [NATIVE ] +08:50:55 [ 43] [ 40] [MINI BUSTATION LuangprabangLAO] +08:50:55 [ 49] [ 3] [418] +08:50:55 [ 52] [ 16] [75542DFD82E111FA] +08:50:55 ============================================================================ +08:50:55 + + +waiting on router queue for slot.... +08:50:55 Sending to : +08:50:55 ============================================================================ +08:50:55 ============================================================================ +08:50:55 Slot Id : <83> +08:50:55 Transaction Type : REQUEST +08:50:55 Received From : +08:50:55 ============================================================================ +08:50:55 FNo. Len. Field Value +08:50:55 ============================================================================ +08:50:55 [ 1] [ 4] [0200] +08:50:55 [ 2] [ 16] [2206990000035642] +08:50:55 [ 3] [ 6] [301000] +08:50:55 [ 4] [ 12] [000000000000] +08:50:55 [ 7] [ 10] [0320085051] +08:50:55 [ 11] [ 6] [689734] +08:50:55 [ 12] [ 6] [085051] +08:50:55 [ 13] [ 4] [0320] +08:50:55 [ 15] [ 4] [0320] +08:50:55 [ 18] [ 4] [6011] +08:50:55 [ 22] [ 3] [900] +08:50:55 [ 25] [ 2] [02] +08:50:55 [ 28] [ 9] [D00000000] +08:50:55 [ 32] [ 6] [621354] +08:50:55 [ 35] [ 32] [2206990000035642=961212615910384] +08:50:55 [ 37] [ 12] [507902514723] +08:50:55 [ 41] [ 8] [05003400] +08:50:55 [ 42] [ 15] [NATIVE ] +08:50:55 [ 43] [ 40] [MINI BUSTATION LuangprabangLAO] +08:50:55 [ 49] [ 3] [418] +08:50:55 [ 52] [ 16] [2AC6E7D85A69A168] +08:50:55 ============================================================================ +08:50:55 + + +waiting on router queue for slot.... +08:50:55 Sending to : <1> +08:50:55 ============================================================================ +08:50:56 ============================================================================ +08:50:56 Slot Id : <114> +08:50:56 Transaction Type : REQUEST +08:50:56 Received From : +08:50:56 ============================================================================ +08:50:56 FNo. Len. Field Value +08:50:56 ============================================================================ +08:50:56 [ 1] [ 4] [0800] +08:50:56 [ 7] [ 10] [0320160245] +08:50:56 [ 11] [ 6] [090245] +08:50:56 [ 37] [ 12] [57909090245] +08:50:56 [ 70] [ 3] [301] +08:50:56 ============================================================================ +08:50:56 + + +waiting on router queue for slot.... +08:50:56 Sending to : +08:50:56 ============================================================================ +08:50:56 ============================================================================ +08:50:56 Slot Id : <114> +08:50:56 Transaction Type : RESPONSE +08:50:56 Received From : +08:50:56 ============================================================================ +08:50:56 FNo. Len. Field Value +08:50:56 ============================================================================ +08:50:56 [ 1] [ 4] [0810] +08:50:56 [ 7] [ 10] [0320160245] +08:50:56 [ 11] [ 6] [090245] +08:50:56 [ 37] [ 12] [579090902450] +08:50:56 [ 39] [ 2] [00] +08:50:56 [ 70] [ 3] [810] +08:50:56 ============================================================================ +08:50:56 Calculate Source COMM Id = 6 +08:50:56 ============================================================================ +08:50:56 + + +waiting on router queue for slot.... +08:50:57 ============================================================================ +08:50:57 Slot Id : <83> +08:50:57 Transaction Type : RESPONSE +08:50:57 Received From : +08:50:57 ============================================================================ +08:50:57 FNo. Len. Field Value +08:50:57 ============================================================================ +08:50:57 [ 1] [ 4] [0210] +08:50:57 [ 2] [ 16] [2206990000035642] +08:50:57 [ 3] [ 6] [301000] +08:50:57 [ 4] [ 12] [000000000000] +08:50:57 [ 7] [ 10] [0320085051] +08:50:57 [ 11] [ 6] [689734] +08:50:57 [ 12] [ 6] [085051] +08:50:57 [ 13] [ 4] [0320] +08:50:57 [ 15] [ 4] [0320] +08:50:57 [ 18] [ 4] [6011] +08:50:57 [ 32] [ 6] [621354] +08:50:57 [ 35] [ 32] [2206990000035642=961212615910384] +08:50:57 [ 37] [ 12] [507902514723] +08:50:57 [ 38] [ 6] [258300] +08:50:57 [ 39] [ 2] [00] +08:50:57 [ 41] [ 8] [05003400] +08:50:57 [ 49] [ 3] [418] +08:50:57 [ 54] [ 40] [1001418C0000336634001002418C000033663400] +08:50:57 ============================================================================ +08:50:57 Sending to : +08:50:57 ============================================================================ +08:50:57 + + +waiting on router queue for slot.... +08:50:58 ============================================================================ +08:50:58 Slot Id : <83> +08:50:58 Transaction Type : RESPONSE +08:50:58 Received From : +08:50:58 ============================================================================ +08:50:58 FNo. Len. Field Value +08:50:58 ============================================================================ +08:50:58 [ 1] [ 4] [0210] +08:50:58 [ 2] [ 16] [2206990000035642] +08:50:58 [ 3] [ 6] [301000] +08:50:58 [ 4] [ 12] [000000000000] +08:50:58 [ 7] [ 10] [0320085051] +08:50:58 [ 11] [ 6] [689734] +08:50:58 [ 12] [ 6] [085051] +08:50:58 [ 13] [ 4] [0320] +08:50:58 [ 15] [ 4] [0320] +08:50:58 [ 18] [ 4] [6011] +08:50:58 [ 32] [ 6] [621354] +08:50:58 [ 35] [ 32] [2206990000035642=961212615910384] +08:50:58 [ 37] [ 12] [507902514723] +08:50:58 [ 38] [ 6] [258300] +08:50:58 [ 39] [ 2] [00] +08:50:58 [ 41] [ 8] [05003400] +08:50:58 [ 49] [ 3] [418] +08:50:58 [ 54] [ 40] [1001418C0000336634001002418C000033663400] +08:50:58 ============================================================================ +08:50:58 Calculate Source COMM Id = 0 +08:50:58 ============================================================================ +08:50:58 + + +waiting on router queue for slot.... +08:51:04 ============================================================================ +08:51:04 Slot Id : <74> +08:51:04 Transaction Type : REQUEST +08:51:04 Received From : +08:51:04 ============================================================================ +08:51:04 FNo. Len. Field Value +08:51:04 ============================================================================ +08:51:04 [ 1] [ 4] [0800] +08:51:04 [ 7] [ 10] [0320015013] +08:51:04 [ 11] [ 6] [155500] +08:51:04 [ 70] [ 3] [301] +08:51:04 ============================================================================ +08:51:04 + + +waiting on router queue for slot.... +08:51:04 Sending to : +08:51:04 ============================================================================ +08:51:04 ============================================================================ +08:51:04 Slot Id : <74> +08:51:04 Transaction Type : RESPONSE +08:51:04 Received From : +08:51:04 ============================================================================ +08:51:04 FNo. Len. Field Value +08:51:04 ============================================================================ +08:51:04 [ 1] [ 4] [0810] +08:51:04 [ 7] [ 10] [0320015013] +08:51:04 [ 11] [ 6] [155500] +08:51:04 [ 39] [ 2] [00] +08:51:04 [ 70] [ 3] [301] +08:51:04 ============================================================================ +08:51:04 Calculate Source COMM Id = 2 +08:51:04 ============================================================================ +08:51:04 + + +waiting on router queue for slot.... +08:51:16 ============================================================================ +08:51:16 Slot Id : <107> +08:51:16 Transaction Type : REQUEST +08:51:16 Received From : +08:51:16 ============================================================================ +08:51:16 FNo. Len. Field Value +08:51:16 ============================================================================ +08:51:16 [ 1] [ 4] [0800] +08:51:16 [ 7] [ 10] [0320015024] +08:51:16 [ 11] [ 6] [155501] +08:51:16 [ 70] [ 3] [301] +08:51:16 ============================================================================ +08:51:16 + + +waiting on router queue for slot.... +08:51:16 Sending to : +08:51:16 ============================================================================ +08:51:16 ============================================================================ +08:51:16 Slot Id : <107> +08:51:16 Transaction Type : RESPONSE +08:51:16 Received From : +08:51:16 ============================================================================ +08:51:16 FNo. Len. Field Value +08:51:16 ============================================================================ +08:51:16 [ 1] [ 4] [0810] +08:51:16 [ 7] [ 10] [0320015024] +08:51:16 [ 11] [ 6] [155501] +08:51:16 [ 39] [ 2] [00] +08:51:16 [ 70] [ 3] [301] +08:51:16 ============================================================================ +08:51:16 Calculate Source COMM Id = 2 +08:51:16 ============================================================================ +08:51:16 + + +waiting on router queue for slot.... +08:51:21 ============================================================================ +08:51:21 Slot Id : <118> +08:51:21 Transaction Type : REQUEST +08:51:21 Received From : +08:51:21 ============================================================================ +08:51:21 FNo. Len. Field Value +08:51:21 ============================================================================ +08:51:21 [ 1] [ 4] [0800] +08:51:21 [ 7] [ 10] [0320014912] +08:51:21 [ 11] [ 6] [009989] +08:51:21 [ 37] [ 12] [57908009989] +08:51:21 [ 70] [ 3] [301] +08:51:21 ============================================================================ +08:51:21 + + +waiting on router queue for slot.... +08:51:21 Sending to : +08:51:21 ============================================================================ +08:51:21 ============================================================================ +08:51:21 Slot Id : <118> +08:51:21 Transaction Type : RESPONSE +08:51:21 Received From : +08:51:21 ============================================================================ +08:51:21 FNo. Len. Field Value +08:51:21 ============================================================================ +08:51:21 [ 1] [ 4] [0810] +08:51:21 [ 7] [ 10] [0320014912] +08:51:21 [ 11] [ 6] [009989] +08:51:21 [ 37] [ 12] [579080099890] +08:51:21 [ 39] [ 2] [00] +08:51:21 [ 70] [ 3] [810] +08:51:21 ============================================================================ +08:51:21 Calculate Source COMM Id = 4 +08:51:21 ============================================================================ +08:51:21 + + +waiting on router queue for slot.... +08:51:22 ============================================================================ +08:51:22 Slot Id : <92> +08:51:22 Transaction Type : REQUEST +08:51:22 Received From : +08:51:22 ============================================================================ +08:51:22 FNo. Len. Field Value +08:51:22 ============================================================================ +08:51:22 [ 1] [ 4] [0200] +08:51:22 [ 2] [ 16] [6688990050066156] +08:51:22 [ 3] [ 6] [012000] +08:51:22 [ 4] [ 12] [000010000000] +08:51:22 [ 7] [ 10] [0320085118] +08:51:22 [ 11] [ 6] [689852] +08:51:22 [ 12] [ 6] [085118] +08:51:22 [ 13] [ 4] [0320] +08:51:22 [ 15] [ 4] [0320] +08:51:22 [ 18] [ 4] [6011] +08:51:22 [ 22] [ 3] [900] +08:51:22 [ 25] [ 2] [02] +08:51:22 [ 28] [ 9] [D00002000] +08:51:22 [ 32] [ 6] [621354] +08:51:22 [ 35] [ 37] [6688990050066156=98051261212943700000] +08:51:22 [ 37] [ 12] [507903752275] +08:51:22 [ 41] [ 8] [01009100] +08:51:22 [ 42] [ 15] [NATIVE ] +08:51:22 [ 43] [ 40] [Suppha Kang Sisattanak LAO] +08:51:22 [ 49] [ 3] [418] +08:51:22 [ 52] [ 16] [F16F32915D1422BF] +08:51:22 ============================================================================ +08:51:22 + + +waiting on router queue for slot.... +08:51:22 Sending to : +08:51:22 ============================================================================ +08:51:22 Sending to : +08:51:22 ============================================================================ +08:51:22 ============================================================================ +08:51:22 Slot Id : <92> +08:51:22 Transaction Type : REQUEST +08:51:22 Received From : +08:51:22 ============================================================================ +08:51:22 FNo. Len. Field Value +08:51:22 ============================================================================ +08:51:22 [ 1] [ 4] [0200] +08:51:22 [ 2] [ 16] [6688990050066156] +08:51:22 [ 3] [ 6] [012000] +08:51:22 [ 4] [ 12] [000010000000] +08:51:22 [ 7] [ 10] [0320085118] +08:51:22 [ 11] [ 6] [689852] +08:51:22 [ 12] [ 6] [085118] +08:51:22 [ 13] [ 4] [0320] +08:51:22 [ 15] [ 4] [0320] +08:51:22 [ 18] [ 4] [6011] +08:51:22 [ 22] [ 3] [900] +08:51:22 [ 25] [ 2] [02] +08:51:22 [ 28] [ 9] [D00002000] +08:51:22 [ 32] [ 6] [621354] +08:51:22 [ 35] [ 37] [6688990050066156=98051261212943700000] +08:51:22 [ 37] [ 12] [507903752275] +08:51:22 [ 41] [ 8] [01009100] +08:51:22 [ 42] [ 15] [NATIVE ] +08:51:22 [ 43] [ 40] [Suppha Kang Sisattanak LAO] +08:51:22 [ 49] [ 3] [418] +08:51:22 [ 52] [ 16] [F16F32915D1422BF] +08:51:22 ============================================================================ +08:51:22 + + +waiting on router queue for slot.... +08:51:22 Sending to : +08:51:22 ============================================================================ +08:51:22 ============================================================================ +08:51:22 Slot Id : <92> +08:51:22 Transaction Type : REQUEST +08:51:22 Received From : +08:51:22 ============================================================================ +08:51:22 FNo. Len. Field Value +08:51:22 ============================================================================ +08:51:22 [ 1] [ 4] [0200] +08:51:22 [ 2] [ 16] [6688990050066156] +08:51:22 [ 3] [ 6] [012000] +08:51:22 [ 4] [ 12] [000010000000] +08:51:22 [ 7] [ 10] [0320085118] +08:51:22 [ 11] [ 6] [689852] +08:51:22 [ 12] [ 6] [085118] +08:51:22 [ 13] [ 4] [0320] +08:51:22 [ 15] [ 4] [0320] +08:51:22 [ 18] [ 4] [6011] +08:51:22 [ 22] [ 3] [900] +08:51:22 [ 25] [ 2] [02] +08:51:22 [ 28] [ 9] [D00002000] +08:51:22 [ 32] [ 6] [621354] +08:51:22 [ 35] [ 37] [6688990050066156=98051261212943700000] +08:51:22 [ 37] [ 12] [507903752275] +08:51:22 [ 41] [ 8] [01009100] +08:51:22 [ 42] [ 15] [NATIVE ] +08:51:22 [ 43] [ 40] [Suppha Kang Sisattanak LAO] +08:51:22 [ 49] [ 3] [418] +08:51:22 [ 52] [ 16] [9B5EF02243F720DC] +08:51:22 ============================================================================ +08:51:22 + + +waiting on router queue for slot.... +08:51:22 Sending to : <4> +08:51:22 ============================================================================ +08:51:22 ============================================================================ +08:51:22 Slot Id : <92> +08:51:22 Transaction Type : RESPONSE +08:51:22 Received From : +08:51:22 ============================================================================ +08:51:22 FNo. Len. Field Value +08:51:22 ============================================================================ +08:51:22 [ 1] [ 4] [0210] +08:51:22 [ 2] [ 16] [6688990050066156] +08:51:22 [ 3] [ 6] [012000] +08:51:22 [ 4] [ 12] [000010000000] +08:51:22 [ 7] [ 10] [0320085118] +08:51:22 [ 11] [ 6] [689852] +08:51:22 [ 12] [ 6] [085118] +08:51:22 [ 13] [ 4] [0320] +08:51:22 [ 15] [ 4] [0320] +08:51:22 [ 18] [ 4] [6011] +08:51:22 [ 22] [ 3] [021] +08:51:22 [ 32] [ 6] [621354] +08:51:22 [ 35] [ 37] [6688990050066156=98051261212943700000] +08:51:22 [ 37] [ 12] [507903752275] +08:51:22 [ 39] [ 2] [62] +08:51:22 [ 41] [ 8] [01009100] +08:51:22 [ 49] [ 3] [418] +08:51:22 ============================================================================ +08:51:22 Sending to : +08:51:22 ============================================================================ +08:51:22 + + +waiting on router queue for slot.... +08:51:23 ============================================================================ +08:51:23 Slot Id : <92> +08:51:23 Transaction Type : RESPONSE +08:51:23 Received From : +08:51:23 ============================================================================ +08:51:23 FNo. Len. Field Value +08:51:23 ============================================================================ +08:51:23 [ 1] [ 4] [0210] +08:51:23 [ 2] [ 16] [6688990050066156] +08:51:23 [ 3] [ 6] [012000] +08:51:23 [ 4] [ 12] [000010000000] +08:51:23 [ 7] [ 10] [0320085118] +08:51:23 [ 11] [ 6] [689852] +08:51:23 [ 12] [ 6] [085118] +08:51:23 [ 13] [ 4] [0320] +08:51:23 [ 15] [ 4] [0320] +08:51:23 [ 18] [ 4] [6011] +08:51:23 [ 22] [ 3] [021] +08:51:23 [ 32] [ 6] [621354] +08:51:23 [ 35] [ 37] [6688990050066156=98051261212943700000] +08:51:23 [ 37] [ 12] [507903752275] +08:51:23 [ 39] [ 2] [62] +08:51:23 [ 41] [ 8] [01009100] +08:51:23 [ 49] [ 3] [418] +08:51:23 ============================================================================ +08:51:23 Calculate Source COMM Id = 0 +08:51:23 ============================================================================ +08:51:23 + + +waiting on router queue for slot.... +08:51:32 ============================================================================ +08:51:32 Slot Id : <121> +08:51:32 Transaction Type : REQUEST +08:51:32 Received From : +08:51:32 ============================================================================ +08:51:32 FNo. Len. Field Value +08:51:32 ============================================================================ +08:51:32 [ 1] [ 4] [0800] +08:51:32 [ 7] [ 10] [0320015040] +08:51:32 [ 11] [ 6] [155502] +08:51:32 [ 70] [ 3] [301] +08:51:32 ============================================================================ +08:51:32 + + +waiting on router queue for slot.... +08:51:32 Sending to : +08:51:32 ============================================================================ +08:51:32 ============================================================================ +08:51:32 Slot Id : <121> +08:51:32 Transaction Type : RESPONSE +08:51:32 Received From : +08:51:32 ============================================================================ +08:51:32 FNo. Len. Field Value +08:51:32 ============================================================================ +08:51:32 [ 1] [ 4] [0810] +08:51:32 [ 7] [ 10] [0320015040] +08:51:32 [ 11] [ 6] [155502] +08:51:32 [ 39] [ 2] [00] +08:51:32 [ 70] [ 3] [301] +08:51:32 ============================================================================ +08:51:32 Calculate Source COMM Id = 2 +08:51:32 ============================================================================ +08:51:32 + + +waiting on router queue for slot.... +08:51:42 ============================================================================ +08:51:42 Slot Id : <113> +08:51:42 Transaction Type : REQUEST +08:51:42 Received From : +08:51:42 ============================================================================ +08:51:42 FNo. Len. Field Value +08:51:42 ============================================================================ +08:51:42 [ 1] [ 4] [0800] +08:51:42 [ 7] [ 10] [0320015051] +08:51:42 [ 11] [ 6] [155503] +08:51:42 [ 70] [ 3] [301] +08:51:42 ============================================================================ +08:51:42 + + +waiting on router queue for slot.... +08:51:42 Sending to : +08:51:42 ============================================================================ +08:51:42 ============================================================================ +08:51:42 Slot Id : <113> +08:51:42 Transaction Type : RESPONSE +08:51:42 Received From : +08:51:42 ============================================================================ +08:51:42 FNo. Len. Field Value +08:51:42 ============================================================================ +08:51:42 [ 1] [ 4] [0810] +08:51:42 [ 7] [ 10] [0320015051] +08:51:42 [ 11] [ 6] [155503] +08:51:42 [ 39] [ 2] [00] +08:51:42 [ 70] [ 3] [301] +08:51:42 ============================================================================ +08:51:42 Calculate Source COMM Id = 2 +08:51:42 ============================================================================ +08:51:42 + + +waiting on router queue for slot.... +08:51:44 ============================================================================ +08:51:44 Slot Id : <108> +08:51:44 Transaction Type : REQUEST +08:51:44 Received From : +08:51:44 ============================================================================ +08:51:44 FNo. Len. Field Value +08:51:44 ============================================================================ +08:51:44 [ 1] [ 4] [0800] +08:51:44 [ 2] [ 5] [02531] +08:51:44 [ 3] [ 6] [579088] +08:51:44 [ 7] [ 10] [0320015144] +08:51:44 [ 11] [ 6] [806926] +08:51:44 [ 15] [ 10] [0320015144] +08:51:44 [ 37] [ 11] [57908806926] +08:51:44 [ 70] [ 3] [001] +08:51:44 ============================================================================ +08:51:44 + + +waiting on router queue for slot.... +08:51:44 ============================================================================ +08:51:44 Slot Id : <108> +08:51:44 Transaction Type : RESPONSE +08:51:44 Received From : +08:51:44 ============================================================================ +08:51:44 FNo. Len. Field Value +08:51:44 ============================================================================ +08:51:44 [ 1] [ 4] [0810] +08:51:44 [ 7] [ 10] [0320015144] +08:51:44 [ 11] [ 6] [806926] +08:51:44 [ 15] [ 4] [0320] +08:51:44 [ 37] [ 12] [57908806926] +08:51:44 [ 39] [ 2] [00] +08:51:44 [ 70] [ 3] [001] +08:51:44 ============================================================================ +08:51:44 Sending to : +08:51:44 ============================================================================ +08:51:44 + + +waiting on router queue for slot.... +08:51:47 ============================================================================ +08:51:47 Slot Id : <94> +08:51:47 Transaction Type : REQUEST +08:51:47 Received From : +08:51:47 ============================================================================ +08:51:47 FNo. Len. Field Value +08:51:47 ============================================================================ +08:51:47 [ 1] [ 4] [0200] +08:51:47 [ 2] [ 16] [1808930500014303] +08:51:47 [ 3] [ 6] [010000] +08:51:47 [ 4] [ 12] [000100000000] +08:51:47 [ 7] [ 10] [0320084938] +08:51:47 [ 11] [ 6] [933987] +08:51:47 [ 12] [ 6] [084938] +08:51:47 [ 13] [ 4] [0320] +08:51:47 [ 15] [ 4] [0320] +08:51:47 [ 18] [ 4] [6011] +08:51:47 [ 19] [ 3] [418] +08:51:47 [ 22] [ 3] [021] +08:51:47 [ 25] [ 2] [01] +08:51:47 [ 28] [ 9] [D00002000] +08:51:47 [ 32] [ 6] [668899] +08:51:47 [ 35] [ 27] [1808930500014303=1803500022] +08:51:47 [ 37] [ 12] [507900844827] +08:51:47 [ 41] [ 8] [03015003] +08:51:47 [ 42] [ 15] [APT ] +08:51:47 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:51:47 [ 49] [ 3] [418] +08:51:47 [ 52] [ 16] [10FFC6C354F7AB45] +08:51:47 ============================================================================ +08:51:47 + + +waiting on router queue for slot.... +08:51:47 Sending to : +08:51:47 ============================================================================ +08:51:47 Sending to : +08:51:47 ============================================================================ +08:51:47 ============================================================================ +08:51:47 Slot Id : <94> +08:51:47 Transaction Type : REQUEST +08:51:47 Received From : +08:51:47 ============================================================================ +08:51:47 FNo. Len. Field Value +08:51:47 ============================================================================ +08:51:47 [ 1] [ 4] [0200] +08:51:47 [ 2] [ 16] [1808930500014303] +08:51:47 [ 3] [ 6] [010000] +08:51:47 [ 4] [ 12] [000100000000] +08:51:47 [ 7] [ 10] [0320084938] +08:51:47 [ 11] [ 6] [933987] +08:51:47 [ 12] [ 6] [084938] +08:51:47 [ 13] [ 4] [0320] +08:51:47 [ 15] [ 4] [0320] +08:51:47 [ 18] [ 4] [6011] +08:51:47 [ 19] [ 3] [418] +08:51:47 [ 22] [ 3] [021] +08:51:47 [ 25] [ 2] [01] +08:51:47 [ 28] [ 9] [D00002000] +08:51:47 [ 32] [ 6] [668899] +08:51:47 [ 35] [ 27] [1808930500014303=1803500022] +08:51:47 [ 37] [ 12] [507900844827] +08:51:47 [ 41] [ 8] [03015003] +08:51:47 [ 42] [ 15] [APT ] +08:51:47 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:51:47 [ 49] [ 3] [418] +08:51:47 [ 52] [ 16] [10FFC6C354F7AB45] +08:51:47 ============================================================================ +08:51:47 + + +waiting on router queue for slot.... +08:51:47 Sending to : +08:51:47 ============================================================================ +08:51:47 ============================================================================ +08:51:47 Slot Id : <94> +08:51:47 Transaction Type : REQUEST +08:51:47 Received From : +08:51:47 ============================================================================ +08:51:47 FNo. Len. Field Value +08:51:47 ============================================================================ +08:51:47 [ 1] [ 4] [0200] +08:51:47 [ 2] [ 16] [1808930500014303] +08:51:47 [ 3] [ 6] [010000] +08:51:47 [ 4] [ 12] [000100000000] +08:51:47 [ 7] [ 10] [0320084938] +08:51:47 [ 11] [ 6] [933987] +08:51:47 [ 12] [ 6] [084938] +08:51:47 [ 13] [ 4] [0320] +08:51:47 [ 15] [ 4] [0320] +08:51:47 [ 18] [ 4] [6011] +08:51:47 [ 19] [ 3] [418] +08:51:47 [ 22] [ 3] [021] +08:51:47 [ 25] [ 2] [01] +08:51:47 [ 28] [ 9] [D00002000] +08:51:47 [ 32] [ 6] [668899] +08:51:47 [ 35] [ 27] [1808930500014303=1803500022] +08:51:47 [ 37] [ 12] [507900844827] +08:51:47 [ 41] [ 8] [03015003] +08:51:47 [ 42] [ 15] [APT ] +08:51:47 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:51:47 [ 49] [ 3] [418] +08:51:47 [ 52] [ 16] [08F610331435960F] +08:51:47 ============================================================================ +08:51:47 + + +waiting on router queue for slot.... +08:51:47 Sending to : <2> +08:51:47 ============================================================================ +08:51:49 ============================================================================ +08:51:49 Slot Id : <94> +08:51:49 Transaction Type : RESPONSE +08:51:49 Received From : +08:51:49 ============================================================================ +08:51:49 FNo. Len. Field Value +08:51:49 ============================================================================ +08:51:49 [ 1] [ 4] [0210] +08:51:49 [ 2] [ 16] [1808930500014303] +08:51:49 [ 3] [ 6] [010000] +08:51:49 [ 4] [ 12] [000100000000] +08:51:49 [ 6] [ 12] [000100000000] +08:51:49 [ 7] [ 10] [0320084938] +08:51:49 [ 11] [ 6] [933987] +08:51:49 [ 12] [ 6] [084938] +08:51:49 [ 13] [ 4] [0320] +08:51:49 [ 18] [ 4] [6011] +08:51:49 [ 19] [ 3] [418] +08:51:49 [ 22] [ 3] [021] +08:51:49 [ 32] [ 6] [668899] +08:51:49 [ 35] [ 27] [1808930500014303=1803500022] +08:51:49 [ 37] [ 12] [507900844827] +08:51:49 [ 38] [ 6] [933987] +08:51:49 [ 39] [ 2] [51] +08:51:49 [ 41] [ 8] [03015003] +08:51:49 [ 49] [ 3] [418] +08:51:49 [ 52] [ 16] [08F610331435960F] +08:51:49 ============================================================================ +08:51:49 Sending to : +08:51:49 ============================================================================ +08:51:49 + + +waiting on router queue for slot.... +08:51:50 ============================================================================ +08:51:50 Slot Id : <94> +08:51:50 Transaction Type : RESPONSE +08:51:50 Received From : +08:51:50 ============================================================================ +08:51:50 FNo. Len. Field Value +08:51:50 ============================================================================ +08:51:50 [ 1] [ 4] [0210] +08:51:50 [ 2] [ 16] [1808930500014303] +08:51:50 [ 3] [ 6] [010000] +08:51:50 [ 4] [ 12] [000100000000] +08:51:50 [ 6] [ 12] [000100000000] +08:51:50 [ 7] [ 10] [0320084938] +08:51:50 [ 11] [ 6] [933987] +08:51:50 [ 12] [ 6] [084938] +08:51:50 [ 13] [ 4] [0320] +08:51:50 [ 18] [ 4] [6011] +08:51:50 [ 19] [ 3] [418] +08:51:50 [ 22] [ 3] [021] +08:51:50 [ 32] [ 6] [668899] +08:51:50 [ 35] [ 27] [1808930500014303=1803500022] +08:51:50 [ 37] [ 12] [507900844827] +08:51:50 [ 38] [ 6] [933987] +08:51:50 [ 39] [ 2] [51] +08:51:50 [ 41] [ 8] [03015003] +08:51:50 [ 49] [ 3] [418] +08:51:50 [ 52] [ 16] [08F610331435960F] +08:51:50 ============================================================================ +08:51:50 Calculate Source COMM Id = 4 +08:51:50 ============================================================================ +08:51:50 + + +waiting on router queue for slot.... +08:51:53 ============================================================================ +08:51:53 Slot Id : <115> +08:51:53 Transaction Type : REQUEST +08:51:53 Received From : +08:51:53 ============================================================================ +08:51:53 FNo. Len. Field Value +08:51:53 ============================================================================ +08:51:53 [ 1] [ 4] [0200] +08:51:53 [ 2] [ 16] [6213545000391742] +08:51:53 [ 3] [ 6] [010000] +08:51:53 [ 4] [ 12] [000050000000] +08:51:53 [ 7] [ 10] [0320015100] +08:51:53 [ 11] [ 6] [267285] +08:51:53 [ 12] [ 6] [085100] +08:51:53 [ 13] [ 4] [0320] +08:51:53 [ 14] [ 4] [4912] +08:51:53 [ 15] [ 4] [0320] +08:51:53 [ 18] [ 4] [6011] +08:51:53 [ 19] [ 3] [418] +08:51:53 [ 22] [ 3] [021] +08:51:53 [ 25] [ 2] [01] +08:51:53 [ 28] [ 9] [D00002000] +08:51:53 [ 32] [ 6] [180893] +08:51:53 [ 35] [ 32] [6213545000391742=491212019174427] +08:51:53 [ 37] [ 12] [507901267285] +08:51:53 [ 41] [ 8] [0120SLVB] +08:51:53 [ 42] [ 15] [999999 ] +08:51:53 [ 43] [ 40] [ATM SALAVAN BRANCH LOCATION, Salavan, La] +08:51:53 [ 49] [ 3] [418] +08:51:53 [ 52] [ 16] [7AF832FA7928EE06] +08:51:53 ============================================================================ +08:51:53 + + +waiting on router queue for slot.... +08:51:53 Sending to : +08:51:53 ============================================================================ +08:51:53 Sending to : +08:51:53 ============================================================================ +08:51:53 ============================================================================ +08:51:53 Slot Id : <115> +08:51:53 Transaction Type : REQUEST +08:51:53 Received From : +08:51:53 ============================================================================ +08:51:53 FNo. Len. Field Value +08:51:53 ============================================================================ +08:51:53 [ 1] [ 4] [0200] +08:51:53 [ 2] [ 16] [6213545000391742] +08:51:53 [ 3] [ 6] [010000] +08:51:53 [ 4] [ 12] [000050000000] +08:51:53 [ 7] [ 10] [0320015100] +08:51:53 [ 11] [ 6] [267285] +08:51:53 [ 12] [ 6] [085100] +08:51:53 [ 13] [ 4] [0320] +08:51:53 [ 14] [ 4] [4912] +08:51:53 [ 15] [ 4] [0320] +08:51:53 [ 18] [ 4] [6011] +08:51:53 [ 19] [ 3] [418] +08:51:53 [ 22] [ 3] [021] +08:51:53 [ 25] [ 2] [01] +08:51:53 [ 28] [ 9] [D00002000] +08:51:53 [ 32] [ 6] [180893] +08:51:53 [ 35] [ 32] [6213545000391742=491212019174427] +08:51:53 [ 37] [ 12] [507901267285] +08:51:53 [ 41] [ 8] [0120SLVB] +08:51:53 [ 42] [ 15] [999999 ] +08:51:53 [ 43] [ 40] [ATM SALAVAN BRANCH LOCATION, Salavan, La] +08:51:53 [ 49] [ 3] [418] +08:51:53 [ 52] [ 16] [7AF832FA7928EE06] +08:51:53 ============================================================================ +08:51:53 + + +waiting on router queue for slot.... +08:51:53 Sending to : +08:51:53 ============================================================================ +08:51:53 ============================================================================ +08:51:53 Slot Id : <115> +08:51:53 Transaction Type : REQUEST +08:51:53 Received From : +08:51:53 ============================================================================ +08:51:53 FNo. Len. Field Value +08:51:53 ============================================================================ +08:51:53 [ 1] [ 4] [0200] +08:51:53 [ 2] [ 16] [6213545000391742] +08:51:53 [ 3] [ 6] [010000] +08:51:53 [ 4] [ 12] [000050000000] +08:51:53 [ 7] [ 10] [0320015100] +08:51:53 [ 11] [ 6] [267285] +08:51:53 [ 12] [ 6] [085100] +08:51:53 [ 13] [ 4] [0320] +08:51:53 [ 14] [ 4] [4912] +08:51:53 [ 15] [ 4] [0320] +08:51:53 [ 18] [ 4] [6011] +08:51:53 [ 19] [ 3] [418] +08:51:53 [ 22] [ 3] [021] +08:51:53 [ 25] [ 2] [01] +08:51:53 [ 28] [ 9] [D00002000] +08:51:53 [ 32] [ 6] [180893] +08:51:53 [ 35] [ 32] [6213545000391742=491212019174427] +08:51:53 [ 37] [ 12] [507901267285] +08:51:53 [ 41] [ 8] [0120SLVB] +08:51:53 [ 42] [ 15] [999999 ] +08:51:53 [ 43] [ 40] [ATM SALAVAN BRANCH LOCATION, Salavan, La] +08:51:53 [ 49] [ 3] [418] +08:51:53 [ 52] [ 16] [201CCE29D8AC5FCF] +08:51:53 ============================================================================ +08:51:53 + + +waiting on router queue for slot.... +08:51:53 Sending to : <0> +08:51:53 ============================================================================ +08:51:54 ============================================================================ +08:51:54 Slot Id : <115> +08:51:54 Transaction Type : RESPONSE +08:51:54 Received From : +08:51:54 ============================================================================ +08:51:54 FNo. Len. Field Value +08:51:54 ============================================================================ +08:51:54 [ 1] [ 4] [0210] +08:51:54 [ 2] [ 16] [6213545000391742] +08:51:54 [ 3] [ 6] [010000] +08:51:54 [ 4] [ 12] [000050000000] +08:51:54 [ 7] [ 10] [0320015100] +08:51:54 [ 11] [ 6] [267285] +08:51:54 [ 12] [ 6] [085100] +08:51:54 [ 13] [ 4] [0320] +08:51:54 [ 15] [ 4] [0320] +08:51:54 [ 18] [ 4] [6011] +08:51:54 [ 19] [ 3] [418] +08:51:54 [ 32] [ 6] [180893] +08:51:54 [ 35] [ 32] [6213545000391742=491212019174427] +08:51:54 [ 37] [ 12] [507901267285] +08:51:54 [ 38] [ 6] [110218] +08:51:54 [ 39] [ 2] [00] +08:51:54 [ 41] [ 8] [0120SLVB] +08:51:54 [ 49] [ 3] [418] +08:51:54 [ 54] [ 40] [0001418C0001051229620002418C000105122962] +08:51:54 ============================================================================ +08:51:54 Sending to : +08:51:54 ============================================================================ +08:51:54 + + +waiting on router queue for slot.... +08:51:56 ============================================================================ +08:51:56 Slot Id : <115> +08:51:56 Transaction Type : RESPONSE +08:51:56 Received From : +08:51:56 ============================================================================ +08:51:56 FNo. Len. Field Value +08:51:56 ============================================================================ +08:51:56 [ 1] [ 4] [0210] +08:51:56 [ 2] [ 16] [6213545000391742] +08:51:56 [ 3] [ 6] [010000] +08:51:56 [ 4] [ 12] [000050000000] +08:51:56 [ 7] [ 10] [0320015100] +08:51:56 [ 11] [ 6] [267285] +08:51:56 [ 12] [ 6] [085100] +08:51:56 [ 13] [ 4] [0320] +08:51:56 [ 15] [ 4] [0320] +08:51:56 [ 18] [ 4] [6011] +08:51:56 [ 19] [ 3] [418] +08:51:56 [ 32] [ 6] [180893] +08:51:56 [ 35] [ 32] [6213545000391742=491212019174427] +08:51:56 [ 37] [ 12] [507901267285] +08:51:56 [ 38] [ 6] [110218] +08:51:56 [ 39] [ 2] [00] +08:51:56 [ 41] [ 8] [0120SLVB] +08:51:56 [ 49] [ 3] [418] +08:51:56 [ 54] [ 40] [0001418C0001051229620002418C000105122962] +08:51:56 ============================================================================ +08:51:56 Calculate Source COMM Id = 2 +08:51:56 ============================================================================ +08:51:56 + + +waiting on router queue for slot.... +08:52:01 ============================================================================ +08:52:01 Slot Id : <127> +08:52:01 Transaction Type : REQUEST +08:52:01 Received From : +08:52:01 ============================================================================ +08:52:01 FNo. Len. Field Value +08:52:01 ============================================================================ +08:52:01 [ 1] [ 4] [0800] +08:52:01 [ 7] [ 10] [0320160350] +08:52:01 [ 11] [ 6] [090350] +08:52:01 [ 37] [ 12] [57909090350] +08:52:01 [ 70] [ 3] [301] +08:52:01 ============================================================================ +08:52:01 + + +waiting on router queue for slot.... +08:52:01 Sending to : +08:52:01 ============================================================================ +08:52:01 ============================================================================ +08:52:01 Slot Id : <127> +08:52:01 Transaction Type : RESPONSE +08:52:01 Received From : +08:52:01 ============================================================================ +08:52:01 FNo. Len. Field Value +08:52:01 ============================================================================ +08:52:01 [ 1] [ 4] [0810] +08:52:01 [ 7] [ 10] [0320160350] +08:52:01 [ 11] [ 6] [090350] +08:52:01 [ 37] [ 12] [579090903500] +08:52:01 [ 39] [ 2] [00] +08:52:01 [ 70] [ 3] [810] +08:52:01 ============================================================================ +08:52:01 Calculate Source COMM Id = 6 +08:52:01 ============================================================================ +08:52:01 + + +waiting on router queue for slot.... +08:52:09 ============================================================================ +08:52:09 Slot Id : <95> +08:52:09 Transaction Type : REQUEST +08:52:09 Received From : +08:52:09 ============================================================================ +08:52:09 FNo. Len. Field Value +08:52:09 ============================================================================ +08:52:09 [ 1] [ 4] [0800] +08:52:09 [ 7] [ 10] [0320015116] +08:52:09 [ 11] [ 6] [155504] +08:52:09 [ 70] [ 3] [301] +08:52:09 ============================================================================ +08:52:09 + + +waiting on router queue for slot.... +08:52:09 Sending to : +08:52:09 ============================================================================ +08:52:09 ============================================================================ +08:52:09 Slot Id : <95> +08:52:09 Transaction Type : RESPONSE +08:52:09 Received From : +08:52:09 ============================================================================ +08:52:09 FNo. Len. Field Value +08:52:09 ============================================================================ +08:52:09 [ 1] [ 4] [0810] +08:52:09 [ 7] [ 10] [0320015116] +08:52:09 [ 11] [ 6] [155504] +08:52:09 [ 39] [ 2] [00] +08:52:09 [ 70] [ 3] [301] +08:52:09 ============================================================================ +08:52:09 Calculate Source COMM Id = 2 +08:52:09 ============================================================================ +08:52:09 + + +waiting on router queue for slot.... +08:52:11 ============================================================================ +08:52:11 Slot Id : <125> +08:52:11 Transaction Type : REQUEST +08:52:11 Received From : +08:52:11 ============================================================================ +08:52:11 FNo. Len. Field Value +08:52:11 ============================================================================ +08:52:11 [ 1] [ 4] [0200] +08:52:11 [ 2] [ 16] [6688990104555709] +08:52:11 [ 3] [ 6] [301000] +08:52:11 [ 4] [ 12] [000000000000] +08:52:11 [ 7] [ 10] [0320085208] +08:52:11 [ 11] [ 6] [690051] +08:52:11 [ 12] [ 6] [085208] +08:52:11 [ 13] [ 4] [0320] +08:52:11 [ 15] [ 4] [0320] +08:52:11 [ 18] [ 4] [6011] +08:52:11 [ 22] [ 3] [900] +08:52:11 [ 25] [ 2] [02] +08:52:11 [ 28] [ 9] [D00000000] +08:52:11 [ 32] [ 6] [621354] +08:52:11 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:52:11 [ 37] [ 12] [507904719386] +08:52:11 [ 41] [ 8] [18001000] +08:52:11 [ 42] [ 15] [NATIVE ] +08:52:11 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:52:11 [ 49] [ 3] [418] +08:52:11 [ 52] [ 16] [AACA8EE211A54993] +08:52:11 ============================================================================ +08:52:11 + + +waiting on router queue for slot.... +08:52:11 Sending to : +08:52:11 ============================================================================ +08:52:11 Sending to : +08:52:11 ============================================================================ +08:52:12 ============================================================================ +08:52:12 Slot Id : <125> +08:52:12 Transaction Type : REQUEST +08:52:12 Received From : +08:52:12 ============================================================================ +08:52:12 FNo. Len. Field Value +08:52:12 ============================================================================ +08:52:12 [ 1] [ 4] [0200] +08:52:12 [ 2] [ 16] [6688990104555709] +08:52:12 [ 3] [ 6] [301000] +08:52:12 [ 4] [ 12] [000000000000] +08:52:12 [ 7] [ 10] [0320085208] +08:52:12 [ 11] [ 6] [690051] +08:52:12 [ 12] [ 6] [085208] +08:52:12 [ 13] [ 4] [0320] +08:52:12 [ 15] [ 4] [0320] +08:52:12 [ 18] [ 4] [6011] +08:52:12 [ 22] [ 3] [900] +08:52:12 [ 25] [ 2] [02] +08:52:12 [ 28] [ 9] [D00000000] +08:52:12 [ 32] [ 6] [621354] +08:52:12 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:52:12 [ 37] [ 12] [507904719386] +08:52:12 [ 41] [ 8] [18001000] +08:52:12 [ 42] [ 15] [NATIVE ] +08:52:12 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:52:12 [ 49] [ 3] [418] +08:52:12 [ 52] [ 16] [AACA8EE211A54993] +08:52:12 ============================================================================ +08:52:12 + + +waiting on router queue for slot.... +08:52:12 Sending to : +08:52:12 ============================================================================ +08:52:12 ============================================================================ +08:52:12 Slot Id : <125> +08:52:12 Transaction Type : REQUEST +08:52:12 Received From : +08:52:12 ============================================================================ +08:52:12 FNo. Len. Field Value +08:52:12 ============================================================================ +08:52:12 [ 1] [ 4] [0200] +08:52:12 [ 2] [ 16] [6688990104555709] +08:52:12 [ 3] [ 6] [301000] +08:52:12 [ 4] [ 12] [000000000000] +08:52:12 [ 7] [ 10] [0320085208] +08:52:12 [ 11] [ 6] [690051] +08:52:12 [ 12] [ 6] [085208] +08:52:12 [ 13] [ 4] [0320] +08:52:12 [ 15] [ 4] [0320] +08:52:12 [ 18] [ 4] [6011] +08:52:12 [ 22] [ 3] [900] +08:52:12 [ 25] [ 2] [02] +08:52:12 [ 28] [ 9] [D00000000] +08:52:12 [ 32] [ 6] [621354] +08:52:12 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:52:12 [ 37] [ 12] [507904719386] +08:52:12 [ 41] [ 8] [18001000] +08:52:12 [ 42] [ 15] [NATIVE ] +08:52:12 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:52:12 [ 49] [ 3] [418] +08:52:12 [ 52] [ 16] [BEACC5DB1E3A5471] +08:52:12 ============================================================================ +08:52:12 + + +waiting on router queue for slot.... +08:52:12 Sending to : <4> +08:52:12 ============================================================================ +08:52:13 ============================================================================ +08:52:13 Slot Id : <125> +08:52:13 Transaction Type : RESPONSE +08:52:13 Received From : +08:52:13 ============================================================================ +08:52:13 FNo. Len. Field Value +08:52:13 ============================================================================ +08:52:13 [ 1] [ 4] [0210] +08:52:13 [ 2] [ 16] [6688990104555709] +08:52:13 [ 3] [ 6] [301000] +08:52:13 [ 4] [ 12] [000000000000] +08:52:13 [ 11] [ 6] [690051] +08:52:13 [ 12] [ 6] [085208] +08:52:13 [ 15] [ 4] [0320] +08:52:13 [ 18] [ 4] [6011] +08:52:13 [ 32] [ 6] [621354] +08:52:13 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:52:13 [ 37] [ 12] [507904719386] +08:52:13 [ 38] [ 6] [549786] +08:52:13 [ 39] [ 2] [00] +08:52:13 [ 41] [ 8] [18001000] +08:52:13 [ 49] [ 3] [418] +08:52:13 [ 54] [ 20] [1002418C000108377934] +08:52:13 ============================================================================ +08:52:13 Sending to : +08:52:13 ============================================================================ +08:52:13 + + +waiting on router queue for slot.... +08:52:14 ============================================================================ +08:52:14 Slot Id : <125> +08:52:14 Transaction Type : RESPONSE +08:52:14 Received From : +08:52:14 ============================================================================ +08:52:14 FNo. Len. Field Value +08:52:14 ============================================================================ +08:52:14 [ 1] [ 4] [0210] +08:52:14 [ 2] [ 16] [6688990104555709] +08:52:14 [ 3] [ 6] [301000] +08:52:14 [ 4] [ 12] [000000000000] +08:52:14 [ 11] [ 6] [690051] +08:52:14 [ 12] [ 6] [085208] +08:52:14 [ 15] [ 4] [0320] +08:52:14 [ 18] [ 4] [6011] +08:52:14 [ 32] [ 6] [621354] +08:52:14 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:52:14 [ 37] [ 12] [507904719386] +08:52:14 [ 38] [ 6] [549786] +08:52:14 [ 39] [ 2] [00] +08:52:14 [ 41] [ 8] [18001000] +08:52:14 [ 49] [ 3] [418] +08:52:14 [ 54] [ 20] [1002418C000108377934] +08:52:14 ============================================================================ +08:52:14 Calculate Source COMM Id = 0 +08:52:14 ============================================================================ +08:52:14 + + +waiting on router queue for slot.... +08:52:15 ============================================================================ +08:52:15 Slot Id : <75> +08:52:15 Transaction Type : REQUEST +08:52:15 Received From : +08:52:15 ============================================================================ +08:52:15 FNo. Len. Field Value +08:52:15 ============================================================================ +08:52:15 [ 1] [ 4] [0200] +08:52:15 [ 2] [ 16] [6688990040005876] +08:52:15 [ 3] [ 6] [011000] +08:52:15 [ 4] [ 12] [000050000000] +08:52:15 [ 7] [ 10] [0320085212] +08:52:15 [ 11] [ 6] [690060] +08:52:15 [ 12] [ 6] [085212] +08:52:15 [ 13] [ 4] [0320] +08:52:15 [ 15] [ 4] [0320] +08:52:15 [ 18] [ 4] [6011] +08:52:15 [ 22] [ 3] [900] +08:52:15 [ 25] [ 2] [02] +08:52:15 [ 28] [ 9] [D00002000] +08:52:15 [ 32] [ 6] [621354] +08:52:15 [ 35] [ 37] [6688990040005876=97101261985453400000] +08:52:15 [ 37] [ 12] [507903908368] +08:52:15 [ 41] [ 8] [01010600] +08:52:15 [ 42] [ 15] [NATIVE ] +08:52:15 [ 43] [ 40] [Maria Hospital Phonhong LAO] +08:52:15 [ 49] [ 3] [418] +08:52:15 [ 52] [ 16] [C6CD15B68DFABB5D] +08:52:15 ============================================================================ +08:52:15 + + +waiting on router queue for slot.... +08:52:15 Sending to : +08:52:15 ============================================================================ +08:52:15 Sending to : +08:52:15 ============================================================================ +08:52:16 ============================================================================ +08:52:16 Slot Id : <75> +08:52:16 Transaction Type : REQUEST +08:52:16 Received From : +08:52:16 ============================================================================ +08:52:16 FNo. Len. Field Value +08:52:16 ============================================================================ +08:52:16 [ 1] [ 4] [0200] +08:52:16 [ 2] [ 16] [6688990040005876] +08:52:16 [ 3] [ 6] [011000] +08:52:16 [ 4] [ 12] [000050000000] +08:52:16 [ 7] [ 10] [0320085212] +08:52:16 [ 11] [ 6] [690060] +08:52:16 [ 12] [ 6] [085212] +08:52:16 [ 13] [ 4] [0320] +08:52:16 [ 15] [ 4] [0320] +08:52:16 [ 18] [ 4] [6011] +08:52:16 [ 22] [ 3] [900] +08:52:16 [ 25] [ 2] [02] +08:52:16 [ 28] [ 9] [D00002000] +08:52:16 [ 32] [ 6] [621354] +08:52:16 [ 35] [ 37] [6688990040005876=97101261985453400000] +08:52:16 [ 37] [ 12] [507903908368] +08:52:16 [ 41] [ 8] [01010600] +08:52:16 [ 42] [ 15] [NATIVE ] +08:52:16 [ 43] [ 40] [Maria Hospital Phonhong LAO] +08:52:16 [ 49] [ 3] [418] +08:52:16 [ 52] [ 16] [C6CD15B68DFABB5D] +08:52:16 ============================================================================ +08:52:16 + + +waiting on router queue for slot.... +08:52:16 Sending to : +08:52:16 ============================================================================ +08:52:16 ============================================================================ +08:52:16 Slot Id : <75> +08:52:16 Transaction Type : REQUEST +08:52:16 Received From : +08:52:16 ============================================================================ +08:52:16 FNo. Len. Field Value +08:52:16 ============================================================================ +08:52:16 [ 1] [ 4] [0200] +08:52:16 [ 2] [ 16] [6688990040005876] +08:52:16 [ 3] [ 6] [011000] +08:52:16 [ 4] [ 12] [000050000000] +08:52:16 [ 7] [ 10] [0320085212] +08:52:16 [ 11] [ 6] [690060] +08:52:16 [ 12] [ 6] [085212] +08:52:16 [ 13] [ 4] [0320] +08:52:16 [ 15] [ 4] [0320] +08:52:16 [ 18] [ 4] [6011] +08:52:16 [ 22] [ 3] [900] +08:52:16 [ 25] [ 2] [02] +08:52:16 [ 28] [ 9] [D00002000] +08:52:16 [ 32] [ 6] [621354] +08:52:16 [ 35] [ 37] [6688990040005876=97101261985453400000] +08:52:16 [ 37] [ 12] [507903908368] +08:52:16 [ 41] [ 8] [01010600] +08:52:16 [ 42] [ 15] [NATIVE ] +08:52:16 [ 43] [ 40] [Maria Hospital Phonhong LAO] +08:52:16 [ 49] [ 3] [418] +08:52:16 [ 52] [ 16] [25BDD513FD6FB13F] +08:52:16 ============================================================================ +08:52:16 + + +waiting on router queue for slot.... +08:52:16 Sending to : <4> +08:52:16 ============================================================================ +08:52:18 ============================================================================ +08:52:18 Slot Id : <75> +08:52:18 Transaction Type : RESPONSE +08:52:18 Received From : +08:52:18 ============================================================================ +08:52:18 FNo. Len. Field Value +08:52:18 ============================================================================ +08:52:18 [ 1] [ 4] [0210] +08:52:18 [ 2] [ 16] [6688990040005876] +08:52:18 [ 3] [ 6] [011000] +08:52:18 [ 4] [ 12] [000050000000] +08:52:18 [ 11] [ 6] [690060] +08:52:18 [ 12] [ 6] [085212] +08:52:18 [ 15] [ 4] [0320] +08:52:18 [ 18] [ 4] [6011] +08:52:18 [ 32] [ 6] [621354] +08:52:18 [ 35] [ 37] [6688990040005876=97101261985453400000] +08:52:18 [ 37] [ 12] [507903908368] +08:52:18 [ 38] [ 6] [542223] +08:52:18 [ 39] [ 2] [00] +08:52:18 [ 41] [ 8] [01010600] +08:52:18 [ 49] [ 3] [418] +08:52:18 [ 54] [ 20] [1002418C000067702699] +08:52:18 ============================================================================ +08:52:18 Sending to : +08:52:18 ============================================================================ +08:52:18 + + +waiting on router queue for slot.... +08:52:18 ============================================================================ +08:52:18 Slot Id : <53> +08:52:18 Transaction Type : REQUEST +08:52:18 Received From : +08:52:18 ============================================================================ +08:52:18 FNo. Len. Field Value +08:52:18 ============================================================================ +08:52:18 [ 1] [ 4] [0200] +08:52:18 [ 2] [ 16] [6213543000185321] +08:52:18 [ 3] [ 6] [010000] +08:52:18 [ 4] [ 12] [000070000000] +08:52:18 [ 7] [ 10] [0320085010] +08:52:18 [ 11] [ 6] [934011] +08:52:18 [ 12] [ 6] [085010] +08:52:18 [ 13] [ 4] [0320] +08:52:18 [ 15] [ 4] [0320] +08:52:18 [ 18] [ 4] [6011] +08:52:18 [ 19] [ 3] [418] +08:52:18 [ 22] [ 3] [021] +08:52:18 [ 25] [ 2] [01] +08:52:18 [ 28] [ 9] [D00002000] +08:52:18 [ 32] [ 6] [668899] +08:52:18 [ 35] [ 32] [6213543000185321=491212018532593] +08:52:18 [ 37] [ 12] [507901506349] +08:52:18 [ 41] [ 8] [03614001] +08:52:18 [ 42] [ 15] [APT ] +08:52:18 [ 43] [ 40] [ LAOVIET SHARE BORDER UNIT] +08:52:18 [ 49] [ 3] [418] +08:52:18 [ 52] [ 16] [8AC04D8096DFCE39] +08:52:18 ============================================================================ +08:52:18 + + +waiting on router queue for slot.... +08:52:18 Sending to : +08:52:18 ============================================================================ +08:52:18 Sending to : +08:52:18 ============================================================================ +08:52:19 ============================================================================ +08:52:19 Slot Id : <53> +08:52:19 Transaction Type : REQUEST +08:52:19 Received From : +08:52:19 ============================================================================ +08:52:19 FNo. Len. Field Value +08:52:19 ============================================================================ +08:52:19 [ 1] [ 4] [0200] +08:52:19 [ 2] [ 16] [6213543000185321] +08:52:19 [ 3] [ 6] [010000] +08:52:19 [ 4] [ 12] [000070000000] +08:52:19 [ 7] [ 10] [0320085010] +08:52:19 [ 11] [ 6] [934011] +08:52:19 [ 12] [ 6] [085010] +08:52:19 [ 13] [ 4] [0320] +08:52:19 [ 15] [ 4] [0320] +08:52:19 [ 18] [ 4] [6011] +08:52:19 [ 19] [ 3] [418] +08:52:19 [ 22] [ 3] [021] +08:52:19 [ 25] [ 2] [01] +08:52:19 [ 28] [ 9] [D00002000] +08:52:19 [ 32] [ 6] [668899] +08:52:19 [ 35] [ 32] [6213543000185321=491212018532593] +08:52:19 [ 37] [ 12] [507901506349] +08:52:19 [ 41] [ 8] [03614001] +08:52:19 [ 42] [ 15] [APT ] +08:52:19 [ 43] [ 40] [ LAOVIET SHARE BORDER UNIT] +08:52:19 [ 49] [ 3] [418] +08:52:19 [ 52] [ 16] [8AC04D8096DFCE39] +08:52:19 ============================================================================ +08:52:19 + + +waiting on router queue for slot.... +08:52:19 Sending to : +08:52:19 ============================================================================ +08:52:19 ============================================================================ +08:52:19 Slot Id : <53> +08:52:19 Transaction Type : REQUEST +08:52:19 Received From : +08:52:19 ============================================================================ +08:52:19 FNo. Len. Field Value +08:52:19 ============================================================================ +08:52:19 [ 1] [ 4] [0200] +08:52:19 [ 2] [ 16] [6213543000185321] +08:52:19 [ 3] [ 6] [010000] +08:52:19 [ 4] [ 12] [000070000000] +08:52:19 [ 7] [ 10] [0320085010] +08:52:19 [ 11] [ 6] [934011] +08:52:19 [ 12] [ 6] [085010] +08:52:19 [ 13] [ 4] [0320] +08:52:19 [ 15] [ 4] [0320] +08:52:19 [ 18] [ 4] [6011] +08:52:19 [ 19] [ 3] [418] +08:52:19 [ 22] [ 3] [021] +08:52:19 [ 25] [ 2] [01] +08:52:19 [ 28] [ 9] [D00002000] +08:52:19 [ 32] [ 6] [668899] +08:52:19 [ 35] [ 32] [6213543000185321=491212018532593] +08:52:19 [ 37] [ 12] [507901506349] +08:52:19 [ 41] [ 8] [03614001] +08:52:19 [ 42] [ 15] [APT ] +08:52:19 [ 43] [ 40] [ LAOVIET SHARE BORDER UNIT] +08:52:19 [ 49] [ 3] [418] +08:52:19 [ 52] [ 16] [60CE772AE64FC5CA] +08:52:19 ============================================================================ +08:52:19 + + +waiting on router queue for slot.... +08:52:19 Sending to : <0> +08:52:19 ============================================================================ +08:52:19 ============================================================================ +08:52:19 Slot Id : <53> +08:52:19 Transaction Type : RESPONSE +08:52:19 Received From : +08:52:19 ============================================================================ +08:52:19 FNo. Len. Field Value +08:52:19 ============================================================================ +08:52:19 [ 1] [ 4] [0210] +08:52:19 [ 2] [ 16] [6213543000185321] +08:52:19 [ 3] [ 6] [010000] +08:52:19 [ 4] [ 12] [000070000000] +08:52:19 [ 7] [ 10] [0320085010] +08:52:19 [ 11] [ 6] [934011] +08:52:19 [ 12] [ 6] [085010] +08:52:19 [ 13] [ 4] [0320] +08:52:19 [ 15] [ 4] [0320] +08:52:19 [ 18] [ 4] [6011] +08:52:19 [ 19] [ 3] [418] +08:52:19 [ 32] [ 6] [668899] +08:52:19 [ 35] [ 32] [6213543000185321=491212018532593] +08:52:19 [ 37] [ 12] [507901506349] +08:52:19 [ 38] [ 6] [426080] +08:52:19 [ 39] [ 2] [00] +08:52:19 [ 41] [ 8] [03614001] +08:52:19 [ 49] [ 3] [418] +08:52:19 [ 54] [ 40] [0001418C0001347435860002418C000134743586] +08:52:19 ============================================================================ +08:52:19 Sending to : +08:52:19 ============================================================================ +08:52:19 + + +waiting on router queue for slot.... +08:52:19 ============================================================================ +08:52:19 Slot Id : <75> +08:52:19 Transaction Type : RESPONSE +08:52:19 Received From : +08:52:19 ============================================================================ +08:52:19 FNo. Len. Field Value +08:52:19 ============================================================================ +08:52:19 [ 1] [ 4] [0210] +08:52:19 [ 2] [ 16] [6688990040005876] +08:52:19 [ 3] [ 6] [011000] +08:52:19 [ 4] [ 12] [000050000000] +08:52:19 [ 11] [ 6] [690060] +08:52:19 [ 12] [ 6] [085212] +08:52:19 [ 15] [ 4] [0320] +08:52:19 [ 18] [ 4] [6011] +08:52:19 [ 32] [ 6] [621354] +08:52:19 [ 35] [ 37] [6688990040005876=97101261985453400000] +08:52:19 [ 37] [ 12] [507903908368] +08:52:19 [ 38] [ 6] [542223] +08:52:19 [ 39] [ 2] [00] +08:52:19 [ 41] [ 8] [01010600] +08:52:19 [ 49] [ 3] [418] +08:52:19 [ 54] [ 20] [1002418C000067702699] +08:52:19 ============================================================================ +08:52:19 Calculate Source COMM Id = 0 +08:52:19 ============================================================================ +08:52:19 + + +waiting on router queue for slot.... +08:52:21 ============================================================================ +08:52:21 Slot Id : <53> +08:52:21 Transaction Type : RESPONSE +08:52:21 Received From : +08:52:21 ============================================================================ +08:52:21 FNo. Len. Field Value +08:52:21 ============================================================================ +08:52:21 [ 1] [ 4] [0210] +08:52:21 [ 2] [ 16] [6213543000185321] +08:52:21 [ 3] [ 6] [010000] +08:52:21 [ 4] [ 12] [000070000000] +08:52:21 [ 7] [ 10] [0320085010] +08:52:21 [ 11] [ 6] [934011] +08:52:21 [ 12] [ 6] [085010] +08:52:21 [ 13] [ 4] [0320] +08:52:21 [ 15] [ 4] [0320] +08:52:21 [ 18] [ 4] [6011] +08:52:21 [ 19] [ 3] [418] +08:52:21 [ 32] [ 6] [668899] +08:52:21 [ 35] [ 32] [6213543000185321=491212018532593] +08:52:21 [ 37] [ 12] [507901506349] +08:52:21 [ 38] [ 6] [426080] +08:52:21 [ 39] [ 2] [00] +08:52:21 [ 41] [ 8] [03614001] +08:52:21 [ 49] [ 3] [418] +08:52:21 [ 54] [ 40] [0001418C0001347435860002418C000134743586] +08:52:21 ============================================================================ +08:52:21 Calculate Source COMM Id = 4 +08:52:21 ============================================================================ +08:52:21 + + +waiting on router queue for slot.... +08:52:25 ============================================================================ +08:52:25 Slot Id : <134> +08:52:25 Transaction Type : REQUEST +08:52:25 Received From : +08:52:25 ============================================================================ +08:52:25 FNo. Len. Field Value +08:52:25 ============================================================================ +08:52:25 [ 1] [ 4] [0800] +08:52:25 [ 7] [ 10] [0320015133] +08:52:25 [ 11] [ 6] [155505] +08:52:25 [ 70] [ 3] [301] +08:52:25 ============================================================================ +08:52:25 + + +waiting on router queue for slot.... +08:52:25 Sending to : +08:52:25 ============================================================================ +08:52:25 ============================================================================ +08:52:25 Slot Id : <134> +08:52:25 Transaction Type : RESPONSE +08:52:25 Received From : +08:52:25 ============================================================================ +08:52:25 FNo. Len. Field Value +08:52:25 ============================================================================ +08:52:25 [ 1] [ 4] [0810] +08:52:25 [ 7] [ 10] [0320015133] +08:52:25 [ 11] [ 6] [155505] +08:52:25 [ 39] [ 2] [00] +08:52:25 [ 70] [ 3] [301] +08:52:25 ============================================================================ +08:52:25 Calculate Source COMM Id = 2 +08:52:25 ============================================================================ +08:52:25 + + +waiting on router queue for slot.... +08:52:37 ============================================================================ +08:52:37 Slot Id : <98> +08:52:37 Transaction Type : REQUEST +08:52:37 Received From : +08:52:37 ============================================================================ +08:52:37 FNo. Len. Field Value +08:52:37 ============================================================================ +08:52:37 [ 1] [ 4] [0800] +08:52:37 [ 7] [ 10] [0320015145] +08:52:37 [ 11] [ 6] [155506] +08:52:37 [ 70] [ 3] [301] +08:52:37 ============================================================================ +08:52:37 + + +waiting on router queue for slot.... +08:52:37 Sending to : +08:52:37 ============================================================================ +08:52:37 ============================================================================ +08:52:37 Slot Id : <98> +08:52:37 Transaction Type : RESPONSE +08:52:37 Received From : +08:52:37 ============================================================================ +08:52:37 FNo. Len. Field Value +08:52:37 ============================================================================ +08:52:37 [ 1] [ 4] [0810] +08:52:37 [ 7] [ 10] [0320015145] +08:52:37 [ 11] [ 6] [155506] +08:52:37 [ 39] [ 2] [00] +08:52:37 [ 70] [ 3] [301] +08:52:37 ============================================================================ +08:52:37 Calculate Source COMM Id = 2 +08:52:37 ============================================================================ +08:52:37 + + +waiting on router queue for slot.... +08:52:46 ============================================================================ +08:52:46 Slot Id : <96> +08:52:46 Transaction Type : REQUEST +08:52:46 Received From : +08:52:46 ============================================================================ +08:52:46 FNo. Len. Field Value +08:52:46 ============================================================================ +08:52:46 [ 1] [ 4] [0800] +08:52:46 [ 2] [ 5] [02531] +08:52:46 [ 3] [ 6] [579088] +08:52:46 [ 7] [ 10] [0320015246] +08:52:46 [ 11] [ 6] [806927] +08:52:46 [ 15] [ 10] [0320015246] +08:52:46 [ 37] [ 11] [57908806927] +08:52:46 [ 70] [ 3] [001] +08:52:46 ============================================================================ +08:52:46 + + +waiting on router queue for slot.... +08:52:46 ============================================================================ +08:52:46 Slot Id : <96> +08:52:46 Transaction Type : RESPONSE +08:52:46 Received From : +08:52:46 ============================================================================ +08:52:46 FNo. Len. Field Value +08:52:46 ============================================================================ +08:52:46 [ 1] [ 4] [0810] +08:52:46 [ 7] [ 10] [0320015246] +08:52:46 [ 11] [ 6] [806927] +08:52:46 [ 15] [ 4] [0320] +08:52:46 [ 37] [ 12] [57908806927] +08:52:46 [ 39] [ 2] [00] +08:52:46 [ 70] [ 3] [001] +08:52:46 ============================================================================ +08:52:46 Sending to : +08:52:46 ============================================================================ +08:52:46 + + +waiting on router queue for slot.... +08:52:47 ============================================================================ +08:52:47 Slot Id : <103> +08:52:47 Transaction Type : REQUEST +08:52:47 Received From : +08:52:47 ============================================================================ +08:52:47 FNo. Len. Field Value +08:52:47 ============================================================================ +08:52:47 [ 1] [ 4] [0800] +08:52:47 [ 7] [ 10] [0320015156] +08:52:47 [ 11] [ 6] [155507] +08:52:47 [ 70] [ 3] [301] +08:52:47 ============================================================================ +08:52:47 + + +waiting on router queue for slot.... +08:52:47 Sending to : +08:52:47 ============================================================================ +08:52:47 ============================================================================ +08:52:47 Slot Id : <103> +08:52:47 Transaction Type : RESPONSE +08:52:47 Received From : +08:52:47 ============================================================================ +08:52:47 FNo. Len. Field Value +08:52:47 ============================================================================ +08:52:47 [ 1] [ 4] [0810] +08:52:47 [ 7] [ 10] [0320015156] +08:52:47 [ 11] [ 6] [155507] +08:52:47 [ 39] [ 2] [00] +08:52:47 [ 70] [ 3] [301] +08:52:47 ============================================================================ +08:52:47 Calculate Source COMM Id = 2 +08:52:47 ============================================================================ +08:52:47 + + +waiting on router queue for slot.... +08:53:01 ============================================================================ +08:53:01 Slot Id : <71> +08:53:01 Transaction Type : REQUEST +08:53:01 Received From : +08:53:01 ============================================================================ +08:53:01 FNo. Len. Field Value +08:53:01 ============================================================================ +08:53:01 [ 1] [ 4] [0800] +08:53:01 [ 7] [ 10] [0320015208] +08:53:01 [ 11] [ 6] [155508] +08:53:01 [ 70] [ 3] [301] +08:53:01 ============================================================================ +08:53:01 + + +waiting on router queue for slot.... +08:53:01 Sending to : +08:53:01 ============================================================================ +08:53:01 ============================================================================ +08:53:01 Slot Id : <71> +08:53:01 Transaction Type : RESPONSE +08:53:01 Received From : +08:53:01 ============================================================================ +08:53:01 FNo. Len. Field Value +08:53:01 ============================================================================ +08:53:01 [ 1] [ 4] [0810] +08:53:01 [ 7] [ 10] [0320015208] +08:53:01 [ 11] [ 6] [155508] +08:53:01 [ 39] [ 2] [00] +08:53:01 [ 70] [ 3] [301] +08:53:01 ============================================================================ +08:53:01 Calculate Source COMM Id = 2 +08:53:01 ============================================================================ +08:53:01 + + +waiting on router queue for slot.... +08:53:03 ============================================================================ +08:53:03 Slot Id : <101> +08:53:03 Transaction Type : REQUEST +08:53:03 Received From : +08:53:03 ============================================================================ +08:53:03 FNo. Len. Field Value +08:53:03 ============================================================================ +08:53:03 [ 1] [ 4] [0200] +08:53:03 [ 2] [ 16] [6688990060012679] +08:53:03 [ 3] [ 6] [300000] +08:53:03 [ 4] [ 12] [000000000000] +08:53:03 [ 7] [ 10] [0320085259] +08:53:03 [ 11] [ 6] [690327] +08:53:03 [ 12] [ 6] [085259] +08:53:03 [ 13] [ 4] [0320] +08:53:03 [ 15] [ 4] [0320] +08:53:03 [ 18] [ 4] [6011] +08:53:03 [ 22] [ 3] [900] +08:53:03 [ 25] [ 2] [02] +08:53:03 [ 28] [ 9] [D00000000] +08:53:03 [ 32] [ 6] [621354] +08:53:03 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:53:03 [ 37] [ 12] [507905291312] +08:53:03 [ 41] [ 8] [20001400] +08:53:03 [ 42] [ 15] [NATIVE ] +08:53:03 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:53:03 [ 49] [ 3] [418] +08:53:03 [ 52] [ 16] [47F48598D3F1767B] +08:53:03 ============================================================================ +08:53:03 + + +waiting on router queue for slot.... +08:53:03 Sending to : +08:53:03 ============================================================================ +08:53:03 Sending to : +08:53:03 ============================================================================ +08:53:04 ============================================================================ +08:53:04 Slot Id : <101> +08:53:04 Transaction Type : REQUEST +08:53:04 Received From : +08:53:04 ============================================================================ +08:53:04 FNo. Len. Field Value +08:53:04 ============================================================================ +08:53:04 [ 1] [ 4] [0200] +08:53:04 [ 2] [ 16] [6688990060012679] +08:53:04 [ 3] [ 6] [300000] +08:53:04 [ 4] [ 12] [000000000000] +08:53:04 [ 7] [ 10] [0320085259] +08:53:04 [ 11] [ 6] [690327] +08:53:04 [ 12] [ 6] [085259] +08:53:04 [ 13] [ 4] [0320] +08:53:04 [ 15] [ 4] [0320] +08:53:04 [ 18] [ 4] [6011] +08:53:04 [ 22] [ 3] [900] +08:53:04 [ 25] [ 2] [02] +08:53:04 [ 28] [ 9] [D00000000] +08:53:04 [ 32] [ 6] [621354] +08:53:04 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:53:04 [ 37] [ 12] [507905291312] +08:53:04 [ 41] [ 8] [20001400] +08:53:04 [ 42] [ 15] [NATIVE ] +08:53:04 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:53:04 [ 49] [ 3] [418] +08:53:04 [ 52] [ 16] [47F48598D3F1767B] +08:53:04 ============================================================================ +08:53:04 + + +waiting on router queue for slot.... +08:53:04 Sending to : +08:53:04 ============================================================================ +08:53:04 ============================================================================ +08:53:04 Slot Id : <101> +08:53:04 Transaction Type : REQUEST +08:53:04 Received From : +08:53:04 ============================================================================ +08:53:04 FNo. Len. Field Value +08:53:04 ============================================================================ +08:53:04 [ 1] [ 4] [0200] +08:53:04 [ 2] [ 16] [6688990060012679] +08:53:04 [ 3] [ 6] [300000] +08:53:04 [ 4] [ 12] [000000000000] +08:53:04 [ 7] [ 10] [0320085259] +08:53:04 [ 11] [ 6] [690327] +08:53:04 [ 12] [ 6] [085259] +08:53:04 [ 13] [ 4] [0320] +08:53:04 [ 15] [ 4] [0320] +08:53:04 [ 18] [ 4] [6011] +08:53:04 [ 22] [ 3] [900] +08:53:04 [ 25] [ 2] [02] +08:53:04 [ 28] [ 9] [D00000000] +08:53:04 [ 32] [ 6] [621354] +08:53:04 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:53:04 [ 37] [ 12] [507905291312] +08:53:04 [ 41] [ 8] [20001400] +08:53:04 [ 42] [ 15] [NATIVE ] +08:53:04 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:53:04 [ 49] [ 3] [418] +08:53:04 [ 52] [ 16] [63865579AF752D0E] +08:53:04 ============================================================================ +08:53:04 + + +waiting on router queue for slot.... +08:53:04 Sending to : <4> +08:53:04 ============================================================================ +08:53:04 ============================================================================ +08:53:04 Slot Id : <101> +08:53:04 Transaction Type : RESPONSE +08:53:04 Received From : +08:53:04 ============================================================================ +08:53:04 FNo. Len. Field Value +08:53:04 ============================================================================ +08:53:04 [ 1] [ 4] [0210] +08:53:04 [ 2] [ 16] [6688990060012679] +08:53:04 [ 3] [ 6] [300000] +08:53:04 [ 4] [ 12] [000000000000] +08:53:04 [ 11] [ 6] [690327] +08:53:04 [ 12] [ 6] [085259] +08:53:04 [ 15] [ 4] [0320] +08:53:04 [ 18] [ 4] [6011] +08:53:04 [ 32] [ 6] [621354] +08:53:04 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:53:04 [ 37] [ 12] [507905291312] +08:53:04 [ 38] [ 6] [422761] +08:53:04 [ 39] [ 2] [00] +08:53:04 [ 41] [ 8] [20001400] +08:53:04 [ 49] [ 3] [418] +08:53:04 [ 54] [ 20] [0002418C000554839342] +08:53:04 ============================================================================ +08:53:04 Sending to : +08:53:04 ============================================================================ +08:53:04 + + +waiting on router queue for slot.... +08:53:06 ============================================================================ +08:53:06 Slot Id : <101> +08:53:06 Transaction Type : RESPONSE +08:53:06 Received From : +08:53:06 ============================================================================ +08:53:06 FNo. Len. Field Value +08:53:06 ============================================================================ +08:53:06 [ 1] [ 4] [0210] +08:53:06 [ 2] [ 16] [6688990060012679] +08:53:06 [ 3] [ 6] [300000] +08:53:06 [ 4] [ 12] [000000000000] +08:53:06 [ 11] [ 6] [690327] +08:53:06 [ 12] [ 6] [085259] +08:53:06 [ 15] [ 4] [0320] +08:53:06 [ 18] [ 4] [6011] +08:53:06 [ 32] [ 6] [621354] +08:53:06 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:53:06 [ 37] [ 12] [507905291312] +08:53:06 [ 38] [ 6] [422761] +08:53:06 [ 39] [ 2] [00] +08:53:06 [ 41] [ 8] [20001400] +08:53:06 [ 49] [ 3] [418] +08:53:06 [ 54] [ 20] [0002418C000554839342] +08:53:06 ============================================================================ +08:53:06 Calculate Source COMM Id = 0 +08:53:06 ============================================================================ +08:53:06 + + +waiting on router queue for slot.... +08:53:06 ============================================================================ +08:53:06 Slot Id : <102> +08:53:06 Transaction Type : REQUEST +08:53:06 Received From : +08:53:06 ============================================================================ +08:53:06 FNo. Len. Field Value +08:53:06 ============================================================================ +08:53:06 [ 1] [ 4] [0800] +08:53:06 [ 7] [ 10] [0320160455] +08:53:06 [ 11] [ 6] [090455] +08:53:06 [ 37] [ 12] [57909090455] +08:53:06 [ 70] [ 3] [301] +08:53:06 ============================================================================ +08:53:06 + + +waiting on router queue for slot.... +08:53:06 Sending to : +08:53:06 ============================================================================ +08:53:06 ============================================================================ +08:53:06 Slot Id : <102> +08:53:06 Transaction Type : RESPONSE +08:53:06 Received From : +08:53:06 ============================================================================ +08:53:06 FNo. Len. Field Value +08:53:06 ============================================================================ +08:53:06 [ 1] [ 4] [0810] +08:53:06 [ 7] [ 10] [0320160455] +08:53:06 [ 11] [ 6] [090455] +08:53:06 [ 37] [ 12] [579090904550] +08:53:06 [ 39] [ 2] [00] +08:53:06 [ 70] [ 3] [810] +08:53:06 ============================================================================ +08:53:06 Calculate Source COMM Id = 6 +08:53:06 ============================================================================ +08:53:06 + + +waiting on router queue for slot.... +08:53:14 ============================================================================ +08:53:14 Slot Id : <70> +08:53:14 Transaction Type : REQUEST +08:53:14 Received From : +08:53:14 ============================================================================ +08:53:14 FNo. Len. Field Value +08:53:14 ============================================================================ +08:53:14 [ 1] [ 4] [0800] +08:53:14 [ 7] [ 10] [0320015223] +08:53:14 [ 11] [ 6] [155509] +08:53:14 [ 70] [ 3] [301] +08:53:14 ============================================================================ +08:53:14 + + +waiting on router queue for slot.... +08:53:14 Sending to : +08:53:14 ============================================================================ +08:53:14 ============================================================================ +08:53:14 Slot Id : <70> +08:53:14 Transaction Type : RESPONSE +08:53:14 Received From : +08:53:14 ============================================================================ +08:53:14 FNo. Len. Field Value +08:53:14 ============================================================================ +08:53:14 [ 1] [ 4] [0810] +08:53:14 [ 7] [ 10] [0320015223] +08:53:14 [ 11] [ 6] [155509] +08:53:14 [ 39] [ 2] [00] +08:53:14 [ 70] [ 3] [301] +08:53:14 ============================================================================ +08:53:14 Calculate Source COMM Id = 2 +08:53:14 ============================================================================ +08:53:14 + + +waiting on router queue for slot.... +08:53:30 ============================================================================ +08:53:30 Slot Id : <109> +08:53:30 Transaction Type : REQUEST +08:53:30 Received From : +08:53:30 ============================================================================ +08:53:30 FNo. Len. Field Value +08:53:30 ============================================================================ +08:53:30 [ 1] [ 4] [0800] +08:53:30 [ 7] [ 10] [0320015238] +08:53:30 [ 11] [ 6] [155510] +08:53:30 [ 70] [ 3] [301] +08:53:30 ============================================================================ +08:53:30 + + +waiting on router queue for slot.... +08:53:30 Sending to : +08:53:30 ============================================================================ +08:53:30 ============================================================================ +08:53:30 Slot Id : <109> +08:53:30 Transaction Type : RESPONSE +08:53:30 Received From : +08:53:30 ============================================================================ +08:53:30 FNo. Len. Field Value +08:53:30 ============================================================================ +08:53:30 [ 1] [ 4] [0810] +08:53:30 [ 7] [ 10] [0320015238] +08:53:30 [ 11] [ 6] [155510] +08:53:30 [ 39] [ 2] [00] +08:53:30 [ 70] [ 3] [301] +08:53:30 ============================================================================ +08:53:30 Calculate Source COMM Id = 2 +08:53:30 ============================================================================ +08:53:30 + + +waiting on router queue for slot.... +08:53:41 ============================================================================ +08:53:41 Slot Id : <136> +08:53:41 Transaction Type : REQUEST +08:53:41 Received From : +08:53:41 ============================================================================ +08:53:41 FNo. Len. Field Value +08:53:41 ============================================================================ +08:53:41 [ 1] [ 4] [0800] +08:53:41 [ 7] [ 10] [0320015249] +08:53:41 [ 11] [ 6] [155511] +08:53:41 [ 70] [ 3] [301] +08:53:41 ============================================================================ +08:53:41 + + +waiting on router queue for slot.... +08:53:41 Sending to : +08:53:41 ============================================================================ +08:53:41 ============================================================================ +08:53:41 Slot Id : <136> +08:53:41 Transaction Type : RESPONSE +08:53:41 Received From : +08:53:41 ============================================================================ +08:53:41 FNo. Len. Field Value +08:53:41 ============================================================================ +08:53:41 [ 1] [ 4] [0810] +08:53:41 [ 7] [ 10] [0320015249] +08:53:41 [ 11] [ 6] [155511] +08:53:41 [ 39] [ 2] [00] +08:53:41 [ 70] [ 3] [301] +08:53:41 ============================================================================ +08:53:41 Calculate Source COMM Id = 2 +08:53:41 ============================================================================ +08:53:41 + + +waiting on router queue for slot.... +08:53:48 ============================================================================ +08:53:48 Slot Id : <131> +08:53:48 Transaction Type : REQUEST +08:53:48 Received From : +08:53:48 ============================================================================ +08:53:48 FNo. Len. Field Value +08:53:48 ============================================================================ +08:53:48 [ 1] [ 4] [0800] +08:53:48 [ 2] [ 5] [02531] +08:53:48 [ 3] [ 6] [579088] +08:53:48 [ 7] [ 10] [0320015348] +08:53:48 [ 11] [ 6] [806928] +08:53:48 [ 15] [ 10] [0320015348] +08:53:48 [ 37] [ 11] [57908806928] +08:53:48 [ 70] [ 3] [001] +08:53:48 ============================================================================ +08:53:48 + + +waiting on router queue for slot.... +08:53:48 ============================================================================ +08:53:48 Slot Id : <131> +08:53:48 Transaction Type : RESPONSE +08:53:48 Received From : +08:53:48 ============================================================================ +08:53:48 FNo. Len. Field Value +08:53:48 ============================================================================ +08:53:48 [ 1] [ 4] [0810] +08:53:48 [ 7] [ 10] [0320015348] +08:53:48 [ 11] [ 6] [806928] +08:53:48 [ 15] [ 4] [0320] +08:53:48 [ 37] [ 12] [57908806928] +08:53:48 [ 39] [ 2] [00] +08:53:48 [ 70] [ 3] [001] +08:53:48 ============================================================================ +08:53:48 Sending to : +08:53:48 ============================================================================ +08:53:48 + + +waiting on router queue for slot.... +08:53:52 ============================================================================ +08:53:52 Slot Id : <85> +08:53:52 Transaction Type : REQUEST +08:53:52 Received From : +08:53:52 ============================================================================ +08:53:52 FNo. Len. Field Value +08:53:52 ============================================================================ +08:53:52 [ 1] [ 4] [0800] +08:53:52 [ 7] [ 10] [0320015300] +08:53:52 [ 11] [ 6] [155512] +08:53:52 [ 70] [ 3] [301] +08:53:52 ============================================================================ +08:53:52 + + +waiting on router queue for slot.... +08:53:52 Sending to : +08:53:52 ============================================================================ +08:53:52 ============================================================================ +08:53:52 Slot Id : <85> +08:53:52 Transaction Type : RESPONSE +08:53:52 Received From : +08:53:52 ============================================================================ +08:53:52 FNo. Len. Field Value +08:53:52 ============================================================================ +08:53:52 [ 1] [ 4] [0810] +08:53:52 [ 7] [ 10] [0320015300] +08:53:52 [ 11] [ 6] [155512] +08:53:52 [ 39] [ 2] [00] +08:53:52 [ 70] [ 3] [301] +08:53:52 ============================================================================ +08:53:52 Calculate Source COMM Id = 2 +08:53:52 ============================================================================ +08:53:52 + + +waiting on router queue for slot.... +08:54:02 ============================================================================ +08:54:02 Slot Id : <129> +08:54:02 Transaction Type : REQUEST +08:54:02 Received From : +08:54:02 ============================================================================ +08:54:02 FNo. Len. Field Value +08:54:02 ============================================================================ +08:54:02 [ 1] [ 4] [0800] +08:54:02 [ 7] [ 10] [0320015311] +08:54:02 [ 11] [ 6] [155513] +08:54:02 [ 70] [ 3] [301] +08:54:02 ============================================================================ +08:54:02 + + +waiting on router queue for slot.... +08:54:02 Sending to : +08:54:02 ============================================================================ +08:54:02 ============================================================================ +08:54:02 Slot Id : <129> +08:54:02 Transaction Type : RESPONSE +08:54:02 Received From : +08:54:02 ============================================================================ +08:54:02 FNo. Len. Field Value +08:54:02 ============================================================================ +08:54:02 [ 1] [ 4] [0810] +08:54:02 [ 7] [ 10] [0320015311] +08:54:02 [ 11] [ 6] [155513] +08:54:02 [ 39] [ 2] [00] +08:54:02 [ 70] [ 3] [301] +08:54:02 ============================================================================ +08:54:02 Calculate Source COMM Id = 2 +08:54:02 ============================================================================ +08:54:02 + + +waiting on router queue for slot.... +08:54:11 ============================================================================ +08:54:11 Slot Id : <105> +08:54:11 Transaction Type : REQUEST +08:54:11 Received From : +08:54:11 ============================================================================ +08:54:11 FNo. Len. Field Value +08:54:11 ============================================================================ +08:54:11 [ 1] [ 4] [0800] +08:54:11 [ 7] [ 10] [0320160600] +08:54:11 [ 11] [ 6] [090600] +08:54:11 [ 37] [ 12] [57909090600] +08:54:11 [ 70] [ 3] [301] +08:54:11 ============================================================================ +08:54:11 + + +waiting on router queue for slot.... +08:54:11 Sending to : +08:54:11 ============================================================================ +08:54:11 ============================================================================ +08:54:11 Slot Id : <105> +08:54:11 Transaction Type : RESPONSE +08:54:11 Received From : +08:54:11 ============================================================================ +08:54:11 FNo. Len. Field Value +08:54:11 ============================================================================ +08:54:11 [ 1] [ 4] [0810] +08:54:11 [ 7] [ 10] [0320160600] +08:54:11 [ 11] [ 6] [090600] +08:54:11 [ 37] [ 12] [579090906000] +08:54:11 [ 39] [ 2] [00] +08:54:11 [ 70] [ 3] [810] +08:54:11 ============================================================================ +08:54:11 Calculate Source COMM Id = 6 +08:54:11 ============================================================================ +08:54:11 + + +waiting on router queue for slot.... +08:54:13 ============================================================================ +08:54:13 Slot Id : <87> +08:54:13 Transaction Type : REQUEST +08:54:13 Received From : +08:54:13 ============================================================================ +08:54:13 FNo. Len. Field Value +08:54:13 ============================================================================ +08:54:13 [ 1] [ 4] [0200] +08:54:13 [ 2] [ 16] [6688990602687400] +08:54:13 [ 3] [ 6] [011000] +08:54:13 [ 4] [ 12] [000030000000] +08:54:13 [ 7] [ 10] [0320085409] +08:54:13 [ 11] [ 6] [690660] +08:54:13 [ 12] [ 6] [085409] +08:54:13 [ 13] [ 4] [0320] +08:54:13 [ 15] [ 4] [0320] +08:54:13 [ 18] [ 4] [6011] +08:54:13 [ 22] [ 3] [900] +08:54:13 [ 25] [ 2] [02] +08:54:13 [ 28] [ 9] [D00002000] +08:54:13 [ 32] [ 6] [621354] +08:54:13 [ 35] [ 37] [6688990602687400=43100061740097000000] +08:54:13 [ 37] [ 12] [507904153799] +08:54:13 [ 41] [ 8] [20001000] +08:54:13 [ 42] [ 15] [NATIVE ] +08:54:13 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:54:13 [ 49] [ 3] [418] +08:54:13 [ 52] [ 16] [1092CD41BF1548E6] +08:54:13 ============================================================================ +08:54:13 + + +waiting on router queue for slot.... +08:54:13 Sending to : +08:54:13 ============================================================================ +08:54:13 Sending to : +08:54:13 ============================================================================ +08:54:13 ============================================================================ +08:54:13 Slot Id : <87> +08:54:13 Transaction Type : REQUEST +08:54:13 Received From : +08:54:13 ============================================================================ +08:54:13 FNo. Len. Field Value +08:54:13 ============================================================================ +08:54:13 [ 1] [ 4] [0200] +08:54:13 [ 2] [ 16] [6688990602687400] +08:54:13 [ 3] [ 6] [011000] +08:54:13 [ 4] [ 12] [000030000000] +08:54:13 [ 7] [ 10] [0320085409] +08:54:13 [ 11] [ 6] [690660] +08:54:13 [ 12] [ 6] [085409] +08:54:13 [ 13] [ 4] [0320] +08:54:13 [ 15] [ 4] [0320] +08:54:13 [ 18] [ 4] [6011] +08:54:13 [ 22] [ 3] [900] +08:54:13 [ 25] [ 2] [02] +08:54:13 [ 28] [ 9] [D00002000] +08:54:13 [ 32] [ 6] [621354] +08:54:13 [ 35] [ 37] [6688990602687400=43100061740097000000] +08:54:13 [ 37] [ 12] [507904153799] +08:54:13 [ 41] [ 8] [20001000] +08:54:13 [ 42] [ 15] [NATIVE ] +08:54:13 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:54:13 [ 49] [ 3] [418] +08:54:13 [ 52] [ 16] [1092CD41BF1548E6] +08:54:13 ============================================================================ +08:54:13 + + +waiting on router queue for slot.... +08:54:13 Sending to : +08:54:13 ============================================================================ +08:54:13 ============================================================================ +08:54:13 Slot Id : <87> +08:54:13 Transaction Type : REQUEST +08:54:13 Received From : +08:54:13 ============================================================================ +08:54:13 FNo. Len. Field Value +08:54:13 ============================================================================ +08:54:13 [ 1] [ 4] [0200] +08:54:13 [ 2] [ 16] [6688990602687400] +08:54:13 [ 3] [ 6] [011000] +08:54:13 [ 4] [ 12] [000030000000] +08:54:13 [ 7] [ 10] [0320085409] +08:54:13 [ 11] [ 6] [690660] +08:54:13 [ 12] [ 6] [085409] +08:54:13 [ 13] [ 4] [0320] +08:54:13 [ 15] [ 4] [0320] +08:54:13 [ 18] [ 4] [6011] +08:54:13 [ 22] [ 3] [900] +08:54:13 [ 25] [ 2] [02] +08:54:13 [ 28] [ 9] [D00002000] +08:54:13 [ 32] [ 6] [621354] +08:54:13 [ 35] [ 37] [6688990602687400=43100061740097000000] +08:54:13 [ 37] [ 12] [507904153799] +08:54:13 [ 41] [ 8] [20001000] +08:54:13 [ 42] [ 15] [NATIVE ] +08:54:13 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +08:54:13 [ 49] [ 3] [418] +08:54:13 [ 52] [ 16] [EDA1EFA947A8E98C] +08:54:13 ============================================================================ +08:54:13 + + +waiting on router queue for slot.... +08:54:13 Sending to : <4> +08:54:13 ============================================================================ +08:54:14 ============================================================================ +08:54:14 Slot Id : <87> +08:54:14 Transaction Type : RESPONSE +08:54:14 Received From : +08:54:14 ============================================================================ +08:54:14 FNo. Len. Field Value +08:54:14 ============================================================================ +08:54:14 [ 1] [ 4] [0210] +08:54:14 [ 2] [ 16] [6688990602687400] +08:54:14 [ 3] [ 6] [011000] +08:54:14 [ 4] [ 12] [000030000000] +08:54:14 [ 11] [ 6] [690660] +08:54:14 [ 12] [ 6] [085409] +08:54:14 [ 15] [ 4] [0320] +08:54:14 [ 18] [ 4] [6011] +08:54:14 [ 32] [ 6] [621354] +08:54:14 [ 35] [ 37] [6688990602687400=43100061740097000000] +08:54:14 [ 37] [ 12] [507904153799] +08:54:14 [ 38] [ 6] [226631] +08:54:14 [ 39] [ 2] [00] +08:54:14 [ 41] [ 8] [20001000] +08:54:14 [ 49] [ 3] [418] +08:54:14 [ 54] [ 20] [1002418C000047731180] +08:54:14 ============================================================================ +08:54:14 Sending to : +08:54:14 ============================================================================ +08:54:14 + + +waiting on router queue for slot.... +08:54:16 ============================================================================ +08:54:16 Slot Id : <104> +08:54:16 Transaction Type : REQUEST +08:54:16 Received From : +08:54:16 ============================================================================ +08:54:16 FNo. Len. Field Value +08:54:16 ============================================================================ +08:54:16 [ 1] [ 4] [0800] +08:54:16 [ 7] [ 10] [0320015323] +08:54:16 [ 11] [ 6] [155514] +08:54:16 [ 70] [ 3] [301] +08:54:16 ============================================================================ +08:54:16 + + +waiting on router queue for slot.... +08:54:16 Sending to : +08:54:16 ============================================================================ +08:54:16 ============================================================================ +08:54:16 Slot Id : <104> +08:54:16 Transaction Type : RESPONSE +08:54:16 Received From : +08:54:16 ============================================================================ +08:54:16 FNo. Len. Field Value +08:54:16 ============================================================================ +08:54:16 [ 1] [ 4] [0810] +08:54:16 [ 7] [ 10] [0320015323] +08:54:16 [ 11] [ 6] [155514] +08:54:16 [ 39] [ 2] [00] +08:54:16 [ 70] [ 3] [301] +08:54:16 ============================================================================ +08:54:16 Calculate Source COMM Id = 2 +08:54:16 ============================================================================ +08:54:16 + + +waiting on router queue for slot.... +08:54:16 ============================================================================ +08:54:16 Slot Id : <87> +08:54:16 Transaction Type : RESPONSE +08:54:16 Received From : +08:54:16 ============================================================================ +08:54:16 FNo. Len. Field Value +08:54:16 ============================================================================ +08:54:16 [ 1] [ 4] [0210] +08:54:16 [ 2] [ 16] [6688990602687400] +08:54:16 [ 3] [ 6] [011000] +08:54:16 [ 4] [ 12] [000030000000] +08:54:16 [ 11] [ 6] [690660] +08:54:16 [ 12] [ 6] [085409] +08:54:16 [ 15] [ 4] [0320] +08:54:16 [ 18] [ 4] [6011] +08:54:16 [ 32] [ 6] [621354] +08:54:16 [ 35] [ 37] [6688990602687400=43100061740097000000] +08:54:16 [ 37] [ 12] [507904153799] +08:54:16 [ 38] [ 6] [226631] +08:54:16 [ 39] [ 2] [00] +08:54:16 [ 41] [ 8] [20001000] +08:54:16 [ 49] [ 3] [418] +08:54:16 [ 54] [ 20] [1002418C000047731180] +08:54:16 ============================================================================ +08:54:16 Calculate Source COMM Id = 0 +08:54:16 ============================================================================ +08:54:16 + + +waiting on router queue for slot.... +08:54:20 ============================================================================ +08:54:20 Slot Id : <138> +08:54:20 Transaction Type : REQUEST +08:54:20 Received From : +08:54:20 ============================================================================ +08:54:20 FNo. Len. Field Value +08:54:20 ============================================================================ +08:54:20 [ 1] [ 4] [0200] +08:54:20 [ 2] [ 16] [6688990104555709] +08:54:20 [ 3] [ 6] [011000] +08:54:20 [ 4] [ 12] [000030000000] +08:54:20 [ 7] [ 10] [0320085416] +08:54:20 [ 11] [ 6] [690685] +08:54:20 [ 12] [ 6] [085416] +08:54:20 [ 13] [ 4] [0320] +08:54:20 [ 15] [ 4] [0320] +08:54:20 [ 18] [ 4] [6011] +08:54:20 [ 22] [ 3] [900] +08:54:20 [ 25] [ 2] [02] +08:54:20 [ 28] [ 9] [D00002000] +08:54:20 [ 32] [ 6] [621354] +08:54:20 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:54:20 [ 37] [ 12] [507904719388] +08:54:20 [ 41] [ 8] [18001000] +08:54:20 [ 42] [ 15] [NATIVE ] +08:54:20 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:54:20 [ 49] [ 3] [418] +08:54:20 [ 52] [ 16] [AACA8EE211A54993] +08:54:20 ============================================================================ +08:54:20 + + +waiting on router queue for slot.... +08:54:20 Sending to : +08:54:20 ============================================================================ +08:54:20 Sending to : +08:54:20 ============================================================================ +08:54:20 ============================================================================ +08:54:20 Slot Id : <138> +08:54:20 Transaction Type : REQUEST +08:54:20 Received From : +08:54:20 ============================================================================ +08:54:20 FNo. Len. Field Value +08:54:20 ============================================================================ +08:54:20 [ 1] [ 4] [0200] +08:54:20 [ 2] [ 16] [6688990104555709] +08:54:20 [ 3] [ 6] [011000] +08:54:20 [ 4] [ 12] [000030000000] +08:54:20 [ 7] [ 10] [0320085416] +08:54:20 [ 11] [ 6] [690685] +08:54:20 [ 12] [ 6] [085416] +08:54:20 [ 13] [ 4] [0320] +08:54:20 [ 15] [ 4] [0320] +08:54:20 [ 18] [ 4] [6011] +08:54:20 [ 22] [ 3] [900] +08:54:20 [ 25] [ 2] [02] +08:54:20 [ 28] [ 9] [D00002000] +08:54:20 [ 32] [ 6] [621354] +08:54:20 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:54:20 [ 37] [ 12] [507904719388] +08:54:20 [ 41] [ 8] [18001000] +08:54:20 [ 42] [ 15] [NATIVE ] +08:54:20 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:54:20 [ 49] [ 3] [418] +08:54:20 [ 52] [ 16] [AACA8EE211A54993] +08:54:20 ============================================================================ +08:54:20 + + +waiting on router queue for slot.... +08:54:20 Sending to : +08:54:20 ============================================================================ +08:54:21 ============================================================================ +08:54:21 Slot Id : <138> +08:54:21 Transaction Type : REQUEST +08:54:21 Received From : +08:54:21 ============================================================================ +08:54:21 FNo. Len. Field Value +08:54:21 ============================================================================ +08:54:21 [ 1] [ 4] [0200] +08:54:21 [ 2] [ 16] [6688990104555709] +08:54:21 [ 3] [ 6] [011000] +08:54:21 [ 4] [ 12] [000030000000] +08:54:21 [ 7] [ 10] [0320085416] +08:54:21 [ 11] [ 6] [690685] +08:54:21 [ 12] [ 6] [085416] +08:54:21 [ 13] [ 4] [0320] +08:54:21 [ 15] [ 4] [0320] +08:54:21 [ 18] [ 4] [6011] +08:54:21 [ 22] [ 3] [900] +08:54:21 [ 25] [ 2] [02] +08:54:21 [ 28] [ 9] [D00002000] +08:54:21 [ 32] [ 6] [621354] +08:54:21 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:54:21 [ 37] [ 12] [507904719388] +08:54:21 [ 41] [ 8] [18001000] +08:54:21 [ 42] [ 15] [NATIVE ] +08:54:21 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:54:21 [ 49] [ 3] [418] +08:54:21 [ 52] [ 16] [BEACC5DB1E3A5471] +08:54:21 ============================================================================ +08:54:21 + + +waiting on router queue for slot.... +08:54:21 Sending to : <4> +08:54:21 ============================================================================ +08:54:22 ============================================================================ +08:54:22 Slot Id : <138> +08:54:22 Transaction Type : RESPONSE +08:54:22 Received From : +08:54:22 ============================================================================ +08:54:22 FNo. Len. Field Value +08:54:22 ============================================================================ +08:54:22 [ 1] [ 4] [0210] +08:54:22 [ 2] [ 16] [6688990104555709] +08:54:22 [ 3] [ 6] [011000] +08:54:22 [ 4] [ 12] [000030000000] +08:54:22 [ 11] [ 6] [690685] +08:54:22 [ 12] [ 6] [085416] +08:54:22 [ 15] [ 4] [0320] +08:54:22 [ 18] [ 4] [6011] +08:54:22 [ 32] [ 6] [621354] +08:54:22 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:54:22 [ 37] [ 12] [507904719388] +08:54:22 [ 38] [ 6] [307826] +08:54:22 [ 39] [ 2] [00] +08:54:22 [ 41] [ 8] [18001000] +08:54:22 [ 49] [ 3] [418] +08:54:22 [ 54] [ 20] [1002418C000078177934] +08:54:22 ============================================================================ +08:54:22 Sending to : +08:54:22 ============================================================================ +08:54:22 + + +waiting on router queue for slot.... +08:54:22 ============================================================================ +08:54:22 Slot Id : <97> +08:54:22 Transaction Type : REQUEST +08:54:22 Received From : +08:54:22 ============================================================================ +08:54:22 FNo. Len. Field Value +08:54:22 ============================================================================ +08:54:22 [ 1] [ 4] [0200] +08:54:22 [ 2] [ 16] [6688990060012679] +08:54:22 [ 3] [ 6] [010000] +08:54:22 [ 4] [ 12] [000100000000] +08:54:22 [ 7] [ 10] [0320085418] +08:54:22 [ 11] [ 6] [690691] +08:54:22 [ 12] [ 6] [085418] +08:54:22 [ 13] [ 4] [0320] +08:54:22 [ 15] [ 4] [0320] +08:54:22 [ 18] [ 4] [6011] +08:54:22 [ 22] [ 3] [900] +08:54:22 [ 25] [ 2] [02] +08:54:22 [ 28] [ 9] [D00002000] +08:54:22 [ 32] [ 6] [621354] +08:54:22 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:54:22 [ 37] [ 12] [507905291314] +08:54:22 [ 41] [ 8] [20001400] +08:54:22 [ 42] [ 15] [NATIVE ] +08:54:22 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:54:22 [ 49] [ 3] [418] +08:54:22 [ 52] [ 16] [47F48598D3F1767B] +08:54:22 ============================================================================ +08:54:22 + + +waiting on router queue for slot.... +08:54:22 Sending to : +08:54:22 ============================================================================ +08:54:22 Sending to : +08:54:22 ============================================================================ +08:54:22 ============================================================================ +08:54:22 Slot Id : <97> +08:54:22 Transaction Type : REQUEST +08:54:22 Received From : +08:54:22 ============================================================================ +08:54:22 FNo. Len. Field Value +08:54:22 ============================================================================ +08:54:22 [ 1] [ 4] [0200] +08:54:22 [ 2] [ 16] [6688990060012679] +08:54:22 [ 3] [ 6] [010000] +08:54:22 [ 4] [ 12] [000100000000] +08:54:22 [ 7] [ 10] [0320085418] +08:54:22 [ 11] [ 6] [690691] +08:54:22 [ 12] [ 6] [085418] +08:54:22 [ 13] [ 4] [0320] +08:54:22 [ 15] [ 4] [0320] +08:54:22 [ 18] [ 4] [6011] +08:54:22 [ 22] [ 3] [900] +08:54:22 [ 25] [ 2] [02] +08:54:22 [ 28] [ 9] [D00002000] +08:54:22 [ 32] [ 6] [621354] +08:54:22 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:54:22 [ 37] [ 12] [507905291314] +08:54:22 [ 41] [ 8] [20001400] +08:54:22 [ 42] [ 15] [NATIVE ] +08:54:22 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:54:22 [ 49] [ 3] [418] +08:54:22 [ 52] [ 16] [47F48598D3F1767B] +08:54:22 ============================================================================ +08:54:22 + + +waiting on router queue for slot.... +08:54:22 Sending to : +08:54:22 ============================================================================ +08:54:22 ============================================================================ +08:54:22 Slot Id : <97> +08:54:22 Transaction Type : REQUEST +08:54:22 Received From : +08:54:22 ============================================================================ +08:54:22 FNo. Len. Field Value +08:54:22 ============================================================================ +08:54:22 [ 1] [ 4] [0200] +08:54:22 [ 2] [ 16] [6688990060012679] +08:54:22 [ 3] [ 6] [010000] +08:54:22 [ 4] [ 12] [000100000000] +08:54:22 [ 7] [ 10] [0320085418] +08:54:22 [ 11] [ 6] [690691] +08:54:22 [ 12] [ 6] [085418] +08:54:22 [ 13] [ 4] [0320] +08:54:22 [ 15] [ 4] [0320] +08:54:22 [ 18] [ 4] [6011] +08:54:22 [ 22] [ 3] [900] +08:54:22 [ 25] [ 2] [02] +08:54:22 [ 28] [ 9] [D00002000] +08:54:22 [ 32] [ 6] [621354] +08:54:22 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:54:22 [ 37] [ 12] [507905291314] +08:54:22 [ 41] [ 8] [20001400] +08:54:22 [ 42] [ 15] [NATIVE ] +08:54:22 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:54:22 [ 49] [ 3] [418] +08:54:22 [ 52] [ 16] [63865579AF752D0E] +08:54:22 ============================================================================ +08:54:22 + + +waiting on router queue for slot.... +08:54:22 Sending to : <4> +08:54:22 ============================================================================ +08:54:23 ============================================================================ +08:54:23 Slot Id : <138> +08:54:23 Transaction Type : RESPONSE +08:54:23 Received From : +08:54:23 ============================================================================ +08:54:23 FNo. Len. Field Value +08:54:23 ============================================================================ +08:54:23 [ 1] [ 4] [0210] +08:54:23 [ 2] [ 16] [6688990104555709] +08:54:23 [ 3] [ 6] [011000] +08:54:23 [ 4] [ 12] [000030000000] +08:54:23 [ 11] [ 6] [690685] +08:54:23 [ 12] [ 6] [085416] +08:54:23 [ 15] [ 4] [0320] +08:54:23 [ 18] [ 4] [6011] +08:54:23 [ 32] [ 6] [621354] +08:54:23 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:54:23 [ 37] [ 12] [507904719388] +08:54:23 [ 38] [ 6] [307826] +08:54:23 [ 39] [ 2] [00] +08:54:23 [ 41] [ 8] [18001000] +08:54:23 [ 49] [ 3] [418] +08:54:23 [ 54] [ 20] [1002418C000078177934] +08:54:23 ============================================================================ +08:54:23 Calculate Source COMM Id = 0 +08:54:23 ============================================================================ +08:54:23 + + +waiting on router queue for slot.... +08:54:24 ============================================================================ +08:54:24 Slot Id : <97> +08:54:24 Transaction Type : RESPONSE +08:54:24 Received From : +08:54:24 ============================================================================ +08:54:24 FNo. Len. Field Value +08:54:24 ============================================================================ +08:54:24 [ 1] [ 4] [0210] +08:54:24 [ 2] [ 16] [6688990060012679] +08:54:24 [ 3] [ 6] [010000] +08:54:24 [ 4] [ 12] [000100000000] +08:54:24 [ 11] [ 6] [690691] +08:54:24 [ 12] [ 6] [085418] +08:54:24 [ 15] [ 4] [0320] +08:54:24 [ 18] [ 4] [6011] +08:54:24 [ 32] [ 6] [621354] +08:54:24 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:54:24 [ 37] [ 12] [507905291314] +08:54:24 [ 38] [ 6] [285996] +08:54:24 [ 39] [ 2] [00] +08:54:24 [ 41] [ 8] [20001400] +08:54:24 [ 49] [ 3] [418] +08:54:24 [ 54] [ 20] [0002418C000454639342] +08:54:24 ============================================================================ +08:54:24 Sending to : +08:54:24 ============================================================================ +08:54:24 + + +waiting on router queue for slot.... +08:54:25 ============================================================================ +08:54:25 Slot Id : <97> +08:54:25 Transaction Type : RESPONSE +08:54:25 Received From : +08:54:25 ============================================================================ +08:54:25 FNo. Len. Field Value +08:54:25 ============================================================================ +08:54:25 [ 1] [ 4] [0210] +08:54:25 [ 2] [ 16] [6688990060012679] +08:54:25 [ 3] [ 6] [010000] +08:54:25 [ 4] [ 12] [000100000000] +08:54:25 [ 11] [ 6] [690691] +08:54:25 [ 12] [ 6] [085418] +08:54:25 [ 15] [ 4] [0320] +08:54:25 [ 18] [ 4] [6011] +08:54:25 [ 32] [ 6] [621354] +08:54:25 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:54:25 [ 37] [ 12] [507905291314] +08:54:25 [ 38] [ 6] [285996] +08:54:25 [ 39] [ 2] [00] +08:54:25 [ 41] [ 8] [20001400] +08:54:25 [ 49] [ 3] [418] +08:54:25 [ 54] [ 20] [0002418C000454639342] +08:54:25 ============================================================================ +08:54:25 Calculate Source COMM Id = 0 +08:54:25 ============================================================================ +08:54:25 + + +waiting on router queue for slot.... +08:54:29 ============================================================================ +08:54:29 Slot Id : <117> +08:54:29 Transaction Type : REQUEST +08:54:29 Received From : +08:54:29 ============================================================================ +08:54:29 FNo. Len. Field Value +08:54:29 ============================================================================ +08:54:29 [ 1] [ 4] [0200] +08:54:29 [ 2] [ 16] [1808930500014303] +08:54:29 [ 3] [ 6] [010000] +08:54:29 [ 4] [ 12] [000100000000] +08:54:29 [ 7] [ 10] [0320085220] +08:54:29 [ 11] [ 6] [934129] +08:54:29 [ 12] [ 6] [085220] +08:54:29 [ 13] [ 4] [0320] +08:54:29 [ 15] [ 4] [0320] +08:54:29 [ 18] [ 4] [6011] +08:54:29 [ 19] [ 3] [418] +08:54:29 [ 22] [ 3] [021] +08:54:29 [ 25] [ 2] [01] +08:54:29 [ 28] [ 9] [D00002000] +08:54:29 [ 32] [ 6] [668899] +08:54:29 [ 35] [ 27] [1808930500014303=1803500022] +08:54:29 [ 37] [ 12] [507900844829] +08:54:29 [ 41] [ 8] [03015003] +08:54:29 [ 42] [ 15] [APT ] +08:54:29 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:54:29 [ 49] [ 3] [418] +08:54:29 [ 52] [ 16] [10FFC6C354F7AB45] +08:54:29 ============================================================================ +08:54:29 + + +waiting on router queue for slot.... +08:54:29 Sending to : +08:54:29 ============================================================================ +08:54:29 Sending to : +08:54:29 ============================================================================ +08:54:29 ============================================================================ +08:54:29 Slot Id : <117> +08:54:29 Transaction Type : REQUEST +08:54:29 Received From : +08:54:29 ============================================================================ +08:54:29 FNo. Len. Field Value +08:54:29 ============================================================================ +08:54:29 [ 1] [ 4] [0200] +08:54:29 [ 2] [ 16] [1808930500014303] +08:54:29 [ 3] [ 6] [010000] +08:54:29 [ 4] [ 12] [000100000000] +08:54:29 [ 7] [ 10] [0320085220] +08:54:29 [ 11] [ 6] [934129] +08:54:29 [ 12] [ 6] [085220] +08:54:29 [ 13] [ 4] [0320] +08:54:29 [ 15] [ 4] [0320] +08:54:29 [ 18] [ 4] [6011] +08:54:29 [ 19] [ 3] [418] +08:54:29 [ 22] [ 3] [021] +08:54:29 [ 25] [ 2] [01] +08:54:29 [ 28] [ 9] [D00002000] +08:54:29 [ 32] [ 6] [668899] +08:54:29 [ 35] [ 27] [1808930500014303=1803500022] +08:54:29 [ 37] [ 12] [507900844829] +08:54:29 [ 41] [ 8] [03015003] +08:54:29 [ 42] [ 15] [APT ] +08:54:29 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:54:29 [ 49] [ 3] [418] +08:54:29 [ 52] [ 16] [10FFC6C354F7AB45] +08:54:29 ============================================================================ +08:54:29 + + +waiting on router queue for slot.... +08:54:29 Sending to : +08:54:29 ============================================================================ +08:54:29 ============================================================================ +08:54:29 Slot Id : <117> +08:54:29 Transaction Type : REQUEST +08:54:29 Received From : +08:54:29 ============================================================================ +08:54:29 FNo. Len. Field Value +08:54:29 ============================================================================ +08:54:29 [ 1] [ 4] [0200] +08:54:29 [ 2] [ 16] [1808930500014303] +08:54:29 [ 3] [ 6] [010000] +08:54:29 [ 4] [ 12] [000100000000] +08:54:29 [ 7] [ 10] [0320085220] +08:54:29 [ 11] [ 6] [934129] +08:54:29 [ 12] [ 6] [085220] +08:54:29 [ 13] [ 4] [0320] +08:54:29 [ 15] [ 4] [0320] +08:54:29 [ 18] [ 4] [6011] +08:54:29 [ 19] [ 3] [418] +08:54:29 [ 22] [ 3] [021] +08:54:29 [ 25] [ 2] [01] +08:54:29 [ 28] [ 9] [D00002000] +08:54:29 [ 32] [ 6] [668899] +08:54:29 [ 35] [ 27] [1808930500014303=1803500022] +08:54:29 [ 37] [ 12] [507900844829] +08:54:29 [ 41] [ 8] [03015003] +08:54:29 [ 42] [ 15] [APT ] +08:54:29 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:54:29 [ 49] [ 3] [418] +08:54:29 [ 52] [ 16] [08F610331435960F] +08:54:29 ============================================================================ +08:54:29 + + +waiting on router queue for slot.... +08:54:29 Sending to : <2> +08:54:29 ============================================================================ +08:54:36 ============================================================================ +08:54:36 Slot Id : <117> +08:54:36 Transaction Type : RESPONSE +08:54:36 Received From : +08:54:36 ============================================================================ +08:54:36 FNo. Len. Field Value +08:54:36 ============================================================================ +08:54:36 [ 1] [ 4] [0210] +08:54:36 [ 2] [ 16] [1808930500014303] +08:54:36 [ 3] [ 6] [010000] +08:54:36 [ 4] [ 12] [000100000000] +08:54:36 [ 6] [ 12] [000100000000] +08:54:36 [ 7] [ 10] [0320085220] +08:54:36 [ 11] [ 6] [934129] +08:54:36 [ 12] [ 6] [085220] +08:54:36 [ 13] [ 4] [0320] +08:54:36 [ 18] [ 4] [6011] +08:54:36 [ 19] [ 3] [418] +08:54:36 [ 22] [ 3] [021] +08:54:36 [ 32] [ 6] [668899] +08:54:36 [ 35] [ 27] [1808930500014303=1803500022] +08:54:36 [ 37] [ 12] [507900844829] +08:54:36 [ 38] [ 6] [934129] +08:54:36 [ 39] [ 2] [51] +08:54:36 [ 41] [ 8] [03015003] +08:54:36 [ 49] [ 3] [418] +08:54:36 [ 52] [ 16] [08F610331435960F] +08:54:36 ============================================================================ +08:54:36 Sending to : +08:54:36 ============================================================================ +08:54:36 + + +waiting on router queue for slot.... +08:54:37 ============================================================================ +08:54:37 Slot Id : <117> +08:54:37 Transaction Type : RESPONSE +08:54:37 Received From : +08:54:37 ============================================================================ +08:54:37 FNo. Len. Field Value +08:54:37 ============================================================================ +08:54:37 [ 1] [ 4] [0210] +08:54:37 [ 2] [ 16] [1808930500014303] +08:54:37 [ 3] [ 6] [010000] +08:54:37 [ 4] [ 12] [000100000000] +08:54:37 [ 6] [ 12] [000100000000] +08:54:37 [ 7] [ 10] [0320085220] +08:54:37 [ 11] [ 6] [934129] +08:54:37 [ 12] [ 6] [085220] +08:54:37 [ 13] [ 4] [0320] +08:54:37 [ 18] [ 4] [6011] +08:54:37 [ 19] [ 3] [418] +08:54:37 [ 22] [ 3] [021] +08:54:37 [ 32] [ 6] [668899] +08:54:37 [ 35] [ 27] [1808930500014303=1803500022] +08:54:37 [ 37] [ 12] [507900844829] +08:54:37 [ 38] [ 6] [934129] +08:54:37 [ 39] [ 2] [51] +08:54:37 [ 41] [ 8] [03015003] +08:54:37 [ 49] [ 3] [418] +08:54:37 [ 52] [ 16] [08F610331435960F] +08:54:37 ============================================================================ +08:54:37 Calculate Source COMM Id = 4 +08:54:37 ============================================================================ +08:54:37 + + +waiting on router queue for slot.... +08:54:44 ============================================================================ +08:54:44 Slot Id : <112> +08:54:44 Transaction Type : REQUEST +08:54:44 Received From : +08:54:44 ============================================================================ +08:54:44 FNo. Len. Field Value +08:54:44 ============================================================================ +08:54:44 [ 1] [ 4] [0800] +08:54:44 [ 7] [ 10] [0320015352] +08:54:44 [ 11] [ 6] [155515] +08:54:44 [ 70] [ 3] [301] +08:54:44 ============================================================================ +08:54:44 + + +waiting on router queue for slot.... +08:54:44 Sending to : +08:54:44 ============================================================================ +08:54:44 ============================================================================ +08:54:44 Slot Id : <112> +08:54:44 Transaction Type : RESPONSE +08:54:44 Received From : +08:54:44 ============================================================================ +08:54:44 FNo. Len. Field Value +08:54:44 ============================================================================ +08:54:44 [ 1] [ 4] [0810] +08:54:44 [ 7] [ 10] [0320015352] +08:54:44 [ 11] [ 6] [155515] +08:54:44 [ 39] [ 2] [00] +08:54:44 [ 70] [ 3] [301] +08:54:44 ============================================================================ +08:54:44 Calculate Source COMM Id = 2 +08:54:44 ============================================================================ +08:54:44 + + +waiting on router queue for slot.... +08:54:46 ============================================================================ +08:54:46 Slot Id : <140> +08:54:46 Transaction Type : REQUEST +08:54:46 Received From : +08:54:46 ============================================================================ +08:54:46 FNo. Len. Field Value +08:54:46 ============================================================================ +08:54:46 [ 1] [ 4] [0800] +08:54:46 [ 7] [ 10] [0320085434] +08:54:46 [ 11] [ 6] [058009] +08:54:46 [ 37] [ 12] [507908058009] +08:54:46 [ 70] [ 3] [ ] +08:54:46 ============================================================================ +08:54:46 + + +waiting on router queue for slot.... +08:54:46 Sending to : +08:54:46 ============================================================================ +08:54:46 ============================================================================ +08:54:46 Slot Id : <140> +08:54:46 Transaction Type : RESPONSE +08:54:46 Received From : +08:54:46 ============================================================================ +08:54:46 FNo. Len. Field Value +08:54:46 ============================================================================ +08:54:46 [ 1] [ 4] [0810] +08:54:46 [ 7] [ 10] [0320085434] +08:54:46 [ 11] [ 6] [058009] +08:54:46 [ 37] [ 12] [507908058009] +08:54:46 [ 39] [ 2] [91] +08:54:46 [ 70] [ 3] [ ] +08:54:46 ============================================================================ +08:54:46 Calculate Source COMM Id = 3 +08:54:46 ============================================================================ +08:54:46 + + +waiting on router queue for slot.... +08:54:50 ============================================================================ +08:54:50 Slot Id : <116> +08:54:50 Transaction Type : REQUEST +08:54:50 Received From : +08:54:50 ============================================================================ +08:54:50 FNo. Len. Field Value +08:54:50 ============================================================================ +08:54:50 [ 1] [ 4] [0800] +08:54:50 [ 2] [ 5] [02531] +08:54:50 [ 3] [ 6] [579088] +08:54:50 [ 7] [ 10] [0320015450] +08:54:50 [ 11] [ 6] [806929] +08:54:50 [ 15] [ 10] [0320015450] +08:54:50 [ 37] [ 11] [57908806929] +08:54:50 [ 70] [ 3] [001] +08:54:50 ============================================================================ +08:54:50 + + +waiting on router queue for slot.... +08:54:50 ============================================================================ +08:54:50 Slot Id : <116> +08:54:50 Transaction Type : RESPONSE +08:54:50 Received From : +08:54:50 ============================================================================ +08:54:50 FNo. Len. Field Value +08:54:50 ============================================================================ +08:54:50 [ 1] [ 4] [0810] +08:54:50 [ 7] [ 10] [0320015450] +08:54:50 [ 11] [ 6] [806929] +08:54:50 [ 15] [ 4] [0320] +08:54:50 [ 37] [ 12] [57908806929] +08:54:50 [ 39] [ 2] [00] +08:54:50 [ 70] [ 3] [001] +08:54:50 ============================================================================ +08:54:50 Sending to : +08:54:50 ============================================================================ +08:54:50 + + +waiting on router queue for slot.... +08:54:55 ============================================================================ +08:54:55 Slot Id : <111> +08:54:55 Transaction Type : REQUEST +08:54:55 Received From : +08:54:55 ============================================================================ +08:54:55 FNo. Len. Field Value +08:54:55 ============================================================================ +08:54:55 [ 1] [ 4] [0800] +08:54:55 [ 7] [ 10] [0320020242] +08:54:55 [ 11] [ 6] [085502] +08:54:55 [ 37] [ 12] [57909085502] +08:54:55 [ 70] [ 3] [301] +08:54:55 ============================================================================ +08:54:55 + + +waiting on router queue for slot.... +08:54:55 Sending to : +08:54:55 ============================================================================ +08:54:55 ============================================================================ +08:54:55 Slot Id : <111> +08:54:55 Transaction Type : RESPONSE +08:54:55 Received From : +08:54:55 ============================================================================ +08:54:55 FNo. Len. Field Value +08:54:55 ============================================================================ +08:54:55 [ 1] [ 4] [0810] +08:54:55 [ 7] [ 10] [0320020242] +08:54:55 [ 11] [ 6] [085502] +08:54:55 [ 37] [ 12] [579090855020] +08:54:55 [ 39] [ 2] [00] +08:54:55 [ 70] [ 3] [810] +08:54:55 ============================================================================ +08:54:55 Calculate Source COMM Id = 1 +08:54:55 ============================================================================ +08:54:55 + + +waiting on router queue for slot.... +08:54:58 ============================================================================ +08:54:58 Slot Id : <147> +08:54:58 Transaction Type : REQUEST +08:54:58 Received From : +08:54:58 ============================================================================ +08:54:58 FNo. Len. Field Value +08:54:58 ============================================================================ +08:54:58 [ 1] [ 4] [0800] +08:54:58 [ 7] [ 10] [0320015407] +08:54:58 [ 11] [ 6] [155516] +08:54:58 [ 70] [ 3] [301] +08:54:58 ============================================================================ +08:54:58 + + +waiting on router queue for slot.... +08:54:58 Sending to : +08:54:58 ============================================================================ +08:54:58 ============================================================================ +08:54:58 Slot Id : <147> +08:54:58 Transaction Type : RESPONSE +08:54:58 Received From : +08:54:58 ============================================================================ +08:54:58 FNo. Len. Field Value +08:54:58 ============================================================================ +08:54:58 [ 1] [ 4] [0810] +08:54:58 [ 7] [ 10] [0320015407] +08:54:58 [ 11] [ 6] [155516] +08:54:58 [ 39] [ 2] [00] +08:54:58 [ 70] [ 3] [301] +08:54:58 ============================================================================ +08:54:58 Calculate Source COMM Id = 2 +08:54:58 ============================================================================ +08:54:58 + + +waiting on router queue for slot.... +08:55:09 ============================================================================ +08:55:09 Slot Id : <124> +08:55:09 Transaction Type : REQUEST +08:55:09 Received From : +08:55:09 ============================================================================ +08:55:09 FNo. Len. Field Value +08:55:09 ============================================================================ +08:55:09 [ 1] [ 4] [0800] +08:55:09 [ 7] [ 10] [0320015417] +08:55:09 [ 11] [ 6] [155517] +08:55:09 [ 70] [ 3] [301] +08:55:09 ============================================================================ +08:55:09 + + +waiting on router queue for slot.... +08:55:09 Sending to : +08:55:09 ============================================================================ +08:55:09 ============================================================================ +08:55:09 Slot Id : <124> +08:55:09 Transaction Type : RESPONSE +08:55:09 Received From : +08:55:09 ============================================================================ +08:55:09 FNo. Len. Field Value +08:55:09 ============================================================================ +08:55:09 [ 1] [ 4] [0810] +08:55:09 [ 7] [ 10] [0320015417] +08:55:09 [ 11] [ 6] [155517] +08:55:09 [ 39] [ 2] [00] +08:55:09 [ 70] [ 3] [301] +08:55:09 ============================================================================ +08:55:09 Calculate Source COMM Id = 2 +08:55:09 ============================================================================ +08:55:09 + + +waiting on router queue for slot.... +08:55:15 ============================================================================ +08:55:15 Slot Id : <123> +08:55:15 Transaction Type : REQUEST +08:55:15 Received From : +08:55:15 ============================================================================ +08:55:15 FNo. Len. Field Value +08:55:15 ============================================================================ +08:55:15 [ 1] [ 4] [0200] +08:55:15 [ 2] [ 16] [6688990104555709] +08:55:15 [ 3] [ 6] [301000] +08:55:15 [ 4] [ 12] [000000000000] +08:55:15 [ 7] [ 10] [0320085511] +08:55:15 [ 11] [ 6] [690920] +08:55:15 [ 12] [ 6] [085511] +08:55:15 [ 13] [ 4] [0320] +08:55:15 [ 15] [ 4] [0320] +08:55:15 [ 18] [ 4] [6011] +08:55:15 [ 22] [ 3] [900] +08:55:15 [ 25] [ 2] [02] +08:55:15 [ 28] [ 9] [D00000000] +08:55:15 [ 32] [ 6] [621354] +08:55:15 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:55:15 [ 37] [ 12] [507904719389] +08:55:15 [ 41] [ 8] [18001000] +08:55:15 [ 42] [ 15] [NATIVE ] +08:55:15 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:55:15 [ 49] [ 3] [418] +08:55:15 [ 52] [ 16] [AACA8EE211A54993] +08:55:15 ============================================================================ +08:55:15 + + +waiting on router queue for slot.... +08:55:15 Sending to : +08:55:15 ============================================================================ +08:55:15 Sending to : +08:55:15 ============================================================================ +08:55:15 ============================================================================ +08:55:15 Slot Id : <80> +08:55:15 Transaction Type : REQUEST +08:55:15 Received From : +08:55:15 ============================================================================ +08:55:15 FNo. Len. Field Value +08:55:15 ============================================================================ +08:55:15 [ 1] [ 4] [0200] +08:55:15 [ 2] [ 16] [1808930500014303] +08:55:15 [ 3] [ 6] [010000] +08:55:15 [ 4] [ 12] [000100000000] +08:55:15 [ 7] [ 10] [0320085306] +08:55:15 [ 11] [ 6] [934166] +08:55:15 [ 12] [ 6] [085306] +08:55:15 [ 13] [ 4] [0320] +08:55:15 [ 15] [ 4] [0320] +08:55:15 [ 18] [ 4] [6011] +08:55:15 [ 19] [ 3] [418] +08:55:15 [ 22] [ 3] [021] +08:55:15 [ 25] [ 2] [01] +08:55:15 [ 28] [ 9] [D00002000] +08:55:15 [ 32] [ 6] [668899] +08:55:15 [ 35] [ 27] [1808930500014303=1803500022] +08:55:15 [ 37] [ 12] [507900844830] +08:55:15 [ 41] [ 8] [03015003] +08:55:15 [ 42] [ 15] [APT ] +08:55:15 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:55:15 [ 49] [ 3] [418] +08:55:15 [ 52] [ 16] [10FFC6C354F7AB45] +08:55:15 ============================================================================ +08:55:15 + + +waiting on router queue for slot.... +08:55:15 Sending to : +08:55:15 ============================================================================ +08:55:15 Sending to : +08:55:15 ============================================================================ +08:55:15 ============================================================================ +08:55:15 Slot Id : <123> +08:55:15 Transaction Type : REQUEST +08:55:15 Received From : +08:55:15 ============================================================================ +08:55:15 FNo. Len. Field Value +08:55:15 ============================================================================ +08:55:15 [ 1] [ 4] [0200] +08:55:15 [ 2] [ 16] [6688990104555709] +08:55:15 [ 3] [ 6] [301000] +08:55:15 [ 4] [ 12] [000000000000] +08:55:15 [ 7] [ 10] [0320085511] +08:55:15 [ 11] [ 6] [690920] +08:55:15 [ 12] [ 6] [085511] +08:55:15 [ 13] [ 4] [0320] +08:55:15 [ 15] [ 4] [0320] +08:55:15 [ 18] [ 4] [6011] +08:55:15 [ 22] [ 3] [900] +08:55:15 [ 25] [ 2] [02] +08:55:15 [ 28] [ 9] [D00000000] +08:55:15 [ 32] [ 6] [621354] +08:55:15 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:55:15 [ 37] [ 12] [507904719389] +08:55:15 [ 41] [ 8] [18001000] +08:55:15 [ 42] [ 15] [NATIVE ] +08:55:15 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:55:15 [ 49] [ 3] [418] +08:55:15 [ 52] [ 16] [AACA8EE211A54993] +08:55:15 ============================================================================ +08:55:15 + + +waiting on router queue for slot.... +08:55:15 Sending to : +08:55:15 ============================================================================ +08:55:15 ============================================================================ +08:55:15 Slot Id : <123> +08:55:15 Transaction Type : REQUEST +08:55:15 Received From : +08:55:15 ============================================================================ +08:55:15 FNo. Len. Field Value +08:55:15 ============================================================================ +08:55:15 [ 1] [ 4] [0200] +08:55:15 [ 2] [ 16] [6688990104555709] +08:55:15 [ 3] [ 6] [301000] +08:55:15 [ 4] [ 12] [000000000000] +08:55:15 [ 7] [ 10] [0320085511] +08:55:15 [ 11] [ 6] [690920] +08:55:15 [ 12] [ 6] [085511] +08:55:15 [ 13] [ 4] [0320] +08:55:15 [ 15] [ 4] [0320] +08:55:15 [ 18] [ 4] [6011] +08:55:15 [ 22] [ 3] [900] +08:55:15 [ 25] [ 2] [02] +08:55:15 [ 28] [ 9] [D00000000] +08:55:15 [ 32] [ 6] [621354] +08:55:15 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:55:15 [ 37] [ 12] [507904719389] +08:55:15 [ 41] [ 8] [18001000] +08:55:15 [ 42] [ 15] [NATIVE ] +08:55:15 [ 43] [ 40] [Khoua Unit Khoua LAO] +08:55:15 [ 49] [ 3] [418] +08:55:15 [ 52] [ 16] [BEACC5DB1E3A5471] +08:55:15 ============================================================================ +08:55:15 + + +waiting on router queue for slot.... +08:55:15 Sending to : <4> +08:55:15 ============================================================================ +08:55:15 ============================================================================ +08:55:15 Slot Id : <80> +08:55:15 Transaction Type : REQUEST +08:55:15 Received From : +08:55:15 ============================================================================ +08:55:15 FNo. Len. Field Value +08:55:15 ============================================================================ +08:55:15 [ 1] [ 4] [0200] +08:55:15 [ 2] [ 16] [1808930500014303] +08:55:15 [ 3] [ 6] [010000] +08:55:15 [ 4] [ 12] [000100000000] +08:55:15 [ 7] [ 10] [0320085306] +08:55:15 [ 11] [ 6] [934166] +08:55:15 [ 12] [ 6] [085306] +08:55:15 [ 13] [ 4] [0320] +08:55:15 [ 15] [ 4] [0320] +08:55:15 [ 18] [ 4] [6011] +08:55:15 [ 19] [ 3] [418] +08:55:15 [ 22] [ 3] [021] +08:55:15 [ 25] [ 2] [01] +08:55:15 [ 28] [ 9] [D00002000] +08:55:15 [ 32] [ 6] [668899] +08:55:15 [ 35] [ 27] [1808930500014303=1803500022] +08:55:15 [ 37] [ 12] [507900844830] +08:55:15 [ 41] [ 8] [03015003] +08:55:15 [ 42] [ 15] [APT ] +08:55:15 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:55:15 [ 49] [ 3] [418] +08:55:15 [ 52] [ 16] [10FFC6C354F7AB45] +08:55:15 ============================================================================ +08:55:15 + + +waiting on router queue for slot.... +08:55:15 Sending to : +08:55:15 ============================================================================ +08:55:15 ============================================================================ +08:55:15 Slot Id : <80> +08:55:15 Transaction Type : REQUEST +08:55:15 Received From : +08:55:15 ============================================================================ +08:55:15 FNo. Len. Field Value +08:55:15 ============================================================================ +08:55:15 [ 1] [ 4] [0200] +08:55:15 [ 2] [ 16] [1808930500014303] +08:55:15 [ 3] [ 6] [010000] +08:55:15 [ 4] [ 12] [000100000000] +08:55:15 [ 7] [ 10] [0320085306] +08:55:15 [ 11] [ 6] [934166] +08:55:15 [ 12] [ 6] [085306] +08:55:15 [ 13] [ 4] [0320] +08:55:15 [ 15] [ 4] [0320] +08:55:15 [ 18] [ 4] [6011] +08:55:15 [ 19] [ 3] [418] +08:55:15 [ 22] [ 3] [021] +08:55:15 [ 25] [ 2] [01] +08:55:15 [ 28] [ 9] [D00002000] +08:55:15 [ 32] [ 6] [668899] +08:55:15 [ 35] [ 27] [1808930500014303=1803500022] +08:55:15 [ 37] [ 12] [507900844830] +08:55:15 [ 41] [ 8] [03015003] +08:55:15 [ 42] [ 15] [APT ] +08:55:15 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:55:15 [ 49] [ 3] [418] +08:55:15 [ 52] [ 16] [08F610331435960F] +08:55:15 ============================================================================ +08:55:15 + + +waiting on router queue for slot.... +08:55:15 Sending to : <2> +08:55:15 ============================================================================ +08:55:16 ============================================================================ +08:55:16 Slot Id : <123> +08:55:16 Transaction Type : RESPONSE +08:55:16 Received From : +08:55:16 ============================================================================ +08:55:16 FNo. Len. Field Value +08:55:16 ============================================================================ +08:55:16 [ 1] [ 4] [0210] +08:55:16 [ 2] [ 16] [6688990104555709] +08:55:16 [ 3] [ 6] [301000] +08:55:16 [ 4] [ 12] [000000000000] +08:55:16 [ 11] [ 6] [690920] +08:55:16 [ 12] [ 6] [085511] +08:55:16 [ 15] [ 4] [0320] +08:55:16 [ 18] [ 4] [6011] +08:55:16 [ 32] [ 6] [621354] +08:55:16 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:55:16 [ 37] [ 12] [507904719389] +08:55:16 [ 38] [ 6] [958131] +08:55:16 [ 39] [ 2] [00] +08:55:16 [ 41] [ 8] [18001000] +08:55:16 [ 49] [ 3] [418] +08:55:16 [ 54] [ 20] [1002418C000078177934] +08:55:16 ============================================================================ +08:55:16 Sending to : +08:55:16 ============================================================================ +08:55:16 + + +waiting on router queue for slot.... +08:55:16 ============================================================================ +08:55:16 Slot Id : <161> +08:55:16 Transaction Type : REQUEST +08:55:16 Received From : +08:55:16 ============================================================================ +08:55:16 FNo. Len. Field Value +08:55:16 ============================================================================ +08:55:16 [ 1] [ 4] [0800] +08:55:16 [ 7] [ 10] [0320160705] +08:55:16 [ 11] [ 6] [090705] +08:55:16 [ 37] [ 12] [57909090705] +08:55:16 [ 70] [ 3] [301] +08:55:16 ============================================================================ +08:55:16 + + +waiting on router queue for slot.... +08:55:16 Sending to : +08:55:16 ============================================================================ +08:55:16 ============================================================================ +08:55:16 Slot Id : <161> +08:55:16 Transaction Type : RESPONSE +08:55:16 Received From : +08:55:16 ============================================================================ +08:55:16 FNo. Len. Field Value +08:55:16 ============================================================================ +08:55:16 [ 1] [ 4] [0810] +08:55:16 [ 7] [ 10] [0320160705] +08:55:16 [ 11] [ 6] [090705] +08:55:16 [ 37] [ 12] [579090907050] +08:55:16 [ 39] [ 2] [00] +08:55:16 [ 70] [ 3] [810] +08:55:16 ============================================================================ +08:55:16 Calculate Source COMM Id = 6 +08:55:16 ============================================================================ +08:55:16 + + +waiting on router queue for slot.... +08:55:18 ============================================================================ +08:55:18 Slot Id : <80> +08:55:18 Transaction Type : RESPONSE +08:55:18 Received From : +08:55:18 ============================================================================ +08:55:18 FNo. Len. Field Value +08:55:18 ============================================================================ +08:55:18 [ 1] [ 4] [0210] +08:55:18 [ 2] [ 16] [1808930500014303] +08:55:18 [ 3] [ 6] [010000] +08:55:18 [ 4] [ 12] [000100000000] +08:55:18 [ 6] [ 12] [000100000000] +08:55:18 [ 7] [ 10] [0320085306] +08:55:18 [ 11] [ 6] [934166] +08:55:18 [ 12] [ 6] [085306] +08:55:18 [ 13] [ 4] [0320] +08:55:18 [ 18] [ 4] [6011] +08:55:18 [ 19] [ 3] [418] +08:55:18 [ 22] [ 3] [021] +08:55:18 [ 32] [ 6] [668899] +08:55:18 [ 35] [ 27] [1808930500014303=1803500022] +08:55:18 [ 37] [ 12] [507900844830] +08:55:18 [ 38] [ 6] [934166] +08:55:18 [ 39] [ 2] [51] +08:55:18 [ 41] [ 8] [03015003] +08:55:18 [ 49] [ 3] [418] +08:55:18 [ 52] [ 16] [08F610331435960F] +08:55:18 ============================================================================ +08:55:18 Sending to : +08:55:18 ============================================================================ +08:55:18 + + +waiting on router queue for slot.... +08:55:18 ============================================================================ +08:55:18 Slot Id : <123> +08:55:18 Transaction Type : RESPONSE +08:55:18 Received From : +08:55:18 ============================================================================ +08:55:18 FNo. Len. Field Value +08:55:18 ============================================================================ +08:55:18 [ 1] [ 4] [0210] +08:55:18 [ 2] [ 16] [6688990104555709] +08:55:18 [ 3] [ 6] [301000] +08:55:18 [ 4] [ 12] [000000000000] +08:55:18 [ 11] [ 6] [690920] +08:55:18 [ 12] [ 6] [085511] +08:55:18 [ 15] [ 4] [0320] +08:55:18 [ 18] [ 4] [6011] +08:55:18 [ 32] [ 6] [621354] +08:55:18 [ 35] [ 37] [6688990104555709=43041231570996500000] +08:55:18 [ 37] [ 12] [507904719389] +08:55:18 [ 38] [ 6] [958131] +08:55:18 [ 39] [ 2] [00] +08:55:18 [ 41] [ 8] [18001000] +08:55:18 [ 49] [ 3] [418] +08:55:18 [ 54] [ 20] [1002418C000078177934] +08:55:18 ============================================================================ +08:55:18 Calculate Source COMM Id = 0 +08:55:18 ============================================================================ +08:55:18 + + +waiting on router queue for slot.... +08:55:19 ============================================================================ +08:55:19 Slot Id : <80> +08:55:19 Transaction Type : RESPONSE +08:55:19 Received From : +08:55:19 ============================================================================ +08:55:19 FNo. Len. Field Value +08:55:19 ============================================================================ +08:55:19 [ 1] [ 4] [0210] +08:55:19 [ 2] [ 16] [1808930500014303] +08:55:19 [ 3] [ 6] [010000] +08:55:19 [ 4] [ 12] [000100000000] +08:55:19 [ 6] [ 12] [000100000000] +08:55:19 [ 7] [ 10] [0320085306] +08:55:19 [ 11] [ 6] [934166] +08:55:19 [ 12] [ 6] [085306] +08:55:19 [ 13] [ 4] [0320] +08:55:19 [ 18] [ 4] [6011] +08:55:19 [ 19] [ 3] [418] +08:55:19 [ 22] [ 3] [021] +08:55:19 [ 32] [ 6] [668899] +08:55:19 [ 35] [ 27] [1808930500014303=1803500022] +08:55:19 [ 37] [ 12] [507900844830] +08:55:19 [ 38] [ 6] [934166] +08:55:19 [ 39] [ 2] [51] +08:55:19 [ 41] [ 8] [03015003] +08:55:19 [ 49] [ 3] [418] +08:55:19 [ 52] [ 16] [08F610331435960F] +08:55:19 ============================================================================ +08:55:19 Calculate Source COMM Id = 4 +08:55:19 ============================================================================ +08:55:19 + + +waiting on router queue for slot.... +08:55:31 ============================================================================ +08:55:31 Slot Id : <122> +08:55:31 Transaction Type : REQUEST +08:55:31 Received From : +08:55:31 ============================================================================ +08:55:31 FNo. Len. Field Value +08:55:31 ============================================================================ +08:55:31 [ 1] [ 4] [0800] +08:55:31 [ 7] [ 10] [0320015438] +08:55:31 [ 11] [ 6] [155518] +08:55:31 [ 70] [ 3] [301] +08:55:31 ============================================================================ +08:55:31 + + +waiting on router queue for slot.... +08:55:31 Sending to : +08:55:31 ============================================================================ +08:55:31 ============================================================================ +08:55:31 Slot Id : <122> +08:55:31 Transaction Type : RESPONSE +08:55:31 Received From : +08:55:31 ============================================================================ +08:55:31 FNo. Len. Field Value +08:55:31 ============================================================================ +08:55:31 [ 1] [ 4] [0810] +08:55:31 [ 7] [ 10] [0320015438] +08:55:31 [ 11] [ 6] [155518] +08:55:31 [ 39] [ 2] [00] +08:55:31 [ 70] [ 3] [301] +08:55:31 ============================================================================ +08:55:31 Calculate Source COMM Id = 2 +08:55:31 ============================================================================ +08:55:31 + + +waiting on router queue for slot.... +08:55:31 ============================================================================ +08:55:31 Slot Id : <162> +08:55:31 Transaction Type : REQUEST +08:55:31 Received From : +08:55:31 ============================================================================ +08:55:31 FNo. Len. Field Value +08:55:31 ============================================================================ +08:55:31 [ 1] [ 4] [0200] +08:55:31 [ 2] [ 16] [6688990060012679] +08:55:31 [ 3] [ 6] [010000] +08:55:31 [ 4] [ 12] [000100000000] +08:55:31 [ 7] [ 10] [0320085528] +08:55:31 [ 11] [ 6] [690966] +08:55:31 [ 12] [ 6] [085528] +08:55:31 [ 13] [ 4] [0320] +08:55:31 [ 15] [ 4] [0320] +08:55:31 [ 18] [ 4] [6011] +08:55:31 [ 22] [ 3] [900] +08:55:31 [ 25] [ 2] [02] +08:55:31 [ 28] [ 9] [D00002000] +08:55:31 [ 32] [ 6] [621354] +08:55:31 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:55:31 [ 37] [ 12] [507905291316] +08:55:31 [ 41] [ 8] [20001400] +08:55:31 [ 42] [ 15] [NATIVE ] +08:55:31 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:55:31 [ 49] [ 3] [418] +08:55:31 [ 52] [ 16] [47F48598D3F1767B] +08:55:31 ============================================================================ +08:55:31 + + +waiting on router queue for slot.... +08:55:31 Sending to : +08:55:31 ============================================================================ +08:55:31 Sending to : +08:55:31 ============================================================================ +08:55:32 ============================================================================ +08:55:32 Slot Id : <162> +08:55:32 Transaction Type : REQUEST +08:55:32 Received From : +08:55:32 ============================================================================ +08:55:32 FNo. Len. Field Value +08:55:32 ============================================================================ +08:55:32 [ 1] [ 4] [0200] +08:55:32 [ 2] [ 16] [6688990060012679] +08:55:32 [ 3] [ 6] [010000] +08:55:32 [ 4] [ 12] [000100000000] +08:55:32 [ 7] [ 10] [0320085528] +08:55:32 [ 11] [ 6] [690966] +08:55:32 [ 12] [ 6] [085528] +08:55:32 [ 13] [ 4] [0320] +08:55:32 [ 15] [ 4] [0320] +08:55:32 [ 18] [ 4] [6011] +08:55:32 [ 22] [ 3] [900] +08:55:32 [ 25] [ 2] [02] +08:55:32 [ 28] [ 9] [D00002000] +08:55:32 [ 32] [ 6] [621354] +08:55:32 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:55:32 [ 37] [ 12] [507905291316] +08:55:32 [ 41] [ 8] [20001400] +08:55:32 [ 42] [ 15] [NATIVE ] +08:55:32 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:55:32 [ 49] [ 3] [418] +08:55:32 [ 52] [ 16] [47F48598D3F1767B] +08:55:32 ============================================================================ +08:55:32 + + +waiting on router queue for slot.... +08:55:32 Sending to : +08:55:32 ============================================================================ +08:55:32 ============================================================================ +08:55:32 Slot Id : <162> +08:55:32 Transaction Type : REQUEST +08:55:32 Received From : +08:55:32 ============================================================================ +08:55:32 FNo. Len. Field Value +08:55:32 ============================================================================ +08:55:32 [ 1] [ 4] [0200] +08:55:32 [ 2] [ 16] [6688990060012679] +08:55:32 [ 3] [ 6] [010000] +08:55:32 [ 4] [ 12] [000100000000] +08:55:32 [ 7] [ 10] [0320085528] +08:55:32 [ 11] [ 6] [690966] +08:55:32 [ 12] [ 6] [085528] +08:55:32 [ 13] [ 4] [0320] +08:55:32 [ 15] [ 4] [0320] +08:55:32 [ 18] [ 4] [6011] +08:55:32 [ 22] [ 3] [900] +08:55:32 [ 25] [ 2] [02] +08:55:32 [ 28] [ 9] [D00002000] +08:55:32 [ 32] [ 6] [621354] +08:55:32 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:55:32 [ 37] [ 12] [507905291316] +08:55:32 [ 41] [ 8] [20001400] +08:55:32 [ 42] [ 15] [NATIVE ] +08:55:32 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:55:32 [ 49] [ 3] [418] +08:55:32 [ 52] [ 16] [63865579AF752D0E] +08:55:32 ============================================================================ +08:55:32 + + +waiting on router queue for slot.... +08:55:32 Sending to : <4> +08:55:32 ============================================================================ +08:55:33 ============================================================================ +08:55:33 Slot Id : <162> +08:55:33 Transaction Type : RESPONSE +08:55:33 Received From : +08:55:33 ============================================================================ +08:55:33 FNo. Len. Field Value +08:55:33 ============================================================================ +08:55:33 [ 1] [ 4] [0210] +08:55:33 [ 2] [ 16] [6688990060012679] +08:55:33 [ 3] [ 6] [010000] +08:55:33 [ 4] [ 12] [000100000000] +08:55:33 [ 11] [ 6] [690966] +08:55:33 [ 12] [ 6] [085528] +08:55:33 [ 15] [ 4] [0320] +08:55:33 [ 18] [ 4] [6011] +08:55:33 [ 32] [ 6] [621354] +08:55:33 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:55:33 [ 37] [ 12] [507905291316] +08:55:33 [ 38] [ 6] [545315] +08:55:33 [ 39] [ 2] [00] +08:55:33 [ 41] [ 8] [20001400] +08:55:33 [ 49] [ 3] [418] +08:55:33 [ 54] [ 20] [0002418C000354439342] +08:55:33 ============================================================================ +08:55:33 Sending to : +08:55:33 ============================================================================ +08:55:33 + + +waiting on router queue for slot.... +08:55:34 ============================================================================ +08:55:34 Slot Id : <162> +08:55:34 Transaction Type : RESPONSE +08:55:34 Received From : +08:55:34 ============================================================================ +08:55:34 FNo. Len. Field Value +08:55:34 ============================================================================ +08:55:34 [ 1] [ 4] [0210] +08:55:34 [ 2] [ 16] [6688990060012679] +08:55:34 [ 3] [ 6] [010000] +08:55:34 [ 4] [ 12] [000100000000] +08:55:34 [ 11] [ 6] [690966] +08:55:34 [ 12] [ 6] [085528] +08:55:34 [ 15] [ 4] [0320] +08:55:34 [ 18] [ 4] [6011] +08:55:34 [ 32] [ 6] [621354] +08:55:34 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:55:34 [ 37] [ 12] [507905291316] +08:55:34 [ 38] [ 6] [545315] +08:55:34 [ 39] [ 2] [00] +08:55:34 [ 41] [ 8] [20001400] +08:55:34 [ 49] [ 3] [418] +08:55:34 [ 54] [ 20] [0002418C000354439342] +08:55:34 ============================================================================ +08:55:34 Calculate Source COMM Id = 0 +08:55:34 ============================================================================ +08:55:34 + + +waiting on router queue for slot.... +08:55:46 ============================================================================ +08:55:46 Slot Id : <132> +08:55:46 Transaction Type : REQUEST +08:55:46 Received From : +08:55:46 ============================================================================ +08:55:46 FNo. Len. Field Value +08:55:46 ============================================================================ +08:55:46 [ 1] [ 4] [0800] +08:55:46 [ 7] [ 10] [0320015454] +08:55:46 [ 11] [ 6] [155519] +08:55:46 [ 70] [ 3] [301] +08:55:46 ============================================================================ +08:55:46 + + +waiting on router queue for slot.... +08:55:46 Sending to : +08:55:46 ============================================================================ +08:55:46 ============================================================================ +08:55:46 Slot Id : <132> +08:55:46 Transaction Type : RESPONSE +08:55:46 Received From : +08:55:46 ============================================================================ +08:55:46 FNo. Len. Field Value +08:55:46 ============================================================================ +08:55:46 [ 1] [ 4] [0810] +08:55:46 [ 7] [ 10] [0320015454] +08:55:46 [ 11] [ 6] [155519] +08:55:46 [ 39] [ 2] [00] +08:55:46 [ 70] [ 3] [301] +08:55:46 ============================================================================ +08:55:46 Calculate Source COMM Id = 2 +08:55:46 ============================================================================ +08:55:46 + + +waiting on router queue for slot.... +08:55:52 ============================================================================ +08:55:52 Slot Id : <154> +08:55:52 Transaction Type : REQUEST +08:55:52 Received From : +08:55:52 ============================================================================ +08:55:52 FNo. Len. Field Value +08:55:52 ============================================================================ +08:55:52 [ 1] [ 4] [0800] +08:55:52 [ 2] [ 5] [02531] +08:55:52 [ 3] [ 6] [579088] +08:55:52 [ 7] [ 10] [0320015552] +08:55:52 [ 11] [ 6] [806930] +08:55:52 [ 15] [ 10] [0320015552] +08:55:52 [ 37] [ 11] [57908806930] +08:55:52 [ 70] [ 3] [001] +08:55:52 ============================================================================ +08:55:52 + + +waiting on router queue for slot.... +08:55:52 ============================================================================ +08:55:52 Slot Id : <154> +08:55:52 Transaction Type : RESPONSE +08:55:52 Received From : +08:55:52 ============================================================================ +08:55:52 FNo. Len. Field Value +08:55:52 ============================================================================ +08:55:52 [ 1] [ 4] [0810] +08:55:52 [ 7] [ 10] [0320015552] +08:55:52 [ 11] [ 6] [806930] +08:55:52 [ 15] [ 4] [0320] +08:55:52 [ 37] [ 12] [57908806930] +08:55:52 [ 39] [ 2] [00] +08:55:52 [ 70] [ 3] [001] +08:55:52 ============================================================================ +08:55:52 Sending to : +08:55:52 ============================================================================ +08:55:52 + + +waiting on router queue for slot.... +08:56:03 ============================================================================ +08:56:03 Slot Id : <143> +08:56:03 Transaction Type : REQUEST +08:56:03 Received From : +08:56:03 ============================================================================ +08:56:03 FNo. Len. Field Value +08:56:03 ============================================================================ +08:56:03 [ 1] [ 4] [0800] +08:56:03 [ 7] [ 10] [0320015510] +08:56:03 [ 11] [ 6] [155520] +08:56:03 [ 70] [ 3] [301] +08:56:03 ============================================================================ +08:56:03 + + +waiting on router queue for slot.... +08:56:03 Sending to : +08:56:03 ============================================================================ +08:56:03 ============================================================================ +08:56:03 Slot Id : <143> +08:56:03 Transaction Type : RESPONSE +08:56:03 Received From : +08:56:03 ============================================================================ +08:56:03 FNo. Len. Field Value +08:56:03 ============================================================================ +08:56:03 [ 1] [ 4] [0810] +08:56:03 [ 7] [ 10] [0320015510] +08:56:03 [ 11] [ 6] [155520] +08:56:03 [ 39] [ 2] [00] +08:56:03 [ 70] [ 3] [301] +08:56:03 ============================================================================ +08:56:03 Calculate Source COMM Id = 2 +08:56:03 ============================================================================ +08:56:03 + + +waiting on router queue for slot.... +08:56:06 ============================================================================ +08:56:06 Slot Id : <145> +08:56:06 Transaction Type : REQUEST +08:56:06 Received From : +08:56:06 ============================================================================ +08:56:06 FNo. Len. Field Value +08:56:06 ============================================================================ +08:56:06 [ 1] [ 4] [0200] +08:56:06 [ 2] [ 16] [6213544001423281] +08:56:06 [ 3] [ 6] [010000] +08:56:06 [ 4] [ 12] [000100000000] +08:56:06 [ 7] [ 10] [0320085358] +08:56:06 [ 11] [ 6] [934208] +08:56:06 [ 12] [ 6] [085358] +08:56:06 [ 13] [ 4] [0320] +08:56:06 [ 15] [ 4] [0320] +08:56:06 [ 18] [ 4] [6011] +08:56:06 [ 19] [ 3] [418] +08:56:06 [ 22] [ 3] [021] +08:56:06 [ 25] [ 2] [01] +08:56:06 [ 28] [ 9] [D00002000] +08:56:06 [ 32] [ 6] [668899] +08:56:06 [ 35] [ 32] [6213544001423281=491212012328679] +08:56:06 [ 37] [ 12] [507901822356] +08:56:06 [ 41] [ 8] [03407003] +08:56:06 [ 42] [ 15] [APT ] +08:56:06 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +08:56:06 [ 49] [ 3] [418] +08:56:06 [ 52] [ 16] [3A25AEB16B5B49D7] +08:56:06 ============================================================================ +08:56:06 + + +waiting on router queue for slot.... +08:56:06 Sending to : +08:56:06 ============================================================================ +08:56:06 Sending to : +08:56:06 ============================================================================ +08:56:07 ============================================================================ +08:56:07 Slot Id : <145> +08:56:07 Transaction Type : REQUEST +08:56:07 Received From : +08:56:07 ============================================================================ +08:56:07 FNo. Len. Field Value +08:56:07 ============================================================================ +08:56:07 [ 1] [ 4] [0200] +08:56:07 [ 2] [ 16] [6213544001423281] +08:56:07 [ 3] [ 6] [010000] +08:56:07 [ 4] [ 12] [000100000000] +08:56:07 [ 7] [ 10] [0320085358] +08:56:07 [ 11] [ 6] [934208] +08:56:07 [ 12] [ 6] [085358] +08:56:07 [ 13] [ 4] [0320] +08:56:07 [ 15] [ 4] [0320] +08:56:07 [ 18] [ 4] [6011] +08:56:07 [ 19] [ 3] [418] +08:56:07 [ 22] [ 3] [021] +08:56:07 [ 25] [ 2] [01] +08:56:07 [ 28] [ 9] [D00002000] +08:56:07 [ 32] [ 6] [668899] +08:56:07 [ 35] [ 32] [6213544001423281=491212012328679] +08:56:07 [ 37] [ 12] [507901822356] +08:56:07 [ 41] [ 8] [03407003] +08:56:07 [ 42] [ 15] [APT ] +08:56:07 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +08:56:07 [ 49] [ 3] [418] +08:56:07 [ 52] [ 16] [3A25AEB16B5B49D7] +08:56:07 ============================================================================ +08:56:07 + + +waiting on router queue for slot.... +08:56:07 Sending to : +08:56:07 ============================================================================ +08:56:07 ============================================================================ +08:56:07 Slot Id : <145> +08:56:07 Transaction Type : REQUEST +08:56:07 Received From : +08:56:07 ============================================================================ +08:56:07 FNo. Len. Field Value +08:56:07 ============================================================================ +08:56:07 [ 1] [ 4] [0200] +08:56:07 [ 2] [ 16] [6213544001423281] +08:56:07 [ 3] [ 6] [010000] +08:56:07 [ 4] [ 12] [000100000000] +08:56:07 [ 7] [ 10] [0320085358] +08:56:07 [ 11] [ 6] [934208] +08:56:07 [ 12] [ 6] [085358] +08:56:07 [ 13] [ 4] [0320] +08:56:07 [ 15] [ 4] [0320] +08:56:07 [ 18] [ 4] [6011] +08:56:07 [ 19] [ 3] [418] +08:56:07 [ 22] [ 3] [021] +08:56:07 [ 25] [ 2] [01] +08:56:07 [ 28] [ 9] [D00002000] +08:56:07 [ 32] [ 6] [668899] +08:56:07 [ 35] [ 32] [6213544001423281=491212012328679] +08:56:07 [ 37] [ 12] [507901822356] +08:56:07 [ 41] [ 8] [03407003] +08:56:07 [ 42] [ 15] [APT ] +08:56:07 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +08:56:07 [ 49] [ 3] [418] +08:56:07 [ 52] [ 16] [263D10DAB9BD928F] +08:56:07 ============================================================================ +08:56:07 + + +waiting on router queue for slot.... +08:56:07 Sending to : <0> +08:56:07 ============================================================================ +08:56:07 ============================================================================ +08:56:07 Slot Id : <145> +08:56:07 Transaction Type : RESPONSE +08:56:07 Received From : +08:56:07 ============================================================================ +08:56:07 FNo. Len. Field Value +08:56:07 ============================================================================ +08:56:07 [ 1] [ 4] [0210] +08:56:07 [ 2] [ 16] [6213544001423281] +08:56:07 [ 3] [ 6] [010000] +08:56:07 [ 4] [ 12] [000100000000] +08:56:07 [ 7] [ 10] [0320085358] +08:56:07 [ 11] [ 6] [934208] +08:56:07 [ 12] [ 6] [085358] +08:56:07 [ 13] [ 4] [0320] +08:56:07 [ 15] [ 4] [0320] +08:56:07 [ 18] [ 4] [6011] +08:56:07 [ 19] [ 3] [418] +08:56:07 [ 32] [ 6] [668899] +08:56:07 [ 35] [ 32] [6213544001423281=491212012328679] +08:56:07 [ 37] [ 12] [507901822356] +08:56:07 [ 38] [ 6] [188154] +08:56:07 [ 39] [ 2] [00] +08:56:07 [ 41] [ 8] [03407003] +08:56:07 [ 49] [ 3] [418] +08:56:07 [ 54] [ 40] [0001418C0001076163250002418C000107616325] +08:56:07 ============================================================================ +08:56:07 Sending to : +08:56:07 ============================================================================ +08:56:07 + + +waiting on router queue for slot.... +08:56:09 ============================================================================ +08:56:09 Slot Id : <145> +08:56:09 Transaction Type : RESPONSE +08:56:09 Received From : +08:56:09 ============================================================================ +08:56:09 FNo. Len. Field Value +08:56:09 ============================================================================ +08:56:09 [ 1] [ 4] [0210] +08:56:09 [ 2] [ 16] [6213544001423281] +08:56:09 [ 3] [ 6] [010000] +08:56:09 [ 4] [ 12] [000100000000] +08:56:09 [ 7] [ 10] [0320085358] +08:56:09 [ 11] [ 6] [934208] +08:56:09 [ 12] [ 6] [085358] +08:56:09 [ 13] [ 4] [0320] +08:56:09 [ 15] [ 4] [0320] +08:56:09 [ 18] [ 4] [6011] +08:56:09 [ 19] [ 3] [418] +08:56:09 [ 32] [ 6] [668899] +08:56:09 [ 35] [ 32] [6213544001423281=491212012328679] +08:56:09 [ 37] [ 12] [507901822356] +08:56:09 [ 38] [ 6] [188154] +08:56:09 [ 39] [ 2] [00] +08:56:09 [ 41] [ 8] [03407003] +08:56:09 [ 49] [ 3] [418] +08:56:09 [ 54] [ 40] [0001418C0001076163250002418C000107616325] +08:56:09 ============================================================================ +08:56:09 Calculate Source COMM Id = 4 +08:56:09 ============================================================================ +08:56:09 + + +waiting on router queue for slot.... +08:56:18 ============================================================================ +08:56:18 Slot Id : <158> +08:56:18 Transaction Type : REQUEST +08:56:18 Received From : +08:56:18 ============================================================================ +08:56:18 FNo. Len. Field Value +08:56:18 ============================================================================ +08:56:18 [ 1] [ 4] [0800] +08:56:18 [ 7] [ 10] [0320015526] +08:56:18 [ 11] [ 6] [155521] +08:56:18 [ 70] [ 3] [301] +08:56:18 ============================================================================ +08:56:18 + + +waiting on router queue for slot.... +08:56:18 Sending to : +08:56:18 ============================================================================ +08:56:18 ============================================================================ +08:56:18 Slot Id : <158> +08:56:18 Transaction Type : RESPONSE +08:56:18 Received From : +08:56:18 ============================================================================ +08:56:18 FNo. Len. Field Value +08:56:18 ============================================================================ +08:56:18 [ 1] [ 4] [0810] +08:56:18 [ 7] [ 10] [0320015526] +08:56:18 [ 11] [ 6] [155521] +08:56:18 [ 39] [ 2] [00] +08:56:18 [ 70] [ 3] [301] +08:56:18 ============================================================================ +08:56:18 Calculate Source COMM Id = 2 +08:56:18 ============================================================================ +08:56:18 + + +waiting on router queue for slot.... +08:56:18 ============================================================================ +08:56:18 Slot Id : <150> +08:56:18 Transaction Type : REQUEST +08:56:18 Received From : +08:56:18 ============================================================================ +08:56:18 FNo. Len. Field Value +08:56:18 ============================================================================ +08:56:18 [ 1] [ 4] [0200] +08:56:18 [ 2] [ 16] [1808930800002636] +08:56:18 [ 3] [ 6] [311000] +08:56:18 [ 4] [ 12] [000000000000] +08:56:18 [ 7] [ 10] [0320090406] +08:56:18 [ 11] [ 6] [001944] +08:56:18 [ 12] [ 6] [090406] +08:56:18 [ 13] [ 4] [0320] +08:56:18 [ 14] [ 4] [1803] +08:56:18 [ 15] [ 4] [0320] +08:56:18 [ 18] [ 4] [6011] +08:56:18 [ 22] [ 3] [900] +08:56:18 [ 25] [ 2] [02] +08:56:18 [ 28] [ 9] [000000000] +08:56:18 [ 32] [ 6] [220699] +08:56:18 [ 35] [ 27] [1808930800002636=1803500438] +08:56:18 [ 37] [ 12] [507900296937] +08:56:18 [ 41] [ 8] [01001600] +08:56:18 [ 42] [ 15] [APTRA ] +08:56:18 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:56:18 [ 49] [ 3] [418] +08:56:18 [ 52] [ 16] [278C6EBAB5FA4D3D] +08:56:18 ============================================================================ +08:56:18 + + +waiting on router queue for slot.... +08:56:18 Sending to : +08:56:18 ============================================================================ +08:56:18 Sending to : +08:56:18 ============================================================================ +08:56:19 ============================================================================ +08:56:19 Slot Id : <150> +08:56:19 Transaction Type : REQUEST +08:56:19 Received From : +08:56:19 ============================================================================ +08:56:19 FNo. Len. Field Value +08:56:19 ============================================================================ +08:56:19 [ 1] [ 4] [0200] +08:56:19 [ 2] [ 16] [1808930800002636] +08:56:19 [ 3] [ 6] [311000] +08:56:19 [ 4] [ 12] [000000000000] +08:56:19 [ 7] [ 10] [0320090406] +08:56:19 [ 11] [ 6] [001944] +08:56:19 [ 12] [ 6] [090406] +08:56:19 [ 13] [ 4] [0320] +08:56:19 [ 14] [ 4] [1803] +08:56:19 [ 15] [ 4] [0320] +08:56:19 [ 18] [ 4] [6011] +08:56:19 [ 22] [ 3] [900] +08:56:19 [ 25] [ 2] [02] +08:56:19 [ 28] [ 9] [000000000] +08:56:19 [ 32] [ 6] [220699] +08:56:19 [ 35] [ 27] [1808930800002636=1803500438] +08:56:19 [ 37] [ 12] [507900296937] +08:56:19 [ 41] [ 8] [01001600] +08:56:19 [ 42] [ 15] [APTRA ] +08:56:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:56:19 [ 49] [ 3] [418] +08:56:19 [ 52] [ 16] [278C6EBAB5FA4D3D] +08:56:19 ============================================================================ +08:56:19 + + +waiting on router queue for slot.... +08:56:19 Sending to : +08:56:19 ============================================================================ +08:56:19 ============================================================================ +08:56:19 Slot Id : <150> +08:56:19 Transaction Type : REQUEST +08:56:19 Received From : +08:56:19 ============================================================================ +08:56:19 FNo. Len. Field Value +08:56:19 ============================================================================ +08:56:19 [ 1] [ 4] [0200] +08:56:19 [ 2] [ 16] [1808930800002636] +08:56:19 [ 3] [ 6] [311000] +08:56:19 [ 4] [ 12] [000000000000] +08:56:19 [ 7] [ 10] [0320090406] +08:56:19 [ 11] [ 6] [001944] +08:56:19 [ 12] [ 6] [090406] +08:56:19 [ 13] [ 4] [0320] +08:56:19 [ 14] [ 4] [1803] +08:56:19 [ 15] [ 4] [0320] +08:56:19 [ 18] [ 4] [6011] +08:56:19 [ 22] [ 3] [900] +08:56:19 [ 25] [ 2] [02] +08:56:19 [ 28] [ 9] [000000000] +08:56:19 [ 32] [ 6] [220699] +08:56:19 [ 35] [ 27] [1808930800002636=1803500438] +08:56:19 [ 37] [ 12] [507900296937] +08:56:19 [ 41] [ 8] [01001600] +08:56:19 [ 42] [ 15] [APTRA ] +08:56:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:56:19 [ 49] [ 3] [418] +08:56:19 [ 52] [ 16] [D3A971460B258AA6] +08:56:19 ============================================================================ +08:56:19 + + +waiting on router queue for slot.... +08:56:19 Sending to : <2> +08:56:19 ============================================================================ +08:56:21 ============================================================================ +08:56:21 Slot Id : <120> +08:56:21 Transaction Type : REQUEST +08:56:21 Received From : +08:56:21 ============================================================================ +08:56:21 FNo. Len. Field Value +08:56:21 ============================================================================ +08:56:21 [ 1] [ 4] [0800] +08:56:21 [ 7] [ 10] [0320015412] +08:56:21 [ 11] [ 6] [035406] +08:56:21 [ 37] [ 12] [57908035406] +08:56:21 [ 70] [ 3] [301] +08:56:21 ============================================================================ +08:56:21 + + +waiting on router queue for slot.... +08:56:21 Sending to : +08:56:21 ============================================================================ +08:56:21 ============================================================================ +08:56:21 Slot Id : <120> +08:56:21 Transaction Type : RESPONSE +08:56:21 Received From : +08:56:21 ============================================================================ +08:56:21 FNo. Len. Field Value +08:56:21 ============================================================================ +08:56:21 [ 1] [ 4] [0810] +08:56:21 [ 7] [ 10] [0320015412] +08:56:21 [ 11] [ 6] [035406] +08:56:21 [ 37] [ 12] [579080354060] +08:56:21 [ 39] [ 2] [00] +08:56:21 [ 70] [ 3] [810] +08:56:21 ============================================================================ +08:56:21 Calculate Source COMM Id = 4 +08:56:21 ============================================================================ +08:56:21 + + +waiting on router queue for slot.... +08:56:21 ============================================================================ +08:56:21 Slot Id : <166> +08:56:21 Transaction Type : REQUEST +08:56:21 Received From : +08:56:21 ============================================================================ +08:56:21 FNo. Len. Field Value +08:56:21 ============================================================================ +08:56:21 [ 1] [ 4] [0800] +08:56:21 [ 7] [ 10] [0320160810] +08:56:21 [ 11] [ 6] [090810] +08:56:21 [ 37] [ 12] [57909090810] +08:56:21 [ 70] [ 3] [301] +08:56:21 ============================================================================ +08:56:21 + + +waiting on router queue for slot.... +08:56:21 Sending to : +08:56:21 ============================================================================ +08:56:21 ============================================================================ +08:56:21 Slot Id : <166> +08:56:21 Transaction Type : RESPONSE +08:56:21 Received From : +08:56:21 ============================================================================ +08:56:21 FNo. Len. Field Value +08:56:21 ============================================================================ +08:56:21 [ 1] [ 4] [0810] +08:56:21 [ 7] [ 10] [0320160810] +08:56:21 [ 11] [ 6] [090810] +08:56:21 [ 37] [ 12] [579090908100] +08:56:21 [ 39] [ 2] [00] +08:56:21 [ 70] [ 3] [810] +08:56:21 ============================================================================ +08:56:21 Calculate Source COMM Id = 6 +08:56:21 ============================================================================ +08:56:21 + + +waiting on router queue for slot.... +08:56:30 ============================================================================ +08:56:30 Slot Id : <150> +08:56:30 Transaction Type : RESPONSE +08:56:30 Received From : +08:56:30 ============================================================================ +08:56:30 FNo. Len. Field Value +08:56:30 ============================================================================ +08:56:30 [ 1] [ 4] [0210] +08:56:30 [ 2] [ 16] [1808930800002636] +08:56:30 [ 3] [ 6] [301000] +08:56:30 [ 7] [ 10] [0320090406] +08:56:30 [ 11] [ 6] [001944] +08:56:30 [ 12] [ 6] [090406] +08:56:30 [ 13] [ 4] [0320] +08:56:30 [ 14] [ 4] [1803] +08:56:30 [ 19] [ 3] [418] +08:56:30 [ 32] [ 6] [220699] +08:56:30 [ 37] [ 12] [507900296937] +08:56:30 [ 38] [ 6] [001944] +08:56:30 [ 39] [ 2] [00] +08:56:30 [ 41] [ 8] [01001600] +08:56:30 [ 49] [ 3] [418] +08:56:30 [ 52] [ 16] [D3A971460B258AA6] +08:56:30 [ 54] [ 20] [1002418C000737144300] +08:56:30 ============================================================================ +08:56:30 Sending to : +08:56:30 ============================================================================ +08:56:30 + + +waiting on router queue for slot.... +08:56:31 ============================================================================ +08:56:31 Slot Id : <150> +08:56:31 Transaction Type : RESPONSE +08:56:31 Received From : +08:56:31 ============================================================================ +08:56:31 FNo. Len. Field Value +08:56:31 ============================================================================ +08:56:31 [ 1] [ 4] [0210] +08:56:31 [ 2] [ 16] [1808930800002636] +08:56:31 [ 3] [ 6] [301000] +08:56:31 [ 7] [ 10] [0320090406] +08:56:31 [ 11] [ 6] [001944] +08:56:31 [ 12] [ 6] [090406] +08:56:31 [ 13] [ 4] [0320] +08:56:31 [ 14] [ 4] [1803] +08:56:31 [ 19] [ 3] [418] +08:56:31 [ 32] [ 6] [220699] +08:56:31 [ 37] [ 12] [507900296937] +08:56:31 [ 38] [ 6] [001944] +08:56:31 [ 39] [ 2] [00] +08:56:31 [ 41] [ 8] [01001600] +08:56:31 [ 49] [ 3] [418] +08:56:31 [ 52] [ 16] [D3A971460B258AA6] +08:56:31 [ 54] [ 20] [1002418C000737144300] +08:56:31 ============================================================================ +08:56:31 Calculate Source COMM Id = 1 +08:56:31 ============================================================================ +08:56:31 + + +waiting on router queue for slot.... +08:56:34 ============================================================================ +08:56:34 Slot Id : <130> +08:56:34 Transaction Type : REQUEST +08:56:34 Received From : +08:56:34 ============================================================================ +08:56:34 FNo. Len. Field Value +08:56:34 ============================================================================ +08:56:34 [ 1] [ 4] [0800] +08:56:34 [ 7] [ 10] [0320015542] +08:56:34 [ 11] [ 6] [155522] +08:56:34 [ 70] [ 3] [301] +08:56:34 ============================================================================ +08:56:34 + + +waiting on router queue for slot.... +08:56:34 Sending to : +08:56:34 ============================================================================ +08:56:34 ============================================================================ +08:56:34 Slot Id : <130> +08:56:34 Transaction Type : RESPONSE +08:56:34 Received From : +08:56:34 ============================================================================ +08:56:34 FNo. Len. Field Value +08:56:34 ============================================================================ +08:56:34 [ 1] [ 4] [0810] +08:56:34 [ 7] [ 10] [0320015542] +08:56:34 [ 11] [ 6] [155522] +08:56:34 [ 39] [ 2] [00] +08:56:34 [ 70] [ 3] [301] +08:56:34 ============================================================================ +08:56:34 Calculate Source COMM Id = 2 +08:56:34 ============================================================================ +08:56:34 + + +waiting on router queue for slot.... +08:56:39 ============================================================================ +08:56:39 Slot Id : <133> +08:56:39 Transaction Type : REQUEST +08:56:39 Received From : +08:56:39 ============================================================================ +08:56:39 FNo. Len. Field Value +08:56:39 ============================================================================ +08:56:39 [ 1] [ 4] [0200] +08:56:39 [ 2] [ 16] [6688990060012679] +08:56:39 [ 3] [ 6] [010000] +08:56:39 [ 4] [ 12] [000100000000] +08:56:39 [ 7] [ 10] [0320085635] +08:56:39 [ 11] [ 6] [691252] +08:56:39 [ 12] [ 6] [085635] +08:56:39 [ 13] [ 4] [0320] +08:56:39 [ 15] [ 4] [0320] +08:56:39 [ 18] [ 4] [6011] +08:56:39 [ 22] [ 3] [900] +08:56:39 [ 25] [ 2] [02] +08:56:39 [ 28] [ 9] [D00002000] +08:56:39 [ 32] [ 6] [621354] +08:56:39 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:56:39 [ 37] [ 12] [507905291318] +08:56:39 [ 41] [ 8] [20001400] +08:56:39 [ 42] [ 15] [NATIVE ] +08:56:39 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:56:39 [ 49] [ 3] [418] +08:56:39 [ 52] [ 16] [47F48598D3F1767B] +08:56:39 ============================================================================ +08:56:39 + + +waiting on router queue for slot.... +08:56:39 Sending to : +08:56:39 ============================================================================ +08:56:39 Sending to : +08:56:39 ============================================================================ +08:56:39 ============================================================================ +08:56:39 Slot Id : <133> +08:56:39 Transaction Type : REQUEST +08:56:39 Received From : +08:56:39 ============================================================================ +08:56:39 FNo. Len. Field Value +08:56:39 ============================================================================ +08:56:39 [ 1] [ 4] [0200] +08:56:39 [ 2] [ 16] [6688990060012679] +08:56:39 [ 3] [ 6] [010000] +08:56:39 [ 4] [ 12] [000100000000] +08:56:39 [ 7] [ 10] [0320085635] +08:56:39 [ 11] [ 6] [691252] +08:56:39 [ 12] [ 6] [085635] +08:56:39 [ 13] [ 4] [0320] +08:56:39 [ 15] [ 4] [0320] +08:56:39 [ 18] [ 4] [6011] +08:56:39 [ 22] [ 3] [900] +08:56:39 [ 25] [ 2] [02] +08:56:39 [ 28] [ 9] [D00002000] +08:56:39 [ 32] [ 6] [621354] +08:56:39 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:56:39 [ 37] [ 12] [507905291318] +08:56:39 [ 41] [ 8] [20001400] +08:56:39 [ 42] [ 15] [NATIVE ] +08:56:39 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:56:39 [ 49] [ 3] [418] +08:56:39 [ 52] [ 16] [47F48598D3F1767B] +08:56:39 ============================================================================ +08:56:39 + + +waiting on router queue for slot.... +08:56:39 Sending to : +08:56:39 ============================================================================ +08:56:39 ============================================================================ +08:56:39 Slot Id : <133> +08:56:39 Transaction Type : REQUEST +08:56:39 Received From : +08:56:39 ============================================================================ +08:56:39 FNo. Len. Field Value +08:56:39 ============================================================================ +08:56:39 [ 1] [ 4] [0200] +08:56:39 [ 2] [ 16] [6688990060012679] +08:56:39 [ 3] [ 6] [010000] +08:56:39 [ 4] [ 12] [000100000000] +08:56:39 [ 7] [ 10] [0320085635] +08:56:39 [ 11] [ 6] [691252] +08:56:39 [ 12] [ 6] [085635] +08:56:39 [ 13] [ 4] [0320] +08:56:39 [ 15] [ 4] [0320] +08:56:39 [ 18] [ 4] [6011] +08:56:39 [ 22] [ 3] [900] +08:56:39 [ 25] [ 2] [02] +08:56:39 [ 28] [ 9] [D00002000] +08:56:39 [ 32] [ 6] [621354] +08:56:39 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:56:39 [ 37] [ 12] [507905291318] +08:56:39 [ 41] [ 8] [20001400] +08:56:39 [ 42] [ 15] [NATIVE ] +08:56:39 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:56:39 [ 49] [ 3] [418] +08:56:39 [ 52] [ 16] [63865579AF752D0E] +08:56:39 ============================================================================ +08:56:39 + + +waiting on router queue for slot.... +08:56:39 Sending to : <4> +08:56:39 ============================================================================ +08:56:41 ============================================================================ +08:56:41 Slot Id : <133> +08:56:41 Transaction Type : RESPONSE +08:56:41 Received From : +08:56:41 ============================================================================ +08:56:41 FNo. Len. Field Value +08:56:41 ============================================================================ +08:56:41 [ 1] [ 4] [0210] +08:56:41 [ 2] [ 16] [6688990060012679] +08:56:41 [ 3] [ 6] [010000] +08:56:41 [ 4] [ 12] [000100000000] +08:56:41 [ 11] [ 6] [691252] +08:56:41 [ 12] [ 6] [085635] +08:56:41 [ 15] [ 4] [0320] +08:56:41 [ 18] [ 4] [6011] +08:56:41 [ 32] [ 6] [621354] +08:56:41 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:56:41 [ 37] [ 12] [507905291318] +08:56:41 [ 38] [ 6] [255922] +08:56:41 [ 39] [ 2] [00] +08:56:41 [ 41] [ 8] [20001400] +08:56:41 [ 49] [ 3] [418] +08:56:41 [ 54] [ 20] [0002418C000254239342] +08:56:41 ============================================================================ +08:56:41 Sending to : +08:56:41 ============================================================================ +08:56:41 + + +waiting on router queue for slot.... +08:56:43 ============================================================================ +08:56:43 Slot Id : <133> +08:56:43 Transaction Type : RESPONSE +08:56:43 Received From : +08:56:43 ============================================================================ +08:56:43 FNo. Len. Field Value +08:56:43 ============================================================================ +08:56:43 [ 1] [ 4] [0210] +08:56:43 [ 2] [ 16] [6688990060012679] +08:56:43 [ 3] [ 6] [010000] +08:56:43 [ 4] [ 12] [000100000000] +08:56:43 [ 11] [ 6] [691252] +08:56:43 [ 12] [ 6] [085635] +08:56:43 [ 15] [ 4] [0320] +08:56:43 [ 18] [ 4] [6011] +08:56:43 [ 32] [ 6] [621354] +08:56:43 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:56:43 [ 37] [ 12] [507905291318] +08:56:43 [ 38] [ 6] [255922] +08:56:43 [ 39] [ 2] [00] +08:56:43 [ 41] [ 8] [20001400] +08:56:43 [ 49] [ 3] [418] +08:56:43 [ 54] [ 20] [0002418C000254239342] +08:56:43 ============================================================================ +08:56:43 Calculate Source COMM Id = 0 +08:56:43 ============================================================================ +08:56:43 + + +waiting on router queue for slot.... +08:56:45 ============================================================================ +08:56:45 Slot Id : <153> +08:56:45 Transaction Type : REQUEST +08:56:45 Received From : +08:56:45 ============================================================================ +08:56:45 FNo. Len. Field Value +08:56:45 ============================================================================ +08:56:45 [ 1] [ 4] [0800] +08:56:45 [ 7] [ 10] [0320015553] +08:56:45 [ 11] [ 6] [155523] +08:56:45 [ 70] [ 3] [301] +08:56:45 ============================================================================ +08:56:45 + + +waiting on router queue for slot.... +08:56:45 Sending to : +08:56:45 ============================================================================ +08:56:45 ============================================================================ +08:56:45 Slot Id : <153> +08:56:45 Transaction Type : RESPONSE +08:56:45 Received From : +08:56:45 ============================================================================ +08:56:45 FNo. Len. Field Value +08:56:45 ============================================================================ +08:56:45 [ 1] [ 4] [0810] +08:56:45 [ 7] [ 10] [0320015553] +08:56:45 [ 11] [ 6] [155523] +08:56:45 [ 39] [ 2] [00] +08:56:45 [ 70] [ 3] [301] +08:56:45 ============================================================================ +08:56:45 Calculate Source COMM Id = 2 +08:56:45 ============================================================================ +08:56:45 + + +waiting on router queue for slot.... +08:56:54 ============================================================================ +08:56:54 Slot Id : <142> +08:56:54 Transaction Type : REQUEST +08:56:54 Received From : +08:56:54 ============================================================================ +08:56:54 FNo. Len. Field Value +08:56:54 ============================================================================ +08:56:54 [ 1] [ 4] [0800] +08:56:54 [ 2] [ 5] [02531] +08:56:54 [ 3] [ 6] [579088] +08:56:54 [ 7] [ 10] [0320015654] +08:56:54 [ 11] [ 6] [806931] +08:56:54 [ 15] [ 10] [0320015654] +08:56:54 [ 37] [ 11] [57908806931] +08:56:54 [ 70] [ 3] [001] +08:56:54 ============================================================================ +08:56:54 + + +waiting on router queue for slot.... +08:56:54 ============================================================================ +08:56:54 Slot Id : <142> +08:56:54 Transaction Type : RESPONSE +08:56:54 Received From : +08:56:54 ============================================================================ +08:56:54 FNo. Len. Field Value +08:56:54 ============================================================================ +08:56:54 [ 1] [ 4] [0810] +08:56:54 [ 7] [ 10] [0320015654] +08:56:54 [ 11] [ 6] [806931] +08:56:54 [ 15] [ 4] [0320] +08:56:54 [ 37] [ 12] [57908806931] +08:56:54 [ 39] [ 2] [00] +08:56:54 [ 70] [ 3] [001] +08:56:54 ============================================================================ +08:56:54 Sending to : +08:56:54 ============================================================================ +08:56:54 + + +waiting on router queue for slot.... +08:56:57 ============================================================================ +08:56:57 Slot Id : <110> +08:56:57 Transaction Type : REQUEST +08:56:57 Received From : +08:56:57 ============================================================================ +08:56:57 FNo. Len. Field Value +08:56:57 ============================================================================ +08:56:57 [ 1] [ 4] [0200] +08:56:57 [ 2] [ 16] [1808930200040400] +08:56:57 [ 3] [ 6] [301000] +08:56:57 [ 4] [ 12] [000000000000] +08:56:57 [ 7] [ 10] [0320085653] +08:56:57 [ 11] [ 6] [691322] +08:56:57 [ 12] [ 6] [085653] +08:56:57 [ 13] [ 4] [0320] +08:56:57 [ 15] [ 4] [0320] +08:56:57 [ 18] [ 4] [6011] +08:56:57 [ 22] [ 3] [900] +08:56:57 [ 25] [ 2] [02] +08:56:57 [ 28] [ 9] [D00000000] +08:56:57 [ 32] [ 6] [621354] +08:56:57 [ 35] [ 27] [1808930200040400=1803500959] +08:56:57 [ 37] [ 12] [507903803025] +08:56:57 [ 41] [ 8] [01009600] +08:56:57 [ 42] [ 15] [NATIVE ] +08:56:57 [ 43] [ 40] [Prime Minister Office ChanthaboulyLAO] +08:56:57 [ 49] [ 3] [418] +08:56:57 [ 52] [ 16] [34AA1513BBA2436B] +08:56:57 ============================================================================ +08:56:57 + + +waiting on router queue for slot.... +08:56:57 Sending to : +08:56:57 ============================================================================ +08:56:57 Sending to : +08:56:57 ============================================================================ +08:56:57 ============================================================================ +08:56:57 Slot Id : <110> +08:56:57 Transaction Type : REQUEST +08:56:57 Received From : +08:56:57 ============================================================================ +08:56:57 FNo. Len. Field Value +08:56:57 ============================================================================ +08:56:57 [ 1] [ 4] [0200] +08:56:57 [ 2] [ 16] [1808930200040400] +08:56:57 [ 3] [ 6] [301000] +08:56:57 [ 4] [ 12] [000000000000] +08:56:57 [ 7] [ 10] [0320085653] +08:56:57 [ 11] [ 6] [691322] +08:56:57 [ 12] [ 6] [085653] +08:56:57 [ 13] [ 4] [0320] +08:56:57 [ 15] [ 4] [0320] +08:56:57 [ 18] [ 4] [6011] +08:56:57 [ 22] [ 3] [900] +08:56:57 [ 25] [ 2] [02] +08:56:57 [ 28] [ 9] [D00000000] +08:56:57 [ 32] [ 6] [621354] +08:56:57 [ 35] [ 27] [1808930200040400=1803500959] +08:56:57 [ 37] [ 12] [507903803025] +08:56:57 [ 41] [ 8] [01009600] +08:56:57 [ 42] [ 15] [NATIVE ] +08:56:57 [ 43] [ 40] [Prime Minister Office ChanthaboulyLAO] +08:56:57 [ 49] [ 3] [418] +08:56:57 [ 52] [ 16] [34AA1513BBA2436B] +08:56:57 ============================================================================ +08:56:57 + + +waiting on router queue for slot.... +08:56:57 Sending to : +08:56:57 ============================================================================ +08:56:57 ============================================================================ +08:56:57 Slot Id : <110> +08:56:57 Transaction Type : REQUEST +08:56:57 Received From : +08:56:57 ============================================================================ +08:56:57 FNo. Len. Field Value +08:56:57 ============================================================================ +08:56:57 [ 1] [ 4] [0200] +08:56:57 [ 2] [ 16] [1808930200040400] +08:56:57 [ 3] [ 6] [301000] +08:56:57 [ 4] [ 12] [000000000000] +08:56:57 [ 7] [ 10] [0320085653] +08:56:57 [ 11] [ 6] [691322] +08:56:57 [ 12] [ 6] [085653] +08:56:57 [ 13] [ 4] [0320] +08:56:57 [ 15] [ 4] [0320] +08:56:57 [ 18] [ 4] [6011] +08:56:57 [ 22] [ 3] [900] +08:56:57 [ 25] [ 2] [02] +08:56:57 [ 28] [ 9] [D00000000] +08:56:57 [ 32] [ 6] [621354] +08:56:57 [ 35] [ 27] [1808930200040400=1803500959] +08:56:57 [ 37] [ 12] [507903803025] +08:56:57 [ 41] [ 8] [01009600] +08:56:57 [ 42] [ 15] [NATIVE ] +08:56:57 [ 43] [ 40] [Prime Minister Office ChanthaboulyLAO] +08:56:57 [ 49] [ 3] [418] +08:56:57 [ 52] [ 16] [F8AEDEBC62348506] +08:56:57 ============================================================================ +08:56:57 + + +waiting on router queue for slot.... +08:56:57 Sending to : <2> +08:56:57 ============================================================================ +08:56:58 ============================================================================ +08:56:58 Slot Id : <167> +08:56:58 Transaction Type : REQUEST +08:56:58 Received From : +08:56:58 ============================================================================ +08:56:58 FNo. Len. Field Value +08:56:58 ============================================================================ +08:56:58 [ 1] [ 4] [0200] +08:56:58 [ 2] [ 16] [1808930400026464] +08:56:58 [ 3] [ 6] [300000] +08:56:58 [ 4] [ 12] [000000000000] +08:56:58 [ 7] [ 10] [0320085654] +08:56:58 [ 11] [ 6] [691327] +08:56:58 [ 12] [ 6] [085654] +08:56:58 [ 13] [ 4] [0320] +08:56:58 [ 15] [ 4] [0320] +08:56:58 [ 18] [ 4] [6011] +08:56:58 [ 22] [ 3] [900] +08:56:58 [ 25] [ 2] [02] +08:56:58 [ 28] [ 9] [D00000000] +08:56:58 [ 32] [ 6] [621354] +08:56:58 [ 35] [ 27] [1808930400026464=1803500966] +08:56:58 [ 37] [ 12] [507904965448] +08:56:58 [ 41] [ 8] [15001100] +08:56:58 [ 42] [ 15] [NATIVE ] +08:56:58 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +08:56:58 [ 49] [ 3] [418] +08:56:58 [ 52] [ 16] [4962B685B3220846] +08:56:58 ============================================================================ +08:56:58 + + +waiting on router queue for slot.... +08:56:58 Sending to : +08:56:58 ============================================================================ +08:56:58 Sending to : +08:56:58 ============================================================================ +08:56:58 ============================================================================ +08:56:58 Slot Id : <167> +08:56:58 Transaction Type : REQUEST +08:56:58 Received From : +08:56:58 ============================================================================ +08:56:58 FNo. Len. Field Value +08:56:58 ============================================================================ +08:56:58 [ 1] [ 4] [0200] +08:56:58 [ 2] [ 16] [1808930400026464] +08:56:58 [ 3] [ 6] [300000] +08:56:58 [ 4] [ 12] [000000000000] +08:56:58 [ 7] [ 10] [0320085654] +08:56:58 [ 11] [ 6] [691327] +08:56:58 [ 12] [ 6] [085654] +08:56:58 [ 13] [ 4] [0320] +08:56:58 [ 15] [ 4] [0320] +08:56:58 [ 18] [ 4] [6011] +08:56:58 [ 22] [ 3] [900] +08:56:58 [ 25] [ 2] [02] +08:56:58 [ 28] [ 9] [D00000000] +08:56:58 [ 32] [ 6] [621354] +08:56:58 [ 35] [ 27] [1808930400026464=1803500966] +08:56:58 [ 37] [ 12] [507904965448] +08:56:58 [ 41] [ 8] [15001100] +08:56:58 [ 42] [ 15] [NATIVE ] +08:56:58 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +08:56:58 [ 49] [ 3] [418] +08:56:58 [ 52] [ 16] [4962B685B3220846] +08:56:58 ============================================================================ +08:56:58 + + +waiting on router queue for slot.... +08:56:58 Sending to : +08:56:58 ============================================================================ +08:56:58 ============================================================================ +08:56:58 Slot Id : <167> +08:56:58 Transaction Type : REQUEST +08:56:58 Received From : +08:56:58 ============================================================================ +08:56:58 FNo. Len. Field Value +08:56:58 ============================================================================ +08:56:58 [ 1] [ 4] [0200] +08:56:58 [ 2] [ 16] [1808930400026464] +08:56:58 [ 3] [ 6] [300000] +08:56:58 [ 4] [ 12] [000000000000] +08:56:58 [ 7] [ 10] [0320085654] +08:56:58 [ 11] [ 6] [691327] +08:56:58 [ 12] [ 6] [085654] +08:56:58 [ 13] [ 4] [0320] +08:56:58 [ 15] [ 4] [0320] +08:56:58 [ 18] [ 4] [6011] +08:56:58 [ 22] [ 3] [900] +08:56:58 [ 25] [ 2] [02] +08:56:58 [ 28] [ 9] [D00000000] +08:56:58 [ 32] [ 6] [621354] +08:56:58 [ 35] [ 27] [1808930400026464=1803500966] +08:56:58 [ 37] [ 12] [507904965448] +08:56:58 [ 41] [ 8] [15001100] +08:56:58 [ 42] [ 15] [NATIVE ] +08:56:58 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +08:56:58 [ 49] [ 3] [418] +08:56:58 [ 52] [ 16] [B40407321E75C225] +08:56:58 ============================================================================ +08:56:58 + + +waiting on router queue for slot.... +08:56:58 Sending to : <2> +08:56:58 ============================================================================ +08:57:01 ============================================================================ +08:57:01 Slot Id : <167> +08:57:01 Transaction Type : RESPONSE +08:57:01 Received From : +08:57:01 ============================================================================ +08:57:01 FNo. Len. Field Value +08:57:01 ============================================================================ +08:57:01 [ 1] [ 4] [0210] +08:57:01 [ 2] [ 16] [1808930400026464] +08:57:01 [ 3] [ 6] [300000] +08:57:01 [ 7] [ 10] [0320085654] +08:57:01 [ 11] [ 6] [691327] +08:57:01 [ 12] [ 6] [085654] +08:57:01 [ 13] [ 4] [0320] +08:57:01 [ 14] [ 4] [1803] +08:57:01 [ 19] [ 3] [418] +08:57:01 [ 32] [ 6] [621354] +08:57:01 [ 37] [ 12] [507904965448] +08:57:01 [ 39] [ 2] [55] +08:57:01 [ 41] [ 8] [15001100] +08:57:01 [ 49] [ 3] [418] +08:57:01 [ 52] [ 16] [B40407321E75C225] +08:57:01 ============================================================================ +08:57:01 Sending to : +08:57:01 ============================================================================ +08:57:01 + + +waiting on router queue for slot.... +08:57:02 ============================================================================ +08:57:02 Slot Id : <167> +08:57:02 Transaction Type : RESPONSE +08:57:02 Received From : +08:57:02 ============================================================================ +08:57:02 FNo. Len. Field Value +08:57:02 ============================================================================ +08:57:02 [ 1] [ 4] [0210] +08:57:02 [ 2] [ 16] [1808930400026464] +08:57:02 [ 3] [ 6] [300000] +08:57:02 [ 7] [ 10] [0320085654] +08:57:02 [ 11] [ 6] [691327] +08:57:02 [ 12] [ 6] [085654] +08:57:02 [ 13] [ 4] [0320] +08:57:02 [ 14] [ 4] [1803] +08:57:02 [ 19] [ 3] [418] +08:57:02 [ 32] [ 6] [621354] +08:57:02 [ 37] [ 12] [507904965448] +08:57:02 [ 39] [ 2] [55] +08:57:02 [ 41] [ 8] [15001100] +08:57:02 [ 49] [ 3] [418] +08:57:02 [ 52] [ 16] [B40407321E75C225] +08:57:02 ============================================================================ +08:57:02 Calculate Source COMM Id = 0 +08:57:02 ============================================================================ +08:57:02 + + +waiting on router queue for slot.... +08:57:03 ============================================================================ +08:57:03 Slot Id : <110> +08:57:03 Transaction Type : RESPONSE +08:57:03 Received From : +08:57:03 ============================================================================ +08:57:03 FNo. Len. Field Value +08:57:03 ============================================================================ +08:57:03 [ 1] [ 4] [0210] +08:57:03 [ 2] [ 16] [1808930200040400] +08:57:03 [ 3] [ 6] [301000] +08:57:03 [ 7] [ 10] [0320085653] +08:57:03 [ 11] [ 6] [691322] +08:57:03 [ 12] [ 6] [085653] +08:57:03 [ 13] [ 4] [0320] +08:57:03 [ 14] [ 4] [1803] +08:57:03 [ 19] [ 3] [418] +08:57:03 [ 32] [ 6] [621354] +08:57:03 [ 37] [ 12] [507903803025] +08:57:03 [ 38] [ 6] [691322] +08:57:03 [ 39] [ 2] [00] +08:57:03 [ 41] [ 8] [01009600] +08:57:03 [ 49] [ 3] [418] +08:57:03 [ 52] [ 16] [F8AEDEBC62348506] +08:57:03 [ 54] [ 20] [1002418C000606425000] +08:57:03 ============================================================================ +08:57:03 Sending to : +08:57:03 ============================================================================ +08:57:03 + + +waiting on router queue for slot.... +08:57:04 ============================================================================ +08:57:04 Slot Id : <110> +08:57:04 Transaction Type : RESPONSE +08:57:04 Received From : +08:57:04 ============================================================================ +08:57:04 FNo. Len. Field Value +08:57:04 ============================================================================ +08:57:04 [ 1] [ 4] [0210] +08:57:04 [ 2] [ 16] [1808930200040400] +08:57:04 [ 3] [ 6] [301000] +08:57:04 [ 7] [ 10] [0320085653] +08:57:04 [ 11] [ 6] [691322] +08:57:04 [ 12] [ 6] [085653] +08:57:04 [ 13] [ 4] [0320] +08:57:04 [ 14] [ 4] [1803] +08:57:04 [ 19] [ 3] [418] +08:57:04 [ 32] [ 6] [621354] +08:57:04 [ 37] [ 12] [507903803025] +08:57:04 [ 38] [ 6] [691322] +08:57:04 [ 39] [ 2] [00] +08:57:04 [ 41] [ 8] [01009600] +08:57:04 [ 49] [ 3] [418] +08:57:04 [ 52] [ 16] [F8AEDEBC62348506] +08:57:04 [ 54] [ 20] [1002418C000606425000] +08:57:04 ============================================================================ +08:57:04 Calculate Source COMM Id = 0 +08:57:04 ============================================================================ +08:57:04 + + +waiting on router queue for slot.... +08:57:12 ============================================================================ +08:57:12 Slot Id : <137> +08:57:12 Transaction Type : REQUEST +08:57:12 Received From : +08:57:12 ============================================================================ +08:57:12 FNo. Len. Field Value +08:57:12 ============================================================================ +08:57:12 [ 1] [ 4] [0800] +08:57:12 [ 7] [ 10] [0320015620] +08:57:12 [ 11] [ 6] [155524] +08:57:12 [ 70] [ 3] [301] +08:57:12 ============================================================================ +08:57:12 + + +waiting on router queue for slot.... +08:57:12 Sending to : +08:57:12 ============================================================================ +08:57:12 ============================================================================ +08:57:12 Slot Id : <137> +08:57:12 Transaction Type : RESPONSE +08:57:12 Received From : +08:57:12 ============================================================================ +08:57:12 FNo. Len. Field Value +08:57:12 ============================================================================ +08:57:12 [ 1] [ 4] [0810] +08:57:12 [ 7] [ 10] [0320015620] +08:57:12 [ 11] [ 6] [155524] +08:57:12 [ 39] [ 2] [00] +08:57:12 [ 70] [ 3] [301] +08:57:12 ============================================================================ +08:57:12 Calculate Source COMM Id = 2 +08:57:12 ============================================================================ +08:57:12 + + +waiting on router queue for slot.... +08:57:15 ============================================================================ +08:57:15 Slot Id : <159> +08:57:15 Transaction Type : REQUEST +08:57:15 Received From : +08:57:15 ============================================================================ +08:57:15 FNo. Len. Field Value +08:57:15 ============================================================================ +08:57:15 [ 1] [ 4] [0200] +08:57:15 [ 2] [ 16] [1808930400026464] +08:57:15 [ 3] [ 6] [300000] +08:57:15 [ 4] [ 12] [000000000000] +08:57:15 [ 7] [ 10] [0320085711] +08:57:15 [ 11] [ 6] [691402] +08:57:15 [ 12] [ 6] [085711] +08:57:15 [ 13] [ 4] [0320] +08:57:15 [ 15] [ 4] [0320] +08:57:15 [ 18] [ 4] [6011] +08:57:15 [ 22] [ 3] [900] +08:57:15 [ 25] [ 2] [02] +08:57:15 [ 28] [ 9] [D00000000] +08:57:15 [ 32] [ 6] [621354] +08:57:15 [ 35] [ 27] [1808930400026464=1803500966] +08:57:15 [ 37] [ 12] [507904965449] +08:57:15 [ 41] [ 8] [15001100] +08:57:15 [ 42] [ 15] [NATIVE ] +08:57:15 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +08:57:15 [ 49] [ 3] [418] +08:57:15 [ 52] [ 16] [4962B685B3220846] +08:57:15 ============================================================================ +08:57:15 + + +waiting on router queue for slot.... +08:57:15 Sending to : +08:57:15 ============================================================================ +08:57:15 Sending to : +08:57:15 ============================================================================ +08:57:15 ============================================================================ +08:57:15 Slot Id : <159> +08:57:15 Transaction Type : REQUEST +08:57:15 Received From : +08:57:15 ============================================================================ +08:57:15 FNo. Len. Field Value +08:57:15 ============================================================================ +08:57:15 [ 1] [ 4] [0200] +08:57:15 [ 2] [ 16] [1808930400026464] +08:57:15 [ 3] [ 6] [300000] +08:57:15 [ 4] [ 12] [000000000000] +08:57:15 [ 7] [ 10] [0320085711] +08:57:15 [ 11] [ 6] [691402] +08:57:15 [ 12] [ 6] [085711] +08:57:15 [ 13] [ 4] [0320] +08:57:15 [ 15] [ 4] [0320] +08:57:15 [ 18] [ 4] [6011] +08:57:15 [ 22] [ 3] [900] +08:57:15 [ 25] [ 2] [02] +08:57:15 [ 28] [ 9] [D00000000] +08:57:15 [ 32] [ 6] [621354] +08:57:15 [ 35] [ 27] [1808930400026464=1803500966] +08:57:15 [ 37] [ 12] [507904965449] +08:57:15 [ 41] [ 8] [15001100] +08:57:15 [ 42] [ 15] [NATIVE ] +08:57:15 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +08:57:15 [ 49] [ 3] [418] +08:57:15 [ 52] [ 16] [4962B685B3220846] +08:57:15 ============================================================================ +08:57:15 + + +waiting on router queue for slot.... +08:57:15 Sending to : +08:57:15 ============================================================================ +08:57:15 ============================================================================ +08:57:15 Slot Id : <159> +08:57:15 Transaction Type : REQUEST +08:57:15 Received From : +08:57:15 ============================================================================ +08:57:15 FNo. Len. Field Value +08:57:15 ============================================================================ +08:57:15 [ 1] [ 4] [0200] +08:57:15 [ 2] [ 16] [1808930400026464] +08:57:15 [ 3] [ 6] [300000] +08:57:15 [ 4] [ 12] [000000000000] +08:57:15 [ 7] [ 10] [0320085711] +08:57:15 [ 11] [ 6] [691402] +08:57:15 [ 12] [ 6] [085711] +08:57:15 [ 13] [ 4] [0320] +08:57:15 [ 15] [ 4] [0320] +08:57:15 [ 18] [ 4] [6011] +08:57:15 [ 22] [ 3] [900] +08:57:15 [ 25] [ 2] [02] +08:57:15 [ 28] [ 9] [D00000000] +08:57:15 [ 32] [ 6] [621354] +08:57:15 [ 35] [ 27] [1808930400026464=1803500966] +08:57:15 [ 37] [ 12] [507904965449] +08:57:15 [ 41] [ 8] [15001100] +08:57:15 [ 42] [ 15] [NATIVE ] +08:57:15 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +08:57:15 [ 49] [ 3] [418] +08:57:15 [ 52] [ 16] [B40407321E75C225] +08:57:15 ============================================================================ +08:57:15 + + +waiting on router queue for slot.... +08:57:15 Sending to : <2> +08:57:15 ============================================================================ +08:57:17 ============================================================================ +08:57:17 Slot Id : <159> +08:57:17 Transaction Type : RESPONSE +08:57:17 Received From : +08:57:17 ============================================================================ +08:57:17 FNo. Len. Field Value +08:57:17 ============================================================================ +08:57:17 [ 1] [ 4] [0210] +08:57:17 [ 2] [ 16] [1808930400026464] +08:57:17 [ 3] [ 6] [300000] +08:57:17 [ 7] [ 10] [0320085711] +08:57:17 [ 11] [ 6] [691402] +08:57:17 [ 12] [ 6] [085711] +08:57:17 [ 13] [ 4] [0320] +08:57:17 [ 14] [ 4] [1803] +08:57:17 [ 19] [ 3] [418] +08:57:17 [ 32] [ 6] [621354] +08:57:17 [ 37] [ 12] [507904965449] +08:57:17 [ 39] [ 2] [55] +08:57:17 [ 41] [ 8] [15001100] +08:57:17 [ 49] [ 3] [418] +08:57:17 [ 52] [ 16] [B40407321E75C225] +08:57:17 ============================================================================ +08:57:17 Sending to : +08:57:17 ============================================================================ +08:57:17 + + +waiting on router queue for slot.... +08:57:18 ============================================================================ +08:57:18 Slot Id : <159> +08:57:18 Transaction Type : RESPONSE +08:57:18 Received From : +08:57:18 ============================================================================ +08:57:18 FNo. Len. Field Value +08:57:18 ============================================================================ +08:57:18 [ 1] [ 4] [0210] +08:57:18 [ 2] [ 16] [1808930400026464] +08:57:18 [ 3] [ 6] [300000] +08:57:18 [ 7] [ 10] [0320085711] +08:57:18 [ 11] [ 6] [691402] +08:57:18 [ 12] [ 6] [085711] +08:57:18 [ 13] [ 4] [0320] +08:57:18 [ 14] [ 4] [1803] +08:57:18 [ 19] [ 3] [418] +08:57:18 [ 32] [ 6] [621354] +08:57:18 [ 37] [ 12] [507904965449] +08:57:18 [ 39] [ 2] [55] +08:57:18 [ 41] [ 8] [15001100] +08:57:18 [ 49] [ 3] [418] +08:57:18 [ 52] [ 16] [B40407321E75C225] +08:57:18 ============================================================================ +08:57:18 Calculate Source COMM Id = 0 +08:57:18 ============================================================================ +08:57:18 + + +waiting on router queue for slot.... +08:57:25 ============================================================================ +08:57:25 Slot Id : <128> +08:57:25 Transaction Type : REQUEST +08:57:25 Received From : +08:57:25 ============================================================================ +08:57:25 FNo. Len. Field Value +08:57:25 ============================================================================ +08:57:25 [ 1] [ 4] [0200] +08:57:25 [ 2] [ 16] [1808930500014303] +08:57:25 [ 3] [ 6] [010000] +08:57:25 [ 4] [ 12] [000100000000] +08:57:25 [ 7] [ 10] [0320085516] +08:57:25 [ 11] [ 6] [934268] +08:57:25 [ 12] [ 6] [085516] +08:57:25 [ 13] [ 4] [0320] +08:57:25 [ 15] [ 4] [0320] +08:57:25 [ 18] [ 4] [6011] +08:57:25 [ 19] [ 3] [418] +08:57:25 [ 22] [ 3] [021] +08:57:25 [ 25] [ 2] [01] +08:57:25 [ 28] [ 9] [D00002000] +08:57:25 [ 32] [ 6] [668899] +08:57:25 [ 35] [ 27] [1808930500014303=1803500022] +08:57:25 [ 37] [ 12] [507900844833] +08:57:25 [ 41] [ 8] [03015003] +08:57:25 [ 42] [ 15] [APT ] +08:57:25 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:57:25 [ 49] [ 3] [418] +08:57:25 [ 52] [ 16] [10FFC6C354F7AB45] +08:57:25 ============================================================================ +08:57:25 + + +waiting on router queue for slot.... +08:57:25 Sending to : +08:57:25 ============================================================================ +08:57:25 Sending to : +08:57:25 ============================================================================ +08:57:25 ============================================================================ +08:57:25 Slot Id : <128> +08:57:25 Transaction Type : REQUEST +08:57:25 Received From : +08:57:25 ============================================================================ +08:57:25 FNo. Len. Field Value +08:57:25 ============================================================================ +08:57:25 [ 1] [ 4] [0200] +08:57:25 [ 2] [ 16] [1808930500014303] +08:57:25 [ 3] [ 6] [010000] +08:57:25 [ 4] [ 12] [000100000000] +08:57:25 [ 7] [ 10] [0320085516] +08:57:25 [ 11] [ 6] [934268] +08:57:25 [ 12] [ 6] [085516] +08:57:25 [ 13] [ 4] [0320] +08:57:25 [ 15] [ 4] [0320] +08:57:25 [ 18] [ 4] [6011] +08:57:25 [ 19] [ 3] [418] +08:57:25 [ 22] [ 3] [021] +08:57:25 [ 25] [ 2] [01] +08:57:25 [ 28] [ 9] [D00002000] +08:57:25 [ 32] [ 6] [668899] +08:57:25 [ 35] [ 27] [1808930500014303=1803500022] +08:57:25 [ 37] [ 12] [507900844833] +08:57:25 [ 41] [ 8] [03015003] +08:57:25 [ 42] [ 15] [APT ] +08:57:25 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:57:25 [ 49] [ 3] [418] +08:57:25 [ 52] [ 16] [10FFC6C354F7AB45] +08:57:25 ============================================================================ +08:57:25 + + +waiting on router queue for slot.... +08:57:25 Sending to : +08:57:25 ============================================================================ +08:57:25 ============================================================================ +08:57:25 Slot Id : <128> +08:57:25 Transaction Type : REQUEST +08:57:25 Received From : +08:57:25 ============================================================================ +08:57:25 FNo. Len. Field Value +08:57:25 ============================================================================ +08:57:25 [ 1] [ 4] [0200] +08:57:25 [ 2] [ 16] [1808930500014303] +08:57:25 [ 3] [ 6] [010000] +08:57:25 [ 4] [ 12] [000100000000] +08:57:25 [ 7] [ 10] [0320085516] +08:57:25 [ 11] [ 6] [934268] +08:57:25 [ 12] [ 6] [085516] +08:57:25 [ 13] [ 4] [0320] +08:57:25 [ 15] [ 4] [0320] +08:57:25 [ 18] [ 4] [6011] +08:57:25 [ 19] [ 3] [418] +08:57:25 [ 22] [ 3] [021] +08:57:25 [ 25] [ 2] [01] +08:57:25 [ 28] [ 9] [D00002000] +08:57:25 [ 32] [ 6] [668899] +08:57:25 [ 35] [ 27] [1808930500014303=1803500022] +08:57:25 [ 37] [ 12] [507900844833] +08:57:25 [ 41] [ 8] [03015003] +08:57:25 [ 42] [ 15] [APT ] +08:57:25 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:57:25 [ 49] [ 3] [418] +08:57:25 [ 52] [ 16] [08F610331435960F] +08:57:25 ============================================================================ +08:57:25 + + +waiting on router queue for slot.... +08:57:25 Sending to : <2> +08:57:25 ============================================================================ +08:57:26 ============================================================================ +08:57:26 Slot Id : <175> +08:57:26 Transaction Type : REQUEST +08:57:26 Received From : +08:57:26 ============================================================================ +08:57:26 FNo. Len. Field Value +08:57:26 ============================================================================ +08:57:26 [ 1] [ 4] [0800] +08:57:26 [ 7] [ 10] [0320160915] +08:57:26 [ 11] [ 6] [090915] +08:57:26 [ 37] [ 12] [57909090915] +08:57:26 [ 70] [ 3] [301] +08:57:26 ============================================================================ +08:57:26 + + +waiting on router queue for slot.... +08:57:26 Sending to : +08:57:26 ============================================================================ +08:57:26 ============================================================================ +08:57:26 Slot Id : <175> +08:57:26 Transaction Type : RESPONSE +08:57:26 Received From : +08:57:26 ============================================================================ +08:57:26 FNo. Len. Field Value +08:57:26 ============================================================================ +08:57:26 [ 1] [ 4] [0810] +08:57:26 [ 7] [ 10] [0320160915] +08:57:26 [ 11] [ 6] [090915] +08:57:26 [ 37] [ 12] [579090909150] +08:57:26 [ 39] [ 2] [00] +08:57:26 [ 70] [ 3] [810] +08:57:26 ============================================================================ +08:57:26 Calculate Source COMM Id = 6 +08:57:26 ============================================================================ +08:57:26 + + +waiting on router queue for slot.... +08:57:30 ============================================================================ +08:57:30 Slot Id : <146> +08:57:30 Transaction Type : REQUEST +08:57:30 Received From : +08:57:30 ============================================================================ +08:57:30 FNo. Len. Field Value +08:57:30 ============================================================================ +08:57:30 [ 1] [ 4] [0200] +08:57:30 [ 2] [ 16] [1808930400026464] +08:57:30 [ 3] [ 6] [300000] +08:57:30 [ 4] [ 12] [000000000000] +08:57:30 [ 7] [ 10] [0320085727] +08:57:30 [ 11] [ 6] [691472] +08:57:30 [ 12] [ 6] [085727] +08:57:30 [ 13] [ 4] [0320] +08:57:30 [ 15] [ 4] [0320] +08:57:30 [ 18] [ 4] [6011] +08:57:30 [ 22] [ 3] [900] +08:57:30 [ 25] [ 2] [02] +08:57:30 [ 28] [ 9] [D00000000] +08:57:30 [ 32] [ 6] [621354] +08:57:30 [ 35] [ 27] [1808930400026464=1803500966] +08:57:30 [ 37] [ 12] [507904965450] +08:57:30 [ 41] [ 8] [15001100] +08:57:30 [ 42] [ 15] [NATIVE ] +08:57:30 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +08:57:30 [ 49] [ 3] [418] +08:57:30 [ 52] [ 16] [4962B685B3220846] +08:57:30 ============================================================================ +08:57:30 + + +waiting on router queue for slot.... +08:57:30 Sending to : +08:57:30 ============================================================================ +08:57:30 Sending to : +08:57:30 ============================================================================ +08:57:31 ============================================================================ +08:57:31 Slot Id : <146> +08:57:31 Transaction Type : REQUEST +08:57:31 Received From : +08:57:31 ============================================================================ +08:57:31 FNo. Len. Field Value +08:57:31 ============================================================================ +08:57:31 [ 1] [ 4] [0200] +08:57:31 [ 2] [ 16] [1808930400026464] +08:57:31 [ 3] [ 6] [300000] +08:57:31 [ 4] [ 12] [000000000000] +08:57:31 [ 7] [ 10] [0320085727] +08:57:31 [ 11] [ 6] [691472] +08:57:31 [ 12] [ 6] [085727] +08:57:31 [ 13] [ 4] [0320] +08:57:31 [ 15] [ 4] [0320] +08:57:31 [ 18] [ 4] [6011] +08:57:31 [ 22] [ 3] [900] +08:57:31 [ 25] [ 2] [02] +08:57:31 [ 28] [ 9] [D00000000] +08:57:31 [ 32] [ 6] [621354] +08:57:31 [ 35] [ 27] [1808930400026464=1803500966] +08:57:31 [ 37] [ 12] [507904965450] +08:57:31 [ 41] [ 8] [15001100] +08:57:31 [ 42] [ 15] [NATIVE ] +08:57:31 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +08:57:31 [ 49] [ 3] [418] +08:57:31 [ 52] [ 16] [4962B685B3220846] +08:57:31 ============================================================================ +08:57:31 + + +waiting on router queue for slot.... +08:57:31 Sending to : +08:57:31 ============================================================================ +08:57:31 ============================================================================ +08:57:31 Slot Id : <146> +08:57:31 Transaction Type : REQUEST +08:57:31 Received From : +08:57:31 ============================================================================ +08:57:31 FNo. Len. Field Value +08:57:31 ============================================================================ +08:57:31 [ 1] [ 4] [0200] +08:57:31 [ 2] [ 16] [1808930400026464] +08:57:31 [ 3] [ 6] [300000] +08:57:31 [ 4] [ 12] [000000000000] +08:57:31 [ 7] [ 10] [0320085727] +08:57:31 [ 11] [ 6] [691472] +08:57:31 [ 12] [ 6] [085727] +08:57:31 [ 13] [ 4] [0320] +08:57:31 [ 15] [ 4] [0320] +08:57:31 [ 18] [ 4] [6011] +08:57:31 [ 22] [ 3] [900] +08:57:31 [ 25] [ 2] [02] +08:57:31 [ 28] [ 9] [D00000000] +08:57:31 [ 32] [ 6] [621354] +08:57:31 [ 35] [ 27] [1808930400026464=1803500966] +08:57:31 [ 37] [ 12] [507904965450] +08:57:31 [ 41] [ 8] [15001100] +08:57:31 [ 42] [ 15] [NATIVE ] +08:57:31 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +08:57:31 [ 49] [ 3] [418] +08:57:31 [ 52] [ 16] [B40407321E75C225] +08:57:31 ============================================================================ +08:57:31 + + +waiting on router queue for slot.... +08:57:31 Sending to : <2> +08:57:31 ============================================================================ +08:57:32 ============================================================================ +08:57:32 Slot Id : <146> +08:57:32 Transaction Type : RESPONSE +08:57:32 Received From : +08:57:32 ============================================================================ +08:57:32 FNo. Len. Field Value +08:57:32 ============================================================================ +08:57:32 [ 1] [ 4] [0210] +08:57:32 [ 2] [ 16] [1808930400026464] +08:57:32 [ 3] [ 6] [300000] +08:57:32 [ 7] [ 10] [0320085727] +08:57:32 [ 11] [ 6] [691472] +08:57:32 [ 12] [ 6] [085727] +08:57:32 [ 13] [ 4] [0320] +08:57:32 [ 14] [ 4] [1803] +08:57:32 [ 19] [ 3] [418] +08:57:32 [ 32] [ 6] [621354] +08:57:32 [ 37] [ 12] [507904965450] +08:57:32 [ 39] [ 2] [75] +08:57:32 [ 41] [ 8] [15001100] +08:57:32 [ 49] [ 3] [418] +08:57:32 [ 52] [ 16] [B40407321E75C225] +08:57:32 ============================================================================ +08:57:32 Sending to : +08:57:32 ============================================================================ +08:57:32 + + +waiting on router queue for slot.... +08:57:32 ============================================================================ +08:57:32 Slot Id : <128> +08:57:32 Transaction Type : RESPONSE +08:57:32 Received From : +08:57:32 ============================================================================ +08:57:32 FNo. Len. Field Value +08:57:32 ============================================================================ +08:57:32 [ 1] [ 4] [0210] +08:57:32 [ 2] [ 16] [1808930500014303] +08:57:32 [ 3] [ 6] [010000] +08:57:32 [ 4] [ 12] [000100000000] +08:57:32 [ 6] [ 12] [000100000000] +08:57:32 [ 7] [ 10] [0320085516] +08:57:32 [ 11] [ 6] [934268] +08:57:32 [ 12] [ 6] [085516] +08:57:32 [ 13] [ 4] [0320] +08:57:32 [ 18] [ 4] [6011] +08:57:32 [ 19] [ 3] [418] +08:57:32 [ 22] [ 3] [021] +08:57:32 [ 32] [ 6] [668899] +08:57:32 [ 35] [ 27] [1808930500014303=1803500022] +08:57:32 [ 37] [ 12] [507900844833] +08:57:32 [ 38] [ 6] [934268] +08:57:32 [ 39] [ 2] [51] +08:57:32 [ 41] [ 8] [03015003] +08:57:32 [ 49] [ 3] [418] +08:57:32 [ 52] [ 16] [08F610331435960F] +08:57:32 ============================================================================ +08:57:32 Sending to : +08:57:32 ============================================================================ +08:57:32 + + +waiting on router queue for slot.... +08:57:34 ============================================================================ +08:57:34 Slot Id : <146> +08:57:34 Transaction Type : RESPONSE +08:57:34 Received From : +08:57:34 ============================================================================ +08:57:34 FNo. Len. Field Value +08:57:34 ============================================================================ +08:57:34 [ 1] [ 4] [0210] +08:57:34 [ 2] [ 16] [1808930400026464] +08:57:34 [ 3] [ 6] [300000] +08:57:34 [ 7] [ 10] [0320085727] +08:57:34 [ 11] [ 6] [691472] +08:57:34 [ 12] [ 6] [085727] +08:57:34 [ 13] [ 4] [0320] +08:57:34 [ 14] [ 4] [1803] +08:57:34 [ 19] [ 3] [418] +08:57:34 [ 32] [ 6] [621354] +08:57:34 [ 37] [ 12] [507904965450] +08:57:34 [ 39] [ 2] [75] +08:57:34 [ 41] [ 8] [15001100] +08:57:34 [ 49] [ 3] [418] +08:57:34 [ 52] [ 16] [B40407321E75C225] +08:57:34 ============================================================================ +08:57:34 Calculate Source COMM Id = 0 +08:57:34 ============================================================================ +08:57:34 + + +waiting on router queue for slot.... +08:57:35 ============================================================================ +08:57:35 Slot Id : <128> +08:57:35 Transaction Type : RESPONSE +08:57:35 Received From : +08:57:35 ============================================================================ +08:57:35 FNo. Len. Field Value +08:57:35 ============================================================================ +08:57:35 [ 1] [ 4] [0210] +08:57:35 [ 2] [ 16] [1808930500014303] +08:57:35 [ 3] [ 6] [010000] +08:57:35 [ 4] [ 12] [000100000000] +08:57:35 [ 6] [ 12] [000100000000] +08:57:35 [ 7] [ 10] [0320085516] +08:57:35 [ 11] [ 6] [934268] +08:57:35 [ 12] [ 6] [085516] +08:57:35 [ 13] [ 4] [0320] +08:57:35 [ 18] [ 4] [6011] +08:57:35 [ 19] [ 3] [418] +08:57:35 [ 22] [ 3] [021] +08:57:35 [ 32] [ 6] [668899] +08:57:35 [ 35] [ 27] [1808930500014303=1803500022] +08:57:35 [ 37] [ 12] [507900844833] +08:57:35 [ 38] [ 6] [934268] +08:57:35 [ 39] [ 2] [51] +08:57:35 [ 41] [ 8] [03015003] +08:57:35 [ 49] [ 3] [418] +08:57:35 [ 52] [ 16] [08F610331435960F] +08:57:35 ============================================================================ +08:57:35 Calculate Source COMM Id = 4 +08:57:35 ============================================================================ +08:57:35 + + +waiting on router queue for slot.... +08:57:36 ============================================================================ +08:57:36 Slot Id : <141> +08:57:36 Transaction Type : REQUEST +08:57:36 Received From : +08:57:36 ============================================================================ +08:57:36 FNo. Len. Field Value +08:57:36 ============================================================================ +08:57:36 [ 1] [ 4] [0200] +08:57:36 [ 2] [ 16] [6688990060012679] +08:57:36 [ 3] [ 6] [300000] +08:57:36 [ 4] [ 12] [000000000000] +08:57:36 [ 7] [ 10] [0320085732] +08:57:36 [ 11] [ 6] [691492] +08:57:36 [ 12] [ 6] [085732] +08:57:36 [ 13] [ 4] [0320] +08:57:36 [ 15] [ 4] [0320] +08:57:36 [ 18] [ 4] [6011] +08:57:36 [ 22] [ 3] [900] +08:57:36 [ 25] [ 2] [02] +08:57:36 [ 28] [ 9] [D00000000] +08:57:36 [ 32] [ 6] [621354] +08:57:36 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:57:36 [ 37] [ 12] [507905291319] +08:57:36 [ 41] [ 8] [20001400] +08:57:36 [ 42] [ 15] [NATIVE ] +08:57:36 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:57:36 [ 49] [ 3] [418] +08:57:36 [ 52] [ 16] [47F48598D3F1767B] +08:57:36 ============================================================================ +08:57:36 + + +waiting on router queue for slot.... +08:57:36 Sending to : +08:57:36 ============================================================================ +08:57:36 Sending to : +08:57:36 ============================================================================ +08:57:36 ============================================================================ +08:57:36 Slot Id : <141> +08:57:36 Transaction Type : REQUEST +08:57:36 Received From : +08:57:36 ============================================================================ +08:57:36 FNo. Len. Field Value +08:57:36 ============================================================================ +08:57:36 [ 1] [ 4] [0200] +08:57:36 [ 2] [ 16] [6688990060012679] +08:57:36 [ 3] [ 6] [300000] +08:57:36 [ 4] [ 12] [000000000000] +08:57:36 [ 7] [ 10] [0320085732] +08:57:36 [ 11] [ 6] [691492] +08:57:36 [ 12] [ 6] [085732] +08:57:36 [ 13] [ 4] [0320] +08:57:36 [ 15] [ 4] [0320] +08:57:36 [ 18] [ 4] [6011] +08:57:36 [ 22] [ 3] [900] +08:57:36 [ 25] [ 2] [02] +08:57:36 [ 28] [ 9] [D00000000] +08:57:36 [ 32] [ 6] [621354] +08:57:36 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:57:36 [ 37] [ 12] [507905291319] +08:57:36 [ 41] [ 8] [20001400] +08:57:36 [ 42] [ 15] [NATIVE ] +08:57:36 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:57:36 [ 49] [ 3] [418] +08:57:36 [ 52] [ 16] [47F48598D3F1767B] +08:57:36 ============================================================================ +08:57:36 + + +waiting on router queue for slot.... +08:57:36 Sending to : +08:57:36 ============================================================================ +08:57:36 ============================================================================ +08:57:36 Slot Id : <141> +08:57:36 Transaction Type : REQUEST +08:57:36 Received From : +08:57:36 ============================================================================ +08:57:36 FNo. Len. Field Value +08:57:36 ============================================================================ +08:57:36 [ 1] [ 4] [0200] +08:57:36 [ 2] [ 16] [6688990060012679] +08:57:36 [ 3] [ 6] [300000] +08:57:36 [ 4] [ 12] [000000000000] +08:57:36 [ 7] [ 10] [0320085732] +08:57:36 [ 11] [ 6] [691492] +08:57:36 [ 12] [ 6] [085732] +08:57:36 [ 13] [ 4] [0320] +08:57:36 [ 15] [ 4] [0320] +08:57:36 [ 18] [ 4] [6011] +08:57:36 [ 22] [ 3] [900] +08:57:36 [ 25] [ 2] [02] +08:57:36 [ 28] [ 9] [D00000000] +08:57:36 [ 32] [ 6] [621354] +08:57:36 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:57:36 [ 37] [ 12] [507905291319] +08:57:36 [ 41] [ 8] [20001400] +08:57:36 [ 42] [ 15] [NATIVE ] +08:57:36 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +08:57:36 [ 49] [ 3] [418] +08:57:36 [ 52] [ 16] [63865579AF752D0E] +08:57:36 ============================================================================ +08:57:36 + + +waiting on router queue for slot.... +08:57:36 Sending to : <4> +08:57:36 ============================================================================ +08:57:38 ============================================================================ +08:57:38 Slot Id : <141> +08:57:38 Transaction Type : RESPONSE +08:57:38 Received From : +08:57:38 ============================================================================ +08:57:38 FNo. Len. Field Value +08:57:38 ============================================================================ +08:57:38 [ 1] [ 4] [0210] +08:57:38 [ 2] [ 16] [6688990060012679] +08:57:38 [ 3] [ 6] [300000] +08:57:38 [ 4] [ 12] [000000000000] +08:57:38 [ 11] [ 6] [691492] +08:57:38 [ 12] [ 6] [085732] +08:57:38 [ 15] [ 4] [0320] +08:57:38 [ 18] [ 4] [6011] +08:57:38 [ 32] [ 6] [621354] +08:57:38 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:57:38 [ 37] [ 12] [507905291319] +08:57:38 [ 38] [ 6] [875468] +08:57:38 [ 39] [ 2] [00] +08:57:38 [ 41] [ 8] [20001400] +08:57:38 [ 49] [ 3] [418] +08:57:38 [ 54] [ 20] [0002418C000254239342] +08:57:38 ============================================================================ +08:57:38 Sending to : +08:57:38 ============================================================================ +08:57:38 + + +waiting on router queue for slot.... +08:57:39 ============================================================================ +08:57:39 Slot Id : <141> +08:57:39 Transaction Type : RESPONSE +08:57:39 Received From : +08:57:39 ============================================================================ +08:57:39 FNo. Len. Field Value +08:57:39 ============================================================================ +08:57:39 [ 1] [ 4] [0210] +08:57:39 [ 2] [ 16] [6688990060012679] +08:57:39 [ 3] [ 6] [300000] +08:57:39 [ 4] [ 12] [000000000000] +08:57:39 [ 11] [ 6] [691492] +08:57:39 [ 12] [ 6] [085732] +08:57:39 [ 15] [ 4] [0320] +08:57:39 [ 18] [ 4] [6011] +08:57:39 [ 32] [ 6] [621354] +08:57:39 [ 35] [ 37] [6688990060012679=97121261179559700000] +08:57:39 [ 37] [ 12] [507905291319] +08:57:39 [ 38] [ 6] [875468] +08:57:39 [ 39] [ 2] [00] +08:57:39 [ 41] [ 8] [20001400] +08:57:39 [ 49] [ 3] [418] +08:57:39 [ 54] [ 20] [0002418C000254239342] +08:57:39 ============================================================================ +08:57:39 Calculate Source COMM Id = 0 +08:57:39 ============================================================================ +08:57:39 + + +waiting on router queue for slot.... +08:57:44 ============================================================================ +08:57:44 Slot Id : <170> +08:57:44 Transaction Type : REQUEST +08:57:44 Received From : +08:57:44 ============================================================================ +08:57:44 FNo. Len. Field Value +08:57:44 ============================================================================ +08:57:44 [ 1] [ 4] [0200] +08:57:44 [ 2] [ 16] [6213541000576390] +08:57:44 [ 3] [ 6] [010000] +08:57:44 [ 4] [ 12] [000100000000] +08:57:44 [ 7] [ 10] [0320015651] +08:57:44 [ 11] [ 6] [267315] +08:57:44 [ 12] [ 6] [085651] +08:57:44 [ 13] [ 4] [0320] +08:57:44 [ 14] [ 4] [4912] +08:57:44 [ 15] [ 4] [0320] +08:57:44 [ 18] [ 4] [6011] +08:57:44 [ 19] [ 3] [418] +08:57:44 [ 22] [ 3] [021] +08:57:44 [ 25] [ 2] [01] +08:57:44 [ 28] [ 9] [D00002000] +08:57:44 [ 32] [ 6] [180893] +08:57:44 [ 35] [ 32] [6213541000576390=491212017639041] +08:57:44 [ 37] [ 12] [507901267315] +08:57:44 [ 41] [ 8] [0401XSBR] +08:57:44 [ 42] [ 15] [999999 ] +08:57:44 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +08:57:44 [ 49] [ 3] [418] +08:57:44 [ 52] [ 16] [1C23B28235AD062B] +08:57:44 ============================================================================ +08:57:44 + + +waiting on router queue for slot.... +08:57:44 Sending to : +08:57:44 ============================================================================ +08:57:44 Sending to : +08:57:44 ============================================================================ +08:57:44 ============================================================================ +08:57:44 Slot Id : <170> +08:57:44 Transaction Type : REQUEST +08:57:44 Received From : +08:57:44 ============================================================================ +08:57:44 FNo. Len. Field Value +08:57:44 ============================================================================ +08:57:44 [ 1] [ 4] [0200] +08:57:44 [ 2] [ 16] [6213541000576390] +08:57:44 [ 3] [ 6] [010000] +08:57:44 [ 4] [ 12] [000100000000] +08:57:44 [ 7] [ 10] [0320015651] +08:57:44 [ 11] [ 6] [267315] +08:57:44 [ 12] [ 6] [085651] +08:57:44 [ 13] [ 4] [0320] +08:57:44 [ 14] [ 4] [4912] +08:57:44 [ 15] [ 4] [0320] +08:57:44 [ 18] [ 4] [6011] +08:57:44 [ 19] [ 3] [418] +08:57:44 [ 22] [ 3] [021] +08:57:44 [ 25] [ 2] [01] +08:57:44 [ 28] [ 9] [D00002000] +08:57:44 [ 32] [ 6] [180893] +08:57:44 [ 35] [ 32] [6213541000576390=491212017639041] +08:57:44 [ 37] [ 12] [507901267315] +08:57:44 [ 41] [ 8] [0401XSBR] +08:57:44 [ 42] [ 15] [999999 ] +08:57:44 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +08:57:44 [ 49] [ 3] [418] +08:57:44 [ 52] [ 16] [1C23B28235AD062B] +08:57:44 ============================================================================ +08:57:44 + + +waiting on router queue for slot.... +08:57:44 Sending to : +08:57:44 ============================================================================ +08:57:44 ============================================================================ +08:57:44 Slot Id : <170> +08:57:44 Transaction Type : REQUEST +08:57:44 Received From : +08:57:44 ============================================================================ +08:57:44 FNo. Len. Field Value +08:57:44 ============================================================================ +08:57:44 [ 1] [ 4] [0200] +08:57:44 [ 2] [ 16] [6213541000576390] +08:57:44 [ 3] [ 6] [010000] +08:57:44 [ 4] [ 12] [000100000000] +08:57:44 [ 7] [ 10] [0320015651] +08:57:44 [ 11] [ 6] [267315] +08:57:44 [ 12] [ 6] [085651] +08:57:44 [ 13] [ 4] [0320] +08:57:44 [ 14] [ 4] [4912] +08:57:44 [ 15] [ 4] [0320] +08:57:44 [ 18] [ 4] [6011] +08:57:44 [ 19] [ 3] [418] +08:57:44 [ 22] [ 3] [021] +08:57:44 [ 25] [ 2] [01] +08:57:44 [ 28] [ 9] [D00002000] +08:57:44 [ 32] [ 6] [180893] +08:57:44 [ 35] [ 32] [6213541000576390=491212017639041] +08:57:44 [ 37] [ 12] [507901267315] +08:57:44 [ 41] [ 8] [0401XSBR] +08:57:44 [ 42] [ 15] [999999 ] +08:57:44 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +08:57:44 [ 49] [ 3] [418] +08:57:44 [ 52] [ 16] [B012BE64420BF512] +08:57:44 ============================================================================ +08:57:44 + + +waiting on router queue for slot.... +08:57:44 Sending to : <0> +08:57:44 ============================================================================ +08:57:45 ============================================================================ +08:57:45 Slot Id : <170> +08:57:45 Transaction Type : RESPONSE +08:57:45 Received From : +08:57:45 ============================================================================ +08:57:45 FNo. Len. Field Value +08:57:45 ============================================================================ +08:57:45 [ 1] [ 4] [0210] +08:57:45 [ 2] [ 16] [6213541000576390] +08:57:45 [ 3] [ 6] [010000] +08:57:45 [ 4] [ 12] [000100000000] +08:57:45 [ 7] [ 10] [0320015651] +08:57:45 [ 11] [ 6] [267315] +08:57:45 [ 12] [ 6] [085651] +08:57:45 [ 13] [ 4] [0320] +08:57:45 [ 15] [ 4] [0320] +08:57:45 [ 18] [ 4] [6011] +08:57:45 [ 19] [ 3] [418] +08:57:45 [ 32] [ 6] [180893] +08:57:45 [ 35] [ 32] [6213541000576390=491212017639041] +08:57:45 [ 37] [ 12] [507901267315] +08:57:45 [ 38] [ 6] [126743] +08:57:45 [ 39] [ 2] [00] +08:57:45 [ 41] [ 8] [0401XSBR] +08:57:45 [ 49] [ 3] [418] +08:57:45 [ 54] [ 40] [0001418C0000176982620002418C000017698262] +08:57:45 ============================================================================ +08:57:45 Sending to : +08:57:45 ============================================================================ +08:57:45 + + +waiting on router queue for slot.... +08:57:45 ============================================================================ +08:57:45 Slot Id : <151> +08:57:45 Transaction Type : REQUEST +08:57:45 Received From : +08:57:45 ============================================================================ +08:57:45 FNo. Len. Field Value +08:57:45 ============================================================================ +08:57:45 [ 1] [ 4] [0800] +08:57:45 [ 7] [ 10] [0320015653] +08:57:45 [ 11] [ 6] [155525] +08:57:45 [ 70] [ 3] [301] +08:57:45 ============================================================================ +08:57:45 + + +waiting on router queue for slot.... +08:57:45 Sending to : +08:57:45 ============================================================================ +08:57:45 ============================================================================ +08:57:45 Slot Id : <151> +08:57:45 Transaction Type : RESPONSE +08:57:45 Received From : +08:57:45 ============================================================================ +08:57:45 FNo. Len. Field Value +08:57:45 ============================================================================ +08:57:45 [ 1] [ 4] [0810] +08:57:45 [ 7] [ 10] [0320015653] +08:57:45 [ 11] [ 6] [155525] +08:57:45 [ 39] [ 2] [00] +08:57:45 [ 70] [ 3] [301] +08:57:45 ============================================================================ +08:57:45 Calculate Source COMM Id = 2 +08:57:45 ============================================================================ +08:57:45 + + +waiting on router queue for slot.... +08:57:47 ============================================================================ +08:57:47 Slot Id : <170> +08:57:47 Transaction Type : RESPONSE +08:57:47 Received From : +08:57:47 ============================================================================ +08:57:47 FNo. Len. Field Value +08:57:47 ============================================================================ +08:57:47 [ 1] [ 4] [0210] +08:57:47 [ 2] [ 16] [6213541000576390] +08:57:47 [ 3] [ 6] [010000] +08:57:47 [ 4] [ 12] [000100000000] +08:57:47 [ 7] [ 10] [0320015651] +08:57:47 [ 11] [ 6] [267315] +08:57:47 [ 12] [ 6] [085651] +08:57:47 [ 13] [ 4] [0320] +08:57:47 [ 15] [ 4] [0320] +08:57:47 [ 18] [ 4] [6011] +08:57:47 [ 19] [ 3] [418] +08:57:47 [ 32] [ 6] [180893] +08:57:47 [ 35] [ 32] [6213541000576390=491212017639041] +08:57:47 [ 37] [ 12] [507901267315] +08:57:47 [ 38] [ 6] [126743] +08:57:47 [ 39] [ 2] [00] +08:57:47 [ 41] [ 8] [0401XSBR] +08:57:47 [ 49] [ 3] [418] +08:57:47 [ 54] [ 40] [0001418C0000176982620002418C000017698262] +08:57:47 ============================================================================ +08:57:47 Calculate Source COMM Id = 2 +08:57:47 ============================================================================ +08:57:47 + + +waiting on router queue for slot.... +08:57:56 ============================================================================ +08:57:56 Slot Id : <157> +08:57:56 Transaction Type : REQUEST +08:57:56 Received From : +08:57:56 ============================================================================ +08:57:56 FNo. Len. Field Value +08:57:56 ============================================================================ +08:57:56 [ 1] [ 4] [0800] +08:57:56 [ 2] [ 5] [02531] +08:57:56 [ 3] [ 6] [579088] +08:57:56 [ 7] [ 10] [0320015756] +08:57:56 [ 11] [ 6] [806932] +08:57:56 [ 15] [ 10] [0320015756] +08:57:56 [ 37] [ 11] [57908806932] +08:57:56 [ 70] [ 3] [001] +08:57:56 ============================================================================ +08:57:56 + + +waiting on router queue for slot.... +08:57:56 ============================================================================ +08:57:56 Slot Id : <157> +08:57:56 Transaction Type : RESPONSE +08:57:56 Received From : +08:57:56 ============================================================================ +08:57:56 FNo. Len. Field Value +08:57:56 ============================================================================ +08:57:56 [ 1] [ 4] [0810] +08:57:56 [ 7] [ 10] [0320015756] +08:57:56 [ 11] [ 6] [806932] +08:57:56 [ 15] [ 4] [0320] +08:57:56 [ 37] [ 12] [57908806932] +08:57:56 [ 39] [ 2] [00] +08:57:56 [ 70] [ 3] [001] +08:57:56 ============================================================================ +08:57:56 Sending to : +08:57:56 ============================================================================ +08:57:56 + + +waiting on router queue for slot.... +08:58:02 ============================================================================ +08:58:02 Slot Id : <164> +08:58:02 Transaction Type : REQUEST +08:58:02 Received From : +08:58:02 ============================================================================ +08:58:02 FNo. Len. Field Value +08:58:02 ============================================================================ +08:58:02 [ 1] [ 4] [0800] +08:58:02 [ 7] [ 10] [0320015710] +08:58:02 [ 11] [ 6] [155526] +08:58:02 [ 70] [ 3] [301] +08:58:02 ============================================================================ +08:58:02 + + +waiting on router queue for slot.... +08:58:02 Sending to : +08:58:02 ============================================================================ +08:58:02 ============================================================================ +08:58:02 Slot Id : <164> +08:58:02 Transaction Type : RESPONSE +08:58:02 Received From : +08:58:02 ============================================================================ +08:58:02 FNo. Len. Field Value +08:58:02 ============================================================================ +08:58:02 [ 1] [ 4] [0810] +08:58:02 [ 7] [ 10] [0320015710] +08:58:02 [ 11] [ 6] [155526] +08:58:02 [ 39] [ 2] [00] +08:58:02 [ 70] [ 3] [301] +08:58:02 ============================================================================ +08:58:02 Calculate Source COMM Id = 2 +08:58:02 ============================================================================ +08:58:02 + + +waiting on router queue for slot.... +08:58:05 ============================================================================ +08:58:05 Slot Id : <172> +08:58:05 Transaction Type : REQUEST +08:58:05 Received From : +08:58:05 ============================================================================ +08:58:05 FNo. Len. Field Value +08:58:05 ============================================================================ +08:58:05 [ 1] [ 4] [0200] +08:58:05 [ 2] [ 16] [1808930500014303] +08:58:05 [ 3] [ 6] [010000] +08:58:05 [ 4] [ 12] [000100000000] +08:58:05 [ 7] [ 10] [0320085557] +08:58:05 [ 11] [ 6] [934296] +08:58:05 [ 12] [ 6] [085557] +08:58:05 [ 13] [ 4] [0320] +08:58:05 [ 15] [ 4] [0320] +08:58:05 [ 18] [ 4] [6011] +08:58:05 [ 19] [ 3] [418] +08:58:05 [ 22] [ 3] [021] +08:58:05 [ 25] [ 2] [01] +08:58:05 [ 28] [ 9] [D00002000] +08:58:05 [ 32] [ 6] [668899] +08:58:05 [ 35] [ 27] [1808930500014303=1803500022] +08:58:05 [ 37] [ 12] [507900844834] +08:58:05 [ 41] [ 8] [03015003] +08:58:05 [ 42] [ 15] [APT ] +08:58:05 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:58:05 [ 49] [ 3] [418] +08:58:05 [ 52] [ 16] [10FFC6C354F7AB45] +08:58:05 ============================================================================ +08:58:05 + + +waiting on router queue for slot.... +08:58:05 Sending to : +08:58:05 ============================================================================ +08:58:05 Sending to : +08:58:05 ============================================================================ +08:58:06 ============================================================================ +08:58:06 Slot Id : <172> +08:58:06 Transaction Type : REQUEST +08:58:06 Received From : +08:58:06 ============================================================================ +08:58:06 FNo. Len. Field Value +08:58:06 ============================================================================ +08:58:06 [ 1] [ 4] [0200] +08:58:06 [ 2] [ 16] [1808930500014303] +08:58:06 [ 3] [ 6] [010000] +08:58:06 [ 4] [ 12] [000100000000] +08:58:06 [ 7] [ 10] [0320085557] +08:58:06 [ 11] [ 6] [934296] +08:58:06 [ 12] [ 6] [085557] +08:58:06 [ 13] [ 4] [0320] +08:58:06 [ 15] [ 4] [0320] +08:58:06 [ 18] [ 4] [6011] +08:58:06 [ 19] [ 3] [418] +08:58:06 [ 22] [ 3] [021] +08:58:06 [ 25] [ 2] [01] +08:58:06 [ 28] [ 9] [D00002000] +08:58:06 [ 32] [ 6] [668899] +08:58:06 [ 35] [ 27] [1808930500014303=1803500022] +08:58:06 [ 37] [ 12] [507900844834] +08:58:06 [ 41] [ 8] [03015003] +08:58:06 [ 42] [ 15] [APT ] +08:58:06 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:58:06 [ 49] [ 3] [418] +08:58:06 [ 52] [ 16] [10FFC6C354F7AB45] +08:58:06 ============================================================================ +08:58:06 + + +waiting on router queue for slot.... +08:58:06 Sending to : +08:58:06 ============================================================================ +08:58:06 ============================================================================ +08:58:06 Slot Id : <172> +08:58:06 Transaction Type : REQUEST +08:58:06 Received From : +08:58:06 ============================================================================ +08:58:06 FNo. Len. Field Value +08:58:06 ============================================================================ +08:58:06 [ 1] [ 4] [0200] +08:58:06 [ 2] [ 16] [1808930500014303] +08:58:06 [ 3] [ 6] [010000] +08:58:06 [ 4] [ 12] [000100000000] +08:58:06 [ 7] [ 10] [0320085557] +08:58:06 [ 11] [ 6] [934296] +08:58:06 [ 12] [ 6] [085557] +08:58:06 [ 13] [ 4] [0320] +08:58:06 [ 15] [ 4] [0320] +08:58:06 [ 18] [ 4] [6011] +08:58:06 [ 19] [ 3] [418] +08:58:06 [ 22] [ 3] [021] +08:58:06 [ 25] [ 2] [01] +08:58:06 [ 28] [ 9] [D00002000] +08:58:06 [ 32] [ 6] [668899] +08:58:06 [ 35] [ 27] [1808930500014303=1803500022] +08:58:06 [ 37] [ 12] [507900844834] +08:58:06 [ 41] [ 8] [03015003] +08:58:06 [ 42] [ 15] [APT ] +08:58:06 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:58:06 [ 49] [ 3] [418] +08:58:06 [ 52] [ 16] [08F610331435960F] +08:58:06 ============================================================================ +08:58:06 + + +waiting on router queue for slot.... +08:58:06 Sending to : <2> +08:58:06 ============================================================================ +08:58:09 ============================================================================ +08:58:09 Slot Id : <172> +08:58:09 Transaction Type : RESPONSE +08:58:09 Received From : +08:58:09 ============================================================================ +08:58:09 FNo. Len. Field Value +08:58:09 ============================================================================ +08:58:09 [ 1] [ 4] [0210] +08:58:09 [ 2] [ 16] [1808930500014303] +08:58:09 [ 3] [ 6] [010000] +08:58:09 [ 4] [ 12] [000100000000] +08:58:09 [ 6] [ 12] [000100000000] +08:58:09 [ 7] [ 10] [0320085557] +08:58:09 [ 11] [ 6] [934296] +08:58:09 [ 12] [ 6] [085557] +08:58:09 [ 13] [ 4] [0320] +08:58:09 [ 18] [ 4] [6011] +08:58:09 [ 19] [ 3] [418] +08:58:09 [ 22] [ 3] [021] +08:58:09 [ 32] [ 6] [668899] +08:58:09 [ 35] [ 27] [1808930500014303=1803500022] +08:58:09 [ 37] [ 12] [507900844834] +08:58:09 [ 38] [ 6] [934296] +08:58:09 [ 39] [ 2] [51] +08:58:09 [ 41] [ 8] [03015003] +08:58:09 [ 49] [ 3] [418] +08:58:09 [ 52] [ 16] [08F610331435960F] +08:58:09 ============================================================================ +08:58:09 Sending to : +08:58:09 ============================================================================ +08:58:09 + + +waiting on router queue for slot.... +08:58:11 ============================================================================ +08:58:11 Slot Id : <172> +08:58:11 Transaction Type : RESPONSE +08:58:11 Received From : +08:58:11 ============================================================================ +08:58:11 FNo. Len. Field Value +08:58:11 ============================================================================ +08:58:11 [ 1] [ 4] [0210] +08:58:11 [ 2] [ 16] [1808930500014303] +08:58:11 [ 3] [ 6] [010000] +08:58:11 [ 4] [ 12] [000100000000] +08:58:11 [ 6] [ 12] [000100000000] +08:58:11 [ 7] [ 10] [0320085557] +08:58:11 [ 11] [ 6] [934296] +08:58:11 [ 12] [ 6] [085557] +08:58:11 [ 13] [ 4] [0320] +08:58:11 [ 18] [ 4] [6011] +08:58:11 [ 19] [ 3] [418] +08:58:11 [ 22] [ 3] [021] +08:58:11 [ 32] [ 6] [668899] +08:58:11 [ 35] [ 27] [1808930500014303=1803500022] +08:58:11 [ 37] [ 12] [507900844834] +08:58:11 [ 38] [ 6] [934296] +08:58:11 [ 39] [ 2] [51] +08:58:11 [ 41] [ 8] [03015003] +08:58:11 [ 49] [ 3] [418] +08:58:11 [ 52] [ 16] [08F610331435960F] +08:58:11 ============================================================================ +08:58:11 Calculate Source COMM Id = 4 +08:58:11 ============================================================================ +08:58:11 + + +waiting on router queue for slot.... +08:58:12 ============================================================================ +08:58:12 Slot Id : <148> +08:58:12 Transaction Type : REQUEST +08:58:12 Received From : +08:58:12 ============================================================================ +08:58:12 FNo. Len. Field Value +08:58:12 ============================================================================ +08:58:12 [ 1] [ 4] [0200] +08:58:12 [ 2] [ 16] [6213544001423281] +08:58:12 [ 3] [ 6] [010000] +08:58:12 [ 4] [ 12] [000070000000] +08:58:12 [ 7] [ 10] [0320085604] +08:58:12 [ 11] [ 6] [934300] +08:58:12 [ 12] [ 6] [085604] +08:58:12 [ 13] [ 4] [0320] +08:58:12 [ 15] [ 4] [0320] +08:58:12 [ 18] [ 4] [6011] +08:58:12 [ 19] [ 3] [418] +08:58:12 [ 22] [ 3] [021] +08:58:12 [ 25] [ 2] [01] +08:58:12 [ 28] [ 9] [D00002000] +08:58:12 [ 32] [ 6] [668899] +08:58:12 [ 35] [ 32] [6213544001423281=491212012328679] +08:58:12 [ 37] [ 12] [507901822358] +08:58:12 [ 41] [ 8] [03407003] +08:58:12 [ 42] [ 15] [APT ] +08:58:12 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +08:58:12 [ 49] [ 3] [418] +08:58:12 [ 52] [ 16] [3A25AEB16B5B49D7] +08:58:12 ============================================================================ +08:58:12 + + +waiting on router queue for slot.... +08:58:12 Sending to : +08:58:12 ============================================================================ +08:58:12 Sending to : +08:58:12 ============================================================================ +08:58:13 ============================================================================ +08:58:13 Slot Id : <148> +08:58:13 Transaction Type : REQUEST +08:58:13 Received From : +08:58:13 ============================================================================ +08:58:13 FNo. Len. Field Value +08:58:13 ============================================================================ +08:58:13 [ 1] [ 4] [0200] +08:58:13 [ 2] [ 16] [6213544001423281] +08:58:13 [ 3] [ 6] [010000] +08:58:13 [ 4] [ 12] [000070000000] +08:58:13 [ 7] [ 10] [0320085604] +08:58:13 [ 11] [ 6] [934300] +08:58:13 [ 12] [ 6] [085604] +08:58:13 [ 13] [ 4] [0320] +08:58:13 [ 15] [ 4] [0320] +08:58:13 [ 18] [ 4] [6011] +08:58:13 [ 19] [ 3] [418] +08:58:13 [ 22] [ 3] [021] +08:58:13 [ 25] [ 2] [01] +08:58:13 [ 28] [ 9] [D00002000] +08:58:13 [ 32] [ 6] [668899] +08:58:13 [ 35] [ 32] [6213544001423281=491212012328679] +08:58:13 [ 37] [ 12] [507901822358] +08:58:13 [ 41] [ 8] [03407003] +08:58:13 [ 42] [ 15] [APT ] +08:58:13 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +08:58:13 [ 49] [ 3] [418] +08:58:13 [ 52] [ 16] [3A25AEB16B5B49D7] +08:58:13 ============================================================================ +08:58:13 + + +waiting on router queue for slot.... +08:58:13 Sending to : +08:58:13 ============================================================================ +08:58:13 ============================================================================ +08:58:13 Slot Id : <148> +08:58:13 Transaction Type : REQUEST +08:58:13 Received From : +08:58:13 ============================================================================ +08:58:13 FNo. Len. Field Value +08:58:13 ============================================================================ +08:58:13 [ 1] [ 4] [0200] +08:58:13 [ 2] [ 16] [6213544001423281] +08:58:13 [ 3] [ 6] [010000] +08:58:13 [ 4] [ 12] [000070000000] +08:58:13 [ 7] [ 10] [0320085604] +08:58:13 [ 11] [ 6] [934300] +08:58:13 [ 12] [ 6] [085604] +08:58:13 [ 13] [ 4] [0320] +08:58:13 [ 15] [ 4] [0320] +08:58:13 [ 18] [ 4] [6011] +08:58:13 [ 19] [ 3] [418] +08:58:13 [ 22] [ 3] [021] +08:58:13 [ 25] [ 2] [01] +08:58:13 [ 28] [ 9] [D00002000] +08:58:13 [ 32] [ 6] [668899] +08:58:13 [ 35] [ 32] [6213544001423281=491212012328679] +08:58:13 [ 37] [ 12] [507901822358] +08:58:13 [ 41] [ 8] [03407003] +08:58:13 [ 42] [ 15] [APT ] +08:58:13 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +08:58:13 [ 49] [ 3] [418] +08:58:13 [ 52] [ 16] [263D10DAB9BD928F] +08:58:13 ============================================================================ +08:58:13 + + +waiting on router queue for slot.... +08:58:13 Sending to : <0> +08:58:13 ============================================================================ +08:58:13 ============================================================================ +08:58:13 Slot Id : <148> +08:58:13 Transaction Type : RESPONSE +08:58:13 Received From : +08:58:13 ============================================================================ +08:58:13 FNo. Len. Field Value +08:58:13 ============================================================================ +08:58:13 [ 1] [ 4] [0210] +08:58:13 [ 2] [ 16] [6213544001423281] +08:58:13 [ 3] [ 6] [010000] +08:58:13 [ 4] [ 12] [000070000000] +08:58:13 [ 7] [ 10] [0320085604] +08:58:13 [ 11] [ 6] [934300] +08:58:13 [ 12] [ 6] [085604] +08:58:13 [ 13] [ 4] [0320] +08:58:13 [ 15] [ 4] [0320] +08:58:13 [ 18] [ 4] [6011] +08:58:13 [ 19] [ 3] [418] +08:58:13 [ 32] [ 6] [668899] +08:58:13 [ 35] [ 32] [6213544001423281=491212012328679] +08:58:13 [ 37] [ 12] [507901822358] +08:58:13 [ 38] [ 6] [405879] +08:58:13 [ 39] [ 2] [00] +08:58:13 [ 41] [ 8] [03407003] +08:58:13 [ 49] [ 3] [418] +08:58:13 [ 54] [ 40] [0001418C0000374163250002418C000037416325] +08:58:13 ============================================================================ +08:58:13 Sending to : +08:58:13 ============================================================================ +08:58:13 + + +waiting on router queue for slot.... +08:58:14 ============================================================================ +08:58:14 Slot Id : <186> +08:58:14 Transaction Type : REQUEST +08:58:14 Received From : +08:58:14 ============================================================================ +08:58:14 FNo. Len. Field Value +08:58:14 ============================================================================ +08:58:14 [ 1] [ 4] [0200] +08:58:14 [ 2] [ 16] [1808930400026464] +08:58:14 [ 3] [ 6] [301000] +08:58:14 [ 4] [ 12] [000000000000] +08:58:14 [ 7] [ 10] [0320085811] +08:58:14 [ 11] [ 6] [691656] +08:58:14 [ 12] [ 6] [085811] +08:58:14 [ 13] [ 4] [0320] +08:58:14 [ 15] [ 4] [0320] +08:58:14 [ 18] [ 4] [6011] +08:58:14 [ 22] [ 3] [900] +08:58:14 [ 25] [ 2] [02] +08:58:14 [ 28] [ 9] [D00000000] +08:58:14 [ 32] [ 6] [621354] +08:58:14 [ 35] [ 27] [1808930400026464=1803500966] +08:58:14 [ 37] [ 12] [507904965451] +08:58:14 [ 41] [ 8] [15001100] +08:58:14 [ 42] [ 15] [NATIVE ] +08:58:14 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +08:58:14 [ 49] [ 3] [418] +08:58:14 [ 52] [ 16] [4962B685B3220846] +08:58:14 ============================================================================ +08:58:14 + + +waiting on router queue for slot.... +08:58:14 Sending to : +08:58:14 ============================================================================ +08:58:14 Sending to : +08:58:14 ============================================================================ +08:58:15 ============================================================================ +08:58:15 Slot Id : <186> +08:58:15 Transaction Type : REQUEST +08:58:15 Received From : +08:58:15 ============================================================================ +08:58:15 FNo. Len. Field Value +08:58:15 ============================================================================ +08:58:15 [ 1] [ 4] [0200] +08:58:15 [ 2] [ 16] [1808930400026464] +08:58:15 [ 3] [ 6] [301000] +08:58:15 [ 4] [ 12] [000000000000] +08:58:15 [ 7] [ 10] [0320085811] +08:58:15 [ 11] [ 6] [691656] +08:58:15 [ 12] [ 6] [085811] +08:58:15 [ 13] [ 4] [0320] +08:58:15 [ 15] [ 4] [0320] +08:58:15 [ 18] [ 4] [6011] +08:58:15 [ 22] [ 3] [900] +08:58:15 [ 25] [ 2] [02] +08:58:15 [ 28] [ 9] [D00000000] +08:58:15 [ 32] [ 6] [621354] +08:58:15 [ 35] [ 27] [1808930400026464=1803500966] +08:58:15 [ 37] [ 12] [507904965451] +08:58:15 [ 41] [ 8] [15001100] +08:58:15 [ 42] [ 15] [NATIVE ] +08:58:15 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +08:58:15 [ 49] [ 3] [418] +08:58:15 [ 52] [ 16] [4962B685B3220846] +08:58:15 ============================================================================ +08:58:15 + + +waiting on router queue for slot.... +08:58:15 Sending to : +08:58:15 ============================================================================ +08:58:15 ============================================================================ +08:58:15 Slot Id : <186> +08:58:15 Transaction Type : REQUEST +08:58:15 Received From : +08:58:15 ============================================================================ +08:58:15 FNo. Len. Field Value +08:58:15 ============================================================================ +08:58:15 [ 1] [ 4] [0200] +08:58:15 [ 2] [ 16] [1808930400026464] +08:58:15 [ 3] [ 6] [301000] +08:58:15 [ 4] [ 12] [000000000000] +08:58:15 [ 7] [ 10] [0320085811] +08:58:15 [ 11] [ 6] [691656] +08:58:15 [ 12] [ 6] [085811] +08:58:15 [ 13] [ 4] [0320] +08:58:15 [ 15] [ 4] [0320] +08:58:15 [ 18] [ 4] [6011] +08:58:15 [ 22] [ 3] [900] +08:58:15 [ 25] [ 2] [02] +08:58:15 [ 28] [ 9] [D00000000] +08:58:15 [ 32] [ 6] [621354] +08:58:15 [ 35] [ 27] [1808930400026464=1803500966] +08:58:15 [ 37] [ 12] [507904965451] +08:58:15 [ 41] [ 8] [15001100] +08:58:15 [ 42] [ 15] [NATIVE ] +08:58:15 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +08:58:15 [ 49] [ 3] [418] +08:58:15 [ 52] [ 16] [B40407321E75C225] +08:58:15 ============================================================================ +08:58:15 + + +waiting on router queue for slot.... +08:58:15 Sending to : <2> +08:58:15 ============================================================================ +08:58:15 ============================================================================ +08:58:15 Slot Id : <148> +08:58:15 Transaction Type : RESPONSE +08:58:15 Received From : +08:58:15 ============================================================================ +08:58:15 FNo. Len. Field Value +08:58:15 ============================================================================ +08:58:15 [ 1] [ 4] [0210] +08:58:15 [ 2] [ 16] [6213544001423281] +08:58:15 [ 3] [ 6] [010000] +08:58:15 [ 4] [ 12] [000070000000] +08:58:15 [ 7] [ 10] [0320085604] +08:58:15 [ 11] [ 6] [934300] +08:58:15 [ 12] [ 6] [085604] +08:58:15 [ 13] [ 4] [0320] +08:58:15 [ 15] [ 4] [0320] +08:58:15 [ 18] [ 4] [6011] +08:58:15 [ 19] [ 3] [418] +08:58:15 [ 32] [ 6] [668899] +08:58:15 [ 35] [ 32] [6213544001423281=491212012328679] +08:58:15 [ 37] [ 12] [507901822358] +08:58:15 [ 38] [ 6] [405879] +08:58:15 [ 39] [ 2] [00] +08:58:15 [ 41] [ 8] [03407003] +08:58:15 [ 49] [ 3] [418] +08:58:15 [ 54] [ 40] [0001418C0000374163250002418C000037416325] +08:58:15 ============================================================================ +08:58:15 Calculate Source COMM Id = 4 +08:58:15 ============================================================================ +08:58:15 + + +waiting on router queue for slot.... +08:58:18 ============================================================================ +08:58:18 Slot Id : <186> +08:58:18 Transaction Type : RESPONSE +08:58:18 Received From : +08:58:18 ============================================================================ +08:58:18 FNo. Len. Field Value +08:58:18 ============================================================================ +08:58:18 [ 1] [ 4] [0210] +08:58:18 [ 2] [ 16] [1808930400026464] +08:58:18 [ 3] [ 6] [301000] +08:58:18 [ 7] [ 10] [0320085811] +08:58:18 [ 11] [ 6] [691656] +08:58:18 [ 12] [ 6] [085811] +08:58:18 [ 13] [ 4] [0320] +08:58:18 [ 14] [ 4] [1803] +08:58:18 [ 19] [ 3] [418] +08:58:18 [ 32] [ 6] [621354] +08:58:18 [ 37] [ 12] [507904965451] +08:58:18 [ 39] [ 2] [75] +08:58:18 [ 41] [ 8] [15001100] +08:58:18 [ 49] [ 3] [418] +08:58:18 [ 52] [ 16] [B40407321E75C225] +08:58:18 ============================================================================ +08:58:18 Sending to : +08:58:18 ============================================================================ +08:58:18 + + +waiting on router queue for slot.... +08:58:19 ============================================================================ +08:58:19 Slot Id : <186> +08:58:19 Transaction Type : RESPONSE +08:58:19 Received From : +08:58:19 ============================================================================ +08:58:19 FNo. Len. Field Value +08:58:19 ============================================================================ +08:58:19 [ 1] [ 4] [0210] +08:58:19 [ 2] [ 16] [1808930400026464] +08:58:19 [ 3] [ 6] [301000] +08:58:19 [ 7] [ 10] [0320085811] +08:58:19 [ 11] [ 6] [691656] +08:58:19 [ 12] [ 6] [085811] +08:58:19 [ 13] [ 4] [0320] +08:58:19 [ 14] [ 4] [1803] +08:58:19 [ 19] [ 3] [418] +08:58:19 [ 32] [ 6] [621354] +08:58:19 [ 37] [ 12] [507904965451] +08:58:19 [ 39] [ 2] [75] +08:58:19 [ 41] [ 8] [15001100] +08:58:19 [ 49] [ 3] [418] +08:58:19 [ 52] [ 16] [B40407321E75C225] +08:58:19 ============================================================================ +08:58:19 Calculate Source COMM Id = 0 +08:58:19 ============================================================================ +08:58:19 + + +waiting on router queue for slot.... +08:58:29 ============================================================================ +08:58:29 Slot Id : <182> +08:58:29 Transaction Type : REQUEST +08:58:29 Received From : +08:58:29 ============================================================================ +08:58:29 FNo. Len. Field Value +08:58:29 ============================================================================ +08:58:29 [ 1] [ 4] [0200] +08:58:29 [ 2] [ 16] [1808930800002636] +08:58:29 [ 3] [ 6] [011000] +08:58:29 [ 4] [ 12] [000100000000] +08:58:29 [ 7] [ 10] [0320090616] +08:58:29 [ 11] [ 6] [001951] +08:58:29 [ 12] [ 6] [090616] +08:58:29 [ 13] [ 4] [0320] +08:58:29 [ 14] [ 4] [1803] +08:58:29 [ 15] [ 4] [0320] +08:58:29 [ 18] [ 4] [6011] +08:58:29 [ 22] [ 3] [900] +08:58:29 [ 25] [ 2] [02] +08:58:29 [ 28] [ 9] [D00002000] +08:58:29 [ 32] [ 6] [220699] +08:58:29 [ 35] [ 27] [1808930800002636=1803500438] +08:58:29 [ 37] [ 12] [507900296942] +08:58:29 [ 41] [ 8] [01001600] +08:58:29 [ 42] [ 15] [APTRA ] +08:58:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:58:29 [ 49] [ 3] [418] +08:58:29 [ 52] [ 16] [278C6EBAB5FA4D3D] +08:58:29 ============================================================================ +08:58:29 + + +waiting on router queue for slot.... +08:58:29 Sending to : +08:58:29 ============================================================================ +08:58:29 Sending to : +08:58:29 ============================================================================ +08:58:29 ============================================================================ +08:58:29 Slot Id : <126> +08:58:29 Transaction Type : REQUEST +08:58:29 Received From : +08:58:29 ============================================================================ +08:58:29 FNo. Len. Field Value +08:58:29 ============================================================================ +08:58:29 [ 1] [ 4] [0800] +08:58:29 [ 7] [ 10] [0320015737] +08:58:29 [ 11] [ 6] [155527] +08:58:29 [ 70] [ 3] [301] +08:58:29 ============================================================================ +08:58:29 + + +waiting on router queue for slot.... +08:58:29 Sending to : +08:58:29 ============================================================================ +08:58:29 ============================================================================ +08:58:29 Slot Id : <126> +08:58:29 Transaction Type : RESPONSE +08:58:29 Received From : +08:58:29 ============================================================================ +08:58:29 FNo. Len. Field Value +08:58:29 ============================================================================ +08:58:29 [ 1] [ 4] [0810] +08:58:29 [ 7] [ 10] [0320015737] +08:58:29 [ 11] [ 6] [155527] +08:58:29 [ 39] [ 2] [00] +08:58:29 [ 70] [ 3] [301] +08:58:29 ============================================================================ +08:58:29 Calculate Source COMM Id = 2 +08:58:29 ============================================================================ +08:58:29 + + +waiting on router queue for slot.... +08:58:29 ============================================================================ +08:58:29 Slot Id : <182> +08:58:29 Transaction Type : REQUEST +08:58:29 Received From : +08:58:29 ============================================================================ +08:58:29 FNo. Len. Field Value +08:58:29 ============================================================================ +08:58:29 [ 1] [ 4] [0200] +08:58:29 [ 2] [ 16] [1808930800002636] +08:58:29 [ 3] [ 6] [011000] +08:58:29 [ 4] [ 12] [000100000000] +08:58:29 [ 7] [ 10] [0320090616] +08:58:29 [ 11] [ 6] [001951] +08:58:29 [ 12] [ 6] [090616] +08:58:29 [ 13] [ 4] [0320] +08:58:29 [ 14] [ 4] [1803] +08:58:29 [ 15] [ 4] [0320] +08:58:29 [ 18] [ 4] [6011] +08:58:29 [ 22] [ 3] [900] +08:58:29 [ 25] [ 2] [02] +08:58:29 [ 28] [ 9] [D00002000] +08:58:29 [ 32] [ 6] [220699] +08:58:29 [ 35] [ 27] [1808930800002636=1803500438] +08:58:29 [ 37] [ 12] [507900296942] +08:58:29 [ 41] [ 8] [01001600] +08:58:29 [ 42] [ 15] [APTRA ] +08:58:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:58:29 [ 49] [ 3] [418] +08:58:29 [ 52] [ 16] [278C6EBAB5FA4D3D] +08:58:29 ============================================================================ +08:58:29 + + +waiting on router queue for slot.... +08:58:29 Sending to : +08:58:29 ============================================================================ +08:58:29 ============================================================================ +08:58:29 Slot Id : <182> +08:58:29 Transaction Type : REQUEST +08:58:29 Received From : +08:58:29 ============================================================================ +08:58:29 FNo. Len. Field Value +08:58:29 ============================================================================ +08:58:29 [ 1] [ 4] [0200] +08:58:29 [ 2] [ 16] [1808930800002636] +08:58:29 [ 3] [ 6] [011000] +08:58:29 [ 4] [ 12] [000100000000] +08:58:29 [ 7] [ 10] [0320090616] +08:58:29 [ 11] [ 6] [001951] +08:58:29 [ 12] [ 6] [090616] +08:58:29 [ 13] [ 4] [0320] +08:58:29 [ 14] [ 4] [1803] +08:58:29 [ 15] [ 4] [0320] +08:58:29 [ 18] [ 4] [6011] +08:58:29 [ 22] [ 3] [900] +08:58:29 [ 25] [ 2] [02] +08:58:29 [ 28] [ 9] [D00002000] +08:58:29 [ 32] [ 6] [220699] +08:58:29 [ 35] [ 27] [1808930800002636=1803500438] +08:58:29 [ 37] [ 12] [507900296942] +08:58:29 [ 41] [ 8] [01001600] +08:58:29 [ 42] [ 15] [APTRA ] +08:58:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +08:58:29 [ 49] [ 3] [418] +08:58:29 [ 52] [ 16] [D3A971460B258AA6] +08:58:29 ============================================================================ +08:58:29 + + +waiting on router queue for slot.... +08:58:29 Sending to : <2> +08:58:29 ============================================================================ +08:58:31 ============================================================================ +08:58:31 Slot Id : <171> +08:58:31 Transaction Type : REQUEST +08:58:31 Received From : +08:58:31 ============================================================================ +08:58:31 FNo. Len. Field Value +08:58:31 ============================================================================ +08:58:31 [ 1] [ 4] [0800] +08:58:31 [ 7] [ 10] [0320161021] +08:58:31 [ 11] [ 6] [091021] +08:58:31 [ 37] [ 12] [57909091021] +08:58:31 [ 70] [ 3] [301] +08:58:31 ============================================================================ +08:58:31 + + +waiting on router queue for slot.... +08:58:31 Sending to : +08:58:31 ============================================================================ +08:58:31 ============================================================================ +08:58:31 Slot Id : <171> +08:58:31 Transaction Type : RESPONSE +08:58:31 Received From : +08:58:31 ============================================================================ +08:58:31 FNo. Len. Field Value +08:58:31 ============================================================================ +08:58:31 [ 1] [ 4] [0810] +08:58:31 [ 7] [ 10] [0320161021] +08:58:31 [ 11] [ 6] [091021] +08:58:31 [ 37] [ 12] [579090910210] +08:58:31 [ 39] [ 2] [00] +08:58:31 [ 70] [ 3] [810] +08:58:31 ============================================================================ +08:58:31 Calculate Source COMM Id = 6 +08:58:31 ============================================================================ +08:58:31 + + +waiting on router queue for slot.... +08:58:35 ============================================================================ +08:58:35 Slot Id : <119> +08:58:35 Transaction Type : REQUEST +08:58:35 Received From : +08:58:35 ============================================================================ +08:58:35 FNo. Len. Field Value +08:58:35 ============================================================================ +08:58:35 [ 1] [ 4] [0200] +08:58:35 [ 2] [ 16] [1808930500014303] +08:58:35 [ 3] [ 6] [010000] +08:58:35 [ 4] [ 12] [000100000000] +08:58:35 [ 7] [ 10] [0320085626] +08:58:35 [ 11] [ 6] [934311] +08:58:35 [ 12] [ 6] [085626] +08:58:35 [ 13] [ 4] [0320] +08:58:35 [ 15] [ 4] [0320] +08:58:35 [ 18] [ 4] [6011] +08:58:35 [ 19] [ 3] [418] +08:58:35 [ 22] [ 3] [021] +08:58:35 [ 25] [ 2] [01] +08:58:35 [ 28] [ 9] [D00002000] +08:58:35 [ 32] [ 6] [668899] +08:58:35 [ 35] [ 27] [1808930500014303=1803500022] +08:58:35 [ 37] [ 12] [507900844835] +08:58:35 [ 41] [ 8] [03015003] +08:58:35 [ 42] [ 15] [APT ] +08:58:35 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:58:35 [ 49] [ 3] [418] +08:58:35 [ 52] [ 16] [10FFC6C354F7AB45] +08:58:35 ============================================================================ +08:58:35 + + +waiting on router queue for slot.... +08:58:35 Sending to : +08:58:35 ============================================================================ +08:58:35 Sending to : +08:58:35 ============================================================================ +08:58:35 ============================================================================ +08:58:35 Slot Id : <119> +08:58:35 Transaction Type : REQUEST +08:58:35 Received From : +08:58:35 ============================================================================ +08:58:35 FNo. Len. Field Value +08:58:35 ============================================================================ +08:58:35 [ 1] [ 4] [0200] +08:58:35 [ 2] [ 16] [1808930500014303] +08:58:35 [ 3] [ 6] [010000] +08:58:35 [ 4] [ 12] [000100000000] +08:58:35 [ 7] [ 10] [0320085626] +08:58:35 [ 11] [ 6] [934311] +08:58:35 [ 12] [ 6] [085626] +08:58:35 [ 13] [ 4] [0320] +08:58:35 [ 15] [ 4] [0320] +08:58:35 [ 18] [ 4] [6011] +08:58:35 [ 19] [ 3] [418] +08:58:35 [ 22] [ 3] [021] +08:58:35 [ 25] [ 2] [01] +08:58:35 [ 28] [ 9] [D00002000] +08:58:35 [ 32] [ 6] [668899] +08:58:35 [ 35] [ 27] [1808930500014303=1803500022] +08:58:35 [ 37] [ 12] [507900844835] +08:58:35 [ 41] [ 8] [03015003] +08:58:35 [ 42] [ 15] [APT ] +08:58:35 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:58:35 [ 49] [ 3] [418] +08:58:35 [ 52] [ 16] [10FFC6C354F7AB45] +08:58:35 ============================================================================ +08:58:35 + + +waiting on router queue for slot.... +08:58:35 Sending to : +08:58:35 ============================================================================ +08:58:35 ============================================================================ +08:58:35 Slot Id : <119> +08:58:35 Transaction Type : REQUEST +08:58:35 Received From : +08:58:35 ============================================================================ +08:58:35 FNo. Len. Field Value +08:58:35 ============================================================================ +08:58:35 [ 1] [ 4] [0200] +08:58:35 [ 2] [ 16] [1808930500014303] +08:58:35 [ 3] [ 6] [010000] +08:58:35 [ 4] [ 12] [000100000000] +08:58:35 [ 7] [ 10] [0320085626] +08:58:35 [ 11] [ 6] [934311] +08:58:35 [ 12] [ 6] [085626] +08:58:35 [ 13] [ 4] [0320] +08:58:35 [ 15] [ 4] [0320] +08:58:35 [ 18] [ 4] [6011] +08:58:35 [ 19] [ 3] [418] +08:58:35 [ 22] [ 3] [021] +08:58:35 [ 25] [ 2] [01] +08:58:35 [ 28] [ 9] [D00002000] +08:58:35 [ 32] [ 6] [668899] +08:58:35 [ 35] [ 27] [1808930500014303=1803500022] +08:58:35 [ 37] [ 12] [507900844835] +08:58:35 [ 41] [ 8] [03015003] +08:58:35 [ 42] [ 15] [APT ] +08:58:35 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:58:35 [ 49] [ 3] [418] +08:58:35 [ 52] [ 16] [08F610331435960F] +08:58:35 ============================================================================ +08:58:35 + + +waiting on router queue for slot.... +08:58:35 Sending to : <2> +08:58:35 ============================================================================ +08:58:40 ============================================================================ +08:58:40 Slot Id : <182> +08:58:40 Transaction Type : RESPONSE +08:58:40 Received From : +08:58:40 ============================================================================ +08:58:40 FNo. Len. Field Value +08:58:40 ============================================================================ +08:58:40 [ 1] [ 4] [0210] +08:58:40 [ 2] [ 16] [1808930800002636] +08:58:40 [ 3] [ 6] [011000] +08:58:40 [ 4] [ 12] [000100000000] +08:58:40 [ 6] [ 12] [000100000000] +08:58:40 [ 7] [ 10] [0320090616] +08:58:40 [ 11] [ 6] [001951] +08:58:40 [ 12] [ 6] [090616] +08:58:40 [ 13] [ 4] [0320] +08:58:40 [ 14] [ 4] [1803] +08:58:40 [ 18] [ 4] [6011] +08:58:40 [ 19] [ 3] [418] +08:58:40 [ 22] [ 3] [021] +08:58:40 [ 32] [ 6] [220699] +08:58:40 [ 35] [ 27] [1808930800002636=1803500438] +08:58:40 [ 37] [ 12] [507900296942] +08:58:40 [ 38] [ 6] [001951] +08:58:40 [ 39] [ 2] [00] +08:58:40 [ 41] [ 8] [01001600] +08:58:40 [ 49] [ 3] [418] +08:58:40 [ 52] [ 16] [D3A971460B258AA6] +08:58:40 [ 54] [ 20] [1001418C000636944300] +08:58:40 ============================================================================ +08:58:40 Sending to : +08:58:40 ============================================================================ +08:58:40 + + +waiting on router queue for slot.... +08:58:42 ============================================================================ +08:58:42 Slot Id : <182> +08:58:42 Transaction Type : RESPONSE +08:58:42 Received From : +08:58:42 ============================================================================ +08:58:42 FNo. Len. Field Value +08:58:42 ============================================================================ +08:58:42 [ 1] [ 4] [0210] +08:58:42 [ 2] [ 16] [1808930800002636] +08:58:42 [ 3] [ 6] [011000] +08:58:42 [ 4] [ 12] [000100000000] +08:58:42 [ 6] [ 12] [000100000000] +08:58:42 [ 7] [ 10] [0320090616] +08:58:42 [ 11] [ 6] [001951] +08:58:42 [ 12] [ 6] [090616] +08:58:42 [ 13] [ 4] [0320] +08:58:42 [ 14] [ 4] [1803] +08:58:42 [ 18] [ 4] [6011] +08:58:42 [ 19] [ 3] [418] +08:58:42 [ 22] [ 3] [021] +08:58:42 [ 32] [ 6] [220699] +08:58:42 [ 35] [ 27] [1808930800002636=1803500438] +08:58:42 [ 37] [ 12] [507900296942] +08:58:42 [ 38] [ 6] [001951] +08:58:42 [ 39] [ 2] [00] +08:58:42 [ 41] [ 8] [01001600] +08:58:42 [ 49] [ 3] [418] +08:58:42 [ 52] [ 16] [D3A971460B258AA6] +08:58:42 [ 54] [ 20] [1001418C000636944300] +08:58:42 ============================================================================ +08:58:42 Calculate Source COMM Id = 1 +08:58:42 ============================================================================ +08:58:42 + + +waiting on router queue for slot.... +08:58:42 ============================================================================ +08:58:42 Slot Id : <119> +08:58:42 Transaction Type : RESPONSE +08:58:42 Received From : +08:58:42 ============================================================================ +08:58:42 FNo. Len. Field Value +08:58:42 ============================================================================ +08:58:42 [ 1] [ 4] [0210] +08:58:42 [ 2] [ 16] [1808930500014303] +08:58:42 [ 3] [ 6] [010000] +08:58:42 [ 4] [ 12] [000100000000] +08:58:42 [ 6] [ 12] [000100000000] +08:58:42 [ 7] [ 10] [0320085626] +08:58:42 [ 11] [ 6] [934311] +08:58:42 [ 12] [ 6] [085626] +08:58:42 [ 13] [ 4] [0320] +08:58:42 [ 18] [ 4] [6011] +08:58:42 [ 19] [ 3] [418] +08:58:42 [ 22] [ 3] [021] +08:58:42 [ 32] [ 6] [668899] +08:58:42 [ 35] [ 27] [1808930500014303=1803500022] +08:58:42 [ 37] [ 12] [507900844835] +08:58:42 [ 38] [ 6] [934311] +08:58:42 [ 39] [ 2] [51] +08:58:42 [ 41] [ 8] [03015003] +08:58:42 [ 49] [ 3] [418] +08:58:42 [ 52] [ 16] [08F610331435960F] +08:58:42 ============================================================================ +08:58:42 Sending to : +08:58:42 ============================================================================ +08:58:42 + + +waiting on router queue for slot.... +08:58:43 ============================================================================ +08:58:43 Slot Id : <119> +08:58:43 Transaction Type : RESPONSE +08:58:43 Received From : +08:58:43 ============================================================================ +08:58:43 FNo. Len. Field Value +08:58:43 ============================================================================ +08:58:43 [ 1] [ 4] [0210] +08:58:43 [ 2] [ 16] [1808930500014303] +08:58:43 [ 3] [ 6] [010000] +08:58:43 [ 4] [ 12] [000100000000] +08:58:43 [ 6] [ 12] [000100000000] +08:58:43 [ 7] [ 10] [0320085626] +08:58:43 [ 11] [ 6] [934311] +08:58:43 [ 12] [ 6] [085626] +08:58:43 [ 13] [ 4] [0320] +08:58:43 [ 18] [ 4] [6011] +08:58:43 [ 19] [ 3] [418] +08:58:43 [ 22] [ 3] [021] +08:58:43 [ 32] [ 6] [668899] +08:58:43 [ 35] [ 27] [1808930500014303=1803500022] +08:58:43 [ 37] [ 12] [507900844835] +08:58:43 [ 38] [ 6] [934311] +08:58:43 [ 39] [ 2] [51] +08:58:43 [ 41] [ 8] [03015003] +08:58:43 [ 49] [ 3] [418] +08:58:43 [ 52] [ 16] [08F610331435960F] +08:58:43 ============================================================================ +08:58:43 Calculate Source COMM Id = 4 +08:58:43 ============================================================================ +08:58:43 + + +waiting on router queue for slot.... +08:58:50 ============================================================================ +08:58:50 Slot Id : <176> +08:58:50 Transaction Type : REQUEST +08:58:50 Received From : +08:58:50 ============================================================================ +08:58:50 FNo. Len. Field Value +08:58:50 ============================================================================ +08:58:50 [ 1] [ 4] [0800] +08:58:50 [ 7] [ 10] [0320015758] +08:58:50 [ 11] [ 6] [155528] +08:58:50 [ 70] [ 3] [301] +08:58:50 ============================================================================ +08:58:50 + + +waiting on router queue for slot.... +08:58:50 Sending to : +08:58:50 ============================================================================ +08:58:50 ============================================================================ +08:58:50 Slot Id : <176> +08:58:50 Transaction Type : RESPONSE +08:58:50 Received From : +08:58:50 ============================================================================ +08:58:50 FNo. Len. Field Value +08:58:50 ============================================================================ +08:58:50 [ 1] [ 4] [0810] +08:58:50 [ 7] [ 10] [0320015758] +08:58:50 [ 11] [ 6] [155528] +08:58:50 [ 39] [ 2] [00] +08:58:50 [ 70] [ 3] [301] +08:58:50 ============================================================================ +08:58:50 Calculate Source COMM Id = 2 +08:58:50 ============================================================================ +08:58:50 + + +waiting on router queue for slot.... +08:58:58 ============================================================================ +08:58:58 Slot Id : <139> +08:58:58 Transaction Type : REQUEST +08:58:58 Received From : +08:58:58 ============================================================================ +08:58:58 FNo. Len. Field Value +08:58:58 ============================================================================ +08:58:58 [ 1] [ 4] [0800] +08:58:58 [ 2] [ 5] [02531] +08:58:58 [ 3] [ 6] [579088] +08:58:58 [ 7] [ 10] [0320015858] +08:58:58 [ 11] [ 6] [806933] +08:58:58 [ 15] [ 10] [0320015858] +08:58:58 [ 37] [ 11] [57908806933] +08:58:58 [ 70] [ 3] [001] +08:58:58 ============================================================================ +08:58:58 + + +waiting on router queue for slot.... +08:58:58 ============================================================================ +08:58:58 Slot Id : <139> +08:58:58 Transaction Type : RESPONSE +08:58:58 Received From : +08:58:58 ============================================================================ +08:58:58 FNo. Len. Field Value +08:58:58 ============================================================================ +08:58:58 [ 1] [ 4] [0810] +08:58:58 [ 7] [ 10] [0320015858] +08:58:58 [ 11] [ 6] [806933] +08:58:58 [ 15] [ 4] [0320] +08:58:58 [ 37] [ 12] [57908806933] +08:58:58 [ 39] [ 2] [00] +08:58:58 [ 70] [ 3] [001] +08:58:58 ============================================================================ +08:58:58 Sending to : +08:58:58 ============================================================================ +08:58:58 + + +waiting on router queue for slot.... +08:59:03 ============================================================================ +08:59:03 Slot Id : <202> +08:59:03 Transaction Type : REQUEST +08:59:03 Received From : +08:59:03 ============================================================================ +08:59:03 FNo. Len. Field Value +08:59:03 ============================================================================ +08:59:03 [ 1] [ 4] [0800] +08:59:03 [ 7] [ 10] [0320015809] +08:59:03 [ 11] [ 6] [155529] +08:59:03 [ 70] [ 3] [301] +08:59:03 ============================================================================ +08:59:03 + + +waiting on router queue for slot.... +08:59:03 Sending to : +08:59:03 ============================================================================ +08:59:03 ============================================================================ +08:59:03 Slot Id : <202> +08:59:03 Transaction Type : RESPONSE +08:59:03 Received From : +08:59:03 ============================================================================ +08:59:03 FNo. Len. Field Value +08:59:03 ============================================================================ +08:59:03 [ 1] [ 4] [0810] +08:59:03 [ 7] [ 10] [0320015809] +08:59:03 [ 11] [ 6] [155529] +08:59:03 [ 39] [ 2] [00] +08:59:03 [ 70] [ 3] [301] +08:59:03 ============================================================================ +08:59:03 Calculate Source COMM Id = 2 +08:59:03 ============================================================================ +08:59:03 + + +waiting on router queue for slot.... +08:59:17 ============================================================================ +08:59:17 Slot Id : <187> +08:59:17 Transaction Type : REQUEST +08:59:17 Received From : +08:59:17 ============================================================================ +08:59:17 FNo. Len. Field Value +08:59:17 ============================================================================ +08:59:17 [ 1] [ 4] [0800] +08:59:17 [ 7] [ 10] [0320015825] +08:59:17 [ 11] [ 6] [155530] +08:59:17 [ 70] [ 3] [301] +08:59:17 ============================================================================ +08:59:17 + + +waiting on router queue for slot.... +08:59:17 Sending to : +08:59:17 ============================================================================ +08:59:17 ============================================================================ +08:59:17 Slot Id : <187> +08:59:17 Transaction Type : RESPONSE +08:59:17 Received From : +08:59:17 ============================================================================ +08:59:17 FNo. Len. Field Value +08:59:17 ============================================================================ +08:59:17 [ 1] [ 4] [0810] +08:59:17 [ 7] [ 10] [0320015825] +08:59:17 [ 11] [ 6] [155530] +08:59:17 [ 39] [ 2] [00] +08:59:17 [ 70] [ 3] [301] +08:59:17 ============================================================================ +08:59:17 Calculate Source COMM Id = 2 +08:59:17 ============================================================================ +08:59:17 + + +waiting on router queue for slot.... +08:59:30 ============================================================================ +08:59:30 Slot Id : <156> +08:59:30 Transaction Type : REQUEST +08:59:30 Received From : +08:59:30 ============================================================================ +08:59:30 FNo. Len. Field Value +08:59:30 ============================================================================ +08:59:30 [ 1] [ 4] [0200] +08:59:30 [ 2] [ 16] [1808930500014303] +08:59:30 [ 3] [ 6] [010000] +08:59:30 [ 4] [ 12] [000100000000] +08:59:30 [ 7] [ 10] [0320085722] +08:59:30 [ 11] [ 6] [934352] +08:59:30 [ 12] [ 6] [085722] +08:59:30 [ 13] [ 4] [0320] +08:59:30 [ 15] [ 4] [0320] +08:59:30 [ 18] [ 4] [6011] +08:59:30 [ 19] [ 3] [418] +08:59:30 [ 22] [ 3] [021] +08:59:30 [ 25] [ 2] [01] +08:59:30 [ 28] [ 9] [D00002000] +08:59:30 [ 32] [ 6] [668899] +08:59:30 [ 35] [ 27] [1808930500014303=1803500022] +08:59:30 [ 37] [ 12] [507900844836] +08:59:30 [ 41] [ 8] [03015003] +08:59:30 [ 42] [ 15] [APT ] +08:59:30 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:59:30 [ 49] [ 3] [418] +08:59:30 [ 52] [ 16] [10FFC6C354F7AB45] +08:59:30 ============================================================================ +08:59:30 + + +waiting on router queue for slot.... +08:59:30 Sending to : +08:59:30 ============================================================================ +08:59:30 Sending to : +08:59:30 ============================================================================ +08:59:31 ============================================================================ +08:59:31 Slot Id : <156> +08:59:31 Transaction Type : REQUEST +08:59:31 Received From : +08:59:31 ============================================================================ +08:59:31 FNo. Len. Field Value +08:59:31 ============================================================================ +08:59:31 [ 1] [ 4] [0200] +08:59:31 [ 2] [ 16] [1808930500014303] +08:59:31 [ 3] [ 6] [010000] +08:59:31 [ 4] [ 12] [000100000000] +08:59:31 [ 7] [ 10] [0320085722] +08:59:31 [ 11] [ 6] [934352] +08:59:31 [ 12] [ 6] [085722] +08:59:31 [ 13] [ 4] [0320] +08:59:31 [ 15] [ 4] [0320] +08:59:31 [ 18] [ 4] [6011] +08:59:31 [ 19] [ 3] [418] +08:59:31 [ 22] [ 3] [021] +08:59:31 [ 25] [ 2] [01] +08:59:31 [ 28] [ 9] [D00002000] +08:59:31 [ 32] [ 6] [668899] +08:59:31 [ 35] [ 27] [1808930500014303=1803500022] +08:59:31 [ 37] [ 12] [507900844836] +08:59:31 [ 41] [ 8] [03015003] +08:59:31 [ 42] [ 15] [APT ] +08:59:31 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:59:31 [ 49] [ 3] [418] +08:59:31 [ 52] [ 16] [10FFC6C354F7AB45] +08:59:31 ============================================================================ +08:59:31 + + +waiting on router queue for slot.... +08:59:31 Sending to : +08:59:31 ============================================================================ +08:59:31 ============================================================================ +08:59:31 Slot Id : <156> +08:59:31 Transaction Type : REQUEST +08:59:31 Received From : +08:59:31 ============================================================================ +08:59:31 FNo. Len. Field Value +08:59:31 ============================================================================ +08:59:31 [ 1] [ 4] [0200] +08:59:31 [ 2] [ 16] [1808930500014303] +08:59:31 [ 3] [ 6] [010000] +08:59:31 [ 4] [ 12] [000100000000] +08:59:31 [ 7] [ 10] [0320085722] +08:59:31 [ 11] [ 6] [934352] +08:59:31 [ 12] [ 6] [085722] +08:59:31 [ 13] [ 4] [0320] +08:59:31 [ 15] [ 4] [0320] +08:59:31 [ 18] [ 4] [6011] +08:59:31 [ 19] [ 3] [418] +08:59:31 [ 22] [ 3] [021] +08:59:31 [ 25] [ 2] [01] +08:59:31 [ 28] [ 9] [D00002000] +08:59:31 [ 32] [ 6] [668899] +08:59:31 [ 35] [ 27] [1808930500014303=1803500022] +08:59:31 [ 37] [ 12] [507900844836] +08:59:31 [ 41] [ 8] [03015003] +08:59:31 [ 42] [ 15] [APT ] +08:59:31 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:59:31 [ 49] [ 3] [418] +08:59:31 [ 52] [ 16] [08F610331435960F] +08:59:31 ============================================================================ +08:59:31 + + +waiting on router queue for slot.... +08:59:31 Sending to : <2> +08:59:31 ============================================================================ +08:59:36 ============================================================================ +08:59:36 Slot Id : <156> +08:59:36 Transaction Type : RESPONSE +08:59:36 Received From : +08:59:36 ============================================================================ +08:59:36 FNo. Len. Field Value +08:59:36 ============================================================================ +08:59:36 [ 1] [ 4] [0210] +08:59:36 [ 2] [ 16] [1808930500014303] +08:59:36 [ 3] [ 6] [010000] +08:59:36 [ 4] [ 12] [000100000000] +08:59:36 [ 6] [ 12] [000100000000] +08:59:36 [ 7] [ 10] [0320085722] +08:59:36 [ 11] [ 6] [934352] +08:59:36 [ 12] [ 6] [085722] +08:59:36 [ 13] [ 4] [0320] +08:59:36 [ 18] [ 4] [6011] +08:59:36 [ 19] [ 3] [418] +08:59:36 [ 22] [ 3] [021] +08:59:36 [ 32] [ 6] [668899] +08:59:36 [ 35] [ 27] [1808930500014303=1803500022] +08:59:36 [ 37] [ 12] [507900844836] +08:59:36 [ 38] [ 6] [934352] +08:59:36 [ 39] [ 2] [51] +08:59:36 [ 41] [ 8] [03015003] +08:59:36 [ 49] [ 3] [418] +08:59:36 [ 52] [ 16] [08F610331435960F] +08:59:36 ============================================================================ +08:59:36 Sending to : +08:59:36 ============================================================================ +08:59:36 + + +waiting on router queue for slot.... +08:59:36 ============================================================================ +08:59:36 Slot Id : <160> +08:59:36 Transaction Type : REQUEST +08:59:36 Received From : +08:59:36 ============================================================================ +08:59:36 FNo. Len. Field Value +08:59:36 ============================================================================ +08:59:36 [ 1] [ 4] [0800] +08:59:36 [ 7] [ 10] [0320161126] +08:59:36 [ 11] [ 6] [091126] +08:59:36 [ 37] [ 12] [57909091126] +08:59:36 [ 70] [ 3] [301] +08:59:36 ============================================================================ +08:59:36 + + +waiting on router queue for slot.... +08:59:36 Sending to : +08:59:36 ============================================================================ +08:59:36 ============================================================================ +08:59:36 Slot Id : <160> +08:59:36 Transaction Type : RESPONSE +08:59:36 Received From : +08:59:36 ============================================================================ +08:59:36 FNo. Len. Field Value +08:59:36 ============================================================================ +08:59:36 [ 1] [ 4] [0810] +08:59:36 [ 7] [ 10] [0320161126] +08:59:36 [ 11] [ 6] [091126] +08:59:36 [ 37] [ 12] [579090911260] +08:59:36 [ 39] [ 2] [00] +08:59:36 [ 70] [ 3] [810] +08:59:36 ============================================================================ +08:59:36 Calculate Source COMM Id = 6 +08:59:36 ============================================================================ +08:59:36 + + +waiting on router queue for slot.... +08:59:37 ============================================================================ +08:59:37 Slot Id : <156> +08:59:37 Transaction Type : RESPONSE +08:59:37 Received From : +08:59:37 ============================================================================ +08:59:37 FNo. Len. Field Value +08:59:37 ============================================================================ +08:59:37 [ 1] [ 4] [0210] +08:59:37 [ 2] [ 16] [1808930500014303] +08:59:37 [ 3] [ 6] [010000] +08:59:37 [ 4] [ 12] [000100000000] +08:59:37 [ 6] [ 12] [000100000000] +08:59:37 [ 7] [ 10] [0320085722] +08:59:37 [ 11] [ 6] [934352] +08:59:37 [ 12] [ 6] [085722] +08:59:37 [ 13] [ 4] [0320] +08:59:37 [ 18] [ 4] [6011] +08:59:37 [ 19] [ 3] [418] +08:59:37 [ 22] [ 3] [021] +08:59:37 [ 32] [ 6] [668899] +08:59:37 [ 35] [ 27] [1808930500014303=1803500022] +08:59:37 [ 37] [ 12] [507900844836] +08:59:37 [ 38] [ 6] [934352] +08:59:37 [ 39] [ 2] [51] +08:59:37 [ 41] [ 8] [03015003] +08:59:37 [ 49] [ 3] [418] +08:59:37 [ 52] [ 16] [08F610331435960F] +08:59:37 ============================================================================ +08:59:37 Calculate Source COMM Id = 4 +08:59:37 ============================================================================ +08:59:37 + + +waiting on router queue for slot.... +08:59:41 ============================================================================ +08:59:41 Slot Id : <203> +08:59:41 Transaction Type : REQUEST +08:59:41 Received From : +08:59:41 ============================================================================ +08:59:41 FNo. Len. Field Value +08:59:41 ============================================================================ +08:59:41 [ 1] [ 4] [0200] +08:59:41 [ 2] [ 16] [6213545000996664] +08:59:41 [ 3] [ 6] [010000] +08:59:41 [ 4] [ 12] [000100000000] +08:59:41 [ 7] [ 10] [0320015849] +08:59:41 [ 11] [ 6] [267326] +08:59:41 [ 12] [ 6] [085849] +08:59:41 [ 13] [ 4] [0320] +08:59:41 [ 14] [ 4] [4912] +08:59:41 [ 15] [ 4] [0320] +08:59:41 [ 18] [ 4] [6011] +08:59:41 [ 19] [ 3] [418] +08:59:41 [ 22] [ 3] [021] +08:59:41 [ 25] [ 2] [01] +08:59:41 [ 28] [ 9] [D00002000] +08:59:41 [ 32] [ 6] [180893] +08:59:41 [ 35] [ 32] [6213545000996664=491212019666818] +08:59:41 [ 37] [ 12] [507901267326] +08:59:41 [ 41] [ 8] [0243VTKS] +08:59:41 [ 42] [ 15] [999999 ] +08:59:41 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +08:59:41 [ 49] [ 3] [418] +08:59:41 [ 52] [ 16] [7B9A1B2F31730540] +08:59:41 ============================================================================ +08:59:41 + + +waiting on router queue for slot.... +08:59:41 Sending to : +08:59:41 ============================================================================ +08:59:41 Sending to : +08:59:41 ============================================================================ +08:59:42 ============================================================================ +08:59:42 Slot Id : <203> +08:59:42 Transaction Type : REQUEST +08:59:42 Received From : +08:59:42 ============================================================================ +08:59:42 FNo. Len. Field Value +08:59:42 ============================================================================ +08:59:42 [ 1] [ 4] [0200] +08:59:42 [ 2] [ 16] [6213545000996664] +08:59:42 [ 3] [ 6] [010000] +08:59:42 [ 4] [ 12] [000100000000] +08:59:42 [ 7] [ 10] [0320015849] +08:59:42 [ 11] [ 6] [267326] +08:59:42 [ 12] [ 6] [085849] +08:59:42 [ 13] [ 4] [0320] +08:59:42 [ 14] [ 4] [4912] +08:59:42 [ 15] [ 4] [0320] +08:59:42 [ 18] [ 4] [6011] +08:59:42 [ 19] [ 3] [418] +08:59:42 [ 22] [ 3] [021] +08:59:42 [ 25] [ 2] [01] +08:59:42 [ 28] [ 9] [D00002000] +08:59:42 [ 32] [ 6] [180893] +08:59:42 [ 35] [ 32] [6213545000996664=491212019666818] +08:59:42 [ 37] [ 12] [507901267326] +08:59:42 [ 41] [ 8] [0243VTKS] +08:59:42 [ 42] [ 15] [999999 ] +08:59:42 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +08:59:42 [ 49] [ 3] [418] +08:59:42 [ 52] [ 16] [7B9A1B2F31730540] +08:59:42 ============================================================================ +08:59:42 + + +waiting on router queue for slot.... +08:59:42 Sending to : +08:59:42 ============================================================================ +08:59:42 ============================================================================ +08:59:42 Slot Id : <203> +08:59:42 Transaction Type : REQUEST +08:59:42 Received From : +08:59:42 ============================================================================ +08:59:42 FNo. Len. Field Value +08:59:42 ============================================================================ +08:59:42 [ 1] [ 4] [0200] +08:59:42 [ 2] [ 16] [6213545000996664] +08:59:42 [ 3] [ 6] [010000] +08:59:42 [ 4] [ 12] [000100000000] +08:59:42 [ 7] [ 10] [0320015849] +08:59:42 [ 11] [ 6] [267326] +08:59:42 [ 12] [ 6] [085849] +08:59:42 [ 13] [ 4] [0320] +08:59:42 [ 14] [ 4] [4912] +08:59:42 [ 15] [ 4] [0320] +08:59:42 [ 18] [ 4] [6011] +08:59:42 [ 19] [ 3] [418] +08:59:42 [ 22] [ 3] [021] +08:59:42 [ 25] [ 2] [01] +08:59:42 [ 28] [ 9] [D00002000] +08:59:42 [ 32] [ 6] [180893] +08:59:42 [ 35] [ 32] [6213545000996664=491212019666818] +08:59:42 [ 37] [ 12] [507901267326] +08:59:42 [ 41] [ 8] [0243VTKS] +08:59:42 [ 42] [ 15] [999999 ] +08:59:42 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +08:59:42 [ 49] [ 3] [418] +08:59:42 [ 52] [ 16] [FF06662AE5024332] +08:59:42 ============================================================================ +08:59:42 + + +waiting on router queue for slot.... +08:59:42 Sending to : <0> +08:59:42 ============================================================================ +08:59:42 ============================================================================ +08:59:42 Slot Id : <203> +08:59:42 Transaction Type : RESPONSE +08:59:42 Received From : +08:59:42 ============================================================================ +08:59:42 FNo. Len. Field Value +08:59:42 ============================================================================ +08:59:42 [ 1] [ 4] [0210] +08:59:42 [ 2] [ 16] [6213545000996664] +08:59:42 [ 3] [ 6] [010000] +08:59:42 [ 4] [ 12] [000100000000] +08:59:42 [ 7] [ 10] [0320015849] +08:59:42 [ 11] [ 6] [267326] +08:59:42 [ 12] [ 6] [085849] +08:59:42 [ 13] [ 4] [0320] +08:59:42 [ 15] [ 4] [0320] +08:59:42 [ 18] [ 4] [6011] +08:59:42 [ 19] [ 3] [418] +08:59:42 [ 32] [ 6] [180893] +08:59:42 [ 35] [ 32] [6213545000996664=491212019666818] +08:59:42 [ 37] [ 12] [507901267326] +08:59:42 [ 38] [ 6] [437641] +08:59:42 [ 39] [ 2] [00] +08:59:42 [ 41] [ 8] [0243VTKS] +08:59:42 [ 49] [ 3] [418] +08:59:42 [ 54] [ 40] [0001418C0000692160620002418C000069216062] +08:59:42 ============================================================================ +08:59:42 Sending to : +08:59:42 ============================================================================ +08:59:42 + + +waiting on router queue for slot.... +08:59:44 ============================================================================ +08:59:44 Slot Id : <203> +08:59:44 Transaction Type : RESPONSE +08:59:44 Received From : +08:59:44 ============================================================================ +08:59:44 FNo. Len. Field Value +08:59:44 ============================================================================ +08:59:44 [ 1] [ 4] [0210] +08:59:44 [ 2] [ 16] [6213545000996664] +08:59:44 [ 3] [ 6] [010000] +08:59:44 [ 4] [ 12] [000100000000] +08:59:44 [ 7] [ 10] [0320015849] +08:59:44 [ 11] [ 6] [267326] +08:59:44 [ 12] [ 6] [085849] +08:59:44 [ 13] [ 4] [0320] +08:59:44 [ 15] [ 4] [0320] +08:59:44 [ 18] [ 4] [6011] +08:59:44 [ 19] [ 3] [418] +08:59:44 [ 32] [ 6] [180893] +08:59:44 [ 35] [ 32] [6213545000996664=491212019666818] +08:59:44 [ 37] [ 12] [507901267326] +08:59:44 [ 38] [ 6] [437641] +08:59:44 [ 39] [ 2] [00] +08:59:44 [ 41] [ 8] [0243VTKS] +08:59:44 [ 49] [ 3] [418] +08:59:44 [ 54] [ 40] [0001418C0000692160620002418C000069216062] +08:59:44 ============================================================================ +08:59:44 Calculate Source COMM Id = 2 +08:59:44 ============================================================================ +08:59:44 + + +waiting on router queue for slot.... +08:59:44 ============================================================================ +08:59:44 Slot Id : <179> +08:59:44 Transaction Type : REQUEST +08:59:44 Received From : +08:59:44 ============================================================================ +08:59:44 FNo. Len. Field Value +08:59:44 ============================================================================ +08:59:44 [ 1] [ 4] [0800] +08:59:44 [ 7] [ 10] [0320015852] +08:59:44 [ 11] [ 6] [155531] +08:59:44 [ 70] [ 3] [301] +08:59:44 ============================================================================ +08:59:44 + + +waiting on router queue for slot.... +08:59:44 Sending to : +08:59:44 ============================================================================ +08:59:44 ============================================================================ +08:59:44 Slot Id : <179> +08:59:44 Transaction Type : RESPONSE +08:59:44 Received From : +08:59:44 ============================================================================ +08:59:44 FNo. Len. Field Value +08:59:44 ============================================================================ +08:59:44 [ 1] [ 4] [0810] +08:59:44 [ 7] [ 10] [0320015852] +08:59:44 [ 11] [ 6] [155531] +08:59:44 [ 39] [ 2] [00] +08:59:44 [ 70] [ 3] [301] +08:59:44 ============================================================================ +08:59:44 Calculate Source COMM Id = 2 +08:59:44 ============================================================================ +08:59:44 + + +waiting on router queue for slot.... +08:59:55 ============================================================================ +08:59:55 Slot Id : <163> +08:59:55 Transaction Type : REQUEST +08:59:55 Received From : +08:59:55 ============================================================================ +08:59:55 FNo. Len. Field Value +08:59:55 ============================================================================ +08:59:55 [ 1] [ 4] [0800] +08:59:55 [ 7] [ 10] [0320020742] +08:59:55 [ 11] [ 6] [032506] +08:59:55 [ 37] [ 12] [57909032506] +08:59:55 [ 70] [ 3] [301] +08:59:55 ============================================================================ +08:59:55 + + +waiting on router queue for slot.... +08:59:55 Sending to : +08:59:55 ============================================================================ +08:59:55 ============================================================================ +08:59:55 Slot Id : <163> +08:59:55 Transaction Type : RESPONSE +08:59:55 Received From : +08:59:55 ============================================================================ +08:59:55 FNo. Len. Field Value +08:59:55 ============================================================================ +08:59:55 [ 1] [ 4] [0810] +08:59:55 [ 7] [ 10] [0320020742] +08:59:55 [ 11] [ 6] [032506] +08:59:55 [ 37] [ 12] [579090325060] +08:59:55 [ 39] [ 2] [00] +08:59:55 [ 70] [ 3] [810] +08:59:55 ============================================================================ +08:59:55 Calculate Source COMM Id = 1 +08:59:55 ============================================================================ +08:59:55 + + +waiting on router queue for slot.... +08:59:55 ============================================================================ +08:59:55 Slot Id : <144> +08:59:55 Transaction Type : REQUEST +08:59:55 Received From : +08:59:55 ============================================================================ +08:59:55 FNo. Len. Field Value +08:59:55 ============================================================================ +08:59:55 [ 1] [ 4] [0800] +08:59:55 [ 7] [ 10] [0320015903] +08:59:55 [ 11] [ 6] [155532] +08:59:55 [ 70] [ 3] [301] +08:59:55 ============================================================================ +08:59:55 + + +waiting on router queue for slot.... +08:59:55 Sending to : +08:59:55 ============================================================================ +08:59:55 ============================================================================ +08:59:55 Slot Id : <144> +08:59:55 Transaction Type : RESPONSE +08:59:55 Received From : +08:59:55 ============================================================================ +08:59:55 FNo. Len. Field Value +08:59:55 ============================================================================ +08:59:55 [ 1] [ 4] [0810] +08:59:55 [ 7] [ 10] [0320015903] +08:59:55 [ 11] [ 6] [155532] +08:59:55 [ 39] [ 2] [00] +08:59:55 [ 70] [ 3] [301] +08:59:55 ============================================================================ +08:59:55 Calculate Source COMM Id = 2 +08:59:55 ============================================================================ +08:59:55 + + +waiting on router queue for slot.... +08:59:57 ============================================================================ +08:59:57 Slot Id : <192> +08:59:57 Transaction Type : REQUEST +08:59:57 Received From : +08:59:57 ============================================================================ +08:59:57 FNo. Len. Field Value +08:59:57 ============================================================================ +08:59:57 [ 1] [ 4] [0200] +08:59:57 [ 2] [ 16] [6213543000223387] +08:59:57 [ 3] [ 6] [010000] +08:59:57 [ 4] [ 12] [000030000000] +08:59:57 [ 7] [ 10] [0320085749] +08:59:57 [ 11] [ 6] [934376] +08:59:57 [ 12] [ 6] [085749] +08:59:57 [ 13] [ 4] [0320] +08:59:57 [ 15] [ 4] [0320] +08:59:57 [ 18] [ 4] [6011] +08:59:57 [ 19] [ 3] [418] +08:59:57 [ 22] [ 3] [021] +08:59:57 [ 25] [ 2] [01] +08:59:57 [ 28] [ 9] [D00002000] +08:59:57 [ 32] [ 6] [668899] +08:59:57 [ 35] [ 32] [6213543000223387=491212012338511] +08:59:57 [ 37] [ 12] [507901822360] +08:59:57 [ 41] [ 8] [03407003] +08:59:57 [ 42] [ 15] [APT ] +08:59:57 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +08:59:57 [ 49] [ 3] [418] +08:59:57 [ 52] [ 16] [67AFABA0F03842F6] +08:59:57 ============================================================================ +08:59:57 + + +waiting on router queue for slot.... +08:59:57 Sending to : +08:59:57 ============================================================================ +08:59:57 Sending to : +08:59:57 ============================================================================ +08:59:58 ============================================================================ +08:59:58 Slot Id : <192> +08:59:58 Transaction Type : REQUEST +08:59:58 Received From : +08:59:58 ============================================================================ +08:59:58 FNo. Len. Field Value +08:59:58 ============================================================================ +08:59:58 [ 1] [ 4] [0200] +08:59:58 [ 2] [ 16] [6213543000223387] +08:59:58 [ 3] [ 6] [010000] +08:59:58 [ 4] [ 12] [000030000000] +08:59:58 [ 7] [ 10] [0320085749] +08:59:58 [ 11] [ 6] [934376] +08:59:58 [ 12] [ 6] [085749] +08:59:58 [ 13] [ 4] [0320] +08:59:58 [ 15] [ 4] [0320] +08:59:58 [ 18] [ 4] [6011] +08:59:58 [ 19] [ 3] [418] +08:59:58 [ 22] [ 3] [021] +08:59:58 [ 25] [ 2] [01] +08:59:58 [ 28] [ 9] [D00002000] +08:59:58 [ 32] [ 6] [668899] +08:59:58 [ 35] [ 32] [6213543000223387=491212012338511] +08:59:58 [ 37] [ 12] [507901822360] +08:59:58 [ 41] [ 8] [03407003] +08:59:58 [ 42] [ 15] [APT ] +08:59:58 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +08:59:58 [ 49] [ 3] [418] +08:59:58 [ 52] [ 16] [67AFABA0F03842F6] +08:59:58 ============================================================================ +08:59:58 + + +waiting on router queue for slot.... +08:59:58 Sending to : +08:59:58 ============================================================================ +08:59:58 ============================================================================ +08:59:58 Slot Id : <192> +08:59:58 Transaction Type : REQUEST +08:59:58 Received From : +08:59:58 ============================================================================ +08:59:58 FNo. Len. Field Value +08:59:58 ============================================================================ +08:59:58 [ 1] [ 4] [0200] +08:59:58 [ 2] [ 16] [6213543000223387] +08:59:58 [ 3] [ 6] [010000] +08:59:58 [ 4] [ 12] [000030000000] +08:59:58 [ 7] [ 10] [0320085749] +08:59:58 [ 11] [ 6] [934376] +08:59:58 [ 12] [ 6] [085749] +08:59:58 [ 13] [ 4] [0320] +08:59:58 [ 15] [ 4] [0320] +08:59:58 [ 18] [ 4] [6011] +08:59:58 [ 19] [ 3] [418] +08:59:58 [ 22] [ 3] [021] +08:59:58 [ 25] [ 2] [01] +08:59:58 [ 28] [ 9] [D00002000] +08:59:58 [ 32] [ 6] [668899] +08:59:58 [ 35] [ 32] [6213543000223387=491212012338511] +08:59:58 [ 37] [ 12] [507901822360] +08:59:58 [ 41] [ 8] [03407003] +08:59:58 [ 42] [ 15] [APT ] +08:59:58 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +08:59:58 [ 49] [ 3] [418] +08:59:58 [ 52] [ 16] [1E74F7C0B290FF87] +08:59:58 ============================================================================ +08:59:58 + + +waiting on router queue for slot.... +08:59:58 Sending to : <0> +08:59:58 ============================================================================ +08:59:59 ============================================================================ +08:59:59 Slot Id : <192> +08:59:59 Transaction Type : RESPONSE +08:59:59 Received From : +08:59:59 ============================================================================ +08:59:59 FNo. Len. Field Value +08:59:59 ============================================================================ +08:59:59 [ 1] [ 4] [0210] +08:59:59 [ 2] [ 16] [6213543000223387] +08:59:59 [ 3] [ 6] [010000] +08:59:59 [ 4] [ 12] [000030000000] +08:59:59 [ 7] [ 10] [0320085749] +08:59:59 [ 11] [ 6] [934376] +08:59:59 [ 12] [ 6] [085749] +08:59:59 [ 13] [ 4] [0320] +08:59:59 [ 15] [ 4] [0320] +08:59:59 [ 18] [ 4] [6011] +08:59:59 [ 19] [ 3] [418] +08:59:59 [ 32] [ 6] [668899] +08:59:59 [ 35] [ 32] [6213543000223387=491212012338511] +08:59:59 [ 37] [ 12] [507901822360] +08:59:59 [ 38] [ 6] [479557] +08:59:59 [ 39] [ 2] [00] +08:59:59 [ 41] [ 8] [03407003] +08:59:59 [ 49] [ 3] [418] +08:59:59 [ 54] [ 40] [0001418C0000113622600002418C000011362260] +08:59:59 ============================================================================ +08:59:59 Sending to : +08:59:59 ============================================================================ +08:59:59 + + +waiting on router queue for slot.... +08:59:59 ============================================================================ +08:59:59 Slot Id : <204> +08:59:59 Transaction Type : REQUEST +08:59:59 Received From : +08:59:59 ============================================================================ +08:59:59 FNo. Len. Field Value +08:59:59 ============================================================================ +08:59:59 [ 1] [ 4] [0200] +08:59:59 [ 2] [ 16] [1808930500014303] +08:59:59 [ 3] [ 6] [010000] +08:59:59 [ 4] [ 12] [000100000000] +08:59:59 [ 7] [ 10] [0320085750] +08:59:59 [ 11] [ 6] [934378] +08:59:59 [ 12] [ 6] [085750] +08:59:59 [ 13] [ 4] [0320] +08:59:59 [ 15] [ 4] [0320] +08:59:59 [ 18] [ 4] [6011] +08:59:59 [ 19] [ 3] [418] +08:59:59 [ 22] [ 3] [021] +08:59:59 [ 25] [ 2] [01] +08:59:59 [ 28] [ 9] [D00002000] +08:59:59 [ 32] [ 6] [668899] +08:59:59 [ 35] [ 27] [1808930500014303=1803500022] +08:59:59 [ 37] [ 12] [507900844837] +08:59:59 [ 41] [ 8] [03015003] +08:59:59 [ 42] [ 15] [APT ] +08:59:59 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:59:59 [ 49] [ 3] [418] +08:59:59 [ 52] [ 16] [10FFC6C354F7AB45] +08:59:59 ============================================================================ +08:59:59 + + +waiting on router queue for slot.... +08:59:59 Sending to : +08:59:59 ============================================================================ +08:59:59 Sending to : +08:59:59 ============================================================================ +08:59:59 ============================================================================ +08:59:59 Slot Id : <204> +08:59:59 Transaction Type : REQUEST +08:59:59 Received From : +08:59:59 ============================================================================ +08:59:59 FNo. Len. Field Value +08:59:59 ============================================================================ +08:59:59 [ 1] [ 4] [0200] +08:59:59 [ 2] [ 16] [1808930500014303] +08:59:59 [ 3] [ 6] [010000] +08:59:59 [ 4] [ 12] [000100000000] +08:59:59 [ 7] [ 10] [0320085750] +08:59:59 [ 11] [ 6] [934378] +08:59:59 [ 12] [ 6] [085750] +08:59:59 [ 13] [ 4] [0320] +08:59:59 [ 15] [ 4] [0320] +08:59:59 [ 18] [ 4] [6011] +08:59:59 [ 19] [ 3] [418] +08:59:59 [ 22] [ 3] [021] +08:59:59 [ 25] [ 2] [01] +08:59:59 [ 28] [ 9] [D00002000] +08:59:59 [ 32] [ 6] [668899] +08:59:59 [ 35] [ 27] [1808930500014303=1803500022] +08:59:59 [ 37] [ 12] [507900844837] +08:59:59 [ 41] [ 8] [03015003] +08:59:59 [ 42] [ 15] [APT ] +08:59:59 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:59:59 [ 49] [ 3] [418] +08:59:59 [ 52] [ 16] [10FFC6C354F7AB45] +08:59:59 ============================================================================ +08:59:59 + + +waiting on router queue for slot.... +08:59:59 Sending to : +08:59:59 ============================================================================ +08:59:59 ============================================================================ +08:59:59 Slot Id : <204> +08:59:59 Transaction Type : REQUEST +08:59:59 Received From : +08:59:59 ============================================================================ +08:59:59 FNo. Len. Field Value +08:59:59 ============================================================================ +08:59:59 [ 1] [ 4] [0200] +08:59:59 [ 2] [ 16] [1808930500014303] +08:59:59 [ 3] [ 6] [010000] +08:59:59 [ 4] [ 12] [000100000000] +08:59:59 [ 7] [ 10] [0320085750] +08:59:59 [ 11] [ 6] [934378] +08:59:59 [ 12] [ 6] [085750] +08:59:59 [ 13] [ 4] [0320] +08:59:59 [ 15] [ 4] [0320] +08:59:59 [ 18] [ 4] [6011] +08:59:59 [ 19] [ 3] [418] +08:59:59 [ 22] [ 3] [021] +08:59:59 [ 25] [ 2] [01] +08:59:59 [ 28] [ 9] [D00002000] +08:59:59 [ 32] [ 6] [668899] +08:59:59 [ 35] [ 27] [1808930500014303=1803500022] +08:59:59 [ 37] [ 12] [507900844837] +08:59:59 [ 41] [ 8] [03015003] +08:59:59 [ 42] [ 15] [APT ] +08:59:59 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +08:59:59 [ 49] [ 3] [418] +08:59:59 [ 52] [ 16] [08F610331435960F] +08:59:59 ============================================================================ +08:59:59 + + +waiting on router queue for slot.... +08:59:59 Sending to : <2> +08:59:59 ============================================================================ +09:00:00 ============================================================================ +09:00:00 Slot Id : <192> +09:00:00 Transaction Type : RESPONSE +09:00:00 Received From : +09:00:00 ============================================================================ +09:00:00 FNo. Len. Field Value +09:00:00 ============================================================================ +09:00:00 [ 1] [ 4] [0210] +09:00:00 [ 2] [ 16] [6213543000223387] +09:00:00 [ 3] [ 6] [010000] +09:00:00 [ 4] [ 12] [000030000000] +09:00:00 [ 7] [ 10] [0320085749] +09:00:00 [ 11] [ 6] [934376] +09:00:00 [ 12] [ 6] [085749] +09:00:00 [ 13] [ 4] [0320] +09:00:00 [ 15] [ 4] [0320] +09:00:00 [ 18] [ 4] [6011] +09:00:00 [ 19] [ 3] [418] +09:00:00 [ 32] [ 6] [668899] +09:00:00 [ 35] [ 32] [6213543000223387=491212012338511] +09:00:00 [ 37] [ 12] [507901822360] +09:00:00 [ 38] [ 6] [479557] +09:00:00 [ 39] [ 2] [00] +09:00:00 [ 41] [ 8] [03407003] +09:00:00 [ 49] [ 3] [418] +09:00:00 [ 54] [ 40] [0001418C0000113622600002418C000011362260] +09:00:00 ============================================================================ +09:00:00 Calculate Source COMM Id = 4 +09:00:00 ============================================================================ +09:00:00 + + +waiting on router queue for slot.... +09:00:00 ============================================================================ +09:00:00 Slot Id : <135> +09:00:00 Transaction Type : REQUEST +09:00:00 Received From : +09:00:00 ============================================================================ +09:00:00 FNo. Len. Field Value +09:00:00 ============================================================================ +09:00:00 [ 1] [ 4] [0800] +09:00:00 [ 2] [ 5] [02531] +09:00:00 [ 3] [ 6] [579098] +09:00:00 [ 7] [ 10] [0320020000] +09:00:00 [ 11] [ 6] [806934] +09:00:00 [ 15] [ 10] [0320020000] +09:00:00 [ 37] [ 11] [57909806934] +09:00:00 [ 70] [ 3] [001] +09:00:00 ============================================================================ +09:00:00 + + +waiting on router queue for slot.... +09:00:00 ============================================================================ +09:00:00 Slot Id : <135> +09:00:00 Transaction Type : RESPONSE +09:00:00 Received From : +09:00:00 ============================================================================ +09:00:00 FNo. Len. Field Value +09:00:00 ============================================================================ +09:00:00 [ 1] [ 4] [0810] +09:00:00 [ 7] [ 10] [0320020000] +09:00:00 [ 11] [ 6] [806934] +09:00:00 [ 15] [ 4] [0320] +09:00:00 [ 37] [ 12] [57909806934] +09:00:00 [ 39] [ 2] [00] +09:00:00 [ 70] [ 3] [001] +09:00:00 ============================================================================ +09:00:00 Sending to : +09:00:00 ============================================================================ +09:00:00 + + +waiting on router queue for slot.... +09:00:02 ============================================================================ +09:00:02 Slot Id : <152> +09:00:02 Transaction Type : REQUEST +09:00:02 Received From : +09:00:02 ============================================================================ +09:00:02 FNo. Len. Field Value +09:00:02 ============================================================================ +09:00:02 [ 1] [ 4] [0200] +09:00:02 [ 2] [ 16] [1808930800002636] +09:00:02 [ 3] [ 6] [011000] +09:00:02 [ 4] [ 12] [000100000000] +09:00:02 [ 7] [ 10] [0320090749] +09:00:02 [ 11] [ 6] [001956] +09:00:02 [ 12] [ 6] [090749] +09:00:02 [ 13] [ 4] [0320] +09:00:02 [ 14] [ 4] [1803] +09:00:02 [ 15] [ 4] [0320] +09:00:02 [ 18] [ 4] [6011] +09:00:02 [ 22] [ 3] [900] +09:00:02 [ 25] [ 2] [02] +09:00:02 [ 28] [ 9] [D00002000] +09:00:02 [ 32] [ 6] [220699] +09:00:02 [ 35] [ 27] [1808930800002636=1803500438] +09:00:02 [ 37] [ 12] [507900296944] +09:00:02 [ 41] [ 8] [01001600] +09:00:02 [ 42] [ 15] [APTRA ] +09:00:02 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:00:02 [ 49] [ 3] [418] +09:00:02 [ 52] [ 16] [278C6EBAB5FA4D3D] +09:00:02 ============================================================================ +09:00:02 + + +waiting on router queue for slot.... +09:00:02 Sending to : +09:00:02 ============================================================================ +09:00:02 Sending to : +09:00:02 ============================================================================ +09:00:02 ============================================================================ +09:00:02 Slot Id : <152> +09:00:02 Transaction Type : REQUEST +09:00:02 Received From : +09:00:02 ============================================================================ +09:00:02 FNo. Len. Field Value +09:00:02 ============================================================================ +09:00:02 [ 1] [ 4] [0200] +09:00:02 [ 2] [ 16] [1808930800002636] +09:00:02 [ 3] [ 6] [011000] +09:00:02 [ 4] [ 12] [000100000000] +09:00:02 [ 7] [ 10] [0320090749] +09:00:02 [ 11] [ 6] [001956] +09:00:02 [ 12] [ 6] [090749] +09:00:02 [ 13] [ 4] [0320] +09:00:02 [ 14] [ 4] [1803] +09:00:02 [ 15] [ 4] [0320] +09:00:02 [ 18] [ 4] [6011] +09:00:02 [ 22] [ 3] [900] +09:00:02 [ 25] [ 2] [02] +09:00:02 [ 28] [ 9] [D00002000] +09:00:02 [ 32] [ 6] [220699] +09:00:02 [ 35] [ 27] [1808930800002636=1803500438] +09:00:02 [ 37] [ 12] [507900296944] +09:00:02 [ 41] [ 8] [01001600] +09:00:02 [ 42] [ 15] [APTRA ] +09:00:02 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:00:02 [ 49] [ 3] [418] +09:00:02 [ 52] [ 16] [278C6EBAB5FA4D3D] +09:00:02 ============================================================================ +09:00:02 + + +waiting on router queue for slot.... +09:00:02 Sending to : +09:00:02 ============================================================================ +09:00:02 ============================================================================ +09:00:02 Slot Id : <152> +09:00:02 Transaction Type : REQUEST +09:00:02 Received From : +09:00:02 ============================================================================ +09:00:02 FNo. Len. Field Value +09:00:02 ============================================================================ +09:00:02 [ 1] [ 4] [0200] +09:00:02 [ 2] [ 16] [1808930800002636] +09:00:02 [ 3] [ 6] [011000] +09:00:02 [ 4] [ 12] [000100000000] +09:00:02 [ 7] [ 10] [0320090749] +09:00:02 [ 11] [ 6] [001956] +09:00:02 [ 12] [ 6] [090749] +09:00:02 [ 13] [ 4] [0320] +09:00:02 [ 14] [ 4] [1803] +09:00:02 [ 15] [ 4] [0320] +09:00:02 [ 18] [ 4] [6011] +09:00:02 [ 22] [ 3] [900] +09:00:02 [ 25] [ 2] [02] +09:00:02 [ 28] [ 9] [D00002000] +09:00:02 [ 32] [ 6] [220699] +09:00:02 [ 35] [ 27] [1808930800002636=1803500438] +09:00:02 [ 37] [ 12] [507900296944] +09:00:02 [ 41] [ 8] [01001600] +09:00:02 [ 42] [ 15] [APTRA ] +09:00:02 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:00:02 [ 49] [ 3] [418] +09:00:02 [ 52] [ 16] [D3A971460B258AA6] +09:00:02 ============================================================================ +09:00:02 + + +waiting on router queue for slot.... +09:00:02 Sending to : <2> +09:00:02 ============================================================================ +09:00:03 ============================================================================ +09:00:03 Slot Id : <204> +09:00:03 Transaction Type : RESPONSE +09:00:03 Received From : +09:00:03 ============================================================================ +09:00:03 FNo. Len. Field Value +09:00:03 ============================================================================ +09:00:03 [ 1] [ 4] [0210] +09:00:03 [ 2] [ 16] [1808930500014303] +09:00:03 [ 3] [ 6] [010000] +09:00:03 [ 4] [ 12] [000100000000] +09:00:03 [ 6] [ 12] [000100000000] +09:00:03 [ 7] [ 10] [0320085750] +09:00:03 [ 11] [ 6] [934378] +09:00:03 [ 12] [ 6] [085750] +09:00:03 [ 13] [ 4] [0320] +09:00:03 [ 18] [ 4] [6011] +09:00:03 [ 19] [ 3] [418] +09:00:03 [ 22] [ 3] [021] +09:00:03 [ 32] [ 6] [668899] +09:00:03 [ 35] [ 27] [1808930500014303=1803500022] +09:00:03 [ 37] [ 12] [507900844837] +09:00:03 [ 38] [ 6] [934378] +09:00:03 [ 39] [ 2] [51] +09:00:03 [ 41] [ 8] [03015003] +09:00:03 [ 49] [ 3] [418] +09:00:03 [ 52] [ 16] [08F610331435960F] +09:00:03 ============================================================================ +09:00:03 Sending to : +09:00:03 ============================================================================ +09:00:03 + + +waiting on router queue for slot.... +09:00:05 ============================================================================ +09:00:05 Slot Id : <204> +09:00:05 Transaction Type : RESPONSE +09:00:05 Received From : +09:00:05 ============================================================================ +09:00:05 FNo. Len. Field Value +09:00:05 ============================================================================ +09:00:05 [ 1] [ 4] [0210] +09:00:05 [ 2] [ 16] [1808930500014303] +09:00:05 [ 3] [ 6] [010000] +09:00:05 [ 4] [ 12] [000100000000] +09:00:05 [ 6] [ 12] [000100000000] +09:00:05 [ 7] [ 10] [0320085750] +09:00:05 [ 11] [ 6] [934378] +09:00:05 [ 12] [ 6] [085750] +09:00:05 [ 13] [ 4] [0320] +09:00:05 [ 18] [ 4] [6011] +09:00:05 [ 19] [ 3] [418] +09:00:05 [ 22] [ 3] [021] +09:00:05 [ 32] [ 6] [668899] +09:00:05 [ 35] [ 27] [1808930500014303=1803500022] +09:00:05 [ 37] [ 12] [507900844837] +09:00:05 [ 38] [ 6] [934378] +09:00:05 [ 39] [ 2] [51] +09:00:05 [ 41] [ 8] [03015003] +09:00:05 [ 49] [ 3] [418] +09:00:05 [ 52] [ 16] [08F610331435960F] +09:00:05 ============================================================================ +09:00:05 Calculate Source COMM Id = 4 +09:00:05 ============================================================================ +09:00:05 + + +waiting on router queue for slot.... +09:00:08 ============================================================================ +09:00:08 Slot Id : <152> +09:00:08 Transaction Type : RESPONSE +09:00:08 Received From : +09:00:08 ============================================================================ +09:00:08 FNo. Len. Field Value +09:00:08 ============================================================================ +09:00:08 [ 1] [ 4] [0210] +09:00:08 [ 2] [ 16] [1808930800002636] +09:00:08 [ 3] [ 6] [011000] +09:00:08 [ 4] [ 12] [000100000000] +09:00:08 [ 6] [ 12] [000100000000] +09:00:08 [ 7] [ 10] [0320090749] +09:00:08 [ 11] [ 6] [001956] +09:00:08 [ 12] [ 6] [090749] +09:00:08 [ 13] [ 4] [0320] +09:00:08 [ 14] [ 4] [1803] +09:00:08 [ 18] [ 4] [6011] +09:00:08 [ 19] [ 3] [418] +09:00:08 [ 22] [ 3] [021] +09:00:08 [ 32] [ 6] [220699] +09:00:08 [ 35] [ 27] [1808930800002636=1803500438] +09:00:08 [ 37] [ 12] [507900296944] +09:00:08 [ 38] [ 6] [001956] +09:00:08 [ 39] [ 2] [00] +09:00:08 [ 41] [ 8] [01001600] +09:00:08 [ 49] [ 3] [418] +09:00:08 [ 52] [ 16] [D3A971460B258AA6] +09:00:08 [ 54] [ 20] [1001418C000536744300] +09:00:08 ============================================================================ +09:00:08 Sending to : +09:00:08 ============================================================================ +09:00:08 + + +waiting on router queue for slot.... +09:00:10 ============================================================================ +09:00:10 Slot Id : <152> +09:00:10 Transaction Type : RESPONSE +09:00:10 Received From : +09:00:10 ============================================================================ +09:00:10 FNo. Len. Field Value +09:00:10 ============================================================================ +09:00:10 [ 1] [ 4] [0210] +09:00:10 [ 2] [ 16] [1808930800002636] +09:00:10 [ 3] [ 6] [011000] +09:00:10 [ 4] [ 12] [000100000000] +09:00:10 [ 6] [ 12] [000100000000] +09:00:10 [ 7] [ 10] [0320090749] +09:00:10 [ 11] [ 6] [001956] +09:00:10 [ 12] [ 6] [090749] +09:00:10 [ 13] [ 4] [0320] +09:00:10 [ 14] [ 4] [1803] +09:00:10 [ 18] [ 4] [6011] +09:00:10 [ 19] [ 3] [418] +09:00:10 [ 22] [ 3] [021] +09:00:10 [ 32] [ 6] [220699] +09:00:10 [ 35] [ 27] [1808930800002636=1803500438] +09:00:10 [ 37] [ 12] [507900296944] +09:00:10 [ 38] [ 6] [001956] +09:00:10 [ 39] [ 2] [00] +09:00:10 [ 41] [ 8] [01001600] +09:00:10 [ 49] [ 3] [418] +09:00:10 [ 52] [ 16] [D3A971460B258AA6] +09:00:10 [ 54] [ 20] [1001418C000536744300] +09:00:10 ============================================================================ +09:00:10 Calculate Source COMM Id = 1 +09:00:10 ============================================================================ +09:00:10 + + +waiting on router queue for slot.... +09:00:16 ============================================================================ +09:00:16 Slot Id : <196> +09:00:16 Transaction Type : REQUEST +09:00:16 Received From : +09:00:16 ============================================================================ +09:00:16 FNo. Len. Field Value +09:00:16 ============================================================================ +09:00:16 [ 1] [ 4] [0800] +09:00:16 [ 7] [ 10] [0320015924] +09:00:16 [ 11] [ 6] [155533] +09:00:16 [ 70] [ 3] [301] +09:00:16 ============================================================================ +09:00:16 + + +waiting on router queue for slot.... +09:00:16 Sending to : +09:00:16 ============================================================================ +09:00:16 ============================================================================ +09:00:16 Slot Id : <196> +09:00:16 Transaction Type : RESPONSE +09:00:16 Received From : +09:00:16 ============================================================================ +09:00:16 FNo. Len. Field Value +09:00:16 ============================================================================ +09:00:16 [ 1] [ 4] [0810] +09:00:16 [ 7] [ 10] [0320015924] +09:00:16 [ 11] [ 6] [155533] +09:00:16 [ 39] [ 2] [00] +09:00:16 [ 70] [ 3] [301] +09:00:16 ============================================================================ +09:00:16 Calculate Source COMM Id = 2 +09:00:16 ============================================================================ +09:00:16 + + +waiting on router queue for slot.... +09:00:24 ============================================================================ +09:00:24 Slot Id : <191> +09:00:24 Transaction Type : REQUEST +09:00:24 Received From : +09:00:24 ============================================================================ +09:00:24 FNo. Len. Field Value +09:00:24 ============================================================================ +09:00:24 [ 1] [ 4] [0800] +09:00:24 [ 7] [ 10] [0320020020] +09:00:24 [ 11] [ 6] [003257] +09:00:24 [ 37] [ 12] [507909003257] +09:00:24 [ 70] [ 3] [001] +09:00:24 ============================================================================ +09:00:24 + + +waiting on router queue for slot.... +09:00:24 Sending to : +09:00:24 ============================================================================ +09:00:24 ============================================================================ +09:00:24 Slot Id : <191> +09:00:24 Transaction Type : RESPONSE +09:00:24 Received From : +09:00:24 ============================================================================ +09:00:24 FNo. Len. Field Value +09:00:24 ============================================================================ +09:00:24 [ 1] [ 4] [0810] +09:00:24 [ 7] [ 10] [0320020020] +09:00:24 [ 11] [ 6] [003257] +09:00:24 [ 37] [ 12] [507909003257] +09:00:24 [ 39] [ 2] [00] +09:00:24 [ 70] [ 3] [001] +09:00:24 ============================================================================ +09:00:24 Calculate Source COMM Id = 0 +09:00:24 ============================================================================ +09:00:24 + + +waiting on router queue for slot.... +09:00:33 ============================================================================ +09:00:33 Slot Id : <155> +09:00:33 Transaction Type : REQUEST +09:00:33 Received From : +09:00:33 ============================================================================ +09:00:33 FNo. Len. Field Value +09:00:33 ============================================================================ +09:00:33 [ 1] [ 4] [0800] +09:00:33 [ 7] [ 10] [0320015941] +09:00:33 [ 11] [ 6] [155534] +09:00:33 [ 70] [ 3] [301] +09:00:33 ============================================================================ +09:00:33 + + +waiting on router queue for slot.... +09:00:33 Sending to : +09:00:33 ============================================================================ +09:00:33 ============================================================================ +09:00:33 Slot Id : <155> +09:00:33 Transaction Type : RESPONSE +09:00:33 Received From : +09:00:33 ============================================================================ +09:00:33 FNo. Len. Field Value +09:00:33 ============================================================================ +09:00:33 [ 1] [ 4] [0810] +09:00:33 [ 7] [ 10] [0320015941] +09:00:33 [ 11] [ 6] [155534] +09:00:33 [ 39] [ 2] [00] +09:00:33 [ 70] [ 3] [301] +09:00:33 ============================================================================ +09:00:33 Calculate Source COMM Id = 2 +09:00:33 ============================================================================ +09:00:33 + + +waiting on router queue for slot.... +09:00:36 ============================================================================ +09:00:36 Slot Id : <181> +09:00:36 Transaction Type : REQUEST +09:00:36 Received From : +09:00:36 ============================================================================ +09:00:36 FNo. Len. Field Value +09:00:36 ============================================================================ +09:00:36 [ 1] [ 4] [0200] +09:00:36 [ 2] [ 16] [1808930500014303] +09:00:36 [ 3] [ 6] [010000] +09:00:36 [ 4] [ 12] [000050000000] +09:00:36 [ 7] [ 10] [0320085827] +09:00:36 [ 11] [ 6] [934408] +09:00:36 [ 12] [ 6] [085827] +09:00:36 [ 13] [ 4] [0320] +09:00:36 [ 15] [ 4] [0320] +09:00:36 [ 18] [ 4] [6011] +09:00:36 [ 19] [ 3] [418] +09:00:36 [ 22] [ 3] [021] +09:00:36 [ 25] [ 2] [01] +09:00:36 [ 28] [ 9] [D00002000] +09:00:36 [ 32] [ 6] [668899] +09:00:36 [ 35] [ 27] [1808930500014303=1803500022] +09:00:36 [ 37] [ 12] [507900844838] +09:00:36 [ 41] [ 8] [03015003] +09:00:36 [ 42] [ 15] [APT ] +09:00:36 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:00:36 [ 49] [ 3] [418] +09:00:36 [ 52] [ 16] [10FFC6C354F7AB45] +09:00:36 ============================================================================ +09:00:36 + + +waiting on router queue for slot.... +09:00:36 Sending to : +09:00:36 ============================================================================ +09:00:36 Sending to : +09:00:36 ============================================================================ +09:00:36 ============================================================================ +09:00:36 Slot Id : <181> +09:00:36 Transaction Type : REQUEST +09:00:36 Received From : +09:00:36 ============================================================================ +09:00:36 FNo. Len. Field Value +09:00:36 ============================================================================ +09:00:36 [ 1] [ 4] [0200] +09:00:36 [ 2] [ 16] [1808930500014303] +09:00:36 [ 3] [ 6] [010000] +09:00:36 [ 4] [ 12] [000050000000] +09:00:36 [ 7] [ 10] [0320085827] +09:00:36 [ 11] [ 6] [934408] +09:00:36 [ 12] [ 6] [085827] +09:00:36 [ 13] [ 4] [0320] +09:00:36 [ 15] [ 4] [0320] +09:00:36 [ 18] [ 4] [6011] +09:00:36 [ 19] [ 3] [418] +09:00:36 [ 22] [ 3] [021] +09:00:36 [ 25] [ 2] [01] +09:00:36 [ 28] [ 9] [D00002000] +09:00:36 [ 32] [ 6] [668899] +09:00:36 [ 35] [ 27] [1808930500014303=1803500022] +09:00:36 [ 37] [ 12] [507900844838] +09:00:36 [ 41] [ 8] [03015003] +09:00:36 [ 42] [ 15] [APT ] +09:00:36 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:00:36 [ 49] [ 3] [418] +09:00:36 [ 52] [ 16] [10FFC6C354F7AB45] +09:00:36 ============================================================================ +09:00:36 + + +waiting on router queue for slot.... +09:00:36 Sending to : +09:00:36 ============================================================================ +09:00:36 ============================================================================ +09:00:36 Slot Id : <181> +09:00:36 Transaction Type : REQUEST +09:00:36 Received From : +09:00:36 ============================================================================ +09:00:36 FNo. Len. Field Value +09:00:36 ============================================================================ +09:00:36 [ 1] [ 4] [0200] +09:00:36 [ 2] [ 16] [1808930500014303] +09:00:36 [ 3] [ 6] [010000] +09:00:36 [ 4] [ 12] [000050000000] +09:00:36 [ 7] [ 10] [0320085827] +09:00:36 [ 11] [ 6] [934408] +09:00:36 [ 12] [ 6] [085827] +09:00:36 [ 13] [ 4] [0320] +09:00:36 [ 15] [ 4] [0320] +09:00:36 [ 18] [ 4] [6011] +09:00:36 [ 19] [ 3] [418] +09:00:36 [ 22] [ 3] [021] +09:00:36 [ 25] [ 2] [01] +09:00:36 [ 28] [ 9] [D00002000] +09:00:36 [ 32] [ 6] [668899] +09:00:36 [ 35] [ 27] [1808930500014303=1803500022] +09:00:36 [ 37] [ 12] [507900844838] +09:00:36 [ 41] [ 8] [03015003] +09:00:36 [ 42] [ 15] [APT ] +09:00:36 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:00:36 [ 49] [ 3] [418] +09:00:36 [ 52] [ 16] [08F610331435960F] +09:00:36 ============================================================================ +09:00:36 + + +waiting on router queue for slot.... +09:00:36 Sending to : <2> +09:00:36 ============================================================================ +09:00:41 ============================================================================ +09:00:41 Slot Id : <190> +09:00:41 Transaction Type : REQUEST +09:00:41 Received From : +09:00:41 ============================================================================ +09:00:41 FNo. Len. Field Value +09:00:41 ============================================================================ +09:00:41 [ 1] [ 4] [0800] +09:00:41 [ 7] [ 10] [0320161231] +09:00:41 [ 11] [ 6] [091231] +09:00:41 [ 37] [ 12] [57909091231] +09:00:41 [ 70] [ 3] [301] +09:00:41 ============================================================================ +09:00:41 + + +waiting on router queue for slot.... +09:00:41 Sending to : +09:00:41 ============================================================================ +09:00:41 ============================================================================ +09:00:41 Slot Id : <190> +09:00:41 Transaction Type : RESPONSE +09:00:41 Received From : +09:00:41 ============================================================================ +09:00:41 FNo. Len. Field Value +09:00:41 ============================================================================ +09:00:41 [ 1] [ 4] [0810] +09:00:41 [ 7] [ 10] [0320161231] +09:00:41 [ 11] [ 6] [091231] +09:00:41 [ 37] [ 12] [579090912310] +09:00:41 [ 39] [ 2] [00] +09:00:41 [ 70] [ 3] [810] +09:00:41 ============================================================================ +09:00:41 Calculate Source COMM Id = 6 +09:00:41 ============================================================================ +09:00:41 + + +waiting on router queue for slot.... +09:00:47 ============================================================================ +09:00:47 Slot Id : <181> +09:00:47 Transaction Type : RESPONSE +09:00:47 Received From : +09:00:47 ============================================================================ +09:00:47 FNo. Len. Field Value +09:00:47 ============================================================================ +09:00:47 [ 1] [ 4] [0210] +09:00:47 [ 2] [ 16] [1808930500014303] +09:00:47 [ 3] [ 6] [010000] +09:00:47 [ 4] [ 12] [000050000000] +09:00:47 [ 6] [ 12] [000050000000] +09:00:47 [ 7] [ 10] [0320085827] +09:00:47 [ 11] [ 6] [934408] +09:00:47 [ 12] [ 6] [085827] +09:00:47 [ 13] [ 4] [0320] +09:00:47 [ 18] [ 4] [6011] +09:00:47 [ 19] [ 3] [418] +09:00:47 [ 22] [ 3] [021] +09:00:47 [ 32] [ 6] [668899] +09:00:47 [ 35] [ 27] [1808930500014303=1803500022] +09:00:47 [ 37] [ 12] [507900844838] +09:00:47 [ 38] [ 6] [934408] +09:00:47 [ 39] [ 2] [00] +09:00:47 [ 41] [ 8] [03015003] +09:00:47 [ 49] [ 3] [418] +09:00:47 [ 52] [ 16] [08F610331435960F] +09:00:47 [ 54] [ 20] [1001418C000018384200] +09:00:47 ============================================================================ +09:00:47 Sending to : +09:00:47 ============================================================================ +09:00:47 + + +waiting on router queue for slot.... +09:00:49 ============================================================================ +09:00:49 Slot Id : <181> +09:00:49 Transaction Type : RESPONSE +09:00:49 Received From : +09:00:49 ============================================================================ +09:00:49 FNo. Len. Field Value +09:00:49 ============================================================================ +09:00:49 [ 1] [ 4] [0210] +09:00:49 [ 2] [ 16] [1808930500014303] +09:00:49 [ 3] [ 6] [010000] +09:00:49 [ 4] [ 12] [000050000000] +09:00:49 [ 6] [ 12] [000050000000] +09:00:49 [ 7] [ 10] [0320085827] +09:00:49 [ 11] [ 6] [934408] +09:00:49 [ 12] [ 6] [085827] +09:00:49 [ 13] [ 4] [0320] +09:00:49 [ 18] [ 4] [6011] +09:00:49 [ 19] [ 3] [418] +09:00:49 [ 22] [ 3] [021] +09:00:49 [ 32] [ 6] [668899] +09:00:49 [ 35] [ 27] [1808930500014303=1803500022] +09:00:49 [ 37] [ 12] [507900844838] +09:00:49 [ 38] [ 6] [934408] +09:00:49 [ 39] [ 2] [00] +09:00:49 [ 41] [ 8] [03015003] +09:00:49 [ 49] [ 3] [418] +09:00:49 [ 52] [ 16] [08F610331435960F] +09:00:49 [ 54] [ 20] [1001418C000018384200] +09:00:49 ============================================================================ +09:00:49 Calculate Source COMM Id = 4 +09:00:49 ============================================================================ +09:00:49 + + +waiting on router queue for slot.... +09:00:51 ============================================================================ +09:00:51 Slot Id : <198> +09:00:51 Transaction Type : REQUEST +09:00:51 Received From : +09:00:51 ============================================================================ +09:00:51 FNo. Len. Field Value +09:00:51 ============================================================================ +09:00:51 [ 1] [ 4] [0800] +09:00:51 [ 7] [ 10] [0320015958] +09:00:51 [ 11] [ 6] [155535] +09:00:51 [ 70] [ 3] [301] +09:00:51 ============================================================================ +09:00:51 + + +waiting on router queue for slot.... +09:00:51 Sending to : +09:00:51 ============================================================================ +09:00:51 ============================================================================ +09:00:51 Slot Id : <198> +09:00:51 Transaction Type : RESPONSE +09:00:51 Received From : +09:00:51 ============================================================================ +09:00:51 FNo. Len. Field Value +09:00:51 ============================================================================ +09:00:51 [ 1] [ 4] [0810] +09:00:51 [ 7] [ 10] [0320015958] +09:00:51 [ 11] [ 6] [155535] +09:00:51 [ 39] [ 2] [00] +09:00:51 [ 70] [ 3] [301] +09:00:51 ============================================================================ +09:00:51 Calculate Source COMM Id = 2 +09:00:51 ============================================================================ +09:00:51 + + +waiting on router queue for slot.... +09:00:57 ============================================================================ +09:00:57 Slot Id : <201> +09:00:57 Transaction Type : REQUEST +09:00:57 Received From : +09:00:57 ============================================================================ +09:00:57 FNo. Len. Field Value +09:00:57 ============================================================================ +09:00:57 [ 1] [ 4] [0200] +09:00:57 [ 2] [ 16] [6213541000680887] +09:00:57 [ 3] [ 6] [012000] +09:00:57 [ 4] [ 12] [000005000000] +09:00:57 [ 7] [ 10] [0320020003] +09:00:57 [ 11] [ 6] [267336] +09:00:57 [ 12] [ 6] [090003] +09:00:57 [ 13] [ 4] [0320] +09:00:57 [ 14] [ 4] [4912] +09:00:57 [ 15] [ 4] [0320] +09:00:57 [ 18] [ 4] [6011] +09:00:57 [ 19] [ 3] [418] +09:00:57 [ 22] [ 3] [021] +09:00:57 [ 25] [ 2] [01] +09:00:57 [ 28] [ 9] [D00002000] +09:00:57 [ 32] [ 6] [180893] +09:00:57 [ 35] [ 32] [6213541000680887=491212018088917] +09:00:57 [ 37] [ 12] [507902267336] +09:00:57 [ 41] [ 8] [0120SLVB] +09:00:57 [ 42] [ 15] [999999 ] +09:00:57 [ 43] [ 40] [ATM SALAVAN BRANCH LOCATION, Salavan, La] +09:00:57 [ 49] [ 3] [418] +09:00:57 [ 52] [ 16] [CF46447C0B16E151] +09:00:57 ============================================================================ +09:00:57 + + +waiting on router queue for slot.... +09:00:57 Sending to : +09:00:57 ============================================================================ +09:00:57 Sending to : +09:00:57 ============================================================================ +09:00:57 ============================================================================ +09:00:57 Slot Id : <201> +09:00:57 Transaction Type : REQUEST +09:00:57 Received From : +09:00:57 ============================================================================ +09:00:57 FNo. Len. Field Value +09:00:57 ============================================================================ +09:00:57 [ 1] [ 4] [0200] +09:00:57 [ 2] [ 16] [6213541000680887] +09:00:57 [ 3] [ 6] [012000] +09:00:57 [ 4] [ 12] [000005000000] +09:00:57 [ 7] [ 10] [0320020003] +09:00:57 [ 11] [ 6] [267336] +09:00:57 [ 12] [ 6] [090003] +09:00:57 [ 13] [ 4] [0320] +09:00:57 [ 14] [ 4] [4912] +09:00:57 [ 15] [ 4] [0320] +09:00:57 [ 18] [ 4] [6011] +09:00:57 [ 19] [ 3] [418] +09:00:57 [ 22] [ 3] [021] +09:00:57 [ 25] [ 2] [01] +09:00:57 [ 28] [ 9] [D00002000] +09:00:57 [ 32] [ 6] [180893] +09:00:57 [ 35] [ 32] [6213541000680887=491212018088917] +09:00:57 [ 37] [ 12] [507902267336] +09:00:57 [ 41] [ 8] [0120SLVB] +09:00:57 [ 42] [ 15] [999999 ] +09:00:57 [ 43] [ 40] [ATM SALAVAN BRANCH LOCATION, Salavan, La] +09:00:57 [ 49] [ 3] [418] +09:00:57 [ 52] [ 16] [CF46447C0B16E151] +09:00:57 ============================================================================ +09:00:57 + + +waiting on router queue for slot.... +09:00:57 Sending to : +09:00:57 ============================================================================ +09:00:57 ============================================================================ +09:00:57 Slot Id : <201> +09:00:57 Transaction Type : REQUEST +09:00:57 Received From : +09:00:57 ============================================================================ +09:00:57 FNo. Len. Field Value +09:00:57 ============================================================================ +09:00:57 [ 1] [ 4] [0200] +09:00:57 [ 2] [ 16] [6213541000680887] +09:00:57 [ 3] [ 6] [012000] +09:00:57 [ 4] [ 12] [000005000000] +09:00:57 [ 7] [ 10] [0320020003] +09:00:57 [ 11] [ 6] [267336] +09:00:57 [ 12] [ 6] [090003] +09:00:57 [ 13] [ 4] [0320] +09:00:57 [ 14] [ 4] [4912] +09:00:57 [ 15] [ 4] [0320] +09:00:57 [ 18] [ 4] [6011] +09:00:57 [ 19] [ 3] [418] +09:00:57 [ 22] [ 3] [021] +09:00:57 [ 25] [ 2] [01] +09:00:57 [ 28] [ 9] [D00002000] +09:00:57 [ 32] [ 6] [180893] +09:00:57 [ 35] [ 32] [6213541000680887=491212018088917] +09:00:57 [ 37] [ 12] [507902267336] +09:00:57 [ 41] [ 8] [0120SLVB] +09:00:57 [ 42] [ 15] [999999 ] +09:00:57 [ 43] [ 40] [ATM SALAVAN BRANCH LOCATION, Salavan, La] +09:00:57 [ 49] [ 3] [418] +09:00:57 [ 52] [ 16] [D386A057FCACC0EA] +09:00:57 ============================================================================ +09:00:57 + + +waiting on router queue for slot.... +09:00:57 Sending to : <0> +09:00:57 ============================================================================ +09:00:58 ============================================================================ +09:00:58 Slot Id : <201> +09:00:58 Transaction Type : RESPONSE +09:00:58 Received From : +09:00:58 ============================================================================ +09:00:58 FNo. Len. Field Value +09:00:58 ============================================================================ +09:00:58 [ 1] [ 4] [0210] +09:00:58 [ 2] [ 16] [6213541000680887] +09:00:58 [ 3] [ 6] [012000] +09:00:58 [ 4] [ 12] [000005000000] +09:00:58 [ 7] [ 10] [0320020003] +09:00:58 [ 11] [ 6] [267336] +09:00:58 [ 12] [ 6] [090003] +09:00:58 [ 13] [ 4] [0320] +09:00:58 [ 15] [ 4] [0320] +09:00:58 [ 18] [ 4] [6011] +09:00:58 [ 19] [ 3] [418] +09:00:58 [ 32] [ 6] [180893] +09:00:58 [ 35] [ 32] [6213541000680887=491212018088917] +09:00:58 [ 37] [ 12] [507902267336] +09:00:58 [ 38] [ 6] [921019] +09:00:58 [ 39] [ 2] [00] +09:00:58 [ 41] [ 8] [0120SLVB] +09:00:58 [ 49] [ 3] [418] +09:00:58 [ 54] [ 40] [2001418C0005118560372002418C000511856037] +09:00:58 ============================================================================ +09:00:58 Sending to : +09:00:58 ============================================================================ +09:00:58 + + +waiting on router queue for slot.... +09:00:59 ============================================================================ +09:00:59 Slot Id : <201> +09:00:59 Transaction Type : RESPONSE +09:00:59 Received From : +09:00:59 ============================================================================ +09:00:59 FNo. Len. Field Value +09:00:59 ============================================================================ +09:00:59 [ 1] [ 4] [0210] +09:00:59 [ 2] [ 16] [6213541000680887] +09:00:59 [ 3] [ 6] [012000] +09:00:59 [ 4] [ 12] [000005000000] +09:00:59 [ 7] [ 10] [0320020003] +09:00:59 [ 11] [ 6] [267336] +09:00:59 [ 12] [ 6] [090003] +09:00:59 [ 13] [ 4] [0320] +09:00:59 [ 15] [ 4] [0320] +09:00:59 [ 18] [ 4] [6011] +09:00:59 [ 19] [ 3] [418] +09:00:59 [ 32] [ 6] [180893] +09:00:59 [ 35] [ 32] [6213541000680887=491212018088917] +09:00:59 [ 37] [ 12] [507902267336] +09:00:59 [ 38] [ 6] [921019] +09:00:59 [ 39] [ 2] [00] +09:00:59 [ 41] [ 8] [0120SLVB] +09:00:59 [ 49] [ 3] [418] +09:00:59 [ 54] [ 40] [2001418C0005118560372002418C000511856037] +09:00:59 ============================================================================ +09:00:59 Calculate Source COMM Id = 2 +09:00:59 ============================================================================ +09:00:59 + + +waiting on router queue for slot.... +09:01:02 ============================================================================ +09:01:02 Slot Id : <214> +09:01:02 Transaction Type : REQUEST +09:01:02 Received From : +09:01:02 ============================================================================ +09:01:02 FNo. Len. Field Value +09:01:02 ============================================================================ +09:01:02 [ 1] [ 4] [0800] +09:01:02 [ 2] [ 5] [02531] +09:01:02 [ 3] [ 6] [579098] +09:01:02 [ 7] [ 10] [0320020102] +09:01:02 [ 11] [ 6] [806935] +09:01:02 [ 15] [ 10] [0320020102] +09:01:02 [ 37] [ 11] [57909806935] +09:01:02 [ 70] [ 3] [001] +09:01:02 ============================================================================ +09:01:02 + + +waiting on router queue for slot.... +09:01:02 ============================================================================ +09:01:02 Slot Id : <214> +09:01:02 Transaction Type : RESPONSE +09:01:02 Received From : +09:01:02 ============================================================================ +09:01:02 FNo. Len. Field Value +09:01:02 ============================================================================ +09:01:02 [ 1] [ 4] [0810] +09:01:02 [ 7] [ 10] [0320020102] +09:01:02 [ 11] [ 6] [806935] +09:01:02 [ 15] [ 4] [0320] +09:01:02 [ 37] [ 12] [57909806935] +09:01:02 [ 39] [ 2] [00] +09:01:02 [ 70] [ 3] [001] +09:01:02 ============================================================================ +09:01:02 Sending to : +09:01:02 ============================================================================ +09:01:02 + + +waiting on router queue for slot.... +09:01:11 ============================================================================ +09:01:11 Slot Id : <194> +09:01:11 Transaction Type : REQUEST +09:01:11 Received From : +09:01:11 ============================================================================ +09:01:11 FNo. Len. Field Value +09:01:11 ============================================================================ +09:01:11 [ 1] [ 4] [0200] +09:01:11 [ 2] [ 16] [6688990100958501] +09:01:11 [ 3] [ 6] [010000] +09:01:11 [ 4] [ 12] [000100000000] +09:01:11 [ 7] [ 10] [0320090107] +09:01:11 [ 11] [ 6] [692364] +09:01:11 [ 12] [ 6] [090107] +09:01:11 [ 13] [ 4] [0320] +09:01:11 [ 15] [ 4] [0320] +09:01:11 [ 18] [ 4] [6011] +09:01:11 [ 22] [ 3] [900] +09:01:11 [ 25] [ 2] [02] +09:01:11 [ 28] [ 9] [D00002000] +09:01:11 [ 32] [ 6] [621354] +09:01:11 [ 35] [ 37] [6688990100958501=41121231850185800000] +09:01:11 [ 37] [ 12] [507904719400] +09:01:11 [ 41] [ 8] [18001000] +09:01:11 [ 42] [ 15] [NATIVE ] +09:01:11 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:01:11 [ 49] [ 3] [418] +09:01:11 [ 52] [ 16] [335E0EB0C343FEC0] +09:01:11 ============================================================================ +09:01:11 + + +waiting on router queue for slot.... +09:01:11 Sending to : +09:01:11 ============================================================================ +09:01:11 Sending to : +09:01:11 ============================================================================ +09:01:11 ============================================================================ +09:01:11 Slot Id : <194> +09:01:11 Transaction Type : REQUEST +09:01:11 Received From : +09:01:11 ============================================================================ +09:01:11 FNo. Len. Field Value +09:01:11 ============================================================================ +09:01:11 [ 1] [ 4] [0200] +09:01:11 [ 2] [ 16] [6688990100958501] +09:01:11 [ 3] [ 6] [010000] +09:01:11 [ 4] [ 12] [000100000000] +09:01:11 [ 7] [ 10] [0320090107] +09:01:11 [ 11] [ 6] [692364] +09:01:11 [ 12] [ 6] [090107] +09:01:11 [ 13] [ 4] [0320] +09:01:11 [ 15] [ 4] [0320] +09:01:11 [ 18] [ 4] [6011] +09:01:11 [ 22] [ 3] [900] +09:01:11 [ 25] [ 2] [02] +09:01:11 [ 28] [ 9] [D00002000] +09:01:11 [ 32] [ 6] [621354] +09:01:11 [ 35] [ 37] [6688990100958501=41121231850185800000] +09:01:11 [ 37] [ 12] [507904719400] +09:01:11 [ 41] [ 8] [18001000] +09:01:11 [ 42] [ 15] [NATIVE ] +09:01:11 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:01:11 [ 49] [ 3] [418] +09:01:11 [ 52] [ 16] [335E0EB0C343FEC0] +09:01:11 ============================================================================ +09:01:11 + + +waiting on router queue for slot.... +09:01:11 Sending to : +09:01:11 ============================================================================ +09:01:11 ============================================================================ +09:01:11 Slot Id : <194> +09:01:11 Transaction Type : REQUEST +09:01:11 Received From : +09:01:11 ============================================================================ +09:01:11 FNo. Len. Field Value +09:01:11 ============================================================================ +09:01:11 [ 1] [ 4] [0200] +09:01:11 [ 2] [ 16] [6688990100958501] +09:01:11 [ 3] [ 6] [010000] +09:01:11 [ 4] [ 12] [000100000000] +09:01:11 [ 7] [ 10] [0320090107] +09:01:11 [ 11] [ 6] [692364] +09:01:11 [ 12] [ 6] [090107] +09:01:11 [ 13] [ 4] [0320] +09:01:11 [ 15] [ 4] [0320] +09:01:11 [ 18] [ 4] [6011] +09:01:11 [ 22] [ 3] [900] +09:01:11 [ 25] [ 2] [02] +09:01:11 [ 28] [ 9] [D00002000] +09:01:11 [ 32] [ 6] [621354] +09:01:11 [ 35] [ 37] [6688990100958501=41121231850185800000] +09:01:11 [ 37] [ 12] [507904719400] +09:01:11 [ 41] [ 8] [18001000] +09:01:11 [ 42] [ 15] [NATIVE ] +09:01:11 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:01:11 [ 49] [ 3] [418] +09:01:11 [ 52] [ 16] [6F7F2D8B19A9E498] +09:01:11 ============================================================================ +09:01:11 + + +waiting on router queue for slot.... +09:01:11 Sending to : <4> +09:01:11 ============================================================================ +09:01:12 ============================================================================ +09:01:12 Slot Id : <165> +09:01:12 Transaction Type : REQUEST +09:01:12 Received From : +09:01:12 ============================================================================ +09:01:12 FNo. Len. Field Value +09:01:12 ============================================================================ +09:01:12 [ 1] [ 4] [0800] +09:01:12 [ 7] [ 10] [0320020020] +09:01:12 [ 11] [ 6] [155536] +09:01:12 [ 70] [ 3] [301] +09:01:12 ============================================================================ +09:01:12 + + +waiting on router queue for slot.... +09:01:12 Sending to : +09:01:12 ============================================================================ +09:01:12 ============================================================================ +09:01:12 Slot Id : <165> +09:01:12 Transaction Type : RESPONSE +09:01:12 Received From : +09:01:12 ============================================================================ +09:01:12 FNo. Len. Field Value +09:01:12 ============================================================================ +09:01:12 [ 1] [ 4] [0810] +09:01:12 [ 7] [ 10] [0320020020] +09:01:12 [ 11] [ 6] [155536] +09:01:12 [ 39] [ 2] [00] +09:01:12 [ 70] [ 3] [301] +09:01:12 ============================================================================ +09:01:12 Calculate Source COMM Id = 2 +09:01:12 ============================================================================ +09:01:12 + + +waiting on router queue for slot.... +09:01:12 ============================================================================ +09:01:12 Slot Id : <184> +09:01:12 Transaction Type : REQUEST +09:01:12 Received From : +09:01:12 ============================================================================ +09:01:12 FNo. Len. Field Value +09:01:12 ============================================================================ +09:01:12 [ 1] [ 4] [0200] +09:01:12 [ 2] [ 16] [1808930800002636] +09:01:12 [ 3] [ 6] [011000] +09:01:12 [ 4] [ 12] [000100000000] +09:01:12 [ 7] [ 10] [0320090900] +09:01:12 [ 11] [ 6] [001959] +09:01:12 [ 12] [ 6] [090900] +09:01:12 [ 13] [ 4] [0320] +09:01:12 [ 14] [ 4] [1803] +09:01:12 [ 15] [ 4] [0320] +09:01:12 [ 18] [ 4] [6011] +09:01:12 [ 22] [ 3] [900] +09:01:12 [ 25] [ 2] [02] +09:01:12 [ 28] [ 9] [D00002000] +09:01:12 [ 32] [ 6] [220699] +09:01:12 [ 35] [ 27] [1808930800002636=1803500438] +09:01:12 [ 37] [ 12] [507900296946] +09:01:12 [ 41] [ 8] [01001600] +09:01:12 [ 42] [ 15] [APTRA ] +09:01:12 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:01:12 [ 49] [ 3] [418] +09:01:12 [ 52] [ 16] [278C6EBAB5FA4D3D] +09:01:12 ============================================================================ +09:01:12 + + +waiting on router queue for slot.... +09:01:12 Sending to : +09:01:12 ============================================================================ +09:01:12 Sending to : +09:01:12 ============================================================================ +09:01:12 ============================================================================ +09:01:12 Slot Id : <194> +09:01:12 Transaction Type : RESPONSE +09:01:12 Received From : +09:01:12 ============================================================================ +09:01:12 FNo. Len. Field Value +09:01:12 ============================================================================ +09:01:12 [ 1] [ 4] [0210] +09:01:12 [ 2] [ 16] [6688990100958501] +09:01:12 [ 3] [ 6] [010000] +09:01:12 [ 4] [ 12] [000100000000] +09:01:12 [ 11] [ 6] [692364] +09:01:12 [ 12] [ 6] [090107] +09:01:12 [ 15] [ 4] [0320] +09:01:12 [ 18] [ 4] [6011] +09:01:12 [ 32] [ 6] [621354] +09:01:12 [ 35] [ 37] [6688990100958501=41121231850185800000] +09:01:12 [ 37] [ 12] [507904719400] +09:01:12 [ 38] [ 6] [101294] +09:01:12 [ 39] [ 2] [00] +09:01:12 [ 41] [ 8] [18001000] +09:01:12 [ 49] [ 3] [418] +09:01:12 [ 54] [ 20] [0002418C000178238350] +09:01:12 ============================================================================ +09:01:12 Sending to : +09:01:12 ============================================================================ +09:01:12 + + +waiting on router queue for slot.... +09:01:13 ============================================================================ +09:01:13 Slot Id : <184> +09:01:13 Transaction Type : REQUEST +09:01:13 Received From : +09:01:13 ============================================================================ +09:01:13 FNo. Len. Field Value +09:01:13 ============================================================================ +09:01:13 [ 1] [ 4] [0200] +09:01:13 [ 2] [ 16] [1808930800002636] +09:01:13 [ 3] [ 6] [011000] +09:01:13 [ 4] [ 12] [000100000000] +09:01:13 [ 7] [ 10] [0320090900] +09:01:13 [ 11] [ 6] [001959] +09:01:13 [ 12] [ 6] [090900] +09:01:13 [ 13] [ 4] [0320] +09:01:13 [ 14] [ 4] [1803] +09:01:13 [ 15] [ 4] [0320] +09:01:13 [ 18] [ 4] [6011] +09:01:13 [ 22] [ 3] [900] +09:01:13 [ 25] [ 2] [02] +09:01:13 [ 28] [ 9] [D00002000] +09:01:13 [ 32] [ 6] [220699] +09:01:13 [ 35] [ 27] [1808930800002636=1803500438] +09:01:13 [ 37] [ 12] [507900296946] +09:01:13 [ 41] [ 8] [01001600] +09:01:13 [ 42] [ 15] [APTRA ] +09:01:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:01:13 [ 49] [ 3] [418] +09:01:13 [ 52] [ 16] [278C6EBAB5FA4D3D] +09:01:13 ============================================================================ +09:01:13 + + +waiting on router queue for slot.... +09:01:13 Sending to : +09:01:13 ============================================================================ +09:01:13 ============================================================================ +09:01:13 Slot Id : <184> +09:01:13 Transaction Type : REQUEST +09:01:13 Received From : +09:01:13 ============================================================================ +09:01:13 FNo. Len. Field Value +09:01:13 ============================================================================ +09:01:13 [ 1] [ 4] [0200] +09:01:13 [ 2] [ 16] [1808930800002636] +09:01:13 [ 3] [ 6] [011000] +09:01:13 [ 4] [ 12] [000100000000] +09:01:13 [ 7] [ 10] [0320090900] +09:01:13 [ 11] [ 6] [001959] +09:01:13 [ 12] [ 6] [090900] +09:01:13 [ 13] [ 4] [0320] +09:01:13 [ 14] [ 4] [1803] +09:01:13 [ 15] [ 4] [0320] +09:01:13 [ 18] [ 4] [6011] +09:01:13 [ 22] [ 3] [900] +09:01:13 [ 25] [ 2] [02] +09:01:13 [ 28] [ 9] [D00002000] +09:01:13 [ 32] [ 6] [220699] +09:01:13 [ 35] [ 27] [1808930800002636=1803500438] +09:01:13 [ 37] [ 12] [507900296946] +09:01:13 [ 41] [ 8] [01001600] +09:01:13 [ 42] [ 15] [APTRA ] +09:01:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:01:13 [ 49] [ 3] [418] +09:01:13 [ 52] [ 16] [D3A971460B258AA6] +09:01:13 ============================================================================ +09:01:13 + + +waiting on router queue for slot.... +09:01:13 Sending to : <2> +09:01:13 ============================================================================ +09:01:14 ============================================================================ +09:01:14 Slot Id : <194> +09:01:14 Transaction Type : RESPONSE +09:01:14 Received From : +09:01:14 ============================================================================ +09:01:14 FNo. Len. Field Value +09:01:14 ============================================================================ +09:01:14 [ 1] [ 4] [0210] +09:01:14 [ 2] [ 16] [6688990100958501] +09:01:14 [ 3] [ 6] [010000] +09:01:14 [ 4] [ 12] [000100000000] +09:01:14 [ 11] [ 6] [692364] +09:01:14 [ 12] [ 6] [090107] +09:01:14 [ 15] [ 4] [0320] +09:01:14 [ 18] [ 4] [6011] +09:01:14 [ 32] [ 6] [621354] +09:01:14 [ 35] [ 37] [6688990100958501=41121231850185800000] +09:01:14 [ 37] [ 12] [507904719400] +09:01:14 [ 38] [ 6] [101294] +09:01:14 [ 39] [ 2] [00] +09:01:14 [ 41] [ 8] [18001000] +09:01:14 [ 49] [ 3] [418] +09:01:14 [ 54] [ 20] [0002418C000178238350] +09:01:14 ============================================================================ +09:01:14 Calculate Source COMM Id = 0 +09:01:14 ============================================================================ +09:01:14 + + +waiting on router queue for slot.... +09:01:17 ============================================================================ +09:01:17 Slot Id : <184> +09:01:17 Transaction Type : RESPONSE +09:01:17 Received From : +09:01:17 ============================================================================ +09:01:17 FNo. Len. Field Value +09:01:17 ============================================================================ +09:01:17 [ 1] [ 4] [0210] +09:01:17 [ 2] [ 16] [1808930800002636] +09:01:17 [ 3] [ 6] [011000] +09:01:17 [ 4] [ 12] [000100000000] +09:01:17 [ 6] [ 12] [000100000000] +09:01:17 [ 7] [ 10] [0320090900] +09:01:17 [ 11] [ 6] [001959] +09:01:17 [ 12] [ 6] [090900] +09:01:17 [ 13] [ 4] [0320] +09:01:17 [ 14] [ 4] [1803] +09:01:17 [ 18] [ 4] [6011] +09:01:17 [ 19] [ 3] [418] +09:01:17 [ 22] [ 3] [021] +09:01:17 [ 32] [ 6] [220699] +09:01:17 [ 35] [ 27] [1808930800002636=1803500438] +09:01:17 [ 37] [ 12] [507900296946] +09:01:17 [ 38] [ 6] [001959] +09:01:17 [ 39] [ 2] [00] +09:01:17 [ 41] [ 8] [01001600] +09:01:17 [ 49] [ 3] [418] +09:01:17 [ 52] [ 16] [D3A971460B258AA6] +09:01:17 [ 54] [ 20] [1001418C000436544300] +09:01:17 ============================================================================ +09:01:17 Sending to : +09:01:17 ============================================================================ +09:01:17 + + +waiting on router queue for slot.... +09:01:19 ============================================================================ +09:01:19 Slot Id : <184> +09:01:19 Transaction Type : RESPONSE +09:01:19 Received From : +09:01:19 ============================================================================ +09:01:19 FNo. Len. Field Value +09:01:19 ============================================================================ +09:01:19 [ 1] [ 4] [0210] +09:01:19 [ 2] [ 16] [1808930800002636] +09:01:19 [ 3] [ 6] [011000] +09:01:19 [ 4] [ 12] [000100000000] +09:01:19 [ 6] [ 12] [000100000000] +09:01:19 [ 7] [ 10] [0320090900] +09:01:19 [ 11] [ 6] [001959] +09:01:19 [ 12] [ 6] [090900] +09:01:19 [ 13] [ 4] [0320] +09:01:19 [ 14] [ 4] [1803] +09:01:19 [ 18] [ 4] [6011] +09:01:19 [ 19] [ 3] [418] +09:01:19 [ 22] [ 3] [021] +09:01:19 [ 32] [ 6] [220699] +09:01:19 [ 35] [ 27] [1808930800002636=1803500438] +09:01:19 [ 37] [ 12] [507900296946] +09:01:19 [ 38] [ 6] [001959] +09:01:19 [ 39] [ 2] [00] +09:01:19 [ 41] [ 8] [01001600] +09:01:19 [ 49] [ 3] [418] +09:01:19 [ 52] [ 16] [D3A971460B258AA6] +09:01:19 [ 54] [ 20] [1001418C000436544300] +09:01:19 ============================================================================ +09:01:19 Calculate Source COMM Id = 1 +09:01:19 ============================================================================ +09:01:19 + + +waiting on router queue for slot.... +09:01:21 ============================================================================ +09:01:21 Slot Id : <195> +09:01:21 Transaction Type : REQUEST +09:01:21 Received From : +09:01:21 ============================================================================ +09:01:21 FNo. Len. Field Value +09:01:21 ============================================================================ +09:01:21 [ 1] [ 4] [0800] +09:01:21 [ 7] [ 10] [0320015912] +09:01:21 [ 11] [ 6] [017311] +09:01:21 [ 37] [ 12] [57908017311] +09:01:21 [ 70] [ 3] [301] +09:01:21 ============================================================================ +09:01:21 + + +waiting on router queue for slot.... +09:01:21 Sending to : +09:01:21 ============================================================================ +09:01:21 ============================================================================ +09:01:21 Slot Id : <195> +09:01:21 Transaction Type : RESPONSE +09:01:21 Received From : +09:01:21 ============================================================================ +09:01:21 FNo. Len. Field Value +09:01:21 ============================================================================ +09:01:21 [ 1] [ 4] [0810] +09:01:21 [ 7] [ 10] [0320015912] +09:01:21 [ 11] [ 6] [017311] +09:01:21 [ 37] [ 12] [579080173110] +09:01:21 [ 39] [ 2] [00] +09:01:21 [ 70] [ 3] [810] +09:01:21 ============================================================================ +09:01:21 Calculate Source COMM Id = 4 +09:01:21 ============================================================================ +09:01:21 + + +waiting on router queue for slot.... +09:01:27 ============================================================================ +09:01:27 Slot Id : <209> +09:01:27 Transaction Type : REQUEST +09:01:27 Received From : +09:01:27 ============================================================================ +09:01:27 FNo. Len. Field Value +09:01:27 ============================================================================ +09:01:27 [ 1] [ 4] [0800] +09:01:27 [ 7] [ 10] [0320020036] +09:01:27 [ 11] [ 6] [155537] +09:01:27 [ 70] [ 3] [301] +09:01:27 ============================================================================ +09:01:27 + + +waiting on router queue for slot.... +09:01:27 Sending to : +09:01:27 ============================================================================ +09:01:27 ============================================================================ +09:01:27 Slot Id : <209> +09:01:27 Transaction Type : RESPONSE +09:01:27 Received From : +09:01:27 ============================================================================ +09:01:27 FNo. Len. Field Value +09:01:27 ============================================================================ +09:01:27 [ 1] [ 4] [0810] +09:01:27 [ 7] [ 10] [0320020036] +09:01:27 [ 11] [ 6] [155537] +09:01:27 [ 39] [ 2] [00] +09:01:27 [ 70] [ 3] [301] +09:01:27 ============================================================================ +09:01:27 Calculate Source COMM Id = 2 +09:01:27 ============================================================================ +09:01:27 + + +waiting on router queue for slot.... +09:01:30 ============================================================================ +09:01:30 Slot Id : <178> +09:01:30 Transaction Type : REQUEST +09:01:30 Received From : +09:01:30 ============================================================================ +09:01:30 FNo. Len. Field Value +09:01:30 ============================================================================ +09:01:30 [ 1] [ 4] [0200] +09:01:30 [ 2] [ 16] [6213541000696131] +09:01:30 [ 3] [ 6] [301000] +09:01:30 [ 7] [ 10] [0320020037] +09:01:30 [ 11] [ 6] [267341] +09:01:30 [ 12] [ 6] [090037] +09:01:30 [ 13] [ 4] [0320] +09:01:30 [ 14] [ 4] [4912] +09:01:30 [ 15] [ 4] [0320] +09:01:30 [ 18] [ 4] [6011] +09:01:30 [ 19] [ 3] [418] +09:01:30 [ 22] [ 3] [021] +09:01:30 [ 25] [ 2] [01] +09:01:30 [ 32] [ 6] [180893] +09:01:30 [ 35] [ 32] [6213541000696131=491212019613599] +09:01:30 [ 37] [ 12] [507902267341] +09:01:30 [ 41] [ 8] [0111BLBR] +09:01:30 [ 42] [ 15] [999999 ] +09:01:30 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:01:30 [ 49] [ 3] [418] +09:01:30 [ 52] [ 16] [0F658D15DE72A0DA] +09:01:30 ============================================================================ +09:01:30 + + +waiting on router queue for slot.... +09:01:30 Sending to : +09:01:30 ============================================================================ +09:01:30 Sending to : +09:01:30 ============================================================================ +09:01:30 ============================================================================ +09:01:30 Slot Id : <178> +09:01:30 Transaction Type : REQUEST +09:01:30 Received From : +09:01:30 ============================================================================ +09:01:30 FNo. Len. Field Value +09:01:30 ============================================================================ +09:01:30 [ 1] [ 4] [0200] +09:01:30 [ 2] [ 16] [6213541000696131] +09:01:30 [ 3] [ 6] [301000] +09:01:30 [ 7] [ 10] [0320020037] +09:01:30 [ 11] [ 6] [267341] +09:01:30 [ 12] [ 6] [090037] +09:01:30 [ 13] [ 4] [0320] +09:01:30 [ 14] [ 4] [4912] +09:01:30 [ 15] [ 4] [0320] +09:01:30 [ 18] [ 4] [6011] +09:01:30 [ 19] [ 3] [418] +09:01:30 [ 22] [ 3] [021] +09:01:30 [ 25] [ 2] [01] +09:01:30 [ 32] [ 6] [180893] +09:01:30 [ 35] [ 32] [6213541000696131=491212019613599] +09:01:30 [ 37] [ 12] [507902267341] +09:01:30 [ 41] [ 8] [0111BLBR] +09:01:30 [ 42] [ 15] [999999 ] +09:01:30 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:01:30 [ 49] [ 3] [418] +09:01:30 [ 52] [ 16] [0F658D15DE72A0DA] +09:01:30 ============================================================================ +09:01:30 + + +waiting on router queue for slot.... +09:01:30 Sending to : +09:01:30 ============================================================================ +09:01:30 ============================================================================ +09:01:30 Slot Id : <178> +09:01:30 Transaction Type : REQUEST +09:01:30 Received From : +09:01:30 ============================================================================ +09:01:30 FNo. Len. Field Value +09:01:30 ============================================================================ +09:01:30 [ 1] [ 4] [0200] +09:01:30 [ 2] [ 16] [6213541000696131] +09:01:30 [ 3] [ 6] [301000] +09:01:30 [ 7] [ 10] [0320020037] +09:01:30 [ 11] [ 6] [267341] +09:01:30 [ 12] [ 6] [090037] +09:01:30 [ 13] [ 4] [0320] +09:01:30 [ 14] [ 4] [4912] +09:01:30 [ 15] [ 4] [0320] +09:01:30 [ 18] [ 4] [6011] +09:01:30 [ 19] [ 3] [418] +09:01:30 [ 22] [ 3] [021] +09:01:30 [ 25] [ 2] [01] +09:01:30 [ 32] [ 6] [180893] +09:01:30 [ 35] [ 32] [6213541000696131=491212019613599] +09:01:30 [ 37] [ 12] [507902267341] +09:01:30 [ 41] [ 8] [0111BLBR] +09:01:30 [ 42] [ 15] [999999 ] +09:01:30 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:01:30 [ 49] [ 3] [418] +09:01:30 [ 52] [ 16] [20F9AA9E452387AB] +09:01:30 ============================================================================ +09:01:30 + + +waiting on router queue for slot.... +09:01:30 Sending to : <0> +09:01:30 ============================================================================ +09:01:30 ============================================================================ +09:01:30 Slot Id : <178> +09:01:30 Transaction Type : RESPONSE +09:01:30 Received From : +09:01:30 ============================================================================ +09:01:30 FNo. Len. Field Value +09:01:30 ============================================================================ +09:01:30 [ 1] [ 4] [0210] +09:01:30 [ 2] [ 16] [6213541000696131] +09:01:30 [ 3] [ 6] [301000] +09:01:30 [ 4] [ 12] [000000000000] +09:01:30 [ 7] [ 10] [0320020037] +09:01:30 [ 11] [ 6] [267341] +09:01:30 [ 12] [ 6] [090037] +09:01:30 [ 13] [ 4] [0320] +09:01:30 [ 15] [ 4] [0320] +09:01:30 [ 18] [ 4] [6011] +09:01:30 [ 19] [ 3] [418] +09:01:30 [ 32] [ 6] [180893] +09:01:30 [ 35] [ 32] [6213541000696131=491212019613599] +09:01:30 [ 37] [ 12] [507902267341] +09:01:30 [ 38] [ 6] [689546] +09:01:30 [ 39] [ 2] [00] +09:01:30 [ 41] [ 8] [0111BLBR] +09:01:30 [ 49] [ 3] [418] +09:01:30 [ 54] [ 40] [1001418C0001363185531002418C000136318553] +09:01:30 ============================================================================ +09:01:30 Sending to : +09:01:30 ============================================================================ +09:01:30 + + +waiting on router queue for slot.... +09:01:32 ============================================================================ +09:01:32 Slot Id : <178> +09:01:32 Transaction Type : RESPONSE +09:01:32 Received From : +09:01:32 ============================================================================ +09:01:32 FNo. Len. Field Value +09:01:32 ============================================================================ +09:01:32 [ 1] [ 4] [0210] +09:01:32 [ 2] [ 16] [6213541000696131] +09:01:32 [ 3] [ 6] [301000] +09:01:32 [ 4] [ 12] [000000000000] +09:01:32 [ 7] [ 10] [0320020037] +09:01:32 [ 11] [ 6] [267341] +09:01:32 [ 12] [ 6] [090037] +09:01:32 [ 13] [ 4] [0320] +09:01:32 [ 15] [ 4] [0320] +09:01:32 [ 18] [ 4] [6011] +09:01:32 [ 19] [ 3] [418] +09:01:32 [ 32] [ 6] [180893] +09:01:32 [ 35] [ 32] [6213541000696131=491212019613599] +09:01:32 [ 37] [ 12] [507902267341] +09:01:32 [ 38] [ 6] [689546] +09:01:32 [ 39] [ 2] [00] +09:01:32 [ 41] [ 8] [0111BLBR] +09:01:32 [ 49] [ 3] [418] +09:01:32 [ 54] [ 40] [1001418C0001363185531002418C000136318553] +09:01:32 ============================================================================ +09:01:32 Calculate Source COMM Id = 2 +09:01:32 ============================================================================ +09:01:32 + + +waiting on router queue for slot.... +09:01:37 ============================================================================ +09:01:37 Slot Id : <208> +09:01:37 Transaction Type : REQUEST +09:01:37 Received From : +09:01:37 ============================================================================ +09:01:37 FNo. Len. Field Value +09:01:37 ============================================================================ +09:01:37 [ 1] [ 4] [0200] +09:01:37 [ 2] [ 16] [1808930400010799] +09:01:37 [ 3] [ 6] [011000] +09:01:37 [ 4] [ 12] [000100000000] +09:01:37 [ 7] [ 10] [0320090133] +09:01:37 [ 11] [ 6] [692479] +09:01:37 [ 12] [ 6] [090133] +09:01:37 [ 13] [ 4] [0320] +09:01:37 [ 15] [ 4] [0320] +09:01:37 [ 18] [ 4] [6011] +09:01:37 [ 22] [ 3] [900] +09:01:37 [ 25] [ 2] [02] +09:01:37 [ 28] [ 9] [D00002000] +09:01:37 [ 32] [ 6] [621354] +09:01:37 [ 35] [ 27] [1808930400010799=1803500167] +09:01:37 [ 37] [ 12] [507904965462] +09:01:37 [ 41] [ 8] [15001100] +09:01:37 [ 42] [ 15] [NATIVE ] +09:01:37 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:01:37 [ 49] [ 3] [418] +09:01:37 [ 52] [ 16] [EBAB7E1A255E21EF] +09:01:37 ============================================================================ +09:01:37 + + +waiting on router queue for slot.... +09:01:37 Sending to : +09:01:37 ============================================================================ +09:01:37 Sending to : +09:01:37 ============================================================================ +09:01:37 ============================================================================ +09:01:37 Slot Id : <208> +09:01:37 Transaction Type : REQUEST +09:01:37 Received From : +09:01:37 ============================================================================ +09:01:37 FNo. Len. Field Value +09:01:37 ============================================================================ +09:01:37 [ 1] [ 4] [0200] +09:01:37 [ 2] [ 16] [1808930400010799] +09:01:37 [ 3] [ 6] [011000] +09:01:37 [ 4] [ 12] [000100000000] +09:01:37 [ 7] [ 10] [0320090133] +09:01:37 [ 11] [ 6] [692479] +09:01:37 [ 12] [ 6] [090133] +09:01:37 [ 13] [ 4] [0320] +09:01:37 [ 15] [ 4] [0320] +09:01:37 [ 18] [ 4] [6011] +09:01:37 [ 22] [ 3] [900] +09:01:37 [ 25] [ 2] [02] +09:01:37 [ 28] [ 9] [D00002000] +09:01:37 [ 32] [ 6] [621354] +09:01:37 [ 35] [ 27] [1808930400010799=1803500167] +09:01:37 [ 37] [ 12] [507904965462] +09:01:37 [ 41] [ 8] [15001100] +09:01:37 [ 42] [ 15] [NATIVE ] +09:01:37 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:01:37 [ 49] [ 3] [418] +09:01:37 [ 52] [ 16] [EBAB7E1A255E21EF] +09:01:37 ============================================================================ +09:01:37 + + +waiting on router queue for slot.... +09:01:37 Sending to : +09:01:37 ============================================================================ +09:01:37 ============================================================================ +09:01:37 Slot Id : <208> +09:01:37 Transaction Type : REQUEST +09:01:37 Received From : +09:01:37 ============================================================================ +09:01:37 FNo. Len. Field Value +09:01:37 ============================================================================ +09:01:37 [ 1] [ 4] [0200] +09:01:37 [ 2] [ 16] [1808930400010799] +09:01:37 [ 3] [ 6] [011000] +09:01:37 [ 4] [ 12] [000100000000] +09:01:37 [ 7] [ 10] [0320090133] +09:01:37 [ 11] [ 6] [692479] +09:01:37 [ 12] [ 6] [090133] +09:01:37 [ 13] [ 4] [0320] +09:01:37 [ 15] [ 4] [0320] +09:01:37 [ 18] [ 4] [6011] +09:01:37 [ 22] [ 3] [900] +09:01:37 [ 25] [ 2] [02] +09:01:37 [ 28] [ 9] [D00002000] +09:01:37 [ 32] [ 6] [621354] +09:01:37 [ 35] [ 27] [1808930400010799=1803500167] +09:01:37 [ 37] [ 12] [507904965462] +09:01:37 [ 41] [ 8] [15001100] +09:01:37 [ 42] [ 15] [NATIVE ] +09:01:37 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:01:37 [ 49] [ 3] [418] +09:01:37 [ 52] [ 16] [C4CB1FA4DB39A123] +09:01:37 ============================================================================ +09:01:37 + + +waiting on router queue for slot.... +09:01:37 Sending to : <2> +09:01:37 ============================================================================ +09:01:41 ============================================================================ +09:01:41 Slot Id : <213> +09:01:41 Transaction Type : REQUEST +09:01:41 Received From : +09:01:41 ============================================================================ +09:01:41 FNo. Len. Field Value +09:01:41 ============================================================================ +09:01:41 [ 1] [ 4] [0200] +09:01:41 [ 2] [ 16] [6213543000184530] +09:01:41 [ 3] [ 6] [011000] +09:01:41 [ 4] [ 12] [000100000000] +09:01:41 [ 7] [ 10] [0320090928] +09:01:41 [ 11] [ 6] [085584] +09:01:41 [ 12] [ 6] [090928] +09:01:41 [ 13] [ 4] [0320] +09:01:41 [ 14] [ 4] [4912] +09:01:41 [ 15] [ 4] [0320] +09:01:41 [ 18] [ 4] [6011] +09:01:41 [ 22] [ 3] [900] +09:01:41 [ 25] [ 2] [02] +09:01:41 [ 28] [ 9] [D00002000] +09:01:41 [ 32] [ 6] [220699] +09:01:41 [ 35] [ 32] [6213543000184530=491212018453176] +09:01:41 [ 37] [ 12] [507900140205] +09:01:41 [ 41] [ 8] [03000200] +09:01:41 [ 42] [ 15] [APTRA ] +09:01:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:01:41 [ 49] [ 3] [418] +09:01:41 [ 52] [ 16] [04214334F2F1B733] +09:01:41 ============================================================================ +09:01:41 + + +waiting on router queue for slot.... +09:01:41 Sending to : +09:01:41 ============================================================================ +09:01:41 Sending to : +09:01:41 ============================================================================ +09:01:41 ============================================================================ +09:01:41 Slot Id : <213> +09:01:41 Transaction Type : REQUEST +09:01:41 Received From : +09:01:41 ============================================================================ +09:01:41 FNo. Len. Field Value +09:01:41 ============================================================================ +09:01:41 [ 1] [ 4] [0200] +09:01:41 [ 2] [ 16] [6213543000184530] +09:01:41 [ 3] [ 6] [011000] +09:01:41 [ 4] [ 12] [000100000000] +09:01:41 [ 7] [ 10] [0320090928] +09:01:41 [ 11] [ 6] [085584] +09:01:41 [ 12] [ 6] [090928] +09:01:41 [ 13] [ 4] [0320] +09:01:41 [ 14] [ 4] [4912] +09:01:41 [ 15] [ 4] [0320] +09:01:41 [ 18] [ 4] [6011] +09:01:41 [ 22] [ 3] [900] +09:01:41 [ 25] [ 2] [02] +09:01:41 [ 28] [ 9] [D00002000] +09:01:41 [ 32] [ 6] [220699] +09:01:41 [ 35] [ 32] [6213543000184530=491212018453176] +09:01:41 [ 37] [ 12] [507900140205] +09:01:41 [ 41] [ 8] [03000200] +09:01:41 [ 42] [ 15] [APTRA ] +09:01:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:01:41 [ 49] [ 3] [418] +09:01:41 [ 52] [ 16] [04214334F2F1B733] +09:01:41 ============================================================================ +09:01:41 + + +waiting on router queue for slot.... +09:01:41 Sending to : +09:01:41 ============================================================================ +09:01:41 ============================================================================ +09:01:41 Slot Id : <213> +09:01:41 Transaction Type : REQUEST +09:01:41 Received From : +09:01:41 ============================================================================ +09:01:41 FNo. Len. Field Value +09:01:41 ============================================================================ +09:01:41 [ 1] [ 4] [0200] +09:01:41 [ 2] [ 16] [6213543000184530] +09:01:41 [ 3] [ 6] [011000] +09:01:41 [ 4] [ 12] [000100000000] +09:01:41 [ 7] [ 10] [0320090928] +09:01:41 [ 11] [ 6] [085584] +09:01:41 [ 12] [ 6] [090928] +09:01:41 [ 13] [ 4] [0320] +09:01:41 [ 14] [ 4] [4912] +09:01:41 [ 15] [ 4] [0320] +09:01:41 [ 18] [ 4] [6011] +09:01:41 [ 22] [ 3] [900] +09:01:41 [ 25] [ 2] [02] +09:01:41 [ 28] [ 9] [D00002000] +09:01:41 [ 32] [ 6] [220699] +09:01:41 [ 35] [ 32] [6213543000184530=491212018453176] +09:01:41 [ 37] [ 12] [507900140205] +09:01:41 [ 41] [ 8] [03000200] +09:01:41 [ 42] [ 15] [APTRA ] +09:01:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:01:41 [ 49] [ 3] [418] +09:01:41 [ 52] [ 16] [1FF669CBC2944074] +09:01:41 ============================================================================ +09:01:41 + + +waiting on router queue for slot.... +09:01:41 Sending to : <0> +09:01:41 ============================================================================ +09:01:42 ============================================================================ +09:01:42 Slot Id : <213> +09:01:42 Transaction Type : RESPONSE +09:01:42 Received From : +09:01:42 ============================================================================ +09:01:42 FNo. Len. Field Value +09:01:42 ============================================================================ +09:01:42 [ 1] [ 4] [0210] +09:01:42 [ 2] [ 16] [6213543000184530] +09:01:42 [ 3] [ 6] [011000] +09:01:42 [ 4] [ 12] [000100000000] +09:01:42 [ 7] [ 10] [0320090928] +09:01:42 [ 11] [ 6] [085584] +09:01:42 [ 12] [ 6] [090928] +09:01:42 [ 13] [ 4] [0320] +09:01:42 [ 15] [ 4] [0320] +09:01:42 [ 18] [ 4] [6011] +09:01:42 [ 22] [ 3] [900] +09:01:42 [ 32] [ 6] [220699] +09:01:42 [ 35] [ 32] [6213543000184530=491212018453176] +09:01:42 [ 37] [ 12] [507900140205] +09:01:42 [ 38] [ 6] [090138] +09:01:42 [ 39] [ 2] [55] +09:01:42 [ 41] [ 8] [03000200] +09:01:42 [ 49] [ 3] [418] +09:01:42 ============================================================================ +09:01:42 Sending to : +09:01:42 ============================================================================ +09:01:42 + + +waiting on router queue for slot.... +09:01:42 ============================================================================ +09:01:42 Slot Id : <208> +09:01:42 Transaction Type : RESPONSE +09:01:42 Received From : +09:01:42 ============================================================================ +09:01:42 FNo. Len. Field Value +09:01:42 ============================================================================ +09:01:42 [ 1] [ 4] [0210] +09:01:42 [ 2] [ 16] [1808930400010799] +09:01:42 [ 3] [ 6] [011000] +09:01:42 [ 4] [ 12] [000100000000] +09:01:42 [ 6] [ 12] [000100000000] +09:01:42 [ 7] [ 10] [0320090133] +09:01:42 [ 11] [ 6] [692479] +09:01:42 [ 12] [ 6] [090133] +09:01:42 [ 13] [ 4] [0320] +09:01:42 [ 18] [ 4] [6011] +09:01:42 [ 19] [ 3] [418] +09:01:42 [ 22] [ 3] [021] +09:01:42 [ 32] [ 6] [621354] +09:01:42 [ 35] [ 27] [1808930400010799=1803500167] +09:01:42 [ 37] [ 12] [507904965462] +09:01:42 [ 38] [ 6] [692479] +09:01:42 [ 39] [ 2] [00] +09:01:42 [ 41] [ 8] [15001100] +09:01:42 [ 49] [ 3] [418] +09:01:42 [ 52] [ 16] [C4CB1FA4DB39A123] +09:01:42 [ 54] [ 20] [1001418C000796202300] +09:01:42 ============================================================================ +09:01:42 Sending to : +09:01:42 ============================================================================ +09:01:42 + + +waiting on router queue for slot.... +09:01:43 ============================================================================ +09:01:43 Slot Id : <213> +09:01:43 Transaction Type : RESPONSE +09:01:43 Received From : +09:01:43 ============================================================================ +09:01:43 FNo. Len. Field Value +09:01:43 ============================================================================ +09:01:43 [ 1] [ 4] [0210] +09:01:43 [ 2] [ 16] [6213543000184530] +09:01:43 [ 3] [ 6] [011000] +09:01:43 [ 4] [ 12] [000100000000] +09:01:43 [ 7] [ 10] [0320090928] +09:01:43 [ 11] [ 6] [085584] +09:01:43 [ 12] [ 6] [090928] +09:01:43 [ 13] [ 4] [0320] +09:01:43 [ 15] [ 4] [0320] +09:01:43 [ 18] [ 4] [6011] +09:01:43 [ 22] [ 3] [900] +09:01:43 [ 32] [ 6] [220699] +09:01:43 [ 35] [ 32] [6213543000184530=491212018453176] +09:01:43 [ 37] [ 12] [507900140205] +09:01:43 [ 38] [ 6] [090138] +09:01:43 [ 39] [ 2] [55] +09:01:43 [ 41] [ 8] [03000200] +09:01:43 [ 49] [ 3] [418] +09:01:43 ============================================================================ +09:01:43 Calculate Source COMM Id = 1 +09:01:43 ============================================================================ +09:01:43 + + +waiting on router queue for slot.... +09:01:45 ============================================================================ +09:01:45 Slot Id : <208> +09:01:45 Transaction Type : RESPONSE +09:01:45 Received From : +09:01:45 ============================================================================ +09:01:45 FNo. Len. Field Value +09:01:45 ============================================================================ +09:01:45 [ 1] [ 4] [0210] +09:01:45 [ 2] [ 16] [1808930400010799] +09:01:45 [ 3] [ 6] [011000] +09:01:45 [ 4] [ 12] [000100000000] +09:01:45 [ 6] [ 12] [000100000000] +09:01:45 [ 7] [ 10] [0320090133] +09:01:45 [ 11] [ 6] [692479] +09:01:45 [ 12] [ 6] [090133] +09:01:45 [ 13] [ 4] [0320] +09:01:45 [ 18] [ 4] [6011] +09:01:45 [ 19] [ 3] [418] +09:01:45 [ 22] [ 3] [021] +09:01:45 [ 32] [ 6] [621354] +09:01:45 [ 35] [ 27] [1808930400010799=1803500167] +09:01:45 [ 37] [ 12] [507904965462] +09:01:45 [ 38] [ 6] [692479] +09:01:45 [ 39] [ 2] [00] +09:01:45 [ 41] [ 8] [15001100] +09:01:45 [ 49] [ 3] [418] +09:01:45 [ 52] [ 16] [C4CB1FA4DB39A123] +09:01:45 [ 54] [ 20] [1001418C000796202300] +09:01:45 ============================================================================ +09:01:45 Calculate Source COMM Id = 0 +09:01:45 ============================================================================ +09:01:45 + + +waiting on router queue for slot.... +09:01:46 ============================================================================ +09:01:46 Slot Id : <193> +09:01:46 Transaction Type : REQUEST +09:01:46 Received From : +09:01:46 ============================================================================ +09:01:46 FNo. Len. Field Value +09:01:46 ============================================================================ +09:01:46 [ 1] [ 4] [0200] +09:01:46 [ 2] [ 16] [2206990000106021] +09:01:46 [ 3] [ 6] [011000] +09:01:46 [ 4] [ 12] [000100000000] +09:01:46 [ 7] [ 10] [0320090142] +09:01:46 [ 11] [ 6] [692509] +09:01:46 [ 12] [ 6] [090142] +09:01:46 [ 13] [ 4] [0320] +09:01:46 [ 15] [ 4] [0320] +09:01:46 [ 18] [ 4] [6011] +09:01:46 [ 22] [ 3] [900] +09:01:46 [ 25] [ 2] [02] +09:01:46 [ 28] [ 9] [D00002000] +09:01:46 [ 32] [ 6] [621354] +09:01:46 [ 35] [ 32] [2206990000106021=971212617051186] +09:01:46 [ 37] [ 12] [507903939004] +09:01:46 [ 41] [ 8] [01010900] +09:01:46 [ 42] [ 15] [NATIVE ] +09:01:46 [ 43] [ 40] [Bank KM9 Xatthany LAO] +09:01:46 [ 49] [ 3] [418] +09:01:46 [ 52] [ 16] [669068BCC3AA5E09] +09:01:46 ============================================================================ +09:01:46 + + +waiting on router queue for slot.... +09:01:46 Sending to : +09:01:46 ============================================================================ +09:01:46 Sending to : +09:01:46 ============================================================================ +09:01:46 ============================================================================ +09:01:46 Slot Id : <193> +09:01:46 Transaction Type : REQUEST +09:01:46 Received From : +09:01:46 ============================================================================ +09:01:46 FNo. Len. Field Value +09:01:46 ============================================================================ +09:01:46 [ 1] [ 4] [0200] +09:01:46 [ 2] [ 16] [2206990000106021] +09:01:46 [ 3] [ 6] [011000] +09:01:46 [ 4] [ 12] [000100000000] +09:01:46 [ 7] [ 10] [0320090142] +09:01:46 [ 11] [ 6] [692509] +09:01:46 [ 12] [ 6] [090142] +09:01:46 [ 13] [ 4] [0320] +09:01:46 [ 15] [ 4] [0320] +09:01:46 [ 18] [ 4] [6011] +09:01:46 [ 22] [ 3] [900] +09:01:46 [ 25] [ 2] [02] +09:01:46 [ 28] [ 9] [D00002000] +09:01:46 [ 32] [ 6] [621354] +09:01:46 [ 35] [ 32] [2206990000106021=971212617051186] +09:01:46 [ 37] [ 12] [507903939004] +09:01:46 [ 41] [ 8] [01010900] +09:01:46 [ 42] [ 15] [NATIVE ] +09:01:46 [ 43] [ 40] [Bank KM9 Xatthany LAO] +09:01:46 [ 49] [ 3] [418] +09:01:46 [ 52] [ 16] [669068BCC3AA5E09] +09:01:46 ============================================================================ +09:01:46 + + +waiting on router queue for slot.... +09:01:46 Sending to : +09:01:46 ============================================================================ +09:01:46 ============================================================================ +09:01:46 Slot Id : <193> +09:01:46 Transaction Type : REQUEST +09:01:46 Received From : +09:01:46 ============================================================================ +09:01:46 FNo. Len. Field Value +09:01:46 ============================================================================ +09:01:46 [ 1] [ 4] [0200] +09:01:46 [ 2] [ 16] [2206990000106021] +09:01:46 [ 3] [ 6] [011000] +09:01:46 [ 4] [ 12] [000100000000] +09:01:46 [ 7] [ 10] [0320090142] +09:01:46 [ 11] [ 6] [692509] +09:01:46 [ 12] [ 6] [090142] +09:01:46 [ 13] [ 4] [0320] +09:01:46 [ 15] [ 4] [0320] +09:01:46 [ 18] [ 4] [6011] +09:01:46 [ 22] [ 3] [900] +09:01:46 [ 25] [ 2] [02] +09:01:46 [ 28] [ 9] [D00002000] +09:01:46 [ 32] [ 6] [621354] +09:01:46 [ 35] [ 32] [2206990000106021=971212617051186] +09:01:46 [ 37] [ 12] [507903939004] +09:01:46 [ 41] [ 8] [01010900] +09:01:46 [ 42] [ 15] [NATIVE ] +09:01:46 [ 43] [ 40] [Bank KM9 Xatthany LAO] +09:01:46 [ 49] [ 3] [418] +09:01:46 [ 52] [ 16] [38024D1874F51CE5] +09:01:46 ============================================================================ +09:01:46 + + +waiting on router queue for slot.... +09:01:46 Sending to : <1> +09:01:46 ============================================================================ +09:01:46 ============================================================================ +09:01:46 Slot Id : <206> +09:01:46 Transaction Type : REQUEST +09:01:46 Received From : +09:01:46 ============================================================================ +09:01:46 FNo. Len. Field Value +09:01:46 ============================================================================ +09:01:46 [ 1] [ 4] [0800] +09:01:46 [ 7] [ 10] [0320161336] +09:01:46 [ 11] [ 6] [091336] +09:01:46 [ 37] [ 12] [57909091336] +09:01:46 [ 70] [ 3] [301] +09:01:46 ============================================================================ +09:01:46 + + +waiting on router queue for slot.... +09:01:46 Sending to : +09:01:46 ============================================================================ +09:01:46 ============================================================================ +09:01:46 Slot Id : <206> +09:01:46 Transaction Type : RESPONSE +09:01:46 Received From : +09:01:46 ============================================================================ +09:01:46 FNo. Len. Field Value +09:01:46 ============================================================================ +09:01:46 [ 1] [ 4] [0810] +09:01:46 [ 7] [ 10] [0320161336] +09:01:46 [ 11] [ 6] [091336] +09:01:46 [ 37] [ 12] [579090913360] +09:01:46 [ 39] [ 2] [00] +09:01:46 [ 70] [ 3] [810] +09:01:46 ============================================================================ +09:01:46 Calculate Source COMM Id = 6 +09:01:46 ============================================================================ +09:01:46 + + +waiting on router queue for slot.... +09:01:48 ============================================================================ +09:01:48 Slot Id : <193> +09:01:48 Transaction Type : RESPONSE +09:01:48 Received From : +09:01:48 ============================================================================ +09:01:48 FNo. Len. Field Value +09:01:48 ============================================================================ +09:01:48 [ 1] [ 4] [0210] +09:01:48 [ 2] [ 16] [2206990000106021] +09:01:48 [ 3] [ 6] [011000] +09:01:48 [ 4] [ 12] [000100000000] +09:01:48 [ 7] [ 10] [0320090142] +09:01:48 [ 11] [ 6] [692509] +09:01:48 [ 12] [ 6] [090142] +09:01:48 [ 13] [ 4] [0320] +09:01:48 [ 15] [ 4] [0320] +09:01:48 [ 18] [ 4] [6011] +09:01:48 [ 32] [ 6] [621354] +09:01:48 [ 35] [ 32] [2206990000106021=971212617051186] +09:01:48 [ 37] [ 12] [507903939004] +09:01:48 [ 38] [ 6] [078312] +09:01:48 [ 39] [ 2] [00] +09:01:48 [ 41] [ 8] [01010900] +09:01:48 [ 49] [ 3] [418] +09:01:48 [ 54] [ 40] [1001418C0001697235001002418C000169723500] +09:01:48 ============================================================================ +09:01:48 Sending to : +09:01:48 ============================================================================ +09:01:48 + + +waiting on router queue for slot.... +09:01:49 ============================================================================ +09:01:49 Slot Id : <221> +09:01:49 Transaction Type : REQUEST +09:01:49 Received From : +09:01:49 ============================================================================ +09:01:49 FNo. Len. Field Value +09:01:49 ============================================================================ +09:01:49 [ 1] [ 4] [0800] +09:01:49 [ 7] [ 10] [0320020057] +09:01:49 [ 11] [ 6] [155538] +09:01:49 [ 70] [ 3] [301] +09:01:49 ============================================================================ +09:01:49 + + +waiting on router queue for slot.... +09:01:49 Sending to : +09:01:49 ============================================================================ +09:01:49 ============================================================================ +09:01:49 Slot Id : <221> +09:01:49 Transaction Type : RESPONSE +09:01:49 Received From : +09:01:49 ============================================================================ +09:01:49 FNo. Len. Field Value +09:01:49 ============================================================================ +09:01:49 [ 1] [ 4] [0810] +09:01:49 [ 7] [ 10] [0320020057] +09:01:49 [ 11] [ 6] [155538] +09:01:49 [ 39] [ 2] [00] +09:01:49 [ 70] [ 3] [301] +09:01:49 ============================================================================ +09:01:49 Calculate Source COMM Id = 2 +09:01:49 ============================================================================ +09:01:49 + + +waiting on router queue for slot.... +09:01:50 ============================================================================ +09:01:50 Slot Id : <193> +09:01:50 Transaction Type : RESPONSE +09:01:50 Received From : +09:01:50 ============================================================================ +09:01:50 FNo. Len. Field Value +09:01:50 ============================================================================ +09:01:50 [ 1] [ 4] [0210] +09:01:50 [ 2] [ 16] [2206990000106021] +09:01:50 [ 3] [ 6] [011000] +09:01:50 [ 4] [ 12] [000100000000] +09:01:50 [ 7] [ 10] [0320090142] +09:01:50 [ 11] [ 6] [692509] +09:01:50 [ 12] [ 6] [090142] +09:01:50 [ 13] [ 4] [0320] +09:01:50 [ 15] [ 4] [0320] +09:01:50 [ 18] [ 4] [6011] +09:01:50 [ 32] [ 6] [621354] +09:01:50 [ 35] [ 32] [2206990000106021=971212617051186] +09:01:50 [ 37] [ 12] [507903939004] +09:01:50 [ 38] [ 6] [078312] +09:01:50 [ 39] [ 2] [00] +09:01:50 [ 41] [ 8] [01010900] +09:01:50 [ 49] [ 3] [418] +09:01:50 [ 54] [ 40] [1001418C0001697235001002418C000169723500] +09:01:50 ============================================================================ +09:01:50 Calculate Source COMM Id = 0 +09:01:50 ============================================================================ +09:01:50 + + +waiting on router queue for slot.... +09:01:52 ============================================================================ +09:01:52 Slot Id : <212> +09:01:52 Transaction Type : REQUEST +09:01:52 Received From : +09:01:52 ============================================================================ +09:01:52 FNo. Len. Field Value +09:01:52 ============================================================================ +09:01:52 [ 1] [ 4] [0200] +09:01:52 [ 2] [ 16] [1888880000096891] +09:01:52 [ 3] [ 6] [012000] +09:01:52 [ 4] [ 12] [000040000000] +09:01:52 [ 7] [ 10] [0320090148] +09:01:52 [ 11] [ 6] [692524] +09:01:52 [ 12] [ 6] [090148] +09:01:52 [ 13] [ 4] [0320] +09:01:52 [ 15] [ 4] [0320] +09:01:52 [ 18] [ 4] [6011] +09:01:52 [ 22] [ 3] [900] +09:01:52 [ 25] [ 2] [02] +09:01:52 [ 28] [ 9] [D00002000] +09:01:52 [ 32] [ 6] [621354] +09:01:52 [ 35] [ 32] [1888880000096891=000010100000300] +09:01:52 [ 37] [ 12] [507903683150] +09:01:52 [ 41] [ 8] [01008800] +09:01:52 [ 42] [ 15] [NATIVE ] +09:01:52 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +09:01:52 [ 49] [ 3] [418] +09:01:52 [ 52] [ 16] [F8156B5412FAC0B7] +09:01:52 ============================================================================ +09:01:52 + + +waiting on router queue for slot.... +09:01:52 Sending to : +09:01:52 ============================================================================ +09:01:52 Sending to : +09:01:52 ============================================================================ +09:01:52 ============================================================================ +09:01:52 Slot Id : <212> +09:01:52 Transaction Type : REQUEST +09:01:52 Received From : +09:01:52 ============================================================================ +09:01:52 FNo. Len. Field Value +09:01:52 ============================================================================ +09:01:52 [ 1] [ 4] [0200] +09:01:52 [ 2] [ 16] [1888880000096891] +09:01:52 [ 3] [ 6] [012000] +09:01:52 [ 4] [ 12] [000040000000] +09:01:52 [ 7] [ 10] [0320090148] +09:01:52 [ 11] [ 6] [692524] +09:01:52 [ 12] [ 6] [090148] +09:01:52 [ 13] [ 4] [0320] +09:01:52 [ 15] [ 4] [0320] +09:01:52 [ 18] [ 4] [6011] +09:01:52 [ 22] [ 3] [900] +09:01:52 [ 25] [ 2] [02] +09:01:52 [ 28] [ 9] [D00002000] +09:01:52 [ 32] [ 6] [621354] +09:01:52 [ 35] [ 32] [1888880000096891=000010100000300] +09:01:52 [ 37] [ 12] [507903683150] +09:01:52 [ 41] [ 8] [01008800] +09:01:52 [ 42] [ 15] [NATIVE ] +09:01:52 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +09:01:52 [ 49] [ 3] [418] +09:01:52 [ 52] [ 16] [F8156B5412FAC0B7] +09:01:52 ============================================================================ +09:01:52 + + +waiting on router queue for slot.... +09:01:52 Sending to : +09:01:52 ============================================================================ +09:01:52 ============================================================================ +09:01:52 Slot Id : <212> +09:01:52 Transaction Type : REQUEST +09:01:52 Received From : +09:01:52 ============================================================================ +09:01:52 FNo. Len. Field Value +09:01:52 ============================================================================ +09:01:52 [ 1] [ 4] [0200] +09:01:52 [ 2] [ 16] [1888880000096891] +09:01:52 [ 3] [ 6] [012000] +09:01:52 [ 4] [ 12] [000040000000] +09:01:52 [ 7] [ 10] [0320090148] +09:01:52 [ 11] [ 6] [692524] +09:01:52 [ 12] [ 6] [090148] +09:01:52 [ 13] [ 4] [0320] +09:01:52 [ 15] [ 4] [0320] +09:01:52 [ 18] [ 4] [6011] +09:01:52 [ 22] [ 3] [900] +09:01:52 [ 25] [ 2] [02] +09:01:52 [ 28] [ 9] [D00002000] +09:01:52 [ 32] [ 6] [621354] +09:01:52 [ 35] [ 32] [1888880000096891=000010100000300] +09:01:52 [ 37] [ 12] [507903683150] +09:01:52 [ 41] [ 8] [01008800] +09:01:52 [ 42] [ 15] [NATIVE ] +09:01:52 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +09:01:52 [ 49] [ 3] [418] +09:01:52 [ 52] [ 16] [295C829E54D03BA4] +09:01:52 ============================================================================ +09:01:52 + + +waiting on router queue for slot.... +09:01:52 Sending to : <5> +09:01:52 ============================================================================ +09:02:00 ============================================================================ +09:02:00 Slot Id : <212> +09:02:00 Transaction Type : RESPONSE +09:02:00 Received From : +09:02:00 ============================================================================ +09:02:00 FNo. Len. Field Value +09:02:00 ============================================================================ +09:02:00 [ 1] [ 4] [0210] +09:02:00 [ 2] [ 16] [1888880000096891] +09:02:00 [ 3] [ 6] [012000] +09:02:00 [ 4] [ 12] [000040000000] +09:02:00 [ 7] [ 10] [0320090148] +09:02:00 [ 11] [ 6] [692524] +09:02:00 [ 12] [ 6] [090148] +09:02:00 [ 13] [ 4] [0320] +09:02:00 [ 15] [ 4] [0320] +09:02:00 [ 18] [ 4] [6011] +09:02:00 [ 19] [ 3] [418] +09:02:00 [ 32] [ 6] [621354] +09:02:00 [ 37] [ 12] [507903683150] +09:02:00 [ 38] [ 6] [805176] +09:02:00 [ 39] [ 2] [00] +09:02:00 [ 41] [ 8] [01008800] +09:02:00 [ 49] [ 3] [418] +09:02:00 [ 54] [ 0] [] +09:02:00 ============================================================================ +09:02:00 Sending to : +09:02:00 ============================================================================ +09:02:00 + + +waiting on router queue for slot.... +09:02:01 ============================================================================ +09:02:01 Slot Id : <212> +09:02:01 Transaction Type : RESPONSE +09:02:01 Received From : +09:02:01 ============================================================================ +09:02:01 FNo. Len. Field Value +09:02:01 ============================================================================ +09:02:01 [ 1] [ 4] [0210] +09:02:01 [ 2] [ 16] [1888880000096891] +09:02:01 [ 3] [ 6] [012000] +09:02:01 [ 4] [ 12] [000040000000] +09:02:01 [ 7] [ 10] [0320090148] +09:02:01 [ 11] [ 6] [692524] +09:02:01 [ 12] [ 6] [090148] +09:02:01 [ 13] [ 4] [0320] +09:02:01 [ 15] [ 4] [0320] +09:02:01 [ 18] [ 4] [6011] +09:02:01 [ 19] [ 3] [418] +09:02:01 [ 32] [ 6] [621354] +09:02:01 [ 37] [ 12] [507903683150] +09:02:01 [ 38] [ 6] [805176] +09:02:01 [ 39] [ 2] [00] +09:02:01 [ 41] [ 8] [01008800] +09:02:01 [ 49] [ 3] [418] +09:02:01 [ 54] [ 0] [] +09:02:01 ============================================================================ +09:02:01 Calculate Source COMM Id = 0 +09:02:01 ============================================================================ +09:02:01 + + +waiting on router queue for slot.... +09:02:03 ============================================================================ +09:02:03 Slot Id : <211> +09:02:03 Transaction Type : REQUEST +09:02:03 Received From : +09:02:03 ============================================================================ +09:02:03 FNo. Len. Field Value +09:02:03 ============================================================================ +09:02:03 [ 1] [ 4] [0200] +09:02:03 [ 2] [ 16] [6213541000696131] +09:02:03 [ 3] [ 6] [010000] +09:02:03 [ 4] [ 12] [000100000000] +09:02:03 [ 7] [ 10] [0320020109] +09:02:03 [ 11] [ 6] [267346] +09:02:03 [ 12] [ 6] [090109] +09:02:03 [ 13] [ 4] [0320] +09:02:03 [ 14] [ 4] [4912] +09:02:03 [ 15] [ 4] [0320] +09:02:03 [ 18] [ 4] [6011] +09:02:03 [ 19] [ 3] [418] +09:02:03 [ 22] [ 3] [021] +09:02:03 [ 25] [ 2] [01] +09:02:03 [ 28] [ 9] [D00002000] +09:02:03 [ 32] [ 6] [180893] +09:02:03 [ 35] [ 32] [6213541000696131=491212019613599] +09:02:03 [ 37] [ 12] [507902267346] +09:02:03 [ 41] [ 8] [0111BLBR] +09:02:03 [ 42] [ 15] [999999 ] +09:02:03 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:02:03 [ 49] [ 3] [418] +09:02:03 [ 52] [ 16] [0F658D15DE72A0DA] +09:02:03 ============================================================================ +09:02:03 + + +waiting on router queue for slot.... +09:02:03 Sending to : +09:02:03 ============================================================================ +09:02:03 Sending to : +09:02:03 ============================================================================ +09:02:03 ============================================================================ +09:02:03 Slot Id : <211> +09:02:03 Transaction Type : REQUEST +09:02:03 Received From : +09:02:03 ============================================================================ +09:02:03 FNo. Len. Field Value +09:02:03 ============================================================================ +09:02:03 [ 1] [ 4] [0200] +09:02:03 [ 2] [ 16] [6213541000696131] +09:02:03 [ 3] [ 6] [010000] +09:02:03 [ 4] [ 12] [000100000000] +09:02:03 [ 7] [ 10] [0320020109] +09:02:03 [ 11] [ 6] [267346] +09:02:03 [ 12] [ 6] [090109] +09:02:03 [ 13] [ 4] [0320] +09:02:03 [ 14] [ 4] [4912] +09:02:03 [ 15] [ 4] [0320] +09:02:03 [ 18] [ 4] [6011] +09:02:03 [ 19] [ 3] [418] +09:02:03 [ 22] [ 3] [021] +09:02:03 [ 25] [ 2] [01] +09:02:03 [ 28] [ 9] [D00002000] +09:02:03 [ 32] [ 6] [180893] +09:02:03 [ 35] [ 32] [6213541000696131=491212019613599] +09:02:03 [ 37] [ 12] [507902267346] +09:02:03 [ 41] [ 8] [0111BLBR] +09:02:03 [ 42] [ 15] [999999 ] +09:02:03 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:02:03 [ 49] [ 3] [418] +09:02:03 [ 52] [ 16] [0F658D15DE72A0DA] +09:02:03 ============================================================================ +09:02:03 + + +waiting on router queue for slot.... +09:02:03 Sending to : +09:02:03 ============================================================================ +09:02:03 ============================================================================ +09:02:03 Slot Id : <211> +09:02:03 Transaction Type : REQUEST +09:02:03 Received From : +09:02:03 ============================================================================ +09:02:03 FNo. Len. Field Value +09:02:03 ============================================================================ +09:02:03 [ 1] [ 4] [0200] +09:02:03 [ 2] [ 16] [6213541000696131] +09:02:03 [ 3] [ 6] [010000] +09:02:03 [ 4] [ 12] [000100000000] +09:02:03 [ 7] [ 10] [0320020109] +09:02:03 [ 11] [ 6] [267346] +09:02:03 [ 12] [ 6] [090109] +09:02:03 [ 13] [ 4] [0320] +09:02:03 [ 14] [ 4] [4912] +09:02:03 [ 15] [ 4] [0320] +09:02:03 [ 18] [ 4] [6011] +09:02:03 [ 19] [ 3] [418] +09:02:03 [ 22] [ 3] [021] +09:02:03 [ 25] [ 2] [01] +09:02:03 [ 28] [ 9] [D00002000] +09:02:03 [ 32] [ 6] [180893] +09:02:03 [ 35] [ 32] [6213541000696131=491212019613599] +09:02:03 [ 37] [ 12] [507902267346] +09:02:03 [ 41] [ 8] [0111BLBR] +09:02:03 [ 42] [ 15] [999999 ] +09:02:03 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:02:03 [ 49] [ 3] [418] +09:02:03 [ 52] [ 16] [20F9AA9E452387AB] +09:02:03 ============================================================================ +09:02:03 + + +waiting on router queue for slot.... +09:02:03 Sending to : <0> +09:02:03 ============================================================================ +09:02:04 ============================================================================ +09:02:04 Slot Id : <185> +09:02:04 Transaction Type : REQUEST +09:02:04 Received From : +09:02:04 ============================================================================ +09:02:04 FNo. Len. Field Value +09:02:04 ============================================================================ +09:02:04 [ 1] [ 4] [0800] +09:02:04 [ 2] [ 5] [02531] +09:02:04 [ 3] [ 6] [579098] +09:02:04 [ 7] [ 10] [0320020204] +09:02:04 [ 11] [ 6] [806936] +09:02:04 [ 15] [ 10] [0320020204] +09:02:04 [ 37] [ 11] [57909806936] +09:02:04 [ 70] [ 3] [001] +09:02:04 ============================================================================ +09:02:04 + + +waiting on router queue for slot.... +09:02:04 ============================================================================ +09:02:04 Slot Id : <185> +09:02:04 Transaction Type : RESPONSE +09:02:04 Received From : +09:02:04 ============================================================================ +09:02:04 FNo. Len. Field Value +09:02:04 ============================================================================ +09:02:04 [ 1] [ 4] [0810] +09:02:04 [ 7] [ 10] [0320020204] +09:02:04 [ 11] [ 6] [806936] +09:02:04 [ 15] [ 4] [0320] +09:02:04 [ 37] [ 12] [57909806936] +09:02:04 [ 39] [ 2] [00] +09:02:04 [ 70] [ 3] [001] +09:02:04 ============================================================================ +09:02:04 Sending to : +09:02:04 ============================================================================ +09:02:04 + + +waiting on router queue for slot.... +09:02:05 ============================================================================ +09:02:05 Slot Id : <211> +09:02:05 Transaction Type : RESPONSE +09:02:05 Received From : +09:02:05 ============================================================================ +09:02:05 FNo. Len. Field Value +09:02:05 ============================================================================ +09:02:05 [ 1] [ 4] [0210] +09:02:05 [ 2] [ 16] [6213541000696131] +09:02:05 [ 3] [ 6] [010000] +09:02:05 [ 4] [ 12] [000100000000] +09:02:05 [ 7] [ 10] [0320020109] +09:02:05 [ 11] [ 6] [267346] +09:02:05 [ 12] [ 6] [090109] +09:02:05 [ 13] [ 4] [0320] +09:02:05 [ 15] [ 4] [0320] +09:02:05 [ 18] [ 4] [6011] +09:02:05 [ 19] [ 3] [418] +09:02:05 [ 32] [ 6] [180893] +09:02:05 [ 35] [ 32] [6213541000696131=491212019613599] +09:02:05 [ 37] [ 12] [507902267346] +09:02:05 [ 38] [ 6] [741147] +09:02:05 [ 39] [ 2] [00] +09:02:05 [ 41] [ 8] [0111BLBR] +09:02:05 [ 49] [ 3] [418] +09:02:05 [ 54] [ 40] [0001418C0000361185530002418C000036118553] +09:02:05 ============================================================================ +09:02:05 Sending to : +09:02:05 ============================================================================ +09:02:05 + + +waiting on router queue for slot.... +09:02:05 ============================================================================ +09:02:05 Slot Id : <183> +09:02:05 Transaction Type : REQUEST +09:02:05 Received From : +09:02:05 ============================================================================ +09:02:05 FNo. Len. Field Value +09:02:05 ============================================================================ +09:02:05 [ 1] [ 4] [0200] +09:02:05 [ 2] [ 16] [1808930500014303] +09:02:05 [ 3] [ 6] [010000] +09:02:05 [ 4] [ 12] [000080000000] +09:02:05 [ 7] [ 10] [0320085956] +09:02:05 [ 11] [ 6] [934457] +09:02:05 [ 12] [ 6] [085956] +09:02:05 [ 13] [ 4] [0320] +09:02:05 [ 15] [ 4] [0320] +09:02:05 [ 18] [ 4] [6011] +09:02:05 [ 19] [ 3] [418] +09:02:05 [ 22] [ 3] [021] +09:02:05 [ 25] [ 2] [01] +09:02:05 [ 28] [ 9] [D00002000] +09:02:05 [ 32] [ 6] [668899] +09:02:05 [ 35] [ 27] [1808930500014303=1803500022] +09:02:05 [ 37] [ 12] [507900844840] +09:02:05 [ 41] [ 8] [03015003] +09:02:05 [ 42] [ 15] [APT ] +09:02:05 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:02:05 [ 49] [ 3] [418] +09:02:05 [ 52] [ 16] [10FFC6C354F7AB45] +09:02:05 ============================================================================ +09:02:05 + + +waiting on router queue for slot.... +09:02:05 Sending to : +09:02:05 ============================================================================ +09:02:05 Sending to : +09:02:05 ============================================================================ +09:02:05 ============================================================================ +09:02:05 Slot Id : <207> +09:02:05 Transaction Type : REQUEST +09:02:05 Received From : +09:02:05 ============================================================================ +09:02:05 FNo. Len. Field Value +09:02:05 ============================================================================ +09:02:05 [ 1] [ 4] [0800] +09:02:05 [ 7] [ 10] [0320020113] +09:02:05 [ 11] [ 6] [155539] +09:02:05 [ 70] [ 3] [301] +09:02:05 ============================================================================ +09:02:05 + + +waiting on router queue for slot.... +09:02:05 Sending to : +09:02:05 ============================================================================ +09:02:05 ============================================================================ +09:02:05 Slot Id : <207> +09:02:05 Transaction Type : RESPONSE +09:02:05 Received From : +09:02:05 ============================================================================ +09:02:05 FNo. Len. Field Value +09:02:05 ============================================================================ +09:02:05 [ 1] [ 4] [0810] +09:02:05 [ 7] [ 10] [0320020113] +09:02:05 [ 11] [ 6] [155539] +09:02:05 [ 39] [ 2] [00] +09:02:05 [ 70] [ 3] [301] +09:02:05 ============================================================================ +09:02:05 Calculate Source COMM Id = 2 +09:02:05 ============================================================================ +09:02:05 + + +waiting on router queue for slot.... +09:02:05 ============================================================================ +09:02:05 Slot Id : <183> +09:02:05 Transaction Type : REQUEST +09:02:05 Received From : +09:02:05 ============================================================================ +09:02:05 FNo. Len. Field Value +09:02:05 ============================================================================ +09:02:05 [ 1] [ 4] [0200] +09:02:05 [ 2] [ 16] [1808930500014303] +09:02:05 [ 3] [ 6] [010000] +09:02:05 [ 4] [ 12] [000080000000] +09:02:05 [ 7] [ 10] [0320085956] +09:02:05 [ 11] [ 6] [934457] +09:02:05 [ 12] [ 6] [085956] +09:02:05 [ 13] [ 4] [0320] +09:02:05 [ 15] [ 4] [0320] +09:02:05 [ 18] [ 4] [6011] +09:02:05 [ 19] [ 3] [418] +09:02:05 [ 22] [ 3] [021] +09:02:05 [ 25] [ 2] [01] +09:02:05 [ 28] [ 9] [D00002000] +09:02:05 [ 32] [ 6] [668899] +09:02:05 [ 35] [ 27] [1808930500014303=1803500022] +09:02:05 [ 37] [ 12] [507900844840] +09:02:05 [ 41] [ 8] [03015003] +09:02:05 [ 42] [ 15] [APT ] +09:02:05 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:02:05 [ 49] [ 3] [418] +09:02:05 [ 52] [ 16] [10FFC6C354F7AB45] +09:02:05 ============================================================================ +09:02:05 + + +waiting on router queue for slot.... +09:02:05 Sending to : +09:02:05 ============================================================================ +09:02:05 ============================================================================ +09:02:05 Slot Id : <183> +09:02:05 Transaction Type : REQUEST +09:02:05 Received From : +09:02:05 ============================================================================ +09:02:05 FNo. Len. Field Value +09:02:05 ============================================================================ +09:02:05 [ 1] [ 4] [0200] +09:02:05 [ 2] [ 16] [1808930500014303] +09:02:05 [ 3] [ 6] [010000] +09:02:05 [ 4] [ 12] [000080000000] +09:02:05 [ 7] [ 10] [0320085956] +09:02:05 [ 11] [ 6] [934457] +09:02:05 [ 12] [ 6] [085956] +09:02:05 [ 13] [ 4] [0320] +09:02:05 [ 15] [ 4] [0320] +09:02:05 [ 18] [ 4] [6011] +09:02:05 [ 19] [ 3] [418] +09:02:05 [ 22] [ 3] [021] +09:02:05 [ 25] [ 2] [01] +09:02:05 [ 28] [ 9] [D00002000] +09:02:05 [ 32] [ 6] [668899] +09:02:05 [ 35] [ 27] [1808930500014303=1803500022] +09:02:05 [ 37] [ 12] [507900844840] +09:02:05 [ 41] [ 8] [03015003] +09:02:05 [ 42] [ 15] [APT ] +09:02:05 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:02:05 [ 49] [ 3] [418] +09:02:05 [ 52] [ 16] [08F610331435960F] +09:02:05 ============================================================================ +09:02:05 + + +waiting on router queue for slot.... +09:02:05 Sending to : <2> +09:02:05 ============================================================================ +09:02:06 ============================================================================ +09:02:06 Slot Id : <211> +09:02:06 Transaction Type : RESPONSE +09:02:06 Received From : +09:02:06 ============================================================================ +09:02:06 FNo. Len. Field Value +09:02:06 ============================================================================ +09:02:06 [ 1] [ 4] [0210] +09:02:06 [ 2] [ 16] [6213541000696131] +09:02:06 [ 3] [ 6] [010000] +09:02:06 [ 4] [ 12] [000100000000] +09:02:06 [ 7] [ 10] [0320020109] +09:02:06 [ 11] [ 6] [267346] +09:02:06 [ 12] [ 6] [090109] +09:02:06 [ 13] [ 4] [0320] +09:02:06 [ 15] [ 4] [0320] +09:02:06 [ 18] [ 4] [6011] +09:02:06 [ 19] [ 3] [418] +09:02:06 [ 32] [ 6] [180893] +09:02:06 [ 35] [ 32] [6213541000696131=491212019613599] +09:02:06 [ 37] [ 12] [507902267346] +09:02:06 [ 38] [ 6] [741147] +09:02:06 [ 39] [ 2] [00] +09:02:06 [ 41] [ 8] [0111BLBR] +09:02:06 [ 49] [ 3] [418] +09:02:06 [ 54] [ 40] [0001418C0000361185530002418C000036118553] +09:02:06 ============================================================================ +09:02:06 Calculate Source COMM Id = 2 +09:02:06 ============================================================================ +09:02:06 + + +waiting on router queue for slot.... +09:02:09 ============================================================================ +09:02:09 Slot Id : <183> +09:02:09 Transaction Type : RESPONSE +09:02:09 Received From : +09:02:09 ============================================================================ +09:02:09 FNo. Len. Field Value +09:02:09 ============================================================================ +09:02:09 [ 1] [ 4] [0210] +09:02:09 [ 2] [ 16] [1808930500014303] +09:02:09 [ 3] [ 6] [010000] +09:02:09 [ 4] [ 12] [000080000000] +09:02:09 [ 6] [ 12] [000080000000] +09:02:09 [ 7] [ 10] [0320085956] +09:02:09 [ 11] [ 6] [934457] +09:02:09 [ 12] [ 6] [085956] +09:02:09 [ 13] [ 4] [0320] +09:02:09 [ 18] [ 4] [6011] +09:02:09 [ 19] [ 3] [418] +09:02:09 [ 22] [ 3] [021] +09:02:09 [ 32] [ 6] [668899] +09:02:09 [ 35] [ 27] [1808930500014303=1803500022] +09:02:09 [ 37] [ 12] [507900844840] +09:02:09 [ 38] [ 6] [934457] +09:02:09 [ 39] [ 2] [51] +09:02:09 [ 41] [ 8] [03015003] +09:02:09 [ 49] [ 3] [418] +09:02:09 [ 52] [ 16] [08F610331435960F] +09:02:09 ============================================================================ +09:02:09 Sending to : +09:02:09 ============================================================================ +09:02:09 + + +waiting on router queue for slot.... +09:02:10 ============================================================================ +09:02:10 Slot Id : <183> +09:02:10 Transaction Type : RESPONSE +09:02:10 Received From : +09:02:10 ============================================================================ +09:02:10 FNo. Len. Field Value +09:02:10 ============================================================================ +09:02:10 [ 1] [ 4] [0210] +09:02:10 [ 2] [ 16] [1808930500014303] +09:02:10 [ 3] [ 6] [010000] +09:02:10 [ 4] [ 12] [000080000000] +09:02:10 [ 6] [ 12] [000080000000] +09:02:10 [ 7] [ 10] [0320085956] +09:02:10 [ 11] [ 6] [934457] +09:02:10 [ 12] [ 6] [085956] +09:02:10 [ 13] [ 4] [0320] +09:02:10 [ 18] [ 4] [6011] +09:02:10 [ 19] [ 3] [418] +09:02:10 [ 22] [ 3] [021] +09:02:10 [ 32] [ 6] [668899] +09:02:10 [ 35] [ 27] [1808930500014303=1803500022] +09:02:10 [ 37] [ 12] [507900844840] +09:02:10 [ 38] [ 6] [934457] +09:02:10 [ 39] [ 2] [51] +09:02:10 [ 41] [ 8] [03015003] +09:02:10 [ 49] [ 3] [418] +09:02:10 [ 52] [ 16] [08F610331435960F] +09:02:10 ============================================================================ +09:02:10 Calculate Source COMM Id = 4 +09:02:10 ============================================================================ +09:02:10 + + +waiting on router queue for slot.... +09:02:13 ============================================================================ +09:02:13 Slot Id : <149> +09:02:13 Transaction Type : REQUEST +09:02:13 Received From : +09:02:13 ============================================================================ +09:02:13 FNo. Len. Field Value +09:02:13 ============================================================================ +09:02:13 [ 1] [ 4] [0200] +09:02:13 [ 2] [ 16] [1808930800002636] +09:02:13 [ 3] [ 6] [011000] +09:02:13 [ 4] [ 12] [000100000000] +09:02:13 [ 7] [ 10] [0320090959] +09:02:13 [ 11] [ 6] [001962] +09:02:13 [ 12] [ 6] [090959] +09:02:13 [ 13] [ 4] [0320] +09:02:13 [ 14] [ 4] [1803] +09:02:13 [ 15] [ 4] [0320] +09:02:13 [ 18] [ 4] [6011] +09:02:13 [ 22] [ 3] [900] +09:02:13 [ 25] [ 2] [02] +09:02:13 [ 28] [ 9] [D00002000] +09:02:13 [ 32] [ 6] [220699] +09:02:13 [ 35] [ 27] [1808930800002636=1803500438] +09:02:13 [ 37] [ 12] [507900296948] +09:02:13 [ 41] [ 8] [01001600] +09:02:13 [ 42] [ 15] [APTRA ] +09:02:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:02:13 [ 49] [ 3] [418] +09:02:13 [ 52] [ 16] [278C6EBAB5FA4D3D] +09:02:13 ============================================================================ +09:02:13 + + +waiting on router queue for slot.... +09:02:13 Sending to : +09:02:13 ============================================================================ +09:02:13 Sending to : +09:02:13 ============================================================================ +09:02:13 ============================================================================ +09:02:13 Slot Id : <149> +09:02:13 Transaction Type : REQUEST +09:02:13 Received From : +09:02:13 ============================================================================ +09:02:13 FNo. Len. Field Value +09:02:13 ============================================================================ +09:02:13 [ 1] [ 4] [0200] +09:02:13 [ 2] [ 16] [1808930800002636] +09:02:13 [ 3] [ 6] [011000] +09:02:13 [ 4] [ 12] [000100000000] +09:02:13 [ 7] [ 10] [0320090959] +09:02:13 [ 11] [ 6] [001962] +09:02:13 [ 12] [ 6] [090959] +09:02:13 [ 13] [ 4] [0320] +09:02:13 [ 14] [ 4] [1803] +09:02:13 [ 15] [ 4] [0320] +09:02:13 [ 18] [ 4] [6011] +09:02:13 [ 22] [ 3] [900] +09:02:13 [ 25] [ 2] [02] +09:02:13 [ 28] [ 9] [D00002000] +09:02:13 [ 32] [ 6] [220699] +09:02:13 [ 35] [ 27] [1808930800002636=1803500438] +09:02:13 [ 37] [ 12] [507900296948] +09:02:13 [ 41] [ 8] [01001600] +09:02:13 [ 42] [ 15] [APTRA ] +09:02:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:02:13 [ 49] [ 3] [418] +09:02:13 [ 52] [ 16] [278C6EBAB5FA4D3D] +09:02:13 ============================================================================ +09:02:13 + + +waiting on router queue for slot.... +09:02:13 Sending to : +09:02:13 ============================================================================ +09:02:13 ============================================================================ +09:02:13 Slot Id : <149> +09:02:13 Transaction Type : REQUEST +09:02:13 Received From : +09:02:13 ============================================================================ +09:02:13 FNo. Len. Field Value +09:02:13 ============================================================================ +09:02:13 [ 1] [ 4] [0200] +09:02:13 [ 2] [ 16] [1808930800002636] +09:02:13 [ 3] [ 6] [011000] +09:02:13 [ 4] [ 12] [000100000000] +09:02:13 [ 7] [ 10] [0320090959] +09:02:13 [ 11] [ 6] [001962] +09:02:13 [ 12] [ 6] [090959] +09:02:13 [ 13] [ 4] [0320] +09:02:13 [ 14] [ 4] [1803] +09:02:13 [ 15] [ 4] [0320] +09:02:13 [ 18] [ 4] [6011] +09:02:13 [ 22] [ 3] [900] +09:02:13 [ 25] [ 2] [02] +09:02:13 [ 28] [ 9] [D00002000] +09:02:13 [ 32] [ 6] [220699] +09:02:13 [ 35] [ 27] [1808930800002636=1803500438] +09:02:13 [ 37] [ 12] [507900296948] +09:02:13 [ 41] [ 8] [01001600] +09:02:13 [ 42] [ 15] [APTRA ] +09:02:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:02:13 [ 49] [ 3] [418] +09:02:13 [ 52] [ 16] [D3A971460B258AA6] +09:02:13 ============================================================================ +09:02:13 + + +waiting on router queue for slot.... +09:02:13 Sending to : <2> +09:02:13 ============================================================================ +09:02:18 ============================================================================ +09:02:18 Slot Id : <149> +09:02:18 Transaction Type : RESPONSE +09:02:18 Received From : +09:02:18 ============================================================================ +09:02:18 FNo. Len. Field Value +09:02:18 ============================================================================ +09:02:18 [ 1] [ 4] [0210] +09:02:18 [ 2] [ 16] [1808930800002636] +09:02:18 [ 3] [ 6] [011000] +09:02:18 [ 4] [ 12] [000100000000] +09:02:18 [ 6] [ 12] [000100000000] +09:02:18 [ 7] [ 10] [0320090959] +09:02:18 [ 11] [ 6] [001962] +09:02:18 [ 12] [ 6] [090959] +09:02:18 [ 13] [ 4] [0320] +09:02:18 [ 14] [ 4] [1803] +09:02:18 [ 18] [ 4] [6011] +09:02:18 [ 19] [ 3] [418] +09:02:18 [ 22] [ 3] [021] +09:02:18 [ 32] [ 6] [220699] +09:02:18 [ 35] [ 27] [1808930800002636=1803500438] +09:02:18 [ 37] [ 12] [507900296948] +09:02:18 [ 38] [ 6] [001962] +09:02:18 [ 39] [ 2] [00] +09:02:18 [ 41] [ 8] [01001600] +09:02:18 [ 49] [ 3] [418] +09:02:18 [ 52] [ 16] [D3A971460B258AA6] +09:02:18 [ 54] [ 20] [1001418C000336344300] +09:02:18 ============================================================================ +09:02:18 Sending to : +09:02:18 ============================================================================ +09:02:18 + + +waiting on router queue for slot.... +09:02:20 ============================================================================ +09:02:20 Slot Id : <149> +09:02:20 Transaction Type : RESPONSE +09:02:20 Received From : +09:02:20 ============================================================================ +09:02:20 FNo. Len. Field Value +09:02:20 ============================================================================ +09:02:20 [ 1] [ 4] [0210] +09:02:20 [ 2] [ 16] [1808930800002636] +09:02:20 [ 3] [ 6] [011000] +09:02:20 [ 4] [ 12] [000100000000] +09:02:20 [ 6] [ 12] [000100000000] +09:02:20 [ 7] [ 10] [0320090959] +09:02:20 [ 11] [ 6] [001962] +09:02:20 [ 12] [ 6] [090959] +09:02:20 [ 13] [ 4] [0320] +09:02:20 [ 14] [ 4] [1803] +09:02:20 [ 18] [ 4] [6011] +09:02:20 [ 19] [ 3] [418] +09:02:20 [ 22] [ 3] [021] +09:02:20 [ 32] [ 6] [220699] +09:02:20 [ 35] [ 27] [1808930800002636=1803500438] +09:02:20 [ 37] [ 12] [507900296948] +09:02:20 [ 38] [ 6] [001962] +09:02:20 [ 39] [ 2] [00] +09:02:20 [ 41] [ 8] [01001600] +09:02:20 [ 49] [ 3] [418] +09:02:20 [ 52] [ 16] [D3A971460B258AA6] +09:02:20 [ 54] [ 20] [1001418C000336344300] +09:02:20 ============================================================================ +09:02:20 Calculate Source COMM Id = 1 +09:02:20 ============================================================================ +09:02:20 + + +waiting on router queue for slot.... +09:02:27 ============================================================================ +09:02:27 Slot Id : <174> +09:02:27 Transaction Type : REQUEST +09:02:27 Received From : +09:02:27 ============================================================================ +09:02:27 FNo. Len. Field Value +09:02:27 ============================================================================ +09:02:27 [ 1] [ 4] [0800] +09:02:27 [ 7] [ 10] [0320020135] +09:02:27 [ 11] [ 6] [155540] +09:02:27 [ 70] [ 3] [301] +09:02:27 ============================================================================ +09:02:27 + + +waiting on router queue for slot.... +09:02:27 Sending to : +09:02:27 ============================================================================ +09:02:27 ============================================================================ +09:02:27 Slot Id : <174> +09:02:27 Transaction Type : RESPONSE +09:02:27 Received From : +09:02:27 ============================================================================ +09:02:27 FNo. Len. Field Value +09:02:27 ============================================================================ +09:02:27 [ 1] [ 4] [0810] +09:02:27 [ 7] [ 10] [0320020135] +09:02:27 [ 11] [ 6] [155540] +09:02:27 [ 39] [ 2] [00] +09:02:27 [ 70] [ 3] [301] +09:02:27 ============================================================================ +09:02:27 Calculate Source COMM Id = 2 +09:02:27 ============================================================================ +09:02:27 + + +waiting on router queue for slot.... +09:02:28 ============================================================================ +09:02:28 Slot Id : <180> +09:02:28 Transaction Type : REQUEST +09:02:28 Received From : +09:02:28 ============================================================================ +09:02:28 FNo. Len. Field Value +09:02:28 ============================================================================ +09:02:28 [ 1] [ 4] [0200] +09:02:28 [ 2] [ 16] [6213541000086093] +09:02:28 [ 3] [ 6] [010000] +09:02:28 [ 4] [ 12] [000150000000] +09:02:28 [ 7] [ 10] [0320020134] +09:02:28 [ 11] [ 6] [267350] +09:02:28 [ 12] [ 6] [090134] +09:02:28 [ 13] [ 4] [0320] +09:02:28 [ 14] [ 4] [4912] +09:02:28 [ 15] [ 4] [0320] +09:02:28 [ 18] [ 4] [6011] +09:02:28 [ 19] [ 3] [418] +09:02:28 [ 22] [ 3] [021] +09:02:28 [ 25] [ 2] [01] +09:02:28 [ 28] [ 9] [D00002000] +09:02:28 [ 32] [ 6] [180893] +09:02:28 [ 35] [ 32] [6213541000086093=491212018609189] +09:02:28 [ 37] [ 12] [507902267350] +09:02:28 [ 41] [ 8] [0369SLVL] +09:02:28 [ 42] [ 15] [999999 ] +09:02:28 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:02:28 [ 49] [ 3] [418] +09:02:28 [ 52] [ 16] [769A64628C906B68] +09:02:28 ============================================================================ +09:02:28 + + +waiting on router queue for slot.... +09:02:28 Sending to : +09:02:28 ============================================================================ +09:02:28 Sending to : +09:02:28 ============================================================================ +09:02:28 ============================================================================ +09:02:28 Slot Id : <180> +09:02:28 Transaction Type : REQUEST +09:02:28 Received From : +09:02:28 ============================================================================ +09:02:28 FNo. Len. Field Value +09:02:28 ============================================================================ +09:02:28 [ 1] [ 4] [0200] +09:02:28 [ 2] [ 16] [6213541000086093] +09:02:28 [ 3] [ 6] [010000] +09:02:28 [ 4] [ 12] [000150000000] +09:02:28 [ 7] [ 10] [0320020134] +09:02:28 [ 11] [ 6] [267350] +09:02:28 [ 12] [ 6] [090134] +09:02:28 [ 13] [ 4] [0320] +09:02:28 [ 14] [ 4] [4912] +09:02:28 [ 15] [ 4] [0320] +09:02:28 [ 18] [ 4] [6011] +09:02:28 [ 19] [ 3] [418] +09:02:28 [ 22] [ 3] [021] +09:02:28 [ 25] [ 2] [01] +09:02:28 [ 28] [ 9] [D00002000] +09:02:28 [ 32] [ 6] [180893] +09:02:28 [ 35] [ 32] [6213541000086093=491212018609189] +09:02:28 [ 37] [ 12] [507902267350] +09:02:28 [ 41] [ 8] [0369SLVL] +09:02:28 [ 42] [ 15] [999999 ] +09:02:28 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:02:28 [ 49] [ 3] [418] +09:02:28 [ 52] [ 16] [769A64628C906B68] +09:02:28 ============================================================================ +09:02:28 + + +waiting on router queue for slot.... +09:02:28 Sending to : +09:02:28 ============================================================================ +09:02:28 ============================================================================ +09:02:28 Slot Id : <180> +09:02:28 Transaction Type : REQUEST +09:02:28 Received From : +09:02:28 ============================================================================ +09:02:28 FNo. Len. Field Value +09:02:28 ============================================================================ +09:02:28 [ 1] [ 4] [0200] +09:02:28 [ 2] [ 16] [6213541000086093] +09:02:28 [ 3] [ 6] [010000] +09:02:28 [ 4] [ 12] [000150000000] +09:02:28 [ 7] [ 10] [0320020134] +09:02:28 [ 11] [ 6] [267350] +09:02:28 [ 12] [ 6] [090134] +09:02:28 [ 13] [ 4] [0320] +09:02:28 [ 14] [ 4] [4912] +09:02:28 [ 15] [ 4] [0320] +09:02:28 [ 18] [ 4] [6011] +09:02:28 [ 19] [ 3] [418] +09:02:28 [ 22] [ 3] [021] +09:02:28 [ 25] [ 2] [01] +09:02:28 [ 28] [ 9] [D00002000] +09:02:28 [ 32] [ 6] [180893] +09:02:28 [ 35] [ 32] [6213541000086093=491212018609189] +09:02:28 [ 37] [ 12] [507902267350] +09:02:28 [ 41] [ 8] [0369SLVL] +09:02:28 [ 42] [ 15] [999999 ] +09:02:28 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:02:28 [ 49] [ 3] [418] +09:02:28 [ 52] [ 16] [D2DB777CBCDFC682] +09:02:28 ============================================================================ +09:02:28 + + +waiting on router queue for slot.... +09:02:28 Sending to : <0> +09:02:28 ============================================================================ +09:02:28 ============================================================================ +09:02:28 Slot Id : <168> +09:02:28 Transaction Type : REQUEST +09:02:28 Received From : +09:02:28 ============================================================================ +09:02:28 FNo. Len. Field Value +09:02:28 ============================================================================ +09:02:28 [ 1] [ 4] [0200] +09:02:28 [ 2] [ 16] [6688990100958501] +09:02:28 [ 3] [ 6] [010000] +09:02:28 [ 4] [ 12] [000100000000] +09:02:28 [ 7] [ 10] [0320090224] +09:02:28 [ 11] [ 6] [692648] +09:02:28 [ 12] [ 6] [090224] +09:02:28 [ 13] [ 4] [0320] +09:02:28 [ 15] [ 4] [0320] +09:02:28 [ 18] [ 4] [6011] +09:02:28 [ 22] [ 3] [900] +09:02:28 [ 25] [ 2] [02] +09:02:28 [ 28] [ 9] [D00002000] +09:02:28 [ 32] [ 6] [621354] +09:02:28 [ 35] [ 37] [6688990100958501=41121231850185800000] +09:02:28 [ 37] [ 12] [507904719402] +09:02:28 [ 41] [ 8] [18001000] +09:02:28 [ 42] [ 15] [NATIVE ] +09:02:28 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:02:28 [ 49] [ 3] [418] +09:02:28 [ 52] [ 16] [335E0EB0C343FEC0] +09:02:28 ============================================================================ +09:02:28 + + +waiting on router queue for slot.... +09:02:28 Sending to : +09:02:28 ============================================================================ +09:02:28 Sending to : +09:02:28 ============================================================================ +09:02:28 ============================================================================ +09:02:28 Slot Id : <180> +09:02:28 Transaction Type : RESPONSE +09:02:28 Received From : +09:02:28 ============================================================================ +09:02:28 FNo. Len. Field Value +09:02:28 ============================================================================ +09:02:28 [ 1] [ 4] [0210] +09:02:28 [ 2] [ 16] [6213541000086093] +09:02:28 [ 3] [ 6] [010000] +09:02:28 [ 4] [ 12] [000150000000] +09:02:28 [ 7] [ 10] [0320020134] +09:02:28 [ 11] [ 6] [267350] +09:02:28 [ 12] [ 6] [090134] +09:02:28 [ 13] [ 4] [0320] +09:02:28 [ 15] [ 4] [0320] +09:02:28 [ 18] [ 4] [6011] +09:02:28 [ 19] [ 3] [418] +09:02:28 [ 22] [ 3] [021] +09:02:28 [ 32] [ 6] [180893] +09:02:28 [ 35] [ 32] [6213541000086093=491212018609189] +09:02:28 [ 37] [ 12] [507902267350] +09:02:28 [ 39] [ 2] [61] +09:02:28 [ 41] [ 8] [0369SLVL] +09:02:28 [ 49] [ 3] [418] +09:02:28 ============================================================================ +09:02:28 Sending to : +09:02:28 ============================================================================ +09:02:28 + + +waiting on router queue for slot.... +09:02:29 ============================================================================ +09:02:29 Slot Id : <168> +09:02:29 Transaction Type : REQUEST +09:02:29 Received From : +09:02:29 ============================================================================ +09:02:29 FNo. Len. Field Value +09:02:29 ============================================================================ +09:02:29 [ 1] [ 4] [0200] +09:02:29 [ 2] [ 16] [6688990100958501] +09:02:29 [ 3] [ 6] [010000] +09:02:29 [ 4] [ 12] [000100000000] +09:02:29 [ 7] [ 10] [0320090224] +09:02:29 [ 11] [ 6] [692648] +09:02:29 [ 12] [ 6] [090224] +09:02:29 [ 13] [ 4] [0320] +09:02:29 [ 15] [ 4] [0320] +09:02:29 [ 18] [ 4] [6011] +09:02:29 [ 22] [ 3] [900] +09:02:29 [ 25] [ 2] [02] +09:02:29 [ 28] [ 9] [D00002000] +09:02:29 [ 32] [ 6] [621354] +09:02:29 [ 35] [ 37] [6688990100958501=41121231850185800000] +09:02:29 [ 37] [ 12] [507904719402] +09:02:29 [ 41] [ 8] [18001000] +09:02:29 [ 42] [ 15] [NATIVE ] +09:02:29 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:02:29 [ 49] [ 3] [418] +09:02:29 [ 52] [ 16] [335E0EB0C343FEC0] +09:02:29 ============================================================================ +09:02:29 + + +waiting on router queue for slot.... +09:02:29 Sending to : +09:02:29 ============================================================================ +09:02:29 ============================================================================ +09:02:29 Slot Id : <168> +09:02:29 Transaction Type : REQUEST +09:02:29 Received From : +09:02:29 ============================================================================ +09:02:29 FNo. Len. Field Value +09:02:29 ============================================================================ +09:02:29 [ 1] [ 4] [0200] +09:02:29 [ 2] [ 16] [6688990100958501] +09:02:29 [ 3] [ 6] [010000] +09:02:29 [ 4] [ 12] [000100000000] +09:02:29 [ 7] [ 10] [0320090224] +09:02:29 [ 11] [ 6] [692648] +09:02:29 [ 12] [ 6] [090224] +09:02:29 [ 13] [ 4] [0320] +09:02:29 [ 15] [ 4] [0320] +09:02:29 [ 18] [ 4] [6011] +09:02:29 [ 22] [ 3] [900] +09:02:29 [ 25] [ 2] [02] +09:02:29 [ 28] [ 9] [D00002000] +09:02:29 [ 32] [ 6] [621354] +09:02:29 [ 35] [ 37] [6688990100958501=41121231850185800000] +09:02:29 [ 37] [ 12] [507904719402] +09:02:29 [ 41] [ 8] [18001000] +09:02:29 [ 42] [ 15] [NATIVE ] +09:02:29 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:02:29 [ 49] [ 3] [418] +09:02:29 [ 52] [ 16] [6F7F2D8B19A9E498] +09:02:29 ============================================================================ +09:02:29 + + +waiting on router queue for slot.... +09:02:29 Sending to : <4> +09:02:29 ============================================================================ +09:02:30 ============================================================================ +09:02:30 Slot Id : <180> +09:02:30 Transaction Type : RESPONSE +09:02:30 Received From : +09:02:30 ============================================================================ +09:02:30 FNo. Len. Field Value +09:02:30 ============================================================================ +09:02:30 [ 1] [ 4] [0210] +09:02:30 [ 2] [ 16] [6213541000086093] +09:02:30 [ 3] [ 6] [010000] +09:02:30 [ 4] [ 12] [000150000000] +09:02:30 [ 7] [ 10] [0320020134] +09:02:30 [ 11] [ 6] [267350] +09:02:30 [ 12] [ 6] [090134] +09:02:30 [ 13] [ 4] [0320] +09:02:30 [ 15] [ 4] [0320] +09:02:30 [ 18] [ 4] [6011] +09:02:30 [ 19] [ 3] [418] +09:02:30 [ 22] [ 3] [021] +09:02:30 [ 32] [ 6] [180893] +09:02:30 [ 35] [ 32] [6213541000086093=491212018609189] +09:02:30 [ 37] [ 12] [507902267350] +09:02:30 [ 39] [ 2] [61] +09:02:30 [ 41] [ 8] [0369SLVL] +09:02:30 [ 49] [ 3] [418] +09:02:30 ============================================================================ +09:02:30 Calculate Source COMM Id = 2 +09:02:30 ============================================================================ +09:02:30 + + +waiting on router queue for slot.... +09:02:30 ============================================================================ +09:02:30 Slot Id : <168> +09:02:30 Transaction Type : RESPONSE +09:02:30 Received From : +09:02:30 ============================================================================ +09:02:30 FNo. Len. Field Value +09:02:30 ============================================================================ +09:02:30 [ 1] [ 4] [0210] +09:02:30 [ 2] [ 16] [6688990100958501] +09:02:30 [ 3] [ 6] [010000] +09:02:30 [ 4] [ 12] [000100000000] +09:02:30 [ 11] [ 6] [692648] +09:02:30 [ 12] [ 6] [090224] +09:02:30 [ 15] [ 4] [0320] +09:02:30 [ 18] [ 4] [6011] +09:02:30 [ 32] [ 6] [621354] +09:02:30 [ 35] [ 37] [6688990100958501=41121231850185800000] +09:02:30 [ 37] [ 12] [507904719402] +09:02:30 [ 38] [ 6] [405747] +09:02:30 [ 39] [ 2] [00] +09:02:30 [ 41] [ 8] [18001000] +09:02:30 [ 49] [ 3] [418] +09:02:30 [ 54] [ 20] [0002418C000078038350] +09:02:30 ============================================================================ +09:02:30 Sending to : +09:02:30 ============================================================================ +09:02:30 + + +waiting on router queue for slot.... +09:02:32 ============================================================================ +09:02:32 Slot Id : <168> +09:02:32 Transaction Type : RESPONSE +09:02:32 Received From : +09:02:32 ============================================================================ +09:02:32 FNo. Len. Field Value +09:02:32 ============================================================================ +09:02:32 [ 1] [ 4] [0210] +09:02:32 [ 2] [ 16] [6688990100958501] +09:02:32 [ 3] [ 6] [010000] +09:02:32 [ 4] [ 12] [000100000000] +09:02:32 [ 11] [ 6] [692648] +09:02:32 [ 12] [ 6] [090224] +09:02:32 [ 15] [ 4] [0320] +09:02:32 [ 18] [ 4] [6011] +09:02:32 [ 32] [ 6] [621354] +09:02:32 [ 35] [ 37] [6688990100958501=41121231850185800000] +09:02:32 [ 37] [ 12] [507904719402] +09:02:32 [ 38] [ 6] [405747] +09:02:32 [ 39] [ 2] [00] +09:02:32 [ 41] [ 8] [18001000] +09:02:32 [ 49] [ 3] [418] +09:02:32 [ 54] [ 20] [0002418C000078038350] +09:02:32 ============================================================================ +09:02:32 Calculate Source COMM Id = 0 +09:02:32 ============================================================================ +09:02:32 + + +waiting on router queue for slot.... +09:02:34 ============================================================================ +09:02:34 Slot Id : <189> +09:02:34 Transaction Type : REQUEST +09:02:34 Received From : +09:02:34 ============================================================================ +09:02:34 FNo. Len. Field Value +09:02:34 ============================================================================ +09:02:34 [ 1] [ 4] [0200] +09:02:34 [ 2] [ 16] [1808930500014303] +09:02:34 [ 3] [ 6] [010000] +09:02:34 [ 4] [ 12] [000050000000] +09:02:34 [ 7] [ 10] [0320090026] +09:02:34 [ 11] [ 6] [934476] +09:02:34 [ 12] [ 6] [090026] +09:02:34 [ 13] [ 4] [0320] +09:02:34 [ 15] [ 4] [0320] +09:02:34 [ 18] [ 4] [6011] +09:02:34 [ 19] [ 3] [418] +09:02:34 [ 22] [ 3] [021] +09:02:34 [ 25] [ 2] [01] +09:02:34 [ 28] [ 9] [D00002000] +09:02:34 [ 32] [ 6] [668899] +09:02:34 [ 35] [ 27] [1808930500014303=1803500022] +09:02:34 [ 37] [ 12] [507900844841] +09:02:34 [ 41] [ 8] [03015003] +09:02:34 [ 42] [ 15] [APT ] +09:02:34 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:02:34 [ 49] [ 3] [418] +09:02:34 [ 52] [ 16] [10FFC6C354F7AB45] +09:02:34 ============================================================================ +09:02:34 + + +waiting on router queue for slot.... +09:02:34 Sending to : +09:02:34 ============================================================================ +09:02:34 Sending to : +09:02:34 ============================================================================ +09:02:34 ============================================================================ +09:02:34 Slot Id : <189> +09:02:34 Transaction Type : REQUEST +09:02:34 Received From : +09:02:34 ============================================================================ +09:02:34 FNo. Len. Field Value +09:02:34 ============================================================================ +09:02:34 [ 1] [ 4] [0200] +09:02:34 [ 2] [ 16] [1808930500014303] +09:02:34 [ 3] [ 6] [010000] +09:02:34 [ 4] [ 12] [000050000000] +09:02:34 [ 7] [ 10] [0320090026] +09:02:34 [ 11] [ 6] [934476] +09:02:34 [ 12] [ 6] [090026] +09:02:34 [ 13] [ 4] [0320] +09:02:34 [ 15] [ 4] [0320] +09:02:34 [ 18] [ 4] [6011] +09:02:34 [ 19] [ 3] [418] +09:02:34 [ 22] [ 3] [021] +09:02:34 [ 25] [ 2] [01] +09:02:34 [ 28] [ 9] [D00002000] +09:02:34 [ 32] [ 6] [668899] +09:02:34 [ 35] [ 27] [1808930500014303=1803500022] +09:02:34 [ 37] [ 12] [507900844841] +09:02:34 [ 41] [ 8] [03015003] +09:02:34 [ 42] [ 15] [APT ] +09:02:34 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:02:34 [ 49] [ 3] [418] +09:02:34 [ 52] [ 16] [10FFC6C354F7AB45] +09:02:34 ============================================================================ +09:02:34 + + +waiting on router queue for slot.... +09:02:34 Sending to : +09:02:34 ============================================================================ +09:02:34 ============================================================================ +09:02:34 Slot Id : <189> +09:02:34 Transaction Type : REQUEST +09:02:34 Received From : +09:02:34 ============================================================================ +09:02:34 FNo. Len. Field Value +09:02:34 ============================================================================ +09:02:34 [ 1] [ 4] [0200] +09:02:34 [ 2] [ 16] [1808930500014303] +09:02:34 [ 3] [ 6] [010000] +09:02:34 [ 4] [ 12] [000050000000] +09:02:34 [ 7] [ 10] [0320090026] +09:02:34 [ 11] [ 6] [934476] +09:02:34 [ 12] [ 6] [090026] +09:02:34 [ 13] [ 4] [0320] +09:02:34 [ 15] [ 4] [0320] +09:02:34 [ 18] [ 4] [6011] +09:02:34 [ 19] [ 3] [418] +09:02:34 [ 22] [ 3] [021] +09:02:34 [ 25] [ 2] [01] +09:02:34 [ 28] [ 9] [D00002000] +09:02:34 [ 32] [ 6] [668899] +09:02:34 [ 35] [ 27] [1808930500014303=1803500022] +09:02:34 [ 37] [ 12] [507900844841] +09:02:34 [ 41] [ 8] [03015003] +09:02:34 [ 42] [ 15] [APT ] +09:02:34 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:02:34 [ 49] [ 3] [418] +09:02:34 [ 52] [ 16] [08F610331435960F] +09:02:34 ============================================================================ +09:02:34 + + +waiting on router queue for slot.... +09:02:34 Sending to : <2> +09:02:34 ============================================================================ +09:02:38 ============================================================================ +09:02:38 Slot Id : <189> +09:02:38 Transaction Type : RESPONSE +09:02:38 Received From : +09:02:38 ============================================================================ +09:02:38 FNo. Len. Field Value +09:02:38 ============================================================================ +09:02:38 [ 1] [ 4] [0210] +09:02:38 [ 2] [ 16] [1808930500014303] +09:02:38 [ 3] [ 6] [010000] +09:02:38 [ 4] [ 12] [000050000000] +09:02:38 [ 6] [ 12] [000050000000] +09:02:38 [ 7] [ 10] [0320090026] +09:02:38 [ 11] [ 6] [934476] +09:02:38 [ 12] [ 6] [090026] +09:02:38 [ 13] [ 4] [0320] +09:02:38 [ 18] [ 4] [6011] +09:02:38 [ 19] [ 3] [418] +09:02:38 [ 22] [ 3] [021] +09:02:38 [ 32] [ 6] [668899] +09:02:38 [ 35] [ 27] [1808930500014303=1803500022] +09:02:38 [ 37] [ 12] [507900844841] +09:02:38 [ 38] [ 6] [934476] +09:02:38 [ 39] [ 2] [51] +09:02:38 [ 41] [ 8] [03015003] +09:02:38 [ 49] [ 3] [418] +09:02:38 [ 52] [ 16] [08F610331435960F] +09:02:38 ============================================================================ +09:02:38 Sending to : +09:02:38 ============================================================================ +09:02:38 + + +waiting on router queue for slot.... +09:02:39 ============================================================================ +09:02:39 Slot Id : <189> +09:02:39 Transaction Type : RESPONSE +09:02:39 Received From : +09:02:39 ============================================================================ +09:02:39 FNo. Len. Field Value +09:02:39 ============================================================================ +09:02:39 [ 1] [ 4] [0210] +09:02:39 [ 2] [ 16] [1808930500014303] +09:02:39 [ 3] [ 6] [010000] +09:02:39 [ 4] [ 12] [000050000000] +09:02:39 [ 6] [ 12] [000050000000] +09:02:39 [ 7] [ 10] [0320090026] +09:02:39 [ 11] [ 6] [934476] +09:02:39 [ 12] [ 6] [090026] +09:02:39 [ 13] [ 4] [0320] +09:02:39 [ 18] [ 4] [6011] +09:02:39 [ 19] [ 3] [418] +09:02:39 [ 22] [ 3] [021] +09:02:39 [ 32] [ 6] [668899] +09:02:39 [ 35] [ 27] [1808930500014303=1803500022] +09:02:39 [ 37] [ 12] [507900844841] +09:02:39 [ 38] [ 6] [934476] +09:02:39 [ 39] [ 2] [51] +09:02:39 [ 41] [ 8] [03015003] +09:02:39 [ 49] [ 3] [418] +09:02:39 [ 52] [ 16] [08F610331435960F] +09:02:39 ============================================================================ +09:02:39 Calculate Source COMM Id = 4 +09:02:39 ============================================================================ +09:02:39 + + +waiting on router queue for slot.... +09:02:43 ============================================================================ +09:02:43 Slot Id : <169> +09:02:43 Transaction Type : REQUEST +09:02:43 Received From : +09:02:43 ============================================================================ +09:02:43 FNo. Len. Field Value +09:02:43 ============================================================================ +09:02:43 [ 1] [ 4] [0200] +09:02:43 [ 2] [ 16] [1808930400010799] +09:02:43 [ 3] [ 6] [011000] +09:02:43 [ 4] [ 12] [000100000000] +09:02:43 [ 7] [ 10] [0320090239] +09:02:43 [ 11] [ 6] [692699] +09:02:43 [ 12] [ 6] [090239] +09:02:43 [ 13] [ 4] [0320] +09:02:43 [ 15] [ 4] [0320] +09:02:43 [ 18] [ 4] [6011] +09:02:43 [ 22] [ 3] [900] +09:02:43 [ 25] [ 2] [02] +09:02:43 [ 28] [ 9] [D00002000] +09:02:43 [ 32] [ 6] [621354] +09:02:43 [ 35] [ 27] [1808930400010799=1803500167] +09:02:43 [ 37] [ 12] [507904965464] +09:02:43 [ 41] [ 8] [15001100] +09:02:43 [ 42] [ 15] [NATIVE ] +09:02:43 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:02:43 [ 49] [ 3] [418] +09:02:43 [ 52] [ 16] [EBAB7E1A255E21EF] +09:02:43 ============================================================================ +09:02:43 + + +waiting on router queue for slot.... +09:02:43 Sending to : +09:02:43 ============================================================================ +09:02:43 Sending to : +09:02:43 ============================================================================ +09:02:43 ============================================================================ +09:02:43 Slot Id : <169> +09:02:43 Transaction Type : REQUEST +09:02:43 Received From : +09:02:43 ============================================================================ +09:02:43 FNo. Len. Field Value +09:02:43 ============================================================================ +09:02:43 [ 1] [ 4] [0200] +09:02:43 [ 2] [ 16] [1808930400010799] +09:02:43 [ 3] [ 6] [011000] +09:02:43 [ 4] [ 12] [000100000000] +09:02:43 [ 7] [ 10] [0320090239] +09:02:43 [ 11] [ 6] [692699] +09:02:43 [ 12] [ 6] [090239] +09:02:43 [ 13] [ 4] [0320] +09:02:43 [ 15] [ 4] [0320] +09:02:43 [ 18] [ 4] [6011] +09:02:43 [ 22] [ 3] [900] +09:02:43 [ 25] [ 2] [02] +09:02:43 [ 28] [ 9] [D00002000] +09:02:43 [ 32] [ 6] [621354] +09:02:43 [ 35] [ 27] [1808930400010799=1803500167] +09:02:43 [ 37] [ 12] [507904965464] +09:02:43 [ 41] [ 8] [15001100] +09:02:43 [ 42] [ 15] [NATIVE ] +09:02:43 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:02:43 [ 49] [ 3] [418] +09:02:43 [ 52] [ 16] [EBAB7E1A255E21EF] +09:02:43 ============================================================================ +09:02:43 + + +waiting on router queue for slot.... +09:02:43 Sending to : +09:02:43 ============================================================================ +09:02:43 ============================================================================ +09:02:43 Slot Id : <169> +09:02:43 Transaction Type : REQUEST +09:02:43 Received From : +09:02:43 ============================================================================ +09:02:43 FNo. Len. Field Value +09:02:43 ============================================================================ +09:02:43 [ 1] [ 4] [0200] +09:02:43 [ 2] [ 16] [1808930400010799] +09:02:43 [ 3] [ 6] [011000] +09:02:43 [ 4] [ 12] [000100000000] +09:02:43 [ 7] [ 10] [0320090239] +09:02:43 [ 11] [ 6] [692699] +09:02:43 [ 12] [ 6] [090239] +09:02:43 [ 13] [ 4] [0320] +09:02:43 [ 15] [ 4] [0320] +09:02:43 [ 18] [ 4] [6011] +09:02:43 [ 22] [ 3] [900] +09:02:43 [ 25] [ 2] [02] +09:02:43 [ 28] [ 9] [D00002000] +09:02:43 [ 32] [ 6] [621354] +09:02:43 [ 35] [ 27] [1808930400010799=1803500167] +09:02:43 [ 37] [ 12] [507904965464] +09:02:43 [ 41] [ 8] [15001100] +09:02:43 [ 42] [ 15] [NATIVE ] +09:02:43 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:02:43 [ 49] [ 3] [418] +09:02:43 [ 52] [ 16] [C4CB1FA4DB39A123] +09:02:43 ============================================================================ +09:02:43 + + +waiting on router queue for slot.... +09:02:43 Sending to : <2> +09:02:43 ============================================================================ +09:02:46 ============================================================================ +09:02:46 Slot Id : <225> +09:02:46 Transaction Type : REQUEST +09:02:46 Received From : +09:02:46 ============================================================================ +09:02:46 FNo. Len. Field Value +09:02:46 ============================================================================ +09:02:46 [ 1] [ 4] [0200] +09:02:46 [ 2] [ 16] [1808930100005750] +09:02:46 [ 3] [ 6] [311000] +09:02:46 [ 4] [ 12] [000000000000] +09:02:46 [ 7] [ 10] [0320091034] +09:02:46 [ 11] [ 6] [242304] +09:02:46 [ 12] [ 6] [091034] +09:02:46 [ 13] [ 4] [0320] +09:02:46 [ 14] [ 4] [1803] +09:02:46 [ 15] [ 4] [0320] +09:02:46 [ 18] [ 4] [6011] +09:02:46 [ 22] [ 3] [900] +09:02:46 [ 25] [ 2] [02] +09:02:46 [ 28] [ 9] [000000000] +09:02:46 [ 32] [ 6] [220699] +09:02:46 [ 35] [ 27] [1808930100005750=1803500143] +09:02:46 [ 37] [ 12] [507900341562] +09:02:46 [ 41] [ 8] [01002000] +09:02:46 [ 42] [ 15] [APTRA ] +09:02:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:02:46 [ 49] [ 3] [418] +09:02:46 [ 52] [ 16] [DEB988090879C7F7] +09:02:46 ============================================================================ +09:02:46 + + +waiting on router queue for slot.... +09:02:46 Sending to : +09:02:46 ============================================================================ +09:02:46 Sending to : +09:02:46 ============================================================================ +09:02:46 ============================================================================ +09:02:46 Slot Id : <225> +09:02:46 Transaction Type : REQUEST +09:02:46 Received From : +09:02:46 ============================================================================ +09:02:46 FNo. Len. Field Value +09:02:46 ============================================================================ +09:02:46 [ 1] [ 4] [0200] +09:02:46 [ 2] [ 16] [1808930100005750] +09:02:46 [ 3] [ 6] [311000] +09:02:46 [ 4] [ 12] [000000000000] +09:02:46 [ 7] [ 10] [0320091034] +09:02:46 [ 11] [ 6] [242304] +09:02:46 [ 12] [ 6] [091034] +09:02:46 [ 13] [ 4] [0320] +09:02:46 [ 14] [ 4] [1803] +09:02:46 [ 15] [ 4] [0320] +09:02:46 [ 18] [ 4] [6011] +09:02:46 [ 22] [ 3] [900] +09:02:46 [ 25] [ 2] [02] +09:02:46 [ 28] [ 9] [000000000] +09:02:46 [ 32] [ 6] [220699] +09:02:46 [ 35] [ 27] [1808930100005750=1803500143] +09:02:46 [ 37] [ 12] [507900341562] +09:02:46 [ 41] [ 8] [01002000] +09:02:46 [ 42] [ 15] [APTRA ] +09:02:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:02:46 [ 49] [ 3] [418] +09:02:46 [ 52] [ 16] [DEB988090879C7F7] +09:02:46 ============================================================================ +09:02:46 + + +waiting on router queue for slot.... +09:02:46 Sending to : +09:02:46 ============================================================================ +09:02:46 ============================================================================ +09:02:46 Slot Id : <225> +09:02:46 Transaction Type : REQUEST +09:02:46 Received From : +09:02:46 ============================================================================ +09:02:46 FNo. Len. Field Value +09:02:46 ============================================================================ +09:02:46 [ 1] [ 4] [0200] +09:02:46 [ 2] [ 16] [1808930100005750] +09:02:46 [ 3] [ 6] [311000] +09:02:46 [ 4] [ 12] [000000000000] +09:02:46 [ 7] [ 10] [0320091034] +09:02:46 [ 11] [ 6] [242304] +09:02:46 [ 12] [ 6] [091034] +09:02:46 [ 13] [ 4] [0320] +09:02:46 [ 14] [ 4] [1803] +09:02:46 [ 15] [ 4] [0320] +09:02:46 [ 18] [ 4] [6011] +09:02:46 [ 22] [ 3] [900] +09:02:46 [ 25] [ 2] [02] +09:02:46 [ 28] [ 9] [000000000] +09:02:46 [ 32] [ 6] [220699] +09:02:46 [ 35] [ 27] [1808930100005750=1803500143] +09:02:46 [ 37] [ 12] [507900341562] +09:02:46 [ 41] [ 8] [01002000] +09:02:46 [ 42] [ 15] [APTRA ] +09:02:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:02:46 [ 49] [ 3] [418] +09:02:46 [ 52] [ 16] [D66CDAB305BC973A] +09:02:46 ============================================================================ +09:02:46 + + +waiting on router queue for slot.... +09:02:46 Sending to : <2> +09:02:46 ============================================================================ +09:02:51 ============================================================================ +09:02:51 Slot Id : <169> +09:02:51 Transaction Type : RESPONSE +09:02:51 Received From : +09:02:51 ============================================================================ +09:02:51 FNo. Len. Field Value +09:02:51 ============================================================================ +09:02:51 [ 1] [ 4] [0210] +09:02:51 [ 2] [ 16] [1808930400010799] +09:02:51 [ 3] [ 6] [011000] +09:02:51 [ 4] [ 12] [000100000000] +09:02:51 [ 6] [ 12] [000100000000] +09:02:51 [ 7] [ 10] [0320090239] +09:02:51 [ 11] [ 6] [692699] +09:02:51 [ 12] [ 6] [090239] +09:02:51 [ 13] [ 4] [0320] +09:02:51 [ 18] [ 4] [6011] +09:02:51 [ 19] [ 3] [418] +09:02:51 [ 22] [ 3] [021] +09:02:51 [ 32] [ 6] [621354] +09:02:51 [ 35] [ 27] [1808930400010799=1803500167] +09:02:51 [ 37] [ 12] [507904965464] +09:02:51 [ 38] [ 6] [692699] +09:02:51 [ 39] [ 2] [00] +09:02:51 [ 41] [ 8] [15001100] +09:02:51 [ 49] [ 3] [418] +09:02:51 [ 52] [ 16] [C4CB1FA4DB39A123] +09:02:51 [ 54] [ 20] [1001418C000696002300] +09:02:51 ============================================================================ +09:02:51 Sending to : +09:02:51 ============================================================================ +09:02:51 + + +waiting on router queue for slot.... +09:02:51 ============================================================================ +09:02:51 Slot Id : <205> +09:02:51 Transaction Type : REQUEST +09:02:51 Received From : +09:02:51 ============================================================================ +09:02:51 FNo. Len. Field Value +09:02:51 ============================================================================ +09:02:51 [ 1] [ 4] [0200] +09:02:51 [ 2] [ 16] [6213541000086093] +09:02:51 [ 3] [ 6] [010000] +09:02:51 [ 4] [ 12] [000100000000] +09:02:51 [ 7] [ 10] [0320020157] +09:02:51 [ 11] [ 6] [267353] +09:02:51 [ 12] [ 6] [090157] +09:02:51 [ 13] [ 4] [0320] +09:02:51 [ 14] [ 4] [4912] +09:02:51 [ 15] [ 4] [0320] +09:02:51 [ 18] [ 4] [6011] +09:02:51 [ 19] [ 3] [418] +09:02:51 [ 22] [ 3] [021] +09:02:51 [ 25] [ 2] [01] +09:02:51 [ 28] [ 9] [D00002000] +09:02:51 [ 32] [ 6] [180893] +09:02:51 [ 35] [ 32] [6213541000086093=491212018609189] +09:02:51 [ 37] [ 12] [507902267353] +09:02:51 [ 41] [ 8] [0369SLVL] +09:02:51 [ 42] [ 15] [999999 ] +09:02:51 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:02:51 [ 49] [ 3] [418] +09:02:51 [ 52] [ 16] [769A64628C906B68] +09:02:51 ============================================================================ +09:02:51 + + +waiting on router queue for slot.... +09:02:51 Sending to : +09:02:51 ============================================================================ +09:02:51 Sending to : +09:02:51 ============================================================================ +09:02:51 ============================================================================ +09:02:51 Slot Id : <232> +09:02:51 Transaction Type : REQUEST +09:02:51 Received From : +09:02:51 ============================================================================ +09:02:51 FNo. Len. Field Value +09:02:51 ============================================================================ +09:02:51 [ 1] [ 4] [0200] +09:02:51 [ 2] [ 16] [6688990040051482] +09:02:51 [ 3] [ 6] [010000] +09:02:51 [ 4] [ 12] [000010000000] +09:02:51 [ 7] [ 10] [0320090247] +09:02:51 [ 11] [ 6] [692746] +09:02:51 [ 12] [ 6] [090247] +09:02:51 [ 13] [ 4] [0320] +09:02:51 [ 15] [ 4] [0320] +09:02:51 [ 18] [ 4] [6011] +09:02:51 [ 22] [ 3] [900] +09:02:51 [ 25] [ 2] [02] +09:02:51 [ 28] [ 9] [D00002000] +09:02:51 [ 32] [ 6] [621354] +09:02:51 [ 35] [ 37] [6688990040051482=97121261210714800000] +09:02:51 [ 37] [ 12] [507903365351] +09:02:51 [ 41] [ 8] [13001600] +09:02:51 [ 42] [ 15] [NATIVE ] +09:02:51 [ 43] [ 40] [Khangkhai College Paek LAO] +09:02:51 [ 49] [ 3] [418] +09:02:51 [ 52] [ 16] [D8D40B20C78B1259] +09:02:51 ============================================================================ +09:02:51 + + +waiting on router queue for slot.... +09:02:51 Sending to : +09:02:51 ============================================================================ +09:02:51 Sending to : +09:02:51 ============================================================================ +09:02:51 ============================================================================ +09:02:51 Slot Id : <230> +09:02:51 Transaction Type : REQUEST +09:02:51 Received From : +09:02:51 ============================================================================ +09:02:51 FNo. Len. Field Value +09:02:51 ============================================================================ +09:02:51 [ 1] [ 4] [0800] +09:02:51 [ 7] [ 10] [0320161441] +09:02:51 [ 11] [ 6] [091441] +09:02:51 [ 37] [ 12] [57909091441] +09:02:51 [ 70] [ 3] [301] +09:02:51 ============================================================================ +09:02:51 + + +waiting on router queue for slot.... +09:02:51 Sending to : +09:02:51 ============================================================================ +09:02:51 ============================================================================ +09:02:51 Slot Id : <230> +09:02:51 Transaction Type : RESPONSE +09:02:51 Received From : +09:02:51 ============================================================================ +09:02:51 FNo. Len. Field Value +09:02:51 ============================================================================ +09:02:51 [ 1] [ 4] [0810] +09:02:51 [ 7] [ 10] [0320161441] +09:02:51 [ 11] [ 6] [091441] +09:02:51 [ 37] [ 12] [579090914410] +09:02:51 [ 39] [ 2] [00] +09:02:51 [ 70] [ 3] [810] +09:02:51 ============================================================================ +09:02:51 Calculate Source COMM Id = 6 +09:02:51 ============================================================================ +09:02:51 + + +waiting on router queue for slot.... +09:02:51 ============================================================================ +09:02:51 Slot Id : <205> +09:02:51 Transaction Type : REQUEST +09:02:51 Received From : +09:02:51 ============================================================================ +09:02:51 FNo. Len. Field Value +09:02:51 ============================================================================ +09:02:51 [ 1] [ 4] [0200] +09:02:51 [ 2] [ 16] [6213541000086093] +09:02:51 [ 3] [ 6] [010000] +09:02:51 [ 4] [ 12] [000100000000] +09:02:51 [ 7] [ 10] [0320020157] +09:02:51 [ 11] [ 6] [267353] +09:02:51 [ 12] [ 6] [090157] +09:02:51 [ 13] [ 4] [0320] +09:02:51 [ 14] [ 4] [4912] +09:02:51 [ 15] [ 4] [0320] +09:02:51 [ 18] [ 4] [6011] +09:02:51 [ 19] [ 3] [418] +09:02:51 [ 22] [ 3] [021] +09:02:51 [ 25] [ 2] [01] +09:02:51 [ 28] [ 9] [D00002000] +09:02:51 [ 32] [ 6] [180893] +09:02:51 [ 35] [ 32] [6213541000086093=491212018609189] +09:02:51 [ 37] [ 12] [507902267353] +09:02:51 [ 41] [ 8] [0369SLVL] +09:02:51 [ 42] [ 15] [999999 ] +09:02:51 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:02:51 [ 49] [ 3] [418] +09:02:51 [ 52] [ 16] [769A64628C906B68] +09:02:51 ============================================================================ +09:02:51 + + +waiting on router queue for slot.... +09:02:51 Sending to : +09:02:51 ============================================================================ +09:02:51 ============================================================================ +09:02:51 Slot Id : <205> +09:02:51 Transaction Type : REQUEST +09:02:51 Received From : +09:02:51 ============================================================================ +09:02:51 FNo. Len. Field Value +09:02:51 ============================================================================ +09:02:51 [ 1] [ 4] [0200] +09:02:51 [ 2] [ 16] [6213541000086093] +09:02:51 [ 3] [ 6] [010000] +09:02:51 [ 4] [ 12] [000100000000] +09:02:51 [ 7] [ 10] [0320020157] +09:02:51 [ 11] [ 6] [267353] +09:02:51 [ 12] [ 6] [090157] +09:02:51 [ 13] [ 4] [0320] +09:02:51 [ 14] [ 4] [4912] +09:02:51 [ 15] [ 4] [0320] +09:02:51 [ 18] [ 4] [6011] +09:02:51 [ 19] [ 3] [418] +09:02:51 [ 22] [ 3] [021] +09:02:51 [ 25] [ 2] [01] +09:02:51 [ 28] [ 9] [D00002000] +09:02:51 [ 32] [ 6] [180893] +09:02:51 [ 35] [ 32] [6213541000086093=491212018609189] +09:02:51 [ 37] [ 12] [507902267353] +09:02:51 [ 41] [ 8] [0369SLVL] +09:02:51 [ 42] [ 15] [999999 ] +09:02:51 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:02:51 [ 49] [ 3] [418] +09:02:51 [ 52] [ 16] [D2DB777CBCDFC682] +09:02:51 ============================================================================ +09:02:51 + + +waiting on router queue for slot.... +09:02:51 Sending to : <0> +09:02:51 ============================================================================ +09:02:52 ============================================================================ +09:02:52 Slot Id : <232> +09:02:52 Transaction Type : REQUEST +09:02:52 Received From : +09:02:52 ============================================================================ +09:02:52 FNo. Len. Field Value +09:02:52 ============================================================================ +09:02:52 [ 1] [ 4] [0200] +09:02:52 [ 2] [ 16] [6688990040051482] +09:02:52 [ 3] [ 6] [010000] +09:02:52 [ 4] [ 12] [000010000000] +09:02:52 [ 7] [ 10] [0320090247] +09:02:52 [ 11] [ 6] [692746] +09:02:52 [ 12] [ 6] [090247] +09:02:52 [ 13] [ 4] [0320] +09:02:52 [ 15] [ 4] [0320] +09:02:52 [ 18] [ 4] [6011] +09:02:52 [ 22] [ 3] [900] +09:02:52 [ 25] [ 2] [02] +09:02:52 [ 28] [ 9] [D00002000] +09:02:52 [ 32] [ 6] [621354] +09:02:52 [ 35] [ 37] [6688990040051482=97121261210714800000] +09:02:52 [ 37] [ 12] [507903365351] +09:02:52 [ 41] [ 8] [13001600] +09:02:52 [ 42] [ 15] [NATIVE ] +09:02:52 [ 43] [ 40] [Khangkhai College Paek LAO] +09:02:52 [ 49] [ 3] [418] +09:02:52 [ 52] [ 16] [D8D40B20C78B1259] +09:02:52 ============================================================================ +09:02:52 + + +waiting on router queue for slot.... +09:02:52 Sending to : +09:02:52 ============================================================================ +09:02:52 ============================================================================ +09:02:52 Slot Id : <232> +09:02:52 Transaction Type : REQUEST +09:02:52 Received From : +09:02:52 ============================================================================ +09:02:52 FNo. Len. Field Value +09:02:52 ============================================================================ +09:02:52 [ 1] [ 4] [0200] +09:02:52 [ 2] [ 16] [6688990040051482] +09:02:52 [ 3] [ 6] [010000] +09:02:52 [ 4] [ 12] [000010000000] +09:02:52 [ 7] [ 10] [0320090247] +09:02:52 [ 11] [ 6] [692746] +09:02:52 [ 12] [ 6] [090247] +09:02:52 [ 13] [ 4] [0320] +09:02:52 [ 15] [ 4] [0320] +09:02:52 [ 18] [ 4] [6011] +09:02:52 [ 22] [ 3] [900] +09:02:52 [ 25] [ 2] [02] +09:02:52 [ 28] [ 9] [D00002000] +09:02:52 [ 32] [ 6] [621354] +09:02:52 [ 35] [ 37] [6688990040051482=97121261210714800000] +09:02:52 [ 37] [ 12] [507903365351] +09:02:52 [ 41] [ 8] [13001600] +09:02:52 [ 42] [ 15] [NATIVE ] +09:02:52 [ 43] [ 40] [Khangkhai College Paek LAO] +09:02:52 [ 49] [ 3] [418] +09:02:52 [ 52] [ 16] [1F546199E6A2D13D] +09:02:52 ============================================================================ +09:02:52 + + +waiting on router queue for slot.... +09:02:52 Sending to : <4> +09:02:52 ============================================================================ +09:02:52 ============================================================================ +09:02:52 Slot Id : <205> +09:02:52 Transaction Type : RESPONSE +09:02:52 Received From : +09:02:52 ============================================================================ +09:02:52 FNo. Len. Field Value +09:02:52 ============================================================================ +09:02:52 [ 1] [ 4] [0210] +09:02:52 [ 2] [ 16] [6213541000086093] +09:02:52 [ 3] [ 6] [010000] +09:02:52 [ 4] [ 12] [000100000000] +09:02:52 [ 7] [ 10] [0320020157] +09:02:52 [ 11] [ 6] [267353] +09:02:52 [ 12] [ 6] [090157] +09:02:52 [ 13] [ 4] [0320] +09:02:52 [ 15] [ 4] [0320] +09:02:52 [ 18] [ 4] [6011] +09:02:52 [ 19] [ 3] [418] +09:02:52 [ 32] [ 6] [180893] +09:02:52 [ 35] [ 32] [6213541000086093=491212018609189] +09:02:52 [ 37] [ 12] [507902267353] +09:02:52 [ 38] [ 6] [018663] +09:02:52 [ 39] [ 2] [00] +09:02:52 [ 41] [ 8] [0369SLVL] +09:02:52 [ 49] [ 3] [418] +09:02:52 [ 54] [ 40] [0001418C0001389304220002418C000138930422] +09:02:52 ============================================================================ +09:02:52 Sending to : +09:02:52 ============================================================================ +09:02:52 + + +waiting on router queue for slot.... +09:02:52 ============================================================================ +09:02:52 Slot Id : <169> +09:02:52 Transaction Type : RESPONSE +09:02:52 Received From : +09:02:52 ============================================================================ +09:02:52 FNo. Len. Field Value +09:02:52 ============================================================================ +09:02:52 [ 1] [ 4] [0210] +09:02:52 [ 2] [ 16] [1808930400010799] +09:02:52 [ 3] [ 6] [011000] +09:02:52 [ 4] [ 12] [000100000000] +09:02:52 [ 6] [ 12] [000100000000] +09:02:52 [ 7] [ 10] [0320090239] +09:02:52 [ 11] [ 6] [692699] +09:02:52 [ 12] [ 6] [090239] +09:02:52 [ 13] [ 4] [0320] +09:02:52 [ 18] [ 4] [6011] +09:02:52 [ 19] [ 3] [418] +09:02:52 [ 22] [ 3] [021] +09:02:52 [ 32] [ 6] [621354] +09:02:52 [ 35] [ 27] [1808930400010799=1803500167] +09:02:52 [ 37] [ 12] [507904965464] +09:02:52 [ 38] [ 6] [692699] +09:02:52 [ 39] [ 2] [00] +09:02:52 [ 41] [ 8] [15001100] +09:02:52 [ 49] [ 3] [418] +09:02:52 [ 52] [ 16] [C4CB1FA4DB39A123] +09:02:52 [ 54] [ 20] [1001418C000696002300] +09:02:52 ============================================================================ +09:02:52 Calculate Source COMM Id = 0 +09:02:52 ============================================================================ +09:02:52 + + +waiting on router queue for slot.... +09:02:53 ============================================================================ +09:02:53 Slot Id : <232> +09:02:53 Transaction Type : RESPONSE +09:02:53 Received From : +09:02:53 ============================================================================ +09:02:53 FNo. Len. Field Value +09:02:53 ============================================================================ +09:02:53 [ 1] [ 4] [0210] +09:02:53 [ 2] [ 16] [6688990040051482] +09:02:53 [ 3] [ 6] [010000] +09:02:53 [ 4] [ 12] [000010000000] +09:02:53 [ 11] [ 6] [692746] +09:02:53 [ 12] [ 6] [090247] +09:02:53 [ 15] [ 4] [0320] +09:02:53 [ 18] [ 4] [6011] +09:02:53 [ 32] [ 6] [621354] +09:02:53 [ 35] [ 37] [6688990040051482=97121261210714800000] +09:02:53 [ 37] [ 12] [507903365351] +09:02:53 [ 38] [ 6] [319600] +09:02:53 [ 39] [ 2] [00] +09:02:53 [ 41] [ 8] [13001600] +09:02:53 [ 49] [ 3] [418] +09:02:53 [ 54] [ 20] [0002418C000024968840] +09:02:53 ============================================================================ +09:02:53 Sending to : +09:02:53 ============================================================================ +09:02:53 + + +waiting on router queue for slot.... +09:02:54 ============================================================================ +09:02:54 Slot Id : <205> +09:02:54 Transaction Type : RESPONSE +09:02:54 Received From : +09:02:54 ============================================================================ +09:02:54 FNo. Len. Field Value +09:02:54 ============================================================================ +09:02:54 [ 1] [ 4] [0210] +09:02:54 [ 2] [ 16] [6213541000086093] +09:02:54 [ 3] [ 6] [010000] +09:02:54 [ 4] [ 12] [000100000000] +09:02:54 [ 7] [ 10] [0320020157] +09:02:54 [ 11] [ 6] [267353] +09:02:54 [ 12] [ 6] [090157] +09:02:54 [ 13] [ 4] [0320] +09:02:54 [ 15] [ 4] [0320] +09:02:54 [ 18] [ 4] [6011] +09:02:54 [ 19] [ 3] [418] +09:02:54 [ 32] [ 6] [180893] +09:02:54 [ 35] [ 32] [6213541000086093=491212018609189] +09:02:54 [ 37] [ 12] [507902267353] +09:02:54 [ 38] [ 6] [018663] +09:02:54 [ 39] [ 2] [00] +09:02:54 [ 41] [ 8] [0369SLVL] +09:02:54 [ 49] [ 3] [418] +09:02:54 [ 54] [ 40] [0001418C0001389304220002418C000138930422] +09:02:54 ============================================================================ +09:02:54 Calculate Source COMM Id = 2 +09:02:54 ============================================================================ +09:02:54 + + +waiting on router queue for slot.... +09:02:55 ============================================================================ +09:02:55 Slot Id : <222> +09:02:55 Transaction Type : REQUEST +09:02:55 Received From : +09:02:55 ============================================================================ +09:02:55 FNo. Len. Field Value +09:02:55 ============================================================================ +09:02:55 [ 1] [ 4] [0200] +09:02:55 [ 2] [ 16] [6213541000696131] +09:02:55 [ 3] [ 6] [010000] +09:02:55 [ 4] [ 12] [000010000000] +09:02:55 [ 7] [ 10] [0320020203] +09:02:55 [ 11] [ 6] [267356] +09:02:55 [ 12] [ 6] [090203] +09:02:55 [ 13] [ 4] [0320] +09:02:55 [ 14] [ 4] [4912] +09:02:55 [ 15] [ 4] [0320] +09:02:55 [ 18] [ 4] [6011] +09:02:55 [ 19] [ 3] [418] +09:02:55 [ 22] [ 3] [021] +09:02:55 [ 25] [ 2] [01] +09:02:55 [ 28] [ 9] [D00002000] +09:02:55 [ 32] [ 6] [180893] +09:02:55 [ 35] [ 32] [6213541000696131=491212019613599] +09:02:55 [ 37] [ 12] [507902267356] +09:02:55 [ 41] [ 8] [0111BLBR] +09:02:55 [ 42] [ 15] [999999 ] +09:02:55 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:02:55 [ 49] [ 3] [418] +09:02:55 [ 52] [ 16] [0F658D15DE72A0DA] +09:02:55 ============================================================================ +09:02:55 + + +waiting on router queue for slot.... +09:02:55 Sending to : +09:02:55 ============================================================================ +09:02:55 Sending to : +09:02:55 ============================================================================ +09:02:56 ============================================================================ +09:02:56 Slot Id : <222> +09:02:56 Transaction Type : REQUEST +09:02:56 Received From : +09:02:56 ============================================================================ +09:02:56 FNo. Len. Field Value +09:02:56 ============================================================================ +09:02:56 [ 1] [ 4] [0200] +09:02:56 [ 2] [ 16] [6213541000696131] +09:02:56 [ 3] [ 6] [010000] +09:02:56 [ 4] [ 12] [000010000000] +09:02:56 [ 7] [ 10] [0320020203] +09:02:56 [ 11] [ 6] [267356] +09:02:56 [ 12] [ 6] [090203] +09:02:56 [ 13] [ 4] [0320] +09:02:56 [ 14] [ 4] [4912] +09:02:56 [ 15] [ 4] [0320] +09:02:56 [ 18] [ 4] [6011] +09:02:56 [ 19] [ 3] [418] +09:02:56 [ 22] [ 3] [021] +09:02:56 [ 25] [ 2] [01] +09:02:56 [ 28] [ 9] [D00002000] +09:02:56 [ 32] [ 6] [180893] +09:02:56 [ 35] [ 32] [6213541000696131=491212019613599] +09:02:56 [ 37] [ 12] [507902267356] +09:02:56 [ 41] [ 8] [0111BLBR] +09:02:56 [ 42] [ 15] [999999 ] +09:02:56 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:02:56 [ 49] [ 3] [418] +09:02:56 [ 52] [ 16] [0F658D15DE72A0DA] +09:02:56 ============================================================================ +09:02:56 + + +waiting on router queue for slot.... +09:02:56 Sending to : +09:02:56 ============================================================================ +09:02:56 ============================================================================ +09:02:56 Slot Id : <222> +09:02:56 Transaction Type : REQUEST +09:02:56 Received From : +09:02:56 ============================================================================ +09:02:56 FNo. Len. Field Value +09:02:56 ============================================================================ +09:02:56 [ 1] [ 4] [0200] +09:02:56 [ 2] [ 16] [6213541000696131] +09:02:56 [ 3] [ 6] [010000] +09:02:56 [ 4] [ 12] [000010000000] +09:02:56 [ 7] [ 10] [0320020203] +09:02:56 [ 11] [ 6] [267356] +09:02:56 [ 12] [ 6] [090203] +09:02:56 [ 13] [ 4] [0320] +09:02:56 [ 14] [ 4] [4912] +09:02:56 [ 15] [ 4] [0320] +09:02:56 [ 18] [ 4] [6011] +09:02:56 [ 19] [ 3] [418] +09:02:56 [ 22] [ 3] [021] +09:02:56 [ 25] [ 2] [01] +09:02:56 [ 28] [ 9] [D00002000] +09:02:56 [ 32] [ 6] [180893] +09:02:56 [ 35] [ 32] [6213541000696131=491212019613599] +09:02:56 [ 37] [ 12] [507902267356] +09:02:56 [ 41] [ 8] [0111BLBR] +09:02:56 [ 42] [ 15] [999999 ] +09:02:56 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:02:56 [ 49] [ 3] [418] +09:02:56 [ 52] [ 16] [20F9AA9E452387AB] +09:02:56 ============================================================================ +09:02:56 + + +waiting on router queue for slot.... +09:02:56 Sending to : <0> +09:02:56 ============================================================================ +09:02:56 ============================================================================ +09:02:56 Slot Id : <232> +09:02:56 Transaction Type : RESPONSE +09:02:56 Received From : +09:02:56 ============================================================================ +09:02:56 FNo. Len. Field Value +09:02:56 ============================================================================ +09:02:56 [ 1] [ 4] [0210] +09:02:56 [ 2] [ 16] [6688990040051482] +09:02:56 [ 3] [ 6] [010000] +09:02:56 [ 4] [ 12] [000010000000] +09:02:56 [ 11] [ 6] [692746] +09:02:56 [ 12] [ 6] [090247] +09:02:56 [ 15] [ 4] [0320] +09:02:56 [ 18] [ 4] [6011] +09:02:56 [ 32] [ 6] [621354] +09:02:56 [ 35] [ 37] [6688990040051482=97121261210714800000] +09:02:56 [ 37] [ 12] [507903365351] +09:02:56 [ 38] [ 6] [319600] +09:02:56 [ 39] [ 2] [00] +09:02:56 [ 41] [ 8] [13001600] +09:02:56 [ 49] [ 3] [418] +09:02:56 [ 54] [ 20] [0002418C000024968840] +09:02:56 ============================================================================ +09:02:56 Calculate Source COMM Id = 0 +09:02:56 ============================================================================ +09:02:56 + + +waiting on router queue for slot.... +09:02:57 ============================================================================ +09:02:57 Slot Id : <222> +09:02:57 Transaction Type : RESPONSE +09:02:57 Received From : +09:02:57 ============================================================================ +09:02:57 FNo. Len. Field Value +09:02:57 ============================================================================ +09:02:57 [ 1] [ 4] [0210] +09:02:57 [ 2] [ 16] [6213541000696131] +09:02:57 [ 3] [ 6] [010000] +09:02:57 [ 4] [ 12] [000010000000] +09:02:57 [ 7] [ 10] [0320020203] +09:02:57 [ 11] [ 6] [267356] +09:02:57 [ 12] [ 6] [090203] +09:02:57 [ 13] [ 4] [0320] +09:02:57 [ 15] [ 4] [0320] +09:02:57 [ 18] [ 4] [6011] +09:02:57 [ 19] [ 3] [418] +09:02:57 [ 32] [ 6] [180893] +09:02:57 [ 35] [ 32] [6213541000696131=491212019613599] +09:02:57 [ 37] [ 12] [507902267356] +09:02:57 [ 38] [ 6] [366738] +09:02:57 [ 39] [ 2] [00] +09:02:57 [ 41] [ 8] [0111BLBR] +09:02:57 [ 49] [ 3] [418] +09:02:57 [ 54] [ 40] [0001418C0000259185530002418C000025918553] +09:02:57 ============================================================================ +09:02:57 Sending to : +09:02:57 ============================================================================ +09:02:57 + + +waiting on router queue for slot.... +09:02:59 ============================================================================ +09:02:59 Slot Id : <222> +09:02:59 Transaction Type : RESPONSE +09:02:59 Received From : +09:02:59 ============================================================================ +09:02:59 FNo. Len. Field Value +09:02:59 ============================================================================ +09:02:59 [ 1] [ 4] [0210] +09:02:59 [ 2] [ 16] [6213541000696131] +09:02:59 [ 3] [ 6] [010000] +09:02:59 [ 4] [ 12] [000010000000] +09:02:59 [ 7] [ 10] [0320020203] +09:02:59 [ 11] [ 6] [267356] +09:02:59 [ 12] [ 6] [090203] +09:02:59 [ 13] [ 4] [0320] +09:02:59 [ 15] [ 4] [0320] +09:02:59 [ 18] [ 4] [6011] +09:02:59 [ 19] [ 3] [418] +09:02:59 [ 32] [ 6] [180893] +09:02:59 [ 35] [ 32] [6213541000696131=491212019613599] +09:02:59 [ 37] [ 12] [507902267356] +09:02:59 [ 38] [ 6] [366738] +09:02:59 [ 39] [ 2] [00] +09:02:59 [ 41] [ 8] [0111BLBR] +09:02:59 [ 49] [ 3] [418] +09:02:59 [ 54] [ 40] [0001418C0000259185530002418C000025918553] +09:02:59 ============================================================================ +09:02:59 Calculate Source COMM Id = 2 +09:02:59 ============================================================================ +09:02:59 + + +waiting on router queue for slot.... +09:03:04 ============================================================================ +09:03:04 Slot Id : <188> +09:03:04 Transaction Type : REQUEST +09:03:04 Received From : +09:03:04 ============================================================================ +09:03:04 FNo. Len. Field Value +09:03:04 ============================================================================ +09:03:04 [ 1] [ 4] [0200] +09:03:04 [ 2] [ 16] [1808930500014303] +09:03:04 [ 3] [ 6] [010000] +09:03:04 [ 4] [ 12] [000100000000] +09:03:04 [ 7] [ 10] [0320090055] +09:03:04 [ 11] [ 6] [934500] +09:03:04 [ 12] [ 6] [090055] +09:03:04 [ 13] [ 4] [0320] +09:03:04 [ 15] [ 4] [0320] +09:03:04 [ 18] [ 4] [6011] +09:03:04 [ 19] [ 3] [418] +09:03:04 [ 22] [ 3] [021] +09:03:04 [ 25] [ 2] [01] +09:03:04 [ 28] [ 9] [D00002000] +09:03:04 [ 32] [ 6] [668899] +09:03:04 [ 35] [ 27] [1808930500014303=1803500022] +09:03:04 [ 37] [ 12] [507900844842] +09:03:04 [ 41] [ 8] [03015003] +09:03:04 [ 42] [ 15] [APT ] +09:03:04 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:03:04 [ 49] [ 3] [418] +09:03:04 [ 52] [ 16] [10FFC6C354F7AB45] +09:03:04 ============================================================================ +09:03:04 + + +waiting on router queue for slot.... +09:03:04 Sending to : +09:03:04 ============================================================================ +09:03:04 Sending to : +09:03:04 ============================================================================ +09:03:04 ============================================================================ +09:03:04 Slot Id : <188> +09:03:04 Transaction Type : REQUEST +09:03:04 Received From : +09:03:04 ============================================================================ +09:03:04 FNo. Len. Field Value +09:03:04 ============================================================================ +09:03:04 [ 1] [ 4] [0200] +09:03:04 [ 2] [ 16] [1808930500014303] +09:03:04 [ 3] [ 6] [010000] +09:03:04 [ 4] [ 12] [000100000000] +09:03:04 [ 7] [ 10] [0320090055] +09:03:04 [ 11] [ 6] [934500] +09:03:04 [ 12] [ 6] [090055] +09:03:04 [ 13] [ 4] [0320] +09:03:04 [ 15] [ 4] [0320] +09:03:04 [ 18] [ 4] [6011] +09:03:04 [ 19] [ 3] [418] +09:03:04 [ 22] [ 3] [021] +09:03:04 [ 25] [ 2] [01] +09:03:04 [ 28] [ 9] [D00002000] +09:03:04 [ 32] [ 6] [668899] +09:03:04 [ 35] [ 27] [1808930500014303=1803500022] +09:03:04 [ 37] [ 12] [507900844842] +09:03:04 [ 41] [ 8] [03015003] +09:03:04 [ 42] [ 15] [APT ] +09:03:04 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:03:04 [ 49] [ 3] [418] +09:03:04 [ 52] [ 16] [10FFC6C354F7AB45] +09:03:04 ============================================================================ +09:03:04 + + +waiting on router queue for slot.... +09:03:04 Sending to : +09:03:04 ============================================================================ +09:03:04 ============================================================================ +09:03:04 Slot Id : <188> +09:03:04 Transaction Type : REQUEST +09:03:04 Received From : +09:03:04 ============================================================================ +09:03:04 FNo. Len. Field Value +09:03:04 ============================================================================ +09:03:04 [ 1] [ 4] [0200] +09:03:04 [ 2] [ 16] [1808930500014303] +09:03:04 [ 3] [ 6] [010000] +09:03:04 [ 4] [ 12] [000100000000] +09:03:04 [ 7] [ 10] [0320090055] +09:03:04 [ 11] [ 6] [934500] +09:03:04 [ 12] [ 6] [090055] +09:03:04 [ 13] [ 4] [0320] +09:03:04 [ 15] [ 4] [0320] +09:03:04 [ 18] [ 4] [6011] +09:03:04 [ 19] [ 3] [418] +09:03:04 [ 22] [ 3] [021] +09:03:04 [ 25] [ 2] [01] +09:03:04 [ 28] [ 9] [D00002000] +09:03:04 [ 32] [ 6] [668899] +09:03:04 [ 35] [ 27] [1808930500014303=1803500022] +09:03:04 [ 37] [ 12] [507900844842] +09:03:04 [ 41] [ 8] [03015003] +09:03:04 [ 42] [ 15] [APT ] +09:03:04 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:03:04 [ 49] [ 3] [418] +09:03:04 [ 52] [ 16] [08F610331435960F] +09:03:04 ============================================================================ +09:03:04 + + +waiting on router queue for slot.... +09:03:04 Sending to : <2> +09:03:04 ============================================================================ +09:03:06 ============================================================================ +09:03:06 Slot Id : <188> +09:03:06 Transaction Type : RESPONSE +09:03:06 Received From : +09:03:06 ============================================================================ +09:03:06 FNo. Len. Field Value +09:03:06 ============================================================================ +09:03:06 [ 1] [ 4] [0210] +09:03:06 [ 2] [ 16] [1808930500014303] +09:03:06 [ 3] [ 6] [010000] +09:03:06 [ 4] [ 12] [000100000000] +09:03:06 [ 6] [ 12] [000100000000] +09:03:06 [ 7] [ 10] [0320090055] +09:03:06 [ 11] [ 6] [934500] +09:03:06 [ 12] [ 6] [090055] +09:03:06 [ 13] [ 4] [0320] +09:03:06 [ 18] [ 4] [6011] +09:03:06 [ 19] [ 3] [418] +09:03:06 [ 22] [ 3] [021] +09:03:06 [ 32] [ 6] [668899] +09:03:06 [ 35] [ 27] [1808930500014303=1803500022] +09:03:06 [ 37] [ 12] [507900844842] +09:03:06 [ 38] [ 6] [934500] +09:03:06 [ 39] [ 2] [51] +09:03:06 [ 41] [ 8] [03015003] +09:03:06 [ 49] [ 3] [418] +09:03:06 [ 52] [ 16] [08F610331435960F] +09:03:06 ============================================================================ +09:03:06 Sending to : +09:03:06 ============================================================================ +09:03:06 + + +waiting on router queue for slot.... +09:03:06 ============================================================================ +09:03:06 Slot Id : <173> +09:03:06 Transaction Type : REQUEST +09:03:06 Received From : +09:03:06 ============================================================================ +09:03:06 FNo. Len. Field Value +09:03:06 ============================================================================ +09:03:06 [ 1] [ 4] [0800] +09:03:06 [ 2] [ 5] [02531] +09:03:06 [ 3] [ 6] [579098] +09:03:06 [ 7] [ 10] [0320020306] +09:03:06 [ 11] [ 6] [806937] +09:03:06 [ 15] [ 10] [0320020306] +09:03:06 [ 37] [ 11] [57909806937] +09:03:06 [ 70] [ 3] [001] +09:03:06 ============================================================================ +09:03:06 + + +waiting on router queue for slot.... +09:03:06 ============================================================================ +09:03:06 Slot Id : <173> +09:03:06 Transaction Type : RESPONSE +09:03:06 Received From : +09:03:06 ============================================================================ +09:03:06 FNo. Len. Field Value +09:03:06 ============================================================================ +09:03:06 [ 1] [ 4] [0810] +09:03:06 [ 7] [ 10] [0320020306] +09:03:06 [ 11] [ 6] [806937] +09:03:06 [ 15] [ 4] [0320] +09:03:06 [ 37] [ 12] [57909806937] +09:03:06 [ 39] [ 2] [00] +09:03:06 [ 70] [ 3] [001] +09:03:06 ============================================================================ +09:03:06 Sending to : +09:03:06 ============================================================================ +09:03:06 + + +waiting on router queue for slot.... +09:03:07 ============================================================================ +09:03:07 Slot Id : <229> +09:03:07 Transaction Type : REQUEST +09:03:07 Received From : +09:03:07 ============================================================================ +09:03:07 FNo. Len. Field Value +09:03:07 ============================================================================ +09:03:07 [ 1] [ 4] [0200] +09:03:07 [ 2] [ 16] [6213544000271178] +09:03:07 [ 3] [ 6] [010000] +09:03:07 [ 4] [ 12] [000100000000] +09:03:07 [ 7] [ 10] [0320090058] +09:03:07 [ 11] [ 6] [934505] +09:03:07 [ 12] [ 6] [090058] +09:03:07 [ 13] [ 4] [0320] +09:03:07 [ 15] [ 4] [0320] +09:03:07 [ 18] [ 4] [6011] +09:03:07 [ 19] [ 3] [418] +09:03:07 [ 22] [ 3] [021] +09:03:07 [ 25] [ 2] [01] +09:03:07 [ 28] [ 9] [D00002000] +09:03:07 [ 32] [ 6] [668899] +09:03:07 [ 35] [ 32] [6213544000271178=491212017117354] +09:03:07 [ 37] [ 12] [507901822363] +09:03:07 [ 41] [ 8] [03407003] +09:03:07 [ 42] [ 15] [APT ] +09:03:07 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:03:07 [ 49] [ 3] [418] +09:03:07 [ 52] [ 16] [7370E0AF7A8A7B24] +09:03:07 ============================================================================ +09:03:07 + + +waiting on router queue for slot.... +09:03:07 Sending to : +09:03:07 ============================================================================ +09:03:07 Sending to : +09:03:07 ============================================================================ +09:03:07 ============================================================================ +09:03:07 Slot Id : <229> +09:03:07 Transaction Type : REQUEST +09:03:07 Received From : +09:03:07 ============================================================================ +09:03:07 FNo. Len. Field Value +09:03:07 ============================================================================ +09:03:07 [ 1] [ 4] [0200] +09:03:07 [ 2] [ 16] [6213544000271178] +09:03:07 [ 3] [ 6] [010000] +09:03:07 [ 4] [ 12] [000100000000] +09:03:07 [ 7] [ 10] [0320090058] +09:03:07 [ 11] [ 6] [934505] +09:03:07 [ 12] [ 6] [090058] +09:03:07 [ 13] [ 4] [0320] +09:03:07 [ 15] [ 4] [0320] +09:03:07 [ 18] [ 4] [6011] +09:03:07 [ 19] [ 3] [418] +09:03:07 [ 22] [ 3] [021] +09:03:07 [ 25] [ 2] [01] +09:03:07 [ 28] [ 9] [D00002000] +09:03:07 [ 32] [ 6] [668899] +09:03:07 [ 35] [ 32] [6213544000271178=491212017117354] +09:03:07 [ 37] [ 12] [507901822363] +09:03:07 [ 41] [ 8] [03407003] +09:03:07 [ 42] [ 15] [APT ] +09:03:07 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:03:07 [ 49] [ 3] [418] +09:03:07 [ 52] [ 16] [7370E0AF7A8A7B24] +09:03:07 ============================================================================ +09:03:07 + + +waiting on router queue for slot.... +09:03:07 Sending to : +09:03:07 ============================================================================ +09:03:07 ============================================================================ +09:03:07 Slot Id : <229> +09:03:07 Transaction Type : REQUEST +09:03:07 Received From : +09:03:07 ============================================================================ +09:03:07 FNo. Len. Field Value +09:03:07 ============================================================================ +09:03:07 [ 1] [ 4] [0200] +09:03:07 [ 2] [ 16] [6213544000271178] +09:03:07 [ 3] [ 6] [010000] +09:03:07 [ 4] [ 12] [000100000000] +09:03:07 [ 7] [ 10] [0320090058] +09:03:07 [ 11] [ 6] [934505] +09:03:07 [ 12] [ 6] [090058] +09:03:07 [ 13] [ 4] [0320] +09:03:07 [ 15] [ 4] [0320] +09:03:07 [ 18] [ 4] [6011] +09:03:07 [ 19] [ 3] [418] +09:03:07 [ 22] [ 3] [021] +09:03:07 [ 25] [ 2] [01] +09:03:07 [ 28] [ 9] [D00002000] +09:03:07 [ 32] [ 6] [668899] +09:03:07 [ 35] [ 32] [6213544000271178=491212017117354] +09:03:07 [ 37] [ 12] [507901822363] +09:03:07 [ 41] [ 8] [03407003] +09:03:07 [ 42] [ 15] [APT ] +09:03:07 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:03:07 [ 49] [ 3] [418] +09:03:07 [ 52] [ 16] [E2A920DE3FF3AB33] +09:03:07 ============================================================================ +09:03:07 + + +waiting on router queue for slot.... +09:03:07 Sending to : <0> +09:03:07 ============================================================================ +09:03:07 ============================================================================ +09:03:07 Slot Id : <188> +09:03:07 Transaction Type : RESPONSE +09:03:07 Received From : +09:03:07 ============================================================================ +09:03:07 FNo. Len. Field Value +09:03:07 ============================================================================ +09:03:07 [ 1] [ 4] [0210] +09:03:07 [ 2] [ 16] [1808930500014303] +09:03:07 [ 3] [ 6] [010000] +09:03:07 [ 4] [ 12] [000100000000] +09:03:07 [ 6] [ 12] [000100000000] +09:03:07 [ 7] [ 10] [0320090055] +09:03:07 [ 11] [ 6] [934500] +09:03:07 [ 12] [ 6] [090055] +09:03:07 [ 13] [ 4] [0320] +09:03:07 [ 18] [ 4] [6011] +09:03:07 [ 19] [ 3] [418] +09:03:07 [ 22] [ 3] [021] +09:03:07 [ 32] [ 6] [668899] +09:03:07 [ 35] [ 27] [1808930500014303=1803500022] +09:03:07 [ 37] [ 12] [507900844842] +09:03:07 [ 38] [ 6] [934500] +09:03:07 [ 39] [ 2] [51] +09:03:07 [ 41] [ 8] [03015003] +09:03:07 [ 49] [ 3] [418] +09:03:07 [ 52] [ 16] [08F610331435960F] +09:03:07 ============================================================================ +09:03:07 Calculate Source COMM Id = 4 +09:03:07 ============================================================================ +09:03:07 + + +waiting on router queue for slot.... +09:03:08 ============================================================================ +09:03:08 Slot Id : <229> +09:03:08 Transaction Type : RESPONSE +09:03:08 Received From : +09:03:08 ============================================================================ +09:03:08 FNo. Len. Field Value +09:03:08 ============================================================================ +09:03:08 [ 1] [ 4] [0210] +09:03:08 [ 2] [ 16] [6213544000271178] +09:03:08 [ 3] [ 6] [010000] +09:03:08 [ 4] [ 12] [000100000000] +09:03:08 [ 7] [ 10] [0320090058] +09:03:08 [ 11] [ 6] [934505] +09:03:08 [ 12] [ 6] [090058] +09:03:08 [ 13] [ 4] [0320] +09:03:08 [ 15] [ 4] [0320] +09:03:08 [ 18] [ 4] [6011] +09:03:08 [ 19] [ 3] [418] +09:03:08 [ 32] [ 6] [668899] +09:03:08 [ 35] [ 32] [6213544000271178=491212017117354] +09:03:08 [ 37] [ 12] [507901822363] +09:03:08 [ 38] [ 6] [556538] +09:03:08 [ 39] [ 2] [00] +09:03:08 [ 41] [ 8] [03407003] +09:03:08 [ 49] [ 3] [418] +09:03:08 [ 54] [ 40] [0001418C0000830902520002418C000083090252] +09:03:08 ============================================================================ +09:03:08 Sending to : +09:03:08 ============================================================================ +09:03:08 + + +waiting on router queue for slot.... +09:03:09 ============================================================================ +09:03:09 Slot Id : <229> +09:03:09 Transaction Type : RESPONSE +09:03:10 Received From : +09:03:10 ============================================================================ +09:03:10 FNo. Len. Field Value +09:03:10 ============================================================================ +09:03:10 [ 1] [ 4] [0210] +09:03:10 [ 2] [ 16] [6213544000271178] +09:03:10 [ 3] [ 6] [010000] +09:03:10 [ 4] [ 12] [000100000000] +09:03:10 [ 7] [ 10] [0320090058] +09:03:10 [ 11] [ 6] [934505] +09:03:10 [ 12] [ 6] [090058] +09:03:10 [ 13] [ 4] [0320] +09:03:10 [ 15] [ 4] [0320] +09:03:10 [ 18] [ 4] [6011] +09:03:10 [ 19] [ 3] [418] +09:03:10 [ 32] [ 6] [668899] +09:03:10 [ 35] [ 32] [6213544000271178=491212017117354] +09:03:10 [ 37] [ 12] [507901822363] +09:03:10 [ 38] [ 6] [556538] +09:03:10 [ 39] [ 2] [00] +09:03:10 [ 41] [ 8] [03407003] +09:03:10 [ 49] [ 3] [418] +09:03:10 [ 54] [ 40] [0001418C0000830902520002418C000083090252] +09:03:10 ============================================================================ +09:03:10 Calculate Source COMM Id = 4 +09:03:10 ============================================================================ +09:03:10 + + +waiting on router queue for slot.... +09:03:13 ============================================================================ +09:03:13 Slot Id : <215> +09:03:13 Transaction Type : REQUEST +09:03:13 Received From : +09:03:13 ============================================================================ +09:03:13 FNo. Len. Field Value +09:03:13 ============================================================================ +09:03:13 [ 1] [ 4] [0200] +09:03:13 [ 2] [ 16] [1808930800002636] +09:03:13 [ 3] [ 6] [011000] +09:03:13 [ 4] [ 12] [000100000000] +09:03:13 [ 7] [ 10] [0320091101] +09:03:13 [ 11] [ 6] [001965] +09:03:13 [ 12] [ 6] [091101] +09:03:13 [ 13] [ 4] [0320] +09:03:13 [ 14] [ 4] [1803] +09:03:13 [ 15] [ 4] [0320] +09:03:13 [ 18] [ 4] [6011] +09:03:13 [ 22] [ 3] [900] +09:03:13 [ 25] [ 2] [02] +09:03:13 [ 28] [ 9] [D00002000] +09:03:13 [ 32] [ 6] [220699] +09:03:13 [ 35] [ 27] [1808930800002636=1803500438] +09:03:13 [ 37] [ 12] [507900296950] +09:03:13 [ 41] [ 8] [01001600] +09:03:13 [ 42] [ 15] [APTRA ] +09:03:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:03:13 [ 49] [ 3] [418] +09:03:13 [ 52] [ 16] [278C6EBAB5FA4D3D] +09:03:13 ============================================================================ +09:03:13 + + +waiting on router queue for slot.... +09:03:13 Sending to : +09:03:13 ============================================================================ +09:03:13 Sending to : +09:03:13 ============================================================================ +09:03:13 ============================================================================ +09:03:13 Slot Id : <215> +09:03:13 Transaction Type : REQUEST +09:03:13 Received From : +09:03:13 ============================================================================ +09:03:13 FNo. Len. Field Value +09:03:13 ============================================================================ +09:03:13 [ 1] [ 4] [0200] +09:03:13 [ 2] [ 16] [1808930800002636] +09:03:13 [ 3] [ 6] [011000] +09:03:13 [ 4] [ 12] [000100000000] +09:03:13 [ 7] [ 10] [0320091101] +09:03:13 [ 11] [ 6] [001965] +09:03:13 [ 12] [ 6] [091101] +09:03:13 [ 13] [ 4] [0320] +09:03:13 [ 14] [ 4] [1803] +09:03:13 [ 15] [ 4] [0320] +09:03:13 [ 18] [ 4] [6011] +09:03:13 [ 22] [ 3] [900] +09:03:13 [ 25] [ 2] [02] +09:03:13 [ 28] [ 9] [D00002000] +09:03:13 [ 32] [ 6] [220699] +09:03:13 [ 35] [ 27] [1808930800002636=1803500438] +09:03:13 [ 37] [ 12] [507900296950] +09:03:13 [ 41] [ 8] [01001600] +09:03:13 [ 42] [ 15] [APTRA ] +09:03:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:03:13 [ 49] [ 3] [418] +09:03:13 [ 52] [ 16] [278C6EBAB5FA4D3D] +09:03:13 ============================================================================ +09:03:13 + + +waiting on router queue for slot.... +09:03:13 Sending to : +09:03:13 ============================================================================ +09:03:14 ============================================================================ +09:03:14 Slot Id : <215> +09:03:14 Transaction Type : REQUEST +09:03:14 Received From : +09:03:14 ============================================================================ +09:03:14 FNo. Len. Field Value +09:03:14 ============================================================================ +09:03:14 [ 1] [ 4] [0200] +09:03:14 [ 2] [ 16] [1808930800002636] +09:03:14 [ 3] [ 6] [011000] +09:03:14 [ 4] [ 12] [000100000000] +09:03:14 [ 7] [ 10] [0320091101] +09:03:14 [ 11] [ 6] [001965] +09:03:14 [ 12] [ 6] [091101] +09:03:14 [ 13] [ 4] [0320] +09:03:14 [ 14] [ 4] [1803] +09:03:14 [ 15] [ 4] [0320] +09:03:14 [ 18] [ 4] [6011] +09:03:14 [ 22] [ 3] [900] +09:03:14 [ 25] [ 2] [02] +09:03:14 [ 28] [ 9] [D00002000] +09:03:14 [ 32] [ 6] [220699] +09:03:14 [ 35] [ 27] [1808930800002636=1803500438] +09:03:14 [ 37] [ 12] [507900296950] +09:03:14 [ 41] [ 8] [01001600] +09:03:14 [ 42] [ 15] [APTRA ] +09:03:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:03:14 [ 49] [ 3] [418] +09:03:14 [ 52] [ 16] [D3A971460B258AA6] +09:03:14 ============================================================================ +09:03:14 + + +waiting on router queue for slot.... +09:03:14 Sending to : <2> +09:03:14 ============================================================================ +09:03:17 ============================================================================ +09:03:17 Slot Id : <223> +09:03:17 Transaction Type : REQUEST +09:03:17 Received From : +09:03:17 ============================================================================ +09:03:17 FNo. Len. Field Value +09:03:17 ============================================================================ +09:03:17 [ 1] [ 4] [0200] +09:03:17 [ 2] [ 16] [6213541000286446] +09:03:17 [ 3] [ 6] [010000] +09:03:17 [ 4] [ 12] [000100000000] +09:03:17 [ 7] [ 10] [0320090108] +09:03:17 [ 11] [ 6] [934514] +09:03:17 [ 12] [ 6] [090108] +09:03:17 [ 13] [ 4] [0320] +09:03:17 [ 15] [ 4] [0320] +09:03:17 [ 18] [ 4] [6011] +09:03:17 [ 19] [ 3] [418] +09:03:17 [ 22] [ 3] [021] +09:03:17 [ 25] [ 2] [01] +09:03:17 [ 28] [ 9] [D00002000] +09:03:17 [ 32] [ 6] [668899] +09:03:17 [ 35] [ 32] [6213541000286446=491212018644179] +09:03:17 [ 37] [ 12] [507902407322] +09:03:17 [ 41] [ 8] [03001010] +09:03:17 [ 42] [ 15] [APT ] +09:03:17 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +09:03:17 [ 49] [ 3] [418] +09:03:17 [ 52] [ 16] [D650B89D5D9C4E09] +09:03:17 ============================================================================ +09:03:17 + + +waiting on router queue for slot.... +09:03:17 Sending to : +09:03:17 ============================================================================ +09:03:17 Sending to : +09:03:17 ============================================================================ +09:03:17 ============================================================================ +09:03:17 Slot Id : <223> +09:03:17 Transaction Type : REQUEST +09:03:17 Received From : +09:03:17 ============================================================================ +09:03:17 FNo. Len. Field Value +09:03:17 ============================================================================ +09:03:17 [ 1] [ 4] [0200] +09:03:17 [ 2] [ 16] [6213541000286446] +09:03:17 [ 3] [ 6] [010000] +09:03:17 [ 4] [ 12] [000100000000] +09:03:17 [ 7] [ 10] [0320090108] +09:03:17 [ 11] [ 6] [934514] +09:03:17 [ 12] [ 6] [090108] +09:03:17 [ 13] [ 4] [0320] +09:03:17 [ 15] [ 4] [0320] +09:03:17 [ 18] [ 4] [6011] +09:03:17 [ 19] [ 3] [418] +09:03:17 [ 22] [ 3] [021] +09:03:17 [ 25] [ 2] [01] +09:03:17 [ 28] [ 9] [D00002000] +09:03:17 [ 32] [ 6] [668899] +09:03:17 [ 35] [ 32] [6213541000286446=491212018644179] +09:03:17 [ 37] [ 12] [507902407322] +09:03:17 [ 41] [ 8] [03001010] +09:03:17 [ 42] [ 15] [APT ] +09:03:17 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +09:03:17 [ 49] [ 3] [418] +09:03:17 [ 52] [ 16] [D650B89D5D9C4E09] +09:03:17 ============================================================================ +09:03:17 + + +waiting on router queue for slot.... +09:03:17 Sending to : +09:03:17 ============================================================================ +09:03:17 ============================================================================ +09:03:17 Slot Id : <223> +09:03:17 Transaction Type : REQUEST +09:03:17 Received From : +09:03:17 ============================================================================ +09:03:17 FNo. Len. Field Value +09:03:17 ============================================================================ +09:03:17 [ 1] [ 4] [0200] +09:03:17 [ 2] [ 16] [6213541000286446] +09:03:17 [ 3] [ 6] [010000] +09:03:17 [ 4] [ 12] [000100000000] +09:03:17 [ 7] [ 10] [0320090108] +09:03:17 [ 11] [ 6] [934514] +09:03:17 [ 12] [ 6] [090108] +09:03:17 [ 13] [ 4] [0320] +09:03:17 [ 15] [ 4] [0320] +09:03:17 [ 18] [ 4] [6011] +09:03:17 [ 19] [ 3] [418] +09:03:17 [ 22] [ 3] [021] +09:03:17 [ 25] [ 2] [01] +09:03:17 [ 28] [ 9] [D00002000] +09:03:17 [ 32] [ 6] [668899] +09:03:17 [ 35] [ 32] [6213541000286446=491212018644179] +09:03:17 [ 37] [ 12] [507902407322] +09:03:17 [ 41] [ 8] [03001010] +09:03:17 [ 42] [ 15] [APT ] +09:03:17 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +09:03:17 [ 49] [ 3] [418] +09:03:17 [ 52] [ 16] [DAD60C1E5EBB2E8B] +09:03:17 ============================================================================ +09:03:17 + + +waiting on router queue for slot.... +09:03:17 Sending to : <0> +09:03:17 ============================================================================ +09:03:18 ============================================================================ +09:03:18 Slot Id : <223> +09:03:18 Transaction Type : RESPONSE +09:03:18 Received From : +09:03:18 ============================================================================ +09:03:18 FNo. Len. Field Value +09:03:18 ============================================================================ +09:03:18 [ 1] [ 4] [0210] +09:03:18 [ 2] [ 16] [6213541000286446] +09:03:18 [ 3] [ 6] [010000] +09:03:18 [ 4] [ 12] [000100000000] +09:03:18 [ 7] [ 10] [0320090108] +09:03:18 [ 11] [ 6] [934514] +09:03:18 [ 12] [ 6] [090108] +09:03:18 [ 13] [ 4] [0320] +09:03:18 [ 15] [ 4] [0320] +09:03:18 [ 18] [ 4] [6011] +09:03:18 [ 19] [ 3] [418] +09:03:18 [ 32] [ 6] [668899] +09:03:18 [ 35] [ 32] [6213541000286446=491212018644179] +09:03:18 [ 37] [ 12] [507902407322] +09:03:18 [ 38] [ 6] [856585] +09:03:18 [ 39] [ 2] [00] +09:03:18 [ 41] [ 8] [03001010] +09:03:18 [ 49] [ 3] [418] +09:03:18 [ 54] [ 40] [0001418C0007778814090002418C000777881409] +09:03:18 ============================================================================ +09:03:18 Sending to : +09:03:18 ============================================================================ +09:03:18 + + +waiting on router queue for slot.... +09:03:19 ============================================================================ +09:03:19 Slot Id : <215> +09:03:19 Transaction Type : RESPONSE +09:03:19 Received From : +09:03:19 ============================================================================ +09:03:19 FNo. Len. Field Value +09:03:19 ============================================================================ +09:03:19 [ 1] [ 4] [0210] +09:03:19 [ 2] [ 16] [1808930800002636] +09:03:19 [ 3] [ 6] [011000] +09:03:19 [ 4] [ 12] [000100000000] +09:03:19 [ 6] [ 12] [000100000000] +09:03:19 [ 7] [ 10] [0320091101] +09:03:19 [ 11] [ 6] [001965] +09:03:19 [ 12] [ 6] [091101] +09:03:19 [ 13] [ 4] [0320] +09:03:19 [ 14] [ 4] [1803] +09:03:19 [ 18] [ 4] [6011] +09:03:19 [ 19] [ 3] [418] +09:03:19 [ 22] [ 3] [021] +09:03:19 [ 32] [ 6] [220699] +09:03:19 [ 35] [ 27] [1808930800002636=1803500438] +09:03:19 [ 37] [ 12] [507900296950] +09:03:19 [ 38] [ 6] [001965] +09:03:19 [ 39] [ 2] [00] +09:03:19 [ 41] [ 8] [01001600] +09:03:19 [ 49] [ 3] [418] +09:03:19 [ 52] [ 16] [D3A971460B258AA6] +09:03:19 [ 54] [ 20] [1001418C000236144300] +09:03:19 ============================================================================ +09:03:19 Sending to : +09:03:19 ============================================================================ +09:03:19 + + +waiting on router queue for slot.... +09:03:20 ============================================================================ +09:03:20 Slot Id : <223> +09:03:20 Transaction Type : RESPONSE +09:03:20 Received From : +09:03:20 ============================================================================ +09:03:20 FNo. Len. Field Value +09:03:20 ============================================================================ +09:03:20 [ 1] [ 4] [0210] +09:03:20 [ 2] [ 16] [6213541000286446] +09:03:20 [ 3] [ 6] [010000] +09:03:20 [ 4] [ 12] [000100000000] +09:03:20 [ 7] [ 10] [0320090108] +09:03:20 [ 11] [ 6] [934514] +09:03:20 [ 12] [ 6] [090108] +09:03:20 [ 13] [ 4] [0320] +09:03:20 [ 15] [ 4] [0320] +09:03:20 [ 18] [ 4] [6011] +09:03:20 [ 19] [ 3] [418] +09:03:20 [ 32] [ 6] [668899] +09:03:20 [ 35] [ 32] [6213541000286446=491212018644179] +09:03:20 [ 37] [ 12] [507902407322] +09:03:20 [ 38] [ 6] [856585] +09:03:20 [ 39] [ 2] [00] +09:03:20 [ 41] [ 8] [03001010] +09:03:20 [ 49] [ 3] [418] +09:03:20 [ 54] [ 40] [0001418C0007778814090002418C000777881409] +09:03:20 ============================================================================ +09:03:20 Calculate Source COMM Id = 4 +09:03:20 ============================================================================ +09:03:20 + + +waiting on router queue for slot.... +09:03:21 ============================================================================ +09:03:21 Slot Id : <215> +09:03:21 Transaction Type : RESPONSE +09:03:21 Received From : +09:03:21 ============================================================================ +09:03:21 FNo. Len. Field Value +09:03:21 ============================================================================ +09:03:21 [ 1] [ 4] [0210] +09:03:21 [ 2] [ 16] [1808930800002636] +09:03:21 [ 3] [ 6] [011000] +09:03:21 [ 4] [ 12] [000100000000] +09:03:21 [ 6] [ 12] [000100000000] +09:03:21 [ 7] [ 10] [0320091101] +09:03:21 [ 11] [ 6] [001965] +09:03:21 [ 12] [ 6] [091101] +09:03:21 [ 13] [ 4] [0320] +09:03:21 [ 14] [ 4] [1803] +09:03:21 [ 18] [ 4] [6011] +09:03:21 [ 19] [ 3] [418] +09:03:21 [ 22] [ 3] [021] +09:03:21 [ 32] [ 6] [220699] +09:03:21 [ 35] [ 27] [1808930800002636=1803500438] +09:03:21 [ 37] [ 12] [507900296950] +09:03:21 [ 38] [ 6] [001965] +09:03:21 [ 39] [ 2] [00] +09:03:21 [ 41] [ 8] [01001600] +09:03:21 [ 49] [ 3] [418] +09:03:21 [ 52] [ 16] [D3A971460B258AA6] +09:03:21 [ 54] [ 20] [1001418C000236144300] +09:03:21 ============================================================================ +09:03:21 Calculate Source COMM Id = 1 +09:03:21 ============================================================================ +09:03:21 + + +waiting on router queue for slot.... +09:03:28 ============================================================================ +09:03:28 Slot Id : <246> +09:03:28 Transaction Type : REQUEST +09:03:28 Received From : +09:03:28 ============================================================================ +09:03:28 FNo. Len. Field Value +09:03:28 ============================================================================ +09:03:28 [ 1] [ 4] [0800] +09:03:28 [ 7] [ 10] [0320020234] +09:03:28 [ 11] [ 6] [155541] +09:03:28 [ 70] [ 3] [301] +09:03:28 ============================================================================ +09:03:28 + + +waiting on router queue for slot.... +09:03:28 Sending to : +09:03:28 ============================================================================ +09:03:28 ============================================================================ +09:03:28 Slot Id : <246> +09:03:28 Transaction Type : RESPONSE +09:03:28 Received From : +09:03:28 ============================================================================ +09:03:28 FNo. Len. Field Value +09:03:28 ============================================================================ +09:03:28 [ 1] [ 4] [0810] +09:03:28 [ 7] [ 10] [0320020234] +09:03:28 [ 11] [ 6] [155541] +09:03:28 [ 39] [ 2] [00] +09:03:28 [ 70] [ 3] [301] +09:03:28 ============================================================================ +09:03:28 Calculate Source COMM Id = 2 +09:03:28 ============================================================================ +09:03:28 + + +waiting on router queue for slot.... +09:03:31 ============================================================================ +09:03:31 Slot Id : <225> +09:03:31 09:03:31 Received From : <> +09:03:31 ============================================================================ +09:03:31 FNo. Len. Field Value +09:03:31 ============================================================================ +09:03:31 Sending to : +09:03:31 ============================================================================ +09:03:31 + + +waiting on router queue for slot.... +09:03:31 ============================================================================ +09:03:31 Slot Id : <177> +09:03:31 Transaction Type : REQUEST +09:03:31 Received From : +09:03:31 ============================================================================ +09:03:31 FNo. Len. Field Value +09:03:31 ============================================================================ +09:03:31 [ 1] [ 4] [0200] +09:03:31 [ 2] [ 16] [1808931300006887] +09:03:31 [ 3] [ 6] [010000] +09:03:31 [ 4] [ 12] [000100000000] +09:03:31 [ 7] [ 10] [0320090327] +09:03:31 [ 11] [ 6] [692887] +09:03:31 [ 12] [ 6] [090327] +09:03:31 [ 13] [ 4] [0320] +09:03:31 [ 15] [ 4] [0320] +09:03:31 [ 18] [ 4] [6011] +09:03:31 [ 22] [ 3] [900] +09:03:31 [ 25] [ 2] [02] +09:03:31 [ 28] [ 9] [D00002000] +09:03:31 [ 32] [ 6] [621354] +09:03:31 [ 35] [ 27] [1808931300006887=1803500202] +09:03:31 [ 37] [ 12] [507903735022] +09:03:31 [ 41] [ 8] [06002300] +09:03:31 [ 42] [ 15] [NATIVE ] +09:03:31 [ 43] [ 40] [ODX BOL Xay LAO] +09:03:31 [ 49] [ 3] [418] +09:03:31 [ 52] [ 16] [0533F325FFA15695] +09:03:31 ============================================================================ +09:03:31 + + +waiting on router queue for slot.... +09:03:31 Sending to : +09:03:31 ============================================================================ +09:03:31 Sending to : +09:03:31 ============================================================================ +09:03:31 ============================================================================ +09:03:31 Slot Id : <177> +09:03:31 Transaction Type : REQUEST +09:03:31 Received From : +09:03:31 ============================================================================ +09:03:31 FNo. Len. Field Value +09:03:31 ============================================================================ +09:03:31 [ 1] [ 4] [0200] +09:03:31 [ 2] [ 16] [1808931300006887] +09:03:31 [ 3] [ 6] [010000] +09:03:31 [ 4] [ 12] [000100000000] +09:03:31 [ 7] [ 10] [0320090327] +09:03:31 [ 11] [ 6] [692887] +09:03:31 [ 12] [ 6] [090327] +09:03:31 [ 13] [ 4] [0320] +09:03:31 [ 15] [ 4] [0320] +09:03:31 [ 18] [ 4] [6011] +09:03:31 [ 22] [ 3] [900] +09:03:31 [ 25] [ 2] [02] +09:03:31 [ 28] [ 9] [D00002000] +09:03:31 [ 32] [ 6] [621354] +09:03:31 [ 35] [ 27] [1808931300006887=1803500202] +09:03:31 [ 37] [ 12] [507903735022] +09:03:31 [ 41] [ 8] [06002300] +09:03:31 [ 42] [ 15] [NATIVE ] +09:03:31 [ 43] [ 40] [ODX BOL Xay LAO] +09:03:31 [ 49] [ 3] [418] +09:03:31 [ 52] [ 16] [0533F325FFA15695] +09:03:31 ============================================================================ +09:03:31 + + +waiting on router queue for slot.... +09:03:31 Sending to : +09:03:31 ============================================================================ +09:03:31 ============================================================================ +09:03:31 Slot Id : <177> +09:03:31 Transaction Type : REQUEST +09:03:31 Received From : +09:03:31 ============================================================================ +09:03:31 FNo. Len. Field Value +09:03:31 ============================================================================ +09:03:31 [ 1] [ 4] [0200] +09:03:31 [ 2] [ 16] [1808931300006887] +09:03:31 [ 3] [ 6] [010000] +09:03:31 [ 4] [ 12] [000100000000] +09:03:31 [ 7] [ 10] [0320090327] +09:03:31 [ 11] [ 6] [692887] +09:03:31 [ 12] [ 6] [090327] +09:03:31 [ 13] [ 4] [0320] +09:03:31 [ 15] [ 4] [0320] +09:03:31 [ 18] [ 4] [6011] +09:03:31 [ 22] [ 3] [900] +09:03:31 [ 25] [ 2] [02] +09:03:31 [ 28] [ 9] [D00002000] +09:03:31 [ 32] [ 6] [621354] +09:03:31 [ 35] [ 27] [1808931300006887=1803500202] +09:03:31 [ 37] [ 12] [507903735022] +09:03:31 [ 41] [ 8] [06002300] +09:03:31 [ 42] [ 15] [NATIVE ] +09:03:31 [ 43] [ 40] [ODX BOL Xay LAO] +09:03:31 [ 49] [ 3] [418] +09:03:31 [ 52] [ 16] [5D067547BE7C466E] +09:03:31 ============================================================================ +09:03:31 + + +waiting on router queue for slot.... +09:03:31 Sending to : <2> +09:03:31 ============================================================================ +09:03:33 ============================================================================ +09:03:33 Slot Id : <243> +09:03:33 Transaction Type : REQUEST +09:03:33 Received From : +09:03:33 ============================================================================ +09:03:33 FNo. Len. Field Value +09:03:33 ============================================================================ +09:03:33 [ 1] [ 4] [0200] +09:03:33 [ 2] [ 16] [1808930500014303] +09:03:33 [ 3] [ 6] [010000] +09:03:33 [ 4] [ 12] [000070000000] +09:03:33 [ 7] [ 10] [0320090124] +09:03:33 [ 11] [ 6] [934526] +09:03:33 [ 12] [ 6] [090124] +09:03:33 [ 13] [ 4] [0320] +09:03:33 [ 15] [ 4] [0320] +09:03:33 [ 18] [ 4] [6011] +09:03:33 [ 19] [ 3] [418] +09:03:33 [ 22] [ 3] [021] +09:03:33 [ 25] [ 2] [01] +09:03:33 [ 28] [ 9] [D00002000] +09:03:33 [ 32] [ 6] [668899] +09:03:33 [ 35] [ 27] [1808930500014303=1803500022] +09:03:33 [ 37] [ 12] [507900844843] +09:03:33 [ 41] [ 8] [03015003] +09:03:33 [ 42] [ 15] [APT ] +09:03:33 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:03:33 [ 49] [ 3] [418] +09:03:33 [ 52] [ 16] [10FFC6C354F7AB45] +09:03:33 ============================================================================ +09:03:33 + + +waiting on router queue for slot.... +09:03:33 Sending to : +09:03:33 ============================================================================ +09:03:33 Sending to : +09:03:33 ============================================================================ +09:03:33 ============================================================================ +09:03:33 Slot Id : <243> +09:03:33 Transaction Type : REQUEST +09:03:33 Received From : +09:03:33 ============================================================================ +09:03:33 FNo. Len. Field Value +09:03:33 ============================================================================ +09:03:33 [ 1] [ 4] [0200] +09:03:33 [ 2] [ 16] [1808930500014303] +09:03:33 [ 3] [ 6] [010000] +09:03:33 [ 4] [ 12] [000070000000] +09:03:33 [ 7] [ 10] [0320090124] +09:03:33 [ 11] [ 6] [934526] +09:03:33 [ 12] [ 6] [090124] +09:03:33 [ 13] [ 4] [0320] +09:03:33 [ 15] [ 4] [0320] +09:03:33 [ 18] [ 4] [6011] +09:03:33 [ 19] [ 3] [418] +09:03:33 [ 22] [ 3] [021] +09:03:33 [ 25] [ 2] [01] +09:03:33 [ 28] [ 9] [D00002000] +09:03:33 [ 32] [ 6] [668899] +09:03:33 [ 35] [ 27] [1808930500014303=1803500022] +09:03:33 [ 37] [ 12] [507900844843] +09:03:33 [ 41] [ 8] [03015003] +09:03:33 [ 42] [ 15] [APT ] +09:03:33 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:03:33 [ 49] [ 3] [418] +09:03:33 [ 52] [ 16] [10FFC6C354F7AB45] +09:03:33 ============================================================================ +09:03:33 + + +waiting on router queue for slot.... +09:03:33 Sending to : +09:03:33 ============================================================================ +09:03:33 ============================================================================ +09:03:33 Slot Id : <243> +09:03:33 Transaction Type : REQUEST +09:03:33 Received From : +09:03:33 ============================================================================ +09:03:33 FNo. Len. Field Value +09:03:33 ============================================================================ +09:03:33 [ 1] [ 4] [0200] +09:03:33 [ 2] [ 16] [1808930500014303] +09:03:33 [ 3] [ 6] [010000] +09:03:33 [ 4] [ 12] [000070000000] +09:03:33 [ 7] [ 10] [0320090124] +09:03:33 [ 11] [ 6] [934526] +09:03:33 [ 12] [ 6] [090124] +09:03:33 [ 13] [ 4] [0320] +09:03:33 [ 15] [ 4] [0320] +09:03:33 [ 18] [ 4] [6011] +09:03:33 [ 19] [ 3] [418] +09:03:33 [ 22] [ 3] [021] +09:03:33 [ 25] [ 2] [01] +09:03:33 [ 28] [ 9] [D00002000] +09:03:33 [ 32] [ 6] [668899] +09:03:33 [ 35] [ 27] [1808930500014303=1803500022] +09:03:33 [ 37] [ 12] [507900844843] +09:03:33 [ 41] [ 8] [03015003] +09:03:33 [ 42] [ 15] [APT ] +09:03:33 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:03:33 [ 49] [ 3] [418] +09:03:33 [ 52] [ 16] [08F610331435960F] +09:03:33 ============================================================================ +09:03:33 + + +waiting on router queue for slot.... +09:03:33 Sending to : <2> +09:03:33 ============================================================================ +09:03:34 ============================================================================ +09:03:34 Slot Id : <242> +09:03:34 Transaction Type : REQUEST +09:03:34 Received From : +09:03:34 ============================================================================ +09:03:34 FNo. Len. Field Value +09:03:34 ============================================================================ +09:03:34 [ 1] [ 4] [0200] +09:03:34 [ 2] [ 16] [1808930600037840] +09:03:34 [ 3] [ 6] [301000] +09:03:34 [ 4] [ 12] [000000000000] +09:03:34 [ 7] [ 10] [0320090331] +09:03:34 [ 11] [ 6] [692908] +09:03:34 [ 12] [ 6] [090331] +09:03:34 [ 13] [ 4] [0320] +09:03:34 [ 15] [ 4] [0320] +09:03:34 [ 18] [ 4] [6011] +09:03:34 [ 22] [ 3] [900] +09:03:34 [ 25] [ 2] [02] +09:03:34 [ 28] [ 9] [D00000000] +09:03:34 [ 32] [ 6] [621354] +09:03:34 [ 35] [ 27] [1808930600037840=1803500278] +09:03:34 [ 37] [ 12] [507904308933] +09:03:34 [ 41] [ 8] [03002900] +09:03:34 [ 42] [ 15] [NATIVE ] +09:03:34 [ 43] [ 40] [Head of Province KaisonephomvLAO] +09:03:34 [ 49] [ 3] [418] +09:03:34 [ 52] [ 16] [2135DE0F34349A87] +09:03:34 ============================================================================ +09:03:34 + + +waiting on router queue for slot.... +09:03:34 Sending to : +09:03:34 ============================================================================ +09:03:34 Sending to : +09:03:34 ============================================================================ +09:03:35 ============================================================================ +09:03:35 Slot Id : <242> +09:03:35 Transaction Type : REQUEST +09:03:35 Received From : +09:03:35 ============================================================================ +09:03:35 FNo. Len. Field Value +09:03:35 ============================================================================ +09:03:35 [ 1] [ 4] [0200] +09:03:35 [ 2] [ 16] [1808930600037840] +09:03:35 [ 3] [ 6] [301000] +09:03:35 [ 4] [ 12] [000000000000] +09:03:35 [ 7] [ 10] [0320090331] +09:03:35 [ 11] [ 6] [692908] +09:03:35 [ 12] [ 6] [090331] +09:03:35 [ 13] [ 4] [0320] +09:03:35 [ 15] [ 4] [0320] +09:03:35 [ 18] [ 4] [6011] +09:03:35 [ 22] [ 3] [900] +09:03:35 [ 25] [ 2] [02] +09:03:35 [ 28] [ 9] [D00000000] +09:03:35 [ 32] [ 6] [621354] +09:03:35 [ 35] [ 27] [1808930600037840=1803500278] +09:03:35 [ 37] [ 12] [507904308933] +09:03:35 [ 41] [ 8] [03002900] +09:03:35 [ 42] [ 15] [NATIVE ] +09:03:35 [ 43] [ 40] [Head of Province KaisonephomvLAO] +09:03:35 [ 49] [ 3] [418] +09:03:35 [ 52] [ 16] [2135DE0F34349A87] +09:03:35 ============================================================================ +09:03:35 + + +waiting on router queue for slot.... +09:03:35 Sending to : +09:03:35 ============================================================================ +09:03:35 ============================================================================ +09:03:35 Slot Id : <242> +09:03:35 Transaction Type : REQUEST +09:03:35 Received From : +09:03:35 ============================================================================ +09:03:35 FNo. Len. Field Value +09:03:35 ============================================================================ +09:03:35 [ 1] [ 4] [0200] +09:03:35 [ 2] [ 16] [1808930600037840] +09:03:35 [ 3] [ 6] [301000] +09:03:35 [ 4] [ 12] [000000000000] +09:03:35 [ 7] [ 10] [0320090331] +09:03:35 [ 11] [ 6] [692908] +09:03:35 [ 12] [ 6] [090331] +09:03:35 [ 13] [ 4] [0320] +09:03:35 [ 15] [ 4] [0320] +09:03:35 [ 18] [ 4] [6011] +09:03:35 [ 22] [ 3] [900] +09:03:35 [ 25] [ 2] [02] +09:03:35 [ 28] [ 9] [D00000000] +09:03:35 [ 32] [ 6] [621354] +09:03:35 [ 35] [ 27] [1808930600037840=1803500278] +09:03:35 [ 37] [ 12] [507904308933] +09:03:35 [ 41] [ 8] [03002900] +09:03:35 [ 42] [ 15] [NATIVE ] +09:03:35 [ 43] [ 40] [Head of Province KaisonephomvLAO] +09:03:35 [ 49] [ 3] [418] +09:03:35 [ 52] [ 16] [1554EA9233C86351] +09:03:35 ============================================================================ +09:03:35 + + +waiting on router queue for slot.... +09:03:35 Sending to : <2> +09:03:35 ============================================================================ +09:03:36 ============================================================================ +09:03:36 Slot Id : <177> +09:03:36 Transaction Type : RESPONSE +09:03:36 Received From : +09:03:36 ============================================================================ +09:03:36 FNo. Len. Field Value +09:03:36 ============================================================================ +09:03:36 [ 1] [ 4] [0210] +09:03:36 [ 2] [ 16] [1808931300006887] +09:03:36 [ 3] [ 6] [010000] +09:03:36 [ 4] [ 12] [000100000000] +09:03:36 [ 6] [ 12] [000100000000] +09:03:36 [ 7] [ 10] [0320090327] +09:03:36 [ 11] [ 6] [692887] +09:03:36 [ 12] [ 6] [090327] +09:03:36 [ 13] [ 4] [0320] +09:03:36 [ 18] [ 4] [6011] +09:03:36 [ 19] [ 3] [418] +09:03:36 [ 22] [ 3] [021] +09:03:36 [ 32] [ 6] [621354] +09:03:36 [ 35] [ 27] [1808931300006887=1803500202] +09:03:36 [ 37] [ 12] [507903735022] +09:03:36 [ 38] [ 6] [692887] +09:03:36 [ 39] [ 2] [00] +09:03:36 [ 41] [ 8] [06002300] +09:03:36 [ 49] [ 3] [418] +09:03:36 [ 52] [ 16] [5D067547BE7C466E] +09:03:36 [ 54] [ 20] [1001418C000603342700] +09:03:36 ============================================================================ +09:03:36 Sending to : +09:03:36 ============================================================================ +09:03:36 + + +waiting on router queue for slot.... +09:03:37 ============================================================================ +09:03:37 Slot Id : <243> +09:03:37 Transaction Type : RESPONSE +09:03:37 Received From : +09:03:37 ============================================================================ +09:03:37 FNo. Len. Field Value +09:03:37 ============================================================================ +09:03:37 [ 1] [ 4] [0210] +09:03:37 [ 2] [ 16] [1808930500014303] +09:03:37 [ 3] [ 6] [010000] +09:03:37 [ 4] [ 12] [000070000000] +09:03:37 [ 6] [ 12] [000070000000] +09:03:37 [ 7] [ 10] [0320090124] +09:03:37 [ 11] [ 6] [934526] +09:03:37 [ 12] [ 6] [090124] +09:03:37 [ 13] [ 4] [0320] +09:03:37 [ 18] [ 4] [6011] +09:03:37 [ 19] [ 3] [418] +09:03:37 [ 22] [ 3] [021] +09:03:37 [ 32] [ 6] [668899] +09:03:37 [ 35] [ 27] [1808930500014303=1803500022] +09:03:37 [ 37] [ 12] [507900844843] +09:03:37 [ 38] [ 6] [934526] +09:03:37 [ 39] [ 2] [51] +09:03:37 [ 41] [ 8] [03015003] +09:03:37 [ 49] [ 3] [418] +09:03:37 [ 52] [ 16] [08F610331435960F] +09:03:37 ============================================================================ +09:03:37 Sending to : +09:03:37 ============================================================================ +09:03:37 + + +waiting on router queue for slot.... +09:03:37 ============================================================================ +09:03:37 Slot Id : <177> +09:03:37 Transaction Type : RESPONSE +09:03:37 Received From : +09:03:37 ============================================================================ +09:03:37 FNo. Len. Field Value +09:03:37 ============================================================================ +09:03:37 [ 1] [ 4] [0210] +09:03:37 [ 2] [ 16] [1808931300006887] +09:03:37 [ 3] [ 6] [010000] +09:03:37 [ 4] [ 12] [000100000000] +09:03:37 [ 6] [ 12] [000100000000] +09:03:37 [ 7] [ 10] [0320090327] +09:03:37 [ 11] [ 6] [692887] +09:03:37 [ 12] [ 6] [090327] +09:03:37 [ 13] [ 4] [0320] +09:03:37 [ 18] [ 4] [6011] +09:03:37 [ 19] [ 3] [418] +09:03:37 [ 22] [ 3] [021] +09:03:37 [ 32] [ 6] [621354] +09:03:37 [ 35] [ 27] [1808931300006887=1803500202] +09:03:37 [ 37] [ 12] [507903735022] +09:03:37 [ 38] [ 6] [692887] +09:03:37 [ 39] [ 2] [00] +09:03:37 [ 41] [ 8] [06002300] +09:03:37 [ 49] [ 3] [418] +09:03:37 [ 52] [ 16] [5D067547BE7C466E] +09:03:37 [ 54] [ 20] [1001418C000603342700] +09:03:37 ============================================================================ +09:03:37 Calculate Source COMM Id = 0 +09:03:37 ============================================================================ +09:03:37 + + +waiting on router queue for slot.... +09:03:39 ============================================================================ +09:03:39 Slot Id : <243> +09:03:39 Transaction Type : RESPONSE +09:03:39 Received From : +09:03:39 ============================================================================ +09:03:39 FNo. Len. Field Value +09:03:39 ============================================================================ +09:03:39 [ 1] [ 4] [0210] +09:03:39 [ 2] [ 16] [1808930500014303] +09:03:39 [ 3] [ 6] [010000] +09:03:39 [ 4] [ 12] [000070000000] +09:03:39 [ 6] [ 12] [000070000000] +09:03:39 [ 7] [ 10] [0320090124] +09:03:39 [ 11] [ 6] [934526] +09:03:39 [ 12] [ 6] [090124] +09:03:39 [ 13] [ 4] [0320] +09:03:39 [ 18] [ 4] [6011] +09:03:39 [ 19] [ 3] [418] +09:03:39 [ 22] [ 3] [021] +09:03:39 [ 32] [ 6] [668899] +09:03:39 [ 35] [ 27] [1808930500014303=1803500022] +09:03:39 [ 37] [ 12] [507900844843] +09:03:39 [ 38] [ 6] [934526] +09:03:39 [ 39] [ 2] [51] +09:03:39 [ 41] [ 8] [03015003] +09:03:39 [ 49] [ 3] [418] +09:03:39 [ 52] [ 16] [08F610331435960F] +09:03:39 ============================================================================ +09:03:39 Calculate Source COMM Id = 4 +09:03:39 ============================================================================ +09:03:39 + + +waiting on router queue for slot.... +09:03:40 ============================================================================ +09:03:40 Slot Id : <235> +09:03:40 Transaction Type : REQUEST +09:03:40 Received From : +09:03:40 ============================================================================ +09:03:40 FNo. Len. Field Value +09:03:40 ============================================================================ +09:03:40 [ 1] [ 4] [0200] +09:03:40 [ 2] [ 16] [6213541000696131] +09:03:40 [ 3] [ 6] [010000] +09:03:40 [ 4] [ 12] [000010000000] +09:03:40 [ 7] [ 10] [0320020248] +09:03:40 [ 11] [ 6] [267363] +09:03:40 [ 12] [ 6] [090248] +09:03:40 [ 13] [ 4] [0320] +09:03:40 [ 14] [ 4] [4912] +09:03:40 [ 15] [ 4] [0320] +09:03:40 [ 18] [ 4] [6011] +09:03:40 [ 19] [ 3] [418] +09:03:40 [ 22] [ 3] [021] +09:03:40 [ 25] [ 2] [01] +09:03:40 [ 28] [ 9] [D00002000] +09:03:40 [ 32] [ 6] [180893] +09:03:40 [ 35] [ 32] [6213541000696131=491212019613599] +09:03:40 [ 37] [ 12] [507902267363] +09:03:40 [ 41] [ 8] [0111BLBR] +09:03:40 [ 42] [ 15] [999999 ] +09:03:40 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:03:40 [ 49] [ 3] [418] +09:03:40 [ 52] [ 16] [0F658D15DE72A0DA] +09:03:40 ============================================================================ +09:03:40 + + +waiting on router queue for slot.... +09:03:40 Sending to : +09:03:40 ============================================================================ +09:03:40 Sending to : +09:03:40 ============================================================================ +09:03:40 ============================================================================ +09:03:40 Slot Id : <235> +09:03:40 Transaction Type : REQUEST +09:03:40 Received From : +09:03:40 ============================================================================ +09:03:40 FNo. Len. Field Value +09:03:40 ============================================================================ +09:03:40 [ 1] [ 4] [0200] +09:03:40 [ 2] [ 16] [6213541000696131] +09:03:40 [ 3] [ 6] [010000] +09:03:40 [ 4] [ 12] [000010000000] +09:03:40 [ 7] [ 10] [0320020248] +09:03:40 [ 11] [ 6] [267363] +09:03:40 [ 12] [ 6] [090248] +09:03:40 [ 13] [ 4] [0320] +09:03:40 [ 14] [ 4] [4912] +09:03:40 [ 15] [ 4] [0320] +09:03:40 [ 18] [ 4] [6011] +09:03:40 [ 19] [ 3] [418] +09:03:40 [ 22] [ 3] [021] +09:03:40 [ 25] [ 2] [01] +09:03:40 [ 28] [ 9] [D00002000] +09:03:40 [ 32] [ 6] [180893] +09:03:40 [ 35] [ 32] [6213541000696131=491212019613599] +09:03:40 [ 37] [ 12] [507902267363] +09:03:40 [ 41] [ 8] [0111BLBR] +09:03:40 [ 42] [ 15] [999999 ] +09:03:40 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:03:40 [ 49] [ 3] [418] +09:03:40 [ 52] [ 16] [0F658D15DE72A0DA] +09:03:40 ============================================================================ +09:03:40 + + +waiting on router queue for slot.... +09:03:40 Sending to : +09:03:40 ============================================================================ +09:03:40 ============================================================================ +09:03:40 Slot Id : <235> +09:03:40 Transaction Type : REQUEST +09:03:40 Received From : +09:03:40 ============================================================================ +09:03:40 FNo. Len. Field Value +09:03:40 ============================================================================ +09:03:40 [ 1] [ 4] [0200] +09:03:40 [ 2] [ 16] [6213541000696131] +09:03:40 [ 3] [ 6] [010000] +09:03:40 [ 4] [ 12] [000010000000] +09:03:40 [ 7] [ 10] [0320020248] +09:03:40 [ 11] [ 6] [267363] +09:03:40 [ 12] [ 6] [090248] +09:03:40 [ 13] [ 4] [0320] +09:03:40 [ 14] [ 4] [4912] +09:03:40 [ 15] [ 4] [0320] +09:03:40 [ 18] [ 4] [6011] +09:03:40 [ 19] [ 3] [418] +09:03:40 [ 22] [ 3] [021] +09:03:40 [ 25] [ 2] [01] +09:03:40 [ 28] [ 9] [D00002000] +09:03:40 [ 32] [ 6] [180893] +09:03:40 [ 35] [ 32] [6213541000696131=491212019613599] +09:03:40 [ 37] [ 12] [507902267363] +09:03:40 [ 41] [ 8] [0111BLBR] +09:03:40 [ 42] [ 15] [999999 ] +09:03:40 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:03:40 [ 49] [ 3] [418] +09:03:40 [ 52] [ 16] [20F9AA9E452387AB] +09:03:40 ============================================================================ +09:03:40 + + +waiting on router queue for slot.... +09:03:40 Sending to : <0> +09:03:40 ============================================================================ +09:03:40 ============================================================================ +09:03:40 Slot Id : <248> +09:03:40 Transaction Type : REQUEST +09:03:40 Received From : +09:03:40 ============================================================================ +09:03:40 FNo. Len. Field Value +09:03:40 ============================================================================ +09:03:40 [ 1] [ 4] [0420] +09:03:40 [ 2] [ 16] [1808930400010799] +09:03:40 [ 3] [ 6] [011000] +09:03:40 [ 4] [ 12] [000100000000] +09:03:40 [ 7] [ 10] [0320090239] +09:03:40 [ 11] [ 6] [692699] +09:03:40 [ 12] [ 6] [090239] +09:03:40 [ 13] [ 4] [0320] +09:03:40 [ 15] [ 4] [0320] +09:03:40 [ 18] [ 4] [6011] +09:03:40 [ 22] [ 3] [900] +09:03:40 [ 25] [ 2] [02] +09:03:40 [ 28] [ 9] [C00002000] +09:03:40 [ 32] [ 6] [621354] +09:03:40 [ 35] [ 27] [1808930400010799=1803500167] +09:03:40 [ 37] [ 12] [507904965464] +09:03:40 [ 39] [ 2] [00] +09:03:40 [ 41] [ 8] [15001100] +09:03:40 [ 42] [ 15] [NATIVE ] +09:03:40 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:03:40 [ 49] [ 3] [418] +09:03:40 [ 90] [ 42] [020069269903200902390000062135400000000000] +09:03:40 ============================================================================ +09:03:40 + + +waiting on router queue for slot.... +09:03:40 Sending to : +09:03:40 ============================================================================ +09:03:41 ============================================================================ +09:03:41 Slot Id : <242> +09:03:41 Transaction Type : RESPONSE +09:03:41 Received From : +09:03:41 ============================================================================ +09:03:41 FNo. Len. Field Value +09:03:41 ============================================================================ +09:03:41 [ 1] [ 4] [0210] +09:03:41 [ 2] [ 16] [1808930600037840] +09:03:41 [ 3] [ 6] [301000] +09:03:41 [ 7] [ 10] [0320090331] +09:03:41 [ 11] [ 6] [692908] +09:03:41 [ 12] [ 6] [090331] +09:03:41 [ 13] [ 4] [0320] +09:03:41 [ 14] [ 4] [1803] +09:03:41 [ 19] [ 3] [418] +09:03:41 [ 32] [ 6] [621354] +09:03:41 [ 37] [ 12] [507904308933] +09:03:41 [ 38] [ 6] [692908] +09:03:41 [ 39] [ 2] [00] +09:03:41 [ 41] [ 8] [03002900] +09:03:41 [ 49] [ 3] [418] +09:03:41 [ 52] [ 16] [1554EA9233C86351] +09:03:41 [ 54] [ 20] [1002418C000008234900] +09:03:41 ============================================================================ +09:03:41 Sending to : +09:03:41 ============================================================================ +09:03:41 + + +waiting on router queue for slot.... +09:03:42 ============================================================================ +09:03:42 Slot Id : <235> +09:03:42 Transaction Type : RESPONSE +09:03:42 Received From : +09:03:42 ============================================================================ +09:03:42 FNo. Len. Field Value +09:03:42 ============================================================================ +09:03:42 [ 1] [ 4] [0210] +09:03:42 [ 2] [ 16] [6213541000696131] +09:03:42 [ 3] [ 6] [010000] +09:03:42 [ 4] [ 12] [000010000000] +09:03:42 [ 7] [ 10] [0320020248] +09:03:42 [ 11] [ 6] [267363] +09:03:42 [ 12] [ 6] [090248] +09:03:42 [ 13] [ 4] [0320] +09:03:42 [ 15] [ 4] [0320] +09:03:42 [ 18] [ 4] [6011] +09:03:42 [ 19] [ 3] [418] +09:03:42 [ 32] [ 6] [180893] +09:03:42 [ 35] [ 32] [6213541000696131=491212019613599] +09:03:42 [ 37] [ 12] [507902267363] +09:03:42 [ 38] [ 6] [998843] +09:03:42 [ 39] [ 2] [00] +09:03:42 [ 41] [ 8] [0111BLBR] +09:03:42 [ 49] [ 3] [418] +09:03:42 [ 54] [ 40] [0001418C0000157185530002418C000015718553] +09:03:42 ============================================================================ +09:03:42 Sending to : +09:03:42 ============================================================================ +09:03:42 + + +waiting on router queue for slot.... +09:03:42 ============================================================================ +09:03:42 Slot Id : <251> +09:03:42 Transaction Type : REQUEST +09:03:42 Received From : +09:03:42 ============================================================================ +09:03:42 FNo. Len. Field Value +09:03:42 ============================================================================ +09:03:42 [ 1] [ 4] [0200] +09:03:42 [ 2] [ 16] [6213543000184530] +09:03:42 [ 3] [ 6] [011000] +09:03:42 [ 4] [ 12] [000100000000] +09:03:42 [ 7] [ 10] [0320091130] +09:03:42 [ 11] [ 6] [085589] +09:03:42 [ 12] [ 6] [091130] +09:03:42 [ 13] [ 4] [0320] +09:03:42 [ 14] [ 4] [4912] +09:03:42 [ 15] [ 4] [0320] +09:03:42 [ 18] [ 4] [6011] +09:03:42 [ 22] [ 3] [900] +09:03:42 [ 25] [ 2] [02] +09:03:42 [ 28] [ 9] [D00002000] +09:03:42 [ 32] [ 6] [220699] +09:03:42 [ 35] [ 32] [6213543000184530=491212018453176] +09:03:42 [ 37] [ 12] [507900140207] +09:03:42 [ 41] [ 8] [03000200] +09:03:42 [ 42] [ 15] [APTRA ] +09:03:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:03:42 [ 49] [ 3] [418] +09:03:42 [ 52] [ 16] [AB492E3BE10AB8A5] +09:03:42 ============================================================================ +09:03:42 + + +waiting on router queue for slot.... +09:03:42 Sending to : +09:03:42 ============================================================================ +09:03:42 Sending to : +09:03:42 ============================================================================ +09:03:43 ============================================================================ +09:03:43 Slot Id : <251> +09:03:43 Transaction Type : REQUEST +09:03:43 Received From : +09:03:43 ============================================================================ +09:03:43 FNo. Len. Field Value +09:03:43 ============================================================================ +09:03:43 [ 1] [ 4] [0200] +09:03:43 [ 2] [ 16] [6213543000184530] +09:03:43 [ 3] [ 6] [011000] +09:03:43 [ 4] [ 12] [000100000000] +09:03:43 [ 7] [ 10] [0320091130] +09:03:43 [ 11] [ 6] [085589] +09:03:43 [ 12] [ 6] [091130] +09:03:43 [ 13] [ 4] [0320] +09:03:43 [ 14] [ 4] [4912] +09:03:43 [ 15] [ 4] [0320] +09:03:43 [ 18] [ 4] [6011] +09:03:43 [ 22] [ 3] [900] +09:03:43 [ 25] [ 2] [02] +09:03:43 [ 28] [ 9] [D00002000] +09:03:43 [ 32] [ 6] [220699] +09:03:43 [ 35] [ 32] [6213543000184530=491212018453176] +09:03:43 [ 37] [ 12] [507900140207] +09:03:43 [ 41] [ 8] [03000200] +09:03:43 [ 42] [ 15] [APTRA ] +09:03:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:03:43 [ 49] [ 3] [418] +09:03:43 [ 52] [ 16] [AB492E3BE10AB8A5] +09:03:43 ============================================================================ +09:03:43 + + +waiting on router queue for slot.... +09:03:43 Sending to : +09:03:43 ============================================================================ +09:03:43 ============================================================================ +09:03:43 Slot Id : <251> +09:03:43 Transaction Type : REQUEST +09:03:43 Received From : +09:03:43 ============================================================================ +09:03:43 FNo. Len. Field Value +09:03:43 ============================================================================ +09:03:43 [ 1] [ 4] [0200] +09:03:43 [ 2] [ 16] [6213543000184530] +09:03:43 [ 3] [ 6] [011000] +09:03:43 [ 4] [ 12] [000100000000] +09:03:43 [ 7] [ 10] [0320091130] +09:03:43 [ 11] [ 6] [085589] +09:03:43 [ 12] [ 6] [091130] +09:03:43 [ 13] [ 4] [0320] +09:03:43 [ 14] [ 4] [4912] +09:03:43 [ 15] [ 4] [0320] +09:03:43 [ 18] [ 4] [6011] +09:03:43 [ 22] [ 3] [900] +09:03:43 [ 25] [ 2] [02] +09:03:43 [ 28] [ 9] [D00002000] +09:03:43 [ 32] [ 6] [220699] +09:03:43 [ 35] [ 32] [6213543000184530=491212018453176] +09:03:43 [ 37] [ 12] [507900140207] +09:03:43 [ 41] [ 8] [03000200] +09:03:43 [ 42] [ 15] [APTRA ] +09:03:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:03:43 [ 49] [ 3] [418] +09:03:43 [ 52] [ 16] [9C066231572F2F7F] +09:03:43 ============================================================================ +09:03:43 + + +waiting on router queue for slot.... +09:03:43 Sending to : <0> +09:03:43 ============================================================================ +09:03:44 ============================================================================ +09:03:44 Slot Id : <251> +09:03:44 Transaction Type : RESPONSE +09:03:44 Received From : +09:03:44 ============================================================================ +09:03:44 FNo. Len. Field Value +09:03:44 ============================================================================ +09:03:44 [ 1] [ 4] [0210] +09:03:44 [ 2] [ 16] [6213543000184530] +09:03:44 [ 3] [ 6] [011000] +09:03:44 [ 4] [ 12] [000100000000] +09:03:44 [ 7] [ 10] [0320091130] +09:03:44 [ 11] [ 6] [085589] +09:03:44 [ 12] [ 6] [091130] +09:03:44 [ 13] [ 4] [0320] +09:03:44 [ 15] [ 4] [0320] +09:03:44 [ 18] [ 4] [6011] +09:03:44 [ 32] [ 6] [220699] +09:03:44 [ 35] [ 32] [6213543000184530=491212018453176] +09:03:44 [ 37] [ 12] [507900140207] +09:03:44 [ 38] [ 6] [182450] +09:03:44 [ 39] [ 2] [00] +09:03:44 [ 41] [ 8] [03000200] +09:03:44 [ 49] [ 3] [418] +09:03:44 [ 54] [ 40] [1001418C0001558280871002418C000155828087] +09:03:44 ============================================================================ +09:03:44 Sending to : +09:03:44 ============================================================================ +09:03:44 + + +waiting on router queue for slot.... +09:03:45 ============================================================================ +09:03:45 Slot Id : <248> +09:03:45 Transaction Type : RESPONSE +09:03:45 Received From : +09:03:45 ============================================================================ +09:03:45 FNo. Len. Field Value +09:03:45 ============================================================================ +09:03:45 [ 1] [ 4] [0430] +09:03:45 [ 2] [ 16] [1808930400010799] +09:03:45 [ 3] [ 6] [011000] +09:03:45 [ 4] [ 12] [000100000000] +09:03:45 [ 7] [ 10] [0320090239] +09:03:45 [ 11] [ 6] [692699] +09:03:45 [ 12] [ 6] [090239] +09:03:45 [ 13] [ 4] [0320] +09:03:45 [ 15] [ 4] [0320] +09:03:45 [ 18] [ 4] [6011] +09:03:45 [ 22] [ 3] [900] +09:03:45 [ 25] [ 2] [02] +09:03:45 [ 28] [ 9] [C00002000] +09:03:45 [ 32] [ 6] [621354] +09:03:45 [ 35] [ 27] [1808930400010799=1803500167] +09:03:45 [ 37] [ 12] [507904965464] +09:03:45 [ 39] [ 2] [00] +09:03:45 [ 41] [ 8] [15001100] +09:03:45 [ 42] [ 15] [NATIVE ] +09:03:45 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:03:45 [ 49] [ 3] [418] +09:03:45 [ 90] [ 42] [020069269903200902390000062135400000000000] +09:03:45 ============================================================================ +09:03:45 Calculate Source COMM Id = 0 +09:03:45 ============================================================================ +09:03:45 + + +waiting on router queue for slot.... +09:03:46 ============================================================================ +09:03:46 Slot Id : <251> +09:03:46 Transaction Type : RESPONSE +09:03:46 Received From : +09:03:46 ============================================================================ +09:03:46 FNo. Len. Field Value +09:03:46 ============================================================================ +09:03:46 [ 1] [ 4] [0210] +09:03:46 [ 2] [ 16] [6213543000184530] +09:03:46 [ 3] [ 6] [011000] +09:03:46 [ 4] [ 12] [000100000000] +09:03:46 [ 7] [ 10] [0320091130] +09:03:46 [ 11] [ 6] [085589] +09:03:46 [ 12] [ 6] [091130] +09:03:46 [ 13] [ 4] [0320] +09:03:46 [ 15] [ 4] [0320] +09:03:46 [ 18] [ 4] [6011] +09:03:46 [ 32] [ 6] [220699] +09:03:46 [ 35] [ 32] [6213543000184530=491212018453176] +09:03:46 [ 37] [ 12] [507900140207] +09:03:46 [ 38] [ 6] [182450] +09:03:46 [ 39] [ 2] [00] +09:03:46 [ 41] [ 8] [03000200] +09:03:46 [ 49] [ 3] [418] +09:03:46 [ 54] [ 40] [1001418C0001558280871002418C000155828087] +09:03:46 ============================================================================ +09:03:46 Calculate Source COMM Id = 1 +09:03:46 ============================================================================ +09:03:46 + + +waiting on router queue for slot.... +09:03:47 ============================================================================ +09:03:47 Slot Id : <244> +09:03:47 Transaction Type : REQUEST +09:03:47 Received From : +09:03:47 ============================================================================ +09:03:47 FNo. Len. Field Value +09:03:47 ============================================================================ +09:03:47 [ 1] [ 4] [0800] +09:03:47 [ 7] [ 10] [0320020255] +09:03:47 [ 11] [ 6] [155542] +09:03:47 [ 70] [ 3] [301] +09:03:47 ============================================================================ +09:03:47 + + +waiting on router queue for slot.... +09:03:47 Sending to : +09:03:47 ============================================================================ +09:03:47 ============================================================================ +09:03:47 Slot Id : <244> +09:03:47 Transaction Type : RESPONSE +09:03:47 Received From : +09:03:47 ============================================================================ +09:03:47 FNo. Len. Field Value +09:03:47 ============================================================================ +09:03:47 [ 1] [ 4] [0810] +09:03:47 [ 7] [ 10] [0320020255] +09:03:47 [ 11] [ 6] [155542] +09:03:47 [ 39] [ 2] [00] +09:03:47 [ 70] [ 3] [301] +09:03:47 ============================================================================ +09:03:47 Calculate Source COMM Id = 2 +09:03:47 ============================================================================ +09:03:47 + + +waiting on router queue for slot.... +09:03:48 ============================================================================ +09:03:48 Slot Id : <235> +09:03:48 Transaction Type : RESPONSE +09:03:48 Received From : +09:03:48 ============================================================================ +09:03:48 FNo. Len. Field Value +09:03:48 ============================================================================ +09:03:48 [ 1] [ 4] [0210] +09:03:48 [ 2] [ 16] [6213541000696131] +09:03:48 [ 3] [ 6] [010000] +09:03:48 [ 4] [ 12] [000010000000] +09:03:48 [ 7] [ 10] [0320020248] +09:03:48 [ 11] [ 6] [267363] +09:03:48 [ 12] [ 6] [090248] +09:03:48 [ 13] [ 4] [0320] +09:03:48 [ 15] [ 4] [0320] +09:03:48 [ 18] [ 4] [6011] +09:03:48 [ 19] [ 3] [418] +09:03:48 [ 32] [ 6] [180893] +09:03:48 [ 35] [ 32] [6213541000696131=491212019613599] +09:03:48 [ 37] [ 12] [507902267363] +09:03:48 [ 38] [ 6] [998843] +09:03:48 [ 39] [ 2] [00] +09:03:48 [ 41] [ 8] [0111BLBR] +09:03:48 [ 49] [ 3] [418] +09:03:48 [ 54] [ 40] [0001418C0000157185530002418C000015718553] +09:03:48 ============================================================================ +09:03:48 Calculate Source COMM Id = 2 +09:03:48 ============================================================================ +09:03:48 + + +waiting on router queue for slot.... +09:03:50 ============================================================================ +09:03:50 Slot Id : <242> +09:03:50 Transaction Type : RESPONSE +09:03:50 Received From : +09:03:50 ============================================================================ +09:03:50 FNo. Len. Field Value +09:03:50 ============================================================================ +09:03:50 [ 1] [ 4] [0210] +09:03:50 [ 2] [ 16] [1808930600037840] +09:03:50 [ 3] [ 6] [301000] +09:03:50 [ 7] [ 10] [0320090331] +09:03:50 [ 11] [ 6] [692908] +09:03:50 [ 12] [ 6] [090331] +09:03:50 [ 13] [ 4] [0320] +09:03:50 [ 14] [ 4] [1803] +09:03:50 [ 19] [ 3] [418] +09:03:50 [ 32] [ 6] [621354] +09:03:50 [ 37] [ 12] [507904308933] +09:03:50 [ 38] [ 6] [692908] +09:03:50 [ 39] [ 2] [00] +09:03:50 [ 41] [ 8] [03002900] +09:03:50 [ 49] [ 3] [418] +09:03:50 [ 52] [ 16] [1554EA9233C86351] +09:03:50 [ 54] [ 20] [1002418C000008234900] +09:03:50 ============================================================================ +09:03:50 Calculate Source COMM Id = 0 +09:03:50 ============================================================================ +09:03:50 + + +waiting on router queue for slot.... +09:03:56 ============================================================================ +09:03:56 Slot Id : <227> +09:03:56 Transaction Type : REQUEST +09:03:56 Received From : +09:03:56 ============================================================================ +09:03:56 FNo. Len. Field Value +09:03:56 ============================================================================ +09:03:56 [ 1] [ 4] [0800] +09:03:56 [ 7] [ 10] [0320161546] +09:03:56 [ 11] [ 6] [091546] +09:03:56 [ 37] [ 12] [57909091546] +09:03:56 [ 70] [ 3] [301] +09:03:56 ============================================================================ +09:03:56 + + +waiting on router queue for slot.... +09:03:56 Sending to : +09:03:56 ============================================================================ +09:03:56 ============================================================================ +09:03:56 Slot Id : <227> +09:03:56 Transaction Type : RESPONSE +09:03:56 Received From : +09:03:56 ============================================================================ +09:03:56 FNo. Len. Field Value +09:03:56 ============================================================================ +09:03:56 [ 1] [ 4] [0810] +09:03:56 [ 7] [ 10] [0320161546] +09:03:56 [ 11] [ 6] [091546] +09:03:56 [ 37] [ 12] [579090915460] +09:03:56 [ 39] [ 2] [00] +09:03:56 [ 70] [ 3] [810] +09:03:56 ============================================================================ +09:03:56 Calculate Source COMM Id = 6 +09:03:56 ============================================================================ +09:03:56 + + +waiting on router queue for slot.... +09:03:58 ============================================================================ +09:03:58 Slot Id : <250> +09:03:58 Transaction Type : REQUEST +09:03:58 Received From : +09:03:58 ============================================================================ +09:03:58 FNo. Len. Field Value +09:03:58 ============================================================================ +09:03:58 [ 1] [ 4] [0800] +09:03:58 [ 7] [ 10] [0320020306] +09:03:58 [ 11] [ 6] [155543] +09:03:58 [ 70] [ 3] [301] +09:03:58 ============================================================================ +09:03:58 + + +waiting on router queue for slot.... +09:03:58 Sending to : +09:03:58 ============================================================================ +09:03:58 ============================================================================ +09:03:58 Slot Id : <250> +09:03:58 Transaction Type : RESPONSE +09:03:58 Received From : +09:03:58 ============================================================================ +09:03:58 FNo. Len. Field Value +09:03:58 ============================================================================ +09:03:58 [ 1] [ 4] [0810] +09:03:58 [ 7] [ 10] [0320020306] +09:03:58 [ 11] [ 6] [155543] +09:03:58 [ 39] [ 2] [00] +09:03:58 [ 70] [ 3] [301] +09:03:58 ============================================================================ +09:03:58 Calculate Source COMM Id = 2 +09:03:58 ============================================================================ +09:03:58 + + +waiting on router queue for slot.... +09:04:02 ============================================================================ +09:04:02 Slot Id : <255> +09:04:02 Transaction Type : REQUEST +09:04:02 Received From : +09:04:02 ============================================================================ +09:04:02 FNo. Len. Field Value +09:04:02 ============================================================================ +09:04:02 [ 1] [ 4] [0200] +09:04:02 [ 2] [ 16] [1808930800002636] +09:04:02 [ 3] [ 6] [011000] +09:04:02 [ 4] [ 12] [000100000000] +09:04:02 [ 7] [ 10] [0320091150] +09:04:02 [ 11] [ 6] [001968] +09:04:02 [ 12] [ 6] [091150] +09:04:02 [ 13] [ 4] [0320] +09:04:02 [ 14] [ 4] [1803] +09:04:02 [ 15] [ 4] [0320] +09:04:02 [ 18] [ 4] [6011] +09:04:02 [ 22] [ 3] [900] +09:04:02 [ 25] [ 2] [02] +09:04:02 [ 28] [ 9] [D00002000] +09:04:02 [ 32] [ 6] [220699] +09:04:02 [ 35] [ 27] [1808930800002636=1803500438] +09:04:02 [ 37] [ 12] [507900296952] +09:04:02 [ 41] [ 8] [01001600] +09:04:02 [ 42] [ 15] [APTRA ] +09:04:02 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:04:02 [ 49] [ 3] [418] +09:04:02 [ 52] [ 16] [278C6EBAB5FA4D3D] +09:04:02 ============================================================================ +09:04:02 + + +waiting on router queue for slot.... +09:04:02 Sending to : +09:04:02 ============================================================================ +09:04:02 Sending to : +09:04:02 ============================================================================ +09:04:03 ============================================================================ +09:04:03 Slot Id : <255> +09:04:03 Transaction Type : REQUEST +09:04:03 Received From : +09:04:03 ============================================================================ +09:04:03 FNo. Len. Field Value +09:04:03 ============================================================================ +09:04:03 [ 1] [ 4] [0200] +09:04:03 [ 2] [ 16] [1808930800002636] +09:04:03 [ 3] [ 6] [011000] +09:04:03 [ 4] [ 12] [000100000000] +09:04:03 [ 7] [ 10] [0320091150] +09:04:03 [ 11] [ 6] [001968] +09:04:03 [ 12] [ 6] [091150] +09:04:03 [ 13] [ 4] [0320] +09:04:03 [ 14] [ 4] [1803] +09:04:03 [ 15] [ 4] [0320] +09:04:03 [ 18] [ 4] [6011] +09:04:03 [ 22] [ 3] [900] +09:04:03 [ 25] [ 2] [02] +09:04:03 [ 28] [ 9] [D00002000] +09:04:03 [ 32] [ 6] [220699] +09:04:03 [ 35] [ 27] [1808930800002636=1803500438] +09:04:03 [ 37] [ 12] [507900296952] +09:04:03 [ 41] [ 8] [01001600] +09:04:03 [ 42] [ 15] [APTRA ] +09:04:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:04:03 [ 49] [ 3] [418] +09:04:03 [ 52] [ 16] [278C6EBAB5FA4D3D] +09:04:03 ============================================================================ +09:04:03 + + +waiting on router queue for slot.... +09:04:03 Sending to : +09:04:03 ============================================================================ +09:04:03 ============================================================================ +09:04:03 Slot Id : <255> +09:04:03 Transaction Type : REQUEST +09:04:03 Received From : +09:04:03 ============================================================================ +09:04:03 FNo. Len. Field Value +09:04:03 ============================================================================ +09:04:03 [ 1] [ 4] [0200] +09:04:03 [ 2] [ 16] [1808930800002636] +09:04:03 [ 3] [ 6] [011000] +09:04:03 [ 4] [ 12] [000100000000] +09:04:03 [ 7] [ 10] [0320091150] +09:04:03 [ 11] [ 6] [001968] +09:04:03 [ 12] [ 6] [091150] +09:04:03 [ 13] [ 4] [0320] +09:04:03 [ 14] [ 4] [1803] +09:04:03 [ 15] [ 4] [0320] +09:04:03 [ 18] [ 4] [6011] +09:04:03 [ 22] [ 3] [900] +09:04:03 [ 25] [ 2] [02] +09:04:03 [ 28] [ 9] [D00002000] +09:04:03 [ 32] [ 6] [220699] +09:04:03 [ 35] [ 27] [1808930800002636=1803500438] +09:04:03 [ 37] [ 12] [507900296952] +09:04:03 [ 41] [ 8] [01001600] +09:04:03 [ 42] [ 15] [APTRA ] +09:04:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:04:03 [ 49] [ 3] [418] +09:04:03 [ 52] [ 16] [D3A971460B258AA6] +09:04:03 ============================================================================ +09:04:03 + + +waiting on router queue for slot.... +09:04:03 Sending to : <2> +09:04:03 ============================================================================ +09:04:08 ============================================================================ +09:04:08 Slot Id : <200> +09:04:08 Transaction Type : REQUEST +09:04:08 Received From : +09:04:08 ============================================================================ +09:04:08 FNo. Len. Field Value +09:04:08 ============================================================================ +09:04:08 [ 1] [ 4] [0200] +09:04:08 [ 2] [ 16] [1808930500014303] +09:04:08 [ 3] [ 6] [010000] +09:04:08 [ 4] [ 12] [000100000000] +09:04:08 [ 7] [ 10] [0320090200] +09:04:08 [ 11] [ 6] [934552] +09:04:08 [ 12] [ 6] [090200] +09:04:08 [ 13] [ 4] [0320] +09:04:08 [ 15] [ 4] [0320] +09:04:08 [ 18] [ 4] [6011] +09:04:08 [ 19] [ 3] [418] +09:04:08 [ 22] [ 3] [021] +09:04:08 [ 25] [ 2] [01] +09:04:08 [ 28] [ 9] [D00002000] +09:04:08 [ 32] [ 6] [668899] +09:04:08 [ 35] [ 27] [1808930500014303=1803500022] +09:04:08 [ 37] [ 12] [507900844844] +09:04:08 [ 41] [ 8] [03015003] +09:04:08 [ 42] [ 15] [APT ] +09:04:08 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:04:08 [ 49] [ 3] [418] +09:04:08 [ 52] [ 16] [10FFC6C354F7AB45] +09:04:08 ============================================================================ +09:04:08 + + +waiting on router queue for slot.... +09:04:08 Sending to : +09:04:08 ============================================================================ +09:04:08 Sending to : +09:04:08 ============================================================================ +09:04:08 ============================================================================ +09:04:08 Slot Id : <226> +09:04:08 Transaction Type : REQUEST +09:04:08 Received From : +09:04:08 ============================================================================ +09:04:08 FNo. Len. Field Value +09:04:08 ============================================================================ +09:04:08 [ 1] [ 4] [0800] +09:04:08 [ 2] [ 5] [02531] +09:04:08 [ 3] [ 6] [579098] +09:04:08 [ 7] [ 10] [0320020408] +09:04:08 [ 11] [ 6] [806938] +09:04:08 [ 15] [ 10] [0320020408] +09:04:08 [ 37] [ 11] [57909806938] +09:04:08 [ 70] [ 3] [001] +09:04:08 ============================================================================ +09:04:08 + + +waiting on router queue for slot.... +09:04:08 ============================================================================ +09:04:08 Slot Id : <226> +09:04:08 Transaction Type : RESPONSE +09:04:08 Received From : +09:04:08 ============================================================================ +09:04:08 FNo. Len. Field Value +09:04:08 ============================================================================ +09:04:08 [ 1] [ 4] [0810] +09:04:08 [ 7] [ 10] [0320020408] +09:04:08 [ 11] [ 6] [806938] +09:04:08 [ 15] [ 4] [0320] +09:04:08 [ 37] [ 12] [57909806938] +09:04:08 [ 39] [ 2] [00] +09:04:08 [ 70] [ 3] [001] +09:04:08 ============================================================================ +09:04:08 Sending to : +09:04:08 ============================================================================ +09:04:08 + + +waiting on router queue for slot.... +09:04:08 ============================================================================ +09:04:08 Slot Id : <200> +09:04:08 Transaction Type : REQUEST +09:04:08 Received From : +09:04:08 ============================================================================ +09:04:08 FNo. Len. Field Value +09:04:08 ============================================================================ +09:04:08 [ 1] [ 4] [0200] +09:04:08 [ 2] [ 16] [1808930500014303] +09:04:08 [ 3] [ 6] [010000] +09:04:08 [ 4] [ 12] [000100000000] +09:04:08 [ 7] [ 10] [0320090200] +09:04:08 [ 11] [ 6] [934552] +09:04:08 [ 12] [ 6] [090200] +09:04:08 [ 13] [ 4] [0320] +09:04:08 [ 15] [ 4] [0320] +09:04:08 [ 18] [ 4] [6011] +09:04:08 [ 19] [ 3] [418] +09:04:08 [ 22] [ 3] [021] +09:04:08 [ 25] [ 2] [01] +09:04:08 [ 28] [ 9] [D00002000] +09:04:08 [ 32] [ 6] [668899] +09:04:08 [ 35] [ 27] [1808930500014303=1803500022] +09:04:08 [ 37] [ 12] [507900844844] +09:04:08 [ 41] [ 8] [03015003] +09:04:08 [ 42] [ 15] [APT ] +09:04:08 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:04:08 [ 49] [ 3] [418] +09:04:08 [ 52] [ 16] [10FFC6C354F7AB45] +09:04:08 ============================================================================ +09:04:08 + + +waiting on router queue for slot.... +09:04:08 Sending to : +09:04:08 ============================================================================ +09:04:09 ============================================================================ +09:04:09 Slot Id : <200> +09:04:09 Transaction Type : REQUEST +09:04:09 Received From : +09:04:09 ============================================================================ +09:04:09 FNo. Len. Field Value +09:04:09 ============================================================================ +09:04:09 [ 1] [ 4] [0200] +09:04:09 [ 2] [ 16] [1808930500014303] +09:04:09 [ 3] [ 6] [010000] +09:04:09 [ 4] [ 12] [000100000000] +09:04:09 [ 7] [ 10] [0320090200] +09:04:09 [ 11] [ 6] [934552] +09:04:09 [ 12] [ 6] [090200] +09:04:09 [ 13] [ 4] [0320] +09:04:09 [ 15] [ 4] [0320] +09:04:09 [ 18] [ 4] [6011] +09:04:09 [ 19] [ 3] [418] +09:04:09 [ 22] [ 3] [021] +09:04:09 [ 25] [ 2] [01] +09:04:09 [ 28] [ 9] [D00002000] +09:04:09 [ 32] [ 6] [668899] +09:04:09 [ 35] [ 27] [1808930500014303=1803500022] +09:04:09 [ 37] [ 12] [507900844844] +09:04:09 [ 41] [ 8] [03015003] +09:04:09 [ 42] [ 15] [APT ] +09:04:09 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:04:09 [ 49] [ 3] [418] +09:04:09 [ 52] [ 16] [08F610331435960F] +09:04:09 ============================================================================ +09:04:09 + + +waiting on router queue for slot.... +09:04:09 Sending to : <2> +09:04:09 ============================================================================ +09:04:09 ============================================================================ +09:04:09 Slot Id : <255> +09:04:09 Transaction Type : RESPONSE +09:04:09 Received From : +09:04:09 ============================================================================ +09:04:09 FNo. Len. Field Value +09:04:09 ============================================================================ +09:04:09 [ 1] [ 4] [0210] +09:04:09 [ 2] [ 16] [1808930800002636] +09:04:09 [ 3] [ 6] [011000] +09:04:09 [ 4] [ 12] [000100000000] +09:04:09 [ 6] [ 12] [000100000000] +09:04:09 [ 7] [ 10] [0320091150] +09:04:09 [ 11] [ 6] [001968] +09:04:09 [ 12] [ 6] [091150] +09:04:09 [ 13] [ 4] [0320] +09:04:09 [ 14] [ 4] [1803] +09:04:09 [ 18] [ 4] [6011] +09:04:09 [ 19] [ 3] [418] +09:04:09 [ 22] [ 3] [021] +09:04:09 [ 32] [ 6] [220699] +09:04:09 [ 35] [ 27] [1808930800002636=1803500438] +09:04:09 [ 37] [ 12] [507900296952] +09:04:09 [ 38] [ 6] [001968] +09:04:09 [ 39] [ 2] [00] +09:04:09 [ 41] [ 8] [01001600] +09:04:09 [ 49] [ 3] [418] +09:04:09 [ 52] [ 16] [D3A971460B258AA6] +09:04:09 [ 54] [ 20] [1001418C000135944300] +09:04:09 ============================================================================ +09:04:09 Sending to : +09:04:09 ============================================================================ +09:04:09 + + +waiting on router queue for slot.... +09:04:11 ============================================================================ +09:04:11 Slot Id : <255> +09:04:11 Transaction Type : RESPONSE +09:04:11 Received From : +09:04:11 ============================================================================ +09:04:11 FNo. Len. Field Value +09:04:11 ============================================================================ +09:04:11 [ 1] [ 4] [0210] +09:04:11 [ 2] [ 16] [1808930800002636] +09:04:11 [ 3] [ 6] [011000] +09:04:11 [ 4] [ 12] [000100000000] +09:04:11 [ 6] [ 12] [000100000000] +09:04:11 [ 7] [ 10] [0320091150] +09:04:11 [ 11] [ 6] [001968] +09:04:11 [ 12] [ 6] [091150] +09:04:11 [ 13] [ 4] [0320] +09:04:11 [ 14] [ 4] [1803] +09:04:11 [ 18] [ 4] [6011] +09:04:11 [ 19] [ 3] [418] +09:04:11 [ 22] [ 3] [021] +09:04:11 [ 32] [ 6] [220699] +09:04:11 [ 35] [ 27] [1808930800002636=1803500438] +09:04:11 [ 37] [ 12] [507900296952] +09:04:11 [ 38] [ 6] [001968] +09:04:11 [ 39] [ 2] [00] +09:04:11 [ 41] [ 8] [01001600] +09:04:11 [ 49] [ 3] [418] +09:04:11 [ 52] [ 16] [D3A971460B258AA6] +09:04:11 [ 54] [ 20] [1001418C000135944300] +09:04:11 ============================================================================ +09:04:11 Calculate Source COMM Id = 1 +09:04:11 ============================================================================ +09:04:11 + + +waiting on router queue for slot.... +09:04:11 ============================================================================ +09:04:11 Slot Id : <238> +09:04:11 Transaction Type : REQUEST +09:04:11 Received From : +09:04:11 ============================================================================ +09:04:11 FNo. Len. Field Value +09:04:11 ============================================================================ +09:04:11 [ 1] [ 4] [0200] +09:04:11 [ 2] [ 16] [6213545000739817] +09:04:11 [ 3] [ 6] [301000] +09:04:11 [ 7] [ 10] [0320020319] +09:04:11 [ 11] [ 6] [267365] +09:04:11 [ 12] [ 6] [090319] +09:04:11 [ 13] [ 4] [0320] +09:04:11 [ 14] [ 4] [4912] +09:04:11 [ 15] [ 4] [0320] +09:04:11 [ 18] [ 4] [6011] +09:04:11 [ 19] [ 3] [418] +09:04:11 [ 22] [ 3] [021] +09:04:11 [ 25] [ 2] [01] +09:04:11 [ 32] [ 6] [180893] +09:04:11 [ 35] [ 32] [6213545000739817=491212013981759] +09:04:11 [ 37] [ 12] [507902267365] +09:04:11 [ 41] [ 8] [0243VTKS] +09:04:11 [ 42] [ 15] [999999 ] +09:04:11 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +09:04:11 [ 49] [ 3] [418] +09:04:11 [ 52] [ 16] [C1FF8C99FF94AE10] +09:04:11 ============================================================================ +09:04:11 + + +waiting on router queue for slot.... +09:04:11 Sending to : +09:04:11 ============================================================================ +09:04:11 Sending to : +09:04:11 ============================================================================ +09:04:12 ============================================================================ +09:04:12 Slot Id : <238> +09:04:12 Transaction Type : REQUEST +09:04:12 Received From : +09:04:12 ============================================================================ +09:04:12 FNo. Len. Field Value +09:04:12 ============================================================================ +09:04:12 [ 1] [ 4] [0200] +09:04:12 [ 2] [ 16] [6213545000739817] +09:04:12 [ 3] [ 6] [301000] +09:04:12 [ 7] [ 10] [0320020319] +09:04:12 [ 11] [ 6] [267365] +09:04:12 [ 12] [ 6] [090319] +09:04:12 [ 13] [ 4] [0320] +09:04:12 [ 14] [ 4] [4912] +09:04:12 [ 15] [ 4] [0320] +09:04:12 [ 18] [ 4] [6011] +09:04:12 [ 19] [ 3] [418] +09:04:12 [ 22] [ 3] [021] +09:04:12 [ 25] [ 2] [01] +09:04:12 [ 32] [ 6] [180893] +09:04:12 [ 35] [ 32] [6213545000739817=491212013981759] +09:04:12 [ 37] [ 12] [507902267365] +09:04:12 [ 41] [ 8] [0243VTKS] +09:04:12 [ 42] [ 15] [999999 ] +09:04:12 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +09:04:12 [ 49] [ 3] [418] +09:04:12 [ 52] [ 16] [C1FF8C99FF94AE10] +09:04:12 ============================================================================ +09:04:12 + + +waiting on router queue for slot.... +09:04:12 Sending to : +09:04:12 ============================================================================ +09:04:12 ============================================================================ +09:04:12 Slot Id : <238> +09:04:12 Transaction Type : REQUEST +09:04:12 Received From : +09:04:12 ============================================================================ +09:04:12 FNo. Len. Field Value +09:04:12 ============================================================================ +09:04:12 [ 1] [ 4] [0200] +09:04:12 [ 2] [ 16] [6213545000739817] +09:04:12 [ 3] [ 6] [301000] +09:04:12 [ 7] [ 10] [0320020319] +09:04:12 [ 11] [ 6] [267365] +09:04:12 [ 12] [ 6] [090319] +09:04:12 [ 13] [ 4] [0320] +09:04:12 [ 14] [ 4] [4912] +09:04:12 [ 15] [ 4] [0320] +09:04:12 [ 18] [ 4] [6011] +09:04:12 [ 19] [ 3] [418] +09:04:12 [ 22] [ 3] [021] +09:04:12 [ 25] [ 2] [01] +09:04:12 [ 32] [ 6] [180893] +09:04:12 [ 35] [ 32] [6213545000739817=491212013981759] +09:04:12 [ 37] [ 12] [507902267365] +09:04:12 [ 41] [ 8] [0243VTKS] +09:04:12 [ 42] [ 15] [999999 ] +09:04:12 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +09:04:12 [ 49] [ 3] [418] +09:04:12 [ 52] [ 16] [7F1ABD0910903AC7] +09:04:12 ============================================================================ +09:04:12 + + +waiting on router queue for slot.... +09:04:12 Sending to : <0> +09:04:12 ============================================================================ +09:04:12 ============================================================================ +09:04:12 Slot Id : <238> +09:04:12 Transaction Type : RESPONSE +09:04:12 Received From : +09:04:12 ============================================================================ +09:04:12 FNo. Len. Field Value +09:04:12 ============================================================================ +09:04:12 [ 1] [ 4] [0210] +09:04:12 [ 2] [ 16] [6213545000739817] +09:04:12 [ 3] [ 6] [301000] +09:04:12 [ 4] [ 12] [000000000000] +09:04:12 [ 7] [ 10] [0320020319] +09:04:12 [ 11] [ 6] [267365] +09:04:12 [ 12] [ 6] [090319] +09:04:12 [ 13] [ 4] [0320] +09:04:12 [ 15] [ 4] [0320] +09:04:12 [ 18] [ 4] [6011] +09:04:12 [ 19] [ 3] [418] +09:04:12 [ 32] [ 6] [180893] +09:04:12 [ 35] [ 32] [6213545000739817=491212013981759] +09:04:12 [ 37] [ 12] [507902267365] +09:04:12 [ 38] [ 6] [233924] +09:04:12 [ 39] [ 2] [00] +09:04:12 [ 41] [ 8] [0243VTKS] +09:04:12 [ 49] [ 3] [418] +09:04:12 [ 54] [ 40] [1001418C0001778789221002418C000177878922] +09:04:12 ============================================================================ +09:04:12 Sending to : +09:04:12 ============================================================================ +09:04:12 + + +waiting on router queue for slot.... +09:04:13 ============================================================================ +09:04:13 Slot Id : <200> +09:04:13 Transaction Type : RESPONSE +09:04:13 Received From : +09:04:13 ============================================================================ +09:04:13 FNo. Len. Field Value +09:04:13 ============================================================================ +09:04:13 [ 1] [ 4] [0210] +09:04:13 [ 2] [ 16] [1808930500014303] +09:04:13 [ 3] [ 6] [010000] +09:04:13 [ 4] [ 12] [000100000000] +09:04:13 [ 6] [ 12] [000100000000] +09:04:13 [ 7] [ 10] [0320090200] +09:04:13 [ 11] [ 6] [934552] +09:04:13 [ 12] [ 6] [090200] +09:04:13 [ 13] [ 4] [0320] +09:04:13 [ 18] [ 4] [6011] +09:04:13 [ 19] [ 3] [418] +09:04:13 [ 22] [ 3] [021] +09:04:13 [ 32] [ 6] [668899] +09:04:13 [ 35] [ 27] [1808930500014303=1803500022] +09:04:13 [ 37] [ 12] [507900844844] +09:04:13 [ 38] [ 6] [934552] +09:04:13 [ 39] [ 2] [51] +09:04:13 [ 41] [ 8] [03015003] +09:04:13 [ 49] [ 3] [418] +09:04:13 [ 52] [ 16] [08F610331435960F] +09:04:13 ============================================================================ +09:04:13 Sending to : +09:04:13 ============================================================================ +09:04:13 + + +waiting on router queue for slot.... +09:04:14 ============================================================================ +09:04:14 Slot Id : <238> +09:04:14 Transaction Type : RESPONSE +09:04:14 Received From : +09:04:14 ============================================================================ +09:04:14 FNo. Len. Field Value +09:04:14 ============================================================================ +09:04:14 [ 1] [ 4] [0210] +09:04:14 [ 2] [ 16] [6213545000739817] +09:04:14 [ 3] [ 6] [301000] +09:04:14 [ 4] [ 12] [000000000000] +09:04:14 [ 7] [ 10] [0320020319] +09:04:14 [ 11] [ 6] [267365] +09:04:14 [ 12] [ 6] [090319] +09:04:14 [ 13] [ 4] [0320] +09:04:14 [ 15] [ 4] [0320] +09:04:14 [ 18] [ 4] [6011] +09:04:14 [ 19] [ 3] [418] +09:04:14 [ 32] [ 6] [180893] +09:04:14 [ 35] [ 32] [6213545000739817=491212013981759] +09:04:14 [ 37] [ 12] [507902267365] +09:04:14 [ 38] [ 6] [233924] +09:04:14 [ 39] [ 2] [00] +09:04:14 [ 41] [ 8] [0243VTKS] +09:04:14 [ 49] [ 3] [418] +09:04:14 [ 54] [ 40] [1001418C0001778789221002418C000177878922] +09:04:14 ============================================================================ +09:04:14 Calculate Source COMM Id = 2 +09:04:14 ============================================================================ +09:04:14 + + +waiting on router queue for slot.... +09:04:15 ============================================================================ +09:04:15 Slot Id : <200> +09:04:15 Transaction Type : RESPONSE +09:04:15 Received From : +09:04:15 ============================================================================ +09:04:15 FNo. Len. Field Value +09:04:15 ============================================================================ +09:04:15 [ 1] [ 4] [0210] +09:04:15 [ 2] [ 16] [1808930500014303] +09:04:15 [ 3] [ 6] [010000] +09:04:15 [ 4] [ 12] [000100000000] +09:04:15 [ 6] [ 12] [000100000000] +09:04:15 [ 7] [ 10] [0320090200] +09:04:15 [ 11] [ 6] [934552] +09:04:15 [ 12] [ 6] [090200] +09:04:15 [ 13] [ 4] [0320] +09:04:15 [ 18] [ 4] [6011] +09:04:15 [ 19] [ 3] [418] +09:04:15 [ 22] [ 3] [021] +09:04:15 [ 32] [ 6] [668899] +09:04:15 [ 35] [ 27] [1808930500014303=1803500022] +09:04:15 [ 37] [ 12] [507900844844] +09:04:15 [ 38] [ 6] [934552] +09:04:15 [ 39] [ 2] [51] +09:04:15 [ 41] [ 8] [03015003] +09:04:15 [ 49] [ 3] [418] +09:04:15 [ 52] [ 16] [08F610331435960F] +09:04:15 ============================================================================ +09:04:15 Calculate Source COMM Id = 4 +09:04:15 ============================================================================ +09:04:15 + + +waiting on router queue for slot.... +09:04:27 ============================================================================ +09:04:27 Slot Id : <233> +09:04:27 Transaction Type : REQUEST +09:04:27 Received From : +09:04:27 ============================================================================ +09:04:27 FNo. Len. Field Value +09:04:27 ============================================================================ +09:04:27 [ 1] [ 4] [0800] +09:04:27 [ 7] [ 10] [0320020335] +09:04:27 [ 11] [ 6] [155544] +09:04:27 [ 70] [ 3] [301] +09:04:27 ============================================================================ +09:04:27 + + +waiting on router queue for slot.... +09:04:27 Sending to : +09:04:27 ============================================================================ +09:04:27 ============================================================================ +09:04:27 Slot Id : <233> +09:04:27 Transaction Type : RESPONSE +09:04:27 Received From : +09:04:27 ============================================================================ +09:04:27 FNo. Len. Field Value +09:04:27 ============================================================================ +09:04:27 [ 1] [ 4] [0810] +09:04:27 [ 7] [ 10] [0320020335] +09:04:27 [ 11] [ 6] [155544] +09:04:27 [ 39] [ 2] [00] +09:04:27 [ 70] [ 3] [301] +09:04:27 ============================================================================ +09:04:27 Calculate Source COMM Id = 2 +09:04:27 ============================================================================ +09:04:27 + + +waiting on router queue for slot.... +09:04:33 ============================================================================ +09:04:33 Slot Id : <237> +09:04:33 Transaction Type : REQUEST +09:04:33 Received From : +09:04:33 ============================================================================ +09:04:33 FNo. Len. Field Value +09:04:33 ============================================================================ +09:04:33 [ 1] [ 4] [0200] +09:04:33 [ 2] [ 16] [1808931300006887] +09:04:33 [ 3] [ 6] [010000] +09:04:33 [ 4] [ 12] [000100000000] +09:04:33 [ 7] [ 10] [0320090430] +09:04:33 [ 11] [ 6] [693121] +09:04:33 [ 12] [ 6] [090430] +09:04:33 [ 13] [ 4] [0320] +09:04:33 [ 15] [ 4] [0320] +09:04:33 [ 18] [ 4] [6011] +09:04:33 [ 22] [ 3] [900] +09:04:33 [ 25] [ 2] [02] +09:04:33 [ 28] [ 9] [D00002000] +09:04:33 [ 32] [ 6] [621354] +09:04:33 [ 35] [ 27] [1808931300006887=1803500202] +09:04:33 [ 37] [ 12] [507903735024] +09:04:33 [ 41] [ 8] [06002300] +09:04:33 [ 42] [ 15] [NATIVE ] +09:04:33 [ 43] [ 40] [ODX BOL Xay LAO] +09:04:33 [ 49] [ 3] [418] +09:04:33 [ 52] [ 16] [0533F325FFA15695] +09:04:33 ============================================================================ +09:04:33 + + +waiting on router queue for slot.... +09:04:33 Sending to : +09:04:33 ============================================================================ +09:04:33 Sending to : +09:04:33 ============================================================================ +09:04:34 ============================================================================ +09:04:34 Slot Id : <237> +09:04:34 Transaction Type : REQUEST +09:04:34 Received From : +09:04:34 ============================================================================ +09:04:34 FNo. Len. Field Value +09:04:34 ============================================================================ +09:04:34 [ 1] [ 4] [0200] +09:04:34 [ 2] [ 16] [1808931300006887] +09:04:34 [ 3] [ 6] [010000] +09:04:34 [ 4] [ 12] [000100000000] +09:04:34 [ 7] [ 10] [0320090430] +09:04:34 [ 11] [ 6] [693121] +09:04:34 [ 12] [ 6] [090430] +09:04:34 [ 13] [ 4] [0320] +09:04:34 [ 15] [ 4] [0320] +09:04:34 [ 18] [ 4] [6011] +09:04:34 [ 22] [ 3] [900] +09:04:34 [ 25] [ 2] [02] +09:04:34 [ 28] [ 9] [D00002000] +09:04:34 [ 32] [ 6] [621354] +09:04:34 [ 35] [ 27] [1808931300006887=1803500202] +09:04:34 [ 37] [ 12] [507903735024] +09:04:34 [ 41] [ 8] [06002300] +09:04:34 [ 42] [ 15] [NATIVE ] +09:04:34 [ 43] [ 40] [ODX BOL Xay LAO] +09:04:34 [ 49] [ 3] [418] +09:04:34 [ 52] [ 16] [0533F325FFA15695] +09:04:34 ============================================================================ +09:04:34 + + +waiting on router queue for slot.... +09:04:34 Sending to : +09:04:34 ============================================================================ +09:04:34 ============================================================================ +09:04:34 Slot Id : <237> +09:04:34 Transaction Type : REQUEST +09:04:34 Received From : +09:04:34 ============================================================================ +09:04:34 FNo. Len. Field Value +09:04:34 ============================================================================ +09:04:34 [ 1] [ 4] [0200] +09:04:34 [ 2] [ 16] [1808931300006887] +09:04:34 [ 3] [ 6] [010000] +09:04:34 [ 4] [ 12] [000100000000] +09:04:34 [ 7] [ 10] [0320090430] +09:04:34 [ 11] [ 6] [693121] +09:04:34 [ 12] [ 6] [090430] +09:04:34 [ 13] [ 4] [0320] +09:04:34 [ 15] [ 4] [0320] +09:04:34 [ 18] [ 4] [6011] +09:04:34 [ 22] [ 3] [900] +09:04:34 [ 25] [ 2] [02] +09:04:34 [ 28] [ 9] [D00002000] +09:04:34 [ 32] [ 6] [621354] +09:04:34 [ 35] [ 27] [1808931300006887=1803500202] +09:04:34 [ 37] [ 12] [507903735024] +09:04:34 [ 41] [ 8] [06002300] +09:04:34 [ 42] [ 15] [NATIVE ] +09:04:34 [ 43] [ 40] [ODX BOL Xay LAO] +09:04:34 [ 49] [ 3] [418] +09:04:34 [ 52] [ 16] [5D067547BE7C466E] +09:04:34 ============================================================================ +09:04:34 + + +waiting on router queue for slot.... +09:04:34 Sending to : <2> +09:04:34 ============================================================================ +09:04:37 ============================================================================ +09:04:37 Slot Id : <237> +09:04:37 Transaction Type : RESPONSE +09:04:37 Received From : +09:04:37 ============================================================================ +09:04:37 FNo. Len. Field Value +09:04:37 ============================================================================ +09:04:37 [ 1] [ 4] [0210] +09:04:37 [ 2] [ 16] [1808931300006887] +09:04:37 [ 3] [ 6] [010000] +09:04:37 [ 4] [ 12] [000100000000] +09:04:37 [ 6] [ 12] [000100000000] +09:04:37 [ 7] [ 10] [0320090430] +09:04:37 [ 11] [ 6] [693121] +09:04:37 [ 12] [ 6] [090430] +09:04:37 [ 13] [ 4] [0320] +09:04:37 [ 18] [ 4] [6011] +09:04:37 [ 19] [ 3] [418] +09:04:37 [ 22] [ 3] [021] +09:04:37 [ 32] [ 6] [621354] +09:04:37 [ 35] [ 27] [1808931300006887=1803500202] +09:04:37 [ 37] [ 12] [507903735024] +09:04:37 [ 38] [ 6] [693121] +09:04:37 [ 39] [ 2] [00] +09:04:37 [ 41] [ 8] [06002300] +09:04:37 [ 49] [ 3] [418] +09:04:37 [ 52] [ 16] [5D067547BE7C466E] +09:04:37 [ 54] [ 20] [1001418C000503142700] +09:04:37 ============================================================================ +09:04:37 Sending to : +09:04:37 ============================================================================ +09:04:37 + + +waiting on router queue for slot.... +09:04:39 ============================================================================ +09:04:39 Slot Id : <237> +09:04:39 Transaction Type : RESPONSE +09:04:39 Received From : +09:04:39 ============================================================================ +09:04:39 FNo. Len. Field Value +09:04:39 ============================================================================ +09:04:39 [ 1] [ 4] [0210] +09:04:39 [ 2] [ 16] [1808931300006887] +09:04:39 [ 3] [ 6] [010000] +09:04:39 [ 4] [ 12] [000100000000] +09:04:39 [ 6] [ 12] [000100000000] +09:04:39 [ 7] [ 10] [0320090430] +09:04:39 [ 11] [ 6] [693121] +09:04:39 [ 12] [ 6] [090430] +09:04:39 [ 13] [ 4] [0320] +09:04:39 [ 18] [ 4] [6011] +09:04:39 [ 19] [ 3] [418] +09:04:39 [ 22] [ 3] [021] +09:04:39 [ 32] [ 6] [621354] +09:04:39 [ 35] [ 27] [1808931300006887=1803500202] +09:04:39 [ 37] [ 12] [507903735024] +09:04:39 [ 38] [ 6] [693121] +09:04:39 [ 39] [ 2] [00] +09:04:39 [ 41] [ 8] [06002300] +09:04:39 [ 49] [ 3] [418] +09:04:39 [ 52] [ 16] [5D067547BE7C466E] +09:04:39 [ 54] [ 20] [1001418C000503142700] +09:04:39 ============================================================================ +09:04:39 Calculate Source COMM Id = 0 +09:04:39 ============================================================================ +09:04:39 + + +waiting on router queue for slot.... +09:04:39 ============================================================================ +09:04:39 Slot Id : <216> +09:04:39 Transaction Type : REQUEST +09:04:39 Received From : +09:04:39 ============================================================================ +09:04:39 FNo. Len. Field Value +09:04:39 ============================================================================ +09:04:39 [ 1] [ 4] [0200] +09:04:39 [ 2] [ 16] [1808930500014303] +09:04:39 [ 3] [ 6] [010000] +09:04:39 [ 4] [ 12] [000050000000] +09:04:39 [ 7] [ 10] [0320090231] +09:04:39 [ 11] [ 6] [934575] +09:04:39 [ 12] [ 6] [090231] +09:04:39 [ 13] [ 4] [0320] +09:04:39 [ 15] [ 4] [0320] +09:04:39 [ 18] [ 4] [6011] +09:04:39 [ 19] [ 3] [418] +09:04:39 [ 22] [ 3] [021] +09:04:39 [ 25] [ 2] [01] +09:04:39 [ 28] [ 9] [D00002000] +09:04:39 [ 32] [ 6] [668899] +09:04:39 [ 35] [ 27] [1808930500014303=1803500022] +09:04:39 [ 37] [ 12] [507900844845] +09:04:39 [ 41] [ 8] [03015003] +09:04:39 [ 42] [ 15] [APT ] +09:04:39 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:04:39 [ 49] [ 3] [418] +09:04:39 [ 52] [ 16] [10FFC6C354F7AB45] +09:04:39 ============================================================================ +09:04:39 + + +waiting on router queue for slot.... +09:04:39 Sending to : +09:04:39 ============================================================================ +09:04:39 Sending to : +09:04:39 ============================================================================ +09:04:40 ============================================================================ +09:04:40 Slot Id : <216> +09:04:40 Transaction Type : REQUEST +09:04:40 Received From : +09:04:40 ============================================================================ +09:04:40 FNo. Len. Field Value +09:04:40 ============================================================================ +09:04:40 [ 1] [ 4] [0200] +09:04:40 [ 2] [ 16] [1808930500014303] +09:04:40 [ 3] [ 6] [010000] +09:04:40 [ 4] [ 12] [000050000000] +09:04:40 [ 7] [ 10] [0320090231] +09:04:40 [ 11] [ 6] [934575] +09:04:40 [ 12] [ 6] [090231] +09:04:40 [ 13] [ 4] [0320] +09:04:40 [ 15] [ 4] [0320] +09:04:40 [ 18] [ 4] [6011] +09:04:40 [ 19] [ 3] [418] +09:04:40 [ 22] [ 3] [021] +09:04:40 [ 25] [ 2] [01] +09:04:40 [ 28] [ 9] [D00002000] +09:04:40 [ 32] [ 6] [668899] +09:04:40 [ 35] [ 27] [1808930500014303=1803500022] +09:04:40 [ 37] [ 12] [507900844845] +09:04:40 [ 41] [ 8] [03015003] +09:04:40 [ 42] [ 15] [APT ] +09:04:40 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:04:40 [ 49] [ 3] [418] +09:04:40 [ 52] [ 16] [10FFC6C354F7AB45] +09:04:40 ============================================================================ +09:04:40 + + +waiting on router queue for slot.... +09:04:40 Sending to : +09:04:40 ============================================================================ +09:04:40 ============================================================================ +09:04:40 Slot Id : <216> +09:04:40 Transaction Type : REQUEST +09:04:40 Received From : +09:04:40 ============================================================================ +09:04:40 FNo. Len. Field Value +09:04:40 ============================================================================ +09:04:40 [ 1] [ 4] [0200] +09:04:40 [ 2] [ 16] [1808930500014303] +09:04:40 [ 3] [ 6] [010000] +09:04:40 [ 4] [ 12] [000050000000] +09:04:40 [ 7] [ 10] [0320090231] +09:04:40 [ 11] [ 6] [934575] +09:04:40 [ 12] [ 6] [090231] +09:04:40 [ 13] [ 4] [0320] +09:04:40 [ 15] [ 4] [0320] +09:04:40 [ 18] [ 4] [6011] +09:04:40 [ 19] [ 3] [418] +09:04:40 [ 22] [ 3] [021] +09:04:40 [ 25] [ 2] [01] +09:04:40 [ 28] [ 9] [D00002000] +09:04:40 [ 32] [ 6] [668899] +09:04:40 [ 35] [ 27] [1808930500014303=1803500022] +09:04:40 [ 37] [ 12] [507900844845] +09:04:40 [ 41] [ 8] [03015003] +09:04:40 [ 42] [ 15] [APT ] +09:04:40 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:04:40 [ 49] [ 3] [418] +09:04:40 [ 52] [ 16] [08F610331435960F] +09:04:40 ============================================================================ +09:04:40 + + +waiting on router queue for slot.... +09:04:40 Sending to : <2> +09:04:40 ============================================================================ +09:04:41 ============================================================================ +09:04:41 Slot Id : <216> +09:04:41 Transaction Type : RESPONSE +09:04:41 Received From : +09:04:41 ============================================================================ +09:04:41 FNo. Len. Field Value +09:04:41 ============================================================================ +09:04:41 [ 1] [ 4] [0210] +09:04:41 [ 2] [ 16] [1808930500014303] +09:04:41 [ 3] [ 6] [010000] +09:04:41 [ 4] [ 12] [000050000000] +09:04:41 [ 6] [ 12] [000050000000] +09:04:41 [ 7] [ 10] [0320090231] +09:04:41 [ 11] [ 6] [934575] +09:04:41 [ 12] [ 6] [090231] +09:04:41 [ 13] [ 4] [0320] +09:04:41 [ 18] [ 4] [6011] +09:04:41 [ 19] [ 3] [418] +09:04:41 [ 22] [ 3] [021] +09:04:41 [ 32] [ 6] [668899] +09:04:41 [ 35] [ 27] [1808930500014303=1803500022] +09:04:41 [ 37] [ 12] [507900844845] +09:04:41 [ 38] [ 6] [934575] +09:04:41 [ 39] [ 2] [51] +09:04:41 [ 41] [ 8] [03015003] +09:04:41 [ 49] [ 3] [418] +09:04:41 [ 52] [ 16] [08F610331435960F] +09:04:41 ============================================================================ +09:04:41 Sending to : +09:04:41 ============================================================================ +09:04:41 + + +waiting on router queue for slot.... +09:04:43 ============================================================================ +09:04:43 Slot Id : <216> +09:04:43 Transaction Type : RESPONSE +09:04:43 Received From : +09:04:43 ============================================================================ +09:04:43 FNo. Len. Field Value +09:04:43 ============================================================================ +09:04:43 [ 1] [ 4] [0210] +09:04:43 [ 2] [ 16] [1808930500014303] +09:04:43 [ 3] [ 6] [010000] +09:04:43 [ 4] [ 12] [000050000000] +09:04:43 [ 6] [ 12] [000050000000] +09:04:43 [ 7] [ 10] [0320090231] +09:04:43 [ 11] [ 6] [934575] +09:04:43 [ 12] [ 6] [090231] +09:04:43 [ 13] [ 4] [0320] +09:04:43 [ 18] [ 4] [6011] +09:04:43 [ 19] [ 3] [418] +09:04:43 [ 22] [ 3] [021] +09:04:43 [ 32] [ 6] [668899] +09:04:43 [ 35] [ 27] [1808930500014303=1803500022] +09:04:43 [ 37] [ 12] [507900844845] +09:04:43 [ 38] [ 6] [934575] +09:04:43 [ 39] [ 2] [51] +09:04:43 [ 41] [ 8] [03015003] +09:04:43 [ 49] [ 3] [418] +09:04:43 [ 52] [ 16] [08F610331435960F] +09:04:43 ============================================================================ +09:04:43 Calculate Source COMM Id = 4 +09:04:43 ============================================================================ +09:04:43 + + +waiting on router queue for slot.... +09:04:45 ============================================================================ +09:04:45 Slot Id : <234> +09:04:45 Transaction Type : REQUEST +09:04:45 Received From : +09:04:45 ============================================================================ +09:04:45 FNo. Len. Field Value +09:04:45 ============================================================================ +09:04:45 [ 1] [ 4] [0200] +09:04:45 [ 2] [ 16] [6213545000988752] +09:04:45 [ 3] [ 6] [301000] +09:04:45 [ 7] [ 10] [0320020352] +09:04:45 [ 11] [ 6] [267367] +09:04:45 [ 12] [ 6] [090352] +09:04:45 [ 13] [ 4] [0320] +09:04:45 [ 14] [ 4] [4912] +09:04:45 [ 15] [ 4] [0320] +09:04:45 [ 18] [ 4] [6011] +09:04:45 [ 19] [ 3] [418] +09:04:45 [ 22] [ 3] [021] +09:04:45 [ 25] [ 2] [01] +09:04:45 [ 32] [ 6] [180893] +09:04:45 [ 35] [ 32] [6213545000988752=491212018875978] +09:04:45 [ 37] [ 12] [507902267367] +09:04:45 [ 41] [ 8] [0243VTKS] +09:04:45 [ 42] [ 15] [999999 ] +09:04:45 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +09:04:45 [ 49] [ 3] [418] +09:04:45 [ 52] [ 16] [CE02CD2C647B5939] +09:04:45 ============================================================================ +09:04:45 + + +waiting on router queue for slot.... +09:04:45 Sending to : +09:04:45 ============================================================================ +09:04:45 Sending to : +09:04:45 ============================================================================ +09:04:45 ============================================================================ +09:04:45 Slot Id : <234> +09:04:45 Transaction Type : REQUEST +09:04:45 Received From : +09:04:45 ============================================================================ +09:04:45 FNo. Len. Field Value +09:04:45 ============================================================================ +09:04:45 [ 1] [ 4] [0200] +09:04:45 [ 2] [ 16] [6213545000988752] +09:04:45 [ 3] [ 6] [301000] +09:04:45 [ 7] [ 10] [0320020352] +09:04:45 [ 11] [ 6] [267367] +09:04:45 [ 12] [ 6] [090352] +09:04:45 [ 13] [ 4] [0320] +09:04:45 [ 14] [ 4] [4912] +09:04:45 [ 15] [ 4] [0320] +09:04:45 [ 18] [ 4] [6011] +09:04:45 [ 19] [ 3] [418] +09:04:45 [ 22] [ 3] [021] +09:04:45 [ 25] [ 2] [01] +09:04:45 [ 32] [ 6] [180893] +09:04:45 [ 35] [ 32] [6213545000988752=491212018875978] +09:04:45 [ 37] [ 12] [507902267367] +09:04:45 [ 41] [ 8] [0243VTKS] +09:04:45 [ 42] [ 15] [999999 ] +09:04:45 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +09:04:45 [ 49] [ 3] [418] +09:04:45 [ 52] [ 16] [CE02CD2C647B5939] +09:04:45 ============================================================================ +09:04:45 + + +waiting on router queue for slot.... +09:04:45 Sending to : +09:04:45 ============================================================================ +09:04:45 ============================================================================ +09:04:45 Slot Id : <234> +09:04:45 Transaction Type : REQUEST +09:04:45 Received From : +09:04:45 ============================================================================ +09:04:45 FNo. Len. Field Value +09:04:45 ============================================================================ +09:04:45 [ 1] [ 4] [0200] +09:04:45 [ 2] [ 16] [6213545000988752] +09:04:45 [ 3] [ 6] [301000] +09:04:45 [ 7] [ 10] [0320020352] +09:04:45 [ 11] [ 6] [267367] +09:04:45 [ 12] [ 6] [090352] +09:04:45 [ 13] [ 4] [0320] +09:04:45 [ 14] [ 4] [4912] +09:04:45 [ 15] [ 4] [0320] +09:04:45 [ 18] [ 4] [6011] +09:04:45 [ 19] [ 3] [418] +09:04:45 [ 22] [ 3] [021] +09:04:45 [ 25] [ 2] [01] +09:04:45 [ 32] [ 6] [180893] +09:04:45 [ 35] [ 32] [6213545000988752=491212018875978] +09:04:45 [ 37] [ 12] [507902267367] +09:04:45 [ 41] [ 8] [0243VTKS] +09:04:45 [ 42] [ 15] [999999 ] +09:04:45 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +09:04:45 [ 49] [ 3] [418] +09:04:45 [ 52] [ 16] [AC73E8C52951E2ED] +09:04:45 ============================================================================ +09:04:45 + + +waiting on router queue for slot.... +09:04:45 Sending to : <0> +09:04:45 ============================================================================ +09:04:46 ============================================================================ +09:04:46 Slot Id : <234> +09:04:46 Transaction Type : RESPONSE +09:04:46 Received From : +09:04:46 ============================================================================ +09:04:46 FNo. Len. Field Value +09:04:46 ============================================================================ +09:04:46 [ 1] [ 4] [0210] +09:04:46 [ 2] [ 16] [6213545000988752] +09:04:46 [ 3] [ 6] [301000] +09:04:46 [ 4] [ 12] [000000000000] +09:04:46 [ 7] [ 10] [0320020352] +09:04:46 [ 11] [ 6] [267367] +09:04:46 [ 12] [ 6] [090352] +09:04:46 [ 13] [ 4] [0320] +09:04:46 [ 15] [ 4] [0320] +09:04:46 [ 18] [ 4] [6011] +09:04:46 [ 19] [ 3] [418] +09:04:46 [ 32] [ 6] [180893] +09:04:46 [ 35] [ 32] [6213545000988752=491212018875978] +09:04:46 [ 37] [ 12] [507902267367] +09:04:46 [ 38] [ 6] [076193] +09:04:46 [ 39] [ 2] [00] +09:04:46 [ 41] [ 8] [0243VTKS] +09:04:46 [ 49] [ 3] [418] +09:04:46 [ 54] [ 40] [1001418C0001529740771002418C000152974077] +09:04:46 ============================================================================ +09:04:46 Sending to : +09:04:46 ============================================================================ +09:04:46 + + +waiting on router queue for slot.... +09:04:47 ============================================================================ +09:04:47 Slot Id : <234> +09:04:47 Transaction Type : RESPONSE +09:04:47 Received From : +09:04:47 ============================================================================ +09:04:47 FNo. Len. Field Value +09:04:47 ============================================================================ +09:04:47 [ 1] [ 4] [0210] +09:04:47 [ 2] [ 16] [6213545000988752] +09:04:47 [ 3] [ 6] [301000] +09:04:47 [ 4] [ 12] [000000000000] +09:04:47 [ 7] [ 10] [0320020352] +09:04:47 [ 11] [ 6] [267367] +09:04:47 [ 12] [ 6] [090352] +09:04:47 [ 13] [ 4] [0320] +09:04:47 [ 15] [ 4] [0320] +09:04:47 [ 18] [ 4] [6011] +09:04:47 [ 19] [ 3] [418] +09:04:47 [ 32] [ 6] [180893] +09:04:47 [ 35] [ 32] [6213545000988752=491212018875978] +09:04:47 [ 37] [ 12] [507902267367] +09:04:47 [ 38] [ 6] [076193] +09:04:47 [ 39] [ 2] [00] +09:04:47 [ 41] [ 8] [0243VTKS] +09:04:47 [ 49] [ 3] [418] +09:04:47 [ 54] [ 40] [1001418C0001529740771002418C000152974077] +09:04:47 ============================================================================ +09:04:47 Calculate Source COMM Id = 2 +09:04:47 ============================================================================ +09:04:47 + + +waiting on router queue for slot.... +09:04:55 ============================================================================ +09:04:55 Slot Id : <253> +09:04:55 Transaction Type : REQUEST +09:04:55 Received From : +09:04:55 ============================================================================ +09:04:55 FNo. Len. Field Value +09:04:55 ============================================================================ +09:04:55 [ 1] [ 4] [0200] +09:04:55 [ 2] [ 16] [6213544001747028] +09:04:55 [ 3] [ 6] [010000] +09:04:55 [ 4] [ 12] [000100000000] +09:04:55 [ 7] [ 10] [0320090246] +09:04:55 [ 11] [ 6] [934587] +09:04:55 [ 12] [ 6] [090246] +09:04:55 [ 13] [ 4] [0320] +09:04:55 [ 15] [ 4] [0320] +09:04:55 [ 18] [ 4] [6011] +09:04:55 [ 19] [ 3] [418] +09:04:55 [ 22] [ 3] [021] +09:04:55 [ 25] [ 2] [01] +09:04:55 [ 28] [ 9] [D00002000] +09:04:55 [ 32] [ 6] [668899] +09:04:55 [ 35] [ 32] [6213544001747028=491212014702521] +09:04:55 [ 37] [ 12] [507901822366] +09:04:55 [ 41] [ 8] [03407003] +09:04:55 [ 42] [ 15] [APT ] +09:04:55 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:04:55 [ 49] [ 3] [418] +09:04:55 [ 52] [ 16] [29C25DB3802997C4] +09:04:55 ============================================================================ +09:04:55 + + +waiting on router queue for slot.... +09:04:55 Sending to : +09:04:55 ============================================================================ +09:04:55 Sending to : +09:04:55 ============================================================================ +09:04:55 ============================================================================ +09:04:55 Slot Id : <220> +09:04:55 Transaction Type : REQUEST +09:04:55 Received From : +09:04:55 ============================================================================ +09:04:55 FNo. Len. Field Value +09:04:55 ============================================================================ +09:04:55 [ 1] [ 4] [0800] +09:04:55 [ 7] [ 10] [0320021242] +09:04:55 [ 11] [ 6] [064092] +09:04:55 [ 37] [ 12] [57909064092] +09:04:55 [ 70] [ 3] [301] +09:04:55 ============================================================================ +09:04:55 + + +waiting on router queue for slot.... +09:04:55 Sending to : +09:04:55 ============================================================================ +09:04:55 ============================================================================ +09:04:55 Slot Id : <220> +09:04:55 Transaction Type : RESPONSE +09:04:55 Received From : +09:04:55 ============================================================================ +09:04:55 FNo. Len. Field Value +09:04:55 ============================================================================ +09:04:55 [ 1] [ 4] [0810] +09:04:55 [ 7] [ 10] [0320021242] +09:04:55 [ 11] [ 6] [064092] +09:04:55 [ 37] [ 12] [579090640920] +09:04:55 [ 39] [ 2] [00] +09:04:55 [ 70] [ 3] [810] +09:04:55 ============================================================================ +09:04:55 Calculate Source COMM Id = 1 +09:04:55 ============================================================================ +09:04:55 + + +waiting on router queue for slot.... +09:04:55 ============================================================================ +09:04:55 Slot Id : <253> +09:04:55 Transaction Type : REQUEST +09:04:55 Received From : +09:04:55 ============================================================================ +09:04:55 FNo. Len. Field Value +09:04:55 ============================================================================ +09:04:55 [ 1] [ 4] [0200] +09:04:55 [ 2] [ 16] [6213544001747028] +09:04:55 [ 3] [ 6] [010000] +09:04:55 [ 4] [ 12] [000100000000] +09:04:55 [ 7] [ 10] [0320090246] +09:04:55 [ 11] [ 6] [934587] +09:04:55 [ 12] [ 6] [090246] +09:04:55 [ 13] [ 4] [0320] +09:04:55 [ 15] [ 4] [0320] +09:04:55 [ 18] [ 4] [6011] +09:04:55 [ 19] [ 3] [418] +09:04:55 [ 22] [ 3] [021] +09:04:55 [ 25] [ 2] [01] +09:04:55 [ 28] [ 9] [D00002000] +09:04:55 [ 32] [ 6] [668899] +09:04:55 [ 35] [ 32] [6213544001747028=491212014702521] +09:04:55 [ 37] [ 12] [507901822366] +09:04:55 [ 41] [ 8] [03407003] +09:04:55 [ 42] [ 15] [APT ] +09:04:55 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:04:55 [ 49] [ 3] [418] +09:04:55 [ 52] [ 16] [29C25DB3802997C4] +09:04:55 ============================================================================ +09:04:55 + + +waiting on router queue for slot.... +09:04:55 Sending to : +09:04:55 ============================================================================ +09:04:55 ============================================================================ +09:04:55 Slot Id : <253> +09:04:55 Transaction Type : REQUEST +09:04:55 Received From : +09:04:55 ============================================================================ +09:04:55 FNo. Len. Field Value +09:04:55 ============================================================================ +09:04:55 [ 1] [ 4] [0200] +09:04:55 [ 2] [ 16] [6213544001747028] +09:04:55 [ 3] [ 6] [010000] +09:04:55 [ 4] [ 12] [000100000000] +09:04:55 [ 7] [ 10] [0320090246] +09:04:55 [ 11] [ 6] [934587] +09:04:55 [ 12] [ 6] [090246] +09:04:55 [ 13] [ 4] [0320] +09:04:55 [ 15] [ 4] [0320] +09:04:55 [ 18] [ 4] [6011] +09:04:55 [ 19] [ 3] [418] +09:04:55 [ 22] [ 3] [021] +09:04:55 [ 25] [ 2] [01] +09:04:55 [ 28] [ 9] [D00002000] +09:04:55 [ 32] [ 6] [668899] +09:04:55 [ 35] [ 32] [6213544001747028=491212014702521] +09:04:55 [ 37] [ 12] [507901822366] +09:04:55 [ 41] [ 8] [03407003] +09:04:55 [ 42] [ 15] [APT ] +09:04:55 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:04:55 [ 49] [ 3] [418] +09:04:55 [ 52] [ 16] [A3890190DB3A5FD3] +09:04:55 ============================================================================ +09:04:55 + + +waiting on router queue for slot.... +09:04:55 Sending to : <0> +09:04:55 ============================================================================ +09:04:55 ============================================================================ +09:04:55 Slot Id : <253> +09:04:55 Transaction Type : RESPONSE +09:04:55 Received From : +09:04:55 ============================================================================ +09:04:55 FNo. Len. Field Value +09:04:55 ============================================================================ +09:04:55 [ 1] [ 4] [0210] +09:04:55 [ 2] [ 16] [6213544001747028] +09:04:55 [ 3] [ 6] [010000] +09:04:55 [ 4] [ 12] [000100000000] +09:04:55 [ 7] [ 10] [0320090246] +09:04:55 [ 11] [ 6] [934587] +09:04:55 [ 12] [ 6] [090246] +09:04:55 [ 13] [ 4] [0320] +09:04:55 [ 15] [ 4] [0320] +09:04:55 [ 18] [ 4] [6011] +09:04:55 [ 19] [ 3] [418] +09:04:55 [ 32] [ 6] [668899] +09:04:55 [ 35] [ 32] [6213544001747028=491212014702521] +09:04:55 [ 37] [ 12] [507901822366] +09:04:55 [ 38] [ 6] [934587] +09:04:55 [ 39] [ 2] [51] +09:04:55 [ 41] [ 8] [03407003] +09:04:55 [ 49] [ 3] [418] +09:04:55 [ 54] [ 40] [0001418C0000438552540002418C000043855254] +09:04:55 ============================================================================ +09:04:55 Sending to : +09:04:55 ============================================================================ +09:04:55 + + +waiting on router queue for slot.... +09:04:56 ============================================================================ +09:04:56 Slot Id : <210> +09:04:56 Transaction Type : REQUEST +09:04:56 Received From : +09:04:56 ============================================================================ +09:04:56 FNo. Len. Field Value +09:04:56 ============================================================================ +09:04:56 [ 1] [ 4] [0200] +09:04:56 [ 2] [ 16] [1808930800002636] +09:04:56 [ 3] [ 6] [011000] +09:04:56 [ 4] [ 12] [000100000000] +09:04:56 [ 7] [ 10] [0320091243] +09:04:56 [ 11] [ 6] [001971] +09:04:56 [ 12] [ 6] [091243] +09:04:56 [ 13] [ 4] [0320] +09:04:56 [ 14] [ 4] [1803] +09:04:56 [ 15] [ 4] [0320] +09:04:56 [ 18] [ 4] [6011] +09:04:56 [ 22] [ 3] [900] +09:04:56 [ 25] [ 2] [02] +09:04:56 [ 28] [ 9] [D00002000] +09:04:56 [ 32] [ 6] [220699] +09:04:56 [ 35] [ 27] [1808930800002636=1803500438] +09:04:56 [ 37] [ 12] [507900296954] +09:04:56 [ 41] [ 8] [01001600] +09:04:56 [ 42] [ 15] [APTRA ] +09:04:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:04:56 [ 49] [ 3] [418] +09:04:56 [ 52] [ 16] [278C6EBAB5FA4D3D] +09:04:56 ============================================================================ +09:04:56 + + +waiting on router queue for slot.... +09:04:56 Sending to : +09:04:56 ============================================================================ +09:04:56 Sending to : +09:04:56 ============================================================================ +09:04:56 ============================================================================ +09:04:56 Slot Id : <210> +09:04:56 Transaction Type : REQUEST +09:04:56 Received From : +09:04:56 ============================================================================ +09:04:56 FNo. Len. Field Value +09:04:56 ============================================================================ +09:04:56 [ 1] [ 4] [0200] +09:04:56 [ 2] [ 16] [1808930800002636] +09:04:56 [ 3] [ 6] [011000] +09:04:56 [ 4] [ 12] [000100000000] +09:04:56 [ 7] [ 10] [0320091243] +09:04:56 [ 11] [ 6] [001971] +09:04:56 [ 12] [ 6] [091243] +09:04:56 [ 13] [ 4] [0320] +09:04:56 [ 14] [ 4] [1803] +09:04:56 [ 15] [ 4] [0320] +09:04:56 [ 18] [ 4] [6011] +09:04:56 [ 22] [ 3] [900] +09:04:56 [ 25] [ 2] [02] +09:04:56 [ 28] [ 9] [D00002000] +09:04:56 [ 32] [ 6] [220699] +09:04:56 [ 35] [ 27] [1808930800002636=1803500438] +09:04:56 [ 37] [ 12] [507900296954] +09:04:56 [ 41] [ 8] [01001600] +09:04:56 [ 42] [ 15] [APTRA ] +09:04:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:04:56 [ 49] [ 3] [418] +09:04:56 [ 52] [ 16] [278C6EBAB5FA4D3D] +09:04:56 ============================================================================ +09:04:56 + + +waiting on router queue for slot.... +09:04:56 Sending to : +09:04:56 ============================================================================ +09:04:56 ============================================================================ +09:04:56 Slot Id : <210> +09:04:56 Transaction Type : REQUEST +09:04:56 Received From : +09:04:56 ============================================================================ +09:04:56 FNo. Len. Field Value +09:04:56 ============================================================================ +09:04:56 [ 1] [ 4] [0200] +09:04:56 [ 2] [ 16] [1808930800002636] +09:04:56 [ 3] [ 6] [011000] +09:04:56 [ 4] [ 12] [000100000000] +09:04:56 [ 7] [ 10] [0320091243] +09:04:56 [ 11] [ 6] [001971] +09:04:56 [ 12] [ 6] [091243] +09:04:56 [ 13] [ 4] [0320] +09:04:56 [ 14] [ 4] [1803] +09:04:56 [ 15] [ 4] [0320] +09:04:56 [ 18] [ 4] [6011] +09:04:56 [ 22] [ 3] [900] +09:04:56 [ 25] [ 2] [02] +09:04:56 [ 28] [ 9] [D00002000] +09:04:56 [ 32] [ 6] [220699] +09:04:56 [ 35] [ 27] [1808930800002636=1803500438] +09:04:56 [ 37] [ 12] [507900296954] +09:04:56 [ 41] [ 8] [01001600] +09:04:56 [ 42] [ 15] [APTRA ] +09:04:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:04:56 [ 49] [ 3] [418] +09:04:56 [ 52] [ 16] [D3A971460B258AA6] +09:04:56 ============================================================================ +09:04:56 + + +waiting on router queue for slot.... +09:04:56 Sending to : <2> +09:04:56 ============================================================================ +09:04:57 ============================================================================ +09:04:57 Slot Id : <253> +09:04:57 Transaction Type : RESPONSE +09:04:57 Received From : +09:04:57 ============================================================================ +09:04:57 FNo. Len. Field Value +09:04:57 ============================================================================ +09:04:57 [ 1] [ 4] [0210] +09:04:57 [ 2] [ 16] [6213544001747028] +09:04:57 [ 3] [ 6] [010000] +09:04:57 [ 4] [ 12] [000100000000] +09:04:57 [ 7] [ 10] [0320090246] +09:04:57 [ 11] [ 6] [934587] +09:04:57 [ 12] [ 6] [090246] +09:04:57 [ 13] [ 4] [0320] +09:04:57 [ 15] [ 4] [0320] +09:04:57 [ 18] [ 4] [6011] +09:04:57 [ 19] [ 3] [418] +09:04:57 [ 32] [ 6] [668899] +09:04:57 [ 35] [ 32] [6213544001747028=491212014702521] +09:04:57 [ 37] [ 12] [507901822366] +09:04:57 [ 38] [ 6] [934587] +09:04:57 [ 39] [ 2] [51] +09:04:57 [ 41] [ 8] [03407003] +09:04:57 [ 49] [ 3] [418] +09:04:57 [ 54] [ 40] [0001418C0000438552540002418C000043855254] +09:04:57 ============================================================================ +09:04:57 Calculate Source COMM Id = 4 +09:04:57 ============================================================================ +09:04:57 + + +waiting on router queue for slot.... +09:04:57 ============================================================================ +09:04:57 Slot Id : <260> +09:04:57 Transaction Type : REQUEST +09:04:57 Received From : +09:04:57 ============================================================================ +09:04:57 FNo. Len. Field Value +09:04:57 ============================================================================ +09:04:57 [ 0] [ 4] [0420] +09:04:57 [ 1] [ 4] [0420] +09:04:57 [ 2] [ 16] [1808930400010799] +09:04:57 [ 3] [ 6] [011000] +09:04:57 [ 4] [ 12] [000100000000] +09:04:57 [ 6] [ 12] [000100000000] +09:04:57 [ 7] [ 10] [0320090239] +09:04:57 [ 11] [ 6] [692699] +09:04:57 [ 12] [ 6] [090239] +09:04:57 [ 13] [ 4] [0320] +09:04:57 [ 15] [ 4] [0320] +09:04:57 [ 18] [ 4] [6011] +09:04:57 [ 22] [ 3] [900] +09:04:57 [ 25] [ 2] [02] +09:04:57 [ 28] [ 9] [D00002000] +09:04:57 [ 32] [ 6] [621354] +09:04:57 [ 35] [ 27] [1808930400010799=1803500167] +09:04:57 [ 37] [ 12] [507904965464] +09:04:57 [ 39] [ 2] [00] +09:04:57 [ 41] [ 8] [15001100] +09:04:57 [ 42] [ 15] [NATIVE ] +09:04:57 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:04:57 [ 49] [ 3] [418] +09:04:57 [ 52] [ 16] [EBAB7E1A255E21EF] +09:04:57 ============================================================================ +09:04:57 + + +waiting on router queue for slot.... +09:05:01 ============================================================================ +09:05:01 Slot Id : <260> +09:05:01 Transaction Type : RESPONSE +09:05:01 Received From : +09:05:01 ============================================================================ +09:05:01 FNo. Len. Field Value +09:05:01 ============================================================================ +09:05:01 [ 1] [ 4] [0430] +09:05:01 [ 2] [ 16] [1808930400010799] +09:05:01 [ 3] [ 6] [011000] +09:05:01 [ 4] [ 12] [000100000000] +09:05:01 [ 6] [ 12] [000100000000] +09:05:01 [ 7] [ 10] [0320090239] +09:05:01 [ 11] [ 6] [692699] +09:05:01 [ 12] [ 6] [090239] +09:05:01 [ 13] [ 4] [0320] +09:05:01 [ 19] [ 3] [418] +09:05:01 [ 32] [ 6] [621354] +09:05:01 [ 35] [ 27] [1808930400010799=1803500167] +09:05:01 [ 37] [ 12] [507904965464] +09:05:01 [ 38] [ 6] [692699] +09:05:01 [ 39] [ 2] [00] +09:05:01 [ 41] [ 8] [15001100] +09:05:01 [ 49] [ 3] [418] +09:05:01 ============================================================================ +09:05:01 Successfully send the slot [260] To REVERSAL Process +09:05:01 + + +waiting on router queue for slot.... +09:05:01 ============================================================================ +09:05:01 Slot Id : <249> +09:05:01 Transaction Type : REQUEST +09:05:01 Received From : +09:05:01 ============================================================================ +09:05:01 FNo. Len. Field Value +09:05:01 ============================================================================ +09:05:01 [ 1] [ 4] [0800] +09:05:01 [ 7] [ 10] [0320161651] +09:05:01 [ 11] [ 6] [091651] +09:05:01 [ 37] [ 12] [57909091651] +09:05:01 [ 70] [ 3] [301] +09:05:01 ============================================================================ +09:05:01 + + +waiting on router queue for slot.... +09:05:01 Sending to : +09:05:01 ============================================================================ +09:05:01 ============================================================================ +09:05:01 Slot Id : <249> +09:05:01 Transaction Type : RESPONSE +09:05:01 Received From : +09:05:01 ============================================================================ +09:05:01 FNo. Len. Field Value +09:05:01 ============================================================================ +09:05:01 [ 1] [ 4] [0810] +09:05:01 [ 7] [ 10] [0320161651] +09:05:01 [ 11] [ 6] [091651] +09:05:01 [ 37] [ 12] [579090916510] +09:05:01 [ 39] [ 2] [00] +09:05:01 [ 70] [ 3] [810] +09:05:01 ============================================================================ +09:05:01 Calculate Source COMM Id = 6 +09:05:01 ============================================================================ +09:05:01 + + +waiting on router queue for slot.... +09:05:05 ============================================================================ +09:05:05 Slot Id : <210> +09:05:05 Transaction Type : RESPONSE +09:05:05 Received From : +09:05:05 ============================================================================ +09:05:05 FNo. Len. Field Value +09:05:05 ============================================================================ +09:05:05 [ 1] [ 4] [0210] +09:05:05 [ 2] [ 16] [1808930800002636] +09:05:05 [ 3] [ 6] [011000] +09:05:05 [ 4] [ 12] [000100000000] +09:05:05 [ 6] [ 12] [000100000000] +09:05:05 [ 7] [ 10] [0320091243] +09:05:05 [ 11] [ 6] [001971] +09:05:05 [ 12] [ 6] [091243] +09:05:05 [ 13] [ 4] [0320] +09:05:05 [ 14] [ 4] [1803] +09:05:05 [ 18] [ 4] [6011] +09:05:05 [ 19] [ 3] [418] +09:05:05 [ 22] [ 3] [021] +09:05:05 [ 32] [ 6] [220699] +09:05:05 [ 35] [ 27] [1808930800002636=1803500438] +09:05:05 [ 37] [ 12] [507900296954] +09:05:05 [ 38] [ 6] [001971] +09:05:05 [ 39] [ 2] [00] +09:05:05 [ 41] [ 8] [01001600] +09:05:05 [ 49] [ 3] [418] +09:05:05 [ 52] [ 16] [D3A971460B258AA6] +09:05:05 [ 54] [ 20] [1001418C000035744300] +09:05:05 ============================================================================ +09:05:05 Sending to : +09:05:05 ============================================================================ +09:05:05 + + +waiting on router queue for slot.... +09:05:05 ============================================================================ +09:05:05 Slot Id : <259> +09:05:05 Transaction Type : REQUEST +09:05:05 Received From : +09:05:05 ============================================================================ +09:05:05 FNo. Len. Field Value +09:05:05 ============================================================================ +09:05:05 [ 1] [ 4] [0200] +09:05:05 [ 2] [ 16] [6213545000469894] +09:05:05 [ 3] [ 6] [310000] +09:05:05 [ 4] [ 12] [000000000000] +09:05:05 [ 7] [ 10] [0320091253] +09:05:05 [ 11] [ 6] [009265] +09:05:05 [ 12] [ 6] [091253] +09:05:05 [ 13] [ 4] [0320] +09:05:05 [ 14] [ 4] [4912] +09:05:05 [ 15] [ 4] [0320] +09:05:05 [ 18] [ 4] [6011] +09:05:05 [ 22] [ 3] [900] +09:05:05 [ 25] [ 2] [02] +09:05:05 [ 28] [ 9] [000000000] +09:05:05 [ 32] [ 6] [220699] +09:05:05 [ 35] [ 32] [6213545000469894=491212016989844] +09:05:05 [ 37] [ 12] [507900213236] +09:05:05 [ 41] [ 8] [05000100] +09:05:05 [ 42] [ 15] [APTRA ] +09:05:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:05:05 [ 49] [ 3] [418] +09:05:05 [ 52] [ 16] [CE36B84DB35EC366] +09:05:05 ============================================================================ +09:05:05 + + +waiting on router queue for slot.... +09:05:05 Sending to : +09:05:05 ============================================================================ +09:05:05 Sending to : +09:05:05 ============================================================================ +09:05:06 ============================================================================ +09:05:06 Slot Id : <259> +09:05:06 Transaction Type : REQUEST +09:05:06 Received From : +09:05:06 ============================================================================ +09:05:06 FNo. Len. Field Value +09:05:06 ============================================================================ +09:05:06 [ 1] [ 4] [0200] +09:05:06 [ 2] [ 16] [6213545000469894] +09:05:06 [ 3] [ 6] [310000] +09:05:06 [ 4] [ 12] [000000000000] +09:05:06 [ 7] [ 10] [0320091253] +09:05:06 [ 11] [ 6] [009265] +09:05:06 [ 12] [ 6] [091253] +09:05:06 [ 13] [ 4] [0320] +09:05:06 [ 14] [ 4] [4912] +09:05:06 [ 15] [ 4] [0320] +09:05:06 [ 18] [ 4] [6011] +09:05:06 [ 22] [ 3] [900] +09:05:06 [ 25] [ 2] [02] +09:05:06 [ 28] [ 9] [000000000] +09:05:06 [ 32] [ 6] [220699] +09:05:06 [ 35] [ 32] [6213545000469894=491212016989844] +09:05:06 [ 37] [ 12] [507900213236] +09:05:06 [ 41] [ 8] [05000100] +09:05:06 [ 42] [ 15] [APTRA ] +09:05:06 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:05:06 [ 49] [ 3] [418] +09:05:06 [ 52] [ 16] [CE36B84DB35EC366] +09:05:06 ============================================================================ +09:05:06 + + +waiting on router queue for slot.... +09:05:06 Sending to : +09:05:06 ============================================================================ +09:05:06 ============================================================================ +09:05:06 Slot Id : <259> +09:05:06 Transaction Type : REQUEST +09:05:06 Received From : +09:05:06 ============================================================================ +09:05:06 FNo. Len. Field Value +09:05:06 ============================================================================ +09:05:06 [ 1] [ 4] [0200] +09:05:06 [ 2] [ 16] [6213545000469894] +09:05:06 [ 3] [ 6] [310000] +09:05:06 [ 4] [ 12] [000000000000] +09:05:06 [ 7] [ 10] [0320091253] +09:05:06 [ 11] [ 6] [009265] +09:05:06 [ 12] [ 6] [091253] +09:05:06 [ 13] [ 4] [0320] +09:05:06 [ 14] [ 4] [4912] +09:05:06 [ 15] [ 4] [0320] +09:05:06 [ 18] [ 4] [6011] +09:05:06 [ 22] [ 3] [900] +09:05:06 [ 25] [ 2] [02] +09:05:06 [ 28] [ 9] [000000000] +09:05:06 [ 32] [ 6] [220699] +09:05:06 [ 35] [ 32] [6213545000469894=491212016989844] +09:05:06 [ 37] [ 12] [507900213236] +09:05:06 [ 41] [ 8] [05000100] +09:05:06 [ 42] [ 15] [APTRA ] +09:05:06 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:05:06 [ 49] [ 3] [418] +09:05:06 [ 52] [ 16] [6964D77088252EB6] +09:05:06 ============================================================================ +09:05:06 + + +waiting on router queue for slot.... +09:05:06 Sending to : <0> +09:05:06 ============================================================================ +09:05:06 ============================================================================ +09:05:06 Slot Id : <259> +09:05:06 Transaction Type : RESPONSE +09:05:06 Received From : +09:05:06 ============================================================================ +09:05:06 FNo. Len. Field Value +09:05:06 ============================================================================ +09:05:06 [ 1] [ 4] [0210] +09:05:06 [ 2] [ 16] [6213545000469894] +09:05:06 [ 3] [ 6] [310000] +09:05:06 [ 4] [ 12] [000000000000] +09:05:06 [ 7] [ 10] [0320091253] +09:05:06 [ 11] [ 6] [009265] +09:05:06 [ 12] [ 6] [091253] +09:05:06 [ 13] [ 4] [0320] +09:05:06 [ 15] [ 4] [0320] +09:05:06 [ 18] [ 4] [6011] +09:05:06 [ 22] [ 3] [900] +09:05:06 [ 32] [ 6] [220699] +09:05:06 [ 35] [ 32] [6213545000469894=491212016989844] +09:05:06 [ 37] [ 12] [507900213236] +09:05:06 [ 38] [ 6] [090502] +09:05:06 [ 39] [ 2] [55] +09:05:06 [ 41] [ 8] [05000100] +09:05:06 [ 49] [ 3] [418] +09:05:06 ============================================================================ +09:05:06 Sending to : +09:05:06 ============================================================================ +09:05:06 + + +waiting on router queue for slot.... +09:05:07 ============================================================================ +09:05:07 Slot Id : <210> +09:05:07 Transaction Type : RESPONSE +09:05:07 Received From : +09:05:07 ============================================================================ +09:05:07 FNo. Len. Field Value +09:05:07 ============================================================================ +09:05:07 [ 1] [ 4] [0210] +09:05:07 [ 2] [ 16] [1808930800002636] +09:05:07 [ 3] [ 6] [011000] +09:05:07 [ 4] [ 12] [000100000000] +09:05:07 [ 6] [ 12] [000100000000] +09:05:07 [ 7] [ 10] [0320091243] +09:05:07 [ 11] [ 6] [001971] +09:05:07 [ 12] [ 6] [091243] +09:05:07 [ 13] [ 4] [0320] +09:05:07 [ 14] [ 4] [1803] +09:05:07 [ 18] [ 4] [6011] +09:05:07 [ 19] [ 3] [418] +09:05:07 [ 22] [ 3] [021] +09:05:07 [ 32] [ 6] [220699] +09:05:07 [ 35] [ 27] [1808930800002636=1803500438] +09:05:07 [ 37] [ 12] [507900296954] +09:05:07 [ 38] [ 6] [001971] +09:05:07 [ 39] [ 2] [00] +09:05:07 [ 41] [ 8] [01001600] +09:05:07 [ 49] [ 3] [418] +09:05:07 [ 52] [ 16] [D3A971460B258AA6] +09:05:07 [ 54] [ 20] [1001418C000035744300] +09:05:07 ============================================================================ +09:05:07 Calculate Source COMM Id = 1 +09:05:07 ============================================================================ +09:05:07 + + +waiting on router queue for slot.... +09:05:07 ============================================================================ +09:05:07 Slot Id : <199> +09:05:07 Transaction Type : REQUEST +09:05:07 Received From : +09:05:07 ============================================================================ +09:05:07 FNo. Len. Field Value +09:05:07 ============================================================================ +09:05:07 [ 1] [ 4] [0200] +09:05:07 [ 2] [ 16] [6213548000357390] +09:05:07 [ 3] [ 6] [011000] +09:05:07 [ 4] [ 12] [000009000000] +09:05:07 [ 7] [ 10] [0320090529] +09:05:07 [ 11] [ 6] [202606] +09:05:07 [ 12] [ 6] [084544] +09:05:07 [ 13] [ 4] [0320] +09:05:07 [ 14] [ 4] [1804] +09:05:07 [ 15] [ 4] [0320] +09:05:07 [ 18] [ 4] [6011] +09:05:07 [ 19] [ 3] [418] +09:05:07 [ 22] [ 3] [021] +09:05:07 [ 25] [ 2] [01] +09:05:07 [ 28] [ 9] [D00002000] +09:05:07 [ 32] [ 6] [198901] +09:05:07 [ 35] [ 32] [6213548000357390=180412015739453] +09:05:07 [ 37] [ 12] [507909202606] +09:05:07 [ 41] [ 8] [01529016] +09:05:07 [ 42] [ 15] [000000041529016] +09:05:07 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +09:05:07 [ 49] [ 3] [418] +09:05:07 [ 52] [ 16] [6B60C8A3CB9AF228] +09:05:07 ============================================================================ +09:05:07 + + +waiting on router queue for slot.... +09:05:07 Sending to : +09:05:07 ============================================================================ +09:05:07 Sending to : +09:05:07 ============================================================================ +09:05:08 ============================================================================ +09:05:08 Slot Id : <199> +09:05:08 Transaction Type : REQUEST +09:05:08 Received From : +09:05:08 ============================================================================ +09:05:08 FNo. Len. Field Value +09:05:08 ============================================================================ +09:05:08 [ 1] [ 4] [0200] +09:05:08 [ 2] [ 16] [6213548000357390] +09:05:08 [ 3] [ 6] [011000] +09:05:08 [ 4] [ 12] [000009000000] +09:05:08 [ 7] [ 10] [0320090529] +09:05:08 [ 11] [ 6] [202606] +09:05:08 [ 12] [ 6] [084544] +09:05:08 [ 13] [ 4] [0320] +09:05:08 [ 14] [ 4] [1804] +09:05:08 [ 15] [ 4] [0320] +09:05:08 [ 18] [ 4] [6011] +09:05:08 [ 19] [ 3] [418] +09:05:08 [ 22] [ 3] [021] +09:05:08 [ 25] [ 2] [01] +09:05:08 [ 28] [ 9] [D00002000] +09:05:08 [ 32] [ 6] [198901] +09:05:08 [ 35] [ 32] [6213548000357390=180412015739453] +09:05:08 [ 37] [ 12] [507909202606] +09:05:08 [ 41] [ 8] [01529016] +09:05:08 [ 42] [ 15] [000000041529016] +09:05:08 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +09:05:08 [ 49] [ 3] [418] +09:05:08 [ 52] [ 16] [6B60C8A3CB9AF228] +09:05:08 ============================================================================ +09:05:08 + + +waiting on router queue for slot.... +09:05:08 Sending to : +09:05:08 ============================================================================ +09:05:08 ============================================================================ +09:05:08 Slot Id : <199> +09:05:08 Transaction Type : REQUEST +09:05:08 Received From : +09:05:08 ============================================================================ +09:05:08 FNo. Len. Field Value +09:05:08 ============================================================================ +09:05:08 [ 1] [ 4] [0200] +09:05:08 [ 2] [ 16] [6213548000357390] +09:05:08 [ 3] [ 6] [011000] +09:05:08 [ 4] [ 12] [000009000000] +09:05:08 [ 7] [ 10] [0320090529] +09:05:08 [ 11] [ 6] [202606] +09:05:08 [ 12] [ 6] [084544] +09:05:08 [ 13] [ 4] [0320] +09:05:08 [ 14] [ 4] [1804] +09:05:08 [ 15] [ 4] [0320] +09:05:08 [ 18] [ 4] [6011] +09:05:08 [ 19] [ 3] [418] +09:05:08 [ 22] [ 3] [021] +09:05:08 [ 25] [ 2] [01] +09:05:08 [ 28] [ 9] [D00002000] +09:05:08 [ 32] [ 6] [198901] +09:05:08 [ 35] [ 32] [6213548000357390=180412015739453] +09:05:08 [ 37] [ 12] [507909202606] +09:05:08 [ 41] [ 8] [01529016] +09:05:08 [ 42] [ 15] [000000041529016] +09:05:08 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +09:05:08 [ 49] [ 3] [418] +09:05:08 [ 52] [ 16] [F924480070803A77] +09:05:08 ============================================================================ +09:05:08 + + +waiting on router queue for slot.... +09:05:08 Sending to : <0> +09:05:08 ============================================================================ +09:05:08 ============================================================================ +09:05:08 Slot Id : <259> +09:05:08 Transaction Type : RESPONSE +09:05:08 Received From : +09:05:08 ============================================================================ +09:05:08 FNo. Len. Field Value +09:05:08 ============================================================================ +09:05:08 [ 1] [ 4] [0210] +09:05:08 [ 2] [ 16] [6213545000469894] +09:05:08 [ 3] [ 6] [310000] +09:05:08 [ 4] [ 12] [000000000000] +09:05:08 [ 7] [ 10] [0320091253] +09:05:08 [ 11] [ 6] [009265] +09:05:08 [ 12] [ 6] [091253] +09:05:08 [ 13] [ 4] [0320] +09:05:08 [ 15] [ 4] [0320] +09:05:08 [ 18] [ 4] [6011] +09:05:08 [ 22] [ 3] [900] +09:05:08 [ 32] [ 6] [220699] +09:05:08 [ 35] [ 32] [6213545000469894=491212016989844] +09:05:08 [ 37] [ 12] [507900213236] +09:05:08 [ 38] [ 6] [090502] +09:05:08 [ 39] [ 2] [55] +09:05:08 [ 41] [ 8] [05000100] +09:05:08 [ 49] [ 3] [418] +09:05:08 ============================================================================ +09:05:08 Calculate Source COMM Id = 1 +09:05:08 ============================================================================ +09:05:08 + + +waiting on router queue for slot.... +09:05:08 ============================================================================ +09:05:08 Slot Id : <199> +09:05:08 Transaction Type : RESPONSE +09:05:08 Received From : +09:05:08 ============================================================================ +09:05:08 FNo. Len. Field Value +09:05:08 ============================================================================ +09:05:08 [ 1] [ 4] [0210] +09:05:08 [ 2] [ 16] [6213548000357390] +09:05:08 [ 3] [ 6] [011000] +09:05:08 [ 4] [ 12] [000009000000] +09:05:08 [ 7] [ 10] [0320090529] +09:05:08 [ 11] [ 6] [202606] +09:05:08 [ 12] [ 6] [084544] +09:05:08 [ 13] [ 4] [0320] +09:05:08 [ 15] [ 4] [0320] +09:05:08 [ 18] [ 4] [6011] +09:05:08 [ 19] [ 3] [418] +09:05:08 [ 32] [ 6] [198901] +09:05:08 [ 35] [ 32] [6213548000357390=180412015739453] +09:05:08 [ 37] [ 12] [507909202606] +09:05:08 [ 38] [ 6] [202606] +09:05:08 [ 39] [ 2] [51] +09:05:08 [ 41] [ 8] [01529016] +09:05:08 [ 49] [ 3] [418] +09:05:08 [ 54] [ 40] [1001418C0000138816321002418C000013881632] +09:05:08 ============================================================================ +09:05:08 Sending to : +09:05:08 ============================================================================ +09:05:08 + + +waiting on router queue for slot.... +09:05:09 ============================================================================ +09:05:09 Slot Id : <199> +09:05:09 Transaction Type : RESPONSE +09:05:09 Received From : +09:05:09 ============================================================================ +09:05:09 FNo. Len. Field Value +09:05:09 ============================================================================ +09:05:09 [ 1] [ 4] [0210] +09:05:09 [ 2] [ 16] [6213548000357390] +09:05:09 [ 3] [ 6] [011000] +09:05:09 [ 4] [ 12] [000009000000] +09:05:09 [ 7] [ 10] [0320090529] +09:05:09 [ 11] [ 6] [202606] +09:05:09 [ 12] [ 6] [084544] +09:05:09 [ 13] [ 4] [0320] +09:05:09 [ 15] [ 4] [0320] +09:05:09 [ 18] [ 4] [6011] +09:05:09 [ 19] [ 3] [418] +09:05:09 [ 32] [ 6] [198901] +09:05:09 [ 35] [ 32] [6213548000357390=180412015739453] +09:05:09 [ 37] [ 12] [507909202606] +09:05:09 [ 38] [ 6] [202606] +09:05:09 [ 39] [ 2] [51] +09:05:09 [ 41] [ 8] [01529016] +09:05:09 [ 49] [ 3] [418] +09:05:09 [ 54] [ 40] [1001418C0000138816321002418C000013881632] +09:05:09 ============================================================================ +09:05:09 Calculate Source COMM Id = 5 +09:05:09 ============================================================================ +09:05:09 + + +waiting on router queue for slot.... +09:05:10 ============================================================================ +09:05:10 Slot Id : <261> +09:05:10 Transaction Type : REQUEST +09:05:10 Received From : +09:05:10 ============================================================================ +09:05:10 FNo. Len. Field Value +09:05:10 ============================================================================ +09:05:10 [ 1] [ 4] [0800] +09:05:10 [ 7] [ 10] [0320020418] +09:05:10 [ 11] [ 6] [155545] +09:05:10 [ 70] [ 3] [301] +09:05:10 ============================================================================ +09:05:10 + + +waiting on router queue for slot.... +09:05:10 Sending to : +09:05:10 ============================================================================ +09:05:10 ============================================================================ +09:05:10 Slot Id : <261> +09:05:10 Transaction Type : RESPONSE +09:05:10 Received From : +09:05:10 ============================================================================ +09:05:10 FNo. Len. Field Value +09:05:10 ============================================================================ +09:05:10 [ 1] [ 4] [0810] +09:05:10 [ 7] [ 10] [0320020418] +09:05:10 [ 11] [ 6] [155545] +09:05:10 [ 39] [ 2] [00] +09:05:10 [ 70] [ 3] [301] +09:05:10 ============================================================================ +09:05:10 Calculate Source COMM Id = 2 +09:05:10 ============================================================================ +09:05:10 + + +waiting on router queue for slot.... +09:05:10 ============================================================================ +09:05:10 Slot Id : <263> +09:05:10 Transaction Type : REQUEST +09:05:10 Received From : +09:05:10 ============================================================================ +09:05:10 FNo. Len. Field Value +09:05:10 ============================================================================ +09:05:10 [ 1] [ 4] [0800] +09:05:10 [ 2] [ 5] [02531] +09:05:10 [ 3] [ 6] [579098] +09:05:10 [ 7] [ 10] [0320020510] +09:05:10 [ 11] [ 6] [806939] +09:05:10 [ 15] [ 10] [0320020510] +09:05:10 [ 37] [ 11] [57909806939] +09:05:10 [ 70] [ 3] [001] +09:05:10 ============================================================================ +09:05:10 + + +waiting on router queue for slot.... +09:05:10 ============================================================================ +09:05:10 Slot Id : <263> +09:05:10 Transaction Type : RESPONSE +09:05:10 Received From : +09:05:10 ============================================================================ +09:05:10 FNo. Len. Field Value +09:05:10 ============================================================================ +09:05:10 [ 1] [ 4] [0810] +09:05:10 [ 7] [ 10] [0320020510] +09:05:10 [ 11] [ 6] [806939] +09:05:10 [ 15] [ 4] [0320] +09:05:10 [ 37] [ 12] [57909806939] +09:05:10 [ 39] [ 2] [00] +09:05:10 [ 70] [ 3] [001] +09:05:10 ============================================================================ +09:05:10 Sending to : +09:05:10 ============================================================================ +09:05:10 + + +waiting on router queue for slot.... +09:05:11 ============================================================================ +09:05:11 Slot Id : <270> +09:05:11 Transaction Type : REQUEST +09:05:11 Received From : +09:05:11 ============================================================================ +09:05:11 FNo. Len. Field Value +09:05:11 ============================================================================ +09:05:11 [ 1] [ 4] [0200] +09:05:11 [ 2] [ 16] [6213545000739817] +09:05:11 [ 3] [ 6] [010000] +09:05:11 [ 4] [ 12] [000050000000] +09:05:11 [ 7] [ 10] [0320020419] +09:05:11 [ 11] [ 6] [267371] +09:05:11 [ 12] [ 6] [090419] +09:05:11 [ 13] [ 4] [0320] +09:05:11 [ 14] [ 4] [4912] +09:05:11 [ 15] [ 4] [0320] +09:05:11 [ 18] [ 4] [6011] +09:05:11 [ 19] [ 3] [418] +09:05:11 [ 22] [ 3] [021] +09:05:11 [ 25] [ 2] [01] +09:05:11 [ 28] [ 9] [D00002000] +09:05:11 [ 32] [ 6] [180893] +09:05:11 [ 35] [ 32] [6213545000739817=491212013981759] +09:05:11 [ 37] [ 12] [507902267371] +09:05:11 [ 41] [ 8] [0243VTKS] +09:05:11 [ 42] [ 15] [999999 ] +09:05:11 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +09:05:11 [ 49] [ 3] [418] +09:05:11 [ 52] [ 16] [C1FF8C99FF94AE10] +09:05:11 ============================================================================ +09:05:11 + + +waiting on router queue for slot.... +09:05:11 Sending to : +09:05:11 ============================================================================ +09:05:11 Sending to : +09:05:11 ============================================================================ +09:05:11 ============================================================================ +09:05:11 Slot Id : <270> +09:05:11 Transaction Type : REQUEST +09:05:11 Received From : +09:05:11 ============================================================================ +09:05:11 FNo. Len. Field Value +09:05:11 ============================================================================ +09:05:11 [ 1] [ 4] [0200] +09:05:11 [ 2] [ 16] [6213545000739817] +09:05:11 [ 3] [ 6] [010000] +09:05:11 [ 4] [ 12] [000050000000] +09:05:11 [ 7] [ 10] [0320020419] +09:05:11 [ 11] [ 6] [267371] +09:05:11 [ 12] [ 6] [090419] +09:05:11 [ 13] [ 4] [0320] +09:05:11 [ 14] [ 4] [4912] +09:05:11 [ 15] [ 4] [0320] +09:05:11 [ 18] [ 4] [6011] +09:05:11 [ 19] [ 3] [418] +09:05:11 [ 22] [ 3] [021] +09:05:11 [ 25] [ 2] [01] +09:05:11 [ 28] [ 9] [D00002000] +09:05:11 [ 32] [ 6] [180893] +09:05:11 [ 35] [ 32] [6213545000739817=491212013981759] +09:05:11 [ 37] [ 12] [507902267371] +09:05:11 [ 41] [ 8] [0243VTKS] +09:05:11 [ 42] [ 15] [999999 ] +09:05:11 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +09:05:11 [ 49] [ 3] [418] +09:05:11 [ 52] [ 16] [C1FF8C99FF94AE10] +09:05:11 ============================================================================ +09:05:11 + + +waiting on router queue for slot.... +09:05:11 Sending to : +09:05:11 ============================================================================ +09:05:11 ============================================================================ +09:05:11 Slot Id : <270> +09:05:11 Transaction Type : REQUEST +09:05:11 Received From : +09:05:11 ============================================================================ +09:05:11 FNo. Len. Field Value +09:05:11 ============================================================================ +09:05:11 [ 1] [ 4] [0200] +09:05:11 [ 2] [ 16] [6213545000739817] +09:05:11 [ 3] [ 6] [010000] +09:05:11 [ 4] [ 12] [000050000000] +09:05:11 [ 7] [ 10] [0320020419] +09:05:11 [ 11] [ 6] [267371] +09:05:11 [ 12] [ 6] [090419] +09:05:11 [ 13] [ 4] [0320] +09:05:11 [ 14] [ 4] [4912] +09:05:11 [ 15] [ 4] [0320] +09:05:11 [ 18] [ 4] [6011] +09:05:11 [ 19] [ 3] [418] +09:05:11 [ 22] [ 3] [021] +09:05:11 [ 25] [ 2] [01] +09:05:11 [ 28] [ 9] [D00002000] +09:05:11 [ 32] [ 6] [180893] +09:05:11 [ 35] [ 32] [6213545000739817=491212013981759] +09:05:11 [ 37] [ 12] [507902267371] +09:05:11 [ 41] [ 8] [0243VTKS] +09:05:11 [ 42] [ 15] [999999 ] +09:05:11 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +09:05:11 [ 49] [ 3] [418] +09:05:11 [ 52] [ 16] [7F1ABD0910903AC7] +09:05:11 ============================================================================ +09:05:11 + + +waiting on router queue for slot.... +09:05:11 Sending to : <0> +09:05:11 ============================================================================ +09:05:12 ============================================================================ +09:05:12 Slot Id : <269> +09:05:12 Transaction Type : REQUEST +09:05:12 Received From : +09:05:12 ============================================================================ +09:05:12 FNo. Len. Field Value +09:05:12 ============================================================================ +09:05:12 [ 1] [ 4] [0200] +09:05:12 [ 2] [ 16] [6213545000910376] +09:05:12 [ 3] [ 6] [010000] +09:05:12 [ 4] [ 12] [000010000000] +09:05:12 [ 7] [ 10] [0320090303] +09:05:12 [ 11] [ 6] [934597] +09:05:12 [ 12] [ 6] [090303] +09:05:12 [ 13] [ 4] [0320] +09:05:12 [ 15] [ 4] [0320] +09:05:12 [ 18] [ 4] [6011] +09:05:12 [ 19] [ 3] [418] +09:05:12 [ 22] [ 3] [021] +09:05:12 [ 25] [ 2] [01] +09:05:12 [ 28] [ 9] [D00002000] +09:05:12 [ 32] [ 6] [668899] +09:05:12 [ 35] [ 32] [6213545000910376=491212011037236] +09:05:12 [ 37] [ 12] [507902114164] +09:05:12 [ 41] [ 8] [03001009] +09:05:12 [ 42] [ 15] [APT ] +09:05:12 [ 43] [ 40] [ THA-NGON XAYTHANY DTHA-] +09:05:12 [ 49] [ 3] [418] +09:05:12 [ 52] [ 16] [E7614DAD47D825BD] +09:05:12 ============================================================================ +09:05:12 + + +waiting on router queue for slot.... +09:05:12 Sending to : +09:05:12 ============================================================================ +09:05:12 Sending to : +09:05:12 ============================================================================ +09:05:12 ============================================================================ +09:05:12 Slot Id : <269> +09:05:12 Transaction Type : REQUEST +09:05:12 Received From : +09:05:12 ============================================================================ +09:05:12 FNo. Len. Field Value +09:05:12 ============================================================================ +09:05:12 [ 1] [ 4] [0200] +09:05:12 [ 2] [ 16] [6213545000910376] +09:05:12 [ 3] [ 6] [010000] +09:05:12 [ 4] [ 12] [000010000000] +09:05:12 [ 7] [ 10] [0320090303] +09:05:12 [ 11] [ 6] [934597] +09:05:12 [ 12] [ 6] [090303] +09:05:12 [ 13] [ 4] [0320] +09:05:12 [ 15] [ 4] [0320] +09:05:12 [ 18] [ 4] [6011] +09:05:12 [ 19] [ 3] [418] +09:05:12 [ 22] [ 3] [021] +09:05:12 [ 25] [ 2] [01] +09:05:12 [ 28] [ 9] [D00002000] +09:05:12 [ 32] [ 6] [668899] +09:05:12 [ 35] [ 32] [6213545000910376=491212011037236] +09:05:12 [ 37] [ 12] [507902114164] +09:05:12 [ 41] [ 8] [03001009] +09:05:12 [ 42] [ 15] [APT ] +09:05:12 [ 43] [ 40] [ THA-NGON XAYTHANY DTHA-] +09:05:12 [ 49] [ 3] [418] +09:05:12 [ 52] [ 16] [E7614DAD47D825BD] +09:05:12 ============================================================================ +09:05:12 + + +waiting on router queue for slot.... +09:05:12 Sending to : +09:05:12 ============================================================================ +09:05:12 ============================================================================ +09:05:12 Slot Id : <269> +09:05:12 Transaction Type : REQUEST +09:05:12 Received From : +09:05:12 ============================================================================ +09:05:12 FNo. Len. Field Value +09:05:12 ============================================================================ +09:05:12 [ 1] [ 4] [0200] +09:05:12 [ 2] [ 16] [6213545000910376] +09:05:12 [ 3] [ 6] [010000] +09:05:12 [ 4] [ 12] [000010000000] +09:05:12 [ 7] [ 10] [0320090303] +09:05:12 [ 11] [ 6] [934597] +09:05:12 [ 12] [ 6] [090303] +09:05:12 [ 13] [ 4] [0320] +09:05:12 [ 15] [ 4] [0320] +09:05:12 [ 18] [ 4] [6011] +09:05:12 [ 19] [ 3] [418] +09:05:12 [ 22] [ 3] [021] +09:05:12 [ 25] [ 2] [01] +09:05:12 [ 28] [ 9] [D00002000] +09:05:12 [ 32] [ 6] [668899] +09:05:12 [ 35] [ 32] [6213545000910376=491212011037236] +09:05:12 [ 37] [ 12] [507902114164] +09:05:12 [ 41] [ 8] [03001009] +09:05:12 [ 42] [ 15] [APT ] +09:05:12 [ 43] [ 40] [ THA-NGON XAYTHANY DTHA-] +09:05:12 [ 49] [ 3] [418] +09:05:12 [ 52] [ 16] [19E2B881FE414BB4] +09:05:12 ============================================================================ +09:05:12 + + +waiting on router queue for slot.... +09:05:12 Sending to : <0> +09:05:12 ============================================================================ +09:05:13 ============================================================================ +09:05:13 Slot Id : <270> +09:05:13 Transaction Type : RESPONSE +09:05:13 Received From : +09:05:13 ============================================================================ +09:05:13 FNo. Len. Field Value +09:05:13 ============================================================================ +09:05:13 [ 1] [ 4] [0210] +09:05:13 [ 2] [ 16] [6213545000739817] +09:05:13 [ 3] [ 6] [010000] +09:05:13 [ 4] [ 12] [000050000000] +09:05:13 [ 7] [ 10] [0320020419] +09:05:13 [ 11] [ 6] [267371] +09:05:13 [ 12] [ 6] [090419] +09:05:13 [ 13] [ 4] [0320] +09:05:13 [ 15] [ 4] [0320] +09:05:13 [ 18] [ 4] [6011] +09:05:13 [ 19] [ 3] [418] +09:05:13 [ 32] [ 6] [180893] +09:05:13 [ 35] [ 32] [6213545000739817=491212013981759] +09:05:13 [ 37] [ 12] [507902267371] +09:05:13 [ 38] [ 6] [734389] +09:05:13 [ 39] [ 2] [00] +09:05:13 [ 41] [ 8] [0243VTKS] +09:05:13 [ 49] [ 3] [418] +09:05:13 [ 54] [ 40] [0001418C0001276789220002418C000127678922] +09:05:13 ============================================================================ +09:05:13 Sending to : +09:05:13 ============================================================================ +09:05:13 + + +waiting on router queue for slot.... +09:05:14 ============================================================================ +09:05:14 Slot Id : <269> +09:05:14 Transaction Type : RESPONSE +09:05:14 Received From : +09:05:14 ============================================================================ +09:05:14 FNo. Len. Field Value +09:05:14 ============================================================================ +09:05:14 [ 1] [ 4] [0210] +09:05:14 [ 2] [ 16] [6213545000910376] +09:05:14 [ 3] [ 6] [010000] +09:05:14 [ 4] [ 12] [000010000000] +09:05:14 [ 7] [ 10] [0320090303] +09:05:14 [ 11] [ 6] [934597] +09:05:14 [ 12] [ 6] [090303] +09:05:14 [ 13] [ 4] [0320] +09:05:14 [ 15] [ 4] [0320] +09:05:14 [ 18] [ 4] [6011] +09:05:14 [ 19] [ 3] [418] +09:05:14 [ 32] [ 6] [668899] +09:05:14 [ 35] [ 32] [6213545000910376=491212011037236] +09:05:14 [ 37] [ 12] [507902114164] +09:05:14 [ 38] [ 6] [940054] +09:05:14 [ 39] [ 2] [00] +09:05:14 [ 41] [ 8] [03001009] +09:05:14 [ 49] [ 3] [418] +09:05:14 [ 54] [ 40] [0001418C0000239153140002418C000023915314] +09:05:14 ============================================================================ +09:05:14 Sending to : +09:05:14 ============================================================================ +09:05:14 + + +waiting on router queue for slot.... +09:05:15 ============================================================================ +09:05:15 Slot Id : <270> +09:05:15 Transaction Type : RESPONSE +09:05:15 Received From : +09:05:15 ============================================================================ +09:05:15 FNo. Len. Field Value +09:05:15 ============================================================================ +09:05:15 [ 1] [ 4] [0210] +09:05:15 [ 2] [ 16] [6213545000739817] +09:05:15 [ 3] [ 6] [010000] +09:05:15 [ 4] [ 12] [000050000000] +09:05:15 [ 7] [ 10] [0320020419] +09:05:15 [ 11] [ 6] [267371] +09:05:15 [ 12] [ 6] [090419] +09:05:15 [ 13] [ 4] [0320] +09:05:15 [ 15] [ 4] [0320] +09:05:15 [ 18] [ 4] [6011] +09:05:15 [ 19] [ 3] [418] +09:05:15 [ 32] [ 6] [180893] +09:05:15 [ 35] [ 32] [6213545000739817=491212013981759] +09:05:15 [ 37] [ 12] [507902267371] +09:05:15 [ 38] [ 6] [734389] +09:05:15 [ 39] [ 2] [00] +09:05:15 [ 41] [ 8] [0243VTKS] +09:05:15 [ 49] [ 3] [418] +09:05:15 [ 54] [ 40] [0001418C0001276789220002418C000127678922] +09:05:15 ============================================================================ +09:05:15 Calculate Source COMM Id = 2 +09:05:15 ============================================================================ +09:05:15 + + +waiting on router queue for slot.... +09:05:17 ============================================================================ +09:05:17 Slot Id : <269> +09:05:17 Transaction Type : RESPONSE +09:05:17 Received From : +09:05:17 ============================================================================ +09:05:17 FNo. Len. Field Value +09:05:17 ============================================================================ +09:05:17 [ 1] [ 4] [0210] +09:05:17 [ 2] [ 16] [6213545000910376] +09:05:17 [ 3] [ 6] [010000] +09:05:17 [ 4] [ 12] [000010000000] +09:05:17 [ 7] [ 10] [0320090303] +09:05:17 [ 11] [ 6] [934597] +09:05:17 [ 12] [ 6] [090303] +09:05:17 [ 13] [ 4] [0320] +09:05:17 [ 15] [ 4] [0320] +09:05:17 [ 18] [ 4] [6011] +09:05:17 [ 19] [ 3] [418] +09:05:17 [ 32] [ 6] [668899] +09:05:17 [ 35] [ 32] [6213545000910376=491212011037236] +09:05:17 [ 37] [ 12] [507902114164] +09:05:17 [ 38] [ 6] [940054] +09:05:17 [ 39] [ 2] [00] +09:05:17 [ 41] [ 8] [03001009] +09:05:17 [ 49] [ 3] [418] +09:05:17 [ 54] [ 40] [0001418C0000239153140002418C000023915314] +09:05:17 ============================================================================ +09:05:17 Calculate Source COMM Id = 4 +09:05:17 ============================================================================ +09:05:17 + + +waiting on router queue for slot.... +09:05:19 ============================================================================ +09:05:19 Slot Id : <240> +09:05:19 Transaction Type : REQUEST +09:05:19 Received From : +09:05:19 ============================================================================ +09:05:19 FNo. Len. Field Value +09:05:19 ============================================================================ +09:05:19 [ 1] [ 4] [0200] +09:05:19 [ 2] [ 16] [6213548000357390] +09:05:19 [ 3] [ 6] [011000] +09:05:19 [ 4] [ 12] [000008000000] +09:05:19 [ 7] [ 10] [0320090541] +09:05:19 [ 11] [ 6] [202609] +09:05:19 [ 12] [ 6] [084556] +09:05:19 [ 13] [ 4] [0320] +09:05:19 [ 14] [ 4] [1804] +09:05:19 [ 15] [ 4] [0320] +09:05:19 [ 18] [ 4] [6011] +09:05:19 [ 19] [ 3] [418] +09:05:19 [ 22] [ 3] [021] +09:05:19 [ 25] [ 2] [01] +09:05:19 [ 28] [ 9] [D00002000] +09:05:19 [ 32] [ 6] [198901] +09:05:19 [ 35] [ 32] [6213548000357390=180412015739453] +09:05:19 [ 37] [ 12] [507909202609] +09:05:19 [ 41] [ 8] [01529016] +09:05:19 [ 42] [ 15] [000000041529016] +09:05:19 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +09:05:19 [ 49] [ 3] [418] +09:05:19 [ 52] [ 16] [6B60C8A3CB9AF228] +09:05:19 ============================================================================ +09:05:19 + + +waiting on router queue for slot.... +09:05:19 Sending to : +09:05:19 ============================================================================ +09:05:19 Sending to : +09:05:19 ============================================================================ +09:05:20 ============================================================================ +09:05:20 Slot Id : <240> +09:05:20 Transaction Type : REQUEST +09:05:20 Received From : +09:05:20 ============================================================================ +09:05:20 FNo. Len. Field Value +09:05:20 ============================================================================ +09:05:20 [ 1] [ 4] [0200] +09:05:20 [ 2] [ 16] [6213548000357390] +09:05:20 [ 3] [ 6] [011000] +09:05:20 [ 4] [ 12] [000008000000] +09:05:20 [ 7] [ 10] [0320090541] +09:05:20 [ 11] [ 6] [202609] +09:05:20 [ 12] [ 6] [084556] +09:05:20 [ 13] [ 4] [0320] +09:05:20 [ 14] [ 4] [1804] +09:05:20 [ 15] [ 4] [0320] +09:05:20 [ 18] [ 4] [6011] +09:05:20 [ 19] [ 3] [418] +09:05:20 [ 22] [ 3] [021] +09:05:20 [ 25] [ 2] [01] +09:05:20 [ 28] [ 9] [D00002000] +09:05:20 [ 32] [ 6] [198901] +09:05:20 [ 35] [ 32] [6213548000357390=180412015739453] +09:05:20 [ 37] [ 12] [507909202609] +09:05:20 [ 41] [ 8] [01529016] +09:05:20 [ 42] [ 15] [000000041529016] +09:05:20 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +09:05:20 [ 49] [ 3] [418] +09:05:20 [ 52] [ 16] [6B60C8A3CB9AF228] +09:05:20 ============================================================================ +09:05:20 + + +waiting on router queue for slot.... +09:05:20 Sending to : +09:05:20 ============================================================================ +09:05:20 ============================================================================ +09:05:20 Slot Id : <240> +09:05:20 Transaction Type : REQUEST +09:05:20 Received From : +09:05:20 ============================================================================ +09:05:20 FNo. Len. Field Value +09:05:20 ============================================================================ +09:05:20 [ 1] [ 4] [0200] +09:05:20 [ 2] [ 16] [6213548000357390] +09:05:20 [ 3] [ 6] [011000] +09:05:20 [ 4] [ 12] [000008000000] +09:05:20 [ 7] [ 10] [0320090541] +09:05:20 [ 11] [ 6] [202609] +09:05:20 [ 12] [ 6] [084556] +09:05:20 [ 13] [ 4] [0320] +09:05:20 [ 14] [ 4] [1804] +09:05:20 [ 15] [ 4] [0320] +09:05:20 [ 18] [ 4] [6011] +09:05:20 [ 19] [ 3] [418] +09:05:20 [ 22] [ 3] [021] +09:05:20 [ 25] [ 2] [01] +09:05:20 [ 28] [ 9] [D00002000] +09:05:20 [ 32] [ 6] [198901] +09:05:20 [ 35] [ 32] [6213548000357390=180412015739453] +09:05:20 [ 37] [ 12] [507909202609] +09:05:20 [ 41] [ 8] [01529016] +09:05:20 [ 42] [ 15] [000000041529016] +09:05:20 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +09:05:20 [ 49] [ 3] [418] +09:05:20 [ 52] [ 16] [F924480070803A77] +09:05:20 ============================================================================ +09:05:20 + + +waiting on router queue for slot.... +09:05:20 Sending to : <0> +09:05:20 ============================================================================ +09:05:20 ============================================================================ +09:05:20 Slot Id : <240> +09:05:20 Transaction Type : RESPONSE +09:05:20 Received From : +09:05:20 ============================================================================ +09:05:20 FNo. Len. Field Value +09:05:20 ============================================================================ +09:05:20 [ 1] [ 4] [0210] +09:05:20 [ 2] [ 16] [6213548000357390] +09:05:20 [ 3] [ 6] [011000] +09:05:20 [ 4] [ 12] [000008000000] +09:05:20 [ 7] [ 10] [0320090541] +09:05:20 [ 11] [ 6] [202609] +09:05:20 [ 12] [ 6] [084556] +09:05:20 [ 13] [ 4] [0320] +09:05:20 [ 15] [ 4] [0320] +09:05:20 [ 18] [ 4] [6011] +09:05:20 [ 19] [ 3] [418] +09:05:20 [ 32] [ 6] [198901] +09:05:20 [ 35] [ 32] [6213548000357390=180412015739453] +09:05:20 [ 37] [ 12] [507909202609] +09:05:20 [ 38] [ 6] [262743] +09:05:20 [ 39] [ 2] [00] +09:05:20 [ 41] [ 8] [01529016] +09:05:20 [ 49] [ 3] [418] +09:05:20 [ 54] [ 40] [1001418C0000056816321002418C000005681632] +09:05:20 ============================================================================ +09:05:20 Sending to : +09:05:20 ============================================================================ +09:05:20 + + +waiting on router queue for slot.... +09:05:22 ============================================================================ +09:05:22 Slot Id : <240> +09:05:22 Transaction Type : RESPONSE +09:05:22 Received From : +09:05:22 ============================================================================ +09:05:22 FNo. Len. Field Value +09:05:22 ============================================================================ +09:05:22 [ 1] [ 4] [0210] +09:05:22 [ 2] [ 16] [6213548000357390] +09:05:22 [ 3] [ 6] [011000] +09:05:22 [ 4] [ 12] [000008000000] +09:05:22 [ 7] [ 10] [0320090541] +09:05:22 [ 11] [ 6] [202609] +09:05:22 [ 12] [ 6] [084556] +09:05:22 [ 13] [ 4] [0320] +09:05:22 [ 15] [ 4] [0320] +09:05:22 [ 18] [ 4] [6011] +09:05:22 [ 19] [ 3] [418] +09:05:22 [ 32] [ 6] [198901] +09:05:22 [ 35] [ 32] [6213548000357390=180412015739453] +09:05:22 [ 37] [ 12] [507909202609] +09:05:22 [ 38] [ 6] [262743] +09:05:22 [ 39] [ 2] [00] +09:05:22 [ 41] [ 8] [01529016] +09:05:22 [ 49] [ 3] [418] +09:05:22 [ 54] [ 40] [1001418C0000056816321002418C000005681632] +09:05:22 ============================================================================ +09:05:22 Calculate Source COMM Id = 5 +09:05:22 ============================================================================ +09:05:22 + + +waiting on router queue for slot.... +09:05:23 ============================================================================ +09:05:23 Slot Id : <197> +09:05:23 Transaction Type : REQUEST +09:05:23 Received From : +09:05:23 ============================================================================ +09:05:23 FNo. Len. Field Value +09:05:23 ============================================================================ +09:05:23 [ 1] [ 4] [0200] +09:05:23 [ 2] [ 16] [6688990050058757] +09:05:23 [ 3] [ 6] [300000] +09:05:23 [ 4] [ 12] [000000000000] +09:05:23 [ 7] [ 10] [0320090519] +09:05:23 [ 11] [ 6] [693303] +09:05:23 [ 12] [ 6] [090519] +09:05:23 [ 13] [ 4] [0320] +09:05:23 [ 15] [ 4] [0320] +09:05:23 [ 18] [ 4] [6011] +09:05:23 [ 22] [ 3] [900] +09:05:23 [ 25] [ 2] [02] +09:05:23 [ 28] [ 9] [D00000000] +09:05:23 [ 32] [ 6] [621354] +09:05:23 [ 35] [ 37] [6688990050058757=98041261273374400000] +09:05:23 [ 37] [ 12] [507904795484] +09:05:23 [ 41] [ 8] [07001500] +09:05:23 [ 42] [ 15] [NATIVE ] +09:05:23 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +09:05:23 [ 49] [ 3] [418] +09:05:23 [ 52] [ 16] [7B3E1D692F18B107] +09:05:23 ============================================================================ +09:05:23 + + +waiting on router queue for slot.... +09:05:23 Sending to : +09:05:23 ============================================================================ +09:05:23 Sending to : +09:05:23 ============================================================================ +09:05:23 ============================================================================ +09:05:23 Slot Id : <197> +09:05:23 Transaction Type : REQUEST +09:05:23 Received From : +09:05:23 ============================================================================ +09:05:23 FNo. Len. Field Value +09:05:23 ============================================================================ +09:05:23 [ 1] [ 4] [0200] +09:05:23 [ 2] [ 16] [6688990050058757] +09:05:23 [ 3] [ 6] [300000] +09:05:23 [ 4] [ 12] [000000000000] +09:05:23 [ 7] [ 10] [0320090519] +09:05:23 [ 11] [ 6] [693303] +09:05:23 [ 12] [ 6] [090519] +09:05:23 [ 13] [ 4] [0320] +09:05:23 [ 15] [ 4] [0320] +09:05:23 [ 18] [ 4] [6011] +09:05:23 [ 22] [ 3] [900] +09:05:23 [ 25] [ 2] [02] +09:05:23 [ 28] [ 9] [D00000000] +09:05:23 [ 32] [ 6] [621354] +09:05:23 [ 35] [ 37] [6688990050058757=98041261273374400000] +09:05:23 [ 37] [ 12] [507904795484] +09:05:23 [ 41] [ 8] [07001500] +09:05:23 [ 42] [ 15] [NATIVE ] +09:05:23 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +09:05:23 [ 49] [ 3] [418] +09:05:23 [ 52] [ 16] [7B3E1D692F18B107] +09:05:23 ============================================================================ +09:05:23 + + +waiting on router queue for slot.... +09:05:23 Sending to : +09:05:23 ============================================================================ +09:05:23 ============================================================================ +09:05:23 Slot Id : <197> +09:05:23 Transaction Type : REQUEST +09:05:23 Received From : +09:05:23 ============================================================================ +09:05:23 FNo. Len. Field Value +09:05:23 ============================================================================ +09:05:23 [ 1] [ 4] [0200] +09:05:23 [ 2] [ 16] [6688990050058757] +09:05:23 [ 3] [ 6] [300000] +09:05:23 [ 4] [ 12] [000000000000] +09:05:23 [ 7] [ 10] [0320090519] +09:05:23 [ 11] [ 6] [693303] +09:05:23 [ 12] [ 6] [090519] +09:05:23 [ 13] [ 4] [0320] +09:05:23 [ 15] [ 4] [0320] +09:05:23 [ 18] [ 4] [6011] +09:05:23 [ 22] [ 3] [900] +09:05:23 [ 25] [ 2] [02] +09:05:23 [ 28] [ 9] [D00000000] +09:05:23 [ 32] [ 6] [621354] +09:05:23 [ 35] [ 37] [6688990050058757=98041261273374400000] +09:05:23 [ 37] [ 12] [507904795484] +09:05:23 [ 41] [ 8] [07001500] +09:05:23 [ 42] [ 15] [NATIVE ] +09:05:23 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +09:05:23 [ 49] [ 3] [418] +09:05:23 [ 52] [ 16] [12C001B9737629B9] +09:05:23 ============================================================================ +09:05:23 + + +waiting on router queue for slot.... +09:05:23 Sending to : <4> +09:05:23 ============================================================================ +09:05:24 ============================================================================ +09:05:24 Slot Id : <197> +09:05:24 Transaction Type : RESPONSE +09:05:24 Received From : +09:05:24 ============================================================================ +09:05:24 FNo. Len. Field Value +09:05:24 ============================================================================ +09:05:24 [ 1] [ 4] [0210] +09:05:24 [ 2] [ 16] [6688990050058757] +09:05:24 [ 3] [ 6] [300000] +09:05:24 [ 4] [ 12] [000000000000] +09:05:24 [ 11] [ 6] [693303] +09:05:24 [ 12] [ 6] [090519] +09:05:24 [ 15] [ 4] [0320] +09:05:24 [ 18] [ 4] [6011] +09:05:24 [ 32] [ 6] [621354] +09:05:24 [ 35] [ 37] [6688990050058757=98041261273374400000] +09:05:24 [ 37] [ 12] [507904795484] +09:05:24 [ 38] [ 6] [665931] +09:05:24 [ 39] [ 2] [00] +09:05:24 [ 41] [ 8] [07001500] +09:05:24 [ 49] [ 3] [418] +09:05:24 [ 54] [ 20] [0002418C000012600000] +09:05:24 ============================================================================ +09:05:24 Sending to : +09:05:24 ============================================================================ +09:05:24 + + +waiting on router queue for slot.... +09:05:25 ============================================================================ +09:05:25 Slot Id : <197> +09:05:25 Transaction Type : RESPONSE +09:05:25 Received From : +09:05:25 ============================================================================ +09:05:25 FNo. Len. Field Value +09:05:25 ============================================================================ +09:05:25 [ 1] [ 4] [0210] +09:05:25 [ 2] [ 16] [6688990050058757] +09:05:25 [ 3] [ 6] [300000] +09:05:25 [ 4] [ 12] [000000000000] +09:05:25 [ 11] [ 6] [693303] +09:05:25 [ 12] [ 6] [090519] +09:05:25 [ 15] [ 4] [0320] +09:05:25 [ 18] [ 4] [6011] +09:05:25 [ 32] [ 6] [621354] +09:05:25 [ 35] [ 37] [6688990050058757=98041261273374400000] +09:05:25 [ 37] [ 12] [507904795484] +09:05:25 [ 38] [ 6] [665931] +09:05:25 [ 39] [ 2] [00] +09:05:25 [ 41] [ 8] [07001500] +09:05:25 [ 49] [ 3] [418] +09:05:25 [ 54] [ 20] [0002418C000012600000] +09:05:25 ============================================================================ +09:05:25 Calculate Source COMM Id = 0 +09:05:25 ============================================================================ +09:05:25 + + +waiting on router queue for slot.... +09:05:26 ============================================================================ +09:05:26 Slot Id : <228> +09:05:26 Transaction Type : REQUEST +09:05:26 Received From : +09:05:26 ============================================================================ +09:05:26 FNo. Len. Field Value +09:05:26 ============================================================================ +09:05:26 [ 1] [ 4] [0800] +09:05:26 [ 7] [ 10] [0320020434] +09:05:26 [ 11] [ 6] [155546] +09:05:26 [ 70] [ 3] [301] +09:05:26 ============================================================================ +09:05:26 + + +waiting on router queue for slot.... +09:05:26 Sending to : +09:05:26 ============================================================================ +09:05:26 ============================================================================ +09:05:26 Slot Id : <228> +09:05:26 Transaction Type : RESPONSE +09:05:26 Received From : +09:05:26 ============================================================================ +09:05:26 FNo. Len. Field Value +09:05:26 ============================================================================ +09:05:26 [ 1] [ 4] [0810] +09:05:26 [ 7] [ 10] [0320020434] +09:05:26 [ 11] [ 6] [155546] +09:05:26 [ 39] [ 2] [00] +09:05:26 [ 70] [ 3] [301] +09:05:26 ============================================================================ +09:05:26 Calculate Source COMM Id = 2 +09:05:26 ============================================================================ +09:05:26 + + +waiting on router queue for slot.... +09:05:32 ============================================================================ +09:05:32 Slot Id : <256> +09:05:32 Transaction Type : REQUEST +09:05:32 Received From : +09:05:32 ============================================================================ +09:05:32 FNo. Len. Field Value +09:05:32 ============================================================================ +09:05:32 [ 1] [ 4] [0200] +09:05:32 [ 2] [ 16] [6213545000902142] +09:05:32 [ 3] [ 6] [010000] +09:05:32 [ 4] [ 12] [000050000000] +09:05:32 [ 7] [ 10] [0320020438] +09:05:32 [ 11] [ 6] [267374] +09:05:32 [ 12] [ 6] [090438] +09:05:32 [ 13] [ 4] [0320] +09:05:32 [ 14] [ 4] [4912] +09:05:32 [ 15] [ 4] [0320] +09:05:32 [ 18] [ 4] [6011] +09:05:32 [ 19] [ 3] [418] +09:05:32 [ 22] [ 3] [021] +09:05:32 [ 25] [ 2] [01] +09:05:32 [ 28] [ 9] [D00002000] +09:05:32 [ 32] [ 6] [180893] +09:05:32 [ 35] [ 32] [6213545000902142=491212010214328] +09:05:32 [ 37] [ 12] [507902267374] +09:05:32 [ 41] [ 8] [0111BLBR] +09:05:32 [ 42] [ 15] [999999 ] +09:05:32 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:05:32 [ 49] [ 3] [418] +09:05:32 [ 52] [ 16] [4DE4A5FECD9BF2FE] +09:05:32 ============================================================================ +09:05:32 + + +waiting on router queue for slot.... +09:05:32 Sending to : +09:05:32 ============================================================================ +09:05:32 Sending to : +09:05:32 ============================================================================ +09:05:32 ============================================================================ +09:05:32 Slot Id : <265> +09:05:32 Transaction Type : REQUEST +09:05:32 Received From : +09:05:32 ============================================================================ +09:05:32 FNo. Len. Field Value +09:05:32 ============================================================================ +09:05:32 [ 1] [ 4] [0800] +09:05:32 [ 7] [ 10] [0320090520] +09:05:32 [ 11] [ 6] [078009] +09:05:32 [ 37] [ 12] [507909078009] +09:05:32 [ 70] [ 3] [ ] +09:05:32 ============================================================================ +09:05:32 + + +waiting on router queue for slot.... +09:05:32 Sending to : +09:05:32 ============================================================================ +09:05:32 ============================================================================ +09:05:32 Slot Id : <265> +09:05:32 Transaction Type : RESPONSE +09:05:32 Received From : +09:05:32 ============================================================================ +09:05:32 FNo. Len. Field Value +09:05:32 ============================================================================ +09:05:32 [ 1] [ 4] [0810] +09:05:32 [ 7] [ 10] [0320090520] +09:05:32 [ 11] [ 6] [078009] +09:05:32 [ 37] [ 12] [507909078009] +09:05:32 [ 39] [ 2] [91] +09:05:32 [ 70] [ 3] [ ] +09:05:32 ============================================================================ +09:05:32 Calculate Source COMM Id = 3 +09:05:32 ============================================================================ +09:05:32 + + +waiting on router queue for slot.... +09:05:32 ============================================================================ +09:05:32 Slot Id : <256> +09:05:32 Transaction Type : REQUEST +09:05:32 Received From : +09:05:32 ============================================================================ +09:05:32 FNo. Len. Field Value +09:05:32 ============================================================================ +09:05:32 [ 1] [ 4] [0200] +09:05:32 [ 2] [ 16] [6213545000902142] +09:05:32 [ 3] [ 6] [010000] +09:05:32 [ 4] [ 12] [000050000000] +09:05:32 [ 7] [ 10] [0320020438] +09:05:32 [ 11] [ 6] [267374] +09:05:32 [ 12] [ 6] [090438] +09:05:32 [ 13] [ 4] [0320] +09:05:32 [ 14] [ 4] [4912] +09:05:32 [ 15] [ 4] [0320] +09:05:32 [ 18] [ 4] [6011] +09:05:32 [ 19] [ 3] [418] +09:05:32 [ 22] [ 3] [021] +09:05:32 [ 25] [ 2] [01] +09:05:32 [ 28] [ 9] [D00002000] +09:05:32 [ 32] [ 6] [180893] +09:05:32 [ 35] [ 32] [6213545000902142=491212010214328] +09:05:32 [ 37] [ 12] [507902267374] +09:05:32 [ 41] [ 8] [0111BLBR] +09:05:32 [ 42] [ 15] [999999 ] +09:05:32 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:05:32 [ 49] [ 3] [418] +09:05:32 [ 52] [ 16] [4DE4A5FECD9BF2FE] +09:05:32 ============================================================================ +09:05:32 + + +waiting on router queue for slot.... +09:05:32 Sending to : +09:05:32 ============================================================================ +09:05:32 ============================================================================ +09:05:32 Slot Id : <256> +09:05:32 Transaction Type : REQUEST +09:05:32 Received From : +09:05:32 ============================================================================ +09:05:32 FNo. Len. Field Value +09:05:32 ============================================================================ +09:05:32 [ 1] [ 4] [0200] +09:05:32 [ 2] [ 16] [6213545000902142] +09:05:32 [ 3] [ 6] [010000] +09:05:32 [ 4] [ 12] [000050000000] +09:05:32 [ 7] [ 10] [0320020438] +09:05:32 [ 11] [ 6] [267374] +09:05:32 [ 12] [ 6] [090438] +09:05:32 [ 13] [ 4] [0320] +09:05:32 [ 14] [ 4] [4912] +09:05:32 [ 15] [ 4] [0320] +09:05:32 [ 18] [ 4] [6011] +09:05:32 [ 19] [ 3] [418] +09:05:32 [ 22] [ 3] [021] +09:05:32 [ 25] [ 2] [01] +09:05:32 [ 28] [ 9] [D00002000] +09:05:32 [ 32] [ 6] [180893] +09:05:32 [ 35] [ 32] [6213545000902142=491212010214328] +09:05:32 [ 37] [ 12] [507902267374] +09:05:32 [ 41] [ 8] [0111BLBR] +09:05:32 [ 42] [ 15] [999999 ] +09:05:32 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:05:32 [ 49] [ 3] [418] +09:05:32 [ 52] [ 16] [FC2F19C8E15D2BF0] +09:05:32 ============================================================================ +09:05:32 + + +waiting on router queue for slot.... +09:05:32 Sending to : <0> +09:05:32 ============================================================================ +09:05:33 ============================================================================ +09:05:33 Slot Id : <256> +09:05:33 Transaction Type : RESPONSE +09:05:33 Received From : +09:05:33 ============================================================================ +09:05:33 FNo. Len. Field Value +09:05:33 ============================================================================ +09:05:33 [ 1] [ 4] [0210] +09:05:33 [ 2] [ 16] [6213545000902142] +09:05:33 [ 3] [ 6] [010000] +09:05:33 [ 4] [ 12] [000050000000] +09:05:33 [ 7] [ 10] [0320020438] +09:05:33 [ 11] [ 6] [267374] +09:05:33 [ 12] [ 6] [090438] +09:05:33 [ 13] [ 4] [0320] +09:05:33 [ 15] [ 4] [0320] +09:05:33 [ 18] [ 4] [6011] +09:05:33 [ 19] [ 3] [418] +09:05:33 [ 32] [ 6] [180893] +09:05:33 [ 35] [ 32] [6213545000902142=491212010214328] +09:05:33 [ 37] [ 12] [507902267374] +09:05:33 [ 38] [ 6] [946103] +09:05:33 [ 39] [ 2] [00] +09:05:33 [ 41] [ 8] [0111BLBR] +09:05:33 [ 49] [ 3] [418] +09:05:33 [ 54] [ 40] [0001418C0001650984470002418C000165098447] +09:05:33 ============================================================================ +09:05:33 Sending to : +09:05:33 ============================================================================ +09:05:33 + + +waiting on router queue for slot.... +09:05:35 ============================================================================ +09:05:35 Slot Id : <256> +09:05:35 Transaction Type : RESPONSE +09:05:35 Received From : +09:05:35 ============================================================================ +09:05:35 FNo. Len. Field Value +09:05:35 ============================================================================ +09:05:35 [ 1] [ 4] [0210] +09:05:35 [ 2] [ 16] [6213545000902142] +09:05:35 [ 3] [ 6] [010000] +09:05:35 [ 4] [ 12] [000050000000] +09:05:35 [ 7] [ 10] [0320020438] +09:05:35 [ 11] [ 6] [267374] +09:05:35 [ 12] [ 6] [090438] +09:05:35 [ 13] [ 4] [0320] +09:05:35 [ 15] [ 4] [0320] +09:05:35 [ 18] [ 4] [6011] +09:05:35 [ 19] [ 3] [418] +09:05:35 [ 32] [ 6] [180893] +09:05:35 [ 35] [ 32] [6213545000902142=491212010214328] +09:05:35 [ 37] [ 12] [507902267374] +09:05:35 [ 38] [ 6] [946103] +09:05:35 [ 39] [ 2] [00] +09:05:35 [ 41] [ 8] [0111BLBR] +09:05:35 [ 49] [ 3] [418] +09:05:35 [ 54] [ 40] [0001418C0001650984470002418C000165098447] +09:05:35 ============================================================================ +09:05:35 Calculate Source COMM Id = 2 +09:05:35 ============================================================================ +09:05:35 + + +waiting on router queue for slot.... +09:05:37 ============================================================================ +09:05:37 Slot Id : <275> +09:05:37 Transaction Type : REQUEST +09:05:37 Received From : +09:05:37 ============================================================================ +09:05:37 FNo. Len. Field Value +09:05:37 ============================================================================ +09:05:37 [ 1] [ 4] [0200] +09:05:37 [ 2] [ 16] [6213544001747028] +09:05:37 [ 3] [ 6] [010000] +09:05:37 [ 4] [ 12] [000030000000] +09:05:37 [ 7] [ 10] [0320090328] +09:05:37 [ 11] [ 6] [934609] +09:05:37 [ 12] [ 6] [090328] +09:05:37 [ 13] [ 4] [0320] +09:05:37 [ 15] [ 4] [0320] +09:05:37 [ 18] [ 4] [6011] +09:05:37 [ 19] [ 3] [418] +09:05:37 [ 22] [ 3] [021] +09:05:37 [ 25] [ 2] [01] +09:05:37 [ 28] [ 9] [D00002000] +09:05:37 [ 32] [ 6] [668899] +09:05:37 [ 35] [ 32] [6213544001747028=491212014702521] +09:05:37 [ 37] [ 12] [507901822367] +09:05:37 [ 41] [ 8] [03407003] +09:05:37 [ 42] [ 15] [APT ] +09:05:37 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:05:37 [ 49] [ 3] [418] +09:05:37 [ 52] [ 16] [29C25DB3802997C4] +09:05:37 ============================================================================ +09:05:37 + + +waiting on router queue for slot.... +09:05:37 Sending to : +09:05:37 ============================================================================ +09:05:37 Sending to : +09:05:37 ============================================================================ +09:05:37 ============================================================================ +09:05:37 Slot Id : <275> +09:05:37 Transaction Type : REQUEST +09:05:37 Received From : +09:05:37 ============================================================================ +09:05:37 FNo. Len. Field Value +09:05:37 ============================================================================ +09:05:37 [ 1] [ 4] [0200] +09:05:37 [ 2] [ 16] [6213544001747028] +09:05:37 [ 3] [ 6] [010000] +09:05:37 [ 4] [ 12] [000030000000] +09:05:37 [ 7] [ 10] [0320090328] +09:05:37 [ 11] [ 6] [934609] +09:05:37 [ 12] [ 6] [090328] +09:05:37 [ 13] [ 4] [0320] +09:05:37 [ 15] [ 4] [0320] +09:05:37 [ 18] [ 4] [6011] +09:05:37 [ 19] [ 3] [418] +09:05:37 [ 22] [ 3] [021] +09:05:37 [ 25] [ 2] [01] +09:05:37 [ 28] [ 9] [D00002000] +09:05:37 [ 32] [ 6] [668899] +09:05:37 [ 35] [ 32] [6213544001747028=491212014702521] +09:05:37 [ 37] [ 12] [507901822367] +09:05:37 [ 41] [ 8] [03407003] +09:05:37 [ 42] [ 15] [APT ] +09:05:37 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:05:37 [ 49] [ 3] [418] +09:05:37 [ 52] [ 16] [29C25DB3802997C4] +09:05:37 ============================================================================ +09:05:37 + + +waiting on router queue for slot.... +09:05:37 Sending to : +09:05:37 ============================================================================ +09:05:37 ============================================================================ +09:05:37 Slot Id : <275> +09:05:37 Transaction Type : REQUEST +09:05:37 Received From : +09:05:37 ============================================================================ +09:05:37 FNo. Len. Field Value +09:05:37 ============================================================================ +09:05:37 [ 1] [ 4] [0200] +09:05:37 [ 2] [ 16] [6213544001747028] +09:05:37 [ 3] [ 6] [010000] +09:05:37 [ 4] [ 12] [000030000000] +09:05:37 [ 7] [ 10] [0320090328] +09:05:37 [ 11] [ 6] [934609] +09:05:37 [ 12] [ 6] [090328] +09:05:37 [ 13] [ 4] [0320] +09:05:37 [ 15] [ 4] [0320] +09:05:37 [ 18] [ 4] [6011] +09:05:37 [ 19] [ 3] [418] +09:05:37 [ 22] [ 3] [021] +09:05:37 [ 25] [ 2] [01] +09:05:37 [ 28] [ 9] [D00002000] +09:05:37 [ 32] [ 6] [668899] +09:05:37 [ 35] [ 32] [6213544001747028=491212014702521] +09:05:37 [ 37] [ 12] [507901822367] +09:05:37 [ 41] [ 8] [03407003] +09:05:37 [ 42] [ 15] [APT ] +09:05:37 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:05:37 [ 49] [ 3] [418] +09:05:37 [ 52] [ 16] [A3890190DB3A5FD3] +09:05:37 ============================================================================ +09:05:37 + + +waiting on router queue for slot.... +09:05:37 Sending to : <0> +09:05:37 ============================================================================ +09:05:38 ============================================================================ +09:05:38 Slot Id : <247> +09:05:38 Transaction Type : REQUEST +09:05:38 Received From : +09:05:38 ============================================================================ +09:05:38 FNo. Len. Field Value +09:05:38 ============================================================================ +09:05:38 [ 1] [ 4] [0200] +09:05:38 [ 2] [ 16] [1808931300006887] +09:05:38 [ 3] [ 6] [010000] +09:05:38 [ 4] [ 12] [000100000000] +09:05:38 [ 7] [ 10] [0320090534] +09:05:38 [ 11] [ 6] [693351] +09:05:38 [ 12] [ 6] [090534] +09:05:38 [ 13] [ 4] [0320] +09:05:38 [ 15] [ 4] [0320] +09:05:38 [ 18] [ 4] [6011] +09:05:38 [ 22] [ 3] [900] +09:05:38 [ 25] [ 2] [02] +09:05:38 [ 28] [ 9] [D00002000] +09:05:38 [ 32] [ 6] [621354] +09:05:38 [ 35] [ 27] [1808931300006887=1803500202] +09:05:38 [ 37] [ 12] [507903735026] +09:05:38 [ 41] [ 8] [06002300] +09:05:38 [ 42] [ 15] [NATIVE ] +09:05:38 [ 43] [ 40] [ODX BOL Xay LAO] +09:05:38 [ 49] [ 3] [418] +09:05:38 [ 52] [ 16] [0533F325FFA15695] +09:05:38 ============================================================================ +09:05:38 + + +waiting on router queue for slot.... +09:05:38 Sending to : +09:05:38 ============================================================================ +09:05:38 Sending to : +09:05:38 ============================================================================ +09:05:38 ============================================================================ +09:05:38 Slot Id : <275> +09:05:38 Transaction Type : RESPONSE +09:05:38 Received From : +09:05:38 ============================================================================ +09:05:38 FNo. Len. Field Value +09:05:38 ============================================================================ +09:05:38 [ 1] [ 4] [0210] +09:05:38 [ 2] [ 16] [6213544001747028] +09:05:38 [ 3] [ 6] [010000] +09:05:38 [ 4] [ 12] [000030000000] +09:05:38 [ 7] [ 10] [0320090328] +09:05:38 [ 11] [ 6] [934609] +09:05:38 [ 12] [ 6] [090328] +09:05:38 [ 13] [ 4] [0320] +09:05:38 [ 15] [ 4] [0320] +09:05:38 [ 18] [ 4] [6011] +09:05:38 [ 19] [ 3] [418] +09:05:38 [ 32] [ 6] [668899] +09:05:38 [ 35] [ 32] [6213544001747028=491212014702521] +09:05:38 [ 37] [ 12] [507901822367] +09:05:38 [ 38] [ 6] [890606] +09:05:38 [ 39] [ 2] [00] +09:05:38 [ 41] [ 8] [03407003] +09:05:38 [ 49] [ 3] [418] +09:05:38 [ 54] [ 40] [0001418C0000136552540002418C000013655254] +09:05:38 ============================================================================ +09:05:38 Sending to : +09:05:38 ============================================================================ +09:05:38 + + +waiting on router queue for slot.... +09:05:38 ============================================================================ +09:05:38 Slot Id : <247> +09:05:38 Transaction Type : REQUEST +09:05:38 Received From : +09:05:38 ============================================================================ +09:05:38 FNo. Len. Field Value +09:05:38 ============================================================================ +09:05:38 [ 1] [ 4] [0200] +09:05:38 [ 2] [ 16] [1808931300006887] +09:05:38 [ 3] [ 6] [010000] +09:05:38 [ 4] [ 12] [000100000000] +09:05:38 [ 7] [ 10] [0320090534] +09:05:38 [ 11] [ 6] [693351] +09:05:38 [ 12] [ 6] [090534] +09:05:38 [ 13] [ 4] [0320] +09:05:38 [ 15] [ 4] [0320] +09:05:38 [ 18] [ 4] [6011] +09:05:38 [ 22] [ 3] [900] +09:05:38 [ 25] [ 2] [02] +09:05:38 [ 28] [ 9] [D00002000] +09:05:38 [ 32] [ 6] [621354] +09:05:38 [ 35] [ 27] [1808931300006887=1803500202] +09:05:38 [ 37] [ 12] [507903735026] +09:05:38 [ 41] [ 8] [06002300] +09:05:38 [ 42] [ 15] [NATIVE ] +09:05:38 [ 43] [ 40] [ODX BOL Xay LAO] +09:05:38 [ 49] [ 3] [418] +09:05:38 [ 52] [ 16] [0533F325FFA15695] +09:05:38 ============================================================================ +09:05:38 + + +waiting on router queue for slot.... +09:05:38 Sending to : +09:05:38 ============================================================================ +09:05:38 ============================================================================ +09:05:38 Slot Id : <247> +09:05:38 Transaction Type : REQUEST +09:05:38 Received From : +09:05:38 ============================================================================ +09:05:38 FNo. Len. Field Value +09:05:38 ============================================================================ +09:05:38 [ 1] [ 4] [0200] +09:05:38 [ 2] [ 16] [1808931300006887] +09:05:38 [ 3] [ 6] [010000] +09:05:38 [ 4] [ 12] [000100000000] +09:05:38 [ 7] [ 10] [0320090534] +09:05:38 [ 11] [ 6] [693351] +09:05:38 [ 12] [ 6] [090534] +09:05:38 [ 13] [ 4] [0320] +09:05:38 [ 15] [ 4] [0320] +09:05:38 [ 18] [ 4] [6011] +09:05:38 [ 22] [ 3] [900] +09:05:38 [ 25] [ 2] [02] +09:05:38 [ 28] [ 9] [D00002000] +09:05:38 [ 32] [ 6] [621354] +09:05:38 [ 35] [ 27] [1808931300006887=1803500202] +09:05:38 [ 37] [ 12] [507903735026] +09:05:38 [ 41] [ 8] [06002300] +09:05:38 [ 42] [ 15] [NATIVE ] +09:05:38 [ 43] [ 40] [ODX BOL Xay LAO] +09:05:38 [ 49] [ 3] [418] +09:05:38 [ 52] [ 16] [5D067547BE7C466E] +09:05:38 ============================================================================ +09:05:38 + + +waiting on router queue for slot.... +09:05:38 Sending to : <2> +09:05:38 ============================================================================ +09:05:39 ============================================================================ +09:05:39 Slot Id : <275> +09:05:39 Transaction Type : RESPONSE +09:05:39 Received From : +09:05:39 ============================================================================ +09:05:39 FNo. Len. Field Value +09:05:39 ============================================================================ +09:05:39 [ 1] [ 4] [0210] +09:05:39 [ 2] [ 16] [6213544001747028] +09:05:39 [ 3] [ 6] [010000] +09:05:39 [ 4] [ 12] [000030000000] +09:05:39 [ 7] [ 10] [0320090328] +09:05:39 [ 11] [ 6] [934609] +09:05:39 [ 12] [ 6] [090328] +09:05:39 [ 13] [ 4] [0320] +09:05:39 [ 15] [ 4] [0320] +09:05:39 [ 18] [ 4] [6011] +09:05:39 [ 19] [ 3] [418] +09:05:39 [ 32] [ 6] [668899] +09:05:39 [ 35] [ 32] [6213544001747028=491212014702521] +09:05:39 [ 37] [ 12] [507901822367] +09:05:39 [ 38] [ 6] [890606] +09:05:39 [ 39] [ 2] [00] +09:05:39 [ 41] [ 8] [03407003] +09:05:39 [ 49] [ 3] [418] +09:05:39 [ 54] [ 40] [0001418C0000136552540002418C000013655254] +09:05:39 ============================================================================ +09:05:39 Calculate Source COMM Id = 4 +09:05:39 ============================================================================ +09:05:39 + + +waiting on router queue for slot.... +09:05:41 ============================================================================ +09:05:41 Slot Id : <247> +09:05:41 Transaction Type : RESPONSE +09:05:41 Received From : +09:05:41 ============================================================================ +09:05:41 FNo. Len. Field Value +09:05:41 ============================================================================ +09:05:41 [ 1] [ 4] [0210] +09:05:41 [ 2] [ 16] [1808931300006887] +09:05:41 [ 3] [ 6] [010000] +09:05:41 [ 4] [ 12] [000100000000] +09:05:41 [ 6] [ 12] [000100000000] +09:05:41 [ 7] [ 10] [0320090534] +09:05:41 [ 11] [ 6] [693351] +09:05:41 [ 12] [ 6] [090534] +09:05:41 [ 13] [ 4] [0320] +09:05:41 [ 18] [ 4] [6011] +09:05:41 [ 19] [ 3] [418] +09:05:41 [ 22] [ 3] [021] +09:05:41 [ 32] [ 6] [621354] +09:05:41 [ 35] [ 27] [1808931300006887=1803500202] +09:05:41 [ 37] [ 12] [507903735026] +09:05:41 [ 38] [ 6] [693351] +09:05:41 [ 39] [ 2] [00] +09:05:41 [ 41] [ 8] [06002300] +09:05:41 [ 49] [ 3] [418] +09:05:41 [ 52] [ 16] [5D067547BE7C466E] +09:05:41 [ 54] [ 20] [1001418C000402942700] +09:05:41 ============================================================================ +09:05:41 Sending to : +09:05:41 ============================================================================ +09:05:41 + + +waiting on router queue for slot.... +09:05:43 ============================================================================ +09:05:43 Slot Id : <247> +09:05:43 Transaction Type : RESPONSE +09:05:43 Received From : +09:05:43 ============================================================================ +09:05:43 FNo. Len. Field Value +09:05:43 ============================================================================ +09:05:43 [ 1] [ 4] [0210] +09:05:43 [ 2] [ 16] [1808931300006887] +09:05:43 [ 3] [ 6] [010000] +09:05:43 [ 4] [ 12] [000100000000] +09:05:43 [ 6] [ 12] [000100000000] +09:05:43 [ 7] [ 10] [0320090534] +09:05:43 [ 11] [ 6] [693351] +09:05:43 [ 12] [ 6] [090534] +09:05:43 [ 13] [ 4] [0320] +09:05:43 [ 18] [ 4] [6011] +09:05:43 [ 19] [ 3] [418] +09:05:43 [ 22] [ 3] [021] +09:05:43 [ 32] [ 6] [621354] +09:05:43 [ 35] [ 27] [1808931300006887=1803500202] +09:05:43 [ 37] [ 12] [507903735026] +09:05:43 [ 38] [ 6] [693351] +09:05:43 [ 39] [ 2] [00] +09:05:43 [ 41] [ 8] [06002300] +09:05:43 [ 49] [ 3] [418] +09:05:43 [ 52] [ 16] [5D067547BE7C466E] +09:05:43 [ 54] [ 20] [1001418C000402942700] +09:05:43 ============================================================================ +09:05:43 Calculate Source COMM Id = 0 +09:05:43 ============================================================================ +09:05:43 + + +waiting on router queue for slot.... +09:05:50 ============================================================================ +09:05:50 Slot Id : <218> +09:05:50 Transaction Type : REQUEST +09:05:50 Received From : +09:05:50 ============================================================================ +09:05:50 FNo. Len. Field Value +09:05:50 ============================================================================ +09:05:50 [ 1] [ 4] [0200] +09:05:50 [ 2] [ 16] [6213545000469894] +09:05:50 [ 3] [ 6] [310000] +09:05:50 [ 4] [ 12] [000000000000] +09:05:50 [ 7] [ 10] [0320091337] +09:05:50 [ 11] [ 6] [009268] +09:05:50 [ 12] [ 6] [091337] +09:05:50 [ 13] [ 4] [0320] +09:05:50 [ 14] [ 4] [4912] +09:05:50 [ 15] [ 4] [0320] +09:05:50 [ 18] [ 4] [6011] +09:05:50 [ 22] [ 3] [900] +09:05:50 [ 25] [ 2] [02] +09:05:50 [ 28] [ 9] [000000000] +09:05:50 [ 32] [ 6] [220699] +09:05:50 [ 35] [ 32] [6213545000469894=491212016989844] +09:05:50 [ 37] [ 12] [507900213238] +09:05:50 [ 41] [ 8] [05000100] +09:05:50 [ 42] [ 15] [APTRA ] +09:05:50 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:05:50 [ 49] [ 3] [418] +09:05:50 [ 52] [ 16] [1CA750029A015FB8] +09:05:50 ============================================================================ +09:05:50 + + +waiting on router queue for slot.... +09:05:50 Sending to : +09:05:50 ============================================================================ +09:05:50 Sending to : +09:05:50 ============================================================================ +09:05:50 ============================================================================ +09:05:50 Slot Id : <218> +09:05:50 Transaction Type : REQUEST +09:05:50 Received From : +09:05:50 ============================================================================ +09:05:50 FNo. Len. Field Value +09:05:50 ============================================================================ +09:05:50 [ 1] [ 4] [0200] +09:05:50 [ 2] [ 16] [6213545000469894] +09:05:50 [ 3] [ 6] [310000] +09:05:50 [ 4] [ 12] [000000000000] +09:05:50 [ 7] [ 10] [0320091337] +09:05:50 [ 11] [ 6] [009268] +09:05:50 [ 12] [ 6] [091337] +09:05:50 [ 13] [ 4] [0320] +09:05:50 [ 14] [ 4] [4912] +09:05:50 [ 15] [ 4] [0320] +09:05:50 [ 18] [ 4] [6011] +09:05:50 [ 22] [ 3] [900] +09:05:50 [ 25] [ 2] [02] +09:05:50 [ 28] [ 9] [000000000] +09:05:50 [ 32] [ 6] [220699] +09:05:50 [ 35] [ 32] [6213545000469894=491212016989844] +09:05:50 [ 37] [ 12] [507900213238] +09:05:50 [ 41] [ 8] [05000100] +09:05:50 [ 42] [ 15] [APTRA ] +09:05:50 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:05:50 [ 49] [ 3] [418] +09:05:50 [ 52] [ 16] [1CA750029A015FB8] +09:05:50 ============================================================================ +09:05:50 + + +waiting on router queue for slot.... +09:05:50 Sending to : +09:05:50 ============================================================================ +09:05:50 ============================================================================ +09:05:50 Slot Id : <218> +09:05:50 Transaction Type : REQUEST +09:05:50 Received From : +09:05:50 ============================================================================ +09:05:50 FNo. Len. Field Value +09:05:50 ============================================================================ +09:05:50 [ 1] [ 4] [0200] +09:05:50 [ 2] [ 16] [6213545000469894] +09:05:50 [ 3] [ 6] [310000] +09:05:50 [ 4] [ 12] [000000000000] +09:05:50 [ 7] [ 10] [0320091337] +09:05:50 [ 11] [ 6] [009268] +09:05:50 [ 12] [ 6] [091337] +09:05:50 [ 13] [ 4] [0320] +09:05:50 [ 14] [ 4] [4912] +09:05:50 [ 15] [ 4] [0320] +09:05:50 [ 18] [ 4] [6011] +09:05:50 [ 22] [ 3] [900] +09:05:50 [ 25] [ 2] [02] +09:05:50 [ 28] [ 9] [000000000] +09:05:50 [ 32] [ 6] [220699] +09:05:50 [ 35] [ 32] [6213545000469894=491212016989844] +09:05:50 [ 37] [ 12] [507900213238] +09:05:50 [ 41] [ 8] [05000100] +09:05:50 [ 42] [ 15] [APTRA ] +09:05:50 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:05:50 [ 49] [ 3] [418] +09:05:50 [ 52] [ 16] [42C7F9401CF35ADB] +09:05:50 ============================================================================ +09:05:50 + + +waiting on router queue for slot.... +09:05:50 Sending to : <0> +09:05:50 ============================================================================ +09:05:51 ============================================================================ +09:05:51 Slot Id : <218> +09:05:51 Transaction Type : RESPONSE +09:05:51 Received From : +09:05:51 ============================================================================ +09:05:51 FNo. Len. Field Value +09:05:51 ============================================================================ +09:05:51 [ 1] [ 4] [0210] +09:05:51 [ 2] [ 16] [6213545000469894] +09:05:51 [ 3] [ 6] [310000] +09:05:51 [ 4] [ 12] [000000000000] +09:05:51 [ 7] [ 10] [0320091337] +09:05:51 [ 11] [ 6] [009268] +09:05:51 [ 12] [ 6] [091337] +09:05:51 [ 13] [ 4] [0320] +09:05:51 [ 15] [ 4] [0320] +09:05:51 [ 18] [ 4] [6011] +09:05:51 [ 32] [ 6] [220699] +09:05:51 [ 35] [ 32] [6213545000469894=491212016989844] +09:05:51 [ 37] [ 12] [507900213238] +09:05:51 [ 38] [ 6] [969591] +09:05:51 [ 39] [ 2] [00] +09:05:51 [ 41] [ 8] [05000100] +09:05:51 [ 49] [ 3] [418] +09:05:51 [ 54] [ 40] [0001418C0001945555610002418C000194555561] +09:05:51 ============================================================================ +09:05:51 Sending to : +09:05:51 ============================================================================ +09:05:51 + + +waiting on router queue for slot.... +09:05:52 ============================================================================ +09:05:52 Slot Id : <274> +09:05:52 Transaction Type : REQUEST +09:05:52 Received From : +09:05:52 ============================================================================ +09:05:52 FNo. Len. Field Value +09:05:52 ============================================================================ +09:05:52 [ 1] [ 4] [0800] +09:05:52 [ 7] [ 10] [0320020500] +09:05:52 [ 11] [ 6] [155547] +09:05:52 [ 70] [ 3] [301] +09:05:52 ============================================================================ +09:05:52 + + +waiting on router queue for slot.... +09:05:52 Sending to : +09:05:52 ============================================================================ +09:05:52 ============================================================================ +09:05:52 Slot Id : <274> +09:05:52 Transaction Type : RESPONSE +09:05:52 Received From : +09:05:52 ============================================================================ +09:05:52 FNo. Len. Field Value +09:05:52 ============================================================================ +09:05:52 [ 1] [ 4] [0810] +09:05:52 [ 7] [ 10] [0320020500] +09:05:52 [ 11] [ 6] [155547] +09:05:52 [ 39] [ 2] [00] +09:05:52 [ 70] [ 3] [301] +09:05:52 ============================================================================ +09:05:52 Calculate Source COMM Id = 2 +09:05:52 ============================================================================ +09:05:52 + + +waiting on router queue for slot.... +09:05:52 ============================================================================ +09:05:52 Slot Id : <218> +09:05:52 Transaction Type : RESPONSE +09:05:52 Received From : +09:05:52 ============================================================================ +09:05:52 FNo. Len. Field Value +09:05:52 ============================================================================ +09:05:52 [ 1] [ 4] [0210] +09:05:52 [ 2] [ 16] [6213545000469894] +09:05:52 [ 3] [ 6] [310000] +09:05:52 [ 4] [ 12] [000000000000] +09:05:52 [ 7] [ 10] [0320091337] +09:05:52 [ 11] [ 6] [009268] +09:05:52 [ 12] [ 6] [091337] +09:05:52 [ 13] [ 4] [0320] +09:05:52 [ 15] [ 4] [0320] +09:05:52 [ 18] [ 4] [6011] +09:05:52 [ 32] [ 6] [220699] +09:05:52 [ 35] [ 32] [6213545000469894=491212016989844] +09:05:52 [ 37] [ 12] [507900213238] +09:05:52 [ 38] [ 6] [969591] +09:05:52 [ 39] [ 2] [00] +09:05:52 [ 41] [ 8] [05000100] +09:05:52 [ 49] [ 3] [418] +09:05:52 [ 54] [ 40] [0001418C0001945555610002418C000194555561] +09:05:52 ============================================================================ +09:05:52 Calculate Source COMM Id = 1 +09:05:52 ============================================================================ +09:05:52 + + +waiting on router queue for slot.... +09:06:03 ============================================================================ +09:06:03 Slot Id : <231> +09:06:03 Transaction Type : REQUEST +09:06:03 Received From : +09:06:03 ============================================================================ +09:06:03 FNo. Len. Field Value +09:06:03 ============================================================================ +09:06:03 [ 1] [ 4] [0800] +09:06:03 [ 7] [ 10] [0320020511] +09:06:03 [ 11] [ 6] [155548] +09:06:03 [ 70] [ 3] [301] +09:06:03 ============================================================================ +09:06:03 + + +waiting on router queue for slot.... +09:06:03 Sending to : +09:06:03 ============================================================================ +09:06:03 ============================================================================ +09:06:03 Slot Id : <231> +09:06:03 Transaction Type : RESPONSE +09:06:03 Received From : +09:06:03 ============================================================================ +09:06:03 FNo. Len. Field Value +09:06:03 ============================================================================ +09:06:03 [ 1] [ 4] [0810] +09:06:03 [ 7] [ 10] [0320020511] +09:06:03 [ 11] [ 6] [155548] +09:06:03 [ 39] [ 2] [00] +09:06:03 [ 70] [ 3] [301] +09:06:03 ============================================================================ +09:06:03 Calculate Source COMM Id = 2 +09:06:03 ============================================================================ +09:06:03 + + +waiting on router queue for slot.... +09:06:06 ============================================================================ +09:06:06 Slot Id : <279> +09:06:06 Transaction Type : REQUEST +09:06:06 Received From : +09:06:06 ============================================================================ +09:06:06 FNo. Len. Field Value +09:06:06 ============================================================================ +09:06:06 [ 1] [ 4] [0800] +09:06:06 [ 7] [ 10] [0320161756] +09:06:06 [ 11] [ 6] [091756] +09:06:06 [ 37] [ 12] [57909091756] +09:06:06 [ 70] [ 3] [301] +09:06:06 ============================================================================ +09:06:06 + + +waiting on router queue for slot.... +09:06:06 Sending to : +09:06:06 ============================================================================ +09:06:06 ============================================================================ +09:06:06 Slot Id : <279> +09:06:06 Transaction Type : RESPONSE +09:06:06 Received From : +09:06:06 ============================================================================ +09:06:06 FNo. Len. Field Value +09:06:06 ============================================================================ +09:06:06 [ 1] [ 4] [0810] +09:06:06 [ 7] [ 10] [0320161756] +09:06:06 [ 11] [ 6] [091756] +09:06:06 [ 37] [ 12] [579090917560] +09:06:06 [ 39] [ 2] [00] +09:06:06 [ 70] [ 3] [810] +09:06:06 ============================================================================ +09:06:06 Calculate Source COMM Id = 6 +09:06:06 ============================================================================ +09:06:06 + + +waiting on router queue for slot.... +09:06:08 ============================================================================ +09:06:08 Slot Id : <264> +09:06:08 Transaction Type : REQUEST +09:06:08 Received From : +09:06:08 ============================================================================ +09:06:08 FNo. Len. Field Value +09:06:08 ============================================================================ +09:06:08 [ 1] [ 4] [0200] +09:06:08 [ 2] [ 16] [1808930500014303] +09:06:08 [ 3] [ 6] [010000] +09:06:08 [ 4] [ 12] [000010000000] +09:06:08 [ 7] [ 10] [0320090400] +09:06:08 [ 11] [ 6] [934635] +09:06:08 [ 12] [ 6] [090400] +09:06:08 [ 13] [ 4] [0320] +09:06:08 [ 15] [ 4] [0320] +09:06:08 [ 18] [ 4] [6011] +09:06:08 [ 19] [ 3] [418] +09:06:08 [ 22] [ 3] [021] +09:06:08 [ 25] [ 2] [01] +09:06:08 [ 28] [ 9] [D00002000] +09:06:08 [ 32] [ 6] [668899] +09:06:08 [ 35] [ 27] [1808930500014303=1803500022] +09:06:08 [ 37] [ 12] [507900844846] +09:06:08 [ 41] [ 8] [03015003] +09:06:08 [ 42] [ 15] [APT ] +09:06:08 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:06:08 [ 49] [ 3] [418] +09:06:08 [ 52] [ 16] [10FFC6C354F7AB45] +09:06:08 ============================================================================ +09:06:08 + + +waiting on router queue for slot.... +09:06:08 Sending to : +09:06:08 ============================================================================ +09:06:08 Sending to : +09:06:08 ============================================================================ +09:06:08 ============================================================================ +09:06:08 Slot Id : <264> +09:06:08 Transaction Type : REQUEST +09:06:08 Received From : +09:06:08 ============================================================================ +09:06:08 FNo. Len. Field Value +09:06:08 ============================================================================ +09:06:08 [ 1] [ 4] [0200] +09:06:08 [ 2] [ 16] [1808930500014303] +09:06:08 [ 3] [ 6] [010000] +09:06:08 [ 4] [ 12] [000010000000] +09:06:08 [ 7] [ 10] [0320090400] +09:06:08 [ 11] [ 6] [934635] +09:06:08 [ 12] [ 6] [090400] +09:06:08 [ 13] [ 4] [0320] +09:06:08 [ 15] [ 4] [0320] +09:06:08 [ 18] [ 4] [6011] +09:06:08 [ 19] [ 3] [418] +09:06:08 [ 22] [ 3] [021] +09:06:08 [ 25] [ 2] [01] +09:06:08 [ 28] [ 9] [D00002000] +09:06:08 [ 32] [ 6] [668899] +09:06:08 [ 35] [ 27] [1808930500014303=1803500022] +09:06:08 [ 37] [ 12] [507900844846] +09:06:08 [ 41] [ 8] [03015003] +09:06:08 [ 42] [ 15] [APT ] +09:06:08 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:06:08 [ 49] [ 3] [418] +09:06:08 [ 52] [ 16] [10FFC6C354F7AB45] +09:06:08 ============================================================================ +09:06:08 + + +waiting on router queue for slot.... +09:06:08 Sending to : +09:06:08 ============================================================================ +09:06:08 ============================================================================ +09:06:08 Slot Id : <264> +09:06:08 Transaction Type : REQUEST +09:06:08 Received From : +09:06:08 ============================================================================ +09:06:08 FNo. Len. Field Value +09:06:08 ============================================================================ +09:06:08 [ 1] [ 4] [0200] +09:06:08 [ 2] [ 16] [1808930500014303] +09:06:08 [ 3] [ 6] [010000] +09:06:08 [ 4] [ 12] [000010000000] +09:06:08 [ 7] [ 10] [0320090400] +09:06:09 [ 11] [ 6] [934635] +09:06:09 [ 12] [ 6] [090400] +09:06:09 [ 13] [ 4] [0320] +09:06:09 [ 15] [ 4] [0320] +09:06:09 [ 18] [ 4] [6011] +09:06:09 [ 19] [ 3] [418] +09:06:09 [ 22] [ 3] [021] +09:06:09 [ 25] [ 2] [01] +09:06:09 [ 28] [ 9] [D00002000] +09:06:09 [ 32] [ 6] [668899] +09:06:09 [ 35] [ 27] [1808930500014303=1803500022] +09:06:09 [ 37] [ 12] [507900844846] +09:06:09 [ 41] [ 8] [03015003] +09:06:09 [ 42] [ 15] [APT ] +09:06:09 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:06:09 [ 49] [ 3] [418] +09:06:09 [ 52] [ 16] [08F610331435960F] +09:06:09 ============================================================================ +09:06:09 + + +waiting on router queue for slot.... +09:06:09 Sending to : <2> +09:06:09 ============================================================================ +09:06:12 ============================================================================ +09:06:12 Slot Id : <239> +09:06:12 Transaction Type : REQUEST +09:06:12 Received From : +09:06:12 ============================================================================ +09:06:12 FNo. Len. Field Value +09:06:12 ============================================================================ +09:06:12 [ 1] [ 4] [0800] +09:06:12 [ 2] [ 5] [02531] +09:06:12 [ 3] [ 6] [579098] +09:06:12 [ 7] [ 10] [0320020612] +09:06:12 [ 11] [ 6] [806940] +09:06:12 [ 15] [ 10] [0320020612] +09:06:12 [ 37] [ 11] [57909806940] +09:06:12 [ 70] [ 3] [001] +09:06:12 ============================================================================ +09:06:12 + + +waiting on router queue for slot.... +09:06:12 ============================================================================ +09:06:12 Slot Id : <239> +09:06:12 Transaction Type : RESPONSE +09:06:12 Received From : +09:06:12 ============================================================================ +09:06:12 FNo. Len. Field Value +09:06:12 ============================================================================ +09:06:12 [ 1] [ 4] [0810] +09:06:12 [ 7] [ 10] [0320020612] +09:06:12 [ 11] [ 6] [806940] +09:06:12 [ 15] [ 4] [0320] +09:06:12 [ 37] [ 12] [57909806940] +09:06:12 [ 39] [ 2] [00] +09:06:12 [ 70] [ 3] [001] +09:06:12 ============================================================================ +09:06:12 Sending to : +09:06:12 ============================================================================ +09:06:12 + + +waiting on router queue for slot.... +09:06:15 ============================================================================ +09:06:15 Slot Id : <264> +09:06:15 Transaction Type : RESPONSE +09:06:15 Received From : +09:06:15 ============================================================================ +09:06:15 FNo. Len. Field Value +09:06:15 ============================================================================ +09:06:15 [ 1] [ 4] [0210] +09:06:15 [ 2] [ 16] [1808930500014303] +09:06:15 [ 3] [ 6] [010000] +09:06:15 [ 4] [ 12] [000010000000] +09:06:15 [ 6] [ 12] [000010000000] +09:06:15 [ 7] [ 10] [0320090400] +09:06:15 [ 11] [ 6] [934635] +09:06:15 [ 12] [ 6] [090400] +09:06:15 [ 13] [ 4] [0320] +09:06:15 [ 18] [ 4] [6011] +09:06:15 [ 19] [ 3] [418] +09:06:15 [ 22] [ 3] [021] +09:06:15 [ 32] [ 6] [668899] +09:06:15 [ 35] [ 27] [1808930500014303=1803500022] +09:06:15 [ 37] [ 12] [507900844846] +09:06:15 [ 38] [ 6] [934635] +09:06:15 [ 39] [ 2] [00] +09:06:15 [ 41] [ 8] [03015003] +09:06:15 [ 49] [ 3] [418] +09:06:15 [ 52] [ 16] [08F610331435960F] +09:06:15 [ 54] [ 20] [1001418C000008184200] +09:06:15 ============================================================================ +09:06:15 Sending to : +09:06:15 ============================================================================ +09:06:15 + + +waiting on router queue for slot.... +09:06:16 ============================================================================ +09:06:16 Slot Id : <264> +09:06:16 Transaction Type : RESPONSE +09:06:16 Received From : +09:06:16 ============================================================================ +09:06:16 FNo. Len. Field Value +09:06:16 ============================================================================ +09:06:16 [ 1] [ 4] [0210] +09:06:16 [ 2] [ 16] [1808930500014303] +09:06:16 [ 3] [ 6] [010000] +09:06:16 [ 4] [ 12] [000010000000] +09:06:16 [ 6] [ 12] [000010000000] +09:06:16 [ 7] [ 10] [0320090400] +09:06:16 [ 11] [ 6] [934635] +09:06:16 [ 12] [ 6] [090400] +09:06:16 [ 13] [ 4] [0320] +09:06:16 [ 18] [ 4] [6011] +09:06:16 [ 19] [ 3] [418] +09:06:16 [ 22] [ 3] [021] +09:06:16 [ 32] [ 6] [668899] +09:06:16 [ 35] [ 27] [1808930500014303=1803500022] +09:06:16 [ 37] [ 12] [507900844846] +09:06:16 [ 38] [ 6] [934635] +09:06:16 [ 39] [ 2] [00] +09:06:16 [ 41] [ 8] [03015003] +09:06:16 [ 49] [ 3] [418] +09:06:16 [ 52] [ 16] [08F610331435960F] +09:06:16 [ 54] [ 20] [1001418C000008184200] +09:06:16 ============================================================================ +09:06:16 Calculate Source COMM Id = 4 +09:06:16 ============================================================================ +09:06:16 + + +waiting on router queue for slot.... +09:06:20 ============================================================================ +09:06:20 Slot Id : <254> +09:06:20 Transaction Type : REQUEST +09:06:20 Received From : +09:06:20 ============================================================================ +09:06:20 FNo. Len. Field Value +09:06:20 ============================================================================ +09:06:20 [ 1] [ 4] [0800] +09:06:20 [ 7] [ 10] [0320020412] +09:06:20 [ 11] [ 6] [063189] +09:06:20 [ 37] [ 12] [57909063189] +09:06:20 [ 70] [ 3] [301] +09:06:20 ============================================================================ +09:06:20 + + +waiting on router queue for slot.... +09:06:20 Sending to : +09:06:20 ============================================================================ +09:06:20 ============================================================================ +09:06:20 Slot Id : <254> +09:06:20 Transaction Type : RESPONSE +09:06:20 Received From : +09:06:20 ============================================================================ +09:06:20 FNo. Len. Field Value +09:06:20 ============================================================================ +09:06:20 [ 1] [ 4] [0810] +09:06:20 [ 7] [ 10] [0320020412] +09:06:20 [ 11] [ 6] [063189] +09:06:20 [ 37] [ 12] [579090631890] +09:06:20 [ 39] [ 2] [00] +09:06:20 [ 70] [ 3] [810] +09:06:20 ============================================================================ +09:06:20 Calculate Source COMM Id = 4 +09:06:20 ============================================================================ +09:06:20 + + +waiting on router queue for slot.... +09:06:25 ============================================================================ +09:06:25 Slot Id : <273> +09:06:25 Transaction Type : REQUEST +09:06:25 Received From : +09:06:25 ============================================================================ +09:06:25 FNo. Len. Field Value +09:06:25 ============================================================================ +09:06:25 [ 1] [ 4] [0800] +09:06:25 [ 7] [ 10] [0320020532] +09:06:25 [ 11] [ 6] [155549] +09:06:25 [ 70] [ 3] [301] +09:06:25 ============================================================================ +09:06:25 + + +waiting on router queue for slot.... +09:06:25 Sending to : +09:06:25 ============================================================================ +09:06:25 ============================================================================ +09:06:25 Slot Id : <273> +09:06:25 Transaction Type : RESPONSE +09:06:25 Received From : +09:06:25 ============================================================================ +09:06:25 FNo. Len. Field Value +09:06:25 ============================================================================ +09:06:25 [ 1] [ 4] [0810] +09:06:25 [ 7] [ 10] [0320020532] +09:06:25 [ 11] [ 6] [155549] +09:06:25 [ 39] [ 2] [00] +09:06:25 [ 70] [ 3] [301] +09:06:25 ============================================================================ +09:06:25 Calculate Source COMM Id = 2 +09:06:25 ============================================================================ +09:06:25 + + +waiting on router queue for slot.... +09:06:28 ============================================================================ +09:06:28 Slot Id : <266> +09:06:28 Transaction Type : REQUEST +09:06:28 Received From : +09:06:28 ============================================================================ +09:06:28 FNo. Len. Field Value +09:06:28 ============================================================================ +09:06:28 [ 1] [ 4] [0200] +09:06:28 [ 2] [ 16] [6213545000469894] +09:06:28 [ 3] [ 6] [010000] +09:06:28 [ 4] [ 12] [000100000000] +09:06:28 [ 7] [ 10] [0320091415] +09:06:28 [ 11] [ 6] [009269] +09:06:28 [ 12] [ 6] [091415] +09:06:28 [ 13] [ 4] [0320] +09:06:28 [ 14] [ 4] [4912] +09:06:28 [ 15] [ 4] [0320] +09:06:28 [ 18] [ 4] [6011] +09:06:28 [ 22] [ 3] [900] +09:06:28 [ 25] [ 2] [02] +09:06:28 [ 28] [ 9] [D00002000] +09:06:28 [ 32] [ 6] [220699] +09:06:28 [ 35] [ 32] [6213545000469894=491212016989844] +09:06:28 [ 37] [ 12] [507900213239] +09:06:28 [ 41] [ 8] [05000100] +09:06:28 [ 42] [ 15] [APTRA ] +09:06:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:06:28 [ 49] [ 3] [418] +09:06:28 [ 52] [ 16] [1CA750029A015FB8] +09:06:28 ============================================================================ +09:06:28 + + +waiting on router queue for slot.... +09:06:28 Sending to : +09:06:28 ============================================================================ +09:06:28 Sending to : +09:06:28 ============================================================================ +09:06:28 ============================================================================ +09:06:28 Slot Id : <266> +09:06:28 Transaction Type : REQUEST +09:06:28 Received From : +09:06:28 ============================================================================ +09:06:28 FNo. Len. Field Value +09:06:28 ============================================================================ +09:06:28 [ 1] [ 4] [0200] +09:06:28 [ 2] [ 16] [6213545000469894] +09:06:28 [ 3] [ 6] [010000] +09:06:28 [ 4] [ 12] [000100000000] +09:06:28 [ 7] [ 10] [0320091415] +09:06:28 [ 11] [ 6] [009269] +09:06:28 [ 12] [ 6] [091415] +09:06:28 [ 13] [ 4] [0320] +09:06:28 [ 14] [ 4] [4912] +09:06:28 [ 15] [ 4] [0320] +09:06:28 [ 18] [ 4] [6011] +09:06:28 [ 22] [ 3] [900] +09:06:28 [ 25] [ 2] [02] +09:06:28 [ 28] [ 9] [D00002000] +09:06:28 [ 32] [ 6] [220699] +09:06:28 [ 35] [ 32] [6213545000469894=491212016989844] +09:06:28 [ 37] [ 12] [507900213239] +09:06:28 [ 41] [ 8] [05000100] +09:06:28 [ 42] [ 15] [APTRA ] +09:06:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:06:28 [ 49] [ 3] [418] +09:06:28 [ 52] [ 16] [1CA750029A015FB8] +09:06:28 ============================================================================ +09:06:28 + + +waiting on router queue for slot.... +09:06:28 Sending to : +09:06:28 ============================================================================ +09:06:28 ============================================================================ +09:06:28 Slot Id : <266> +09:06:28 Transaction Type : REQUEST +09:06:28 Received From : +09:06:28 ============================================================================ +09:06:28 FNo. Len. Field Value +09:06:28 ============================================================================ +09:06:28 [ 1] [ 4] [0200] +09:06:28 [ 2] [ 16] [6213545000469894] +09:06:28 [ 3] [ 6] [010000] +09:06:28 [ 4] [ 12] [000100000000] +09:06:28 [ 7] [ 10] [0320091415] +09:06:28 [ 11] [ 6] [009269] +09:06:28 [ 12] [ 6] [091415] +09:06:28 [ 13] [ 4] [0320] +09:06:28 [ 14] [ 4] [4912] +09:06:28 [ 15] [ 4] [0320] +09:06:28 [ 18] [ 4] [6011] +09:06:28 [ 22] [ 3] [900] +09:06:28 [ 25] [ 2] [02] +09:06:28 [ 28] [ 9] [D00002000] +09:06:28 [ 32] [ 6] [220699] +09:06:28 [ 35] [ 32] [6213545000469894=491212016989844] +09:06:28 [ 37] [ 12] [507900213239] +09:06:28 [ 41] [ 8] [05000100] +09:06:28 [ 42] [ 15] [APTRA ] +09:06:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:06:28 [ 49] [ 3] [418] +09:06:28 [ 52] [ 16] [42C7F9401CF35ADB] +09:06:28 ============================================================================ +09:06:28 + + +waiting on router queue for slot.... +09:06:28 Sending to : <0> +09:06:28 ============================================================================ +09:06:29 ============================================================================ +09:06:29 Slot Id : <266> +09:06:29 Transaction Type : RESPONSE +09:06:29 Received From : +09:06:29 ============================================================================ +09:06:29 FNo. Len. Field Value +09:06:29 ============================================================================ +09:06:29 [ 1] [ 4] [0210] +09:06:29 [ 2] [ 16] [6213545000469894] +09:06:29 [ 3] [ 6] [010000] +09:06:29 [ 4] [ 12] [000100000000] +09:06:29 [ 7] [ 10] [0320091415] +09:06:29 [ 11] [ 6] [009269] +09:06:29 [ 12] [ 6] [091415] +09:06:29 [ 13] [ 4] [0320] +09:06:29 [ 15] [ 4] [0320] +09:06:29 [ 18] [ 4] [6011] +09:06:29 [ 32] [ 6] [220699] +09:06:29 [ 35] [ 32] [6213545000469894=491212016989844] +09:06:29 [ 37] [ 12] [507900213239] +09:06:29 [ 38] [ 6] [878879] +09:06:29 [ 39] [ 2] [00] +09:06:29 [ 41] [ 8] [05000100] +09:06:29 [ 49] [ 3] [418] +09:06:29 [ 54] [ 40] [0001418C0000943555610002418C000094355561] +09:06:29 ============================================================================ +09:06:29 Sending to : +09:06:29 ============================================================================ +09:06:29 + + +waiting on router queue for slot.... +09:06:30 ============================================================================ +09:06:30 Slot Id : <266> +09:06:30 Transaction Type : RESPONSE +09:06:30 Received From : +09:06:30 ============================================================================ +09:06:30 FNo. Len. Field Value +09:06:30 ============================================================================ +09:06:30 [ 1] [ 4] [0210] +09:06:30 [ 2] [ 16] [6213545000469894] +09:06:30 [ 3] [ 6] [010000] +09:06:30 [ 4] [ 12] [000100000000] +09:06:30 [ 7] [ 10] [0320091415] +09:06:30 [ 11] [ 6] [009269] +09:06:30 [ 12] [ 6] [091415] +09:06:30 [ 13] [ 4] [0320] +09:06:30 [ 15] [ 4] [0320] +09:06:30 [ 18] [ 4] [6011] +09:06:30 [ 32] [ 6] [220699] +09:06:30 [ 35] [ 32] [6213545000469894=491212016989844] +09:06:30 [ 37] [ 12] [507900213239] +09:06:30 [ 38] [ 6] [878879] +09:06:30 [ 39] [ 2] [00] +09:06:30 [ 41] [ 8] [05000100] +09:06:30 [ 49] [ 3] [418] +09:06:30 [ 54] [ 40] [0001418C0000943555610002418C000094355561] +09:06:30 ============================================================================ +09:06:30 Calculate Source COMM Id = 1 +09:06:30 ============================================================================ +09:06:30 + + +waiting on router queue for slot.... +09:06:32 ============================================================================ +09:06:32 Slot Id : <272> +09:06:32 Transaction Type : REQUEST +09:06:32 Received From : +09:06:32 ============================================================================ +09:06:32 FNo. Len. Field Value +09:06:32 ============================================================================ +09:06:32 [ 1] [ 4] [0200] +09:06:32 [ 2] [ 16] [6213545000902142] +09:06:32 [ 3] [ 6] [010000] +09:06:32 [ 4] [ 12] [000010000000] +09:06:32 [ 7] [ 10] [0320020538] +09:06:32 [ 11] [ 6] [267381] +09:06:32 [ 12] [ 6] [090538] +09:06:32 [ 13] [ 4] [0320] +09:06:32 [ 14] [ 4] [4912] +09:06:32 [ 15] [ 4] [0320] +09:06:32 [ 18] [ 4] [6011] +09:06:32 [ 19] [ 3] [418] +09:06:32 [ 22] [ 3] [021] +09:06:32 [ 25] [ 2] [01] +09:06:32 [ 28] [ 9] [D00002000] +09:06:32 [ 32] [ 6] [180893] +09:06:32 [ 35] [ 32] [6213545000902142=491212010214328] +09:06:32 [ 37] [ 12] [507902267381] +09:06:32 [ 41] [ 8] [0111BLBR] +09:06:32 [ 42] [ 15] [999999 ] +09:06:32 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:06:32 [ 49] [ 3] [418] +09:06:32 [ 52] [ 16] [4DE4A5FECD9BF2FE] +09:06:32 ============================================================================ +09:06:32 + + +waiting on router queue for slot.... +09:06:32 Sending to : +09:06:32 ============================================================================ +09:06:32 Sending to : +09:06:32 ============================================================================ +09:06:32 ============================================================================ +09:06:32 Slot Id : <272> +09:06:32 Transaction Type : REQUEST +09:06:32 Received From : +09:06:32 ============================================================================ +09:06:32 FNo. Len. Field Value +09:06:32 ============================================================================ +09:06:32 [ 1] [ 4] [0200] +09:06:32 [ 2] [ 16] [6213545000902142] +09:06:32 [ 3] [ 6] [010000] +09:06:32 [ 4] [ 12] [000010000000] +09:06:32 [ 7] [ 10] [0320020538] +09:06:32 [ 11] [ 6] [267381] +09:06:32 [ 12] [ 6] [090538] +09:06:32 [ 13] [ 4] [0320] +09:06:32 [ 14] [ 4] [4912] +09:06:32 [ 15] [ 4] [0320] +09:06:32 [ 18] [ 4] [6011] +09:06:32 [ 19] [ 3] [418] +09:06:32 [ 22] [ 3] [021] +09:06:32 [ 25] [ 2] [01] +09:06:32 [ 28] [ 9] [D00002000] +09:06:32 [ 32] [ 6] [180893] +09:06:32 [ 35] [ 32] [6213545000902142=491212010214328] +09:06:32 [ 37] [ 12] [507902267381] +09:06:32 [ 41] [ 8] [0111BLBR] +09:06:32 [ 42] [ 15] [999999 ] +09:06:32 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:06:32 [ 49] [ 3] [418] +09:06:32 [ 52] [ 16] [4DE4A5FECD9BF2FE] +09:06:32 ============================================================================ +09:06:32 + + +waiting on router queue for slot.... +09:06:32 Sending to : +09:06:32 ============================================================================ +09:06:32 ============================================================================ +09:06:32 Slot Id : <272> +09:06:32 Transaction Type : REQUEST +09:06:32 Received From : +09:06:32 ============================================================================ +09:06:32 FNo. Len. Field Value +09:06:32 ============================================================================ +09:06:32 [ 1] [ 4] [0200] +09:06:32 [ 2] [ 16] [6213545000902142] +09:06:32 [ 3] [ 6] [010000] +09:06:32 [ 4] [ 12] [000010000000] +09:06:32 [ 7] [ 10] [0320020538] +09:06:32 [ 11] [ 6] [267381] +09:06:32 [ 12] [ 6] [090538] +09:06:32 [ 13] [ 4] [0320] +09:06:32 [ 14] [ 4] [4912] +09:06:32 [ 15] [ 4] [0320] +09:06:32 [ 18] [ 4] [6011] +09:06:32 [ 19] [ 3] [418] +09:06:32 [ 22] [ 3] [021] +09:06:32 [ 25] [ 2] [01] +09:06:32 [ 28] [ 9] [D00002000] +09:06:32 [ 32] [ 6] [180893] +09:06:32 [ 35] [ 32] [6213545000902142=491212010214328] +09:06:32 [ 37] [ 12] [507902267381] +09:06:32 [ 41] [ 8] [0111BLBR] +09:06:32 [ 42] [ 15] [999999 ] +09:06:32 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:06:32 [ 49] [ 3] [418] +09:06:32 [ 52] [ 16] [FC2F19C8E15D2BF0] +09:06:32 ============================================================================ +09:06:32 + + +waiting on router queue for slot.... +09:06:32 Sending to : <0> +09:06:32 ============================================================================ +09:06:34 ============================================================================ +09:06:34 Slot Id : <272> +09:06:34 Transaction Type : RESPONSE +09:06:34 Received From : +09:06:34 ============================================================================ +09:06:34 FNo. Len. Field Value +09:06:34 ============================================================================ +09:06:34 [ 1] [ 4] [0210] +09:06:34 [ 2] [ 16] [6213545000902142] +09:06:34 [ 3] [ 6] [010000] +09:06:34 [ 4] [ 12] [000010000000] +09:06:34 [ 7] [ 10] [0320020538] +09:06:34 [ 11] [ 6] [267381] +09:06:34 [ 12] [ 6] [090538] +09:06:34 [ 13] [ 4] [0320] +09:06:34 [ 15] [ 4] [0320] +09:06:34 [ 18] [ 4] [6011] +09:06:34 [ 19] [ 3] [418] +09:06:34 [ 32] [ 6] [180893] +09:06:34 [ 35] [ 32] [6213545000902142=491212010214328] +09:06:34 [ 37] [ 12] [507902267381] +09:06:34 [ 38] [ 6] [648352] +09:06:34 [ 39] [ 2] [00] +09:06:34 [ 41] [ 8] [0111BLBR] +09:06:34 [ 49] [ 3] [418] +09:06:34 [ 54] [ 40] [0001418C0001548984470002418C000154898447] +09:06:34 ============================================================================ +09:06:34 Sending to : +09:06:34 ============================================================================ +09:06:34 + + +waiting on router queue for slot.... +09:06:35 ============================================================================ +09:06:35 Slot Id : <272> +09:06:35 Transaction Type : RESPONSE +09:06:35 Received From : +09:06:35 ============================================================================ +09:06:35 FNo. Len. Field Value +09:06:35 ============================================================================ +09:06:35 [ 1] [ 4] [0210] +09:06:35 [ 2] [ 16] [6213545000902142] +09:06:35 [ 3] [ 6] [010000] +09:06:35 [ 4] [ 12] [000010000000] +09:06:35 [ 7] [ 10] [0320020538] +09:06:35 [ 11] [ 6] [267381] +09:06:35 [ 12] [ 6] [090538] +09:06:35 [ 13] [ 4] [0320] +09:06:35 [ 15] [ 4] [0320] +09:06:35 [ 18] [ 4] [6011] +09:06:35 [ 19] [ 3] [418] +09:06:35 [ 32] [ 6] [180893] +09:06:35 [ 35] [ 32] [6213545000902142=491212010214328] +09:06:35 [ 37] [ 12] [507902267381] +09:06:35 [ 38] [ 6] [648352] +09:06:35 [ 39] [ 2] [00] +09:06:35 [ 41] [ 8] [0111BLBR] +09:06:35 [ 49] [ 3] [418] +09:06:35 [ 54] [ 40] [0001418C0001548984470002418C000154898447] +09:06:35 ============================================================================ +09:06:35 Calculate Source COMM Id = 2 +09:06:35 ============================================================================ +09:06:35 + + +waiting on router queue for slot.... +09:06:51 ============================================================================ +09:06:51 Slot Id : <282> +09:06:51 Transaction Type : REQUEST +09:06:51 Received From : +09:06:51 ============================================================================ +09:06:51 FNo. Len. Field Value +09:06:51 ============================================================================ +09:06:51 [ 1] [ 4] [0800] +09:06:51 [ 7] [ 10] [0320020559] +09:06:51 [ 11] [ 6] [155550] +09:06:51 [ 70] [ 3] [301] +09:06:51 ============================================================================ +09:06:51 + + +waiting on router queue for slot.... +09:06:51 Sending to : +09:06:51 ============================================================================ +09:06:51 ============================================================================ +09:06:51 Slot Id : <282> +09:06:51 Transaction Type : RESPONSE +09:06:51 Received From : +09:06:51 ============================================================================ +09:06:51 FNo. Len. Field Value +09:06:51 ============================================================================ +09:06:51 [ 1] [ 4] [0810] +09:06:51 [ 7] [ 10] [0320020559] +09:06:51 [ 11] [ 6] [155550] +09:06:51 [ 39] [ 2] [00] +09:06:51 [ 70] [ 3] [301] +09:06:51 ============================================================================ +09:06:51 Calculate Source COMM Id = 2 +09:06:51 ============================================================================ +09:06:51 + + +waiting on router queue for slot.... +09:07:01 ============================================================================ +09:07:01 Slot Id : <241> +09:07:01 Transaction Type : REQUEST +09:07:01 Received From : +09:07:01 ============================================================================ +09:07:01 FNo. Len. Field Value +09:07:01 ============================================================================ +09:07:01 [ 1] [ 4] [0200] +09:07:01 [ 2] [ 16] [1808931300006887] +09:07:01 [ 3] [ 6] [010000] +09:07:01 [ 4] [ 12] [000100000000] +09:07:01 [ 7] [ 10] [0320090657] +09:07:01 [ 11] [ 6] [693679] +09:07:01 [ 12] [ 6] [090657] +09:07:01 [ 13] [ 4] [0320] +09:07:01 [ 15] [ 4] [0320] +09:07:01 [ 18] [ 4] [6011] +09:07:01 [ 22] [ 3] [900] +09:07:01 [ 25] [ 2] [02] +09:07:01 [ 28] [ 9] [D00002000] +09:07:01 [ 32] [ 6] [621354] +09:07:01 [ 35] [ 27] [1808931300006887=1803500202] +09:07:01 [ 37] [ 12] [507903735028] +09:07:01 [ 41] [ 8] [06002300] +09:07:01 [ 42] [ 15] [NATIVE ] +09:07:01 [ 43] [ 40] [ODX BOL Xay LAO] +09:07:01 [ 49] [ 3] [418] +09:07:01 [ 52] [ 16] [0533F325FFA15695] +09:07:01 ============================================================================ +09:07:01 + + +waiting on router queue for slot.... +09:07:01 Sending to : +09:07:01 ============================================================================ +09:07:01 Sending to : +09:07:01 ============================================================================ +09:07:01 ============================================================================ +09:07:01 Slot Id : <241> +09:07:01 Transaction Type : REQUEST +09:07:01 Received From : +09:07:01 ============================================================================ +09:07:01 FNo. Len. Field Value +09:07:01 ============================================================================ +09:07:01 [ 1] [ 4] [0200] +09:07:01 [ 2] [ 16] [1808931300006887] +09:07:01 [ 3] [ 6] [010000] +09:07:01 [ 4] [ 12] [000100000000] +09:07:01 [ 7] [ 10] [0320090657] +09:07:01 [ 11] [ 6] [693679] +09:07:01 [ 12] [ 6] [090657] +09:07:01 [ 13] [ 4] [0320] +09:07:01 [ 15] [ 4] [0320] +09:07:01 [ 18] [ 4] [6011] +09:07:01 [ 22] [ 3] [900] +09:07:01 [ 25] [ 2] [02] +09:07:01 [ 28] [ 9] [D00002000] +09:07:01 [ 32] [ 6] [621354] +09:07:01 [ 35] [ 27] [1808931300006887=1803500202] +09:07:01 [ 37] [ 12] [507903735028] +09:07:01 [ 41] [ 8] [06002300] +09:07:01 [ 42] [ 15] [NATIVE ] +09:07:01 [ 43] [ 40] [ODX BOL Xay LAO] +09:07:01 [ 49] [ 3] [418] +09:07:01 [ 52] [ 16] [0533F325FFA15695] +09:07:01 ============================================================================ +09:07:01 + + +waiting on router queue for slot.... +09:07:01 Sending to : +09:07:01 ============================================================================ +09:07:01 ============================================================================ +09:07:01 Slot Id : <241> +09:07:01 Transaction Type : REQUEST +09:07:01 Received From : +09:07:01 ============================================================================ +09:07:01 FNo. Len. Field Value +09:07:01 ============================================================================ +09:07:01 [ 1] [ 4] [0200] +09:07:01 [ 2] [ 16] [1808931300006887] +09:07:01 [ 3] [ 6] [010000] +09:07:01 [ 4] [ 12] [000100000000] +09:07:01 [ 7] [ 10] [0320090657] +09:07:01 [ 11] [ 6] [693679] +09:07:01 [ 12] [ 6] [090657] +09:07:01 [ 13] [ 4] [0320] +09:07:01 [ 15] [ 4] [0320] +09:07:01 [ 18] [ 4] [6011] +09:07:01 [ 22] [ 3] [900] +09:07:01 [ 25] [ 2] [02] +09:07:01 [ 28] [ 9] [D00002000] +09:07:01 [ 32] [ 6] [621354] +09:07:01 [ 35] [ 27] [1808931300006887=1803500202] +09:07:01 [ 37] [ 12] [507903735028] +09:07:01 [ 41] [ 8] [06002300] +09:07:01 [ 42] [ 15] [NATIVE ] +09:07:01 [ 43] [ 40] [ODX BOL Xay LAO] +09:07:01 [ 49] [ 3] [418] +09:07:01 [ 52] [ 16] [5D067547BE7C466E] +09:07:01 ============================================================================ +09:07:01 + + +waiting on router queue for slot.... +09:07:01 Sending to : <2> +09:07:01 ============================================================================ +09:07:07 ============================================================================ +09:07:07 Slot Id : <241> +09:07:07 Transaction Type : RESPONSE +09:07:07 Received From : +09:07:07 ============================================================================ +09:07:07 FNo. Len. Field Value +09:07:07 ============================================================================ +09:07:07 [ 1] [ 4] [0210] +09:07:07 [ 2] [ 16] [1808931300006887] +09:07:07 [ 3] [ 6] [010000] +09:07:07 [ 4] [ 12] [000100000000] +09:07:07 [ 6] [ 12] [000100000000] +09:07:07 [ 7] [ 10] [0320090657] +09:07:07 [ 11] [ 6] [693679] +09:07:07 [ 12] [ 6] [090657] +09:07:07 [ 13] [ 4] [0320] +09:07:07 [ 18] [ 4] [6011] +09:07:07 [ 19] [ 3] [418] +09:07:07 [ 22] [ 3] [021] +09:07:07 [ 32] [ 6] [621354] +09:07:07 [ 35] [ 27] [1808931300006887=1803500202] +09:07:07 [ 37] [ 12] [507903735028] +09:07:07 [ 38] [ 6] [693679] +09:07:07 [ 39] [ 2] [00] +09:07:07 [ 41] [ 8] [06002300] +09:07:07 [ 49] [ 3] [418] +09:07:07 [ 52] [ 16] [5D067547BE7C466E] +09:07:07 [ 54] [ 20] [1001418C000302742700] +09:07:07 ============================================================================ +09:07:07 Sending to : +09:07:07 ============================================================================ +09:07:07 + + +waiting on router queue for slot.... +09:07:09 ============================================================================ +09:07:09 Slot Id : <241> +09:07:09 Transaction Type : RESPONSE +09:07:09 Received From : +09:07:09 ============================================================================ +09:07:09 FNo. Len. Field Value +09:07:09 ============================================================================ +09:07:09 [ 1] [ 4] [0210] +09:07:09 [ 2] [ 16] [1808931300006887] +09:07:09 [ 3] [ 6] [010000] +09:07:09 [ 4] [ 12] [000100000000] +09:07:09 [ 6] [ 12] [000100000000] +09:07:09 [ 7] [ 10] [0320090657] +09:07:09 [ 11] [ 6] [693679] +09:07:09 [ 12] [ 6] [090657] +09:07:09 [ 13] [ 4] [0320] +09:07:09 [ 18] [ 4] [6011] +09:07:09 [ 19] [ 3] [418] +09:07:09 [ 22] [ 3] [021] +09:07:09 [ 32] [ 6] [621354] +09:07:09 [ 35] [ 27] [1808931300006887=1803500202] +09:07:09 [ 37] [ 12] [507903735028] +09:07:09 [ 38] [ 6] [693679] +09:07:09 [ 39] [ 2] [00] +09:07:09 [ 41] [ 8] [06002300] +09:07:09 [ 49] [ 3] [418] +09:07:09 [ 52] [ 16] [5D067547BE7C466E] +09:07:09 [ 54] [ 20] [1001418C000302742700] +09:07:09 ============================================================================ +09:07:09 Calculate Source COMM Id = 0 +09:07:09 ============================================================================ +09:07:09 + + +waiting on router queue for slot.... +09:07:11 ============================================================================ +09:07:11 Slot Id : <252> +09:07:11 Transaction Type : REQUEST +09:07:11 Received From : +09:07:11 ============================================================================ +09:07:11 FNo. Len. Field Value +09:07:11 ============================================================================ +09:07:11 [ 1] [ 4] [0800] +09:07:11 [ 7] [ 10] [0320161901] +09:07:11 [ 11] [ 6] [091901] +09:07:11 [ 37] [ 12] [57909091901] +09:07:11 [ 70] [ 3] [301] +09:07:11 ============================================================================ +09:07:11 + + +waiting on router queue for slot.... +09:07:11 Sending to : +09:07:11 ============================================================================ +09:07:11 ============================================================================ +09:07:11 Slot Id : <252> +09:07:11 Transaction Type : RESPONSE +09:07:11 Received From : +09:07:11 ============================================================================ +09:07:11 FNo. Len. Field Value +09:07:11 ============================================================================ +09:07:11 [ 1] [ 4] [0810] +09:07:11 [ 7] [ 10] [0320161901] +09:07:11 [ 11] [ 6] [091901] +09:07:11 [ 37] [ 12] [579090919010] +09:07:11 [ 39] [ 2] [00] +09:07:11 [ 70] [ 3] [810] +09:07:11 ============================================================================ +09:07:11 Calculate Source COMM Id = 6 +09:07:11 ============================================================================ +09:07:11 + + +waiting on router queue for slot.... +09:07:14 ============================================================================ +09:07:14 Slot Id : <245> +09:07:14 Transaction Type : REQUEST +09:07:14 Received From : +09:07:14 ============================================================================ +09:07:14 FNo. Len. Field Value +09:07:14 ============================================================================ +09:07:14 [ 1] [ 4] [0800] +09:07:14 [ 2] [ 5] [02531] +09:07:14 [ 3] [ 6] [579098] +09:07:14 [ 7] [ 10] [0320020714] +09:07:14 [ 11] [ 6] [806941] +09:07:14 [ 15] [ 10] [0320020714] +09:07:14 [ 37] [ 11] [57909806941] +09:07:14 [ 70] [ 3] [001] +09:07:14 ============================================================================ +09:07:14 + + +waiting on router queue for slot.... +09:07:14 ============================================================================ +09:07:14 Slot Id : <245> +09:07:14 Transaction Type : RESPONSE +09:07:14 Received From : +09:07:14 ============================================================================ +09:07:14 FNo. Len. Field Value +09:07:14 ============================================================================ +09:07:14 [ 1] [ 4] [0810] +09:07:14 [ 7] [ 10] [0320020714] +09:07:14 [ 11] [ 6] [806941] +09:07:14 [ 15] [ 4] [0320] +09:07:14 [ 37] [ 12] [57909806941] +09:07:14 [ 39] [ 2] [00] +09:07:14 [ 70] [ 3] [001] +09:07:14 ============================================================================ +09:07:14 Sending to : +09:07:14 ============================================================================ +09:07:14 + + +waiting on router queue for slot.... +09:07:15 ============================================================================ +09:07:15 Slot Id : <280> +09:07:15 Transaction Type : REQUEST +09:07:15 Received From : +09:07:15 ============================================================================ +09:07:15 FNo. Len. Field Value +09:07:15 ============================================================================ +09:07:15 [ 1] [ 4] [0800] +09:07:15 [ 7] [ 10] [0320020623] +09:07:15 [ 11] [ 6] [155551] +09:07:15 [ 70] [ 3] [301] +09:07:15 ============================================================================ +09:07:15 + + +waiting on router queue for slot.... +09:07:15 Sending to : +09:07:15 ============================================================================ +09:07:15 ============================================================================ +09:07:15 Slot Id : <280> +09:07:15 Transaction Type : RESPONSE +09:07:15 Received From : +09:07:15 ============================================================================ +09:07:15 FNo. Len. Field Value +09:07:15 ============================================================================ +09:07:15 [ 1] [ 4] [0810] +09:07:15 [ 7] [ 10] [0320020623] +09:07:15 [ 11] [ 6] [155551] +09:07:15 [ 39] [ 2] [00] +09:07:15 [ 70] [ 3] [301] +09:07:15 ============================================================================ +09:07:15 Calculate Source COMM Id = 2 +09:07:15 ============================================================================ +09:07:15 + + +waiting on router queue for slot.... +09:07:26 ============================================================================ +09:07:26 Slot Id : <276> +09:07:26 Transaction Type : REQUEST +09:07:26 Received From : +09:07:26 ============================================================================ +09:07:26 FNo. Len. Field Value +09:07:26 ============================================================================ +09:07:26 [ 1] [ 4] [0800] +09:07:26 [ 7] [ 10] [0320020634] +09:07:26 [ 11] [ 6] [155552] +09:07:26 [ 70] [ 3] [301] +09:07:26 ============================================================================ +09:07:26 + + +waiting on router queue for slot.... +09:07:26 Sending to : +09:07:26 ============================================================================ +09:07:26 ============================================================================ +09:07:26 Slot Id : <276> +09:07:26 Transaction Type : RESPONSE +09:07:26 Received From : +09:07:26 ============================================================================ +09:07:26 FNo. Len. Field Value +09:07:26 ============================================================================ +09:07:26 [ 1] [ 4] [0810] +09:07:26 [ 7] [ 10] [0320020634] +09:07:26 [ 11] [ 6] [155552] +09:07:26 [ 39] [ 2] [00] +09:07:26 [ 70] [ 3] [301] +09:07:26 ============================================================================ +09:07:26 Calculate Source COMM Id = 2 +09:07:26 ============================================================================ +09:07:26 + + +waiting on router queue for slot.... +09:07:37 ============================================================================ +09:07:37 Slot Id : <258> +09:07:37 Transaction Type : REQUEST +09:07:37 Received From : +09:07:37 ============================================================================ +09:07:37 FNo. Len. Field Value +09:07:37 ============================================================================ +09:07:37 [ 1] [ 4] [0200] +09:07:37 [ 2] [ 16] [6213545000902142] +09:07:37 [ 3] [ 6] [010000] +09:07:37 [ 4] [ 12] [000010000000] +09:07:37 [ 7] [ 10] [0320020644] +09:07:37 [ 11] [ 6] [267387] +09:07:37 [ 12] [ 6] [090644] +09:07:37 [ 13] [ 4] [0320] +09:07:37 [ 14] [ 4] [4912] +09:07:37 [ 15] [ 4] [0320] +09:07:37 [ 18] [ 4] [6011] +09:07:37 [ 19] [ 3] [418] +09:07:37 [ 22] [ 3] [021] +09:07:37 [ 25] [ 2] [01] +09:07:37 [ 28] [ 9] [D00002000] +09:07:37 [ 32] [ 6] [180893] +09:07:37 [ 35] [ 32] [6213545000902142=491212010214328] +09:07:37 [ 37] [ 12] [507902267387] +09:07:37 [ 41] [ 8] [0111BLBR] +09:07:37 [ 42] [ 15] [999999 ] +09:07:37 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:07:37 [ 49] [ 3] [418] +09:07:37 [ 52] [ 16] [4DE4A5FECD9BF2FE] +09:07:37 ============================================================================ +09:07:37 + + +waiting on router queue for slot.... +09:07:37 Sending to : +09:07:37 ============================================================================ +09:07:37 Sending to : +09:07:37 ============================================================================ +09:07:38 ============================================================================ +09:07:38 Slot Id : <258> +09:07:38 Transaction Type : REQUEST +09:07:38 Received From : +09:07:38 ============================================================================ +09:07:38 FNo. Len. Field Value +09:07:38 ============================================================================ +09:07:38 [ 1] [ 4] [0200] +09:07:38 [ 2] [ 16] [6213545000902142] +09:07:38 [ 3] [ 6] [010000] +09:07:38 [ 4] [ 12] [000010000000] +09:07:38 [ 7] [ 10] [0320020644] +09:07:38 [ 11] [ 6] [267387] +09:07:38 [ 12] [ 6] [090644] +09:07:38 [ 13] [ 4] [0320] +09:07:38 [ 14] [ 4] [4912] +09:07:38 [ 15] [ 4] [0320] +09:07:38 [ 18] [ 4] [6011] +09:07:38 [ 19] [ 3] [418] +09:07:38 [ 22] [ 3] [021] +09:07:38 [ 25] [ 2] [01] +09:07:38 [ 28] [ 9] [D00002000] +09:07:38 [ 32] [ 6] [180893] +09:07:38 [ 35] [ 32] [6213545000902142=491212010214328] +09:07:38 [ 37] [ 12] [507902267387] +09:07:38 [ 41] [ 8] [0111BLBR] +09:07:38 [ 42] [ 15] [999999 ] +09:07:38 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:07:38 [ 49] [ 3] [418] +09:07:38 [ 52] [ 16] [4DE4A5FECD9BF2FE] +09:07:38 ============================================================================ +09:07:38 + + +waiting on router queue for slot.... +09:07:38 Sending to : +09:07:38 ============================================================================ +09:07:38 ============================================================================ +09:07:38 Slot Id : <258> +09:07:38 Transaction Type : REQUEST +09:07:38 Received From : +09:07:38 ============================================================================ +09:07:38 FNo. Len. Field Value +09:07:38 ============================================================================ +09:07:38 [ 1] [ 4] [0200] +09:07:38 [ 2] [ 16] [6213545000902142] +09:07:38 [ 3] [ 6] [010000] +09:07:38 [ 4] [ 12] [000010000000] +09:07:38 [ 7] [ 10] [0320020644] +09:07:38 [ 11] [ 6] [267387] +09:07:38 [ 12] [ 6] [090644] +09:07:38 [ 13] [ 4] [0320] +09:07:38 [ 14] [ 4] [4912] +09:07:38 [ 15] [ 4] [0320] +09:07:38 [ 18] [ 4] [6011] +09:07:38 [ 19] [ 3] [418] +09:07:38 [ 22] [ 3] [021] +09:07:38 [ 25] [ 2] [01] +09:07:38 [ 28] [ 9] [D00002000] +09:07:38 [ 32] [ 6] [180893] +09:07:38 [ 35] [ 32] [6213545000902142=491212010214328] +09:07:38 [ 37] [ 12] [507902267387] +09:07:38 [ 41] [ 8] [0111BLBR] +09:07:38 [ 42] [ 15] [999999 ] +09:07:38 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:07:38 [ 49] [ 3] [418] +09:07:38 [ 52] [ 16] [FC2F19C8E15D2BF0] +09:07:38 ============================================================================ +09:07:38 + + +waiting on router queue for slot.... +09:07:38 Sending to : <0> +09:07:38 ============================================================================ +09:07:38 ============================================================================ +09:07:38 Slot Id : <258> +09:07:38 Transaction Type : RESPONSE +09:07:38 Received From : +09:07:38 ============================================================================ +09:07:38 FNo. Len. Field Value +09:07:38 ============================================================================ +09:07:38 [ 1] [ 4] [0210] +09:07:38 [ 2] [ 16] [6213545000902142] +09:07:38 [ 3] [ 6] [010000] +09:07:38 [ 4] [ 12] [000010000000] +09:07:38 [ 7] [ 10] [0320020644] +09:07:38 [ 11] [ 6] [267387] +09:07:38 [ 12] [ 6] [090644] +09:07:38 [ 13] [ 4] [0320] +09:07:38 [ 15] [ 4] [0320] +09:07:38 [ 18] [ 4] [6011] +09:07:38 [ 19] [ 3] [418] +09:07:38 [ 32] [ 6] [180893] +09:07:38 [ 35] [ 32] [6213545000902142=491212010214328] +09:07:38 [ 37] [ 12] [507902267387] +09:07:38 [ 38] [ 6] [170330] +09:07:38 [ 39] [ 2] [00] +09:07:38 [ 41] [ 8] [0111BLBR] +09:07:38 [ 49] [ 3] [418] +09:07:38 [ 54] [ 40] [0001418C0001446984470002418C000144698447] +09:07:38 ============================================================================ +09:07:38 Sending to : +09:07:38 ============================================================================ +09:07:38 + + +waiting on router queue for slot.... +09:07:38 ============================================================================ +09:07:38 Slot Id : <219> +09:07:38 Transaction Type : REQUEST +09:07:38 Received From : +09:07:38 ============================================================================ +09:07:38 FNo. Len. Field Value +09:07:38 ============================================================================ +09:07:38 [ 1] [ 4] [0800] +09:07:38 [ 7] [ 10] [0320020646] +09:07:38 [ 11] [ 6] [155553] +09:07:38 [ 70] [ 3] [301] +09:07:38 ============================================================================ +09:07:38 + + +waiting on router queue for slot.... +09:07:38 Sending to : +09:07:38 ============================================================================ +09:07:38 ============================================================================ +09:07:38 Slot Id : <219> +09:07:38 Transaction Type : RESPONSE +09:07:38 Received From : +09:07:38 ============================================================================ +09:07:38 FNo. Len. Field Value +09:07:38 ============================================================================ +09:07:38 [ 1] [ 4] [0810] +09:07:38 [ 7] [ 10] [0320020646] +09:07:38 [ 11] [ 6] [155553] +09:07:38 [ 39] [ 2] [00] +09:07:38 [ 70] [ 3] [301] +09:07:38 ============================================================================ +09:07:38 Calculate Source COMM Id = 2 +09:07:38 ============================================================================ +09:07:38 + + +waiting on router queue for slot.... +09:07:40 ============================================================================ +09:07:40 Slot Id : <258> +09:07:40 Transaction Type : RESPONSE +09:07:40 Received From : +09:07:40 ============================================================================ +09:07:40 FNo. Len. Field Value +09:07:40 ============================================================================ +09:07:40 [ 1] [ 4] [0210] +09:07:40 [ 2] [ 16] [6213545000902142] +09:07:40 [ 3] [ 6] [010000] +09:07:40 [ 4] [ 12] [000010000000] +09:07:40 [ 7] [ 10] [0320020644] +09:07:40 [ 11] [ 6] [267387] +09:07:40 [ 12] [ 6] [090644] +09:07:40 [ 13] [ 4] [0320] +09:07:40 [ 15] [ 4] [0320] +09:07:40 [ 18] [ 4] [6011] +09:07:40 [ 19] [ 3] [418] +09:07:40 [ 32] [ 6] [180893] +09:07:40 [ 35] [ 32] [6213545000902142=491212010214328] +09:07:40 [ 37] [ 12] [507902267387] +09:07:40 [ 38] [ 6] [170330] +09:07:40 [ 39] [ 2] [00] +09:07:40 [ 41] [ 8] [0111BLBR] +09:07:40 [ 49] [ 3] [418] +09:07:40 [ 54] [ 40] [0001418C0001446984470002418C000144698447] +09:07:40 ============================================================================ +09:07:40 Calculate Source COMM Id = 2 +09:07:40 ============================================================================ +09:07:40 + + +waiting on router queue for slot.... +09:07:45 ============================================================================ +09:07:45 Slot Id : <284> +09:07:45 Transaction Type : REQUEST +09:07:45 Received From : +09:07:45 ============================================================================ +09:07:45 FNo. Len. Field Value +09:07:45 ============================================================================ +09:07:45 [ 1] [ 4] [0200] +09:07:45 [ 2] [ 16] [6213545000469894] +09:07:45 [ 3] [ 6] [010000] +09:07:45 [ 4] [ 12] [000070000000] +09:07:45 [ 7] [ 10] [0320091533] +09:07:45 [ 11] [ 6] [009272] +09:07:45 [ 12] [ 6] [091533] +09:07:45 [ 13] [ 4] [0320] +09:07:45 [ 14] [ 4] [4912] +09:07:45 [ 15] [ 4] [0320] +09:07:45 [ 18] [ 4] [6011] +09:07:45 [ 22] [ 3] [900] +09:07:45 [ 25] [ 2] [02] +09:07:45 [ 28] [ 9] [D00002000] +09:07:45 [ 32] [ 6] [220699] +09:07:45 [ 35] [ 32] [6213545000469894=491212016989844] +09:07:45 [ 37] [ 12] [507900213241] +09:07:45 [ 41] [ 8] [05000100] +09:07:45 [ 42] [ 15] [APTRA ] +09:07:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:07:45 [ 49] [ 3] [418] +09:07:45 [ 52] [ 16] [1CA750029A015FB8] +09:07:45 ============================================================================ +09:07:45 + + +waiting on router queue for slot.... +09:07:45 Sending to : +09:07:45 ============================================================================ +09:07:45 Sending to : +09:07:45 ============================================================================ +09:07:46 ============================================================================ +09:07:46 Slot Id : <284> +09:07:46 Transaction Type : REQUEST +09:07:46 Received From : +09:07:46 ============================================================================ +09:07:46 FNo. Len. Field Value +09:07:46 ============================================================================ +09:07:46 [ 1] [ 4] [0200] +09:07:46 [ 2] [ 16] [6213545000469894] +09:07:46 [ 3] [ 6] [010000] +09:07:46 [ 4] [ 12] [000070000000] +09:07:46 [ 7] [ 10] [0320091533] +09:07:46 [ 11] [ 6] [009272] +09:07:46 [ 12] [ 6] [091533] +09:07:46 [ 13] [ 4] [0320] +09:07:46 [ 14] [ 4] [4912] +09:07:46 [ 15] [ 4] [0320] +09:07:46 [ 18] [ 4] [6011] +09:07:46 [ 22] [ 3] [900] +09:07:46 [ 25] [ 2] [02] +09:07:46 [ 28] [ 9] [D00002000] +09:07:46 [ 32] [ 6] [220699] +09:07:46 [ 35] [ 32] [6213545000469894=491212016989844] +09:07:46 [ 37] [ 12] [507900213241] +09:07:46 [ 41] [ 8] [05000100] +09:07:46 [ 42] [ 15] [APTRA ] +09:07:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:07:46 [ 49] [ 3] [418] +09:07:46 [ 52] [ 16] [1CA750029A015FB8] +09:07:46 ============================================================================ +09:07:46 + + +waiting on router queue for slot.... +09:07:46 Sending to : +09:07:46 ============================================================================ +09:07:46 ============================================================================ +09:07:46 Slot Id : <284> +09:07:46 Transaction Type : REQUEST +09:07:46 Received From : +09:07:46 ============================================================================ +09:07:46 FNo. Len. Field Value +09:07:46 ============================================================================ +09:07:46 [ 1] [ 4] [0200] +09:07:46 [ 2] [ 16] [6213545000469894] +09:07:46 [ 3] [ 6] [010000] +09:07:46 [ 4] [ 12] [000070000000] +09:07:46 [ 7] [ 10] [0320091533] +09:07:46 [ 11] [ 6] [009272] +09:07:46 [ 12] [ 6] [091533] +09:07:46 [ 13] [ 4] [0320] +09:07:46 [ 14] [ 4] [4912] +09:07:46 [ 15] [ 4] [0320] +09:07:46 [ 18] [ 4] [6011] +09:07:46 [ 22] [ 3] [900] +09:07:46 [ 25] [ 2] [02] +09:07:46 [ 28] [ 9] [D00002000] +09:07:46 [ 32] [ 6] [220699] +09:07:46 [ 35] [ 32] [6213545000469894=491212016989844] +09:07:46 [ 37] [ 12] [507900213241] +09:07:46 [ 41] [ 8] [05000100] +09:07:46 [ 42] [ 15] [APTRA ] +09:07:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:07:46 [ 49] [ 3] [418] +09:07:46 [ 52] [ 16] [42C7F9401CF35ADB] +09:07:46 ============================================================================ +09:07:46 + + +waiting on router queue for slot.... +09:07:46 Sending to : <0> +09:07:46 ============================================================================ +09:07:46 ============================================================================ +09:07:46 Slot Id : <284> +09:07:46 Transaction Type : RESPONSE +09:07:46 Received From : +09:07:46 ============================================================================ +09:07:46 FNo. Len. Field Value +09:07:46 ============================================================================ +09:07:46 [ 1] [ 4] [0210] +09:07:46 [ 2] [ 16] [6213545000469894] +09:07:46 [ 3] [ 6] [010000] +09:07:46 [ 4] [ 12] [000070000000] +09:07:46 [ 7] [ 10] [0320091533] +09:07:46 [ 11] [ 6] [009272] +09:07:46 [ 12] [ 6] [091533] +09:07:46 [ 13] [ 4] [0320] +09:07:46 [ 15] [ 4] [0320] +09:07:46 [ 18] [ 4] [6011] +09:07:46 [ 32] [ 6] [220699] +09:07:46 [ 35] [ 32] [6213545000469894=491212016989844] +09:07:46 [ 37] [ 12] [507900213241] +09:07:46 [ 38] [ 6] [355911] +09:07:46 [ 39] [ 2] [00] +09:07:46 [ 41] [ 8] [05000100] +09:07:46 [ 49] [ 3] [418] +09:07:46 [ 54] [ 40] [0001418C0000241555610002418C000024155561] +09:07:46 ============================================================================ +09:07:46 Sending to : +09:07:46 ============================================================================ +09:07:46 + + +waiting on router queue for slot.... +09:07:48 ============================================================================ +09:07:48 Slot Id : <284> +09:07:48 Transaction Type : RESPONSE +09:07:48 Received From : +09:07:48 ============================================================================ +09:07:48 FNo. Len. Field Value +09:07:48 ============================================================================ +09:07:48 [ 1] [ 4] [0210] +09:07:48 [ 2] [ 16] [6213545000469894] +09:07:48 [ 3] [ 6] [010000] +09:07:48 [ 4] [ 12] [000070000000] +09:07:48 [ 7] [ 10] [0320091533] +09:07:48 [ 11] [ 6] [009272] +09:07:48 [ 12] [ 6] [091533] +09:07:48 [ 13] [ 4] [0320] +09:07:48 [ 15] [ 4] [0320] +09:07:48 [ 18] [ 4] [6011] +09:07:48 [ 32] [ 6] [220699] +09:07:48 [ 35] [ 32] [6213545000469894=491212016989844] +09:07:48 [ 37] [ 12] [507900213241] +09:07:48 [ 38] [ 6] [355911] +09:07:48 [ 39] [ 2] [00] +09:07:48 [ 41] [ 8] [05000100] +09:07:48 [ 49] [ 3] [418] +09:07:48 [ 54] [ 40] [0001418C0000241555610002418C000024155561] +09:07:48 ============================================================================ +09:07:48 Calculate Source COMM Id = 1 +09:07:48 ============================================================================ +09:07:48 + + +waiting on router queue for slot.... +09:07:53 ============================================================================ +09:07:53 Slot Id : <224> +09:07:53 Transaction Type : REQUEST +09:07:53 Received From : +09:07:53 ============================================================================ +09:07:53 FNo. Len. Field Value +09:07:53 ============================================================================ +09:07:53 [ 1] [ 4] [0800] +09:07:53 [ 7] [ 10] [0320020702] +09:07:53 [ 11] [ 6] [155554] +09:07:53 [ 70] [ 3] [301] +09:07:53 ============================================================================ +09:07:53 + + +waiting on router queue for slot.... +09:07:53 Sending to : +09:07:53 ============================================================================ +09:07:53 ============================================================================ +09:07:53 Slot Id : <224> +09:07:53 Transaction Type : RESPONSE +09:07:53 Received From : +09:07:53 ============================================================================ +09:07:53 FNo. Len. Field Value +09:07:53 ============================================================================ +09:07:53 [ 1] [ 4] [0810] +09:07:53 [ 7] [ 10] [0320020702] +09:07:53 [ 11] [ 6] [155554] +09:07:53 [ 39] [ 2] [00] +09:07:53 [ 70] [ 3] [301] +09:07:53 ============================================================================ +09:07:53 Calculate Source COMM Id = 2 +09:07:53 ============================================================================ +09:07:53 + + +waiting on router queue for slot.... +09:08:01 ============================================================================ +09:08:01 Slot Id : <290> +09:08:01 Transaction Type : REQUEST +09:08:01 Received From : +09:08:01 ============================================================================ +09:08:01 FNo. Len. Field Value +09:08:01 ============================================================================ +09:08:01 [ 1] [ 4] [0200] +09:08:01 [ 2] [ 16] [6213542000057662] +09:08:01 [ 3] [ 6] [010000] +09:08:01 [ 4] [ 12] [000100000000] +09:08:01 [ 7] [ 10] [0320090552] +09:08:01 [ 11] [ 6] [934715] +09:08:01 [ 12] [ 6] [090552] +09:08:01 [ 13] [ 4] [0320] +09:08:01 [ 15] [ 4] [0320] +09:08:01 [ 18] [ 4] [6011] +09:08:01 [ 19] [ 3] [418] +09:08:01 [ 22] [ 3] [021] +09:08:01 [ 25] [ 2] [01] +09:08:01 [ 28] [ 9] [D00002000] +09:08:01 [ 32] [ 6] [668899] +09:08:01 [ 35] [ 32] [6213542000057662=491212015766473] +09:08:01 [ 37] [ 12] [507900858230] +09:08:01 [ 41] [ 8] [03015004] +09:08:01 [ 42] [ 15] [APT ] +09:08:01 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +09:08:01 [ 49] [ 3] [418] +09:08:01 [ 52] [ 16] [D152A3937C6155C6] +09:08:01 ============================================================================ +09:08:01 + + +waiting on router queue for slot.... +09:08:01 Sending to : +09:08:01 ============================================================================ +09:08:01 Sending to : +09:08:01 ============================================================================ +09:08:01 ============================================================================ +09:08:01 Slot Id : <290> +09:08:01 Transaction Type : REQUEST +09:08:01 Received From : +09:08:01 ============================================================================ +09:08:01 FNo. Len. Field Value +09:08:01 ============================================================================ +09:08:01 [ 1] [ 4] [0200] +09:08:01 [ 2] [ 16] [6213542000057662] +09:08:01 [ 3] [ 6] [010000] +09:08:01 [ 4] [ 12] [000100000000] +09:08:01 [ 7] [ 10] [0320090552] +09:08:01 [ 11] [ 6] [934715] +09:08:01 [ 12] [ 6] [090552] +09:08:01 [ 13] [ 4] [0320] +09:08:01 [ 15] [ 4] [0320] +09:08:01 [ 18] [ 4] [6011] +09:08:01 [ 19] [ 3] [418] +09:08:01 [ 22] [ 3] [021] +09:08:01 [ 25] [ 2] [01] +09:08:01 [ 28] [ 9] [D00002000] +09:08:01 [ 32] [ 6] [668899] +09:08:01 [ 35] [ 32] [6213542000057662=491212015766473] +09:08:01 [ 37] [ 12] [507900858230] +09:08:01 [ 41] [ 8] [03015004] +09:08:01 [ 42] [ 15] [APT ] +09:08:01 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +09:08:01 [ 49] [ 3] [418] +09:08:01 [ 52] [ 16] [D152A3937C6155C6] +09:08:01 ============================================================================ +09:08:01 + + +waiting on router queue for slot.... +09:08:01 Sending to : +09:08:01 ============================================================================ +09:08:01 ============================================================================ +09:08:01 Slot Id : <290> +09:08:01 Transaction Type : REQUEST +09:08:01 Received From : +09:08:01 ============================================================================ +09:08:01 FNo. Len. Field Value +09:08:01 ============================================================================ +09:08:01 [ 1] [ 4] [0200] +09:08:01 [ 2] [ 16] [6213542000057662] +09:08:01 [ 3] [ 6] [010000] +09:08:01 [ 4] [ 12] [000100000000] +09:08:01 [ 7] [ 10] [0320090552] +09:08:01 [ 11] [ 6] [934715] +09:08:01 [ 12] [ 6] [090552] +09:08:01 [ 13] [ 4] [0320] +09:08:01 [ 15] [ 4] [0320] +09:08:01 [ 18] [ 4] [6011] +09:08:01 [ 19] [ 3] [418] +09:08:01 [ 22] [ 3] [021] +09:08:01 [ 25] [ 2] [01] +09:08:01 [ 28] [ 9] [D00002000] +09:08:01 [ 32] [ 6] [668899] +09:08:01 [ 35] [ 32] [6213542000057662=491212015766473] +09:08:01 [ 37] [ 12] [507900858230] +09:08:01 [ 41] [ 8] [03015004] +09:08:01 [ 42] [ 15] [APT ] +09:08:01 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +09:08:01 [ 49] [ 3] [418] +09:08:01 [ 52] [ 16] [D4875CEBB3D8CBA7] +09:08:01 ============================================================================ +09:08:01 + + +waiting on router queue for slot.... +09:08:01 Sending to : <0> +09:08:01 ============================================================================ +09:08:02 ============================================================================ +09:08:02 Slot Id : <290> +09:08:02 Transaction Type : RESPONSE +09:08:02 Received From : +09:08:02 ============================================================================ +09:08:02 FNo. Len. Field Value +09:08:02 ============================================================================ +09:08:02 [ 1] [ 4] [0210] +09:08:02 [ 2] [ 16] [6213542000057662] +09:08:02 [ 3] [ 6] [010000] +09:08:02 [ 4] [ 12] [000100000000] +09:08:02 [ 7] [ 10] [0320090552] +09:08:02 [ 11] [ 6] [934715] +09:08:02 [ 12] [ 6] [090552] +09:08:02 [ 13] [ 4] [0320] +09:08:02 [ 15] [ 4] [0320] +09:08:02 [ 18] [ 4] [6011] +09:08:02 [ 19] [ 3] [418] +09:08:02 [ 32] [ 6] [668899] +09:08:02 [ 35] [ 32] [6213542000057662=491212015766473] +09:08:02 [ 37] [ 12] [507900858230] +09:08:02 [ 38] [ 6] [095002] +09:08:02 [ 39] [ 2] [00] +09:08:02 [ 41] [ 8] [03015004] +09:08:02 [ 49] [ 3] [418] +09:08:02 [ 54] [ 40] [0001418C0000832547320002418C000083254732] +09:08:02 ============================================================================ +09:08:02 Sending to : +09:08:02 ============================================================================ +09:08:02 + + +waiting on router queue for slot.... +09:08:04 ============================================================================ +09:08:04 Slot Id : <290> +09:08:04 Transaction Type : RESPONSE +09:08:04 Received From : +09:08:04 ============================================================================ +09:08:04 FNo. Len. Field Value +09:08:04 ============================================================================ +09:08:04 [ 1] [ 4] [0210] +09:08:04 [ 2] [ 16] [6213542000057662] +09:08:04 [ 3] [ 6] [010000] +09:08:04 [ 4] [ 12] [000100000000] +09:08:04 [ 7] [ 10] [0320090552] +09:08:04 [ 11] [ 6] [934715] +09:08:04 [ 12] [ 6] [090552] +09:08:04 [ 13] [ 4] [0320] +09:08:04 [ 15] [ 4] [0320] +09:08:04 [ 18] [ 4] [6011] +09:08:04 [ 19] [ 3] [418] +09:08:04 [ 32] [ 6] [668899] +09:08:04 [ 35] [ 32] [6213542000057662=491212015766473] +09:08:04 [ 37] [ 12] [507900858230] +09:08:04 [ 38] [ 6] [095002] +09:08:04 [ 39] [ 2] [00] +09:08:04 [ 41] [ 8] [03015004] +09:08:04 [ 49] [ 3] [418] +09:08:04 [ 54] [ 40] [0001418C0000832547320002418C000083254732] +09:08:04 ============================================================================ +09:08:04 Calculate Source COMM Id = 4 +09:08:04 ============================================================================ +09:08:04 + + +waiting on router queue for slot.... +09:08:04 ============================================================================ +09:08:04 Slot Id : <287> +09:08:04 Transaction Type : REQUEST +09:08:04 Received From : +09:08:04 ============================================================================ +09:08:04 FNo. Len. Field Value +09:08:04 ============================================================================ +09:08:04 [ 1] [ 4] [0800] +09:08:04 [ 7] [ 10] [0320020712] +09:08:04 [ 11] [ 6] [155555] +09:08:04 [ 70] [ 3] [301] +09:08:04 ============================================================================ +09:08:04 + + +waiting on router queue for slot.... +09:08:04 Sending to : +09:08:04 ============================================================================ +09:08:04 ============================================================================ +09:08:04 Slot Id : <287> +09:08:04 Transaction Type : RESPONSE +09:08:04 Received From : +09:08:04 ============================================================================ +09:08:04 FNo. Len. Field Value +09:08:04 ============================================================================ +09:08:04 [ 1] [ 4] [0810] +09:08:04 [ 7] [ 10] [0320020712] +09:08:04 [ 11] [ 6] [155555] +09:08:04 [ 39] [ 2] [00] +09:08:04 [ 70] [ 3] [301] +09:08:04 ============================================================================ +09:08:04 Calculate Source COMM Id = 2 +09:08:04 ============================================================================ +09:08:04 + + +waiting on router queue for slot.... +09:08:09 ============================================================================ +09:08:09 Slot Id : <271> +09:08:09 Transaction Type : REQUEST +09:08:09 Received From : +09:08:09 ============================================================================ +09:08:09 FNo. Len. Field Value +09:08:09 ============================================================================ +09:08:09 [ 1] [ 4] [0200] +09:08:09 [ 2] [ 16] [1808931300006887] +09:08:09 [ 3] [ 6] [010000] +09:08:09 [ 4] [ 12] [000100000000] +09:08:09 [ 7] [ 10] [0320090805] +09:08:09 [ 11] [ 6] [693920] +09:08:09 [ 12] [ 6] [090805] +09:08:09 [ 13] [ 4] [0320] +09:08:09 [ 15] [ 4] [0320] +09:08:09 [ 18] [ 4] [6011] +09:08:09 [ 22] [ 3] [900] +09:08:09 [ 25] [ 2] [02] +09:08:09 [ 28] [ 9] [D00002000] +09:08:09 [ 32] [ 6] [621354] +09:08:09 [ 35] [ 27] [1808931300006887=1803500202] +09:08:09 [ 37] [ 12] [507903735030] +09:08:09 [ 41] [ 8] [06002300] +09:08:09 [ 42] [ 15] [NATIVE ] +09:08:09 [ 43] [ 40] [ODX BOL Xay LAO] +09:08:09 [ 49] [ 3] [418] +09:08:09 [ 52] [ 16] [0533F325FFA15695] +09:08:09 ============================================================================ +09:08:09 + + +waiting on router queue for slot.... +09:08:09 Sending to : +09:08:09 ============================================================================ +09:08:09 Sending to : +09:08:09 ============================================================================ +09:08:09 ============================================================================ +09:08:09 Slot Id : <271> +09:08:09 Transaction Type : REQUEST +09:08:09 Received From : +09:08:09 ============================================================================ +09:08:09 FNo. Len. Field Value +09:08:09 ============================================================================ +09:08:09 [ 1] [ 4] [0200] +09:08:09 [ 2] [ 16] [1808931300006887] +09:08:09 [ 3] [ 6] [010000] +09:08:09 [ 4] [ 12] [000100000000] +09:08:09 [ 7] [ 10] [0320090805] +09:08:09 [ 11] [ 6] [693920] +09:08:09 [ 12] [ 6] [090805] +09:08:09 [ 13] [ 4] [0320] +09:08:09 [ 15] [ 4] [0320] +09:08:09 [ 18] [ 4] [6011] +09:08:09 [ 22] [ 3] [900] +09:08:09 [ 25] [ 2] [02] +09:08:09 [ 28] [ 9] [D00002000] +09:08:09 [ 32] [ 6] [621354] +09:08:09 [ 35] [ 27] [1808931300006887=1803500202] +09:08:09 [ 37] [ 12] [507903735030] +09:08:09 [ 41] [ 8] [06002300] +09:08:09 [ 42] [ 15] [NATIVE ] +09:08:09 [ 43] [ 40] [ODX BOL Xay LAO] +09:08:09 [ 49] [ 3] [418] +09:08:09 [ 52] [ 16] [0533F325FFA15695] +09:08:09 ============================================================================ +09:08:09 + + +waiting on router queue for slot.... +09:08:09 Sending to : +09:08:09 ============================================================================ +09:08:09 ============================================================================ +09:08:09 Slot Id : <271> +09:08:09 Transaction Type : REQUEST +09:08:09 Received From : +09:08:09 ============================================================================ +09:08:09 FNo. Len. Field Value +09:08:09 ============================================================================ +09:08:09 [ 1] [ 4] [0200] +09:08:09 [ 2] [ 16] [1808931300006887] +09:08:09 [ 3] [ 6] [010000] +09:08:09 [ 4] [ 12] [000100000000] +09:08:09 [ 7] [ 10] [0320090805] +09:08:09 [ 11] [ 6] [693920] +09:08:09 [ 12] [ 6] [090805] +09:08:09 [ 13] [ 4] [0320] +09:08:09 [ 15] [ 4] [0320] +09:08:09 [ 18] [ 4] [6011] +09:08:09 [ 22] [ 3] [900] +09:08:09 [ 25] [ 2] [02] +09:08:09 [ 28] [ 9] [D00002000] +09:08:09 [ 32] [ 6] [621354] +09:08:09 [ 35] [ 27] [1808931300006887=1803500202] +09:08:09 [ 37] [ 12] [507903735030] +09:08:09 [ 41] [ 8] [06002300] +09:08:09 [ 42] [ 15] [NATIVE ] +09:08:09 [ 43] [ 40] [ODX BOL Xay LAO] +09:08:09 [ 49] [ 3] [418] +09:08:09 [ 52] [ 16] [5D067547BE7C466E] +09:08:09 ============================================================================ +09:08:09 + + +waiting on router queue for slot.... +09:08:09 Sending to : <2> +09:08:09 ============================================================================ +09:08:14 ============================================================================ +09:08:14 Slot Id : <271> +09:08:14 Transaction Type : RESPONSE +09:08:14 Received From : +09:08:14 ============================================================================ +09:08:14 FNo. Len. Field Value +09:08:14 ============================================================================ +09:08:14 [ 1] [ 4] [0210] +09:08:14 [ 2] [ 16] [1808931300006887] +09:08:14 [ 3] [ 6] [010000] +09:08:14 [ 4] [ 12] [000100000000] +09:08:14 [ 6] [ 12] [000100000000] +09:08:14 [ 7] [ 10] [0320090805] +09:08:14 [ 11] [ 6] [693920] +09:08:14 [ 12] [ 6] [090805] +09:08:14 [ 13] [ 4] [0320] +09:08:14 [ 18] [ 4] [6011] +09:08:14 [ 19] [ 3] [418] +09:08:14 [ 22] [ 3] [021] +09:08:14 [ 32] [ 6] [621354] +09:08:14 [ 35] [ 27] [1808931300006887=1803500202] +09:08:14 [ 37] [ 12] [507903735030] +09:08:14 [ 38] [ 6] [693920] +09:08:14 [ 39] [ 2] [00] +09:08:14 [ 41] [ 8] [06002300] +09:08:14 [ 49] [ 3] [418] +09:08:14 [ 52] [ 16] [5D067547BE7C466E] +09:08:14 [ 54] [ 20] [1001418C000202542700] +09:08:14 ============================================================================ +09:08:14 Sending to : +09:08:14 ============================================================================ +09:08:14 + + +waiting on router queue for slot.... +09:08:16 ============================================================================ +09:08:16 Slot Id : <271> +09:08:16 Transaction Type : RESPONSE +09:08:16 Received From : +09:08:16 ============================================================================ +09:08:16 FNo. Len. Field Value +09:08:16 ============================================================================ +09:08:16 [ 1] [ 4] [0210] +09:08:16 [ 2] [ 16] [1808931300006887] +09:08:16 [ 3] [ 6] [010000] +09:08:16 [ 4] [ 12] [000100000000] +09:08:16 [ 6] [ 12] [000100000000] +09:08:16 [ 7] [ 10] [0320090805] +09:08:16 [ 11] [ 6] [693920] +09:08:16 [ 12] [ 6] [090805] +09:08:16 [ 13] [ 4] [0320] +09:08:16 [ 18] [ 4] [6011] +09:08:16 [ 19] [ 3] [418] +09:08:16 [ 22] [ 3] [021] +09:08:16 [ 32] [ 6] [621354] +09:08:16 [ 35] [ 27] [1808931300006887=1803500202] +09:08:16 [ 37] [ 12] [507903735030] +09:08:16 [ 38] [ 6] [693920] +09:08:16 [ 39] [ 2] [00] +09:08:16 [ 41] [ 8] [06002300] +09:08:16 [ 49] [ 3] [418] +09:08:16 [ 52] [ 16] [5D067547BE7C466E] +09:08:16 [ 54] [ 20] [1001418C000202542700] +09:08:16 ============================================================================ +09:08:16 Calculate Source COMM Id = 0 +09:08:16 ============================================================================ +09:08:16 + + +waiting on router queue for slot.... +09:08:16 ============================================================================ +09:08:16 Slot Id : <288> +09:08:16 Transaction Type : REQUEST +09:08:16 Received From : +09:08:16 ============================================================================ +09:08:16 FNo. Len. Field Value +09:08:16 ============================================================================ +09:08:16 [ 1] [ 4] [0800] +09:08:16 [ 2] [ 5] [02531] +09:08:16 [ 3] [ 6] [579098] +09:08:16 [ 7] [ 10] [0320020816] +09:08:16 [ 11] [ 6] [806942] +09:08:16 [ 15] [ 10] [0320020816] +09:08:16 [ 37] [ 11] [57909806942] +09:08:16 [ 70] [ 3] [001] +09:08:16 ============================================================================ +09:08:16 + + +waiting on router queue for slot.... +09:08:16 ============================================================================ +09:08:16 Slot Id : <277> +09:08:16 Transaction Type : REQUEST +09:08:16 Received From : +09:08:16 ============================================================================ +09:08:16 FNo. Len. Field Value +09:08:16 ============================================================================ +09:08:16 [ 1] [ 4] [0800] +09:08:16 [ 7] [ 10] [0320162006] +09:08:16 [ 11] [ 6] [092006] +09:08:16 [ 37] [ 12] [57909092006] +09:08:16 [ 70] [ 3] [301] +09:08:16 ============================================================================ +09:08:16 + + +waiting on router queue for slot.... +09:08:16 Sending to : +09:08:16 ============================================================================ +09:08:16 ============================================================================ +09:08:16 Slot Id : <277> +09:08:16 Transaction Type : RESPONSE +09:08:16 Received From : +09:08:16 ============================================================================ +09:08:16 FNo. Len. Field Value +09:08:16 ============================================================================ +09:08:16 [ 1] [ 4] [0810] +09:08:16 [ 7] [ 10] [0320162006] +09:08:16 [ 11] [ 6] [092006] +09:08:16 [ 37] [ 12] [579090920060] +09:08:16 [ 39] [ 2] [00] +09:08:16 [ 70] [ 3] [810] +09:08:16 ============================================================================ +09:08:16 Calculate Source COMM Id = 6 +09:08:16 ============================================================================ +09:08:16 + + +waiting on router queue for slot.... +09:08:16 ============================================================================ +09:08:16 Slot Id : <288> +09:08:16 Transaction Type : RESPONSE +09:08:16 Received From : +09:08:16 ============================================================================ +09:08:16 FNo. Len. Field Value +09:08:16 ============================================================================ +09:08:16 [ 1] [ 4] [0810] +09:08:16 [ 7] [ 10] [0320020816] +09:08:16 [ 11] [ 6] [806942] +09:08:16 [ 15] [ 4] [0320] +09:08:16 [ 37] [ 12] [57909806942] +09:08:16 [ 39] [ 2] [00] +09:08:16 [ 70] [ 3] [001] +09:08:16 ============================================================================ +09:08:16 Sending to : +09:08:16 ============================================================================ +09:08:16 + + +waiting on router queue for slot.... +09:08:20 ============================================================================ +09:08:20 Slot Id : <236> +09:08:20 Transaction Type : REQUEST +09:08:20 Received From : +09:08:20 ============================================================================ +09:08:20 FNo. Len. Field Value +09:08:20 ============================================================================ +09:08:20 [ 1] [ 4] [0200] +09:08:20 [ 2] [ 16] [6213545000902142] +09:08:20 [ 3] [ 6] [010000] +09:08:20 [ 4] [ 12] [000010000000] +09:08:20 [ 7] [ 10] [0320020725] +09:08:20 [ 11] [ 6] [267391] +09:08:20 [ 12] [ 6] [090725] +09:08:20 [ 13] [ 4] [0320] +09:08:20 [ 14] [ 4] [4912] +09:08:20 [ 15] [ 4] [0320] +09:08:20 [ 18] [ 4] [6011] +09:08:20 [ 19] [ 3] [418] +09:08:20 [ 22] [ 3] [021] +09:08:20 [ 25] [ 2] [01] +09:08:20 [ 28] [ 9] [D00002000] +09:08:20 [ 32] [ 6] [180893] +09:08:20 [ 35] [ 32] [6213545000902142=491212010214328] +09:08:20 [ 37] [ 12] [507902267391] +09:08:20 [ 41] [ 8] [0111BLBR] +09:08:20 [ 42] [ 15] [999999 ] +09:08:20 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:08:20 [ 49] [ 3] [418] +09:08:20 [ 52] [ 16] [4DE4A5FECD9BF2FE] +09:08:20 ============================================================================ +09:08:20 + + +waiting on router queue for slot.... +09:08:20 Sending to : +09:08:20 ============================================================================ +09:08:20 Sending to : +09:08:20 ============================================================================ +09:08:20 ============================================================================ +09:08:20 Slot Id : <236> +09:08:20 Transaction Type : REQUEST +09:08:20 Received From : +09:08:20 ============================================================================ +09:08:20 FNo. Len. Field Value +09:08:20 ============================================================================ +09:08:20 [ 1] [ 4] [0200] +09:08:20 [ 2] [ 16] [6213545000902142] +09:08:20 [ 3] [ 6] [010000] +09:08:20 [ 4] [ 12] [000010000000] +09:08:20 [ 7] [ 10] [0320020725] +09:08:20 [ 11] [ 6] [267391] +09:08:20 [ 12] [ 6] [090725] +09:08:20 [ 13] [ 4] [0320] +09:08:20 [ 14] [ 4] [4912] +09:08:20 [ 15] [ 4] [0320] +09:08:20 [ 18] [ 4] [6011] +09:08:20 [ 19] [ 3] [418] +09:08:20 [ 22] [ 3] [021] +09:08:20 [ 25] [ 2] [01] +09:08:20 [ 28] [ 9] [D00002000] +09:08:20 [ 32] [ 6] [180893] +09:08:20 [ 35] [ 32] [6213545000902142=491212010214328] +09:08:20 [ 37] [ 12] [507902267391] +09:08:20 [ 41] [ 8] [0111BLBR] +09:08:20 [ 42] [ 15] [999999 ] +09:08:20 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:08:20 [ 49] [ 3] [418] +09:08:20 [ 52] [ 16] [4DE4A5FECD9BF2FE] +09:08:20 ============================================================================ +09:08:20 + + +waiting on router queue for slot.... +09:08:20 Sending to : +09:08:20 ============================================================================ +09:08:20 ============================================================================ +09:08:20 Slot Id : <236> +09:08:20 Transaction Type : REQUEST +09:08:20 Received From : +09:08:20 ============================================================================ +09:08:20 FNo. Len. Field Value +09:08:20 ============================================================================ +09:08:20 [ 1] [ 4] [0200] +09:08:20 [ 2] [ 16] [6213545000902142] +09:08:20 [ 3] [ 6] [010000] +09:08:20 [ 4] [ 12] [000010000000] +09:08:20 [ 7] [ 10] [0320020725] +09:08:20 [ 11] [ 6] [267391] +09:08:20 [ 12] [ 6] [090725] +09:08:20 [ 13] [ 4] [0320] +09:08:20 [ 14] [ 4] [4912] +09:08:20 [ 15] [ 4] [0320] +09:08:20 [ 18] [ 4] [6011] +09:08:20 [ 19] [ 3] [418] +09:08:20 [ 22] [ 3] [021] +09:08:20 [ 25] [ 2] [01] +09:08:20 [ 28] [ 9] [D00002000] +09:08:20 [ 32] [ 6] [180893] +09:08:20 [ 35] [ 32] [6213545000902142=491212010214328] +09:08:20 [ 37] [ 12] [507902267391] +09:08:20 [ 41] [ 8] [0111BLBR] +09:08:20 [ 42] [ 15] [999999 ] +09:08:20 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +09:08:20 [ 49] [ 3] [418] +09:08:20 [ 52] [ 16] [FC2F19C8E15D2BF0] +09:08:20 ============================================================================ +09:08:20 + + +waiting on router queue for slot.... +09:08:20 Sending to : <0> +09:08:20 ============================================================================ +09:08:21 ============================================================================ +09:08:21 Slot Id : <236> +09:08:21 Transaction Type : RESPONSE +09:08:21 Received From : +09:08:21 ============================================================================ +09:08:21 FNo. Len. Field Value +09:08:21 ============================================================================ +09:08:21 [ 1] [ 4] [0210] +09:08:21 [ 2] [ 16] [6213545000902142] +09:08:21 [ 3] [ 6] [010000] +09:08:21 [ 4] [ 12] [000010000000] +09:08:21 [ 7] [ 10] [0320020725] +09:08:21 [ 11] [ 6] [267391] +09:08:21 [ 12] [ 6] [090725] +09:08:21 [ 13] [ 4] [0320] +09:08:21 [ 15] [ 4] [0320] +09:08:21 [ 18] [ 4] [6011] +09:08:21 [ 19] [ 3] [418] +09:08:21 [ 32] [ 6] [180893] +09:08:21 [ 35] [ 32] [6213545000902142=491212010214328] +09:08:21 [ 37] [ 12] [507902267391] +09:08:21 [ 38] [ 6] [543346] +09:08:21 [ 39] [ 2] [00] +09:08:21 [ 41] [ 8] [0111BLBR] +09:08:21 [ 49] [ 3] [418] +09:08:21 [ 54] [ 40] [0001418C0001344984470002418C000134498447] +09:08:21 ============================================================================ +09:08:21 Sending to : +09:08:21 ============================================================================ +09:08:21 + + +waiting on router queue for slot.... +09:08:22 ============================================================================ +09:08:22 Slot Id : <236> +09:08:22 Transaction Type : RESPONSE +09:08:22 Received From : +09:08:22 ============================================================================ +09:08:22 FNo. Len. Field Value +09:08:22 ============================================================================ +09:08:22 [ 1] [ 4] [0210] +09:08:22 [ 2] [ 16] [6213545000902142] +09:08:22 [ 3] [ 6] [010000] +09:08:22 [ 4] [ 12] [000010000000] +09:08:22 [ 7] [ 10] [0320020725] +09:08:22 [ 11] [ 6] [267391] +09:08:22 [ 12] [ 6] [090725] +09:08:22 [ 13] [ 4] [0320] +09:08:22 [ 15] [ 4] [0320] +09:08:22 [ 18] [ 4] [6011] +09:08:22 [ 19] [ 3] [418] +09:08:22 [ 32] [ 6] [180893] +09:08:22 [ 35] [ 32] [6213545000902142=491212010214328] +09:08:22 [ 37] [ 12] [507902267391] +09:08:22 [ 38] [ 6] [543346] +09:08:22 [ 39] [ 2] [00] +09:08:22 [ 41] [ 8] [0111BLBR] +09:08:22 [ 49] [ 3] [418] +09:08:22 [ 54] [ 40] [0001418C0001344984470002418C000134498447] +09:08:22 ============================================================================ +09:08:22 Calculate Source COMM Id = 2 +09:08:22 ============================================================================ +09:08:22 + + +waiting on router queue for slot.... +09:08:23 ============================================================================ +09:08:23 Slot Id : <267> +09:08:23 Transaction Type : REQUEST +09:08:23 Received From : +09:08:23 ============================================================================ +09:08:23 FNo. Len. Field Value +09:08:23 ============================================================================ +09:08:23 [ 1] [ 4] [0200] +09:08:23 [ 2] [ 16] [6213545000837470] +09:08:23 [ 3] [ 6] [011000] +09:08:23 [ 4] [ 12] [000010000000] +09:08:23 [ 7] [ 10] [0320090845] +09:08:23 [ 11] [ 6] [202655] +09:08:23 [ 12] [ 6] [094925] +09:08:23 [ 13] [ 4] [0320] +09:08:23 [ 14] [ 4] [4912] +09:08:23 [ 15] [ 4] [0320] +09:08:23 [ 18] [ 4] [6011] +09:08:23 [ 19] [ 3] [418] +09:08:23 [ 22] [ 3] [021] +09:08:23 [ 25] [ 2] [01] +09:08:23 [ 28] [ 9] [D00002000] +09:08:23 [ 32] [ 6] [198901] +09:08:23 [ 35] [ 32] [6213545000837470=491212013747901] +09:08:23 [ 37] [ 12] [507909202655] +09:08:23 [ 41] [ 8] [00002203] +09:08:23 [ 42] [ 15] [000000041002203] +09:08:23 [ 43] [ 40] [JDB ATM NAHAE VIENTIAN VN ] +09:08:23 [ 49] [ 3] [418] +09:08:23 [ 52] [ 16] [2049658639A2F69D] +09:08:23 ============================================================================ +09:08:23 + + +waiting on router queue for slot.... +09:08:23 Sending to : +09:08:23 ============================================================================ +09:08:23 Sending to : +09:08:23 ============================================================================ +09:08:24 ============================================================================ +09:08:24 Slot Id : <267> +09:08:24 Transaction Type : REQUEST +09:08:24 Received From : +09:08:24 ============================================================================ +09:08:24 FNo. Len. Field Value +09:08:24 ============================================================================ +09:08:24 [ 1] [ 4] [0200] +09:08:24 [ 2] [ 16] [6213545000837470] +09:08:24 [ 3] [ 6] [011000] +09:08:24 [ 4] [ 12] [000010000000] +09:08:24 [ 7] [ 10] [0320090845] +09:08:24 [ 11] [ 6] [202655] +09:08:24 [ 12] [ 6] [094925] +09:08:24 [ 13] [ 4] [0320] +09:08:24 [ 14] [ 4] [4912] +09:08:24 [ 15] [ 4] [0320] +09:08:24 [ 18] [ 4] [6011] +09:08:24 [ 19] [ 3] [418] +09:08:24 [ 22] [ 3] [021] +09:08:24 [ 25] [ 2] [01] +09:08:24 [ 28] [ 9] [D00002000] +09:08:24 [ 32] [ 6] [198901] +09:08:24 [ 35] [ 32] [6213545000837470=491212013747901] +09:08:24 [ 37] [ 12] [507909202655] +09:08:24 [ 41] [ 8] [00002203] +09:08:24 [ 42] [ 15] [000000041002203] +09:08:24 [ 43] [ 40] [JDB ATM NAHAE VIENTIAN VN ] +09:08:24 [ 49] [ 3] [418] +09:08:24 [ 52] [ 16] [2049658639A2F69D] +09:08:24 ============================================================================ +09:08:24 + + +waiting on router queue for slot.... +09:08:24 Sending to : +09:08:24 ============================================================================ +09:08:24 ============================================================================ +09:08:24 Slot Id : <267> +09:08:24 Transaction Type : REQUEST +09:08:24 Received From : +09:08:24 ============================================================================ +09:08:24 FNo. Len. Field Value +09:08:24 ============================================================================ +09:08:24 [ 1] [ 4] [0200] +09:08:24 [ 2] [ 16] [6213545000837470] +09:08:24 [ 3] [ 6] [011000] +09:08:24 [ 4] [ 12] [000010000000] +09:08:24 [ 7] [ 10] [0320090845] +09:08:24 [ 11] [ 6] [202655] +09:08:24 [ 12] [ 6] [094925] +09:08:24 [ 13] [ 4] [0320] +09:08:24 [ 14] [ 4] [4912] +09:08:24 [ 15] [ 4] [0320] +09:08:24 [ 18] [ 4] [6011] +09:08:24 [ 19] [ 3] [418] +09:08:24 [ 22] [ 3] [021] +09:08:24 [ 25] [ 2] [01] +09:08:24 [ 28] [ 9] [D00002000] +09:08:24 [ 32] [ 6] [198901] +09:08:24 [ 35] [ 32] [6213545000837470=491212013747901] +09:08:24 [ 37] [ 12] [507909202655] +09:08:24 [ 41] [ 8] [00002203] +09:08:24 [ 42] [ 15] [000000041002203] +09:08:24 [ 43] [ 40] [JDB ATM NAHAE VIENTIAN VN ] +09:08:24 [ 49] [ 3] [418] +09:08:24 [ 52] [ 16] [2B6C9648B4A83101] +09:08:24 ============================================================================ +09:08:24 + + +waiting on router queue for slot.... +09:08:24 Sending to : <0> +09:08:24 ============================================================================ +09:08:25 ============================================================================ +09:08:25 Slot Id : <278> +09:08:25 Transaction Type : REQUEST +09:08:25 Received From : +09:08:25 ============================================================================ +09:08:25 FNo. Len. Field Value +09:08:25 ============================================================================ +09:08:25 [ 1] [ 4] [0200] +09:08:25 [ 2] [ 16] [1808930500014287] +09:08:25 [ 3] [ 6] [010000] +09:08:25 [ 4] [ 12] [000100000000] +09:08:25 [ 7] [ 10] [0320090616] +09:08:25 [ 11] [ 6] [934741] +09:08:25 [ 12] [ 6] [090616] +09:08:25 [ 13] [ 4] [0320] +09:08:25 [ 15] [ 4] [0320] +09:08:25 [ 18] [ 4] [6011] +09:08:25 [ 19] [ 3] [418] +09:08:25 [ 22] [ 3] [021] +09:08:25 [ 25] [ 2] [01] +09:08:25 [ 28] [ 9] [D00002000] +09:08:25 [ 32] [ 6] [668899] +09:08:25 [ 35] [ 27] [1808930500014287=1803500992] +09:08:25 [ 37] [ 12] [507900844850] +09:08:25 [ 41] [ 8] [03015003] +09:08:25 [ 42] [ 15] [APT ] +09:08:25 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:08:25 [ 49] [ 3] [418] +09:08:25 [ 52] [ 16] [E26933807A6E07AB] +09:08:25 ============================================================================ +09:08:25 + + +waiting on router queue for slot.... +09:08:25 Sending to : +09:08:25 ============================================================================ +09:08:25 Sending to : +09:08:25 ============================================================================ +09:08:25 ============================================================================ +09:08:25 Slot Id : <293> +09:08:25 Transaction Type : REQUEST +09:08:25 Received From : +09:08:25 ============================================================================ +09:08:25 FNo. Len. Field Value +09:08:25 ============================================================================ +09:08:25 [ 1] [ 4] [0200] +09:08:25 [ 2] [ 16] [6213545000660914] +09:08:25 [ 3] [ 6] [302000] +09:08:25 [ 4] [ 12] [000000000000] +09:08:25 [ 7] [ 10] [0320090617] +09:08:25 [ 11] [ 6] [934742] +09:08:25 [ 12] [ 6] [090617] +09:08:25 [ 13] [ 4] [0320] +09:08:25 [ 15] [ 4] [0320] +09:08:25 [ 18] [ 4] [6011] +09:08:25 [ 19] [ 3] [418] +09:08:25 [ 22] [ 3] [021] +09:08:25 [ 25] [ 2] [01] +09:08:25 [ 28] [ 9] [D00000000] +09:08:25 [ 32] [ 6] [668899] +09:08:25 [ 35] [ 32] [6213545000660914=491212016091669] +09:08:25 [ 37] [ 12] [507901989958] +09:08:25 [ 41] [ 8] [03309001] +09:08:25 [ 42] [ 15] [APT ] +09:08:25 [ 43] [ 40] [ PHONESAVANH MARKET UNIT P] +09:08:25 [ 49] [ 3] [418] +09:08:25 [ 52] [ 16] [650F1DCDE35F24A7] +09:08:25 ============================================================================ +09:08:25 + + +waiting on router queue for slot.... +09:08:25 Sending to : +09:08:25 ============================================================================ +09:08:25 Sending to : +09:08:25 ============================================================================ +09:08:25 ============================================================================ +09:08:25 Slot Id : <278> +09:08:25 Transaction Type : REQUEST +09:08:25 Received From : +09:08:25 ============================================================================ +09:08:25 FNo. Len. Field Value +09:08:25 ============================================================================ +09:08:25 [ 1] [ 4] [0200] +09:08:25 [ 2] [ 16] [1808930500014287] +09:08:25 [ 3] [ 6] [010000] +09:08:25 [ 4] [ 12] [000100000000] +09:08:25 [ 7] [ 10] [0320090616] +09:08:25 [ 11] [ 6] [934741] +09:08:25 [ 12] [ 6] [090616] +09:08:25 [ 13] [ 4] [0320] +09:08:25 [ 15] [ 4] [0320] +09:08:25 [ 18] [ 4] [6011] +09:08:25 [ 19] [ 3] [418] +09:08:25 [ 22] [ 3] [021] +09:08:25 [ 25] [ 2] [01] +09:08:25 [ 28] [ 9] [D00002000] +09:08:25 [ 32] [ 6] [668899] +09:08:25 [ 35] [ 27] [1808930500014287=1803500992] +09:08:25 [ 37] [ 12] [507900844850] +09:08:25 [ 41] [ 8] [03015003] +09:08:25 [ 42] [ 15] [APT ] +09:08:25 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:08:25 [ 49] [ 3] [418] +09:08:25 [ 52] [ 16] [E26933807A6E07AB] +09:08:25 ============================================================================ +09:08:25 + + +waiting on router queue for slot.... +09:08:25 Sending to : +09:08:25 ============================================================================ +09:08:25 ============================================================================ +09:08:25 Slot Id : <278> +09:08:25 Transaction Type : REQUEST +09:08:25 Received From : +09:08:25 ============================================================================ +09:08:25 FNo. Len. Field Value +09:08:25 ============================================================================ +09:08:25 [ 1] [ 4] [0200] +09:08:25 [ 2] [ 16] [1808930500014287] +09:08:25 [ 3] [ 6] [010000] +09:08:25 [ 4] [ 12] [000100000000] +09:08:25 [ 7] [ 10] [0320090616] +09:08:25 [ 11] [ 6] [934741] +09:08:25 [ 12] [ 6] [090616] +09:08:25 [ 13] [ 4] [0320] +09:08:25 [ 15] [ 4] [0320] +09:08:25 [ 18] [ 4] [6011] +09:08:25 [ 19] [ 3] [418] +09:08:25 [ 22] [ 3] [021] +09:08:25 [ 25] [ 2] [01] +09:08:25 [ 28] [ 9] [D00002000] +09:08:25 [ 32] [ 6] [668899] +09:08:25 [ 35] [ 27] [1808930500014287=1803500992] +09:08:25 [ 37] [ 12] [507900844850] +09:08:25 [ 41] [ 8] [03015003] +09:08:25 [ 42] [ 15] [APT ] +09:08:25 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:08:25 [ 49] [ 3] [418] +09:08:25 [ 52] [ 16] [9772F5F0489E1948] +09:08:25 ============================================================================ +09:08:25 + + +waiting on router queue for slot.... +09:08:25 Sending to : <2> +09:08:25 ============================================================================ +09:08:26 ============================================================================ +09:08:26 Slot Id : <267> +09:08:26 Transaction Type : RESPONSE +09:08:26 Received From : +09:08:26 ============================================================================ +09:08:26 FNo. Len. Field Value +09:08:26 ============================================================================ +09:08:26 [ 1] [ 4] [0210] +09:08:26 [ 2] [ 16] [6213545000837470] +09:08:26 [ 3] [ 6] [011000] +09:08:26 [ 4] [ 12] [000010000000] +09:08:26 [ 7] [ 10] [0320090845] +09:08:26 [ 11] [ 6] [202655] +09:08:26 [ 12] [ 6] [094925] +09:08:26 [ 13] [ 4] [0320] +09:08:26 [ 15] [ 4] [0320] +09:08:26 [ 18] [ 4] [6011] +09:08:26 [ 19] [ 3] [418] +09:08:26 [ 32] [ 6] [198901] +09:08:26 [ 35] [ 32] [6213545000837470=491212013747901] +09:08:26 [ 37] [ 12] [507909202655] +09:08:26 [ 38] [ 6] [267428] +09:08:26 [ 39] [ 2] [00] +09:08:26 [ 41] [ 8] [00002203] +09:08:26 [ 49] [ 3] [418] +09:08:26 [ 54] [ 40] [1001418C0000888412331002418C000088841233] +09:08:26 ============================================================================ +09:08:26 Sending to : +09:08:26 ============================================================================ +09:08:26 + + +waiting on router queue for slot.... +09:08:26 ============================================================================ +09:08:26 Slot Id : <293> +09:08:26 Transaction Type : REQUEST +09:08:26 Received From : +09:08:26 ============================================================================ +09:08:26 FNo. Len. Field Value +09:08:26 ============================================================================ +09:08:26 [ 1] [ 4] [0200] +09:08:26 [ 2] [ 16] [6213545000660914] +09:08:26 [ 3] [ 6] [302000] +09:08:26 [ 4] [ 12] [000000000000] +09:08:26 [ 7] [ 10] [0320090617] +09:08:26 [ 11] [ 6] [934742] +09:08:26 [ 12] [ 6] [090617] +09:08:26 [ 13] [ 4] [0320] +09:08:26 [ 15] [ 4] [0320] +09:08:26 [ 18] [ 4] [6011] +09:08:26 [ 19] [ 3] [418] +09:08:26 [ 22] [ 3] [021] +09:08:26 [ 25] [ 2] [01] +09:08:26 [ 28] [ 9] [D00000000] +09:08:26 [ 32] [ 6] [668899] +09:08:26 [ 35] [ 32] [6213545000660914=491212016091669] +09:08:26 [ 37] [ 12] [507901989958] +09:08:26 [ 41] [ 8] [03309001] +09:08:26 [ 42] [ 15] [APT ] +09:08:26 [ 43] [ 40] [ PHONESAVANH MARKET UNIT P] +09:08:26 [ 49] [ 3] [418] +09:08:26 [ 52] [ 16] [650F1DCDE35F24A7] +09:08:26 ============================================================================ +09:08:26 + + +waiting on router queue for slot.... +09:08:26 Sending to : +09:08:26 ============================================================================ +09:08:26 ============================================================================ +09:08:26 Slot Id : <293> +09:08:26 Transaction Type : REQUEST +09:08:26 Received From : +09:08:26 ============================================================================ +09:08:26 FNo. Len. Field Value +09:08:26 ============================================================================ +09:08:26 [ 1] [ 4] [0200] +09:08:26 [ 2] [ 16] [6213545000660914] +09:08:26 [ 3] [ 6] [302000] +09:08:26 [ 4] [ 12] [000000000000] +09:08:26 [ 7] [ 10] [0320090617] +09:08:26 [ 11] [ 6] [934742] +09:08:26 [ 12] [ 6] [090617] +09:08:26 [ 13] [ 4] [0320] +09:08:26 [ 15] [ 4] [0320] +09:08:26 [ 18] [ 4] [6011] +09:08:26 [ 19] [ 3] [418] +09:08:26 [ 22] [ 3] [021] +09:08:26 [ 25] [ 2] [01] +09:08:26 [ 28] [ 9] [D00000000] +09:08:26 [ 32] [ 6] [668899] +09:08:26 [ 35] [ 32] [6213545000660914=491212016091669] +09:08:26 [ 37] [ 12] [507901989958] +09:08:26 [ 41] [ 8] [03309001] +09:08:26 [ 42] [ 15] [APT ] +09:08:26 [ 43] [ 40] [ PHONESAVANH MARKET UNIT P] +09:08:26 [ 49] [ 3] [418] +09:08:26 [ 52] [ 16] [F34FC4456BA750D9] +09:08:26 ============================================================================ +09:08:26 + + +waiting on router queue for slot.... +09:08:26 Sending to : <0> +09:08:26 ============================================================================ +09:08:26 ============================================================================ +09:08:26 Slot Id : <293> +09:08:26 Transaction Type : RESPONSE +09:08:26 Received From : +09:08:26 ============================================================================ +09:08:26 FNo. Len. Field Value +09:08:26 ============================================================================ +09:08:26 [ 1] [ 4] [0210] +09:08:26 [ 2] [ 16] [6213545000660914] +09:08:26 [ 3] [ 6] [302000] +09:08:26 [ 4] [ 12] [000000000000] +09:08:26 [ 7] [ 10] [0320090617] +09:08:26 [ 11] [ 6] [934742] +09:08:26 [ 12] [ 6] [090617] +09:08:26 [ 13] [ 4] [0320] +09:08:26 [ 15] [ 4] [0320] +09:08:26 [ 18] [ 4] [6011] +09:08:26 [ 19] [ 3] [418] +09:08:26 [ 32] [ 6] [668899] +09:08:26 [ 35] [ 32] [6213545000660914=491212016091669] +09:08:26 [ 37] [ 12] [507901989958] +09:08:26 [ 38] [ 6] [341103] +09:08:26 [ 39] [ 2] [00] +09:08:26 [ 41] [ 8] [03309001] +09:08:26 [ 49] [ 3] [418] +09:08:26 [ 54] [ 40] [2001418C0002767603852002418C000276760385] +09:08:26 ============================================================================ +09:08:26 Sending to : +09:08:26 ============================================================================ +09:08:26 + + +waiting on router queue for slot.... +09:08:27 ============================================================================ +09:08:27 Slot Id : <267> +09:08:27 Transaction Type : RESPONSE +09:08:27 Received From : +09:08:27 ============================================================================ +09:08:27 FNo. Len. Field Value +09:08:27 ============================================================================ +09:08:27 [ 1] [ 4] [0210] +09:08:27 [ 2] [ 16] [6213545000837470] +09:08:27 [ 3] [ 6] [011000] +09:08:27 [ 4] [ 12] [000010000000] +09:08:27 [ 7] [ 10] [0320090845] +09:08:27 [ 11] [ 6] [202655] +09:08:27 [ 12] [ 6] [094925] +09:08:27 [ 13] [ 4] [0320] +09:08:27 [ 15] [ 4] [0320] +09:08:27 [ 18] [ 4] [6011] +09:08:27 [ 19] [ 3] [418] +09:08:27 [ 32] [ 6] [198901] +09:08:27 [ 35] [ 32] [6213545000837470=491212013747901] +09:08:27 [ 37] [ 12] [507909202655] +09:08:27 [ 38] [ 6] [267428] +09:08:27 [ 39] [ 2] [00] +09:08:27 [ 41] [ 8] [00002203] +09:08:27 [ 49] [ 3] [418] +09:08:27 [ 54] [ 40] [1001418C0000888412331002418C000088841233] +09:08:27 ============================================================================ +09:08:27 Calculate Source COMM Id = 5 +09:08:27 ============================================================================ +09:08:27 + + +waiting on router queue for slot.... +09:08:27 ============================================================================ +09:08:27 Slot Id : <278> +09:08:27 Transaction Type : RESPONSE +09:08:27 Received From : +09:08:27 ============================================================================ +09:08:27 FNo. Len. Field Value +09:08:27 ============================================================================ +09:08:27 [ 1] [ 4] [0210] +09:08:27 [ 2] [ 16] [1808930500014287] +09:08:27 [ 3] [ 6] [010000] +09:08:27 [ 4] [ 12] [000100000000] +09:08:27 [ 6] [ 12] [000100000000] +09:08:27 [ 7] [ 10] [0320090616] +09:08:27 [ 11] [ 6] [934741] +09:08:27 [ 12] [ 6] [090616] +09:08:27 [ 13] [ 4] [0320] +09:08:27 [ 18] [ 4] [6011] +09:08:27 [ 19] [ 3] [418] +09:08:27 [ 22] [ 3] [021] +09:08:27 [ 28] [ 9] [D00002000] +09:08:27 [ 32] [ 6] [668899] +09:08:27 [ 35] [ 27] [1808930500014287=1803500992] +09:08:27 [ 37] [ 12] [507900844850] +09:08:27 [ 39] [ 2] [75] +09:08:27 [ 41] [ 8] [03015003] +09:08:27 [ 49] [ 3] [418] +09:08:27 [ 51] [ 3] [418] +09:08:27 [ 52] [ 16] [9772F5F0489E1948] +09:08:27 ============================================================================ +09:08:27 Sending to : +09:08:27 ============================================================================ +09:08:27 + + +waiting on router queue for slot.... +09:08:29 ============================================================================ +09:08:29 Slot Id : <293> +09:08:29 Transaction Type : RESPONSE +09:08:29 Received From : +09:08:29 ============================================================================ +09:08:29 FNo. Len. Field Value +09:08:29 ============================================================================ +09:08:29 [ 1] [ 4] [0210] +09:08:29 [ 2] [ 16] [6213545000660914] +09:08:29 [ 3] [ 6] [302000] +09:08:29 [ 4] [ 12] [000000000000] +09:08:29 [ 7] [ 10] [0320090617] +09:08:29 [ 11] [ 6] [934742] +09:08:29 [ 12] [ 6] [090617] +09:08:29 [ 13] [ 4] [0320] +09:08:29 [ 15] [ 4] [0320] +09:08:29 [ 18] [ 4] [6011] +09:08:29 [ 19] [ 3] [418] +09:08:29 [ 32] [ 6] [668899] +09:08:29 [ 35] [ 32] [6213545000660914=491212016091669] +09:08:29 [ 37] [ 12] [507901989958] +09:08:29 [ 38] [ 6] [341103] +09:08:29 [ 39] [ 2] [00] +09:08:29 [ 41] [ 8] [03309001] +09:08:29 [ 49] [ 3] [418] +09:08:29 [ 54] [ 40] [2001418C0002767603852002418C000276760385] +09:08:29 ============================================================================ +09:08:29 Calculate Source COMM Id = 4 +09:08:29 ============================================================================ +09:08:29 + + +waiting on router queue for slot.... +09:08:30 ============================================================================ +09:08:30 Slot Id : <278> +09:08:30 Transaction Type : RESPONSE +09:08:30 Received From : +09:08:30 ============================================================================ +09:08:30 FNo. Len. Field Value +09:08:30 ============================================================================ +09:08:30 [ 1] [ 4] [0210] +09:08:30 [ 2] [ 16] [1808930500014287] +09:08:30 [ 3] [ 6] [010000] +09:08:30 [ 4] [ 12] [000100000000] +09:08:30 [ 6] [ 12] [000100000000] +09:08:30 [ 7] [ 10] [0320090616] +09:08:30 [ 11] [ 6] [934741] +09:08:30 [ 12] [ 6] [090616] +09:08:30 [ 13] [ 4] [0320] +09:08:30 [ 18] [ 4] [6011] +09:08:30 [ 19] [ 3] [418] +09:08:30 [ 22] [ 3] [021] +09:08:30 [ 28] [ 9] [D00002000] +09:08:30 [ 32] [ 6] [668899] +09:08:30 [ 35] [ 27] [1808930500014287=1803500992] +09:08:30 [ 37] [ 12] [507900844850] +09:08:30 [ 39] [ 2] [75] +09:08:30 [ 41] [ 8] [03015003] +09:08:30 [ 49] [ 3] [418] +09:08:30 [ 51] [ 3] [418] +09:08:30 [ 52] [ 16] [9772F5F0489E1948] +09:08:30 ============================================================================ +09:08:30 Calculate Source COMM Id = 4 +09:08:30 ============================================================================ +09:08:30 + + +waiting on router queue for slot.... +09:08:32 ============================================================================ +09:08:32 Slot Id : <217> +09:08:32 Transaction Type : REQUEST +09:08:32 Received From : +09:08:32 ============================================================================ +09:08:32 FNo. Len. Field Value +09:08:32 ============================================================================ +09:08:32 [ 1] [ 4] [0200] +09:08:32 [ 2] [ 16] [6213541000224025] +09:08:32 [ 3] [ 6] [010000] +09:08:32 [ 4] [ 12] [000100000000] +09:08:32 [ 7] [ 10] [0320090623] +09:08:32 [ 11] [ 6] [934747] +09:08:32 [ 12] [ 6] [090623] +09:08:32 [ 13] [ 4] [0320] +09:08:32 [ 15] [ 4] [0320] +09:08:32 [ 18] [ 4] [6011] +09:08:32 [ 19] [ 3] [418] +09:08:32 [ 22] [ 3] [021] +09:08:32 [ 25] [ 2] [01] +09:08:32 [ 28] [ 9] [D00002000] +09:08:32 [ 32] [ 6] [668899] +09:08:32 [ 35] [ 32] [6213541000224025=491212012402285] +09:08:32 [ 37] [ 12] [507901489192] +09:08:32 [ 41] [ 8] [03515001] +09:08:32 [ 42] [ 15] [APT ] +09:08:32 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +09:08:32 [ 49] [ 3] [418] +09:08:32 [ 52] [ 16] [F8A43953573E22B0] +09:08:32 ============================================================================ +09:08:32 + + +waiting on router queue for slot.... +09:08:32 Sending to : +09:08:32 ============================================================================ +09:08:32 Sending to : +09:08:32 ============================================================================ +09:08:32 ============================================================================ +09:08:32 Slot Id : <217> +09:08:32 Transaction Type : REQUEST +09:08:32 Received From : +09:08:32 ============================================================================ +09:08:32 FNo. Len. Field Value +09:08:32 ============================================================================ +09:08:32 [ 1] [ 4] [0200] +09:08:32 [ 2] [ 16] [6213541000224025] +09:08:32 [ 3] [ 6] [010000] +09:08:32 [ 4] [ 12] [000100000000] +09:08:32 [ 7] [ 10] [0320090623] +09:08:32 [ 11] [ 6] [934747] +09:08:32 [ 12] [ 6] [090623] +09:08:32 [ 13] [ 4] [0320] +09:08:32 [ 15] [ 4] [0320] +09:08:32 [ 18] [ 4] [6011] +09:08:32 [ 19] [ 3] [418] +09:08:32 [ 22] [ 3] [021] +09:08:32 [ 25] [ 2] [01] +09:08:32 [ 28] [ 9] [D00002000] +09:08:32 [ 32] [ 6] [668899] +09:08:32 [ 35] [ 32] [6213541000224025=491212012402285] +09:08:32 [ 37] [ 12] [507901489192] +09:08:32 [ 41] [ 8] [03515001] +09:08:32 [ 42] [ 15] [APT ] +09:08:32 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +09:08:32 [ 49] [ 3] [418] +09:08:32 [ 52] [ 16] [F8A43953573E22B0] +09:08:32 ============================================================================ +09:08:32 + + +waiting on router queue for slot.... +09:08:32 Sending to : +09:08:32 ============================================================================ +09:08:32 ============================================================================ +09:08:32 Slot Id : <217> +09:08:32 Transaction Type : REQUEST +09:08:32 Received From : +09:08:32 ============================================================================ +09:08:32 FNo. Len. Field Value +09:08:32 ============================================================================ +09:08:32 [ 1] [ 4] [0200] +09:08:32 [ 2] [ 16] [6213541000224025] +09:08:32 [ 3] [ 6] [010000] +09:08:32 [ 4] [ 12] [000100000000] +09:08:32 [ 7] [ 10] [0320090623] +09:08:32 [ 11] [ 6] [934747] +09:08:32 [ 12] [ 6] [090623] +09:08:32 [ 13] [ 4] [0320] +09:08:32 [ 15] [ 4] [0320] +09:08:32 [ 18] [ 4] [6011] +09:08:32 [ 19] [ 3] [418] +09:08:32 [ 22] [ 3] [021] +09:08:32 [ 25] [ 2] [01] +09:08:32 [ 28] [ 9] [D00002000] +09:08:32 [ 32] [ 6] [668899] +09:08:32 [ 35] [ 32] [6213541000224025=491212012402285] +09:08:32 [ 37] [ 12] [507901489192] +09:08:32 [ 41] [ 8] [03515001] +09:08:32 [ 42] [ 15] [APT ] +09:08:32 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +09:08:32 [ 49] [ 3] [418] +09:08:32 [ 52] [ 16] [98D44C80188AC4D3] +09:08:32 ============================================================================ +09:08:32 + + +waiting on router queue for slot.... +09:08:32 Sending to : <0> +09:08:32 ============================================================================ +09:08:34 ============================================================================ +09:08:34 Slot Id : <217> +09:08:34 Transaction Type : RESPONSE +09:08:34 Received From : +09:08:34 ============================================================================ +09:08:34 FNo. Len. Field Value +09:08:34 ============================================================================ +09:08:34 [ 1] [ 4] [0210] +09:08:34 [ 2] [ 16] [6213541000224025] +09:08:34 [ 3] [ 6] [010000] +09:08:34 [ 4] [ 12] [000100000000] +09:08:34 [ 7] [ 10] [0320090623] +09:08:34 [ 11] [ 6] [934747] +09:08:34 [ 12] [ 6] [090623] +09:08:34 [ 13] [ 4] [0320] +09:08:34 [ 15] [ 4] [0320] +09:08:34 [ 18] [ 4] [6011] +09:08:34 [ 19] [ 3] [418] +09:08:34 [ 32] [ 6] [668899] +09:08:34 [ 35] [ 32] [6213541000224025=491212012402285] +09:08:34 [ 37] [ 12] [507901489192] +09:08:34 [ 38] [ 6] [745523] +09:08:34 [ 39] [ 2] [00] +09:08:34 [ 41] [ 8] [03515001] +09:08:34 [ 49] [ 3] [418] +09:08:34 [ 54] [ 40] [0001418C0003156322090002418C000315632209] +09:08:34 ============================================================================ +09:08:34 Sending to : +09:08:34 ============================================================================ +09:08:34 + + +waiting on router queue for slot.... +09:08:35 ============================================================================ +09:08:35 Slot Id : <217> +09:08:35 Transaction Type : RESPONSE +09:08:35 Received From : +09:08:35 ============================================================================ +09:08:35 FNo. Len. Field Value +09:08:35 ============================================================================ +09:08:35 [ 1] [ 4] [0210] +09:08:35 [ 2] [ 16] [6213541000224025] +09:08:35 [ 3] [ 6] [010000] +09:08:35 [ 4] [ 12] [000100000000] +09:08:35 [ 7] [ 10] [0320090623] +09:08:35 [ 11] [ 6] [934747] +09:08:35 [ 12] [ 6] [090623] +09:08:35 [ 13] [ 4] [0320] +09:08:35 [ 15] [ 4] [0320] +09:08:35 [ 18] [ 4] [6011] +09:08:35 [ 19] [ 3] [418] +09:08:35 [ 32] [ 6] [668899] +09:08:35 [ 35] [ 32] [6213541000224025=491212012402285] +09:08:35 [ 37] [ 12] [507901489192] +09:08:35 [ 38] [ 6] [745523] +09:08:35 [ 39] [ 2] [00] +09:08:35 [ 41] [ 8] [03515001] +09:08:35 [ 49] [ 3] [418] +09:08:35 [ 54] [ 40] [0001418C0003156322090002418C000315632209] +09:08:35 ============================================================================ +09:08:35 Calculate Source COMM Id = 4 +09:08:35 ============================================================================ +09:08:35 + + +waiting on router queue for slot.... +09:08:41 ============================================================================ +09:08:41 Slot Id : <294> +09:08:41 Transaction Type : REQUEST +09:08:41 Received From : +09:08:41 ============================================================================ +09:08:41 FNo. Len. Field Value +09:08:41 ============================================================================ +09:08:41 [ 1] [ 4] [0800] +09:08:41 [ 7] [ 10] [0320020749] +09:08:41 [ 11] [ 6] [155556] +09:08:41 [ 70] [ 3] [301] +09:08:41 ============================================================================ +09:08:41 + + +waiting on router queue for slot.... +09:08:41 Sending to : +09:08:41 ============================================================================ +09:08:41 ============================================================================ +09:08:41 Slot Id : <294> +09:08:41 Transaction Type : RESPONSE +09:08:41 Received From : +09:08:41 ============================================================================ +09:08:41 FNo. Len. Field Value +09:08:41 ============================================================================ +09:08:41 [ 1] [ 4] [0810] +09:08:41 [ 7] [ 10] [0320020749] +09:08:41 [ 11] [ 6] [155556] +09:08:41 [ 39] [ 2] [00] +09:08:41 [ 70] [ 3] [301] +09:08:41 ============================================================================ +09:08:41 Calculate Source COMM Id = 2 +09:08:41 ============================================================================ +09:08:41 + + +waiting on router queue for slot.... +09:08:56 ============================================================================ +09:08:56 Slot Id : <298> +09:08:56 Transaction Type : REQUEST +09:08:56 Received From : +09:08:56 ============================================================================ +09:08:56 FNo. Len. Field Value +09:08:56 ============================================================================ +09:08:56 [ 1] [ 4] [0200] +09:08:56 [ 2] [ 16] [6213545000926398] +09:08:56 [ 3] [ 6] [011000] +09:08:56 [ 4] [ 12] [000012000000] +09:08:56 [ 7] [ 10] [0320020803] +09:08:56 [ 11] [ 6] [267395] +09:08:56 [ 12] [ 6] [090803] +09:08:56 [ 13] [ 4] [0320] +09:08:56 [ 14] [ 4] [4912] +09:08:56 [ 15] [ 4] [0320] +09:08:56 [ 18] [ 4] [6011] +09:08:56 [ 19] [ 3] [418] +09:08:56 [ 22] [ 3] [021] +09:08:56 [ 25] [ 2] [01] +09:08:56 [ 28] [ 9] [D00002000] +09:08:56 [ 32] [ 6] [180893] +09:08:56 [ 35] [ 32] [6213545000926398=491212012639048] +09:08:56 [ 37] [ 12] [507902267395] +09:08:56 [ 41] [ 8] [0368KMMX] +09:08:56 [ 42] [ 15] [999999 ] +09:08:56 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +09:08:56 [ 49] [ 3] [418] +09:08:56 [ 52] [ 16] [AC5290311DAC645D] +09:08:56 ============================================================================ +09:08:56 + + +waiting on router queue for slot.... +09:08:56 Sending to : +09:08:56 ============================================================================ +09:08:56 Sending to : +09:08:56 ============================================================================ +09:08:56 ============================================================================ +09:08:56 Slot Id : <298> +09:08:56 Transaction Type : REQUEST +09:08:56 Received From : +09:08:56 ============================================================================ +09:08:56 FNo. Len. Field Value +09:08:56 ============================================================================ +09:08:56 [ 1] [ 4] [0200] +09:08:56 [ 2] [ 16] [6213545000926398] +09:08:56 [ 3] [ 6] [011000] +09:08:56 [ 4] [ 12] [000012000000] +09:08:56 [ 7] [ 10] [0320020803] +09:08:56 [ 11] [ 6] [267395] +09:08:56 [ 12] [ 6] [090803] +09:08:56 [ 13] [ 4] [0320] +09:08:56 [ 14] [ 4] [4912] +09:08:56 [ 15] [ 4] [0320] +09:08:56 [ 18] [ 4] [6011] +09:08:56 [ 19] [ 3] [418] +09:08:56 [ 22] [ 3] [021] +09:08:56 [ 25] [ 2] [01] +09:08:56 [ 28] [ 9] [D00002000] +09:08:56 [ 32] [ 6] [180893] +09:08:56 [ 35] [ 32] [6213545000926398=491212012639048] +09:08:56 [ 37] [ 12] [507902267395] +09:08:56 [ 41] [ 8] [0368KMMX] +09:08:56 [ 42] [ 15] [999999 ] +09:08:56 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +09:08:56 [ 49] [ 3] [418] +09:08:56 [ 52] [ 16] [AC5290311DAC645D] +09:08:56 ============================================================================ +09:08:56 + + +waiting on router queue for slot.... +09:08:56 Sending to : +09:08:56 ============================================================================ +09:08:56 ============================================================================ +09:08:56 Slot Id : <298> +09:08:56 Transaction Type : REQUEST +09:08:56 Received From : +09:08:56 ============================================================================ +09:08:56 FNo. Len. Field Value +09:08:56 ============================================================================ +09:08:56 [ 1] [ 4] [0200] +09:08:56 [ 2] [ 16] [6213545000926398] +09:08:56 [ 3] [ 6] [011000] +09:08:56 [ 4] [ 12] [000012000000] +09:08:56 [ 7] [ 10] [0320020803] +09:08:56 [ 11] [ 6] [267395] +09:08:56 [ 12] [ 6] [090803] +09:08:56 [ 13] [ 4] [0320] +09:08:56 [ 14] [ 4] [4912] +09:08:56 [ 15] [ 4] [0320] +09:08:56 [ 18] [ 4] [6011] +09:08:56 [ 19] [ 3] [418] +09:08:56 [ 22] [ 3] [021] +09:08:56 [ 25] [ 2] [01] +09:08:56 [ 28] [ 9] [D00002000] +09:08:56 [ 32] [ 6] [180893] +09:08:56 [ 35] [ 32] [6213545000926398=491212012639048] +09:08:56 [ 37] [ 12] [507902267395] +09:08:56 [ 41] [ 8] [0368KMMX] +09:08:56 [ 42] [ 15] [999999 ] +09:08:56 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +09:08:56 [ 49] [ 3] [418] +09:08:56 [ 52] [ 16] [5F2015191F41D923] +09:08:56 ============================================================================ +09:08:56 + + +waiting on router queue for slot.... +09:08:56 Sending to : <0> +09:08:56 ============================================================================ +09:08:57 ============================================================================ +09:08:57 Slot Id : <298> +09:08:57 Transaction Type : RESPONSE +09:08:57 Received From : +09:08:57 ============================================================================ +09:08:57 FNo. Len. Field Value +09:08:57 ============================================================================ +09:08:57 [ 1] [ 4] [0210] +09:08:57 [ 2] [ 16] [6213545000926398] +09:08:57 [ 3] [ 6] [011000] +09:08:57 [ 4] [ 12] [000012000000] +09:08:57 [ 7] [ 10] [0320020803] +09:08:57 [ 11] [ 6] [267395] +09:08:57 [ 12] [ 6] [090803] +09:08:57 [ 13] [ 4] [0320] +09:08:57 [ 15] [ 4] [0320] +09:08:57 [ 18] [ 4] [6011] +09:08:57 [ 19] [ 3] [418] +09:08:57 [ 32] [ 6] [180893] +09:08:57 [ 35] [ 32] [6213545000926398=491212012639048] +09:08:57 [ 37] [ 12] [507902267395] +09:08:57 [ 38] [ 6] [641437] +09:08:57 [ 39] [ 2] [00] +09:08:57 [ 41] [ 8] [0368KMMX] +09:08:57 [ 49] [ 3] [418] +09:08:57 [ 54] [ 40] [1001418C0001228355501002418C000122835550] +09:08:57 ============================================================================ +09:08:57 Sending to : +09:08:57 ============================================================================ +09:08:57 + + +waiting on router queue for slot.... +09:08:57 ============================================================================ +09:08:57 Slot Id : <257> +09:08:57 Transaction Type : REQUEST +09:08:57 Received From : +09:08:57 ============================================================================ +09:08:57 FNo. Len. Field Value +09:08:57 ============================================================================ +09:08:57 [ 1] [ 4] [0200] +09:08:57 [ 2] [ 16] [1808931100008745] +09:08:57 [ 3] [ 6] [011000] +09:08:57 [ 4] [ 12] [000050000000] +09:08:57 [ 7] [ 10] [0320090853] +09:08:57 [ 11] [ 6] [694119] +09:08:57 [ 12] [ 6] [090853] +09:08:57 [ 13] [ 4] [0320] +09:08:57 [ 15] [ 4] [0320] +09:08:57 [ 18] [ 4] [6011] +09:08:57 [ 22] [ 3] [900] +09:08:57 [ 25] [ 2] [02] +09:08:57 [ 28] [ 9] [D00002000] +09:08:57 [ 32] [ 6] [621354] +09:08:57 [ 35] [ 27] [1808931100008745=1803500467] +09:08:57 [ 37] [ 12] [507904510061] +09:08:57 [ 41] [ 8] [02001400] +09:08:57 [ 42] [ 15] [NATIVE ] +09:08:57 [ 43] [ 40] [Post Office Thakek LAO] +09:08:57 [ 49] [ 3] [418] +09:08:57 [ 52] [ 16] [A87C54111AF37039] +09:08:57 ============================================================================ +09:08:57 + + +waiting on router queue for slot.... +09:08:57 Sending to : +09:08:57 ============================================================================ +09:08:57 Sending to : +09:08:57 ============================================================================ +09:08:58 ============================================================================ +09:08:58 Slot Id : <257> +09:08:58 Transaction Type : REQUEST +09:08:58 Received From : +09:08:58 ============================================================================ +09:08:58 FNo. Len. Field Value +09:08:58 ============================================================================ +09:08:58 [ 1] [ 4] [0200] +09:08:58 [ 2] [ 16] [1808931100008745] +09:08:58 [ 3] [ 6] [011000] +09:08:58 [ 4] [ 12] [000050000000] +09:08:58 [ 7] [ 10] [0320090853] +09:08:58 [ 11] [ 6] [694119] +09:08:58 [ 12] [ 6] [090853] +09:08:58 [ 13] [ 4] [0320] +09:08:58 [ 15] [ 4] [0320] +09:08:58 [ 18] [ 4] [6011] +09:08:58 [ 22] [ 3] [900] +09:08:58 [ 25] [ 2] [02] +09:08:58 [ 28] [ 9] [D00002000] +09:08:58 [ 32] [ 6] [621354] +09:08:58 [ 35] [ 27] [1808931100008745=1803500467] +09:08:58 [ 37] [ 12] [507904510061] +09:08:58 [ 41] [ 8] [02001400] +09:08:58 [ 42] [ 15] [NATIVE ] +09:08:58 [ 43] [ 40] [Post Office Thakek LAO] +09:08:58 [ 49] [ 3] [418] +09:08:58 [ 52] [ 16] [A87C54111AF37039] +09:08:58 ============================================================================ +09:08:58 + + +waiting on router queue for slot.... +09:08:58 Sending to : +09:08:58 ============================================================================ +09:08:58 ============================================================================ +09:08:58 Slot Id : <257> +09:08:58 Transaction Type : REQUEST +09:08:58 Received From : +09:08:58 ============================================================================ +09:08:58 FNo. Len. Field Value +09:08:58 ============================================================================ +09:08:58 [ 1] [ 4] [0200] +09:08:58 [ 2] [ 16] [1808931100008745] +09:08:58 [ 3] [ 6] [011000] +09:08:58 [ 4] [ 12] [000050000000] +09:08:58 [ 7] [ 10] [0320090853] +09:08:58 [ 11] [ 6] [694119] +09:08:58 [ 12] [ 6] [090853] +09:08:58 [ 13] [ 4] [0320] +09:08:58 [ 15] [ 4] [0320] +09:08:58 [ 18] [ 4] [6011] +09:08:58 [ 22] [ 3] [900] +09:08:58 [ 25] [ 2] [02] +09:08:58 [ 28] [ 9] [D00002000] +09:08:58 [ 32] [ 6] [621354] +09:08:58 [ 35] [ 27] [1808931100008745=1803500467] +09:08:58 [ 37] [ 12] [507904510061] +09:08:58 [ 41] [ 8] [02001400] +09:08:58 [ 42] [ 15] [NATIVE ] +09:08:58 [ 43] [ 40] [Post Office Thakek LAO] +09:08:58 [ 49] [ 3] [418] +09:08:58 [ 52] [ 16] [AE1EE67349BB524E] +09:08:58 ============================================================================ +09:08:58 + + +waiting on router queue for slot.... +09:08:58 Sending to : <2> +09:08:58 ============================================================================ +09:08:58 ============================================================================ +09:08:58 Slot Id : <303> +09:08:58 Transaction Type : REQUEST +09:08:58 Received From : +09:08:58 ============================================================================ +09:08:58 FNo. Len. Field Value +09:08:58 ============================================================================ +09:08:58 [ 1] [ 4] [0800] +09:08:58 [ 7] [ 10] [0320020806] +09:08:58 [ 11] [ 6] [155557] +09:08:58 [ 70] [ 3] [301] +09:08:58 ============================================================================ +09:08:58 + + +waiting on router queue for slot.... +09:08:58 Sending to : +09:08:58 ============================================================================ +09:08:58 ============================================================================ +09:08:58 Slot Id : <303> +09:08:58 Transaction Type : RESPONSE +09:08:58 Received From : +09:08:58 ============================================================================ +09:08:58 FNo. Len. Field Value +09:08:58 ============================================================================ +09:08:58 [ 1] [ 4] [0810] +09:08:58 [ 7] [ 10] [0320020806] +09:08:58 [ 11] [ 6] [155557] +09:08:58 [ 39] [ 2] [00] +09:08:58 [ 70] [ 3] [301] +09:08:58 ============================================================================ +09:08:58 Calculate Source COMM Id = 2 +09:08:58 ============================================================================ +09:08:58 + + +waiting on router queue for slot.... +09:08:58 ============================================================================ +09:08:58 Slot Id : <298> +09:08:58 Transaction Type : RESPONSE +09:08:58 Received From : +09:08:58 ============================================================================ +09:08:58 FNo. Len. Field Value +09:08:58 ============================================================================ +09:08:58 [ 1] [ 4] [0210] +09:08:58 [ 2] [ 16] [6213545000926398] +09:08:58 [ 3] [ 6] [011000] +09:08:58 [ 4] [ 12] [000012000000] +09:08:58 [ 7] [ 10] [0320020803] +09:08:58 [ 11] [ 6] [267395] +09:08:58 [ 12] [ 6] [090803] +09:08:58 [ 13] [ 4] [0320] +09:08:58 [ 15] [ 4] [0320] +09:08:58 [ 18] [ 4] [6011] +09:08:58 [ 19] [ 3] [418] +09:08:58 [ 32] [ 6] [180893] +09:08:58 [ 35] [ 32] [6213545000926398=491212012639048] +09:08:58 [ 37] [ 12] [507902267395] +09:08:58 [ 38] [ 6] [641437] +09:08:58 [ 39] [ 2] [00] +09:08:58 [ 41] [ 8] [0368KMMX] +09:08:58 [ 49] [ 3] [418] +09:08:58 [ 54] [ 40] [1001418C0001228355501002418C000122835550] +09:08:58 ============================================================================ +09:08:58 Calculate Source COMM Id = 2 +09:08:58 ============================================================================ +09:08:58 + + +waiting on router queue for slot.... +09:09:01 ============================================================================ +09:09:01 Slot Id : <257> +09:09:01 Transaction Type : RESPONSE +09:09:01 Received From : +09:09:01 ============================================================================ +09:09:01 FNo. Len. Field Value +09:09:01 ============================================================================ +09:09:01 [ 1] [ 4] [0210] +09:09:01 [ 2] [ 16] [1808931100008745] +09:09:01 [ 3] [ 6] [011000] +09:09:01 [ 4] [ 12] [000050000000] +09:09:01 [ 6] [ 12] [000050000000] +09:09:01 [ 7] [ 10] [0320090853] +09:09:01 [ 11] [ 6] [694119] +09:09:01 [ 12] [ 6] [090853] +09:09:01 [ 13] [ 4] [0320] +09:09:01 [ 18] [ 4] [6011] +09:09:01 [ 19] [ 3] [418] +09:09:01 [ 22] [ 3] [021] +09:09:01 [ 32] [ 6] [621354] +09:09:01 [ 35] [ 27] [1808931100008745=1803500467] +09:09:01 [ 37] [ 12] [507904510061] +09:09:01 [ 38] [ 6] [694119] +09:09:01 [ 39] [ 2] [00] +09:09:01 [ 41] [ 8] [02001400] +09:09:01 [ 49] [ 3] [418] +09:09:01 [ 52] [ 16] [AE1EE67349BB524E] +09:09:01 [ 54] [ 20] [1001418C000303386800] +09:09:01 ============================================================================ +09:09:01 Sending to : +09:09:01 ============================================================================ +09:09:01 + + +waiting on router queue for slot.... +09:09:03 ============================================================================ +09:09:03 Slot Id : <257> +09:09:03 Transaction Type : RESPONSE +09:09:03 Received From : +09:09:03 ============================================================================ +09:09:03 FNo. Len. Field Value +09:09:03 ============================================================================ +09:09:03 [ 1] [ 4] [0210] +09:09:03 [ 2] [ 16] [1808931100008745] +09:09:03 [ 3] [ 6] [011000] +09:09:03 [ 4] [ 12] [000050000000] +09:09:03 [ 6] [ 12] [000050000000] +09:09:03 [ 7] [ 10] [0320090853] +09:09:03 [ 11] [ 6] [694119] +09:09:03 [ 12] [ 6] [090853] +09:09:03 [ 13] [ 4] [0320] +09:09:03 [ 18] [ 4] [6011] +09:09:03 [ 19] [ 3] [418] +09:09:03 [ 22] [ 3] [021] +09:09:03 [ 32] [ 6] [621354] +09:09:03 [ 35] [ 27] [1808931100008745=1803500467] +09:09:03 [ 37] [ 12] [507904510061] +09:09:03 [ 38] [ 6] [694119] +09:09:03 [ 39] [ 2] [00] +09:09:03 [ 41] [ 8] [02001400] +09:09:03 [ 49] [ 3] [418] +09:09:03 [ 52] [ 16] [AE1EE67349BB524E] +09:09:03 [ 54] [ 20] [1001418C000303386800] +09:09:03 ============================================================================ +09:09:03 Calculate Source COMM Id = 0 +09:09:03 ============================================================================ +09:09:03 + + +waiting on router queue for slot.... +09:09:06 ============================================================================ +09:09:06 Slot Id : <302> +09:09:06 Transaction Type : REQUEST +09:09:06 Received From : +09:09:06 ============================================================================ +09:09:06 FNo. Len. Field Value +09:09:06 ============================================================================ +09:09:06 [ 1] [ 4] [0200] +09:09:06 [ 2] [ 16] [6213542000057662] +09:09:06 [ 3] [ 6] [010000] +09:09:06 [ 4] [ 12] [000070000000] +09:09:06 [ 7] [ 10] [0320090658] +09:09:06 [ 11] [ 6] [934781] +09:09:06 [ 12] [ 6] [090658] +09:09:06 [ 13] [ 4] [0320] +09:09:06 [ 15] [ 4] [0320] +09:09:06 [ 18] [ 4] [6011] +09:09:06 [ 19] [ 3] [418] +09:09:06 [ 22] [ 3] [021] +09:09:06 [ 25] [ 2] [01] +09:09:06 [ 28] [ 9] [D00002000] +09:09:06 [ 32] [ 6] [668899] +09:09:06 [ 35] [ 32] [6213542000057662=491212015766473] +09:09:06 [ 37] [ 12] [507900858232] +09:09:06 [ 41] [ 8] [03015004] +09:09:06 [ 42] [ 15] [APT ] +09:09:06 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +09:09:06 [ 49] [ 3] [418] +09:09:06 [ 52] [ 16] [D152A3937C6155C6] +09:09:06 ============================================================================ +09:09:06 + + +waiting on router queue for slot.... +09:09:06 Sending to : +09:09:06 ============================================================================ +09:09:06 Sending to : +09:09:06 ============================================================================ +09:09:07 ============================================================================ +09:09:07 Slot Id : <302> +09:09:07 Transaction Type : REQUEST +09:09:07 Received From : +09:09:07 ============================================================================ +09:09:07 FNo. Len. Field Value +09:09:07 ============================================================================ +09:09:07 [ 1] [ 4] [0200] +09:09:07 [ 2] [ 16] [6213542000057662] +09:09:07 [ 3] [ 6] [010000] +09:09:07 [ 4] [ 12] [000070000000] +09:09:07 [ 7] [ 10] [0320090658] +09:09:07 [ 11] [ 6] [934781] +09:09:07 [ 12] [ 6] [090658] +09:09:07 [ 13] [ 4] [0320] +09:09:07 [ 15] [ 4] [0320] +09:09:07 [ 18] [ 4] [6011] +09:09:07 [ 19] [ 3] [418] +09:09:07 [ 22] [ 3] [021] +09:09:07 [ 25] [ 2] [01] +09:09:07 [ 28] [ 9] [D00002000] +09:09:07 [ 32] [ 6] [668899] +09:09:07 [ 35] [ 32] [6213542000057662=491212015766473] +09:09:07 [ 37] [ 12] [507900858232] +09:09:07 [ 41] [ 8] [03015004] +09:09:07 [ 42] [ 15] [APT ] +09:09:07 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +09:09:07 [ 49] [ 3] [418] +09:09:07 [ 52] [ 16] [D152A3937C6155C6] +09:09:07 ============================================================================ +09:09:07 + + +waiting on router queue for slot.... +09:09:07 Sending to : +09:09:07 ============================================================================ +09:09:07 ============================================================================ +09:09:07 Slot Id : <302> +09:09:07 Transaction Type : REQUEST +09:09:07 Received From : +09:09:07 ============================================================================ +09:09:07 FNo. Len. Field Value +09:09:07 ============================================================================ +09:09:07 [ 1] [ 4] [0200] +09:09:07 [ 2] [ 16] [6213542000057662] +09:09:07 [ 3] [ 6] [010000] +09:09:07 [ 4] [ 12] [000070000000] +09:09:07 [ 7] [ 10] [0320090658] +09:09:07 [ 11] [ 6] [934781] +09:09:07 [ 12] [ 6] [090658] +09:09:07 [ 13] [ 4] [0320] +09:09:07 [ 15] [ 4] [0320] +09:09:07 [ 18] [ 4] [6011] +09:09:07 [ 19] [ 3] [418] +09:09:07 [ 22] [ 3] [021] +09:09:07 [ 25] [ 2] [01] +09:09:07 [ 28] [ 9] [D00002000] +09:09:07 [ 32] [ 6] [668899] +09:09:07 [ 35] [ 32] [6213542000057662=491212015766473] +09:09:07 [ 37] [ 12] [507900858232] +09:09:07 [ 41] [ 8] [03015004] +09:09:07 [ 42] [ 15] [APT ] +09:09:07 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +09:09:07 [ 49] [ 3] [418] +09:09:07 [ 52] [ 16] [D4875CEBB3D8CBA7] +09:09:07 ============================================================================ +09:09:07 + + +waiting on router queue for slot.... +09:09:07 Sending to : <0> +09:09:07 ============================================================================ +09:09:07 ============================================================================ +09:09:07 Slot Id : <302> +09:09:07 Transaction Type : RESPONSE +09:09:07 Received From : +09:09:07 ============================================================================ +09:09:07 FNo. Len. Field Value +09:09:07 ============================================================================ +09:09:07 [ 1] [ 4] [0210] +09:09:07 [ 2] [ 16] [6213542000057662] +09:09:07 [ 3] [ 6] [010000] +09:09:07 [ 4] [ 12] [000070000000] +09:09:07 [ 7] [ 10] [0320090658] +09:09:07 [ 11] [ 6] [934781] +09:09:07 [ 12] [ 6] [090658] +09:09:07 [ 13] [ 4] [0320] +09:09:07 [ 15] [ 4] [0320] +09:09:07 [ 18] [ 4] [6011] +09:09:07 [ 19] [ 3] [418] +09:09:07 [ 32] [ 6] [668899] +09:09:07 [ 35] [ 32] [6213542000057662=491212015766473] +09:09:07 [ 37] [ 12] [507900858232] +09:09:07 [ 38] [ 6] [304032] +09:09:07 [ 39] [ 2] [00] +09:09:07 [ 41] [ 8] [03015004] +09:09:07 [ 49] [ 3] [418] +09:09:07 [ 54] [ 40] [0001418C0000130547320002418C000013054732] +09:09:07 ============================================================================ +09:09:07 Sending to : +09:09:07 ============================================================================ +09:09:07 + + +waiting on router queue for slot.... +09:09:09 ============================================================================ +09:09:09 Slot Id : <302> +09:09:09 Transaction Type : RESPONSE +09:09:09 Received From : +09:09:09 ============================================================================ +09:09:09 FNo. Len. Field Value +09:09:09 ============================================================================ +09:09:09 [ 1] [ 4] [0210] +09:09:09 [ 2] [ 16] [6213542000057662] +09:09:09 [ 3] [ 6] [010000] +09:09:09 [ 4] [ 12] [000070000000] +09:09:09 [ 7] [ 10] [0320090658] +09:09:09 [ 11] [ 6] [934781] +09:09:09 [ 12] [ 6] [090658] +09:09:09 [ 13] [ 4] [0320] +09:09:09 [ 15] [ 4] [0320] +09:09:09 [ 18] [ 4] [6011] +09:09:09 [ 19] [ 3] [418] +09:09:09 [ 32] [ 6] [668899] +09:09:09 [ 35] [ 32] [6213542000057662=491212015766473] +09:09:09 [ 37] [ 12] [507900858232] +09:09:09 [ 38] [ 6] [304032] +09:09:09 [ 39] [ 2] [00] +09:09:09 [ 41] [ 8] [03015004] +09:09:09 [ 49] [ 3] [418] +09:09:09 [ 54] [ 40] [0001418C0000130547320002418C000013054732] +09:09:09 ============================================================================ +09:09:09 Calculate Source COMM Id = 4 +09:09:09 ============================================================================ +09:09:09 + + +waiting on router queue for slot.... +09:09:10 ============================================================================ +09:09:10 Slot Id : <299> +09:09:10 Transaction Type : REQUEST +09:09:10 Received From : +09:09:10 ============================================================================ +09:09:10 FNo. Len. Field Value +09:09:10 ============================================================================ +09:09:10 [ 1] [ 4] [0200] +09:09:10 [ 2] [ 16] [6213545000660914] +09:09:10 [ 3] [ 6] [010000] +09:09:10 [ 4] [ 12] [000010000000] +09:09:10 [ 7] [ 10] [0320090701] +09:09:10 [ 11] [ 6] [934784] +09:09:10 [ 12] [ 6] [090701] +09:09:10 [ 13] [ 4] [0320] +09:09:10 [ 15] [ 4] [0320] +09:09:10 [ 18] [ 4] [6011] +09:09:10 [ 19] [ 3] [418] +09:09:10 [ 22] [ 3] [021] +09:09:10 [ 25] [ 2] [01] +09:09:10 [ 28] [ 9] [D00002000] +09:09:10 [ 32] [ 6] [668899] +09:09:10 [ 35] [ 32] [6213545000660914=491212016091669] +09:09:10 [ 37] [ 12] [507901989959] +09:09:10 [ 41] [ 8] [03309001] +09:09:10 [ 42] [ 15] [APT ] +09:09:10 [ 43] [ 40] [ PHONESAVANH MARKET UNIT P] +09:09:10 [ 49] [ 3] [418] +09:09:10 [ 52] [ 16] [650F1DCDE35F24A7] +09:09:10 ============================================================================ +09:09:10 + + +waiting on router queue for slot.... +09:09:10 Sending to : +09:09:10 ============================================================================ +09:09:10 Sending to : +09:09:10 ============================================================================ +09:09:10 ============================================================================ +09:09:10 Slot Id : <292> +09:09:10 Transaction Type : REQUEST +09:09:10 Received From : +09:09:10 ============================================================================ +09:09:10 FNo. Len. Field Value +09:09:10 ============================================================================ +09:09:10 [ 1] [ 4] [0200] +09:09:10 [ 2] [ 16] [6688990601022203] +09:09:10 [ 3] [ 6] [010000] +09:09:10 [ 4] [ 12] [000010000000] +09:09:10 [ 7] [ 10] [0320090906] +09:09:10 [ 11] [ 6] [694163] +09:09:10 [ 12] [ 6] [090906] +09:09:10 [ 13] [ 4] [0320] +09:09:10 [ 15] [ 4] [0320] +09:09:10 [ 18] [ 4] [6011] +09:09:10 [ 22] [ 3] [900] +09:09:10 [ 25] [ 2] [02] +09:09:10 [ 28] [ 9] [D00002000] +09:09:10 [ 32] [ 6] [621354] +09:09:10 [ 35] [ 37] [6688990601022203=41040061220344700000] +09:09:10 [ 37] [ 12] [507904706877] +09:09:10 [ 41] [ 8] [18000900] +09:09:10 [ 42] [ 15] [NATIVE ] +09:09:10 [ 43] [ 40] [Bounneau District Bounneua LAO] +09:09:10 [ 49] [ 3] [418] +09:09:10 [ 52] [ 16] [979D9A88D6AE273A] +09:09:10 ============================================================================ +09:09:10 + + +waiting on router queue for slot.... +09:09:10 Sending to : +09:09:10 ============================================================================ +09:09:10 Sending to : +09:09:10 ============================================================================ +09:09:10 ============================================================================ +09:09:10 Slot Id : <299> +09:09:10 Transaction Type : REQUEST +09:09:10 Received From : +09:09:10 ============================================================================ +09:09:10 FNo. Len. Field Value +09:09:10 ============================================================================ +09:09:10 [ 1] [ 4] [0200] +09:09:10 [ 2] [ 16] [6213545000660914] +09:09:10 [ 3] [ 6] [010000] +09:09:10 [ 4] [ 12] [000010000000] +09:09:10 [ 7] [ 10] [0320090701] +09:09:10 [ 11] [ 6] [934784] +09:09:10 [ 12] [ 6] [090701] +09:09:10 [ 13] [ 4] [0320] +09:09:10 [ 15] [ 4] [0320] +09:09:10 [ 18] [ 4] [6011] +09:09:10 [ 19] [ 3] [418] +09:09:10 [ 22] [ 3] [021] +09:09:10 [ 25] [ 2] [01] +09:09:10 [ 28] [ 9] [D00002000] +09:09:10 [ 32] [ 6] [668899] +09:09:10 [ 35] [ 32] [6213545000660914=491212016091669] +09:09:10 [ 37] [ 12] [507901989959] +09:09:10 [ 41] [ 8] [03309001] +09:09:10 [ 42] [ 15] [APT ] +09:09:10 [ 43] [ 40] [ PHONESAVANH MARKET UNIT P] +09:09:10 [ 49] [ 3] [418] +09:09:10 [ 52] [ 16] [650F1DCDE35F24A7] +09:09:10 ============================================================================ +09:09:10 + + +waiting on router queue for slot.... +09:09:10 Sending to : +09:09:10 ============================================================================ +09:09:10 ============================================================================ +09:09:10 Slot Id : <299> +09:09:10 Transaction Type : REQUEST +09:09:10 Received From : +09:09:10 ============================================================================ +09:09:10 FNo. Len. Field Value +09:09:10 ============================================================================ +09:09:10 [ 1] [ 4] [0200] +09:09:10 [ 2] [ 16] [6213545000660914] +09:09:10 [ 3] [ 6] [010000] +09:09:10 [ 4] [ 12] [000010000000] +09:09:10 [ 7] [ 10] [0320090701] +09:09:10 [ 11] [ 6] [934784] +09:09:10 [ 12] [ 6] [090701] +09:09:10 [ 13] [ 4] [0320] +09:09:10 [ 15] [ 4] [0320] +09:09:10 [ 18] [ 4] [6011] +09:09:10 [ 19] [ 3] [418] +09:09:10 [ 22] [ 3] [021] +09:09:10 [ 25] [ 2] [01] +09:09:10 [ 28] [ 9] [D00002000] +09:09:10 [ 32] [ 6] [668899] +09:09:10 [ 35] [ 32] [6213545000660914=491212016091669] +09:09:10 [ 37] [ 12] [507901989959] +09:09:10 [ 41] [ 8] [03309001] +09:09:10 [ 42] [ 15] [APT ] +09:09:10 [ 43] [ 40] [ PHONESAVANH MARKET UNIT P] +09:09:10 [ 49] [ 3] [418] +09:09:10 [ 52] [ 16] [F34FC4456BA750D9] +09:09:10 ============================================================================ +09:09:10 + + +waiting on router queue for slot.... +09:09:10 Sending to : <0> +09:09:10 ============================================================================ +09:09:11 ============================================================================ +09:09:11 Slot Id : <292> +09:09:11 Transaction Type : REQUEST +09:09:11 Received From : +09:09:11 ============================================================================ +09:09:11 FNo. Len. Field Value +09:09:11 ============================================================================ +09:09:11 [ 1] [ 4] [0200] +09:09:11 [ 2] [ 16] [6688990601022203] +09:09:11 [ 3] [ 6] [010000] +09:09:11 [ 4] [ 12] [000010000000] +09:09:11 [ 7] [ 10] [0320090906] +09:09:11 [ 11] [ 6] [694163] +09:09:11 [ 12] [ 6] [090906] +09:09:11 [ 13] [ 4] [0320] +09:09:11 [ 15] [ 4] [0320] +09:09:11 [ 18] [ 4] [6011] +09:09:11 [ 22] [ 3] [900] +09:09:11 [ 25] [ 2] [02] +09:09:11 [ 28] [ 9] [D00002000] +09:09:11 [ 32] [ 6] [621354] +09:09:11 [ 35] [ 37] [6688990601022203=41040061220344700000] +09:09:11 [ 37] [ 12] [507904706877] +09:09:11 [ 41] [ 8] [18000900] +09:09:11 [ 42] [ 15] [NATIVE ] +09:09:11 [ 43] [ 40] [Bounneau District Bounneua LAO] +09:09:11 [ 49] [ 3] [418] +09:09:11 [ 52] [ 16] [979D9A88D6AE273A] +09:09:11 ============================================================================ +09:09:11 + + +waiting on router queue for slot.... +09:09:11 Sending to : +09:09:11 ============================================================================ +09:09:11 ============================================================================ +09:09:11 Slot Id : <292> +09:09:11 Transaction Type : REQUEST +09:09:11 Received From : +09:09:11 ============================================================================ +09:09:11 FNo. Len. Field Value +09:09:11 ============================================================================ +09:09:11 [ 1] [ 4] [0200] +09:09:11 [ 2] [ 16] [6688990601022203] +09:09:11 [ 3] [ 6] [010000] +09:09:11 [ 4] [ 12] [000010000000] +09:09:11 [ 7] [ 10] [0320090906] +09:09:11 [ 11] [ 6] [694163] +09:09:11 [ 12] [ 6] [090906] +09:09:11 [ 13] [ 4] [0320] +09:09:11 [ 15] [ 4] [0320] +09:09:11 [ 18] [ 4] [6011] +09:09:11 [ 22] [ 3] [900] +09:09:11 [ 25] [ 2] [02] +09:09:11 [ 28] [ 9] [D00002000] +09:09:11 [ 32] [ 6] [621354] +09:09:11 [ 35] [ 37] [6688990601022203=41040061220344700000] +09:09:11 [ 37] [ 12] [507904706877] +09:09:11 [ 41] [ 8] [18000900] +09:09:11 [ 42] [ 15] [NATIVE ] +09:09:11 [ 43] [ 40] [Bounneau District Bounneua LAO] +09:09:11 [ 49] [ 3] [418] +09:09:11 [ 52] [ 16] [FFB9FCD6EEDDAA5E] +09:09:11 ============================================================================ +09:09:11 + + +waiting on router queue for slot.... +09:09:11 Sending to : <4> +09:09:11 ============================================================================ +09:09:12 ============================================================================ +09:09:12 Slot Id : <299> +09:09:12 Transaction Type : RESPONSE +09:09:12 Received From : +09:09:12 ============================================================================ +09:09:12 FNo. Len. Field Value +09:09:12 ============================================================================ +09:09:12 [ 1] [ 4] [0210] +09:09:12 [ 2] [ 16] [6213545000660914] +09:09:12 [ 3] [ 6] [010000] +09:09:12 [ 4] [ 12] [000010000000] +09:09:12 [ 7] [ 10] [0320090701] +09:09:12 [ 11] [ 6] [934784] +09:09:12 [ 12] [ 6] [090701] +09:09:12 [ 13] [ 4] [0320] +09:09:12 [ 15] [ 4] [0320] +09:09:12 [ 18] [ 4] [6011] +09:09:12 [ 19] [ 3] [418] +09:09:12 [ 32] [ 6] [668899] +09:09:12 [ 35] [ 32] [6213545000660914=491212016091669] +09:09:12 [ 37] [ 12] [507901989959] +09:09:12 [ 38] [ 6] [935275] +09:09:12 [ 39] [ 2] [00] +09:09:12 [ 41] [ 8] [03309001] +09:09:12 [ 49] [ 3] [418] +09:09:12 [ 54] [ 40] [0001418C0002665603850002418C000266560385] +09:09:12 ============================================================================ +09:09:12 Sending to : +09:09:12 ============================================================================ +09:09:12 + + +waiting on router queue for slot.... +09:09:13 ============================================================================ +09:09:13 Slot Id : <292> +09:09:13 Transaction Type : RESPONSE +09:09:13 Received From : +09:09:13 ============================================================================ +09:09:13 FNo. Len. Field Value +09:09:13 ============================================================================ +09:09:13 [ 1] [ 4] [0210] +09:09:13 [ 2] [ 16] [6688990601022203] +09:09:13 [ 3] [ 6] [010000] +09:09:13 [ 4] [ 12] [000010000000] +09:09:13 [ 11] [ 6] [694163] +09:09:13 [ 12] [ 6] [090906] +09:09:13 [ 15] [ 4] [0320] +09:09:13 [ 18] [ 4] [6011] +09:09:13 [ 32] [ 6] [621354] +09:09:13 [ 35] [ 37] [6688990601022203=41040061220344700000] +09:09:13 [ 37] [ 12] [507904706877] +09:09:13 [ 38] [ 6] [305005] +09:09:13 [ 39] [ 2] [00] +09:09:13 [ 41] [ 8] [18000900] +09:09:13 [ 49] [ 3] [418] +09:09:13 [ 54] [ 20] [0002418C000138693682] +09:09:13 ============================================================================ +09:09:13 Sending to : +09:09:13 ============================================================================ +09:09:13 + + +waiting on router queue for slot.... +09:09:13 ============================================================================ +09:09:13 Slot Id : <281> +09:09:13 Transaction Type : REQUEST +09:09:13 Received From : +09:09:13 ============================================================================ +09:09:13 FNo. Len. Field Value +09:09:13 ============================================================================ +09:09:13 [ 1] [ 4] [0800] +09:09:13 [ 7] [ 10] [0320020821] +09:09:13 [ 11] [ 6] [155558] +09:09:13 [ 70] [ 3] [301] +09:09:13 ============================================================================ +09:09:13 + + +waiting on router queue for slot.... +09:09:13 Sending to : +09:09:13 ============================================================================ +09:09:13 ============================================================================ +09:09:13 Slot Id : <281> +09:09:13 Transaction Type : RESPONSE +09:09:13 Received From : +09:09:13 ============================================================================ +09:09:13 FNo. Len. Field Value +09:09:13 ============================================================================ +09:09:13 [ 1] [ 4] [0810] +09:09:13 [ 7] [ 10] [0320020821] +09:09:13 [ 11] [ 6] [155558] +09:09:13 [ 39] [ 2] [00] +09:09:13 [ 70] [ 3] [301] +09:09:13 ============================================================================ +09:09:13 Calculate Source COMM Id = 2 +09:09:13 ============================================================================ +09:09:13 + + +waiting on router queue for slot.... +09:09:13 ============================================================================ +09:09:13 Slot Id : <300> +09:09:13 Transaction Type : REQUEST +09:09:13 Received From : +09:09:13 ============================================================================ +09:09:13 FNo. Len. Field Value +09:09:13 ============================================================================ +09:09:13 [ 1] [ 4] [0200] +09:09:13 [ 2] [ 16] [6688990040111351] +09:09:13 [ 3] [ 6] [011000] +09:09:13 [ 4] [ 12] [000005000000] +09:09:13 [ 7] [ 10] [0320090909] +09:09:13 [ 11] [ 6] [694179] +09:09:13 [ 12] [ 6] [090909] +09:09:13 [ 13] [ 4] [0320] +09:09:13 [ 15] [ 4] [0320] +09:09:13 [ 18] [ 4] [6011] +09:09:13 [ 22] [ 3] [900] +09:09:13 [ 25] [ 2] [02] +09:09:13 [ 28] [ 9] [D00002000] +09:09:13 [ 32] [ 6] [621354] +09:09:13 [ 35] [ 37] [6688990040111351=98031261924746900000] +09:09:13 [ 37] [ 12] [507902508122] +09:09:13 [ 41] [ 8] [05003300] +09:09:13 [ 42] [ 15] [NATIVE ] +09:09:13 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:09:13 [ 49] [ 3] [418] +09:09:13 [ 52] [ 16] [9EF80877A1A841E8] +09:09:13 ============================================================================ +09:09:13 + + +waiting on router queue for slot.... +09:09:13 Sending to : +09:09:13 ============================================================================ +09:09:13 Sending to : +09:09:13 ============================================================================ +09:09:13 ============================================================================ +09:09:13 Slot Id : <300> +09:09:13 Transaction Type : REQUEST +09:09:13 Received From : +09:09:13 ============================================================================ +09:09:13 FNo. Len. Field Value +09:09:13 ============================================================================ +09:09:13 [ 1] [ 4] [0200] +09:09:13 [ 2] [ 16] [6688990040111351] +09:09:13 [ 3] [ 6] [011000] +09:09:13 [ 4] [ 12] [000005000000] +09:09:13 [ 7] [ 10] [0320090909] +09:09:13 [ 11] [ 6] [694179] +09:09:13 [ 12] [ 6] [090909] +09:09:13 [ 13] [ 4] [0320] +09:09:13 [ 15] [ 4] [0320] +09:09:13 [ 18] [ 4] [6011] +09:09:13 [ 22] [ 3] [900] +09:09:13 [ 25] [ 2] [02] +09:09:13 [ 28] [ 9] [D00002000] +09:09:13 [ 32] [ 6] [621354] +09:09:13 [ 35] [ 37] [6688990040111351=98031261924746900000] +09:09:13 [ 37] [ 12] [507902508122] +09:09:13 [ 41] [ 8] [05003300] +09:09:13 [ 42] [ 15] [NATIVE ] +09:09:13 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:09:13 [ 49] [ 3] [418] +09:09:13 [ 52] [ 16] [9EF80877A1A841E8] +09:09:13 ============================================================================ +09:09:13 + + +waiting on router queue for slot.... +09:09:13 Sending to : +09:09:13 ============================================================================ +09:09:14 ============================================================================ +09:09:14 Slot Id : <299> +09:09:14 Transaction Type : RESPONSE +09:09:14 Received From : +09:09:14 ============================================================================ +09:09:14 FNo. Len. Field Value +09:09:14 ============================================================================ +09:09:14 [ 1] [ 4] [0210] +09:09:14 [ 2] [ 16] [6213545000660914] +09:09:14 [ 3] [ 6] [010000] +09:09:14 [ 4] [ 12] [000010000000] +09:09:14 [ 7] [ 10] [0320090701] +09:09:14 [ 11] [ 6] [934784] +09:09:14 [ 12] [ 6] [090701] +09:09:14 [ 13] [ 4] [0320] +09:09:14 [ 15] [ 4] [0320] +09:09:14 [ 18] [ 4] [6011] +09:09:14 [ 19] [ 3] [418] +09:09:14 [ 32] [ 6] [668899] +09:09:14 [ 35] [ 32] [6213545000660914=491212016091669] +09:09:14 [ 37] [ 12] [507901989959] +09:09:14 [ 38] [ 6] [935275] +09:09:14 [ 39] [ 2] [00] +09:09:14 [ 41] [ 8] [03309001] +09:09:14 [ 49] [ 3] [418] +09:09:14 [ 54] [ 40] [0001418C0002665603850002418C000266560385] +09:09:14 ============================================================================ +09:09:14 Calculate Source COMM Id = 4 +09:09:14 ============================================================================ +09:09:14 + + +waiting on router queue for slot.... +09:09:14 ============================================================================ +09:09:14 Slot Id : <300> +09:09:14 Transaction Type : REQUEST +09:09:14 Received From : +09:09:14 ============================================================================ +09:09:14 FNo. Len. Field Value +09:09:14 ============================================================================ +09:09:14 [ 1] [ 4] [0200] +09:09:14 [ 2] [ 16] [6688990040111351] +09:09:14 [ 3] [ 6] [011000] +09:09:14 [ 4] [ 12] [000005000000] +09:09:14 [ 7] [ 10] [0320090909] +09:09:14 [ 11] [ 6] [694179] +09:09:14 [ 12] [ 6] [090909] +09:09:14 [ 13] [ 4] [0320] +09:09:14 [ 15] [ 4] [0320] +09:09:14 [ 18] [ 4] [6011] +09:09:14 [ 22] [ 3] [900] +09:09:14 [ 25] [ 2] [02] +09:09:14 [ 28] [ 9] [D00002000] +09:09:14 [ 32] [ 6] [621354] +09:09:14 [ 35] [ 37] [6688990040111351=98031261924746900000] +09:09:14 [ 37] [ 12] [507902508122] +09:09:14 [ 41] [ 8] [05003300] +09:09:14 [ 42] [ 15] [NATIVE ] +09:09:14 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:09:14 [ 49] [ 3] [418] +09:09:14 [ 52] [ 16] [AE2EA7EBA70EE95C] +09:09:14 ============================================================================ +09:09:14 + + +waiting on router queue for slot.... +09:09:14 Sending to : <4> +09:09:14 ============================================================================ +09:09:15 ============================================================================ +09:09:15 Slot Id : <292> +09:09:15 Transaction Type : RESPONSE +09:09:15 Received From : +09:09:15 ============================================================================ +09:09:15 FNo. Len. Field Value +09:09:15 ============================================================================ +09:09:15 [ 1] [ 4] [0210] +09:09:15 [ 2] [ 16] [6688990601022203] +09:09:15 [ 3] [ 6] [010000] +09:09:15 [ 4] [ 12] [000010000000] +09:09:15 [ 11] [ 6] [694163] +09:09:15 [ 12] [ 6] [090906] +09:09:15 [ 15] [ 4] [0320] +09:09:15 [ 18] [ 4] [6011] +09:09:15 [ 32] [ 6] [621354] +09:09:15 [ 35] [ 37] [6688990601022203=41040061220344700000] +09:09:15 [ 37] [ 12] [507904706877] +09:09:15 [ 38] [ 6] [305005] +09:09:15 [ 39] [ 2] [00] +09:09:15 [ 41] [ 8] [18000900] +09:09:15 [ 49] [ 3] [418] +09:09:15 [ 54] [ 20] [0002418C000138693682] +09:09:15 ============================================================================ +09:09:15 Calculate Source COMM Id = 0 +09:09:15 ============================================================================ +09:09:15 + + +waiting on router queue for slot.... +09:09:15 ============================================================================ +09:09:15 Slot Id : <300> +09:09:15 Transaction Type : RESPONSE +09:09:15 Received From : +09:09:15 ============================================================================ +09:09:15 FNo. Len. Field Value +09:09:15 ============================================================================ +09:09:15 [ 1] [ 4] [0210] +09:09:15 [ 2] [ 16] [6688990040111351] +09:09:15 [ 3] [ 6] [011000] +09:09:15 [ 4] [ 12] [000005000000] +09:09:15 [ 11] [ 6] [694179] +09:09:15 [ 12] [ 6] [090909] +09:09:15 [ 15] [ 4] [0320] +09:09:15 [ 18] [ 4] [6011] +09:09:15 [ 32] [ 6] [621354] +09:09:15 [ 35] [ 37] [6688990040111351=98031261924746900000] +09:09:15 [ 37] [ 12] [507902508122] +09:09:15 [ 38] [ 6] [380979] +09:09:15 [ 39] [ 2] [00] +09:09:15 [ 41] [ 8] [05003300] +09:09:15 [ 49] [ 3] [418] +09:09:15 [ 54] [ 20] [1002418C000022813151] +09:09:15 ============================================================================ +09:09:15 Sending to : +09:09:15 ============================================================================ +09:09:15 + + +waiting on router queue for slot.... +09:09:16 ============================================================================ +09:09:16 Slot Id : <300> +09:09:16 Transaction Type : RESPONSE +09:09:16 Received From : +09:09:16 ============================================================================ +09:09:16 FNo. Len. Field Value +09:09:16 ============================================================================ +09:09:16 [ 1] [ 4] [0210] +09:09:16 [ 2] [ 16] [6688990040111351] +09:09:16 [ 3] [ 6] [011000] +09:09:16 [ 4] [ 12] [000005000000] +09:09:16 [ 11] [ 6] [694179] +09:09:16 [ 12] [ 6] [090909] +09:09:16 [ 15] [ 4] [0320] +09:09:16 [ 18] [ 4] [6011] +09:09:16 [ 32] [ 6] [621354] +09:09:16 [ 35] [ 37] [6688990040111351=98031261924746900000] +09:09:16 [ 37] [ 12] [507902508122] +09:09:16 [ 38] [ 6] [380979] +09:09:16 [ 39] [ 2] [00] +09:09:16 [ 41] [ 8] [05003300] +09:09:16 [ 49] [ 3] [418] +09:09:16 [ 54] [ 20] [1002418C000022813151] +09:09:16 ============================================================================ +09:09:16 Calculate Source COMM Id = 0 +09:09:16 ============================================================================ +09:09:16 + + +waiting on router queue for slot.... +09:09:18 ============================================================================ +09:09:18 Slot Id : <295> +09:09:18 Transaction Type : REQUEST +09:09:18 Received From : +09:09:18 ============================================================================ +09:09:18 FNo. Len. Field Value +09:09:18 ============================================================================ +09:09:18 [ 1] [ 4] [0800] +09:09:18 [ 2] [ 5] [02531] +09:09:18 [ 3] [ 6] [579098] +09:09:18 [ 7] [ 10] [0320020918] +09:09:18 [ 11] [ 6] [806943] +09:09:18 [ 15] [ 10] [0320020918] +09:09:18 [ 37] [ 11] [57909806943] +09:09:18 [ 70] [ 3] [001] +09:09:18 ============================================================================ +09:09:18 + + +waiting on router queue for slot.... +09:09:18 ============================================================================ +09:09:18 Slot Id : <295> +09:09:18 Transaction Type : RESPONSE +09:09:18 Received From : +09:09:18 ============================================================================ +09:09:18 FNo. Len. Field Value +09:09:18 ============================================================================ +09:09:18 [ 1] [ 4] [0810] +09:09:18 [ 7] [ 10] [0320020918] +09:09:18 [ 11] [ 6] [806943] +09:09:18 [ 15] [ 4] [0320] +09:09:18 [ 37] [ 12] [57909806943] +09:09:18 [ 39] [ 2] [00] +09:09:18 [ 70] [ 3] [001] +09:09:18 ============================================================================ +09:09:18 Sending to : +09:09:18 ============================================================================ +09:09:18 + + +waiting on router queue for slot.... +09:09:21 ============================================================================ +09:09:21 Slot Id : <308> +09:09:21 Transaction Type : REQUEST +09:09:21 Received From : +09:09:21 ============================================================================ +09:09:21 FNo. Len. Field Value +09:09:21 ============================================================================ +09:09:21 [ 1] [ 4] [0800] +09:09:21 [ 7] [ 10] [0320162111] +09:09:21 [ 11] [ 6] [092111] +09:09:21 [ 37] [ 12] [57909092111] +09:09:21 [ 70] [ 3] [301] +09:09:21 ============================================================================ +09:09:21 + + +waiting on router queue for slot.... +09:09:21 Sending to : +09:09:21 ============================================================================ +09:09:21 ============================================================================ +09:09:21 Slot Id : <308> +09:09:21 Transaction Type : RESPONSE +09:09:21 Received From : +09:09:21 ============================================================================ +09:09:21 FNo. Len. Field Value +09:09:21 ============================================================================ +09:09:21 [ 1] [ 4] [0810] +09:09:21 [ 7] [ 10] [0320162111] +09:09:21 [ 11] [ 6] [092111] +09:09:21 [ 37] [ 12] [579090921110] +09:09:21 [ 39] [ 2] [00] +09:09:21 [ 70] [ 3] [810] +09:09:21 ============================================================================ +09:09:21 Calculate Source COMM Id = 6 +09:09:21 ============================================================================ +09:09:21 + + +waiting on router queue for slot.... +09:09:23 ============================================================================ +09:09:23 Slot Id : <296> +09:09:23 Transaction Type : REQUEST +09:09:23 Received From : +09:09:23 ============================================================================ +09:09:23 FNo. Len. Field Value +09:09:23 ============================================================================ +09:09:23 [ 1] [ 4] [0800] +09:09:23 [ 7] [ 10] [0320020831] +09:09:23 [ 11] [ 6] [155559] +09:09:23 [ 70] [ 3] [301] +09:09:23 ============================================================================ +09:09:23 + + +waiting on router queue for slot.... +09:09:23 Sending to : +09:09:23 ============================================================================ +09:09:23 ============================================================================ +09:09:23 Slot Id : <296> +09:09:23 Transaction Type : RESPONSE +09:09:23 Received From : +09:09:23 ============================================================================ +09:09:23 FNo. Len. Field Value +09:09:23 ============================================================================ +09:09:23 [ 1] [ 4] [0810] +09:09:23 [ 7] [ 10] [0320020831] +09:09:23 [ 11] [ 6] [155559] +09:09:23 [ 39] [ 2] [00] +09:09:23 [ 70] [ 3] [301] +09:09:23 ============================================================================ +09:09:23 Calculate Source COMM Id = 2 +09:09:23 ============================================================================ +09:09:23 + + +waiting on router queue for slot.... +09:09:23 ============================================================================ +09:09:23 Slot Id : <283> +09:09:23 Transaction Type : REQUEST +09:09:23 Received From : +09:09:23 ============================================================================ +09:09:23 FNo. Len. Field Value +09:09:23 ============================================================================ +09:09:23 [ 1] [ 4] [0200] +09:09:23 [ 2] [ 16] [6213545000469894] +09:09:23 [ 3] [ 6] [010000] +09:09:23 [ 4] [ 12] [000010000000] +09:09:23 [ 7] [ 10] [0320091711] +09:09:23 [ 11] [ 6] [009275] +09:09:23 [ 12] [ 6] [091711] +09:09:23 [ 13] [ 4] [0320] +09:09:23 [ 14] [ 4] [4912] +09:09:23 [ 15] [ 4] [0320] +09:09:23 [ 18] [ 4] [6011] +09:09:23 [ 22] [ 3] [900] +09:09:23 [ 25] [ 2] [02] +09:09:23 [ 28] [ 9] [D00002000] +09:09:23 [ 32] [ 6] [220699] +09:09:23 [ 35] [ 32] [6213545000469894=491212016989844] +09:09:23 [ 37] [ 12] [507900213243] +09:09:23 [ 41] [ 8] [05000100] +09:09:23 [ 42] [ 15] [APTRA ] +09:09:23 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:09:23 [ 49] [ 3] [418] +09:09:23 [ 52] [ 16] [1CA750029A015FB8] +09:09:23 ============================================================================ +09:09:23 + + +waiting on router queue for slot.... +09:09:23 Sending to : +09:09:23 ============================================================================ +09:09:23 Sending to : +09:09:23 ============================================================================ +09:09:24 ============================================================================ +09:09:24 Slot Id : <283> +09:09:24 Transaction Type : REQUEST +09:09:24 Received From : +09:09:24 ============================================================================ +09:09:24 FNo. Len. Field Value +09:09:24 ============================================================================ +09:09:24 [ 1] [ 4] [0200] +09:09:24 [ 2] [ 16] [6213545000469894] +09:09:24 [ 3] [ 6] [010000] +09:09:24 [ 4] [ 12] [000010000000] +09:09:24 [ 7] [ 10] [0320091711] +09:09:24 [ 11] [ 6] [009275] +09:09:24 [ 12] [ 6] [091711] +09:09:24 [ 13] [ 4] [0320] +09:09:24 [ 14] [ 4] [4912] +09:09:24 [ 15] [ 4] [0320] +09:09:24 [ 18] [ 4] [6011] +09:09:24 [ 22] [ 3] [900] +09:09:24 [ 25] [ 2] [02] +09:09:24 [ 28] [ 9] [D00002000] +09:09:24 [ 32] [ 6] [220699] +09:09:24 [ 35] [ 32] [6213545000469894=491212016989844] +09:09:24 [ 37] [ 12] [507900213243] +09:09:24 [ 41] [ 8] [05000100] +09:09:24 [ 42] [ 15] [APTRA ] +09:09:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:09:24 [ 49] [ 3] [418] +09:09:24 [ 52] [ 16] [1CA750029A015FB8] +09:09:24 ============================================================================ +09:09:24 + + +waiting on router queue for slot.... +09:09:24 Sending to : +09:09:24 ============================================================================ +09:09:24 ============================================================================ +09:09:24 Slot Id : <283> +09:09:24 Transaction Type : REQUEST +09:09:24 Received From : +09:09:24 ============================================================================ +09:09:24 FNo. Len. Field Value +09:09:24 ============================================================================ +09:09:24 [ 1] [ 4] [0200] +09:09:24 [ 2] [ 16] [6213545000469894] +09:09:24 [ 3] [ 6] [010000] +09:09:24 [ 4] [ 12] [000010000000] +09:09:24 [ 7] [ 10] [0320091711] +09:09:24 [ 11] [ 6] [009275] +09:09:24 [ 12] [ 6] [091711] +09:09:24 [ 13] [ 4] [0320] +09:09:24 [ 14] [ 4] [4912] +09:09:24 [ 15] [ 4] [0320] +09:09:24 [ 18] [ 4] [6011] +09:09:24 [ 22] [ 3] [900] +09:09:24 [ 25] [ 2] [02] +09:09:24 [ 28] [ 9] [D00002000] +09:09:24 [ 32] [ 6] [220699] +09:09:24 [ 35] [ 32] [6213545000469894=491212016989844] +09:09:24 [ 37] [ 12] [507900213243] +09:09:24 [ 41] [ 8] [05000100] +09:09:24 [ 42] [ 15] [APTRA ] +09:09:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:09:24 [ 49] [ 3] [418] +09:09:24 [ 52] [ 16] [42C7F9401CF35ADB] +09:09:24 ============================================================================ +09:09:24 + + +waiting on router queue for slot.... +09:09:24 Sending to : <0> +09:09:24 ============================================================================ +09:09:24 ============================================================================ +09:09:24 Slot Id : <262> +09:09:24 Transaction Type : REQUEST +09:09:24 Received From : +09:09:24 ============================================================================ +09:09:24 FNo. Len. Field Value +09:09:24 ============================================================================ +09:09:24 [ 1] [ 4] [0200] +09:09:24 [ 2] [ 16] [6688990602097501] +09:09:24 [ 3] [ 6] [301000] +09:09:24 [ 7] [ 10] [0320020832] +09:09:24 [ 11] [ 6] [267400] +09:09:24 [ 12] [ 6] [090832] +09:09:24 [ 13] [ 4] [0320] +09:09:24 [ 14] [ 4] [4208] +09:09:24 [ 15] [ 4] [0320] +09:09:24 [ 18] [ 4] [6011] +09:09:24 [ 19] [ 3] [418] +09:09:24 [ 22] [ 3] [021] +09:09:24 [ 25] [ 2] [01] +09:09:24 [ 32] [ 6] [180893] +09:09:24 [ 35] [ 37] [6688990602097501=42080061750187700000] +09:09:24 [ 37] [ 12] [507902267400] +09:09:24 [ 41] [ 8] [0362CPSU] +09:09:24 [ 42] [ 15] [999999 ] +09:09:24 [ 43] [ 40] [ATM CHAMPASAK UNIVERSITY LOCATION, Pakse] +09:09:24 [ 49] [ 3] [418] +09:09:24 [ 52] [ 16] [C7B656EFC86AAABB] +09:09:24 ============================================================================ +09:09:24 + + +waiting on router queue for slot.... +09:09:24 Sending to : +09:09:24 ============================================================================ +09:09:24 Sending to : +09:09:24 ============================================================================ +09:09:25 ============================================================================ +09:09:25 Slot Id : <262> +09:09:25 Transaction Type : REQUEST +09:09:25 Received From : +09:09:25 ============================================================================ +09:09:25 FNo. Len. Field Value +09:09:25 ============================================================================ +09:09:25 [ 1] [ 4] [0200] +09:09:25 [ 2] [ 16] [6688990602097501] +09:09:25 [ 3] [ 6] [301000] +09:09:25 [ 7] [ 10] [0320020832] +09:09:25 [ 11] [ 6] [267400] +09:09:25 [ 12] [ 6] [090832] +09:09:25 [ 13] [ 4] [0320] +09:09:25 [ 14] [ 4] [4208] +09:09:25 [ 15] [ 4] [0320] +09:09:25 [ 18] [ 4] [6011] +09:09:25 [ 19] [ 3] [418] +09:09:25 [ 22] [ 3] [021] +09:09:25 [ 25] [ 2] [01] +09:09:25 [ 32] [ 6] [180893] +09:09:25 [ 35] [ 37] [6688990602097501=42080061750187700000] +09:09:25 [ 37] [ 12] [507902267400] +09:09:25 [ 41] [ 8] [0362CPSU] +09:09:25 [ 42] [ 15] [999999 ] +09:09:25 [ 43] [ 40] [ATM CHAMPASAK UNIVERSITY LOCATION, Pakse] +09:09:25 [ 49] [ 3] [418] +09:09:25 [ 52] [ 16] [C7B656EFC86AAABB] +09:09:25 ============================================================================ +09:09:25 + + +waiting on router queue for slot.... +09:09:25 Sending to : +09:09:25 ============================================================================ +09:09:25 ============================================================================ +09:09:25 Slot Id : <262> +09:09:25 Transaction Type : REQUEST +09:09:25 Received From : +09:09:25 ============================================================================ +09:09:25 FNo. Len. Field Value +09:09:25 ============================================================================ +09:09:25 [ 1] [ 4] [0200] +09:09:25 [ 2] [ 16] [6688990602097501] +09:09:25 [ 3] [ 6] [301000] +09:09:25 [ 7] [ 10] [0320020832] +09:09:25 [ 11] [ 6] [267400] +09:09:25 [ 12] [ 6] [090832] +09:09:25 [ 13] [ 4] [0320] +09:09:25 [ 14] [ 4] [4208] +09:09:25 [ 15] [ 4] [0320] +09:09:25 [ 18] [ 4] [6011] +09:09:25 [ 19] [ 3] [418] +09:09:25 [ 22] [ 3] [021] +09:09:25 [ 25] [ 2] [01] +09:09:25 [ 32] [ 6] [180893] +09:09:25 [ 35] [ 37] [6688990602097501=42080061750187700000] +09:09:25 [ 37] [ 12] [507902267400] +09:09:25 [ 41] [ 8] [0362CPSU] +09:09:25 [ 42] [ 15] [999999 ] +09:09:25 [ 43] [ 40] [ATM CHAMPASAK UNIVERSITY LOCATION, Pakse] +09:09:25 [ 49] [ 3] [418] +09:09:25 [ 52] [ 16] [9853AD4432F64256] +09:09:25 ============================================================================ +09:09:25 + + +waiting on router queue for slot.... +09:09:25 Sending to : <0> +09:09:25 ============================================================================ +09:09:25 ============================================================================ +09:09:25 Slot Id : <262> +09:09:25 Transaction Type : RESPONSE +09:09:25 Received From : +09:09:25 ============================================================================ +09:09:25 FNo. Len. Field Value +09:09:25 ============================================================================ +09:09:25 [ 1] [ 4] [0210] +09:09:25 [ 2] [ 16] [6688990602097501] +09:09:25 [ 3] [ 6] [301000] +09:09:25 [ 4] [ 12] [000000000000] +09:09:25 [ 7] [ 10] [0320020832] +09:09:25 [ 11] [ 6] [267400] +09:09:25 [ 12] [ 6] [090832] +09:09:25 [ 13] [ 4] [0320] +09:09:25 [ 15] [ 4] [0320] +09:09:25 [ 18] [ 4] [6011] +09:09:25 [ 19] [ 3] [418] +09:09:25 [ 22] [ 3] [021] +09:09:25 [ 32] [ 6] [180893] +09:09:25 [ 35] [ 37] [6688990602097501=42080061750187700000] +09:09:25 [ 37] [ 12] [507902267400] +09:09:25 [ 39] [ 2] [14] +09:09:25 [ 41] [ 8] [0362CPSU] +09:09:25 [ 49] [ 3] [418] +09:09:25 ============================================================================ +09:09:25 Sending to : +09:09:25 ============================================================================ +09:09:25 + + +waiting on router queue for slot.... +09:09:25 ============================================================================ +09:09:25 Slot Id : <283> +09:09:25 Transaction Type : RESPONSE +09:09:25 Received From : +09:09:25 ============================================================================ +09:09:25 FNo. Len. Field Value +09:09:25 ============================================================================ +09:09:25 [ 1] [ 4] [0210] +09:09:25 [ 2] [ 16] [6213545000469894] +09:09:25 [ 3] [ 6] [010000] +09:09:25 [ 4] [ 12] [000010000000] +09:09:25 [ 7] [ 10] [0320091711] +09:09:25 [ 11] [ 6] [009275] +09:09:25 [ 12] [ 6] [091711] +09:09:25 [ 13] [ 4] [0320] +09:09:25 [ 15] [ 4] [0320] +09:09:25 [ 18] [ 4] [6011] +09:09:25 [ 32] [ 6] [220699] +09:09:25 [ 35] [ 32] [6213545000469894=491212016989844] +09:09:25 [ 37] [ 12] [507900213243] +09:09:25 [ 38] [ 6] [282869] +09:09:25 [ 39] [ 2] [00] +09:09:25 [ 41] [ 8] [05000100] +09:09:25 [ 49] [ 3] [418] +09:09:25 [ 54] [ 40] [0001418C0000139555610002418C000013955561] +09:09:25 ============================================================================ +09:09:25 Sending to : +09:09:25 ============================================================================ +09:09:25 + + +waiting on router queue for slot.... +09:09:26 ============================================================================ +09:09:26 Slot Id : <262> +09:09:26 Transaction Type : RESPONSE +09:09:26 Received From : +09:09:26 ============================================================================ +09:09:26 FNo. Len. Field Value +09:09:26 ============================================================================ +09:09:26 [ 1] [ 4] [0210] +09:09:26 [ 2] [ 16] [6688990602097501] +09:09:26 [ 3] [ 6] [301000] +09:09:26 [ 4] [ 12] [000000000000] +09:09:26 [ 7] [ 10] [0320020832] +09:09:26 [ 11] [ 6] [267400] +09:09:26 [ 12] [ 6] [090832] +09:09:26 [ 13] [ 4] [0320] +09:09:26 [ 15] [ 4] [0320] +09:09:26 [ 18] [ 4] [6011] +09:09:26 [ 19] [ 3] [418] +09:09:26 [ 22] [ 3] [021] +09:09:26 [ 32] [ 6] [180893] +09:09:26 [ 35] [ 37] [6688990602097501=42080061750187700000] +09:09:26 [ 37] [ 12] [507902267400] +09:09:26 [ 39] [ 2] [14] +09:09:26 [ 41] [ 8] [0362CPSU] +09:09:26 [ 49] [ 3] [418] +09:09:26 ============================================================================ +09:09:26 Calculate Source COMM Id = 2 +09:09:26 ============================================================================ +09:09:26 + + +waiting on router queue for slot.... +09:09:28 ============================================================================ +09:09:28 Slot Id : <283> +09:09:28 Transaction Type : RESPONSE +09:09:28 Received From : +09:09:28 ============================================================================ +09:09:28 FNo. Len. Field Value +09:09:28 ============================================================================ +09:09:28 [ 1] [ 4] [0210] +09:09:28 [ 2] [ 16] [6213545000469894] +09:09:28 [ 3] [ 6] [010000] +09:09:28 [ 4] [ 12] [000010000000] +09:09:28 [ 7] [ 10] [0320091711] +09:09:28 [ 11] [ 6] [009275] +09:09:28 [ 12] [ 6] [091711] +09:09:28 [ 13] [ 4] [0320] +09:09:28 [ 15] [ 4] [0320] +09:09:28 [ 18] [ 4] [6011] +09:09:28 [ 32] [ 6] [220699] +09:09:28 [ 35] [ 32] [6213545000469894=491212016989844] +09:09:28 [ 37] [ 12] [507900213243] +09:09:28 [ 38] [ 6] [282869] +09:09:28 [ 39] [ 2] [00] +09:09:28 [ 41] [ 8] [05000100] +09:09:28 [ 49] [ 3] [418] +09:09:28 [ 54] [ 40] [0001418C0000139555610002418C000013955561] +09:09:28 ============================================================================ +09:09:28 Calculate Source COMM Id = 1 +09:09:28 ============================================================================ +09:09:28 + + +waiting on router queue for slot.... +09:09:31 ============================================================================ +09:09:31 Slot Id : <316> +09:09:31 Transaction Type : REQUEST +09:09:31 Received From : +09:09:31 ============================================================================ +09:09:31 FNo. Len. Field Value +09:09:31 ============================================================================ +09:09:31 [ 1] [ 4] [0200] +09:09:31 [ 2] [ 16] [6213541000224025] +09:09:31 [ 3] [ 6] [010000] +09:09:31 [ 4] [ 12] [000100000000] +09:09:31 [ 7] [ 10] [0320090723] +09:09:31 [ 11] [ 6] [934810] +09:09:31 [ 12] [ 6] [090723] +09:09:31 [ 13] [ 4] [0320] +09:09:31 [ 15] [ 4] [0320] +09:09:31 [ 18] [ 4] [6011] +09:09:31 [ 19] [ 3] [418] +09:09:31 [ 22] [ 3] [021] +09:09:31 [ 25] [ 2] [01] +09:09:31 [ 28] [ 9] [D00002000] +09:09:31 [ 32] [ 6] [668899] +09:09:31 [ 35] [ 32] [6213541000224025=491212012402285] +09:09:31 [ 37] [ 12] [507901489194] +09:09:31 [ 41] [ 8] [03515001] +09:09:31 [ 42] [ 15] [APT ] +09:09:31 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +09:09:31 [ 49] [ 3] [418] +09:09:31 [ 52] [ 16] [F8A43953573E22B0] +09:09:31 ============================================================================ +09:09:31 + + +waiting on router queue for slot.... +09:09:31 Sending to : +09:09:31 ============================================================================ +09:09:31 Sending to : +09:09:31 ============================================================================ +09:09:32 ============================================================================ +09:09:32 Slot Id : <311> +09:09:32 Transaction Type : REQUEST +09:09:32 Received From : +09:09:32 ============================================================================ +09:09:32 FNo. Len. Field Value +09:09:32 ============================================================================ +09:09:32 [ 1] [ 4] [0200] +09:09:32 [ 2] [ 16] [1808930500014287] +09:09:32 [ 3] [ 6] [010000] +09:09:32 [ 4] [ 12] [000100000000] +09:09:32 [ 7] [ 10] [0320090723] +09:09:32 [ 11] [ 6] [934811] +09:09:32 [ 12] [ 6] [090723] +09:09:32 [ 13] [ 4] [0320] +09:09:32 [ 15] [ 4] [0320] +09:09:32 [ 18] [ 4] [6011] +09:09:32 [ 19] [ 3] [418] +09:09:32 [ 22] [ 3] [021] +09:09:32 [ 25] [ 2] [01] +09:09:32 [ 28] [ 9] [D00002000] +09:09:32 [ 32] [ 6] [668899] +09:09:32 [ 35] [ 27] [1808930500014287=1803500992] +09:09:32 [ 37] [ 12] [507900844852] +09:09:32 [ 41] [ 8] [03015003] +09:09:32 [ 42] [ 15] [APT ] +09:09:32 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:09:32 [ 49] [ 3] [418] +09:09:32 [ 52] [ 16] [E26933807A6E07AB] +09:09:32 ============================================================================ +09:09:32 + + +waiting on router queue for slot.... +09:09:32 Sending to : +09:09:32 ============================================================================ +09:09:32 Sending to : +09:09:32 ============================================================================ +09:09:32 ============================================================================ +09:09:32 Slot Id : <316> +09:09:32 Transaction Type : REQUEST +09:09:32 Received From : +09:09:32 ============================================================================ +09:09:32 FNo. Len. Field Value +09:09:32 ============================================================================ +09:09:32 [ 1] [ 4] [0200] +09:09:32 [ 2] [ 16] [6213541000224025] +09:09:32 [ 3] [ 6] [010000] +09:09:32 [ 4] [ 12] [000100000000] +09:09:32 [ 7] [ 10] [0320090723] +09:09:32 [ 11] [ 6] [934810] +09:09:32 [ 12] [ 6] [090723] +09:09:32 [ 13] [ 4] [0320] +09:09:32 [ 15] [ 4] [0320] +09:09:32 [ 18] [ 4] [6011] +09:09:32 [ 19] [ 3] [418] +09:09:32 [ 22] [ 3] [021] +09:09:32 [ 25] [ 2] [01] +09:09:32 [ 28] [ 9] [D00002000] +09:09:32 [ 32] [ 6] [668899] +09:09:32 [ 35] [ 32] [6213541000224025=491212012402285] +09:09:32 [ 37] [ 12] [507901489194] +09:09:32 [ 41] [ 8] [03515001] +09:09:32 [ 42] [ 15] [APT ] +09:09:32 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +09:09:32 [ 49] [ 3] [418] +09:09:32 [ 52] [ 16] [F8A43953573E22B0] +09:09:32 ============================================================================ +09:09:32 + + +waiting on router queue for slot.... +09:09:32 Sending to : +09:09:32 ============================================================================ +09:09:32 ============================================================================ +09:09:32 Slot Id : <316> +09:09:32 Transaction Type : REQUEST +09:09:32 Received From : +09:09:32 ============================================================================ +09:09:32 FNo. Len. Field Value +09:09:32 ============================================================================ +09:09:32 [ 1] [ 4] [0200] +09:09:32 [ 2] [ 16] [6213541000224025] +09:09:32 [ 3] [ 6] [010000] +09:09:32 [ 4] [ 12] [000100000000] +09:09:32 [ 7] [ 10] [0320090723] +09:09:32 [ 11] [ 6] [934810] +09:09:32 [ 12] [ 6] [090723] +09:09:32 [ 13] [ 4] [0320] +09:09:32 [ 15] [ 4] [0320] +09:09:32 [ 18] [ 4] [6011] +09:09:32 [ 19] [ 3] [418] +09:09:32 [ 22] [ 3] [021] +09:09:32 [ 25] [ 2] [01] +09:09:32 [ 28] [ 9] [D00002000] +09:09:32 [ 32] [ 6] [668899] +09:09:32 [ 35] [ 32] [6213541000224025=491212012402285] +09:09:32 [ 37] [ 12] [507901489194] +09:09:32 [ 41] [ 8] [03515001] +09:09:32 [ 42] [ 15] [APT ] +09:09:32 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +09:09:32 [ 49] [ 3] [418] +09:09:32 [ 52] [ 16] [98D44C80188AC4D3] +09:09:32 ============================================================================ +09:09:32 + + +waiting on router queue for slot.... +09:09:32 Sending to : <0> +09:09:32 ============================================================================ +09:09:32 ============================================================================ +09:09:32 Slot Id : <311> +09:09:32 Transaction Type : REQUEST +09:09:32 Received From : +09:09:32 ============================================================================ +09:09:32 FNo. Len. Field Value +09:09:32 ============================================================================ +09:09:32 [ 1] [ 4] [0200] +09:09:32 [ 2] [ 16] [1808930500014287] +09:09:32 [ 3] [ 6] [010000] +09:09:32 [ 4] [ 12] [000100000000] +09:09:32 [ 7] [ 10] [0320090723] +09:09:32 [ 11] [ 6] [934811] +09:09:32 [ 12] [ 6] [090723] +09:09:32 [ 13] [ 4] [0320] +09:09:32 [ 15] [ 4] [0320] +09:09:32 [ 18] [ 4] [6011] +09:09:32 [ 19] [ 3] [418] +09:09:32 [ 22] [ 3] [021] +09:09:32 [ 25] [ 2] [01] +09:09:32 [ 28] [ 9] [D00002000] +09:09:32 [ 32] [ 6] [668899] +09:09:32 [ 35] [ 27] [1808930500014287=1803500992] +09:09:32 [ 37] [ 12] [507900844852] +09:09:32 [ 41] [ 8] [03015003] +09:09:32 [ 42] [ 15] [APT ] +09:09:32 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:09:32 [ 49] [ 3] [418] +09:09:32 [ 52] [ 16] [E26933807A6E07AB] +09:09:32 ============================================================================ +09:09:32 + + +waiting on router queue for slot.... +09:09:32 Sending to : +09:09:32 ============================================================================ +09:09:32 ============================================================================ +09:09:32 Slot Id : <311> +09:09:32 Transaction Type : REQUEST +09:09:32 Received From : +09:09:32 ============================================================================ +09:09:32 FNo. Len. Field Value +09:09:32 ============================================================================ +09:09:32 [ 1] [ 4] [0200] +09:09:32 [ 2] [ 16] [1808930500014287] +09:09:32 [ 3] [ 6] [010000] +09:09:32 [ 4] [ 12] [000100000000] +09:09:32 [ 7] [ 10] [0320090723] +09:09:32 [ 11] [ 6] [934811] +09:09:32 [ 12] [ 6] [090723] +09:09:32 [ 13] [ 4] [0320] +09:09:32 [ 15] [ 4] [0320] +09:09:32 [ 18] [ 4] [6011] +09:09:32 [ 19] [ 3] [418] +09:09:32 [ 22] [ 3] [021] +09:09:32 [ 25] [ 2] [01] +09:09:32 [ 28] [ 9] [D00002000] +09:09:32 [ 32] [ 6] [668899] +09:09:32 [ 35] [ 27] [1808930500014287=1803500992] +09:09:32 [ 37] [ 12] [507900844852] +09:09:32 [ 41] [ 8] [03015003] +09:09:32 [ 42] [ 15] [APT ] +09:09:32 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:09:32 [ 49] [ 3] [418] +09:09:32 [ 52] [ 16] [9772F5F0489E1948] +09:09:32 ============================================================================ +09:09:32 + + +waiting on router queue for slot.... +09:09:32 Sending to : <2> +09:09:32 ============================================================================ +09:09:33 ============================================================================ +09:09:33 Slot Id : <316> +09:09:33 Transaction Type : RESPONSE +09:09:33 Received From : +09:09:33 ============================================================================ +09:09:33 FNo. Len. Field Value +09:09:33 ============================================================================ +09:09:33 [ 1] [ 4] [0210] +09:09:33 [ 2] [ 16] [6213541000224025] +09:09:33 [ 3] [ 6] [010000] +09:09:33 [ 4] [ 12] [000100000000] +09:09:33 [ 7] [ 10] [0320090723] +09:09:33 [ 11] [ 6] [934810] +09:09:33 [ 12] [ 6] [090723] +09:09:33 [ 13] [ 4] [0320] +09:09:33 [ 15] [ 4] [0320] +09:09:33 [ 18] [ 4] [6011] +09:09:33 [ 19] [ 3] [418] +09:09:33 [ 32] [ 6] [668899] +09:09:33 [ 35] [ 32] [6213541000224025=491212012402285] +09:09:33 [ 37] [ 12] [507901489194] +09:09:33 [ 38] [ 6] [449824] +09:09:33 [ 39] [ 2] [00] +09:09:33 [ 41] [ 8] [03515001] +09:09:33 [ 49] [ 3] [418] +09:09:33 [ 54] [ 40] [0001418C0002154322090002418C000215432209] +09:09:33 ============================================================================ +09:09:33 Sending to : +09:09:33 ============================================================================ +09:09:33 + + +waiting on router queue for slot.... +09:09:35 ============================================================================ +09:09:35 Slot Id : <311> +09:09:35 Transaction Type : RESPONSE +09:09:35 Received From : +09:09:35 ============================================================================ +09:09:35 FNo. Len. Field Value +09:09:35 ============================================================================ +09:09:35 [ 1] [ 4] [0210] +09:09:35 [ 2] [ 16] [1808930500014287] +09:09:35 [ 3] [ 6] [010000] +09:09:35 [ 4] [ 12] [000100000000] +09:09:35 [ 6] [ 12] [000100000000] +09:09:35 [ 7] [ 10] [0320090723] +09:09:35 [ 11] [ 6] [934811] +09:09:35 [ 12] [ 6] [090723] +09:09:35 [ 13] [ 4] [0320] +09:09:35 [ 18] [ 4] [6011] +09:09:35 [ 19] [ 3] [418] +09:09:35 [ 22] [ 3] [021] +09:09:35 [ 28] [ 9] [D00002000] +09:09:35 [ 32] [ 6] [668899] +09:09:35 [ 35] [ 27] [1808930500014287=1803500992] +09:09:35 [ 37] [ 12] [507900844852] +09:09:35 [ 39] [ 2] [75] +09:09:35 [ 41] [ 8] [03015003] +09:09:35 [ 49] [ 3] [418] +09:09:35 [ 51] [ 3] [418] +09:09:35 [ 52] [ 16] [9772F5F0489E1948] +09:09:35 ============================================================================ +09:09:35 Sending to : +09:09:35 ============================================================================ +09:09:35 + + +waiting on router queue for slot.... +09:09:35 ============================================================================ +09:09:35 Slot Id : <316> +09:09:35 Transaction Type : RESPONSE +09:09:35 Received From : +09:09:35 ============================================================================ +09:09:35 FNo. Len. Field Value +09:09:35 ============================================================================ +09:09:35 [ 1] [ 4] [0210] +09:09:35 [ 2] [ 16] [6213541000224025] +09:09:35 [ 3] [ 6] [010000] +09:09:35 [ 4] [ 12] [000100000000] +09:09:35 [ 7] [ 10] [0320090723] +09:09:35 [ 11] [ 6] [934810] +09:09:35 [ 12] [ 6] [090723] +09:09:35 [ 13] [ 4] [0320] +09:09:35 [ 15] [ 4] [0320] +09:09:35 [ 18] [ 4] [6011] +09:09:35 [ 19] [ 3] [418] +09:09:35 [ 32] [ 6] [668899] +09:09:35 [ 35] [ 32] [6213541000224025=491212012402285] +09:09:35 [ 37] [ 12] [507901489194] +09:09:35 [ 38] [ 6] [449824] +09:09:35 [ 39] [ 2] [00] +09:09:35 [ 41] [ 8] [03515001] +09:09:35 [ 49] [ 3] [418] +09:09:35 [ 54] [ 40] [0001418C0002154322090002418C000215432209] +09:09:35 ============================================================================ +09:09:35 Calculate Source COMM Id = 4 +09:09:35 ============================================================================ +09:09:35 + + +waiting on router queue for slot.... +09:09:36 ============================================================================ +09:09:36 Slot Id : <311> +09:09:36 Transaction Type : RESPONSE +09:09:36 Received From : +09:09:36 ============================================================================ +09:09:36 FNo. Len. Field Value +09:09:36 ============================================================================ +09:09:36 [ 1] [ 4] [0210] +09:09:36 [ 2] [ 16] [1808930500014287] +09:09:36 [ 3] [ 6] [010000] +09:09:36 [ 4] [ 12] [000100000000] +09:09:36 [ 6] [ 12] [000100000000] +09:09:36 [ 7] [ 10] [0320090723] +09:09:36 [ 11] [ 6] [934811] +09:09:36 [ 12] [ 6] [090723] +09:09:36 [ 13] [ 4] [0320] +09:09:36 [ 18] [ 4] [6011] +09:09:36 [ 19] [ 3] [418] +09:09:36 [ 22] [ 3] [021] +09:09:36 [ 28] [ 9] [D00002000] +09:09:36 [ 32] [ 6] [668899] +09:09:36 [ 35] [ 27] [1808930500014287=1803500992] +09:09:36 [ 37] [ 12] [507900844852] +09:09:36 [ 39] [ 2] [75] +09:09:36 [ 41] [ 8] [03015003] +09:09:36 [ 49] [ 3] [418] +09:09:36 [ 51] [ 3] [418] +09:09:36 [ 52] [ 16] [9772F5F0489E1948] +09:09:36 ============================================================================ +09:09:36 Calculate Source COMM Id = 4 +09:09:36 ============================================================================ +09:09:36 + + +waiting on router queue for slot.... +09:09:46 ============================================================================ +09:09:46 Slot Id : <286> +09:09:46 Transaction Type : REQUEST +09:09:46 Received From : +09:09:46 ============================================================================ +09:09:46 FNo. Len. Field Value +09:09:46 ============================================================================ +09:09:46 [ 1] [ 4] [0800] +09:09:46 [ 7] [ 10] [0320020853] +09:09:46 [ 11] [ 6] [155560] +09:09:46 [ 70] [ 3] [301] +09:09:46 ============================================================================ +09:09:46 + + +waiting on router queue for slot.... +09:09:46 Sending to : +09:09:46 ============================================================================ +09:09:46 ============================================================================ +09:09:46 Slot Id : <286> +09:09:46 Transaction Type : RESPONSE +09:09:46 Received From : +09:09:46 ============================================================================ +09:09:46 FNo. Len. Field Value +09:09:46 ============================================================================ +09:09:46 [ 1] [ 4] [0810] +09:09:46 [ 7] [ 10] [0320020853] +09:09:46 [ 11] [ 6] [155560] +09:09:46 [ 39] [ 2] [00] +09:09:46 [ 70] [ 3] [301] +09:09:46 ============================================================================ +09:09:46 Calculate Source COMM Id = 2 +09:09:46 ============================================================================ +09:09:46 + + +waiting on router queue for slot.... +09:09:55 ============================================================================ +09:09:55 Slot Id : <312> +09:09:55 Transaction Type : REQUEST +09:09:55 Received From : +09:09:55 ============================================================================ +09:09:55 FNo. Len. Field Value +09:09:55 ============================================================================ +09:09:55 [ 1] [ 4] [0800] +09:09:55 [ 7] [ 10] [0320021742] +09:09:55 [ 11] [ 6] [002263] +09:09:55 [ 37] [ 12] [57909002263] +09:09:55 [ 70] [ 3] [301] +09:09:55 ============================================================================ +09:09:55 + + +waiting on router queue for slot.... +09:09:55 Sending to : +09:09:55 ============================================================================ +09:09:55 ============================================================================ +09:09:55 Slot Id : <312> +09:09:55 Transaction Type : RESPONSE +09:09:55 Received From : +09:09:55 ============================================================================ +09:09:55 FNo. Len. Field Value +09:09:55 ============================================================================ +09:09:55 [ 1] [ 4] [0810] +09:09:55 [ 7] [ 10] [0320021742] +09:09:55 [ 11] [ 6] [002263] +09:09:55 [ 37] [ 12] [579090022630] +09:09:55 [ 39] [ 2] [00] +09:09:55 [ 70] [ 3] [810] +09:09:55 ============================================================================ +09:09:55 Calculate Source COMM Id = 1 +09:09:55 ============================================================================ +09:09:55 + + +waiting on router queue for slot.... +09:09:57 ============================================================================ +09:09:57 Slot Id : <306> +09:09:57 Transaction Type : REQUEST +09:09:57 Received From : +09:09:57 ============================================================================ +09:09:57 FNo. Len. Field Value +09:09:57 ============================================================================ +09:09:57 [ 1] [ 4] [0800] +09:09:57 [ 7] [ 10] [0320020904] +09:09:57 [ 11] [ 6] [155561] +09:09:57 [ 70] [ 3] [301] +09:09:57 ============================================================================ +09:09:57 + + +waiting on router queue for slot.... +09:09:57 Sending to : +09:09:57 ============================================================================ +09:09:57 ============================================================================ +09:09:57 Slot Id : <306> +09:09:57 Transaction Type : RESPONSE +09:09:57 Received From : +09:09:57 ============================================================================ +09:09:57 FNo. Len. Field Value +09:09:57 ============================================================================ +09:09:57 [ 1] [ 4] [0810] +09:09:57 [ 7] [ 10] [0320020904] +09:09:57 [ 11] [ 6] [155561] +09:09:57 [ 39] [ 2] [00] +09:09:57 [ 70] [ 3] [301] +09:09:57 ============================================================================ +09:09:57 Calculate Source COMM Id = 2 +09:09:57 ============================================================================ +09:09:57 + + +waiting on router queue for slot.... +09:10:00 ============================================================================ +09:10:00 Slot Id : <307> +09:10:00 Transaction Type : REQUEST +09:10:00 Received From : +09:10:00 ============================================================================ +09:10:00 FNo. Len. Field Value +09:10:00 ============================================================================ +09:10:00 [ 1] [ 4] [0200] +09:10:00 [ 2] [ 16] [6213545000926398] +09:10:00 [ 3] [ 6] [010000] +09:10:00 [ 4] [ 12] [000100000000] +09:10:00 [ 7] [ 10] [0320020907] +09:10:00 [ 11] [ 6] [267405] +09:10:00 [ 12] [ 6] [090907] +09:10:00 [ 13] [ 4] [0320] +09:10:00 [ 14] [ 4] [4912] +09:10:00 [ 15] [ 4] [0320] +09:10:00 [ 18] [ 4] [6011] +09:10:00 [ 19] [ 3] [418] +09:10:00 [ 22] [ 3] [021] +09:10:00 [ 25] [ 2] [01] +09:10:00 [ 28] [ 9] [D00002000] +09:10:00 [ 32] [ 6] [180893] +09:10:00 [ 35] [ 32] [6213545000926398=491212012639048] +09:10:00 [ 37] [ 12] [507902267405] +09:10:00 [ 41] [ 8] [0368KMMX] +09:10:00 [ 42] [ 15] [999999 ] +09:10:00 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +09:10:00 [ 49] [ 3] [418] +09:10:00 [ 52] [ 16] [AC5290311DAC645D] +09:10:00 ============================================================================ +09:10:00 + + +waiting on router queue for slot.... +09:10:00 Sending to : +09:10:00 ============================================================================ +09:10:00 Sending to : +09:10:00 ============================================================================ +09:10:00 ============================================================================ +09:10:00 Slot Id : <307> +09:10:00 Transaction Type : REQUEST +09:10:00 Received From : +09:10:00 ============================================================================ +09:10:00 FNo. Len. Field Value +09:10:00 ============================================================================ +09:10:00 [ 1] [ 4] [0200] +09:10:00 [ 2] [ 16] [6213545000926398] +09:10:00 [ 3] [ 6] [010000] +09:10:00 [ 4] [ 12] [000100000000] +09:10:00 [ 7] [ 10] [0320020907] +09:10:00 [ 11] [ 6] [267405] +09:10:00 [ 12] [ 6] [090907] +09:10:00 [ 13] [ 4] [0320] +09:10:00 [ 14] [ 4] [4912] +09:10:00 [ 15] [ 4] [0320] +09:10:00 [ 18] [ 4] [6011] +09:10:00 [ 19] [ 3] [418] +09:10:00 [ 22] [ 3] [021] +09:10:00 [ 25] [ 2] [01] +09:10:00 [ 28] [ 9] [D00002000] +09:10:00 [ 32] [ 6] [180893] +09:10:00 [ 35] [ 32] [6213545000926398=491212012639048] +09:10:00 [ 37] [ 12] [507902267405] +09:10:00 [ 41] [ 8] [0368KMMX] +09:10:00 [ 42] [ 15] [999999 ] +09:10:00 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +09:10:00 [ 49] [ 3] [418] +09:10:00 [ 52] [ 16] [AC5290311DAC645D] +09:10:00 ============================================================================ +09:10:00 + + +waiting on router queue for slot.... +09:10:00 Sending to : +09:10:00 ============================================================================ +09:10:00 ============================================================================ +09:10:00 Slot Id : <307> +09:10:00 Transaction Type : REQUEST +09:10:00 Received From : +09:10:00 ============================================================================ +09:10:00 FNo. Len. Field Value +09:10:00 ============================================================================ +09:10:00 [ 1] [ 4] [0200] +09:10:00 [ 2] [ 16] [6213545000926398] +09:10:00 [ 3] [ 6] [010000] +09:10:00 [ 4] [ 12] [000100000000] +09:10:00 [ 7] [ 10] [0320020907] +09:10:00 [ 11] [ 6] [267405] +09:10:00 [ 12] [ 6] [090907] +09:10:00 [ 13] [ 4] [0320] +09:10:00 [ 14] [ 4] [4912] +09:10:00 [ 15] [ 4] [0320] +09:10:00 [ 18] [ 4] [6011] +09:10:00 [ 19] [ 3] [418] +09:10:00 [ 22] [ 3] [021] +09:10:00 [ 25] [ 2] [01] +09:10:00 [ 28] [ 9] [D00002000] +09:10:00 [ 32] [ 6] [180893] +09:10:00 [ 35] [ 32] [6213545000926398=491212012639048] +09:10:00 [ 37] [ 12] [507902267405] +09:10:00 [ 41] [ 8] [0368KMMX] +09:10:00 [ 42] [ 15] [999999 ] +09:10:00 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +09:10:00 [ 49] [ 3] [418] +09:10:00 [ 52] [ 16] [5F2015191F41D923] +09:10:00 ============================================================================ +09:10:00 + + +waiting on router queue for slot.... +09:10:00 Sending to : <0> +09:10:00 ============================================================================ +09:10:01 ============================================================================ +09:10:01 Slot Id : <307> +09:10:01 Transaction Type : RESPONSE +09:10:01 Received From : +09:10:01 ============================================================================ +09:10:01 FNo. Len. Field Value +09:10:01 ============================================================================ +09:10:01 [ 1] [ 4] [0210] +09:10:01 [ 2] [ 16] [6213545000926398] +09:10:01 [ 3] [ 6] [010000] +09:10:01 [ 4] [ 12] [000100000000] +09:10:01 [ 7] [ 10] [0320020907] +09:10:01 [ 11] [ 6] [267405] +09:10:01 [ 12] [ 6] [090907] +09:10:01 [ 13] [ 4] [0320] +09:10:01 [ 15] [ 4] [0320] +09:10:01 [ 18] [ 4] [6011] +09:10:01 [ 19] [ 3] [418] +09:10:01 [ 32] [ 6] [180893] +09:10:01 [ 35] [ 32] [6213545000926398=491212012639048] +09:10:01 [ 37] [ 12] [507902267405] +09:10:01 [ 38] [ 6] [969173] +09:10:01 [ 39] [ 2] [00] +09:10:01 [ 41] [ 8] [0368KMMX] +09:10:01 [ 49] [ 3] [418] +09:10:01 [ 54] [ 40] [0001418C0000226355500002418C000022635550] +09:10:01 ============================================================================ +09:10:01 Sending to : +09:10:01 ============================================================================ +09:10:01 + + +waiting on router queue for slot.... +09:10:02 ============================================================================ +09:10:02 Slot Id : <307> +09:10:02 Transaction Type : RESPONSE +09:10:02 Received From : +09:10:02 ============================================================================ +09:10:02 FNo. Len. Field Value +09:10:02 ============================================================================ +09:10:02 [ 1] [ 4] [0210] +09:10:02 [ 2] [ 16] [6213545000926398] +09:10:02 [ 3] [ 6] [010000] +09:10:02 [ 4] [ 12] [000100000000] +09:10:02 [ 7] [ 10] [0320020907] +09:10:02 [ 11] [ 6] [267405] +09:10:02 [ 12] [ 6] [090907] +09:10:02 [ 13] [ 4] [0320] +09:10:02 [ 15] [ 4] [0320] +09:10:02 [ 18] [ 4] [6011] +09:10:02 [ 19] [ 3] [418] +09:10:02 [ 32] [ 6] [180893] +09:10:02 [ 35] [ 32] [6213545000926398=491212012639048] +09:10:02 [ 37] [ 12] [507902267405] +09:10:02 [ 38] [ 6] [969173] +09:10:02 [ 39] [ 2] [00] +09:10:02 [ 41] [ 8] [0368KMMX] +09:10:02 [ 49] [ 3] [418] +09:10:02 [ 54] [ 40] [0001418C0000226355500002418C000022635550] +09:10:02 ============================================================================ +09:10:02 Calculate Source COMM Id = 2 +09:10:02 ============================================================================ +09:10:02 + + +waiting on router queue for slot.... +09:10:05 ============================================================================ +09:10:05 Slot Id : <317> +09:10:05 Transaction Type : REQUEST +09:10:05 Received From : +09:10:05 ============================================================================ +09:10:05 FNo. Len. Field Value +09:10:05 ============================================================================ +09:10:05 [ 1] [ 4] [0200] +09:10:05 [ 2] [ 16] [6688990105195208] +09:10:05 [ 3] [ 6] [010000] +09:10:05 [ 4] [ 12] [000010000000] +09:10:05 [ 7] [ 10] [0320020911] +09:10:05 [ 11] [ 6] [267406] +09:10:05 [ 12] [ 6] [090911] +09:10:05 [ 13] [ 4] [0320] +09:10:05 [ 14] [ 4] [4308] +09:10:05 [ 15] [ 4] [0320] +09:10:05 [ 18] [ 4] [6011] +09:10:05 [ 19] [ 3] [418] +09:10:05 [ 22] [ 3] [021] +09:10:05 [ 25] [ 2] [01] +09:10:05 [ 28] [ 9] [D00002000] +09:10:05 [ 32] [ 6] [180893] +09:10:05 [ 35] [ 37] [6688990105195208=43081231520877400000] +09:10:05 [ 37] [ 12] [507902267406] +09:10:05 [ 41] [ 8] [0322LNTS] +09:10:05 [ 42] [ 15] [999999 ] +09:10:05 [ 43] [ 40] [ATM LUANGNUMTHA LOCATION SING, Sing, Lao] +09:10:05 [ 49] [ 3] [418] +09:10:05 [ 52] [ 16] [2F59BB8B49860097] +09:10:05 ============================================================================ +09:10:05 + + +waiting on router queue for slot.... +09:10:05 Sending to : +09:10:05 ============================================================================ +09:10:05 Sending to : +09:10:05 ============================================================================ +09:10:05 ============================================================================ +09:10:05 Slot Id : <317> +09:10:05 Transaction Type : REQUEST +09:10:05 Received From : +09:10:05 ============================================================================ +09:10:05 FNo. Len. Field Value +09:10:05 ============================================================================ +09:10:05 [ 1] [ 4] [0200] +09:10:05 [ 2] [ 16] [6688990105195208] +09:10:05 [ 3] [ 6] [010000] +09:10:05 [ 4] [ 12] [000010000000] +09:10:05 [ 7] [ 10] [0320020911] +09:10:05 [ 11] [ 6] [267406] +09:10:05 [ 12] [ 6] [090911] +09:10:05 [ 13] [ 4] [0320] +09:10:05 [ 14] [ 4] [4308] +09:10:05 [ 15] [ 4] [0320] +09:10:05 [ 18] [ 4] [6011] +09:10:05 [ 19] [ 3] [418] +09:10:05 [ 22] [ 3] [021] +09:10:05 [ 25] [ 2] [01] +09:10:05 [ 28] [ 9] [D00002000] +09:10:05 [ 32] [ 6] [180893] +09:10:05 [ 35] [ 37] [6688990105195208=43081231520877400000] +09:10:05 [ 37] [ 12] [507902267406] +09:10:05 [ 41] [ 8] [0322LNTS] +09:10:05 [ 42] [ 15] [999999 ] +09:10:05 [ 43] [ 40] [ATM LUANGNUMTHA LOCATION SING, Sing, Lao] +09:10:05 [ 49] [ 3] [418] +09:10:05 [ 52] [ 16] [2F59BB8B49860097] +09:10:05 ============================================================================ +09:10:05 + + +waiting on router queue for slot.... +09:10:05 Sending to : +09:10:05 ============================================================================ +09:10:05 ============================================================================ +09:10:05 Slot Id : <317> +09:10:05 Transaction Type : REQUEST +09:10:05 Received From : +09:10:05 ============================================================================ +09:10:05 FNo. Len. Field Value +09:10:05 ============================================================================ +09:10:05 [ 1] [ 4] [0200] +09:10:05 [ 2] [ 16] [6688990105195208] +09:10:05 [ 3] [ 6] [010000] +09:10:05 [ 4] [ 12] [000010000000] +09:10:05 [ 7] [ 10] [0320020911] +09:10:05 [ 11] [ 6] [267406] +09:10:05 [ 12] [ 6] [090911] +09:10:05 [ 13] [ 4] [0320] +09:10:05 [ 14] [ 4] [4308] +09:10:05 [ 15] [ 4] [0320] +09:10:05 [ 18] [ 4] [6011] +09:10:05 [ 19] [ 3] [418] +09:10:05 [ 22] [ 3] [021] +09:10:05 [ 25] [ 2] [01] +09:10:05 [ 28] [ 9] [D00002000] +09:10:05 [ 32] [ 6] [180893] +09:10:05 [ 35] [ 37] [6688990105195208=43081231520877400000] +09:10:05 [ 37] [ 12] [507902267406] +09:10:05 [ 41] [ 8] [0322LNTS] +09:10:05 [ 42] [ 15] [999999 ] +09:10:05 [ 43] [ 40] [ATM LUANGNUMTHA LOCATION SING, Sing, Lao] +09:10:05 [ 49] [ 3] [418] +09:10:05 [ 52] [ 16] [7FBA483C53868A06] +09:10:05 ============================================================================ +09:10:05 + + +waiting on router queue for slot.... +09:10:05 Sending to : <0> +09:10:05 ============================================================================ +09:10:05 ============================================================================ +09:10:05 Slot Id : <317> +09:10:05 Transaction Type : RESPONSE +09:10:05 Received From : +09:10:05 ============================================================================ +09:10:05 FNo. Len. Field Value +09:10:05 ============================================================================ +09:10:05 [ 1] [ 4] [0210] +09:10:05 [ 2] [ 16] [6688990105195208] +09:10:05 [ 3] [ 6] [010000] +09:10:05 [ 4] [ 12] [000010000000] +09:10:05 [ 7] [ 10] [0320020911] +09:10:05 [ 11] [ 6] [267406] +09:10:05 [ 12] [ 6] [090911] +09:10:05 [ 13] [ 4] [0320] +09:10:05 [ 15] [ 4] [0320] +09:10:05 [ 18] [ 4] [6011] +09:10:05 [ 19] [ 3] [418] +09:10:05 [ 22] [ 3] [021] +09:10:05 [ 32] [ 6] [180893] +09:10:05 [ 35] [ 37] [6688990105195208=43081231520877400000] +09:10:05 [ 37] [ 12] [507902267406] +09:10:05 [ 39] [ 2] [14] +09:10:05 [ 41] [ 8] [0322LNTS] +09:10:05 [ 49] [ 3] [418] +09:10:05 ============================================================================ +09:10:05 Sending to : +09:10:05 ============================================================================ +09:10:05 + + +waiting on router queue for slot.... +09:10:06 ============================================================================ +09:10:06 Slot Id : <317> +09:10:06 Transaction Type : RESPONSE +09:10:06 Received From : +09:10:06 ============================================================================ +09:10:06 FNo. Len. Field Value +09:10:06 ============================================================================ +09:10:06 [ 1] [ 4] [0210] +09:10:06 [ 2] [ 16] [6688990105195208] +09:10:06 [ 3] [ 6] [010000] +09:10:06 [ 4] [ 12] [000010000000] +09:10:06 [ 7] [ 10] [0320020911] +09:10:06 [ 11] [ 6] [267406] +09:10:06 [ 12] [ 6] [090911] +09:10:06 [ 13] [ 4] [0320] +09:10:06 [ 15] [ 4] [0320] +09:10:06 [ 18] [ 4] [6011] +09:10:06 [ 19] [ 3] [418] +09:10:06 [ 22] [ 3] [021] +09:10:06 [ 32] [ 6] [180893] +09:10:06 [ 35] [ 37] [6688990105195208=43081231520877400000] +09:10:06 [ 37] [ 12] [507902267406] +09:10:06 [ 39] [ 2] [14] +09:10:06 [ 41] [ 8] [0322LNTS] +09:10:06 [ 49] [ 3] [418] +09:10:06 ============================================================================ +09:10:06 Calculate Source COMM Id = 2 +09:10:06 ============================================================================ +09:10:06 + + +waiting on router queue for slot.... +09:10:18 ============================================================================ +09:10:18 Slot Id : <310> +09:10:18 Transaction Type : REQUEST +09:10:18 Received From : +09:10:18 ============================================================================ +09:10:18 FNo. Len. Field Value +09:10:18 ============================================================================ +09:10:18 [ 1] [ 4] [0800] +09:10:18 [ 7] [ 10] [0320020926] +09:10:18 [ 11] [ 6] [155562] +09:10:18 [ 70] [ 3] [301] +09:10:18 ============================================================================ +09:10:18 + + +waiting on router queue for slot.... +09:10:18 Sending to : +09:10:18 ============================================================================ +09:10:18 ============================================================================ +09:10:18 Slot Id : <310> +09:10:18 Transaction Type : RESPONSE +09:10:18 Received From : +09:10:18 ============================================================================ +09:10:18 FNo. Len. Field Value +09:10:18 ============================================================================ +09:10:18 [ 1] [ 4] [0810] +09:10:18 [ 7] [ 10] [0320020926] +09:10:18 [ 11] [ 6] [155562] +09:10:18 [ 39] [ 2] [00] +09:10:18 [ 70] [ 3] [301] +09:10:18 ============================================================================ +09:10:18 Calculate Source COMM Id = 2 +09:10:18 ============================================================================ +09:10:18 + + +waiting on router queue for slot.... +09:10:20 ============================================================================ +09:10:20 Slot Id : <318> +09:10:20 Transaction Type : REQUEST +09:10:20 Received From : +09:10:20 ============================================================================ +09:10:20 FNo. Len. Field Value +09:10:20 ============================================================================ +09:10:20 [ 1] [ 4] [0800] +09:10:20 [ 2] [ 5] [02531] +09:10:20 [ 3] [ 6] [579098] +09:10:20 [ 7] [ 10] [0320021020] +09:10:20 [ 11] [ 6] [806944] +09:10:20 [ 15] [ 10] [0320021020] +09:10:20 [ 37] [ 11] [57909806944] +09:10:20 [ 70] [ 3] [001] +09:10:20 ============================================================================ +09:10:20 + + +waiting on router queue for slot.... +09:10:20 ============================================================================ +09:10:20 Slot Id : <318> +09:10:20 Transaction Type : RESPONSE +09:10:20 Received From : +09:10:20 ============================================================================ +09:10:20 FNo. Len. Field Value +09:10:20 ============================================================================ +09:10:20 [ 1] [ 4] [0810] +09:10:20 [ 7] [ 10] [0320021020] +09:10:20 [ 11] [ 6] [806944] +09:10:20 [ 15] [ 4] [0320] +09:10:20 [ 37] [ 12] [57909806944] +09:10:20 [ 39] [ 2] [00] +09:10:20 [ 70] [ 3] [001] +09:10:20 ============================================================================ +09:10:20 Sending to : +09:10:20 ============================================================================ +09:10:20 + + +waiting on router queue for slot.... +09:10:22 ============================================================================ +09:10:22 Slot Id : <315> +09:10:22 Transaction Type : REQUEST +09:10:22 Received From : +09:10:22 ============================================================================ +09:10:22 FNo. Len. Field Value +09:10:22 ============================================================================ +09:10:22 [ 1] [ 4] [0200] +09:10:22 [ 2] [ 16] [6213545000660914] +09:10:22 [ 3] [ 6] [010000] +09:10:22 [ 4] [ 12] [000010000000] +09:10:22 [ 7] [ 10] [0320090814] +09:10:22 [ 11] [ 6] [934867] +09:10:22 [ 12] [ 6] [090814] +09:10:22 [ 13] [ 4] [0320] +09:10:22 [ 15] [ 4] [0320] +09:10:22 [ 18] [ 4] [6011] +09:10:22 [ 19] [ 3] [418] +09:10:22 [ 22] [ 3] [021] +09:10:22 [ 25] [ 2] [01] +09:10:22 [ 28] [ 9] [D00002000] +09:10:22 [ 32] [ 6] [668899] +09:10:22 [ 35] [ 32] [6213545000660914=491212016091669] +09:10:22 [ 37] [ 12] [507901989961] +09:10:22 [ 41] [ 8] [03309001] +09:10:22 [ 42] [ 15] [APT ] +09:10:22 [ 43] [ 40] [ PHONESAVANH MARKET UNIT P] +09:10:22 [ 49] [ 3] [418] +09:10:22 [ 52] [ 16] [650F1DCDE35F24A7] +09:10:22 ============================================================================ +09:10:22 + + +waiting on router queue for slot.... +09:10:22 Sending to : +09:10:22 ============================================================================ +09:10:22 Sending to : +09:10:22 ============================================================================ +09:10:23 ============================================================================ +09:10:23 Slot Id : <315> +09:10:23 Transaction Type : REQUEST +09:10:23 Received From : +09:10:23 ============================================================================ +09:10:23 FNo. Len. Field Value +09:10:23 ============================================================================ +09:10:23 [ 1] [ 4] [0200] +09:10:23 [ 2] [ 16] [6213545000660914] +09:10:23 [ 3] [ 6] [010000] +09:10:23 [ 4] [ 12] [000010000000] +09:10:23 [ 7] [ 10] [0320090814] +09:10:23 [ 11] [ 6] [934867] +09:10:23 [ 12] [ 6] [090814] +09:10:23 [ 13] [ 4] [0320] +09:10:23 [ 15] [ 4] [0320] +09:10:23 [ 18] [ 4] [6011] +09:10:23 [ 19] [ 3] [418] +09:10:23 [ 22] [ 3] [021] +09:10:23 [ 25] [ 2] [01] +09:10:23 [ 28] [ 9] [D00002000] +09:10:23 [ 32] [ 6] [668899] +09:10:23 [ 35] [ 32] [6213545000660914=491212016091669] +09:10:23 [ 37] [ 12] [507901989961] +09:10:23 [ 41] [ 8] [03309001] +09:10:23 [ 42] [ 15] [APT ] +09:10:23 [ 43] [ 40] [ PHONESAVANH MARKET UNIT P] +09:10:23 [ 49] [ 3] [418] +09:10:23 [ 52] [ 16] [650F1DCDE35F24A7] +09:10:23 ============================================================================ +09:10:23 + + +waiting on router queue for slot.... +09:10:23 Sending to : +09:10:23 ============================================================================ +09:10:23 ============================================================================ +09:10:23 Slot Id : <315> +09:10:23 Transaction Type : REQUEST +09:10:23 Received From : +09:10:23 ============================================================================ +09:10:23 FNo. Len. Field Value +09:10:23 ============================================================================ +09:10:23 [ 1] [ 4] [0200] +09:10:23 [ 2] [ 16] [6213545000660914] +09:10:23 [ 3] [ 6] [010000] +09:10:23 [ 4] [ 12] [000010000000] +09:10:23 [ 7] [ 10] [0320090814] +09:10:23 [ 11] [ 6] [934867] +09:10:23 [ 12] [ 6] [090814] +09:10:23 [ 13] [ 4] [0320] +09:10:23 [ 15] [ 4] [0320] +09:10:23 [ 18] [ 4] [6011] +09:10:23 [ 19] [ 3] [418] +09:10:23 [ 22] [ 3] [021] +09:10:23 [ 25] [ 2] [01] +09:10:23 [ 28] [ 9] [D00002000] +09:10:23 [ 32] [ 6] [668899] +09:10:23 [ 35] [ 32] [6213545000660914=491212016091669] +09:10:23 [ 37] [ 12] [507901989961] +09:10:23 [ 41] [ 8] [03309001] +09:10:23 [ 42] [ 15] [APT ] +09:10:23 [ 43] [ 40] [ PHONESAVANH MARKET UNIT P] +09:10:23 [ 49] [ 3] [418] +09:10:23 [ 52] [ 16] [F34FC4456BA750D9] +09:10:23 ============================================================================ +09:10:23 + + +waiting on router queue for slot.... +09:10:23 Sending to : <0> +09:10:23 ============================================================================ +09:10:24 ============================================================================ +09:10:24 Slot Id : <315> +09:10:24 Transaction Type : RESPONSE +09:10:24 Received From : +09:10:24 ============================================================================ +09:10:24 FNo. Len. Field Value +09:10:24 ============================================================================ +09:10:24 [ 1] [ 4] [0210] +09:10:24 [ 2] [ 16] [6213545000660914] +09:10:24 [ 3] [ 6] [010000] +09:10:24 [ 4] [ 12] [000010000000] +09:10:24 [ 7] [ 10] [0320090814] +09:10:24 [ 11] [ 6] [934867] +09:10:24 [ 12] [ 6] [090814] +09:10:24 [ 13] [ 4] [0320] +09:10:24 [ 15] [ 4] [0320] +09:10:24 [ 18] [ 4] [6011] +09:10:24 [ 19] [ 3] [418] +09:10:24 [ 32] [ 6] [668899] +09:10:24 [ 35] [ 32] [6213545000660914=491212016091669] +09:10:24 [ 37] [ 12] [507901989961] +09:10:24 [ 38] [ 6] [396295] +09:10:24 [ 39] [ 2] [00] +09:10:24 [ 41] [ 8] [03309001] +09:10:24 [ 49] [ 3] [418] +09:10:24 [ 54] [ 40] [0001418C0002563603850002418C000256360385] +09:10:24 ============================================================================ +09:10:24 Sending to : +09:10:24 ============================================================================ +09:10:24 + + +waiting on router queue for slot.... +09:10:25 ============================================================================ +09:10:25 Slot Id : <315> +09:10:25 Transaction Type : RESPONSE +09:10:25 Received From : +09:10:25 ============================================================================ +09:10:25 FNo. Len. Field Value +09:10:25 ============================================================================ +09:10:25 [ 1] [ 4] [0210] +09:10:25 [ 2] [ 16] [6213545000660914] +09:10:25 [ 3] [ 6] [010000] +09:10:25 [ 4] [ 12] [000010000000] +09:10:25 [ 7] [ 10] [0320090814] +09:10:25 [ 11] [ 6] [934867] +09:10:25 [ 12] [ 6] [090814] +09:10:25 [ 13] [ 4] [0320] +09:10:25 [ 15] [ 4] [0320] +09:10:25 [ 18] [ 4] [6011] +09:10:25 [ 19] [ 3] [418] +09:10:25 [ 32] [ 6] [668899] +09:10:25 [ 35] [ 32] [6213545000660914=491212016091669] +09:10:25 [ 37] [ 12] [507901989961] +09:10:25 [ 38] [ 6] [396295] +09:10:25 [ 39] [ 2] [00] +09:10:25 [ 41] [ 8] [03309001] +09:10:25 [ 49] [ 3] [418] +09:10:25 [ 54] [ 40] [0001418C0002563603850002418C000256360385] +09:10:25 ============================================================================ +09:10:25 Calculate Source COMM Id = 4 +09:10:25 ============================================================================ +09:10:25 + + +waiting on router queue for slot.... +09:10:26 ============================================================================ +09:10:26 Slot Id : <322> +09:10:26 Transaction Type : REQUEST +09:10:26 Received From : +09:10:26 ============================================================================ +09:10:26 FNo. Len. Field Value +09:10:26 ============================================================================ +09:10:26 [ 1] [ 4] [0800] +09:10:26 [ 7] [ 10] [0320162216] +09:10:26 [ 11] [ 6] [092216] +09:10:26 [ 37] [ 12] [57909092216] +09:10:26 [ 70] [ 3] [301] +09:10:26 ============================================================================ +09:10:26 + + +waiting on router queue for slot.... +09:10:26 Sending to : +09:10:26 ============================================================================ +09:10:26 ============================================================================ +09:10:26 Slot Id : <322> +09:10:26 Transaction Type : RESPONSE +09:10:26 Received From : +09:10:26 ============================================================================ +09:10:26 FNo. Len. Field Value +09:10:26 ============================================================================ +09:10:26 [ 1] [ 4] [0810] +09:10:26 [ 7] [ 10] [0320162216] +09:10:26 [ 11] [ 6] [092216] +09:10:26 [ 37] [ 12] [579090922160] +09:10:26 [ 39] [ 2] [00] +09:10:26 [ 70] [ 3] [810] +09:10:26 ============================================================================ +09:10:26 Calculate Source COMM Id = 6 +09:10:26 ============================================================================ +09:10:26 + + +waiting on router queue for slot.... +09:10:32 ============================================================================ +09:10:32 Slot Id : <289> +09:10:32 Transaction Type : REQUEST +09:10:32 Received From : +09:10:32 ============================================================================ +09:10:32 FNo. Len. Field Value +09:10:32 ============================================================================ +09:10:32 [ 1] [ 4] [0200] +09:10:32 [ 2] [ 16] [6213541000224025] +09:10:32 [ 3] [ 6] [010000] +09:10:32 [ 4] [ 12] [000100000000] +09:10:32 [ 7] [ 10] [0320090823] +09:10:32 [ 11] [ 6] [934872] +09:10:32 [ 12] [ 6] [090823] +09:10:32 [ 13] [ 4] [0320] +09:10:32 [ 15] [ 4] [0320] +09:10:32 [ 18] [ 4] [6011] +09:10:32 [ 19] [ 3] [418] +09:10:32 [ 22] [ 3] [021] +09:10:32 [ 25] [ 2] [01] +09:10:32 [ 28] [ 9] [D00002000] +09:10:32 [ 32] [ 6] [668899] +09:10:32 [ 35] [ 32] [6213541000224025=491212012402285] +09:10:32 [ 37] [ 12] [507901489196] +09:10:32 [ 41] [ 8] [03515001] +09:10:32 [ 42] [ 15] [APT ] +09:10:32 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +09:10:32 [ 49] [ 3] [418] +09:10:32 [ 52] [ 16] [F8A43953573E22B0] +09:10:32 ============================================================================ +09:10:32 + + +waiting on router queue for slot.... +09:10:32 Sending to : +09:10:32 ============================================================================ +09:10:32 Sending to : +09:10:32 ============================================================================ +09:10:32 ============================================================================ +09:10:32 Slot Id : <289> +09:10:32 Transaction Type : REQUEST +09:10:32 Received From : +09:10:32 ============================================================================ +09:10:32 FNo. Len. Field Value +09:10:32 ============================================================================ +09:10:32 [ 1] [ 4] [0200] +09:10:32 [ 2] [ 16] [6213541000224025] +09:10:32 [ 3] [ 6] [010000] +09:10:32 [ 4] [ 12] [000100000000] +09:10:32 [ 7] [ 10] [0320090823] +09:10:32 [ 11] [ 6] [934872] +09:10:32 [ 12] [ 6] [090823] +09:10:32 [ 13] [ 4] [0320] +09:10:32 [ 15] [ 4] [0320] +09:10:32 [ 18] [ 4] [6011] +09:10:32 [ 19] [ 3] [418] +09:10:32 [ 22] [ 3] [021] +09:10:32 [ 25] [ 2] [01] +09:10:32 [ 28] [ 9] [D00002000] +09:10:32 [ 32] [ 6] [668899] +09:10:32 [ 35] [ 32] [6213541000224025=491212012402285] +09:10:32 [ 37] [ 12] [507901489196] +09:10:32 [ 41] [ 8] [03515001] +09:10:32 [ 42] [ 15] [APT ] +09:10:32 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +09:10:32 [ 49] [ 3] [418] +09:10:32 [ 52] [ 16] [F8A43953573E22B0] +09:10:32 ============================================================================ +09:10:32 + + +waiting on router queue for slot.... +09:10:32 Sending to : +09:10:32 ============================================================================ +09:10:32 ============================================================================ +09:10:32 Slot Id : <289> +09:10:32 Transaction Type : REQUEST +09:10:32 Received From : +09:10:32 ============================================================================ +09:10:32 FNo. Len. Field Value +09:10:32 ============================================================================ +09:10:32 [ 1] [ 4] [0200] +09:10:32 [ 2] [ 16] [6213541000224025] +09:10:32 [ 3] [ 6] [010000] +09:10:32 [ 4] [ 12] [000100000000] +09:10:32 [ 7] [ 10] [0320090823] +09:10:32 [ 11] [ 6] [934872] +09:10:32 [ 12] [ 6] [090823] +09:10:32 [ 13] [ 4] [0320] +09:10:32 [ 15] [ 4] [0320] +09:10:32 [ 18] [ 4] [6011] +09:10:32 [ 19] [ 3] [418] +09:10:32 [ 22] [ 3] [021] +09:10:32 [ 25] [ 2] [01] +09:10:32 [ 28] [ 9] [D00002000] +09:10:32 [ 32] [ 6] [668899] +09:10:32 [ 35] [ 32] [6213541000224025=491212012402285] +09:10:32 [ 37] [ 12] [507901489196] +09:10:32 [ 41] [ 8] [03515001] +09:10:32 [ 42] [ 15] [APT ] +09:10:32 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +09:10:32 [ 49] [ 3] [418] +09:10:32 [ 52] [ 16] [98D44C80188AC4D3] +09:10:32 ============================================================================ +09:10:32 + + +waiting on router queue for slot.... +09:10:32 Sending to : <0> +09:10:32 ============================================================================ +09:10:34 ============================================================================ +09:10:34 Slot Id : <304> +09:10:34 Transaction Type : REQUEST +09:10:34 Received From : +09:10:34 ============================================================================ +09:10:34 FNo. Len. Field Value +09:10:34 ============================================================================ +09:10:34 [ 1] [ 4] [0800] +09:10:34 [ 7] [ 10] [0320020942] +09:10:34 [ 11] [ 6] [155563] +09:10:34 [ 70] [ 3] [301] +09:10:34 ============================================================================ +09:10:34 + + +waiting on router queue for slot.... +09:10:34 Sending to : +09:10:34 ============================================================================ +09:10:34 ============================================================================ +09:10:34 Slot Id : <304> +09:10:34 Transaction Type : RESPONSE +09:10:34 Received From : +09:10:34 ============================================================================ +09:10:34 FNo. Len. Field Value +09:10:34 ============================================================================ +09:10:34 [ 1] [ 4] [0810] +09:10:34 [ 7] [ 10] [0320020942] +09:10:34 [ 11] [ 6] [155563] +09:10:34 [ 39] [ 2] [00] +09:10:34 [ 70] [ 3] [301] +09:10:34 ============================================================================ +09:10:34 Calculate Source COMM Id = 2 +09:10:34 ============================================================================ +09:10:34 + + +waiting on router queue for slot.... +09:10:34 ============================================================================ +09:10:34 Slot Id : <289> +09:10:34 Transaction Type : RESPONSE +09:10:34 Received From : +09:10:34 ============================================================================ +09:10:34 FNo. Len. Field Value +09:10:34 ============================================================================ +09:10:34 [ 1] [ 4] [0210] +09:10:34 [ 2] [ 16] [6213541000224025] +09:10:34 [ 3] [ 6] [010000] +09:10:34 [ 4] [ 12] [000100000000] +09:10:34 [ 7] [ 10] [0320090823] +09:10:34 [ 11] [ 6] [934872] +09:10:34 [ 12] [ 6] [090823] +09:10:34 [ 13] [ 4] [0320] +09:10:34 [ 15] [ 4] [0320] +09:10:34 [ 18] [ 4] [6011] +09:10:34 [ 19] [ 3] [418] +09:10:34 [ 32] [ 6] [668899] +09:10:34 [ 35] [ 32] [6213541000224025=491212012402285] +09:10:34 [ 37] [ 12] [507901489196] +09:10:34 [ 38] [ 6] [014554] +09:10:34 [ 39] [ 2] [00] +09:10:34 [ 41] [ 8] [03515001] +09:10:34 [ 49] [ 3] [418] +09:10:34 [ 54] [ 40] [0001418C0001152322090002418C000115232209] +09:10:34 ============================================================================ +09:10:34 Sending to : +09:10:34 ============================================================================ +09:10:34 + + +waiting on router queue for slot.... +09:10:35 ============================================================================ +09:10:35 Slot Id : <285> +09:10:35 Transaction Type : REQUEST +09:10:35 Received From : +09:10:35 ============================================================================ +09:10:35 FNo. Len. Field Value +09:10:35 ============================================================================ +09:10:35 [ 1] [ 4] [0200] +09:10:35 [ 2] [ 16] [6213543000246040] +09:10:35 [ 3] [ 6] [010000] +09:10:35 [ 4] [ 12] [000100000000] +09:10:35 [ 7] [ 10] [0320090826] +09:10:35 [ 11] [ 6] [934875] +09:10:35 [ 12] [ 6] [090826] +09:10:35 [ 13] [ 4] [0320] +09:10:35 [ 15] [ 4] [0320] +09:10:35 [ 18] [ 4] [6011] +09:10:35 [ 19] [ 3] [418] +09:10:35 [ 22] [ 3] [021] +09:10:35 [ 25] [ 2] [01] +09:10:35 [ 28] [ 9] [D00002000] +09:10:35 [ 32] [ 6] [668899] +09:10:35 [ 35] [ 32] [6213543000246040=491212014604560] +09:10:35 [ 37] [ 12] [507901963390] +09:10:35 [ 41] [ 8] [03020019] +09:10:35 [ 42] [ 15] [APT ] +09:10:35 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:10:35 [ 49] [ 3] [418] +09:10:35 [ 52] [ 16] [80476D9201D9A001] +09:10:35 ============================================================================ +09:10:35 + + +waiting on router queue for slot.... +09:10:35 Sending to : +09:10:35 ============================================================================ +09:10:35 Sending to : +09:10:35 ============================================================================ +09:10:35 ============================================================================ +09:10:35 Slot Id : <285> +09:10:35 Transaction Type : REQUEST +09:10:35 Received From : +09:10:35 ============================================================================ +09:10:35 FNo. Len. Field Value +09:10:35 ============================================================================ +09:10:35 [ 1] [ 4] [0200] +09:10:35 [ 2] [ 16] [6213543000246040] +09:10:35 [ 3] [ 6] [010000] +09:10:35 [ 4] [ 12] [000100000000] +09:10:35 [ 7] [ 10] [0320090826] +09:10:35 [ 11] [ 6] [934875] +09:10:35 [ 12] [ 6] [090826] +09:10:35 [ 13] [ 4] [0320] +09:10:35 [ 15] [ 4] [0320] +09:10:35 [ 18] [ 4] [6011] +09:10:35 [ 19] [ 3] [418] +09:10:35 [ 22] [ 3] [021] +09:10:35 [ 25] [ 2] [01] +09:10:35 [ 28] [ 9] [D00002000] +09:10:35 [ 32] [ 6] [668899] +09:10:35 [ 35] [ 32] [6213543000246040=491212014604560] +09:10:35 [ 37] [ 12] [507901963390] +09:10:35 [ 41] [ 8] [03020019] +09:10:35 [ 42] [ 15] [APT ] +09:10:35 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:10:35 [ 49] [ 3] [418] +09:10:35 [ 52] [ 16] [80476D9201D9A001] +09:10:35 ============================================================================ +09:10:35 + + +waiting on router queue for slot.... +09:10:35 Sending to : +09:10:35 ============================================================================ +09:10:35 ============================================================================ +09:10:35 Slot Id : <285> +09:10:35 Transaction Type : REQUEST +09:10:35 Received From : +09:10:35 ============================================================================ +09:10:35 FNo. Len. Field Value +09:10:35 ============================================================================ +09:10:35 [ 1] [ 4] [0200] +09:10:35 [ 2] [ 16] [6213543000246040] +09:10:35 [ 3] [ 6] [010000] +09:10:35 [ 4] [ 12] [000100000000] +09:10:35 [ 7] [ 10] [0320090826] +09:10:35 [ 11] [ 6] [934875] +09:10:35 [ 12] [ 6] [090826] +09:10:35 [ 13] [ 4] [0320] +09:10:35 [ 15] [ 4] [0320] +09:10:35 [ 18] [ 4] [6011] +09:10:35 [ 19] [ 3] [418] +09:10:35 [ 22] [ 3] [021] +09:10:35 [ 25] [ 2] [01] +09:10:35 [ 28] [ 9] [D00002000] +09:10:35 [ 32] [ 6] [668899] +09:10:35 [ 35] [ 32] [6213543000246040=491212014604560] +09:10:35 [ 37] [ 12] [507901963390] +09:10:35 [ 41] [ 8] [03020019] +09:10:35 [ 42] [ 15] [APT ] +09:10:35 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:10:35 [ 49] [ 3] [418] +09:10:35 [ 52] [ 16] [6BEBB0F3F6C7B814] +09:10:35 ============================================================================ +09:10:35 + + +waiting on router queue for slot.... +09:10:35 Sending to : <0> +09:10:35 ============================================================================ +09:10:35 ============================================================================ +09:10:35 Slot Id : <289> +09:10:35 Transaction Type : RESPONSE +09:10:35 Received From : +09:10:35 ============================================================================ +09:10:35 FNo. Len. Field Value +09:10:35 ============================================================================ +09:10:35 [ 1] [ 4] [0210] +09:10:35 [ 2] [ 16] [6213541000224025] +09:10:35 [ 3] [ 6] [010000] +09:10:35 [ 4] [ 12] [000100000000] +09:10:35 [ 7] [ 10] [0320090823] +09:10:35 [ 11] [ 6] [934872] +09:10:35 [ 12] [ 6] [090823] +09:10:35 [ 13] [ 4] [0320] +09:10:35 [ 15] [ 4] [0320] +09:10:35 [ 18] [ 4] [6011] +09:10:35 [ 19] [ 3] [418] +09:10:35 [ 32] [ 6] [668899] +09:10:35 [ 35] [ 32] [6213541000224025=491212012402285] +09:10:35 [ 37] [ 12] [507901489196] +09:10:35 [ 38] [ 6] [014554] +09:10:35 [ 39] [ 2] [00] +09:10:35 [ 41] [ 8] [03515001] +09:10:35 [ 49] [ 3] [418] +09:10:35 [ 54] [ 40] [0001418C0001152322090002418C000115232209] +09:10:35 ============================================================================ +09:10:35 Calculate Source COMM Id = 4 +09:10:35 ============================================================================ +09:10:35 + + +waiting on router queue for slot.... +09:10:35 ============================================================================ +09:10:35 Slot Id : <297> +09:10:35 Transaction Type : REQUEST +09:10:35 Received From : +09:10:35 ============================================================================ +09:10:35 FNo. Len. Field Value +09:10:35 ============================================================================ +09:10:35 [ 1] [ 4] [0200] +09:10:35 [ 2] [ 16] [6688990601489105] +09:10:35 [ 3] [ 6] [010000] +09:10:35 [ 4] [ 12] [000010000000] +09:10:35 [ 7] [ 10] [0320020942] +09:10:35 [ 11] [ 6] [267413] +09:10:35 [ 12] [ 6] [090942] +09:10:35 [ 13] [ 4] [0320] +09:10:35 [ 14] [ 4] [4109] +09:10:35 [ 15] [ 4] [0320] +09:10:35 [ 18] [ 4] [6011] +09:10:35 [ 19] [ 3] [418] +09:10:35 [ 22] [ 3] [021] +09:10:35 [ 25] [ 2] [01] +09:10:35 [ 28] [ 9] [D00002000] +09:10:35 [ 32] [ 6] [180893] +09:10:35 [ 35] [ 37] [6688990601489105=41090061910514700000] +09:10:35 [ 37] [ 12] [507902267413] +09:10:35 [ 41] [ 8] [0369SLVL] +09:10:35 [ 42] [ 15] [999999 ] +09:10:35 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:10:35 [ 49] [ 3] [418] +09:10:35 [ 52] [ 16] [A20158EC0132CFD9] +09:10:35 ============================================================================ +09:10:35 + + +waiting on router queue for slot.... +09:10:35 Sending to : +09:10:35 ============================================================================ +09:10:35 Sending to : +09:10:35 ============================================================================ +09:10:36 ============================================================================ +09:10:36 Slot Id : <297> +09:10:36 Transaction Type : REQUEST +09:10:36 Received From : +09:10:36 ============================================================================ +09:10:36 FNo. Len. Field Value +09:10:36 ============================================================================ +09:10:36 [ 1] [ 4] [0200] +09:10:36 [ 2] [ 16] [6688990601489105] +09:10:36 [ 3] [ 6] [010000] +09:10:36 [ 4] [ 12] [000010000000] +09:10:36 [ 7] [ 10] [0320020942] +09:10:36 [ 11] [ 6] [267413] +09:10:36 [ 12] [ 6] [090942] +09:10:36 [ 13] [ 4] [0320] +09:10:36 [ 14] [ 4] [4109] +09:10:36 [ 15] [ 4] [0320] +09:10:36 [ 18] [ 4] [6011] +09:10:36 [ 19] [ 3] [418] +09:10:36 [ 22] [ 3] [021] +09:10:36 [ 25] [ 2] [01] +09:10:36 [ 28] [ 9] [D00002000] +09:10:36 [ 32] [ 6] [180893] +09:10:36 [ 35] [ 37] [6688990601489105=41090061910514700000] +09:10:36 [ 37] [ 12] [507902267413] +09:10:36 [ 41] [ 8] [0369SLVL] +09:10:36 [ 42] [ 15] [999999 ] +09:10:36 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:10:36 [ 49] [ 3] [418] +09:10:36 [ 52] [ 16] [A20158EC0132CFD9] +09:10:36 ============================================================================ +09:10:36 + + +waiting on router queue for slot.... +09:10:36 Sending to : +09:10:36 ============================================================================ +09:10:36 ============================================================================ +09:10:36 Slot Id : <297> +09:10:36 Transaction Type : REQUEST +09:10:36 Received From : +09:10:36 ============================================================================ +09:10:36 FNo. Len. Field Value +09:10:36 ============================================================================ +09:10:36 [ 1] [ 4] [0200] +09:10:36 [ 2] [ 16] [6688990601489105] +09:10:36 [ 3] [ 6] [010000] +09:10:36 [ 4] [ 12] [000010000000] +09:10:36 [ 7] [ 10] [0320020942] +09:10:36 [ 11] [ 6] [267413] +09:10:36 [ 12] [ 6] [090942] +09:10:36 [ 13] [ 4] [0320] +09:10:36 [ 14] [ 4] [4109] +09:10:36 [ 15] [ 4] [0320] +09:10:36 [ 18] [ 4] [6011] +09:10:36 [ 19] [ 3] [418] +09:10:36 [ 22] [ 3] [021] +09:10:36 [ 25] [ 2] [01] +09:10:36 [ 28] [ 9] [D00002000] +09:10:36 [ 32] [ 6] [180893] +09:10:36 [ 35] [ 37] [6688990601489105=41090061910514700000] +09:10:36 [ 37] [ 12] [507902267413] +09:10:36 [ 41] [ 8] [0369SLVL] +09:10:36 [ 42] [ 15] [999999 ] +09:10:36 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:10:36 [ 49] [ 3] [418] +09:10:36 [ 52] [ 16] [1A1519804766CEB9] +09:10:36 ============================================================================ +09:10:36 + + +waiting on router queue for slot.... +09:10:36 Sending to : <0> +09:10:36 ============================================================================ +09:10:36 ============================================================================ +09:10:36 Slot Id : <285> +09:10:36 Transaction Type : RESPONSE +09:10:36 Received From : +09:10:36 ============================================================================ +09:10:36 FNo. Len. Field Value +09:10:36 ============================================================================ +09:10:36 [ 1] [ 4] [0210] +09:10:36 [ 2] [ 16] [6213543000246040] +09:10:36 [ 3] [ 6] [010000] +09:10:36 [ 4] [ 12] [000100000000] +09:10:36 [ 7] [ 10] [0320090826] +09:10:36 [ 11] [ 6] [934875] +09:10:36 [ 12] [ 6] [090826] +09:10:36 [ 13] [ 4] [0320] +09:10:36 [ 15] [ 4] [0320] +09:10:36 [ 18] [ 4] [6011] +09:10:36 [ 19] [ 3] [418] +09:10:36 [ 32] [ 6] [668899] +09:10:36 [ 35] [ 32] [6213543000246040=491212014604560] +09:10:36 [ 37] [ 12] [507901963390] +09:10:36 [ 38] [ 6] [651258] +09:10:36 [ 39] [ 2] [00] +09:10:36 [ 41] [ 8] [03020019] +09:10:36 [ 49] [ 3] [418] +09:10:36 [ 54] [ 40] [0001418C0001066194000002418C000106619400] +09:10:36 ============================================================================ +09:10:36 Sending to : +09:10:36 ============================================================================ +09:10:36 + + +waiting on router queue for slot.... +09:10:37 ============================================================================ +09:10:37 Slot Id : <297> +09:10:37 Transaction Type : RESPONSE +09:10:37 Received From : +09:10:37 ============================================================================ +09:10:37 FNo. Len. Field Value +09:10:37 ============================================================================ +09:10:37 [ 1] [ 4] [0210] +09:10:37 [ 2] [ 16] [6688990601489105] +09:10:37 [ 3] [ 6] [010000] +09:10:37 [ 4] [ 12] [000010000000] +09:10:37 [ 7] [ 10] [0320020942] +09:10:37 [ 11] [ 6] [267413] +09:10:37 [ 12] [ 6] [090942] +09:10:37 [ 13] [ 4] [0320] +09:10:37 [ 15] [ 4] [0320] +09:10:37 [ 18] [ 4] [6011] +09:10:37 [ 19] [ 3] [418] +09:10:37 [ 22] [ 3] [021] +09:10:37 [ 32] [ 6] [180893] +09:10:37 [ 35] [ 37] [6688990601489105=41090061910514700000] +09:10:37 [ 37] [ 12] [507902267413] +09:10:37 [ 39] [ 2] [14] +09:10:37 [ 41] [ 8] [0369SLVL] +09:10:37 [ 49] [ 3] [418] +09:10:37 ============================================================================ +09:10:37 Sending to : +09:10:37 ============================================================================ +09:10:37 + + +waiting on router queue for slot.... +09:10:37 ============================================================================ +09:10:37 Slot Id : <285> +09:10:37 Transaction Type : RESPONSE +09:10:37 Received From : +09:10:37 ============================================================================ +09:10:37 FNo. Len. Field Value +09:10:37 ============================================================================ +09:10:37 [ 1] [ 4] [0210] +09:10:37 [ 2] [ 16] [6213543000246040] +09:10:37 [ 3] [ 6] [010000] +09:10:37 [ 4] [ 12] [000100000000] +09:10:37 [ 7] [ 10] [0320090826] +09:10:37 [ 11] [ 6] [934875] +09:10:37 [ 12] [ 6] [090826] +09:10:37 [ 13] [ 4] [0320] +09:10:37 [ 15] [ 4] [0320] +09:10:37 [ 18] [ 4] [6011] +09:10:37 [ 19] [ 3] [418] +09:10:37 [ 32] [ 6] [668899] +09:10:37 [ 35] [ 32] [6213543000246040=491212014604560] +09:10:37 [ 37] [ 12] [507901963390] +09:10:37 [ 38] [ 6] [651258] +09:10:37 [ 39] [ 2] [00] +09:10:37 [ 41] [ 8] [03020019] +09:10:37 [ 49] [ 3] [418] +09:10:37 [ 54] [ 40] [0001418C0001066194000002418C000106619400] +09:10:37 ============================================================================ +09:10:37 Calculate Source COMM Id = 4 +09:10:37 ============================================================================ +09:10:37 + + +waiting on router queue for slot.... +09:10:38 ============================================================================ +09:10:38 Slot Id : <297> +09:10:38 Transaction Type : RESPONSE +09:10:38 Received From : +09:10:38 ============================================================================ +09:10:38 FNo. Len. Field Value +09:10:38 ============================================================================ +09:10:38 [ 1] [ 4] [0210] +09:10:38 [ 2] [ 16] [6688990601489105] +09:10:38 [ 3] [ 6] [010000] +09:10:38 [ 4] [ 12] [000010000000] +09:10:38 [ 7] [ 10] [0320020942] +09:10:38 [ 11] [ 6] [267413] +09:10:38 [ 12] [ 6] [090942] +09:10:38 [ 13] [ 4] [0320] +09:10:38 [ 15] [ 4] [0320] +09:10:38 [ 18] [ 4] [6011] +09:10:38 [ 19] [ 3] [418] +09:10:38 [ 22] [ 3] [021] +09:10:38 [ 32] [ 6] [180893] +09:10:38 [ 35] [ 37] [6688990601489105=41090061910514700000] +09:10:38 [ 37] [ 12] [507902267413] +09:10:38 [ 39] [ 2] [14] +09:10:38 [ 41] [ 8] [0369SLVL] +09:10:38 [ 49] [ 3] [418] +09:10:38 ============================================================================ +09:10:38 Calculate Source COMM Id = 2 +09:10:38 ============================================================================ +09:10:38 + + +waiting on router queue for slot.... +09:10:39 ============================================================================ +09:10:39 Slot Id : <325> +09:10:39 Transaction Type : REQUEST +09:10:39 Received From : +09:10:39 ============================================================================ +09:10:39 FNo. Len. Field Value +09:10:39 ============================================================================ +09:10:39 [ 1] [ 4] [0200] +09:10:39 [ 2] [ 16] [6213541000313638] +09:10:39 [ 3] [ 6] [011000] +09:10:39 [ 4] [ 12] [000050000000] +09:10:39 [ 7] [ 10] [0320091826] +09:10:39 [ 11] [ 6] [177319] +09:10:39 [ 12] [ 6] [091826] +09:10:39 [ 13] [ 4] [0320] +09:10:39 [ 14] [ 4] [4912] +09:10:39 [ 15] [ 4] [0320] +09:10:39 [ 18] [ 4] [6011] +09:10:39 [ 22] [ 3] [900] +09:10:39 [ 25] [ 2] [02] +09:10:39 [ 28] [ 9] [D00002000] +09:10:39 [ 32] [ 6] [220699] +09:10:39 [ 35] [ 32] [6213541000313638=491212011363410] +09:10:39 [ 37] [ 12] [507900010196] +09:10:39 [ 41] [ 8] [01000100] +09:10:39 [ 42] [ 15] [APTRA ] +09:10:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:10:39 [ 49] [ 3] [418] +09:10:39 [ 52] [ 16] [34588EB992D4056D] +09:10:39 ============================================================================ +09:10:39 + + +waiting on router queue for slot.... +09:10:39 Sending to : +09:10:39 ============================================================================ +09:10:39 Sending to : +09:10:39 ============================================================================ +09:10:39 ============================================================================ +09:10:39 Slot Id : <325> +09:10:39 Transaction Type : REQUEST +09:10:39 Received From : +09:10:39 ============================================================================ +09:10:39 FNo. Len. Field Value +09:10:39 ============================================================================ +09:10:39 [ 1] [ 4] [0200] +09:10:39 [ 2] [ 16] [6213541000313638] +09:10:39 [ 3] [ 6] [011000] +09:10:39 [ 4] [ 12] [000050000000] +09:10:39 [ 7] [ 10] [0320091826] +09:10:39 [ 11] [ 6] [177319] +09:10:39 [ 12] [ 6] [091826] +09:10:39 [ 13] [ 4] [0320] +09:10:39 [ 14] [ 4] [4912] +09:10:39 [ 15] [ 4] [0320] +09:10:39 [ 18] [ 4] [6011] +09:10:39 [ 22] [ 3] [900] +09:10:39 [ 25] [ 2] [02] +09:10:39 [ 28] [ 9] [D00002000] +09:10:39 [ 32] [ 6] [220699] +09:10:39 [ 35] [ 32] [6213541000313638=491212011363410] +09:10:39 [ 37] [ 12] [507900010196] +09:10:39 [ 41] [ 8] [01000100] +09:10:39 [ 42] [ 15] [APTRA ] +09:10:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:10:39 [ 49] [ 3] [418] +09:10:39 [ 52] [ 16] [34588EB992D4056D] +09:10:39 ============================================================================ +09:10:39 + + +waiting on router queue for slot.... +09:10:39 Sending to : +09:10:39 ============================================================================ +09:10:39 ============================================================================ +09:10:39 Slot Id : <325> +09:10:39 Transaction Type : REQUEST +09:10:39 Received From : +09:10:39 ============================================================================ +09:10:39 FNo. Len. Field Value +09:10:39 ============================================================================ +09:10:39 [ 1] [ 4] [0200] +09:10:39 [ 2] [ 16] [6213541000313638] +09:10:39 [ 3] [ 6] [011000] +09:10:39 [ 4] [ 12] [000050000000] +09:10:39 [ 7] [ 10] [0320091826] +09:10:39 [ 11] [ 6] [177319] +09:10:39 [ 12] [ 6] [091826] +09:10:39 [ 13] [ 4] [0320] +09:10:39 [ 14] [ 4] [4912] +09:10:39 [ 15] [ 4] [0320] +09:10:39 [ 18] [ 4] [6011] +09:10:39 [ 22] [ 3] [900] +09:10:39 [ 25] [ 2] [02] +09:10:39 [ 28] [ 9] [D00002000] +09:10:39 [ 32] [ 6] [220699] +09:10:39 [ 35] [ 32] [6213541000313638=491212011363410] +09:10:39 [ 37] [ 12] [507900010196] +09:10:39 [ 41] [ 8] [01000100] +09:10:39 [ 42] [ 15] [APTRA ] +09:10:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:10:39 [ 49] [ 3] [418] +09:10:39 [ 52] [ 16] [2246706328F8DEF1] +09:10:39 ============================================================================ +09:10:39 + + +waiting on router queue for slot.... +09:10:39 Sending to : <0> +09:10:39 ============================================================================ +09:10:41 ============================================================================ +09:10:41 Slot Id : <325> +09:10:41 Transaction Type : RESPONSE +09:10:41 Received From : +09:10:41 ============================================================================ +09:10:41 FNo. Len. Field Value +09:10:41 ============================================================================ +09:10:41 [ 1] [ 4] [0210] +09:10:41 [ 2] [ 16] [6213541000313638] +09:10:41 [ 3] [ 6] [011000] +09:10:41 [ 4] [ 12] [000050000000] +09:10:41 [ 7] [ 10] [0320091826] +09:10:41 [ 11] [ 6] [177319] +09:10:41 [ 12] [ 6] [091826] +09:10:41 [ 13] [ 4] [0320] +09:10:41 [ 15] [ 4] [0320] +09:10:41 [ 18] [ 4] [6011] +09:10:41 [ 32] [ 6] [220699] +09:10:41 [ 35] [ 32] [6213541000313638=491212011363410] +09:10:41 [ 37] [ 12] [507900010196] +09:10:41 [ 38] [ 6] [497870] +09:10:41 [ 39] [ 2] [00] +09:10:41 [ 41] [ 8] [01000100] +09:10:41 [ 49] [ 3] [418] +09:10:41 [ 54] [ 40] [1001418C0000140657911002418C000014065791] +09:10:41 ============================================================================ +09:10:41 Sending to : +09:10:41 ============================================================================ +09:10:41 + + +waiting on router queue for slot.... +09:10:43 ============================================================================ +09:10:43 Slot Id : <325> +09:10:43 Transaction Type : RESPONSE +09:10:43 Received From : +09:10:43 ============================================================================ +09:10:43 FNo. Len. Field Value +09:10:43 ============================================================================ +09:10:43 [ 1] [ 4] [0210] +09:10:43 [ 2] [ 16] [6213541000313638] +09:10:43 [ 3] [ 6] [011000] +09:10:43 [ 4] [ 12] [000050000000] +09:10:43 [ 7] [ 10] [0320091826] +09:10:43 [ 11] [ 6] [177319] +09:10:43 [ 12] [ 6] [091826] +09:10:43 [ 13] [ 4] [0320] +09:10:43 [ 15] [ 4] [0320] +09:10:43 [ 18] [ 4] [6011] +09:10:43 [ 32] [ 6] [220699] +09:10:43 [ 35] [ 32] [6213541000313638=491212011363410] +09:10:43 [ 37] [ 12] [507900010196] +09:10:43 [ 38] [ 6] [497870] +09:10:43 [ 39] [ 2] [00] +09:10:43 [ 41] [ 8] [01000100] +09:10:43 [ 49] [ 3] [418] +09:10:43 [ 54] [ 40] [1001418C0000140657911002418C000014065791] +09:10:43 ============================================================================ +09:10:43 Calculate Source COMM Id = 1 +09:10:43 ============================================================================ +09:10:43 + + +waiting on router queue for slot.... +09:10:50 ============================================================================ +09:10:50 Slot Id : <291> +09:10:50 Transaction Type : REQUEST +09:10:50 Received From : +09:10:50 ============================================================================ +09:10:50 FNo. Len. Field Value +09:10:50 ============================================================================ +09:10:50 [ 1] [ 4] [0800] +09:10:50 [ 7] [ 10] [0320020958] +09:10:50 [ 11] [ 6] [155564] +09:10:50 [ 70] [ 3] [301] +09:10:50 ============================================================================ +09:10:50 + + +waiting on router queue for slot.... +09:10:50 Sending to : +09:10:50 ============================================================================ +09:10:50 ============================================================================ +09:10:50 Slot Id : <291> +09:10:50 Transaction Type : RESPONSE +09:10:50 Received From : +09:10:50 ============================================================================ +09:10:50 FNo. Len. Field Value +09:10:50 ============================================================================ +09:10:50 [ 1] [ 4] [0810] +09:10:50 [ 7] [ 10] [0320020958] +09:10:50 [ 11] [ 6] [155564] +09:10:50 [ 39] [ 2] [00] +09:10:50 [ 70] [ 3] [301] +09:10:50 ============================================================================ +09:10:50 Calculate Source COMM Id = 2 +09:10:50 ============================================================================ +09:10:50 + + +waiting on router queue for slot.... +09:11:01 ============================================================================ +09:11:01 Slot Id : <326> +09:11:01 Transaction Type : REQUEST +09:11:01 Received From : +09:11:01 ============================================================================ +09:11:01 FNo. Len. Field Value +09:11:01 ============================================================================ +09:11:01 [ 1] [ 4] [0800] +09:11:01 [ 7] [ 10] [0320021008] +09:11:01 [ 11] [ 6] [155565] +09:11:01 [ 70] [ 3] [301] +09:11:01 ============================================================================ +09:11:01 + + +waiting on router queue for slot.... +09:11:01 Sending to : +09:11:01 ============================================================================ +09:11:01 ============================================================================ +09:11:01 Slot Id : <326> +09:11:01 Transaction Type : RESPONSE +09:11:01 Received From : +09:11:01 ============================================================================ +09:11:01 FNo. Len. Field Value +09:11:01 ============================================================================ +09:11:01 [ 1] [ 4] [0810] +09:11:01 [ 7] [ 10] [0320021008] +09:11:01 [ 11] [ 6] [155565] +09:11:01 [ 39] [ 2] [00] +09:11:01 [ 70] [ 3] [301] +09:11:01 ============================================================================ +09:11:01 Calculate Source COMM Id = 2 +09:11:01 ============================================================================ +09:11:01 + + +waiting on router queue for slot.... +09:11:17 ============================================================================ +09:11:17 Slot Id : <301> +09:11:17 Transaction Type : REQUEST +09:11:17 Received From : +09:11:17 ============================================================================ +09:11:17 FNo. Len. Field Value +09:11:17 ============================================================================ +09:11:17 [ 1] [ 4] [0800] +09:11:17 [ 7] [ 10] [0320021025] +09:11:17 [ 11] [ 6] [155566] +09:11:17 [ 70] [ 3] [301] +09:11:17 ============================================================================ +09:11:17 + + +waiting on router queue for slot.... +09:11:17 Sending to : +09:11:17 ============================================================================ +09:11:17 ============================================================================ +09:11:17 Slot Id : <301> +09:11:17 Transaction Type : RESPONSE +09:11:17 Received From : +09:11:17 ============================================================================ +09:11:17 FNo. Len. Field Value +09:11:17 ============================================================================ +09:11:17 [ 1] [ 4] [0810] +09:11:17 [ 7] [ 10] [0320021025] +09:11:17 [ 11] [ 6] [155566] +09:11:17 [ 39] [ 2] [00] +09:11:17 [ 70] [ 3] [301] +09:11:17 ============================================================================ +09:11:17 Calculate Source COMM Id = 2 +09:11:17 ============================================================================ +09:11:17 + + +waiting on router queue for slot.... +09:11:20 ============================================================================ +09:11:20 Slot Id : <327> +09:11:20 Transaction Type : REQUEST +09:11:20 Received From : +09:11:20 ============================================================================ +09:11:20 FNo. Len. Field Value +09:11:20 ============================================================================ +09:11:20 [ 1] [ 4] [0800] +09:11:20 [ 7] [ 10] [0320020912] +09:11:20 [ 11] [ 6] [086363] +09:11:20 [ 37] [ 12] [57909086363] +09:11:20 [ 70] [ 3] [301] +09:11:20 ============================================================================ +09:11:20 + + +waiting on router queue for slot.... +09:11:20 Sending to : +09:11:20 ============================================================================ +09:11:20 ============================================================================ +09:11:20 Slot Id : <327> +09:11:20 Transaction Type : RESPONSE +09:11:20 Received From : +09:11:20 ============================================================================ +09:11:20 FNo. Len. Field Value +09:11:20 ============================================================================ +09:11:20 [ 1] [ 4] [0810] +09:11:20 [ 7] [ 10] [0320020912] +09:11:20 [ 11] [ 6] [086363] +09:11:20 [ 37] [ 12] [579090863630] +09:11:20 [ 39] [ 2] [00] +09:11:20 [ 70] [ 3] [810] +09:11:20 ============================================================================ +09:11:20 Calculate Source COMM Id = 4 +09:11:20 ============================================================================ +09:11:20 + + +waiting on router queue for slot.... +09:11:21 ============================================================================ +09:11:21 Slot Id : <333> +09:11:21 Transaction Type : REQUEST +09:11:21 Received From : +09:11:21 ============================================================================ +09:11:21 FNo. Len. Field Value +09:11:21 ============================================================================ +09:11:21 [ 1] [ 4] [0200] +09:11:21 [ 2] [ 16] [1808930700001928] +09:11:21 [ 3] [ 6] [011000] +09:11:21 [ 4] [ 12] [000010000000] +09:11:21 [ 7] [ 10] [0320091909] +09:11:21 [ 11] [ 6] [167747] +09:11:21 [ 12] [ 6] [091909] +09:11:21 [ 13] [ 4] [0320] +09:11:21 [ 14] [ 4] [1803] +09:11:21 [ 15] [ 4] [0320] +09:11:21 [ 18] [ 4] [6011] +09:11:21 [ 22] [ 3] [900] +09:11:21 [ 25] [ 2] [02] +09:11:21 [ 28] [ 9] [D00002000] +09:11:21 [ 32] [ 6] [220699] +09:11:21 [ 35] [ 27] [1808930700001928=1803500015] +09:11:21 [ 37] [ 12] [507900175072] +09:11:21 [ 41] [ 8] [07000100] +09:11:21 [ 42] [ 15] [APTRA ] +09:11:21 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:11:21 [ 49] [ 3] [418] +09:11:21 [ 52] [ 16] [8F76779E0093B6E7] +09:11:21 ============================================================================ +09:11:21 + + +waiting on router queue for slot.... +09:11:21 Sending to : +09:11:21 ============================================================================ +09:11:21 Sending to : +09:11:21 ============================================================================ +09:11:22 ============================================================================ +09:11:22 Slot Id : <333> +09:11:22 Transaction Type : REQUEST +09:11:22 Received From : +09:11:22 ============================================================================ +09:11:22 FNo. Len. Field Value +09:11:22 ============================================================================ +09:11:22 [ 1] [ 4] [0200] +09:11:22 [ 2] [ 16] [1808930700001928] +09:11:22 [ 3] [ 6] [011000] +09:11:22 [ 4] [ 12] [000010000000] +09:11:22 [ 7] [ 10] [0320091909] +09:11:22 [ 11] [ 6] [167747] +09:11:22 [ 12] [ 6] [091909] +09:11:22 [ 13] [ 4] [0320] +09:11:22 [ 14] [ 4] [1803] +09:11:22 [ 15] [ 4] [0320] +09:11:22 [ 18] [ 4] [6011] +09:11:22 [ 22] [ 3] [900] +09:11:22 [ 25] [ 2] [02] +09:11:22 [ 28] [ 9] [D00002000] +09:11:22 [ 32] [ 6] [220699] +09:11:22 [ 35] [ 27] [1808930700001928=1803500015] +09:11:22 [ 37] [ 12] [507900175072] +09:11:22 [ 41] [ 8] [07000100] +09:11:22 [ 42] [ 15] [APTRA ] +09:11:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:11:22 [ 49] [ 3] [418] +09:11:22 [ 52] [ 16] [8F76779E0093B6E7] +09:11:22 ============================================================================ +09:11:22 + + +waiting on router queue for slot.... +09:11:22 Sending to : +09:11:22 ============================================================================ +09:11:22 ============================================================================ +09:11:22 Slot Id : <333> +09:11:22 Transaction Type : REQUEST +09:11:22 Received From : +09:11:22 ============================================================================ +09:11:22 FNo. Len. Field Value +09:11:22 ============================================================================ +09:11:22 [ 1] [ 4] [0200] +09:11:22 [ 2] [ 16] [1808930700001928] +09:11:22 [ 3] [ 6] [011000] +09:11:22 [ 4] [ 12] [000010000000] +09:11:22 [ 7] [ 10] [0320091909] +09:11:22 [ 11] [ 6] [167747] +09:11:22 [ 12] [ 6] [091909] +09:11:22 [ 13] [ 4] [0320] +09:11:22 [ 14] [ 4] [1803] +09:11:22 [ 15] [ 4] [0320] +09:11:22 [ 18] [ 4] [6011] +09:11:22 [ 22] [ 3] [900] +09:11:22 [ 25] [ 2] [02] +09:11:22 [ 28] [ 9] [D00002000] +09:11:22 [ 32] [ 6] [220699] +09:11:22 [ 35] [ 27] [1808930700001928=1803500015] +09:11:22 [ 37] [ 12] [507900175072] +09:11:22 [ 41] [ 8] [07000100] +09:11:22 [ 42] [ 15] [APTRA ] +09:11:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:11:22 [ 49] [ 3] [418] +09:11:22 [ 52] [ 16] [4CB3B992C8D33BC0] +09:11:22 ============================================================================ +09:11:22 + + +waiting on router queue for slot.... +09:11:22 Sending to : <2> +09:11:22 ============================================================================ +09:11:22 ============================================================================ +09:11:22 Slot Id : <305> +09:11:22 Transaction Type : REQUEST +09:11:22 Received From : +09:11:22 ============================================================================ +09:11:22 FNo. Len. Field Value +09:11:22 ============================================================================ +09:11:22 [ 1] [ 4] [0800] +09:11:22 [ 2] [ 5] [02531] +09:11:22 [ 3] [ 6] [579098] +09:11:22 [ 7] [ 10] [0320021122] +09:11:22 [ 11] [ 6] [806945] +09:11:22 [ 15] [ 10] [0320021122] +09:11:22 [ 37] [ 11] [57909806945] +09:11:22 [ 70] [ 3] [001] +09:11:22 ============================================================================ +09:11:22 + + +waiting on router queue for slot.... +09:11:22 ============================================================================ +09:11:22 Slot Id : <305> +09:11:22 Transaction Type : RESPONSE +09:11:22 Received From : +09:11:22 ============================================================================ +09:11:22 FNo. Len. Field Value +09:11:22 ============================================================================ +09:11:22 [ 1] [ 4] [0810] +09:11:22 [ 7] [ 10] [0320021122] +09:11:22 [ 11] [ 6] [806945] +09:11:22 [ 15] [ 4] [0320] +09:11:22 [ 37] [ 12] [57909806945] +09:11:22 [ 39] [ 2] [00] +09:11:22 [ 70] [ 3] [001] +09:11:22 ============================================================================ +09:11:22 Sending to : +09:11:22 ============================================================================ +09:11:22 + + +waiting on router queue for slot.... +09:11:27 ============================================================================ +09:11:27 Slot Id : <333> +09:11:27 Transaction Type : RESPONSE +09:11:27 Received From : +09:11:27 ============================================================================ +09:11:27 FNo. Len. Field Value +09:11:27 ============================================================================ +09:11:27 [ 1] [ 4] [0210] +09:11:27 [ 2] [ 16] [1808930700001928] +09:11:27 [ 3] [ 6] [011000] +09:11:27 [ 4] [ 12] [000010000000] +09:11:27 [ 6] [ 12] [000010000000] +09:11:27 [ 7] [ 10] [0320091909] +09:11:27 [ 11] [ 6] [167747] +09:11:27 [ 12] [ 6] [091909] +09:11:27 [ 13] [ 4] [0320] +09:11:27 [ 14] [ 4] [1803] +09:11:27 [ 18] [ 4] [6011] +09:11:27 [ 19] [ 3] [418] +09:11:27 [ 22] [ 3] [021] +09:11:27 [ 32] [ 6] [220699] +09:11:27 [ 35] [ 27] [1808930700001928=1803500015] +09:11:27 [ 37] [ 12] [507900175072] +09:11:27 [ 38] [ 6] [167747] +09:11:27 [ 39] [ 2] [00] +09:11:27 [ 41] [ 8] [07000100] +09:11:27 [ 49] [ 3] [418] +09:11:27 [ 52] [ 16] [4CB3B992C8D33BC0] +09:11:27 [ 54] [ 20] [1001418C000023283600] +09:11:27 ============================================================================ +09:11:27 Sending to : +09:11:27 ============================================================================ +09:11:27 + + +waiting on router queue for slot.... +09:11:28 ============================================================================ +09:11:28 Slot Id : <331> +09:11:28 Transaction Type : REQUEST +09:11:28 Received From : +09:11:28 ============================================================================ +09:11:28 FNo. Len. Field Value +09:11:28 ============================================================================ +09:11:28 [ 1] [ 4] [0200] +09:11:28 [ 2] [ 16] [6688990105195208] +09:11:28 [ 3] [ 6] [010000] +09:11:28 [ 4] [ 12] [000010000000] +09:11:28 [ 7] [ 10] [0320021034] +09:11:28 [ 11] [ 6] [267423] +09:11:28 [ 12] [ 6] [091034] +09:11:28 [ 13] [ 4] [0320] +09:11:28 [ 14] [ 4] [4308] +09:11:28 [ 15] [ 4] [0320] +09:11:28 [ 18] [ 4] [6011] +09:11:28 [ 19] [ 3] [418] +09:11:28 [ 22] [ 3] [021] +09:11:28 [ 25] [ 2] [01] +09:11:28 [ 28] [ 9] [D00002000] +09:11:28 [ 32] [ 6] [180893] +09:11:28 [ 35] [ 37] [6688990105195208=43081231520877400000] +09:11:28 [ 37] [ 12] [507902267423] +09:11:28 [ 41] [ 8] [0322LNTS] +09:11:28 [ 42] [ 15] [999999 ] +09:11:28 [ 43] [ 40] [ATM LUANGNUMTHA LOCATION SING, Sing, Lao] +09:11:28 [ 49] [ 3] [418] +09:11:28 [ 52] [ 16] [2F59BB8B49860097] +09:11:28 ============================================================================ +09:11:28 + + +waiting on router queue for slot.... +09:11:28 Sending to : +09:11:28 ============================================================================ +09:11:28 Sending to : +09:11:28 ============================================================================ +09:11:28 ============================================================================ +09:11:28 Slot Id : <333> +09:11:28 Transaction Type : RESPONSE +09:11:28 Received From : +09:11:28 ============================================================================ +09:11:28 FNo. Len. Field Value +09:11:28 ============================================================================ +09:11:28 [ 1] [ 4] [0210] +09:11:28 [ 2] [ 16] [1808930700001928] +09:11:28 [ 3] [ 6] [011000] +09:11:28 [ 4] [ 12] [000010000000] +09:11:28 [ 6] [ 12] [000010000000] +09:11:28 [ 7] [ 10] [0320091909] +09:11:28 [ 11] [ 6] [167747] +09:11:28 [ 12] [ 6] [091909] +09:11:28 [ 13] [ 4] [0320] +09:11:28 [ 14] [ 4] [1803] +09:11:28 [ 18] [ 4] [6011] +09:11:28 [ 19] [ 3] [418] +09:11:28 [ 22] [ 3] [021] +09:11:28 [ 32] [ 6] [220699] +09:11:28 [ 35] [ 27] [1808930700001928=1803500015] +09:11:28 [ 37] [ 12] [507900175072] +09:11:28 [ 38] [ 6] [167747] +09:11:28 [ 39] [ 2] [00] +09:11:28 [ 41] [ 8] [07000100] +09:11:28 [ 49] [ 3] [418] +09:11:28 [ 52] [ 16] [4CB3B992C8D33BC0] +09:11:28 [ 54] [ 20] [1001418C000023283600] +09:11:28 ============================================================================ +09:11:28 Calculate Source COMM Id = 1 +09:11:28 ============================================================================ +09:11:28 + + +waiting on router queue for slot.... +09:11:29 ============================================================================ +09:11:29 Slot Id : <331> +09:11:29 Transaction Type : REQUEST +09:11:29 Received From : +09:11:29 ============================================================================ +09:11:29 FNo. Len. Field Value +09:11:29 ============================================================================ +09:11:29 [ 1] [ 4] [0200] +09:11:29 [ 2] [ 16] [6688990105195208] +09:11:29 [ 3] [ 6] [010000] +09:11:29 [ 4] [ 12] [000010000000] +09:11:29 [ 7] [ 10] [0320021034] +09:11:29 [ 11] [ 6] [267423] +09:11:29 [ 12] [ 6] [091034] +09:11:29 [ 13] [ 4] [0320] +09:11:29 [ 14] [ 4] [4308] +09:11:29 [ 15] [ 4] [0320] +09:11:29 [ 18] [ 4] [6011] +09:11:29 [ 19] [ 3] [418] +09:11:29 [ 22] [ 3] [021] +09:11:29 [ 25] [ 2] [01] +09:11:29 [ 28] [ 9] [D00002000] +09:11:29 [ 32] [ 6] [180893] +09:11:29 [ 35] [ 37] [6688990105195208=43081231520877400000] +09:11:29 [ 37] [ 12] [507902267423] +09:11:29 [ 41] [ 8] [0322LNTS] +09:11:29 [ 42] [ 15] [999999 ] +09:11:29 [ 43] [ 40] [ATM LUANGNUMTHA LOCATION SING, Sing, Lao] +09:11:29 [ 49] [ 3] [418] +09:11:29 [ 52] [ 16] [2F59BB8B49860097] +09:11:29 ============================================================================ +09:11:29 + + +waiting on router queue for slot.... +09:11:29 Sending to : +09:11:29 ============================================================================ +09:11:29 ============================================================================ +09:11:29 Slot Id : <331> +09:11:29 Transaction Type : REQUEST +09:11:29 Received From : +09:11:29 ============================================================================ +09:11:29 FNo. Len. Field Value +09:11:29 ============================================================================ +09:11:29 [ 1] [ 4] [0200] +09:11:29 [ 2] [ 16] [6688990105195208] +09:11:29 [ 3] [ 6] [010000] +09:11:29 [ 4] [ 12] [000010000000] +09:11:29 [ 7] [ 10] [0320021034] +09:11:29 [ 11] [ 6] [267423] +09:11:29 [ 12] [ 6] [091034] +09:11:29 [ 13] [ 4] [0320] +09:11:29 [ 14] [ 4] [4308] +09:11:29 [ 15] [ 4] [0320] +09:11:29 [ 18] [ 4] [6011] +09:11:29 [ 19] [ 3] [418] +09:11:29 [ 22] [ 3] [021] +09:11:29 [ 25] [ 2] [01] +09:11:29 [ 28] [ 9] [D00002000] +09:11:29 [ 32] [ 6] [180893] +09:11:29 [ 35] [ 37] [6688990105195208=43081231520877400000] +09:11:29 [ 37] [ 12] [507902267423] +09:11:29 [ 41] [ 8] [0322LNTS] +09:11:29 [ 42] [ 15] [999999 ] +09:11:29 [ 43] [ 40] [ATM LUANGNUMTHA LOCATION SING, Sing, Lao] +09:11:29 [ 49] [ 3] [418] +09:11:29 [ 52] [ 16] [7FBA483C53868A06] +09:11:29 ============================================================================ +09:11:29 + + +waiting on router queue for slot.... +09:11:29 Sending to : <0> +09:11:29 ============================================================================ +09:11:29 ============================================================================ +09:11:29 Slot Id : <331> +09:11:29 Transaction Type : RESPONSE +09:11:29 Received From : +09:11:29 ============================================================================ +09:11:29 FNo. Len. Field Value +09:11:29 ============================================================================ +09:11:29 [ 1] [ 4] [0210] +09:11:29 [ 2] [ 16] [6688990105195208] +09:11:29 [ 3] [ 6] [010000] +09:11:29 [ 4] [ 12] [000010000000] +09:11:29 [ 7] [ 10] [0320021034] +09:11:29 [ 11] [ 6] [267423] +09:11:29 [ 12] [ 6] [091034] +09:11:29 [ 13] [ 4] [0320] +09:11:29 [ 15] [ 4] [0320] +09:11:29 [ 18] [ 4] [6011] +09:11:29 [ 19] [ 3] [418] +09:11:29 [ 22] [ 3] [021] +09:11:29 [ 32] [ 6] [180893] +09:11:29 [ 35] [ 37] [6688990105195208=43081231520877400000] +09:11:29 [ 37] [ 12] [507902267423] +09:11:29 [ 39] [ 2] [14] +09:11:29 [ 41] [ 8] [0322LNTS] +09:11:29 [ 49] [ 3] [418] +09:11:29 ============================================================================ +09:11:29 Sending to : +09:11:29 ============================================================================ +09:11:29 + + +waiting on router queue for slot.... +09:11:30 ============================================================================ +09:11:30 Slot Id : <331> +09:11:30 Transaction Type : RESPONSE +09:11:30 Received From : +09:11:30 ============================================================================ +09:11:30 FNo. Len. Field Value +09:11:30 ============================================================================ +09:11:30 [ 1] [ 4] [0210] +09:11:30 [ 2] [ 16] [6688990105195208] +09:11:30 [ 3] [ 6] [010000] +09:11:30 [ 4] [ 12] [000010000000] +09:11:30 [ 7] [ 10] [0320021034] +09:11:30 [ 11] [ 6] [267423] +09:11:30 [ 12] [ 6] [091034] +09:11:30 [ 13] [ 4] [0320] +09:11:30 [ 15] [ 4] [0320] +09:11:30 [ 18] [ 4] [6011] +09:11:30 [ 19] [ 3] [418] +09:11:30 [ 22] [ 3] [021] +09:11:30 [ 32] [ 6] [180893] +09:11:30 [ 35] [ 37] [6688990105195208=43081231520877400000] +09:11:30 [ 37] [ 12] [507902267423] +09:11:30 [ 39] [ 2] [14] +09:11:30 [ 41] [ 8] [0322LNTS] +09:11:30 [ 49] [ 3] [418] +09:11:30 ============================================================================ +09:11:30 Calculate Source COMM Id = 2 +09:11:30 ============================================================================ +09:11:30 + + +waiting on router queue for slot.... +09:11:31 ============================================================================ +09:11:31 Slot Id : <314> +09:11:31 Transaction Type : REQUEST +09:11:31 Received From : +09:11:31 ============================================================================ +09:11:31 FNo. Len. Field Value +09:11:31 ============================================================================ +09:11:31 [ 1] [ 4] [0800] +09:11:31 [ 7] [ 10] [0320162321] +09:11:31 [ 11] [ 6] [092321] +09:11:31 [ 37] [ 12] [57909092321] +09:11:31 [ 70] [ 3] [301] +09:11:31 ============================================================================ +09:11:31 + + +waiting on router queue for slot.... +09:11:31 Sending to : +09:11:31 ============================================================================ +09:11:31 ============================================================================ +09:11:31 Slot Id : <314> +09:11:31 Transaction Type : RESPONSE +09:11:31 Received From : +09:11:31 ============================================================================ +09:11:31 FNo. Len. Field Value +09:11:31 ============================================================================ +09:11:31 [ 1] [ 4] [0810] +09:11:31 [ 7] [ 10] [0320162321] +09:11:31 [ 11] [ 6] [092321] +09:11:31 [ 37] [ 12] [579090923210] +09:11:31 [ 39] [ 2] [00] +09:11:31 [ 70] [ 3] [810] +09:11:31 ============================================================================ +09:11:31 Calculate Source COMM Id = 6 +09:11:31 ============================================================================ +09:11:31 + + +waiting on router queue for slot.... +09:11:44 ============================================================================ +09:11:44 Slot Id : <321> +09:11:44 Transaction Type : REQUEST +09:11:44 Received From : +09:11:44 ============================================================================ +09:11:44 FNo. Len. Field Value +09:11:44 ============================================================================ +09:11:44 [ 1] [ 4] [0800] +09:11:44 [ 7] [ 10] [0320021052] +09:11:44 [ 11] [ 6] [155567] +09:11:44 [ 70] [ 3] [301] +09:11:44 ============================================================================ +09:11:44 + + +waiting on router queue for slot.... +09:11:44 Sending to : +09:11:44 ============================================================================ +09:11:44 ============================================================================ +09:11:44 Slot Id : <321> +09:11:44 Transaction Type : RESPONSE +09:11:44 Received From : +09:11:44 ============================================================================ +09:11:44 FNo. Len. Field Value +09:11:44 ============================================================================ +09:11:44 [ 1] [ 4] [0810] +09:11:44 [ 7] [ 10] [0320021052] +09:11:44 [ 11] [ 6] [155567] +09:11:44 [ 39] [ 2] [00] +09:11:44 [ 70] [ 3] [301] +09:11:44 ============================================================================ +09:11:44 Calculate Source COMM Id = 2 +09:11:44 ============================================================================ +09:11:44 + + +waiting on router queue for slot.... +09:11:46 ============================================================================ +09:11:46 Slot Id : <337> +09:11:46 Transaction Type : REQUEST +09:11:46 Received From : +09:11:46 ============================================================================ +09:11:46 FNo. Len. Field Value +09:11:46 ============================================================================ +09:11:46 [ 1] [ 4] [0200] +09:11:46 [ 2] [ 16] [6688990100945805] +09:11:46 [ 3] [ 6] [012000] +09:11:46 [ 4] [ 12] [000130000000] +09:11:46 [ 7] [ 10] [0320021053] +09:11:46 [ 11] [ 6] [267426] +09:11:46 [ 12] [ 6] [091053] +09:11:46 [ 13] [ 4] [0320] +09:11:46 [ 14] [ 4] [4112] +09:11:46 [ 15] [ 4] [0320] +09:11:46 [ 18] [ 4] [6011] +09:11:46 [ 19] [ 3] [418] +09:11:46 [ 22] [ 3] [021] +09:11:46 [ 25] [ 2] [01] +09:11:46 [ 28] [ 9] [D00002000] +09:11:46 [ 32] [ 6] [180893] +09:11:46 [ 35] [ 37] [6688990100945805=41121231580527800000] +09:11:46 [ 37] [ 12] [507902267426] +09:11:46 [ 41] [ 8] [0467PSLK] +09:11:46 [ 42] [ 15] [999999 ] +09:11:46 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +09:11:46 [ 49] [ 3] [418] +09:11:46 [ 52] [ 16] [954B35215126EB7E] +09:11:46 ============================================================================ +09:11:46 + + +waiting on router queue for slot.... +09:11:46 Sending to : +09:11:46 ============================================================================ +09:11:46 Sending to : +09:11:46 ============================================================================ +09:11:46 ============================================================================ +09:11:46 Slot Id : <337> +09:11:46 Transaction Type : REQUEST +09:11:46 Received From : +09:11:46 ============================================================================ +09:11:46 FNo. Len. Field Value +09:11:46 ============================================================================ +09:11:46 [ 1] [ 4] [0200] +09:11:46 [ 2] [ 16] [6688990100945805] +09:11:46 [ 3] [ 6] [012000] +09:11:46 [ 4] [ 12] [000130000000] +09:11:46 [ 7] [ 10] [0320021053] +09:11:46 [ 11] [ 6] [267426] +09:11:46 [ 12] [ 6] [091053] +09:11:46 [ 13] [ 4] [0320] +09:11:46 [ 14] [ 4] [4112] +09:11:46 [ 15] [ 4] [0320] +09:11:46 [ 18] [ 4] [6011] +09:11:46 [ 19] [ 3] [418] +09:11:46 [ 22] [ 3] [021] +09:11:46 [ 25] [ 2] [01] +09:11:46 [ 28] [ 9] [D00002000] +09:11:46 [ 32] [ 6] [180893] +09:11:46 [ 35] [ 37] [6688990100945805=41121231580527800000] +09:11:46 [ 37] [ 12] [507902267426] +09:11:46 [ 41] [ 8] [0467PSLK] +09:11:46 [ 42] [ 15] [999999 ] +09:11:46 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +09:11:46 [ 49] [ 3] [418] +09:11:46 [ 52] [ 16] [954B35215126EB7E] +09:11:46 ============================================================================ +09:11:46 + + +waiting on router queue for slot.... +09:11:46 Sending to : +09:11:46 ============================================================================ +09:11:46 ============================================================================ +09:11:46 Slot Id : <337> +09:11:46 Transaction Type : REQUEST +09:11:46 Received From : +09:11:46 ============================================================================ +09:11:46 FNo. Len. Field Value +09:11:46 ============================================================================ +09:11:46 [ 1] [ 4] [0200] +09:11:46 [ 2] [ 16] [6688990100945805] +09:11:46 [ 3] [ 6] [012000] +09:11:46 [ 4] [ 12] [000130000000] +09:11:46 [ 7] [ 10] [0320021053] +09:11:46 [ 11] [ 6] [267426] +09:11:46 [ 12] [ 6] [091053] +09:11:46 [ 13] [ 4] [0320] +09:11:46 [ 14] [ 4] [4112] +09:11:46 [ 15] [ 4] [0320] +09:11:46 [ 18] [ 4] [6011] +09:11:46 [ 19] [ 3] [418] +09:11:46 [ 22] [ 3] [021] +09:11:46 [ 25] [ 2] [01] +09:11:46 [ 28] [ 9] [D00002000] +09:11:46 [ 32] [ 6] [180893] +09:11:46 [ 35] [ 37] [6688990100945805=41121231580527800000] +09:11:46 [ 37] [ 12] [507902267426] +09:11:46 [ 41] [ 8] [0467PSLK] +09:11:46 [ 42] [ 15] [999999 ] +09:11:46 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +09:11:46 [ 49] [ 3] [418] +09:11:46 [ 52] [ 16] [933496FB06C3A034] +09:11:46 ============================================================================ +09:11:46 + + +waiting on router queue for slot.... +09:11:46 Sending to : <0> +09:11:46 ============================================================================ +09:11:46 ============================================================================ +09:11:46 Slot Id : <337> +09:11:46 Transaction Type : RESPONSE +09:11:46 Received From : +09:11:46 ============================================================================ +09:11:46 FNo. Len. Field Value +09:11:46 ============================================================================ +09:11:46 [ 1] [ 4] [0210] +09:11:46 [ 2] [ 16] [6688990100945805] +09:11:46 [ 3] [ 6] [012000] +09:11:46 [ 4] [ 12] [000130000000] +09:11:46 [ 7] [ 10] [0320021053] +09:11:46 [ 11] [ 6] [267426] +09:11:46 [ 12] [ 6] [091053] +09:11:46 [ 13] [ 4] [0320] +09:11:46 [ 15] [ 4] [0320] +09:11:46 [ 18] [ 4] [6011] +09:11:46 [ 19] [ 3] [418] +09:11:46 [ 22] [ 3] [021] +09:11:46 [ 32] [ 6] [180893] +09:11:46 [ 35] [ 37] [6688990100945805=41121231580527800000] +09:11:46 [ 37] [ 12] [507902267426] +09:11:46 [ 39] [ 2] [61] +09:11:46 [ 41] [ 8] [0467PSLK] +09:11:46 [ 49] [ 3] [418] +09:11:46 ============================================================================ +09:11:46 Sending to : +09:11:46 ============================================================================ +09:11:46 + + +waiting on router queue for slot.... +09:11:46 ============================================================================ +09:11:46 Slot Id : <334> +09:11:46 Transaction Type : REQUEST +09:11:46 Received From : +09:11:46 ============================================================================ +09:11:46 FNo. Len. Field Value +09:11:46 ============================================================================ +09:11:46 [ 1] [ 4] [0200] +09:11:46 [ 2] [ 16] [6213545000926398] +09:11:46 [ 3] [ 6] [301000] +09:11:46 [ 7] [ 10] [0320021054] +09:11:46 [ 11] [ 6] [267427] +09:11:46 [ 12] [ 6] [091054] +09:11:46 [ 13] [ 4] [0320] +09:11:46 [ 14] [ 4] [4912] +09:11:46 [ 15] [ 4] [0320] +09:11:46 [ 18] [ 4] [6011] +09:11:46 [ 19] [ 3] [418] +09:11:46 [ 22] [ 3] [021] +09:11:46 [ 25] [ 2] [01] +09:11:46 [ 32] [ 6] [180893] +09:11:46 [ 35] [ 32] [6213545000926398=491212012639048] +09:11:46 [ 37] [ 12] [507902267427] +09:11:46 [ 41] [ 8] [0368KMMX] +09:11:46 [ 42] [ 15] [999999 ] +09:11:46 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +09:11:46 [ 49] [ 3] [418] +09:11:46 [ 52] [ 16] [AC5290311DAC645D] +09:11:46 ============================================================================ +09:11:46 + + +waiting on router queue for slot.... +09:11:46 Sending to : +09:11:46 ============================================================================ +09:11:46 Sending to : +09:11:46 ============================================================================ +09:11:47 ============================================================================ +09:11:47 Slot Id : <334> +09:11:47 Transaction Type : REQUEST +09:11:47 Received From : +09:11:47 ============================================================================ +09:11:47 FNo. Len. Field Value +09:11:47 ============================================================================ +09:11:47 [ 1] [ 4] [0200] +09:11:47 [ 2] [ 16] [6213545000926398] +09:11:47 [ 3] [ 6] [301000] +09:11:47 [ 7] [ 10] [0320021054] +09:11:47 [ 11] [ 6] [267427] +09:11:47 [ 12] [ 6] [091054] +09:11:47 [ 13] [ 4] [0320] +09:11:47 [ 14] [ 4] [4912] +09:11:47 [ 15] [ 4] [0320] +09:11:47 [ 18] [ 4] [6011] +09:11:47 [ 19] [ 3] [418] +09:11:47 [ 22] [ 3] [021] +09:11:47 [ 25] [ 2] [01] +09:11:47 [ 32] [ 6] [180893] +09:11:47 [ 35] [ 32] [6213545000926398=491212012639048] +09:11:47 [ 37] [ 12] [507902267427] +09:11:47 [ 41] [ 8] [0368KMMX] +09:11:47 [ 42] [ 15] [999999 ] +09:11:47 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +09:11:47 [ 49] [ 3] [418] +09:11:47 [ 52] [ 16] [AC5290311DAC645D] +09:11:47 ============================================================================ +09:11:47 + + +waiting on router queue for slot.... +09:11:47 Sending to : +09:11:47 ============================================================================ +09:11:47 ============================================================================ +09:11:47 Slot Id : <334> +09:11:47 Transaction Type : REQUEST +09:11:47 Received From : +09:11:47 ============================================================================ +09:11:47 FNo. Len. Field Value +09:11:47 ============================================================================ +09:11:47 [ 1] [ 4] [0200] +09:11:47 [ 2] [ 16] [6213545000926398] +09:11:47 [ 3] [ 6] [301000] +09:11:47 [ 7] [ 10] [0320021054] +09:11:47 [ 11] [ 6] [267427] +09:11:47 [ 12] [ 6] [091054] +09:11:47 [ 13] [ 4] [0320] +09:11:47 [ 14] [ 4] [4912] +09:11:47 [ 15] [ 4] [0320] +09:11:47 [ 18] [ 4] [6011] +09:11:47 [ 19] [ 3] [418] +09:11:47 [ 22] [ 3] [021] +09:11:47 [ 25] [ 2] [01] +09:11:47 [ 32] [ 6] [180893] +09:11:47 [ 35] [ 32] [6213545000926398=491212012639048] +09:11:47 [ 37] [ 12] [507902267427] +09:11:47 [ 41] [ 8] [0368KMMX] +09:11:47 [ 42] [ 15] [999999 ] +09:11:47 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +09:11:47 [ 49] [ 3] [418] +09:11:47 [ 52] [ 16] [5F2015191F41D923] +09:11:47 ============================================================================ +09:11:47 + + +waiting on router queue for slot.... +09:11:47 Sending to : <0> +09:11:47 ============================================================================ +09:11:47 ============================================================================ +09:11:47 Slot Id : <334> +09:11:47 Transaction Type : RESPONSE +09:11:47 Received From : +09:11:47 ============================================================================ +09:11:47 FNo. Len. Field Value +09:11:47 ============================================================================ +09:11:47 [ 1] [ 4] [0210] +09:11:47 [ 2] [ 16] [6213545000926398] +09:11:47 [ 3] [ 6] [301000] +09:11:47 [ 4] [ 12] [000000000000] +09:11:47 [ 7] [ 10] [0320021054] +09:11:47 [ 11] [ 6] [267427] +09:11:47 [ 12] [ 6] [091054] +09:11:47 [ 13] [ 4] [0320] +09:11:47 [ 15] [ 4] [0320] +09:11:47 [ 18] [ 4] [6011] +09:11:47 [ 19] [ 3] [418] +09:11:47 [ 32] [ 6] [180893] +09:11:47 [ 35] [ 32] [6213545000926398=491212012639048] +09:11:47 [ 37] [ 12] [507902267427] +09:11:47 [ 38] [ 6] [238302] +09:11:47 [ 39] [ 2] [00] +09:11:47 [ 41] [ 8] [0368KMMX] +09:11:47 [ 49] [ 3] [418] +09:11:47 [ 54] [ 40] [1001418C0000226355501002418C000022635550] +09:11:47 ============================================================================ +09:11:47 Sending to : +09:11:47 ============================================================================ +09:11:47 + + +waiting on router queue for slot.... +09:11:47 ============================================================================ +09:11:47 Slot Id : <337> +09:11:47 Transaction Type : RESPONSE +09:11:47 Received From : +09:11:47 ============================================================================ +09:11:47 FNo. Len. Field Value +09:11:47 ============================================================================ +09:11:47 [ 1] [ 4] [0210] +09:11:47 [ 2] [ 16] [6688990100945805] +09:11:47 [ 3] [ 6] [012000] +09:11:47 [ 4] [ 12] [000130000000] +09:11:47 [ 7] [ 10] [0320021053] +09:11:47 [ 11] [ 6] [267426] +09:11:47 [ 12] [ 6] [091053] +09:11:47 [ 13] [ 4] [0320] +09:11:47 [ 15] [ 4] [0320] +09:11:47 [ 18] [ 4] [6011] +09:11:47 [ 19] [ 3] [418] +09:11:47 [ 22] [ 3] [021] +09:11:47 [ 32] [ 6] [180893] +09:11:47 [ 35] [ 37] [6688990100945805=41121231580527800000] +09:11:47 [ 37] [ 12] [507902267426] +09:11:47 [ 39] [ 2] [61] +09:11:47 [ 41] [ 8] [0467PSLK] +09:11:47 [ 49] [ 3] [418] +09:11:47 ============================================================================ +09:11:47 Calculate Source COMM Id = 2 +09:11:47 ============================================================================ +09:11:47 + + +waiting on router queue for slot.... +09:11:49 ============================================================================ +09:11:49 Slot Id : <334> +09:11:49 Transaction Type : RESPONSE +09:11:49 Received From : +09:11:49 ============================================================================ +09:11:49 FNo. Len. Field Value +09:11:49 ============================================================================ +09:11:49 [ 1] [ 4] [0210] +09:11:49 [ 2] [ 16] [6213545000926398] +09:11:49 [ 3] [ 6] [301000] +09:11:49 [ 4] [ 12] [000000000000] +09:11:49 [ 7] [ 10] [0320021054] +09:11:49 [ 11] [ 6] [267427] +09:11:49 [ 12] [ 6] [091054] +09:11:49 [ 13] [ 4] [0320] +09:11:49 [ 15] [ 4] [0320] +09:11:49 [ 18] [ 4] [6011] +09:11:49 [ 19] [ 3] [418] +09:11:49 [ 32] [ 6] [180893] +09:11:49 [ 35] [ 32] [6213545000926398=491212012639048] +09:11:49 [ 37] [ 12] [507902267427] +09:11:49 [ 38] [ 6] [238302] +09:11:49 [ 39] [ 2] [00] +09:11:49 [ 41] [ 8] [0368KMMX] +09:11:49 [ 49] [ 3] [418] +09:11:49 [ 54] [ 40] [1001418C0000226355501002418C000022635550] +09:11:49 ============================================================================ +09:11:49 Calculate Source COMM Id = 2 +09:11:49 ============================================================================ +09:11:49 + + +waiting on router queue for slot.... +09:12:01 ============================================================================ +09:12:01 Slot Id : <336> +09:12:01 Transaction Type : REQUEST +09:12:01 Received From : +09:12:01 ============================================================================ +09:12:01 FNo. Len. Field Value +09:12:01 ============================================================================ +09:12:01 [ 1] [ 4] [0800] +09:12:01 [ 7] [ 10] [0320021109] +09:12:01 [ 11] [ 6] [155568] +09:12:01 [ 70] [ 3] [301] +09:12:01 ============================================================================ +09:12:01 + + +waiting on router queue for slot.... +09:12:01 Sending to : +09:12:01 ============================================================================ +09:12:01 ============================================================================ +09:12:01 Slot Id : <336> +09:12:01 Transaction Type : RESPONSE +09:12:01 Received From : +09:12:01 ============================================================================ +09:12:01 FNo. Len. Field Value +09:12:01 ============================================================================ +09:12:01 [ 1] [ 4] [0810] +09:12:01 [ 7] [ 10] [0320021109] +09:12:01 [ 11] [ 6] [155568] +09:12:01 [ 39] [ 2] [00] +09:12:01 [ 70] [ 3] [301] +09:12:01 ============================================================================ +09:12:01 Calculate Source COMM Id = 2 +09:12:01 ============================================================================ +09:12:01 + + +waiting on router queue for slot.... +09:12:13 ============================================================================ +09:12:13 Slot Id : <335> +09:12:13 Transaction Type : REQUEST +09:12:13 Received From : +09:12:13 ============================================================================ +09:12:13 FNo. Len. Field Value +09:12:13 ============================================================================ +09:12:13 [ 1] [ 4] [0800] +09:12:13 [ 7] [ 10] [0320021120] +09:12:13 [ 11] [ 6] [155569] +09:12:13 [ 70] [ 3] [301] +09:12:13 ============================================================================ +09:12:13 + + +waiting on router queue for slot.... +09:12:13 Sending to : +09:12:13 ============================================================================ +09:12:13 ============================================================================ +09:12:13 Slot Id : <335> +09:12:13 Transaction Type : RESPONSE +09:12:13 Received From : +09:12:13 ============================================================================ +09:12:13 FNo. Len. Field Value +09:12:13 ============================================================================ +09:12:13 [ 1] [ 4] [0810] +09:12:13 [ 7] [ 10] [0320021120] +09:12:13 [ 11] [ 6] [155569] +09:12:13 [ 39] [ 2] [00] +09:12:13 [ 70] [ 3] [301] +09:12:13 ============================================================================ +09:12:13 Calculate Source COMM Id = 2 +09:12:13 ============================================================================ +09:12:13 + + +waiting on router queue for slot.... +09:12:24 ============================================================================ +09:12:24 Slot Id : <320> +09:12:24 Transaction Type : REQUEST +09:12:24 Received From : +09:12:24 ============================================================================ +09:12:24 FNo. Len. Field Value +09:12:24 ============================================================================ +09:12:24 [ 1] [ 4] [0800] +09:12:24 [ 2] [ 5] [02531] +09:12:24 [ 3] [ 6] [579098] +09:12:24 [ 7] [ 10] [0320021224] +09:12:24 [ 11] [ 6] [806946] +09:12:24 [ 15] [ 10] [0320021224] +09:12:24 [ 37] [ 11] [57909806946] +09:12:24 [ 70] [ 3] [001] +09:12:24 ============================================================================ +09:12:24 + + +waiting on router queue for slot.... +09:12:24 ============================================================================ +09:12:24 Slot Id : <320> +09:12:24 Transaction Type : RESPONSE +09:12:24 Received From : +09:12:24 ============================================================================ +09:12:24 FNo. Len. Field Value +09:12:24 ============================================================================ +09:12:24 [ 1] [ 4] [0810] +09:12:24 [ 7] [ 10] [0320021224] +09:12:24 [ 11] [ 6] [806946] +09:12:24 [ 15] [ 4] [0320] +09:12:24 [ 37] [ 12] [57909806946] +09:12:24 [ 39] [ 2] [00] +09:12:24 [ 70] [ 3] [001] +09:12:24 ============================================================================ +09:12:24 Sending to : +09:12:24 ============================================================================ +09:12:24 + + +waiting on router queue for slot.... +09:12:28 ============================================================================ +09:12:28 Slot Id : <342> +09:12:28 Transaction Type : REQUEST +09:12:28 Received From : +09:12:28 ============================================================================ +09:12:28 FNo. Len. Field Value +09:12:28 ============================================================================ +09:12:28 [ 1] [ 4] [0800] +09:12:28 [ 7] [ 10] [0320021136] +09:12:28 [ 11] [ 6] [155570] +09:12:28 [ 70] [ 3] [301] +09:12:28 ============================================================================ +09:12:28 + + +waiting on router queue for slot.... +09:12:28 Sending to : +09:12:28 ============================================================================ +09:12:28 ============================================================================ +09:12:28 Slot Id : <342> +09:12:28 Transaction Type : RESPONSE +09:12:28 Received From : +09:12:28 ============================================================================ +09:12:28 FNo. Len. Field Value +09:12:28 ============================================================================ +09:12:28 [ 1] [ 4] [0810] +09:12:28 [ 7] [ 10] [0320021136] +09:12:28 [ 11] [ 6] [155570] +09:12:28 [ 39] [ 2] [00] +09:12:28 [ 70] [ 3] [301] +09:12:28 ============================================================================ +09:12:28 Calculate Source COMM Id = 2 +09:12:28 ============================================================================ +09:12:28 + + +waiting on router queue for slot.... +09:12:36 ============================================================================ +09:12:36 Slot Id : <345> +09:12:36 Transaction Type : REQUEST +09:12:36 Received From : +09:12:36 ============================================================================ +09:12:36 FNo. Len. Field Value +09:12:36 ============================================================================ +09:12:36 [ 1] [ 4] [0800] +09:12:36 [ 7] [ 10] [0320162426] +09:12:36 [ 11] [ 6] [092426] +09:12:36 [ 37] [ 12] [57909092426] +09:12:36 [ 70] [ 3] [301] +09:12:36 ============================================================================ +09:12:36 + + +waiting on router queue for slot.... +09:12:36 Sending to : +09:12:36 ============================================================================ +09:12:36 ============================================================================ +09:12:36 Slot Id : <345> +09:12:36 Transaction Type : RESPONSE +09:12:36 Received From : +09:12:36 ============================================================================ +09:12:36 FNo. Len. Field Value +09:12:36 ============================================================================ +09:12:36 [ 1] [ 4] [0810] +09:12:36 [ 7] [ 10] [0320162426] +09:12:36 [ 11] [ 6] [092426] +09:12:36 [ 37] [ 12] [579090924260] +09:12:36 [ 39] [ 2] [00] +09:12:36 [ 70] [ 3] [810] +09:12:36 ============================================================================ +09:12:36 Calculate Source COMM Id = 6 +09:12:36 ============================================================================ +09:12:37 + + +waiting on router queue for slot.... +09:12:39 ============================================================================ +09:12:39 Slot Id : <341> +09:12:39 Transaction Type : REQUEST +09:12:39 Received From : +09:12:39 ============================================================================ +09:12:39 FNo. Len. Field Value +09:12:39 ============================================================================ +09:12:39 [ 1] [ 4] [0200] +09:12:39 [ 2] [ 16] [6213545000926398] +09:12:39 [ 3] [ 6] [011000] +09:12:39 [ 4] [ 12] [000015000000] +09:12:39 [ 7] [ 10] [0320021146] +09:12:39 [ 11] [ 6] [267433] +09:12:39 [ 12] [ 6] [091146] +09:12:39 [ 13] [ 4] [0320] +09:12:39 [ 14] [ 4] [4912] +09:12:39 [ 15] [ 4] [0320] +09:12:39 [ 18] [ 4] [6011] +09:12:39 [ 19] [ 3] [418] +09:12:39 [ 22] [ 3] [021] +09:12:39 [ 25] [ 2] [01] +09:12:39 [ 28] [ 9] [D00002000] +09:12:39 [ 32] [ 6] [180893] +09:12:39 [ 35] [ 32] [6213545000926398=491212012639048] +09:12:39 [ 37] [ 12] [507902267433] +09:12:39 [ 41] [ 8] [0368KMMX] +09:12:39 [ 42] [ 15] [999999 ] +09:12:39 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +09:12:39 [ 49] [ 3] [418] +09:12:39 [ 52] [ 16] [AC5290311DAC645D] +09:12:39 ============================================================================ +09:12:39 + + +waiting on router queue for slot.... +09:12:39 Sending to : +09:12:39 ============================================================================ +09:12:39 Sending to : +09:12:39 ============================================================================ +09:12:39 ============================================================================ +09:12:39 Slot Id : <341> +09:12:39 Transaction Type : REQUEST +09:12:39 Received From : +09:12:39 ============================================================================ +09:12:39 FNo. Len. Field Value +09:12:39 ============================================================================ +09:12:39 [ 1] [ 4] [0200] +09:12:39 [ 2] [ 16] [6213545000926398] +09:12:39 [ 3] [ 6] [011000] +09:12:39 [ 4] [ 12] [000015000000] +09:12:39 [ 7] [ 10] [0320021146] +09:12:39 [ 11] [ 6] [267433] +09:12:39 [ 12] [ 6] [091146] +09:12:39 [ 13] [ 4] [0320] +09:12:39 [ 14] [ 4] [4912] +09:12:39 [ 15] [ 4] [0320] +09:12:39 [ 18] [ 4] [6011] +09:12:39 [ 19] [ 3] [418] +09:12:39 [ 22] [ 3] [021] +09:12:39 [ 25] [ 2] [01] +09:12:39 [ 28] [ 9] [D00002000] +09:12:39 [ 32] [ 6] [180893] +09:12:39 [ 35] [ 32] [6213545000926398=491212012639048] +09:12:39 [ 37] [ 12] [507902267433] +09:12:39 [ 41] [ 8] [0368KMMX] +09:12:39 [ 42] [ 15] [999999 ] +09:12:39 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +09:12:39 [ 49] [ 3] [418] +09:12:39 [ 52] [ 16] [AC5290311DAC645D] +09:12:39 ============================================================================ +09:12:39 + + +waiting on router queue for slot.... +09:12:39 Sending to : +09:12:39 ============================================================================ +09:12:39 ============================================================================ +09:12:39 Slot Id : <341> +09:12:39 Transaction Type : REQUEST +09:12:39 Received From : +09:12:39 ============================================================================ +09:12:39 FNo. Len. Field Value +09:12:39 ============================================================================ +09:12:39 [ 1] [ 4] [0200] +09:12:39 [ 2] [ 16] [6213545000926398] +09:12:39 [ 3] [ 6] [011000] +09:12:39 [ 4] [ 12] [000015000000] +09:12:39 [ 7] [ 10] [0320021146] +09:12:39 [ 11] [ 6] [267433] +09:12:39 [ 12] [ 6] [091146] +09:12:39 [ 13] [ 4] [0320] +09:12:39 [ 14] [ 4] [4912] +09:12:39 [ 15] [ 4] [0320] +09:12:39 [ 18] [ 4] [6011] +09:12:39 [ 19] [ 3] [418] +09:12:39 [ 22] [ 3] [021] +09:12:39 [ 25] [ 2] [01] +09:12:39 [ 28] [ 9] [D00002000] +09:12:39 [ 32] [ 6] [180893] +09:12:39 [ 35] [ 32] [6213545000926398=491212012639048] +09:12:39 [ 37] [ 12] [507902267433] +09:12:39 [ 41] [ 8] [0368KMMX] +09:12:39 [ 42] [ 15] [999999 ] +09:12:39 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +09:12:39 [ 49] [ 3] [418] +09:12:39 [ 52] [ 16] [5F2015191F41D923] +09:12:39 ============================================================================ +09:12:39 + + +waiting on router queue for slot.... +09:12:39 Sending to : <0> +09:12:39 ============================================================================ +09:12:39 ============================================================================ +09:12:39 Slot Id : <341> +09:12:39 Transaction Type : RESPONSE +09:12:39 Received From : +09:12:39 ============================================================================ +09:12:39 FNo. Len. Field Value +09:12:39 ============================================================================ +09:12:39 [ 1] [ 4] [0210] +09:12:39 [ 2] [ 16] [6213545000926398] +09:12:39 [ 3] [ 6] [011000] +09:12:39 [ 4] [ 12] [000015000000] +09:12:39 [ 7] [ 10] [0320021146] +09:12:39 [ 11] [ 6] [267433] +09:12:39 [ 12] [ 6] [091146] +09:12:39 [ 13] [ 4] [0320] +09:12:39 [ 15] [ 4] [0320] +09:12:39 [ 18] [ 4] [6011] +09:12:39 [ 19] [ 3] [418] +09:12:39 [ 32] [ 6] [180893] +09:12:39 [ 35] [ 32] [6213545000926398=491212012639048] +09:12:39 [ 37] [ 12] [507902267433] +09:12:39 [ 38] [ 6] [639735] +09:12:39 [ 39] [ 2] [00] +09:12:39 [ 41] [ 8] [0368KMMX] +09:12:39 [ 49] [ 3] [418] +09:12:39 [ 54] [ 40] [1001418C0000074355501002418C000007435550] +09:12:39 ============================================================================ +09:12:39 Sending to : +09:12:39 ============================================================================ +09:12:39 + + +waiting on router queue for slot.... +09:12:41 ============================================================================ +09:12:41 Slot Id : <341> +09:12:41 Transaction Type : RESPONSE +09:12:41 Received From : +09:12:41 ============================================================================ +09:12:41 FNo. Len. Field Value +09:12:41 ============================================================================ +09:12:41 [ 1] [ 4] [0210] +09:12:41 [ 2] [ 16] [6213545000926398] +09:12:41 [ 3] [ 6] [011000] +09:12:41 [ 4] [ 12] [000015000000] +09:12:41 [ 7] [ 10] [0320021146] +09:12:41 [ 11] [ 6] [267433] +09:12:41 [ 12] [ 6] [091146] +09:12:41 [ 13] [ 4] [0320] +09:12:41 [ 15] [ 4] [0320] +09:12:41 [ 18] [ 4] [6011] +09:12:41 [ 19] [ 3] [418] +09:12:41 [ 32] [ 6] [180893] +09:12:41 [ 35] [ 32] [6213545000926398=491212012639048] +09:12:41 [ 37] [ 12] [507902267433] +09:12:41 [ 38] [ 6] [639735] +09:12:41 [ 39] [ 2] [00] +09:12:41 [ 41] [ 8] [0368KMMX] +09:12:41 [ 49] [ 3] [418] +09:12:41 [ 54] [ 40] [1001418C0000074355501002418C000007435550] +09:12:41 ============================================================================ +09:12:41 Calculate Source COMM Id = 2 +09:12:41 ============================================================================ +09:12:41 + + +waiting on router queue for slot.... +09:12:45 ============================================================================ +09:12:45 Slot Id : <344> +09:12:45 Transaction Type : REQUEST +09:12:45 Received From : +09:12:45 ============================================================================ +09:12:45 FNo. Len. Field Value +09:12:45 ============================================================================ +09:12:45 [ 1] [ 4] [0200] +09:12:45 [ 2] [ 16] [6688990100945805] +09:12:45 [ 3] [ 6] [012000] +09:12:45 [ 4] [ 12] [000130000000] +09:12:45 [ 7] [ 10] [0320021152] +09:12:45 [ 11] [ 6] [267437] +09:12:45 [ 12] [ 6] [091152] +09:12:45 [ 13] [ 4] [0320] +09:12:45 [ 14] [ 4] [4112] +09:12:45 [ 15] [ 4] [0320] +09:12:45 [ 18] [ 4] [6011] +09:12:45 [ 19] [ 3] [418] +09:12:45 [ 22] [ 3] [021] +09:12:45 [ 25] [ 2] [01] +09:12:45 [ 28] [ 9] [D00002000] +09:12:45 [ 32] [ 6] [180893] +09:12:45 [ 35] [ 37] [6688990100945805=41121231580527800000] +09:12:45 [ 37] [ 12] [507902267437] +09:12:45 [ 41] [ 8] [0467PSLK] +09:12:45 [ 42] [ 15] [999999 ] +09:12:45 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +09:12:45 [ 49] [ 3] [418] +09:12:45 [ 52] [ 16] [954B35215126EB7E] +09:12:45 ============================================================================ +09:12:45 + + +waiting on router queue for slot.... +09:12:45 Sending to : +09:12:45 ============================================================================ +09:12:45 Sending to : +09:12:45 ============================================================================ +09:12:45 ============================================================================ +09:12:45 Slot Id : <344> +09:12:45 Transaction Type : REQUEST +09:12:45 Received From : +09:12:45 ============================================================================ +09:12:45 FNo. Len. Field Value +09:12:45 ============================================================================ +09:12:45 [ 1] [ 4] [0200] +09:12:45 [ 2] [ 16] [6688990100945805] +09:12:45 [ 3] [ 6] [012000] +09:12:45 [ 4] [ 12] [000130000000] +09:12:45 [ 7] [ 10] [0320021152] +09:12:45 [ 11] [ 6] [267437] +09:12:45 [ 12] [ 6] [091152] +09:12:45 [ 13] [ 4] [0320] +09:12:45 [ 14] [ 4] [4112] +09:12:45 [ 15] [ 4] [0320] +09:12:45 [ 18] [ 4] [6011] +09:12:45 [ 19] [ 3] [418] +09:12:45 [ 22] [ 3] [021] +09:12:45 [ 25] [ 2] [01] +09:12:45 [ 28] [ 9] [D00002000] +09:12:45 [ 32] [ 6] [180893] +09:12:45 [ 35] [ 37] [6688990100945805=41121231580527800000] +09:12:45 [ 37] [ 12] [507902267437] +09:12:45 [ 41] [ 8] [0467PSLK] +09:12:45 [ 42] [ 15] [999999 ] +09:12:45 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +09:12:45 [ 49] [ 3] [418] +09:12:45 [ 52] [ 16] [954B35215126EB7E] +09:12:45 ============================================================================ +09:12:45 + + +waiting on router queue for slot.... +09:12:45 Sending to : +09:12:45 ============================================================================ +09:12:45 ============================================================================ +09:12:45 Slot Id : <344> +09:12:45 Transaction Type : REQUEST +09:12:45 Received From : +09:12:45 ============================================================================ +09:12:45 FNo. Len. Field Value +09:12:45 ============================================================================ +09:12:45 [ 1] [ 4] [0200] +09:12:45 [ 2] [ 16] [6688990100945805] +09:12:45 [ 3] [ 6] [012000] +09:12:45 [ 4] [ 12] [000130000000] +09:12:45 [ 7] [ 10] [0320021152] +09:12:45 [ 11] [ 6] [267437] +09:12:45 [ 12] [ 6] [091152] +09:12:45 [ 13] [ 4] [0320] +09:12:45 [ 14] [ 4] [4112] +09:12:45 [ 15] [ 4] [0320] +09:12:45 [ 18] [ 4] [6011] +09:12:45 [ 19] [ 3] [418] +09:12:45 [ 22] [ 3] [021] +09:12:45 [ 25] [ 2] [01] +09:12:45 [ 28] [ 9] [D00002000] +09:12:45 [ 32] [ 6] [180893] +09:12:45 [ 35] [ 37] [6688990100945805=41121231580527800000] +09:12:45 [ 37] [ 12] [507902267437] +09:12:45 [ 41] [ 8] [0467PSLK] +09:12:45 [ 42] [ 15] [999999 ] +09:12:45 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +09:12:45 [ 49] [ 3] [418] +09:12:45 [ 52] [ 16] [933496FB06C3A034] +09:12:45 ============================================================================ +09:12:45 + + +waiting on router queue for slot.... +09:12:45 Sending to : <0> +09:12:45 ============================================================================ +09:12:45 ============================================================================ +09:12:45 Slot Id : <344> +09:12:45 Transaction Type : RESPONSE +09:12:45 Received From : +09:12:45 ============================================================================ +09:12:45 FNo. Len. Field Value +09:12:45 ============================================================================ +09:12:45 [ 1] [ 4] [0210] +09:12:45 [ 2] [ 16] [6688990100945805] +09:12:45 [ 3] [ 6] [012000] +09:12:45 [ 4] [ 12] [000130000000] +09:12:45 [ 7] [ 10] [0320021152] +09:12:45 [ 11] [ 6] [267437] +09:12:45 [ 12] [ 6] [091152] +09:12:45 [ 13] [ 4] [0320] +09:12:45 [ 15] [ 4] [0320] +09:12:45 [ 18] [ 4] [6011] +09:12:45 [ 19] [ 3] [418] +09:12:45 [ 22] [ 3] [021] +09:12:45 [ 32] [ 6] [180893] +09:12:45 [ 35] [ 37] [6688990100945805=41121231580527800000] +09:12:45 [ 37] [ 12] [507902267437] +09:12:45 [ 39] [ 2] [61] +09:12:45 [ 41] [ 8] [0467PSLK] +09:12:45 [ 49] [ 3] [418] +09:12:45 ============================================================================ +09:12:45 Sending to : +09:12:45 ============================================================================ +09:12:45 + + +waiting on router queue for slot.... +09:12:46 ============================================================================ +09:12:46 Slot Id : <344> +09:12:46 Transaction Type : RESPONSE +09:12:46 Received From : +09:12:46 ============================================================================ +09:12:46 FNo. Len. Field Value +09:12:46 ============================================================================ +09:12:46 [ 1] [ 4] [0210] +09:12:46 [ 2] [ 16] [6688990100945805] +09:12:46 [ 3] [ 6] [012000] +09:12:46 [ 4] [ 12] [000130000000] +09:12:46 [ 7] [ 10] [0320021152] +09:12:46 [ 11] [ 6] [267437] +09:12:46 [ 12] [ 6] [091152] +09:12:46 [ 13] [ 4] [0320] +09:12:46 [ 15] [ 4] [0320] +09:12:46 [ 18] [ 4] [6011] +09:12:46 [ 19] [ 3] [418] +09:12:46 [ 22] [ 3] [021] +09:12:46 [ 32] [ 6] [180893] +09:12:46 [ 35] [ 37] [6688990100945805=41121231580527800000] +09:12:46 [ 37] [ 12] [507902267437] +09:12:46 [ 39] [ 2] [61] +09:12:46 [ 41] [ 8] [0467PSLK] +09:12:46 [ 49] [ 3] [418] +09:12:46 ============================================================================ +09:12:46 Calculate Source COMM Id = 2 +09:12:46 ============================================================================ +09:12:46 + + +waiting on router queue for slot.... +09:12:58 ============================================================================ +09:12:58 Slot Id : <268> +09:12:58 Transaction Type : REQUEST +09:12:58 Received From : +09:12:58 ============================================================================ +09:12:58 FNo. Len. Field Value +09:12:58 ============================================================================ +09:12:58 [ 1] [ 4] [0200] +09:12:58 [ 2] [ 16] [6213544000692142] +09:12:58 [ 3] [ 6] [010000] +09:12:58 [ 4] [ 12] [000100000000] +09:12:58 [ 7] [ 10] [0320091049] +09:12:58 [ 11] [ 6] [934968] +09:12:58 [ 12] [ 6] [091049] +09:12:58 [ 13] [ 4] [0320] +09:12:58 [ 15] [ 4] [0320] +09:12:58 [ 18] [ 4] [6011] +09:12:58 [ 19] [ 3] [418] +09:12:58 [ 22] [ 3] [021] +09:12:58 [ 25] [ 2] [01] +09:12:58 [ 28] [ 9] [D00002000] +09:12:58 [ 32] [ 6] [668899] +09:12:58 [ 35] [ 32] [6213544000692142=491212019214299] +09:12:58 [ 37] [ 12] [507901963393] +09:12:58 [ 41] [ 8] [03020019] +09:12:58 [ 42] [ 15] [APT ] +09:12:58 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:12:58 [ 49] [ 3] [418] +09:12:58 [ 52] [ 16] [8D155AD56D6CCC13] +09:12:58 ============================================================================ +09:12:58 + + +waiting on router queue for slot.... +09:12:58 Sending to : +09:12:58 ============================================================================ +09:12:58 Sending to : +09:12:58 ============================================================================ +09:12:58 ============================================================================ +09:12:58 Slot Id : <268> +09:12:58 Transaction Type : REQUEST +09:12:58 Received From : +09:12:58 ============================================================================ +09:12:58 FNo. Len. Field Value +09:12:58 ============================================================================ +09:12:58 [ 1] [ 4] [0200] +09:12:58 [ 2] [ 16] [6213544000692142] +09:12:58 [ 3] [ 6] [010000] +09:12:58 [ 4] [ 12] [000100000000] +09:12:58 [ 7] [ 10] [0320091049] +09:12:58 [ 11] [ 6] [934968] +09:12:58 [ 12] [ 6] [091049] +09:12:58 [ 13] [ 4] [0320] +09:12:58 [ 15] [ 4] [0320] +09:12:58 [ 18] [ 4] [6011] +09:12:58 [ 19] [ 3] [418] +09:12:58 [ 22] [ 3] [021] +09:12:58 [ 25] [ 2] [01] +09:12:58 [ 28] [ 9] [D00002000] +09:12:58 [ 32] [ 6] [668899] +09:12:58 [ 35] [ 32] [6213544000692142=491212019214299] +09:12:58 [ 37] [ 12] [507901963393] +09:12:58 [ 41] [ 8] [03020019] +09:12:58 [ 42] [ 15] [APT ] +09:12:58 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:12:58 [ 49] [ 3] [418] +09:12:58 [ 52] [ 16] [8D155AD56D6CCC13] +09:12:58 ============================================================================ +09:12:58 + + +waiting on router queue for slot.... +09:12:58 Sending to : +09:12:58 ============================================================================ +09:12:58 ============================================================================ +09:12:58 Slot Id : <268> +09:12:58 Transaction Type : REQUEST +09:12:58 Received From : +09:12:58 ============================================================================ +09:12:58 FNo. Len. Field Value +09:12:58 ============================================================================ +09:12:58 [ 1] [ 4] [0200] +09:12:58 [ 2] [ 16] [6213544000692142] +09:12:58 [ 3] [ 6] [010000] +09:12:58 [ 4] [ 12] [000100000000] +09:12:58 [ 7] [ 10] [0320091049] +09:12:58 [ 11] [ 6] [934968] +09:12:58 [ 12] [ 6] [091049] +09:12:58 [ 13] [ 4] [0320] +09:12:58 [ 15] [ 4] [0320] +09:12:58 [ 18] [ 4] [6011] +09:12:58 [ 19] [ 3] [418] +09:12:58 [ 22] [ 3] [021] +09:12:58 [ 25] [ 2] [01] +09:12:58 [ 28] [ 9] [D00002000] +09:12:58 [ 32] [ 6] [668899] +09:12:58 [ 35] [ 32] [6213544000692142=491212019214299] +09:12:58 [ 37] [ 12] [507901963393] +09:12:58 [ 41] [ 8] [03020019] +09:12:58 [ 42] [ 15] [APT ] +09:12:58 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:12:58 [ 49] [ 3] [418] +09:12:58 [ 52] [ 16] [EABBDE6A7B0182D6] +09:12:58 ============================================================================ +09:12:58 + + +waiting on router queue for slot.... +09:12:58 Sending to : <0> +09:12:58 ============================================================================ +09:12:58 ============================================================================ +09:12:58 Slot Id : <268> +09:12:58 Transaction Type : RESPONSE +09:12:58 Received From : +09:12:58 ============================================================================ +09:12:58 FNo. Len. Field Value +09:12:58 ============================================================================ +09:12:58 [ 1] [ 4] [0210] +09:12:58 [ 2] [ 16] [6213544000692142] +09:12:58 [ 3] [ 6] [010000] +09:12:58 [ 4] [ 12] [000100000000] +09:12:58 [ 7] [ 10] [0320091049] +09:12:58 [ 11] [ 6] [934968] +09:12:58 [ 12] [ 6] [091049] +09:12:58 [ 13] [ 4] [0320] +09:12:58 [ 15] [ 4] [0320] +09:12:58 [ 18] [ 4] [6011] +09:12:58 [ 19] [ 3] [418] +09:12:58 [ 22] [ 3] [021] +09:12:58 [ 32] [ 6] [668899] +09:12:58 [ 35] [ 32] [6213544000692142=491212019214299] +09:12:58 [ 37] [ 12] [507901963393] +09:12:58 [ 38] [ 6] [091255] +09:12:58 [ 39] [ 2] [75] +09:12:58 [ 41] [ 8] [03020019] +09:12:58 [ 49] [ 3] [418] +09:12:58 ============================================================================ +09:12:58 Sending to : +09:12:58 ============================================================================ +09:12:58 + + +waiting on router queue for slot.... +09:12:59 ============================================================================ +09:12:59 Slot Id : <323> +09:12:59 Transaction Type : REQUEST +09:12:59 Received From : +09:12:59 ============================================================================ +09:12:59 FNo. Len. Field Value +09:12:59 ============================================================================ +09:12:59 [ 1] [ 4] [0800] +09:12:59 [ 7] [ 10] [0320021207] +09:12:59 [ 11] [ 6] [155571] +09:12:59 [ 70] [ 3] [301] +09:12:59 ============================================================================ +09:12:59 + + +waiting on router queue for slot.... +09:12:59 Sending to : +09:12:59 ============================================================================ +09:12:59 ============================================================================ +09:12:59 Slot Id : <323> +09:12:59 Transaction Type : RESPONSE +09:12:59 Received From : +09:12:59 ============================================================================ +09:12:59 FNo. Len. Field Value +09:12:59 ============================================================================ +09:12:59 [ 1] [ 4] [0810] +09:12:59 [ 7] [ 10] [0320021207] +09:12:59 [ 11] [ 6] [155571] +09:12:59 [ 39] [ 2] [00] +09:12:59 [ 70] [ 3] [301] +09:12:59 ============================================================================ +09:12:59 Calculate Source COMM Id = 2 +09:12:59 ============================================================================ +09:12:59 + + +waiting on router queue for slot.... +09:12:59 ============================================================================ +09:12:59 Slot Id : <268> +09:12:59 Transaction Type : RESPONSE +09:12:59 Received From : +09:12:59 ============================================================================ +09:12:59 FNo. Len. Field Value +09:12:59 ============================================================================ +09:12:59 [ 1] [ 4] [0210] +09:12:59 [ 2] [ 16] [6213544000692142] +09:12:59 [ 3] [ 6] [010000] +09:12:59 [ 4] [ 12] [000100000000] +09:12:59 [ 7] [ 10] [0320091049] +09:12:59 [ 11] [ 6] [934968] +09:12:59 [ 12] [ 6] [091049] +09:12:59 [ 13] [ 4] [0320] +09:12:59 [ 15] [ 4] [0320] +09:12:59 [ 18] [ 4] [6011] +09:12:59 [ 19] [ 3] [418] +09:12:59 [ 22] [ 3] [021] +09:12:59 [ 32] [ 6] [668899] +09:12:59 [ 35] [ 32] [6213544000692142=491212019214299] +09:12:59 [ 37] [ 12] [507901963393] +09:12:59 [ 38] [ 6] [091255] +09:12:59 [ 39] [ 2] [75] +09:12:59 [ 41] [ 8] [03020019] +09:12:59 [ 49] [ 3] [418] +09:12:59 ============================================================================ +09:12:59 Calculate Source COMM Id = 4 +09:12:59 ============================================================================ +09:12:59 + + +waiting on router queue for slot.... +09:13:05 ============================================================================ +09:13:05 Slot Id : <329> +09:13:05 Transaction Type : REQUEST +09:13:05 Received From : +09:13:05 ============================================================================ +09:13:05 FNo. Len. Field Value +09:13:05 ============================================================================ +09:13:05 [ 1] [ 4] [0200] +09:13:05 [ 2] [ 16] [6688990105380206] +09:13:05 [ 3] [ 6] [010000] +09:13:05 [ 4] [ 12] [000068000000] +09:13:05 [ 7] [ 10] [0320091301] +09:13:05 [ 11] [ 6] [695098] +09:13:05 [ 12] [ 6] [091301] +09:13:05 [ 13] [ 4] [0320] +09:13:05 [ 15] [ 4] [0320] +09:13:05 [ 18] [ 4] [6011] +09:13:05 [ 22] [ 3] [900] +09:13:05 [ 25] [ 2] [02] +09:13:05 [ 28] [ 9] [D00002000] +09:13:05 [ 32] [ 6] [621354] +09:13:05 [ 35] [ 37] [6688990105380206=43091231020687100000] +09:13:05 [ 37] [ 12] [507904706882] +09:13:05 [ 41] [ 8] [18000900] +09:13:05 [ 42] [ 15] [NATIVE ] +09:13:05 [ 43] [ 40] [Bounneau District Bounneua LAO] +09:13:05 [ 49] [ 3] [418] +09:13:05 [ 52] [ 16] [A1089DFFE324F95C] +09:13:05 ============================================================================ +09:13:05 + + +waiting on router queue for slot.... +09:13:05 Sending to : +09:13:05 ============================================================================ +09:13:05 Sending to : +09:13:05 ============================================================================ +09:13:05 ============================================================================ +09:13:05 Slot Id : <329> +09:13:05 Transaction Type : REQUEST +09:13:05 Received From : +09:13:05 ============================================================================ +09:13:05 FNo. Len. Field Value +09:13:05 ============================================================================ +09:13:05 [ 1] [ 4] [0200] +09:13:05 [ 2] [ 16] [6688990105380206] +09:13:05 [ 3] [ 6] [010000] +09:13:05 [ 4] [ 12] [000068000000] +09:13:05 [ 7] [ 10] [0320091301] +09:13:05 [ 11] [ 6] [695098] +09:13:05 [ 12] [ 6] [091301] +09:13:05 [ 13] [ 4] [0320] +09:13:05 [ 15] [ 4] [0320] +09:13:05 [ 18] [ 4] [6011] +09:13:05 [ 22] [ 3] [900] +09:13:05 [ 25] [ 2] [02] +09:13:05 [ 28] [ 9] [D00002000] +09:13:05 [ 32] [ 6] [621354] +09:13:05 [ 35] [ 37] [6688990105380206=43091231020687100000] +09:13:05 [ 37] [ 12] [507904706882] +09:13:05 [ 41] [ 8] [18000900] +09:13:05 [ 42] [ 15] [NATIVE ] +09:13:05 [ 43] [ 40] [Bounneau District Bounneua LAO] +09:13:05 [ 49] [ 3] [418] +09:13:05 [ 52] [ 16] [A1089DFFE324F95C] +09:13:05 ============================================================================ +09:13:05 + + +waiting on router queue for slot.... +09:13:05 Sending to : +09:13:05 ============================================================================ +09:13:05 ============================================================================ +09:13:05 Slot Id : <329> +09:13:05 Transaction Type : REQUEST +09:13:05 Received From : +09:13:05 ============================================================================ +09:13:05 FNo. Len. Field Value +09:13:05 ============================================================================ +09:13:05 [ 1] [ 4] [0200] +09:13:05 [ 2] [ 16] [6688990105380206] +09:13:05 [ 3] [ 6] [010000] +09:13:05 [ 4] [ 12] [000068000000] +09:13:05 [ 7] [ 10] [0320091301] +09:13:05 [ 11] [ 6] [695098] +09:13:05 [ 12] [ 6] [091301] +09:13:05 [ 13] [ 4] [0320] +09:13:05 [ 15] [ 4] [0320] +09:13:05 [ 18] [ 4] [6011] +09:13:05 [ 22] [ 3] [900] +09:13:05 [ 25] [ 2] [02] +09:13:05 [ 28] [ 9] [D00002000] +09:13:05 [ 32] [ 6] [621354] +09:13:05 [ 35] [ 37] [6688990105380206=43091231020687100000] +09:13:05 [ 37] [ 12] [507904706882] +09:13:05 [ 41] [ 8] [18000900] +09:13:05 [ 42] [ 15] [NATIVE ] +09:13:05 [ 43] [ 40] [Bounneau District Bounneua LAO] +09:13:05 [ 49] [ 3] [418] +09:13:05 [ 52] [ 16] [C992FC97CD6A8530] +09:13:05 ============================================================================ +09:13:05 + + +waiting on router queue for slot.... +09:13:05 Sending to : <4> +09:13:05 ============================================================================ +09:13:06 ============================================================================ +09:13:06 Slot Id : <329> +09:13:06 Transaction Type : RESPONSE +09:13:06 Received From : +09:13:06 ============================================================================ +09:13:06 FNo. Len. Field Value +09:13:06 ============================================================================ +09:13:06 [ 1] [ 4] [0210] +09:13:06 [ 2] [ 16] [6688990105380206] +09:13:06 [ 3] [ 6] [010000] +09:13:06 [ 4] [ 12] [000068000000] +09:13:06 [ 11] [ 6] [695098] +09:13:06 [ 12] [ 6] [091301] +09:13:06 [ 15] [ 4] [0320] +09:13:06 [ 18] [ 4] [6011] +09:13:06 [ 32] [ 6] [621354] +09:13:06 [ 35] [ 37] [6688990105380206=43091231020687100000] +09:13:06 [ 37] [ 12] [507904706882] +09:13:06 [ 38] [ 6] [758405] +09:13:06 [ 39] [ 2] [00] +09:13:06 [ 41] [ 8] [18000900] +09:13:06 [ 49] [ 3] [418] +09:13:06 [ 54] [ 20] [0002418C000003056382] +09:13:06 ============================================================================ +09:13:06 Sending to : +09:13:06 ============================================================================ +09:13:06 + + +waiting on router queue for slot.... +09:13:07 ============================================================================ +09:13:07 Slot Id : <329> +09:13:07 Transaction Type : RESPONSE +09:13:07 Received From : +09:13:07 ============================================================================ +09:13:07 FNo. Len. Field Value +09:13:07 ============================================================================ +09:13:07 [ 1] [ 4] [0210] +09:13:07 [ 2] [ 16] [6688990105380206] +09:13:07 [ 3] [ 6] [010000] +09:13:07 [ 4] [ 12] [000068000000] +09:13:07 [ 11] [ 6] [695098] +09:13:07 [ 12] [ 6] [091301] +09:13:07 [ 15] [ 4] [0320] +09:13:07 [ 18] [ 4] [6011] +09:13:07 [ 32] [ 6] [621354] +09:13:07 [ 35] [ 37] [6688990105380206=43091231020687100000] +09:13:07 [ 37] [ 12] [507904706882] +09:13:07 [ 38] [ 6] [758405] +09:13:07 [ 39] [ 2] [00] +09:13:07 [ 41] [ 8] [18000900] +09:13:07 [ 49] [ 3] [418] +09:13:07 [ 54] [ 20] [0002418C000003056382] +09:13:07 ============================================================================ +09:13:07 Calculate Source COMM Id = 0 +09:13:07 ============================================================================ +09:13:07 + + +waiting on router queue for slot.... +09:13:15 ============================================================================ +09:13:15 Slot Id : <339> +09:13:15 Transaction Type : REQUEST +09:13:15 Received From : +09:13:15 ============================================================================ +09:13:15 FNo. Len. Field Value +09:13:15 ============================================================================ +09:13:15 [ 1] [ 4] [0800] +09:13:15 [ 7] [ 10] [0320021223] +09:13:15 [ 11] [ 6] [155572] +09:13:15 [ 70] [ 3] [301] +09:13:15 ============================================================================ +09:13:15 + + +waiting on router queue for slot.... +09:13:15 Sending to : +09:13:15 ============================================================================ +09:13:15 ============================================================================ +09:13:15 Slot Id : <339> +09:13:15 Transaction Type : RESPONSE +09:13:15 Received From : +09:13:15 ============================================================================ +09:13:15 FNo. Len. Field Value +09:13:15 ============================================================================ +09:13:15 [ 1] [ 4] [0810] +09:13:15 [ 7] [ 10] [0320021223] +09:13:15 [ 11] [ 6] [155572] +09:13:15 [ 39] [ 2] [00] +09:13:15 [ 70] [ 3] [301] +09:13:15 ============================================================================ +09:13:15 Calculate Source COMM Id = 2 +09:13:15 ============================================================================ +09:13:15 + + +waiting on router queue for slot.... +09:13:26 ============================================================================ +09:13:26 Slot Id : <309> +09:13:26 Transaction Type : REQUEST +09:13:26 Received From : +09:13:26 ============================================================================ +09:13:26 FNo. Len. Field Value +09:13:26 ============================================================================ +09:13:26 [ 1] [ 4] [0800] +09:13:26 [ 2] [ 5] [02531] +09:13:26 [ 3] [ 6] [579098] +09:13:26 [ 7] [ 10] [0320021326] +09:13:26 [ 11] [ 6] [806947] +09:13:26 [ 15] [ 10] [0320021326] +09:13:26 [ 37] [ 11] [57909806947] +09:13:26 [ 70] [ 3] [001] +09:13:26 ============================================================================ +09:13:26 + + +waiting on router queue for slot.... +09:13:26 ============================================================================ +09:13:26 Slot Id : <309> +09:13:26 Transaction Type : RESPONSE +09:13:26 Received From : +09:13:26 ============================================================================ +09:13:26 FNo. Len. Field Value +09:13:26 ============================================================================ +09:13:26 [ 1] [ 4] [0810] +09:13:26 [ 7] [ 10] [0320021326] +09:13:26 [ 11] [ 6] [806947] +09:13:26 [ 15] [ 4] [0320] +09:13:26 [ 37] [ 12] [57909806947] +09:13:26 [ 39] [ 2] [00] +09:13:26 [ 70] [ 3] [001] +09:13:26 ============================================================================ +09:13:26 Sending to : +09:13:26 ============================================================================ +09:13:26 + + +waiting on router queue for slot.... +09:13:26 ============================================================================ +09:13:26 Slot Id : <348> +09:13:26 Transaction Type : REQUEST +09:13:26 Received From : +09:13:26 ============================================================================ +09:13:26 FNo. Len. Field Value +09:13:26 ============================================================================ +09:13:26 [ 1] [ 4] [0800] +09:13:26 [ 7] [ 10] [0320021235] +09:13:26 [ 11] [ 6] [155573] +09:13:26 [ 70] [ 3] [301] +09:13:26 ============================================================================ +09:13:26 + + +waiting on router queue for slot.... +09:13:26 Sending to : +09:13:26 ============================================================================ +09:13:26 ============================================================================ +09:13:26 Slot Id : <348> +09:13:26 Transaction Type : RESPONSE +09:13:26 Received From : +09:13:26 ============================================================================ +09:13:26 FNo. Len. Field Value +09:13:26 ============================================================================ +09:13:26 [ 1] [ 4] [0810] +09:13:26 [ 7] [ 10] [0320021235] +09:13:26 [ 11] [ 6] [155573] +09:13:26 [ 39] [ 2] [00] +09:13:26 [ 70] [ 3] [301] +09:13:26 ============================================================================ +09:13:26 Calculate Source COMM Id = 2 +09:13:26 ============================================================================ +09:13:26 + + +waiting on router queue for slot.... +09:13:42 ============================================================================ +09:13:42 Slot Id : <352> +09:13:42 Transaction Type : REQUEST +09:13:42 Received From : +09:13:42 ============================================================================ +09:13:42 FNo. Len. Field Value +09:13:42 ============================================================================ +09:13:42 [ 1] [ 4] [0800] +09:13:42 [ 7] [ 10] [0320162531] +09:13:42 [ 11] [ 6] [092531] +09:13:42 [ 37] [ 12] [57909092531] +09:13:42 [ 70] [ 3] [301] +09:13:42 ============================================================================ +09:13:42 + + +waiting on router queue for slot.... +09:13:42 Sending to : +09:13:42 ============================================================================ +09:13:42 ============================================================================ +09:13:42 Slot Id : <352> +09:13:42 Transaction Type : RESPONSE +09:13:42 Received From : +09:13:42 ============================================================================ +09:13:42 FNo. Len. Field Value +09:13:42 ============================================================================ +09:13:42 [ 1] [ 4] [0810] +09:13:42 [ 7] [ 10] [0320162531] +09:13:42 [ 11] [ 6] [092531] +09:13:42 [ 37] [ 12] [579090925310] +09:13:42 [ 39] [ 2] [00] +09:13:42 [ 70] [ 3] [810] +09:13:42 ============================================================================ +09:13:42 Calculate Source COMM Id = 6 +09:13:42 ============================================================================ +09:13:42 + + +waiting on router queue for slot.... +09:13:42 ============================================================================ +09:13:42 Slot Id : <328> +09:13:42 Transaction Type : REQUEST +09:13:42 Received From : +09:13:42 ============================================================================ +09:13:42 FNo. Len. Field Value +09:13:42 ============================================================================ +09:13:42 [ 1] [ 4] [0800] +09:13:42 [ 7] [ 10] [0320021251] +09:13:42 [ 11] [ 6] [155574] +09:13:42 [ 70] [ 3] [301] +09:13:42 ============================================================================ +09:13:42 + + +waiting on router queue for slot.... +09:13:42 Sending to : +09:13:42 ============================================================================ +09:13:42 ============================================================================ +09:13:42 Slot Id : <328> +09:13:42 Transaction Type : RESPONSE +09:13:42 Received From : +09:13:42 ============================================================================ +09:13:42 FNo. Len. Field Value +09:13:42 ============================================================================ +09:13:42 [ 1] [ 4] [0810] +09:13:42 [ 7] [ 10] [0320021251] +09:13:42 [ 11] [ 6] [155574] +09:13:42 [ 39] [ 2] [00] +09:13:42 [ 70] [ 3] [301] +09:13:42 ============================================================================ +09:13:42 Calculate Source COMM Id = 2 +09:13:42 ============================================================================ +09:13:42 + + +waiting on router queue for slot.... +09:13:46 ============================================================================ +09:13:46 Slot Id : <347> +09:13:46 Transaction Type : REQUEST +09:13:46 Received From : +09:13:46 ============================================================================ +09:13:46 FNo. Len. Field Value +09:13:46 ============================================================================ +09:13:46 [ 1] [ 4] [0200] +09:13:46 [ 2] [ 16] [6688990040028530] +09:13:46 [ 3] [ 6] [301000] +09:13:46 [ 4] [ 12] [000000000000] +09:13:46 [ 7] [ 10] [0320091343] +09:13:46 [ 11] [ 6] [695266] +09:13:46 [ 12] [ 6] [091343] +09:13:46 [ 13] [ 4] [0320] +09:13:46 [ 15] [ 4] [0320] +09:13:46 [ 18] [ 4] [6011] +09:13:46 [ 22] [ 3] [900] +09:13:46 [ 25] [ 2] [02] +09:13:46 [ 28] [ 9] [D00000000] +09:13:46 [ 32] [ 6] [621354] +09:13:46 [ 35] [ 37] [6688990040028530=97111261287453400000] +09:13:46 [ 37] [ 12] [507902508135] +09:13:46 [ 41] [ 8] [05003300] +09:13:46 [ 42] [ 15] [NATIVE ] +09:13:46 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:13:46 [ 49] [ 3] [418] +09:13:46 [ 52] [ 16] [DAB0E3060319E5F6] +09:13:46 ============================================================================ +09:13:46 + + +waiting on router queue for slot.... +09:13:46 Sending to : +09:13:46 ============================================================================ +09:13:46 Sending to : +09:13:46 ============================================================================ +09:13:47 ============================================================================ +09:13:47 Slot Id : <347> +09:13:47 Transaction Type : REQUEST +09:13:47 Received From : +09:13:47 ============================================================================ +09:13:47 FNo. Len. Field Value +09:13:47 ============================================================================ +09:13:47 [ 1] [ 4] [0200] +09:13:47 [ 2] [ 16] [6688990040028530] +09:13:47 [ 3] [ 6] [301000] +09:13:47 [ 4] [ 12] [000000000000] +09:13:47 [ 7] [ 10] [0320091343] +09:13:47 [ 11] [ 6] [695266] +09:13:47 [ 12] [ 6] [091343] +09:13:47 [ 13] [ 4] [0320] +09:13:47 [ 15] [ 4] [0320] +09:13:47 [ 18] [ 4] [6011] +09:13:47 [ 22] [ 3] [900] +09:13:47 [ 25] [ 2] [02] +09:13:47 [ 28] [ 9] [D00000000] +09:13:47 [ 32] [ 6] [621354] +09:13:47 [ 35] [ 37] [6688990040028530=97111261287453400000] +09:13:47 [ 37] [ 12] [507902508135] +09:13:47 [ 41] [ 8] [05003300] +09:13:47 [ 42] [ 15] [NATIVE ] +09:13:47 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:13:47 [ 49] [ 3] [418] +09:13:47 [ 52] [ 16] [DAB0E3060319E5F6] +09:13:47 ============================================================================ +09:13:47 + + +waiting on router queue for slot.... +09:13:47 Sending to : +09:13:47 ============================================================================ +09:13:47 ============================================================================ +09:13:47 Slot Id : <347> +09:13:47 Transaction Type : REQUEST +09:13:47 Received From : +09:13:47 ============================================================================ +09:13:47 FNo. Len. Field Value +09:13:47 ============================================================================ +09:13:47 [ 1] [ 4] [0200] +09:13:47 [ 2] [ 16] [6688990040028530] +09:13:47 [ 3] [ 6] [301000] +09:13:47 [ 4] [ 12] [000000000000] +09:13:47 [ 7] [ 10] [0320091343] +09:13:47 [ 11] [ 6] [695266] +09:13:47 [ 12] [ 6] [091343] +09:13:47 [ 13] [ 4] [0320] +09:13:47 [ 15] [ 4] [0320] +09:13:47 [ 18] [ 4] [6011] +09:13:47 [ 22] [ 3] [900] +09:13:47 [ 25] [ 2] [02] +09:13:47 [ 28] [ 9] [D00000000] +09:13:47 [ 32] [ 6] [621354] +09:13:47 [ 35] [ 37] [6688990040028530=97111261287453400000] +09:13:47 [ 37] [ 12] [507902508135] +09:13:47 [ 41] [ 8] [05003300] +09:13:47 [ 42] [ 15] [NATIVE ] +09:13:47 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:13:47 [ 49] [ 3] [418] +09:13:47 [ 52] [ 16] [8F3937CE1E6CAA0B] +09:13:47 ============================================================================ +09:13:47 + + +waiting on router queue for slot.... +09:13:47 Sending to : <4> +09:13:47 ============================================================================ +09:13:48 ============================================================================ +09:13:48 Slot Id : <347> +09:13:48 Transaction Type : RESPONSE +09:13:48 Received From : +09:13:48 ============================================================================ +09:13:48 FNo. Len. Field Value +09:13:48 ============================================================================ +09:13:48 [ 1] [ 4] [0210] +09:13:48 [ 2] [ 16] [6688990040028530] +09:13:48 [ 3] [ 6] [301000] +09:13:48 [ 4] [ 12] [000000000000] +09:13:48 [ 11] [ 6] [695266] +09:13:48 [ 12] [ 6] [091343] +09:13:48 [ 15] [ 4] [0320] +09:13:48 [ 18] [ 4] [6011] +09:13:48 [ 32] [ 6] [621354] +09:13:48 [ 35] [ 37] [6688990040028530=97111261287453400000] +09:13:48 [ 37] [ 12] [507902508135] +09:13:48 [ 38] [ 6] [408697] +09:13:48 [ 39] [ 2] [00] +09:13:48 [ 41] [ 8] [05003300] +09:13:48 [ 49] [ 3] [418] +09:13:48 [ 54] [ 20] [1002418C000102848177] +09:13:48 ============================================================================ +09:13:48 Sending to : +09:13:48 ============================================================================ +09:13:48 + + +waiting on router queue for slot.... +09:13:49 ============================================================================ +09:13:49 Slot Id : <347> +09:13:49 Transaction Type : RESPONSE +09:13:49 Received From : +09:13:49 ============================================================================ +09:13:49 FNo. Len. Field Value +09:13:49 ============================================================================ +09:13:49 [ 1] [ 4] [0210] +09:13:49 [ 2] [ 16] [6688990040028530] +09:13:49 [ 3] [ 6] [301000] +09:13:49 [ 4] [ 12] [000000000000] +09:13:49 [ 11] [ 6] [695266] +09:13:49 [ 12] [ 6] [091343] +09:13:49 [ 15] [ 4] [0320] +09:13:49 [ 18] [ 4] [6011] +09:13:49 [ 32] [ 6] [621354] +09:13:49 [ 35] [ 37] [6688990040028530=97111261287453400000] +09:13:49 [ 37] [ 12] [507902508135] +09:13:49 [ 38] [ 6] [408697] +09:13:49 [ 39] [ 2] [00] +09:13:49 [ 41] [ 8] [05003300] +09:13:49 [ 49] [ 3] [418] +09:13:49 [ 54] [ 20] [1002418C000102848177] +09:13:49 ============================================================================ +09:13:49 Calculate Source COMM Id = 0 +09:13:49 ============================================================================ +09:13:49 + + +waiting on router queue for slot.... +09:13:51 ============================================================================ +09:13:51 Slot Id : <350> +09:13:51 Transaction Type : REQUEST +09:13:51 Received From : +09:13:51 ============================================================================ +09:13:51 FNo. Len. Field Value +09:13:51 ============================================================================ +09:13:51 [ 1] [ 4] [0200] +09:13:51 [ 2] [ 16] [1808931100007499] +09:13:51 [ 3] [ 6] [010000] +09:13:51 [ 4] [ 12] [000050000000] +09:13:51 [ 7] [ 10] [0320091347] +09:13:51 [ 11] [ 6] [695293] +09:13:51 [ 12] [ 6] [091347] +09:13:51 [ 13] [ 4] [0320] +09:13:51 [ 15] [ 4] [0320] +09:13:51 [ 18] [ 4] [6011] +09:13:51 [ 22] [ 3] [900] +09:13:51 [ 25] [ 2] [02] +09:13:51 [ 28] [ 9] [D00002000] +09:13:51 [ 32] [ 6] [621354] +09:13:51 [ 35] [ 27] [1808931100007499=1803500826] +09:13:51 [ 37] [ 12] [507904599633] +09:13:51 [ 41] [ 8] [02002200] +09:13:51 [ 42] [ 15] [NATIVE ] +09:13:51 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +09:13:51 [ 49] [ 3] [418] +09:13:51 [ 52] [ 16] [93D65000FB0D00C3] +09:13:51 ============================================================================ +09:13:51 + + +waiting on router queue for slot.... +09:13:51 Sending to : +09:13:51 ============================================================================ +09:13:51 Sending to : +09:13:51 ============================================================================ +09:13:51 ============================================================================ +09:13:51 Slot Id : <350> +09:13:51 Transaction Type : REQUEST +09:13:51 Received From : +09:13:51 ============================================================================ +09:13:51 FNo. Len. Field Value +09:13:51 ============================================================================ +09:13:51 [ 1] [ 4] [0200] +09:13:51 [ 2] [ 16] [1808931100007499] +09:13:51 [ 3] [ 6] [010000] +09:13:51 [ 4] [ 12] [000050000000] +09:13:51 [ 7] [ 10] [0320091347] +09:13:51 [ 11] [ 6] [695293] +09:13:51 [ 12] [ 6] [091347] +09:13:51 [ 13] [ 4] [0320] +09:13:51 [ 15] [ 4] [0320] +09:13:51 [ 18] [ 4] [6011] +09:13:51 [ 22] [ 3] [900] +09:13:51 [ 25] [ 2] [02] +09:13:51 [ 28] [ 9] [D00002000] +09:13:51 [ 32] [ 6] [621354] +09:13:51 [ 35] [ 27] [1808931100007499=1803500826] +09:13:51 [ 37] [ 12] [507904599633] +09:13:51 [ 41] [ 8] [02002200] +09:13:51 [ 42] [ 15] [NATIVE ] +09:13:51 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +09:13:51 [ 49] [ 3] [418] +09:13:51 [ 52] [ 16] [93D65000FB0D00C3] +09:13:51 ============================================================================ +09:13:51 + + +waiting on router queue for slot.... +09:13:51 Sending to : +09:13:51 ============================================================================ +09:13:51 ============================================================================ +09:13:51 Slot Id : <350> +09:13:51 Transaction Type : REQUEST +09:13:51 Received From : +09:13:51 ============================================================================ +09:13:51 FNo. Len. Field Value +09:13:51 ============================================================================ +09:13:51 [ 1] [ 4] [0200] +09:13:51 [ 2] [ 16] [1808931100007499] +09:13:51 [ 3] [ 6] [010000] +09:13:51 [ 4] [ 12] [000050000000] +09:13:51 [ 7] [ 10] [0320091347] +09:13:51 [ 11] [ 6] [695293] +09:13:51 [ 12] [ 6] [091347] +09:13:51 [ 13] [ 4] [0320] +09:13:51 [ 15] [ 4] [0320] +09:13:51 [ 18] [ 4] [6011] +09:13:51 [ 22] [ 3] [900] +09:13:51 [ 25] [ 2] [02] +09:13:51 [ 28] [ 9] [D00002000] +09:13:51 [ 32] [ 6] [621354] +09:13:51 [ 35] [ 27] [1808931100007499=1803500826] +09:13:51 [ 37] [ 12] [507904599633] +09:13:51 [ 41] [ 8] [02002200] +09:13:51 [ 42] [ 15] [NATIVE ] +09:13:51 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +09:13:51 [ 49] [ 3] [418] +09:13:51 [ 52] [ 16] [135716E4F06793A9] +09:13:51 ============================================================================ +09:13:51 + + +waiting on router queue for slot.... +09:13:51 Sending to : <2> +09:13:51 ============================================================================ +09:13:57 ============================================================================ +09:13:57 Slot Id : <319> +09:13:57 Transaction Type : REQUEST +09:13:57 Received From : +09:13:57 ============================================================================ +09:13:57 FNo. Len. Field Value +09:13:57 ============================================================================ +09:13:57 [ 1] [ 4] [0200] +09:13:57 [ 2] [ 16] [6213544000692142] +09:13:57 [ 3] [ 6] [010000] +09:13:57 [ 4] [ 12] [000100000000] +09:13:57 [ 7] [ 10] [0320091148] +09:13:57 [ 11] [ 6] [935006] +09:13:57 [ 12] [ 6] [091148] +09:13:57 [ 13] [ 4] [0320] +09:13:57 [ 15] [ 4] [0320] +09:13:57 [ 18] [ 4] [6011] +09:13:57 [ 19] [ 3] [418] +09:13:57 [ 22] [ 3] [021] +09:13:57 [ 25] [ 2] [01] +09:13:57 [ 28] [ 9] [D00002000] +09:13:57 [ 32] [ 6] [668899] +09:13:57 [ 35] [ 32] [6213544000692142=491212019214299] +09:13:57 [ 37] [ 12] [507901963395] +09:13:57 [ 41] [ 8] [03020019] +09:13:57 [ 42] [ 15] [APT ] +09:13:57 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:13:57 [ 49] [ 3] [418] +09:13:57 [ 52] [ 16] [8D155AD56D6CCC13] +09:13:57 ============================================================================ +09:13:57 + + +waiting on router queue for slot.... +09:13:57 Sending to : +09:13:57 ============================================================================ +09:13:57 Sending to : +09:13:57 ============================================================================ +09:13:57 ============================================================================ +09:13:57 Slot Id : <350> +09:13:57 Transaction Type : RESPONSE +09:13:57 Received From : +09:13:57 ============================================================================ +09:13:57 FNo. Len. Field Value +09:13:57 ============================================================================ +09:13:57 [ 1] [ 4] [0210] +09:13:57 [ 2] [ 16] [1808931100007499] +09:13:57 [ 3] [ 6] [010000] +09:13:57 [ 4] [ 12] [000050000000] +09:13:57 [ 6] [ 12] [000050000000] +09:13:57 [ 7] [ 10] [0320091347] +09:13:57 [ 11] [ 6] [695293] +09:13:57 [ 12] [ 6] [091347] +09:13:57 [ 13] [ 4] [0320] +09:13:57 [ 18] [ 4] [6011] +09:13:57 [ 19] [ 3] [418] +09:13:57 [ 22] [ 3] [021] +09:13:57 [ 32] [ 6] [621354] +09:13:57 [ 35] [ 27] [1808931100007499=1803500826] +09:13:57 [ 37] [ 12] [507904599633] +09:13:57 [ 38] [ 6] [695293] +09:13:57 [ 39] [ 2] [00] +09:13:57 [ 41] [ 8] [02002200] +09:13:57 [ 49] [ 3] [418] +09:13:57 [ 52] [ 16] [135716E4F06793A9] +09:13:57 [ 54] [ 20] [1001418C000044750300] +09:13:57 ============================================================================ +09:13:57 Sending to : +09:13:57 ============================================================================ +09:13:57 + + +waiting on router queue for slot.... +09:13:57 ============================================================================ +09:13:57 Slot Id : <319> +09:13:57 Transaction Type : REQUEST +09:13:57 Received From : +09:13:57 ============================================================================ +09:13:57 FNo. Len. Field Value +09:13:57 ============================================================================ +09:13:57 [ 1] [ 4] [0200] +09:13:57 [ 2] [ 16] [6213544000692142] +09:13:57 [ 3] [ 6] [010000] +09:13:57 [ 4] [ 12] [000100000000] +09:13:57 [ 7] [ 10] [0320091148] +09:13:57 [ 11] [ 6] [935006] +09:13:57 [ 12] [ 6] [091148] +09:13:57 [ 13] [ 4] [0320] +09:13:57 [ 15] [ 4] [0320] +09:13:57 [ 18] [ 4] [6011] +09:13:57 [ 19] [ 3] [418] +09:13:57 [ 22] [ 3] [021] +09:13:57 [ 25] [ 2] [01] +09:13:57 [ 28] [ 9] [D00002000] +09:13:57 [ 32] [ 6] [668899] +09:13:57 [ 35] [ 32] [6213544000692142=491212019214299] +09:13:57 [ 37] [ 12] [507901963395] +09:13:57 [ 41] [ 8] [03020019] +09:13:57 [ 42] [ 15] [APT ] +09:13:57 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:13:57 [ 49] [ 3] [418] +09:13:57 [ 52] [ 16] [8D155AD56D6CCC13] +09:13:57 ============================================================================ +09:13:57 + + +waiting on router queue for slot.... +09:13:57 Sending to : +09:13:57 ============================================================================ +09:13:57 ============================================================================ +09:13:57 Slot Id : <319> +09:13:57 Transaction Type : REQUEST +09:13:57 Received From : +09:13:57 ============================================================================ +09:13:57 FNo. Len. Field Value +09:13:57 ============================================================================ +09:13:57 [ 1] [ 4] [0200] +09:13:57 [ 2] [ 16] [6213544000692142] +09:13:57 [ 3] [ 6] [010000] +09:13:57 [ 4] [ 12] [000100000000] +09:13:57 [ 7] [ 10] [0320091148] +09:13:57 [ 11] [ 6] [935006] +09:13:57 [ 12] [ 6] [091148] +09:13:57 [ 13] [ 4] [0320] +09:13:57 [ 15] [ 4] [0320] +09:13:57 [ 18] [ 4] [6011] +09:13:57 [ 19] [ 3] [418] +09:13:57 [ 22] [ 3] [021] +09:13:57 [ 25] [ 2] [01] +09:13:57 [ 28] [ 9] [D00002000] +09:13:57 [ 32] [ 6] [668899] +09:13:57 [ 35] [ 32] [6213544000692142=491212019214299] +09:13:57 [ 37] [ 12] [507901963395] +09:13:57 [ 41] [ 8] [03020019] +09:13:57 [ 42] [ 15] [APT ] +09:13:57 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:13:57 [ 49] [ 3] [418] +09:13:57 [ 52] [ 16] [EABBDE6A7B0182D6] +09:13:57 ============================================================================ +09:13:57 + + +waiting on router queue for slot.... +09:13:57 Sending to : <0> +09:13:57 ============================================================================ +09:13:57 ============================================================================ +09:13:57 Slot Id : <319> +09:13:57 Transaction Type : RESPONSE +09:13:57 Received From : +09:13:57 ============================================================================ +09:13:57 FNo. Len. Field Value +09:13:57 ============================================================================ +09:13:57 [ 1] [ 4] [0210] +09:13:57 [ 2] [ 16] [6213544000692142] +09:13:57 [ 3] [ 6] [010000] +09:13:57 [ 4] [ 12] [000100000000] +09:13:57 [ 7] [ 10] [0320091148] +09:13:57 [ 11] [ 6] [935006] +09:13:57 [ 12] [ 6] [091148] +09:13:57 [ 13] [ 4] [0320] +09:13:57 [ 15] [ 4] [0320] +09:13:57 [ 18] [ 4] [6011] +09:13:57 [ 19] [ 3] [418] +09:13:57 [ 22] [ 3] [021] +09:13:57 [ 32] [ 6] [668899] +09:13:57 [ 35] [ 32] [6213544000692142=491212019214299] +09:13:57 [ 37] [ 12] [507901963395] +09:13:57 [ 38] [ 6] [091354] +09:13:57 [ 39] [ 2] [75] +09:13:57 [ 41] [ 8] [03020019] +09:13:57 [ 49] [ 3] [418] +09:13:57 ============================================================================ +09:13:57 Sending to : +09:13:57 ============================================================================ +09:13:57 + + +waiting on router queue for slot.... +09:13:59 ============================================================================ +09:13:59 Slot Id : <350> +09:13:59 Transaction Type : RESPONSE +09:13:59 Received From : +09:13:59 ============================================================================ +09:13:59 FNo. Len. Field Value +09:13:59 ============================================================================ +09:13:59 [ 1] [ 4] [0210] +09:13:59 [ 2] [ 16] [1808931100007499] +09:13:59 [ 3] [ 6] [010000] +09:13:59 [ 4] [ 12] [000050000000] +09:13:59 [ 6] [ 12] [000050000000] +09:13:59 [ 7] [ 10] [0320091347] +09:13:59 [ 11] [ 6] [695293] +09:13:59 [ 12] [ 6] [091347] +09:13:59 [ 13] [ 4] [0320] +09:13:59 [ 18] [ 4] [6011] +09:13:59 [ 19] [ 3] [418] +09:13:59 [ 22] [ 3] [021] +09:13:59 [ 32] [ 6] [621354] +09:13:59 [ 35] [ 27] [1808931100007499=1803500826] +09:13:59 [ 37] [ 12] [507904599633] +09:13:59 [ 38] [ 6] [695293] +09:13:59 [ 39] [ 2] [00] +09:13:59 [ 41] [ 8] [02002200] +09:13:59 [ 49] [ 3] [418] +09:13:59 [ 52] [ 16] [135716E4F06793A9] +09:13:59 [ 54] [ 20] [1001418C000044750300] +09:13:59 ============================================================================ +09:13:59 Calculate Source COMM Id = 0 +09:13:59 ============================================================================ +09:13:59 + + +waiting on router queue for slot.... +09:14:00 ============================================================================ +09:14:00 Slot Id : <319> +09:14:00 Transaction Type : RESPONSE +09:14:00 Received From : +09:14:00 ============================================================================ +09:14:00 FNo. Len. Field Value +09:14:00 ============================================================================ +09:14:00 [ 1] [ 4] [0210] +09:14:00 [ 2] [ 16] [6213544000692142] +09:14:00 [ 3] [ 6] [010000] +09:14:00 [ 4] [ 12] [000100000000] +09:14:00 [ 7] [ 10] [0320091148] +09:14:00 [ 11] [ 6] [935006] +09:14:00 [ 12] [ 6] [091148] +09:14:00 [ 13] [ 4] [0320] +09:14:00 [ 15] [ 4] [0320] +09:14:00 [ 18] [ 4] [6011] +09:14:00 [ 19] [ 3] [418] +09:14:00 [ 22] [ 3] [021] +09:14:00 [ 32] [ 6] [668899] +09:14:00 [ 35] [ 32] [6213544000692142=491212019214299] +09:14:00 [ 37] [ 12] [507901963395] +09:14:00 [ 38] [ 6] [091354] +09:14:00 [ 39] [ 2] [75] +09:14:00 [ 41] [ 8] [03020019] +09:14:00 [ 49] [ 3] [418] +09:14:00 ============================================================================ +09:14:00 Calculate Source COMM Id = 4 +09:14:00 ============================================================================ +09:14:00 + + +waiting on router queue for slot.... +09:14:05 ============================================================================ +09:14:05 Slot Id : <332> +09:14:05 Transaction Type : REQUEST +09:14:05 Received From : +09:14:05 ============================================================================ +09:14:05 FNo. Len. Field Value +09:14:05 ============================================================================ +09:14:05 [ 1] [ 4] [0800] +09:14:05 [ 7] [ 10] [0320021313] +09:14:05 [ 11] [ 6] [155575] +09:14:05 [ 70] [ 3] [301] +09:14:05 ============================================================================ +09:14:05 + + +waiting on router queue for slot.... +09:14:05 Sending to : +09:14:05 ============================================================================ +09:14:05 ============================================================================ +09:14:05 Slot Id : <332> +09:14:05 Transaction Type : RESPONSE +09:14:05 Received From : +09:14:05 ============================================================================ +09:14:05 FNo. Len. Field Value +09:14:05 ============================================================================ +09:14:05 [ 1] [ 4] [0810] +09:14:05 [ 7] [ 10] [0320021313] +09:14:05 [ 11] [ 6] [155575] +09:14:05 [ 39] [ 2] [00] +09:14:05 [ 70] [ 3] [301] +09:14:05 ============================================================================ +09:14:05 Calculate Source COMM Id = 2 +09:14:05 ============================================================================ +09:14:05 + + +waiting on router queue for slot.... +09:14:17 ============================================================================ +09:14:17 Slot Id : <346> +09:14:17 Transaction Type : REQUEST +09:14:17 Received From : +09:14:17 ============================================================================ +09:14:17 FNo. Len. Field Value +09:14:17 ============================================================================ +09:14:17 [ 1] [ 4] [0800] +09:14:17 [ 7] [ 10] [0320021325] +09:14:17 [ 11] [ 6] [155576] +09:14:17 [ 70] [ 3] [301] +09:14:17 ============================================================================ +09:14:17 + + +waiting on router queue for slot.... +09:14:17 Sending to : +09:14:17 ============================================================================ +09:14:17 ============================================================================ +09:14:17 Slot Id : <346> +09:14:17 Transaction Type : RESPONSE +09:14:17 Received From : +09:14:17 ============================================================================ +09:14:17 FNo. Len. Field Value +09:14:17 ============================================================================ +09:14:17 [ 1] [ 4] [0810] +09:14:17 [ 7] [ 10] [0320021325] +09:14:17 [ 11] [ 6] [155576] +09:14:17 [ 39] [ 2] [00] +09:14:17 [ 70] [ 3] [301] +09:14:17 ============================================================================ +09:14:17 Calculate Source COMM Id = 2 +09:14:17 ============================================================================ +09:14:17 + + +waiting on router queue for slot.... +09:14:28 ============================================================================ +09:14:28 Slot Id : <356> +09:14:28 Transaction Type : REQUEST +09:14:28 Received From : +09:14:28 ============================================================================ +09:14:28 FNo. Len. Field Value +09:14:28 ============================================================================ +09:14:28 [ 1] [ 4] [0800] +09:14:28 [ 2] [ 5] [02531] +09:14:28 [ 3] [ 6] [579098] +09:14:28 [ 7] [ 10] [0320021428] +09:14:28 [ 11] [ 6] [806948] +09:14:28 [ 15] [ 10] [0320021428] +09:14:28 [ 37] [ 11] [57909806948] +09:14:28 [ 70] [ 3] [001] +09:14:28 ============================================================================ +09:14:28 + + +waiting on router queue for slot.... +09:14:28 ============================================================================ +09:14:28 Slot Id : <356> +09:14:28 Transaction Type : RESPONSE +09:14:28 Received From : +09:14:28 ============================================================================ +09:14:28 FNo. Len. Field Value +09:14:28 ============================================================================ +09:14:28 [ 1] [ 4] [0810] +09:14:28 [ 7] [ 10] [0320021428] +09:14:28 [ 11] [ 6] [806948] +09:14:28 [ 15] [ 4] [0320] +09:14:28 [ 37] [ 12] [57909806948] +09:14:28 [ 39] [ 2] [00] +09:14:28 [ 70] [ 3] [001] +09:14:28 ============================================================================ +09:14:28 Sending to : +09:14:28 ============================================================================ +09:14:28 + + +waiting on router queue for slot.... +09:14:33 ============================================================================ +09:14:33 Slot Id : <357> +09:14:33 Transaction Type : REQUEST +09:14:33 Received From : +09:14:33 ============================================================================ +09:14:33 FNo. Len. Field Value +09:14:33 ============================================================================ +09:14:33 [ 1] [ 4] [0800] +09:14:33 [ 7] [ 10] [0320021341] +09:14:33 [ 11] [ 6] [155577] +09:14:33 [ 70] [ 3] [301] +09:14:33 ============================================================================ +09:14:33 + + +waiting on router queue for slot.... +09:14:33 Sending to : +09:14:33 ============================================================================ +09:14:33 ============================================================================ +09:14:33 Slot Id : <357> +09:14:33 Transaction Type : RESPONSE +09:14:33 Received From : +09:14:33 ============================================================================ +09:14:33 FNo. Len. Field Value +09:14:33 ============================================================================ +09:14:33 [ 1] [ 4] [0810] +09:14:33 [ 7] [ 10] [0320021341] +09:14:33 [ 11] [ 6] [155577] +09:14:33 [ 39] [ 2] [00] +09:14:33 [ 70] [ 3] [301] +09:14:33 ============================================================================ +09:14:33 Calculate Source COMM Id = 2 +09:14:33 ============================================================================ +09:14:33 + + +waiting on router queue for slot.... +09:14:47 ============================================================================ +09:14:47 Slot Id : <330> +09:14:47 Transaction Type : REQUEST +09:14:47 Received From : +09:14:47 ============================================================================ +09:14:47 FNo. Len. Field Value +09:14:47 ============================================================================ +09:14:47 [ 1] [ 4] [0800] +09:14:47 [ 7] [ 10] [0320162636] +09:14:47 [ 11] [ 6] [092636] +09:14:47 [ 37] [ 12] [57909092636] +09:14:47 [ 70] [ 3] [301] +09:14:47 ============================================================================ +09:14:47 + + +waiting on router queue for slot.... +09:14:47 Sending to : +09:14:47 ============================================================================ +09:14:47 ============================================================================ +09:14:47 Slot Id : <330> +09:14:47 Transaction Type : RESPONSE +09:14:47 Received From : +09:14:47 ============================================================================ +09:14:47 FNo. Len. Field Value +09:14:47 ============================================================================ +09:14:47 [ 1] [ 4] [0810] +09:14:47 [ 7] [ 10] [0320162636] +09:14:47 [ 11] [ 6] [092636] +09:14:47 [ 37] [ 12] [579090926360] +09:14:47 [ 39] [ 2] [00] +09:14:47 [ 70] [ 3] [810] +09:14:47 ============================================================================ +09:14:47 Calculate Source COMM Id = 6 +09:14:47 ============================================================================ +09:14:47 + + +waiting on router queue for slot.... +09:14:49 ============================================================================ +09:14:49 Slot Id : <343> +09:14:49 Transaction Type : REQUEST +09:14:49 Received From : +09:14:49 ============================================================================ +09:14:49 FNo. Len. Field Value +09:14:49 ============================================================================ +09:14:49 [ 1] [ 4] [0800] +09:14:49 [ 7] [ 10] [0320021357] +09:14:49 [ 11] [ 6] [155578] +09:14:49 [ 70] [ 3] [301] +09:14:49 ============================================================================ +09:14:49 + + +waiting on router queue for slot.... +09:14:49 Sending to : +09:14:49 ============================================================================ +09:14:49 ============================================================================ +09:14:49 Slot Id : <343> +09:14:49 Transaction Type : RESPONSE +09:14:49 Received From : +09:14:49 ============================================================================ +09:14:49 FNo. Len. Field Value +09:14:49 ============================================================================ +09:14:49 [ 1] [ 4] [0810] +09:14:49 [ 7] [ 10] [0320021357] +09:14:49 [ 11] [ 6] [155578] +09:14:49 [ 39] [ 2] [00] +09:14:49 [ 70] [ 3] [301] +09:14:49 ============================================================================ +09:14:49 Calculate Source COMM Id = 2 +09:14:49 ============================================================================ +09:14:49 + + +waiting on router queue for slot.... +09:14:51 ============================================================================ +09:14:51 Slot Id : <313> +09:14:51 Transaction Type : REQUEST +09:14:51 Received From : +09:14:51 ============================================================================ +09:14:51 FNo. Len. Field Value +09:14:51 ============================================================================ +09:14:51 [ 1] [ 4] [0200] +09:14:51 [ 2] [ 16] [6213545000740435] +09:14:51 [ 3] [ 6] [301000] +09:14:51 [ 4] [ 12] [000000000000] +09:14:51 [ 7] [ 10] [0320091243] +09:14:51 [ 11] [ 6] [935056] +09:14:51 [ 12] [ 6] [091243] +09:14:51 [ 13] [ 4] [0320] +09:14:51 [ 15] [ 4] [0320] +09:14:51 [ 18] [ 4] [6011] +09:14:51 [ 19] [ 3] [418] +09:14:51 [ 22] [ 3] [021] +09:14:51 [ 25] [ 2] [01] +09:14:51 [ 28] [ 9] [D00000000] +09:14:51 [ 32] [ 6] [668899] +09:14:51 [ 35] [ 32] [6213545000740435=491212014043690] +09:14:51 [ 37] [ 12] [507901614433] +09:14:51 [ 41] [ 8] [03001007] +09:14:51 [ 42] [ 15] [APT ] +09:14:51 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:14:51 [ 49] [ 3] [418] +09:14:51 [ 52] [ 16] [EB51296C870BC6B0] +09:14:51 ============================================================================ +09:14:51 + + +waiting on router queue for slot.... +09:14:51 Sending to : +09:14:51 ============================================================================ +09:14:51 Sending to : +09:14:51 ============================================================================ +09:14:52 ============================================================================ +09:14:52 Slot Id : <313> +09:14:52 Transaction Type : REQUEST +09:14:52 Received From : +09:14:52 ============================================================================ +09:14:52 FNo. Len. Field Value +09:14:52 ============================================================================ +09:14:52 [ 1] [ 4] [0200] +09:14:52 [ 2] [ 16] [6213545000740435] +09:14:52 [ 3] [ 6] [301000] +09:14:52 [ 4] [ 12] [000000000000] +09:14:52 [ 7] [ 10] [0320091243] +09:14:52 [ 11] [ 6] [935056] +09:14:52 [ 12] [ 6] [091243] +09:14:52 [ 13] [ 4] [0320] +09:14:52 [ 15] [ 4] [0320] +09:14:52 [ 18] [ 4] [6011] +09:14:52 [ 19] [ 3] [418] +09:14:52 [ 22] [ 3] [021] +09:14:52 [ 25] [ 2] [01] +09:14:52 [ 28] [ 9] [D00000000] +09:14:52 [ 32] [ 6] [668899] +09:14:52 [ 35] [ 32] [6213545000740435=491212014043690] +09:14:52 [ 37] [ 12] [507901614433] +09:14:52 [ 41] [ 8] [03001007] +09:14:52 [ 42] [ 15] [APT ] +09:14:52 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:14:52 [ 49] [ 3] [418] +09:14:52 [ 52] [ 16] [EB51296C870BC6B0] +09:14:52 ============================================================================ +09:14:52 + + +waiting on router queue for slot.... +09:14:52 Sending to : +09:14:52 ============================================================================ +09:14:52 ============================================================================ +09:14:52 Slot Id : <313> +09:14:52 Transaction Type : REQUEST +09:14:52 Received From : +09:14:52 ============================================================================ +09:14:52 FNo. Len. Field Value +09:14:52 ============================================================================ +09:14:52 [ 1] [ 4] [0200] +09:14:52 [ 2] [ 16] [6213545000740435] +09:14:52 [ 3] [ 6] [301000] +09:14:52 [ 4] [ 12] [000000000000] +09:14:52 [ 7] [ 10] [0320091243] +09:14:52 [ 11] [ 6] [935056] +09:14:52 [ 12] [ 6] [091243] +09:14:52 [ 13] [ 4] [0320] +09:14:52 [ 15] [ 4] [0320] +09:14:52 [ 18] [ 4] [6011] +09:14:52 [ 19] [ 3] [418] +09:14:52 [ 22] [ 3] [021] +09:14:52 [ 25] [ 2] [01] +09:14:52 [ 28] [ 9] [D00000000] +09:14:52 [ 32] [ 6] [668899] +09:14:52 [ 35] [ 32] [6213545000740435=491212014043690] +09:14:52 [ 37] [ 12] [507901614433] +09:14:52 [ 41] [ 8] [03001007] +09:14:52 [ 42] [ 15] [APT ] +09:14:52 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:14:52 [ 49] [ 3] [418] +09:14:52 [ 52] [ 16] [1D06F3EDDE644963] +09:14:52 ============================================================================ +09:14:52 + + +waiting on router queue for slot.... +09:14:52 Sending to : <0> +09:14:52 ============================================================================ +09:14:52 ============================================================================ +09:14:52 Slot Id : <313> +09:14:52 Transaction Type : RESPONSE +09:14:52 Received From : +09:14:52 ============================================================================ +09:14:52 FNo. Len. Field Value +09:14:52 ============================================================================ +09:14:52 [ 1] [ 4] [0210] +09:14:52 [ 2] [ 16] [6213545000740435] +09:14:52 [ 3] [ 6] [301000] +09:14:52 [ 4] [ 12] [000000000000] +09:14:52 [ 7] [ 10] [0320091243] +09:14:52 [ 11] [ 6] [935056] +09:14:52 [ 12] [ 6] [091243] +09:14:52 [ 13] [ 4] [0320] +09:14:52 [ 15] [ 4] [0320] +09:14:52 [ 18] [ 4] [6011] +09:14:52 [ 19] [ 3] [418] +09:14:52 [ 32] [ 6] [668899] +09:14:52 [ 35] [ 32] [6213545000740435=491212014043690] +09:14:52 [ 37] [ 12] [507901614433] +09:14:52 [ 38] [ 6] [340652] +09:14:52 [ 39] [ 2] [00] +09:14:52 [ 41] [ 8] [03001007] +09:14:52 [ 49] [ 3] [418] +09:14:52 [ 54] [ 40] [1001418C0005085144491002418C000508514449] +09:14:52 ============================================================================ +09:14:52 Sending to : +09:14:52 ============================================================================ +09:14:52 + + +waiting on router queue for slot.... +09:14:53 ============================================================================ +09:14:53 Slot Id : <366> +09:14:53 Transaction Type : REQUEST +09:14:53 Received From : +09:14:53 ============================================================================ +09:14:53 FNo. Len. Field Value +09:14:53 ============================================================================ +09:14:53 [ 1] [ 4] [0200] +09:14:53 [ 2] [ 16] [6688990040028530] +09:14:53 [ 3] [ 6] [011000] +09:14:53 [ 4] [ 12] [000020000000] +09:14:53 [ 7] [ 10] [0320091449] +09:14:53 [ 11] [ 6] [695528] +09:14:53 [ 12] [ 6] [091449] +09:14:53 [ 13] [ 4] [0320] +09:14:53 [ 15] [ 4] [0320] +09:14:53 [ 18] [ 4] [6011] +09:14:53 [ 22] [ 3] [900] +09:14:53 [ 25] [ 2] [02] +09:14:53 [ 28] [ 9] [D00002000] +09:14:53 [ 32] [ 6] [621354] +09:14:53 [ 35] [ 37] [6688990040028530=97111261287453400000] +09:14:53 [ 37] [ 12] [507902508137] +09:14:53 [ 41] [ 8] [05003300] +09:14:53 [ 42] [ 15] [NATIVE ] +09:14:53 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:14:53 [ 49] [ 3] [418] +09:14:53 [ 52] [ 16] [DAB0E3060319E5F6] +09:14:53 ============================================================================ +09:14:53 + + +waiting on router queue for slot.... +09:14:53 Sending to : +09:14:53 ============================================================================ +09:14:53 Sending to : +09:14:53 ============================================================================ +09:14:53 ============================================================================ +09:14:53 Slot Id : <366> +09:14:53 Transaction Type : REQUEST +09:14:53 Received From : +09:14:53 ============================================================================ +09:14:53 FNo. Len. Field Value +09:14:53 ============================================================================ +09:14:53 [ 1] [ 4] [0200] +09:14:53 [ 2] [ 16] [6688990040028530] +09:14:53 [ 3] [ 6] [011000] +09:14:53 [ 4] [ 12] [000020000000] +09:14:53 [ 7] [ 10] [0320091449] +09:14:53 [ 11] [ 6] [695528] +09:14:53 [ 12] [ 6] [091449] +09:14:53 [ 13] [ 4] [0320] +09:14:53 [ 15] [ 4] [0320] +09:14:53 [ 18] [ 4] [6011] +09:14:53 [ 22] [ 3] [900] +09:14:53 [ 25] [ 2] [02] +09:14:53 [ 28] [ 9] [D00002000] +09:14:53 [ 32] [ 6] [621354] +09:14:53 [ 35] [ 37] [6688990040028530=97111261287453400000] +09:14:53 [ 37] [ 12] [507902508137] +09:14:53 [ 41] [ 8] [05003300] +09:14:53 [ 42] [ 15] [NATIVE ] +09:14:53 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:14:53 [ 49] [ 3] [418] +09:14:53 [ 52] [ 16] [DAB0E3060319E5F6] +09:14:53 ============================================================================ +09:14:53 + + +waiting on router queue for slot.... +09:14:53 Sending to : +09:14:53 ============================================================================ +09:14:53 ============================================================================ +09:14:53 Slot Id : <366> +09:14:53 Transaction Type : REQUEST +09:14:53 Received From : +09:14:53 ============================================================================ +09:14:53 FNo. Len. Field Value +09:14:53 ============================================================================ +09:14:53 [ 1] [ 4] [0200] +09:14:53 [ 2] [ 16] [6688990040028530] +09:14:53 [ 3] [ 6] [011000] +09:14:53 [ 4] [ 12] [000020000000] +09:14:53 [ 7] [ 10] [0320091449] +09:14:53 [ 11] [ 6] [695528] +09:14:53 [ 12] [ 6] [091449] +09:14:53 [ 13] [ 4] [0320] +09:14:53 [ 15] [ 4] [0320] +09:14:53 [ 18] [ 4] [6011] +09:14:53 [ 22] [ 3] [900] +09:14:53 [ 25] [ 2] [02] +09:14:53 [ 28] [ 9] [D00002000] +09:14:53 [ 32] [ 6] [621354] +09:14:53 [ 35] [ 37] [6688990040028530=97111261287453400000] +09:14:53 [ 37] [ 12] [507902508137] +09:14:53 [ 41] [ 8] [05003300] +09:14:53 [ 42] [ 15] [NATIVE ] +09:14:53 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:14:53 [ 49] [ 3] [418] +09:14:53 [ 52] [ 16] [8F3937CE1E6CAA0B] +09:14:53 ============================================================================ +09:14:53 + + +waiting on router queue for slot.... +09:14:53 Sending to : <4> +09:14:53 ============================================================================ +09:14:53 ============================================================================ +09:14:53 Slot Id : <313> +09:14:53 Transaction Type : RESPONSE +09:14:53 Received From : +09:14:53 ============================================================================ +09:14:53 FNo. Len. Field Value +09:14:53 ============================================================================ +09:14:53 [ 1] [ 4] [0210] +09:14:53 [ 2] [ 16] [6213545000740435] +09:14:53 [ 3] [ 6] [301000] +09:14:53 [ 4] [ 12] [000000000000] +09:14:53 [ 7] [ 10] [0320091243] +09:14:53 [ 11] [ 6] [935056] +09:14:53 [ 12] [ 6] [091243] +09:14:53 [ 13] [ 4] [0320] +09:14:53 [ 15] [ 4] [0320] +09:14:53 [ 18] [ 4] [6011] +09:14:53 [ 19] [ 3] [418] +09:14:53 [ 32] [ 6] [668899] +09:14:53 [ 35] [ 32] [6213545000740435=491212014043690] +09:14:53 [ 37] [ 12] [507901614433] +09:14:53 [ 38] [ 6] [340652] +09:14:53 [ 39] [ 2] [00] +09:14:53 [ 41] [ 8] [03001007] +09:14:53 [ 49] [ 3] [418] +09:14:53 [ 54] [ 40] [1001418C0005085144491002418C000508514449] +09:14:53 ============================================================================ +09:14:53 Calculate Source COMM Id = 4 +09:14:53 ============================================================================ +09:14:53 + + +waiting on router queue for slot.... +09:14:55 ============================================================================ +09:14:55 Slot Id : <340> +09:14:55 Transaction Type : REQUEST +09:14:55 Received From : +09:14:55 ============================================================================ +09:14:55 FNo. Len. Field Value +09:14:55 ============================================================================ +09:14:55 [ 1] [ 4] [0200] +09:14:55 [ 2] [ 16] [6213544001633293] +09:14:55 [ 3] [ 6] [302000] +09:14:55 [ 4] [ 12] [000000000000] +09:14:55 [ 7] [ 10] [0320091246] +09:14:55 [ 11] [ 6] [935058] +09:14:55 [ 12] [ 6] [091246] +09:14:55 [ 13] [ 4] [0320] +09:14:55 [ 15] [ 4] [0320] +09:14:55 [ 18] [ 4] [6011] +09:14:55 [ 19] [ 3] [418] +09:14:55 [ 22] [ 3] [021] +09:14:55 [ 25] [ 2] [01] +09:14:55 [ 28] [ 9] [D00000000] +09:14:55 [ 32] [ 6] [668899] +09:14:55 [ 35] [ 32] [6213544001633293=491212013329194] +09:14:55 [ 37] [ 12] [507901822372] +09:14:55 [ 41] [ 8] [03407003] +09:14:55 [ 42] [ 15] [APT ] +09:14:55 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:14:55 [ 49] [ 3] [418] +09:14:55 [ 52] [ 16] [7877A1E09BBD4C9D] +09:14:55 ============================================================================ +09:14:55 + + +waiting on router queue for slot.... +09:14:55 Sending to : +09:14:55 ============================================================================ +09:14:55 Sending to : +09:14:55 ============================================================================ +09:14:55 ============================================================================ +09:14:55 Slot Id : <366> +09:14:55 Transaction Type : RESPONSE +09:14:55 Received From : +09:14:55 ============================================================================ +09:14:55 FNo. Len. Field Value +09:14:55 ============================================================================ +09:14:55 [ 1] [ 4] [0210] +09:14:55 [ 2] [ 16] [6688990040028530] +09:14:55 [ 3] [ 6] [011000] +09:14:55 [ 4] [ 12] [000020000000] +09:14:55 [ 11] [ 6] [695528] +09:14:55 [ 12] [ 6] [091449] +09:14:55 [ 15] [ 4] [0320] +09:14:55 [ 18] [ 4] [6011] +09:14:55 [ 32] [ 6] [621354] +09:14:55 [ 35] [ 37] [6688990040028530=97111261287453400000] +09:14:55 [ 37] [ 12] [507902508137] +09:14:55 [ 38] [ 6] [653538] +09:14:55 [ 39] [ 2] [00] +09:14:55 [ 41] [ 8] [05003300] +09:14:55 [ 49] [ 3] [418] +09:14:55 [ 54] [ 20] [1002418C000082648177] +09:14:55 ============================================================================ +09:14:55 Sending to : +09:14:55 ============================================================================ +09:14:55 + + +waiting on router queue for slot.... +09:14:55 ============================================================================ +09:14:55 Slot Id : <365> +09:14:55 Transaction Type : REQUEST +09:14:55 Received From : +09:14:55 ============================================================================ +09:14:55 FNo. Len. Field Value +09:14:55 ============================================================================ +09:14:55 [ 1] [ 4] [0800] +09:14:55 [ 7] [ 10] [0320022242] +09:14:55 [ 11] [ 6] [091162] +09:14:55 [ 37] [ 12] [57909091162] +09:14:55 [ 70] [ 3] [301] +09:14:55 ============================================================================ +09:14:55 + + +waiting on router queue for slot.... +09:14:55 Sending to : +09:14:55 ============================================================================ +09:14:55 ============================================================================ +09:14:55 Slot Id : <365> +09:14:55 Transaction Type : RESPONSE +09:14:55 Received From : +09:14:55 ============================================================================ +09:14:55 FNo. Len. Field Value +09:14:55 ============================================================================ +09:14:55 [ 1] [ 4] [0810] +09:14:55 [ 7] [ 10] [0320022242] +09:14:55 [ 11] [ 6] [091162] +09:14:55 [ 37] [ 12] [579090911620] +09:14:55 [ 39] [ 2] [00] +09:14:55 [ 70] [ 3] [810] +09:14:55 ============================================================================ +09:14:55 Calculate Source COMM Id = 1 +09:14:55 ============================================================================ +09:14:55 + + +waiting on router queue for slot.... +09:14:55 ============================================================================ +09:14:55 Slot Id : <340> +09:14:55 Transaction Type : REQUEST +09:14:55 Received From : +09:14:55 ============================================================================ +09:14:55 FNo. Len. Field Value +09:14:55 ============================================================================ +09:14:55 [ 1] [ 4] [0200] +09:14:55 [ 2] [ 16] [6213544001633293] +09:14:55 [ 3] [ 6] [302000] +09:14:55 [ 4] [ 12] [000000000000] +09:14:55 [ 7] [ 10] [0320091246] +09:14:55 [ 11] [ 6] [935058] +09:14:55 [ 12] [ 6] [091246] +09:14:55 [ 13] [ 4] [0320] +09:14:55 [ 15] [ 4] [0320] +09:14:55 [ 18] [ 4] [6011] +09:14:55 [ 19] [ 3] [418] +09:14:55 [ 22] [ 3] [021] +09:14:55 [ 25] [ 2] [01] +09:14:55 [ 28] [ 9] [D00000000] +09:14:55 [ 32] [ 6] [668899] +09:14:55 [ 35] [ 32] [6213544001633293=491212013329194] +09:14:55 [ 37] [ 12] [507901822372] +09:14:55 [ 41] [ 8] [03407003] +09:14:55 [ 42] [ 15] [APT ] +09:14:55 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:14:55 [ 49] [ 3] [418] +09:14:55 [ 52] [ 16] [7877A1E09BBD4C9D] +09:14:55 ============================================================================ +09:14:55 + + +waiting on router queue for slot.... +09:14:55 Sending to : +09:14:55 ============================================================================ +09:14:55 ============================================================================ +09:14:55 Slot Id : <340> +09:14:55 Transaction Type : REQUEST +09:14:55 Received From : +09:14:55 ============================================================================ +09:14:55 FNo. Len. Field Value +09:14:55 ============================================================================ +09:14:55 [ 1] [ 4] [0200] +09:14:55 [ 2] [ 16] [6213544001633293] +09:14:55 [ 3] [ 6] [302000] +09:14:55 [ 4] [ 12] [000000000000] +09:14:55 [ 7] [ 10] [0320091246] +09:14:55 [ 11] [ 6] [935058] +09:14:55 [ 12] [ 6] [091246] +09:14:55 [ 13] [ 4] [0320] +09:14:55 [ 15] [ 4] [0320] +09:14:55 [ 18] [ 4] [6011] +09:14:55 [ 19] [ 3] [418] +09:14:55 [ 22] [ 3] [021] +09:14:55 [ 25] [ 2] [01] +09:14:55 [ 28] [ 9] [D00000000] +09:14:55 [ 32] [ 6] [668899] +09:14:55 [ 35] [ 32] [6213544001633293=491212013329194] +09:14:55 [ 37] [ 12] [507901822372] +09:14:55 [ 41] [ 8] [03407003] +09:14:55 [ 42] [ 15] [APT ] +09:14:55 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:14:55 [ 49] [ 3] [418] +09:14:55 [ 52] [ 16] [B3AA82D4E74A4BEA] +09:14:55 ============================================================================ +09:14:55 + + +waiting on router queue for slot.... +09:14:55 Sending to : <0> +09:14:55 ============================================================================ +09:14:56 ============================================================================ +09:14:56 Slot Id : <340> +09:14:56 Transaction Type : RESPONSE +09:14:56 Received From : +09:14:56 ============================================================================ +09:14:56 FNo. Len. Field Value +09:14:56 ============================================================================ +09:14:56 [ 1] [ 4] [0210] +09:14:56 [ 2] [ 16] [6213544001633293] +09:14:56 [ 3] [ 6] [302000] +09:14:56 [ 4] [ 12] [000000000000] +09:14:56 [ 7] [ 10] [0320091246] +09:14:56 [ 11] [ 6] [935058] +09:14:56 [ 12] [ 6] [091246] +09:14:56 [ 13] [ 4] [0320] +09:14:56 [ 15] [ 4] [0320] +09:14:56 [ 18] [ 4] [6011] +09:14:56 [ 19] [ 3] [418] +09:14:56 [ 32] [ 6] [668899] +09:14:56 [ 35] [ 32] [6213544001633293=491212013329194] +09:14:56 [ 37] [ 12] [507901822372] +09:14:56 [ 38] [ 6] [545400] +09:14:56 [ 39] [ 2] [00] +09:14:56 [ 41] [ 8] [03407003] +09:14:56 [ 49] [ 3] [418] +09:14:56 [ 54] [ 40] [2001418C0001085853332002418C000108585333] +09:14:56 ============================================================================ +09:14:56 Sending to : +09:14:56 ============================================================================ +09:14:56 + + +waiting on router queue for slot.... +09:14:56 ============================================================================ +09:14:56 Slot Id : <366> +09:14:56 Transaction Type : RESPONSE +09:14:56 Received From : +09:14:56 ============================================================================ +09:14:56 FNo. Len. Field Value +09:14:56 ============================================================================ +09:14:56 [ 1] [ 4] [0210] +09:14:56 [ 2] [ 16] [6688990040028530] +09:14:56 [ 3] [ 6] [011000] +09:14:56 [ 4] [ 12] [000020000000] +09:14:56 [ 11] [ 6] [695528] +09:14:56 [ 12] [ 6] [091449] +09:14:56 [ 15] [ 4] [0320] +09:14:56 [ 18] [ 4] [6011] +09:14:56 [ 32] [ 6] [621354] +09:14:56 [ 35] [ 37] [6688990040028530=97111261287453400000] +09:14:56 [ 37] [ 12] [507902508137] +09:14:56 [ 38] [ 6] [653538] +09:14:56 [ 39] [ 2] [00] +09:14:56 [ 41] [ 8] [05003300] +09:14:56 [ 49] [ 3] [418] +09:14:56 [ 54] [ 20] [1002418C000082648177] +09:14:56 ============================================================================ +09:14:56 Calculate Source COMM Id = 0 +09:14:56 ============================================================================ +09:14:56 + + +waiting on router queue for slot.... +09:14:58 ============================================================================ +09:14:58 Slot Id : <340> +09:14:58 Transaction Type : RESPONSE +09:14:58 Received From : +09:14:58 ============================================================================ +09:14:58 FNo. Len. Field Value +09:14:58 ============================================================================ +09:14:58 [ 1] [ 4] [0210] +09:14:58 [ 2] [ 16] [6213544001633293] +09:14:58 [ 3] [ 6] [302000] +09:14:58 [ 4] [ 12] [000000000000] +09:14:58 [ 7] [ 10] [0320091246] +09:14:58 [ 11] [ 6] [935058] +09:14:58 [ 12] [ 6] [091246] +09:14:58 [ 13] [ 4] [0320] +09:14:58 [ 15] [ 4] [0320] +09:14:58 [ 18] [ 4] [6011] +09:14:58 [ 19] [ 3] [418] +09:14:58 [ 32] [ 6] [668899] +09:14:58 [ 35] [ 32] [6213544001633293=491212013329194] +09:14:58 [ 37] [ 12] [507901822372] +09:14:58 [ 38] [ 6] [545400] +09:14:58 [ 39] [ 2] [00] +09:14:58 [ 41] [ 8] [03407003] +09:14:58 [ 49] [ 3] [418] +09:14:58 [ 54] [ 40] [2001418C0001085853332002418C000108585333] +09:14:58 ============================================================================ +09:14:58 Calculate Source COMM Id = 4 +09:14:58 ============================================================================ +09:14:58 + + +waiting on router queue for slot.... +09:15:00 ============================================================================ +09:15:00 Slot Id : <371> +09:15:00 Transaction Type : REQUEST +09:15:00 Received From : +09:15:00 ============================================================================ +09:15:00 FNo. Len. Field Value +09:15:00 ============================================================================ +09:15:00 [ 1] [ 4] [0800] +09:15:00 [ 7] [ 10] [0320021408] +09:15:00 [ 11] [ 6] [155579] +09:15:00 [ 70] [ 3] [301] +09:15:00 ============================================================================ +09:15:00 + + +waiting on router queue for slot.... +09:15:00 Sending to : +09:15:00 ============================================================================ +09:15:00 ============================================================================ +09:15:00 Slot Id : <371> +09:15:00 Transaction Type : RESPONSE +09:15:00 Received From : +09:15:00 ============================================================================ +09:15:00 FNo. Len. Field Value +09:15:00 ============================================================================ +09:15:00 [ 1] [ 4] [0810] +09:15:00 [ 7] [ 10] [0320021408] +09:15:00 [ 11] [ 6] [155579] +09:15:00 [ 39] [ 2] [00] +09:15:00 [ 70] [ 3] [301] +09:15:00 ============================================================================ +09:15:00 Calculate Source COMM Id = 2 +09:15:00 ============================================================================ +09:15:00 + + +waiting on router queue for slot.... +09:15:04 ============================================================================ +09:15:04 Slot Id : <378> +09:15:04 Transaction Type : REQUEST +09:15:04 Received From : +09:15:04 ============================================================================ +09:15:04 FNo. Len. Field Value +09:15:04 ============================================================================ +09:15:04 [ 1] [ 4] [0200] +09:15:04 [ 2] [ 16] [6213541000274947] +09:15:04 [ 3] [ 6] [010000] +09:15:04 [ 4] [ 12] [000100000000] +09:15:04 [ 7] [ 10] [0320091255] +09:15:04 [ 11] [ 6] [935063] +09:15:04 [ 12] [ 6] [091255] +09:15:04 [ 13] [ 4] [0320] +09:15:04 [ 15] [ 4] [0320] +09:15:04 [ 18] [ 4] [6011] +09:15:04 [ 19] [ 3] [418] +09:15:04 [ 22] [ 3] [021] +09:15:04 [ 25] [ 2] [01] +09:15:04 [ 28] [ 9] [D00002000] +09:15:04 [ 32] [ 6] [668899] +09:15:04 [ 35] [ 32] [6213541000274947=491212017494158] +09:15:04 [ 37] [ 12] [507901422760] +09:15:04 [ 41] [ 8] [03314001] +09:15:04 [ 42] [ 15] [APT ] +09:15:04 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +09:15:04 [ 49] [ 3] [418] +09:15:04 [ 52] [ 16] [F4D004FF3EA52D88] +09:15:04 ============================================================================ +09:15:04 + + +waiting on router queue for slot.... +09:15:04 Sending to : +09:15:04 ============================================================================ +09:15:04 Sending to : +09:15:04 ============================================================================ +09:15:04 ============================================================================ +09:15:04 Slot Id : <378> +09:15:04 Transaction Type : REQUEST +09:15:04 Received From : +09:15:04 ============================================================================ +09:15:04 FNo. Len. Field Value +09:15:04 ============================================================================ +09:15:04 [ 1] [ 4] [0200] +09:15:04 [ 2] [ 16] [6213541000274947] +09:15:04 [ 3] [ 6] [010000] +09:15:04 [ 4] [ 12] [000100000000] +09:15:04 [ 7] [ 10] [0320091255] +09:15:04 [ 11] [ 6] [935063] +09:15:04 [ 12] [ 6] [091255] +09:15:04 [ 13] [ 4] [0320] +09:15:04 [ 15] [ 4] [0320] +09:15:04 [ 18] [ 4] [6011] +09:15:04 [ 19] [ 3] [418] +09:15:04 [ 22] [ 3] [021] +09:15:04 [ 25] [ 2] [01] +09:15:04 [ 28] [ 9] [D00002000] +09:15:04 [ 32] [ 6] [668899] +09:15:04 [ 35] [ 32] [6213541000274947=491212017494158] +09:15:04 [ 37] [ 12] [507901422760] +09:15:04 [ 41] [ 8] [03314001] +09:15:04 [ 42] [ 15] [APT ] +09:15:04 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +09:15:04 [ 49] [ 3] [418] +09:15:04 [ 52] [ 16] [F4D004FF3EA52D88] +09:15:04 ============================================================================ +09:15:04 + + +waiting on router queue for slot.... +09:15:04 Sending to : +09:15:04 ============================================================================ +09:15:04 ============================================================================ +09:15:04 Slot Id : <378> +09:15:04 Transaction Type : REQUEST +09:15:04 Received From : +09:15:04 ============================================================================ +09:15:04 FNo. Len. Field Value +09:15:04 ============================================================================ +09:15:04 [ 1] [ 4] [0200] +09:15:04 [ 2] [ 16] [6213541000274947] +09:15:04 [ 3] [ 6] [010000] +09:15:04 [ 4] [ 12] [000100000000] +09:15:04 [ 7] [ 10] [0320091255] +09:15:04 [ 11] [ 6] [935063] +09:15:04 [ 12] [ 6] [091255] +09:15:04 [ 13] [ 4] [0320] +09:15:04 [ 15] [ 4] [0320] +09:15:04 [ 18] [ 4] [6011] +09:15:04 [ 19] [ 3] [418] +09:15:04 [ 22] [ 3] [021] +09:15:04 [ 25] [ 2] [01] +09:15:04 [ 28] [ 9] [D00002000] +09:15:04 [ 32] [ 6] [668899] +09:15:04 [ 35] [ 32] [6213541000274947=491212017494158] +09:15:04 [ 37] [ 12] [507901422760] +09:15:04 [ 41] [ 8] [03314001] +09:15:04 [ 42] [ 15] [APT ] +09:15:04 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +09:15:04 [ 49] [ 3] [418] +09:15:04 [ 52] [ 16] [ED7E7EF0D5B6BD37] +09:15:04 ============================================================================ +09:15:04 + + +waiting on router queue for slot.... +09:15:04 Sending to : <0> +09:15:04 ============================================================================ +09:15:05 ============================================================================ +09:15:05 Slot Id : <378> +09:15:05 Transaction Type : RESPONSE +09:15:05 Received From : +09:15:05 ============================================================================ +09:15:05 FNo. Len. Field Value +09:15:05 ============================================================================ +09:15:05 [ 1] [ 4] [0210] +09:15:05 [ 2] [ 16] [6213541000274947] +09:15:05 [ 3] [ 6] [010000] +09:15:05 [ 4] [ 12] [000100000000] +09:15:05 [ 7] [ 10] [0320091255] +09:15:05 [ 11] [ 6] [935063] +09:15:05 [ 12] [ 6] [091255] +09:15:05 [ 13] [ 4] [0320] +09:15:05 [ 15] [ 4] [0320] +09:15:05 [ 18] [ 4] [6011] +09:15:05 [ 19] [ 3] [418] +09:15:05 [ 32] [ 6] [668899] +09:15:05 [ 35] [ 32] [6213541000274947=491212017494158] +09:15:05 [ 37] [ 12] [507901422760] +09:15:05 [ 38] [ 6] [069847] +09:15:05 [ 39] [ 2] [00] +09:15:05 [ 41] [ 8] [03314001] +09:15:05 [ 49] [ 3] [418] +09:15:05 [ 54] [ 40] [0001418C0003378488460002418C000337848846] +09:15:05 ============================================================================ +09:15:05 Sending to : +09:15:05 ============================================================================ +09:15:05 + + +waiting on router queue for slot.... +09:15:07 ============================================================================ +09:15:07 Slot Id : <378> +09:15:07 Transaction Type : RESPONSE +09:15:07 Received From : +09:15:07 ============================================================================ +09:15:07 FNo. Len. Field Value +09:15:07 ============================================================================ +09:15:07 [ 1] [ 4] [0210] +09:15:07 [ 2] [ 16] [6213541000274947] +09:15:07 [ 3] [ 6] [010000] +09:15:07 [ 4] [ 12] [000100000000] +09:15:07 [ 7] [ 10] [0320091255] +09:15:07 [ 11] [ 6] [935063] +09:15:07 [ 12] [ 6] [091255] +09:15:07 [ 13] [ 4] [0320] +09:15:07 [ 15] [ 4] [0320] +09:15:07 [ 18] [ 4] [6011] +09:15:07 [ 19] [ 3] [418] +09:15:07 [ 32] [ 6] [668899] +09:15:07 [ 35] [ 32] [6213541000274947=491212017494158] +09:15:07 [ 37] [ 12] [507901422760] +09:15:07 [ 38] [ 6] [069847] +09:15:07 [ 39] [ 2] [00] +09:15:07 [ 41] [ 8] [03314001] +09:15:07 [ 49] [ 3] [418] +09:15:07 [ 54] [ 40] [0001418C0003378488460002418C000337848846] +09:15:07 ============================================================================ +09:15:07 Calculate Source COMM Id = 4 +09:15:07 ============================================================================ +09:15:07 + + +waiting on router queue for slot.... +09:15:12 ============================================================================ +09:15:12 Slot Id : <324> +09:15:12 Transaction Type : REQUEST +09:15:12 Received From : +09:15:12 ============================================================================ +09:15:12 FNo. Len. Field Value +09:15:12 ============================================================================ +09:15:12 [ 1] [ 4] [0800] +09:15:12 [ 7] [ 10] [0320021420] +09:15:12 [ 11] [ 6] [155580] +09:15:12 [ 70] [ 3] [301] +09:15:12 ============================================================================ +09:15:12 + + +waiting on router queue for slot.... +09:15:12 Sending to : +09:15:12 ============================================================================ +09:15:12 ============================================================================ +09:15:12 Slot Id : <324> +09:15:12 Transaction Type : RESPONSE +09:15:12 Received From : +09:15:12 ============================================================================ +09:15:12 FNo. Len. Field Value +09:15:12 ============================================================================ +09:15:12 [ 1] [ 4] [0810] +09:15:12 [ 7] [ 10] [0320021420] +09:15:12 [ 11] [ 6] [155580] +09:15:12 [ 39] [ 2] [00] +09:15:12 [ 70] [ 3] [301] +09:15:12 ============================================================================ +09:15:12 Calculate Source COMM Id = 2 +09:15:12 ============================================================================ +09:15:12 + + +waiting on router queue for slot.... +09:15:23 ============================================================================ +09:15:23 Slot Id : <373> +09:15:23 Transaction Type : REQUEST +09:15:23 Received From : +09:15:23 ============================================================================ +09:15:23 FNo. Len. Field Value +09:15:23 ============================================================================ +09:15:23 [ 1] [ 4] [0800] +09:15:23 [ 7] [ 10] [0320021431] +09:15:23 [ 11] [ 6] [155581] +09:15:23 [ 70] [ 3] [301] +09:15:23 ============================================================================ +09:15:23 + + +waiting on router queue for slot.... +09:15:23 Sending to : +09:15:23 ============================================================================ +09:15:23 ============================================================================ +09:15:23 Slot Id : <373> +09:15:23 Transaction Type : RESPONSE +09:15:23 Received From : +09:15:23 ============================================================================ +09:15:23 FNo. Len. Field Value +09:15:23 ============================================================================ +09:15:23 [ 1] [ 4] [0810] +09:15:23 [ 7] [ 10] [0320021431] +09:15:23 [ 11] [ 6] [155581] +09:15:23 [ 39] [ 2] [00] +09:15:23 [ 70] [ 3] [301] +09:15:23 ============================================================================ +09:15:23 Calculate Source COMM Id = 2 +09:15:23 ============================================================================ +09:15:23 + + +waiting on router queue for slot.... +09:15:30 ============================================================================ +09:15:30 Slot Id : <353> +09:15:30 Transaction Type : REQUEST +09:15:30 Received From : +09:15:30 ============================================================================ +09:15:30 FNo. Len. Field Value +09:15:30 ============================================================================ +09:15:30 [ 1] [ 4] [0800] +09:15:30 [ 2] [ 5] [02531] +09:15:30 [ 3] [ 6] [579098] +09:15:30 [ 7] [ 10] [0320021530] +09:15:30 [ 11] [ 6] [806949] +09:15:30 [ 15] [ 10] [0320021530] +09:15:30 [ 37] [ 11] [57909806949] +09:15:30 [ 70] [ 3] [001] +09:15:30 ============================================================================ +09:15:30 + + +waiting on router queue for slot.... +09:15:30 ============================================================================ +09:15:30 Slot Id : <353> +09:15:30 Transaction Type : RESPONSE +09:15:30 Received From : +09:15:30 ============================================================================ +09:15:30 FNo. Len. Field Value +09:15:30 ============================================================================ +09:15:30 [ 1] [ 4] [0810] +09:15:30 [ 7] [ 10] [0320021530] +09:15:30 [ 11] [ 6] [806949] +09:15:30 [ 15] [ 4] [0320] +09:15:30 [ 37] [ 12] [57909806949] +09:15:30 [ 39] [ 2] [00] +09:15:30 [ 70] [ 3] [001] +09:15:30 ============================================================================ +09:15:30 Sending to : +09:15:30 ============================================================================ +09:15:30 + + +waiting on router queue for slot.... +09:15:34 ============================================================================ +09:15:34 Slot Id : <382> +09:15:34 Transaction Type : REQUEST +09:15:34 Received From : +09:15:34 ============================================================================ +09:15:34 FNo. Len. Field Value +09:15:34 ============================================================================ +09:15:34 [ 1] [ 4] [0800] +09:15:34 [ 7] [ 10] [0320021442] +09:15:34 [ 11] [ 6] [155582] +09:15:34 [ 70] [ 3] [301] +09:15:34 ============================================================================ +09:15:34 + + +waiting on router queue for slot.... +09:15:34 Sending to : +09:15:34 ============================================================================ +09:15:34 ============================================================================ +09:15:34 Slot Id : <382> +09:15:34 Transaction Type : RESPONSE +09:15:34 Received From : +09:15:34 ============================================================================ +09:15:34 FNo. Len. Field Value +09:15:34 ============================================================================ +09:15:34 [ 1] [ 4] [0810] +09:15:34 [ 7] [ 10] [0320021442] +09:15:34 [ 11] [ 6] [155582] +09:15:34 [ 39] [ 2] [00] +09:15:34 [ 70] [ 3] [301] +09:15:34 ============================================================================ +09:15:34 Calculate Source COMM Id = 2 +09:15:34 ============================================================================ +09:15:34 + + +waiting on router queue for slot.... +09:15:45 ============================================================================ +09:15:45 Slot Id : <355> +09:15:45 Transaction Type : REQUEST +09:15:45 Received From : +09:15:45 ============================================================================ +09:15:45 FNo. Len. Field Value +09:15:45 ============================================================================ +09:15:45 [ 1] [ 4] [0800] +09:15:45 [ 7] [ 10] [0320021453] +09:15:45 [ 11] [ 6] [155583] +09:15:45 [ 70] [ 3] [301] +09:15:45 ============================================================================ +09:15:45 + + +waiting on router queue for slot.... +09:15:45 Sending to : +09:15:45 ============================================================================ +09:15:45 ============================================================================ +09:15:45 Slot Id : <355> +09:15:45 Transaction Type : RESPONSE +09:15:45 Received From : +09:15:45 ============================================================================ +09:15:45 FNo. Len. Field Value +09:15:45 ============================================================================ +09:15:45 [ 1] [ 4] [0810] +09:15:45 [ 7] [ 10] [0320021453] +09:15:45 [ 11] [ 6] [155583] +09:15:45 [ 39] [ 2] [00] +09:15:45 [ 70] [ 3] [301] +09:15:45 ============================================================================ +09:15:45 Calculate Source COMM Id = 2 +09:15:45 ============================================================================ +09:15:45 + + +waiting on router queue for slot.... +09:15:52 ============================================================================ +09:15:52 Slot Id : <363> +09:15:52 Transaction Type : REQUEST +09:15:52 Received From : +09:15:52 ============================================================================ +09:15:52 FNo. Len. Field Value +09:15:52 ============================================================================ +09:15:52 [ 1] [ 4] [0800] +09:15:52 [ 7] [ 10] [0320162741] +09:15:52 [ 11] [ 6] [092741] +09:15:52 [ 37] [ 12] [57909092741] +09:15:52 [ 70] [ 3] [301] +09:15:52 ============================================================================ +09:15:52 + + +waiting on router queue for slot.... +09:15:52 Sending to : +09:15:52 ============================================================================ +09:15:52 ============================================================================ +09:15:52 Slot Id : <363> +09:15:52 Transaction Type : RESPONSE +09:15:52 Received From : +09:15:52 ============================================================================ +09:15:52 FNo. Len. Field Value +09:15:52 ============================================================================ +09:15:52 [ 1] [ 4] [0810] +09:15:52 [ 7] [ 10] [0320162741] +09:15:52 [ 11] [ 6] [092741] +09:15:52 [ 37] [ 12] [579090927410] +09:15:52 [ 39] [ 2] [00] +09:15:52 [ 70] [ 3] [810] +09:15:52 ============================================================================ +09:15:52 Calculate Source COMM Id = 6 +09:15:52 ============================================================================ +09:15:52 + + +waiting on router queue for slot.... +09:15:56 ============================================================================ +09:15:56 Slot Id : <358> +09:15:56 Transaction Type : REQUEST +09:15:56 Received From : +09:15:56 ============================================================================ +09:15:56 FNo. Len. Field Value +09:15:56 ============================================================================ +09:15:56 [ 1] [ 4] [0800] +09:15:56 [ 7] [ 10] [0320021504] +09:15:56 [ 11] [ 6] [155584] +09:15:56 [ 70] [ 3] [301] +09:15:56 ============================================================================ +09:15:56 + + +waiting on router queue for slot.... +09:15:56 Sending to : +09:15:56 ============================================================================ +09:15:56 ============================================================================ +09:15:56 Slot Id : <358> +09:15:56 Transaction Type : RESPONSE +09:15:56 Received From : +09:15:56 ============================================================================ +09:15:56 FNo. Len. Field Value +09:15:56 ============================================================================ +09:15:56 [ 1] [ 4] [0810] +09:15:56 [ 7] [ 10] [0320021504] +09:15:56 [ 11] [ 6] [155584] +09:15:56 [ 39] [ 2] [00] +09:15:56 [ 70] [ 3] [301] +09:15:56 ============================================================================ +09:15:56 Calculate Source COMM Id = 2 +09:15:56 ============================================================================ +09:15:56 + + +waiting on router queue for slot.... +09:16:07 ============================================================================ +09:16:07 Slot Id : <370> +09:16:07 Transaction Type : REQUEST +09:16:07 Received From : +09:16:07 ============================================================================ +09:16:07 FNo. Len. Field Value +09:16:07 ============================================================================ +09:16:07 [ 1] [ 4] [0800] +09:16:07 [ 7] [ 10] [0320021515] +09:16:07 [ 11] [ 6] [155585] +09:16:07 [ 70] [ 3] [301] +09:16:07 ============================================================================ +09:16:07 + + +waiting on router queue for slot.... +09:16:07 Sending to : +09:16:07 ============================================================================ +09:16:07 ============================================================================ +09:16:07 Slot Id : <370> +09:16:07 Transaction Type : RESPONSE +09:16:07 Received From : +09:16:07 ============================================================================ +09:16:07 FNo. Len. Field Value +09:16:07 ============================================================================ +09:16:07 [ 1] [ 4] [0810] +09:16:07 [ 7] [ 10] [0320021515] +09:16:07 [ 11] [ 6] [155585] +09:16:07 [ 39] [ 2] [00] +09:16:07 [ 70] [ 3] [301] +09:16:07 ============================================================================ +09:16:07 Calculate Source COMM Id = 2 +09:16:07 ============================================================================ +09:16:07 + + +waiting on router queue for slot.... +09:16:08 ============================================================================ +09:16:08 Slot Id : <360> +09:16:08 Transaction Type : REQUEST +09:16:08 Received From : +09:16:08 ============================================================================ +09:16:08 FNo. Len. Field Value +09:16:08 ============================================================================ +09:16:08 [ 1] [ 4] [0200] +09:16:08 [ 2] [ 16] [6213545000740435] +09:16:08 [ 3] [ 6] [301000] +09:16:08 [ 4] [ 12] [000000000000] +09:16:08 [ 7] [ 10] [0320091400] +09:16:08 [ 11] [ 6] [935111] +09:16:08 [ 12] [ 6] [091400] +09:16:08 [ 13] [ 4] [0320] +09:16:08 [ 15] [ 4] [0320] +09:16:08 [ 18] [ 4] [6011] +09:16:08 [ 19] [ 3] [418] +09:16:08 [ 22] [ 3] [021] +09:16:08 [ 25] [ 2] [01] +09:16:08 [ 28] [ 9] [D00000000] +09:16:08 [ 32] [ 6] [668899] +09:16:08 [ 35] [ 32] [6213545000740435=491212014043690] +09:16:08 [ 37] [ 12] [507901614435] +09:16:08 [ 41] [ 8] [03001007] +09:16:08 [ 42] [ 15] [APT ] +09:16:08 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:16:08 [ 49] [ 3] [418] +09:16:08 [ 52] [ 16] [EB51296C870BC6B0] +09:16:08 ============================================================================ +09:16:08 + + +waiting on router queue for slot.... +09:16:08 Sending to : +09:16:08 ============================================================================ +09:16:08 Sending to : +09:16:08 ============================================================================ +09:16:09 ============================================================================ +09:16:09 Slot Id : <360> +09:16:09 Transaction Type : REQUEST +09:16:09 Received From : +09:16:09 ============================================================================ +09:16:09 FNo. Len. Field Value +09:16:09 ============================================================================ +09:16:09 [ 1] [ 4] [0200] +09:16:09 [ 2] [ 16] [6213545000740435] +09:16:09 [ 3] [ 6] [301000] +09:16:09 [ 4] [ 12] [000000000000] +09:16:09 [ 7] [ 10] [0320091400] +09:16:09 [ 11] [ 6] [935111] +09:16:09 [ 12] [ 6] [091400] +09:16:09 [ 13] [ 4] [0320] +09:16:09 [ 15] [ 4] [0320] +09:16:09 [ 18] [ 4] [6011] +09:16:09 [ 19] [ 3] [418] +09:16:09 [ 22] [ 3] [021] +09:16:09 [ 25] [ 2] [01] +09:16:09 [ 28] [ 9] [D00000000] +09:16:09 [ 32] [ 6] [668899] +09:16:09 [ 35] [ 32] [6213545000740435=491212014043690] +09:16:09 [ 37] [ 12] [507901614435] +09:16:09 [ 41] [ 8] [03001007] +09:16:09 [ 42] [ 15] [APT ] +09:16:09 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:16:09 [ 49] [ 3] [418] +09:16:09 [ 52] [ 16] [EB51296C870BC6B0] +09:16:09 ============================================================================ +09:16:09 + + +waiting on router queue for slot.... +09:16:09 Sending to : +09:16:09 ============================================================================ +09:16:09 ============================================================================ +09:16:09 Slot Id : <360> +09:16:09 Transaction Type : REQUEST +09:16:09 Received From : +09:16:09 ============================================================================ +09:16:09 FNo. Len. Field Value +09:16:09 ============================================================================ +09:16:09 [ 1] [ 4] [0200] +09:16:09 [ 2] [ 16] [6213545000740435] +09:16:09 [ 3] [ 6] [301000] +09:16:09 [ 4] [ 12] [000000000000] +09:16:09 [ 7] [ 10] [0320091400] +09:16:09 [ 11] [ 6] [935111] +09:16:09 [ 12] [ 6] [091400] +09:16:09 [ 13] [ 4] [0320] +09:16:09 [ 15] [ 4] [0320] +09:16:09 [ 18] [ 4] [6011] +09:16:09 [ 19] [ 3] [418] +09:16:09 [ 22] [ 3] [021] +09:16:09 [ 25] [ 2] [01] +09:16:09 [ 28] [ 9] [D00000000] +09:16:09 [ 32] [ 6] [668899] +09:16:09 [ 35] [ 32] [6213545000740435=491212014043690] +09:16:09 [ 37] [ 12] [507901614435] +09:16:09 [ 41] [ 8] [03001007] +09:16:09 [ 42] [ 15] [APT ] +09:16:09 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:16:09 [ 49] [ 3] [418] +09:16:09 [ 52] [ 16] [1D06F3EDDE644963] +09:16:09 ============================================================================ +09:16:09 + + +waiting on router queue for slot.... +09:16:09 Sending to : <0> +09:16:09 ============================================================================ +09:16:09 ============================================================================ +09:16:09 Slot Id : <360> +09:16:09 Transaction Type : RESPONSE +09:16:09 Received From : +09:16:09 ============================================================================ +09:16:09 FNo. Len. Field Value +09:16:09 ============================================================================ +09:16:09 [ 1] [ 4] [0210] +09:16:09 [ 2] [ 16] [6213545000740435] +09:16:09 [ 3] [ 6] [301000] +09:16:09 [ 4] [ 12] [000000000000] +09:16:09 [ 7] [ 10] [0320091400] +09:16:09 [ 11] [ 6] [935111] +09:16:09 [ 12] [ 6] [091400] +09:16:09 [ 13] [ 4] [0320] +09:16:09 [ 15] [ 4] [0320] +09:16:09 [ 18] [ 4] [6011] +09:16:09 [ 19] [ 3] [418] +09:16:09 [ 32] [ 6] [668899] +09:16:09 [ 35] [ 32] [6213545000740435=491212014043690] +09:16:09 [ 37] [ 12] [507901614435] +09:16:09 [ 38] [ 6] [387571] +09:16:09 [ 39] [ 2] [00] +09:16:09 [ 41] [ 8] [03001007] +09:16:09 [ 49] [ 3] [418] +09:16:09 [ 54] [ 40] [1001418C0005085144491002418C000508514449] +09:16:09 ============================================================================ +09:16:09 Sending to : +09:16:09 ============================================================================ +09:16:09 + + +waiting on router queue for slot.... +09:16:11 ============================================================================ +09:16:11 Slot Id : <360> +09:16:11 Transaction Type : RESPONSE +09:16:11 Received From : +09:16:11 ============================================================================ +09:16:11 FNo. Len. Field Value +09:16:11 ============================================================================ +09:16:11 [ 1] [ 4] [0210] +09:16:11 [ 2] [ 16] [6213545000740435] +09:16:11 [ 3] [ 6] [301000] +09:16:11 [ 4] [ 12] [000000000000] +09:16:11 [ 7] [ 10] [0320091400] +09:16:11 [ 11] [ 6] [935111] +09:16:11 [ 12] [ 6] [091400] +09:16:11 [ 13] [ 4] [0320] +09:16:11 [ 15] [ 4] [0320] +09:16:11 [ 18] [ 4] [6011] +09:16:11 [ 19] [ 3] [418] +09:16:11 [ 32] [ 6] [668899] +09:16:11 [ 35] [ 32] [6213545000740435=491212014043690] +09:16:11 [ 37] [ 12] [507901614435] +09:16:11 [ 38] [ 6] [387571] +09:16:11 [ 39] [ 2] [00] +09:16:11 [ 41] [ 8] [03001007] +09:16:11 [ 49] [ 3] [418] +09:16:11 [ 54] [ 40] [1001418C0005085144491002418C000508514449] +09:16:11 ============================================================================ +09:16:11 Calculate Source COMM Id = 4 +09:16:11 ============================================================================ +09:16:11 + + +waiting on router queue for slot.... +09:16:18 ============================================================================ +09:16:18 Slot Id : <338> +09:16:18 Transaction Type : REQUEST +09:16:18 Received From : +09:16:18 ============================================================================ +09:16:18 FNo. Len. Field Value +09:16:18 ============================================================================ +09:16:18 [ 1] [ 4] [0800] +09:16:18 [ 7] [ 10] [0320021526] +09:16:18 [ 11] [ 6] [155586] +09:16:18 [ 70] [ 3] [301] +09:16:18 ============================================================================ +09:16:18 + + +waiting on router queue for slot.... +09:16:18 Sending to : +09:16:18 ============================================================================ +09:16:18 ============================================================================ +09:16:18 Slot Id : <338> +09:16:18 Transaction Type : RESPONSE +09:16:18 Received From : +09:16:18 ============================================================================ +09:16:18 FNo. Len. Field Value +09:16:18 ============================================================================ +09:16:18 [ 1] [ 4] [0810] +09:16:18 [ 7] [ 10] [0320021526] +09:16:18 [ 11] [ 6] [155586] +09:16:18 [ 39] [ 2] [00] +09:16:18 [ 70] [ 3] [301] +09:16:18 ============================================================================ +09:16:18 Calculate Source COMM Id = 2 +09:16:18 ============================================================================ +09:16:18 + + +waiting on router queue for slot.... +09:16:18 ============================================================================ +09:16:18 Slot Id : <354> +09:16:18 Transaction Type : REQUEST +09:16:18 Received From : +09:16:18 ============================================================================ +09:16:18 FNo. Len. Field Value +09:16:18 ============================================================================ +09:16:18 [ 1] [ 4] [0800] +09:16:18 [ 7] [ 10] [0320091606] +09:16:18 [ 11] [ 6] [096850] +09:16:18 [ 37] [ 12] [507909096850] +09:16:18 [ 70] [ 3] [ ] +09:16:18 ============================================================================ +09:16:18 + + +waiting on router queue for slot.... +09:16:18 Sending to : +09:16:18 ============================================================================ +09:16:18 ============================================================================ +09:16:18 Slot Id : <354> +09:16:18 Transaction Type : RESPONSE +09:16:18 Received From : +09:16:18 ============================================================================ +09:16:18 FNo. Len. Field Value +09:16:18 ============================================================================ +09:16:18 [ 1] [ 4] [0810] +09:16:18 [ 7] [ 10] [0320091606] +09:16:18 [ 11] [ 6] [096850] +09:16:18 [ 37] [ 12] [507909096850] +09:16:18 [ 39] [ 2] [91] +09:16:18 [ 70] [ 3] [ ] +09:16:18 ============================================================================ +09:16:18 Calculate Source COMM Id = 3 +09:16:18 ============================================================================ +09:16:18 + + +waiting on router queue for slot.... +09:16:20 ============================================================================ +09:16:20 Slot Id : <379> +09:16:20 Transaction Type : REQUEST +09:16:20 Received From : +09:16:20 ============================================================================ +09:16:20 FNo. Len. Field Value +09:16:20 ============================================================================ +09:16:20 [ 1] [ 4] [0800] +09:16:20 [ 7] [ 10] [0320021412] +09:16:20 [ 11] [ 6] [004636] +09:16:20 [ 37] [ 12] [57909004636] +09:16:20 [ 70] [ 3] [301] +09:16:20 ============================================================================ +09:16:20 + + +waiting on router queue for slot.... +09:16:20 Sending to : +09:16:20 ============================================================================ +09:16:20 ============================================================================ +09:16:20 Slot Id : <379> +09:16:20 Transaction Type : RESPONSE +09:16:20 Received From : +09:16:20 ============================================================================ +09:16:20 FNo. Len. Field Value +09:16:20 ============================================================================ +09:16:20 [ 1] [ 4] [0810] +09:16:20 [ 7] [ 10] [0320021412] +09:16:20 [ 11] [ 6] [004636] +09:16:20 [ 37] [ 12] [579090046360] +09:16:20 [ 39] [ 2] [00] +09:16:20 [ 70] [ 3] [810] +09:16:20 ============================================================================ +09:16:20 Calculate Source COMM Id = 4 +09:16:20 ============================================================================ +09:16:20 + + +waiting on router queue for slot.... +09:16:27 ============================================================================ +09:16:27 Slot Id : <396> +09:16:27 Transaction Type : REQUEST +09:16:27 Received From : +09:16:27 ============================================================================ +09:16:27 FNo. Len. Field Value +09:16:27 ============================================================================ +09:16:27 [ 1] [ 4] [0200] +09:16:27 [ 2] [ 16] [6213544001633293] +09:16:27 [ 3] [ 6] [010000] +09:16:27 [ 4] [ 12] [000010000000] +09:16:27 [ 7] [ 10] [0320091418] +09:16:27 [ 11] [ 6] [935131] +09:16:27 [ 12] [ 6] [091418] +09:16:27 [ 13] [ 4] [0320] +09:16:27 [ 15] [ 4] [0320] +09:16:27 [ 18] [ 4] [6011] +09:16:27 [ 19] [ 3] [418] +09:16:27 [ 22] [ 3] [021] +09:16:27 [ 25] [ 2] [01] +09:16:27 [ 28] [ 9] [D00002000] +09:16:27 [ 32] [ 6] [668899] +09:16:27 [ 35] [ 32] [6213544001633293=491212013329194] +09:16:27 [ 37] [ 12] [507901822374] +09:16:27 [ 41] [ 8] [03407003] +09:16:27 [ 42] [ 15] [APT ] +09:16:27 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:16:27 [ 49] [ 3] [418] +09:16:27 [ 52] [ 16] [7877A1E09BBD4C9D] +09:16:27 ============================================================================ +09:16:27 + + +waiting on router queue for slot.... +09:16:27 Sending to : +09:16:27 ============================================================================ +09:16:27 Sending to : +09:16:27 ============================================================================ +09:16:27 ============================================================================ +09:16:27 Slot Id : <396> +09:16:27 Transaction Type : REQUEST +09:16:27 Received From : +09:16:27 ============================================================================ +09:16:27 FNo. Len. Field Value +09:16:27 ============================================================================ +09:16:27 [ 1] [ 4] [0200] +09:16:27 [ 2] [ 16] [6213544001633293] +09:16:27 [ 3] [ 6] [010000] +09:16:27 [ 4] [ 12] [000010000000] +09:16:27 [ 7] [ 10] [0320091418] +09:16:27 [ 11] [ 6] [935131] +09:16:27 [ 12] [ 6] [091418] +09:16:27 [ 13] [ 4] [0320] +09:16:27 [ 15] [ 4] [0320] +09:16:27 [ 18] [ 4] [6011] +09:16:27 [ 19] [ 3] [418] +09:16:27 [ 22] [ 3] [021] +09:16:27 [ 25] [ 2] [01] +09:16:27 [ 28] [ 9] [D00002000] +09:16:27 [ 32] [ 6] [668899] +09:16:27 [ 35] [ 32] [6213544001633293=491212013329194] +09:16:27 [ 37] [ 12] [507901822374] +09:16:27 [ 41] [ 8] [03407003] +09:16:27 [ 42] [ 15] [APT ] +09:16:27 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:16:27 [ 49] [ 3] [418] +09:16:27 [ 52] [ 16] [7877A1E09BBD4C9D] +09:16:27 ============================================================================ +09:16:27 + + +waiting on router queue for slot.... +09:16:27 Sending to : +09:16:27 ============================================================================ +09:16:27 ============================================================================ +09:16:27 Slot Id : <396> +09:16:27 Transaction Type : REQUEST +09:16:27 Received From : +09:16:27 ============================================================================ +09:16:27 FNo. Len. Field Value +09:16:27 ============================================================================ +09:16:27 [ 1] [ 4] [0200] +09:16:27 [ 2] [ 16] [6213544001633293] +09:16:27 [ 3] [ 6] [010000] +09:16:27 [ 4] [ 12] [000010000000] +09:16:27 [ 7] [ 10] [0320091418] +09:16:27 [ 11] [ 6] [935131] +09:16:27 [ 12] [ 6] [091418] +09:16:27 [ 13] [ 4] [0320] +09:16:27 [ 15] [ 4] [0320] +09:16:27 [ 18] [ 4] [6011] +09:16:27 [ 19] [ 3] [418] +09:16:27 [ 22] [ 3] [021] +09:16:27 [ 25] [ 2] [01] +09:16:27 [ 28] [ 9] [D00002000] +09:16:27 [ 32] [ 6] [668899] +09:16:27 [ 35] [ 32] [6213544001633293=491212013329194] +09:16:27 [ 37] [ 12] [507901822374] +09:16:27 [ 41] [ 8] [03407003] +09:16:27 [ 42] [ 15] [APT ] +09:16:27 [ 43] [ 40] [ HONGSA STADIUM BAN PHONES] +09:16:27 [ 49] [ 3] [418] +09:16:27 [ 52] [ 16] [B3AA82D4E74A4BEA] +09:16:27 ============================================================================ +09:16:27 + + +waiting on router queue for slot.... +09:16:27 Sending to : <0> +09:16:27 ============================================================================ +09:16:28 ============================================================================ +09:16:28 Slot Id : <396> +09:16:28 Transaction Type : RESPONSE +09:16:28 Received From : +09:16:28 ============================================================================ +09:16:28 FNo. Len. Field Value +09:16:28 ============================================================================ +09:16:28 [ 1] [ 4] [0210] +09:16:28 [ 2] [ 16] [6213544001633293] +09:16:28 [ 3] [ 6] [010000] +09:16:28 [ 4] [ 12] [000010000000] +09:16:28 [ 7] [ 10] [0320091418] +09:16:28 [ 11] [ 6] [935131] +09:16:28 [ 12] [ 6] [091418] +09:16:28 [ 13] [ 4] [0320] +09:16:28 [ 15] [ 4] [0320] +09:16:28 [ 18] [ 4] [6011] +09:16:28 [ 19] [ 3] [418] +09:16:28 [ 32] [ 6] [668899] +09:16:28 [ 35] [ 32] [6213544001633293=491212013329194] +09:16:28 [ 37] [ 12] [507901822374] +09:16:28 [ 38] [ 6] [770912] +09:16:28 [ 39] [ 2] [00] +09:16:28 [ 41] [ 8] [03407003] +09:16:28 [ 49] [ 3] [418] +09:16:28 [ 54] [ 40] [0001418C0000983853330002418C000098385333] +09:16:28 ============================================================================ +09:16:28 Sending to : +09:16:28 ============================================================================ +09:16:28 + + +waiting on router queue for slot.... +09:16:29 ============================================================================ +09:16:29 Slot Id : <369> +09:16:29 Transaction Type : REQUEST +09:16:29 Received From : +09:16:29 ============================================================================ +09:16:29 FNo. Len. Field Value +09:16:29 ============================================================================ +09:16:29 [ 1] [ 4] [0800] +09:16:29 [ 7] [ 10] [0320021537] +09:16:29 [ 11] [ 6] [155587] +09:16:29 [ 70] [ 3] [301] +09:16:29 ============================================================================ +09:16:29 + + +waiting on router queue for slot.... +09:16:29 Sending to : +09:16:29 ============================================================================ +09:16:29 ============================================================================ +09:16:29 Slot Id : <369> +09:16:29 Transaction Type : RESPONSE +09:16:29 Received From : +09:16:29 ============================================================================ +09:16:29 FNo. Len. Field Value +09:16:29 ============================================================================ +09:16:29 [ 1] [ 4] [0810] +09:16:29 [ 7] [ 10] [0320021537] +09:16:29 [ 11] [ 6] [155587] +09:16:29 [ 39] [ 2] [00] +09:16:29 [ 70] [ 3] [301] +09:16:29 ============================================================================ +09:16:29 Calculate Source COMM Id = 2 +09:16:29 ============================================================================ +09:16:29 + + +waiting on router queue for slot.... +09:16:29 ============================================================================ +09:16:29 Slot Id : <396> +09:16:29 Transaction Type : RESPONSE +09:16:29 Received From : +09:16:29 ============================================================================ +09:16:29 FNo. Len. Field Value +09:16:29 ============================================================================ +09:16:29 [ 1] [ 4] [0210] +09:16:29 [ 2] [ 16] [6213544001633293] +09:16:29 [ 3] [ 6] [010000] +09:16:29 [ 4] [ 12] [000010000000] +09:16:29 [ 7] [ 10] [0320091418] +09:16:29 [ 11] [ 6] [935131] +09:16:29 [ 12] [ 6] [091418] +09:16:29 [ 13] [ 4] [0320] +09:16:29 [ 15] [ 4] [0320] +09:16:29 [ 18] [ 4] [6011] +09:16:29 [ 19] [ 3] [418] +09:16:29 [ 32] [ 6] [668899] +09:16:29 [ 35] [ 32] [6213544001633293=491212013329194] +09:16:29 [ 37] [ 12] [507901822374] +09:16:29 [ 38] [ 6] [770912] +09:16:29 [ 39] [ 2] [00] +09:16:29 [ 41] [ 8] [03407003] +09:16:29 [ 49] [ 3] [418] +09:16:29 [ 54] [ 40] [0001418C0000983853330002418C000098385333] +09:16:29 ============================================================================ +09:16:29 Calculate Source COMM Id = 4 +09:16:29 ============================================================================ +09:16:29 + + +waiting on router queue for slot.... +09:16:32 ============================================================================ +09:16:32 Slot Id : <390> +09:16:32 Transaction Type : REQUEST +09:16:32 Received From : +09:16:32 ============================================================================ +09:16:32 FNo. Len. Field Value +09:16:32 ============================================================================ +09:16:32 [ 1] [ 4] [0200] +09:16:32 [ 2] [ 16] [1808931100007499] +09:16:32 [ 3] [ 6] [010000] +09:16:32 [ 4] [ 12] [000050000000] +09:16:32 [ 7] [ 10] [0320091628] +09:16:32 [ 11] [ 6] [695937] +09:16:32 [ 12] [ 6] [091628] +09:16:32 [ 13] [ 4] [0320] +09:16:32 [ 15] [ 4] [0320] +09:16:32 [ 18] [ 4] [6011] +09:16:32 [ 22] [ 3] [900] +09:16:32 [ 25] [ 2] [02] +09:16:32 [ 28] [ 9] [D00002000] +09:16:32 [ 32] [ 6] [621354] +09:16:32 [ 35] [ 27] [1808931100007499=1803500826] +09:16:32 [ 37] [ 12] [507904599635] +09:16:32 [ 41] [ 8] [02002200] +09:16:32 [ 42] [ 15] [NATIVE ] +09:16:32 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +09:16:32 [ 49] [ 3] [418] +09:16:32 [ 52] [ 16] [93D65000FB0D00C3] +09:16:32 ============================================================================ +09:16:32 + + +waiting on router queue for slot.... +09:16:32 Sending to : +09:16:32 ============================================================================ +09:16:32 Sending to : +09:16:32 ============================================================================ +09:16:32 ============================================================================ +09:16:32 Slot Id : <351> +09:16:32 Transaction Type : REQUEST +09:16:32 Received From : +09:16:32 ============================================================================ +09:16:32 FNo. Len. Field Value +09:16:32 ============================================================================ +09:16:32 [ 1] [ 4] [0200] +09:16:32 [ 2] [ 16] [6213541000274947] +09:16:32 [ 3] [ 6] [010000] +09:16:32 [ 4] [ 12] [000100000000] +09:16:32 [ 7] [ 10] [0320091423] +09:16:32 [ 11] [ 6] [935135] +09:16:32 [ 12] [ 6] [091423] +09:16:32 [ 13] [ 4] [0320] +09:16:32 [ 15] [ 4] [0320] +09:16:32 [ 18] [ 4] [6011] +09:16:32 [ 19] [ 3] [418] +09:16:32 [ 22] [ 3] [021] +09:16:32 [ 25] [ 2] [01] +09:16:32 [ 28] [ 9] [D00002000] +09:16:32 [ 32] [ 6] [668899] +09:16:32 [ 35] [ 32] [6213541000274947=491212017494158] +09:16:32 [ 37] [ 12] [507901422762] +09:16:32 [ 41] [ 8] [03314001] +09:16:32 [ 42] [ 15] [APT ] +09:16:32 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +09:16:32 [ 49] [ 3] [418] +09:16:32 [ 52] [ 16] [F4D004FF3EA52D88] +09:16:32 ============================================================================ +09:16:32 + + +waiting on router queue for slot.... +09:16:32 Sending to : +09:16:32 ============================================================================ +09:16:32 Sending to : +09:16:32 ============================================================================ +09:16:32 ============================================================================ +09:16:32 Slot Id : <390> +09:16:32 Transaction Type : REQUEST +09:16:32 Received From : +09:16:32 ============================================================================ +09:16:32 FNo. Len. Field Value +09:16:32 ============================================================================ +09:16:32 [ 1] [ 4] [0200] +09:16:32 [ 2] [ 16] [1808931100007499] +09:16:32 [ 3] [ 6] [010000] +09:16:32 [ 4] [ 12] [000050000000] +09:16:32 [ 7] [ 10] [0320091628] +09:16:32 [ 11] [ 6] [695937] +09:16:32 [ 12] [ 6] [091628] +09:16:32 [ 13] [ 4] [0320] +09:16:32 [ 15] [ 4] [0320] +09:16:32 [ 18] [ 4] [6011] +09:16:32 [ 22] [ 3] [900] +09:16:32 [ 25] [ 2] [02] +09:16:32 [ 28] [ 9] [D00002000] +09:16:32 [ 32] [ 6] [621354] +09:16:32 [ 35] [ 27] [1808931100007499=1803500826] +09:16:32 [ 37] [ 12] [507904599635] +09:16:32 [ 41] [ 8] [02002200] +09:16:32 [ 42] [ 15] [NATIVE ] +09:16:32 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +09:16:32 [ 49] [ 3] [418] +09:16:32 [ 52] [ 16] [93D65000FB0D00C3] +09:16:32 ============================================================================ +09:16:32 + + +waiting on router queue for slot.... +09:16:32 Sending to : +09:16:32 ============================================================================ +09:16:32 ============================================================================ +09:16:32 Slot Id : <390> +09:16:32 Transaction Type : REQUEST +09:16:32 Received From : +09:16:32 ============================================================================ +09:16:32 FNo. Len. Field Value +09:16:32 ============================================================================ +09:16:32 [ 1] [ 4] [0200] +09:16:32 [ 2] [ 16] [1808931100007499] +09:16:32 [ 3] [ 6] [010000] +09:16:32 [ 4] [ 12] [000050000000] +09:16:32 [ 7] [ 10] [0320091628] +09:16:32 [ 11] [ 6] [695937] +09:16:32 [ 12] [ 6] [091628] +09:16:32 [ 13] [ 4] [0320] +09:16:32 [ 15] [ 4] [0320] +09:16:32 [ 18] [ 4] [6011] +09:16:32 [ 22] [ 3] [900] +09:16:32 [ 25] [ 2] [02] +09:16:32 [ 28] [ 9] [D00002000] +09:16:32 [ 32] [ 6] [621354] +09:16:32 [ 35] [ 27] [1808931100007499=1803500826] +09:16:32 [ 37] [ 12] [507904599635] +09:16:32 [ 41] [ 8] [02002200] +09:16:32 [ 42] [ 15] [NATIVE ] +09:16:32 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +09:16:32 [ 49] [ 3] [418] +09:16:32 [ 52] [ 16] [135716E4F06793A9] +09:16:32 ============================================================================ +09:16:32 + + +waiting on router queue for slot.... +09:16:32 Sending to : <2> +09:16:32 ============================================================================ +09:16:32 ============================================================================ +09:16:32 Slot Id : <351> +09:16:32 Transaction Type : REQUEST +09:16:32 Received From : +09:16:32 ============================================================================ +09:16:32 FNo. Len. Field Value +09:16:32 ============================================================================ +09:16:32 [ 1] [ 4] [0200] +09:16:32 [ 2] [ 16] [6213541000274947] +09:16:32 [ 3] [ 6] [010000] +09:16:32 [ 4] [ 12] [000100000000] +09:16:32 [ 7] [ 10] [0320091423] +09:16:32 [ 11] [ 6] [935135] +09:16:32 [ 12] [ 6] [091423] +09:16:32 [ 13] [ 4] [0320] +09:16:32 [ 15] [ 4] [0320] +09:16:32 [ 18] [ 4] [6011] +09:16:32 [ 19] [ 3] [418] +09:16:32 [ 22] [ 3] [021] +09:16:32 [ 25] [ 2] [01] +09:16:32 [ 28] [ 9] [D00002000] +09:16:32 [ 32] [ 6] [668899] +09:16:32 [ 35] [ 32] [6213541000274947=491212017494158] +09:16:32 [ 37] [ 12] [507901422762] +09:16:32 [ 41] [ 8] [03314001] +09:16:32 [ 42] [ 15] [APT ] +09:16:32 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +09:16:32 [ 49] [ 3] [418] +09:16:32 [ 52] [ 16] [F4D004FF3EA52D88] +09:16:32 ============================================================================ +09:16:32 + + +waiting on router queue for slot.... +09:16:32 Sending to : +09:16:32 ============================================================================ +09:16:32 ============================================================================ +09:16:32 Slot Id : <351> +09:16:32 Transaction Type : REQUEST +09:16:32 Received From : +09:16:32 ============================================================================ +09:16:32 FNo. Len. Field Value +09:16:32 ============================================================================ +09:16:32 [ 1] [ 4] [0200] +09:16:32 [ 2] [ 16] [6213541000274947] +09:16:32 [ 3] [ 6] [010000] +09:16:32 [ 4] [ 12] [000100000000] +09:16:32 [ 7] [ 10] [0320091423] +09:16:32 [ 11] [ 6] [935135] +09:16:32 [ 12] [ 6] [091423] +09:16:32 [ 13] [ 4] [0320] +09:16:32 [ 15] [ 4] [0320] +09:16:32 [ 18] [ 4] [6011] +09:16:32 [ 19] [ 3] [418] +09:16:32 [ 22] [ 3] [021] +09:16:32 [ 25] [ 2] [01] +09:16:32 [ 28] [ 9] [D00002000] +09:16:32 [ 32] [ 6] [668899] +09:16:32 [ 35] [ 32] [6213541000274947=491212017494158] +09:16:32 [ 37] [ 12] [507901422762] +09:16:32 [ 41] [ 8] [03314001] +09:16:32 [ 42] [ 15] [APT ] +09:16:32 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +09:16:32 [ 49] [ 3] [418] +09:16:32 [ 52] [ 16] [ED7E7EF0D5B6BD37] +09:16:32 ============================================================================ +09:16:32 + + +waiting on router queue for slot.... +09:16:32 Sending to : <0> +09:16:32 ============================================================================ +09:16:32 ============================================================================ +09:16:32 Slot Id : <389> +09:16:32 Transaction Type : REQUEST +09:16:32 Received From : +09:16:32 ============================================================================ +09:16:32 FNo. Len. Field Value +09:16:32 ============================================================================ +09:16:32 [ 1] [ 4] [0800] +09:16:32 [ 2] [ 5] [02531] +09:16:32 [ 3] [ 6] [579098] +09:16:32 [ 7] [ 10] [0320021632] +09:16:32 [ 11] [ 6] [806950] +09:16:32 [ 15] [ 10] [0320021632] +09:16:32 [ 37] [ 11] [57909806950] +09:16:32 [ 70] [ 3] [001] +09:16:32 ============================================================================ +09:16:32 + + +waiting on router queue for slot.... +09:16:32 ============================================================================ +09:16:32 Slot Id : <389> +09:16:32 Transaction Type : RESPONSE +09:16:32 Received From : +09:16:32 ============================================================================ +09:16:32 FNo. Len. Field Value +09:16:32 ============================================================================ +09:16:32 [ 1] [ 4] [0810] +09:16:32 [ 7] [ 10] [0320021632] +09:16:32 [ 11] [ 6] [806950] +09:16:32 [ 15] [ 4] [0320] +09:16:32 [ 37] [ 12] [57909806950] +09:16:32 [ 39] [ 2] [00] +09:16:32 [ 70] [ 3] [001] +09:16:32 ============================================================================ +09:16:32 Sending to : +09:16:32 ============================================================================ +09:16:32 + + +waiting on router queue for slot.... +09:16:33 ============================================================================ +09:16:33 Slot Id : <351> +09:16:33 Transaction Type : RESPONSE +09:16:33 Received From : +09:16:33 ============================================================================ +09:16:33 FNo. Len. Field Value +09:16:33 ============================================================================ +09:16:33 [ 1] [ 4] [0210] +09:16:33 [ 2] [ 16] [6213541000274947] +09:16:33 [ 3] [ 6] [010000] +09:16:33 [ 4] [ 12] [000100000000] +09:16:33 [ 7] [ 10] [0320091423] +09:16:33 [ 11] [ 6] [935135] +09:16:33 [ 12] [ 6] [091423] +09:16:33 [ 13] [ 4] [0320] +09:16:33 [ 15] [ 4] [0320] +09:16:33 [ 18] [ 4] [6011] +09:16:33 [ 19] [ 3] [418] +09:16:33 [ 32] [ 6] [668899] +09:16:33 [ 35] [ 32] [6213541000274947=491212017494158] +09:16:33 [ 37] [ 12] [507901422762] +09:16:33 [ 38] [ 6] [751450] +09:16:33 [ 39] [ 2] [00] +09:16:33 [ 41] [ 8] [03314001] +09:16:33 [ 49] [ 3] [418] +09:16:33 [ 54] [ 40] [0001418C0002376488460002418C000237648846] +09:16:33 ============================================================================ +09:16:33 Sending to : +09:16:33 ============================================================================ +09:16:33 + + +waiting on router queue for slot.... +09:16:34 ============================================================================ +09:16:34 Slot Id : <351> +09:16:34 Transaction Type : RESPONSE +09:16:34 Received From : +09:16:34 ============================================================================ +09:16:34 FNo. Len. Field Value +09:16:34 ============================================================================ +09:16:34 [ 1] [ 4] [0210] +09:16:34 [ 2] [ 16] [6213541000274947] +09:16:34 [ 3] [ 6] [010000] +09:16:34 [ 4] [ 12] [000100000000] +09:16:34 [ 7] [ 10] [0320091423] +09:16:34 [ 11] [ 6] [935135] +09:16:34 [ 12] [ 6] [091423] +09:16:34 [ 13] [ 4] [0320] +09:16:34 [ 15] [ 4] [0320] +09:16:34 [ 18] [ 4] [6011] +09:16:34 [ 19] [ 3] [418] +09:16:34 [ 32] [ 6] [668899] +09:16:34 [ 35] [ 32] [6213541000274947=491212017494158] +09:16:34 [ 37] [ 12] [507901422762] +09:16:34 [ 38] [ 6] [751450] +09:16:34 [ 39] [ 2] [00] +09:16:34 [ 41] [ 8] [03314001] +09:16:34 [ 49] [ 3] [418] +09:16:34 [ 54] [ 40] [0001418C0002376488460002418C000237648846] +09:16:34 ============================================================================ +09:16:34 Calculate Source COMM Id = 4 +09:16:34 ============================================================================ +09:16:34 + + +waiting on router queue for slot.... +09:16:36 ============================================================================ +09:16:36 Slot Id : <390> +09:16:36 Transaction Type : RESPONSE +09:16:36 Received From : +09:16:36 ============================================================================ +09:16:36 FNo. Len. Field Value +09:16:36 ============================================================================ +09:16:36 [ 1] [ 4] [0210] +09:16:36 [ 2] [ 16] [1808931100007499] +09:16:36 [ 3] [ 6] [010000] +09:16:36 [ 4] [ 12] [000050000000] +09:16:36 [ 6] [ 12] [000050000000] +09:16:36 [ 7] [ 10] [0320091628] +09:16:36 [ 11] [ 6] [695937] +09:16:36 [ 12] [ 6] [091628] +09:16:36 [ 13] [ 4] [0320] +09:16:36 [ 18] [ 4] [6011] +09:16:36 [ 19] [ 3] [418] +09:16:36 [ 22] [ 3] [021] +09:16:36 [ 32] [ 6] [621354] +09:16:36 [ 35] [ 27] [1808931100007499=1803500826] +09:16:36 [ 37] [ 12] [507904599635] +09:16:36 [ 38] [ 6] [695937] +09:16:36 [ 39] [ 2] [51] +09:16:36 [ 41] [ 8] [02002200] +09:16:36 [ 49] [ 3] [418] +09:16:36 [ 52] [ 16] [135716E4F06793A9] +09:16:36 ============================================================================ +09:16:36 Sending to : +09:16:36 ============================================================================ +09:16:36 + + +waiting on router queue for slot.... +09:16:37 ============================================================================ +09:16:37 Slot Id : <390> +09:16:37 Transaction Type : RESPONSE +09:16:37 Received From : +09:16:37 ============================================================================ +09:16:37 FNo. Len. Field Value +09:16:37 ============================================================================ +09:16:37 [ 1] [ 4] [0210] +09:16:37 [ 2] [ 16] [1808931100007499] +09:16:37 [ 3] [ 6] [010000] +09:16:37 [ 4] [ 12] [000050000000] +09:16:37 [ 6] [ 12] [000050000000] +09:16:37 [ 7] [ 10] [0320091628] +09:16:37 [ 11] [ 6] [695937] +09:16:37 [ 12] [ 6] [091628] +09:16:37 [ 13] [ 4] [0320] +09:16:37 [ 18] [ 4] [6011] +09:16:37 [ 19] [ 3] [418] +09:16:37 [ 22] [ 3] [021] +09:16:37 [ 32] [ 6] [621354] +09:16:37 [ 35] [ 27] [1808931100007499=1803500826] +09:16:37 [ 37] [ 12] [507904599635] +09:16:37 [ 38] [ 6] [695937] +09:16:37 [ 39] [ 2] [51] +09:16:37 [ 41] [ 8] [02002200] +09:16:37 [ 49] [ 3] [418] +09:16:37 [ 52] [ 16] [135716E4F06793A9] +09:16:37 ============================================================================ +09:16:37 Calculate Source COMM Id = 0 +09:16:37 ============================================================================ +09:16:37 + + +waiting on router queue for slot.... +09:16:45 ============================================================================ +09:16:45 Slot Id : <359> +09:16:45 Transaction Type : REQUEST +09:16:45 Received From : +09:16:45 ============================================================================ +09:16:45 FNo. Len. Field Value +09:16:45 ============================================================================ +09:16:45 [ 1] [ 4] [0800] +09:16:45 [ 7] [ 10] [0320021553] +09:16:45 [ 11] [ 6] [155588] +09:16:45 [ 70] [ 3] [301] +09:16:45 ============================================================================ +09:16:45 + + +waiting on router queue for slot.... +09:16:45 Sending to : +09:16:45 ============================================================================ +09:16:45 ============================================================================ +09:16:45 Slot Id : <359> +09:16:45 Transaction Type : RESPONSE +09:16:45 Received From : +09:16:45 ============================================================================ +09:16:45 FNo. Len. Field Value +09:16:45 ============================================================================ +09:16:45 [ 1] [ 4] [0810] +09:16:45 [ 7] [ 10] [0320021553] +09:16:45 [ 11] [ 6] [155588] +09:16:45 [ 39] [ 2] [00] +09:16:45 [ 70] [ 3] [301] +09:16:45 ============================================================================ +09:16:45 Calculate Source COMM Id = 2 +09:16:45 ============================================================================ +09:16:45 + + +waiting on router queue for slot.... +09:16:55 ============================================================================ +09:16:55 Slot Id : <376> +09:16:55 Transaction Type : REQUEST +09:16:55 Received From : +09:16:55 ============================================================================ +09:16:55 FNo. Len. Field Value +09:16:55 ============================================================================ +09:16:55 [ 1] [ 4] [0800] +09:16:55 [ 7] [ 10] [0320021603] +09:16:55 [ 11] [ 6] [155589] +09:16:55 [ 70] [ 3] [301] +09:16:55 ============================================================================ +09:16:55 + + +waiting on router queue for slot.... +09:16:55 Sending to : +09:16:55 ============================================================================ +09:16:55 ============================================================================ +09:16:55 Slot Id : <376> +09:16:55 Transaction Type : RESPONSE +09:16:55 Received From : +09:16:55 ============================================================================ +09:16:55 FNo. Len. Field Value +09:16:55 ============================================================================ +09:16:55 [ 1] [ 4] [0810] +09:16:55 [ 7] [ 10] [0320021603] +09:16:55 [ 11] [ 6] [155589] +09:16:55 [ 39] [ 2] [00] +09:16:55 [ 70] [ 3] [301] +09:16:55 ============================================================================ +09:16:55 Calculate Source COMM Id = 2 +09:16:55 ============================================================================ +09:16:55 + + +waiting on router queue for slot.... +09:16:57 ============================================================================ +09:16:57 Slot Id : <374> +09:16:57 Transaction Type : REQUEST +09:16:57 Received From : +09:16:57 ============================================================================ +09:16:57 FNo. Len. Field Value +09:16:57 ============================================================================ +09:16:57 [ 1] [ 4] [0800] +09:16:57 [ 7] [ 10] [0320162846] +09:16:57 [ 11] [ 6] [092846] +09:16:57 [ 37] [ 12] [57909092846] +09:16:57 [ 70] [ 3] [301] +09:16:57 ============================================================================ +09:16:57 + + +waiting on router queue for slot.... +09:16:57 Sending to : +09:16:57 ============================================================================ +09:16:57 ============================================================================ +09:16:57 Slot Id : <374> +09:16:57 Transaction Type : RESPONSE +09:16:57 Received From : +09:16:57 ============================================================================ +09:16:57 FNo. Len. Field Value +09:16:57 ============================================================================ +09:16:57 [ 1] [ 4] [0810] +09:16:57 [ 7] [ 10] [0320162846] +09:16:57 [ 11] [ 6] [092846] +09:16:57 [ 37] [ 12] [579090928460] +09:16:57 [ 39] [ 2] [00] +09:16:57 [ 70] [ 3] [810] +09:16:57 ============================================================================ +09:16:57 Calculate Source COMM Id = 6 +09:16:57 ============================================================================ +09:16:57 + + +waiting on router queue for slot.... +09:17:06 ============================================================================ +09:17:06 Slot Id : <361> +09:17:06 Transaction Type : REQUEST +09:17:06 Received From : +09:17:06 ============================================================================ +09:17:06 FNo. Len. Field Value +09:17:06 ============================================================================ +09:17:06 [ 1] [ 4] [0800] +09:17:06 [ 7] [ 10] [0320021702] +09:17:06 [ 11] [ 6] [058503] +09:17:06 [ 37] [ 12] [507909058503] +09:17:06 [ 70] [ 3] [001] +09:17:06 ============================================================================ +09:17:06 + + +waiting on router queue for slot.... +09:17:06 Sending to : +09:17:06 ============================================================================ +09:17:06 ============================================================================ +09:17:06 Slot Id : <361> +09:17:06 Transaction Type : RESPONSE +09:17:06 Received From : +09:17:06 ============================================================================ +09:17:06 FNo. Len. Field Value +09:17:06 ============================================================================ +09:17:06 [ 1] [ 4] [0810] +09:17:06 [ 7] [ 10] [0320021702] +09:17:06 [ 11] [ 6] [058503] +09:17:06 [ 37] [ 12] [507909058503] +09:17:06 [ 39] [ 2] [00] +09:17:06 [ 70] [ 3] [001] +09:17:06 ============================================================================ +09:17:06 Calculate Source COMM Id = 0 +09:17:06 ============================================================================ +09:17:06 + + +waiting on router queue for slot.... +09:17:06 ============================================================================ +09:17:06 Slot Id : <395> +09:17:06 Transaction Type : REQUEST +09:17:06 Received From : +09:17:06 ============================================================================ +09:17:06 FNo. Len. Field Value +09:17:06 ============================================================================ +09:17:06 [ 1] [ 4] [0800] +09:17:06 [ 7] [ 10] [0320021614] +09:17:06 [ 11] [ 6] [155590] +09:17:06 [ 70] [ 3] [301] +09:17:06 ============================================================================ +09:17:06 + + +waiting on router queue for slot.... +09:17:06 Sending to : +09:17:06 ============================================================================ +09:17:06 ============================================================================ +09:17:06 Slot Id : <395> +09:17:06 Transaction Type : RESPONSE +09:17:06 Received From : +09:17:06 ============================================================================ +09:17:06 FNo. Len. Field Value +09:17:06 ============================================================================ +09:17:06 [ 1] [ 4] [0810] +09:17:06 [ 7] [ 10] [0320021614] +09:17:06 [ 11] [ 6] [155590] +09:17:06 [ 39] [ 2] [00] +09:17:06 [ 70] [ 3] [301] +09:17:06 ============================================================================ +09:17:06 Calculate Source COMM Id = 2 +09:17:06 ============================================================================ +09:17:06 + + +waiting on router queue for slot.... +09:17:08 ============================================================================ +09:17:08 Slot Id : <410> +09:17:08 Transaction Type : REQUEST +09:17:08 Received From : +09:17:08 ============================================================================ +09:17:08 FNo. Len. Field Value +09:17:08 ============================================================================ +09:17:08 [ 1] [ 4] [0200] +09:17:08 [ 2] [ 16] [6213545000627228] +09:17:08 [ 3] [ 6] [010000] +09:17:08 [ 4] [ 12] [000100000000] +09:17:08 [ 7] [ 10] [0320021616] +09:17:08 [ 11] [ 6] [267454] +09:17:08 [ 12] [ 6] [091616] +09:17:08 [ 13] [ 4] [0320] +09:17:08 [ 14] [ 4] [4912] +09:17:08 [ 15] [ 4] [0320] +09:17:08 [ 18] [ 4] [6011] +09:17:08 [ 19] [ 3] [418] +09:17:08 [ 22] [ 3] [021] +09:17:08 [ 25] [ 2] [01] +09:17:08 [ 28] [ 9] [D00002000] +09:17:08 [ 32] [ 6] [180893] +09:17:08 [ 35] [ 32] [6213545000627228=491212012722655] +09:17:08 [ 37] [ 12] [507902267454] +09:17:08 [ 41] [ 8] [0531VTHH] +09:17:08 [ 42] [ 15] [999999 ] +09:17:08 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:17:08 [ 49] [ 3] [418] +09:17:08 [ 52] [ 16] [0AAA2B1B06EE06C0] +09:17:08 ============================================================================ +09:17:08 + + +waiting on router queue for slot.... +09:17:08 Sending to : +09:17:08 ============================================================================ +09:17:08 Sending to : +09:17:08 ============================================================================ +09:17:09 ============================================================================ +09:17:09 Slot Id : <410> +09:17:09 Transaction Type : REQUEST +09:17:09 Received From : +09:17:09 ============================================================================ +09:17:09 FNo. Len. Field Value +09:17:09 ============================================================================ +09:17:09 [ 1] [ 4] [0200] +09:17:09 [ 2] [ 16] [6213545000627228] +09:17:09 [ 3] [ 6] [010000] +09:17:09 [ 4] [ 12] [000100000000] +09:17:09 [ 7] [ 10] [0320021616] +09:17:09 [ 11] [ 6] [267454] +09:17:09 [ 12] [ 6] [091616] +09:17:09 [ 13] [ 4] [0320] +09:17:09 [ 14] [ 4] [4912] +09:17:09 [ 15] [ 4] [0320] +09:17:09 [ 18] [ 4] [6011] +09:17:09 [ 19] [ 3] [418] +09:17:09 [ 22] [ 3] [021] +09:17:09 [ 25] [ 2] [01] +09:17:09 [ 28] [ 9] [D00002000] +09:17:09 [ 32] [ 6] [180893] +09:17:09 [ 35] [ 32] [6213545000627228=491212012722655] +09:17:09 [ 37] [ 12] [507902267454] +09:17:09 [ 41] [ 8] [0531VTHH] +09:17:09 [ 42] [ 15] [999999 ] +09:17:09 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:17:09 [ 49] [ 3] [418] +09:17:09 [ 52] [ 16] [0AAA2B1B06EE06C0] +09:17:09 ============================================================================ +09:17:09 + + +waiting on router queue for slot.... +09:17:09 Sending to : +09:17:09 ============================================================================ +09:17:09 ============================================================================ +09:17:09 Slot Id : <410> +09:17:09 Transaction Type : REQUEST +09:17:09 Received From : +09:17:09 ============================================================================ +09:17:09 FNo. Len. Field Value +09:17:09 ============================================================================ +09:17:09 [ 1] [ 4] [0200] +09:17:09 [ 2] [ 16] [6213545000627228] +09:17:09 [ 3] [ 6] [010000] +09:17:09 [ 4] [ 12] [000100000000] +09:17:09 [ 7] [ 10] [0320021616] +09:17:09 [ 11] [ 6] [267454] +09:17:09 [ 12] [ 6] [091616] +09:17:09 [ 13] [ 4] [0320] +09:17:09 [ 14] [ 4] [4912] +09:17:09 [ 15] [ 4] [0320] +09:17:09 [ 18] [ 4] [6011] +09:17:09 [ 19] [ 3] [418] +09:17:09 [ 22] [ 3] [021] +09:17:09 [ 25] [ 2] [01] +09:17:09 [ 28] [ 9] [D00002000] +09:17:09 [ 32] [ 6] [180893] +09:17:09 [ 35] [ 32] [6213545000627228=491212012722655] +09:17:09 [ 37] [ 12] [507902267454] +09:17:09 [ 41] [ 8] [0531VTHH] +09:17:09 [ 42] [ 15] [999999 ] +09:17:09 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:17:09 [ 49] [ 3] [418] +09:17:09 [ 52] [ 16] [1C70EE6DDA48D408] +09:17:09 ============================================================================ +09:17:09 + + +waiting on router queue for slot.... +09:17:09 Sending to : <0> +09:17:09 ============================================================================ +09:17:09 ============================================================================ +09:17:09 Slot Id : <410> +09:17:09 Transaction Type : RESPONSE +09:17:09 Received From : +09:17:09 ============================================================================ +09:17:09 FNo. Len. Field Value +09:17:09 ============================================================================ +09:17:09 [ 1] [ 4] [0210] +09:17:09 [ 2] [ 16] [6213545000627228] +09:17:09 [ 3] [ 6] [010000] +09:17:09 [ 4] [ 12] [000100000000] +09:17:09 [ 7] [ 10] [0320021616] +09:17:09 [ 11] [ 6] [267454] +09:17:09 [ 12] [ 6] [091616] +09:17:09 [ 13] [ 4] [0320] +09:17:09 [ 15] [ 4] [0320] +09:17:09 [ 18] [ 4] [6011] +09:17:09 [ 19] [ 3] [418] +09:17:09 [ 32] [ 6] [180893] +09:17:09 [ 35] [ 32] [6213545000627228=491212012722655] +09:17:09 [ 37] [ 12] [507902267454] +09:17:09 [ 38] [ 6] [137200] +09:17:09 [ 39] [ 2] [00] +09:17:09 [ 41] [ 8] [0531VTHH] +09:17:09 [ 49] [ 3] [418] +09:17:09 [ 54] [ 40] [0001418C0000509763290002418C000050976329] +09:17:09 ============================================================================ +09:17:09 Sending to : +09:17:09 ============================================================================ +09:17:09 + + +waiting on router queue for slot.... +09:17:11 ============================================================================ +09:17:11 Slot Id : <410> +09:17:11 Transaction Type : RESPONSE +09:17:11 Received From : +09:17:11 ============================================================================ +09:17:11 FNo. Len. Field Value +09:17:11 ============================================================================ +09:17:11 [ 1] [ 4] [0210] +09:17:11 [ 2] [ 16] [6213545000627228] +09:17:11 [ 3] [ 6] [010000] +09:17:11 [ 4] [ 12] [000100000000] +09:17:11 [ 7] [ 10] [0320021616] +09:17:11 [ 11] [ 6] [267454] +09:17:11 [ 12] [ 6] [091616] +09:17:11 [ 13] [ 4] [0320] +09:17:11 [ 15] [ 4] [0320] +09:17:11 [ 18] [ 4] [6011] +09:17:11 [ 19] [ 3] [418] +09:17:11 [ 32] [ 6] [180893] +09:17:11 [ 35] [ 32] [6213545000627228=491212012722655] +09:17:11 [ 37] [ 12] [507902267454] +09:17:11 [ 38] [ 6] [137200] +09:17:11 [ 39] [ 2] [00] +09:17:11 [ 41] [ 8] [0531VTHH] +09:17:11 [ 49] [ 3] [418] +09:17:11 [ 54] [ 40] [0001418C0000509763290002418C000050976329] +09:17:11 ============================================================================ +09:17:11 Calculate Source COMM Id = 2 +09:17:11 ============================================================================ +09:17:11 + + +waiting on router queue for slot.... +09:17:14 ============================================================================ +09:17:14 Slot Id : <383> +09:17:14 Transaction Type : REQUEST +09:17:14 Received From : +09:17:14 ============================================================================ +09:17:14 FNo. Len. Field Value +09:17:14 ============================================================================ +09:17:14 [ 1] [ 4] [0200] +09:17:14 [ 2] [ 16] [6213544001842738] +09:17:14 [ 3] [ 6] [010000] +09:17:14 [ 4] [ 12] [000100000000] +09:17:14 [ 7] [ 10] [0320091505] +09:17:14 [ 11] [ 6] [935165] +09:17:14 [ 12] [ 6] [091505] +09:17:14 [ 13] [ 4] [0320] +09:17:14 [ 15] [ 4] [0320] +09:17:14 [ 18] [ 4] [6011] +09:17:14 [ 19] [ 3] [418] +09:17:14 [ 22] [ 3] [021] +09:17:14 [ 25] [ 2] [01] +09:17:14 [ 28] [ 9] [D00002000] +09:17:14 [ 32] [ 6] [668899] +09:17:14 [ 35] [ 32] [6213544001842738=491212014273330] +09:17:14 [ 37] [ 12] [507901963400] +09:17:14 [ 41] [ 8] [03020019] +09:17:14 [ 42] [ 15] [APT ] +09:17:14 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:17:14 [ 49] [ 3] [418] +09:17:14 [ 52] [ 16] [2D27073CB752AD17] +09:17:14 ============================================================================ +09:17:14 + + +waiting on router queue for slot.... +09:17:14 Sending to : +09:17:14 ============================================================================ +09:17:14 Sending to : +09:17:14 ============================================================================ +09:17:14 ============================================================================ +09:17:14 Slot Id : <383> +09:17:14 Transaction Type : REQUEST +09:17:14 Received From : +09:17:14 ============================================================================ +09:17:14 FNo. Len. Field Value +09:17:14 ============================================================================ +09:17:14 [ 1] [ 4] [0200] +09:17:14 [ 2] [ 16] [6213544001842738] +09:17:14 [ 3] [ 6] [010000] +09:17:14 [ 4] [ 12] [000100000000] +09:17:14 [ 7] [ 10] [0320091505] +09:17:14 [ 11] [ 6] [935165] +09:17:14 [ 12] [ 6] [091505] +09:17:14 [ 13] [ 4] [0320] +09:17:14 [ 15] [ 4] [0320] +09:17:14 [ 18] [ 4] [6011] +09:17:14 [ 19] [ 3] [418] +09:17:14 [ 22] [ 3] [021] +09:17:14 [ 25] [ 2] [01] +09:17:14 [ 28] [ 9] [D00002000] +09:17:14 [ 32] [ 6] [668899] +09:17:14 [ 35] [ 32] [6213544001842738=491212014273330] +09:17:14 [ 37] [ 12] [507901963400] +09:17:14 [ 41] [ 8] [03020019] +09:17:14 [ 42] [ 15] [APT ] +09:17:14 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:17:14 [ 49] [ 3] [418] +09:17:14 [ 52] [ 16] [2D27073CB752AD17] +09:17:14 ============================================================================ +09:17:14 + + +waiting on router queue for slot.... +09:17:14 Sending to : +09:17:14 ============================================================================ +09:17:14 ============================================================================ +09:17:14 Slot Id : <383> +09:17:14 Transaction Type : REQUEST +09:17:14 Received From : +09:17:14 ============================================================================ +09:17:14 FNo. Len. Field Value +09:17:14 ============================================================================ +09:17:14 [ 1] [ 4] [0200] +09:17:14 [ 2] [ 16] [6213544001842738] +09:17:14 [ 3] [ 6] [010000] +09:17:14 [ 4] [ 12] [000100000000] +09:17:14 [ 7] [ 10] [0320091505] +09:17:14 [ 11] [ 6] [935165] +09:17:14 [ 12] [ 6] [091505] +09:17:14 [ 13] [ 4] [0320] +09:17:14 [ 15] [ 4] [0320] +09:17:14 [ 18] [ 4] [6011] +09:17:14 [ 19] [ 3] [418] +09:17:14 [ 22] [ 3] [021] +09:17:14 [ 25] [ 2] [01] +09:17:14 [ 28] [ 9] [D00002000] +09:17:14 [ 32] [ 6] [668899] +09:17:14 [ 35] [ 32] [6213544001842738=491212014273330] +09:17:14 [ 37] [ 12] [507901963400] +09:17:14 [ 41] [ 8] [03020019] +09:17:14 [ 42] [ 15] [APT ] +09:17:14 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:17:14 [ 49] [ 3] [418] +09:17:14 [ 52] [ 16] [9E870856DCDD6B1D] +09:17:14 ============================================================================ +09:17:14 + + +waiting on router queue for slot.... +09:17:14 Sending to : <0> +09:17:14 ============================================================================ +09:17:15 ============================================================================ +09:17:15 Slot Id : <383> +09:17:15 Transaction Type : RESPONSE +09:17:15 Received From : +09:17:15 ============================================================================ +09:17:15 FNo. Len. Field Value +09:17:15 ============================================================================ +09:17:15 [ 1] [ 4] [0210] +09:17:15 [ 2] [ 16] [6213544001842738] +09:17:15 [ 3] [ 6] [010000] +09:17:15 [ 4] [ 12] [000100000000] +09:17:15 [ 7] [ 10] [0320091505] +09:17:15 [ 11] [ 6] [935165] +09:17:15 [ 12] [ 6] [091505] +09:17:15 [ 13] [ 4] [0320] +09:17:15 [ 15] [ 4] [0320] +09:17:15 [ 18] [ 4] [6011] +09:17:15 [ 19] [ 3] [418] +09:17:15 [ 32] [ 6] [668899] +09:17:15 [ 35] [ 32] [6213544001842738=491212014273330] +09:17:15 [ 37] [ 12] [507901963400] +09:17:15 [ 38] [ 6] [790434] +09:17:15 [ 39] [ 2] [00] +09:17:15 [ 41] [ 8] [03020019] +09:17:15 [ 49] [ 3] [418] +09:17:15 [ 54] [ 40] [0001418C0064177537040002418C006417753704] +09:17:15 ============================================================================ +09:17:15 Sending to : +09:17:15 ============================================================================ +09:17:15 + + +waiting on router queue for slot.... +09:17:16 ============================================================================ +09:17:16 Slot Id : <383> +09:17:16 Transaction Type : RESPONSE +09:17:16 Received From : +09:17:16 ============================================================================ +09:17:16 FNo. Len. Field Value +09:17:16 ============================================================================ +09:17:16 [ 1] [ 4] [0210] +09:17:16 [ 2] [ 16] [6213544001842738] +09:17:16 [ 3] [ 6] [010000] +09:17:16 [ 4] [ 12] [000100000000] +09:17:16 [ 7] [ 10] [0320091505] +09:17:16 [ 11] [ 6] [935165] +09:17:16 [ 12] [ 6] [091505] +09:17:16 [ 13] [ 4] [0320] +09:17:16 [ 15] [ 4] [0320] +09:17:16 [ 18] [ 4] [6011] +09:17:16 [ 19] [ 3] [418] +09:17:16 [ 32] [ 6] [668899] +09:17:16 [ 35] [ 32] [6213544001842738=491212014273330] +09:17:16 [ 37] [ 12] [507901963400] +09:17:16 [ 38] [ 6] [790434] +09:17:16 [ 39] [ 2] [00] +09:17:16 [ 41] [ 8] [03020019] +09:17:16 [ 49] [ 3] [418] +09:17:16 [ 54] [ 40] [0001418C0064177537040002418C006417753704] +09:17:16 ============================================================================ +09:17:16 Calculate Source COMM Id = 4 +09:17:16 ============================================================================ +09:17:16 + + +waiting on router queue for slot.... +09:17:23 ============================================================================ +09:17:23 Slot Id : <393> +09:17:23 Transaction Type : REQUEST +09:17:23 Received From : +09:17:23 ============================================================================ +09:17:23 FNo. Len. Field Value +09:17:23 ============================================================================ +09:17:23 [ 1] [ 4] [0800] +09:17:23 [ 7] [ 10] [0320021631] +09:17:23 [ 11] [ 6] [155591] +09:17:23 [ 70] [ 3] [301] +09:17:23 ============================================================================ +09:17:23 + + +waiting on router queue for slot.... +09:17:23 Sending to : +09:17:23 ============================================================================ +09:17:23 ============================================================================ +09:17:23 Slot Id : <393> +09:17:23 Transaction Type : RESPONSE +09:17:23 Received From : +09:17:23 ============================================================================ +09:17:23 FNo. Len. Field Value +09:17:23 ============================================================================ +09:17:23 [ 1] [ 4] [0810] +09:17:23 [ 7] [ 10] [0320021631] +09:17:23 [ 11] [ 6] [155591] +09:17:23 [ 39] [ 2] [00] +09:17:23 [ 70] [ 3] [301] +09:17:23 ============================================================================ +09:17:23 Calculate Source COMM Id = 2 +09:17:23 ============================================================================ +09:17:23 + + +waiting on router queue for slot.... +09:17:33 ============================================================================ +09:17:33 Slot Id : <349> +09:17:33 Transaction Type : REQUEST +09:17:33 Received From : +09:17:33 ============================================================================ +09:17:33 FNo. Len. Field Value +09:17:33 ============================================================================ +09:17:33 [ 1] [ 4] [0200] +09:17:33 [ 2] [ 16] [1808931100007499] +09:17:33 [ 3] [ 6] [010000] +09:17:33 [ 4] [ 12] [000030000000] +09:17:33 [ 7] [ 10] [0320091730] +09:17:33 [ 11] [ 6] [696206] +09:17:33 [ 12] [ 6] [091730] +09:17:33 [ 13] [ 4] [0320] +09:17:33 [ 15] [ 4] [0320] +09:17:33 [ 18] [ 4] [6011] +09:17:33 [ 22] [ 3] [900] +09:17:33 [ 25] [ 2] [02] +09:17:33 [ 28] [ 9] [D00002000] +09:17:33 [ 32] [ 6] [621354] +09:17:33 [ 35] [ 27] [1808931100007499=1803500826] +09:17:33 [ 37] [ 12] [507904599637] +09:17:33 [ 41] [ 8] [02002200] +09:17:33 [ 42] [ 15] [NATIVE ] +09:17:33 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +09:17:33 [ 49] [ 3] [418] +09:17:33 [ 52] [ 16] [93D65000FB0D00C3] +09:17:33 ============================================================================ +09:17:33 + + +waiting on router queue for slot.... +09:17:33 Sending to : +09:17:33 ============================================================================ +09:17:33 Sending to : +09:17:33 ============================================================================ +09:17:34 ============================================================================ +09:17:34 Slot Id : <349> +09:17:34 Transaction Type : REQUEST +09:17:34 Received From : +09:17:34 ============================================================================ +09:17:34 FNo. Len. Field Value +09:17:34 ============================================================================ +09:17:34 [ 1] [ 4] [0200] +09:17:34 [ 2] [ 16] [1808931100007499] +09:17:34 [ 3] [ 6] [010000] +09:17:34 [ 4] [ 12] [000030000000] +09:17:34 [ 7] [ 10] [0320091730] +09:17:34 [ 11] [ 6] [696206] +09:17:34 [ 12] [ 6] [091730] +09:17:34 [ 13] [ 4] [0320] +09:17:34 [ 15] [ 4] [0320] +09:17:34 [ 18] [ 4] [6011] +09:17:34 [ 22] [ 3] [900] +09:17:34 [ 25] [ 2] [02] +09:17:34 [ 28] [ 9] [D00002000] +09:17:34 [ 32] [ 6] [621354] +09:17:34 [ 35] [ 27] [1808931100007499=1803500826] +09:17:34 [ 37] [ 12] [507904599637] +09:17:34 [ 41] [ 8] [02002200] +09:17:34 [ 42] [ 15] [NATIVE ] +09:17:34 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +09:17:34 [ 49] [ 3] [418] +09:17:34 [ 52] [ 16] [93D65000FB0D00C3] +09:17:34 ============================================================================ +09:17:34 + + +waiting on router queue for slot.... +09:17:34 Sending to : +09:17:34 ============================================================================ +09:17:34 ============================================================================ +09:17:34 Slot Id : <349> +09:17:34 Transaction Type : REQUEST +09:17:34 Received From : +09:17:34 ============================================================================ +09:17:34 FNo. Len. Field Value +09:17:34 ============================================================================ +09:17:34 [ 1] [ 4] [0200] +09:17:34 [ 2] [ 16] [1808931100007499] +09:17:34 [ 3] [ 6] [010000] +09:17:34 [ 4] [ 12] [000030000000] +09:17:34 [ 7] [ 10] [0320091730] +09:17:34 [ 11] [ 6] [696206] +09:17:34 [ 12] [ 6] [091730] +09:17:34 [ 13] [ 4] [0320] +09:17:34 [ 15] [ 4] [0320] +09:17:34 [ 18] [ 4] [6011] +09:17:34 [ 22] [ 3] [900] +09:17:34 [ 25] [ 2] [02] +09:17:34 [ 28] [ 9] [D00002000] +09:17:34 [ 32] [ 6] [621354] +09:17:34 [ 35] [ 27] [1808931100007499=1803500826] +09:17:34 [ 37] [ 12] [507904599637] +09:17:34 [ 41] [ 8] [02002200] +09:17:34 [ 42] [ 15] [NATIVE ] +09:17:34 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +09:17:34 [ 49] [ 3] [418] +09:17:34 [ 52] [ 16] [135716E4F06793A9] +09:17:34 ============================================================================ +09:17:34 + + +waiting on router queue for slot.... +09:17:34 Sending to : <2> +09:17:34 ============================================================================ +09:17:34 ============================================================================ +09:17:34 Slot Id : <413> +09:17:34 Transaction Type : REQUEST +09:17:34 Received From : +09:17:34 ============================================================================ +09:17:34 FNo. Len. Field Value +09:17:34 ============================================================================ +09:17:34 [ 1] [ 4] [0800] +09:17:34 [ 2] [ 5] [02531] +09:17:34 [ 3] [ 6] [579098] +09:17:34 [ 7] [ 10] [0320021734] +09:17:34 [ 11] [ 6] [806951] +09:17:34 [ 15] [ 10] [0320021734] +09:17:34 [ 37] [ 11] [57909806951] +09:17:34 [ 70] [ 3] [001] +09:17:34 ============================================================================ +09:17:34 + + +waiting on router queue for slot.... +09:17:34 ============================================================================ +09:17:34 Slot Id : <413> +09:17:34 Transaction Type : RESPONSE +09:17:34 Received From : +09:17:34 ============================================================================ +09:17:34 FNo. Len. Field Value +09:17:34 ============================================================================ +09:17:34 [ 1] [ 4] [0810] +09:17:34 [ 7] [ 10] [0320021734] +09:17:34 [ 11] [ 6] [806951] +09:17:34 [ 15] [ 4] [0320] +09:17:34 [ 37] [ 12] [57909806951] +09:17:34 [ 39] [ 2] [00] +09:17:34 [ 70] [ 3] [001] +09:17:34 ============================================================================ +09:17:34 Sending to : +09:17:34 ============================================================================ +09:17:34 + + +waiting on router queue for slot.... +09:17:35 ============================================================================ +09:17:35 Slot Id : <400> +09:17:35 Transaction Type : REQUEST +09:17:35 Received From : +09:17:35 ============================================================================ +09:17:35 FNo. Len. Field Value +09:17:35 ============================================================================ +09:17:35 [ 1] [ 4] [0800] +09:17:35 [ 7] [ 10] [0320021642] +09:17:35 [ 11] [ 6] [155592] +09:17:35 [ 70] [ 3] [301] +09:17:35 ============================================================================ +09:17:35 + + +waiting on router queue for slot.... +09:17:35 Sending to : +09:17:35 ============================================================================ +09:17:35 ============================================================================ +09:17:35 Slot Id : <400> +09:17:35 Transaction Type : RESPONSE +09:17:35 Received From : +09:17:35 ============================================================================ +09:17:35 FNo. Len. Field Value +09:17:35 ============================================================================ +09:17:35 [ 1] [ 4] [0810] +09:17:35 [ 7] [ 10] [0320021642] +09:17:35 [ 11] [ 6] [155592] +09:17:35 [ 39] [ 2] [00] +09:17:35 [ 70] [ 3] [301] +09:17:35 ============================================================================ +09:17:35 Calculate Source COMM Id = 2 +09:17:35 ============================================================================ +09:17:35 + + +waiting on router queue for slot.... +09:17:39 ============================================================================ +09:17:39 Slot Id : <397> +09:17:39 Transaction Type : REQUEST +09:17:39 Received From : +09:17:39 ============================================================================ +09:17:39 FNo. Len. Field Value +09:17:39 ============================================================================ +09:17:39 [ 1] [ 4] [0200] +09:17:39 [ 2] [ 16] [6213541000274947] +09:17:39 [ 3] [ 6] [010000] +09:17:39 [ 4] [ 12] [000050000000] +09:17:39 [ 7] [ 10] [0320091530] +09:17:39 [ 11] [ 6] [935190] +09:17:39 [ 12] [ 6] [091530] +09:17:39 [ 13] [ 4] [0320] +09:17:39 [ 15] [ 4] [0320] +09:17:39 [ 18] [ 4] [6011] +09:17:39 [ 19] [ 3] [418] +09:17:39 [ 22] [ 3] [021] +09:17:39 [ 25] [ 2] [01] +09:17:39 [ 28] [ 9] [D00002000] +09:17:39 [ 32] [ 6] [668899] +09:17:39 [ 35] [ 32] [6213541000274947=491212017494158] +09:17:39 [ 37] [ 12] [507901422764] +09:17:39 [ 41] [ 8] [03314001] +09:17:39 [ 42] [ 15] [APT ] +09:17:39 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +09:17:39 [ 49] [ 3] [418] +09:17:39 [ 52] [ 16] [F4D004FF3EA52D88] +09:17:39 ============================================================================ +09:17:39 + + +waiting on router queue for slot.... +09:17:39 Sending to : +09:17:39 ============================================================================ +09:17:39 Sending to : +09:17:39 ============================================================================ +09:17:39 ============================================================================ +09:17:39 Slot Id : <397> +09:17:39 Transaction Type : REQUEST +09:17:39 Received From : +09:17:39 ============================================================================ +09:17:39 FNo. Len. Field Value +09:17:39 ============================================================================ +09:17:39 [ 1] [ 4] [0200] +09:17:39 [ 2] [ 16] [6213541000274947] +09:17:39 [ 3] [ 6] [010000] +09:17:39 [ 4] [ 12] [000050000000] +09:17:39 [ 7] [ 10] [0320091530] +09:17:39 [ 11] [ 6] [935190] +09:17:39 [ 12] [ 6] [091530] +09:17:39 [ 13] [ 4] [0320] +09:17:39 [ 15] [ 4] [0320] +09:17:39 [ 18] [ 4] [6011] +09:17:39 [ 19] [ 3] [418] +09:17:39 [ 22] [ 3] [021] +09:17:39 [ 25] [ 2] [01] +09:17:39 [ 28] [ 9] [D00002000] +09:17:39 [ 32] [ 6] [668899] +09:17:39 [ 35] [ 32] [6213541000274947=491212017494158] +09:17:39 [ 37] [ 12] [507901422764] +09:17:39 [ 41] [ 8] [03314001] +09:17:39 [ 42] [ 15] [APT ] +09:17:39 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +09:17:39 [ 49] [ 3] [418] +09:17:39 [ 52] [ 16] [F4D004FF3EA52D88] +09:17:39 ============================================================================ +09:17:39 + + +waiting on router queue for slot.... +09:17:39 Sending to : +09:17:39 ============================================================================ +09:17:39 ============================================================================ +09:17:39 Slot Id : <397> +09:17:39 Transaction Type : REQUEST +09:17:39 Received From : +09:17:39 ============================================================================ +09:17:39 FNo. Len. Field Value +09:17:39 ============================================================================ +09:17:39 [ 1] [ 4] [0200] +09:17:39 [ 2] [ 16] [6213541000274947] +09:17:39 [ 3] [ 6] [010000] +09:17:39 [ 4] [ 12] [000050000000] +09:17:39 [ 7] [ 10] [0320091530] +09:17:39 [ 11] [ 6] [935190] +09:17:39 [ 12] [ 6] [091530] +09:17:39 [ 13] [ 4] [0320] +09:17:39 [ 15] [ 4] [0320] +09:17:39 [ 18] [ 4] [6011] +09:17:39 [ 19] [ 3] [418] +09:17:39 [ 22] [ 3] [021] +09:17:39 [ 25] [ 2] [01] +09:17:39 [ 28] [ 9] [D00002000] +09:17:39 [ 32] [ 6] [668899] +09:17:39 [ 35] [ 32] [6213541000274947=491212017494158] +09:17:39 [ 37] [ 12] [507901422764] +09:17:39 [ 41] [ 8] [03314001] +09:17:39 [ 42] [ 15] [APT ] +09:17:39 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +09:17:39 [ 49] [ 3] [418] +09:17:39 [ 52] [ 16] [ED7E7EF0D5B6BD37] +09:17:39 ============================================================================ +09:17:39 + + +waiting on router queue for slot.... +09:17:39 Sending to : <0> +09:17:39 ============================================================================ +09:17:39 ============================================================================ +09:17:39 Slot Id : <397> +09:17:39 Transaction Type : RESPONSE +09:17:39 Received From : +09:17:39 ============================================================================ +09:17:39 FNo. Len. Field Value +09:17:39 ============================================================================ +09:17:39 [ 1] [ 4] [0210] +09:17:39 [ 2] [ 16] [6213541000274947] +09:17:39 [ 3] [ 6] [010000] +09:17:39 [ 4] [ 12] [000050000000] +09:17:39 [ 7] [ 10] [0320091530] +09:17:39 [ 11] [ 6] [935190] +09:17:39 [ 12] [ 6] [091530] +09:17:39 [ 13] [ 4] [0320] +09:17:39 [ 15] [ 4] [0320] +09:17:39 [ 18] [ 4] [6011] +09:17:39 [ 19] [ 3] [418] +09:17:39 [ 32] [ 6] [668899] +09:17:39 [ 35] [ 32] [6213541000274947=491212017494158] +09:17:39 [ 37] [ 12] [507901422764] +09:17:39 [ 38] [ 6] [465557] +09:17:39 [ 39] [ 2] [00] +09:17:39 [ 41] [ 8] [03314001] +09:17:39 [ 49] [ 3] [418] +09:17:39 [ 54] [ 40] [0001418C0001874488460002418C000187448846] +09:17:39 ============================================================================ +09:17:39 Sending to : +09:17:39 ============================================================================ +09:17:39 + + +waiting on router queue for slot.... +09:17:41 ============================================================================ +09:17:41 Slot Id : <397> +09:17:41 Transaction Type : RESPONSE +09:17:41 Received From : +09:17:41 ============================================================================ +09:17:41 FNo. Len. Field Value +09:17:41 ============================================================================ +09:17:41 [ 1] [ 4] [0210] +09:17:41 [ 2] [ 16] [6213541000274947] +09:17:41 [ 3] [ 6] [010000] +09:17:41 [ 4] [ 12] [000050000000] +09:17:41 [ 7] [ 10] [0320091530] +09:17:41 [ 11] [ 6] [935190] +09:17:41 [ 12] [ 6] [091530] +09:17:41 [ 13] [ 4] [0320] +09:17:41 [ 15] [ 4] [0320] +09:17:41 [ 18] [ 4] [6011] +09:17:41 [ 19] [ 3] [418] +09:17:41 [ 32] [ 6] [668899] +09:17:41 [ 35] [ 32] [6213541000274947=491212017494158] +09:17:41 [ 37] [ 12] [507901422764] +09:17:41 [ 38] [ 6] [465557] +09:17:41 [ 39] [ 2] [00] +09:17:41 [ 41] [ 8] [03314001] +09:17:41 [ 49] [ 3] [418] +09:17:41 [ 54] [ 40] [0001418C0001874488460002418C000187448846] +09:17:41 ============================================================================ +09:17:41 Calculate Source COMM Id = 4 +09:17:41 ============================================================================ +09:17:41 + + +waiting on router queue for slot.... +09:17:41 ============================================================================ +09:17:41 Slot Id : <349> +09:17:41 Transaction Type : RESPONSE +09:17:41 Received From : +09:17:41 ============================================================================ +09:17:41 FNo. Len. Field Value +09:17:41 ============================================================================ +09:17:41 [ 1] [ 4] [0210] +09:17:41 [ 2] [ 16] [1808931100007499] +09:17:41 [ 3] [ 6] [010000] +09:17:41 [ 4] [ 12] [000030000000] +09:17:41 [ 6] [ 12] [000030000000] +09:17:41 [ 7] [ 10] [0320091730] +09:17:41 [ 11] [ 6] [696206] +09:17:41 [ 12] [ 6] [091730] +09:17:41 [ 13] [ 4] [0320] +09:17:41 [ 18] [ 4] [6011] +09:17:41 [ 19] [ 3] [418] +09:17:41 [ 22] [ 3] [021] +09:17:41 [ 32] [ 6] [621354] +09:17:41 [ 35] [ 27] [1808931100007499=1803500826] +09:17:41 [ 37] [ 12] [507904599637] +09:17:41 [ 38] [ 6] [696206] +09:17:41 [ 39] [ 2] [00] +09:17:41 [ 41] [ 8] [02002200] +09:17:41 [ 49] [ 3] [418] +09:17:41 [ 52] [ 16] [135716E4F06793A9] +09:17:41 [ 54] [ 20] [1001418C000014550300] +09:17:41 ============================================================================ +09:17:41 Sending to : +09:17:41 ============================================================================ +09:17:41 + + +waiting on router queue for slot.... +09:17:43 ============================================================================ +09:17:43 Slot Id : <349> +09:17:43 Transaction Type : RESPONSE +09:17:43 Received From : +09:17:43 ============================================================================ +09:17:43 FNo. Len. Field Value +09:17:43 ============================================================================ +09:17:43 [ 1] [ 4] [0210] +09:17:43 [ 2] [ 16] [1808931100007499] +09:17:43 [ 3] [ 6] [010000] +09:17:43 [ 4] [ 12] [000030000000] +09:17:43 [ 6] [ 12] [000030000000] +09:17:43 [ 7] [ 10] [0320091730] +09:17:43 [ 11] [ 6] [696206] +09:17:43 [ 12] [ 6] [091730] +09:17:43 [ 13] [ 4] [0320] +09:17:43 [ 18] [ 4] [6011] +09:17:43 [ 19] [ 3] [418] +09:17:43 [ 22] [ 3] [021] +09:17:43 [ 32] [ 6] [621354] +09:17:43 [ 35] [ 27] [1808931100007499=1803500826] +09:17:43 [ 37] [ 12] [507904599637] +09:17:43 [ 38] [ 6] [696206] +09:17:43 [ 39] [ 2] [00] +09:17:43 [ 41] [ 8] [02002200] +09:17:43 [ 49] [ 3] [418] +09:17:43 [ 52] [ 16] [135716E4F06793A9] +09:17:43 [ 54] [ 20] [1001418C000014550300] +09:17:43 ============================================================================ +09:17:43 Calculate Source COMM Id = 0 +09:17:43 ============================================================================ +09:17:43 + + +waiting on router queue for slot.... +09:17:50 ============================================================================ +09:17:50 Slot Id : <414> +09:17:50 Transaction Type : REQUEST +09:17:50 Received From : +09:17:50 ============================================================================ +09:17:50 FNo. Len. Field Value +09:17:50 ============================================================================ +09:17:50 [ 1] [ 4] [0800] +09:17:50 [ 7] [ 10] [0320021658] +09:17:50 [ 11] [ 6] [155593] +09:17:50 [ 70] [ 3] [301] +09:17:50 ============================================================================ +09:17:50 + + +waiting on router queue for slot.... +09:17:50 Sending to : +09:17:50 ============================================================================ +09:17:50 ============================================================================ +09:17:50 Slot Id : <414> +09:17:50 Transaction Type : RESPONSE +09:17:50 Received From : +09:17:50 ============================================================================ +09:17:50 FNo. Len. Field Value +09:17:50 ============================================================================ +09:17:50 [ 1] [ 4] [0810] +09:17:50 [ 7] [ 10] [0320021658] +09:17:50 [ 11] [ 6] [155593] +09:17:50 [ 39] [ 2] [00] +09:17:50 [ 70] [ 3] [301] +09:17:50 ============================================================================ +09:17:50 Calculate Source COMM Id = 2 +09:17:50 ============================================================================ +09:17:50 + + +waiting on router queue for slot.... +09:18:02 ============================================================================ +09:18:02 Slot Id : <399> +09:18:02 Transaction Type : REQUEST +09:18:02 Received From : +09:18:02 ============================================================================ +09:18:02 FNo. Len. Field Value +09:18:02 ============================================================================ +09:18:02 [ 1] [ 4] [0800] +09:18:02 [ 7] [ 10] [0320162951] +09:18:02 [ 11] [ 6] [092951] +09:18:02 [ 37] [ 12] [57909092951] +09:18:02 [ 70] [ 3] [301] +09:18:02 ============================================================================ +09:18:02 + + +waiting on router queue for slot.... +09:18:02 Sending to : +09:18:02 ============================================================================ +09:18:02 ============================================================================ +09:18:02 Slot Id : <399> +09:18:02 Transaction Type : RESPONSE +09:18:02 Received From : +09:18:02 ============================================================================ +09:18:02 FNo. Len. Field Value +09:18:02 ============================================================================ +09:18:02 [ 1] [ 4] [0810] +09:18:02 [ 7] [ 10] [0320162951] +09:18:02 [ 11] [ 6] [092951] +09:18:02 [ 37] [ 12] [579090929510] +09:18:02 [ 39] [ 2] [00] +09:18:02 [ 70] [ 3] [810] +09:18:02 ============================================================================ +09:18:02 Calculate Source COMM Id = 6 +09:18:02 ============================================================================ +09:18:02 + + +waiting on router queue for slot.... +09:18:02 ============================================================================ +09:18:02 Slot Id : <387> +09:18:02 Transaction Type : REQUEST +09:18:02 Received From : +09:18:02 ============================================================================ +09:18:02 FNo. Len. Field Value +09:18:02 ============================================================================ +09:18:02 [ 1] [ 4] [0800] +09:18:02 [ 7] [ 10] [0320021710] +09:18:02 [ 11] [ 6] [155594] +09:18:02 [ 70] [ 3] [301] +09:18:02 ============================================================================ +09:18:02 + + +waiting on router queue for slot.... +09:18:02 Sending to : +09:18:02 ============================================================================ +09:18:02 ============================================================================ +09:18:02 Slot Id : <387> +09:18:02 Transaction Type : RESPONSE +09:18:02 Received From : +09:18:02 ============================================================================ +09:18:02 FNo. Len. Field Value +09:18:02 ============================================================================ +09:18:02 [ 1] [ 4] [0810] +09:18:02 [ 7] [ 10] [0320021710] +09:18:02 [ 11] [ 6] [155594] +09:18:02 [ 39] [ 2] [00] +09:18:02 [ 70] [ 3] [301] +09:18:02 ============================================================================ +09:18:02 Calculate Source COMM Id = 2 +09:18:02 ============================================================================ +09:18:02 + + +waiting on router queue for slot.... +09:18:12 ============================================================================ +09:18:12 Slot Id : <394> +09:18:12 Transaction Type : REQUEST +09:18:12 Received From : +09:18:12 ============================================================================ +09:18:12 FNo. Len. Field Value +09:18:12 ============================================================================ +09:18:12 [ 1] [ 4] [0800] +09:18:12 [ 7] [ 10] [0320021720] +09:18:12 [ 11] [ 6] [155595] +09:18:12 [ 70] [ 3] [301] +09:18:12 ============================================================================ +09:18:12 + + +waiting on router queue for slot.... +09:18:12 Sending to : +09:18:12 ============================================================================ +09:18:12 ============================================================================ +09:18:12 Slot Id : <394> +09:18:12 Transaction Type : RESPONSE +09:18:12 Received From : +09:18:12 ============================================================================ +09:18:12 FNo. Len. Field Value +09:18:12 ============================================================================ +09:18:12 [ 1] [ 4] [0810] +09:18:12 [ 7] [ 10] [0320021720] +09:18:12 [ 11] [ 6] [155595] +09:18:12 [ 39] [ 2] [00] +09:18:12 [ 70] [ 3] [301] +09:18:12 ============================================================================ +09:18:12 Calculate Source COMM Id = 2 +09:18:12 ============================================================================ +09:18:12 + + +waiting on router queue for slot.... +09:18:22 ============================================================================ +09:18:22 Slot Id : <372> +09:18:22 Transaction Type : REQUEST +09:18:22 Received From : +09:18:22 ============================================================================ +09:18:22 FNo. Len. Field Value +09:18:22 ============================================================================ +09:18:22 [ 1] [ 4] [0800] +09:18:22 [ 7] [ 10] [0320021730] +09:18:22 [ 11] [ 6] [155596] +09:18:22 [ 70] [ 3] [301] +09:18:22 ============================================================================ +09:18:22 + + +waiting on router queue for slot.... +09:18:22 Sending to : +09:18:22 ============================================================================ +09:18:22 ============================================================================ +09:18:22 Slot Id : <372> +09:18:22 Transaction Type : RESPONSE +09:18:22 Received From : +09:18:22 ============================================================================ +09:18:22 FNo. Len. Field Value +09:18:22 ============================================================================ +09:18:22 [ 1] [ 4] [0810] +09:18:22 [ 7] [ 10] [0320021730] +09:18:22 [ 11] [ 6] [155596] +09:18:22 [ 39] [ 2] [00] +09:18:22 [ 70] [ 3] [301] +09:18:22 ============================================================================ +09:18:22 Calculate Source COMM Id = 2 +09:18:22 ============================================================================ +09:18:22 + + +waiting on router queue for slot.... +09:18:33 ============================================================================ +09:18:33 Slot Id : <368> +09:18:33 Transaction Type : REQUEST +09:18:33 Received From : +09:18:33 ============================================================================ +09:18:33 FNo. Len. Field Value +09:18:33 ============================================================================ +09:18:33 [ 1] [ 4] [0800] +09:18:33 [ 7] [ 10] [0320021741] +09:18:33 [ 11] [ 6] [155597] +09:18:33 [ 70] [ 3] [301] +09:18:33 ============================================================================ +09:18:33 + + +waiting on router queue for slot.... +09:18:33 Sending to : +09:18:33 ============================================================================ +09:18:33 ============================================================================ +09:18:33 Slot Id : <368> +09:18:33 Transaction Type : RESPONSE +09:18:33 Received From : +09:18:33 ============================================================================ +09:18:33 FNo. Len. Field Value +09:18:33 ============================================================================ +09:18:33 [ 1] [ 4] [0810] +09:18:33 [ 7] [ 10] [0320021741] +09:18:33 [ 11] [ 6] [155597] +09:18:33 [ 39] [ 2] [00] +09:18:33 [ 70] [ 3] [301] +09:18:33 ============================================================================ +09:18:33 Calculate Source COMM Id = 2 +09:18:33 ============================================================================ +09:18:33 + + +waiting on router queue for slot.... +09:18:34 ============================================================================ +09:18:34 Slot Id : <406> +09:18:34 Transaction Type : REQUEST +09:18:34 Received From : +09:18:34 ============================================================================ +09:18:34 FNo. Len. Field Value +09:18:34 ============================================================================ +09:18:34 [ 1] [ 4] [0200] +09:18:34 [ 2] [ 16] [6213544001842738] +09:18:34 [ 3] [ 6] [010000] +09:18:34 [ 4] [ 12] [000100000000] +09:18:34 [ 7] [ 10] [0320091625] +09:18:34 [ 11] [ 6] [935235] +09:18:34 [ 12] [ 6] [091625] +09:18:34 [ 13] [ 4] [0320] +09:18:34 [ 15] [ 4] [0320] +09:18:34 [ 18] [ 4] [6011] +09:18:34 [ 19] [ 3] [418] +09:18:34 [ 22] [ 3] [021] +09:18:34 [ 25] [ 2] [01] +09:18:34 [ 28] [ 9] [D00002000] +09:18:34 [ 32] [ 6] [668899] +09:18:34 [ 35] [ 32] [6213544001842738=491212014273330] +09:18:34 [ 37] [ 12] [507901963402] +09:18:34 [ 41] [ 8] [03020019] +09:18:34 [ 42] [ 15] [APT ] +09:18:34 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:18:34 [ 49] [ 3] [418] +09:18:34 [ 52] [ 16] [2D27073CB752AD17] +09:18:34 ============================================================================ +09:18:34 + + +waiting on router queue for slot.... +09:18:34 Sending to : +09:18:34 ============================================================================ +09:18:34 Sending to : +09:18:34 ============================================================================ +09:18:34 ============================================================================ +09:18:34 Slot Id : <406> +09:18:34 Transaction Type : REQUEST +09:18:34 Received From : +09:18:34 ============================================================================ +09:18:34 FNo. Len. Field Value +09:18:34 ============================================================================ +09:18:34 [ 1] [ 4] [0200] +09:18:34 [ 2] [ 16] [6213544001842738] +09:18:34 [ 3] [ 6] [010000] +09:18:34 [ 4] [ 12] [000100000000] +09:18:34 [ 7] [ 10] [0320091625] +09:18:34 [ 11] [ 6] [935235] +09:18:34 [ 12] [ 6] [091625] +09:18:34 [ 13] [ 4] [0320] +09:18:34 [ 15] [ 4] [0320] +09:18:34 [ 18] [ 4] [6011] +09:18:34 [ 19] [ 3] [418] +09:18:34 [ 22] [ 3] [021] +09:18:34 [ 25] [ 2] [01] +09:18:34 [ 28] [ 9] [D00002000] +09:18:34 [ 32] [ 6] [668899] +09:18:34 [ 35] [ 32] [6213544001842738=491212014273330] +09:18:34 [ 37] [ 12] [507901963402] +09:18:34 [ 41] [ 8] [03020019] +09:18:34 [ 42] [ 15] [APT ] +09:18:34 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:18:34 [ 49] [ 3] [418] +09:18:34 [ 52] [ 16] [2D27073CB752AD17] +09:18:34 ============================================================================ +09:18:34 + + +waiting on router queue for slot.... +09:18:34 Sending to : +09:18:34 ============================================================================ +09:18:34 ============================================================================ +09:18:34 Slot Id : <406> +09:18:34 Transaction Type : REQUEST +09:18:34 Received From : +09:18:34 ============================================================================ +09:18:34 FNo. Len. Field Value +09:18:34 ============================================================================ +09:18:34 [ 1] [ 4] [0200] +09:18:34 [ 2] [ 16] [6213544001842738] +09:18:34 [ 3] [ 6] [010000] +09:18:34 [ 4] [ 12] [000100000000] +09:18:34 [ 7] [ 10] [0320091625] +09:18:34 [ 11] [ 6] [935235] +09:18:34 [ 12] [ 6] [091625] +09:18:34 [ 13] [ 4] [0320] +09:18:34 [ 15] [ 4] [0320] +09:18:34 [ 18] [ 4] [6011] +09:18:34 [ 19] [ 3] [418] +09:18:34 [ 22] [ 3] [021] +09:18:34 [ 25] [ 2] [01] +09:18:34 [ 28] [ 9] [D00002000] +09:18:34 [ 32] [ 6] [668899] +09:18:34 [ 35] [ 32] [6213544001842738=491212014273330] +09:18:34 [ 37] [ 12] [507901963402] +09:18:34 [ 41] [ 8] [03020019] +09:18:34 [ 42] [ 15] [APT ] +09:18:34 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:18:34 [ 49] [ 3] [418] +09:18:34 [ 52] [ 16] [9E870856DCDD6B1D] +09:18:34 ============================================================================ +09:18:34 + + +waiting on router queue for slot.... +09:18:34 Sending to : <0> +09:18:34 ============================================================================ +09:18:35 ============================================================================ +09:18:35 Slot Id : <406> +09:18:35 Transaction Type : RESPONSE +09:18:35 Received From : +09:18:35 ============================================================================ +09:18:35 FNo. Len. Field Value +09:18:35 ============================================================================ +09:18:35 [ 1] [ 4] [0210] +09:18:35 [ 2] [ 16] [6213544001842738] +09:18:35 [ 3] [ 6] [010000] +09:18:35 [ 4] [ 12] [000100000000] +09:18:35 [ 7] [ 10] [0320091625] +09:18:35 [ 11] [ 6] [935235] +09:18:35 [ 12] [ 6] [091625] +09:18:35 [ 13] [ 4] [0320] +09:18:35 [ 15] [ 4] [0320] +09:18:35 [ 18] [ 4] [6011] +09:18:35 [ 19] [ 3] [418] +09:18:35 [ 32] [ 6] [668899] +09:18:35 [ 35] [ 32] [6213544001842738=491212014273330] +09:18:35 [ 37] [ 12] [507901963402] +09:18:35 [ 38] [ 6] [848793] +09:18:35 [ 39] [ 2] [00] +09:18:35 [ 41] [ 8] [03020019] +09:18:35 [ 49] [ 3] [418] +09:18:35 [ 54] [ 40] [0001418C0063175537040002418C006317553704] +09:18:35 ============================================================================ +09:18:35 Sending to : +09:18:35 ============================================================================ +09:18:35 + + +waiting on router queue for slot.... +09:18:36 ============================================================================ +09:18:36 Slot Id : <406> +09:18:36 Transaction Type : RESPONSE +09:18:36 Received From : +09:18:36 ============================================================================ +09:18:36 FNo. Len. Field Value +09:18:36 ============================================================================ +09:18:36 [ 1] [ 4] [0210] +09:18:36 [ 2] [ 16] [6213544001842738] +09:18:36 [ 3] [ 6] [010000] +09:18:36 [ 4] [ 12] [000100000000] +09:18:36 [ 7] [ 10] [0320091625] +09:18:36 [ 11] [ 6] [935235] +09:18:36 [ 12] [ 6] [091625] +09:18:36 [ 13] [ 4] [0320] +09:18:36 [ 15] [ 4] [0320] +09:18:36 [ 18] [ 4] [6011] +09:18:36 [ 19] [ 3] [418] +09:18:36 [ 32] [ 6] [668899] +09:18:36 [ 35] [ 32] [6213544001842738=491212014273330] +09:18:36 [ 37] [ 12] [507901963402] +09:18:36 [ 38] [ 6] [848793] +09:18:36 [ 39] [ 2] [00] +09:18:36 [ 41] [ 8] [03020019] +09:18:36 [ 49] [ 3] [418] +09:18:36 [ 54] [ 40] [0001418C0063175537040002418C006317553704] +09:18:36 ============================================================================ +09:18:36 Calculate Source COMM Id = 4 +09:18:36 ============================================================================ +09:18:36 + + +waiting on router queue for slot.... +09:18:36 ============================================================================ +09:18:36 Slot Id : <418> +09:18:36 Transaction Type : REQUEST +09:18:36 Received From : +09:18:36 ============================================================================ +09:18:36 FNo. Len. Field Value +09:18:36 ============================================================================ +09:18:36 [ 1] [ 4] [0800] +09:18:36 [ 2] [ 5] [02531] +09:18:36 [ 3] [ 6] [579098] +09:18:36 [ 7] [ 10] [0320021836] +09:18:36 [ 11] [ 6] [806952] +09:18:36 [ 15] [ 10] [0320021836] +09:18:36 [ 37] [ 11] [57909806952] +09:18:36 [ 70] [ 3] [001] +09:18:36 ============================================================================ +09:18:36 + + +waiting on router queue for slot.... +09:18:36 ============================================================================ +09:18:36 Slot Id : <418> +09:18:36 Transaction Type : RESPONSE +09:18:36 Received From : +09:18:36 ============================================================================ +09:18:36 FNo. Len. Field Value +09:18:36 ============================================================================ +09:18:36 [ 1] [ 4] [0810] +09:18:36 [ 7] [ 10] [0320021836] +09:18:36 [ 11] [ 6] [806952] +09:18:36 [ 15] [ 4] [0320] +09:18:36 [ 37] [ 12] [57909806952] +09:18:36 [ 39] [ 2] [00] +09:18:36 [ 70] [ 3] [001] +09:18:36 ============================================================================ +09:18:36 Sending to : +09:18:36 ============================================================================ +09:18:36 + + +waiting on router queue for slot.... +09:18:44 ============================================================================ +09:18:44 Slot Id : <419> +09:18:44 Transaction Type : REQUEST +09:18:44 Received From : +09:18:44 ============================================================================ +09:18:44 FNo. Len. Field Value +09:18:44 ============================================================================ +09:18:44 [ 1] [ 4] [0800] +09:18:44 [ 7] [ 10] [0320021752] +09:18:44 [ 11] [ 6] [155598] +09:18:44 [ 70] [ 3] [301] +09:18:44 ============================================================================ +09:18:44 + + +waiting on router queue for slot.... +09:18:44 Sending to : +09:18:44 ============================================================================ +09:18:44 ============================================================================ +09:18:44 Slot Id : <419> +09:18:44 Transaction Type : RESPONSE +09:18:44 Received From : +09:18:44 ============================================================================ +09:18:44 FNo. Len. Field Value +09:18:44 ============================================================================ +09:18:44 [ 1] [ 4] [0810] +09:18:44 [ 7] [ 10] [0320021752] +09:18:44 [ 11] [ 6] [155598] +09:18:44 [ 39] [ 2] [00] +09:18:44 [ 70] [ 3] [301] +09:18:44 ============================================================================ +09:18:44 Calculate Source COMM Id = 2 +09:18:44 ============================================================================ +09:18:44 + + +waiting on router queue for slot.... +09:18:56 ============================================================================ +09:18:56 Slot Id : <411> +09:18:56 Transaction Type : REQUEST +09:18:56 Received From : +09:18:56 ============================================================================ +09:18:56 FNo. Len. Field Value +09:18:56 ============================================================================ +09:18:56 [ 1] [ 4] [0200] +09:18:56 [ 2] [ 16] [1808930800006587] +09:18:56 [ 3] [ 6] [011000] +09:18:56 [ 4] [ 12] [000020000000] +09:18:56 [ 7] [ 10] [0320091918] +09:18:56 [ 11] [ 6] [202826] +09:18:56 [ 12] [ 6] [090633] +09:18:56 [ 13] [ 4] [0320] +09:18:56 [ 14] [ 4] [1803] +09:18:56 [ 15] [ 4] [0320] +09:18:56 [ 18] [ 4] [6011] +09:18:56 [ 19] [ 3] [418] +09:18:56 [ 22] [ 3] [021] +09:18:56 [ 25] [ 2] [01] +09:18:56 [ 28] [ 9] [D00002000] +09:18:56 [ 32] [ 6] [198901] +09:18:56 [ 35] [ 27] [1808930800006587=1803500021] +09:18:56 [ 37] [ 12] [507909202826] +09:18:56 [ 41] [ 8] [01529019] +09:18:56 [ 42] [ 15] [000000041529019] +09:18:56 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +09:18:56 [ 49] [ 3] [418] +09:18:56 [ 52] [ 16] [1EDAEEF7F6001317] +09:18:56 ============================================================================ +09:18:56 + + +waiting on router queue for slot.... +09:18:56 Sending to : +09:18:56 ============================================================================ +09:18:56 Sending to : +09:18:56 ============================================================================ +09:18:56 ============================================================================ +09:18:56 Slot Id : <411> +09:18:56 Transaction Type : REQUEST +09:18:56 Received From : +09:18:56 ============================================================================ +09:18:56 FNo. Len. Field Value +09:18:56 ============================================================================ +09:18:56 [ 1] [ 4] [0200] +09:18:56 [ 2] [ 16] [1808930800006587] +09:18:56 [ 3] [ 6] [011000] +09:18:56 [ 4] [ 12] [000020000000] +09:18:56 [ 7] [ 10] [0320091918] +09:18:56 [ 11] [ 6] [202826] +09:18:56 [ 12] [ 6] [090633] +09:18:56 [ 13] [ 4] [0320] +09:18:56 [ 14] [ 4] [1803] +09:18:56 [ 15] [ 4] [0320] +09:18:56 [ 18] [ 4] [6011] +09:18:56 [ 19] [ 3] [418] +09:18:56 [ 22] [ 3] [021] +09:18:56 [ 25] [ 2] [01] +09:18:56 [ 28] [ 9] [D00002000] +09:18:56 [ 32] [ 6] [198901] +09:18:56 [ 35] [ 27] [1808930800006587=1803500021] +09:18:56 [ 37] [ 12] [507909202826] +09:18:56 [ 41] [ 8] [01529019] +09:18:56 [ 42] [ 15] [000000041529019] +09:18:56 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +09:18:56 [ 49] [ 3] [418] +09:18:56 [ 52] [ 16] [1EDAEEF7F6001317] +09:18:56 ============================================================================ +09:18:56 + + +waiting on router queue for slot.... +09:18:56 Sending to : +09:18:56 ============================================================================ +09:18:56 ============================================================================ +09:18:56 Slot Id : <411> +09:18:56 Transaction Type : REQUEST +09:18:56 Received From : +09:18:56 ============================================================================ +09:18:56 FNo. Len. Field Value +09:18:56 ============================================================================ +09:18:56 [ 1] [ 4] [0200] +09:18:56 [ 2] [ 16] [1808930800006587] +09:18:56 [ 3] [ 6] [011000] +09:18:56 [ 4] [ 12] [000020000000] +09:18:56 [ 7] [ 10] [0320091918] +09:18:56 [ 11] [ 6] [202826] +09:18:56 [ 12] [ 6] [090633] +09:18:56 [ 13] [ 4] [0320] +09:18:56 [ 14] [ 4] [1803] +09:18:56 [ 15] [ 4] [0320] +09:18:56 [ 18] [ 4] [6011] +09:18:56 [ 19] [ 3] [418] +09:18:56 [ 22] [ 3] [021] +09:18:56 [ 25] [ 2] [01] +09:18:56 [ 28] [ 9] [D00002000] +09:18:56 [ 32] [ 6] [198901] +09:18:56 [ 35] [ 27] [1808930800006587=1803500021] +09:18:56 [ 37] [ 12] [507909202826] +09:18:56 [ 41] [ 8] [01529019] +09:18:56 [ 42] [ 15] [000000041529019] +09:18:56 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +09:18:56 [ 49] [ 3] [418] +09:18:56 [ 52] [ 16] [646A5784022EF0AD] +09:18:56 ============================================================================ +09:18:56 + + +waiting on router queue for slot.... +09:18:57 Sending to : <2> +09:18:57 ============================================================================ +09:18:57 ============================================================================ +09:18:57 Slot Id : <407> +09:18:57 Transaction Type : REQUEST +09:18:57 Received From : +09:18:57 ============================================================================ +09:18:57 FNo. Len. Field Value +09:18:57 ============================================================================ +09:18:57 [ 1] [ 4] [0800] +09:18:57 [ 7] [ 10] [0320021803] +09:18:57 [ 11] [ 6] [155599] +09:18:57 [ 70] [ 3] [301] +09:18:57 ============================================================================ +09:18:57 + + +waiting on router queue for slot.... +09:18:57 Sending to : +09:18:57 ============================================================================ +09:18:57 ============================================================================ +09:18:57 Slot Id : <407> +09:18:57 Transaction Type : RESPONSE +09:18:57 Received From : +09:18:57 ============================================================================ +09:18:57 FNo. Len. Field Value +09:18:57 ============================================================================ +09:18:57 [ 1] [ 4] [0810] +09:18:57 [ 7] [ 10] [0320021803] +09:18:57 [ 11] [ 6] [155599] +09:18:57 [ 39] [ 2] [00] +09:18:57 [ 70] [ 3] [301] +09:18:57 ============================================================================ +09:18:57 Calculate Source COMM Id = 2 +09:18:57 ============================================================================ +09:18:57 + + +waiting on router queue for slot.... +09:19:03 ============================================================================ +09:19:03 Slot Id : <411> +09:19:03 Transaction Type : RESPONSE +09:19:03 Received From : +09:19:03 ============================================================================ +09:19:03 FNo. Len. Field Value +09:19:03 ============================================================================ +09:19:03 [ 1] [ 4] [0210] +09:19:03 [ 2] [ 16] [1808930800006587] +09:19:03 [ 3] [ 6] [011000] +09:19:03 [ 4] [ 12] [000020000000] +09:19:03 [ 6] [ 12] [000020000000] +09:19:03 [ 7] [ 10] [0320091918] +09:19:03 [ 11] [ 6] [202826] +09:19:03 [ 12] [ 6] [090633] +09:19:03 [ 13] [ 4] [0320] +09:19:03 [ 14] [ 4] [1803] +09:19:03 [ 18] [ 4] [6011] +09:19:03 [ 19] [ 3] [418] +09:19:03 [ 22] [ 3] [021] +09:19:03 [ 32] [ 6] [198901] +09:19:03 [ 35] [ 27] [1808930800006587=1803500021] +09:19:03 [ 37] [ 12] [507909202826] +09:19:03 [ 38] [ 6] [202826] +09:19:03 [ 39] [ 2] [00] +09:19:03 [ 41] [ 8] [01529019] +09:19:03 [ 49] [ 3] [418] +09:19:03 [ 52] [ 16] [646A5784022EF0AD] +09:19:03 [ 54] [ 20] [1001418C000011142800] +09:19:03 ============================================================================ +09:19:03 Sending to : +09:19:03 ============================================================================ +09:19:03 + + +waiting on router queue for slot.... +09:19:05 ============================================================================ +09:19:05 Slot Id : <411> +09:19:05 Transaction Type : RESPONSE +09:19:05 Received From : +09:19:05 ============================================================================ +09:19:05 FNo. Len. Field Value +09:19:05 ============================================================================ +09:19:05 [ 1] [ 4] [0210] +09:19:05 [ 2] [ 16] [1808930800006587] +09:19:05 [ 3] [ 6] [011000] +09:19:05 [ 4] [ 12] [000020000000] +09:19:05 [ 6] [ 12] [000020000000] +09:19:05 [ 7] [ 10] [0320091918] +09:19:05 [ 11] [ 6] [202826] +09:19:05 [ 12] [ 6] [090633] +09:19:05 [ 13] [ 4] [0320] +09:19:05 [ 14] [ 4] [1803] +09:19:05 [ 18] [ 4] [6011] +09:19:05 [ 19] [ 3] [418] +09:19:05 [ 22] [ 3] [021] +09:19:05 [ 32] [ 6] [198901] +09:19:05 [ 35] [ 27] [1808930800006587=1803500021] +09:19:05 [ 37] [ 12] [507909202826] +09:19:05 [ 38] [ 6] [202826] +09:19:05 [ 39] [ 2] [00] +09:19:05 [ 41] [ 8] [01529019] +09:19:05 [ 49] [ 3] [418] +09:19:05 [ 52] [ 16] [646A5784022EF0AD] +09:19:05 [ 54] [ 20] [1001418C000011142800] +09:19:05 ============================================================================ +09:19:05 Calculate Source COMM Id = 5 +09:19:05 ============================================================================ +09:19:05 + + +waiting on router queue for slot.... +09:19:07 ============================================================================ +09:19:07 Slot Id : <380> +09:19:07 Transaction Type : REQUEST +09:19:07 Received From : +09:19:07 ============================================================================ +09:19:07 FNo. Len. Field Value +09:19:07 ============================================================================ +09:19:07 [ 1] [ 4] [0800] +09:19:07 [ 7] [ 10] [0320163056] +09:19:07 [ 11] [ 6] [093056] +09:19:07 [ 37] [ 12] [57909093056] +09:19:07 [ 70] [ 3] [301] +09:19:07 ============================================================================ +09:19:07 + + +waiting on router queue for slot.... +09:19:07 Sending to : +09:19:07 ============================================================================ +09:19:07 ============================================================================ +09:19:07 Slot Id : <380> +09:19:07 Transaction Type : RESPONSE +09:19:07 Received From : +09:19:07 ============================================================================ +09:19:07 FNo. Len. Field Value +09:19:07 ============================================================================ +09:19:07 [ 1] [ 4] [0810] +09:19:07 [ 7] [ 10] [0320163056] +09:19:07 [ 11] [ 6] [093056] +09:19:07 [ 37] [ 12] [579090930560] +09:19:07 [ 39] [ 2] [00] +09:19:07 [ 70] [ 3] [810] +09:19:07 ============================================================================ +09:19:07 Calculate Source COMM Id = 6 +09:19:07 ============================================================================ +09:19:07 + + +waiting on router queue for slot.... +09:19:08 ============================================================================ +09:19:08 Slot Id : <384> +09:19:08 Transaction Type : REQUEST +09:19:08 Received From : +09:19:08 ============================================================================ +09:19:08 FNo. Len. Field Value +09:19:08 ============================================================================ +09:19:08 [ 1] [ 4] [0800] +09:19:08 [ 7] [ 10] [0320021816] +09:19:08 [ 11] [ 6] [155600] +09:19:08 [ 70] [ 3] [301] +09:19:08 ============================================================================ +09:19:08 + + +waiting on router queue for slot.... +09:19:08 Sending to : +09:19:08 ============================================================================ +09:19:08 ============================================================================ +09:19:08 Slot Id : <384> +09:19:08 Transaction Type : RESPONSE +09:19:08 Received From : +09:19:08 ============================================================================ +09:19:08 FNo. Len. Field Value +09:19:08 ============================================================================ +09:19:08 [ 1] [ 4] [0810] +09:19:08 [ 7] [ 10] [0320021816] +09:19:08 [ 11] [ 6] [155600] +09:19:08 [ 39] [ 2] [00] +09:19:08 [ 70] [ 3] [301] +09:19:08 ============================================================================ +09:19:08 Calculate Source COMM Id = 2 +09:19:08 ============================================================================ +09:19:08 + + +waiting on router queue for slot.... +09:19:10 ============================================================================ +09:19:10 Slot Id : <416> +09:19:10 Transaction Type : REQUEST +09:19:10 Received From : +09:19:10 ============================================================================ +09:19:10 FNo. Len. Field Value +09:19:10 ============================================================================ +09:19:10 [ 1] [ 4] [0200] +09:19:10 [ 2] [ 16] [6213545000627228] +09:19:10 [ 3] [ 6] [010000] +09:19:10 [ 4] [ 12] [000010000000] +09:19:10 [ 7] [ 10] [0320021817] +09:19:10 [ 11] [ 6] [267473] +09:19:10 [ 12] [ 6] [091817] +09:19:10 [ 13] [ 4] [0320] +09:19:10 [ 14] [ 4] [4912] +09:19:10 [ 15] [ 4] [0320] +09:19:10 [ 18] [ 4] [6011] +09:19:10 [ 19] [ 3] [418] +09:19:10 [ 22] [ 3] [021] +09:19:10 [ 25] [ 2] [01] +09:19:10 [ 28] [ 9] [D00002000] +09:19:10 [ 32] [ 6] [180893] +09:19:10 [ 35] [ 32] [6213545000627228=491212012722655] +09:19:10 [ 37] [ 12] [507902267473] +09:19:10 [ 41] [ 8] [0531VTHH] +09:19:10 [ 42] [ 15] [999999 ] +09:19:10 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:19:10 [ 49] [ 3] [418] +09:19:10 [ 52] [ 16] [0AAA2B1B06EE06C0] +09:19:10 ============================================================================ +09:19:10 + + +waiting on router queue for slot.... +09:19:10 Sending to : +09:19:10 ============================================================================ +09:19:10 Sending to : +09:19:10 ============================================================================ +09:19:10 ============================================================================ +09:19:10 Slot Id : <416> +09:19:10 Transaction Type : REQUEST +09:19:10 Received From : +09:19:10 ============================================================================ +09:19:10 FNo. Len. Field Value +09:19:10 ============================================================================ +09:19:10 [ 1] [ 4] [0200] +09:19:10 [ 2] [ 16] [6213545000627228] +09:19:10 [ 3] [ 6] [010000] +09:19:10 [ 4] [ 12] [000010000000] +09:19:10 [ 7] [ 10] [0320021817] +09:19:10 [ 11] [ 6] [267473] +09:19:10 [ 12] [ 6] [091817] +09:19:10 [ 13] [ 4] [0320] +09:19:10 [ 14] [ 4] [4912] +09:19:10 [ 15] [ 4] [0320] +09:19:10 [ 18] [ 4] [6011] +09:19:10 [ 19] [ 3] [418] +09:19:10 [ 22] [ 3] [021] +09:19:10 [ 25] [ 2] [01] +09:19:10 [ 28] [ 9] [D00002000] +09:19:10 [ 32] [ 6] [180893] +09:19:10 [ 35] [ 32] [6213545000627228=491212012722655] +09:19:10 [ 37] [ 12] [507902267473] +09:19:10 [ 41] [ 8] [0531VTHH] +09:19:10 [ 42] [ 15] [999999 ] +09:19:10 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:19:10 [ 49] [ 3] [418] +09:19:10 [ 52] [ 16] [0AAA2B1B06EE06C0] +09:19:10 ============================================================================ +09:19:10 + + +waiting on router queue for slot.... +09:19:10 Sending to : +09:19:10 ============================================================================ +09:19:10 ============================================================================ +09:19:10 Slot Id : <416> +09:19:10 Transaction Type : REQUEST +09:19:10 Received From : +09:19:10 ============================================================================ +09:19:10 FNo. Len. Field Value +09:19:10 ============================================================================ +09:19:10 [ 1] [ 4] [0200] +09:19:10 [ 2] [ 16] [6213545000627228] +09:19:10 [ 3] [ 6] [010000] +09:19:10 [ 4] [ 12] [000010000000] +09:19:10 [ 7] [ 10] [0320021817] +09:19:10 [ 11] [ 6] [267473] +09:19:10 [ 12] [ 6] [091817] +09:19:10 [ 13] [ 4] [0320] +09:19:10 [ 14] [ 4] [4912] +09:19:10 [ 15] [ 4] [0320] +09:19:10 [ 18] [ 4] [6011] +09:19:10 [ 19] [ 3] [418] +09:19:10 [ 22] [ 3] [021] +09:19:10 [ 25] [ 2] [01] +09:19:10 [ 28] [ 9] [D00002000] +09:19:10 [ 32] [ 6] [180893] +09:19:10 [ 35] [ 32] [6213545000627228=491212012722655] +09:19:10 [ 37] [ 12] [507902267473] +09:19:10 [ 41] [ 8] [0531VTHH] +09:19:10 [ 42] [ 15] [999999 ] +09:19:10 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:19:10 [ 49] [ 3] [418] +09:19:10 [ 52] [ 16] [1C70EE6DDA48D408] +09:19:10 ============================================================================ +09:19:10 + + +waiting on router queue for slot.... +09:19:10 Sending to : <0> +09:19:10 ============================================================================ +09:19:11 ============================================================================ +09:19:11 Slot Id : <416> +09:19:11 Transaction Type : RESPONSE +09:19:11 Received From : +09:19:11 ============================================================================ +09:19:11 FNo. Len. Field Value +09:19:11 ============================================================================ +09:19:11 [ 1] [ 4] [0210] +09:19:11 [ 2] [ 16] [6213545000627228] +09:19:11 [ 3] [ 6] [010000] +09:19:11 [ 4] [ 12] [000010000000] +09:19:11 [ 7] [ 10] [0320021817] +09:19:11 [ 11] [ 6] [267473] +09:19:11 [ 12] [ 6] [091817] +09:19:11 [ 13] [ 4] [0320] +09:19:11 [ 15] [ 4] [0320] +09:19:11 [ 18] [ 4] [6011] +09:19:11 [ 19] [ 3] [418] +09:19:11 [ 32] [ 6] [180893] +09:19:11 [ 35] [ 32] [6213545000627228=491212012722655] +09:19:11 [ 37] [ 12] [507902267473] +09:19:11 [ 38] [ 6] [839202] +09:19:11 [ 39] [ 2] [00] +09:19:11 [ 41] [ 8] [0531VTHH] +09:19:11 [ 49] [ 3] [418] +09:19:11 [ 54] [ 40] [0001418C0000407763290002418C000040776329] +09:19:11 ============================================================================ +09:19:11 Sending to : +09:19:11 ============================================================================ +09:19:11 + + +waiting on router queue for slot.... +09:19:12 ============================================================================ +09:19:12 Slot Id : <416> +09:19:12 Transaction Type : RESPONSE +09:19:12 Received From : +09:19:12 ============================================================================ +09:19:12 FNo. Len. Field Value +09:19:12 ============================================================================ +09:19:12 [ 1] [ 4] [0210] +09:19:12 [ 2] [ 16] [6213545000627228] +09:19:12 [ 3] [ 6] [010000] +09:19:12 [ 4] [ 12] [000010000000] +09:19:12 [ 7] [ 10] [0320021817] +09:19:12 [ 11] [ 6] [267473] +09:19:12 [ 12] [ 6] [091817] +09:19:12 [ 13] [ 4] [0320] +09:19:12 [ 15] [ 4] [0320] +09:19:12 [ 18] [ 4] [6011] +09:19:12 [ 19] [ 3] [418] +09:19:12 [ 32] [ 6] [180893] +09:19:12 [ 35] [ 32] [6213545000627228=491212012722655] +09:19:12 [ 37] [ 12] [507902267473] +09:19:12 [ 38] [ 6] [839202] +09:19:12 [ 39] [ 2] [00] +09:19:12 [ 41] [ 8] [0531VTHH] +09:19:12 [ 49] [ 3] [418] +09:19:12 [ 54] [ 40] [0001418C0000407763290002418C000040776329] +09:19:12 ============================================================================ +09:19:12 Calculate Source COMM Id = 2 +09:19:12 ============================================================================ +09:19:12 + + +waiting on router queue for slot.... +09:19:27 ============================================================================ +09:19:27 Slot Id : <401> +09:19:27 Transaction Type : REQUEST +09:19:27 Received From : +09:19:27 ============================================================================ +09:19:27 FNo. Len. Field Value +09:19:27 ============================================================================ +09:19:27 [ 1] [ 4] [0800] +09:19:27 [ 7] [ 10] [0320021835] +09:19:27 [ 11] [ 6] [155601] +09:19:27 [ 70] [ 3] [301] +09:19:27 ============================================================================ +09:19:27 + + +waiting on router queue for slot.... +09:19:27 Sending to : +09:19:27 ============================================================================ +09:19:27 ============================================================================ +09:19:27 Slot Id : <401> +09:19:27 Transaction Type : RESPONSE +09:19:27 Received From : +09:19:27 ============================================================================ +09:19:27 FNo. Len. Field Value +09:19:27 ============================================================================ +09:19:27 [ 1] [ 4] [0810] +09:19:27 [ 7] [ 10] [0320021835] +09:19:27 [ 11] [ 6] [155601] +09:19:27 [ 39] [ 2] [00] +09:19:27 [ 70] [ 3] [301] +09:19:27 ============================================================================ +09:19:27 Calculate Source COMM Id = 2 +09:19:27 ============================================================================ +09:19:27 + + +waiting on router queue for slot.... +09:19:38 ============================================================================ +09:19:38 Slot Id : <381> +09:19:38 Transaction Type : REQUEST +09:19:38 Received From : +09:19:38 ============================================================================ +09:19:38 FNo. Len. Field Value +09:19:38 ============================================================================ +09:19:38 [ 1] [ 4] [0800] +09:19:38 [ 2] [ 5] [02531] +09:19:38 [ 3] [ 6] [579098] +09:19:38 [ 7] [ 10] [0320021938] +09:19:38 [ 11] [ 6] [806953] +09:19:38 [ 15] [ 10] [0320021938] +09:19:38 [ 37] [ 11] [57909806953] +09:19:38 [ 70] [ 3] [001] +09:19:38 ============================================================================ +09:19:38 + + +waiting on router queue for slot.... +09:19:38 ============================================================================ +09:19:38 Slot Id : <381> +09:19:38 Transaction Type : RESPONSE +09:19:38 Received From : +09:19:38 ============================================================================ +09:19:38 FNo. Len. Field Value +09:19:38 ============================================================================ +09:19:38 [ 1] [ 4] [0810] +09:19:38 [ 7] [ 10] [0320021938] +09:19:38 [ 11] [ 6] [806953] +09:19:38 [ 15] [ 4] [0320] +09:19:38 [ 37] [ 12] [57909806953] +09:19:38 [ 39] [ 2] [00] +09:19:38 [ 70] [ 3] [001] +09:19:38 ============================================================================ +09:19:38 Sending to : +09:19:38 ============================================================================ +09:19:38 + + +waiting on router queue for slot.... +09:19:40 ============================================================================ +09:19:40 Slot Id : <420> +09:19:40 Transaction Type : REQUEST +09:19:40 Received From : +09:19:40 ============================================================================ +09:19:40 FNo. Len. Field Value +09:19:40 ============================================================================ +09:19:40 [ 1] [ 4] [0800] +09:19:40 [ 7] [ 10] [0320021847] +09:19:40 [ 11] [ 6] [155602] +09:19:40 [ 70] [ 3] [301] +09:19:40 ============================================================================ +09:19:40 + + +waiting on router queue for slot.... +09:19:40 Sending to : +09:19:40 ============================================================================ +09:19:40 ============================================================================ +09:19:40 Slot Id : <420> +09:19:40 Transaction Type : RESPONSE +09:19:40 Received From : +09:19:40 ============================================================================ +09:19:40 FNo. Len. Field Value +09:19:40 ============================================================================ +09:19:40 [ 1] [ 4] [0810] +09:19:40 [ 7] [ 10] [0320021847] +09:19:40 [ 11] [ 6] [155602] +09:19:40 [ 39] [ 2] [00] +09:19:40 [ 70] [ 3] [301] +09:19:40 ============================================================================ +09:19:40 Calculate Source COMM Id = 2 +09:19:40 ============================================================================ +09:19:40 + + +waiting on router queue for slot.... +09:19:42 ============================================================================ +09:19:42 Slot Id : <415> +09:19:42 Transaction Type : REQUEST +09:19:42 Received From : +09:19:42 ============================================================================ +09:19:42 FNo. Len. Field Value +09:19:42 ============================================================================ +09:19:42 [ 1] [ 4] [0200] +09:19:42 [ 2] [ 16] [6213544001842738] +09:19:42 [ 3] [ 6] [010000] +09:19:42 [ 4] [ 12] [000100000000] +09:19:42 [ 7] [ 10] [0320091734] +09:19:42 [ 11] [ 6] [935269] +09:19:42 [ 12] [ 6] [091734] +09:19:42 [ 13] [ 4] [0320] +09:19:42 [ 15] [ 4] [0320] +09:19:42 [ 18] [ 4] [6011] +09:19:42 [ 19] [ 3] [418] +09:19:42 [ 22] [ 3] [021] +09:19:42 [ 25] [ 2] [01] +09:19:42 [ 28] [ 9] [D00002000] +09:19:42 [ 32] [ 6] [668899] +09:19:42 [ 35] [ 32] [6213544001842738=491212014273330] +09:19:42 [ 37] [ 12] [507901963404] +09:19:42 [ 41] [ 8] [03020019] +09:19:42 [ 42] [ 15] [APT ] +09:19:42 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:19:42 [ 49] [ 3] [418] +09:19:42 [ 52] [ 16] [2D27073CB752AD17] +09:19:42 ============================================================================ +09:19:42 + + +waiting on router queue for slot.... +09:19:42 Sending to : +09:19:42 ============================================================================ +09:19:42 Sending to : +09:19:42 ============================================================================ +09:19:43 ============================================================================ +09:19:43 Slot Id : <398> +09:19:43 Transaction Type : REQUEST +09:19:43 Received From : +09:19:43 ============================================================================ +09:19:43 FNo. Len. Field Value +09:19:43 ============================================================================ +09:19:43 [ 1] [ 4] [0200] +09:19:43 [ 2] [ 16] [6213545000740435] +09:19:43 [ 3] [ 6] [010000] +09:19:43 [ 4] [ 12] [000100000000] +09:19:43 [ 7] [ 10] [0320091734] +09:19:43 [ 11] [ 6] [935270] +09:19:43 [ 12] [ 6] [091734] +09:19:43 [ 13] [ 4] [0320] +09:19:43 [ 15] [ 4] [0320] +09:19:43 [ 18] [ 4] [6011] +09:19:43 [ 19] [ 3] [418] +09:19:43 [ 22] [ 3] [021] +09:19:43 [ 25] [ 2] [01] +09:19:43 [ 28] [ 9] [D00002000] +09:19:43 [ 32] [ 6] [668899] +09:19:43 [ 35] [ 32] [6213545000740435=491212014043690] +09:19:43 [ 37] [ 12] [507901614438] +09:19:43 [ 41] [ 8] [03001007] +09:19:43 [ 42] [ 15] [APT ] +09:19:43 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:19:43 [ 49] [ 3] [418] +09:19:43 [ 52] [ 16] [EB51296C870BC6B0] +09:19:43 ============================================================================ +09:19:43 + + +waiting on router queue for slot.... +09:19:43 Sending to : +09:19:43 ============================================================================ +09:19:43 Sending to : +09:19:43 ============================================================================ +09:19:43 ============================================================================ +09:19:43 Slot Id : <415> +09:19:43 Transaction Type : REQUEST +09:19:43 Received From : +09:19:43 ============================================================================ +09:19:43 FNo. Len. Field Value +09:19:43 ============================================================================ +09:19:43 [ 1] [ 4] [0200] +09:19:43 [ 2] [ 16] [6213544001842738] +09:19:43 [ 3] [ 6] [010000] +09:19:43 [ 4] [ 12] [000100000000] +09:19:43 [ 7] [ 10] [0320091734] +09:19:43 [ 11] [ 6] [935269] +09:19:43 [ 12] [ 6] [091734] +09:19:43 [ 13] [ 4] [0320] +09:19:43 [ 15] [ 4] [0320] +09:19:43 [ 18] [ 4] [6011] +09:19:43 [ 19] [ 3] [418] +09:19:43 [ 22] [ 3] [021] +09:19:43 [ 25] [ 2] [01] +09:19:43 [ 28] [ 9] [D00002000] +09:19:43 [ 32] [ 6] [668899] +09:19:43 [ 35] [ 32] [6213544001842738=491212014273330] +09:19:43 [ 37] [ 12] [507901963404] +09:19:43 [ 41] [ 8] [03020019] +09:19:43 [ 42] [ 15] [APT ] +09:19:43 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:19:43 [ 49] [ 3] [418] +09:19:43 [ 52] [ 16] [2D27073CB752AD17] +09:19:43 ============================================================================ +09:19:43 + + +waiting on router queue for slot.... +09:19:43 Sending to : +09:19:43 ============================================================================ +09:19:43 ============================================================================ +09:19:43 Slot Id : <415> +09:19:43 Transaction Type : REQUEST +09:19:43 Received From : +09:19:43 ============================================================================ +09:19:43 FNo. Len. Field Value +09:19:43 ============================================================================ +09:19:43 [ 1] [ 4] [0200] +09:19:43 [ 2] [ 16] [6213544001842738] +09:19:43 [ 3] [ 6] [010000] +09:19:43 [ 4] [ 12] [000100000000] +09:19:43 [ 7] [ 10] [0320091734] +09:19:43 [ 11] [ 6] [935269] +09:19:43 [ 12] [ 6] [091734] +09:19:43 [ 13] [ 4] [0320] +09:19:43 [ 15] [ 4] [0320] +09:19:43 [ 18] [ 4] [6011] +09:19:43 [ 19] [ 3] [418] +09:19:43 [ 22] [ 3] [021] +09:19:43 [ 25] [ 2] [01] +09:19:43 [ 28] [ 9] [D00002000] +09:19:43 [ 32] [ 6] [668899] +09:19:43 [ 35] [ 32] [6213544001842738=491212014273330] +09:19:43 [ 37] [ 12] [507901963404] +09:19:43 [ 41] [ 8] [03020019] +09:19:43 [ 42] [ 15] [APT ] +09:19:43 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:19:43 [ 49] [ 3] [418] +09:19:43 [ 52] [ 16] [9E870856DCDD6B1D] +09:19:43 ============================================================================ +09:19:43 + + +waiting on router queue for slot.... +09:19:43 Sending to : <0> +09:19:43 ============================================================================ +09:19:43 ============================================================================ +09:19:43 Slot Id : <398> +09:19:43 Transaction Type : REQUEST +09:19:43 Received From : +09:19:43 ============================================================================ +09:19:43 FNo. Len. Field Value +09:19:43 ============================================================================ +09:19:43 [ 1] [ 4] [0200] +09:19:43 [ 2] [ 16] [6213545000740435] +09:19:43 [ 3] [ 6] [010000] +09:19:43 [ 4] [ 12] [000100000000] +09:19:43 [ 7] [ 10] [0320091734] +09:19:43 [ 11] [ 6] [935270] +09:19:43 [ 12] [ 6] [091734] +09:19:43 [ 13] [ 4] [0320] +09:19:43 [ 15] [ 4] [0320] +09:19:43 [ 18] [ 4] [6011] +09:19:43 [ 19] [ 3] [418] +09:19:43 [ 22] [ 3] [021] +09:19:43 [ 25] [ 2] [01] +09:19:43 [ 28] [ 9] [D00002000] +09:19:43 [ 32] [ 6] [668899] +09:19:43 [ 35] [ 32] [6213545000740435=491212014043690] +09:19:43 [ 37] [ 12] [507901614438] +09:19:43 [ 41] [ 8] [03001007] +09:19:43 [ 42] [ 15] [APT ] +09:19:43 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:19:43 [ 49] [ 3] [418] +09:19:43 [ 52] [ 16] [EB51296C870BC6B0] +09:19:43 ============================================================================ +09:19:43 + + +waiting on router queue for slot.... +09:19:43 Sending to : +09:19:43 ============================================================================ +09:19:43 ============================================================================ +09:19:43 Slot Id : <398> +09:19:43 Transaction Type : REQUEST +09:19:43 Received From : +09:19:43 ============================================================================ +09:19:43 FNo. Len. Field Value +09:19:43 ============================================================================ +09:19:43 [ 1] [ 4] [0200] +09:19:43 [ 2] [ 16] [6213545000740435] +09:19:43 [ 3] [ 6] [010000] +09:19:43 [ 4] [ 12] [000100000000] +09:19:43 [ 7] [ 10] [0320091734] +09:19:43 [ 11] [ 6] [935270] +09:19:43 [ 12] [ 6] [091734] +09:19:43 [ 13] [ 4] [0320] +09:19:43 [ 15] [ 4] [0320] +09:19:43 [ 18] [ 4] [6011] +09:19:43 [ 19] [ 3] [418] +09:19:43 [ 22] [ 3] [021] +09:19:43 [ 25] [ 2] [01] +09:19:43 [ 28] [ 9] [D00002000] +09:19:43 [ 32] [ 6] [668899] +09:19:43 [ 35] [ 32] [6213545000740435=491212014043690] +09:19:43 [ 37] [ 12] [507901614438] +09:19:43 [ 41] [ 8] [03001007] +09:19:43 [ 42] [ 15] [APT ] +09:19:43 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:19:43 [ 49] [ 3] [418] +09:19:43 [ 52] [ 16] [1D06F3EDDE644963] +09:19:43 ============================================================================ +09:19:43 + + +waiting on router queue for slot.... +09:19:43 Sending to : <0> +09:19:43 ============================================================================ +09:19:43 ============================================================================ +09:19:43 Slot Id : <415> +09:19:43 Transaction Type : RESPONSE +09:19:43 Received From : +09:19:43 ============================================================================ +09:19:43 FNo. Len. Field Value +09:19:43 ============================================================================ +09:19:43 [ 1] [ 4] [0210] +09:19:43 [ 2] [ 16] [6213544001842738] +09:19:43 [ 3] [ 6] [010000] +09:19:43 [ 4] [ 12] [000100000000] +09:19:43 [ 7] [ 10] [0320091734] +09:19:43 [ 11] [ 6] [935269] +09:19:43 [ 12] [ 6] [091734] +09:19:43 [ 13] [ 4] [0320] +09:19:43 [ 15] [ 4] [0320] +09:19:43 [ 18] [ 4] [6011] +09:19:43 [ 19] [ 3] [418] +09:19:43 [ 32] [ 6] [668899] +09:19:43 [ 35] [ 32] [6213544001842738=491212014273330] +09:19:43 [ 37] [ 12] [507901963404] +09:19:43 [ 38] [ 6] [450842] +09:19:43 [ 39] [ 2] [00] +09:19:43 [ 41] [ 8] [03020019] +09:19:43 [ 49] [ 3] [418] +09:19:43 [ 54] [ 40] [0001418C0062173537040002418C006217353704] +09:19:43 ============================================================================ +09:19:43 Sending to : +09:19:43 ============================================================================ +09:19:43 + + +waiting on router queue for slot.... +09:19:44 ============================================================================ +09:19:44 Slot Id : <398> +09:19:44 Transaction Type : RESPONSE +09:19:44 Received From : +09:19:44 ============================================================================ +09:19:44 FNo. Len. Field Value +09:19:44 ============================================================================ +09:19:44 [ 1] [ 4] [0210] +09:19:44 [ 2] [ 16] [6213545000740435] +09:19:44 [ 3] [ 6] [010000] +09:19:44 [ 4] [ 12] [000100000000] +09:19:44 [ 7] [ 10] [0320091734] +09:19:44 [ 11] [ 6] [935270] +09:19:44 [ 12] [ 6] [091734] +09:19:44 [ 13] [ 4] [0320] +09:19:44 [ 15] [ 4] [0320] +09:19:44 [ 18] [ 4] [6011] +09:19:44 [ 19] [ 3] [418] +09:19:44 [ 32] [ 6] [668899] +09:19:44 [ 35] [ 32] [6213545000740435=491212014043690] +09:19:44 [ 37] [ 12] [507901614438] +09:19:44 [ 38] [ 6] [640857] +09:19:44 [ 39] [ 2] [00] +09:19:44 [ 41] [ 8] [03001007] +09:19:44 [ 49] [ 3] [418] +09:19:44 [ 54] [ 40] [0001418C0004083144490002418C000408314449] +09:19:44 ============================================================================ +09:19:44 Sending to : +09:19:44 ============================================================================ +09:19:44 + + +waiting on router queue for slot.... +09:19:45 ============================================================================ +09:19:45 Slot Id : <415> +09:19:45 Transaction Type : RESPONSE +09:19:45 Received From : +09:19:45 ============================================================================ +09:19:45 FNo. Len. Field Value +09:19:45 ============================================================================ +09:19:45 [ 1] [ 4] [0210] +09:19:45 [ 2] [ 16] [6213544001842738] +09:19:45 [ 3] [ 6] [010000] +09:19:45 [ 4] [ 12] [000100000000] +09:19:45 [ 7] [ 10] [0320091734] +09:19:45 [ 11] [ 6] [935269] +09:19:45 [ 12] [ 6] [091734] +09:19:45 [ 13] [ 4] [0320] +09:19:45 [ 15] [ 4] [0320] +09:19:45 [ 18] [ 4] [6011] +09:19:45 [ 19] [ 3] [418] +09:19:45 [ 32] [ 6] [668899] +09:19:45 [ 35] [ 32] [6213544001842738=491212014273330] +09:19:45 [ 37] [ 12] [507901963404] +09:19:45 [ 38] [ 6] [450842] +09:19:45 [ 39] [ 2] [00] +09:19:45 [ 41] [ 8] [03020019] +09:19:45 [ 49] [ 3] [418] +09:19:45 [ 54] [ 40] [0001418C0062173537040002418C006217353704] +09:19:45 ============================================================================ +09:19:45 Calculate Source COMM Id = 4 +09:19:45 ============================================================================ +09:19:45 + + +waiting on router queue for slot.... +09:19:46 ============================================================================ +09:19:46 Slot Id : <398> +09:19:46 Transaction Type : RESPONSE +09:19:46 Received From : +09:19:46 ============================================================================ +09:19:46 FNo. Len. Field Value +09:19:46 ============================================================================ +09:19:46 [ 1] [ 4] [0210] +09:19:46 [ 2] [ 16] [6213545000740435] +09:19:46 [ 3] [ 6] [010000] +09:19:46 [ 4] [ 12] [000100000000] +09:19:46 [ 7] [ 10] [0320091734] +09:19:46 [ 11] [ 6] [935270] +09:19:46 [ 12] [ 6] [091734] +09:19:46 [ 13] [ 4] [0320] +09:19:46 [ 15] [ 4] [0320] +09:19:46 [ 18] [ 4] [6011] +09:19:46 [ 19] [ 3] [418] +09:19:46 [ 32] [ 6] [668899] +09:19:46 [ 35] [ 32] [6213545000740435=491212014043690] +09:19:46 [ 37] [ 12] [507901614438] +09:19:46 [ 38] [ 6] [640857] +09:19:46 [ 39] [ 2] [00] +09:19:46 [ 41] [ 8] [03001007] +09:19:46 [ 49] [ 3] [418] +09:19:46 [ 54] [ 40] [0001418C0004083144490002418C000408314449] +09:19:46 ============================================================================ +09:19:46 Calculate Source COMM Id = 4 +09:19:46 ============================================================================ +09:19:46 + + +waiting on router queue for slot.... +09:19:53 ============================================================================ +09:19:53 Slot Id : <425> +09:19:53 Transaction Type : REQUEST +09:19:53 Received From : +09:19:53 ============================================================================ +09:19:53 FNo. Len. Field Value +09:19:53 ============================================================================ +09:19:53 [ 1] [ 4] [0200] +09:19:53 [ 2] [ 16] [1808930800006587] +09:19:53 [ 3] [ 6] [301000] +09:19:53 [ 4] [ 12] [000000000000] +09:19:53 [ 7] [ 10] [0320092015] +09:19:53 [ 11] [ 6] [202843] +09:19:53 [ 12] [ 6] [090730] +09:19:53 [ 13] [ 4] [0320] +09:19:53 [ 14] [ 4] [1803] +09:19:53 [ 15] [ 4] [0320] +09:19:53 [ 18] [ 4] [6011] +09:19:53 [ 19] [ 3] [418] +09:19:53 [ 22] [ 3] [021] +09:19:53 [ 25] [ 2] [01] +09:19:53 [ 28] [ 9] [D00000000] +09:19:53 [ 32] [ 6] [198901] +09:19:53 [ 35] [ 27] [1808930800006587=1803500021] +09:19:53 [ 37] [ 12] [507909202843] +09:19:53 [ 41] [ 8] [01529019] +09:19:53 [ 42] [ 15] [000000041529019] +09:19:53 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +09:19:53 [ 49] [ 3] [418] +09:19:53 [ 52] [ 16] [1EDAEEF7F6001317] +09:19:53 ============================================================================ +09:19:53 + + +waiting on router queue for slot.... +09:19:53 Sending to : +09:19:53 ============================================================================ +09:19:53 Sending to : +09:19:53 ============================================================================ +09:19:53 ============================================================================ +09:19:53 Slot Id : <425> +09:19:53 Transaction Type : REQUEST +09:19:53 Received From : +09:19:53 ============================================================================ +09:19:53 FNo. Len. Field Value +09:19:53 ============================================================================ +09:19:53 [ 1] [ 4] [0200] +09:19:53 [ 2] [ 16] [1808930800006587] +09:19:53 [ 3] [ 6] [301000] +09:19:53 [ 4] [ 12] [000000000000] +09:19:53 [ 7] [ 10] [0320092015] +09:19:53 [ 11] [ 6] [202843] +09:19:53 [ 12] [ 6] [090730] +09:19:53 [ 13] [ 4] [0320] +09:19:53 [ 14] [ 4] [1803] +09:19:53 [ 15] [ 4] [0320] +09:19:53 [ 18] [ 4] [6011] +09:19:53 [ 19] [ 3] [418] +09:19:53 [ 22] [ 3] [021] +09:19:53 [ 25] [ 2] [01] +09:19:53 [ 28] [ 9] [D00000000] +09:19:53 [ 32] [ 6] [198901] +09:19:53 [ 35] [ 27] [1808930800006587=1803500021] +09:19:53 [ 37] [ 12] [507909202843] +09:19:53 [ 41] [ 8] [01529019] +09:19:53 [ 42] [ 15] [000000041529019] +09:19:53 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +09:19:53 [ 49] [ 3] [418] +09:19:53 [ 52] [ 16] [1EDAEEF7F6001317] +09:19:53 ============================================================================ +09:19:53 + + +waiting on router queue for slot.... +09:19:53 Sending to : +09:19:53 ============================================================================ +09:19:53 ============================================================================ +09:19:53 Slot Id : <425> +09:19:53 Transaction Type : REQUEST +09:19:53 Received From : +09:19:53 ============================================================================ +09:19:53 FNo. Len. Field Value +09:19:53 ============================================================================ +09:19:53 [ 1] [ 4] [0200] +09:19:53 [ 2] [ 16] [1808930800006587] +09:19:53 [ 3] [ 6] [301000] +09:19:53 [ 4] [ 12] [000000000000] +09:19:53 [ 7] [ 10] [0320092015] +09:19:53 [ 11] [ 6] [202843] +09:19:53 [ 12] [ 6] [090730] +09:19:53 [ 13] [ 4] [0320] +09:19:53 [ 14] [ 4] [1803] +09:19:53 [ 15] [ 4] [0320] +09:19:53 [ 18] [ 4] [6011] +09:19:53 [ 19] [ 3] [418] +09:19:53 [ 22] [ 3] [021] +09:19:53 [ 25] [ 2] [01] +09:19:53 [ 28] [ 9] [D00000000] +09:19:53 [ 32] [ 6] [198901] +09:19:53 [ 35] [ 27] [1808930800006587=1803500021] +09:19:53 [ 37] [ 12] [507909202843] +09:19:53 [ 41] [ 8] [01529019] +09:19:53 [ 42] [ 15] [000000041529019] +09:19:53 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +09:19:53 [ 49] [ 3] [418] +09:19:53 [ 52] [ 16] [646A5784022EF0AD] +09:19:53 ============================================================================ +09:19:53 + + +waiting on router queue for slot.... +09:19:53 Sending to : <2> +09:19:53 ============================================================================ +09:19:55 ============================================================================ +09:19:55 Slot Id : <433> +09:19:55 Transaction Type : REQUEST +09:19:55 Received From : +09:19:55 ============================================================================ +09:19:55 FNo. Len. Field Value +09:19:55 ============================================================================ +09:19:55 [ 1] [ 4] [0800] +09:19:55 [ 7] [ 10] [0320022742] +09:19:55 [ 11] [ 6] [084320] +09:19:55 [ 37] [ 12] [57909084320] +09:19:55 [ 70] [ 3] [301] +09:19:55 ============================================================================ +09:19:55 + + +waiting on router queue for slot.... +09:19:55 Sending to : +09:19:55 ============================================================================ +09:19:55 ============================================================================ +09:19:55 Slot Id : <433> +09:19:55 Transaction Type : RESPONSE +09:19:55 Received From : +09:19:55 ============================================================================ +09:19:55 FNo. Len. Field Value +09:19:55 ============================================================================ +09:19:55 [ 1] [ 4] [0810] +09:19:55 [ 7] [ 10] [0320022742] +09:19:55 [ 11] [ 6] [084320] +09:19:55 [ 37] [ 12] [579090843200] +09:19:55 [ 39] [ 2] [00] +09:19:55 [ 70] [ 3] [810] +09:19:55 ============================================================================ +09:19:55 Calculate Source COMM Id = 1 +09:19:55 ============================================================================ +09:19:55 + + +waiting on router queue for slot.... +09:19:56 ============================================================================ +09:19:56 Slot Id : <425> +09:19:56 Transaction Type : RESPONSE +09:19:56 Received From : +09:19:56 ============================================================================ +09:19:56 FNo. Len. Field Value +09:19:56 ============================================================================ +09:19:56 [ 1] [ 4] [0210] +09:19:56 [ 2] [ 16] [1808930800006587] +09:19:56 [ 3] [ 6] [301000] +09:19:56 [ 7] [ 10] [0320092015] +09:19:56 [ 11] [ 6] [202843] +09:19:56 [ 12] [ 6] [090730] +09:19:56 [ 13] [ 4] [0320] +09:19:56 [ 14] [ 4] [1803] +09:19:56 [ 19] [ 3] [418] +09:19:56 [ 32] [ 6] [198901] +09:19:56 [ 37] [ 12] [507909202843] +09:19:56 [ 38] [ 6] [202843] +09:19:56 [ 39] [ 2] [00] +09:19:56 [ 41] [ 8] [01529019] +09:19:56 [ 49] [ 3] [418] +09:19:56 [ 52] [ 16] [646A5784022EF0AD] +09:19:56 [ 54] [ 20] [1002418C000011142800] +09:19:56 ============================================================================ +09:19:56 Sending to : +09:19:56 ============================================================================ +09:19:56 + + +waiting on router queue for slot.... +09:19:58 ============================================================================ +09:19:58 Slot Id : <425> +09:19:58 Transaction Type : RESPONSE +09:19:58 Received From : +09:19:58 ============================================================================ +09:19:58 FNo. Len. Field Value +09:19:58 ============================================================================ +09:19:58 [ 1] [ 4] [0210] +09:19:58 [ 2] [ 16] [1808930800006587] +09:19:58 [ 3] [ 6] [301000] +09:19:58 [ 7] [ 10] [0320092015] +09:19:58 [ 11] [ 6] [202843] +09:19:58 [ 12] [ 6] [090730] +09:19:58 [ 13] [ 4] [0320] +09:19:58 [ 14] [ 4] [1803] +09:19:58 [ 19] [ 3] [418] +09:19:58 [ 32] [ 6] [198901] +09:19:58 [ 37] [ 12] [507909202843] +09:19:58 [ 38] [ 6] [202843] +09:19:58 [ 39] [ 2] [00] +09:19:58 [ 41] [ 8] [01529019] +09:19:58 [ 49] [ 3] [418] +09:19:58 [ 52] [ 16] [646A5784022EF0AD] +09:19:58 [ 54] [ 20] [1002418C000011142800] +09:19:58 ============================================================================ +09:19:58 Calculate Source COMM Id = 5 +09:19:58 ============================================================================ +09:19:58 + + +waiting on router queue for slot.... +09:20:07 ============================================================================ +09:20:07 Slot Id : <364> +09:20:07 Transaction Type : REQUEST +09:20:07 Received From : +09:20:07 ============================================================================ +09:20:07 FNo. Len. Field Value +09:20:07 ============================================================================ +09:20:07 [ 1] [ 4] [0800] +09:20:07 [ 7] [ 10] [0320021915] +09:20:07 [ 11] [ 6] [155603] +09:20:07 [ 70] [ 3] [301] +09:20:07 ============================================================================ +09:20:07 + + +waiting on router queue for slot.... +09:20:07 Sending to : +09:20:07 ============================================================================ +09:20:07 ============================================================================ +09:20:07 Slot Id : <364> +09:20:07 Transaction Type : RESPONSE +09:20:07 Received From : +09:20:07 ============================================================================ +09:20:07 FNo. Len. Field Value +09:20:07 ============================================================================ +09:20:07 [ 1] [ 4] [0810] +09:20:07 [ 7] [ 10] [0320021915] +09:20:07 [ 11] [ 6] [155603] +09:20:07 [ 39] [ 2] [00] +09:20:07 [ 70] [ 3] [301] +09:20:07 ============================================================================ +09:20:07 Calculate Source COMM Id = 2 +09:20:07 ============================================================================ +09:20:07 + + +waiting on router queue for slot.... +09:20:12 ============================================================================ +09:20:12 Slot Id : <388> +09:20:12 Transaction Type : REQUEST +09:20:12 Received From : +09:20:12 ============================================================================ +09:20:12 FNo. Len. Field Value +09:20:12 ============================================================================ +09:20:12 [ 1] [ 4] [0800] +09:20:12 [ 7] [ 10] [0320163201] +09:20:12 [ 11] [ 6] [093201] +09:20:12 [ 37] [ 12] [57909093201] +09:20:12 [ 70] [ 3] [301] +09:20:12 ============================================================================ +09:20:12 + + +waiting on router queue for slot.... +09:20:12 Sending to : +09:20:12 ============================================================================ +09:20:12 ============================================================================ +09:20:12 Slot Id : <388> +09:20:12 Transaction Type : RESPONSE +09:20:12 Received From : +09:20:12 ============================================================================ +09:20:12 FNo. Len. Field Value +09:20:12 ============================================================================ +09:20:12 [ 1] [ 4] [0810] +09:20:12 [ 7] [ 10] [0320163201] +09:20:12 [ 11] [ 6] [093201] +09:20:12 [ 37] [ 12] [579090932010] +09:20:12 [ 39] [ 2] [00] +09:20:12 [ 70] [ 3] [810] +09:20:12 ============================================================================ +09:20:12 Calculate Source COMM Id = 6 +09:20:12 ============================================================================ +09:20:12 + + +waiting on router queue for slot.... +09:20:18 ============================================================================ +09:20:18 Slot Id : <430> +09:20:18 Transaction Type : REQUEST +09:20:18 Received From : +09:20:18 ============================================================================ +09:20:18 FNo. Len. Field Value +09:20:18 ============================================================================ +09:20:18 [ 1] [ 4] [0800] +09:20:18 [ 7] [ 10] [0320021926] +09:20:18 [ 11] [ 6] [155604] +09:20:18 [ 70] [ 3] [301] +09:20:18 ============================================================================ +09:20:18 + + +waiting on router queue for slot.... +09:20:18 Sending to : +09:20:18 ============================================================================ +09:20:18 ============================================================================ +09:20:18 Slot Id : <430> +09:20:18 Transaction Type : RESPONSE +09:20:18 Received From : +09:20:18 ============================================================================ +09:20:18 FNo. Len. Field Value +09:20:18 ============================================================================ +09:20:18 [ 1] [ 4] [0810] +09:20:18 [ 7] [ 10] [0320021926] +09:20:18 [ 11] [ 6] [155604] +09:20:18 [ 39] [ 2] [00] +09:20:18 [ 70] [ 3] [301] +09:20:18 ============================================================================ +09:20:18 Calculate Source COMM Id = 2 +09:20:18 ============================================================================ +09:20:18 + + +waiting on router queue for slot.... +09:20:20 ============================================================================ +09:20:20 Slot Id : <367> +09:20:20 Transaction Type : REQUEST +09:20:20 Received From : +09:20:20 ============================================================================ +09:20:20 FNo. Len. Field Value +09:20:20 ============================================================================ +09:20:20 [ 1] [ 4] [0200] +09:20:20 [ 2] [ 16] [6213545000627228] +09:20:20 [ 3] [ 6] [010000] +09:20:20 [ 4] [ 12] [000010000000] +09:20:20 [ 7] [ 10] [0320021926] +09:20:20 [ 11] [ 6] [267480] +09:20:20 [ 12] [ 6] [091926] +09:20:20 [ 13] [ 4] [0320] +09:20:20 [ 14] [ 4] [4912] +09:20:20 [ 15] [ 4] [0320] +09:20:20 [ 18] [ 4] [6011] +09:20:20 [ 19] [ 3] [418] +09:20:20 [ 22] [ 3] [021] +09:20:20 [ 25] [ 2] [01] +09:20:20 [ 28] [ 9] [D00002000] +09:20:20 [ 32] [ 6] [180893] +09:20:20 [ 35] [ 32] [6213545000627228=491212012722655] +09:20:20 [ 37] [ 12] [507902267480] +09:20:20 [ 41] [ 8] [0531VTHH] +09:20:20 [ 42] [ 15] [999999 ] +09:20:20 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:20:20 [ 49] [ 3] [418] +09:20:20 [ 52] [ 16] [0AAA2B1B06EE06C0] +09:20:20 ============================================================================ +09:20:20 + + +waiting on router queue for slot.... +09:20:20 Sending to : +09:20:20 ============================================================================ +09:20:20 Sending to : +09:20:20 ============================================================================ +09:20:21 ============================================================================ +09:20:21 Slot Id : <367> +09:20:21 Transaction Type : REQUEST +09:20:21 Received From : +09:20:21 ============================================================================ +09:20:21 FNo. Len. Field Value +09:20:21 ============================================================================ +09:20:21 [ 1] [ 4] [0200] +09:20:21 [ 2] [ 16] [6213545000627228] +09:20:21 [ 3] [ 6] [010000] +09:20:21 [ 4] [ 12] [000010000000] +09:20:21 [ 7] [ 10] [0320021926] +09:20:21 [ 11] [ 6] [267480] +09:20:21 [ 12] [ 6] [091926] +09:20:21 [ 13] [ 4] [0320] +09:20:21 [ 14] [ 4] [4912] +09:20:21 [ 15] [ 4] [0320] +09:20:21 [ 18] [ 4] [6011] +09:20:21 [ 19] [ 3] [418] +09:20:21 [ 22] [ 3] [021] +09:20:21 [ 25] [ 2] [01] +09:20:21 [ 28] [ 9] [D00002000] +09:20:21 [ 32] [ 6] [180893] +09:20:21 [ 35] [ 32] [6213545000627228=491212012722655] +09:20:21 [ 37] [ 12] [507902267480] +09:20:21 [ 41] [ 8] [0531VTHH] +09:20:21 [ 42] [ 15] [999999 ] +09:20:21 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:20:21 [ 49] [ 3] [418] +09:20:21 [ 52] [ 16] [0AAA2B1B06EE06C0] +09:20:21 ============================================================================ +09:20:21 + + +waiting on router queue for slot.... +09:20:21 Sending to : +09:20:21 ============================================================================ +09:20:21 ============================================================================ +09:20:21 Slot Id : <367> +09:20:21 Transaction Type : REQUEST +09:20:21 Received From : +09:20:21 ============================================================================ +09:20:21 FNo. Len. Field Value +09:20:21 ============================================================================ +09:20:21 [ 1] [ 4] [0200] +09:20:21 [ 2] [ 16] [6213545000627228] +09:20:21 [ 3] [ 6] [010000] +09:20:21 [ 4] [ 12] [000010000000] +09:20:21 [ 7] [ 10] [0320021926] +09:20:21 [ 11] [ 6] [267480] +09:20:21 [ 12] [ 6] [091926] +09:20:21 [ 13] [ 4] [0320] +09:20:21 [ 14] [ 4] [4912] +09:20:21 [ 15] [ 4] [0320] +09:20:21 [ 18] [ 4] [6011] +09:20:21 [ 19] [ 3] [418] +09:20:21 [ 22] [ 3] [021] +09:20:21 [ 25] [ 2] [01] +09:20:21 [ 28] [ 9] [D00002000] +09:20:21 [ 32] [ 6] [180893] +09:20:21 [ 35] [ 32] [6213545000627228=491212012722655] +09:20:21 [ 37] [ 12] [507902267480] +09:20:21 [ 41] [ 8] [0531VTHH] +09:20:21 [ 42] [ 15] [999999 ] +09:20:21 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:20:21 [ 49] [ 3] [418] +09:20:21 [ 52] [ 16] [1C70EE6DDA48D408] +09:20:21 ============================================================================ +09:20:21 + + +waiting on router queue for slot.... +09:20:21 Sending to : <0> +09:20:21 ============================================================================ +09:20:21 ============================================================================ +09:20:21 Slot Id : <367> +09:20:21 Transaction Type : RESPONSE +09:20:21 Received From : +09:20:21 ============================================================================ +09:20:21 FNo. Len. Field Value +09:20:21 ============================================================================ +09:20:21 [ 1] [ 4] [0210] +09:20:21 [ 2] [ 16] [6213545000627228] +09:20:21 [ 3] [ 6] [010000] +09:20:21 [ 4] [ 12] [000010000000] +09:20:21 [ 7] [ 10] [0320021926] +09:20:21 [ 11] [ 6] [267480] +09:20:21 [ 12] [ 6] [091926] +09:20:21 [ 13] [ 4] [0320] +09:20:21 [ 15] [ 4] [0320] +09:20:21 [ 18] [ 4] [6011] +09:20:21 [ 19] [ 3] [418] +09:20:21 [ 32] [ 6] [180893] +09:20:21 [ 35] [ 32] [6213545000627228=491212012722655] +09:20:21 [ 37] [ 12] [507902267480] +09:20:21 [ 38] [ 6] [142518] +09:20:21 [ 39] [ 2] [00] +09:20:21 [ 41] [ 8] [0531VTHH] +09:20:21 [ 49] [ 3] [418] +09:20:21 [ 54] [ 40] [0001418C0000305763290002418C000030576329] +09:20:21 ============================================================================ +09:20:21 Sending to : +09:20:21 ============================================================================ +09:20:21 + + +waiting on router queue for slot.... +09:20:23 ============================================================================ +09:20:23 Slot Id : <367> +09:20:23 Transaction Type : RESPONSE +09:20:23 Received From : +09:20:23 ============================================================================ +09:20:23 FNo. Len. Field Value +09:20:23 ============================================================================ +09:20:23 [ 1] [ 4] [0210] +09:20:23 [ 2] [ 16] [6213545000627228] +09:20:23 [ 3] [ 6] [010000] +09:20:23 [ 4] [ 12] [000010000000] +09:20:23 [ 7] [ 10] [0320021926] +09:20:23 [ 11] [ 6] [267480] +09:20:23 [ 12] [ 6] [091926] +09:20:23 [ 13] [ 4] [0320] +09:20:23 [ 15] [ 4] [0320] +09:20:23 [ 18] [ 4] [6011] +09:20:23 [ 19] [ 3] [418] +09:20:23 [ 32] [ 6] [180893] +09:20:23 [ 35] [ 32] [6213545000627228=491212012722655] +09:20:23 [ 37] [ 12] [507902267480] +09:20:23 [ 38] [ 6] [142518] +09:20:23 [ 39] [ 2] [00] +09:20:23 [ 41] [ 8] [0531VTHH] +09:20:23 [ 49] [ 3] [418] +09:20:23 [ 54] [ 40] [0001418C0000305763290002418C000030576329] +09:20:23 ============================================================================ +09:20:23 Calculate Source COMM Id = 2 +09:20:23 ============================================================================ +09:20:23 + + +waiting on router queue for slot.... +09:20:23 ============================================================================ +09:20:23 Slot Id : <441> +09:20:23 Transaction Type : REQUEST +09:20:23 Received From : +09:20:23 ============================================================================ +09:20:23 FNo. Len. Field Value +09:20:23 ============================================================================ +09:20:23 [ 1] [ 4] [0200] +09:20:23 [ 2] [ 16] [6688990040087213] +09:20:23 [ 3] [ 6] [011000] +09:20:23 [ 4] [ 12] [000050000000] +09:20:23 [ 7] [ 10] [0320092019] +09:20:23 [ 11] [ 6] [696950] +09:20:23 [ 12] [ 6] [092019] +09:20:23 [ 13] [ 4] [0320] +09:20:23 [ 15] [ 4] [0320] +09:20:23 [ 18] [ 4] [6011] +09:20:23 [ 22] [ 3] [900] +09:20:23 [ 25] [ 2] [02] +09:20:23 [ 28] [ 9] [D00002000] +09:20:23 [ 32] [ 6] [621354] +09:20:23 [ 35] [ 37] [6688990040087213=98021261567235400000] +09:20:23 [ 37] [ 12] [507904000032] +09:20:23 [ 41] [ 8] [01011600] +09:20:23 [ 42] [ 15] [NATIVE ] +09:20:23 [ 43] [ 40] [Nakeua Market Thoulakhom LAO] +09:20:23 [ 49] [ 3] [418] +09:20:23 [ 52] [ 16] [39E5A76204824A55] +09:20:23 ============================================================================ +09:20:23 + + +waiting on router queue for slot.... +09:20:23 Sending to : +09:20:23 ============================================================================ +09:20:23 Sending to : +09:20:23 ============================================================================ +09:20:24 ============================================================================ +09:20:24 Slot Id : <441> +09:20:24 Transaction Type : REQUEST +09:20:24 Received From : +09:20:24 ============================================================================ +09:20:24 FNo. Len. Field Value +09:20:24 ============================================================================ +09:20:24 [ 1] [ 4] [0200] +09:20:24 [ 2] [ 16] [6688990040087213] +09:20:24 [ 3] [ 6] [011000] +09:20:24 [ 4] [ 12] [000050000000] +09:20:24 [ 7] [ 10] [0320092019] +09:20:24 [ 11] [ 6] [696950] +09:20:24 [ 12] [ 6] [092019] +09:20:24 [ 13] [ 4] [0320] +09:20:24 [ 15] [ 4] [0320] +09:20:24 [ 18] [ 4] [6011] +09:20:24 [ 22] [ 3] [900] +09:20:24 [ 25] [ 2] [02] +09:20:24 [ 28] [ 9] [D00002000] +09:20:24 [ 32] [ 6] [621354] +09:20:24 [ 35] [ 37] [6688990040087213=98021261567235400000] +09:20:24 [ 37] [ 12] [507904000032] +09:20:24 [ 41] [ 8] [01011600] +09:20:24 [ 42] [ 15] [NATIVE ] +09:20:24 [ 43] [ 40] [Nakeua Market Thoulakhom LAO] +09:20:24 [ 49] [ 3] [418] +09:20:24 [ 52] [ 16] [39E5A76204824A55] +09:20:24 ============================================================================ +09:20:24 + + +waiting on router queue for slot.... +09:20:24 Sending to : +09:20:24 ============================================================================ +09:20:24 ============================================================================ +09:20:24 Slot Id : <441> +09:20:24 Transaction Type : REQUEST +09:20:24 Received From : +09:20:24 ============================================================================ +09:20:24 FNo. Len. Field Value +09:20:24 ============================================================================ +09:20:24 [ 1] [ 4] [0200] +09:20:24 [ 2] [ 16] [6688990040087213] +09:20:24 [ 3] [ 6] [011000] +09:20:24 [ 4] [ 12] [000050000000] +09:20:24 [ 7] [ 10] [0320092019] +09:20:24 [ 11] [ 6] [696950] +09:20:24 [ 12] [ 6] [092019] +09:20:24 [ 13] [ 4] [0320] +09:20:24 [ 15] [ 4] [0320] +09:20:24 [ 18] [ 4] [6011] +09:20:24 [ 22] [ 3] [900] +09:20:24 [ 25] [ 2] [02] +09:20:24 [ 28] [ 9] [D00002000] +09:20:24 [ 32] [ 6] [621354] +09:20:24 [ 35] [ 37] [6688990040087213=98021261567235400000] +09:20:24 [ 37] [ 12] [507904000032] +09:20:24 [ 41] [ 8] [01011600] +09:20:24 [ 42] [ 15] [NATIVE ] +09:20:24 [ 43] [ 40] [Nakeua Market Thoulakhom LAO] +09:20:24 [ 49] [ 3] [418] +09:20:24 [ 52] [ 16] [6329958AA36129FA] +09:20:24 ============================================================================ +09:20:24 + + +waiting on router queue for slot.... +09:20:24 Sending to : <4> +09:20:24 ============================================================================ +09:20:24 ============================================================================ +09:20:24 Slot Id : <441> +09:20:24 Transaction Type : RESPONSE +09:20:24 Received From : +09:20:24 ============================================================================ +09:20:24 FNo. Len. Field Value +09:20:24 ============================================================================ +09:20:24 [ 1] [ 4] [0210] +09:20:24 [ 2] [ 16] [6688990040087213] +09:20:24 [ 3] [ 6] [011000] +09:20:24 [ 4] [ 12] [000050000000] +09:20:24 [ 7] [ 10] [0320092019] +09:20:24 [ 11] [ 6] [696950] +09:20:24 [ 12] [ 6] [092019] +09:20:24 [ 13] [ 4] [0320] +09:20:24 [ 15] [ 4] [0320] +09:20:24 [ 18] [ 4] [6011] +09:20:24 [ 22] [ 3] [021] +09:20:24 [ 32] [ 6] [621354] +09:20:24 [ 35] [ 37] [6688990040087213=98021261567235400000] +09:20:24 [ 37] [ 12] [507904000032] +09:20:24 [ 38] [ 6] [091815] +09:20:24 [ 39] [ 2] [55] +09:20:24 [ 41] [ 8] [01011600] +09:20:24 [ 49] [ 3] [418] +09:20:24 ============================================================================ +09:20:24 Sending to : +09:20:24 ============================================================================ +09:20:24 + + +waiting on router queue for slot.... +09:20:25 ============================================================================ +09:20:25 Slot Id : <441> +09:20:25 Transaction Type : RESPONSE +09:20:25 Received From : +09:20:25 ============================================================================ +09:20:25 FNo. Len. Field Value +09:20:25 ============================================================================ +09:20:25 [ 1] [ 4] [0210] +09:20:25 [ 2] [ 16] [6688990040087213] +09:20:25 [ 3] [ 6] [011000] +09:20:25 [ 4] [ 12] [000050000000] +09:20:25 [ 7] [ 10] [0320092019] +09:20:25 [ 11] [ 6] [696950] +09:20:25 [ 12] [ 6] [092019] +09:20:25 [ 13] [ 4] [0320] +09:20:25 [ 15] [ 4] [0320] +09:20:25 [ 18] [ 4] [6011] +09:20:25 [ 22] [ 3] [021] +09:20:25 [ 32] [ 6] [621354] +09:20:25 [ 35] [ 37] [6688990040087213=98021261567235400000] +09:20:25 [ 37] [ 12] [507904000032] +09:20:25 [ 38] [ 6] [091815] +09:20:25 [ 39] [ 2] [55] +09:20:25 [ 41] [ 8] [01011600] +09:20:25 [ 49] [ 3] [418] +09:20:25 ============================================================================ +09:20:25 Calculate Source COMM Id = 0 +09:20:25 ============================================================================ +09:20:25 + + +waiting on router queue for slot.... +09:20:34 ============================================================================ +09:20:34 Slot Id : <409> +09:20:34 Transaction Type : REQUEST +09:20:34 Received From : +09:20:34 ============================================================================ +09:20:34 FNo. Len. Field Value +09:20:34 ============================================================================ +09:20:34 [ 1] [ 4] [0800] +09:20:34 [ 7] [ 10] [0320021942] +09:20:34 [ 11] [ 6] [155605] +09:20:34 [ 70] [ 3] [301] +09:20:34 ============================================================================ +09:20:34 + + +waiting on router queue for slot.... +09:20:34 Sending to : +09:20:34 ============================================================================ +09:20:34 ============================================================================ +09:20:34 Slot Id : <409> +09:20:34 Transaction Type : RESPONSE +09:20:34 Received From : +09:20:34 ============================================================================ +09:20:34 FNo. Len. Field Value +09:20:34 ============================================================================ +09:20:34 [ 1] [ 4] [0810] +09:20:34 [ 7] [ 10] [0320021942] +09:20:34 [ 11] [ 6] [155605] +09:20:34 [ 39] [ 2] [00] +09:20:34 [ 70] [ 3] [301] +09:20:34 ============================================================================ +09:20:34 Calculate Source COMM Id = 2 +09:20:34 ============================================================================ +09:20:34 + + +waiting on router queue for slot.... +09:20:35 ============================================================================ +09:20:35 Slot Id : <437> +09:20:35 Transaction Type : REQUEST +09:20:35 Received From : +09:20:35 ============================================================================ +09:20:35 FNo. Len. Field Value +09:20:35 ============================================================================ +09:20:35 [ 1] [ 4] [0200] +09:20:35 [ 2] [ 16] [6688990040087213] +09:20:35 [ 3] [ 6] [011000] +09:20:35 [ 4] [ 12] [000050000000] +09:20:35 [ 7] [ 10] [0320092032] +09:20:35 [ 11] [ 6] [697008] +09:20:35 [ 12] [ 6] [092032] +09:20:35 [ 13] [ 4] [0320] +09:20:35 [ 15] [ 4] [0320] +09:20:35 [ 18] [ 4] [6011] +09:20:35 [ 22] [ 3] [900] +09:20:35 [ 25] [ 2] [02] +09:20:35 [ 28] [ 9] [D00002000] +09:20:35 [ 32] [ 6] [621354] +09:20:35 [ 35] [ 37] [6688990040087213=98021261567235400000] +09:20:35 [ 37] [ 12] [507904000034] +09:20:35 [ 41] [ 8] [01011600] +09:20:35 [ 42] [ 15] [NATIVE ] +09:20:35 [ 43] [ 40] [Nakeua Market Thoulakhom LAO] +09:20:35 [ 49] [ 3] [418] +09:20:35 [ 52] [ 16] [1EE7D5FFA81ABC76] +09:20:35 ============================================================================ +09:20:35 + + +waiting on router queue for slot.... +09:20:35 Sending to : +09:20:35 ============================================================================ +09:20:35 Sending to : +09:20:35 ============================================================================ +09:20:36 ============================================================================ +09:20:36 Slot Id : <437> +09:20:36 Transaction Type : REQUEST +09:20:36 Received From : +09:20:36 ============================================================================ +09:20:36 FNo. Len. Field Value +09:20:36 ============================================================================ +09:20:36 [ 1] [ 4] [0200] +09:20:36 [ 2] [ 16] [6688990040087213] +09:20:36 [ 3] [ 6] [011000] +09:20:36 [ 4] [ 12] [000050000000] +09:20:36 [ 7] [ 10] [0320092032] +09:20:36 [ 11] [ 6] [697008] +09:20:36 [ 12] [ 6] [092032] +09:20:36 [ 13] [ 4] [0320] +09:20:36 [ 15] [ 4] [0320] +09:20:36 [ 18] [ 4] [6011] +09:20:36 [ 22] [ 3] [900] +09:20:36 [ 25] [ 2] [02] +09:20:36 [ 28] [ 9] [D00002000] +09:20:36 [ 32] [ 6] [621354] +09:20:36 [ 35] [ 37] [6688990040087213=98021261567235400000] +09:20:36 [ 37] [ 12] [507904000034] +09:20:36 [ 41] [ 8] [01011600] +09:20:36 [ 42] [ 15] [NATIVE ] +09:20:36 [ 43] [ 40] [Nakeua Market Thoulakhom LAO] +09:20:36 [ 49] [ 3] [418] +09:20:36 [ 52] [ 16] [1EE7D5FFA81ABC76] +09:20:36 ============================================================================ +09:20:36 + + +waiting on router queue for slot.... +09:20:36 Sending to : +09:20:36 ============================================================================ +09:20:36 ============================================================================ +09:20:36 Slot Id : <437> +09:20:36 Transaction Type : REQUEST +09:20:36 Received From : +09:20:36 ============================================================================ +09:20:36 FNo. Len. Field Value +09:20:36 ============================================================================ +09:20:36 [ 1] [ 4] [0200] +09:20:36 [ 2] [ 16] [6688990040087213] +09:20:36 [ 3] [ 6] [011000] +09:20:36 [ 4] [ 12] [000050000000] +09:20:36 [ 7] [ 10] [0320092032] +09:20:36 [ 11] [ 6] [697008] +09:20:36 [ 12] [ 6] [092032] +09:20:36 [ 13] [ 4] [0320] +09:20:36 [ 15] [ 4] [0320] +09:20:36 [ 18] [ 4] [6011] +09:20:36 [ 22] [ 3] [900] +09:20:36 [ 25] [ 2] [02] +09:20:36 [ 28] [ 9] [D00002000] +09:20:36 [ 32] [ 6] [621354] +09:20:36 [ 35] [ 37] [6688990040087213=98021261567235400000] +09:20:36 [ 37] [ 12] [507904000034] +09:20:36 [ 41] [ 8] [01011600] +09:20:36 [ 42] [ 15] [NATIVE ] +09:20:36 [ 43] [ 40] [Nakeua Market Thoulakhom LAO] +09:20:36 [ 49] [ 3] [418] +09:20:36 [ 52] [ 16] [3EEE8DFA99729F9D] +09:20:36 ============================================================================ +09:20:36 + + +waiting on router queue for slot.... +09:20:36 Sending to : <4> +09:20:36 ============================================================================ +09:20:37 ============================================================================ +09:20:37 Slot Id : <437> +09:20:37 Transaction Type : RESPONSE +09:20:37 Received From : +09:20:37 ============================================================================ +09:20:37 FNo. Len. Field Value +09:20:37 ============================================================================ +09:20:37 [ 1] [ 4] [0210] +09:20:37 [ 2] [ 16] [6688990040087213] +09:20:37 [ 3] [ 6] [011000] +09:20:37 [ 4] [ 12] [000050000000] +09:20:37 [ 11] [ 6] [697008] +09:20:37 [ 12] [ 6] [092032] +09:20:37 [ 15] [ 4] [0320] +09:20:37 [ 18] [ 4] [6011] +09:20:37 [ 32] [ 6] [621354] +09:20:37 [ 35] [ 37] [6688990040087213=98021261567235400000] +09:20:37 [ 37] [ 12] [507904000034] +09:20:37 [ 38] [ 6] [465999] +09:20:37 [ 39] [ 2] [00] +09:20:37 [ 41] [ 8] [01011600] +09:20:37 [ 49] [ 3] [418] +09:20:37 [ 54] [ 20] [1002418C000250289299] +09:20:37 ============================================================================ +09:20:37 Sending to : +09:20:37 ============================================================================ +09:20:37 + + +waiting on router queue for slot.... +09:20:39 ============================================================================ +09:20:39 Slot Id : <437> +09:20:39 Transaction Type : RESPONSE +09:20:39 Received From : +09:20:39 ============================================================================ +09:20:39 FNo. Len. Field Value +09:20:39 ============================================================================ +09:20:39 [ 1] [ 4] [0210] +09:20:39 [ 2] [ 16] [6688990040087213] +09:20:39 [ 3] [ 6] [011000] +09:20:39 [ 4] [ 12] [000050000000] +09:20:39 [ 11] [ 6] [697008] +09:20:39 [ 12] [ 6] [092032] +09:20:39 [ 15] [ 4] [0320] +09:20:39 [ 18] [ 4] [6011] +09:20:39 [ 32] [ 6] [621354] +09:20:39 [ 35] [ 37] [6688990040087213=98021261567235400000] +09:20:39 [ 37] [ 12] [507904000034] +09:20:39 [ 38] [ 6] [465999] +09:20:39 [ 39] [ 2] [00] +09:20:39 [ 41] [ 8] [01011600] +09:20:39 [ 49] [ 3] [418] +09:20:39 [ 54] [ 20] [1002418C000250289299] +09:20:39 ============================================================================ +09:20:39 Calculate Source COMM Id = 0 +09:20:39 ============================================================================ +09:20:39 + + +waiting on router queue for slot.... +09:20:40 ============================================================================ +09:20:40 Slot Id : <402> +09:20:40 Transaction Type : REQUEST +09:20:40 Received From : +09:20:40 ============================================================================ +09:20:40 FNo. Len. Field Value +09:20:40 ============================================================================ +09:20:40 [ 1] [ 4] [0800] +09:20:40 [ 2] [ 5] [02531] +09:20:40 [ 3] [ 6] [579098] +09:20:40 [ 7] [ 10] [0320022040] +09:20:40 [ 11] [ 6] [806954] +09:20:40 [ 15] [ 10] [0320022040] +09:20:40 [ 37] [ 11] [57909806954] +09:20:40 [ 70] [ 3] [001] +09:20:40 ============================================================================ +09:20:40 + + +waiting on router queue for slot.... +09:20:40 ============================================================================ +09:20:40 Slot Id : <402> +09:20:40 Transaction Type : RESPONSE +09:20:40 Received From : +09:20:40 ============================================================================ +09:20:40 FNo. Len. Field Value +09:20:40 ============================================================================ +09:20:40 [ 1] [ 4] [0810] +09:20:40 [ 7] [ 10] [0320022040] +09:20:40 [ 11] [ 6] [806954] +09:20:40 [ 15] [ 4] [0320] +09:20:40 [ 37] [ 12] [57909806954] +09:20:40 [ 39] [ 2] [00] +09:20:40 [ 70] [ 3] [001] +09:20:40 ============================================================================ +09:20:40 Sending to : +09:20:40 ============================================================================ +09:20:40 + + +waiting on router queue for slot.... +09:20:41 ============================================================================ +09:20:41 Slot Id : <408> +09:20:41 Transaction Type : REQUEST +09:20:41 Received From : +09:20:41 ============================================================================ +09:20:41 FNo. Len. Field Value +09:20:41 ============================================================================ +09:20:41 [ 1] [ 4] [0200] +09:20:41 [ 2] [ 16] [6688990040001149] +09:20:41 [ 3] [ 6] [011000] +09:20:41 [ 4] [ 12] [000100000000] +09:20:41 [ 7] [ 10] [0320092037] +09:20:41 [ 11] [ 6] [697040] +09:20:41 [ 12] [ 6] [092037] +09:20:41 [ 13] [ 4] [0320] +09:20:41 [ 15] [ 4] [0320] +09:20:41 [ 18] [ 4] [6011] +09:20:41 [ 22] [ 3] [900] +09:20:41 [ 25] [ 2] [02] +09:20:41 [ 28] [ 9] [D00002000] +09:20:41 [ 32] [ 6] [621354] +09:20:41 [ 35] [ 37] [6688990040001149=97091261923908500000] +09:20:41 [ 37] [ 12] [507904795506] +09:20:41 [ 41] [ 8] [07001500] +09:20:41 [ 42] [ 15] [NATIVE ] +09:20:41 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +09:20:41 [ 49] [ 3] [418] +09:20:41 [ 52] [ 16] [5625550EE482BC99] +09:20:41 ============================================================================ +09:20:41 + + +waiting on router queue for slot.... +09:20:41 Sending to : +09:20:41 ============================================================================ +09:20:41 Sending to : +09:20:41 ============================================================================ +09:20:41 ============================================================================ +09:20:41 Slot Id : <408> +09:20:41 Transaction Type : REQUEST +09:20:41 Received From : +09:20:41 ============================================================================ +09:20:41 FNo. Len. Field Value +09:20:41 ============================================================================ +09:20:41 [ 1] [ 4] [0200] +09:20:41 [ 2] [ 16] [6688990040001149] +09:20:41 [ 3] [ 6] [011000] +09:20:41 [ 4] [ 12] [000100000000] +09:20:41 [ 7] [ 10] [0320092037] +09:20:41 [ 11] [ 6] [697040] +09:20:41 [ 12] [ 6] [092037] +09:20:41 [ 13] [ 4] [0320] +09:20:41 [ 15] [ 4] [0320] +09:20:41 [ 18] [ 4] [6011] +09:20:41 [ 22] [ 3] [900] +09:20:41 [ 25] [ 2] [02] +09:20:41 [ 28] [ 9] [D00002000] +09:20:41 [ 32] [ 6] [621354] +09:20:41 [ 35] [ 37] [6688990040001149=97091261923908500000] +09:20:41 [ 37] [ 12] [507904795506] +09:20:41 [ 41] [ 8] [07001500] +09:20:41 [ 42] [ 15] [NATIVE ] +09:20:41 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +09:20:41 [ 49] [ 3] [418] +09:20:41 [ 52] [ 16] [5625550EE482BC99] +09:20:41 ============================================================================ +09:20:41 + + +waiting on router queue for slot.... +09:20:41 Sending to : +09:20:41 ============================================================================ +09:20:41 ============================================================================ +09:20:41 Slot Id : <408> +09:20:41 Transaction Type : REQUEST +09:20:41 Received From : +09:20:41 ============================================================================ +09:20:41 FNo. Len. Field Value +09:20:41 ============================================================================ +09:20:41 [ 1] [ 4] [0200] +09:20:41 [ 2] [ 16] [6688990040001149] +09:20:41 [ 3] [ 6] [011000] +09:20:41 [ 4] [ 12] [000100000000] +09:20:41 [ 7] [ 10] [0320092037] +09:20:41 [ 11] [ 6] [697040] +09:20:41 [ 12] [ 6] [092037] +09:20:41 [ 13] [ 4] [0320] +09:20:41 [ 15] [ 4] [0320] +09:20:41 [ 18] [ 4] [6011] +09:20:41 [ 22] [ 3] [900] +09:20:41 [ 25] [ 2] [02] +09:20:41 [ 28] [ 9] [D00002000] +09:20:41 [ 32] [ 6] [621354] +09:20:41 [ 35] [ 37] [6688990040001149=97091261923908500000] +09:20:41 [ 37] [ 12] [507904795506] +09:20:41 [ 41] [ 8] [07001500] +09:20:41 [ 42] [ 15] [NATIVE ] +09:20:41 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +09:20:41 [ 49] [ 3] [418] +09:20:41 [ 52] [ 16] [AFAEDDE11CD7AE4F] +09:20:41 ============================================================================ +09:20:41 + + +waiting on router queue for slot.... +09:20:41 Sending to : <4> +09:20:41 ============================================================================ +09:20:42 ============================================================================ +09:20:42 Slot Id : <408> +09:20:42 Transaction Type : RESPONSE +09:20:42 Received From : +09:20:42 ============================================================================ +09:20:42 FNo. Len. Field Value +09:20:42 ============================================================================ +09:20:42 [ 1] [ 4] [0210] +09:20:42 [ 2] [ 16] [6688990040001149] +09:20:42 [ 3] [ 6] [011000] +09:20:42 [ 4] [ 12] [000100000000] +09:20:42 [ 11] [ 6] [697040] +09:20:42 [ 12] [ 6] [092037] +09:20:42 [ 15] [ 4] [0320] +09:20:42 [ 18] [ 4] [6011] +09:20:42 [ 32] [ 6] [621354] +09:20:42 [ 35] [ 37] [6688990040001149=97091261923908500000] +09:20:42 [ 37] [ 12] [507904795506] +09:20:42 [ 38] [ 6] [062555] +09:20:42 [ 39] [ 2] [00] +09:20:42 [ 41] [ 8] [07001500] +09:20:42 [ 49] [ 3] [418] +09:20:42 [ 54] [ 20] [1002418C000008485915] +09:20:42 ============================================================================ +09:20:42 Sending to : +09:20:42 ============================================================================ +09:20:42 + + +waiting on router queue for slot.... +09:20:44 ============================================================================ +09:20:44 Slot Id : <408> +09:20:44 Transaction Type : RESPONSE +09:20:44 Received From : +09:20:44 ============================================================================ +09:20:44 FNo. Len. Field Value +09:20:44 ============================================================================ +09:20:44 [ 1] [ 4] [0210] +09:20:44 [ 2] [ 16] [6688990040001149] +09:20:44 [ 3] [ 6] [011000] +09:20:44 [ 4] [ 12] [000100000000] +09:20:44 [ 11] [ 6] [697040] +09:20:44 [ 12] [ 6] [092037] +09:20:44 [ 15] [ 4] [0320] +09:20:44 [ 18] [ 4] [6011] +09:20:44 [ 32] [ 6] [621354] +09:20:44 [ 35] [ 37] [6688990040001149=97091261923908500000] +09:20:44 [ 37] [ 12] [507904795506] +09:20:44 [ 38] [ 6] [062555] +09:20:44 [ 39] [ 2] [00] +09:20:44 [ 41] [ 8] [07001500] +09:20:44 [ 49] [ 3] [418] +09:20:44 [ 54] [ 20] [1002418C000008485915] +09:20:44 ============================================================================ +09:20:44 Calculate Source COMM Id = 0 +09:20:44 ============================================================================ +09:20:44 + + +waiting on router queue for slot.... +09:20:45 ============================================================================ +09:20:45 Slot Id : <403> +09:20:45 Transaction Type : REQUEST +09:20:45 Received From : +09:20:45 ============================================================================ +09:20:45 FNo. Len. Field Value +09:20:45 ============================================================================ +09:20:45 [ 1] [ 4] [0800] +09:20:45 [ 7] [ 10] [0320021953] +09:20:45 [ 11] [ 6] [155606] +09:20:45 [ 70] [ 3] [301] +09:20:45 ============================================================================ +09:20:45 + + +waiting on router queue for slot.... +09:20:45 Sending to : +09:20:45 ============================================================================ +09:20:45 ============================================================================ +09:20:45 Slot Id : <403> +09:20:45 Transaction Type : RESPONSE +09:20:45 Received From : +09:20:45 ============================================================================ +09:20:45 FNo. Len. Field Value +09:20:45 ============================================================================ +09:20:45 [ 1] [ 4] [0810] +09:20:45 [ 7] [ 10] [0320021953] +09:20:45 [ 11] [ 6] [155606] +09:20:45 [ 39] [ 2] [00] +09:20:45 [ 70] [ 3] [301] +09:20:45 ============================================================================ +09:20:45 Calculate Source COMM Id = 2 +09:20:45 ============================================================================ +09:20:45 + + +waiting on router queue for slot.... +09:20:58 ============================================================================ +09:20:58 Slot Id : <375> +09:20:58 Transaction Type : REQUEST +09:20:58 Received From : +09:20:58 ============================================================================ +09:20:58 FNo. Len. Field Value +09:20:58 ============================================================================ +09:20:58 [ 1] [ 4] [0200] +09:20:58 [ 2] [ 16] [6213543000196260] +09:20:58 [ 3] [ 6] [302000] +09:20:58 [ 4] [ 12] [000000000000] +09:20:58 [ 7] [ 10] [0320091850] +09:20:58 [ 11] [ 6] [935316] +09:20:58 [ 12] [ 6] [091850] +09:20:58 [ 13] [ 4] [0320] +09:20:58 [ 15] [ 4] [0320] +09:20:58 [ 18] [ 4] [6011] +09:20:58 [ 19] [ 3] [418] +09:20:58 [ 22] [ 3] [021] +09:20:58 [ 25] [ 2] [01] +09:20:58 [ 28] [ 9] [D00000000] +09:20:58 [ 32] [ 6] [668899] +09:20:58 [ 35] [ 32] [6213543000196260=491212019626005] +09:20:58 [ 37] [ 12] [507901523575] +09:20:58 [ 41] [ 8] [03216001] +09:20:58 [ 42] [ 15] [APT ] +09:20:58 [ 43] [ 40] [ LAONGARM UNIT BAN NONEKHL] +09:20:58 [ 49] [ 3] [418] +09:20:58 [ 52] [ 16] [A33CAF36911161F1] +09:20:58 ============================================================================ +09:20:58 + + +waiting on router queue for slot.... +09:20:58 Sending to : +09:20:58 ============================================================================ +09:20:58 Sending to : +09:20:58 ============================================================================ +09:20:59 ============================================================================ +09:20:59 Slot Id : <375> +09:20:59 Transaction Type : REQUEST +09:20:59 Received From : +09:20:59 ============================================================================ +09:20:59 FNo. Len. Field Value +09:20:59 ============================================================================ +09:20:59 [ 1] [ 4] [0200] +09:20:59 [ 2] [ 16] [6213543000196260] +09:20:59 [ 3] [ 6] [302000] +09:20:59 [ 4] [ 12] [000000000000] +09:20:59 [ 7] [ 10] [0320091850] +09:20:59 [ 11] [ 6] [935316] +09:20:59 [ 12] [ 6] [091850] +09:20:59 [ 13] [ 4] [0320] +09:20:59 [ 15] [ 4] [0320] +09:20:59 [ 18] [ 4] [6011] +09:20:59 [ 19] [ 3] [418] +09:20:59 [ 22] [ 3] [021] +09:20:59 [ 25] [ 2] [01] +09:20:59 [ 28] [ 9] [D00000000] +09:20:59 [ 32] [ 6] [668899] +09:20:59 [ 35] [ 32] [6213543000196260=491212019626005] +09:20:59 [ 37] [ 12] [507901523575] +09:20:59 [ 41] [ 8] [03216001] +09:20:59 [ 42] [ 15] [APT ] +09:20:59 [ 43] [ 40] [ LAONGARM UNIT BAN NONEKHL] +09:20:59 [ 49] [ 3] [418] +09:20:59 [ 52] [ 16] [A33CAF36911161F1] +09:20:59 ============================================================================ +09:20:59 + + +waiting on router queue for slot.... +09:20:59 Sending to : +09:20:59 ============================================================================ +09:20:59 ============================================================================ +09:20:59 Slot Id : <375> +09:20:59 Transaction Type : REQUEST +09:20:59 Received From : +09:20:59 ============================================================================ +09:20:59 FNo. Len. Field Value +09:20:59 ============================================================================ +09:20:59 [ 1] [ 4] [0200] +09:20:59 [ 2] [ 16] [6213543000196260] +09:20:59 [ 3] [ 6] [302000] +09:20:59 [ 4] [ 12] [000000000000] +09:20:59 [ 7] [ 10] [0320091850] +09:20:59 [ 11] [ 6] [935316] +09:20:59 [ 12] [ 6] [091850] +09:20:59 [ 13] [ 4] [0320] +09:20:59 [ 15] [ 4] [0320] +09:20:59 [ 18] [ 4] [6011] +09:20:59 [ 19] [ 3] [418] +09:20:59 [ 22] [ 3] [021] +09:20:59 [ 25] [ 2] [01] +09:20:59 [ 28] [ 9] [D00000000] +09:20:59 [ 32] [ 6] [668899] +09:20:59 [ 35] [ 32] [6213543000196260=491212019626005] +09:20:59 [ 37] [ 12] [507901523575] +09:20:59 [ 41] [ 8] [03216001] +09:20:59 [ 42] [ 15] [APT ] +09:20:59 [ 43] [ 40] [ LAONGARM UNIT BAN NONEKHL] +09:20:59 [ 49] [ 3] [418] +09:20:59 [ 52] [ 16] [4284C2A334CABEFE] +09:20:59 ============================================================================ +09:20:59 + + +waiting on router queue for slot.... +09:20:59 Sending to : <0> +09:20:59 ============================================================================ +09:20:59 ============================================================================ +09:20:59 Slot Id : <375> +09:20:59 Transaction Type : RESPONSE +09:20:59 Received From : +09:20:59 ============================================================================ +09:20:59 FNo. Len. Field Value +09:20:59 ============================================================================ +09:20:59 [ 1] [ 4] [0210] +09:20:59 [ 2] [ 16] [6213543000196260] +09:20:59 [ 3] [ 6] [302000] +09:20:59 [ 4] [ 12] [000000000000] +09:20:59 [ 7] [ 10] [0320091850] +09:20:59 [ 11] [ 6] [935316] +09:20:59 [ 12] [ 6] [091850] +09:20:59 [ 13] [ 4] [0320] +09:20:59 [ 15] [ 4] [0320] +09:20:59 [ 18] [ 4] [6011] +09:20:59 [ 19] [ 3] [418] +09:20:59 [ 32] [ 6] [668899] +09:20:59 [ 35] [ 32] [6213543000196260=491212019626005] +09:20:59 [ 37] [ 12] [507901523575] +09:20:59 [ 38] [ 6] [204935] +09:20:59 [ 39] [ 2] [00] +09:20:59 [ 41] [ 8] [03216001] +09:20:59 [ 49] [ 3] [418] +09:20:59 [ 54] [ 40] [2001418C0000151554042002418C000015155404] +09:20:59 ============================================================================ +09:20:59 Sending to : +09:20:59 ============================================================================ +09:20:59 + + +waiting on router queue for slot.... +09:20:59 ============================================================================ +09:20:59 Slot Id : <362> +09:20:59 Transaction Type : REQUEST +09:20:59 Received From : +09:20:59 ============================================================================ +09:20:59 FNo. Len. Field Value +09:20:59 ============================================================================ +09:20:59 [ 1] [ 4] [0800] +09:20:59 [ 7] [ 10] [0320022004] +09:20:59 [ 11] [ 6] [155607] +09:20:59 [ 70] [ 3] [301] +09:20:59 ============================================================================ +09:20:59 + + +waiting on router queue for slot.... +09:20:59 Sending to : +09:20:59 ============================================================================ +09:20:59 ============================================================================ +09:20:59 Slot Id : <362> +09:20:59 Transaction Type : RESPONSE +09:20:59 Received From : +09:20:59 ============================================================================ +09:20:59 FNo. Len. Field Value +09:20:59 ============================================================================ +09:20:59 [ 1] [ 4] [0810] +09:20:59 [ 7] [ 10] [0320022004] +09:20:59 [ 11] [ 6] [155607] +09:20:59 [ 39] [ 2] [00] +09:20:59 [ 70] [ 3] [301] +09:20:59 ============================================================================ +09:20:59 Calculate Source COMM Id = 2 +09:20:59 ============================================================================ +09:20:59 + + +waiting on router queue for slot.... +09:21:00 ============================================================================ +09:21:00 Slot Id : <375> +09:21:00 Transaction Type : RESPONSE +09:21:00 Received From : +09:21:00 ============================================================================ +09:21:00 FNo. Len. Field Value +09:21:00 ============================================================================ +09:21:00 [ 1] [ 4] [0210] +09:21:00 [ 2] [ 16] [6213543000196260] +09:21:00 [ 3] [ 6] [302000] +09:21:00 [ 4] [ 12] [000000000000] +09:21:00 [ 7] [ 10] [0320091850] +09:21:00 [ 11] [ 6] [935316] +09:21:00 [ 12] [ 6] [091850] +09:21:00 [ 13] [ 4] [0320] +09:21:00 [ 15] [ 4] [0320] +09:21:00 [ 18] [ 4] [6011] +09:21:00 [ 19] [ 3] [418] +09:21:00 [ 32] [ 6] [668899] +09:21:00 [ 35] [ 32] [6213543000196260=491212019626005] +09:21:00 [ 37] [ 12] [507901523575] +09:21:00 [ 38] [ 6] [204935] +09:21:00 [ 39] [ 2] [00] +09:21:00 [ 41] [ 8] [03216001] +09:21:00 [ 49] [ 3] [418] +09:21:00 [ 54] [ 40] [2001418C0000151554042002418C000015155404] +09:21:00 ============================================================================ +09:21:00 Calculate Source COMM Id = 4 +09:21:00 ============================================================================ +09:21:00 + + +waiting on router queue for slot.... +09:21:12 ============================================================================ +09:21:12 Slot Id : <385> +09:21:12 Transaction Type : REQUEST +09:21:12 Received From : +09:21:12 ============================================================================ +09:21:12 FNo. Len. Field Value +09:21:12 ============================================================================ +09:21:12 [ 1] [ 4] [0800] +09:21:12 [ 7] [ 10] [0320022020] +09:21:12 [ 11] [ 6] [155608] +09:21:12 [ 70] [ 3] [301] +09:21:12 ============================================================================ +09:21:12 + + +waiting on router queue for slot.... +09:21:12 Sending to : +09:21:12 ============================================================================ +09:21:12 ============================================================================ +09:21:12 Slot Id : <385> +09:21:12 Transaction Type : RESPONSE +09:21:12 Received From : +09:21:12 ============================================================================ +09:21:12 FNo. Len. Field Value +09:21:12 ============================================================================ +09:21:12 [ 1] [ 4] [0810] +09:21:12 [ 7] [ 10] [0320022020] +09:21:12 [ 11] [ 6] [155608] +09:21:12 [ 39] [ 2] [00] +09:21:12 [ 70] [ 3] [301] +09:21:12 ============================================================================ +09:21:12 Calculate Source COMM Id = 2 +09:21:12 ============================================================================ +09:21:12 + + +waiting on router queue for slot.... +09:21:17 ============================================================================ +09:21:17 Slot Id : <447> +09:21:17 Transaction Type : REQUEST +09:21:17 Received From : +09:21:17 ============================================================================ +09:21:17 FNo. Len. Field Value +09:21:17 ============================================================================ +09:21:17 [ 1] [ 4] [0800] +09:21:17 [ 7] [ 10] [0320163306] +09:21:17 [ 11] [ 6] [093306] +09:21:17 [ 37] [ 12] [57909093306] +09:21:17 [ 70] [ 3] [301] +09:21:17 ============================================================================ +09:21:17 + + +waiting on router queue for slot.... +09:21:17 Sending to : +09:21:17 ============================================================================ +09:21:17 ============================================================================ +09:21:17 Slot Id : <447> +09:21:17 Transaction Type : RESPONSE +09:21:17 Received From : +09:21:17 ============================================================================ +09:21:17 FNo. Len. Field Value +09:21:17 ============================================================================ +09:21:17 [ 1] [ 4] [0810] +09:21:17 [ 7] [ 10] [0320163306] +09:21:17 [ 11] [ 6] [093306] +09:21:17 [ 37] [ 12] [579090933060] +09:21:17 [ 39] [ 2] [00] +09:21:17 [ 70] [ 3] [810] +09:21:17 ============================================================================ +09:21:17 Calculate Source COMM Id = 6 +09:21:17 ============================================================================ +09:21:17 + + +waiting on router queue for slot.... +09:21:20 ============================================================================ +09:21:20 Slot Id : <412> +09:21:20 Transaction Type : REQUEST +09:21:20 Received From : +09:21:20 ============================================================================ +09:21:20 FNo. Len. Field Value +09:21:20 ============================================================================ +09:21:20 [ 1] [ 4] [0200] +09:21:20 [ 2] [ 16] [6213545000627228] +09:21:20 [ 3] [ 6] [010000] +09:21:20 [ 4] [ 12] [000010000000] +09:21:20 [ 7] [ 10] [0320022027] +09:21:20 [ 11] [ 6] [267489] +09:21:20 [ 12] [ 6] [092027] +09:21:20 [ 13] [ 4] [0320] +09:21:20 [ 14] [ 4] [4912] +09:21:20 [ 15] [ 4] [0320] +09:21:20 [ 18] [ 4] [6011] +09:21:20 [ 19] [ 3] [418] +09:21:20 [ 22] [ 3] [021] +09:21:20 [ 25] [ 2] [01] +09:21:20 [ 28] [ 9] [D00002000] +09:21:20 [ 32] [ 6] [180893] +09:21:20 [ 35] [ 32] [6213545000627228=491212012722655] +09:21:20 [ 37] [ 12] [507902267489] +09:21:20 [ 41] [ 8] [0531VTHH] +09:21:20 [ 42] [ 15] [999999 ] +09:21:20 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:21:20 [ 49] [ 3] [418] +09:21:20 [ 52] [ 16] [0AAA2B1B06EE06C0] +09:21:20 ============================================================================ +09:21:20 + + +waiting on router queue for slot.... +09:21:20 Sending to : +09:21:20 ============================================================================ +09:21:20 Sending to : +09:21:20 ============================================================================ +09:21:20 ============================================================================ +09:21:20 Slot Id : <412> +09:21:20 Transaction Type : REQUEST +09:21:20 Received From : +09:21:20 ============================================================================ +09:21:20 FNo. Len. Field Value +09:21:20 ============================================================================ +09:21:20 [ 1] [ 4] [0200] +09:21:20 [ 2] [ 16] [6213545000627228] +09:21:20 [ 3] [ 6] [010000] +09:21:20 [ 4] [ 12] [000010000000] +09:21:20 [ 7] [ 10] [0320022027] +09:21:20 [ 11] [ 6] [267489] +09:21:20 [ 12] [ 6] [092027] +09:21:20 [ 13] [ 4] [0320] +09:21:20 [ 14] [ 4] [4912] +09:21:20 [ 15] [ 4] [0320] +09:21:20 [ 18] [ 4] [6011] +09:21:20 [ 19] [ 3] [418] +09:21:20 [ 22] [ 3] [021] +09:21:20 [ 25] [ 2] [01] +09:21:20 [ 28] [ 9] [D00002000] +09:21:20 [ 32] [ 6] [180893] +09:21:20 [ 35] [ 32] [6213545000627228=491212012722655] +09:21:20 [ 37] [ 12] [507902267489] +09:21:20 [ 41] [ 8] [0531VTHH] +09:21:20 [ 42] [ 15] [999999 ] +09:21:20 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:21:20 [ 49] [ 3] [418] +09:21:20 [ 52] [ 16] [0AAA2B1B06EE06C0] +09:21:20 ============================================================================ +09:21:20 + + +waiting on router queue for slot.... +09:21:20 Sending to : +09:21:20 ============================================================================ +09:21:20 ============================================================================ +09:21:20 Slot Id : <412> +09:21:20 Transaction Type : REQUEST +09:21:20 Received From : +09:21:20 ============================================================================ +09:21:20 FNo. Len. Field Value +09:21:20 ============================================================================ +09:21:20 [ 1] [ 4] [0200] +09:21:20 [ 2] [ 16] [6213545000627228] +09:21:20 [ 3] [ 6] [010000] +09:21:20 [ 4] [ 12] [000010000000] +09:21:20 [ 7] [ 10] [0320022027] +09:21:20 [ 11] [ 6] [267489] +09:21:20 [ 12] [ 6] [092027] +09:21:20 [ 13] [ 4] [0320] +09:21:20 [ 14] [ 4] [4912] +09:21:20 [ 15] [ 4] [0320] +09:21:20 [ 18] [ 4] [6011] +09:21:20 [ 19] [ 3] [418] +09:21:20 [ 22] [ 3] [021] +09:21:20 [ 25] [ 2] [01] +09:21:20 [ 28] [ 9] [D00002000] +09:21:20 [ 32] [ 6] [180893] +09:21:20 [ 35] [ 32] [6213545000627228=491212012722655] +09:21:20 [ 37] [ 12] [507902267489] +09:21:20 [ 41] [ 8] [0531VTHH] +09:21:20 [ 42] [ 15] [999999 ] +09:21:20 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:21:20 [ 49] [ 3] [418] +09:21:20 [ 52] [ 16] [1C70EE6DDA48D408] +09:21:20 ============================================================================ +09:21:20 + + +waiting on router queue for slot.... +09:21:20 Sending to : <0> +09:21:20 ============================================================================ +09:21:20 ============================================================================ +09:21:20 Slot Id : <392> +09:21:20 Transaction Type : REQUEST +09:21:20 Received From : +09:21:20 ============================================================================ +09:21:20 FNo. Len. Field Value +09:21:20 ============================================================================ +09:21:20 [ 1] [ 4] [0800] +09:21:20 [ 7] [ 10] [0320021912] +09:21:20 [ 11] [ 6] [002034] +09:21:20 [ 37] [ 12] [57909002034] +09:21:20 [ 70] [ 3] [301] +09:21:20 ============================================================================ +09:21:20 + + +waiting on router queue for slot.... +09:21:20 Sending to : +09:21:20 ============================================================================ +09:21:20 ============================================================================ +09:21:20 Slot Id : <392> +09:21:20 Transaction Type : RESPONSE +09:21:20 Received From : +09:21:20 ============================================================================ +09:21:20 FNo. Len. Field Value +09:21:20 ============================================================================ +09:21:20 [ 1] [ 4] [0810] +09:21:20 [ 7] [ 10] [0320021912] +09:21:20 [ 11] [ 6] [002034] +09:21:20 [ 37] [ 12] [579090020340] +09:21:20 [ 39] [ 2] [00] +09:21:20 [ 70] [ 3] [810] +09:21:20 ============================================================================ +09:21:20 Calculate Source COMM Id = 4 +09:21:20 ============================================================================ +09:21:20 + + +waiting on router queue for slot.... +09:21:21 ============================================================================ +09:21:21 Slot Id : <412> +09:21:21 Transaction Type : RESPONSE +09:21:21 Received From : +09:21:21 ============================================================================ +09:21:21 FNo. Len. Field Value +09:21:21 ============================================================================ +09:21:21 [ 1] [ 4] [0210] +09:21:21 [ 2] [ 16] [6213545000627228] +09:21:21 [ 3] [ 6] [010000] +09:21:21 [ 4] [ 12] [000010000000] +09:21:21 [ 7] [ 10] [0320022027] +09:21:21 [ 11] [ 6] [267489] +09:21:21 [ 12] [ 6] [092027] +09:21:21 [ 13] [ 4] [0320] +09:21:21 [ 15] [ 4] [0320] +09:21:21 [ 18] [ 4] [6011] +09:21:21 [ 19] [ 3] [418] +09:21:21 [ 32] [ 6] [180893] +09:21:21 [ 35] [ 32] [6213545000627228=491212012722655] +09:21:21 [ 37] [ 12] [507902267489] +09:21:21 [ 38] [ 6] [528953] +09:21:21 [ 39] [ 2] [00] +09:21:21 [ 41] [ 8] [0531VTHH] +09:21:21 [ 49] [ 3] [418] +09:21:21 [ 54] [ 40] [0001418C0000203763290002418C000020376329] +09:21:21 ============================================================================ +09:21:21 Sending to : +09:21:21 ============================================================================ +09:21:21 + + +waiting on router queue for slot.... +09:21:21 ============================================================================ +09:21:21 Slot Id : <450> +09:21:21 Transaction Type : REQUEST +09:21:21 Received From : +09:21:21 ============================================================================ +09:21:21 FNo. Len. Field Value +09:21:21 ============================================================================ +09:21:21 [ 1] [ 4] [0200] +09:21:21 [ 2] [ 16] [6213543000196260] +09:21:21 [ 3] [ 6] [010000] +09:21:21 [ 4] [ 12] [000010000000] +09:21:21 [ 7] [ 10] [0320091912] +09:21:21 [ 11] [ 6] [935335] +09:21:21 [ 12] [ 6] [091912] +09:21:21 [ 13] [ 4] [0320] +09:21:21 [ 15] [ 4] [0320] +09:21:21 [ 18] [ 4] [6011] +09:21:21 [ 19] [ 3] [418] +09:21:21 [ 22] [ 3] [021] +09:21:21 [ 25] [ 2] [01] +09:21:21 [ 28] [ 9] [D00002000] +09:21:21 [ 32] [ 6] [668899] +09:21:21 [ 35] [ 32] [6213543000196260=491212019626005] +09:21:21 [ 37] [ 12] [507901523576] +09:21:21 [ 41] [ 8] [03216001] +09:21:21 [ 42] [ 15] [APT ] +09:21:21 [ 43] [ 40] [ LAONGARM UNIT BAN NONEKHL] +09:21:21 [ 49] [ 3] [418] +09:21:21 [ 52] [ 16] [A33CAF36911161F1] +09:21:21 ============================================================================ +09:21:21 + + +waiting on router queue for slot.... +09:21:21 Sending to : +09:21:21 ============================================================================ +09:21:21 Sending to : +09:21:21 ============================================================================ +09:21:21 ============================================================================ +09:21:21 Slot Id : <450> +09:21:21 Transaction Type : REQUEST +09:21:21 Received From : +09:21:21 ============================================================================ +09:21:21 FNo. Len. Field Value +09:21:21 ============================================================================ +09:21:21 [ 1] [ 4] [0200] +09:21:21 [ 2] [ 16] [6213543000196260] +09:21:21 [ 3] [ 6] [010000] +09:21:21 [ 4] [ 12] [000010000000] +09:21:21 [ 7] [ 10] [0320091912] +09:21:21 [ 11] [ 6] [935335] +09:21:21 [ 12] [ 6] [091912] +09:21:21 [ 13] [ 4] [0320] +09:21:21 [ 15] [ 4] [0320] +09:21:21 [ 18] [ 4] [6011] +09:21:21 [ 19] [ 3] [418] +09:21:21 [ 22] [ 3] [021] +09:21:21 [ 25] [ 2] [01] +09:21:21 [ 28] [ 9] [D00002000] +09:21:21 [ 32] [ 6] [668899] +09:21:21 [ 35] [ 32] [6213543000196260=491212019626005] +09:21:21 [ 37] [ 12] [507901523576] +09:21:21 [ 41] [ 8] [03216001] +09:21:21 [ 42] [ 15] [APT ] +09:21:21 [ 43] [ 40] [ LAONGARM UNIT BAN NONEKHL] +09:21:21 [ 49] [ 3] [418] +09:21:21 [ 52] [ 16] [A33CAF36911161F1] +09:21:21 ============================================================================ +09:21:21 + + +waiting on router queue for slot.... +09:21:21 Sending to : +09:21:21 ============================================================================ +09:21:21 ============================================================================ +09:21:21 Slot Id : <450> +09:21:21 Transaction Type : REQUEST +09:21:21 Received From : +09:21:21 ============================================================================ +09:21:21 FNo. Len. Field Value +09:21:21 ============================================================================ +09:21:21 [ 1] [ 4] [0200] +09:21:21 [ 2] [ 16] [6213543000196260] +09:21:21 [ 3] [ 6] [010000] +09:21:21 [ 4] [ 12] [000010000000] +09:21:21 [ 7] [ 10] [0320091912] +09:21:21 [ 11] [ 6] [935335] +09:21:21 [ 12] [ 6] [091912] +09:21:21 [ 13] [ 4] [0320] +09:21:21 [ 15] [ 4] [0320] +09:21:21 [ 18] [ 4] [6011] +09:21:21 [ 19] [ 3] [418] +09:21:21 [ 22] [ 3] [021] +09:21:21 [ 25] [ 2] [01] +09:21:21 [ 28] [ 9] [D00002000] +09:21:21 [ 32] [ 6] [668899] +09:21:21 [ 35] [ 32] [6213543000196260=491212019626005] +09:21:21 [ 37] [ 12] [507901523576] +09:21:21 [ 41] [ 8] [03216001] +09:21:21 [ 42] [ 15] [APT ] +09:21:21 [ 43] [ 40] [ LAONGARM UNIT BAN NONEKHL] +09:21:21 [ 49] [ 3] [418] +09:21:21 [ 52] [ 16] [4284C2A334CABEFE] +09:21:21 ============================================================================ +09:21:21 + + +waiting on router queue for slot.... +09:21:21 Sending to : <0> +09:21:21 ============================================================================ +09:21:22 ============================================================================ +09:21:22 Slot Id : <412> +09:21:22 Transaction Type : RESPONSE +09:21:22 Received From : +09:21:22 ============================================================================ +09:21:22 FNo. Len. Field Value +09:21:22 ============================================================================ +09:21:22 [ 1] [ 4] [0210] +09:21:22 [ 2] [ 16] [6213545000627228] +09:21:22 [ 3] [ 6] [010000] +09:21:22 [ 4] [ 12] [000010000000] +09:21:22 [ 7] [ 10] [0320022027] +09:21:22 [ 11] [ 6] [267489] +09:21:22 [ 12] [ 6] [092027] +09:21:22 [ 13] [ 4] [0320] +09:21:22 [ 15] [ 4] [0320] +09:21:22 [ 18] [ 4] [6011] +09:21:22 [ 19] [ 3] [418] +09:21:22 [ 32] [ 6] [180893] +09:21:22 [ 35] [ 32] [6213545000627228=491212012722655] +09:21:22 [ 37] [ 12] [507902267489] +09:21:22 [ 38] [ 6] [528953] +09:21:22 [ 39] [ 2] [00] +09:21:22 [ 41] [ 8] [0531VTHH] +09:21:22 [ 49] [ 3] [418] +09:21:22 [ 54] [ 40] [0001418C0000203763290002418C000020376329] +09:21:22 ============================================================================ +09:21:22 Calculate Source COMM Id = 2 +09:21:22 ============================================================================ +09:21:22 + + +waiting on router queue for slot.... +09:21:22 ============================================================================ +09:21:22 Slot Id : <450> +09:21:22 Transaction Type : RESPONSE +09:21:22 Received From : +09:21:22 ============================================================================ +09:21:22 FNo. Len. Field Value +09:21:22 ============================================================================ +09:21:22 [ 1] [ 4] [0210] +09:21:22 [ 2] [ 16] [6213543000196260] +09:21:22 [ 3] [ 6] [010000] +09:21:22 [ 4] [ 12] [000010000000] +09:21:22 [ 7] [ 10] [0320091912] +09:21:22 [ 11] [ 6] [935335] +09:21:22 [ 12] [ 6] [091912] +09:21:22 [ 13] [ 4] [0320] +09:21:22 [ 15] [ 4] [0320] +09:21:22 [ 18] [ 4] [6011] +09:21:22 [ 19] [ 3] [418] +09:21:22 [ 32] [ 6] [668899] +09:21:22 [ 35] [ 32] [6213543000196260=491212019626005] +09:21:22 [ 37] [ 12] [507901523576] +09:21:22 [ 38] [ 6] [935335] +09:21:22 [ 39] [ 2] [51] +09:21:22 [ 41] [ 8] [03216001] +09:21:22 [ 49] [ 3] [418] +09:21:22 [ 54] [ 40] [0001418C0000151554040002418C000015155404] +09:21:22 ============================================================================ +09:21:22 Sending to : +09:21:22 ============================================================================ +09:21:22 + + +waiting on router queue for slot.... +09:21:23 ============================================================================ +09:21:23 Slot Id : <450> +09:21:23 Transaction Type : RESPONSE +09:21:23 Received From : +09:21:23 ============================================================================ +09:21:23 FNo. Len. Field Value +09:21:23 ============================================================================ +09:21:23 [ 1] [ 4] [0210] +09:21:23 [ 2] [ 16] [6213543000196260] +09:21:23 [ 3] [ 6] [010000] +09:21:23 [ 4] [ 12] [000010000000] +09:21:23 [ 7] [ 10] [0320091912] +09:21:23 [ 11] [ 6] [935335] +09:21:23 [ 12] [ 6] [091912] +09:21:23 [ 13] [ 4] [0320] +09:21:23 [ 15] [ 4] [0320] +09:21:23 [ 18] [ 4] [6011] +09:21:23 [ 19] [ 3] [418] +09:21:23 [ 32] [ 6] [668899] +09:21:23 [ 35] [ 32] [6213543000196260=491212019626005] +09:21:23 [ 37] [ 12] [507901523576] +09:21:23 [ 38] [ 6] [935335] +09:21:23 [ 39] [ 2] [51] +09:21:23 [ 41] [ 8] [03216001] +09:21:23 [ 49] [ 3] [418] +09:21:23 [ 54] [ 40] [0001418C0000151554040002418C000015155404] +09:21:23 ============================================================================ +09:21:23 Calculate Source COMM Id = 4 +09:21:23 ============================================================================ +09:21:23 + + +waiting on router queue for slot.... +09:21:34 ============================================================================ +09:21:34 Slot Id : <417> +09:21:34 Transaction Type : REQUEST +09:21:34 Received From : +09:21:34 ============================================================================ +09:21:34 FNo. Len. Field Value +09:21:34 ============================================================================ +09:21:34 [ 1] [ 4] [0800] +09:21:34 [ 7] [ 10] [0320022042] +09:21:34 [ 11] [ 6] [155609] +09:21:34 [ 70] [ 3] [301] +09:21:34 ============================================================================ +09:21:34 + + +waiting on router queue for slot.... +09:21:34 Sending to : +09:21:34 ============================================================================ +09:21:34 ============================================================================ +09:21:34 Slot Id : <417> +09:21:34 Transaction Type : RESPONSE +09:21:34 Received From : +09:21:34 ============================================================================ +09:21:34 FNo. Len. Field Value +09:21:34 ============================================================================ +09:21:34 [ 1] [ 4] [0810] +09:21:34 [ 7] [ 10] [0320022042] +09:21:34 [ 11] [ 6] [155609] +09:21:34 [ 39] [ 2] [00] +09:21:34 [ 70] [ 3] [301] +09:21:34 ============================================================================ +09:21:34 Calculate Source COMM Id = 2 +09:21:34 ============================================================================ +09:21:34 + + +waiting on router queue for slot.... +09:21:42 ============================================================================ +09:21:42 Slot Id : <386> +09:21:42 Transaction Type : REQUEST +09:21:42 Received From : +09:21:42 ============================================================================ +09:21:42 FNo. Len. Field Value +09:21:42 ============================================================================ +09:21:42 [ 1] [ 4] [0800] +09:21:42 [ 2] [ 5] [02531] +09:21:42 [ 3] [ 6] [579098] +09:21:42 [ 7] [ 10] [0320022142] +09:21:42 [ 11] [ 6] [806955] +09:21:42 [ 15] [ 10] [0320022142] +09:21:42 [ 37] [ 11] [57909806955] +09:21:42 [ 70] [ 3] [001] +09:21:42 ============================================================================ +09:21:42 + + +waiting on router queue for slot.... +09:21:42 ============================================================================ +09:21:42 Slot Id : <386> +09:21:42 Transaction Type : RESPONSE +09:21:42 Received From : +09:21:42 ============================================================================ +09:21:42 FNo. Len. Field Value +09:21:42 ============================================================================ +09:21:42 [ 1] [ 4] [0810] +09:21:42 [ 7] [ 10] [0320022142] +09:21:42 [ 11] [ 6] [806955] +09:21:42 [ 15] [ 4] [0320] +09:21:42 [ 37] [ 12] [57909806955] +09:21:42 [ 39] [ 2] [00] +09:21:42 [ 70] [ 3] [001] +09:21:42 ============================================================================ +09:21:42 Sending to : +09:21:42 ============================================================================ +09:21:42 + + +waiting on router queue for slot.... +09:21:45 ============================================================================ +09:21:45 Slot Id : <377> +09:21:45 Transaction Type : REQUEST +09:21:45 Received From : +09:21:45 ============================================================================ +09:21:45 FNo. Len. Field Value +09:21:45 ============================================================================ +09:21:45 [ 1] [ 4] [0200] +09:21:45 [ 2] [ 16] [6688990104502404] +09:21:45 [ 3] [ 6] [300000] +09:21:45 [ 4] [ 12] [000000000000] +09:21:45 [ 7] [ 10] [0320092141] +09:21:45 [ 11] [ 6] [697306] +09:21:45 [ 12] [ 6] [092141] +09:21:45 [ 13] [ 4] [0320] +09:21:45 [ 15] [ 4] [0320] +09:21:45 [ 18] [ 4] [6011] +09:21:45 [ 22] [ 3] [900] +09:21:45 [ 25] [ 2] [02] +09:21:45 [ 28] [ 9] [D00000000] +09:21:45 [ 32] [ 6] [621354] +09:21:45 [ 35] [ 37] [6688990104502404=43041231240460000000] +09:21:45 [ 37] [ 12] [507902508153] +09:21:45 [ 41] [ 8] [05003300] +09:21:45 [ 42] [ 15] [NATIVE ] +09:21:45 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:21:45 [ 49] [ 3] [418] +09:21:45 [ 52] [ 16] [CD04ABBEC45EEB5A] +09:21:45 ============================================================================ +09:21:45 + + +waiting on router queue for slot.... +09:21:45 Sending to : +09:21:45 ============================================================================ +09:21:45 Sending to : +09:21:45 ============================================================================ +09:21:46 ============================================================================ +09:21:46 Slot Id : <377> +09:21:46 Transaction Type : REQUEST +09:21:46 Received From : +09:21:46 ============================================================================ +09:21:46 FNo. Len. Field Value +09:21:46 ============================================================================ +09:21:46 [ 1] [ 4] [0200] +09:21:46 [ 2] [ 16] [6688990104502404] +09:21:46 [ 3] [ 6] [300000] +09:21:46 [ 4] [ 12] [000000000000] +09:21:46 [ 7] [ 10] [0320092141] +09:21:46 [ 11] [ 6] [697306] +09:21:46 [ 12] [ 6] [092141] +09:21:46 [ 13] [ 4] [0320] +09:21:46 [ 15] [ 4] [0320] +09:21:46 [ 18] [ 4] [6011] +09:21:46 [ 22] [ 3] [900] +09:21:46 [ 25] [ 2] [02] +09:21:46 [ 28] [ 9] [D00000000] +09:21:46 [ 32] [ 6] [621354] +09:21:46 [ 35] [ 37] [6688990104502404=43041231240460000000] +09:21:46 [ 37] [ 12] [507902508153] +09:21:46 [ 41] [ 8] [05003300] +09:21:46 [ 42] [ 15] [NATIVE ] +09:21:46 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:21:46 [ 49] [ 3] [418] +09:21:46 [ 52] [ 16] [CD04ABBEC45EEB5A] +09:21:46 ============================================================================ +09:21:46 + + +waiting on router queue for slot.... +09:21:46 Sending to : +09:21:46 ============================================================================ +09:21:46 ============================================================================ +09:21:46 Slot Id : <377> +09:21:46 Transaction Type : REQUEST +09:21:46 Received From : +09:21:46 ============================================================================ +09:21:46 FNo. Len. Field Value +09:21:46 ============================================================================ +09:21:46 [ 1] [ 4] [0200] +09:21:46 [ 2] [ 16] [6688990104502404] +09:21:46 [ 3] [ 6] [300000] +09:21:46 [ 4] [ 12] [000000000000] +09:21:46 [ 7] [ 10] [0320092141] +09:21:46 [ 11] [ 6] [697306] +09:21:46 [ 12] [ 6] [092141] +09:21:46 [ 13] [ 4] [0320] +09:21:46 [ 15] [ 4] [0320] +09:21:46 [ 18] [ 4] [6011] +09:21:46 [ 22] [ 3] [900] +09:21:46 [ 25] [ 2] [02] +09:21:46 [ 28] [ 9] [D00000000] +09:21:46 [ 32] [ 6] [621354] +09:21:46 [ 35] [ 37] [6688990104502404=43041231240460000000] +09:21:46 [ 37] [ 12] [507902508153] +09:21:46 [ 41] [ 8] [05003300] +09:21:46 [ 42] [ 15] [NATIVE ] +09:21:46 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:21:46 [ 49] [ 3] [418] +09:21:46 [ 52] [ 16] [22E5BFFE090F88C7] +09:21:46 ============================================================================ +09:21:46 + + +waiting on router queue for slot.... +09:21:46 Sending to : <4> +09:21:46 ============================================================================ +09:21:46 ============================================================================ +09:21:46 Slot Id : <377> +09:21:46 Transaction Type : RESPONSE +09:21:46 Received From : +09:21:46 ============================================================================ +09:21:46 FNo. Len. Field Value +09:21:46 ============================================================================ +09:21:46 [ 1] [ 4] [0210] +09:21:46 [ 2] [ 16] [6688990104502404] +09:21:46 [ 3] [ 6] [300000] +09:21:46 [ 4] [ 12] [000000000000] +09:21:46 [ 11] [ 6] [697306] +09:21:46 [ 12] [ 6] [092141] +09:21:46 [ 15] [ 4] [0320] +09:21:46 [ 18] [ 4] [6011] +09:21:46 [ 32] [ 6] [621354] +09:21:46 [ 35] [ 37] [6688990104502404=43041231240460000000] +09:21:46 [ 37] [ 12] [507902508153] +09:21:46 [ 38] [ 6] [326071] +09:21:46 [ 39] [ 2] [00] +09:21:46 [ 41] [ 8] [05003300] +09:21:46 [ 49] [ 3] [418] +09:21:46 [ 54] [ 20] [0002418C000468533348] +09:21:46 ============================================================================ +09:21:46 Sending to : +09:21:46 ============================================================================ +09:21:46 + + +waiting on router queue for slot.... +09:21:48 ============================================================================ +09:21:48 Slot Id : <377> +09:21:48 Transaction Type : RESPONSE +09:21:48 Received From : +09:21:48 ============================================================================ +09:21:48 FNo. Len. Field Value +09:21:48 ============================================================================ +09:21:48 [ 1] [ 4] [0210] +09:21:48 [ 2] [ 16] [6688990104502404] +09:21:48 [ 3] [ 6] [300000] +09:21:48 [ 4] [ 12] [000000000000] +09:21:48 [ 11] [ 6] [697306] +09:21:48 [ 12] [ 6] [092141] +09:21:48 [ 15] [ 4] [0320] +09:21:48 [ 18] [ 4] [6011] +09:21:48 [ 32] [ 6] [621354] +09:21:48 [ 35] [ 37] [6688990104502404=43041231240460000000] +09:21:48 [ 37] [ 12] [507902508153] +09:21:48 [ 38] [ 6] [326071] +09:21:48 [ 39] [ 2] [00] +09:21:48 [ 41] [ 8] [05003300] +09:21:48 [ 49] [ 3] [418] +09:21:48 [ 54] [ 20] [0002418C000468533348] +09:21:48 ============================================================================ +09:21:48 Calculate Source COMM Id = 0 +09:21:48 ============================================================================ +09:21:48 + + +waiting on router queue for slot.... +09:21:49 ============================================================================ +09:21:49 Slot Id : <443> +09:21:49 Transaction Type : REQUEST +09:21:49 Received From : +09:21:49 ============================================================================ +09:21:49 FNo. Len. Field Value +09:21:49 ============================================================================ +09:21:49 [ 1] [ 4] [0200] +09:21:49 [ 2] [ 16] [6213541000439532] +09:21:49 [ 3] [ 6] [010000] +09:21:49 [ 4] [ 12] [000015000000] +09:21:49 [ 7] [ 10] [0320091941] +09:21:49 [ 11] [ 6] [935349] +09:21:49 [ 12] [ 6] [091941] +09:21:49 [ 13] [ 4] [0320] +09:21:49 [ 15] [ 4] [0320] +09:21:49 [ 18] [ 4] [6011] +09:21:49 [ 19] [ 3] [418] +09:21:49 [ 22] [ 3] [021] +09:21:49 [ 25] [ 2] [01] +09:21:49 [ 28] [ 9] [D00002000] +09:21:49 [ 32] [ 6] [668899] +09:21:49 [ 35] [ 32] [6213541000439532=491212013953708] +09:21:49 [ 37] [ 12] [507900146414] +09:21:49 [ 41] [ 8] [03020005] +09:21:49 [ 42] [ 15] [APT ] +09:21:49 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +09:21:49 [ 49] [ 3] [418] +09:21:49 [ 52] [ 16] [4AC7674BD987FD13] +09:21:49 ============================================================================ +09:21:49 + + +waiting on router queue for slot.... +09:21:49 Sending to : +09:21:49 ============================================================================ +09:21:49 Sending to : +09:21:49 ============================================================================ +09:21:50 ============================================================================ +09:21:50 Slot Id : <443> +09:21:50 Transaction Type : REQUEST +09:21:50 Received From : +09:21:50 ============================================================================ +09:21:50 FNo. Len. Field Value +09:21:50 ============================================================================ +09:21:50 [ 1] [ 4] [0200] +09:21:50 [ 2] [ 16] [6213541000439532] +09:21:50 [ 3] [ 6] [010000] +09:21:50 [ 4] [ 12] [000015000000] +09:21:50 [ 7] [ 10] [0320091941] +09:21:50 [ 11] [ 6] [935349] +09:21:50 [ 12] [ 6] [091941] +09:21:50 [ 13] [ 4] [0320] +09:21:50 [ 15] [ 4] [0320] +09:21:50 [ 18] [ 4] [6011] +09:21:50 [ 19] [ 3] [418] +09:21:50 [ 22] [ 3] [021] +09:21:50 [ 25] [ 2] [01] +09:21:50 [ 28] [ 9] [D00002000] +09:21:50 [ 32] [ 6] [668899] +09:21:50 [ 35] [ 32] [6213541000439532=491212013953708] +09:21:50 [ 37] [ 12] [507900146414] +09:21:50 [ 41] [ 8] [03020005] +09:21:50 [ 42] [ 15] [APT ] +09:21:50 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +09:21:50 [ 49] [ 3] [418] +09:21:50 [ 52] [ 16] [4AC7674BD987FD13] +09:21:50 ============================================================================ +09:21:50 + + +waiting on router queue for slot.... +09:21:50 Sending to : +09:21:50 ============================================================================ +09:21:50 ============================================================================ +09:21:50 Slot Id : <443> +09:21:50 Transaction Type : REQUEST +09:21:50 Received From : +09:21:50 ============================================================================ +09:21:50 FNo. Len. Field Value +09:21:50 ============================================================================ +09:21:50 [ 1] [ 4] [0200] +09:21:50 [ 2] [ 16] [6213541000439532] +09:21:50 [ 3] [ 6] [010000] +09:21:50 [ 4] [ 12] [000015000000] +09:21:50 [ 7] [ 10] [0320091941] +09:21:50 [ 11] [ 6] [935349] +09:21:50 [ 12] [ 6] [091941] +09:21:50 [ 13] [ 4] [0320] +09:21:50 [ 15] [ 4] [0320] +09:21:50 [ 18] [ 4] [6011] +09:21:50 [ 19] [ 3] [418] +09:21:50 [ 22] [ 3] [021] +09:21:50 [ 25] [ 2] [01] +09:21:50 [ 28] [ 9] [D00002000] +09:21:50 [ 32] [ 6] [668899] +09:21:50 [ 35] [ 32] [6213541000439532=491212013953708] +09:21:50 [ 37] [ 12] [507900146414] +09:21:50 [ 41] [ 8] [03020005] +09:21:50 [ 42] [ 15] [APT ] +09:21:50 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +09:21:50 [ 49] [ 3] [418] +09:21:50 [ 52] [ 16] [EFA8DC0C239D954A] +09:21:50 ============================================================================ +09:21:50 + + +waiting on router queue for slot.... +09:21:50 Sending to : <0> +09:21:50 ============================================================================ +09:21:50 ============================================================================ +09:21:50 Slot Id : <391> +09:21:50 Transaction Type : REQUEST +09:21:50 Received From : +09:21:50 ============================================================================ +09:21:50 FNo. Len. Field Value +09:21:50 ============================================================================ +09:21:50 [ 1] [ 4] [0800] +09:21:50 [ 7] [ 10] [0320022058] +09:21:50 [ 11] [ 6] [155610] +09:21:50 [ 70] [ 3] [301] +09:21:50 ============================================================================ +09:21:50 + + +waiting on router queue for slot.... +09:21:50 Sending to : +09:21:50 ============================================================================ +09:21:50 ============================================================================ +09:21:50 Slot Id : <391> +09:21:50 Transaction Type : RESPONSE +09:21:50 Received From : +09:21:50 ============================================================================ +09:21:50 FNo. Len. Field Value +09:21:50 ============================================================================ +09:21:50 [ 1] [ 4] [0810] +09:21:50 [ 7] [ 10] [0320022058] +09:21:50 [ 11] [ 6] [155610] +09:21:50 [ 39] [ 2] [00] +09:21:50 [ 70] [ 3] [301] +09:21:50 ============================================================================ +09:21:50 Calculate Source COMM Id = 2 +09:21:50 ============================================================================ +09:21:50 + + +waiting on router queue for slot.... +09:21:51 ============================================================================ +09:21:51 Slot Id : <443> +09:21:51 Transaction Type : RESPONSE +09:21:51 Received From : +09:21:51 ============================================================================ +09:21:51 FNo. Len. Field Value +09:21:51 ============================================================================ +09:21:51 [ 1] [ 4] [0210] +09:21:51 [ 2] [ 16] [6213541000439532] +09:21:51 [ 3] [ 6] [010000] +09:21:51 [ 4] [ 12] [000015000000] +09:21:51 [ 7] [ 10] [0320091941] +09:21:51 [ 11] [ 6] [935349] +09:21:51 [ 12] [ 6] [091941] +09:21:51 [ 13] [ 4] [0320] +09:21:51 [ 15] [ 4] [0320] +09:21:51 [ 18] [ 4] [6011] +09:21:51 [ 19] [ 3] [418] +09:21:51 [ 32] [ 6] [668899] +09:21:51 [ 35] [ 32] [6213541000439532=491212013953708] +09:21:51 [ 37] [ 12] [507900146414] +09:21:51 [ 38] [ 6] [935349] +09:21:51 [ 39] [ 2] [51] +09:21:51 [ 41] [ 8] [03020005] +09:21:51 [ 49] [ 3] [418] +09:21:51 [ 54] [ 40] [0001418C0000196258350002418C000019625835] +09:21:51 ============================================================================ +09:21:51 Sending to : +09:21:51 ============================================================================ +09:21:51 + + +waiting on router queue for slot.... +09:21:52 ============================================================================ +09:21:52 Slot Id : <443> +09:21:52 Transaction Type : RESPONSE +09:21:52 Received From : +09:21:52 ============================================================================ +09:21:52 FNo. Len. Field Value +09:21:52 ============================================================================ +09:21:52 [ 1] [ 4] [0210] +09:21:52 [ 2] [ 16] [6213541000439532] +09:21:52 [ 3] [ 6] [010000] +09:21:52 [ 4] [ 12] [000015000000] +09:21:52 [ 7] [ 10] [0320091941] +09:21:52 [ 11] [ 6] [935349] +09:21:52 [ 12] [ 6] [091941] +09:21:52 [ 13] [ 4] [0320] +09:21:52 [ 15] [ 4] [0320] +09:21:52 [ 18] [ 4] [6011] +09:21:52 [ 19] [ 3] [418] +09:21:52 [ 32] [ 6] [668899] +09:21:52 [ 35] [ 32] [6213541000439532=491212013953708] +09:21:52 [ 37] [ 12] [507900146414] +09:21:52 [ 38] [ 6] [935349] +09:21:52 [ 39] [ 2] [51] +09:21:52 [ 41] [ 8] [03020005] +09:21:52 [ 49] [ 3] [418] +09:21:52 [ 54] [ 40] [0001418C0000196258350002418C000019625835] +09:21:52 ============================================================================ +09:21:52 Calculate Source COMM Id = 4 +09:21:52 ============================================================================ +09:21:52 + + +waiting on router queue for slot.... +09:21:52 ============================================================================ +09:21:52 Slot Id : <405> +09:21:52 Transaction Type : REQUEST +09:21:52 Received From : +09:21:52 ============================================================================ +09:21:52 FNo. Len. Field Value +09:21:52 ============================================================================ +09:21:52 [ 1] [ 4] [0200] +09:21:52 [ 2] [ 16] [6688990040001149] +09:21:52 [ 3] [ 6] [011000] +09:21:52 [ 4] [ 12] [000030000000] +09:21:52 [ 7] [ 10] [0320092148] +09:21:52 [ 11] [ 6] [697331] +09:21:52 [ 12] [ 6] [092148] +09:21:52 [ 13] [ 4] [0320] +09:21:52 [ 15] [ 4] [0320] +09:21:52 [ 18] [ 4] [6011] +09:21:52 [ 22] [ 3] [900] +09:21:52 [ 25] [ 2] [02] +09:21:52 [ 28] [ 9] [D00002000] +09:21:52 [ 32] [ 6] [621354] +09:21:52 [ 35] [ 37] [6688990040001149=97091261923908500000] +09:21:52 [ 37] [ 12] [507904795508] +09:21:52 [ 41] [ 8] [07001500] +09:21:52 [ 42] [ 15] [NATIVE ] +09:21:52 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +09:21:52 [ 49] [ 3] [418] +09:21:52 [ 52] [ 16] [5625550EE482BC99] +09:21:52 ============================================================================ +09:21:52 + + +waiting on router queue for slot.... +09:21:52 Sending to : +09:21:52 ============================================================================ +09:21:52 Sending to : +09:21:52 ============================================================================ +09:21:52 ============================================================================ +09:21:52 Slot Id : <405> +09:21:52 Transaction Type : REQUEST +09:21:52 Received From : +09:21:52 ============================================================================ +09:21:52 FNo. Len. Field Value +09:21:52 ============================================================================ +09:21:52 [ 1] [ 4] [0200] +09:21:52 [ 2] [ 16] [6688990040001149] +09:21:52 [ 3] [ 6] [011000] +09:21:52 [ 4] [ 12] [000030000000] +09:21:52 [ 7] [ 10] [0320092148] +09:21:52 [ 11] [ 6] [697331] +09:21:52 [ 12] [ 6] [092148] +09:21:52 [ 13] [ 4] [0320] +09:21:52 [ 15] [ 4] [0320] +09:21:52 [ 18] [ 4] [6011] +09:21:52 [ 22] [ 3] [900] +09:21:52 [ 25] [ 2] [02] +09:21:52 [ 28] [ 9] [D00002000] +09:21:52 [ 32] [ 6] [621354] +09:21:52 [ 35] [ 37] [6688990040001149=97091261923908500000] +09:21:52 [ 37] [ 12] [507904795508] +09:21:52 [ 41] [ 8] [07001500] +09:21:52 [ 42] [ 15] [NATIVE ] +09:21:52 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +09:21:52 [ 49] [ 3] [418] +09:21:52 [ 52] [ 16] [5625550EE482BC99] +09:21:52 ============================================================================ +09:21:52 + + +waiting on router queue for slot.... +09:21:52 Sending to : +09:21:52 ============================================================================ +09:21:52 ============================================================================ +09:21:52 Slot Id : <405> +09:21:52 Transaction Type : REQUEST +09:21:52 Received From : +09:21:52 ============================================================================ +09:21:52 FNo. Len. Field Value +09:21:52 ============================================================================ +09:21:52 [ 1] [ 4] [0200] +09:21:52 [ 2] [ 16] [6688990040001149] +09:21:52 [ 3] [ 6] [011000] +09:21:52 [ 4] [ 12] [000030000000] +09:21:52 [ 7] [ 10] [0320092148] +09:21:52 [ 11] [ 6] [697331] +09:21:52 [ 12] [ 6] [092148] +09:21:52 [ 13] [ 4] [0320] +09:21:52 [ 15] [ 4] [0320] +09:21:52 [ 18] [ 4] [6011] +09:21:52 [ 22] [ 3] [900] +09:21:52 [ 25] [ 2] [02] +09:21:52 [ 28] [ 9] [D00002000] +09:21:52 [ 32] [ 6] [621354] +09:21:52 [ 35] [ 37] [6688990040001149=97091261923908500000] +09:21:52 [ 37] [ 12] [507904795508] +09:21:52 [ 41] [ 8] [07001500] +09:21:52 [ 42] [ 15] [NATIVE ] +09:21:52 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +09:21:52 [ 49] [ 3] [418] +09:21:52 [ 52] [ 16] [AFAEDDE11CD7AE4F] +09:21:52 ============================================================================ +09:21:52 + + +waiting on router queue for slot.... +09:21:52 Sending to : <4> +09:21:52 ============================================================================ +09:21:53 ============================================================================ +09:21:53 Slot Id : <405> +09:21:53 Transaction Type : RESPONSE +09:21:53 Received From : +09:21:53 ============================================================================ +09:21:53 FNo. Len. Field Value +09:21:53 ============================================================================ +09:21:53 [ 1] [ 4] [0210] +09:21:53 [ 2] [ 16] [6688990040001149] +09:21:53 [ 3] [ 6] [011000] +09:21:53 [ 4] [ 12] [000030000000] +09:21:53 [ 11] [ 6] [697331] +09:21:53 [ 12] [ 6] [092148] +09:21:53 [ 15] [ 4] [0320] +09:21:53 [ 18] [ 4] [6011] +09:21:53 [ 32] [ 6] [621354] +09:21:53 [ 35] [ 37] [6688990040001149=97091261923908500000] +09:21:53 [ 37] [ 12] [507904795508] +09:21:53 [ 39] [ 2] [51] +09:21:53 [ 41] [ 8] [07001500] +09:21:53 [ 49] [ 3] [418] +09:21:53 [ 54] [ 0] [] +09:21:53 ============================================================================ +09:21:53 Sending to : +09:21:53 ============================================================================ +09:21:53 + + +waiting on router queue for slot.... +09:21:55 ============================================================================ +09:21:55 Slot Id : <405> +09:21:55 Transaction Type : RESPONSE +09:21:55 Received From : +09:21:55 ============================================================================ +09:21:55 FNo. Len. Field Value +09:21:55 ============================================================================ +09:21:55 [ 1] [ 4] [0210] +09:21:55 [ 2] [ 16] [6688990040001149] +09:21:55 [ 3] [ 6] [011000] +09:21:55 [ 4] [ 12] [000030000000] +09:21:55 [ 11] [ 6] [697331] +09:21:55 [ 12] [ 6] [092148] +09:21:55 [ 15] [ 4] [0320] +09:21:55 [ 18] [ 4] [6011] +09:21:55 [ 32] [ 6] [621354] +09:21:55 [ 35] [ 37] [6688990040001149=97091261923908500000] +09:21:55 [ 37] [ 12] [507904795508] +09:21:55 [ 39] [ 2] [51] +09:21:55 [ 41] [ 8] [07001500] +09:21:55 [ 49] [ 3] [418] +09:21:55 [ 54] [ 0] [] +09:21:55 ============================================================================ +09:21:55 Calculate Source COMM Id = 0 +09:21:55 ============================================================================ +09:21:55 + + +waiting on router queue for slot.... +09:21:57 ============================================================================ +09:21:57 Slot Id : <456> +09:21:57 Transaction Type : REQUEST +09:21:57 Received From : +09:21:57 ============================================================================ +09:21:57 FNo. Len. Field Value +09:21:57 ============================================================================ +09:21:57 [ 1] [ 4] [0200] +09:21:57 [ 2] [ 16] [6213543000196260] +09:21:57 [ 3] [ 6] [010000] +09:21:57 [ 4] [ 12] [000009000000] +09:21:57 [ 7] [ 10] [0320091948] +09:21:57 [ 11] [ 6] [935355] +09:21:57 [ 12] [ 6] [091948] +09:21:57 [ 13] [ 4] [0320] +09:21:57 [ 15] [ 4] [0320] +09:21:57 [ 18] [ 4] [6011] +09:21:57 [ 19] [ 3] [418] +09:21:57 [ 22] [ 3] [021] +09:21:57 [ 25] [ 2] [01] +09:21:57 [ 28] [ 9] [D00002000] +09:21:57 [ 32] [ 6] [668899] +09:21:57 [ 35] [ 32] [6213543000196260=491212019626005] +09:21:57 [ 37] [ 12] [507901523577] +09:21:57 [ 41] [ 8] [03216001] +09:21:57 [ 42] [ 15] [APT ] +09:21:57 [ 43] [ 40] [ LAONGARM UNIT BAN NONEKHL] +09:21:57 [ 49] [ 3] [418] +09:21:57 [ 52] [ 16] [A33CAF36911161F1] +09:21:57 ============================================================================ +09:21:57 + + +waiting on router queue for slot.... +09:21:57 Sending to : +09:21:57 ============================================================================ +09:21:57 Sending to : +09:21:57 ============================================================================ +09:21:57 ============================================================================ +09:21:57 Slot Id : <456> +09:21:57 Transaction Type : REQUEST +09:21:57 Received From : +09:21:57 ============================================================================ +09:21:57 FNo. Len. Field Value +09:21:57 ============================================================================ +09:21:57 [ 1] [ 4] [0200] +09:21:57 [ 2] [ 16] [6213543000196260] +09:21:57 [ 3] [ 6] [010000] +09:21:57 [ 4] [ 12] [000009000000] +09:21:57 [ 7] [ 10] [0320091948] +09:21:57 [ 11] [ 6] [935355] +09:21:57 [ 12] [ 6] [091948] +09:21:57 [ 13] [ 4] [0320] +09:21:57 [ 15] [ 4] [0320] +09:21:57 [ 18] [ 4] [6011] +09:21:57 [ 19] [ 3] [418] +09:21:57 [ 22] [ 3] [021] +09:21:57 [ 25] [ 2] [01] +09:21:57 [ 28] [ 9] [D00002000] +09:21:57 [ 32] [ 6] [668899] +09:21:57 [ 35] [ 32] [6213543000196260=491212019626005] +09:21:57 [ 37] [ 12] [507901523577] +09:21:57 [ 41] [ 8] [03216001] +09:21:57 [ 42] [ 15] [APT ] +09:21:57 [ 43] [ 40] [ LAONGARM UNIT BAN NONEKHL] +09:21:57 [ 49] [ 3] [418] +09:21:57 [ 52] [ 16] [A33CAF36911161F1] +09:21:57 ============================================================================ +09:21:57 + + +waiting on router queue for slot.... +09:21:57 Sending to : +09:21:57 ============================================================================ +09:21:57 ============================================================================ +09:21:57 Slot Id : <456> +09:21:57 Transaction Type : REQUEST +09:21:57 Received From : +09:21:57 ============================================================================ +09:21:57 FNo. Len. Field Value +09:21:57 ============================================================================ +09:21:57 [ 1] [ 4] [0200] +09:21:57 [ 2] [ 16] [6213543000196260] +09:21:57 [ 3] [ 6] [010000] +09:21:57 [ 4] [ 12] [000009000000] +09:21:57 [ 7] [ 10] [0320091948] +09:21:57 [ 11] [ 6] [935355] +09:21:57 [ 12] [ 6] [091948] +09:21:57 [ 13] [ 4] [0320] +09:21:57 [ 15] [ 4] [0320] +09:21:57 [ 18] [ 4] [6011] +09:21:57 [ 19] [ 3] [418] +09:21:57 [ 22] [ 3] [021] +09:21:57 [ 25] [ 2] [01] +09:21:57 [ 28] [ 9] [D00002000] +09:21:57 [ 32] [ 6] [668899] +09:21:57 [ 35] [ 32] [6213543000196260=491212019626005] +09:21:57 [ 37] [ 12] [507901523577] +09:21:57 [ 41] [ 8] [03216001] +09:21:57 [ 42] [ 15] [APT ] +09:21:57 [ 43] [ 40] [ LAONGARM UNIT BAN NONEKHL] +09:21:57 [ 49] [ 3] [418] +09:21:57 [ 52] [ 16] [4284C2A334CABEFE] +09:21:57 ============================================================================ +09:21:57 + + +waiting on router queue for slot.... +09:21:57 Sending to : <0> +09:21:57 ============================================================================ +09:21:58 ============================================================================ +09:21:58 Slot Id : <456> +09:21:58 Transaction Type : RESPONSE +09:21:58 Received From : +09:21:58 ============================================================================ +09:21:58 FNo. Len. Field Value +09:21:58 ============================================================================ +09:21:58 [ 1] [ 4] [0210] +09:21:58 [ 2] [ 16] [6213543000196260] +09:21:58 [ 3] [ 6] [010000] +09:21:58 [ 4] [ 12] [000009000000] +09:21:58 [ 7] [ 10] [0320091948] +09:21:58 [ 11] [ 6] [935355] +09:21:58 [ 12] [ 6] [091948] +09:21:58 [ 13] [ 4] [0320] +09:21:58 [ 15] [ 4] [0320] +09:21:58 [ 18] [ 4] [6011] +09:21:58 [ 19] [ 3] [418] +09:21:58 [ 32] [ 6] [668899] +09:21:58 [ 35] [ 32] [6213543000196260=491212019626005] +09:21:58 [ 37] [ 12] [507901523577] +09:21:58 [ 38] [ 6] [037707] +09:21:58 [ 39] [ 2] [00] +09:21:58 [ 41] [ 8] [03216001] +09:21:58 [ 49] [ 3] [418] +09:21:58 [ 54] [ 40] [0001418C0000059554040002418C000005955404] +09:21:58 ============================================================================ +09:21:58 Sending to : +09:21:58 ============================================================================ +09:21:58 + + +waiting on router queue for slot.... +09:21:59 ============================================================================ +09:21:59 Slot Id : <456> +09:21:59 Transaction Type : RESPONSE +09:21:59 Received From : +09:21:59 ============================================================================ +09:21:59 FNo. Len. Field Value +09:21:59 ============================================================================ +09:21:59 [ 1] [ 4] [0210] +09:21:59 [ 2] [ 16] [6213543000196260] +09:21:59 [ 3] [ 6] [010000] +09:21:59 [ 4] [ 12] [000009000000] +09:21:59 [ 7] [ 10] [0320091948] +09:21:59 [ 11] [ 6] [935355] +09:21:59 [ 12] [ 6] [091948] +09:21:59 [ 13] [ 4] [0320] +09:21:59 [ 15] [ 4] [0320] +09:21:59 [ 18] [ 4] [6011] +09:21:59 [ 19] [ 3] [418] +09:21:59 [ 32] [ 6] [668899] +09:21:59 [ 35] [ 32] [6213543000196260=491212019626005] +09:21:59 [ 37] [ 12] [507901523577] +09:21:59 [ 38] [ 6] [037707] +09:21:59 [ 39] [ 2] [00] +09:21:59 [ 41] [ 8] [03216001] +09:21:59 [ 49] [ 3] [418] +09:21:59 [ 54] [ 40] [0001418C0000059554040002418C000005955404] +09:21:59 ============================================================================ +09:21:59 Calculate Source COMM Id = 4 +09:21:59 ============================================================================ +09:21:59 + + +waiting on router queue for slot.... +09:22:06 ============================================================================ +09:22:06 Slot Id : <446> +09:22:06 Transaction Type : REQUEST +09:22:06 Received From : +09:22:06 ============================================================================ +09:22:06 FNo. Len. Field Value +09:22:06 ============================================================================ +09:22:06 [ 1] [ 4] [0800] +09:22:06 [ 7] [ 10] [0320022114] +09:22:06 [ 11] [ 6] [155611] +09:22:06 [ 70] [ 3] [301] +09:22:06 ============================================================================ +09:22:06 + + +waiting on router queue for slot.... +09:22:06 Sending to : +09:22:06 ============================================================================ +09:22:06 ============================================================================ +09:22:06 Slot Id : <446> +09:22:06 Transaction Type : RESPONSE +09:22:06 Received From : +09:22:06 ============================================================================ +09:22:06 FNo. Len. Field Value +09:22:06 ============================================================================ +09:22:06 [ 1] [ 4] [0810] +09:22:06 [ 7] [ 10] [0320022114] +09:22:06 [ 11] [ 6] [155611] +09:22:06 [ 39] [ 2] [00] +09:22:06 [ 70] [ 3] [301] +09:22:06 ============================================================================ +09:22:06 Calculate Source COMM Id = 2 +09:22:06 ============================================================================ +09:22:06 + + +waiting on router queue for slot.... +09:22:06 ============================================================================ +09:22:06 Slot Id : <429> +09:22:06 Transaction Type : REQUEST +09:22:06 Received From : +09:22:06 ============================================================================ +09:22:06 FNo. Len. Field Value +09:22:06 ============================================================================ +09:22:06 [ 1] [ 4] [0200] +09:22:06 [ 2] [ 16] [6213545000627228] +09:22:06 [ 3] [ 6] [010000] +09:22:06 [ 4] [ 12] [000010000000] +09:22:06 [ 7] [ 10] [0320022113] +09:22:06 [ 11] [ 6] [267495] +09:22:06 [ 12] [ 6] [092113] +09:22:06 [ 13] [ 4] [0320] +09:22:06 [ 14] [ 4] [4912] +09:22:06 [ 15] [ 4] [0320] +09:22:06 [ 18] [ 4] [6011] +09:22:06 [ 19] [ 3] [418] +09:22:06 [ 22] [ 3] [021] +09:22:06 [ 25] [ 2] [01] +09:22:06 [ 28] [ 9] [D00002000] +09:22:06 [ 32] [ 6] [180893] +09:22:06 [ 35] [ 32] [6213545000627228=491212012722655] +09:22:06 [ 37] [ 12] [507902267495] +09:22:06 [ 41] [ 8] [0531VTHH] +09:22:06 [ 42] [ 15] [999999 ] +09:22:06 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:22:06 [ 49] [ 3] [418] +09:22:06 [ 52] [ 16] [0AAA2B1B06EE06C0] +09:22:06 ============================================================================ +09:22:06 + + +waiting on router queue for slot.... +09:22:06 Sending to : +09:22:06 ============================================================================ +09:22:06 Sending to : +09:22:06 ============================================================================ +09:22:06 ============================================================================ +09:22:06 Slot Id : <429> +09:22:06 Transaction Type : REQUEST +09:22:06 Received From : +09:22:06 ============================================================================ +09:22:06 FNo. Len. Field Value +09:22:06 ============================================================================ +09:22:06 [ 1] [ 4] [0200] +09:22:06 [ 2] [ 16] [6213545000627228] +09:22:06 [ 3] [ 6] [010000] +09:22:06 [ 4] [ 12] [000010000000] +09:22:06 [ 7] [ 10] [0320022113] +09:22:06 [ 11] [ 6] [267495] +09:22:06 [ 12] [ 6] [092113] +09:22:06 [ 13] [ 4] [0320] +09:22:06 [ 14] [ 4] [4912] +09:22:06 [ 15] [ 4] [0320] +09:22:06 [ 18] [ 4] [6011] +09:22:06 [ 19] [ 3] [418] +09:22:06 [ 22] [ 3] [021] +09:22:06 [ 25] [ 2] [01] +09:22:06 [ 28] [ 9] [D00002000] +09:22:06 [ 32] [ 6] [180893] +09:22:06 [ 35] [ 32] [6213545000627228=491212012722655] +09:22:06 [ 37] [ 12] [507902267495] +09:22:06 [ 41] [ 8] [0531VTHH] +09:22:06 [ 42] [ 15] [999999 ] +09:22:06 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:22:06 [ 49] [ 3] [418] +09:22:06 [ 52] [ 16] [0AAA2B1B06EE06C0] +09:22:06 ============================================================================ +09:22:06 + + +waiting on router queue for slot.... +09:22:06 Sending to : +09:22:06 ============================================================================ +09:22:06 ============================================================================ +09:22:06 Slot Id : <429> +09:22:06 Transaction Type : REQUEST +09:22:06 Received From : +09:22:06 ============================================================================ +09:22:06 FNo. Len. Field Value +09:22:06 ============================================================================ +09:22:06 [ 1] [ 4] [0200] +09:22:06 [ 2] [ 16] [6213545000627228] +09:22:06 [ 3] [ 6] [010000] +09:22:06 [ 4] [ 12] [000010000000] +09:22:06 [ 7] [ 10] [0320022113] +09:22:06 [ 11] [ 6] [267495] +09:22:06 [ 12] [ 6] [092113] +09:22:06 [ 13] [ 4] [0320] +09:22:06 [ 14] [ 4] [4912] +09:22:06 [ 15] [ 4] [0320] +09:22:06 [ 18] [ 4] [6011] +09:22:06 [ 19] [ 3] [418] +09:22:06 [ 22] [ 3] [021] +09:22:06 [ 25] [ 2] [01] +09:22:06 [ 28] [ 9] [D00002000] +09:22:06 [ 32] [ 6] [180893] +09:22:06 [ 35] [ 32] [6213545000627228=491212012722655] +09:22:06 [ 37] [ 12] [507902267495] +09:22:06 [ 41] [ 8] [0531VTHH] +09:22:06 [ 42] [ 15] [999999 ] +09:22:06 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +09:22:06 [ 49] [ 3] [418] +09:22:06 [ 52] [ 16] [1C70EE6DDA48D408] +09:22:06 ============================================================================ +09:22:06 + + +waiting on router queue for slot.... +09:22:06 Sending to : <0> +09:22:06 ============================================================================ +09:22:07 ============================================================================ +09:22:07 Slot Id : <429> +09:22:07 Transaction Type : RESPONSE +09:22:07 Received From : +09:22:07 ============================================================================ +09:22:07 FNo. Len. Field Value +09:22:07 ============================================================================ +09:22:07 [ 1] [ 4] [0210] +09:22:07 [ 2] [ 16] [6213545000627228] +09:22:07 [ 3] [ 6] [010000] +09:22:07 [ 4] [ 12] [000010000000] +09:22:07 [ 7] [ 10] [0320022113] +09:22:07 [ 11] [ 6] [267495] +09:22:07 [ 12] [ 6] [092113] +09:22:07 [ 13] [ 4] [0320] +09:22:07 [ 15] [ 4] [0320] +09:22:07 [ 18] [ 4] [6011] +09:22:07 [ 19] [ 3] [418] +09:22:07 [ 32] [ 6] [180893] +09:22:07 [ 35] [ 32] [6213545000627228=491212012722655] +09:22:07 [ 37] [ 12] [507902267495] +09:22:07 [ 38] [ 6] [829557] +09:22:07 [ 39] [ 2] [00] +09:22:07 [ 41] [ 8] [0531VTHH] +09:22:07 [ 49] [ 3] [418] +09:22:07 [ 54] [ 40] [0001418C0000101763290002418C000010176329] +09:22:07 ============================================================================ +09:22:07 Sending to : +09:22:07 ============================================================================ +09:22:07 + + +waiting on router queue for slot.... +09:22:08 ============================================================================ +09:22:08 Slot Id : <429> +09:22:08 Transaction Type : RESPONSE +09:22:08 Received From : +09:22:08 ============================================================================ +09:22:08 FNo. Len. Field Value +09:22:08 ============================================================================ +09:22:08 [ 1] [ 4] [0210] +09:22:08 [ 2] [ 16] [6213545000627228] +09:22:08 [ 3] [ 6] [010000] +09:22:08 [ 4] [ 12] [000010000000] +09:22:08 [ 7] [ 10] [0320022113] +09:22:08 [ 11] [ 6] [267495] +09:22:08 [ 12] [ 6] [092113] +09:22:08 [ 13] [ 4] [0320] +09:22:08 [ 15] [ 4] [0320] +09:22:08 [ 18] [ 4] [6011] +09:22:08 [ 19] [ 3] [418] +09:22:08 [ 32] [ 6] [180893] +09:22:08 [ 35] [ 32] [6213545000627228=491212012722655] +09:22:08 [ 37] [ 12] [507902267495] +09:22:08 [ 38] [ 6] [829557] +09:22:08 [ 39] [ 2] [00] +09:22:08 [ 41] [ 8] [0531VTHH] +09:22:08 [ 49] [ 3] [418] +09:22:08 [ 54] [ 40] [0001418C0000101763290002418C000010176329] +09:22:08 ============================================================================ +09:22:08 Calculate Source COMM Id = 2 +09:22:08 ============================================================================ +09:22:08 + + +waiting on router queue for slot.... +09:22:22 ============================================================================ +09:22:22 Slot Id : <435> +09:22:22 Transaction Type : REQUEST +09:22:22 Received From : +09:22:22 ============================================================================ +09:22:22 FNo. Len. Field Value +09:22:22 ============================================================================ +09:22:22 [ 1] [ 4] [0800] +09:22:22 [ 7] [ 10] [0320022130] +09:22:22 [ 11] [ 6] [155612] +09:22:22 [ 70] [ 3] [301] +09:22:22 ============================================================================ +09:22:22 + + +waiting on router queue for slot.... +09:22:22 Sending to : +09:22:22 ============================================================================ +09:22:22 ============================================================================ +09:22:22 Slot Id : <435> +09:22:22 Transaction Type : RESPONSE +09:22:22 Received From : +09:22:22 ============================================================================ +09:22:22 FNo. Len. Field Value +09:22:22 ============================================================================ +09:22:22 [ 1] [ 4] [0810] +09:22:22 [ 7] [ 10] [0320022130] +09:22:22 [ 11] [ 6] [155612] +09:22:22 [ 39] [ 2] [00] +09:22:22 [ 70] [ 3] [301] +09:22:22 ============================================================================ +09:22:22 Calculate Source COMM Id = 2 +09:22:22 ============================================================================ +09:22:22 + + +waiting on router queue for slot.... +09:22:24 ============================================================================ +09:22:24 Slot Id : <424> +09:22:24 Transaction Type : REQUEST +09:22:24 Received From : +09:22:24 ============================================================================ +09:22:24 FNo. Len. Field Value +09:22:24 ============================================================================ +09:22:24 [ 1] [ 4] [0800] +09:22:24 [ 7] [ 10] [0320163411] +09:22:24 [ 11] [ 6] [093411] +09:22:24 [ 37] [ 12] [57909093411] +09:22:24 [ 70] [ 3] [301] +09:22:24 ============================================================================ +09:22:24 + + +waiting on router queue for slot.... +09:22:24 Sending to : +09:22:24 ============================================================================ +09:22:24 ============================================================================ +09:22:24 Slot Id : <424> +09:22:24 Transaction Type : RESPONSE +09:22:24 Received From : +09:22:24 ============================================================================ +09:22:24 FNo. Len. Field Value +09:22:24 ============================================================================ +09:22:24 [ 1] [ 4] [0810] +09:22:24 [ 7] [ 10] [0320163411] +09:22:24 [ 11] [ 6] [093411] +09:22:24 [ 37] [ 12] [579090934110] +09:22:24 [ 39] [ 2] [00] +09:22:24 [ 70] [ 3] [810] +09:22:24 ============================================================================ +09:22:24 Calculate Source COMM Id = 6 +09:22:24 ============================================================================ +09:22:24 + + +waiting on router queue for slot.... +09:22:33 ============================================================================ +09:22:33 Slot Id : <445> +09:22:33 Transaction Type : REQUEST +09:22:33 Received From : +09:22:33 ============================================================================ +09:22:33 FNo. Len. Field Value +09:22:33 ============================================================================ +09:22:33 [ 1] [ 4] [0800] +09:22:33 [ 7] [ 10] [0320022141] +09:22:33 [ 11] [ 6] [155613] +09:22:33 [ 70] [ 3] [301] +09:22:33 ============================================================================ +09:22:33 + + +waiting on router queue for slot.... +09:22:33 Sending to : +09:22:33 ============================================================================ +09:22:33 ============================================================================ +09:22:33 Slot Id : <445> +09:22:33 Transaction Type : RESPONSE +09:22:33 Received From : +09:22:33 ============================================================================ +09:22:33 FNo. Len. Field Value +09:22:33 ============================================================================ +09:22:33 [ 1] [ 4] [0810] +09:22:33 [ 7] [ 10] [0320022141] +09:22:33 [ 11] [ 6] [155613] +09:22:33 [ 39] [ 2] [00] +09:22:33 [ 70] [ 3] [301] +09:22:33 ============================================================================ +09:22:33 Calculate Source COMM Id = 2 +09:22:33 ============================================================================ +09:22:33 + + +waiting on router queue for slot.... +09:22:34 ============================================================================ +09:22:34 Slot Id : <404> +09:22:34 Transaction Type : REQUEST +09:22:34 Received From : +09:22:34 ============================================================================ +09:22:34 FNo. Len. Field Value +09:22:34 ============================================================================ +09:22:34 [ 1] [ 4] [0200] +09:22:34 [ 2] [ 16] [6213541000439532] +09:22:34 [ 3] [ 6] [010000] +09:22:34 [ 4] [ 12] [000015000000] +09:22:34 [ 7] [ 10] [0320092025] +09:22:34 [ 11] [ 6] [935381] +09:22:34 [ 12] [ 6] [092025] +09:22:34 [ 13] [ 4] [0320] +09:22:34 [ 15] [ 4] [0320] +09:22:34 [ 18] [ 4] [6011] +09:22:34 [ 19] [ 3] [418] +09:22:34 [ 22] [ 3] [021] +09:22:34 [ 25] [ 2] [01] +09:22:34 [ 28] [ 9] [D00002000] +09:22:34 [ 32] [ 6] [668899] +09:22:34 [ 35] [ 32] [6213541000439532=491212013953708] +09:22:34 [ 37] [ 12] [507900146415] +09:22:34 [ 41] [ 8] [03020005] +09:22:34 [ 42] [ 15] [APT ] +09:22:34 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +09:22:34 [ 49] [ 3] [418] +09:22:34 [ 52] [ 16] [4AC7674BD987FD13] +09:22:34 ============================================================================ +09:22:34 + + +waiting on router queue for slot.... +09:22:34 Sending to : +09:22:34 ============================================================================ +09:22:34 Sending to : +09:22:34 ============================================================================ +09:22:34 ============================================================================ +09:22:34 Slot Id : <404> +09:22:34 Transaction Type : REQUEST +09:22:34 Received From : +09:22:34 ============================================================================ +09:22:34 FNo. Len. Field Value +09:22:34 ============================================================================ +09:22:34 [ 1] [ 4] [0200] +09:22:34 [ 2] [ 16] [6213541000439532] +09:22:34 [ 3] [ 6] [010000] +09:22:34 [ 4] [ 12] [000015000000] +09:22:34 [ 7] [ 10] [0320092025] +09:22:34 [ 11] [ 6] [935381] +09:22:34 [ 12] [ 6] [092025] +09:22:34 [ 13] [ 4] [0320] +09:22:34 [ 15] [ 4] [0320] +09:22:34 [ 18] [ 4] [6011] +09:22:34 [ 19] [ 3] [418] +09:22:34 [ 22] [ 3] [021] +09:22:34 [ 25] [ 2] [01] +09:22:34 [ 28] [ 9] [D00002000] +09:22:34 [ 32] [ 6] [668899] +09:22:34 [ 35] [ 32] [6213541000439532=491212013953708] +09:22:34 [ 37] [ 12] [507900146415] +09:22:34 [ 41] [ 8] [03020005] +09:22:34 [ 42] [ 15] [APT ] +09:22:34 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +09:22:34 [ 49] [ 3] [418] +09:22:34 [ 52] [ 16] [4AC7674BD987FD13] +09:22:34 ============================================================================ +09:22:34 + + +waiting on router queue for slot.... +09:22:34 Sending to : +09:22:34 ============================================================================ +09:22:34 ============================================================================ +09:22:34 Slot Id : <404> +09:22:34 Transaction Type : REQUEST +09:22:34 Received From : +09:22:34 ============================================================================ +09:22:34 FNo. Len. Field Value +09:22:34 ============================================================================ +09:22:34 [ 1] [ 4] [0200] +09:22:34 [ 2] [ 16] [6213541000439532] +09:22:34 [ 3] [ 6] [010000] +09:22:34 [ 4] [ 12] [000015000000] +09:22:34 [ 7] [ 10] [0320092025] +09:22:34 [ 11] [ 6] [935381] +09:22:34 [ 12] [ 6] [092025] +09:22:34 [ 13] [ 4] [0320] +09:22:34 [ 15] [ 4] [0320] +09:22:34 [ 18] [ 4] [6011] +09:22:34 [ 19] [ 3] [418] +09:22:34 [ 22] [ 3] [021] +09:22:34 [ 25] [ 2] [01] +09:22:34 [ 28] [ 9] [D00002000] +09:22:34 [ 32] [ 6] [668899] +09:22:34 [ 35] [ 32] [6213541000439532=491212013953708] +09:22:34 [ 37] [ 12] [507900146415] +09:22:34 [ 41] [ 8] [03020005] +09:22:34 [ 42] [ 15] [APT ] +09:22:34 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +09:22:34 [ 49] [ 3] [418] +09:22:34 [ 52] [ 16] [EFA8DC0C239D954A] +09:22:34 ============================================================================ +09:22:34 + + +waiting on router queue for slot.... +09:22:34 Sending to : <0> +09:22:34 ============================================================================ +09:22:35 ============================================================================ +09:22:35 Slot Id : <404> +09:22:35 Transaction Type : RESPONSE +09:22:35 Received From : +09:22:35 ============================================================================ +09:22:35 FNo. Len. Field Value +09:22:35 ============================================================================ +09:22:35 [ 1] [ 4] [0210] +09:22:35 [ 2] [ 16] [6213541000439532] +09:22:35 [ 3] [ 6] [010000] +09:22:35 [ 4] [ 12] [000015000000] +09:22:35 [ 7] [ 10] [0320092025] +09:22:35 [ 11] [ 6] [935381] +09:22:35 [ 12] [ 6] [092025] +09:22:35 [ 13] [ 4] [0320] +09:22:35 [ 15] [ 4] [0320] +09:22:35 [ 18] [ 4] [6011] +09:22:35 [ 19] [ 3] [418] +09:22:35 [ 32] [ 6] [668899] +09:22:35 [ 35] [ 32] [6213541000439532=491212013953708] +09:22:35 [ 37] [ 12] [507900146415] +09:22:35 [ 38] [ 6] [935381] +09:22:35 [ 39] [ 2] [51] +09:22:35 [ 41] [ 8] [03020005] +09:22:35 [ 49] [ 3] [418] +09:22:35 [ 54] [ 40] [0001418C0000196258350002418C000019625835] +09:22:35 ============================================================================ +09:22:35 Sending to : +09:22:35 ============================================================================ +09:22:35 + + +waiting on router queue for slot.... +09:22:36 ============================================================================ +09:22:36 Slot Id : <404> +09:22:36 Transaction Type : RESPONSE +09:22:36 Received From : +09:22:36 ============================================================================ +09:22:36 FNo. Len. Field Value +09:22:36 ============================================================================ +09:22:36 [ 1] [ 4] [0210] +09:22:36 [ 2] [ 16] [6213541000439532] +09:22:36 [ 3] [ 6] [010000] +09:22:36 [ 4] [ 12] [000015000000] +09:22:36 [ 7] [ 10] [0320092025] +09:22:36 [ 11] [ 6] [935381] +09:22:36 [ 12] [ 6] [092025] +09:22:36 [ 13] [ 4] [0320] +09:22:36 [ 15] [ 4] [0320] +09:22:36 [ 18] [ 4] [6011] +09:22:36 [ 19] [ 3] [418] +09:22:36 [ 32] [ 6] [668899] +09:22:36 [ 35] [ 32] [6213541000439532=491212013953708] +09:22:36 [ 37] [ 12] [507900146415] +09:22:36 [ 38] [ 6] [935381] +09:22:36 [ 39] [ 2] [51] +09:22:36 [ 41] [ 8] [03020005] +09:22:36 [ 49] [ 3] [418] +09:22:36 [ 54] [ 40] [0001418C0000196258350002418C000019625835] +09:22:36 ============================================================================ +09:22:36 Calculate Source COMM Id = 4 +09:22:36 ============================================================================ +09:22:36 + + +waiting on router queue for slot.... +09:22:43 ============================================================================ +09:22:43 Slot Id : <438> +09:22:43 Transaction Type : REQUEST +09:22:43 Received From : +09:22:43 ============================================================================ +09:22:43 FNo. Len. Field Value +09:22:43 ============================================================================ +09:22:43 [ 1] [ 4] [0800] +09:22:43 [ 7] [ 10] [0320022151] +09:22:43 [ 11] [ 6] [155614] +09:22:43 [ 70] [ 3] [301] +09:22:43 ============================================================================ +09:22:43 + + +waiting on router queue for slot.... +09:22:43 Sending to : +09:22:43 ============================================================================ +09:22:43 ============================================================================ +09:22:43 Slot Id : <438> +09:22:43 Transaction Type : RESPONSE +09:22:43 Received From : +09:22:43 ============================================================================ +09:22:43 FNo. Len. Field Value +09:22:43 ============================================================================ +09:22:43 [ 1] [ 4] [0810] +09:22:43 [ 7] [ 10] [0320022151] +09:22:43 [ 11] [ 6] [155614] +09:22:43 [ 39] [ 2] [00] +09:22:43 [ 70] [ 3] [301] +09:22:43 ============================================================================ +09:22:43 Calculate Source COMM Id = 2 +09:22:43 ============================================================================ +09:22:43 + + +waiting on router queue for slot.... +09:22:44 ============================================================================ +09:22:44 Slot Id : <442> +09:22:44 Transaction Type : REQUEST +09:22:44 Received From : +09:22:44 ============================================================================ +09:22:44 FNo. Len. Field Value +09:22:44 ============================================================================ +09:22:44 [ 1] [ 4] [0800] +09:22:44 [ 2] [ 5] [02531] +09:22:44 [ 3] [ 6] [579098] +09:22:44 [ 7] [ 10] [0320022244] +09:22:44 [ 11] [ 6] [806956] +09:22:44 [ 15] [ 10] [0320022244] +09:22:44 [ 37] [ 11] [57909806956] +09:22:44 [ 70] [ 3] [001] +09:22:44 ============================================================================ +09:22:44 + + +waiting on router queue for slot.... +09:22:44 ============================================================================ +09:22:44 Slot Id : <442> +09:22:44 Transaction Type : RESPONSE +09:22:44 Received From : +09:22:44 ============================================================================ +09:22:44 FNo. Len. Field Value +09:22:44 ============================================================================ +09:22:44 [ 1] [ 4] [0810] +09:22:44 [ 7] [ 10] [0320022244] +09:22:44 [ 11] [ 6] [806956] +09:22:44 [ 15] [ 4] [0320] +09:22:44 [ 37] [ 12] [57909806956] +09:22:44 [ 39] [ 2] [00] +09:22:44 [ 70] [ 3] [001] +09:22:44 ============================================================================ +09:22:44 Sending to : +09:22:44 ============================================================================ +09:22:44 + + +waiting on router queue for slot.... +09:22:54 ============================================================================ +09:22:54 Slot Id : <434> +09:22:54 Transaction Type : REQUEST +09:22:54 Received From : +09:22:54 ============================================================================ +09:22:54 FNo. Len. Field Value +09:22:54 ============================================================================ +09:22:54 [ 1] [ 4] [0800] +09:22:54 [ 7] [ 10] [0320022202] +09:22:54 [ 11] [ 6] [155615] +09:22:54 [ 70] [ 3] [301] +09:22:54 ============================================================================ +09:22:54 + + +waiting on router queue for slot.... +09:22:54 Sending to : +09:22:54 ============================================================================ +09:22:54 ============================================================================ +09:22:54 Slot Id : <434> +09:22:54 Transaction Type : RESPONSE +09:22:54 Received From : +09:22:54 ============================================================================ +09:22:54 FNo. Len. Field Value +09:22:54 ============================================================================ +09:22:54 [ 1] [ 4] [0810] +09:22:54 [ 7] [ 10] [0320022202] +09:22:54 [ 11] [ 6] [155615] +09:22:54 [ 39] [ 2] [00] +09:22:54 [ 70] [ 3] [301] +09:22:54 ============================================================================ +09:22:54 Calculate Source COMM Id = 2 +09:22:54 ============================================================================ +09:22:54 + + +waiting on router queue for slot.... +09:23:01 ============================================================================ +09:23:01 Slot Id : <428> +09:23:01 Transaction Type : REQUEST +09:23:01 Received From : +09:23:01 ============================================================================ +09:23:01 FNo. Len. Field Value +09:23:01 ============================================================================ +09:23:01 [ 1] [ 4] [0200] +09:23:01 [ 2] [ 16] [6213541000439532] +09:23:01 [ 3] [ 6] [010000] +09:23:01 [ 4] [ 12] [000010000000] +09:23:01 [ 7] [ 10] [0320092052] +09:23:01 [ 11] [ 6] [935399] +09:23:01 [ 12] [ 6] [092052] +09:23:01 [ 13] [ 4] [0320] +09:23:01 [ 15] [ 4] [0320] +09:23:01 [ 18] [ 4] [6011] +09:23:01 [ 19] [ 3] [418] +09:23:01 [ 22] [ 3] [021] +09:23:01 [ 25] [ 2] [01] +09:23:01 [ 28] [ 9] [D00002000] +09:23:01 [ 32] [ 6] [668899] +09:23:01 [ 35] [ 32] [6213541000439532=491212013953708] +09:23:01 [ 37] [ 12] [507900146416] +09:23:01 [ 41] [ 8] [03020005] +09:23:01 [ 42] [ 15] [APT ] +09:23:01 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +09:23:01 [ 49] [ 3] [418] +09:23:01 [ 52] [ 16] [4AC7674BD987FD13] +09:23:01 ============================================================================ +09:23:01 + + +waiting on router queue for slot.... +09:23:01 Sending to : +09:23:01 ============================================================================ +09:23:01 Sending to : +09:23:01 ============================================================================ +09:23:01 ============================================================================ +09:23:01 Slot Id : <428> +09:23:01 Transaction Type : REQUEST +09:23:01 Received From : +09:23:01 ============================================================================ +09:23:01 FNo. Len. Field Value +09:23:01 ============================================================================ +09:23:01 [ 1] [ 4] [0200] +09:23:01 [ 2] [ 16] [6213541000439532] +09:23:01 [ 3] [ 6] [010000] +09:23:01 [ 4] [ 12] [000010000000] +09:23:01 [ 7] [ 10] [0320092052] +09:23:01 [ 11] [ 6] [935399] +09:23:01 [ 12] [ 6] [092052] +09:23:01 [ 13] [ 4] [0320] +09:23:01 [ 15] [ 4] [0320] +09:23:01 [ 18] [ 4] [6011] +09:23:01 [ 19] [ 3] [418] +09:23:01 [ 22] [ 3] [021] +09:23:01 [ 25] [ 2] [01] +09:23:01 [ 28] [ 9] [D00002000] +09:23:01 [ 32] [ 6] [668899] +09:23:01 [ 35] [ 32] [6213541000439532=491212013953708] +09:23:01 [ 37] [ 12] [507900146416] +09:23:01 [ 41] [ 8] [03020005] +09:23:01 [ 42] [ 15] [APT ] +09:23:01 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +09:23:01 [ 49] [ 3] [418] +09:23:01 [ 52] [ 16] [4AC7674BD987FD13] +09:23:01 ============================================================================ +09:23:01 + + +waiting on router queue for slot.... +09:23:01 Sending to : +09:23:01 ============================================================================ +09:23:01 ============================================================================ +09:23:01 Slot Id : <428> +09:23:01 Transaction Type : REQUEST +09:23:01 Received From : +09:23:01 ============================================================================ +09:23:01 FNo. Len. Field Value +09:23:01 ============================================================================ +09:23:01 [ 1] [ 4] [0200] +09:23:01 [ 2] [ 16] [6213541000439532] +09:23:01 [ 3] [ 6] [010000] +09:23:01 [ 4] [ 12] [000010000000] +09:23:01 [ 7] [ 10] [0320092052] +09:23:01 [ 11] [ 6] [935399] +09:23:01 [ 12] [ 6] [092052] +09:23:01 [ 13] [ 4] [0320] +09:23:01 [ 15] [ 4] [0320] +09:23:01 [ 18] [ 4] [6011] +09:23:01 [ 19] [ 3] [418] +09:23:01 [ 22] [ 3] [021] +09:23:01 [ 25] [ 2] [01] +09:23:01 [ 28] [ 9] [D00002000] +09:23:01 [ 32] [ 6] [668899] +09:23:01 [ 35] [ 32] [6213541000439532=491212013953708] +09:23:01 [ 37] [ 12] [507900146416] +09:23:01 [ 41] [ 8] [03020005] +09:23:01 [ 42] [ 15] [APT ] +09:23:01 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +09:23:01 [ 49] [ 3] [418] +09:23:01 [ 52] [ 16] [EFA8DC0C239D954A] +09:23:01 ============================================================================ +09:23:01 + + +waiting on router queue for slot.... +09:23:01 Sending to : <0> +09:23:01 ============================================================================ +09:23:02 ============================================================================ +09:23:02 Slot Id : <428> +09:23:02 Transaction Type : RESPONSE +09:23:02 Received From : +09:23:02 ============================================================================ +09:23:02 FNo. Len. Field Value +09:23:02 ============================================================================ +09:23:02 [ 1] [ 4] [0210] +09:23:02 [ 2] [ 16] [6213541000439532] +09:23:02 [ 3] [ 6] [010000] +09:23:02 [ 4] [ 12] [000010000000] +09:23:02 [ 7] [ 10] [0320092052] +09:23:02 [ 11] [ 6] [935399] +09:23:02 [ 12] [ 6] [092052] +09:23:02 [ 13] [ 4] [0320] +09:23:02 [ 15] [ 4] [0320] +09:23:02 [ 18] [ 4] [6011] +09:23:02 [ 19] [ 3] [418] +09:23:02 [ 32] [ 6] [668899] +09:23:02 [ 35] [ 32] [6213541000439532=491212013953708] +09:23:02 [ 37] [ 12] [507900146416] +09:23:02 [ 38] [ 6] [771533] +09:23:02 [ 39] [ 2] [00] +09:23:02 [ 41] [ 8] [03020005] +09:23:02 [ 49] [ 3] [418] +09:23:02 [ 54] [ 40] [0001418C0000094258350002418C000009425835] +09:23:02 ============================================================================ +09:23:02 Sending to : +09:23:02 ============================================================================ +09:23:02 + + +waiting on router queue for slot.... +09:23:03 ============================================================================ +09:23:03 Slot Id : <428> +09:23:03 Transaction Type : RESPONSE +09:23:03 Received From : +09:23:03 ============================================================================ +09:23:03 FNo. Len. Field Value +09:23:03 ============================================================================ +09:23:03 [ 1] [ 4] [0210] +09:23:03 [ 2] [ 16] [6213541000439532] +09:23:03 [ 3] [ 6] [010000] +09:23:03 [ 4] [ 12] [000010000000] +09:23:03 [ 7] [ 10] [0320092052] +09:23:03 [ 11] [ 6] [935399] +09:23:03 [ 12] [ 6] [092052] +09:23:03 [ 13] [ 4] [0320] +09:23:03 [ 15] [ 4] [0320] +09:23:03 [ 18] [ 4] [6011] +09:23:03 [ 19] [ 3] [418] +09:23:03 [ 32] [ 6] [668899] +09:23:03 [ 35] [ 32] [6213541000439532=491212013953708] +09:23:03 [ 37] [ 12] [507900146416] +09:23:03 [ 38] [ 6] [771533] +09:23:03 [ 39] [ 2] [00] +09:23:03 [ 41] [ 8] [03020005] +09:23:03 [ 49] [ 3] [418] +09:23:03 [ 54] [ 40] [0001418C0000094258350002418C000009425835] +09:23:03 ============================================================================ +09:23:03 Calculate Source COMM Id = 4 +09:23:03 ============================================================================ +09:23:03 + + +waiting on router queue for slot.... +09:23:05 ============================================================================ +09:23:05 Slot Id : <427> +09:23:05 Transaction Type : REQUEST +09:23:05 Received From : +09:23:05 ============================================================================ +09:23:05 FNo. Len. Field Value +09:23:05 ============================================================================ +09:23:05 [ 1] [ 4] [0800] +09:23:05 [ 7] [ 10] [0320022212] +09:23:05 [ 11] [ 6] [155616] +09:23:05 [ 70] [ 3] [301] +09:23:05 ============================================================================ +09:23:05 + + +waiting on router queue for slot.... +09:23:05 Sending to : +09:23:05 ============================================================================ +09:23:05 ============================================================================ +09:23:05 Slot Id : <427> +09:23:05 Transaction Type : RESPONSE +09:23:05 Received From : +09:23:05 ============================================================================ +09:23:05 FNo. Len. Field Value +09:23:05 ============================================================================ +09:23:05 [ 1] [ 4] [0810] +09:23:05 [ 7] [ 10] [0320022212] +09:23:05 [ 11] [ 6] [155616] +09:23:05 [ 39] [ 2] [00] +09:23:05 [ 70] [ 3] [301] +09:23:05 ============================================================================ +09:23:05 Calculate Source COMM Id = 2 +09:23:05 ============================================================================ +09:23:05 + + +waiting on router queue for slot.... +09:23:16 ============================================================================ +09:23:16 Slot Id : <451> +09:23:16 Transaction Type : REQUEST +09:23:16 Received From : +09:23:16 ============================================================================ +09:23:16 FNo. Len. Field Value +09:23:16 ============================================================================ +09:23:16 [ 1] [ 4] [0800] +09:23:16 [ 7] [ 10] [0320022223] +09:23:16 [ 11] [ 6] [155617] +09:23:16 [ 70] [ 3] [301] +09:23:16 ============================================================================ +09:23:16 + + +waiting on router queue for slot.... +09:23:16 Sending to : +09:23:16 ============================================================================ +09:23:16 ============================================================================ +09:23:16 Slot Id : <451> +09:23:16 Transaction Type : RESPONSE +09:23:16 Received From : +09:23:16 ============================================================================ +09:23:16 FNo. Len. Field Value +09:23:16 ============================================================================ +09:23:16 [ 1] [ 4] [0810] +09:23:16 [ 7] [ 10] [0320022223] +09:23:16 [ 11] [ 6] [155617] +09:23:16 [ 39] [ 2] [00] +09:23:16 [ 70] [ 3] [301] +09:23:16 ============================================================================ +09:23:16 Calculate Source COMM Id = 2 +09:23:16 ============================================================================ +09:23:16 + + +waiting on router queue for slot.... +09:23:29 ============================================================================ +09:23:29 Slot Id : <457> +09:23:29 Transaction Type : REQUEST +09:23:29 Received From : +09:23:29 ============================================================================ +09:23:29 FNo. Len. Field Value +09:23:29 ============================================================================ +09:23:29 [ 1] [ 4] [0800] +09:23:29 [ 7] [ 10] [0320022236] +09:23:29 [ 11] [ 6] [155618] +09:23:29 [ 70] [ 3] [301] +09:23:29 ============================================================================ +09:23:29 + + +waiting on router queue for slot.... +09:23:29 Sending to : +09:23:29 ============================================================================ +09:23:29 ============================================================================ +09:23:29 Slot Id : <457> +09:23:29 Transaction Type : RESPONSE +09:23:29 Received From : +09:23:29 ============================================================================ +09:23:29 FNo. Len. Field Value +09:23:29 ============================================================================ +09:23:29 [ 1] [ 4] [0810] +09:23:29 [ 7] [ 10] [0320022236] +09:23:29 [ 11] [ 6] [155618] +09:23:29 [ 39] [ 2] [00] +09:23:29 [ 70] [ 3] [301] +09:23:29 ============================================================================ +09:23:29 Calculate Source COMM Id = 2 +09:23:29 ============================================================================ +09:23:29 + + +waiting on router queue for slot.... +09:23:29 ============================================================================ +09:23:29 Slot Id : <462> +09:23:29 Transaction Type : REQUEST +09:23:29 Received From : +09:23:29 ============================================================================ +09:23:29 FNo. Len. Field Value +09:23:29 ============================================================================ +09:23:29 [ 1] [ 4] [0800] +09:23:29 [ 7] [ 10] [0320163517] +09:23:29 [ 11] [ 6] [093517] +09:23:29 [ 37] [ 12] [57909093517] +09:23:29 [ 70] [ 3] [301] +09:23:29 ============================================================================ +09:23:29 + + +waiting on router queue for slot.... +09:23:29 Sending to : +09:23:29 ============================================================================ +09:23:29 ============================================================================ +09:23:29 Slot Id : <462> +09:23:29 Transaction Type : RESPONSE +09:23:29 Received From : +09:23:29 ============================================================================ +09:23:29 FNo. Len. Field Value +09:23:29 ============================================================================ +09:23:29 [ 1] [ 4] [0810] +09:23:29 [ 7] [ 10] [0320163517] +09:23:29 [ 11] [ 6] [093517] +09:23:29 [ 37] [ 12] [579090935170] +09:23:29 [ 39] [ 2] [00] +09:23:29 [ 70] [ 3] [810] +09:23:29 ============================================================================ +09:23:29 Calculate Source COMM Id = 6 +09:23:29 ============================================================================ +09:23:29 + + +waiting on router queue for slot.... +09:23:40 ============================================================================ +09:23:40 Slot Id : <426> +09:23:40 Transaction Type : REQUEST +09:23:40 Received From : +09:23:40 ============================================================================ +09:23:40 FNo. Len. Field Value +09:23:40 ============================================================================ +09:23:40 [ 1] [ 4] [0200] +09:23:40 [ 2] [ 16] [6688990103312805] +09:23:40 [ 3] [ 6] [300000] +09:23:40 [ 4] [ 12] [000000000000] +09:23:40 [ 7] [ 10] [0320092336] +09:23:40 [ 11] [ 6] [697752] +09:23:40 [ 12] [ 6] [092336] +09:23:40 [ 13] [ 4] [0320] +09:23:40 [ 15] [ 4] [0320] +09:23:40 [ 18] [ 4] [6011] +09:23:40 [ 22] [ 3] [900] +09:23:40 [ 25] [ 2] [02] +09:23:40 [ 28] [ 9] [D00000000] +09:23:40 [ 32] [ 6] [621354] +09:23:40 [ 35] [ 37] [6688990103312805=42121231280544200000] +09:23:40 [ 37] [ 12] [507902508159] +09:23:40 [ 41] [ 8] [05003300] +09:23:40 [ 42] [ 15] [NATIVE ] +09:23:40 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:23:40 [ 49] [ 3] [418] +09:23:40 [ 52] [ 16] [6C7C751153EFBAE7] +09:23:40 ============================================================================ +09:23:40 + + +waiting on router queue for slot.... +09:23:40 Sending to : +09:23:40 ============================================================================ +09:23:40 Sending to : +09:23:40 ============================================================================ +09:23:40 ============================================================================ +09:23:40 Slot Id : <431> +09:23:40 Transaction Type : REQUEST +09:23:40 Received From : +09:23:40 ============================================================================ +09:23:40 FNo. Len. Field Value +09:23:40 ============================================================================ +09:23:40 [ 1] [ 4] [0800] +09:23:40 [ 7] [ 10] [0320022248] +09:23:40 [ 11] [ 6] [155619] +09:23:40 [ 70] [ 3] [301] +09:23:40 ============================================================================ +09:23:40 + + +waiting on router queue for slot.... +09:23:40 Sending to : +09:23:40 ============================================================================ +09:23:40 ============================================================================ +09:23:40 Slot Id : <431> +09:23:40 Transaction Type : RESPONSE +09:23:40 Received From : +09:23:40 ============================================================================ +09:23:40 FNo. Len. Field Value +09:23:40 ============================================================================ +09:23:40 [ 1] [ 4] [0810] +09:23:40 [ 7] [ 10] [0320022248] +09:23:40 [ 11] [ 6] [155619] +09:23:40 [ 39] [ 2] [00] +09:23:40 [ 70] [ 3] [301] +09:23:40 ============================================================================ +09:23:40 Calculate Source COMM Id = 2 +09:23:40 ============================================================================ +09:23:40 + + +waiting on router queue for slot.... +09:23:40 ============================================================================ +09:23:40 Slot Id : <426> +09:23:40 Transaction Type : REQUEST +09:23:40 Received From : +09:23:40 ============================================================================ +09:23:40 FNo. Len. Field Value +09:23:40 ============================================================================ +09:23:40 [ 1] [ 4] [0200] +09:23:40 [ 2] [ 16] [6688990103312805] +09:23:40 [ 3] [ 6] [300000] +09:23:40 [ 4] [ 12] [000000000000] +09:23:40 [ 7] [ 10] [0320092336] +09:23:40 [ 11] [ 6] [697752] +09:23:40 [ 12] [ 6] [092336] +09:23:40 [ 13] [ 4] [0320] +09:23:40 [ 15] [ 4] [0320] +09:23:40 [ 18] [ 4] [6011] +09:23:40 [ 22] [ 3] [900] +09:23:40 [ 25] [ 2] [02] +09:23:40 [ 28] [ 9] [D00000000] +09:23:40 [ 32] [ 6] [621354] +09:23:40 [ 35] [ 37] [6688990103312805=42121231280544200000] +09:23:40 [ 37] [ 12] [507902508159] +09:23:40 [ 41] [ 8] [05003300] +09:23:40 [ 42] [ 15] [NATIVE ] +09:23:40 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:23:40 [ 49] [ 3] [418] +09:23:40 [ 52] [ 16] [6C7C751153EFBAE7] +09:23:40 ============================================================================ +09:23:40 + + +waiting on router queue for slot.... +09:23:40 Sending to : +09:23:40 ============================================================================ +09:23:40 ============================================================================ +09:23:40 Slot Id : <426> +09:23:40 Transaction Type : REQUEST +09:23:40 Received From : +09:23:40 ============================================================================ +09:23:40 FNo. Len. Field Value +09:23:40 ============================================================================ +09:23:40 [ 1] [ 4] [0200] +09:23:40 [ 2] [ 16] [6688990103312805] +09:23:40 [ 3] [ 6] [300000] +09:23:40 [ 4] [ 12] [000000000000] +09:23:40 [ 7] [ 10] [0320092336] +09:23:40 [ 11] [ 6] [697752] +09:23:40 [ 12] [ 6] [092336] +09:23:40 [ 13] [ 4] [0320] +09:23:40 [ 15] [ 4] [0320] +09:23:40 [ 18] [ 4] [6011] +09:23:40 [ 22] [ 3] [900] +09:23:40 [ 25] [ 2] [02] +09:23:40 [ 28] [ 9] [D00000000] +09:23:40 [ 32] [ 6] [621354] +09:23:40 [ 35] [ 37] [6688990103312805=42121231280544200000] +09:23:40 [ 37] [ 12] [507902508159] +09:23:40 [ 41] [ 8] [05003300] +09:23:40 [ 42] [ 15] [NATIVE ] +09:23:40 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:23:40 [ 49] [ 3] [418] +09:23:40 [ 52] [ 16] [1BFD63E1EFDA9849] +09:23:40 ============================================================================ +09:23:40 + + +waiting on router queue for slot.... +09:23:40 Sending to : <4> +09:23:40 ============================================================================ +09:23:41 ============================================================================ +09:23:41 Slot Id : <426> +09:23:41 Transaction Type : RESPONSE +09:23:41 Received From : +09:23:41 ============================================================================ +09:23:41 FNo. Len. Field Value +09:23:41 ============================================================================ +09:23:41 [ 1] [ 4] [0210] +09:23:41 [ 2] [ 16] [6688990103312805] +09:23:41 [ 3] [ 6] [300000] +09:23:41 [ 4] [ 12] [000000000000] +09:23:41 [ 11] [ 6] [697752] +09:23:41 [ 12] [ 6] [092336] +09:23:41 [ 15] [ 4] [0320] +09:23:41 [ 18] [ 4] [6011] +09:23:41 [ 32] [ 6] [621354] +09:23:41 [ 35] [ 37] [6688990103312805=42121231280544200000] +09:23:41 [ 37] [ 12] [507902508159] +09:23:41 [ 38] [ 6] [637528] +09:23:41 [ 39] [ 2] [00] +09:23:41 [ 41] [ 8] [05003300] +09:23:41 [ 49] [ 3] [418] +09:23:41 [ 54] [ 20] [0002418C000211159226] +09:23:41 ============================================================================ +09:23:41 Sending to : +09:23:41 ============================================================================ +09:23:41 + + +waiting on router queue for slot.... +09:23:43 ============================================================================ +09:23:43 Slot Id : <426> +09:23:43 Transaction Type : RESPONSE +09:23:43 Received From : +09:23:43 ============================================================================ +09:23:43 FNo. Len. Field Value +09:23:43 ============================================================================ +09:23:43 [ 1] [ 4] [0210] +09:23:43 [ 2] [ 16] [6688990103312805] +09:23:43 [ 3] [ 6] [300000] +09:23:43 [ 4] [ 12] [000000000000] +09:23:43 [ 11] [ 6] [697752] +09:23:43 [ 12] [ 6] [092336] +09:23:43 [ 15] [ 4] [0320] +09:23:43 [ 18] [ 4] [6011] +09:23:43 [ 32] [ 6] [621354] +09:23:43 [ 35] [ 37] [6688990103312805=42121231280544200000] +09:23:43 [ 37] [ 12] [507902508159] +09:23:43 [ 38] [ 6] [637528] +09:23:43 [ 39] [ 2] [00] +09:23:43 [ 41] [ 8] [05003300] +09:23:43 [ 49] [ 3] [418] +09:23:43 [ 54] [ 20] [0002418C000211159226] +09:23:43 ============================================================================ +09:23:43 Calculate Source COMM Id = 0 +09:23:43 ============================================================================ +09:23:43 + + +waiting on router queue for slot.... +09:23:46 ============================================================================ +09:23:46 Slot Id : <422> +09:23:46 Transaction Type : REQUEST +09:23:46 Received From : +09:23:46 ============================================================================ +09:23:46 FNo. Len. Field Value +09:23:46 ============================================================================ +09:23:46 [ 1] [ 4] [0800] +09:23:46 [ 2] [ 5] [02531] +09:23:46 [ 3] [ 6] [579098] +09:23:46 [ 7] [ 10] [0320022346] +09:23:46 [ 11] [ 6] [806957] +09:23:46 [ 15] [ 10] [0320022346] +09:23:46 [ 37] [ 11] [57909806957] +09:23:46 [ 70] [ 3] [001] +09:23:46 ============================================================================ +09:23:46 + + +waiting on router queue for slot.... +09:23:46 ============================================================================ +09:23:46 Slot Id : <422> +09:23:46 Transaction Type : RESPONSE +09:23:46 Received From : +09:23:46 ============================================================================ +09:23:46 FNo. Len. Field Value +09:23:46 ============================================================================ +09:23:46 [ 1] [ 4] [0810] +09:23:46 [ 7] [ 10] [0320022346] +09:23:46 [ 11] [ 6] [806957] +09:23:46 [ 15] [ 4] [0320] +09:23:46 [ 37] [ 12] [57909806957] +09:23:46 [ 39] [ 2] [00] +09:23:46 [ 70] [ 3] [001] +09:23:46 ============================================================================ +09:23:46 Sending to : +09:23:46 ============================================================================ +09:23:46 + + +waiting on router queue for slot.... +09:23:51 ============================================================================ +09:23:51 Slot Id : <444> +09:23:51 Transaction Type : REQUEST +09:23:51 Received From : +09:23:51 ============================================================================ +09:23:51 FNo. Len. Field Value +09:23:51 ============================================================================ +09:23:51 [ 1] [ 4] [0800] +09:23:51 [ 7] [ 10] [0320022259] +09:23:51 [ 11] [ 6] [155620] +09:23:51 [ 70] [ 3] [301] +09:23:51 ============================================================================ +09:23:51 + + +waiting on router queue for slot.... +09:23:51 Sending to : +09:23:51 ============================================================================ +09:23:51 ============================================================================ +09:23:51 Slot Id : <444> +09:23:51 Transaction Type : RESPONSE +09:23:51 Received From : +09:23:51 ============================================================================ +09:23:51 FNo. Len. Field Value +09:23:51 ============================================================================ +09:23:51 [ 1] [ 4] [0810] +09:23:51 [ 7] [ 10] [0320022259] +09:23:51 [ 11] [ 6] [155620] +09:23:51 [ 39] [ 2] [00] +09:23:51 [ 70] [ 3] [301] +09:23:51 ============================================================================ +09:23:51 Calculate Source COMM Id = 2 +09:23:51 ============================================================================ +09:23:51 + + +waiting on router queue for slot.... +09:23:54 ============================================================================ +09:23:54 Slot Id : <421> +09:23:54 Transaction Type : REQUEST +09:23:54 Received From : +09:23:54 ============================================================================ +09:23:54 FNo. Len. Field Value +09:23:54 ============================================================================ +09:23:54 [ 1] [ 4] [0200] +09:23:54 [ 2] [ 16] [1808931300006085] +09:23:54 [ 3] [ 6] [012000] +09:23:54 [ 4] [ 12] [000050000000] +09:23:54 [ 7] [ 10] [0320092350] +09:23:54 [ 11] [ 6] [697825] +09:23:54 [ 12] [ 6] [092350] +09:23:54 [ 13] [ 4] [0320] +09:23:54 [ 15] [ 4] [0320] +09:23:54 [ 18] [ 4] [6011] +09:23:54 [ 22] [ 3] [900] +09:23:54 [ 25] [ 2] [02] +09:23:54 [ 28] [ 9] [D00002000] +09:23:54 [ 32] [ 6] [621354] +09:23:54 [ 35] [ 27] [1808931300006085=1803500556] +09:23:54 [ 37] [ 12] [507903735074] +09:23:54 [ 41] [ 8] [06002300] +09:23:54 [ 42] [ 15] [NATIVE ] +09:23:54 [ 43] [ 40] [ODX BOL Xay LAO] +09:23:54 [ 49] [ 3] [418] +09:23:54 [ 52] [ 16] [730E61209C806AE5] +09:23:54 ============================================================================ +09:23:54 + + +waiting on router queue for slot.... +09:23:54 Sending to : +09:23:54 ============================================================================ +09:23:54 Sending to : +09:23:54 ============================================================================ +09:23:55 ============================================================================ +09:23:55 Slot Id : <421> +09:23:55 Transaction Type : REQUEST +09:23:55 Received From : +09:23:55 ============================================================================ +09:23:55 FNo. Len. Field Value +09:23:55 ============================================================================ +09:23:55 [ 1] [ 4] [0200] +09:23:55 [ 2] [ 16] [1808931300006085] +09:23:55 [ 3] [ 6] [012000] +09:23:55 [ 4] [ 12] [000050000000] +09:23:55 [ 7] [ 10] [0320092350] +09:23:55 [ 11] [ 6] [697825] +09:23:55 [ 12] [ 6] [092350] +09:23:55 [ 13] [ 4] [0320] +09:23:55 [ 15] [ 4] [0320] +09:23:55 [ 18] [ 4] [6011] +09:23:55 [ 22] [ 3] [900] +09:23:55 [ 25] [ 2] [02] +09:23:55 [ 28] [ 9] [D00002000] +09:23:55 [ 32] [ 6] [621354] +09:23:55 [ 35] [ 27] [1808931300006085=1803500556] +09:23:55 [ 37] [ 12] [507903735074] +09:23:55 [ 41] [ 8] [06002300] +09:23:55 [ 42] [ 15] [NATIVE ] +09:23:55 [ 43] [ 40] [ODX BOL Xay LAO] +09:23:55 [ 49] [ 3] [418] +09:23:55 [ 52] [ 16] [730E61209C806AE5] +09:23:55 ============================================================================ +09:23:55 + + +waiting on router queue for slot.... +09:23:55 Sending to : +09:23:55 ============================================================================ +09:23:55 ============================================================================ +09:23:55 Slot Id : <421> +09:23:55 Transaction Type : REQUEST +09:23:55 Received From : +09:23:55 ============================================================================ +09:23:55 FNo. Len. Field Value +09:23:55 ============================================================================ +09:23:55 [ 1] [ 4] [0200] +09:23:55 [ 2] [ 16] [1808931300006085] +09:23:55 [ 3] [ 6] [012000] +09:23:55 [ 4] [ 12] [000050000000] +09:23:55 [ 7] [ 10] [0320092350] +09:23:55 [ 11] [ 6] [697825] +09:23:55 [ 12] [ 6] [092350] +09:23:55 [ 13] [ 4] [0320] +09:23:55 [ 15] [ 4] [0320] +09:23:55 [ 18] [ 4] [6011] +09:23:55 [ 22] [ 3] [900] +09:23:55 [ 25] [ 2] [02] +09:23:55 [ 28] [ 9] [D00002000] +09:23:55 [ 32] [ 6] [621354] +09:23:55 [ 35] [ 27] [1808931300006085=1803500556] +09:23:55 [ 37] [ 12] [507903735074] +09:23:55 [ 41] [ 8] [06002300] +09:23:55 [ 42] [ 15] [NATIVE ] +09:23:55 [ 43] [ 40] [ODX BOL Xay LAO] +09:23:55 [ 49] [ 3] [418] +09:23:55 [ 52] [ 16] [B2066BDFDDD24B0F] +09:23:55 ============================================================================ +09:23:55 + + +waiting on router queue for slot.... +09:23:55 Sending to : <2> +09:23:55 ============================================================================ +09:23:57 ============================================================================ +09:23:57 Slot Id : <421> +09:23:57 Transaction Type : RESPONSE +09:23:57 Received From : +09:23:57 ============================================================================ +09:23:57 FNo. Len. Field Value +09:23:57 ============================================================================ +09:23:57 [ 1] [ 4] [0210] +09:23:57 [ 2] [ 16] [1808931300006085] +09:23:57 [ 3] [ 6] [012000] +09:23:57 [ 4] [ 12] [000050000000] +09:23:57 [ 7] [ 10] [0320092350] +09:23:57 [ 11] [ 6] [697825] +09:23:57 [ 12] [ 6] [092350] +09:23:57 [ 13] [ 4] [0320] +09:23:57 [ 18] [ 4] [6011] +09:23:57 [ 19] [ 3] [418] +09:23:57 [ 22] [ 3] [021] +09:23:57 [ 28] [ 9] [D00002000] +09:23:57 [ 32] [ 6] [621354] +09:23:57 [ 35] [ 27] [1808931300006085=1803500556] +09:23:57 [ 37] [ 12] [507903735074] +09:23:57 [ 39] [ 2] [42] +09:23:57 [ 41] [ 8] [06002300] +09:23:57 [ 49] [ 3] [418] +09:23:57 [ 52] [ 16] [B2066BDFDDD24B0F] +09:23:57 ============================================================================ +09:23:57 Sending to : +09:23:57 ============================================================================ +09:23:57 + + +waiting on router queue for slot.... +09:23:58 ============================================================================ +09:23:58 Slot Id : <421> +09:23:58 Transaction Type : RESPONSE +09:23:58 Received From : +09:23:58 ============================================================================ +09:23:58 FNo. Len. Field Value +09:23:58 ============================================================================ +09:23:58 [ 1] [ 4] [0210] +09:23:58 [ 2] [ 16] [1808931300006085] +09:23:58 [ 3] [ 6] [012000] +09:23:58 [ 4] [ 12] [000050000000] +09:23:58 [ 7] [ 10] [0320092350] +09:23:58 [ 11] [ 6] [697825] +09:23:58 [ 12] [ 6] [092350] +09:23:58 [ 13] [ 4] [0320] +09:23:58 [ 18] [ 4] [6011] +09:23:58 [ 19] [ 3] [418] +09:23:58 [ 22] [ 3] [021] +09:23:58 [ 28] [ 9] [D00002000] +09:23:58 [ 32] [ 6] [621354] +09:23:58 [ 35] [ 27] [1808931300006085=1803500556] +09:23:58 [ 37] [ 12] [507903735074] +09:23:58 [ 39] [ 2] [42] +09:23:58 [ 41] [ 8] [06002300] +09:23:58 [ 49] [ 3] [418] +09:23:58 [ 52] [ 16] [B2066BDFDDD24B0F] +09:23:58 ============================================================================ +09:23:58 Calculate Source COMM Id = 0 +09:23:58 ============================================================================ +09:23:58 + + +waiting on router queue for slot.... +09:24:07 ============================================================================ +09:24:07 Slot Id : <465> +09:24:07 Transaction Type : REQUEST +09:24:07 Received From : +09:24:07 ============================================================================ +09:24:07 FNo. Len. Field Value +09:24:07 ============================================================================ +09:24:07 [ 1] [ 4] [0800] +09:24:07 [ 7] [ 10] [0320022315] +09:24:07 [ 11] [ 6] [155621] +09:24:07 [ 70] [ 3] [301] +09:24:07 ============================================================================ +09:24:07 + + +waiting on router queue for slot.... +09:24:07 Sending to : +09:24:07 ============================================================================ +09:24:07 ============================================================================ +09:24:07 Slot Id : <465> +09:24:07 Transaction Type : RESPONSE +09:24:07 Received From : +09:24:07 ============================================================================ +09:24:07 FNo. Len. Field Value +09:24:07 ============================================================================ +09:24:07 [ 1] [ 4] [0810] +09:24:07 [ 7] [ 10] [0320022315] +09:24:07 [ 11] [ 6] [155621] +09:24:07 [ 39] [ 2] [00] +09:24:07 [ 70] [ 3] [301] +09:24:07 ============================================================================ +09:24:07 Calculate Source COMM Id = 2 +09:24:07 ============================================================================ +09:24:07 + + +waiting on router queue for slot.... +09:24:19 ============================================================================ +09:24:19 Slot Id : <423> +09:24:19 Transaction Type : REQUEST +09:24:19 Received From : +09:24:19 ============================================================================ +09:24:19 FNo. Len. Field Value +09:24:19 ============================================================================ +09:24:19 [ 1] [ 4] [0200] +09:24:19 [ 2] [ 16] [6688990105201501] +09:24:19 [ 3] [ 6] [301000] +09:24:19 [ 4] [ 12] [000000000000] +09:24:19 [ 7] [ 10] [0320092415] +09:24:19 [ 11] [ 6] [697942] +09:24:19 [ 12] [ 6] [092415] +09:24:19 [ 13] [ 4] [0320] +09:24:19 [ 15] [ 4] [0320] +09:24:19 [ 18] [ 4] [6011] +09:24:19 [ 22] [ 3] [900] +09:24:19 [ 25] [ 2] [02] +09:24:19 [ 28] [ 9] [D00000000] +09:24:19 [ 32] [ 6] [621354] +09:24:19 [ 35] [ 37] [6688990105201501=43081231150110900000] +09:24:19 [ 37] [ 12] [507904719406] +09:24:19 [ 41] [ 8] [18001000] +09:24:19 [ 42] [ 15] [NATIVE ] +09:24:19 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:24:19 [ 49] [ 3] [418] +09:24:19 [ 52] [ 16] [5EC048B866A92497] +09:24:19 ============================================================================ +09:24:19 + + +waiting on router queue for slot.... +09:24:19 Sending to : +09:24:19 ============================================================================ +09:24:19 Sending to : +09:24:19 ============================================================================ +09:24:19 ============================================================================ +09:24:19 Slot Id : <436> +09:24:19 Transaction Type : REQUEST +09:24:19 Received From : +09:24:19 ============================================================================ +09:24:19 FNo. Len. Field Value +09:24:19 ============================================================================ +09:24:19 [ 1] [ 4] [0800] +09:24:19 [ 7] [ 10] [0320022327] +09:24:19 [ 11] [ 6] [155622] +09:24:19 [ 70] [ 3] [301] +09:24:19 ============================================================================ +09:24:19 + + +waiting on router queue for slot.... +09:24:19 Sending to : +09:24:19 ============================================================================ +09:24:19 ============================================================================ +09:24:19 Slot Id : <436> +09:24:19 Transaction Type : RESPONSE +09:24:19 Received From : +09:24:19 ============================================================================ +09:24:19 FNo. Len. Field Value +09:24:19 ============================================================================ +09:24:19 [ 1] [ 4] [0810] +09:24:19 [ 7] [ 10] [0320022327] +09:24:19 [ 11] [ 6] [155622] +09:24:19 [ 39] [ 2] [00] +09:24:19 [ 70] [ 3] [301] +09:24:19 ============================================================================ +09:24:19 Calculate Source COMM Id = 2 +09:24:19 ============================================================================ +09:24:19 + + +waiting on router queue for slot.... +09:24:19 ============================================================================ +09:24:19 Slot Id : <423> +09:24:19 Transaction Type : REQUEST +09:24:19 Received From : +09:24:19 ============================================================================ +09:24:19 FNo. Len. Field Value +09:24:19 ============================================================================ +09:24:19 [ 1] [ 4] [0200] +09:24:19 [ 2] [ 16] [6688990105201501] +09:24:19 [ 3] [ 6] [301000] +09:24:19 [ 4] [ 12] [000000000000] +09:24:19 [ 7] [ 10] [0320092415] +09:24:19 [ 11] [ 6] [697942] +09:24:19 [ 12] [ 6] [092415] +09:24:19 [ 13] [ 4] [0320] +09:24:19 [ 15] [ 4] [0320] +09:24:19 [ 18] [ 4] [6011] +09:24:19 [ 22] [ 3] [900] +09:24:19 [ 25] [ 2] [02] +09:24:19 [ 28] [ 9] [D00000000] +09:24:19 [ 32] [ 6] [621354] +09:24:19 [ 35] [ 37] [6688990105201501=43081231150110900000] +09:24:19 [ 37] [ 12] [507904719406] +09:24:19 [ 41] [ 8] [18001000] +09:24:19 [ 42] [ 15] [NATIVE ] +09:24:19 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:24:19 [ 49] [ 3] [418] +09:24:19 [ 52] [ 16] [5EC048B866A92497] +09:24:19 ============================================================================ +09:24:19 + + +waiting on router queue for slot.... +09:24:19 Sending to : +09:24:19 ============================================================================ +09:24:19 ============================================================================ +09:24:19 Slot Id : <423> +09:24:19 Transaction Type : REQUEST +09:24:19 Received From : +09:24:19 ============================================================================ +09:24:19 FNo. Len. Field Value +09:24:19 ============================================================================ +09:24:19 [ 1] [ 4] [0200] +09:24:19 [ 2] [ 16] [6688990105201501] +09:24:19 [ 3] [ 6] [301000] +09:24:19 [ 4] [ 12] [000000000000] +09:24:19 [ 7] [ 10] [0320092415] +09:24:19 [ 11] [ 6] [697942] +09:24:19 [ 12] [ 6] [092415] +09:24:19 [ 13] [ 4] [0320] +09:24:19 [ 15] [ 4] [0320] +09:24:19 [ 18] [ 4] [6011] +09:24:19 [ 22] [ 3] [900] +09:24:19 [ 25] [ 2] [02] +09:24:19 [ 28] [ 9] [D00000000] +09:24:19 [ 32] [ 6] [621354] +09:24:19 [ 35] [ 37] [6688990105201501=43081231150110900000] +09:24:19 [ 37] [ 12] [507904719406] +09:24:19 [ 41] [ 8] [18001000] +09:24:19 [ 42] [ 15] [NATIVE ] +09:24:19 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:24:19 [ 49] [ 3] [418] +09:24:19 [ 52] [ 16] [B1CF016A40D88944] +09:24:19 ============================================================================ +09:24:19 + + +waiting on router queue for slot.... +09:24:19 Sending to : <4> +09:24:19 ============================================================================ +09:24:20 ============================================================================ +09:24:20 Slot Id : <423> +09:24:20 Transaction Type : RESPONSE +09:24:20 Received From : +09:24:20 ============================================================================ +09:24:20 FNo. Len. Field Value +09:24:20 ============================================================================ +09:24:20 [ 1] [ 4] [0210] +09:24:20 [ 2] [ 16] [6688990105201501] +09:24:20 [ 3] [ 6] [301000] +09:24:20 [ 4] [ 12] [000000000000] +09:24:20 [ 11] [ 6] [697942] +09:24:20 [ 12] [ 6] [092415] +09:24:20 [ 15] [ 4] [0320] +09:24:20 [ 18] [ 4] [6011] +09:24:20 [ 32] [ 6] [621354] +09:24:20 [ 35] [ 37] [6688990105201501=43081231150110900000] +09:24:20 [ 37] [ 12] [507904719406] +09:24:20 [ 38] [ 6] [772209] +09:24:20 [ 39] [ 2] [00] +09:24:20 [ 41] [ 8] [18001000] +09:24:20 [ 49] [ 3] [418] +09:24:20 [ 54] [ 20] [1002418C000098819015] +09:24:20 ============================================================================ +09:24:20 Sending to : +09:24:20 ============================================================================ +09:24:20 + + +waiting on router queue for slot.... +09:24:22 ============================================================================ +09:24:22 Slot Id : <423> +09:24:22 Transaction Type : RESPONSE +09:24:22 Received From : +09:24:22 ============================================================================ +09:24:22 FNo. Len. Field Value +09:24:22 ============================================================================ +09:24:22 [ 1] [ 4] [0210] +09:24:22 [ 2] [ 16] [6688990105201501] +09:24:22 [ 3] [ 6] [301000] +09:24:22 [ 4] [ 12] [000000000000] +09:24:22 [ 11] [ 6] [697942] +09:24:22 [ 12] [ 6] [092415] +09:24:22 [ 15] [ 4] [0320] +09:24:22 [ 18] [ 4] [6011] +09:24:22 [ 32] [ 6] [621354] +09:24:22 [ 35] [ 37] [6688990105201501=43081231150110900000] +09:24:22 [ 37] [ 12] [507904719406] +09:24:22 [ 38] [ 6] [772209] +09:24:22 [ 39] [ 2] [00] +09:24:22 [ 41] [ 8] [18001000] +09:24:22 [ 49] [ 3] [418] +09:24:22 [ 54] [ 20] [1002418C000098819015] +09:24:22 ============================================================================ +09:24:22 Calculate Source COMM Id = 0 +09:24:22 ============================================================================ +09:24:22 + + +waiting on router queue for slot.... +09:24:34 ============================================================================ +09:24:34 Slot Id : <439> +09:24:34 Transaction Type : REQUEST +09:24:34 Received From : +09:24:34 ============================================================================ +09:24:34 FNo. Len. Field Value +09:24:34 ============================================================================ +09:24:34 [ 1] [ 4] [0800] +09:24:34 [ 7] [ 10] [0320163622] +09:24:34 [ 11] [ 6] [093622] +09:24:34 [ 37] [ 12] [57909093622] +09:24:34 [ 70] [ 3] [301] +09:24:34 ============================================================================ +09:24:34 + + +waiting on router queue for slot.... +09:24:34 Sending to : +09:24:34 ============================================================================ +09:24:34 ============================================================================ +09:24:34 Slot Id : <439> +09:24:34 Transaction Type : RESPONSE +09:24:34 Received From : +09:24:34 ============================================================================ +09:24:34 FNo. Len. Field Value +09:24:34 ============================================================================ +09:24:34 [ 1] [ 4] [0810] +09:24:34 [ 7] [ 10] [0320163622] +09:24:34 [ 11] [ 6] [093622] +09:24:34 [ 37] [ 12] [579090936220] +09:24:34 [ 39] [ 2] [00] +09:24:34 [ 70] [ 3] [810] +09:24:34 ============================================================================ +09:24:34 Calculate Source COMM Id = 6 +09:24:34 ============================================================================ +09:24:34 + + +waiting on router queue for slot.... +09:24:35 ============================================================================ +09:24:35 Slot Id : <458> +09:24:35 Transaction Type : REQUEST +09:24:35 Received From : +09:24:35 ============================================================================ +09:24:35 FNo. Len. Field Value +09:24:35 ============================================================================ +09:24:35 [ 1] [ 4] [0800] +09:24:35 [ 7] [ 10] [0320022342] +09:24:35 [ 11] [ 6] [155623] +09:24:35 [ 70] [ 3] [301] +09:24:35 ============================================================================ +09:24:35 + + +waiting on router queue for slot.... +09:24:35 Sending to : +09:24:35 ============================================================================ +09:24:35 ============================================================================ +09:24:35 Slot Id : <458> +09:24:35 Transaction Type : RESPONSE +09:24:35 Received From : +09:24:35 ============================================================================ +09:24:35 FNo. Len. Field Value +09:24:35 ============================================================================ +09:24:35 [ 1] [ 4] [0810] +09:24:35 [ 7] [ 10] [0320022342] +09:24:35 [ 11] [ 6] [155623] +09:24:35 [ 39] [ 2] [00] +09:24:35 [ 70] [ 3] [301] +09:24:35 ============================================================================ +09:24:35 Calculate Source COMM Id = 2 +09:24:35 ============================================================================ +09:24:35 + + +waiting on router queue for slot.... +09:24:42 ============================================================================ +09:24:42 Slot Id : <459> +09:24:42 Transaction Type : REQUEST +09:24:42 Received From : +09:24:42 ============================================================================ +09:24:42 FNo. Len. Field Value +09:24:42 ============================================================================ +09:24:42 [ 1] [ 4] [0200] +09:24:42 [ 2] [ 16] [6688990104502404] +09:24:42 [ 3] [ 6] [010000] +09:24:42 [ 4] [ 12] [000010000000] +09:24:42 [ 7] [ 10] [0320092438] +09:24:42 [ 11] [ 6] [698035] +09:24:42 [ 12] [ 6] [092438] +09:24:42 [ 13] [ 4] [0320] +09:24:42 [ 15] [ 4] [0320] +09:24:42 [ 18] [ 4] [6011] +09:24:42 [ 22] [ 3] [900] +09:24:42 [ 25] [ 2] [02] +09:24:42 [ 28] [ 9] [D00002000] +09:24:42 [ 32] [ 6] [621354] +09:24:42 [ 35] [ 37] [6688990104502404=43041231240460000000] +09:24:42 [ 37] [ 12] [507902508161] +09:24:42 [ 41] [ 8] [05003300] +09:24:42 [ 42] [ 15] [NATIVE ] +09:24:42 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:24:42 [ 49] [ 3] [418] +09:24:42 [ 52] [ 16] [CD04ABBEC45EEB5A] +09:24:42 ============================================================================ +09:24:42 + + +waiting on router queue for slot.... +09:24:42 Sending to : +09:24:42 ============================================================================ +09:24:42 Sending to : +09:24:42 ============================================================================ +09:24:42 ============================================================================ +09:24:42 Slot Id : <459> +09:24:42 Transaction Type : REQUEST +09:24:42 Received From : +09:24:42 ============================================================================ +09:24:42 FNo. Len. Field Value +09:24:42 ============================================================================ +09:24:42 [ 1] [ 4] [0200] +09:24:42 [ 2] [ 16] [6688990104502404] +09:24:42 [ 3] [ 6] [010000] +09:24:42 [ 4] [ 12] [000010000000] +09:24:42 [ 7] [ 10] [0320092438] +09:24:42 [ 11] [ 6] [698035] +09:24:42 [ 12] [ 6] [092438] +09:24:42 [ 13] [ 4] [0320] +09:24:42 [ 15] [ 4] [0320] +09:24:42 [ 18] [ 4] [6011] +09:24:42 [ 22] [ 3] [900] +09:24:42 [ 25] [ 2] [02] +09:24:42 [ 28] [ 9] [D00002000] +09:24:42 [ 32] [ 6] [621354] +09:24:42 [ 35] [ 37] [6688990104502404=43041231240460000000] +09:24:42 [ 37] [ 12] [507902508161] +09:24:42 [ 41] [ 8] [05003300] +09:24:42 [ 42] [ 15] [NATIVE ] +09:24:42 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:24:42 [ 49] [ 3] [418] +09:24:42 [ 52] [ 16] [CD04ABBEC45EEB5A] +09:24:42 ============================================================================ +09:24:42 + + +waiting on router queue for slot.... +09:24:42 Sending to : +09:24:42 ============================================================================ +09:24:42 ============================================================================ +09:24:42 Slot Id : <459> +09:24:42 Transaction Type : REQUEST +09:24:42 Received From : +09:24:42 ============================================================================ +09:24:42 FNo. Len. Field Value +09:24:42 ============================================================================ +09:24:42 [ 1] [ 4] [0200] +09:24:42 [ 2] [ 16] [6688990104502404] +09:24:42 [ 3] [ 6] [010000] +09:24:42 [ 4] [ 12] [000010000000] +09:24:42 [ 7] [ 10] [0320092438] +09:24:42 [ 11] [ 6] [698035] +09:24:42 [ 12] [ 6] [092438] +09:24:42 [ 13] [ 4] [0320] +09:24:42 [ 15] [ 4] [0320] +09:24:42 [ 18] [ 4] [6011] +09:24:42 [ 22] [ 3] [900] +09:24:42 [ 25] [ 2] [02] +09:24:42 [ 28] [ 9] [D00002000] +09:24:42 [ 32] [ 6] [621354] +09:24:42 [ 35] [ 37] [6688990104502404=43041231240460000000] +09:24:42 [ 37] [ 12] [507902508161] +09:24:42 [ 41] [ 8] [05003300] +09:24:42 [ 42] [ 15] [NATIVE ] +09:24:42 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:24:42 [ 49] [ 3] [418] +09:24:42 [ 52] [ 16] [22E5BFFE090F88C7] +09:24:42 ============================================================================ +09:24:42 + + +waiting on router queue for slot.... +09:24:42 Sending to : <4> +09:24:42 ============================================================================ +09:24:43 ============================================================================ +09:24:43 Slot Id : <459> +09:24:43 Transaction Type : RESPONSE +09:24:43 Received From : +09:24:43 ============================================================================ +09:24:43 FNo. Len. Field Value +09:24:43 ============================================================================ +09:24:43 [ 1] [ 4] [0210] +09:24:43 [ 2] [ 16] [6688990104502404] +09:24:43 [ 3] [ 6] [010000] +09:24:43 [ 4] [ 12] [000010000000] +09:24:43 [ 11] [ 6] [698035] +09:24:43 [ 12] [ 6] [092438] +09:24:43 [ 15] [ 4] [0320] +09:24:43 [ 18] [ 4] [6011] +09:24:43 [ 32] [ 6] [621354] +09:24:43 [ 35] [ 37] [6688990104502404=43041231240460000000] +09:24:43 [ 37] [ 12] [507902508161] +09:24:43 [ 38] [ 6] [824584] +09:24:43 [ 39] [ 2] [00] +09:24:43 [ 41] [ 8] [05003300] +09:24:43 [ 49] [ 3] [418] +09:24:43 [ 54] [ 20] [0002418C000458333348] +09:24:43 ============================================================================ +09:24:43 Sending to : +09:24:43 ============================================================================ +09:24:43 + + +waiting on router queue for slot.... +09:24:44 ============================================================================ +09:24:44 Slot Id : <459> +09:24:44 Transaction Type : RESPONSE +09:24:44 Received From : +09:24:44 ============================================================================ +09:24:44 FNo. Len. Field Value +09:24:44 ============================================================================ +09:24:44 [ 1] [ 4] [0210] +09:24:44 [ 2] [ 16] [6688990104502404] +09:24:44 [ 3] [ 6] [010000] +09:24:44 [ 4] [ 12] [000010000000] +09:24:44 [ 11] [ 6] [698035] +09:24:44 [ 12] [ 6] [092438] +09:24:44 [ 15] [ 4] [0320] +09:24:44 [ 18] [ 4] [6011] +09:24:44 [ 32] [ 6] [621354] +09:24:44 [ 35] [ 37] [6688990104502404=43041231240460000000] +09:24:44 [ 37] [ 12] [507902508161] +09:24:44 [ 38] [ 6] [824584] +09:24:44 [ 39] [ 2] [00] +09:24:44 [ 41] [ 8] [05003300] +09:24:44 [ 49] [ 3] [418] +09:24:44 [ 54] [ 20] [0002418C000458333348] +09:24:44 ============================================================================ +09:24:44 Calculate Source COMM Id = 0 +09:24:44 ============================================================================ +09:24:44 + + +waiting on router queue for slot.... +09:24:48 ============================================================================ +09:24:48 Slot Id : <466> +09:24:48 Transaction Type : REQUEST +09:24:48 Received From : +09:24:48 ============================================================================ +09:24:48 FNo. Len. Field Value +09:24:48 ============================================================================ +09:24:48 [ 1] [ 4] [0800] +09:24:48 [ 2] [ 5] [02531] +09:24:48 [ 3] [ 6] [579098] +09:24:48 [ 7] [ 10] [0320022448] +09:24:48 [ 11] [ 6] [806958] +09:24:48 [ 15] [ 10] [0320022448] +09:24:48 [ 37] [ 11] [57909806958] +09:24:48 [ 70] [ 3] [001] +09:24:48 ============================================================================ +09:24:48 + + +waiting on router queue for slot.... +09:24:48 ============================================================================ +09:24:48 Slot Id : <466> +09:24:48 Transaction Type : RESPONSE +09:24:48 Received From : +09:24:48 ============================================================================ +09:24:48 FNo. Len. Field Value +09:24:48 ============================================================================ +09:24:48 [ 1] [ 4] [0810] +09:24:48 [ 7] [ 10] [0320022448] +09:24:48 [ 11] [ 6] [806958] +09:24:48 [ 15] [ 4] [0320] +09:24:48 [ 37] [ 12] [57909806958] +09:24:48 [ 39] [ 2] [00] +09:24:48 [ 70] [ 3] [001] +09:24:48 ============================================================================ +09:24:48 Sending to : +09:24:48 ============================================================================ +09:24:48 + + +waiting on router queue for slot.... +09:24:50 ============================================================================ +09:24:50 Slot Id : <452> +09:24:50 Transaction Type : REQUEST +09:24:50 Received From : +09:24:50 ============================================================================ +09:24:50 FNo. Len. Field Value +09:24:50 ============================================================================ +09:24:50 [ 1] [ 4] [0800] +09:24:50 [ 7] [ 10] [0320022358] +09:24:50 [ 11] [ 6] [155624] +09:24:50 [ 70] [ 3] [301] +09:24:50 ============================================================================ +09:24:50 + + +waiting on router queue for slot.... +09:24:50 Sending to : +09:24:50 ============================================================================ +09:24:50 ============================================================================ +09:24:50 Slot Id : <452> +09:24:50 Transaction Type : RESPONSE +09:24:50 Received From : +09:24:50 ============================================================================ +09:24:50 FNo. Len. Field Value +09:24:50 ============================================================================ +09:24:50 [ 1] [ 4] [0810] +09:24:50 [ 7] [ 10] [0320022358] +09:24:50 [ 11] [ 6] [155624] +09:24:50 [ 39] [ 2] [00] +09:24:50 [ 70] [ 3] [301] +09:24:50 ============================================================================ +09:24:50 Calculate Source COMM Id = 2 +09:24:50 ============================================================================ +09:24:50 + + +waiting on router queue for slot.... +09:24:55 ============================================================================ +09:24:55 Slot Id : <468> +09:24:55 Transaction Type : REQUEST +09:24:55 Received From : +09:24:55 ============================================================================ +09:24:55 FNo. Len. Field Value +09:24:55 ============================================================================ +09:24:55 [ 1] [ 4] [0800] +09:24:55 [ 7] [ 10] [0320023242] +09:24:55 [ 11] [ 6] [010895] +09:24:55 [ 37] [ 12] [57909010895] +09:24:55 [ 70] [ 3] [301] +09:24:55 ============================================================================ +09:24:55 + + +waiting on router queue for slot.... +09:24:55 Sending to : +09:24:55 ============================================================================ +09:24:55 ============================================================================ +09:24:55 Slot Id : <468> +09:24:55 Transaction Type : RESPONSE +09:24:55 Received From : +09:24:55 ============================================================================ +09:24:55 FNo. Len. Field Value +09:24:55 ============================================================================ +09:24:55 [ 1] [ 4] [0810] +09:24:55 [ 7] [ 10] [0320023242] +09:24:55 [ 11] [ 6] [010895] +09:24:55 [ 37] [ 12] [579090108950] +09:24:55 [ 39] [ 2] [00] +09:24:55 [ 70] [ 3] [810] +09:24:55 ============================================================================ +09:24:55 Calculate Source COMM Id = 1 +09:24:55 ============================================================================ +09:24:55 + + +waiting on router queue for slot.... +09:25:04 ============================================================================ +09:25:04 Slot Id : <475> +09:25:04 Transaction Type : REQUEST +09:25:04 Received From : +09:25:04 ============================================================================ +09:25:04 FNo. Len. Field Value +09:25:04 ============================================================================ +09:25:04 [ 1] [ 4] [0200] +09:25:04 [ 2] [ 16] [6688990105201501] +09:25:04 [ 3] [ 6] [011000] +09:25:04 [ 4] [ 12] [000040000000] +09:25:04 [ 7] [ 10] [0320092501] +09:25:04 [ 11] [ 6] [698156] +09:25:04 [ 12] [ 6] [092501] +09:25:04 [ 13] [ 4] [0320] +09:25:04 [ 15] [ 4] [0320] +09:25:04 [ 18] [ 4] [6011] +09:25:04 [ 22] [ 3] [900] +09:25:04 [ 25] [ 2] [02] +09:25:04 [ 28] [ 9] [D00002000] +09:25:04 [ 32] [ 6] [621354] +09:25:04 [ 35] [ 37] [6688990105201501=43081231150110900000] +09:25:04 [ 37] [ 12] [507904719408] +09:25:04 [ 41] [ 8] [18001000] +09:25:04 [ 42] [ 15] [NATIVE ] +09:25:04 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:25:04 [ 49] [ 3] [418] +09:25:04 [ 52] [ 16] [5EC048B866A92497] +09:25:04 ============================================================================ +09:25:04 + + +waiting on router queue for slot.... +09:25:04 Sending to : +09:25:04 ============================================================================ +09:25:04 Sending to : +09:25:04 ============================================================================ +09:25:05 ============================================================================ +09:25:05 Slot Id : <475> +09:25:05 Transaction Type : REQUEST +09:25:05 Received From : +09:25:05 ============================================================================ +09:25:05 FNo. Len. Field Value +09:25:05 ============================================================================ +09:25:05 [ 1] [ 4] [0200] +09:25:05 [ 2] [ 16] [6688990105201501] +09:25:05 [ 3] [ 6] [011000] +09:25:05 [ 4] [ 12] [000040000000] +09:25:05 [ 7] [ 10] [0320092501] +09:25:05 [ 11] [ 6] [698156] +09:25:05 [ 12] [ 6] [092501] +09:25:05 [ 13] [ 4] [0320] +09:25:05 [ 15] [ 4] [0320] +09:25:05 [ 18] [ 4] [6011] +09:25:05 [ 22] [ 3] [900] +09:25:05 [ 25] [ 2] [02] +09:25:05 [ 28] [ 9] [D00002000] +09:25:05 [ 32] [ 6] [621354] +09:25:05 [ 35] [ 37] [6688990105201501=43081231150110900000] +09:25:05 [ 37] [ 12] [507904719408] +09:25:05 [ 41] [ 8] [18001000] +09:25:05 [ 42] [ 15] [NATIVE ] +09:25:05 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:25:05 [ 49] [ 3] [418] +09:25:05 [ 52] [ 16] [5EC048B866A92497] +09:25:05 ============================================================================ +09:25:05 + + +waiting on router queue for slot.... +09:25:05 Sending to : +09:25:05 ============================================================================ +09:25:05 ============================================================================ +09:25:05 Slot Id : <475> +09:25:05 Transaction Type : REQUEST +09:25:05 Received From : +09:25:05 ============================================================================ +09:25:05 FNo. Len. Field Value +09:25:05 ============================================================================ +09:25:05 [ 1] [ 4] [0200] +09:25:05 [ 2] [ 16] [6688990105201501] +09:25:05 [ 3] [ 6] [011000] +09:25:05 [ 4] [ 12] [000040000000] +09:25:05 [ 7] [ 10] [0320092501] +09:25:05 [ 11] [ 6] [698156] +09:25:05 [ 12] [ 6] [092501] +09:25:05 [ 13] [ 4] [0320] +09:25:05 [ 15] [ 4] [0320] +09:25:05 [ 18] [ 4] [6011] +09:25:05 [ 22] [ 3] [900] +09:25:05 [ 25] [ 2] [02] +09:25:05 [ 28] [ 9] [D00002000] +09:25:05 [ 32] [ 6] [621354] +09:25:05 [ 35] [ 37] [6688990105201501=43081231150110900000] +09:25:05 [ 37] [ 12] [507904719408] +09:25:05 [ 41] [ 8] [18001000] +09:25:05 [ 42] [ 15] [NATIVE ] +09:25:05 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:25:05 [ 49] [ 3] [418] +09:25:05 [ 52] [ 16] [B1CF016A40D88944] +09:25:05 ============================================================================ +09:25:05 + + +waiting on router queue for slot.... +09:25:05 Sending to : <4> +09:25:05 ============================================================================ +09:25:06 ============================================================================ +09:25:06 Slot Id : <475> +09:25:06 Transaction Type : RESPONSE +09:25:06 Received From : +09:25:06 ============================================================================ +09:25:06 FNo. Len. Field Value +09:25:06 ============================================================================ +09:25:06 [ 1] [ 4] [0210] +09:25:06 [ 2] [ 16] [6688990105201501] +09:25:06 [ 3] [ 6] [011000] +09:25:06 [ 4] [ 12] [000040000000] +09:25:06 [ 11] [ 6] [698156] +09:25:06 [ 12] [ 6] [092501] +09:25:06 [ 15] [ 4] [0320] +09:25:06 [ 18] [ 4] [6011] +09:25:06 [ 32] [ 6] [621354] +09:25:06 [ 35] [ 37] [6688990105201501=43081231150110900000] +09:25:06 [ 37] [ 12] [507904719408] +09:25:06 [ 38] [ 6] [475517] +09:25:06 [ 39] [ 2] [00] +09:25:06 [ 41] [ 8] [18001000] +09:25:06 [ 49] [ 3] [418] +09:25:06 [ 54] [ 20] [1002418C000058619015] +09:25:06 ============================================================================ +09:25:06 Sending to : +09:25:06 ============================================================================ +09:25:06 + + +waiting on router queue for slot.... +09:25:07 ============================================================================ +09:25:07 Slot Id : <455> +09:25:07 Transaction Type : REQUEST +09:25:07 Received From : +09:25:07 ============================================================================ +09:25:07 FNo. Len. Field Value +09:25:07 ============================================================================ +09:25:07 [ 1] [ 4] [0800] +09:25:07 [ 7] [ 10] [0320022414] +09:25:07 [ 11] [ 6] [155625] +09:25:07 [ 70] [ 3] [301] +09:25:07 ============================================================================ +09:25:07 + + +waiting on router queue for slot.... +09:25:07 Sending to : +09:25:07 ============================================================================ +09:25:07 ============================================================================ +09:25:07 Slot Id : <455> +09:25:07 Transaction Type : RESPONSE +09:25:07 Received From : +09:25:07 ============================================================================ +09:25:07 FNo. Len. Field Value +09:25:07 ============================================================================ +09:25:07 [ 1] [ 4] [0810] +09:25:07 [ 7] [ 10] [0320022414] +09:25:07 [ 11] [ 6] [155625] +09:25:07 [ 39] [ 2] [00] +09:25:07 [ 70] [ 3] [301] +09:25:07 ============================================================================ +09:25:07 Calculate Source COMM Id = 2 +09:25:07 ============================================================================ +09:25:07 + + +waiting on router queue for slot.... +09:25:08 ============================================================================ +09:25:08 Slot Id : <475> +09:25:08 Transaction Type : RESPONSE +09:25:08 Received From : +09:25:08 ============================================================================ +09:25:08 FNo. Len. Field Value +09:25:08 ============================================================================ +09:25:08 [ 1] [ 4] [0210] +09:25:08 [ 2] [ 16] [6688990105201501] +09:25:08 [ 3] [ 6] [011000] +09:25:08 [ 4] [ 12] [000040000000] +09:25:08 [ 11] [ 6] [698156] +09:25:08 [ 12] [ 6] [092501] +09:25:08 [ 15] [ 4] [0320] +09:25:08 [ 18] [ 4] [6011] +09:25:08 [ 32] [ 6] [621354] +09:25:08 [ 35] [ 37] [6688990105201501=43081231150110900000] +09:25:08 [ 37] [ 12] [507904719408] +09:25:08 [ 38] [ 6] [475517] +09:25:08 [ 39] [ 2] [00] +09:25:08 [ 41] [ 8] [18001000] +09:25:08 [ 49] [ 3] [418] +09:25:08 [ 54] [ 20] [1002418C000058619015] +09:25:08 ============================================================================ +09:25:08 Calculate Source COMM Id = 0 +09:25:08 ============================================================================ +09:25:08 + + +waiting on router queue for slot.... +09:25:13 ============================================================================ +09:25:13 Slot Id : <449> +09:25:13 Transaction Type : REQUEST +09:25:13 Received From : +09:25:13 ============================================================================ +09:25:13 FNo. Len. Field Value +09:25:13 ============================================================================ +09:25:13 [ 1] [ 4] [0200] +09:25:13 [ 2] [ 16] [6688990107221705] +09:25:13 [ 3] [ 6] [301000] +09:25:13 [ 4] [ 12] [000000000000] +09:25:13 [ 7] [ 10] [0320092509] +09:25:13 [ 11] [ 6] [698180] +09:25:13 [ 12] [ 6] [092509] +09:25:13 [ 13] [ 4] [0320] +09:25:13 [ 15] [ 4] [0320] +09:25:13 [ 18] [ 4] [6011] +09:25:13 [ 22] [ 3] [900] +09:25:13 [ 25] [ 2] [02] +09:25:13 [ 28] [ 9] [D00000000] +09:25:13 [ 32] [ 6] [621354] +09:25:13 [ 35] [ 37] [6688990107221705=44021231170526900000] +09:25:13 [ 37] [ 12] [507905108519] +09:25:13 [ 41] [ 8] [20001300] +09:25:13 [ 42] [ 15] [NATIVE ] +09:25:13 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +09:25:13 [ 49] [ 3] [418] +09:25:13 [ 52] [ 16] [8211D832CE2D86DF] +09:25:13 ============================================================================ +09:25:13 + + +waiting on router queue for slot.... +09:25:13 Sending to : +09:25:13 ============================================================================ +09:25:13 Sending to : +09:25:13 ============================================================================ +09:25:13 ============================================================================ +09:25:13 Slot Id : <449> +09:25:13 Transaction Type : REQUEST +09:25:13 Received From : +09:25:13 ============================================================================ +09:25:13 FNo. Len. Field Value +09:25:13 ============================================================================ +09:25:13 [ 1] [ 4] [0200] +09:25:13 [ 2] [ 16] [6688990107221705] +09:25:13 [ 3] [ 6] [301000] +09:25:13 [ 4] [ 12] [000000000000] +09:25:13 [ 7] [ 10] [0320092509] +09:25:13 [ 11] [ 6] [698180] +09:25:13 [ 12] [ 6] [092509] +09:25:13 [ 13] [ 4] [0320] +09:25:13 [ 15] [ 4] [0320] +09:25:13 [ 18] [ 4] [6011] +09:25:13 [ 22] [ 3] [900] +09:25:13 [ 25] [ 2] [02] +09:25:13 [ 28] [ 9] [D00000000] +09:25:13 [ 32] [ 6] [621354] +09:25:13 [ 35] [ 37] [6688990107221705=44021231170526900000] +09:25:13 [ 37] [ 12] [507905108519] +09:25:13 [ 41] [ 8] [20001300] +09:25:13 [ 42] [ 15] [NATIVE ] +09:25:13 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +09:25:13 [ 49] [ 3] [418] +09:25:13 [ 52] [ 16] [8211D832CE2D86DF] +09:25:13 ============================================================================ +09:25:13 + + +waiting on router queue for slot.... +09:25:13 Sending to : +09:25:13 ============================================================================ +09:25:13 ============================================================================ +09:25:13 Slot Id : <449> +09:25:13 Transaction Type : REQUEST +09:25:13 Received From : +09:25:13 ============================================================================ +09:25:13 FNo. Len. Field Value +09:25:13 ============================================================================ +09:25:13 [ 1] [ 4] [0200] +09:25:13 [ 2] [ 16] [6688990107221705] +09:25:13 [ 3] [ 6] [301000] +09:25:13 [ 4] [ 12] [000000000000] +09:25:13 [ 7] [ 10] [0320092509] +09:25:13 [ 11] [ 6] [698180] +09:25:13 [ 12] [ 6] [092509] +09:25:13 [ 13] [ 4] [0320] +09:25:13 [ 15] [ 4] [0320] +09:25:13 [ 18] [ 4] [6011] +09:25:13 [ 22] [ 3] [900] +09:25:13 [ 25] [ 2] [02] +09:25:13 [ 28] [ 9] [D00000000] +09:25:13 [ 32] [ 6] [621354] +09:25:13 [ 35] [ 37] [6688990107221705=44021231170526900000] +09:25:13 [ 37] [ 12] [507905108519] +09:25:13 [ 41] [ 8] [20001300] +09:25:13 [ 42] [ 15] [NATIVE ] +09:25:13 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +09:25:13 [ 49] [ 3] [418] +09:25:13 [ 52] [ 16] [6F0233241766AB26] +09:25:13 ============================================================================ +09:25:13 + + +waiting on router queue for slot.... +09:25:13 Sending to : <4> +09:25:13 ============================================================================ +09:25:14 ============================================================================ +09:25:14 Slot Id : <449> +09:25:14 Transaction Type : RESPONSE +09:25:14 Received From : +09:25:14 ============================================================================ +09:25:14 FNo. Len. Field Value +09:25:14 ============================================================================ +09:25:14 [ 1] [ 4] [0210] +09:25:14 [ 2] [ 16] [6688990107221705] +09:25:14 [ 3] [ 6] [301000] +09:25:14 [ 4] [ 12] [000000000000] +09:25:14 [ 11] [ 6] [698180] +09:25:14 [ 12] [ 6] [092509] +09:25:14 [ 15] [ 4] [0320] +09:25:14 [ 18] [ 4] [6011] +09:25:14 [ 32] [ 6] [621354] +09:25:14 [ 35] [ 37] [6688990107221705=44021231170526900000] +09:25:14 [ 37] [ 12] [507905108519] +09:25:14 [ 38] [ 6] [984498] +09:25:14 [ 39] [ 2] [00] +09:25:14 [ 41] [ 8] [20001300] +09:25:14 [ 49] [ 3] [418] +09:25:14 [ 54] [ 20] [1002418C000094039604] +09:25:14 ============================================================================ +09:25:14 Sending to : +09:25:14 ============================================================================ +09:25:14 + + +waiting on router queue for slot.... +09:25:16 ============================================================================ +09:25:16 Slot Id : <449> +09:25:16 Transaction Type : RESPONSE +09:25:16 Received From : +09:25:16 ============================================================================ +09:25:16 FNo. Len. Field Value +09:25:16 ============================================================================ +09:25:16 [ 1] [ 4] [0210] +09:25:16 [ 2] [ 16] [6688990107221705] +09:25:16 [ 3] [ 6] [301000] +09:25:16 [ 4] [ 12] [000000000000] +09:25:16 [ 11] [ 6] [698180] +09:25:16 [ 12] [ 6] [092509] +09:25:16 [ 15] [ 4] [0320] +09:25:16 [ 18] [ 4] [6011] +09:25:16 [ 32] [ 6] [621354] +09:25:16 [ 35] [ 37] [6688990107221705=44021231170526900000] +09:25:16 [ 37] [ 12] [507905108519] +09:25:16 [ 38] [ 6] [984498] +09:25:16 [ 39] [ 2] [00] +09:25:16 [ 41] [ 8] [20001300] +09:25:16 [ 49] [ 3] [418] +09:25:16 [ 54] [ 20] [1002418C000094039604] +09:25:16 ============================================================================ +09:25:16 Calculate Source COMM Id = 0 +09:25:16 ============================================================================ +09:25:16 + + +waiting on router queue for slot.... +09:25:24 ============================================================================ +09:25:24 Slot Id : <440> +09:25:24 Transaction Type : REQUEST +09:25:24 Received From : +09:25:24 ============================================================================ +09:25:24 FNo. Len. Field Value +09:25:24 ============================================================================ +09:25:24 [ 1] [ 4] [0800] +09:25:24 [ 7] [ 10] [0320022431] +09:25:24 [ 11] [ 6] [155626] +09:25:24 [ 70] [ 3] [301] +09:25:24 ============================================================================ +09:25:24 + + +waiting on router queue for slot.... +09:25:24 Sending to : +09:25:24 ============================================================================ +09:25:24 ============================================================================ +09:25:24 Slot Id : <440> +09:25:24 Transaction Type : RESPONSE +09:25:24 Received From : +09:25:24 ============================================================================ +09:25:24 FNo. Len. Field Value +09:25:24 ============================================================================ +09:25:24 [ 1] [ 4] [0810] +09:25:24 [ 7] [ 10] [0320022431] +09:25:24 [ 11] [ 6] [155626] +09:25:24 [ 39] [ 2] [00] +09:25:24 [ 70] [ 3] [301] +09:25:24 ============================================================================ +09:25:24 Calculate Source COMM Id = 2 +09:25:24 ============================================================================ +09:25:24 + + +waiting on router queue for slot.... +09:25:39 ============================================================================ +09:25:39 Slot Id : <460> +09:25:39 Transaction Type : REQUEST +09:25:39 Received From : +09:25:39 ============================================================================ +09:25:39 FNo. Len. Field Value +09:25:39 ============================================================================ +09:25:39 [ 1] [ 4] [0800] +09:25:39 [ 7] [ 10] [0320163727] +09:25:39 [ 11] [ 6] [093727] +09:25:39 [ 37] [ 12] [57909093727] +09:25:39 [ 70] [ 3] [301] +09:25:39 ============================================================================ +09:25:39 + + +waiting on router queue for slot.... +09:25:39 Sending to : +09:25:39 ============================================================================ +09:25:39 ============================================================================ +09:25:39 Slot Id : <460> +09:25:39 Transaction Type : RESPONSE +09:25:39 Received From : +09:25:39 ============================================================================ +09:25:39 FNo. Len. Field Value +09:25:39 ============================================================================ +09:25:39 [ 1] [ 4] [0810] +09:25:39 [ 7] [ 10] [0320163727] +09:25:39 [ 11] [ 6] [093727] +09:25:39 [ 37] [ 12] [579090937270] +09:25:39 [ 39] [ 2] [00] +09:25:39 [ 70] [ 3] [810] +09:25:39 ============================================================================ +09:25:39 Calculate Source COMM Id = 6 +09:25:39 ============================================================================ +09:25:39 + + +waiting on router queue for slot.... +09:25:41 ============================================================================ +09:25:41 Slot Id : <432> +09:25:41 Transaction Type : REQUEST +09:25:41 Received From : +09:25:41 ============================================================================ +09:25:41 FNo. Len. Field Value +09:25:41 ============================================================================ +09:25:41 [ 1] [ 4] [0800] +09:25:41 [ 7] [ 10] [0320022448] +09:25:41 [ 11] [ 6] [155627] +09:25:41 [ 70] [ 3] [301] +09:25:41 ============================================================================ +09:25:41 + + +waiting on router queue for slot.... +09:25:41 Sending to : +09:25:41 ============================================================================ +09:25:41 ============================================================================ +09:25:41 Slot Id : <432> +09:25:41 Transaction Type : RESPONSE +09:25:41 Received From : +09:25:41 ============================================================================ +09:25:41 FNo. Len. Field Value +09:25:41 ============================================================================ +09:25:41 [ 1] [ 4] [0810] +09:25:41 [ 7] [ 10] [0320022448] +09:25:41 [ 11] [ 6] [155627] +09:25:41 [ 39] [ 2] [00] +09:25:41 [ 70] [ 3] [301] +09:25:41 ============================================================================ +09:25:41 Calculate Source COMM Id = 2 +09:25:41 ============================================================================ +09:25:41 + + +waiting on router queue for slot.... +09:25:43 ============================================================================ +09:25:43 Slot Id : <482> +09:25:43 Transaction Type : REQUEST +09:25:43 Received From : +09:25:43 ============================================================================ +09:25:43 FNo. Len. Field Value +09:25:43 ============================================================================ +09:25:43 [ 1] [ 4] [0200] +09:25:43 [ 2] [ 16] [6688990102710306] +09:25:43 [ 3] [ 6] [010000] +09:25:43 [ 4] [ 12] [000040000000] +09:25:43 [ 7] [ 10] [0320092539] +09:25:43 [ 11] [ 6] [698302] +09:25:43 [ 12] [ 6] [092539] +09:25:43 [ 13] [ 4] [0320] +09:25:43 [ 15] [ 4] [0320] +09:25:43 [ 18] [ 4] [6011] +09:25:43 [ 22] [ 3] [900] +09:25:43 [ 25] [ 2] [02] +09:25:43 [ 28] [ 9] [D00002000] +09:25:43 [ 32] [ 6] [621354] +09:25:43 [ 35] [ 37] [6688990102710306=42101231030679200000] +09:25:43 [ 37] [ 12] [507904706907] +09:25:43 [ 41] [ 8] [18000900] +09:25:43 [ 42] [ 15] [NATIVE ] +09:25:43 [ 43] [ 40] [Bounneau District Bounneua LAO] +09:25:43 [ 49] [ 3] [418] +09:25:43 [ 52] [ 16] [99A206F2B2BB9B0A] +09:25:43 ============================================================================ +09:25:43 + + +waiting on router queue for slot.... +09:25:43 Sending to : +09:25:43 ============================================================================ +09:25:43 Sending to : +09:25:43 ============================================================================ +09:25:43 ============================================================================ +09:25:43 Slot Id : <482> +09:25:43 Transaction Type : REQUEST +09:25:43 Received From : +09:25:43 ============================================================================ +09:25:43 FNo. Len. Field Value +09:25:43 ============================================================================ +09:25:43 [ 1] [ 4] [0200] +09:25:43 [ 2] [ 16] [6688990102710306] +09:25:43 [ 3] [ 6] [010000] +09:25:43 [ 4] [ 12] [000040000000] +09:25:43 [ 7] [ 10] [0320092539] +09:25:43 [ 11] [ 6] [698302] +09:25:43 [ 12] [ 6] [092539] +09:25:43 [ 13] [ 4] [0320] +09:25:43 [ 15] [ 4] [0320] +09:25:43 [ 18] [ 4] [6011] +09:25:43 [ 22] [ 3] [900] +09:25:43 [ 25] [ 2] [02] +09:25:43 [ 28] [ 9] [D00002000] +09:25:43 [ 32] [ 6] [621354] +09:25:43 [ 35] [ 37] [6688990102710306=42101231030679200000] +09:25:43 [ 37] [ 12] [507904706907] +09:25:43 [ 41] [ 8] [18000900] +09:25:43 [ 42] [ 15] [NATIVE ] +09:25:43 [ 43] [ 40] [Bounneau District Bounneua LAO] +09:25:43 [ 49] [ 3] [418] +09:25:43 [ 52] [ 16] [99A206F2B2BB9B0A] +09:25:43 ============================================================================ +09:25:43 + + +waiting on router queue for slot.... +09:25:43 Sending to : +09:25:43 ============================================================================ +09:25:43 ============================================================================ +09:25:43 Slot Id : <482> +09:25:43 Transaction Type : REQUEST +09:25:43 Received From : +09:25:43 ============================================================================ +09:25:43 FNo. Len. Field Value +09:25:43 ============================================================================ +09:25:43 [ 1] [ 4] [0200] +09:25:43 [ 2] [ 16] [6688990102710306] +09:25:43 [ 3] [ 6] [010000] +09:25:43 [ 4] [ 12] [000040000000] +09:25:43 [ 7] [ 10] [0320092539] +09:25:43 [ 11] [ 6] [698302] +09:25:43 [ 12] [ 6] [092539] +09:25:43 [ 13] [ 4] [0320] +09:25:43 [ 15] [ 4] [0320] +09:25:43 [ 18] [ 4] [6011] +09:25:43 [ 22] [ 3] [900] +09:25:43 [ 25] [ 2] [02] +09:25:43 [ 28] [ 9] [D00002000] +09:25:43 [ 32] [ 6] [621354] +09:25:43 [ 35] [ 37] [6688990102710306=42101231030679200000] +09:25:43 [ 37] [ 12] [507904706907] +09:25:43 [ 41] [ 8] [18000900] +09:25:43 [ 42] [ 15] [NATIVE ] +09:25:43 [ 43] [ 40] [Bounneau District Bounneua LAO] +09:25:43 [ 49] [ 3] [418] +09:25:43 [ 52] [ 16] [5E6786A228CDFC72] +09:25:43 ============================================================================ +09:25:43 + + +waiting on router queue for slot.... +09:25:43 Sending to : <4> +09:25:43 ============================================================================ +09:25:44 ============================================================================ +09:25:44 Slot Id : <482> +09:25:44 Transaction Type : RESPONSE +09:25:44 Received From : +09:25:44 ============================================================================ +09:25:44 FNo. Len. Field Value +09:25:44 ============================================================================ +09:25:44 [ 1] [ 4] [0210] +09:25:44 [ 2] [ 16] [6688990102710306] +09:25:44 [ 3] [ 6] [010000] +09:25:44 [ 4] [ 12] [000040000000] +09:25:44 [ 11] [ 6] [698302] +09:25:44 [ 12] [ 6] [092539] +09:25:44 [ 15] [ 4] [0320] +09:25:44 [ 18] [ 4] [6011] +09:25:44 [ 32] [ 6] [621354] +09:25:44 [ 35] [ 37] [6688990102710306=42101231030679200000] +09:25:44 [ 37] [ 12] [507904706907] +09:25:44 [ 38] [ 6] [599659] +09:25:44 [ 39] [ 2] [00] +09:25:44 [ 41] [ 8] [18000900] +09:25:44 [ 49] [ 3] [418] +09:25:44 [ 54] [ 20] [0002418C000002403961] +09:25:44 ============================================================================ +09:25:44 Sending to : +09:25:44 ============================================================================ +09:25:44 + + +waiting on router queue for slot.... +09:25:46 ============================================================================ +09:25:46 Slot Id : <482> +09:25:46 Transaction Type : RESPONSE +09:25:46 Received From : +09:25:46 ============================================================================ +09:25:46 FNo. Len. Field Value +09:25:46 ============================================================================ +09:25:46 [ 1] [ 4] [0210] +09:25:46 [ 2] [ 16] [6688990102710306] +09:25:46 [ 3] [ 6] [010000] +09:25:46 [ 4] [ 12] [000040000000] +09:25:46 [ 11] [ 6] [698302] +09:25:46 [ 12] [ 6] [092539] +09:25:46 [ 15] [ 4] [0320] +09:25:46 [ 18] [ 4] [6011] +09:25:46 [ 32] [ 6] [621354] +09:25:46 [ 35] [ 37] [6688990102710306=42101231030679200000] +09:25:46 [ 37] [ 12] [507904706907] +09:25:46 [ 38] [ 6] [599659] +09:25:46 [ 39] [ 2] [00] +09:25:46 [ 41] [ 8] [18000900] +09:25:46 [ 49] [ 3] [418] +09:25:46 [ 54] [ 20] [0002418C000002403961] +09:25:46 ============================================================================ +09:25:46 Calculate Source COMM Id = 0 +09:25:46 ============================================================================ +09:25:46 + + +waiting on router queue for slot.... +09:25:50 ============================================================================ +09:25:50 Slot Id : <495> +09:25:50 Transaction Type : REQUEST +09:25:50 Received From : +09:25:50 ============================================================================ +09:25:50 FNo. Len. Field Value +09:25:50 ============================================================================ +09:25:50 [ 1] [ 4] [0800] +09:25:50 [ 2] [ 5] [02531] +09:25:50 [ 3] [ 6] [579098] +09:25:50 [ 7] [ 10] [0320022550] +09:25:50 [ 11] [ 6] [806959] +09:25:50 [ 15] [ 10] [0320022550] +09:25:50 [ 37] [ 11] [57909806959] +09:25:50 [ 70] [ 3] [001] +09:25:50 ============================================================================ +09:25:50 + + +waiting on router queue for slot.... +09:25:51 ============================================================================ +09:25:51 Slot Id : <495> +09:25:51 Transaction Type : RESPONSE +09:25:51 Received From : +09:25:51 ============================================================================ +09:25:51 FNo. Len. Field Value +09:25:51 ============================================================================ +09:25:51 [ 1] [ 4] [0810] +09:25:51 [ 7] [ 10] [0320022550] +09:25:51 [ 11] [ 6] [806959] +09:25:51 [ 15] [ 4] [0320] +09:25:51 [ 37] [ 12] [57909806959] +09:25:51 [ 39] [ 2] [00] +09:25:51 [ 70] [ 3] [001] +09:25:51 ============================================================================ +09:25:51 Sending to : +09:25:51 ============================================================================ +09:25:51 + + +waiting on router queue for slot.... +09:25:53 ============================================================================ +09:25:53 Slot Id : <488> +09:25:53 Transaction Type : REQUEST +09:25:53 Received From : +09:25:53 ============================================================================ +09:25:53 FNo. Len. Field Value +09:25:53 ============================================================================ +09:25:53 [ 1] [ 4] [0200] +09:25:53 [ 2] [ 16] [6688990102858402] +09:25:53 [ 3] [ 6] [010000] +09:25:53 [ 4] [ 12] [000100000000] +09:25:53 [ 7] [ 10] [0320093341] +09:25:53 [ 11] [ 6] [021115] +09:25:53 [ 12] [ 6] [093341] +09:25:53 [ 13] [ 4] [0320] +09:25:53 [ 14] [ 4] [4210] +09:25:53 [ 15] [ 4] [0320] +09:25:53 [ 18] [ 4] [6011] +09:25:53 [ 22] [ 3] [900] +09:25:53 [ 25] [ 2] [02] +09:25:53 [ 28] [ 9] [D00002000] +09:25:53 [ 32] [ 6] [220699] +09:25:53 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:25:53 [ 37] [ 12] [507900263081] +09:25:53 [ 41] [ 8] [01001400] +09:25:53 [ 42] [ 15] [APTRA ] +09:25:53 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:25:53 [ 49] [ 3] [418] +09:25:53 [ 52] [ 16] [E992191A385189EE] +09:25:53 ============================================================================ +09:25:53 + + +waiting on router queue for slot.... +09:25:53 Sending to : +09:25:53 ============================================================================ +09:25:53 Sending to : +09:25:53 ============================================================================ +09:25:54 ============================================================================ +09:25:54 Slot Id : <488> +09:25:54 Transaction Type : REQUEST +09:25:54 Received From : +09:25:54 ============================================================================ +09:25:54 FNo. Len. Field Value +09:25:54 ============================================================================ +09:25:54 [ 1] [ 4] [0200] +09:25:54 [ 2] [ 16] [6688990102858402] +09:25:54 [ 3] [ 6] [010000] +09:25:54 [ 4] [ 12] [000100000000] +09:25:54 [ 7] [ 10] [0320093341] +09:25:54 [ 11] [ 6] [021115] +09:25:54 [ 12] [ 6] [093341] +09:25:54 [ 13] [ 4] [0320] +09:25:54 [ 14] [ 4] [4210] +09:25:54 [ 15] [ 4] [0320] +09:25:54 [ 18] [ 4] [6011] +09:25:54 [ 22] [ 3] [900] +09:25:54 [ 25] [ 2] [02] +09:25:54 [ 28] [ 9] [D00002000] +09:25:54 [ 32] [ 6] [220699] +09:25:54 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:25:54 [ 37] [ 12] [507900263081] +09:25:54 [ 41] [ 8] [01001400] +09:25:54 [ 42] [ 15] [APTRA ] +09:25:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:25:54 [ 49] [ 3] [418] +09:25:54 [ 52] [ 16] [E992191A385189EE] +09:25:54 ============================================================================ +09:25:54 + + +waiting on router queue for slot.... +09:25:54 Sending to : +09:25:54 ============================================================================ +09:25:54 ============================================================================ +09:25:54 Slot Id : <488> +09:25:54 Transaction Type : REQUEST +09:25:54 Received From : +09:25:54 ============================================================================ +09:25:54 FNo. Len. Field Value +09:25:54 ============================================================================ +09:25:54 [ 1] [ 4] [0200] +09:25:54 [ 2] [ 16] [6688990102858402] +09:25:54 [ 3] [ 6] [010000] +09:25:54 [ 4] [ 12] [000100000000] +09:25:54 [ 7] [ 10] [0320093341] +09:25:54 [ 11] [ 6] [021115] +09:25:54 [ 12] [ 6] [093341] +09:25:54 [ 13] [ 4] [0320] +09:25:54 [ 14] [ 4] [4210] +09:25:54 [ 15] [ 4] [0320] +09:25:54 [ 18] [ 4] [6011] +09:25:54 [ 22] [ 3] [900] +09:25:54 [ 25] [ 2] [02] +09:25:54 [ 28] [ 9] [D00002000] +09:25:54 [ 32] [ 6] [220699] +09:25:54 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:25:54 [ 37] [ 12] [507900263081] +09:25:54 [ 41] [ 8] [01001400] +09:25:54 [ 42] [ 15] [APTRA ] +09:25:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:25:54 [ 49] [ 3] [418] +09:25:54 [ 52] [ 16] [C197FA761A3DB98B] +09:25:54 ============================================================================ +09:25:54 + + +waiting on router queue for slot.... +09:25:54 Sending to : <0> +09:25:54 ============================================================================ +09:25:54 ============================================================================ +09:25:54 Slot Id : <470> +09:25:54 Transaction Type : REQUEST +09:25:54 Received From : +09:25:54 ============================================================================ +09:25:54 FNo. Len. Field Value +09:25:54 ============================================================================ +09:25:54 [ 1] [ 4] [0200] +09:25:54 [ 2] [ 16] [6688990107221705] +09:25:54 [ 3] [ 6] [011000] +09:25:54 [ 4] [ 12] [000090000000] +09:25:54 [ 7] [ 10] [0320092550] +09:25:54 [ 11] [ 6] [698353] +09:25:54 [ 12] [ 6] [092550] +09:25:54 [ 13] [ 4] [0320] +09:25:54 [ 15] [ 4] [0320] +09:25:54 [ 18] [ 4] [6011] +09:25:54 [ 22] [ 3] [900] +09:25:54 [ 25] [ 2] [02] +09:25:54 [ 28] [ 9] [D00002000] +09:25:54 [ 32] [ 6] [621354] +09:25:54 [ 35] [ 37] [6688990107221705=44021231170526900000] +09:25:54 [ 37] [ 12] [507905108521] +09:25:54 [ 41] [ 8] [20001300] +09:25:54 [ 42] [ 15] [NATIVE ] +09:25:54 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +09:25:54 [ 49] [ 3] [418] +09:25:54 [ 52] [ 16] [8211D832CE2D86DF] +09:25:54 ============================================================================ +09:25:54 + + +waiting on router queue for slot.... +09:25:54 Sending to : +09:25:54 ============================================================================ +09:25:54 Sending to : +09:25:54 ============================================================================ +09:25:54 ============================================================================ +09:25:54 Slot Id : <488> +09:25:54 Transaction Type : RESPONSE +09:25:54 Received From : +09:25:54 ============================================================================ +09:25:54 FNo. Len. Field Value +09:25:54 ============================================================================ +09:25:54 [ 1] [ 4] [0210] +09:25:54 [ 2] [ 16] [6688990102858402] +09:25:54 [ 3] [ 6] [010000] +09:25:54 [ 4] [ 12] [000100000000] +09:25:54 [ 7] [ 10] [0320093341] +09:25:54 [ 11] [ 6] [021115] +09:25:54 [ 12] [ 6] [093341] +09:25:54 [ 13] [ 4] [0320] +09:25:54 [ 15] [ 4] [0320] +09:25:54 [ 18] [ 4] [6011] +09:25:54 [ 22] [ 3] [900] +09:25:54 [ 32] [ 6] [220699] +09:25:54 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:25:54 [ 37] [ 12] [507900263081] +09:25:54 [ 39] [ 2] [14] +09:25:54 [ 41] [ 8] [01001400] +09:25:54 [ 49] [ 3] [418] +09:25:54 ============================================================================ +09:25:54 Sending to : +09:25:54 ============================================================================ +09:25:54 + + +waiting on router queue for slot.... +09:25:54 ============================================================================ +09:25:54 Slot Id : <470> +09:25:54 Transaction Type : REQUEST +09:25:54 Received From : +09:25:54 ============================================================================ +09:25:54 FNo. Len. Field Value +09:25:54 ============================================================================ +09:25:54 [ 1] [ 4] [0200] +09:25:54 [ 2] [ 16] [6688990107221705] +09:25:54 [ 3] [ 6] [011000] +09:25:54 [ 4] [ 12] [000090000000] +09:25:54 [ 7] [ 10] [0320092550] +09:25:54 [ 11] [ 6] [698353] +09:25:54 [ 12] [ 6] [092550] +09:25:54 [ 13] [ 4] [0320] +09:25:54 [ 15] [ 4] [0320] +09:25:54 [ 18] [ 4] [6011] +09:25:54 [ 22] [ 3] [900] +09:25:54 [ 25] [ 2] [02] +09:25:54 [ 28] [ 9] [D00002000] +09:25:54 [ 32] [ 6] [621354] +09:25:54 [ 35] [ 37] [6688990107221705=44021231170526900000] +09:25:54 [ 37] [ 12] [507905108521] +09:25:54 [ 41] [ 8] [20001300] +09:25:54 [ 42] [ 15] [NATIVE ] +09:25:54 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +09:25:54 [ 49] [ 3] [418] +09:25:54 [ 52] [ 16] [8211D832CE2D86DF] +09:25:54 ============================================================================ +09:25:54 + + +waiting on router queue for slot.... +09:25:54 Sending to : +09:25:54 ============================================================================ +09:25:54 ============================================================================ +09:25:54 Slot Id : <470> +09:25:54 Transaction Type : REQUEST +09:25:54 Received From : +09:25:54 ============================================================================ +09:25:54 FNo. Len. Field Value +09:25:54 ============================================================================ +09:25:54 [ 1] [ 4] [0200] +09:25:54 [ 2] [ 16] [6688990107221705] +09:25:54 [ 3] [ 6] [011000] +09:25:54 [ 4] [ 12] [000090000000] +09:25:54 [ 7] [ 10] [0320092550] +09:25:54 [ 11] [ 6] [698353] +09:25:54 [ 12] [ 6] [092550] +09:25:54 [ 13] [ 4] [0320] +09:25:54 [ 15] [ 4] [0320] +09:25:54 [ 18] [ 4] [6011] +09:25:54 [ 22] [ 3] [900] +09:25:54 [ 25] [ 2] [02] +09:25:54 [ 28] [ 9] [D00002000] +09:25:54 [ 32] [ 6] [621354] +09:25:54 [ 35] [ 37] [6688990107221705=44021231170526900000] +09:25:54 [ 37] [ 12] [507905108521] +09:25:54 [ 41] [ 8] [20001300] +09:25:54 [ 42] [ 15] [NATIVE ] +09:25:54 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +09:25:54 [ 49] [ 3] [418] +09:25:54 [ 52] [ 16] [6F0233241766AB26] +09:25:54 ============================================================================ +09:25:54 + + +waiting on router queue for slot.... +09:25:54 Sending to : <4> +09:25:54 ============================================================================ +09:25:55 ============================================================================ +09:25:55 Slot Id : <488> +09:25:55 Transaction Type : RESPONSE +09:25:55 Received From : +09:25:55 ============================================================================ +09:25:55 FNo. Len. Field Value +09:25:55 ============================================================================ +09:25:55 [ 1] [ 4] [0210] +09:25:55 [ 2] [ 16] [6688990102858402] +09:25:55 [ 3] [ 6] [010000] +09:25:55 [ 4] [ 12] [000100000000] +09:25:55 [ 7] [ 10] [0320093341] +09:25:55 [ 11] [ 6] [021115] +09:25:55 [ 12] [ 6] [093341] +09:25:55 [ 13] [ 4] [0320] +09:25:55 [ 15] [ 4] [0320] +09:25:55 [ 18] [ 4] [6011] +09:25:55 [ 22] [ 3] [900] +09:25:55 [ 32] [ 6] [220699] +09:25:55 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:25:55 [ 37] [ 12] [507900263081] +09:25:55 [ 39] [ 2] [14] +09:25:55 [ 41] [ 8] [01001400] +09:25:55 [ 49] [ 3] [418] +09:25:55 ============================================================================ +09:25:55 Calculate Source COMM Id = 1 +09:25:55 ============================================================================ +09:25:55 + + +waiting on router queue for slot.... +09:25:56 ============================================================================ +09:25:56 Slot Id : <453> +09:25:56 Transaction Type : REQUEST +09:25:56 Received From : +09:25:56 ============================================================================ +09:25:56 FNo. Len. Field Value +09:25:56 ============================================================================ +09:25:56 [ 1] [ 4] [0800] +09:25:56 [ 7] [ 10] [0320022504] +09:25:56 [ 11] [ 6] [155628] +09:25:56 [ 70] [ 3] [301] +09:25:56 ============================================================================ +09:25:56 + + +waiting on router queue for slot.... +09:25:56 Sending to : +09:25:56 ============================================================================ +09:25:56 ============================================================================ +09:25:56 Slot Id : <453> +09:25:56 Transaction Type : RESPONSE +09:25:56 Received From : +09:25:56 ============================================================================ +09:25:56 FNo. Len. Field Value +09:25:56 ============================================================================ +09:25:56 [ 1] [ 4] [0810] +09:25:56 [ 7] [ 10] [0320022504] +09:25:56 [ 11] [ 6] [155628] +09:25:56 [ 39] [ 2] [00] +09:25:56 [ 70] [ 3] [301] +09:25:56 ============================================================================ +09:25:56 Calculate Source COMM Id = 2 +09:25:56 ============================================================================ +09:25:56 + + +waiting on router queue for slot.... +09:25:56 ============================================================================ +09:25:56 Slot Id : <470> +09:25:56 Transaction Type : RESPONSE +09:25:56 Received From : +09:25:56 ============================================================================ +09:25:56 FNo. Len. Field Value +09:25:56 ============================================================================ +09:25:56 [ 1] [ 4] [0210] +09:25:56 [ 2] [ 16] [6688990107221705] +09:25:56 [ 3] [ 6] [011000] +09:25:56 [ 4] [ 12] [000090000000] +09:25:56 [ 11] [ 6] [698353] +09:25:56 [ 12] [ 6] [092550] +09:25:56 [ 15] [ 4] [0320] +09:25:56 [ 18] [ 4] [6011] +09:25:56 [ 32] [ 6] [621354] +09:25:56 [ 35] [ 37] [6688990107221705=44021231170526900000] +09:25:56 [ 37] [ 12] [507905108521] +09:25:56 [ 38] [ 6] [886632] +09:25:56 [ 39] [ 2] [00] +09:25:56 [ 41] [ 8] [20001300] +09:25:56 [ 49] [ 3] [418] +09:25:56 [ 54] [ 20] [1002418C000003839604] +09:25:56 ============================================================================ +09:25:56 Sending to : +09:25:56 ============================================================================ +09:25:56 + + +waiting on router queue for slot.... +09:25:58 ============================================================================ +09:25:58 Slot Id : <490> +09:25:58 Transaction Type : REQUEST +09:25:58 Received From : +09:25:58 ============================================================================ +09:25:58 FNo. Len. Field Value +09:25:58 ============================================================================ +09:25:58 [ 1] [ 4] [0200] +09:25:58 [ 2] [ 16] [2206990000086744] +09:25:58 [ 3] [ 6] [010000] +09:25:58 [ 4] [ 12] [000100000000] +09:25:58 [ 7] [ 10] [0320092349] +09:25:58 [ 11] [ 6] [935533] +09:25:58 [ 12] [ 6] [092349] +09:25:58 [ 13] [ 4] [0320] +09:25:58 [ 15] [ 4] [0320] +09:25:58 [ 18] [ 4] [6011] +09:25:58 [ 19] [ 3] [418] +09:25:58 [ 22] [ 3] [021] +09:25:58 [ 25] [ 2] [01] +09:25:58 [ 28] [ 9] [D00002000] +09:25:58 [ 32] [ 6] [668899] +09:25:58 [ 35] [ 32] [2206990000086744=970912613832770] +09:25:58 [ 37] [ 12] [507902217462] +09:25:58 [ 41] [ 8] [03008004] +09:25:58 [ 42] [ 15] [APT ] +09:25:58 [ 43] [ 40] [ SAMNEAU MARKET SAMNEAU ] +09:25:58 [ 49] [ 3] [418] +09:25:58 [ 52] [ 16] [550F78A0690702C9] +09:25:58 ============================================================================ +09:25:58 + + +waiting on router queue for slot.... +09:25:58 Sending to : +09:25:58 ============================================================================ +09:25:58 Sending to : +09:25:58 ============================================================================ +09:25:58 ============================================================================ +09:25:58 Slot Id : <470> +09:25:58 Transaction Type : RESPONSE +09:25:58 Received From : +09:25:58 ============================================================================ +09:25:58 FNo. Len. Field Value +09:25:58 ============================================================================ +09:25:58 [ 1] [ 4] [0210] +09:25:58 [ 2] [ 16] [6688990107221705] +09:25:58 [ 3] [ 6] [011000] +09:25:58 [ 4] [ 12] [000090000000] +09:25:58 [ 11] [ 6] [698353] +09:25:58 [ 12] [ 6] [092550] +09:25:58 [ 15] [ 4] [0320] +09:25:58 [ 18] [ 4] [6011] +09:25:58 [ 32] [ 6] [621354] +09:25:58 [ 35] [ 37] [6688990107221705=44021231170526900000] +09:25:58 [ 37] [ 12] [507905108521] +09:25:58 [ 38] [ 6] [886632] +09:25:58 [ 39] [ 2] [00] +09:25:58 [ 41] [ 8] [20001300] +09:25:58 [ 49] [ 3] [418] +09:25:58 [ 54] [ 20] [1002418C000003839604] +09:25:58 ============================================================================ +09:25:58 Calculate Source COMM Id = 0 +09:25:58 ============================================================================ +09:25:58 + + +waiting on router queue for slot.... +09:25:58 ============================================================================ +09:25:58 Slot Id : <490> +09:25:58 Transaction Type : REQUEST +09:25:58 Received From : +09:25:58 ============================================================================ +09:25:58 FNo. Len. Field Value +09:25:58 ============================================================================ +09:25:58 [ 1] [ 4] [0200] +09:25:58 [ 2] [ 16] [2206990000086744] +09:25:58 [ 3] [ 6] [010000] +09:25:58 [ 4] [ 12] [000100000000] +09:25:58 [ 7] [ 10] [0320092349] +09:25:58 [ 11] [ 6] [935533] +09:25:58 [ 12] [ 6] [092349] +09:25:58 [ 13] [ 4] [0320] +09:25:58 [ 15] [ 4] [0320] +09:25:58 [ 18] [ 4] [6011] +09:25:58 [ 19] [ 3] [418] +09:25:58 [ 22] [ 3] [021] +09:25:58 [ 25] [ 2] [01] +09:25:58 [ 28] [ 9] [D00002000] +09:25:58 [ 32] [ 6] [668899] +09:25:58 [ 35] [ 32] [2206990000086744=970912613832770] +09:25:58 [ 37] [ 12] [507902217462] +09:25:58 [ 41] [ 8] [03008004] +09:25:58 [ 42] [ 15] [APT ] +09:25:58 [ 43] [ 40] [ SAMNEAU MARKET SAMNEAU ] +09:25:58 [ 49] [ 3] [418] +09:25:58 [ 52] [ 16] [550F78A0690702C9] +09:25:58 ============================================================================ +09:25:58 + + +waiting on router queue for slot.... +09:25:58 Sending to : +09:25:58 ============================================================================ +09:25:58 ============================================================================ +09:25:58 Slot Id : <490> +09:25:58 Transaction Type : REQUEST +09:25:58 Received From : +09:25:58 ============================================================================ +09:25:58 FNo. Len. Field Value +09:25:58 ============================================================================ +09:25:58 [ 1] [ 4] [0200] +09:25:58 [ 2] [ 16] [2206990000086744] +09:25:58 [ 3] [ 6] [010000] +09:25:58 [ 4] [ 12] [000100000000] +09:25:58 [ 7] [ 10] [0320092349] +09:25:58 [ 11] [ 6] [935533] +09:25:58 [ 12] [ 6] [092349] +09:25:58 [ 13] [ 4] [0320] +09:25:58 [ 15] [ 4] [0320] +09:25:58 [ 18] [ 4] [6011] +09:25:58 [ 19] [ 3] [418] +09:25:58 [ 22] [ 3] [021] +09:25:58 [ 25] [ 2] [01] +09:25:58 [ 28] [ 9] [D00002000] +09:25:58 [ 32] [ 6] [668899] +09:25:58 [ 35] [ 32] [2206990000086744=970912613832770] +09:25:58 [ 37] [ 12] [507902217462] +09:25:58 [ 41] [ 8] [03008004] +09:25:58 [ 42] [ 15] [APT ] +09:25:58 [ 43] [ 40] [ SAMNEAU MARKET SAMNEAU ] +09:25:58 [ 49] [ 3] [418] +09:25:58 [ 52] [ 16] [EF5F243B5D7F6C02] +09:25:58 ============================================================================ +09:25:58 + + +waiting on router queue for slot.... +09:25:58 Sending to : <1> +09:25:58 ============================================================================ +09:26:01 ============================================================================ +09:26:01 Slot Id : <490> +09:26:01 Transaction Type : RESPONSE +09:26:01 Received From : +09:26:01 ============================================================================ +09:26:01 FNo. Len. Field Value +09:26:01 ============================================================================ +09:26:01 [ 1] [ 4] [0210] +09:26:01 [ 2] [ 16] [2206990000086744] +09:26:01 [ 3] [ 6] [010000] +09:26:01 [ 4] [ 12] [000100000000] +09:26:01 [ 7] [ 10] [0320092349] +09:26:01 [ 11] [ 6] [935533] +09:26:01 [ 12] [ 6] [092349] +09:26:01 [ 13] [ 4] [0320] +09:26:01 [ 15] [ 4] [0320] +09:26:01 [ 18] [ 4] [6011] +09:26:01 [ 32] [ 6] [668899] +09:26:01 [ 35] [ 32] [2206990000086744=970912613832770] +09:26:01 [ 37] [ 12] [507902217462] +09:26:01 [ 38] [ 6] [782088] +09:26:01 [ 39] [ 2] [00] +09:26:01 [ 41] [ 8] [03008004] +09:26:01 [ 49] [ 3] [418] +09:26:01 [ 54] [ 40] [0001418C0003055856000002418C000305585600] +09:26:01 ============================================================================ +09:26:01 Sending to : +09:26:01 ============================================================================ +09:26:01 + + +waiting on router queue for slot.... +09:26:03 ============================================================================ +09:26:03 Slot Id : <490> +09:26:03 Transaction Type : RESPONSE +09:26:03 Received From : +09:26:03 ============================================================================ +09:26:03 FNo. Len. Field Value +09:26:03 ============================================================================ +09:26:03 [ 1] [ 4] [0210] +09:26:03 [ 2] [ 16] [2206990000086744] +09:26:03 [ 3] [ 6] [010000] +09:26:03 [ 4] [ 12] [000100000000] +09:26:03 [ 7] [ 10] [0320092349] +09:26:03 [ 11] [ 6] [935533] +09:26:03 [ 12] [ 6] [092349] +09:26:03 [ 13] [ 4] [0320] +09:26:03 [ 15] [ 4] [0320] +09:26:03 [ 18] [ 4] [6011] +09:26:03 [ 32] [ 6] [668899] +09:26:03 [ 35] [ 32] [2206990000086744=970912613832770] +09:26:03 [ 37] [ 12] [507902217462] +09:26:03 [ 38] [ 6] [782088] +09:26:03 [ 39] [ 2] [00] +09:26:03 [ 41] [ 8] [03008004] +09:26:03 [ 49] [ 3] [418] +09:26:03 [ 54] [ 40] [0001418C0003055856000002418C000305585600] +09:26:03 ============================================================================ +09:26:03 Calculate Source COMM Id = 4 +09:26:03 ============================================================================ +09:26:03 + + +waiting on router queue for slot.... +09:26:07 ============================================================================ +09:26:07 Slot Id : <463> +09:26:07 Transaction Type : REQUEST +09:26:07 Received From : +09:26:07 ============================================================================ +09:26:07 FNo. Len. Field Value +09:26:07 ============================================================================ +09:26:07 [ 1] [ 4] [0200] +09:26:07 [ 2] [ 16] [6213544000765369] +09:26:07 [ 3] [ 6] [010000] +09:26:07 [ 4] [ 12] [000010000000] +09:26:07 [ 7] [ 10] [0320092358] +09:26:07 [ 11] [ 6] [935538] +09:26:07 [ 12] [ 6] [092358] +09:26:07 [ 13] [ 4] [0320] +09:26:07 [ 15] [ 4] [0320] +09:26:07 [ 18] [ 4] [6011] +09:26:07 [ 19] [ 3] [418] +09:26:07 [ 22] [ 3] [021] +09:26:07 [ 25] [ 2] [01] +09:26:07 [ 28] [ 9] [D00002000] +09:26:07 [ 32] [ 6] [668899] +09:26:07 [ 35] [ 32] [6213544000765369=491212016536588] +09:26:07 [ 37] [ 12] [507901963412] +09:26:07 [ 41] [ 8] [03020019] +09:26:07 [ 42] [ 15] [APT ] +09:26:07 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:26:07 [ 49] [ 3] [418] +09:26:07 [ 52] [ 16] [E0B70D4CA628597B] +09:26:07 ============================================================================ +09:26:07 + + +waiting on router queue for slot.... +09:26:07 Sending to : +09:26:07 ============================================================================ +09:26:07 Sending to : +09:26:07 ============================================================================ +09:26:07 ============================================================================ +09:26:07 Slot Id : <484> +09:26:07 Transaction Type : REQUEST +09:26:07 Received From : +09:26:07 ============================================================================ +09:26:07 FNo. Len. Field Value +09:26:07 ============================================================================ +09:26:07 [ 1] [ 4] [0800] +09:26:07 [ 7] [ 10] [0320022514] +09:26:07 [ 11] [ 6] [155629] +09:26:07 [ 70] [ 3] [301] +09:26:07 ============================================================================ +09:26:07 + + +waiting on router queue for slot.... +09:26:07 Sending to : +09:26:07 ============================================================================ +09:26:07 ============================================================================ +09:26:07 Slot Id : <484> +09:26:07 Transaction Type : RESPONSE +09:26:07 Received From : +09:26:07 ============================================================================ +09:26:07 FNo. Len. Field Value +09:26:07 ============================================================================ +09:26:07 [ 1] [ 4] [0810] +09:26:07 [ 7] [ 10] [0320022514] +09:26:07 [ 11] [ 6] [155629] +09:26:07 [ 39] [ 2] [00] +09:26:07 [ 70] [ 3] [301] +09:26:07 ============================================================================ +09:26:07 Calculate Source COMM Id = 2 +09:26:07 ============================================================================ +09:26:07 + + +waiting on router queue for slot.... +09:26:07 ============================================================================ +09:26:07 Slot Id : <463> +09:26:07 Transaction Type : REQUEST +09:26:07 Received From : +09:26:07 ============================================================================ +09:26:07 FNo. Len. Field Value +09:26:07 ============================================================================ +09:26:07 [ 1] [ 4] [0200] +09:26:07 [ 2] [ 16] [6213544000765369] +09:26:07 [ 3] [ 6] [010000] +09:26:07 [ 4] [ 12] [000010000000] +09:26:07 [ 7] [ 10] [0320092358] +09:26:07 [ 11] [ 6] [935538] +09:26:07 [ 12] [ 6] [092358] +09:26:07 [ 13] [ 4] [0320] +09:26:07 [ 15] [ 4] [0320] +09:26:07 [ 18] [ 4] [6011] +09:26:07 [ 19] [ 3] [418] +09:26:07 [ 22] [ 3] [021] +09:26:07 [ 25] [ 2] [01] +09:26:07 [ 28] [ 9] [D00002000] +09:26:07 [ 32] [ 6] [668899] +09:26:07 [ 35] [ 32] [6213544000765369=491212016536588] +09:26:07 [ 37] [ 12] [507901963412] +09:26:07 [ 41] [ 8] [03020019] +09:26:07 [ 42] [ 15] [APT ] +09:26:07 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:26:07 [ 49] [ 3] [418] +09:26:07 [ 52] [ 16] [E0B70D4CA628597B] +09:26:07 ============================================================================ +09:26:07 + + +waiting on router queue for slot.... +09:26:07 Sending to : +09:26:07 ============================================================================ +09:26:07 ============================================================================ +09:26:07 Slot Id : <463> +09:26:07 Transaction Type : REQUEST +09:26:07 Received From : +09:26:07 ============================================================================ +09:26:07 FNo. Len. Field Value +09:26:07 ============================================================================ +09:26:07 [ 1] [ 4] [0200] +09:26:07 [ 2] [ 16] [6213544000765369] +09:26:07 [ 3] [ 6] [010000] +09:26:07 [ 4] [ 12] [000010000000] +09:26:07 [ 7] [ 10] [0320092358] +09:26:07 [ 11] [ 6] [935538] +09:26:07 [ 12] [ 6] [092358] +09:26:07 [ 13] [ 4] [0320] +09:26:07 [ 15] [ 4] [0320] +09:26:07 [ 18] [ 4] [6011] +09:26:07 [ 19] [ 3] [418] +09:26:07 [ 22] [ 3] [021] +09:26:07 [ 25] [ 2] [01] +09:26:07 [ 28] [ 9] [D00002000] +09:26:07 [ 32] [ 6] [668899] +09:26:07 [ 35] [ 32] [6213544000765369=491212016536588] +09:26:07 [ 37] [ 12] [507901963412] +09:26:07 [ 41] [ 8] [03020019] +09:26:07 [ 42] [ 15] [APT ] +09:26:07 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:26:07 [ 49] [ 3] [418] +09:26:07 [ 52] [ 16] [0F1788895BE088DE] +09:26:07 ============================================================================ +09:26:07 + + +waiting on router queue for slot.... +09:26:07 Sending to : <0> +09:26:07 ============================================================================ +09:26:08 ============================================================================ +09:26:08 Slot Id : <463> +09:26:08 Transaction Type : RESPONSE +09:26:08 Received From : +09:26:08 ============================================================================ +09:26:08 FNo. Len. Field Value +09:26:08 ============================================================================ +09:26:08 [ 1] [ 4] [0210] +09:26:08 [ 2] [ 16] [6213544000765369] +09:26:08 [ 3] [ 6] [010000] +09:26:08 [ 4] [ 12] [000010000000] +09:26:08 [ 7] [ 10] [0320092358] +09:26:08 [ 11] [ 6] [935538] +09:26:08 [ 12] [ 6] [092358] +09:26:08 [ 13] [ 4] [0320] +09:26:08 [ 15] [ 4] [0320] +09:26:08 [ 18] [ 4] [6011] +09:26:08 [ 19] [ 3] [418] +09:26:08 [ 32] [ 6] [668899] +09:26:08 [ 35] [ 32] [6213544000765369=491212016536588] +09:26:08 [ 37] [ 12] [507901963412] +09:26:08 [ 38] [ 6] [729630] +09:26:08 [ 39] [ 2] [00] +09:26:08 [ 41] [ 8] [03020019] +09:26:08 [ 49] [ 3] [418] +09:26:08 [ 54] [ 40] [0001418C0000252816900002418C000025281690] +09:26:08 ============================================================================ +09:26:08 Sending to : +09:26:08 ============================================================================ +09:26:08 + + +waiting on router queue for slot.... +09:26:10 ============================================================================ +09:26:10 Slot Id : <463> +09:26:10 Transaction Type : RESPONSE +09:26:10 Received From : +09:26:10 ============================================================================ +09:26:10 FNo. Len. Field Value +09:26:10 ============================================================================ +09:26:10 [ 1] [ 4] [0210] +09:26:10 [ 2] [ 16] [6213544000765369] +09:26:10 [ 3] [ 6] [010000] +09:26:10 [ 4] [ 12] [000010000000] +09:26:10 [ 7] [ 10] [0320092358] +09:26:10 [ 11] [ 6] [935538] +09:26:10 [ 12] [ 6] [092358] +09:26:10 [ 13] [ 4] [0320] +09:26:10 [ 15] [ 4] [0320] +09:26:10 [ 18] [ 4] [6011] +09:26:10 [ 19] [ 3] [418] +09:26:10 [ 32] [ 6] [668899] +09:26:10 [ 35] [ 32] [6213544000765369=491212016536588] +09:26:10 [ 37] [ 12] [507901963412] +09:26:10 [ 38] [ 6] [729630] +09:26:10 [ 39] [ 2] [00] +09:26:10 [ 41] [ 8] [03020019] +09:26:10 [ 49] [ 3] [418] +09:26:10 [ 54] [ 40] [0001418C0000252816900002418C000025281690] +09:26:10 ============================================================================ +09:26:10 Calculate Source COMM Id = 4 +09:26:10 ============================================================================ +09:26:10 + + +waiting on router queue for slot.... +09:26:20 ============================================================================ +09:26:20 Slot Id : <448> +09:26:20 Transaction Type : REQUEST +09:26:20 Received From : +09:26:20 ============================================================================ +09:26:20 FNo. Len. Field Value +09:26:20 ============================================================================ +09:26:20 [ 1] [ 4] [0200] +09:26:20 [ 2] [ 16] [6688990102858402] +09:26:20 [ 3] [ 6] [310000] +09:26:20 [ 4] [ 12] [000000000000] +09:26:20 [ 7] [ 10] [0320093408] +09:26:20 [ 11] [ 6] [021118] +09:26:20 [ 12] [ 6] [093408] +09:26:20 [ 13] [ 4] [0320] +09:26:20 [ 14] [ 4] [4210] +09:26:20 [ 15] [ 4] [0320] +09:26:20 [ 18] [ 4] [6011] +09:26:20 [ 22] [ 3] [900] +09:26:20 [ 25] [ 2] [02] +09:26:20 [ 28] [ 9] [000000000] +09:26:20 [ 32] [ 6] [220699] +09:26:20 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:26:20 [ 37] [ 12] [507900263083] +09:26:20 [ 41] [ 8] [01001400] +09:26:20 [ 42] [ 15] [APTRA ] +09:26:20 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:26:20 [ 49] [ 3] [418] +09:26:20 [ 52] [ 16] [E992191A385189EE] +09:26:20 ============================================================================ +09:26:20 + + +waiting on router queue for slot.... +09:26:20 Sending to : +09:26:20 ============================================================================ +09:26:20 Sending to : +09:26:20 ============================================================================ +09:26:20 ============================================================================ +09:26:20 Slot Id : <480> +09:26:20 Transaction Type : REQUEST +09:26:20 Received From : +09:26:20 ============================================================================ +09:26:20 FNo. Len. Field Value +09:26:20 ============================================================================ +09:26:20 [ 1] [ 4] [0800] +09:26:20 [ 7] [ 10] [0320022412] +09:26:20 [ 11] [ 6] [078153] +09:26:20 [ 37] [ 12] [57909078153] +09:26:20 [ 70] [ 3] [301] +09:26:20 ============================================================================ +09:26:20 + + +waiting on router queue for slot.... +09:26:20 Sending to : +09:26:20 ============================================================================ +09:26:20 ============================================================================ +09:26:20 Slot Id : <480> +09:26:20 Transaction Type : RESPONSE +09:26:20 Received From : +09:26:20 ============================================================================ +09:26:20 FNo. Len. Field Value +09:26:20 ============================================================================ +09:26:20 [ 1] [ 4] [0810] +09:26:20 [ 7] [ 10] [0320022412] +09:26:20 [ 11] [ 6] [078153] +09:26:20 [ 37] [ 12] [579090781530] +09:26:20 [ 39] [ 2] [00] +09:26:20 [ 70] [ 3] [810] +09:26:20 ============================================================================ +09:26:20 Calculate Source COMM Id = 4 +09:26:20 ============================================================================ +09:26:20 + + +waiting on router queue for slot.... +09:26:21 ============================================================================ +09:26:21 Slot Id : <448> +09:26:21 Transaction Type : REQUEST +09:26:21 Received From : +09:26:21 ============================================================================ +09:26:21 FNo. Len. Field Value +09:26:21 ============================================================================ +09:26:21 [ 1] [ 4] [0200] +09:26:21 [ 2] [ 16] [6688990102858402] +09:26:21 [ 3] [ 6] [310000] +09:26:21 [ 4] [ 12] [000000000000] +09:26:21 [ 7] [ 10] [0320093408] +09:26:21 [ 11] [ 6] [021118] +09:26:21 [ 12] [ 6] [093408] +09:26:21 [ 13] [ 4] [0320] +09:26:21 [ 14] [ 4] [4210] +09:26:21 [ 15] [ 4] [0320] +09:26:21 [ 18] [ 4] [6011] +09:26:21 [ 22] [ 3] [900] +09:26:21 [ 25] [ 2] [02] +09:26:21 [ 28] [ 9] [000000000] +09:26:21 [ 32] [ 6] [220699] +09:26:21 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:26:21 [ 37] [ 12] [507900263083] +09:26:21 [ 41] [ 8] [01001400] +09:26:21 [ 42] [ 15] [APTRA ] +09:26:21 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:26:21 [ 49] [ 3] [418] +09:26:21 [ 52] [ 16] [E992191A385189EE] +09:26:21 ============================================================================ +09:26:21 + + +waiting on router queue for slot.... +09:26:21 Sending to : +09:26:21 ============================================================================ +09:26:21 ============================================================================ +09:26:21 Slot Id : <448> +09:26:21 Transaction Type : REQUEST +09:26:21 Received From : +09:26:21 ============================================================================ +09:26:21 FNo. Len. Field Value +09:26:21 ============================================================================ +09:26:21 [ 1] [ 4] [0200] +09:26:21 [ 2] [ 16] [6688990102858402] +09:26:21 [ 3] [ 6] [310000] +09:26:21 [ 4] [ 12] [000000000000] +09:26:21 [ 7] [ 10] [0320093408] +09:26:21 [ 11] [ 6] [021118] +09:26:21 [ 12] [ 6] [093408] +09:26:21 [ 13] [ 4] [0320] +09:26:21 [ 14] [ 4] [4210] +09:26:21 [ 15] [ 4] [0320] +09:26:21 [ 18] [ 4] [6011] +09:26:21 [ 22] [ 3] [900] +09:26:21 [ 25] [ 2] [02] +09:26:21 [ 28] [ 9] [000000000] +09:26:21 [ 32] [ 6] [220699] +09:26:21 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:26:21 [ 37] [ 12] [507900263083] +09:26:21 [ 41] [ 8] [01001400] +09:26:21 [ 42] [ 15] [APTRA ] +09:26:21 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:26:21 [ 49] [ 3] [418] +09:26:21 [ 52] [ 16] [C197FA761A3DB98B] +09:26:21 ============================================================================ +09:26:21 + + +waiting on router queue for slot.... +09:26:21 Sending to : <0> +09:26:21 ============================================================================ +09:26:21 ============================================================================ +09:26:21 Slot Id : <448> +09:26:21 Transaction Type : RESPONSE +09:26:21 Received From : +09:26:21 ============================================================================ +09:26:21 FNo. Len. Field Value +09:26:21 ============================================================================ +09:26:21 [ 1] [ 4] [0210] +09:26:21 [ 2] [ 16] [6688990102858402] +09:26:21 [ 3] [ 6] [310000] +09:26:21 [ 4] [ 12] [000000000000] +09:26:21 [ 7] [ 10] [0320093408] +09:26:21 [ 11] [ 6] [021118] +09:26:21 [ 12] [ 6] [093408] +09:26:21 [ 13] [ 4] [0320] +09:26:21 [ 15] [ 4] [0320] +09:26:21 [ 18] [ 4] [6011] +09:26:21 [ 22] [ 3] [900] +09:26:21 [ 32] [ 6] [220699] +09:26:21 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:26:21 [ 37] [ 12] [507900263083] +09:26:21 [ 39] [ 2] [14] +09:26:21 [ 41] [ 8] [01001400] +09:26:21 [ 49] [ 3] [418] +09:26:21 ============================================================================ +09:26:21 Sending to : +09:26:21 ============================================================================ +09:26:21 + + +waiting on router queue for slot.... +09:26:22 ============================================================================ +09:26:22 Slot Id : <471> +09:26:22 Transaction Type : REQUEST +09:26:22 Received From : +09:26:22 ============================================================================ +09:26:22 FNo. Len. Field Value +09:26:22 ============================================================================ +09:26:22 [ 1] [ 4] [0800] +09:26:22 [ 7] [ 10] [0320022530] +09:26:22 [ 11] [ 6] [155630] +09:26:22 [ 70] [ 3] [301] +09:26:22 ============================================================================ +09:26:22 + + +waiting on router queue for slot.... +09:26:22 Sending to : +09:26:22 ============================================================================ +09:26:22 ============================================================================ +09:26:22 Slot Id : <471> +09:26:22 Transaction Type : RESPONSE +09:26:22 Received From : +09:26:22 ============================================================================ +09:26:22 FNo. Len. Field Value +09:26:22 ============================================================================ +09:26:22 [ 1] [ 4] [0810] +09:26:22 [ 7] [ 10] [0320022530] +09:26:22 [ 11] [ 6] [155630] +09:26:22 [ 39] [ 2] [00] +09:26:22 [ 70] [ 3] [301] +09:26:22 ============================================================================ +09:26:22 Calculate Source COMM Id = 2 +09:26:22 ============================================================================ +09:26:22 + + +waiting on router queue for slot.... +09:26:22 ============================================================================ +09:26:22 Slot Id : <448> +09:26:22 Transaction Type : RESPONSE +09:26:22 Received From : +09:26:22 ============================================================================ +09:26:22 FNo. Len. Field Value +09:26:22 ============================================================================ +09:26:22 [ 1] [ 4] [0210] +09:26:22 [ 2] [ 16] [6688990102858402] +09:26:22 [ 3] [ 6] [310000] +09:26:22 [ 4] [ 12] [000000000000] +09:26:22 [ 7] [ 10] [0320093408] +09:26:22 [ 11] [ 6] [021118] +09:26:22 [ 12] [ 6] [093408] +09:26:22 [ 13] [ 4] [0320] +09:26:22 [ 15] [ 4] [0320] +09:26:22 [ 18] [ 4] [6011] +09:26:22 [ 22] [ 3] [900] +09:26:22 [ 32] [ 6] [220699] +09:26:22 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:26:22 [ 37] [ 12] [507900263083] +09:26:22 [ 39] [ 2] [14] +09:26:22 [ 41] [ 8] [01001400] +09:26:22 [ 49] [ 3] [418] +09:26:22 ============================================================================ +09:26:22 Calculate Source COMM Id = 1 +09:26:22 ============================================================================ +09:26:22 + + +waiting on router queue for slot.... +09:26:37 ============================================================================ +09:26:37 Slot Id : <479> +09:26:37 Transaction Type : REQUEST +09:26:37 Received From : +09:26:37 ============================================================================ +09:26:37 FNo. Len. Field Value +09:26:37 ============================================================================ +09:26:37 [ 1] [ 4] [0800] +09:26:37 [ 7] [ 10] [0320022545] +09:26:37 [ 11] [ 6] [155631] +09:26:37 [ 70] [ 3] [301] +09:26:37 ============================================================================ +09:26:37 + + +waiting on router queue for slot.... +09:26:37 Sending to : +09:26:37 ============================================================================ +09:26:37 ============================================================================ +09:26:37 Slot Id : <479> +09:26:37 Transaction Type : RESPONSE +09:26:37 Received From : +09:26:37 ============================================================================ +09:26:37 FNo. Len. Field Value +09:26:37 ============================================================================ +09:26:37 [ 1] [ 4] [0810] +09:26:37 [ 7] [ 10] [0320022545] +09:26:37 [ 11] [ 6] [155631] +09:26:37 [ 39] [ 2] [00] +09:26:37 [ 70] [ 3] [301] +09:26:37 ============================================================================ +09:26:37 Calculate Source COMM Id = 2 +09:26:37 ============================================================================ +09:26:37 + + +waiting on router queue for slot.... +09:26:44 ============================================================================ +09:26:44 Slot Id : <0> +09:26:44 Transaction Type : REQUEST +09:26:44 Received From : +09:26:44 ============================================================================ +09:26:44 FNo. Len. Field Value +09:26:44 ============================================================================ +09:26:44 [ 1] [ 4] [0800] +09:26:44 [ 7] [ 10] [0320163832] +09:26:44 [ 11] [ 6] [093832] +09:26:44 [ 37] [ 12] [57909093832] +09:26:44 [ 70] [ 3] [301] +09:26:44 ============================================================================ +09:26:44 + + +waiting on router queue for slot.... +09:26:44 Sending to : +09:26:44 ============================================================================ +09:26:44 ============================================================================ +09:26:44 Slot Id : <0> +09:26:44 Transaction Type : RESPONSE +09:26:44 Received From : +09:26:44 ============================================================================ +09:26:44 FNo. Len. Field Value +09:26:44 ============================================================================ +09:26:44 [ 1] [ 4] [0810] +09:26:44 [ 7] [ 10] [0320163832] +09:26:44 [ 11] [ 6] [093832] +09:26:44 [ 37] [ 12] [579090938320] +09:26:44 [ 39] [ 2] [00] +09:26:44 [ 70] [ 3] [810] +09:26:44 ============================================================================ +09:26:44 Calculate Source COMM Id = 6 +09:26:44 ============================================================================ +09:26:44 + + +waiting on router queue for slot.... +09:26:47 ============================================================================ +09:26:47 Slot Id : <2> +09:26:47 Transaction Type : REQUEST +09:26:47 Received From : +09:26:47 ============================================================================ +09:26:47 FNo. Len. Field Value +09:26:47 ============================================================================ +09:26:47 [ 1] [ 4] [0200] +09:26:47 [ 2] [ 16] [6213544000437118] +09:26:47 [ 3] [ 6] [311000] +09:26:47 [ 4] [ 12] [000000000000] +09:26:47 [ 7] [ 10] [0320093435] +09:26:47 [ 11] [ 6] [013411] +09:26:47 [ 12] [ 6] [093435] +09:26:47 [ 13] [ 4] [0320] +09:26:47 [ 14] [ 4] [4912] +09:26:47 [ 15] [ 4] [0320] +09:26:47 [ 18] [ 4] [6011] +09:26:47 [ 22] [ 3] [900] +09:26:47 [ 25] [ 2] [02] +09:26:47 [ 28] [ 9] [000000000] +09:26:47 [ 32] [ 6] [220699] +09:26:47 [ 35] [ 32] [6213544000437118=491212013711360] +09:26:47 [ 37] [ 12] [507900200945] +09:26:47 [ 41] [ 8] [09000100] +09:26:47 [ 42] [ 15] [APTRA ] +09:26:47 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:26:47 [ 49] [ 3] [418] +09:26:47 [ 52] [ 16] [3BB1C43F273AC16B] +09:26:47 ============================================================================ +09:26:47 + + +waiting on router queue for slot.... +09:26:47 Sending to : +09:26:47 ============================================================================ +09:26:47 Sending to : +09:26:47 ============================================================================ +09:26:48 ============================================================================ +09:26:48 Slot Id : <2> +09:26:48 Transaction Type : REQUEST +09:26:48 Received From : +09:26:48 ============================================================================ +09:26:48 FNo. Len. Field Value +09:26:48 ============================================================================ +09:26:48 [ 1] [ 4] [0200] +09:26:48 [ 2] [ 16] [6213544000437118] +09:26:48 [ 3] [ 6] [311000] +09:26:48 [ 4] [ 12] [000000000000] +09:26:48 [ 7] [ 10] [0320093435] +09:26:48 [ 11] [ 6] [013411] +09:26:48 [ 12] [ 6] [093435] +09:26:48 [ 13] [ 4] [0320] +09:26:48 [ 14] [ 4] [4912] +09:26:48 [ 15] [ 4] [0320] +09:26:48 [ 18] [ 4] [6011] +09:26:48 [ 22] [ 3] [900] +09:26:48 [ 25] [ 2] [02] +09:26:48 [ 28] [ 9] [000000000] +09:26:48 [ 32] [ 6] [220699] +09:26:48 [ 35] [ 32] [6213544000437118=491212013711360] +09:26:48 [ 37] [ 12] [507900200945] +09:26:48 [ 41] [ 8] [09000100] +09:26:48 [ 42] [ 15] [APTRA ] +09:26:48 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:26:48 [ 49] [ 3] [418] +09:26:48 [ 52] [ 16] [3BB1C43F273AC16B] +09:26:48 ============================================================================ +09:26:48 + + +waiting on router queue for slot.... +09:26:48 Sending to : +09:26:48 ============================================================================ +09:26:48 ============================================================================ +09:26:48 Slot Id : <2> +09:26:48 Transaction Type : REQUEST +09:26:48 Received From : +09:26:48 ============================================================================ +09:26:48 FNo. Len. Field Value +09:26:48 ============================================================================ +09:26:48 [ 1] [ 4] [0200] +09:26:48 [ 2] [ 16] [6213544000437118] +09:26:48 [ 3] [ 6] [311000] +09:26:48 [ 4] [ 12] [000000000000] +09:26:48 [ 7] [ 10] [0320093435] +09:26:48 [ 11] [ 6] [013411] +09:26:48 [ 12] [ 6] [093435] +09:26:48 [ 13] [ 4] [0320] +09:26:48 [ 14] [ 4] [4912] +09:26:48 [ 15] [ 4] [0320] +09:26:48 [ 18] [ 4] [6011] +09:26:48 [ 22] [ 3] [900] +09:26:48 [ 25] [ 2] [02] +09:26:48 [ 28] [ 9] [000000000] +09:26:48 [ 32] [ 6] [220699] +09:26:48 [ 35] [ 32] [6213544000437118=491212013711360] +09:26:48 [ 37] [ 12] [507900200945] +09:26:48 [ 41] [ 8] [09000100] +09:26:48 [ 42] [ 15] [APTRA ] +09:26:48 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:26:48 [ 49] [ 3] [418] +09:26:48 [ 52] [ 16] [BAA6B66AA00CD60A] +09:26:48 ============================================================================ +09:26:48 + + +waiting on router queue for slot.... +09:26:48 Sending to : <0> +09:26:48 ============================================================================ +09:26:48 ============================================================================ +09:26:48 Slot Id : <2> +09:26:48 Transaction Type : RESPONSE +09:26:48 Received From : +09:26:48 ============================================================================ +09:26:48 FNo. Len. Field Value +09:26:48 ============================================================================ +09:26:48 [ 1] [ 4] [0210] +09:26:48 [ 2] [ 16] [6213544000437118] +09:26:48 [ 3] [ 6] [311000] +09:26:48 [ 4] [ 12] [000000000000] +09:26:48 [ 7] [ 10] [0320093435] +09:26:48 [ 11] [ 6] [013411] +09:26:48 [ 12] [ 6] [093435] +09:26:48 [ 13] [ 4] [0320] +09:26:48 [ 15] [ 4] [0320] +09:26:48 [ 18] [ 4] [6011] +09:26:48 [ 32] [ 6] [220699] +09:26:48 [ 35] [ 32] [6213544000437118=491212013711360] +09:26:48 [ 37] [ 12] [507900200945] +09:26:48 [ 38] [ 6] [396003] +09:26:48 [ 39] [ 2] [00] +09:26:48 [ 41] [ 8] [09000100] +09:26:48 [ 49] [ 3] [418] +09:26:48 [ 54] [ 40] [1001418C0000052484331002418C000005248433] +09:26:48 ============================================================================ +09:26:48 Sending to : +09:26:48 ============================================================================ +09:26:48 + + +waiting on router queue for slot.... +09:26:49 ============================================================================ +09:26:49 Slot Id : <493> +09:26:49 Transaction Type : REQUEST +09:26:49 Received From : +09:26:49 ============================================================================ +09:26:49 FNo. Len. Field Value +09:26:49 ============================================================================ +09:26:49 [ 1] [ 4] [0200] +09:26:49 [ 2] [ 16] [6688990102858402] +09:26:49 [ 3] [ 6] [311000] +09:26:49 [ 4] [ 12] [000000000000] +09:26:49 [ 7] [ 10] [0320093436] +09:26:49 [ 11] [ 6] [021121] +09:26:49 [ 12] [ 6] [093436] +09:26:49 [ 13] [ 4] [0320] +09:26:49 [ 14] [ 4] [4210] +09:26:49 [ 15] [ 4] [0320] +09:26:49 [ 18] [ 4] [6011] +09:26:49 [ 22] [ 3] [900] +09:26:49 [ 25] [ 2] [02] +09:26:49 [ 28] [ 9] [000000000] +09:26:49 [ 32] [ 6] [220699] +09:26:49 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:26:49 [ 37] [ 12] [507900263085] +09:26:49 [ 41] [ 8] [01001400] +09:26:49 [ 42] [ 15] [APTRA ] +09:26:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:26:49 [ 49] [ 3] [418] +09:26:49 [ 52] [ 16] [E992191A385189EE] +09:26:49 ============================================================================ +09:26:49 + + +waiting on router queue for slot.... +09:26:49 Sending to : +09:26:49 ============================================================================ +09:26:49 Sending to : +09:26:49 ============================================================================ +09:26:49 ============================================================================ +09:26:49 Slot Id : <493> +09:26:49 Transaction Type : REQUEST +09:26:49 Received From : +09:26:49 ============================================================================ +09:26:49 FNo. Len. Field Value +09:26:49 ============================================================================ +09:26:49 [ 1] [ 4] [0200] +09:26:49 [ 2] [ 16] [6688990102858402] +09:26:49 [ 3] [ 6] [311000] +09:26:49 [ 4] [ 12] [000000000000] +09:26:49 [ 7] [ 10] [0320093436] +09:26:49 [ 11] [ 6] [021121] +09:26:49 [ 12] [ 6] [093436] +09:26:49 [ 13] [ 4] [0320] +09:26:49 [ 14] [ 4] [4210] +09:26:49 [ 15] [ 4] [0320] +09:26:49 [ 18] [ 4] [6011] +09:26:49 [ 22] [ 3] [900] +09:26:49 [ 25] [ 2] [02] +09:26:49 [ 28] [ 9] [000000000] +09:26:49 [ 32] [ 6] [220699] +09:26:49 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:26:49 [ 37] [ 12] [507900263085] +09:26:49 [ 41] [ 8] [01001400] +09:26:49 [ 42] [ 15] [APTRA ] +09:26:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:26:49 [ 49] [ 3] [418] +09:26:49 [ 52] [ 16] [E992191A385189EE] +09:26:49 ============================================================================ +09:26:49 + + +waiting on router queue for slot.... +09:26:49 Sending to : +09:26:49 ============================================================================ +09:26:49 ============================================================================ +09:26:49 Slot Id : <493> +09:26:49 Transaction Type : REQUEST +09:26:49 Received From : +09:26:49 ============================================================================ +09:26:49 FNo. Len. Field Value +09:26:49 ============================================================================ +09:26:49 [ 1] [ 4] [0200] +09:26:49 [ 2] [ 16] [6688990102858402] +09:26:49 [ 3] [ 6] [311000] +09:26:49 [ 4] [ 12] [000000000000] +09:26:49 [ 7] [ 10] [0320093436] +09:26:49 [ 11] [ 6] [021121] +09:26:49 [ 12] [ 6] [093436] +09:26:49 [ 13] [ 4] [0320] +09:26:49 [ 14] [ 4] [4210] +09:26:49 [ 15] [ 4] [0320] +09:26:49 [ 18] [ 4] [6011] +09:26:49 [ 22] [ 3] [900] +09:26:49 [ 25] [ 2] [02] +09:26:49 [ 28] [ 9] [000000000] +09:26:49 [ 32] [ 6] [220699] +09:26:49 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:26:49 [ 37] [ 12] [507900263085] +09:26:49 [ 41] [ 8] [01001400] +09:26:49 [ 42] [ 15] [APTRA ] +09:26:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:26:49 [ 49] [ 3] [418] +09:26:49 [ 52] [ 16] [C197FA761A3DB98B] +09:26:49 ============================================================================ +09:26:49 + + +waiting on router queue for slot.... +09:26:49 Sending to : <0> +09:26:49 ============================================================================ +09:26:49 ============================================================================ +09:26:49 Slot Id : <493> +09:26:49 Transaction Type : RESPONSE +09:26:49 Received From : +09:26:49 ============================================================================ +09:26:49 FNo. Len. Field Value +09:26:49 ============================================================================ +09:26:49 [ 1] [ 4] [0210] +09:26:49 [ 2] [ 16] [6688990102858402] +09:26:49 [ 3] [ 6] [311000] +09:26:49 [ 4] [ 12] [000000000000] +09:26:49 [ 7] [ 10] [0320093436] +09:26:49 [ 11] [ 6] [021121] +09:26:49 [ 12] [ 6] [093436] +09:26:49 [ 13] [ 4] [0320] +09:26:49 [ 15] [ 4] [0320] +09:26:49 [ 18] [ 4] [6011] +09:26:49 [ 22] [ 3] [900] +09:26:49 [ 32] [ 6] [220699] +09:26:49 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:26:49 [ 37] [ 12] [507900263085] +09:26:49 [ 39] [ 2] [14] +09:26:49 [ 41] [ 8] [01001400] +09:26:49 [ 49] [ 3] [418] +09:26:49 ============================================================================ +09:26:49 Sending to : +09:26:49 ============================================================================ +09:26:49 + + +waiting on router queue for slot.... +09:26:50 ============================================================================ +09:26:50 Slot Id : <2> +09:26:50 Transaction Type : RESPONSE +09:26:50 Received From : +09:26:50 ============================================================================ +09:26:50 FNo. Len. Field Value +09:26:50 ============================================================================ +09:26:50 [ 1] [ 4] [0210] +09:26:50 [ 2] [ 16] [6213544000437118] +09:26:50 [ 3] [ 6] [311000] +09:26:50 [ 4] [ 12] [000000000000] +09:26:50 [ 7] [ 10] [0320093435] +09:26:50 [ 11] [ 6] [013411] +09:26:50 [ 12] [ 6] [093435] +09:26:50 [ 13] [ 4] [0320] +09:26:50 [ 15] [ 4] [0320] +09:26:50 [ 18] [ 4] [6011] +09:26:50 [ 32] [ 6] [220699] +09:26:50 [ 35] [ 32] [6213544000437118=491212013711360] +09:26:50 [ 37] [ 12] [507900200945] +09:26:50 [ 38] [ 6] [396003] +09:26:50 [ 39] [ 2] [00] +09:26:50 [ 41] [ 8] [09000100] +09:26:50 [ 49] [ 3] [418] +09:26:50 [ 54] [ 40] [1001418C0000052484331002418C000005248433] +09:26:50 ============================================================================ +09:26:50 Calculate Source COMM Id = 1 +09:26:50 ============================================================================ +09:26:50 + + +waiting on router queue for slot.... +09:26:51 ============================================================================ +09:26:51 Slot Id : <493> +09:26:51 Transaction Type : RESPONSE +09:26:51 Received From : +09:26:51 ============================================================================ +09:26:51 FNo. Len. Field Value +09:26:51 ============================================================================ +09:26:51 [ 1] [ 4] [0210] +09:26:51 [ 2] [ 16] [6688990102858402] +09:26:51 [ 3] [ 6] [311000] +09:26:51 [ 4] [ 12] [000000000000] +09:26:51 [ 7] [ 10] [0320093436] +09:26:51 [ 11] [ 6] [021121] +09:26:51 [ 12] [ 6] [093436] +09:26:51 [ 13] [ 4] [0320] +09:26:51 [ 15] [ 4] [0320] +09:26:51 [ 18] [ 4] [6011] +09:26:51 [ 22] [ 3] [900] +09:26:51 [ 32] [ 6] [220699] +09:26:51 [ 35] [ 37] [6688990102858402=42101231840275700000] +09:26:51 [ 37] [ 12] [507900263085] +09:26:51 [ 39] [ 2] [14] +09:26:51 [ 41] [ 8] [01001400] +09:26:51 [ 49] [ 3] [418] +09:26:51 ============================================================================ +09:26:51 Calculate Source COMM Id = 1 +09:26:51 ============================================================================ +09:26:51 + + +waiting on router queue for slot.... +09:26:52 ============================================================================ +09:26:52 Slot Id : <498> +09:26:52 Transaction Type : REQUEST +09:26:52 Received From : +09:26:52 ============================================================================ +09:26:52 FNo. Len. Field Value +09:26:52 ============================================================================ +09:26:52 [ 1] [ 4] [0800] +09:26:52 [ 2] [ 5] [02531] +09:26:52 [ 3] [ 6] [579098] +09:26:52 [ 7] [ 10] [0320022652] +09:26:52 [ 11] [ 6] [806960] +09:26:52 [ 15] [ 10] [0320022652] +09:26:52 [ 37] [ 11] [57909806960] +09:26:52 [ 70] [ 3] [001] +09:26:52 ============================================================================ +09:26:52 + + +waiting on router queue for slot.... +09:26:53 ============================================================================ +09:26:53 Slot Id : <498> +09:26:53 Transaction Type : RESPONSE +09:26:53 Received From : +09:26:53 ============================================================================ +09:26:53 FNo. Len. Field Value +09:26:53 ============================================================================ +09:26:53 [ 1] [ 4] [0810] +09:26:53 [ 7] [ 10] [0320022652] +09:26:53 [ 11] [ 6] [806960] +09:26:53 [ 15] [ 4] [0320] +09:26:53 [ 37] [ 12] [57909806960] +09:26:53 [ 39] [ 2] [00] +09:26:53 [ 70] [ 3] [001] +09:26:53 ============================================================================ +09:26:53 Sending to : +09:26:53 ============================================================================ +09:26:53 + + +waiting on router queue for slot.... +09:26:54 ============================================================================ +09:26:54 Slot Id : <1> +09:26:54 Transaction Type : REQUEST +09:26:54 Received From : +09:26:54 ============================================================================ +09:26:54 FNo. Len. Field Value +09:26:54 ============================================================================ +09:26:54 [ 1] [ 4] [0800] +09:26:54 [ 7] [ 10] [0320022602] +09:26:54 [ 11] [ 6] [155632] +09:26:54 [ 70] [ 3] [301] +09:26:54 ============================================================================ +09:26:54 + + +waiting on router queue for slot.... +09:26:54 Sending to : +09:26:54 ============================================================================ +09:26:54 ============================================================================ +09:26:54 Slot Id : <1> +09:26:54 Transaction Type : RESPONSE +09:26:54 Received From : +09:26:54 ============================================================================ +09:26:54 FNo. Len. Field Value +09:26:54 ============================================================================ +09:26:54 [ 1] [ 4] [0810] +09:26:54 [ 7] [ 10] [0320022602] +09:26:54 [ 11] [ 6] [155632] +09:26:54 [ 39] [ 2] [00] +09:26:54 [ 70] [ 3] [301] +09:26:54 ============================================================================ +09:26:54 Calculate Source COMM Id = 2 +09:26:54 ============================================================================ +09:26:54 + + +waiting on router queue for slot.... +09:27:01 ============================================================================ +09:27:01 Slot Id : <473> +09:27:01 Transaction Type : REQUEST +09:27:01 Received From : +09:27:01 ============================================================================ +09:27:01 FNo. Len. Field Value +09:27:01 ============================================================================ +09:27:01 [ 1] [ 4] [0200] +09:27:01 [ 2] [ 16] [6688990040050203] +09:27:01 [ 3] [ 6] [011000] +09:27:01 [ 4] [ 12] [000100000000] +09:27:01 [ 7] [ 10] [0320092657] +09:27:01 [ 11] [ 6] [698617] +09:27:01 [ 12] [ 6] [092657] +09:27:01 [ 13] [ 4] [0320] +09:27:01 [ 15] [ 4] [0320] +09:27:01 [ 18] [ 4] [6011] +09:27:01 [ 22] [ 3] [900] +09:27:01 [ 25] [ 2] [02] +09:27:01 [ 28] [ 9] [D00002000] +09:27:01 [ 32] [ 6] [621354] +09:27:01 [ 35] [ 37] [6688990040050203=97121261403019700000] +09:27:01 [ 37] [ 12] [507903699571] +09:27:01 [ 41] [ 8] [05004500] +09:27:01 [ 42] [ 15] [NATIVE ] +09:27:01 [ 43] [ 40] [Tourism LuangprabangLAO] +09:27:01 [ 49] [ 3] [418] +09:27:01 [ 52] [ 16] [14670CEC3F2CAE5D] +09:27:01 ============================================================================ +09:27:01 + + +waiting on router queue for slot.... +09:27:01 Sending to : +09:27:01 ============================================================================ +09:27:01 Sending to : +09:27:01 ============================================================================ +09:27:01 ============================================================================ +09:27:01 Slot Id : <473> +09:27:01 Transaction Type : REQUEST +09:27:01 Received From : +09:27:01 ============================================================================ +09:27:01 FNo. Len. Field Value +09:27:01 ============================================================================ +09:27:01 [ 1] [ 4] [0200] +09:27:01 [ 2] [ 16] [6688990040050203] +09:27:01 [ 3] [ 6] [011000] +09:27:01 [ 4] [ 12] [000100000000] +09:27:01 [ 7] [ 10] [0320092657] +09:27:01 [ 11] [ 6] [698617] +09:27:01 [ 12] [ 6] [092657] +09:27:01 [ 13] [ 4] [0320] +09:27:01 [ 15] [ 4] [0320] +09:27:01 [ 18] [ 4] [6011] +09:27:01 [ 22] [ 3] [900] +09:27:01 [ 25] [ 2] [02] +09:27:01 [ 28] [ 9] [D00002000] +09:27:01 [ 32] [ 6] [621354] +09:27:01 [ 35] [ 37] [6688990040050203=97121261403019700000] +09:27:01 [ 37] [ 12] [507903699571] +09:27:01 [ 41] [ 8] [05004500] +09:27:01 [ 42] [ 15] [NATIVE ] +09:27:01 [ 43] [ 40] [Tourism LuangprabangLAO] +09:27:01 [ 49] [ 3] [418] +09:27:01 [ 52] [ 16] [14670CEC3F2CAE5D] +09:27:01 ============================================================================ +09:27:01 + + +waiting on router queue for slot.... +09:27:01 Sending to : +09:27:01 ============================================================================ +09:27:01 ============================================================================ +09:27:01 Slot Id : <473> +09:27:01 Transaction Type : REQUEST +09:27:01 Received From : +09:27:01 ============================================================================ +09:27:01 FNo. Len. Field Value +09:27:01 ============================================================================ +09:27:01 [ 1] [ 4] [0200] +09:27:01 [ 2] [ 16] [6688990040050203] +09:27:01 [ 3] [ 6] [011000] +09:27:01 [ 4] [ 12] [000100000000] +09:27:01 [ 7] [ 10] [0320092657] +09:27:01 [ 11] [ 6] [698617] +09:27:01 [ 12] [ 6] [092657] +09:27:01 [ 13] [ 4] [0320] +09:27:01 [ 15] [ 4] [0320] +09:27:01 [ 18] [ 4] [6011] +09:27:01 [ 22] [ 3] [900] +09:27:01 [ 25] [ 2] [02] +09:27:01 [ 28] [ 9] [D00002000] +09:27:01 [ 32] [ 6] [621354] +09:27:01 [ 35] [ 37] [6688990040050203=97121261403019700000] +09:27:01 [ 37] [ 12] [507903699571] +09:27:01 [ 41] [ 8] [05004500] +09:27:01 [ 42] [ 15] [NATIVE ] +09:27:01 [ 43] [ 40] [Tourism LuangprabangLAO] +09:27:01 [ 49] [ 3] [418] +09:27:01 [ 52] [ 16] [646ED99D096F8CE1] +09:27:01 ============================================================================ +09:27:01 + + +waiting on router queue for slot.... +09:27:01 Sending to : <4> +09:27:01 ============================================================================ +09:27:02 ============================================================================ +09:27:02 Slot Id : <473> +09:27:02 Transaction Type : RESPONSE +09:27:02 Received From : +09:27:02 ============================================================================ +09:27:02 FNo. Len. Field Value +09:27:02 ============================================================================ +09:27:02 [ 1] [ 4] [0210] +09:27:02 [ 2] [ 16] [6688990040050203] +09:27:02 [ 3] [ 6] [011000] +09:27:02 [ 4] [ 12] [000100000000] +09:27:02 [ 11] [ 6] [698617] +09:27:02 [ 12] [ 6] [092657] +09:27:02 [ 15] [ 4] [0320] +09:27:02 [ 18] [ 4] [6011] +09:27:02 [ 32] [ 6] [621354] +09:27:02 [ 35] [ 37] [6688990040050203=97121261403019700000] +09:27:02 [ 37] [ 12] [507903699571] +09:27:02 [ 38] [ 6] [623543] +09:27:02 [ 39] [ 2] [00] +09:27:02 [ 41] [ 8] [05004500] +09:27:02 [ 49] [ 3] [418] +09:27:02 [ 54] [ 20] [1002418C002197552093] +09:27:02 ============================================================================ +09:27:02 Sending to : +09:27:02 ============================================================================ +09:27:02 + + +waiting on router queue for slot.... +09:27:04 ============================================================================ +09:27:04 Slot Id : <473> +09:27:04 Transaction Type : RESPONSE +09:27:04 Received From : +09:27:04 ============================================================================ +09:27:04 FNo. Len. Field Value +09:27:04 ============================================================================ +09:27:04 [ 1] [ 4] [0210] +09:27:04 [ 2] [ 16] [6688990040050203] +09:27:04 [ 3] [ 6] [011000] +09:27:04 [ 4] [ 12] [000100000000] +09:27:04 [ 11] [ 6] [698617] +09:27:04 [ 12] [ 6] [092657] +09:27:04 [ 15] [ 4] [0320] +09:27:04 [ 18] [ 4] [6011] +09:27:04 [ 32] [ 6] [621354] +09:27:04 [ 35] [ 37] [6688990040050203=97121261403019700000] +09:27:04 [ 37] [ 12] [507903699571] +09:27:04 [ 38] [ 6] [623543] +09:27:04 [ 39] [ 2] [00] +09:27:04 [ 41] [ 8] [05004500] +09:27:04 [ 49] [ 3] [418] +09:27:04 [ 54] [ 20] [1002418C002197552093] +09:27:04 ============================================================================ +09:27:04 Calculate Source COMM Id = 0 +09:27:04 ============================================================================ +09:27:04 + + +waiting on router queue for slot.... +09:27:04 ============================================================================ +09:27:04 Slot Id : <4> +09:27:04 Transaction Type : REQUEST +09:27:04 Received From : +09:27:04 ============================================================================ +09:27:04 FNo. Len. Field Value +09:27:04 ============================================================================ +09:27:04 [ 1] [ 4] [0800] +09:27:04 [ 7] [ 10] [0320092651] +09:27:04 [ 11] [ 6] [015777] +09:27:04 [ 37] [ 12] [507909015777] +09:27:04 [ 70] [ 3] [ ] +09:27:04 ============================================================================ +09:27:04 + + +waiting on router queue for slot.... +09:27:04 Sending to : +09:27:04 ============================================================================ +09:27:04 ============================================================================ +09:27:04 Slot Id : <4> +09:27:04 Transaction Type : RESPONSE +09:27:04 Received From : +09:27:04 ============================================================================ +09:27:04 FNo. Len. Field Value +09:27:04 ============================================================================ +09:27:04 [ 1] [ 4] [0810] +09:27:04 [ 7] [ 10] [0320092651] +09:27:04 [ 11] [ 6] [015777] +09:27:04 [ 37] [ 12] [507909015777] +09:27:04 [ 39] [ 2] [91] +09:27:04 [ 70] [ 3] [ ] +09:27:04 ============================================================================ +09:27:04 Calculate Source COMM Id = 3 +09:27:04 ============================================================================ +09:27:04 + + +waiting on router queue for slot.... +09:27:05 ============================================================================ +09:27:05 Slot Id : <483> +09:27:05 Transaction Type : REQUEST +09:27:05 Received From : +09:27:05 ============================================================================ +09:27:05 FNo. Len. Field Value +09:27:05 ============================================================================ +09:27:05 [ 1] [ 4] [0800] +09:27:05 [ 7] [ 10] [0320022612] +09:27:05 [ 11] [ 6] [155633] +09:27:05 [ 70] [ 3] [301] +09:27:05 ============================================================================ +09:27:05 + + +waiting on router queue for slot.... +09:27:05 Sending to : +09:27:05 ============================================================================ +09:27:05 ============================================================================ +09:27:05 Slot Id : <483> +09:27:05 Transaction Type : RESPONSE +09:27:05 Received From : +09:27:05 ============================================================================ +09:27:05 FNo. Len. Field Value +09:27:05 ============================================================================ +09:27:05 [ 1] [ 4] [0810] +09:27:05 [ 7] [ 10] [0320022612] +09:27:05 [ 11] [ 6] [155633] +09:27:05 [ 39] [ 2] [00] +09:27:05 [ 70] [ 3] [301] +09:27:05 ============================================================================ +09:27:05 Calculate Source COMM Id = 2 +09:27:05 ============================================================================ +09:27:05 + + +waiting on router queue for slot.... +09:27:13 ============================================================================ +09:27:13 Slot Id : <474> +09:27:13 Transaction Type : REQUEST +09:27:13 Received From : +09:27:13 ============================================================================ +09:27:13 FNo. Len. Field Value +09:27:13 ============================================================================ +09:27:13 [ 1] [ 4] [0200] +09:27:13 [ 2] [ 16] [2206990000004747] +09:27:13 [ 3] [ 6] [010000] +09:27:13 [ 4] [ 12] [000020000000] +09:27:13 [ 7] [ 10] [0320092709] +09:27:13 [ 11] [ 6] [698667] +09:27:13 [ 12] [ 6] [092709] +09:27:13 [ 13] [ 4] [0320] +09:27:13 [ 15] [ 4] [0320] +09:27:13 [ 18] [ 4] [6011] +09:27:13 [ 22] [ 3] [900] +09:27:13 [ 25] [ 2] [02] +09:27:13 [ 28] [ 9] [D00002000] +09:27:13 [ 32] [ 6] [621354] +09:27:13 [ 35] [ 32] [2206990000004747=951112617714680] +09:27:13 [ 37] [ 12] [507903975175] +09:27:13 [ 41] [ 8] [01011300] +09:27:13 [ 42] [ 15] [NATIVE ] +09:27:13 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +09:27:13 [ 49] [ 3] [418] +09:27:13 [ 52] [ 16] [B28AB0FF0031E2CE] +09:27:13 ============================================================================ +09:27:13 + + +waiting on router queue for slot.... +09:27:13 Sending to : +09:27:13 ============================================================================ +09:27:13 Sending to : +09:27:13 ============================================================================ +09:27:14 ============================================================================ +09:27:14 Slot Id : <474> +09:27:14 Transaction Type : REQUEST +09:27:14 Received From : +09:27:14 ============================================================================ +09:27:14 FNo. Len. Field Value +09:27:14 ============================================================================ +09:27:14 [ 1] [ 4] [0200] +09:27:14 [ 2] [ 16] [2206990000004747] +09:27:14 [ 3] [ 6] [010000] +09:27:14 [ 4] [ 12] [000020000000] +09:27:14 [ 7] [ 10] [0320092709] +09:27:14 [ 11] [ 6] [698667] +09:27:14 [ 12] [ 6] [092709] +09:27:14 [ 13] [ 4] [0320] +09:27:14 [ 15] [ 4] [0320] +09:27:14 [ 18] [ 4] [6011] +09:27:14 [ 22] [ 3] [900] +09:27:14 [ 25] [ 2] [02] +09:27:14 [ 28] [ 9] [D00002000] +09:27:14 [ 32] [ 6] [621354] +09:27:14 [ 35] [ 32] [2206990000004747=951112617714680] +09:27:14 [ 37] [ 12] [507903975175] +09:27:14 [ 41] [ 8] [01011300] +09:27:14 [ 42] [ 15] [NATIVE ] +09:27:14 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +09:27:14 [ 49] [ 3] [418] +09:27:14 [ 52] [ 16] [B28AB0FF0031E2CE] +09:27:14 ============================================================================ +09:27:14 + + +waiting on router queue for slot.... +09:27:14 Sending to : +09:27:14 ============================================================================ +09:27:14 ============================================================================ +09:27:14 Slot Id : <474> +09:27:14 Transaction Type : REQUEST +09:27:14 Received From : +09:27:14 ============================================================================ +09:27:14 FNo. Len. Field Value +09:27:14 ============================================================================ +09:27:14 [ 1] [ 4] [0200] +09:27:14 [ 2] [ 16] [2206990000004747] +09:27:14 [ 3] [ 6] [010000] +09:27:14 [ 4] [ 12] [000020000000] +09:27:14 [ 7] [ 10] [0320092709] +09:27:14 [ 11] [ 6] [698667] +09:27:14 [ 12] [ 6] [092709] +09:27:14 [ 13] [ 4] [0320] +09:27:14 [ 15] [ 4] [0320] +09:27:14 [ 18] [ 4] [6011] +09:27:14 [ 22] [ 3] [900] +09:27:14 [ 25] [ 2] [02] +09:27:14 [ 28] [ 9] [D00002000] +09:27:14 [ 32] [ 6] [621354] +09:27:14 [ 35] [ 32] [2206990000004747=951112617714680] +09:27:14 [ 37] [ 12] [507903975175] +09:27:14 [ 41] [ 8] [01011300] +09:27:14 [ 42] [ 15] [NATIVE ] +09:27:14 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +09:27:14 [ 49] [ 3] [418] +09:27:14 [ 52] [ 16] [A679B23AA9EA4133] +09:27:14 ============================================================================ +09:27:14 + + +waiting on router queue for slot.... +09:27:14 Sending to : <1> +09:27:14 ============================================================================ +09:27:16 ============================================================================ +09:27:16 Slot Id : <489> +09:27:16 Transaction Type : REQUEST +09:27:16 Received From : +09:27:16 ============================================================================ +09:27:16 FNo. Len. Field Value +09:27:16 ============================================================================ +09:27:16 [ 1] [ 4] [0800] +09:27:16 [ 7] [ 10] [0320022624] +09:27:16 [ 11] [ 6] [155634] +09:27:16 [ 70] [ 3] [301] +09:27:16 ============================================================================ +09:27:16 + + +waiting on router queue for slot.... +09:27:16 Sending to : +09:27:16 ============================================================================ +09:27:16 ============================================================================ +09:27:16 Slot Id : <489> +09:27:16 Transaction Type : RESPONSE +09:27:16 Received From : +09:27:16 ============================================================================ +09:27:16 FNo. Len. Field Value +09:27:16 ============================================================================ +09:27:16 [ 1] [ 4] [0810] +09:27:16 [ 7] [ 10] [0320022624] +09:27:16 [ 11] [ 6] [155634] +09:27:16 [ 39] [ 2] [00] +09:27:16 [ 70] [ 3] [301] +09:27:16 ============================================================================ +09:27:16 Calculate Source COMM Id = 2 +09:27:16 ============================================================================ +09:27:16 + + +waiting on router queue for slot.... +09:27:16 ============================================================================ +09:27:16 Slot Id : <474> +09:27:16 Transaction Type : RESPONSE +09:27:16 Received From : +09:27:16 ============================================================================ +09:27:16 FNo. Len. Field Value +09:27:16 ============================================================================ +09:27:16 [ 1] [ 4] [0210] +09:27:16 [ 2] [ 16] [2206990000004747] +09:27:16 [ 3] [ 6] [010000] +09:27:16 [ 4] [ 12] [000020000000] +09:27:16 [ 7] [ 10] [0320092709] +09:27:16 [ 11] [ 6] [698667] +09:27:16 [ 12] [ 6] [092709] +09:27:16 [ 13] [ 4] [0320] +09:27:16 [ 15] [ 4] [0320] +09:27:16 [ 18] [ 4] [6011] +09:27:16 [ 32] [ 6] [621354] +09:27:16 [ 35] [ 32] [2206990000004747=951112617714680] +09:27:16 [ 37] [ 12] [507903975175] +09:27:16 [ 38] [ 6] [521091] +09:27:16 [ 39] [ 2] [00] +09:27:16 [ 41] [ 8] [01011300] +09:27:16 [ 49] [ 3] [418] +09:27:16 [ 54] [ 40] [0001418C0000624133000002418C000062413300] +09:27:16 ============================================================================ +09:27:16 Sending to : +09:27:16 ============================================================================ +09:27:16 + + +waiting on router queue for slot.... +09:27:17 ============================================================================ +09:27:17 Slot Id : <474> +09:27:17 Transaction Type : RESPONSE +09:27:17 Received From : +09:27:17 ============================================================================ +09:27:17 FNo. Len. Field Value +09:27:17 ============================================================================ +09:27:17 [ 1] [ 4] [0210] +09:27:17 [ 2] [ 16] [2206990000004747] +09:27:17 [ 3] [ 6] [010000] +09:27:17 [ 4] [ 12] [000020000000] +09:27:17 [ 7] [ 10] [0320092709] +09:27:17 [ 11] [ 6] [698667] +09:27:17 [ 12] [ 6] [092709] +09:27:17 [ 13] [ 4] [0320] +09:27:17 [ 15] [ 4] [0320] +09:27:17 [ 18] [ 4] [6011] +09:27:17 [ 32] [ 6] [621354] +09:27:17 [ 35] [ 32] [2206990000004747=951112617714680] +09:27:17 [ 37] [ 12] [507903975175] +09:27:17 [ 38] [ 6] [521091] +09:27:17 [ 39] [ 2] [00] +09:27:17 [ 41] [ 8] [01011300] +09:27:17 [ 49] [ 3] [418] +09:27:17 [ 54] [ 40] [0001418C0000624133000002418C000062413300] +09:27:17 ============================================================================ +09:27:17 Calculate Source COMM Id = 0 +09:27:17 ============================================================================ +09:27:17 + + +waiting on router queue for slot.... +09:27:27 ============================================================================ +09:27:27 Slot Id : <476> +09:27:27 Transaction Type : REQUEST +09:27:27 Received From : +09:27:27 ============================================================================ +09:27:27 FNo. Len. Field Value +09:27:27 ============================================================================ +09:27:27 [ 1] [ 4] [0800] +09:27:27 [ 7] [ 10] [0320022634] +09:27:27 [ 11] [ 6] [155635] +09:27:27 [ 70] [ 3] [301] +09:27:27 ============================================================================ +09:27:27 + + +waiting on router queue for slot.... +09:27:27 Sending to : +09:27:27 ============================================================================ +09:27:27 ============================================================================ +09:27:27 Slot Id : <476> +09:27:27 Transaction Type : RESPONSE +09:27:27 Received From : +09:27:27 ============================================================================ +09:27:27 FNo. Len. Field Value +09:27:27 ============================================================================ +09:27:27 [ 1] [ 4] [0810] +09:27:27 [ 7] [ 10] [0320022634] +09:27:27 [ 11] [ 6] [155635] +09:27:27 [ 39] [ 2] [00] +09:27:27 [ 70] [ 3] [301] +09:27:27 ============================================================================ +09:27:27 Calculate Source COMM Id = 2 +09:27:27 ============================================================================ +09:27:27 + + +waiting on router queue for slot.... +09:27:28 ============================================================================ +09:27:28 Slot Id : <472> +09:27:28 Transaction Type : REQUEST +09:27:28 Received From : +09:27:28 ============================================================================ +09:27:28 FNo. Len. Field Value +09:27:28 ============================================================================ +09:27:28 [ 1] [ 4] [0200] +09:27:28 [ 2] [ 16] [6213544001991394] +09:27:28 [ 3] [ 6] [010000] +09:27:28 [ 4] [ 12] [000030000000] +09:27:28 [ 7] [ 10] [0320092520] +09:27:28 [ 11] [ 6] [935607] +09:27:28 [ 12] [ 6] [092520] +09:27:28 [ 13] [ 4] [0320] +09:27:28 [ 15] [ 4] [0320] +09:27:28 [ 18] [ 4] [6011] +09:27:28 [ 19] [ 3] [418] +09:27:28 [ 22] [ 3] [021] +09:27:28 [ 25] [ 2] [01] +09:27:28 [ 28] [ 9] [D00002000] +09:27:28 [ 32] [ 6] [668899] +09:27:28 [ 35] [ 32] [6213544001991394=491212019139640] +09:27:28 [ 37] [ 12] [507902531661] +09:27:28 [ 41] [ 8] [03020033] +09:27:28 [ 42] [ 15] [APT ] +09:27:28 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +09:27:28 [ 49] [ 3] [418] +09:27:28 [ 52] [ 16] [080757AC426BC7AC] +09:27:28 ============================================================================ +09:27:28 + + +waiting on router queue for slot.... +09:27:28 Sending to : +09:27:28 ============================================================================ +09:27:28 Sending to : +09:27:28 ============================================================================ +09:27:29 ============================================================================ +09:27:29 Slot Id : <472> +09:27:29 Transaction Type : REQUEST +09:27:29 Received From : +09:27:29 ============================================================================ +09:27:29 FNo. Len. Field Value +09:27:29 ============================================================================ +09:27:29 [ 1] [ 4] [0200] +09:27:29 [ 2] [ 16] [6213544001991394] +09:27:29 [ 3] [ 6] [010000] +09:27:29 [ 4] [ 12] [000030000000] +09:27:29 [ 7] [ 10] [0320092520] +09:27:29 [ 11] [ 6] [935607] +09:27:29 [ 12] [ 6] [092520] +09:27:29 [ 13] [ 4] [0320] +09:27:29 [ 15] [ 4] [0320] +09:27:29 [ 18] [ 4] [6011] +09:27:29 [ 19] [ 3] [418] +09:27:29 [ 22] [ 3] [021] +09:27:29 [ 25] [ 2] [01] +09:27:29 [ 28] [ 9] [D00002000] +09:27:29 [ 32] [ 6] [668899] +09:27:29 [ 35] [ 32] [6213544001991394=491212019139640] +09:27:29 [ 37] [ 12] [507902531661] +09:27:29 [ 41] [ 8] [03020033] +09:27:29 [ 42] [ 15] [APT ] +09:27:29 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +09:27:29 [ 49] [ 3] [418] +09:27:29 [ 52] [ 16] [080757AC426BC7AC] +09:27:29 ============================================================================ +09:27:29 + + +waiting on router queue for slot.... +09:27:29 Sending to : +09:27:29 ============================================================================ +09:27:29 ============================================================================ +09:27:29 Slot Id : <472> +09:27:29 Transaction Type : REQUEST +09:27:29 Received From : +09:27:29 ============================================================================ +09:27:29 FNo. Len. Field Value +09:27:29 ============================================================================ +09:27:29 [ 1] [ 4] [0200] +09:27:29 [ 2] [ 16] [6213544001991394] +09:27:29 [ 3] [ 6] [010000] +09:27:29 [ 4] [ 12] [000030000000] +09:27:29 [ 7] [ 10] [0320092520] +09:27:29 [ 11] [ 6] [935607] +09:27:29 [ 12] [ 6] [092520] +09:27:29 [ 13] [ 4] [0320] +09:27:29 [ 15] [ 4] [0320] +09:27:29 [ 18] [ 4] [6011] +09:27:29 [ 19] [ 3] [418] +09:27:29 [ 22] [ 3] [021] +09:27:29 [ 25] [ 2] [01] +09:27:29 [ 28] [ 9] [D00002000] +09:27:29 [ 32] [ 6] [668899] +09:27:29 [ 35] [ 32] [6213544001991394=491212019139640] +09:27:29 [ 37] [ 12] [507902531661] +09:27:29 [ 41] [ 8] [03020033] +09:27:29 [ 42] [ 15] [APT ] +09:27:29 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +09:27:29 [ 49] [ 3] [418] +09:27:29 [ 52] [ 16] [96D3FF0789AEB638] +09:27:29 ============================================================================ +09:27:29 + + +waiting on router queue for slot.... +09:27:29 Sending to : <0> +09:27:29 ============================================================================ +09:27:29 ============================================================================ +09:27:29 Slot Id : <472> +09:27:29 Transaction Type : RESPONSE +09:27:29 Received From : +09:27:29 ============================================================================ +09:27:29 FNo. Len. Field Value +09:27:29 ============================================================================ +09:27:29 [ 1] [ 4] [0210] +09:27:29 [ 2] [ 16] [6213544001991394] +09:27:29 [ 3] [ 6] [010000] +09:27:29 [ 4] [ 12] [000030000000] +09:27:29 [ 7] [ 10] [0320092520] +09:27:29 [ 11] [ 6] [935607] +09:27:29 [ 12] [ 6] [092520] +09:27:29 [ 13] [ 4] [0320] +09:27:29 [ 15] [ 4] [0320] +09:27:29 [ 18] [ 4] [6011] +09:27:29 [ 19] [ 3] [418] +09:27:29 [ 32] [ 6] [668899] +09:27:29 [ 35] [ 32] [6213544001991394=491212019139640] +09:27:29 [ 37] [ 12] [507902531661] +09:27:29 [ 38] [ 6] [234863] +09:27:29 [ 39] [ 2] [00] +09:27:29 [ 41] [ 8] [03020033] +09:27:29 [ 49] [ 3] [418] +09:27:29 [ 54] [ 40] [0001418C0000375759900002418C000037575990] +09:27:29 ============================================================================ +09:27:29 Sending to : +09:27:29 ============================================================================ +09:27:29 + + +waiting on router queue for slot.... +09:27:31 ============================================================================ +09:27:31 Slot Id : <472> +09:27:31 Transaction Type : RESPONSE +09:27:31 Received From : +09:27:31 ============================================================================ +09:27:31 FNo. Len. Field Value +09:27:31 ============================================================================ +09:27:31 [ 1] [ 4] [0210] +09:27:31 [ 2] [ 16] [6213544001991394] +09:27:31 [ 3] [ 6] [010000] +09:27:31 [ 4] [ 12] [000030000000] +09:27:31 [ 7] [ 10] [0320092520] +09:27:31 [ 11] [ 6] [935607] +09:27:31 [ 12] [ 6] [092520] +09:27:31 [ 13] [ 4] [0320] +09:27:31 [ 15] [ 4] [0320] +09:27:31 [ 18] [ 4] [6011] +09:27:31 [ 19] [ 3] [418] +09:27:31 [ 32] [ 6] [668899] +09:27:31 [ 35] [ 32] [6213544001991394=491212019139640] +09:27:31 [ 37] [ 12] [507902531661] +09:27:31 [ 38] [ 6] [234863] +09:27:31 [ 39] [ 2] [00] +09:27:31 [ 41] [ 8] [03020033] +09:27:31 [ 49] [ 3] [418] +09:27:31 [ 54] [ 40] [0001418C0000375759900002418C000037575990] +09:27:31 ============================================================================ +09:27:31 Calculate Source COMM Id = 4 +09:27:31 ============================================================================ +09:27:31 + + +waiting on router queue for slot.... +09:27:40 ============================================================================ +09:27:40 Slot Id : <486> +09:27:40 Transaction Type : REQUEST +09:27:40 Received From : +09:27:40 ============================================================================ +09:27:40 FNo. Len. Field Value +09:27:40 ============================================================================ +09:27:40 [ 1] [ 4] [0800] +09:27:40 [ 7] [ 10] [0320022646] +09:27:40 [ 11] [ 6] [155636] +09:27:40 [ 70] [ 3] [301] +09:27:40 ============================================================================ +09:27:40 + + +waiting on router queue for slot.... +09:27:40 Sending to : +09:27:40 ============================================================================ +09:27:40 ============================================================================ +09:27:40 Slot Id : <486> +09:27:40 Transaction Type : RESPONSE +09:27:40 Received From : +09:27:40 ============================================================================ +09:27:40 FNo. Len. Field Value +09:27:40 ============================================================================ +09:27:40 [ 1] [ 4] [0810] +09:27:40 [ 7] [ 10] [0320022646] +09:27:40 [ 11] [ 6] [155636] +09:27:40 [ 39] [ 2] [00] +09:27:40 [ 70] [ 3] [301] +09:27:40 ============================================================================ +09:27:40 Calculate Source COMM Id = 2 +09:27:40 ============================================================================ +09:27:40 + + +waiting on router queue for slot.... +09:27:49 ============================================================================ +09:27:49 Slot Id : <477> +09:27:49 Transaction Type : REQUEST +09:27:49 Received From : +09:27:49 ============================================================================ +09:27:49 FNo. Len. Field Value +09:27:49 ============================================================================ +09:27:49 [ 1] [ 4] [0800] +09:27:49 [ 7] [ 10] [0320163937] +09:27:49 [ 11] [ 6] [093937] +09:27:49 [ 37] [ 12] [57909093937] +09:27:49 [ 70] [ 3] [301] +09:27:49 ============================================================================ +09:27:49 + + +waiting on router queue for slot.... +09:27:49 Sending to : +09:27:49 ============================================================================ +09:27:49 ============================================================================ +09:27:49 Slot Id : <477> +09:27:49 Transaction Type : RESPONSE +09:27:49 Received From : +09:27:49 ============================================================================ +09:27:49 FNo. Len. Field Value +09:27:49 ============================================================================ +09:27:49 [ 1] [ 4] [0810] +09:27:49 [ 7] [ 10] [0320163937] +09:27:49 [ 11] [ 6] [093937] +09:27:49 [ 37] [ 12] [579090939370] +09:27:49 [ 39] [ 2] [00] +09:27:49 [ 70] [ 3] [810] +09:27:49 ============================================================================ +09:27:49 Calculate Source COMM Id = 6 +09:27:49 ============================================================================ +09:27:49 + + +waiting on router queue for slot.... +09:27:54 ============================================================================ +09:27:54 Slot Id : <6> +09:27:54 Transaction Type : REQUEST +09:27:54 Received From : +09:27:54 ============================================================================ +09:27:54 FNo. Len. Field Value +09:27:54 ============================================================================ +09:27:54 [ 1] [ 4] [0800] +09:27:54 [ 2] [ 5] [02531] +09:27:54 [ 3] [ 6] [579098] +09:27:54 [ 7] [ 10] [0320022754] +09:27:54 [ 11] [ 6] [806961] +09:27:54 [ 15] [ 10] [0320022754] +09:27:54 [ 37] [ 11] [57909806961] +09:27:54 [ 70] [ 3] [001] +09:27:54 ============================================================================ +09:27:54 + + +waiting on router queue for slot.... +09:27:55 ============================================================================ +09:27:55 Slot Id : <6> +09:27:55 Transaction Type : RESPONSE +09:27:55 Received From : +09:27:55 ============================================================================ +09:27:55 FNo. Len. Field Value +09:27:55 ============================================================================ +09:27:55 [ 1] [ 4] [0810] +09:27:55 [ 7] [ 10] [0320022754] +09:27:55 [ 11] [ 6] [806961] +09:27:55 [ 15] [ 4] [0320] +09:27:55 [ 37] [ 12] [57909806961] +09:27:55 [ 39] [ 2] [00] +09:27:55 [ 70] [ 3] [001] +09:27:55 ============================================================================ +09:27:55 Sending to : +09:27:55 ============================================================================ +09:27:55 + + +waiting on router queue for slot.... +09:27:55 ============================================================================ +09:27:55 Slot Id : <492> +09:27:55 Transaction Type : REQUEST +09:27:55 Received From : +09:27:55 ============================================================================ +09:27:55 FNo. Len. Field Value +09:27:55 ============================================================================ +09:27:55 [ 1] [ 4] [0800] +09:27:55 [ 7] [ 10] [0320022703] +09:27:55 [ 11] [ 6] [155637] +09:27:55 [ 70] [ 3] [301] +09:27:55 ============================================================================ +09:27:55 + + +waiting on router queue for slot.... +09:27:55 Sending to : +09:27:55 ============================================================================ +09:27:55 ============================================================================ +09:27:55 Slot Id : <492> +09:27:55 Transaction Type : RESPONSE +09:27:55 Received From : +09:27:55 ============================================================================ +09:27:55 FNo. Len. Field Value +09:27:55 ============================================================================ +09:27:55 [ 1] [ 4] [0810] +09:27:55 [ 7] [ 10] [0320022703] +09:27:55 [ 11] [ 6] [155637] +09:27:55 [ 39] [ 2] [00] +09:27:55 [ 70] [ 3] [301] +09:27:55 ============================================================================ +09:27:55 Calculate Source COMM Id = 2 +09:27:55 ============================================================================ +09:27:55 + + +waiting on router queue for slot.... +09:28:02 ============================================================================ +09:28:02 Slot Id : <485> +09:28:02 Transaction Type : REQUEST +09:28:02 Received From : +09:28:02 ============================================================================ +09:28:02 FNo. Len. Field Value +09:28:02 ============================================================================ +09:28:02 [ 1] [ 4] [0200] +09:28:02 [ 2] [ 16] [6213545000774053] +09:28:02 [ 3] [ 6] [010000] +09:28:02 [ 4] [ 12] [000100000000] +09:28:02 [ 7] [ 10] [0320092553] +09:28:02 [ 11] [ 6] [935638] +09:28:02 [ 12] [ 6] [092553] +09:28:02 [ 13] [ 4] [0320] +09:28:02 [ 15] [ 4] [0320] +09:28:02 [ 18] [ 4] [6011] +09:28:02 [ 19] [ 3] [418] +09:28:02 [ 22] [ 3] [021] +09:28:02 [ 25] [ 2] [01] +09:28:02 [ 28] [ 9] [D00002000] +09:28:02 [ 32] [ 6] [668899] +09:28:02 [ 35] [ 32] [6213545000774053=491212017405686] +09:28:02 [ 37] [ 12] [507901963415] +09:28:02 [ 41] [ 8] [03020019] +09:28:02 [ 42] [ 15] [APT ] +09:28:02 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:28:02 [ 49] [ 3] [418] +09:28:02 [ 52] [ 16] [782C9F8505D6EC0E] +09:28:02 ============================================================================ +09:28:02 + + +waiting on router queue for slot.... +09:28:02 Sending to : +09:28:02 ============================================================================ +09:28:02 Sending to : +09:28:02 ============================================================================ +09:28:02 ============================================================================ +09:28:02 Slot Id : <454> +09:28:02 Transaction Type : REQUEST +09:28:02 Received From : +09:28:02 ============================================================================ +09:28:02 FNo. Len. Field Value +09:28:02 ============================================================================ +09:28:02 [ 1] [ 4] [0200] +09:28:02 [ 2] [ 16] [6688990100924305] +09:28:02 [ 3] [ 6] [301000] +09:28:02 [ 4] [ 12] [000000000000] +09:28:02 [ 7] [ 10] [0320092758] +09:28:02 [ 11] [ 6] [698857] +09:28:02 [ 12] [ 6] [092758] +09:28:02 [ 13] [ 4] [0320] +09:28:02 [ 15] [ 4] [0320] +09:28:02 [ 18] [ 4] [6011] +09:28:02 [ 22] [ 3] [900] +09:28:02 [ 25] [ 2] [02] +09:28:02 [ 28] [ 9] [D00000000] +09:28:02 [ 32] [ 6] [621354] +09:28:02 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:28:02 [ 37] [ 12] [507904719415] +09:28:02 [ 41] [ 8] [18001000] +09:28:02 [ 42] [ 15] [NATIVE ] +09:28:02 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:28:02 [ 49] [ 3] [418] +09:28:02 [ 52] [ 16] [0836B1A6190C2285] +09:28:02 ============================================================================ +09:28:02 + + +waiting on router queue for slot.... +09:28:02 Sending to : +09:28:02 ============================================================================ +09:28:02 Sending to : +09:28:02 ============================================================================ +09:28:02 ============================================================================ +09:28:02 Slot Id : <485> +09:28:02 Transaction Type : REQUEST +09:28:02 Received From : +09:28:02 ============================================================================ +09:28:02 FNo. Len. Field Value +09:28:02 ============================================================================ +09:28:02 [ 1] [ 4] [0200] +09:28:02 [ 2] [ 16] [6213545000774053] +09:28:02 [ 3] [ 6] [010000] +09:28:02 [ 4] [ 12] [000100000000] +09:28:02 [ 7] [ 10] [0320092553] +09:28:02 [ 11] [ 6] [935638] +09:28:02 [ 12] [ 6] [092553] +09:28:02 [ 13] [ 4] [0320] +09:28:02 [ 15] [ 4] [0320] +09:28:02 [ 18] [ 4] [6011] +09:28:02 [ 19] [ 3] [418] +09:28:02 [ 22] [ 3] [021] +09:28:02 [ 25] [ 2] [01] +09:28:02 [ 28] [ 9] [D00002000] +09:28:02 [ 32] [ 6] [668899] +09:28:02 [ 35] [ 32] [6213545000774053=491212017405686] +09:28:02 [ 37] [ 12] [507901963415] +09:28:02 [ 41] [ 8] [03020019] +09:28:02 [ 42] [ 15] [APT ] +09:28:02 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:28:02 [ 49] [ 3] [418] +09:28:02 [ 52] [ 16] [782C9F8505D6EC0E] +09:28:02 ============================================================================ +09:28:02 + + +waiting on router queue for slot.... +09:28:02 Sending to : +09:28:02 ============================================================================ +09:28:02 ============================================================================ +09:28:02 Slot Id : <485> +09:28:02 Transaction Type : REQUEST +09:28:02 Received From : +09:28:02 ============================================================================ +09:28:02 FNo. Len. Field Value +09:28:02 ============================================================================ +09:28:02 [ 1] [ 4] [0200] +09:28:02 [ 2] [ 16] [6213545000774053] +09:28:02 [ 3] [ 6] [010000] +09:28:02 [ 4] [ 12] [000100000000] +09:28:02 [ 7] [ 10] [0320092553] +09:28:02 [ 11] [ 6] [935638] +09:28:02 [ 12] [ 6] [092553] +09:28:02 [ 13] [ 4] [0320] +09:28:02 [ 15] [ 4] [0320] +09:28:02 [ 18] [ 4] [6011] +09:28:02 [ 19] [ 3] [418] +09:28:02 [ 22] [ 3] [021] +09:28:02 [ 25] [ 2] [01] +09:28:02 [ 28] [ 9] [D00002000] +09:28:02 [ 32] [ 6] [668899] +09:28:02 [ 35] [ 32] [6213545000774053=491212017405686] +09:28:02 [ 37] [ 12] [507901963415] +09:28:02 [ 41] [ 8] [03020019] +09:28:02 [ 42] [ 15] [APT ] +09:28:02 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +09:28:02 [ 49] [ 3] [418] +09:28:02 [ 52] [ 16] [6ADFEF9570C23309] +09:28:02 ============================================================================ +09:28:02 + + +waiting on router queue for slot.... +09:28:02 Sending to : <0> +09:28:02 ============================================================================ +09:28:02 ============================================================================ +09:28:02 Slot Id : <454> +09:28:02 Transaction Type : REQUEST +09:28:02 Received From : +09:28:02 ============================================================================ +09:28:02 FNo. Len. Field Value +09:28:02 ============================================================================ +09:28:02 [ 1] [ 4] [0200] +09:28:02 [ 2] [ 16] [6688990100924305] +09:28:02 [ 3] [ 6] [301000] +09:28:02 [ 4] [ 12] [000000000000] +09:28:02 [ 7] [ 10] [0320092758] +09:28:02 [ 11] [ 6] [698857] +09:28:02 [ 12] [ 6] [092758] +09:28:02 [ 13] [ 4] [0320] +09:28:02 [ 15] [ 4] [0320] +09:28:02 [ 18] [ 4] [6011] +09:28:02 [ 22] [ 3] [900] +09:28:02 [ 25] [ 2] [02] +09:28:02 [ 28] [ 9] [D00000000] +09:28:02 [ 32] [ 6] [621354] +09:28:02 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:28:02 [ 37] [ 12] [507904719415] +09:28:02 [ 41] [ 8] [18001000] +09:28:02 [ 42] [ 15] [NATIVE ] +09:28:02 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:28:02 [ 49] [ 3] [418] +09:28:02 [ 52] [ 16] [0836B1A6190C2285] +09:28:02 ============================================================================ +09:28:02 + + +waiting on router queue for slot.... +09:28:02 Sending to : +09:28:02 ============================================================================ +09:28:02 ============================================================================ +09:28:02 Slot Id : <454> +09:28:02 Transaction Type : REQUEST +09:28:02 Received From : +09:28:02 ============================================================================ +09:28:02 FNo. Len. Field Value +09:28:02 ============================================================================ +09:28:02 [ 1] [ 4] [0200] +09:28:02 [ 2] [ 16] [6688990100924305] +09:28:02 [ 3] [ 6] [301000] +09:28:02 [ 4] [ 12] [000000000000] +09:28:02 [ 7] [ 10] [0320092758] +09:28:02 [ 11] [ 6] [698857] +09:28:02 [ 12] [ 6] [092758] +09:28:02 [ 13] [ 4] [0320] +09:28:02 [ 15] [ 4] [0320] +09:28:02 [ 18] [ 4] [6011] +09:28:02 [ 22] [ 3] [900] +09:28:02 [ 25] [ 2] [02] +09:28:02 [ 28] [ 9] [D00000000] +09:28:02 [ 32] [ 6] [621354] +09:28:02 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:28:02 [ 37] [ 12] [507904719415] +09:28:02 [ 41] [ 8] [18001000] +09:28:02 [ 42] [ 15] [NATIVE ] +09:28:02 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:28:02 [ 49] [ 3] [418] +09:28:02 [ 52] [ 16] [04E46765C2DC7268] +09:28:02 ============================================================================ +09:28:02 + + +waiting on router queue for slot.... +09:28:02 Sending to : <4> +09:28:02 ============================================================================ +09:28:03 ============================================================================ +09:28:03 Slot Id : <485> +09:28:03 Transaction Type : RESPONSE +09:28:03 Received From : +09:28:03 ============================================================================ +09:28:03 FNo. Len. Field Value +09:28:03 ============================================================================ +09:28:03 [ 1] [ 4] [0210] +09:28:03 [ 2] [ 16] [6213545000774053] +09:28:03 [ 3] [ 6] [010000] +09:28:03 [ 4] [ 12] [000100000000] +09:28:03 [ 7] [ 10] [0320092553] +09:28:03 [ 11] [ 6] [935638] +09:28:03 [ 12] [ 6] [092553] +09:28:03 [ 13] [ 4] [0320] +09:28:03 [ 15] [ 4] [0320] +09:28:03 [ 18] [ 4] [6011] +09:28:03 [ 19] [ 3] [418] +09:28:03 [ 32] [ 6] [668899] +09:28:03 [ 35] [ 32] [6213545000774053=491212017405686] +09:28:03 [ 37] [ 12] [507901963415] +09:28:03 [ 38] [ 6] [658286] +09:28:03 [ 39] [ 2] [00] +09:28:03 [ 41] [ 8] [03020019] +09:28:03 [ 49] [ 3] [418] +09:28:03 [ 54] [ 40] [0001418C0001451279500002418C000145127950] +09:28:03 ============================================================================ +09:28:03 Sending to : +09:28:03 ============================================================================ +09:28:03 + + +waiting on router queue for slot.... +09:28:03 ============================================================================ +09:28:03 Slot Id : <454> +09:28:03 Transaction Type : RESPONSE +09:28:03 Received From : +09:28:03 ============================================================================ +09:28:03 FNo. Len. Field Value +09:28:03 ============================================================================ +09:28:03 [ 1] [ 4] [0210] +09:28:03 [ 2] [ 16] [6688990100924305] +09:28:03 [ 3] [ 6] [301000] +09:28:03 [ 4] [ 12] [000000000000] +09:28:03 [ 11] [ 6] [698857] +09:28:03 [ 12] [ 6] [092758] +09:28:03 [ 15] [ 4] [0320] +09:28:03 [ 18] [ 4] [6011] +09:28:03 [ 32] [ 6] [621354] +09:28:03 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:28:03 [ 37] [ 12] [507904719415] +09:28:03 [ 38] [ 6] [910865] +09:28:03 [ 39] [ 2] [00] +09:28:03 [ 41] [ 8] [18001000] +09:28:03 [ 49] [ 3] [418] +09:28:03 [ 54] [ 20] [1002418C000178681933] +09:28:03 ============================================================================ +09:28:03 Sending to : +09:28:03 ============================================================================ +09:28:03 + + +waiting on router queue for slot.... +09:28:03 ============================================================================ +09:28:03 Slot Id : <14> +09:28:03 Transaction Type : REQUEST +09:28:03 Received From : +09:28:03 ============================================================================ +09:28:03 FNo. Len. Field Value +09:28:03 ============================================================================ +09:28:03 [ 1] [ 4] [0200] +09:28:03 [ 2] [ 16] [2206990000004747] +09:28:03 [ 3] [ 6] [300000] +09:28:03 [ 4] [ 12] [000000000000] +09:28:03 [ 7] [ 10] [0320092759] +09:28:03 [ 11] [ 6] [698863] +09:28:03 [ 12] [ 6] [092759] +09:28:03 [ 13] [ 4] [0320] +09:28:03 [ 15] [ 4] [0320] +09:28:03 [ 18] [ 4] [6011] +09:28:03 [ 22] [ 3] [900] +09:28:03 [ 25] [ 2] [02] +09:28:03 [ 28] [ 9] [D00000000] +09:28:03 [ 32] [ 6] [621354] +09:28:03 [ 35] [ 32] [2206990000004747=951112617714680] +09:28:03 [ 37] [ 12] [507903975176] +09:28:03 [ 41] [ 8] [01011300] +09:28:03 [ 42] [ 15] [NATIVE ] +09:28:03 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +09:28:03 [ 49] [ 3] [418] +09:28:03 [ 52] [ 16] [B28AB0FF0031E2CE] +09:28:03 ============================================================================ +09:28:03 + + +waiting on router queue for slot.... +09:28:03 Sending to : +09:28:03 ============================================================================ +09:28:03 Sending to : +09:28:03 ============================================================================ +09:28:04 ============================================================================ +09:28:04 Slot Id : <14> +09:28:04 Transaction Type : REQUEST +09:28:04 Received From : +09:28:04 ============================================================================ +09:28:04 FNo. Len. Field Value +09:28:04 ============================================================================ +09:28:04 [ 1] [ 4] [0200] +09:28:04 [ 2] [ 16] [2206990000004747] +09:28:04 [ 3] [ 6] [300000] +09:28:04 [ 4] [ 12] [000000000000] +09:28:04 [ 7] [ 10] [0320092759] +09:28:04 [ 11] [ 6] [698863] +09:28:04 [ 12] [ 6] [092759] +09:28:04 [ 13] [ 4] [0320] +09:28:04 [ 15] [ 4] [0320] +09:28:04 [ 18] [ 4] [6011] +09:28:04 [ 22] [ 3] [900] +09:28:04 [ 25] [ 2] [02] +09:28:04 [ 28] [ 9] [D00000000] +09:28:04 [ 32] [ 6] [621354] +09:28:04 [ 35] [ 32] [2206990000004747=951112617714680] +09:28:04 [ 37] [ 12] [507903975176] +09:28:04 [ 41] [ 8] [01011300] +09:28:04 [ 42] [ 15] [NATIVE ] +09:28:04 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +09:28:04 [ 49] [ 3] [418] +09:28:04 [ 52] [ 16] [B28AB0FF0031E2CE] +09:28:04 ============================================================================ +09:28:04 + + +waiting on router queue for slot.... +09:28:04 Sending to : +09:28:04 ============================================================================ +09:28:04 ============================================================================ +09:28:04 Slot Id : <14> +09:28:04 Transaction Type : REQUEST +09:28:04 Received From : +09:28:04 ============================================================================ +09:28:04 FNo. Len. Field Value +09:28:04 ============================================================================ +09:28:04 [ 1] [ 4] [0200] +09:28:04 [ 2] [ 16] [2206990000004747] +09:28:04 [ 3] [ 6] [300000] +09:28:04 [ 4] [ 12] [000000000000] +09:28:04 [ 7] [ 10] [0320092759] +09:28:04 [ 11] [ 6] [698863] +09:28:04 [ 12] [ 6] [092759] +09:28:04 [ 13] [ 4] [0320] +09:28:04 [ 15] [ 4] [0320] +09:28:04 [ 18] [ 4] [6011] +09:28:04 [ 22] [ 3] [900] +09:28:04 [ 25] [ 2] [02] +09:28:04 [ 28] [ 9] [D00000000] +09:28:04 [ 32] [ 6] [621354] +09:28:04 [ 35] [ 32] [2206990000004747=951112617714680] +09:28:04 [ 37] [ 12] [507903975176] +09:28:04 [ 41] [ 8] [01011300] +09:28:04 [ 42] [ 15] [NATIVE ] +09:28:04 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +09:28:04 [ 49] [ 3] [418] +09:28:04 [ 52] [ 16] [A679B23AA9EA4133] +09:28:04 ============================================================================ +09:28:04 + + +waiting on router queue for slot.... +09:28:04 Sending to : <1> +09:28:04 ============================================================================ +09:28:04 ============================================================================ +09:28:04 Slot Id : <485> +09:28:04 Transaction Type : RESPONSE +09:28:04 Received From : +09:28:04 ============================================================================ +09:28:04 FNo. Len. Field Value +09:28:04 ============================================================================ +09:28:04 [ 1] [ 4] [0210] +09:28:04 [ 2] [ 16] [6213545000774053] +09:28:04 [ 3] [ 6] [010000] +09:28:04 [ 4] [ 12] [000100000000] +09:28:04 [ 7] [ 10] [0320092553] +09:28:04 [ 11] [ 6] [935638] +09:28:04 [ 12] [ 6] [092553] +09:28:04 [ 13] [ 4] [0320] +09:28:04 [ 15] [ 4] [0320] +09:28:04 [ 18] [ 4] [6011] +09:28:04 [ 19] [ 3] [418] +09:28:04 [ 32] [ 6] [668899] +09:28:04 [ 35] [ 32] [6213545000774053=491212017405686] +09:28:04 [ 37] [ 12] [507901963415] +09:28:04 [ 38] [ 6] [658286] +09:28:04 [ 39] [ 2] [00] +09:28:04 [ 41] [ 8] [03020019] +09:28:04 [ 49] [ 3] [418] +09:28:04 [ 54] [ 40] [0001418C0001451279500002418C000145127950] +09:28:04 ============================================================================ +09:28:04 Calculate Source COMM Id = 4 +09:28:04 ============================================================================ +09:28:04 + + +waiting on router queue for slot.... +09:28:05 ============================================================================ +09:28:05 Slot Id : <14> +09:28:05 Transaction Type : RESPONSE +09:28:05 Received From : +09:28:05 ============================================================================ +09:28:05 FNo. Len. Field Value +09:28:05 ============================================================================ +09:28:05 [ 1] [ 4] [0210] +09:28:05 [ 2] [ 16] [2206990000004747] +09:28:05 [ 3] [ 6] [300000] +09:28:05 [ 4] [ 12] [000000000000] +09:28:05 [ 7] [ 10] [0320092759] +09:28:05 [ 11] [ 6] [698863] +09:28:05 [ 12] [ 6] [092759] +09:28:05 [ 13] [ 4] [0320] +09:28:05 [ 15] [ 4] [0320] +09:28:05 [ 18] [ 4] [6011] +09:28:05 [ 32] [ 6] [621354] +09:28:05 [ 35] [ 32] [2206990000004747=951112617714680] +09:28:05 [ 37] [ 12] [507903975176] +09:28:05 [ 38] [ 6] [375153] +09:28:05 [ 39] [ 2] [00] +09:28:05 [ 41] [ 8] [01011300] +09:28:05 [ 49] [ 3] [418] +09:28:05 [ 54] [ 40] [0001418C0000624133000002418C000062413300] +09:28:05 ============================================================================ +09:28:05 Sending to : +09:28:05 ============================================================================ +09:28:05 + + +waiting on router queue for slot.... +09:28:06 ============================================================================ +09:28:06 Slot Id : <454> +09:28:06 Transaction Type : RESPONSE +09:28:06 Received From : +09:28:06 ============================================================================ +09:28:06 FNo. Len. Field Value +09:28:06 ============================================================================ +09:28:06 [ 1] [ 4] [0210] +09:28:06 [ 2] [ 16] [6688990100924305] +09:28:06 [ 3] [ 6] [301000] +09:28:06 [ 4] [ 12] [000000000000] +09:28:06 [ 11] [ 6] [698857] +09:28:06 [ 12] [ 6] [092758] +09:28:06 [ 15] [ 4] [0320] +09:28:06 [ 18] [ 4] [6011] +09:28:06 [ 32] [ 6] [621354] +09:28:06 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:28:06 [ 37] [ 12] [507904719415] +09:28:06 [ 38] [ 6] [910865] +09:28:06 [ 39] [ 2] [00] +09:28:06 [ 41] [ 8] [18001000] +09:28:06 [ 49] [ 3] [418] +09:28:06 [ 54] [ 20] [1002418C000178681933] +09:28:06 ============================================================================ +09:28:06 Calculate Source COMM Id = 0 +09:28:06 ============================================================================ +09:28:06 + + +waiting on router queue for slot.... +09:28:08 ============================================================================ +09:28:08 Slot Id : <14> +09:28:08 Transaction Type : RESPONSE +09:28:08 Received From : +09:28:08 ============================================================================ +09:28:08 FNo. Len. Field Value +09:28:08 ============================================================================ +09:28:08 [ 1] [ 4] [0210] +09:28:08 [ 2] [ 16] [2206990000004747] +09:28:08 [ 3] [ 6] [300000] +09:28:08 [ 4] [ 12] [000000000000] +09:28:08 [ 7] [ 10] [0320092759] +09:28:08 [ 11] [ 6] [698863] +09:28:08 [ 12] [ 6] [092759] +09:28:08 [ 13] [ 4] [0320] +09:28:08 [ 15] [ 4] [0320] +09:28:08 [ 18] [ 4] [6011] +09:28:08 [ 32] [ 6] [621354] +09:28:08 [ 35] [ 32] [2206990000004747=951112617714680] +09:28:08 [ 37] [ 12] [507903975176] +09:28:08 [ 38] [ 6] [375153] +09:28:08 [ 39] [ 2] [00] +09:28:08 [ 41] [ 8] [01011300] +09:28:08 [ 49] [ 3] [418] +09:28:08 [ 54] [ 40] [0001418C0000624133000002418C000062413300] +09:28:08 ============================================================================ +09:28:08 Calculate Source COMM Id = 0 +09:28:08 ============================================================================ +09:28:08 + + +waiting on router queue for slot.... +09:28:10 ============================================================================ +09:28:10 Slot Id : <13> +09:28:10 Transaction Type : REQUEST +09:28:10 Received From : +09:28:10 ============================================================================ +09:28:10 FNo. Len. Field Value +09:28:10 ============================================================================ +09:28:10 [ 1] [ 4] [0800] +09:28:10 [ 7] [ 10] [0320022718] +09:28:10 [ 11] [ 6] [155638] +09:28:10 [ 70] [ 3] [301] +09:28:10 ============================================================================ +09:28:10 + + +waiting on router queue for slot.... +09:28:10 Sending to : +09:28:10 ============================================================================ +09:28:10 ============================================================================ +09:28:10 Slot Id : <13> +09:28:10 Transaction Type : RESPONSE +09:28:10 Received From : +09:28:10 ============================================================================ +09:28:10 FNo. Len. Field Value +09:28:10 ============================================================================ +09:28:10 [ 1] [ 4] [0810] +09:28:10 [ 7] [ 10] [0320022718] +09:28:10 [ 11] [ 6] [155638] +09:28:10 [ 39] [ 2] [00] +09:28:10 [ 70] [ 3] [301] +09:28:10 ============================================================================ +09:28:10 Calculate Source COMM Id = 2 +09:28:10 ============================================================================ +09:28:10 + + +waiting on router queue for slot.... +09:28:17 ============================================================================ +09:28:17 Slot Id : <12> +09:28:17 Transaction Type : REQUEST +09:28:17 Received From : +09:28:17 ============================================================================ +09:28:17 FNo. Len. Field Value +09:28:17 ============================================================================ +09:28:17 [ 1] [ 4] [0200] +09:28:17 [ 2] [ 16] [1808931800018119] +09:28:17 [ 3] [ 6] [010000] +09:28:17 [ 4] [ 12] [000100000000] +09:28:17 [ 7] [ 10] [0320092813] +09:28:17 [ 11] [ 6] [698927] +09:28:17 [ 12] [ 6] [092813] +09:28:17 [ 13] [ 4] [0320] +09:28:17 [ 15] [ 4] [0320] +09:28:17 [ 18] [ 4] [6011] +09:28:17 [ 22] [ 3] [900] +09:28:17 [ 25] [ 2] [02] +09:28:17 [ 28] [ 9] [D00002000] +09:28:17 [ 32] [ 6] [621354] +09:28:17 [ 35] [ 27] [1808931800018119=1803500577] +09:28:17 [ 37] [ 12] [507904635462] +09:28:17 [ 41] [ 8] [17000800] +09:28:17 [ 42] [ 15] [NATIVE ] +09:28:17 [ 43] [ 40] [Ban Nakhai Naxay LAO] +09:28:17 [ 49] [ 3] [418] +09:28:17 [ 52] [ 16] [FDDBC3E0BDB6C9D9] +09:28:17 ============================================================================ +09:28:17 + + +waiting on router queue for slot.... +09:28:17 Sending to : +09:28:17 ============================================================================ +09:28:17 Sending to : +09:28:17 ============================================================================ +09:28:17 ============================================================================ +09:28:17 Slot Id : <12> +09:28:17 Transaction Type : REQUEST +09:28:17 Received From : +09:28:17 ============================================================================ +09:28:17 FNo. Len. Field Value +09:28:17 ============================================================================ +09:28:17 [ 1] [ 4] [0200] +09:28:17 [ 2] [ 16] [1808931800018119] +09:28:17 [ 3] [ 6] [010000] +09:28:17 [ 4] [ 12] [000100000000] +09:28:17 [ 7] [ 10] [0320092813] +09:28:17 [ 11] [ 6] [698927] +09:28:17 [ 12] [ 6] [092813] +09:28:17 [ 13] [ 4] [0320] +09:28:17 [ 15] [ 4] [0320] +09:28:17 [ 18] [ 4] [6011] +09:28:17 [ 22] [ 3] [900] +09:28:17 [ 25] [ 2] [02] +09:28:17 [ 28] [ 9] [D00002000] +09:28:17 [ 32] [ 6] [621354] +09:28:17 [ 35] [ 27] [1808931800018119=1803500577] +09:28:17 [ 37] [ 12] [507904635462] +09:28:17 [ 41] [ 8] [17000800] +09:28:17 [ 42] [ 15] [NATIVE ] +09:28:17 [ 43] [ 40] [Ban Nakhai Naxay LAO] +09:28:17 [ 49] [ 3] [418] +09:28:17 [ 52] [ 16] [FDDBC3E0BDB6C9D9] +09:28:17 ============================================================================ +09:28:17 + + +waiting on router queue for slot.... +09:28:17 Sending to : +09:28:17 ============================================================================ +09:28:17 ============================================================================ +09:28:17 Slot Id : <12> +09:28:17 Transaction Type : REQUEST +09:28:17 Received From : +09:28:17 ============================================================================ +09:28:17 FNo. Len. Field Value +09:28:17 ============================================================================ +09:28:17 [ 1] [ 4] [0200] +09:28:17 [ 2] [ 16] [1808931800018119] +09:28:17 [ 3] [ 6] [010000] +09:28:17 [ 4] [ 12] [000100000000] +09:28:17 [ 7] [ 10] [0320092813] +09:28:17 [ 11] [ 6] [698927] +09:28:17 [ 12] [ 6] [092813] +09:28:17 [ 13] [ 4] [0320] +09:28:17 [ 15] [ 4] [0320] +09:28:17 [ 18] [ 4] [6011] +09:28:17 [ 22] [ 3] [900] +09:28:17 [ 25] [ 2] [02] +09:28:17 [ 28] [ 9] [D00002000] +09:28:17 [ 32] [ 6] [621354] +09:28:17 [ 35] [ 27] [1808931800018119=1803500577] +09:28:17 [ 37] [ 12] [507904635462] +09:28:17 [ 41] [ 8] [17000800] +09:28:17 [ 42] [ 15] [NATIVE ] +09:28:17 [ 43] [ 40] [Ban Nakhai Naxay LAO] +09:28:17 [ 49] [ 3] [418] +09:28:17 [ 52] [ 16] [A211D6357C6C8B66] +09:28:17 ============================================================================ +09:28:17 + + +waiting on router queue for slot.... +09:28:17 Sending to : <2> +09:28:17 ============================================================================ +09:28:21 ============================================================================ +09:28:21 Slot Id : <12> +09:28:21 Transaction Type : RESPONSE +09:28:21 Received From : +09:28:21 ============================================================================ +09:28:21 FNo. Len. Field Value +09:28:21 ============================================================================ +09:28:21 [ 1] [ 4] [0210] +09:28:21 [ 2] [ 16] [1808931800018119] +09:28:21 [ 3] [ 6] [010000] +09:28:21 [ 4] [ 12] [000100000000] +09:28:21 [ 6] [ 12] [000100000000] +09:28:21 [ 7] [ 10] [0320092813] +09:28:21 [ 11] [ 6] [698927] +09:28:21 [ 12] [ 6] [092813] +09:28:21 [ 13] [ 4] [0320] +09:28:21 [ 18] [ 4] [6011] +09:28:21 [ 19] [ 3] [418] +09:28:21 [ 22] [ 3] [021] +09:28:21 [ 28] [ 9] [D00002000] +09:28:21 [ 32] [ 6] [621354] +09:28:21 [ 35] [ 27] [1808931800018119=1803500577] +09:28:21 [ 37] [ 12] [507904635462] +09:28:21 [ 39] [ 2] [55] +09:28:21 [ 41] [ 8] [17000800] +09:28:21 [ 49] [ 3] [418] +09:28:21 [ 51] [ 3] [418] +09:28:21 [ 52] [ 16] [A211D6357C6C8B66] +09:28:21 ============================================================================ +09:28:21 Sending to : +09:28:21 ============================================================================ +09:28:21 + + +waiting on router queue for slot.... +09:28:23 ============================================================================ +09:28:23 Slot Id : <12> +09:28:23 Transaction Type : RESPONSE +09:28:23 Received From : +09:28:23 ============================================================================ +09:28:23 FNo. Len. Field Value +09:28:23 ============================================================================ +09:28:23 [ 1] [ 4] [0210] +09:28:23 [ 2] [ 16] [1808931800018119] +09:28:23 [ 3] [ 6] [010000] +09:28:23 [ 4] [ 12] [000100000000] +09:28:23 [ 6] [ 12] [000100000000] +09:28:23 [ 7] [ 10] [0320092813] +09:28:23 [ 11] [ 6] [698927] +09:28:23 [ 12] [ 6] [092813] +09:28:23 [ 13] [ 4] [0320] +09:28:23 [ 18] [ 4] [6011] +09:28:23 [ 19] [ 3] [418] +09:28:23 [ 22] [ 3] [021] +09:28:23 [ 28] [ 9] [D00002000] +09:28:23 [ 32] [ 6] [621354] +09:28:23 [ 35] [ 27] [1808931800018119=1803500577] +09:28:23 [ 37] [ 12] [507904635462] +09:28:23 [ 39] [ 2] [55] +09:28:23 [ 41] [ 8] [17000800] +09:28:23 [ 49] [ 3] [418] +09:28:23 [ 51] [ 3] [418] +09:28:23 [ 52] [ 16] [A211D6357C6C8B66] +09:28:23 ============================================================================ +09:28:23 Calculate Source COMM Id = 0 +09:28:23 ============================================================================ +09:28:23 + + +waiting on router queue for slot.... +09:28:33 ============================================================================ +09:28:33 Slot Id : <16> +09:28:33 Transaction Type : REQUEST +09:28:33 Received From : +09:28:33 ============================================================================ +09:28:33 FNo. Len. Field Value +09:28:33 ============================================================================ +09:28:33 [ 1] [ 4] [0800] +09:28:33 [ 7] [ 10] [0320022740] +09:28:33 [ 11] [ 6] [155639] +09:28:33 [ 70] [ 3] [301] +09:28:33 ============================================================================ +09:28:33 + + +waiting on router queue for slot.... +09:28:33 Sending to : +09:28:33 ============================================================================ +09:28:33 ============================================================================ +09:28:33 Slot Id : <16> +09:28:33 Transaction Type : RESPONSE +09:28:33 Received From : +09:28:33 ============================================================================ +09:28:33 FNo. Len. Field Value +09:28:33 ============================================================================ +09:28:33 [ 1] [ 4] [0810] +09:28:33 [ 7] [ 10] [0320022740] +09:28:33 [ 11] [ 6] [155639] +09:28:33 [ 39] [ 2] [00] +09:28:33 [ 70] [ 3] [301] +09:28:33 ============================================================================ +09:28:33 Calculate Source COMM Id = 2 +09:28:33 ============================================================================ +09:28:33 + + +waiting on router queue for slot.... +09:28:35 ============================================================================ +09:28:35 Slot Id : <494> +09:28:35 Transaction Type : REQUEST +09:28:35 Received From : +09:28:35 ============================================================================ +09:28:35 FNo. Len. Field Value +09:28:35 ============================================================================ +09:28:35 [ 1] [ 4] [0200] +09:28:35 [ 2] [ 16] [6213548000508034] +09:28:35 [ 3] [ 6] [010000] +09:28:35 [ 4] [ 12] [000010000000] +09:28:35 [ 7] [ 10] [0320022743] +09:28:35 [ 11] [ 6] [267522] +09:28:35 [ 12] [ 6] [092743] +09:28:35 [ 13] [ 4] [0320] +09:28:35 [ 14] [ 4] [1811] +09:28:35 [ 15] [ 4] [0320] +09:28:35 [ 18] [ 4] [6011] +09:28:35 [ 19] [ 3] [418] +09:28:35 [ 22] [ 3] [021] +09:28:35 [ 25] [ 2] [01] +09:28:35 [ 28] [ 9] [D00002000] +09:28:35 [ 32] [ 6] [180893] +09:28:35 [ 35] [ 32] [6213548000508034=181112010803962] +09:28:35 [ 37] [ 12] [507902267522] +09:28:35 [ 41] [ 8] [0221XKKM] +09:28:35 [ 42] [ 15] [999999 ] +09:28:35 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:28:35 [ 49] [ 3] [418] +09:28:35 [ 52] [ 16] [81503C516EED7E80] +09:28:35 ============================================================================ +09:28:35 + + +waiting on router queue for slot.... +09:28:35 Sending to : +09:28:35 ============================================================================ +09:28:35 Sending to : +09:28:35 ============================================================================ +09:28:36 ============================================================================ +09:28:36 Slot Id : <494> +09:28:36 Transaction Type : REQUEST +09:28:36 Received From : +09:28:36 ============================================================================ +09:28:36 FNo. Len. Field Value +09:28:36 ============================================================================ +09:28:36 [ 1] [ 4] [0200] +09:28:36 [ 2] [ 16] [6213548000508034] +09:28:36 [ 3] [ 6] [010000] +09:28:36 [ 4] [ 12] [000010000000] +09:28:36 [ 7] [ 10] [0320022743] +09:28:36 [ 11] [ 6] [267522] +09:28:36 [ 12] [ 6] [092743] +09:28:36 [ 13] [ 4] [0320] +09:28:36 [ 14] [ 4] [1811] +09:28:36 [ 15] [ 4] [0320] +09:28:36 [ 18] [ 4] [6011] +09:28:36 [ 19] [ 3] [418] +09:28:36 [ 22] [ 3] [021] +09:28:36 [ 25] [ 2] [01] +09:28:36 [ 28] [ 9] [D00002000] +09:28:36 [ 32] [ 6] [180893] +09:28:36 [ 35] [ 32] [6213548000508034=181112010803962] +09:28:36 [ 37] [ 12] [507902267522] +09:28:36 [ 41] [ 8] [0221XKKM] +09:28:36 [ 42] [ 15] [999999 ] +09:28:36 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:28:36 [ 49] [ 3] [418] +09:28:36 [ 52] [ 16] [81503C516EED7E80] +09:28:36 ============================================================================ +09:28:36 + + +waiting on router queue for slot.... +09:28:36 Sending to : +09:28:36 ============================================================================ +09:28:36 ============================================================================ +09:28:36 Slot Id : <494> +09:28:36 Transaction Type : REQUEST +09:28:36 Received From : +09:28:36 ============================================================================ +09:28:36 FNo. Len. Field Value +09:28:36 ============================================================================ +09:28:36 [ 1] [ 4] [0200] +09:28:36 [ 2] [ 16] [6213548000508034] +09:28:36 [ 3] [ 6] [010000] +09:28:36 [ 4] [ 12] [000010000000] +09:28:36 [ 7] [ 10] [0320022743] +09:28:36 [ 11] [ 6] [267522] +09:28:36 [ 12] [ 6] [092743] +09:28:36 [ 13] [ 4] [0320] +09:28:36 [ 14] [ 4] [1811] +09:28:36 [ 15] [ 4] [0320] +09:28:36 [ 18] [ 4] [6011] +09:28:36 [ 19] [ 3] [418] +09:28:36 [ 22] [ 3] [021] +09:28:36 [ 25] [ 2] [01] +09:28:36 [ 28] [ 9] [D00002000] +09:28:36 [ 32] [ 6] [180893] +09:28:36 [ 35] [ 32] [6213548000508034=181112010803962] +09:28:36 [ 37] [ 12] [507902267522] +09:28:36 [ 41] [ 8] [0221XKKM] +09:28:36 [ 42] [ 15] [999999 ] +09:28:36 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:28:36 [ 49] [ 3] [418] +09:28:36 [ 52] [ 16] [7ECBB18AEBC0616B] +09:28:36 ============================================================================ +09:28:36 + + +waiting on router queue for slot.... +09:28:36 Sending to : <0> +09:28:36 ============================================================================ +09:28:36 ============================================================================ +09:28:36 Slot Id : <494> +09:28:36 Transaction Type : RESPONSE +09:28:36 Received From : +09:28:36 ============================================================================ +09:28:36 FNo. Len. Field Value +09:28:36 ============================================================================ +09:28:36 [ 1] [ 4] [0210] +09:28:36 [ 2] [ 16] [6213548000508034] +09:28:36 [ 3] [ 6] [010000] +09:28:36 [ 4] [ 12] [000010000000] +09:28:36 [ 7] [ 10] [0320022743] +09:28:36 [ 11] [ 6] [267522] +09:28:36 [ 12] [ 6] [092743] +09:28:36 [ 13] [ 4] [0320] +09:28:36 [ 15] [ 4] [0320] +09:28:36 [ 18] [ 4] [6011] +09:28:36 [ 19] [ 3] [418] +09:28:36 [ 22] [ 3] [021] +09:28:36 [ 32] [ 6] [180893] +09:28:36 [ 35] [ 32] [6213548000508034=181112010803962] +09:28:36 [ 37] [ 12] [507902267522] +09:28:36 [ 38] [ 6] [092832] +09:28:36 [ 39] [ 2] [55] +09:28:36 [ 41] [ 8] [0221XKKM] +09:28:36 [ 49] [ 3] [418] +09:28:36 ============================================================================ +09:28:36 Sending to : +09:28:36 ============================================================================ +09:28:36 + + +waiting on router queue for slot.... +09:28:37 ============================================================================ +09:28:37 Slot Id : <494> +09:28:37 Transaction Type : RESPONSE +09:28:37 Received From : +09:28:37 ============================================================================ +09:28:37 FNo. Len. Field Value +09:28:37 ============================================================================ +09:28:37 [ 1] [ 4] [0210] +09:28:37 [ 2] [ 16] [6213548000508034] +09:28:37 [ 3] [ 6] [010000] +09:28:37 [ 4] [ 12] [000010000000] +09:28:37 [ 7] [ 10] [0320022743] +09:28:37 [ 11] [ 6] [267522] +09:28:37 [ 12] [ 6] [092743] +09:28:37 [ 13] [ 4] [0320] +09:28:37 [ 15] [ 4] [0320] +09:28:37 [ 18] [ 4] [6011] +09:28:37 [ 19] [ 3] [418] +09:28:37 [ 22] [ 3] [021] +09:28:37 [ 32] [ 6] [180893] +09:28:37 [ 35] [ 32] [6213548000508034=181112010803962] +09:28:37 [ 37] [ 12] [507902267522] +09:28:37 [ 38] [ 6] [092832] +09:28:37 [ 39] [ 2] [55] +09:28:37 [ 41] [ 8] [0221XKKM] +09:28:37 [ 49] [ 3] [418] +09:28:37 ============================================================================ +09:28:37 Calculate Source COMM Id = 2 +09:28:37 ============================================================================ +09:28:37 + + +waiting on router queue for slot.... +09:28:46 ============================================================================ +09:28:46 Slot Id : <22> +09:28:46 Transaction Type : REQUEST +09:28:46 Received From : +09:28:46 ============================================================================ +09:28:46 FNo. Len. Field Value +09:28:46 ============================================================================ +09:28:46 [ 1] [ 4] [0200] +09:28:46 [ 2] [ 16] [6213541000250616] +09:28:46 [ 3] [ 6] [010000] +09:28:46 [ 4] [ 12] [000050000000] +09:28:46 [ 7] [ 10] [0320022751] +09:28:46 [ 11] [ 6] [267525] +09:28:46 [ 12] [ 6] [092751] +09:28:46 [ 13] [ 4] [0320] +09:28:46 [ 14] [ 4] [4912] +09:28:46 [ 15] [ 4] [0320] +09:28:46 [ 18] [ 4] [6011] +09:28:46 [ 19] [ 3] [418] +09:28:46 [ 22] [ 3] [021] +09:28:46 [ 25] [ 2] [01] +09:28:46 [ 28] [ 9] [D00002000] +09:28:46 [ 32] [ 6] [180893] +09:28:46 [ 35] [ 32] [6213541000250616=491212015061558] +09:28:46 [ 37] [ 12] [507902267525] +09:28:46 [ 41] [ 8] [0401XSBR] +09:28:46 [ 42] [ 15] [999999 ] +09:28:46 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:28:46 [ 49] [ 3] [418] +09:28:46 [ 52] [ 16] [A715D357856ED535] +09:28:46 ============================================================================ +09:28:46 + + +waiting on router queue for slot.... +09:28:46 Sending to : +09:28:46 ============================================================================ +09:28:46 Sending to : +09:28:46 ============================================================================ +09:28:47 ============================================================================ +09:28:47 Slot Id : <22> +09:28:47 Transaction Type : REQUEST +09:28:47 Received From : +09:28:47 ============================================================================ +09:28:47 FNo. Len. Field Value +09:28:47 ============================================================================ +09:28:47 [ 1] [ 4] [0200] +09:28:47 [ 2] [ 16] [6213541000250616] +09:28:47 [ 3] [ 6] [010000] +09:28:47 [ 4] [ 12] [000050000000] +09:28:47 [ 7] [ 10] [0320022751] +09:28:47 [ 11] [ 6] [267525] +09:28:47 [ 12] [ 6] [092751] +09:28:47 [ 13] [ 4] [0320] +09:28:47 [ 14] [ 4] [4912] +09:28:47 [ 15] [ 4] [0320] +09:28:47 [ 18] [ 4] [6011] +09:28:47 [ 19] [ 3] [418] +09:28:47 [ 22] [ 3] [021] +09:28:47 [ 25] [ 2] [01] +09:28:47 [ 28] [ 9] [D00002000] +09:28:47 [ 32] [ 6] [180893] +09:28:47 [ 35] [ 32] [6213541000250616=491212015061558] +09:28:47 [ 37] [ 12] [507902267525] +09:28:47 [ 41] [ 8] [0401XSBR] +09:28:47 [ 42] [ 15] [999999 ] +09:28:47 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:28:47 [ 49] [ 3] [418] +09:28:47 [ 52] [ 16] [A715D357856ED535] +09:28:47 ============================================================================ +09:28:47 + + +waiting on router queue for slot.... +09:28:47 Sending to : +09:28:47 ============================================================================ +09:28:47 ============================================================================ +09:28:47 Slot Id : <22> +09:28:47 Transaction Type : REQUEST +09:28:47 Received From : +09:28:47 ============================================================================ +09:28:47 FNo. Len. Field Value +09:28:47 ============================================================================ +09:28:47 [ 1] [ 4] [0200] +09:28:47 [ 2] [ 16] [6213541000250616] +09:28:47 [ 3] [ 6] [010000] +09:28:47 [ 4] [ 12] [000050000000] +09:28:47 [ 7] [ 10] [0320022751] +09:28:47 [ 11] [ 6] [267525] +09:28:47 [ 12] [ 6] [092751] +09:28:47 [ 13] [ 4] [0320] +09:28:47 [ 14] [ 4] [4912] +09:28:47 [ 15] [ 4] [0320] +09:28:47 [ 18] [ 4] [6011] +09:28:47 [ 19] [ 3] [418] +09:28:47 [ 22] [ 3] [021] +09:28:47 [ 25] [ 2] [01] +09:28:47 [ 28] [ 9] [D00002000] +09:28:47 [ 32] [ 6] [180893] +09:28:47 [ 35] [ 32] [6213541000250616=491212015061558] +09:28:47 [ 37] [ 12] [507902267525] +09:28:47 [ 41] [ 8] [0401XSBR] +09:28:47 [ 42] [ 15] [999999 ] +09:28:47 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:28:47 [ 49] [ 3] [418] +09:28:47 [ 52] [ 16] [CCFFC651D53AE0B2] +09:28:47 ============================================================================ +09:28:47 + + +waiting on router queue for slot.... +09:28:47 Sending to : <0> +09:28:47 ============================================================================ +09:28:47 ============================================================================ +09:28:47 Slot Id : <22> +09:28:47 Transaction Type : RESPONSE +09:28:47 Received From : +09:28:47 ============================================================================ +09:28:47 FNo. Len. Field Value +09:28:47 ============================================================================ +09:28:47 [ 1] [ 4] [0210] +09:28:47 [ 2] [ 16] [6213541000250616] +09:28:47 [ 3] [ 6] [010000] +09:28:47 [ 4] [ 12] [000050000000] +09:28:47 [ 7] [ 10] [0320022751] +09:28:47 [ 11] [ 6] [267525] +09:28:47 [ 12] [ 6] [092751] +09:28:47 [ 13] [ 4] [0320] +09:28:47 [ 15] [ 4] [0320] +09:28:47 [ 18] [ 4] [6011] +09:28:47 [ 19] [ 3] [418] +09:28:47 [ 32] [ 6] [180893] +09:28:47 [ 35] [ 32] [6213541000250616=491212015061558] +09:28:47 [ 37] [ 12] [507902267525] +09:28:47 [ 38] [ 6] [287722] +09:28:47 [ 39] [ 2] [00] +09:28:47 [ 41] [ 8] [0401XSBR] +09:28:47 [ 49] [ 3] [418] +09:28:47 [ 54] [ 40] [0001418C0005538745410002418C000553874541] +09:28:47 ============================================================================ +09:28:47 Sending to : +09:28:47 ============================================================================ +09:28:47 + + +waiting on router queue for slot.... +09:28:48 ============================================================================ +09:28:48 Slot Id : <491> +09:28:48 Transaction Type : REQUEST +09:28:48 Received From : +09:28:48 ============================================================================ +09:28:48 FNo. Len. Field Value +09:28:48 ============================================================================ +09:28:48 [ 1] [ 4] [0800] +09:28:48 [ 7] [ 10] [0320022757] +09:28:48 [ 11] [ 6] [155640] +09:28:48 [ 70] [ 3] [301] +09:28:48 ============================================================================ +09:28:48 + + +waiting on router queue for slot.... +09:28:48 Sending to : +09:28:48 ============================================================================ +09:28:48 ============================================================================ +09:28:48 Slot Id : <491> +09:28:48 Transaction Type : RESPONSE +09:28:48 Received From : +09:28:48 ============================================================================ +09:28:48 FNo. Len. Field Value +09:28:48 ============================================================================ +09:28:48 [ 1] [ 4] [0810] +09:28:48 [ 7] [ 10] [0320022757] +09:28:48 [ 11] [ 6] [155640] +09:28:48 [ 39] [ 2] [00] +09:28:48 [ 70] [ 3] [301] +09:28:48 ============================================================================ +09:28:48 Calculate Source COMM Id = 2 +09:28:48 ============================================================================ +09:28:48 + + +waiting on router queue for slot.... +09:28:49 ============================================================================ +09:28:49 Slot Id : <22> +09:28:49 Transaction Type : RESPONSE +09:28:49 Received From : +09:28:49 ============================================================================ +09:28:49 FNo. Len. Field Value +09:28:49 ============================================================================ +09:28:49 [ 1] [ 4] [0210] +09:28:49 [ 2] [ 16] [6213541000250616] +09:28:49 [ 3] [ 6] [010000] +09:28:49 [ 4] [ 12] [000050000000] +09:28:49 [ 7] [ 10] [0320022751] +09:28:49 [ 11] [ 6] [267525] +09:28:49 [ 12] [ 6] [092751] +09:28:49 [ 13] [ 4] [0320] +09:28:49 [ 15] [ 4] [0320] +09:28:49 [ 18] [ 4] [6011] +09:28:49 [ 19] [ 3] [418] +09:28:49 [ 32] [ 6] [180893] +09:28:49 [ 35] [ 32] [6213541000250616=491212015061558] +09:28:49 [ 37] [ 12] [507902267525] +09:28:49 [ 38] [ 6] [287722] +09:28:49 [ 39] [ 2] [00] +09:28:49 [ 41] [ 8] [0401XSBR] +09:28:49 [ 49] [ 3] [418] +09:28:49 [ 54] [ 40] [0001418C0005538745410002418C000553874541] +09:28:49 ============================================================================ +09:28:49 Calculate Source COMM Id = 2 +09:28:49 ============================================================================ +09:28:49 + + +waiting on router queue for slot.... +09:28:54 ============================================================================ +09:28:54 Slot Id : <469> +09:28:54 Transaction Type : REQUEST +09:28:54 Received From : +09:28:54 ============================================================================ +09:28:54 FNo. Len. Field Value +09:28:54 ============================================================================ +09:28:54 [ 1] [ 4] [0800] +09:28:54 [ 7] [ 10] [0320164042] +09:28:54 [ 11] [ 6] [094042] +09:28:54 [ 37] [ 12] [57909094042] +09:28:54 [ 70] [ 3] [301] +09:28:54 ============================================================================ +09:28:54 + + +waiting on router queue for slot.... +09:28:54 Sending to : +09:28:54 ============================================================================ +09:28:54 ============================================================================ +09:28:54 Slot Id : <469> +09:28:54 Transaction Type : RESPONSE +09:28:54 Received From : +09:28:54 ============================================================================ +09:28:54 FNo. Len. Field Value +09:28:54 ============================================================================ +09:28:54 [ 1] [ 4] [0810] +09:28:54 [ 7] [ 10] [0320164042] +09:28:54 [ 11] [ 6] [094042] +09:28:54 [ 37] [ 12] [579090940420] +09:28:54 [ 39] [ 2] [00] +09:28:54 [ 70] [ 3] [810] +09:28:54 ============================================================================ +09:28:54 Calculate Source COMM Id = 6 +09:28:54 ============================================================================ +09:28:54 + + +waiting on router queue for slot.... +09:28:56 ============================================================================ +09:28:56 Slot Id : <17> +09:28:56 Transaction Type : REQUEST +09:28:56 Received From : +09:28:56 ============================================================================ +09:28:56 FNo. Len. Field Value +09:28:56 ============================================================================ +09:28:56 [ 1] [ 4] [0800] +09:28:56 [ 2] [ 5] [02531] +09:28:56 [ 3] [ 6] [579098] +09:28:56 [ 7] [ 10] [0320022856] +09:28:56 [ 11] [ 6] [806962] +09:28:56 [ 15] [ 10] [0320022856] +09:28:56 [ 37] [ 11] [57909806962] +09:28:56 [ 70] [ 3] [001] +09:28:56 ============================================================================ +09:28:56 + + +waiting on router queue for slot.... +09:28:57 ============================================================================ +09:28:57 Slot Id : <17> +09:28:57 Transaction Type : RESPONSE +09:28:57 Received From : +09:28:57 ============================================================================ +09:28:57 FNo. Len. Field Value +09:28:57 ============================================================================ +09:28:57 [ 1] [ 4] [0810] +09:28:57 [ 7] [ 10] [0320022856] +09:28:57 [ 11] [ 6] [806962] +09:28:57 [ 15] [ 4] [0320] +09:28:57 [ 37] [ 12] [57909806962] +09:28:57 [ 39] [ 2] [00] +09:28:57 [ 70] [ 3] [001] +09:28:57 ============================================================================ +09:28:57 Sending to : +09:28:57 ============================================================================ +09:28:57 + + +waiting on router queue for slot.... +09:29:05 ============================================================================ +09:29:05 Slot Id : <499> +09:29:05 Transaction Type : REQUEST +09:29:05 Received From : +09:29:05 ============================================================================ +09:29:05 FNo. Len. Field Value +09:29:05 ============================================================================ +09:29:05 [ 1] [ 4] [0800] +09:29:05 [ 7] [ 10] [0320022813] +09:29:05 [ 11] [ 6] [155641] +09:29:05 [ 70] [ 3] [301] +09:29:05 ============================================================================ +09:29:05 + + +waiting on router queue for slot.... +09:29:05 Sending to : +09:29:05 ============================================================================ +09:29:05 ============================================================================ +09:29:05 Slot Id : <499> +09:29:05 Transaction Type : RESPONSE +09:29:05 Received From : +09:29:05 ============================================================================ +09:29:05 FNo. Len. Field Value +09:29:05 ============================================================================ +09:29:05 [ 1] [ 4] [0810] +09:29:05 [ 7] [ 10] [0320022813] +09:29:05 [ 11] [ 6] [155641] +09:29:05 [ 39] [ 2] [00] +09:29:05 [ 70] [ 3] [301] +09:29:05 ============================================================================ +09:29:05 Calculate Source COMM Id = 2 +09:29:05 ============================================================================ +09:29:05 + + +waiting on router queue for slot.... +09:29:15 ============================================================================ +09:29:15 Slot Id : <481> +09:29:15 Transaction Type : REQUEST +09:29:15 Received From : +09:29:15 ============================================================================ +09:29:15 FNo. Len. Field Value +09:29:15 ============================================================================ +09:29:15 [ 1] [ 4] [0200] +09:29:15 [ 2] [ 16] [6213548000508034] +09:29:15 [ 3] [ 6] [010000] +09:29:15 [ 4] [ 12] [000010000000] +09:29:15 [ 7] [ 10] [0320022823] +09:29:15 [ 11] [ 6] [267532] +09:29:15 [ 12] [ 6] [092823] +09:29:15 [ 13] [ 4] [0320] +09:29:15 [ 14] [ 4] [1811] +09:29:15 [ 15] [ 4] [0320] +09:29:15 [ 18] [ 4] [6011] +09:29:15 [ 19] [ 3] [418] +09:29:15 [ 22] [ 3] [021] +09:29:15 [ 25] [ 2] [01] +09:29:15 [ 28] [ 9] [D00002000] +09:29:15 [ 32] [ 6] [180893] +09:29:15 [ 35] [ 32] [6213548000508034=181112010803962] +09:29:15 [ 37] [ 12] [507902267532] +09:29:15 [ 41] [ 8] [0221XKKM] +09:29:15 [ 42] [ 15] [999999 ] +09:29:15 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:29:15 [ 49] [ 3] [418] +09:29:15 [ 52] [ 16] [56F73AF973E8E7A6] +09:29:15 ============================================================================ +09:29:15 + + +waiting on router queue for slot.... +09:29:15 Sending to : +09:29:15 ============================================================================ +09:29:15 Sending to : +09:29:15 ============================================================================ +09:29:16 ============================================================================ +09:29:16 Slot Id : <481> +09:29:16 Transaction Type : REQUEST +09:29:16 Received From : +09:29:16 ============================================================================ +09:29:16 FNo. Len. Field Value +09:29:16 ============================================================================ +09:29:16 [ 1] [ 4] [0200] +09:29:16 [ 2] [ 16] [6213548000508034] +09:29:16 [ 3] [ 6] [010000] +09:29:16 [ 4] [ 12] [000010000000] +09:29:16 [ 7] [ 10] [0320022823] +09:29:16 [ 11] [ 6] [267532] +09:29:16 [ 12] [ 6] [092823] +09:29:16 [ 13] [ 4] [0320] +09:29:16 [ 14] [ 4] [1811] +09:29:16 [ 15] [ 4] [0320] +09:29:16 [ 18] [ 4] [6011] +09:29:16 [ 19] [ 3] [418] +09:29:16 [ 22] [ 3] [021] +09:29:16 [ 25] [ 2] [01] +09:29:16 [ 28] [ 9] [D00002000] +09:29:16 [ 32] [ 6] [180893] +09:29:16 [ 35] [ 32] [6213548000508034=181112010803962] +09:29:16 [ 37] [ 12] [507902267532] +09:29:16 [ 41] [ 8] [0221XKKM] +09:29:16 [ 42] [ 15] [999999 ] +09:29:16 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:29:16 [ 49] [ 3] [418] +09:29:16 [ 52] [ 16] [56F73AF973E8E7A6] +09:29:16 ============================================================================ +09:29:16 + + +waiting on router queue for slot.... +09:29:16 Sending to : +09:29:16 ============================================================================ +09:29:16 ============================================================================ +09:29:16 Slot Id : <481> +09:29:16 Transaction Type : REQUEST +09:29:16 Received From : +09:29:16 ============================================================================ +09:29:16 FNo. Len. Field Value +09:29:16 ============================================================================ +09:29:16 [ 1] [ 4] [0200] +09:29:16 [ 2] [ 16] [6213548000508034] +09:29:16 [ 3] [ 6] [010000] +09:29:16 [ 4] [ 12] [000010000000] +09:29:16 [ 7] [ 10] [0320022823] +09:29:16 [ 11] [ 6] [267532] +09:29:16 [ 12] [ 6] [092823] +09:29:16 [ 13] [ 4] [0320] +09:29:16 [ 14] [ 4] [1811] +09:29:16 [ 15] [ 4] [0320] +09:29:16 [ 18] [ 4] [6011] +09:29:16 [ 19] [ 3] [418] +09:29:16 [ 22] [ 3] [021] +09:29:16 [ 25] [ 2] [01] +09:29:16 [ 28] [ 9] [D00002000] +09:29:16 [ 32] [ 6] [180893] +09:29:16 [ 35] [ 32] [6213548000508034=181112010803962] +09:29:16 [ 37] [ 12] [507902267532] +09:29:16 [ 41] [ 8] [0221XKKM] +09:29:16 [ 42] [ 15] [999999 ] +09:29:16 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:29:16 [ 49] [ 3] [418] +09:29:16 [ 52] [ 16] [72FF5823B6388F9B] +09:29:16 ============================================================================ +09:29:16 + + +waiting on router queue for slot.... +09:29:16 Sending to : <0> +09:29:16 ============================================================================ +09:29:16 ============================================================================ +09:29:16 Slot Id : <481> +09:29:16 Transaction Type : RESPONSE +09:29:16 Received From : +09:29:16 ============================================================================ +09:29:16 FNo. Len. Field Value +09:29:16 ============================================================================ +09:29:16 [ 1] [ 4] [0210] +09:29:16 [ 2] [ 16] [6213548000508034] +09:29:16 [ 3] [ 6] [010000] +09:29:16 [ 4] [ 12] [000010000000] +09:29:16 [ 7] [ 10] [0320022823] +09:29:16 [ 11] [ 6] [267532] +09:29:16 [ 12] [ 6] [092823] +09:29:16 [ 13] [ 4] [0320] +09:29:16 [ 15] [ 4] [0320] +09:29:16 [ 18] [ 4] [6011] +09:29:16 [ 19] [ 3] [418] +09:29:16 [ 32] [ 6] [180893] +09:29:16 [ 35] [ 32] [6213548000508034=181112010803962] +09:29:16 [ 37] [ 12] [507902267532] +09:29:16 [ 38] [ 6] [293223] +09:29:16 [ 39] [ 2] [00] +09:29:16 [ 41] [ 8] [0221XKKM] +09:29:16 [ 49] [ 3] [418] +09:29:16 [ 54] [ 40] [0001418C0000346579110002418C000034657911] +09:29:16 ============================================================================ +09:29:16 Sending to : +09:29:16 ============================================================================ +09:29:16 + + +waiting on router queue for slot.... +09:29:17 ============================================================================ +09:29:17 Slot Id : <31> +09:29:17 Transaction Type : REQUEST +09:29:17 Received From : +09:29:17 ============================================================================ +09:29:17 FNo. Len. Field Value +09:29:17 ============================================================================ +09:29:17 [ 1] [ 4] [0800] +09:29:17 [ 7] [ 10] [0320022825] +09:29:17 [ 11] [ 6] [155642] +09:29:17 [ 70] [ 3] [301] +09:29:17 ============================================================================ +09:29:17 + + +waiting on router queue for slot.... +09:29:17 Sending to : +09:29:17 ============================================================================ +09:29:17 ============================================================================ +09:29:17 Slot Id : <31> +09:29:17 Transaction Type : RESPONSE +09:29:17 Received From : +09:29:17 ============================================================================ +09:29:17 FNo. Len. Field Value +09:29:17 ============================================================================ +09:29:17 [ 1] [ 4] [0810] +09:29:17 [ 7] [ 10] [0320022825] +09:29:17 [ 11] [ 6] [155642] +09:29:17 [ 39] [ 2] [00] +09:29:17 [ 70] [ 3] [301] +09:29:17 ============================================================================ +09:29:17 Calculate Source COMM Id = 2 +09:29:17 ============================================================================ +09:29:17 + + +waiting on router queue for slot.... +09:29:18 ============================================================================ +09:29:18 Slot Id : <481> +09:29:18 Transaction Type : RESPONSE +09:29:18 Received From : +09:29:18 ============================================================================ +09:29:18 FNo. Len. Field Value +09:29:18 ============================================================================ +09:29:18 [ 1] [ 4] [0210] +09:29:18 [ 2] [ 16] [6213548000508034] +09:29:18 [ 3] [ 6] [010000] +09:29:18 [ 4] [ 12] [000010000000] +09:29:18 [ 7] [ 10] [0320022823] +09:29:18 [ 11] [ 6] [267532] +09:29:18 [ 12] [ 6] [092823] +09:29:18 [ 13] [ 4] [0320] +09:29:18 [ 15] [ 4] [0320] +09:29:18 [ 18] [ 4] [6011] +09:29:18 [ 19] [ 3] [418] +09:29:18 [ 32] [ 6] [180893] +09:29:18 [ 35] [ 32] [6213548000508034=181112010803962] +09:29:18 [ 37] [ 12] [507902267532] +09:29:18 [ 38] [ 6] [293223] +09:29:18 [ 39] [ 2] [00] +09:29:18 [ 41] [ 8] [0221XKKM] +09:29:18 [ 49] [ 3] [418] +09:29:18 [ 54] [ 40] [0001418C0000346579110002418C000034657911] +09:29:18 ============================================================================ +09:29:18 Calculate Source COMM Id = 2 +09:29:18 ============================================================================ +09:29:18 + + +waiting on router queue for slot.... +09:29:33 ============================================================================ +09:29:33 Slot Id : <10> +09:29:33 Transaction Type : REQUEST +09:29:33 Received From : +09:29:33 ============================================================================ +09:29:33 FNo. Len. Field Value +09:29:33 ============================================================================ +09:29:33 [ 1] [ 4] [0800] +09:29:33 [ 7] [ 10] [0320022841] +09:29:33 [ 11] [ 6] [155643] +09:29:33 [ 70] [ 3] [301] +09:29:33 ============================================================================ +09:29:33 + + +waiting on router queue for slot.... +09:29:33 Sending to : +09:29:33 ============================================================================ +09:29:33 ============================================================================ +09:29:33 Slot Id : <10> +09:29:33 Transaction Type : RESPONSE +09:29:33 Received From : +09:29:33 ============================================================================ +09:29:33 FNo. Len. Field Value +09:29:33 ============================================================================ +09:29:33 [ 1] [ 4] [0810] +09:29:33 [ 7] [ 10] [0320022841] +09:29:33 [ 11] [ 6] [155643] +09:29:33 [ 39] [ 2] [00] +09:29:33 [ 70] [ 3] [301] +09:29:33 ============================================================================ +09:29:33 Calculate Source COMM Id = 2 +09:29:33 ============================================================================ +09:29:33 + + +waiting on router queue for slot.... +09:29:38 ============================================================================ +09:29:38 Slot Id : <3> +09:29:38 Transaction Type : REQUEST +09:29:38 Received From : +09:29:38 ============================================================================ +09:29:38 FNo. Len. Field Value +09:29:38 ============================================================================ +09:29:38 [ 1] [ 4] [0200] +09:29:38 [ 2] [ 16] [6688990100603701] +09:29:38 [ 3] [ 6] [012000] +09:29:38 [ 4] [ 12] [000005000000] +09:29:38 [ 7] [ 10] [0320092934] +09:29:38 [ 11] [ 6] [699276] +09:29:38 [ 12] [ 6] [092934] +09:29:38 [ 13] [ 4] [0320] +09:29:38 [ 15] [ 4] [0320] +09:29:38 [ 18] [ 4] [6011] +09:29:38 [ 22] [ 3] [900] +09:29:38 [ 25] [ 2] [02] +09:29:38 [ 28] [ 9] [D00002000] +09:29:38 [ 32] [ 6] [621354] +09:29:38 [ 35] [ 37] [6688990100603701=41091231370185700000] +09:29:38 [ 37] [ 12] [507902546358] +09:29:38 [ 41] [ 8] [05003700] +09:29:38 [ 42] [ 15] [NATIVE ] +09:29:38 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +09:29:38 [ 49] [ 3] [418] +09:29:38 [ 52] [ 16] [A196D309760AEB46] +09:29:38 ============================================================================ +09:29:38 + + +waiting on router queue for slot.... +09:29:38 Sending to : +09:29:38 ============================================================================ +09:29:38 Sending to : +09:29:38 ============================================================================ +09:29:38 ============================================================================ +09:29:38 Slot Id : <3> +09:29:38 Transaction Type : REQUEST +09:29:38 Received From : +09:29:38 ============================================================================ +09:29:38 FNo. Len. Field Value +09:29:38 ============================================================================ +09:29:38 [ 1] [ 4] [0200] +09:29:38 [ 2] [ 16] [6688990100603701] +09:29:38 [ 3] [ 6] [012000] +09:29:38 [ 4] [ 12] [000005000000] +09:29:38 [ 7] [ 10] [0320092934] +09:29:38 [ 11] [ 6] [699276] +09:29:38 [ 12] [ 6] [092934] +09:29:38 [ 13] [ 4] [0320] +09:29:38 [ 15] [ 4] [0320] +09:29:38 [ 18] [ 4] [6011] +09:29:38 [ 22] [ 3] [900] +09:29:38 [ 25] [ 2] [02] +09:29:38 [ 28] [ 9] [D00002000] +09:29:38 [ 32] [ 6] [621354] +09:29:38 [ 35] [ 37] [6688990100603701=41091231370185700000] +09:29:38 [ 37] [ 12] [507902546358] +09:29:38 [ 41] [ 8] [05003700] +09:29:38 [ 42] [ 15] [NATIVE ] +09:29:38 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +09:29:38 [ 49] [ 3] [418] +09:29:38 [ 52] [ 16] [A196D309760AEB46] +09:29:38 ============================================================================ +09:29:38 + + +waiting on router queue for slot.... +09:29:38 Sending to : +09:29:38 ============================================================================ +09:29:38 ============================================================================ +09:29:38 Slot Id : <3> +09:29:38 Transaction Type : REQUEST +09:29:38 Received From : +09:29:38 ============================================================================ +09:29:38 FNo. Len. Field Value +09:29:38 ============================================================================ +09:29:38 [ 1] [ 4] [0200] +09:29:38 [ 2] [ 16] [6688990100603701] +09:29:38 [ 3] [ 6] [012000] +09:29:38 [ 4] [ 12] [000005000000] +09:29:38 [ 7] [ 10] [0320092934] +09:29:38 [ 11] [ 6] [699276] +09:29:38 [ 12] [ 6] [092934] +09:29:38 [ 13] [ 4] [0320] +09:29:38 [ 15] [ 4] [0320] +09:29:38 [ 18] [ 4] [6011] +09:29:38 [ 22] [ 3] [900] +09:29:38 [ 25] [ 2] [02] +09:29:38 [ 28] [ 9] [D00002000] +09:29:38 [ 32] [ 6] [621354] +09:29:38 [ 35] [ 37] [6688990100603701=41091231370185700000] +09:29:38 [ 37] [ 12] [507902546358] +09:29:38 [ 41] [ 8] [05003700] +09:29:38 [ 42] [ 15] [NATIVE ] +09:29:38 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +09:29:38 [ 49] [ 3] [418] +09:29:38 [ 52] [ 16] [5938A1F9634AAA7E] +09:29:38 ============================================================================ +09:29:38 + + +waiting on router queue for slot.... +09:29:38 Sending to : <4> +09:29:38 ============================================================================ +09:29:39 ============================================================================ +09:29:39 Slot Id : <3> +09:29:39 Transaction Type : RESPONSE +09:29:39 Received From : +09:29:39 ============================================================================ +09:29:39 FNo. Len. Field Value +09:29:39 ============================================================================ +09:29:39 [ 1] [ 4] [0210] +09:29:39 [ 2] [ 16] [6688990100603701] +09:29:39 [ 3] [ 6] [012000] +09:29:39 [ 4] [ 12] [000005000000] +09:29:39 [ 11] [ 6] [699276] +09:29:39 [ 12] [ 6] [092934] +09:29:39 [ 15] [ 4] [0320] +09:29:39 [ 18] [ 4] [6011] +09:29:39 [ 32] [ 6] [621354] +09:29:39 [ 35] [ 37] [6688990100603701=41091231370185700000] +09:29:39 [ 37] [ 12] [507902546358] +09:29:39 [ 38] [ 6] [799111] +09:29:39 [ 39] [ 2] [00] +09:29:39 [ 41] [ 8] [05003700] +09:29:39 [ 49] [ 3] [418] +09:29:39 [ 54] [ 20] [2002418C000030369599] +09:29:39 ============================================================================ +09:29:39 Sending to : +09:29:39 ============================================================================ +09:29:39 + + +waiting on router queue for slot.... +09:29:40 ============================================================================ +09:29:40 Slot Id : <29> +09:29:40 Transaction Type : REQUEST +09:29:40 Received From : +09:29:40 ============================================================================ +09:29:40 FNo. Len. Field Value +09:29:40 ============================================================================ +09:29:40 [ 1] [ 4] [0200] +09:29:40 [ 2] [ 16] [6688990100924305] +09:29:40 [ 3] [ 6] [011000] +09:29:40 [ 4] [ 12] [000100000000] +09:29:40 [ 7] [ 10] [0320092936] +09:29:40 [ 11] [ 6] [699283] +09:29:40 [ 12] [ 6] [092936] +09:29:40 [ 13] [ 4] [0320] +09:29:40 [ 15] [ 4] [0320] +09:29:40 [ 18] [ 4] [6011] +09:29:40 [ 22] [ 3] [900] +09:29:40 [ 25] [ 2] [02] +09:29:40 [ 28] [ 9] [D00002000] +09:29:40 [ 32] [ 6] [621354] +09:29:40 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:29:40 [ 37] [ 12] [507904719417] +09:29:40 [ 41] [ 8] [18001000] +09:29:40 [ 42] [ 15] [NATIVE ] +09:29:40 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:29:40 [ 49] [ 3] [418] +09:29:40 [ 52] [ 16] [0836B1A6190C2285] +09:29:40 ============================================================================ +09:29:40 + + +waiting on router queue for slot.... +09:29:40 Sending to : +09:29:40 ============================================================================ +09:29:40 Sending to : +09:29:40 ============================================================================ +09:29:41 ============================================================================ +09:29:41 Slot Id : <29> +09:29:41 Transaction Type : REQUEST +09:29:41 Received From : +09:29:41 ============================================================================ +09:29:41 FNo. Len. Field Value +09:29:41 ============================================================================ +09:29:41 [ 1] [ 4] [0200] +09:29:41 [ 2] [ 16] [6688990100924305] +09:29:41 [ 3] [ 6] [011000] +09:29:41 [ 4] [ 12] [000100000000] +09:29:41 [ 7] [ 10] [0320092936] +09:29:41 [ 11] [ 6] [699283] +09:29:41 [ 12] [ 6] [092936] +09:29:41 [ 13] [ 4] [0320] +09:29:41 [ 15] [ 4] [0320] +09:29:41 [ 18] [ 4] [6011] +09:29:41 [ 22] [ 3] [900] +09:29:41 [ 25] [ 2] [02] +09:29:41 [ 28] [ 9] [D00002000] +09:29:41 [ 32] [ 6] [621354] +09:29:41 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:29:41 [ 37] [ 12] [507904719417] +09:29:41 [ 41] [ 8] [18001000] +09:29:41 [ 42] [ 15] [NATIVE ] +09:29:41 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:29:41 [ 49] [ 3] [418] +09:29:41 [ 52] [ 16] [0836B1A6190C2285] +09:29:41 ============================================================================ +09:29:41 + + +waiting on router queue for slot.... +09:29:41 Sending to : +09:29:41 ============================================================================ +09:29:41 ============================================================================ +09:29:41 Slot Id : <29> +09:29:41 Transaction Type : REQUEST +09:29:41 Received From : +09:29:41 ============================================================================ +09:29:41 FNo. Len. Field Value +09:29:41 ============================================================================ +09:29:41 [ 1] [ 4] [0200] +09:29:41 [ 2] [ 16] [6688990100924305] +09:29:41 [ 3] [ 6] [011000] +09:29:41 [ 4] [ 12] [000100000000] +09:29:41 [ 7] [ 10] [0320092936] +09:29:41 [ 11] [ 6] [699283] +09:29:41 [ 12] [ 6] [092936] +09:29:41 [ 13] [ 4] [0320] +09:29:41 [ 15] [ 4] [0320] +09:29:41 [ 18] [ 4] [6011] +09:29:41 [ 22] [ 3] [900] +09:29:41 [ 25] [ 2] [02] +09:29:41 [ 28] [ 9] [D00002000] +09:29:41 [ 32] [ 6] [621354] +09:29:41 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:29:41 [ 37] [ 12] [507904719417] +09:29:41 [ 41] [ 8] [18001000] +09:29:41 [ 42] [ 15] [NATIVE ] +09:29:41 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:29:41 [ 49] [ 3] [418] +09:29:41 [ 52] [ 16] [04E46765C2DC7268] +09:29:41 ============================================================================ +09:29:41 + + +waiting on router queue for slot.... +09:29:41 Sending to : <4> +09:29:41 ============================================================================ +09:29:41 ============================================================================ +09:29:41 Slot Id : <3> +09:29:41 Transaction Type : RESPONSE +09:29:41 Received From : +09:29:41 ============================================================================ +09:29:41 FNo. Len. Field Value +09:29:41 ============================================================================ +09:29:41 [ 1] [ 4] [0210] +09:29:41 [ 2] [ 16] [6688990100603701] +09:29:41 [ 3] [ 6] [012000] +09:29:41 [ 4] [ 12] [000005000000] +09:29:41 [ 11] [ 6] [699276] +09:29:41 [ 12] [ 6] [092934] +09:29:41 [ 15] [ 4] [0320] +09:29:41 [ 18] [ 4] [6011] +09:29:41 [ 32] [ 6] [621354] +09:29:41 [ 35] [ 37] [6688990100603701=41091231370185700000] +09:29:41 [ 37] [ 12] [507902546358] +09:29:41 [ 38] [ 6] [799111] +09:29:41 [ 39] [ 2] [00] +09:29:41 [ 41] [ 8] [05003700] +09:29:41 [ 49] [ 3] [418] +09:29:41 [ 54] [ 20] [2002418C000030369599] +09:29:41 ============================================================================ +09:29:41 Calculate Source COMM Id = 0 +09:29:41 ============================================================================ +09:29:41 + + +waiting on router queue for slot.... +09:29:42 ============================================================================ +09:29:42 Slot Id : <29> +09:29:42 Transaction Type : RESPONSE +09:29:42 Received From : +09:29:42 ============================================================================ +09:29:42 FNo. Len. Field Value +09:29:42 ============================================================================ +09:29:42 [ 1] [ 4] [0210] +09:29:42 [ 2] [ 16] [6688990100924305] +09:29:42 [ 3] [ 6] [011000] +09:29:42 [ 4] [ 12] [000100000000] +09:29:42 [ 11] [ 6] [699283] +09:29:42 [ 12] [ 6] [092936] +09:29:42 [ 15] [ 4] [0320] +09:29:42 [ 18] [ 4] [6011] +09:29:42 [ 32] [ 6] [621354] +09:29:42 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:29:42 [ 37] [ 12] [507904719417] +09:29:42 [ 38] [ 6] [238820] +09:29:42 [ 39] [ 2] [00] +09:29:42 [ 41] [ 8] [18001000] +09:29:42 [ 49] [ 3] [418] +09:29:42 [ 54] [ 20] [1002418C000078481933] +09:29:42 ============================================================================ +09:29:42 Sending to : +09:29:42 ============================================================================ +09:29:42 + + +waiting on router queue for slot.... +09:29:43 ============================================================================ +09:29:43 Slot Id : <29> +09:29:43 Transaction Type : RESPONSE +09:29:43 Received From : +09:29:43 ============================================================================ +09:29:43 FNo. Len. Field Value +09:29:43 ============================================================================ +09:29:43 [ 1] [ 4] [0210] +09:29:43 [ 2] [ 16] [6688990100924305] +09:29:43 [ 3] [ 6] [011000] +09:29:43 [ 4] [ 12] [000100000000] +09:29:43 [ 11] [ 6] [699283] +09:29:43 [ 12] [ 6] [092936] +09:29:43 [ 15] [ 4] [0320] +09:29:43 [ 18] [ 4] [6011] +09:29:43 [ 32] [ 6] [621354] +09:29:43 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:29:43 [ 37] [ 12] [507904719417] +09:29:43 [ 38] [ 6] [238820] +09:29:43 [ 39] [ 2] [00] +09:29:43 [ 41] [ 8] [18001000] +09:29:43 [ 49] [ 3] [418] +09:29:43 [ 54] [ 20] [1002418C000078481933] +09:29:43 ============================================================================ +09:29:43 Calculate Source COMM Id = 0 +09:29:43 ============================================================================ +09:29:43 + + +waiting on router queue for slot.... +09:29:44 ============================================================================ +09:29:44 Slot Id : <23> +09:29:44 Transaction Type : REQUEST +09:29:44 Received From : +09:29:44 ============================================================================ +09:29:44 FNo. Len. Field Value +09:29:44 ============================================================================ +09:29:44 [ 1] [ 4] [0800] +09:29:44 [ 7] [ 10] [0320022852] +09:29:44 [ 11] [ 6] [155644] +09:29:44 [ 70] [ 3] [301] +09:29:44 ============================================================================ +09:29:44 + + +waiting on router queue for slot.... +09:29:44 Sending to : +09:29:44 ============================================================================ +09:29:44 ============================================================================ +09:29:44 Slot Id : <23> +09:29:44 Transaction Type : RESPONSE +09:29:44 Received From : +09:29:44 ============================================================================ +09:29:44 FNo. Len. Field Value +09:29:44 ============================================================================ +09:29:44 [ 1] [ 4] [0810] +09:29:44 [ 7] [ 10] [0320022852] +09:29:44 [ 11] [ 6] [155644] +09:29:44 [ 39] [ 2] [00] +09:29:44 [ 70] [ 3] [301] +09:29:44 ============================================================================ +09:29:44 Calculate Source COMM Id = 2 +09:29:44 ============================================================================ +09:29:44 + + +waiting on router queue for slot.... +09:29:55 ============================================================================ +09:29:55 Slot Id : <7> +09:29:55 Transaction Type : REQUEST +09:29:55 Received From : +09:29:55 ============================================================================ +09:29:55 FNo. Len. Field Value +09:29:55 ============================================================================ +09:29:55 [ 1] [ 4] [0800] +09:29:55 [ 7] [ 10] [0320022903] +09:29:55 [ 11] [ 6] [155645] +09:29:55 [ 70] [ 3] [301] +09:29:55 ============================================================================ +09:29:55 + + +waiting on router queue for slot.... +09:29:55 Sending to : +09:29:55 ============================================================================ +09:29:55 ============================================================================ +09:29:55 Slot Id : <7> +09:29:55 Transaction Type : RESPONSE +09:29:55 Received From : +09:29:55 ============================================================================ +09:29:55 FNo. Len. Field Value +09:29:55 ============================================================================ +09:29:55 [ 1] [ 4] [0810] +09:29:55 [ 7] [ 10] [0320022903] +09:29:55 [ 11] [ 6] [155645] +09:29:55 [ 39] [ 2] [00] +09:29:55 [ 70] [ 3] [301] +09:29:55 ============================================================================ +09:29:55 Calculate Source COMM Id = 2 +09:29:55 ============================================================================ +09:29:55 + + +waiting on router queue for slot.... +09:29:55 ============================================================================ +09:29:55 Slot Id : <33> +09:29:55 Transaction Type : REQUEST +09:29:55 Received From : +09:29:55 ============================================================================ +09:29:55 FNo. Len. Field Value +09:29:55 ============================================================================ +09:29:55 [ 1] [ 4] [0800] +09:29:55 [ 7] [ 10] [0320023742] +09:29:55 [ 11] [ 6] [022289] +09:29:55 [ 37] [ 12] [57909022289] +09:29:55 [ 70] [ 3] [301] +09:29:55 ============================================================================ +09:29:55 + + +waiting on router queue for slot.... +09:29:55 Sending to : +09:29:55 ============================================================================ +09:29:55 ============================================================================ +09:29:55 Slot Id : <33> +09:29:55 Transaction Type : RESPONSE +09:29:55 Received From : +09:29:55 ============================================================================ +09:29:55 FNo. Len. Field Value +09:29:55 ============================================================================ +09:29:55 [ 1] [ 4] [0810] +09:29:55 [ 7] [ 10] [0320023742] +09:29:55 [ 11] [ 6] [022289] +09:29:55 [ 37] [ 12] [579090222890] +09:29:55 [ 39] [ 2] [00] +09:29:55 [ 70] [ 3] [810] +09:29:55 ============================================================================ +09:29:55 Calculate Source COMM Id = 1 +09:29:55 ============================================================================ +09:29:55 + + +waiting on router queue for slot.... +09:29:58 ============================================================================ +09:29:58 Slot Id : <21> +09:29:58 Transaction Type : REQUEST +09:29:58 Received From : +09:29:58 ============================================================================ +09:29:58 FNo. Len. Field Value +09:29:58 ============================================================================ +09:29:58 [ 1] [ 4] [0800] +09:29:58 [ 2] [ 5] [02531] +09:29:58 [ 3] [ 6] [579098] +09:29:58 [ 7] [ 10] [0320022958] +09:29:58 [ 11] [ 6] [806963] +09:29:58 [ 15] [ 10] [0320022958] +09:29:58 [ 37] [ 11] [57909806963] +09:29:58 [ 70] [ 3] [001] +09:29:58 ============================================================================ +09:29:58 + + +waiting on router queue for slot.... +09:29:59 ============================================================================ +09:29:59 Slot Id : <21> +09:29:59 Transaction Type : RESPONSE +09:29:59 Received From : +09:29:59 ============================================================================ +09:29:59 FNo. Len. Field Value +09:29:59 ============================================================================ +09:29:59 [ 1] [ 4] [0810] +09:29:59 [ 7] [ 10] [0320022958] +09:29:59 [ 11] [ 6] [806963] +09:29:59 [ 15] [ 4] [0320] +09:29:59 [ 37] [ 12] [57909806963] +09:29:59 [ 39] [ 2] [00] +09:29:59 [ 70] [ 3] [001] +09:29:59 ============================================================================ +09:29:59 Sending to : +09:29:59 ============================================================================ +09:29:59 + + +waiting on router queue for slot.... +09:29:59 ============================================================================ +09:29:59 Slot Id : <11> +09:29:59 Transaction Type : REQUEST +09:29:59 Received From : +09:29:59 ============================================================================ +09:29:59 FNo. Len. Field Value +09:29:59 ============================================================================ +09:29:59 [ 1] [ 4] [0800] +09:29:59 [ 7] [ 10] [0320164147] +09:29:59 [ 11] [ 6] [094147] +09:29:59 [ 37] [ 12] [57909094147] +09:29:59 [ 70] [ 3] [301] +09:29:59 ============================================================================ +09:29:59 + + +waiting on router queue for slot.... +09:29:59 Sending to : +09:29:59 ============================================================================ +09:29:59 ============================================================================ +09:29:59 Slot Id : <11> +09:29:59 Transaction Type : RESPONSE +09:29:59 Received From : +09:29:59 ============================================================================ +09:29:59 FNo. Len. Field Value +09:29:59 ============================================================================ +09:29:59 [ 1] [ 4] [0810] +09:29:59 [ 7] [ 10] [0320164147] +09:29:59 [ 11] [ 6] [094147] +09:29:59 [ 37] [ 12] [579090941470] +09:29:59 [ 39] [ 2] [00] +09:29:59 [ 70] [ 3] [810] +09:29:59 ============================================================================ +09:29:59 Calculate Source COMM Id = 6 +09:29:59 ============================================================================ +09:29:59 + + +waiting on router queue for slot.... +09:30:05 ============================================================================ +09:30:05 Slot Id : <35> +09:30:05 Transaction Type : REQUEST +09:30:05 Received From : +09:30:05 ============================================================================ +09:30:05 FNo. Len. Field Value +09:30:05 ============================================================================ +09:30:05 [ 1] [ 4] [0800] +09:30:05 [ 7] [ 10] [0320022913] +09:30:05 [ 11] [ 6] [155646] +09:30:05 [ 70] [ 3] [301] +09:30:05 ============================================================================ +09:30:05 + + +waiting on router queue for slot.... +09:30:05 Sending to : +09:30:05 ============================================================================ +09:30:05 ============================================================================ +09:30:05 Slot Id : <35> +09:30:05 Transaction Type : RESPONSE +09:30:05 Received From : +09:30:05 ============================================================================ +09:30:05 FNo. Len. Field Value +09:30:05 ============================================================================ +09:30:05 [ 1] [ 4] [0810] +09:30:05 [ 7] [ 10] [0320022913] +09:30:05 [ 11] [ 6] [155646] +09:30:05 [ 39] [ 2] [00] +09:30:05 [ 70] [ 3] [301] +09:30:05 ============================================================================ +09:30:05 Calculate Source COMM Id = 2 +09:30:05 ============================================================================ +09:30:05 + + +waiting on router queue for slot.... +09:30:16 ============================================================================ +09:30:16 Slot Id : <496> +09:30:16 Transaction Type : REQUEST +09:30:16 Received From : +09:30:16 ============================================================================ +09:30:16 FNo. Len. Field Value +09:30:16 ============================================================================ +09:30:16 [ 1] [ 4] [0800] +09:30:16 [ 7] [ 10] [0320022924] +09:30:16 [ 11] [ 6] [155647] +09:30:16 [ 70] [ 3] [301] +09:30:16 ============================================================================ +09:30:16 + + +waiting on router queue for slot.... +09:30:16 Sending to : +09:30:16 ============================================================================ +09:30:16 ============================================================================ +09:30:16 Slot Id : <496> +09:30:16 Transaction Type : RESPONSE +09:30:16 Received From : +09:30:16 ============================================================================ +09:30:16 FNo. Len. Field Value +09:30:16 ============================================================================ +09:30:16 [ 1] [ 4] [0810] +09:30:16 [ 7] [ 10] [0320022924] +09:30:16 [ 11] [ 6] [155647] +09:30:16 [ 39] [ 2] [00] +09:30:16 [ 70] [ 3] [301] +09:30:16 ============================================================================ +09:30:16 Calculate Source COMM Id = 2 +09:30:16 ============================================================================ +09:30:16 + + +waiting on router queue for slot.... +09:30:17 ============================================================================ +09:30:17 Slot Id : <30> +09:30:17 Transaction Type : REQUEST +09:30:17 Received From : +09:30:17 ============================================================================ +09:30:17 FNo. Len. Field Value +09:30:17 ============================================================================ +09:30:17 [ 1] [ 4] [0200] +09:30:17 [ 2] [ 16] [6213545001108848] +09:30:17 [ 3] [ 6] [010000] +09:30:17 [ 4] [ 12] [000200000000] +09:30:17 [ 7] [ 10] [0320022924] +09:30:17 [ 11] [ 6] [267538] +09:30:17 [ 12] [ 6] [092924] +09:30:17 [ 13] [ 4] [0320] +09:30:17 [ 14] [ 4] [4912] +09:30:17 [ 15] [ 4] [0320] +09:30:17 [ 18] [ 4] [6011] +09:30:17 [ 19] [ 3] [418] +09:30:17 [ 22] [ 3] [021] +09:30:17 [ 25] [ 2] [01] +09:30:17 [ 28] [ 9] [D00002000] +09:30:17 [ 32] [ 6] [180893] +09:30:17 [ 35] [ 32] [6213545001108848=491212010884066] +09:30:17 [ 37] [ 12] [507902267538] +09:30:17 [ 41] [ 8] [0221XKKM] +09:30:17 [ 42] [ 15] [999999 ] +09:30:17 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:30:17 [ 49] [ 3] [418] +09:30:17 [ 52] [ 16] [2FF7E970074030F1] +09:30:17 ============================================================================ +09:30:17 + + +waiting on router queue for slot.... +09:30:17 Sending to : +09:30:17 ============================================================================ +09:30:17 Sending to : +09:30:17 ============================================================================ +09:30:17 ============================================================================ +09:30:17 Slot Id : <30> +09:30:17 Transaction Type : REQUEST +09:30:17 Received From : +09:30:17 ============================================================================ +09:30:17 FNo. Len. Field Value +09:30:17 ============================================================================ +09:30:17 [ 1] [ 4] [0200] +09:30:17 [ 2] [ 16] [6213545001108848] +09:30:17 [ 3] [ 6] [010000] +09:30:17 [ 4] [ 12] [000200000000] +09:30:17 [ 7] [ 10] [0320022924] +09:30:17 [ 11] [ 6] [267538] +09:30:17 [ 12] [ 6] [092924] +09:30:17 [ 13] [ 4] [0320] +09:30:17 [ 14] [ 4] [4912] +09:30:17 [ 15] [ 4] [0320] +09:30:17 [ 18] [ 4] [6011] +09:30:17 [ 19] [ 3] [418] +09:30:17 [ 22] [ 3] [021] +09:30:17 [ 25] [ 2] [01] +09:30:17 [ 28] [ 9] [D00002000] +09:30:17 [ 32] [ 6] [180893] +09:30:17 [ 35] [ 32] [6213545001108848=491212010884066] +09:30:17 [ 37] [ 12] [507902267538] +09:30:17 [ 41] [ 8] [0221XKKM] +09:30:17 [ 42] [ 15] [999999 ] +09:30:17 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:30:17 [ 49] [ 3] [418] +09:30:17 [ 52] [ 16] [2FF7E970074030F1] +09:30:17 ============================================================================ +09:30:17 + + +waiting on router queue for slot.... +09:30:17 Sending to : +09:30:17 ============================================================================ +09:30:17 ============================================================================ +09:30:17 Slot Id : <30> +09:30:17 Transaction Type : REQUEST +09:30:17 Received From : +09:30:17 ============================================================================ +09:30:17 FNo. Len. Field Value +09:30:17 ============================================================================ +09:30:17 [ 1] [ 4] [0200] +09:30:17 [ 2] [ 16] [6213545001108848] +09:30:17 [ 3] [ 6] [010000] +09:30:17 [ 4] [ 12] [000200000000] +09:30:17 [ 7] [ 10] [0320022924] +09:30:17 [ 11] [ 6] [267538] +09:30:17 [ 12] [ 6] [092924] +09:30:17 [ 13] [ 4] [0320] +09:30:17 [ 14] [ 4] [4912] +09:30:17 [ 15] [ 4] [0320] +09:30:17 [ 18] [ 4] [6011] +09:30:17 [ 19] [ 3] [418] +09:30:17 [ 22] [ 3] [021] +09:30:17 [ 25] [ 2] [01] +09:30:17 [ 28] [ 9] [D00002000] +09:30:17 [ 32] [ 6] [180893] +09:30:17 [ 35] [ 32] [6213545001108848=491212010884066] +09:30:17 [ 37] [ 12] [507902267538] +09:30:17 [ 41] [ 8] [0221XKKM] +09:30:17 [ 42] [ 15] [999999 ] +09:30:17 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:30:17 [ 49] [ 3] [418] +09:30:17 [ 52] [ 16] [171E6442C88DAB4B] +09:30:17 ============================================================================ +09:30:17 + + +waiting on router queue for slot.... +09:30:17 Sending to : <0> +09:30:17 ============================================================================ +09:30:17 ============================================================================ +09:30:17 Slot Id : <30> +09:30:17 Transaction Type : RESPONSE +09:30:17 Received From : +09:30:17 ============================================================================ +09:30:17 FNo. Len. Field Value +09:30:17 ============================================================================ +09:30:17 [ 1] [ 4] [0210] +09:30:17 [ 2] [ 16] [6213545001108848] +09:30:17 [ 3] [ 6] [010000] +09:30:17 [ 4] [ 12] [000200000000] +09:30:17 [ 7] [ 10] [0320022924] +09:30:17 [ 11] [ 6] [267538] +09:30:17 [ 12] [ 6] [092924] +09:30:17 [ 13] [ 4] [0320] +09:30:17 [ 15] [ 4] [0320] +09:30:17 [ 18] [ 4] [6011] +09:30:17 [ 19] [ 3] [418] +09:30:17 [ 22] [ 3] [021] +09:30:17 [ 32] [ 6] [180893] +09:30:17 [ 35] [ 32] [6213545001108848=491212010884066] +09:30:17 [ 37] [ 12] [507902267538] +09:30:17 [ 39] [ 2] [61] +09:30:17 [ 41] [ 8] [0221XKKM] +09:30:17 [ 49] [ 3] [418] +09:30:17 ============================================================================ +09:30:17 Sending to : +09:30:17 ============================================================================ +09:30:17 + + +waiting on router queue for slot.... +09:30:18 ============================================================================ +09:30:18 Slot Id : <30> +09:30:18 Transaction Type : RESPONSE +09:30:18 Received From : +09:30:18 ============================================================================ +09:30:18 FNo. Len. Field Value +09:30:18 ============================================================================ +09:30:18 [ 1] [ 4] [0210] +09:30:18 [ 2] [ 16] [6213545001108848] +09:30:18 [ 3] [ 6] [010000] +09:30:18 [ 4] [ 12] [000200000000] +09:30:18 [ 7] [ 10] [0320022924] +09:30:18 [ 11] [ 6] [267538] +09:30:18 [ 12] [ 6] [092924] +09:30:18 [ 13] [ 4] [0320] +09:30:18 [ 15] [ 4] [0320] +09:30:18 [ 18] [ 4] [6011] +09:30:18 [ 19] [ 3] [418] +09:30:18 [ 22] [ 3] [021] +09:30:18 [ 32] [ 6] [180893] +09:30:18 [ 35] [ 32] [6213545001108848=491212010884066] +09:30:18 [ 37] [ 12] [507902267538] +09:30:18 [ 39] [ 2] [61] +09:30:18 [ 41] [ 8] [0221XKKM] +09:30:18 [ 49] [ 3] [418] +09:30:18 ============================================================================ +09:30:18 Calculate Source COMM Id = 2 +09:30:18 ============================================================================ +09:30:18 + + +waiting on router queue for slot.... +09:30:19 ============================================================================ +09:30:19 Slot Id : <461> +09:30:19 Transaction Type : REQUEST +09:30:19 Received From : +09:30:19 ============================================================================ +09:30:19 FNo. Len. Field Value +09:30:19 ============================================================================ +09:30:19 [ 1] [ 4] [0200] +09:30:19 [ 2] [ 16] [1808931100006269] +09:30:19 [ 3] [ 6] [010000] +09:30:19 [ 4] [ 12] [000030000000] +09:30:19 [ 7] [ 10] [0320093016] +09:30:19 [ 11] [ 6] [699441] +09:30:19 [ 12] [ 6] [093016] +09:30:19 [ 13] [ 4] [0320] +09:30:19 [ 15] [ 4] [0320] +09:30:19 [ 18] [ 4] [6011] +09:30:19 [ 22] [ 3] [900] +09:30:19 [ 25] [ 2] [02] +09:30:19 [ 28] [ 9] [D00002000] +09:30:19 [ 32] [ 6] [621354] +09:30:19 [ 35] [ 27] [1808931100006269=1803500021] +09:30:19 [ 37] [ 12] [507901489171] +09:30:19 [ 41] [ 8] [01004800] +09:30:19 [ 42] [ 15] [NATIVE ] +09:30:19 [ 43] [ 40] [HQV6 ChanthaboulyLAO] +09:30:19 [ 49] [ 3] [418] +09:30:19 [ 52] [ 16] [4EFC05FDF2A9C157] +09:30:19 ============================================================================ +09:30:19 + + +waiting on router queue for slot.... +09:30:19 Sending to : +09:30:19 ============================================================================ +09:30:19 Sending to : +09:30:19 ============================================================================ +09:30:20 ============================================================================ +09:30:20 Slot Id : <461> +09:30:20 Transaction Type : REQUEST +09:30:20 Received From : +09:30:20 ============================================================================ +09:30:20 FNo. Len. Field Value +09:30:20 ============================================================================ +09:30:20 [ 1] [ 4] [0200] +09:30:20 [ 2] [ 16] [1808931100006269] +09:30:20 [ 3] [ 6] [010000] +09:30:20 [ 4] [ 12] [000030000000] +09:30:20 [ 7] [ 10] [0320093016] +09:30:20 [ 11] [ 6] [699441] +09:30:20 [ 12] [ 6] [093016] +09:30:20 [ 13] [ 4] [0320] +09:30:20 [ 15] [ 4] [0320] +09:30:20 [ 18] [ 4] [6011] +09:30:20 [ 22] [ 3] [900] +09:30:20 [ 25] [ 2] [02] +09:30:20 [ 28] [ 9] [D00002000] +09:30:20 [ 32] [ 6] [621354] +09:30:20 [ 35] [ 27] [1808931100006269=1803500021] +09:30:20 [ 37] [ 12] [507901489171] +09:30:20 [ 41] [ 8] [01004800] +09:30:20 [ 42] [ 15] [NATIVE ] +09:30:20 [ 43] [ 40] [HQV6 ChanthaboulyLAO] +09:30:20 [ 49] [ 3] [418] +09:30:20 [ 52] [ 16] [4EFC05FDF2A9C157] +09:30:20 ============================================================================ +09:30:20 + + +waiting on router queue for slot.... +09:30:20 Sending to : +09:30:20 ============================================================================ +09:30:20 ============================================================================ +09:30:20 Slot Id : <461> +09:30:20 Transaction Type : REQUEST +09:30:20 Received From : +09:30:20 ============================================================================ +09:30:20 FNo. Len. Field Value +09:30:20 ============================================================================ +09:30:20 [ 1] [ 4] [0200] +09:30:20 [ 2] [ 16] [1808931100006269] +09:30:20 [ 3] [ 6] [010000] +09:30:20 [ 4] [ 12] [000030000000] +09:30:20 [ 7] [ 10] [0320093016] +09:30:20 [ 11] [ 6] [699441] +09:30:20 [ 12] [ 6] [093016] +09:30:20 [ 13] [ 4] [0320] +09:30:20 [ 15] [ 4] [0320] +09:30:20 [ 18] [ 4] [6011] +09:30:20 [ 22] [ 3] [900] +09:30:20 [ 25] [ 2] [02] +09:30:20 [ 28] [ 9] [D00002000] +09:30:20 [ 32] [ 6] [621354] +09:30:20 [ 35] [ 27] [1808931100006269=1803500021] +09:30:20 [ 37] [ 12] [507901489171] +09:30:20 [ 41] [ 8] [01004800] +09:30:20 [ 42] [ 15] [NATIVE ] +09:30:20 [ 43] [ 40] [HQV6 ChanthaboulyLAO] +09:30:20 [ 49] [ 3] [418] +09:30:20 [ 52] [ 16] [CF34645EB74E1B13] +09:30:20 ============================================================================ +09:30:20 + + +waiting on router queue for slot.... +09:30:20 Sending to : <2> +09:30:20 ============================================================================ +09:30:25 ============================================================================ +09:30:25 Slot Id : <461> +09:30:25 Transaction Type : RESPONSE +09:30:25 Received From : +09:30:25 ============================================================================ +09:30:25 FNo. Len. Field Value +09:30:25 ============================================================================ +09:30:25 [ 1] [ 4] [0210] +09:30:25 [ 2] [ 16] [1808931100006269] +09:30:25 [ 3] [ 6] [010000] +09:30:25 [ 4] [ 12] [000030000000] +09:30:25 [ 6] [ 12] [000030000000] +09:30:25 [ 7] [ 10] [0320093016] +09:30:25 [ 11] [ 6] [699441] +09:30:25 [ 12] [ 6] [093016] +09:30:25 [ 13] [ 4] [0320] +09:30:25 [ 18] [ 4] [6011] +09:30:25 [ 19] [ 3] [418] +09:30:25 [ 22] [ 3] [021] +09:30:25 [ 32] [ 6] [621354] +09:30:25 [ 35] [ 27] [1808931100006269=1803500021] +09:30:25 [ 37] [ 12] [507901489171] +09:30:25 [ 38] [ 6] [699441] +09:30:25 [ 39] [ 2] [00] +09:30:25 [ 41] [ 8] [01004800] +09:30:25 [ 49] [ 3] [418] +09:30:25 [ 52] [ 16] [CF34645EB74E1B13] +09:30:25 [ 54] [ 20] [1001418C000022892100] +09:30:25 ============================================================================ +09:30:25 Sending to : +09:30:25 ============================================================================ +09:30:25 + + +waiting on router queue for slot.... +09:30:27 ============================================================================ +09:30:27 Slot Id : <461> +09:30:27 Transaction Type : RESPONSE +09:30:27 Received From : +09:30:27 ============================================================================ +09:30:27 FNo. Len. Field Value +09:30:27 ============================================================================ +09:30:27 [ 1] [ 4] [0210] +09:30:27 [ 2] [ 16] [1808931100006269] +09:30:27 [ 3] [ 6] [010000] +09:30:27 [ 4] [ 12] [000030000000] +09:30:27 [ 6] [ 12] [000030000000] +09:30:27 [ 7] [ 10] [0320093016] +09:30:27 [ 11] [ 6] [699441] +09:30:27 [ 12] [ 6] [093016] +09:30:27 [ 13] [ 4] [0320] +09:30:27 [ 18] [ 4] [6011] +09:30:27 [ 19] [ 3] [418] +09:30:27 [ 22] [ 3] [021] +09:30:27 [ 32] [ 6] [621354] +09:30:27 [ 35] [ 27] [1808931100006269=1803500021] +09:30:27 [ 37] [ 12] [507901489171] +09:30:27 [ 38] [ 6] [699441] +09:30:27 [ 39] [ 2] [00] +09:30:27 [ 41] [ 8] [01004800] +09:30:27 [ 49] [ 3] [418] +09:30:27 [ 52] [ 16] [CF34645EB74E1B13] +09:30:27 [ 54] [ 20] [1001418C000022892100] +09:30:27 ============================================================================ +09:30:27 Calculate Source COMM Id = 0 +09:30:27 ============================================================================ +09:30:27 + + +waiting on router queue for slot.... +09:30:31 ============================================================================ +09:30:31 Slot Id : <9> +09:30:31 Transaction Type : REQUEST +09:30:31 Received From : +09:30:31 ============================================================================ +09:30:31 FNo. Len. Field Value +09:30:31 ============================================================================ +09:30:31 [ 1] [ 4] [0200] +09:30:31 [ 2] [ 16] [6213544002257738] +09:30:31 [ 3] [ 6] [010000] +09:30:31 [ 4] [ 12] [000030000000] +09:30:31 [ 7] [ 10] [0320092822] +09:30:31 [ 11] [ 6] [935763] +09:30:31 [ 12] [ 6] [092822] +09:30:31 [ 13] [ 4] [0320] +09:30:31 [ 15] [ 4] [0320] +09:30:31 [ 18] [ 4] [6011] +09:30:31 [ 19] [ 3] [418] +09:30:31 [ 22] [ 3] [021] +09:30:31 [ 25] [ 2] [01] +09:30:31 [ 28] [ 9] [D00002000] +09:30:31 [ 32] [ 6] [668899] +09:30:31 [ 35] [ 32] [6213544002257738=491212015773909] +09:30:31 [ 37] [ 12] [507900297312] +09:30:31 [ 41] [ 8] [03010006] +09:30:31 [ 42] [ 15] [APT ] +09:30:31 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +09:30:31 [ 49] [ 3] [418] +09:30:31 [ 52] [ 16] [E5D005DA9EF91177] +09:30:31 ============================================================================ +09:30:31 + + +waiting on router queue for slot.... +09:30:31 Sending to : +09:30:31 ============================================================================ +09:30:31 Sending to : +09:30:31 ============================================================================ +09:30:31 ============================================================================ +09:30:31 Slot Id : <9> +09:30:31 Transaction Type : REQUEST +09:30:31 Received From : +09:30:31 ============================================================================ +09:30:31 FNo. Len. Field Value +09:30:31 ============================================================================ +09:30:31 [ 1] [ 4] [0200] +09:30:31 [ 2] [ 16] [6213544002257738] +09:30:31 [ 3] [ 6] [010000] +09:30:31 [ 4] [ 12] [000030000000] +09:30:31 [ 7] [ 10] [0320092822] +09:30:31 [ 11] [ 6] [935763] +09:30:31 [ 12] [ 6] [092822] +09:30:31 [ 13] [ 4] [0320] +09:30:31 [ 15] [ 4] [0320] +09:30:31 [ 18] [ 4] [6011] +09:30:31 [ 19] [ 3] [418] +09:30:31 [ 22] [ 3] [021] +09:30:31 [ 25] [ 2] [01] +09:30:31 [ 28] [ 9] [D00002000] +09:30:31 [ 32] [ 6] [668899] +09:30:31 [ 35] [ 32] [6213544002257738=491212015773909] +09:30:31 [ 37] [ 12] [507900297312] +09:30:31 [ 41] [ 8] [03010006] +09:30:31 [ 42] [ 15] [APT ] +09:30:31 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +09:30:31 [ 49] [ 3] [418] +09:30:31 [ 52] [ 16] [E5D005DA9EF91177] +09:30:31 ============================================================================ +09:30:31 + + +waiting on router queue for slot.... +09:30:31 Sending to : +09:30:31 ============================================================================ +09:30:31 ============================================================================ +09:30:31 Slot Id : <9> +09:30:31 Transaction Type : REQUEST +09:30:31 Received From : +09:30:31 ============================================================================ +09:30:31 FNo. Len. Field Value +09:30:31 ============================================================================ +09:30:31 [ 1] [ 4] [0200] +09:30:31 [ 2] [ 16] [6213544002257738] +09:30:31 [ 3] [ 6] [010000] +09:30:31 [ 4] [ 12] [000030000000] +09:30:31 [ 7] [ 10] [0320092822] +09:30:31 [ 11] [ 6] [935763] +09:30:31 [ 12] [ 6] [092822] +09:30:31 [ 13] [ 4] [0320] +09:30:31 [ 15] [ 4] [0320] +09:30:31 [ 18] [ 4] [6011] +09:30:31 [ 19] [ 3] [418] +09:30:31 [ 22] [ 3] [021] +09:30:31 [ 25] [ 2] [01] +09:30:31 [ 28] [ 9] [D00002000] +09:30:31 [ 32] [ 6] [668899] +09:30:31 [ 35] [ 32] [6213544002257738=491212015773909] +09:30:31 [ 37] [ 12] [507900297312] +09:30:31 [ 41] [ 8] [03010006] +09:30:31 [ 42] [ 15] [APT ] +09:30:31 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +09:30:31 [ 49] [ 3] [418] +09:30:31 [ 52] [ 16] [435D4CA3358F046A] +09:30:31 ============================================================================ +09:30:31 + + +waiting on router queue for slot.... +09:30:31 Sending to : <0> +09:30:31 ============================================================================ +09:30:32 ============================================================================ +09:30:32 Slot Id : <37> +09:30:32 Transaction Type : REQUEST +09:30:32 Received From : +09:30:32 ============================================================================ +09:30:32 FNo. Len. Field Value +09:30:32 ============================================================================ +09:30:32 [ 1] [ 4] [0800] +09:30:32 [ 7] [ 10] [0320022940] +09:30:32 [ 11] [ 6] [155648] +09:30:32 [ 70] [ 3] [301] +09:30:32 ============================================================================ +09:30:32 + + +waiting on router queue for slot.... +09:30:32 Sending to : +09:30:32 ============================================================================ +09:30:32 ============================================================================ +09:30:32 Slot Id : <37> +09:30:32 Transaction Type : RESPONSE +09:30:32 Received From : +09:30:32 ============================================================================ +09:30:32 FNo. Len. Field Value +09:30:32 ============================================================================ +09:30:32 [ 1] [ 4] [0810] +09:30:32 [ 7] [ 10] [0320022940] +09:30:32 [ 11] [ 6] [155648] +09:30:32 [ 39] [ 2] [00] +09:30:32 [ 70] [ 3] [301] +09:30:32 ============================================================================ +09:30:32 Calculate Source COMM Id = 2 +09:30:32 ============================================================================ +09:30:32 + + +waiting on router queue for slot.... +09:30:32 ============================================================================ +09:30:32 Slot Id : <9> +09:30:32 Transaction Type : RESPONSE +09:30:32 Received From : +09:30:32 ============================================================================ +09:30:32 FNo. Len. Field Value +09:30:32 ============================================================================ +09:30:32 [ 1] [ 4] [0210] +09:30:32 [ 2] [ 16] [6213544002257738] +09:30:32 [ 3] [ 6] [010000] +09:30:32 [ 4] [ 12] [000030000000] +09:30:32 [ 7] [ 10] [0320092822] +09:30:32 [ 11] [ 6] [935763] +09:30:32 [ 12] [ 6] [092822] +09:30:32 [ 13] [ 4] [0320] +09:30:32 [ 15] [ 4] [0320] +09:30:32 [ 18] [ 4] [6011] +09:30:32 [ 19] [ 3] [418] +09:30:32 [ 32] [ 6] [668899] +09:30:32 [ 35] [ 32] [6213544002257738=491212015773909] +09:30:32 [ 37] [ 12] [507900297312] +09:30:32 [ 38] [ 6] [753713] +09:30:32 [ 39] [ 2] [00] +09:30:32 [ 41] [ 8] [03010006] +09:30:32 [ 49] [ 3] [418] +09:30:32 [ 54] [ 40] [0001418C0005883000000002418C000588300000] +09:30:32 ============================================================================ +09:30:32 Sending to : +09:30:32 ============================================================================ +09:30:32 + + +waiting on router queue for slot.... +09:30:33 ============================================================================ +09:30:33 Slot Id : <9> +09:30:33 Transaction Type : RESPONSE +09:30:33 Received From : +09:30:33 ============================================================================ +09:30:33 FNo. Len. Field Value +09:30:33 ============================================================================ +09:30:33 [ 1] [ 4] [0210] +09:30:33 [ 2] [ 16] [6213544002257738] +09:30:33 [ 3] [ 6] [010000] +09:30:33 [ 4] [ 12] [000030000000] +09:30:33 [ 7] [ 10] [0320092822] +09:30:33 [ 11] [ 6] [935763] +09:30:33 [ 12] [ 6] [092822] +09:30:33 [ 13] [ 4] [0320] +09:30:33 [ 15] [ 4] [0320] +09:30:33 [ 18] [ 4] [6011] +09:30:33 [ 19] [ 3] [418] +09:30:33 [ 32] [ 6] [668899] +09:30:33 [ 35] [ 32] [6213544002257738=491212015773909] +09:30:33 [ 37] [ 12] [507900297312] +09:30:33 [ 38] [ 6] [753713] +09:30:33 [ 39] [ 2] [00] +09:30:33 [ 41] [ 8] [03010006] +09:30:33 [ 49] [ 3] [418] +09:30:33 [ 54] [ 40] [0001418C0005883000000002418C000588300000] +09:30:33 ============================================================================ +09:30:33 Calculate Source COMM Id = 4 +09:30:33 ============================================================================ +09:30:33 + + +waiting on router queue for slot.... +09:30:42 ============================================================================ +09:30:42 Slot Id : <36> +09:30:42 Transaction Type : REQUEST +09:30:42 Received From : +09:30:42 ============================================================================ +09:30:42 FNo. Len. Field Value +09:30:42 ============================================================================ +09:30:42 [ 1] [ 4] [0800] +09:30:42 [ 7] [ 10] [0320022951] +09:30:42 [ 11] [ 6] [155649] +09:30:42 [ 70] [ 3] [301] +09:30:42 ============================================================================ +09:30:42 + + +waiting on router queue for slot.... +09:30:42 Sending to : +09:30:42 ============================================================================ +09:30:42 ============================================================================ +09:30:42 Slot Id : <36> +09:30:42 Transaction Type : RESPONSE +09:30:42 Received From : +09:30:42 ============================================================================ +09:30:42 FNo. Len. Field Value +09:30:42 ============================================================================ +09:30:42 [ 1] [ 4] [0810] +09:30:42 [ 7] [ 10] [0320022951] +09:30:42 [ 11] [ 6] [155649] +09:30:42 [ 39] [ 2] [00] +09:30:42 [ 70] [ 3] [301] +09:30:42 ============================================================================ +09:30:42 Calculate Source COMM Id = 2 +09:30:42 ============================================================================ +09:30:42 + + +waiting on router queue for slot.... +09:30:43 ============================================================================ +09:30:43 Slot Id : <45> +09:30:43 Transaction Type : REQUEST +09:30:43 Received From : +09:30:43 ============================================================================ +09:30:43 FNo. Len. Field Value +09:30:43 ============================================================================ +09:30:43 [ 1] [ 4] [0200] +09:30:43 [ 2] [ 16] [1808930200040129] +09:30:43 [ 3] [ 6] [301000] +09:30:43 [ 4] [ 12] [000000000000] +09:30:43 [ 7] [ 10] [0320093104] +09:30:43 [ 11] [ 6] [202995] +09:30:43 [ 12] [ 6] [212915] +09:30:43 [ 13] [ 4] [0319] +09:30:43 [ 14] [ 4] [1803] +09:30:43 [ 15] [ 4] [0319] +09:30:43 [ 18] [ 4] [6011] +09:30:43 [ 19] [ 3] [418] +09:30:43 [ 22] [ 3] [021] +09:30:43 [ 25] [ 2] [01] +09:30:43 [ 28] [ 9] [D00000000] +09:30:43 [ 32] [ 6] [198901] +09:30:43 [ 35] [ 27] [1808930200040129=1803500751] +09:30:43 [ 37] [ 12] [507909202995] +09:30:43 [ 41] [ 8] [01529031] +09:30:43 [ 42] [ 15] [000000041529031] +09:30:43 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:30:43 [ 49] [ 3] [418] +09:30:43 [ 52] [ 16] [0A5321EDC2CE6DB5] +09:30:43 ============================================================================ +09:30:43 + + +waiting on router queue for slot.... +09:30:43 Sending to : +09:30:43 ============================================================================ +09:30:43 Sending to : +09:30:43 ============================================================================ +09:30:43 ============================================================================ +09:30:43 Slot Id : <45> +09:30:43 Transaction Type : REQUEST +09:30:43 Received From : +09:30:43 ============================================================================ +09:30:43 FNo. Len. Field Value +09:30:43 ============================================================================ +09:30:43 [ 1] [ 4] [0200] +09:30:43 [ 2] [ 16] [1808930200040129] +09:30:43 [ 3] [ 6] [301000] +09:30:43 [ 4] [ 12] [000000000000] +09:30:43 [ 7] [ 10] [0320093104] +09:30:43 [ 11] [ 6] [202995] +09:30:43 [ 12] [ 6] [212915] +09:30:43 [ 13] [ 4] [0319] +09:30:43 [ 14] [ 4] [1803] +09:30:43 [ 15] [ 4] [0319] +09:30:43 [ 18] [ 4] [6011] +09:30:43 [ 19] [ 3] [418] +09:30:43 [ 22] [ 3] [021] +09:30:43 [ 25] [ 2] [01] +09:30:43 [ 28] [ 9] [D00000000] +09:30:43 [ 32] [ 6] [198901] +09:30:43 [ 35] [ 27] [1808930200040129=1803500751] +09:30:43 [ 37] [ 12] [507909202995] +09:30:43 [ 41] [ 8] [01529031] +09:30:43 [ 42] [ 15] [000000041529031] +09:30:43 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:30:43 [ 49] [ 3] [418] +09:30:43 [ 52] [ 16] [0A5321EDC2CE6DB5] +09:30:43 ============================================================================ +09:30:43 + + +waiting on router queue for slot.... +09:30:43 Sending to : +09:30:43 ============================================================================ +09:30:43 ============================================================================ +09:30:43 Slot Id : <45> +09:30:43 Transaction Type : REQUEST +09:30:43 Received From : +09:30:43 ============================================================================ +09:30:43 FNo. Len. Field Value +09:30:43 ============================================================================ +09:30:43 [ 1] [ 4] [0200] +09:30:43 [ 2] [ 16] [1808930200040129] +09:30:43 [ 3] [ 6] [301000] +09:30:43 [ 4] [ 12] [000000000000] +09:30:43 [ 7] [ 10] [0320093104] +09:30:43 [ 11] [ 6] [202995] +09:30:43 [ 12] [ 6] [212915] +09:30:43 [ 13] [ 4] [0319] +09:30:43 [ 14] [ 4] [1803] +09:30:43 [ 15] [ 4] [0319] +09:30:43 [ 18] [ 4] [6011] +09:30:43 [ 19] [ 3] [418] +09:30:43 [ 22] [ 3] [021] +09:30:43 [ 25] [ 2] [01] +09:30:43 [ 28] [ 9] [D00000000] +09:30:43 [ 32] [ 6] [198901] +09:30:43 [ 35] [ 27] [1808930200040129=1803500751] +09:30:43 [ 37] [ 12] [507909202995] +09:30:43 [ 41] [ 8] [01529031] +09:30:43 [ 42] [ 15] [000000041529031] +09:30:43 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:30:43 [ 49] [ 3] [418] +09:30:43 [ 52] [ 16] [6661C75C99EB128D] +09:30:43 ============================================================================ +09:30:43 + + +waiting on router queue for slot.... +09:30:43 Sending to : <2> +09:30:43 ============================================================================ +09:30:47 ============================================================================ +09:30:47 Slot Id : <45> +09:30:47 Transaction Type : RESPONSE +09:30:47 Received From : +09:30:47 ============================================================================ +09:30:47 FNo. Len. Field Value +09:30:47 ============================================================================ +09:30:47 [ 1] [ 4] [0210] +09:30:47 [ 2] [ 16] [1808930200040129] +09:30:47 [ 3] [ 6] [301000] +09:30:47 [ 7] [ 10] [0320093104] +09:30:47 [ 11] [ 6] [202995] +09:30:47 [ 12] [ 6] [212915] +09:30:47 [ 13] [ 4] [0320] +09:30:47 [ 14] [ 4] [1803] +09:30:47 [ 19] [ 3] [418] +09:30:47 [ 32] [ 6] [198901] +09:30:47 [ 37] [ 12] [507909202995] +09:30:47 [ 38] [ 6] [202995] +09:30:47 [ 39] [ 2] [00] +09:30:47 [ 41] [ 8] [01529031] +09:30:47 [ 49] [ 3] [418] +09:30:47 [ 52] [ 16] [6661C75C99EB128D] +09:30:47 [ 54] [ 20] [1002418C000073098300] +09:30:47 ============================================================================ +09:30:47 Sending to : +09:30:47 ============================================================================ +09:30:47 + + +waiting on router queue for slot.... +09:30:48 ============================================================================ +09:30:48 Slot Id : <45> +09:30:48 Transaction Type : RESPONSE +09:30:48 Received From : +09:30:48 ============================================================================ +09:30:48 FNo. Len. Field Value +09:30:48 ============================================================================ +09:30:48 [ 1] [ 4] [0210] +09:30:48 [ 2] [ 16] [1808930200040129] +09:30:48 [ 3] [ 6] [301000] +09:30:48 [ 7] [ 10] [0320093104] +09:30:48 [ 11] [ 6] [202995] +09:30:48 [ 12] [ 6] [212915] +09:30:48 [ 13] [ 4] [0320] +09:30:48 [ 14] [ 4] [1803] +09:30:48 [ 19] [ 3] [418] +09:30:48 [ 32] [ 6] [198901] +09:30:48 [ 37] [ 12] [507909202995] +09:30:48 [ 38] [ 6] [202995] +09:30:48 [ 39] [ 2] [00] +09:30:48 [ 41] [ 8] [01529031] +09:30:48 [ 49] [ 3] [418] +09:30:48 [ 52] [ 16] [6661C75C99EB128D] +09:30:48 [ 54] [ 20] [1002418C000073098300] +09:30:48 ============================================================================ +09:30:48 Calculate Source COMM Id = 5 +09:30:48 ============================================================================ +09:30:48 + + +waiting on router queue for slot.... +09:30:56 ============================================================================ +09:30:56 Slot Id : <18> +09:30:56 Transaction Type : REQUEST +09:30:56 Received From : +09:30:56 ============================================================================ +09:30:56 FNo. Len. Field Value +09:30:56 ============================================================================ +09:30:56 [ 1] [ 4] [0800] +09:30:56 [ 7] [ 10] [0320023004] +09:30:56 [ 11] [ 6] [155650] +09:30:56 [ 70] [ 3] [301] +09:30:56 ============================================================================ +09:30:56 + + +waiting on router queue for slot.... +09:30:56 Sending to : +09:30:56 ============================================================================ +09:30:56 ============================================================================ +09:30:56 Slot Id : <18> +09:30:56 Transaction Type : RESPONSE +09:30:56 Received From : +09:30:56 ============================================================================ +09:30:56 FNo. Len. Field Value +09:30:56 ============================================================================ +09:30:56 [ 1] [ 4] [0810] +09:30:56 [ 7] [ 10] [0320023004] +09:30:56 [ 11] [ 6] [155650] +09:30:56 [ 39] [ 2] [00] +09:30:56 [ 70] [ 3] [301] +09:30:56 ============================================================================ +09:30:56 Calculate Source COMM Id = 2 +09:30:56 ============================================================================ +09:30:56 + + +waiting on router queue for slot.... +09:30:58 ============================================================================ +09:30:58 Slot Id : <40> +09:30:58 Transaction Type : REQUEST +09:30:58 Received From : +09:30:58 ============================================================================ +09:30:58 FNo. Len. Field Value +09:30:58 ============================================================================ +09:30:58 [ 1] [ 4] [0200] +09:30:58 [ 2] [ 16] [6688990100924305] +09:30:58 [ 3] [ 6] [011000] +09:30:58 [ 4] [ 12] [000070000000] +09:30:58 [ 7] [ 10] [0320093054] +09:30:58 [ 11] [ 6] [699612] +09:30:58 [ 12] [ 6] [093054] +09:30:58 [ 13] [ 4] [0320] +09:30:58 [ 15] [ 4] [0320] +09:30:58 [ 18] [ 4] [6011] +09:30:58 [ 22] [ 3] [900] +09:30:58 [ 25] [ 2] [02] +09:30:58 [ 28] [ 9] [D00002000] +09:30:58 [ 32] [ 6] [621354] +09:30:58 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:30:58 [ 37] [ 12] [507904719419] +09:30:58 [ 41] [ 8] [18001000] +09:30:58 [ 42] [ 15] [NATIVE ] +09:30:58 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:30:58 [ 49] [ 3] [418] +09:30:58 [ 52] [ 16] [0836B1A6190C2285] +09:30:58 ============================================================================ +09:30:58 + + +waiting on router queue for slot.... +09:30:58 Sending to : +09:30:58 ============================================================================ +09:30:58 Sending to : +09:30:58 ============================================================================ +09:30:59 ============================================================================ +09:30:59 Slot Id : <40> +09:30:59 Transaction Type : REQUEST +09:30:59 Received From : +09:30:59 ============================================================================ +09:30:59 FNo. Len. Field Value +09:30:59 ============================================================================ +09:30:59 [ 1] [ 4] [0200] +09:30:59 [ 2] [ 16] [6688990100924305] +09:30:59 [ 3] [ 6] [011000] +09:30:59 [ 4] [ 12] [000070000000] +09:30:59 [ 7] [ 10] [0320093054] +09:30:59 [ 11] [ 6] [699612] +09:30:59 [ 12] [ 6] [093054] +09:30:59 [ 13] [ 4] [0320] +09:30:59 [ 15] [ 4] [0320] +09:30:59 [ 18] [ 4] [6011] +09:30:59 [ 22] [ 3] [900] +09:30:59 [ 25] [ 2] [02] +09:30:59 [ 28] [ 9] [D00002000] +09:30:59 [ 32] [ 6] [621354] +09:30:59 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:30:59 [ 37] [ 12] [507904719419] +09:30:59 [ 41] [ 8] [18001000] +09:30:59 [ 42] [ 15] [NATIVE ] +09:30:59 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:30:59 [ 49] [ 3] [418] +09:30:59 [ 52] [ 16] [0836B1A6190C2285] +09:30:59 ============================================================================ +09:30:59 + + +waiting on router queue for slot.... +09:30:59 Sending to : +09:30:59 ============================================================================ +09:30:59 ============================================================================ +09:30:59 Slot Id : <40> +09:30:59 Transaction Type : REQUEST +09:30:59 Received From : +09:30:59 ============================================================================ +09:30:59 FNo. Len. Field Value +09:30:59 ============================================================================ +09:30:59 [ 1] [ 4] [0200] +09:30:59 [ 2] [ 16] [6688990100924305] +09:30:59 [ 3] [ 6] [011000] +09:30:59 [ 4] [ 12] [000070000000] +09:30:59 [ 7] [ 10] [0320093054] +09:30:59 [ 11] [ 6] [699612] +09:30:59 [ 12] [ 6] [093054] +09:30:59 [ 13] [ 4] [0320] +09:30:59 [ 15] [ 4] [0320] +09:30:59 [ 18] [ 4] [6011] +09:30:59 [ 22] [ 3] [900] +09:30:59 [ 25] [ 2] [02] +09:30:59 [ 28] [ 9] [D00002000] +09:30:59 [ 32] [ 6] [621354] +09:30:59 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:30:59 [ 37] [ 12] [507904719419] +09:30:59 [ 41] [ 8] [18001000] +09:30:59 [ 42] [ 15] [NATIVE ] +09:30:59 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:30:59 [ 49] [ 3] [418] +09:30:59 [ 52] [ 16] [04E46765C2DC7268] +09:30:59 ============================================================================ +09:30:59 + + +waiting on router queue for slot.... +09:30:59 Sending to : <4> +09:30:59 ============================================================================ +09:31:00 ============================================================================ +09:31:00 Slot Id : <497> +09:31:00 Transaction Type : REQUEST +09:31:00 Received From : +09:31:00 ============================================================================ +09:31:00 FNo. Len. Field Value +09:31:00 ============================================================================ +09:31:00 [ 1] [ 4] [0800] +09:31:00 [ 2] [ 5] [02531] +09:31:00 [ 3] [ 6] [579098] +09:31:00 [ 7] [ 10] [0320023100] +09:31:00 [ 11] [ 6] [806964] +09:31:00 [ 15] [ 10] [0320023100] +09:31:00 [ 37] [ 11] [57909806964] +09:31:00 [ 70] [ 3] [001] +09:31:00 ============================================================================ +09:31:00 + + +waiting on router queue for slot.... +09:31:01 ============================================================================ +09:31:01 Slot Id : <497> +09:31:01 Transaction Type : RESPONSE +09:31:01 Received From : +09:31:01 ============================================================================ +09:31:01 FNo. Len. Field Value +09:31:01 ============================================================================ +09:31:01 [ 1] [ 4] [0810] +09:31:01 [ 7] [ 10] [0320023100] +09:31:01 [ 11] [ 6] [806964] +09:31:01 [ 15] [ 4] [0320] +09:31:01 [ 37] [ 12] [57909806964] +09:31:01 [ 39] [ 2] [00] +09:31:01 [ 70] [ 3] [001] +09:31:01 ============================================================================ +09:31:01 Sending to : +09:31:01 ============================================================================ +09:31:01 + + +waiting on router queue for slot.... +09:31:01 ============================================================================ +09:31:01 Slot Id : <40> +09:31:01 Transaction Type : RESPONSE +09:31:01 Received From : +09:31:01 ============================================================================ +09:31:01 FNo. Len. Field Value +09:31:01 ============================================================================ +09:31:01 [ 1] [ 4] [0210] +09:31:01 [ 2] [ 16] [6688990100924305] +09:31:01 [ 3] [ 6] [011000] +09:31:01 [ 4] [ 12] [000070000000] +09:31:01 [ 11] [ 6] [699612] +09:31:01 [ 12] [ 6] [093054] +09:31:01 [ 15] [ 4] [0320] +09:31:01 [ 18] [ 4] [6011] +09:31:01 [ 32] [ 6] [621354] +09:31:01 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:31:01 [ 37] [ 12] [507904719419] +09:31:01 [ 38] [ 6] [297796] +09:31:01 [ 39] [ 2] [00] +09:31:01 [ 41] [ 8] [18001000] +09:31:01 [ 49] [ 3] [418] +09:31:01 [ 54] [ 20] [1002418C000008281933] +09:31:01 ============================================================================ +09:31:01 Sending to : +09:31:01 ============================================================================ +09:31:01 + + +waiting on router queue for slot.... +09:31:02 ============================================================================ +09:31:02 Slot Id : <40> +09:31:02 Transaction Type : RESPONSE +09:31:02 Received From : +09:31:02 ============================================================================ +09:31:02 FNo. Len. Field Value +09:31:02 ============================================================================ +09:31:02 [ 1] [ 4] [0210] +09:31:02 [ 2] [ 16] [6688990100924305] +09:31:02 [ 3] [ 6] [011000] +09:31:02 [ 4] [ 12] [000070000000] +09:31:02 [ 11] [ 6] [699612] +09:31:02 [ 12] [ 6] [093054] +09:31:02 [ 15] [ 4] [0320] +09:31:02 [ 18] [ 4] [6011] +09:31:02 [ 32] [ 6] [621354] +09:31:02 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:31:02 [ 37] [ 12] [507904719419] +09:31:02 [ 38] [ 6] [297796] +09:31:02 [ 39] [ 2] [00] +09:31:02 [ 41] [ 8] [18001000] +09:31:02 [ 49] [ 3] [418] +09:31:02 [ 54] [ 20] [1002418C000008281933] +09:31:02 ============================================================================ +09:31:02 Calculate Source COMM Id = 0 +09:31:02 ============================================================================ +09:31:02 + + +waiting on router queue for slot.... +09:31:04 ============================================================================ +09:31:04 Slot Id : <467> +09:31:04 Transaction Type : REQUEST +09:31:04 Received From : +09:31:04 ============================================================================ +09:31:04 FNo. Len. Field Value +09:31:04 ============================================================================ +09:31:04 [ 1] [ 4] [0800] +09:31:04 [ 7] [ 10] [0320164252] +09:31:04 [ 11] [ 6] [094252] +09:31:04 [ 37] [ 12] [57909094252] +09:31:04 [ 70] [ 3] [301] +09:31:04 ============================================================================ +09:31:04 + + +waiting on router queue for slot.... +09:31:04 Sending to : +09:31:04 ============================================================================ +09:31:04 ============================================================================ +09:31:04 Slot Id : <467> +09:31:04 Transaction Type : RESPONSE +09:31:04 Received From : +09:31:04 ============================================================================ +09:31:04 FNo. Len. Field Value +09:31:04 ============================================================================ +09:31:04 [ 1] [ 4] [0810] +09:31:04 [ 7] [ 10] [0320164252] +09:31:04 [ 11] [ 6] [094252] +09:31:04 [ 37] [ 12] [579090942520] +09:31:04 [ 39] [ 2] [00] +09:31:04 [ 70] [ 3] [810] +09:31:04 ============================================================================ +09:31:04 Calculate Source COMM Id = 6 +09:31:04 ============================================================================ +09:31:04 + + +waiting on router queue for slot.... +09:31:12 ============================================================================ +09:31:12 Slot Id : <43> +09:31:12 Transaction Type : REQUEST +09:31:12 Received From : +09:31:12 ============================================================================ +09:31:12 FNo. Len. Field Value +09:31:12 ============================================================================ +09:31:12 [ 1] [ 4] [0800] +09:31:12 [ 7] [ 10] [0320023020] +09:31:12 [ 11] [ 6] [155651] +09:31:12 [ 70] [ 3] [301] +09:31:12 ============================================================================ +09:31:12 + + +waiting on router queue for slot.... +09:31:12 Sending to : +09:31:12 ============================================================================ +09:31:12 ============================================================================ +09:31:12 Slot Id : <43> +09:31:12 Transaction Type : RESPONSE +09:31:12 Received From : +09:31:12 ============================================================================ +09:31:12 FNo. Len. Field Value +09:31:12 ============================================================================ +09:31:12 [ 1] [ 4] [0810] +09:31:12 [ 7] [ 10] [0320023020] +09:31:12 [ 11] [ 6] [155651] +09:31:12 [ 39] [ 2] [00] +09:31:12 [ 70] [ 3] [301] +09:31:12 ============================================================================ +09:31:12 Calculate Source COMM Id = 2 +09:31:12 ============================================================================ +09:31:12 + + +waiting on router queue for slot.... +09:31:17 ============================================================================ +09:31:17 Slot Id : <8> +09:31:17 Transaction Type : REQUEST +09:31:17 Received From : +09:31:17 ============================================================================ +09:31:17 FNo. Len. Field Value +09:31:17 ============================================================================ +09:31:17 [ 1] [ 4] [0200] +09:31:17 [ 2] [ 16] [1808931100006269] +09:31:17 [ 3] [ 6] [301000] +09:31:17 [ 4] [ 12] [000000000000] +09:31:17 [ 7] [ 10] [0320093113] +09:31:17 [ 11] [ 6] [699676] +09:31:17 [ 12] [ 6] [093113] +09:31:17 [ 13] [ 4] [0320] +09:31:17 [ 15] [ 4] [0320] +09:31:17 [ 18] [ 4] [6011] +09:31:17 [ 22] [ 3] [900] +09:31:17 [ 25] [ 2] [02] +09:31:17 [ 28] [ 9] [D00000000] +09:31:17 [ 32] [ 6] [621354] +09:31:17 [ 35] [ 27] [1808931100006269=1803500021] +09:31:17 [ 37] [ 12] [507901489172] +09:31:17 [ 41] [ 8] [01004800] +09:31:17 [ 42] [ 15] [NATIVE ] +09:31:17 [ 43] [ 40] [HQV6 ChanthaboulyLAO] +09:31:17 [ 49] [ 3] [418] +09:31:17 [ 52] [ 16] [4EFC05FDF2A9C157] +09:31:17 ============================================================================ +09:31:17 + + +waiting on router queue for slot.... +09:31:17 Sending to : +09:31:17 ============================================================================ +09:31:17 Sending to : +09:31:17 ============================================================================ +09:31:17 ============================================================================ +09:31:17 Slot Id : <8> +09:31:17 Transaction Type : REQUEST +09:31:17 Received From : +09:31:17 ============================================================================ +09:31:17 FNo. Len. Field Value +09:31:17 ============================================================================ +09:31:17 [ 1] [ 4] [0200] +09:31:17 [ 2] [ 16] [1808931100006269] +09:31:17 [ 3] [ 6] [301000] +09:31:17 [ 4] [ 12] [000000000000] +09:31:17 [ 7] [ 10] [0320093113] +09:31:17 [ 11] [ 6] [699676] +09:31:17 [ 12] [ 6] [093113] +09:31:17 [ 13] [ 4] [0320] +09:31:17 [ 15] [ 4] [0320] +09:31:17 [ 18] [ 4] [6011] +09:31:17 [ 22] [ 3] [900] +09:31:17 [ 25] [ 2] [02] +09:31:17 [ 28] [ 9] [D00000000] +09:31:17 [ 32] [ 6] [621354] +09:31:17 [ 35] [ 27] [1808931100006269=1803500021] +09:31:17 [ 37] [ 12] [507901489172] +09:31:17 [ 41] [ 8] [01004800] +09:31:17 [ 42] [ 15] [NATIVE ] +09:31:17 [ 43] [ 40] [HQV6 ChanthaboulyLAO] +09:31:17 [ 49] [ 3] [418] +09:31:17 [ 52] [ 16] [4EFC05FDF2A9C157] +09:31:17 ============================================================================ +09:31:17 + + +waiting on router queue for slot.... +09:31:17 Sending to : +09:31:17 ============================================================================ +09:31:17 ============================================================================ +09:31:17 Slot Id : <8> +09:31:17 Transaction Type : REQUEST +09:31:17 Received From : +09:31:17 ============================================================================ +09:31:17 FNo. Len. Field Value +09:31:17 ============================================================================ +09:31:17 [ 1] [ 4] [0200] +09:31:17 [ 2] [ 16] [1808931100006269] +09:31:17 [ 3] [ 6] [301000] +09:31:17 [ 4] [ 12] [000000000000] +09:31:17 [ 7] [ 10] [0320093113] +09:31:17 [ 11] [ 6] [699676] +09:31:17 [ 12] [ 6] [093113] +09:31:17 [ 13] [ 4] [0320] +09:31:17 [ 15] [ 4] [0320] +09:31:17 [ 18] [ 4] [6011] +09:31:17 [ 22] [ 3] [900] +09:31:17 [ 25] [ 2] [02] +09:31:17 [ 28] [ 9] [D00000000] +09:31:17 [ 32] [ 6] [621354] +09:31:17 [ 35] [ 27] [1808931100006269=1803500021] +09:31:17 [ 37] [ 12] [507901489172] +09:31:17 [ 41] [ 8] [01004800] +09:31:17 [ 42] [ 15] [NATIVE ] +09:31:17 [ 43] [ 40] [HQV6 ChanthaboulyLAO] +09:31:17 [ 49] [ 3] [418] +09:31:17 [ 52] [ 16] [CF34645EB74E1B13] +09:31:17 ============================================================================ +09:31:17 + + +waiting on router queue for slot.... +09:31:17 Sending to : <2> +09:31:17 ============================================================================ +09:31:21 ============================================================================ +09:31:21 Slot Id : <28> +09:31:21 Transaction Type : REQUEST +09:31:21 Received From : +09:31:21 ============================================================================ +09:31:21 FNo. Len. Field Value +09:31:21 ============================================================================ +09:31:21 [ 1] [ 4] [0800] +09:31:21 [ 7] [ 10] [0320022912] +09:31:21 [ 11] [ 6] [041166] +09:31:21 [ 37] [ 12] [57909041166] +09:31:21 [ 70] [ 3] [301] +09:31:21 ============================================================================ +09:31:21 + + +waiting on router queue for slot.... +09:31:21 Sending to : +09:31:21 ============================================================================ +09:31:21 ============================================================================ +09:31:21 Slot Id : <28> +09:31:21 Transaction Type : RESPONSE +09:31:21 Received From : +09:31:21 ============================================================================ +09:31:21 FNo. Len. Field Value +09:31:21 ============================================================================ +09:31:21 [ 1] [ 4] [0810] +09:31:21 [ 7] [ 10] [0320022912] +09:31:21 [ 11] [ 6] [041166] +09:31:21 [ 37] [ 12] [579090411660] +09:31:21 [ 39] [ 2] [00] +09:31:21 [ 70] [ 3] [810] +09:31:21 ============================================================================ +09:31:21 Calculate Source COMM Id = 4 +09:31:21 ============================================================================ +09:31:21 + + +waiting on router queue for slot.... +09:31:21 ============================================================================ +09:31:21 Slot Id : <8> +09:31:21 Transaction Type : RESPONSE +09:31:21 Received From : +09:31:21 ============================================================================ +09:31:21 FNo. Len. Field Value +09:31:21 ============================================================================ +09:31:21 [ 1] [ 4] [0210] +09:31:21 [ 2] [ 16] [1808931100006269] +09:31:21 [ 3] [ 6] [301000] +09:31:21 [ 7] [ 10] [0320093113] +09:31:21 [ 11] [ 6] [699676] +09:31:21 [ 12] [ 6] [093113] +09:31:21 [ 13] [ 4] [0320] +09:31:21 [ 14] [ 4] [1803] +09:31:21 [ 19] [ 3] [418] +09:31:21 [ 32] [ 6] [621354] +09:31:21 [ 37] [ 12] [507901489172] +09:31:21 [ 38] [ 6] [699676] +09:31:21 [ 39] [ 2] [00] +09:31:21 [ 41] [ 8] [01004800] +09:31:21 [ 49] [ 3] [418] +09:31:21 [ 52] [ 16] [CF34645EB74E1B13] +09:31:21 [ 54] [ 20] [1002418C000022892100] +09:31:21 ============================================================================ +09:31:21 Sending to : +09:31:21 ============================================================================ +09:31:21 + + +waiting on router queue for slot.... +09:31:23 ============================================================================ +09:31:23 Slot Id : <8> +09:31:23 Transaction Type : RESPONSE +09:31:23 Received From : +09:31:23 ============================================================================ +09:31:23 FNo. Len. Field Value +09:31:23 ============================================================================ +09:31:23 [ 1] [ 4] [0210] +09:31:23 [ 2] [ 16] [1808931100006269] +09:31:23 [ 3] [ 6] [301000] +09:31:23 [ 7] [ 10] [0320093113] +09:31:23 [ 11] [ 6] [699676] +09:31:23 [ 12] [ 6] [093113] +09:31:23 [ 13] [ 4] [0320] +09:31:23 [ 14] [ 4] [1803] +09:31:23 [ 19] [ 3] [418] +09:31:23 [ 32] [ 6] [621354] +09:31:23 [ 37] [ 12] [507901489172] +09:31:23 [ 38] [ 6] [699676] +09:31:23 [ 39] [ 2] [00] +09:31:23 [ 41] [ 8] [01004800] +09:31:23 [ 49] [ 3] [418] +09:31:23 [ 52] [ 16] [CF34645EB74E1B13] +09:31:23 [ 54] [ 20] [1002418C000022892100] +09:31:23 ============================================================================ +09:31:23 Calculate Source COMM Id = 0 +09:31:23 ============================================================================ +09:31:23 + + +waiting on router queue for slot.... +09:31:28 ============================================================================ +09:31:28 Slot Id : <50> +09:31:28 Transaction Type : REQUEST +09:31:28 Received From : +09:31:28 ============================================================================ +09:31:28 FNo. Len. Field Value +09:31:28 ============================================================================ +09:31:28 [ 1] [ 4] [0200] +09:31:28 [ 2] [ 16] [6213545001108848] +09:31:28 [ 3] [ 6] [301000] +09:31:28 [ 7] [ 10] [0320023034] +09:31:28 [ 11] [ 6] [267545] +09:31:28 [ 12] [ 6] [093034] +09:31:28 [ 13] [ 4] [0320] +09:31:28 [ 14] [ 4] [4912] +09:31:28 [ 15] [ 4] [0320] +09:31:28 [ 18] [ 4] [6011] +09:31:28 [ 19] [ 3] [418] +09:31:28 [ 22] [ 3] [021] +09:31:28 [ 25] [ 2] [01] +09:31:28 [ 32] [ 6] [180893] +09:31:28 [ 35] [ 32] [6213545001108848=491212010884066] +09:31:28 [ 37] [ 12] [507902267545] +09:31:28 [ 41] [ 8] [0221XKKM] +09:31:28 [ 42] [ 15] [999999 ] +09:31:28 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:31:28 [ 49] [ 3] [418] +09:31:28 [ 52] [ 16] [2FF7E970074030F1] +09:31:28 ============================================================================ +09:31:28 + + +waiting on router queue for slot.... +09:31:28 Sending to : +09:31:28 ============================================================================ +09:31:28 Sending to : +09:31:28 ============================================================================ +09:31:29 ============================================================================ +09:31:29 Slot Id : <50> +09:31:29 Transaction Type : REQUEST +09:31:29 Received From : +09:31:29 ============================================================================ +09:31:29 FNo. Len. Field Value +09:31:29 ============================================================================ +09:31:29 [ 1] [ 4] [0200] +09:31:29 [ 2] [ 16] [6213545001108848] +09:31:29 [ 3] [ 6] [301000] +09:31:29 [ 7] [ 10] [0320023034] +09:31:29 [ 11] [ 6] [267545] +09:31:29 [ 12] [ 6] [093034] +09:31:29 [ 13] [ 4] [0320] +09:31:29 [ 14] [ 4] [4912] +09:31:29 [ 15] [ 4] [0320] +09:31:29 [ 18] [ 4] [6011] +09:31:29 [ 19] [ 3] [418] +09:31:29 [ 22] [ 3] [021] +09:31:29 [ 25] [ 2] [01] +09:31:29 [ 32] [ 6] [180893] +09:31:29 [ 35] [ 32] [6213545001108848=491212010884066] +09:31:29 [ 37] [ 12] [507902267545] +09:31:29 [ 41] [ 8] [0221XKKM] +09:31:29 [ 42] [ 15] [999999 ] +09:31:29 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:31:29 [ 49] [ 3] [418] +09:31:29 [ 52] [ 16] [2FF7E970074030F1] +09:31:29 ============================================================================ +09:31:29 + + +waiting on router queue for slot.... +09:31:29 Sending to : +09:31:29 ============================================================================ +09:31:29 ============================================================================ +09:31:29 Slot Id : <50> +09:31:29 Transaction Type : REQUEST +09:31:29 Received From : +09:31:29 ============================================================================ +09:31:29 FNo. Len. Field Value +09:31:29 ============================================================================ +09:31:29 [ 1] [ 4] [0200] +09:31:29 [ 2] [ 16] [6213545001108848] +09:31:29 [ 3] [ 6] [301000] +09:31:29 [ 7] [ 10] [0320023034] +09:31:29 [ 11] [ 6] [267545] +09:31:29 [ 12] [ 6] [093034] +09:31:29 [ 13] [ 4] [0320] +09:31:29 [ 14] [ 4] [4912] +09:31:29 [ 15] [ 4] [0320] +09:31:29 [ 18] [ 4] [6011] +09:31:29 [ 19] [ 3] [418] +09:31:29 [ 22] [ 3] [021] +09:31:29 [ 25] [ 2] [01] +09:31:29 [ 32] [ 6] [180893] +09:31:29 [ 35] [ 32] [6213545001108848=491212010884066] +09:31:29 [ 37] [ 12] [507902267545] +09:31:29 [ 41] [ 8] [0221XKKM] +09:31:29 [ 42] [ 15] [999999 ] +09:31:29 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:31:29 [ 49] [ 3] [418] +09:31:29 [ 52] [ 16] [171E6442C88DAB4B] +09:31:29 ============================================================================ +09:31:29 + + +waiting on router queue for slot.... +09:31:29 Sending to : <0> +09:31:29 ============================================================================ +09:31:29 ============================================================================ +09:31:29 Slot Id : <50> +09:31:29 Transaction Type : RESPONSE +09:31:29 Received From : +09:31:29 ============================================================================ +09:31:29 FNo. Len. Field Value +09:31:29 ============================================================================ +09:31:29 [ 1] [ 4] [0210] +09:31:29 [ 2] [ 16] [6213545001108848] +09:31:29 [ 3] [ 6] [301000] +09:31:29 [ 4] [ 12] [000000000000] +09:31:29 [ 7] [ 10] [0320023034] +09:31:29 [ 11] [ 6] [267545] +09:31:29 [ 12] [ 6] [093034] +09:31:29 [ 13] [ 4] [0320] +09:31:29 [ 15] [ 4] [0320] +09:31:29 [ 18] [ 4] [6011] +09:31:29 [ 19] [ 3] [418] +09:31:29 [ 32] [ 6] [180893] +09:31:29 [ 35] [ 32] [6213545001108848=491212010884066] +09:31:29 [ 37] [ 12] [507902267545] +09:31:29 [ 38] [ 6] [354618] +09:31:29 [ 39] [ 2] [00] +09:31:29 [ 41] [ 8] [0221XKKM] +09:31:29 [ 49] [ 3] [418] +09:31:29 [ 54] [ 40] [1001418C0004155420001002418C000415542000] +09:31:29 ============================================================================ +09:31:29 Sending to : +09:31:29 ============================================================================ +09:31:29 + + +waiting on router queue for slot.... +09:31:30 ============================================================================ +09:31:30 Slot Id : <52> +09:31:30 Transaction Type : REQUEST +09:31:30 Received From : +09:31:30 ============================================================================ +09:31:30 FNo. Len. Field Value +09:31:30 ============================================================================ +09:31:30 [ 1] [ 4] [0200] +09:31:30 [ 2] [ 16] [6213545000095798] +09:31:30 [ 3] [ 6] [010000] +09:31:30 [ 4] [ 12] [000100000000] +09:31:30 [ 7] [ 10] [0320023037] +09:31:30 [ 11] [ 6] [267546] +09:31:30 [ 12] [ 6] [093037] +09:31:30 [ 13] [ 4] [0320] +09:31:30 [ 14] [ 4] [4912] +09:31:30 [ 15] [ 4] [0320] +09:31:30 [ 18] [ 4] [6011] +09:31:30 [ 19] [ 3] [418] +09:31:30 [ 22] [ 3] [021] +09:31:30 [ 25] [ 2] [01] +09:31:30 [ 28] [ 9] [D00002000] +09:31:30 [ 32] [ 6] [180893] +09:31:30 [ 35] [ 32] [6213545000095798=491212019579743] +09:31:30 [ 37] [ 12] [507902267546] +09:31:30 [ 41] [ 8] [0112CPBR] +09:31:30 [ 42] [ 15] [999999 ] +09:31:30 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:31:30 [ 49] [ 3] [418] +09:31:30 [ 52] [ 16] [A45005C3FE678DBC] +09:31:30 ============================================================================ +09:31:30 + + +waiting on router queue for slot.... +09:31:30 Sending to : +09:31:30 ============================================================================ +09:31:30 Sending to : +09:31:30 ============================================================================ +09:31:30 ============================================================================ +09:31:30 Slot Id : <52> +09:31:30 Transaction Type : REQUEST +09:31:30 Received From : +09:31:30 ============================================================================ +09:31:30 FNo. Len. Field Value +09:31:30 ============================================================================ +09:31:30 [ 1] [ 4] [0200] +09:31:30 [ 2] [ 16] [6213545000095798] +09:31:30 [ 3] [ 6] [010000] +09:31:30 [ 4] [ 12] [000100000000] +09:31:30 [ 7] [ 10] [0320023037] +09:31:30 [ 11] [ 6] [267546] +09:31:30 [ 12] [ 6] [093037] +09:31:30 [ 13] [ 4] [0320] +09:31:30 [ 14] [ 4] [4912] +09:31:30 [ 15] [ 4] [0320] +09:31:30 [ 18] [ 4] [6011] +09:31:30 [ 19] [ 3] [418] +09:31:30 [ 22] [ 3] [021] +09:31:30 [ 25] [ 2] [01] +09:31:30 [ 28] [ 9] [D00002000] +09:31:30 [ 32] [ 6] [180893] +09:31:30 [ 35] [ 32] [6213545000095798=491212019579743] +09:31:30 [ 37] [ 12] [507902267546] +09:31:30 [ 41] [ 8] [0112CPBR] +09:31:30 [ 42] [ 15] [999999 ] +09:31:30 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:31:30 [ 49] [ 3] [418] +09:31:30 [ 52] [ 16] [A45005C3FE678DBC] +09:31:30 ============================================================================ +09:31:30 + + +waiting on router queue for slot.... +09:31:30 Sending to : +09:31:30 ============================================================================ +09:31:30 ============================================================================ +09:31:30 Slot Id : <52> +09:31:30 Transaction Type : REQUEST +09:31:30 Received From : +09:31:30 ============================================================================ +09:31:30 FNo. Len. Field Value +09:31:30 ============================================================================ +09:31:30 [ 1] [ 4] [0200] +09:31:30 [ 2] [ 16] [6213545000095798] +09:31:30 [ 3] [ 6] [010000] +09:31:30 [ 4] [ 12] [000100000000] +09:31:30 [ 7] [ 10] [0320023037] +09:31:30 [ 11] [ 6] [267546] +09:31:30 [ 12] [ 6] [093037] +09:31:30 [ 13] [ 4] [0320] +09:31:30 [ 14] [ 4] [4912] +09:31:30 [ 15] [ 4] [0320] +09:31:30 [ 18] [ 4] [6011] +09:31:30 [ 19] [ 3] [418] +09:31:30 [ 22] [ 3] [021] +09:31:30 [ 25] [ 2] [01] +09:31:30 [ 28] [ 9] [D00002000] +09:31:30 [ 32] [ 6] [180893] +09:31:30 [ 35] [ 32] [6213545000095798=491212019579743] +09:31:30 [ 37] [ 12] [507902267546] +09:31:30 [ 41] [ 8] [0112CPBR] +09:31:30 [ 42] [ 15] [999999 ] +09:31:30 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:31:30 [ 49] [ 3] [418] +09:31:30 [ 52] [ 16] [EEE3C575243AAF2B] +09:31:30 ============================================================================ +09:31:30 + + +waiting on router queue for slot.... +09:31:30 Sending to : <0> +09:31:30 ============================================================================ +09:31:31 ============================================================================ +09:31:31 Slot Id : <52> +09:31:31 Transaction Type : RESPONSE +09:31:31 Received From : +09:31:31 ============================================================================ +09:31:31 FNo. Len. Field Value +09:31:31 ============================================================================ +09:31:31 [ 1] [ 4] [0210] +09:31:31 [ 2] [ 16] [6213545000095798] +09:31:31 [ 3] [ 6] [010000] +09:31:31 [ 4] [ 12] [000100000000] +09:31:31 [ 7] [ 10] [0320023037] +09:31:31 [ 11] [ 6] [267546] +09:31:31 [ 12] [ 6] [093037] +09:31:31 [ 13] [ 4] [0320] +09:31:31 [ 15] [ 4] [0320] +09:31:31 [ 18] [ 4] [6011] +09:31:31 [ 19] [ 3] [418] +09:31:31 [ 32] [ 6] [180893] +09:31:31 [ 35] [ 32] [6213545000095798=491212019579743] +09:31:31 [ 37] [ 12] [507902267546] +09:31:31 [ 38] [ 6] [541519] +09:31:31 [ 39] [ 2] [00] +09:31:31 [ 41] [ 8] [0112CPBR] +09:31:31 [ 49] [ 3] [418] +09:31:31 [ 54] [ 40] [0001418C0000778627980002418C000077862798] +09:31:31 ============================================================================ +09:31:31 Sending to : +09:31:31 ============================================================================ +09:31:31 + + +waiting on router queue for slot.... +09:31:31 ============================================================================ +09:31:31 Slot Id : <50> +09:31:31 Transaction Type : RESPONSE +09:31:31 Received From : +09:31:31 ============================================================================ +09:31:31 FNo. Len. Field Value +09:31:31 ============================================================================ +09:31:31 [ 1] [ 4] [0210] +09:31:31 [ 2] [ 16] [6213545001108848] +09:31:31 [ 3] [ 6] [301000] +09:31:31 [ 4] [ 12] [000000000000] +09:31:31 [ 7] [ 10] [0320023034] +09:31:31 [ 11] [ 6] [267545] +09:31:31 [ 12] [ 6] [093034] +09:31:31 [ 13] [ 4] [0320] +09:31:31 [ 15] [ 4] [0320] +09:31:31 [ 18] [ 4] [6011] +09:31:31 [ 19] [ 3] [418] +09:31:31 [ 32] [ 6] [180893] +09:31:31 [ 35] [ 32] [6213545001108848=491212010884066] +09:31:31 [ 37] [ 12] [507902267545] +09:31:31 [ 38] [ 6] [354618] +09:31:31 [ 39] [ 2] [00] +09:31:31 [ 41] [ 8] [0221XKKM] +09:31:31 [ 49] [ 3] [418] +09:31:31 [ 54] [ 40] [1001418C0004155420001002418C000415542000] +09:31:31 ============================================================================ +09:31:31 Calculate Source COMM Id = 2 +09:31:31 ============================================================================ +09:31:31 + + +waiting on router queue for slot.... +09:31:32 ============================================================================ +09:31:32 Slot Id : <52> +09:31:32 Transaction Type : RESPONSE +09:31:32 Received From : +09:31:32 ============================================================================ +09:31:32 FNo. Len. Field Value +09:31:32 ============================================================================ +09:31:32 [ 1] [ 4] [0210] +09:31:32 [ 2] [ 16] [6213545000095798] +09:31:32 [ 3] [ 6] [010000] +09:31:32 [ 4] [ 12] [000100000000] +09:31:32 [ 7] [ 10] [0320023037] +09:31:32 [ 11] [ 6] [267546] +09:31:32 [ 12] [ 6] [093037] +09:31:32 [ 13] [ 4] [0320] +09:31:32 [ 15] [ 4] [0320] +09:31:32 [ 18] [ 4] [6011] +09:31:32 [ 19] [ 3] [418] +09:31:32 [ 32] [ 6] [180893] +09:31:32 [ 35] [ 32] [6213545000095798=491212019579743] +09:31:32 [ 37] [ 12] [507902267546] +09:31:32 [ 38] [ 6] [541519] +09:31:32 [ 39] [ 2] [00] +09:31:32 [ 41] [ 8] [0112CPBR] +09:31:32 [ 49] [ 3] [418] +09:31:32 [ 54] [ 40] [0001418C0000778627980002418C000077862798] +09:31:32 ============================================================================ +09:31:32 Calculate Source COMM Id = 2 +09:31:32 ============================================================================ +09:31:32 + + +waiting on router queue for slot.... +09:31:49 ============================================================================ +09:31:49 Slot Id : <44> +09:31:49 Transaction Type : REQUEST +09:31:49 Received From : +09:31:49 ============================================================================ +09:31:49 FNo. Len. Field Value +09:31:49 ============================================================================ +09:31:49 [ 1] [ 4] [0800] +09:31:49 [ 7] [ 10] [0320023056] +09:31:49 [ 11] [ 6] [155652] +09:31:49 [ 70] [ 3] [301] +09:31:49 ============================================================================ +09:31:49 + + +waiting on router queue for slot.... +09:31:49 Sending to : +09:31:49 ============================================================================ +09:31:49 ============================================================================ +09:31:49 Slot Id : <44> +09:31:49 Transaction Type : RESPONSE +09:31:49 Received From : +09:31:49 ============================================================================ +09:31:49 FNo. Len. Field Value +09:31:49 ============================================================================ +09:31:49 [ 1] [ 4] [0810] +09:31:49 [ 7] [ 10] [0320023056] +09:31:49 [ 11] [ 6] [155652] +09:31:49 [ 39] [ 2] [00] +09:31:49 [ 70] [ 3] [301] +09:31:49 ============================================================================ +09:31:49 Calculate Source COMM Id = 2 +09:31:49 ============================================================================ +09:31:49 + + +waiting on router queue for slot.... +09:31:59 ============================================================================ +09:31:59 Slot Id : <61> +09:31:59 Transaction Type : REQUEST +09:31:59 Received From : +09:31:59 ============================================================================ +09:31:59 FNo. Len. Field Value +09:31:59 ============================================================================ +09:31:59 [ 1] [ 4] [0200] +09:31:59 [ 2] [ 16] [6688990040113688] +09:31:59 [ 3] [ 6] [300000] +09:31:59 [ 4] [ 12] [000000000000] +09:31:59 [ 7] [ 10] [0320093155] +09:31:59 [ 11] [ 6] [699863] +09:31:59 [ 12] [ 6] [093155] +09:31:59 [ 13] [ 4] [0320] +09:31:59 [ 15] [ 4] [0320] +09:31:59 [ 18] [ 4] [6011] +09:31:59 [ 22] [ 3] [900] +09:31:59 [ 25] [ 2] [02] +09:31:59 [ 28] [ 9] [D00000000] +09:31:59 [ 32] [ 6] [621354] +09:31:59 [ 35] [ 37] [6688990040113688=98031261105645600000] +09:31:59 [ 37] [ 12] [507903063479] +09:31:59 [ 41] [ 8] [01008600] +09:31:59 [ 42] [ 15] [NATIVE ] +09:31:59 [ 43] [ 40] [BEER LAO Hatxaifong LAO] +09:31:59 [ 49] [ 3] [418] +09:31:59 [ 52] [ 16] [3100BBEC03A0FBAB] +09:31:59 ============================================================================ +09:31:59 + + +waiting on router queue for slot.... +09:31:59 Sending to : +09:31:59 ============================================================================ +09:31:59 Sending to : +09:31:59 ============================================================================ +09:32:00 ============================================================================ +09:32:00 Slot Id : <61> +09:32:00 Transaction Type : REQUEST +09:32:00 Received From : +09:32:00 ============================================================================ +09:32:00 FNo. Len. Field Value +09:32:00 ============================================================================ +09:32:00 [ 1] [ 4] [0200] +09:32:00 [ 2] [ 16] [6688990040113688] +09:32:00 [ 3] [ 6] [300000] +09:32:00 [ 4] [ 12] [000000000000] +09:32:00 [ 7] [ 10] [0320093155] +09:32:00 [ 11] [ 6] [699863] +09:32:00 [ 12] [ 6] [093155] +09:32:00 [ 13] [ 4] [0320] +09:32:00 [ 15] [ 4] [0320] +09:32:00 [ 18] [ 4] [6011] +09:32:00 [ 22] [ 3] [900] +09:32:00 [ 25] [ 2] [02] +09:32:00 [ 28] [ 9] [D00000000] +09:32:00 [ 32] [ 6] [621354] +09:32:00 [ 35] [ 37] [6688990040113688=98031261105645600000] +09:32:00 [ 37] [ 12] [507903063479] +09:32:00 [ 41] [ 8] [01008600] +09:32:00 [ 42] [ 15] [NATIVE ] +09:32:00 [ 43] [ 40] [BEER LAO Hatxaifong LAO] +09:32:00 [ 49] [ 3] [418] +09:32:00 [ 52] [ 16] [3100BBEC03A0FBAB] +09:32:00 ============================================================================ +09:32:00 + + +waiting on router queue for slot.... +09:32:00 Sending to : +09:32:00 ============================================================================ +09:32:00 ============================================================================ +09:32:00 Slot Id : <61> +09:32:00 Transaction Type : REQUEST +09:32:00 Received From : +09:32:00 ============================================================================ +09:32:00 FNo. Len. Field Value +09:32:00 ============================================================================ +09:32:00 [ 1] [ 4] [0200] +09:32:00 [ 2] [ 16] [6688990040113688] +09:32:00 [ 3] [ 6] [300000] +09:32:00 [ 4] [ 12] [000000000000] +09:32:00 [ 7] [ 10] [0320093155] +09:32:00 [ 11] [ 6] [699863] +09:32:00 [ 12] [ 6] [093155] +09:32:00 [ 13] [ 4] [0320] +09:32:00 [ 15] [ 4] [0320] +09:32:00 [ 18] [ 4] [6011] +09:32:00 [ 22] [ 3] [900] +09:32:00 [ 25] [ 2] [02] +09:32:00 [ 28] [ 9] [D00000000] +09:32:00 [ 32] [ 6] [621354] +09:32:00 [ 35] [ 37] [6688990040113688=98031261105645600000] +09:32:00 [ 37] [ 12] [507903063479] +09:32:00 [ 41] [ 8] [01008600] +09:32:00 [ 42] [ 15] [NATIVE ] +09:32:00 [ 43] [ 40] [BEER LAO Hatxaifong LAO] +09:32:00 [ 49] [ 3] [418] +09:32:00 [ 52] [ 16] [5B81F1F17F56F560] +09:32:00 ============================================================================ +09:32:00 + + +waiting on router queue for slot.... +09:32:00 Sending to : <4> +09:32:00 ============================================================================ +09:32:01 ============================================================================ +09:32:01 Slot Id : <61> +09:32:01 Transaction Type : RESPONSE +09:32:01 Received From : +09:32:01 ============================================================================ +09:32:01 FNo. Len. Field Value +09:32:01 ============================================================================ +09:32:01 [ 1] [ 4] [0210] +09:32:01 [ 2] [ 16] [6688990040113688] +09:32:01 [ 3] [ 6] [300000] +09:32:01 [ 4] [ 12] [000000000000] +09:32:01 [ 11] [ 6] [699863] +09:32:01 [ 12] [ 6] [093155] +09:32:01 [ 15] [ 4] [0320] +09:32:01 [ 18] [ 4] [6011] +09:32:01 [ 32] [ 6] [621354] +09:32:01 [ 35] [ 37] [6688990040113688=98031261105645600000] +09:32:01 [ 37] [ 12] [507903063479] +09:32:01 [ 38] [ 6] [229192] +09:32:01 [ 39] [ 2] [00] +09:32:01 [ 41] [ 8] [01008600] +09:32:01 [ 49] [ 3] [418] +09:32:01 [ 54] [ 20] [0002418C000048268253] +09:32:01 ============================================================================ +09:32:01 Sending to : +09:32:01 ============================================================================ +09:32:01 + + +waiting on router queue for slot.... +09:32:02 ============================================================================ +09:32:02 Slot Id : <61> +09:32:02 Transaction Type : RESPONSE +09:32:02 Received From : +09:32:02 ============================================================================ +09:32:02 FNo. Len. Field Value +09:32:02 ============================================================================ +09:32:02 [ 1] [ 4] [0210] +09:32:02 [ 2] [ 16] [6688990040113688] +09:32:02 [ 3] [ 6] [300000] +09:32:02 [ 4] [ 12] [000000000000] +09:32:02 [ 11] [ 6] [699863] +09:32:02 [ 12] [ 6] [093155] +09:32:02 [ 15] [ 4] [0320] +09:32:02 [ 18] [ 4] [6011] +09:32:02 [ 32] [ 6] [621354] +09:32:02 [ 35] [ 37] [6688990040113688=98031261105645600000] +09:32:02 [ 37] [ 12] [507903063479] +09:32:02 [ 38] [ 6] [229192] +09:32:02 [ 39] [ 2] [00] +09:32:02 [ 41] [ 8] [01008600] +09:32:02 [ 49] [ 3] [418] +09:32:02 [ 54] [ 20] [0002418C000048268253] +09:32:02 ============================================================================ +09:32:02 Calculate Source COMM Id = 0 +09:32:02 ============================================================================ +09:32:02 + + +waiting on router queue for slot.... +09:32:02 ============================================================================ +09:32:02 Slot Id : <25> +09:32:02 Transaction Type : REQUEST +09:32:02 Received From : +09:32:02 ============================================================================ +09:32:02 FNo. Len. Field Value +09:32:02 ============================================================================ +09:32:02 [ 1] [ 4] [0800] +09:32:02 [ 2] [ 5] [02531] +09:32:02 [ 3] [ 6] [579098] +09:32:02 [ 7] [ 10] [0320023202] +09:32:02 [ 11] [ 6] [806965] +09:32:02 [ 15] [ 10] [0320023202] +09:32:02 [ 37] [ 11] [57909806965] +09:32:02 [ 70] [ 3] [001] +09:32:02 ============================================================================ +09:32:02 + + +waiting on router queue for slot.... +09:32:03 ============================================================================ +09:32:03 Slot Id : <25> +09:32:03 Transaction Type : RESPONSE +09:32:03 Received From : +09:32:03 ============================================================================ +09:32:03 FNo. Len. Field Value +09:32:03 ============================================================================ +09:32:03 [ 1] [ 4] [0810] +09:32:03 [ 7] [ 10] [0320023202] +09:32:03 [ 11] [ 6] [806965] +09:32:03 [ 15] [ 4] [0320] +09:32:03 [ 37] [ 12] [57909806965] +09:32:03 [ 39] [ 2] [00] +09:32:03 [ 70] [ 3] [001] +09:32:03 ============================================================================ +09:32:03 Sending to : +09:32:03 ============================================================================ +09:32:03 + + +waiting on router queue for slot.... +09:32:06 ============================================================================ +09:32:06 Slot Id : <15> +09:32:06 Transaction Type : REQUEST +09:32:06 Received From : +09:32:06 ============================================================================ +09:32:06 FNo. Len. Field Value +09:32:06 ============================================================================ +09:32:06 [ 1] [ 4] [0800] +09:32:06 [ 7] [ 10] [0320023114] +09:32:06 [ 11] [ 6] [155653] +09:32:06 [ 70] [ 3] [301] +09:32:06 ============================================================================ +09:32:06 + + +waiting on router queue for slot.... +09:32:06 Sending to : +09:32:06 ============================================================================ +09:32:06 ============================================================================ +09:32:06 Slot Id : <15> +09:32:06 Transaction Type : RESPONSE +09:32:06 Received From : +09:32:06 ============================================================================ +09:32:06 FNo. Len. Field Value +09:32:06 ============================================================================ +09:32:06 [ 1] [ 4] [0810] +09:32:06 [ 7] [ 10] [0320023114] +09:32:06 [ 11] [ 6] [155653] +09:32:06 [ 39] [ 2] [00] +09:32:06 [ 70] [ 3] [301] +09:32:06 ============================================================================ +09:32:06 Calculate Source COMM Id = 2 +09:32:06 ============================================================================ +09:32:06 + + +waiting on router queue for slot.... +09:32:09 ============================================================================ +09:32:09 Slot Id : <55> +09:32:09 Transaction Type : REQUEST +09:32:09 Received From : +09:32:09 ============================================================================ +09:32:09 FNo. Len. Field Value +09:32:09 ============================================================================ +09:32:09 [ 1] [ 4] [0800] +09:32:09 [ 7] [ 10] [0320164357] +09:32:09 [ 11] [ 6] [094357] +09:32:09 [ 37] [ 12] [57909094357] +09:32:09 [ 70] [ 3] [301] +09:32:09 ============================================================================ +09:32:09 + + +waiting on router queue for slot.... +09:32:09 Sending to : +09:32:09 ============================================================================ +09:32:09 ============================================================================ +09:32:09 Slot Id : <55> +09:32:09 Transaction Type : RESPONSE +09:32:09 Received From : +09:32:09 ============================================================================ +09:32:09 FNo. Len. Field Value +09:32:09 ============================================================================ +09:32:09 [ 1] [ 4] [0810] +09:32:09 [ 7] [ 10] [0320164357] +09:32:09 [ 11] [ 6] [094357] +09:32:09 [ 37] [ 12] [579090943570] +09:32:09 [ 39] [ 2] [00] +09:32:09 [ 70] [ 3] [810] +09:32:09 ============================================================================ +09:32:09 Calculate Source COMM Id = 6 +09:32:09 ============================================================================ +09:32:09 + + +waiting on router queue for slot.... +09:32:12 ============================================================================ +09:32:12 Slot Id : <68> +09:32:12 Transaction Type : REQUEST +09:32:12 Received From : +09:32:12 ============================================================================ +09:32:12 FNo. Len. Field Value +09:32:12 ============================================================================ +09:32:12 [ 1] [ 4] [0200] +09:32:12 [ 2] [ 16] [1808930200040129] +09:32:12 [ 3] [ 6] [011000] +09:32:12 [ 4] [ 12] [000012000000] +09:32:12 [ 7] [ 10] [0320093234] +09:32:12 [ 11] [ 6] [203013] +09:32:12 [ 12] [ 6] [213045] +09:32:12 [ 13] [ 4] [0319] +09:32:12 [ 14] [ 4] [1803] +09:32:12 [ 15] [ 4] [0319] +09:32:12 [ 18] [ 4] [6011] +09:32:12 [ 19] [ 3] [418] +09:32:12 [ 22] [ 3] [021] +09:32:12 [ 25] [ 2] [01] +09:32:12 [ 28] [ 9] [D00002000] +09:32:12 [ 32] [ 6] [198901] +09:32:12 [ 35] [ 27] [1808930200040129=1803500751] +09:32:12 [ 37] [ 12] [507909203013] +09:32:12 [ 41] [ 8] [01529031] +09:32:12 [ 42] [ 15] [000000041529031] +09:32:12 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:32:12 [ 49] [ 3] [418] +09:32:12 [ 52] [ 16] [0A5321EDC2CE6DB5] +09:32:12 ============================================================================ +09:32:12 + + +waiting on router queue for slot.... +09:32:12 Sending to : +09:32:12 ============================================================================ +09:32:12 Sending to : +09:32:12 ============================================================================ +09:32:13 ============================================================================ +09:32:13 Slot Id : <68> +09:32:13 Transaction Type : REQUEST +09:32:13 Received From : +09:32:13 ============================================================================ +09:32:13 FNo. Len. Field Value +09:32:13 ============================================================================ +09:32:13 [ 1] [ 4] [0200] +09:32:13 [ 2] [ 16] [1808930200040129] +09:32:13 [ 3] [ 6] [011000] +09:32:13 [ 4] [ 12] [000012000000] +09:32:13 [ 7] [ 10] [0320093234] +09:32:13 [ 11] [ 6] [203013] +09:32:13 [ 12] [ 6] [213045] +09:32:13 [ 13] [ 4] [0319] +09:32:13 [ 14] [ 4] [1803] +09:32:13 [ 15] [ 4] [0319] +09:32:13 [ 18] [ 4] [6011] +09:32:13 [ 19] [ 3] [418] +09:32:13 [ 22] [ 3] [021] +09:32:13 [ 25] [ 2] [01] +09:32:13 [ 28] [ 9] [D00002000] +09:32:13 [ 32] [ 6] [198901] +09:32:13 [ 35] [ 27] [1808930200040129=1803500751] +09:32:13 [ 37] [ 12] [507909203013] +09:32:13 [ 41] [ 8] [01529031] +09:32:13 [ 42] [ 15] [000000041529031] +09:32:13 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:32:13 [ 49] [ 3] [418] +09:32:13 [ 52] [ 16] [0A5321EDC2CE6DB5] +09:32:13 ============================================================================ +09:32:13 + + +waiting on router queue for slot.... +09:32:13 Sending to : +09:32:13 ============================================================================ +09:32:13 ============================================================================ +09:32:13 Slot Id : <68> +09:32:13 Transaction Type : REQUEST +09:32:13 Received From : +09:32:13 ============================================================================ +09:32:13 FNo. Len. Field Value +09:32:13 ============================================================================ +09:32:13 [ 1] [ 4] [0200] +09:32:13 [ 2] [ 16] [1808930200040129] +09:32:13 [ 3] [ 6] [011000] +09:32:13 [ 4] [ 12] [000012000000] +09:32:13 [ 7] [ 10] [0320093234] +09:32:13 [ 11] [ 6] [203013] +09:32:13 [ 12] [ 6] [213045] +09:32:13 [ 13] [ 4] [0319] +09:32:13 [ 14] [ 4] [1803] +09:32:13 [ 15] [ 4] [0319] +09:32:13 [ 18] [ 4] [6011] +09:32:13 [ 19] [ 3] [418] +09:32:13 [ 22] [ 3] [021] +09:32:13 [ 25] [ 2] [01] +09:32:13 [ 28] [ 9] [D00002000] +09:32:13 [ 32] [ 6] [198901] +09:32:13 [ 35] [ 27] [1808930200040129=1803500751] +09:32:13 [ 37] [ 12] [507909203013] +09:32:13 [ 41] [ 8] [01529031] +09:32:13 [ 42] [ 15] [000000041529031] +09:32:13 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:32:13 [ 49] [ 3] [418] +09:32:13 [ 52] [ 16] [6661C75C99EB128D] +09:32:13 ============================================================================ +09:32:13 + + +waiting on router queue for slot.... +09:32:13 Sending to : <2> +09:32:13 ============================================================================ +09:32:17 ============================================================================ +09:32:17 Slot Id : <478> +09:32:17 Transaction Type : REQUEST +09:32:17 Received From : +09:32:17 ============================================================================ +09:32:17 FNo. Len. Field Value +09:32:17 ============================================================================ +09:32:17 [ 1] [ 4] [0200] +09:32:17 [ 2] [ 16] [6688990100924305] +09:32:17 [ 3] [ 6] [011000] +09:32:17 [ 4] [ 12] [000005000000] +09:32:17 [ 7] [ 10] [0320093213] +09:32:17 [ 11] [ 6] [699937] +09:32:17 [ 12] [ 6] [093213] +09:32:17 [ 13] [ 4] [0320] +09:32:17 [ 15] [ 4] [0320] +09:32:17 [ 18] [ 4] [6011] +09:32:17 [ 22] [ 3] [900] +09:32:17 [ 25] [ 2] [02] +09:32:17 [ 28] [ 9] [D00002000] +09:32:17 [ 32] [ 6] [621354] +09:32:17 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:32:17 [ 37] [ 12] [507904719421] +09:32:17 [ 41] [ 8] [18001000] +09:32:17 [ 42] [ 15] [NATIVE ] +09:32:17 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:32:17 [ 49] [ 3] [418] +09:32:17 [ 52] [ 16] [0836B1A6190C2285] +09:32:17 ============================================================================ +09:32:17 + + +waiting on router queue for slot.... +09:32:17 Sending to : +09:32:17 ============================================================================ +09:32:17 Sending to : +09:32:17 ============================================================================ +09:32:17 ============================================================================ +09:32:17 Slot Id : <478> +09:32:17 Transaction Type : REQUEST +09:32:17 Received From : +09:32:17 ============================================================================ +09:32:17 FNo. Len. Field Value +09:32:17 ============================================================================ +09:32:17 [ 1] [ 4] [0200] +09:32:17 [ 2] [ 16] [6688990100924305] +09:32:17 [ 3] [ 6] [011000] +09:32:17 [ 4] [ 12] [000005000000] +09:32:17 [ 7] [ 10] [0320093213] +09:32:17 [ 11] [ 6] [699937] +09:32:17 [ 12] [ 6] [093213] +09:32:17 [ 13] [ 4] [0320] +09:32:17 [ 15] [ 4] [0320] +09:32:17 [ 18] [ 4] [6011] +09:32:17 [ 22] [ 3] [900] +09:32:17 [ 25] [ 2] [02] +09:32:17 [ 28] [ 9] [D00002000] +09:32:17 [ 32] [ 6] [621354] +09:32:17 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:32:17 [ 37] [ 12] [507904719421] +09:32:17 [ 41] [ 8] [18001000] +09:32:17 [ 42] [ 15] [NATIVE ] +09:32:17 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:32:17 [ 49] [ 3] [418] +09:32:17 [ 52] [ 16] [0836B1A6190C2285] +09:32:17 ============================================================================ +09:32:17 + + +waiting on router queue for slot.... +09:32:17 Sending to : +09:32:17 ============================================================================ +09:32:17 ============================================================================ +09:32:17 Slot Id : <478> +09:32:17 Transaction Type : REQUEST +09:32:17 Received From : +09:32:17 ============================================================================ +09:32:17 FNo. Len. Field Value +09:32:17 ============================================================================ +09:32:17 [ 1] [ 4] [0200] +09:32:17 [ 2] [ 16] [6688990100924305] +09:32:17 [ 3] [ 6] [011000] +09:32:17 [ 4] [ 12] [000005000000] +09:32:17 [ 7] [ 10] [0320093213] +09:32:17 [ 11] [ 6] [699937] +09:32:17 [ 12] [ 6] [093213] +09:32:17 [ 13] [ 4] [0320] +09:32:17 [ 15] [ 4] [0320] +09:32:17 [ 18] [ 4] [6011] +09:32:17 [ 22] [ 3] [900] +09:32:17 [ 25] [ 2] [02] +09:32:17 [ 28] [ 9] [D00002000] +09:32:17 [ 32] [ 6] [621354] +09:32:17 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:32:17 [ 37] [ 12] [507904719421] +09:32:17 [ 41] [ 8] [18001000] +09:32:17 [ 42] [ 15] [NATIVE ] +09:32:17 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:32:17 [ 49] [ 3] [418] +09:32:17 [ 52] [ 16] [04E46765C2DC7268] +09:32:17 ============================================================================ +09:32:17 + + +waiting on router queue for slot.... +09:32:17 Sending to : <4> +09:32:17 ============================================================================ +09:32:17 ============================================================================ +09:32:17 Slot Id : <60> +09:32:17 Transaction Type : REQUEST +09:32:17 Received From : +09:32:17 ============================================================================ +09:32:17 FNo. Len. Field Value +09:32:17 ============================================================================ +09:32:17 [ 1] [ 4] [0200] +09:32:17 [ 2] [ 16] [6213544001906277] +09:32:17 [ 3] [ 6] [010000] +09:32:17 [ 4] [ 12] [000100000000] +09:32:17 [ 7] [ 10] [0320093008] +09:32:17 [ 11] [ 6] [935862] +09:32:17 [ 12] [ 6] [093008] +09:32:17 [ 13] [ 4] [0320] +09:32:17 [ 15] [ 4] [0320] +09:32:17 [ 18] [ 4] [6011] +09:32:17 [ 19] [ 3] [418] +09:32:17 [ 22] [ 3] [021] +09:32:17 [ 25] [ 2] [01] +09:32:17 [ 28] [ 9] [D00002000] +09:32:17 [ 32] [ 6] [668899] +09:32:17 [ 35] [ 32] [6213544001906277=491212010627879] +09:32:17 [ 37] [ 12] [507902475673] +09:32:17 [ 41] [ 8] [03020032] +09:32:17 [ 42] [ 15] [APT ] +09:32:17 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +09:32:17 [ 49] [ 3] [418] +09:32:17 [ 52] [ 16] [ADEBF413FCA71BC8] +09:32:17 ============================================================================ +09:32:17 + + +waiting on router queue for slot.... +09:32:17 Sending to : +09:32:17 ============================================================================ +09:32:17 Sending to : +09:32:17 ============================================================================ +09:32:17 ============================================================================ +09:32:17 Slot Id : <60> +09:32:17 Transaction Type : REQUEST +09:32:17 Received From : +09:32:17 ============================================================================ +09:32:17 FNo. Len. Field Value +09:32:17 ============================================================================ +09:32:17 [ 1] [ 4] [0200] +09:32:17 [ 2] [ 16] [6213544001906277] +09:32:17 [ 3] [ 6] [010000] +09:32:17 [ 4] [ 12] [000100000000] +09:32:17 [ 7] [ 10] [0320093008] +09:32:17 [ 11] [ 6] [935862] +09:32:17 [ 12] [ 6] [093008] +09:32:17 [ 13] [ 4] [0320] +09:32:17 [ 15] [ 4] [0320] +09:32:17 [ 18] [ 4] [6011] +09:32:17 [ 19] [ 3] [418] +09:32:17 [ 22] [ 3] [021] +09:32:17 [ 25] [ 2] [01] +09:32:17 [ 28] [ 9] [D00002000] +09:32:17 [ 32] [ 6] [668899] +09:32:17 [ 35] [ 32] [6213544001906277=491212010627879] +09:32:17 [ 37] [ 12] [507902475673] +09:32:17 [ 41] [ 8] [03020032] +09:32:17 [ 42] [ 15] [APT ] +09:32:17 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +09:32:17 [ 49] [ 3] [418] +09:32:17 [ 52] [ 16] [ADEBF413FCA71BC8] +09:32:17 ============================================================================ +09:32:17 + + +waiting on router queue for slot.... +09:32:17 Sending to : +09:32:17 ============================================================================ +09:32:17 ============================================================================ +09:32:17 Slot Id : <60> +09:32:17 Transaction Type : REQUEST +09:32:17 Received From : +09:32:17 ============================================================================ +09:32:17 FNo. Len. Field Value +09:32:17 ============================================================================ +09:32:17 [ 1] [ 4] [0200] +09:32:17 [ 2] [ 16] [6213544001906277] +09:32:17 [ 3] [ 6] [010000] +09:32:17 [ 4] [ 12] [000100000000] +09:32:17 [ 7] [ 10] [0320093008] +09:32:17 [ 11] [ 6] [935862] +09:32:17 [ 12] [ 6] [093008] +09:32:17 [ 13] [ 4] [0320] +09:32:17 [ 15] [ 4] [0320] +09:32:17 [ 18] [ 4] [6011] +09:32:17 [ 19] [ 3] [418] +09:32:17 [ 22] [ 3] [021] +09:32:17 [ 25] [ 2] [01] +09:32:17 [ 28] [ 9] [D00002000] +09:32:17 [ 32] [ 6] [668899] +09:32:17 [ 35] [ 32] [6213544001906277=491212010627879] +09:32:17 [ 37] [ 12] [507902475673] +09:32:17 [ 41] [ 8] [03020032] +09:32:17 [ 42] [ 15] [APT ] +09:32:17 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +09:32:17 [ 49] [ 3] [418] +09:32:17 [ 52] [ 16] [F55C9E42179ABD04] +09:32:17 ============================================================================ +09:32:17 + + +waiting on router queue for slot.... +09:32:17 Sending to : <0> +09:32:17 ============================================================================ +09:32:18 ============================================================================ +09:32:18 Slot Id : <478> +09:32:18 Transaction Type : RESPONSE +09:32:18 Received From : +09:32:18 ============================================================================ +09:32:18 FNo. Len. Field Value +09:32:18 ============================================================================ +09:32:18 [ 1] [ 4] [0210] +09:32:18 [ 2] [ 16] [6688990100924305] +09:32:18 [ 3] [ 6] [011000] +09:32:18 [ 4] [ 12] [000005000000] +09:32:18 [ 11] [ 6] [699937] +09:32:18 [ 12] [ 6] [093213] +09:32:18 [ 15] [ 4] [0320] +09:32:18 [ 18] [ 4] [6011] +09:32:18 [ 32] [ 6] [621354] +09:32:18 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:32:18 [ 37] [ 12] [507904719421] +09:32:18 [ 38] [ 6] [667352] +09:32:18 [ 39] [ 2] [00] +09:32:18 [ 41] [ 8] [18001000] +09:32:18 [ 49] [ 3] [418] +09:32:18 [ 54] [ 20] [1002418C000003081933] +09:32:18 ============================================================================ +09:32:18 Sending to : +09:32:18 ============================================================================ +09:32:18 + + +waiting on router queue for slot.... +09:32:18 ============================================================================ +09:32:18 Slot Id : <60> +09:32:18 Transaction Type : RESPONSE +09:32:18 Received From : +09:32:18 ============================================================================ +09:32:18 FNo. Len. Field Value +09:32:18 ============================================================================ +09:32:18 [ 1] [ 4] [0210] +09:32:18 [ 2] [ 16] [6213544001906277] +09:32:18 [ 3] [ 6] [010000] +09:32:18 [ 4] [ 12] [000100000000] +09:32:18 [ 7] [ 10] [0320093008] +09:32:18 [ 11] [ 6] [935862] +09:32:18 [ 12] [ 6] [093008] +09:32:18 [ 13] [ 4] [0320] +09:32:18 [ 15] [ 4] [0320] +09:32:18 [ 18] [ 4] [6011] +09:32:18 [ 19] [ 3] [418] +09:32:18 [ 32] [ 6] [668899] +09:32:18 [ 35] [ 32] [6213544001906277=491212010627879] +09:32:18 [ 37] [ 12] [507902475673] +09:32:18 [ 38] [ 6] [009583] +09:32:18 [ 39] [ 2] [00] +09:32:18 [ 41] [ 8] [03020032] +09:32:18 [ 49] [ 3] [418] +09:32:18 [ 54] [ 40] [0001418C0006002072140002418C000600207214] +09:32:18 ============================================================================ +09:32:18 Sending to : +09:32:18 ============================================================================ +09:32:18 + + +waiting on router queue for slot.... +09:32:19 ============================================================================ +09:32:19 Slot Id : <478> +09:32:19 Transaction Type : RESPONSE +09:32:19 Received From : +09:32:19 ============================================================================ +09:32:19 FNo. Len. Field Value +09:32:19 ============================================================================ +09:32:19 [ 1] [ 4] [0210] +09:32:19 [ 2] [ 16] [6688990100924305] +09:32:19 [ 3] [ 6] [011000] +09:32:19 [ 4] [ 12] [000005000000] +09:32:19 [ 11] [ 6] [699937] +09:32:19 [ 12] [ 6] [093213] +09:32:19 [ 15] [ 4] [0320] +09:32:19 [ 18] [ 4] [6011] +09:32:19 [ 32] [ 6] [621354] +09:32:19 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:32:19 [ 37] [ 12] [507904719421] +09:32:19 [ 38] [ 6] [667352] +09:32:19 [ 39] [ 2] [00] +09:32:19 [ 41] [ 8] [18001000] +09:32:19 [ 49] [ 3] [418] +09:32:19 [ 54] [ 20] [1002418C000003081933] +09:32:19 ============================================================================ +09:32:19 Calculate Source COMM Id = 0 +09:32:19 ============================================================================ +09:32:19 + + +waiting on router queue for slot.... +09:32:20 ============================================================================ +09:32:20 Slot Id : <68> +09:32:20 Transaction Type : RESPONSE +09:32:20 Received From : +09:32:20 ============================================================================ +09:32:20 FNo. Len. Field Value +09:32:20 ============================================================================ +09:32:20 [ 1] [ 4] [0210] +09:32:20 [ 2] [ 16] [1808930200040129] +09:32:20 [ 3] [ 6] [011000] +09:32:20 [ 4] [ 12] [000012000000] +09:32:20 [ 6] [ 12] [000012000000] +09:32:20 [ 7] [ 10] [0320093234] +09:32:20 [ 11] [ 6] [203013] +09:32:20 [ 12] [ 6] [213045] +09:32:20 [ 13] [ 4] [0320] +09:32:20 [ 14] [ 4] [1803] +09:32:20 [ 18] [ 4] [6011] +09:32:20 [ 19] [ 3] [418] +09:32:20 [ 22] [ 3] [021] +09:32:20 [ 32] [ 6] [198901] +09:32:20 [ 35] [ 27] [1808930200040129=1803500751] +09:32:20 [ 37] [ 12] [507909203013] +09:32:20 [ 38] [ 6] [203013] +09:32:20 [ 39] [ 2] [00] +09:32:20 [ 41] [ 8] [01529031] +09:32:20 [ 49] [ 3] [418] +09:32:20 [ 52] [ 16] [6661C75C99EB128D] +09:32:20 [ 54] [ 20] [1001418C000060898300] +09:32:20 ============================================================================ +09:32:20 Sending to : +09:32:20 ============================================================================ +09:32:20 + + +waiting on router queue for slot.... +09:32:21 ============================================================================ +09:32:21 Slot Id : <60> +09:32:21 Transaction Type : RESPONSE +09:32:21 Received From : +09:32:21 ============================================================================ +09:32:21 FNo. Len. Field Value +09:32:21 ============================================================================ +09:32:21 [ 1] [ 4] [0210] +09:32:21 [ 2] [ 16] [6213544001906277] +09:32:21 [ 3] [ 6] [010000] +09:32:21 [ 4] [ 12] [000100000000] +09:32:21 [ 7] [ 10] [0320093008] +09:32:21 [ 11] [ 6] [935862] +09:32:21 [ 12] [ 6] [093008] +09:32:21 [ 13] [ 4] [0320] +09:32:21 [ 15] [ 4] [0320] +09:32:21 [ 18] [ 4] [6011] +09:32:21 [ 19] [ 3] [418] +09:32:21 [ 32] [ 6] [668899] +09:32:21 [ 35] [ 32] [6213544001906277=491212010627879] +09:32:21 [ 37] [ 12] [507902475673] +09:32:21 [ 38] [ 6] [009583] +09:32:21 [ 39] [ 2] [00] +09:32:21 [ 41] [ 8] [03020032] +09:32:21 [ 49] [ 3] [418] +09:32:21 [ 54] [ 40] [0001418C0006002072140002418C000600207214] +09:32:21 ============================================================================ +09:32:21 Calculate Source COMM Id = 4 +09:32:21 ============================================================================ +09:32:21 + + +waiting on router queue for slot.... +09:32:23 ============================================================================ +09:32:23 Slot Id : <68> +09:32:23 Transaction Type : RESPONSE +09:32:23 Received From : +09:32:23 ============================================================================ +09:32:23 FNo. Len. Field Value +09:32:23 ============================================================================ +09:32:23 [ 1] [ 4] [0210] +09:32:23 [ 2] [ 16] [1808930200040129] +09:32:23 [ 3] [ 6] [011000] +09:32:23 [ 4] [ 12] [000012000000] +09:32:23 [ 6] [ 12] [000012000000] +09:32:23 [ 7] [ 10] [0320093234] +09:32:23 [ 11] [ 6] [203013] +09:32:23 [ 12] [ 6] [213045] +09:32:23 [ 13] [ 4] [0320] +09:32:23 [ 14] [ 4] [1803] +09:32:23 [ 18] [ 4] [6011] +09:32:23 [ 19] [ 3] [418] +09:32:23 [ 22] [ 3] [021] +09:32:23 [ 32] [ 6] [198901] +09:32:23 [ 35] [ 27] [1808930200040129=1803500751] +09:32:23 [ 37] [ 12] [507909203013] +09:32:23 [ 38] [ 6] [203013] +09:32:23 [ 39] [ 2] [00] +09:32:23 [ 41] [ 8] [01529031] +09:32:23 [ 49] [ 3] [418] +09:32:23 [ 52] [ 16] [6661C75C99EB128D] +09:32:23 [ 54] [ 20] [1001418C000060898300] +09:32:23 ============================================================================ +09:32:23 Calculate Source COMM Id = 5 +09:32:23 ============================================================================ +09:32:23 + + +waiting on router queue for slot.... +09:32:24 ============================================================================ +09:32:24 Slot Id : <63> +09:32:24 Transaction Type : REQUEST +09:32:24 Received From : +09:32:24 ============================================================================ +09:32:24 FNo. Len. Field Value +09:32:24 ============================================================================ +09:32:24 [ 1] [ 4] [0200] +09:32:24 [ 2] [ 16] [6213545001108848] +09:32:24 [ 3] [ 6] [010000] +09:32:24 [ 4] [ 12] [000150000000] +09:32:24 [ 7] [ 10] [0320023131] +09:32:24 [ 11] [ 6] [267559] +09:32:24 [ 12] [ 6] [093131] +09:32:24 [ 13] [ 4] [0320] +09:32:24 [ 14] [ 4] [4912] +09:32:24 [ 15] [ 4] [0320] +09:32:24 [ 18] [ 4] [6011] +09:32:24 [ 19] [ 3] [418] +09:32:24 [ 22] [ 3] [021] +09:32:24 [ 25] [ 2] [01] +09:32:24 [ 28] [ 9] [D00002000] +09:32:24 [ 32] [ 6] [180893] +09:32:24 [ 35] [ 32] [6213545001108848=491212010884066] +09:32:24 [ 37] [ 12] [507902267559] +09:32:24 [ 41] [ 8] [0221XKKM] +09:32:24 [ 42] [ 15] [999999 ] +09:32:24 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:32:24 [ 49] [ 3] [418] +09:32:24 [ 52] [ 16] [2FF7E970074030F1] +09:32:24 ============================================================================ +09:32:24 + + +waiting on router queue for slot.... +09:32:24 Sending to : +09:32:24 ============================================================================ +09:32:24 Sending to : +09:32:24 ============================================================================ +09:32:24 ============================================================================ +09:32:24 Slot Id : <63> +09:32:24 Transaction Type : REQUEST +09:32:24 Received From : +09:32:24 ============================================================================ +09:32:24 FNo. Len. Field Value +09:32:24 ============================================================================ +09:32:24 [ 1] [ 4] [0200] +09:32:24 [ 2] [ 16] [6213545001108848] +09:32:24 [ 3] [ 6] [010000] +09:32:24 [ 4] [ 12] [000150000000] +09:32:24 [ 7] [ 10] [0320023131] +09:32:24 [ 11] [ 6] [267559] +09:32:24 [ 12] [ 6] [093131] +09:32:24 [ 13] [ 4] [0320] +09:32:24 [ 14] [ 4] [4912] +09:32:24 [ 15] [ 4] [0320] +09:32:24 [ 18] [ 4] [6011] +09:32:24 [ 19] [ 3] [418] +09:32:24 [ 22] [ 3] [021] +09:32:24 [ 25] [ 2] [01] +09:32:24 [ 28] [ 9] [D00002000] +09:32:24 [ 32] [ 6] [180893] +09:32:24 [ 35] [ 32] [6213545001108848=491212010884066] +09:32:24 [ 37] [ 12] [507902267559] +09:32:24 [ 41] [ 8] [0221XKKM] +09:32:24 [ 42] [ 15] [999999 ] +09:32:24 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:32:24 [ 49] [ 3] [418] +09:32:24 [ 52] [ 16] [2FF7E970074030F1] +09:32:24 ============================================================================ +09:32:24 + + +waiting on router queue for slot.... +09:32:24 Sending to : +09:32:24 ============================================================================ +09:32:24 ============================================================================ +09:32:24 Slot Id : <63> +09:32:24 Transaction Type : REQUEST +09:32:24 Received From : +09:32:24 ============================================================================ +09:32:24 FNo. Len. Field Value +09:32:24 ============================================================================ +09:32:24 [ 1] [ 4] [0200] +09:32:24 [ 2] [ 16] [6213545001108848] +09:32:24 [ 3] [ 6] [010000] +09:32:24 [ 4] [ 12] [000150000000] +09:32:24 [ 7] [ 10] [0320023131] +09:32:24 [ 11] [ 6] [267559] +09:32:24 [ 12] [ 6] [093131] +09:32:24 [ 13] [ 4] [0320] +09:32:24 [ 14] [ 4] [4912] +09:32:24 [ 15] [ 4] [0320] +09:32:24 [ 18] [ 4] [6011] +09:32:24 [ 19] [ 3] [418] +09:32:24 [ 22] [ 3] [021] +09:32:24 [ 25] [ 2] [01] +09:32:24 [ 28] [ 9] [D00002000] +09:32:24 [ 32] [ 6] [180893] +09:32:24 [ 35] [ 32] [6213545001108848=491212010884066] +09:32:24 [ 37] [ 12] [507902267559] +09:32:24 [ 41] [ 8] [0221XKKM] +09:32:24 [ 42] [ 15] [999999 ] +09:32:24 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:32:24 [ 49] [ 3] [418] +09:32:24 [ 52] [ 16] [171E6442C88DAB4B] +09:32:24 ============================================================================ +09:32:24 + + +waiting on router queue for slot.... +09:32:24 Sending to : <0> +09:32:24 ============================================================================ +09:32:25 ============================================================================ +09:32:25 Slot Id : <63> +09:32:25 Transaction Type : RESPONSE +09:32:25 Received From : +09:32:25 ============================================================================ +09:32:25 FNo. Len. Field Value +09:32:25 ============================================================================ +09:32:25 [ 1] [ 4] [0210] +09:32:25 [ 2] [ 16] [6213545001108848] +09:32:25 [ 3] [ 6] [010000] +09:32:25 [ 4] [ 12] [000150000000] +09:32:25 [ 7] [ 10] [0320023131] +09:32:25 [ 11] [ 6] [267559] +09:32:25 [ 12] [ 6] [093131] +09:32:25 [ 13] [ 4] [0320] +09:32:25 [ 15] [ 4] [0320] +09:32:25 [ 18] [ 4] [6011] +09:32:25 [ 19] [ 3] [418] +09:32:25 [ 22] [ 3] [021] +09:32:25 [ 32] [ 6] [180893] +09:32:25 [ 35] [ 32] [6213545001108848=491212010884066] +09:32:25 [ 37] [ 12] [507902267559] +09:32:25 [ 39] [ 2] [61] +09:32:25 [ 41] [ 8] [0221XKKM] +09:32:25 [ 49] [ 3] [418] +09:32:25 ============================================================================ +09:32:25 Sending to : +09:32:25 ============================================================================ +09:32:25 + + +waiting on router queue for slot.... +09:32:26 ============================================================================ +09:32:26 Slot Id : <63> +09:32:26 Transaction Type : RESPONSE +09:32:26 Received From : +09:32:26 ============================================================================ +09:32:26 FNo. Len. Field Value +09:32:26 ============================================================================ +09:32:26 [ 1] [ 4] [0210] +09:32:26 [ 2] [ 16] [6213545001108848] +09:32:26 [ 3] [ 6] [010000] +09:32:26 [ 4] [ 12] [000150000000] +09:32:26 [ 7] [ 10] [0320023131] +09:32:26 [ 11] [ 6] [267559] +09:32:26 [ 12] [ 6] [093131] +09:32:26 [ 13] [ 4] [0320] +09:32:26 [ 15] [ 4] [0320] +09:32:26 [ 18] [ 4] [6011] +09:32:26 [ 19] [ 3] [418] +09:32:26 [ 22] [ 3] [021] +09:32:26 [ 32] [ 6] [180893] +09:32:26 [ 35] [ 32] [6213545001108848=491212010884066] +09:32:26 [ 37] [ 12] [507902267559] +09:32:26 [ 39] [ 2] [61] +09:32:26 [ 41] [ 8] [0221XKKM] +09:32:26 [ 49] [ 3] [418] +09:32:26 ============================================================================ +09:32:26 Calculate Source COMM Id = 2 +09:32:26 ============================================================================ +09:32:26 + + +waiting on router queue for slot.... +09:32:38 ============================================================================ +09:32:38 Slot Id : <41> +09:32:38 Transaction Type : REQUEST +09:32:38 Received From : +09:32:38 ============================================================================ +09:32:38 FNo. Len. Field Value +09:32:38 ============================================================================ +09:32:38 [ 1] [ 4] [0800] +09:32:38 [ 7] [ 10] [0320023145] +09:32:38 [ 11] [ 6] [155654] +09:32:38 [ 70] [ 3] [301] +09:32:38 ============================================================================ +09:32:38 + + +waiting on router queue for slot.... +09:32:38 Sending to : +09:32:38 ============================================================================ +09:32:38 ============================================================================ +09:32:38 Slot Id : <41> +09:32:38 Transaction Type : RESPONSE +09:32:38 Received From : +09:32:38 ============================================================================ +09:32:38 FNo. Len. Field Value +09:32:38 ============================================================================ +09:32:38 [ 1] [ 4] [0810] +09:32:38 [ 7] [ 10] [0320023145] +09:32:38 [ 11] [ 6] [155654] +09:32:38 [ 39] [ 2] [00] +09:32:38 [ 70] [ 3] [301] +09:32:38 ============================================================================ +09:32:38 Calculate Source COMM Id = 2 +09:32:38 ============================================================================ +09:32:38 + + +waiting on router queue for slot.... +09:32:47 ============================================================================ +09:32:47 Slot Id : <38> +09:32:47 Transaction Type : REQUEST +09:32:47 Received From : +09:32:47 ============================================================================ +09:32:47 FNo. Len. Field Value +09:32:47 ============================================================================ +09:32:47 [ 1] [ 4] [0200] +09:32:47 [ 2] [ 16] [6688990102974506] +09:32:47 [ 3] [ 6] [011000] +09:32:47 [ 4] [ 12] [000020000000] +09:32:47 [ 7] [ 10] [0320093243] +09:32:47 [ 11] [ 6] [700058] +09:32:47 [ 12] [ 6] [093243] +09:32:47 [ 13] [ 4] [0320] +09:32:47 [ 15] [ 4] [0320] +09:32:47 [ 18] [ 4] [6011] +09:32:47 [ 22] [ 3] [900] +09:32:47 [ 25] [ 2] [02] +09:32:47 [ 28] [ 9] [D00002000] +09:32:47 [ 32] [ 6] [621354] +09:32:47 [ 35] [ 37] [6688990102974506=42111231450640900000] +09:32:47 [ 37] [ 12] [507904965502] +09:32:47 [ 41] [ 8] [15001100] +09:32:47 [ 42] [ 15] [NATIVE ] +09:32:47 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:32:47 [ 49] [ 3] [418] +09:32:47 [ 52] [ 16] [B04D534C68A2B38E] +09:32:47 ============================================================================ +09:32:47 + + +waiting on router queue for slot.... +09:32:47 Sending to : +09:32:47 ============================================================================ +09:32:47 Sending to : +09:32:47 ============================================================================ +09:32:48 ============================================================================ +09:32:48 Slot Id : <38> +09:32:48 Transaction Type : REQUEST +09:32:48 Received From : +09:32:48 ============================================================================ +09:32:48 FNo. Len. Field Value +09:32:48 ============================================================================ +09:32:48 [ 1] [ 4] [0200] +09:32:48 [ 2] [ 16] [6688990102974506] +09:32:48 [ 3] [ 6] [011000] +09:32:48 [ 4] [ 12] [000020000000] +09:32:48 [ 7] [ 10] [0320093243] +09:32:48 [ 11] [ 6] [700058] +09:32:48 [ 12] [ 6] [093243] +09:32:48 [ 13] [ 4] [0320] +09:32:48 [ 15] [ 4] [0320] +09:32:48 [ 18] [ 4] [6011] +09:32:48 [ 22] [ 3] [900] +09:32:48 [ 25] [ 2] [02] +09:32:48 [ 28] [ 9] [D00002000] +09:32:48 [ 32] [ 6] [621354] +09:32:48 [ 35] [ 37] [6688990102974506=42111231450640900000] +09:32:48 [ 37] [ 12] [507904965502] +09:32:48 [ 41] [ 8] [15001100] +09:32:48 [ 42] [ 15] [NATIVE ] +09:32:48 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:32:48 [ 49] [ 3] [418] +09:32:48 [ 52] [ 16] [B04D534C68A2B38E] +09:32:48 ============================================================================ +09:32:48 + + +waiting on router queue for slot.... +09:32:48 Sending to : +09:32:48 ============================================================================ +09:32:48 ============================================================================ +09:32:48 Slot Id : <38> +09:32:48 Transaction Type : REQUEST +09:32:48 Received From : +09:32:48 ============================================================================ +09:32:48 FNo. Len. Field Value +09:32:48 ============================================================================ +09:32:48 [ 1] [ 4] [0200] +09:32:48 [ 2] [ 16] [6688990102974506] +09:32:48 [ 3] [ 6] [011000] +09:32:48 [ 4] [ 12] [000020000000] +09:32:48 [ 7] [ 10] [0320093243] +09:32:48 [ 11] [ 6] [700058] +09:32:48 [ 12] [ 6] [093243] +09:32:48 [ 13] [ 4] [0320] +09:32:48 [ 15] [ 4] [0320] +09:32:48 [ 18] [ 4] [6011] +09:32:48 [ 22] [ 3] [900] +09:32:48 [ 25] [ 2] [02] +09:32:48 [ 28] [ 9] [D00002000] +09:32:48 [ 32] [ 6] [621354] +09:32:48 [ 35] [ 37] [6688990102974506=42111231450640900000] +09:32:48 [ 37] [ 12] [507904965502] +09:32:48 [ 41] [ 8] [15001100] +09:32:48 [ 42] [ 15] [NATIVE ] +09:32:48 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:32:48 [ 49] [ 3] [418] +09:32:48 [ 52] [ 16] [4D32E666B7FD07F5] +09:32:48 ============================================================================ +09:32:48 + + +waiting on router queue for slot.... +09:32:48 Sending to : <4> +09:32:48 ============================================================================ +09:32:49 ============================================================================ +09:32:49 Slot Id : <38> +09:32:49 Transaction Type : RESPONSE +09:32:49 Received From : +09:32:49 ============================================================================ +09:32:49 FNo. Len. Field Value +09:32:49 ============================================================================ +09:32:49 [ 1] [ 4] [0210] +09:32:49 [ 2] [ 16] [6688990102974506] +09:32:49 [ 3] [ 6] [011000] +09:32:49 [ 4] [ 12] [000020000000] +09:32:49 [ 11] [ 6] [700058] +09:32:49 [ 12] [ 6] [093243] +09:32:49 [ 15] [ 4] [0320] +09:32:49 [ 18] [ 4] [6011] +09:32:49 [ 32] [ 6] [621354] +09:32:49 [ 35] [ 37] [6688990102974506=42111231450640900000] +09:32:49 [ 37] [ 12] [507904965502] +09:32:49 [ 38] [ 6] [314353] +09:32:49 [ 39] [ 2] [00] +09:32:49 [ 41] [ 8] [15001100] +09:32:49 [ 49] [ 3] [418] +09:32:49 [ 54] [ 20] [1002418C000094483613] +09:32:49 ============================================================================ +09:32:49 Sending to : +09:32:49 ============================================================================ +09:32:49 + + +waiting on router queue for slot.... +09:32:50 ============================================================================ +09:32:50 Slot Id : <38> +09:32:50 Transaction Type : RESPONSE +09:32:50 Received From : +09:32:50 ============================================================================ +09:32:50 FNo. Len. Field Value +09:32:50 ============================================================================ +09:32:50 [ 1] [ 4] [0210] +09:32:50 [ 2] [ 16] [6688990102974506] +09:32:50 [ 3] [ 6] [011000] +09:32:50 [ 4] [ 12] [000020000000] +09:32:50 [ 11] [ 6] [700058] +09:32:50 [ 12] [ 6] [093243] +09:32:50 [ 15] [ 4] [0320] +09:32:50 [ 18] [ 4] [6011] +09:32:50 [ 32] [ 6] [621354] +09:32:50 [ 35] [ 37] [6688990102974506=42111231450640900000] +09:32:50 [ 37] [ 12] [507904965502] +09:32:50 [ 38] [ 6] [314353] +09:32:50 [ 39] [ 2] [00] +09:32:50 [ 41] [ 8] [15001100] +09:32:50 [ 49] [ 3] [418] +09:32:50 [ 54] [ 20] [1002418C000094483613] +09:32:50 ============================================================================ +09:32:50 Calculate Source COMM Id = 0 +09:32:50 ============================================================================ +09:32:50 + + +waiting on router queue for slot.... +09:32:55 ============================================================================ +09:32:55 Slot Id : <464> +09:32:55 Transaction Type : REQUEST +09:32:55 Received From : +09:32:55 ============================================================================ +09:32:55 FNo. Len. Field Value +09:32:55 ============================================================================ +09:32:55 [ 1] [ 4] [0800] +09:32:55 [ 7] [ 10] [0320023201] +09:32:55 [ 11] [ 6] [155655] +09:32:55 [ 70] [ 3] [301] +09:32:55 ============================================================================ +09:32:55 + + +waiting on router queue for slot.... +09:32:55 Sending to : +09:32:55 ============================================================================ +09:32:55 ============================================================================ +09:32:55 Slot Id : <464> +09:32:55 Transaction Type : RESPONSE +09:32:55 Received From : +09:32:55 ============================================================================ +09:32:55 FNo. Len. Field Value +09:32:55 ============================================================================ +09:32:55 [ 1] [ 4] [0810] +09:32:55 [ 7] [ 10] [0320023201] +09:32:55 [ 11] [ 6] [155655] +09:32:55 [ 39] [ 2] [00] +09:32:55 [ 70] [ 3] [301] +09:32:55 ============================================================================ +09:32:55 Calculate Source COMM Id = 2 +09:32:55 ============================================================================ +09:32:55 + + +waiting on router queue for slot.... +09:32:55 ============================================================================ +09:32:55 Slot Id : <73> +09:32:55 Transaction Type : REQUEST +09:32:55 Received From : +09:32:55 ============================================================================ +09:32:55 FNo. Len. Field Value +09:32:55 ============================================================================ +09:32:55 [ 1] [ 4] [0200] +09:32:55 [ 2] [ 16] [6213543000054881] +09:32:55 [ 3] [ 6] [300000] +09:32:55 [ 4] [ 12] [000000000000] +09:32:55 [ 7] [ 10] [0320093047] +09:32:55 [ 11] [ 6] [935894] +09:32:55 [ 12] [ 6] [093047] +09:32:55 [ 13] [ 4] [0320] +09:32:55 [ 15] [ 4] [0320] +09:32:55 [ 18] [ 4] [6011] +09:32:55 [ 19] [ 3] [418] +09:32:55 [ 22] [ 3] [021] +09:32:55 [ 25] [ 2] [01] +09:32:55 [ 28] [ 9] [D00000000] +09:32:55 [ 32] [ 6] [668899] +09:32:55 [ 35] [ 32] [6213543000054881=491212015488189] +09:32:55 [ 37] [ 12] [507900844855] +09:32:55 [ 41] [ 8] [03015003] +09:32:55 [ 42] [ 15] [APT ] +09:32:55 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:32:55 [ 49] [ 3] [418] +09:32:55 [ 52] [ 16] [389C59A128DB04F8] +09:32:55 ============================================================================ +09:32:55 + + +waiting on router queue for slot.... +09:32:55 Sending to : +09:32:55 ============================================================================ +09:32:55 Sending to : +09:32:55 ============================================================================ +09:32:55 ============================================================================ +09:32:55 Slot Id : <27> +09:32:55 Transaction Type : REQUEST +09:32:55 Received From : +09:32:55 ============================================================================ +09:32:55 FNo. Len. Field Value +09:32:55 ============================================================================ +09:32:55 [ 1] [ 4] [0200] +09:32:55 [ 2] [ 16] [1808930200040129] +09:32:55 [ 3] [ 6] [301000] +09:32:55 [ 4] [ 12] [000000000000] +09:32:55 [ 7] [ 10] [0320093317] +09:32:55 [ 11] [ 6] [203022] +09:32:55 [ 12] [ 6] [213128] +09:32:55 [ 13] [ 4] [0319] +09:32:55 [ 14] [ 4] [1803] +09:32:55 [ 15] [ 4] [0319] +09:32:55 [ 18] [ 4] [6011] +09:32:55 [ 19] [ 3] [418] +09:32:55 [ 22] [ 3] [021] +09:32:55 [ 25] [ 2] [01] +09:32:55 [ 28] [ 9] [D00000000] +09:32:55 [ 32] [ 6] [198901] +09:32:55 [ 35] [ 27] [1808930200040129=1803500751] +09:32:55 [ 37] [ 12] [507909203022] +09:32:55 [ 41] [ 8] [01529031] +09:32:55 [ 42] [ 15] [000000041529031] +09:32:55 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:32:55 [ 49] [ 3] [418] +09:32:55 [ 52] [ 16] [0A5321EDC2CE6DB5] +09:32:55 ============================================================================ +09:32:55 + + +waiting on router queue for slot.... +09:32:55 Sending to : +09:32:55 ============================================================================ +09:32:55 Sending to : +09:32:55 ============================================================================ +09:32:56 ============================================================================ +09:32:56 Slot Id : <73> +09:32:56 Transaction Type : REQUEST +09:32:56 Received From : +09:32:56 ============================================================================ +09:32:56 FNo. Len. Field Value +09:32:56 ============================================================================ +09:32:56 [ 1] [ 4] [0200] +09:32:56 [ 2] [ 16] [6213543000054881] +09:32:56 [ 3] [ 6] [300000] +09:32:56 [ 4] [ 12] [000000000000] +09:32:56 [ 7] [ 10] [0320093047] +09:32:56 [ 11] [ 6] [935894] +09:32:56 [ 12] [ 6] [093047] +09:32:56 [ 13] [ 4] [0320] +09:32:56 [ 15] [ 4] [0320] +09:32:56 [ 18] [ 4] [6011] +09:32:56 [ 19] [ 3] [418] +09:32:56 [ 22] [ 3] [021] +09:32:56 [ 25] [ 2] [01] +09:32:56 [ 28] [ 9] [D00000000] +09:32:56 [ 32] [ 6] [668899] +09:32:56 [ 35] [ 32] [6213543000054881=491212015488189] +09:32:56 [ 37] [ 12] [507900844855] +09:32:56 [ 41] [ 8] [03015003] +09:32:56 [ 42] [ 15] [APT ] +09:32:56 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:32:56 [ 49] [ 3] [418] +09:32:56 [ 52] [ 16] [389C59A128DB04F8] +09:32:56 ============================================================================ +09:32:56 + + +waiting on router queue for slot.... +09:32:56 Sending to : +09:32:56 ============================================================================ +09:32:56 ============================================================================ +09:32:56 Slot Id : <73> +09:32:56 Transaction Type : REQUEST +09:32:56 Received From : +09:32:56 ============================================================================ +09:32:56 FNo. Len. Field Value +09:32:56 ============================================================================ +09:32:56 [ 1] [ 4] [0200] +09:32:56 [ 2] [ 16] [6213543000054881] +09:32:56 [ 3] [ 6] [300000] +09:32:56 [ 4] [ 12] [000000000000] +09:32:56 [ 7] [ 10] [0320093047] +09:32:56 [ 11] [ 6] [935894] +09:32:56 [ 12] [ 6] [093047] +09:32:56 [ 13] [ 4] [0320] +09:32:56 [ 15] [ 4] [0320] +09:32:56 [ 18] [ 4] [6011] +09:32:56 [ 19] [ 3] [418] +09:32:56 [ 22] [ 3] [021] +09:32:56 [ 25] [ 2] [01] +09:32:56 [ 28] [ 9] [D00000000] +09:32:56 [ 32] [ 6] [668899] +09:32:56 [ 35] [ 32] [6213543000054881=491212015488189] +09:32:56 [ 37] [ 12] [507900844855] +09:32:56 [ 41] [ 8] [03015003] +09:32:56 [ 42] [ 15] [APT ] +09:32:56 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +09:32:56 [ 49] [ 3] [418] +09:32:56 [ 52] [ 16] [550C6EEFB7C445E7] +09:32:56 ============================================================================ +09:32:56 + + +waiting on router queue for slot.... +09:32:56 Sending to : <0> +09:32:56 ============================================================================ +09:32:56 ============================================================================ +09:32:56 Slot Id : <27> +09:32:56 Transaction Type : REQUEST +09:32:56 Received From : +09:32:56 ============================================================================ +09:32:56 FNo. Len. Field Value +09:32:56 ============================================================================ +09:32:56 [ 1] [ 4] [0200] +09:32:56 [ 2] [ 16] [1808930200040129] +09:32:56 [ 3] [ 6] [301000] +09:32:56 [ 4] [ 12] [000000000000] +09:32:56 [ 7] [ 10] [0320093317] +09:32:56 [ 11] [ 6] [203022] +09:32:56 [ 12] [ 6] [213128] +09:32:56 [ 13] [ 4] [0319] +09:32:56 [ 14] [ 4] [1803] +09:32:56 [ 15] [ 4] [0319] +09:32:56 [ 18] [ 4] [6011] +09:32:56 [ 19] [ 3] [418] +09:32:56 [ 22] [ 3] [021] +09:32:56 [ 25] [ 2] [01] +09:32:56 [ 28] [ 9] [D00000000] +09:32:56 [ 32] [ 6] [198901] +09:32:56 [ 35] [ 27] [1808930200040129=1803500751] +09:32:56 [ 37] [ 12] [507909203022] +09:32:56 [ 41] [ 8] [01529031] +09:32:56 [ 42] [ 15] [000000041529031] +09:32:56 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:32:56 [ 49] [ 3] [418] +09:32:56 [ 52] [ 16] [0A5321EDC2CE6DB5] +09:32:56 ============================================================================ +09:32:56 + + +waiting on router queue for slot.... +09:32:56 Sending to : +09:32:56 ============================================================================ +09:32:56 ============================================================================ +09:32:56 Slot Id : <27> +09:32:56 Transaction Type : REQUEST +09:32:56 Received From : +09:32:56 ============================================================================ +09:32:56 FNo. Len. Field Value +09:32:56 ============================================================================ +09:32:56 [ 1] [ 4] [0200] +09:32:56 [ 2] [ 16] [1808930200040129] +09:32:56 [ 3] [ 6] [301000] +09:32:56 [ 4] [ 12] [000000000000] +09:32:56 [ 7] [ 10] [0320093317] +09:32:56 [ 11] [ 6] [203022] +09:32:56 [ 12] [ 6] [213128] +09:32:56 [ 13] [ 4] [0319] +09:32:56 [ 14] [ 4] [1803] +09:32:56 [ 15] [ 4] [0319] +09:32:56 [ 18] [ 4] [6011] +09:32:56 [ 19] [ 3] [418] +09:32:56 [ 22] [ 3] [021] +09:32:56 [ 25] [ 2] [01] +09:32:56 [ 28] [ 9] [D00000000] +09:32:56 [ 32] [ 6] [198901] +09:32:56 [ 35] [ 27] [1808930200040129=1803500751] +09:32:56 [ 37] [ 12] [507909203022] +09:32:56 [ 41] [ 8] [01529031] +09:32:56 [ 42] [ 15] [000000041529031] +09:32:56 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:32:56 [ 49] [ 3] [418] +09:32:56 [ 52] [ 16] [6661C75C99EB128D] +09:32:56 ============================================================================ +09:32:56 + + +waiting on router queue for slot.... +09:32:56 Sending to : <2> +09:32:56 ============================================================================ +09:32:56 ============================================================================ +09:32:56 Slot Id : <73> +09:32:56 Transaction Type : RESPONSE +09:32:56 Received From : +09:32:56 ============================================================================ +09:32:56 FNo. Len. Field Value +09:32:56 ============================================================================ +09:32:56 [ 1] [ 4] [0210] +09:32:56 [ 2] [ 16] [6213543000054881] +09:32:56 [ 3] [ 6] [300000] +09:32:56 [ 4] [ 12] [000000000000] +09:32:56 [ 7] [ 10] [0320093047] +09:32:56 [ 11] [ 6] [935894] +09:32:56 [ 12] [ 6] [093047] +09:32:56 [ 13] [ 4] [0320] +09:32:56 [ 15] [ 4] [0320] +09:32:56 [ 18] [ 4] [6011] +09:32:56 [ 19] [ 3] [418] +09:32:56 [ 32] [ 6] [668899] +09:32:56 [ 35] [ 32] [6213543000054881=491212015488189] +09:32:56 [ 37] [ 12] [507900844855] +09:32:56 [ 38] [ 6] [182260] +09:32:56 [ 39] [ 2] [00] +09:32:56 [ 41] [ 8] [03015003] +09:32:56 [ 49] [ 3] [418] +09:32:56 [ 54] [ 40] [0001764C0000008624260002764C000000862426] +09:32:56 ============================================================================ +09:32:56 Sending to : +09:32:56 ============================================================================ +09:32:56 + + +waiting on router queue for slot.... +09:32:56 ============================================================================ +09:32:56 Slot Id : <32> +09:32:56 Transaction Type : REQUEST +09:32:56 Received From : +09:32:56 ============================================================================ +09:32:56 FNo. Len. Field Value +09:32:56 ============================================================================ +09:32:56 [ 1] [ 4] [0200] +09:32:56 [ 2] [ 16] [6688990040113688] +09:32:56 [ 3] [ 6] [010000] +09:32:56 [ 4] [ 12] [000040000000] +09:32:56 [ 7] [ 10] [0320093252] +09:32:56 [ 11] [ 6] [700098] +09:32:56 [ 12] [ 6] [093252] +09:32:56 [ 13] [ 4] [0320] +09:32:56 [ 15] [ 4] [0320] +09:32:56 [ 18] [ 4] [6011] +09:32:56 [ 22] [ 3] [900] +09:32:56 [ 25] [ 2] [02] +09:32:56 [ 28] [ 9] [D00002000] +09:32:56 [ 32] [ 6] [621354] +09:32:56 [ 35] [ 37] [6688990040113688=98031261105645600000] +09:32:56 [ 37] [ 12] [507903063481] +09:32:56 [ 41] [ 8] [01008600] +09:32:56 [ 42] [ 15] [NATIVE ] +09:32:56 [ 43] [ 40] [BEER LAO Hatxaifong LAO] +09:32:56 [ 49] [ 3] [418] +09:32:56 [ 52] [ 16] [3100BBEC03A0FBAB] +09:32:56 ============================================================================ +09:32:56 + + +waiting on router queue for slot.... +09:32:56 Sending to : +09:32:56 ============================================================================ +09:32:56 Sending to : +09:32:56 ============================================================================ +09:32:57 ============================================================================ +09:32:57 Slot Id : <32> +09:32:57 Transaction Type : REQUEST +09:32:57 Received From : +09:32:57 ============================================================================ +09:32:57 FNo. Len. Field Value +09:32:57 ============================================================================ +09:32:57 [ 1] [ 4] [0200] +09:32:57 [ 2] [ 16] [6688990040113688] +09:32:57 [ 3] [ 6] [010000] +09:32:57 [ 4] [ 12] [000040000000] +09:32:57 [ 7] [ 10] [0320093252] +09:32:57 [ 11] [ 6] [700098] +09:32:57 [ 12] [ 6] [093252] +09:32:57 [ 13] [ 4] [0320] +09:32:57 [ 15] [ 4] [0320] +09:32:57 [ 18] [ 4] [6011] +09:32:57 [ 22] [ 3] [900] +09:32:57 [ 25] [ 2] [02] +09:32:57 [ 28] [ 9] [D00002000] +09:32:57 [ 32] [ 6] [621354] +09:32:57 [ 35] [ 37] [6688990040113688=98031261105645600000] +09:32:57 [ 37] [ 12] [507903063481] +09:32:57 [ 41] [ 8] [01008600] +09:32:57 [ 42] [ 15] [NATIVE ] +09:32:57 [ 43] [ 40] [BEER LAO Hatxaifong LAO] +09:32:57 [ 49] [ 3] [418] +09:32:57 [ 52] [ 16] [3100BBEC03A0FBAB] +09:32:57 ============================================================================ +09:32:57 + + +waiting on router queue for slot.... +09:32:57 Sending to : +09:32:57 ============================================================================ +09:32:57 ============================================================================ +09:32:57 Slot Id : <32> +09:32:57 Transaction Type : REQUEST +09:32:57 Received From : +09:32:57 ============================================================================ +09:32:57 FNo. Len. Field Value +09:32:57 ============================================================================ +09:32:57 [ 1] [ 4] [0200] +09:32:57 [ 2] [ 16] [6688990040113688] +09:32:57 [ 3] [ 6] [010000] +09:32:57 [ 4] [ 12] [000040000000] +09:32:57 [ 7] [ 10] [0320093252] +09:32:57 [ 11] [ 6] [700098] +09:32:57 [ 12] [ 6] [093252] +09:32:57 [ 13] [ 4] [0320] +09:32:57 [ 15] [ 4] [0320] +09:32:57 [ 18] [ 4] [6011] +09:32:57 [ 22] [ 3] [900] +09:32:57 [ 25] [ 2] [02] +09:32:57 [ 28] [ 9] [D00002000] +09:32:57 [ 32] [ 6] [621354] +09:32:57 [ 35] [ 37] [6688990040113688=98031261105645600000] +09:32:57 [ 37] [ 12] [507903063481] +09:32:57 [ 41] [ 8] [01008600] +09:32:57 [ 42] [ 15] [NATIVE ] +09:32:57 [ 43] [ 40] [BEER LAO Hatxaifong LAO] +09:32:57 [ 49] [ 3] [418] +09:32:57 [ 52] [ 16] [5B81F1F17F56F560] +09:32:57 ============================================================================ +09:32:57 + + +waiting on router queue for slot.... +09:32:57 Sending to : <4> +09:32:57 ============================================================================ +09:32:58 ============================================================================ +09:32:58 Slot Id : <32> +09:32:58 Transaction Type : RESPONSE +09:32:58 Received From : +09:32:58 ============================================================================ +09:32:58 FNo. Len. Field Value +09:32:58 ============================================================================ +09:32:58 [ 1] [ 4] [0210] +09:32:58 [ 2] [ 16] [6688990040113688] +09:32:58 [ 3] [ 6] [010000] +09:32:58 [ 4] [ 12] [000040000000] +09:32:58 [ 11] [ 6] [700098] +09:32:58 [ 12] [ 6] [093252] +09:32:58 [ 15] [ 4] [0320] +09:32:58 [ 18] [ 4] [6011] +09:32:58 [ 32] [ 6] [621354] +09:32:58 [ 35] [ 37] [6688990040113688=98031261105645600000] +09:32:58 [ 37] [ 12] [507903063481] +09:32:58 [ 38] [ 6] [316810] +09:32:58 [ 39] [ 2] [00] +09:32:58 [ 41] [ 8] [01008600] +09:32:58 [ 49] [ 3] [418] +09:32:58 [ 54] [ 20] [0002418C000008068253] +09:32:58 ============================================================================ +09:32:58 Sending to : +09:32:58 ============================================================================ +09:32:58 + + +waiting on router queue for slot.... +09:32:58 ============================================================================ +09:32:58 Slot Id : <73> +09:32:58 Transaction Type : RESPONSE +09:32:58 Received From : +09:32:58 ============================================================================ +09:32:58 FNo. Len. Field Value +09:32:58 ============================================================================ +09:32:58 [ 1] [ 4] [0210] +09:32:58 [ 2] [ 16] [6213543000054881] +09:32:58 [ 3] [ 6] [300000] +09:32:58 [ 4] [ 12] [000000000000] +09:32:58 [ 7] [ 10] [0320093047] +09:32:58 [ 11] [ 6] [935894] +09:32:58 [ 12] [ 6] [093047] +09:32:58 [ 13] [ 4] [0320] +09:32:58 [ 15] [ 4] [0320] +09:32:58 [ 18] [ 4] [6011] +09:32:58 [ 19] [ 3] [418] +09:32:58 [ 32] [ 6] [668899] +09:32:58 [ 35] [ 32] [6213543000054881=491212015488189] +09:32:58 [ 37] [ 12] [507900844855] +09:32:58 [ 38] [ 6] [182260] +09:32:58 [ 39] [ 2] [00] +09:32:58 [ 41] [ 8] [03015003] +09:32:58 [ 49] [ 3] [418] +09:32:58 [ 54] [ 40] [0001764C0000008624260002764C000000862426] +09:32:58 ============================================================================ +09:32:58 Calculate Source COMM Id = 4 +09:32:58 ============================================================================ +09:32:58 + + +waiting on router queue for slot.... +09:32:59 ============================================================================ +09:32:59 Slot Id : <32> +09:32:59 Transaction Type : RESPONSE +09:32:59 Received From : +09:32:59 ============================================================================ +09:32:59 FNo. Len. Field Value +09:32:59 ============================================================================ +09:32:59 [ 1] [ 4] [0210] +09:32:59 [ 2] [ 16] [6688990040113688] +09:32:59 [ 3] [ 6] [010000] +09:32:59 [ 4] [ 12] [000040000000] +09:32:59 [ 11] [ 6] [700098] +09:32:59 [ 12] [ 6] [093252] +09:32:59 [ 15] [ 4] [0320] +09:32:59 [ 18] [ 4] [6011] +09:32:59 [ 32] [ 6] [621354] +09:32:59 [ 35] [ 37] [6688990040113688=98031261105645600000] +09:32:59 [ 37] [ 12] [507903063481] +09:32:59 [ 38] [ 6] [316810] +09:32:59 [ 39] [ 2] [00] +09:32:59 [ 41] [ 8] [01008600] +09:32:59 [ 49] [ 3] [418] +09:32:59 [ 54] [ 20] [0002418C000008068253] +09:32:59 ============================================================================ +09:32:59 Calculate Source COMM Id = 0 +09:32:59 ============================================================================ +09:32:59 + + +waiting on router queue for slot.... +09:33:02 ============================================================================ +09:33:02 Slot Id : <27> +09:33:02 Transaction Type : RESPONSE +09:33:02 Received From : +09:33:02 ============================================================================ +09:33:02 FNo. Len. Field Value +09:33:02 ============================================================================ +09:33:02 [ 1] [ 4] [0210] +09:33:02 [ 2] [ 16] [1808930200040129] +09:33:02 [ 3] [ 6] [301000] +09:33:02 [ 7] [ 10] [0320093317] +09:33:02 [ 11] [ 6] [203022] +09:33:02 [ 12] [ 6] [213128] +09:33:02 [ 13] [ 4] [0320] +09:33:02 [ 14] [ 4] [1803] +09:33:02 [ 19] [ 3] [418] +09:33:02 [ 32] [ 6] [198901] +09:33:02 [ 37] [ 12] [507909203022] +09:33:02 [ 38] [ 6] [203022] +09:33:02 [ 39] [ 2] [00] +09:33:02 [ 41] [ 8] [01529031] +09:33:02 [ 49] [ 3] [418] +09:33:02 [ 52] [ 16] [6661C75C99EB128D] +09:33:02 [ 54] [ 20] [1002418C000060898300] +09:33:02 ============================================================================ +09:33:02 Sending to : +09:33:02 ============================================================================ +09:33:02 + + +waiting on router queue for slot.... +09:33:03 ============================================================================ +09:33:03 Slot Id : <27> +09:33:03 Transaction Type : RESPONSE +09:33:03 Received From : +09:33:03 ============================================================================ +09:33:03 FNo. Len. Field Value +09:33:03 ============================================================================ +09:33:03 [ 1] [ 4] [0210] +09:33:03 [ 2] [ 16] [1808930200040129] +09:33:03 [ 3] [ 6] [301000] +09:33:03 [ 7] [ 10] [0320093317] +09:33:03 [ 11] [ 6] [203022] +09:33:03 [ 12] [ 6] [213128] +09:33:03 [ 13] [ 4] [0320] +09:33:03 [ 14] [ 4] [1803] +09:33:03 [ 19] [ 3] [418] +09:33:03 [ 32] [ 6] [198901] +09:33:03 [ 37] [ 12] [507909203022] +09:33:03 [ 38] [ 6] [203022] +09:33:03 [ 39] [ 2] [00] +09:33:03 [ 41] [ 8] [01529031] +09:33:03 [ 49] [ 3] [418] +09:33:03 [ 52] [ 16] [6661C75C99EB128D] +09:33:03 [ 54] [ 20] [1002418C000060898300] +09:33:03 ============================================================================ +09:33:03 Calculate Source COMM Id = 5 +09:33:03 ============================================================================ +09:33:03 + + +waiting on router queue for slot.... +09:33:05 ============================================================================ +09:33:05 Slot Id : <487> +09:33:05 Transaction Type : REQUEST +09:33:05 Received From : +09:33:05 ============================================================================ +09:33:05 FNo. Len. Field Value +09:33:05 ============================================================================ +09:33:05 [ 1] [ 4] [0800] +09:33:05 [ 2] [ 5] [02531] +09:33:05 [ 3] [ 6] [579098] +09:33:05 [ 7] [ 10] [0320023304] +09:33:05 [ 11] [ 6] [806966] +09:33:05 [ 15] [ 10] [0320023304] +09:33:05 [ 37] [ 11] [57909806966] +09:33:05 [ 70] [ 3] [001] +09:33:05 ============================================================================ +09:33:05 + + +waiting on router queue for slot.... +09:33:05 ============================================================================ +09:33:05 Slot Id : <487> +09:33:05 Transaction Type : RESPONSE +09:33:05 Received From : +09:33:05 ============================================================================ +09:33:05 FNo. Len. Field Value +09:33:05 ============================================================================ +09:33:05 [ 1] [ 4] [0810] +09:33:05 [ 7] [ 10] [0320023304] +09:33:05 [ 11] [ 6] [806966] +09:33:05 [ 15] [ 4] [0320] +09:33:05 [ 37] [ 12] [57909806966] +09:33:05 [ 39] [ 2] [00] +09:33:05 [ 70] [ 3] [001] +09:33:05 ============================================================================ +09:33:05 Sending to : +09:33:05 ============================================================================ +09:33:05 + + +waiting on router queue for slot.... +09:33:11 ============================================================================ +09:33:11 Slot Id : <20> +09:33:11 Transaction Type : REQUEST +09:33:11 Received From : +09:33:11 ============================================================================ +09:33:11 FNo. Len. Field Value +09:33:11 ============================================================================ +09:33:11 [ 1] [ 4] [0800] +09:33:11 [ 7] [ 10] [0320023219] +09:33:11 [ 11] [ 6] [155656] +09:33:11 [ 70] [ 3] [301] +09:33:11 ============================================================================ +09:33:11 + + +waiting on router queue for slot.... +09:33:11 Sending to : +09:33:11 ============================================================================ +09:33:11 ============================================================================ +09:33:11 Slot Id : <20> +09:33:11 Transaction Type : RESPONSE +09:33:11 Received From : +09:33:11 ============================================================================ +09:33:11 FNo. Len. Field Value +09:33:11 ============================================================================ +09:33:11 [ 1] [ 4] [0810] +09:33:11 [ 7] [ 10] [0320023219] +09:33:11 [ 11] [ 6] [155656] +09:33:11 [ 39] [ 2] [00] +09:33:11 [ 70] [ 3] [301] +09:33:11 ============================================================================ +09:33:11 Calculate Source COMM Id = 2 +09:33:11 ============================================================================ +09:33:11 + + +waiting on router queue for slot.... +09:33:11 ============================================================================ +09:33:11 Slot Id : <48> +09:33:11 Transaction Type : REQUEST +09:33:11 Received From : +09:33:11 ============================================================================ +09:33:11 FNo. Len. Field Value +09:33:11 ============================================================================ +09:33:11 [ 1] [ 4] [0200] +09:33:11 [ 2] [ 16] [6688990040087189] +09:33:11 [ 3] [ 6] [011000] +09:33:11 [ 4] [ 12] [000020000000] +09:33:11 [ 7] [ 10] [0320093307] +09:33:11 [ 11] [ 6] [700135] +09:33:11 [ 12] [ 6] [093307] +09:33:11 [ 13] [ 4] [0320] +09:33:11 [ 15] [ 4] [0320] +09:33:11 [ 18] [ 4] [6011] +09:33:11 [ 22] [ 3] [900] +09:33:11 [ 25] [ 2] [02] +09:33:11 [ 28] [ 9] [D00002000] +09:33:11 [ 32] [ 6] [621354] +09:33:11 [ 35] [ 37] [6688990040087189=98021261696705900000] +09:33:11 [ 37] [ 12] [507903908484] +09:33:11 [ 41] [ 8] [01010600] +09:33:11 [ 42] [ 15] [NATIVE ] +09:33:11 [ 43] [ 40] [Maria Hospital Phonhong LAO] +09:33:11 [ 49] [ 3] [418] +09:33:11 [ 52] [ 16] [1937BC534CE9BF07] +09:33:11 ============================================================================ +09:33:11 + + +waiting on router queue for slot.... +09:33:11 Sending to : +09:33:11 ============================================================================ +09:33:11 Sending to : +09:33:11 ============================================================================ +09:33:11 ============================================================================ +09:33:11 Slot Id : <48> +09:33:11 Transaction Type : REQUEST +09:33:11 Received From : +09:33:11 ============================================================================ +09:33:11 FNo. Len. Field Value +09:33:11 ============================================================================ +09:33:11 [ 1] [ 4] [0200] +09:33:11 [ 2] [ 16] [6688990040087189] +09:33:11 [ 3] [ 6] [011000] +09:33:11 [ 4] [ 12] [000020000000] +09:33:11 [ 7] [ 10] [0320093307] +09:33:11 [ 11] [ 6] [700135] +09:33:11 [ 12] [ 6] [093307] +09:33:11 [ 13] [ 4] [0320] +09:33:11 [ 15] [ 4] [0320] +09:33:11 [ 18] [ 4] [6011] +09:33:11 [ 22] [ 3] [900] +09:33:11 [ 25] [ 2] [02] +09:33:11 [ 28] [ 9] [D00002000] +09:33:11 [ 32] [ 6] [621354] +09:33:11 [ 35] [ 37] [6688990040087189=98021261696705900000] +09:33:11 [ 37] [ 12] [507903908484] +09:33:11 [ 41] [ 8] [01010600] +09:33:11 [ 42] [ 15] [NATIVE ] +09:33:11 [ 43] [ 40] [Maria Hospital Phonhong LAO] +09:33:11 [ 49] [ 3] [418] +09:33:11 [ 52] [ 16] [1937BC534CE9BF07] +09:33:11 ============================================================================ +09:33:11 + + +waiting on router queue for slot.... +09:33:11 Sending to : +09:33:11 ============================================================================ +09:33:11 ============================================================================ +09:33:11 Slot Id : <48> +09:33:11 Transaction Type : REQUEST +09:33:11 Received From : +09:33:11 ============================================================================ +09:33:11 FNo. Len. Field Value +09:33:11 ============================================================================ +09:33:11 [ 1] [ 4] [0200] +09:33:11 [ 2] [ 16] [6688990040087189] +09:33:11 [ 3] [ 6] [011000] +09:33:11 [ 4] [ 12] [000020000000] +09:33:11 [ 7] [ 10] [0320093307] +09:33:11 [ 11] [ 6] [700135] +09:33:11 [ 12] [ 6] [093307] +09:33:11 [ 13] [ 4] [0320] +09:33:11 [ 15] [ 4] [0320] +09:33:11 [ 18] [ 4] [6011] +09:33:11 [ 22] [ 3] [900] +09:33:11 [ 25] [ 2] [02] +09:33:11 [ 28] [ 9] [D00002000] +09:33:11 [ 32] [ 6] [621354] +09:33:11 [ 35] [ 37] [6688990040087189=98021261696705900000] +09:33:11 [ 37] [ 12] [507903908484] +09:33:11 [ 41] [ 8] [01010600] +09:33:11 [ 42] [ 15] [NATIVE ] +09:33:11 [ 43] [ 40] [Maria Hospital Phonhong LAO] +09:33:11 [ 49] [ 3] [418] +09:33:11 [ 52] [ 16] [AFAAE8540732AAF6] +09:33:11 ============================================================================ +09:33:11 + + +waiting on router queue for slot.... +09:33:11 Sending to : <4> +09:33:11 ============================================================================ +09:33:12 ============================================================================ +09:33:12 Slot Id : <48> +09:33:12 Transaction Type : RESPONSE +09:33:12 Received From : +09:33:12 ============================================================================ +09:33:12 FNo. Len. Field Value +09:33:12 ============================================================================ +09:33:12 [ 1] [ 4] [0210] +09:33:12 [ 2] [ 16] [6688990040087189] +09:33:12 [ 3] [ 6] [011000] +09:33:12 [ 4] [ 12] [000020000000] +09:33:12 [ 11] [ 6] [700135] +09:33:12 [ 12] [ 6] [093307] +09:33:12 [ 15] [ 4] [0320] +09:33:12 [ 18] [ 4] [6011] +09:33:12 [ 32] [ 6] [621354] +09:33:12 [ 35] [ 37] [6688990040087189=98021261696705900000] +09:33:12 [ 37] [ 12] [507903908484] +09:33:12 [ 38] [ 6] [961024] +09:33:12 [ 39] [ 2] [00] +09:33:12 [ 41] [ 8] [01010600] +09:33:12 [ 49] [ 3] [418] +09:33:12 [ 54] [ 20] [1002418C000022133904] +09:33:12 ============================================================================ +09:33:12 Sending to : +09:33:12 ============================================================================ +09:33:12 + + +waiting on router queue for slot.... +09:33:14 ============================================================================ +09:33:14 Slot Id : <26> +09:33:14 Transaction Type : REQUEST +09:33:14 Received From : +09:33:14 ============================================================================ +09:33:14 FNo. Len. Field Value +09:33:14 ============================================================================ +09:33:14 [ 1] [ 4] [0800] +09:33:14 [ 7] [ 10] [0320164502] +09:33:14 [ 11] [ 6] [094502] +09:33:14 [ 37] [ 12] [57909094502] +09:33:14 [ 70] [ 3] [301] +09:33:14 ============================================================================ +09:33:14 + + +waiting on router queue for slot.... +09:33:14 Sending to : +09:33:14 ============================================================================ +09:33:14 ============================================================================ +09:33:14 Slot Id : <26> +09:33:14 Transaction Type : RESPONSE +09:33:14 Received From : +09:33:14 ============================================================================ +09:33:14 FNo. Len. Field Value +09:33:14 ============================================================================ +09:33:14 [ 1] [ 4] [0810] +09:33:14 [ 7] [ 10] [0320164502] +09:33:14 [ 11] [ 6] [094502] +09:33:14 [ 37] [ 12] [579090945020] +09:33:14 [ 39] [ 2] [00] +09:33:14 [ 70] [ 3] [810] +09:33:14 ============================================================================ +09:33:14 Calculate Source COMM Id = 6 +09:33:14 ============================================================================ +09:33:14 + + +waiting on router queue for slot.... +09:33:14 ============================================================================ +09:33:14 Slot Id : <48> +09:33:14 Transaction Type : RESPONSE +09:33:14 Received From : +09:33:14 ============================================================================ +09:33:14 FNo. Len. Field Value +09:33:14 ============================================================================ +09:33:14 [ 1] [ 4] [0210] +09:33:14 [ 2] [ 16] [6688990040087189] +09:33:14 [ 3] [ 6] [011000] +09:33:14 [ 4] [ 12] [000020000000] +09:33:14 [ 11] [ 6] [700135] +09:33:14 [ 12] [ 6] [093307] +09:33:14 [ 15] [ 4] [0320] +09:33:14 [ 18] [ 4] [6011] +09:33:14 [ 32] [ 6] [621354] +09:33:14 [ 35] [ 37] [6688990040087189=98021261696705900000] +09:33:14 [ 37] [ 12] [507903908484] +09:33:14 [ 38] [ 6] [961024] +09:33:14 [ 39] [ 2] [00] +09:33:14 [ 41] [ 8] [01010600] +09:33:14 [ 49] [ 3] [418] +09:33:14 [ 54] [ 20] [1002418C000022133904] +09:33:14 ============================================================================ +09:33:14 Calculate Source COMM Id = 0 +09:33:14 ============================================================================ +09:33:14 + + +waiting on router queue for slot.... +09:33:20 ============================================================================ +09:33:20 Slot Id : <46> +09:33:20 Transaction Type : REQUEST +09:33:20 Received From : +09:33:20 ============================================================================ +09:33:20 FNo. Len. Field Value +09:33:20 ============================================================================ +09:33:20 [ 1] [ 4] [0200] +09:33:20 [ 2] [ 16] [6213545000095798] +09:33:20 [ 3] [ 6] [012000] +09:33:20 [ 4] [ 12] [000070000000] +09:33:20 [ 7] [ 10] [0320023225] +09:33:20 [ 11] [ 6] [267568] +09:33:20 [ 12] [ 6] [093225] +09:33:20 [ 13] [ 4] [0320] +09:33:20 [ 14] [ 4] [4912] +09:33:20 [ 15] [ 4] [0320] +09:33:20 [ 18] [ 4] [6011] +09:33:20 [ 19] [ 3] [418] +09:33:20 [ 22] [ 3] [021] +09:33:20 [ 25] [ 2] [01] +09:33:20 [ 28] [ 9] [D00002000] +09:33:20 [ 32] [ 6] [180893] +09:33:20 [ 35] [ 32] [6213545000095798=491212019579743] +09:33:20 [ 37] [ 12] [507902267568] +09:33:20 [ 41] [ 8] [0112CPBR] +09:33:20 [ 42] [ 15] [999999 ] +09:33:20 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:33:20 [ 49] [ 3] [418] +09:33:20 [ 52] [ 16] [A45005C3FE678DBC] +09:33:20 ============================================================================ +09:33:20 + + +waiting on router queue for slot.... +09:33:20 Sending to : +09:33:20 ============================================================================ +09:33:20 Sending to : +09:33:20 ============================================================================ +09:33:20 ============================================================================ +09:33:20 Slot Id : <46> +09:33:20 Transaction Type : REQUEST +09:33:20 Received From : +09:33:20 ============================================================================ +09:33:20 FNo. Len. Field Value +09:33:20 ============================================================================ +09:33:20 [ 1] [ 4] [0200] +09:33:20 [ 2] [ 16] [6213545000095798] +09:33:20 [ 3] [ 6] [012000] +09:33:20 [ 4] [ 12] [000070000000] +09:33:20 [ 7] [ 10] [0320023225] +09:33:20 [ 11] [ 6] [267568] +09:33:20 [ 12] [ 6] [093225] +09:33:20 [ 13] [ 4] [0320] +09:33:20 [ 14] [ 4] [4912] +09:33:20 [ 15] [ 4] [0320] +09:33:20 [ 18] [ 4] [6011] +09:33:20 [ 19] [ 3] [418] +09:33:20 [ 22] [ 3] [021] +09:33:20 [ 25] [ 2] [01] +09:33:20 [ 28] [ 9] [D00002000] +09:33:20 [ 32] [ 6] [180893] +09:33:20 [ 35] [ 32] [6213545000095798=491212019579743] +09:33:20 [ 37] [ 12] [507902267568] +09:33:20 [ 41] [ 8] [0112CPBR] +09:33:20 [ 42] [ 15] [999999 ] +09:33:20 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:33:20 [ 49] [ 3] [418] +09:33:20 [ 52] [ 16] [A45005C3FE678DBC] +09:33:20 ============================================================================ +09:33:20 + + +waiting on router queue for slot.... +09:33:20 Sending to : +09:33:20 ============================================================================ +09:33:20 ============================================================================ +09:33:20 Slot Id : <46> +09:33:20 Transaction Type : REQUEST +09:33:20 Received From : +09:33:20 ============================================================================ +09:33:20 FNo. Len. Field Value +09:33:20 ============================================================================ +09:33:20 [ 1] [ 4] [0200] +09:33:20 [ 2] [ 16] [6213545000095798] +09:33:20 [ 3] [ 6] [012000] +09:33:20 [ 4] [ 12] [000070000000] +09:33:20 [ 7] [ 10] [0320023225] +09:33:20 [ 11] [ 6] [267568] +09:33:20 [ 12] [ 6] [093225] +09:33:20 [ 13] [ 4] [0320] +09:33:20 [ 14] [ 4] [4912] +09:33:20 [ 15] [ 4] [0320] +09:33:20 [ 18] [ 4] [6011] +09:33:20 [ 19] [ 3] [418] +09:33:20 [ 22] [ 3] [021] +09:33:20 [ 25] [ 2] [01] +09:33:20 [ 28] [ 9] [D00002000] +09:33:20 [ 32] [ 6] [180893] +09:33:20 [ 35] [ 32] [6213545000095798=491212019579743] +09:33:20 [ 37] [ 12] [507902267568] +09:33:20 [ 41] [ 8] [0112CPBR] +09:33:20 [ 42] [ 15] [999999 ] +09:33:20 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:33:20 [ 49] [ 3] [418] +09:33:20 [ 52] [ 16] [EEE3C575243AAF2B] +09:33:20 ============================================================================ +09:33:20 + + +waiting on router queue for slot.... +09:33:20 Sending to : <0> +09:33:20 ============================================================================ +09:33:21 ============================================================================ +09:33:21 Slot Id : <46> +09:33:21 Transaction Type : RESPONSE +09:33:21 Received From : +09:33:21 ============================================================================ +09:33:21 FNo. Len. Field Value +09:33:21 ============================================================================ +09:33:21 [ 1] [ 4] [0210] +09:33:21 [ 2] [ 16] [6213545000095798] +09:33:21 [ 3] [ 6] [012000] +09:33:21 [ 4] [ 12] [000070000000] +09:33:21 [ 7] [ 10] [0320023225] +09:33:21 [ 11] [ 6] [267568] +09:33:21 [ 12] [ 6] [093225] +09:33:21 [ 13] [ 4] [0320] +09:33:21 [ 15] [ 4] [0320] +09:33:21 [ 18] [ 4] [6011] +09:33:21 [ 19] [ 3] [418] +09:33:21 [ 32] [ 6] [180893] +09:33:21 [ 35] [ 32] [6213545000095798=491212019579743] +09:33:21 [ 37] [ 12] [507902267568] +09:33:21 [ 38] [ 6] [491223] +09:33:21 [ 39] [ 2] [00] +09:33:21 [ 41] [ 8] [0112CPBR] +09:33:21 [ 49] [ 3] [418] +09:33:21 [ 54] [ 40] [2001418C0000076627982002418C000007662798] +09:33:21 ============================================================================ +09:33:21 Sending to : +09:33:21 ============================================================================ +09:33:21 + + +waiting on router queue for slot.... +09:33:22 ============================================================================ +09:33:22 Slot Id : <46> +09:33:22 Transaction Type : RESPONSE +09:33:22 Received From : +09:33:22 ============================================================================ +09:33:22 FNo. Len. Field Value +09:33:22 ============================================================================ +09:33:22 [ 1] [ 4] [0210] +09:33:22 [ 2] [ 16] [6213545000095798] +09:33:22 [ 3] [ 6] [012000] +09:33:22 [ 4] [ 12] [000070000000] +09:33:22 [ 7] [ 10] [0320023225] +09:33:22 [ 11] [ 6] [267568] +09:33:22 [ 12] [ 6] [093225] +09:33:22 [ 13] [ 4] [0320] +09:33:22 [ 15] [ 4] [0320] +09:33:22 [ 18] [ 4] [6011] +09:33:22 [ 19] [ 3] [418] +09:33:22 [ 32] [ 6] [180893] +09:33:22 [ 35] [ 32] [6213545000095798=491212019579743] +09:33:22 [ 37] [ 12] [507902267568] +09:33:22 [ 38] [ 6] [491223] +09:33:22 [ 39] [ 2] [00] +09:33:22 [ 41] [ 8] [0112CPBR] +09:33:22 [ 49] [ 3] [418] +09:33:22 [ 54] [ 40] [2001418C0000076627982002418C000007662798] +09:33:22 ============================================================================ +09:33:22 Calculate Source COMM Id = 2 +09:33:22 ============================================================================ +09:33:22 + + +waiting on router queue for slot.... +09:33:23 ============================================================================ +09:33:23 Slot Id : <19> +09:33:23 Transaction Type : REQUEST +09:33:23 Received From : +09:33:23 ============================================================================ +09:33:23 FNo. Len. Field Value +09:33:23 ============================================================================ +09:33:23 [ 1] [ 4] [0800] +09:33:23 [ 7] [ 10] [0320023230] +09:33:23 [ 11] [ 6] [155657] +09:33:23 [ 70] [ 3] [301] +09:33:23 ============================================================================ +09:33:23 + + +waiting on router queue for slot.... +09:33:23 Sending to : +09:33:23 ============================================================================ +09:33:23 ============================================================================ +09:33:23 Slot Id : <19> +09:33:23 Transaction Type : RESPONSE +09:33:23 Received From : +09:33:23 ============================================================================ +09:33:23 FNo. Len. Field Value +09:33:23 ============================================================================ +09:33:23 [ 1] [ 4] [0810] +09:33:23 [ 7] [ 10] [0320023230] +09:33:23 [ 11] [ 6] [155657] +09:33:23 [ 39] [ 2] [00] +09:33:23 [ 70] [ 3] [301] +09:33:23 ============================================================================ +09:33:23 Calculate Source COMM Id = 2 +09:33:23 ============================================================================ +09:33:23 + + +waiting on router queue for slot.... +09:33:28 ============================================================================ +09:33:28 Slot Id : <58> +09:33:28 Transaction Type : REQUEST +09:33:28 Received From : +09:33:28 ============================================================================ +09:33:28 FNo. Len. Field Value +09:33:28 ============================================================================ +09:33:28 [ 1] [ 4] [0200] +09:33:28 [ 2] [ 16] [1808931400008635] +09:33:28 [ 3] [ 6] [011000] +09:33:28 [ 4] [ 12] [000050000000] +09:33:28 [ 7] [ 10] [0320093324] +09:33:28 [ 11] [ 6] [700207] +09:33:28 [ 12] [ 6] [093324] +09:33:28 [ 13] [ 4] [0320] +09:33:28 [ 15] [ 4] [0320] +09:33:28 [ 18] [ 4] [6011] +09:33:28 [ 22] [ 3] [900] +09:33:28 [ 25] [ 2] [02] +09:33:28 [ 28] [ 9] [D00002000] +09:33:28 [ 32] [ 6] [621354] +09:33:28 [ 35] [ 27] [1808931400008635=1803500901] +09:33:28 [ 37] [ 12] [507904719423] +09:33:28 [ 41] [ 8] [18001000] +09:33:28 [ 42] [ 15] [NATIVE ] +09:33:28 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:33:28 [ 49] [ 3] [418] +09:33:28 [ 52] [ 16] [A65A773F613D4181] +09:33:28 ============================================================================ +09:33:28 + + +waiting on router queue for slot.... +09:33:28 Sending to : +09:33:28 ============================================================================ +09:33:28 Sending to : +09:33:28 ============================================================================ +09:33:28 ============================================================================ +09:33:28 Slot Id : <58> +09:33:28 Transaction Type : REQUEST +09:33:28 Received From : +09:33:28 ============================================================================ +09:33:28 FNo. Len. Field Value +09:33:28 ============================================================================ +09:33:28 [ 1] [ 4] [0200] +09:33:28 [ 2] [ 16] [1808931400008635] +09:33:28 [ 3] [ 6] [011000] +09:33:28 [ 4] [ 12] [000050000000] +09:33:28 [ 7] [ 10] [0320093324] +09:33:28 [ 11] [ 6] [700207] +09:33:28 [ 12] [ 6] [093324] +09:33:28 [ 13] [ 4] [0320] +09:33:28 [ 15] [ 4] [0320] +09:33:28 [ 18] [ 4] [6011] +09:33:28 [ 22] [ 3] [900] +09:33:28 [ 25] [ 2] [02] +09:33:28 [ 28] [ 9] [D00002000] +09:33:28 [ 32] [ 6] [621354] +09:33:28 [ 35] [ 27] [1808931400008635=1803500901] +09:33:28 [ 37] [ 12] [507904719423] +09:33:28 [ 41] [ 8] [18001000] +09:33:28 [ 42] [ 15] [NATIVE ] +09:33:28 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:33:28 [ 49] [ 3] [418] +09:33:28 [ 52] [ 16] [A65A773F613D4181] +09:33:28 ============================================================================ +09:33:28 + + +waiting on router queue for slot.... +09:33:28 Sending to : +09:33:28 ============================================================================ +09:33:28 ============================================================================ +09:33:28 Slot Id : <58> +09:33:28 Transaction Type : REQUEST +09:33:28 Received From : +09:33:28 ============================================================================ +09:33:28 FNo. Len. Field Value +09:33:28 ============================================================================ +09:33:28 [ 1] [ 4] [0200] +09:33:28 [ 2] [ 16] [1808931400008635] +09:33:28 [ 3] [ 6] [011000] +09:33:28 [ 4] [ 12] [000050000000] +09:33:28 [ 7] [ 10] [0320093324] +09:33:28 [ 11] [ 6] [700207] +09:33:28 [ 12] [ 6] [093324] +09:33:28 [ 13] [ 4] [0320] +09:33:28 [ 15] [ 4] [0320] +09:33:28 [ 18] [ 4] [6011] +09:33:28 [ 22] [ 3] [900] +09:33:28 [ 25] [ 2] [02] +09:33:28 [ 28] [ 9] [D00002000] +09:33:28 [ 32] [ 6] [621354] +09:33:28 [ 35] [ 27] [1808931400008635=1803500901] +09:33:28 [ 37] [ 12] [507904719423] +09:33:28 [ 41] [ 8] [18001000] +09:33:28 [ 42] [ 15] [NATIVE ] +09:33:28 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:33:28 [ 49] [ 3] [418] +09:33:28 [ 52] [ 16] [9878C5B87F1AF94F] +09:33:28 ============================================================================ +09:33:28 + + +waiting on router queue for slot.... +09:33:28 Sending to : <2> +09:33:28 ============================================================================ +09:33:30 ============================================================================ +09:33:30 Slot Id : <69> +09:33:30 Transaction Type : REQUEST +09:33:30 Received From : +09:33:30 ============================================================================ +09:33:30 FNo. Len. Field Value +09:33:30 ============================================================================ +09:33:30 [ 1] [ 4] [0200] +09:33:30 [ 2] [ 16] [6213541000422488] +09:33:30 [ 3] [ 6] [010000] +09:33:30 [ 4] [ 12] [000100000000] +09:33:30 [ 7] [ 10] [0320093121] +09:33:30 [ 11] [ 6] [935920] +09:33:30 [ 12] [ 6] [093121] +09:33:30 [ 13] [ 4] [0320] +09:33:30 [ 15] [ 4] [0320] +09:33:30 [ 18] [ 4] [6011] +09:33:30 [ 19] [ 3] [418] +09:33:30 [ 22] [ 3] [021] +09:33:30 [ 25] [ 2] [01] +09:33:30 [ 28] [ 9] [D00002000] +09:33:30 [ 32] [ 6] [668899] +09:33:30 [ 35] [ 32] [6213541000422488=491212012248862] +09:33:30 [ 37] [ 12] [507901614442] +09:33:30 [ 41] [ 8] [03001007] +09:33:30 [ 42] [ 15] [APT ] +09:33:30 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:33:30 [ 49] [ 3] [418] +09:33:30 [ 52] [ 16] [5BC68D7FD1E0A5B2] +09:33:30 ============================================================================ +09:33:30 + + +waiting on router queue for slot.... +09:33:30 Sending to : +09:33:30 ============================================================================ +09:33:30 Sending to : +09:33:30 ============================================================================ +09:33:30 ============================================================================ +09:33:30 Slot Id : <78> +09:33:30 Transaction Type : REQUEST +09:33:30 Received From : +09:33:30 ============================================================================ +09:33:30 FNo. Len. Field Value +09:33:30 ============================================================================ +09:33:30 [ 1] [ 4] [0200] +09:33:30 [ 2] [ 16] [6213545001108848] +09:33:30 [ 3] [ 6] [010000] +09:33:30 [ 4] [ 12] [000100000000] +09:33:30 [ 7] [ 10] [0320023238] +09:33:30 [ 11] [ 6] [267570] +09:33:30 [ 12] [ 6] [093238] +09:33:30 [ 13] [ 4] [0320] +09:33:30 [ 14] [ 4] [4912] +09:33:30 [ 15] [ 4] [0320] +09:33:30 [ 18] [ 4] [6011] +09:33:30 [ 19] [ 3] [418] +09:33:30 [ 22] [ 3] [021] +09:33:30 [ 25] [ 2] [01] +09:33:30 [ 28] [ 9] [D00002000] +09:33:30 [ 32] [ 6] [180893] +09:33:30 [ 35] [ 32] [6213545001108848=491212010884066] +09:33:30 [ 37] [ 12] [507902267570] +09:33:30 [ 41] [ 8] [0221XKKM] +09:33:30 [ 42] [ 15] [999999 ] +09:33:30 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:33:30 [ 49] [ 3] [418] +09:33:30 [ 52] [ 16] [2FF7E970074030F1] +09:33:30 ============================================================================ +09:33:30 + + +waiting on router queue for slot.... +09:33:30 Sending to : +09:33:30 ============================================================================ +09:33:30 Sending to : +09:33:30 ============================================================================ +09:33:30 ============================================================================ +09:33:30 Slot Id : <69> +09:33:30 Transaction Type : REQUEST +09:33:30 Received From : +09:33:30 ============================================================================ +09:33:30 FNo. Len. Field Value +09:33:30 ============================================================================ +09:33:30 [ 1] [ 4] [0200] +09:33:30 [ 2] [ 16] [6213541000422488] +09:33:30 [ 3] [ 6] [010000] +09:33:30 [ 4] [ 12] [000100000000] +09:33:30 [ 7] [ 10] [0320093121] +09:33:30 [ 11] [ 6] [935920] +09:33:30 [ 12] [ 6] [093121] +09:33:30 [ 13] [ 4] [0320] +09:33:30 [ 15] [ 4] [0320] +09:33:30 [ 18] [ 4] [6011] +09:33:30 [ 19] [ 3] [418] +09:33:30 [ 22] [ 3] [021] +09:33:30 [ 25] [ 2] [01] +09:33:30 [ 28] [ 9] [D00002000] +09:33:30 [ 32] [ 6] [668899] +09:33:30 [ 35] [ 32] [6213541000422488=491212012248862] +09:33:30 [ 37] [ 12] [507901614442] +09:33:30 [ 41] [ 8] [03001007] +09:33:30 [ 42] [ 15] [APT ] +09:33:30 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:33:30 [ 49] [ 3] [418] +09:33:30 [ 52] [ 16] [5BC68D7FD1E0A5B2] +09:33:30 ============================================================================ +09:33:30 + + +waiting on router queue for slot.... +09:33:30 Sending to : +09:33:30 ============================================================================ +09:33:30 ============================================================================ +09:33:30 Slot Id : <69> +09:33:30 Transaction Type : REQUEST +09:33:30 Received From : +09:33:30 ============================================================================ +09:33:30 FNo. Len. Field Value +09:33:30 ============================================================================ +09:33:30 [ 1] [ 4] [0200] +09:33:30 [ 2] [ 16] [6213541000422488] +09:33:30 [ 3] [ 6] [010000] +09:33:30 [ 4] [ 12] [000100000000] +09:33:30 [ 7] [ 10] [0320093121] +09:33:30 [ 11] [ 6] [935920] +09:33:30 [ 12] [ 6] [093121] +09:33:30 [ 13] [ 4] [0320] +09:33:30 [ 15] [ 4] [0320] +09:33:30 [ 18] [ 4] [6011] +09:33:30 [ 19] [ 3] [418] +09:33:30 [ 22] [ 3] [021] +09:33:30 [ 25] [ 2] [01] +09:33:30 [ 28] [ 9] [D00002000] +09:33:30 [ 32] [ 6] [668899] +09:33:30 [ 35] [ 32] [6213541000422488=491212012248862] +09:33:30 [ 37] [ 12] [507901614442] +09:33:30 [ 41] [ 8] [03001007] +09:33:30 [ 42] [ 15] [APT ] +09:33:30 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:33:30 [ 49] [ 3] [418] +09:33:30 [ 52] [ 16] [22DACCCC0A12FCEF] +09:33:30 ============================================================================ +09:33:30 + + +waiting on router queue for slot.... +09:33:30 Sending to : <0> +09:33:30 ============================================================================ +09:33:31 ============================================================================ +09:33:31 Slot Id : <78> +09:33:31 Transaction Type : REQUEST +09:33:31 Received From : +09:33:31 ============================================================================ +09:33:31 FNo. Len. Field Value +09:33:31 ============================================================================ +09:33:31 [ 1] [ 4] [0200] +09:33:31 [ 2] [ 16] [6213545001108848] +09:33:31 [ 3] [ 6] [010000] +09:33:31 [ 4] [ 12] [000100000000] +09:33:31 [ 7] [ 10] [0320023238] +09:33:31 [ 11] [ 6] [267570] +09:33:31 [ 12] [ 6] [093238] +09:33:31 [ 13] [ 4] [0320] +09:33:31 [ 14] [ 4] [4912] +09:33:31 [ 15] [ 4] [0320] +09:33:31 [ 18] [ 4] [6011] +09:33:31 [ 19] [ 3] [418] +09:33:31 [ 22] [ 3] [021] +09:33:31 [ 25] [ 2] [01] +09:33:31 [ 28] [ 9] [D00002000] +09:33:31 [ 32] [ 6] [180893] +09:33:31 [ 35] [ 32] [6213545001108848=491212010884066] +09:33:31 [ 37] [ 12] [507902267570] +09:33:31 [ 41] [ 8] [0221XKKM] +09:33:31 [ 42] [ 15] [999999 ] +09:33:31 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:33:31 [ 49] [ 3] [418] +09:33:31 [ 52] [ 16] [2FF7E970074030F1] +09:33:31 ============================================================================ +09:33:31 + + +waiting on router queue for slot.... +09:33:31 Sending to : +09:33:31 ============================================================================ +09:33:31 ============================================================================ +09:33:31 Slot Id : <78> +09:33:31 Transaction Type : REQUEST +09:33:31 Received From : +09:33:31 ============================================================================ +09:33:31 FNo. Len. Field Value +09:33:31 ============================================================================ +09:33:31 [ 1] [ 4] [0200] +09:33:31 [ 2] [ 16] [6213545001108848] +09:33:31 [ 3] [ 6] [010000] +09:33:31 [ 4] [ 12] [000100000000] +09:33:31 [ 7] [ 10] [0320023238] +09:33:31 [ 11] [ 6] [267570] +09:33:31 [ 12] [ 6] [093238] +09:33:31 [ 13] [ 4] [0320] +09:33:31 [ 14] [ 4] [4912] +09:33:31 [ 15] [ 4] [0320] +09:33:31 [ 18] [ 4] [6011] +09:33:31 [ 19] [ 3] [418] +09:33:31 [ 22] [ 3] [021] +09:33:31 [ 25] [ 2] [01] +09:33:31 [ 28] [ 9] [D00002000] +09:33:31 [ 32] [ 6] [180893] +09:33:31 [ 35] [ 32] [6213545001108848=491212010884066] +09:33:31 [ 37] [ 12] [507902267570] +09:33:31 [ 41] [ 8] [0221XKKM] +09:33:31 [ 42] [ 15] [999999 ] +09:33:31 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:33:31 [ 49] [ 3] [418] +09:33:31 [ 52] [ 16] [171E6442C88DAB4B] +09:33:31 ============================================================================ +09:33:31 + + +waiting on router queue for slot.... +09:33:31 Sending to : <0> +09:33:31 ============================================================================ +09:33:31 ============================================================================ +09:33:31 Slot Id : <69> +09:33:31 Transaction Type : RESPONSE +09:33:31 Received From : +09:33:31 ============================================================================ +09:33:31 FNo. Len. Field Value +09:33:31 ============================================================================ +09:33:31 [ 1] [ 4] [0210] +09:33:31 [ 2] [ 16] [6213541000422488] +09:33:31 [ 3] [ 6] [010000] +09:33:31 [ 4] [ 12] [000100000000] +09:33:31 [ 7] [ 10] [0320093121] +09:33:31 [ 11] [ 6] [935920] +09:33:31 [ 12] [ 6] [093121] +09:33:31 [ 13] [ 4] [0320] +09:33:31 [ 15] [ 4] [0320] +09:33:31 [ 18] [ 4] [6011] +09:33:31 [ 19] [ 3] [418] +09:33:31 [ 32] [ 6] [668899] +09:33:31 [ 35] [ 32] [6213541000422488=491212012248862] +09:33:31 [ 37] [ 12] [507901614442] +09:33:31 [ 38] [ 6] [024999] +09:33:31 [ 39] [ 2] [00] +09:33:31 [ 41] [ 8] [03001007] +09:33:31 [ 49] [ 3] [418] +09:33:31 [ 54] [ 40] [0001418C0055029317940002418C005502931794] +09:33:31 ============================================================================ +09:33:31 Sending to : +09:33:31 ============================================================================ +09:33:31 + + +waiting on router queue for slot.... +09:33:31 ============================================================================ +09:33:31 Slot Id : <78> +09:33:31 Transaction Type : RESPONSE +09:33:31 Received From : +09:33:31 ============================================================================ +09:33:31 FNo. Len. Field Value +09:33:31 ============================================================================ +09:33:31 [ 1] [ 4] [0210] +09:33:31 [ 2] [ 16] [6213545001108848] +09:33:31 [ 3] [ 6] [010000] +09:33:31 [ 4] [ 12] [000100000000] +09:33:31 [ 7] [ 10] [0320023238] +09:33:31 [ 11] [ 6] [267570] +09:33:31 [ 12] [ 6] [093238] +09:33:31 [ 13] [ 4] [0320] +09:33:31 [ 15] [ 4] [0320] +09:33:31 [ 18] [ 4] [6011] +09:33:31 [ 19] [ 3] [418] +09:33:31 [ 32] [ 6] [180893] +09:33:31 [ 35] [ 32] [6213545001108848=491212010884066] +09:33:31 [ 37] [ 12] [507902267570] +09:33:31 [ 38] [ 6] [244447] +09:33:31 [ 39] [ 2] [00] +09:33:31 [ 41] [ 8] [0221XKKM] +09:33:31 [ 49] [ 3] [418] +09:33:31 [ 54] [ 40] [0001418C0003153420000002418C000315342000] +09:33:31 ============================================================================ +09:33:31 Sending to : +09:33:31 ============================================================================ +09:33:31 + + +waiting on router queue for slot.... +09:33:32 ============================================================================ +09:33:32 Slot Id : <47> +09:33:32 Transaction Type : REQUEST +09:33:32 Received From : +09:33:32 ============================================================================ +09:33:32 FNo. Len. Field Value +09:33:32 ============================================================================ +09:33:32 [ 1] [ 4] [0200] +09:33:32 [ 2] [ 16] [6213545000939409] +09:33:32 [ 3] [ 6] [010000] +09:33:32 [ 4] [ 12] [000200000000] +09:33:32 [ 7] [ 10] [0320023240] +09:33:32 [ 11] [ 6] [267572] +09:33:32 [ 12] [ 6] [093240] +09:33:32 [ 13] [ 4] [0320] +09:33:32 [ 14] [ 4] [4912] +09:33:32 [ 15] [ 4] [0320] +09:33:32 [ 18] [ 4] [6011] +09:33:32 [ 19] [ 3] [418] +09:33:32 [ 22] [ 3] [021] +09:33:32 [ 25] [ 2] [01] +09:33:32 [ 28] [ 9] [D00002000] +09:33:32 [ 32] [ 6] [180893] +09:33:32 [ 35] [ 32] [6213545000939409=491212013940581] +09:33:32 [ 37] [ 12] [507902267572] +09:33:32 [ 41] [ 8] [0366SKTT] +09:33:32 [ 42] [ 15] [999999 ] +09:33:32 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:33:32 [ 49] [ 3] [418] +09:33:32 [ 52] [ 16] [3FA3719AB9C85D07] +09:33:32 ============================================================================ +09:33:32 + + +waiting on router queue for slot.... +09:33:32 Sending to : +09:33:32 ============================================================================ +09:33:32 Sending to : +09:33:32 ============================================================================ +09:33:33 ============================================================================ +09:33:33 Slot Id : <58> +09:33:33 Transaction Type : RESPONSE +09:33:33 Received From : +09:33:33 ============================================================================ +09:33:33 FNo. Len. Field Value +09:33:33 ============================================================================ +09:33:33 [ 1] [ 4] [0210] +09:33:33 [ 2] [ 16] [1808931400008635] +09:33:33 [ 3] [ 6] [011000] +09:33:33 [ 4] [ 12] [000050000000] +09:33:33 [ 6] [ 12] [000050000000] +09:33:33 [ 7] [ 10] [0320093324] +09:33:33 [ 11] [ 6] [700207] +09:33:33 [ 12] [ 6] [093324] +09:33:33 [ 13] [ 4] [0320] +09:33:33 [ 18] [ 4] [6011] +09:33:33 [ 19] [ 3] [418] +09:33:33 [ 22] [ 3] [021] +09:33:33 [ 32] [ 6] [621354] +09:33:33 [ 35] [ 27] [1808931400008635=1803500901] +09:33:33 [ 37] [ 12] [507904719423] +09:33:33 [ 38] [ 6] [700207] +09:33:33 [ 39] [ 2] [00] +09:33:33 [ 41] [ 8] [18001000] +09:33:33 [ 49] [ 3] [418] +09:33:33 [ 52] [ 16] [9878C5B87F1AF94F] +09:33:33 [ 54] [ 20] [1001418C000836295700] +09:33:33 ============================================================================ +09:33:33 Sending to : +09:33:33 ============================================================================ +09:33:33 + + +waiting on router queue for slot.... +09:33:33 ============================================================================ +09:33:33 Slot Id : <47> +09:33:33 Transaction Type : REQUEST +09:33:33 Received From : +09:33:33 ============================================================================ +09:33:33 FNo. Len. Field Value +09:33:33 ============================================================================ +09:33:33 [ 1] [ 4] [0200] +09:33:33 [ 2] [ 16] [6213545000939409] +09:33:33 [ 3] [ 6] [010000] +09:33:33 [ 4] [ 12] [000200000000] +09:33:33 [ 7] [ 10] [0320023240] +09:33:33 [ 11] [ 6] [267572] +09:33:33 [ 12] [ 6] [093240] +09:33:33 [ 13] [ 4] [0320] +09:33:33 [ 14] [ 4] [4912] +09:33:33 [ 15] [ 4] [0320] +09:33:33 [ 18] [ 4] [6011] +09:33:33 [ 19] [ 3] [418] +09:33:33 [ 22] [ 3] [021] +09:33:33 [ 25] [ 2] [01] +09:33:33 [ 28] [ 9] [D00002000] +09:33:33 [ 32] [ 6] [180893] +09:33:33 [ 35] [ 32] [6213545000939409=491212013940581] +09:33:33 [ 37] [ 12] [507902267572] +09:33:33 [ 41] [ 8] [0366SKTT] +09:33:33 [ 42] [ 15] [999999 ] +09:33:33 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:33:33 [ 49] [ 3] [418] +09:33:33 [ 52] [ 16] [3FA3719AB9C85D07] +09:33:33 ============================================================================ +09:33:33 + + +waiting on router queue for slot.... +09:33:33 Sending to : +09:33:33 ============================================================================ +09:33:33 ============================================================================ +09:33:33 Slot Id : <69> +09:33:33 Transaction Type : RESPONSE +09:33:33 Received From : +09:33:33 ============================================================================ +09:33:33 FNo. Len. Field Value +09:33:33 ============================================================================ +09:33:33 [ 1] [ 4] [0210] +09:33:33 [ 2] [ 16] [6213541000422488] +09:33:33 [ 3] [ 6] [010000] +09:33:33 [ 4] [ 12] [000100000000] +09:33:33 [ 7] [ 10] [0320093121] +09:33:33 [ 11] [ 6] [935920] +09:33:33 [ 12] [ 6] [093121] +09:33:33 [ 13] [ 4] [0320] +09:33:33 [ 15] [ 4] [0320] +09:33:33 [ 18] [ 4] [6011] +09:33:33 [ 19] [ 3] [418] +09:33:33 [ 32] [ 6] [668899] +09:33:33 [ 35] [ 32] [6213541000422488=491212012248862] +09:33:33 [ 37] [ 12] [507901614442] +09:33:33 [ 38] [ 6] [024999] +09:33:33 [ 39] [ 2] [00] +09:33:33 [ 41] [ 8] [03001007] +09:33:33 [ 49] [ 3] [418] +09:33:33 [ 54] [ 40] [0001418C0055029317940002418C005502931794] +09:33:33 ============================================================================ +09:33:33 Calculate Source COMM Id = 4 +09:33:33 ============================================================================ +09:33:33 + + +waiting on router queue for slot.... +09:33:33 ============================================================================ +09:33:33 Slot Id : <47> +09:33:33 Transaction Type : REQUEST +09:33:33 Received From : +09:33:33 ============================================================================ +09:33:33 FNo. Len. Field Value +09:33:33 ============================================================================ +09:33:33 [ 1] [ 4] [0200] +09:33:33 [ 2] [ 16] [6213545000939409] +09:33:33 [ 3] [ 6] [010000] +09:33:33 [ 4] [ 12] [000200000000] +09:33:33 [ 7] [ 10] [0320023240] +09:33:33 [ 11] [ 6] [267572] +09:33:33 [ 12] [ 6] [093240] +09:33:33 [ 13] [ 4] [0320] +09:33:33 [ 14] [ 4] [4912] +09:33:33 [ 15] [ 4] [0320] +09:33:33 [ 18] [ 4] [6011] +09:33:33 [ 19] [ 3] [418] +09:33:33 [ 22] [ 3] [021] +09:33:33 [ 25] [ 2] [01] +09:33:33 [ 28] [ 9] [D00002000] +09:33:33 [ 32] [ 6] [180893] +09:33:33 [ 35] [ 32] [6213545000939409=491212013940581] +09:33:33 [ 37] [ 12] [507902267572] +09:33:33 [ 41] [ 8] [0366SKTT] +09:33:33 [ 42] [ 15] [999999 ] +09:33:33 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:33:33 [ 49] [ 3] [418] +09:33:33 [ 52] [ 16] [808028DB9728CD75] +09:33:33 ============================================================================ +09:33:33 + + +waiting on router queue for slot.... +09:33:33 Sending to : <0> +09:33:33 ============================================================================ +09:33:33 ============================================================================ +09:33:33 Slot Id : <47> +09:33:33 Transaction Type : RESPONSE +09:33:33 Received From : +09:33:33 ============================================================================ +09:33:33 FNo. Len. Field Value +09:33:33 ============================================================================ +09:33:33 [ 1] [ 4] [0210] +09:33:33 [ 2] [ 16] [6213545000939409] +09:33:33 [ 3] [ 6] [010000] +09:33:33 [ 4] [ 12] [000200000000] +09:33:33 [ 7] [ 10] [0320023240] +09:33:33 [ 11] [ 6] [267572] +09:33:33 [ 12] [ 6] [093240] +09:33:33 [ 13] [ 4] [0320] +09:33:33 [ 15] [ 4] [0320] +09:33:33 [ 18] [ 4] [6011] +09:33:33 [ 19] [ 3] [418] +09:33:33 [ 22] [ 3] [021] +09:33:33 [ 32] [ 6] [180893] +09:33:33 [ 35] [ 32] [6213545000939409=491212013940581] +09:33:33 [ 37] [ 12] [507902267572] +09:33:33 [ 39] [ 2] [61] +09:33:33 [ 41] [ 8] [0366SKTT] +09:33:33 [ 49] [ 3] [418] +09:33:33 ============================================================================ +09:33:33 Sending to : +09:33:33 ============================================================================ +09:33:33 + + +waiting on router queue for slot.... +09:33:34 ============================================================================ +09:33:34 Slot Id : <58> +09:33:34 Transaction Type : RESPONSE +09:33:34 Received From : +09:33:34 ============================================================================ +09:33:34 FNo. Len. Field Value +09:33:34 ============================================================================ +09:33:34 [ 1] [ 4] [0210] +09:33:34 [ 2] [ 16] [1808931400008635] +09:33:34 [ 3] [ 6] [011000] +09:33:34 [ 4] [ 12] [000050000000] +09:33:34 [ 6] [ 12] [000050000000] +09:33:34 [ 7] [ 10] [0320093324] +09:33:34 [ 11] [ 6] [700207] +09:33:34 [ 12] [ 6] [093324] +09:33:34 [ 13] [ 4] [0320] +09:33:34 [ 18] [ 4] [6011] +09:33:34 [ 19] [ 3] [418] +09:33:34 [ 22] [ 3] [021] +09:33:34 [ 32] [ 6] [621354] +09:33:34 [ 35] [ 27] [1808931400008635=1803500901] +09:33:34 [ 37] [ 12] [507904719423] +09:33:34 [ 38] [ 6] [700207] +09:33:34 [ 39] [ 2] [00] +09:33:34 [ 41] [ 8] [18001000] +09:33:34 [ 49] [ 3] [418] +09:33:34 [ 52] [ 16] [9878C5B87F1AF94F] +09:33:34 [ 54] [ 20] [1001418C000836295700] +09:33:34 ============================================================================ +09:33:34 Calculate Source COMM Id = 0 +09:33:34 ============================================================================ +09:33:34 + + +waiting on router queue for slot.... +09:33:35 ============================================================================ +09:33:35 Slot Id : <78> +09:33:35 Transaction Type : RESPONSE +09:33:35 Received From : +09:33:35 ============================================================================ +09:33:35 FNo. Len. Field Value +09:33:35 ============================================================================ +09:33:35 [ 1] [ 4] [0210] +09:33:35 [ 2] [ 16] [6213545001108848] +09:33:35 [ 3] [ 6] [010000] +09:33:35 [ 4] [ 12] [000100000000] +09:33:35 [ 7] [ 10] [0320023238] +09:33:35 [ 11] [ 6] [267570] +09:33:35 [ 12] [ 6] [093238] +09:33:35 [ 13] [ 4] [0320] +09:33:35 [ 15] [ 4] [0320] +09:33:35 [ 18] [ 4] [6011] +09:33:35 [ 19] [ 3] [418] +09:33:35 [ 32] [ 6] [180893] +09:33:35 [ 35] [ 32] [6213545001108848=491212010884066] +09:33:35 [ 37] [ 12] [507902267570] +09:33:35 [ 38] [ 6] [244447] +09:33:35 [ 39] [ 2] [00] +09:33:35 [ 41] [ 8] [0221XKKM] +09:33:35 [ 49] [ 3] [418] +09:33:35 [ 54] [ 40] [0001418C0003153420000002418C000315342000] +09:33:35 ============================================================================ +09:33:35 Calculate Source COMM Id = 2 +09:33:35 ============================================================================ +09:33:35 + + +waiting on router queue for slot.... +09:33:36 ============================================================================ +09:33:36 Slot Id : <47> +09:33:36 Transaction Type : RESPONSE +09:33:36 Received From : +09:33:36 ============================================================================ +09:33:36 FNo. Len. Field Value +09:33:36 ============================================================================ +09:33:36 [ 1] [ 4] [0210] +09:33:36 [ 2] [ 16] [6213545000939409] +09:33:36 [ 3] [ 6] [010000] +09:33:36 [ 4] [ 12] [000200000000] +09:33:36 [ 7] [ 10] [0320023240] +09:33:36 [ 11] [ 6] [267572] +09:33:36 [ 12] [ 6] [093240] +09:33:36 [ 13] [ 4] [0320] +09:33:36 [ 15] [ 4] [0320] +09:33:36 [ 18] [ 4] [6011] +09:33:36 [ 19] [ 3] [418] +09:33:36 [ 22] [ 3] [021] +09:33:36 [ 32] [ 6] [180893] +09:33:36 [ 35] [ 32] [6213545000939409=491212013940581] +09:33:36 [ 37] [ 12] [507902267572] +09:33:36 [ 39] [ 2] [61] +09:33:36 [ 41] [ 8] [0366SKTT] +09:33:36 [ 49] [ 3] [418] +09:33:36 ============================================================================ +09:33:36 Calculate Source COMM Id = 2 +09:33:36 ============================================================================ +09:33:36 + + +waiting on router queue for slot.... +09:33:42 ============================================================================ +09:33:42 Slot Id : <81> +09:33:42 Transaction Type : REQUEST +09:33:42 Received From : +09:33:42 ============================================================================ +09:33:42 FNo. Len. Field Value +09:33:42 ============================================================================ +09:33:42 [ 1] [ 4] [0200] +09:33:42 [ 2] [ 16] [6213541000646201] +09:33:42 [ 3] [ 6] [010000] +09:33:42 [ 4] [ 12] [000200000000] +09:33:42 [ 7] [ 10] [0320023250] +09:33:42 [ 11] [ 6] [267576] +09:33:42 [ 12] [ 6] [093250] +09:33:42 [ 13] [ 4] [0320] +09:33:42 [ 14] [ 4] [4912] +09:33:42 [ 15] [ 4] [0320] +09:33:42 [ 18] [ 4] [6011] +09:33:42 [ 19] [ 3] [418] +09:33:42 [ 22] [ 3] [021] +09:33:42 [ 25] [ 2] [01] +09:33:42 [ 28] [ 9] [D00002000] +09:33:42 [ 32] [ 6] [180893] +09:33:42 [ 35] [ 32] [6213541000646201=491212014620504] +09:33:42 [ 37] [ 12] [507902267576] +09:33:42 [ 41] [ 8] [0523XYNG] +09:33:42 [ 42] [ 15] [999999 ] +09:33:42 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:33:42 [ 49] [ 3] [418] +09:33:42 [ 52] [ 16] [756DBEF7787A3EE4] +09:33:42 ============================================================================ +09:33:42 + + +waiting on router queue for slot.... +09:33:42 Sending to : +09:33:42 ============================================================================ +09:33:42 Sending to : +09:33:42 ============================================================================ +09:33:43 ============================================================================ +09:33:43 Slot Id : <81> +09:33:43 Transaction Type : REQUEST +09:33:43 Received From : +09:33:43 ============================================================================ +09:33:43 FNo. Len. Field Value +09:33:43 ============================================================================ +09:33:43 [ 1] [ 4] [0200] +09:33:43 [ 2] [ 16] [6213541000646201] +09:33:43 [ 3] [ 6] [010000] +09:33:43 [ 4] [ 12] [000200000000] +09:33:43 [ 7] [ 10] [0320023250] +09:33:43 [ 11] [ 6] [267576] +09:33:43 [ 12] [ 6] [093250] +09:33:43 [ 13] [ 4] [0320] +09:33:43 [ 14] [ 4] [4912] +09:33:43 [ 15] [ 4] [0320] +09:33:43 [ 18] [ 4] [6011] +09:33:43 [ 19] [ 3] [418] +09:33:43 [ 22] [ 3] [021] +09:33:43 [ 25] [ 2] [01] +09:33:43 [ 28] [ 9] [D00002000] +09:33:43 [ 32] [ 6] [180893] +09:33:43 [ 35] [ 32] [6213541000646201=491212014620504] +09:33:43 [ 37] [ 12] [507902267576] +09:33:43 [ 41] [ 8] [0523XYNG] +09:33:43 [ 42] [ 15] [999999 ] +09:33:43 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:33:43 [ 49] [ 3] [418] +09:33:43 [ 52] [ 16] [756DBEF7787A3EE4] +09:33:43 ============================================================================ +09:33:43 + + +waiting on router queue for slot.... +09:33:43 Sending to : +09:33:43 ============================================================================ +09:33:43 ============================================================================ +09:33:43 Slot Id : <81> +09:33:43 Transaction Type : REQUEST +09:33:43 Received From : +09:33:43 ============================================================================ +09:33:43 FNo. Len. Field Value +09:33:43 ============================================================================ +09:33:43 [ 1] [ 4] [0200] +09:33:43 [ 2] [ 16] [6213541000646201] +09:33:43 [ 3] [ 6] [010000] +09:33:43 [ 4] [ 12] [000200000000] +09:33:43 [ 7] [ 10] [0320023250] +09:33:43 [ 11] [ 6] [267576] +09:33:43 [ 12] [ 6] [093250] +09:33:43 [ 13] [ 4] [0320] +09:33:43 [ 14] [ 4] [4912] +09:33:43 [ 15] [ 4] [0320] +09:33:43 [ 18] [ 4] [6011] +09:33:43 [ 19] [ 3] [418] +09:33:43 [ 22] [ 3] [021] +09:33:43 [ 25] [ 2] [01] +09:33:43 [ 28] [ 9] [D00002000] +09:33:43 [ 32] [ 6] [180893] +09:33:43 [ 35] [ 32] [6213541000646201=491212014620504] +09:33:43 [ 37] [ 12] [507902267576] +09:33:43 [ 41] [ 8] [0523XYNG] +09:33:43 [ 42] [ 15] [999999 ] +09:33:43 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:33:43 [ 49] [ 3] [418] +09:33:43 [ 52] [ 16] [0C2F06640D5A7025] +09:33:43 ============================================================================ +09:33:43 + + +waiting on router queue for slot.... +09:33:43 Sending to : <0> +09:33:43 ============================================================================ +09:33:43 ============================================================================ +09:33:43 Slot Id : <81> +09:33:43 Transaction Type : RESPONSE +09:33:43 Received From : +09:33:43 ============================================================================ +09:33:43 FNo. Len. Field Value +09:33:43 ============================================================================ +09:33:43 [ 1] [ 4] [0210] +09:33:43 [ 2] [ 16] [6213541000646201] +09:33:43 [ 3] [ 6] [010000] +09:33:43 [ 4] [ 12] [000200000000] +09:33:43 [ 7] [ 10] [0320023250] +09:33:43 [ 11] [ 6] [267576] +09:33:43 [ 12] [ 6] [093250] +09:33:43 [ 13] [ 4] [0320] +09:33:43 [ 15] [ 4] [0320] +09:33:43 [ 18] [ 4] [6011] +09:33:43 [ 19] [ 3] [418] +09:33:43 [ 22] [ 3] [021] +09:33:43 [ 32] [ 6] [180893] +09:33:43 [ 35] [ 32] [6213541000646201=491212014620504] +09:33:43 [ 37] [ 12] [507902267576] +09:33:43 [ 39] [ 2] [61] +09:33:43 [ 41] [ 8] [0523XYNG] +09:33:43 [ 49] [ 3] [418] +09:33:43 ============================================================================ +09:33:43 Sending to : +09:33:43 ============================================================================ +09:33:43 + + +waiting on router queue for slot.... +09:33:44 ============================================================================ +09:33:44 Slot Id : <81> +09:33:44 Transaction Type : RESPONSE +09:33:44 Received From : +09:33:44 ============================================================================ +09:33:44 FNo. Len. Field Value +09:33:44 ============================================================================ +09:33:44 [ 1] [ 4] [0210] +09:33:44 [ 2] [ 16] [6213541000646201] +09:33:44 [ 3] [ 6] [010000] +09:33:44 [ 4] [ 12] [000200000000] +09:33:44 [ 7] [ 10] [0320023250] +09:33:44 [ 11] [ 6] [267576] +09:33:44 [ 12] [ 6] [093250] +09:33:44 [ 13] [ 4] [0320] +09:33:44 [ 15] [ 4] [0320] +09:33:44 [ 18] [ 4] [6011] +09:33:44 [ 19] [ 3] [418] +09:33:44 [ 22] [ 3] [021] +09:33:44 [ 32] [ 6] [180893] +09:33:44 [ 35] [ 32] [6213541000646201=491212014620504] +09:33:44 [ 37] [ 12] [507902267576] +09:33:44 [ 39] [ 2] [61] +09:33:44 [ 41] [ 8] [0523XYNG] +09:33:44 [ 49] [ 3] [418] +09:33:44 ============================================================================ +09:33:44 Calculate Source COMM Id = 2 +09:33:44 ============================================================================ +09:33:44 + + +waiting on router queue for slot.... +09:33:48 ============================================================================ +09:33:48 Slot Id : <54> +09:33:48 Transaction Type : REQUEST +09:33:48 Received From : +09:33:48 ============================================================================ +09:33:48 FNo. Len. Field Value +09:33:48 ============================================================================ +09:33:48 [ 1] [ 4] [0800] +09:33:48 [ 7] [ 10] [0320023344] +09:33:48 [ 11] [ 6] [089139] +09:33:48 [ 37] [ 12] [507909089139] +09:33:48 [ 70] [ 3] [001] +09:33:48 ============================================================================ +09:33:48 + + +waiting on router queue for slot.... +09:33:48 Sending to : +09:33:48 ============================================================================ +09:33:48 ============================================================================ +09:33:48 Slot Id : <54> +09:33:48 Transaction Type : RESPONSE +09:33:48 Received From : +09:33:48 ============================================================================ +09:33:48 FNo. Len. Field Value +09:33:48 ============================================================================ +09:33:48 [ 1] [ 4] [0810] +09:33:48 [ 7] [ 10] [0320023344] +09:33:48 [ 11] [ 6] [089139] +09:33:48 [ 37] [ 12] [507909089139] +09:33:48 [ 39] [ 2] [00] +09:33:48 [ 70] [ 3] [001] +09:33:48 ============================================================================ +09:33:48 Calculate Source COMM Id = 0 +09:33:48 ============================================================================ +09:33:48 + + +waiting on router queue for slot.... +09:34:01 ============================================================================ +09:34:01 Slot Id : <57> +09:34:01 Transaction Type : REQUEST +09:34:01 Received From : +09:34:01 ============================================================================ +09:34:01 FNo. Len. Field Value +09:34:01 ============================================================================ +09:34:01 [ 1] [ 4] [0800] +09:34:01 [ 7] [ 10] [0320023307] +09:34:01 [ 11] [ 6] [155658] +09:34:01 [ 70] [ 3] [301] +09:34:01 ============================================================================ +09:34:01 + + +waiting on router queue for slot.... +09:34:01 Sending to : +09:34:01 ============================================================================ +09:34:01 ============================================================================ +09:34:01 Slot Id : <57> +09:34:01 Transaction Type : RESPONSE +09:34:01 Received From : +09:34:01 ============================================================================ +09:34:01 FNo. Len. Field Value +09:34:01 ============================================================================ +09:34:01 [ 1] [ 4] [0810] +09:34:01 [ 7] [ 10] [0320023307] +09:34:01 [ 11] [ 6] [155658] +09:34:01 [ 39] [ 2] [00] +09:34:01 [ 70] [ 3] [301] +09:34:01 ============================================================================ +09:34:01 Calculate Source COMM Id = 2 +09:34:01 ============================================================================ +09:34:01 + + +waiting on router queue for slot.... +09:34:02 ============================================================================ +09:34:02 Slot Id : <24> +09:34:02 Transaction Type : REQUEST +09:34:02 Received From : +09:34:02 ============================================================================ +09:34:02 FNo. Len. Field Value +09:34:02 ============================================================================ +09:34:02 [ 1] [ 4] [0200] +09:34:02 [ 2] [ 16] [6213544002241757] +09:34:02 [ 3] [ 6] [010000] +09:34:02 [ 4] [ 12] [000010000000] +09:34:02 [ 7] [ 10] [0320023309] +09:34:02 [ 11] [ 6] [267582] +09:34:02 [ 12] [ 6] [093309] +09:34:02 [ 13] [ 4] [0320] +09:34:02 [ 14] [ 4] [4912] +09:34:02 [ 15] [ 4] [0320] +09:34:02 [ 18] [ 4] [6011] +09:34:02 [ 19] [ 3] [418] +09:34:02 [ 22] [ 3] [021] +09:34:02 [ 25] [ 2] [01] +09:34:02 [ 28] [ 9] [D00002000] +09:34:02 [ 32] [ 6] [180893] +09:34:02 [ 35] [ 32] [6213544002241757=491212014175211] +09:34:02 [ 37] [ 12] [507902267582] +09:34:02 [ 41] [ 8] [0118UDBR] +09:34:02 [ 42] [ 15] [999999 ] +09:34:02 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +09:34:02 [ 49] [ 3] [418] +09:34:02 [ 52] [ 16] [72237946AA3BDB2B] +09:34:02 ============================================================================ +09:34:02 + + +waiting on router queue for slot.... +09:34:02 Sending to : +09:34:02 ============================================================================ +09:34:02 Sending to : +09:34:02 ============================================================================ +09:34:02 ============================================================================ +09:34:02 Slot Id : <24> +09:34:02 Transaction Type : REQUEST +09:34:02 Received From : +09:34:02 ============================================================================ +09:34:02 FNo. Len. Field Value +09:34:02 ============================================================================ +09:34:02 [ 1] [ 4] [0200] +09:34:02 [ 2] [ 16] [6213544002241757] +09:34:02 [ 3] [ 6] [010000] +09:34:02 [ 4] [ 12] [000010000000] +09:34:02 [ 7] [ 10] [0320023309] +09:34:02 [ 11] [ 6] [267582] +09:34:02 [ 12] [ 6] [093309] +09:34:02 [ 13] [ 4] [0320] +09:34:02 [ 14] [ 4] [4912] +09:34:02 [ 15] [ 4] [0320] +09:34:02 [ 18] [ 4] [6011] +09:34:02 [ 19] [ 3] [418] +09:34:02 [ 22] [ 3] [021] +09:34:02 [ 25] [ 2] [01] +09:34:02 [ 28] [ 9] [D00002000] +09:34:02 [ 32] [ 6] [180893] +09:34:02 [ 35] [ 32] [6213544002241757=491212014175211] +09:34:02 [ 37] [ 12] [507902267582] +09:34:02 [ 41] [ 8] [0118UDBR] +09:34:02 [ 42] [ 15] [999999 ] +09:34:02 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +09:34:02 [ 49] [ 3] [418] +09:34:02 [ 52] [ 16] [72237946AA3BDB2B] +09:34:02 ============================================================================ +09:34:02 + + +waiting on router queue for slot.... +09:34:02 Sending to : +09:34:02 ============================================================================ +09:34:02 ============================================================================ +09:34:02 Slot Id : <24> +09:34:02 Transaction Type : REQUEST +09:34:02 Received From : +09:34:02 ============================================================================ +09:34:02 FNo. Len. Field Value +09:34:02 ============================================================================ +09:34:02 [ 1] [ 4] [0200] +09:34:02 [ 2] [ 16] [6213544002241757] +09:34:02 [ 3] [ 6] [010000] +09:34:02 [ 4] [ 12] [000010000000] +09:34:02 [ 7] [ 10] [0320023309] +09:34:02 [ 11] [ 6] [267582] +09:34:02 [ 12] [ 6] [093309] +09:34:02 [ 13] [ 4] [0320] +09:34:02 [ 14] [ 4] [4912] +09:34:02 [ 15] [ 4] [0320] +09:34:02 [ 18] [ 4] [6011] +09:34:02 [ 19] [ 3] [418] +09:34:02 [ 22] [ 3] [021] +09:34:02 [ 25] [ 2] [01] +09:34:02 [ 28] [ 9] [D00002000] +09:34:02 [ 32] [ 6] [180893] +09:34:02 [ 35] [ 32] [6213544002241757=491212014175211] +09:34:02 [ 37] [ 12] [507902267582] +09:34:02 [ 41] [ 8] [0118UDBR] +09:34:02 [ 42] [ 15] [999999 ] +09:34:02 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +09:34:02 [ 49] [ 3] [418] +09:34:02 [ 52] [ 16] [4139054179CD6016] +09:34:02 ============================================================================ +09:34:02 + + +waiting on router queue for slot.... +09:34:02 Sending to : <0> +09:34:02 ============================================================================ +09:34:02 ============================================================================ +09:34:02 Slot Id : <24> +09:34:02 Transaction Type : RESPONSE +09:34:02 Received From : +09:34:02 ============================================================================ +09:34:02 FNo. Len. Field Value +09:34:02 ============================================================================ +09:34:02 [ 1] [ 4] [0210] +09:34:02 [ 2] [ 16] [6213544002241757] +09:34:02 [ 3] [ 6] [010000] +09:34:02 [ 4] [ 12] [000010000000] +09:34:02 [ 7] [ 10] [0320023309] +09:34:02 [ 11] [ 6] [267582] +09:34:02 [ 12] [ 6] [093309] +09:34:02 [ 13] [ 4] [0320] +09:34:02 [ 15] [ 4] [0320] +09:34:02 [ 18] [ 4] [6011] +09:34:02 [ 19] [ 3] [418] +09:34:02 [ 22] [ 3] [021] +09:34:02 [ 32] [ 6] [180893] +09:34:02 [ 35] [ 32] [6213544002241757=491212014175211] +09:34:02 [ 37] [ 12] [507902267582] +09:34:02 [ 38] [ 6] [093359] +09:34:02 [ 39] [ 2] [55] +09:34:02 [ 41] [ 8] [0118UDBR] +09:34:02 [ 49] [ 3] [418] +09:34:02 ============================================================================ +09:34:02 Sending to : +09:34:02 ============================================================================ +09:34:02 + + +waiting on router queue for slot.... +09:34:04 ============================================================================ +09:34:04 Slot Id : <24> +09:34:04 Transaction Type : RESPONSE +09:34:04 Received From : +09:34:04 ============================================================================ +09:34:04 FNo. Len. Field Value +09:34:04 ============================================================================ +09:34:04 [ 1] [ 4] [0210] +09:34:04 [ 2] [ 16] [6213544002241757] +09:34:04 [ 3] [ 6] [010000] +09:34:04 [ 4] [ 12] [000010000000] +09:34:04 [ 7] [ 10] [0320023309] +09:34:04 [ 11] [ 6] [267582] +09:34:04 [ 12] [ 6] [093309] +09:34:04 [ 13] [ 4] [0320] +09:34:04 [ 15] [ 4] [0320] +09:34:04 [ 18] [ 4] [6011] +09:34:04 [ 19] [ 3] [418] +09:34:04 [ 22] [ 3] [021] +09:34:04 [ 32] [ 6] [180893] +09:34:04 [ 35] [ 32] [6213544002241757=491212014175211] +09:34:04 [ 37] [ 12] [507902267582] +09:34:04 [ 38] [ 6] [093359] +09:34:04 [ 39] [ 2] [55] +09:34:04 [ 41] [ 8] [0118UDBR] +09:34:04 [ 49] [ 3] [418] +09:34:04 ============================================================================ +09:34:04 Calculate Source COMM Id = 2 +09:34:04 ============================================================================ +09:34:04 + + +waiting on router queue for slot.... +09:34:04 ============================================================================ +09:34:04 Slot Id : <42> +09:34:04 Transaction Type : REQUEST +09:34:04 Received From : +09:34:04 ============================================================================ +09:34:04 FNo. Len. Field Value +09:34:04 ============================================================================ +09:34:04 [ 1] [ 4] [0200] +09:34:04 [ 2] [ 16] [6213541000646201] +09:34:04 [ 3] [ 6] [010000] +09:34:04 [ 4] [ 12] [000200000000] +09:34:04 [ 7] [ 10] [0320023312] +09:34:04 [ 11] [ 6] [267585] +09:34:04 [ 12] [ 6] [093312] +09:34:04 [ 13] [ 4] [0320] +09:34:04 [ 14] [ 4] [4912] +09:34:04 [ 15] [ 4] [0320] +09:34:04 [ 18] [ 4] [6011] +09:34:04 [ 19] [ 3] [418] +09:34:04 [ 22] [ 3] [021] +09:34:04 [ 25] [ 2] [01] +09:34:04 [ 28] [ 9] [D00002000] +09:34:04 [ 32] [ 6] [180893] +09:34:04 [ 35] [ 32] [6213541000646201=491212014620504] +09:34:04 [ 37] [ 12] [507902267585] +09:34:04 [ 41] [ 8] [0523XYNG] +09:34:04 [ 42] [ 15] [999999 ] +09:34:04 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:34:04 [ 49] [ 3] [418] +09:34:04 [ 52] [ 16] [756DBEF7787A3EE4] +09:34:04 ============================================================================ +09:34:04 + + +waiting on router queue for slot.... +09:34:04 Sending to : +09:34:04 ============================================================================ +09:34:04 Sending to : +09:34:04 ============================================================================ +09:34:04 ============================================================================ +09:34:04 Slot Id : <42> +09:34:04 Transaction Type : REQUEST +09:34:04 Received From : +09:34:04 ============================================================================ +09:34:04 FNo. Len. Field Value +09:34:04 ============================================================================ +09:34:04 [ 1] [ 4] [0200] +09:34:04 [ 2] [ 16] [6213541000646201] +09:34:04 [ 3] [ 6] [010000] +09:34:04 [ 4] [ 12] [000200000000] +09:34:04 [ 7] [ 10] [0320023312] +09:34:04 [ 11] [ 6] [267585] +09:34:04 [ 12] [ 6] [093312] +09:34:04 [ 13] [ 4] [0320] +09:34:04 [ 14] [ 4] [4912] +09:34:04 [ 15] [ 4] [0320] +09:34:04 [ 18] [ 4] [6011] +09:34:04 [ 19] [ 3] [418] +09:34:04 [ 22] [ 3] [021] +09:34:04 [ 25] [ 2] [01] +09:34:04 [ 28] [ 9] [D00002000] +09:34:04 [ 32] [ 6] [180893] +09:34:04 [ 35] [ 32] [6213541000646201=491212014620504] +09:34:04 [ 37] [ 12] [507902267585] +09:34:04 [ 41] [ 8] [0523XYNG] +09:34:04 [ 42] [ 15] [999999 ] +09:34:04 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:34:04 [ 49] [ 3] [418] +09:34:04 [ 52] [ 16] [756DBEF7787A3EE4] +09:34:04 ============================================================================ +09:34:04 + + +waiting on router queue for slot.... +09:34:04 Sending to : +09:34:04 ============================================================================ +09:34:05 ============================================================================ +09:34:05 Slot Id : <42> +09:34:05 Transaction Type : REQUEST +09:34:05 Received From : +09:34:05 ============================================================================ +09:34:05 FNo. Len. Field Value +09:34:05 ============================================================================ +09:34:05 [ 1] [ 4] [0200] +09:34:05 [ 2] [ 16] [6213541000646201] +09:34:05 [ 3] [ 6] [010000] +09:34:05 [ 4] [ 12] [000200000000] +09:34:05 [ 7] [ 10] [0320023312] +09:34:05 [ 11] [ 6] [267585] +09:34:05 [ 12] [ 6] [093312] +09:34:05 [ 13] [ 4] [0320] +09:34:05 [ 14] [ 4] [4912] +09:34:05 [ 15] [ 4] [0320] +09:34:05 [ 18] [ 4] [6011] +09:34:05 [ 19] [ 3] [418] +09:34:05 [ 22] [ 3] [021] +09:34:05 [ 25] [ 2] [01] +09:34:05 [ 28] [ 9] [D00002000] +09:34:05 [ 32] [ 6] [180893] +09:34:05 [ 35] [ 32] [6213541000646201=491212014620504] +09:34:05 [ 37] [ 12] [507902267585] +09:34:05 [ 41] [ 8] [0523XYNG] +09:34:05 [ 42] [ 15] [999999 ] +09:34:05 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:34:05 [ 49] [ 3] [418] +09:34:05 [ 52] [ 16] [0C2F06640D5A7025] +09:34:05 ============================================================================ +09:34:05 + + +waiting on router queue for slot.... +09:34:05 Sending to : <0> +09:34:05 ============================================================================ +09:34:06 ============================================================================ +09:34:06 Slot Id : <42> +09:34:06 Transaction Type : RESPONSE +09:34:06 Received From : +09:34:06 ============================================================================ +09:34:06 FNo. Len. Field Value +09:34:06 ============================================================================ +09:34:06 [ 1] [ 4] [0210] +09:34:06 [ 2] [ 16] [6213541000646201] +09:34:06 [ 3] [ 6] [010000] +09:34:06 [ 4] [ 12] [000200000000] +09:34:06 [ 7] [ 10] [0320023312] +09:34:06 [ 11] [ 6] [267585] +09:34:06 [ 12] [ 6] [093312] +09:34:06 [ 13] [ 4] [0320] +09:34:06 [ 15] [ 4] [0320] +09:34:06 [ 18] [ 4] [6011] +09:34:06 [ 19] [ 3] [418] +09:34:06 [ 22] [ 3] [021] +09:34:06 [ 32] [ 6] [180893] +09:34:06 [ 35] [ 32] [6213541000646201=491212014620504] +09:34:06 [ 37] [ 12] [507902267585] +09:34:06 [ 39] [ 2] [61] +09:34:06 [ 41] [ 8] [0523XYNG] +09:34:06 [ 49] [ 3] [418] +09:34:06 ============================================================================ +09:34:06 Sending to : +09:34:06 ============================================================================ +09:34:06 + + +waiting on router queue for slot.... +09:34:06 ============================================================================ +09:34:06 Slot Id : <42> +09:34:06 Transaction Type : RESPONSE +09:34:06 Received From : +09:34:06 ============================================================================ +09:34:06 FNo. Len. Field Value +09:34:06 ============================================================================ +09:34:06 [ 1] [ 4] [0210] +09:34:06 [ 2] [ 16] [6213541000646201] +09:34:06 [ 3] [ 6] [010000] +09:34:06 [ 4] [ 12] [000200000000] +09:34:06 [ 7] [ 10] [0320023312] +09:34:06 [ 11] [ 6] [267585] +09:34:06 [ 12] [ 6] [093312] +09:34:06 [ 13] [ 4] [0320] +09:34:06 [ 15] [ 4] [0320] +09:34:06 [ 18] [ 4] [6011] +09:34:06 [ 19] [ 3] [418] +09:34:06 [ 22] [ 3] [021] +09:34:06 [ 32] [ 6] [180893] +09:34:06 [ 35] [ 32] [6213541000646201=491212014620504] +09:34:06 [ 37] [ 12] [507902267585] +09:34:06 [ 39] [ 2] [61] +09:34:06 [ 41] [ 8] [0523XYNG] +09:34:06 [ 49] [ 3] [418] +09:34:06 ============================================================================ +09:34:06 Calculate Source COMM Id = 2 +09:34:06 ============================================================================ +09:34:06 + + +waiting on router queue for slot.... +09:34:07 ============================================================================ +09:34:07 Slot Id : <34> +09:34:07 Transaction Type : REQUEST +09:34:07 Received From : +09:34:07 ============================================================================ +09:34:07 FNo. Len. Field Value +09:34:07 ============================================================================ +09:34:07 [ 1] [ 4] [0800] +09:34:07 [ 2] [ 5] [02531] +09:34:07 [ 3] [ 6] [579098] +09:34:07 [ 7] [ 10] [0320023407] +09:34:07 [ 11] [ 6] [806967] +09:34:07 [ 15] [ 10] [0320023407] +09:34:07 [ 37] [ 11] [57909806967] +09:34:07 [ 70] [ 3] [001] +09:34:07 ============================================================================ +09:34:07 + + +waiting on router queue for slot.... +09:34:07 ============================================================================ +09:34:07 Slot Id : <34> +09:34:07 Transaction Type : RESPONSE +09:34:07 Received From : +09:34:07 ============================================================================ +09:34:07 FNo. Len. Field Value +09:34:07 ============================================================================ +09:34:07 [ 1] [ 4] [0810] +09:34:07 [ 7] [ 10] [0320023407] +09:34:07 [ 11] [ 6] [806967] +09:34:07 [ 15] [ 4] [0320] +09:34:07 [ 37] [ 12] [57909806967] +09:34:07 [ 39] [ 2] [00] +09:34:07 [ 70] [ 3] [001] +09:34:07 ============================================================================ +09:34:07 Sending to : +09:34:07 ============================================================================ +09:34:07 + + +waiting on router queue for slot.... +09:34:08 ============================================================================ +09:34:08 Slot Id : <86> +09:34:08 Transaction Type : REQUEST +09:34:08 Received From : +09:34:08 ============================================================================ +09:34:08 FNo. Len. Field Value +09:34:08 ============================================================================ +09:34:08 [ 1] [ 4] [0200] +09:34:08 [ 2] [ 16] [1808930600007553] +09:34:08 [ 3] [ 6] [010000] +09:34:08 [ 4] [ 12] [000040000000] +09:34:08 [ 7] [ 10] [0320093405] +09:34:08 [ 11] [ 6] [700373] +09:34:08 [ 12] [ 6] [093405] +09:34:08 [ 13] [ 4] [0320] +09:34:08 [ 15] [ 4] [0320] +09:34:08 [ 18] [ 4] [6011] +09:34:08 [ 22] [ 3] [900] +09:34:08 [ 25] [ 2] [02] +09:34:08 [ 28] [ 9] [D00002000] +09:34:08 [ 32] [ 6] [621354] +09:34:08 [ 35] [ 27] [1808930600007553=1803500265] +09:34:08 [ 37] [ 12] [507904423209] +09:34:08 [ 41] [ 8] [03004100] +09:34:08 [ 42] [ 15] [NATIVE ] +09:34:08 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +09:34:08 [ 49] [ 3] [418] +09:34:08 [ 52] [ 16] [73DAAEAE908E695A] +09:34:08 ============================================================================ +09:34:08 + + +waiting on router queue for slot.... +09:34:08 Sending to : +09:34:08 ============================================================================ +09:34:08 Sending to : +09:34:08 ============================================================================ +09:34:09 ============================================================================ +09:34:09 Slot Id : <86> +09:34:09 Transaction Type : REQUEST +09:34:09 Received From : +09:34:09 ============================================================================ +09:34:09 FNo. Len. Field Value +09:34:09 ============================================================================ +09:34:09 [ 1] [ 4] [0200] +09:34:09 [ 2] [ 16] [1808930600007553] +09:34:09 [ 3] [ 6] [010000] +09:34:09 [ 4] [ 12] [000040000000] +09:34:09 [ 7] [ 10] [0320093405] +09:34:09 [ 11] [ 6] [700373] +09:34:09 [ 12] [ 6] [093405] +09:34:09 [ 13] [ 4] [0320] +09:34:09 [ 15] [ 4] [0320] +09:34:09 [ 18] [ 4] [6011] +09:34:09 [ 22] [ 3] [900] +09:34:09 [ 25] [ 2] [02] +09:34:09 [ 28] [ 9] [D00002000] +09:34:09 [ 32] [ 6] [621354] +09:34:09 [ 35] [ 27] [1808930600007553=1803500265] +09:34:09 [ 37] [ 12] [507904423209] +09:34:09 [ 41] [ 8] [03004100] +09:34:09 [ 42] [ 15] [NATIVE ] +09:34:09 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +09:34:09 [ 49] [ 3] [418] +09:34:09 [ 52] [ 16] [73DAAEAE908E695A] +09:34:09 ============================================================================ +09:34:09 + + +waiting on router queue for slot.... +09:34:09 Sending to : +09:34:09 ============================================================================ +09:34:09 ============================================================================ +09:34:09 Slot Id : <86> +09:34:09 Transaction Type : REQUEST +09:34:09 Received From : +09:34:09 ============================================================================ +09:34:09 FNo. Len. Field Value +09:34:09 ============================================================================ +09:34:09 [ 1] [ 4] [0200] +09:34:09 [ 2] [ 16] [1808930600007553] +09:34:09 [ 3] [ 6] [010000] +09:34:09 [ 4] [ 12] [000040000000] +09:34:09 [ 7] [ 10] [0320093405] +09:34:09 [ 11] [ 6] [700373] +09:34:09 [ 12] [ 6] [093405] +09:34:09 [ 13] [ 4] [0320] +09:34:09 [ 15] [ 4] [0320] +09:34:09 [ 18] [ 4] [6011] +09:34:09 [ 22] [ 3] [900] +09:34:09 [ 25] [ 2] [02] +09:34:09 [ 28] [ 9] [D00002000] +09:34:09 [ 32] [ 6] [621354] +09:34:09 [ 35] [ 27] [1808930600007553=1803500265] +09:34:09 [ 37] [ 12] [507904423209] +09:34:09 [ 41] [ 8] [03004100] +09:34:09 [ 42] [ 15] [NATIVE ] +09:34:09 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +09:34:09 [ 49] [ 3] [418] +09:34:09 [ 52] [ 16] [C18C7057D5C2B751] +09:34:09 ============================================================================ +09:34:09 + + +waiting on router queue for slot.... +09:34:09 Sending to : <2> +09:34:09 ============================================================================ +09:34:12 ============================================================================ +09:34:12 Slot Id : <86> +09:34:12 Transaction Type : RESPONSE +09:34:12 Received From : +09:34:12 ============================================================================ +09:34:12 FNo. Len. Field Value +09:34:12 ============================================================================ +09:34:12 [ 1] [ 4] [0210] +09:34:12 [ 2] [ 16] [1808930600007553] +09:34:12 [ 3] [ 6] [010000] +09:34:12 [ 4] [ 12] [000040000000] +09:34:12 [ 6] [ 12] [000040000000] +09:34:12 [ 7] [ 10] [0320093405] +09:34:12 [ 11] [ 6] [700373] +09:34:12 [ 12] [ 6] [093405] +09:34:12 [ 13] [ 4] [0320] +09:34:12 [ 18] [ 4] [6011] +09:34:12 [ 19] [ 3] [418] +09:34:12 [ 22] [ 3] [021] +09:34:12 [ 32] [ 6] [621354] +09:34:12 [ 35] [ 27] [1808930600007553=1803500265] +09:34:12 [ 37] [ 12] [507904423209] +09:34:12 [ 38] [ 6] [700373] +09:34:12 [ 39] [ 2] [00] +09:34:12 [ 41] [ 8] [03004100] +09:34:12 [ 49] [ 3] [418] +09:34:12 [ 52] [ 16] [C18C7057D5C2B751] +09:34:12 [ 54] [ 20] [1001418C000035035100] +09:34:12 ============================================================================ +09:34:12 Sending to : +09:34:12 ============================================================================ +09:34:12 + + +waiting on router queue for slot.... +09:34:13 ============================================================================ +09:34:13 Slot Id : <86> +09:34:13 Transaction Type : RESPONSE +09:34:13 Received From : +09:34:13 ============================================================================ +09:34:13 FNo. Len. Field Value +09:34:13 ============================================================================ +09:34:13 [ 1] [ 4] [0210] +09:34:13 [ 2] [ 16] [1808930600007553] +09:34:13 [ 3] [ 6] [010000] +09:34:13 [ 4] [ 12] [000040000000] +09:34:13 [ 6] [ 12] [000040000000] +09:34:13 [ 7] [ 10] [0320093405] +09:34:13 [ 11] [ 6] [700373] +09:34:13 [ 12] [ 6] [093405] +09:34:13 [ 13] [ 4] [0320] +09:34:13 [ 18] [ 4] [6011] +09:34:13 [ 19] [ 3] [418] +09:34:13 [ 22] [ 3] [021] +09:34:13 [ 32] [ 6] [621354] +09:34:13 [ 35] [ 27] [1808930600007553=1803500265] +09:34:13 [ 37] [ 12] [507904423209] +09:34:13 [ 38] [ 6] [700373] +09:34:13 [ 39] [ 2] [00] +09:34:13 [ 41] [ 8] [03004100] +09:34:13 [ 49] [ 3] [418] +09:34:13 [ 52] [ 16] [C18C7057D5C2B751] +09:34:13 [ 54] [ 20] [1001418C000035035100] +09:34:13 ============================================================================ +09:34:13 Calculate Source COMM Id = 0 +09:34:13 ============================================================================ +09:34:13 + + +waiting on router queue for slot.... +09:34:19 ============================================================================ +09:34:19 Slot Id : <49> +09:34:19 Transaction Type : REQUEST +09:34:19 Received From : +09:34:19 ============================================================================ +09:34:19 FNo. Len. Field Value +09:34:19 ============================================================================ +09:34:19 [ 1] [ 4] [0800] +09:34:19 [ 7] [ 10] [0320164607] +09:34:19 [ 11] [ 6] [094607] +09:34:19 [ 37] [ 12] [57909094607] +09:34:19 [ 70] [ 3] [301] +09:34:19 ============================================================================ +09:34:19 + + +waiting on router queue for slot.... +09:34:19 Sending to : +09:34:19 ============================================================================ +09:34:19 ============================================================================ +09:34:19 Slot Id : <49> +09:34:19 Transaction Type : RESPONSE +09:34:19 Received From : +09:34:19 ============================================================================ +09:34:19 FNo. Len. Field Value +09:34:19 ============================================================================ +09:34:19 [ 1] [ 4] [0810] +09:34:19 [ 7] [ 10] [0320164607] +09:34:19 [ 11] [ 6] [094607] +09:34:19 [ 37] [ 12] [579090946070] +09:34:19 [ 39] [ 2] [00] +09:34:19 [ 70] [ 3] [810] +09:34:19 ============================================================================ +09:34:19 Calculate Source COMM Id = 6 +09:34:19 ============================================================================ +09:34:19 + + +waiting on router queue for slot.... +09:34:19 ============================================================================ +09:34:19 Slot Id : <88> +09:34:19 Transaction Type : REQUEST +09:34:19 Received From : +09:34:19 ============================================================================ +09:34:19 FNo. Len. Field Value +09:34:19 ============================================================================ +09:34:19 [ 1] [ 4] [0200] +09:34:19 [ 2] [ 16] [6213541000422488] +09:34:19 [ 3] [ 6] [302000] +09:34:19 [ 4] [ 12] [000000000000] +09:34:19 [ 7] [ 10] [0320093210] +09:34:19 [ 11] [ 6] [935968] +09:34:19 [ 12] [ 6] [093210] +09:34:19 [ 13] [ 4] [0320] +09:34:19 [ 15] [ 4] [0320] +09:34:19 [ 18] [ 4] [6011] +09:34:19 [ 19] [ 3] [418] +09:34:19 [ 22] [ 3] [021] +09:34:19 [ 25] [ 2] [01] +09:34:19 [ 28] [ 9] [D00000000] +09:34:19 [ 32] [ 6] [668899] +09:34:19 [ 35] [ 32] [6213541000422488=491212012248862] +09:34:19 [ 37] [ 12] [507901614444] +09:34:19 [ 41] [ 8] [03001007] +09:34:19 [ 42] [ 15] [APT ] +09:34:19 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:34:19 [ 49] [ 3] [418] +09:34:19 [ 52] [ 16] [5BC68D7FD1E0A5B2] +09:34:19 ============================================================================ +09:34:19 + + +waiting on router queue for slot.... +09:34:19 Sending to : +09:34:19 ============================================================================ +09:34:19 Sending to : +09:34:19 ============================================================================ +09:34:19 ============================================================================ +09:34:19 Slot Id : <88> +09:34:19 Transaction Type : REQUEST +09:34:19 Received From : +09:34:19 ============================================================================ +09:34:19 FNo. Len. Field Value +09:34:19 ============================================================================ +09:34:19 [ 1] [ 4] [0200] +09:34:19 [ 2] [ 16] [6213541000422488] +09:34:19 [ 3] [ 6] [302000] +09:34:19 [ 4] [ 12] [000000000000] +09:34:19 [ 7] [ 10] [0320093210] +09:34:19 [ 11] [ 6] [935968] +09:34:19 [ 12] [ 6] [093210] +09:34:19 [ 13] [ 4] [0320] +09:34:19 [ 15] [ 4] [0320] +09:34:19 [ 18] [ 4] [6011] +09:34:19 [ 19] [ 3] [418] +09:34:19 [ 22] [ 3] [021] +09:34:19 [ 25] [ 2] [01] +09:34:19 [ 28] [ 9] [D00000000] +09:34:19 [ 32] [ 6] [668899] +09:34:19 [ 35] [ 32] [6213541000422488=491212012248862] +09:34:19 [ 37] [ 12] [507901614444] +09:34:19 [ 41] [ 8] [03001007] +09:34:19 [ 42] [ 15] [APT ] +09:34:19 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:34:19 [ 49] [ 3] [418] +09:34:19 [ 52] [ 16] [5BC68D7FD1E0A5B2] +09:34:19 ============================================================================ +09:34:19 + + +waiting on router queue for slot.... +09:34:19 Sending to : +09:34:19 ============================================================================ +09:34:19 ============================================================================ +09:34:19 Slot Id : <88> +09:34:19 Transaction Type : REQUEST +09:34:19 Received From : +09:34:19 ============================================================================ +09:34:19 FNo. Len. Field Value +09:34:19 ============================================================================ +09:34:19 [ 1] [ 4] [0200] +09:34:19 [ 2] [ 16] [6213541000422488] +09:34:19 [ 3] [ 6] [302000] +09:34:19 [ 4] [ 12] [000000000000] +09:34:19 [ 7] [ 10] [0320093210] +09:34:19 [ 11] [ 6] [935968] +09:34:19 [ 12] [ 6] [093210] +09:34:19 [ 13] [ 4] [0320] +09:34:19 [ 15] [ 4] [0320] +09:34:19 [ 18] [ 4] [6011] +09:34:19 [ 19] [ 3] [418] +09:34:19 [ 22] [ 3] [021] +09:34:19 [ 25] [ 2] [01] +09:34:19 [ 28] [ 9] [D00000000] +09:34:19 [ 32] [ 6] [668899] +09:34:19 [ 35] [ 32] [6213541000422488=491212012248862] +09:34:19 [ 37] [ 12] [507901614444] +09:34:19 [ 41] [ 8] [03001007] +09:34:19 [ 42] [ 15] [APT ] +09:34:19 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:34:19 [ 49] [ 3] [418] +09:34:19 [ 52] [ 16] [22DACCCC0A12FCEF] +09:34:19 ============================================================================ +09:34:19 + + +waiting on router queue for slot.... +09:34:19 Sending to : <0> +09:34:19 ============================================================================ +09:34:20 ============================================================================ +09:34:20 Slot Id : <88> +09:34:20 Transaction Type : RESPONSE +09:34:20 Received From : +09:34:20 ============================================================================ +09:34:20 FNo. Len. Field Value +09:34:20 ============================================================================ +09:34:20 [ 1] [ 4] [0210] +09:34:20 [ 2] [ 16] [6213541000422488] +09:34:20 [ 3] [ 6] [302000] +09:34:20 [ 4] [ 12] [000000000000] +09:34:20 [ 7] [ 10] [0320093210] +09:34:20 [ 11] [ 6] [935968] +09:34:20 [ 12] [ 6] [093210] +09:34:20 [ 13] [ 4] [0320] +09:34:20 [ 15] [ 4] [0320] +09:34:20 [ 18] [ 4] [6011] +09:34:20 [ 19] [ 3] [418] +09:34:20 [ 32] [ 6] [668899] +09:34:20 [ 35] [ 32] [6213541000422488=491212012248862] +09:34:20 [ 37] [ 12] [507901614444] +09:34:20 [ 38] [ 6] [910787] +09:34:20 [ 39] [ 2] [00] +09:34:20 [ 41] [ 8] [03001007] +09:34:20 [ 49] [ 3] [418] +09:34:20 [ 54] [ 40] [2001418C0055029317942002418C005502931794] +09:34:20 ============================================================================ +09:34:20 Sending to : +09:34:20 ============================================================================ +09:34:20 + + +waiting on router queue for slot.... +09:34:20 ============================================================================ +09:34:20 Slot Id : <89> +09:34:20 Transaction Type : REQUEST +09:34:20 Received From : +09:34:20 ============================================================================ +09:34:20 FNo. Len. Field Value +09:34:20 ============================================================================ +09:34:20 [ 1] [ 4] [0800] +09:34:20 [ 7] [ 10] [0320023328] +09:34:20 [ 11] [ 6] [155659] +09:34:20 [ 70] [ 3] [301] +09:34:20 ============================================================================ +09:34:20 + + +waiting on router queue for slot.... +09:34:20 Sending to : +09:34:20 ============================================================================ +09:34:20 ============================================================================ +09:34:20 Slot Id : <89> +09:34:20 Transaction Type : RESPONSE +09:34:20 Received From : +09:34:20 ============================================================================ +09:34:20 FNo. Len. Field Value +09:34:20 ============================================================================ +09:34:20 [ 1] [ 4] [0810] +09:34:20 [ 7] [ 10] [0320023328] +09:34:20 [ 11] [ 6] [155659] +09:34:20 [ 39] [ 2] [00] +09:34:20 [ 70] [ 3] [301] +09:34:20 ============================================================================ +09:34:20 Calculate Source COMM Id = 2 +09:34:20 ============================================================================ +09:34:20 + + +waiting on router queue for slot.... +09:34:21 ============================================================================ +09:34:21 Slot Id : <88> +09:34:21 Transaction Type : RESPONSE +09:34:21 Received From : +09:34:21 ============================================================================ +09:34:21 FNo. Len. Field Value +09:34:21 ============================================================================ +09:34:21 [ 1] [ 4] [0210] +09:34:21 [ 2] [ 16] [6213541000422488] +09:34:21 [ 3] [ 6] [302000] +09:34:21 [ 4] [ 12] [000000000000] +09:34:21 [ 7] [ 10] [0320093210] +09:34:21 [ 11] [ 6] [935968] +09:34:21 [ 12] [ 6] [093210] +09:34:21 [ 13] [ 4] [0320] +09:34:21 [ 15] [ 4] [0320] +09:34:21 [ 18] [ 4] [6011] +09:34:21 [ 19] [ 3] [418] +09:34:21 [ 32] [ 6] [668899] +09:34:21 [ 35] [ 32] [6213541000422488=491212012248862] +09:34:21 [ 37] [ 12] [507901614444] +09:34:21 [ 38] [ 6] [910787] +09:34:21 [ 39] [ 2] [00] +09:34:21 [ 41] [ 8] [03001007] +09:34:21 [ 49] [ 3] [418] +09:34:21 [ 54] [ 40] [2001418C0055029317942002418C005502931794] +09:34:21 ============================================================================ +09:34:21 Calculate Source COMM Id = 4 +09:34:21 ============================================================================ +09:34:21 + + +waiting on router queue for slot.... +09:34:23 ============================================================================ +09:34:23 Slot Id : <59> +09:34:23 Transaction Type : REQUEST +09:34:23 Received From : +09:34:23 ============================================================================ +09:34:23 FNo. Len. Field Value +09:34:23 ============================================================================ +09:34:23 [ 1] [ 4] [0200] +09:34:23 [ 2] [ 16] [6688990107899708] +09:34:23 [ 3] [ 6] [010000] +09:34:23 [ 4] [ 12] [000010000000] +09:34:23 [ 7] [ 10] [0320023330] +09:34:23 [ 11] [ 6] [267591] +09:34:23 [ 12] [ 6] [093330] +09:34:23 [ 13] [ 4] [0320] +09:34:23 [ 14] [ 4] [4404] +09:34:23 [ 15] [ 4] [0320] +09:34:23 [ 18] [ 4] [6011] +09:34:23 [ 19] [ 3] [418] +09:34:23 [ 22] [ 3] [021] +09:34:23 [ 25] [ 2] [01] +09:34:23 [ 28] [ 9] [D00002000] +09:34:23 [ 32] [ 6] [180893] +09:34:23 [ 35] [ 37] [6688990107899708=44041231970806900000] +09:34:23 [ 37] [ 12] [507902267591] +09:34:23 [ 41] [ 8] [0467PSLK] +09:34:23 [ 42] [ 15] [999999 ] +09:34:23 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +09:34:23 [ 49] [ 3] [418] +09:34:23 [ 52] [ 16] [7A2F6B3576AAB223] +09:34:23 ============================================================================ +09:34:23 + + +waiting on router queue for slot.... +09:34:23 Sending to : +09:34:23 ============================================================================ +09:34:23 Sending to : +09:34:23 ============================================================================ +09:34:23 ============================================================================ +09:34:23 Slot Id : <59> +09:34:23 Transaction Type : REQUEST +09:34:23 Received From : +09:34:23 ============================================================================ +09:34:23 FNo. Len. Field Value +09:34:23 ============================================================================ +09:34:23 [ 1] [ 4] [0200] +09:34:23 [ 2] [ 16] [6688990107899708] +09:34:23 [ 3] [ 6] [010000] +09:34:23 [ 4] [ 12] [000010000000] +09:34:23 [ 7] [ 10] [0320023330] +09:34:23 [ 11] [ 6] [267591] +09:34:23 [ 12] [ 6] [093330] +09:34:23 [ 13] [ 4] [0320] +09:34:23 [ 14] [ 4] [4404] +09:34:23 [ 15] [ 4] [0320] +09:34:23 [ 18] [ 4] [6011] +09:34:23 [ 19] [ 3] [418] +09:34:23 [ 22] [ 3] [021] +09:34:23 [ 25] [ 2] [01] +09:34:23 [ 28] [ 9] [D00002000] +09:34:23 [ 32] [ 6] [180893] +09:34:23 [ 35] [ 37] [6688990107899708=44041231970806900000] +09:34:23 [ 37] [ 12] [507902267591] +09:34:23 [ 41] [ 8] [0467PSLK] +09:34:23 [ 42] [ 15] [999999 ] +09:34:23 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +09:34:23 [ 49] [ 3] [418] +09:34:23 [ 52] [ 16] [7A2F6B3576AAB223] +09:34:23 ============================================================================ +09:34:23 + + +waiting on router queue for slot.... +09:34:23 Sending to : +09:34:23 ============================================================================ +09:34:23 ============================================================================ +09:34:23 Slot Id : <59> +09:34:23 Transaction Type : REQUEST +09:34:23 Received From : +09:34:23 ============================================================================ +09:34:23 FNo. Len. Field Value +09:34:23 ============================================================================ +09:34:23 [ 1] [ 4] [0200] +09:34:23 [ 2] [ 16] [6688990107899708] +09:34:23 [ 3] [ 6] [010000] +09:34:23 [ 4] [ 12] [000010000000] +09:34:23 [ 7] [ 10] [0320023330] +09:34:23 [ 11] [ 6] [267591] +09:34:23 [ 12] [ 6] [093330] +09:34:23 [ 13] [ 4] [0320] +09:34:23 [ 14] [ 4] [4404] +09:34:23 [ 15] [ 4] [0320] +09:34:23 [ 18] [ 4] [6011] +09:34:23 [ 19] [ 3] [418] +09:34:23 [ 22] [ 3] [021] +09:34:23 [ 25] [ 2] [01] +09:34:23 [ 28] [ 9] [D00002000] +09:34:23 [ 32] [ 6] [180893] +09:34:23 [ 35] [ 37] [6688990107899708=44041231970806900000] +09:34:23 [ 37] [ 12] [507902267591] +09:34:23 [ 41] [ 8] [0467PSLK] +09:34:23 [ 42] [ 15] [999999 ] +09:34:23 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +09:34:23 [ 49] [ 3] [418] +09:34:23 [ 52] [ 16] [31215B915E0AD8E8] +09:34:23 ============================================================================ +09:34:23 + + +waiting on router queue for slot.... +09:34:23 Sending to : <0> +09:34:23 ============================================================================ +09:34:24 ============================================================================ +09:34:24 Slot Id : <59> +09:34:24 Transaction Type : RESPONSE +09:34:24 Received From : +09:34:24 ============================================================================ +09:34:24 FNo. Len. Field Value +09:34:24 ============================================================================ +09:34:24 [ 1] [ 4] [0210] +09:34:24 [ 2] [ 16] [6688990107899708] +09:34:24 [ 3] [ 6] [010000] +09:34:24 [ 4] [ 12] [000010000000] +09:34:24 [ 7] [ 10] [0320023330] +09:34:24 [ 11] [ 6] [267591] +09:34:24 [ 12] [ 6] [093330] +09:34:24 [ 13] [ 4] [0320] +09:34:24 [ 15] [ 4] [0320] +09:34:24 [ 18] [ 4] [6011] +09:34:24 [ 19] [ 3] [418] +09:34:24 [ 22] [ 3] [021] +09:34:24 [ 32] [ 6] [180893] +09:34:24 [ 35] [ 37] [6688990107899708=44041231970806900000] +09:34:24 [ 37] [ 12] [507902267591] +09:34:24 [ 39] [ 2] [14] +09:34:24 [ 41] [ 8] [0467PSLK] +09:34:24 [ 49] [ 3] [418] +09:34:24 ============================================================================ +09:34:24 Sending to : +09:34:24 ============================================================================ +09:34:24 + + +waiting on router queue for slot.... +09:34:25 ============================================================================ +09:34:25 Slot Id : <59> +09:34:25 Transaction Type : RESPONSE +09:34:25 Received From : +09:34:25 ============================================================================ +09:34:25 FNo. Len. Field Value +09:34:25 ============================================================================ +09:34:25 [ 1] [ 4] [0210] +09:34:25 [ 2] [ 16] [6688990107899708] +09:34:25 [ 3] [ 6] [010000] +09:34:25 [ 4] [ 12] [000010000000] +09:34:25 [ 7] [ 10] [0320023330] +09:34:25 [ 11] [ 6] [267591] +09:34:25 [ 12] [ 6] [093330] +09:34:25 [ 13] [ 4] [0320] +09:34:25 [ 15] [ 4] [0320] +09:34:25 [ 18] [ 4] [6011] +09:34:25 [ 19] [ 3] [418] +09:34:25 [ 22] [ 3] [021] +09:34:25 [ 32] [ 6] [180893] +09:34:25 [ 35] [ 37] [6688990107899708=44041231970806900000] +09:34:25 [ 37] [ 12] [507902267591] +09:34:25 [ 39] [ 2] [14] +09:34:25 [ 41] [ 8] [0467PSLK] +09:34:25 [ 49] [ 3] [418] +09:34:25 ============================================================================ +09:34:25 Calculate Source COMM Id = 2 +09:34:25 ============================================================================ +09:34:25 + + +waiting on router queue for slot.... +09:34:26 ============================================================================ +09:34:26 Slot Id : <5> +09:34:26 Transaction Type : REQUEST +09:34:26 Received From : +09:34:26 ============================================================================ +09:34:26 FNo. Len. Field Value +09:34:26 ============================================================================ +09:34:26 [ 1] [ 4] [0200] +09:34:26 [ 2] [ 16] [6213544000166816] +09:34:26 [ 3] [ 6] [301000] +09:34:26 [ 7] [ 10] [0320023333] +09:34:26 [ 11] [ 6] [267592] +09:34:26 [ 12] [ 6] [093333] +09:34:26 [ 13] [ 4] [0320] +09:34:26 [ 14] [ 4] [4912] +09:34:26 [ 15] [ 4] [0320] +09:34:26 [ 18] [ 4] [6011] +09:34:26 [ 19] [ 3] [418] +09:34:26 [ 22] [ 3] [021] +09:34:26 [ 25] [ 2] [01] +09:34:26 [ 32] [ 6] [180893] +09:34:26 [ 35] [ 32] [6213544000166816=491212016681855] +09:34:26 [ 37] [ 12] [507902267592] +09:34:26 [ 41] [ 8] [0401XSBR] +09:34:26 [ 42] [ 15] [999999 ] +09:34:26 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:34:26 [ 49] [ 3] [418] +09:34:26 [ 52] [ 16] [16C8B15A40FED093] +09:34:26 ============================================================================ +09:34:26 + + +waiting on router queue for slot.... +09:34:26 Sending to : +09:34:26 ============================================================================ +09:34:26 Sending to : +09:34:26 ============================================================================ +09:34:26 ============================================================================ +09:34:26 Slot Id : <5> +09:34:26 Transaction Type : REQUEST +09:34:26 Received From : +09:34:26 ============================================================================ +09:34:26 FNo. Len. Field Value +09:34:26 ============================================================================ +09:34:26 [ 1] [ 4] [0200] +09:34:26 [ 2] [ 16] [6213544000166816] +09:34:26 [ 3] [ 6] [301000] +09:34:26 [ 7] [ 10] [0320023333] +09:34:26 [ 11] [ 6] [267592] +09:34:26 [ 12] [ 6] [093333] +09:34:26 [ 13] [ 4] [0320] +09:34:26 [ 14] [ 4] [4912] +09:34:26 [ 15] [ 4] [0320] +09:34:26 [ 18] [ 4] [6011] +09:34:26 [ 19] [ 3] [418] +09:34:26 [ 22] [ 3] [021] +09:34:26 [ 25] [ 2] [01] +09:34:26 [ 32] [ 6] [180893] +09:34:26 [ 35] [ 32] [6213544000166816=491212016681855] +09:34:26 [ 37] [ 12] [507902267592] +09:34:26 [ 41] [ 8] [0401XSBR] +09:34:26 [ 42] [ 15] [999999 ] +09:34:26 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:34:26 [ 49] [ 3] [418] +09:34:26 [ 52] [ 16] [16C8B15A40FED093] +09:34:26 ============================================================================ +09:34:26 + + +waiting on router queue for slot.... +09:34:26 Sending to : +09:34:26 ============================================================================ +09:34:26 ============================================================================ +09:34:26 Slot Id : <5> +09:34:26 Transaction Type : REQUEST +09:34:26 Received From : +09:34:26 ============================================================================ +09:34:26 FNo. Len. Field Value +09:34:26 ============================================================================ +09:34:26 [ 1] [ 4] [0200] +09:34:26 [ 2] [ 16] [6213544000166816] +09:34:26 [ 3] [ 6] [301000] +09:34:26 [ 7] [ 10] [0320023333] +09:34:26 [ 11] [ 6] [267592] +09:34:26 [ 12] [ 6] [093333] +09:34:26 [ 13] [ 4] [0320] +09:34:26 [ 14] [ 4] [4912] +09:34:26 [ 15] [ 4] [0320] +09:34:26 [ 18] [ 4] [6011] +09:34:26 [ 19] [ 3] [418] +09:34:26 [ 22] [ 3] [021] +09:34:26 [ 25] [ 2] [01] +09:34:26 [ 32] [ 6] [180893] +09:34:26 [ 35] [ 32] [6213544000166816=491212016681855] +09:34:26 [ 37] [ 12] [507902267592] +09:34:26 [ 41] [ 8] [0401XSBR] +09:34:26 [ 42] [ 15] [999999 ] +09:34:26 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:34:26 [ 49] [ 3] [418] +09:34:26 [ 52] [ 16] [D8D25E1CA368E96E] +09:34:26 ============================================================================ +09:34:26 + + +waiting on router queue for slot.... +09:34:26 Sending to : <0> +09:34:26 ============================================================================ +09:34:28 ============================================================================ +09:34:28 Slot Id : <5> +09:34:28 Transaction Type : RESPONSE +09:34:28 Received From : +09:34:28 ============================================================================ +09:34:28 FNo. Len. Field Value +09:34:28 ============================================================================ +09:34:28 [ 1] [ 4] [0210] +09:34:28 [ 2] [ 16] [6213544000166816] +09:34:28 [ 3] [ 6] [301000] +09:34:28 [ 4] [ 12] [000000000000] +09:34:28 [ 7] [ 10] [0320023333] +09:34:28 [ 11] [ 6] [267592] +09:34:28 [ 12] [ 6] [093333] +09:34:28 [ 13] [ 4] [0320] +09:34:28 [ 15] [ 4] [0320] +09:34:28 [ 18] [ 4] [6011] +09:34:28 [ 19] [ 3] [418] +09:34:28 [ 32] [ 6] [180893] +09:34:28 [ 35] [ 32] [6213544000166816=491212016681855] +09:34:28 [ 37] [ 12] [507902267592] +09:34:28 [ 38] [ 6] [934523] +09:34:28 [ 39] [ 2] [00] +09:34:28 [ 41] [ 8] [0401XSBR] +09:34:28 [ 49] [ 3] [418] +09:34:28 [ 54] [ 40] [1001418C0001465535271002418C000146553527] +09:34:28 ============================================================================ +09:34:28 Sending to : +09:34:28 ============================================================================ +09:34:28 + + +waiting on router queue for slot.... +09:34:28 ============================================================================ +09:34:28 Slot Id : <79> +09:34:28 Transaction Type : REQUEST +09:34:28 Received From : +09:34:28 ============================================================================ +09:34:28 FNo. Len. Field Value +09:34:28 ============================================================================ +09:34:28 [ 1] [ 4] [0200] +09:34:28 [ 2] [ 16] [6213545001108848] +09:34:28 [ 3] [ 6] [010000] +09:34:28 [ 4] [ 12] [000100000000] +09:34:28 [ 7] [ 10] [0320023334] +09:34:28 [ 11] [ 6] [267593] +09:34:28 [ 12] [ 6] [093334] +09:34:28 [ 13] [ 4] [0320] +09:34:28 [ 14] [ 4] [4912] +09:34:28 [ 15] [ 4] [0320] +09:34:28 [ 18] [ 4] [6011] +09:34:28 [ 19] [ 3] [418] +09:34:28 [ 22] [ 3] [021] +09:34:28 [ 25] [ 2] [01] +09:34:28 [ 28] [ 9] [D00002000] +09:34:28 [ 32] [ 6] [180893] +09:34:28 [ 35] [ 32] [6213545001108848=491212010884066] +09:34:28 [ 37] [ 12] [507902267593] +09:34:28 [ 41] [ 8] [0221XKKM] +09:34:28 [ 42] [ 15] [999999 ] +09:34:28 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:34:28 [ 49] [ 3] [418] +09:34:28 [ 52] [ 16] [2FF7E970074030F1] +09:34:28 ============================================================================ +09:34:28 + + +waiting on router queue for slot.... +09:34:28 Sending to : +09:34:28 ============================================================================ +09:34:28 Sending to : +09:34:28 ============================================================================ +09:34:28 ============================================================================ +09:34:28 Slot Id : <79> +09:34:28 Transaction Type : REQUEST +09:34:28 Received From : +09:34:28 ============================================================================ +09:34:28 FNo. Len. Field Value +09:34:28 ============================================================================ +09:34:28 [ 1] [ 4] [0200] +09:34:28 [ 2] [ 16] [6213545001108848] +09:34:28 [ 3] [ 6] [010000] +09:34:28 [ 4] [ 12] [000100000000] +09:34:28 [ 7] [ 10] [0320023334] +09:34:28 [ 11] [ 6] [267593] +09:34:28 [ 12] [ 6] [093334] +09:34:28 [ 13] [ 4] [0320] +09:34:28 [ 14] [ 4] [4912] +09:34:28 [ 15] [ 4] [0320] +09:34:28 [ 18] [ 4] [6011] +09:34:28 [ 19] [ 3] [418] +09:34:28 [ 22] [ 3] [021] +09:34:28 [ 25] [ 2] [01] +09:34:28 [ 28] [ 9] [D00002000] +09:34:28 [ 32] [ 6] [180893] +09:34:28 [ 35] [ 32] [6213545001108848=491212010884066] +09:34:28 [ 37] [ 12] [507902267593] +09:34:28 [ 41] [ 8] [0221XKKM] +09:34:28 [ 42] [ 15] [999999 ] +09:34:28 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:34:28 [ 49] [ 3] [418] +09:34:28 [ 52] [ 16] [2FF7E970074030F1] +09:34:28 ============================================================================ +09:34:28 + + +waiting on router queue for slot.... +09:34:28 Sending to : +09:34:28 ============================================================================ +09:34:28 ============================================================================ +09:34:28 Slot Id : <79> +09:34:28 Transaction Type : REQUEST +09:34:28 Received From : +09:34:28 ============================================================================ +09:34:28 FNo. Len. Field Value +09:34:28 ============================================================================ +09:34:28 [ 1] [ 4] [0200] +09:34:28 [ 2] [ 16] [6213545001108848] +09:34:28 [ 3] [ 6] [010000] +09:34:28 [ 4] [ 12] [000100000000] +09:34:28 [ 7] [ 10] [0320023334] +09:34:28 [ 11] [ 6] [267593] +09:34:28 [ 12] [ 6] [093334] +09:34:28 [ 13] [ 4] [0320] +09:34:28 [ 14] [ 4] [4912] +09:34:28 [ 15] [ 4] [0320] +09:34:28 [ 18] [ 4] [6011] +09:34:28 [ 19] [ 3] [418] +09:34:28 [ 22] [ 3] [021] +09:34:28 [ 25] [ 2] [01] +09:34:28 [ 28] [ 9] [D00002000] +09:34:28 [ 32] [ 6] [180893] +09:34:28 [ 35] [ 32] [6213545001108848=491212010884066] +09:34:28 [ 37] [ 12] [507902267593] +09:34:28 [ 41] [ 8] [0221XKKM] +09:34:28 [ 42] [ 15] [999999 ] +09:34:28 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:34:28 [ 49] [ 3] [418] +09:34:28 [ 52] [ 16] [171E6442C88DAB4B] +09:34:28 ============================================================================ +09:34:28 + + +waiting on router queue for slot.... +09:34:28 Sending to : <0> +09:34:28 ============================================================================ +09:34:29 ============================================================================ +09:34:29 Slot Id : <79> +09:34:29 Transaction Type : RESPONSE +09:34:29 Received From : +09:34:29 ============================================================================ +09:34:29 FNo. Len. Field Value +09:34:29 ============================================================================ +09:34:29 [ 1] [ 4] [0210] +09:34:29 [ 2] [ 16] [6213545001108848] +09:34:29 [ 3] [ 6] [010000] +09:34:29 [ 4] [ 12] [000100000000] +09:34:29 [ 7] [ 10] [0320023334] +09:34:29 [ 11] [ 6] [267593] +09:34:29 [ 12] [ 6] [093334] +09:34:29 [ 13] [ 4] [0320] +09:34:29 [ 15] [ 4] [0320] +09:34:29 [ 18] [ 4] [6011] +09:34:29 [ 19] [ 3] [418] +09:34:29 [ 32] [ 6] [180893] +09:34:29 [ 35] [ 32] [6213545001108848=491212010884066] +09:34:29 [ 37] [ 12] [507902267593] +09:34:29 [ 38] [ 6] [987892] +09:34:29 [ 39] [ 2] [00] +09:34:29 [ 41] [ 8] [0221XKKM] +09:34:29 [ 49] [ 3] [418] +09:34:29 [ 54] [ 40] [0001418C0002151420000002418C000215142000] +09:34:29 ============================================================================ +09:34:29 Sending to : +09:34:29 ============================================================================ +09:34:29 + + +waiting on router queue for slot.... +09:34:30 ============================================================================ +09:34:30 Slot Id : <5> +09:34:30 Transaction Type : RESPONSE +09:34:30 Received From : +09:34:30 ============================================================================ +09:34:30 FNo. Len. Field Value +09:34:30 ============================================================================ +09:34:30 [ 1] [ 4] [0210] +09:34:30 [ 2] [ 16] [6213544000166816] +09:34:30 [ 3] [ 6] [301000] +09:34:30 [ 4] [ 12] [000000000000] +09:34:30 [ 7] [ 10] [0320023333] +09:34:30 [ 11] [ 6] [267592] +09:34:30 [ 12] [ 6] [093333] +09:34:30 [ 13] [ 4] [0320] +09:34:30 [ 15] [ 4] [0320] +09:34:30 [ 18] [ 4] [6011] +09:34:30 [ 19] [ 3] [418] +09:34:30 [ 32] [ 6] [180893] +09:34:30 [ 35] [ 32] [6213544000166816=491212016681855] +09:34:30 [ 37] [ 12] [507902267592] +09:34:30 [ 38] [ 6] [934523] +09:34:30 [ 39] [ 2] [00] +09:34:30 [ 41] [ 8] [0401XSBR] +09:34:30 [ 49] [ 3] [418] +09:34:30 [ 54] [ 40] [1001418C0001465535271002418C000146553527] +09:34:30 ============================================================================ +09:34:30 Calculate Source COMM Id = 2 +09:34:30 ============================================================================ +09:34:30 + + +waiting on router queue for slot.... +09:34:31 ============================================================================ +09:34:31 Slot Id : <79> +09:34:31 Transaction Type : RESPONSE +09:34:31 Received From : +09:34:31 ============================================================================ +09:34:31 FNo. Len. Field Value +09:34:31 ============================================================================ +09:34:31 [ 1] [ 4] [0210] +09:34:31 [ 2] [ 16] [6213545001108848] +09:34:31 [ 3] [ 6] [010000] +09:34:31 [ 4] [ 12] [000100000000] +09:34:31 [ 7] [ 10] [0320023334] +09:34:31 [ 11] [ 6] [267593] +09:34:31 [ 12] [ 6] [093334] +09:34:31 [ 13] [ 4] [0320] +09:34:31 [ 15] [ 4] [0320] +09:34:31 [ 18] [ 4] [6011] +09:34:31 [ 19] [ 3] [418] +09:34:31 [ 32] [ 6] [180893] +09:34:31 [ 35] [ 32] [6213545001108848=491212010884066] +09:34:31 [ 37] [ 12] [507902267593] +09:34:31 [ 38] [ 6] [987892] +09:34:31 [ 39] [ 2] [00] +09:34:31 [ 41] [ 8] [0221XKKM] +09:34:31 [ 49] [ 3] [418] +09:34:31 [ 54] [ 40] [0001418C0002151420000002418C000215142000] +09:34:31 ============================================================================ +09:34:31 Calculate Source COMM Id = 2 +09:34:31 ============================================================================ +09:34:31 + + +waiting on router queue for slot.... +09:34:40 ============================================================================ +09:34:40 Slot Id : <67> +09:34:40 Transaction Type : REQUEST +09:34:40 Received From : +09:34:40 ============================================================================ +09:34:40 FNo. Len. Field Value +09:34:40 ============================================================================ +09:34:40 [ 1] [ 4] [0200] +09:34:40 [ 2] [ 16] [6213545000095616] +09:34:40 [ 3] [ 6] [010000] +09:34:40 [ 4] [ 12] [000200000000] +09:34:40 [ 7] [ 10] [0320023347] +09:34:40 [ 11] [ 6] [267595] +09:34:40 [ 12] [ 6] [093347] +09:34:40 [ 13] [ 4] [0320] +09:34:40 [ 14] [ 4] [4912] +09:34:40 [ 15] [ 4] [0320] +09:34:40 [ 18] [ 4] [6011] +09:34:40 [ 19] [ 3] [418] +09:34:40 [ 22] [ 3] [021] +09:34:40 [ 25] [ 2] [01] +09:34:40 [ 28] [ 9] [D00002000] +09:34:40 [ 32] [ 6] [180893] +09:34:40 [ 35] [ 32] [6213545000095616=491212019561240] +09:34:40 [ 37] [ 12] [507902267595] +09:34:40 [ 41] [ 8] [0112CPBR] +09:34:40 [ 42] [ 15] [999999 ] +09:34:40 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:34:40 [ 49] [ 3] [418] +09:34:40 [ 52] [ 16] [6A7AA8CDB283ED13] +09:34:40 ============================================================================ +09:34:40 + + +waiting on router queue for slot.... +09:34:40 Sending to : +09:34:40 ============================================================================ +09:34:40 Sending to : +09:34:40 ============================================================================ +09:34:41 ============================================================================ +09:34:41 Slot Id : <67> +09:34:41 Transaction Type : REQUEST +09:34:41 Received From : +09:34:41 ============================================================================ +09:34:41 FNo. Len. Field Value +09:34:41 ============================================================================ +09:34:41 [ 1] [ 4] [0200] +09:34:41 [ 2] [ 16] [6213545000095616] +09:34:41 [ 3] [ 6] [010000] +09:34:41 [ 4] [ 12] [000200000000] +09:34:41 [ 7] [ 10] [0320023347] +09:34:41 [ 11] [ 6] [267595] +09:34:41 [ 12] [ 6] [093347] +09:34:41 [ 13] [ 4] [0320] +09:34:41 [ 14] [ 4] [4912] +09:34:41 [ 15] [ 4] [0320] +09:34:41 [ 18] [ 4] [6011] +09:34:41 [ 19] [ 3] [418] +09:34:41 [ 22] [ 3] [021] +09:34:41 [ 25] [ 2] [01] +09:34:41 [ 28] [ 9] [D00002000] +09:34:41 [ 32] [ 6] [180893] +09:34:41 [ 35] [ 32] [6213545000095616=491212019561240] +09:34:41 [ 37] [ 12] [507902267595] +09:34:41 [ 41] [ 8] [0112CPBR] +09:34:41 [ 42] [ 15] [999999 ] +09:34:41 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:34:41 [ 49] [ 3] [418] +09:34:41 [ 52] [ 16] [6A7AA8CDB283ED13] +09:34:41 ============================================================================ +09:34:41 + + +waiting on router queue for slot.... +09:34:41 Sending to : +09:34:41 ============================================================================ +09:34:41 ============================================================================ +09:34:41 Slot Id : <67> +09:34:41 Transaction Type : REQUEST +09:34:41 Received From : +09:34:41 ============================================================================ +09:34:41 FNo. Len. Field Value +09:34:41 ============================================================================ +09:34:41 [ 1] [ 4] [0200] +09:34:41 [ 2] [ 16] [6213545000095616] +09:34:41 [ 3] [ 6] [010000] +09:34:41 [ 4] [ 12] [000200000000] +09:34:41 [ 7] [ 10] [0320023347] +09:34:41 [ 11] [ 6] [267595] +09:34:41 [ 12] [ 6] [093347] +09:34:41 [ 13] [ 4] [0320] +09:34:41 [ 14] [ 4] [4912] +09:34:41 [ 15] [ 4] [0320] +09:34:41 [ 18] [ 4] [6011] +09:34:41 [ 19] [ 3] [418] +09:34:41 [ 22] [ 3] [021] +09:34:41 [ 25] [ 2] [01] +09:34:41 [ 28] [ 9] [D00002000] +09:34:41 [ 32] [ 6] [180893] +09:34:41 [ 35] [ 32] [6213545000095616=491212019561240] +09:34:41 [ 37] [ 12] [507902267595] +09:34:41 [ 41] [ 8] [0112CPBR] +09:34:41 [ 42] [ 15] [999999 ] +09:34:41 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:34:41 [ 49] [ 3] [418] +09:34:41 [ 52] [ 16] [DBAE8C8F50F85F32] +09:34:41 ============================================================================ +09:34:41 + + +waiting on router queue for slot.... +09:34:41 Sending to : <0> +09:34:41 ============================================================================ +09:34:41 ============================================================================ +09:34:41 Slot Id : <67> +09:34:41 Transaction Type : RESPONSE +09:34:41 Received From : +09:34:41 ============================================================================ +09:34:41 FNo. Len. Field Value +09:34:41 ============================================================================ +09:34:41 [ 1] [ 4] [0210] +09:34:41 [ 2] [ 16] [6213545000095616] +09:34:41 [ 3] [ 6] [010000] +09:34:41 [ 4] [ 12] [000200000000] +09:34:41 [ 7] [ 10] [0320023347] +09:34:41 [ 11] [ 6] [267595] +09:34:41 [ 12] [ 6] [093347] +09:34:41 [ 13] [ 4] [0320] +09:34:41 [ 15] [ 4] [0320] +09:34:41 [ 18] [ 4] [6011] +09:34:41 [ 19] [ 3] [418] +09:34:41 [ 22] [ 3] [021] +09:34:41 [ 32] [ 6] [180893] +09:34:41 [ 35] [ 32] [6213545000095616=491212019561240] +09:34:41 [ 37] [ 12] [507902267595] +09:34:41 [ 39] [ 2] [61] +09:34:41 [ 41] [ 8] [0112CPBR] +09:34:41 [ 49] [ 3] [418] +09:34:41 ============================================================================ +09:34:41 Sending to : +09:34:41 ============================================================================ +09:34:41 + + +waiting on router queue for slot.... +09:34:42 ============================================================================ +09:34:42 Slot Id : <62> +09:34:42 Transaction Type : REQUEST +09:34:42 Received From : +09:34:42 ============================================================================ +09:34:42 FNo. Len. Field Value +09:34:42 ============================================================================ +09:34:42 [ 1] [ 4] [0200] +09:34:42 [ 2] [ 16] [6213541000422488] +09:34:42 [ 3] [ 6] [010000] +09:34:42 [ 4] [ 12] [000100000000] +09:34:42 [ 7] [ 10] [0320093233] +09:34:42 [ 11] [ 6] [935984] +09:34:42 [ 12] [ 6] [093233] +09:34:42 [ 13] [ 4] [0320] +09:34:42 [ 15] [ 4] [0320] +09:34:42 [ 18] [ 4] [6011] +09:34:42 [ 19] [ 3] [418] +09:34:42 [ 22] [ 3] [021] +09:34:42 [ 25] [ 2] [01] +09:34:42 [ 28] [ 9] [D00002000] +09:34:42 [ 32] [ 6] [668899] +09:34:42 [ 35] [ 32] [6213541000422488=491212012248862] +09:34:42 [ 37] [ 12] [507901614445] +09:34:42 [ 41] [ 8] [03001007] +09:34:42 [ 42] [ 15] [APT ] +09:34:42 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:34:42 [ 49] [ 3] [418] +09:34:42 [ 52] [ 16] [5BC68D7FD1E0A5B2] +09:34:42 ============================================================================ +09:34:42 + + +waiting on router queue for slot.... +09:34:42 Sending to : +09:34:42 ============================================================================ +09:34:42 Sending to : +09:34:42 ============================================================================ +09:34:42 ============================================================================ +09:34:42 Slot Id : <62> +09:34:42 Transaction Type : REQUEST +09:34:42 Received From : +09:34:42 ============================================================================ +09:34:42 FNo. Len. Field Value +09:34:42 ============================================================================ +09:34:42 [ 1] [ 4] [0200] +09:34:42 [ 2] [ 16] [6213541000422488] +09:34:42 [ 3] [ 6] [010000] +09:34:42 [ 4] [ 12] [000100000000] +09:34:42 [ 7] [ 10] [0320093233] +09:34:42 [ 11] [ 6] [935984] +09:34:42 [ 12] [ 6] [093233] +09:34:42 [ 13] [ 4] [0320] +09:34:42 [ 15] [ 4] [0320] +09:34:42 [ 18] [ 4] [6011] +09:34:42 [ 19] [ 3] [418] +09:34:42 [ 22] [ 3] [021] +09:34:42 [ 25] [ 2] [01] +09:34:42 [ 28] [ 9] [D00002000] +09:34:42 [ 32] [ 6] [668899] +09:34:42 [ 35] [ 32] [6213541000422488=491212012248862] +09:34:42 [ 37] [ 12] [507901614445] +09:34:42 [ 41] [ 8] [03001007] +09:34:42 [ 42] [ 15] [APT ] +09:34:42 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:34:42 [ 49] [ 3] [418] +09:34:42 [ 52] [ 16] [5BC68D7FD1E0A5B2] +09:34:42 ============================================================================ +09:34:42 + + +waiting on router queue for slot.... +09:34:42 Sending to : +09:34:42 ============================================================================ +09:34:42 ============================================================================ +09:34:42 Slot Id : <62> +09:34:42 Transaction Type : REQUEST +09:34:42 Received From : +09:34:42 ============================================================================ +09:34:42 FNo. Len. Field Value +09:34:42 ============================================================================ +09:34:42 [ 1] [ 4] [0200] +09:34:42 [ 2] [ 16] [6213541000422488] +09:34:42 [ 3] [ 6] [010000] +09:34:42 [ 4] [ 12] [000100000000] +09:34:42 [ 7] [ 10] [0320093233] +09:34:42 [ 11] [ 6] [935984] +09:34:42 [ 12] [ 6] [093233] +09:34:42 [ 13] [ 4] [0320] +09:34:42 [ 15] [ 4] [0320] +09:34:42 [ 18] [ 4] [6011] +09:34:42 [ 19] [ 3] [418] +09:34:42 [ 22] [ 3] [021] +09:34:42 [ 25] [ 2] [01] +09:34:42 [ 28] [ 9] [D00002000] +09:34:42 [ 32] [ 6] [668899] +09:34:42 [ 35] [ 32] [6213541000422488=491212012248862] +09:34:42 [ 37] [ 12] [507901614445] +09:34:42 [ 41] [ 8] [03001007] +09:34:42 [ 42] [ 15] [APT ] +09:34:42 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +09:34:42 [ 49] [ 3] [418] +09:34:42 [ 52] [ 16] [22DACCCC0A12FCEF] +09:34:42 ============================================================================ +09:34:42 + + +waiting on router queue for slot.... +09:34:42 Sending to : <0> +09:34:42 ============================================================================ +09:34:42 ============================================================================ +09:34:42 Slot Id : <67> +09:34:42 Transaction Type : RESPONSE +09:34:42 Received From : +09:34:42 ============================================================================ +09:34:42 FNo. Len. Field Value +09:34:42 ============================================================================ +09:34:42 [ 1] [ 4] [0210] +09:34:42 [ 2] [ 16] [6213545000095616] +09:34:42 [ 3] [ 6] [010000] +09:34:42 [ 4] [ 12] [000200000000] +09:34:42 [ 7] [ 10] [0320023347] +09:34:42 [ 11] [ 6] [267595] +09:34:42 [ 12] [ 6] [093347] +09:34:42 [ 13] [ 4] [0320] +09:34:42 [ 15] [ 4] [0320] +09:34:42 [ 18] [ 4] [6011] +09:34:42 [ 19] [ 3] [418] +09:34:42 [ 22] [ 3] [021] +09:34:42 [ 32] [ 6] [180893] +09:34:42 [ 35] [ 32] [6213545000095616=491212019561240] +09:34:42 [ 37] [ 12] [507902267595] +09:34:42 [ 39] [ 2] [61] +09:34:42 [ 41] [ 8] [0112CPBR] +09:34:42 [ 49] [ 3] [418] +09:34:42 ============================================================================ +09:34:42 Calculate Source COMM Id = 2 +09:34:42 ============================================================================ +09:34:42 + + +waiting on router queue for slot.... +09:34:42 ============================================================================ +09:34:42 Slot Id : <84> +09:34:42 Transaction Type : REQUEST +09:34:42 Received From : +09:34:42 ============================================================================ +09:34:42 FNo. Len. Field Value +09:34:42 ============================================================================ +09:34:42 [ 1] [ 4] [0800] +09:34:42 [ 7] [ 10] [0320023350] +09:34:42 [ 11] [ 6] [155660] +09:34:42 [ 70] [ 3] [301] +09:34:42 ============================================================================ +09:34:42 + + +waiting on router queue for slot.... +09:34:42 Sending to : +09:34:42 ============================================================================ +09:34:42 ============================================================================ +09:34:42 Slot Id : <84> +09:34:42 Transaction Type : RESPONSE +09:34:42 Received From : +09:34:42 ============================================================================ +09:34:42 FNo. Len. Field Value +09:34:42 ============================================================================ +09:34:42 [ 1] [ 4] [0810] +09:34:42 [ 7] [ 10] [0320023350] +09:34:42 [ 11] [ 6] [155660] +09:34:42 [ 39] [ 2] [00] +09:34:42 [ 70] [ 3] [301] +09:34:42 ============================================================================ +09:34:42 Calculate Source COMM Id = 2 +09:34:42 ============================================================================ +09:34:42 + + +waiting on router queue for slot.... +09:34:43 ============================================================================ +09:34:43 Slot Id : <62> +09:34:43 Transaction Type : RESPONSE +09:34:43 Received From : +09:34:43 ============================================================================ +09:34:43 FNo. Len. Field Value +09:34:43 ============================================================================ +09:34:43 [ 1] [ 4] [0210] +09:34:43 [ 2] [ 16] [6213541000422488] +09:34:43 [ 3] [ 6] [010000] +09:34:43 [ 4] [ 12] [000100000000] +09:34:43 [ 7] [ 10] [0320093233] +09:34:43 [ 11] [ 6] [935984] +09:34:43 [ 12] [ 6] [093233] +09:34:43 [ 13] [ 4] [0320] +09:34:43 [ 15] [ 4] [0320] +09:34:43 [ 18] [ 4] [6011] +09:34:43 [ 19] [ 3] [418] +09:34:43 [ 32] [ 6] [668899] +09:34:43 [ 35] [ 32] [6213541000422488=491212012248862] +09:34:43 [ 37] [ 12] [507901614445] +09:34:43 [ 38] [ 6] [494399] +09:34:43 [ 39] [ 2] [00] +09:34:43 [ 41] [ 8] [03001007] +09:34:43 [ 49] [ 3] [418] +09:34:43 [ 54] [ 40] [0001418C0054027317940002418C005402731794] +09:34:43 ============================================================================ +09:34:43 Sending to : +09:34:43 ============================================================================ +09:34:43 + + +waiting on router queue for slot.... +09:34:44 ============================================================================ +09:34:44 Slot Id : <62> +09:34:44 Transaction Type : RESPONSE +09:34:44 Received From : +09:34:44 ============================================================================ +09:34:44 FNo. Len. Field Value +09:34:44 ============================================================================ +09:34:44 [ 1] [ 4] [0210] +09:34:44 [ 2] [ 16] [6213541000422488] +09:34:44 [ 3] [ 6] [010000] +09:34:44 [ 4] [ 12] [000100000000] +09:34:44 [ 7] [ 10] [0320093233] +09:34:44 [ 11] [ 6] [935984] +09:34:44 [ 12] [ 6] [093233] +09:34:44 [ 13] [ 4] [0320] +09:34:44 [ 15] [ 4] [0320] +09:34:44 [ 18] [ 4] [6011] +09:34:44 [ 19] [ 3] [418] +09:34:44 [ 32] [ 6] [668899] +09:34:44 [ 35] [ 32] [6213541000422488=491212012248862] +09:34:44 [ 37] [ 12] [507901614445] +09:34:44 [ 38] [ 6] [494399] +09:34:44 [ 39] [ 2] [00] +09:34:44 [ 41] [ 8] [03001007] +09:34:44 [ 49] [ 3] [418] +09:34:44 [ 54] [ 40] [0001418C0054027317940002418C005402731794] +09:34:44 ============================================================================ +09:34:44 Calculate Source COMM Id = 4 +09:34:44 ============================================================================ +09:34:44 + + +waiting on router queue for slot.... +09:34:51 ============================================================================ +09:34:51 Slot Id : <99> +09:34:51 Transaction Type : REQUEST +09:34:51 Received From : +09:34:51 ============================================================================ +09:34:51 FNo. Len. Field Value +09:34:51 ============================================================================ +09:34:51 [ 1] [ 4] [0200] +09:34:51 [ 2] [ 16] [6213545000046049] +09:34:51 [ 3] [ 6] [311000] +09:34:51 [ 4] [ 12] [000000000000] +09:34:51 [ 7] [ 10] [0320094239] +09:34:51 [ 11] [ 6] [079040] +09:34:51 [ 12] [ 6] [094239] +09:34:51 [ 13] [ 4] [0320] +09:34:51 [ 14] [ 4] [4912] +09:34:51 [ 15] [ 4] [0320] +09:34:51 [ 18] [ 4] [6011] +09:34:51 [ 22] [ 3] [900] +09:34:51 [ 25] [ 2] [02] +09:34:51 [ 28] [ 9] [000000000] +09:34:51 [ 32] [ 6] [220699] +09:34:51 [ 35] [ 32] [6213545000046049=491212014604563] +09:34:51 [ 37] [ 12] [507900132929] +09:34:51 [ 41] [ 8] [03000100] +09:34:51 [ 42] [ 15] [APTRA ] +09:34:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:34:51 [ 49] [ 3] [418] +09:34:51 [ 52] [ 16] [926A9D444B774538] +09:34:51 ============================================================================ +09:34:51 + + +waiting on router queue for slot.... +09:34:51 Sending to : +09:34:51 ============================================================================ +09:34:51 Sending to : +09:34:51 ============================================================================ +09:34:52 ============================================================================ +09:34:52 Slot Id : <99> +09:34:52 Transaction Type : REQUEST +09:34:52 Received From : +09:34:52 ============================================================================ +09:34:52 FNo. Len. Field Value +09:34:52 ============================================================================ +09:34:52 [ 1] [ 4] [0200] +09:34:52 [ 2] [ 16] [6213545000046049] +09:34:52 [ 3] [ 6] [311000] +09:34:52 [ 4] [ 12] [000000000000] +09:34:52 [ 7] [ 10] [0320094239] +09:34:52 [ 11] [ 6] [079040] +09:34:52 [ 12] [ 6] [094239] +09:34:52 [ 13] [ 4] [0320] +09:34:52 [ 14] [ 4] [4912] +09:34:52 [ 15] [ 4] [0320] +09:34:52 [ 18] [ 4] [6011] +09:34:52 [ 22] [ 3] [900] +09:34:52 [ 25] [ 2] [02] +09:34:52 [ 28] [ 9] [000000000] +09:34:52 [ 32] [ 6] [220699] +09:34:52 [ 35] [ 32] [6213545000046049=491212014604563] +09:34:52 [ 37] [ 12] [507900132929] +09:34:52 [ 41] [ 8] [03000100] +09:34:52 [ 42] [ 15] [APTRA ] +09:34:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:34:52 [ 49] [ 3] [418] +09:34:52 [ 52] [ 16] [926A9D444B774538] +09:34:52 ============================================================================ +09:34:52 + + +waiting on router queue for slot.... +09:34:52 Sending to : +09:34:52 ============================================================================ +09:34:52 ============================================================================ +09:34:52 Slot Id : <99> +09:34:52 Transaction Type : REQUEST +09:34:52 Received From : +09:34:52 ============================================================================ +09:34:52 FNo. Len. Field Value +09:34:52 ============================================================================ +09:34:52 [ 1] [ 4] [0200] +09:34:52 [ 2] [ 16] [6213545000046049] +09:34:52 [ 3] [ 6] [311000] +09:34:52 [ 4] [ 12] [000000000000] +09:34:52 [ 7] [ 10] [0320094239] +09:34:52 [ 11] [ 6] [079040] +09:34:52 [ 12] [ 6] [094239] +09:34:52 [ 13] [ 4] [0320] +09:34:52 [ 14] [ 4] [4912] +09:34:52 [ 15] [ 4] [0320] +09:34:52 [ 18] [ 4] [6011] +09:34:52 [ 22] [ 3] [900] +09:34:52 [ 25] [ 2] [02] +09:34:52 [ 28] [ 9] [000000000] +09:34:52 [ 32] [ 6] [220699] +09:34:52 [ 35] [ 32] [6213545000046049=491212014604563] +09:34:52 [ 37] [ 12] [507900132929] +09:34:52 [ 41] [ 8] [03000100] +09:34:52 [ 42] [ 15] [APTRA ] +09:34:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:34:52 [ 49] [ 3] [418] +09:34:52 [ 52] [ 16] [13ECE3DD6A4325F3] +09:34:52 ============================================================================ +09:34:52 + + +waiting on router queue for slot.... +09:34:52 Sending to : <0> +09:34:52 ============================================================================ +09:34:52 ============================================================================ +09:34:52 Slot Id : <99> +09:34:52 Transaction Type : RESPONSE +09:34:52 Received From : +09:34:52 ============================================================================ +09:34:52 FNo. Len. Field Value +09:34:52 ============================================================================ +09:34:52 [ 1] [ 4] [0210] +09:34:52 [ 2] [ 16] [6213545000046049] +09:34:52 [ 3] [ 6] [311000] +09:34:52 [ 4] [ 12] [000000000000] +09:34:52 [ 7] [ 10] [0320094239] +09:34:52 [ 11] [ 6] [079040] +09:34:52 [ 12] [ 6] [094239] +09:34:52 [ 13] [ 4] [0320] +09:34:52 [ 15] [ 4] [0320] +09:34:52 [ 18] [ 4] [6011] +09:34:52 [ 32] [ 6] [220699] +09:34:52 [ 35] [ 32] [6213545000046049=491212014604563] +09:34:52 [ 37] [ 12] [507900132929] +09:34:52 [ 38] [ 6] [284046] +09:34:52 [ 39] [ 2] [00] +09:34:52 [ 41] [ 8] [03000100] +09:34:52 [ 49] [ 3] [418] +09:34:52 [ 54] [ 40] [1001418C0002000937871002418C000200093787] +09:34:52 ============================================================================ +09:34:52 Sending to : +09:34:52 ============================================================================ +09:34:52 + + +waiting on router queue for slot.... +09:34:53 ============================================================================ +09:34:53 Slot Id : <39> +09:34:53 Transaction Type : REQUEST +09:34:53 Received From : +09:34:53 ============================================================================ +09:34:53 FNo. Len. Field Value +09:34:53 ============================================================================ +09:34:53 [ 1] [ 4] [0800] +09:34:53 [ 7] [ 10] [0320023401] +09:34:53 [ 11] [ 6] [155661] +09:34:53 [ 70] [ 3] [301] +09:34:53 ============================================================================ +09:34:53 + + +waiting on router queue for slot.... +09:34:53 Sending to : +09:34:53 ============================================================================ +09:34:53 ============================================================================ +09:34:53 Slot Id : <39> +09:34:53 Transaction Type : RESPONSE +09:34:53 Received From : +09:34:53 ============================================================================ +09:34:53 FNo. Len. Field Value +09:34:53 ============================================================================ +09:34:53 [ 1] [ 4] [0810] +09:34:53 [ 7] [ 10] [0320023401] +09:34:53 [ 11] [ 6] [155661] +09:34:53 [ 39] [ 2] [00] +09:34:53 [ 70] [ 3] [301] +09:34:53 ============================================================================ +09:34:53 Calculate Source COMM Id = 2 +09:34:53 ============================================================================ +09:34:53 + + +waiting on router queue for slot.... +09:34:54 ============================================================================ +09:34:54 Slot Id : <99> +09:34:54 Transaction Type : RESPONSE +09:34:54 Received From : +09:34:54 ============================================================================ +09:34:54 FNo. Len. Field Value +09:34:54 ============================================================================ +09:34:54 [ 1] [ 4] [0210] +09:34:54 [ 2] [ 16] [6213545000046049] +09:34:54 [ 3] [ 6] [311000] +09:34:54 [ 4] [ 12] [000000000000] +09:34:54 [ 7] [ 10] [0320094239] +09:34:54 [ 11] [ 6] [079040] +09:34:54 [ 12] [ 6] [094239] +09:34:54 [ 13] [ 4] [0320] +09:34:54 [ 15] [ 4] [0320] +09:34:54 [ 18] [ 4] [6011] +09:34:54 [ 32] [ 6] [220699] +09:34:54 [ 35] [ 32] [6213545000046049=491212014604563] +09:34:54 [ 37] [ 12] [507900132929] +09:34:54 [ 38] [ 6] [284046] +09:34:54 [ 39] [ 2] [00] +09:34:54 [ 41] [ 8] [03000100] +09:34:54 [ 49] [ 3] [418] +09:34:54 [ 54] [ 40] [1001418C0002000937871002418C000200093787] +09:34:54 ============================================================================ +09:34:54 Calculate Source COMM Id = 1 +09:34:54 ============================================================================ +09:34:54 + + +waiting on router queue for slot.... +09:34:55 ============================================================================ +09:34:55 Slot Id : <51> +09:34:55 Transaction Type : REQUEST +09:34:55 Received From : +09:34:55 ============================================================================ +09:34:55 FNo. Len. Field Value +09:34:55 ============================================================================ +09:34:55 [ 1] [ 4] [0800] +09:34:55 [ 7] [ 10] [0320024242] +09:34:55 [ 11] [ 6] [091676] +09:34:55 [ 37] [ 12] [57909091676] +09:34:55 [ 70] [ 3] [301] +09:34:55 ============================================================================ +09:34:55 + + +waiting on router queue for slot.... +09:34:55 Sending to : +09:34:55 ============================================================================ +09:34:55 ============================================================================ +09:34:55 Slot Id : <51> +09:34:55 Transaction Type : RESPONSE +09:34:55 Received From : +09:34:55 ============================================================================ +09:34:55 FNo. Len. Field Value +09:34:55 ============================================================================ +09:34:55 [ 1] [ 4] [0810] +09:34:55 [ 7] [ 10] [0320024242] +09:34:55 [ 11] [ 6] [091676] +09:34:55 [ 37] [ 12] [579090916760] +09:34:55 [ 39] [ 2] [00] +09:34:55 [ 70] [ 3] [810] +09:34:55 ============================================================================ +09:34:55 Calculate Source COMM Id = 1 +09:34:55 ============================================================================ +09:34:55 + + +waiting on router queue for slot.... +09:35:04 ============================================================================ +09:35:04 Slot Id : <64> +09:35:04 Transaction Type : REQUEST +09:35:04 Received From : +09:35:04 ============================================================================ +09:35:04 FNo. Len. Field Value +09:35:04 ============================================================================ +09:35:04 [ 1] [ 4] [0800] +09:35:04 [ 7] [ 10] [0320023412] +09:35:04 [ 11] [ 6] [155662] +09:35:04 [ 70] [ 3] [301] +09:35:04 ============================================================================ +09:35:04 + + +waiting on router queue for slot.... +09:35:04 Sending to : +09:35:04 ============================================================================ +09:35:04 ============================================================================ +09:35:04 Slot Id : <64> +09:35:04 Transaction Type : RESPONSE +09:35:04 Received From : +09:35:04 ============================================================================ +09:35:04 FNo. Len. Field Value +09:35:04 ============================================================================ +09:35:04 [ 1] [ 4] [0810] +09:35:04 [ 7] [ 10] [0320023412] +09:35:04 [ 11] [ 6] [155662] +09:35:04 [ 39] [ 2] [00] +09:35:04 [ 70] [ 3] [301] +09:35:04 ============================================================================ +09:35:04 Calculate Source COMM Id = 2 +09:35:04 ============================================================================ +09:35:04 + + +waiting on router queue for slot.... +09:35:04 ============================================================================ +09:35:04 Slot Id : <82> +09:35:04 Transaction Type : REQUEST +09:35:04 Received From : +09:35:04 ============================================================================ +09:35:04 FNo. Len. Field Value +09:35:04 ============================================================================ +09:35:04 [ 1] [ 4] [0200] +09:35:04 [ 2] [ 16] [6213545000939409] +09:35:04 [ 3] [ 6] [010000] +09:35:04 [ 4] [ 12] [000100000000] +09:35:04 [ 7] [ 10] [0320023412] +09:35:04 [ 11] [ 6] [267603] +09:35:04 [ 12] [ 6] [093412] +09:35:04 [ 13] [ 4] [0320] +09:35:04 [ 14] [ 4] [4912] +09:35:04 [ 15] [ 4] [0320] +09:35:04 [ 18] [ 4] [6011] +09:35:04 [ 19] [ 3] [418] +09:35:04 [ 22] [ 3] [021] +09:35:04 [ 25] [ 2] [01] +09:35:04 [ 28] [ 9] [D00002000] +09:35:04 [ 32] [ 6] [180893] +09:35:04 [ 35] [ 32] [6213545000939409=491212013940581] +09:35:04 [ 37] [ 12] [507902267603] +09:35:04 [ 41] [ 8] [0366SKTT] +09:35:04 [ 42] [ 15] [999999 ] +09:35:04 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:35:04 [ 49] [ 3] [418] +09:35:04 [ 52] [ 16] [03E5AA78375679A6] +09:35:04 ============================================================================ +09:35:04 + + +waiting on router queue for slot.... +09:35:04 Sending to : +09:35:04 ============================================================================ +09:35:04 Sending to : +09:35:04 ============================================================================ +09:35:05 ============================================================================ +09:35:05 Slot Id : <82> +09:35:05 Transaction Type : REQUEST +09:35:05 Received From : +09:35:05 ============================================================================ +09:35:05 FNo. Len. Field Value +09:35:05 ============================================================================ +09:35:05 [ 1] [ 4] [0200] +09:35:05 [ 2] [ 16] [6213545000939409] +09:35:05 [ 3] [ 6] [010000] +09:35:05 [ 4] [ 12] [000100000000] +09:35:05 [ 7] [ 10] [0320023412] +09:35:05 [ 11] [ 6] [267603] +09:35:05 [ 12] [ 6] [093412] +09:35:05 [ 13] [ 4] [0320] +09:35:05 [ 14] [ 4] [4912] +09:35:05 [ 15] [ 4] [0320] +09:35:05 [ 18] [ 4] [6011] +09:35:05 [ 19] [ 3] [418] +09:35:05 [ 22] [ 3] [021] +09:35:05 [ 25] [ 2] [01] +09:35:05 [ 28] [ 9] [D00002000] +09:35:05 [ 32] [ 6] [180893] +09:35:05 [ 35] [ 32] [6213545000939409=491212013940581] +09:35:05 [ 37] [ 12] [507902267603] +09:35:05 [ 41] [ 8] [0366SKTT] +09:35:05 [ 42] [ 15] [999999 ] +09:35:05 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:35:05 [ 49] [ 3] [418] +09:35:05 [ 52] [ 16] [03E5AA78375679A6] +09:35:05 ============================================================================ +09:35:05 + + +waiting on router queue for slot.... +09:35:05 Sending to : +09:35:05 ============================================================================ +09:35:05 ============================================================================ +09:35:05 Slot Id : <82> +09:35:05 Transaction Type : REQUEST +09:35:05 Received From : +09:35:05 ============================================================================ +09:35:05 FNo. Len. Field Value +09:35:05 ============================================================================ +09:35:05 [ 1] [ 4] [0200] +09:35:05 [ 2] [ 16] [6213545000939409] +09:35:05 [ 3] [ 6] [010000] +09:35:05 [ 4] [ 12] [000100000000] +09:35:05 [ 7] [ 10] [0320023412] +09:35:05 [ 11] [ 6] [267603] +09:35:05 [ 12] [ 6] [093412] +09:35:05 [ 13] [ 4] [0320] +09:35:05 [ 14] [ 4] [4912] +09:35:05 [ 15] [ 4] [0320] +09:35:05 [ 18] [ 4] [6011] +09:35:05 [ 19] [ 3] [418] +09:35:05 [ 22] [ 3] [021] +09:35:05 [ 25] [ 2] [01] +09:35:05 [ 28] [ 9] [D00002000] +09:35:05 [ 32] [ 6] [180893] +09:35:05 [ 35] [ 32] [6213545000939409=491212013940581] +09:35:05 [ 37] [ 12] [507902267603] +09:35:05 [ 41] [ 8] [0366SKTT] +09:35:05 [ 42] [ 15] [999999 ] +09:35:05 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:35:05 [ 49] [ 3] [418] +09:35:05 [ 52] [ 16] [96939ECA28275C11] +09:35:05 ============================================================================ +09:35:05 + + +waiting on router queue for slot.... +09:35:05 Sending to : <0> +09:35:05 ============================================================================ +09:35:05 ============================================================================ +09:35:05 Slot Id : <82> +09:35:05 Transaction Type : RESPONSE +09:35:05 Received From : +09:35:05 ============================================================================ +09:35:05 FNo. Len. Field Value +09:35:05 ============================================================================ +09:35:05 [ 1] [ 4] [0210] +09:35:05 [ 2] [ 16] [6213545000939409] +09:35:05 [ 3] [ 6] [010000] +09:35:05 [ 4] [ 12] [000100000000] +09:35:05 [ 7] [ 10] [0320023412] +09:35:05 [ 11] [ 6] [267603] +09:35:05 [ 12] [ 6] [093412] +09:35:05 [ 13] [ 4] [0320] +09:35:05 [ 15] [ 4] [0320] +09:35:05 [ 18] [ 4] [6011] +09:35:05 [ 19] [ 3] [418] +09:35:05 [ 32] [ 6] [180893] +09:35:05 [ 35] [ 32] [6213545000939409=491212013940581] +09:35:05 [ 37] [ 12] [507902267603] +09:35:05 [ 38] [ 6] [155097] +09:35:05 [ 39] [ 2] [00] +09:35:05 [ 41] [ 8] [0366SKTT] +09:35:05 [ 49] [ 3] [418] +09:35:05 [ 54] [ 40] [0001418C0002479046660002418C000247904666] +09:35:05 ============================================================================ +09:35:05 Sending to : +09:35:05 ============================================================================ +09:35:05 + + +waiting on router queue for slot.... +09:35:07 ============================================================================ +09:35:07 Slot Id : <82> +09:35:07 Transaction Type : RESPONSE +09:35:07 Received From : +09:35:07 ============================================================================ +09:35:07 FNo. Len. Field Value +09:35:07 ============================================================================ +09:35:07 [ 1] [ 4] [0210] +09:35:07 [ 2] [ 16] [6213545000939409] +09:35:07 [ 3] [ 6] [010000] +09:35:07 [ 4] [ 12] [000100000000] +09:35:07 [ 7] [ 10] [0320023412] +09:35:07 [ 11] [ 6] [267603] +09:35:07 [ 12] [ 6] [093412] +09:35:07 [ 13] [ 4] [0320] +09:35:07 [ 15] [ 4] [0320] +09:35:07 [ 18] [ 4] [6011] +09:35:07 [ 19] [ 3] [418] +09:35:07 [ 32] [ 6] [180893] +09:35:07 [ 35] [ 32] [6213545000939409=491212013940581] +09:35:07 [ 37] [ 12] [507902267603] +09:35:07 [ 38] [ 6] [155097] +09:35:07 [ 39] [ 2] [00] +09:35:07 [ 41] [ 8] [0366SKTT] +09:35:07 [ 49] [ 3] [418] +09:35:07 [ 54] [ 40] [0001418C0002479046660002418C000247904666] +09:35:07 ============================================================================ +09:35:07 Calculate Source COMM Id = 2 +09:35:07 ============================================================================ +09:35:07 + + +waiting on router queue for slot.... +09:35:09 ============================================================================ +09:35:09 Slot Id : <93> +09:35:09 Transaction Type : REQUEST +09:35:09 Received From : +09:35:09 ============================================================================ +09:35:09 FNo. Len. Field Value +09:35:09 ============================================================================ +09:35:09 [ 1] [ 4] [0800] +09:35:09 [ 2] [ 5] [02531] +09:35:09 [ 3] [ 6] [579098] +09:35:09 [ 7] [ 10] [0320023509] +09:35:09 [ 11] [ 6] [806968] +09:35:09 [ 15] [ 10] [0320023509] +09:35:09 [ 37] [ 11] [57909806968] +09:35:09 [ 70] [ 3] [001] +09:35:09 ============================================================================ +09:35:09 + + +waiting on router queue for slot.... +09:35:09 ============================================================================ +09:35:09 Slot Id : <93> +09:35:09 Transaction Type : RESPONSE +09:35:09 Received From : +09:35:09 ============================================================================ +09:35:09 FNo. Len. Field Value +09:35:09 ============================================================================ +09:35:09 [ 1] [ 4] [0810] +09:35:09 [ 7] [ 10] [0320023509] +09:35:09 [ 11] [ 6] [806968] +09:35:09 [ 15] [ 4] [0320] +09:35:09 [ 37] [ 12] [57909806968] +09:35:09 [ 39] [ 2] [00] +09:35:09 [ 70] [ 3] [001] +09:35:09 ============================================================================ +09:35:09 Sending to : +09:35:09 ============================================================================ +09:35:09 + + +waiting on router queue for slot.... +09:35:10 ============================================================================ +09:35:10 Slot Id : <56> +09:35:10 Transaction Type : REQUEST +09:35:10 Received From : +09:35:10 ============================================================================ +09:35:10 FNo. Len. Field Value +09:35:10 ============================================================================ +09:35:10 [ 1] [ 4] [0200] +09:35:10 [ 2] [ 16] [6213544000166816] +09:35:10 [ 3] [ 6] [010000] +09:35:10 [ 4] [ 12] [000100000000] +09:35:10 [ 7] [ 10] [0320023417] +09:35:10 [ 11] [ 6] [267605] +09:35:10 [ 12] [ 6] [093417] +09:35:10 [ 13] [ 4] [0320] +09:35:10 [ 14] [ 4] [4912] +09:35:10 [ 15] [ 4] [0320] +09:35:10 [ 18] [ 4] [6011] +09:35:10 [ 19] [ 3] [418] +09:35:10 [ 22] [ 3] [021] +09:35:10 [ 25] [ 2] [01] +09:35:10 [ 28] [ 9] [D00002000] +09:35:10 [ 32] [ 6] [180893] +09:35:10 [ 35] [ 32] [6213544000166816=491212016681855] +09:35:10 [ 37] [ 12] [507902267605] +09:35:10 [ 41] [ 8] [0401XSBR] +09:35:10 [ 42] [ 15] [999999 ] +09:35:10 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:35:10 [ 49] [ 3] [418] +09:35:10 [ 52] [ 16] [16C8B15A40FED093] +09:35:10 ============================================================================ +09:35:10 + + +waiting on router queue for slot.... +09:35:10 Sending to : +09:35:10 ============================================================================ +09:35:10 Sending to : +09:35:10 ============================================================================ +09:35:10 ============================================================================ +09:35:10 Slot Id : <56> +09:35:10 Transaction Type : REQUEST +09:35:10 Received From : +09:35:10 ============================================================================ +09:35:10 FNo. Len. Field Value +09:35:10 ============================================================================ +09:35:10 [ 1] [ 4] [0200] +09:35:10 [ 2] [ 16] [6213544000166816] +09:35:10 [ 3] [ 6] [010000] +09:35:10 [ 4] [ 12] [000100000000] +09:35:10 [ 7] [ 10] [0320023417] +09:35:10 [ 11] [ 6] [267605] +09:35:10 [ 12] [ 6] [093417] +09:35:10 [ 13] [ 4] [0320] +09:35:10 [ 14] [ 4] [4912] +09:35:10 [ 15] [ 4] [0320] +09:35:10 [ 18] [ 4] [6011] +09:35:10 [ 19] [ 3] [418] +09:35:10 [ 22] [ 3] [021] +09:35:10 [ 25] [ 2] [01] +09:35:10 [ 28] [ 9] [D00002000] +09:35:10 [ 32] [ 6] [180893] +09:35:10 [ 35] [ 32] [6213544000166816=491212016681855] +09:35:10 [ 37] [ 12] [507902267605] +09:35:10 [ 41] [ 8] [0401XSBR] +09:35:10 [ 42] [ 15] [999999 ] +09:35:10 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:35:10 [ 49] [ 3] [418] +09:35:10 [ 52] [ 16] [16C8B15A40FED093] +09:35:10 ============================================================================ +09:35:10 + + +waiting on router queue for slot.... +09:35:10 Sending to : +09:35:10 ============================================================================ +09:35:10 ============================================================================ +09:35:10 Slot Id : <56> +09:35:10 Transaction Type : REQUEST +09:35:10 Received From : +09:35:10 ============================================================================ +09:35:10 FNo. Len. Field Value +09:35:10 ============================================================================ +09:35:10 [ 1] [ 4] [0200] +09:35:10 [ 2] [ 16] [6213544000166816] +09:35:10 [ 3] [ 6] [010000] +09:35:10 [ 4] [ 12] [000100000000] +09:35:10 [ 7] [ 10] [0320023417] +09:35:10 [ 11] [ 6] [267605] +09:35:10 [ 12] [ 6] [093417] +09:35:10 [ 13] [ 4] [0320] +09:35:10 [ 14] [ 4] [4912] +09:35:10 [ 15] [ 4] [0320] +09:35:10 [ 18] [ 4] [6011] +09:35:10 [ 19] [ 3] [418] +09:35:10 [ 22] [ 3] [021] +09:35:10 [ 25] [ 2] [01] +09:35:10 [ 28] [ 9] [D00002000] +09:35:10 [ 32] [ 6] [180893] +09:35:10 [ 35] [ 32] [6213544000166816=491212016681855] +09:35:10 [ 37] [ 12] [507902267605] +09:35:10 [ 41] [ 8] [0401XSBR] +09:35:10 [ 42] [ 15] [999999 ] +09:35:10 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:35:10 [ 49] [ 3] [418] +09:35:10 [ 52] [ 16] [D8D25E1CA368E96E] +09:35:10 ============================================================================ +09:35:10 + + +waiting on router queue for slot.... +09:35:10 Sending to : <0> +09:35:10 ============================================================================ +09:35:11 ============================================================================ +09:35:11 Slot Id : <56> +09:35:11 Transaction Type : RESPONSE +09:35:11 Received From : +09:35:11 ============================================================================ +09:35:11 FNo. Len. Field Value +09:35:11 ============================================================================ +09:35:11 [ 1] [ 4] [0210] +09:35:11 [ 2] [ 16] [6213544000166816] +09:35:11 [ 3] [ 6] [010000] +09:35:11 [ 4] [ 12] [000100000000] +09:35:11 [ 7] [ 10] [0320023417] +09:35:11 [ 11] [ 6] [267605] +09:35:11 [ 12] [ 6] [093417] +09:35:11 [ 13] [ 4] [0320] +09:35:11 [ 15] [ 4] [0320] +09:35:11 [ 18] [ 4] [6011] +09:35:11 [ 19] [ 3] [418] +09:35:11 [ 32] [ 6] [180893] +09:35:11 [ 35] [ 32] [6213544000166816=491212016681855] +09:35:11 [ 37] [ 12] [507902267605] +09:35:11 [ 38] [ 6] [606388] +09:35:11 [ 39] [ 2] [00] +09:35:11 [ 41] [ 8] [0401XSBR] +09:35:11 [ 49] [ 3] [418] +09:35:11 [ 54] [ 40] [0001418C0000463535270002418C000046353527] +09:35:11 ============================================================================ +09:35:11 Sending to : +09:35:11 ============================================================================ +09:35:11 + + +waiting on router queue for slot.... +09:35:12 ============================================================================ +09:35:12 Slot Id : <56> +09:35:12 Transaction Type : RESPONSE +09:35:12 Received From : +09:35:12 ============================================================================ +09:35:12 FNo. Len. Field Value +09:35:12 ============================================================================ +09:35:12 [ 1] [ 4] [0210] +09:35:12 [ 2] [ 16] [6213544000166816] +09:35:12 [ 3] [ 6] [010000] +09:35:12 [ 4] [ 12] [000100000000] +09:35:12 [ 7] [ 10] [0320023417] +09:35:12 [ 11] [ 6] [267605] +09:35:12 [ 12] [ 6] [093417] +09:35:12 [ 13] [ 4] [0320] +09:35:12 [ 15] [ 4] [0320] +09:35:12 [ 18] [ 4] [6011] +09:35:12 [ 19] [ 3] [418] +09:35:12 [ 32] [ 6] [180893] +09:35:12 [ 35] [ 32] [6213544000166816=491212016681855] +09:35:12 [ 37] [ 12] [507902267605] +09:35:12 [ 38] [ 6] [606388] +09:35:12 [ 39] [ 2] [00] +09:35:12 [ 41] [ 8] [0401XSBR] +09:35:12 [ 49] [ 3] [418] +09:35:12 [ 54] [ 40] [0001418C0000463535270002418C000046353527] +09:35:12 ============================================================================ +09:35:12 Calculate Source COMM Id = 2 +09:35:12 ============================================================================ +09:35:12 + + +waiting on router queue for slot.... +09:35:17 ============================================================================ +09:35:17 Slot Id : <100> +09:35:17 Transaction Type : REQUEST +09:35:17 Received From : +09:35:17 ============================================================================ +09:35:17 FNo. Len. Field Value +09:35:17 ============================================================================ +09:35:17 [ 1] [ 4] [0200] +09:35:17 [ 2] [ 16] [1808930200036226] +09:35:17 [ 3] [ 6] [010000] +09:35:17 [ 4] [ 12] [000030000000] +09:35:17 [ 7] [ 10] [0320093308] +09:35:17 [ 11] [ 6] [936010] +09:35:17 [ 12] [ 6] [093308] +09:35:17 [ 13] [ 4] [0320] +09:35:17 [ 15] [ 4] [0320] +09:35:17 [ 18] [ 4] [6011] +09:35:17 [ 19] [ 3] [418] +09:35:17 [ 22] [ 3] [021] +09:35:17 [ 25] [ 2] [01] +09:35:17 [ 28] [ 9] [D00002000] +09:35:17 [ 32] [ 6] [668899] +09:35:17 [ 35] [ 27] [1808930200036226=1803500523] +09:35:17 [ 37] [ 12] [507902179605] +09:35:17 [ 41] [ 8] [03004005] +09:35:17 [ 42] [ 15] [APT ] +09:35:17 [ 43] [ 40] [ MOUANGKEO UNIT MOUANGKEO ] +09:35:17 [ 49] [ 3] [418] +09:35:17 [ 52] [ 16] [896F2A42CC76CDF8] +09:35:17 ============================================================================ +09:35:17 + + +waiting on router queue for slot.... +09:35:17 Sending to : +09:35:17 ============================================================================ +09:35:17 Sending to : +09:35:17 ============================================================================ +09:35:17 ============================================================================ +09:35:17 Slot Id : <91> +09:35:17 Transaction Type : REQUEST +09:35:17 Received From : +09:35:17 ============================================================================ +09:35:17 FNo. Len. Field Value +09:35:17 ============================================================================ +09:35:17 [ 1] [ 4] [0200] +09:35:17 [ 2] [ 16] [6213545001108848] +09:35:17 [ 3] [ 6] [010000] +09:35:17 [ 4] [ 12] [000100000000] +09:35:17 [ 7] [ 10] [0320023424] +09:35:17 [ 11] [ 6] [267607] +09:35:17 [ 12] [ 6] [093424] +09:35:17 [ 13] [ 4] [0320] +09:35:17 [ 14] [ 4] [4912] +09:35:17 [ 15] [ 4] [0320] +09:35:17 [ 18] [ 4] [6011] +09:35:17 [ 19] [ 3] [418] +09:35:17 [ 22] [ 3] [021] +09:35:17 [ 25] [ 2] [01] +09:35:17 [ 28] [ 9] [D00002000] +09:35:17 [ 32] [ 6] [180893] +09:35:17 [ 35] [ 32] [6213545001108848=491212010884066] +09:35:17 [ 37] [ 12] [507902267607] +09:35:17 [ 41] [ 8] [0221XKKM] +09:35:17 [ 42] [ 15] [999999 ] +09:35:17 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:35:17 [ 49] [ 3] [418] +09:35:17 [ 52] [ 16] [2FF7E970074030F1] +09:35:17 ============================================================================ +09:35:17 + + +waiting on router queue for slot.... +09:35:17 Sending to : +09:35:17 ============================================================================ +09:35:17 Sending to : +09:35:17 ============================================================================ +09:35:17 ============================================================================ +09:35:17 Slot Id : <100> +09:35:17 Transaction Type : REQUEST +09:35:17 Received From : +09:35:17 ============================================================================ +09:35:17 FNo. Len. Field Value +09:35:17 ============================================================================ +09:35:17 [ 1] [ 4] [0200] +09:35:17 [ 2] [ 16] [1808930200036226] +09:35:17 [ 3] [ 6] [010000] +09:35:17 [ 4] [ 12] [000030000000] +09:35:17 [ 7] [ 10] [0320093308] +09:35:17 [ 11] [ 6] [936010] +09:35:17 [ 12] [ 6] [093308] +09:35:17 [ 13] [ 4] [0320] +09:35:17 [ 15] [ 4] [0320] +09:35:17 [ 18] [ 4] [6011] +09:35:17 [ 19] [ 3] [418] +09:35:17 [ 22] [ 3] [021] +09:35:17 [ 25] [ 2] [01] +09:35:17 [ 28] [ 9] [D00002000] +09:35:17 [ 32] [ 6] [668899] +09:35:17 [ 35] [ 27] [1808930200036226=1803500523] +09:35:17 [ 37] [ 12] [507902179605] +09:35:17 [ 41] [ 8] [03004005] +09:35:17 [ 42] [ 15] [APT ] +09:35:17 [ 43] [ 40] [ MOUANGKEO UNIT MOUANGKEO ] +09:35:17 [ 49] [ 3] [418] +09:35:17 [ 52] [ 16] [896F2A42CC76CDF8] +09:35:17 ============================================================================ +09:35:17 + + +waiting on router queue for slot.... +09:35:17 Sending to : +09:35:17 ============================================================================ +09:35:17 ============================================================================ +09:35:17 Slot Id : <100> +09:35:17 Transaction Type : REQUEST +09:35:17 Received From : +09:35:17 ============================================================================ +09:35:17 FNo. Len. Field Value +09:35:17 ============================================================================ +09:35:17 [ 1] [ 4] [0200] +09:35:17 [ 2] [ 16] [1808930200036226] +09:35:17 [ 3] [ 6] [010000] +09:35:17 [ 4] [ 12] [000030000000] +09:35:17 [ 7] [ 10] [0320093308] +09:35:17 [ 11] [ 6] [936010] +09:35:17 [ 12] [ 6] [093308] +09:35:17 [ 13] [ 4] [0320] +09:35:17 [ 15] [ 4] [0320] +09:35:17 [ 18] [ 4] [6011] +09:35:17 [ 19] [ 3] [418] +09:35:17 [ 22] [ 3] [021] +09:35:17 [ 25] [ 2] [01] +09:35:17 [ 28] [ 9] [D00002000] +09:35:17 [ 32] [ 6] [668899] +09:35:17 [ 35] [ 27] [1808930200036226=1803500523] +09:35:17 [ 37] [ 12] [507902179605] +09:35:17 [ 41] [ 8] [03004005] +09:35:17 [ 42] [ 15] [APT ] +09:35:17 [ 43] [ 40] [ MOUANGKEO UNIT MOUANGKEO ] +09:35:17 [ 49] [ 3] [418] +09:35:17 [ 52] [ 16] [15E591FF2AF903B3] +09:35:17 ============================================================================ +09:35:17 + + +waiting on router queue for slot.... +09:35:17 Sending to : <2> +09:35:17 ============================================================================ +09:35:17 ============================================================================ +09:35:17 Slot Id : <91> +09:35:17 Transaction Type : REQUEST +09:35:17 Received From : +09:35:17 ============================================================================ +09:35:17 FNo. Len. Field Value +09:35:17 ============================================================================ +09:35:17 [ 1] [ 4] [0200] +09:35:17 [ 2] [ 16] [6213545001108848] +09:35:17 [ 3] [ 6] [010000] +09:35:17 [ 4] [ 12] [000100000000] +09:35:17 [ 7] [ 10] [0320023424] +09:35:17 [ 11] [ 6] [267607] +09:35:17 [ 12] [ 6] [093424] +09:35:17 [ 13] [ 4] [0320] +09:35:17 [ 14] [ 4] [4912] +09:35:17 [ 15] [ 4] [0320] +09:35:17 [ 18] [ 4] [6011] +09:35:17 [ 19] [ 3] [418] +09:35:17 [ 22] [ 3] [021] +09:35:17 [ 25] [ 2] [01] +09:35:17 [ 28] [ 9] [D00002000] +09:35:17 [ 32] [ 6] [180893] +09:35:17 [ 35] [ 32] [6213545001108848=491212010884066] +09:35:17 [ 37] [ 12] [507902267607] +09:35:17 [ 41] [ 8] [0221XKKM] +09:35:17 [ 42] [ 15] [999999 ] +09:35:17 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:35:17 [ 49] [ 3] [418] +09:35:17 [ 52] [ 16] [2FF7E970074030F1] +09:35:17 ============================================================================ +09:35:17 + + +waiting on router queue for slot.... +09:35:17 Sending to : +09:35:17 ============================================================================ +09:35:17 ============================================================================ +09:35:17 Slot Id : <91> +09:35:17 Transaction Type : REQUEST +09:35:17 Received From : +09:35:17 ============================================================================ +09:35:17 FNo. Len. Field Value +09:35:17 ============================================================================ +09:35:17 [ 1] [ 4] [0200] +09:35:17 [ 2] [ 16] [6213545001108848] +09:35:17 [ 3] [ 6] [010000] +09:35:17 [ 4] [ 12] [000100000000] +09:35:17 [ 7] [ 10] [0320023424] +09:35:17 [ 11] [ 6] [267607] +09:35:17 [ 12] [ 6] [093424] +09:35:17 [ 13] [ 4] [0320] +09:35:17 [ 14] [ 4] [4912] +09:35:17 [ 15] [ 4] [0320] +09:35:17 [ 18] [ 4] [6011] +09:35:17 [ 19] [ 3] [418] +09:35:17 [ 22] [ 3] [021] +09:35:17 [ 25] [ 2] [01] +09:35:17 [ 28] [ 9] [D00002000] +09:35:17 [ 32] [ 6] [180893] +09:35:17 [ 35] [ 32] [6213545001108848=491212010884066] +09:35:17 [ 37] [ 12] [507902267607] +09:35:17 [ 41] [ 8] [0221XKKM] +09:35:17 [ 42] [ 15] [999999 ] +09:35:17 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:35:17 [ 49] [ 3] [418] +09:35:17 [ 52] [ 16] [171E6442C88DAB4B] +09:35:17 ============================================================================ +09:35:17 + + +waiting on router queue for slot.... +09:35:17 Sending to : <0> +09:35:17 ============================================================================ +09:35:18 ============================================================================ +09:35:18 Slot Id : <91> +09:35:18 Transaction Type : RESPONSE +09:35:18 Received From : +09:35:18 ============================================================================ +09:35:18 FNo. Len. Field Value +09:35:18 ============================================================================ +09:35:18 [ 1] [ 4] [0210] +09:35:18 [ 2] [ 16] [6213545001108848] +09:35:18 [ 3] [ 6] [010000] +09:35:18 [ 4] [ 12] [000100000000] +09:35:18 [ 7] [ 10] [0320023424] +09:35:18 [ 11] [ 6] [267607] +09:35:18 [ 12] [ 6] [093424] +09:35:18 [ 13] [ 4] [0320] +09:35:18 [ 15] [ 4] [0320] +09:35:18 [ 18] [ 4] [6011] +09:35:18 [ 19] [ 3] [418] +09:35:18 [ 32] [ 6] [180893] +09:35:18 [ 35] [ 32] [6213545001108848=491212010884066] +09:35:18 [ 37] [ 12] [507902267607] +09:35:18 [ 38] [ 6] [036775] +09:35:18 [ 39] [ 2] [00] +09:35:18 [ 41] [ 8] [0221XKKM] +09:35:18 [ 49] [ 3] [418] +09:35:18 [ 54] [ 40] [0001418C0001149420000002418C000114942000] +09:35:18 ============================================================================ +09:35:18 Sending to : +09:35:18 ============================================================================ +09:35:18 + + +waiting on router queue for slot.... +09:35:20 ============================================================================ +09:35:20 Slot Id : <100> +09:35:20 Transaction Type : RESPONSE +09:35:20 Received From : +09:35:20 ============================================================================ +09:35:20 FNo. Len. Field Value +09:35:20 ============================================================================ +09:35:20 [ 1] [ 4] [0210] +09:35:20 [ 2] [ 16] [1808930200036226] +09:35:20 [ 3] [ 6] [010000] +09:35:20 [ 4] [ 12] [000030000000] +09:35:20 [ 6] [ 12] [000030000000] +09:35:20 [ 7] [ 10] [0320093308] +09:35:20 [ 11] [ 6] [936010] +09:35:20 [ 12] [ 6] [093308] +09:35:20 [ 13] [ 4] [0320] +09:35:20 [ 18] [ 4] [6011] +09:35:20 [ 19] [ 3] [418] +09:35:20 [ 22] [ 3] [021] +09:35:20 [ 28] [ 9] [D00002000] +09:35:20 [ 32] [ 6] [668899] +09:35:20 [ 35] [ 27] [1808930200036226=1803500523] +09:35:20 [ 37] [ 12] [507902179605] +09:35:20 [ 39] [ 2] [55] +09:35:20 [ 41] [ 8] [03004005] +09:35:20 [ 49] [ 3] [418] +09:35:20 [ 51] [ 3] [418] +09:35:20 [ 52] [ 16] [15E591FF2AF903B3] +09:35:20 ============================================================================ +09:35:20 Sending to : +09:35:20 ============================================================================ +09:35:20 + + +waiting on router queue for slot.... +09:35:20 ============================================================================ +09:35:20 Slot Id : <91> +09:35:20 Transaction Type : RESPONSE +09:35:20 Received From : +09:35:20 ============================================================================ +09:35:20 FNo. Len. Field Value +09:35:20 ============================================================================ +09:35:20 [ 1] [ 4] [0210] +09:35:20 [ 2] [ 16] [6213545001108848] +09:35:20 [ 3] [ 6] [010000] +09:35:20 [ 4] [ 12] [000100000000] +09:35:20 [ 7] [ 10] [0320023424] +09:35:20 [ 11] [ 6] [267607] +09:35:20 [ 12] [ 6] [093424] +09:35:20 [ 13] [ 4] [0320] +09:35:20 [ 15] [ 4] [0320] +09:35:20 [ 18] [ 4] [6011] +09:35:20 [ 19] [ 3] [418] +09:35:20 [ 32] [ 6] [180893] +09:35:20 [ 35] [ 32] [6213545001108848=491212010884066] +09:35:20 [ 37] [ 12] [507902267607] +09:35:20 [ 38] [ 6] [036775] +09:35:20 [ 39] [ 2] [00] +09:35:20 [ 41] [ 8] [0221XKKM] +09:35:20 [ 49] [ 3] [418] +09:35:20 [ 54] [ 40] [0001418C0001149420000002418C000114942000] +09:35:20 ============================================================================ +09:35:20 Calculate Source COMM Id = 2 +09:35:20 ============================================================================ +09:35:20 + + +waiting on router queue for slot.... +09:35:21 ============================================================================ +09:35:21 Slot Id : <100> +09:35:21 Transaction Type : RESPONSE +09:35:21 Received From : +09:35:21 ============================================================================ +09:35:21 FNo. Len. Field Value +09:35:21 ============================================================================ +09:35:21 [ 1] [ 4] [0210] +09:35:21 [ 2] [ 16] [1808930200036226] +09:35:21 [ 3] [ 6] [010000] +09:35:21 [ 4] [ 12] [000030000000] +09:35:21 [ 6] [ 12] [000030000000] +09:35:21 [ 7] [ 10] [0320093308] +09:35:21 [ 11] [ 6] [936010] +09:35:21 [ 12] [ 6] [093308] +09:35:21 [ 13] [ 4] [0320] +09:35:21 [ 18] [ 4] [6011] +09:35:21 [ 19] [ 3] [418] +09:35:21 [ 22] [ 3] [021] +09:35:21 [ 28] [ 9] [D00002000] +09:35:21 [ 32] [ 6] [668899] +09:35:21 [ 35] [ 27] [1808930200036226=1803500523] +09:35:21 [ 37] [ 12] [507902179605] +09:35:21 [ 39] [ 2] [55] +09:35:21 [ 41] [ 8] [03004005] +09:35:21 [ 49] [ 3] [418] +09:35:21 [ 51] [ 3] [418] +09:35:21 [ 52] [ 16] [15E591FF2AF903B3] +09:35:21 ============================================================================ +09:35:21 Calculate Source COMM Id = 4 +09:35:21 ============================================================================ +09:35:21 + + +waiting on router queue for slot.... +09:35:24 ============================================================================ +09:35:24 Slot Id : <77> +09:35:24 Transaction Type : REQUEST +09:35:24 Received From : +09:35:24 ============================================================================ +09:35:24 FNo. Len. Field Value +09:35:24 ============================================================================ +09:35:24 [ 1] [ 4] [0800] +09:35:24 [ 7] [ 10] [0320164712] +09:35:24 [ 11] [ 6] [094712] +09:35:24 [ 37] [ 12] [57909094712] +09:35:24 [ 70] [ 3] [301] +09:35:24 ============================================================================ +09:35:24 + + +waiting on router queue for slot.... +09:35:24 Sending to : +09:35:24 ============================================================================ +09:35:24 ============================================================================ +09:35:24 Slot Id : <77> +09:35:24 Transaction Type : RESPONSE +09:35:24 Received From : +09:35:24 ============================================================================ +09:35:24 FNo. Len. Field Value +09:35:24 ============================================================================ +09:35:24 [ 1] [ 4] [0810] +09:35:24 [ 7] [ 10] [0320164712] +09:35:24 [ 11] [ 6] [094712] +09:35:24 [ 37] [ 12] [579090947120] +09:35:24 [ 39] [ 2] [00] +09:35:24 [ 70] [ 3] [810] +09:35:24 ============================================================================ +09:35:24 Calculate Source COMM Id = 6 +09:35:24 ============================================================================ +09:35:24 + + +waiting on router queue for slot.... +09:35:36 ============================================================================ +09:35:36 Slot Id : <65> +09:35:36 Transaction Type : REQUEST +09:35:36 Received From : +09:35:36 ============================================================================ +09:35:36 FNo. Len. Field Value +09:35:36 ============================================================================ +09:35:36 [ 1] [ 4] [0800] +09:35:36 [ 7] [ 10] [0320023444] +09:35:36 [ 11] [ 6] [155663] +09:35:36 [ 70] [ 3] [301] +09:35:36 ============================================================================ +09:35:36 + + +waiting on router queue for slot.... +09:35:36 Sending to : +09:35:36 ============================================================================ +09:35:36 ============================================================================ +09:35:36 Slot Id : <65> +09:35:36 Transaction Type : RESPONSE +09:35:36 Received From : +09:35:36 ============================================================================ +09:35:36 FNo. Len. Field Value +09:35:36 ============================================================================ +09:35:36 [ 1] [ 4] [0810] +09:35:36 [ 7] [ 10] [0320023444] +09:35:36 [ 11] [ 6] [155663] +09:35:36 [ 39] [ 2] [00] +09:35:36 [ 70] [ 3] [301] +09:35:36 ============================================================================ +09:35:36 Calculate Source COMM Id = 2 +09:35:36 ============================================================================ +09:35:36 + + +waiting on router queue for slot.... +09:35:40 ============================================================================ +09:35:40 Slot Id : <72> +09:35:40 Transaction Type : REQUEST +09:35:40 Received From : +09:35:40 ============================================================================ +09:35:40 FNo. Len. Field Value +09:35:40 ============================================================================ +09:35:40 [ 1] [ 4] [0200] +09:35:40 [ 2] [ 16] [6213541000646201] +09:35:40 [ 3] [ 6] [010000] +09:35:40 [ 4] [ 12] [000200000000] +09:35:40 [ 7] [ 10] [0320023448] +09:35:40 [ 11] [ 6] [267616] +09:35:40 [ 12] [ 6] [093448] +09:35:40 [ 13] [ 4] [0320] +09:35:40 [ 14] [ 4] [4912] +09:35:40 [ 15] [ 4] [0320] +09:35:40 [ 18] [ 4] [6011] +09:35:40 [ 19] [ 3] [418] +09:35:40 [ 22] [ 3] [021] +09:35:40 [ 25] [ 2] [01] +09:35:40 [ 28] [ 9] [D00002000] +09:35:40 [ 32] [ 6] [180893] +09:35:40 [ 35] [ 32] [6213541000646201=491212014620504] +09:35:40 [ 37] [ 12] [507902267616] +09:35:40 [ 41] [ 8] [0523XYNG] +09:35:40 [ 42] [ 15] [999999 ] +09:35:40 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:35:40 [ 49] [ 3] [418] +09:35:40 [ 52] [ 16] [756DBEF7787A3EE4] +09:35:40 ============================================================================ +09:35:40 + + +waiting on router queue for slot.... +09:35:40 Sending to : +09:35:40 ============================================================================ +09:35:40 Sending to : +09:35:40 ============================================================================ +09:35:41 ============================================================================ +09:35:41 Slot Id : <106> +09:35:41 Transaction Type : REQUEST +09:35:41 Received From : +09:35:41 ============================================================================ +09:35:41 FNo. Len. Field Value +09:35:41 ============================================================================ +09:35:41 [ 1] [ 4] [0200] +09:35:41 [ 2] [ 16] [6213545000633341] +09:35:41 [ 3] [ 6] [011000] +09:35:41 [ 4] [ 12] [000050000000] +09:35:41 [ 7] [ 10] [0320093602] +09:35:41 [ 11] [ 6] [203057] +09:35:41 [ 12] [ 6] [093009] +09:35:41 [ 13] [ 4] [0320] +09:35:41 [ 14] [ 4] [4912] +09:35:41 [ 15] [ 4] [0320] +09:35:41 [ 18] [ 4] [6011] +09:35:41 [ 19] [ 3] [418] +09:35:41 [ 22] [ 3] [021] +09:35:41 [ 25] [ 2] [01] +09:35:41 [ 28] [ 9] [D00002000] +09:35:41 [ 32] [ 6] [198901] +09:35:41 [ 35] [ 32] [6213545000633341=491212013334672] +09:35:41 [ 37] [ 12] [507909203057] +09:35:41 [ 41] [ 8] [01529000] +09:35:41 [ 42] [ 15] [000000041529000] +09:35:41 [ 43] [ 40] [JDB ATM HQ 0 VN ] +09:35:41 [ 49] [ 3] [418] +09:35:41 [ 52] [ 16] [E857502352A0F47D] +09:35:41 ============================================================================ +09:35:41 + + +waiting on router queue for slot.... +09:35:41 Sending to : +09:35:41 ============================================================================ +09:35:41 Sending to : +09:35:41 ============================================================================ +09:35:41 ============================================================================ +09:35:41 Slot Id : <72> +09:35:41 Transaction Type : REQUEST +09:35:41 Received From : +09:35:41 ============================================================================ +09:35:41 FNo. Len. Field Value +09:35:41 ============================================================================ +09:35:41 [ 1] [ 4] [0200] +09:35:41 [ 2] [ 16] [6213541000646201] +09:35:41 [ 3] [ 6] [010000] +09:35:41 [ 4] [ 12] [000200000000] +09:35:41 [ 7] [ 10] [0320023448] +09:35:41 [ 11] [ 6] [267616] +09:35:41 [ 12] [ 6] [093448] +09:35:41 [ 13] [ 4] [0320] +09:35:41 [ 14] [ 4] [4912] +09:35:41 [ 15] [ 4] [0320] +09:35:41 [ 18] [ 4] [6011] +09:35:41 [ 19] [ 3] [418] +09:35:41 [ 22] [ 3] [021] +09:35:41 [ 25] [ 2] [01] +09:35:41 [ 28] [ 9] [D00002000] +09:35:41 [ 32] [ 6] [180893] +09:35:41 [ 35] [ 32] [6213541000646201=491212014620504] +09:35:41 [ 37] [ 12] [507902267616] +09:35:41 [ 41] [ 8] [0523XYNG] +09:35:41 [ 42] [ 15] [999999 ] +09:35:41 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:35:41 [ 49] [ 3] [418] +09:35:41 [ 52] [ 16] [756DBEF7787A3EE4] +09:35:41 ============================================================================ +09:35:41 + + +waiting on router queue for slot.... +09:35:41 Sending to : +09:35:41 ============================================================================ +09:35:41 ============================================================================ +09:35:41 Slot Id : <72> +09:35:41 Transaction Type : REQUEST +09:35:41 Received From : +09:35:41 ============================================================================ +09:35:41 FNo. Len. Field Value +09:35:41 ============================================================================ +09:35:41 [ 1] [ 4] [0200] +09:35:41 [ 2] [ 16] [6213541000646201] +09:35:41 [ 3] [ 6] [010000] +09:35:41 [ 4] [ 12] [000200000000] +09:35:41 [ 7] [ 10] [0320023448] +09:35:41 [ 11] [ 6] [267616] +09:35:41 [ 12] [ 6] [093448] +09:35:41 [ 13] [ 4] [0320] +09:35:41 [ 14] [ 4] [4912] +09:35:41 [ 15] [ 4] [0320] +09:35:41 [ 18] [ 4] [6011] +09:35:41 [ 19] [ 3] [418] +09:35:41 [ 22] [ 3] [021] +09:35:41 [ 25] [ 2] [01] +09:35:41 [ 28] [ 9] [D00002000] +09:35:41 [ 32] [ 6] [180893] +09:35:41 [ 35] [ 32] [6213541000646201=491212014620504] +09:35:41 [ 37] [ 12] [507902267616] +09:35:41 [ 41] [ 8] [0523XYNG] +09:35:41 [ 42] [ 15] [999999 ] +09:35:41 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:35:41 [ 49] [ 3] [418] +09:35:41 [ 52] [ 16] [0C2F06640D5A7025] +09:35:41 ============================================================================ +09:35:41 + + +waiting on router queue for slot.... +09:35:41 Sending to : <0> +09:35:41 ============================================================================ +09:35:41 ============================================================================ +09:35:41 Slot Id : <106> +09:35:41 Transaction Type : REQUEST +09:35:41 Received From : +09:35:41 ============================================================================ +09:35:41 FNo. Len. Field Value +09:35:41 ============================================================================ +09:35:41 [ 1] [ 4] [0200] +09:35:41 [ 2] [ 16] [6213545000633341] +09:35:41 [ 3] [ 6] [011000] +09:35:41 [ 4] [ 12] [000050000000] +09:35:41 [ 7] [ 10] [0320093602] +09:35:41 [ 11] [ 6] [203057] +09:35:41 [ 12] [ 6] [093009] +09:35:41 [ 13] [ 4] [0320] +09:35:41 [ 14] [ 4] [4912] +09:35:41 [ 15] [ 4] [0320] +09:35:41 [ 18] [ 4] [6011] +09:35:41 [ 19] [ 3] [418] +09:35:41 [ 22] [ 3] [021] +09:35:41 [ 25] [ 2] [01] +09:35:41 [ 28] [ 9] [D00002000] +09:35:41 [ 32] [ 6] [198901] +09:35:41 [ 35] [ 32] [6213545000633341=491212013334672] +09:35:41 [ 37] [ 12] [507909203057] +09:35:41 [ 41] [ 8] [01529000] +09:35:41 [ 42] [ 15] [000000041529000] +09:35:41 [ 43] [ 40] [JDB ATM HQ 0 VN ] +09:35:41 [ 49] [ 3] [418] +09:35:41 [ 52] [ 16] [E857502352A0F47D] +09:35:41 ============================================================================ +09:35:41 + + +waiting on router queue for slot.... +09:35:41 Sending to : +09:35:41 ============================================================================ +09:35:41 ============================================================================ +09:35:41 Slot Id : <106> +09:35:41 Transaction Type : REQUEST +09:35:41 Received From : +09:35:41 ============================================================================ +09:35:41 FNo. Len. Field Value +09:35:41 ============================================================================ +09:35:41 [ 1] [ 4] [0200] +09:35:41 [ 2] [ 16] [6213545000633341] +09:35:41 [ 3] [ 6] [011000] +09:35:41 [ 4] [ 12] [000050000000] +09:35:41 [ 7] [ 10] [0320093602] +09:35:41 [ 11] [ 6] [203057] +09:35:41 [ 12] [ 6] [093009] +09:35:41 [ 13] [ 4] [0320] +09:35:41 [ 14] [ 4] [4912] +09:35:41 [ 15] [ 4] [0320] +09:35:41 [ 18] [ 4] [6011] +09:35:41 [ 19] [ 3] [418] +09:35:41 [ 22] [ 3] [021] +09:35:41 [ 25] [ 2] [01] +09:35:41 [ 28] [ 9] [D00002000] +09:35:41 [ 32] [ 6] [198901] +09:35:41 [ 35] [ 32] [6213545000633341=491212013334672] +09:35:41 [ 37] [ 12] [507909203057] +09:35:41 [ 41] [ 8] [01529000] +09:35:41 [ 42] [ 15] [000000041529000] +09:35:41 [ 43] [ 40] [JDB ATM HQ 0 VN ] +09:35:41 [ 49] [ 3] [418] +09:35:41 [ 52] [ 16] [7446FB1205B0AF23] +09:35:41 ============================================================================ +09:35:41 + + +waiting on router queue for slot.... +09:35:41 Sending to : <0> +09:35:41 ============================================================================ +09:35:41 ============================================================================ +09:35:41 Slot Id : <72> +09:35:41 Transaction Type : RESPONSE +09:35:41 Received From : +09:35:41 ============================================================================ +09:35:41 FNo. Len. Field Value +09:35:41 ============================================================================ +09:35:41 [ 1] [ 4] [0210] +09:35:41 [ 2] [ 16] [6213541000646201] +09:35:41 [ 3] [ 6] [010000] +09:35:41 [ 4] [ 12] [000200000000] +09:35:41 [ 7] [ 10] [0320023448] +09:35:41 [ 11] [ 6] [267616] +09:35:41 [ 12] [ 6] [093448] +09:35:41 [ 13] [ 4] [0320] +09:35:41 [ 15] [ 4] [0320] +09:35:41 [ 18] [ 4] [6011] +09:35:41 [ 19] [ 3] [418] +09:35:41 [ 22] [ 3] [021] +09:35:41 [ 32] [ 6] [180893] +09:35:41 [ 35] [ 32] [6213541000646201=491212014620504] +09:35:41 [ 37] [ 12] [507902267616] +09:35:41 [ 39] [ 2] [61] +09:35:41 [ 41] [ 8] [0523XYNG] +09:35:41 [ 49] [ 3] [418] +09:35:41 ============================================================================ +09:35:41 Sending to : +09:35:41 ============================================================================ +09:35:41 + + +waiting on router queue for slot.... +09:35:41 ============================================================================ +09:35:41 Slot Id : <106> +09:35:41 Transaction Type : RESPONSE +09:35:41 Received From : +09:35:41 ============================================================================ +09:35:41 FNo. Len. Field Value +09:35:41 ============================================================================ +09:35:41 [ 1] [ 4] [0210] +09:35:41 [ 2] [ 16] [6213545000633341] +09:35:41 [ 3] [ 6] [011000] +09:35:41 [ 4] [ 12] [000050000000] +09:35:41 [ 7] [ 10] [0320093602] +09:35:41 [ 11] [ 6] [203057] +09:35:41 [ 12] [ 6] [093009] +09:35:41 [ 13] [ 4] [0320] +09:35:41 [ 15] [ 4] [0320] +09:35:41 [ 18] [ 4] [6011] +09:35:41 [ 19] [ 3] [418] +09:35:41 [ 22] [ 3] [021] +09:35:41 [ 32] [ 6] [198901] +09:35:41 [ 35] [ 32] [6213545000633341=491212013334672] +09:35:41 [ 37] [ 12] [507909203057] +09:35:41 [ 38] [ 6] [093537] +09:35:41 [ 39] [ 2] [55] +09:35:41 [ 41] [ 8] [01529000] +09:35:41 [ 49] [ 3] [418] +09:35:41 ============================================================================ +09:35:41 Sending to : +09:35:41 ============================================================================ +09:35:41 + + +waiting on router queue for slot.... +09:35:42 ============================================================================ +09:35:42 Slot Id : <72> +09:35:42 Transaction Type : RESPONSE +09:35:42 Received From : +09:35:42 ============================================================================ +09:35:42 FNo. Len. Field Value +09:35:42 ============================================================================ +09:35:42 [ 1] [ 4] [0210] +09:35:42 [ 2] [ 16] [6213541000646201] +09:35:42 [ 3] [ 6] [010000] +09:35:42 [ 4] [ 12] [000200000000] +09:35:42 [ 7] [ 10] [0320023448] +09:35:42 [ 11] [ 6] [267616] +09:35:42 [ 12] [ 6] [093448] +09:35:42 [ 13] [ 4] [0320] +09:35:42 [ 15] [ 4] [0320] +09:35:42 [ 18] [ 4] [6011] +09:35:42 [ 19] [ 3] [418] +09:35:42 [ 22] [ 3] [021] +09:35:42 [ 32] [ 6] [180893] +09:35:42 [ 35] [ 32] [6213541000646201=491212014620504] +09:35:42 [ 37] [ 12] [507902267616] +09:35:42 [ 39] [ 2] [61] +09:35:42 [ 41] [ 8] [0523XYNG] +09:35:42 [ 49] [ 3] [418] +09:35:42 ============================================================================ +09:35:42 Calculate Source COMM Id = 2 +09:35:42 ============================================================================ +09:35:42 + + +waiting on router queue for slot.... +09:35:44 ============================================================================ +09:35:44 Slot Id : <106> +09:35:44 Transaction Type : RESPONSE +09:35:44 Received From : +09:35:44 ============================================================================ +09:35:44 FNo. Len. Field Value +09:35:44 ============================================================================ +09:35:44 [ 1] [ 4] [0210] +09:35:44 [ 2] [ 16] [6213545000633341] +09:35:44 [ 3] [ 6] [011000] +09:35:44 [ 4] [ 12] [000050000000] +09:35:44 [ 7] [ 10] [0320093602] +09:35:44 [ 11] [ 6] [203057] +09:35:44 [ 12] [ 6] [093009] +09:35:44 [ 13] [ 4] [0320] +09:35:44 [ 15] [ 4] [0320] +09:35:44 [ 18] [ 4] [6011] +09:35:44 [ 19] [ 3] [418] +09:35:44 [ 22] [ 3] [021] +09:35:44 [ 32] [ 6] [198901] +09:35:44 [ 35] [ 32] [6213545000633341=491212013334672] +09:35:44 [ 37] [ 12] [507909203057] +09:35:44 [ 38] [ 6] [093537] +09:35:44 [ 39] [ 2] [55] +09:35:44 [ 41] [ 8] [01529000] +09:35:44 [ 49] [ 3] [418] +09:35:44 ============================================================================ +09:35:44 Calculate Source COMM Id = 5 +09:35:44 ============================================================================ +09:35:44 + + +waiting on router queue for slot.... +09:35:46 ============================================================================ +09:35:46 Slot Id : <76> +09:35:46 Transaction Type : REQUEST +09:35:46 Received From : +09:35:46 ============================================================================ +09:35:46 FNo. Len. Field Value +09:35:46 ============================================================================ +09:35:46 [ 1] [ 4] [0200] +09:35:46 [ 2] [ 16] [6213544001359980] +09:35:46 [ 3] [ 6] [010000] +09:35:46 [ 4] [ 12] [000100000000] +09:35:46 [ 7] [ 10] [0320023453] +09:35:46 [ 11] [ 6] [267618] +09:35:46 [ 12] [ 6] [093453] +09:35:46 [ 13] [ 4] [0320] +09:35:46 [ 14] [ 4] [4912] +09:35:46 [ 15] [ 4] [0320] +09:35:46 [ 18] [ 4] [6011] +09:35:46 [ 19] [ 3] [418] +09:35:46 [ 22] [ 3] [021] +09:35:46 [ 25] [ 2] [01] +09:35:46 [ 28] [ 9] [D00002000] +09:35:46 [ 32] [ 6] [180893] +09:35:46 [ 35] [ 32] [6213544001359980=491212015998593] +09:35:46 [ 37] [ 12] [507902267618] +09:35:46 [ 41] [ 8] [0466PSLB] +09:35:46 [ 42] [ 15] [999999 ] +09:35:46 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +09:35:46 [ 49] [ 3] [418] +09:35:46 [ 52] [ 16] [8D56264A8E63C7E7] +09:35:46 ============================================================================ +09:35:46 + + +waiting on router queue for slot.... +09:35:46 Sending to : +09:35:46 ============================================================================ +09:35:46 Sending to : +09:35:46 ============================================================================ +09:35:46 ============================================================================ +09:35:46 Slot Id : <76> +09:35:46 Transaction Type : REQUEST +09:35:46 Received From : +09:35:46 ============================================================================ +09:35:46 FNo. Len. Field Value +09:35:46 ============================================================================ +09:35:46 [ 1] [ 4] [0200] +09:35:46 [ 2] [ 16] [6213544001359980] +09:35:46 [ 3] [ 6] [010000] +09:35:46 [ 4] [ 12] [000100000000] +09:35:46 [ 7] [ 10] [0320023453] +09:35:46 [ 11] [ 6] [267618] +09:35:46 [ 12] [ 6] [093453] +09:35:46 [ 13] [ 4] [0320] +09:35:46 [ 14] [ 4] [4912] +09:35:46 [ 15] [ 4] [0320] +09:35:46 [ 18] [ 4] [6011] +09:35:46 [ 19] [ 3] [418] +09:35:46 [ 22] [ 3] [021] +09:35:46 [ 25] [ 2] [01] +09:35:46 [ 28] [ 9] [D00002000] +09:35:46 [ 32] [ 6] [180893] +09:35:46 [ 35] [ 32] [6213544001359980=491212015998593] +09:35:46 [ 37] [ 12] [507902267618] +09:35:46 [ 41] [ 8] [0466PSLB] +09:35:46 [ 42] [ 15] [999999 ] +09:35:46 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +09:35:46 [ 49] [ 3] [418] +09:35:46 [ 52] [ 16] [8D56264A8E63C7E7] +09:35:46 ============================================================================ +09:35:46 + + +waiting on router queue for slot.... +09:35:46 Sending to : +09:35:46 ============================================================================ +09:35:46 ============================================================================ +09:35:46 Slot Id : <76> +09:35:46 Transaction Type : REQUEST +09:35:46 Received From : +09:35:46 ============================================================================ +09:35:46 FNo. Len. Field Value +09:35:46 ============================================================================ +09:35:46 [ 1] [ 4] [0200] +09:35:46 [ 2] [ 16] [6213544001359980] +09:35:46 [ 3] [ 6] [010000] +09:35:46 [ 4] [ 12] [000100000000] +09:35:46 [ 7] [ 10] [0320023453] +09:35:46 [ 11] [ 6] [267618] +09:35:46 [ 12] [ 6] [093453] +09:35:46 [ 13] [ 4] [0320] +09:35:46 [ 14] [ 4] [4912] +09:35:46 [ 15] [ 4] [0320] +09:35:46 [ 18] [ 4] [6011] +09:35:46 [ 19] [ 3] [418] +09:35:46 [ 22] [ 3] [021] +09:35:46 [ 25] [ 2] [01] +09:35:46 [ 28] [ 9] [D00002000] +09:35:46 [ 32] [ 6] [180893] +09:35:46 [ 35] [ 32] [6213544001359980=491212015998593] +09:35:46 [ 37] [ 12] [507902267618] +09:35:46 [ 41] [ 8] [0466PSLB] +09:35:46 [ 42] [ 15] [999999 ] +09:35:46 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +09:35:46 [ 49] [ 3] [418] +09:35:46 [ 52] [ 16] [F14BD8E417016046] +09:35:46 ============================================================================ +09:35:46 + + +waiting on router queue for slot.... +09:35:46 Sending to : <0> +09:35:46 ============================================================================ +09:35:47 ============================================================================ +09:35:47 Slot Id : <76> +09:35:47 Transaction Type : RESPONSE +09:35:47 Received From : +09:35:47 ============================================================================ +09:35:47 FNo. Len. Field Value +09:35:47 ============================================================================ +09:35:47 [ 1] [ 4] [0210] +09:35:47 [ 2] [ 16] [6213544001359980] +09:35:47 [ 3] [ 6] [010000] +09:35:47 [ 4] [ 12] [000100000000] +09:35:47 [ 7] [ 10] [0320023453] +09:35:47 [ 11] [ 6] [267618] +09:35:47 [ 12] [ 6] [093453] +09:35:47 [ 13] [ 4] [0320] +09:35:47 [ 15] [ 4] [0320] +09:35:47 [ 18] [ 4] [6011] +09:35:47 [ 19] [ 3] [418] +09:35:47 [ 32] [ 6] [180893] +09:35:47 [ 35] [ 32] [6213544001359980=491212015998593] +09:35:47 [ 37] [ 12] [507902267618] +09:35:47 [ 38] [ 6] [694580] +09:35:47 [ 39] [ 2] [00] +09:35:47 [ 41] [ 8] [0466PSLB] +09:35:47 [ 49] [ 3] [418] +09:35:47 [ 54] [ 40] [0001418C0002233265570002418C000223326557] +09:35:47 ============================================================================ +09:35:47 Sending to : +09:35:47 ============================================================================ +09:35:47 + + +waiting on router queue for slot.... +09:35:49 ============================================================================ +09:35:49 Slot Id : <76> +09:35:49 Transaction Type : RESPONSE +09:35:49 Received From : +09:35:49 ============================================================================ +09:35:49 FNo. Len. Field Value +09:35:49 ============================================================================ +09:35:49 [ 1] [ 4] [0210] +09:35:49 [ 2] [ 16] [6213544001359980] +09:35:49 [ 3] [ 6] [010000] +09:35:49 [ 4] [ 12] [000100000000] +09:35:49 [ 7] [ 10] [0320023453] +09:35:49 [ 11] [ 6] [267618] +09:35:49 [ 12] [ 6] [093453] +09:35:49 [ 13] [ 4] [0320] +09:35:49 [ 15] [ 4] [0320] +09:35:49 [ 18] [ 4] [6011] +09:35:49 [ 19] [ 3] [418] +09:35:49 [ 32] [ 6] [180893] +09:35:49 [ 35] [ 32] [6213544001359980=491212015998593] +09:35:49 [ 37] [ 12] [507902267618] +09:35:49 [ 38] [ 6] [694580] +09:35:49 [ 39] [ 2] [00] +09:35:49 [ 41] [ 8] [0466PSLB] +09:35:49 [ 49] [ 3] [418] +09:35:49 [ 54] [ 40] [0001418C0002233265570002418C000223326557] +09:35:49 ============================================================================ +09:35:49 Calculate Source COMM Id = 2 +09:35:49 ============================================================================ +09:35:49 + + +waiting on router queue for slot.... +09:35:55 ============================================================================ +09:35:55 Slot Id : <66> +09:35:55 Transaction Type : REQUEST +09:35:55 Received From : +09:35:55 ============================================================================ +09:35:55 FNo. Len. Field Value +09:35:55 ============================================================================ +09:35:55 [ 1] [ 4] [0200] +09:35:55 [ 2] [ 16] [6688990107899708] +09:35:55 [ 3] [ 6] [010000] +09:35:55 [ 4] [ 12] [000010000000] +09:35:55 [ 7] [ 10] [0320023501] +09:35:55 [ 11] [ 6] [267620] +09:35:55 [ 12] [ 6] [093501] +09:35:55 [ 13] [ 4] [0320] +09:35:55 [ 14] [ 4] [4404] +09:35:55 [ 15] [ 4] [0320] +09:35:55 [ 18] [ 4] [6011] +09:35:55 [ 19] [ 3] [418] +09:35:55 [ 22] [ 3] [021] +09:35:55 [ 25] [ 2] [01] +09:35:55 [ 28] [ 9] [D00002000] +09:35:55 [ 32] [ 6] [180893] +09:35:55 [ 35] [ 37] [6688990107899708=44041231970806900000] +09:35:55 [ 37] [ 12] [507902267620] +09:35:55 [ 41] [ 8] [0467PSLK] +09:35:55 [ 42] [ 15] [999999 ] +09:35:55 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +09:35:55 [ 49] [ 3] [418] +09:35:55 [ 52] [ 16] [7A2F6B3576AAB223] +09:35:55 ============================================================================ +09:35:55 + + +waiting on router queue for slot.... +09:35:55 Sending to : +09:35:55 ============================================================================ +09:35:55 Sending to : +09:35:55 ============================================================================ +09:35:55 ============================================================================ +09:35:55 Slot Id : <66> +09:35:55 Transaction Type : REQUEST +09:35:55 Received From : +09:35:55 ============================================================================ +09:35:55 FNo. Len. Field Value +09:35:55 ============================================================================ +09:35:55 [ 1] [ 4] [0200] +09:35:55 [ 2] [ 16] [6688990107899708] +09:35:55 [ 3] [ 6] [010000] +09:35:55 [ 4] [ 12] [000010000000] +09:35:55 [ 7] [ 10] [0320023501] +09:35:55 [ 11] [ 6] [267620] +09:35:55 [ 12] [ 6] [093501] +09:35:55 [ 13] [ 4] [0320] +09:35:55 [ 14] [ 4] [4404] +09:35:55 [ 15] [ 4] [0320] +09:35:55 [ 18] [ 4] [6011] +09:35:55 [ 19] [ 3] [418] +09:35:55 [ 22] [ 3] [021] +09:35:55 [ 25] [ 2] [01] +09:35:55 [ 28] [ 9] [D00002000] +09:35:55 [ 32] [ 6] [180893] +09:35:55 [ 35] [ 37] [6688990107899708=44041231970806900000] +09:35:55 [ 37] [ 12] [507902267620] +09:35:55 [ 41] [ 8] [0467PSLK] +09:35:55 [ 42] [ 15] [999999 ] +09:35:55 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +09:35:55 [ 49] [ 3] [418] +09:35:55 [ 52] [ 16] [7A2F6B3576AAB223] +09:35:55 ============================================================================ +09:35:55 + + +waiting on router queue for slot.... +09:35:55 Sending to : +09:35:55 ============================================================================ +09:35:55 ============================================================================ +09:35:55 Slot Id : <66> +09:35:55 Transaction Type : REQUEST +09:35:55 Received From : +09:35:55 ============================================================================ +09:35:55 FNo. Len. Field Value +09:35:55 ============================================================================ +09:35:55 [ 1] [ 4] [0200] +09:35:55 [ 2] [ 16] [6688990107899708] +09:35:55 [ 3] [ 6] [010000] +09:35:55 [ 4] [ 12] [000010000000] +09:35:55 [ 7] [ 10] [0320023501] +09:35:55 [ 11] [ 6] [267620] +09:35:55 [ 12] [ 6] [093501] +09:35:55 [ 13] [ 4] [0320] +09:35:55 [ 14] [ 4] [4404] +09:35:55 [ 15] [ 4] [0320] +09:35:55 [ 18] [ 4] [6011] +09:35:55 [ 19] [ 3] [418] +09:35:55 [ 22] [ 3] [021] +09:35:55 [ 25] [ 2] [01] +09:35:55 [ 28] [ 9] [D00002000] +09:35:55 [ 32] [ 6] [180893] +09:35:55 [ 35] [ 37] [6688990107899708=44041231970806900000] +09:35:55 [ 37] [ 12] [507902267620] +09:35:55 [ 41] [ 8] [0467PSLK] +09:35:55 [ 42] [ 15] [999999 ] +09:35:55 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +09:35:55 [ 49] [ 3] [418] +09:35:55 [ 52] [ 16] [31215B915E0AD8E8] +09:35:55 ============================================================================ +09:35:55 + + +waiting on router queue for slot.... +09:35:55 Sending to : <0> +09:35:55 ============================================================================ +09:35:55 ============================================================================ +09:35:55 Slot Id : <66> +09:35:55 Transaction Type : RESPONSE +09:35:55 Received From : +09:35:55 ============================================================================ +09:35:55 FNo. Len. Field Value +09:35:55 ============================================================================ +09:35:55 [ 1] [ 4] [0210] +09:35:55 [ 2] [ 16] [6688990107899708] +09:35:55 [ 3] [ 6] [010000] +09:35:55 [ 4] [ 12] [000010000000] +09:35:55 [ 7] [ 10] [0320023501] +09:35:55 [ 11] [ 6] [267620] +09:35:55 [ 12] [ 6] [093501] +09:35:55 [ 13] [ 4] [0320] +09:35:55 [ 15] [ 4] [0320] +09:35:55 [ 18] [ 4] [6011] +09:35:55 [ 19] [ 3] [418] +09:35:55 [ 22] [ 3] [021] +09:35:55 [ 32] [ 6] [180893] +09:35:55 [ 35] [ 37] [6688990107899708=44041231970806900000] +09:35:55 [ 37] [ 12] [507902267620] +09:35:55 [ 39] [ 2] [14] +09:35:55 [ 41] [ 8] [0467PSLK] +09:35:55 [ 49] [ 3] [418] +09:35:55 ============================================================================ +09:35:55 Sending to : +09:35:55 ============================================================================ +09:35:55 + + +waiting on router queue for slot.... +09:35:56 ============================================================================ +09:35:56 Slot Id : <66> +09:35:56 Transaction Type : RESPONSE +09:35:56 Received From : +09:35:56 ============================================================================ +09:35:56 FNo. Len. Field Value +09:35:56 ============================================================================ +09:35:56 [ 1] [ 4] [0210] +09:35:56 [ 2] [ 16] [6688990107899708] +09:35:56 [ 3] [ 6] [010000] +09:35:56 [ 4] [ 12] [000010000000] +09:35:56 [ 7] [ 10] [0320023501] +09:35:56 [ 11] [ 6] [267620] +09:35:56 [ 12] [ 6] [093501] +09:35:56 [ 13] [ 4] [0320] +09:35:56 [ 15] [ 4] [0320] +09:35:56 [ 18] [ 4] [6011] +09:35:56 [ 19] [ 3] [418] +09:35:56 [ 22] [ 3] [021] +09:35:56 [ 32] [ 6] [180893] +09:35:56 [ 35] [ 37] [6688990107899708=44041231970806900000] +09:35:56 [ 37] [ 12] [507902267620] +09:35:56 [ 39] [ 2] [14] +09:35:56 [ 41] [ 8] [0467PSLK] +09:35:56 [ 49] [ 3] [418] +09:35:56 ============================================================================ +09:35:56 Calculate Source COMM Id = 2 +09:35:56 ============================================================================ +09:35:56 + + +waiting on router queue for slot.... +09:35:57 ============================================================================ +09:35:57 Slot Id : <90> +09:35:57 Transaction Type : REQUEST +09:35:57 Received From : +09:35:57 ============================================================================ +09:35:57 FNo. Len. Field Value +09:35:57 ============================================================================ +09:35:57 [ 1] [ 4] [0200] +09:35:57 [ 2] [ 16] [6213545000633341] +09:35:57 [ 3] [ 6] [011000] +09:35:57 [ 4] [ 12] [000050000000] +09:35:57 [ 7] [ 10] [0320093619] +09:35:57 [ 11] [ 6] [203066] +09:35:57 [ 12] [ 6] [093026] +09:35:57 [ 13] [ 4] [0320] +09:35:57 [ 14] [ 4] [4912] +09:35:57 [ 15] [ 4] [0320] +09:35:57 [ 18] [ 4] [6011] +09:35:57 [ 19] [ 3] [418] +09:35:57 [ 22] [ 3] [021] +09:35:57 [ 25] [ 2] [01] +09:35:57 [ 28] [ 9] [D00002000] +09:35:57 [ 32] [ 6] [198901] +09:35:57 [ 35] [ 32] [6213545000633341=491212013334672] +09:35:57 [ 37] [ 12] [507909203066] +09:35:57 [ 41] [ 8] [01529000] +09:35:57 [ 42] [ 15] [000000041529000] +09:35:57 [ 43] [ 40] [JDB ATM HQ 0 VN ] +09:35:57 [ 49] [ 3] [418] +09:35:57 [ 52] [ 16] [244F59DB1E4D0252] +09:35:57 ============================================================================ +09:35:57 + + +waiting on router queue for slot.... +09:35:57 Sending to : +09:35:57 ============================================================================ +09:35:57 Sending to : +09:35:57 ============================================================================ +09:35:57 ============================================================================ +09:35:57 Slot Id : <114> +09:35:57 Transaction Type : REQUEST +09:35:57 Received From : +09:35:57 ============================================================================ +09:35:57 FNo. Len. Field Value +09:35:57 ============================================================================ +09:35:57 [ 1] [ 4] [0200] +09:35:57 [ 2] [ 16] [1808930200036226] +09:35:57 [ 3] [ 6] [010000] +09:35:57 [ 4] [ 12] [000020000000] +09:35:57 [ 7] [ 10] [0320093349] +09:35:57 [ 11] [ 6] [936036] +09:35:57 [ 12] [ 6] [093349] +09:35:57 [ 13] [ 4] [0320] +09:35:57 [ 15] [ 4] [0320] +09:35:57 [ 18] [ 4] [6011] +09:35:57 [ 19] [ 3] [418] +09:35:57 [ 22] [ 3] [021] +09:35:57 [ 25] [ 2] [01] +09:35:57 [ 28] [ 9] [D00002000] +09:35:57 [ 32] [ 6] [668899] +09:35:57 [ 35] [ 27] [1808930200036226=1803500523] +09:35:57 [ 37] [ 12] [507902179607] +09:35:57 [ 41] [ 8] [03004005] +09:35:57 [ 42] [ 15] [APT ] +09:35:57 [ 43] [ 40] [ MOUANGKEO UNIT MOUANGKEO ] +09:35:57 [ 49] [ 3] [418] +09:35:57 [ 52] [ 16] [896F2A42CC76CDF8] +09:35:57 ============================================================================ +09:35:57 + + +waiting on router queue for slot.... +09:35:57 Sending to : +09:35:57 ============================================================================ +09:35:57 Sending to : +09:35:57 ============================================================================ +09:35:58 ============================================================================ +09:35:58 Slot Id : <90> +09:35:58 Transaction Type : REQUEST +09:35:58 Received From : +09:35:58 ============================================================================ +09:35:58 FNo. Len. Field Value +09:35:58 ============================================================================ +09:35:58 [ 1] [ 4] [0200] +09:35:58 [ 2] [ 16] [6213545000633341] +09:35:58 [ 3] [ 6] [011000] +09:35:58 [ 4] [ 12] [000050000000] +09:35:58 [ 7] [ 10] [0320093619] +09:35:58 [ 11] [ 6] [203066] +09:35:58 [ 12] [ 6] [093026] +09:35:58 [ 13] [ 4] [0320] +09:35:58 [ 14] [ 4] [4912] +09:35:58 [ 15] [ 4] [0320] +09:35:58 [ 18] [ 4] [6011] +09:35:58 [ 19] [ 3] [418] +09:35:58 [ 22] [ 3] [021] +09:35:58 [ 25] [ 2] [01] +09:35:58 [ 28] [ 9] [D00002000] +09:35:58 [ 32] [ 6] [198901] +09:35:58 [ 35] [ 32] [6213545000633341=491212013334672] +09:35:58 [ 37] [ 12] [507909203066] +09:35:58 [ 41] [ 8] [01529000] +09:35:58 [ 42] [ 15] [000000041529000] +09:35:58 [ 43] [ 40] [JDB ATM HQ 0 VN ] +09:35:58 [ 49] [ 3] [418] +09:35:58 [ 52] [ 16] [244F59DB1E4D0252] +09:35:58 ============================================================================ +09:35:58 + + +waiting on router queue for slot.... +09:35:58 Sending to : +09:35:58 ============================================================================ +09:35:58 ============================================================================ +09:35:58 Slot Id : <90> +09:35:58 Transaction Type : REQUEST +09:35:58 Received From : +09:35:58 ============================================================================ +09:35:58 FNo. Len. Field Value +09:35:58 ============================================================================ +09:35:58 [ 1] [ 4] [0200] +09:35:58 [ 2] [ 16] [6213545000633341] +09:35:58 [ 3] [ 6] [011000] +09:35:58 [ 4] [ 12] [000050000000] +09:35:58 [ 7] [ 10] [0320093619] +09:35:58 [ 11] [ 6] [203066] +09:35:58 [ 12] [ 6] [093026] +09:35:58 [ 13] [ 4] [0320] +09:35:58 [ 14] [ 4] [4912] +09:35:58 [ 15] [ 4] [0320] +09:35:58 [ 18] [ 4] [6011] +09:35:58 [ 19] [ 3] [418] +09:35:58 [ 22] [ 3] [021] +09:35:58 [ 25] [ 2] [01] +09:35:58 [ 28] [ 9] [D00002000] +09:35:58 [ 32] [ 6] [198901] +09:35:58 [ 35] [ 32] [6213545000633341=491212013334672] +09:35:58 [ 37] [ 12] [507909203066] +09:35:58 [ 41] [ 8] [01529000] +09:35:58 [ 42] [ 15] [000000041529000] +09:35:58 [ 43] [ 40] [JDB ATM HQ 0 VN ] +09:35:58 [ 49] [ 3] [418] +09:35:58 [ 52] [ 16] [2F18D645823A1F9A] +09:35:58 ============================================================================ +09:35:58 + + +waiting on router queue for slot.... +09:35:58 Sending to : <0> +09:35:58 ============================================================================ +09:35:58 ============================================================================ +09:35:58 Slot Id : <114> +09:35:58 Transaction Type : REQUEST +09:35:58 Received From : +09:35:58 ============================================================================ +09:35:58 FNo. Len. Field Value +09:35:58 ============================================================================ +09:35:58 [ 1] [ 4] [0200] +09:35:58 [ 2] [ 16] [1808930200036226] +09:35:58 [ 3] [ 6] [010000] +09:35:58 [ 4] [ 12] [000020000000] +09:35:58 [ 7] [ 10] [0320093349] +09:35:58 [ 11] [ 6] [936036] +09:35:58 [ 12] [ 6] [093349] +09:35:58 [ 13] [ 4] [0320] +09:35:58 [ 15] [ 4] [0320] +09:35:58 [ 18] [ 4] [6011] +09:35:58 [ 19] [ 3] [418] +09:35:58 [ 22] [ 3] [021] +09:35:58 [ 25] [ 2] [01] +09:35:58 [ 28] [ 9] [D00002000] +09:35:58 [ 32] [ 6] [668899] +09:35:58 [ 35] [ 27] [1808930200036226=1803500523] +09:35:58 [ 37] [ 12] [507902179607] +09:35:58 [ 41] [ 8] [03004005] +09:35:58 [ 42] [ 15] [APT ] +09:35:58 [ 43] [ 40] [ MOUANGKEO UNIT MOUANGKEO ] +09:35:58 [ 49] [ 3] [418] +09:35:58 [ 52] [ 16] [896F2A42CC76CDF8] +09:35:58 ============================================================================ +09:35:58 + + +waiting on router queue for slot.... +09:35:58 Sending to : +09:35:58 ============================================================================ +09:35:58 ============================================================================ +09:35:58 Slot Id : <114> +09:35:58 Transaction Type : REQUEST +09:35:58 Received From : +09:35:58 ============================================================================ +09:35:58 FNo. Len. Field Value +09:35:58 ============================================================================ +09:35:58 [ 1] [ 4] [0200] +09:35:58 [ 2] [ 16] [1808930200036226] +09:35:58 [ 3] [ 6] [010000] +09:35:58 [ 4] [ 12] [000020000000] +09:35:58 [ 7] [ 10] [0320093349] +09:35:58 [ 11] [ 6] [936036] +09:35:58 [ 12] [ 6] [093349] +09:35:58 [ 13] [ 4] [0320] +09:35:58 [ 15] [ 4] [0320] +09:35:58 [ 18] [ 4] [6011] +09:35:58 [ 19] [ 3] [418] +09:35:58 [ 22] [ 3] [021] +09:35:58 [ 25] [ 2] [01] +09:35:58 [ 28] [ 9] [D00002000] +09:35:58 [ 32] [ 6] [668899] +09:35:58 [ 35] [ 27] [1808930200036226=1803500523] +09:35:58 [ 37] [ 12] [507902179607] +09:35:58 [ 41] [ 8] [03004005] +09:35:58 [ 42] [ 15] [APT ] +09:35:58 [ 43] [ 40] [ MOUANGKEO UNIT MOUANGKEO ] +09:35:58 [ 49] [ 3] [418] +09:35:58 [ 52] [ 16] [15E591FF2AF903B3] +09:35:58 ============================================================================ +09:35:58 + + +waiting on router queue for slot.... +09:35:58 Sending to : <2> +09:35:58 ============================================================================ +09:35:59 ============================================================================ +09:35:59 Slot Id : <90> +09:35:59 Transaction Type : RESPONSE +09:35:59 Received From : +09:35:59 ============================================================================ +09:35:59 FNo. Len. Field Value +09:35:59 ============================================================================ +09:35:59 [ 1] [ 4] [0210] +09:35:59 [ 2] [ 16] [6213545000633341] +09:35:59 [ 3] [ 6] [011000] +09:35:59 [ 4] [ 12] [000050000000] +09:35:59 [ 7] [ 10] [0320093619] +09:35:59 [ 11] [ 6] [203066] +09:35:59 [ 12] [ 6] [093026] +09:35:59 [ 13] [ 4] [0320] +09:35:59 [ 15] [ 4] [0320] +09:35:59 [ 18] [ 4] [6011] +09:35:59 [ 19] [ 3] [418] +09:35:59 [ 22] [ 3] [021] +09:35:59 [ 32] [ 6] [198901] +09:35:59 [ 35] [ 32] [6213545000633341=491212013334672] +09:35:59 [ 37] [ 12] [507909203066] +09:35:59 [ 38] [ 6] [093554] +09:35:59 [ 39] [ 2] [55] +09:35:59 [ 41] [ 8] [01529000] +09:35:59 [ 49] [ 3] [418] +09:35:59 ============================================================================ +09:35:59 Sending to : +09:35:59 ============================================================================ +09:35:59 + + +waiting on router queue for slot.... +09:36:00 ============================================================================ +09:36:00 Slot Id : <90> +09:36:00 Transaction Type : RESPONSE +09:36:00 Received From : +09:36:00 ============================================================================ +09:36:00 FNo. Len. Field Value +09:36:00 ============================================================================ +09:36:00 [ 1] [ 4] [0210] +09:36:00 [ 2] [ 16] [6213545000633341] +09:36:00 [ 3] [ 6] [011000] +09:36:00 [ 4] [ 12] [000050000000] +09:36:00 [ 7] [ 10] [0320093619] +09:36:00 [ 11] [ 6] [203066] +09:36:00 [ 12] [ 6] [093026] +09:36:00 [ 13] [ 4] [0320] +09:36:00 [ 15] [ 4] [0320] +09:36:00 [ 18] [ 4] [6011] +09:36:00 [ 19] [ 3] [418] +09:36:00 [ 22] [ 3] [021] +09:36:00 [ 32] [ 6] [198901] +09:36:00 [ 35] [ 32] [6213545000633341=491212013334672] +09:36:00 [ 37] [ 12] [507909203066] +09:36:00 [ 38] [ 6] [093554] +09:36:00 [ 39] [ 2] [55] +09:36:00 [ 41] [ 8] [01529000] +09:36:00 [ 49] [ 3] [418] +09:36:00 ============================================================================ +09:36:00 Calculate Source COMM Id = 5 +09:36:00 ============================================================================ +09:36:00 + + +waiting on router queue for slot.... +09:36:01 ============================================================================ +09:36:01 Slot Id : <114> +09:36:01 Transaction Type : RESPONSE +09:36:01 Received From : +09:36:01 ============================================================================ +09:36:01 FNo. Len. Field Value +09:36:01 ============================================================================ +09:36:01 [ 1] [ 4] [0210] +09:36:01 [ 2] [ 16] [1808930200036226] +09:36:01 [ 3] [ 6] [010000] +09:36:01 [ 4] [ 12] [000020000000] +09:36:01 [ 6] [ 12] [000020000000] +09:36:01 [ 7] [ 10] [0320093349] +09:36:01 [ 11] [ 6] [936036] +09:36:01 [ 12] [ 6] [093349] +09:36:01 [ 13] [ 4] [0320] +09:36:01 [ 18] [ 4] [6011] +09:36:01 [ 19] [ 3] [418] +09:36:01 [ 22] [ 3] [021] +09:36:01 [ 28] [ 9] [D00002000] +09:36:01 [ 32] [ 6] [668899] +09:36:01 [ 35] [ 27] [1808930200036226=1803500523] +09:36:01 [ 37] [ 12] [507902179607] +09:36:01 [ 39] [ 2] [55] +09:36:01 [ 41] [ 8] [03004005] +09:36:01 [ 49] [ 3] [418] +09:36:01 [ 51] [ 3] [418] +09:36:01 [ 52] [ 16] [15E591FF2AF903B3] +09:36:01 ============================================================================ +09:36:01 Sending to : +09:36:01 ============================================================================ +09:36:01 + + +waiting on router queue for slot.... +09:36:02 ============================================================================ +09:36:02 Slot Id : <114> +09:36:02 Transaction Type : RESPONSE +09:36:02 Received From : +09:36:02 ============================================================================ +09:36:02 FNo. Len. Field Value +09:36:02 ============================================================================ +09:36:02 [ 1] [ 4] [0210] +09:36:02 [ 2] [ 16] [1808930200036226] +09:36:02 [ 3] [ 6] [010000] +09:36:02 [ 4] [ 12] [000020000000] +09:36:02 [ 6] [ 12] [000020000000] +09:36:02 [ 7] [ 10] [0320093349] +09:36:02 [ 11] [ 6] [936036] +09:36:02 [ 12] [ 6] [093349] +09:36:02 [ 13] [ 4] [0320] +09:36:02 [ 18] [ 4] [6011] +09:36:02 [ 19] [ 3] [418] +09:36:02 [ 22] [ 3] [021] +09:36:02 [ 28] [ 9] [D00002000] +09:36:02 [ 32] [ 6] [668899] +09:36:02 [ 35] [ 27] [1808930200036226=1803500523] +09:36:02 [ 37] [ 12] [507902179607] +09:36:02 [ 39] [ 2] [55] +09:36:02 [ 41] [ 8] [03004005] +09:36:02 [ 49] [ 3] [418] +09:36:02 [ 51] [ 3] [418] +09:36:02 [ 52] [ 16] [15E591FF2AF903B3] +09:36:02 ============================================================================ +09:36:02 Calculate Source COMM Id = 4 +09:36:02 ============================================================================ +09:36:02 + + +waiting on router queue for slot.... +09:36:03 ============================================================================ +09:36:03 Slot Id : <83> +09:36:03 Transaction Type : REQUEST +09:36:03 Received From : +09:36:03 ============================================================================ +09:36:03 FNo. Len. Field Value +09:36:03 ============================================================================ +09:36:03 [ 1] [ 4] [0200] +09:36:03 [ 2] [ 16] [6688990100924305] +09:36:03 [ 3] [ 6] [301000] +09:36:03 [ 4] [ 12] [000000000000] +09:36:03 [ 7] [ 10] [0320093559] +09:36:03 [ 11] [ 6] [700852] +09:36:03 [ 12] [ 6] [093559] +09:36:03 [ 13] [ 4] [0320] +09:36:03 [ 15] [ 4] [0320] +09:36:03 [ 18] [ 4] [6011] +09:36:03 [ 22] [ 3] [900] +09:36:03 [ 25] [ 2] [02] +09:36:03 [ 28] [ 9] [D00000000] +09:36:03 [ 32] [ 6] [621354] +09:36:03 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:36:03 [ 37] [ 12] [507904719424] +09:36:03 [ 41] [ 8] [18001000] +09:36:03 [ 42] [ 15] [NATIVE ] +09:36:03 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:36:03 [ 49] [ 3] [418] +09:36:03 [ 52] [ 16] [0836B1A6190C2285] +09:36:03 ============================================================================ +09:36:03 + + +waiting on router queue for slot.... +09:36:03 Sending to : +09:36:03 ============================================================================ +09:36:03 Sending to : +09:36:03 ============================================================================ +09:36:03 ============================================================================ +09:36:03 Slot Id : <83> +09:36:03 Transaction Type : REQUEST +09:36:03 Received From : +09:36:03 ============================================================================ +09:36:03 FNo. Len. Field Value +09:36:03 ============================================================================ +09:36:03 [ 1] [ 4] [0200] +09:36:03 [ 2] [ 16] [6688990100924305] +09:36:03 [ 3] [ 6] [301000] +09:36:03 [ 4] [ 12] [000000000000] +09:36:03 [ 7] [ 10] [0320093559] +09:36:03 [ 11] [ 6] [700852] +09:36:03 [ 12] [ 6] [093559] +09:36:03 [ 13] [ 4] [0320] +09:36:03 [ 15] [ 4] [0320] +09:36:03 [ 18] [ 4] [6011] +09:36:03 [ 22] [ 3] [900] +09:36:03 [ 25] [ 2] [02] +09:36:03 [ 28] [ 9] [D00000000] +09:36:03 [ 32] [ 6] [621354] +09:36:03 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:36:03 [ 37] [ 12] [507904719424] +09:36:03 [ 41] [ 8] [18001000] +09:36:03 [ 42] [ 15] [NATIVE ] +09:36:03 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:36:03 [ 49] [ 3] [418] +09:36:03 [ 52] [ 16] [0836B1A6190C2285] +09:36:03 ============================================================================ +09:36:03 + + +waiting on router queue for slot.... +09:36:03 Sending to : +09:36:03 ============================================================================ +09:36:03 ============================================================================ +09:36:03 Slot Id : <83> +09:36:03 Transaction Type : REQUEST +09:36:03 Received From : +09:36:03 ============================================================================ +09:36:03 FNo. Len. Field Value +09:36:03 ============================================================================ +09:36:03 [ 1] [ 4] [0200] +09:36:03 [ 2] [ 16] [6688990100924305] +09:36:03 [ 3] [ 6] [301000] +09:36:03 [ 4] [ 12] [000000000000] +09:36:03 [ 7] [ 10] [0320093559] +09:36:03 [ 11] [ 6] [700852] +09:36:03 [ 12] [ 6] [093559] +09:36:03 [ 13] [ 4] [0320] +09:36:03 [ 15] [ 4] [0320] +09:36:03 [ 18] [ 4] [6011] +09:36:03 [ 22] [ 3] [900] +09:36:03 [ 25] [ 2] [02] +09:36:03 [ 28] [ 9] [D00000000] +09:36:03 [ 32] [ 6] [621354] +09:36:03 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:36:03 [ 37] [ 12] [507904719424] +09:36:03 [ 41] [ 8] [18001000] +09:36:03 [ 42] [ 15] [NATIVE ] +09:36:03 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:36:03 [ 49] [ 3] [418] +09:36:03 [ 52] [ 16] [04E46765C2DC7268] +09:36:03 ============================================================================ +09:36:03 + + +waiting on router queue for slot.... +09:36:03 Sending to : <4> +09:36:03 ============================================================================ +09:36:04 ============================================================================ +09:36:04 Slot Id : <74> +09:36:04 Transaction Type : REQUEST +09:36:04 Received From : +09:36:04 ============================================================================ +09:36:04 FNo. Len. Field Value +09:36:04 ============================================================================ +09:36:04 [ 1] [ 4] [0200] +09:36:04 [ 2] [ 16] [6213541000646201] +09:36:04 [ 3] [ 6] [010000] +09:36:04 [ 4] [ 12] [000100000000] +09:36:04 [ 7] [ 10] [0320023510] +09:36:04 [ 11] [ 6] [267627] +09:36:04 [ 12] [ 6] [093510] +09:36:04 [ 13] [ 4] [0320] +09:36:04 [ 14] [ 4] [4912] +09:36:04 [ 15] [ 4] [0320] +09:36:04 [ 18] [ 4] [6011] +09:36:04 [ 19] [ 3] [418] +09:36:04 [ 22] [ 3] [021] +09:36:04 [ 25] [ 2] [01] +09:36:04 [ 28] [ 9] [D00002000] +09:36:04 [ 32] [ 6] [180893] +09:36:04 [ 35] [ 32] [6213541000646201=491212014620504] +09:36:04 [ 37] [ 12] [507902267627] +09:36:04 [ 41] [ 8] [0523XYNG] +09:36:04 [ 42] [ 15] [999999 ] +09:36:04 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:36:04 [ 49] [ 3] [418] +09:36:04 [ 52] [ 16] [756DBEF7787A3EE4] +09:36:04 ============================================================================ +09:36:04 + + +waiting on router queue for slot.... +09:36:04 Sending to : +09:36:04 ============================================================================ +09:36:04 Sending to : +09:36:04 ============================================================================ +09:36:04 ============================================================================ +09:36:04 Slot Id : <74> +09:36:04 Transaction Type : REQUEST +09:36:04 Received From : +09:36:04 ============================================================================ +09:36:04 FNo. Len. Field Value +09:36:04 ============================================================================ +09:36:04 [ 1] [ 4] [0200] +09:36:04 [ 2] [ 16] [6213541000646201] +09:36:04 [ 3] [ 6] [010000] +09:36:04 [ 4] [ 12] [000100000000] +09:36:04 [ 7] [ 10] [0320023510] +09:36:04 [ 11] [ 6] [267627] +09:36:04 [ 12] [ 6] [093510] +09:36:04 [ 13] [ 4] [0320] +09:36:04 [ 14] [ 4] [4912] +09:36:04 [ 15] [ 4] [0320] +09:36:04 [ 18] [ 4] [6011] +09:36:04 [ 19] [ 3] [418] +09:36:04 [ 22] [ 3] [021] +09:36:04 [ 25] [ 2] [01] +09:36:04 [ 28] [ 9] [D00002000] +09:36:04 [ 32] [ 6] [180893] +09:36:04 [ 35] [ 32] [6213541000646201=491212014620504] +09:36:04 [ 37] [ 12] [507902267627] +09:36:04 [ 41] [ 8] [0523XYNG] +09:36:04 [ 42] [ 15] [999999 ] +09:36:04 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:36:04 [ 49] [ 3] [418] +09:36:04 [ 52] [ 16] [756DBEF7787A3EE4] +09:36:04 ============================================================================ +09:36:04 + + +waiting on router queue for slot.... +09:36:04 Sending to : +09:36:04 ============================================================================ +09:36:04 ============================================================================ +09:36:04 Slot Id : <74> +09:36:04 Transaction Type : REQUEST +09:36:04 Received From : +09:36:04 ============================================================================ +09:36:04 FNo. Len. Field Value +09:36:04 ============================================================================ +09:36:04 [ 1] [ 4] [0200] +09:36:04 [ 2] [ 16] [6213541000646201] +09:36:04 [ 3] [ 6] [010000] +09:36:04 [ 4] [ 12] [000100000000] +09:36:04 [ 7] [ 10] [0320023510] +09:36:04 [ 11] [ 6] [267627] +09:36:04 [ 12] [ 6] [093510] +09:36:04 [ 13] [ 4] [0320] +09:36:04 [ 14] [ 4] [4912] +09:36:04 [ 15] [ 4] [0320] +09:36:04 [ 18] [ 4] [6011] +09:36:04 [ 19] [ 3] [418] +09:36:04 [ 22] [ 3] [021] +09:36:04 [ 25] [ 2] [01] +09:36:04 [ 28] [ 9] [D00002000] +09:36:04 [ 32] [ 6] [180893] +09:36:04 [ 35] [ 32] [6213541000646201=491212014620504] +09:36:04 [ 37] [ 12] [507902267627] +09:36:04 [ 41] [ 8] [0523XYNG] +09:36:04 [ 42] [ 15] [999999 ] +09:36:04 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:36:04 [ 49] [ 3] [418] +09:36:04 [ 52] [ 16] [0C2F06640D5A7025] +09:36:04 ============================================================================ +09:36:04 + + +waiting on router queue for slot.... +09:36:04 Sending to : <0> +09:36:04 ============================================================================ +09:36:05 ============================================================================ +09:36:05 Slot Id : <83> +09:36:05 Transaction Type : RESPONSE +09:36:05 Received From : +09:36:05 ============================================================================ +09:36:05 FNo. Len. Field Value +09:36:05 ============================================================================ +09:36:05 [ 1] [ 4] [0210] +09:36:05 [ 2] [ 16] [6688990100924305] +09:36:05 [ 3] [ 6] [301000] +09:36:05 [ 4] [ 12] [000000000000] +09:36:05 [ 11] [ 6] [700852] +09:36:05 [ 12] [ 6] [093559] +09:36:05 [ 15] [ 4] [0320] +09:36:05 [ 18] [ 4] [6011] +09:36:05 [ 32] [ 6] [621354] +09:36:05 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:36:05 [ 37] [ 12] [507904719424] +09:36:05 [ 38] [ 6] [084240] +09:36:05 [ 39] [ 2] [00] +09:36:05 [ 41] [ 8] [18001000] +09:36:05 [ 49] [ 3] [418] +09:36:05 [ 54] [ 20] [1002418C000003081933] +09:36:05 ============================================================================ +09:36:05 Sending to : +09:36:05 ============================================================================ +09:36:05 + + +waiting on router queue for slot.... +09:36:06 ============================================================================ +09:36:06 Slot Id : <74> +09:36:06 Transaction Type : RESPONSE +09:36:06 Received From : +09:36:06 ============================================================================ +09:36:06 FNo. Len. Field Value +09:36:06 ============================================================================ +09:36:06 [ 1] [ 4] [0210] +09:36:06 [ 2] [ 16] [6213541000646201] +09:36:06 [ 3] [ 6] [010000] +09:36:06 [ 4] [ 12] [000100000000] +09:36:06 [ 7] [ 10] [0320023510] +09:36:06 [ 11] [ 6] [267627] +09:36:06 [ 12] [ 6] [093510] +09:36:06 [ 13] [ 4] [0320] +09:36:06 [ 15] [ 4] [0320] +09:36:06 [ 18] [ 4] [6011] +09:36:06 [ 19] [ 3] [418] +09:36:06 [ 32] [ 6] [180893] +09:36:06 [ 35] [ 32] [6213541000646201=491212014620504] +09:36:06 [ 37] [ 12] [507902267627] +09:36:06 [ 38] [ 6] [633607] +09:36:06 [ 39] [ 2] [00] +09:36:06 [ 41] [ 8] [0523XYNG] +09:36:06 [ 49] [ 3] [418] +09:36:06 [ 54] [ 40] [0001418C0013450380070002418C001345038007] +09:36:06 ============================================================================ +09:36:06 Sending to : +09:36:06 ============================================================================ +09:36:06 + + +waiting on router queue for slot.... +09:36:06 ============================================================================ +09:36:06 Slot Id : <107> +09:36:06 Transaction Type : REQUEST +09:36:06 Received From : +09:36:06 ============================================================================ +09:36:06 FNo. Len. Field Value +09:36:06 ============================================================================ +09:36:06 [ 1] [ 4] [0200] +09:36:06 [ 2] [ 16] [6213545001108848] +09:36:06 [ 3] [ 6] [010000] +09:36:06 [ 4] [ 12] [000100000000] +09:36:06 [ 7] [ 10] [0320023512] +09:36:06 [ 11] [ 6] [267628] +09:36:06 [ 12] [ 6] [093512] +09:36:06 [ 13] [ 4] [0320] +09:36:06 [ 14] [ 4] [4912] +09:36:06 [ 15] [ 4] [0320] +09:36:06 [ 18] [ 4] [6011] +09:36:06 [ 19] [ 3] [418] +09:36:06 [ 22] [ 3] [021] +09:36:06 [ 25] [ 2] [01] +09:36:06 [ 28] [ 9] [D00002000] +09:36:06 [ 32] [ 6] [180893] +09:36:06 [ 35] [ 32] [6213545001108848=491212010884066] +09:36:06 [ 37] [ 12] [507902267628] +09:36:06 [ 41] [ 8] [0221XKKM] +09:36:06 [ 42] [ 15] [999999 ] +09:36:06 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:36:06 [ 49] [ 3] [418] +09:36:06 [ 52] [ 16] [2FF7E970074030F1] +09:36:06 ============================================================================ +09:36:06 + + +waiting on router queue for slot.... +09:36:06 Sending to : +09:36:06 ============================================================================ +09:36:06 Sending to : +09:36:06 ============================================================================ +09:36:07 ============================================================================ +09:36:07 Slot Id : <107> +09:36:07 Transaction Type : REQUEST +09:36:07 Received From : +09:36:07 ============================================================================ +09:36:07 FNo. Len. Field Value +09:36:07 ============================================================================ +09:36:07 [ 1] [ 4] [0200] +09:36:07 [ 2] [ 16] [6213545001108848] +09:36:07 [ 3] [ 6] [010000] +09:36:07 [ 4] [ 12] [000100000000] +09:36:07 [ 7] [ 10] [0320023512] +09:36:07 [ 11] [ 6] [267628] +09:36:07 [ 12] [ 6] [093512] +09:36:07 [ 13] [ 4] [0320] +09:36:07 [ 14] [ 4] [4912] +09:36:07 [ 15] [ 4] [0320] +09:36:07 [ 18] [ 4] [6011] +09:36:07 [ 19] [ 3] [418] +09:36:07 [ 22] [ 3] [021] +09:36:07 [ 25] [ 2] [01] +09:36:07 [ 28] [ 9] [D00002000] +09:36:07 [ 32] [ 6] [180893] +09:36:07 [ 35] [ 32] [6213545001108848=491212010884066] +09:36:07 [ 37] [ 12] [507902267628] +09:36:07 [ 41] [ 8] [0221XKKM] +09:36:07 [ 42] [ 15] [999999 ] +09:36:07 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:36:07 [ 49] [ 3] [418] +09:36:07 [ 52] [ 16] [2FF7E970074030F1] +09:36:07 ============================================================================ +09:36:07 + + +waiting on router queue for slot.... +09:36:07 Sending to : +09:36:07 ============================================================================ +09:36:07 ============================================================================ +09:36:07 Slot Id : <107> +09:36:07 Transaction Type : REQUEST +09:36:07 Received From : +09:36:07 ============================================================================ +09:36:07 FNo. Len. Field Value +09:36:07 ============================================================================ +09:36:07 [ 1] [ 4] [0200] +09:36:07 [ 2] [ 16] [6213545001108848] +09:36:07 [ 3] [ 6] [010000] +09:36:07 [ 4] [ 12] [000100000000] +09:36:07 [ 7] [ 10] [0320023512] +09:36:07 [ 11] [ 6] [267628] +09:36:07 [ 12] [ 6] [093512] +09:36:07 [ 13] [ 4] [0320] +09:36:07 [ 14] [ 4] [4912] +09:36:07 [ 15] [ 4] [0320] +09:36:07 [ 18] [ 4] [6011] +09:36:07 [ 19] [ 3] [418] +09:36:07 [ 22] [ 3] [021] +09:36:07 [ 25] [ 2] [01] +09:36:07 [ 28] [ 9] [D00002000] +09:36:07 [ 32] [ 6] [180893] +09:36:07 [ 35] [ 32] [6213545001108848=491212010884066] +09:36:07 [ 37] [ 12] [507902267628] +09:36:07 [ 41] [ 8] [0221XKKM] +09:36:07 [ 42] [ 15] [999999 ] +09:36:07 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +09:36:07 [ 49] [ 3] [418] +09:36:07 [ 52] [ 16] [171E6442C88DAB4B] +09:36:07 ============================================================================ +09:36:07 + + +waiting on router queue for slot.... +09:36:07 Sending to : <0> +09:36:07 ============================================================================ +09:36:07 ============================================================================ +09:36:07 Slot Id : <83> +09:36:07 Transaction Type : RESPONSE +09:36:07 Received From : +09:36:07 ============================================================================ +09:36:07 FNo. Len. Field Value +09:36:07 ============================================================================ +09:36:07 [ 1] [ 4] [0210] +09:36:07 [ 2] [ 16] [6688990100924305] +09:36:07 [ 3] [ 6] [301000] +09:36:07 [ 4] [ 12] [000000000000] +09:36:07 [ 11] [ 6] [700852] +09:36:07 [ 12] [ 6] [093559] +09:36:07 [ 15] [ 4] [0320] +09:36:07 [ 18] [ 4] [6011] +09:36:07 [ 32] [ 6] [621354] +09:36:07 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:36:07 [ 37] [ 12] [507904719424] +09:36:07 [ 38] [ 6] [084240] +09:36:07 [ 39] [ 2] [00] +09:36:07 [ 41] [ 8] [18001000] +09:36:07 [ 49] [ 3] [418] +09:36:07 [ 54] [ 20] [1002418C000003081933] +09:36:07 ============================================================================ +09:36:07 Calculate Source COMM Id = 0 +09:36:07 ============================================================================ +09:36:07 + + +waiting on router queue for slot.... +09:36:07 ============================================================================ +09:36:07 Slot Id : <107> +09:36:07 Transaction Type : RESPONSE +09:36:07 Received From : +09:36:07 ============================================================================ +09:36:07 FNo. Len. Field Value +09:36:07 ============================================================================ +09:36:07 [ 1] [ 4] [0210] +09:36:07 [ 2] [ 16] [6213545001108848] +09:36:07 [ 3] [ 6] [010000] +09:36:07 [ 4] [ 12] [000100000000] +09:36:07 [ 7] [ 10] [0320023512] +09:36:07 [ 11] [ 6] [267628] +09:36:07 [ 12] [ 6] [093512] +09:36:07 [ 13] [ 4] [0320] +09:36:07 [ 15] [ 4] [0320] +09:36:07 [ 18] [ 4] [6011] +09:36:07 [ 19] [ 3] [418] +09:36:07 [ 32] [ 6] [180893] +09:36:07 [ 35] [ 32] [6213545001108848=491212010884066] +09:36:07 [ 37] [ 12] [507902267628] +09:36:07 [ 38] [ 6] [221684] +09:36:07 [ 39] [ 2] [00] +09:36:07 [ 41] [ 8] [0221XKKM] +09:36:07 [ 49] [ 3] [418] +09:36:07 [ 54] [ 40] [0001418C0000147420000002418C000014742000] +09:36:07 ============================================================================ +09:36:07 Sending to : +09:36:07 ============================================================================ +09:36:07 + + +waiting on router queue for slot.... +09:36:09 ============================================================================ +09:36:09 Slot Id : <74> +09:36:09 Transaction Type : RESPONSE +09:36:09 Received From : +09:36:09 ============================================================================ +09:36:09 FNo. Len. Field Value +09:36:09 ============================================================================ +09:36:09 [ 1] [ 4] [0210] +09:36:09 [ 2] [ 16] [6213541000646201] +09:36:09 [ 3] [ 6] [010000] +09:36:09 [ 4] [ 12] [000100000000] +09:36:09 [ 7] [ 10] [0320023510] +09:36:09 [ 11] [ 6] [267627] +09:36:09 [ 12] [ 6] [093510] +09:36:09 [ 13] [ 4] [0320] +09:36:09 [ 15] [ 4] [0320] +09:36:09 [ 18] [ 4] [6011] +09:36:09 [ 19] [ 3] [418] +09:36:09 [ 32] [ 6] [180893] +09:36:09 [ 35] [ 32] [6213541000646201=491212014620504] +09:36:09 [ 37] [ 12] [507902267627] +09:36:09 [ 38] [ 6] [633607] +09:36:09 [ 39] [ 2] [00] +09:36:09 [ 41] [ 8] [0523XYNG] +09:36:09 [ 49] [ 3] [418] +09:36:09 [ 54] [ 40] [0001418C0013450380070002418C001345038007] +09:36:09 ============================================================================ +09:36:09 Calculate Source COMM Id = 2 +09:36:09 ============================================================================ +09:36:09 + + +waiting on router queue for slot.... +09:36:10 ============================================================================ +09:36:10 Slot Id : <107> +09:36:10 Transaction Type : RESPONSE +09:36:10 Received From : +09:36:10 ============================================================================ +09:36:10 FNo. Len. Field Value +09:36:10 ============================================================================ +09:36:10 [ 1] [ 4] [0210] +09:36:10 [ 2] [ 16] [6213545001108848] +09:36:10 [ 3] [ 6] [010000] +09:36:10 [ 4] [ 12] [000100000000] +09:36:10 [ 7] [ 10] [0320023512] +09:36:10 [ 11] [ 6] [267628] +09:36:10 [ 12] [ 6] [093512] +09:36:10 [ 13] [ 4] [0320] +09:36:10 [ 15] [ 4] [0320] +09:36:10 [ 18] [ 4] [6011] +09:36:10 [ 19] [ 3] [418] +09:36:10 [ 32] [ 6] [180893] +09:36:10 [ 35] [ 32] [6213545001108848=491212010884066] +09:36:10 [ 37] [ 12] [507902267628] +09:36:10 [ 38] [ 6] [221684] +09:36:10 [ 39] [ 2] [00] +09:36:10 [ 41] [ 8] [0221XKKM] +09:36:10 [ 49] [ 3] [418] +09:36:10 [ 54] [ 40] [0001418C0000147420000002418C000014742000] +09:36:10 ============================================================================ +09:36:10 Calculate Source COMM Id = 2 +09:36:10 ============================================================================ +09:36:10 + + +waiting on router queue for slot.... +09:36:11 ============================================================================ +09:36:11 Slot Id : <118> +09:36:11 Transaction Type : REQUEST +09:36:11 Received From : +09:36:11 ============================================================================ +09:36:11 FNo. Len. Field Value +09:36:11 ============================================================================ +09:36:11 [ 1] [ 4] [0800] +09:36:11 [ 2] [ 5] [02531] +09:36:11 [ 3] [ 6] [579098] +09:36:11 [ 7] [ 10] [0320023611] +09:36:11 [ 11] [ 6] [806969] +09:36:11 [ 15] [ 10] [0320023611] +09:36:11 [ 37] [ 11] [57909806969] +09:36:11 [ 70] [ 3] [001] +09:36:11 ============================================================================ +09:36:11 + + +waiting on router queue for slot.... +09:36:11 ============================================================================ +09:36:11 Slot Id : <118> +09:36:11 Transaction Type : RESPONSE +09:36:11 Received From : +09:36:11 ============================================================================ +09:36:11 FNo. Len. Field Value +09:36:11 ============================================================================ +09:36:11 [ 1] [ 4] [0810] +09:36:11 [ 7] [ 10] [0320023611] +09:36:11 [ 11] [ 6] [806969] +09:36:11 [ 15] [ 4] [0320] +09:36:11 [ 37] [ 12] [57909806969] +09:36:11 [ 39] [ 2] [00] +09:36:11 [ 70] [ 3] [001] +09:36:11 ============================================================================ +09:36:11 Sending to : +09:36:11 ============================================================================ +09:36:11 + + +waiting on router queue for slot.... +09:36:12 ============================================================================ +09:36:12 Slot Id : <92> +09:36:12 Transaction Type : REQUEST +09:36:12 Received From : +09:36:12 ============================================================================ +09:36:12 FNo. Len. Field Value +09:36:12 ============================================================================ +09:36:12 [ 1] [ 4] [0200] +09:36:12 [ 2] [ 16] [6213545000633341] +09:36:12 [ 3] [ 6] [011000] +09:36:12 [ 4] [ 12] [000050000000] +09:36:12 [ 7] [ 10] [0320093633] +09:36:12 [ 11] [ 6] [203070] +09:36:12 [ 12] [ 6] [093040] +09:36:12 [ 13] [ 4] [0320] +09:36:12 [ 14] [ 4] [4912] +09:36:12 [ 15] [ 4] [0320] +09:36:12 [ 18] [ 4] [6011] +09:36:12 [ 19] [ 3] [418] +09:36:12 [ 22] [ 3] [021] +09:36:12 [ 25] [ 2] [01] +09:36:12 [ 28] [ 9] [D00002000] +09:36:12 [ 32] [ 6] [198901] +09:36:12 [ 35] [ 32] [6213545000633341=491212013334672] +09:36:12 [ 37] [ 12] [507909203070] +09:36:12 [ 41] [ 8] [01529000] +09:36:12 [ 42] [ 15] [000000041529000] +09:36:12 [ 43] [ 40] [JDB ATM HQ 0 VN ] +09:36:12 [ 49] [ 3] [418] +09:36:12 [ 52] [ 16] [838A54F2876D9493] +09:36:12 ============================================================================ +09:36:12 + + +waiting on router queue for slot.... +09:36:12 Sending to : +09:36:12 ============================================================================ +09:36:12 Sending to : +09:36:12 ============================================================================ +09:36:12 ============================================================================ +09:36:12 Slot Id : <92> +09:36:12 Transaction Type : REQUEST +09:36:12 Received From : +09:36:12 ============================================================================ +09:36:12 FNo. Len. Field Value +09:36:12 ============================================================================ +09:36:12 [ 1] [ 4] [0200] +09:36:12 [ 2] [ 16] [6213545000633341] +09:36:12 [ 3] [ 6] [011000] +09:36:12 [ 4] [ 12] [000050000000] +09:36:12 [ 7] [ 10] [0320093633] +09:36:12 [ 11] [ 6] [203070] +09:36:12 [ 12] [ 6] [093040] +09:36:12 [ 13] [ 4] [0320] +09:36:12 [ 14] [ 4] [4912] +09:36:12 [ 15] [ 4] [0320] +09:36:12 [ 18] [ 4] [6011] +09:36:12 [ 19] [ 3] [418] +09:36:12 [ 22] [ 3] [021] +09:36:12 [ 25] [ 2] [01] +09:36:12 [ 28] [ 9] [D00002000] +09:36:12 [ 32] [ 6] [198901] +09:36:12 [ 35] [ 32] [6213545000633341=491212013334672] +09:36:12 [ 37] [ 12] [507909203070] +09:36:12 [ 41] [ 8] [01529000] +09:36:12 [ 42] [ 15] [000000041529000] +09:36:12 [ 43] [ 40] [JDB ATM HQ 0 VN ] +09:36:12 [ 49] [ 3] [418] +09:36:12 [ 52] [ 16] [838A54F2876D9493] +09:36:12 ============================================================================ +09:36:12 + + +waiting on router queue for slot.... +09:36:12 Sending to : +09:36:12 ============================================================================ +09:36:12 ============================================================================ +09:36:12 Slot Id : <92> +09:36:12 Transaction Type : REQUEST +09:36:12 Received From : +09:36:12 ============================================================================ +09:36:12 FNo. Len. Field Value +09:36:12 ============================================================================ +09:36:12 [ 1] [ 4] [0200] +09:36:12 [ 2] [ 16] [6213545000633341] +09:36:12 [ 3] [ 6] [011000] +09:36:12 [ 4] [ 12] [000050000000] +09:36:12 [ 7] [ 10] [0320093633] +09:36:12 [ 11] [ 6] [203070] +09:36:12 [ 12] [ 6] [093040] +09:36:12 [ 13] [ 4] [0320] +09:36:12 [ 14] [ 4] [4912] +09:36:12 [ 15] [ 4] [0320] +09:36:12 [ 18] [ 4] [6011] +09:36:12 [ 19] [ 3] [418] +09:36:12 [ 22] [ 3] [021] +09:36:12 [ 25] [ 2] [01] +09:36:12 [ 28] [ 9] [D00002000] +09:36:12 [ 32] [ 6] [198901] +09:36:12 [ 35] [ 32] [6213545000633341=491212013334672] +09:36:12 [ 37] [ 12] [507909203070] +09:36:12 [ 41] [ 8] [01529000] +09:36:12 [ 42] [ 15] [000000041529000] +09:36:12 [ 43] [ 40] [JDB ATM HQ 0 VN ] +09:36:12 [ 49] [ 3] [418] +09:36:12 [ 52] [ 16] [BDF828F347B6D7E2] +09:36:12 ============================================================================ +09:36:12 + + +waiting on router queue for slot.... +09:36:12 Sending to : <0> +09:36:12 ============================================================================ +09:36:14 ============================================================================ +09:36:14 Slot Id : <92> +09:36:14 Transaction Type : RESPONSE +09:36:14 Received From : +09:36:14 ============================================================================ +09:36:14 FNo. Len. Field Value +09:36:14 ============================================================================ +09:36:14 [ 1] [ 4] [0210] +09:36:14 [ 2] [ 16] [6213545000633341] +09:36:14 [ 3] [ 6] [011000] +09:36:14 [ 4] [ 12] [000050000000] +09:36:14 [ 7] [ 10] [0320093633] +09:36:14 [ 11] [ 6] [203070] +09:36:14 [ 12] [ 6] [093040] +09:36:14 [ 13] [ 4] [0320] +09:36:14 [ 15] [ 4] [0320] +09:36:14 [ 18] [ 4] [6011] +09:36:14 [ 19] [ 3] [418] +09:36:14 [ 32] [ 6] [198901] +09:36:14 [ 35] [ 32] [6213545000633341=491212013334672] +09:36:14 [ 37] [ 12] [507909203070] +09:36:14 [ 38] [ 6] [633948] +09:36:14 [ 39] [ 2] [00] +09:36:14 [ 41] [ 8] [01529000] +09:36:14 [ 49] [ 3] [418] +09:36:14 [ 54] [ 40] [1001418C0000581753021002418C000058175302] +09:36:14 ============================================================================ +09:36:14 Sending to : +09:36:14 ============================================================================ +09:36:14 + + +waiting on router queue for slot.... +09:36:14 ============================================================================ +09:36:14 Slot Id : <121> +09:36:14 Transaction Type : REQUEST +09:36:14 Received From : +09:36:14 ============================================================================ +09:36:14 FNo. Len. Field Value +09:36:14 ============================================================================ +09:36:14 [ 1] [ 4] [0200] +09:36:14 [ 2] [ 16] [6213544000166816] +09:36:14 [ 3] [ 6] [011000] +09:36:14 [ 4] [ 12] [000040000000] +09:36:14 [ 7] [ 10] [0320023520] +09:36:14 [ 11] [ 6] [267633] +09:36:14 [ 12] [ 6] [093520] +09:36:14 [ 13] [ 4] [0320] +09:36:14 [ 14] [ 4] [4912] +09:36:14 [ 15] [ 4] [0320] +09:36:14 [ 18] [ 4] [6011] +09:36:14 [ 19] [ 3] [418] +09:36:14 [ 22] [ 3] [021] +09:36:14 [ 25] [ 2] [01] +09:36:14 [ 28] [ 9] [D00002000] +09:36:14 [ 32] [ 6] [180893] +09:36:14 [ 35] [ 32] [6213544000166816=491212016681855] +09:36:14 [ 37] [ 12] [507902267633] +09:36:14 [ 41] [ 8] [0401XSBR] +09:36:14 [ 42] [ 15] [999999 ] +09:36:14 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:36:14 [ 49] [ 3] [418] +09:36:14 [ 52] [ 16] [16C8B15A40FED093] +09:36:14 ============================================================================ +09:36:14 + + +waiting on router queue for slot.... +09:36:14 Sending to : +09:36:14 ============================================================================ +09:36:14 Sending to : +09:36:14 ============================================================================ +09:36:15 ============================================================================ +09:36:15 Slot Id : <121> +09:36:15 Transaction Type : REQUEST +09:36:15 Received From : +09:36:15 ============================================================================ +09:36:15 FNo. Len. Field Value +09:36:15 ============================================================================ +09:36:15 [ 1] [ 4] [0200] +09:36:15 [ 2] [ 16] [6213544000166816] +09:36:15 [ 3] [ 6] [011000] +09:36:15 [ 4] [ 12] [000040000000] +09:36:15 [ 7] [ 10] [0320023520] +09:36:15 [ 11] [ 6] [267633] +09:36:15 [ 12] [ 6] [093520] +09:36:15 [ 13] [ 4] [0320] +09:36:15 [ 14] [ 4] [4912] +09:36:15 [ 15] [ 4] [0320] +09:36:15 [ 18] [ 4] [6011] +09:36:15 [ 19] [ 3] [418] +09:36:15 [ 22] [ 3] [021] +09:36:15 [ 25] [ 2] [01] +09:36:15 [ 28] [ 9] [D00002000] +09:36:15 [ 32] [ 6] [180893] +09:36:15 [ 35] [ 32] [6213544000166816=491212016681855] +09:36:15 [ 37] [ 12] [507902267633] +09:36:15 [ 41] [ 8] [0401XSBR] +09:36:15 [ 42] [ 15] [999999 ] +09:36:15 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:36:15 [ 49] [ 3] [418] +09:36:15 [ 52] [ 16] [16C8B15A40FED093] +09:36:15 ============================================================================ +09:36:15 + + +waiting on router queue for slot.... +09:36:15 Sending to : +09:36:15 ============================================================================ +09:36:15 ============================================================================ +09:36:15 Slot Id : <121> +09:36:15 Transaction Type : REQUEST +09:36:15 Received From : +09:36:15 ============================================================================ +09:36:15 FNo. Len. Field Value +09:36:15 ============================================================================ +09:36:15 [ 1] [ 4] [0200] +09:36:15 [ 2] [ 16] [6213544000166816] +09:36:15 [ 3] [ 6] [011000] +09:36:15 [ 4] [ 12] [000040000000] +09:36:15 [ 7] [ 10] [0320023520] +09:36:15 [ 11] [ 6] [267633] +09:36:15 [ 12] [ 6] [093520] +09:36:15 [ 13] [ 4] [0320] +09:36:15 [ 14] [ 4] [4912] +09:36:15 [ 15] [ 4] [0320] +09:36:15 [ 18] [ 4] [6011] +09:36:15 [ 19] [ 3] [418] +09:36:15 [ 22] [ 3] [021] +09:36:15 [ 25] [ 2] [01] +09:36:15 [ 28] [ 9] [D00002000] +09:36:15 [ 32] [ 6] [180893] +09:36:15 [ 35] [ 32] [6213544000166816=491212016681855] +09:36:15 [ 37] [ 12] [507902267633] +09:36:15 [ 41] [ 8] [0401XSBR] +09:36:15 [ 42] [ 15] [999999 ] +09:36:15 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:36:15 [ 49] [ 3] [418] +09:36:15 [ 52] [ 16] [D8D25E1CA368E96E] +09:36:15 ============================================================================ +09:36:15 + + +waiting on router queue for slot.... +09:36:15 Sending to : <0> +09:36:15 ============================================================================ +09:36:15 ============================================================================ +09:36:15 Slot Id : <113> +09:36:15 Transaction Type : REQUEST +09:36:15 Received From : +09:36:15 ============================================================================ +09:36:15 FNo. Len. Field Value +09:36:15 ============================================================================ +09:36:15 [ 1] [ 4] [0200] +09:36:15 [ 2] [ 16] [1808930200045466] +09:36:15 [ 3] [ 6] [301000] +09:36:15 [ 4] [ 12] [000000000000] +09:36:15 [ 7] [ 10] [0320093406] +09:36:15 [ 11] [ 6] [936053] +09:36:15 [ 12] [ 6] [093406] +09:36:15 [ 13] [ 4] [0320] +09:36:15 [ 15] [ 4] [0320] +09:36:15 [ 18] [ 4] [6011] +09:36:15 [ 19] [ 3] [418] +09:36:15 [ 22] [ 3] [021] +09:36:15 [ 25] [ 2] [01] +09:36:15 [ 28] [ 9] [D00000000] +09:36:15 [ 32] [ 6] [668899] +09:36:15 [ 35] [ 27] [1808930200045466=1803500615] +09:36:15 [ 37] [ 12] [507900858234] +09:36:15 [ 41] [ 8] [03015004] +09:36:15 [ 42] [ 15] [APT ] +09:36:15 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +09:36:15 [ 49] [ 3] [418] +09:36:15 [ 52] [ 16] [0E8C0A5F9CA737D1] +09:36:15 ============================================================================ +09:36:15 + + +waiting on router queue for slot.... +09:36:15 Sending to : +09:36:15 ============================================================================ +09:36:15 Sending to : +09:36:15 ============================================================================ +09:36:15 ============================================================================ +09:36:15 Slot Id : <92> +09:36:15 Transaction Type : RESPONSE +09:36:15 Received From : +09:36:15 ============================================================================ +09:36:15 FNo. Len. Field Value +09:36:15 ============================================================================ +09:36:15 [ 1] [ 4] [0210] +09:36:15 [ 2] [ 16] [6213545000633341] +09:36:15 [ 3] [ 6] [011000] +09:36:15 [ 4] [ 12] [000050000000] +09:36:15 [ 7] [ 10] [0320093633] +09:36:15 [ 11] [ 6] [203070] +09:36:15 [ 12] [ 6] [093040] +09:36:15 [ 13] [ 4] [0320] +09:36:15 [ 15] [ 4] [0320] +09:36:15 [ 18] [ 4] [6011] +09:36:15 [ 19] [ 3] [418] +09:36:15 [ 32] [ 6] [198901] +09:36:15 [ 35] [ 32] [6213545000633341=491212013334672] +09:36:15 [ 37] [ 12] [507909203070] +09:36:15 [ 38] [ 6] [633948] +09:36:15 [ 39] [ 2] [00] +09:36:15 [ 41] [ 8] [01529000] +09:36:15 [ 49] [ 3] [418] +09:36:15 [ 54] [ 40] [1001418C0000581753021002418C000058175302] +09:36:15 ============================================================================ +09:36:15 Calculate Source COMM Id = 5 +09:36:15 ============================================================================ +09:36:15 + + +waiting on router queue for slot.... +09:36:15 ============================================================================ +09:36:15 Slot Id : <113> +09:36:15 Transaction Type : REQUEST +09:36:15 Received From : +09:36:15 ============================================================================ +09:36:15 FNo. Len. Field Value +09:36:15 ============================================================================ +09:36:15 [ 1] [ 4] [0200] +09:36:15 [ 2] [ 16] [1808930200045466] +09:36:15 [ 3] [ 6] [301000] +09:36:15 [ 4] [ 12] [000000000000] +09:36:15 [ 7] [ 10] [0320093406] +09:36:15 [ 11] [ 6] [936053] +09:36:15 [ 12] [ 6] [093406] +09:36:15 [ 13] [ 4] [0320] +09:36:15 [ 15] [ 4] [0320] +09:36:15 [ 18] [ 4] [6011] +09:36:15 [ 19] [ 3] [418] +09:36:15 [ 22] [ 3] [021] +09:36:15 [ 25] [ 2] [01] +09:36:15 [ 28] [ 9] [D00000000] +09:36:15 [ 32] [ 6] [668899] +09:36:15 [ 35] [ 27] [1808930200045466=1803500615] +09:36:15 [ 37] [ 12] [507900858234] +09:36:15 [ 41] [ 8] [03015004] +09:36:15 [ 42] [ 15] [APT ] +09:36:15 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +09:36:15 [ 49] [ 3] [418] +09:36:15 [ 52] [ 16] [0E8C0A5F9CA737D1] +09:36:15 ============================================================================ +09:36:15 + + +waiting on router queue for slot.... +09:36:15 Sending to : +09:36:15 ============================================================================ +09:36:15 ============================================================================ +09:36:15 Slot Id : <113> +09:36:15 Transaction Type : REQUEST +09:36:15 Received From : +09:36:15 ============================================================================ +09:36:15 FNo. Len. Field Value +09:36:15 ============================================================================ +09:36:15 [ 1] [ 4] [0200] +09:36:15 [ 2] [ 16] [1808930200045466] +09:36:15 [ 3] [ 6] [301000] +09:36:15 [ 4] [ 12] [000000000000] +09:36:15 [ 7] [ 10] [0320093406] +09:36:15 [ 11] [ 6] [936053] +09:36:15 [ 12] [ 6] [093406] +09:36:15 [ 13] [ 4] [0320] +09:36:15 [ 15] [ 4] [0320] +09:36:15 [ 18] [ 4] [6011] +09:36:15 [ 19] [ 3] [418] +09:36:15 [ 22] [ 3] [021] +09:36:15 [ 25] [ 2] [01] +09:36:15 [ 28] [ 9] [D00000000] +09:36:15 [ 32] [ 6] [668899] +09:36:15 [ 35] [ 27] [1808930200045466=1803500615] +09:36:15 [ 37] [ 12] [507900858234] +09:36:15 [ 41] [ 8] [03015004] +09:36:15 [ 42] [ 15] [APT ] +09:36:15 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +09:36:15 [ 49] [ 3] [418] +09:36:15 [ 52] [ 16] [79ABFCDCA75C0C85] +09:36:15 ============================================================================ +09:36:15 + + +waiting on router queue for slot.... +09:36:15 Sending to : <2> +09:36:15 ============================================================================ +09:36:15 ============================================================================ +09:36:15 Slot Id : <121> +09:36:15 Transaction Type : RESPONSE +09:36:15 Received From : +09:36:15 ============================================================================ +09:36:15 FNo. Len. Field Value +09:36:15 ============================================================================ +09:36:15 [ 1] [ 4] [0210] +09:36:15 [ 2] [ 16] [6213544000166816] +09:36:15 [ 3] [ 6] [011000] +09:36:15 [ 4] [ 12] [000040000000] +09:36:15 [ 7] [ 10] [0320023520] +09:36:15 [ 11] [ 6] [267633] +09:36:15 [ 12] [ 6] [093520] +09:36:15 [ 13] [ 4] [0320] +09:36:15 [ 15] [ 4] [0320] +09:36:15 [ 18] [ 4] [6011] +09:36:15 [ 19] [ 3] [418] +09:36:15 [ 32] [ 6] [180893] +09:36:15 [ 35] [ 32] [6213544000166816=491212016681855] +09:36:15 [ 37] [ 12] [507902267633] +09:36:15 [ 38] [ 6] [139487] +09:36:15 [ 39] [ 2] [00] +09:36:15 [ 41] [ 8] [0401XSBR] +09:36:15 [ 49] [ 3] [418] +09:36:15 [ 54] [ 40] [1001418C0000061535271002418C000006153527] +09:36:15 ============================================================================ +09:36:15 Sending to : +09:36:15 ============================================================================ +09:36:15 + + +waiting on router queue for slot.... +09:36:17 ============================================================================ +09:36:17 Slot Id : <121> +09:36:17 Transaction Type : RESPONSE +09:36:17 Received From : +09:36:17 ============================================================================ +09:36:17 FNo. Len. Field Value +09:36:17 ============================================================================ +09:36:17 [ 1] [ 4] [0210] +09:36:17 [ 2] [ 16] [6213544000166816] +09:36:17 [ 3] [ 6] [011000] +09:36:17 [ 4] [ 12] [000040000000] +09:36:17 [ 7] [ 10] [0320023520] +09:36:17 [ 11] [ 6] [267633] +09:36:17 [ 12] [ 6] [093520] +09:36:17 [ 13] [ 4] [0320] +09:36:17 [ 15] [ 4] [0320] +09:36:17 [ 18] [ 4] [6011] +09:36:17 [ 19] [ 3] [418] +09:36:17 [ 32] [ 6] [180893] +09:36:17 [ 35] [ 32] [6213544000166816=491212016681855] +09:36:17 [ 37] [ 12] [507902267633] +09:36:17 [ 38] [ 6] [139487] +09:36:17 [ 39] [ 2] [00] +09:36:17 [ 41] [ 8] [0401XSBR] +09:36:17 [ 49] [ 3] [418] +09:36:17 [ 54] [ 40] [1001418C0000061535271002418C000006153527] +09:36:17 ============================================================================ +09:36:17 Calculate Source COMM Id = 2 +09:36:17 ============================================================================ +09:36:17 + + +waiting on router queue for slot.... +09:36:19 ============================================================================ +09:36:19 Slot Id : <113> +09:36:19 Transaction Type : RESPONSE +09:36:19 Received From : +09:36:19 ============================================================================ +09:36:19 FNo. Len. Field Value +09:36:19 ============================================================================ +09:36:19 [ 1] [ 4] [0210] +09:36:19 [ 2] [ 16] [1808930200045466] +09:36:19 [ 3] [ 6] [301000] +09:36:19 [ 7] [ 10] [0320093406] +09:36:19 [ 11] [ 6] [936053] +09:36:19 [ 12] [ 6] [093406] +09:36:19 [ 13] [ 4] [0320] +09:36:19 [ 14] [ 4] [1803] +09:36:19 [ 19] [ 3] [418] +09:36:19 [ 32] [ 6] [668899] +09:36:19 [ 37] [ 12] [507900858234] +09:36:19 [ 38] [ 6] [936053] +09:36:19 [ 39] [ 2] [00] +09:36:19 [ 41] [ 8] [03015004] +09:36:19 [ 49] [ 3] [418] +09:36:19 [ 52] [ 16] [79ABFCDCA75C0C85] +09:36:19 [ 54] [ 20] [1002418C000133377300] +09:36:19 ============================================================================ +09:36:19 Sending to : +09:36:19 ============================================================================ +09:36:19 + + +waiting on router queue for slot.... +09:36:19 ============================================================================ +09:36:19 Slot Id : <108> +09:36:19 Transaction Type : REQUEST +09:36:19 Received From : +09:36:19 ============================================================================ +09:36:19 FNo. Len. Field Value +09:36:19 ============================================================================ +09:36:19 [ 1] [ 4] [0200] +09:36:19 [ 2] [ 16] [6688990106739004] +09:36:19 [ 3] [ 6] [010000] +09:36:19 [ 4] [ 12] [000010000000] +09:36:19 [ 7] [ 10] [0320023526] +09:36:19 [ 11] [ 6] [267634] +09:36:19 [ 12] [ 6] [093526] +09:36:19 [ 13] [ 4] [0320] +09:36:19 [ 14] [ 4] [4401] +09:36:19 [ 15] [ 4] [0320] +09:36:19 [ 18] [ 4] [6011] +09:36:19 [ 19] [ 3] [418] +09:36:19 [ 22] [ 3] [021] +09:36:19 [ 25] [ 2] [01] +09:36:19 [ 28] [ 9] [D00002000] +09:36:19 [ 32] [ 6] [180893] +09:36:19 [ 35] [ 37] [6688990106739004=44011231900440000000] +09:36:19 [ 37] [ 12] [507902267634] +09:36:19 [ 41] [ 8] [0102SAPA] +09:36:19 [ 42] [ 15] [999999 ] +09:36:19 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +09:36:19 [ 49] [ 3] [418] +09:36:19 [ 52] [ 16] [8D707A2ED9843BD2] +09:36:19 ============================================================================ +09:36:19 + + +waiting on router queue for slot.... +09:36:19 Sending to : +09:36:19 ============================================================================ +09:36:19 Sending to : +09:36:19 ============================================================================ +09:36:20 ============================================================================ +09:36:20 Slot Id : <108> +09:36:20 Transaction Type : REQUEST +09:36:20 Received From : +09:36:20 ============================================================================ +09:36:20 FNo. Len. Field Value +09:36:20 ============================================================================ +09:36:20 [ 1] [ 4] [0200] +09:36:20 [ 2] [ 16] [6688990106739004] +09:36:20 [ 3] [ 6] [010000] +09:36:20 [ 4] [ 12] [000010000000] +09:36:20 [ 7] [ 10] [0320023526] +09:36:20 [ 11] [ 6] [267634] +09:36:20 [ 12] [ 6] [093526] +09:36:20 [ 13] [ 4] [0320] +09:36:20 [ 14] [ 4] [4401] +09:36:20 [ 15] [ 4] [0320] +09:36:20 [ 18] [ 4] [6011] +09:36:20 [ 19] [ 3] [418] +09:36:20 [ 22] [ 3] [021] +09:36:20 [ 25] [ 2] [01] +09:36:20 [ 28] [ 9] [D00002000] +09:36:20 [ 32] [ 6] [180893] +09:36:20 [ 35] [ 37] [6688990106739004=44011231900440000000] +09:36:20 [ 37] [ 12] [507902267634] +09:36:20 [ 41] [ 8] [0102SAPA] +09:36:20 [ 42] [ 15] [999999 ] +09:36:20 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +09:36:20 [ 49] [ 3] [418] +09:36:20 [ 52] [ 16] [8D707A2ED9843BD2] +09:36:20 ============================================================================ +09:36:20 + + +waiting on router queue for slot.... +09:36:20 Sending to : +09:36:20 ============================================================================ +09:36:20 ============================================================================ +09:36:20 Slot Id : <108> +09:36:20 Transaction Type : REQUEST +09:36:20 Received From : +09:36:20 ============================================================================ +09:36:20 FNo. Len. Field Value +09:36:20 ============================================================================ +09:36:20 [ 1] [ 4] [0200] +09:36:20 [ 2] [ 16] [6688990106739004] +09:36:20 [ 3] [ 6] [010000] +09:36:20 [ 4] [ 12] [000010000000] +09:36:20 [ 7] [ 10] [0320023526] +09:36:20 [ 11] [ 6] [267634] +09:36:20 [ 12] [ 6] [093526] +09:36:20 [ 13] [ 4] [0320] +09:36:20 [ 14] [ 4] [4401] +09:36:20 [ 15] [ 4] [0320] +09:36:20 [ 18] [ 4] [6011] +09:36:20 [ 19] [ 3] [418] +09:36:20 [ 22] [ 3] [021] +09:36:20 [ 25] [ 2] [01] +09:36:20 [ 28] [ 9] [D00002000] +09:36:20 [ 32] [ 6] [180893] +09:36:20 [ 35] [ 37] [6688990106739004=44011231900440000000] +09:36:20 [ 37] [ 12] [507902267634] +09:36:20 [ 41] [ 8] [0102SAPA] +09:36:20 [ 42] [ 15] [999999 ] +09:36:20 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +09:36:20 [ 49] [ 3] [418] +09:36:20 [ 52] [ 16] [EC16067E3D5B2797] +09:36:20 ============================================================================ +09:36:20 + + +waiting on router queue for slot.... +09:36:20 Sending to : <0> +09:36:20 ============================================================================ +09:36:20 ============================================================================ +09:36:20 Slot Id : <108> +09:36:20 Transaction Type : RESPONSE +09:36:20 Received From : +09:36:20 ============================================================================ +09:36:20 FNo. Len. Field Value +09:36:20 ============================================================================ +09:36:20 [ 1] [ 4] [0210] +09:36:20 [ 2] [ 16] [6688990106739004] +09:36:20 [ 3] [ 6] [010000] +09:36:20 [ 4] [ 12] [000010000000] +09:36:20 [ 7] [ 10] [0320023526] +09:36:20 [ 11] [ 6] [267634] +09:36:20 [ 12] [ 6] [093526] +09:36:20 [ 13] [ 4] [0320] +09:36:20 [ 15] [ 4] [0320] +09:36:20 [ 18] [ 4] [6011] +09:36:20 [ 19] [ 3] [418] +09:36:20 [ 22] [ 3] [021] +09:36:20 [ 32] [ 6] [180893] +09:36:20 [ 35] [ 37] [6688990106739004=44011231900440000000] +09:36:20 [ 37] [ 12] [507902267634] +09:36:20 [ 39] [ 2] [14] +09:36:20 [ 41] [ 8] [0102SAPA] +09:36:20 [ 49] [ 3] [418] +09:36:20 ============================================================================ +09:36:20 Sending to : +09:36:20 ============================================================================ +09:36:20 + + +waiting on router queue for slot.... +09:36:20 ============================================================================ +09:36:20 Slot Id : <94> +09:36:20 Transaction Type : REQUEST +09:36:20 Received From : +09:36:20 ============================================================================ +09:36:20 FNo. Len. Field Value +09:36:20 ============================================================================ +09:36:20 [ 1] [ 4] [0200] +09:36:20 [ 2] [ 16] [6213544001441846] +09:36:20 [ 3] [ 6] [011000] +09:36:20 [ 4] [ 12] [000009000000] +09:36:20 [ 7] [ 10] [0320093642] +09:36:20 [ 11] [ 6] [203072] +09:36:20 [ 12] [ 6] [093709] +09:36:20 [ 13] [ 4] [0320] +09:36:20 [ 14] [ 4] [4912] +09:36:20 [ 15] [ 4] [0320] +09:36:20 [ 18] [ 4] [6011] +09:36:20 [ 19] [ 3] [418] +09:36:20 [ 22] [ 3] [021] +09:36:20 [ 25] [ 2] [01] +09:36:20 [ 28] [ 9] [D00002000] +09:36:20 [ 32] [ 6] [198901] +09:36:20 [ 35] [ 32] [6213544001441846=491212014184555] +09:36:20 [ 37] [ 12] [507909203072] +09:36:20 [ 41] [ 8] [01529009] +09:36:20 [ 42] [ 15] [000000041529009] +09:36:20 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +09:36:20 [ 49] [ 3] [418] +09:36:20 [ 52] [ 16] [F5685CC6C19C516F] +09:36:20 ============================================================================ +09:36:20 + + +waiting on router queue for slot.... +09:36:20 Sending to : +09:36:20 ============================================================================ +09:36:20 Sending to : +09:36:20 ============================================================================ +09:36:21 ============================================================================ +09:36:21 Slot Id : <113> +09:36:21 Transaction Type : RESPONSE +09:36:21 Received From : +09:36:21 ============================================================================ +09:36:21 FNo. Len. Field Value +09:36:21 ============================================================================ +09:36:21 [ 1] [ 4] [0210] +09:36:21 [ 2] [ 16] [1808930200045466] +09:36:21 [ 3] [ 6] [301000] +09:36:21 [ 7] [ 10] [0320093406] +09:36:21 [ 11] [ 6] [936053] +09:36:21 [ 12] [ 6] [093406] +09:36:21 [ 13] [ 4] [0320] +09:36:21 [ 14] [ 4] [1803] +09:36:21 [ 19] [ 3] [418] +09:36:21 [ 32] [ 6] [668899] +09:36:21 [ 37] [ 12] [507900858234] +09:36:21 [ 38] [ 6] [936053] +09:36:21 [ 39] [ 2] [00] +09:36:21 [ 41] [ 8] [03015004] +09:36:21 [ 49] [ 3] [418] +09:36:21 [ 52] [ 16] [79ABFCDCA75C0C85] +09:36:21 [ 54] [ 20] [1002418C000133377300] +09:36:21 ============================================================================ +09:36:21 Calculate Source COMM Id = 4 +09:36:21 ============================================================================ +09:36:21 + + +waiting on router queue for slot.... +09:36:21 ============================================================================ +09:36:21 Slot Id : <115> +09:36:21 Transaction Type : REQUEST +09:36:21 Received From : +09:36:21 ============================================================================ +09:36:21 FNo. Len. Field Value +09:36:21 ============================================================================ +09:36:21 [ 1] [ 4] [0800] +09:36:21 [ 7] [ 10] [0320023412] +09:36:21 [ 11] [ 6] [046691] +09:36:21 [ 37] [ 12] [57909046691] +09:36:21 [ 70] [ 3] [301] +09:36:21 ============================================================================ +09:36:21 + + +waiting on router queue for slot.... +09:36:21 Sending to : +09:36:21 ============================================================================ +09:36:21 ============================================================================ +09:36:21 Slot Id : <115> +09:36:21 Transaction Type : RESPONSE +09:36:21 Received From : +09:36:21 ============================================================================ +09:36:21 FNo. Len. Field Value +09:36:21 ============================================================================ +09:36:21 [ 1] [ 4] [0810] +09:36:21 [ 7] [ 10] [0320023412] +09:36:21 [ 11] [ 6] [046691] +09:36:21 [ 37] [ 12] [579090466910] +09:36:21 [ 39] [ 2] [00] +09:36:21 [ 70] [ 3] [810] +09:36:21 ============================================================================ +09:36:21 Calculate Source COMM Id = 4 +09:36:21 ============================================================================ +09:36:21 + + +waiting on router queue for slot.... +09:36:21 ============================================================================ +09:36:21 Slot Id : <94> +09:36:21 Transaction Type : REQUEST +09:36:21 Received From : +09:36:21 ============================================================================ +09:36:21 FNo. Len. Field Value +09:36:21 ============================================================================ +09:36:21 [ 1] [ 4] [0200] +09:36:21 [ 2] [ 16] [6213544001441846] +09:36:21 [ 3] [ 6] [011000] +09:36:21 [ 4] [ 12] [000009000000] +09:36:21 [ 7] [ 10] [0320093642] +09:36:21 [ 11] [ 6] [203072] +09:36:21 [ 12] [ 6] [093709] +09:36:21 [ 13] [ 4] [0320] +09:36:21 [ 14] [ 4] [4912] +09:36:21 [ 15] [ 4] [0320] +09:36:21 [ 18] [ 4] [6011] +09:36:21 [ 19] [ 3] [418] +09:36:21 [ 22] [ 3] [021] +09:36:21 [ 25] [ 2] [01] +09:36:21 [ 28] [ 9] [D00002000] +09:36:21 [ 32] [ 6] [198901] +09:36:21 [ 35] [ 32] [6213544001441846=491212014184555] +09:36:21 [ 37] [ 12] [507909203072] +09:36:21 [ 41] [ 8] [01529009] +09:36:21 [ 42] [ 15] [000000041529009] +09:36:21 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +09:36:21 [ 49] [ 3] [418] +09:36:21 [ 52] [ 16] [F5685CC6C19C516F] +09:36:21 ============================================================================ +09:36:21 + + +waiting on router queue for slot.... +09:36:21 Sending to : +09:36:21 ============================================================================ +09:36:21 ============================================================================ +09:36:21 Slot Id : <94> +09:36:21 Transaction Type : REQUEST +09:36:21 Received From : +09:36:21 ============================================================================ +09:36:21 FNo. Len. Field Value +09:36:21 ============================================================================ +09:36:21 [ 1] [ 4] [0200] +09:36:21 [ 2] [ 16] [6213544001441846] +09:36:21 [ 3] [ 6] [011000] +09:36:21 [ 4] [ 12] [000009000000] +09:36:21 [ 7] [ 10] [0320093642] +09:36:21 [ 11] [ 6] [203072] +09:36:21 [ 12] [ 6] [093709] +09:36:21 [ 13] [ 4] [0320] +09:36:21 [ 14] [ 4] [4912] +09:36:21 [ 15] [ 4] [0320] +09:36:21 [ 18] [ 4] [6011] +09:36:21 [ 19] [ 3] [418] +09:36:21 [ 22] [ 3] [021] +09:36:21 [ 25] [ 2] [01] +09:36:21 [ 28] [ 9] [D00002000] +09:36:21 [ 32] [ 6] [198901] +09:36:21 [ 35] [ 32] [6213544001441846=491212014184555] +09:36:21 [ 37] [ 12] [507909203072] +09:36:21 [ 41] [ 8] [01529009] +09:36:21 [ 42] [ 15] [000000041529009] +09:36:21 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +09:36:21 [ 49] [ 3] [418] +09:36:21 [ 52] [ 16] [D042F7DE631AA4FA] +09:36:21 ============================================================================ +09:36:21 + + +waiting on router queue for slot.... +09:36:21 Sending to : <0> +09:36:21 ============================================================================ +09:36:21 ============================================================================ +09:36:21 Slot Id : <94> +09:36:21 Transaction Type : RESPONSE +09:36:21 Received From : +09:36:21 ============================================================================ +09:36:21 FNo. Len. Field Value +09:36:21 ============================================================================ +09:36:21 [ 1] [ 4] [0210] +09:36:21 [ 2] [ 16] [6213544001441846] +09:36:21 [ 3] [ 6] [011000] +09:36:21 [ 4] [ 12] [000009000000] +09:36:21 [ 7] [ 10] [0320093642] +09:36:21 [ 11] [ 6] [203072] +09:36:21 [ 12] [ 6] [093709] +09:36:21 [ 13] [ 4] [0320] +09:36:21 [ 15] [ 4] [0320] +09:36:21 [ 18] [ 4] [6011] +09:36:21 [ 19] [ 3] [418] +09:36:21 [ 32] [ 6] [198901] +09:36:21 [ 35] [ 32] [6213544001441846=491212014184555] +09:36:21 [ 37] [ 12] [507909203072] +09:36:21 [ 38] [ 6] [331066] +09:36:21 [ 39] [ 2] [00] +09:36:21 [ 41] [ 8] [01529009] +09:36:21 [ 49] [ 3] [418] +09:36:21 [ 54] [ 40] [1001418C0000057617141002418C000005761714] +09:36:21 ============================================================================ +09:36:21 Sending to : +09:36:21 ============================================================================ +09:36:21 + + +waiting on router queue for slot.... +09:36:22 ============================================================================ +09:36:22 Slot Id : <127> +09:36:22 Transaction Type : REQUEST +09:36:22 Received From : +09:36:22 ============================================================================ +09:36:22 FNo. Len. Field Value +09:36:22 ============================================================================ +09:36:22 [ 1] [ 4] [0200] +09:36:22 [ 2] [ 16] [6688990040055327] +09:36:22 [ 3] [ 6] [012000] +09:36:22 [ 4] [ 12] [000004000000] +09:36:22 [ 7] [ 10] [0320093618] +09:36:22 [ 11] [ 6] [700918] +09:36:22 [ 12] [ 6] [093618] +09:36:22 [ 13] [ 4] [0320] +09:36:22 [ 15] [ 4] [0320] +09:36:22 [ 18] [ 4] [6011] +09:36:22 [ 22] [ 3] [900] +09:36:22 [ 25] [ 2] [02] +09:36:22 [ 28] [ 9] [D00002000] +09:36:22 [ 32] [ 6] [621354] +09:36:22 [ 35] [ 37] [6688990040055327=97121261845840600000] +09:36:22 [ 37] [ 12] [507904965508] +09:36:22 [ 41] [ 8] [15001100] +09:36:22 [ 42] [ 15] [NATIVE ] +09:36:22 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:36:22 [ 49] [ 3] [418] +09:36:22 [ 52] [ 16] [4825DBCAF472ADF0] +09:36:22 ============================================================================ +09:36:22 + + +waiting on router queue for slot.... +09:36:22 Sending to : +09:36:22 ============================================================================ +09:36:22 Sending to : +09:36:22 ============================================================================ +09:36:22 ============================================================================ +09:36:22 Slot Id : <108> +09:36:22 Transaction Type : RESPONSE +09:36:22 Received From : +09:36:22 ============================================================================ +09:36:22 FNo. Len. Field Value +09:36:22 ============================================================================ +09:36:22 [ 1] [ 4] [0210] +09:36:22 [ 2] [ 16] [6688990106739004] +09:36:22 [ 3] [ 6] [010000] +09:36:22 [ 4] [ 12] [000010000000] +09:36:22 [ 7] [ 10] [0320023526] +09:36:22 [ 11] [ 6] [267634] +09:36:22 [ 12] [ 6] [093526] +09:36:22 [ 13] [ 4] [0320] +09:36:22 [ 15] [ 4] [0320] +09:36:22 [ 18] [ 4] [6011] +09:36:22 [ 19] [ 3] [418] +09:36:22 [ 22] [ 3] [021] +09:36:22 [ 32] [ 6] [180893] +09:36:22 [ 35] [ 37] [6688990106739004=44011231900440000000] +09:36:22 [ 37] [ 12] [507902267634] +09:36:22 [ 39] [ 2] [14] +09:36:22 [ 41] [ 8] [0102SAPA] +09:36:22 [ 49] [ 3] [418] +09:36:22 ============================================================================ +09:36:22 Calculate Source COMM Id = 2 +09:36:22 ============================================================================ +09:36:22 + + +waiting on router queue for slot.... +09:36:22 ============================================================================ +09:36:22 Slot Id : <127> +09:36:22 Transaction Type : REQUEST +09:36:22 Received From : +09:36:22 ============================================================================ +09:36:22 FNo. Len. Field Value +09:36:22 ============================================================================ +09:36:22 [ 1] [ 4] [0200] +09:36:22 [ 2] [ 16] [6688990040055327] +09:36:22 [ 3] [ 6] [012000] +09:36:22 [ 4] [ 12] [000004000000] +09:36:22 [ 7] [ 10] [0320093618] +09:36:22 [ 11] [ 6] [700918] +09:36:22 [ 12] [ 6] [093618] +09:36:22 [ 13] [ 4] [0320] +09:36:22 [ 15] [ 4] [0320] +09:36:22 [ 18] [ 4] [6011] +09:36:22 [ 22] [ 3] [900] +09:36:22 [ 25] [ 2] [02] +09:36:22 [ 28] [ 9] [D00002000] +09:36:22 [ 32] [ 6] [621354] +09:36:22 [ 35] [ 37] [6688990040055327=97121261845840600000] +09:36:22 [ 37] [ 12] [507904965508] +09:36:22 [ 41] [ 8] [15001100] +09:36:22 [ 42] [ 15] [NATIVE ] +09:36:22 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:36:22 [ 49] [ 3] [418] +09:36:22 [ 52] [ 16] [4825DBCAF472ADF0] +09:36:22 ============================================================================ +09:36:22 + + +waiting on router queue for slot.... +09:36:22 Sending to : +09:36:22 ============================================================================ +09:36:22 ============================================================================ +09:36:22 Slot Id : <127> +09:36:22 Transaction Type : REQUEST +09:36:22 Received From : +09:36:22 ============================================================================ +09:36:22 FNo. Len. Field Value +09:36:22 ============================================================================ +09:36:22 [ 1] [ 4] [0200] +09:36:22 [ 2] [ 16] [6688990040055327] +09:36:22 [ 3] [ 6] [012000] +09:36:22 [ 4] [ 12] [000004000000] +09:36:22 [ 7] [ 10] [0320093618] +09:36:22 [ 11] [ 6] [700918] +09:36:22 [ 12] [ 6] [093618] +09:36:22 [ 13] [ 4] [0320] +09:36:22 [ 15] [ 4] [0320] +09:36:22 [ 18] [ 4] [6011] +09:36:22 [ 22] [ 3] [900] +09:36:22 [ 25] [ 2] [02] +09:36:22 [ 28] [ 9] [D00002000] +09:36:22 [ 32] [ 6] [621354] +09:36:22 [ 35] [ 37] [6688990040055327=97121261845840600000] +09:36:22 [ 37] [ 12] [507904965508] +09:36:22 [ 41] [ 8] [15001100] +09:36:22 [ 42] [ 15] [NATIVE ] +09:36:22 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:36:22 [ 49] [ 3] [418] +09:36:22 [ 52] [ 16] [4435982947E662D5] +09:36:22 ============================================================================ +09:36:22 + + +waiting on router queue for slot.... +09:36:22 Sending to : <4> +09:36:22 ============================================================================ +09:36:23 ============================================================================ +09:36:23 Slot Id : <94> +09:36:23 Transaction Type : RESPONSE +09:36:23 Received From : +09:36:23 ============================================================================ +09:36:23 FNo. Len. Field Value +09:36:23 ============================================================================ +09:36:23 [ 1] [ 4] [0210] +09:36:23 [ 2] [ 16] [6213544001441846] +09:36:23 [ 3] [ 6] [011000] +09:36:23 [ 4] [ 12] [000009000000] +09:36:23 [ 7] [ 10] [0320093642] +09:36:23 [ 11] [ 6] [203072] +09:36:23 [ 12] [ 6] [093709] +09:36:23 [ 13] [ 4] [0320] +09:36:23 [ 15] [ 4] [0320] +09:36:23 [ 18] [ 4] [6011] +09:36:23 [ 19] [ 3] [418] +09:36:23 [ 32] [ 6] [198901] +09:36:23 [ 35] [ 32] [6213544001441846=491212014184555] +09:36:23 [ 37] [ 12] [507909203072] +09:36:23 [ 38] [ 6] [331066] +09:36:23 [ 39] [ 2] [00] +09:36:23 [ 41] [ 8] [01529009] +09:36:23 [ 49] [ 3] [418] +09:36:23 [ 54] [ 40] [1001418C0000057617141002418C000005761714] +09:36:23 ============================================================================ +09:36:23 Calculate Source COMM Id = 5 +09:36:23 ============================================================================ +09:36:23 + + +waiting on router queue for slot.... +09:36:23 ============================================================================ +09:36:23 Slot Id : <127> +09:36:23 Transaction Type : RESPONSE +09:36:23 Received From : +09:36:23 ============================================================================ +09:36:23 FNo. Len. Field Value +09:36:23 ============================================================================ +09:36:23 [ 1] [ 4] [0210] +09:36:23 [ 2] [ 16] [6688990040055327] +09:36:23 [ 3] [ 6] [012000] +09:36:23 [ 4] [ 12] [000004000000] +09:36:23 [ 11] [ 6] [700918] +09:36:23 [ 12] [ 6] [093618] +09:36:23 [ 15] [ 4] [0320] +09:36:23 [ 18] [ 4] [6011] +09:36:23 [ 32] [ 6] [621354] +09:36:23 [ 35] [ 37] [6688990040055327=97121261845840600000] +09:36:23 [ 37] [ 12] [507904965508] +09:36:23 [ 38] [ 6] [680479] +09:36:23 [ 39] [ 2] [00] +09:36:23 [ 41] [ 8] [15001100] +09:36:23 [ 49] [ 3] [418] +09:36:23 [ 54] [ 20] [2002418C000130326508] +09:36:23 ============================================================================ +09:36:23 Sending to : +09:36:23 ============================================================================ +09:36:23 + + +waiting on router queue for slot.... +09:36:25 ============================================================================ +09:36:25 Slot Id : <127> +09:36:25 Transaction Type : RESPONSE +09:36:25 Received From : +09:36:25 ============================================================================ +09:36:25 FNo. Len. Field Value +09:36:25 ============================================================================ +09:36:25 [ 1] [ 4] [0210] +09:36:25 [ 2] [ 16] [6688990040055327] +09:36:25 [ 3] [ 6] [012000] +09:36:25 [ 4] [ 12] [000004000000] +09:36:25 [ 11] [ 6] [700918] +09:36:25 [ 12] [ 6] [093618] +09:36:25 [ 15] [ 4] [0320] +09:36:25 [ 18] [ 4] [6011] +09:36:25 [ 32] [ 6] [621354] +09:36:25 [ 35] [ 37] [6688990040055327=97121261845840600000] +09:36:25 [ 37] [ 12] [507904965508] +09:36:25 [ 38] [ 6] [680479] +09:36:25 [ 39] [ 2] [00] +09:36:25 [ 41] [ 8] [15001100] +09:36:25 [ 49] [ 3] [418] +09:36:25 [ 54] [ 20] [2002418C000130326508] +09:36:25 ============================================================================ +09:36:25 Calculate Source COMM Id = 0 +09:36:25 ============================================================================ +09:36:25 + + +waiting on router queue for slot.... +09:36:29 ============================================================================ +09:36:29 Slot Id : <95> +09:36:29 Transaction Type : REQUEST +09:36:29 Received From : +09:36:29 ============================================================================ +09:36:29 FNo. Len. Field Value +09:36:29 ============================================================================ +09:36:29 [ 1] [ 4] [0800] +09:36:29 [ 7] [ 10] [0320164817] +09:36:29 [ 11] [ 6] [094817] +09:36:29 [ 37] [ 12] [57909094817] +09:36:29 [ 70] [ 3] [301] +09:36:29 ============================================================================ +09:36:29 + + +waiting on router queue for slot.... +09:36:29 Sending to : +09:36:29 ============================================================================ +09:36:29 ============================================================================ +09:36:29 Slot Id : <95> +09:36:29 Transaction Type : RESPONSE +09:36:29 Received From : +09:36:29 ============================================================================ +09:36:29 FNo. Len. Field Value +09:36:29 ============================================================================ +09:36:29 [ 1] [ 4] [0810] +09:36:29 [ 7] [ 10] [0320164817] +09:36:29 [ 11] [ 6] [094817] +09:36:29 [ 37] [ 12] [579090948170] +09:36:29 [ 39] [ 2] [00] +09:36:29 [ 70] [ 3] [810] +09:36:29 ============================================================================ +09:36:29 Calculate Source COMM Id = 6 +09:36:29 ============================================================================ +09:36:29 + + +waiting on router queue for slot.... +09:36:34 ============================================================================ +09:36:34 Slot Id : <125> +09:36:34 Transaction Type : REQUEST +09:36:34 Received From : +09:36:34 ============================================================================ +09:36:34 FNo. Len. Field Value +09:36:34 ============================================================================ +09:36:34 [ 1] [ 4] [0200] +09:36:34 [ 2] [ 16] [6213544001359980] +09:36:34 [ 3] [ 6] [010000] +09:36:34 [ 4] [ 12] [000100000000] +09:36:34 [ 7] [ 10] [0320023541] +09:36:34 [ 11] [ 6] [267641] +09:36:34 [ 12] [ 6] [093541] +09:36:34 [ 13] [ 4] [0320] +09:36:34 [ 14] [ 4] [4912] +09:36:34 [ 15] [ 4] [0320] +09:36:34 [ 18] [ 4] [6011] +09:36:34 [ 19] [ 3] [418] +09:36:34 [ 22] [ 3] [021] +09:36:34 [ 25] [ 2] [01] +09:36:34 [ 28] [ 9] [D00002000] +09:36:34 [ 32] [ 6] [180893] +09:36:34 [ 35] [ 32] [6213544001359980=491212015998593] +09:36:34 [ 37] [ 12] [507902267641] +09:36:34 [ 41] [ 8] [0466PSLB] +09:36:34 [ 42] [ 15] [999999 ] +09:36:34 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +09:36:34 [ 49] [ 3] [418] +09:36:34 [ 52] [ 16] [8D56264A8E63C7E7] +09:36:34 ============================================================================ +09:36:34 + + +waiting on router queue for slot.... +09:36:34 Sending to : +09:36:34 ============================================================================ +09:36:34 Sending to : +09:36:34 ============================================================================ +09:36:34 ============================================================================ +09:36:34 Slot Id : <125> +09:36:34 Transaction Type : REQUEST +09:36:34 Received From : +09:36:34 ============================================================================ +09:36:34 FNo. Len. Field Value +09:36:34 ============================================================================ +09:36:34 [ 1] [ 4] [0200] +09:36:34 [ 2] [ 16] [6213544001359980] +09:36:34 [ 3] [ 6] [010000] +09:36:34 [ 4] [ 12] [000100000000] +09:36:34 [ 7] [ 10] [0320023541] +09:36:34 [ 11] [ 6] [267641] +09:36:34 [ 12] [ 6] [093541] +09:36:34 [ 13] [ 4] [0320] +09:36:34 [ 14] [ 4] [4912] +09:36:34 [ 15] [ 4] [0320] +09:36:34 [ 18] [ 4] [6011] +09:36:34 [ 19] [ 3] [418] +09:36:34 [ 22] [ 3] [021] +09:36:34 [ 25] [ 2] [01] +09:36:34 [ 28] [ 9] [D00002000] +09:36:34 [ 32] [ 6] [180893] +09:36:34 [ 35] [ 32] [6213544001359980=491212015998593] +09:36:34 [ 37] [ 12] [507902267641] +09:36:34 [ 41] [ 8] [0466PSLB] +09:36:34 [ 42] [ 15] [999999 ] +09:36:34 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +09:36:34 [ 49] [ 3] [418] +09:36:34 [ 52] [ 16] [8D56264A8E63C7E7] +09:36:34 ============================================================================ +09:36:34 + + +waiting on router queue for slot.... +09:36:34 Sending to : +09:36:34 ============================================================================ +09:36:34 ============================================================================ +09:36:34 Slot Id : <125> +09:36:34 Transaction Type : REQUEST +09:36:34 Received From : +09:36:34 ============================================================================ +09:36:34 FNo. Len. Field Value +09:36:34 ============================================================================ +09:36:34 [ 1] [ 4] [0200] +09:36:34 [ 2] [ 16] [6213544001359980] +09:36:34 [ 3] [ 6] [010000] +09:36:34 [ 4] [ 12] [000100000000] +09:36:34 [ 7] [ 10] [0320023541] +09:36:34 [ 11] [ 6] [267641] +09:36:34 [ 12] [ 6] [093541] +09:36:34 [ 13] [ 4] [0320] +09:36:34 [ 14] [ 4] [4912] +09:36:34 [ 15] [ 4] [0320] +09:36:34 [ 18] [ 4] [6011] +09:36:34 [ 19] [ 3] [418] +09:36:34 [ 22] [ 3] [021] +09:36:34 [ 25] [ 2] [01] +09:36:34 [ 28] [ 9] [D00002000] +09:36:34 [ 32] [ 6] [180893] +09:36:34 [ 35] [ 32] [6213544001359980=491212015998593] +09:36:34 [ 37] [ 12] [507902267641] +09:36:34 [ 41] [ 8] [0466PSLB] +09:36:34 [ 42] [ 15] [999999 ] +09:36:34 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +09:36:34 [ 49] [ 3] [418] +09:36:34 [ 52] [ 16] [F14BD8E417016046] +09:36:34 ============================================================================ +09:36:34 + + +waiting on router queue for slot.... +09:36:34 Sending to : <0> +09:36:34 ============================================================================ +09:36:35 ============================================================================ +09:36:35 Slot Id : <125> +09:36:35 Transaction Type : RESPONSE +09:36:35 Received From : +09:36:35 ============================================================================ +09:36:35 FNo. Len. Field Value +09:36:35 ============================================================================ +09:36:35 [ 1] [ 4] [0210] +09:36:35 [ 2] [ 16] [6213544001359980] +09:36:35 [ 3] [ 6] [010000] +09:36:35 [ 4] [ 12] [000100000000] +09:36:35 [ 7] [ 10] [0320023541] +09:36:35 [ 11] [ 6] [267641] +09:36:35 [ 12] [ 6] [093541] +09:36:35 [ 13] [ 4] [0320] +09:36:35 [ 15] [ 4] [0320] +09:36:35 [ 18] [ 4] [6011] +09:36:35 [ 19] [ 3] [418] +09:36:35 [ 32] [ 6] [180893] +09:36:35 [ 35] [ 32] [6213544001359980=491212015998593] +09:36:35 [ 37] [ 12] [507902267641] +09:36:35 [ 38] [ 6] [542551] +09:36:35 [ 39] [ 2] [00] +09:36:35 [ 41] [ 8] [0466PSLB] +09:36:35 [ 49] [ 3] [418] +09:36:35 [ 54] [ 40] [0001418C0001231265570002418C000123126557] +09:36:35 ============================================================================ +09:36:35 Sending to : +09:36:35 ============================================================================ +09:36:35 + + +waiting on router queue for slot.... +09:36:36 ============================================================================ +09:36:36 Slot Id : <125> +09:36:36 Transaction Type : RESPONSE +09:36:36 Received From : +09:36:36 ============================================================================ +09:36:36 FNo. Len. Field Value +09:36:36 ============================================================================ +09:36:36 [ 1] [ 4] [0210] +09:36:36 [ 2] [ 16] [6213544001359980] +09:36:36 [ 3] [ 6] [010000] +09:36:36 [ 4] [ 12] [000100000000] +09:36:36 [ 7] [ 10] [0320023541] +09:36:36 [ 11] [ 6] [267641] +09:36:36 [ 12] [ 6] [093541] +09:36:36 [ 13] [ 4] [0320] +09:36:36 [ 15] [ 4] [0320] +09:36:36 [ 18] [ 4] [6011] +09:36:36 [ 19] [ 3] [418] +09:36:36 [ 32] [ 6] [180893] +09:36:36 [ 35] [ 32] [6213544001359980=491212015998593] +09:36:36 [ 37] [ 12] [507902267641] +09:36:36 [ 38] [ 6] [542551] +09:36:36 [ 39] [ 2] [00] +09:36:36 [ 41] [ 8] [0466PSLB] +09:36:36 [ 49] [ 3] [418] +09:36:36 [ 54] [ 40] [0001418C0001231265570002418C000123126557] +09:36:36 ============================================================================ +09:36:36 Calculate Source COMM Id = 2 +09:36:36 ============================================================================ +09:36:36 + + +waiting on router queue for slot.... +09:36:37 ============================================================================ +09:36:37 Slot Id : <75> +09:36:37 Transaction Type : REQUEST +09:36:37 Received From : +09:36:37 ============================================================================ +09:36:37 FNo. Len. Field Value +09:36:37 ============================================================================ +09:36:37 [ 1] [ 4] [0800] +09:36:37 [ 7] [ 10] [0320023543] +09:36:37 [ 11] [ 6] [155664] +09:36:37 [ 70] [ 3] [301] +09:36:37 ============================================================================ +09:36:37 + + +waiting on router queue for slot.... +09:36:37 Sending to : +09:36:37 ============================================================================ +09:36:37 ============================================================================ +09:36:37 Slot Id : <75> +09:36:37 Transaction Type : RESPONSE +09:36:37 Received From : +09:36:37 ============================================================================ +09:36:37 FNo. Len. Field Value +09:36:37 ============================================================================ +09:36:37 [ 1] [ 4] [0810] +09:36:37 [ 7] [ 10] [0320023543] +09:36:37 [ 11] [ 6] [155664] +09:36:37 [ 39] [ 2] [00] +09:36:37 [ 70] [ 3] [301] +09:36:37 ============================================================================ +09:36:37 Calculate Source COMM Id = 2 +09:36:37 ============================================================================ +09:36:37 + + +waiting on router queue for slot.... +09:36:38 ============================================================================ +09:36:38 Slot Id : <53> +09:36:38 Transaction Type : REQUEST +09:36:38 Received From : +09:36:38 ============================================================================ +09:36:38 FNo. Len. Field Value +09:36:38 ============================================================================ +09:36:38 [ 1] [ 4] [0200] +09:36:38 [ 2] [ 16] [6213545000095616] +09:36:38 [ 3] [ 6] [010000] +09:36:38 [ 4] [ 12] [000100000000] +09:36:38 [ 7] [ 10] [0320023544] +09:36:38 [ 11] [ 6] [267642] +09:36:38 [ 12] [ 6] [093544] +09:36:38 [ 13] [ 4] [0320] +09:36:38 [ 14] [ 4] [4912] +09:36:38 [ 15] [ 4] [0320] +09:36:38 [ 18] [ 4] [6011] +09:36:38 [ 19] [ 3] [418] +09:36:38 [ 22] [ 3] [021] +09:36:38 [ 25] [ 2] [01] +09:36:38 [ 28] [ 9] [D00002000] +09:36:38 [ 32] [ 6] [180893] +09:36:38 [ 35] [ 32] [6213545000095616=491212019561240] +09:36:38 [ 37] [ 12] [507902267642] +09:36:38 [ 41] [ 8] [0112CPBR] +09:36:38 [ 42] [ 15] [999999 ] +09:36:38 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:36:38 [ 49] [ 3] [418] +09:36:38 [ 52] [ 16] [6A7AA8CDB283ED13] +09:36:38 ============================================================================ +09:36:38 + + +waiting on router queue for slot.... +09:36:38 Sending to : +09:36:38 ============================================================================ +09:36:38 Sending to : +09:36:38 ============================================================================ +09:36:38 ============================================================================ +09:36:38 Slot Id : <53> +09:36:38 Transaction Type : REQUEST +09:36:38 Received From : +09:36:38 ============================================================================ +09:36:38 FNo. Len. Field Value +09:36:38 ============================================================================ +09:36:38 [ 1] [ 4] [0200] +09:36:38 [ 2] [ 16] [6213545000095616] +09:36:38 [ 3] [ 6] [010000] +09:36:38 [ 4] [ 12] [000100000000] +09:36:38 [ 7] [ 10] [0320023544] +09:36:38 [ 11] [ 6] [267642] +09:36:38 [ 12] [ 6] [093544] +09:36:38 [ 13] [ 4] [0320] +09:36:38 [ 14] [ 4] [4912] +09:36:38 [ 15] [ 4] [0320] +09:36:38 [ 18] [ 4] [6011] +09:36:38 [ 19] [ 3] [418] +09:36:38 [ 22] [ 3] [021] +09:36:38 [ 25] [ 2] [01] +09:36:38 [ 28] [ 9] [D00002000] +09:36:38 [ 32] [ 6] [180893] +09:36:38 [ 35] [ 32] [6213545000095616=491212019561240] +09:36:38 [ 37] [ 12] [507902267642] +09:36:38 [ 41] [ 8] [0112CPBR] +09:36:38 [ 42] [ 15] [999999 ] +09:36:38 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:36:38 [ 49] [ 3] [418] +09:36:38 [ 52] [ 16] [6A7AA8CDB283ED13] +09:36:38 ============================================================================ +09:36:38 + + +waiting on router queue for slot.... +09:36:38 Sending to : +09:36:38 ============================================================================ +09:36:38 ============================================================================ +09:36:38 Slot Id : <53> +09:36:38 Transaction Type : REQUEST +09:36:38 Received From : +09:36:38 ============================================================================ +09:36:38 FNo. Len. Field Value +09:36:38 ============================================================================ +09:36:38 [ 1] [ 4] [0200] +09:36:38 [ 2] [ 16] [6213545000095616] +09:36:38 [ 3] [ 6] [010000] +09:36:38 [ 4] [ 12] [000100000000] +09:36:38 [ 7] [ 10] [0320023544] +09:36:38 [ 11] [ 6] [267642] +09:36:38 [ 12] [ 6] [093544] +09:36:38 [ 13] [ 4] [0320] +09:36:38 [ 14] [ 4] [4912] +09:36:38 [ 15] [ 4] [0320] +09:36:38 [ 18] [ 4] [6011] +09:36:38 [ 19] [ 3] [418] +09:36:38 [ 22] [ 3] [021] +09:36:38 [ 25] [ 2] [01] +09:36:38 [ 28] [ 9] [D00002000] +09:36:38 [ 32] [ 6] [180893] +09:36:38 [ 35] [ 32] [6213545000095616=491212019561240] +09:36:38 [ 37] [ 12] [507902267642] +09:36:38 [ 41] [ 8] [0112CPBR] +09:36:38 [ 42] [ 15] [999999 ] +09:36:38 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:36:38 [ 49] [ 3] [418] +09:36:38 [ 52] [ 16] [DBAE8C8F50F85F32] +09:36:38 ============================================================================ +09:36:38 + + +waiting on router queue for slot.... +09:36:38 Sending to : <0> +09:36:38 ============================================================================ +09:36:40 ============================================================================ +09:36:40 Slot Id : <53> +09:36:40 Transaction Type : RESPONSE +09:36:40 Received From : +09:36:40 ============================================================================ +09:36:40 FNo. Len. Field Value +09:36:40 ============================================================================ +09:36:40 [ 1] [ 4] [0210] +09:36:40 [ 2] [ 16] [6213545000095616] +09:36:40 [ 3] [ 6] [010000] +09:36:40 [ 4] [ 12] [000100000000] +09:36:40 [ 7] [ 10] [0320023544] +09:36:40 [ 11] [ 6] [267642] +09:36:40 [ 12] [ 6] [093544] +09:36:40 [ 13] [ 4] [0320] +09:36:40 [ 15] [ 4] [0320] +09:36:40 [ 18] [ 4] [6011] +09:36:40 [ 19] [ 3] [418] +09:36:40 [ 32] [ 6] [180893] +09:36:40 [ 35] [ 32] [6213545000095616=491212019561240] +09:36:40 [ 37] [ 12] [507902267642] +09:36:40 [ 38] [ 6] [566809] +09:36:40 [ 39] [ 2] [00] +09:36:40 [ 41] [ 8] [0112CPBR] +09:36:40 [ 49] [ 3] [418] +09:36:40 [ 54] [ 40] [0001418C0001461509350002418C000146150935] +09:36:40 ============================================================================ +09:36:40 Sending to : +09:36:40 ============================================================================ +09:36:40 + + +waiting on router queue for slot.... +09:36:41 ============================================================================ +09:36:41 Slot Id : <53> +09:36:41 Transaction Type : RESPONSE +09:36:41 Received From : +09:36:41 ============================================================================ +09:36:41 FNo. Len. Field Value +09:36:41 ============================================================================ +09:36:41 [ 1] [ 4] [0210] +09:36:41 [ 2] [ 16] [6213545000095616] +09:36:41 [ 3] [ 6] [010000] +09:36:41 [ 4] [ 12] [000100000000] +09:36:41 [ 7] [ 10] [0320023544] +09:36:41 [ 11] [ 6] [267642] +09:36:41 [ 12] [ 6] [093544] +09:36:41 [ 13] [ 4] [0320] +09:36:41 [ 15] [ 4] [0320] +09:36:41 [ 18] [ 4] [6011] +09:36:41 [ 19] [ 3] [418] +09:36:41 [ 32] [ 6] [180893] +09:36:41 [ 35] [ 32] [6213545000095616=491212019561240] +09:36:41 [ 37] [ 12] [507902267642] +09:36:41 [ 38] [ 6] [566809] +09:36:41 [ 39] [ 2] [00] +09:36:41 [ 41] [ 8] [0112CPBR] +09:36:41 [ 49] [ 3] [418] +09:36:41 [ 54] [ 40] [0001418C0001461509350002418C000146150935] +09:36:41 ============================================================================ +09:36:41 Calculate Source COMM Id = 2 +09:36:41 ============================================================================ +09:36:41 + + +waiting on router queue for slot.... +09:36:54 ============================================================================ +09:36:54 Slot Id : <134> +09:36:54 Transaction Type : REQUEST +09:36:54 Received From : +09:36:54 ============================================================================ +09:36:54 FNo. Len. Field Value +09:36:54 ============================================================================ +09:36:54 [ 1] [ 4] [0200] +09:36:54 [ 2] [ 16] [6213544001673687] +09:36:54 [ 3] [ 6] [010000] +09:36:54 [ 4] [ 12] [000050000000] +09:36:54 [ 7] [ 10] [0320093445] +09:36:54 [ 11] [ 6] [936073] +09:36:54 [ 12] [ 6] [093445] +09:36:54 [ 13] [ 4] [0320] +09:36:54 [ 15] [ 4] [0320] +09:36:54 [ 18] [ 4] [6011] +09:36:54 [ 19] [ 3] [418] +09:36:54 [ 22] [ 3] [021] +09:36:54 [ 25] [ 2] [01] +09:36:54 [ 28] [ 9] [D00002000] +09:36:54 [ 32] [ 6] [668899] +09:36:54 [ 35] [ 32] [6213544001673687=491212017368672] +09:36:54 [ 37] [ 12] [507902179609] +09:36:54 [ 41] [ 8] [03004005] +09:36:54 [ 42] [ 15] [APT ] +09:36:54 [ 43] [ 40] [ MOUANGKEO UNIT MOUANGKEO ] +09:36:54 [ 49] [ 3] [418] +09:36:54 [ 52] [ 16] [EC085B4AC4672FA7] +09:36:54 ============================================================================ +09:36:54 + + +waiting on router queue for slot.... +09:36:54 Sending to : +09:36:54 ============================================================================ +09:36:54 Sending to : +09:36:54 ============================================================================ +09:36:54 ============================================================================ +09:36:54 Slot Id : <134> +09:36:54 Transaction Type : REQUEST +09:36:54 Received From : +09:36:54 ============================================================================ +09:36:54 FNo. Len. Field Value +09:36:54 ============================================================================ +09:36:54 [ 1] [ 4] [0200] +09:36:54 [ 2] [ 16] [6213544001673687] +09:36:54 [ 3] [ 6] [010000] +09:36:54 [ 4] [ 12] [000050000000] +09:36:54 [ 7] [ 10] [0320093445] +09:36:54 [ 11] [ 6] [936073] +09:36:54 [ 12] [ 6] [093445] +09:36:54 [ 13] [ 4] [0320] +09:36:54 [ 15] [ 4] [0320] +09:36:54 [ 18] [ 4] [6011] +09:36:54 [ 19] [ 3] [418] +09:36:54 [ 22] [ 3] [021] +09:36:54 [ 25] [ 2] [01] +09:36:54 [ 28] [ 9] [D00002000] +09:36:54 [ 32] [ 6] [668899] +09:36:54 [ 35] [ 32] [6213544001673687=491212017368672] +09:36:54 [ 37] [ 12] [507902179609] +09:36:54 [ 41] [ 8] [03004005] +09:36:54 [ 42] [ 15] [APT ] +09:36:54 [ 43] [ 40] [ MOUANGKEO UNIT MOUANGKEO ] +09:36:54 [ 49] [ 3] [418] +09:36:54 [ 52] [ 16] [EC085B4AC4672FA7] +09:36:54 ============================================================================ +09:36:54 + + +waiting on router queue for slot.... +09:36:54 Sending to : +09:36:54 ============================================================================ +09:36:54 ============================================================================ +09:36:54 Slot Id : <134> +09:36:54 Transaction Type : REQUEST +09:36:54 Received From : +09:36:54 ============================================================================ +09:36:54 FNo. Len. Field Value +09:36:54 ============================================================================ +09:36:54 [ 1] [ 4] [0200] +09:36:54 [ 2] [ 16] [6213544001673687] +09:36:54 [ 3] [ 6] [010000] +09:36:54 [ 4] [ 12] [000050000000] +09:36:54 [ 7] [ 10] [0320093445] +09:36:54 [ 11] [ 6] [936073] +09:36:54 [ 12] [ 6] [093445] +09:36:54 [ 13] [ 4] [0320] +09:36:54 [ 15] [ 4] [0320] +09:36:54 [ 18] [ 4] [6011] +09:36:54 [ 19] [ 3] [418] +09:36:54 [ 22] [ 3] [021] +09:36:54 [ 25] [ 2] [01] +09:36:54 [ 28] [ 9] [D00002000] +09:36:54 [ 32] [ 6] [668899] +09:36:54 [ 35] [ 32] [6213544001673687=491212017368672] +09:36:54 [ 37] [ 12] [507902179609] +09:36:54 [ 41] [ 8] [03004005] +09:36:54 [ 42] [ 15] [APT ] +09:36:54 [ 43] [ 40] [ MOUANGKEO UNIT MOUANGKEO ] +09:36:54 [ 49] [ 3] [418] +09:36:54 [ 52] [ 16] [DDAA7D7482CBFB8B] +09:36:54 ============================================================================ +09:36:54 + + +waiting on router queue for slot.... +09:36:54 Sending to : <0> +09:36:54 ============================================================================ +09:36:55 ============================================================================ +09:36:55 Slot Id : <134> +09:36:55 Transaction Type : RESPONSE +09:36:55 Received From : +09:36:55 ============================================================================ +09:36:55 FNo. Len. Field Value +09:36:55 ============================================================================ +09:36:55 [ 1] [ 4] [0210] +09:36:55 [ 2] [ 16] [6213544001673687] +09:36:55 [ 3] [ 6] [010000] +09:36:55 [ 4] [ 12] [000050000000] +09:36:55 [ 7] [ 10] [0320093445] +09:36:55 [ 11] [ 6] [936073] +09:36:55 [ 12] [ 6] [093445] +09:36:55 [ 13] [ 4] [0320] +09:36:55 [ 15] [ 4] [0320] +09:36:55 [ 18] [ 4] [6011] +09:36:55 [ 19] [ 3] [418] +09:36:55 [ 32] [ 6] [668899] +09:36:55 [ 35] [ 32] [6213544001673687=491212017368672] +09:36:55 [ 37] [ 12] [507902179609] +09:36:55 [ 38] [ 6] [552657] +09:36:55 [ 39] [ 2] [00] +09:36:55 [ 41] [ 8] [03004005] +09:36:55 [ 49] [ 3] [418] +09:36:55 [ 54] [ 40] [0001418C0000781499230002418C000078149923] +09:36:55 ============================================================================ +09:36:55 Sending to : +09:36:55 ============================================================================ +09:36:55 + + +waiting on router queue for slot.... +09:36:56 ============================================================================ +09:36:56 Slot Id : <134> +09:36:56 Transaction Type : RESPONSE +09:36:56 Received From : +09:36:56 ============================================================================ +09:36:56 FNo. Len. Field Value +09:36:56 ============================================================================ +09:36:56 [ 1] [ 4] [0210] +09:36:56 [ 2] [ 16] [6213544001673687] +09:36:56 [ 3] [ 6] [010000] +09:36:56 [ 4] [ 12] [000050000000] +09:36:56 [ 7] [ 10] [0320093445] +09:36:56 [ 11] [ 6] [936073] +09:36:56 [ 12] [ 6] [093445] +09:36:56 [ 13] [ 4] [0320] +09:36:56 [ 15] [ 4] [0320] +09:36:56 [ 18] [ 4] [6011] +09:36:56 [ 19] [ 3] [418] +09:36:56 [ 32] [ 6] [668899] +09:36:56 [ 35] [ 32] [6213544001673687=491212017368672] +09:36:56 [ 37] [ 12] [507902179609] +09:36:56 [ 38] [ 6] [552657] +09:36:56 [ 39] [ 2] [00] +09:36:56 [ 41] [ 8] [03004005] +09:36:56 [ 49] [ 3] [418] +09:36:56 [ 54] [ 40] [0001418C0000781499230002418C000078149923] +09:36:56 ============================================================================ +09:36:56 Calculate Source COMM Id = 4 +09:36:56 ============================================================================ +09:36:56 + + +waiting on router queue for slot.... +09:36:57 ============================================================================ +09:36:57 Slot Id : <98> +09:36:57 Transaction Type : REQUEST +09:36:57 Received From : +09:36:57 ============================================================================ +09:36:57 FNo. Len. Field Value +09:36:57 ============================================================================ +09:36:57 [ 1] [ 4] [0800] +09:36:57 [ 7] [ 10] [0320023604] +09:36:57 [ 11] [ 6] [155665] +09:36:57 [ 70] [ 3] [301] +09:36:57 ============================================================================ +09:36:57 + + +waiting on router queue for slot.... +09:36:57 Sending to : +09:36:57 ============================================================================ +09:36:57 ============================================================================ +09:36:57 Slot Id : <98> +09:36:57 Transaction Type : RESPONSE +09:36:57 Received From : +09:36:57 ============================================================================ +09:36:57 FNo. Len. Field Value +09:36:57 ============================================================================ +09:36:57 [ 1] [ 4] [0810] +09:36:57 [ 7] [ 10] [0320023604] +09:36:57 [ 11] [ 6] [155665] +09:36:57 [ 39] [ 2] [00] +09:36:57 [ 70] [ 3] [301] +09:36:57 ============================================================================ +09:36:57 Calculate Source COMM Id = 2 +09:36:57 ============================================================================ +09:36:57 + + +waiting on router queue for slot.... +09:36:57 ============================================================================ +09:36:57 Slot Id : <103> +09:36:57 Transaction Type : REQUEST +09:36:57 Received From : +09:36:57 ============================================================================ +09:36:57 FNo. Len. Field Value +09:36:57 ============================================================================ +09:36:57 [ 1] [ 4] [0200] +09:36:57 [ 2] [ 16] [6688990602743807] +09:36:57 [ 3] [ 6] [010000] +09:36:57 [ 4] [ 12] [000050000000] +09:36:57 [ 7] [ 10] [0320023604] +09:36:57 [ 11] [ 6] [267647] +09:36:57 [ 12] [ 6] [093604] +09:36:57 [ 13] [ 4] [0320] +09:36:57 [ 14] [ 4] [4310] +09:36:57 [ 15] [ 4] [0320] +09:36:57 [ 18] [ 4] [6011] +09:36:57 [ 19] [ 3] [418] +09:36:57 [ 22] [ 3] [021] +09:36:57 [ 25] [ 2] [01] +09:36:57 [ 28] [ 9] [D00002000] +09:36:57 [ 32] [ 6] [180893] +09:36:57 [ 35] [ 37] [6688990602743807=43100061380702200000] +09:36:57 [ 37] [ 12] [507902267647] +09:36:57 [ 41] [ 8] [0201ADD1] +09:36:57 [ 42] [ 15] [999999 ] +09:36:57 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +09:36:57 [ 49] [ 3] [418] +09:36:57 [ 52] [ 16] [F54D9C36E0CF4D63] +09:36:57 ============================================================================ +09:36:57 + + +waiting on router queue for slot.... +09:36:57 Sending to : +09:36:57 ============================================================================ +09:36:57 Sending to : +09:36:57 ============================================================================ +09:36:57 ============================================================================ +09:36:57 Slot Id : <103> +09:36:57 Transaction Type : REQUEST +09:36:57 Received From : +09:36:57 ============================================================================ +09:36:57 FNo. Len. Field Value +09:36:57 ============================================================================ +09:36:57 [ 1] [ 4] [0200] +09:36:57 [ 2] [ 16] [6688990602743807] +09:36:57 [ 3] [ 6] [010000] +09:36:57 [ 4] [ 12] [000050000000] +09:36:57 [ 7] [ 10] [0320023604] +09:36:57 [ 11] [ 6] [267647] +09:36:57 [ 12] [ 6] [093604] +09:36:57 [ 13] [ 4] [0320] +09:36:57 [ 14] [ 4] [4310] +09:36:57 [ 15] [ 4] [0320] +09:36:57 [ 18] [ 4] [6011] +09:36:57 [ 19] [ 3] [418] +09:36:57 [ 22] [ 3] [021] +09:36:57 [ 25] [ 2] [01] +09:36:57 [ 28] [ 9] [D00002000] +09:36:57 [ 32] [ 6] [180893] +09:36:57 [ 35] [ 37] [6688990602743807=43100061380702200000] +09:36:57 [ 37] [ 12] [507902267647] +09:36:57 [ 41] [ 8] [0201ADD1] +09:36:57 [ 42] [ 15] [999999 ] +09:36:57 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +09:36:57 [ 49] [ 3] [418] +09:36:57 [ 52] [ 16] [F54D9C36E0CF4D63] +09:36:57 ============================================================================ +09:36:57 + + +waiting on router queue for slot.... +09:36:57 Sending to : +09:36:57 ============================================================================ +09:36:57 ============================================================================ +09:36:57 Slot Id : <103> +09:36:57 Transaction Type : REQUEST +09:36:57 Received From : +09:36:57 ============================================================================ +09:36:57 FNo. Len. Field Value +09:36:57 ============================================================================ +09:36:57 [ 1] [ 4] [0200] +09:36:57 [ 2] [ 16] [6688990602743807] +09:36:57 [ 3] [ 6] [010000] +09:36:57 [ 4] [ 12] [000050000000] +09:36:57 [ 7] [ 10] [0320023604] +09:36:57 [ 11] [ 6] [267647] +09:36:57 [ 12] [ 6] [093604] +09:36:57 [ 13] [ 4] [0320] +09:36:57 [ 14] [ 4] [4310] +09:36:57 [ 15] [ 4] [0320] +09:36:57 [ 18] [ 4] [6011] +09:36:57 [ 19] [ 3] [418] +09:36:57 [ 22] [ 3] [021] +09:36:57 [ 25] [ 2] [01] +09:36:57 [ 28] [ 9] [D00002000] +09:36:57 [ 32] [ 6] [180893] +09:36:57 [ 35] [ 37] [6688990602743807=43100061380702200000] +09:36:57 [ 37] [ 12] [507902267647] +09:36:57 [ 41] [ 8] [0201ADD1] +09:36:57 [ 42] [ 15] [999999 ] +09:36:57 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +09:36:57 [ 49] [ 3] [418] +09:36:57 [ 52] [ 16] [12759037976F2A17] +09:36:57 ============================================================================ +09:36:57 + + +waiting on router queue for slot.... +09:36:57 Sending to : <0> +09:36:57 ============================================================================ +09:36:57 ============================================================================ +09:36:57 Slot Id : <103> +09:36:57 Transaction Type : RESPONSE +09:36:57 Received From : +09:36:57 ============================================================================ +09:36:57 FNo. Len. Field Value +09:36:57 ============================================================================ +09:36:57 [ 1] [ 4] [0210] +09:36:57 [ 2] [ 16] [6688990602743807] +09:36:57 [ 3] [ 6] [010000] +09:36:57 [ 4] [ 12] [000050000000] +09:36:57 [ 7] [ 10] [0320023604] +09:36:57 [ 11] [ 6] [267647] +09:36:57 [ 12] [ 6] [093604] +09:36:57 [ 13] [ 4] [0320] +09:36:57 [ 15] [ 4] [0320] +09:36:57 [ 18] [ 4] [6011] +09:36:57 [ 19] [ 3] [418] +09:36:57 [ 22] [ 3] [021] +09:36:57 [ 32] [ 6] [180893] +09:36:57 [ 35] [ 37] [6688990602743807=43100061380702200000] +09:36:57 [ 37] [ 12] [507902267647] +09:36:57 [ 39] [ 2] [14] +09:36:57 [ 41] [ 8] [0201ADD1] +09:36:57 [ 49] [ 3] [418] +09:36:57 ============================================================================ +09:36:57 Sending to : +09:36:57 ============================================================================ +09:36:57 + + +waiting on router queue for slot.... +09:36:58 ============================================================================ +09:36:58 Slot Id : <103> +09:36:58 Transaction Type : RESPONSE +09:36:58 Received From : +09:36:58 ============================================================================ +09:36:58 FNo. Len. Field Value +09:36:58 ============================================================================ +09:36:58 [ 1] [ 4] [0210] +09:36:58 [ 2] [ 16] [6688990602743807] +09:36:58 [ 3] [ 6] [010000] +09:36:58 [ 4] [ 12] [000050000000] +09:36:58 [ 7] [ 10] [0320023604] +09:36:58 [ 11] [ 6] [267647] +09:36:58 [ 12] [ 6] [093604] +09:36:58 [ 13] [ 4] [0320] +09:36:58 [ 15] [ 4] [0320] +09:36:58 [ 18] [ 4] [6011] +09:36:58 [ 19] [ 3] [418] +09:36:58 [ 22] [ 3] [021] +09:36:58 [ 32] [ 6] [180893] +09:36:58 [ 35] [ 37] [6688990602743807=43100061380702200000] +09:36:58 [ 37] [ 12] [507902267647] +09:36:58 [ 39] [ 2] [14] +09:36:58 [ 41] [ 8] [0201ADD1] +09:36:58 [ 49] [ 3] [418] +09:36:58 ============================================================================ +09:36:58 Calculate Source COMM Id = 2 +09:36:58 ============================================================================ +09:36:58 + + +waiting on router queue for slot.... +09:37:02 ============================================================================ +09:37:02 Slot Id : <96> +09:37:02 Transaction Type : REQUEST +09:37:02 Received From : +09:37:02 ============================================================================ +09:37:02 FNo. Len. Field Value +09:37:02 ============================================================================ +09:37:02 [ 1] [ 4] [0200] +09:37:02 [ 2] [ 16] [6213541000646201] +09:37:02 [ 3] [ 6] [010000] +09:37:02 [ 4] [ 12] [000100000000] +09:37:02 [ 7] [ 10] [0320023605] +09:37:02 [ 11] [ 6] [267648] +09:37:02 [ 12] [ 6] [093605] +09:37:02 [ 13] [ 4] [0320] +09:37:02 [ 14] [ 4] [4912] +09:37:02 [ 15] [ 4] [0320] +09:37:02 [ 18] [ 4] [6011] +09:37:02 [ 19] [ 3] [418] +09:37:02 [ 22] [ 3] [021] +09:37:02 [ 25] [ 2] [01] +09:37:02 [ 28] [ 9] [D00002000] +09:37:02 [ 32] [ 6] [180893] +09:37:02 [ 35] [ 32] [6213541000646201=491212014620504] +09:37:02 [ 37] [ 12] [507902267648] +09:37:02 [ 41] [ 8] [0523XYNG] +09:37:02 [ 42] [ 15] [999999 ] +09:37:02 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:37:02 [ 49] [ 3] [418] +09:37:02 [ 52] [ 16] [756DBEF7787A3EE4] +09:37:02 ============================================================================ +09:37:02 + + +waiting on router queue for slot.... +09:37:02 Sending to : +09:37:02 ============================================================================ +09:37:02 Sending to : +09:37:02 ============================================================================ +09:37:02 ============================================================================ +09:37:02 Slot Id : <96> +09:37:02 Transaction Type : REQUEST +09:37:02 Received From : +09:37:02 ============================================================================ +09:37:02 FNo. Len. Field Value +09:37:02 ============================================================================ +09:37:02 [ 1] [ 4] [0200] +09:37:02 [ 2] [ 16] [6213541000646201] +09:37:02 [ 3] [ 6] [010000] +09:37:02 [ 4] [ 12] [000100000000] +09:37:02 [ 7] [ 10] [0320023605] +09:37:02 [ 11] [ 6] [267648] +09:37:02 [ 12] [ 6] [093605] +09:37:02 [ 13] [ 4] [0320] +09:37:02 [ 14] [ 4] [4912] +09:37:02 [ 15] [ 4] [0320] +09:37:02 [ 18] [ 4] [6011] +09:37:02 [ 19] [ 3] [418] +09:37:02 [ 22] [ 3] [021] +09:37:02 [ 25] [ 2] [01] +09:37:02 [ 28] [ 9] [D00002000] +09:37:02 [ 32] [ 6] [180893] +09:37:02 [ 35] [ 32] [6213541000646201=491212014620504] +09:37:02 [ 37] [ 12] [507902267648] +09:37:02 [ 41] [ 8] [0523XYNG] +09:37:02 [ 42] [ 15] [999999 ] +09:37:02 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:37:02 [ 49] [ 3] [418] +09:37:02 [ 52] [ 16] [756DBEF7787A3EE4] +09:37:02 ============================================================================ +09:37:02 + + +waiting on router queue for slot.... +09:37:02 Sending to : +09:37:02 ============================================================================ +09:37:02 ============================================================================ +09:37:02 Slot Id : <96> +09:37:02 Transaction Type : REQUEST +09:37:02 Received From : +09:37:02 ============================================================================ +09:37:02 FNo. Len. Field Value +09:37:02 ============================================================================ +09:37:02 [ 1] [ 4] [0200] +09:37:02 [ 2] [ 16] [6213541000646201] +09:37:02 [ 3] [ 6] [010000] +09:37:02 [ 4] [ 12] [000100000000] +09:37:02 [ 7] [ 10] [0320023605] +09:37:02 [ 11] [ 6] [267648] +09:37:02 [ 12] [ 6] [093605] +09:37:02 [ 13] [ 4] [0320] +09:37:02 [ 14] [ 4] [4912] +09:37:02 [ 15] [ 4] [0320] +09:37:02 [ 18] [ 4] [6011] +09:37:02 [ 19] [ 3] [418] +09:37:02 [ 22] [ 3] [021] +09:37:02 [ 25] [ 2] [01] +09:37:02 [ 28] [ 9] [D00002000] +09:37:02 [ 32] [ 6] [180893] +09:37:02 [ 35] [ 32] [6213541000646201=491212014620504] +09:37:02 [ 37] [ 12] [507902267648] +09:37:02 [ 41] [ 8] [0523XYNG] +09:37:02 [ 42] [ 15] [999999 ] +09:37:02 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:37:02 [ 49] [ 3] [418] +09:37:02 [ 52] [ 16] [0C2F06640D5A7025] +09:37:02 ============================================================================ +09:37:02 + + +waiting on router queue for slot.... +09:37:02 Sending to : <0> +09:37:02 ============================================================================ +09:37:03 ============================================================================ +09:37:03 Slot Id : <96> +09:37:03 Transaction Type : RESPONSE +09:37:03 Received From : +09:37:03 ============================================================================ +09:37:03 FNo. Len. Field Value +09:37:03 ============================================================================ +09:37:03 [ 1] [ 4] [0210] +09:37:03 [ 2] [ 16] [6213541000646201] +09:37:03 [ 3] [ 6] [010000] +09:37:03 [ 4] [ 12] [000100000000] +09:37:03 [ 7] [ 10] [0320023605] +09:37:03 [ 11] [ 6] [267648] +09:37:03 [ 12] [ 6] [093605] +09:37:03 [ 13] [ 4] [0320] +09:37:03 [ 15] [ 4] [0320] +09:37:03 [ 18] [ 4] [6011] +09:37:03 [ 19] [ 3] [418] +09:37:03 [ 32] [ 6] [180893] +09:37:03 [ 35] [ 32] [6213541000646201=491212014620504] +09:37:03 [ 37] [ 12] [507902267648] +09:37:03 [ 38] [ 6] [044581] +09:37:03 [ 39] [ 2] [00] +09:37:03 [ 41] [ 8] [0523XYNG] +09:37:03 [ 49] [ 3] [418] +09:37:03 [ 54] [ 40] [0001418C0012448380070002418C001244838007] +09:37:03 ============================================================================ +09:37:03 Sending to : +09:37:03 ============================================================================ +09:37:03 + + +waiting on router queue for slot.... +09:37:05 ============================================================================ +09:37:05 Slot Id : <96> +09:37:05 Transaction Type : RESPONSE +09:37:05 Received From : +09:37:05 ============================================================================ +09:37:05 FNo. Len. Field Value +09:37:05 ============================================================================ +09:37:05 [ 1] [ 4] [0210] +09:37:05 [ 2] [ 16] [6213541000646201] +09:37:05 [ 3] [ 6] [010000] +09:37:05 [ 4] [ 12] [000100000000] +09:37:05 [ 7] [ 10] [0320023605] +09:37:05 [ 11] [ 6] [267648] +09:37:05 [ 12] [ 6] [093605] +09:37:05 [ 13] [ 4] [0320] +09:37:05 [ 15] [ 4] [0320] +09:37:05 [ 18] [ 4] [6011] +09:37:05 [ 19] [ 3] [418] +09:37:05 [ 32] [ 6] [180893] +09:37:05 [ 35] [ 32] [6213541000646201=491212014620504] +09:37:05 [ 37] [ 12] [507902267648] +09:37:05 [ 38] [ 6] [044581] +09:37:05 [ 39] [ 2] [00] +09:37:05 [ 41] [ 8] [0523XYNG] +09:37:05 [ 49] [ 3] [418] +09:37:05 [ 54] [ 40] [0001418C0012448380070002418C001244838007] +09:37:05 ============================================================================ +09:37:05 Calculate Source COMM Id = 2 +09:37:05 ============================================================================ +09:37:05 + + +waiting on router queue for slot.... +09:37:07 ============================================================================ +09:37:07 Slot Id : <71> +09:37:07 Transaction Type : REQUEST +09:37:07 Received From : +09:37:07 ============================================================================ +09:37:07 FNo. Len. Field Value +09:37:07 ============================================================================ +09:37:07 [ 1] [ 4] [0200] +09:37:07 [ 2] [ 16] [6213544001586947] +09:37:07 [ 3] [ 6] [301000] +09:37:07 [ 7] [ 10] [0320023614] +09:37:07 [ 11] [ 6] [267651] +09:37:07 [ 12] [ 6] [093614] +09:37:07 [ 13] [ 4] [0320] +09:37:07 [ 14] [ 4] [4912] +09:37:07 [ 15] [ 4] [0320] +09:37:07 [ 18] [ 4] [6011] +09:37:07 [ 19] [ 3] [418] +09:37:07 [ 22] [ 3] [021] +09:37:07 [ 25] [ 2] [01] +09:37:07 [ 32] [ 6] [180893] +09:37:07 [ 35] [ 32] [6213544001586947=491212018694767] +09:37:07 [ 37] [ 12] [507902267651] +09:37:07 [ 41] [ 8] [0401XSBR] +09:37:07 [ 42] [ 15] [999999 ] +09:37:07 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:37:07 [ 49] [ 3] [418] +09:37:07 [ 52] [ 16] [9749F95791A0686C] +09:37:07 ============================================================================ +09:37:07 + + +waiting on router queue for slot.... +09:37:07 Sending to : +09:37:07 ============================================================================ +09:37:07 Sending to : +09:37:07 ============================================================================ +09:37:08 ============================================================================ +09:37:08 Slot Id : <71> +09:37:08 Transaction Type : REQUEST +09:37:08 Received From : +09:37:08 ============================================================================ +09:37:08 FNo. Len. Field Value +09:37:08 ============================================================================ +09:37:08 [ 1] [ 4] [0200] +09:37:08 [ 2] [ 16] [6213544001586947] +09:37:08 [ 3] [ 6] [301000] +09:37:08 [ 7] [ 10] [0320023614] +09:37:08 [ 11] [ 6] [267651] +09:37:08 [ 12] [ 6] [093614] +09:37:08 [ 13] [ 4] [0320] +09:37:08 [ 14] [ 4] [4912] +09:37:08 [ 15] [ 4] [0320] +09:37:08 [ 18] [ 4] [6011] +09:37:08 [ 19] [ 3] [418] +09:37:08 [ 22] [ 3] [021] +09:37:08 [ 25] [ 2] [01] +09:37:08 [ 32] [ 6] [180893] +09:37:08 [ 35] [ 32] [6213544001586947=491212018694767] +09:37:08 [ 37] [ 12] [507902267651] +09:37:08 [ 41] [ 8] [0401XSBR] +09:37:08 [ 42] [ 15] [999999 ] +09:37:08 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:37:08 [ 49] [ 3] [418] +09:37:08 [ 52] [ 16] [9749F95791A0686C] +09:37:08 ============================================================================ +09:37:08 + + +waiting on router queue for slot.... +09:37:08 Sending to : +09:37:08 ============================================================================ +09:37:08 ============================================================================ +09:37:08 Slot Id : <71> +09:37:08 Transaction Type : REQUEST +09:37:08 Received From : +09:37:08 ============================================================================ +09:37:08 FNo. Len. Field Value +09:37:08 ============================================================================ +09:37:08 [ 1] [ 4] [0200] +09:37:08 [ 2] [ 16] [6213544001586947] +09:37:08 [ 3] [ 6] [301000] +09:37:08 [ 7] [ 10] [0320023614] +09:37:08 [ 11] [ 6] [267651] +09:37:08 [ 12] [ 6] [093614] +09:37:08 [ 13] [ 4] [0320] +09:37:08 [ 14] [ 4] [4912] +09:37:08 [ 15] [ 4] [0320] +09:37:08 [ 18] [ 4] [6011] +09:37:08 [ 19] [ 3] [418] +09:37:08 [ 22] [ 3] [021] +09:37:08 [ 25] [ 2] [01] +09:37:08 [ 32] [ 6] [180893] +09:37:08 [ 35] [ 32] [6213544001586947=491212018694767] +09:37:08 [ 37] [ 12] [507902267651] +09:37:08 [ 41] [ 8] [0401XSBR] +09:37:08 [ 42] [ 15] [999999 ] +09:37:08 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:37:08 [ 49] [ 3] [418] +09:37:08 [ 52] [ 16] [5BD10B094D994BF7] +09:37:08 ============================================================================ +09:37:08 + + +waiting on router queue for slot.... +09:37:08 Sending to : <0> +09:37:08 ============================================================================ +09:37:08 ============================================================================ +09:37:08 Slot Id : <71> +09:37:08 Transaction Type : RESPONSE +09:37:08 Received From : +09:37:08 ============================================================================ +09:37:08 FNo. Len. Field Value +09:37:08 ============================================================================ +09:37:08 [ 1] [ 4] [0210] +09:37:08 [ 2] [ 16] [6213544001586947] +09:37:08 [ 3] [ 6] [301000] +09:37:08 [ 4] [ 12] [000000000000] +09:37:08 [ 7] [ 10] [0320023614] +09:37:08 [ 11] [ 6] [267651] +09:37:08 [ 12] [ 6] [093614] +09:37:08 [ 13] [ 4] [0320] +09:37:08 [ 15] [ 4] [0320] +09:37:08 [ 18] [ 4] [6011] +09:37:08 [ 19] [ 3] [418] +09:37:08 [ 32] [ 6] [180893] +09:37:08 [ 35] [ 32] [6213544001586947=491212018694767] +09:37:08 [ 37] [ 12] [507902267651] +09:37:08 [ 38] [ 6] [253122] +09:37:08 [ 39] [ 2] [00] +09:37:08 [ 41] [ 8] [0401XSBR] +09:37:08 [ 49] [ 3] [418] +09:37:08 [ 54] [ 40] [1001418C0036585821501002418C003658582150] +09:37:08 ============================================================================ +09:37:08 Sending to : +09:37:08 ============================================================================ +09:37:08 + + +waiting on router queue for slot.... +09:37:09 ============================================================================ +09:37:09 Slot Id : <71> +09:37:09 Transaction Type : RESPONSE +09:37:09 Received From : +09:37:09 ============================================================================ +09:37:09 FNo. Len. Field Value +09:37:09 ============================================================================ +09:37:09 [ 1] [ 4] [0210] +09:37:09 [ 2] [ 16] [6213544001586947] +09:37:09 [ 3] [ 6] [301000] +09:37:09 [ 4] [ 12] [000000000000] +09:37:09 [ 7] [ 10] [0320023614] +09:37:09 [ 11] [ 6] [267651] +09:37:09 [ 12] [ 6] [093614] +09:37:09 [ 13] [ 4] [0320] +09:37:09 [ 15] [ 4] [0320] +09:37:09 [ 18] [ 4] [6011] +09:37:09 [ 19] [ 3] [418] +09:37:09 [ 32] [ 6] [180893] +09:37:09 [ 35] [ 32] [6213544001586947=491212018694767] +09:37:09 [ 37] [ 12] [507902267651] +09:37:09 [ 38] [ 6] [253122] +09:37:09 [ 39] [ 2] [00] +09:37:09 [ 41] [ 8] [0401XSBR] +09:37:09 [ 49] [ 3] [418] +09:37:09 [ 54] [ 40] [1001418C0036585821501002418C003658582150] +09:37:09 ============================================================================ +09:37:09 Calculate Source COMM Id = 2 +09:37:09 ============================================================================ +09:37:09 + + +waiting on router queue for slot.... +09:37:11 ============================================================================ +09:37:11 Slot Id : <102> +09:37:11 Transaction Type : REQUEST +09:37:11 Received From : +09:37:11 ============================================================================ +09:37:11 FNo. Len. Field Value +09:37:11 ============================================================================ +09:37:11 [ 1] [ 4] [0200] +09:37:11 [ 2] [ 16] [1808930200045466] +09:37:11 [ 3] [ 6] [010000] +09:37:11 [ 4] [ 12] [000100000000] +09:37:11 [ 7] [ 10] [0320093502] +09:37:11 [ 11] [ 6] [936092] +09:37:11 [ 12] [ 6] [093502] +09:37:11 [ 13] [ 4] [0320] +09:37:11 [ 15] [ 4] [0320] +09:37:11 [ 18] [ 4] [6011] +09:37:11 [ 19] [ 3] [418] +09:37:11 [ 22] [ 3] [021] +09:37:11 [ 25] [ 2] [01] +09:37:11 [ 28] [ 9] [D00002000] +09:37:11 [ 32] [ 6] [668899] +09:37:11 [ 35] [ 27] [1808930200045466=1803500615] +09:37:11 [ 37] [ 12] [507900858236] +09:37:11 [ 41] [ 8] [03015004] +09:37:11 [ 42] [ 15] [APT ] +09:37:11 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +09:37:11 [ 49] [ 3] [418] +09:37:11 [ 52] [ 16] [0E8C0A5F9CA737D1] +09:37:11 ============================================================================ +09:37:11 + + +waiting on router queue for slot.... +09:37:11 Sending to : +09:37:11 ============================================================================ +09:37:11 Sending to : +09:37:11 ============================================================================ +09:37:12 ============================================================================ +09:37:12 Slot Id : <102> +09:37:12 Transaction Type : REQUEST +09:37:12 Received From : +09:37:12 ============================================================================ +09:37:12 FNo. Len. Field Value +09:37:12 ============================================================================ +09:37:12 [ 1] [ 4] [0200] +09:37:12 [ 2] [ 16] [1808930200045466] +09:37:12 [ 3] [ 6] [010000] +09:37:12 [ 4] [ 12] [000100000000] +09:37:12 [ 7] [ 10] [0320093502] +09:37:12 [ 11] [ 6] [936092] +09:37:12 [ 12] [ 6] [093502] +09:37:12 [ 13] [ 4] [0320] +09:37:12 [ 15] [ 4] [0320] +09:37:12 [ 18] [ 4] [6011] +09:37:12 [ 19] [ 3] [418] +09:37:12 [ 22] [ 3] [021] +09:37:12 [ 25] [ 2] [01] +09:37:12 [ 28] [ 9] [D00002000] +09:37:12 [ 32] [ 6] [668899] +09:37:12 [ 35] [ 27] [1808930200045466=1803500615] +09:37:12 [ 37] [ 12] [507900858236] +09:37:12 [ 41] [ 8] [03015004] +09:37:12 [ 42] [ 15] [APT ] +09:37:12 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +09:37:12 [ 49] [ 3] [418] +09:37:12 [ 52] [ 16] [0E8C0A5F9CA737D1] +09:37:12 ============================================================================ +09:37:12 + + +waiting on router queue for slot.... +09:37:12 Sending to : +09:37:12 ============================================================================ +09:37:12 ============================================================================ +09:37:12 Slot Id : <102> +09:37:12 Transaction Type : REQUEST +09:37:12 Received From : +09:37:12 ============================================================================ +09:37:12 FNo. Len. Field Value +09:37:12 ============================================================================ +09:37:12 [ 1] [ 4] [0200] +09:37:12 [ 2] [ 16] [1808930200045466] +09:37:12 [ 3] [ 6] [010000] +09:37:12 [ 4] [ 12] [000100000000] +09:37:12 [ 7] [ 10] [0320093502] +09:37:12 [ 11] [ 6] [936092] +09:37:12 [ 12] [ 6] [093502] +09:37:12 [ 13] [ 4] [0320] +09:37:12 [ 15] [ 4] [0320] +09:37:12 [ 18] [ 4] [6011] +09:37:12 [ 19] [ 3] [418] +09:37:12 [ 22] [ 3] [021] +09:37:12 [ 25] [ 2] [01] +09:37:12 [ 28] [ 9] [D00002000] +09:37:12 [ 32] [ 6] [668899] +09:37:12 [ 35] [ 27] [1808930200045466=1803500615] +09:37:12 [ 37] [ 12] [507900858236] +09:37:12 [ 41] [ 8] [03015004] +09:37:12 [ 42] [ 15] [APT ] +09:37:12 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +09:37:12 [ 49] [ 3] [418] +09:37:12 [ 52] [ 16] [79ABFCDCA75C0C85] +09:37:12 ============================================================================ +09:37:12 + + +waiting on router queue for slot.... +09:37:12 Sending to : <2> +09:37:12 ============================================================================ +09:37:13 ============================================================================ +09:37:13 Slot Id : <101> +09:37:13 Transaction Type : REQUEST +09:37:13 Received From : +09:37:13 ============================================================================ +09:37:13 FNo. Len. Field Value +09:37:13 ============================================================================ +09:37:13 [ 1] [ 4] [0800] +09:37:13 [ 2] [ 5] [02531] +09:37:13 [ 3] [ 6] [579098] +09:37:13 [ 7] [ 10] [0320023713] +09:37:13 [ 11] [ 6] [806970] +09:37:13 [ 15] [ 10] [0320023713] +09:37:13 [ 37] [ 11] [57909806970] +09:37:13 [ 70] [ 3] [001] +09:37:13 ============================================================================ +09:37:13 + + +waiting on router queue for slot.... +09:37:13 ============================================================================ +09:37:13 Slot Id : <101> +09:37:13 Transaction Type : RESPONSE +09:37:13 Received From : +09:37:13 ============================================================================ +09:37:13 FNo. Len. Field Value +09:37:13 ============================================================================ +09:37:13 [ 1] [ 4] [0810] +09:37:13 [ 7] [ 10] [0320023713] +09:37:13 [ 11] [ 6] [806970] +09:37:13 [ 15] [ 4] [0320] +09:37:13 [ 37] [ 12] [57909806970] +09:37:13 [ 39] [ 2] [00] +09:37:13 [ 70] [ 3] [001] +09:37:13 ============================================================================ +09:37:13 Sending to : +09:37:13 ============================================================================ +09:37:13 + + +waiting on router queue for slot.... +09:37:13 ============================================================================ +09:37:13 Slot Id : <70> +09:37:13 Transaction Type : REQUEST +09:37:13 Received From : +09:37:13 ============================================================================ +09:37:13 FNo. Len. Field Value +09:37:13 ============================================================================ +09:37:13 [ 1] [ 4] [0200] +09:37:13 [ 2] [ 16] [6213544001359980] +09:37:13 [ 3] [ 6] [010000] +09:37:13 [ 4] [ 12] [000100000000] +09:37:13 [ 7] [ 10] [0320023619] +09:37:13 [ 11] [ 6] [267653] +09:37:13 [ 12] [ 6] [093619] +09:37:13 [ 13] [ 4] [0320] +09:37:13 [ 14] [ 4] [4912] +09:37:13 [ 15] [ 4] [0320] +09:37:13 [ 18] [ 4] [6011] +09:37:13 [ 19] [ 3] [418] +09:37:13 [ 22] [ 3] [021] +09:37:13 [ 25] [ 2] [01] +09:37:13 [ 28] [ 9] [D00002000] +09:37:13 [ 32] [ 6] [180893] +09:37:13 [ 35] [ 32] [6213544001359980=491212015998593] +09:37:13 [ 37] [ 12] [507902267653] +09:37:13 [ 41] [ 8] [0466PSLB] +09:37:13 [ 42] [ 15] [999999 ] +09:37:13 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +09:37:13 [ 49] [ 3] [418] +09:37:13 [ 52] [ 16] [8D56264A8E63C7E7] +09:37:13 ============================================================================ +09:37:13 + + +waiting on router queue for slot.... +09:37:13 Sending to : +09:37:13 ============================================================================ +09:37:13 Sending to : +09:37:13 ============================================================================ +09:37:14 ============================================================================ +09:37:14 Slot Id : <70> +09:37:14 Transaction Type : REQUEST +09:37:14 Received From : +09:37:14 ============================================================================ +09:37:14 FNo. Len. Field Value +09:37:14 ============================================================================ +09:37:14 [ 1] [ 4] [0200] +09:37:14 [ 2] [ 16] [6213544001359980] +09:37:14 [ 3] [ 6] [010000] +09:37:14 [ 4] [ 12] [000100000000] +09:37:14 [ 7] [ 10] [0320023619] +09:37:14 [ 11] [ 6] [267653] +09:37:14 [ 12] [ 6] [093619] +09:37:14 [ 13] [ 4] [0320] +09:37:14 [ 14] [ 4] [4912] +09:37:14 [ 15] [ 4] [0320] +09:37:14 [ 18] [ 4] [6011] +09:37:14 [ 19] [ 3] [418] +09:37:14 [ 22] [ 3] [021] +09:37:14 [ 25] [ 2] [01] +09:37:14 [ 28] [ 9] [D00002000] +09:37:14 [ 32] [ 6] [180893] +09:37:14 [ 35] [ 32] [6213544001359980=491212015998593] +09:37:14 [ 37] [ 12] [507902267653] +09:37:14 [ 41] [ 8] [0466PSLB] +09:37:14 [ 42] [ 15] [999999 ] +09:37:14 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +09:37:14 [ 49] [ 3] [418] +09:37:14 [ 52] [ 16] [8D56264A8E63C7E7] +09:37:14 ============================================================================ +09:37:14 + + +waiting on router queue for slot.... +09:37:14 Sending to : +09:37:14 ============================================================================ +09:37:14 ============================================================================ +09:37:14 Slot Id : <70> +09:37:14 Transaction Type : REQUEST +09:37:14 Received From : +09:37:14 ============================================================================ +09:37:14 FNo. Len. Field Value +09:37:14 ============================================================================ +09:37:14 [ 1] [ 4] [0200] +09:37:14 [ 2] [ 16] [6213544001359980] +09:37:14 [ 3] [ 6] [010000] +09:37:14 [ 4] [ 12] [000100000000] +09:37:14 [ 7] [ 10] [0320023619] +09:37:14 [ 11] [ 6] [267653] +09:37:14 [ 12] [ 6] [093619] +09:37:14 [ 13] [ 4] [0320] +09:37:14 [ 14] [ 4] [4912] +09:37:14 [ 15] [ 4] [0320] +09:37:14 [ 18] [ 4] [6011] +09:37:14 [ 19] [ 3] [418] +09:37:14 [ 22] [ 3] [021] +09:37:14 [ 25] [ 2] [01] +09:37:14 [ 28] [ 9] [D00002000] +09:37:14 [ 32] [ 6] [180893] +09:37:14 [ 35] [ 32] [6213544001359980=491212015998593] +09:37:14 [ 37] [ 12] [507902267653] +09:37:14 [ 41] [ 8] [0466PSLB] +09:37:14 [ 42] [ 15] [999999 ] +09:37:14 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +09:37:14 [ 49] [ 3] [418] +09:37:14 [ 52] [ 16] [F14BD8E417016046] +09:37:14 ============================================================================ +09:37:14 + + +waiting on router queue for slot.... +09:37:14 Sending to : <0> +09:37:14 ============================================================================ +09:37:14 ============================================================================ +09:37:14 Slot Id : <70> +09:37:14 Transaction Type : RESPONSE +09:37:14 Received From : +09:37:14 ============================================================================ +09:37:14 FNo. Len. Field Value +09:37:14 ============================================================================ +09:37:14 [ 1] [ 4] [0210] +09:37:14 [ 2] [ 16] [6213544001359980] +09:37:14 [ 3] [ 6] [010000] +09:37:14 [ 4] [ 12] [000100000000] +09:37:14 [ 7] [ 10] [0320023619] +09:37:14 [ 11] [ 6] [267653] +09:37:14 [ 12] [ 6] [093619] +09:37:14 [ 13] [ 4] [0320] +09:37:14 [ 15] [ 4] [0320] +09:37:14 [ 18] [ 4] [6011] +09:37:14 [ 19] [ 3] [418] +09:37:14 [ 32] [ 6] [180893] +09:37:14 [ 35] [ 32] [6213544001359980=491212015998593] +09:37:14 [ 37] [ 12] [507902267653] +09:37:14 [ 38] [ 6] [249301] +09:37:14 [ 39] [ 2] [00] +09:37:14 [ 41] [ 8] [0466PSLB] +09:37:14 [ 49] [ 3] [418] +09:37:14 [ 54] [ 40] [0001418C0000229265570002418C000022926557] +09:37:14 ============================================================================ +09:37:14 Sending to : +09:37:14 ============================================================================ +09:37:14 + + +waiting on router queue for slot.... +09:37:14 ============================================================================ +09:37:14 Slot Id : <109> +09:37:14 Transaction Type : REQUEST +09:37:14 Received From : +09:37:14 ============================================================================ +09:37:14 FNo. Len. Field Value +09:37:14 ============================================================================ +09:37:14 [ 1] [ 4] [0200] +09:37:14 [ 2] [ 16] [6688990040055327] +09:37:14 [ 3] [ 6] [010000] +09:37:14 [ 4] [ 12] [000002000000] +09:37:14 [ 7] [ 10] [0320093711] +09:37:14 [ 11] [ 6] [701138] +09:37:14 [ 12] [ 6] [093711] +09:37:14 [ 13] [ 4] [0320] +09:37:14 [ 15] [ 4] [0320] +09:37:14 [ 18] [ 4] [6011] +09:37:14 [ 22] [ 3] [900] +09:37:14 [ 25] [ 2] [02] +09:37:14 [ 28] [ 9] [D00002000] +09:37:14 [ 32] [ 6] [621354] +09:37:14 [ 35] [ 37] [6688990040055327=97121261845840600000] +09:37:14 [ 37] [ 12] [507904965510] +09:37:14 [ 41] [ 8] [15001100] +09:37:14 [ 42] [ 15] [NATIVE ] +09:37:14 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:37:14 [ 49] [ 3] [418] +09:37:14 [ 52] [ 16] [4825DBCAF472ADF0] +09:37:14 ============================================================================ +09:37:14 + + +waiting on router queue for slot.... +09:37:14 Sending to : +09:37:14 ============================================================================ +09:37:14 Sending to : +09:37:14 ============================================================================ +09:37:15 ============================================================================ +09:37:15 Slot Id : <109> +09:37:15 Transaction Type : REQUEST +09:37:15 Received From : +09:37:15 ============================================================================ +09:37:15 FNo. Len. Field Value +09:37:15 ============================================================================ +09:37:15 [ 1] [ 4] [0200] +09:37:15 [ 2] [ 16] [6688990040055327] +09:37:15 [ 3] [ 6] [010000] +09:37:15 [ 4] [ 12] [000002000000] +09:37:15 [ 7] [ 10] [0320093711] +09:37:15 [ 11] [ 6] [701138] +09:37:15 [ 12] [ 6] [093711] +09:37:15 [ 13] [ 4] [0320] +09:37:15 [ 15] [ 4] [0320] +09:37:15 [ 18] [ 4] [6011] +09:37:15 [ 22] [ 3] [900] +09:37:15 [ 25] [ 2] [02] +09:37:15 [ 28] [ 9] [D00002000] +09:37:15 [ 32] [ 6] [621354] +09:37:15 [ 35] [ 37] [6688990040055327=97121261845840600000] +09:37:15 [ 37] [ 12] [507904965510] +09:37:15 [ 41] [ 8] [15001100] +09:37:15 [ 42] [ 15] [NATIVE ] +09:37:15 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:37:15 [ 49] [ 3] [418] +09:37:15 [ 52] [ 16] [4825DBCAF472ADF0] +09:37:15 ============================================================================ +09:37:15 + + +waiting on router queue for slot.... +09:37:15 Sending to : +09:37:15 ============================================================================ +09:37:15 ============================================================================ +09:37:15 Slot Id : <109> +09:37:15 Transaction Type : REQUEST +09:37:15 Received From : +09:37:15 ============================================================================ +09:37:15 FNo. Len. Field Value +09:37:15 ============================================================================ +09:37:15 [ 1] [ 4] [0200] +09:37:15 [ 2] [ 16] [6688990040055327] +09:37:15 [ 3] [ 6] [010000] +09:37:15 [ 4] [ 12] [000002000000] +09:37:15 [ 7] [ 10] [0320093711] +09:37:15 [ 11] [ 6] [701138] +09:37:15 [ 12] [ 6] [093711] +09:37:15 [ 13] [ 4] [0320] +09:37:15 [ 15] [ 4] [0320] +09:37:15 [ 18] [ 4] [6011] +09:37:15 [ 22] [ 3] [900] +09:37:15 [ 25] [ 2] [02] +09:37:15 [ 28] [ 9] [D00002000] +09:37:15 [ 32] [ 6] [621354] +09:37:15 [ 35] [ 37] [6688990040055327=97121261845840600000] +09:37:15 [ 37] [ 12] [507904965510] +09:37:15 [ 41] [ 8] [15001100] +09:37:15 [ 42] [ 15] [NATIVE ] +09:37:15 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +09:37:15 [ 49] [ 3] [418] +09:37:15 [ 52] [ 16] [4435982947E662D5] +09:37:15 ============================================================================ +09:37:15 + + +waiting on router queue for slot.... +09:37:15 Sending to : <4> +09:37:15 ============================================================================ +09:37:16 ============================================================================ +09:37:16 Slot Id : <70> +09:37:16 Transaction Type : RESPONSE +09:37:16 Received From : +09:37:16 ============================================================================ +09:37:16 FNo. Len. Field Value +09:37:16 ============================================================================ +09:37:16 [ 1] [ 4] [0210] +09:37:16 [ 2] [ 16] [6213544001359980] +09:37:16 [ 3] [ 6] [010000] +09:37:16 [ 4] [ 12] [000100000000] +09:37:16 [ 7] [ 10] [0320023619] +09:37:16 [ 11] [ 6] [267653] +09:37:16 [ 12] [ 6] [093619] +09:37:16 [ 13] [ 4] [0320] +09:37:16 [ 15] [ 4] [0320] +09:37:16 [ 18] [ 4] [6011] +09:37:16 [ 19] [ 3] [418] +09:37:16 [ 32] [ 6] [180893] +09:37:16 [ 35] [ 32] [6213544001359980=491212015998593] +09:37:16 [ 37] [ 12] [507902267653] +09:37:16 [ 38] [ 6] [249301] +09:37:16 [ 39] [ 2] [00] +09:37:16 [ 41] [ 8] [0466PSLB] +09:37:16 [ 49] [ 3] [418] +09:37:16 [ 54] [ 40] [0001418C0000229265570002418C000022926557] +09:37:16 ============================================================================ +09:37:16 Calculate Source COMM Id = 2 +09:37:16 ============================================================================ +09:37:16 + + +waiting on router queue for slot.... +09:37:16 ============================================================================ +09:37:16 Slot Id : <109> +09:37:16 Transaction Type : RESPONSE +09:37:16 Received From : +09:37:16 ============================================================================ +09:37:16 FNo. Len. Field Value +09:37:16 ============================================================================ +09:37:16 [ 1] [ 4] [0210] +09:37:16 [ 2] [ 16] [6688990040055327] +09:37:16 [ 3] [ 6] [010000] +09:37:16 [ 4] [ 12] [000002000000] +09:37:16 [ 11] [ 6] [701138] +09:37:16 [ 12] [ 6] [093711] +09:37:16 [ 15] [ 4] [0320] +09:37:16 [ 18] [ 4] [6011] +09:37:16 [ 32] [ 6] [621354] +09:37:16 [ 35] [ 37] [6688990040055327=97121261845840600000] +09:37:16 [ 37] [ 12] [507904965510] +09:37:16 [ 38] [ 6] [462215] +09:37:16 [ 39] [ 2] [00] +09:37:16 [ 41] [ 8] [15001100] +09:37:16 [ 49] [ 3] [418] +09:37:16 [ 54] [ 20] [0002418C000128126508] +09:37:16 ============================================================================ +09:37:16 Sending to : +09:37:16 ============================================================================ +09:37:16 + + +waiting on router queue for slot.... +09:37:17 ============================================================================ +09:37:17 Slot Id : <102> +09:37:17 Transaction Type : RESPONSE +09:37:17 Received From : +09:37:17 ============================================================================ +09:37:17 FNo. Len. Field Value +09:37:17 ============================================================================ +09:37:17 [ 1] [ 4] [0210] +09:37:17 [ 2] [ 16] [1808930200045466] +09:37:17 [ 3] [ 6] [010000] +09:37:17 [ 4] [ 12] [000100000000] +09:37:17 [ 6] [ 12] [000100000000] +09:37:17 [ 7] [ 10] [0320093502] +09:37:17 [ 11] [ 6] [936092] +09:37:17 [ 12] [ 6] [093502] +09:37:17 [ 13] [ 4] [0320] +09:37:17 [ 18] [ 4] [6011] +09:37:17 [ 19] [ 3] [418] +09:37:17 [ 22] [ 3] [021] +09:37:17 [ 32] [ 6] [668899] +09:37:17 [ 35] [ 27] [1808930200045466=1803500615] +09:37:17 [ 37] [ 12] [507900858236] +09:37:17 [ 38] [ 6] [936092] +09:37:17 [ 39] [ 2] [00] +09:37:17 [ 41] [ 8] [03015004] +09:37:17 [ 49] [ 3] [418] +09:37:17 [ 52] [ 16] [79ABFCDCA75C0C85] +09:37:17 [ 54] [ 20] [1001418C000033177300] +09:37:17 ============================================================================ +09:37:17 Sending to : +09:37:17 ============================================================================ +09:37:17 + + +waiting on router queue for slot.... +09:37:18 ============================================================================ +09:37:18 Slot Id : <109> +09:37:18 Transaction Type : RESPONSE +09:37:18 Received From : +09:37:18 ============================================================================ +09:37:18 FNo. Len. Field Value +09:37:18 ============================================================================ +09:37:18 [ 1] [ 4] [0210] +09:37:18 [ 2] [ 16] [6688990040055327] +09:37:18 [ 3] [ 6] [010000] +09:37:18 [ 4] [ 12] [000002000000] +09:37:18 [ 11] [ 6] [701138] +09:37:18 [ 12] [ 6] [093711] +09:37:18 [ 15] [ 4] [0320] +09:37:18 [ 18] [ 4] [6011] +09:37:18 [ 32] [ 6] [621354] +09:37:18 [ 35] [ 37] [6688990040055327=97121261845840600000] +09:37:18 [ 37] [ 12] [507904965510] +09:37:18 [ 38] [ 6] [462215] +09:37:18 [ 39] [ 2] [00] +09:37:18 [ 41] [ 8] [15001100] +09:37:18 [ 49] [ 3] [418] +09:37:18 [ 54] [ 20] [0002418C000128126508] +09:37:18 ============================================================================ +09:37:18 Calculate Source COMM Id = 0 +09:37:18 ============================================================================ +09:37:18 + + +waiting on router queue for slot.... +09:37:19 ============================================================================ +09:37:19 Slot Id : <102> +09:37:19 Transaction Type : RESPONSE +09:37:19 Received From : +09:37:19 ============================================================================ +09:37:19 FNo. Len. Field Value +09:37:19 ============================================================================ +09:37:19 [ 1] [ 4] [0210] +09:37:19 [ 2] [ 16] [1808930200045466] +09:37:19 [ 3] [ 6] [010000] +09:37:19 [ 4] [ 12] [000100000000] +09:37:19 [ 6] [ 12] [000100000000] +09:37:19 [ 7] [ 10] [0320093502] +09:37:19 [ 11] [ 6] [936092] +09:37:19 [ 12] [ 6] [093502] +09:37:19 [ 13] [ 4] [0320] +09:37:19 [ 18] [ 4] [6011] +09:37:19 [ 19] [ 3] [418] +09:37:19 [ 22] [ 3] [021] +09:37:19 [ 32] [ 6] [668899] +09:37:19 [ 35] [ 27] [1808930200045466=1803500615] +09:37:19 [ 37] [ 12] [507900858236] +09:37:19 [ 38] [ 6] [936092] +09:37:19 [ 39] [ 2] [00] +09:37:19 [ 41] [ 8] [03015004] +09:37:19 [ 49] [ 3] [418] +09:37:19 [ 52] [ 16] [79ABFCDCA75C0C85] +09:37:19 [ 54] [ 20] [1001418C000033177300] +09:37:19 ============================================================================ +09:37:19 Calculate Source COMM Id = 4 +09:37:19 ============================================================================ +09:37:19 + + +waiting on router queue for slot.... +09:37:20 ============================================================================ +09:37:20 Slot Id : <136> +09:37:20 Transaction Type : REQUEST +09:37:20 Received From : +09:37:20 ============================================================================ +09:37:20 FNo. Len. Field Value +09:37:20 ============================================================================ +09:37:20 [ 1] [ 4] [0200] +09:37:20 [ 2] [ 16] [6213545000939409] +09:37:20 [ 3] [ 6] [010000] +09:37:20 [ 4] [ 12] [000100000000] +09:37:20 [ 7] [ 10] [0320023628] +09:37:20 [ 11] [ 6] [267656] +09:37:20 [ 12] [ 6] [093628] +09:37:20 [ 13] [ 4] [0320] +09:37:20 [ 14] [ 4] [4912] +09:37:20 [ 15] [ 4] [0320] +09:37:20 [ 18] [ 4] [6011] +09:37:20 [ 19] [ 3] [418] +09:37:20 [ 22] [ 3] [021] +09:37:20 [ 25] [ 2] [01] +09:37:20 [ 28] [ 9] [D00002000] +09:37:20 [ 32] [ 6] [180893] +09:37:20 [ 35] [ 32] [6213545000939409=491212013940581] +09:37:20 [ 37] [ 12] [507902267656] +09:37:20 [ 41] [ 8] [0366SKTT] +09:37:20 [ 42] [ 15] [999999 ] +09:37:20 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:37:20 [ 49] [ 3] [418] +09:37:20 [ 52] [ 16] [03E5AA78375679A6] +09:37:20 ============================================================================ +09:37:20 + + +waiting on router queue for slot.... +09:37:20 Sending to : +09:37:20 ============================================================================ +09:37:20 Sending to : +09:37:20 ============================================================================ +09:37:21 ============================================================================ +09:37:21 Slot Id : <136> +09:37:21 Transaction Type : REQUEST +09:37:21 Received From : +09:37:21 ============================================================================ +09:37:21 FNo. Len. Field Value +09:37:21 ============================================================================ +09:37:21 [ 1] [ 4] [0200] +09:37:21 [ 2] [ 16] [6213545000939409] +09:37:21 [ 3] [ 6] [010000] +09:37:21 [ 4] [ 12] [000100000000] +09:37:21 [ 7] [ 10] [0320023628] +09:37:21 [ 11] [ 6] [267656] +09:37:21 [ 12] [ 6] [093628] +09:37:21 [ 13] [ 4] [0320] +09:37:21 [ 14] [ 4] [4912] +09:37:21 [ 15] [ 4] [0320] +09:37:21 [ 18] [ 4] [6011] +09:37:21 [ 19] [ 3] [418] +09:37:21 [ 22] [ 3] [021] +09:37:21 [ 25] [ 2] [01] +09:37:21 [ 28] [ 9] [D00002000] +09:37:21 [ 32] [ 6] [180893] +09:37:21 [ 35] [ 32] [6213545000939409=491212013940581] +09:37:21 [ 37] [ 12] [507902267656] +09:37:21 [ 41] [ 8] [0366SKTT] +09:37:21 [ 42] [ 15] [999999 ] +09:37:21 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:37:21 [ 49] [ 3] [418] +09:37:21 [ 52] [ 16] [03E5AA78375679A6] +09:37:21 ============================================================================ +09:37:21 + + +waiting on router queue for slot.... +09:37:21 Sending to : +09:37:21 ============================================================================ +09:37:21 ============================================================================ +09:37:21 Slot Id : <136> +09:37:21 Transaction Type : REQUEST +09:37:21 Received From : +09:37:21 ============================================================================ +09:37:21 FNo. Len. Field Value +09:37:21 ============================================================================ +09:37:21 [ 1] [ 4] [0200] +09:37:21 [ 2] [ 16] [6213545000939409] +09:37:21 [ 3] [ 6] [010000] +09:37:21 [ 4] [ 12] [000100000000] +09:37:21 [ 7] [ 10] [0320023628] +09:37:21 [ 11] [ 6] [267656] +09:37:21 [ 12] [ 6] [093628] +09:37:21 [ 13] [ 4] [0320] +09:37:21 [ 14] [ 4] [4912] +09:37:21 [ 15] [ 4] [0320] +09:37:21 [ 18] [ 4] [6011] +09:37:21 [ 19] [ 3] [418] +09:37:21 [ 22] [ 3] [021] +09:37:21 [ 25] [ 2] [01] +09:37:21 [ 28] [ 9] [D00002000] +09:37:21 [ 32] [ 6] [180893] +09:37:21 [ 35] [ 32] [6213545000939409=491212013940581] +09:37:21 [ 37] [ 12] [507902267656] +09:37:21 [ 41] [ 8] [0366SKTT] +09:37:21 [ 42] [ 15] [999999 ] +09:37:21 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:37:21 [ 49] [ 3] [418] +09:37:21 [ 52] [ 16] [96939ECA28275C11] +09:37:21 ============================================================================ +09:37:21 + + +waiting on router queue for slot.... +09:37:21 Sending to : <0> +09:37:21 ============================================================================ +09:37:22 ============================================================================ +09:37:22 Slot Id : <136> +09:37:22 Transaction Type : RESPONSE +09:37:22 Received From : +09:37:22 ============================================================================ +09:37:22 FNo. Len. Field Value +09:37:22 ============================================================================ +09:37:22 [ 1] [ 4] [0210] +09:37:22 [ 2] [ 16] [6213545000939409] +09:37:22 [ 3] [ 6] [010000] +09:37:22 [ 4] [ 12] [000100000000] +09:37:22 [ 7] [ 10] [0320023628] +09:37:22 [ 11] [ 6] [267656] +09:37:22 [ 12] [ 6] [093628] +09:37:22 [ 13] [ 4] [0320] +09:37:22 [ 15] [ 4] [0320] +09:37:22 [ 18] [ 4] [6011] +09:37:22 [ 19] [ 3] [418] +09:37:22 [ 32] [ 6] [180893] +09:37:22 [ 35] [ 32] [6213545000939409=491212013940581] +09:37:22 [ 37] [ 12] [507902267656] +09:37:22 [ 38] [ 6] [284971] +09:37:22 [ 39] [ 2] [00] +09:37:22 [ 41] [ 8] [0366SKTT] +09:37:22 [ 49] [ 3] [418] +09:37:22 [ 54] [ 40] [0001418C0001477046660002418C000147704666] +09:37:22 ============================================================================ +09:37:22 Sending to : +09:37:22 ============================================================================ +09:37:22 + + +waiting on router queue for slot.... +09:37:24 ============================================================================ +09:37:24 Slot Id : <136> +09:37:24 Transaction Type : RESPONSE +09:37:24 Received From : +09:37:24 ============================================================================ +09:37:24 FNo. Len. Field Value +09:37:24 ============================================================================ +09:37:24 [ 1] [ 4] [0210] +09:37:24 [ 2] [ 16] [6213545000939409] +09:37:24 [ 3] [ 6] [010000] +09:37:24 [ 4] [ 12] [000100000000] +09:37:24 [ 7] [ 10] [0320023628] +09:37:24 [ 11] [ 6] [267656] +09:37:24 [ 12] [ 6] [093628] +09:37:24 [ 13] [ 4] [0320] +09:37:24 [ 15] [ 4] [0320] +09:37:24 [ 18] [ 4] [6011] +09:37:24 [ 19] [ 3] [418] +09:37:24 [ 32] [ 6] [180893] +09:37:24 [ 35] [ 32] [6213545000939409=491212013940581] +09:37:24 [ 37] [ 12] [507902267656] +09:37:24 [ 38] [ 6] [284971] +09:37:24 [ 39] [ 2] [00] +09:37:24 [ 41] [ 8] [0366SKTT] +09:37:24 [ 49] [ 3] [418] +09:37:24 [ 54] [ 40] [0001418C0001477046660002418C000147704666] +09:37:24 ============================================================================ +09:37:24 Calculate Source COMM Id = 2 +09:37:24 ============================================================================ +09:37:24 + + +waiting on router queue for slot.... +09:37:33 ============================================================================ +09:37:33 Slot Id : <131> +09:37:33 Transaction Type : REQUEST +09:37:33 Received From : +09:37:33 ============================================================================ +09:37:33 FNo. Len. Field Value +09:37:33 ============================================================================ +09:37:33 [ 1] [ 4] [0200] +09:37:33 [ 2] [ 16] [6213545000095616] +09:37:33 [ 3] [ 6] [010000] +09:37:33 [ 4] [ 12] [000100000000] +09:37:33 [ 7] [ 10] [0320023641] +09:37:33 [ 11] [ 6] [267661] +09:37:33 [ 12] [ 6] [093641] +09:37:33 [ 13] [ 4] [0320] +09:37:33 [ 14] [ 4] [4912] +09:37:33 [ 15] [ 4] [0320] +09:37:33 [ 18] [ 4] [6011] +09:37:33 [ 19] [ 3] [418] +09:37:33 [ 22] [ 3] [021] +09:37:33 [ 25] [ 2] [01] +09:37:33 [ 28] [ 9] [D00002000] +09:37:33 [ 32] [ 6] [180893] +09:37:33 [ 35] [ 32] [6213545000095616=491212019561240] +09:37:33 [ 37] [ 12] [507902267661] +09:37:33 [ 41] [ 8] [0112CPBR] +09:37:33 [ 42] [ 15] [999999 ] +09:37:33 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:37:33 [ 49] [ 3] [418] +09:37:33 [ 52] [ 16] [6A7AA8CDB283ED13] +09:37:33 ============================================================================ +09:37:33 + + +waiting on router queue for slot.... +09:37:33 Sending to : +09:37:33 ============================================================================ +09:37:33 Sending to : +09:37:33 ============================================================================ +09:37:34 ============================================================================ +09:37:34 Slot Id : <131> +09:37:34 Transaction Type : REQUEST +09:37:34 Received From : +09:37:34 ============================================================================ +09:37:34 FNo. Len. Field Value +09:37:34 ============================================================================ +09:37:34 [ 1] [ 4] [0200] +09:37:34 [ 2] [ 16] [6213545000095616] +09:37:34 [ 3] [ 6] [010000] +09:37:34 [ 4] [ 12] [000100000000] +09:37:34 [ 7] [ 10] [0320023641] +09:37:34 [ 11] [ 6] [267661] +09:37:34 [ 12] [ 6] [093641] +09:37:34 [ 13] [ 4] [0320] +09:37:34 [ 14] [ 4] [4912] +09:37:34 [ 15] [ 4] [0320] +09:37:34 [ 18] [ 4] [6011] +09:37:34 [ 19] [ 3] [418] +09:37:34 [ 22] [ 3] [021] +09:37:34 [ 25] [ 2] [01] +09:37:34 [ 28] [ 9] [D00002000] +09:37:34 [ 32] [ 6] [180893] +09:37:34 [ 35] [ 32] [6213545000095616=491212019561240] +09:37:34 [ 37] [ 12] [507902267661] +09:37:34 [ 41] [ 8] [0112CPBR] +09:37:34 [ 42] [ 15] [999999 ] +09:37:34 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:37:34 [ 49] [ 3] [418] +09:37:34 [ 52] [ 16] [6A7AA8CDB283ED13] +09:37:34 ============================================================================ +09:37:34 + + +waiting on router queue for slot.... +09:37:34 Sending to : +09:37:34 ============================================================================ +09:37:34 ============================================================================ +09:37:34 Slot Id : <131> +09:37:34 Transaction Type : REQUEST +09:37:34 Received From : +09:37:34 ============================================================================ +09:37:34 FNo. Len. Field Value +09:37:34 ============================================================================ +09:37:34 [ 1] [ 4] [0200] +09:37:34 [ 2] [ 16] [6213545000095616] +09:37:34 [ 3] [ 6] [010000] +09:37:34 [ 4] [ 12] [000100000000] +09:37:34 [ 7] [ 10] [0320023641] +09:37:34 [ 11] [ 6] [267661] +09:37:34 [ 12] [ 6] [093641] +09:37:34 [ 13] [ 4] [0320] +09:37:34 [ 14] [ 4] [4912] +09:37:34 [ 15] [ 4] [0320] +09:37:34 [ 18] [ 4] [6011] +09:37:34 [ 19] [ 3] [418] +09:37:34 [ 22] [ 3] [021] +09:37:34 [ 25] [ 2] [01] +09:37:34 [ 28] [ 9] [D00002000] +09:37:34 [ 32] [ 6] [180893] +09:37:34 [ 35] [ 32] [6213545000095616=491212019561240] +09:37:34 [ 37] [ 12] [507902267661] +09:37:34 [ 41] [ 8] [0112CPBR] +09:37:34 [ 42] [ 15] [999999 ] +09:37:34 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:37:34 [ 49] [ 3] [418] +09:37:34 [ 52] [ 16] [DBAE8C8F50F85F32] +09:37:34 ============================================================================ +09:37:34 + + +waiting on router queue for slot.... +09:37:34 Sending to : <0> +09:37:34 ============================================================================ +09:37:34 ============================================================================ +09:37:34 Slot Id : <85> +09:37:34 Transaction Type : REQUEST +09:37:34 Received From : +09:37:34 ============================================================================ +09:37:34 FNo. Len. Field Value +09:37:34 ============================================================================ +09:37:34 [ 1] [ 4] [0800] +09:37:34 [ 7] [ 10] [0320164922] +09:37:34 [ 11] [ 6] [094922] +09:37:34 [ 37] [ 12] [57909094922] +09:37:34 [ 70] [ 3] [301] +09:37:34 ============================================================================ +09:37:34 + + +waiting on router queue for slot.... +09:37:34 Sending to : +09:37:34 ============================================================================ +09:37:34 ============================================================================ +09:37:34 Slot Id : <85> +09:37:34 Transaction Type : RESPONSE +09:37:34 Received From : +09:37:34 ============================================================================ +09:37:34 FNo. Len. Field Value +09:37:34 ============================================================================ +09:37:34 [ 1] [ 4] [0810] +09:37:34 [ 7] [ 10] [0320164922] +09:37:34 [ 11] [ 6] [094922] +09:37:34 [ 37] [ 12] [579090949220] +09:37:34 [ 39] [ 2] [00] +09:37:34 [ 70] [ 3] [810] +09:37:34 ============================================================================ +09:37:34 Calculate Source COMM Id = 6 +09:37:34 ============================================================================ +09:37:34 + + +waiting on router queue for slot.... +09:37:34 ============================================================================ +09:37:34 Slot Id : <131> +09:37:34 Transaction Type : RESPONSE +09:37:34 Received From : +09:37:34 ============================================================================ +09:37:34 FNo. Len. Field Value +09:37:34 ============================================================================ +09:37:34 [ 1] [ 4] [0210] +09:37:34 [ 2] [ 16] [6213545000095616] +09:37:34 [ 3] [ 6] [010000] +09:37:34 [ 4] [ 12] [000100000000] +09:37:34 [ 7] [ 10] [0320023641] +09:37:34 [ 11] [ 6] [267661] +09:37:34 [ 12] [ 6] [093641] +09:37:34 [ 13] [ 4] [0320] +09:37:34 [ 15] [ 4] [0320] +09:37:34 [ 18] [ 4] [6011] +09:37:34 [ 19] [ 3] [418] +09:37:34 [ 32] [ 6] [180893] +09:37:34 [ 35] [ 32] [6213545000095616=491212019561240] +09:37:34 [ 37] [ 12] [507902267661] +09:37:34 [ 38] [ 6] [191275] +09:37:34 [ 39] [ 2] [00] +09:37:34 [ 41] [ 8] [0112CPBR] +09:37:34 [ 49] [ 3] [418] +09:37:34 [ 54] [ 40] [0001418C0000459509350002418C000045950935] +09:37:34 ============================================================================ +09:37:34 Sending to : +09:37:34 ============================================================================ +09:37:34 + + +waiting on router queue for slot.... +09:37:35 ============================================================================ +09:37:35 Slot Id : <129> +09:37:35 Transaction Type : REQUEST +09:37:35 Received From : +09:37:35 ============================================================================ +09:37:35 FNo. Len. Field Value +09:37:35 ============================================================================ +09:37:35 [ 1] [ 4] [0800] +09:37:35 [ 7] [ 10] [0320023643] +09:37:35 [ 11] [ 6] [155666] +09:37:35 [ 70] [ 3] [301] +09:37:35 ============================================================================ +09:37:35 + + +waiting on router queue for slot.... +09:37:35 Sending to : +09:37:35 ============================================================================ +09:37:35 ============================================================================ +09:37:35 Slot Id : <129> +09:37:35 Transaction Type : RESPONSE +09:37:35 Received From : +09:37:35 ============================================================================ +09:37:35 FNo. Len. Field Value +09:37:35 ============================================================================ +09:37:35 [ 1] [ 4] [0810] +09:37:35 [ 7] [ 10] [0320023643] +09:37:35 [ 11] [ 6] [155666] +09:37:35 [ 39] [ 2] [00] +09:37:35 [ 70] [ 3] [301] +09:37:35 ============================================================================ +09:37:35 Calculate Source COMM Id = 2 +09:37:35 ============================================================================ +09:37:35 + + +waiting on router queue for slot.... +09:37:36 ============================================================================ +09:37:36 Slot Id : <131> +09:37:36 Transaction Type : RESPONSE +09:37:36 Received From : +09:37:36 ============================================================================ +09:37:36 FNo. Len. Field Value +09:37:36 ============================================================================ +09:37:36 [ 1] [ 4] [0210] +09:37:36 [ 2] [ 16] [6213545000095616] +09:37:36 [ 3] [ 6] [010000] +09:37:36 [ 4] [ 12] [000100000000] +09:37:36 [ 7] [ 10] [0320023641] +09:37:36 [ 11] [ 6] [267661] +09:37:36 [ 12] [ 6] [093641] +09:37:36 [ 13] [ 4] [0320] +09:37:36 [ 15] [ 4] [0320] +09:37:36 [ 18] [ 4] [6011] +09:37:36 [ 19] [ 3] [418] +09:37:36 [ 32] [ 6] [180893] +09:37:36 [ 35] [ 32] [6213545000095616=491212019561240] +09:37:36 [ 37] [ 12] [507902267661] +09:37:36 [ 38] [ 6] [191275] +09:37:36 [ 39] [ 2] [00] +09:37:36 [ 41] [ 8] [0112CPBR] +09:37:36 [ 49] [ 3] [418] +09:37:36 [ 54] [ 40] [0001418C0000459509350002418C000045950935] +09:37:36 ============================================================================ +09:37:36 Calculate Source COMM Id = 2 +09:37:36 ============================================================================ +09:37:36 + + +waiting on router queue for slot.... +09:37:45 ============================================================================ +09:37:45 Slot Id : <105> +09:37:45 Transaction Type : REQUEST +09:37:45 Received From : +09:37:45 ============================================================================ +09:37:45 FNo. Len. Field Value +09:37:45 ============================================================================ +09:37:45 [ 1] [ 4] [0200] +09:37:45 [ 2] [ 16] [6213541000646201] +09:37:45 [ 3] [ 6] [010000] +09:37:45 [ 4] [ 12] [000100000000] +09:37:45 [ 7] [ 10] [0320023652] +09:37:45 [ 11] [ 6] [267668] +09:37:45 [ 12] [ 6] [093652] +09:37:45 [ 13] [ 4] [0320] +09:37:45 [ 14] [ 4] [4912] +09:37:45 [ 15] [ 4] [0320] +09:37:45 [ 18] [ 4] [6011] +09:37:45 [ 19] [ 3] [418] +09:37:45 [ 22] [ 3] [021] +09:37:45 [ 25] [ 2] [01] +09:37:45 [ 28] [ 9] [D00002000] +09:37:45 [ 32] [ 6] [180893] +09:37:45 [ 35] [ 32] [6213541000646201=491212014620504] +09:37:45 [ 37] [ 12] [507902267668] +09:37:45 [ 41] [ 8] [0523XYNG] +09:37:45 [ 42] [ 15] [999999 ] +09:37:45 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:37:45 [ 49] [ 3] [418] +09:37:45 [ 52] [ 16] [756DBEF7787A3EE4] +09:37:45 ============================================================================ +09:37:45 + + +waiting on router queue for slot.... +09:37:45 Sending to : +09:37:45 ============================================================================ +09:37:45 Sending to : +09:37:45 ============================================================================ +09:37:46 ============================================================================ +09:37:46 Slot Id : <105> +09:37:46 Transaction Type : REQUEST +09:37:46 Received From : +09:37:46 ============================================================================ +09:37:46 FNo. Len. Field Value +09:37:46 ============================================================================ +09:37:46 [ 1] [ 4] [0200] +09:37:46 [ 2] [ 16] [6213541000646201] +09:37:46 [ 3] [ 6] [010000] +09:37:46 [ 4] [ 12] [000100000000] +09:37:46 [ 7] [ 10] [0320023652] +09:37:46 [ 11] [ 6] [267668] +09:37:46 [ 12] [ 6] [093652] +09:37:46 [ 13] [ 4] [0320] +09:37:46 [ 14] [ 4] [4912] +09:37:46 [ 15] [ 4] [0320] +09:37:46 [ 18] [ 4] [6011] +09:37:46 [ 19] [ 3] [418] +09:37:46 [ 22] [ 3] [021] +09:37:46 [ 25] [ 2] [01] +09:37:46 [ 28] [ 9] [D00002000] +09:37:46 [ 32] [ 6] [180893] +09:37:46 [ 35] [ 32] [6213541000646201=491212014620504] +09:37:46 [ 37] [ 12] [507902267668] +09:37:46 [ 41] [ 8] [0523XYNG] +09:37:46 [ 42] [ 15] [999999 ] +09:37:46 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:37:46 [ 49] [ 3] [418] +09:37:46 [ 52] [ 16] [756DBEF7787A3EE4] +09:37:46 ============================================================================ +09:37:46 + + +waiting on router queue for slot.... +09:37:46 Sending to : +09:37:46 ============================================================================ +09:37:46 ============================================================================ +09:37:46 Slot Id : <105> +09:37:46 Transaction Type : REQUEST +09:37:46 Received From : +09:37:46 ============================================================================ +09:37:46 FNo. Len. Field Value +09:37:46 ============================================================================ +09:37:46 [ 1] [ 4] [0200] +09:37:46 [ 2] [ 16] [6213541000646201] +09:37:46 [ 3] [ 6] [010000] +09:37:46 [ 4] [ 12] [000100000000] +09:37:46 [ 7] [ 10] [0320023652] +09:37:46 [ 11] [ 6] [267668] +09:37:46 [ 12] [ 6] [093652] +09:37:46 [ 13] [ 4] [0320] +09:37:46 [ 14] [ 4] [4912] +09:37:46 [ 15] [ 4] [0320] +09:37:46 [ 18] [ 4] [6011] +09:37:46 [ 19] [ 3] [418] +09:37:46 [ 22] [ 3] [021] +09:37:46 [ 25] [ 2] [01] +09:37:46 [ 28] [ 9] [D00002000] +09:37:46 [ 32] [ 6] [180893] +09:37:46 [ 35] [ 32] [6213541000646201=491212014620504] +09:37:46 [ 37] [ 12] [507902267668] +09:37:46 [ 41] [ 8] [0523XYNG] +09:37:46 [ 42] [ 15] [999999 ] +09:37:46 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +09:37:46 [ 49] [ 3] [418] +09:37:46 [ 52] [ 16] [0C2F06640D5A7025] +09:37:46 ============================================================================ +09:37:46 + + +waiting on router queue for slot.... +09:37:46 Sending to : <0> +09:37:46 ============================================================================ +09:37:46 ============================================================================ +09:37:46 Slot Id : <105> +09:37:46 Transaction Type : RESPONSE +09:37:46 Received From : +09:37:46 ============================================================================ +09:37:46 FNo. Len. Field Value +09:37:46 ============================================================================ +09:37:46 [ 1] [ 4] [0210] +09:37:46 [ 2] [ 16] [6213541000646201] +09:37:46 [ 3] [ 6] [010000] +09:37:46 [ 4] [ 12] [000100000000] +09:37:46 [ 7] [ 10] [0320023652] +09:37:46 [ 11] [ 6] [267668] +09:37:46 [ 12] [ 6] [093652] +09:37:46 [ 13] [ 4] [0320] +09:37:46 [ 15] [ 4] [0320] +09:37:46 [ 18] [ 4] [6011] +09:37:46 [ 19] [ 3] [418] +09:37:46 [ 32] [ 6] [180893] +09:37:46 [ 35] [ 32] [6213541000646201=491212014620504] +09:37:46 [ 37] [ 12] [507902267668] +09:37:46 [ 38] [ 6] [163708] +09:37:46 [ 39] [ 2] [00] +09:37:46 [ 41] [ 8] [0523XYNG] +09:37:46 [ 49] [ 3] [418] +09:37:46 [ 54] [ 40] [0001418C0011446380070002418C001144638007] +09:37:46 ============================================================================ +09:37:46 Sending to : +09:37:46 ============================================================================ +09:37:46 + + +waiting on router queue for slot.... +09:37:48 ============================================================================ +09:37:48 Slot Id : <105> +09:37:48 Transaction Type : RESPONSE +09:37:48 Received From : +09:37:48 ============================================================================ +09:37:48 FNo. Len. Field Value +09:37:48 ============================================================================ +09:37:48 [ 1] [ 4] [0210] +09:37:48 [ 2] [ 16] [6213541000646201] +09:37:48 [ 3] [ 6] [010000] +09:37:48 [ 4] [ 12] [000100000000] +09:37:48 [ 7] [ 10] [0320023652] +09:37:48 [ 11] [ 6] [267668] +09:37:48 [ 12] [ 6] [093652] +09:37:48 [ 13] [ 4] [0320] +09:37:48 [ 15] [ 4] [0320] +09:37:48 [ 18] [ 4] [6011] +09:37:48 [ 19] [ 3] [418] +09:37:48 [ 32] [ 6] [180893] +09:37:48 [ 35] [ 32] [6213541000646201=491212014620504] +09:37:48 [ 37] [ 12] [507902267668] +09:37:48 [ 38] [ 6] [163708] +09:37:48 [ 39] [ 2] [00] +09:37:48 [ 41] [ 8] [0523XYNG] +09:37:48 [ 49] [ 3] [418] +09:37:48 [ 54] [ 40] [0001418C0011446380070002418C001144638007] +09:37:48 ============================================================================ +09:37:48 Calculate Source COMM Id = 2 +09:37:48 ============================================================================ +09:37:48 + + +waiting on router queue for slot.... +09:37:48 ============================================================================ +09:37:48 Slot Id : <104> +09:37:48 Transaction Type : REQUEST +09:37:48 Received From : +09:37:48 ============================================================================ +09:37:48 FNo. Len. Field Value +09:37:48 ============================================================================ +09:37:48 [ 1] [ 4] [0200] +09:37:48 [ 2] [ 16] [6688990060034814] +09:37:48 [ 3] [ 6] [011000] +09:37:48 [ 4] [ 12] [000020000000] +09:37:48 [ 7] [ 10] [0320023655] +09:37:48 [ 11] [ 6] [267669] +09:37:48 [ 12] [ 6] [093655] +09:37:48 [ 13] [ 4] [0320] +09:37:48 [ 14] [ 4] [9803] +09:37:48 [ 15] [ 4] [0320] +09:37:48 [ 18] [ 4] [6011] +09:37:48 [ 19] [ 3] [418] +09:37:48 [ 22] [ 3] [021] +09:37:48 [ 25] [ 2] [01] +09:37:48 [ 28] [ 9] [D00002000] +09:37:48 [ 32] [ 6] [180893] +09:37:48 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:37:48 [ 37] [ 12] [507902267669] +09:37:48 [ 41] [ 8] [0369SLVL] +09:37:48 [ 42] [ 15] [999999 ] +09:37:48 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:37:48 [ 49] [ 3] [418] +09:37:48 [ 52] [ 16] [A94478D88D142926] +09:37:48 ============================================================================ +09:37:48 + + +waiting on router queue for slot.... +09:37:48 Sending to : +09:37:48 ============================================================================ +09:37:48 Sending to : +09:37:48 ============================================================================ +09:37:49 ============================================================================ +09:37:49 Slot Id : <104> +09:37:49 Transaction Type : REQUEST +09:37:49 Received From : +09:37:49 ============================================================================ +09:37:49 FNo. Len. Field Value +09:37:49 ============================================================================ +09:37:49 [ 1] [ 4] [0200] +09:37:49 [ 2] [ 16] [6688990060034814] +09:37:49 [ 3] [ 6] [011000] +09:37:49 [ 4] [ 12] [000020000000] +09:37:49 [ 7] [ 10] [0320023655] +09:37:49 [ 11] [ 6] [267669] +09:37:49 [ 12] [ 6] [093655] +09:37:49 [ 13] [ 4] [0320] +09:37:49 [ 14] [ 4] [9803] +09:37:49 [ 15] [ 4] [0320] +09:37:49 [ 18] [ 4] [6011] +09:37:49 [ 19] [ 3] [418] +09:37:49 [ 22] [ 3] [021] +09:37:49 [ 25] [ 2] [01] +09:37:49 [ 28] [ 9] [D00002000] +09:37:49 [ 32] [ 6] [180893] +09:37:49 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:37:49 [ 37] [ 12] [507902267669] +09:37:49 [ 41] [ 8] [0369SLVL] +09:37:49 [ 42] [ 15] [999999 ] +09:37:49 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:37:49 [ 49] [ 3] [418] +09:37:49 [ 52] [ 16] [A94478D88D142926] +09:37:49 ============================================================================ +09:37:49 + + +waiting on router queue for slot.... +09:37:49 Sending to : +09:37:49 ============================================================================ +09:37:49 ============================================================================ +09:37:49 Slot Id : <104> +09:37:49 Transaction Type : REQUEST +09:37:49 Received From : +09:37:49 ============================================================================ +09:37:49 FNo. Len. Field Value +09:37:49 ============================================================================ +09:37:49 [ 1] [ 4] [0200] +09:37:49 [ 2] [ 16] [6688990060034814] +09:37:49 [ 3] [ 6] [011000] +09:37:49 [ 4] [ 12] [000020000000] +09:37:49 [ 7] [ 10] [0320023655] +09:37:49 [ 11] [ 6] [267669] +09:37:49 [ 12] [ 6] [093655] +09:37:49 [ 13] [ 4] [0320] +09:37:49 [ 14] [ 4] [9803] +09:37:49 [ 15] [ 4] [0320] +09:37:49 [ 18] [ 4] [6011] +09:37:49 [ 19] [ 3] [418] +09:37:49 [ 22] [ 3] [021] +09:37:49 [ 25] [ 2] [01] +09:37:49 [ 28] [ 9] [D00002000] +09:37:49 [ 32] [ 6] [180893] +09:37:49 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:37:49 [ 37] [ 12] [507902267669] +09:37:49 [ 41] [ 8] [0369SLVL] +09:37:49 [ 42] [ 15] [999999 ] +09:37:49 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:37:49 [ 49] [ 3] [418] +09:37:49 [ 52] [ 16] [3CC8D4E47C871A05] +09:37:49 ============================================================================ +09:37:49 + + +waiting on router queue for slot.... +09:37:49 Sending to : <0> +09:37:49 ============================================================================ +09:37:49 ============================================================================ +09:37:49 Slot Id : <104> +09:37:49 Transaction Type : RESPONSE +09:37:49 Received From : +09:37:49 ============================================================================ +09:37:49 FNo. Len. Field Value +09:37:49 ============================================================================ +09:37:49 [ 1] [ 4] [0210] +09:37:49 [ 2] [ 16] [6688990060034814] +09:37:49 [ 3] [ 6] [011000] +09:37:49 [ 4] [ 12] [000020000000] +09:37:49 [ 7] [ 10] [0320023655] +09:37:49 [ 11] [ 6] [267669] +09:37:49 [ 12] [ 6] [093655] +09:37:49 [ 13] [ 4] [0320] +09:37:49 [ 15] [ 4] [0320] +09:37:49 [ 18] [ 4] [6011] +09:37:49 [ 19] [ 3] [418] +09:37:49 [ 22] [ 3] [021] +09:37:49 [ 32] [ 6] [180893] +09:37:49 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:37:49 [ 37] [ 12] [507902267669] +09:37:49 [ 39] [ 2] [14] +09:37:49 [ 41] [ 8] [0369SLVL] +09:37:49 [ 49] [ 3] [418] +09:37:49 ============================================================================ +09:37:49 Sending to : +09:37:49 ============================================================================ +09:37:49 + + +waiting on router queue for slot.... +09:37:49 ============================================================================ +09:37:49 Slot Id : <104> +09:37:49 Transaction Type : RESPONSE +09:37:49 Received From : +09:37:49 ============================================================================ +09:37:49 FNo. Len. Field Value +09:37:49 ============================================================================ +09:37:49 [ 1] [ 4] [0210] +09:37:49 [ 2] [ 16] [6688990060034814] +09:37:49 [ 3] [ 6] [011000] +09:37:49 [ 4] [ 12] [000020000000] +09:37:49 [ 7] [ 10] [0320023655] +09:37:49 [ 11] [ 6] [267669] +09:37:49 [ 12] [ 6] [093655] +09:37:49 [ 13] [ 4] [0320] +09:37:49 [ 15] [ 4] [0320] +09:37:49 [ 18] [ 4] [6011] +09:37:49 [ 19] [ 3] [418] +09:37:49 [ 22] [ 3] [021] +09:37:49 [ 32] [ 6] [180893] +09:37:49 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:37:49 [ 37] [ 12] [507902267669] +09:37:49 [ 39] [ 2] [14] +09:37:49 [ 41] [ 8] [0369SLVL] +09:37:49 [ 49] [ 3] [418] +09:37:49 ============================================================================ +09:37:49 Calculate Source COMM Id = 2 +09:37:49 ============================================================================ +09:37:49 + + +waiting on router queue for slot.... +09:37:50 ============================================================================ +09:37:50 Slot Id : <87> +09:37:50 Transaction Type : REQUEST +09:37:50 Received From : +09:37:50 ============================================================================ +09:37:50 FNo. Len. Field Value +09:37:50 ============================================================================ +09:37:50 [ 1] [ 4] [0800] +09:37:50 [ 7] [ 10] [0320093737] +09:37:50 [ 11] [ 6] [035837] +09:37:50 [ 37] [ 12] [507909035837] +09:37:50 [ 70] [ 3] [ ] +09:37:50 ============================================================================ +09:37:50 + + +waiting on router queue for slot.... +09:37:50 Sending to : +09:37:50 ============================================================================ +09:37:50 ============================================================================ +09:37:50 Slot Id : <87> +09:37:50 Transaction Type : RESPONSE +09:37:50 Received From : +09:37:50 ============================================================================ +09:37:50 FNo. Len. Field Value +09:37:50 ============================================================================ +09:37:50 [ 1] [ 4] [0810] +09:37:50 [ 7] [ 10] [0320093737] +09:37:50 [ 11] [ 6] [035837] +09:37:50 [ 37] [ 12] [507909035837] +09:37:50 [ 39] [ 2] [91] +09:37:50 [ 70] [ 3] [ ] +09:37:50 ============================================================================ +09:37:50 Calculate Source COMM Id = 3 +09:37:50 ============================================================================ +09:37:50 + + +waiting on router queue for slot.... +09:38:01 ============================================================================ +09:38:01 Slot Id : <138> +09:38:01 Transaction Type : REQUEST +09:38:01 Received From : +09:38:01 ============================================================================ +09:38:01 FNo. Len. Field Value +09:38:01 ============================================================================ +09:38:01 [ 1] [ 4] [0800] +09:38:01 [ 7] [ 10] [0320023709] +09:38:01 [ 11] [ 6] [155667] +09:38:01 [ 70] [ 3] [301] +09:38:01 ============================================================================ +09:38:01 + + +waiting on router queue for slot.... +09:38:01 Sending to : +09:38:01 ============================================================================ +09:38:01 ============================================================================ +09:38:01 Slot Id : <138> +09:38:01 Transaction Type : RESPONSE +09:38:01 Received From : +09:38:01 ============================================================================ +09:38:01 FNo. Len. Field Value +09:38:01 ============================================================================ +09:38:01 [ 1] [ 4] [0810] +09:38:01 [ 7] [ 10] [0320023709] +09:38:01 [ 11] [ 6] [155667] +09:38:01 [ 39] [ 2] [00] +09:38:01 [ 70] [ 3] [301] +09:38:01 ============================================================================ +09:38:01 Calculate Source COMM Id = 2 +09:38:01 ============================================================================ +09:38:01 + + +waiting on router queue for slot.... +09:38:12 ============================================================================ +09:38:12 Slot Id : <97> +09:38:12 Transaction Type : REQUEST +09:38:12 Received From : +09:38:12 ============================================================================ +09:38:12 FNo. Len. Field Value +09:38:12 ============================================================================ +09:38:12 [ 1] [ 4] [0200] +09:38:12 [ 2] [ 16] [6213545000939409] +09:38:12 [ 3] [ 6] [010000] +09:38:12 [ 4] [ 12] [000100000000] +09:38:12 [ 7] [ 10] [0320023719] +09:38:12 [ 11] [ 6] [267676] +09:38:12 [ 12] [ 6] [093719] +09:38:12 [ 13] [ 4] [0320] +09:38:12 [ 14] [ 4] [4912] +09:38:12 [ 15] [ 4] [0320] +09:38:12 [ 18] [ 4] [6011] +09:38:12 [ 19] [ 3] [418] +09:38:12 [ 22] [ 3] [021] +09:38:12 [ 25] [ 2] [01] +09:38:12 [ 28] [ 9] [D00002000] +09:38:12 [ 32] [ 6] [180893] +09:38:12 [ 35] [ 32] [6213545000939409=491212013940581] +09:38:12 [ 37] [ 12] [507902267676] +09:38:12 [ 41] [ 8] [0366SKTT] +09:38:12 [ 42] [ 15] [999999 ] +09:38:12 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:38:12 [ 49] [ 3] [418] +09:38:12 [ 52] [ 16] [03E5AA78375679A6] +09:38:12 ============================================================================ +09:38:12 + + +waiting on router queue for slot.... +09:38:12 Sending to : +09:38:12 ============================================================================ +09:38:12 Sending to : +09:38:12 ============================================================================ +09:38:12 ============================================================================ +09:38:12 Slot Id : <117> +09:38:12 Transaction Type : REQUEST +09:38:12 Received From : +09:38:12 ============================================================================ +09:38:12 FNo. Len. Field Value +09:38:12 ============================================================================ +09:38:12 [ 1] [ 4] [0800] +09:38:12 [ 7] [ 10] [0320023720] +09:38:12 [ 11] [ 6] [155668] +09:38:12 [ 70] [ 3] [301] +09:38:12 ============================================================================ +09:38:12 + + +waiting on router queue for slot.... +09:38:12 Sending to : +09:38:12 ============================================================================ +09:38:12 ============================================================================ +09:38:12 Slot Id : <117> +09:38:12 Transaction Type : RESPONSE +09:38:12 Received From : +09:38:12 ============================================================================ +09:38:12 FNo. Len. Field Value +09:38:12 ============================================================================ +09:38:12 [ 1] [ 4] [0810] +09:38:12 [ 7] [ 10] [0320023720] +09:38:12 [ 11] [ 6] [155668] +09:38:12 [ 39] [ 2] [00] +09:38:12 [ 70] [ 3] [301] +09:38:12 ============================================================================ +09:38:12 Calculate Source COMM Id = 2 +09:38:12 ============================================================================ +09:38:12 + + +waiting on router queue for slot.... +09:38:13 ============================================================================ +09:38:13 Slot Id : <97> +09:38:13 Transaction Type : REQUEST +09:38:13 Received From : +09:38:13 ============================================================================ +09:38:13 FNo. Len. Field Value +09:38:13 ============================================================================ +09:38:13 [ 1] [ 4] [0200] +09:38:13 [ 2] [ 16] [6213545000939409] +09:38:13 [ 3] [ 6] [010000] +09:38:13 [ 4] [ 12] [000100000000] +09:38:13 [ 7] [ 10] [0320023719] +09:38:13 [ 11] [ 6] [267676] +09:38:13 [ 12] [ 6] [093719] +09:38:13 [ 13] [ 4] [0320] +09:38:13 [ 14] [ 4] [4912] +09:38:13 [ 15] [ 4] [0320] +09:38:13 [ 18] [ 4] [6011] +09:38:13 [ 19] [ 3] [418] +09:38:13 [ 22] [ 3] [021] +09:38:13 [ 25] [ 2] [01] +09:38:13 [ 28] [ 9] [D00002000] +09:38:13 [ 32] [ 6] [180893] +09:38:13 [ 35] [ 32] [6213545000939409=491212013940581] +09:38:13 [ 37] [ 12] [507902267676] +09:38:13 [ 41] [ 8] [0366SKTT] +09:38:13 [ 42] [ 15] [999999 ] +09:38:13 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:38:13 [ 49] [ 3] [418] +09:38:13 [ 52] [ 16] [03E5AA78375679A6] +09:38:13 ============================================================================ +09:38:13 + + +waiting on router queue for slot.... +09:38:13 Sending to : +09:38:13 ============================================================================ +09:38:13 ============================================================================ +09:38:13 Slot Id : <97> +09:38:13 Transaction Type : REQUEST +09:38:13 Received From : +09:38:13 ============================================================================ +09:38:13 FNo. Len. Field Value +09:38:13 ============================================================================ +09:38:13 [ 1] [ 4] [0200] +09:38:13 [ 2] [ 16] [6213545000939409] +09:38:13 [ 3] [ 6] [010000] +09:38:13 [ 4] [ 12] [000100000000] +09:38:13 [ 7] [ 10] [0320023719] +09:38:13 [ 11] [ 6] [267676] +09:38:13 [ 12] [ 6] [093719] +09:38:13 [ 13] [ 4] [0320] +09:38:13 [ 14] [ 4] [4912] +09:38:13 [ 15] [ 4] [0320] +09:38:13 [ 18] [ 4] [6011] +09:38:13 [ 19] [ 3] [418] +09:38:13 [ 22] [ 3] [021] +09:38:13 [ 25] [ 2] [01] +09:38:13 [ 28] [ 9] [D00002000] +09:38:13 [ 32] [ 6] [180893] +09:38:13 [ 35] [ 32] [6213545000939409=491212013940581] +09:38:13 [ 37] [ 12] [507902267676] +09:38:13 [ 41] [ 8] [0366SKTT] +09:38:13 [ 42] [ 15] [999999 ] +09:38:13 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:38:13 [ 49] [ 3] [418] +09:38:13 [ 52] [ 16] [96939ECA28275C11] +09:38:13 ============================================================================ +09:38:13 + + +waiting on router queue for slot.... +09:38:13 Sending to : <0> +09:38:13 ============================================================================ +09:38:13 ============================================================================ +09:38:13 Slot Id : <97> +09:38:13 Transaction Type : RESPONSE +09:38:13 Received From : +09:38:13 ============================================================================ +09:38:13 FNo. Len. Field Value +09:38:13 ============================================================================ +09:38:13 [ 1] [ 4] [0210] +09:38:13 [ 2] [ 16] [6213545000939409] +09:38:13 [ 3] [ 6] [010000] +09:38:13 [ 4] [ 12] [000100000000] +09:38:13 [ 7] [ 10] [0320023719] +09:38:13 [ 11] [ 6] [267676] +09:38:13 [ 12] [ 6] [093719] +09:38:13 [ 13] [ 4] [0320] +09:38:13 [ 15] [ 4] [0320] +09:38:13 [ 18] [ 4] [6011] +09:38:13 [ 19] [ 3] [418] +09:38:13 [ 32] [ 6] [180893] +09:38:13 [ 35] [ 32] [6213545000939409=491212013940581] +09:38:13 [ 37] [ 12] [507902267676] +09:38:13 [ 38] [ 6] [169441] +09:38:13 [ 39] [ 2] [00] +09:38:13 [ 41] [ 8] [0366SKTT] +09:38:13 [ 49] [ 3] [418] +09:38:13 [ 54] [ 40] [0001418C0000475046660002418C000047504666] +09:38:13 ============================================================================ +09:38:13 Sending to : +09:38:13 ============================================================================ +09:38:13 + + +waiting on router queue for slot.... +09:38:15 ============================================================================ +09:38:15 Slot Id : <112> +09:38:15 Transaction Type : REQUEST +09:38:15 Received From : +09:38:15 ============================================================================ +09:38:15 FNo. Len. Field Value +09:38:15 ============================================================================ +09:38:15 [ 1] [ 4] [0800] +09:38:15 [ 2] [ 5] [02531] +09:38:15 [ 3] [ 6] [579098] +09:38:15 [ 7] [ 10] [0320023815] +09:38:15 [ 11] [ 6] [806971] +09:38:15 [ 15] [ 10] [0320023815] +09:38:15 [ 37] [ 11] [57909806971] +09:38:15 [ 70] [ 3] [001] +09:38:15 ============================================================================ +09:38:15 + + +waiting on router queue for slot.... +09:38:15 ============================================================================ +09:38:15 Slot Id : <112> +09:38:15 Transaction Type : RESPONSE +09:38:15 Received From : +09:38:15 ============================================================================ +09:38:15 FNo. Len. Field Value +09:38:15 ============================================================================ +09:38:15 [ 1] [ 4] [0810] +09:38:15 [ 7] [ 10] [0320023815] +09:38:15 [ 11] [ 6] [806971] +09:38:15 [ 15] [ 4] [0320] +09:38:15 [ 37] [ 12] [57909806971] +09:38:15 [ 39] [ 2] [00] +09:38:15 [ 70] [ 3] [001] +09:38:15 ============================================================================ +09:38:15 Sending to : +09:38:15 ============================================================================ +09:38:15 + + +waiting on router queue for slot.... +09:38:15 ============================================================================ +09:38:15 Slot Id : <97> +09:38:15 Transaction Type : RESPONSE +09:38:15 Received From : +09:38:15 ============================================================================ +09:38:15 FNo. Len. Field Value +09:38:15 ============================================================================ +09:38:15 [ 1] [ 4] [0210] +09:38:15 [ 2] [ 16] [6213545000939409] +09:38:15 [ 3] [ 6] [010000] +09:38:15 [ 4] [ 12] [000100000000] +09:38:15 [ 7] [ 10] [0320023719] +09:38:15 [ 11] [ 6] [267676] +09:38:15 [ 12] [ 6] [093719] +09:38:15 [ 13] [ 4] [0320] +09:38:15 [ 15] [ 4] [0320] +09:38:15 [ 18] [ 4] [6011] +09:38:15 [ 19] [ 3] [418] +09:38:15 [ 32] [ 6] [180893] +09:38:15 [ 35] [ 32] [6213545000939409=491212013940581] +09:38:15 [ 37] [ 12] [507902267676] +09:38:15 [ 38] [ 6] [169441] +09:38:15 [ 39] [ 2] [00] +09:38:15 [ 41] [ 8] [0366SKTT] +09:38:15 [ 49] [ 3] [418] +09:38:15 [ 54] [ 40] [0001418C0000475046660002418C000047504666] +09:38:15 ============================================================================ +09:38:15 Calculate Source COMM Id = 2 +09:38:15 ============================================================================ +09:38:15 + + +waiting on router queue for slot.... +09:38:16 ============================================================================ +09:38:16 Slot Id : <140> +09:38:16 Transaction Type : REQUEST +09:38:16 Received From : +09:38:16 ============================================================================ +09:38:16 FNo. Len. Field Value +09:38:16 ============================================================================ +09:38:16 [ 1] [ 4] [0200] +09:38:16 [ 2] [ 16] [1808930200036226] +09:38:16 [ 3] [ 6] [010000] +09:38:16 [ 4] [ 12] [000020000000] +09:38:16 [ 7] [ 10] [0320093608] +09:38:16 [ 11] [ 6] [936148] +09:38:16 [ 12] [ 6] [093608] +09:38:16 [ 13] [ 4] [0320] +09:38:16 [ 15] [ 4] [0320] +09:38:16 [ 18] [ 4] [6011] +09:38:16 [ 19] [ 3] [418] +09:38:16 [ 22] [ 3] [021] +09:38:16 [ 25] [ 2] [01] +09:38:16 [ 28] [ 9] [D00002000] +09:38:16 [ 32] [ 6] [668899] +09:38:16 [ 35] [ 27] [1808930200036226=1803500523] +09:38:16 [ 37] [ 12] [507902179611] +09:38:16 [ 41] [ 8] [03004005] +09:38:16 [ 42] [ 15] [APT ] +09:38:16 [ 43] [ 40] [ MOUANGKEO UNIT MOUANGKEO ] +09:38:16 [ 49] [ 3] [418] +09:38:16 [ 52] [ 16] [A3817AC43540212C] +09:38:16 ============================================================================ +09:38:16 + + +waiting on router queue for slot.... +09:38:16 Sending to : +09:38:16 ============================================================================ +09:38:16 Sending to : +09:38:16 ============================================================================ +09:38:17 ============================================================================ +09:38:17 Slot Id : <140> +09:38:17 Transaction Type : REQUEST +09:38:17 Received From : +09:38:17 ============================================================================ +09:38:17 FNo. Len. Field Value +09:38:17 ============================================================================ +09:38:17 [ 1] [ 4] [0200] +09:38:17 [ 2] [ 16] [1808930200036226] +09:38:17 [ 3] [ 6] [010000] +09:38:17 [ 4] [ 12] [000020000000] +09:38:17 [ 7] [ 10] [0320093608] +09:38:17 [ 11] [ 6] [936148] +09:38:17 [ 12] [ 6] [093608] +09:38:17 [ 13] [ 4] [0320] +09:38:17 [ 15] [ 4] [0320] +09:38:17 [ 18] [ 4] [6011] +09:38:17 [ 19] [ 3] [418] +09:38:17 [ 22] [ 3] [021] +09:38:17 [ 25] [ 2] [01] +09:38:17 [ 28] [ 9] [D00002000] +09:38:17 [ 32] [ 6] [668899] +09:38:17 [ 35] [ 27] [1808930200036226=1803500523] +09:38:17 [ 37] [ 12] [507902179611] +09:38:17 [ 41] [ 8] [03004005] +09:38:17 [ 42] [ 15] [APT ] +09:38:17 [ 43] [ 40] [ MOUANGKEO UNIT MOUANGKEO ] +09:38:17 [ 49] [ 3] [418] +09:38:17 [ 52] [ 16] [A3817AC43540212C] +09:38:17 ============================================================================ +09:38:17 + + +waiting on router queue for slot.... +09:38:17 Sending to : +09:38:17 ============================================================================ +09:38:17 ============================================================================ +09:38:17 Slot Id : <140> +09:38:17 Transaction Type : REQUEST +09:38:17 Received From : +09:38:17 ============================================================================ +09:38:17 FNo. Len. Field Value +09:38:17 ============================================================================ +09:38:17 [ 1] [ 4] [0200] +09:38:17 [ 2] [ 16] [1808930200036226] +09:38:17 [ 3] [ 6] [010000] +09:38:17 [ 4] [ 12] [000020000000] +09:38:17 [ 7] [ 10] [0320093608] +09:38:17 [ 11] [ 6] [936148] +09:38:17 [ 12] [ 6] [093608] +09:38:17 [ 13] [ 4] [0320] +09:38:17 [ 15] [ 4] [0320] +09:38:17 [ 18] [ 4] [6011] +09:38:17 [ 19] [ 3] [418] +09:38:17 [ 22] [ 3] [021] +09:38:17 [ 25] [ 2] [01] +09:38:17 [ 28] [ 9] [D00002000] +09:38:17 [ 32] [ 6] [668899] +09:38:17 [ 35] [ 27] [1808930200036226=1803500523] +09:38:17 [ 37] [ 12] [507902179611] +09:38:17 [ 41] [ 8] [03004005] +09:38:17 [ 42] [ 15] [APT ] +09:38:17 [ 43] [ 40] [ MOUANGKEO UNIT MOUANGKEO ] +09:38:17 [ 49] [ 3] [418] +09:38:17 [ 52] [ 16] [EC1A2F7DFDC6A002] +09:38:17 ============================================================================ +09:38:17 + + +waiting on router queue for slot.... +09:38:17 Sending to : <2> +09:38:17 ============================================================================ +09:38:22 ============================================================================ +09:38:22 Slot Id : <140> +09:38:22 Transaction Type : RESPONSE +09:38:22 Received From : +09:38:22 ============================================================================ +09:38:22 FNo. Len. Field Value +09:38:22 ============================================================================ +09:38:22 [ 1] [ 4] [0210] +09:38:22 [ 2] [ 16] [1808930200036226] +09:38:22 [ 3] [ 6] [010000] +09:38:22 [ 4] [ 12] [000020000000] +09:38:22 [ 6] [ 12] [000020000000] +09:38:22 [ 7] [ 10] [0320093608] +09:38:22 [ 11] [ 6] [936148] +09:38:22 [ 12] [ 6] [093608] +09:38:22 [ 13] [ 4] [0320] +09:38:22 [ 18] [ 4] [6011] +09:38:22 [ 19] [ 3] [418] +09:38:22 [ 22] [ 3] [021] +09:38:22 [ 32] [ 6] [668899] +09:38:22 [ 35] [ 27] [1808930200036226=1803500523] +09:38:22 [ 37] [ 12] [507902179611] +09:38:22 [ 38] [ 6] [936148] +09:38:22 [ 39] [ 2] [00] +09:38:22 [ 41] [ 8] [03004005] +09:38:22 [ 49] [ 3] [418] +09:38:22 [ 52] [ 16] [EC1A2F7DFDC6A002] +09:38:22 [ 54] [ 20] [1001418C000015490800] +09:38:22 ============================================================================ +09:38:22 Sending to : +09:38:22 ============================================================================ +09:38:22 + + +waiting on router queue for slot.... +09:38:24 ============================================================================ +09:38:24 Slot Id : <140> +09:38:24 Transaction Type : RESPONSE +09:38:24 Received From : +09:38:24 ============================================================================ +09:38:24 FNo. Len. Field Value +09:38:24 ============================================================================ +09:38:24 [ 1] [ 4] [0210] +09:38:24 [ 2] [ 16] [1808930200036226] +09:38:24 [ 3] [ 6] [010000] +09:38:24 [ 4] [ 12] [000020000000] +09:38:24 [ 6] [ 12] [000020000000] +09:38:24 [ 7] [ 10] [0320093608] +09:38:24 [ 11] [ 6] [936148] +09:38:24 [ 12] [ 6] [093608] +09:38:24 [ 13] [ 4] [0320] +09:38:24 [ 18] [ 4] [6011] +09:38:24 [ 19] [ 3] [418] +09:38:24 [ 22] [ 3] [021] +09:38:24 [ 32] [ 6] [668899] +09:38:24 [ 35] [ 27] [1808930200036226=1803500523] +09:38:24 [ 37] [ 12] [507902179611] +09:38:24 [ 38] [ 6] [936148] +09:38:24 [ 39] [ 2] [00] +09:38:24 [ 41] [ 8] [03004005] +09:38:24 [ 49] [ 3] [418] +09:38:24 [ 52] [ 16] [EC1A2F7DFDC6A002] +09:38:24 [ 54] [ 20] [1001418C000015490800] +09:38:24 ============================================================================ +09:38:24 Calculate Source COMM Id = 4 +09:38:24 ============================================================================ +09:38:24 + + +waiting on router queue for slot.... +09:38:29 ============================================================================ +09:38:29 Slot Id : <116> +09:38:29 Transaction Type : REQUEST +09:38:29 Received From : +09:38:29 ============================================================================ +09:38:29 FNo. Len. Field Value +09:38:29 ============================================================================ +09:38:29 [ 1] [ 4] [0800] +09:38:29 [ 7] [ 10] [0320023737] +09:38:29 [ 11] [ 6] [155669] +09:38:29 [ 70] [ 3] [301] +09:38:29 ============================================================================ +09:38:29 + + +waiting on router queue for slot.... +09:38:29 Sending to : +09:38:29 ============================================================================ +09:38:29 ============================================================================ +09:38:29 Slot Id : <116> +09:38:29 Transaction Type : RESPONSE +09:38:29 Received From : +09:38:29 ============================================================================ +09:38:29 FNo. Len. Field Value +09:38:29 ============================================================================ +09:38:29 [ 1] [ 4] [0810] +09:38:29 [ 7] [ 10] [0320023737] +09:38:29 [ 11] [ 6] [155669] +09:38:29 [ 39] [ 2] [00] +09:38:29 [ 70] [ 3] [301] +09:38:29 ============================================================================ +09:38:29 Calculate Source COMM Id = 2 +09:38:29 ============================================================================ +09:38:29 + + +waiting on router queue for slot.... +09:38:34 ============================================================================ +09:38:34 Slot Id : <111> +09:38:34 Transaction Type : REQUEST +09:38:34 Received From : +09:38:34 ============================================================================ +09:38:34 FNo. Len. Field Value +09:38:34 ============================================================================ +09:38:34 [ 1] [ 4] [0200] +09:38:34 [ 2] [ 16] [6213545001052244] +09:38:34 [ 3] [ 6] [300000] +09:38:34 [ 4] [ 12] [000000000000] +09:38:34 [ 7] [ 10] [0320093625] +09:38:34 [ 11] [ 6] [936163] +09:38:34 [ 12] [ 6] [093625] +09:38:34 [ 13] [ 4] [0320] +09:38:34 [ 15] [ 4] [0320] +09:38:34 [ 18] [ 4] [6011] +09:38:34 [ 19] [ 3] [418] +09:38:34 [ 22] [ 3] [021] +09:38:34 [ 25] [ 2] [01] +09:38:34 [ 28] [ 9] [D00000000] +09:38:34 [ 32] [ 6] [668899] +09:38:34 [ 35] [ 32] [6213545001052244=491212015224900] +09:38:34 [ 37] [ 12] [507902336374] +09:38:34 [ 41] [ 8] [03217002] +09:38:34 [ 42] [ 15] [APT ] +09:38:34 [ 43] [ 40] [ THATENG MARKET THATENG ] +09:38:34 [ 49] [ 3] [418] +09:38:34 [ 52] [ 16] [2CDCBB89535A1AB1] +09:38:34 ============================================================================ +09:38:34 + + +waiting on router queue for slot.... +09:38:34 Sending to : +09:38:34 ============================================================================ +09:38:34 Sending to : +09:38:34 ============================================================================ +09:38:34 ============================================================================ +09:38:34 Slot Id : <111> +09:38:34 Transaction Type : REQUEST +09:38:34 Received From : +09:38:34 ============================================================================ +09:38:34 FNo. Len. Field Value +09:38:34 ============================================================================ +09:38:34 [ 1] [ 4] [0200] +09:38:34 [ 2] [ 16] [6213545001052244] +09:38:34 [ 3] [ 6] [300000] +09:38:34 [ 4] [ 12] [000000000000] +09:38:34 [ 7] [ 10] [0320093625] +09:38:34 [ 11] [ 6] [936163] +09:38:34 [ 12] [ 6] [093625] +09:38:34 [ 13] [ 4] [0320] +09:38:34 [ 15] [ 4] [0320] +09:38:34 [ 18] [ 4] [6011] +09:38:34 [ 19] [ 3] [418] +09:38:34 [ 22] [ 3] [021] +09:38:34 [ 25] [ 2] [01] +09:38:34 [ 28] [ 9] [D00000000] +09:38:34 [ 32] [ 6] [668899] +09:38:34 [ 35] [ 32] [6213545001052244=491212015224900] +09:38:34 [ 37] [ 12] [507902336374] +09:38:34 [ 41] [ 8] [03217002] +09:38:34 [ 42] [ 15] [APT ] +09:38:34 [ 43] [ 40] [ THATENG MARKET THATENG ] +09:38:34 [ 49] [ 3] [418] +09:38:34 [ 52] [ 16] [2CDCBB89535A1AB1] +09:38:34 ============================================================================ +09:38:34 + + +waiting on router queue for slot.... +09:38:34 Sending to : +09:38:34 ============================================================================ +09:38:34 ============================================================================ +09:38:34 Slot Id : <111> +09:38:34 Transaction Type : REQUEST +09:38:34 Received From : +09:38:34 ============================================================================ +09:38:34 FNo. Len. Field Value +09:38:34 ============================================================================ +09:38:34 [ 1] [ 4] [0200] +09:38:34 [ 2] [ 16] [6213545001052244] +09:38:34 [ 3] [ 6] [300000] +09:38:34 [ 4] [ 12] [000000000000] +09:38:34 [ 7] [ 10] [0320093625] +09:38:34 [ 11] [ 6] [936163] +09:38:34 [ 12] [ 6] [093625] +09:38:34 [ 13] [ 4] [0320] +09:38:34 [ 15] [ 4] [0320] +09:38:34 [ 18] [ 4] [6011] +09:38:34 [ 19] [ 3] [418] +09:38:34 [ 22] [ 3] [021] +09:38:34 [ 25] [ 2] [01] +09:38:34 [ 28] [ 9] [D00000000] +09:38:34 [ 32] [ 6] [668899] +09:38:34 [ 35] [ 32] [6213545001052244=491212015224900] +09:38:34 [ 37] [ 12] [507902336374] +09:38:34 [ 41] [ 8] [03217002] +09:38:34 [ 42] [ 15] [APT ] +09:38:34 [ 43] [ 40] [ THATENG MARKET THATENG ] +09:38:34 [ 49] [ 3] [418] +09:38:34 [ 52] [ 16] [8B306D1262741B15] +09:38:34 ============================================================================ +09:38:34 + + +waiting on router queue for slot.... +09:38:34 Sending to : <0> +09:38:34 ============================================================================ +09:38:35 ============================================================================ +09:38:35 Slot Id : <111> +09:38:35 Transaction Type : RESPONSE +09:38:35 Received From : +09:38:35 ============================================================================ +09:38:35 FNo. Len. Field Value +09:38:35 ============================================================================ +09:38:35 [ 1] [ 4] [0210] +09:38:35 [ 2] [ 16] [6213545001052244] +09:38:35 [ 3] [ 6] [300000] +09:38:35 [ 4] [ 12] [000000000000] +09:38:35 [ 7] [ 10] [0320093625] +09:38:35 [ 11] [ 6] [936163] +09:38:35 [ 12] [ 6] [093625] +09:38:35 [ 13] [ 4] [0320] +09:38:35 [ 15] [ 4] [0320] +09:38:35 [ 18] [ 4] [6011] +09:38:35 [ 19] [ 3] [418] +09:38:35 [ 32] [ 6] [668899] +09:38:35 [ 35] [ 32] [6213545001052244=491212015224900] +09:38:35 [ 37] [ 12] [507902336374] +09:38:35 [ 38] [ 6] [031474] +09:38:35 [ 39] [ 2] [00] +09:38:35 [ 41] [ 8] [03217002] +09:38:35 [ 49] [ 3] [418] +09:38:35 [ 54] [ 40] [0001418C0001932180700002418C000193218070] +09:38:35 ============================================================================ +09:38:35 Sending to : +09:38:35 ============================================================================ +09:38:35 + + +waiting on router queue for slot.... +09:38:36 ============================================================================ +09:38:36 Slot Id : <111> +09:38:36 Transaction Type : RESPONSE +09:38:36 Received From : +09:38:36 ============================================================================ +09:38:36 FNo. Len. Field Value +09:38:36 ============================================================================ +09:38:36 [ 1] [ 4] [0210] +09:38:36 [ 2] [ 16] [6213545001052244] +09:38:36 [ 3] [ 6] [300000] +09:38:36 [ 4] [ 12] [000000000000] +09:38:36 [ 7] [ 10] [0320093625] +09:38:36 [ 11] [ 6] [936163] +09:38:36 [ 12] [ 6] [093625] +09:38:36 [ 13] [ 4] [0320] +09:38:36 [ 15] [ 4] [0320] +09:38:36 [ 18] [ 4] [6011] +09:38:36 [ 19] [ 3] [418] +09:38:36 [ 32] [ 6] [668899] +09:38:36 [ 35] [ 32] [6213545001052244=491212015224900] +09:38:36 [ 37] [ 12] [507902336374] +09:38:36 [ 38] [ 6] [031474] +09:38:36 [ 39] [ 2] [00] +09:38:36 [ 41] [ 8] [03217002] +09:38:36 [ 49] [ 3] [418] +09:38:36 [ 54] [ 40] [0001418C0001932180700002418C000193218070] +09:38:36 ============================================================================ +09:38:36 Calculate Source COMM Id = 4 +09:38:36 ============================================================================ +09:38:36 + + +waiting on router queue for slot.... +09:38:39 ============================================================================ +09:38:39 Slot Id : <147> +09:38:39 Transaction Type : REQUEST +09:38:39 Received From : +09:38:39 ============================================================================ +09:38:39 FNo. Len. Field Value +09:38:39 ============================================================================ +09:38:39 [ 1] [ 4] [0200] +09:38:39 [ 2] [ 16] [6213545000095616] +09:38:39 [ 3] [ 6] [012000] +09:38:39 [ 4] [ 12] [000040000000] +09:38:39 [ 7] [ 10] [0320023745] +09:38:39 [ 11] [ 6] [267680] +09:38:39 [ 12] [ 6] [093745] +09:38:39 [ 13] [ 4] [0320] +09:38:39 [ 14] [ 4] [4912] +09:38:39 [ 15] [ 4] [0320] +09:38:39 [ 18] [ 4] [6011] +09:38:39 [ 19] [ 3] [418] +09:38:39 [ 22] [ 3] [021] +09:38:39 [ 25] [ 2] [01] +09:38:39 [ 28] [ 9] [D00002000] +09:38:39 [ 32] [ 6] [180893] +09:38:39 [ 35] [ 32] [6213545000095616=491212019561240] +09:38:39 [ 37] [ 12] [507902267680] +09:38:39 [ 41] [ 8] [0112CPBR] +09:38:39 [ 42] [ 15] [999999 ] +09:38:39 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:38:39 [ 49] [ 3] [418] +09:38:39 [ 52] [ 16] [6A7AA8CDB283ED13] +09:38:39 ============================================================================ +09:38:39 + + +waiting on router queue for slot.... +09:38:39 Sending to : +09:38:39 ============================================================================ +09:38:39 Sending to : +09:38:39 ============================================================================ +09:38:39 ============================================================================ +09:38:39 Slot Id : <147> +09:38:39 Transaction Type : REQUEST +09:38:39 Received From : +09:38:39 ============================================================================ +09:38:39 FNo. Len. Field Value +09:38:39 ============================================================================ +09:38:39 [ 1] [ 4] [0200] +09:38:39 [ 2] [ 16] [6213545000095616] +09:38:39 [ 3] [ 6] [012000] +09:38:39 [ 4] [ 12] [000040000000] +09:38:39 [ 7] [ 10] [0320023745] +09:38:39 [ 11] [ 6] [267680] +09:38:39 [ 12] [ 6] [093745] +09:38:39 [ 13] [ 4] [0320] +09:38:39 [ 14] [ 4] [4912] +09:38:39 [ 15] [ 4] [0320] +09:38:39 [ 18] [ 4] [6011] +09:38:39 [ 19] [ 3] [418] +09:38:39 [ 22] [ 3] [021] +09:38:39 [ 25] [ 2] [01] +09:38:39 [ 28] [ 9] [D00002000] +09:38:39 [ 32] [ 6] [180893] +09:38:39 [ 35] [ 32] [6213545000095616=491212019561240] +09:38:39 [ 37] [ 12] [507902267680] +09:38:39 [ 41] [ 8] [0112CPBR] +09:38:39 [ 42] [ 15] [999999 ] +09:38:39 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:38:39 [ 49] [ 3] [418] +09:38:39 [ 52] [ 16] [6A7AA8CDB283ED13] +09:38:39 ============================================================================ +09:38:39 + + +waiting on router queue for slot.... +09:38:39 Sending to : +09:38:39 ============================================================================ +09:38:39 ============================================================================ +09:38:39 Slot Id : <147> +09:38:39 Transaction Type : REQUEST +09:38:39 Received From : +09:38:39 ============================================================================ +09:38:39 FNo. Len. Field Value +09:38:39 ============================================================================ +09:38:39 [ 1] [ 4] [0200] +09:38:39 [ 2] [ 16] [6213545000095616] +09:38:39 [ 3] [ 6] [012000] +09:38:39 [ 4] [ 12] [000040000000] +09:38:39 [ 7] [ 10] [0320023745] +09:38:39 [ 11] [ 6] [267680] +09:38:39 [ 12] [ 6] [093745] +09:38:39 [ 13] [ 4] [0320] +09:38:39 [ 14] [ 4] [4912] +09:38:39 [ 15] [ 4] [0320] +09:38:39 [ 18] [ 4] [6011] +09:38:39 [ 19] [ 3] [418] +09:38:39 [ 22] [ 3] [021] +09:38:39 [ 25] [ 2] [01] +09:38:39 [ 28] [ 9] [D00002000] +09:38:39 [ 32] [ 6] [180893] +09:38:39 [ 35] [ 32] [6213545000095616=491212019561240] +09:38:39 [ 37] [ 12] [507902267680] +09:38:39 [ 41] [ 8] [0112CPBR] +09:38:39 [ 42] [ 15] [999999 ] +09:38:39 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:38:39 [ 49] [ 3] [418] +09:38:39 [ 52] [ 16] [DBAE8C8F50F85F32] +09:38:39 ============================================================================ +09:38:39 + + +waiting on router queue for slot.... +09:38:39 Sending to : <0> +09:38:39 ============================================================================ +09:38:39 ============================================================================ +09:38:39 Slot Id : <124> +09:38:39 Transaction Type : REQUEST +09:38:39 Received From : +09:38:39 ============================================================================ +09:38:39 FNo. Len. Field Value +09:38:39 ============================================================================ +09:38:39 [ 1] [ 4] [0800] +09:38:39 [ 7] [ 10] [0320165027] +09:38:39 [ 11] [ 6] [095027] +09:38:39 [ 37] [ 12] [57909095027] +09:38:39 [ 70] [ 3] [301] +09:38:39 ============================================================================ +09:38:39 + + +waiting on router queue for slot.... +09:38:39 Sending to : +09:38:39 ============================================================================ +09:38:39 ============================================================================ +09:38:39 Slot Id : <124> +09:38:39 Transaction Type : RESPONSE +09:38:39 Received From : +09:38:39 ============================================================================ +09:38:39 FNo. Len. Field Value +09:38:39 ============================================================================ +09:38:39 [ 1] [ 4] [0810] +09:38:39 [ 7] [ 10] [0320165027] +09:38:39 [ 11] [ 6] [095027] +09:38:39 [ 37] [ 12] [579090950270] +09:38:39 [ 39] [ 2] [00] +09:38:39 [ 70] [ 3] [810] +09:38:39 ============================================================================ +09:38:39 Calculate Source COMM Id = 6 +09:38:39 ============================================================================ +09:38:39 + + +waiting on router queue for slot.... +09:38:39 ============================================================================ +09:38:39 Slot Id : <147> +09:38:39 Transaction Type : RESPONSE +09:38:39 Received From : +09:38:39 ============================================================================ +09:38:39 FNo. Len. Field Value +09:38:39 ============================================================================ +09:38:39 [ 1] [ 4] [0210] +09:38:39 [ 2] [ 16] [6213545000095616] +09:38:39 [ 3] [ 6] [012000] +09:38:39 [ 4] [ 12] [000040000000] +09:38:39 [ 7] [ 10] [0320023745] +09:38:39 [ 11] [ 6] [267680] +09:38:39 [ 12] [ 6] [093745] +09:38:39 [ 13] [ 4] [0320] +09:38:39 [ 15] [ 4] [0320] +09:38:39 [ 18] [ 4] [6011] +09:38:39 [ 19] [ 3] [418] +09:38:39 [ 32] [ 6] [180893] +09:38:39 [ 35] [ 32] [6213545000095616=491212019561240] +09:38:39 [ 37] [ 12] [507902267680] +09:38:39 [ 38] [ 6] [388153] +09:38:39 [ 39] [ 2] [00] +09:38:39 [ 41] [ 8] [0112CPBR] +09:38:39 [ 49] [ 3] [418] +09:38:39 [ 54] [ 40] [2001418C0000057509352002418C000005750935] +09:38:39 ============================================================================ +09:38:39 Sending to : +09:38:39 ============================================================================ +09:38:39 + + +waiting on router queue for slot.... +09:38:41 ============================================================================ +09:38:41 Slot Id : <147> +09:38:41 Transaction Type : RESPONSE +09:38:41 Received From : +09:38:41 ============================================================================ +09:38:41 FNo. Len. Field Value +09:38:41 ============================================================================ +09:38:41 [ 1] [ 4] [0210] +09:38:41 [ 2] [ 16] [6213545000095616] +09:38:41 [ 3] [ 6] [012000] +09:38:41 [ 4] [ 12] [000040000000] +09:38:41 [ 7] [ 10] [0320023745] +09:38:41 [ 11] [ 6] [267680] +09:38:41 [ 12] [ 6] [093745] +09:38:41 [ 13] [ 4] [0320] +09:38:41 [ 15] [ 4] [0320] +09:38:41 [ 18] [ 4] [6011] +09:38:41 [ 19] [ 3] [418] +09:38:41 [ 32] [ 6] [180893] +09:38:41 [ 35] [ 32] [6213545000095616=491212019561240] +09:38:41 [ 37] [ 12] [507902267680] +09:38:41 [ 38] [ 6] [388153] +09:38:41 [ 39] [ 2] [00] +09:38:41 [ 41] [ 8] [0112CPBR] +09:38:41 [ 49] [ 3] [418] +09:38:41 [ 54] [ 40] [2001418C0000057509352002418C000005750935] +09:38:41 ============================================================================ +09:38:41 Calculate Source COMM Id = 2 +09:38:41 ============================================================================ +09:38:41 + + +waiting on router queue for slot.... +09:38:41 ============================================================================ +09:38:41 Slot Id : <161> +09:38:41 Transaction Type : REQUEST +09:38:41 Received From : +09:38:41 ============================================================================ +09:38:41 FNo. Len. Field Value +09:38:41 ============================================================================ +09:38:41 [ 1] [ 4] [0200] +09:38:41 [ 2] [ 16] [6688990100924305] +09:38:41 [ 3] [ 6] [011000] +09:38:41 [ 4] [ 12] [000050000000] +09:38:41 [ 7] [ 10] [0320093837] +09:38:41 [ 11] [ 6] [701513] +09:38:41 [ 12] [ 6] [093837] +09:38:41 [ 13] [ 4] [0320] +09:38:41 [ 15] [ 4] [0320] +09:38:41 [ 18] [ 4] [6011] +09:38:41 [ 22] [ 3] [900] +09:38:41 [ 25] [ 2] [02] +09:38:41 [ 28] [ 9] [D00002000] +09:38:41 [ 32] [ 6] [621354] +09:38:41 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:38:41 [ 37] [ 12] [507904719429] +09:38:41 [ 41] [ 8] [18001000] +09:38:41 [ 42] [ 15] [NATIVE ] +09:38:41 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:38:41 [ 49] [ 3] [418] +09:38:41 [ 52] [ 16] [0836B1A6190C2285] +09:38:41 ============================================================================ +09:38:41 + + +waiting on router queue for slot.... +09:38:41 Sending to : +09:38:41 ============================================================================ +09:38:41 Sending to : +09:38:41 ============================================================================ +09:38:42 ============================================================================ +09:38:42 Slot Id : <161> +09:38:42 Transaction Type : REQUEST +09:38:42 Received From : +09:38:42 ============================================================================ +09:38:42 FNo. Len. Field Value +09:38:42 ============================================================================ +09:38:42 [ 1] [ 4] [0200] +09:38:42 [ 2] [ 16] [6688990100924305] +09:38:42 [ 3] [ 6] [011000] +09:38:42 [ 4] [ 12] [000050000000] +09:38:42 [ 7] [ 10] [0320093837] +09:38:42 [ 11] [ 6] [701513] +09:38:42 [ 12] [ 6] [093837] +09:38:42 [ 13] [ 4] [0320] +09:38:42 [ 15] [ 4] [0320] +09:38:42 [ 18] [ 4] [6011] +09:38:42 [ 22] [ 3] [900] +09:38:42 [ 25] [ 2] [02] +09:38:42 [ 28] [ 9] [D00002000] +09:38:42 [ 32] [ 6] [621354] +09:38:42 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:38:42 [ 37] [ 12] [507904719429] +09:38:42 [ 41] [ 8] [18001000] +09:38:42 [ 42] [ 15] [NATIVE ] +09:38:42 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:38:42 [ 49] [ 3] [418] +09:38:42 [ 52] [ 16] [0836B1A6190C2285] +09:38:42 ============================================================================ +09:38:42 + + +waiting on router queue for slot.... +09:38:42 Sending to : +09:38:42 ============================================================================ +09:38:42 ============================================================================ +09:38:42 Slot Id : <161> +09:38:42 Transaction Type : REQUEST +09:38:42 Received From : +09:38:42 ============================================================================ +09:38:42 FNo. Len. Field Value +09:38:42 ============================================================================ +09:38:42 [ 1] [ 4] [0200] +09:38:42 [ 2] [ 16] [6688990100924305] +09:38:42 [ 3] [ 6] [011000] +09:38:42 [ 4] [ 12] [000050000000] +09:38:42 [ 7] [ 10] [0320093837] +09:38:42 [ 11] [ 6] [701513] +09:38:42 [ 12] [ 6] [093837] +09:38:42 [ 13] [ 4] [0320] +09:38:42 [ 15] [ 4] [0320] +09:38:42 [ 18] [ 4] [6011] +09:38:42 [ 22] [ 3] [900] +09:38:42 [ 25] [ 2] [02] +09:38:42 [ 28] [ 9] [D00002000] +09:38:42 [ 32] [ 6] [621354] +09:38:42 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:38:42 [ 37] [ 12] [507904719429] +09:38:42 [ 41] [ 8] [18001000] +09:38:42 [ 42] [ 15] [NATIVE ] +09:38:42 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:38:42 [ 49] [ 3] [418] +09:38:42 [ 52] [ 16] [04E46765C2DC7268] +09:38:42 ============================================================================ +09:38:42 + + +waiting on router queue for slot.... +09:38:42 Sending to : <4> +09:38:42 ============================================================================ +09:38:43 ============================================================================ +09:38:43 Slot Id : <161> +09:38:43 Transaction Type : RESPONSE +09:38:43 Received From : +09:38:43 ============================================================================ +09:38:43 FNo. Len. Field Value +09:38:43 ============================================================================ +09:38:43 [ 1] [ 4] [0210] +09:38:43 [ 2] [ 16] [6688990100924305] +09:38:43 [ 3] [ 6] [011000] +09:38:43 [ 4] [ 12] [000050000000] +09:38:43 [ 11] [ 6] [701513] +09:38:43 [ 12] [ 6] [093837] +09:38:43 [ 15] [ 4] [0320] +09:38:43 [ 18] [ 4] [6011] +09:38:43 [ 32] [ 6] [621354] +09:38:43 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:38:43 [ 37] [ 12] [507904719429] +09:38:43 [ 39] [ 2] [51] +09:38:43 [ 41] [ 8] [18001000] +09:38:43 [ 49] [ 3] [418] +09:38:43 [ 54] [ 0] [] +09:38:43 ============================================================================ +09:38:43 Sending to : +09:38:43 ============================================================================ +09:38:43 + + +waiting on router queue for slot.... +09:38:44 ============================================================================ +09:38:44 Slot Id : <161> +09:38:44 Transaction Type : RESPONSE +09:38:44 Received From : +09:38:44 ============================================================================ +09:38:44 FNo. Len. Field Value +09:38:44 ============================================================================ +09:38:44 [ 1] [ 4] [0210] +09:38:44 [ 2] [ 16] [6688990100924305] +09:38:44 [ 3] [ 6] [011000] +09:38:44 [ 4] [ 12] [000050000000] +09:38:44 [ 11] [ 6] [701513] +09:38:44 [ 12] [ 6] [093837] +09:38:44 [ 15] [ 4] [0320] +09:38:44 [ 18] [ 4] [6011] +09:38:44 [ 32] [ 6] [621354] +09:38:44 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:38:44 [ 37] [ 12] [507904719429] +09:38:44 [ 39] [ 2] [51] +09:38:44 [ 41] [ 8] [18001000] +09:38:44 [ 49] [ 3] [418] +09:38:44 [ 54] [ 0] [] +09:38:44 ============================================================================ +09:38:44 Calculate Source COMM Id = 0 +09:38:44 ============================================================================ +09:38:44 + + +waiting on router queue for slot.... +09:39:05 ============================================================================ +09:39:05 Slot Id : <123> +09:39:05 Transaction Type : REQUEST +09:39:05 Received From : +09:39:05 ============================================================================ +09:39:05 FNo. Len. Field Value +09:39:05 ============================================================================ +09:39:05 [ 1] [ 4] [0200] +09:39:05 [ 2] [ 16] [1888880000002717] +09:39:05 [ 3] [ 6] [010000] +09:39:05 [ 4] [ 12] [000020000000] +09:39:05 [ 7] [ 10] [0320093901] +09:39:05 [ 11] [ 6] [701588] +09:39:05 [ 12] [ 6] [093901] +09:39:05 [ 13] [ 4] [0320] +09:39:05 [ 15] [ 4] [0320] +09:39:05 [ 18] [ 4] [6011] +09:39:05 [ 22] [ 3] [900] +09:39:05 [ 25] [ 2] [02] +09:39:05 [ 28] [ 9] [D00002000] +09:39:05 [ 32] [ 6] [621354] +09:39:05 [ 35] [ 32] [1888880000002717=000010100000090] +09:39:05 [ 37] [ 12] [507904435682] +09:39:05 [ 41] [ 8] [03004200] +09:39:05 [ 42] [ 15] [NATIVE ] +09:39:05 [ 43] [ 40] [Samakhyxay Unit KaisonephomvLAO] +09:39:05 [ 49] [ 3] [418] +09:39:05 [ 52] [ 16] [B765977AF200E31D] +09:39:05 ============================================================================ +09:39:05 + + +waiting on router queue for slot.... +09:39:05 Sending to : +09:39:05 ============================================================================ +09:39:05 Sending to : +09:39:05 ============================================================================ +09:39:05 ============================================================================ +09:39:05 Slot Id : <123> +09:39:05 Transaction Type : REQUEST +09:39:05 Received From : +09:39:05 ============================================================================ +09:39:05 FNo. Len. Field Value +09:39:05 ============================================================================ +09:39:05 [ 1] [ 4] [0200] +09:39:05 [ 2] [ 16] [1888880000002717] +09:39:05 [ 3] [ 6] [010000] +09:39:05 [ 4] [ 12] [000020000000] +09:39:05 [ 7] [ 10] [0320093901] +09:39:05 [ 11] [ 6] [701588] +09:39:05 [ 12] [ 6] [093901] +09:39:05 [ 13] [ 4] [0320] +09:39:05 [ 15] [ 4] [0320] +09:39:05 [ 18] [ 4] [6011] +09:39:05 [ 22] [ 3] [900] +09:39:05 [ 25] [ 2] [02] +09:39:05 [ 28] [ 9] [D00002000] +09:39:05 [ 32] [ 6] [621354] +09:39:05 [ 35] [ 32] [1888880000002717=000010100000090] +09:39:05 [ 37] [ 12] [507904435682] +09:39:05 [ 41] [ 8] [03004200] +09:39:05 [ 42] [ 15] [NATIVE ] +09:39:05 [ 43] [ 40] [Samakhyxay Unit KaisonephomvLAO] +09:39:05 [ 49] [ 3] [418] +09:39:05 [ 52] [ 16] [B765977AF200E31D] +09:39:05 ============================================================================ +09:39:06 + + +waiting on router queue for slot.... +09:39:06 Sending to : +09:39:06 ============================================================================ +09:39:06 ============================================================================ +09:39:06 Slot Id : <123> +09:39:06 Transaction Type : REQUEST +09:39:06 Received From : +09:39:06 ============================================================================ +09:39:06 FNo. Len. Field Value +09:39:06 ============================================================================ +09:39:06 [ 1] [ 4] [0200] +09:39:06 [ 2] [ 16] [1888880000002717] +09:39:06 [ 3] [ 6] [010000] +09:39:06 [ 4] [ 12] [000020000000] +09:39:06 [ 7] [ 10] [0320093901] +09:39:06 [ 11] [ 6] [701588] +09:39:06 [ 12] [ 6] [093901] +09:39:06 [ 13] [ 4] [0320] +09:39:06 [ 15] [ 4] [0320] +09:39:06 [ 18] [ 4] [6011] +09:39:06 [ 22] [ 3] [900] +09:39:06 [ 25] [ 2] [02] +09:39:06 [ 28] [ 9] [D00002000] +09:39:06 [ 32] [ 6] [621354] +09:39:06 [ 35] [ 32] [1888880000002717=000010100000090] +09:39:06 [ 37] [ 12] [507904435682] +09:39:06 [ 41] [ 8] [03004200] +09:39:06 [ 42] [ 15] [NATIVE ] +09:39:06 [ 43] [ 40] [Samakhyxay Unit KaisonephomvLAO] +09:39:06 [ 49] [ 3] [418] +09:39:06 [ 52] [ 16] [41FBC6392362DB69] +09:39:06 ============================================================================ +09:39:06 + + +waiting on router queue for slot.... +09:39:06 Sending to : <5> +09:39:06 ============================================================================ +09:39:10 ============================================================================ +09:39:10 Slot Id : <80> +09:39:10 Transaction Type : REQUEST +09:39:10 Received From : +09:39:10 ============================================================================ +09:39:10 FNo. Len. Field Value +09:39:10 ============================================================================ +09:39:10 [ 1] [ 4] [0800] +09:39:10 [ 7] [ 10] [0320023819] +09:39:10 [ 11] [ 6] [155670] +09:39:10 [ 37] [ 12] [180893155670] +09:39:10 [ 70] [ 3] [001] +09:39:10 ============================================================================ +09:39:10 + + +waiting on router queue for slot.... +09:39:10 Sending to : +09:39:10 ============================================================================ +09:39:10 ============================================================================ +09:39:10 Slot Id : <80> +09:39:10 Transaction Type : RESPONSE +09:39:10 Received From : +09:39:10 ============================================================================ +09:39:10 FNo. Len. Field Value +09:39:10 ============================================================================ +09:39:10 [ 1] [ 4] [0810] +09:39:10 [ 7] [ 10] [0320023819] +09:39:10 [ 11] [ 6] [155670] +09:39:10 [ 37] [ 12] [180893155670] +09:39:10 [ 39] [ 2] [00] +09:39:10 [ 70] [ 3] [001] +09:39:10 ============================================================================ +09:39:10 Calculate Source COMM Id = 2 +09:39:10 ============================================================================ +09:39:10 + + +waiting on router queue for slot.... +09:39:12 ============================================================================ +09:39:12 Slot Id : <122> +09:39:12 Transaction Type : REQUEST +09:39:12 Received From : +09:39:12 ============================================================================ +09:39:12 FNo. Len. Field Value +09:39:12 ============================================================================ +09:39:12 [ 1] [ 4] [0420] +09:39:12 [ 2] [ 16] [6213545000095616] +09:39:12 [ 3] [ 6] [012000] +09:39:12 [ 4] [ 12] [000040000000] +09:39:12 [ 7] [ 10] [0320023818] +09:39:12 [ 11] [ 6] [267680] +09:39:12 [ 12] [ 6] [093745] +09:39:12 [ 13] [ 4] [0320] +09:39:12 [ 14] [ 4] [4912] +09:39:12 [ 15] [ 4] [0320] +09:39:12 [ 18] [ 4] [6011] +09:39:12 [ 19] [ 3] [418] +09:39:12 [ 22] [ 3] [021] +09:39:12 [ 25] [ 2] [01] +09:39:12 [ 28] [ 9] [D00002000] +09:39:12 [ 32] [ 6] [180893] +09:39:12 [ 35] [ 32] [6213545000095616=491212019561240] +09:39:12 [ 37] [ 12] [507902267680] +09:39:12 [ 39] [ 2] [68] +09:39:12 [ 41] [ 8] [0112CPBR] +09:39:12 [ 42] [ 15] [999999 ] +09:39:12 [ 49] [ 3] [418] +09:39:12 [ 90] [ 42] [ TES1+0000080000] +09:39:12 [104] [ 16] [0001808930000000] +09:39:12 ============================================================================ +09:39:12 + + +waiting on router queue for slot.... +09:39:12 Sending to : +09:39:12 ============================================================================ +09:39:14 ============================================================================ +09:39:14 Slot Id : <162> +09:39:14 Transaction Type : REQUEST +09:39:14 Received From : +09:39:14 ============================================================================ +09:39:14 FNo. Len. Field Value +09:39:14 ============================================================================ +09:39:14 [ 1] [ 4] [0200] +09:39:14 [ 2] [ 16] [6688990060034814] +09:39:14 [ 3] [ 6] [301000] +09:39:14 [ 7] [ 10] [0320023822] +09:39:14 [ 11] [ 6] [267685] +09:39:14 [ 12] [ 6] [093822] +09:39:14 [ 13] [ 4] [0320] +09:39:14 [ 14] [ 4] [9803] +09:39:14 [ 15] [ 4] [0320] +09:39:14 [ 18] [ 4] [6011] +09:39:14 [ 19] [ 3] [418] +09:39:14 [ 22] [ 3] [021] +09:39:14 [ 25] [ 2] [01] +09:39:14 [ 32] [ 6] [180893] +09:39:14 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:39:14 [ 37] [ 12] [507902267685] +09:39:14 [ 41] [ 8] [0369SLVL] +09:39:14 [ 42] [ 15] [999999 ] +09:39:14 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:39:14 [ 49] [ 3] [418] +09:39:14 [ 52] [ 16] [A94478D88D142926] +09:39:14 ============================================================================ +09:39:14 + + +waiting on router queue for slot.... +09:39:14 Sending to : +09:39:14 ============================================================================ +09:39:14 Sending to : +09:39:14 ============================================================================ +09:39:15 ============================================================================ +09:39:15 Slot Id : <162> +09:39:15 Transaction Type : REQUEST +09:39:15 Received From : +09:39:15 ============================================================================ +09:39:15 FNo. Len. Field Value +09:39:15 ============================================================================ +09:39:15 [ 1] [ 4] [0200] +09:39:15 [ 2] [ 16] [6688990060034814] +09:39:15 [ 3] [ 6] [301000] +09:39:15 [ 7] [ 10] [0320023822] +09:39:15 [ 11] [ 6] [267685] +09:39:15 [ 12] [ 6] [093822] +09:39:15 [ 13] [ 4] [0320] +09:39:15 [ 14] [ 4] [9803] +09:39:15 [ 15] [ 4] [0320] +09:39:15 [ 18] [ 4] [6011] +09:39:15 [ 19] [ 3] [418] +09:39:15 [ 22] [ 3] [021] +09:39:15 [ 25] [ 2] [01] +09:39:15 [ 32] [ 6] [180893] +09:39:15 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:39:15 [ 37] [ 12] [507902267685] +09:39:15 [ 41] [ 8] [0369SLVL] +09:39:15 [ 42] [ 15] [999999 ] +09:39:15 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:39:15 [ 49] [ 3] [418] +09:39:15 [ 52] [ 16] [A94478D88D142926] +09:39:15 ============================================================================ +09:39:15 + + +waiting on router queue for slot.... +09:39:15 Sending to : +09:39:15 ============================================================================ +09:39:15 ============================================================================ +09:39:15 Slot Id : <162> +09:39:15 Transaction Type : REQUEST +09:39:15 Received From : +09:39:15 ============================================================================ +09:39:15 FNo. Len. Field Value +09:39:15 ============================================================================ +09:39:15 [ 1] [ 4] [0200] +09:39:15 [ 2] [ 16] [6688990060034814] +09:39:15 [ 3] [ 6] [301000] +09:39:15 [ 7] [ 10] [0320023822] +09:39:15 [ 11] [ 6] [267685] +09:39:15 [ 12] [ 6] [093822] +09:39:15 [ 13] [ 4] [0320] +09:39:15 [ 14] [ 4] [9803] +09:39:15 [ 15] [ 4] [0320] +09:39:15 [ 18] [ 4] [6011] +09:39:15 [ 19] [ 3] [418] +09:39:15 [ 22] [ 3] [021] +09:39:15 [ 25] [ 2] [01] +09:39:15 [ 32] [ 6] [180893] +09:39:15 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:39:15 [ 37] [ 12] [507902267685] +09:39:15 [ 41] [ 8] [0369SLVL] +09:39:15 [ 42] [ 15] [999999 ] +09:39:15 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:39:15 [ 49] [ 3] [418] +09:39:15 [ 52] [ 16] [3CC8D4E47C871A05] +09:39:15 ============================================================================ +09:39:15 + + +waiting on router queue for slot.... +09:39:15 Sending to : <0> +09:39:15 ============================================================================ +09:39:15 ============================================================================ +09:39:15 Slot Id : <162> +09:39:15 Transaction Type : RESPONSE +09:39:15 Received From : +09:39:15 ============================================================================ +09:39:15 FNo. Len. Field Value +09:39:15 ============================================================================ +09:39:15 [ 1] [ 4] [0210] +09:39:15 [ 2] [ 16] [6688990060034814] +09:39:15 [ 3] [ 6] [301000] +09:39:15 [ 4] [ 12] [000000000000] +09:39:15 [ 7] [ 10] [0320023822] +09:39:15 [ 11] [ 6] [267685] +09:39:15 [ 12] [ 6] [093822] +09:39:15 [ 13] [ 4] [0320] +09:39:15 [ 15] [ 4] [0320] +09:39:15 [ 18] [ 4] [6011] +09:39:15 [ 19] [ 3] [418] +09:39:15 [ 22] [ 3] [021] +09:39:15 [ 32] [ 6] [180893] +09:39:15 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:39:15 [ 37] [ 12] [507902267685] +09:39:15 [ 39] [ 2] [14] +09:39:15 [ 41] [ 8] [0369SLVL] +09:39:15 [ 49] [ 3] [418] +09:39:15 ============================================================================ +09:39:15 Sending to : +09:39:15 ============================================================================ +09:39:15 + + +waiting on router queue for slot.... +09:39:15 ============================================================================ +09:39:15 Slot Id : <123> +09:39:15 Transaction Type : RESPONSE +09:39:15 Received From : +09:39:15 ============================================================================ +09:39:15 FNo. Len. Field Value +09:39:15 ============================================================================ +09:39:15 [ 1] [ 4] [0210] +09:39:15 [ 2] [ 16] [1888880000002717] +09:39:15 [ 3] [ 6] [010000] +09:39:15 [ 4] [ 12] [000020000000] +09:39:15 [ 7] [ 10] [0320093901] +09:39:15 [ 11] [ 6] [701588] +09:39:15 [ 12] [ 6] [093901] +09:39:15 [ 13] [ 4] [0320] +09:39:15 [ 15] [ 4] [0320] +09:39:15 [ 18] [ 4] [6011] +09:39:15 [ 19] [ 3] [418] +09:39:15 [ 32] [ 6] [621354] +09:39:15 [ 37] [ 12] [507904435682] +09:39:15 [ 38] [ 6] [980134] +09:39:15 [ 39] [ 2] [00] +09:39:15 [ 41] [ 8] [03004200] +09:39:15 [ 49] [ 3] [418] +09:39:15 [ 54] [ 0] [] +09:39:15 ============================================================================ +09:39:15 Sending to : +09:39:15 ============================================================================ +09:39:15 + + +waiting on router queue for slot.... +09:39:17 ============================================================================ +09:39:17 Slot Id : <122> +09:39:17 Transaction Type : RESPONSE +09:39:17 Received From : +09:39:17 ============================================================================ +09:39:17 FNo. Len. Field Value +09:39:17 ============================================================================ +09:39:17 [ 1] [ 4] [0430] +09:39:17 [ 2] [ 16] [6213545000095616] +09:39:17 [ 3] [ 6] [012000] +09:39:17 [ 4] [ 12] [000040000000] +09:39:17 [ 7] [ 10] [0320023818] +09:39:17 [ 11] [ 6] [267680] +09:39:17 [ 12] [ 6] [093745] +09:39:17 [ 13] [ 4] [0320] +09:39:17 [ 14] [ 4] [4912] +09:39:17 [ 15] [ 4] [0320] +09:39:17 [ 18] [ 4] [6011] +09:39:17 [ 19] [ 3] [418] +09:39:17 [ 22] [ 3] [021] +09:39:17 [ 25] [ 2] [01] +09:39:17 [ 28] [ 9] [D00002000] +09:39:17 [ 32] [ 6] [180893] +09:39:17 [ 35] [ 32] [6213545000095616=491212019561240] +09:39:17 [ 37] [ 12] [507902267680] +09:39:17 [ 39] [ 2] [00] +09:39:17 [ 41] [ 8] [0112CPBR] +09:39:17 [ 42] [ 15] [999999 ] +09:39:17 [ 49] [ 3] [418] +09:39:17 [ 90] [ 42] [ TES1+000008000004300200267680032009374500] +09:39:17 [104] [ 16] [0001808930000000] +09:39:17 ============================================================================ +09:39:17 Calculate Source COMM Id = 2 +09:39:17 ============================================================================ +09:39:17 + + +waiting on router queue for slot.... +09:39:17 ============================================================================ +09:39:17 Slot Id : <132> +09:39:17 Transaction Type : REQUEST +09:39:17 Received From : +09:39:17 ============================================================================ +09:39:17 FNo. Len. Field Value +09:39:17 ============================================================================ +09:39:17 [ 1] [ 4] [0800] +09:39:17 [ 2] [ 5] [02531] +09:39:17 [ 3] [ 6] [579098] +09:39:17 [ 7] [ 10] [0320023917] +09:39:17 [ 11] [ 6] [806972] +09:39:17 [ 15] [ 10] [0320023917] +09:39:17 [ 37] [ 11] [57909806972] +09:39:17 [ 70] [ 3] [001] +09:39:17 ============================================================================ +09:39:17 + + +waiting on router queue for slot.... +09:39:17 ============================================================================ +09:39:17 Slot Id : <132> +09:39:17 Transaction Type : RESPONSE +09:39:17 Received From : +09:39:17 ============================================================================ +09:39:17 FNo. Len. Field Value +09:39:17 ============================================================================ +09:39:17 [ 1] [ 4] [0810] +09:39:17 [ 7] [ 10] [0320023917] +09:39:17 [ 11] [ 6] [806972] +09:39:17 [ 15] [ 4] [0320] +09:39:17 [ 37] [ 12] [57909806972] +09:39:17 [ 39] [ 2] [00] +09:39:17 [ 70] [ 3] [001] +09:39:17 ============================================================================ +09:39:17 Sending to : +09:39:17 ============================================================================ +09:39:17 + + +waiting on router queue for slot.... +09:39:17 ============================================================================ +09:39:17 Slot Id : <123> +09:39:17 Transaction Type : RESPONSE +09:39:17 Received From : +09:39:17 ============================================================================ +09:39:17 FNo. Len. Field Value +09:39:17 ============================================================================ +09:39:17 [ 1] [ 4] [0210] +09:39:17 [ 2] [ 16] [1888880000002717] +09:39:17 [ 3] [ 6] [010000] +09:39:17 [ 4] [ 12] [000020000000] +09:39:17 [ 7] [ 10] [0320093901] +09:39:17 [ 11] [ 6] [701588] +09:39:17 [ 12] [ 6] [093901] +09:39:17 [ 13] [ 4] [0320] +09:39:17 [ 15] [ 4] [0320] +09:39:17 [ 18] [ 4] [6011] +09:39:17 [ 19] [ 3] [418] +09:39:17 [ 32] [ 6] [621354] +09:39:17 [ 37] [ 12] [507904435682] +09:39:17 [ 38] [ 6] [980134] +09:39:17 [ 39] [ 2] [00] +09:39:17 [ 41] [ 8] [03004200] +09:39:17 [ 49] [ 3] [418] +09:39:17 [ 54] [ 0] [] +09:39:17 ============================================================================ +09:39:17 Calculate Source COMM Id = 0 +09:39:17 ============================================================================ +09:39:17 + + +waiting on router queue for slot.... +09:39:18 ============================================================================ +09:39:18 Slot Id : <154> +09:39:18 Transaction Type : REQUEST +09:39:18 Received From : +09:39:18 ============================================================================ +09:39:18 FNo. Len. Field Value +09:39:18 ============================================================================ +09:39:18 [ 1] [ 4] [0200] +09:39:18 [ 2] [ 16] [6213545000939409] +09:39:18 [ 3] [ 6] [010000] +09:39:18 [ 4] [ 12] [000010000000] +09:39:18 [ 7] [ 10] [0320023825] +09:39:18 [ 11] [ 6] [267686] +09:39:18 [ 12] [ 6] [093825] +09:39:18 [ 13] [ 4] [0320] +09:39:18 [ 14] [ 4] [4912] +09:39:18 [ 15] [ 4] [0320] +09:39:18 [ 18] [ 4] [6011] +09:39:18 [ 19] [ 3] [418] +09:39:18 [ 22] [ 3] [021] +09:39:18 [ 25] [ 2] [01] +09:39:18 [ 28] [ 9] [D00002000] +09:39:18 [ 32] [ 6] [180893] +09:39:18 [ 35] [ 32] [6213545000939409=491212013940581] +09:39:18 [ 37] [ 12] [507902267686] +09:39:18 [ 41] [ 8] [0366SKTT] +09:39:18 [ 42] [ 15] [999999 ] +09:39:18 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:39:18 [ 49] [ 3] [418] +09:39:18 [ 52] [ 16] [03E5AA78375679A6] +09:39:18 ============================================================================ +09:39:18 + + +waiting on router queue for slot.... +09:39:18 Sending to : +09:39:18 ============================================================================ +09:39:18 Sending to : +09:39:18 ============================================================================ +09:39:18 ============================================================================ +09:39:18 Slot Id : <154> +09:39:18 Transaction Type : REQUEST +09:39:18 Received From : +09:39:18 ============================================================================ +09:39:18 FNo. Len. Field Value +09:39:18 ============================================================================ +09:39:18 [ 1] [ 4] [0200] +09:39:18 [ 2] [ 16] [6213545000939409] +09:39:18 [ 3] [ 6] [010000] +09:39:18 [ 4] [ 12] [000010000000] +09:39:18 [ 7] [ 10] [0320023825] +09:39:18 [ 11] [ 6] [267686] +09:39:18 [ 12] [ 6] [093825] +09:39:18 [ 13] [ 4] [0320] +09:39:18 [ 14] [ 4] [4912] +09:39:18 [ 15] [ 4] [0320] +09:39:18 [ 18] [ 4] [6011] +09:39:18 [ 19] [ 3] [418] +09:39:18 [ 22] [ 3] [021] +09:39:18 [ 25] [ 2] [01] +09:39:18 [ 28] [ 9] [D00002000] +09:39:18 [ 32] [ 6] [180893] +09:39:18 [ 35] [ 32] [6213545000939409=491212013940581] +09:39:18 [ 37] [ 12] [507902267686] +09:39:18 [ 41] [ 8] [0366SKTT] +09:39:18 [ 42] [ 15] [999999 ] +09:39:18 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:39:18 [ 49] [ 3] [418] +09:39:18 [ 52] [ 16] [03E5AA78375679A6] +09:39:18 ============================================================================ +09:39:18 + + +waiting on router queue for slot.... +09:39:18 Sending to : +09:39:18 ============================================================================ +09:39:18 ============================================================================ +09:39:18 Slot Id : <154> +09:39:18 Transaction Type : REQUEST +09:39:18 Received From : +09:39:18 ============================================================================ +09:39:18 FNo. Len. Field Value +09:39:18 ============================================================================ +09:39:18 [ 1] [ 4] [0200] +09:39:18 [ 2] [ 16] [6213545000939409] +09:39:18 [ 3] [ 6] [010000] +09:39:18 [ 4] [ 12] [000010000000] +09:39:18 [ 7] [ 10] [0320023825] +09:39:18 [ 11] [ 6] [267686] +09:39:18 [ 12] [ 6] [093825] +09:39:18 [ 13] [ 4] [0320] +09:39:18 [ 14] [ 4] [4912] +09:39:18 [ 15] [ 4] [0320] +09:39:18 [ 18] [ 4] [6011] +09:39:18 [ 19] [ 3] [418] +09:39:18 [ 22] [ 3] [021] +09:39:18 [ 25] [ 2] [01] +09:39:18 [ 28] [ 9] [D00002000] +09:39:18 [ 32] [ 6] [180893] +09:39:18 [ 35] [ 32] [6213545000939409=491212013940581] +09:39:18 [ 37] [ 12] [507902267686] +09:39:18 [ 41] [ 8] [0366SKTT] +09:39:18 [ 42] [ 15] [999999 ] +09:39:18 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:39:18 [ 49] [ 3] [418] +09:39:18 [ 52] [ 16] [96939ECA28275C11] +09:39:18 ============================================================================ +09:39:18 + + +waiting on router queue for slot.... +09:39:18 Sending to : <0> +09:39:18 ============================================================================ +09:39:18 ============================================================================ +09:39:18 Slot Id : <162> +09:39:18 Transaction Type : RESPONSE +09:39:18 Received From : +09:39:18 ============================================================================ +09:39:18 FNo. Len. Field Value +09:39:18 ============================================================================ +09:39:18 [ 1] [ 4] [0210] +09:39:18 [ 2] [ 16] [6688990060034814] +09:39:18 [ 3] [ 6] [301000] +09:39:18 [ 4] [ 12] [000000000000] +09:39:18 [ 7] [ 10] [0320023822] +09:39:18 [ 11] [ 6] [267685] +09:39:18 [ 12] [ 6] [093822] +09:39:18 [ 13] [ 4] [0320] +09:39:18 [ 15] [ 4] [0320] +09:39:18 [ 18] [ 4] [6011] +09:39:18 [ 19] [ 3] [418] +09:39:18 [ 22] [ 3] [021] +09:39:18 [ 32] [ 6] [180893] +09:39:18 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:39:18 [ 37] [ 12] [507902267685] +09:39:18 [ 39] [ 2] [14] +09:39:18 [ 41] [ 8] [0369SLVL] +09:39:18 [ 49] [ 3] [418] +09:39:18 ============================================================================ +09:39:18 Calculate Source COMM Id = 2 +09:39:18 ============================================================================ +09:39:18 + + +waiting on router queue for slot.... +09:39:19 ============================================================================ +09:39:19 Slot Id : <154> +09:39:19 Transaction Type : RESPONSE +09:39:19 Received From : +09:39:19 ============================================================================ +09:39:19 FNo. Len. Field Value +09:39:19 ============================================================================ +09:39:19 [ 1] [ 4] [0210] +09:39:19 [ 2] [ 16] [6213545000939409] +09:39:19 [ 3] [ 6] [010000] +09:39:19 [ 4] [ 12] [000010000000] +09:39:19 [ 7] [ 10] [0320023825] +09:39:19 [ 11] [ 6] [267686] +09:39:19 [ 12] [ 6] [093825] +09:39:19 [ 13] [ 4] [0320] +09:39:19 [ 15] [ 4] [0320] +09:39:19 [ 18] [ 4] [6011] +09:39:19 [ 19] [ 3] [418] +09:39:19 [ 32] [ 6] [180893] +09:39:19 [ 35] [ 32] [6213545000939409=491212013940581] +09:39:19 [ 37] [ 12] [507902267686] +09:39:19 [ 38] [ 6] [527333] +09:39:19 [ 39] [ 2] [00] +09:39:19 [ 41] [ 8] [0366SKTT] +09:39:19 [ 49] [ 3] [418] +09:39:19 [ 54] [ 40] [0001418C0000373046660002418C000037304666] +09:39:19 ============================================================================ +09:39:19 Sending to : +09:39:19 ============================================================================ +09:39:19 + + +waiting on router queue for slot.... +09:39:20 ============================================================================ +09:39:20 Slot Id : <154> +09:39:20 Transaction Type : RESPONSE +09:39:20 Received From : +09:39:20 ============================================================================ +09:39:20 FNo. Len. Field Value +09:39:20 ============================================================================ +09:39:20 [ 1] [ 4] [0210] +09:39:20 [ 2] [ 16] [6213545000939409] +09:39:20 [ 3] [ 6] [010000] +09:39:20 [ 4] [ 12] [000010000000] +09:39:20 [ 7] [ 10] [0320023825] +09:39:20 [ 11] [ 6] [267686] +09:39:20 [ 12] [ 6] [093825] +09:39:20 [ 13] [ 4] [0320] +09:39:20 [ 15] [ 4] [0320] +09:39:20 [ 18] [ 4] [6011] +09:39:20 [ 19] [ 3] [418] +09:39:20 [ 32] [ 6] [180893] +09:39:20 [ 35] [ 32] [6213545000939409=491212013940581] +09:39:20 [ 37] [ 12] [507902267686] +09:39:20 [ 38] [ 6] [527333] +09:39:20 [ 39] [ 2] [00] +09:39:20 [ 41] [ 8] [0366SKTT] +09:39:20 [ 49] [ 3] [418] +09:39:20 [ 54] [ 40] [0001418C0000373046660002418C000037304666] +09:39:20 ============================================================================ +09:39:20 Calculate Source COMM Id = 2 +09:39:20 ============================================================================ +09:39:20 + + +waiting on router queue for slot.... +09:39:31 ============================================================================ +09:39:31 Slot Id : <143> +09:39:31 Transaction Type : REQUEST +09:39:31 Received From : +09:39:31 ============================================================================ +09:39:31 FNo. Len. Field Value +09:39:31 ============================================================================ +09:39:31 [ 1] [ 4] [0200] +09:39:31 [ 2] [ 16] [6688990100924305] +09:39:31 [ 3] [ 6] [011000] +09:39:31 [ 4] [ 12] [000040000000] +09:39:31 [ 7] [ 10] [0320093927] +09:39:31 [ 11] [ 6] [701706] +09:39:31 [ 12] [ 6] [093927] +09:39:31 [ 13] [ 4] [0320] +09:39:31 [ 15] [ 4] [0320] +09:39:31 [ 18] [ 4] [6011] +09:39:31 [ 22] [ 3] [900] +09:39:31 [ 25] [ 2] [02] +09:39:31 [ 28] [ 9] [D00002000] +09:39:31 [ 32] [ 6] [621354] +09:39:31 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:39:31 [ 37] [ 12] [507904719431] +09:39:31 [ 41] [ 8] [18001000] +09:39:31 [ 42] [ 15] [NATIVE ] +09:39:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:39:31 [ 49] [ 3] [418] +09:39:31 [ 52] [ 16] [0836B1A6190C2285] +09:39:31 ============================================================================ +09:39:31 + + +waiting on router queue for slot.... +09:39:31 Sending to : +09:39:31 ============================================================================ +09:39:31 Sending to : +09:39:31 ============================================================================ +09:39:31 ============================================================================ +09:39:31 Slot Id : <143> +09:39:31 Transaction Type : REQUEST +09:39:31 Received From : +09:39:31 ============================================================================ +09:39:31 FNo. Len. Field Value +09:39:31 ============================================================================ +09:39:31 [ 1] [ 4] [0200] +09:39:31 [ 2] [ 16] [6688990100924305] +09:39:31 [ 3] [ 6] [011000] +09:39:31 [ 4] [ 12] [000040000000] +09:39:31 [ 7] [ 10] [0320093927] +09:39:31 [ 11] [ 6] [701706] +09:39:31 [ 12] [ 6] [093927] +09:39:31 [ 13] [ 4] [0320] +09:39:31 [ 15] [ 4] [0320] +09:39:31 [ 18] [ 4] [6011] +09:39:31 [ 22] [ 3] [900] +09:39:31 [ 25] [ 2] [02] +09:39:31 [ 28] [ 9] [D00002000] +09:39:31 [ 32] [ 6] [621354] +09:39:31 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:39:31 [ 37] [ 12] [507904719431] +09:39:31 [ 41] [ 8] [18001000] +09:39:31 [ 42] [ 15] [NATIVE ] +09:39:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:39:31 [ 49] [ 3] [418] +09:39:31 [ 52] [ 16] [0836B1A6190C2285] +09:39:31 ============================================================================ +09:39:31 + + +waiting on router queue for slot.... +09:39:31 Sending to : +09:39:31 ============================================================================ +09:39:31 ============================================================================ +09:39:31 Slot Id : <143> +09:39:31 Transaction Type : REQUEST +09:39:31 Received From : +09:39:31 ============================================================================ +09:39:31 FNo. Len. Field Value +09:39:31 ============================================================================ +09:39:31 [ 1] [ 4] [0200] +09:39:31 [ 2] [ 16] [6688990100924305] +09:39:31 [ 3] [ 6] [011000] +09:39:31 [ 4] [ 12] [000040000000] +09:39:31 [ 7] [ 10] [0320093927] +09:39:31 [ 11] [ 6] [701706] +09:39:31 [ 12] [ 6] [093927] +09:39:31 [ 13] [ 4] [0320] +09:39:31 [ 15] [ 4] [0320] +09:39:31 [ 18] [ 4] [6011] +09:39:31 [ 22] [ 3] [900] +09:39:31 [ 25] [ 2] [02] +09:39:31 [ 28] [ 9] [D00002000] +09:39:31 [ 32] [ 6] [621354] +09:39:31 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:39:31 [ 37] [ 12] [507904719431] +09:39:31 [ 41] [ 8] [18001000] +09:39:31 [ 42] [ 15] [NATIVE ] +09:39:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:39:31 [ 49] [ 3] [418] +09:39:31 [ 52] [ 16] [04E46765C2DC7268] +09:39:31 ============================================================================ +09:39:31 + + +waiting on router queue for slot.... +09:39:31 Sending to : <4> +09:39:31 ============================================================================ +09:39:31 ============================================================================ +09:39:31 Slot Id : <143> +09:39:31 Transaction Type : RESPONSE +09:39:31 Received From : +09:39:31 ============================================================================ +09:39:31 FNo. Len. Field Value +09:39:31 ============================================================================ +09:39:31 [ 1] [ 4] [0210] +09:39:31 [ 2] [ 16] [6688990100924305] +09:39:31 [ 3] [ 6] [011000] +09:39:31 [ 4] [ 12] [000040000000] +09:39:31 [ 11] [ 6] [701706] +09:39:31 [ 12] [ 6] [093927] +09:39:31 [ 15] [ 4] [0320] +09:39:31 [ 18] [ 4] [6011] +09:39:31 [ 32] [ 6] [621354] +09:39:31 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:39:31 [ 37] [ 12] [507904719431] +09:39:31 [ 39] [ 2] [51] +09:39:31 [ 41] [ 8] [18001000] +09:39:31 [ 49] [ 3] [418] +09:39:31 [ 54] [ 0] [] +09:39:31 ============================================================================ +09:39:31 Sending to : +09:39:31 ============================================================================ +09:39:31 + + +waiting on router queue for slot.... +09:39:32 ============================================================================ +09:39:32 Slot Id : <145> +09:39:32 Transaction Type : REQUEST +09:39:32 Received From : +09:39:32 ============================================================================ +09:39:32 FNo. Len. Field Value +09:39:32 ============================================================================ +09:39:32 [ 1] [ 4] [0800] +09:39:32 [ 7] [ 10] [0320023840] +09:39:32 [ 11] [ 6] [155671] +09:39:32 [ 70] [ 3] [301] +09:39:32 ============================================================================ +09:39:32 + + +waiting on router queue for slot.... +09:39:32 Sending to : +09:39:32 ============================================================================ +09:39:32 ============================================================================ +09:39:32 Slot Id : <145> +09:39:32 Transaction Type : RESPONSE +09:39:32 Received From : +09:39:32 ============================================================================ +09:39:32 FNo. Len. Field Value +09:39:32 ============================================================================ +09:39:32 [ 1] [ 4] [0810] +09:39:32 [ 7] [ 10] [0320023840] +09:39:32 [ 11] [ 6] [155671] +09:39:32 [ 39] [ 2] [00] +09:39:32 [ 70] [ 3] [301] +09:39:32 ============================================================================ +09:39:32 Calculate Source COMM Id = 2 +09:39:32 ============================================================================ +09:39:32 + + +waiting on router queue for slot.... +09:39:33 ============================================================================ +09:39:33 Slot Id : <143> +09:39:33 Transaction Type : RESPONSE +09:39:33 Received From : +09:39:33 ============================================================================ +09:39:33 FNo. Len. Field Value +09:39:33 ============================================================================ +09:39:33 [ 1] [ 4] [0210] +09:39:33 [ 2] [ 16] [6688990100924305] +09:39:33 [ 3] [ 6] [011000] +09:39:33 [ 4] [ 12] [000040000000] +09:39:33 [ 11] [ 6] [701706] +09:39:33 [ 12] [ 6] [093927] +09:39:33 [ 15] [ 4] [0320] +09:39:33 [ 18] [ 4] [6011] +09:39:33 [ 32] [ 6] [621354] +09:39:33 [ 35] [ 37] [6688990100924305=41121231430523500000] +09:39:33 [ 37] [ 12] [507904719431] +09:39:33 [ 39] [ 2] [51] +09:39:33 [ 41] [ 8] [18001000] +09:39:33 [ 49] [ 3] [418] +09:39:33 [ 54] [ 0] [] +09:39:33 ============================================================================ +09:39:33 Calculate Source COMM Id = 0 +09:39:33 ============================================================================ +09:39:33 + + +waiting on router queue for slot.... +09:39:42 ============================================================================ +09:39:42 Slot Id : <158> +09:39:42 Transaction Type : REQUEST +09:39:42 Received From : +09:39:42 ============================================================================ +09:39:42 FNo. Len. Field Value +09:39:42 ============================================================================ +09:39:42 [ 1] [ 4] [0800] +09:39:42 [ 7] [ 10] [0320023850] +09:39:42 [ 11] [ 6] [155672] +09:39:42 [ 70] [ 3] [301] +09:39:42 ============================================================================ +09:39:42 + + +waiting on router queue for slot.... +09:39:42 Sending to : +09:39:42 ============================================================================ +09:39:42 ============================================================================ +09:39:42 Slot Id : <158> +09:39:42 Transaction Type : RESPONSE +09:39:42 Received From : +09:39:42 ============================================================================ +09:39:42 FNo. Len. Field Value +09:39:42 ============================================================================ +09:39:42 [ 1] [ 4] [0810] +09:39:42 [ 7] [ 10] [0320023850] +09:39:42 [ 11] [ 6] [155672] +09:39:42 [ 39] [ 2] [00] +09:39:42 [ 70] [ 3] [301] +09:39:42 ============================================================================ +09:39:42 Calculate Source COMM Id = 2 +09:39:42 ============================================================================ +09:39:42 + + +waiting on router queue for slot.... +09:39:44 ============================================================================ +09:39:44 Slot Id : <120> +09:39:44 Transaction Type : REQUEST +09:39:44 Received From : +09:39:44 ============================================================================ +09:39:44 FNo. Len. Field Value +09:39:44 ============================================================================ +09:39:44 [ 1] [ 4] [0800] +09:39:44 [ 7] [ 10] [0320165132] +09:39:44 [ 11] [ 6] [095132] +09:39:44 [ 37] [ 12] [57909095132] +09:39:44 [ 70] [ 3] [301] +09:39:44 ============================================================================ +09:39:44 + + +waiting on router queue for slot.... +09:39:44 Sending to : +09:39:44 ============================================================================ +09:39:44 ============================================================================ +09:39:44 Slot Id : <120> +09:39:44 Transaction Type : RESPONSE +09:39:44 Received From : +09:39:44 ============================================================================ +09:39:44 FNo. Len. Field Value +09:39:44 ============================================================================ +09:39:44 [ 1] [ 4] [0810] +09:39:44 [ 7] [ 10] [0320165132] +09:39:44 [ 11] [ 6] [095132] +09:39:44 [ 37] [ 12] [579090951320] +09:39:44 [ 39] [ 2] [00] +09:39:44 [ 70] [ 3] [810] +09:39:44 ============================================================================ +09:39:44 Calculate Source COMM Id = 6 +09:39:44 ============================================================================ +09:39:44 + + +waiting on router queue for slot.... +09:39:45 ============================================================================ +09:39:45 Slot Id : <166> +09:39:45 Transaction Type : REQUEST +09:39:45 Received From : +09:39:45 ============================================================================ +09:39:45 FNo. Len. Field Value +09:39:45 ============================================================================ +09:39:45 [ 1] [ 4] [0200] +09:39:45 [ 2] [ 16] [6213544001906277] +09:39:45 [ 3] [ 6] [010000] +09:39:45 [ 4] [ 12] [000100000000] +09:39:45 [ 7] [ 10] [0320093736] +09:39:45 [ 11] [ 6] [936211] +09:39:45 [ 12] [ 6] [093736] +09:39:45 [ 13] [ 4] [0320] +09:39:45 [ 15] [ 4] [0320] +09:39:45 [ 18] [ 4] [6011] +09:39:45 [ 19] [ 3] [418] +09:39:45 [ 22] [ 3] [021] +09:39:45 [ 25] [ 2] [01] +09:39:45 [ 28] [ 9] [D00002000] +09:39:45 [ 32] [ 6] [668899] +09:39:45 [ 35] [ 32] [6213544001906277=491212010627879] +09:39:45 [ 37] [ 12] [507902475679] +09:39:45 [ 41] [ 8] [03020032] +09:39:45 [ 42] [ 15] [APT ] +09:39:45 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +09:39:45 [ 49] [ 3] [418] +09:39:45 [ 52] [ 16] [ADEBF413FCA71BC8] +09:39:45 ============================================================================ +09:39:45 + + +waiting on router queue for slot.... +09:39:45 Sending to : +09:39:45 ============================================================================ +09:39:45 Sending to : +09:39:45 ============================================================================ +09:39:45 ============================================================================ +09:39:45 Slot Id : <166> +09:39:45 Transaction Type : REQUEST +09:39:45 Received From : +09:39:45 ============================================================================ +09:39:45 FNo. Len. Field Value +09:39:45 ============================================================================ +09:39:45 [ 1] [ 4] [0200] +09:39:45 [ 2] [ 16] [6213544001906277] +09:39:45 [ 3] [ 6] [010000] +09:39:45 [ 4] [ 12] [000100000000] +09:39:45 [ 7] [ 10] [0320093736] +09:39:45 [ 11] [ 6] [936211] +09:39:45 [ 12] [ 6] [093736] +09:39:45 [ 13] [ 4] [0320] +09:39:45 [ 15] [ 4] [0320] +09:39:45 [ 18] [ 4] [6011] +09:39:45 [ 19] [ 3] [418] +09:39:45 [ 22] [ 3] [021] +09:39:45 [ 25] [ 2] [01] +09:39:45 [ 28] [ 9] [D00002000] +09:39:45 [ 32] [ 6] [668899] +09:39:45 [ 35] [ 32] [6213544001906277=491212010627879] +09:39:45 [ 37] [ 12] [507902475679] +09:39:45 [ 41] [ 8] [03020032] +09:39:45 [ 42] [ 15] [APT ] +09:39:45 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +09:39:45 [ 49] [ 3] [418] +09:39:45 [ 52] [ 16] [ADEBF413FCA71BC8] +09:39:45 ============================================================================ +09:39:45 + + +waiting on router queue for slot.... +09:39:45 Sending to : +09:39:45 ============================================================================ +09:39:45 ============================================================================ +09:39:45 Slot Id : <166> +09:39:45 Transaction Type : REQUEST +09:39:45 Received From : +09:39:45 ============================================================================ +09:39:45 FNo. Len. Field Value +09:39:45 ============================================================================ +09:39:45 [ 1] [ 4] [0200] +09:39:45 [ 2] [ 16] [6213544001906277] +09:39:45 [ 3] [ 6] [010000] +09:39:45 [ 4] [ 12] [000100000000] +09:39:45 [ 7] [ 10] [0320093736] +09:39:45 [ 11] [ 6] [936211] +09:39:45 [ 12] [ 6] [093736] +09:39:45 [ 13] [ 4] [0320] +09:39:45 [ 15] [ 4] [0320] +09:39:45 [ 18] [ 4] [6011] +09:39:45 [ 19] [ 3] [418] +09:39:45 [ 22] [ 3] [021] +09:39:45 [ 25] [ 2] [01] +09:39:45 [ 28] [ 9] [D00002000] +09:39:45 [ 32] [ 6] [668899] +09:39:45 [ 35] [ 32] [6213544001906277=491212010627879] +09:39:45 [ 37] [ 12] [507902475679] +09:39:45 [ 41] [ 8] [03020032] +09:39:45 [ 42] [ 15] [APT ] +09:39:45 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +09:39:45 [ 49] [ 3] [418] +09:39:45 [ 52] [ 16] [F55C9E42179ABD04] +09:39:45 ============================================================================ +09:39:45 + + +waiting on router queue for slot.... +09:39:45 Sending to : <0> +09:39:45 ============================================================================ +09:39:46 ============================================================================ +09:39:46 Slot Id : <166> +09:39:46 Transaction Type : RESPONSE +09:39:46 Received From : +09:39:46 ============================================================================ +09:39:46 FNo. Len. Field Value +09:39:46 ============================================================================ +09:39:46 [ 1] [ 4] [0210] +09:39:46 [ 2] [ 16] [6213544001906277] +09:39:46 [ 3] [ 6] [010000] +09:39:46 [ 4] [ 12] [000100000000] +09:39:46 [ 7] [ 10] [0320093736] +09:39:46 [ 11] [ 6] [936211] +09:39:46 [ 12] [ 6] [093736] +09:39:46 [ 13] [ 4] [0320] +09:39:46 [ 15] [ 4] [0320] +09:39:46 [ 18] [ 4] [6011] +09:39:46 [ 19] [ 3] [418] +09:39:46 [ 32] [ 6] [668899] +09:39:46 [ 35] [ 32] [6213544001906277=491212010627879] +09:39:46 [ 37] [ 12] [507902475679] +09:39:46 [ 38] [ 6] [828011] +09:39:46 [ 39] [ 2] [00] +09:39:46 [ 41] [ 8] [03020032] +09:39:46 [ 49] [ 3] [418] +09:39:46 [ 54] [ 40] [0001418C0005000072140002418C000500007214] +09:39:46 ============================================================================ +09:39:46 Sending to : +09:39:46 ============================================================================ +09:39:46 + + +waiting on router queue for slot.... +09:39:47 ============================================================================ +09:39:47 Slot Id : <166> +09:39:47 Transaction Type : RESPONSE +09:39:47 Received From : +09:39:47 ============================================================================ +09:39:47 FNo. Len. Field Value +09:39:47 ============================================================================ +09:39:47 [ 1] [ 4] [0210] +09:39:47 [ 2] [ 16] [6213544001906277] +09:39:47 [ 3] [ 6] [010000] +09:39:47 [ 4] [ 12] [000100000000] +09:39:47 [ 7] [ 10] [0320093736] +09:39:47 [ 11] [ 6] [936211] +09:39:47 [ 12] [ 6] [093736] +09:39:47 [ 13] [ 4] [0320] +09:39:47 [ 15] [ 4] [0320] +09:39:47 [ 18] [ 4] [6011] +09:39:47 [ 19] [ 3] [418] +09:39:47 [ 32] [ 6] [668899] +09:39:47 [ 35] [ 32] [6213544001906277=491212010627879] +09:39:47 [ 37] [ 12] [507902475679] +09:39:47 [ 38] [ 6] [828011] +09:39:47 [ 39] [ 2] [00] +09:39:47 [ 41] [ 8] [03020032] +09:39:47 [ 49] [ 3] [418] +09:39:47 [ 54] [ 40] [0001418C0005000072140002418C000500007214] +09:39:47 ============================================================================ +09:39:47 Calculate Source COMM Id = 4 +09:39:47 ============================================================================ +09:39:47 + + +waiting on router queue for slot.... +09:39:52 ============================================================================ +09:39:52 Slot Id : <130> +09:39:52 Transaction Type : REQUEST +09:39:52 Received From : +09:39:52 ============================================================================ +09:39:52 FNo. Len. Field Value +09:39:52 ============================================================================ +09:39:52 [ 1] [ 4] [0200] +09:39:52 [ 2] [ 16] [6213544000156726] +09:39:52 [ 3] [ 6] [011000] +09:39:52 [ 4] [ 12] [000050000000] +09:39:52 [ 7] [ 10] [0320094739] +09:39:52 [ 11] [ 6] [242307] +09:39:52 [ 12] [ 6] [094739] +09:39:52 [ 13] [ 4] [0320] +09:39:52 [ 14] [ 4] [4912] +09:39:52 [ 15] [ 4] [0320] +09:39:52 [ 18] [ 4] [6011] +09:39:52 [ 22] [ 3] [900] +09:39:52 [ 25] [ 2] [02] +09:39:52 [ 28] [ 9] [D00002000] +09:39:52 [ 32] [ 6] [220699] +09:39:52 [ 35] [ 32] [6213544000156726=491212015672256] +09:39:52 [ 37] [ 12] [507900341564] +09:39:52 [ 41] [ 8] [01002000] +09:39:52 [ 42] [ 15] [APTRA ] +09:39:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:39:52 [ 49] [ 3] [418] +09:39:52 [ 52] [ 16] [DA8023DBD18AB43C] +09:39:52 ============================================================================ +09:39:52 + + +waiting on router queue for slot.... +09:39:52 Sending to : +09:39:52 ============================================================================ +09:39:52 Sending to : +09:39:52 ============================================================================ +09:39:52 ============================================================================ +09:39:52 Slot Id : <130> +09:39:52 Transaction Type : REQUEST +09:39:52 Received From : +09:39:52 ============================================================================ +09:39:52 FNo. Len. Field Value +09:39:52 ============================================================================ +09:39:52 [ 1] [ 4] [0200] +09:39:52 [ 2] [ 16] [6213544000156726] +09:39:52 [ 3] [ 6] [011000] +09:39:52 [ 4] [ 12] [000050000000] +09:39:52 [ 7] [ 10] [0320094739] +09:39:52 [ 11] [ 6] [242307] +09:39:52 [ 12] [ 6] [094739] +09:39:52 [ 13] [ 4] [0320] +09:39:52 [ 14] [ 4] [4912] +09:39:52 [ 15] [ 4] [0320] +09:39:52 [ 18] [ 4] [6011] +09:39:52 [ 22] [ 3] [900] +09:39:52 [ 25] [ 2] [02] +09:39:52 [ 28] [ 9] [D00002000] +09:39:52 [ 32] [ 6] [220699] +09:39:52 [ 35] [ 32] [6213544000156726=491212015672256] +09:39:52 [ 37] [ 12] [507900341564] +09:39:52 [ 41] [ 8] [01002000] +09:39:52 [ 42] [ 15] [APTRA ] +09:39:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:39:52 [ 49] [ 3] [418] +09:39:52 [ 52] [ 16] [DA8023DBD18AB43C] +09:39:52 ============================================================================ +09:39:52 + + +waiting on router queue for slot.... +09:39:52 Sending to : +09:39:52 ============================================================================ +09:39:52 ============================================================================ +09:39:52 Slot Id : <130> +09:39:52 Transaction Type : REQUEST +09:39:52 Received From : +09:39:52 ============================================================================ +09:39:52 FNo. Len. Field Value +09:39:52 ============================================================================ +09:39:52 [ 1] [ 4] [0200] +09:39:52 [ 2] [ 16] [6213544000156726] +09:39:52 [ 3] [ 6] [011000] +09:39:52 [ 4] [ 12] [000050000000] +09:39:52 [ 7] [ 10] [0320094739] +09:39:52 [ 11] [ 6] [242307] +09:39:52 [ 12] [ 6] [094739] +09:39:52 [ 13] [ 4] [0320] +09:39:52 [ 14] [ 4] [4912] +09:39:52 [ 15] [ 4] [0320] +09:39:52 [ 18] [ 4] [6011] +09:39:52 [ 22] [ 3] [900] +09:39:52 [ 25] [ 2] [02] +09:39:52 [ 28] [ 9] [D00002000] +09:39:52 [ 32] [ 6] [220699] +09:39:52 [ 35] [ 32] [6213544000156726=491212015672256] +09:39:52 [ 37] [ 12] [507900341564] +09:39:52 [ 41] [ 8] [01002000] +09:39:52 [ 42] [ 15] [APTRA ] +09:39:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:39:52 [ 49] [ 3] [418] +09:39:52 [ 52] [ 16] [803FCDFFF08DBF32] +09:39:52 ============================================================================ +09:39:52 + + +waiting on router queue for slot.... +09:39:52 Sending to : <0> +09:39:52 ============================================================================ +09:39:53 ============================================================================ +09:39:53 Slot Id : <150> +09:39:53 Transaction Type : REQUEST +09:39:53 Received From : +09:39:53 ============================================================================ +09:39:53 FNo. Len. Field Value +09:39:53 ============================================================================ +09:39:53 [ 1] [ 4] [0800] +09:39:53 [ 7] [ 10] [0320023901] +09:39:53 [ 11] [ 6] [155673] +09:39:53 [ 70] [ 3] [301] +09:39:53 ============================================================================ +09:39:53 + + +waiting on router queue for slot.... +09:39:53 Sending to : +09:39:53 ============================================================================ +09:39:53 ============================================================================ +09:39:53 Slot Id : <150> +09:39:53 Transaction Type : RESPONSE +09:39:53 Received From : +09:39:53 ============================================================================ +09:39:53 FNo. Len. Field Value +09:39:53 ============================================================================ +09:39:53 [ 1] [ 4] [0810] +09:39:53 [ 7] [ 10] [0320023901] +09:39:53 [ 11] [ 6] [155673] +09:39:53 [ 39] [ 2] [00] +09:39:53 [ 70] [ 3] [301] +09:39:53 ============================================================================ +09:39:53 Calculate Source COMM Id = 2 +09:39:53 ============================================================================ +09:39:53 + + +waiting on router queue for slot.... +09:39:53 ============================================================================ +09:39:53 Slot Id : <130> +09:39:53 Transaction Type : RESPONSE +09:39:53 Received From : +09:39:53 ============================================================================ +09:39:53 FNo. Len. Field Value +09:39:53 ============================================================================ +09:39:53 [ 1] [ 4] [0210] +09:39:53 [ 2] [ 16] [6213544000156726] +09:39:53 [ 3] [ 6] [011000] +09:39:53 [ 4] [ 12] [000050000000] +09:39:53 [ 7] [ 10] [0320094739] +09:39:53 [ 11] [ 6] [242307] +09:39:53 [ 12] [ 6] [094739] +09:39:53 [ 13] [ 4] [0320] +09:39:53 [ 15] [ 4] [0320] +09:39:53 [ 18] [ 4] [6011] +09:39:53 [ 32] [ 6] [220699] +09:39:53 [ 35] [ 32] [6213544000156726=491212015672256] +09:39:53 [ 37] [ 12] [507900341564] +09:39:53 [ 38] [ 6] [940557] +09:39:53 [ 39] [ 2] [00] +09:39:53 [ 41] [ 8] [01002000] +09:39:53 [ 49] [ 3] [418] +09:39:53 [ 54] [ 40] [1001418C0001808787781002418C000180878778] +09:39:53 ============================================================================ +09:39:53 Sending to : +09:39:53 ============================================================================ +09:39:53 + + +waiting on router queue for slot.... +09:39:55 ============================================================================ +09:39:55 Slot Id : <130> +09:39:55 Transaction Type : RESPONSE +09:39:55 Received From : +09:39:55 ============================================================================ +09:39:55 FNo. Len. Field Value +09:39:55 ============================================================================ +09:39:55 [ 1] [ 4] [0210] +09:39:55 [ 2] [ 16] [6213544000156726] +09:39:55 [ 3] [ 6] [011000] +09:39:55 [ 4] [ 12] [000050000000] +09:39:55 [ 7] [ 10] [0320094739] +09:39:55 [ 11] [ 6] [242307] +09:39:55 [ 12] [ 6] [094739] +09:39:55 [ 13] [ 4] [0320] +09:39:55 [ 15] [ 4] [0320] +09:39:55 [ 18] [ 4] [6011] +09:39:55 [ 32] [ 6] [220699] +09:39:55 [ 35] [ 32] [6213544000156726=491212015672256] +09:39:55 [ 37] [ 12] [507900341564] +09:39:55 [ 38] [ 6] [940557] +09:39:55 [ 39] [ 2] [00] +09:39:55 [ 41] [ 8] [01002000] +09:39:55 [ 49] [ 3] [418] +09:39:55 [ 54] [ 40] [1001418C0001808787781002418C000180878778] +09:39:55 ============================================================================ +09:39:55 Calculate Source COMM Id = 1 +09:39:55 ============================================================================ +09:39:55 + + +waiting on router queue for slot.... +09:39:55 ============================================================================ +09:39:55 Slot Id : <153> +09:39:55 Transaction Type : REQUEST +09:39:55 Received From : +09:39:55 ============================================================================ +09:39:55 FNo. Len. Field Value +09:39:55 ============================================================================ +09:39:55 [ 1] [ 4] [0800] +09:39:55 [ 7] [ 10] [0320024742] +09:39:55 [ 11] [ 6] [054017] +09:39:55 [ 37] [ 12] [57909054017] +09:39:55 [ 70] [ 3] [301] +09:39:55 ============================================================================ +09:39:55 + + +waiting on router queue for slot.... +09:39:55 Sending to : +09:39:55 ============================================================================ +09:39:55 ============================================================================ +09:39:55 Slot Id : <153> +09:39:55 Transaction Type : RESPONSE +09:39:55 Received From : +09:39:55 ============================================================================ +09:39:55 FNo. Len. Field Value +09:39:55 ============================================================================ +09:39:55 [ 1] [ 4] [0810] +09:39:55 [ 7] [ 10] [0320024742] +09:39:55 [ 11] [ 6] [054017] +09:39:55 [ 37] [ 12] [579090540170] +09:39:55 [ 39] [ 2] [00] +09:39:55 [ 70] [ 3] [810] +09:39:55 ============================================================================ +09:39:55 Calculate Source COMM Id = 1 +09:39:55 ============================================================================ +09:39:55 + + +waiting on router queue for slot.... +09:40:04 ============================================================================ +09:40:04 Slot Id : <133> +09:40:04 Transaction Type : REQUEST +09:40:04 Received From : +09:40:04 ============================================================================ +09:40:04 FNo. Len. Field Value +09:40:04 ============================================================================ +09:40:04 [ 1] [ 4] [0800] +09:40:04 [ 7] [ 10] [0320023911] +09:40:04 [ 11] [ 6] [155674] +09:40:04 [ 70] [ 3] [301] +09:40:04 ============================================================================ +09:40:04 + + +waiting on router queue for slot.... +09:40:04 Sending to : +09:40:04 ============================================================================ +09:40:04 ============================================================================ +09:40:04 Slot Id : <133> +09:40:04 Transaction Type : RESPONSE +09:40:04 Received From : +09:40:04 ============================================================================ +09:40:04 FNo. Len. Field Value +09:40:04 ============================================================================ +09:40:04 [ 1] [ 4] [0810] +09:40:04 [ 7] [ 10] [0320023911] +09:40:04 [ 11] [ 6] [155674] +09:40:04 [ 39] [ 2] [00] +09:40:04 [ 70] [ 3] [301] +09:40:04 ============================================================================ +09:40:04 Calculate Source COMM Id = 2 +09:40:04 ============================================================================ +09:40:04 + + +waiting on router queue for slot.... +09:40:04 ============================================================================ +09:40:04 Slot Id : <142> +09:40:04 Transaction Type : REQUEST +09:40:04 Received From : +09:40:04 ============================================================================ +09:40:04 FNo. Len. Field Value +09:40:04 ============================================================================ +09:40:04 [ 1] [ 4] [0200] +09:40:04 [ 2] [ 16] [6688990060034814] +09:40:04 [ 3] [ 6] [010000] +09:40:04 [ 4] [ 12] [000010000000] +09:40:04 [ 7] [ 10] [0320023911] +09:40:04 [ 11] [ 6] [267691] +09:40:04 [ 12] [ 6] [093911] +09:40:04 [ 13] [ 4] [0320] +09:40:04 [ 14] [ 4] [9803] +09:40:04 [ 15] [ 4] [0320] +09:40:04 [ 18] [ 4] [6011] +09:40:04 [ 19] [ 3] [418] +09:40:04 [ 22] [ 3] [021] +09:40:04 [ 25] [ 2] [01] +09:40:04 [ 28] [ 9] [D00002000] +09:40:04 [ 32] [ 6] [180893] +09:40:04 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:40:04 [ 37] [ 12] [507902267691] +09:40:04 [ 41] [ 8] [0369SLVL] +09:40:04 [ 42] [ 15] [999999 ] +09:40:04 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:40:04 [ 49] [ 3] [418] +09:40:04 [ 52] [ 16] [A94478D88D142926] +09:40:04 ============================================================================ +09:40:04 + + +waiting on router queue for slot.... +09:40:04 Sending to : +09:40:04 ============================================================================ +09:40:04 Sending to : +09:40:04 ============================================================================ +09:40:04 ============================================================================ +09:40:04 Slot Id : <142> +09:40:04 Transaction Type : REQUEST +09:40:04 Received From : +09:40:04 ============================================================================ +09:40:04 FNo. Len. Field Value +09:40:04 ============================================================================ +09:40:04 [ 1] [ 4] [0200] +09:40:04 [ 2] [ 16] [6688990060034814] +09:40:04 [ 3] [ 6] [010000] +09:40:04 [ 4] [ 12] [000010000000] +09:40:04 [ 7] [ 10] [0320023911] +09:40:04 [ 11] [ 6] [267691] +09:40:04 [ 12] [ 6] [093911] +09:40:04 [ 13] [ 4] [0320] +09:40:04 [ 14] [ 4] [9803] +09:40:04 [ 15] [ 4] [0320] +09:40:04 [ 18] [ 4] [6011] +09:40:04 [ 19] [ 3] [418] +09:40:04 [ 22] [ 3] [021] +09:40:04 [ 25] [ 2] [01] +09:40:04 [ 28] [ 9] [D00002000] +09:40:04 [ 32] [ 6] [180893] +09:40:04 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:40:04 [ 37] [ 12] [507902267691] +09:40:04 [ 41] [ 8] [0369SLVL] +09:40:04 [ 42] [ 15] [999999 ] +09:40:04 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:40:04 [ 49] [ 3] [418] +09:40:04 [ 52] [ 16] [A94478D88D142926] +09:40:04 ============================================================================ +09:40:04 + + +waiting on router queue for slot.... +09:40:04 Sending to : +09:40:04 ============================================================================ +09:40:04 ============================================================================ +09:40:04 Slot Id : <142> +09:40:04 Transaction Type : REQUEST +09:40:04 Received From : +09:40:04 ============================================================================ +09:40:04 FNo. Len. Field Value +09:40:04 ============================================================================ +09:40:04 [ 1] [ 4] [0200] +09:40:04 [ 2] [ 16] [6688990060034814] +09:40:04 [ 3] [ 6] [010000] +09:40:04 [ 4] [ 12] [000010000000] +09:40:04 [ 7] [ 10] [0320023911] +09:40:04 [ 11] [ 6] [267691] +09:40:04 [ 12] [ 6] [093911] +09:40:04 [ 13] [ 4] [0320] +09:40:04 [ 14] [ 4] [9803] +09:40:04 [ 15] [ 4] [0320] +09:40:04 [ 18] [ 4] [6011] +09:40:04 [ 19] [ 3] [418] +09:40:04 [ 22] [ 3] [021] +09:40:04 [ 25] [ 2] [01] +09:40:04 [ 28] [ 9] [D00002000] +09:40:04 [ 32] [ 6] [180893] +09:40:04 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:40:04 [ 37] [ 12] [507902267691] +09:40:04 [ 41] [ 8] [0369SLVL] +09:40:04 [ 42] [ 15] [999999 ] +09:40:04 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +09:40:04 [ 49] [ 3] [418] +09:40:04 [ 52] [ 16] [3CC8D4E47C871A05] +09:40:04 ============================================================================ +09:40:04 + + +waiting on router queue for slot.... +09:40:04 Sending to : <0> +09:40:04 ============================================================================ +09:40:04 ============================================================================ +09:40:04 Slot Id : <142> +09:40:04 Transaction Type : RESPONSE +09:40:04 Received From : +09:40:04 ============================================================================ +09:40:04 FNo. Len. Field Value +09:40:04 ============================================================================ +09:40:04 [ 1] [ 4] [0210] +09:40:04 [ 2] [ 16] [6688990060034814] +09:40:04 [ 3] [ 6] [010000] +09:40:04 [ 4] [ 12] [000010000000] +09:40:04 [ 7] [ 10] [0320023911] +09:40:04 [ 11] [ 6] [267691] +09:40:04 [ 12] [ 6] [093911] +09:40:04 [ 13] [ 4] [0320] +09:40:04 [ 15] [ 4] [0320] +09:40:04 [ 18] [ 4] [6011] +09:40:04 [ 19] [ 3] [418] +09:40:04 [ 22] [ 3] [021] +09:40:04 [ 32] [ 6] [180893] +09:40:04 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:40:04 [ 37] [ 12] [507902267691] +09:40:04 [ 39] [ 2] [14] +09:40:04 [ 41] [ 8] [0369SLVL] +09:40:04 [ 49] [ 3] [418] +09:40:04 ============================================================================ +09:40:04 Sending to : +09:40:04 ============================================================================ +09:40:04 + + +waiting on router queue for slot.... +09:40:06 ============================================================================ +09:40:06 Slot Id : <142> +09:40:06 Transaction Type : RESPONSE +09:40:06 Received From : +09:40:06 ============================================================================ +09:40:06 FNo. Len. Field Value +09:40:06 ============================================================================ +09:40:06 [ 1] [ 4] [0210] +09:40:06 [ 2] [ 16] [6688990060034814] +09:40:06 [ 3] [ 6] [010000] +09:40:06 [ 4] [ 12] [000010000000] +09:40:06 [ 7] [ 10] [0320023911] +09:40:06 [ 11] [ 6] [267691] +09:40:06 [ 12] [ 6] [093911] +09:40:06 [ 13] [ 4] [0320] +09:40:06 [ 15] [ 4] [0320] +09:40:06 [ 18] [ 4] [6011] +09:40:06 [ 19] [ 3] [418] +09:40:06 [ 22] [ 3] [021] +09:40:06 [ 32] [ 6] [180893] +09:40:06 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:40:06 [ 37] [ 12] [507902267691] +09:40:06 [ 39] [ 2] [14] +09:40:06 [ 41] [ 8] [0369SLVL] +09:40:06 [ 49] [ 3] [418] +09:40:06 ============================================================================ +09:40:06 Calculate Source COMM Id = 2 +09:40:06 ============================================================================ +09:40:06 + + +waiting on router queue for slot.... +09:40:19 ============================================================================ +09:40:19 Slot Id : <167> +09:40:19 Transaction Type : REQUEST +09:40:19 Received From : +09:40:19 ============================================================================ +09:40:19 FNo. Len. Field Value +09:40:19 ============================================================================ +09:40:19 [ 1] [ 4] [0800] +09:40:19 [ 2] [ 5] [02531] +09:40:19 [ 3] [ 6] [579098] +09:40:19 [ 7] [ 10] [0320024019] +09:40:19 [ 11] [ 6] [806973] +09:40:19 [ 15] [ 10] [0320024019] +09:40:19 [ 37] [ 11] [57909806973] +09:40:19 [ 70] [ 3] [001] +09:40:19 ============================================================================ +09:40:19 + + +waiting on router queue for slot.... +09:40:19 ============================================================================ +09:40:19 Slot Id : <167> +09:40:19 Transaction Type : RESPONSE +09:40:19 Received From : +09:40:19 ============================================================================ +09:40:19 FNo. Len. Field Value +09:40:19 ============================================================================ +09:40:19 [ 1] [ 4] [0810] +09:40:19 [ 7] [ 10] [0320024019] +09:40:19 [ 11] [ 6] [806973] +09:40:19 [ 15] [ 4] [0320] +09:40:19 [ 37] [ 12] [57909806973] +09:40:19 [ 39] [ 2] [00] +09:40:19 [ 70] [ 3] [001] +09:40:19 ============================================================================ +09:40:19 Sending to : +09:40:19 ============================================================================ +09:40:19 + + +waiting on router queue for slot.... +09:40:20 ============================================================================ +09:40:20 Slot Id : <110> +09:40:20 Transaction Type : REQUEST +09:40:20 Received From : +09:40:20 ============================================================================ +09:40:20 FNo. Len. Field Value +09:40:20 ============================================================================ +09:40:20 [ 1] [ 4] [0800] +09:40:20 [ 7] [ 10] [0320023927] +09:40:20 [ 11] [ 6] [155675] +09:40:20 [ 70] [ 3] [301] +09:40:20 ============================================================================ +09:40:20 + + +waiting on router queue for slot.... +09:40:20 Sending to : +09:40:20 ============================================================================ +09:40:20 ============================================================================ +09:40:20 Slot Id : <110> +09:40:20 Transaction Type : RESPONSE +09:40:20 Received From : +09:40:20 ============================================================================ +09:40:20 FNo. Len. Field Value +09:40:20 ============================================================================ +09:40:20 [ 1] [ 4] [0810] +09:40:20 [ 7] [ 10] [0320023927] +09:40:20 [ 11] [ 6] [155675] +09:40:20 [ 39] [ 2] [00] +09:40:20 [ 70] [ 3] [301] +09:40:20 ============================================================================ +09:40:20 Calculate Source COMM Id = 2 +09:40:20 ============================================================================ +09:40:20 + + +waiting on router queue for slot.... +09:40:28 ============================================================================ +09:40:28 Slot Id : <137> +09:40:28 Transaction Type : REQUEST +09:40:28 Received From : +09:40:28 ============================================================================ +09:40:28 FNo. Len. Field Value +09:40:28 ============================================================================ +09:40:28 [ 0] [ 4] [0420] +09:40:28 [ 1] [ 4] [0420] +09:40:28 [ 2] [ 16] [6213545000095616] +09:40:28 [ 3] [ 6] [012000] +09:40:28 [ 4] [ 12] [000040000000] +09:40:28 [ 6] [ 12] [000040000000] +09:40:28 [ 7] [ 10] [0320023745] +09:40:28 [ 11] [ 6] [267680] +09:40:28 [ 12] [ 6] [093745] +09:40:28 [ 13] [ 4] [0320] +09:40:28 [ 14] [ 4] [4912] +09:40:28 [ 15] [ 4] [0320] +09:40:28 [ 18] [ 4] [6011] +09:40:28 [ 19] [ 3] [418] +09:40:28 [ 22] [ 3] [021] +09:40:28 [ 25] [ 2] [01] +09:40:28 [ 28] [ 9] [D00002000] +09:40:28 [ 32] [ 6] [180893] +09:40:28 [ 35] [ 32] [6213545000095616=491212019561240] +09:40:28 [ 37] [ 12] [507902267680] +09:40:28 [ 39] [ 2] [68] +09:40:28 [ 41] [ 8] [0112CPBR] +09:40:28 [ 42] [ 15] [999999 ] +09:40:28 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:40:28 [ 49] [ 3] [418] +09:40:28 [ 52] [ 16] [6A7AA8CDB283ED13] +09:40:28 ============================================================================ +09:40:28 + + +waiting on router queue for slot.... +09:40:28 ============================================================================ +09:40:28 Slot Id : <159> +09:40:28 Transaction Type : REQUEST +09:40:28 Received From : +09:40:28 ============================================================================ +09:40:28 FNo. Len. Field Value +09:40:28 ============================================================================ +09:40:28 [ 1] [ 4] [0200] +09:40:28 [ 2] [ 16] [6688990040051615] +09:40:28 [ 3] [ 6] [301000] +09:40:28 [ 4] [ 12] [000000000000] +09:40:28 [ 7] [ 10] [0320094024] +09:40:28 [ 11] [ 6] [701977] +09:40:28 [ 12] [ 6] [094024] +09:40:28 [ 13] [ 4] [0320] +09:40:28 [ 15] [ 4] [0320] +09:40:28 [ 18] [ 4] [6011] +09:40:28 [ 22] [ 3] [900] +09:40:28 [ 25] [ 2] [02] +09:40:28 [ 28] [ 9] [D00000000] +09:40:28 [ 32] [ 6] [621354] +09:40:28 [ 35] [ 37] [6688990040051615=97121261067867700000] +09:40:28 [ 37] [ 12] [507904719432] +09:40:28 [ 41] [ 8] [18001000] +09:40:28 [ 42] [ 15] [NATIVE ] +09:40:28 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:40:28 [ 49] [ 3] [418] +09:40:28 [ 52] [ 16] [73AAD05871398A1A] +09:40:28 ============================================================================ +09:40:28 + + +waiting on router queue for slot.... +09:40:28 Sending to : +09:40:28 ============================================================================ +09:40:28 Sending to : +09:40:28 ============================================================================ +09:40:28 ============================================================================ +09:40:28 Slot Id : <137> +09:40:28 Transaction Type : RESPONSE +09:40:28 Received From : +09:40:28 ============================================================================ +09:40:28 FNo. Len. Field Value +09:40:28 ============================================================================ +09:40:28 [ 1] [ 4] [0430] +09:40:28 [ 2] [ 16] [6213545000095616] +09:40:28 [ 3] [ 6] [012000] +09:40:28 [ 4] [ 12] [000040000000] +09:40:28 [ 7] [ 10] [0320023745] +09:40:28 [ 11] [ 6] [267680] +09:40:28 [ 19] [ 3] [418] +09:40:28 [ 32] [ 6] [180893] +09:40:28 [ 35] [ 32] [6213545000095616=491212019561240] +09:40:28 [ 37] [ 12] [507902267680] +09:40:28 [ 39] [ 2] [00] +09:40:28 [ 41] [ 8] [0112CPBR] +09:40:28 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:40:28 [ 49] [ 3] [418] +09:40:28 [ 90] [ 42] [020026768003200237450000018089300000000000] +09:40:28 ============================================================================ +09:40:28 Successfully send the slot [137] To REVERSAL Process +09:40:28 + + +waiting on router queue for slot.... +09:40:29 ============================================================================ +09:40:29 Slot Id : <159> +09:40:29 Transaction Type : REQUEST +09:40:29 Received From : +09:40:29 ============================================================================ +09:40:29 FNo. Len. Field Value +09:40:29 ============================================================================ +09:40:29 [ 1] [ 4] [0200] +09:40:29 [ 2] [ 16] [6688990040051615] +09:40:29 [ 3] [ 6] [301000] +09:40:29 [ 4] [ 12] [000000000000] +09:40:29 [ 7] [ 10] [0320094024] +09:40:29 [ 11] [ 6] [701977] +09:40:29 [ 12] [ 6] [094024] +09:40:29 [ 13] [ 4] [0320] +09:40:29 [ 15] [ 4] [0320] +09:40:29 [ 18] [ 4] [6011] +09:40:29 [ 22] [ 3] [900] +09:40:29 [ 25] [ 2] [02] +09:40:29 [ 28] [ 9] [D00000000] +09:40:29 [ 32] [ 6] [621354] +09:40:29 [ 35] [ 37] [6688990040051615=97121261067867700000] +09:40:29 [ 37] [ 12] [507904719432] +09:40:29 [ 41] [ 8] [18001000] +09:40:29 [ 42] [ 15] [NATIVE ] +09:40:29 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:40:29 [ 49] [ 3] [418] +09:40:29 [ 52] [ 16] [73AAD05871398A1A] +09:40:29 ============================================================================ +09:40:29 + + +waiting on router queue for slot.... +09:40:29 Sending to : +09:40:29 ============================================================================ +09:40:29 ============================================================================ +09:40:29 Slot Id : <159> +09:40:29 Transaction Type : REQUEST +09:40:29 Received From : +09:40:29 ============================================================================ +09:40:29 FNo. Len. Field Value +09:40:29 ============================================================================ +09:40:29 [ 1] [ 4] [0200] +09:40:29 [ 2] [ 16] [6688990040051615] +09:40:29 [ 3] [ 6] [301000] +09:40:29 [ 4] [ 12] [000000000000] +09:40:29 [ 7] [ 10] [0320094024] +09:40:29 [ 11] [ 6] [701977] +09:40:29 [ 12] [ 6] [094024] +09:40:29 [ 13] [ 4] [0320] +09:40:29 [ 15] [ 4] [0320] +09:40:29 [ 18] [ 4] [6011] +09:40:29 [ 22] [ 3] [900] +09:40:29 [ 25] [ 2] [02] +09:40:29 [ 28] [ 9] [D00000000] +09:40:29 [ 32] [ 6] [621354] +09:40:29 [ 35] [ 37] [6688990040051615=97121261067867700000] +09:40:29 [ 37] [ 12] [507904719432] +09:40:29 [ 41] [ 8] [18001000] +09:40:29 [ 42] [ 15] [NATIVE ] +09:40:29 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:40:29 [ 49] [ 3] [418] +09:40:29 [ 52] [ 16] [DE4DD3EBB9CE58E9] +09:40:29 ============================================================================ +09:40:29 + + +waiting on router queue for slot.... +09:40:29 Sending to : <4> +09:40:29 ============================================================================ +09:40:29 ============================================================================ +09:40:29 Slot Id : <175> +09:40:29 Transaction Type : REQUEST +09:40:29 Received From : +09:40:29 ============================================================================ +09:40:29 FNo. Len. Field Value +09:40:29 ============================================================================ +09:40:29 [ 1] [ 4] [0200] +09:40:29 [ 2] [ 16] [6213545000939409] +09:40:29 [ 3] [ 6] [010000] +09:40:29 [ 4] [ 12] [000010000000] +09:40:29 [ 7] [ 10] [0320023935] +09:40:29 [ 11] [ 6] [267696] +09:40:29 [ 12] [ 6] [093935] +09:40:29 [ 13] [ 4] [0320] +09:40:29 [ 14] [ 4] [4912] +09:40:29 [ 15] [ 4] [0320] +09:40:29 [ 18] [ 4] [6011] +09:40:29 [ 19] [ 3] [418] +09:40:29 [ 22] [ 3] [021] +09:40:29 [ 25] [ 2] [01] +09:40:29 [ 28] [ 9] [D00002000] +09:40:29 [ 32] [ 6] [180893] +09:40:29 [ 35] [ 32] [6213545000939409=491212013940581] +09:40:29 [ 37] [ 12] [507902267696] +09:40:29 [ 41] [ 8] [0366SKTT] +09:40:29 [ 42] [ 15] [999999 ] +09:40:29 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:40:29 [ 49] [ 3] [418] +09:40:29 [ 52] [ 16] [03E5AA78375679A6] +09:40:29 ============================================================================ +09:40:29 + + +waiting on router queue for slot.... +09:40:29 Sending to : +09:40:29 ============================================================================ +09:40:29 Sending to : +09:40:29 ============================================================================ +09:40:29 ============================================================================ +09:40:29 Slot Id : <175> +09:40:29 Transaction Type : REQUEST +09:40:29 Received From : +09:40:29 ============================================================================ +09:40:29 FNo. Len. Field Value +09:40:29 ============================================================================ +09:40:29 [ 1] [ 4] [0200] +09:40:29 [ 2] [ 16] [6213545000939409] +09:40:29 [ 3] [ 6] [010000] +09:40:29 [ 4] [ 12] [000010000000] +09:40:29 [ 7] [ 10] [0320023935] +09:40:29 [ 11] [ 6] [267696] +09:40:29 [ 12] [ 6] [093935] +09:40:29 [ 13] [ 4] [0320] +09:40:29 [ 14] [ 4] [4912] +09:40:29 [ 15] [ 4] [0320] +09:40:29 [ 18] [ 4] [6011] +09:40:29 [ 19] [ 3] [418] +09:40:29 [ 22] [ 3] [021] +09:40:29 [ 25] [ 2] [01] +09:40:29 [ 28] [ 9] [D00002000] +09:40:29 [ 32] [ 6] [180893] +09:40:29 [ 35] [ 32] [6213545000939409=491212013940581] +09:40:29 [ 37] [ 12] [507902267696] +09:40:29 [ 41] [ 8] [0366SKTT] +09:40:29 [ 42] [ 15] [999999 ] +09:40:29 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:40:29 [ 49] [ 3] [418] +09:40:29 [ 52] [ 16] [03E5AA78375679A6] +09:40:29 ============================================================================ +09:40:29 + + +waiting on router queue for slot.... +09:40:29 Sending to : +09:40:29 ============================================================================ +09:40:29 ============================================================================ +09:40:29 Slot Id : <175> +09:40:29 Transaction Type : REQUEST +09:40:29 Received From : +09:40:29 ============================================================================ +09:40:29 FNo. Len. Field Value +09:40:29 ============================================================================ +09:40:29 [ 1] [ 4] [0200] +09:40:29 [ 2] [ 16] [6213545000939409] +09:40:29 [ 3] [ 6] [010000] +09:40:29 [ 4] [ 12] [000010000000] +09:40:29 [ 7] [ 10] [0320023935] +09:40:29 [ 11] [ 6] [267696] +09:40:29 [ 12] [ 6] [093935] +09:40:29 [ 13] [ 4] [0320] +09:40:29 [ 14] [ 4] [4912] +09:40:29 [ 15] [ 4] [0320] +09:40:29 [ 18] [ 4] [6011] +09:40:29 [ 19] [ 3] [418] +09:40:29 [ 22] [ 3] [021] +09:40:29 [ 25] [ 2] [01] +09:40:29 [ 28] [ 9] [D00002000] +09:40:29 [ 32] [ 6] [180893] +09:40:29 [ 35] [ 32] [6213545000939409=491212013940581] +09:40:29 [ 37] [ 12] [507902267696] +09:40:29 [ 41] [ 8] [0366SKTT] +09:40:29 [ 42] [ 15] [999999 ] +09:40:29 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:40:29 [ 49] [ 3] [418] +09:40:29 [ 52] [ 16] [96939ECA28275C11] +09:40:29 ============================================================================ +09:40:29 + + +waiting on router queue for slot.... +09:40:29 Sending to : <0> +09:40:29 ============================================================================ +09:40:29 ============================================================================ +09:40:29 Slot Id : <159> +09:40:29 Transaction Type : RESPONSE +09:40:29 Received From : +09:40:29 ============================================================================ +09:40:29 FNo. Len. Field Value +09:40:29 ============================================================================ +09:40:29 [ 1] [ 4] [0210] +09:40:29 [ 2] [ 16] [6688990040051615] +09:40:29 [ 3] [ 6] [301000] +09:40:29 [ 4] [ 12] [000000000000] +09:40:29 [ 11] [ 6] [701977] +09:40:29 [ 12] [ 6] [094024] +09:40:29 [ 15] [ 4] [0320] +09:40:29 [ 18] [ 4] [6011] +09:40:29 [ 32] [ 6] [621354] +09:40:29 [ 35] [ 37] [6688990040051615=97121261067867700000] +09:40:29 [ 37] [ 12] [507904719432] +09:40:29 [ 38] [ 6] [276235] +09:40:29 [ 39] [ 2] [00] +09:40:29 [ 41] [ 8] [18001000] +09:40:29 [ 49] [ 3] [418] +09:40:29 [ 54] [ 20] [1002418C000185199093] +09:40:29 ============================================================================ +09:40:29 Sending to : +09:40:29 ============================================================================ +09:40:29 + + +waiting on router queue for slot.... +09:40:30 ============================================================================ +09:40:30 Slot Id : <175> +09:40:30 Transaction Type : RESPONSE +09:40:30 Received From : +09:40:30 ============================================================================ +09:40:30 FNo. Len. Field Value +09:40:30 ============================================================================ +09:40:30 [ 1] [ 4] [0210] +09:40:30 [ 2] [ 16] [6213545000939409] +09:40:30 [ 3] [ 6] [010000] +09:40:30 [ 4] [ 12] [000010000000] +09:40:30 [ 7] [ 10] [0320023935] +09:40:30 [ 11] [ 6] [267696] +09:40:30 [ 12] [ 6] [093935] +09:40:30 [ 13] [ 4] [0320] +09:40:30 [ 15] [ 4] [0320] +09:40:30 [ 18] [ 4] [6011] +09:40:30 [ 19] [ 3] [418] +09:40:30 [ 32] [ 6] [180893] +09:40:30 [ 35] [ 32] [6213545000939409=491212013940581] +09:40:30 [ 37] [ 12] [507902267696] +09:40:30 [ 38] [ 6] [015333] +09:40:30 [ 39] [ 2] [00] +09:40:30 [ 41] [ 8] [0366SKTT] +09:40:30 [ 49] [ 3] [418] +09:40:30 [ 54] [ 40] [0001418C0000271046660002418C000027104666] +09:40:30 ============================================================================ +09:40:30 Sending to : +09:40:30 ============================================================================ +09:40:30 + + +waiting on router queue for slot.... +09:40:31 ============================================================================ +09:40:31 Slot Id : <159> +09:40:31 Transaction Type : RESPONSE +09:40:31 Received From : +09:40:31 ============================================================================ +09:40:31 FNo. Len. Field Value +09:40:31 ============================================================================ +09:40:31 [ 1] [ 4] [0210] +09:40:31 [ 2] [ 16] [6688990040051615] +09:40:31 [ 3] [ 6] [301000] +09:40:31 [ 4] [ 12] [000000000000] +09:40:31 [ 11] [ 6] [701977] +09:40:31 [ 12] [ 6] [094024] +09:40:31 [ 15] [ 4] [0320] +09:40:31 [ 18] [ 4] [6011] +09:40:31 [ 32] [ 6] [621354] +09:40:31 [ 35] [ 37] [6688990040051615=97121261067867700000] +09:40:31 [ 37] [ 12] [507904719432] +09:40:31 [ 38] [ 6] [276235] +09:40:31 [ 39] [ 2] [00] +09:40:31 [ 41] [ 8] [18001000] +09:40:31 [ 49] [ 3] [418] +09:40:31 [ 54] [ 20] [1002418C000185199093] +09:40:31 ============================================================================ +09:40:31 Calculate Source COMM Id = 0 +09:40:31 ============================================================================ +09:40:31 + + +waiting on router queue for slot.... +09:40:33 ============================================================================ +09:40:33 Slot Id : <175> +09:40:33 Transaction Type : RESPONSE +09:40:33 Received From : +09:40:33 ============================================================================ +09:40:33 FNo. Len. Field Value +09:40:33 ============================================================================ +09:40:33 [ 1] [ 4] [0210] +09:40:33 [ 2] [ 16] [6213545000939409] +09:40:33 [ 3] [ 6] [010000] +09:40:33 [ 4] [ 12] [000010000000] +09:40:33 [ 7] [ 10] [0320023935] +09:40:33 [ 11] [ 6] [267696] +09:40:33 [ 12] [ 6] [093935] +09:40:33 [ 13] [ 4] [0320] +09:40:33 [ 15] [ 4] [0320] +09:40:33 [ 18] [ 4] [6011] +09:40:33 [ 19] [ 3] [418] +09:40:33 [ 32] [ 6] [180893] +09:40:33 [ 35] [ 32] [6213545000939409=491212013940581] +09:40:33 [ 37] [ 12] [507902267696] +09:40:33 [ 38] [ 6] [015333] +09:40:33 [ 39] [ 2] [00] +09:40:33 [ 41] [ 8] [0366SKTT] +09:40:33 [ 49] [ 3] [418] +09:40:33 [ 54] [ 40] [0001418C0000271046660002418C000027104666] +09:40:33 ============================================================================ +09:40:33 Calculate Source COMM Id = 2 +09:40:33 ============================================================================ +09:40:33 + + +waiting on router queue for slot.... +09:40:43 ============================================================================ +09:40:43 Slot Id : <146> +09:40:43 Transaction Type : REQUEST +09:40:43 Received From : +09:40:43 ============================================================================ +09:40:43 FNo. Len. Field Value +09:40:43 ============================================================================ +09:40:43 [ 1] [ 4] [0200] +09:40:43 [ 2] [ 16] [6213544001906277] +09:40:43 [ 3] [ 6] [010000] +09:40:43 [ 4] [ 12] [000100000000] +09:40:43 [ 7] [ 10] [0320093835] +09:40:43 [ 11] [ 6] [936266] +09:40:43 [ 12] [ 6] [093835] +09:40:43 [ 13] [ 4] [0320] +09:40:43 [ 15] [ 4] [0320] +09:40:43 [ 18] [ 4] [6011] +09:40:43 [ 19] [ 3] [418] +09:40:43 [ 22] [ 3] [021] +09:40:43 [ 25] [ 2] [01] +09:40:43 [ 28] [ 9] [D00002000] +09:40:43 [ 32] [ 6] [668899] +09:40:43 [ 35] [ 32] [6213544001906277=491212010627879] +09:40:43 [ 37] [ 12] [507902475681] +09:40:43 [ 41] [ 8] [03020032] +09:40:43 [ 42] [ 15] [APT ] +09:40:43 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +09:40:43 [ 49] [ 3] [418] +09:40:43 [ 52] [ 16] [ADEBF413FCA71BC8] +09:40:43 ============================================================================ +09:40:43 + + +waiting on router queue for slot.... +09:40:43 Sending to : +09:40:43 ============================================================================ +09:40:43 Sending to : +09:40:43 ============================================================================ +09:40:44 ============================================================================ +09:40:44 Slot Id : <146> +09:40:44 Transaction Type : REQUEST +09:40:44 Received From : +09:40:44 ============================================================================ +09:40:44 FNo. Len. Field Value +09:40:44 ============================================================================ +09:40:44 [ 1] [ 4] [0200] +09:40:44 [ 2] [ 16] [6213544001906277] +09:40:44 [ 3] [ 6] [010000] +09:40:44 [ 4] [ 12] [000100000000] +09:40:44 [ 7] [ 10] [0320093835] +09:40:44 [ 11] [ 6] [936266] +09:40:44 [ 12] [ 6] [093835] +09:40:44 [ 13] [ 4] [0320] +09:40:44 [ 15] [ 4] [0320] +09:40:44 [ 18] [ 4] [6011] +09:40:44 [ 19] [ 3] [418] +09:40:44 [ 22] [ 3] [021] +09:40:44 [ 25] [ 2] [01] +09:40:44 [ 28] [ 9] [D00002000] +09:40:44 [ 32] [ 6] [668899] +09:40:44 [ 35] [ 32] [6213544001906277=491212010627879] +09:40:44 [ 37] [ 12] [507902475681] +09:40:44 [ 41] [ 8] [03020032] +09:40:44 [ 42] [ 15] [APT ] +09:40:44 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +09:40:44 [ 49] [ 3] [418] +09:40:44 [ 52] [ 16] [ADEBF413FCA71BC8] +09:40:44 ============================================================================ +09:40:44 + + +waiting on router queue for slot.... +09:40:44 Sending to : +09:40:44 ============================================================================ +09:40:44 ============================================================================ +09:40:44 Slot Id : <146> +09:40:44 Transaction Type : REQUEST +09:40:44 Received From : +09:40:44 ============================================================================ +09:40:44 FNo. Len. Field Value +09:40:44 ============================================================================ +09:40:44 [ 1] [ 4] [0200] +09:40:44 [ 2] [ 16] [6213544001906277] +09:40:44 [ 3] [ 6] [010000] +09:40:44 [ 4] [ 12] [000100000000] +09:40:44 [ 7] [ 10] [0320093835] +09:40:44 [ 11] [ 6] [936266] +09:40:44 [ 12] [ 6] [093835] +09:40:44 [ 13] [ 4] [0320] +09:40:44 [ 15] [ 4] [0320] +09:40:44 [ 18] [ 4] [6011] +09:40:44 [ 19] [ 3] [418] +09:40:44 [ 22] [ 3] [021] +09:40:44 [ 25] [ 2] [01] +09:40:44 [ 28] [ 9] [D00002000] +09:40:44 [ 32] [ 6] [668899] +09:40:44 [ 35] [ 32] [6213544001906277=491212010627879] +09:40:44 [ 37] [ 12] [507902475681] +09:40:44 [ 41] [ 8] [03020032] +09:40:44 [ 42] [ 15] [APT ] +09:40:44 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +09:40:44 [ 49] [ 3] [418] +09:40:44 [ 52] [ 16] [F55C9E42179ABD04] +09:40:44 ============================================================================ +09:40:44 + + +waiting on router queue for slot.... +09:40:44 Sending to : <0> +09:40:44 ============================================================================ +09:40:44 ============================================================================ +09:40:44 Slot Id : <146> +09:40:44 Transaction Type : RESPONSE +09:40:44 Received From : +09:40:44 ============================================================================ +09:40:44 FNo. Len. Field Value +09:40:44 ============================================================================ +09:40:44 [ 1] [ 4] [0210] +09:40:44 [ 2] [ 16] [6213544001906277] +09:40:44 [ 3] [ 6] [010000] +09:40:44 [ 4] [ 12] [000100000000] +09:40:44 [ 7] [ 10] [0320093835] +09:40:44 [ 11] [ 6] [936266] +09:40:44 [ 12] [ 6] [093835] +09:40:44 [ 13] [ 4] [0320] +09:40:44 [ 15] [ 4] [0320] +09:40:44 [ 18] [ 4] [6011] +09:40:44 [ 19] [ 3] [418] +09:40:44 [ 32] [ 6] [668899] +09:40:44 [ 35] [ 32] [6213544001906277=491212010627879] +09:40:44 [ 37] [ 12] [507902475681] +09:40:44 [ 38] [ 6] [157300] +09:40:44 [ 39] [ 2] [00] +09:40:44 [ 41] [ 8] [03020032] +09:40:44 [ 49] [ 3] [418] +09:40:44 [ 54] [ 40] [0001418C0003998072140002418C000399807214] +09:40:44 ============================================================================ +09:40:44 Sending to : +09:40:44 ============================================================================ +09:40:44 + + +waiting on router queue for slot.... +09:40:46 ============================================================================ +09:40:46 Slot Id : <146> +09:40:46 Transaction Type : RESPONSE +09:40:46 Received From : +09:40:46 ============================================================================ +09:40:46 FNo. Len. Field Value +09:40:46 ============================================================================ +09:40:46 [ 1] [ 4] [0210] +09:40:46 [ 2] [ 16] [6213544001906277] +09:40:46 [ 3] [ 6] [010000] +09:40:46 [ 4] [ 12] [000100000000] +09:40:46 [ 7] [ 10] [0320093835] +09:40:46 [ 11] [ 6] [936266] +09:40:46 [ 12] [ 6] [093835] +09:40:46 [ 13] [ 4] [0320] +09:40:46 [ 15] [ 4] [0320] +09:40:46 [ 18] [ 4] [6011] +09:40:46 [ 19] [ 3] [418] +09:40:46 [ 32] [ 6] [668899] +09:40:46 [ 35] [ 32] [6213544001906277=491212010627879] +09:40:46 [ 37] [ 12] [507902475681] +09:40:46 [ 38] [ 6] [157300] +09:40:46 [ 39] [ 2] [00] +09:40:46 [ 41] [ 8] [03020032] +09:40:46 [ 49] [ 3] [418] +09:40:46 [ 54] [ 40] [0001418C0003998072140002418C000399807214] +09:40:46 ============================================================================ +09:40:46 Calculate Source COMM Id = 4 +09:40:46 ============================================================================ +09:40:46 + + +waiting on router queue for slot.... +09:40:47 ============================================================================ +09:40:47 Slot Id : <128> +09:40:47 Transaction Type : REQUEST +09:40:47 Received From : +09:40:47 ============================================================================ +09:40:47 FNo. Len. Field Value +09:40:47 ============================================================================ +09:40:47 [ 1] [ 4] [0800] +09:40:47 [ 7] [ 10] [0320023955] +09:40:47 [ 11] [ 6] [155676] +09:40:47 [ 70] [ 3] [301] +09:40:47 ============================================================================ +09:40:47 + + +waiting on router queue for slot.... +09:40:47 Sending to : +09:40:47 ============================================================================ +09:40:47 ============================================================================ +09:40:47 Slot Id : <128> +09:40:47 Transaction Type : RESPONSE +09:40:47 Received From : +09:40:47 ============================================================================ +09:40:47 FNo. Len. Field Value +09:40:47 ============================================================================ +09:40:47 [ 1] [ 4] [0810] +09:40:47 [ 7] [ 10] [0320023955] +09:40:47 [ 11] [ 6] [155676] +09:40:47 [ 39] [ 2] [00] +09:40:47 [ 70] [ 3] [301] +09:40:47 ============================================================================ +09:40:47 Calculate Source COMM Id = 2 +09:40:47 ============================================================================ +09:40:47 + + +waiting on router queue for slot.... +09:40:49 ============================================================================ +09:40:49 Slot Id : <141> +09:40:49 Transaction Type : REQUEST +09:40:49 Received From : +09:40:49 ============================================================================ +09:40:49 FNo. Len. Field Value +09:40:49 ============================================================================ +09:40:49 [ 1] [ 4] [0800] +09:40:49 [ 7] [ 10] [0320165237] +09:40:49 [ 11] [ 6] [095237] +09:40:49 [ 37] [ 12] [57909095237] +09:40:49 [ 70] [ 3] [301] +09:40:49 ============================================================================ +09:40:49 + + +waiting on router queue for slot.... +09:40:49 Sending to : +09:40:49 ============================================================================ +09:40:49 ============================================================================ +09:40:49 Slot Id : <141> +09:40:49 Transaction Type : RESPONSE +09:40:49 Received From : +09:40:49 ============================================================================ +09:40:49 FNo. Len. Field Value +09:40:49 ============================================================================ +09:40:49 [ 1] [ 4] [0810] +09:40:49 [ 7] [ 10] [0320165237] +09:40:49 [ 11] [ 6] [095237] +09:40:49 [ 37] [ 12] [579090952370] +09:40:49 [ 39] [ 2] [00] +09:40:49 [ 70] [ 3] [810] +09:40:49 ============================================================================ +09:40:49 Calculate Source COMM Id = 6 +09:40:49 ============================================================================ +09:40:49 + + +waiting on router queue for slot.... +09:41:02 ============================================================================ +09:41:02 Slot Id : <151> +09:41:02 Transaction Type : REQUEST +09:41:02 Received From : +09:41:02 ============================================================================ +09:41:02 FNo. Len. Field Value +09:41:02 ============================================================================ +09:41:02 [ 1] [ 4] [0800] +09:41:02 [ 7] [ 10] [0320024011] +09:41:02 [ 11] [ 6] [155677] +09:41:02 [ 70] [ 3] [301] +09:41:02 ============================================================================ +09:41:02 + + +waiting on router queue for slot.... +09:41:02 Sending to : +09:41:02 ============================================================================ +09:41:02 ============================================================================ +09:41:02 Slot Id : <151> +09:41:02 Transaction Type : RESPONSE +09:41:02 Received From : +09:41:02 ============================================================================ +09:41:02 FNo. Len. Field Value +09:41:02 ============================================================================ +09:41:02 [ 1] [ 4] [0810] +09:41:02 [ 7] [ 10] [0320024011] +09:41:02 [ 11] [ 6] [155677] +09:41:02 [ 39] [ 2] [00] +09:41:02 [ 70] [ 3] [301] +09:41:02 ============================================================================ +09:41:02 Calculate Source COMM Id = 2 +09:41:02 ============================================================================ +09:41:02 + + +waiting on router queue for slot.... +09:41:04 ============================================================================ +09:41:04 Slot Id : <170> +09:41:04 Transaction Type : REQUEST +09:41:04 Received From : +09:41:04 ============================================================================ +09:41:04 FNo. Len. Field Value +09:41:04 ============================================================================ +09:41:04 [ 1] [ 4] [0200] +09:41:04 [ 2] [ 16] [6213545001052244] +09:41:04 [ 3] [ 6] [010000] +09:41:04 [ 4] [ 12] [000020000000] +09:41:04 [ 7] [ 10] [0320093855] +09:41:04 [ 11] [ 6] [936286] +09:41:04 [ 12] [ 6] [093855] +09:41:04 [ 13] [ 4] [0320] +09:41:04 [ 15] [ 4] [0320] +09:41:04 [ 18] [ 4] [6011] +09:41:04 [ 19] [ 3] [418] +09:41:04 [ 22] [ 3] [021] +09:41:04 [ 25] [ 2] [01] +09:41:04 [ 28] [ 9] [D00002000] +09:41:04 [ 32] [ 6] [668899] +09:41:04 [ 35] [ 32] [6213545001052244=491212015224900] +09:41:04 [ 37] [ 12] [507902336376] +09:41:04 [ 41] [ 8] [03217002] +09:41:04 [ 42] [ 15] [APT ] +09:41:04 [ 43] [ 40] [ THATENG MARKET THATENG ] +09:41:04 [ 49] [ 3] [418] +09:41:04 [ 52] [ 16] [2CDCBB89535A1AB1] +09:41:04 ============================================================================ +09:41:04 + + +waiting on router queue for slot.... +09:41:04 Sending to : +09:41:04 ============================================================================ +09:41:04 Sending to : +09:41:04 ============================================================================ +09:41:04 ============================================================================ +09:41:04 Slot Id : <170> +09:41:04 Transaction Type : REQUEST +09:41:04 Received From : +09:41:04 ============================================================================ +09:41:04 FNo. Len. Field Value +09:41:04 ============================================================================ +09:41:04 [ 1] [ 4] [0200] +09:41:04 [ 2] [ 16] [6213545001052244] +09:41:04 [ 3] [ 6] [010000] +09:41:04 [ 4] [ 12] [000020000000] +09:41:04 [ 7] [ 10] [0320093855] +09:41:04 [ 11] [ 6] [936286] +09:41:04 [ 12] [ 6] [093855] +09:41:04 [ 13] [ 4] [0320] +09:41:04 [ 15] [ 4] [0320] +09:41:04 [ 18] [ 4] [6011] +09:41:04 [ 19] [ 3] [418] +09:41:04 [ 22] [ 3] [021] +09:41:04 [ 25] [ 2] [01] +09:41:04 [ 28] [ 9] [D00002000] +09:41:04 [ 32] [ 6] [668899] +09:41:04 [ 35] [ 32] [6213545001052244=491212015224900] +09:41:04 [ 37] [ 12] [507902336376] +09:41:04 [ 41] [ 8] [03217002] +09:41:04 [ 42] [ 15] [APT ] +09:41:04 [ 43] [ 40] [ THATENG MARKET THATENG ] +09:41:04 [ 49] [ 3] [418] +09:41:04 [ 52] [ 16] [2CDCBB89535A1AB1] +09:41:04 ============================================================================ +09:41:04 + + +waiting on router queue for slot.... +09:41:04 Sending to : +09:41:04 ============================================================================ +09:41:04 ============================================================================ +09:41:04 Slot Id : <170> +09:41:04 Transaction Type : REQUEST +09:41:04 Received From : +09:41:04 ============================================================================ +09:41:04 FNo. Len. Field Value +09:41:04 ============================================================================ +09:41:04 [ 1] [ 4] [0200] +09:41:04 [ 2] [ 16] [6213545001052244] +09:41:04 [ 3] [ 6] [010000] +09:41:04 [ 4] [ 12] [000020000000] +09:41:04 [ 7] [ 10] [0320093855] +09:41:04 [ 11] [ 6] [936286] +09:41:04 [ 12] [ 6] [093855] +09:41:04 [ 13] [ 4] [0320] +09:41:04 [ 15] [ 4] [0320] +09:41:04 [ 18] [ 4] [6011] +09:41:04 [ 19] [ 3] [418] +09:41:04 [ 22] [ 3] [021] +09:41:04 [ 25] [ 2] [01] +09:41:04 [ 28] [ 9] [D00002000] +09:41:04 [ 32] [ 6] [668899] +09:41:04 [ 35] [ 32] [6213545001052244=491212015224900] +09:41:04 [ 37] [ 12] [507902336376] +09:41:04 [ 41] [ 8] [03217002] +09:41:04 [ 42] [ 15] [APT ] +09:41:04 [ 43] [ 40] [ THATENG MARKET THATENG ] +09:41:04 [ 49] [ 3] [418] +09:41:04 [ 52] [ 16] [8B306D1262741B15] +09:41:04 ============================================================================ +09:41:04 + + +waiting on router queue for slot.... +09:41:04 Sending to : <0> +09:41:04 ============================================================================ +09:41:05 ============================================================================ +09:41:05 Slot Id : <170> +09:41:05 Transaction Type : RESPONSE +09:41:05 Received From : +09:41:05 ============================================================================ +09:41:05 FNo. Len. Field Value +09:41:05 ============================================================================ +09:41:05 [ 1] [ 4] [0210] +09:41:05 [ 2] [ 16] [6213545001052244] +09:41:05 [ 3] [ 6] [010000] +09:41:05 [ 4] [ 12] [000020000000] +09:41:05 [ 7] [ 10] [0320093855] +09:41:05 [ 11] [ 6] [936286] +09:41:05 [ 12] [ 6] [093855] +09:41:05 [ 13] [ 4] [0320] +09:41:05 [ 15] [ 4] [0320] +09:41:05 [ 18] [ 4] [6011] +09:41:05 [ 19] [ 3] [418] +09:41:05 [ 32] [ 6] [668899] +09:41:05 [ 35] [ 32] [6213545001052244=491212015224900] +09:41:05 [ 37] [ 12] [507902336376] +09:41:05 [ 38] [ 6] [820715] +09:41:05 [ 39] [ 2] [00] +09:41:05 [ 41] [ 8] [03217002] +09:41:05 [ 49] [ 3] [418] +09:41:05 [ 54] [ 40] [0001418C0001730180700002418C000173018070] +09:41:05 ============================================================================ +09:41:05 Sending to : +09:41:05 ============================================================================ +09:41:05 + + +waiting on router queue for slot.... +09:41:07 ============================================================================ +09:41:07 Slot Id : <170> +09:41:07 Transaction Type : RESPONSE +09:41:07 Received From : +09:41:07 ============================================================================ +09:41:07 FNo. Len. Field Value +09:41:07 ============================================================================ +09:41:07 [ 1] [ 4] [0210] +09:41:07 [ 2] [ 16] [6213545001052244] +09:41:07 [ 3] [ 6] [010000] +09:41:07 [ 4] [ 12] [000020000000] +09:41:07 [ 7] [ 10] [0320093855] +09:41:07 [ 11] [ 6] [936286] +09:41:07 [ 12] [ 6] [093855] +09:41:07 [ 13] [ 4] [0320] +09:41:07 [ 15] [ 4] [0320] +09:41:07 [ 18] [ 4] [6011] +09:41:07 [ 19] [ 3] [418] +09:41:07 [ 32] [ 6] [668899] +09:41:07 [ 35] [ 32] [6213545001052244=491212015224900] +09:41:07 [ 37] [ 12] [507902336376] +09:41:07 [ 38] [ 6] [820715] +09:41:07 [ 39] [ 2] [00] +09:41:07 [ 41] [ 8] [03217002] +09:41:07 [ 49] [ 3] [418] +09:41:07 [ 54] [ 40] [0001418C0001730180700002418C000173018070] +09:41:07 ============================================================================ +09:41:07 Calculate Source COMM Id = 4 +09:41:07 ============================================================================ +09:41:07 + + +waiting on router queue for slot.... +09:41:14 ============================================================================ +09:41:14 Slot Id : <157> +09:41:14 Transaction Type : REQUEST +09:41:14 Received From : +09:41:14 ============================================================================ +09:41:14 FNo. Len. Field Value +09:41:14 ============================================================================ +09:41:14 [ 1] [ 4] [0800] +09:41:14 [ 7] [ 10] [0320024021] +09:41:14 [ 11] [ 6] [155678] +09:41:14 [ 70] [ 3] [301] +09:41:14 ============================================================================ +09:41:14 + + +waiting on router queue for slot.... +09:41:14 Sending to : +09:41:14 ============================================================================ +09:41:14 ============================================================================ +09:41:14 Slot Id : <157> +09:41:14 Transaction Type : RESPONSE +09:41:14 Received From : +09:41:14 ============================================================================ +09:41:14 FNo. Len. Field Value +09:41:14 ============================================================================ +09:41:14 [ 1] [ 4] [0810] +09:41:14 [ 7] [ 10] [0320024021] +09:41:14 [ 11] [ 6] [155678] +09:41:14 [ 39] [ 2] [00] +09:41:14 [ 70] [ 3] [301] +09:41:14 ============================================================================ +09:41:14 Calculate Source COMM Id = 2 +09:41:14 ============================================================================ +09:41:14 + + +waiting on router queue for slot.... +09:41:14 ============================================================================ +09:41:14 Slot Id : <164> +09:41:14 Transaction Type : REQUEST +09:41:14 Received From : +09:41:14 ============================================================================ +09:41:14 FNo. Len. Field Value +09:41:14 ============================================================================ +09:41:14 [ 1] [ 4] [0200] +09:41:14 [ 2] [ 16] [6213545000939409] +09:41:14 [ 3] [ 6] [010000] +09:41:14 [ 4] [ 12] [000010000000] +09:41:14 [ 7] [ 10] [0320024022] +09:41:14 [ 11] [ 6] [267703] +09:41:14 [ 12] [ 6] [094022] +09:41:14 [ 13] [ 4] [0320] +09:41:14 [ 14] [ 4] [4912] +09:41:14 [ 15] [ 4] [0320] +09:41:14 [ 18] [ 4] [6011] +09:41:14 [ 19] [ 3] [418] +09:41:14 [ 22] [ 3] [021] +09:41:14 [ 25] [ 2] [01] +09:41:14 [ 28] [ 9] [D00002000] +09:41:14 [ 32] [ 6] [180893] +09:41:14 [ 35] [ 32] [6213545000939409=491212013940581] +09:41:14 [ 37] [ 12] [507902267703] +09:41:14 [ 41] [ 8] [0366SKTT] +09:41:14 [ 42] [ 15] [999999 ] +09:41:14 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:41:14 [ 49] [ 3] [418] +09:41:14 [ 52] [ 16] [03E5AA78375679A6] +09:41:14 ============================================================================ +09:41:14 + + +waiting on router queue for slot.... +09:41:14 Sending to : +09:41:14 ============================================================================ +09:41:14 Sending to : +09:41:14 ============================================================================ +09:41:15 ============================================================================ +09:41:15 Slot Id : <164> +09:41:15 Transaction Type : REQUEST +09:41:15 Received From : +09:41:15 ============================================================================ +09:41:15 FNo. Len. Field Value +09:41:15 ============================================================================ +09:41:15 [ 1] [ 4] [0200] +09:41:15 [ 2] [ 16] [6213545000939409] +09:41:15 [ 3] [ 6] [010000] +09:41:15 [ 4] [ 12] [000010000000] +09:41:15 [ 7] [ 10] [0320024022] +09:41:15 [ 11] [ 6] [267703] +09:41:15 [ 12] [ 6] [094022] +09:41:15 [ 13] [ 4] [0320] +09:41:15 [ 14] [ 4] [4912] +09:41:15 [ 15] [ 4] [0320] +09:41:15 [ 18] [ 4] [6011] +09:41:15 [ 19] [ 3] [418] +09:41:15 [ 22] [ 3] [021] +09:41:15 [ 25] [ 2] [01] +09:41:15 [ 28] [ 9] [D00002000] +09:41:15 [ 32] [ 6] [180893] +09:41:15 [ 35] [ 32] [6213545000939409=491212013940581] +09:41:15 [ 37] [ 12] [507902267703] +09:41:15 [ 41] [ 8] [0366SKTT] +09:41:15 [ 42] [ 15] [999999 ] +09:41:15 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:41:15 [ 49] [ 3] [418] +09:41:15 [ 52] [ 16] [03E5AA78375679A6] +09:41:15 ============================================================================ +09:41:15 + + +waiting on router queue for slot.... +09:41:15 Sending to : +09:41:15 ============================================================================ +09:41:15 ============================================================================ +09:41:15 Slot Id : <164> +09:41:15 Transaction Type : REQUEST +09:41:15 Received From : +09:41:15 ============================================================================ +09:41:15 FNo. Len. Field Value +09:41:15 ============================================================================ +09:41:15 [ 1] [ 4] [0200] +09:41:15 [ 2] [ 16] [6213545000939409] +09:41:15 [ 3] [ 6] [010000] +09:41:15 [ 4] [ 12] [000010000000] +09:41:15 [ 7] [ 10] [0320024022] +09:41:15 [ 11] [ 6] [267703] +09:41:15 [ 12] [ 6] [094022] +09:41:15 [ 13] [ 4] [0320] +09:41:15 [ 14] [ 4] [4912] +09:41:15 [ 15] [ 4] [0320] +09:41:15 [ 18] [ 4] [6011] +09:41:15 [ 19] [ 3] [418] +09:41:15 [ 22] [ 3] [021] +09:41:15 [ 25] [ 2] [01] +09:41:15 [ 28] [ 9] [D00002000] +09:41:15 [ 32] [ 6] [180893] +09:41:15 [ 35] [ 32] [6213545000939409=491212013940581] +09:41:15 [ 37] [ 12] [507902267703] +09:41:15 [ 41] [ 8] [0366SKTT] +09:41:15 [ 42] [ 15] [999999 ] +09:41:15 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:41:15 [ 49] [ 3] [418] +09:41:15 [ 52] [ 16] [96939ECA28275C11] +09:41:15 ============================================================================ +09:41:15 + + +waiting on router queue for slot.... +09:41:15 Sending to : <0> +09:41:15 ============================================================================ +09:41:15 ============================================================================ +09:41:15 Slot Id : <164> +09:41:15 Transaction Type : RESPONSE +09:41:15 Received From : +09:41:15 ============================================================================ +09:41:15 FNo. Len. Field Value +09:41:15 ============================================================================ +09:41:15 [ 1] [ 4] [0210] +09:41:15 [ 2] [ 16] [6213545000939409] +09:41:15 [ 3] [ 6] [010000] +09:41:15 [ 4] [ 12] [000010000000] +09:41:15 [ 7] [ 10] [0320024022] +09:41:15 [ 11] [ 6] [267703] +09:41:15 [ 12] [ 6] [094022] +09:41:15 [ 13] [ 4] [0320] +09:41:15 [ 15] [ 4] [0320] +09:41:15 [ 18] [ 4] [6011] +09:41:15 [ 19] [ 3] [418] +09:41:15 [ 32] [ 6] [180893] +09:41:15 [ 35] [ 32] [6213545000939409=491212013940581] +09:41:15 [ 37] [ 12] [507902267703] +09:41:15 [ 38] [ 6] [408306] +09:41:15 [ 39] [ 2] [00] +09:41:15 [ 41] [ 8] [0366SKTT] +09:41:15 [ 49] [ 3] [418] +09:41:15 [ 54] [ 40] [0001418C0000169046660002418C000016904666] +09:41:15 ============================================================================ +09:41:15 Sending to : +09:41:15 ============================================================================ +09:41:15 + + +waiting on router queue for slot.... +09:41:16 ============================================================================ +09:41:16 Slot Id : <172> +09:41:16 Transaction Type : REQUEST +09:41:16 Received From : +09:41:16 ============================================================================ +09:41:16 FNo. Len. Field Value +09:41:16 ============================================================================ +09:41:16 [ 1] [ 4] [0200] +09:41:16 [ 2] [ 16] [6213544000156726] +09:41:16 [ 3] [ 6] [011000] +09:41:16 [ 4] [ 12] [000005000000] +09:41:16 [ 7] [ 10] [0320094904] +09:41:16 [ 11] [ 6] [242310] +09:41:16 [ 12] [ 6] [094904] +09:41:16 [ 13] [ 4] [0320] +09:41:16 [ 14] [ 4] [4912] +09:41:16 [ 15] [ 4] [0320] +09:41:16 [ 18] [ 4] [6011] +09:41:16 [ 22] [ 3] [900] +09:41:16 [ 25] [ 2] [02] +09:41:16 [ 28] [ 9] [D00002000] +09:41:16 [ 32] [ 6] [220699] +09:41:16 [ 35] [ 32] [6213544000156726=491212015672256] +09:41:16 [ 37] [ 12] [507900341566] +09:41:16 [ 41] [ 8] [01002000] +09:41:16 [ 42] [ 15] [APTRA ] +09:41:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:41:16 [ 49] [ 3] [418] +09:41:16 [ 52] [ 16] [DA8023DBD18AB43C] +09:41:16 ============================================================================ +09:41:16 + + +waiting on router queue for slot.... +09:41:16 Sending to : +09:41:16 ============================================================================ +09:41:16 Sending to : +09:41:16 ============================================================================ +09:41:16 ============================================================================ +09:41:16 Slot Id : <172> +09:41:16 Transaction Type : REQUEST +09:41:16 Received From : +09:41:16 ============================================================================ +09:41:16 FNo. Len. Field Value +09:41:16 ============================================================================ +09:41:16 [ 1] [ 4] [0200] +09:41:16 [ 2] [ 16] [6213544000156726] +09:41:16 [ 3] [ 6] [011000] +09:41:16 [ 4] [ 12] [000005000000] +09:41:16 [ 7] [ 10] [0320094904] +09:41:16 [ 11] [ 6] [242310] +09:41:16 [ 12] [ 6] [094904] +09:41:16 [ 13] [ 4] [0320] +09:41:16 [ 14] [ 4] [4912] +09:41:16 [ 15] [ 4] [0320] +09:41:16 [ 18] [ 4] [6011] +09:41:16 [ 22] [ 3] [900] +09:41:16 [ 25] [ 2] [02] +09:41:16 [ 28] [ 9] [D00002000] +09:41:16 [ 32] [ 6] [220699] +09:41:16 [ 35] [ 32] [6213544000156726=491212015672256] +09:41:16 [ 37] [ 12] [507900341566] +09:41:16 [ 41] [ 8] [01002000] +09:41:16 [ 42] [ 15] [APTRA ] +09:41:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:41:16 [ 49] [ 3] [418] +09:41:16 [ 52] [ 16] [DA8023DBD18AB43C] +09:41:16 ============================================================================ +09:41:16 + + +waiting on router queue for slot.... +09:41:16 Sending to : +09:41:16 ============================================================================ +09:41:16 ============================================================================ +09:41:16 Slot Id : <172> +09:41:16 Transaction Type : REQUEST +09:41:16 Received From : +09:41:16 ============================================================================ +09:41:16 FNo. Len. Field Value +09:41:16 ============================================================================ +09:41:16 [ 1] [ 4] [0200] +09:41:16 [ 2] [ 16] [6213544000156726] +09:41:16 [ 3] [ 6] [011000] +09:41:16 [ 4] [ 12] [000005000000] +09:41:16 [ 7] [ 10] [0320094904] +09:41:16 [ 11] [ 6] [242310] +09:41:16 [ 12] [ 6] [094904] +09:41:16 [ 13] [ 4] [0320] +09:41:16 [ 14] [ 4] [4912] +09:41:16 [ 15] [ 4] [0320] +09:41:16 [ 18] [ 4] [6011] +09:41:16 [ 22] [ 3] [900] +09:41:16 [ 25] [ 2] [02] +09:41:16 [ 28] [ 9] [D00002000] +09:41:16 [ 32] [ 6] [220699] +09:41:16 [ 35] [ 32] [6213544000156726=491212015672256] +09:41:16 [ 37] [ 12] [507900341566] +09:41:16 [ 41] [ 8] [01002000] +09:41:16 [ 42] [ 15] [APTRA ] +09:41:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:41:16 [ 49] [ 3] [418] +09:41:16 [ 52] [ 16] [803FCDFFF08DBF32] +09:41:16 ============================================================================ +09:41:16 + + +waiting on router queue for slot.... +09:41:16 Sending to : <0> +09:41:16 ============================================================================ +09:41:17 ============================================================================ +09:41:17 Slot Id : <172> +09:41:17 Transaction Type : RESPONSE +09:41:17 Received From : +09:41:17 ============================================================================ +09:41:17 FNo. Len. Field Value +09:41:17 ============================================================================ +09:41:17 [ 1] [ 4] [0210] +09:41:17 [ 2] [ 16] [6213544000156726] +09:41:17 [ 3] [ 6] [011000] +09:41:17 [ 4] [ 12] [000005000000] +09:41:17 [ 7] [ 10] [0320094904] +09:41:17 [ 11] [ 6] [242310] +09:41:17 [ 12] [ 6] [094904] +09:41:17 [ 13] [ 4] [0320] +09:41:17 [ 15] [ 4] [0320] +09:41:17 [ 18] [ 4] [6011] +09:41:17 [ 32] [ 6] [220699] +09:41:17 [ 35] [ 32] [6213544000156726=491212015672256] +09:41:17 [ 37] [ 12] [507900341566] +09:41:17 [ 38] [ 6] [966666] +09:41:17 [ 39] [ 2] [00] +09:41:17 [ 41] [ 8] [01002000] +09:41:17 [ 49] [ 3] [418] +09:41:17 [ 54] [ 40] [1001418C0001756787781002418C000175678778] +09:41:17 ============================================================================ +09:41:17 Sending to : +09:41:17 ============================================================================ +09:41:17 + + +waiting on router queue for slot.... +09:41:17 ============================================================================ +09:41:17 Slot Id : <164> +09:41:17 Transaction Type : RESPONSE +09:41:17 Received From : +09:41:17 ============================================================================ +09:41:17 FNo. Len. Field Value +09:41:17 ============================================================================ +09:41:17 [ 1] [ 4] [0210] +09:41:17 [ 2] [ 16] [6213545000939409] +09:41:17 [ 3] [ 6] [010000] +09:41:17 [ 4] [ 12] [000010000000] +09:41:17 [ 7] [ 10] [0320024022] +09:41:17 [ 11] [ 6] [267703] +09:41:17 [ 12] [ 6] [094022] +09:41:17 [ 13] [ 4] [0320] +09:41:17 [ 15] [ 4] [0320] +09:41:17 [ 18] [ 4] [6011] +09:41:17 [ 19] [ 3] [418] +09:41:17 [ 32] [ 6] [180893] +09:41:17 [ 35] [ 32] [6213545000939409=491212013940581] +09:41:17 [ 37] [ 12] [507902267703] +09:41:17 [ 38] [ 6] [408306] +09:41:17 [ 39] [ 2] [00] +09:41:17 [ 41] [ 8] [0366SKTT] +09:41:17 [ 49] [ 3] [418] +09:41:17 [ 54] [ 40] [0001418C0000169046660002418C000016904666] +09:41:17 ============================================================================ +09:41:17 Calculate Source COMM Id = 2 +09:41:17 ============================================================================ +09:41:17 + + +waiting on router queue for slot.... +09:41:19 ============================================================================ +09:41:19 Slot Id : <172> +09:41:19 Transaction Type : RESPONSE +09:41:19 Received From : +09:41:19 ============================================================================ +09:41:19 FNo. Len. Field Value +09:41:19 ============================================================================ +09:41:19 [ 1] [ 4] [0210] +09:41:19 [ 2] [ 16] [6213544000156726] +09:41:19 [ 3] [ 6] [011000] +09:41:19 [ 4] [ 12] [000005000000] +09:41:19 [ 7] [ 10] [0320094904] +09:41:19 [ 11] [ 6] [242310] +09:41:19 [ 12] [ 6] [094904] +09:41:19 [ 13] [ 4] [0320] +09:41:19 [ 15] [ 4] [0320] +09:41:19 [ 18] [ 4] [6011] +09:41:19 [ 32] [ 6] [220699] +09:41:19 [ 35] [ 32] [6213544000156726=491212015672256] +09:41:19 [ 37] [ 12] [507900341566] +09:41:19 [ 38] [ 6] [966666] +09:41:19 [ 39] [ 2] [00] +09:41:19 [ 41] [ 8] [01002000] +09:41:19 [ 49] [ 3] [418] +09:41:19 [ 54] [ 40] [1001418C0001756787781002418C000175678778] +09:41:19 ============================================================================ +09:41:19 Calculate Source COMM Id = 1 +09:41:19 ============================================================================ +09:41:19 + + +waiting on router queue for slot.... +09:41:21 ============================================================================ +09:41:21 Slot Id : <148> +09:41:21 Transaction Type : REQUEST +09:41:21 Received From : +09:41:21 ============================================================================ +09:41:21 FNo. Len. Field Value +09:41:21 ============================================================================ +09:41:21 [ 1] [ 4] [0800] +09:41:21 [ 2] [ 5] [02531] +09:41:21 [ 3] [ 6] [579098] +09:41:21 [ 7] [ 10] [0320024121] +09:41:21 [ 11] [ 6] [806974] +09:41:21 [ 15] [ 10] [0320024121] +09:41:21 [ 37] [ 11] [57909806974] +09:41:21 [ 70] [ 3] [001] +09:41:21 ============================================================================ +09:41:21 + + +waiting on router queue for slot.... +09:41:21 ============================================================================ +09:41:21 Slot Id : <148> +09:41:21 Transaction Type : RESPONSE +09:41:21 Received From : +09:41:21 ============================================================================ +09:41:21 FNo. Len. Field Value +09:41:21 ============================================================================ +09:41:21 [ 1] [ 4] [0810] +09:41:21 [ 7] [ 10] [0320024121] +09:41:21 [ 11] [ 6] [806974] +09:41:21 [ 15] [ 4] [0320] +09:41:21 [ 37] [ 12] [57909806974] +09:41:21 [ 39] [ 2] [00] +09:41:21 [ 70] [ 3] [001] +09:41:21 ============================================================================ +09:41:21 Sending to : +09:41:21 ============================================================================ +09:41:21 + + +waiting on router queue for slot.... +09:41:21 ============================================================================ +09:41:21 Slot Id : <186> +09:41:21 Transaction Type : REQUEST +09:41:21 Received From : +09:41:21 ============================================================================ +09:41:21 FNo. Len. Field Value +09:41:21 ============================================================================ +09:41:21 [ 1] [ 4] [0800] +09:41:21 [ 7] [ 10] [0320023912] +09:41:21 [ 11] [ 6] [063791] +09:41:21 [ 37] [ 12] [57909063791] +09:41:21 [ 70] [ 3] [301] +09:41:21 ============================================================================ +09:41:21 + + +waiting on router queue for slot.... +09:41:21 Sending to : +09:41:21 ============================================================================ +09:41:21 ============================================================================ +09:41:21 Slot Id : <186> +09:41:21 Transaction Type : RESPONSE +09:41:21 Received From : +09:41:21 ============================================================================ +09:41:21 FNo. Len. Field Value +09:41:21 ============================================================================ +09:41:21 [ 1] [ 4] [0810] +09:41:21 [ 7] [ 10] [0320023912] +09:41:21 [ 11] [ 6] [063791] +09:41:21 [ 37] [ 12] [579090637910] +09:41:21 [ 39] [ 2] [00] +09:41:21 [ 70] [ 3] [810] +09:41:21 ============================================================================ +09:41:21 Calculate Source COMM Id = 4 +09:41:21 ============================================================================ +09:41:21 + + +waiting on router queue for slot.... +09:41:33 ============================================================================ +09:41:33 Slot Id : <126> +09:41:33 Transaction Type : REQUEST +09:41:33 Received From : +09:41:33 ============================================================================ +09:41:33 FNo. Len. Field Value +09:41:33 ============================================================================ +09:41:33 [ 1] [ 4] [0800] +09:41:33 [ 7] [ 10] [0320024041] +09:41:33 [ 11] [ 6] [155679] +09:41:33 [ 70] [ 3] [301] +09:41:33 ============================================================================ +09:41:33 + + +waiting on router queue for slot.... +09:41:33 Sending to : +09:41:33 ============================================================================ +09:41:33 ============================================================================ +09:41:33 Slot Id : <126> +09:41:33 Transaction Type : RESPONSE +09:41:33 Received From : +09:41:33 ============================================================================ +09:41:33 FNo. Len. Field Value +09:41:33 ============================================================================ +09:41:33 [ 1] [ 4] [0810] +09:41:33 [ 7] [ 10] [0320024041] +09:41:33 [ 11] [ 6] [155679] +09:41:33 [ 39] [ 2] [00] +09:41:33 [ 70] [ 3] [301] +09:41:33 ============================================================================ +09:41:33 Calculate Source COMM Id = 2 +09:41:33 ============================================================================ +09:41:33 + + +waiting on router queue for slot.... +09:41:44 ============================================================================ +09:41:44 Slot Id : <171> +09:41:44 Transaction Type : REQUEST +09:41:44 Received From : +09:41:44 ============================================================================ +09:41:44 FNo. Len. Field Value +09:41:44 ============================================================================ +09:41:44 [ 1] [ 4] [0800] +09:41:44 [ 7] [ 10] [0320024052] +09:41:44 [ 11] [ 6] [155680] +09:41:44 [ 70] [ 3] [301] +09:41:44 ============================================================================ +09:41:44 + + +waiting on router queue for slot.... +09:41:44 Sending to : +09:41:44 ============================================================================ +09:41:44 ============================================================================ +09:41:44 Slot Id : <171> +09:41:44 Transaction Type : RESPONSE +09:41:44 Received From : +09:41:44 ============================================================================ +09:41:44 FNo. Len. Field Value +09:41:44 ============================================================================ +09:41:44 [ 1] [ 4] [0810] +09:41:44 [ 7] [ 10] [0320024052] +09:41:44 [ 11] [ 6] [155680] +09:41:44 [ 39] [ 2] [00] +09:41:44 [ 70] [ 3] [301] +09:41:44 ============================================================================ +09:41:44 Calculate Source COMM Id = 2 +09:41:44 ============================================================================ +09:41:44 + + +waiting on router queue for slot.... +09:41:54 ============================================================================ +09:41:54 Slot Id : <182> +09:41:54 Transaction Type : REQUEST +09:41:54 Received From : +09:41:54 ============================================================================ +09:41:54 FNo. Len. Field Value +09:41:54 ============================================================================ +09:41:54 [ 1] [ 4] [0800] +09:41:54 [ 7] [ 10] [0320024102] +09:41:54 [ 11] [ 6] [155681] +09:41:54 [ 70] [ 3] [301] +09:41:54 ============================================================================ +09:41:54 + + +waiting on router queue for slot.... +09:41:54 Sending to : +09:41:54 ============================================================================ +09:41:54 ============================================================================ +09:41:54 Slot Id : <182> +09:41:54 Transaction Type : RESPONSE +09:41:54 Received From : +09:41:54 ============================================================================ +09:41:54 FNo. Len. Field Value +09:41:54 ============================================================================ +09:41:54 [ 1] [ 4] [0810] +09:41:54 [ 7] [ 10] [0320024102] +09:41:54 [ 11] [ 6] [155681] +09:41:54 [ 39] [ 2] [00] +09:41:54 [ 70] [ 3] [301] +09:41:54 ============================================================================ +09:41:54 Calculate Source COMM Id = 2 +09:41:54 ============================================================================ +09:41:54 + + +waiting on router queue for slot.... +09:41:54 ============================================================================ +09:41:54 Slot Id : <119> +09:41:54 Transaction Type : REQUEST +09:41:54 Received From : +09:41:54 ============================================================================ +09:41:54 FNo. Len. Field Value +09:41:54 ============================================================================ +09:41:54 [ 1] [ 4] [0800] +09:41:54 [ 7] [ 10] [0320165342] +09:41:54 [ 11] [ 6] [095342] +09:41:54 [ 37] [ 12] [57909095342] +09:41:54 [ 70] [ 3] [301] +09:41:54 ============================================================================ +09:41:54 + + +waiting on router queue for slot.... +09:41:54 Sending to : +09:41:54 ============================================================================ +09:41:54 ============================================================================ +09:41:54 Slot Id : <119> +09:41:54 Transaction Type : RESPONSE +09:41:54 Received From : +09:41:54 ============================================================================ +09:41:54 FNo. Len. Field Value +09:41:54 ============================================================================ +09:41:54 [ 1] [ 4] [0810] +09:41:54 [ 7] [ 10] [0320165342] +09:41:54 [ 11] [ 6] [095342] +09:41:54 [ 37] [ 12] [579090953420] +09:41:54 [ 39] [ 2] [00] +09:41:54 [ 70] [ 3] [810] +09:41:54 ============================================================================ +09:41:54 Calculate Source COMM Id = 6 +09:41:54 ============================================================================ +09:41:54 + + +waiting on router queue for slot.... +09:42:07 ============================================================================ +09:42:07 Slot Id : <176> +09:42:07 Transaction Type : REQUEST +09:42:07 Received From : +09:42:07 ============================================================================ +09:42:07 FNo. Len. Field Value +09:42:07 ============================================================================ +09:42:07 [ 1] [ 4] [0200] +09:42:07 [ 2] [ 16] [6688990040062034] +09:42:07 [ 3] [ 6] [011000] +09:42:07 [ 4] [ 12] [000010000000] +09:42:07 [ 7] [ 10] [0320094203] +09:42:07 [ 11] [ 6] [702362] +09:42:07 [ 12] [ 6] [094203] +09:42:07 [ 13] [ 4] [0320] +09:42:07 [ 15] [ 4] [0320] +09:42:07 [ 18] [ 4] [6011] +09:42:07 [ 22] [ 3] [900] +09:42:07 [ 25] [ 2] [02] +09:42:07 [ 28] [ 9] [D00002000] +09:42:07 [ 32] [ 6] [621354] +09:42:07 [ 35] [ 37] [6688990040062034=98011261913817800000] +09:42:07 [ 37] [ 12] [507903359705] +09:42:07 [ 41] [ 8] [13001500] +09:42:07 [ 42] [ 15] [NATIVE ] +09:42:07 [ 43] [ 40] [Xiengkhoung ATM03 Paek LAO] +09:42:07 [ 49] [ 3] [418] +09:42:07 [ 52] [ 16] [7AB2CEFCE57E78F1] +09:42:07 ============================================================================ +09:42:07 + + +waiting on router queue for slot.... +09:42:07 Sending to : +09:42:07 ============================================================================ +09:42:07 Sending to : +09:42:07 ============================================================================ +09:42:08 ============================================================================ +09:42:08 Slot Id : <176> +09:42:08 Transaction Type : REQUEST +09:42:08 Received From : +09:42:08 ============================================================================ +09:42:08 FNo. Len. Field Value +09:42:08 ============================================================================ +09:42:08 [ 1] [ 4] [0200] +09:42:08 [ 2] [ 16] [6688990040062034] +09:42:08 [ 3] [ 6] [011000] +09:42:08 [ 4] [ 12] [000010000000] +09:42:08 [ 7] [ 10] [0320094203] +09:42:08 [ 11] [ 6] [702362] +09:42:08 [ 12] [ 6] [094203] +09:42:08 [ 13] [ 4] [0320] +09:42:08 [ 15] [ 4] [0320] +09:42:08 [ 18] [ 4] [6011] +09:42:08 [ 22] [ 3] [900] +09:42:08 [ 25] [ 2] [02] +09:42:08 [ 28] [ 9] [D00002000] +09:42:08 [ 32] [ 6] [621354] +09:42:08 [ 35] [ 37] [6688990040062034=98011261913817800000] +09:42:08 [ 37] [ 12] [507903359705] +09:42:08 [ 41] [ 8] [13001500] +09:42:08 [ 42] [ 15] [NATIVE ] +09:42:08 [ 43] [ 40] [Xiengkhoung ATM03 Paek LAO] +09:42:08 [ 49] [ 3] [418] +09:42:08 [ 52] [ 16] [7AB2CEFCE57E78F1] +09:42:08 ============================================================================ +09:42:08 + + +waiting on router queue for slot.... +09:42:08 Sending to : +09:42:08 ============================================================================ +09:42:08 ============================================================================ +09:42:08 Slot Id : <176> +09:42:08 Transaction Type : REQUEST +09:42:08 Received From : +09:42:08 ============================================================================ +09:42:08 FNo. Len. Field Value +09:42:08 ============================================================================ +09:42:08 [ 1] [ 4] [0200] +09:42:08 [ 2] [ 16] [6688990040062034] +09:42:08 [ 3] [ 6] [011000] +09:42:08 [ 4] [ 12] [000010000000] +09:42:08 [ 7] [ 10] [0320094203] +09:42:08 [ 11] [ 6] [702362] +09:42:08 [ 12] [ 6] [094203] +09:42:08 [ 13] [ 4] [0320] +09:42:08 [ 15] [ 4] [0320] +09:42:08 [ 18] [ 4] [6011] +09:42:08 [ 22] [ 3] [900] +09:42:08 [ 25] [ 2] [02] +09:42:08 [ 28] [ 9] [D00002000] +09:42:08 [ 32] [ 6] [621354] +09:42:08 [ 35] [ 37] [6688990040062034=98011261913817800000] +09:42:08 [ 37] [ 12] [507903359705] +09:42:08 [ 41] [ 8] [13001500] +09:42:08 [ 42] [ 15] [NATIVE ] +09:42:08 [ 43] [ 40] [Xiengkhoung ATM03 Paek LAO] +09:42:08 [ 49] [ 3] [418] +09:42:08 [ 52] [ 16] [06404F8B1B3A0F0E] +09:42:08 ============================================================================ +09:42:08 + + +waiting on router queue for slot.... +09:42:08 Sending to : <4> +09:42:08 ============================================================================ +09:42:09 ============================================================================ +09:42:09 Slot Id : <176> +09:42:09 Transaction Type : RESPONSE +09:42:09 Received From : +09:42:09 ============================================================================ +09:42:09 FNo. Len. Field Value +09:42:09 ============================================================================ +09:42:09 [ 1] [ 4] [0210] +09:42:09 [ 2] [ 16] [6688990040062034] +09:42:09 [ 3] [ 6] [011000] +09:42:09 [ 4] [ 12] [000010000000] +09:42:09 [ 11] [ 6] [702362] +09:42:09 [ 12] [ 6] [094203] +09:42:09 [ 15] [ 4] [0320] +09:42:09 [ 18] [ 4] [6011] +09:42:09 [ 32] [ 6] [621354] +09:42:09 [ 35] [ 37] [6688990040062034=98011261913817800000] +09:42:09 [ 37] [ 12] [507903359705] +09:42:09 [ 38] [ 6] [436419] +09:42:09 [ 39] [ 2] [00] +09:42:09 [ 41] [ 8] [13001500] +09:42:09 [ 49] [ 3] [418] +09:42:09 [ 54] [ 20] [1002418C000039998092] +09:42:09 ============================================================================ +09:42:09 Sending to : +09:42:09 ============================================================================ +09:42:09 + + +waiting on router queue for slot.... +09:42:10 ============================================================================ +09:42:10 Slot Id : <176> +09:42:10 Transaction Type : RESPONSE +09:42:10 Received From : +09:42:10 ============================================================================ +09:42:10 FNo. Len. Field Value +09:42:10 ============================================================================ +09:42:10 [ 1] [ 4] [0210] +09:42:10 [ 2] [ 16] [6688990040062034] +09:42:10 [ 3] [ 6] [011000] +09:42:10 [ 4] [ 12] [000010000000] +09:42:10 [ 11] [ 6] [702362] +09:42:10 [ 12] [ 6] [094203] +09:42:10 [ 15] [ 4] [0320] +09:42:10 [ 18] [ 4] [6011] +09:42:10 [ 32] [ 6] [621354] +09:42:10 [ 35] [ 37] [6688990040062034=98011261913817800000] +09:42:10 [ 37] [ 12] [507903359705] +09:42:10 [ 38] [ 6] [436419] +09:42:10 [ 39] [ 2] [00] +09:42:10 [ 41] [ 8] [13001500] +09:42:10 [ 49] [ 3] [418] +09:42:10 [ 54] [ 20] [1002418C000039998092] +09:42:10 ============================================================================ +09:42:10 Calculate Source COMM Id = 0 +09:42:10 ============================================================================ +09:42:10 + + +waiting on router queue for slot.... +09:42:10 ============================================================================ +09:42:10 Slot Id : <139> +09:42:10 Transaction Type : REQUEST +09:42:10 Received From : +09:42:10 ============================================================================ +09:42:10 FNo. Len. Field Value +09:42:10 ============================================================================ +09:42:10 [ 1] [ 4] [0800] +09:42:10 [ 7] [ 10] [0320024118] +09:42:10 [ 11] [ 6] [155682] +09:42:10 [ 70] [ 3] [301] +09:42:10 ============================================================================ +09:42:10 + + +waiting on router queue for slot.... +09:42:10 Sending to : +09:42:10 ============================================================================ +09:42:10 ============================================================================ +09:42:10 Slot Id : <139> +09:42:10 Transaction Type : RESPONSE +09:42:10 Received From : +09:42:10 ============================================================================ +09:42:10 FNo. Len. Field Value +09:42:10 ============================================================================ +09:42:10 [ 1] [ 4] [0810] +09:42:10 [ 7] [ 10] [0320024118] +09:42:10 [ 11] [ 6] [155682] +09:42:10 [ 39] [ 2] [00] +09:42:10 [ 70] [ 3] [301] +09:42:10 ============================================================================ +09:42:10 Calculate Source COMM Id = 2 +09:42:10 ============================================================================ +09:42:10 + + +waiting on router queue for slot.... +09:42:11 ============================================================================ +09:42:11 Slot Id : <202> +09:42:11 Transaction Type : REQUEST +09:42:11 Received From : +09:42:11 ============================================================================ +09:42:11 FNo. Len. Field Value +09:42:11 ============================================================================ +09:42:11 [ 1] [ 4] [0200] +09:42:11 [ 2] [ 16] [6213545000939409] +09:42:11 [ 3] [ 6] [010000] +09:42:11 [ 4] [ 12] [000010000000] +09:42:11 [ 7] [ 10] [0320024119] +09:42:11 [ 11] [ 6] [267712] +09:42:11 [ 12] [ 6] [094119] +09:42:11 [ 13] [ 4] [0320] +09:42:11 [ 14] [ 4] [4912] +09:42:11 [ 15] [ 4] [0320] +09:42:11 [ 18] [ 4] [6011] +09:42:11 [ 19] [ 3] [418] +09:42:11 [ 22] [ 3] [021] +09:42:11 [ 25] [ 2] [01] +09:42:11 [ 28] [ 9] [D00002000] +09:42:11 [ 32] [ 6] [180893] +09:42:11 [ 35] [ 32] [6213545000939409=491212013940581] +09:42:11 [ 37] [ 12] [507902267712] +09:42:11 [ 41] [ 8] [0366SKTT] +09:42:11 [ 42] [ 15] [999999 ] +09:42:11 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:42:11 [ 49] [ 3] [418] +09:42:11 [ 52] [ 16] [03E5AA78375679A6] +09:42:11 ============================================================================ +09:42:11 + + +waiting on router queue for slot.... +09:42:11 Sending to : +09:42:11 ============================================================================ +09:42:11 Sending to : +09:42:11 ============================================================================ +09:42:11 ============================================================================ +09:42:11 Slot Id : <202> +09:42:11 Transaction Type : REQUEST +09:42:11 Received From : +09:42:11 ============================================================================ +09:42:11 FNo. Len. Field Value +09:42:11 ============================================================================ +09:42:11 [ 1] [ 4] [0200] +09:42:11 [ 2] [ 16] [6213545000939409] +09:42:11 [ 3] [ 6] [010000] +09:42:11 [ 4] [ 12] [000010000000] +09:42:11 [ 7] [ 10] [0320024119] +09:42:11 [ 11] [ 6] [267712] +09:42:11 [ 12] [ 6] [094119] +09:42:11 [ 13] [ 4] [0320] +09:42:11 [ 14] [ 4] [4912] +09:42:11 [ 15] [ 4] [0320] +09:42:11 [ 18] [ 4] [6011] +09:42:11 [ 19] [ 3] [418] +09:42:11 [ 22] [ 3] [021] +09:42:11 [ 25] [ 2] [01] +09:42:11 [ 28] [ 9] [D00002000] +09:42:11 [ 32] [ 6] [180893] +09:42:11 [ 35] [ 32] [6213545000939409=491212013940581] +09:42:11 [ 37] [ 12] [507902267712] +09:42:11 [ 41] [ 8] [0366SKTT] +09:42:11 [ 42] [ 15] [999999 ] +09:42:11 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:42:11 [ 49] [ 3] [418] +09:42:11 [ 52] [ 16] [03E5AA78375679A6] +09:42:11 ============================================================================ +09:42:11 + + +waiting on router queue for slot.... +09:42:11 Sending to : +09:42:11 ============================================================================ +09:42:11 ============================================================================ +09:42:11 Slot Id : <202> +09:42:11 Transaction Type : REQUEST +09:42:11 Received From : +09:42:11 ============================================================================ +09:42:11 FNo. Len. Field Value +09:42:11 ============================================================================ +09:42:11 [ 1] [ 4] [0200] +09:42:11 [ 2] [ 16] [6213545000939409] +09:42:11 [ 3] [ 6] [010000] +09:42:11 [ 4] [ 12] [000010000000] +09:42:11 [ 7] [ 10] [0320024119] +09:42:11 [ 11] [ 6] [267712] +09:42:11 [ 12] [ 6] [094119] +09:42:11 [ 13] [ 4] [0320] +09:42:11 [ 14] [ 4] [4912] +09:42:11 [ 15] [ 4] [0320] +09:42:11 [ 18] [ 4] [6011] +09:42:11 [ 19] [ 3] [418] +09:42:11 [ 22] [ 3] [021] +09:42:11 [ 25] [ 2] [01] +09:42:11 [ 28] [ 9] [D00002000] +09:42:11 [ 32] [ 6] [180893] +09:42:11 [ 35] [ 32] [6213545000939409=491212013940581] +09:42:11 [ 37] [ 12] [507902267712] +09:42:11 [ 41] [ 8] [0366SKTT] +09:42:11 [ 42] [ 15] [999999 ] +09:42:11 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:42:11 [ 49] [ 3] [418] +09:42:11 [ 52] [ 16] [96939ECA28275C11] +09:42:11 ============================================================================ +09:42:11 + + +waiting on router queue for slot.... +09:42:11 Sending to : <0> +09:42:11 ============================================================================ +09:42:12 ============================================================================ +09:42:12 Slot Id : <202> +09:42:12 Transaction Type : RESPONSE +09:42:12 Received From : +09:42:12 ============================================================================ +09:42:12 FNo. Len. Field Value +09:42:12 ============================================================================ +09:42:12 [ 1] [ 4] [0210] +09:42:12 [ 2] [ 16] [6213545000939409] +09:42:12 [ 3] [ 6] [010000] +09:42:12 [ 4] [ 12] [000010000000] +09:42:12 [ 7] [ 10] [0320024119] +09:42:12 [ 11] [ 6] [267712] +09:42:12 [ 12] [ 6] [094119] +09:42:12 [ 13] [ 4] [0320] +09:42:12 [ 15] [ 4] [0320] +09:42:12 [ 18] [ 4] [6011] +09:42:12 [ 19] [ 3] [418] +09:42:12 [ 32] [ 6] [180893] +09:42:12 [ 35] [ 32] [6213545000939409=491212013940581] +09:42:12 [ 37] [ 12] [507902267712] +09:42:12 [ 38] [ 6] [035222] +09:42:12 [ 39] [ 2] [00] +09:42:12 [ 41] [ 8] [0366SKTT] +09:42:12 [ 49] [ 3] [418] +09:42:12 [ 54] [ 40] [0001418C0000067046660002418C000006704666] +09:42:12 ============================================================================ +09:42:12 Sending to : +09:42:12 ============================================================================ +09:42:12 + + +waiting on router queue for slot.... +09:42:14 ============================================================================ +09:42:14 Slot Id : <202> +09:42:14 Transaction Type : RESPONSE +09:42:14 Received From : +09:42:14 ============================================================================ +09:42:14 FNo. Len. Field Value +09:42:14 ============================================================================ +09:42:14 [ 1] [ 4] [0210] +09:42:14 [ 2] [ 16] [6213545000939409] +09:42:14 [ 3] [ 6] [010000] +09:42:14 [ 4] [ 12] [000010000000] +09:42:14 [ 7] [ 10] [0320024119] +09:42:14 [ 11] [ 6] [267712] +09:42:14 [ 12] [ 6] [094119] +09:42:14 [ 13] [ 4] [0320] +09:42:14 [ 15] [ 4] [0320] +09:42:14 [ 18] [ 4] [6011] +09:42:14 [ 19] [ 3] [418] +09:42:14 [ 32] [ 6] [180893] +09:42:14 [ 35] [ 32] [6213545000939409=491212013940581] +09:42:14 [ 37] [ 12] [507902267712] +09:42:14 [ 38] [ 6] [035222] +09:42:14 [ 39] [ 2] [00] +09:42:14 [ 41] [ 8] [0366SKTT] +09:42:14 [ 49] [ 3] [418] +09:42:14 [ 54] [ 40] [0001418C0000067046660002418C000006704666] +09:42:14 ============================================================================ +09:42:14 Calculate Source COMM Id = 2 +09:42:14 ============================================================================ +09:42:14 + + +waiting on router queue for slot.... +09:42:22 ============================================================================ +09:42:22 Slot Id : <187> +09:42:22 Transaction Type : REQUEST +09:42:22 Received From : +09:42:22 ============================================================================ +09:42:22 FNo. Len. Field Value +09:42:22 ============================================================================ +09:42:22 [ 1] [ 4] [0200] +09:42:22 [ 2] [ 16] [6213545001090160] +09:42:22 [ 3] [ 6] [010000] +09:42:22 [ 4] [ 12] [000100000000] +09:42:22 [ 7] [ 10] [0320024129] +09:42:22 [ 11] [ 6] [267715] +09:42:22 [ 12] [ 6] [094129] +09:42:22 [ 13] [ 4] [0320] +09:42:22 [ 14] [ 4] [4912] +09:42:22 [ 15] [ 4] [0320] +09:42:22 [ 18] [ 4] [6011] +09:42:22 [ 19] [ 3] [418] +09:42:22 [ 22] [ 3] [021] +09:42:22 [ 25] [ 2] [01] +09:42:22 [ 28] [ 9] [D00002000] +09:42:22 [ 32] [ 6] [180893] +09:42:22 [ 35] [ 32] [6213545001090160=491212019016109] +09:42:22 [ 37] [ 12] [507902267715] +09:42:22 [ 41] [ 8] [0112CPBR] +09:42:22 [ 42] [ 15] [999999 ] +09:42:22 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:42:22 [ 49] [ 3] [418] +09:42:22 [ 52] [ 16] [3D7FCC1DB33D43C1] +09:42:22 ============================================================================ +09:42:22 + + +waiting on router queue for slot.... +09:42:22 Sending to : +09:42:22 ============================================================================ +09:42:22 Sending to : +09:42:22 ============================================================================ +09:42:22 ============================================================================ +09:42:22 Slot Id : <187> +09:42:22 Transaction Type : REQUEST +09:42:22 Received From : +09:42:22 ============================================================================ +09:42:22 FNo. Len. Field Value +09:42:22 ============================================================================ +09:42:22 [ 1] [ 4] [0200] +09:42:22 [ 2] [ 16] [6213545001090160] +09:42:22 [ 3] [ 6] [010000] +09:42:22 [ 4] [ 12] [000100000000] +09:42:22 [ 7] [ 10] [0320024129] +09:42:22 [ 11] [ 6] [267715] +09:42:22 [ 12] [ 6] [094129] +09:42:22 [ 13] [ 4] [0320] +09:42:22 [ 14] [ 4] [4912] +09:42:22 [ 15] [ 4] [0320] +09:42:22 [ 18] [ 4] [6011] +09:42:22 [ 19] [ 3] [418] +09:42:22 [ 22] [ 3] [021] +09:42:22 [ 25] [ 2] [01] +09:42:22 [ 28] [ 9] [D00002000] +09:42:22 [ 32] [ 6] [180893] +09:42:22 [ 35] [ 32] [6213545001090160=491212019016109] +09:42:22 [ 37] [ 12] [507902267715] +09:42:22 [ 41] [ 8] [0112CPBR] +09:42:22 [ 42] [ 15] [999999 ] +09:42:22 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:42:22 [ 49] [ 3] [418] +09:42:22 [ 52] [ 16] [3D7FCC1DB33D43C1] +09:42:22 ============================================================================ +09:42:22 + + +waiting on router queue for slot.... +09:42:22 Sending to : +09:42:22 ============================================================================ +09:42:22 ============================================================================ +09:42:22 Slot Id : <187> +09:42:22 Transaction Type : REQUEST +09:42:22 Received From : +09:42:22 ============================================================================ +09:42:22 FNo. Len. Field Value +09:42:22 ============================================================================ +09:42:22 [ 1] [ 4] [0200] +09:42:22 [ 2] [ 16] [6213545001090160] +09:42:22 [ 3] [ 6] [010000] +09:42:22 [ 4] [ 12] [000100000000] +09:42:22 [ 7] [ 10] [0320024129] +09:42:22 [ 11] [ 6] [267715] +09:42:22 [ 12] [ 6] [094129] +09:42:22 [ 13] [ 4] [0320] +09:42:22 [ 14] [ 4] [4912] +09:42:22 [ 15] [ 4] [0320] +09:42:22 [ 18] [ 4] [6011] +09:42:22 [ 19] [ 3] [418] +09:42:22 [ 22] [ 3] [021] +09:42:22 [ 25] [ 2] [01] +09:42:22 [ 28] [ 9] [D00002000] +09:42:22 [ 32] [ 6] [180893] +09:42:22 [ 35] [ 32] [6213545001090160=491212019016109] +09:42:22 [ 37] [ 12] [507902267715] +09:42:22 [ 41] [ 8] [0112CPBR] +09:42:22 [ 42] [ 15] [999999 ] +09:42:22 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:42:22 [ 49] [ 3] [418] +09:42:22 [ 52] [ 16] [E146EB39AFB01B54] +09:42:22 ============================================================================ +09:42:22 + + +waiting on router queue for slot.... +09:42:22 Sending to : <0> +09:42:22 ============================================================================ +09:42:23 ============================================================================ +09:42:23 Slot Id : <160> +09:42:23 Transaction Type : REQUEST +09:42:23 Received From : +09:42:23 ============================================================================ +09:42:23 FNo. Len. Field Value +09:42:23 ============================================================================ +09:42:23 [ 1] [ 4] [0800] +09:42:23 [ 2] [ 5] [02531] +09:42:23 [ 3] [ 6] [579098] +09:42:23 [ 7] [ 10] [0320024223] +09:42:23 [ 11] [ 6] [806975] +09:42:23 [ 15] [ 10] [0320024223] +09:42:23 [ 37] [ 11] [57909806975] +09:42:23 [ 70] [ 3] [001] +09:42:23 ============================================================================ +09:42:23 + + +waiting on router queue for slot.... +09:42:23 ============================================================================ +09:42:23 Slot Id : <160> +09:42:23 Transaction Type : RESPONSE +09:42:23 Received From : +09:42:23 ============================================================================ +09:42:23 FNo. Len. Field Value +09:42:23 ============================================================================ +09:42:23 [ 1] [ 4] [0810] +09:42:23 [ 7] [ 10] [0320024223] +09:42:23 [ 11] [ 6] [806975] +09:42:23 [ 15] [ 4] [0320] +09:42:23 [ 37] [ 12] [57909806975] +09:42:23 [ 39] [ 2] [00] +09:42:23 [ 70] [ 3] [001] +09:42:23 ============================================================================ +09:42:23 Sending to : +09:42:23 ============================================================================ +09:42:23 + + +waiting on router queue for slot.... +09:42:23 ============================================================================ +09:42:23 Slot Id : <187> +09:42:23 Transaction Type : RESPONSE +09:42:23 Received From : +09:42:23 ============================================================================ +09:42:23 FNo. Len. Field Value +09:42:23 ============================================================================ +09:42:23 [ 1] [ 4] [0210] +09:42:23 [ 2] [ 16] [6213545001090160] +09:42:23 [ 3] [ 6] [010000] +09:42:23 [ 4] [ 12] [000100000000] +09:42:23 [ 7] [ 10] [0320024129] +09:42:23 [ 11] [ 6] [267715] +09:42:23 [ 12] [ 6] [094129] +09:42:23 [ 13] [ 4] [0320] +09:42:23 [ 15] [ 4] [0320] +09:42:23 [ 18] [ 4] [6011] +09:42:23 [ 19] [ 3] [418] +09:42:23 [ 32] [ 6] [180893] +09:42:23 [ 35] [ 32] [6213545001090160=491212019016109] +09:42:23 [ 37] [ 12] [507902267715] +09:42:23 [ 38] [ 6] [791971] +09:42:23 [ 39] [ 2] [00] +09:42:23 [ 41] [ 8] [0112CPBR] +09:42:23 [ 49] [ 3] [418] +09:42:23 [ 54] [ 40] [0001418C0000797031520002418C000079703152] +09:42:23 ============================================================================ +09:42:23 Sending to : +09:42:23 ============================================================================ +09:42:23 + + +waiting on router queue for slot.... +09:42:24 ============================================================================ +09:42:24 Slot Id : <187> +09:42:24 Transaction Type : RESPONSE +09:42:24 Received From : +09:42:24 ============================================================================ +09:42:24 FNo. Len. Field Value +09:42:24 ============================================================================ +09:42:24 [ 1] [ 4] [0210] +09:42:24 [ 2] [ 16] [6213545001090160] +09:42:24 [ 3] [ 6] [010000] +09:42:24 [ 4] [ 12] [000100000000] +09:42:24 [ 7] [ 10] [0320024129] +09:42:24 [ 11] [ 6] [267715] +09:42:24 [ 12] [ 6] [094129] +09:42:24 [ 13] [ 4] [0320] +09:42:24 [ 15] [ 4] [0320] +09:42:24 [ 18] [ 4] [6011] +09:42:24 [ 19] [ 3] [418] +09:42:24 [ 32] [ 6] [180893] +09:42:24 [ 35] [ 32] [6213545001090160=491212019016109] +09:42:24 [ 37] [ 12] [507902267715] +09:42:24 [ 38] [ 6] [791971] +09:42:24 [ 39] [ 2] [00] +09:42:24 [ 41] [ 8] [0112CPBR] +09:42:24 [ 49] [ 3] [418] +09:42:24 [ 54] [ 40] [0001418C0000797031520002418C000079703152] +09:42:24 ============================================================================ +09:42:24 Calculate Source COMM Id = 2 +09:42:24 ============================================================================ +09:42:24 + + +waiting on router queue for slot.... +09:42:26 ============================================================================ +09:42:26 Slot Id : <156> +09:42:26 Transaction Type : REQUEST +09:42:26 Received From : +09:42:26 ============================================================================ +09:42:26 FNo. Len. Field Value +09:42:26 ============================================================================ +09:42:26 [ 1] [ 4] [0200] +09:42:26 [ 2] [ 16] [6213545001100761] +09:42:26 [ 3] [ 6] [011000] +09:42:26 [ 4] [ 12] [000030000000] +09:42:26 [ 7] [ 10] [0320094248] +09:42:26 [ 11] [ 6] [203152] +09:42:26 [ 12] [ 6] [214059] +09:42:26 [ 13] [ 4] [0319] +09:42:26 [ 14] [ 4] [4912] +09:42:26 [ 15] [ 4] [0319] +09:42:26 [ 18] [ 4] [6011] +09:42:26 [ 19] [ 3] [418] +09:42:26 [ 22] [ 3] [021] +09:42:26 [ 25] [ 2] [01] +09:42:26 [ 28] [ 9] [D00002000] +09:42:26 [ 32] [ 6] [198901] +09:42:26 [ 35] [ 32] [6213545001100761=491212010076261] +09:42:26 [ 37] [ 12] [507909203152] +09:42:26 [ 41] [ 8] [01529031] +09:42:26 [ 42] [ 15] [000000041529031] +09:42:26 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:42:26 [ 49] [ 3] [418] +09:42:26 [ 52] [ 16] [F04EA58844AA91E9] +09:42:26 ============================================================================ +09:42:26 + + +waiting on router queue for slot.... +09:42:26 Sending to : +09:42:26 ============================================================================ +09:42:26 Sending to : +09:42:26 ============================================================================ +09:42:27 ============================================================================ +09:42:27 Slot Id : <156> +09:42:27 Transaction Type : REQUEST +09:42:27 Received From : +09:42:27 ============================================================================ +09:42:27 FNo. Len. Field Value +09:42:27 ============================================================================ +09:42:27 [ 1] [ 4] [0200] +09:42:27 [ 2] [ 16] [6213545001100761] +09:42:27 [ 3] [ 6] [011000] +09:42:27 [ 4] [ 12] [000030000000] +09:42:27 [ 7] [ 10] [0320094248] +09:42:27 [ 11] [ 6] [203152] +09:42:27 [ 12] [ 6] [214059] +09:42:27 [ 13] [ 4] [0319] +09:42:27 [ 14] [ 4] [4912] +09:42:27 [ 15] [ 4] [0319] +09:42:27 [ 18] [ 4] [6011] +09:42:27 [ 19] [ 3] [418] +09:42:27 [ 22] [ 3] [021] +09:42:27 [ 25] [ 2] [01] +09:42:27 [ 28] [ 9] [D00002000] +09:42:27 [ 32] [ 6] [198901] +09:42:27 [ 35] [ 32] [6213545001100761=491212010076261] +09:42:27 [ 37] [ 12] [507909203152] +09:42:27 [ 41] [ 8] [01529031] +09:42:27 [ 42] [ 15] [000000041529031] +09:42:27 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:42:27 [ 49] [ 3] [418] +09:42:27 [ 52] [ 16] [F04EA58844AA91E9] +09:42:27 ============================================================================ +09:42:27 + + +waiting on router queue for slot.... +09:42:27 Sending to : +09:42:27 ============================================================================ +09:42:27 ============================================================================ +09:42:27 Slot Id : <156> +09:42:27 Transaction Type : REQUEST +09:42:27 Received From : +09:42:27 ============================================================================ +09:42:27 FNo. Len. Field Value +09:42:27 ============================================================================ +09:42:27 [ 1] [ 4] [0200] +09:42:27 [ 2] [ 16] [6213545001100761] +09:42:27 [ 3] [ 6] [011000] +09:42:27 [ 4] [ 12] [000030000000] +09:42:27 [ 7] [ 10] [0320094248] +09:42:27 [ 11] [ 6] [203152] +09:42:27 [ 12] [ 6] [214059] +09:42:27 [ 13] [ 4] [0319] +09:42:27 [ 14] [ 4] [4912] +09:42:27 [ 15] [ 4] [0319] +09:42:27 [ 18] [ 4] [6011] +09:42:27 [ 19] [ 3] [418] +09:42:27 [ 22] [ 3] [021] +09:42:27 [ 25] [ 2] [01] +09:42:27 [ 28] [ 9] [D00002000] +09:42:27 [ 32] [ 6] [198901] +09:42:27 [ 35] [ 32] [6213545001100761=491212010076261] +09:42:27 [ 37] [ 12] [507909203152] +09:42:27 [ 41] [ 8] [01529031] +09:42:27 [ 42] [ 15] [000000041529031] +09:42:27 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:42:27 [ 49] [ 3] [418] +09:42:27 [ 52] [ 16] [5D438152F430FB61] +09:42:27 ============================================================================ +09:42:27 + + +waiting on router queue for slot.... +09:42:27 Sending to : <0> +09:42:27 ============================================================================ +09:42:28 ============================================================================ +09:42:28 Slot Id : <156> +09:42:28 Transaction Type : RESPONSE +09:42:28 Received From : +09:42:28 ============================================================================ +09:42:28 FNo. Len. Field Value +09:42:28 ============================================================================ +09:42:28 [ 1] [ 4] [0210] +09:42:28 [ 2] [ 16] [6213545001100761] +09:42:28 [ 3] [ 6] [011000] +09:42:28 [ 4] [ 12] [000030000000] +09:42:28 [ 7] [ 10] [0320094248] +09:42:28 [ 11] [ 6] [203152] +09:42:28 [ 12] [ 6] [214059] +09:42:28 [ 13] [ 4] [0319] +09:42:28 [ 15] [ 4] [0319] +09:42:28 [ 18] [ 4] [6011] +09:42:28 [ 19] [ 3] [418] +09:42:28 [ 32] [ 6] [198901] +09:42:28 [ 35] [ 32] [6213545001100761=491212010076261] +09:42:28 [ 37] [ 12] [507909203152] +09:42:28 [ 38] [ 6] [119172] +09:42:28 [ 39] [ 2] [00] +09:42:28 [ 41] [ 8] [01529031] +09:42:28 [ 49] [ 3] [418] +09:42:28 [ 54] [ 40] [1001418C0002917356931002418C000291735693] +09:42:28 ============================================================================ +09:42:28 Sending to : +09:42:28 ============================================================================ +09:42:28 + + +waiting on router queue for slot.... +09:42:29 ============================================================================ +09:42:29 Slot Id : <156> +09:42:29 Transaction Type : RESPONSE +09:42:29 Received From : +09:42:29 ============================================================================ +09:42:29 FNo. Len. Field Value +09:42:29 ============================================================================ +09:42:29 [ 1] [ 4] [0210] +09:42:29 [ 2] [ 16] [6213545001100761] +09:42:29 [ 3] [ 6] [011000] +09:42:29 [ 4] [ 12] [000030000000] +09:42:29 [ 7] [ 10] [0320094248] +09:42:29 [ 11] [ 6] [203152] +09:42:29 [ 12] [ 6] [214059] +09:42:29 [ 13] [ 4] [0319] +09:42:29 [ 15] [ 4] [0319] +09:42:29 [ 18] [ 4] [6011] +09:42:29 [ 19] [ 3] [418] +09:42:29 [ 32] [ 6] [198901] +09:42:29 [ 35] [ 32] [6213545001100761=491212010076261] +09:42:29 [ 37] [ 12] [507909203152] +09:42:29 [ 38] [ 6] [119172] +09:42:29 [ 39] [ 2] [00] +09:42:29 [ 41] [ 8] [01529031] +09:42:29 [ 49] [ 3] [418] +09:42:29 [ 54] [ 40] [1001418C0002917356931002418C000291735693] +09:42:29 ============================================================================ +09:42:29 Calculate Source COMM Id = 5 +09:42:29 ============================================================================ +09:42:29 + + +waiting on router queue for slot.... +09:42:32 ============================================================================ +09:42:32 Slot Id : <179> +09:42:32 Transaction Type : REQUEST +09:42:32 Received From : +09:42:32 ============================================================================ +09:42:32 FNo. Len. Field Value +09:42:32 ============================================================================ +09:42:32 [ 1] [ 4] [0200] +09:42:32 [ 2] [ 16] [6688990040051615] +09:42:32 [ 3] [ 6] [012000] +09:42:32 [ 4] [ 12] [000050000000] +09:42:32 [ 7] [ 10] [0320094228] +09:42:32 [ 11] [ 6] [702480] +09:42:32 [ 12] [ 6] [094228] +09:42:32 [ 13] [ 4] [0320] +09:42:32 [ 15] [ 4] [0320] +09:42:32 [ 18] [ 4] [6011] +09:42:32 [ 22] [ 3] [900] +09:42:32 [ 25] [ 2] [02] +09:42:32 [ 28] [ 9] [D00002000] +09:42:32 [ 32] [ 6] [621354] +09:42:32 [ 35] [ 37] [6688990040051615=97121261067867700000] +09:42:32 [ 37] [ 12] [507904719434] +09:42:32 [ 41] [ 8] [18001000] +09:42:32 [ 42] [ 15] [NATIVE ] +09:42:32 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:42:32 [ 49] [ 3] [418] +09:42:32 [ 52] [ 16] [73AAD05871398A1A] +09:42:32 ============================================================================ +09:42:32 + + +waiting on router queue for slot.... +09:42:32 Sending to : +09:42:32 ============================================================================ +09:42:32 Sending to : +09:42:32 ============================================================================ +09:42:32 ============================================================================ +09:42:32 Slot Id : <179> +09:42:32 Transaction Type : REQUEST +09:42:32 Received From : +09:42:32 ============================================================================ +09:42:32 FNo. Len. Field Value +09:42:32 ============================================================================ +09:42:32 [ 1] [ 4] [0200] +09:42:32 [ 2] [ 16] [6688990040051615] +09:42:32 [ 3] [ 6] [012000] +09:42:32 [ 4] [ 12] [000050000000] +09:42:32 [ 7] [ 10] [0320094228] +09:42:32 [ 11] [ 6] [702480] +09:42:32 [ 12] [ 6] [094228] +09:42:32 [ 13] [ 4] [0320] +09:42:32 [ 15] [ 4] [0320] +09:42:32 [ 18] [ 4] [6011] +09:42:32 [ 22] [ 3] [900] +09:42:32 [ 25] [ 2] [02] +09:42:32 [ 28] [ 9] [D00002000] +09:42:32 [ 32] [ 6] [621354] +09:42:32 [ 35] [ 37] [6688990040051615=97121261067867700000] +09:42:32 [ 37] [ 12] [507904719434] +09:42:32 [ 41] [ 8] [18001000] +09:42:32 [ 42] [ 15] [NATIVE ] +09:42:32 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:42:32 [ 49] [ 3] [418] +09:42:32 [ 52] [ 16] [73AAD05871398A1A] +09:42:32 ============================================================================ +09:42:32 + + +waiting on router queue for slot.... +09:42:32 Sending to : +09:42:32 ============================================================================ +09:42:32 ============================================================================ +09:42:32 Slot Id : <179> +09:42:32 Transaction Type : REQUEST +09:42:32 Received From : +09:42:32 ============================================================================ +09:42:32 FNo. Len. Field Value +09:42:32 ============================================================================ +09:42:32 [ 1] [ 4] [0200] +09:42:32 [ 2] [ 16] [6688990040051615] +09:42:32 [ 3] [ 6] [012000] +09:42:32 [ 4] [ 12] [000050000000] +09:42:32 [ 7] [ 10] [0320094228] +09:42:32 [ 11] [ 6] [702480] +09:42:32 [ 12] [ 6] [094228] +09:42:32 [ 13] [ 4] [0320] +09:42:32 [ 15] [ 4] [0320] +09:42:32 [ 18] [ 4] [6011] +09:42:32 [ 22] [ 3] [900] +09:42:32 [ 25] [ 2] [02] +09:42:32 [ 28] [ 9] [D00002000] +09:42:32 [ 32] [ 6] [621354] +09:42:32 [ 35] [ 37] [6688990040051615=97121261067867700000] +09:42:32 [ 37] [ 12] [507904719434] +09:42:32 [ 41] [ 8] [18001000] +09:42:32 [ 42] [ 15] [NATIVE ] +09:42:32 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:42:32 [ 49] [ 3] [418] +09:42:32 [ 52] [ 16] [DE4DD3EBB9CE58E9] +09:42:32 ============================================================================ +09:42:32 + + +waiting on router queue for slot.... +09:42:32 Sending to : <4> +09:42:32 ============================================================================ +09:42:33 ============================================================================ +09:42:33 Slot Id : <179> +09:42:33 Transaction Type : RESPONSE +09:42:33 Received From : +09:42:33 ============================================================================ +09:42:33 FNo. Len. Field Value +09:42:33 ============================================================================ +09:42:33 [ 1] [ 4] [0210] +09:42:33 [ 2] [ 16] [6688990040051615] +09:42:33 [ 3] [ 6] [012000] +09:42:33 [ 4] [ 12] [000050000000] +09:42:33 [ 11] [ 6] [702480] +09:42:33 [ 12] [ 6] [094228] +09:42:33 [ 15] [ 4] [0320] +09:42:33 [ 18] [ 4] [6011] +09:42:33 [ 32] [ 6] [621354] +09:42:33 [ 35] [ 37] [6688990040051615=97121261067867700000] +09:42:33 [ 37] [ 12] [507904719434] +09:42:33 [ 38] [ 6] [038881] +09:42:33 [ 39] [ 2] [00] +09:42:33 [ 41] [ 8] [18001000] +09:42:33 [ 49] [ 3] [418] +09:42:33 [ 54] [ 20] [2002418C000134999093] +09:42:33 ============================================================================ +09:42:33 Sending to : +09:42:33 ============================================================================ +09:42:33 + + +waiting on router queue for slot.... +09:42:35 ============================================================================ +09:42:35 Slot Id : <179> +09:42:35 Transaction Type : RESPONSE +09:42:35 Received From : +09:42:35 ============================================================================ +09:42:35 FNo. Len. Field Value +09:42:35 ============================================================================ +09:42:35 [ 1] [ 4] [0210] +09:42:35 [ 2] [ 16] [6688990040051615] +09:42:35 [ 3] [ 6] [012000] +09:42:35 [ 4] [ 12] [000050000000] +09:42:35 [ 11] [ 6] [702480] +09:42:35 [ 12] [ 6] [094228] +09:42:35 [ 15] [ 4] [0320] +09:42:35 [ 18] [ 4] [6011] +09:42:35 [ 32] [ 6] [621354] +09:42:35 [ 35] [ 37] [6688990040051615=97121261067867700000] +09:42:35 [ 37] [ 12] [507904719434] +09:42:35 [ 38] [ 6] [038881] +09:42:35 [ 39] [ 2] [00] +09:42:35 [ 41] [ 8] [18001000] +09:42:35 [ 49] [ 3] [418] +09:42:35 [ 54] [ 20] [2002418C000134999093] +09:42:35 ============================================================================ +09:42:35 Calculate Source COMM Id = 0 +09:42:35 ============================================================================ +09:42:35 + + +waiting on router queue for slot.... +09:42:36 ============================================================================ +09:42:36 Slot Id : <203> +09:42:36 Transaction Type : REQUEST +09:42:36 Received From : +09:42:36 ============================================================================ +09:42:36 FNo. Len. Field Value +09:42:36 ============================================================================ +09:42:36 [ 1] [ 4] [0800] +09:42:36 [ 7] [ 10] [0320024144] +09:42:36 [ 11] [ 6] [155683] +09:42:36 [ 70] [ 3] [301] +09:42:36 ============================================================================ +09:42:36 + + +waiting on router queue for slot.... +09:42:36 Sending to : +09:42:36 ============================================================================ +09:42:36 ============================================================================ +09:42:36 Slot Id : <203> +09:42:36 Transaction Type : RESPONSE +09:42:36 Received From : +09:42:36 ============================================================================ +09:42:36 FNo. Len. Field Value +09:42:36 ============================================================================ +09:42:36 [ 1] [ 4] [0810] +09:42:36 [ 7] [ 10] [0320024144] +09:42:36 [ 11] [ 6] [155683] +09:42:36 [ 39] [ 2] [00] +09:42:36 [ 70] [ 3] [301] +09:42:36 ============================================================================ +09:42:36 Calculate Source COMM Id = 2 +09:42:36 ============================================================================ +09:42:36 + + +waiting on router queue for slot.... +09:42:45 ============================================================================ +09:42:45 Slot Id : <163> +09:42:45 Transaction Type : REQUEST +09:42:45 Received From : +09:42:45 ============================================================================ +09:42:45 FNo. Len. Field Value +09:42:45 ============================================================================ +09:42:45 [ 1] [ 4] [0200] +09:42:45 [ 2] [ 16] [6688990040016063] +09:42:45 [ 3] [ 6] [010000] +09:42:45 [ 4] [ 12] [000010000000] +09:42:45 [ 7] [ 10] [0320094241] +09:42:45 [ 11] [ 6] [702539] +09:42:45 [ 12] [ 6] [094241] +09:42:45 [ 13] [ 4] [0320] +09:42:45 [ 15] [ 4] [0320] +09:42:45 [ 18] [ 4] [6011] +09:42:45 [ 22] [ 3] [900] +09:42:45 [ 25] [ 2] [02] +09:42:45 [ 28] [ 9] [D00002000] +09:42:45 [ 32] [ 6] [621354] +09:42:45 [ 35] [ 37] [6688990040016063=97101261801955500000] +09:42:45 [ 37] [ 12] [507902546369] +09:42:45 [ 41] [ 8] [05003700] +09:42:45 [ 42] [ 15] [NATIVE ] +09:42:45 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +09:42:45 [ 49] [ 3] [418] +09:42:45 [ 52] [ 16] [8DB5B2A353546795] +09:42:45 ============================================================================ +09:42:45 + + +waiting on router queue for slot.... +09:42:45 Sending to : +09:42:45 ============================================================================ +09:42:45 Sending to : +09:42:45 ============================================================================ +09:42:45 ============================================================================ +09:42:45 Slot Id : <163> +09:42:45 Transaction Type : REQUEST +09:42:45 Received From : +09:42:45 ============================================================================ +09:42:45 FNo. Len. Field Value +09:42:45 ============================================================================ +09:42:45 [ 1] [ 4] [0200] +09:42:45 [ 2] [ 16] [6688990040016063] +09:42:45 [ 3] [ 6] [010000] +09:42:45 [ 4] [ 12] [000010000000] +09:42:45 [ 7] [ 10] [0320094241] +09:42:45 [ 11] [ 6] [702539] +09:42:45 [ 12] [ 6] [094241] +09:42:45 [ 13] [ 4] [0320] +09:42:45 [ 15] [ 4] [0320] +09:42:45 [ 18] [ 4] [6011] +09:42:45 [ 22] [ 3] [900] +09:42:45 [ 25] [ 2] [02] +09:42:45 [ 28] [ 9] [D00002000] +09:42:45 [ 32] [ 6] [621354] +09:42:45 [ 35] [ 37] [6688990040016063=97101261801955500000] +09:42:45 [ 37] [ 12] [507902546369] +09:42:45 [ 41] [ 8] [05003700] +09:42:45 [ 42] [ 15] [NATIVE ] +09:42:45 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +09:42:45 [ 49] [ 3] [418] +09:42:45 [ 52] [ 16] [8DB5B2A353546795] +09:42:45 ============================================================================ +09:42:45 + + +waiting on router queue for slot.... +09:42:45 Sending to : +09:42:45 ============================================================================ +09:42:45 ============================================================================ +09:42:45 Slot Id : <163> +09:42:45 Transaction Type : REQUEST +09:42:45 Received From : +09:42:45 ============================================================================ +09:42:45 FNo. Len. Field Value +09:42:45 ============================================================================ +09:42:45 [ 1] [ 4] [0200] +09:42:45 [ 2] [ 16] [6688990040016063] +09:42:45 [ 3] [ 6] [010000] +09:42:45 [ 4] [ 12] [000010000000] +09:42:45 [ 7] [ 10] [0320094241] +09:42:45 [ 11] [ 6] [702539] +09:42:45 [ 12] [ 6] [094241] +09:42:45 [ 13] [ 4] [0320] +09:42:45 [ 15] [ 4] [0320] +09:42:45 [ 18] [ 4] [6011] +09:42:45 [ 22] [ 3] [900] +09:42:45 [ 25] [ 2] [02] +09:42:45 [ 28] [ 9] [D00002000] +09:42:45 [ 32] [ 6] [621354] +09:42:45 [ 35] [ 37] [6688990040016063=97101261801955500000] +09:42:45 [ 37] [ 12] [507902546369] +09:42:45 [ 41] [ 8] [05003700] +09:42:45 [ 42] [ 15] [NATIVE ] +09:42:45 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +09:42:45 [ 49] [ 3] [418] +09:42:45 [ 52] [ 16] [5D4D06D642371F9F] +09:42:45 ============================================================================ +09:42:45 + + +waiting on router queue for slot.... +09:42:45 Sending to : <4> +09:42:45 ============================================================================ +09:42:47 ============================================================================ +09:42:47 Slot Id : <163> +09:42:47 Transaction Type : RESPONSE +09:42:47 Received From : +09:42:47 ============================================================================ +09:42:47 FNo. Len. Field Value +09:42:47 ============================================================================ +09:42:47 [ 1] [ 4] [0210] +09:42:47 [ 2] [ 16] [6688990040016063] +09:42:47 [ 3] [ 6] [010000] +09:42:47 [ 4] [ 12] [000010000000] +09:42:47 [ 11] [ 6] [702539] +09:42:47 [ 12] [ 6] [094241] +09:42:47 [ 15] [ 4] [0320] +09:42:47 [ 18] [ 4] [6011] +09:42:47 [ 32] [ 6] [621354] +09:42:47 [ 35] [ 37] [6688990040016063=97101261801955500000] +09:42:47 [ 37] [ 12] [507902546369] +09:42:47 [ 38] [ 6] [881873] +09:42:47 [ 39] [ 2] [00] +09:42:47 [ 41] [ 8] [05003700] +09:42:47 [ 49] [ 3] [418] +09:42:47 [ 54] [ 20] [0002418C000017482302] +09:42:47 ============================================================================ +09:42:47 Sending to : +09:42:47 ============================================================================ +09:42:47 + + +waiting on router queue for slot.... +09:42:47 ============================================================================ +09:42:47 Slot Id : <144> +09:42:47 Transaction Type : REQUEST +09:42:47 Received From : +09:42:47 ============================================================================ +09:42:47 FNo. Len. Field Value +09:42:47 ============================================================================ +09:42:47 [ 1] [ 4] [0800] +09:42:47 [ 7] [ 10] [0320024155] +09:42:47 [ 11] [ 6] [155684] +09:42:47 [ 70] [ 3] [301] +09:42:47 ============================================================================ +09:42:47 + + +waiting on router queue for slot.... +09:42:47 Sending to : +09:42:47 ============================================================================ +09:42:47 ============================================================================ +09:42:47 Slot Id : <144> +09:42:47 Transaction Type : RESPONSE +09:42:47 Received From : +09:42:47 ============================================================================ +09:42:47 FNo. Len. Field Value +09:42:47 ============================================================================ +09:42:47 [ 1] [ 4] [0810] +09:42:47 [ 7] [ 10] [0320024155] +09:42:47 [ 11] [ 6] [155684] +09:42:47 [ 39] [ 2] [00] +09:42:47 [ 70] [ 3] [301] +09:42:47 ============================================================================ +09:42:47 Calculate Source COMM Id = 2 +09:42:47 ============================================================================ +09:42:47 + + +waiting on router queue for slot.... +09:42:48 ============================================================================ +09:42:48 Slot Id : <163> +09:42:48 Transaction Type : RESPONSE +09:42:48 Received From : +09:42:48 ============================================================================ +09:42:48 FNo. Len. Field Value +09:42:48 ============================================================================ +09:42:48 [ 1] [ 4] [0210] +09:42:48 [ 2] [ 16] [6688990040016063] +09:42:48 [ 3] [ 6] [010000] +09:42:48 [ 4] [ 12] [000010000000] +09:42:48 [ 11] [ 6] [702539] +09:42:48 [ 12] [ 6] [094241] +09:42:48 [ 15] [ 4] [0320] +09:42:48 [ 18] [ 4] [6011] +09:42:48 [ 32] [ 6] [621354] +09:42:48 [ 35] [ 37] [6688990040016063=97101261801955500000] +09:42:48 [ 37] [ 12] [507902546369] +09:42:48 [ 38] [ 6] [881873] +09:42:48 [ 39] [ 2] [00] +09:42:48 [ 41] [ 8] [05003700] +09:42:48 [ 49] [ 3] [418] +09:42:48 [ 54] [ 20] [0002418C000017482302] +09:42:48 ============================================================================ +09:42:48 Calculate Source COMM Id = 0 +09:42:48 ============================================================================ +09:42:48 + + +waiting on router queue for slot.... +09:42:54 ============================================================================ +09:42:54 Slot Id : <135> +09:42:54 Transaction Type : REQUEST +09:42:54 Received From : +09:42:54 ============================================================================ +09:42:54 FNo. Len. Field Value +09:42:54 ============================================================================ +09:42:54 [ 1] [ 4] [0200] +09:42:54 [ 2] [ 16] [6213544001906277] +09:42:54 [ 3] [ 6] [010000] +09:42:54 [ 4] [ 12] [000100000000] +09:42:54 [ 7] [ 10] [0320094045] +09:42:54 [ 11] [ 6] [936365] +09:42:54 [ 12] [ 6] [094045] +09:42:54 [ 13] [ 4] [0320] +09:42:54 [ 15] [ 4] [0320] +09:42:54 [ 18] [ 4] [6011] +09:42:54 [ 19] [ 3] [418] +09:42:54 [ 22] [ 3] [021] +09:42:54 [ 25] [ 2] [01] +09:42:54 [ 28] [ 9] [D00002000] +09:42:54 [ 32] [ 6] [668899] +09:42:54 [ 35] [ 32] [6213544001906277=491212010627879] +09:42:54 [ 37] [ 12] [507902475683] +09:42:54 [ 41] [ 8] [03020032] +09:42:54 [ 42] [ 15] [APT ] +09:42:54 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +09:42:54 [ 49] [ 3] [418] +09:42:54 [ 52] [ 16] [ADEBF413FCA71BC8] +09:42:54 ============================================================================ +09:42:54 + + +waiting on router queue for slot.... +09:42:54 Sending to : +09:42:54 ============================================================================ +09:42:54 Sending to : +09:42:54 ============================================================================ +09:42:54 ============================================================================ +09:42:54 Slot Id : <135> +09:42:54 Transaction Type : REQUEST +09:42:54 Received From : +09:42:54 ============================================================================ +09:42:54 FNo. Len. Field Value +09:42:54 ============================================================================ +09:42:54 [ 1] [ 4] [0200] +09:42:54 [ 2] [ 16] [6213544001906277] +09:42:54 [ 3] [ 6] [010000] +09:42:54 [ 4] [ 12] [000100000000] +09:42:54 [ 7] [ 10] [0320094045] +09:42:54 [ 11] [ 6] [936365] +09:42:54 [ 12] [ 6] [094045] +09:42:54 [ 13] [ 4] [0320] +09:42:54 [ 15] [ 4] [0320] +09:42:54 [ 18] [ 4] [6011] +09:42:54 [ 19] [ 3] [418] +09:42:54 [ 22] [ 3] [021] +09:42:54 [ 25] [ 2] [01] +09:42:54 [ 28] [ 9] [D00002000] +09:42:54 [ 32] [ 6] [668899] +09:42:54 [ 35] [ 32] [6213544001906277=491212010627879] +09:42:54 [ 37] [ 12] [507902475683] +09:42:54 [ 41] [ 8] [03020032] +09:42:54 [ 42] [ 15] [APT ] +09:42:54 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +09:42:54 [ 49] [ 3] [418] +09:42:54 [ 52] [ 16] [ADEBF413FCA71BC8] +09:42:54 ============================================================================ +09:42:54 + + +waiting on router queue for slot.... +09:42:54 Sending to : +09:42:54 ============================================================================ +09:42:54 ============================================================================ +09:42:54 Slot Id : <135> +09:42:54 Transaction Type : REQUEST +09:42:54 Received From : +09:42:54 ============================================================================ +09:42:54 FNo. Len. Field Value +09:42:54 ============================================================================ +09:42:54 [ 1] [ 4] [0200] +09:42:54 [ 2] [ 16] [6213544001906277] +09:42:54 [ 3] [ 6] [010000] +09:42:54 [ 4] [ 12] [000100000000] +09:42:54 [ 7] [ 10] [0320094045] +09:42:54 [ 11] [ 6] [936365] +09:42:54 [ 12] [ 6] [094045] +09:42:54 [ 13] [ 4] [0320] +09:42:54 [ 15] [ 4] [0320] +09:42:54 [ 18] [ 4] [6011] +09:42:54 [ 19] [ 3] [418] +09:42:54 [ 22] [ 3] [021] +09:42:54 [ 25] [ 2] [01] +09:42:54 [ 28] [ 9] [D00002000] +09:42:54 [ 32] [ 6] [668899] +09:42:54 [ 35] [ 32] [6213544001906277=491212010627879] +09:42:54 [ 37] [ 12] [507902475683] +09:42:54 [ 41] [ 8] [03020032] +09:42:54 [ 42] [ 15] [APT ] +09:42:54 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +09:42:54 [ 49] [ 3] [418] +09:42:54 [ 52] [ 16] [F55C9E42179ABD04] +09:42:54 ============================================================================ +09:42:54 + + +waiting on router queue for slot.... +09:42:54 Sending to : <0> +09:42:54 ============================================================================ +09:42:54 ============================================================================ +09:42:54 Slot Id : <135> +09:42:54 Transaction Type : RESPONSE +09:42:54 Received From : +09:42:54 ============================================================================ +09:42:54 FNo. Len. Field Value +09:42:54 ============================================================================ +09:42:54 [ 1] [ 4] [0210] +09:42:54 [ 2] [ 16] [6213544001906277] +09:42:54 [ 3] [ 6] [010000] +09:42:54 [ 4] [ 12] [000100000000] +09:42:54 [ 7] [ 10] [0320094045] +09:42:54 [ 11] [ 6] [936365] +09:42:54 [ 12] [ 6] [094045] +09:42:54 [ 13] [ 4] [0320] +09:42:54 [ 15] [ 4] [0320] +09:42:54 [ 18] [ 4] [6011] +09:42:54 [ 19] [ 3] [418] +09:42:54 [ 32] [ 6] [668899] +09:42:54 [ 35] [ 32] [6213544001906277=491212010627879] +09:42:54 [ 37] [ 12] [507902475683] +09:42:54 [ 38] [ 6] [414168] +09:42:54 [ 39] [ 2] [00] +09:42:54 [ 41] [ 8] [03020032] +09:42:54 [ 49] [ 3] [418] +09:42:54 [ 54] [ 40] [0001418C0002996072140002418C000299607214] +09:42:54 ============================================================================ +09:42:54 Sending to : +09:42:54 ============================================================================ +09:42:54 + + +waiting on router queue for slot.... +09:42:56 ============================================================================ +09:42:56 Slot Id : <135> +09:42:56 Transaction Type : RESPONSE +09:42:56 Received From : +09:42:56 ============================================================================ +09:42:56 FNo. Len. Field Value +09:42:56 ============================================================================ +09:42:56 [ 1] [ 4] [0210] +09:42:56 [ 2] [ 16] [6213544001906277] +09:42:56 [ 3] [ 6] [010000] +09:42:56 [ 4] [ 12] [000100000000] +09:42:56 [ 7] [ 10] [0320094045] +09:42:56 [ 11] [ 6] [936365] +09:42:56 [ 12] [ 6] [094045] +09:42:56 [ 13] [ 4] [0320] +09:42:56 [ 15] [ 4] [0320] +09:42:56 [ 18] [ 4] [6011] +09:42:56 [ 19] [ 3] [418] +09:42:56 [ 32] [ 6] [668899] +09:42:56 [ 35] [ 32] [6213544001906277=491212010627879] +09:42:56 [ 37] [ 12] [507902475683] +09:42:56 [ 38] [ 6] [414168] +09:42:56 [ 39] [ 2] [00] +09:42:56 [ 41] [ 8] [03020032] +09:42:56 [ 49] [ 3] [418] +09:42:56 [ 54] [ 40] [0001418C0002996072140002418C000299607214] +09:42:56 ============================================================================ +09:42:56 Calculate Source COMM Id = 4 +09:42:56 ============================================================================ +09:42:56 + + +waiting on router queue for slot.... +09:42:57 ============================================================================ +09:42:57 Slot Id : <192> +09:42:57 Transaction Type : REQUEST +09:42:57 Received From : +09:42:57 ============================================================================ +09:42:57 FNo. Len. Field Value +09:42:57 ============================================================================ +09:42:57 [ 1] [ 4] [0200] +09:42:57 [ 2] [ 16] [6213545000646095] +09:42:57 [ 3] [ 6] [010000] +09:42:57 [ 4] [ 12] [000050000000] +09:42:57 [ 7] [ 10] [0320024204] +09:42:57 [ 11] [ 6] [267725] +09:42:57 [ 12] [ 6] [094204] +09:42:57 [ 13] [ 4] [0320] +09:42:57 [ 14] [ 4] [4912] +09:42:57 [ 15] [ 4] [0320] +09:42:57 [ 18] [ 4] [6011] +09:42:57 [ 19] [ 3] [418] +09:42:57 [ 22] [ 3] [021] +09:42:57 [ 25] [ 2] [01] +09:42:57 [ 28] [ 9] [D00002000] +09:42:57 [ 32] [ 6] [180893] +09:42:57 [ 35] [ 32] [6213545000646095=491212014609483] +09:42:57 [ 37] [ 12] [507902267725] +09:42:57 [ 41] [ 8] [0366SKTT] +09:42:57 [ 42] [ 15] [999999 ] +09:42:57 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:42:57 [ 49] [ 3] [418] +09:42:57 [ 52] [ 16] [AECBF76D00DFD0FD] +09:42:57 ============================================================================ +09:42:57 + + +waiting on router queue for slot.... +09:42:57 Sending to : +09:42:57 ============================================================================ +09:42:57 Sending to : +09:42:57 ============================================================================ +09:42:57 ============================================================================ +09:42:57 Slot Id : <192> +09:42:57 Transaction Type : REQUEST +09:42:57 Received From : +09:42:57 ============================================================================ +09:42:57 FNo. Len. Field Value +09:42:57 ============================================================================ +09:42:57 [ 1] [ 4] [0200] +09:42:57 [ 2] [ 16] [6213545000646095] +09:42:57 [ 3] [ 6] [010000] +09:42:57 [ 4] [ 12] [000050000000] +09:42:57 [ 7] [ 10] [0320024204] +09:42:57 [ 11] [ 6] [267725] +09:42:57 [ 12] [ 6] [094204] +09:42:57 [ 13] [ 4] [0320] +09:42:57 [ 14] [ 4] [4912] +09:42:57 [ 15] [ 4] [0320] +09:42:57 [ 18] [ 4] [6011] +09:42:57 [ 19] [ 3] [418] +09:42:57 [ 22] [ 3] [021] +09:42:57 [ 25] [ 2] [01] +09:42:57 [ 28] [ 9] [D00002000] +09:42:57 [ 32] [ 6] [180893] +09:42:57 [ 35] [ 32] [6213545000646095=491212014609483] +09:42:57 [ 37] [ 12] [507902267725] +09:42:57 [ 41] [ 8] [0366SKTT] +09:42:57 [ 42] [ 15] [999999 ] +09:42:57 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:42:57 [ 49] [ 3] [418] +09:42:57 [ 52] [ 16] [AECBF76D00DFD0FD] +09:42:57 ============================================================================ +09:42:57 + + +waiting on router queue for slot.... +09:42:57 Sending to : +09:42:57 ============================================================================ +09:42:57 ============================================================================ +09:42:57 Slot Id : <192> +09:42:57 Transaction Type : REQUEST +09:42:57 Received From : +09:42:57 ============================================================================ +09:42:57 FNo. Len. Field Value +09:42:57 ============================================================================ +09:42:57 [ 1] [ 4] [0200] +09:42:57 [ 2] [ 16] [6213545000646095] +09:42:57 [ 3] [ 6] [010000] +09:42:57 [ 4] [ 12] [000050000000] +09:42:57 [ 7] [ 10] [0320024204] +09:42:57 [ 11] [ 6] [267725] +09:42:57 [ 12] [ 6] [094204] +09:42:57 [ 13] [ 4] [0320] +09:42:57 [ 14] [ 4] [4912] +09:42:57 [ 15] [ 4] [0320] +09:42:57 [ 18] [ 4] [6011] +09:42:57 [ 19] [ 3] [418] +09:42:57 [ 22] [ 3] [021] +09:42:57 [ 25] [ 2] [01] +09:42:57 [ 28] [ 9] [D00002000] +09:42:57 [ 32] [ 6] [180893] +09:42:57 [ 35] [ 32] [6213545000646095=491212014609483] +09:42:57 [ 37] [ 12] [507902267725] +09:42:57 [ 41] [ 8] [0366SKTT] +09:42:57 [ 42] [ 15] [999999 ] +09:42:57 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:42:57 [ 49] [ 3] [418] +09:42:57 [ 52] [ 16] [AD2F6332DBC152A2] +09:42:57 ============================================================================ +09:42:57 + + +waiting on router queue for slot.... +09:42:57 Sending to : <0> +09:42:57 ============================================================================ +09:42:58 ============================================================================ +09:42:58 Slot Id : <204> +09:42:58 Transaction Type : REQUEST +09:42:58 Received From : +09:42:58 ============================================================================ +09:42:58 FNo. Len. Field Value +09:42:58 ============================================================================ +09:42:58 [ 1] [ 4] [0800] +09:42:58 [ 7] [ 10] [0320024206] +09:42:58 [ 11] [ 6] [155685] +09:42:58 [ 70] [ 3] [301] +09:42:58 ============================================================================ +09:42:58 + + +waiting on router queue for slot.... +09:42:58 Sending to : +09:42:58 ============================================================================ +09:42:58 ============================================================================ +09:42:58 Slot Id : <204> +09:42:58 Transaction Type : RESPONSE +09:42:58 Received From : +09:42:58 ============================================================================ +09:42:58 FNo. Len. Field Value +09:42:58 ============================================================================ +09:42:58 [ 1] [ 4] [0810] +09:42:58 [ 7] [ 10] [0320024206] +09:42:58 [ 11] [ 6] [155685] +09:42:58 [ 39] [ 2] [00] +09:42:58 [ 70] [ 3] [301] +09:42:58 ============================================================================ +09:42:58 Calculate Source COMM Id = 2 +09:42:58 ============================================================================ +09:42:58 + + +waiting on router queue for slot.... +09:42:59 ============================================================================ +09:42:59 Slot Id : <192> +09:42:59 Transaction Type : RESPONSE +09:42:59 Received From : +09:42:59 ============================================================================ +09:42:59 FNo. Len. Field Value +09:42:59 ============================================================================ +09:42:59 [ 1] [ 4] [0210] +09:42:59 [ 2] [ 16] [6213545000646095] +09:42:59 [ 3] [ 6] [010000] +09:42:59 [ 4] [ 12] [000050000000] +09:42:59 [ 7] [ 10] [0320024204] +09:42:59 [ 11] [ 6] [267725] +09:42:59 [ 12] [ 6] [094204] +09:42:59 [ 13] [ 4] [0320] +09:42:59 [ 15] [ 4] [0320] +09:42:59 [ 18] [ 4] [6011] +09:42:59 [ 19] [ 3] [418] +09:42:59 [ 32] [ 6] [180893] +09:42:59 [ 35] [ 32] [6213545000646095=491212014609483] +09:42:59 [ 37] [ 12] [507902267725] +09:42:59 [ 38] [ 6] [757437] +09:42:59 [ 39] [ 2] [00] +09:42:59 [ 41] [ 8] [0366SKTT] +09:42:59 [ 49] [ 3] [418] +09:42:59 [ 54] [ 40] [0001418C0001925147670002418C000192514767] +09:42:59 ============================================================================ +09:42:59 Sending to : +09:42:59 ============================================================================ +09:42:59 + + +waiting on router queue for slot.... +09:42:59 ============================================================================ +09:42:59 Slot Id : <152> +09:42:59 Transaction Type : REQUEST +09:42:59 Received From : +09:42:59 ============================================================================ +09:42:59 FNo. Len. Field Value +09:42:59 ============================================================================ +09:42:59 [ 1] [ 4] [0800] +09:42:59 [ 7] [ 10] [0320165447] +09:42:59 [ 11] [ 6] [095447] +09:42:59 [ 37] [ 12] [57909095447] +09:42:59 [ 70] [ 3] [301] +09:42:59 ============================================================================ +09:42:59 + + +waiting on router queue for slot.... +09:42:59 Sending to : +09:42:59 ============================================================================ +09:42:59 ============================================================================ +09:42:59 Slot Id : <152> +09:42:59 Transaction Type : RESPONSE +09:42:59 Received From : +09:42:59 ============================================================================ +09:42:59 FNo. Len. Field Value +09:42:59 ============================================================================ +09:42:59 [ 1] [ 4] [0810] +09:42:59 [ 7] [ 10] [0320165447] +09:42:59 [ 11] [ 6] [095447] +09:42:59 [ 37] [ 12] [579090954470] +09:42:59 [ 39] [ 2] [00] +09:42:59 [ 70] [ 3] [810] +09:42:59 ============================================================================ +09:42:59 Calculate Source COMM Id = 6 +09:42:59 ============================================================================ +09:42:59 + + +waiting on router queue for slot.... +09:43:01 ============================================================================ +09:43:01 Slot Id : <192> +09:43:01 Transaction Type : RESPONSE +09:43:01 Received From : +09:43:01 ============================================================================ +09:43:01 FNo. Len. Field Value +09:43:01 ============================================================================ +09:43:01 [ 1] [ 4] [0210] +09:43:01 [ 2] [ 16] [6213545000646095] +09:43:01 [ 3] [ 6] [010000] +09:43:01 [ 4] [ 12] [000050000000] +09:43:01 [ 7] [ 10] [0320024204] +09:43:01 [ 11] [ 6] [267725] +09:43:01 [ 12] [ 6] [094204] +09:43:01 [ 13] [ 4] [0320] +09:43:01 [ 15] [ 4] [0320] +09:43:01 [ 18] [ 4] [6011] +09:43:01 [ 19] [ 3] [418] +09:43:01 [ 32] [ 6] [180893] +09:43:01 [ 35] [ 32] [6213545000646095=491212014609483] +09:43:01 [ 37] [ 12] [507902267725] +09:43:01 [ 38] [ 6] [757437] +09:43:01 [ 39] [ 2] [00] +09:43:01 [ 41] [ 8] [0366SKTT] +09:43:01 [ 49] [ 3] [418] +09:43:01 [ 54] [ 40] [0001418C0001925147670002418C000192514767] +09:43:01 ============================================================================ +09:43:01 Calculate Source COMM Id = 2 +09:43:01 ============================================================================ +09:43:01 + + +waiting on router queue for slot.... +09:43:02 ============================================================================ +09:43:02 Slot Id : <196> +09:43:02 Transaction Type : REQUEST +09:43:02 Received From : +09:43:02 ============================================================================ +09:43:02 FNo. Len. Field Value +09:43:02 ============================================================================ +09:43:02 [ 1] [ 4] [0200] +09:43:02 [ 2] [ 16] [6688990107476101] +09:43:02 [ 3] [ 6] [010000] +09:43:02 [ 4] [ 12] [000010000000] +09:43:02 [ 7] [ 10] [0320094258] +09:43:02 [ 11] [ 6] [702612] +09:43:02 [ 12] [ 6] [094258] +09:43:02 [ 13] [ 4] [0320] +09:43:02 [ 15] [ 4] [0320] +09:43:02 [ 18] [ 4] [6011] +09:43:02 [ 22] [ 3] [900] +09:43:02 [ 25] [ 2] [02] +09:43:02 [ 28] [ 9] [D00002000] +09:43:02 [ 32] [ 6] [621354] +09:43:02 [ 35] [ 37] [6688990107476101=44031231610154100000] +09:43:02 [ 37] [ 12] [507904706939] +09:43:02 [ 41] [ 8] [18000900] +09:43:02 [ 42] [ 15] [NATIVE ] +09:43:02 [ 43] [ 40] [Bounneau District Bounneua LAO] +09:43:02 [ 49] [ 3] [418] +09:43:02 [ 52] [ 16] [914B2E47AB349A58] +09:43:02 ============================================================================ +09:43:02 + + +waiting on router queue for slot.... +09:43:02 Sending to : +09:43:02 ============================================================================ +09:43:02 Sending to : +09:43:02 ============================================================================ +09:43:02 ============================================================================ +09:43:02 Slot Id : <196> +09:43:02 Transaction Type : REQUEST +09:43:02 Received From : +09:43:02 ============================================================================ +09:43:02 FNo. Len. Field Value +09:43:02 ============================================================================ +09:43:02 [ 1] [ 4] [0200] +09:43:02 [ 2] [ 16] [6688990107476101] +09:43:02 [ 3] [ 6] [010000] +09:43:02 [ 4] [ 12] [000010000000] +09:43:02 [ 7] [ 10] [0320094258] +09:43:02 [ 11] [ 6] [702612] +09:43:02 [ 12] [ 6] [094258] +09:43:02 [ 13] [ 4] [0320] +09:43:02 [ 15] [ 4] [0320] +09:43:02 [ 18] [ 4] [6011] +09:43:02 [ 22] [ 3] [900] +09:43:02 [ 25] [ 2] [02] +09:43:02 [ 28] [ 9] [D00002000] +09:43:02 [ 32] [ 6] [621354] +09:43:02 [ 35] [ 37] [6688990107476101=44031231610154100000] +09:43:02 [ 37] [ 12] [507904706939] +09:43:02 [ 41] [ 8] [18000900] +09:43:02 [ 42] [ 15] [NATIVE ] +09:43:02 [ 43] [ 40] [Bounneau District Bounneua LAO] +09:43:02 [ 49] [ 3] [418] +09:43:02 [ 52] [ 16] [914B2E47AB349A58] +09:43:02 ============================================================================ +09:43:02 + + +waiting on router queue for slot.... +09:43:02 Sending to : +09:43:02 ============================================================================ +09:43:02 ============================================================================ +09:43:02 Slot Id : <196> +09:43:02 Transaction Type : REQUEST +09:43:02 Received From : +09:43:02 ============================================================================ +09:43:02 FNo. Len. Field Value +09:43:02 ============================================================================ +09:43:02 [ 1] [ 4] [0200] +09:43:02 [ 2] [ 16] [6688990107476101] +09:43:02 [ 3] [ 6] [010000] +09:43:02 [ 4] [ 12] [000010000000] +09:43:02 [ 7] [ 10] [0320094258] +09:43:02 [ 11] [ 6] [702612] +09:43:02 [ 12] [ 6] [094258] +09:43:02 [ 13] [ 4] [0320] +09:43:02 [ 15] [ 4] [0320] +09:43:02 [ 18] [ 4] [6011] +09:43:02 [ 22] [ 3] [900] +09:43:02 [ 25] [ 2] [02] +09:43:02 [ 28] [ 9] [D00002000] +09:43:02 [ 32] [ 6] [621354] +09:43:02 [ 35] [ 37] [6688990107476101=44031231610154100000] +09:43:02 [ 37] [ 12] [507904706939] +09:43:02 [ 41] [ 8] [18000900] +09:43:02 [ 42] [ 15] [NATIVE ] +09:43:02 [ 43] [ 40] [Bounneau District Bounneua LAO] +09:43:02 [ 49] [ 3] [418] +09:43:02 [ 52] [ 16] [A82F34491485A09D] +09:43:02 ============================================================================ +09:43:02 + + +waiting on router queue for slot.... +09:43:02 Sending to : <4> +09:43:02 ============================================================================ +09:43:03 ============================================================================ +09:43:03 Slot Id : <196> +09:43:03 Transaction Type : RESPONSE +09:43:03 Received From : +09:43:03 ============================================================================ +09:43:03 FNo. Len. Field Value +09:43:03 ============================================================================ +09:43:03 [ 1] [ 4] [0210] +09:43:03 [ 2] [ 16] [6688990107476101] +09:43:03 [ 3] [ 6] [010000] +09:43:03 [ 4] [ 12] [000010000000] +09:43:03 [ 11] [ 6] [702612] +09:43:03 [ 12] [ 6] [094258] +09:43:03 [ 15] [ 4] [0320] +09:43:03 [ 18] [ 4] [6011] +09:43:03 [ 32] [ 6] [621354] +09:43:03 [ 35] [ 37] [6688990107476101=44031231610154100000] +09:43:03 [ 37] [ 12] [507904706939] +09:43:03 [ 38] [ 6] [699223] +09:43:03 [ 39] [ 2] [00] +09:43:03 [ 41] [ 8] [18000900] +09:43:03 [ 49] [ 3] [418] +09:43:03 [ 54] [ 20] [0002418C000021737507] +09:43:03 ============================================================================ +09:43:03 Sending to : +09:43:03 ============================================================================ +09:43:03 + + +waiting on router queue for slot.... +09:43:05 ============================================================================ +09:43:05 Slot Id : <196> +09:43:05 Transaction Type : RESPONSE +09:43:05 Received From : +09:43:05 ============================================================================ +09:43:05 FNo. Len. Field Value +09:43:05 ============================================================================ +09:43:05 [ 1] [ 4] [0210] +09:43:05 [ 2] [ 16] [6688990107476101] +09:43:05 [ 3] [ 6] [010000] +09:43:05 [ 4] [ 12] [000010000000] +09:43:05 [ 11] [ 6] [702612] +09:43:05 [ 12] [ 6] [094258] +09:43:05 [ 15] [ 4] [0320] +09:43:05 [ 18] [ 4] [6011] +09:43:05 [ 32] [ 6] [621354] +09:43:05 [ 35] [ 37] [6688990107476101=44031231610154100000] +09:43:05 [ 37] [ 12] [507904706939] +09:43:05 [ 38] [ 6] [699223] +09:43:05 [ 39] [ 2] [00] +09:43:05 [ 41] [ 8] [18000900] +09:43:05 [ 49] [ 3] [418] +09:43:05 [ 54] [ 20] [0002418C000021737507] +09:43:05 ============================================================================ +09:43:05 Calculate Source COMM Id = 0 +09:43:05 ============================================================================ +09:43:05 + + +waiting on router queue for slot.... +09:43:14 ============================================================================ +09:43:14 Slot Id : <191> +09:43:14 Transaction Type : REQUEST +09:43:14 Received From : +09:43:14 ============================================================================ +09:43:14 FNo. Len. Field Value +09:43:14 ============================================================================ +09:43:14 [ 1] [ 4] [0800] +09:43:14 [ 7] [ 10] [0320024222] +09:43:14 [ 11] [ 6] [155686] +09:43:14 [ 70] [ 3] [301] +09:43:14 ============================================================================ +09:43:14 + + +waiting on router queue for slot.... +09:43:14 Sending to : +09:43:14 ============================================================================ +09:43:14 ============================================================================ +09:43:14 Slot Id : <191> +09:43:14 Transaction Type : RESPONSE +09:43:14 Received From : +09:43:14 ============================================================================ +09:43:14 FNo. Len. Field Value +09:43:14 ============================================================================ +09:43:14 [ 1] [ 4] [0810] +09:43:14 [ 7] [ 10] [0320024222] +09:43:14 [ 11] [ 6] [155686] +09:43:14 [ 39] [ 2] [00] +09:43:14 [ 70] [ 3] [301] +09:43:14 ============================================================================ +09:43:14 Calculate Source COMM Id = 2 +09:43:14 ============================================================================ +09:43:14 + + +waiting on router queue for slot.... +09:43:25 ============================================================================ +09:43:25 Slot Id : <155> +09:43:25 Transaction Type : REQUEST +09:43:25 Received From : +09:43:25 ============================================================================ +09:43:25 FNo. Len. Field Value +09:43:25 ============================================================================ +09:43:25 [ 1] [ 4] [0800] +09:43:25 [ 2] [ 5] [02531] +09:43:25 [ 3] [ 6] [579098] +09:43:25 [ 7] [ 10] [0320024325] +09:43:25 [ 11] [ 6] [806976] +09:43:25 [ 15] [ 10] [0320024325] +09:43:25 [ 37] [ 11] [57909806976] +09:43:25 [ 70] [ 3] [001] +09:43:25 ============================================================================ +09:43:25 + + +waiting on router queue for slot.... +09:43:25 ============================================================================ +09:43:25 Slot Id : <155> +09:43:25 Transaction Type : RESPONSE +09:43:25 Received From : +09:43:25 ============================================================================ +09:43:25 FNo. Len. Field Value +09:43:25 ============================================================================ +09:43:25 [ 1] [ 4] [0810] +09:43:25 [ 7] [ 10] [0320024325] +09:43:25 [ 11] [ 6] [806976] +09:43:25 [ 15] [ 4] [0320] +09:43:25 [ 37] [ 12] [57909806976] +09:43:25 [ 39] [ 2] [00] +09:43:25 [ 70] [ 3] [001] +09:43:25 ============================================================================ +09:43:25 Sending to : +09:43:25 ============================================================================ +09:43:25 + + +waiting on router queue for slot.... +09:43:29 ============================================================================ +09:43:29 Slot Id : <190> +09:43:29 Transaction Type : REQUEST +09:43:29 Received From : +09:43:29 ============================================================================ +09:43:29 FNo. Len. Field Value +09:43:29 ============================================================================ +09:43:29 [ 1] [ 4] [0800] +09:43:29 [ 7] [ 10] [0320024237] +09:43:29 [ 11] [ 6] [155687] +09:43:29 [ 70] [ 3] [301] +09:43:29 ============================================================================ +09:43:29 + + +waiting on router queue for slot.... +09:43:29 Sending to : +09:43:29 ============================================================================ +09:43:29 ============================================================================ +09:43:29 Slot Id : <190> +09:43:29 Transaction Type : RESPONSE +09:43:29 Received From : +09:43:29 ============================================================================ +09:43:29 FNo. Len. Field Value +09:43:29 ============================================================================ +09:43:29 [ 1] [ 4] [0810] +09:43:29 [ 7] [ 10] [0320024237] +09:43:29 [ 11] [ 6] [155687] +09:43:29 [ 39] [ 2] [00] +09:43:29 [ 70] [ 3] [301] +09:43:29 ============================================================================ +09:43:29 Calculate Source COMM Id = 2 +09:43:29 ============================================================================ +09:43:29 + + +waiting on router queue for slot.... +09:43:40 ============================================================================ +09:43:40 Slot Id : <181> +09:43:40 Transaction Type : REQUEST +09:43:40 Received From : +09:43:40 ============================================================================ +09:43:40 FNo. Len. Field Value +09:43:40 ============================================================================ +09:43:40 [ 1] [ 4] [0800] +09:43:40 [ 7] [ 10] [0320024248] +09:43:40 [ 11] [ 6] [155688] +09:43:40 [ 70] [ 3] [301] +09:43:40 ============================================================================ +09:43:40 + + +waiting on router queue for slot.... +09:43:40 Sending to : +09:43:40 ============================================================================ +09:43:40 ============================================================================ +09:43:40 Slot Id : <181> +09:43:40 Transaction Type : RESPONSE +09:43:40 Received From : +09:43:40 ============================================================================ +09:43:40 FNo. Len. Field Value +09:43:40 ============================================================================ +09:43:40 [ 1] [ 4] [0810] +09:43:40 [ 7] [ 10] [0320024248] +09:43:40 [ 11] [ 6] [155688] +09:43:40 [ 39] [ 2] [00] +09:43:40 [ 70] [ 3] [301] +09:43:40 ============================================================================ +09:43:40 Calculate Source COMM Id = 2 +09:43:40 ============================================================================ +09:43:40 + + +waiting on router queue for slot.... +09:43:51 ============================================================================ +09:43:51 Slot Id : <198> +09:43:51 Transaction Type : REQUEST +09:43:51 Received From : +09:43:51 ============================================================================ +09:43:51 FNo. Len. Field Value +09:43:51 ============================================================================ +09:43:51 [ 1] [ 4] [0800] +09:43:51 [ 7] [ 10] [0320024259] +09:43:51 [ 11] [ 6] [155689] +09:43:51 [ 70] [ 3] [301] +09:43:51 ============================================================================ +09:43:51 + + +waiting on router queue for slot.... +09:43:51 Sending to : +09:43:51 ============================================================================ +09:43:51 ============================================================================ +09:43:51 Slot Id : <198> +09:43:51 Transaction Type : RESPONSE +09:43:51 Received From : +09:43:51 ============================================================================ +09:43:51 FNo. Len. Field Value +09:43:51 ============================================================================ +09:43:51 [ 1] [ 4] [0810] +09:43:51 [ 7] [ 10] [0320024259] +09:43:51 [ 11] [ 6] [155689] +09:43:51 [ 39] [ 2] [00] +09:43:51 [ 70] [ 3] [301] +09:43:51 ============================================================================ +09:43:51 Calculate Source COMM Id = 2 +09:43:51 ============================================================================ +09:43:51 + + +waiting on router queue for slot.... +09:43:56 ============================================================================ +09:43:56 Slot Id : <201> +09:43:56 Transaction Type : REQUEST +09:43:56 Received From : +09:43:56 ============================================================================ +09:43:56 FNo. Len. Field Value +09:43:56 ============================================================================ +09:43:56 [ 1] [ 4] [0200] +09:43:56 [ 2] [ 16] [6213544000781127] +09:43:56 [ 3] [ 6] [010000] +09:43:56 [ 4] [ 12] [000010000000] +09:43:56 [ 7] [ 10] [0320024304] +09:43:56 [ 11] [ 6] [267733] +09:43:56 [ 12] [ 6] [094304] +09:43:56 [ 13] [ 4] [0320] +09:43:56 [ 14] [ 4] [4912] +09:43:56 [ 15] [ 4] [0320] +09:43:56 [ 18] [ 4] [6011] +09:43:56 [ 19] [ 3] [418] +09:43:56 [ 22] [ 3] [021] +09:43:56 [ 25] [ 2] [01] +09:43:56 [ 28] [ 9] [D00002000] +09:43:56 [ 32] [ 6] [180893] +09:43:56 [ 35] [ 32] [6213544000781127=491212018112869] +09:43:56 [ 37] [ 12] [507902267733] +09:43:56 [ 41] [ 8] [0401XSBR] +09:43:56 [ 42] [ 15] [999999 ] +09:43:56 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:43:56 [ 49] [ 3] [418] +09:43:56 [ 52] [ 16] [76FBF8191DC55DEB] +09:43:56 ============================================================================ +09:43:56 + + +waiting on router queue for slot.... +09:43:56 Sending to : +09:43:56 ============================================================================ +09:43:56 Sending to : +09:43:56 ============================================================================ +09:43:57 ============================================================================ +09:43:57 Slot Id : <201> +09:43:57 Transaction Type : REQUEST +09:43:57 Received From : +09:43:57 ============================================================================ +09:43:57 FNo. Len. Field Value +09:43:57 ============================================================================ +09:43:57 [ 1] [ 4] [0200] +09:43:57 [ 2] [ 16] [6213544000781127] +09:43:57 [ 3] [ 6] [010000] +09:43:57 [ 4] [ 12] [000010000000] +09:43:57 [ 7] [ 10] [0320024304] +09:43:57 [ 11] [ 6] [267733] +09:43:57 [ 12] [ 6] [094304] +09:43:57 [ 13] [ 4] [0320] +09:43:57 [ 14] [ 4] [4912] +09:43:57 [ 15] [ 4] [0320] +09:43:57 [ 18] [ 4] [6011] +09:43:57 [ 19] [ 3] [418] +09:43:57 [ 22] [ 3] [021] +09:43:57 [ 25] [ 2] [01] +09:43:57 [ 28] [ 9] [D00002000] +09:43:57 [ 32] [ 6] [180893] +09:43:57 [ 35] [ 32] [6213544000781127=491212018112869] +09:43:57 [ 37] [ 12] [507902267733] +09:43:57 [ 41] [ 8] [0401XSBR] +09:43:57 [ 42] [ 15] [999999 ] +09:43:57 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:43:57 [ 49] [ 3] [418] +09:43:57 [ 52] [ 16] [76FBF8191DC55DEB] +09:43:57 ============================================================================ +09:43:57 + + +waiting on router queue for slot.... +09:43:57 Sending to : +09:43:57 ============================================================================ +09:43:57 ============================================================================ +09:43:57 Slot Id : <201> +09:43:57 Transaction Type : REQUEST +09:43:57 Received From : +09:43:57 ============================================================================ +09:43:57 FNo. Len. Field Value +09:43:57 ============================================================================ +09:43:57 [ 1] [ 4] [0200] +09:43:57 [ 2] [ 16] [6213544000781127] +09:43:57 [ 3] [ 6] [010000] +09:43:57 [ 4] [ 12] [000010000000] +09:43:57 [ 7] [ 10] [0320024304] +09:43:57 [ 11] [ 6] [267733] +09:43:57 [ 12] [ 6] [094304] +09:43:57 [ 13] [ 4] [0320] +09:43:57 [ 14] [ 4] [4912] +09:43:57 [ 15] [ 4] [0320] +09:43:57 [ 18] [ 4] [6011] +09:43:57 [ 19] [ 3] [418] +09:43:57 [ 22] [ 3] [021] +09:43:57 [ 25] [ 2] [01] +09:43:57 [ 28] [ 9] [D00002000] +09:43:57 [ 32] [ 6] [180893] +09:43:57 [ 35] [ 32] [6213544000781127=491212018112869] +09:43:57 [ 37] [ 12] [507902267733] +09:43:57 [ 41] [ 8] [0401XSBR] +09:43:57 [ 42] [ 15] [999999 ] +09:43:57 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:43:57 [ 49] [ 3] [418] +09:43:57 [ 52] [ 16] [BF91CA27289D88EE] +09:43:57 ============================================================================ +09:43:57 + + +waiting on router queue for slot.... +09:43:57 Sending to : <0> +09:43:57 ============================================================================ +09:43:57 ============================================================================ +09:43:57 Slot Id : <201> +09:43:57 Transaction Type : RESPONSE +09:43:57 Received From : +09:43:57 ============================================================================ +09:43:57 FNo. Len. Field Value +09:43:57 ============================================================================ +09:43:57 [ 1] [ 4] [0210] +09:43:57 [ 2] [ 16] [6213544000781127] +09:43:57 [ 3] [ 6] [010000] +09:43:57 [ 4] [ 12] [000010000000] +09:43:57 [ 7] [ 10] [0320024304] +09:43:57 [ 11] [ 6] [267733] +09:43:57 [ 12] [ 6] [094304] +09:43:57 [ 13] [ 4] [0320] +09:43:57 [ 15] [ 4] [0320] +09:43:57 [ 18] [ 4] [6011] +09:43:57 [ 19] [ 3] [418] +09:43:57 [ 32] [ 6] [180893] +09:43:57 [ 35] [ 32] [6213544000781127=491212018112869] +09:43:57 [ 37] [ 12] [507902267733] +09:43:57 [ 38] [ 6] [335607] +09:43:57 [ 39] [ 2] [00] +09:43:57 [ 41] [ 8] [0401XSBR] +09:43:57 [ 49] [ 3] [418] +09:43:57 [ 54] [ 40] [0001418C0000197732030002418C000019773203] +09:43:57 ============================================================================ +09:43:57 Sending to : +09:43:57 ============================================================================ +09:43:57 + + +waiting on router queue for slot.... +09:43:59 ============================================================================ +09:43:59 Slot Id : <201> +09:43:59 Transaction Type : RESPONSE +09:43:59 Received From : +09:43:59 ============================================================================ +09:43:59 FNo. Len. Field Value +09:43:59 ============================================================================ +09:43:59 [ 1] [ 4] [0210] +09:43:59 [ 2] [ 16] [6213544000781127] +09:43:59 [ 3] [ 6] [010000] +09:43:59 [ 4] [ 12] [000010000000] +09:43:59 [ 7] [ 10] [0320024304] +09:43:59 [ 11] [ 6] [267733] +09:43:59 [ 12] [ 6] [094304] +09:43:59 [ 13] [ 4] [0320] +09:43:59 [ 15] [ 4] [0320] +09:43:59 [ 18] [ 4] [6011] +09:43:59 [ 19] [ 3] [418] +09:43:59 [ 32] [ 6] [180893] +09:43:59 [ 35] [ 32] [6213544000781127=491212018112869] +09:43:59 [ 37] [ 12] [507902267733] +09:43:59 [ 38] [ 6] [335607] +09:43:59 [ 39] [ 2] [00] +09:43:59 [ 41] [ 8] [0401XSBR] +09:43:59 [ 49] [ 3] [418] +09:43:59 [ 54] [ 40] [0001418C0000197732030002418C000019773203] +09:43:59 ============================================================================ +09:43:59 Calculate Source COMM Id = 2 +09:43:59 ============================================================================ +09:43:59 + + +waiting on router queue for slot.... +09:44:04 ============================================================================ +09:44:04 Slot Id : <214> +09:44:04 Transaction Type : REQUEST +09:44:04 Received From : +09:44:04 ============================================================================ +09:44:04 FNo. Len. Field Value +09:44:04 ============================================================================ +09:44:04 [ 1] [ 4] [0800] +09:44:04 [ 7] [ 10] [0320165552] +09:44:04 [ 11] [ 6] [095552] +09:44:04 [ 37] [ 12] [57909095552] +09:44:04 [ 70] [ 3] [301] +09:44:04 ============================================================================ +09:44:04 + + +waiting on router queue for slot.... +09:44:04 Sending to : +09:44:04 ============================================================================ +09:44:04 ============================================================================ +09:44:04 Slot Id : <214> +09:44:04 Transaction Type : RESPONSE +09:44:04 Received From : +09:44:04 ============================================================================ +09:44:04 FNo. Len. Field Value +09:44:04 ============================================================================ +09:44:04 [ 1] [ 4] [0810] +09:44:04 [ 7] [ 10] [0320165552] +09:44:04 [ 11] [ 6] [095552] +09:44:04 [ 37] [ 12] [579090955520] +09:44:04 [ 39] [ 2] [00] +09:44:04 [ 70] [ 3] [810] +09:44:04 ============================================================================ +09:44:04 Calculate Source COMM Id = 6 +09:44:04 ============================================================================ +09:44:04 + + +waiting on router queue for slot.... +09:44:10 ============================================================================ +09:44:10 Slot Id : <165> +09:44:10 Transaction Type : REQUEST +09:44:10 Received From : +09:44:10 ============================================================================ +09:44:10 FNo. Len. Field Value +09:44:10 ============================================================================ +09:44:10 [ 1] [ 4] [0200] +09:44:10 [ 2] [ 16] [6213544001752275] +09:44:10 [ 3] [ 6] [010000] +09:44:10 [ 4] [ 12] [000050000000] +09:44:10 [ 7] [ 10] [0320024315] +09:44:10 [ 11] [ 6] [267738] +09:44:10 [ 12] [ 6] [094315] +09:44:10 [ 13] [ 4] [0320] +09:44:10 [ 14] [ 4] [4912] +09:44:10 [ 15] [ 4] [0320] +09:44:10 [ 18] [ 4] [6011] +09:44:10 [ 19] [ 3] [418] +09:44:10 [ 22] [ 3] [021] +09:44:10 [ 25] [ 2] [01] +09:44:10 [ 28] [ 9] [D00002000] +09:44:10 [ 32] [ 6] [180893] +09:44:10 [ 35] [ 32] [6213544001752275=491212015227326] +09:44:10 [ 37] [ 12] [507902267738] +09:44:10 [ 41] [ 8] [0522XYXH] +09:44:10 [ 42] [ 15] [999999 ] +09:44:10 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +09:44:10 [ 49] [ 3] [418] +09:44:10 [ 52] [ 16] [F8FC07C7D8A574B6] +09:44:10 ============================================================================ +09:44:10 + + +waiting on router queue for slot.... +09:44:10 Sending to : +09:44:10 ============================================================================ +09:44:10 Sending to : +09:44:10 ============================================================================ +09:44:10 ============================================================================ +09:44:10 Slot Id : <165> +09:44:10 Transaction Type : REQUEST +09:44:10 Received From : +09:44:10 ============================================================================ +09:44:10 FNo. Len. Field Value +09:44:10 ============================================================================ +09:44:10 [ 1] [ 4] [0200] +09:44:10 [ 2] [ 16] [6213544001752275] +09:44:10 [ 3] [ 6] [010000] +09:44:10 [ 4] [ 12] [000050000000] +09:44:10 [ 7] [ 10] [0320024315] +09:44:10 [ 11] [ 6] [267738] +09:44:10 [ 12] [ 6] [094315] +09:44:10 [ 13] [ 4] [0320] +09:44:10 [ 14] [ 4] [4912] +09:44:10 [ 15] [ 4] [0320] +09:44:10 [ 18] [ 4] [6011] +09:44:10 [ 19] [ 3] [418] +09:44:10 [ 22] [ 3] [021] +09:44:10 [ 25] [ 2] [01] +09:44:10 [ 28] [ 9] [D00002000] +09:44:10 [ 32] [ 6] [180893] +09:44:10 [ 35] [ 32] [6213544001752275=491212015227326] +09:44:10 [ 37] [ 12] [507902267738] +09:44:10 [ 41] [ 8] [0522XYXH] +09:44:10 [ 42] [ 15] [999999 ] +09:44:10 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +09:44:10 [ 49] [ 3] [418] +09:44:10 [ 52] [ 16] [F8FC07C7D8A574B6] +09:44:10 ============================================================================ +09:44:10 + + +waiting on router queue for slot.... +09:44:10 Sending to : +09:44:10 ============================================================================ +09:44:10 ============================================================================ +09:44:10 Slot Id : <165> +09:44:10 Transaction Type : REQUEST +09:44:10 Received From : +09:44:10 ============================================================================ +09:44:10 FNo. Len. Field Value +09:44:10 ============================================================================ +09:44:10 [ 1] [ 4] [0200] +09:44:10 [ 2] [ 16] [6213544001752275] +09:44:10 [ 3] [ 6] [010000] +09:44:10 [ 4] [ 12] [000050000000] +09:44:10 [ 7] [ 10] [0320024315] +09:44:10 [ 11] [ 6] [267738] +09:44:10 [ 12] [ 6] [094315] +09:44:10 [ 13] [ 4] [0320] +09:44:10 [ 14] [ 4] [4912] +09:44:10 [ 15] [ 4] [0320] +09:44:10 [ 18] [ 4] [6011] +09:44:10 [ 19] [ 3] [418] +09:44:10 [ 22] [ 3] [021] +09:44:10 [ 25] [ 2] [01] +09:44:10 [ 28] [ 9] [D00002000] +09:44:10 [ 32] [ 6] [180893] +09:44:10 [ 35] [ 32] [6213544001752275=491212015227326] +09:44:10 [ 37] [ 12] [507902267738] +09:44:10 [ 41] [ 8] [0522XYXH] +09:44:10 [ 42] [ 15] [999999 ] +09:44:10 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +09:44:10 [ 49] [ 3] [418] +09:44:10 [ 52] [ 16] [2CA3C2DE13301BAC] +09:44:10 ============================================================================ +09:44:10 + + +waiting on router queue for slot.... +09:44:10 Sending to : <0> +09:44:10 ============================================================================ +09:44:11 ============================================================================ +09:44:11 Slot Id : <165> +09:44:11 Transaction Type : RESPONSE +09:44:11 Received From : +09:44:11 ============================================================================ +09:44:11 FNo. Len. Field Value +09:44:11 ============================================================================ +09:44:11 [ 1] [ 4] [0210] +09:44:11 [ 2] [ 16] [6213544001752275] +09:44:11 [ 3] [ 6] [010000] +09:44:11 [ 4] [ 12] [000050000000] +09:44:11 [ 7] [ 10] [0320024315] +09:44:11 [ 11] [ 6] [267738] +09:44:11 [ 12] [ 6] [094315] +09:44:11 [ 13] [ 4] [0320] +09:44:11 [ 15] [ 4] [0320] +09:44:11 [ 18] [ 4] [6011] +09:44:11 [ 19] [ 3] [418] +09:44:11 [ 32] [ 6] [180893] +09:44:11 [ 35] [ 32] [6213544001752275=491212015227326] +09:44:11 [ 37] [ 12] [507902267738] +09:44:11 [ 38] [ 6] [478129] +09:44:11 [ 39] [ 2] [00] +09:44:11 [ 41] [ 8] [0522XYXH] +09:44:11 [ 49] [ 3] [418] +09:44:11 [ 54] [ 40] [0001418C0000229010570002418C000022901057] +09:44:11 ============================================================================ +09:44:11 Sending to : +09:44:11 ============================================================================ +09:44:11 + + +waiting on router queue for slot.... +09:44:12 ============================================================================ +09:44:12 Slot Id : <165> +09:44:12 Transaction Type : RESPONSE +09:44:12 Received From : +09:44:12 ============================================================================ +09:44:12 FNo. Len. Field Value +09:44:12 ============================================================================ +09:44:12 [ 1] [ 4] [0210] +09:44:12 [ 2] [ 16] [6213544001752275] +09:44:12 [ 3] [ 6] [010000] +09:44:12 [ 4] [ 12] [000050000000] +09:44:12 [ 7] [ 10] [0320024315] +09:44:12 [ 11] [ 6] [267738] +09:44:12 [ 12] [ 6] [094315] +09:44:12 [ 13] [ 4] [0320] +09:44:12 [ 15] [ 4] [0320] +09:44:12 [ 18] [ 4] [6011] +09:44:12 [ 19] [ 3] [418] +09:44:12 [ 32] [ 6] [180893] +09:44:12 [ 35] [ 32] [6213544001752275=491212015227326] +09:44:12 [ 37] [ 12] [507902267738] +09:44:12 [ 38] [ 6] [478129] +09:44:12 [ 39] [ 2] [00] +09:44:12 [ 41] [ 8] [0522XYXH] +09:44:12 [ 49] [ 3] [418] +09:44:12 [ 54] [ 40] [0001418C0000229010570002418C000022901057] +09:44:12 ============================================================================ +09:44:12 Calculate Source COMM Id = 2 +09:44:12 ============================================================================ +09:44:12 + + +waiting on router queue for slot.... +09:44:18 ============================================================================ +09:44:18 Slot Id : <194> +09:44:18 Transaction Type : REQUEST +09:44:18 Received From : +09:44:18 ============================================================================ +09:44:18 FNo. Len. Field Value +09:44:18 ============================================================================ +09:44:18 [ 1] [ 4] [0200] +09:44:18 [ 2] [ 16] [6688990060034814] +09:44:18 [ 3] [ 6] [301000] +09:44:18 [ 4] [ 12] [000000000000] +09:44:18 [ 7] [ 10] [0320094414] +09:44:18 [ 11] [ 6] [702964] +09:44:18 [ 12] [ 6] [094414] +09:44:18 [ 13] [ 4] [0320] +09:44:18 [ 15] [ 4] [0320] +09:44:18 [ 18] [ 4] [6011] +09:44:18 [ 22] [ 3] [900] +09:44:18 [ 25] [ 2] [02] +09:44:18 [ 28] [ 9] [D00000000] +09:44:18 [ 32] [ 6] [621354] +09:44:18 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:44:18 [ 37] [ 12] [507904153825] +09:44:18 [ 41] [ 8] [20001000] +09:44:18 [ 42] [ 15] [NATIVE ] +09:44:18 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +09:44:18 [ 49] [ 3] [418] +09:44:18 [ 52] [ 16] [3CC8D4E47C871A05] +09:44:18 ============================================================================ +09:44:18 + + +waiting on router queue for slot.... +09:44:18 Sending to : +09:44:18 ============================================================================ +09:44:18 Sending to : +09:44:18 ============================================================================ +09:44:19 ============================================================================ +09:44:19 Slot Id : <194> +09:44:19 Transaction Type : REQUEST +09:44:19 Received From : +09:44:19 ============================================================================ +09:44:19 FNo. Len. Field Value +09:44:19 ============================================================================ +09:44:19 [ 1] [ 4] [0200] +09:44:19 [ 2] [ 16] [6688990060034814] +09:44:19 [ 3] [ 6] [301000] +09:44:19 [ 4] [ 12] [000000000000] +09:44:19 [ 7] [ 10] [0320094414] +09:44:19 [ 11] [ 6] [702964] +09:44:19 [ 12] [ 6] [094414] +09:44:19 [ 13] [ 4] [0320] +09:44:19 [ 15] [ 4] [0320] +09:44:19 [ 18] [ 4] [6011] +09:44:19 [ 22] [ 3] [900] +09:44:19 [ 25] [ 2] [02] +09:44:19 [ 28] [ 9] [D00000000] +09:44:19 [ 32] [ 6] [621354] +09:44:19 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:44:19 [ 37] [ 12] [507904153825] +09:44:19 [ 41] [ 8] [20001000] +09:44:19 [ 42] [ 15] [NATIVE ] +09:44:19 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +09:44:19 [ 49] [ 3] [418] +09:44:19 [ 52] [ 16] [3CC8D4E47C871A05] +09:44:19 ============================================================================ +09:44:19 + + +waiting on router queue for slot.... +09:44:19 Sending to : +09:44:19 ============================================================================ +09:44:19 ============================================================================ +09:44:19 Slot Id : <194> +09:44:19 Transaction Type : REQUEST +09:44:19 Received From : +09:44:19 ============================================================================ +09:44:19 FNo. Len. Field Value +09:44:19 ============================================================================ +09:44:19 [ 1] [ 4] [0200] +09:44:19 [ 2] [ 16] [6688990060034814] +09:44:19 [ 3] [ 6] [301000] +09:44:19 [ 4] [ 12] [000000000000] +09:44:19 [ 7] [ 10] [0320094414] +09:44:19 [ 11] [ 6] [702964] +09:44:19 [ 12] [ 6] [094414] +09:44:19 [ 13] [ 4] [0320] +09:44:19 [ 15] [ 4] [0320] +09:44:19 [ 18] [ 4] [6011] +09:44:19 [ 22] [ 3] [900] +09:44:19 [ 25] [ 2] [02] +09:44:19 [ 28] [ 9] [D00000000] +09:44:19 [ 32] [ 6] [621354] +09:44:19 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:44:19 [ 37] [ 12] [507904153825] +09:44:19 [ 41] [ 8] [20001000] +09:44:19 [ 42] [ 15] [NATIVE ] +09:44:19 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +09:44:19 [ 49] [ 3] [418] +09:44:19 [ 52] [ 16] [3C2FAFEFD4197364] +09:44:19 ============================================================================ +09:44:19 + + +waiting on router queue for slot.... +09:44:19 Sending to : <4> +09:44:19 ============================================================================ +09:44:20 ============================================================================ +09:44:20 Slot Id : <194> +09:44:20 Transaction Type : RESPONSE +09:44:20 Received From : +09:44:20 ============================================================================ +09:44:20 FNo. Len. Field Value +09:44:20 ============================================================================ +09:44:20 [ 1] [ 4] [0210] +09:44:20 [ 2] [ 16] [6688990060034814] +09:44:20 [ 3] [ 6] [301000] +09:44:20 [ 4] [ 12] [000000000000] +09:44:20 [ 11] [ 6] [702964] +09:44:20 [ 12] [ 6] [094414] +09:44:20 [ 15] [ 4] [0320] +09:44:20 [ 18] [ 4] [6011] +09:44:20 [ 32] [ 6] [621354] +09:44:20 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:44:20 [ 37] [ 12] [507904153825] +09:44:20 [ 38] [ 6] [378084] +09:44:20 [ 39] [ 2] [00] +09:44:20 [ 41] [ 8] [20001000] +09:44:20 [ 49] [ 3] [418] +09:44:20 [ 54] [ 20] [1002418C000292175088] +09:44:20 ============================================================================ +09:44:20 Sending to : +09:44:20 ============================================================================ +09:44:20 + + +waiting on router queue for slot.... +09:44:21 ============================================================================ +09:44:21 Slot Id : <194> +09:44:21 Transaction Type : RESPONSE +09:44:21 Received From : +09:44:21 ============================================================================ +09:44:21 FNo. Len. Field Value +09:44:21 ============================================================================ +09:44:21 [ 1] [ 4] [0210] +09:44:21 [ 2] [ 16] [6688990060034814] +09:44:21 [ 3] [ 6] [301000] +09:44:21 [ 4] [ 12] [000000000000] +09:44:21 [ 11] [ 6] [702964] +09:44:21 [ 12] [ 6] [094414] +09:44:21 [ 15] [ 4] [0320] +09:44:21 [ 18] [ 4] [6011] +09:44:21 [ 32] [ 6] [621354] +09:44:21 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:44:21 [ 37] [ 12] [507904153825] +09:44:21 [ 38] [ 6] [378084] +09:44:21 [ 39] [ 2] [00] +09:44:21 [ 41] [ 8] [20001000] +09:44:21 [ 49] [ 3] [418] +09:44:21 [ 54] [ 20] [1002418C000292175088] +09:44:21 ============================================================================ +09:44:21 Calculate Source COMM Id = 0 +09:44:21 ============================================================================ +09:44:21 + + +waiting on router queue for slot.... +09:44:25 ============================================================================ +09:44:25 Slot Id : <195> +09:44:25 Transaction Type : REQUEST +09:44:25 Received From : +09:44:25 ============================================================================ +09:44:25 FNo. Len. Field Value +09:44:25 ============================================================================ +09:44:25 [ 1] [ 4] [0800] +09:44:25 [ 7] [ 10] [0320024331] +09:44:25 [ 11] [ 6] [155690] +09:44:25 [ 70] [ 3] [301] +09:44:25 ============================================================================ +09:44:25 + + +waiting on router queue for slot.... +09:44:25 Sending to : +09:44:25 ============================================================================ +09:44:25 ============================================================================ +09:44:25 Slot Id : <195> +09:44:25 Transaction Type : RESPONSE +09:44:25 Received From : +09:44:25 ============================================================================ +09:44:25 FNo. Len. Field Value +09:44:25 ============================================================================ +09:44:25 [ 1] [ 4] [0810] +09:44:25 [ 7] [ 10] [0320024331] +09:44:25 [ 11] [ 6] [155690] +09:44:25 [ 39] [ 2] [00] +09:44:25 [ 70] [ 3] [301] +09:44:25 ============================================================================ +09:44:25 Calculate Source COMM Id = 2 +09:44:25 ============================================================================ +09:44:25 + + +waiting on router queue for slot.... +09:44:27 ============================================================================ +09:44:27 Slot Id : <184> +09:44:27 Transaction Type : REQUEST +09:44:27 Received From : +09:44:27 ============================================================================ +09:44:27 FNo. Len. Field Value +09:44:27 ============================================================================ +09:44:27 [ 1] [ 4] [0800] +09:44:27 [ 2] [ 5] [02531] +09:44:27 [ 3] [ 6] [579098] +09:44:27 [ 7] [ 10] [0320024427] +09:44:27 [ 11] [ 6] [806977] +09:44:27 [ 15] [ 10] [0320024427] +09:44:27 [ 37] [ 11] [57909806977] +09:44:27 [ 70] [ 3] [001] +09:44:27 ============================================================================ +09:44:27 + + +waiting on router queue for slot.... +09:44:27 ============================================================================ +09:44:27 Slot Id : <184> +09:44:27 Transaction Type : RESPONSE +09:44:27 Received From : +09:44:27 ============================================================================ +09:44:27 FNo. Len. Field Value +09:44:27 ============================================================================ +09:44:27 [ 1] [ 4] [0810] +09:44:27 [ 7] [ 10] [0320024427] +09:44:27 [ 11] [ 6] [806977] +09:44:27 [ 15] [ 4] [0320] +09:44:27 [ 37] [ 12] [57909806977] +09:44:27 [ 39] [ 2] [00] +09:44:27 [ 70] [ 3] [001] +09:44:27 ============================================================================ +09:44:27 Sending to : +09:44:27 ============================================================================ +09:44:27 + + +waiting on router queue for slot.... +09:44:32 ============================================================================ +09:44:32 Slot Id : <209> +09:44:32 Transaction Type : REQUEST +09:44:32 Received From : +09:44:32 ============================================================================ +09:44:32 FNo. Len. Field Value +09:44:32 ============================================================================ +09:44:32 [ 1] [ 4] [0200] +09:44:32 [ 2] [ 16] [6213545000476352] +09:44:32 [ 3] [ 6] [010000] +09:44:32 [ 4] [ 12] [000100000000] +09:44:32 [ 7] [ 10] [0320024339] +09:44:32 [ 11] [ 6] [267744] +09:44:32 [ 12] [ 6] [094339] +09:44:32 [ 13] [ 4] [0320] +09:44:32 [ 14] [ 4] [4912] +09:44:32 [ 15] [ 4] [0320] +09:44:32 [ 18] [ 4] [6011] +09:44:32 [ 19] [ 3] [418] +09:44:32 [ 22] [ 3] [021] +09:44:32 [ 25] [ 2] [01] +09:44:32 [ 28] [ 9] [D00002000] +09:44:32 [ 32] [ 6] [180893] +09:44:32 [ 35] [ 32] [6213545000476352=491212017635848] +09:44:32 [ 37] [ 12] [507902267744] +09:44:32 [ 41] [ 8] [0366SKTT] +09:44:32 [ 42] [ 15] [999999 ] +09:44:32 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:44:32 [ 49] [ 3] [418] +09:44:32 [ 52] [ 16] [F586E6CE4BFAFD35] +09:44:32 ============================================================================ +09:44:32 + + +waiting on router queue for slot.... +09:44:32 Sending to : +09:44:32 ============================================================================ +09:44:32 Sending to : +09:44:32 ============================================================================ +09:44:32 ============================================================================ +09:44:32 Slot Id : <209> +09:44:32 Transaction Type : REQUEST +09:44:32 Received From : +09:44:32 ============================================================================ +09:44:32 FNo. Len. Field Value +09:44:32 ============================================================================ +09:44:32 [ 1] [ 4] [0200] +09:44:32 [ 2] [ 16] [6213545000476352] +09:44:32 [ 3] [ 6] [010000] +09:44:32 [ 4] [ 12] [000100000000] +09:44:32 [ 7] [ 10] [0320024339] +09:44:32 [ 11] [ 6] [267744] +09:44:32 [ 12] [ 6] [094339] +09:44:32 [ 13] [ 4] [0320] +09:44:32 [ 14] [ 4] [4912] +09:44:32 [ 15] [ 4] [0320] +09:44:32 [ 18] [ 4] [6011] +09:44:32 [ 19] [ 3] [418] +09:44:32 [ 22] [ 3] [021] +09:44:32 [ 25] [ 2] [01] +09:44:32 [ 28] [ 9] [D00002000] +09:44:32 [ 32] [ 6] [180893] +09:44:32 [ 35] [ 32] [6213545000476352=491212017635848] +09:44:32 [ 37] [ 12] [507902267744] +09:44:32 [ 41] [ 8] [0366SKTT] +09:44:32 [ 42] [ 15] [999999 ] +09:44:32 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:44:32 [ 49] [ 3] [418] +09:44:32 [ 52] [ 16] [F586E6CE4BFAFD35] +09:44:32 ============================================================================ +09:44:32 + + +waiting on router queue for slot.... +09:44:32 Sending to : +09:44:32 ============================================================================ +09:44:32 ============================================================================ +09:44:32 Slot Id : <209> +09:44:32 Transaction Type : REQUEST +09:44:32 Received From : +09:44:32 ============================================================================ +09:44:32 FNo. Len. Field Value +09:44:32 ============================================================================ +09:44:32 [ 1] [ 4] [0200] +09:44:32 [ 2] [ 16] [6213545000476352] +09:44:32 [ 3] [ 6] [010000] +09:44:32 [ 4] [ 12] [000100000000] +09:44:32 [ 7] [ 10] [0320024339] +09:44:32 [ 11] [ 6] [267744] +09:44:32 [ 12] [ 6] [094339] +09:44:32 [ 13] [ 4] [0320] +09:44:32 [ 14] [ 4] [4912] +09:44:32 [ 15] [ 4] [0320] +09:44:32 [ 18] [ 4] [6011] +09:44:32 [ 19] [ 3] [418] +09:44:32 [ 22] [ 3] [021] +09:44:32 [ 25] [ 2] [01] +09:44:32 [ 28] [ 9] [D00002000] +09:44:32 [ 32] [ 6] [180893] +09:44:32 [ 35] [ 32] [6213545000476352=491212017635848] +09:44:32 [ 37] [ 12] [507902267744] +09:44:32 [ 41] [ 8] [0366SKTT] +09:44:32 [ 42] [ 15] [999999 ] +09:44:32 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:44:32 [ 49] [ 3] [418] +09:44:32 [ 52] [ 16] [AAD0D3FB346133A7] +09:44:32 ============================================================================ +09:44:32 + + +waiting on router queue for slot.... +09:44:32 Sending to : <0> +09:44:32 ============================================================================ +09:44:33 ============================================================================ +09:44:33 Slot Id : <209> +09:44:33 Transaction Type : RESPONSE +09:44:33 Received From : +09:44:33 ============================================================================ +09:44:33 FNo. Len. Field Value +09:44:33 ============================================================================ +09:44:33 [ 1] [ 4] [0210] +09:44:33 [ 2] [ 16] [6213545000476352] +09:44:33 [ 3] [ 6] [010000] +09:44:33 [ 4] [ 12] [000100000000] +09:44:33 [ 7] [ 10] [0320024339] +09:44:33 [ 11] [ 6] [267744] +09:44:33 [ 12] [ 6] [094339] +09:44:33 [ 13] [ 4] [0320] +09:44:33 [ 15] [ 4] [0320] +09:44:33 [ 18] [ 4] [6011] +09:44:33 [ 19] [ 3] [418] +09:44:33 [ 32] [ 6] [180893] +09:44:33 [ 35] [ 32] [6213545000476352=491212017635848] +09:44:33 [ 37] [ 12] [507902267744] +09:44:33 [ 38] [ 6] [971681] +09:44:33 [ 39] [ 2] [00] +09:44:33 [ 41] [ 8] [0366SKTT] +09:44:33 [ 49] [ 3] [418] +09:44:33 [ 54] [ 40] [0001418C0002031263840002418C000203126384] +09:44:33 ============================================================================ +09:44:33 Sending to : +09:44:33 ============================================================================ +09:44:33 + + +waiting on router queue for slot.... +09:44:33 ============================================================================ +09:44:33 Slot Id : <178> +09:44:33 Transaction Type : REQUEST +09:44:33 Received From : +09:44:33 ============================================================================ +09:44:33 FNo. Len. Field Value +09:44:33 ============================================================================ +09:44:33 [ 1] [ 4] [0200] +09:44:33 [ 2] [ 16] [6213541000412117] +09:44:33 [ 3] [ 6] [010000] +09:44:33 [ 4] [ 12] [000020000000] +09:44:33 [ 7] [ 10] [0320094225] +09:44:33 [ 11] [ 6] [936431] +09:44:33 [ 12] [ 6] [094225] +09:44:33 [ 13] [ 4] [0320] +09:44:33 [ 15] [ 4] [0320] +09:44:33 [ 18] [ 4] [6011] +09:44:33 [ 19] [ 3] [418] +09:44:33 [ 22] [ 3] [021] +09:44:33 [ 25] [ 2] [01] +09:44:33 [ 28] [ 9] [D00002000] +09:44:33 [ 32] [ 6] [668899] +09:44:33 [ 35] [ 32] [6213541000412117=491212011211947] +09:44:33 [ 37] [ 12] [507902308440] +09:44:33 [ 41] [ 8] [03011003] +09:44:33 [ 42] [ 15] [APT ] +09:44:33 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +09:44:33 [ 49] [ 3] [418] +09:44:33 [ 52] [ 16] [DE244D264888B594] +09:44:33 ============================================================================ +09:44:33 + + +waiting on router queue for slot.... +09:44:33 Sending to : +09:44:33 ============================================================================ +09:44:33 Sending to : +09:44:33 ============================================================================ +09:44:34 ============================================================================ +09:44:34 Slot Id : <178> +09:44:34 Transaction Type : REQUEST +09:44:34 Received From : +09:44:34 ============================================================================ +09:44:34 FNo. Len. Field Value +09:44:34 ============================================================================ +09:44:34 [ 1] [ 4] [0200] +09:44:34 [ 2] [ 16] [6213541000412117] +09:44:34 [ 3] [ 6] [010000] +09:44:34 [ 4] [ 12] [000020000000] +09:44:34 [ 7] [ 10] [0320094225] +09:44:34 [ 11] [ 6] [936431] +09:44:34 [ 12] [ 6] [094225] +09:44:34 [ 13] [ 4] [0320] +09:44:34 [ 15] [ 4] [0320] +09:44:34 [ 18] [ 4] [6011] +09:44:34 [ 19] [ 3] [418] +09:44:34 [ 22] [ 3] [021] +09:44:34 [ 25] [ 2] [01] +09:44:34 [ 28] [ 9] [D00002000] +09:44:34 [ 32] [ 6] [668899] +09:44:34 [ 35] [ 32] [6213541000412117=491212011211947] +09:44:34 [ 37] [ 12] [507902308440] +09:44:34 [ 41] [ 8] [03011003] +09:44:34 [ 42] [ 15] [APT ] +09:44:34 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +09:44:34 [ 49] [ 3] [418] +09:44:34 [ 52] [ 16] [DE244D264888B594] +09:44:34 ============================================================================ +09:44:34 + + +waiting on router queue for slot.... +09:44:34 Sending to : +09:44:34 ============================================================================ +09:44:34 ============================================================================ +09:44:34 Slot Id : <178> +09:44:34 Transaction Type : REQUEST +09:44:34 Received From : +09:44:34 ============================================================================ +09:44:34 FNo. Len. Field Value +09:44:34 ============================================================================ +09:44:34 [ 1] [ 4] [0200] +09:44:34 [ 2] [ 16] [6213541000412117] +09:44:34 [ 3] [ 6] [010000] +09:44:34 [ 4] [ 12] [000020000000] +09:44:34 [ 7] [ 10] [0320094225] +09:44:34 [ 11] [ 6] [936431] +09:44:34 [ 12] [ 6] [094225] +09:44:34 [ 13] [ 4] [0320] +09:44:34 [ 15] [ 4] [0320] +09:44:34 [ 18] [ 4] [6011] +09:44:34 [ 19] [ 3] [418] +09:44:34 [ 22] [ 3] [021] +09:44:34 [ 25] [ 2] [01] +09:44:34 [ 28] [ 9] [D00002000] +09:44:34 [ 32] [ 6] [668899] +09:44:34 [ 35] [ 32] [6213541000412117=491212011211947] +09:44:34 [ 37] [ 12] [507902308440] +09:44:34 [ 41] [ 8] [03011003] +09:44:34 [ 42] [ 15] [APT ] +09:44:34 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +09:44:34 [ 49] [ 3] [418] +09:44:34 [ 52] [ 16] [EF820D0200B0EDBD] +09:44:34 ============================================================================ +09:44:34 + + +waiting on router queue for slot.... +09:44:34 Sending to : <0> +09:44:34 ============================================================================ +09:44:34 ============================================================================ +09:44:34 Slot Id : <178> +09:44:34 Transaction Type : RESPONSE +09:44:34 Received From : +09:44:34 ============================================================================ +09:44:34 FNo. Len. Field Value +09:44:34 ============================================================================ +09:44:34 [ 1] [ 4] [0210] +09:44:34 [ 2] [ 16] [6213541000412117] +09:44:34 [ 3] [ 6] [010000] +09:44:34 [ 4] [ 12] [000020000000] +09:44:34 [ 7] [ 10] [0320094225] +09:44:34 [ 11] [ 6] [936431] +09:44:34 [ 12] [ 6] [094225] +09:44:34 [ 13] [ 4] [0320] +09:44:34 [ 15] [ 4] [0320] +09:44:34 [ 18] [ 4] [6011] +09:44:34 [ 19] [ 3] [418] +09:44:34 [ 32] [ 6] [668899] +09:44:34 [ 35] [ 32] [6213541000412117=491212011211947] +09:44:34 [ 37] [ 12] [507902308440] +09:44:34 [ 38] [ 6] [370534] +09:44:34 [ 39] [ 2] [00] +09:44:34 [ 41] [ 8] [03011003] +09:44:34 [ 49] [ 3] [418] +09:44:34 [ 54] [ 40] [0001418C0001774908820002418C000177490882] +09:44:34 ============================================================================ +09:44:34 Sending to : +09:44:34 ============================================================================ +09:44:34 + + +waiting on router queue for slot.... +09:44:35 ============================================================================ +09:44:35 Slot Id : <209> +09:44:35 Transaction Type : RESPONSE +09:44:35 Received From : +09:44:35 ============================================================================ +09:44:35 FNo. Len. Field Value +09:44:35 ============================================================================ +09:44:35 [ 1] [ 4] [0210] +09:44:35 [ 2] [ 16] [6213545000476352] +09:44:35 [ 3] [ 6] [010000] +09:44:35 [ 4] [ 12] [000100000000] +09:44:35 [ 7] [ 10] [0320024339] +09:44:35 [ 11] [ 6] [267744] +09:44:35 [ 12] [ 6] [094339] +09:44:35 [ 13] [ 4] [0320] +09:44:35 [ 15] [ 4] [0320] +09:44:35 [ 18] [ 4] [6011] +09:44:35 [ 19] [ 3] [418] +09:44:35 [ 32] [ 6] [180893] +09:44:35 [ 35] [ 32] [6213545000476352=491212017635848] +09:44:35 [ 37] [ 12] [507902267744] +09:44:35 [ 38] [ 6] [971681] +09:44:35 [ 39] [ 2] [00] +09:44:35 [ 41] [ 8] [0366SKTT] +09:44:35 [ 49] [ 3] [418] +09:44:35 [ 54] [ 40] [0001418C0002031263840002418C000203126384] +09:44:35 ============================================================================ +09:44:35 Calculate Source COMM Id = 2 +09:44:35 ============================================================================ +09:44:35 + + +waiting on router queue for slot.... +09:44:36 ============================================================================ +09:44:36 Slot Id : <178> +09:44:36 Transaction Type : RESPONSE +09:44:36 Received From : +09:44:36 ============================================================================ +09:44:36 FNo. Len. Field Value +09:44:36 ============================================================================ +09:44:36 [ 1] [ 4] [0210] +09:44:36 [ 2] [ 16] [6213541000412117] +09:44:36 [ 3] [ 6] [010000] +09:44:36 [ 4] [ 12] [000020000000] +09:44:36 [ 7] [ 10] [0320094225] +09:44:36 [ 11] [ 6] [936431] +09:44:36 [ 12] [ 6] [094225] +09:44:36 [ 13] [ 4] [0320] +09:44:36 [ 15] [ 4] [0320] +09:44:36 [ 18] [ 4] [6011] +09:44:36 [ 19] [ 3] [418] +09:44:36 [ 32] [ 6] [668899] +09:44:36 [ 35] [ 32] [6213541000412117=491212011211947] +09:44:36 [ 37] [ 12] [507902308440] +09:44:36 [ 38] [ 6] [370534] +09:44:36 [ 39] [ 2] [00] +09:44:36 [ 41] [ 8] [03011003] +09:44:36 [ 49] [ 3] [418] +09:44:36 [ 54] [ 40] [0001418C0001774908820002418C000177490882] +09:44:36 ============================================================================ +09:44:36 Calculate Source COMM Id = 4 +09:44:36 ============================================================================ +09:44:36 + + +waiting on router queue for slot.... +09:44:47 ============================================================================ +09:44:47 Slot Id : <213> +09:44:47 Transaction Type : REQUEST +09:44:47 Received From : +09:44:47 ============================================================================ +09:44:47 FNo. Len. Field Value +09:44:47 ============================================================================ +09:44:47 [ 1] [ 4] [0800] +09:44:47 [ 7] [ 10] [0320024355] +09:44:47 [ 11] [ 6] [155691] +09:44:47 [ 70] [ 3] [301] +09:44:47 ============================================================================ +09:44:47 + + +waiting on router queue for slot.... +09:44:47 Sending to : +09:44:47 ============================================================================ +09:44:47 ============================================================================ +09:44:47 Slot Id : <213> +09:44:47 Transaction Type : RESPONSE +09:44:47 Received From : +09:44:47 ============================================================================ +09:44:47 FNo. Len. Field Value +09:44:47 ============================================================================ +09:44:47 [ 1] [ 4] [0810] +09:44:47 [ 7] [ 10] [0320024355] +09:44:47 [ 11] [ 6] [155691] +09:44:47 [ 39] [ 2] [00] +09:44:47 [ 70] [ 3] [301] +09:44:47 ============================================================================ +09:44:47 Calculate Source COMM Id = 2 +09:44:47 ============================================================================ +09:44:47 + + +waiting on router queue for slot.... +09:44:54 ============================================================================ +09:44:54 Slot Id : <206> +09:44:54 Transaction Type : REQUEST +09:44:54 Received From : +09:44:54 ============================================================================ +09:44:54 FNo. Len. Field Value +09:44:54 ============================================================================ +09:44:54 [ 1] [ 4] [0800] +09:44:54 [ 7] [ 10] [0320025242] +09:44:54 [ 11] [ 6] [079737] +09:44:54 [ 37] [ 12] [57909079737] +09:44:54 [ 70] [ 3] [301] +09:44:54 ============================================================================ +09:44:54 + + +waiting on router queue for slot.... +09:44:54 Sending to : +09:44:54 ============================================================================ +09:44:54 ============================================================================ +09:44:54 Slot Id : <206> +09:44:54 Transaction Type : RESPONSE +09:44:54 Received From : +09:44:54 ============================================================================ +09:44:54 FNo. Len. Field Value +09:44:54 ============================================================================ +09:44:54 [ 1] [ 4] [0810] +09:44:54 [ 7] [ 10] [0320025242] +09:44:54 [ 11] [ 6] [079737] +09:44:54 [ 37] [ 12] [579090797370] +09:44:54 [ 39] [ 2] [00] +09:44:54 [ 70] [ 3] [810] +09:44:54 ============================================================================ +09:44:54 Calculate Source COMM Id = 1 +09:44:54 ============================================================================ +09:44:54 + + +waiting on router queue for slot.... +09:44:57 ============================================================================ +09:44:57 Slot Id : <208> +09:44:57 Transaction Type : REQUEST +09:44:57 Received From : +09:44:57 ============================================================================ +09:44:57 FNo. Len. Field Value +09:44:57 ============================================================================ +09:44:57 [ 1] [ 4] [0800] +09:44:57 [ 7] [ 10] [0320024405] +09:44:57 [ 11] [ 6] [155692] +09:44:57 [ 70] [ 3] [301] +09:44:57 ============================================================================ +09:44:57 + + +waiting on router queue for slot.... +09:44:57 Sending to : +09:44:57 ============================================================================ +09:44:57 ============================================================================ +09:44:57 Slot Id : <208> +09:44:57 Transaction Type : RESPONSE +09:44:57 Received From : +09:44:57 ============================================================================ +09:44:57 FNo. Len. Field Value +09:44:57 ============================================================================ +09:44:57 [ 1] [ 4] [0810] +09:44:57 [ 7] [ 10] [0320024405] +09:44:57 [ 11] [ 6] [155692] +09:44:57 [ 39] [ 2] [00] +09:44:57 [ 70] [ 3] [301] +09:44:57 ============================================================================ +09:44:57 Calculate Source COMM Id = 2 +09:44:57 ============================================================================ +09:44:57 + + +waiting on router queue for slot.... +09:44:58 ============================================================================ +09:44:58 Slot Id : <221> +09:44:58 Transaction Type : REQUEST +09:44:58 Received From : +09:44:58 ============================================================================ +09:44:58 FNo. Len. Field Value +09:44:58 ============================================================================ +09:44:58 [ 1] [ 4] [0200] +09:44:58 [ 2] [ 16] [1808930200045425] +09:44:58 [ 3] [ 6] [011000] +09:44:58 [ 4] [ 12] [000030000000] +09:44:58 [ 7] [ 10] [0320094454] +09:44:58 [ 11] [ 6] [703145] +09:44:58 [ 12] [ 6] [094454] +09:44:58 [ 13] [ 4] [0320] +09:44:58 [ 15] [ 4] [0320] +09:44:58 [ 18] [ 4] [6011] +09:44:58 [ 22] [ 3] [900] +09:44:58 [ 25] [ 2] [02] +09:44:58 [ 28] [ 9] [D00002000] +09:44:58 [ 32] [ 6] [621354] +09:44:58 [ 35] [ 27] [1808930200045425=1803500527] +09:44:58 [ 37] [ 12] [507905146808] +09:44:58 [ 41] [ 8] [09001800] +09:44:58 [ 42] [ 15] [NATIVE ] +09:44:58 [ 43] [ 40] [Donenoun unit2 Vientiane LAO] +09:44:58 [ 49] [ 3] [418] +09:44:58 [ 52] [ 16] [E710784992EF97E5] +09:44:58 ============================================================================ +09:44:58 + + +waiting on router queue for slot.... +09:44:58 Sending to : +09:44:58 ============================================================================ +09:44:58 Sending to : +09:44:58 ============================================================================ +09:44:58 ============================================================================ +09:44:58 Slot Id : <221> +09:44:58 Transaction Type : REQUEST +09:44:58 Received From : +09:44:58 ============================================================================ +09:44:58 FNo. Len. Field Value +09:44:58 ============================================================================ +09:44:58 [ 1] [ 4] [0200] +09:44:58 [ 2] [ 16] [1808930200045425] +09:44:58 [ 3] [ 6] [011000] +09:44:58 [ 4] [ 12] [000030000000] +09:44:58 [ 7] [ 10] [0320094454] +09:44:58 [ 11] [ 6] [703145] +09:44:58 [ 12] [ 6] [094454] +09:44:58 [ 13] [ 4] [0320] +09:44:58 [ 15] [ 4] [0320] +09:44:58 [ 18] [ 4] [6011] +09:44:58 [ 22] [ 3] [900] +09:44:58 [ 25] [ 2] [02] +09:44:58 [ 28] [ 9] [D00002000] +09:44:58 [ 32] [ 6] [621354] +09:44:58 [ 35] [ 27] [1808930200045425=1803500527] +09:44:58 [ 37] [ 12] [507905146808] +09:44:58 [ 41] [ 8] [09001800] +09:44:58 [ 42] [ 15] [NATIVE ] +09:44:58 [ 43] [ 40] [Donenoun unit2 Vientiane LAO] +09:44:58 [ 49] [ 3] [418] +09:44:58 [ 52] [ 16] [E710784992EF97E5] +09:44:58 ============================================================================ +09:44:58 + + +waiting on router queue for slot.... +09:44:58 Sending to : +09:44:58 ============================================================================ +09:44:58 ============================================================================ +09:44:58 Slot Id : <221> +09:44:58 Transaction Type : REQUEST +09:44:58 Received From : +09:44:58 ============================================================================ +09:44:58 FNo. Len. Field Value +09:44:58 ============================================================================ +09:44:58 [ 1] [ 4] [0200] +09:44:58 [ 2] [ 16] [1808930200045425] +09:44:58 [ 3] [ 6] [011000] +09:44:58 [ 4] [ 12] [000030000000] +09:44:58 [ 7] [ 10] [0320094454] +09:44:58 [ 11] [ 6] [703145] +09:44:58 [ 12] [ 6] [094454] +09:44:58 [ 13] [ 4] [0320] +09:44:58 [ 15] [ 4] [0320] +09:44:58 [ 18] [ 4] [6011] +09:44:58 [ 22] [ 3] [900] +09:44:58 [ 25] [ 2] [02] +09:44:58 [ 28] [ 9] [D00002000] +09:44:58 [ 32] [ 6] [621354] +09:44:58 [ 35] [ 27] [1808930200045425=1803500527] +09:44:58 [ 37] [ 12] [507905146808] +09:44:58 [ 41] [ 8] [09001800] +09:44:58 [ 42] [ 15] [NATIVE ] +09:44:58 [ 43] [ 40] [Donenoun unit2 Vientiane LAO] +09:44:58 [ 49] [ 3] [418] +09:44:58 [ 52] [ 16] [501F1EA1C6CD4970] +09:44:58 ============================================================================ +09:44:58 + + +waiting on router queue for slot.... +09:44:58 Sending to : <2> +09:44:58 ============================================================================ +09:45:01 ============================================================================ +09:45:01 Slot Id : <193> +09:45:01 Transaction Type : REQUEST +09:45:01 Received From : +09:45:01 ============================================================================ +09:45:01 FNo. Len. Field Value +09:45:01 ============================================================================ +09:45:01 [ 1] [ 4] [0200] +09:45:01 [ 2] [ 16] [6213544001240404] +09:45:01 [ 3] [ 6] [011000] +09:45:01 [ 4] [ 12] [000020000000] +09:45:01 [ 7] [ 10] [0320094523] +09:45:01 [ 11] [ 6] [203179] +09:45:01 [ 12] [ 6] [214334] +09:45:01 [ 13] [ 4] [0319] +09:45:01 [ 14] [ 4] [4912] +09:45:01 [ 15] [ 4] [0319] +09:45:01 [ 18] [ 4] [6011] +09:45:01 [ 19] [ 3] [418] +09:45:01 [ 22] [ 3] [021] +09:45:01 [ 25] [ 2] [01] +09:45:01 [ 28] [ 9] [D00002000] +09:45:01 [ 32] [ 6] [198901] +09:45:01 [ 35] [ 32] [6213544001240404=491212014040316] +09:45:01 [ 37] [ 12] [507909203179] +09:45:01 [ 41] [ 8] [01529031] +09:45:01 [ 42] [ 15] [000000041529031] +09:45:01 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:45:01 [ 49] [ 3] [418] +09:45:01 [ 52] [ 16] [642B4B1A38C4021E] +09:45:01 ============================================================================ +09:45:01 + + +waiting on router queue for slot.... +09:45:01 Sending to : +09:45:01 ============================================================================ +09:45:01 Sending to : +09:45:01 ============================================================================ +09:45:02 ============================================================================ +09:45:02 Slot Id : <193> +09:45:02 Transaction Type : REQUEST +09:45:02 Received From : +09:45:02 ============================================================================ +09:45:02 FNo. Len. Field Value +09:45:02 ============================================================================ +09:45:02 [ 1] [ 4] [0200] +09:45:02 [ 2] [ 16] [6213544001240404] +09:45:02 [ 3] [ 6] [011000] +09:45:02 [ 4] [ 12] [000020000000] +09:45:02 [ 7] [ 10] [0320094523] +09:45:02 [ 11] [ 6] [203179] +09:45:02 [ 12] [ 6] [214334] +09:45:02 [ 13] [ 4] [0319] +09:45:02 [ 14] [ 4] [4912] +09:45:02 [ 15] [ 4] [0319] +09:45:02 [ 18] [ 4] [6011] +09:45:02 [ 19] [ 3] [418] +09:45:02 [ 22] [ 3] [021] +09:45:02 [ 25] [ 2] [01] +09:45:02 [ 28] [ 9] [D00002000] +09:45:02 [ 32] [ 6] [198901] +09:45:02 [ 35] [ 32] [6213544001240404=491212014040316] +09:45:02 [ 37] [ 12] [507909203179] +09:45:02 [ 41] [ 8] [01529031] +09:45:02 [ 42] [ 15] [000000041529031] +09:45:02 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:45:02 [ 49] [ 3] [418] +09:45:02 [ 52] [ 16] [642B4B1A38C4021E] +09:45:02 ============================================================================ +09:45:02 + + +waiting on router queue for slot.... +09:45:02 Sending to : +09:45:02 ============================================================================ +09:45:02 ============================================================================ +09:45:02 Slot Id : <193> +09:45:02 Transaction Type : REQUEST +09:45:02 Received From : +09:45:02 ============================================================================ +09:45:02 FNo. Len. Field Value +09:45:02 ============================================================================ +09:45:02 [ 1] [ 4] [0200] +09:45:02 [ 2] [ 16] [6213544001240404] +09:45:02 [ 3] [ 6] [011000] +09:45:02 [ 4] [ 12] [000020000000] +09:45:02 [ 7] [ 10] [0320094523] +09:45:02 [ 11] [ 6] [203179] +09:45:02 [ 12] [ 6] [214334] +09:45:02 [ 13] [ 4] [0319] +09:45:02 [ 14] [ 4] [4912] +09:45:02 [ 15] [ 4] [0319] +09:45:02 [ 18] [ 4] [6011] +09:45:02 [ 19] [ 3] [418] +09:45:02 [ 22] [ 3] [021] +09:45:02 [ 25] [ 2] [01] +09:45:02 [ 28] [ 9] [D00002000] +09:45:02 [ 32] [ 6] [198901] +09:45:02 [ 35] [ 32] [6213544001240404=491212014040316] +09:45:02 [ 37] [ 12] [507909203179] +09:45:02 [ 41] [ 8] [01529031] +09:45:02 [ 42] [ 15] [000000041529031] +09:45:02 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:45:02 [ 49] [ 3] [418] +09:45:02 [ 52] [ 16] [5B34AE869F4D96F5] +09:45:02 ============================================================================ +09:45:02 + + +waiting on router queue for slot.... +09:45:02 Sending to : <0> +09:45:02 ============================================================================ +09:45:02 ============================================================================ +09:45:02 Slot Id : <193> +09:45:02 Transaction Type : RESPONSE +09:45:02 Received From : +09:45:02 ============================================================================ +09:45:02 FNo. Len. Field Value +09:45:02 ============================================================================ +09:45:02 [ 1] [ 4] [0210] +09:45:02 [ 2] [ 16] [6213544001240404] +09:45:02 [ 3] [ 6] [011000] +09:45:02 [ 4] [ 12] [000020000000] +09:45:02 [ 7] [ 10] [0320094523] +09:45:02 [ 11] [ 6] [203179] +09:45:02 [ 12] [ 6] [214334] +09:45:02 [ 13] [ 4] [0319] +09:45:02 [ 15] [ 4] [0319] +09:45:02 [ 18] [ 4] [6011] +09:45:02 [ 19] [ 3] [418] +09:45:02 [ 32] [ 6] [198901] +09:45:02 [ 35] [ 32] [6213544001240404=491212014040316] +09:45:02 [ 37] [ 12] [507909203179] +09:45:02 [ 38] [ 6] [156886] +09:45:02 [ 39] [ 2] [00] +09:45:02 [ 41] [ 8] [01529031] +09:45:02 [ 49] [ 3] [418] +09:45:02 [ 54] [ 40] [1001418C0000443491581002418C000044349158] +09:45:02 ============================================================================ +09:45:02 Sending to : +09:45:02 ============================================================================ +09:45:02 + + +waiting on router queue for slot.... +09:45:03 ============================================================================ +09:45:03 Slot Id : <221> +09:45:03 Transaction Type : RESPONSE +09:45:03 Received From : +09:45:03 ============================================================================ +09:45:03 FNo. Len. Field Value +09:45:03 ============================================================================ +09:45:03 [ 1] [ 4] [0210] +09:45:03 [ 2] [ 16] [1808930200045425] +09:45:03 [ 3] [ 6] [011000] +09:45:03 [ 4] [ 12] [000030000000] +09:45:03 [ 6] [ 12] [000030000000] +09:45:03 [ 7] [ 10] [0320094454] +09:45:03 [ 11] [ 6] [703145] +09:45:03 [ 12] [ 6] [094454] +09:45:03 [ 13] [ 4] [0320] +09:45:03 [ 18] [ 4] [6011] +09:45:03 [ 19] [ 3] [418] +09:45:03 [ 22] [ 3] [021] +09:45:03 [ 32] [ 6] [621354] +09:45:03 [ 35] [ 27] [1808930200045425=1803500527] +09:45:03 [ 37] [ 12] [507905146808] +09:45:03 [ 38] [ 6] [703145] +09:45:03 [ 39] [ 2] [00] +09:45:03 [ 41] [ 8] [09001800] +09:45:03 [ 49] [ 3] [418] +09:45:03 [ 52] [ 16] [501F1EA1C6CD4970] +09:45:03 [ 54] [ 20] [1001418C000014860600] +09:45:03 ============================================================================ +09:45:03 Sending to : +09:45:03 ============================================================================ +09:45:03 + + +waiting on router queue for slot.... +09:45:04 ============================================================================ +09:45:04 Slot Id : <193> +09:45:04 Transaction Type : RESPONSE +09:45:04 Received From : +09:45:04 ============================================================================ +09:45:04 FNo. Len. Field Value +09:45:04 ============================================================================ +09:45:04 [ 1] [ 4] [0210] +09:45:04 [ 2] [ 16] [6213544001240404] +09:45:04 [ 3] [ 6] [011000] +09:45:04 [ 4] [ 12] [000020000000] +09:45:04 [ 7] [ 10] [0320094523] +09:45:04 [ 11] [ 6] [203179] +09:45:04 [ 12] [ 6] [214334] +09:45:04 [ 13] [ 4] [0319] +09:45:04 [ 15] [ 4] [0319] +09:45:04 [ 18] [ 4] [6011] +09:45:04 [ 19] [ 3] [418] +09:45:04 [ 32] [ 6] [198901] +09:45:04 [ 35] [ 32] [6213544001240404=491212014040316] +09:45:04 [ 37] [ 12] [507909203179] +09:45:04 [ 38] [ 6] [156886] +09:45:04 [ 39] [ 2] [00] +09:45:04 [ 41] [ 8] [01529031] +09:45:04 [ 49] [ 3] [418] +09:45:04 [ 54] [ 40] [1001418C0000443491581002418C000044349158] +09:45:04 ============================================================================ +09:45:04 Calculate Source COMM Id = 5 +09:45:04 ============================================================================ +09:45:04 + + +waiting on router queue for slot.... +09:45:06 ============================================================================ +09:45:06 Slot Id : <221> +09:45:06 Transaction Type : RESPONSE +09:45:06 Received From : +09:45:06 ============================================================================ +09:45:06 FNo. Len. Field Value +09:45:06 ============================================================================ +09:45:06 [ 1] [ 4] [0210] +09:45:06 [ 2] [ 16] [1808930200045425] +09:45:06 [ 3] [ 6] [011000] +09:45:06 [ 4] [ 12] [000030000000] +09:45:06 [ 6] [ 12] [000030000000] +09:45:06 [ 7] [ 10] [0320094454] +09:45:06 [ 11] [ 6] [703145] +09:45:06 [ 12] [ 6] [094454] +09:45:06 [ 13] [ 4] [0320] +09:45:06 [ 18] [ 4] [6011] +09:45:06 [ 19] [ 3] [418] +09:45:06 [ 22] [ 3] [021] +09:45:06 [ 32] [ 6] [621354] +09:45:06 [ 35] [ 27] [1808930200045425=1803500527] +09:45:06 [ 37] [ 12] [507905146808] +09:45:06 [ 38] [ 6] [703145] +09:45:06 [ 39] [ 2] [00] +09:45:06 [ 41] [ 8] [09001800] +09:45:06 [ 49] [ 3] [418] +09:45:06 [ 52] [ 16] [501F1EA1C6CD4970] +09:45:06 [ 54] [ 20] [1001418C000014860600] +09:45:06 ============================================================================ +09:45:06 Calculate Source COMM Id = 0 +09:45:06 ============================================================================ +09:45:06 + + +waiting on router queue for slot.... +09:45:07 ============================================================================ +09:45:07 Slot Id : <212> +09:45:07 Transaction Type : REQUEST +09:45:07 Received From : +09:45:07 ============================================================================ +09:45:07 FNo. Len. Field Value +09:45:07 ============================================================================ +09:45:07 [ 1] [ 4] [0200] +09:45:07 [ 2] [ 16] [6213544000781127] +09:45:07 [ 3] [ 6] [010000] +09:45:07 [ 4] [ 12] [000010000000] +09:45:07 [ 7] [ 10] [0320024414] +09:45:07 [ 11] [ 6] [267753] +09:45:07 [ 12] [ 6] [094414] +09:45:07 [ 13] [ 4] [0320] +09:45:07 [ 14] [ 4] [4912] +09:45:07 [ 15] [ 4] [0320] +09:45:07 [ 18] [ 4] [6011] +09:45:07 [ 19] [ 3] [418] +09:45:07 [ 22] [ 3] [021] +09:45:07 [ 25] [ 2] [01] +09:45:07 [ 28] [ 9] [D00002000] +09:45:07 [ 32] [ 6] [180893] +09:45:07 [ 35] [ 32] [6213544000781127=491212018112869] +09:45:07 [ 37] [ 12] [507902267753] +09:45:07 [ 41] [ 8] [0401XSBR] +09:45:07 [ 42] [ 15] [999999 ] +09:45:07 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:45:07 [ 49] [ 3] [418] +09:45:07 [ 52] [ 16] [76FBF8191DC55DEB] +09:45:07 ============================================================================ +09:45:07 + + +waiting on router queue for slot.... +09:45:07 Sending to : +09:45:07 ============================================================================ +09:45:07 Sending to : +09:45:07 ============================================================================ +09:45:08 ============================================================================ +09:45:08 Slot Id : <212> +09:45:08 Transaction Type : REQUEST +09:45:08 Received From : +09:45:08 ============================================================================ +09:45:08 FNo. Len. Field Value +09:45:08 ============================================================================ +09:45:08 [ 1] [ 4] [0200] +09:45:08 [ 2] [ 16] [6213544000781127] +09:45:08 [ 3] [ 6] [010000] +09:45:08 [ 4] [ 12] [000010000000] +09:45:08 [ 7] [ 10] [0320024414] +09:45:08 [ 11] [ 6] [267753] +09:45:08 [ 12] [ 6] [094414] +09:45:08 [ 13] [ 4] [0320] +09:45:08 [ 14] [ 4] [4912] +09:45:08 [ 15] [ 4] [0320] +09:45:08 [ 18] [ 4] [6011] +09:45:08 [ 19] [ 3] [418] +09:45:08 [ 22] [ 3] [021] +09:45:08 [ 25] [ 2] [01] +09:45:08 [ 28] [ 9] [D00002000] +09:45:08 [ 32] [ 6] [180893] +09:45:08 [ 35] [ 32] [6213544000781127=491212018112869] +09:45:08 [ 37] [ 12] [507902267753] +09:45:08 [ 41] [ 8] [0401XSBR] +09:45:08 [ 42] [ 15] [999999 ] +09:45:08 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:45:08 [ 49] [ 3] [418] +09:45:08 [ 52] [ 16] [76FBF8191DC55DEB] +09:45:08 ============================================================================ +09:45:08 + + +waiting on router queue for slot.... +09:45:08 Sending to : +09:45:08 ============================================================================ +09:45:08 ============================================================================ +09:45:08 Slot Id : <212> +09:45:08 Transaction Type : REQUEST +09:45:08 Received From : +09:45:08 ============================================================================ +09:45:08 FNo. Len. Field Value +09:45:08 ============================================================================ +09:45:08 [ 1] [ 4] [0200] +09:45:08 [ 2] [ 16] [6213544000781127] +09:45:08 [ 3] [ 6] [010000] +09:45:08 [ 4] [ 12] [000010000000] +09:45:08 [ 7] [ 10] [0320024414] +09:45:08 [ 11] [ 6] [267753] +09:45:08 [ 12] [ 6] [094414] +09:45:08 [ 13] [ 4] [0320] +09:45:08 [ 14] [ 4] [4912] +09:45:08 [ 15] [ 4] [0320] +09:45:08 [ 18] [ 4] [6011] +09:45:08 [ 19] [ 3] [418] +09:45:08 [ 22] [ 3] [021] +09:45:08 [ 25] [ 2] [01] +09:45:08 [ 28] [ 9] [D00002000] +09:45:08 [ 32] [ 6] [180893] +09:45:08 [ 35] [ 32] [6213544000781127=491212018112869] +09:45:08 [ 37] [ 12] [507902267753] +09:45:08 [ 41] [ 8] [0401XSBR] +09:45:08 [ 42] [ 15] [999999 ] +09:45:08 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +09:45:08 [ 49] [ 3] [418] +09:45:08 [ 52] [ 16] [BF91CA27289D88EE] +09:45:08 ============================================================================ +09:45:08 + + +waiting on router queue for slot.... +09:45:08 Sending to : <0> +09:45:08 ============================================================================ +09:45:09 ============================================================================ +09:45:09 Slot Id : <212> +09:45:09 Transaction Type : RESPONSE +09:45:09 Received From : +09:45:09 ============================================================================ +09:45:09 FNo. Len. Field Value +09:45:09 ============================================================================ +09:45:09 [ 1] [ 4] [0210] +09:45:09 [ 2] [ 16] [6213544000781127] +09:45:09 [ 3] [ 6] [010000] +09:45:09 [ 4] [ 12] [000010000000] +09:45:09 [ 7] [ 10] [0320024414] +09:45:09 [ 11] [ 6] [267753] +09:45:09 [ 12] [ 6] [094414] +09:45:09 [ 13] [ 4] [0320] +09:45:09 [ 15] [ 4] [0320] +09:45:09 [ 18] [ 4] [6011] +09:45:09 [ 19] [ 3] [418] +09:45:09 [ 32] [ 6] [180893] +09:45:09 [ 35] [ 32] [6213544000781127=491212018112869] +09:45:09 [ 37] [ 12] [507902267753] +09:45:09 [ 38] [ 6] [064871] +09:45:09 [ 39] [ 2] [00] +09:45:09 [ 41] [ 8] [0401XSBR] +09:45:09 [ 49] [ 3] [418] +09:45:09 [ 54] [ 40] [0001418C0000095732030002418C000009573203] +09:45:09 ============================================================================ +09:45:09 Sending to : +09:45:09 ============================================================================ +09:45:09 + + +waiting on router queue for slot.... +09:45:09 ============================================================================ +09:45:09 Slot Id : <207> +09:45:09 Transaction Type : REQUEST +09:45:09 Received From : +09:45:09 ============================================================================ +09:45:09 FNo. Len. Field Value +09:45:09 ============================================================================ +09:45:09 [ 1] [ 4] [0800] +09:45:09 [ 7] [ 10] [0320165657] +09:45:09 [ 11] [ 6] [095657] +09:45:09 [ 37] [ 12] [57909095657] +09:45:09 [ 70] [ 3] [301] +09:45:09 ============================================================================ +09:45:09 + + +waiting on router queue for slot.... +09:45:09 Sending to : +09:45:09 ============================================================================ +09:45:09 ============================================================================ +09:45:09 Slot Id : <207> +09:45:09 Transaction Type : RESPONSE +09:45:09 Received From : +09:45:09 ============================================================================ +09:45:09 FNo. Len. Field Value +09:45:09 ============================================================================ +09:45:09 [ 1] [ 4] [0810] +09:45:09 [ 7] [ 10] [0320165657] +09:45:09 [ 11] [ 6] [095657] +09:45:09 [ 37] [ 12] [579090956570] +09:45:09 [ 39] [ 2] [00] +09:45:09 [ 70] [ 3] [810] +09:45:09 ============================================================================ +09:45:09 Calculate Source COMM Id = 6 +09:45:09 ============================================================================ +09:45:09 + + +waiting on router queue for slot.... +09:45:10 ============================================================================ +09:45:10 Slot Id : <212> +09:45:10 Transaction Type : RESPONSE +09:45:10 Received From : +09:45:10 ============================================================================ +09:45:10 FNo. Len. Field Value +09:45:10 ============================================================================ +09:45:10 [ 1] [ 4] [0210] +09:45:10 [ 2] [ 16] [6213544000781127] +09:45:10 [ 3] [ 6] [010000] +09:45:10 [ 4] [ 12] [000010000000] +09:45:10 [ 7] [ 10] [0320024414] +09:45:10 [ 11] [ 6] [267753] +09:45:10 [ 12] [ 6] [094414] +09:45:10 [ 13] [ 4] [0320] +09:45:10 [ 15] [ 4] [0320] +09:45:10 [ 18] [ 4] [6011] +09:45:10 [ 19] [ 3] [418] +09:45:10 [ 32] [ 6] [180893] +09:45:10 [ 35] [ 32] [6213544000781127=491212018112869] +09:45:10 [ 37] [ 12] [507902267753] +09:45:10 [ 38] [ 6] [064871] +09:45:10 [ 39] [ 2] [00] +09:45:10 [ 41] [ 8] [0401XSBR] +09:45:10 [ 49] [ 3] [418] +09:45:10 [ 54] [ 40] [0001418C0000095732030002418C000009573203] +09:45:10 ============================================================================ +09:45:10 Calculate Source COMM Id = 2 +09:45:10 ============================================================================ +09:45:10 + + +waiting on router queue for slot.... +09:45:13 ============================================================================ +09:45:13 Slot Id : <185> +09:45:13 Transaction Type : REQUEST +09:45:13 Received From : +09:45:13 ============================================================================ +09:45:13 FNo. Len. Field Value +09:45:13 ============================================================================ +09:45:13 [ 1] [ 4] [0200] +09:45:13 [ 2] [ 16] [6213541000116098] +09:45:13 [ 3] [ 6] [011000] +09:45:13 [ 4] [ 12] [000100000000] +09:45:13 [ 7] [ 10] [0320095300] +09:45:13 [ 11] [ 6] [021127] +09:45:13 [ 12] [ 6] [095300] +09:45:13 [ 13] [ 4] [0320] +09:45:13 [ 14] [ 4] [4912] +09:45:13 [ 15] [ 4] [0320] +09:45:13 [ 18] [ 4] [6011] +09:45:13 [ 22] [ 3] [900] +09:45:13 [ 25] [ 2] [02] +09:45:13 [ 28] [ 9] [D00002000] +09:45:13 [ 32] [ 6] [220699] +09:45:13 [ 35] [ 32] [6213541000116098=491212011609091] +09:45:13 [ 37] [ 12] [507900263089] +09:45:13 [ 41] [ 8] [01001400] +09:45:13 [ 42] [ 15] [APTRA ] +09:45:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:45:13 [ 49] [ 3] [418] +09:45:13 [ 52] [ 16] [DBC831EC83869A6C] +09:45:13 ============================================================================ +09:45:13 + + +waiting on router queue for slot.... +09:45:13 Sending to : +09:45:13 ============================================================================ +09:45:13 Sending to : +09:45:13 ============================================================================ +09:45:13 ============================================================================ +09:45:13 Slot Id : <185> +09:45:13 Transaction Type : REQUEST +09:45:13 Received From : +09:45:13 ============================================================================ +09:45:13 FNo. Len. Field Value +09:45:13 ============================================================================ +09:45:13 [ 1] [ 4] [0200] +09:45:13 [ 2] [ 16] [6213541000116098] +09:45:13 [ 3] [ 6] [011000] +09:45:13 [ 4] [ 12] [000100000000] +09:45:13 [ 7] [ 10] [0320095300] +09:45:13 [ 11] [ 6] [021127] +09:45:13 [ 12] [ 6] [095300] +09:45:13 [ 13] [ 4] [0320] +09:45:13 [ 14] [ 4] [4912] +09:45:13 [ 15] [ 4] [0320] +09:45:13 [ 18] [ 4] [6011] +09:45:13 [ 22] [ 3] [900] +09:45:13 [ 25] [ 2] [02] +09:45:13 [ 28] [ 9] [D00002000] +09:45:13 [ 32] [ 6] [220699] +09:45:13 [ 35] [ 32] [6213541000116098=491212011609091] +09:45:13 [ 37] [ 12] [507900263089] +09:45:13 [ 41] [ 8] [01001400] +09:45:13 [ 42] [ 15] [APTRA ] +09:45:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:45:13 [ 49] [ 3] [418] +09:45:13 [ 52] [ 16] [DBC831EC83869A6C] +09:45:13 ============================================================================ +09:45:13 + + +waiting on router queue for slot.... +09:45:13 Sending to : +09:45:13 ============================================================================ +09:45:13 ============================================================================ +09:45:13 Slot Id : <185> +09:45:13 Transaction Type : REQUEST +09:45:13 Received From : +09:45:13 ============================================================================ +09:45:13 FNo. Len. Field Value +09:45:13 ============================================================================ +09:45:13 [ 1] [ 4] [0200] +09:45:13 [ 2] [ 16] [6213541000116098] +09:45:13 [ 3] [ 6] [011000] +09:45:13 [ 4] [ 12] [000100000000] +09:45:13 [ 7] [ 10] [0320095300] +09:45:13 [ 11] [ 6] [021127] +09:45:13 [ 12] [ 6] [095300] +09:45:13 [ 13] [ 4] [0320] +09:45:13 [ 14] [ 4] [4912] +09:45:13 [ 15] [ 4] [0320] +09:45:13 [ 18] [ 4] [6011] +09:45:13 [ 22] [ 3] [900] +09:45:13 [ 25] [ 2] [02] +09:45:13 [ 28] [ 9] [D00002000] +09:45:13 [ 32] [ 6] [220699] +09:45:13 [ 35] [ 32] [6213541000116098=491212011609091] +09:45:13 [ 37] [ 12] [507900263089] +09:45:13 [ 41] [ 8] [01001400] +09:45:13 [ 42] [ 15] [APTRA ] +09:45:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:45:13 [ 49] [ 3] [418] +09:45:13 [ 52] [ 16] [9AEFC9D884A37E34] +09:45:13 ============================================================================ +09:45:13 + + +waiting on router queue for slot.... +09:45:13 Sending to : <0> +09:45:13 ============================================================================ +09:45:14 ============================================================================ +09:45:14 Slot Id : <185> +09:45:14 Transaction Type : RESPONSE +09:45:14 Received From : +09:45:14 ============================================================================ +09:45:14 FNo. Len. Field Value +09:45:14 ============================================================================ +09:45:14 [ 1] [ 4] [0210] +09:45:14 [ 2] [ 16] [6213541000116098] +09:45:14 [ 3] [ 6] [011000] +09:45:14 [ 4] [ 12] [000100000000] +09:45:14 [ 7] [ 10] [0320095300] +09:45:14 [ 11] [ 6] [021127] +09:45:14 [ 12] [ 6] [095300] +09:45:14 [ 13] [ 4] [0320] +09:45:14 [ 15] [ 4] [0320] +09:45:14 [ 18] [ 4] [6011] +09:45:14 [ 32] [ 6] [220699] +09:45:14 [ 35] [ 32] [6213541000116098=491212011609091] +09:45:14 [ 37] [ 12] [507900263089] +09:45:14 [ 38] [ 6] [825155] +09:45:14 [ 39] [ 2] [00] +09:45:14 [ 41] [ 8] [01001400] +09:45:14 [ 49] [ 3] [418] +09:45:14 [ 54] [ 40] [1001418C0082261219551002418C008226121955] +09:45:14 ============================================================================ +09:45:14 Sending to : +09:45:14 ============================================================================ +09:45:14 + + +waiting on router queue for slot.... +09:45:16 ============================================================================ +09:45:16 Slot Id : <185> +09:45:16 Transaction Type : RESPONSE +09:45:16 Received From : +09:45:16 ============================================================================ +09:45:16 FNo. Len. Field Value +09:45:16 ============================================================================ +09:45:16 [ 1] [ 4] [0210] +09:45:16 [ 2] [ 16] [6213541000116098] +09:45:16 [ 3] [ 6] [011000] +09:45:16 [ 4] [ 12] [000100000000] +09:45:16 [ 7] [ 10] [0320095300] +09:45:16 [ 11] [ 6] [021127] +09:45:16 [ 12] [ 6] [095300] +09:45:16 [ 13] [ 4] [0320] +09:45:16 [ 15] [ 4] [0320] +09:45:16 [ 18] [ 4] [6011] +09:45:16 [ 32] [ 6] [220699] +09:45:16 [ 35] [ 32] [6213541000116098=491212011609091] +09:45:16 [ 37] [ 12] [507900263089] +09:45:16 [ 38] [ 6] [825155] +09:45:16 [ 39] [ 2] [00] +09:45:16 [ 41] [ 8] [01001400] +09:45:16 [ 49] [ 3] [418] +09:45:16 [ 54] [ 40] [1001418C0082261219551002418C008226121955] +09:45:16 ============================================================================ +09:45:16 Calculate Source COMM Id = 1 +09:45:16 ============================================================================ +09:45:16 + + +waiting on router queue for slot.... +09:45:22 ============================================================================ +09:45:22 Slot Id : <211> +09:45:22 Transaction Type : REQUEST +09:45:22 Received From : +09:45:22 ============================================================================ +09:45:22 FNo. Len. Field Value +09:45:22 ============================================================================ +09:45:22 [ 1] [ 4] [0200] +09:45:22 [ 2] [ 16] [6213545000476352] +09:45:22 [ 3] [ 6] [010000] +09:45:22 [ 4] [ 12] [000050000000] +09:45:22 [ 7] [ 10] [0320024430] +09:45:22 [ 11] [ 6] [267756] +09:45:22 [ 12] [ 6] [094430] +09:45:22 [ 13] [ 4] [0320] +09:45:22 [ 14] [ 4] [4912] +09:45:22 [ 15] [ 4] [0320] +09:45:22 [ 18] [ 4] [6011] +09:45:22 [ 19] [ 3] [418] +09:45:22 [ 22] [ 3] [021] +09:45:22 [ 25] [ 2] [01] +09:45:22 [ 28] [ 9] [D00002000] +09:45:22 [ 32] [ 6] [180893] +09:45:22 [ 35] [ 32] [6213545000476352=491212017635848] +09:45:22 [ 37] [ 12] [507902267756] +09:45:22 [ 41] [ 8] [0366SKTT] +09:45:22 [ 42] [ 15] [999999 ] +09:45:22 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:45:22 [ 49] [ 3] [418] +09:45:22 [ 52] [ 16] [F586E6CE4BFAFD35] +09:45:22 ============================================================================ +09:45:22 + + +waiting on router queue for slot.... +09:45:22 Sending to : +09:45:22 ============================================================================ +09:45:22 Sending to : +09:45:22 ============================================================================ +09:45:23 ============================================================================ +09:45:23 Slot Id : <211> +09:45:23 Transaction Type : REQUEST +09:45:23 Received From : +09:45:23 ============================================================================ +09:45:23 FNo. Len. Field Value +09:45:23 ============================================================================ +09:45:23 [ 1] [ 4] [0200] +09:45:23 [ 2] [ 16] [6213545000476352] +09:45:23 [ 3] [ 6] [010000] +09:45:23 [ 4] [ 12] [000050000000] +09:45:23 [ 7] [ 10] [0320024430] +09:45:23 [ 11] [ 6] [267756] +09:45:23 [ 12] [ 6] [094430] +09:45:23 [ 13] [ 4] [0320] +09:45:23 [ 14] [ 4] [4912] +09:45:23 [ 15] [ 4] [0320] +09:45:23 [ 18] [ 4] [6011] +09:45:23 [ 19] [ 3] [418] +09:45:23 [ 22] [ 3] [021] +09:45:23 [ 25] [ 2] [01] +09:45:23 [ 28] [ 9] [D00002000] +09:45:23 [ 32] [ 6] [180893] +09:45:23 [ 35] [ 32] [6213545000476352=491212017635848] +09:45:23 [ 37] [ 12] [507902267756] +09:45:23 [ 41] [ 8] [0366SKTT] +09:45:23 [ 42] [ 15] [999999 ] +09:45:23 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:45:23 [ 49] [ 3] [418] +09:45:23 [ 52] [ 16] [F586E6CE4BFAFD35] +09:45:23 ============================================================================ +09:45:23 + + +waiting on router queue for slot.... +09:45:23 Sending to : +09:45:23 ============================================================================ +09:45:23 ============================================================================ +09:45:23 Slot Id : <211> +09:45:23 Transaction Type : REQUEST +09:45:23 Received From : +09:45:23 ============================================================================ +09:45:23 FNo. Len. Field Value +09:45:23 ============================================================================ +09:45:23 [ 1] [ 4] [0200] +09:45:23 [ 2] [ 16] [6213545000476352] +09:45:23 [ 3] [ 6] [010000] +09:45:23 [ 4] [ 12] [000050000000] +09:45:23 [ 7] [ 10] [0320024430] +09:45:23 [ 11] [ 6] [267756] +09:45:23 [ 12] [ 6] [094430] +09:45:23 [ 13] [ 4] [0320] +09:45:23 [ 14] [ 4] [4912] +09:45:23 [ 15] [ 4] [0320] +09:45:23 [ 18] [ 4] [6011] +09:45:23 [ 19] [ 3] [418] +09:45:23 [ 22] [ 3] [021] +09:45:23 [ 25] [ 2] [01] +09:45:23 [ 28] [ 9] [D00002000] +09:45:23 [ 32] [ 6] [180893] +09:45:23 [ 35] [ 32] [6213545000476352=491212017635848] +09:45:23 [ 37] [ 12] [507902267756] +09:45:23 [ 41] [ 8] [0366SKTT] +09:45:23 [ 42] [ 15] [999999 ] +09:45:23 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:45:23 [ 49] [ 3] [418] +09:45:23 [ 52] [ 16] [AAD0D3FB346133A7] +09:45:23 ============================================================================ +09:45:23 + + +waiting on router queue for slot.... +09:45:23 Sending to : <0> +09:45:23 ============================================================================ +09:45:23 ============================================================================ +09:45:23 Slot Id : <211> +09:45:23 Transaction Type : RESPONSE +09:45:23 Received From : +09:45:23 ============================================================================ +09:45:23 FNo. Len. Field Value +09:45:23 ============================================================================ +09:45:23 [ 1] [ 4] [0210] +09:45:23 [ 2] [ 16] [6213545000476352] +09:45:23 [ 3] [ 6] [010000] +09:45:23 [ 4] [ 12] [000050000000] +09:45:23 [ 7] [ 10] [0320024430] +09:45:23 [ 11] [ 6] [267756] +09:45:23 [ 12] [ 6] [094430] +09:45:23 [ 13] [ 4] [0320] +09:45:23 [ 15] [ 4] [0320] +09:45:23 [ 18] [ 4] [6011] +09:45:23 [ 19] [ 3] [418] +09:45:23 [ 32] [ 6] [180893] +09:45:23 [ 35] [ 32] [6213545000476352=491212017635848] +09:45:23 [ 37] [ 12] [507902267756] +09:45:23 [ 38] [ 6] [228092] +09:45:23 [ 39] [ 2] [00] +09:45:23 [ 41] [ 8] [0366SKTT] +09:45:23 [ 49] [ 3] [418] +09:45:23 [ 54] [ 40] [0001418C0001529263840002418C000152926384] +09:45:23 ============================================================================ +09:45:23 Sending to : +09:45:23 ============================================================================ +09:45:23 + + +waiting on router queue for slot.... +09:45:24 ============================================================================ +09:45:24 Slot Id : <183> +09:45:24 Transaction Type : REQUEST +09:45:24 Received From : +09:45:24 ============================================================================ +09:45:24 FNo. Len. Field Value +09:45:24 ============================================================================ +09:45:24 [ 1] [ 4] [0800] +09:45:24 [ 7] [ 10] [0320024432] +09:45:24 [ 11] [ 6] [155693] +09:45:24 [ 70] [ 3] [301] +09:45:24 ============================================================================ +09:45:24 + + +waiting on router queue for slot.... +09:45:24 Sending to : +09:45:24 ============================================================================ +09:45:24 ============================================================================ +09:45:24 Slot Id : <183> +09:45:24 Transaction Type : RESPONSE +09:45:24 Received From : +09:45:24 ============================================================================ +09:45:24 FNo. Len. Field Value +09:45:24 ============================================================================ +09:45:24 [ 1] [ 4] [0810] +09:45:24 [ 7] [ 10] [0320024432] +09:45:24 [ 11] [ 6] [155693] +09:45:24 [ 39] [ 2] [00] +09:45:24 [ 70] [ 3] [301] +09:45:24 ============================================================================ +09:45:24 Calculate Source COMM Id = 2 +09:45:24 ============================================================================ +09:45:24 + + +waiting on router queue for slot.... +09:45:25 ============================================================================ +09:45:25 Slot Id : <211> +09:45:25 Transaction Type : RESPONSE +09:45:25 Received From : +09:45:25 ============================================================================ +09:45:25 FNo. Len. Field Value +09:45:25 ============================================================================ +09:45:25 [ 1] [ 4] [0210] +09:45:25 [ 2] [ 16] [6213545000476352] +09:45:25 [ 3] [ 6] [010000] +09:45:25 [ 4] [ 12] [000050000000] +09:45:25 [ 7] [ 10] [0320024430] +09:45:25 [ 11] [ 6] [267756] +09:45:25 [ 12] [ 6] [094430] +09:45:25 [ 13] [ 4] [0320] +09:45:25 [ 15] [ 4] [0320] +09:45:25 [ 18] [ 4] [6011] +09:45:25 [ 19] [ 3] [418] +09:45:25 [ 32] [ 6] [180893] +09:45:25 [ 35] [ 32] [6213545000476352=491212017635848] +09:45:25 [ 37] [ 12] [507902267756] +09:45:25 [ 38] [ 6] [228092] +09:45:25 [ 39] [ 2] [00] +09:45:25 [ 41] [ 8] [0366SKTT] +09:45:25 [ 49] [ 3] [418] +09:45:25 [ 54] [ 40] [0001418C0001529263840002418C000152926384] +09:45:25 ============================================================================ +09:45:25 Calculate Source COMM Id = 2 +09:45:25 ============================================================================ +09:45:25 + + +waiting on router queue for slot.... +09:45:29 ============================================================================ +09:45:29 Slot Id : <149> +09:45:29 Transaction Type : REQUEST +09:45:29 Received From : +09:45:29 ============================================================================ +09:45:29 FNo. Len. Field Value +09:45:29 ============================================================================ +09:45:29 [ 1] [ 4] [0800] +09:45:29 [ 2] [ 5] [02531] +09:45:29 [ 3] [ 6] [579098] +09:45:29 [ 7] [ 10] [0320024529] +09:45:29 [ 11] [ 6] [806978] +09:45:29 [ 15] [ 10] [0320024529] +09:45:29 [ 37] [ 11] [57909806978] +09:45:29 [ 70] [ 3] [001] +09:45:29 ============================================================================ +09:45:29 + + +waiting on router queue for slot.... +09:45:29 ============================================================================ +09:45:29 Slot Id : <149> +09:45:29 Transaction Type : RESPONSE +09:45:29 Received From : +09:45:29 ============================================================================ +09:45:29 FNo. Len. Field Value +09:45:29 ============================================================================ +09:45:29 [ 1] [ 4] [0810] +09:45:29 [ 7] [ 10] [0320024529] +09:45:29 [ 11] [ 6] [806978] +09:45:29 [ 15] [ 4] [0320] +09:45:29 [ 37] [ 12] [57909806978] +09:45:29 [ 39] [ 2] [00] +09:45:29 [ 70] [ 3] [001] +09:45:29 ============================================================================ +09:45:29 Sending to : +09:45:29 ============================================================================ +09:45:29 + + +waiting on router queue for slot.... +09:45:39 ============================================================================ +09:45:39 Slot Id : <174> +09:45:39 Transaction Type : REQUEST +09:45:39 Received From : +09:45:39 ============================================================================ +09:45:39 FNo. Len. Field Value +09:45:39 ============================================================================ +09:45:39 [ 1] [ 4] [0200] +09:45:39 [ 2] [ 16] [6688990104635006] +09:45:39 [ 3] [ 6] [012000] +09:45:39 [ 4] [ 12] [000050000000] +09:45:39 [ 7] [ 10] [0320094536] +09:45:39 [ 11] [ 6] [703330] +09:45:39 [ 12] [ 6] [094536] +09:45:39 [ 13] [ 4] [0320] +09:45:39 [ 15] [ 4] [0320] +09:45:39 [ 18] [ 4] [6011] +09:45:39 [ 22] [ 3] [900] +09:45:39 [ 25] [ 2] [02] +09:45:39 [ 28] [ 9] [D00002000] +09:45:39 [ 32] [ 6] [621354] +09:45:39 [ 35] [ 37] [6688990104635006=43051231500631200000] +09:45:39 [ 37] [ 12] [507904479677] +09:45:39 [ 41] [ 8] [15000900] +09:45:39 [ 42] [ 15] [NATIVE ] +09:45:39 [ 43] [ 40] [Xokxay Hotel Pakson LAO] +09:45:39 [ 49] [ 3] [418] +09:45:39 [ 52] [ 16] [A9DC03CDC01F89A9] +09:45:39 ============================================================================ +09:45:39 + + +waiting on router queue for slot.... +09:45:39 Sending to : +09:45:39 ============================================================================ +09:45:39 Sending to : +09:45:39 ============================================================================ +09:45:40 ============================================================================ +09:45:40 Slot Id : <174> +09:45:40 Transaction Type : REQUEST +09:45:40 Received From : +09:45:40 ============================================================================ +09:45:40 FNo. Len. Field Value +09:45:40 ============================================================================ +09:45:40 [ 1] [ 4] [0200] +09:45:40 [ 2] [ 16] [6688990104635006] +09:45:40 [ 3] [ 6] [012000] +09:45:40 [ 4] [ 12] [000050000000] +09:45:40 [ 7] [ 10] [0320094536] +09:45:40 [ 11] [ 6] [703330] +09:45:40 [ 12] [ 6] [094536] +09:45:40 [ 13] [ 4] [0320] +09:45:40 [ 15] [ 4] [0320] +09:45:40 [ 18] [ 4] [6011] +09:45:40 [ 22] [ 3] [900] +09:45:40 [ 25] [ 2] [02] +09:45:40 [ 28] [ 9] [D00002000] +09:45:40 [ 32] [ 6] [621354] +09:45:40 [ 35] [ 37] [6688990104635006=43051231500631200000] +09:45:40 [ 37] [ 12] [507904479677] +09:45:40 [ 41] [ 8] [15000900] +09:45:40 [ 42] [ 15] [NATIVE ] +09:45:40 [ 43] [ 40] [Xokxay Hotel Pakson LAO] +09:45:40 [ 49] [ 3] [418] +09:45:40 [ 52] [ 16] [A9DC03CDC01F89A9] +09:45:40 ============================================================================ +09:45:40 + + +waiting on router queue for slot.... +09:45:40 Sending to : +09:45:40 ============================================================================ +09:45:40 ============================================================================ +09:45:40 Slot Id : <174> +09:45:40 Transaction Type : REQUEST +09:45:40 Received From : +09:45:40 ============================================================================ +09:45:40 FNo. Len. Field Value +09:45:40 ============================================================================ +09:45:40 [ 1] [ 4] [0200] +09:45:40 [ 2] [ 16] [6688990104635006] +09:45:40 [ 3] [ 6] [012000] +09:45:40 [ 4] [ 12] [000050000000] +09:45:40 [ 7] [ 10] [0320094536] +09:45:40 [ 11] [ 6] [703330] +09:45:40 [ 12] [ 6] [094536] +09:45:40 [ 13] [ 4] [0320] +09:45:40 [ 15] [ 4] [0320] +09:45:40 [ 18] [ 4] [6011] +09:45:40 [ 22] [ 3] [900] +09:45:40 [ 25] [ 2] [02] +09:45:40 [ 28] [ 9] [D00002000] +09:45:40 [ 32] [ 6] [621354] +09:45:40 [ 35] [ 37] [6688990104635006=43051231500631200000] +09:45:40 [ 37] [ 12] [507904479677] +09:45:40 [ 41] [ 8] [15000900] +09:45:40 [ 42] [ 15] [NATIVE ] +09:45:40 [ 43] [ 40] [Xokxay Hotel Pakson LAO] +09:45:40 [ 49] [ 3] [418] +09:45:40 [ 52] [ 16] [A71B91E66E0BCCF6] +09:45:40 ============================================================================ +09:45:40 + + +waiting on router queue for slot.... +09:45:40 Sending to : <4> +09:45:40 ============================================================================ +09:45:41 ============================================================================ +09:45:41 Slot Id : <180> +09:45:41 Transaction Type : REQUEST +09:45:41 Received From : +09:45:41 ============================================================================ +09:45:41 FNo. Len. Field Value +09:45:41 ============================================================================ +09:45:41 [ 1] [ 4] [0800] +09:45:41 [ 7] [ 10] [0320024449] +09:45:41 [ 11] [ 6] [155694] +09:45:41 [ 70] [ 3] [301] +09:45:41 ============================================================================ +09:45:41 + + +waiting on router queue for slot.... +09:45:41 Sending to : +09:45:41 ============================================================================ +09:45:41 ============================================================================ +09:45:41 Slot Id : <180> +09:45:41 Transaction Type : RESPONSE +09:45:41 Received From : +09:45:41 ============================================================================ +09:45:41 FNo. Len. Field Value +09:45:41 ============================================================================ +09:45:41 [ 1] [ 4] [0810] +09:45:41 [ 7] [ 10] [0320024449] +09:45:41 [ 11] [ 6] [155694] +09:45:41 [ 39] [ 2] [00] +09:45:41 [ 70] [ 3] [301] +09:45:41 ============================================================================ +09:45:41 Calculate Source COMM Id = 2 +09:45:41 ============================================================================ +09:45:41 + + +waiting on router queue for slot.... +09:45:42 ============================================================================ +09:45:42 Slot Id : <174> +09:45:42 Transaction Type : RESPONSE +09:45:42 Received From : +09:45:42 ============================================================================ +09:45:42 FNo. Len. Field Value +09:45:42 ============================================================================ +09:45:42 [ 1] [ 4] [0210] +09:45:42 [ 2] [ 16] [6688990104635006] +09:45:42 [ 3] [ 6] [012000] +09:45:42 [ 4] [ 12] [000050000000] +09:45:42 [ 11] [ 6] [703330] +09:45:42 [ 12] [ 6] [094536] +09:45:42 [ 15] [ 4] [0320] +09:45:42 [ 18] [ 4] [6011] +09:45:42 [ 32] [ 6] [621354] +09:45:42 [ 35] [ 37] [6688990104635006=43051231500631200000] +09:45:42 [ 37] [ 12] [507904479677] +09:45:42 [ 38] [ 6] [450884] +09:45:42 [ 39] [ 2] [00] +09:45:42 [ 41] [ 8] [15000900] +09:45:42 [ 49] [ 3] [418] +09:45:42 [ 54] [ 20] [2002418C000117091714] +09:45:42 ============================================================================ +09:45:42 Sending to : +09:45:42 ============================================================================ +09:45:42 + + +waiting on router queue for slot.... +09:45:43 ============================================================================ +09:45:43 Slot Id : <174> +09:45:43 Transaction Type : RESPONSE +09:45:43 Received From : +09:45:43 ============================================================================ +09:45:43 FNo. Len. Field Value +09:45:43 ============================================================================ +09:45:43 [ 1] [ 4] [0210] +09:45:43 [ 2] [ 16] [6688990104635006] +09:45:43 [ 3] [ 6] [012000] +09:45:43 [ 4] [ 12] [000050000000] +09:45:43 [ 11] [ 6] [703330] +09:45:43 [ 12] [ 6] [094536] +09:45:43 [ 15] [ 4] [0320] +09:45:43 [ 18] [ 4] [6011] +09:45:43 [ 32] [ 6] [621354] +09:45:43 [ 35] [ 37] [6688990104635006=43051231500631200000] +09:45:43 [ 37] [ 12] [507904479677] +09:45:43 [ 38] [ 6] [450884] +09:45:43 [ 39] [ 2] [00] +09:45:43 [ 41] [ 8] [15000900] +09:45:43 [ 49] [ 3] [418] +09:45:43 [ 54] [ 20] [2002418C000117091714] +09:45:43 ============================================================================ +09:45:43 Calculate Source COMM Id = 0 +09:45:43 ============================================================================ +09:45:43 + + +waiting on router queue for slot.... +09:45:55 ============================================================================ +09:45:55 Slot Id : <168> +09:45:55 Transaction Type : REQUEST +09:45:55 Received From : +09:45:55 ============================================================================ +09:45:55 FNo. Len. Field Value +09:45:55 ============================================================================ +09:45:55 [ 1] [ 4] [0200] +09:45:55 [ 2] [ 16] [6688990060034814] +09:45:55 [ 3] [ 6] [011000] +09:45:55 [ 4] [ 12] [000020000000] +09:45:55 [ 7] [ 10] [0320094551] +09:45:55 [ 11] [ 6] [703403] +09:45:55 [ 12] [ 6] [094551] +09:45:55 [ 13] [ 4] [0320] +09:45:55 [ 15] [ 4] [0320] +09:45:55 [ 18] [ 4] [6011] +09:45:55 [ 22] [ 3] [900] +09:45:55 [ 25] [ 2] [02] +09:45:55 [ 28] [ 9] [D00002000] +09:45:55 [ 32] [ 6] [621354] +09:45:55 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:45:55 [ 37] [ 12] [507904153827] +09:45:55 [ 41] [ 8] [20001000] +09:45:55 [ 42] [ 15] [NATIVE ] +09:45:55 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +09:45:55 [ 49] [ 3] [418] +09:45:55 [ 52] [ 16] [3CC8D4E47C871A05] +09:45:55 ============================================================================ +09:45:55 + + +waiting on router queue for slot.... +09:45:55 Sending to : +09:45:55 ============================================================================ +09:45:55 Sending to : +09:45:55 ============================================================================ +09:45:55 ============================================================================ +09:45:55 Slot Id : <168> +09:45:55 Transaction Type : REQUEST +09:45:55 Received From : +09:45:55 ============================================================================ +09:45:55 FNo. Len. Field Value +09:45:55 ============================================================================ +09:45:55 [ 1] [ 4] [0200] +09:45:55 [ 2] [ 16] [6688990060034814] +09:45:55 [ 3] [ 6] [011000] +09:45:55 [ 4] [ 12] [000020000000] +09:45:55 [ 7] [ 10] [0320094551] +09:45:55 [ 11] [ 6] [703403] +09:45:55 [ 12] [ 6] [094551] +09:45:55 [ 13] [ 4] [0320] +09:45:55 [ 15] [ 4] [0320] +09:45:55 [ 18] [ 4] [6011] +09:45:55 [ 22] [ 3] [900] +09:45:55 [ 25] [ 2] [02] +09:45:55 [ 28] [ 9] [D00002000] +09:45:55 [ 32] [ 6] [621354] +09:45:55 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:45:55 [ 37] [ 12] [507904153827] +09:45:55 [ 41] [ 8] [20001000] +09:45:55 [ 42] [ 15] [NATIVE ] +09:45:55 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +09:45:55 [ 49] [ 3] [418] +09:45:55 [ 52] [ 16] [3CC8D4E47C871A05] +09:45:55 ============================================================================ +09:45:55 + + +waiting on router queue for slot.... +09:45:55 Sending to : +09:45:55 ============================================================================ +09:45:55 ============================================================================ +09:45:55 Slot Id : <168> +09:45:55 Transaction Type : REQUEST +09:45:55 Received From : +09:45:55 ============================================================================ +09:45:55 FNo. Len. Field Value +09:45:55 ============================================================================ +09:45:55 [ 1] [ 4] [0200] +09:45:55 [ 2] [ 16] [6688990060034814] +09:45:55 [ 3] [ 6] [011000] +09:45:55 [ 4] [ 12] [000020000000] +09:45:55 [ 7] [ 10] [0320094551] +09:45:55 [ 11] [ 6] [703403] +09:45:55 [ 12] [ 6] [094551] +09:45:55 [ 13] [ 4] [0320] +09:45:55 [ 15] [ 4] [0320] +09:45:55 [ 18] [ 4] [6011] +09:45:55 [ 22] [ 3] [900] +09:45:55 [ 25] [ 2] [02] +09:45:55 [ 28] [ 9] [D00002000] +09:45:55 [ 32] [ 6] [621354] +09:45:55 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:45:55 [ 37] [ 12] [507904153827] +09:45:55 [ 41] [ 8] [20001000] +09:45:55 [ 42] [ 15] [NATIVE ] +09:45:55 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +09:45:55 [ 49] [ 3] [418] +09:45:55 [ 52] [ 16] [3C2FAFEFD4197364] +09:45:55 ============================================================================ +09:45:55 + + +waiting on router queue for slot.... +09:45:55 Sending to : <4> +09:45:55 ============================================================================ +09:45:56 ============================================================================ +09:45:56 Slot Id : <189> +09:45:56 Transaction Type : REQUEST +09:45:56 Received From : +09:45:56 ============================================================================ +09:45:56 FNo. Len. Field Value +09:45:56 ============================================================================ +09:45:56 [ 1] [ 4] [0200] +09:45:56 [ 2] [ 16] [1808930200045425] +09:45:56 [ 3] [ 6] [301000] +09:45:56 [ 4] [ 12] [000000000000] +09:45:56 [ 7] [ 10] [0320094552] +09:45:56 [ 11] [ 6] [703411] +09:45:56 [ 12] [ 6] [094552] +09:45:56 [ 13] [ 4] [0320] +09:45:56 [ 15] [ 4] [0320] +09:45:56 [ 18] [ 4] [6011] +09:45:56 [ 22] [ 3] [900] +09:45:56 [ 25] [ 2] [02] +09:45:56 [ 28] [ 9] [D00000000] +09:45:56 [ 32] [ 6] [621354] +09:45:56 [ 35] [ 27] [1808930200045425=1803500527] +09:45:56 [ 37] [ 12] [507905146809] +09:45:56 [ 41] [ 8] [09001800] +09:45:56 [ 42] [ 15] [NATIVE ] +09:45:56 [ 43] [ 40] [Donenoun unit2 Vientiane LAO] +09:45:56 [ 49] [ 3] [418] +09:45:56 [ 52] [ 16] [E710784992EF97E5] +09:45:56 ============================================================================ +09:45:56 + + +waiting on router queue for slot.... +09:45:56 Sending to : +09:45:56 ============================================================================ +09:45:56 Sending to : +09:45:56 ============================================================================ +09:45:56 ============================================================================ +09:45:56 Slot Id : <189> +09:45:56 Transaction Type : REQUEST +09:45:56 Received From : +09:45:56 ============================================================================ +09:45:56 FNo. Len. Field Value +09:45:56 ============================================================================ +09:45:56 [ 1] [ 4] [0200] +09:45:56 [ 2] [ 16] [1808930200045425] +09:45:56 [ 3] [ 6] [301000] +09:45:56 [ 4] [ 12] [000000000000] +09:45:56 [ 7] [ 10] [0320094552] +09:45:56 [ 11] [ 6] [703411] +09:45:56 [ 12] [ 6] [094552] +09:45:56 [ 13] [ 4] [0320] +09:45:56 [ 15] [ 4] [0320] +09:45:56 [ 18] [ 4] [6011] +09:45:56 [ 22] [ 3] [900] +09:45:56 [ 25] [ 2] [02] +09:45:56 [ 28] [ 9] [D00000000] +09:45:56 [ 32] [ 6] [621354] +09:45:56 [ 35] [ 27] [1808930200045425=1803500527] +09:45:56 [ 37] [ 12] [507905146809] +09:45:56 [ 41] [ 8] [09001800] +09:45:56 [ 42] [ 15] [NATIVE ] +09:45:56 [ 43] [ 40] [Donenoun unit2 Vientiane LAO] +09:45:56 [ 49] [ 3] [418] +09:45:56 [ 52] [ 16] [E710784992EF97E5] +09:45:56 ============================================================================ +09:45:56 + + +waiting on router queue for slot.... +09:45:56 Sending to : +09:45:56 ============================================================================ +09:45:56 ============================================================================ +09:45:56 Slot Id : <189> +09:45:56 Transaction Type : REQUEST +09:45:56 Received From : +09:45:56 ============================================================================ +09:45:56 FNo. Len. Field Value +09:45:56 ============================================================================ +09:45:56 [ 1] [ 4] [0200] +09:45:56 [ 2] [ 16] [1808930200045425] +09:45:56 [ 3] [ 6] [301000] +09:45:56 [ 4] [ 12] [000000000000] +09:45:56 [ 7] [ 10] [0320094552] +09:45:56 [ 11] [ 6] [703411] +09:45:56 [ 12] [ 6] [094552] +09:45:56 [ 13] [ 4] [0320] +09:45:56 [ 15] [ 4] [0320] +09:45:56 [ 18] [ 4] [6011] +09:45:56 [ 22] [ 3] [900] +09:45:56 [ 25] [ 2] [02] +09:45:56 [ 28] [ 9] [D00000000] +09:45:56 [ 32] [ 6] [621354] +09:45:56 [ 35] [ 27] [1808930200045425=1803500527] +09:45:56 [ 37] [ 12] [507905146809] +09:45:56 [ 41] [ 8] [09001800] +09:45:56 [ 42] [ 15] [NATIVE ] +09:45:56 [ 43] [ 40] [Donenoun unit2 Vientiane LAO] +09:45:56 [ 49] [ 3] [418] +09:45:56 [ 52] [ 16] [501F1EA1C6CD4970] +09:45:56 ============================================================================ +09:45:56 + + +waiting on router queue for slot.... +09:45:56 Sending to : <2> +09:45:56 ============================================================================ +09:45:56 ============================================================================ +09:45:56 Slot Id : <168> +09:45:56 Transaction Type : RESPONSE +09:45:56 Received From : +09:45:56 ============================================================================ +09:45:56 FNo. Len. Field Value +09:45:56 ============================================================================ +09:45:56 [ 1] [ 4] [0210] +09:45:56 [ 2] [ 16] [6688990060034814] +09:45:56 [ 3] [ 6] [011000] +09:45:56 [ 4] [ 12] [000020000000] +09:45:56 [ 11] [ 6] [703403] +09:45:56 [ 12] [ 6] [094551] +09:45:56 [ 15] [ 4] [0320] +09:45:56 [ 18] [ 4] [6011] +09:45:56 [ 32] [ 6] [621354] +09:45:56 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:45:56 [ 37] [ 12] [507904153827] +09:45:56 [ 38] [ 6] [640421] +09:45:56 [ 39] [ 2] [00] +09:45:56 [ 41] [ 8] [20001000] +09:45:56 [ 49] [ 3] [418] +09:45:56 [ 54] [ 20] [1002418C000271975088] +09:45:56 ============================================================================ +09:45:56 Sending to : +09:45:56 ============================================================================ +09:45:56 + + +waiting on router queue for slot.... +09:45:56 ============================================================================ +09:45:56 Slot Id : <230> +09:45:56 Transaction Type : REQUEST +09:45:56 Received From : +09:45:56 ============================================================================ +09:45:56 FNo. Len. Field Value +09:45:56 ============================================================================ +09:45:56 [ 1] [ 4] [0800] +09:45:56 [ 7] [ 10] [0320024504] +09:45:56 [ 11] [ 6] [155695] +09:45:56 [ 70] [ 3] [301] +09:45:56 ============================================================================ +09:45:56 + + +waiting on router queue for slot.... +09:45:56 Sending to : +09:45:56 ============================================================================ +09:45:56 ============================================================================ +09:45:56 Slot Id : <230> +09:45:56 Transaction Type : RESPONSE +09:45:56 Received From : +09:45:56 ============================================================================ +09:45:56 FNo. Len. Field Value +09:45:56 ============================================================================ +09:45:56 [ 1] [ 4] [0810] +09:45:56 [ 7] [ 10] [0320024504] +09:45:56 [ 11] [ 6] [155695] +09:45:56 [ 39] [ 2] [00] +09:45:56 [ 70] [ 3] [301] +09:45:56 ============================================================================ +09:45:56 Calculate Source COMM Id = 2 +09:45:56 ============================================================================ +09:45:56 + + +waiting on router queue for slot.... +09:45:58 ============================================================================ +09:45:58 Slot Id : <168> +09:45:58 Transaction Type : RESPONSE +09:45:58 Received From : +09:45:58 ============================================================================ +09:45:58 FNo. Len. Field Value +09:45:58 ============================================================================ +09:45:58 [ 1] [ 4] [0210] +09:45:58 [ 2] [ 16] [6688990060034814] +09:45:58 [ 3] [ 6] [011000] +09:45:58 [ 4] [ 12] [000020000000] +09:45:58 [ 11] [ 6] [703403] +09:45:58 [ 12] [ 6] [094551] +09:45:58 [ 15] [ 4] [0320] +09:45:58 [ 18] [ 4] [6011] +09:45:58 [ 32] [ 6] [621354] +09:45:58 [ 35] [ 37] [6688990060034814=98031261788704900000] +09:45:58 [ 37] [ 12] [507904153827] +09:45:58 [ 38] [ 6] [640421] +09:45:58 [ 39] [ 2] [00] +09:45:58 [ 41] [ 8] [20001000] +09:45:58 [ 49] [ 3] [418] +09:45:58 [ 54] [ 20] [1002418C000271975088] +09:45:58 ============================================================================ +09:45:58 Calculate Source COMM Id = 0 +09:45:58 ============================================================================ +09:45:58 + + +waiting on router queue for slot.... +09:45:59 ============================================================================ +09:45:59 Slot Id : <189> +09:45:59 Transaction Type : RESPONSE +09:45:59 Received From : +09:45:59 ============================================================================ +09:45:59 FNo. Len. Field Value +09:45:59 ============================================================================ +09:45:59 [ 1] [ 4] [0210] +09:45:59 [ 2] [ 16] [1808930200045425] +09:45:59 [ 3] [ 6] [301000] +09:45:59 [ 7] [ 10] [0320094552] +09:45:59 [ 11] [ 6] [703411] +09:45:59 [ 12] [ 6] [094552] +09:45:59 [ 13] [ 4] [0320] +09:45:59 [ 14] [ 4] [1803] +09:45:59 [ 19] [ 3] [418] +09:45:59 [ 32] [ 6] [621354] +09:45:59 [ 37] [ 12] [507905146809] +09:45:59 [ 38] [ 6] [703411] +09:45:59 [ 39] [ 2] [00] +09:45:59 [ 41] [ 8] [09001800] +09:45:59 [ 49] [ 3] [418] +09:45:59 [ 52] [ 16] [501F1EA1C6CD4970] +09:45:59 [ 54] [ 20] [1002418C000014860600] +09:45:59 ============================================================================ +09:45:59 Sending to : +09:45:59 ============================================================================ +09:45:59 + + +waiting on router queue for slot.... +09:46:00 ============================================================================ +09:46:00 Slot Id : <189> +09:46:00 Transaction Type : RESPONSE +09:46:00 Received From : +09:46:00 ============================================================================ +09:46:00 FNo. Len. Field Value +09:46:00 ============================================================================ +09:46:00 [ 1] [ 4] [0210] +09:46:00 [ 2] [ 16] [1808930200045425] +09:46:00 [ 3] [ 6] [301000] +09:46:00 [ 7] [ 10] [0320094552] +09:46:00 [ 11] [ 6] [703411] +09:46:00 [ 12] [ 6] [094552] +09:46:00 [ 13] [ 4] [0320] +09:46:00 [ 14] [ 4] [1803] +09:46:00 [ 19] [ 3] [418] +09:46:00 [ 32] [ 6] [621354] +09:46:00 [ 37] [ 12] [507905146809] +09:46:00 [ 38] [ 6] [703411] +09:46:00 [ 39] [ 2] [00] +09:46:00 [ 41] [ 8] [09001800] +09:46:00 [ 49] [ 3] [418] +09:46:00 [ 52] [ 16] [501F1EA1C6CD4970] +09:46:00 [ 54] [ 20] [1002418C000014860600] +09:46:00 ============================================================================ +09:46:00 Calculate Source COMM Id = 0 +09:46:00 ============================================================================ +09:46:00 + + +waiting on router queue for slot.... +09:46:07 ============================================================================ +09:46:07 Slot Id : <169> +09:46:07 Transaction Type : REQUEST +09:46:07 Received From : +09:46:07 ============================================================================ +09:46:07 FNo. Len. Field Value +09:46:07 ============================================================================ +09:46:07 [ 1] [ 4] [0800] +09:46:07 [ 7] [ 10] [0320024515] +09:46:07 [ 11] [ 6] [155696] +09:46:07 [ 70] [ 3] [301] +09:46:07 ============================================================================ +09:46:07 + + +waiting on router queue for slot.... +09:46:07 Sending to : +09:46:07 ============================================================================ +09:46:07 ============================================================================ +09:46:07 Slot Id : <169> +09:46:07 Transaction Type : RESPONSE +09:46:07 Received From : +09:46:07 ============================================================================ +09:46:07 FNo. Len. Field Value +09:46:07 ============================================================================ +09:46:07 [ 1] [ 4] [0810] +09:46:07 [ 7] [ 10] [0320024515] +09:46:07 [ 11] [ 6] [155696] +09:46:07 [ 39] [ 2] [00] +09:46:07 [ 70] [ 3] [301] +09:46:07 ============================================================================ +09:46:07 Calculate Source COMM Id = 2 +09:46:07 ============================================================================ +09:46:07 + + +waiting on router queue for slot.... +09:46:07 ============================================================================ +09:46:07 Slot Id : <205> +09:46:07 Transaction Type : REQUEST +09:46:07 Received From : +09:46:07 ============================================================================ +09:46:07 FNo. Len. Field Value +09:46:07 ============================================================================ +09:46:07 [ 1] [ 4] [0200] +09:46:07 [ 2] [ 16] [6213541000412117] +09:46:07 [ 3] [ 6] [300000] +09:46:07 [ 4] [ 12] [000000000000] +09:46:07 [ 7] [ 10] [0320094358] +09:46:07 [ 11] [ 6] [936508] +09:46:07 [ 12] [ 6] [094358] +09:46:07 [ 13] [ 4] [0320] +09:46:07 [ 15] [ 4] [0320] +09:46:07 [ 18] [ 4] [6011] +09:46:07 [ 19] [ 3] [418] +09:46:07 [ 22] [ 3] [021] +09:46:07 [ 25] [ 2] [01] +09:46:07 [ 28] [ 9] [D00000000] +09:46:07 [ 32] [ 6] [668899] +09:46:07 [ 35] [ 32] [6213541000412117=491212011211947] +09:46:07 [ 37] [ 12] [507902308442] +09:46:07 [ 41] [ 8] [03011003] +09:46:07 [ 42] [ 15] [APT ] +09:46:07 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +09:46:07 [ 49] [ 3] [418] +09:46:07 [ 52] [ 16] [DE244D264888B594] +09:46:07 ============================================================================ +09:46:07 + + +waiting on router queue for slot.... +09:46:07 Sending to : +09:46:07 ============================================================================ +09:46:07 Sending to : +09:46:07 ============================================================================ +09:46:08 ============================================================================ +09:46:08 Slot Id : <205> +09:46:08 Transaction Type : REQUEST +09:46:08 Received From : +09:46:08 ============================================================================ +09:46:08 FNo. Len. Field Value +09:46:08 ============================================================================ +09:46:08 [ 1] [ 4] [0200] +09:46:08 [ 2] [ 16] [6213541000412117] +09:46:08 [ 3] [ 6] [300000] +09:46:08 [ 4] [ 12] [000000000000] +09:46:08 [ 7] [ 10] [0320094358] +09:46:08 [ 11] [ 6] [936508] +09:46:08 [ 12] [ 6] [094358] +09:46:08 [ 13] [ 4] [0320] +09:46:08 [ 15] [ 4] [0320] +09:46:08 [ 18] [ 4] [6011] +09:46:08 [ 19] [ 3] [418] +09:46:08 [ 22] [ 3] [021] +09:46:08 [ 25] [ 2] [01] +09:46:08 [ 28] [ 9] [D00000000] +09:46:08 [ 32] [ 6] [668899] +09:46:08 [ 35] [ 32] [6213541000412117=491212011211947] +09:46:08 [ 37] [ 12] [507902308442] +09:46:08 [ 41] [ 8] [03011003] +09:46:08 [ 42] [ 15] [APT ] +09:46:08 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +09:46:08 [ 49] [ 3] [418] +09:46:08 [ 52] [ 16] [DE244D264888B594] +09:46:08 ============================================================================ +09:46:08 + + +waiting on router queue for slot.... +09:46:08 Sending to : +09:46:08 ============================================================================ +09:46:08 ============================================================================ +09:46:08 Slot Id : <205> +09:46:08 Transaction Type : REQUEST +09:46:08 Received From : +09:46:08 ============================================================================ +09:46:08 FNo. Len. Field Value +09:46:08 ============================================================================ +09:46:08 [ 1] [ 4] [0200] +09:46:08 [ 2] [ 16] [6213541000412117] +09:46:08 [ 3] [ 6] [300000] +09:46:08 [ 4] [ 12] [000000000000] +09:46:08 [ 7] [ 10] [0320094358] +09:46:08 [ 11] [ 6] [936508] +09:46:08 [ 12] [ 6] [094358] +09:46:08 [ 13] [ 4] [0320] +09:46:08 [ 15] [ 4] [0320] +09:46:08 [ 18] [ 4] [6011] +09:46:08 [ 19] [ 3] [418] +09:46:08 [ 22] [ 3] [021] +09:46:08 [ 25] [ 2] [01] +09:46:08 [ 28] [ 9] [D00000000] +09:46:08 [ 32] [ 6] [668899] +09:46:08 [ 35] [ 32] [6213541000412117=491212011211947] +09:46:08 [ 37] [ 12] [507902308442] +09:46:08 [ 41] [ 8] [03011003] +09:46:08 [ 42] [ 15] [APT ] +09:46:08 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +09:46:08 [ 49] [ 3] [418] +09:46:08 [ 52] [ 16] [EF820D0200B0EDBD] +09:46:08 ============================================================================ +09:46:08 + + +waiting on router queue for slot.... +09:46:08 Sending to : <0> +09:46:08 ============================================================================ +09:46:08 ============================================================================ +09:46:08 Slot Id : <205> +09:46:08 Transaction Type : RESPONSE +09:46:08 Received From : +09:46:08 ============================================================================ +09:46:08 FNo. Len. Field Value +09:46:08 ============================================================================ +09:46:08 [ 1] [ 4] [0210] +09:46:08 [ 2] [ 16] [6213541000412117] +09:46:08 [ 3] [ 6] [300000] +09:46:08 [ 4] [ 12] [000000000000] +09:46:08 [ 7] [ 10] [0320094358] +09:46:08 [ 11] [ 6] [936508] +09:46:08 [ 12] [ 6] [094358] +09:46:08 [ 13] [ 4] [0320] +09:46:08 [ 15] [ 4] [0320] +09:46:08 [ 18] [ 4] [6011] +09:46:08 [ 19] [ 3] [418] +09:46:08 [ 32] [ 6] [668899] +09:46:08 [ 35] [ 32] [6213541000412117=491212011211947] +09:46:08 [ 37] [ 12] [507902308442] +09:46:08 [ 38] [ 6] [065671] +09:46:08 [ 39] [ 2] [00] +09:46:08 [ 41] [ 8] [03011003] +09:46:08 [ 49] [ 3] [418] +09:46:08 [ 54] [ 40] [0001418C0001774908820002418C000177490882] +09:46:08 ============================================================================ +09:46:08 Sending to : +09:46:08 ============================================================================ +09:46:08 + + +waiting on router queue for slot.... +09:46:09 ============================================================================ +09:46:09 Slot Id : <205> +09:46:09 Transaction Type : RESPONSE +09:46:09 Received From : +09:46:09 ============================================================================ +09:46:09 FNo. Len. Field Value +09:46:09 ============================================================================ +09:46:09 [ 1] [ 4] [0210] +09:46:09 [ 2] [ 16] [6213541000412117] +09:46:09 [ 3] [ 6] [300000] +09:46:09 [ 4] [ 12] [000000000000] +09:46:09 [ 7] [ 10] [0320094358] +09:46:09 [ 11] [ 6] [936508] +09:46:09 [ 12] [ 6] [094358] +09:46:09 [ 13] [ 4] [0320] +09:46:09 [ 15] [ 4] [0320] +09:46:09 [ 18] [ 4] [6011] +09:46:09 [ 19] [ 3] [418] +09:46:09 [ 32] [ 6] [668899] +09:46:09 [ 35] [ 32] [6213541000412117=491212011211947] +09:46:09 [ 37] [ 12] [507902308442] +09:46:09 [ 38] [ 6] [065671] +09:46:09 [ 39] [ 2] [00] +09:46:09 [ 41] [ 8] [03011003] +09:46:09 [ 49] [ 3] [418] +09:46:09 [ 54] [ 40] [0001418C0001774908820002418C000177490882] +09:46:09 ============================================================================ +09:46:09 Calculate Source COMM Id = 4 +09:46:09 ============================================================================ +09:46:09 + + +waiting on router queue for slot.... +09:46:14 ============================================================================ +09:46:14 Slot Id : <232> +09:46:14 Transaction Type : REQUEST +09:46:14 Received From : +09:46:14 ============================================================================ +09:46:14 FNo. Len. Field Value +09:46:14 ============================================================================ +09:46:14 [ 1] [ 4] [0800] +09:46:14 [ 7] [ 10] [0320165802] +09:46:14 [ 11] [ 6] [095802] +09:46:14 [ 37] [ 12] [57909095802] +09:46:14 [ 70] [ 3] [301] +09:46:14 ============================================================================ +09:46:14 + + +waiting on router queue for slot.... +09:46:14 Sending to : +09:46:14 ============================================================================ +09:46:14 ============================================================================ +09:46:14 Slot Id : <232> +09:46:14 Transaction Type : RESPONSE +09:46:14 Received From : +09:46:14 ============================================================================ +09:46:14 FNo. Len. Field Value +09:46:14 ============================================================================ +09:46:14 [ 1] [ 4] [0810] +09:46:14 [ 7] [ 10] [0320165802] +09:46:14 [ 11] [ 6] [095802] +09:46:14 [ 37] [ 12] [579090958020] +09:46:14 [ 39] [ 2] [00] +09:46:14 [ 70] [ 3] [810] +09:46:14 ============================================================================ +09:46:14 Calculate Source COMM Id = 6 +09:46:14 ============================================================================ +09:46:14 + + +waiting on router queue for slot.... +09:46:18 ============================================================================ +09:46:18 Slot Id : <222> +09:46:18 Transaction Type : REQUEST +09:46:18 Received From : +09:46:18 ============================================================================ +09:46:18 FNo. Len. Field Value +09:46:18 ============================================================================ +09:46:18 [ 1] [ 4] [0800] +09:46:18 [ 7] [ 10] [0320024526] +09:46:18 [ 11] [ 6] [155697] +09:46:18 [ 70] [ 3] [301] +09:46:18 ============================================================================ +09:46:18 + + +waiting on router queue for slot.... +09:46:18 Sending to : +09:46:18 ============================================================================ +09:46:18 ============================================================================ +09:46:18 Slot Id : <222> +09:46:18 Transaction Type : RESPONSE +09:46:18 Received From : +09:46:18 ============================================================================ +09:46:18 FNo. Len. Field Value +09:46:18 ============================================================================ +09:46:18 [ 1] [ 4] [0810] +09:46:18 [ 7] [ 10] [0320024526] +09:46:18 [ 11] [ 6] [155697] +09:46:18 [ 39] [ 2] [00] +09:46:18 [ 70] [ 3] [301] +09:46:18 ============================================================================ +09:46:18 Calculate Source COMM Id = 2 +09:46:18 ============================================================================ +09:46:18 + + +waiting on router queue for slot.... +09:46:20 ============================================================================ +09:46:20 Slot Id : <173> +09:46:20 Transaction Type : REQUEST +09:46:20 Received From : +09:46:20 ============================================================================ +09:46:20 FNo. Len. Field Value +09:46:20 ============================================================================ +09:46:20 [ 1] [ 4] [0200] +09:46:20 [ 2] [ 16] [6213545000449185] +09:46:20 [ 3] [ 6] [011000] +09:46:20 [ 4] [ 12] [000100000000] +09:46:20 [ 7] [ 10] [0320094641] +09:46:20 [ 11] [ 6] [203202] +09:46:20 [ 12] [ 6] [214452] +09:46:20 [ 13] [ 4] [0319] +09:46:20 [ 14] [ 4] [4912] +09:46:20 [ 15] [ 4] [0319] +09:46:20 [ 18] [ 4] [6011] +09:46:20 [ 19] [ 3] [418] +09:46:20 [ 22] [ 3] [021] +09:46:20 [ 25] [ 2] [01] +09:46:20 [ 28] [ 9] [D00002000] +09:46:20 [ 32] [ 6] [198901] +09:46:20 [ 35] [ 32] [6213545000449185=491212014918648] +09:46:20 [ 37] [ 12] [507909203202] +09:46:20 [ 41] [ 8] [01529031] +09:46:20 [ 42] [ 15] [000000041529031] +09:46:20 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:46:20 [ 49] [ 3] [418] +09:46:20 [ 52] [ 16] [E4639A04EE7A5AC9] +09:46:20 ============================================================================ +09:46:20 + + +waiting on router queue for slot.... +09:46:20 Sending to : +09:46:20 ============================================================================ +09:46:20 Sending to : +09:46:20 ============================================================================ +09:46:20 ============================================================================ +09:46:20 Slot Id : <173> +09:46:20 Transaction Type : REQUEST +09:46:20 Received From : +09:46:20 ============================================================================ +09:46:20 FNo. Len. Field Value +09:46:20 ============================================================================ +09:46:20 [ 1] [ 4] [0200] +09:46:20 [ 2] [ 16] [6213545000449185] +09:46:20 [ 3] [ 6] [011000] +09:46:20 [ 4] [ 12] [000100000000] +09:46:20 [ 7] [ 10] [0320094641] +09:46:20 [ 11] [ 6] [203202] +09:46:20 [ 12] [ 6] [214452] +09:46:20 [ 13] [ 4] [0319] +09:46:20 [ 14] [ 4] [4912] +09:46:20 [ 15] [ 4] [0319] +09:46:20 [ 18] [ 4] [6011] +09:46:20 [ 19] [ 3] [418] +09:46:20 [ 22] [ 3] [021] +09:46:20 [ 25] [ 2] [01] +09:46:20 [ 28] [ 9] [D00002000] +09:46:20 [ 32] [ 6] [198901] +09:46:20 [ 35] [ 32] [6213545000449185=491212014918648] +09:46:20 [ 37] [ 12] [507909203202] +09:46:20 [ 41] [ 8] [01529031] +09:46:20 [ 42] [ 15] [000000041529031] +09:46:20 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:46:20 [ 49] [ 3] [418] +09:46:20 [ 52] [ 16] [E4639A04EE7A5AC9] +09:46:20 ============================================================================ +09:46:20 + + +waiting on router queue for slot.... +09:46:20 Sending to : +09:46:20 ============================================================================ +09:46:20 ============================================================================ +09:46:20 Slot Id : <173> +09:46:20 Transaction Type : REQUEST +09:46:20 Received From : +09:46:20 ============================================================================ +09:46:20 FNo. Len. Field Value +09:46:20 ============================================================================ +09:46:20 [ 1] [ 4] [0200] +09:46:20 [ 2] [ 16] [6213545000449185] +09:46:20 [ 3] [ 6] [011000] +09:46:20 [ 4] [ 12] [000100000000] +09:46:20 [ 7] [ 10] [0320094641] +09:46:20 [ 11] [ 6] [203202] +09:46:20 [ 12] [ 6] [214452] +09:46:20 [ 13] [ 4] [0319] +09:46:20 [ 14] [ 4] [4912] +09:46:20 [ 15] [ 4] [0319] +09:46:20 [ 18] [ 4] [6011] +09:46:20 [ 19] [ 3] [418] +09:46:20 [ 22] [ 3] [021] +09:46:20 [ 25] [ 2] [01] +09:46:20 [ 28] [ 9] [D00002000] +09:46:20 [ 32] [ 6] [198901] +09:46:20 [ 35] [ 32] [6213545000449185=491212014918648] +09:46:20 [ 37] [ 12] [507909203202] +09:46:20 [ 41] [ 8] [01529031] +09:46:20 [ 42] [ 15] [000000041529031] +09:46:20 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +09:46:20 [ 49] [ 3] [418] +09:46:20 [ 52] [ 16] [05C616C00DBDCB0B] +09:46:20 ============================================================================ +09:46:20 + + +waiting on router queue for slot.... +09:46:20 Sending to : <0> +09:46:20 ============================================================================ +09:46:21 ============================================================================ +09:46:21 Slot Id : <173> +09:46:21 Transaction Type : RESPONSE +09:46:21 Received From : +09:46:21 ============================================================================ +09:46:21 FNo. Len. Field Value +09:46:21 ============================================================================ +09:46:21 [ 1] [ 4] [0210] +09:46:21 [ 2] [ 16] [6213545000449185] +09:46:21 [ 3] [ 6] [011000] +09:46:21 [ 4] [ 12] [000100000000] +09:46:21 [ 7] [ 10] [0320094641] +09:46:21 [ 11] [ 6] [203202] +09:46:21 [ 12] [ 6] [214452] +09:46:21 [ 13] [ 4] [0319] +09:46:21 [ 15] [ 4] [0319] +09:46:21 [ 18] [ 4] [6011] +09:46:21 [ 19] [ 3] [418] +09:46:21 [ 32] [ 6] [198901] +09:46:21 [ 35] [ 32] [6213545000449185=491212014918648] +09:46:21 [ 37] [ 12] [507909203202] +09:46:21 [ 38] [ 6] [710889] +09:46:21 [ 39] [ 2] [00] +09:46:21 [ 41] [ 8] [01529031] +09:46:21 [ 49] [ 3] [418] +09:46:21 [ 54] [ 40] [1001418C0007197756921002418C000719775692] +09:46:21 ============================================================================ +09:46:21 Sending to : +09:46:21 ============================================================================ +09:46:21 + + +waiting on router queue for slot.... +09:46:21 ============================================================================ +09:46:21 Slot Id : <188> +09:46:21 Transaction Type : REQUEST +09:46:21 Received From : +09:46:21 ============================================================================ +09:46:21 FNo. Len. Field Value +09:46:21 ============================================================================ +09:46:21 [ 1] [ 4] [0800] +09:46:21 [ 7] [ 10] [0320024412] +09:46:21 [ 11] [ 6] [002968] +09:46:21 [ 37] [ 12] [57909002968] +09:46:21 [ 70] [ 3] [301] +09:46:21 ============================================================================ +09:46:21 + + +waiting on router queue for slot.... +09:46:21 Sending to : +09:46:21 ============================================================================ +09:46:21 ============================================================================ +09:46:21 Slot Id : <188> +09:46:21 Transaction Type : RESPONSE +09:46:21 Received From : +09:46:21 ============================================================================ +09:46:21 FNo. Len. Field Value +09:46:21 ============================================================================ +09:46:21 [ 1] [ 4] [0810] +09:46:21 [ 7] [ 10] [0320024412] +09:46:21 [ 11] [ 6] [002968] +09:46:21 [ 37] [ 12] [579090029680] +09:46:21 [ 39] [ 2] [00] +09:46:21 [ 70] [ 3] [810] +09:46:21 ============================================================================ +09:46:21 Calculate Source COMM Id = 4 +09:46:21 ============================================================================ +09:46:21 + + +waiting on router queue for slot.... +09:46:22 ============================================================================ +09:46:22 Slot Id : <173> +09:46:22 Transaction Type : RESPONSE +09:46:22 Received From : +09:46:22 ============================================================================ +09:46:22 FNo. Len. Field Value +09:46:22 ============================================================================ +09:46:22 [ 1] [ 4] [0210] +09:46:22 [ 2] [ 16] [6213545000449185] +09:46:22 [ 3] [ 6] [011000] +09:46:22 [ 4] [ 12] [000100000000] +09:46:22 [ 7] [ 10] [0320094641] +09:46:22 [ 11] [ 6] [203202] +09:46:22 [ 12] [ 6] [214452] +09:46:22 [ 13] [ 4] [0319] +09:46:22 [ 15] [ 4] [0319] +09:46:22 [ 18] [ 4] [6011] +09:46:22 [ 19] [ 3] [418] +09:46:22 [ 32] [ 6] [198901] +09:46:22 [ 35] [ 32] [6213545000449185=491212014918648] +09:46:22 [ 37] [ 12] [507909203202] +09:46:22 [ 38] [ 6] [710889] +09:46:22 [ 39] [ 2] [00] +09:46:22 [ 41] [ 8] [01529031] +09:46:22 [ 49] [ 3] [418] +09:46:22 [ 54] [ 40] [1001418C0007197756921002418C000719775692] +09:46:22 ============================================================================ +09:46:22 Calculate Source COMM Id = 5 +09:46:22 ============================================================================ +09:46:22 + + +waiting on router queue for slot.... +09:46:26 ============================================================================ +09:46:26 Slot Id : <229> +09:46:26 Transaction Type : REQUEST +09:46:26 Received From : +09:46:26 ============================================================================ +09:46:26 FNo. Len. Field Value +09:46:26 ============================================================================ +09:46:26 [ 1] [ 4] [0200] +09:46:26 [ 2] [ 16] [6213541000116098] +09:46:26 [ 3] [ 6] [011000] +09:46:26 [ 4] [ 12] [000100000000] +09:46:26 [ 7] [ 10] [0320095413] +09:46:26 [ 11] [ 6] [021133] +09:46:26 [ 12] [ 6] [095413] +09:46:26 [ 13] [ 4] [0320] +09:46:26 [ 14] [ 4] [4912] +09:46:26 [ 15] [ 4] [0320] +09:46:26 [ 18] [ 4] [6011] +09:46:26 [ 22] [ 3] [900] +09:46:26 [ 25] [ 2] [02] +09:46:26 [ 28] [ 9] [D00002000] +09:46:26 [ 32] [ 6] [220699] +09:46:26 [ 35] [ 32] [6213541000116098=491212011609091] +09:46:26 [ 37] [ 12] [507900263093] +09:46:26 [ 41] [ 8] [01001400] +09:46:26 [ 42] [ 15] [APTRA ] +09:46:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:46:26 [ 49] [ 3] [418] +09:46:26 [ 52] [ 16] [DBC831EC83869A6C] +09:46:26 ============================================================================ +09:46:26 + + +waiting on router queue for slot.... +09:46:26 Sending to : +09:46:26 ============================================================================ +09:46:26 Sending to : +09:46:26 ============================================================================ +09:46:26 ============================================================================ +09:46:26 Slot Id : <229> +09:46:26 Transaction Type : REQUEST +09:46:26 Received From : +09:46:26 ============================================================================ +09:46:26 FNo. Len. Field Value +09:46:26 ============================================================================ +09:46:26 [ 1] [ 4] [0200] +09:46:26 [ 2] [ 16] [6213541000116098] +09:46:26 [ 3] [ 6] [011000] +09:46:26 [ 4] [ 12] [000100000000] +09:46:26 [ 7] [ 10] [0320095413] +09:46:26 [ 11] [ 6] [021133] +09:46:26 [ 12] [ 6] [095413] +09:46:26 [ 13] [ 4] [0320] +09:46:26 [ 14] [ 4] [4912] +09:46:26 [ 15] [ 4] [0320] +09:46:26 [ 18] [ 4] [6011] +09:46:26 [ 22] [ 3] [900] +09:46:26 [ 25] [ 2] [02] +09:46:26 [ 28] [ 9] [D00002000] +09:46:26 [ 32] [ 6] [220699] +09:46:26 [ 35] [ 32] [6213541000116098=491212011609091] +09:46:26 [ 37] [ 12] [507900263093] +09:46:26 [ 41] [ 8] [01001400] +09:46:26 [ 42] [ 15] [APTRA ] +09:46:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:46:26 [ 49] [ 3] [418] +09:46:26 [ 52] [ 16] [DBC831EC83869A6C] +09:46:26 ============================================================================ +09:46:26 + + +waiting on router queue for slot.... +09:46:26 Sending to : +09:46:26 ============================================================================ +09:46:26 ============================================================================ +09:46:26 Slot Id : <229> +09:46:26 Transaction Type : REQUEST +09:46:26 Received From : +09:46:26 ============================================================================ +09:46:26 FNo. Len. Field Value +09:46:26 ============================================================================ +09:46:26 [ 1] [ 4] [0200] +09:46:26 [ 2] [ 16] [6213541000116098] +09:46:26 [ 3] [ 6] [011000] +09:46:26 [ 4] [ 12] [000100000000] +09:46:26 [ 7] [ 10] [0320095413] +09:46:26 [ 11] [ 6] [021133] +09:46:26 [ 12] [ 6] [095413] +09:46:26 [ 13] [ 4] [0320] +09:46:26 [ 14] [ 4] [4912] +09:46:26 [ 15] [ 4] [0320] +09:46:26 [ 18] [ 4] [6011] +09:46:26 [ 22] [ 3] [900] +09:46:26 [ 25] [ 2] [02] +09:46:26 [ 28] [ 9] [D00002000] +09:46:26 [ 32] [ 6] [220699] +09:46:26 [ 35] [ 32] [6213541000116098=491212011609091] +09:46:26 [ 37] [ 12] [507900263093] +09:46:26 [ 41] [ 8] [01001400] +09:46:26 [ 42] [ 15] [APTRA ] +09:46:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:46:26 [ 49] [ 3] [418] +09:46:26 [ 52] [ 16] [9AEFC9D884A37E34] +09:46:26 ============================================================================ +09:46:26 + + +waiting on router queue for slot.... +09:46:26 Sending to : <0> +09:46:26 ============================================================================ +09:46:27 ============================================================================ +09:46:27 Slot Id : <229> +09:46:27 Transaction Type : RESPONSE +09:46:27 Received From : +09:46:27 ============================================================================ +09:46:27 FNo. Len. Field Value +09:46:27 ============================================================================ +09:46:27 [ 1] [ 4] [0210] +09:46:27 [ 2] [ 16] [6213541000116098] +09:46:27 [ 3] [ 6] [011000] +09:46:27 [ 4] [ 12] [000100000000] +09:46:27 [ 7] [ 10] [0320095413] +09:46:27 [ 11] [ 6] [021133] +09:46:27 [ 12] [ 6] [095413] +09:46:27 [ 13] [ 4] [0320] +09:46:27 [ 15] [ 4] [0320] +09:46:27 [ 18] [ 4] [6011] +09:46:27 [ 32] [ 6] [220699] +09:46:27 [ 35] [ 32] [6213541000116098=491212011609091] +09:46:27 [ 37] [ 12] [507900263093] +09:46:27 [ 38] [ 6] [654531] +09:46:27 [ 39] [ 2] [00] +09:46:27 [ 41] [ 8] [01001400] +09:46:27 [ 49] [ 3] [418] +09:46:27 [ 54] [ 40] [1001418C0081259219551002418C008125921955] +09:46:27 ============================================================================ +09:46:27 Sending to : +09:46:27 ============================================================================ +09:46:27 + + +waiting on router queue for slot.... +09:46:29 ============================================================================ +09:46:29 Slot Id : <229> +09:46:29 Transaction Type : RESPONSE +09:46:29 Received From : +09:46:29 ============================================================================ +09:46:29 FNo. Len. Field Value +09:46:29 ============================================================================ +09:46:29 [ 1] [ 4] [0210] +09:46:29 [ 2] [ 16] [6213541000116098] +09:46:29 [ 3] [ 6] [011000] +09:46:29 [ 4] [ 12] [000100000000] +09:46:29 [ 7] [ 10] [0320095413] +09:46:29 [ 11] [ 6] [021133] +09:46:29 [ 12] [ 6] [095413] +09:46:29 [ 13] [ 4] [0320] +09:46:29 [ 15] [ 4] [0320] +09:46:29 [ 18] [ 4] [6011] +09:46:29 [ 32] [ 6] [220699] +09:46:29 [ 35] [ 32] [6213541000116098=491212011609091] +09:46:29 [ 37] [ 12] [507900263093] +09:46:29 [ 38] [ 6] [654531] +09:46:29 [ 39] [ 2] [00] +09:46:29 [ 41] [ 8] [01001400] +09:46:29 [ 49] [ 3] [418] +09:46:29 [ 54] [ 40] [1001418C0081259219551002418C008125921955] +09:46:29 ============================================================================ +09:46:29 Calculate Source COMM Id = 1 +09:46:29 ============================================================================ +09:46:29 + + +waiting on router queue for slot.... +09:46:31 ============================================================================ +09:46:31 Slot Id : <223> +09:46:31 Transaction Type : REQUEST +09:46:31 Received From : +09:46:31 ============================================================================ +09:46:31 FNo. Len. Field Value +09:46:31 ============================================================================ +09:46:31 [ 1] [ 4] [0800] +09:46:31 [ 2] [ 5] [02531] +09:46:31 [ 3] [ 6] [579098] +09:46:31 [ 7] [ 10] [0320024631] +09:46:31 [ 11] [ 6] [806979] +09:46:31 [ 15] [ 10] [0320024631] +09:46:31 [ 37] [ 11] [57909806979] +09:46:31 [ 70] [ 3] [001] +09:46:31 ============================================================================ +09:46:31 + + +waiting on router queue for slot.... +09:46:31 ============================================================================ +09:46:31 Slot Id : <223> +09:46:31 Transaction Type : RESPONSE +09:46:31 Received From : +09:46:31 ============================================================================ +09:46:31 FNo. Len. Field Value +09:46:31 ============================================================================ +09:46:31 [ 1] [ 4] [0810] +09:46:31 [ 7] [ 10] [0320024631] +09:46:31 [ 11] [ 6] [806979] +09:46:31 [ 15] [ 4] [0320] +09:46:31 [ 37] [ 12] [57909806979] +09:46:31 [ 39] [ 2] [00] +09:46:31 [ 70] [ 3] [001] +09:46:31 ============================================================================ +09:46:31 Sending to : +09:46:31 ============================================================================ +09:46:31 + + +waiting on router queue for slot.... +09:46:34 ============================================================================ +09:46:34 Slot Id : <215> +09:46:34 Transaction Type : REQUEST +09:46:34 Received From : +09:46:34 ============================================================================ +09:46:34 FNo. Len. Field Value +09:46:34 ============================================================================ +09:46:34 [ 1] [ 4] [0800] +09:46:34 [ 7] [ 10] [0320024542] +09:46:34 [ 11] [ 6] [155698] +09:46:34 [ 70] [ 3] [301] +09:46:34 ============================================================================ +09:46:34 + + +waiting on router queue for slot.... +09:46:34 Sending to : +09:46:34 ============================================================================ +09:46:34 ============================================================================ +09:46:34 Slot Id : <215> +09:46:34 Transaction Type : RESPONSE +09:46:34 Received From : +09:46:34 ============================================================================ +09:46:34 FNo. Len. Field Value +09:46:34 ============================================================================ +09:46:34 [ 1] [ 4] [0810] +09:46:34 [ 7] [ 10] [0320024542] +09:46:34 [ 11] [ 6] [155698] +09:46:34 [ 39] [ 2] [00] +09:46:34 [ 70] [ 3] [301] +09:46:34 ============================================================================ +09:46:34 Calculate Source COMM Id = 2 +09:46:34 ============================================================================ +09:46:34 + + +waiting on router queue for slot.... +09:46:45 ============================================================================ +09:46:45 Slot Id : <246> +09:46:45 Transaction Type : REQUEST +09:46:45 Received From : +09:46:45 ============================================================================ +09:46:45 FNo. Len. Field Value +09:46:45 ============================================================================ +09:46:45 [ 1] [ 4] [0800] +09:46:45 [ 7] [ 10] [0320024553] +09:46:45 [ 11] [ 6] [155699] +09:46:45 [ 70] [ 3] [301] +09:46:45 ============================================================================ +09:46:45 + + +waiting on router queue for slot.... +09:46:45 Sending to : +09:46:45 ============================================================================ +09:46:45 ============================================================================ +09:46:45 Slot Id : <246> +09:46:45 Transaction Type : RESPONSE +09:46:45 Received From : +09:46:45 ============================================================================ +09:46:45 FNo. Len. Field Value +09:46:45 ============================================================================ +09:46:45 [ 1] [ 4] [0810] +09:46:45 [ 7] [ 10] [0320024553] +09:46:45 [ 11] [ 6] [155699] +09:46:45 [ 39] [ 2] [00] +09:46:45 [ 70] [ 3] [301] +09:46:45 ============================================================================ +09:46:45 Calculate Source COMM Id = 2 +09:46:45 ============================================================================ +09:46:45 + + +waiting on router queue for slot.... +09:46:50 ============================================================================ +09:46:50 Slot Id : <248> +09:46:50 Transaction Type : REQUEST +09:46:50 Received From : +09:46:50 ============================================================================ +09:46:50 FNo. Len. Field Value +09:46:50 ============================================================================ +09:46:50 [ 1] [ 4] [0200] +09:46:50 [ 2] [ 16] [1808930300028297] +09:46:50 [ 3] [ 6] [011000] +09:46:50 [ 4] [ 12] [000070000000] +09:46:50 [ 7] [ 10] [0320094646] +09:46:50 [ 11] [ 6] [703640] +09:46:50 [ 12] [ 6] [094646] +09:46:50 [ 13] [ 4] [0320] +09:46:50 [ 15] [ 4] [0320] +09:46:50 [ 18] [ 4] [6011] +09:46:50 [ 22] [ 3] [900] +09:46:50 [ 25] [ 2] [02] +09:46:50 [ 28] [ 9] [D00002000] +09:46:50 [ 32] [ 6] [621354] +09:46:50 [ 35] [ 27] [1808930300028297=1803500950] +09:46:50 [ 37] [ 12] [507904495537] +09:46:50 [ 41] [ 8] [02001200] +09:46:50 [ 42] [ 15] [NATIVE ] +09:46:50 [ 43] [ 40] [Khammouane Branch01 Thakek LAO] +09:46:50 [ 49] [ 3] [418] +09:46:50 [ 52] [ 16] [1A72B981BFFB5A61] +09:46:50 ============================================================================ +09:46:50 + + +waiting on router queue for slot.... +09:46:50 Sending to : +09:46:50 ============================================================================ +09:46:50 Sending to : +09:46:50 ============================================================================ +09:46:51 ============================================================================ +09:46:51 Slot Id : <248> +09:46:51 Transaction Type : REQUEST +09:46:51 Received From : +09:46:51 ============================================================================ +09:46:51 FNo. Len. Field Value +09:46:51 ============================================================================ +09:46:51 [ 1] [ 4] [0200] +09:46:51 [ 2] [ 16] [1808930300028297] +09:46:51 [ 3] [ 6] [011000] +09:46:51 [ 4] [ 12] [000070000000] +09:46:51 [ 7] [ 10] [0320094646] +09:46:51 [ 11] [ 6] [703640] +09:46:51 [ 12] [ 6] [094646] +09:46:51 [ 13] [ 4] [0320] +09:46:51 [ 15] [ 4] [0320] +09:46:51 [ 18] [ 4] [6011] +09:46:51 [ 22] [ 3] [900] +09:46:51 [ 25] [ 2] [02] +09:46:51 [ 28] [ 9] [D00002000] +09:46:51 [ 32] [ 6] [621354] +09:46:51 [ 35] [ 27] [1808930300028297=1803500950] +09:46:51 [ 37] [ 12] [507904495537] +09:46:51 [ 41] [ 8] [02001200] +09:46:51 [ 42] [ 15] [NATIVE ] +09:46:51 [ 43] [ 40] [Khammouane Branch01 Thakek LAO] +09:46:51 [ 49] [ 3] [418] +09:46:51 [ 52] [ 16] [1A72B981BFFB5A61] +09:46:51 ============================================================================ +09:46:51 + + +waiting on router queue for slot.... +09:46:51 Sending to : +09:46:51 ============================================================================ +09:46:51 ============================================================================ +09:46:51 Slot Id : <248> +09:46:51 Transaction Type : REQUEST +09:46:51 Received From : +09:46:51 ============================================================================ +09:46:51 FNo. Len. Field Value +09:46:51 ============================================================================ +09:46:51 [ 1] [ 4] [0200] +09:46:51 [ 2] [ 16] [1808930300028297] +09:46:51 [ 3] [ 6] [011000] +09:46:51 [ 4] [ 12] [000070000000] +09:46:51 [ 7] [ 10] [0320094646] +09:46:51 [ 11] [ 6] [703640] +09:46:51 [ 12] [ 6] [094646] +09:46:51 [ 13] [ 4] [0320] +09:46:51 [ 15] [ 4] [0320] +09:46:51 [ 18] [ 4] [6011] +09:46:51 [ 22] [ 3] [900] +09:46:51 [ 25] [ 2] [02] +09:46:51 [ 28] [ 9] [D00002000] +09:46:51 [ 32] [ 6] [621354] +09:46:51 [ 35] [ 27] [1808930300028297=1803500950] +09:46:51 [ 37] [ 12] [507904495537] +09:46:51 [ 41] [ 8] [02001200] +09:46:51 [ 42] [ 15] [NATIVE ] +09:46:51 [ 43] [ 40] [Khammouane Branch01 Thakek LAO] +09:46:51 [ 49] [ 3] [418] +09:46:51 [ 52] [ 16] [DD54D72A4E232DBE] +09:46:51 ============================================================================ +09:46:51 + + +waiting on router queue for slot.... +09:46:51 Sending to : <2> +09:46:51 ============================================================================ +09:46:57 ============================================================================ +09:46:57 Slot Id : <248> +09:46:57 Transaction Type : RESPONSE +09:46:57 Received From : +09:46:57 ============================================================================ +09:46:57 FNo. Len. Field Value +09:46:57 ============================================================================ +09:46:57 [ 1] [ 4] [0210] +09:46:57 [ 2] [ 16] [1808930300028297] +09:46:57 [ 3] [ 6] [011000] +09:46:57 [ 4] [ 12] [000070000000] +09:46:57 [ 6] [ 12] [000070000000] +09:46:57 [ 7] [ 10] [0320094646] +09:46:57 [ 11] [ 6] [703640] +09:46:57 [ 12] [ 6] [094646] +09:46:57 [ 13] [ 4] [0320] +09:46:57 [ 18] [ 4] [6011] +09:46:57 [ 19] [ 3] [418] +09:46:57 [ 22] [ 3] [021] +09:46:57 [ 32] [ 6] [621354] +09:46:57 [ 35] [ 27] [1808930300028297=1803500950] +09:46:57 [ 37] [ 12] [507904495537] +09:46:57 [ 38] [ 6] [703640] +09:46:57 [ 39] [ 2] [00] +09:46:57 [ 41] [ 8] [02001200] +09:46:57 [ 49] [ 3] [418] +09:46:57 [ 52] [ 16] [DD54D72A4E232DBE] +09:46:57 [ 54] [ 20] [1001418C000102128700] +09:46:57 ============================================================================ +09:46:57 Sending to : +09:46:57 ============================================================================ +09:46:57 + + +waiting on router queue for slot.... +09:46:58 ============================================================================ +09:46:58 Slot Id : <248> +09:46:58 Transaction Type : RESPONSE +09:46:58 Received From : +09:46:58 ============================================================================ +09:46:58 FNo. Len. Field Value +09:46:58 ============================================================================ +09:46:58 [ 1] [ 4] [0210] +09:46:58 [ 2] [ 16] [1808930300028297] +09:46:58 [ 3] [ 6] [011000] +09:46:58 [ 4] [ 12] [000070000000] +09:46:58 [ 6] [ 12] [000070000000] +09:46:58 [ 7] [ 10] [0320094646] +09:46:58 [ 11] [ 6] [703640] +09:46:58 [ 12] [ 6] [094646] +09:46:58 [ 13] [ 4] [0320] +09:46:58 [ 18] [ 4] [6011] +09:46:58 [ 19] [ 3] [418] +09:46:58 [ 22] [ 3] [021] +09:46:58 [ 32] [ 6] [621354] +09:46:58 [ 35] [ 27] [1808930300028297=1803500950] +09:46:58 [ 37] [ 12] [507904495537] +09:46:58 [ 38] [ 6] [703640] +09:46:58 [ 39] [ 2] [00] +09:46:58 [ 41] [ 8] [02001200] +09:46:58 [ 49] [ 3] [418] +09:46:58 [ 52] [ 16] [DD54D72A4E232DBE] +09:46:58 [ 54] [ 20] [1001418C000102128700] +09:46:58 ============================================================================ +09:46:58 Calculate Source COMM Id = 0 +09:46:58 ============================================================================ +09:46:58 + + +waiting on router queue for slot.... +09:47:02 ============================================================================ +09:47:02 Slot Id : <243> +09:47:02 Transaction Type : REQUEST +09:47:02 Received From : +09:47:02 ============================================================================ +09:47:02 FNo. Len. Field Value +09:47:02 ============================================================================ +09:47:02 [ 1] [ 4] [0800] +09:47:02 [ 7] [ 10] [0320024610] +09:47:02 [ 11] [ 6] [155700] +09:47:02 [ 70] [ 3] [301] +09:47:02 ============================================================================ +09:47:02 + + +waiting on router queue for slot.... +09:47:02 Sending to : +09:47:02 ============================================================================ +09:47:02 ============================================================================ +09:47:02 Slot Id : <243> +09:47:02 Transaction Type : RESPONSE +09:47:02 Received From : +09:47:02 ============================================================================ +09:47:02 FNo. Len. Field Value +09:47:02 ============================================================================ +09:47:02 [ 1] [ 4] [0810] +09:47:02 [ 7] [ 10] [0320024610] +09:47:02 [ 11] [ 6] [155700] +09:47:02 [ 39] [ 2] [00] +09:47:02 [ 70] [ 3] [301] +09:47:02 ============================================================================ +09:47:02 Calculate Source COMM Id = 2 +09:47:02 ============================================================================ +09:47:02 + + +waiting on router queue for slot.... +09:47:18 ============================================================================ +09:47:18 Slot Id : <244> +09:47:18 Transaction Type : REQUEST +09:47:18 Received From : +09:47:18 ============================================================================ +09:47:18 FNo. Len. Field Value +09:47:18 ============================================================================ +09:47:18 [ 1] [ 4] [0800] +09:47:18 [ 7] [ 10] [0320024626] +09:47:18 [ 11] [ 6] [155701] +09:47:18 [ 70] [ 3] [301] +09:47:18 ============================================================================ +09:47:18 + + +waiting on router queue for slot.... +09:47:18 Sending to : +09:47:18 ============================================================================ +09:47:18 ============================================================================ +09:47:18 Slot Id : <244> +09:47:18 Transaction Type : RESPONSE +09:47:18 Received From : +09:47:18 ============================================================================ +09:47:18 FNo. Len. Field Value +09:47:18 ============================================================================ +09:47:18 [ 1] [ 4] [0810] +09:47:18 [ 7] [ 10] [0320024626] +09:47:18 [ 11] [ 6] [155701] +09:47:18 [ 39] [ 2] [00] +09:47:18 [ 70] [ 3] [301] +09:47:18 ============================================================================ +09:47:18 Calculate Source COMM Id = 2 +09:47:18 ============================================================================ +09:47:18 + + +waiting on router queue for slot.... +09:47:19 ============================================================================ +09:47:19 Slot Id : <177> +09:47:19 Transaction Type : REQUEST +09:47:19 Received From : +09:47:19 ============================================================================ +09:47:19 FNo. Len. Field Value +09:47:19 ============================================================================ +09:47:19 [ 1] [ 4] [0800] +09:47:19 [ 7] [ 10] [0320165907] +09:47:19 [ 11] [ 6] [095907] +09:47:19 [ 37] [ 12] [57909095907] +09:47:19 [ 70] [ 3] [301] +09:47:19 ============================================================================ +09:47:19 + + +waiting on router queue for slot.... +09:47:19 Sending to : +09:47:19 ============================================================================ +09:47:19 ============================================================================ +09:47:19 Slot Id : <177> +09:47:19 Transaction Type : RESPONSE +09:47:19 Received From : +09:47:19 ============================================================================ +09:47:19 FNo. Len. Field Value +09:47:19 ============================================================================ +09:47:19 [ 1] [ 4] [0810] +09:47:19 [ 7] [ 10] [0320165907] +09:47:19 [ 11] [ 6] [095907] +09:47:19 [ 37] [ 12] [579090959070] +09:47:19 [ 39] [ 2] [00] +09:47:19 [ 70] [ 3] [810] +09:47:19 ============================================================================ +09:47:19 Calculate Source COMM Id = 6 +09:47:19 ============================================================================ +09:47:19 + + +waiting on router queue for slot.... +09:47:32 ============================================================================ +09:47:32 Slot Id : <235> +09:47:32 Transaction Type : REQUEST +09:47:32 Received From : +09:47:32 ============================================================================ +09:47:32 FNo. Len. Field Value +09:47:32 ============================================================================ +09:47:32 [ 1] [ 4] [0200] +09:47:32 [ 2] [ 16] [6213541000412117] +09:47:32 [ 3] [ 6] [300000] +09:47:32 [ 4] [ 12] [000000000000] +09:47:32 [ 7] [ 10] [0320094523] +09:47:32 [ 11] [ 6] [936592] +09:47:32 [ 12] [ 6] [094523] +09:47:32 [ 13] [ 4] [0320] +09:47:32 [ 15] [ 4] [0320] +09:47:32 [ 18] [ 4] [6011] +09:47:32 [ 19] [ 3] [418] +09:47:32 [ 22] [ 3] [021] +09:47:32 [ 25] [ 2] [01] +09:47:32 [ 28] [ 9] [D00000000] +09:47:32 [ 32] [ 6] [668899] +09:47:32 [ 35] [ 32] [6213541000412117=491212011211947] +09:47:32 [ 37] [ 12] [507902308444] +09:47:32 [ 41] [ 8] [03011003] +09:47:32 [ 42] [ 15] [APT ] +09:47:32 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +09:47:32 [ 49] [ 3] [418] +09:47:32 [ 52] [ 16] [DE244D264888B594] +09:47:32 ============================================================================ +09:47:32 + + +waiting on router queue for slot.... +09:47:32 Sending to : +09:47:32 ============================================================================ +09:47:32 Sending to : +09:47:32 ============================================================================ +09:47:32 ============================================================================ +09:47:32 Slot Id : <235> +09:47:32 Transaction Type : REQUEST +09:47:32 Received From : +09:47:32 ============================================================================ +09:47:32 FNo. Len. Field Value +09:47:32 ============================================================================ +09:47:32 [ 1] [ 4] [0200] +09:47:32 [ 2] [ 16] [6213541000412117] +09:47:32 [ 3] [ 6] [300000] +09:47:32 [ 4] [ 12] [000000000000] +09:47:32 [ 7] [ 10] [0320094523] +09:47:32 [ 11] [ 6] [936592] +09:47:32 [ 12] [ 6] [094523] +09:47:32 [ 13] [ 4] [0320] +09:47:32 [ 15] [ 4] [0320] +09:47:32 [ 18] [ 4] [6011] +09:47:32 [ 19] [ 3] [418] +09:47:32 [ 22] [ 3] [021] +09:47:32 [ 25] [ 2] [01] +09:47:32 [ 28] [ 9] [D00000000] +09:47:32 [ 32] [ 6] [668899] +09:47:32 [ 35] [ 32] [6213541000412117=491212011211947] +09:47:32 [ 37] [ 12] [507902308444] +09:47:32 [ 41] [ 8] [03011003] +09:47:32 [ 42] [ 15] [APT ] +09:47:32 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +09:47:32 [ 49] [ 3] [418] +09:47:32 [ 52] [ 16] [DE244D264888B594] +09:47:32 ============================================================================ +09:47:32 + + +waiting on router queue for slot.... +09:47:32 Sending to : +09:47:32 ============================================================================ +09:47:32 ============================================================================ +09:47:32 Slot Id : <235> +09:47:32 Transaction Type : REQUEST +09:47:32 Received From : +09:47:32 ============================================================================ +09:47:32 FNo. Len. Field Value +09:47:32 ============================================================================ +09:47:32 [ 1] [ 4] [0200] +09:47:32 [ 2] [ 16] [6213541000412117] +09:47:32 [ 3] [ 6] [300000] +09:47:32 [ 4] [ 12] [000000000000] +09:47:32 [ 7] [ 10] [0320094523] +09:47:32 [ 11] [ 6] [936592] +09:47:32 [ 12] [ 6] [094523] +09:47:32 [ 13] [ 4] [0320] +09:47:32 [ 15] [ 4] [0320] +09:47:32 [ 18] [ 4] [6011] +09:47:32 [ 19] [ 3] [418] +09:47:32 [ 22] [ 3] [021] +09:47:32 [ 25] [ 2] [01] +09:47:32 [ 28] [ 9] [D00000000] +09:47:32 [ 32] [ 6] [668899] +09:47:32 [ 35] [ 32] [6213541000412117=491212011211947] +09:47:32 [ 37] [ 12] [507902308444] +09:47:32 [ 41] [ 8] [03011003] +09:47:32 [ 42] [ 15] [APT ] +09:47:32 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +09:47:32 [ 49] [ 3] [418] +09:47:32 [ 52] [ 16] [EF820D0200B0EDBD] +09:47:32 ============================================================================ +09:47:32 + + +waiting on router queue for slot.... +09:47:32 Sending to : <0> +09:47:32 ============================================================================ +09:47:33 ============================================================================ +09:47:33 Slot Id : <251> +09:47:33 Transaction Type : REQUEST +09:47:33 Received From : +09:47:33 ============================================================================ +09:47:33 FNo. Len. Field Value +09:47:33 ============================================================================ +09:47:33 [ 1] [ 4] [0800] +09:47:33 [ 2] [ 5] [02531] +09:47:33 [ 3] [ 6] [579098] +09:47:33 [ 7] [ 10] [0320024733] +09:47:33 [ 11] [ 6] [806980] +09:47:33 [ 15] [ 10] [0320024733] +09:47:33 [ 37] [ 11] [57909806980] +09:47:33 [ 70] [ 3] [001] +09:47:33 ============================================================================ +09:47:33 + + +waiting on router queue for slot.... +09:47:33 ============================================================================ +09:47:33 Slot Id : <251> +09:47:33 Transaction Type : RESPONSE +09:47:33 Received From : +09:47:33 ============================================================================ +09:47:33 FNo. Len. Field Value +09:47:33 ============================================================================ +09:47:33 [ 1] [ 4] [0810] +09:47:33 [ 7] [ 10] [0320024733] +09:47:33 [ 11] [ 6] [806980] +09:47:33 [ 15] [ 4] [0320] +09:47:33 [ 37] [ 12] [57909806980] +09:47:33 [ 39] [ 2] [00] +09:47:33 [ 70] [ 3] [001] +09:47:33 ============================================================================ +09:47:33 Sending to : +09:47:33 ============================================================================ +09:47:33 + + +waiting on router queue for slot.... +09:47:33 ============================================================================ +09:47:33 Slot Id : <235> +09:47:33 Transaction Type : RESPONSE +09:47:33 Received From : +09:47:33 ============================================================================ +09:47:33 FNo. Len. Field Value +09:47:33 ============================================================================ +09:47:33 [ 1] [ 4] [0210] +09:47:33 [ 2] [ 16] [6213541000412117] +09:47:33 [ 3] [ 6] [300000] +09:47:33 [ 4] [ 12] [000000000000] +09:47:33 [ 7] [ 10] [0320094523] +09:47:33 [ 11] [ 6] [936592] +09:47:33 [ 12] [ 6] [094523] +09:47:33 [ 13] [ 4] [0320] +09:47:33 [ 15] [ 4] [0320] +09:47:33 [ 18] [ 4] [6011] +09:47:33 [ 19] [ 3] [418] +09:47:33 [ 32] [ 6] [668899] +09:47:33 [ 35] [ 32] [6213541000412117=491212011211947] +09:47:33 [ 37] [ 12] [507902308444] +09:47:33 [ 38] [ 6] [990323] +09:47:33 [ 39] [ 2] [00] +09:47:33 [ 41] [ 8] [03011003] +09:47:33 [ 49] [ 3] [418] +09:47:33 [ 54] [ 40] [0001418C0001774908820002418C000177490882] +09:47:33 ============================================================================ +09:47:33 Sending to : +09:47:33 ============================================================================ +09:47:33 + + +waiting on router queue for slot.... +09:47:34 ============================================================================ +09:47:34 Slot Id : <227> +09:47:34 Transaction Type : REQUEST +09:47:34 Received From : +09:47:34 ============================================================================ +09:47:34 FNo. Len. Field Value +09:47:34 ============================================================================ +09:47:34 [ 1] [ 4] [0800] +09:47:34 [ 7] [ 10] [0320024642] +09:47:34 [ 11] [ 6] [155702] +09:47:34 [ 70] [ 3] [301] +09:47:34 ============================================================================ +09:47:34 + + +waiting on router queue for slot.... +09:47:34 Sending to : +09:47:34 ============================================================================ +09:47:34 ============================================================================ +09:47:34 Slot Id : <227> +09:47:34 Transaction Type : RESPONSE +09:47:34 Received From : +09:47:34 ============================================================================ +09:47:34 FNo. Len. Field Value +09:47:34 ============================================================================ +09:47:34 [ 1] [ 4] [0810] +09:47:34 [ 7] [ 10] [0320024642] +09:47:34 [ 11] [ 6] [155702] +09:47:34 [ 39] [ 2] [00] +09:47:34 [ 70] [ 3] [301] +09:47:34 ============================================================================ +09:47:34 Calculate Source COMM Id = 2 +09:47:34 ============================================================================ +09:47:34 + + +waiting on router queue for slot.... +09:47:34 ============================================================================ +09:47:34 Slot Id : <235> +09:47:34 Transaction Type : RESPONSE +09:47:34 Received From : +09:47:34 ============================================================================ +09:47:34 FNo. Len. Field Value +09:47:34 ============================================================================ +09:47:34 [ 1] [ 4] [0210] +09:47:34 [ 2] [ 16] [6213541000412117] +09:47:34 [ 3] [ 6] [300000] +09:47:34 [ 4] [ 12] [000000000000] +09:47:34 [ 7] [ 10] [0320094523] +09:47:34 [ 11] [ 6] [936592] +09:47:34 [ 12] [ 6] [094523] +09:47:34 [ 13] [ 4] [0320] +09:47:34 [ 15] [ 4] [0320] +09:47:34 [ 18] [ 4] [6011] +09:47:34 [ 19] [ 3] [418] +09:47:34 [ 32] [ 6] [668899] +09:47:34 [ 35] [ 32] [6213541000412117=491212011211947] +09:47:34 [ 37] [ 12] [507902308444] +09:47:34 [ 38] [ 6] [990323] +09:47:34 [ 39] [ 2] [00] +09:47:34 [ 41] [ 8] [03011003] +09:47:34 [ 49] [ 3] [418] +09:47:34 [ 54] [ 40] [0001418C0001774908820002418C000177490882] +09:47:34 ============================================================================ +09:47:34 Calculate Source COMM Id = 4 +09:47:34 ============================================================================ +09:47:34 + + +waiting on router queue for slot.... +09:47:41 ============================================================================ +09:47:41 Slot Id : <250> +09:47:41 Transaction Type : REQUEST +09:47:41 Received From : +09:47:41 ============================================================================ +09:47:41 FNo. Len. Field Value +09:47:41 ============================================================================ +09:47:41 [ 1] [ 4] [0200] +09:47:41 [ 2] [ 16] [6213541000116098] +09:47:41 [ 3] [ 6] [011000] +09:47:41 [ 4] [ 12] [000100000000] +09:47:41 [ 7] [ 10] [0320095528] +09:47:41 [ 11] [ 6] [021136] +09:47:41 [ 12] [ 6] [095528] +09:47:41 [ 13] [ 4] [0320] +09:47:41 [ 14] [ 4] [4912] +09:47:41 [ 15] [ 4] [0320] +09:47:41 [ 18] [ 4] [6011] +09:47:41 [ 22] [ 3] [900] +09:47:41 [ 25] [ 2] [02] +09:47:41 [ 28] [ 9] [D00002000] +09:47:41 [ 32] [ 6] [220699] +09:47:41 [ 35] [ 32] [6213541000116098=491212011609091] +09:47:41 [ 37] [ 12] [507900263095] +09:47:41 [ 41] [ 8] [01001400] +09:47:41 [ 42] [ 15] [APTRA ] +09:47:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:47:41 [ 49] [ 3] [418] +09:47:41 [ 52] [ 16] [DBC831EC83869A6C] +09:47:41 ============================================================================ +09:47:41 + + +waiting on router queue for slot.... +09:47:41 Sending to : +09:47:41 ============================================================================ +09:47:41 Sending to : +09:47:41 ============================================================================ +09:47:41 ============================================================================ +09:47:41 Slot Id : <250> +09:47:41 Transaction Type : REQUEST +09:47:41 Received From : +09:47:41 ============================================================================ +09:47:41 FNo. Len. Field Value +09:47:41 ============================================================================ +09:47:41 [ 1] [ 4] [0200] +09:47:41 [ 2] [ 16] [6213541000116098] +09:47:41 [ 3] [ 6] [011000] +09:47:41 [ 4] [ 12] [000100000000] +09:47:41 [ 7] [ 10] [0320095528] +09:47:41 [ 11] [ 6] [021136] +09:47:41 [ 12] [ 6] [095528] +09:47:41 [ 13] [ 4] [0320] +09:47:41 [ 14] [ 4] [4912] +09:47:41 [ 15] [ 4] [0320] +09:47:41 [ 18] [ 4] [6011] +09:47:41 [ 22] [ 3] [900] +09:47:41 [ 25] [ 2] [02] +09:47:41 [ 28] [ 9] [D00002000] +09:47:41 [ 32] [ 6] [220699] +09:47:41 [ 35] [ 32] [6213541000116098=491212011609091] +09:47:41 [ 37] [ 12] [507900263095] +09:47:41 [ 41] [ 8] [01001400] +09:47:41 [ 42] [ 15] [APTRA ] +09:47:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:47:41 [ 49] [ 3] [418] +09:47:41 [ 52] [ 16] [DBC831EC83869A6C] +09:47:41 ============================================================================ +09:47:41 + + +waiting on router queue for slot.... +09:47:41 Sending to : +09:47:41 ============================================================================ +09:47:41 ============================================================================ +09:47:41 Slot Id : <250> +09:47:41 Transaction Type : REQUEST +09:47:41 Received From : +09:47:41 ============================================================================ +09:47:41 FNo. Len. Field Value +09:47:41 ============================================================================ +09:47:41 [ 1] [ 4] [0200] +09:47:41 [ 2] [ 16] [6213541000116098] +09:47:41 [ 3] [ 6] [011000] +09:47:41 [ 4] [ 12] [000100000000] +09:47:41 [ 7] [ 10] [0320095528] +09:47:41 [ 11] [ 6] [021136] +09:47:41 [ 12] [ 6] [095528] +09:47:41 [ 13] [ 4] [0320] +09:47:41 [ 14] [ 4] [4912] +09:47:41 [ 15] [ 4] [0320] +09:47:41 [ 18] [ 4] [6011] +09:47:41 [ 22] [ 3] [900] +09:47:41 [ 25] [ 2] [02] +09:47:41 [ 28] [ 9] [D00002000] +09:47:41 [ 32] [ 6] [220699] +09:47:41 [ 35] [ 32] [6213541000116098=491212011609091] +09:47:41 [ 37] [ 12] [507900263095] +09:47:41 [ 41] [ 8] [01001400] +09:47:41 [ 42] [ 15] [APTRA ] +09:47:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:47:41 [ 49] [ 3] [418] +09:47:41 [ 52] [ 16] [9AEFC9D884A37E34] +09:47:41 ============================================================================ +09:47:41 + + +waiting on router queue for slot.... +09:47:41 Sending to : <0> +09:47:41 ============================================================================ +09:47:42 ============================================================================ +09:47:42 Slot Id : <250> +09:47:42 Transaction Type : RESPONSE +09:47:42 Received From : +09:47:42 ============================================================================ +09:47:42 FNo. Len. Field Value +09:47:42 ============================================================================ +09:47:42 [ 1] [ 4] [0210] +09:47:42 [ 2] [ 16] [6213541000116098] +09:47:42 [ 3] [ 6] [011000] +09:47:42 [ 4] [ 12] [000100000000] +09:47:42 [ 7] [ 10] [0320095528] +09:47:42 [ 11] [ 6] [021136] +09:47:42 [ 12] [ 6] [095528] +09:47:42 [ 13] [ 4] [0320] +09:47:42 [ 15] [ 4] [0320] +09:47:42 [ 18] [ 4] [6011] +09:47:42 [ 32] [ 6] [220699] +09:47:42 [ 35] [ 32] [6213541000116098=491212011609091] +09:47:42 [ 37] [ 12] [507900263095] +09:47:42 [ 38] [ 6] [870300] +09:47:42 [ 39] [ 2] [00] +09:47:42 [ 41] [ 8] [01001400] +09:47:42 [ 49] [ 3] [418] +09:47:42 [ 54] [ 40] [1001418C0080257219551002418C008025721955] +09:47:42 ============================================================================ +09:47:42 Sending to : +09:47:42 ============================================================================ +09:47:42 + + +waiting on router queue for slot.... +09:47:44 ============================================================================ +09:47:44 Slot Id : <250> +09:47:44 Transaction Type : RESPONSE +09:47:44 Received From : +09:47:44 ============================================================================ +09:47:44 FNo. Len. Field Value +09:47:44 ============================================================================ +09:47:44 [ 1] [ 4] [0210] +09:47:44 [ 2] [ 16] [6213541000116098] +09:47:44 [ 3] [ 6] [011000] +09:47:44 [ 4] [ 12] [000100000000] +09:47:44 [ 7] [ 10] [0320095528] +09:47:44 [ 11] [ 6] [021136] +09:47:44 [ 12] [ 6] [095528] +09:47:44 [ 13] [ 4] [0320] +09:47:44 [ 15] [ 4] [0320] +09:47:44 [ 18] [ 4] [6011] +09:47:44 [ 32] [ 6] [220699] +09:47:44 [ 35] [ 32] [6213541000116098=491212011609091] +09:47:44 [ 37] [ 12] [507900263095] +09:47:44 [ 38] [ 6] [870300] +09:47:44 [ 39] [ 2] [00] +09:47:44 [ 41] [ 8] [01001400] +09:47:44 [ 49] [ 3] [418] +09:47:44 [ 54] [ 40] [1001418C0080257219551002418C008025721955] +09:47:44 ============================================================================ +09:47:44 Calculate Source COMM Id = 1 +09:47:44 ============================================================================ +09:47:44 + + +waiting on router queue for slot.... +09:47:51 ============================================================================ +09:47:51 Slot Id : <242> +09:47:51 Transaction Type : REQUEST +09:47:51 Received From : +09:47:51 ============================================================================ +09:47:51 FNo. Len. Field Value +09:47:51 ============================================================================ +09:47:51 [ 1] [ 4] [0800] +09:47:51 [ 7] [ 10] [0320024659] +09:47:51 [ 11] [ 6] [155703] +09:47:51 [ 70] [ 3] [301] +09:47:51 ============================================================================ +09:47:51 + + +waiting on router queue for slot.... +09:47:51 Sending to : +09:47:51 ============================================================================ +09:47:51 ============================================================================ +09:47:51 Slot Id : <242> +09:47:51 Transaction Type : RESPONSE +09:47:51 Received From : +09:47:51 ============================================================================ +09:47:51 FNo. Len. Field Value +09:47:51 ============================================================================ +09:47:51 [ 1] [ 4] [0810] +09:47:51 [ 7] [ 10] [0320024659] +09:47:51 [ 11] [ 6] [155703] +09:47:51 [ 39] [ 2] [00] +09:47:51 [ 70] [ 3] [301] +09:47:51 ============================================================================ +09:47:51 Calculate Source COMM Id = 2 +09:47:51 ============================================================================ +09:47:51 + + +waiting on router queue for slot.... +09:48:08 ============================================================================ +09:48:08 Slot Id : <226> +09:48:08 Transaction Type : REQUEST +09:48:08 Received From : +09:48:08 ============================================================================ +09:48:08 FNo. Len. Field Value +09:48:08 ============================================================================ +09:48:08 [ 1] [ 4] [0800] +09:48:08 [ 7] [ 10] [0320024716] +09:48:08 [ 11] [ 6] [155704] +09:48:08 [ 70] [ 3] [301] +09:48:08 ============================================================================ +09:48:08 + + +waiting on router queue for slot.... +09:48:08 Sending to : +09:48:08 ============================================================================ +09:48:08 ============================================================================ +09:48:08 Slot Id : <226> +09:48:08 Transaction Type : RESPONSE +09:48:08 Received From : +09:48:08 ============================================================================ +09:48:08 FNo. Len. Field Value +09:48:08 ============================================================================ +09:48:08 [ 1] [ 4] [0810] +09:48:08 [ 7] [ 10] [0320024716] +09:48:08 [ 11] [ 6] [155704] +09:48:08 [ 39] [ 2] [00] +09:48:08 [ 70] [ 3] [301] +09:48:08 ============================================================================ +09:48:08 Calculate Source COMM Id = 2 +09:48:08 ============================================================================ +09:48:08 + + +waiting on router queue for slot.... +09:48:24 ============================================================================ +09:48:24 Slot Id : <255> +09:48:24 Transaction Type : REQUEST +09:48:24 Received From : +09:48:24 ============================================================================ +09:48:24 FNo. Len. Field Value +09:48:24 ============================================================================ +09:48:24 [ 1] [ 4] [0800] +09:48:24 [ 7] [ 10] [0320170012] +09:48:24 [ 11] [ 6] [100012] +09:48:24 [ 37] [ 12] [57910100012] +09:48:24 [ 70] [ 3] [301] +09:48:24 ============================================================================ +09:48:24 + + +waiting on router queue for slot.... +09:48:24 Sending to : +09:48:24 ============================================================================ +09:48:24 ============================================================================ +09:48:24 Slot Id : <255> +09:48:24 Transaction Type : RESPONSE +09:48:24 Received From : +09:48:24 ============================================================================ +09:48:24 FNo. Len. Field Value +09:48:24 ============================================================================ +09:48:24 [ 1] [ 4] [0810] +09:48:24 [ 7] [ 10] [0320170012] +09:48:24 [ 11] [ 6] [100012] +09:48:24 [ 37] [ 12] [579101000120] +09:48:24 [ 39] [ 2] [00] +09:48:24 [ 70] [ 3] [810] +09:48:24 ============================================================================ +09:48:24 Calculate Source COMM Id = 6 +09:48:24 ============================================================================ +09:48:24 + + +waiting on router queue for slot.... +09:48:25 ============================================================================ +09:48:25 Slot Id : <238> +09:48:25 Transaction Type : REQUEST +09:48:25 Received From : +09:48:25 ============================================================================ +09:48:25 FNo. Len. Field Value +09:48:25 ============================================================================ +09:48:25 [ 1] [ 4] [0800] +09:48:25 [ 7] [ 10] [0320024733] +09:48:25 [ 11] [ 6] [155705] +09:48:25 [ 70] [ 3] [301] +09:48:25 ============================================================================ +09:48:25 + + +waiting on router queue for slot.... +09:48:25 Sending to : +09:48:25 ============================================================================ +09:48:25 ============================================================================ +09:48:25 Slot Id : <238> +09:48:25 Transaction Type : RESPONSE +09:48:25 Received From : +09:48:25 ============================================================================ +09:48:25 FNo. Len. Field Value +09:48:25 ============================================================================ +09:48:25 [ 1] [ 4] [0810] +09:48:25 [ 7] [ 10] [0320024733] +09:48:25 [ 11] [ 6] [155705] +09:48:25 [ 39] [ 2] [00] +09:48:25 [ 70] [ 3] [301] +09:48:25 ============================================================================ +09:48:25 Calculate Source COMM Id = 2 +09:48:25 ============================================================================ +09:48:25 + + +waiting on router queue for slot.... +09:48:35 ============================================================================ +09:48:35 Slot Id : <200> +09:48:35 Transaction Type : REQUEST +09:48:35 Received From : +09:48:35 ============================================================================ +09:48:35 FNo. Len. Field Value +09:48:35 ============================================================================ +09:48:35 [ 1] [ 4] [0800] +09:48:35 [ 2] [ 5] [02531] +09:48:35 [ 3] [ 6] [579098] +09:48:35 [ 7] [ 10] [0320024835] +09:48:35 [ 11] [ 6] [806981] +09:48:35 [ 15] [ 10] [0320024835] +09:48:35 [ 37] [ 11] [57909806981] +09:48:35 [ 70] [ 3] [001] +09:48:35 ============================================================================ +09:48:35 + + +waiting on router queue for slot.... +09:48:35 ============================================================================ +09:48:35 Slot Id : <200> +09:48:35 Transaction Type : RESPONSE +09:48:35 Received From : +09:48:35 ============================================================================ +09:48:35 FNo. Len. Field Value +09:48:35 ============================================================================ +09:48:35 [ 1] [ 4] [0810] +09:48:35 [ 7] [ 10] [0320024835] +09:48:35 [ 11] [ 6] [806981] +09:48:35 [ 15] [ 4] [0320] +09:48:35 [ 37] [ 12] [57909806981] +09:48:35 [ 39] [ 2] [00] +09:48:35 [ 70] [ 3] [001] +09:48:35 ============================================================================ +09:48:35 Sending to : +09:48:35 ============================================================================ +09:48:35 + + +waiting on router queue for slot.... +09:48:36 ============================================================================ +09:48:36 Slot Id : <233> +09:48:36 Transaction Type : REQUEST +09:48:36 Received From : +09:48:36 ============================================================================ +09:48:36 FNo. Len. Field Value +09:48:36 ============================================================================ +09:48:36 [ 1] [ 4] [0800] +09:48:36 [ 7] [ 10] [0320024744] +09:48:36 [ 11] [ 6] [155706] +09:48:36 [ 70] [ 3] [301] +09:48:36 ============================================================================ +09:48:36 + + +waiting on router queue for slot.... +09:48:36 Sending to : +09:48:36 ============================================================================ +09:48:36 ============================================================================ +09:48:36 Slot Id : <233> +09:48:36 Transaction Type : RESPONSE +09:48:36 Received From : +09:48:36 ============================================================================ +09:48:36 FNo. Len. Field Value +09:48:36 ============================================================================ +09:48:36 [ 1] [ 4] [0810] +09:48:36 [ 7] [ 10] [0320024744] +09:48:36 [ 11] [ 6] [155706] +09:48:36 [ 39] [ 2] [00] +09:48:36 [ 70] [ 3] [301] +09:48:36 ============================================================================ +09:48:36 Calculate Source COMM Id = 2 +09:48:36 ============================================================================ +09:48:36 + + +waiting on router queue for slot.... +09:48:36 ============================================================================ +09:48:36 Slot Id : <237> +09:48:36 Transaction Type : REQUEST +09:48:36 Received From : +09:48:36 ============================================================================ +09:48:36 FNo. Len. Field Value +09:48:36 ============================================================================ +09:48:36 [ 1] [ 4] [0800] +09:48:36 [ 7] [ 10] [0320094823] +09:48:36 [ 11] [ 6] [054923] +09:48:36 [ 37] [ 12] [507909054923] +09:48:36 [ 70] [ 3] [ ] +09:48:36 ============================================================================ +09:48:36 + + +waiting on router queue for slot.... +09:48:36 Sending to : +09:48:36 ============================================================================ +09:48:36 ============================================================================ +09:48:36 Slot Id : <237> +09:48:36 Transaction Type : RESPONSE +09:48:36 Received From : +09:48:36 ============================================================================ +09:48:36 FNo. Len. Field Value +09:48:36 ============================================================================ +09:48:36 [ 1] [ 4] [0810] +09:48:36 [ 7] [ 10] [0320094823] +09:48:36 [ 11] [ 6] [054923] +09:48:36 [ 37] [ 12] [507909054923] +09:48:36 [ 39] [ 2] [91] +09:48:36 [ 70] [ 3] [ ] +09:48:36 ============================================================================ +09:48:36 Calculate Source COMM Id = 3 +09:48:36 ============================================================================ +09:48:36 + + +waiting on router queue for slot.... +09:48:38 ============================================================================ +09:48:38 Slot Id : <216> +09:48:38 Transaction Type : REQUEST +09:48:38 Received From : +09:48:38 ============================================================================ +09:48:38 FNo. Len. Field Value +09:48:38 ============================================================================ +09:48:38 [ 1] [ 4] [0200] +09:48:38 [ 2] [ 16] [6213541000116098] +09:48:38 [ 3] [ 6] [011000] +09:48:38 [ 4] [ 12] [000100000000] +09:48:38 [ 7] [ 10] [0320095625] +09:48:38 [ 11] [ 6] [021139] +09:48:38 [ 12] [ 6] [095625] +09:48:38 [ 13] [ 4] [0320] +09:48:38 [ 14] [ 4] [4912] +09:48:38 [ 15] [ 4] [0320] +09:48:38 [ 18] [ 4] [6011] +09:48:38 [ 22] [ 3] [900] +09:48:38 [ 25] [ 2] [02] +09:48:38 [ 28] [ 9] [D00002000] +09:48:38 [ 32] [ 6] [220699] +09:48:38 [ 35] [ 32] [6213541000116098=491212011609091] +09:48:38 [ 37] [ 12] [507900263097] +09:48:38 [ 41] [ 8] [01001400] +09:48:38 [ 42] [ 15] [APTRA ] +09:48:38 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:48:38 [ 49] [ 3] [418] +09:48:38 [ 52] [ 16] [DBC831EC83869A6C] +09:48:38 ============================================================================ +09:48:38 + + +waiting on router queue for slot.... +09:48:38 Sending to : +09:48:38 ============================================================================ +09:48:38 Sending to : +09:48:38 ============================================================================ +09:48:38 ============================================================================ +09:48:38 Slot Id : <216> +09:48:38 Transaction Type : REQUEST +09:48:38 Received From : +09:48:38 ============================================================================ +09:48:38 FNo. Len. Field Value +09:48:38 ============================================================================ +09:48:38 [ 1] [ 4] [0200] +09:48:38 [ 2] [ 16] [6213541000116098] +09:48:38 [ 3] [ 6] [011000] +09:48:38 [ 4] [ 12] [000100000000] +09:48:38 [ 7] [ 10] [0320095625] +09:48:38 [ 11] [ 6] [021139] +09:48:38 [ 12] [ 6] [095625] +09:48:38 [ 13] [ 4] [0320] +09:48:38 [ 14] [ 4] [4912] +09:48:38 [ 15] [ 4] [0320] +09:48:38 [ 18] [ 4] [6011] +09:48:38 [ 22] [ 3] [900] +09:48:38 [ 25] [ 2] [02] +09:48:38 [ 28] [ 9] [D00002000] +09:48:38 [ 32] [ 6] [220699] +09:48:38 [ 35] [ 32] [6213541000116098=491212011609091] +09:48:38 [ 37] [ 12] [507900263097] +09:48:38 [ 41] [ 8] [01001400] +09:48:38 [ 42] [ 15] [APTRA ] +09:48:38 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:48:38 [ 49] [ 3] [418] +09:48:38 [ 52] [ 16] [DBC831EC83869A6C] +09:48:38 ============================================================================ +09:48:38 + + +waiting on router queue for slot.... +09:48:38 Sending to : +09:48:38 ============================================================================ +09:48:38 ============================================================================ +09:48:38 Slot Id : <216> +09:48:38 Transaction Type : REQUEST +09:48:38 Received From : +09:48:38 ============================================================================ +09:48:38 FNo. Len. Field Value +09:48:38 ============================================================================ +09:48:38 [ 1] [ 4] [0200] +09:48:38 [ 2] [ 16] [6213541000116098] +09:48:38 [ 3] [ 6] [011000] +09:48:38 [ 4] [ 12] [000100000000] +09:48:38 [ 7] [ 10] [0320095625] +09:48:38 [ 11] [ 6] [021139] +09:48:38 [ 12] [ 6] [095625] +09:48:38 [ 13] [ 4] [0320] +09:48:38 [ 14] [ 4] [4912] +09:48:38 [ 15] [ 4] [0320] +09:48:38 [ 18] [ 4] [6011] +09:48:38 [ 22] [ 3] [900] +09:48:38 [ 25] [ 2] [02] +09:48:38 [ 28] [ 9] [D00002000] +09:48:38 [ 32] [ 6] [220699] +09:48:38 [ 35] [ 32] [6213541000116098=491212011609091] +09:48:38 [ 37] [ 12] [507900263097] +09:48:38 [ 41] [ 8] [01001400] +09:48:38 [ 42] [ 15] [APTRA ] +09:48:38 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:48:38 [ 49] [ 3] [418] +09:48:38 [ 52] [ 16] [9AEFC9D884A37E34] +09:48:38 ============================================================================ +09:48:38 + + +waiting on router queue for slot.... +09:48:38 Sending to : <0> +09:48:38 ============================================================================ +09:48:39 ============================================================================ +09:48:39 Slot Id : <234> +09:48:39 Transaction Type : REQUEST +09:48:39 Received From : +09:48:39 ============================================================================ +09:48:39 FNo. Len. Field Value +09:48:39 ============================================================================ +09:48:39 [ 1] [ 4] [0200] +09:48:39 [ 2] [ 16] [1808930900038571] +09:48:39 [ 3] [ 6] [301000] +09:48:39 [ 4] [ 12] [000000000000] +09:48:39 [ 7] [ 10] [0320094835] +09:48:39 [ 11] [ 6] [704097] +09:48:39 [ 12] [ 6] [094835] +09:48:39 [ 13] [ 4] [0320] +09:48:39 [ 15] [ 4] [0320] +09:48:39 [ 18] [ 4] [6011] +09:48:39 [ 22] [ 3] [900] +09:48:39 [ 25] [ 2] [02] +09:48:39 [ 28] [ 9] [D00000000] +09:48:39 [ 32] [ 6] [621354] +09:48:39 [ 35] [ 27] [1808930900038571=1803500116] +09:48:39 [ 37] [ 12] [507902539744] +09:48:39 [ 41] [ 8] [05003600] +09:48:39 [ 42] [ 15] [NATIVE ] +09:48:39 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +09:48:39 [ 49] [ 3] [418] +09:48:39 [ 52] [ 16] [55F70480E760B46F] +09:48:39 ============================================================================ +09:48:39 + + +waiting on router queue for slot.... +09:48:39 Sending to : +09:48:39 ============================================================================ +09:48:39 Sending to : +09:48:39 ============================================================================ +09:48:39 ============================================================================ +09:48:39 Slot Id : <234> +09:48:39 Transaction Type : REQUEST +09:48:39 Received From : +09:48:39 ============================================================================ +09:48:39 FNo. Len. Field Value +09:48:39 ============================================================================ +09:48:39 [ 1] [ 4] [0200] +09:48:39 [ 2] [ 16] [1808930900038571] +09:48:39 [ 3] [ 6] [301000] +09:48:39 [ 4] [ 12] [000000000000] +09:48:39 [ 7] [ 10] [0320094835] +09:48:39 [ 11] [ 6] [704097] +09:48:39 [ 12] [ 6] [094835] +09:48:39 [ 13] [ 4] [0320] +09:48:39 [ 15] [ 4] [0320] +09:48:39 [ 18] [ 4] [6011] +09:48:39 [ 22] [ 3] [900] +09:48:39 [ 25] [ 2] [02] +09:48:39 [ 28] [ 9] [D00000000] +09:48:39 [ 32] [ 6] [621354] +09:48:39 [ 35] [ 27] [1808930900038571=1803500116] +09:48:39 [ 37] [ 12] [507902539744] +09:48:39 [ 41] [ 8] [05003600] +09:48:39 [ 42] [ 15] [NATIVE ] +09:48:39 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +09:48:39 [ 49] [ 3] [418] +09:48:39 [ 52] [ 16] [55F70480E760B46F] +09:48:39 ============================================================================ +09:48:39 + + +waiting on router queue for slot.... +09:48:39 Sending to : +09:48:39 ============================================================================ +09:48:39 ============================================================================ +09:48:39 Slot Id : <234> +09:48:39 Transaction Type : REQUEST +09:48:39 Received From : +09:48:39 ============================================================================ +09:48:39 FNo. Len. Field Value +09:48:39 ============================================================================ +09:48:39 [ 1] [ 4] [0200] +09:48:39 [ 2] [ 16] [1808930900038571] +09:48:39 [ 3] [ 6] [301000] +09:48:39 [ 4] [ 12] [000000000000] +09:48:39 [ 7] [ 10] [0320094835] +09:48:39 [ 11] [ 6] [704097] +09:48:39 [ 12] [ 6] [094835] +09:48:39 [ 13] [ 4] [0320] +09:48:39 [ 15] [ 4] [0320] +09:48:39 [ 18] [ 4] [6011] +09:48:39 [ 22] [ 3] [900] +09:48:39 [ 25] [ 2] [02] +09:48:39 [ 28] [ 9] [D00000000] +09:48:39 [ 32] [ 6] [621354] +09:48:39 [ 35] [ 27] [1808930900038571=1803500116] +09:48:39 [ 37] [ 12] [507902539744] +09:48:39 [ 41] [ 8] [05003600] +09:48:39 [ 42] [ 15] [NATIVE ] +09:48:39 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +09:48:39 [ 49] [ 3] [418] +09:48:39 [ 52] [ 16] [04322734561A4E61] +09:48:39 ============================================================================ +09:48:39 + + +waiting on router queue for slot.... +09:48:39 Sending to : <2> +09:48:39 ============================================================================ +09:48:40 ============================================================================ +09:48:40 Slot Id : <216> +09:48:40 Transaction Type : RESPONSE +09:48:40 Received From : +09:48:40 ============================================================================ +09:48:40 FNo. Len. Field Value +09:48:40 ============================================================================ +09:48:40 [ 1] [ 4] [0210] +09:48:40 [ 2] [ 16] [6213541000116098] +09:48:40 [ 3] [ 6] [011000] +09:48:40 [ 4] [ 12] [000100000000] +09:48:40 [ 7] [ 10] [0320095625] +09:48:40 [ 11] [ 6] [021139] +09:48:40 [ 12] [ 6] [095625] +09:48:40 [ 13] [ 4] [0320] +09:48:40 [ 15] [ 4] [0320] +09:48:40 [ 18] [ 4] [6011] +09:48:40 [ 32] [ 6] [220699] +09:48:40 [ 35] [ 32] [6213541000116098=491212011609091] +09:48:40 [ 37] [ 12] [507900263097] +09:48:40 [ 38] [ 6] [916864] +09:48:40 [ 39] [ 2] [00] +09:48:40 [ 41] [ 8] [01001400] +09:48:40 [ 49] [ 3] [418] +09:48:40 [ 54] [ 40] [1001418C0079255219551002418C007925521955] +09:48:40 ============================================================================ +09:48:40 Sending to : +09:48:40 ============================================================================ +09:48:40 + + +waiting on router queue for slot.... +09:48:41 ============================================================================ +09:48:41 Slot Id : <216> +09:48:41 Transaction Type : RESPONSE +09:48:41 Received From : +09:48:41 ============================================================================ +09:48:41 FNo. Len. Field Value +09:48:41 ============================================================================ +09:48:41 [ 1] [ 4] [0210] +09:48:41 [ 2] [ 16] [6213541000116098] +09:48:41 [ 3] [ 6] [011000] +09:48:41 [ 4] [ 12] [000100000000] +09:48:41 [ 7] [ 10] [0320095625] +09:48:41 [ 11] [ 6] [021139] +09:48:41 [ 12] [ 6] [095625] +09:48:41 [ 13] [ 4] [0320] +09:48:41 [ 15] [ 4] [0320] +09:48:41 [ 18] [ 4] [6011] +09:48:41 [ 32] [ 6] [220699] +09:48:41 [ 35] [ 32] [6213541000116098=491212011609091] +09:48:41 [ 37] [ 12] [507900263097] +09:48:41 [ 38] [ 6] [916864] +09:48:41 [ 39] [ 2] [00] +09:48:41 [ 41] [ 8] [01001400] +09:48:41 [ 49] [ 3] [418] +09:48:41 [ 54] [ 40] [1001418C0079255219551002418C007925521955] +09:48:41 ============================================================================ +09:48:41 Calculate Source COMM Id = 1 +09:48:41 ============================================================================ +09:48:41 + + +waiting on router queue for slot.... +09:48:41 ============================================================================ +09:48:41 Slot Id : <220> +09:48:41 Transaction Type : REQUEST +09:48:41 Received From : +09:48:41 ============================================================================ +09:48:41 FNo. Len. Field Value +09:48:41 ============================================================================ +09:48:41 [ 1] [ 4] [0200] +09:48:41 [ 2] [ 16] [6213545000509574] +09:48:41 [ 3] [ 6] [010000] +09:48:41 [ 4] [ 12] [000030000000] +09:48:41 [ 7] [ 10] [0320095629] +09:48:41 [ 11] [ 6] [168900] +09:48:41 [ 12] [ 6] [095629] +09:48:41 [ 13] [ 4] [0320] +09:48:41 [ 14] [ 4] [4912] +09:48:41 [ 15] [ 4] [0320] +09:48:41 [ 18] [ 4] [6011] +09:48:41 [ 22] [ 3] [900] +09:48:41 [ 25] [ 2] [02] +09:48:41 [ 28] [ 9] [D00002000] +09:48:41 [ 32] [ 6] [220699] +09:48:41 [ 35] [ 32] [6213545000509574=491212010957689] +09:48:41 [ 37] [ 12] [507900026320] +09:48:41 [ 41] [ 8] [01000200] +09:48:41 [ 42] [ 15] [APTRA ] +09:48:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:48:41 [ 49] [ 3] [418] +09:48:41 [ 52] [ 16] [5AB2E77520641C43] +09:48:41 ============================================================================ +09:48:41 + + +waiting on router queue for slot.... +09:48:41 Sending to : +09:48:41 ============================================================================ +09:48:41 Sending to : +09:48:41 ============================================================================ +09:48:41 ============================================================================ +09:48:41 Slot Id : <220> +09:48:41 Transaction Type : REQUEST +09:48:41 Received From : +09:48:41 ============================================================================ +09:48:41 FNo. Len. Field Value +09:48:41 ============================================================================ +09:48:41 [ 1] [ 4] [0200] +09:48:41 [ 2] [ 16] [6213545000509574] +09:48:41 [ 3] [ 6] [010000] +09:48:41 [ 4] [ 12] [000030000000] +09:48:41 [ 7] [ 10] [0320095629] +09:48:41 [ 11] [ 6] [168900] +09:48:41 [ 12] [ 6] [095629] +09:48:41 [ 13] [ 4] [0320] +09:48:41 [ 14] [ 4] [4912] +09:48:41 [ 15] [ 4] [0320] +09:48:41 [ 18] [ 4] [6011] +09:48:41 [ 22] [ 3] [900] +09:48:41 [ 25] [ 2] [02] +09:48:41 [ 28] [ 9] [D00002000] +09:48:41 [ 32] [ 6] [220699] +09:48:41 [ 35] [ 32] [6213545000509574=491212010957689] +09:48:41 [ 37] [ 12] [507900026320] +09:48:41 [ 41] [ 8] [01000200] +09:48:41 [ 42] [ 15] [APTRA ] +09:48:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:48:41 [ 49] [ 3] [418] +09:48:41 [ 52] [ 16] [5AB2E77520641C43] +09:48:41 ============================================================================ +09:48:41 + + +waiting on router queue for slot.... +09:48:41 Sending to : +09:48:41 ============================================================================ +09:48:42 ============================================================================ +09:48:42 Slot Id : <220> +09:48:42 Transaction Type : REQUEST +09:48:42 Received From : +09:48:42 ============================================================================ +09:48:42 FNo. Len. Field Value +09:48:42 ============================================================================ +09:48:42 [ 1] [ 4] [0200] +09:48:42 [ 2] [ 16] [6213545000509574] +09:48:42 [ 3] [ 6] [010000] +09:48:42 [ 4] [ 12] [000030000000] +09:48:42 [ 7] [ 10] [0320095629] +09:48:42 [ 11] [ 6] [168900] +09:48:42 [ 12] [ 6] [095629] +09:48:42 [ 13] [ 4] [0320] +09:48:42 [ 14] [ 4] [4912] +09:48:42 [ 15] [ 4] [0320] +09:48:42 [ 18] [ 4] [6011] +09:48:42 [ 22] [ 3] [900] +09:48:42 [ 25] [ 2] [02] +09:48:42 [ 28] [ 9] [D00002000] +09:48:42 [ 32] [ 6] [220699] +09:48:42 [ 35] [ 32] [6213545000509574=491212010957689] +09:48:42 [ 37] [ 12] [507900026320] +09:48:42 [ 41] [ 8] [01000200] +09:48:42 [ 42] [ 15] [APTRA ] +09:48:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:48:42 [ 49] [ 3] [418] +09:48:42 [ 52] [ 16] [1A719230D419F1B2] +09:48:42 ============================================================================ +09:48:42 + + +waiting on router queue for slot.... +09:48:42 Sending to : <0> +09:48:42 ============================================================================ +09:48:43 ============================================================================ +09:48:43 Slot Id : <220> +09:48:43 Transaction Type : RESPONSE +09:48:43 Received From : +09:48:43 ============================================================================ +09:48:43 FNo. Len. Field Value +09:48:43 ============================================================================ +09:48:43 [ 1] [ 4] [0210] +09:48:43 [ 2] [ 16] [6213545000509574] +09:48:43 [ 3] [ 6] [010000] +09:48:43 [ 4] [ 12] [000030000000] +09:48:43 [ 7] [ 10] [0320095629] +09:48:43 [ 11] [ 6] [168900] +09:48:43 [ 12] [ 6] [095629] +09:48:43 [ 13] [ 4] [0320] +09:48:43 [ 15] [ 4] [0320] +09:48:43 [ 18] [ 4] [6011] +09:48:43 [ 32] [ 6] [220699] +09:48:43 [ 35] [ 32] [6213545000509574=491212010957689] +09:48:43 [ 37] [ 12] [507900026320] +09:48:43 [ 38] [ 6] [044434] +09:48:43 [ 39] [ 2] [00] +09:48:43 [ 41] [ 8] [01000200] +09:48:43 [ 49] [ 3] [418] +09:48:43 [ 54] [ 40] [0001418C0000440773940002418C000044077394] +09:48:43 ============================================================================ +09:48:43 Sending to : +09:48:43 ============================================================================ +09:48:43 + + +waiting on router queue for slot.... +09:48:44 ============================================================================ +09:48:44 Slot Id : <220> +09:48:44 Transaction Type : RESPONSE +09:48:44 Received From : +09:48:44 ============================================================================ +09:48:44 FNo. Len. Field Value +09:48:44 ============================================================================ +09:48:44 [ 1] [ 4] [0210] +09:48:44 [ 2] [ 16] [6213545000509574] +09:48:44 [ 3] [ 6] [010000] +09:48:44 [ 4] [ 12] [000030000000] +09:48:44 [ 7] [ 10] [0320095629] +09:48:44 [ 11] [ 6] [168900] +09:48:44 [ 12] [ 6] [095629] +09:48:44 [ 13] [ 4] [0320] +09:48:44 [ 15] [ 4] [0320] +09:48:44 [ 18] [ 4] [6011] +09:48:44 [ 32] [ 6] [220699] +09:48:44 [ 35] [ 32] [6213545000509574=491212010957689] +09:48:44 [ 37] [ 12] [507900026320] +09:48:44 [ 38] [ 6] [044434] +09:48:44 [ 39] [ 2] [00] +09:48:44 [ 41] [ 8] [01000200] +09:48:44 [ 49] [ 3] [418] +09:48:44 [ 54] [ 40] [0001418C0000440773940002418C000044077394] +09:48:44 ============================================================================ +09:48:44 Calculate Source COMM Id = 1 +09:48:44 ============================================================================ +09:48:44 + + +waiting on router queue for slot.... +09:48:48 ============================================================================ +09:48:48 Slot Id : <253> +09:48:48 Transaction Type : REQUEST +09:48:48 Received From : +09:48:48 ============================================================================ +09:48:48 FNo. Len. Field Value +09:48:48 ============================================================================ +09:48:48 [ 1] [ 4] [0200] +09:48:48 [ 2] [ 16] [6688990100941507] +09:48:48 [ 3] [ 6] [010000] +09:48:48 [ 4] [ 12] [000100000000] +09:48:48 [ 7] [ 10] [0320094844] +09:48:48 [ 11] [ 6] [704138] +09:48:48 [ 12] [ 6] [094844] +09:48:48 [ 13] [ 4] [0320] +09:48:48 [ 15] [ 4] [0320] +09:48:48 [ 18] [ 4] [6011] +09:48:48 [ 22] [ 3] [900] +09:48:48 [ 25] [ 2] [02] +09:48:48 [ 28] [ 9] [D00002000] +09:48:48 [ 32] [ 6] [621354] +09:48:48 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:48:48 [ 37] [ 12] [507904719447] +09:48:48 [ 41] [ 8] [18001000] +09:48:48 [ 42] [ 15] [NATIVE ] +09:48:48 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:48:48 [ 49] [ 3] [418] +09:48:48 [ 52] [ 16] [3B496FEB663F5696] +09:48:48 ============================================================================ +09:48:48 + + +waiting on router queue for slot.... +09:48:48 Sending to : +09:48:48 ============================================================================ +09:48:48 Sending to : +09:48:48 ============================================================================ +09:48:48 ============================================================================ +09:48:48 Slot Id : <234> +09:48:48 Transaction Type : RESPONSE +09:48:48 Received From : +09:48:48 ============================================================================ +09:48:48 FNo. Len. Field Value +09:48:48 ============================================================================ +09:48:48 [ 1] [ 4] [0210] +09:48:48 [ 2] [ 16] [1808930900038571] +09:48:48 [ 3] [ 6] [301000] +09:48:48 [ 7] [ 10] [0320094835] +09:48:48 [ 11] [ 6] [704097] +09:48:48 [ 12] [ 6] [094835] +09:48:48 [ 13] [ 4] [0320] +09:48:48 [ 14] [ 4] [1803] +09:48:48 [ 19] [ 3] [418] +09:48:48 [ 32] [ 6] [621354] +09:48:48 [ 37] [ 12] [507902539744] +09:48:48 [ 38] [ 6] [704097] +09:48:48 [ 39] [ 2] [00] +09:48:48 [ 41] [ 8] [05003600] +09:48:48 [ 49] [ 3] [418] +09:48:48 [ 52] [ 16] [04322734561A4E61] +09:48:48 [ 54] [ 20] [1002418C000117356600] +09:48:48 ============================================================================ +09:48:48 Sending to : +09:48:48 ============================================================================ +09:48:48 + + +waiting on router queue for slot.... +09:48:48 ============================================================================ +09:48:48 Slot Id : <253> +09:48:48 Transaction Type : REQUEST +09:48:48 Received From : +09:48:48 ============================================================================ +09:48:48 FNo. Len. Field Value +09:48:48 ============================================================================ +09:48:48 [ 1] [ 4] [0200] +09:48:48 [ 2] [ 16] [6688990100941507] +09:48:48 [ 3] [ 6] [010000] +09:48:48 [ 4] [ 12] [000100000000] +09:48:48 [ 7] [ 10] [0320094844] +09:48:48 [ 11] [ 6] [704138] +09:48:48 [ 12] [ 6] [094844] +09:48:48 [ 13] [ 4] [0320] +09:48:48 [ 15] [ 4] [0320] +09:48:48 [ 18] [ 4] [6011] +09:48:48 [ 22] [ 3] [900] +09:48:48 [ 25] [ 2] [02] +09:48:48 [ 28] [ 9] [D00002000] +09:48:48 [ 32] [ 6] [621354] +09:48:48 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:48:48 [ 37] [ 12] [507904719447] +09:48:48 [ 41] [ 8] [18001000] +09:48:48 [ 42] [ 15] [NATIVE ] +09:48:48 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:48:48 [ 49] [ 3] [418] +09:48:48 [ 52] [ 16] [3B496FEB663F5696] +09:48:48 ============================================================================ +09:48:48 + + +waiting on router queue for slot.... +09:48:48 Sending to : +09:48:48 ============================================================================ +09:48:48 ============================================================================ +09:48:48 Slot Id : <253> +09:48:48 Transaction Type : REQUEST +09:48:48 Received From : +09:48:48 ============================================================================ +09:48:48 FNo. Len. Field Value +09:48:48 ============================================================================ +09:48:48 [ 1] [ 4] [0200] +09:48:48 [ 2] [ 16] [6688990100941507] +09:48:48 [ 3] [ 6] [010000] +09:48:48 [ 4] [ 12] [000100000000] +09:48:48 [ 7] [ 10] [0320094844] +09:48:48 [ 11] [ 6] [704138] +09:48:48 [ 12] [ 6] [094844] +09:48:48 [ 13] [ 4] [0320] +09:48:48 [ 15] [ 4] [0320] +09:48:48 [ 18] [ 4] [6011] +09:48:48 [ 22] [ 3] [900] +09:48:48 [ 25] [ 2] [02] +09:48:48 [ 28] [ 9] [D00002000] +09:48:48 [ 32] [ 6] [621354] +09:48:48 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:48:48 [ 37] [ 12] [507904719447] +09:48:48 [ 41] [ 8] [18001000] +09:48:48 [ 42] [ 15] [NATIVE ] +09:48:48 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:48:48 [ 49] [ 3] [418] +09:48:48 [ 52] [ 16] [708A5172D2D707EC] +09:48:48 ============================================================================ +09:48:48 + + +waiting on router queue for slot.... +09:48:48 Sending to : <4> +09:48:48 ============================================================================ +09:48:49 ============================================================================ +09:48:49 Slot Id : <253> +09:48:49 Transaction Type : RESPONSE +09:48:49 Received From : +09:48:49 ============================================================================ +09:48:49 FNo. Len. Field Value +09:48:49 ============================================================================ +09:48:49 [ 1] [ 4] [0210] +09:48:49 [ 2] [ 16] [6688990100941507] +09:48:49 [ 3] [ 6] [010000] +09:48:49 [ 4] [ 12] [000100000000] +09:48:49 [ 11] [ 6] [704138] +09:48:49 [ 12] [ 6] [094844] +09:48:49 [ 15] [ 4] [0320] +09:48:49 [ 18] [ 4] [6011] +09:48:49 [ 32] [ 6] [621354] +09:48:49 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:48:49 [ 37] [ 12] [507904719447] +09:48:49 [ 38] [ 6] [705629] +09:48:49 [ 39] [ 2] [00] +09:48:49 [ 41] [ 8] [18001000] +09:48:49 [ 49] [ 3] [418] +09:48:49 [ 54] [ 20] [0002418C000171107741] +09:48:49 ============================================================================ +09:48:49 Sending to : +09:48:49 ============================================================================ +09:48:49 + + +waiting on router queue for slot.... +09:48:50 ============================================================================ +09:48:50 Slot Id : <234> +09:48:50 Transaction Type : RESPONSE +09:48:50 Received From : +09:48:50 ============================================================================ +09:48:50 FNo. Len. Field Value +09:48:50 ============================================================================ +09:48:50 [ 1] [ 4] [0210] +09:48:50 [ 2] [ 16] [1808930900038571] +09:48:50 [ 3] [ 6] [301000] +09:48:50 [ 7] [ 10] [0320094835] +09:48:50 [ 11] [ 6] [704097] +09:48:50 [ 12] [ 6] [094835] +09:48:50 [ 13] [ 4] [0320] +09:48:50 [ 14] [ 4] [1803] +09:48:50 [ 19] [ 3] [418] +09:48:50 [ 32] [ 6] [621354] +09:48:50 [ 37] [ 12] [507902539744] +09:48:50 [ 38] [ 6] [704097] +09:48:50 [ 39] [ 2] [00] +09:48:50 [ 41] [ 8] [05003600] +09:48:50 [ 49] [ 3] [418] +09:48:50 [ 52] [ 16] [04322734561A4E61] +09:48:50 [ 54] [ 20] [1002418C000117356600] +09:48:50 ============================================================================ +09:48:50 Calculate Source COMM Id = 0 +09:48:50 ============================================================================ +09:48:50 + + +waiting on router queue for slot.... +09:48:51 ============================================================================ +09:48:51 Slot Id : <253> +09:48:51 Transaction Type : RESPONSE +09:48:51 Received From : +09:48:51 ============================================================================ +09:48:51 FNo. Len. Field Value +09:48:51 ============================================================================ +09:48:51 [ 1] [ 4] [0210] +09:48:51 [ 2] [ 16] [6688990100941507] +09:48:51 [ 3] [ 6] [010000] +09:48:51 [ 4] [ 12] [000100000000] +09:48:51 [ 11] [ 6] [704138] +09:48:51 [ 12] [ 6] [094844] +09:48:51 [ 15] [ 4] [0320] +09:48:51 [ 18] [ 4] [6011] +09:48:51 [ 32] [ 6] [621354] +09:48:51 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:48:51 [ 37] [ 12] [507904719447] +09:48:51 [ 38] [ 6] [705629] +09:48:51 [ 39] [ 2] [00] +09:48:51 [ 41] [ 8] [18001000] +09:48:51 [ 49] [ 3] [418] +09:48:51 [ 54] [ 20] [0002418C000171107741] +09:48:51 ============================================================================ +09:48:51 Calculate Source COMM Id = 0 +09:48:51 ============================================================================ +09:48:51 + + +waiting on router queue for slot.... +09:48:53 ============================================================================ +09:48:53 Slot Id : <249> +09:48:53 Transaction Type : REQUEST +09:48:53 Received From : +09:48:53 ============================================================================ +09:48:53 FNo. Len. Field Value +09:48:53 ============================================================================ +09:48:53 [ 1] [ 4] [0800] +09:48:53 [ 7] [ 10] [0320024759] +09:48:53 [ 11] [ 6] [155707] +09:48:53 [ 70] [ 3] [301] +09:48:53 ============================================================================ +09:48:53 + + +waiting on router queue for slot.... +09:48:53 Sending to : +09:48:53 ============================================================================ +09:48:53 ============================================================================ +09:48:53 Slot Id : <249> +09:48:53 Transaction Type : RESPONSE +09:48:53 Received From : +09:48:53 ============================================================================ +09:48:53 FNo. Len. Field Value +09:48:53 ============================================================================ +09:48:53 [ 1] [ 4] [0810] +09:48:53 [ 7] [ 10] [0320024759] +09:48:53 [ 11] [ 6] [155707] +09:48:53 [ 39] [ 2] [00] +09:48:53 [ 70] [ 3] [301] +09:48:53 ============================================================================ +09:48:53 Calculate Source COMM Id = 2 +09:48:53 ============================================================================ +09:48:53 + + +waiting on router queue for slot.... +09:49:08 ============================================================================ +09:49:08 Slot Id : <260> +09:49:08 Transaction Type : REQUEST +09:49:08 Received From : +09:49:08 ============================================================================ +09:49:08 FNo. Len. Field Value +09:49:08 ============================================================================ +09:49:08 [ 1] [ 4] [0800] +09:49:08 [ 7] [ 10] [0320024816] +09:49:08 [ 11] [ 6] [155708] +09:49:08 [ 70] [ 3] [301] +09:49:08 ============================================================================ +09:49:08 + + +waiting on router queue for slot.... +09:49:08 Sending to : +09:49:08 ============================================================================ +09:49:08 ============================================================================ +09:49:08 Slot Id : <260> +09:49:08 Transaction Type : RESPONSE +09:49:08 Received From : +09:49:08 ============================================================================ +09:49:08 FNo. Len. Field Value +09:49:08 ============================================================================ +09:49:08 [ 1] [ 4] [0810] +09:49:08 [ 7] [ 10] [0320024816] +09:49:08 [ 11] [ 6] [155708] +09:49:08 [ 39] [ 2] [00] +09:49:08 [ 70] [ 3] [301] +09:49:08 ============================================================================ +09:49:08 Calculate Source COMM Id = 2 +09:49:08 ============================================================================ +09:49:08 + + +waiting on router queue for slot.... +09:49:24 ============================================================================ +09:49:24 Slot Id : <210> +09:49:24 Transaction Type : REQUEST +09:49:24 Received From : +09:49:24 ============================================================================ +09:49:24 FNo. Len. Field Value +09:49:24 ============================================================================ +09:49:24 [ 1] [ 4] [0800] +09:49:24 [ 7] [ 10] [0320024831] +09:49:24 [ 11] [ 6] [155709] +09:49:24 [ 70] [ 3] [301] +09:49:24 ============================================================================ +09:49:24 + + +waiting on router queue for slot.... +09:49:24 Sending to : +09:49:24 ============================================================================ +09:49:24 ============================================================================ +09:49:24 Slot Id : <210> +09:49:24 Transaction Type : RESPONSE +09:49:24 Received From : +09:49:24 ============================================================================ +09:49:24 FNo. Len. Field Value +09:49:24 ============================================================================ +09:49:24 [ 1] [ 4] [0810] +09:49:24 [ 7] [ 10] [0320024831] +09:49:24 [ 11] [ 6] [155709] +09:49:24 [ 39] [ 2] [00] +09:49:24 [ 70] [ 3] [301] +09:49:24 ============================================================================ +09:49:24 Calculate Source COMM Id = 2 +09:49:24 ============================================================================ +09:49:24 + + +waiting on router queue for slot.... +09:49:29 ============================================================================ +09:49:29 Slot Id : <261> +09:49:29 Transaction Type : REQUEST +09:49:29 Received From : +09:49:29 ============================================================================ +09:49:29 FNo. Len. Field Value +09:49:29 ============================================================================ +09:49:29 [ 1] [ 4] [0800] +09:49:29 [ 7] [ 10] [0320170117] +09:49:29 [ 11] [ 6] [100117] +09:49:29 [ 37] [ 12] [57910100117] +09:49:29 [ 70] [ 3] [301] +09:49:29 ============================================================================ +09:49:29 + + +waiting on router queue for slot.... +09:49:29 Sending to : +09:49:29 ============================================================================ +09:49:29 ============================================================================ +09:49:29 Slot Id : <261> +09:49:29 Transaction Type : RESPONSE +09:49:29 Received From : +09:49:29 ============================================================================ +09:49:29 FNo. Len. Field Value +09:49:29 ============================================================================ +09:49:29 [ 1] [ 4] [0810] +09:49:29 [ 7] [ 10] [0320170117] +09:49:29 [ 11] [ 6] [100117] +09:49:29 [ 37] [ 12] [579101001170] +09:49:29 [ 39] [ 2] [00] +09:49:29 [ 70] [ 3] [810] +09:49:29 ============================================================================ +09:49:29 Calculate Source COMM Id = 6 +09:49:29 ============================================================================ +09:49:29 + + +waiting on router queue for slot.... +09:49:32 ============================================================================ +09:49:32 Slot Id : <259> +09:49:32 Transaction Type : REQUEST +09:49:32 Received From : +09:49:32 ============================================================================ +09:49:32 FNo. Len. Field Value +09:49:32 ============================================================================ +09:49:32 [ 1] [ 4] [0200] +09:49:32 [ 2] [ 16] [6213541000116098] +09:49:32 [ 3] [ 6] [011000] +09:49:32 [ 4] [ 12] [000100000000] +09:49:32 [ 7] [ 10] [0320095719] +09:49:32 [ 11] [ 6] [021142] +09:49:32 [ 12] [ 6] [095719] +09:49:32 [ 13] [ 4] [0320] +09:49:32 [ 14] [ 4] [4912] +09:49:32 [ 15] [ 4] [0320] +09:49:32 [ 18] [ 4] [6011] +09:49:32 [ 22] [ 3] [900] +09:49:32 [ 25] [ 2] [02] +09:49:32 [ 28] [ 9] [D00002000] +09:49:32 [ 32] [ 6] [220699] +09:49:32 [ 35] [ 32] [6213541000116098=491212011609091] +09:49:32 [ 37] [ 12] [507900263099] +09:49:32 [ 41] [ 8] [01001400] +09:49:32 [ 42] [ 15] [APTRA ] +09:49:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:49:32 [ 49] [ 3] [418] +09:49:32 [ 52] [ 16] [DBC831EC83869A6C] +09:49:32 ============================================================================ +09:49:32 + + +waiting on router queue for slot.... +09:49:32 Sending to : +09:49:32 ============================================================================ +09:49:32 Sending to : +09:49:32 ============================================================================ +09:49:32 ============================================================================ +09:49:32 Slot Id : <259> +09:49:32 Transaction Type : REQUEST +09:49:32 Received From : +09:49:32 ============================================================================ +09:49:32 FNo. Len. Field Value +09:49:32 ============================================================================ +09:49:32 [ 1] [ 4] [0200] +09:49:32 [ 2] [ 16] [6213541000116098] +09:49:32 [ 3] [ 6] [011000] +09:49:32 [ 4] [ 12] [000100000000] +09:49:32 [ 7] [ 10] [0320095719] +09:49:32 [ 11] [ 6] [021142] +09:49:32 [ 12] [ 6] [095719] +09:49:32 [ 13] [ 4] [0320] +09:49:32 [ 14] [ 4] [4912] +09:49:32 [ 15] [ 4] [0320] +09:49:32 [ 18] [ 4] [6011] +09:49:32 [ 22] [ 3] [900] +09:49:32 [ 25] [ 2] [02] +09:49:32 [ 28] [ 9] [D00002000] +09:49:32 [ 32] [ 6] [220699] +09:49:32 [ 35] [ 32] [6213541000116098=491212011609091] +09:49:32 [ 37] [ 12] [507900263099] +09:49:32 [ 41] [ 8] [01001400] +09:49:32 [ 42] [ 15] [APTRA ] +09:49:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:49:32 [ 49] [ 3] [418] +09:49:32 [ 52] [ 16] [DBC831EC83869A6C] +09:49:32 ============================================================================ +09:49:32 + + +waiting on router queue for slot.... +09:49:32 Sending to : +09:49:32 ============================================================================ +09:49:32 ============================================================================ +09:49:32 Slot Id : <259> +09:49:32 Transaction Type : REQUEST +09:49:32 Received From : +09:49:32 ============================================================================ +09:49:32 FNo. Len. Field Value +09:49:32 ============================================================================ +09:49:32 [ 1] [ 4] [0200] +09:49:32 [ 2] [ 16] [6213541000116098] +09:49:32 [ 3] [ 6] [011000] +09:49:32 [ 4] [ 12] [000100000000] +09:49:32 [ 7] [ 10] [0320095719] +09:49:32 [ 11] [ 6] [021142] +09:49:32 [ 12] [ 6] [095719] +09:49:32 [ 13] [ 4] [0320] +09:49:32 [ 14] [ 4] [4912] +09:49:32 [ 15] [ 4] [0320] +09:49:32 [ 18] [ 4] [6011] +09:49:32 [ 22] [ 3] [900] +09:49:32 [ 25] [ 2] [02] +09:49:32 [ 28] [ 9] [D00002000] +09:49:32 [ 32] [ 6] [220699] +09:49:32 [ 35] [ 32] [6213541000116098=491212011609091] +09:49:32 [ 37] [ 12] [507900263099] +09:49:32 [ 41] [ 8] [01001400] +09:49:32 [ 42] [ 15] [APTRA ] +09:49:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:49:32 [ 49] [ 3] [418] +09:49:32 [ 52] [ 16] [9AEFC9D884A37E34] +09:49:32 ============================================================================ +09:49:32 + + +waiting on router queue for slot.... +09:49:32 Sending to : <0> +09:49:32 ============================================================================ +09:49:34 ============================================================================ +09:49:34 Slot Id : <259> +09:49:34 Transaction Type : RESPONSE +09:49:34 Received From : +09:49:34 ============================================================================ +09:49:34 FNo. Len. Field Value +09:49:34 ============================================================================ +09:49:34 [ 1] [ 4] [0210] +09:49:34 [ 2] [ 16] [6213541000116098] +09:49:34 [ 3] [ 6] [011000] +09:49:34 [ 4] [ 12] [000100000000] +09:49:34 [ 7] [ 10] [0320095719] +09:49:34 [ 11] [ 6] [021142] +09:49:34 [ 12] [ 6] [095719] +09:49:34 [ 13] [ 4] [0320] +09:49:34 [ 15] [ 4] [0320] +09:49:34 [ 18] [ 4] [6011] +09:49:34 [ 32] [ 6] [220699] +09:49:34 [ 35] [ 32] [6213541000116098=491212011609091] +09:49:34 [ 37] [ 12] [507900263099] +09:49:34 [ 38] [ 6] [961336] +09:49:34 [ 39] [ 2] [00] +09:49:34 [ 41] [ 8] [01001400] +09:49:34 [ 49] [ 3] [418] +09:49:34 [ 54] [ 40] [1001418C0078253219551002418C007825321955] +09:49:34 ============================================================================ +09:49:34 Sending to : +09:49:34 ============================================================================ +09:49:34 + + +waiting on router queue for slot.... +09:49:35 ============================================================================ +09:49:35 Slot Id : <225> +09:49:35 Transaction Type : REQUEST +09:49:35 Received From : +09:49:35 ============================================================================ +09:49:35 FNo. Len. Field Value +09:49:35 ============================================================================ +09:49:35 [ 1] [ 4] [0800] +09:49:35 [ 7] [ 10] [0320024843] +09:49:35 [ 11] [ 6] [155710] +09:49:35 [ 70] [ 3] [301] +09:49:35 ============================================================================ +09:49:35 + + +waiting on router queue for slot.... +09:49:35 Sending to : +09:49:35 ============================================================================ +09:49:35 ============================================================================ +09:49:35 Slot Id : <225> +09:49:35 Transaction Type : RESPONSE +09:49:35 Received From : +09:49:35 ============================================================================ +09:49:35 FNo. Len. Field Value +09:49:35 ============================================================================ +09:49:35 [ 1] [ 4] [0810] +09:49:35 [ 7] [ 10] [0320024843] +09:49:35 [ 11] [ 6] [155710] +09:49:35 [ 39] [ 2] [00] +09:49:35 [ 70] [ 3] [301] +09:49:35 ============================================================================ +09:49:35 Calculate Source COMM Id = 2 +09:49:35 ============================================================================ +09:49:35 + + +waiting on router queue for slot.... +09:49:35 ============================================================================ +09:49:35 Slot Id : <259> +09:49:35 Transaction Type : RESPONSE +09:49:35 Received From : +09:49:35 ============================================================================ +09:49:35 FNo. Len. Field Value +09:49:35 ============================================================================ +09:49:35 [ 1] [ 4] [0210] +09:49:35 [ 2] [ 16] [6213541000116098] +09:49:35 [ 3] [ 6] [011000] +09:49:35 [ 4] [ 12] [000100000000] +09:49:35 [ 7] [ 10] [0320095719] +09:49:35 [ 11] [ 6] [021142] +09:49:35 [ 12] [ 6] [095719] +09:49:35 [ 13] [ 4] [0320] +09:49:35 [ 15] [ 4] [0320] +09:49:35 [ 18] [ 4] [6011] +09:49:35 [ 32] [ 6] [220699] +09:49:35 [ 35] [ 32] [6213541000116098=491212011609091] +09:49:35 [ 37] [ 12] [507900263099] +09:49:35 [ 38] [ 6] [961336] +09:49:35 [ 39] [ 2] [00] +09:49:35 [ 41] [ 8] [01001400] +09:49:35 [ 49] [ 3] [418] +09:49:35 [ 54] [ 40] [1001418C0078253219551002418C007825321955] +09:49:35 ============================================================================ +09:49:35 Calculate Source COMM Id = 1 +09:49:35 ============================================================================ +09:49:35 + + +waiting on router queue for slot.... +09:49:37 ============================================================================ +09:49:37 Slot Id : <263> +09:49:37 Transaction Type : REQUEST +09:49:37 Received From : +09:49:37 ============================================================================ +09:49:37 FNo. Len. Field Value +09:49:37 ============================================================================ +09:49:37 [ 1] [ 4] [0800] +09:49:37 [ 2] [ 5] [02531] +09:49:37 [ 3] [ 6] [579098] +09:49:37 [ 7] [ 10] [0320024937] +09:49:37 [ 11] [ 6] [806982] +09:49:37 [ 15] [ 10] [0320024937] +09:49:37 [ 37] [ 11] [57909806982] +09:49:37 [ 70] [ 3] [001] +09:49:37 ============================================================================ +09:49:37 + + +waiting on router queue for slot.... +09:49:37 ============================================================================ +09:49:37 Slot Id : <263> +09:49:37 Transaction Type : RESPONSE +09:49:37 Received From : +09:49:37 ============================================================================ +09:49:37 FNo. Len. Field Value +09:49:37 ============================================================================ +09:49:37 [ 1] [ 4] [0810] +09:49:37 [ 7] [ 10] [0320024937] +09:49:37 [ 11] [ 6] [806982] +09:49:37 [ 15] [ 4] [0320] +09:49:37 [ 37] [ 12] [57909806982] +09:49:37 [ 39] [ 2] [00] +09:49:37 [ 70] [ 3] [001] +09:49:37 ============================================================================ +09:49:37 Sending to : +09:49:37 ============================================================================ +09:49:37 + + +waiting on router queue for slot.... +09:49:38 ============================================================================ +09:49:38 Slot Id : <199> +09:49:38 Transaction Type : REQUEST +09:49:38 Received From : +09:49:38 ============================================================================ +09:49:38 FNo. Len. Field Value +09:49:38 ============================================================================ +09:49:38 [ 1] [ 4] [0200] +09:49:38 [ 2] [ 16] [1808930900038571] +09:49:38 [ 3] [ 6] [010000] +09:49:38 [ 4] [ 12] [000010000000] +09:49:38 [ 7] [ 10] [0320094934] +09:49:38 [ 11] [ 6] [704392] +09:49:38 [ 12] [ 6] [094934] +09:49:38 [ 13] [ 4] [0320] +09:49:38 [ 15] [ 4] [0320] +09:49:38 [ 18] [ 4] [6011] +09:49:38 [ 22] [ 3] [900] +09:49:38 [ 25] [ 2] [02] +09:49:38 [ 28] [ 9] [D00002000] +09:49:38 [ 32] [ 6] [621354] +09:49:38 [ 35] [ 27] [1808930900038571=1803500116] +09:49:38 [ 37] [ 12] [507902539746] +09:49:38 [ 41] [ 8] [05003600] +09:49:38 [ 42] [ 15] [NATIVE ] +09:49:38 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +09:49:38 [ 49] [ 3] [418] +09:49:38 [ 52] [ 16] [55F70480E760B46F] +09:49:38 ============================================================================ +09:49:38 + + +waiting on router queue for slot.... +09:49:38 Sending to : +09:49:38 ============================================================================ +09:49:38 Sending to : +09:49:38 ============================================================================ +09:49:39 ============================================================================ +09:49:39 Slot Id : <199> +09:49:39 Transaction Type : REQUEST +09:49:39 Received From : +09:49:39 ============================================================================ +09:49:39 FNo. Len. Field Value +09:49:39 ============================================================================ +09:49:39 [ 1] [ 4] [0200] +09:49:39 [ 2] [ 16] [1808930900038571] +09:49:39 [ 3] [ 6] [010000] +09:49:39 [ 4] [ 12] [000010000000] +09:49:39 [ 7] [ 10] [0320094934] +09:49:39 [ 11] [ 6] [704392] +09:49:39 [ 12] [ 6] [094934] +09:49:39 [ 13] [ 4] [0320] +09:49:39 [ 15] [ 4] [0320] +09:49:39 [ 18] [ 4] [6011] +09:49:39 [ 22] [ 3] [900] +09:49:39 [ 25] [ 2] [02] +09:49:39 [ 28] [ 9] [D00002000] +09:49:39 [ 32] [ 6] [621354] +09:49:39 [ 35] [ 27] [1808930900038571=1803500116] +09:49:39 [ 37] [ 12] [507902539746] +09:49:39 [ 41] [ 8] [05003600] +09:49:39 [ 42] [ 15] [NATIVE ] +09:49:39 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +09:49:39 [ 49] [ 3] [418] +09:49:39 [ 52] [ 16] [55F70480E760B46F] +09:49:39 ============================================================================ +09:49:39 + + +waiting on router queue for slot.... +09:49:39 Sending to : +09:49:39 ============================================================================ +09:49:39 ============================================================================ +09:49:39 Slot Id : <199> +09:49:39 Transaction Type : REQUEST +09:49:39 Received From : +09:49:39 ============================================================================ +09:49:39 FNo. Len. Field Value +09:49:39 ============================================================================ +09:49:39 [ 1] [ 4] [0200] +09:49:39 [ 2] [ 16] [1808930900038571] +09:49:39 [ 3] [ 6] [010000] +09:49:39 [ 4] [ 12] [000010000000] +09:49:39 [ 7] [ 10] [0320094934] +09:49:39 [ 11] [ 6] [704392] +09:49:39 [ 12] [ 6] [094934] +09:49:39 [ 13] [ 4] [0320] +09:49:39 [ 15] [ 4] [0320] +09:49:39 [ 18] [ 4] [6011] +09:49:39 [ 22] [ 3] [900] +09:49:39 [ 25] [ 2] [02] +09:49:39 [ 28] [ 9] [D00002000] +09:49:39 [ 32] [ 6] [621354] +09:49:39 [ 35] [ 27] [1808930900038571=1803500116] +09:49:39 [ 37] [ 12] [507902539746] +09:49:39 [ 41] [ 8] [05003600] +09:49:39 [ 42] [ 15] [NATIVE ] +09:49:39 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +09:49:39 [ 49] [ 3] [418] +09:49:39 [ 52] [ 16] [04322734561A4E61] +09:49:39 ============================================================================ +09:49:39 + + +waiting on router queue for slot.... +09:49:39 Sending to : <2> +09:49:39 ============================================================================ +09:49:45 ============================================================================ +09:49:45 Slot Id : <199> +09:49:45 Transaction Type : RESPONSE +09:49:45 Received From : +09:49:45 ============================================================================ +09:49:45 FNo. Len. Field Value +09:49:45 ============================================================================ +09:49:45 [ 1] [ 4] [0210] +09:49:45 [ 2] [ 16] [1808930900038571] +09:49:45 [ 3] [ 6] [010000] +09:49:45 [ 4] [ 12] [000010000000] +09:49:45 [ 6] [ 12] [000010000000] +09:49:45 [ 7] [ 10] [0320094934] +09:49:45 [ 11] [ 6] [704392] +09:49:45 [ 12] [ 6] [094934] +09:49:45 [ 13] [ 4] [0320] +09:49:45 [ 18] [ 4] [6011] +09:49:45 [ 19] [ 3] [418] +09:49:45 [ 22] [ 3] [021] +09:49:45 [ 32] [ 6] [621354] +09:49:45 [ 35] [ 27] [1808930900038571=1803500116] +09:49:45 [ 37] [ 12] [507902539746] +09:49:45 [ 38] [ 6] [704392] +09:49:45 [ 39] [ 2] [00] +09:49:45 [ 41] [ 8] [05003600] +09:49:45 [ 49] [ 3] [418] +09:49:45 [ 52] [ 16] [04322734561A4E61] +09:49:45 [ 54] [ 20] [1001418C000107156600] +09:49:45 ============================================================================ +09:49:45 Sending to : +09:49:45 ============================================================================ +09:49:45 + + +waiting on router queue for slot.... +09:49:47 ============================================================================ +09:49:47 Slot Id : <199> +09:49:47 Transaction Type : RESPONSE +09:49:47 Received From : +09:49:47 ============================================================================ +09:49:47 FNo. Len. Field Value +09:49:47 ============================================================================ +09:49:47 [ 1] [ 4] [0210] +09:49:47 [ 2] [ 16] [1808930900038571] +09:49:47 [ 3] [ 6] [010000] +09:49:47 [ 4] [ 12] [000010000000] +09:49:47 [ 6] [ 12] [000010000000] +09:49:47 [ 7] [ 10] [0320094934] +09:49:47 [ 11] [ 6] [704392] +09:49:47 [ 12] [ 6] [094934] +09:49:47 [ 13] [ 4] [0320] +09:49:47 [ 18] [ 4] [6011] +09:49:47 [ 19] [ 3] [418] +09:49:47 [ 22] [ 3] [021] +09:49:47 [ 32] [ 6] [621354] +09:49:47 [ 35] [ 27] [1808930900038571=1803500116] +09:49:47 [ 37] [ 12] [507902539746] +09:49:47 [ 38] [ 6] [704392] +09:49:47 [ 39] [ 2] [00] +09:49:47 [ 41] [ 8] [05003600] +09:49:47 [ 49] [ 3] [418] +09:49:47 [ 52] [ 16] [04322734561A4E61] +09:49:47 [ 54] [ 20] [1001418C000107156600] +09:49:47 ============================================================================ +09:49:47 Calculate Source COMM Id = 0 +09:49:47 ============================================================================ +09:49:47 + + +waiting on router queue for slot.... +09:49:52 ============================================================================ +09:49:52 Slot Id : <270> +09:49:52 Transaction Type : REQUEST +09:49:52 Received From : +09:49:52 ============================================================================ +09:49:52 FNo. Len. Field Value +09:49:52 ============================================================================ +09:49:52 [ 1] [ 4] [0800] +09:49:52 [ 7] [ 10] [0320024900] +09:49:52 [ 11] [ 6] [155711] +09:49:52 [ 70] [ 3] [301] +09:49:52 ============================================================================ +09:49:52 + + +waiting on router queue for slot.... +09:49:52 Sending to : +09:49:52 ============================================================================ +09:49:52 ============================================================================ +09:49:52 Slot Id : <270> +09:49:52 Transaction Type : RESPONSE +09:49:52 Received From : +09:49:52 ============================================================================ +09:49:52 FNo. Len. Field Value +09:49:52 ============================================================================ +09:49:52 [ 1] [ 4] [0810] +09:49:52 [ 7] [ 10] [0320024900] +09:49:52 [ 11] [ 6] [155711] +09:49:52 [ 39] [ 2] [00] +09:49:52 [ 70] [ 3] [301] +09:49:52 ============================================================================ +09:49:52 Calculate Source COMM Id = 2 +09:49:52 ============================================================================ +09:49:52 + + +waiting on router queue for slot.... +09:49:54 ============================================================================ +09:49:54 Slot Id : <269> +09:49:54 Transaction Type : REQUEST +09:49:54 Received From : +09:49:54 ============================================================================ +09:49:54 FNo. Len. Field Value +09:49:54 ============================================================================ +09:49:54 [ 1] [ 4] [0800] +09:49:54 [ 7] [ 10] [0320025742] +09:49:54 [ 11] [ 6] [079032] +09:49:54 [ 37] [ 12] [57909079032] +09:49:54 [ 70] [ 3] [301] +09:49:54 ============================================================================ +09:49:54 + + +waiting on router queue for slot.... +09:49:54 Sending to : +09:49:54 ============================================================================ +09:49:54 ============================================================================ +09:49:54 Slot Id : <269> +09:49:54 Transaction Type : RESPONSE +09:49:54 Received From : +09:49:54 ============================================================================ +09:49:54 FNo. Len. Field Value +09:49:54 ============================================================================ +09:49:54 [ 1] [ 4] [0810] +09:49:54 [ 7] [ 10] [0320025742] +09:49:54 [ 11] [ 6] [079032] +09:49:54 [ 37] [ 12] [579090790320] +09:49:54 [ 39] [ 2] [00] +09:49:54 [ 70] [ 3] [810] +09:49:54 ============================================================================ +09:49:54 Calculate Source COMM Id = 1 +09:49:54 ============================================================================ +09:49:54 + + +waiting on router queue for slot.... +09:49:59 ============================================================================ +09:49:59 Slot Id : <240> +09:49:59 Transaction Type : REQUEST +09:49:59 Received From : +09:49:59 ============================================================================ +09:49:59 FNo. Len. Field Value +09:49:59 ============================================================================ +09:49:59 [ 1] [ 4] [0200] +09:49:59 [ 2] [ 16] [6213545000690507] +09:49:59 [ 3] [ 6] [302000] +09:49:59 [ 4] [ 12] [000000000000] +09:49:59 [ 7] [ 10] [0320094751] +09:49:59 [ 11] [ 6] [936691] +09:49:59 [ 12] [ 6] [094751] +09:49:59 [ 13] [ 4] [0320] +09:49:59 [ 15] [ 4] [0320] +09:49:59 [ 18] [ 4] [6011] +09:49:59 [ 19] [ 3] [418] +09:49:59 [ 22] [ 3] [021] +09:49:59 [ 25] [ 2] [01] +09:49:59 [ 28] [ 9] [D00000000] +09:49:59 [ 32] [ 6] [668899] +09:49:59 [ 35] [ 32] [6213545000690507=491212019050094] +09:49:59 [ 37] [ 12] [507900270904] +09:49:59 [ 41] [ 8] [03010004] +09:49:59 [ 42] [ 15] [APT ] +09:49:59 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +09:49:59 [ 49] [ 3] [418] +09:49:59 [ 52] [ 16] [1733FCCDA1C3E840] +09:49:59 ============================================================================ +09:49:59 + + +waiting on router queue for slot.... +09:49:59 Sending to : +09:49:59 ============================================================================ +09:49:59 Sending to : +09:49:59 ============================================================================ +09:50:00 ============================================================================ +09:50:00 Slot Id : <240> +09:50:00 Transaction Type : REQUEST +09:50:00 Received From : +09:50:00 ============================================================================ +09:50:00 FNo. Len. Field Value +09:50:00 ============================================================================ +09:50:00 [ 1] [ 4] [0200] +09:50:00 [ 2] [ 16] [6213545000690507] +09:50:00 [ 3] [ 6] [302000] +09:50:00 [ 4] [ 12] [000000000000] +09:50:00 [ 7] [ 10] [0320094751] +09:50:00 [ 11] [ 6] [936691] +09:50:00 [ 12] [ 6] [094751] +09:50:00 [ 13] [ 4] [0320] +09:50:00 [ 15] [ 4] [0320] +09:50:00 [ 18] [ 4] [6011] +09:50:00 [ 19] [ 3] [418] +09:50:00 [ 22] [ 3] [021] +09:50:00 [ 25] [ 2] [01] +09:50:00 [ 28] [ 9] [D00000000] +09:50:00 [ 32] [ 6] [668899] +09:50:00 [ 35] [ 32] [6213545000690507=491212019050094] +09:50:00 [ 37] [ 12] [507900270904] +09:50:00 [ 41] [ 8] [03010004] +09:50:00 [ 42] [ 15] [APT ] +09:50:00 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +09:50:00 [ 49] [ 3] [418] +09:50:00 [ 52] [ 16] [1733FCCDA1C3E840] +09:50:00 ============================================================================ +09:50:00 + + +waiting on router queue for slot.... +09:50:00 Sending to : +09:50:00 ============================================================================ +09:50:00 ============================================================================ +09:50:00 Slot Id : <240> +09:50:00 Transaction Type : REQUEST +09:50:00 Received From : +09:50:00 ============================================================================ +09:50:00 FNo. Len. Field Value +09:50:00 ============================================================================ +09:50:00 [ 1] [ 4] [0200] +09:50:00 [ 2] [ 16] [6213545000690507] +09:50:00 [ 3] [ 6] [302000] +09:50:00 [ 4] [ 12] [000000000000] +09:50:00 [ 7] [ 10] [0320094751] +09:50:00 [ 11] [ 6] [936691] +09:50:00 [ 12] [ 6] [094751] +09:50:00 [ 13] [ 4] [0320] +09:50:00 [ 15] [ 4] [0320] +09:50:00 [ 18] [ 4] [6011] +09:50:00 [ 19] [ 3] [418] +09:50:00 [ 22] [ 3] [021] +09:50:00 [ 25] [ 2] [01] +09:50:00 [ 28] [ 9] [D00000000] +09:50:00 [ 32] [ 6] [668899] +09:50:00 [ 35] [ 32] [6213545000690507=491212019050094] +09:50:00 [ 37] [ 12] [507900270904] +09:50:00 [ 41] [ 8] [03010004] +09:50:00 [ 42] [ 15] [APT ] +09:50:00 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +09:50:00 [ 49] [ 3] [418] +09:50:00 [ 52] [ 16] [75F22DFA6507336E] +09:50:00 ============================================================================ +09:50:00 + + +waiting on router queue for slot.... +09:50:00 Sending to : <0> +09:50:00 ============================================================================ +09:50:00 ============================================================================ +09:50:00 Slot Id : <240> +09:50:00 Transaction Type : RESPONSE +09:50:00 Received From : +09:50:00 ============================================================================ +09:50:00 FNo. Len. Field Value +09:50:00 ============================================================================ +09:50:00 [ 1] [ 4] [0210] +09:50:00 [ 2] [ 16] [6213545000690507] +09:50:00 [ 3] [ 6] [302000] +09:50:00 [ 4] [ 12] [000000000000] +09:50:00 [ 7] [ 10] [0320094751] +09:50:00 [ 11] [ 6] [936691] +09:50:00 [ 12] [ 6] [094751] +09:50:00 [ 13] [ 4] [0320] +09:50:00 [ 15] [ 4] [0320] +09:50:00 [ 18] [ 4] [6011] +09:50:00 [ 19] [ 3] [418] +09:50:00 [ 32] [ 6] [668899] +09:50:00 [ 35] [ 32] [6213545000690507=491212019050094] +09:50:00 [ 37] [ 12] [507900270904] +09:50:00 [ 38] [ 6] [277056] +09:50:00 [ 39] [ 2] [00] +09:50:00 [ 41] [ 8] [03010004] +09:50:00 [ 49] [ 3] [418] +09:50:00 [ 54] [ 40] [2001418C0003653394082002418C000365339408] +09:50:00 ============================================================================ +09:50:00 Sending to : +09:50:00 ============================================================================ +09:50:00 + + +waiting on router queue for slot.... +09:50:02 ============================================================================ +09:50:02 Slot Id : <240> +09:50:02 Transaction Type : RESPONSE +09:50:02 Received From : +09:50:02 ============================================================================ +09:50:02 FNo. Len. Field Value +09:50:02 ============================================================================ +09:50:02 [ 1] [ 4] [0210] +09:50:02 [ 2] [ 16] [6213545000690507] +09:50:02 [ 3] [ 6] [302000] +09:50:02 [ 4] [ 12] [000000000000] +09:50:02 [ 7] [ 10] [0320094751] +09:50:02 [ 11] [ 6] [936691] +09:50:02 [ 12] [ 6] [094751] +09:50:02 [ 13] [ 4] [0320] +09:50:02 [ 15] [ 4] [0320] +09:50:02 [ 18] [ 4] [6011] +09:50:02 [ 19] [ 3] [418] +09:50:02 [ 32] [ 6] [668899] +09:50:02 [ 35] [ 32] [6213545000690507=491212019050094] +09:50:02 [ 37] [ 12] [507900270904] +09:50:02 [ 38] [ 6] [277056] +09:50:02 [ 39] [ 2] [00] +09:50:02 [ 41] [ 8] [03010004] +09:50:02 [ 49] [ 3] [418] +09:50:02 [ 54] [ 40] [2001418C0003653394082002418C000365339408] +09:50:02 ============================================================================ +09:50:02 Calculate Source COMM Id = 4 +09:50:02 ============================================================================ +09:50:02 + + +waiting on router queue for slot.... +09:50:08 ============================================================================ +09:50:08 Slot Id : <228> +09:50:08 Transaction Type : REQUEST +09:50:08 Received From : +09:50:08 ============================================================================ +09:50:08 FNo. Len. Field Value +09:50:08 ============================================================================ +09:50:08 [ 1] [ 4] [0800] +09:50:08 [ 7] [ 10] [0320024916] +09:50:08 [ 11] [ 6] [155712] +09:50:08 [ 70] [ 3] [301] +09:50:08 ============================================================================ +09:50:08 + + +waiting on router queue for slot.... +09:50:08 Sending to : +09:50:08 ============================================================================ +09:50:08 ============================================================================ +09:50:08 Slot Id : <228> +09:50:08 Transaction Type : RESPONSE +09:50:08 Received From : +09:50:08 ============================================================================ +09:50:08 FNo. Len. Field Value +09:50:08 ============================================================================ +09:50:08 [ 1] [ 4] [0810] +09:50:08 [ 7] [ 10] [0320024916] +09:50:08 [ 11] [ 6] [155712] +09:50:08 [ 39] [ 2] [00] +09:50:08 [ 70] [ 3] [301] +09:50:08 ============================================================================ +09:50:08 Calculate Source COMM Id = 2 +09:50:08 ============================================================================ +09:50:08 + + +waiting on router queue for slot.... +09:50:21 ============================================================================ +09:50:21 Slot Id : <197> +09:50:21 Transaction Type : REQUEST +09:50:21 Received From : +09:50:21 ============================================================================ +09:50:21 FNo. Len. Field Value +09:50:21 ============================================================================ +09:50:21 [ 1] [ 4] [0800] +09:50:21 [ 7] [ 10] [0320024929] +09:50:21 [ 11] [ 6] [155713] +09:50:21 [ 70] [ 3] [301] +09:50:21 ============================================================================ +09:50:21 + + +waiting on router queue for slot.... +09:50:21 Sending to : +09:50:21 ============================================================================ +09:50:21 ============================================================================ +09:50:21 Slot Id : <197> +09:50:21 Transaction Type : RESPONSE +09:50:21 Received From : +09:50:21 ============================================================================ +09:50:21 FNo. Len. Field Value +09:50:21 ============================================================================ +09:50:21 [ 1] [ 4] [0810] +09:50:21 [ 7] [ 10] [0320024929] +09:50:21 [ 11] [ 6] [155713] +09:50:21 [ 39] [ 2] [00] +09:50:21 [ 70] [ 3] [301] +09:50:21 ============================================================================ +09:50:21 Calculate Source COMM Id = 2 +09:50:21 ============================================================================ +09:50:21 + + +waiting on router queue for slot.... +09:50:27 ============================================================================ +09:50:27 Slot Id : <265> +09:50:27 Transaction Type : REQUEST +09:50:27 Received From : +09:50:27 ============================================================================ +09:50:27 FNo. Len. Field Value +09:50:27 ============================================================================ +09:50:27 [ 1] [ 4] [0200] +09:50:27 [ 2] [ 16] [6213544001406112] +09:50:27 [ 3] [ 6] [010000] +09:50:27 [ 4] [ 12] [000040000000] +09:50:27 [ 7] [ 10] [0320094818] +09:50:27 [ 11] [ 6] [936716] +09:50:27 [ 12] [ 6] [094818] +09:50:27 [ 13] [ 4] [0320] +09:50:27 [ 15] [ 4] [0320] +09:50:27 [ 18] [ 4] [6011] +09:50:27 [ 19] [ 3] [418] +09:50:27 [ 22] [ 3] [021] +09:50:27 [ 25] [ 2] [01] +09:50:27 [ 28] [ 9] [D00002000] +09:50:27 [ 32] [ 6] [668899] +09:50:27 [ 35] [ 32] [6213544001406112=491212010611169] +09:50:27 [ 37] [ 12] [507901856220] +09:50:27 [ 41] [ 8] [03311001] +09:50:27 [ 42] [ 15] [APT ] +09:50:27 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +09:50:27 [ 49] [ 3] [418] +09:50:27 [ 52] [ 16] [993022A39C5E30C9] +09:50:27 ============================================================================ +09:50:27 + + +waiting on router queue for slot.... +09:50:27 Sending to : +09:50:27 ============================================================================ +09:50:27 Sending to : +09:50:27 ============================================================================ +09:50:27 ============================================================================ +09:50:27 Slot Id : <265> +09:50:27 Transaction Type : REQUEST +09:50:27 Received From : +09:50:27 ============================================================================ +09:50:27 FNo. Len. Field Value +09:50:27 ============================================================================ +09:50:27 [ 1] [ 4] [0200] +09:50:27 [ 2] [ 16] [6213544001406112] +09:50:27 [ 3] [ 6] [010000] +09:50:27 [ 4] [ 12] [000040000000] +09:50:27 [ 7] [ 10] [0320094818] +09:50:27 [ 11] [ 6] [936716] +09:50:27 [ 12] [ 6] [094818] +09:50:27 [ 13] [ 4] [0320] +09:50:27 [ 15] [ 4] [0320] +09:50:27 [ 18] [ 4] [6011] +09:50:27 [ 19] [ 3] [418] +09:50:27 [ 22] [ 3] [021] +09:50:27 [ 25] [ 2] [01] +09:50:27 [ 28] [ 9] [D00002000] +09:50:27 [ 32] [ 6] [668899] +09:50:27 [ 35] [ 32] [6213544001406112=491212010611169] +09:50:27 [ 37] [ 12] [507901856220] +09:50:27 [ 41] [ 8] [03311001] +09:50:27 [ 42] [ 15] [APT ] +09:50:27 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +09:50:27 [ 49] [ 3] [418] +09:50:27 [ 52] [ 16] [993022A39C5E30C9] +09:50:27 ============================================================================ +09:50:27 + + +waiting on router queue for slot.... +09:50:27 Sending to : +09:50:27 ============================================================================ +09:50:27 ============================================================================ +09:50:27 Slot Id : <265> +09:50:27 Transaction Type : REQUEST +09:50:27 Received From : +09:50:27 ============================================================================ +09:50:27 FNo. Len. Field Value +09:50:27 ============================================================================ +09:50:27 [ 1] [ 4] [0200] +09:50:27 [ 2] [ 16] [6213544001406112] +09:50:27 [ 3] [ 6] [010000] +09:50:27 [ 4] [ 12] [000040000000] +09:50:27 [ 7] [ 10] [0320094818] +09:50:27 [ 11] [ 6] [936716] +09:50:27 [ 12] [ 6] [094818] +09:50:27 [ 13] [ 4] [0320] +09:50:27 [ 15] [ 4] [0320] +09:50:27 [ 18] [ 4] [6011] +09:50:27 [ 19] [ 3] [418] +09:50:27 [ 22] [ 3] [021] +09:50:27 [ 25] [ 2] [01] +09:50:27 [ 28] [ 9] [D00002000] +09:50:27 [ 32] [ 6] [668899] +09:50:27 [ 35] [ 32] [6213544001406112=491212010611169] +09:50:27 [ 37] [ 12] [507901856220] +09:50:27 [ 41] [ 8] [03311001] +09:50:27 [ 42] [ 15] [APT ] +09:50:27 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +09:50:27 [ 49] [ 3] [418] +09:50:27 [ 52] [ 16] [B3E8D9C1FB0A2F71] +09:50:27 ============================================================================ +09:50:27 + + +waiting on router queue for slot.... +09:50:27 Sending to : <0> +09:50:27 ============================================================================ +09:50:28 ============================================================================ +09:50:28 Slot Id : <256> +09:50:28 Transaction Type : REQUEST +09:50:28 Received From : +09:50:28 ============================================================================ +09:50:28 FNo. Len. Field Value +09:50:28 ============================================================================ +09:50:28 [ 1] [ 4] [0200] +09:50:28 [ 2] [ 16] [6213541000116098] +09:50:28 [ 3] [ 6] [011000] +09:50:28 [ 4] [ 12] [000100000000] +09:50:28 [ 7] [ 10] [0320095815] +09:50:28 [ 11] [ 6] [021145] +09:50:28 [ 12] [ 6] [095815] +09:50:28 [ 13] [ 4] [0320] +09:50:28 [ 14] [ 4] [4912] +09:50:28 [ 15] [ 4] [0320] +09:50:28 [ 18] [ 4] [6011] +09:50:28 [ 22] [ 3] [900] +09:50:28 [ 25] [ 2] [02] +09:50:28 [ 28] [ 9] [D00002000] +09:50:28 [ 32] [ 6] [220699] +09:50:28 [ 35] [ 32] [6213541000116098=491212011609091] +09:50:28 [ 37] [ 12] [507900263101] +09:50:28 [ 41] [ 8] [01001400] +09:50:28 [ 42] [ 15] [APTRA ] +09:50:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:50:28 [ 49] [ 3] [418] +09:50:28 [ 52] [ 16] [DBC831EC83869A6C] +09:50:28 ============================================================================ +09:50:28 + + +waiting on router queue for slot.... +09:50:28 Sending to : +09:50:28 ============================================================================ +09:50:28 Sending to : +09:50:28 ============================================================================ +09:50:28 ============================================================================ +09:50:28 Slot Id : <265> +09:50:28 Transaction Type : RESPONSE +09:50:28 Received From : +09:50:28 ============================================================================ +09:50:28 FNo. Len. Field Value +09:50:28 ============================================================================ +09:50:28 [ 1] [ 4] [0210] +09:50:28 [ 2] [ 16] [6213544001406112] +09:50:28 [ 3] [ 6] [010000] +09:50:28 [ 4] [ 12] [000040000000] +09:50:28 [ 7] [ 10] [0320094818] +09:50:28 [ 11] [ 6] [936716] +09:50:28 [ 12] [ 6] [094818] +09:50:28 [ 13] [ 4] [0320] +09:50:28 [ 15] [ 4] [0320] +09:50:28 [ 18] [ 4] [6011] +09:50:28 [ 19] [ 3] [418] +09:50:28 [ 32] [ 6] [668899] +09:50:28 [ 35] [ 32] [6213544001406112=491212010611169] +09:50:28 [ 37] [ 12] [507901856220] +09:50:28 [ 38] [ 6] [936716] +09:50:28 [ 39] [ 2] [51] +09:50:28 [ 41] [ 8] [03311001] +09:50:28 [ 49] [ 3] [418] +09:50:28 [ 54] [ 40] [0001418C0000448202550002418C000044820255] +09:50:28 ============================================================================ +09:50:28 Sending to : +09:50:28 ============================================================================ +09:50:28 + + +waiting on router queue for slot.... +09:50:28 ============================================================================ +09:50:28 Slot Id : <256> +09:50:28 Transaction Type : REQUEST +09:50:28 Received From : +09:50:28 ============================================================================ +09:50:28 FNo. Len. Field Value +09:50:28 ============================================================================ +09:50:28 [ 1] [ 4] [0200] +09:50:28 [ 2] [ 16] [6213541000116098] +09:50:28 [ 3] [ 6] [011000] +09:50:28 [ 4] [ 12] [000100000000] +09:50:28 [ 7] [ 10] [0320095815] +09:50:28 [ 11] [ 6] [021145] +09:50:28 [ 12] [ 6] [095815] +09:50:28 [ 13] [ 4] [0320] +09:50:28 [ 14] [ 4] [4912] +09:50:28 [ 15] [ 4] [0320] +09:50:28 [ 18] [ 4] [6011] +09:50:28 [ 22] [ 3] [900] +09:50:28 [ 25] [ 2] [02] +09:50:28 [ 28] [ 9] [D00002000] +09:50:28 [ 32] [ 6] [220699] +09:50:28 [ 35] [ 32] [6213541000116098=491212011609091] +09:50:28 [ 37] [ 12] [507900263101] +09:50:28 [ 41] [ 8] [01001400] +09:50:28 [ 42] [ 15] [APTRA ] +09:50:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:50:28 [ 49] [ 3] [418] +09:50:28 [ 52] [ 16] [DBC831EC83869A6C] +09:50:28 ============================================================================ +09:50:28 + + +waiting on router queue for slot.... +09:50:28 Sending to : +09:50:28 ============================================================================ +09:50:28 ============================================================================ +09:50:28 Slot Id : <256> +09:50:28 Transaction Type : REQUEST +09:50:28 Received From : +09:50:28 ============================================================================ +09:50:28 FNo. Len. Field Value +09:50:28 ============================================================================ +09:50:28 [ 1] [ 4] [0200] +09:50:28 [ 2] [ 16] [6213541000116098] +09:50:28 [ 3] [ 6] [011000] +09:50:28 [ 4] [ 12] [000100000000] +09:50:28 [ 7] [ 10] [0320095815] +09:50:28 [ 11] [ 6] [021145] +09:50:28 [ 12] [ 6] [095815] +09:50:28 [ 13] [ 4] [0320] +09:50:28 [ 14] [ 4] [4912] +09:50:28 [ 15] [ 4] [0320] +09:50:28 [ 18] [ 4] [6011] +09:50:28 [ 22] [ 3] [900] +09:50:28 [ 25] [ 2] [02] +09:50:28 [ 28] [ 9] [D00002000] +09:50:28 [ 32] [ 6] [220699] +09:50:28 [ 35] [ 32] [6213541000116098=491212011609091] +09:50:28 [ 37] [ 12] [507900263101] +09:50:28 [ 41] [ 8] [01001400] +09:50:28 [ 42] [ 15] [APTRA ] +09:50:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:50:28 [ 49] [ 3] [418] +09:50:28 [ 52] [ 16] [9AEFC9D884A37E34] +09:50:28 ============================================================================ +09:50:28 + + +waiting on router queue for slot.... +09:50:28 Sending to : <0> +09:50:28 ============================================================================ +09:50:29 ============================================================================ +09:50:29 Slot Id : <256> +09:50:29 Transaction Type : RESPONSE +09:50:29 Received From : +09:50:29 ============================================================================ +09:50:29 FNo. Len. Field Value +09:50:29 ============================================================================ +09:50:29 [ 1] [ 4] [0210] +09:50:29 [ 2] [ 16] [6213541000116098] +09:50:29 [ 3] [ 6] [011000] +09:50:29 [ 4] [ 12] [000100000000] +09:50:29 [ 7] [ 10] [0320095815] +09:50:29 [ 11] [ 6] [021145] +09:50:29 [ 12] [ 6] [095815] +09:50:29 [ 13] [ 4] [0320] +09:50:29 [ 15] [ 4] [0320] +09:50:29 [ 18] [ 4] [6011] +09:50:29 [ 32] [ 6] [220699] +09:50:29 [ 35] [ 32] [6213541000116098=491212011609091] +09:50:29 [ 37] [ 12] [507900263101] +09:50:29 [ 38] [ 6] [580168] +09:50:29 [ 39] [ 2] [00] +09:50:29 [ 41] [ 8] [01001400] +09:50:29 [ 49] [ 3] [418] +09:50:29 [ 54] [ 40] [1001418C0077251219551002418C007725121955] +09:50:29 ============================================================================ +09:50:29 Sending to : +09:50:29 ============================================================================ +09:50:29 + + +waiting on router queue for slot.... +09:50:29 ============================================================================ +09:50:29 Slot Id : <265> +09:50:29 Transaction Type : RESPONSE +09:50:29 Received From : +09:50:29 ============================================================================ +09:50:29 FNo. Len. Field Value +09:50:29 ============================================================================ +09:50:29 [ 1] [ 4] [0210] +09:50:29 [ 2] [ 16] [6213544001406112] +09:50:29 [ 3] [ 6] [010000] +09:50:29 [ 4] [ 12] [000040000000] +09:50:29 [ 7] [ 10] [0320094818] +09:50:29 [ 11] [ 6] [936716] +09:50:29 [ 12] [ 6] [094818] +09:50:29 [ 13] [ 4] [0320] +09:50:29 [ 15] [ 4] [0320] +09:50:29 [ 18] [ 4] [6011] +09:50:29 [ 19] [ 3] [418] +09:50:29 [ 32] [ 6] [668899] +09:50:29 [ 35] [ 32] [6213544001406112=491212010611169] +09:50:29 [ 37] [ 12] [507901856220] +09:50:29 [ 38] [ 6] [936716] +09:50:29 [ 39] [ 2] [51] +09:50:29 [ 41] [ 8] [03311001] +09:50:29 [ 49] [ 3] [418] +09:50:29 [ 54] [ 40] [0001418C0000448202550002418C000044820255] +09:50:29 ============================================================================ +09:50:29 Calculate Source COMM Id = 4 +09:50:29 ============================================================================ +09:50:29 + + +waiting on router queue for slot.... +09:50:30 ============================================================================ +09:50:30 Slot Id : <275> +09:50:30 Transaction Type : REQUEST +09:50:30 Received From : +09:50:30 ============================================================================ +09:50:30 FNo. Len. Field Value +09:50:30 ============================================================================ +09:50:30 [ 1] [ 4] [0800] +09:50:30 [ 7] [ 10] [0320025026] +09:50:30 [ 11] [ 6] [066902] +09:50:30 [ 37] [ 12] [507909066902] +09:50:30 [ 70] [ 3] [001] +09:50:30 ============================================================================ +09:50:30 + + +waiting on router queue for slot.... +09:50:30 Sending to : +09:50:30 ============================================================================ +09:50:30 ============================================================================ +09:50:30 Slot Id : <275> +09:50:30 Transaction Type : RESPONSE +09:50:30 Received From : +09:50:30 ============================================================================ +09:50:30 FNo. Len. Field Value +09:50:30 ============================================================================ +09:50:30 [ 1] [ 4] [0810] +09:50:30 [ 7] [ 10] [0320025026] +09:50:30 [ 11] [ 6] [066902] +09:50:30 [ 37] [ 12] [507909066902] +09:50:30 [ 39] [ 2] [00] +09:50:30 [ 70] [ 3] [001] +09:50:30 ============================================================================ +09:50:30 Calculate Source COMM Id = 0 +09:50:30 ============================================================================ +09:50:30 + + +waiting on router queue for slot.... +09:50:31 ============================================================================ +09:50:31 Slot Id : <256> +09:50:31 Transaction Type : RESPONSE +09:50:31 Received From : +09:50:31 ============================================================================ +09:50:31 FNo. Len. Field Value +09:50:31 ============================================================================ +09:50:31 [ 1] [ 4] [0210] +09:50:31 [ 2] [ 16] [6213541000116098] +09:50:31 [ 3] [ 6] [011000] +09:50:31 [ 4] [ 12] [000100000000] +09:50:31 [ 7] [ 10] [0320095815] +09:50:31 [ 11] [ 6] [021145] +09:50:31 [ 12] [ 6] [095815] +09:50:31 [ 13] [ 4] [0320] +09:50:31 [ 15] [ 4] [0320] +09:50:31 [ 18] [ 4] [6011] +09:50:31 [ 32] [ 6] [220699] +09:50:31 [ 35] [ 32] [6213541000116098=491212011609091] +09:50:31 [ 37] [ 12] [507900263101] +09:50:31 [ 38] [ 6] [580168] +09:50:31 [ 39] [ 2] [00] +09:50:31 [ 41] [ 8] [01001400] +09:50:31 [ 49] [ 3] [418] +09:50:31 [ 54] [ 40] [1001418C0077251219551002418C007725121955] +09:50:31 ============================================================================ +09:50:31 Calculate Source COMM Id = 1 +09:50:31 ============================================================================ +09:50:31 + + +waiting on router queue for slot.... +09:50:34 ============================================================================ +09:50:34 Slot Id : <247> +09:50:34 Transaction Type : REQUEST +09:50:34 Received From : +09:50:34 ============================================================================ +09:50:34 FNo. Len. Field Value +09:50:34 ============================================================================ +09:50:34 [ 1] [ 4] [0800] +09:50:34 [ 7] [ 10] [0320170223] +09:50:34 [ 11] [ 6] [100223] +09:50:34 [ 37] [ 12] [57910100223] +09:50:34 [ 70] [ 3] [301] +09:50:34 ============================================================================ +09:50:34 + + +waiting on router queue for slot.... +09:50:34 Sending to : +09:50:34 ============================================================================ +09:50:34 ============================================================================ +09:50:34 Slot Id : <247> +09:50:34 Transaction Type : RESPONSE +09:50:34 Received From : +09:50:34 ============================================================================ +09:50:34 FNo. Len. Field Value +09:50:34 ============================================================================ +09:50:34 [ 1] [ 4] [0810] +09:50:34 [ 7] [ 10] [0320170223] +09:50:34 [ 11] [ 6] [100223] +09:50:34 [ 37] [ 12] [579101002230] +09:50:34 [ 39] [ 2] [00] +09:50:34 [ 70] [ 3] [810] +09:50:34 ============================================================================ +09:50:34 Calculate Source COMM Id = 6 +09:50:34 ============================================================================ +09:50:34 + + +waiting on router queue for slot.... +09:50:37 ============================================================================ +09:50:37 Slot Id : <274> +09:50:37 Transaction Type : REQUEST +09:50:37 Received From : +09:50:37 ============================================================================ +09:50:37 FNo. Len. Field Value +09:50:37 ============================================================================ +09:50:37 [ 1] [ 4] [0800] +09:50:37 [ 7] [ 10] [0320024945] +09:50:37 [ 11] [ 6] [155714] +09:50:37 [ 70] [ 3] [301] +09:50:37 ============================================================================ +09:50:37 + + +waiting on router queue for slot.... +09:50:37 Sending to : +09:50:37 ============================================================================ +09:50:37 ============================================================================ +09:50:37 Slot Id : <274> +09:50:37 Transaction Type : RESPONSE +09:50:37 Received From : +09:50:37 ============================================================================ +09:50:37 FNo. Len. Field Value +09:50:37 ============================================================================ +09:50:37 [ 1] [ 4] [0810] +09:50:37 [ 7] [ 10] [0320024945] +09:50:37 [ 11] [ 6] [155714] +09:50:37 [ 39] [ 2] [00] +09:50:37 [ 70] [ 3] [301] +09:50:37 ============================================================================ +09:50:37 Calculate Source COMM Id = 2 +09:50:37 ============================================================================ +09:50:37 + + +waiting on router queue for slot.... +09:50:39 ============================================================================ +09:50:39 Slot Id : <218> +09:50:39 Transaction Type : REQUEST +09:50:39 Received From : +09:50:39 ============================================================================ +09:50:39 FNo. Len. Field Value +09:50:39 ============================================================================ +09:50:39 [ 1] [ 4] [0800] +09:50:39 [ 2] [ 5] [02531] +09:50:39 [ 3] [ 6] [579098] +09:50:39 [ 7] [ 10] [0320025039] +09:50:39 [ 11] [ 6] [806983] +09:50:39 [ 15] [ 10] [0320025039] +09:50:39 [ 37] [ 11] [57909806983] +09:50:39 [ 70] [ 3] [001] +09:50:39 ============================================================================ +09:50:39 + + +waiting on router queue for slot.... +09:50:39 ============================================================================ +09:50:39 Slot Id : <218> +09:50:39 Transaction Type : RESPONSE +09:50:39 Received From : +09:50:39 ============================================================================ +09:50:39 FNo. Len. Field Value +09:50:39 ============================================================================ +09:50:39 [ 1] [ 4] [0810] +09:50:39 [ 7] [ 10] [0320025039] +09:50:39 [ 11] [ 6] [806983] +09:50:39 [ 15] [ 4] [0320] +09:50:39 [ 37] [ 12] [57909806983] +09:50:39 [ 39] [ 2] [00] +09:50:39 [ 70] [ 3] [001] +09:50:39 ============================================================================ +09:50:39 Sending to : +09:50:39 ============================================================================ +09:50:39 + + +waiting on router queue for slot.... +09:50:47 ============================================================================ +09:50:47 Slot Id : <231> +09:50:47 Transaction Type : REQUEST +09:50:47 Received From : +09:50:47 ============================================================================ +09:50:47 FNo. Len. Field Value +09:50:47 ============================================================================ +09:50:47 [ 1] [ 4] [0800] +09:50:47 [ 7] [ 10] [0320024955] +09:50:47 [ 11] [ 6] [155715] +09:50:47 [ 70] [ 3] [301] +09:50:47 ============================================================================ +09:50:47 + + +waiting on router queue for slot.... +09:50:47 Sending to : +09:50:47 ============================================================================ +09:50:47 ============================================================================ +09:50:47 Slot Id : <231> +09:50:47 Transaction Type : RESPONSE +09:50:47 Received From : +09:50:47 ============================================================================ +09:50:47 FNo. Len. Field Value +09:50:47 ============================================================================ +09:50:47 [ 1] [ 4] [0810] +09:50:47 [ 7] [ 10] [0320024955] +09:50:47 [ 11] [ 6] [155715] +09:50:47 [ 39] [ 2] [00] +09:50:47 [ 70] [ 3] [301] +09:50:47 ============================================================================ +09:50:47 Calculate Source COMM Id = 2 +09:50:47 ============================================================================ +09:50:47 + + +waiting on router queue for slot.... +09:50:57 ============================================================================ +09:50:57 Slot Id : <279> +09:50:57 Transaction Type : REQUEST +09:50:57 Received From : +09:50:57 ============================================================================ +09:50:57 FNo. Len. Field Value +09:50:57 ============================================================================ +09:50:57 [ 1] [ 4] [0200] +09:50:57 [ 2] [ 16] [6213544001406112] +09:50:57 [ 3] [ 6] [010000] +09:50:57 [ 4] [ 12] [000039000000] +09:50:57 [ 7] [ 10] [0320094848] +09:50:57 [ 11] [ 6] [936732] +09:50:57 [ 12] [ 6] [094848] +09:50:57 [ 13] [ 4] [0320] +09:50:57 [ 15] [ 4] [0320] +09:50:57 [ 18] [ 4] [6011] +09:50:57 [ 19] [ 3] [418] +09:50:57 [ 22] [ 3] [021] +09:50:57 [ 25] [ 2] [01] +09:50:57 [ 28] [ 9] [D00002000] +09:50:57 [ 32] [ 6] [668899] +09:50:57 [ 35] [ 32] [6213544001406112=491212010611169] +09:50:57 [ 37] [ 12] [507901856221] +09:50:57 [ 41] [ 8] [03311001] +09:50:57 [ 42] [ 15] [APT ] +09:50:57 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +09:50:57 [ 49] [ 3] [418] +09:50:57 [ 52] [ 16] [993022A39C5E30C9] +09:50:57 ============================================================================ +09:50:57 + + +waiting on router queue for slot.... +09:50:57 Sending to : +09:50:57 ============================================================================ +09:50:57 Sending to : +09:50:57 ============================================================================ +09:50:57 ============================================================================ +09:50:57 Slot Id : <279> +09:50:57 Transaction Type : REQUEST +09:50:57 Received From : +09:50:57 ============================================================================ +09:50:57 FNo. Len. Field Value +09:50:57 ============================================================================ +09:50:57 [ 1] [ 4] [0200] +09:50:57 [ 2] [ 16] [6213544001406112] +09:50:57 [ 3] [ 6] [010000] +09:50:57 [ 4] [ 12] [000039000000] +09:50:57 [ 7] [ 10] [0320094848] +09:50:57 [ 11] [ 6] [936732] +09:50:57 [ 12] [ 6] [094848] +09:50:57 [ 13] [ 4] [0320] +09:50:57 [ 15] [ 4] [0320] +09:50:57 [ 18] [ 4] [6011] +09:50:57 [ 19] [ 3] [418] +09:50:57 [ 22] [ 3] [021] +09:50:57 [ 25] [ 2] [01] +09:50:57 [ 28] [ 9] [D00002000] +09:50:57 [ 32] [ 6] [668899] +09:50:57 [ 35] [ 32] [6213544001406112=491212010611169] +09:50:57 [ 37] [ 12] [507901856221] +09:50:57 [ 41] [ 8] [03311001] +09:50:57 [ 42] [ 15] [APT ] +09:50:57 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +09:50:57 [ 49] [ 3] [418] +09:50:57 [ 52] [ 16] [993022A39C5E30C9] +09:50:57 ============================================================================ +09:50:57 + + +waiting on router queue for slot.... +09:50:57 Sending to : +09:50:57 ============================================================================ +09:50:57 ============================================================================ +09:50:57 Slot Id : <279> +09:50:57 Transaction Type : REQUEST +09:50:57 Received From : +09:50:57 ============================================================================ +09:50:57 FNo. Len. Field Value +09:50:57 ============================================================================ +09:50:57 [ 1] [ 4] [0200] +09:50:57 [ 2] [ 16] [6213544001406112] +09:50:57 [ 3] [ 6] [010000] +09:50:57 [ 4] [ 12] [000039000000] +09:50:57 [ 7] [ 10] [0320094848] +09:50:57 [ 11] [ 6] [936732] +09:50:57 [ 12] [ 6] [094848] +09:50:57 [ 13] [ 4] [0320] +09:50:57 [ 15] [ 4] [0320] +09:50:57 [ 18] [ 4] [6011] +09:50:57 [ 19] [ 3] [418] +09:50:57 [ 22] [ 3] [021] +09:50:57 [ 25] [ 2] [01] +09:50:57 [ 28] [ 9] [D00002000] +09:50:57 [ 32] [ 6] [668899] +09:50:57 [ 35] [ 32] [6213544001406112=491212010611169] +09:50:57 [ 37] [ 12] [507901856221] +09:50:57 [ 41] [ 8] [03311001] +09:50:57 [ 42] [ 15] [APT ] +09:50:57 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +09:50:57 [ 49] [ 3] [418] +09:50:57 [ 52] [ 16] [B3E8D9C1FB0A2F71] +09:50:57 ============================================================================ +09:50:57 + + +waiting on router queue for slot.... +09:50:57 Sending to : <0> +09:50:57 ============================================================================ +09:50:58 ============================================================================ +09:50:58 Slot Id : <279> +09:50:58 Transaction Type : RESPONSE +09:50:58 Received From : +09:50:58 ============================================================================ +09:50:58 FNo. Len. Field Value +09:50:58 ============================================================================ +09:50:58 [ 1] [ 4] [0210] +09:50:58 [ 2] [ 16] [6213544001406112] +09:50:58 [ 3] [ 6] [010000] +09:50:58 [ 4] [ 12] [000039000000] +09:50:58 [ 7] [ 10] [0320094848] +09:50:58 [ 11] [ 6] [936732] +09:50:58 [ 12] [ 6] [094848] +09:50:58 [ 13] [ 4] [0320] +09:50:58 [ 15] [ 4] [0320] +09:50:58 [ 18] [ 4] [6011] +09:50:58 [ 19] [ 3] [418] +09:50:58 [ 32] [ 6] [668899] +09:50:58 [ 35] [ 32] [6213544001406112=491212010611169] +09:50:58 [ 37] [ 12] [507901856221] +09:50:58 [ 38] [ 6] [448644] +09:50:58 [ 39] [ 2] [00] +09:50:58 [ 41] [ 8] [03311001] +09:50:58 [ 49] [ 3] [418] +09:50:58 [ 54] [ 40] [0001418C0000056202550002418C000005620255] +09:50:58 ============================================================================ +09:50:58 Sending to : +09:50:58 ============================================================================ +09:50:58 + + +waiting on router queue for slot.... +09:50:58 ============================================================================ +09:50:58 Slot Id : <239> +09:50:58 Transaction Type : REQUEST +09:50:58 Received From : +09:50:58 ============================================================================ +09:50:58 FNo. Len. Field Value +09:50:58 ============================================================================ +09:50:58 [ 1] [ 4] [0800] +09:50:58 [ 7] [ 10] [0320025006] +09:50:58 [ 11] [ 6] [155716] +09:50:58 [ 70] [ 3] [301] +09:50:58 ============================================================================ +09:50:58 + + +waiting on router queue for slot.... +09:50:58 Sending to : +09:50:58 ============================================================================ +09:50:58 ============================================================================ +09:50:58 Slot Id : <239> +09:50:58 Transaction Type : RESPONSE +09:50:58 Received From : +09:50:58 ============================================================================ +09:50:58 FNo. Len. Field Value +09:50:58 ============================================================================ +09:50:58 [ 1] [ 4] [0810] +09:50:58 [ 7] [ 10] [0320025006] +09:50:58 [ 11] [ 6] [155716] +09:50:58 [ 39] [ 2] [00] +09:50:58 [ 70] [ 3] [301] +09:50:58 ============================================================================ +09:50:58 Calculate Source COMM Id = 2 +09:50:58 ============================================================================ +09:50:58 + + +waiting on router queue for slot.... +09:50:59 ============================================================================ +09:50:59 Slot Id : <264> +09:50:59 Transaction Type : REQUEST +09:50:59 Received From : +09:50:59 ============================================================================ +09:50:59 FNo. Len. Field Value +09:50:59 ============================================================================ +09:50:59 [ 1] [ 4] [0200] +09:50:59 [ 2] [ 16] [6213545000516959] +09:50:59 [ 3] [ 6] [010000] +09:50:59 [ 4] [ 12] [000050000000] +09:50:59 [ 7] [ 10] [0320025006] +09:50:59 [ 11] [ 6] [267791] +09:50:59 [ 12] [ 6] [095006] +09:50:59 [ 13] [ 4] [0320] +09:50:59 [ 14] [ 4] [4912] +09:50:59 [ 15] [ 4] [0320] +09:50:59 [ 18] [ 4] [6011] +09:50:59 [ 19] [ 3] [418] +09:50:59 [ 22] [ 3] [021] +09:50:59 [ 25] [ 2] [01] +09:50:59 [ 28] [ 9] [D00002000] +09:50:59 [ 32] [ 6] [180893] +09:50:59 [ 35] [ 32] [6213545000516959=491212011695005] +09:50:59 [ 37] [ 12] [507902267791] +09:50:59 [ 41] [ 8] [0108THNG] +09:50:59 [ 42] [ 15] [999999 ] +09:50:59 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +09:50:59 [ 49] [ 3] [418] +09:50:59 [ 52] [ 16] [C3E7288BA81CC73A] +09:50:59 ============================================================================ +09:50:59 + + +waiting on router queue for slot.... +09:50:59 Sending to : +09:50:59 ============================================================================ +09:50:59 Sending to : +09:50:59 ============================================================================ +09:50:59 ============================================================================ +09:50:59 Slot Id : <279> +09:50:59 Transaction Type : RESPONSE +09:50:59 Received From : +09:50:59 ============================================================================ +09:50:59 FNo. Len. Field Value +09:50:59 ============================================================================ +09:50:59 [ 1] [ 4] [0210] +09:50:59 [ 2] [ 16] [6213544001406112] +09:50:59 [ 3] [ 6] [010000] +09:50:59 [ 4] [ 12] [000039000000] +09:50:59 [ 7] [ 10] [0320094848] +09:50:59 [ 11] [ 6] [936732] +09:50:59 [ 12] [ 6] [094848] +09:50:59 [ 13] [ 4] [0320] +09:50:59 [ 15] [ 4] [0320] +09:50:59 [ 18] [ 4] [6011] +09:50:59 [ 19] [ 3] [418] +09:50:59 [ 32] [ 6] [668899] +09:50:59 [ 35] [ 32] [6213544001406112=491212010611169] +09:50:59 [ 37] [ 12] [507901856221] +09:50:59 [ 38] [ 6] [448644] +09:50:59 [ 39] [ 2] [00] +09:50:59 [ 41] [ 8] [03311001] +09:50:59 [ 49] [ 3] [418] +09:50:59 [ 54] [ 40] [0001418C0000056202550002418C000005620255] +09:50:59 ============================================================================ +09:50:59 Calculate Source COMM Id = 4 +09:50:59 ============================================================================ +09:50:59 + + +waiting on router queue for slot.... +09:50:59 ============================================================================ +09:50:59 Slot Id : <264> +09:50:59 Transaction Type : REQUEST +09:50:59 Received From : +09:50:59 ============================================================================ +09:50:59 FNo. Len. Field Value +09:50:59 ============================================================================ +09:50:59 [ 1] [ 4] [0200] +09:50:59 [ 2] [ 16] [6213545000516959] +09:50:59 [ 3] [ 6] [010000] +09:50:59 [ 4] [ 12] [000050000000] +09:50:59 [ 7] [ 10] [0320025006] +09:50:59 [ 11] [ 6] [267791] +09:50:59 [ 12] [ 6] [095006] +09:50:59 [ 13] [ 4] [0320] +09:50:59 [ 14] [ 4] [4912] +09:50:59 [ 15] [ 4] [0320] +09:50:59 [ 18] [ 4] [6011] +09:50:59 [ 19] [ 3] [418] +09:50:59 [ 22] [ 3] [021] +09:50:59 [ 25] [ 2] [01] +09:50:59 [ 28] [ 9] [D00002000] +09:50:59 [ 32] [ 6] [180893] +09:50:59 [ 35] [ 32] [6213545000516959=491212011695005] +09:50:59 [ 37] [ 12] [507902267791] +09:50:59 [ 41] [ 8] [0108THNG] +09:50:59 [ 42] [ 15] [999999 ] +09:50:59 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +09:50:59 [ 49] [ 3] [418] +09:50:59 [ 52] [ 16] [C3E7288BA81CC73A] +09:50:59 ============================================================================ +09:50:59 + + +waiting on router queue for slot.... +09:50:59 Sending to : +09:50:59 ============================================================================ +09:50:59 ============================================================================ +09:50:59 Slot Id : <264> +09:50:59 Transaction Type : REQUEST +09:50:59 Received From : +09:50:59 ============================================================================ +09:50:59 FNo. Len. Field Value +09:50:59 ============================================================================ +09:50:59 [ 1] [ 4] [0200] +09:50:59 [ 2] [ 16] [6213545000516959] +09:50:59 [ 3] [ 6] [010000] +09:50:59 [ 4] [ 12] [000050000000] +09:50:59 [ 7] [ 10] [0320025006] +09:50:59 [ 11] [ 6] [267791] +09:50:59 [ 12] [ 6] [095006] +09:50:59 [ 13] [ 4] [0320] +09:50:59 [ 14] [ 4] [4912] +09:50:59 [ 15] [ 4] [0320] +09:50:59 [ 18] [ 4] [6011] +09:50:59 [ 19] [ 3] [418] +09:50:59 [ 22] [ 3] [021] +09:50:59 [ 25] [ 2] [01] +09:50:59 [ 28] [ 9] [D00002000] +09:50:59 [ 32] [ 6] [180893] +09:50:59 [ 35] [ 32] [6213545000516959=491212011695005] +09:50:59 [ 37] [ 12] [507902267791] +09:50:59 [ 41] [ 8] [0108THNG] +09:50:59 [ 42] [ 15] [999999 ] +09:50:59 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +09:50:59 [ 49] [ 3] [418] +09:50:59 [ 52] [ 16] [933D1CEBF41AED8B] +09:50:59 ============================================================================ +09:50:59 + + +waiting on router queue for slot.... +09:50:59 Sending to : <0> +09:50:59 ============================================================================ +09:51:00 ============================================================================ +09:51:00 Slot Id : <264> +09:51:00 Transaction Type : RESPONSE +09:51:00 Received From : +09:51:00 ============================================================================ +09:51:00 FNo. Len. Field Value +09:51:00 ============================================================================ +09:51:00 [ 1] [ 4] [0210] +09:51:00 [ 2] [ 16] [6213545000516959] +09:51:00 [ 3] [ 6] [010000] +09:51:00 [ 4] [ 12] [000050000000] +09:51:00 [ 7] [ 10] [0320025006] +09:51:00 [ 11] [ 6] [267791] +09:51:00 [ 12] [ 6] [095006] +09:51:00 [ 13] [ 4] [0320] +09:51:00 [ 15] [ 4] [0320] +09:51:00 [ 18] [ 4] [6011] +09:51:00 [ 19] [ 3] [418] +09:51:00 [ 32] [ 6] [180893] +09:51:00 [ 35] [ 32] [6213545000516959=491212011695005] +09:51:00 [ 37] [ 12] [507902267791] +09:51:00 [ 38] [ 6] [685349] +09:51:00 [ 39] [ 2] [00] +09:51:00 [ 41] [ 8] [0108THNG] +09:51:00 [ 49] [ 3] [418] +09:51:00 [ 54] [ 40] [0001418C0001871786050002418C000187178605] +09:51:00 ============================================================================ +09:51:00 Sending to : +09:51:00 ============================================================================ +09:51:00 + + +waiting on router queue for slot.... +09:51:01 ============================================================================ +09:51:01 Slot Id : <264> +09:51:01 Transaction Type : RESPONSE +09:51:01 Received From : +09:51:01 ============================================================================ +09:51:01 FNo. Len. Field Value +09:51:01 ============================================================================ +09:51:01 [ 1] [ 4] [0210] +09:51:01 [ 2] [ 16] [6213545000516959] +09:51:01 [ 3] [ 6] [010000] +09:51:01 [ 4] [ 12] [000050000000] +09:51:01 [ 7] [ 10] [0320025006] +09:51:01 [ 11] [ 6] [267791] +09:51:01 [ 12] [ 6] [095006] +09:51:01 [ 13] [ 4] [0320] +09:51:01 [ 15] [ 4] [0320] +09:51:01 [ 18] [ 4] [6011] +09:51:01 [ 19] [ 3] [418] +09:51:01 [ 32] [ 6] [180893] +09:51:01 [ 35] [ 32] [6213545000516959=491212011695005] +09:51:01 [ 37] [ 12] [507902267791] +09:51:01 [ 38] [ 6] [685349] +09:51:01 [ 39] [ 2] [00] +09:51:01 [ 41] [ 8] [0108THNG] +09:51:01 [ 49] [ 3] [418] +09:51:01 [ 54] [ 40] [0001418C0001871786050002418C000187178605] +09:51:01 ============================================================================ +09:51:01 Calculate Source COMM Id = 2 +09:51:01 ============================================================================ +09:51:01 + + +waiting on router queue for slot.... +09:51:13 ============================================================================ +09:51:13 Slot Id : <254> +09:51:13 Transaction Type : REQUEST +09:51:13 Received From : +09:51:13 ============================================================================ +09:51:13 FNo. Len. Field Value +09:51:13 ============================================================================ +09:51:13 [ 1] [ 4] [0200] +09:51:13 [ 2] [ 16] [6688990600439309] +09:51:13 [ 3] [ 6] [012000] +09:51:13 [ 4] [ 12] [000100000000] +09:51:13 [ 7] [ 10] [0320095109] +09:51:13 [ 11] [ 6] [704852] +09:51:13 [ 12] [ 6] [095109] +09:51:13 [ 13] [ 4] [0320] +09:51:13 [ 15] [ 4] [0320] +09:51:13 [ 18] [ 4] [6011] +09:51:13 [ 22] [ 3] [900] +09:51:13 [ 25] [ 2] [02] +09:51:13 [ 28] [ 9] [D00002000] +09:51:13 [ 32] [ 6] [621354] +09:51:13 [ 35] [ 37] [6688990600439309=40110061930974600000] +09:51:13 [ 37] [ 12] [507903928203] +09:51:13 [ 41] [ 8] [01010800] +09:51:13 [ 42] [ 15] [NATIVE ] +09:51:13 [ 43] [ 40] [Mahosod Hospital Sisattanak LAO] +09:51:13 [ 49] [ 3] [418] +09:51:13 [ 52] [ 16] [458640FB1EB357FC] +09:51:13 ============================================================================ +09:51:13 + + +waiting on router queue for slot.... +09:51:13 Sending to : +09:51:13 ============================================================================ +09:51:13 Sending to : +09:51:13 ============================================================================ +09:51:13 ============================================================================ +09:51:13 Slot Id : <254> +09:51:13 Transaction Type : REQUEST +09:51:13 Received From : +09:51:13 ============================================================================ +09:51:13 FNo. Len. Field Value +09:51:13 ============================================================================ +09:51:13 [ 1] [ 4] [0200] +09:51:13 [ 2] [ 16] [6688990600439309] +09:51:13 [ 3] [ 6] [012000] +09:51:13 [ 4] [ 12] [000100000000] +09:51:13 [ 7] [ 10] [0320095109] +09:51:13 [ 11] [ 6] [704852] +09:51:13 [ 12] [ 6] [095109] +09:51:13 [ 13] [ 4] [0320] +09:51:13 [ 15] [ 4] [0320] +09:51:13 [ 18] [ 4] [6011] +09:51:13 [ 22] [ 3] [900] +09:51:13 [ 25] [ 2] [02] +09:51:13 [ 28] [ 9] [D00002000] +09:51:13 [ 32] [ 6] [621354] +09:51:13 [ 35] [ 37] [6688990600439309=40110061930974600000] +09:51:13 [ 37] [ 12] [507903928203] +09:51:13 [ 41] [ 8] [01010800] +09:51:13 [ 42] [ 15] [NATIVE ] +09:51:13 [ 43] [ 40] [Mahosod Hospital Sisattanak LAO] +09:51:13 [ 49] [ 3] [418] +09:51:13 [ 52] [ 16] [458640FB1EB357FC] +09:51:13 ============================================================================ +09:51:13 + + +waiting on router queue for slot.... +09:51:13 Sending to : +09:51:13 ============================================================================ +09:51:13 ============================================================================ +09:51:13 Slot Id : <254> +09:51:13 Transaction Type : REQUEST +09:51:13 Received From : +09:51:13 ============================================================================ +09:51:13 FNo. Len. Field Value +09:51:13 ============================================================================ +09:51:13 [ 1] [ 4] [0200] +09:51:13 [ 2] [ 16] [6688990600439309] +09:51:13 [ 3] [ 6] [012000] +09:51:13 [ 4] [ 12] [000100000000] +09:51:13 [ 7] [ 10] [0320095109] +09:51:13 [ 11] [ 6] [704852] +09:51:13 [ 12] [ 6] [095109] +09:51:13 [ 13] [ 4] [0320] +09:51:13 [ 15] [ 4] [0320] +09:51:13 [ 18] [ 4] [6011] +09:51:13 [ 22] [ 3] [900] +09:51:13 [ 25] [ 2] [02] +09:51:13 [ 28] [ 9] [D00002000] +09:51:13 [ 32] [ 6] [621354] +09:51:13 [ 35] [ 37] [6688990600439309=40110061930974600000] +09:51:13 [ 37] [ 12] [507903928203] +09:51:13 [ 41] [ 8] [01010800] +09:51:13 [ 42] [ 15] [NATIVE ] +09:51:13 [ 43] [ 40] [Mahosod Hospital Sisattanak LAO] +09:51:13 [ 49] [ 3] [418] +09:51:13 [ 52] [ 16] [7BE875501FA77E4D] +09:51:13 ============================================================================ +09:51:13 + + +waiting on router queue for slot.... +09:51:13 Sending to : <4> +09:51:13 ============================================================================ +09:51:13 ============================================================================ +09:51:13 Slot Id : <254> +09:51:13 Transaction Type : RESPONSE +09:51:13 Received From : +09:51:13 ============================================================================ +09:51:13 FNo. Len. Field Value +09:51:13 ============================================================================ +09:51:13 [ 1] [ 4] [0210] +09:51:13 [ 2] [ 16] [6688990600439309] +09:51:13 [ 3] [ 6] [012000] +09:51:13 [ 4] [ 12] [000100000000] +09:51:13 [ 7] [ 10] [0320095109] +09:51:13 [ 11] [ 6] [704852] +09:51:13 [ 12] [ 6] [095109] +09:51:13 [ 13] [ 4] [0320] +09:51:13 [ 15] [ 4] [0320] +09:51:13 [ 18] [ 4] [6011] +09:51:13 [ 22] [ 3] [021] +09:51:13 [ 32] [ 6] [621354] +09:51:13 [ 35] [ 37] [6688990600439309=40110061930974600000] +09:51:13 [ 37] [ 12] [507903928203] +09:51:13 [ 39] [ 2] [62] +09:51:13 [ 41] [ 8] [01010800] +09:51:13 [ 49] [ 3] [418] +09:51:13 ============================================================================ +09:51:13 Sending to : +09:51:13 ============================================================================ +09:51:13 + + +waiting on router queue for slot.... +09:51:14 ============================================================================ +09:51:14 Slot Id : <273> +09:51:14 Transaction Type : REQUEST +09:51:14 Received From : +09:51:14 ============================================================================ +09:51:14 FNo. Len. Field Value +09:51:14 ============================================================================ +09:51:14 [ 1] [ 4] [0800] +09:51:14 [ 7] [ 10] [0320025022] +09:51:14 [ 11] [ 6] [155717] +09:51:14 [ 70] [ 3] [301] +09:51:14 ============================================================================ +09:51:14 + + +waiting on router queue for slot.... +09:51:14 Sending to : +09:51:14 ============================================================================ +09:51:14 ============================================================================ +09:51:14 Slot Id : <273> +09:51:14 Transaction Type : RESPONSE +09:51:14 Received From : +09:51:14 ============================================================================ +09:51:14 FNo. Len. Field Value +09:51:14 ============================================================================ +09:51:14 [ 1] [ 4] [0810] +09:51:14 [ 7] [ 10] [0320025022] +09:51:14 [ 11] [ 6] [155717] +09:51:14 [ 39] [ 2] [00] +09:51:14 [ 70] [ 3] [301] +09:51:14 ============================================================================ +09:51:14 Calculate Source COMM Id = 2 +09:51:14 ============================================================================ +09:51:14 + + +waiting on router queue for slot.... +09:51:14 ============================================================================ +09:51:14 Slot Id : <266> +09:51:14 Transaction Type : REQUEST +09:51:14 Received From : +09:51:14 ============================================================================ +09:51:14 FNo. Len. Field Value +09:51:14 ============================================================================ +09:51:14 [ 1] [ 4] [0200] +09:51:14 [ 2] [ 16] [6213545000403844] +09:51:14 [ 3] [ 6] [301000] +09:51:14 [ 4] [ 12] [000000000000] +09:51:14 [ 7] [ 10] [0320094905] +09:51:14 [ 11] [ 6] [936754] +09:51:14 [ 12] [ 6] [094905] +09:51:14 [ 13] [ 4] [0320] +09:51:14 [ 15] [ 4] [0320] +09:51:14 [ 18] [ 4] [6011] +09:51:14 [ 19] [ 3] [418] +09:51:14 [ 22] [ 3] [021] +09:51:14 [ 25] [ 2] [01] +09:51:14 [ 28] [ 9] [D00000000] +09:51:14 [ 32] [ 6] [668899] +09:51:14 [ 35] [ 32] [6213545000403844=491212010384363] +09:51:14 [ 37] [ 12] [507900789118] +09:51:14 [ 41] [ 8] [03005002] +09:51:14 [ 42] [ 15] [APT ] +09:51:14 [ 43] [ 40] [ KEOSEUMXAY QUESTHOUSE OUD] +09:51:14 [ 49] [ 3] [418] +09:51:14 [ 52] [ 16] [F3941F6F7F037A0B] +09:51:14 ============================================================================ +09:51:14 + + +waiting on router queue for slot.... +09:51:14 Sending to : +09:51:14 ============================================================================ +09:51:14 Sending to : +09:51:14 ============================================================================ +09:51:14 ============================================================================ +09:51:14 Slot Id : <266> +09:51:14 Transaction Type : REQUEST +09:51:14 Received From : +09:51:14 ============================================================================ +09:51:14 FNo. Len. Field Value +09:51:14 ============================================================================ +09:51:14 [ 1] [ 4] [0200] +09:51:14 [ 2] [ 16] [6213545000403844] +09:51:14 [ 3] [ 6] [301000] +09:51:14 [ 4] [ 12] [000000000000] +09:51:14 [ 7] [ 10] [0320094905] +09:51:14 [ 11] [ 6] [936754] +09:51:14 [ 12] [ 6] [094905] +09:51:14 [ 13] [ 4] [0320] +09:51:14 [ 15] [ 4] [0320] +09:51:14 [ 18] [ 4] [6011] +09:51:14 [ 19] [ 3] [418] +09:51:14 [ 22] [ 3] [021] +09:51:14 [ 25] [ 2] [01] +09:51:14 [ 28] [ 9] [D00000000] +09:51:14 [ 32] [ 6] [668899] +09:51:14 [ 35] [ 32] [6213545000403844=491212010384363] +09:51:14 [ 37] [ 12] [507900789118] +09:51:14 [ 41] [ 8] [03005002] +09:51:14 [ 42] [ 15] [APT ] +09:51:14 [ 43] [ 40] [ KEOSEUMXAY QUESTHOUSE OUD] +09:51:14 [ 49] [ 3] [418] +09:51:14 [ 52] [ 16] [F3941F6F7F037A0B] +09:51:14 ============================================================================ +09:51:14 + + +waiting on router queue for slot.... +09:51:14 Sending to : +09:51:14 ============================================================================ +09:51:14 ============================================================================ +09:51:14 Slot Id : <266> +09:51:14 Transaction Type : REQUEST +09:51:14 Received From : +09:51:14 ============================================================================ +09:51:14 FNo. Len. Field Value +09:51:14 ============================================================================ +09:51:14 [ 1] [ 4] [0200] +09:51:14 [ 2] [ 16] [6213545000403844] +09:51:14 [ 3] [ 6] [301000] +09:51:14 [ 4] [ 12] [000000000000] +09:51:14 [ 7] [ 10] [0320094905] +09:51:14 [ 11] [ 6] [936754] +09:51:14 [ 12] [ 6] [094905] +09:51:14 [ 13] [ 4] [0320] +09:51:14 [ 15] [ 4] [0320] +09:51:14 [ 18] [ 4] [6011] +09:51:14 [ 19] [ 3] [418] +09:51:14 [ 22] [ 3] [021] +09:51:14 [ 25] [ 2] [01] +09:51:14 [ 28] [ 9] [D00000000] +09:51:14 [ 32] [ 6] [668899] +09:51:14 [ 35] [ 32] [6213545000403844=491212010384363] +09:51:14 [ 37] [ 12] [507900789118] +09:51:14 [ 41] [ 8] [03005002] +09:51:14 [ 42] [ 15] [APT ] +09:51:14 [ 43] [ 40] [ KEOSEUMXAY QUESTHOUSE OUD] +09:51:14 [ 49] [ 3] [418] +09:51:14 [ 52] [ 16] [5C78050AD64B2C9D] +09:51:14 ============================================================================ +09:51:14 + + +waiting on router queue for slot.... +09:51:14 Sending to : <0> +09:51:14 ============================================================================ +09:51:14 ============================================================================ +09:51:14 Slot Id : <266> +09:51:14 Transaction Type : RESPONSE +09:51:14 Received From : +09:51:14 ============================================================================ +09:51:14 FNo. Len. Field Value +09:51:14 ============================================================================ +09:51:14 [ 1] [ 4] [0210] +09:51:14 [ 2] [ 16] [6213545000403844] +09:51:14 [ 3] [ 6] [301000] +09:51:14 [ 4] [ 12] [000000000000] +09:51:14 [ 7] [ 10] [0320094905] +09:51:14 [ 11] [ 6] [936754] +09:51:14 [ 12] [ 6] [094905] +09:51:14 [ 13] [ 4] [0320] +09:51:14 [ 15] [ 4] [0320] +09:51:14 [ 18] [ 4] [6011] +09:51:14 [ 19] [ 3] [418] +09:51:14 [ 32] [ 6] [668899] +09:51:14 [ 35] [ 32] [6213545000403844=491212010384363] +09:51:14 [ 37] [ 12] [507900789118] +09:51:14 [ 38] [ 6] [611405] +09:51:14 [ 39] [ 2] [00] +09:51:14 [ 41] [ 8] [03005002] +09:51:14 [ 49] [ 3] [418] +09:51:14 [ 54] [ 40] [1001418C0000481602341002418C000048160234] +09:51:14 ============================================================================ +09:51:14 Sending to : +09:51:14 ============================================================================ +09:51:14 + + +waiting on router queue for slot.... +09:51:14 ============================================================================ +09:51:14 Slot Id : <254> +09:51:14 Transaction Type : RESPONSE +09:51:14 Received From : +09:51:14 ============================================================================ +09:51:14 FNo. Len. Field Value +09:51:14 ============================================================================ +09:51:14 [ 1] [ 4] [0210] +09:51:14 [ 2] [ 16] [6688990600439309] +09:51:14 [ 3] [ 6] [012000] +09:51:14 [ 4] [ 12] [000100000000] +09:51:14 [ 7] [ 10] [0320095109] +09:51:14 [ 11] [ 6] [704852] +09:51:14 [ 12] [ 6] [095109] +09:51:14 [ 13] [ 4] [0320] +09:51:14 [ 15] [ 4] [0320] +09:51:14 [ 18] [ 4] [6011] +09:51:14 [ 22] [ 3] [021] +09:51:14 [ 32] [ 6] [621354] +09:51:14 [ 35] [ 37] [6688990600439309=40110061930974600000] +09:51:14 [ 37] [ 12] [507903928203] +09:51:14 [ 39] [ 2] [62] +09:51:14 [ 41] [ 8] [01010800] +09:51:14 [ 49] [ 3] [418] +09:51:14 ============================================================================ +09:51:14 Calculate Source COMM Id = 0 +09:51:14 ============================================================================ +09:51:14 + + +waiting on router queue for slot.... +09:51:16 ============================================================================ +09:51:16 Slot Id : <266> +09:51:16 Transaction Type : RESPONSE +09:51:16 Received From : +09:51:16 ============================================================================ +09:51:16 FNo. Len. Field Value +09:51:16 ============================================================================ +09:51:16 [ 1] [ 4] [0210] +09:51:16 [ 2] [ 16] [6213545000403844] +09:51:16 [ 3] [ 6] [301000] +09:51:16 [ 4] [ 12] [000000000000] +09:51:16 [ 7] [ 10] [0320094905] +09:51:16 [ 11] [ 6] [936754] +09:51:16 [ 12] [ 6] [094905] +09:51:16 [ 13] [ 4] [0320] +09:51:16 [ 15] [ 4] [0320] +09:51:16 [ 18] [ 4] [6011] +09:51:16 [ 19] [ 3] [418] +09:51:16 [ 32] [ 6] [668899] +09:51:16 [ 35] [ 32] [6213545000403844=491212010384363] +09:51:16 [ 37] [ 12] [507900789118] +09:51:16 [ 38] [ 6] [611405] +09:51:16 [ 39] [ 2] [00] +09:51:16 [ 41] [ 8] [03005002] +09:51:16 [ 49] [ 3] [418] +09:51:16 [ 54] [ 40] [1001418C0000481602341002418C000048160234] +09:51:16 ============================================================================ +09:51:16 Calculate Source COMM Id = 4 +09:51:16 ============================================================================ +09:51:16 + + +waiting on router queue for slot.... +09:51:16 ============================================================================ +09:51:16 Slot Id : <272> +09:51:16 Transaction Type : REQUEST +09:51:16 Received From : +09:51:16 ============================================================================ +09:51:16 FNo. Len. Field Value +09:51:16 ============================================================================ +09:51:16 [ 1] [ 4] [0200] +09:51:16 [ 2] [ 16] [6213541000116098] +09:51:16 [ 3] [ 6] [011000] +09:51:16 [ 4] [ 12] [000100000000] +09:51:16 [ 7] [ 10] [0320095904] +09:51:16 [ 11] [ 6] [021148] +09:51:16 [ 12] [ 6] [095904] +09:51:16 [ 13] [ 4] [0320] +09:51:16 [ 14] [ 4] [4912] +09:51:16 [ 15] [ 4] [0320] +09:51:16 [ 18] [ 4] [6011] +09:51:16 [ 22] [ 3] [900] +09:51:16 [ 25] [ 2] [02] +09:51:16 [ 28] [ 9] [D00002000] +09:51:16 [ 32] [ 6] [220699] +09:51:16 [ 35] [ 32] [6213541000116098=491212011609091] +09:51:16 [ 37] [ 12] [507900263103] +09:51:16 [ 41] [ 8] [01001400] +09:51:16 [ 42] [ 15] [APTRA ] +09:51:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:51:16 [ 49] [ 3] [418] +09:51:16 [ 52] [ 16] [DBC831EC83869A6C] +09:51:16 ============================================================================ +09:51:16 + + +waiting on router queue for slot.... +09:51:16 Sending to : +09:51:16 ============================================================================ +09:51:16 Sending to : +09:51:16 ============================================================================ +09:51:16 ============================================================================ +09:51:16 Slot Id : <272> +09:51:16 Transaction Type : REQUEST +09:51:16 Received From : +09:51:16 ============================================================================ +09:51:16 FNo. Len. Field Value +09:51:16 ============================================================================ +09:51:16 [ 1] [ 4] [0200] +09:51:16 [ 2] [ 16] [6213541000116098] +09:51:16 [ 3] [ 6] [011000] +09:51:16 [ 4] [ 12] [000100000000] +09:51:16 [ 7] [ 10] [0320095904] +09:51:16 [ 11] [ 6] [021148] +09:51:16 [ 12] [ 6] [095904] +09:51:16 [ 13] [ 4] [0320] +09:51:16 [ 14] [ 4] [4912] +09:51:16 [ 15] [ 4] [0320] +09:51:16 [ 18] [ 4] [6011] +09:51:16 [ 22] [ 3] [900] +09:51:16 [ 25] [ 2] [02] +09:51:16 [ 28] [ 9] [D00002000] +09:51:16 [ 32] [ 6] [220699] +09:51:16 [ 35] [ 32] [6213541000116098=491212011609091] +09:51:16 [ 37] [ 12] [507900263103] +09:51:16 [ 41] [ 8] [01001400] +09:51:16 [ 42] [ 15] [APTRA ] +09:51:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:51:16 [ 49] [ 3] [418] +09:51:16 [ 52] [ 16] [DBC831EC83869A6C] +09:51:16 ============================================================================ +09:51:16 + + +waiting on router queue for slot.... +09:51:16 Sending to : +09:51:16 ============================================================================ +09:51:16 ============================================================================ +09:51:16 Slot Id : <272> +09:51:16 Transaction Type : REQUEST +09:51:16 Received From : +09:51:16 ============================================================================ +09:51:16 FNo. Len. Field Value +09:51:16 ============================================================================ +09:51:16 [ 1] [ 4] [0200] +09:51:16 [ 2] [ 16] [6213541000116098] +09:51:16 [ 3] [ 6] [011000] +09:51:16 [ 4] [ 12] [000100000000] +09:51:16 [ 7] [ 10] [0320095904] +09:51:16 [ 11] [ 6] [021148] +09:51:16 [ 12] [ 6] [095904] +09:51:16 [ 13] [ 4] [0320] +09:51:16 [ 14] [ 4] [4912] +09:51:16 [ 15] [ 4] [0320] +09:51:16 [ 18] [ 4] [6011] +09:51:16 [ 22] [ 3] [900] +09:51:16 [ 25] [ 2] [02] +09:51:16 [ 28] [ 9] [D00002000] +09:51:16 [ 32] [ 6] [220699] +09:51:16 [ 35] [ 32] [6213541000116098=491212011609091] +09:51:16 [ 37] [ 12] [507900263103] +09:51:16 [ 41] [ 8] [01001400] +09:51:16 [ 42] [ 15] [APTRA ] +09:51:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:51:16 [ 49] [ 3] [418] +09:51:16 [ 52] [ 16] [9AEFC9D884A37E34] +09:51:16 ============================================================================ +09:51:16 + + +waiting on router queue for slot.... +09:51:16 Sending to : <0> +09:51:16 ============================================================================ +09:51:19 ============================================================================ +09:51:19 Slot Id : <272> +09:51:19 Transaction Type : RESPONSE +09:51:19 Received From : +09:51:19 ============================================================================ +09:51:19 FNo. Len. Field Value +09:51:19 ============================================================================ +09:51:19 [ 1] [ 4] [0210] +09:51:19 [ 2] [ 16] [6213541000116098] +09:51:19 [ 3] [ 6] [011000] +09:51:19 [ 4] [ 12] [000100000000] +09:51:19 [ 7] [ 10] [0320095904] +09:51:19 [ 11] [ 6] [021148] +09:51:19 [ 12] [ 6] [095904] +09:51:19 [ 13] [ 4] [0320] +09:51:19 [ 15] [ 4] [0320] +09:51:19 [ 18] [ 4] [6011] +09:51:19 [ 32] [ 6] [220699] +09:51:19 [ 35] [ 32] [6213541000116098=491212011609091] +09:51:19 [ 37] [ 12] [507900263103] +09:51:19 [ 38] [ 6] [931083] +09:51:19 [ 39] [ 2] [00] +09:51:19 [ 41] [ 8] [01001400] +09:51:19 [ 49] [ 3] [418] +09:51:19 [ 54] [ 40] [1001418C0076249219551002418C007624921955] +09:51:19 ============================================================================ +09:51:19 Sending to : +09:51:19 ============================================================================ +09:51:19 + + +waiting on router queue for slot.... +09:51:20 ============================================================================ +09:51:20 Slot Id : <272> +09:51:20 Transaction Type : RESPONSE +09:51:20 Received From : +09:51:20 ============================================================================ +09:51:20 FNo. Len. Field Value +09:51:20 ============================================================================ +09:51:20 [ 1] [ 4] [0210] +09:51:20 [ 2] [ 16] [6213541000116098] +09:51:20 [ 3] [ 6] [011000] +09:51:20 [ 4] [ 12] [000100000000] +09:51:20 [ 7] [ 10] [0320095904] +09:51:20 [ 11] [ 6] [021148] +09:51:20 [ 12] [ 6] [095904] +09:51:20 [ 13] [ 4] [0320] +09:51:20 [ 15] [ 4] [0320] +09:51:20 [ 18] [ 4] [6011] +09:51:20 [ 32] [ 6] [220699] +09:51:20 [ 35] [ 32] [6213541000116098=491212011609091] +09:51:20 [ 37] [ 12] [507900263103] +09:51:20 [ 38] [ 6] [931083] +09:51:20 [ 39] [ 2] [00] +09:51:20 [ 41] [ 8] [01001400] +09:51:20 [ 49] [ 3] [418] +09:51:20 [ 54] [ 40] [1001418C0076249219551002418C007624921955] +09:51:20 ============================================================================ +09:51:20 Calculate Source COMM Id = 1 +09:51:20 ============================================================================ +09:51:20 + + +waiting on router queue for slot.... +09:51:21 ============================================================================ +09:51:21 Slot Id : <282> +09:51:21 Transaction Type : REQUEST +09:51:21 Received From : +09:51:21 ============================================================================ +09:51:21 FNo. Len. Field Value +09:51:21 ============================================================================ +09:51:21 [ 1] [ 4] [0800] +09:51:21 [ 7] [ 10] [0320024912] +09:51:21 [ 11] [ 6] [083882] +09:51:21 [ 37] [ 12] [57909083882] +09:51:21 [ 70] [ 3] [301] +09:51:21 ============================================================================ +09:51:21 + + +waiting on router queue for slot.... +09:51:21 Sending to : +09:51:21 ============================================================================ +09:51:21 ============================================================================ +09:51:21 Slot Id : <282> +09:51:21 Transaction Type : RESPONSE +09:51:21 Received From : +09:51:21 ============================================================================ +09:51:21 FNo. Len. Field Value +09:51:21 ============================================================================ +09:51:21 [ 1] [ 4] [0810] +09:51:21 [ 7] [ 10] [0320024912] +09:51:21 [ 11] [ 6] [083882] +09:51:21 [ 37] [ 12] [579090838820] +09:51:21 [ 39] [ 2] [00] +09:51:21 [ 70] [ 3] [810] +09:51:21 ============================================================================ +09:51:21 Calculate Source COMM Id = 4 +09:51:21 ============================================================================ +09:51:21 + + +waiting on router queue for slot.... +09:51:24 ============================================================================ +09:51:24 Slot Id : <252> +09:51:24 Transaction Type : REQUEST +09:51:24 Received From : +09:51:24 ============================================================================ +09:51:24 FNo. Len. Field Value +09:51:24 ============================================================================ +09:51:24 [ 1] [ 4] [0800] +09:51:24 [ 7] [ 10] [0320025032] +09:51:24 [ 11] [ 6] [155718] +09:51:24 [ 70] [ 3] [301] +09:51:24 ============================================================================ +09:51:24 + + +waiting on router queue for slot.... +09:51:24 Sending to : +09:51:24 ============================================================================ +09:51:24 ============================================================================ +09:51:24 Slot Id : <252> +09:51:24 Transaction Type : RESPONSE +09:51:24 Received From : +09:51:24 ============================================================================ +09:51:24 FNo. Len. Field Value +09:51:24 ============================================================================ +09:51:24 [ 1] [ 4] [0810] +09:51:24 [ 7] [ 10] [0320025032] +09:51:24 [ 11] [ 6] [155718] +09:51:24 [ 39] [ 2] [00] +09:51:24 [ 70] [ 3] [301] +09:51:24 ============================================================================ +09:51:24 Calculate Source COMM Id = 2 +09:51:24 ============================================================================ +09:51:24 + + +waiting on router queue for slot.... +09:51:35 ============================================================================ +09:51:35 Slot Id : <241> +09:51:35 Transaction Type : REQUEST +09:51:35 Received From : +09:51:35 ============================================================================ +09:51:35 FNo. Len. Field Value +09:51:35 ============================================================================ +09:51:35 [ 1] [ 4] [0800] +09:51:35 [ 7] [ 10] [0320025043] +09:51:35 [ 11] [ 6] [155719] +09:51:35 [ 70] [ 3] [301] +09:51:35 ============================================================================ +09:51:35 + + +waiting on router queue for slot.... +09:51:35 Sending to : +09:51:35 ============================================================================ +09:51:35 ============================================================================ +09:51:35 Slot Id : <241> +09:51:35 Transaction Type : RESPONSE +09:51:35 Received From : +09:51:35 ============================================================================ +09:51:35 FNo. Len. Field Value +09:51:35 ============================================================================ +09:51:35 [ 1] [ 4] [0810] +09:51:35 [ 7] [ 10] [0320025043] +09:51:35 [ 11] [ 6] [155719] +09:51:35 [ 39] [ 2] [00] +09:51:35 [ 70] [ 3] [301] +09:51:35 ============================================================================ +09:51:35 Calculate Source COMM Id = 2 +09:51:35 ============================================================================ +09:51:35 + + +waiting on router queue for slot.... +09:51:35 ============================================================================ +09:51:35 Slot Id : <280> +09:51:35 Transaction Type : REQUEST +09:51:35 Received From : +09:51:35 ============================================================================ +09:51:35 FNo. Len. Field Value +09:51:35 ============================================================================ +09:51:35 [ 1] [ 4] [0200] +09:51:35 [ 2] [ 16] [6213541000335045] +09:51:35 [ 3] [ 6] [301000] +09:51:35 [ 7] [ 10] [0320025043] +09:51:35 [ 11] [ 6] [267797] +09:51:35 [ 12] [ 6] [095043] +09:51:35 [ 13] [ 4] [0320] +09:51:35 [ 14] [ 4] [4912] +09:51:35 [ 15] [ 4] [0320] +09:51:35 [ 18] [ 4] [6011] +09:51:35 [ 19] [ 3] [418] +09:51:35 [ 22] [ 3] [021] +09:51:35 [ 25] [ 2] [01] +09:51:35 [ 32] [ 6] [180893] +09:51:35 [ 35] [ 32] [6213541000335045=491212013504063] +09:51:35 [ 37] [ 12] [507902267797] +09:51:35 [ 41] [ 8] [0222XKPV] +09:51:35 [ 42] [ 15] [999999 ] +09:51:35 [ 43] [ 40] [ATM XIENGKHUANG PHONSAVAN MARKET LOCATE,] +09:51:35 [ 49] [ 3] [418] +09:51:35 [ 52] [ 16] [4AFDCF2BB008436A] +09:51:35 ============================================================================ +09:51:35 + + +waiting on router queue for slot.... +09:51:35 Sending to : +09:51:35 ============================================================================ +09:51:35 Sending to : +09:51:35 ============================================================================ +09:51:36 ============================================================================ +09:51:36 Slot Id : <280> +09:51:36 Transaction Type : REQUEST +09:51:36 Received From : +09:51:36 ============================================================================ +09:51:36 FNo. Len. Field Value +09:51:36 ============================================================================ +09:51:36 [ 1] [ 4] [0200] +09:51:36 [ 2] [ 16] [6213541000335045] +09:51:36 [ 3] [ 6] [301000] +09:51:36 [ 7] [ 10] [0320025043] +09:51:36 [ 11] [ 6] [267797] +09:51:36 [ 12] [ 6] [095043] +09:51:36 [ 13] [ 4] [0320] +09:51:36 [ 14] [ 4] [4912] +09:51:36 [ 15] [ 4] [0320] +09:51:36 [ 18] [ 4] [6011] +09:51:36 [ 19] [ 3] [418] +09:51:36 [ 22] [ 3] [021] +09:51:36 [ 25] [ 2] [01] +09:51:36 [ 32] [ 6] [180893] +09:51:36 [ 35] [ 32] [6213541000335045=491212013504063] +09:51:36 [ 37] [ 12] [507902267797] +09:51:36 [ 41] [ 8] [0222XKPV] +09:51:36 [ 42] [ 15] [999999 ] +09:51:36 [ 43] [ 40] [ATM XIENGKHUANG PHONSAVAN MARKET LOCATE,] +09:51:36 [ 49] [ 3] [418] +09:51:36 [ 52] [ 16] [4AFDCF2BB008436A] +09:51:36 ============================================================================ +09:51:36 + + +waiting on router queue for slot.... +09:51:36 Sending to : +09:51:36 ============================================================================ +09:51:36 ============================================================================ +09:51:36 Slot Id : <280> +09:51:36 Transaction Type : REQUEST +09:51:36 Received From : +09:51:36 ============================================================================ +09:51:36 FNo. Len. Field Value +09:51:36 ============================================================================ +09:51:36 [ 1] [ 4] [0200] +09:51:36 [ 2] [ 16] [6213541000335045] +09:51:36 [ 3] [ 6] [301000] +09:51:36 [ 7] [ 10] [0320025043] +09:51:36 [ 11] [ 6] [267797] +09:51:36 [ 12] [ 6] [095043] +09:51:36 [ 13] [ 4] [0320] +09:51:36 [ 14] [ 4] [4912] +09:51:36 [ 15] [ 4] [0320] +09:51:36 [ 18] [ 4] [6011] +09:51:36 [ 19] [ 3] [418] +09:51:36 [ 22] [ 3] [021] +09:51:36 [ 25] [ 2] [01] +09:51:36 [ 32] [ 6] [180893] +09:51:36 [ 35] [ 32] [6213541000335045=491212013504063] +09:51:36 [ 37] [ 12] [507902267797] +09:51:36 [ 41] [ 8] [0222XKPV] +09:51:36 [ 42] [ 15] [999999 ] +09:51:36 [ 43] [ 40] [ATM XIENGKHUANG PHONSAVAN MARKET LOCATE,] +09:51:36 [ 49] [ 3] [418] +09:51:36 [ 52] [ 16] [E3B2B1BC49D10050] +09:51:36 ============================================================================ +09:51:36 + + +waiting on router queue for slot.... +09:51:36 Sending to : <0> +09:51:36 ============================================================================ +09:51:37 ============================================================================ +09:51:37 Slot Id : <245> +09:51:37 Transaction Type : REQUEST +09:51:37 Received From : +09:51:37 ============================================================================ +09:51:37 FNo. Len. Field Value +09:51:37 ============================================================================ +09:51:37 [ 1] [ 4] [0200] +09:51:37 [ 2] [ 16] [6688990100941507] +09:51:37 [ 3] [ 6] [010000] +09:51:37 [ 4] [ 12] [000100000000] +09:51:37 [ 7] [ 10] [0320095133] +09:51:37 [ 11] [ 6] [704955] +09:51:37 [ 12] [ 6] [095133] +09:51:37 [ 13] [ 4] [0320] +09:51:37 [ 15] [ 4] [0320] +09:51:37 [ 18] [ 4] [6011] +09:51:37 [ 22] [ 3] [900] +09:51:37 [ 25] [ 2] [02] +09:51:37 [ 28] [ 9] [D00002000] +09:51:37 [ 32] [ 6] [621354] +09:51:37 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:51:37 [ 37] [ 12] [507904719453] +09:51:37 [ 41] [ 8] [18001000] +09:51:37 [ 42] [ 15] [NATIVE ] +09:51:37 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:51:37 [ 49] [ 3] [418] +09:51:37 [ 52] [ 16] [3B496FEB663F5696] +09:51:37 ============================================================================ +09:51:37 + + +waiting on router queue for slot.... +09:51:37 Sending to : +09:51:37 ============================================================================ +09:51:37 Sending to : +09:51:37 ============================================================================ +09:51:38 ============================================================================ +09:51:38 Slot Id : <245> +09:51:38 Transaction Type : REQUEST +09:51:38 Received From : +09:51:38 ============================================================================ +09:51:38 FNo. Len. Field Value +09:51:38 ============================================================================ +09:51:38 [ 1] [ 4] [0200] +09:51:38 [ 2] [ 16] [6688990100941507] +09:51:38 [ 3] [ 6] [010000] +09:51:38 [ 4] [ 12] [000100000000] +09:51:38 [ 7] [ 10] [0320095133] +09:51:38 [ 11] [ 6] [704955] +09:51:38 [ 12] [ 6] [095133] +09:51:38 [ 13] [ 4] [0320] +09:51:38 [ 15] [ 4] [0320] +09:51:38 [ 18] [ 4] [6011] +09:51:38 [ 22] [ 3] [900] +09:51:38 [ 25] [ 2] [02] +09:51:38 [ 28] [ 9] [D00002000] +09:51:38 [ 32] [ 6] [621354] +09:51:38 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:51:38 [ 37] [ 12] [507904719453] +09:51:38 [ 41] [ 8] [18001000] +09:51:38 [ 42] [ 15] [NATIVE ] +09:51:38 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:51:38 [ 49] [ 3] [418] +09:51:38 [ 52] [ 16] [3B496FEB663F5696] +09:51:38 ============================================================================ +09:51:38 + + +waiting on router queue for slot.... +09:51:38 Sending to : +09:51:38 ============================================================================ +09:51:38 ============================================================================ +09:51:38 Slot Id : <245> +09:51:38 Transaction Type : REQUEST +09:51:38 Received From : +09:51:38 ============================================================================ +09:51:38 FNo. Len. Field Value +09:51:38 ============================================================================ +09:51:38 [ 1] [ 4] [0200] +09:51:38 [ 2] [ 16] [6688990100941507] +09:51:38 [ 3] [ 6] [010000] +09:51:38 [ 4] [ 12] [000100000000] +09:51:38 [ 7] [ 10] [0320095133] +09:51:38 [ 11] [ 6] [704955] +09:51:38 [ 12] [ 6] [095133] +09:51:38 [ 13] [ 4] [0320] +09:51:38 [ 15] [ 4] [0320] +09:51:38 [ 18] [ 4] [6011] +09:51:38 [ 22] [ 3] [900] +09:51:38 [ 25] [ 2] [02] +09:51:38 [ 28] [ 9] [D00002000] +09:51:38 [ 32] [ 6] [621354] +09:51:38 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:51:38 [ 37] [ 12] [507904719453] +09:51:38 [ 41] [ 8] [18001000] +09:51:38 [ 42] [ 15] [NATIVE ] +09:51:38 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:51:38 [ 49] [ 3] [418] +09:51:38 [ 52] [ 16] [708A5172D2D707EC] +09:51:38 ============================================================================ +09:51:38 + + +waiting on router queue for slot.... +09:51:38 Sending to : <4> +09:51:38 ============================================================================ +09:51:38 ============================================================================ +09:51:38 Slot Id : <280> +09:51:38 Transaction Type : RESPONSE +09:51:38 Received From : +09:51:38 ============================================================================ +09:51:38 FNo. Len. Field Value +09:51:38 ============================================================================ +09:51:38 [ 1] [ 4] [0210] +09:51:38 [ 2] [ 16] [6213541000335045] +09:51:38 [ 3] [ 6] [301000] +09:51:38 [ 4] [ 12] [000000000000] +09:51:38 [ 7] [ 10] [0320025043] +09:51:38 [ 11] [ 6] [267797] +09:51:38 [ 12] [ 6] [095043] +09:51:38 [ 13] [ 4] [0320] +09:51:38 [ 15] [ 4] [0320] +09:51:38 [ 18] [ 4] [6011] +09:51:38 [ 19] [ 3] [418] +09:51:38 [ 32] [ 6] [180893] +09:51:38 [ 35] [ 32] [6213541000335045=491212013504063] +09:51:38 [ 37] [ 12] [507902267797] +09:51:38 [ 38] [ 6] [171276] +09:51:38 [ 39] [ 2] [00] +09:51:38 [ 41] [ 8] [0222XKPV] +09:51:38 [ 49] [ 3] [418] +09:51:38 [ 54] [ 40] [1001418C0040475650001002418C004047565000] +09:51:38 ============================================================================ +09:51:38 Sending to : +09:51:38 ============================================================================ +09:51:38 + + +waiting on router queue for slot.... +09:51:39 ============================================================================ +09:51:39 Slot Id : <245> +09:51:39 Transaction Type : RESPONSE +09:51:39 Received From : +09:51:39 ============================================================================ +09:51:39 FNo. Len. Field Value +09:51:39 ============================================================================ +09:51:39 [ 1] [ 4] [0210] +09:51:39 [ 2] [ 16] [6688990100941507] +09:51:39 [ 3] [ 6] [010000] +09:51:39 [ 4] [ 12] [000100000000] +09:51:39 [ 11] [ 6] [704955] +09:51:39 [ 12] [ 6] [095133] +09:51:39 [ 15] [ 4] [0320] +09:51:39 [ 18] [ 4] [6011] +09:51:39 [ 32] [ 6] [621354] +09:51:39 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:51:39 [ 37] [ 12] [507904719453] +09:51:39 [ 38] [ 6] [380345] +09:51:39 [ 39] [ 2] [00] +09:51:39 [ 41] [ 8] [18001000] +09:51:39 [ 49] [ 3] [418] +09:51:39 [ 54] [ 20] [0002418C000070907741] +09:51:39 ============================================================================ +09:51:39 Sending to : +09:51:39 ============================================================================ +09:51:39 + + +waiting on router queue for slot.... +09:51:39 ============================================================================ +09:51:39 Slot Id : <276> +09:51:39 Transaction Type : REQUEST +09:51:39 Received From : +09:51:39 ============================================================================ +09:51:39 FNo. Len. Field Value +09:51:39 ============================================================================ +09:51:39 [ 1] [ 4] [0800] +09:51:39 [ 7] [ 10] [0320170328] +09:51:39 [ 11] [ 6] [100328] +09:51:39 [ 37] [ 12] [57910100328] +09:51:39 [ 70] [ 3] [301] +09:51:39 ============================================================================ +09:51:39 + + +waiting on router queue for slot.... +09:51:39 Sending to : +09:51:39 ============================================================================ +09:51:39 ============================================================================ +09:51:39 Slot Id : <276> +09:51:39 Transaction Type : RESPONSE +09:51:39 Received From : +09:51:39 ============================================================================ +09:51:39 FNo. Len. Field Value +09:51:39 ============================================================================ +09:51:39 [ 1] [ 4] [0810] +09:51:39 [ 7] [ 10] [0320170328] +09:51:39 [ 11] [ 6] [100328] +09:51:39 [ 37] [ 12] [579101003280] +09:51:39 [ 39] [ 2] [00] +09:51:39 [ 70] [ 3] [810] +09:51:39 ============================================================================ +09:51:39 Calculate Source COMM Id = 6 +09:51:39 ============================================================================ +09:51:39 + + +waiting on router queue for slot.... +09:51:40 ============================================================================ +09:51:40 Slot Id : <280> +09:51:40 Transaction Type : RESPONSE +09:51:40 Received From : +09:51:40 ============================================================================ +09:51:40 FNo. Len. Field Value +09:51:40 ============================================================================ +09:51:40 [ 1] [ 4] [0210] +09:51:40 [ 2] [ 16] [6213541000335045] +09:51:40 [ 3] [ 6] [301000] +09:51:40 [ 4] [ 12] [000000000000] +09:51:40 [ 7] [ 10] [0320025043] +09:51:40 [ 11] [ 6] [267797] +09:51:40 [ 12] [ 6] [095043] +09:51:40 [ 13] [ 4] [0320] +09:51:40 [ 15] [ 4] [0320] +09:51:40 [ 18] [ 4] [6011] +09:51:40 [ 19] [ 3] [418] +09:51:40 [ 32] [ 6] [180893] +09:51:40 [ 35] [ 32] [6213541000335045=491212013504063] +09:51:40 [ 37] [ 12] [507902267797] +09:51:40 [ 38] [ 6] [171276] +09:51:40 [ 39] [ 2] [00] +09:51:40 [ 41] [ 8] [0222XKPV] +09:51:40 [ 49] [ 3] [418] +09:51:40 [ 54] [ 40] [1001418C0040475650001002418C004047565000] +09:51:40 ============================================================================ +09:51:40 Calculate Source COMM Id = 2 +09:51:40 ============================================================================ +09:51:40 + + +waiting on router queue for slot.... +09:51:41 ============================================================================ +09:51:41 Slot Id : <219> +09:51:41 Transaction Type : REQUEST +09:51:41 Received From : +09:51:41 ============================================================================ +09:51:41 FNo. Len. Field Value +09:51:41 ============================================================================ +09:51:41 [ 1] [ 4] [0800] +09:51:41 [ 2] [ 5] [02531] +09:51:41 [ 3] [ 6] [579098] +09:51:41 [ 7] [ 10] [0320025141] +09:51:41 [ 11] [ 6] [806984] +09:51:41 [ 15] [ 10] [0320025141] +09:51:41 [ 37] [ 11] [57909806984] +09:51:41 [ 70] [ 3] [001] +09:51:41 ============================================================================ +09:51:41 + + +waiting on router queue for slot.... +09:51:41 ============================================================================ +09:51:41 Slot Id : <219> +09:51:41 Transaction Type : RESPONSE +09:51:41 Received From : +09:51:41 ============================================================================ +09:51:41 FNo. Len. Field Value +09:51:41 ============================================================================ +09:51:41 [ 1] [ 4] [0810] +09:51:41 [ 7] [ 10] [0320025141] +09:51:41 [ 11] [ 6] [806984] +09:51:41 [ 15] [ 4] [0320] +09:51:41 [ 37] [ 12] [57909806984] +09:51:41 [ 39] [ 2] [00] +09:51:41 [ 70] [ 3] [001] +09:51:41 ============================================================================ +09:51:41 Sending to : +09:51:41 ============================================================================ +09:51:41 + + +waiting on router queue for slot.... +09:51:41 ============================================================================ +09:51:41 Slot Id : <245> +09:51:41 Transaction Type : RESPONSE +09:51:41 Received From : +09:51:41 ============================================================================ +09:51:41 FNo. Len. Field Value +09:51:41 ============================================================================ +09:51:41 [ 1] [ 4] [0210] +09:51:41 [ 2] [ 16] [6688990100941507] +09:51:41 [ 3] [ 6] [010000] +09:51:41 [ 4] [ 12] [000100000000] +09:51:41 [ 11] [ 6] [704955] +09:51:41 [ 12] [ 6] [095133] +09:51:41 [ 15] [ 4] [0320] +09:51:41 [ 18] [ 4] [6011] +09:51:41 [ 32] [ 6] [621354] +09:51:41 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:51:41 [ 37] [ 12] [507904719453] +09:51:41 [ 38] [ 6] [380345] +09:51:41 [ 39] [ 2] [00] +09:51:41 [ 41] [ 8] [18001000] +09:51:41 [ 49] [ 3] [418] +09:51:41 [ 54] [ 20] [0002418C000070907741] +09:51:41 ============================================================================ +09:51:41 Calculate Source COMM Id = 0 +09:51:41 ============================================================================ +09:51:41 + + +waiting on router queue for slot.... +09:51:51 ============================================================================ +09:51:51 Slot Id : <258> +09:51:51 Transaction Type : REQUEST +09:51:51 Received From : +09:51:51 ============================================================================ +09:51:51 FNo. Len. Field Value +09:51:51 ============================================================================ +09:51:51 [ 1] [ 4] [0800] +09:51:51 [ 7] [ 10] [0320025059] +09:51:51 [ 11] [ 6] [155720] +09:51:51 [ 70] [ 3] [301] +09:51:51 ============================================================================ +09:51:51 + + +waiting on router queue for slot.... +09:51:51 Sending to : +09:51:51 ============================================================================ +09:51:51 ============================================================================ +09:51:51 Slot Id : <258> +09:51:51 Transaction Type : RESPONSE +09:51:51 Received From : +09:51:51 ============================================================================ +09:51:51 FNo. Len. Field Value +09:51:51 ============================================================================ +09:51:51 [ 1] [ 4] [0810] +09:51:51 [ 7] [ 10] [0320025059] +09:51:51 [ 11] [ 6] [155720] +09:51:51 [ 39] [ 2] [00] +09:51:51 [ 70] [ 3] [301] +09:51:51 ============================================================================ +09:51:51 Calculate Source COMM Id = 2 +09:51:51 ============================================================================ +09:51:51 + + +waiting on router queue for slot.... +09:51:58 ============================================================================ +09:51:58 Slot Id : <284> +09:51:58 Transaction Type : REQUEST +09:51:58 Received From : +09:51:58 ============================================================================ +09:51:58 FNo. Len. Field Value +09:51:58 ============================================================================ +09:51:58 [ 1] [ 4] [0200] +09:51:58 [ 2] [ 16] [6213545000732168] +09:51:58 [ 3] [ 6] [010000] +09:51:58 [ 4] [ 12] [000100000000] +09:51:58 [ 7] [ 10] [0320025106] +09:51:58 [ 11] [ 6] [267800] +09:51:58 [ 12] [ 6] [095106] +09:51:58 [ 13] [ 4] [0320] +09:51:58 [ 14] [ 4] [4912] +09:51:58 [ 15] [ 4] [0320] +09:51:58 [ 18] [ 4] [6011] +09:51:58 [ 19] [ 3] [418] +09:51:58 [ 22] [ 3] [021] +09:51:58 [ 25] [ 2] [01] +09:51:58 [ 28] [ 9] [D00002000] +09:51:58 [ 32] [ 6] [180893] +09:51:58 [ 35] [ 32] [6213545000732168=491212013216672] +09:51:58 [ 37] [ 12] [507902267800] +09:51:58 [ 41] [ 8] [0366SKTT] +09:51:58 [ 42] [ 15] [999999 ] +09:51:58 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:51:58 [ 49] [ 3] [418] +09:51:58 [ 52] [ 16] [9841E6A05EC67E8B] +09:51:58 ============================================================================ +09:51:58 + + +waiting on router queue for slot.... +09:51:58 Sending to : +09:51:58 ============================================================================ +09:51:58 Sending to : +09:51:58 ============================================================================ +09:51:59 ============================================================================ +09:51:59 Slot Id : <284> +09:51:59 Transaction Type : REQUEST +09:51:59 Received From : +09:51:59 ============================================================================ +09:51:59 FNo. Len. Field Value +09:51:59 ============================================================================ +09:51:59 [ 1] [ 4] [0200] +09:51:59 [ 2] [ 16] [6213545000732168] +09:51:59 [ 3] [ 6] [010000] +09:51:59 [ 4] [ 12] [000100000000] +09:51:59 [ 7] [ 10] [0320025106] +09:51:59 [ 11] [ 6] [267800] +09:51:59 [ 12] [ 6] [095106] +09:51:59 [ 13] [ 4] [0320] +09:51:59 [ 14] [ 4] [4912] +09:51:59 [ 15] [ 4] [0320] +09:51:59 [ 18] [ 4] [6011] +09:51:59 [ 19] [ 3] [418] +09:51:59 [ 22] [ 3] [021] +09:51:59 [ 25] [ 2] [01] +09:51:59 [ 28] [ 9] [D00002000] +09:51:59 [ 32] [ 6] [180893] +09:51:59 [ 35] [ 32] [6213545000732168=491212013216672] +09:51:59 [ 37] [ 12] [507902267800] +09:51:59 [ 41] [ 8] [0366SKTT] +09:51:59 [ 42] [ 15] [999999 ] +09:51:59 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:51:59 [ 49] [ 3] [418] +09:51:59 [ 52] [ 16] [9841E6A05EC67E8B] +09:51:59 ============================================================================ +09:51:59 + + +waiting on router queue for slot.... +09:51:59 Sending to : +09:51:59 ============================================================================ +09:51:59 ============================================================================ +09:51:59 Slot Id : <284> +09:51:59 Transaction Type : REQUEST +09:51:59 Received From : +09:51:59 ============================================================================ +09:51:59 FNo. Len. Field Value +09:51:59 ============================================================================ +09:51:59 [ 1] [ 4] [0200] +09:51:59 [ 2] [ 16] [6213545000732168] +09:51:59 [ 3] [ 6] [010000] +09:51:59 [ 4] [ 12] [000100000000] +09:51:59 [ 7] [ 10] [0320025106] +09:51:59 [ 11] [ 6] [267800] +09:51:59 [ 12] [ 6] [095106] +09:51:59 [ 13] [ 4] [0320] +09:51:59 [ 14] [ 4] [4912] +09:51:59 [ 15] [ 4] [0320] +09:51:59 [ 18] [ 4] [6011] +09:51:59 [ 19] [ 3] [418] +09:51:59 [ 22] [ 3] [021] +09:51:59 [ 25] [ 2] [01] +09:51:59 [ 28] [ 9] [D00002000] +09:51:59 [ 32] [ 6] [180893] +09:51:59 [ 35] [ 32] [6213545000732168=491212013216672] +09:51:59 [ 37] [ 12] [507902267800] +09:51:59 [ 41] [ 8] [0366SKTT] +09:51:59 [ 42] [ 15] [999999 ] +09:51:59 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +09:51:59 [ 49] [ 3] [418] +09:51:59 [ 52] [ 16] [98919F5A26ED064E] +09:51:59 ============================================================================ +09:51:59 + + +waiting on router queue for slot.... +09:51:59 Sending to : <0> +09:51:59 ============================================================================ +09:51:59 ============================================================================ +09:51:59 Slot Id : <284> +09:51:59 Transaction Type : RESPONSE +09:51:59 Received From : +09:51:59 ============================================================================ +09:51:59 FNo. Len. Field Value +09:51:59 ============================================================================ +09:51:59 [ 1] [ 4] [0210] +09:51:59 [ 2] [ 16] [6213545000732168] +09:51:59 [ 3] [ 6] [010000] +09:51:59 [ 4] [ 12] [000100000000] +09:51:59 [ 7] [ 10] [0320025106] +09:51:59 [ 11] [ 6] [267800] +09:51:59 [ 12] [ 6] [095106] +09:51:59 [ 13] [ 4] [0320] +09:51:59 [ 15] [ 4] [0320] +09:51:59 [ 18] [ 4] [6011] +09:51:59 [ 19] [ 3] [418] +09:51:59 [ 32] [ 6] [180893] +09:51:59 [ 35] [ 32] [6213545000732168=491212013216672] +09:51:59 [ 37] [ 12] [507902267800] +09:51:59 [ 38] [ 6] [309908] +09:51:59 [ 39] [ 2] [00] +09:51:59 [ 41] [ 8] [0366SKTT] +09:51:59 [ 49] [ 3] [418] +09:51:59 [ 54] [ 40] [0001418C0004845559760002418C000484555976] +09:51:59 ============================================================================ +09:51:59 Sending to : +09:51:59 ============================================================================ +09:51:59 + + +waiting on router queue for slot.... +09:52:01 ============================================================================ +09:52:01 Slot Id : <284> +09:52:01 Transaction Type : RESPONSE +09:52:01 Received From : +09:52:01 ============================================================================ +09:52:01 FNo. Len. Field Value +09:52:01 ============================================================================ +09:52:01 [ 1] [ 4] [0210] +09:52:01 [ 2] [ 16] [6213545000732168] +09:52:01 [ 3] [ 6] [010000] +09:52:01 [ 4] [ 12] [000100000000] +09:52:01 [ 7] [ 10] [0320025106] +09:52:01 [ 11] [ 6] [267800] +09:52:01 [ 12] [ 6] [095106] +09:52:01 [ 13] [ 4] [0320] +09:52:01 [ 15] [ 4] [0320] +09:52:01 [ 18] [ 4] [6011] +09:52:01 [ 19] [ 3] [418] +09:52:01 [ 32] [ 6] [180893] +09:52:01 [ 35] [ 32] [6213545000732168=491212013216672] +09:52:01 [ 37] [ 12] [507902267800] +09:52:01 [ 38] [ 6] [309908] +09:52:01 [ 39] [ 2] [00] +09:52:01 [ 41] [ 8] [0366SKTT] +09:52:01 [ 49] [ 3] [418] +09:52:01 [ 54] [ 40] [0001418C0004845559760002418C000484555976] +09:52:01 ============================================================================ +09:52:01 Calculate Source COMM Id = 2 +09:52:01 ============================================================================ +09:52:01 + + +waiting on router queue for slot.... +09:52:02 ============================================================================ +09:52:02 Slot Id : <224> +09:52:02 Transaction Type : REQUEST +09:52:02 Received From : +09:52:02 ============================================================================ +09:52:02 FNo. Len. Field Value +09:52:02 ============================================================================ +09:52:02 [ 1] [ 4] [0200] +09:52:02 [ 2] [ 16] [6213544001982146] +09:52:02 [ 3] [ 6] [010000] +09:52:02 [ 4] [ 12] [000100000000] +09:52:02 [ 7] [ 10] [0320094953] +09:52:02 [ 11] [ 6] [936797] +09:52:02 [ 12] [ 6] [094953] +09:52:02 [ 13] [ 4] [0320] +09:52:02 [ 15] [ 4] [0320] +09:52:02 [ 18] [ 4] [6011] +09:52:02 [ 19] [ 3] [418] +09:52:02 [ 22] [ 3] [021] +09:52:02 [ 25] [ 2] [01] +09:52:02 [ 28] [ 9] [D00002000] +09:52:02 [ 32] [ 6] [668899] +09:52:02 [ 35] [ 32] [6213544001982146=491212018214882] +09:52:02 [ 37] [ 12] [507901856223] +09:52:02 [ 41] [ 8] [03311001] +09:52:02 [ 42] [ 15] [APT ] +09:52:02 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +09:52:02 [ 49] [ 3] [418] +09:52:02 [ 52] [ 16] [90D526B7DBD76B26] +09:52:02 ============================================================================ +09:52:02 + + +waiting on router queue for slot.... +09:52:02 Sending to : +09:52:02 ============================================================================ +09:52:02 Sending to : +09:52:02 ============================================================================ +09:52:02 ============================================================================ +09:52:02 Slot Id : <224> +09:52:02 Transaction Type : REQUEST +09:52:02 Received From : +09:52:02 ============================================================================ +09:52:02 FNo. Len. Field Value +09:52:02 ============================================================================ +09:52:02 [ 1] [ 4] [0200] +09:52:02 [ 2] [ 16] [6213544001982146] +09:52:02 [ 3] [ 6] [010000] +09:52:02 [ 4] [ 12] [000100000000] +09:52:02 [ 7] [ 10] [0320094953] +09:52:02 [ 11] [ 6] [936797] +09:52:02 [ 12] [ 6] [094953] +09:52:02 [ 13] [ 4] [0320] +09:52:02 [ 15] [ 4] [0320] +09:52:02 [ 18] [ 4] [6011] +09:52:02 [ 19] [ 3] [418] +09:52:02 [ 22] [ 3] [021] +09:52:02 [ 25] [ 2] [01] +09:52:02 [ 28] [ 9] [D00002000] +09:52:02 [ 32] [ 6] [668899] +09:52:02 [ 35] [ 32] [6213544001982146=491212018214882] +09:52:02 [ 37] [ 12] [507901856223] +09:52:02 [ 41] [ 8] [03311001] +09:52:02 [ 42] [ 15] [APT ] +09:52:02 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +09:52:02 [ 49] [ 3] [418] +09:52:02 [ 52] [ 16] [90D526B7DBD76B26] +09:52:02 ============================================================================ +09:52:02 + + +waiting on router queue for slot.... +09:52:02 Sending to : +09:52:02 ============================================================================ +09:52:02 ============================================================================ +09:52:02 Slot Id : <224> +09:52:02 Transaction Type : REQUEST +09:52:02 Received From : +09:52:02 ============================================================================ +09:52:02 FNo. Len. Field Value +09:52:02 ============================================================================ +09:52:02 [ 1] [ 4] [0200] +09:52:02 [ 2] [ 16] [6213544001982146] +09:52:02 [ 3] [ 6] [010000] +09:52:02 [ 4] [ 12] [000100000000] +09:52:02 [ 7] [ 10] [0320094953] +09:52:02 [ 11] [ 6] [936797] +09:52:02 [ 12] [ 6] [094953] +09:52:02 [ 13] [ 4] [0320] +09:52:02 [ 15] [ 4] [0320] +09:52:02 [ 18] [ 4] [6011] +09:52:02 [ 19] [ 3] [418] +09:52:02 [ 22] [ 3] [021] +09:52:02 [ 25] [ 2] [01] +09:52:02 [ 28] [ 9] [D00002000] +09:52:02 [ 32] [ 6] [668899] +09:52:02 [ 35] [ 32] [6213544001982146=491212018214882] +09:52:02 [ 37] [ 12] [507901856223] +09:52:02 [ 41] [ 8] [03311001] +09:52:02 [ 42] [ 15] [APT ] +09:52:02 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +09:52:02 [ 49] [ 3] [418] +09:52:02 [ 52] [ 16] [5C6DE684BBB39049] +09:52:02 ============================================================================ +09:52:02 + + +waiting on router queue for slot.... +09:52:02 Sending to : <0> +09:52:02 ============================================================================ +09:52:04 ============================================================================ +09:52:04 Slot Id : <224> +09:52:04 Transaction Type : RESPONSE +09:52:04 Received From : +09:52:04 ============================================================================ +09:52:04 FNo. Len. Field Value +09:52:04 ============================================================================ +09:52:04 [ 1] [ 4] [0210] +09:52:04 [ 2] [ 16] [6213544001982146] +09:52:04 [ 3] [ 6] [010000] +09:52:04 [ 4] [ 12] [000100000000] +09:52:04 [ 7] [ 10] [0320094953] +09:52:04 [ 11] [ 6] [936797] +09:52:04 [ 12] [ 6] [094953] +09:52:04 [ 13] [ 4] [0320] +09:52:04 [ 15] [ 4] [0320] +09:52:04 [ 18] [ 4] [6011] +09:52:04 [ 19] [ 3] [418] +09:52:04 [ 32] [ 6] [668899] +09:52:04 [ 35] [ 32] [6213544001982146=491212018214882] +09:52:04 [ 37] [ 12] [507901856223] +09:52:04 [ 38] [ 6] [716673] +09:52:04 [ 39] [ 2] [00] +09:52:04 [ 41] [ 8] [03311001] +09:52:04 [ 49] [ 3] [418] +09:52:04 [ 54] [ 40] [0001418C0000068129150002418C000006812915] +09:52:04 ============================================================================ +09:52:04 Sending to : +09:52:04 ============================================================================ +09:52:04 + + +waiting on router queue for slot.... +09:52:05 ============================================================================ +09:52:05 Slot Id : <224> +09:52:05 Transaction Type : RESPONSE +09:52:05 Received From : +09:52:05 ============================================================================ +09:52:05 FNo. Len. Field Value +09:52:05 ============================================================================ +09:52:05 [ 1] [ 4] [0210] +09:52:05 [ 2] [ 16] [6213544001982146] +09:52:05 [ 3] [ 6] [010000] +09:52:05 [ 4] [ 12] [000100000000] +09:52:05 [ 7] [ 10] [0320094953] +09:52:05 [ 11] [ 6] [936797] +09:52:05 [ 12] [ 6] [094953] +09:52:05 [ 13] [ 4] [0320] +09:52:05 [ 15] [ 4] [0320] +09:52:05 [ 18] [ 4] [6011] +09:52:05 [ 19] [ 3] [418] +09:52:05 [ 32] [ 6] [668899] +09:52:05 [ 35] [ 32] [6213544001982146=491212018214882] +09:52:05 [ 37] [ 12] [507901856223] +09:52:05 [ 38] [ 6] [716673] +09:52:05 [ 39] [ 2] [00] +09:52:05 [ 41] [ 8] [03311001] +09:52:05 [ 49] [ 3] [418] +09:52:05 [ 54] [ 40] [0001418C0000068129150002418C000006812915] +09:52:05 ============================================================================ +09:52:05 Calculate Source COMM Id = 4 +09:52:05 ============================================================================ +09:52:05 + + +waiting on router queue for slot.... +09:52:06 ============================================================================ +09:52:06 Slot Id : <287> +09:52:06 Transaction Type : REQUEST +09:52:06 Received From : +09:52:06 ============================================================================ +09:52:06 FNo. Len. Field Value +09:52:06 ============================================================================ +09:52:06 [ 1] [ 4] [0200] +09:52:06 [ 2] [ 16] [6213545000403844] +09:52:06 [ 3] [ 6] [010000] +09:52:06 [ 4] [ 12] [000020000000] +09:52:06 [ 7] [ 10] [0320094957] +09:52:06 [ 11] [ 6] [936801] +09:52:06 [ 12] [ 6] [094957] +09:52:06 [ 13] [ 4] [0320] +09:52:06 [ 15] [ 4] [0320] +09:52:06 [ 18] [ 4] [6011] +09:52:06 [ 19] [ 3] [418] +09:52:06 [ 22] [ 3] [021] +09:52:06 [ 25] [ 2] [01] +09:52:06 [ 28] [ 9] [D00002000] +09:52:06 [ 32] [ 6] [668899] +09:52:06 [ 35] [ 32] [6213545000403844=491212010384363] +09:52:06 [ 37] [ 12] [507900789120] +09:52:06 [ 41] [ 8] [03005002] +09:52:06 [ 42] [ 15] [APT ] +09:52:06 [ 43] [ 40] [ KEOSEUMXAY QUESTHOUSE OUD] +09:52:06 [ 49] [ 3] [418] +09:52:06 [ 52] [ 16] [F3941F6F7F037A0B] +09:52:06 ============================================================================ +09:52:06 + + +waiting on router queue for slot.... +09:52:06 Sending to : +09:52:06 ============================================================================ +09:52:06 Sending to : +09:52:06 ============================================================================ +09:52:06 ============================================================================ +09:52:06 Slot Id : <287> +09:52:06 Transaction Type : REQUEST +09:52:06 Received From : +09:52:06 ============================================================================ +09:52:06 FNo. Len. Field Value +09:52:06 ============================================================================ +09:52:06 [ 1] [ 4] [0200] +09:52:06 [ 2] [ 16] [6213545000403844] +09:52:06 [ 3] [ 6] [010000] +09:52:06 [ 4] [ 12] [000020000000] +09:52:06 [ 7] [ 10] [0320094957] +09:52:06 [ 11] [ 6] [936801] +09:52:06 [ 12] [ 6] [094957] +09:52:06 [ 13] [ 4] [0320] +09:52:06 [ 15] [ 4] [0320] +09:52:06 [ 18] [ 4] [6011] +09:52:06 [ 19] [ 3] [418] +09:52:06 [ 22] [ 3] [021] +09:52:06 [ 25] [ 2] [01] +09:52:06 [ 28] [ 9] [D00002000] +09:52:06 [ 32] [ 6] [668899] +09:52:06 [ 35] [ 32] [6213545000403844=491212010384363] +09:52:06 [ 37] [ 12] [507900789120] +09:52:06 [ 41] [ 8] [03005002] +09:52:06 [ 42] [ 15] [APT ] +09:52:06 [ 43] [ 40] [ KEOSEUMXAY QUESTHOUSE OUD] +09:52:06 [ 49] [ 3] [418] +09:52:06 [ 52] [ 16] [F3941F6F7F037A0B] +09:52:06 ============================================================================ +09:52:06 + + +waiting on router queue for slot.... +09:52:06 Sending to : +09:52:06 ============================================================================ +09:52:06 ============================================================================ +09:52:06 Slot Id : <287> +09:52:06 Transaction Type : REQUEST +09:52:06 Received From : +09:52:06 ============================================================================ +09:52:06 FNo. Len. Field Value +09:52:06 ============================================================================ +09:52:06 [ 1] [ 4] [0200] +09:52:06 [ 2] [ 16] [6213545000403844] +09:52:06 [ 3] [ 6] [010000] +09:52:06 [ 4] [ 12] [000020000000] +09:52:06 [ 7] [ 10] [0320094957] +09:52:06 [ 11] [ 6] [936801] +09:52:06 [ 12] [ 6] [094957] +09:52:06 [ 13] [ 4] [0320] +09:52:06 [ 15] [ 4] [0320] +09:52:06 [ 18] [ 4] [6011] +09:52:06 [ 19] [ 3] [418] +09:52:06 [ 22] [ 3] [021] +09:52:06 [ 25] [ 2] [01] +09:52:06 [ 28] [ 9] [D00002000] +09:52:06 [ 32] [ 6] [668899] +09:52:06 [ 35] [ 32] [6213545000403844=491212010384363] +09:52:06 [ 37] [ 12] [507900789120] +09:52:06 [ 41] [ 8] [03005002] +09:52:06 [ 42] [ 15] [APT ] +09:52:06 [ 43] [ 40] [ KEOSEUMXAY QUESTHOUSE OUD] +09:52:06 [ 49] [ 3] [418] +09:52:06 [ 52] [ 16] [5C78050AD64B2C9D] +09:52:06 ============================================================================ +09:52:06 + + +waiting on router queue for slot.... +09:52:06 Sending to : <0> +09:52:06 ============================================================================ +09:52:06 ============================================================================ +09:52:06 Slot Id : <290> +09:52:06 Transaction Type : REQUEST +09:52:06 Received From : +09:52:06 ============================================================================ +09:52:06 FNo. Len. Field Value +09:52:06 ============================================================================ +09:52:06 [ 1] [ 4] [0200] +09:52:06 [ 2] [ 16] [6688990600439309] +09:52:06 [ 3] [ 6] [010000] +09:52:06 [ 4] [ 12] [000100000000] +09:52:06 [ 7] [ 10] [0320095203] +09:52:06 [ 11] [ 6] [705101] +09:52:06 [ 12] [ 6] [095203] +09:52:06 [ 13] [ 4] [0320] +09:52:06 [ 15] [ 4] [0320] +09:52:06 [ 18] [ 4] [6011] +09:52:06 [ 22] [ 3] [900] +09:52:06 [ 25] [ 2] [02] +09:52:06 [ 28] [ 9] [D00002000] +09:52:06 [ 32] [ 6] [621354] +09:52:06 [ 35] [ 37] [6688990600439309=40110061930974600000] +09:52:06 [ 37] [ 12] [507903928205] +09:52:06 [ 41] [ 8] [01010800] +09:52:06 [ 42] [ 15] [NATIVE ] +09:52:06 [ 43] [ 40] [Mahosod Hospital Sisattanak LAO] +09:52:06 [ 49] [ 3] [418] +09:52:06 [ 52] [ 16] [458640FB1EB357FC] +09:52:06 ============================================================================ +09:52:06 + + +waiting on router queue for slot.... +09:52:06 Sending to : +09:52:06 ============================================================================ +09:52:06 Sending to : +09:52:06 ============================================================================ +09:52:07 ============================================================================ +09:52:07 Slot Id : <287> +09:52:07 Transaction Type : RESPONSE +09:52:07 Received From : +09:52:07 ============================================================================ +09:52:07 FNo. Len. Field Value +09:52:07 ============================================================================ +09:52:07 [ 1] [ 4] [0210] +09:52:07 [ 2] [ 16] [6213545000403844] +09:52:07 [ 3] [ 6] [010000] +09:52:07 [ 4] [ 12] [000020000000] +09:52:07 [ 7] [ 10] [0320094957] +09:52:07 [ 11] [ 6] [936801] +09:52:07 [ 12] [ 6] [094957] +09:52:07 [ 13] [ 4] [0320] +09:52:07 [ 15] [ 4] [0320] +09:52:07 [ 18] [ 4] [6011] +09:52:07 [ 19] [ 3] [418] +09:52:07 [ 32] [ 6] [668899] +09:52:07 [ 35] [ 32] [6213545000403844=491212010384363] +09:52:07 [ 37] [ 12] [507900789120] +09:52:07 [ 38] [ 6] [465102] +09:52:07 [ 39] [ 2] [00] +09:52:07 [ 41] [ 8] [03005002] +09:52:07 [ 49] [ 3] [418] +09:52:07 [ 54] [ 40] [0001418C0000279602340002418C000027960234] +09:52:07 ============================================================================ +09:52:07 Sending to : +09:52:07 ============================================================================ +09:52:07 + + +waiting on router queue for slot.... +09:52:07 ============================================================================ +09:52:07 Slot Id : <290> +09:52:07 Transaction Type : REQUEST +09:52:07 Received From : +09:52:07 ============================================================================ +09:52:07 FNo. Len. Field Value +09:52:07 ============================================================================ +09:52:07 [ 1] [ 4] [0200] +09:52:07 [ 2] [ 16] [6688990600439309] +09:52:07 [ 3] [ 6] [010000] +09:52:07 [ 4] [ 12] [000100000000] +09:52:07 [ 7] [ 10] [0320095203] +09:52:07 [ 11] [ 6] [705101] +09:52:07 [ 12] [ 6] [095203] +09:52:07 [ 13] [ 4] [0320] +09:52:07 [ 15] [ 4] [0320] +09:52:07 [ 18] [ 4] [6011] +09:52:07 [ 22] [ 3] [900] +09:52:07 [ 25] [ 2] [02] +09:52:07 [ 28] [ 9] [D00002000] +09:52:07 [ 32] [ 6] [621354] +09:52:07 [ 35] [ 37] [6688990600439309=40110061930974600000] +09:52:07 [ 37] [ 12] [507903928205] +09:52:07 [ 41] [ 8] [01010800] +09:52:07 [ 42] [ 15] [NATIVE ] +09:52:07 [ 43] [ 40] [Mahosod Hospital Sisattanak LAO] +09:52:07 [ 49] [ 3] [418] +09:52:07 [ 52] [ 16] [458640FB1EB357FC] +09:52:07 ============================================================================ +09:52:07 + + +waiting on router queue for slot.... +09:52:07 Sending to : +09:52:07 ============================================================================ +09:52:07 ============================================================================ +09:52:07 Slot Id : <290> +09:52:07 Transaction Type : REQUEST +09:52:07 Received From : +09:52:07 ============================================================================ +09:52:07 FNo. Len. Field Value +09:52:07 ============================================================================ +09:52:07 [ 1] [ 4] [0200] +09:52:07 [ 2] [ 16] [6688990600439309] +09:52:07 [ 3] [ 6] [010000] +09:52:07 [ 4] [ 12] [000100000000] +09:52:07 [ 7] [ 10] [0320095203] +09:52:07 [ 11] [ 6] [705101] +09:52:07 [ 12] [ 6] [095203] +09:52:07 [ 13] [ 4] [0320] +09:52:07 [ 15] [ 4] [0320] +09:52:07 [ 18] [ 4] [6011] +09:52:07 [ 22] [ 3] [900] +09:52:07 [ 25] [ 2] [02] +09:52:07 [ 28] [ 9] [D00002000] +09:52:07 [ 32] [ 6] [621354] +09:52:07 [ 35] [ 37] [6688990600439309=40110061930974600000] +09:52:07 [ 37] [ 12] [507903928205] +09:52:07 [ 41] [ 8] [01010800] +09:52:07 [ 42] [ 15] [NATIVE ] +09:52:07 [ 43] [ 40] [Mahosod Hospital Sisattanak LAO] +09:52:07 [ 49] [ 3] [418] +09:52:07 [ 52] [ 16] [7BE875501FA77E4D] +09:52:07 ============================================================================ +09:52:07 + + +waiting on router queue for slot.... +09:52:07 Sending to : <4> +09:52:07 ============================================================================ +09:52:07 ============================================================================ +09:52:07 Slot Id : <287> +09:52:07 Transaction Type : RESPONSE +09:52:07 Received From : +09:52:07 ============================================================================ +09:52:07 FNo. Len. Field Value +09:52:07 ============================================================================ +09:52:07 [ 1] [ 4] [0210] +09:52:07 [ 2] [ 16] [6213545000403844] +09:52:07 [ 3] [ 6] [010000] +09:52:07 [ 4] [ 12] [000020000000] +09:52:07 [ 7] [ 10] [0320094957] +09:52:07 [ 11] [ 6] [936801] +09:52:07 [ 12] [ 6] [094957] +09:52:07 [ 13] [ 4] [0320] +09:52:07 [ 15] [ 4] [0320] +09:52:07 [ 18] [ 4] [6011] +09:52:07 [ 19] [ 3] [418] +09:52:07 [ 32] [ 6] [668899] +09:52:07 [ 35] [ 32] [6213545000403844=491212010384363] +09:52:07 [ 37] [ 12] [507900789120] +09:52:07 [ 38] [ 6] [465102] +09:52:07 [ 39] [ 2] [00] +09:52:07 [ 41] [ 8] [03005002] +09:52:07 [ 49] [ 3] [418] +09:52:07 [ 54] [ 40] [0001418C0000279602340002418C000027960234] +09:52:07 ============================================================================ +09:52:07 Calculate Source COMM Id = 4 +09:52:07 ============================================================================ +09:52:07 + + +waiting on router queue for slot.... +09:52:08 ============================================================================ +09:52:08 Slot Id : <290> +09:52:08 Transaction Type : RESPONSE +09:52:08 Received From : +09:52:08 ============================================================================ +09:52:08 FNo. Len. Field Value +09:52:08 ============================================================================ +09:52:08 [ 1] [ 4] [0210] +09:52:08 [ 2] [ 16] [6688990600439309] +09:52:08 [ 3] [ 6] [010000] +09:52:08 [ 4] [ 12] [000100000000] +09:52:08 [ 7] [ 10] [0320095203] +09:52:08 [ 11] [ 6] [705101] +09:52:08 [ 12] [ 6] [095203] +09:52:08 [ 13] [ 4] [0320] +09:52:08 [ 15] [ 4] [0320] +09:52:08 [ 18] [ 4] [6011] +09:52:08 [ 22] [ 3] [021] +09:52:08 [ 32] [ 6] [621354] +09:52:08 [ 35] [ 37] [6688990600439309=40110061930974600000] +09:52:08 [ 37] [ 12] [507903928205] +09:52:08 [ 39] [ 2] [62] +09:52:08 [ 41] [ 8] [01010800] +09:52:08 [ 49] [ 3] [418] +09:52:08 ============================================================================ +09:52:08 Sending to : +09:52:08 ============================================================================ +09:52:08 + + +waiting on router queue for slot.... +09:52:08 ============================================================================ +09:52:08 Slot Id : <290> +09:52:08 Transaction Type : RESPONSE +09:52:08 Received From : +09:52:08 ============================================================================ +09:52:08 FNo. Len. Field Value +09:52:08 ============================================================================ +09:52:08 [ 1] [ 4] [0210] +09:52:08 [ 2] [ 16] [6688990600439309] +09:52:08 [ 3] [ 6] [010000] +09:52:08 [ 4] [ 12] [000100000000] +09:52:08 [ 7] [ 10] [0320095203] +09:52:08 [ 11] [ 6] [705101] +09:52:08 [ 12] [ 6] [095203] +09:52:08 [ 13] [ 4] [0320] +09:52:08 [ 15] [ 4] [0320] +09:52:08 [ 18] [ 4] [6011] +09:52:08 [ 22] [ 3] [021] +09:52:08 [ 32] [ 6] [621354] +09:52:08 [ 35] [ 37] [6688990600439309=40110061930974600000] +09:52:08 [ 37] [ 12] [507903928205] +09:52:08 [ 39] [ 2] [62] +09:52:08 [ 41] [ 8] [01010800] +09:52:08 [ 49] [ 3] [418] +09:52:08 ============================================================================ +09:52:08 Calculate Source COMM Id = 0 +09:52:08 ============================================================================ +09:52:08 + + +waiting on router queue for slot.... +09:52:15 ============================================================================ +09:52:15 Slot Id : <277> +09:52:15 Transaction Type : REQUEST +09:52:15 Received From : +09:52:15 ============================================================================ +09:52:15 FNo. Len. Field Value +09:52:15 ============================================================================ +09:52:15 [ 1] [ 4] [0800] +09:52:15 [ 7] [ 10] [0320025121] +09:52:15 [ 11] [ 6] [155721] +09:52:15 [ 70] [ 3] [301] +09:52:15 ============================================================================ +09:52:15 + + +waiting on router queue for slot.... +09:52:15 Sending to : +09:52:15 ============================================================================ +09:52:15 ============================================================================ +09:52:15 Slot Id : <277> +09:52:15 Transaction Type : RESPONSE +09:52:15 Received From : +09:52:15 ============================================================================ +09:52:15 FNo. Len. Field Value +09:52:15 ============================================================================ +09:52:15 [ 1] [ 4] [0810] +09:52:15 [ 7] [ 10] [0320025121] +09:52:15 [ 11] [ 6] [155721] +09:52:15 [ 39] [ 2] [00] +09:52:15 [ 70] [ 3] [301] +09:52:15 ============================================================================ +09:52:15 Calculate Source COMM Id = 2 +09:52:15 ============================================================================ +09:52:15 + + +waiting on router queue for slot.... +09:52:32 ============================================================================ +09:52:32 Slot Id : <288> +09:52:32 Transaction Type : REQUEST +09:52:32 Received From : +09:52:32 ============================================================================ +09:52:32 FNo. Len. Field Value +09:52:32 ============================================================================ +09:52:32 [ 1] [ 4] [0800] +09:52:32 [ 7] [ 10] [0320025138] +09:52:32 [ 11] [ 6] [155722] +09:52:32 [ 70] [ 3] [301] +09:52:32 ============================================================================ +09:52:32 + + +waiting on router queue for slot.... +09:52:32 Sending to : +09:52:32 ============================================================================ +09:52:32 ============================================================================ +09:52:32 Slot Id : <288> +09:52:32 Transaction Type : RESPONSE +09:52:32 Received From : +09:52:32 ============================================================================ +09:52:32 FNo. Len. Field Value +09:52:32 ============================================================================ +09:52:32 [ 1] [ 4] [0810] +09:52:32 [ 7] [ 10] [0320025138] +09:52:32 [ 11] [ 6] [155722] +09:52:32 [ 39] [ 2] [00] +09:52:32 [ 70] [ 3] [301] +09:52:32 ============================================================================ +09:52:32 Calculate Source COMM Id = 2 +09:52:32 ============================================================================ +09:52:32 + + +waiting on router queue for slot.... +09:52:43 ============================================================================ +09:52:43 Slot Id : <271> +09:52:43 Transaction Type : REQUEST +09:52:43 Received From : +09:52:43 ============================================================================ +09:52:43 FNo. Len. Field Value +09:52:43 ============================================================================ +09:52:43 [ 1] [ 4] [0800] +09:52:43 [ 2] [ 5] [02531] +09:52:43 [ 3] [ 6] [579098] +09:52:43 [ 7] [ 10] [0320025243] +09:52:43 [ 11] [ 6] [806985] +09:52:43 [ 15] [ 10] [0320025243] +09:52:43 [ 37] [ 11] [57909806985] +09:52:43 [ 70] [ 3] [001] +09:52:43 ============================================================================ +09:52:43 + + +waiting on router queue for slot.... +09:52:43 ============================================================================ +09:52:43 Slot Id : <271> +09:52:43 Transaction Type : RESPONSE +09:52:43 Received From : +09:52:43 ============================================================================ +09:52:43 FNo. Len. Field Value +09:52:43 ============================================================================ +09:52:43 [ 1] [ 4] [0810] +09:52:43 [ 7] [ 10] [0320025243] +09:52:43 [ 11] [ 6] [806985] +09:52:43 [ 15] [ 4] [0320] +09:52:43 [ 37] [ 12] [57909806985] +09:52:43 [ 39] [ 2] [00] +09:52:43 [ 70] [ 3] [001] +09:52:43 ============================================================================ +09:52:43 Sending to : +09:52:43 ============================================================================ +09:52:43 + + +waiting on router queue for slot.... +09:52:44 ============================================================================ +09:52:44 Slot Id : <236> +09:52:44 Transaction Type : REQUEST +09:52:44 Received From : +09:52:44 ============================================================================ +09:52:44 FNo. Len. Field Value +09:52:44 ============================================================================ +09:52:44 [ 1] [ 4] [0800] +09:52:44 [ 7] [ 10] [0320170433] +09:52:44 [ 11] [ 6] [100433] +09:52:44 [ 37] [ 12] [57910100433] +09:52:44 [ 70] [ 3] [301] +09:52:44 ============================================================================ +09:52:44 + + +waiting on router queue for slot.... +09:52:44 Sending to : +09:52:44 ============================================================================ +09:52:44 ============================================================================ +09:52:44 Slot Id : <236> +09:52:44 Transaction Type : RESPONSE +09:52:44 Received From : +09:52:44 ============================================================================ +09:52:44 FNo. Len. Field Value +09:52:44 ============================================================================ +09:52:44 [ 1] [ 4] [0810] +09:52:44 [ 7] [ 10] [0320170433] +09:52:44 [ 11] [ 6] [100433] +09:52:44 [ 37] [ 12] [579101004330] +09:52:44 [ 39] [ 2] [00] +09:52:44 [ 70] [ 3] [810] +09:52:44 ============================================================================ +09:52:44 Calculate Source COMM Id = 6 +09:52:44 ============================================================================ +09:52:44 + + +waiting on router queue for slot.... +09:52:47 ============================================================================ +09:52:47 Slot Id : <267> +09:52:47 Transaction Type : REQUEST +09:52:47 Received From : +09:52:47 ============================================================================ +09:52:47 FNo. Len. Field Value +09:52:47 ============================================================================ +09:52:47 [ 1] [ 4] [0800] +09:52:47 [ 7] [ 10] [0320025155] +09:52:47 [ 11] [ 6] [155723] +09:52:47 [ 70] [ 3] [301] +09:52:47 ============================================================================ +09:52:47 + + +waiting on router queue for slot.... +09:52:47 Sending to : +09:52:47 ============================================================================ +09:52:47 ============================================================================ +09:52:47 Slot Id : <267> +09:52:47 Transaction Type : RESPONSE +09:52:47 Received From : +09:52:47 ============================================================================ +09:52:47 FNo. Len. Field Value +09:52:47 ============================================================================ +09:52:47 [ 1] [ 4] [0810] +09:52:47 [ 7] [ 10] [0320025155] +09:52:47 [ 11] [ 6] [155723] +09:52:47 [ 39] [ 2] [00] +09:52:47 [ 70] [ 3] [301] +09:52:47 ============================================================================ +09:52:47 Calculate Source COMM Id = 2 +09:52:47 ============================================================================ +09:52:47 + + +waiting on router queue for slot.... +09:52:52 ============================================================================ +09:52:52 Slot Id : <293> +09:52:52 Transaction Type : REQUEST +09:52:52 Received From : +09:52:52 ============================================================================ +09:52:52 FNo. Len. Field Value +09:52:52 ============================================================================ +09:52:52 [ 1] [ 4] [0200] +09:52:52 [ 2] [ 16] [6213545000077697] +09:52:52 [ 3] [ 6] [010000] +09:52:52 [ 4] [ 12] [000100000000] +09:52:52 [ 7] [ 10] [0320025159] +09:52:52 [ 11] [ 6] [267804] +09:52:52 [ 12] [ 6] [095159] +09:52:52 [ 13] [ 4] [0320] +09:52:52 [ 14] [ 4] [4912] +09:52:52 [ 15] [ 4] [0320] +09:52:52 [ 18] [ 4] [6011] +09:52:52 [ 19] [ 3] [418] +09:52:52 [ 22] [ 3] [021] +09:52:52 [ 25] [ 2] [01] +09:52:52 [ 28] [ 9] [D00002000] +09:52:52 [ 32] [ 6] [180893] +09:52:52 [ 35] [ 32] [6213545000077697=491212017769751] +09:52:52 [ 37] [ 12] [507902267804] +09:52:52 [ 41] [ 8] [0112CPBR] +09:52:52 [ 42] [ 15] [999999 ] +09:52:52 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:52:52 [ 49] [ 3] [418] +09:52:52 [ 52] [ 16] [BC3B492E1E2B8E2E] +09:52:52 ============================================================================ +09:52:52 + + +waiting on router queue for slot.... +09:52:52 Sending to : +09:52:52 ============================================================================ +09:52:52 Sending to : +09:52:52 ============================================================================ +09:52:53 ============================================================================ +09:52:53 Slot Id : <293> +09:52:53 Transaction Type : REQUEST +09:52:53 Received From : +09:52:53 ============================================================================ +09:52:53 FNo. Len. Field Value +09:52:53 ============================================================================ +09:52:53 [ 1] [ 4] [0200] +09:52:53 [ 2] [ 16] [6213545000077697] +09:52:53 [ 3] [ 6] [010000] +09:52:53 [ 4] [ 12] [000100000000] +09:52:53 [ 7] [ 10] [0320025159] +09:52:53 [ 11] [ 6] [267804] +09:52:53 [ 12] [ 6] [095159] +09:52:53 [ 13] [ 4] [0320] +09:52:53 [ 14] [ 4] [4912] +09:52:53 [ 15] [ 4] [0320] +09:52:53 [ 18] [ 4] [6011] +09:52:53 [ 19] [ 3] [418] +09:52:53 [ 22] [ 3] [021] +09:52:53 [ 25] [ 2] [01] +09:52:53 [ 28] [ 9] [D00002000] +09:52:53 [ 32] [ 6] [180893] +09:52:53 [ 35] [ 32] [6213545000077697=491212017769751] +09:52:53 [ 37] [ 12] [507902267804] +09:52:53 [ 41] [ 8] [0112CPBR] +09:52:53 [ 42] [ 15] [999999 ] +09:52:53 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:52:53 [ 49] [ 3] [418] +09:52:53 [ 52] [ 16] [BC3B492E1E2B8E2E] +09:52:53 ============================================================================ +09:52:53 + + +waiting on router queue for slot.... +09:52:53 Sending to : +09:52:53 ============================================================================ +09:52:53 ============================================================================ +09:52:53 Slot Id : <293> +09:52:53 Transaction Type : REQUEST +09:52:53 Received From : +09:52:53 ============================================================================ +09:52:53 FNo. Len. Field Value +09:52:53 ============================================================================ +09:52:53 [ 1] [ 4] [0200] +09:52:53 [ 2] [ 16] [6213545000077697] +09:52:53 [ 3] [ 6] [010000] +09:52:53 [ 4] [ 12] [000100000000] +09:52:53 [ 7] [ 10] [0320025159] +09:52:53 [ 11] [ 6] [267804] +09:52:53 [ 12] [ 6] [095159] +09:52:53 [ 13] [ 4] [0320] +09:52:53 [ 14] [ 4] [4912] +09:52:53 [ 15] [ 4] [0320] +09:52:53 [ 18] [ 4] [6011] +09:52:53 [ 19] [ 3] [418] +09:52:53 [ 22] [ 3] [021] +09:52:53 [ 25] [ 2] [01] +09:52:53 [ 28] [ 9] [D00002000] +09:52:53 [ 32] [ 6] [180893] +09:52:53 [ 35] [ 32] [6213545000077697=491212017769751] +09:52:53 [ 37] [ 12] [507902267804] +09:52:53 [ 41] [ 8] [0112CPBR] +09:52:53 [ 42] [ 15] [999999 ] +09:52:53 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:52:53 [ 49] [ 3] [418] +09:52:53 [ 52] [ 16] [1C1913D53AAA3D83] +09:52:53 ============================================================================ +09:52:53 + + +waiting on router queue for slot.... +09:52:53 Sending to : <0> +09:52:53 ============================================================================ +09:52:53 ============================================================================ +09:52:53 Slot Id : <293> +09:52:53 Transaction Type : RESPONSE +09:52:53 Received From : +09:52:53 ============================================================================ +09:52:53 FNo. Len. Field Value +09:52:53 ============================================================================ +09:52:53 [ 1] [ 4] [0210] +09:52:53 [ 2] [ 16] [6213545000077697] +09:52:53 [ 3] [ 6] [010000] +09:52:53 [ 4] [ 12] [000100000000] +09:52:53 [ 7] [ 10] [0320025159] +09:52:53 [ 11] [ 6] [267804] +09:52:53 [ 12] [ 6] [095159] +09:52:53 [ 13] [ 4] [0320] +09:52:53 [ 15] [ 4] [0320] +09:52:53 [ 18] [ 4] [6011] +09:52:53 [ 19] [ 3] [418] +09:52:53 [ 32] [ 6] [180893] +09:52:53 [ 35] [ 32] [6213545000077697=491212017769751] +09:52:53 [ 37] [ 12] [507902267804] +09:52:53 [ 38] [ 6] [246047] +09:52:53 [ 39] [ 2] [00] +09:52:53 [ 41] [ 8] [0112CPBR] +09:52:53 [ 49] [ 3] [418] +09:52:53 [ 54] [ 40] [0001418C0001381168220002418C000138116822] +09:52:53 ============================================================================ +09:52:53 Sending to : +09:52:53 ============================================================================ +09:52:53 + + +waiting on router queue for slot.... +09:52:55 ============================================================================ +09:52:55 Slot Id : <293> +09:52:55 Transaction Type : RESPONSE +09:52:55 Received From : +09:52:55 ============================================================================ +09:52:55 FNo. Len. Field Value +09:52:55 ============================================================================ +09:52:55 [ 1] [ 4] [0210] +09:52:55 [ 2] [ 16] [6213545000077697] +09:52:55 [ 3] [ 6] [010000] +09:52:55 [ 4] [ 12] [000100000000] +09:52:55 [ 7] [ 10] [0320025159] +09:52:55 [ 11] [ 6] [267804] +09:52:55 [ 12] [ 6] [095159] +09:52:55 [ 13] [ 4] [0320] +09:52:55 [ 15] [ 4] [0320] +09:52:55 [ 18] [ 4] [6011] +09:52:55 [ 19] [ 3] [418] +09:52:55 [ 32] [ 6] [180893] +09:52:55 [ 35] [ 32] [6213545000077697=491212017769751] +09:52:55 [ 37] [ 12] [507902267804] +09:52:55 [ 38] [ 6] [246047] +09:52:55 [ 39] [ 2] [00] +09:52:55 [ 41] [ 8] [0112CPBR] +09:52:55 [ 49] [ 3] [418] +09:52:55 [ 54] [ 40] [0001418C0001381168220002418C000138116822] +09:52:55 ============================================================================ +09:52:55 Calculate Source COMM Id = 2 +09:52:55 ============================================================================ +09:52:55 + + +waiting on router queue for slot.... +09:52:59 ============================================================================ +09:52:59 Slot Id : <278> +09:52:59 Transaction Type : REQUEST +09:52:59 Received From : +09:52:59 ============================================================================ +09:52:59 FNo. Len. Field Value +09:52:59 ============================================================================ +09:52:59 [ 1] [ 4] [0200] +09:52:59 [ 2] [ 16] [6688990100941507] +09:52:59 [ 3] [ 6] [010000] +09:52:59 [ 4] [ 12] [000080000000] +09:52:59 [ 7] [ 10] [0320095255] +09:52:59 [ 11] [ 6] [705355] +09:52:59 [ 12] [ 6] [095255] +09:52:59 [ 13] [ 4] [0320] +09:52:59 [ 15] [ 4] [0320] +09:52:59 [ 18] [ 4] [6011] +09:52:59 [ 22] [ 3] [900] +09:52:59 [ 25] [ 2] [02] +09:52:59 [ 28] [ 9] [D00002000] +09:52:59 [ 32] [ 6] [621354] +09:52:59 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:52:59 [ 37] [ 12] [507904719455] +09:52:59 [ 41] [ 8] [18001000] +09:52:59 [ 42] [ 15] [NATIVE ] +09:52:59 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:52:59 [ 49] [ 3] [418] +09:52:59 [ 52] [ 16] [3B496FEB663F5696] +09:52:59 ============================================================================ +09:52:59 + + +waiting on router queue for slot.... +09:52:59 Sending to : +09:52:59 ============================================================================ +09:52:59 Sending to : +09:52:59 ============================================================================ +09:52:59 ============================================================================ +09:52:59 Slot Id : <278> +09:52:59 Transaction Type : REQUEST +09:52:59 Received From : +09:52:59 ============================================================================ +09:52:59 FNo. Len. Field Value +09:52:59 ============================================================================ +09:52:59 [ 1] [ 4] [0200] +09:52:59 [ 2] [ 16] [6688990100941507] +09:52:59 [ 3] [ 6] [010000] +09:52:59 [ 4] [ 12] [000080000000] +09:52:59 [ 7] [ 10] [0320095255] +09:52:59 [ 11] [ 6] [705355] +09:52:59 [ 12] [ 6] [095255] +09:52:59 [ 13] [ 4] [0320] +09:52:59 [ 15] [ 4] [0320] +09:52:59 [ 18] [ 4] [6011] +09:52:59 [ 22] [ 3] [900] +09:52:59 [ 25] [ 2] [02] +09:52:59 [ 28] [ 9] [D00002000] +09:52:59 [ 32] [ 6] [621354] +09:52:59 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:52:59 [ 37] [ 12] [507904719455] +09:52:59 [ 41] [ 8] [18001000] +09:52:59 [ 42] [ 15] [NATIVE ] +09:52:59 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:52:59 [ 49] [ 3] [418] +09:52:59 [ 52] [ 16] [3B496FEB663F5696] +09:52:59 ============================================================================ +09:52:59 + + +waiting on router queue for slot.... +09:52:59 Sending to : +09:52:59 ============================================================================ +09:52:59 ============================================================================ +09:52:59 Slot Id : <278> +09:52:59 Transaction Type : REQUEST +09:52:59 Received From : +09:52:59 ============================================================================ +09:52:59 FNo. Len. Field Value +09:52:59 ============================================================================ +09:52:59 [ 1] [ 4] [0200] +09:52:59 [ 2] [ 16] [6688990100941507] +09:52:59 [ 3] [ 6] [010000] +09:52:59 [ 4] [ 12] [000080000000] +09:52:59 [ 7] [ 10] [0320095255] +09:52:59 [ 11] [ 6] [705355] +09:52:59 [ 12] [ 6] [095255] +09:52:59 [ 13] [ 4] [0320] +09:52:59 [ 15] [ 4] [0320] +09:52:59 [ 18] [ 4] [6011] +09:52:59 [ 22] [ 3] [900] +09:52:59 [ 25] [ 2] [02] +09:52:59 [ 28] [ 9] [D00002000] +09:52:59 [ 32] [ 6] [621354] +09:52:59 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:52:59 [ 37] [ 12] [507904719455] +09:52:59 [ 41] [ 8] [18001000] +09:52:59 [ 42] [ 15] [NATIVE ] +09:52:59 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:52:59 [ 49] [ 3] [418] +09:52:59 [ 52] [ 16] [708A5172D2D707EC] +09:52:59 ============================================================================ +09:52:59 + + +waiting on router queue for slot.... +09:52:59 Sending to : <4> +09:52:59 ============================================================================ +09:53:00 ============================================================================ +09:53:00 Slot Id : <278> +09:53:00 Transaction Type : RESPONSE +09:53:00 Received From : +09:53:00 ============================================================================ +09:53:00 FNo. Len. Field Value +09:53:00 ============================================================================ +09:53:00 [ 1] [ 4] [0210] +09:53:00 [ 2] [ 16] [6688990100941507] +09:53:00 [ 3] [ 6] [010000] +09:53:00 [ 4] [ 12] [000080000000] +09:53:00 [ 11] [ 6] [705355] +09:53:00 [ 12] [ 6] [095255] +09:53:00 [ 15] [ 4] [0320] +09:53:00 [ 18] [ 4] [6011] +09:53:00 [ 32] [ 6] [621354] +09:53:00 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:53:00 [ 37] [ 12] [507904719455] +09:53:00 [ 39] [ 2] [51] +09:53:00 [ 41] [ 8] [18001000] +09:53:00 [ 49] [ 3] [418] +09:53:00 [ 54] [ 0] [] +09:53:00 ============================================================================ +09:53:00 Sending to : +09:53:00 ============================================================================ +09:53:00 + + +waiting on router queue for slot.... +09:53:01 ============================================================================ +09:53:01 Slot Id : <278> +09:53:01 Transaction Type : RESPONSE +09:53:01 Received From : +09:53:01 ============================================================================ +09:53:01 FNo. Len. Field Value +09:53:01 ============================================================================ +09:53:01 [ 1] [ 4] [0210] +09:53:01 [ 2] [ 16] [6688990100941507] +09:53:01 [ 3] [ 6] [010000] +09:53:01 [ 4] [ 12] [000080000000] +09:53:01 [ 11] [ 6] [705355] +09:53:01 [ 12] [ 6] [095255] +09:53:01 [ 15] [ 4] [0320] +09:53:01 [ 18] [ 4] [6011] +09:53:01 [ 32] [ 6] [621354] +09:53:01 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:53:01 [ 37] [ 12] [507904719455] +09:53:01 [ 39] [ 2] [51] +09:53:01 [ 41] [ 8] [18001000] +09:53:01 [ 49] [ 3] [418] +09:53:01 [ 54] [ 0] [] +09:53:01 ============================================================================ +09:53:01 Calculate Source COMM Id = 0 +09:53:01 ============================================================================ +09:53:01 + + +waiting on router queue for slot.... +09:53:02 ============================================================================ +09:53:02 Slot Id : <217> +09:53:02 Transaction Type : REQUEST +09:53:02 Received From : +09:53:02 ============================================================================ +09:53:02 FNo. Len. Field Value +09:53:02 ============================================================================ +09:53:02 [ 1] [ 4] [0200] +09:53:02 [ 2] [ 16] [6213546000011694] +09:53:02 [ 3] [ 6] [010000] +09:53:02 [ 4] [ 12] [000017000000] +09:53:02 [ 7] [ 10] [0320100050] +09:53:02 [ 11] [ 6] [254832] +09:53:02 [ 12] [ 6] [100050] +09:53:02 [ 13] [ 4] [0320] +09:53:02 [ 14] [ 4] [4912] +09:53:02 [ 15] [ 4] [0320] +09:53:02 [ 18] [ 4] [6011] +09:53:02 [ 22] [ 3] [900] +09:53:02 [ 25] [ 2] [02] +09:53:02 [ 28] [ 9] [D00002000] +09:53:02 [ 32] [ 6] [220699] +09:53:02 [ 35] [ 32] [6213546000011694=491212011169624] +09:53:02 [ 37] [ 12] [507900094411] +09:53:02 [ 41] [ 8] [01000900] +09:53:02 [ 42] [ 15] [APTRA ] +09:53:02 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:53:02 [ 49] [ 3] [418] +09:53:02 [ 52] [ 16] [4966C6A8EB3037AC] +09:53:02 ============================================================================ +09:53:02 + + +waiting on router queue for slot.... +09:53:02 Sending to : +09:53:02 ============================================================================ +09:53:02 Sending to : +09:53:02 ============================================================================ +09:53:03 ============================================================================ +09:53:03 Slot Id : <217> +09:53:03 Transaction Type : REQUEST +09:53:03 Received From : +09:53:03 ============================================================================ +09:53:03 FNo. Len. Field Value +09:53:03 ============================================================================ +09:53:03 [ 1] [ 4] [0200] +09:53:03 [ 2] [ 16] [6213546000011694] +09:53:03 [ 3] [ 6] [010000] +09:53:03 [ 4] [ 12] [000017000000] +09:53:03 [ 7] [ 10] [0320100050] +09:53:03 [ 11] [ 6] [254832] +09:53:03 [ 12] [ 6] [100050] +09:53:03 [ 13] [ 4] [0320] +09:53:03 [ 14] [ 4] [4912] +09:53:03 [ 15] [ 4] [0320] +09:53:03 [ 18] [ 4] [6011] +09:53:03 [ 22] [ 3] [900] +09:53:03 [ 25] [ 2] [02] +09:53:03 [ 28] [ 9] [D00002000] +09:53:03 [ 32] [ 6] [220699] +09:53:03 [ 35] [ 32] [6213546000011694=491212011169624] +09:53:03 [ 37] [ 12] [507900094411] +09:53:03 [ 41] [ 8] [01000900] +09:53:03 [ 42] [ 15] [APTRA ] +09:53:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:53:03 [ 49] [ 3] [418] +09:53:03 [ 52] [ 16] [4966C6A8EB3037AC] +09:53:03 ============================================================================ +09:53:03 + + +waiting on router queue for slot.... +09:53:03 Sending to : +09:53:03 ============================================================================ +09:53:03 ============================================================================ +09:53:03 Slot Id : <217> +09:53:03 Transaction Type : REQUEST +09:53:03 Received From : +09:53:03 ============================================================================ +09:53:03 FNo. Len. Field Value +09:53:03 ============================================================================ +09:53:03 [ 1] [ 4] [0200] +09:53:03 [ 2] [ 16] [6213546000011694] +09:53:03 [ 3] [ 6] [010000] +09:53:03 [ 4] [ 12] [000017000000] +09:53:03 [ 7] [ 10] [0320100050] +09:53:03 [ 11] [ 6] [254832] +09:53:03 [ 12] [ 6] [100050] +09:53:03 [ 13] [ 4] [0320] +09:53:03 [ 14] [ 4] [4912] +09:53:03 [ 15] [ 4] [0320] +09:53:03 [ 18] [ 4] [6011] +09:53:03 [ 22] [ 3] [900] +09:53:03 [ 25] [ 2] [02] +09:53:03 [ 28] [ 9] [D00002000] +09:53:03 [ 32] [ 6] [220699] +09:53:03 [ 35] [ 32] [6213546000011694=491212011169624] +09:53:03 [ 37] [ 12] [507900094411] +09:53:03 [ 41] [ 8] [01000900] +09:53:03 [ 42] [ 15] [APTRA ] +09:53:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:53:03 [ 49] [ 3] [418] +09:53:03 [ 52] [ 16] [31D61C4FF2C580AF] +09:53:03 ============================================================================ +09:53:03 + + +waiting on router queue for slot.... +09:53:03 Sending to : <0> +09:53:03 ============================================================================ +09:53:04 ============================================================================ +09:53:04 Slot Id : <217> +09:53:04 Transaction Type : RESPONSE +09:53:04 Received From : +09:53:04 ============================================================================ +09:53:04 FNo. Len. Field Value +09:53:04 ============================================================================ +09:53:04 [ 1] [ 4] [0210] +09:53:04 [ 2] [ 16] [6213546000011694] +09:53:04 [ 3] [ 6] [010000] +09:53:04 [ 4] [ 12] [000017000000] +09:53:04 [ 7] [ 10] [0320100050] +09:53:04 [ 11] [ 6] [254832] +09:53:04 [ 12] [ 6] [100050] +09:53:04 [ 13] [ 4] [0320] +09:53:04 [ 15] [ 4] [0320] +09:53:04 [ 18] [ 4] [6011] +09:53:04 [ 32] [ 6] [220699] +09:53:04 [ 35] [ 32] [6213546000011694=491212011169624] +09:53:04 [ 37] [ 12] [507900094411] +09:53:04 [ 38] [ 6] [280240] +09:53:04 [ 39] [ 2] [00] +09:53:04 [ 41] [ 8] [01000900] +09:53:04 [ 49] [ 3] [418] +09:53:04 [ 54] [ 40] [0001418C0001210996960002418C000121099696] +09:53:04 ============================================================================ +09:53:04 Sending to : +09:53:04 ============================================================================ +09:53:04 + + +waiting on router queue for slot.... +09:53:05 ============================================================================ +09:53:05 Slot Id : <217> +09:53:05 Transaction Type : RESPONSE +09:53:05 Received From : +09:53:05 ============================================================================ +09:53:05 FNo. Len. Field Value +09:53:05 ============================================================================ +09:53:05 [ 1] [ 4] [0210] +09:53:05 [ 2] [ 16] [6213546000011694] +09:53:05 [ 3] [ 6] [010000] +09:53:05 [ 4] [ 12] [000017000000] +09:53:05 [ 7] [ 10] [0320100050] +09:53:05 [ 11] [ 6] [254832] +09:53:05 [ 12] [ 6] [100050] +09:53:05 [ 13] [ 4] [0320] +09:53:05 [ 15] [ 4] [0320] +09:53:05 [ 18] [ 4] [6011] +09:53:05 [ 32] [ 6] [220699] +09:53:05 [ 35] [ 32] [6213546000011694=491212011169624] +09:53:05 [ 37] [ 12] [507900094411] +09:53:05 [ 38] [ 6] [280240] +09:53:05 [ 39] [ 2] [00] +09:53:05 [ 41] [ 8] [01000900] +09:53:05 [ 49] [ 3] [418] +09:53:05 [ 54] [ 40] [0001418C0001210996960002418C000121099696] +09:53:05 ============================================================================ +09:53:05 Calculate Source COMM Id = 1 +09:53:05 ============================================================================ +09:53:05 + + +waiting on router queue for slot.... +09:53:09 ============================================================================ +09:53:09 Slot Id : <294> +09:53:09 Transaction Type : REQUEST +09:53:09 Received From : +09:53:09 ============================================================================ +09:53:09 FNo. Len. Field Value +09:53:09 ============================================================================ +09:53:09 [ 1] [ 4] [0800] +09:53:09 [ 7] [ 10] [0320025217] +09:53:09 [ 11] [ 6] [155724] +09:53:09 [ 70] [ 3] [301] +09:53:09 ============================================================================ +09:53:09 + + +waiting on router queue for slot.... +09:53:09 Sending to : +09:53:09 ============================================================================ +09:53:09 ============================================================================ +09:53:09 Slot Id : <294> +09:53:09 Transaction Type : RESPONSE +09:53:09 Received From : +09:53:09 ============================================================================ +09:53:09 FNo. Len. Field Value +09:53:09 ============================================================================ +09:53:09 [ 1] [ 4] [0810] +09:53:09 [ 7] [ 10] [0320025217] +09:53:09 [ 11] [ 6] [155724] +09:53:09 [ 39] [ 2] [00] +09:53:09 [ 70] [ 3] [301] +09:53:09 ============================================================================ +09:53:09 Calculate Source COMM Id = 2 +09:53:09 ============================================================================ +09:53:09 + + +waiting on router queue for slot.... +09:53:16 ============================================================================ +09:53:16 Slot Id : <303> +09:53:16 Transaction Type : REQUEST +09:53:16 Received From : +09:53:16 ============================================================================ +09:53:16 FNo. Len. Field Value +09:53:16 ============================================================================ +09:53:16 [ 1] [ 4] [0200] +09:53:16 [ 2] [ 16] [6688990104797004] +09:53:16 [ 3] [ 6] [010000] +09:53:16 [ 4] [ 12] [000010000000] +09:53:16 [ 7] [ 10] [0320025223] +09:53:16 [ 11] [ 6] [267807] +09:53:16 [ 12] [ 6] [095223] +09:53:16 [ 13] [ 4] [0320] +09:53:16 [ 14] [ 4] [4305] +09:53:16 [ 15] [ 4] [0320] +09:53:16 [ 18] [ 4] [6011] +09:53:16 [ 19] [ 3] [418] +09:53:16 [ 22] [ 3] [021] +09:53:16 [ 25] [ 2] [01] +09:53:16 [ 28] [ 9] [D00002000] +09:53:16 [ 32] [ 6] [180893] +09:53:16 [ 35] [ 37] [6688990104797004=43051231700432300000] +09:53:16 [ 37] [ 12] [507902267807] +09:53:16 [ 41] [ 8] [0528LPBP] +09:53:16 [ 42] [ 15] [999999 ] +09:53:16 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +09:53:16 [ 49] [ 3] [418] +09:53:16 [ 52] [ 16] [62FB16E19D67A58F] +09:53:16 ============================================================================ +09:53:16 + + +waiting on router queue for slot.... +09:53:16 Sending to : +09:53:16 ============================================================================ +09:53:16 Sending to : +09:53:16 ============================================================================ +09:53:17 ============================================================================ +09:53:17 Slot Id : <303> +09:53:17 Transaction Type : REQUEST +09:53:17 Received From : +09:53:17 ============================================================================ +09:53:17 FNo. Len. Field Value +09:53:17 ============================================================================ +09:53:17 [ 1] [ 4] [0200] +09:53:17 [ 2] [ 16] [6688990104797004] +09:53:17 [ 3] [ 6] [010000] +09:53:17 [ 4] [ 12] [000010000000] +09:53:17 [ 7] [ 10] [0320025223] +09:53:17 [ 11] [ 6] [267807] +09:53:17 [ 12] [ 6] [095223] +09:53:17 [ 13] [ 4] [0320] +09:53:17 [ 14] [ 4] [4305] +09:53:17 [ 15] [ 4] [0320] +09:53:17 [ 18] [ 4] [6011] +09:53:17 [ 19] [ 3] [418] +09:53:17 [ 22] [ 3] [021] +09:53:17 [ 25] [ 2] [01] +09:53:17 [ 28] [ 9] [D00002000] +09:53:17 [ 32] [ 6] [180893] +09:53:17 [ 35] [ 37] [6688990104797004=43051231700432300000] +09:53:17 [ 37] [ 12] [507902267807] +09:53:17 [ 41] [ 8] [0528LPBP] +09:53:17 [ 42] [ 15] [999999 ] +09:53:17 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +09:53:17 [ 49] [ 3] [418] +09:53:17 [ 52] [ 16] [62FB16E19D67A58F] +09:53:17 ============================================================================ +09:53:17 + + +waiting on router queue for slot.... +09:53:17 Sending to : +09:53:17 ============================================================================ +09:53:17 ============================================================================ +09:53:17 Slot Id : <303> +09:53:17 Transaction Type : REQUEST +09:53:17 Received From : +09:53:17 ============================================================================ +09:53:17 FNo. Len. Field Value +09:53:17 ============================================================================ +09:53:17 [ 1] [ 4] [0200] +09:53:17 [ 2] [ 16] [6688990104797004] +09:53:17 [ 3] [ 6] [010000] +09:53:17 [ 4] [ 12] [000010000000] +09:53:17 [ 7] [ 10] [0320025223] +09:53:17 [ 11] [ 6] [267807] +09:53:17 [ 12] [ 6] [095223] +09:53:17 [ 13] [ 4] [0320] +09:53:17 [ 14] [ 4] [4305] +09:53:17 [ 15] [ 4] [0320] +09:53:17 [ 18] [ 4] [6011] +09:53:17 [ 19] [ 3] [418] +09:53:17 [ 22] [ 3] [021] +09:53:17 [ 25] [ 2] [01] +09:53:17 [ 28] [ 9] [D00002000] +09:53:17 [ 32] [ 6] [180893] +09:53:17 [ 35] [ 37] [6688990104797004=43051231700432300000] +09:53:17 [ 37] [ 12] [507902267807] +09:53:17 [ 41] [ 8] [0528LPBP] +09:53:17 [ 42] [ 15] [999999 ] +09:53:17 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +09:53:17 [ 49] [ 3] [418] +09:53:17 [ 52] [ 16] [8B3F94915BEF9BF9] +09:53:17 ============================================================================ +09:53:17 + + +waiting on router queue for slot.... +09:53:17 Sending to : <0> +09:53:17 ============================================================================ +09:53:17 ============================================================================ +09:53:17 Slot Id : <303> +09:53:17 Transaction Type : RESPONSE +09:53:17 Received From : +09:53:17 ============================================================================ +09:53:17 FNo. Len. Field Value +09:53:17 ============================================================================ +09:53:17 [ 1] [ 4] [0210] +09:53:17 [ 2] [ 16] [6688990104797004] +09:53:17 [ 3] [ 6] [010000] +09:53:17 [ 4] [ 12] [000010000000] +09:53:17 [ 7] [ 10] [0320025223] +09:53:17 [ 11] [ 6] [267807] +09:53:17 [ 12] [ 6] [095223] +09:53:17 [ 13] [ 4] [0320] +09:53:17 [ 15] [ 4] [0320] +09:53:17 [ 18] [ 4] [6011] +09:53:17 [ 19] [ 3] [418] +09:53:17 [ 22] [ 3] [021] +09:53:17 [ 32] [ 6] [180893] +09:53:17 [ 35] [ 37] [6688990104797004=43051231700432300000] +09:53:17 [ 37] [ 12] [507902267807] +09:53:17 [ 39] [ 2] [14] +09:53:17 [ 41] [ 8] [0528LPBP] +09:53:17 [ 49] [ 3] [418] +09:53:17 ============================================================================ +09:53:17 Sending to : +09:53:17 ============================================================================ +09:53:17 + + +waiting on router queue for slot.... +09:53:18 ============================================================================ +09:53:18 Slot Id : <303> +09:53:18 Transaction Type : RESPONSE +09:53:18 Received From : +09:53:18 ============================================================================ +09:53:18 FNo. Len. Field Value +09:53:18 ============================================================================ +09:53:18 [ 1] [ 4] [0210] +09:53:18 [ 2] [ 16] [6688990104797004] +09:53:18 [ 3] [ 6] [010000] +09:53:18 [ 4] [ 12] [000010000000] +09:53:18 [ 7] [ 10] [0320025223] +09:53:18 [ 11] [ 6] [267807] +09:53:18 [ 12] [ 6] [095223] +09:53:18 [ 13] [ 4] [0320] +09:53:18 [ 15] [ 4] [0320] +09:53:18 [ 18] [ 4] [6011] +09:53:18 [ 19] [ 3] [418] +09:53:18 [ 22] [ 3] [021] +09:53:18 [ 32] [ 6] [180893] +09:53:18 [ 35] [ 37] [6688990104797004=43051231700432300000] +09:53:18 [ 37] [ 12] [507902267807] +09:53:18 [ 39] [ 2] [14] +09:53:18 [ 41] [ 8] [0528LPBP] +09:53:18 [ 49] [ 3] [418] +09:53:18 ============================================================================ +09:53:18 Calculate Source COMM Id = 2 +09:53:18 ============================================================================ +09:53:18 + + +waiting on router queue for slot.... +09:53:30 ============================================================================ +09:53:30 Slot Id : <298> +09:53:30 Transaction Type : REQUEST +09:53:30 Received From : +09:53:30 ============================================================================ +09:53:30 FNo. Len. Field Value +09:53:30 ============================================================================ +09:53:30 [ 1] [ 4] [0800] +09:53:30 [ 7] [ 10] [0320025238] +09:53:30 [ 11] [ 6] [155725] +09:53:30 [ 70] [ 3] [301] +09:53:30 ============================================================================ +09:53:30 + + +waiting on router queue for slot.... +09:53:30 Sending to : +09:53:30 ============================================================================ +09:53:30 ============================================================================ +09:53:30 Slot Id : <298> +09:53:30 Transaction Type : RESPONSE +09:53:30 Received From : +09:53:30 ============================================================================ +09:53:30 FNo. Len. Field Value +09:53:30 ============================================================================ +09:53:30 [ 1] [ 4] [0810] +09:53:30 [ 7] [ 10] [0320025238] +09:53:30 [ 11] [ 6] [155725] +09:53:30 [ 39] [ 2] [00] +09:53:30 [ 70] [ 3] [301] +09:53:30 ============================================================================ +09:53:30 Calculate Source COMM Id = 2 +09:53:30 ============================================================================ +09:53:30 + + +waiting on router queue for slot.... +09:53:36 ============================================================================ +09:53:36 Slot Id : <257> +09:53:36 Transaction Type : REQUEST +09:53:36 Received From : +09:53:36 ============================================================================ +09:53:36 FNo. Len. Field Value +09:53:36 ============================================================================ +09:53:36 [ 1] [ 4] [0200] +09:53:36 [ 2] [ 16] [6213545000828859] +09:53:36 [ 3] [ 6] [301000] +09:53:36 [ 7] [ 10] [0320025243] +09:53:36 [ 11] [ 6] [267810] +09:53:36 [ 12] [ 6] [095243] +09:53:36 [ 13] [ 4] [0320] +09:53:36 [ 14] [ 4] [4912] +09:53:36 [ 15] [ 4] [0320] +09:53:36 [ 18] [ 4] [6011] +09:53:36 [ 19] [ 3] [418] +09:53:36 [ 22] [ 3] [021] +09:53:36 [ 25] [ 2] [01] +09:53:36 [ 32] [ 6] [180893] +09:53:36 [ 35] [ 32] [6213545000828859=491212012885231] +09:53:36 [ 37] [ 12] [507902267810] +09:53:36 [ 41] [ 8] [0262PSLB] +09:53:36 [ 42] [ 15] [999999 ] +09:53:36 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +09:53:36 [ 49] [ 3] [418] +09:53:36 [ 52] [ 16] [31DBBE6275B24AC7] +09:53:36 ============================================================================ +09:53:36 + + +waiting on router queue for slot.... +09:53:36 Sending to : +09:53:36 ============================================================================ +09:53:36 Sending to : +09:53:36 ============================================================================ +09:53:36 ============================================================================ +09:53:36 Slot Id : <257> +09:53:36 Transaction Type : REQUEST +09:53:36 Received From : +09:53:36 ============================================================================ +09:53:36 FNo. Len. Field Value +09:53:36 ============================================================================ +09:53:36 [ 1] [ 4] [0200] +09:53:36 [ 2] [ 16] [6213545000828859] +09:53:36 [ 3] [ 6] [301000] +09:53:36 [ 7] [ 10] [0320025243] +09:53:36 [ 11] [ 6] [267810] +09:53:36 [ 12] [ 6] [095243] +09:53:36 [ 13] [ 4] [0320] +09:53:36 [ 14] [ 4] [4912] +09:53:36 [ 15] [ 4] [0320] +09:53:36 [ 18] [ 4] [6011] +09:53:36 [ 19] [ 3] [418] +09:53:36 [ 22] [ 3] [021] +09:53:36 [ 25] [ 2] [01] +09:53:36 [ 32] [ 6] [180893] +09:53:36 [ 35] [ 32] [6213545000828859=491212012885231] +09:53:36 [ 37] [ 12] [507902267810] +09:53:36 [ 41] [ 8] [0262PSLB] +09:53:36 [ 42] [ 15] [999999 ] +09:53:36 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +09:53:36 [ 49] [ 3] [418] +09:53:36 [ 52] [ 16] [31DBBE6275B24AC7] +09:53:36 ============================================================================ +09:53:36 + + +waiting on router queue for slot.... +09:53:36 Sending to : +09:53:36 ============================================================================ +09:53:36 ============================================================================ +09:53:36 Slot Id : <257> +09:53:36 Transaction Type : REQUEST +09:53:36 Received From : +09:53:36 ============================================================================ +09:53:36 FNo. Len. Field Value +09:53:36 ============================================================================ +09:53:36 [ 1] [ 4] [0200] +09:53:36 [ 2] [ 16] [6213545000828859] +09:53:36 [ 3] [ 6] [301000] +09:53:36 [ 7] [ 10] [0320025243] +09:53:36 [ 11] [ 6] [267810] +09:53:36 [ 12] [ 6] [095243] +09:53:36 [ 13] [ 4] [0320] +09:53:36 [ 14] [ 4] [4912] +09:53:36 [ 15] [ 4] [0320] +09:53:36 [ 18] [ 4] [6011] +09:53:36 [ 19] [ 3] [418] +09:53:36 [ 22] [ 3] [021] +09:53:36 [ 25] [ 2] [01] +09:53:36 [ 32] [ 6] [180893] +09:53:36 [ 35] [ 32] [6213545000828859=491212012885231] +09:53:36 [ 37] [ 12] [507902267810] +09:53:36 [ 41] [ 8] [0262PSLB] +09:53:36 [ 42] [ 15] [999999 ] +09:53:36 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +09:53:36 [ 49] [ 3] [418] +09:53:36 [ 52] [ 16] [38E2810DD1B15A2E] +09:53:36 ============================================================================ +09:53:36 + + +waiting on router queue for slot.... +09:53:36 Sending to : <0> +09:53:36 ============================================================================ +09:53:37 ============================================================================ +09:53:37 Slot Id : <257> +09:53:37 Transaction Type : RESPONSE +09:53:37 Received From : +09:53:37 ============================================================================ +09:53:37 FNo. Len. Field Value +09:53:37 ============================================================================ +09:53:37 [ 1] [ 4] [0210] +09:53:37 [ 2] [ 16] [6213545000828859] +09:53:37 [ 3] [ 6] [301000] +09:53:37 [ 4] [ 12] [000000000000] +09:53:37 [ 7] [ 10] [0320025243] +09:53:37 [ 11] [ 6] [267810] +09:53:37 [ 12] [ 6] [095243] +09:53:37 [ 13] [ 4] [0320] +09:53:37 [ 15] [ 4] [0320] +09:53:37 [ 18] [ 4] [6011] +09:53:37 [ 19] [ 3] [418] +09:53:37 [ 32] [ 6] [180893] +09:53:37 [ 35] [ 32] [6213545000828859=491212012885231] +09:53:37 [ 37] [ 12] [507902267810] +09:53:37 [ 38] [ 6] [810848] +09:53:37 [ 39] [ 2] [00] +09:53:37 [ 41] [ 8] [0262PSLB] +09:53:37 [ 49] [ 3] [418] +09:53:37 [ 54] [ 40] [1001418C0002271328871002418C000227132887] +09:53:37 ============================================================================ +09:53:37 Sending to : +09:53:37 ============================================================================ +09:53:37 + + +waiting on router queue for slot.... +09:53:38 ============================================================================ +09:53:38 Slot Id : <257> +09:53:38 Transaction Type : RESPONSE +09:53:38 Received From : +09:53:38 ============================================================================ +09:53:38 FNo. Len. Field Value +09:53:38 ============================================================================ +09:53:38 [ 1] [ 4] [0210] +09:53:38 [ 2] [ 16] [6213545000828859] +09:53:38 [ 3] [ 6] [301000] +09:53:38 [ 4] [ 12] [000000000000] +09:53:38 [ 7] [ 10] [0320025243] +09:53:38 [ 11] [ 6] [267810] +09:53:38 [ 12] [ 6] [095243] +09:53:38 [ 13] [ 4] [0320] +09:53:38 [ 15] [ 4] [0320] +09:53:38 [ 18] [ 4] [6011] +09:53:38 [ 19] [ 3] [418] +09:53:38 [ 32] [ 6] [180893] +09:53:38 [ 35] [ 32] [6213545000828859=491212012885231] +09:53:38 [ 37] [ 12] [507902267810] +09:53:38 [ 38] [ 6] [810848] +09:53:38 [ 39] [ 2] [00] +09:53:38 [ 41] [ 8] [0262PSLB] +09:53:38 [ 49] [ 3] [418] +09:53:38 [ 54] [ 40] [1001418C0002271328871002418C000227132887] +09:53:38 ============================================================================ +09:53:38 Calculate Source COMM Id = 2 +09:53:38 ============================================================================ +09:53:38 + + +waiting on router queue for slot.... +09:53:42 ============================================================================ +09:53:42 Slot Id : <302> +09:53:42 Transaction Type : REQUEST +09:53:42 Received From : +09:53:42 ============================================================================ +09:53:42 FNo. Len. Field Value +09:53:42 ============================================================================ +09:53:42 [ 1] [ 4] [0200] +09:53:42 [ 2] [ 16] [6213544000060761] +09:53:42 [ 3] [ 6] [010000] +09:53:42 [ 4] [ 12] [000023000000] +09:53:42 [ 7] [ 10] [0320100129] +09:53:42 [ 11] [ 6] [223692] +09:53:42 [ 12] [ 6] [100129] +09:53:42 [ 13] [ 4] [0320] +09:53:42 [ 14] [ 4] [4912] +09:53:42 [ 15] [ 4] [0320] +09:53:42 [ 18] [ 4] [6011] +09:53:42 [ 22] [ 3] [900] +09:53:42 [ 25] [ 2] [02] +09:53:42 [ 28] [ 9] [D00002000] +09:53:42 [ 32] [ 6] [220699] +09:53:42 [ 35] [ 32] [6213544000060761=491212016076498] +09:53:42 [ 37] [ 12] [507900118741] +09:53:42 [ 41] [ 8] [01001100] +09:53:42 [ 42] [ 15] [APTRA ] +09:53:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:53:42 [ 49] [ 3] [418] +09:53:42 [ 52] [ 16] [5D21334F553EE43C] +09:53:42 ============================================================================ +09:53:42 + + +waiting on router queue for slot.... +09:53:42 Sending to : +09:53:42 ============================================================================ +09:53:42 Sending to : +09:53:42 ============================================================================ +09:53:42 ============================================================================ +09:53:42 Slot Id : <302> +09:53:42 Transaction Type : REQUEST +09:53:42 Received From : +09:53:42 ============================================================================ +09:53:42 FNo. Len. Field Value +09:53:42 ============================================================================ +09:53:42 [ 1] [ 4] [0200] +09:53:42 [ 2] [ 16] [6213544000060761] +09:53:42 [ 3] [ 6] [010000] +09:53:42 [ 4] [ 12] [000023000000] +09:53:42 [ 7] [ 10] [0320100129] +09:53:42 [ 11] [ 6] [223692] +09:53:42 [ 12] [ 6] [100129] +09:53:42 [ 13] [ 4] [0320] +09:53:42 [ 14] [ 4] [4912] +09:53:42 [ 15] [ 4] [0320] +09:53:42 [ 18] [ 4] [6011] +09:53:42 [ 22] [ 3] [900] +09:53:42 [ 25] [ 2] [02] +09:53:42 [ 28] [ 9] [D00002000] +09:53:42 [ 32] [ 6] [220699] +09:53:42 [ 35] [ 32] [6213544000060761=491212016076498] +09:53:42 [ 37] [ 12] [507900118741] +09:53:42 [ 41] [ 8] [01001100] +09:53:42 [ 42] [ 15] [APTRA ] +09:53:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:53:42 [ 49] [ 3] [418] +09:53:42 [ 52] [ 16] [5D21334F553EE43C] +09:53:42 ============================================================================ +09:53:42 + + +waiting on router queue for slot.... +09:53:42 Sending to : +09:53:42 ============================================================================ +09:53:42 ============================================================================ +09:53:42 Slot Id : <302> +09:53:42 Transaction Type : REQUEST +09:53:42 Received From : +09:53:42 ============================================================================ +09:53:42 FNo. Len. Field Value +09:53:42 ============================================================================ +09:53:42 [ 1] [ 4] [0200] +09:53:42 [ 2] [ 16] [6213544000060761] +09:53:42 [ 3] [ 6] [010000] +09:53:42 [ 4] [ 12] [000023000000] +09:53:42 [ 7] [ 10] [0320100129] +09:53:42 [ 11] [ 6] [223692] +09:53:42 [ 12] [ 6] [100129] +09:53:42 [ 13] [ 4] [0320] +09:53:42 [ 14] [ 4] [4912] +09:53:42 [ 15] [ 4] [0320] +09:53:42 [ 18] [ 4] [6011] +09:53:42 [ 22] [ 3] [900] +09:53:42 [ 25] [ 2] [02] +09:53:42 [ 28] [ 9] [D00002000] +09:53:42 [ 32] [ 6] [220699] +09:53:42 [ 35] [ 32] [6213544000060761=491212016076498] +09:53:42 [ 37] [ 12] [507900118741] +09:53:42 [ 41] [ 8] [01001100] +09:53:42 [ 42] [ 15] [APTRA ] +09:53:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:53:42 [ 49] [ 3] [418] +09:53:42 [ 52] [ 16] [1F8256624E0D306E] +09:53:42 ============================================================================ +09:53:42 + + +waiting on router queue for slot.... +09:53:42 Sending to : <0> +09:53:42 ============================================================================ +09:53:43 ============================================================================ +09:53:43 Slot Id : <302> +09:53:43 Transaction Type : RESPONSE +09:53:43 Received From : +09:53:43 ============================================================================ +09:53:43 FNo. Len. Field Value +09:53:43 ============================================================================ +09:53:43 [ 1] [ 4] [0210] +09:53:43 [ 2] [ 16] [6213544000060761] +09:53:43 [ 3] [ 6] [010000] +09:53:43 [ 4] [ 12] [000023000000] +09:53:43 [ 7] [ 10] [0320100129] +09:53:43 [ 11] [ 6] [223692] +09:53:43 [ 12] [ 6] [100129] +09:53:43 [ 13] [ 4] [0320] +09:53:43 [ 15] [ 4] [0320] +09:53:43 [ 18] [ 4] [6011] +09:53:43 [ 32] [ 6] [220699] +09:53:43 [ 35] [ 32] [6213544000060761=491212016076498] +09:53:43 [ 37] [ 12] [507900118741] +09:53:43 [ 38] [ 6] [945469] +09:53:43 [ 39] [ 2] [00] +09:53:43 [ 41] [ 8] [01001100] +09:53:43 [ 49] [ 3] [418] +09:53:43 [ 54] [ 40] [0001418C0000254794410002418C000025479441] +09:53:43 ============================================================================ +09:53:43 Sending to : +09:53:43 ============================================================================ +09:53:43 + + +waiting on router queue for slot.... +09:53:44 ============================================================================ +09:53:44 Slot Id : <281> +09:53:44 Transaction Type : REQUEST +09:53:44 Received From : +09:53:44 ============================================================================ +09:53:44 FNo. Len. Field Value +09:53:44 ============================================================================ +09:53:44 [ 1] [ 4] [0200] +09:53:44 [ 2] [ 16] [6688990100941507] +09:53:44 [ 3] [ 6] [010000] +09:53:44 [ 4] [ 12] [000070000000] +09:53:44 [ 7] [ 10] [0320095340] +09:53:44 [ 11] [ 6] [705562] +09:53:44 [ 12] [ 6] [095340] +09:53:44 [ 13] [ 4] [0320] +09:53:44 [ 15] [ 4] [0320] +09:53:44 [ 18] [ 4] [6011] +09:53:44 [ 22] [ 3] [900] +09:53:44 [ 25] [ 2] [02] +09:53:44 [ 28] [ 9] [D00002000] +09:53:44 [ 32] [ 6] [621354] +09:53:44 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:53:44 [ 37] [ 12] [507904719457] +09:53:44 [ 41] [ 8] [18001000] +09:53:44 [ 42] [ 15] [NATIVE ] +09:53:44 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:53:44 [ 49] [ 3] [418] +09:53:44 [ 52] [ 16] [3B496FEB663F5696] +09:53:44 ============================================================================ +09:53:44 + + +waiting on router queue for slot.... +09:53:44 Sending to : +09:53:44 ============================================================================ +09:53:44 Sending to : +09:53:44 ============================================================================ +09:53:44 ============================================================================ +09:53:44 Slot Id : <281> +09:53:44 Transaction Type : REQUEST +09:53:44 Received From : +09:53:44 ============================================================================ +09:53:44 FNo. Len. Field Value +09:53:44 ============================================================================ +09:53:44 [ 1] [ 4] [0200] +09:53:44 [ 2] [ 16] [6688990100941507] +09:53:44 [ 3] [ 6] [010000] +09:53:44 [ 4] [ 12] [000070000000] +09:53:44 [ 7] [ 10] [0320095340] +09:53:44 [ 11] [ 6] [705562] +09:53:44 [ 12] [ 6] [095340] +09:53:44 [ 13] [ 4] [0320] +09:53:44 [ 15] [ 4] [0320] +09:53:44 [ 18] [ 4] [6011] +09:53:44 [ 22] [ 3] [900] +09:53:44 [ 25] [ 2] [02] +09:53:44 [ 28] [ 9] [D00002000] +09:53:44 [ 32] [ 6] [621354] +09:53:44 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:53:44 [ 37] [ 12] [507904719457] +09:53:44 [ 41] [ 8] [18001000] +09:53:44 [ 42] [ 15] [NATIVE ] +09:53:44 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:53:44 [ 49] [ 3] [418] +09:53:44 [ 52] [ 16] [3B496FEB663F5696] +09:53:44 ============================================================================ +09:53:44 + + +waiting on router queue for slot.... +09:53:44 Sending to : +09:53:44 ============================================================================ +09:53:44 ============================================================================ +09:53:44 Slot Id : <281> +09:53:44 Transaction Type : REQUEST +09:53:44 Received From : +09:53:44 ============================================================================ +09:53:44 FNo. Len. Field Value +09:53:44 ============================================================================ +09:53:44 [ 1] [ 4] [0200] +09:53:44 [ 2] [ 16] [6688990100941507] +09:53:44 [ 3] [ 6] [010000] +09:53:44 [ 4] [ 12] [000070000000] +09:53:44 [ 7] [ 10] [0320095340] +09:53:44 [ 11] [ 6] [705562] +09:53:44 [ 12] [ 6] [095340] +09:53:44 [ 13] [ 4] [0320] +09:53:44 [ 15] [ 4] [0320] +09:53:44 [ 18] [ 4] [6011] +09:53:44 [ 22] [ 3] [900] +09:53:44 [ 25] [ 2] [02] +09:53:44 [ 28] [ 9] [D00002000] +09:53:44 [ 32] [ 6] [621354] +09:53:44 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:53:44 [ 37] [ 12] [507904719457] +09:53:44 [ 41] [ 8] [18001000] +09:53:44 [ 42] [ 15] [NATIVE ] +09:53:44 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:53:44 [ 49] [ 3] [418] +09:53:44 [ 52] [ 16] [708A5172D2D707EC] +09:53:44 ============================================================================ +09:53:44 + + +waiting on router queue for slot.... +09:53:44 Sending to : <4> +09:53:44 ============================================================================ +09:53:45 ============================================================================ +09:53:45 Slot Id : <299> +09:53:45 Transaction Type : REQUEST +09:53:45 Received From : +09:53:45 ============================================================================ +09:53:45 FNo. Len. Field Value +09:53:45 ============================================================================ +09:53:45 [ 1] [ 4] [0800] +09:53:45 [ 2] [ 5] [02531] +09:53:45 [ 3] [ 6] [579098] +09:53:45 [ 7] [ 10] [0320025345] +09:53:45 [ 11] [ 6] [806986] +09:53:45 [ 15] [ 10] [0320025345] +09:53:45 [ 37] [ 11] [57909806986] +09:53:45 [ 70] [ 3] [001] +09:53:45 ============================================================================ +09:53:45 + + +waiting on router queue for slot.... +09:53:45 ============================================================================ +09:53:45 Slot Id : <299> +09:53:45 Transaction Type : RESPONSE +09:53:45 Received From : +09:53:45 ============================================================================ +09:53:45 FNo. Len. Field Value +09:53:45 ============================================================================ +09:53:45 [ 1] [ 4] [0810] +09:53:45 [ 7] [ 10] [0320025345] +09:53:45 [ 11] [ 6] [806986] +09:53:45 [ 15] [ 4] [0320] +09:53:45 [ 37] [ 12] [57909806986] +09:53:45 [ 39] [ 2] [00] +09:53:45 [ 70] [ 3] [001] +09:53:45 ============================================================================ +09:53:45 Sending to : +09:53:45 ============================================================================ +09:53:45 + + +waiting on router queue for slot.... +09:53:45 ============================================================================ +09:53:45 Slot Id : <302> +09:53:45 Transaction Type : RESPONSE +09:53:45 Received From : +09:53:45 ============================================================================ +09:53:45 FNo. Len. Field Value +09:53:45 ============================================================================ +09:53:45 [ 1] [ 4] [0210] +09:53:45 [ 2] [ 16] [6213544000060761] +09:53:45 [ 3] [ 6] [010000] +09:53:45 [ 4] [ 12] [000023000000] +09:53:45 [ 7] [ 10] [0320100129] +09:53:45 [ 11] [ 6] [223692] +09:53:45 [ 12] [ 6] [100129] +09:53:45 [ 13] [ 4] [0320] +09:53:45 [ 15] [ 4] [0320] +09:53:45 [ 18] [ 4] [6011] +09:53:45 [ 32] [ 6] [220699] +09:53:45 [ 35] [ 32] [6213544000060761=491212016076498] +09:53:45 [ 37] [ 12] [507900118741] +09:53:45 [ 38] [ 6] [945469] +09:53:45 [ 39] [ 2] [00] +09:53:45 [ 41] [ 8] [01001100] +09:53:45 [ 49] [ 3] [418] +09:53:45 [ 54] [ 40] [0001418C0000254794410002418C000025479441] +09:53:45 ============================================================================ +09:53:45 Calculate Source COMM Id = 1 +09:53:45 ============================================================================ +09:53:45 + + +waiting on router queue for slot.... +09:53:45 ============================================================================ +09:53:45 Slot Id : <281> +09:53:45 Transaction Type : RESPONSE +09:53:45 Received From : +09:53:45 ============================================================================ +09:53:45 FNo. Len. Field Value +09:53:45 ============================================================================ +09:53:45 [ 1] [ 4] [0210] +09:53:45 [ 2] [ 16] [6688990100941507] +09:53:45 [ 3] [ 6] [010000] +09:53:45 [ 4] [ 12] [000070000000] +09:53:45 [ 11] [ 6] [705562] +09:53:45 [ 12] [ 6] [095340] +09:53:45 [ 15] [ 4] [0320] +09:53:45 [ 18] [ 4] [6011] +09:53:45 [ 32] [ 6] [621354] +09:53:45 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:53:45 [ 37] [ 12] [507904719457] +09:53:45 [ 39] [ 2] [51] +09:53:45 [ 41] [ 8] [18001000] +09:53:45 [ 49] [ 3] [418] +09:53:45 [ 54] [ 0] [] +09:53:45 ============================================================================ +09:53:45 Sending to : +09:53:45 ============================================================================ +09:53:45 + + +waiting on router queue for slot.... +09:53:46 ============================================================================ +09:53:46 Slot Id : <281> +09:53:46 Transaction Type : RESPONSE +09:53:46 Received From : +09:53:46 ============================================================================ +09:53:46 FNo. Len. Field Value +09:53:46 ============================================================================ +09:53:46 [ 1] [ 4] [0210] +09:53:46 [ 2] [ 16] [6688990100941507] +09:53:46 [ 3] [ 6] [010000] +09:53:46 [ 4] [ 12] [000070000000] +09:53:46 [ 11] [ 6] [705562] +09:53:46 [ 12] [ 6] [095340] +09:53:46 [ 15] [ 4] [0320] +09:53:46 [ 18] [ 4] [6011] +09:53:46 [ 32] [ 6] [621354] +09:53:46 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:53:46 [ 37] [ 12] [507904719457] +09:53:46 [ 39] [ 2] [51] +09:53:46 [ 41] [ 8] [18001000] +09:53:46 [ 49] [ 3] [418] +09:53:46 [ 54] [ 0] [] +09:53:46 ============================================================================ +09:53:46 Calculate Source COMM Id = 0 +09:53:46 ============================================================================ +09:53:46 + + +waiting on router queue for slot.... +09:53:47 ============================================================================ +09:53:47 Slot Id : <292> +09:53:47 Transaction Type : REQUEST +09:53:47 Received From : +09:53:47 ============================================================================ +09:53:47 FNo. Len. Field Value +09:53:47 ============================================================================ +09:53:47 [ 1] [ 4] [0200] +09:53:47 [ 2] [ 16] [6213545000077697] +09:53:47 [ 3] [ 6] [010000] +09:53:47 [ 4] [ 12] [000100000000] +09:53:47 [ 7] [ 10] [0320025253] +09:53:47 [ 11] [ 6] [267812] +09:53:47 [ 12] [ 6] [095253] +09:53:47 [ 13] [ 4] [0320] +09:53:47 [ 14] [ 4] [4912] +09:53:47 [ 15] [ 4] [0320] +09:53:47 [ 18] [ 4] [6011] +09:53:47 [ 19] [ 3] [418] +09:53:47 [ 22] [ 3] [021] +09:53:47 [ 25] [ 2] [01] +09:53:47 [ 28] [ 9] [D00002000] +09:53:47 [ 32] [ 6] [180893] +09:53:47 [ 35] [ 32] [6213545000077697=491212017769751] +09:53:47 [ 37] [ 12] [507902267812] +09:53:47 [ 41] [ 8] [0112CPBR] +09:53:47 [ 42] [ 15] [999999 ] +09:53:47 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:53:47 [ 49] [ 3] [418] +09:53:47 [ 52] [ 16] [BC3B492E1E2B8E2E] +09:53:47 ============================================================================ +09:53:47 + + +waiting on router queue for slot.... +09:53:47 Sending to : +09:53:47 ============================================================================ +09:53:47 Sending to : +09:53:47 ============================================================================ +09:53:47 ============================================================================ +09:53:47 Slot Id : <292> +09:53:47 Transaction Type : REQUEST +09:53:47 Received From : +09:53:47 ============================================================================ +09:53:47 FNo. Len. Field Value +09:53:47 ============================================================================ +09:53:47 [ 1] [ 4] [0200] +09:53:47 [ 2] [ 16] [6213545000077697] +09:53:47 [ 3] [ 6] [010000] +09:53:47 [ 4] [ 12] [000100000000] +09:53:47 [ 7] [ 10] [0320025253] +09:53:47 [ 11] [ 6] [267812] +09:53:47 [ 12] [ 6] [095253] +09:53:47 [ 13] [ 4] [0320] +09:53:47 [ 14] [ 4] [4912] +09:53:47 [ 15] [ 4] [0320] +09:53:47 [ 18] [ 4] [6011] +09:53:47 [ 19] [ 3] [418] +09:53:47 [ 22] [ 3] [021] +09:53:47 [ 25] [ 2] [01] +09:53:47 [ 28] [ 9] [D00002000] +09:53:47 [ 32] [ 6] [180893] +09:53:47 [ 35] [ 32] [6213545000077697=491212017769751] +09:53:47 [ 37] [ 12] [507902267812] +09:53:47 [ 41] [ 8] [0112CPBR] +09:53:47 [ 42] [ 15] [999999 ] +09:53:47 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:53:47 [ 49] [ 3] [418] +09:53:47 [ 52] [ 16] [BC3B492E1E2B8E2E] +09:53:47 ============================================================================ +09:53:47 + + +waiting on router queue for slot.... +09:53:47 Sending to : +09:53:47 ============================================================================ +09:53:47 ============================================================================ +09:53:47 Slot Id : <292> +09:53:47 Transaction Type : REQUEST +09:53:47 Received From : +09:53:47 ============================================================================ +09:53:47 FNo. Len. Field Value +09:53:47 ============================================================================ +09:53:47 [ 1] [ 4] [0200] +09:53:47 [ 2] [ 16] [6213545000077697] +09:53:47 [ 3] [ 6] [010000] +09:53:47 [ 4] [ 12] [000100000000] +09:53:47 [ 7] [ 10] [0320025253] +09:53:47 [ 11] [ 6] [267812] +09:53:47 [ 12] [ 6] [095253] +09:53:47 [ 13] [ 4] [0320] +09:53:47 [ 14] [ 4] [4912] +09:53:47 [ 15] [ 4] [0320] +09:53:47 [ 18] [ 4] [6011] +09:53:47 [ 19] [ 3] [418] +09:53:47 [ 22] [ 3] [021] +09:53:47 [ 25] [ 2] [01] +09:53:47 [ 28] [ 9] [D00002000] +09:53:47 [ 32] [ 6] [180893] +09:53:47 [ 35] [ 32] [6213545000077697=491212017769751] +09:53:47 [ 37] [ 12] [507902267812] +09:53:47 [ 41] [ 8] [0112CPBR] +09:53:47 [ 42] [ 15] [999999 ] +09:53:47 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:53:47 [ 49] [ 3] [418] +09:53:47 [ 52] [ 16] [1C1913D53AAA3D83] +09:53:47 ============================================================================ +09:53:47 + + +waiting on router queue for slot.... +09:53:47 Sending to : <0> +09:53:47 ============================================================================ +09:53:49 ============================================================================ +09:53:49 Slot Id : <292> +09:53:49 Transaction Type : RESPONSE +09:53:49 Received From : +09:53:49 ============================================================================ +09:53:49 FNo. Len. Field Value +09:53:49 ============================================================================ +09:53:49 [ 1] [ 4] [0210] +09:53:49 [ 2] [ 16] [6213545000077697] +09:53:49 [ 3] [ 6] [010000] +09:53:49 [ 4] [ 12] [000100000000] +09:53:49 [ 7] [ 10] [0320025253] +09:53:49 [ 11] [ 6] [267812] +09:53:49 [ 12] [ 6] [095253] +09:53:49 [ 13] [ 4] [0320] +09:53:49 [ 15] [ 4] [0320] +09:53:49 [ 18] [ 4] [6011] +09:53:49 [ 19] [ 3] [418] +09:53:49 [ 32] [ 6] [180893] +09:53:49 [ 35] [ 32] [6213545000077697=491212017769751] +09:53:49 [ 37] [ 12] [507902267812] +09:53:49 [ 38] [ 6] [664962] +09:53:49 [ 39] [ 2] [00] +09:53:49 [ 41] [ 8] [0112CPBR] +09:53:49 [ 49] [ 3] [418] +09:53:49 [ 54] [ 40] [0001418C0000379168220002418C000037916822] +09:53:49 ============================================================================ +09:53:49 Sending to : +09:53:49 ============================================================================ +09:53:49 + + +waiting on router queue for slot.... +09:53:49 ============================================================================ +09:53:49 Slot Id : <300> +09:53:49 Transaction Type : REQUEST +09:53:49 Received From : +09:53:49 ============================================================================ +09:53:49 FNo. Len. Field Value +09:53:49 ============================================================================ +09:53:49 [ 1] [ 4] [0800] +09:53:49 [ 7] [ 10] [0320170538] +09:53:49 [ 11] [ 6] [100538] +09:53:49 [ 37] [ 12] [57910100538] +09:53:49 [ 70] [ 3] [301] +09:53:49 ============================================================================ +09:53:49 + + +waiting on router queue for slot.... +09:53:49 Sending to : +09:53:49 ============================================================================ +09:53:49 ============================================================================ +09:53:49 Slot Id : <300> +09:53:49 Transaction Type : RESPONSE +09:53:49 Received From : +09:53:49 ============================================================================ +09:53:49 FNo. Len. Field Value +09:53:49 ============================================================================ +09:53:49 [ 1] [ 4] [0810] +09:53:49 [ 7] [ 10] [0320170538] +09:53:49 [ 11] [ 6] [100538] +09:53:49 [ 37] [ 12] [579101005380] +09:53:49 [ 39] [ 2] [00] +09:53:49 [ 70] [ 3] [810] +09:53:49 ============================================================================ +09:53:49 Calculate Source COMM Id = 6 +09:53:49 ============================================================================ +09:53:49 + + +waiting on router queue for slot.... +09:53:51 ============================================================================ +09:53:51 Slot Id : <292> +09:53:51 Transaction Type : RESPONSE +09:53:51 Received From : +09:53:51 ============================================================================ +09:53:51 FNo. Len. Field Value +09:53:51 ============================================================================ +09:53:51 [ 1] [ 4] [0210] +09:53:51 [ 2] [ 16] [6213545000077697] +09:53:51 [ 3] [ 6] [010000] +09:53:51 [ 4] [ 12] [000100000000] +09:53:51 [ 7] [ 10] [0320025253] +09:53:51 [ 11] [ 6] [267812] +09:53:51 [ 12] [ 6] [095253] +09:53:51 [ 13] [ 4] [0320] +09:53:51 [ 15] [ 4] [0320] +09:53:51 [ 18] [ 4] [6011] +09:53:51 [ 19] [ 3] [418] +09:53:51 [ 32] [ 6] [180893] +09:53:51 [ 35] [ 32] [6213545000077697=491212017769751] +09:53:51 [ 37] [ 12] [507902267812] +09:53:51 [ 38] [ 6] [664962] +09:53:51 [ 39] [ 2] [00] +09:53:51 [ 41] [ 8] [0112CPBR] +09:53:51 [ 49] [ 3] [418] +09:53:51 [ 54] [ 40] [0001418C0000379168220002418C000037916822] +09:53:51 ============================================================================ +09:53:51 Calculate Source COMM Id = 2 +09:53:51 ============================================================================ +09:53:51 + + +waiting on router queue for slot.... +09:53:52 ============================================================================ +09:53:52 Slot Id : <295> +09:53:52 Transaction Type : REQUEST +09:53:52 Received From : +09:53:52 ============================================================================ +09:53:52 FNo. Len. Field Value +09:53:52 ============================================================================ +09:53:52 [ 1] [ 4] [0800] +09:53:52 [ 7] [ 10] [0320025259] +09:53:52 [ 11] [ 6] [155726] +09:53:52 [ 70] [ 3] [301] +09:53:52 ============================================================================ +09:53:52 + + +waiting on router queue for slot.... +09:53:52 Sending to : +09:53:52 ============================================================================ +09:53:52 ============================================================================ +09:53:52 Slot Id : <295> +09:53:52 Transaction Type : RESPONSE +09:53:52 Received From : +09:53:52 ============================================================================ +09:53:52 FNo. Len. Field Value +09:53:52 ============================================================================ +09:53:52 [ 1] [ 4] [0810] +09:53:52 [ 7] [ 10] [0320025259] +09:53:52 [ 11] [ 6] [155726] +09:53:52 [ 39] [ 2] [00] +09:53:52 [ 70] [ 3] [301] +09:53:52 ============================================================================ +09:53:52 Calculate Source COMM Id = 2 +09:53:52 ============================================================================ +09:53:52 + + +waiting on router queue for slot.... +09:54:07 ============================================================================ +09:54:07 Slot Id : <308> +09:54:07 Transaction Type : REQUEST +09:54:07 Received From : +09:54:07 ============================================================================ +09:54:07 FNo. Len. Field Value +09:54:07 ============================================================================ +09:54:07 [ 1] [ 4] [0800] +09:54:07 [ 7] [ 10] [0320025316] +09:54:07 [ 11] [ 6] [155727] +09:54:07 [ 70] [ 3] [301] +09:54:07 ============================================================================ +09:54:07 + + +waiting on router queue for slot.... +09:54:07 Sending to : +09:54:07 ============================================================================ +09:54:07 ============================================================================ +09:54:07 Slot Id : <308> +09:54:07 Transaction Type : RESPONSE +09:54:07 Received From : +09:54:07 ============================================================================ +09:54:07 FNo. Len. Field Value +09:54:07 ============================================================================ +09:54:07 [ 1] [ 4] [0810] +09:54:07 [ 7] [ 10] [0320025316] +09:54:07 [ 11] [ 6] [155727] +09:54:07 [ 39] [ 2] [00] +09:54:07 [ 70] [ 3] [301] +09:54:07 ============================================================================ +09:54:07 Calculate Source COMM Id = 2 +09:54:07 ============================================================================ +09:54:07 + + +waiting on router queue for slot.... +09:54:18 ============================================================================ +09:54:18 Slot Id : <296> +09:54:18 Transaction Type : REQUEST +09:54:18 Received From : +09:54:18 ============================================================================ +09:54:18 FNo. Len. Field Value +09:54:18 ============================================================================ +09:54:18 [ 1] [ 4] [0200] +09:54:18 [ 2] [ 16] [6213545000828859] +09:54:18 [ 3] [ 6] [010000] +09:54:18 [ 4] [ 12] [000100000000] +09:54:18 [ 7] [ 10] [0320025326] +09:54:18 [ 11] [ 6] [267818] +09:54:18 [ 12] [ 6] [095326] +09:54:18 [ 13] [ 4] [0320] +09:54:18 [ 14] [ 4] [4912] +09:54:18 [ 15] [ 4] [0320] +09:54:18 [ 18] [ 4] [6011] +09:54:18 [ 19] [ 3] [418] +09:54:18 [ 22] [ 3] [021] +09:54:18 [ 25] [ 2] [01] +09:54:18 [ 28] [ 9] [D00002000] +09:54:18 [ 32] [ 6] [180893] +09:54:18 [ 35] [ 32] [6213545000828859=491212012885231] +09:54:18 [ 37] [ 12] [507902267818] +09:54:18 [ 41] [ 8] [0262PSLB] +09:54:18 [ 42] [ 15] [999999 ] +09:54:18 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +09:54:18 [ 49] [ 3] [418] +09:54:18 [ 52] [ 16] [31DBBE6275B24AC7] +09:54:18 ============================================================================ +09:54:18 + + +waiting on router queue for slot.... +09:54:18 Sending to : +09:54:18 ============================================================================ +09:54:18 Sending to : +09:54:18 ============================================================================ +09:54:18 ============================================================================ +09:54:18 Slot Id : <262> +09:54:18 Transaction Type : REQUEST +09:54:18 Received From : +09:54:18 ============================================================================ +09:54:18 FNo. Len. Field Value +09:54:18 ============================================================================ +09:54:18 [ 1] [ 4] [0800] +09:54:18 [ 7] [ 10] [0320025326] +09:54:18 [ 11] [ 6] [155728] +09:54:18 [ 70] [ 3] [301] +09:54:18 ============================================================================ +09:54:18 + + +waiting on router queue for slot.... +09:54:18 Sending to : +09:54:18 ============================================================================ +09:54:18 ============================================================================ +09:54:18 Slot Id : <262> +09:54:18 Transaction Type : RESPONSE +09:54:18 Received From : +09:54:18 ============================================================================ +09:54:18 FNo. Len. Field Value +09:54:18 ============================================================================ +09:54:18 [ 1] [ 4] [0810] +09:54:18 [ 7] [ 10] [0320025326] +09:54:18 [ 11] [ 6] [155728] +09:54:18 [ 39] [ 2] [00] +09:54:18 [ 70] [ 3] [301] +09:54:18 ============================================================================ +09:54:18 Calculate Source COMM Id = 2 +09:54:18 ============================================================================ +09:54:18 + + +waiting on router queue for slot.... +09:54:19 ============================================================================ +09:54:19 Slot Id : <296> +09:54:19 Transaction Type : REQUEST +09:54:19 Received From : +09:54:19 ============================================================================ +09:54:19 FNo. Len. Field Value +09:54:19 ============================================================================ +09:54:19 [ 1] [ 4] [0200] +09:54:19 [ 2] [ 16] [6213545000828859] +09:54:19 [ 3] [ 6] [010000] +09:54:19 [ 4] [ 12] [000100000000] +09:54:19 [ 7] [ 10] [0320025326] +09:54:19 [ 11] [ 6] [267818] +09:54:19 [ 12] [ 6] [095326] +09:54:19 [ 13] [ 4] [0320] +09:54:19 [ 14] [ 4] [4912] +09:54:19 [ 15] [ 4] [0320] +09:54:19 [ 18] [ 4] [6011] +09:54:19 [ 19] [ 3] [418] +09:54:19 [ 22] [ 3] [021] +09:54:19 [ 25] [ 2] [01] +09:54:19 [ 28] [ 9] [D00002000] +09:54:19 [ 32] [ 6] [180893] +09:54:19 [ 35] [ 32] [6213545000828859=491212012885231] +09:54:19 [ 37] [ 12] [507902267818] +09:54:19 [ 41] [ 8] [0262PSLB] +09:54:19 [ 42] [ 15] [999999 ] +09:54:19 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +09:54:19 [ 49] [ 3] [418] +09:54:19 [ 52] [ 16] [31DBBE6275B24AC7] +09:54:19 ============================================================================ +09:54:19 + + +waiting on router queue for slot.... +09:54:19 Sending to : +09:54:19 ============================================================================ +09:54:19 ============================================================================ +09:54:19 Slot Id : <296> +09:54:19 Transaction Type : REQUEST +09:54:19 Received From : +09:54:19 ============================================================================ +09:54:19 FNo. Len. Field Value +09:54:19 ============================================================================ +09:54:19 [ 1] [ 4] [0200] +09:54:19 [ 2] [ 16] [6213545000828859] +09:54:19 [ 3] [ 6] [010000] +09:54:19 [ 4] [ 12] [000100000000] +09:54:19 [ 7] [ 10] [0320025326] +09:54:19 [ 11] [ 6] [267818] +09:54:19 [ 12] [ 6] [095326] +09:54:19 [ 13] [ 4] [0320] +09:54:19 [ 14] [ 4] [4912] +09:54:19 [ 15] [ 4] [0320] +09:54:19 [ 18] [ 4] [6011] +09:54:19 [ 19] [ 3] [418] +09:54:19 [ 22] [ 3] [021] +09:54:19 [ 25] [ 2] [01] +09:54:19 [ 28] [ 9] [D00002000] +09:54:19 [ 32] [ 6] [180893] +09:54:19 [ 35] [ 32] [6213545000828859=491212012885231] +09:54:19 [ 37] [ 12] [507902267818] +09:54:19 [ 41] [ 8] [0262PSLB] +09:54:19 [ 42] [ 15] [999999 ] +09:54:19 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +09:54:19 [ 49] [ 3] [418] +09:54:19 [ 52] [ 16] [38E2810DD1B15A2E] +09:54:19 ============================================================================ +09:54:19 + + +waiting on router queue for slot.... +09:54:19 Sending to : <0> +09:54:19 ============================================================================ +09:54:19 ============================================================================ +09:54:19 Slot Id : <296> +09:54:19 Transaction Type : RESPONSE +09:54:19 Received From : +09:54:19 ============================================================================ +09:54:19 FNo. Len. Field Value +09:54:19 ============================================================================ +09:54:19 [ 1] [ 4] [0210] +09:54:19 [ 2] [ 16] [6213545000828859] +09:54:19 [ 3] [ 6] [010000] +09:54:19 [ 4] [ 12] [000100000000] +09:54:19 [ 7] [ 10] [0320025326] +09:54:19 [ 11] [ 6] [267818] +09:54:19 [ 12] [ 6] [095326] +09:54:19 [ 13] [ 4] [0320] +09:54:19 [ 15] [ 4] [0320] +09:54:19 [ 18] [ 4] [6011] +09:54:19 [ 19] [ 3] [418] +09:54:19 [ 32] [ 6] [180893] +09:54:19 [ 35] [ 32] [6213545000828859=491212012885231] +09:54:19 [ 37] [ 12] [507902267818] +09:54:19 [ 38] [ 6] [129296] +09:54:19 [ 39] [ 2] [00] +09:54:19 [ 41] [ 8] [0262PSLB] +09:54:19 [ 49] [ 3] [418] +09:54:19 [ 54] [ 40] [0001418C0001269328870002418C000126932887] +09:54:19 ============================================================================ +09:54:19 Sending to : +09:54:19 ============================================================================ +09:54:19 + + +waiting on router queue for slot.... +09:54:21 ============================================================================ +09:54:21 Slot Id : <296> +09:54:21 Transaction Type : RESPONSE +09:54:21 Received From : +09:54:21 ============================================================================ +09:54:21 FNo. Len. Field Value +09:54:21 ============================================================================ +09:54:21 [ 1] [ 4] [0210] +09:54:21 [ 2] [ 16] [6213545000828859] +09:54:21 [ 3] [ 6] [010000] +09:54:21 [ 4] [ 12] [000100000000] +09:54:21 [ 7] [ 10] [0320025326] +09:54:21 [ 11] [ 6] [267818] +09:54:21 [ 12] [ 6] [095326] +09:54:21 [ 13] [ 4] [0320] +09:54:21 [ 15] [ 4] [0320] +09:54:21 [ 18] [ 4] [6011] +09:54:21 [ 19] [ 3] [418] +09:54:21 [ 32] [ 6] [180893] +09:54:21 [ 35] [ 32] [6213545000828859=491212012885231] +09:54:21 [ 37] [ 12] [507902267818] +09:54:21 [ 38] [ 6] [129296] +09:54:21 [ 39] [ 2] [00] +09:54:21 [ 41] [ 8] [0262PSLB] +09:54:21 [ 49] [ 3] [418] +09:54:21 [ 54] [ 40] [0001418C0001269328870002418C000126932887] +09:54:21 ============================================================================ +09:54:21 Calculate Source COMM Id = 2 +09:54:21 ============================================================================ +09:54:21 + + +waiting on router queue for slot.... +09:54:27 ============================================================================ +09:54:27 Slot Id : <283> +09:54:27 Transaction Type : REQUEST +09:54:27 Received From : +09:54:27 ============================================================================ +09:54:27 FNo. Len. Field Value +09:54:27 ============================================================================ +09:54:27 [ 1] [ 4] [0200] +09:54:27 [ 2] [ 16] [6213548000525186] +09:54:27 [ 3] [ 6] [010000] +09:54:27 [ 4] [ 12] [000050000000] +09:54:27 [ 7] [ 10] [0320025335] +09:54:27 [ 11] [ 6] [267820] +09:54:27 [ 12] [ 6] [095335] +09:54:27 [ 13] [ 4] [0320] +09:54:27 [ 14] [ 4] [1812] +09:54:27 [ 15] [ 4] [0320] +09:54:27 [ 18] [ 4] [6011] +09:54:27 [ 19] [ 3] [418] +09:54:27 [ 22] [ 3] [021] +09:54:27 [ 25] [ 2] [01] +09:54:27 [ 28] [ 9] [D00002000] +09:54:27 [ 32] [ 6] [180893] +09:54:27 [ 35] [ 32] [6213548000525186=181212012518692] +09:54:27 [ 37] [ 12] [507902267820] +09:54:27 [ 41] [ 8] [0532XYKH] +09:54:27 [ 42] [ 15] [999999 ] +09:54:27 [ 43] [ 40] [ATM KHOP LOCATION, Khop, Lao People ] +09:54:27 [ 49] [ 3] [418] +09:54:27 [ 52] [ 16] [A80F01DCBC2BAAE9] +09:54:27 ============================================================================ +09:54:27 + + +waiting on router queue for slot.... +09:54:27 Sending to : +09:54:27 ============================================================================ +09:54:27 Sending to : +09:54:27 ============================================================================ +09:54:28 ============================================================================ +09:54:28 Slot Id : <283> +09:54:28 Transaction Type : REQUEST +09:54:28 Received From : +09:54:28 ============================================================================ +09:54:28 FNo. Len. Field Value +09:54:28 ============================================================================ +09:54:28 [ 1] [ 4] [0200] +09:54:28 [ 2] [ 16] [6213548000525186] +09:54:28 [ 3] [ 6] [010000] +09:54:28 [ 4] [ 12] [000050000000] +09:54:28 [ 7] [ 10] [0320025335] +09:54:28 [ 11] [ 6] [267820] +09:54:28 [ 12] [ 6] [095335] +09:54:28 [ 13] [ 4] [0320] +09:54:28 [ 14] [ 4] [1812] +09:54:28 [ 15] [ 4] [0320] +09:54:28 [ 18] [ 4] [6011] +09:54:28 [ 19] [ 3] [418] +09:54:28 [ 22] [ 3] [021] +09:54:28 [ 25] [ 2] [01] +09:54:28 [ 28] [ 9] [D00002000] +09:54:28 [ 32] [ 6] [180893] +09:54:28 [ 35] [ 32] [6213548000525186=181212012518692] +09:54:28 [ 37] [ 12] [507902267820] +09:54:28 [ 41] [ 8] [0532XYKH] +09:54:28 [ 42] [ 15] [999999 ] +09:54:28 [ 43] [ 40] [ATM KHOP LOCATION, Khop, Lao People ] +09:54:28 [ 49] [ 3] [418] +09:54:28 [ 52] [ 16] [A80F01DCBC2BAAE9] +09:54:28 ============================================================================ +09:54:28 + + +waiting on router queue for slot.... +09:54:28 Sending to : +09:54:28 ============================================================================ +09:54:28 ============================================================================ +09:54:28 Slot Id : <283> +09:54:28 Transaction Type : REQUEST +09:54:28 Received From : +09:54:28 ============================================================================ +09:54:28 FNo. Len. Field Value +09:54:28 ============================================================================ +09:54:28 [ 1] [ 4] [0200] +09:54:28 [ 2] [ 16] [6213548000525186] +09:54:28 [ 3] [ 6] [010000] +09:54:28 [ 4] [ 12] [000050000000] +09:54:28 [ 7] [ 10] [0320025335] +09:54:28 [ 11] [ 6] [267820] +09:54:28 [ 12] [ 6] [095335] +09:54:28 [ 13] [ 4] [0320] +09:54:28 [ 14] [ 4] [1812] +09:54:28 [ 15] [ 4] [0320] +09:54:28 [ 18] [ 4] [6011] +09:54:28 [ 19] [ 3] [418] +09:54:28 [ 22] [ 3] [021] +09:54:28 [ 25] [ 2] [01] +09:54:28 [ 28] [ 9] [D00002000] +09:54:28 [ 32] [ 6] [180893] +09:54:28 [ 35] [ 32] [6213548000525186=181212012518692] +09:54:28 [ 37] [ 12] [507902267820] +09:54:28 [ 41] [ 8] [0532XYKH] +09:54:28 [ 42] [ 15] [999999 ] +09:54:28 [ 43] [ 40] [ATM KHOP LOCATION, Khop, Lao People ] +09:54:28 [ 49] [ 3] [418] +09:54:28 [ 52] [ 16] [2F100533CE1FE995] +09:54:28 ============================================================================ +09:54:28 + + +waiting on router queue for slot.... +09:54:28 Sending to : <0> +09:54:28 ============================================================================ +09:54:28 ============================================================================ +09:54:28 Slot Id : <283> +09:54:28 Transaction Type : RESPONSE +09:54:28 Received From : +09:54:28 ============================================================================ +09:54:28 FNo. Len. Field Value +09:54:28 ============================================================================ +09:54:28 [ 1] [ 4] [0210] +09:54:28 [ 2] [ 16] [6213548000525186] +09:54:28 [ 3] [ 6] [010000] +09:54:28 [ 4] [ 12] [000050000000] +09:54:28 [ 7] [ 10] [0320025335] +09:54:28 [ 11] [ 6] [267820] +09:54:28 [ 12] [ 6] [095335] +09:54:28 [ 13] [ 4] [0320] +09:54:28 [ 15] [ 4] [0320] +09:54:28 [ 18] [ 4] [6011] +09:54:28 [ 19] [ 3] [418] +09:54:28 [ 32] [ 6] [180893] +09:54:28 [ 35] [ 32] [6213548000525186=181212012518692] +09:54:28 [ 37] [ 12] [507902267820] +09:54:28 [ 38] [ 6] [147488] +09:54:28 [ 39] [ 2] [00] +09:54:28 [ 41] [ 8] [0532XYKH] +09:54:28 [ 49] [ 3] [418] +09:54:28 [ 54] [ 40] [0001418C0000059428960002418C000005942896] +09:54:28 ============================================================================ +09:54:28 Sending to : +09:54:28 ============================================================================ +09:54:28 + + +waiting on router queue for slot.... +09:54:30 ============================================================================ +09:54:30 Slot Id : <283> +09:54:30 Transaction Type : RESPONSE +09:54:30 Received From : +09:54:30 ============================================================================ +09:54:30 FNo. Len. Field Value +09:54:30 ============================================================================ +09:54:30 [ 1] [ 4] [0210] +09:54:30 [ 2] [ 16] [6213548000525186] +09:54:30 [ 3] [ 6] [010000] +09:54:30 [ 4] [ 12] [000050000000] +09:54:30 [ 7] [ 10] [0320025335] +09:54:30 [ 11] [ 6] [267820] +09:54:30 [ 12] [ 6] [095335] +09:54:30 [ 13] [ 4] [0320] +09:54:30 [ 15] [ 4] [0320] +09:54:30 [ 18] [ 4] [6011] +09:54:30 [ 19] [ 3] [418] +09:54:30 [ 32] [ 6] [180893] +09:54:30 [ 35] [ 32] [6213548000525186=181212012518692] +09:54:30 [ 37] [ 12] [507902267820] +09:54:30 [ 38] [ 6] [147488] +09:54:30 [ 39] [ 2] [00] +09:54:30 [ 41] [ 8] [0532XYKH] +09:54:30 [ 49] [ 3] [418] +09:54:30 [ 54] [ 40] [0001418C0000059428960002418C000005942896] +09:54:30 ============================================================================ +09:54:30 Calculate Source COMM Id = 2 +09:54:30 ============================================================================ +09:54:30 + + +waiting on router queue for slot.... +09:54:41 ============================================================================ +09:54:41 Slot Id : <316> +09:54:41 Transaction Type : REQUEST +09:54:41 Received From : +09:54:41 ============================================================================ +09:54:41 FNo. Len. Field Value +09:54:41 ============================================================================ +09:54:41 [ 1] [ 4] [0800] +09:54:41 [ 7] [ 10] [0320025349] +09:54:41 [ 11] [ 6] [155729] +09:54:41 [ 70] [ 3] [301] +09:54:41 ============================================================================ +09:54:41 + + +waiting on router queue for slot.... +09:54:41 Sending to : +09:54:41 ============================================================================ +09:54:41 ============================================================================ +09:54:41 Slot Id : <316> +09:54:41 Transaction Type : RESPONSE +09:54:41 Received From : +09:54:41 ============================================================================ +09:54:41 FNo. Len. Field Value +09:54:41 ============================================================================ +09:54:41 [ 1] [ 4] [0810] +09:54:41 [ 7] [ 10] [0320025349] +09:54:41 [ 11] [ 6] [155729] +09:54:41 [ 39] [ 2] [00] +09:54:41 [ 70] [ 3] [301] +09:54:41 ============================================================================ +09:54:41 Calculate Source COMM Id = 2 +09:54:41 ============================================================================ +09:54:41 + + +waiting on router queue for slot.... +09:54:45 ============================================================================ +09:54:45 Slot Id : <311> +09:54:45 Transaction Type : REQUEST +09:54:45 Received From : +09:54:45 ============================================================================ +09:54:45 FNo. Len. Field Value +09:54:45 ============================================================================ +09:54:45 [ 1] [ 4] [0200] +09:54:45 [ 2] [ 16] [6213541000633829] +09:54:45 [ 3] [ 6] [010000] +09:54:45 [ 4] [ 12] [000020000000] +09:54:45 [ 7] [ 10] [0320095237] +09:54:45 [ 11] [ 6] [936930] +09:54:45 [ 12] [ 6] [095237] +09:54:45 [ 13] [ 4] [0320] +09:54:45 [ 15] [ 4] [0320] +09:54:45 [ 18] [ 4] [6011] +09:54:45 [ 19] [ 3] [418] +09:54:45 [ 22] [ 3] [021] +09:54:45 [ 25] [ 2] [01] +09:54:45 [ 28] [ 9] [D00002000] +09:54:45 [ 32] [ 6] [668899] +09:54:45 [ 35] [ 32] [6213541000633829=491212013382402] +09:54:45 [ 37] [ 12] [507902407325] +09:54:45 [ 41] [ 8] [03001010] +09:54:45 [ 42] [ 15] [APT ] +09:54:45 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +09:54:45 [ 49] [ 3] [418] +09:54:45 [ 52] [ 16] [794954BB2223E397] +09:54:45 ============================================================================ +09:54:45 + + +waiting on router queue for slot.... +09:54:45 Sending to : +09:54:45 ============================================================================ +09:54:45 Sending to : +09:54:45 ============================================================================ +09:54:46 ============================================================================ +09:54:46 Slot Id : <311> +09:54:46 Transaction Type : REQUEST +09:54:46 Received From : +09:54:46 ============================================================================ +09:54:46 FNo. Len. Field Value +09:54:46 ============================================================================ +09:54:46 [ 1] [ 4] [0200] +09:54:46 [ 2] [ 16] [6213541000633829] +09:54:46 [ 3] [ 6] [010000] +09:54:46 [ 4] [ 12] [000020000000] +09:54:46 [ 7] [ 10] [0320095237] +09:54:46 [ 11] [ 6] [936930] +09:54:46 [ 12] [ 6] [095237] +09:54:46 [ 13] [ 4] [0320] +09:54:46 [ 15] [ 4] [0320] +09:54:46 [ 18] [ 4] [6011] +09:54:46 [ 19] [ 3] [418] +09:54:46 [ 22] [ 3] [021] +09:54:46 [ 25] [ 2] [01] +09:54:46 [ 28] [ 9] [D00002000] +09:54:46 [ 32] [ 6] [668899] +09:54:46 [ 35] [ 32] [6213541000633829=491212013382402] +09:54:46 [ 37] [ 12] [507902407325] +09:54:46 [ 41] [ 8] [03001010] +09:54:46 [ 42] [ 15] [APT ] +09:54:46 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +09:54:46 [ 49] [ 3] [418] +09:54:46 [ 52] [ 16] [794954BB2223E397] +09:54:46 ============================================================================ +09:54:46 + + +waiting on router queue for slot.... +09:54:46 Sending to : +09:54:46 ============================================================================ +09:54:46 ============================================================================ +09:54:46 Slot Id : <311> +09:54:46 Transaction Type : REQUEST +09:54:46 Received From : +09:54:46 ============================================================================ +09:54:46 FNo. Len. Field Value +09:54:46 ============================================================================ +09:54:46 [ 1] [ 4] [0200] +09:54:46 [ 2] [ 16] [6213541000633829] +09:54:46 [ 3] [ 6] [010000] +09:54:46 [ 4] [ 12] [000020000000] +09:54:46 [ 7] [ 10] [0320095237] +09:54:46 [ 11] [ 6] [936930] +09:54:46 [ 12] [ 6] [095237] +09:54:46 [ 13] [ 4] [0320] +09:54:46 [ 15] [ 4] [0320] +09:54:46 [ 18] [ 4] [6011] +09:54:46 [ 19] [ 3] [418] +09:54:46 [ 22] [ 3] [021] +09:54:46 [ 25] [ 2] [01] +09:54:46 [ 28] [ 9] [D00002000] +09:54:46 [ 32] [ 6] [668899] +09:54:46 [ 35] [ 32] [6213541000633829=491212013382402] +09:54:46 [ 37] [ 12] [507902407325] +09:54:46 [ 41] [ 8] [03001010] +09:54:46 [ 42] [ 15] [APT ] +09:54:46 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +09:54:46 [ 49] [ 3] [418] +09:54:46 [ 52] [ 16] [801316E0575CCBDC] +09:54:46 ============================================================================ +09:54:46 + + +waiting on router queue for slot.... +09:54:46 Sending to : <0> +09:54:46 ============================================================================ +09:54:46 ============================================================================ +09:54:46 Slot Id : <311> +09:54:46 Transaction Type : RESPONSE +09:54:46 Received From : +09:54:46 ============================================================================ +09:54:46 FNo. Len. Field Value +09:54:46 ============================================================================ +09:54:46 [ 1] [ 4] [0210] +09:54:46 [ 2] [ 16] [6213541000633829] +09:54:46 [ 3] [ 6] [010000] +09:54:46 [ 4] [ 12] [000020000000] +09:54:46 [ 7] [ 10] [0320095237] +09:54:46 [ 11] [ 6] [936930] +09:54:46 [ 12] [ 6] [095237] +09:54:46 [ 13] [ 4] [0320] +09:54:46 [ 15] [ 4] [0320] +09:54:46 [ 18] [ 4] [6011] +09:54:46 [ 19] [ 3] [418] +09:54:46 [ 32] [ 6] [668899] +09:54:46 [ 35] [ 32] [6213541000633829=491212013382402] +09:54:46 [ 37] [ 12] [507902407325] +09:54:46 [ 38] [ 6] [207724] +09:54:46 [ 39] [ 2] [00] +09:54:46 [ 41] [ 8] [03001010] +09:54:46 [ 49] [ 3] [418] +09:54:46 [ 54] [ 40] [0001418C0000544237400002418C000054423740] +09:54:46 ============================================================================ +09:54:46 Sending to : +09:54:46 ============================================================================ +09:54:46 + + +waiting on router queue for slot.... +09:54:47 ============================================================================ +09:54:47 Slot Id : <286> +09:54:47 Transaction Type : REQUEST +09:54:47 Received From : +09:54:47 ============================================================================ +09:54:47 FNo. Len. Field Value +09:54:47 ============================================================================ +09:54:47 [ 1] [ 4] [0800] +09:54:47 [ 2] [ 5] [02531] +09:54:47 [ 3] [ 6] [579098] +09:54:47 [ 7] [ 10] [0320025447] +09:54:47 [ 11] [ 6] [806987] +09:54:47 [ 15] [ 10] [0320025447] +09:54:47 [ 37] [ 11] [57909806987] +09:54:47 [ 70] [ 3] [001] +09:54:47 ============================================================================ +09:54:47 + + +waiting on router queue for slot.... +09:54:47 ============================================================================ +09:54:47 Slot Id : <286> +09:54:47 Transaction Type : RESPONSE +09:54:47 Received From : +09:54:47 ============================================================================ +09:54:47 FNo. Len. Field Value +09:54:47 ============================================================================ +09:54:47 [ 1] [ 4] [0810] +09:54:47 [ 7] [ 10] [0320025447] +09:54:47 [ 11] [ 6] [806987] +09:54:47 [ 15] [ 4] [0320] +09:54:47 [ 37] [ 12] [57909806987] +09:54:47 [ 39] [ 2] [00] +09:54:47 [ 70] [ 3] [001] +09:54:47 ============================================================================ +09:54:47 Sending to : +09:54:47 ============================================================================ +09:54:47 + + +waiting on router queue for slot.... +09:54:48 ============================================================================ +09:54:48 Slot Id : <311> +09:54:48 Transaction Type : RESPONSE +09:54:48 Received From : +09:54:48 ============================================================================ +09:54:48 FNo. Len. Field Value +09:54:48 ============================================================================ +09:54:48 [ 1] [ 4] [0210] +09:54:48 [ 2] [ 16] [6213541000633829] +09:54:48 [ 3] [ 6] [010000] +09:54:48 [ 4] [ 12] [000020000000] +09:54:48 [ 7] [ 10] [0320095237] +09:54:48 [ 11] [ 6] [936930] +09:54:48 [ 12] [ 6] [095237] +09:54:48 [ 13] [ 4] [0320] +09:54:48 [ 15] [ 4] [0320] +09:54:48 [ 18] [ 4] [6011] +09:54:48 [ 19] [ 3] [418] +09:54:48 [ 32] [ 6] [668899] +09:54:48 [ 35] [ 32] [6213541000633829=491212013382402] +09:54:48 [ 37] [ 12] [507902407325] +09:54:48 [ 38] [ 6] [207724] +09:54:48 [ 39] [ 2] [00] +09:54:48 [ 41] [ 8] [03001010] +09:54:48 [ 49] [ 3] [418] +09:54:48 [ 54] [ 40] [0001418C0000544237400002418C000054423740] +09:54:48 ============================================================================ +09:54:48 Calculate Source COMM Id = 4 +09:54:48 ============================================================================ +09:54:48 + + +waiting on router queue for slot.... +09:54:53 ============================================================================ +09:54:53 Slot Id : <312> +09:54:53 Transaction Type : REQUEST +09:54:53 Received From : +09:54:53 ============================================================================ +09:54:53 FNo. Len. Field Value +09:54:53 ============================================================================ +09:54:53 [ 1] [ 4] [0800] +09:54:53 [ 7] [ 10] [0320025401] +09:54:53 [ 11] [ 6] [155730] +09:54:53 [ 70] [ 3] [301] +09:54:53 ============================================================================ +09:54:53 + + +waiting on router queue for slot.... +09:54:53 Sending to : +09:54:53 ============================================================================ +09:54:53 ============================================================================ +09:54:53 Slot Id : <312> +09:54:53 Transaction Type : RESPONSE +09:54:53 Received From : +09:54:53 ============================================================================ +09:54:53 FNo. Len. Field Value +09:54:53 ============================================================================ +09:54:53 [ 1] [ 4] [0810] +09:54:53 [ 7] [ 10] [0320025401] +09:54:53 [ 11] [ 6] [155730] +09:54:53 [ 39] [ 2] [00] +09:54:53 [ 70] [ 3] [301] +09:54:53 ============================================================================ +09:54:53 Calculate Source COMM Id = 2 +09:54:53 ============================================================================ +09:54:53 + + +waiting on router queue for slot.... +09:54:54 ============================================================================ +09:54:54 Slot Id : <306> +09:54:54 Transaction Type : REQUEST +09:54:54 Received From : +09:54:54 ============================================================================ +09:54:54 FNo. Len. Field Value +09:54:54 ============================================================================ +09:54:54 [ 1] [ 4] [0800] +09:54:54 [ 7] [ 10] [0320170643] +09:54:54 [ 11] [ 6] [100643] +09:54:54 [ 37] [ 12] [57910100643] +09:54:54 [ 70] [ 3] [301] +09:54:54 ============================================================================ +09:54:54 + + +waiting on router queue for slot.... +09:54:54 Sending to : +09:54:54 ============================================================================ +09:54:54 ============================================================================ +09:54:54 Slot Id : <306> +09:54:54 Transaction Type : RESPONSE +09:54:54 Received From : +09:54:54 ============================================================================ +09:54:54 FNo. Len. Field Value +09:54:54 ============================================================================ +09:54:54 [ 1] [ 4] [0810] +09:54:54 [ 7] [ 10] [0320170643] +09:54:54 [ 11] [ 6] [100643] +09:54:54 [ 37] [ 12] [579101006430] +09:54:54 [ 39] [ 2] [00] +09:54:54 [ 70] [ 3] [810] +09:54:54 ============================================================================ +09:54:54 Calculate Source COMM Id = 6 +09:54:54 ============================================================================ +09:54:54 + + +waiting on router queue for slot.... +09:54:54 ============================================================================ +09:54:54 Slot Id : <307> +09:54:54 Transaction Type : REQUEST +09:54:54 Received From : +09:54:54 ============================================================================ +09:54:54 FNo. Len. Field Value +09:54:54 ============================================================================ +09:54:54 [ 1] [ 4] [0800] +09:54:54 [ 7] [ 10] [0320030242] +09:54:54 [ 11] [ 6] [073725] +09:54:54 [ 37] [ 12] [57910073725] +09:54:54 [ 70] [ 3] [301] +09:54:54 ============================================================================ +09:54:54 + + +waiting on router queue for slot.... +09:54:54 Sending to : +09:54:54 ============================================================================ +09:54:54 ============================================================================ +09:54:54 Slot Id : <307> +09:54:54 Transaction Type : RESPONSE +09:54:54 Received From : +09:54:54 ============================================================================ +09:54:54 FNo. Len. Field Value +09:54:54 ============================================================================ +09:54:54 [ 1] [ 4] [0810] +09:54:54 [ 7] [ 10] [0320030242] +09:54:54 [ 11] [ 6] [073725] +09:54:54 [ 37] [ 12] [579100737250] +09:54:54 [ 39] [ 2] [00] +09:54:54 [ 70] [ 3] [810] +09:54:54 ============================================================================ +09:54:54 Calculate Source COMM Id = 1 +09:54:54 ============================================================================ +09:54:54 + + +waiting on router queue for slot.... +09:55:05 ============================================================================ +09:55:05 Slot Id : <317> +09:55:05 Transaction Type : REQUEST +09:55:05 Received From : +09:55:05 ============================================================================ +09:55:05 FNo. Len. Field Value +09:55:05 ============================================================================ +09:55:05 [ 1] [ 4] [0800] +09:55:05 [ 7] [ 10] [0320025413] +09:55:05 [ 11] [ 6] [155731] +09:55:05 [ 70] [ 3] [301] +09:55:05 ============================================================================ +09:55:05 + + +waiting on router queue for slot.... +09:55:05 Sending to : +09:55:05 ============================================================================ +09:55:05 ============================================================================ +09:55:05 Slot Id : <317> +09:55:05 Transaction Type : RESPONSE +09:55:05 Received From : +09:55:05 ============================================================================ +09:55:05 FNo. Len. Field Value +09:55:05 ============================================================================ +09:55:05 [ 1] [ 4] [0810] +09:55:05 [ 7] [ 10] [0320025413] +09:55:05 [ 11] [ 6] [155731] +09:55:05 [ 39] [ 2] [00] +09:55:05 [ 70] [ 3] [301] +09:55:05 ============================================================================ +09:55:05 Calculate Source COMM Id = 2 +09:55:05 ============================================================================ +09:55:05 + + +waiting on router queue for slot.... +09:55:08 ============================================================================ +09:55:08 Slot Id : <310> +09:55:08 Transaction Type : REQUEST +09:55:08 Received From : +09:55:08 ============================================================================ +09:55:08 FNo. Len. Field Value +09:55:08 ============================================================================ +09:55:08 [ 1] [ 4] [0200] +09:55:08 [ 2] [ 16] [6213545000077697] +09:55:08 [ 3] [ 6] [011000] +09:55:08 [ 4] [ 12] [000030000000] +09:55:08 [ 7] [ 10] [0320025415] +09:55:08 [ 11] [ 6] [267829] +09:55:08 [ 12] [ 6] [095415] +09:55:08 [ 13] [ 4] [0320] +09:55:08 [ 14] [ 4] [4912] +09:55:08 [ 15] [ 4] [0320] +09:55:08 [ 18] [ 4] [6011] +09:55:08 [ 19] [ 3] [418] +09:55:08 [ 22] [ 3] [021] +09:55:08 [ 25] [ 2] [01] +09:55:08 [ 28] [ 9] [D00002000] +09:55:08 [ 32] [ 6] [180893] +09:55:08 [ 35] [ 32] [6213545000077697=491212017769751] +09:55:08 [ 37] [ 12] [507902267829] +09:55:08 [ 41] [ 8] [0112CPBR] +09:55:08 [ 42] [ 15] [999999 ] +09:55:08 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:55:08 [ 49] [ 3] [418] +09:55:08 [ 52] [ 16] [BC3B492E1E2B8E2E] +09:55:08 ============================================================================ +09:55:08 + + +waiting on router queue for slot.... +09:55:08 Sending to : +09:55:08 ============================================================================ +09:55:08 Sending to : +09:55:08 ============================================================================ +09:55:09 ============================================================================ +09:55:09 Slot Id : <310> +09:55:09 Transaction Type : REQUEST +09:55:09 Received From : +09:55:09 ============================================================================ +09:55:09 FNo. Len. Field Value +09:55:09 ============================================================================ +09:55:09 [ 1] [ 4] [0200] +09:55:09 [ 2] [ 16] [6213545000077697] +09:55:09 [ 3] [ 6] [011000] +09:55:09 [ 4] [ 12] [000030000000] +09:55:09 [ 7] [ 10] [0320025415] +09:55:09 [ 11] [ 6] [267829] +09:55:09 [ 12] [ 6] [095415] +09:55:09 [ 13] [ 4] [0320] +09:55:09 [ 14] [ 4] [4912] +09:55:09 [ 15] [ 4] [0320] +09:55:09 [ 18] [ 4] [6011] +09:55:09 [ 19] [ 3] [418] +09:55:09 [ 22] [ 3] [021] +09:55:09 [ 25] [ 2] [01] +09:55:09 [ 28] [ 9] [D00002000] +09:55:09 [ 32] [ 6] [180893] +09:55:09 [ 35] [ 32] [6213545000077697=491212017769751] +09:55:09 [ 37] [ 12] [507902267829] +09:55:09 [ 41] [ 8] [0112CPBR] +09:55:09 [ 42] [ 15] [999999 ] +09:55:09 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:55:09 [ 49] [ 3] [418] +09:55:09 [ 52] [ 16] [BC3B492E1E2B8E2E] +09:55:09 ============================================================================ +09:55:09 + + +waiting on router queue for slot.... +09:55:09 Sending to : +09:55:09 ============================================================================ +09:55:09 ============================================================================ +09:55:09 Slot Id : <310> +09:55:09 Transaction Type : REQUEST +09:55:09 Received From : +09:55:09 ============================================================================ +09:55:09 FNo. Len. Field Value +09:55:09 ============================================================================ +09:55:09 [ 1] [ 4] [0200] +09:55:09 [ 2] [ 16] [6213545000077697] +09:55:09 [ 3] [ 6] [011000] +09:55:09 [ 4] [ 12] [000030000000] +09:55:09 [ 7] [ 10] [0320025415] +09:55:09 [ 11] [ 6] [267829] +09:55:09 [ 12] [ 6] [095415] +09:55:09 [ 13] [ 4] [0320] +09:55:09 [ 14] [ 4] [4912] +09:55:09 [ 15] [ 4] [0320] +09:55:09 [ 18] [ 4] [6011] +09:55:09 [ 19] [ 3] [418] +09:55:09 [ 22] [ 3] [021] +09:55:09 [ 25] [ 2] [01] +09:55:09 [ 28] [ 9] [D00002000] +09:55:09 [ 32] [ 6] [180893] +09:55:09 [ 35] [ 32] [6213545000077697=491212017769751] +09:55:09 [ 37] [ 12] [507902267829] +09:55:09 [ 41] [ 8] [0112CPBR] +09:55:09 [ 42] [ 15] [999999 ] +09:55:09 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +09:55:09 [ 49] [ 3] [418] +09:55:09 [ 52] [ 16] [1C1913D53AAA3D83] +09:55:09 ============================================================================ +09:55:09 + + +waiting on router queue for slot.... +09:55:09 Sending to : <0> +09:55:09 ============================================================================ +09:55:09 ============================================================================ +09:55:09 Slot Id : <310> +09:55:09 Transaction Type : RESPONSE +09:55:09 Received From : +09:55:09 ============================================================================ +09:55:09 FNo. Len. Field Value +09:55:09 ============================================================================ +09:55:09 [ 1] [ 4] [0210] +09:55:09 [ 2] [ 16] [6213545000077697] +09:55:09 [ 3] [ 6] [011000] +09:55:09 [ 4] [ 12] [000030000000] +09:55:09 [ 7] [ 10] [0320025415] +09:55:09 [ 11] [ 6] [267829] +09:55:09 [ 12] [ 6] [095415] +09:55:09 [ 13] [ 4] [0320] +09:55:09 [ 15] [ 4] [0320] +09:55:09 [ 18] [ 4] [6011] +09:55:09 [ 19] [ 3] [418] +09:55:09 [ 32] [ 6] [180893] +09:55:09 [ 35] [ 32] [6213545000077697=491212017769751] +09:55:09 [ 37] [ 12] [507902267829] +09:55:09 [ 38] [ 6] [138186] +09:55:09 [ 39] [ 2] [00] +09:55:09 [ 41] [ 8] [0112CPBR] +09:55:09 [ 49] [ 3] [418] +09:55:09 [ 54] [ 40] [1001418C0000077168221002418C000007716822] +09:55:09 ============================================================================ +09:55:09 Sending to : +09:55:09 ============================================================================ +09:55:09 + + +waiting on router queue for slot.... +09:55:11 ============================================================================ +09:55:11 Slot Id : <310> +09:55:11 Transaction Type : RESPONSE +09:55:11 Received From : +09:55:11 ============================================================================ +09:55:11 FNo. Len. Field Value +09:55:11 ============================================================================ +09:55:11 [ 1] [ 4] [0210] +09:55:11 [ 2] [ 16] [6213545000077697] +09:55:11 [ 3] [ 6] [011000] +09:55:11 [ 4] [ 12] [000030000000] +09:55:11 [ 7] [ 10] [0320025415] +09:55:11 [ 11] [ 6] [267829] +09:55:11 [ 12] [ 6] [095415] +09:55:11 [ 13] [ 4] [0320] +09:55:11 [ 15] [ 4] [0320] +09:55:11 [ 18] [ 4] [6011] +09:55:11 [ 19] [ 3] [418] +09:55:11 [ 32] [ 6] [180893] +09:55:11 [ 35] [ 32] [6213545000077697=491212017769751] +09:55:11 [ 37] [ 12] [507902267829] +09:55:11 [ 38] [ 6] [138186] +09:55:11 [ 39] [ 2] [00] +09:55:11 [ 41] [ 8] [0112CPBR] +09:55:11 [ 49] [ 3] [418] +09:55:11 [ 54] [ 40] [1001418C0000077168221002418C000007716822] +09:55:11 ============================================================================ +09:55:11 Calculate Source COMM Id = 2 +09:55:11 ============================================================================ +09:55:11 + + +waiting on router queue for slot.... +09:55:19 ============================================================================ +09:55:19 Slot Id : <318> +09:55:19 Transaction Type : REQUEST +09:55:19 Received From : +09:55:19 ============================================================================ +09:55:19 FNo. Len. Field Value +09:55:19 ============================================================================ +09:55:19 [ 1] [ 4] [0200] +09:55:19 [ 2] [ 16] [1808930600001069] +09:55:19 [ 3] [ 6] [011000] +09:55:19 [ 4] [ 12] [000100000000] +09:55:19 [ 7] [ 10] [0320100305] +09:55:19 [ 11] [ 6] [009281] +09:55:19 [ 12] [ 6] [100305] +09:55:19 [ 13] [ 4] [0320] +09:55:19 [ 14] [ 4] [1803] +09:55:19 [ 15] [ 4] [0320] +09:55:19 [ 18] [ 4] [6011] +09:55:19 [ 22] [ 3] [900] +09:55:19 [ 25] [ 2] [02] +09:55:19 [ 28] [ 9] [D00002000] +09:55:19 [ 32] [ 6] [220699] +09:55:19 [ 35] [ 27] [1808930600001069=1803500927] +09:55:19 [ 37] [ 12] [507900213247] +09:55:19 [ 41] [ 8] [05000100] +09:55:19 [ 42] [ 15] [APTRA ] +09:55:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:55:19 [ 49] [ 3] [418] +09:55:19 [ 52] [ 16] [F1FEDE0B43AEBFD2] +09:55:19 ============================================================================ +09:55:19 + + +waiting on router queue for slot.... +09:55:19 Sending to : +09:55:19 ============================================================================ +09:55:19 Sending to : +09:55:19 ============================================================================ +09:55:19 ============================================================================ +09:55:19 Slot Id : <318> +09:55:19 Transaction Type : REQUEST +09:55:19 Received From : +09:55:19 ============================================================================ +09:55:19 FNo. Len. Field Value +09:55:19 ============================================================================ +09:55:19 [ 1] [ 4] [0200] +09:55:19 [ 2] [ 16] [1808930600001069] +09:55:19 [ 3] [ 6] [011000] +09:55:19 [ 4] [ 12] [000100000000] +09:55:19 [ 7] [ 10] [0320100305] +09:55:19 [ 11] [ 6] [009281] +09:55:19 [ 12] [ 6] [100305] +09:55:19 [ 13] [ 4] [0320] +09:55:19 [ 14] [ 4] [1803] +09:55:19 [ 15] [ 4] [0320] +09:55:19 [ 18] [ 4] [6011] +09:55:19 [ 22] [ 3] [900] +09:55:19 [ 25] [ 2] [02] +09:55:19 [ 28] [ 9] [D00002000] +09:55:19 [ 32] [ 6] [220699] +09:55:19 [ 35] [ 27] [1808930600001069=1803500927] +09:55:19 [ 37] [ 12] [507900213247] +09:55:19 [ 41] [ 8] [05000100] +09:55:19 [ 42] [ 15] [APTRA ] +09:55:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:55:19 [ 49] [ 3] [418] +09:55:19 [ 52] [ 16] [F1FEDE0B43AEBFD2] +09:55:19 ============================================================================ +09:55:19 + + +waiting on router queue for slot.... +09:55:19 Sending to : +09:55:19 ============================================================================ +09:55:19 ============================================================================ +09:55:19 Slot Id : <318> +09:55:19 Transaction Type : REQUEST +09:55:19 Received From : +09:55:19 ============================================================================ +09:55:19 FNo. Len. Field Value +09:55:19 ============================================================================ +09:55:19 [ 1] [ 4] [0200] +09:55:19 [ 2] [ 16] [1808930600001069] +09:55:19 [ 3] [ 6] [011000] +09:55:19 [ 4] [ 12] [000100000000] +09:55:19 [ 7] [ 10] [0320100305] +09:55:19 [ 11] [ 6] [009281] +09:55:19 [ 12] [ 6] [100305] +09:55:19 [ 13] [ 4] [0320] +09:55:19 [ 14] [ 4] [1803] +09:55:19 [ 15] [ 4] [0320] +09:55:19 [ 18] [ 4] [6011] +09:55:19 [ 22] [ 3] [900] +09:55:19 [ 25] [ 2] [02] +09:55:19 [ 28] [ 9] [D00002000] +09:55:19 [ 32] [ 6] [220699] +09:55:19 [ 35] [ 27] [1808930600001069=1803500927] +09:55:19 [ 37] [ 12] [507900213247] +09:55:19 [ 41] [ 8] [05000100] +09:55:19 [ 42] [ 15] [APTRA ] +09:55:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:55:19 [ 49] [ 3] [418] +09:55:19 [ 52] [ 16] [6F6881BB3A44A41B] +09:55:19 ============================================================================ +09:55:19 + + +waiting on router queue for slot.... +09:55:19 Sending to : <2> +09:55:19 ============================================================================ +09:55:24 ============================================================================ +09:55:24 Slot Id : <318> +09:55:24 Transaction Type : RESPONSE +09:55:24 Received From : +09:55:24 ============================================================================ +09:55:24 FNo. Len. Field Value +09:55:24 ============================================================================ +09:55:24 [ 1] [ 4] [0210] +09:55:24 [ 2] [ 16] [1808930600001069] +09:55:24 [ 3] [ 6] [011000] +09:55:24 [ 4] [ 12] [000100000000] +09:55:24 [ 6] [ 12] [000100000000] +09:55:24 [ 7] [ 10] [0320100305] +09:55:24 [ 11] [ 6] [009281] +09:55:24 [ 12] [ 6] [100305] +09:55:24 [ 13] [ 4] [0320] +09:55:24 [ 14] [ 4] [1803] +09:55:24 [ 18] [ 4] [6011] +09:55:24 [ 19] [ 3] [418] +09:55:24 [ 22] [ 3] [021] +09:55:24 [ 32] [ 6] [220699] +09:55:24 [ 35] [ 27] [1808930600001069=1803500927] +09:55:24 [ 37] [ 12] [507900213247] +09:55:24 [ 38] [ 6] [009281] +09:55:24 [ 39] [ 2] [00] +09:55:24 [ 41] [ 8] [05000100] +09:55:24 [ 49] [ 3] [418] +09:55:24 [ 52] [ 16] [6F6881BB3A44A41B] +09:55:24 [ 54] [ 20] [1001418C000168504800] +09:55:24 ============================================================================ +09:55:24 Sending to : +09:55:24 ============================================================================ +09:55:24 + + +waiting on router queue for slot.... +09:55:25 ============================================================================ +09:55:25 Slot Id : <318> +09:55:25 Transaction Type : RESPONSE +09:55:25 Received From : +09:55:25 ============================================================================ +09:55:25 FNo. Len. Field Value +09:55:25 ============================================================================ +09:55:25 [ 1] [ 4] [0210] +09:55:25 [ 2] [ 16] [1808930600001069] +09:55:25 [ 3] [ 6] [011000] +09:55:25 [ 4] [ 12] [000100000000] +09:55:25 [ 6] [ 12] [000100000000] +09:55:25 [ 7] [ 10] [0320100305] +09:55:25 [ 11] [ 6] [009281] +09:55:25 [ 12] [ 6] [100305] +09:55:25 [ 13] [ 4] [0320] +09:55:25 [ 14] [ 4] [1803] +09:55:25 [ 18] [ 4] [6011] +09:55:25 [ 19] [ 3] [418] +09:55:25 [ 22] [ 3] [021] +09:55:25 [ 32] [ 6] [220699] +09:55:25 [ 35] [ 27] [1808930600001069=1803500927] +09:55:25 [ 37] [ 12] [507900213247] +09:55:25 [ 38] [ 6] [009281] +09:55:25 [ 39] [ 2] [00] +09:55:25 [ 41] [ 8] [05000100] +09:55:25 [ 49] [ 3] [418] +09:55:25 [ 52] [ 16] [6F6881BB3A44A41B] +09:55:25 [ 54] [ 20] [1001418C000168504800] +09:55:25 ============================================================================ +09:55:25 Calculate Source COMM Id = 1 +09:55:25 ============================================================================ +09:55:25 + + +waiting on router queue for slot.... +09:55:31 ============================================================================ +09:55:31 Slot Id : <322> +09:55:31 Transaction Type : REQUEST +09:55:31 Received From : +09:55:31 ============================================================================ +09:55:31 FNo. Len. Field Value +09:55:31 ============================================================================ +09:55:31 [ 1] [ 4] [0800] +09:55:31 [ 7] [ 10] [0320025439] +09:55:31 [ 11] [ 6] [155732] +09:55:31 [ 70] [ 3] [301] +09:55:31 ============================================================================ +09:55:31 + + +waiting on router queue for slot.... +09:55:31 Sending to : +09:55:31 ============================================================================ +09:55:31 ============================================================================ +09:55:31 Slot Id : <322> +09:55:31 Transaction Type : RESPONSE +09:55:31 Received From : +09:55:31 ============================================================================ +09:55:31 FNo. Len. Field Value +09:55:31 ============================================================================ +09:55:31 [ 1] [ 4] [0810] +09:55:31 [ 7] [ 10] [0320025439] +09:55:31 [ 11] [ 6] [155732] +09:55:31 [ 39] [ 2] [00] +09:55:31 [ 70] [ 3] [301] +09:55:31 ============================================================================ +09:55:31 Calculate Source COMM Id = 2 +09:55:31 ============================================================================ +09:55:31 + + +waiting on router queue for slot.... +09:55:47 ============================================================================ +09:55:47 Slot Id : <315> +09:55:47 Transaction Type : REQUEST +09:55:47 Received From : +09:55:47 ============================================================================ +09:55:47 FNo. Len. Field Value +09:55:47 ============================================================================ +09:55:47 [ 1] [ 4] [0800] +09:55:47 [ 7] [ 10] [0320025455] +09:55:47 [ 11] [ 6] [155733] +09:55:47 [ 70] [ 3] [301] +09:55:47 ============================================================================ +09:55:47 + + +waiting on router queue for slot.... +09:55:47 Sending to : +09:55:47 ============================================================================ +09:55:47 ============================================================================ +09:55:47 Slot Id : <315> +09:55:47 Transaction Type : RESPONSE +09:55:47 Received From : +09:55:47 ============================================================================ +09:55:47 FNo. Len. Field Value +09:55:47 ============================================================================ +09:55:47 [ 1] [ 4] [0810] +09:55:47 [ 7] [ 10] [0320025455] +09:55:47 [ 11] [ 6] [155733] +09:55:47 [ 39] [ 2] [00] +09:55:47 [ 70] [ 3] [301] +09:55:47 ============================================================================ +09:55:47 Calculate Source COMM Id = 2 +09:55:47 ============================================================================ +09:55:47 + + +waiting on router queue for slot.... +09:55:49 ============================================================================ +09:55:49 Slot Id : <304> +09:55:49 Transaction Type : REQUEST +09:55:49 Received From : +09:55:49 ============================================================================ +09:55:49 FNo. Len. Field Value +09:55:49 ============================================================================ +09:55:49 [ 1] [ 4] [0800] +09:55:49 [ 2] [ 5] [02531] +09:55:49 [ 3] [ 6] [579098] +09:55:49 [ 7] [ 10] [0320025549] +09:55:49 [ 11] [ 6] [806988] +09:55:49 [ 15] [ 10] [0320025549] +09:55:49 [ 37] [ 11] [57909806988] +09:55:49 [ 70] [ 3] [001] +09:55:49 ============================================================================ +09:55:49 + + +waiting on router queue for slot.... +09:55:49 ============================================================================ +09:55:49 Slot Id : <304> +09:55:49 Transaction Type : RESPONSE +09:55:49 Received From : +09:55:49 ============================================================================ +09:55:49 FNo. Len. Field Value +09:55:49 ============================================================================ +09:55:49 [ 1] [ 4] [0810] +09:55:49 [ 7] [ 10] [0320025549] +09:55:49 [ 11] [ 6] [806988] +09:55:49 [ 15] [ 4] [0320] +09:55:49 [ 37] [ 12] [57909806988] +09:55:49 [ 39] [ 2] [00] +09:55:49 [ 70] [ 3] [001] +09:55:49 ============================================================================ +09:55:49 Sending to : +09:55:49 ============================================================================ +09:55:49 + + +waiting on router queue for slot.... +09:55:59 ============================================================================ +09:55:59 Slot Id : <289> +09:55:59 Transaction Type : REQUEST +09:55:59 Received From : +09:55:59 ============================================================================ +09:55:59 FNo. Len. Field Value +09:55:59 ============================================================================ +09:55:59 [ 1] [ 4] [0800] +09:55:59 [ 7] [ 10] [0320170748] +09:55:59 [ 11] [ 6] [100748] +09:55:59 [ 37] [ 12] [57910100748] +09:55:59 [ 70] [ 3] [301] +09:55:59 ============================================================================ +09:55:59 + + +waiting on router queue for slot.... +09:55:59 Sending to : +09:55:59 ============================================================================ +09:55:59 ============================================================================ +09:55:59 Slot Id : <289> +09:55:59 Transaction Type : RESPONSE +09:55:59 Received From : +09:55:59 ============================================================================ +09:55:59 FNo. Len. Field Value +09:55:59 ============================================================================ +09:55:59 [ 1] [ 4] [0810] +09:55:59 [ 7] [ 10] [0320170748] +09:55:59 [ 11] [ 6] [100748] +09:55:59 [ 37] [ 12] [579101007480] +09:55:59 [ 39] [ 2] [00] +09:55:59 [ 70] [ 3] [810] +09:55:59 ============================================================================ +09:55:59 Calculate Source COMM Id = 6 +09:55:59 ============================================================================ +09:55:59 + + +waiting on router queue for slot.... +09:55:59 ============================================================================ +09:55:59 Slot Id : <285> +09:55:59 Transaction Type : REQUEST +09:55:59 Received From : +09:55:59 ============================================================================ +09:55:59 FNo. Len. Field Value +09:55:59 ============================================================================ +09:55:59 [ 1] [ 4] [0800] +09:55:59 [ 7] [ 10] [0320025507] +09:55:59 [ 11] [ 6] [155734] +09:55:59 [ 70] [ 3] [301] +09:55:59 ============================================================================ +09:55:59 + + +waiting on router queue for slot.... +09:55:59 Sending to : +09:55:59 ============================================================================ +09:55:59 ============================================================================ +09:55:59 Slot Id : <285> +09:55:59 Transaction Type : RESPONSE +09:55:59 Received From : +09:55:59 ============================================================================ +09:55:59 FNo. Len. Field Value +09:55:59 ============================================================================ +09:55:59 [ 1] [ 4] [0810] +09:55:59 [ 7] [ 10] [0320025507] +09:55:59 [ 11] [ 6] [155734] +09:55:59 [ 39] [ 2] [00] +09:55:59 [ 70] [ 3] [301] +09:55:59 ============================================================================ +09:55:59 Calculate Source COMM Id = 2 +09:55:59 ============================================================================ +09:55:59 + + +waiting on router queue for slot.... +09:56:14 ============================================================================ +09:56:14 Slot Id : <297> +09:56:14 Transaction Type : REQUEST +09:56:14 Received From : +09:56:14 ============================================================================ +09:56:14 FNo. Len. Field Value +09:56:14 ============================================================================ +09:56:14 [ 1] [ 4] [0200] +09:56:14 [ 2] [ 16] [6213545000095558] +09:56:14 [ 3] [ 6] [012000] +09:56:14 [ 4] [ 12] [000100000000] +09:56:14 [ 7] [ 10] [0320100400] +09:56:14 [ 11] [ 6] [079049] +09:56:14 [ 12] [ 6] [100400] +09:56:14 [ 13] [ 4] [0320] +09:56:14 [ 14] [ 4] [4912] +09:56:14 [ 15] [ 4] [0320] +09:56:14 [ 18] [ 4] [6011] +09:56:14 [ 22] [ 3] [900] +09:56:14 [ 25] [ 2] [02] +09:56:14 [ 28] [ 9] [D00002000] +09:56:14 [ 32] [ 6] [220699] +09:56:14 [ 35] [ 32] [6213545000095558=491212019555845] +09:56:14 [ 37] [ 12] [507900132934] +09:56:14 [ 41] [ 8] [03000100] +09:56:14 [ 42] [ 15] [APTRA ] +09:56:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:56:14 [ 49] [ 3] [418] +09:56:14 [ 52] [ 16] [AD7CDC6763B1A95B] +09:56:14 ============================================================================ +09:56:14 + + +waiting on router queue for slot.... +09:56:14 Sending to : +09:56:14 ============================================================================ +09:56:14 Sending to : +09:56:14 ============================================================================ +09:56:14 ============================================================================ +09:56:14 Slot Id : <297> +09:56:14 Transaction Type : REQUEST +09:56:14 Received From : +09:56:14 ============================================================================ +09:56:14 FNo. Len. Field Value +09:56:14 ============================================================================ +09:56:14 [ 1] [ 4] [0200] +09:56:14 [ 2] [ 16] [6213545000095558] +09:56:14 [ 3] [ 6] [012000] +09:56:14 [ 4] [ 12] [000100000000] +09:56:14 [ 7] [ 10] [0320100400] +09:56:14 [ 11] [ 6] [079049] +09:56:14 [ 12] [ 6] [100400] +09:56:14 [ 13] [ 4] [0320] +09:56:14 [ 14] [ 4] [4912] +09:56:14 [ 15] [ 4] [0320] +09:56:14 [ 18] [ 4] [6011] +09:56:14 [ 22] [ 3] [900] +09:56:14 [ 25] [ 2] [02] +09:56:14 [ 28] [ 9] [D00002000] +09:56:14 [ 32] [ 6] [220699] +09:56:14 [ 35] [ 32] [6213545000095558=491212019555845] +09:56:14 [ 37] [ 12] [507900132934] +09:56:14 [ 41] [ 8] [03000100] +09:56:14 [ 42] [ 15] [APTRA ] +09:56:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:56:14 [ 49] [ 3] [418] +09:56:14 [ 52] [ 16] [AD7CDC6763B1A95B] +09:56:14 ============================================================================ +09:56:14 + + +waiting on router queue for slot.... +09:56:14 Sending to : +09:56:14 ============================================================================ +09:56:14 ============================================================================ +09:56:14 Slot Id : <297> +09:56:14 Transaction Type : REQUEST +09:56:14 Received From : +09:56:14 ============================================================================ +09:56:14 FNo. Len. Field Value +09:56:14 ============================================================================ +09:56:14 [ 1] [ 4] [0200] +09:56:14 [ 2] [ 16] [6213545000095558] +09:56:14 [ 3] [ 6] [012000] +09:56:14 [ 4] [ 12] [000100000000] +09:56:14 [ 7] [ 10] [0320100400] +09:56:14 [ 11] [ 6] [079049] +09:56:14 [ 12] [ 6] [100400] +09:56:14 [ 13] [ 4] [0320] +09:56:14 [ 14] [ 4] [4912] +09:56:14 [ 15] [ 4] [0320] +09:56:14 [ 18] [ 4] [6011] +09:56:14 [ 22] [ 3] [900] +09:56:14 [ 25] [ 2] [02] +09:56:14 [ 28] [ 9] [D00002000] +09:56:14 [ 32] [ 6] [220699] +09:56:14 [ 35] [ 32] [6213545000095558=491212019555845] +09:56:14 [ 37] [ 12] [507900132934] +09:56:14 [ 41] [ 8] [03000100] +09:56:14 [ 42] [ 15] [APTRA ] +09:56:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:56:14 [ 49] [ 3] [418] +09:56:14 [ 52] [ 16] [717B165C6194A08F] +09:56:14 ============================================================================ +09:56:14 + + +waiting on router queue for slot.... +09:56:14 Sending to : <0> +09:56:14 ============================================================================ +09:56:15 ============================================================================ +09:56:15 Slot Id : <297> +09:56:15 Transaction Type : RESPONSE +09:56:15 Received From : +09:56:15 ============================================================================ +09:56:15 FNo. Len. Field Value +09:56:15 ============================================================================ +09:56:15 [ 1] [ 4] [0210] +09:56:15 [ 2] [ 16] [6213545000095558] +09:56:15 [ 3] [ 6] [012000] +09:56:15 [ 4] [ 12] [000100000000] +09:56:15 [ 7] [ 10] [0320100400] +09:56:15 [ 11] [ 6] [079049] +09:56:15 [ 12] [ 6] [100400] +09:56:15 [ 13] [ 4] [0320] +09:56:15 [ 15] [ 4] [0320] +09:56:15 [ 18] [ 4] [6011] +09:56:15 [ 32] [ 6] [220699] +09:56:15 [ 35] [ 32] [6213545000095558=491212019555845] +09:56:15 [ 37] [ 12] [507900132934] +09:56:15 [ 38] [ 6] [580893] +09:56:15 [ 39] [ 2] [00] +09:56:15 [ 41] [ 8] [03000100] +09:56:15 [ 49] [ 3] [418] +09:56:15 [ 54] [ 40] [2001418C0001352540432002418C000135254043] +09:56:15 ============================================================================ +09:56:15 Sending to : +09:56:15 ============================================================================ +09:56:15 + + +waiting on router queue for slot.... +09:56:15 ============================================================================ +09:56:15 Slot Id : <325> +09:56:15 Transaction Type : REQUEST +09:56:15 Received From : +09:56:15 ============================================================================ +09:56:15 FNo. Len. Field Value +09:56:15 ============================================================================ +09:56:15 [ 1] [ 4] [0800] +09:56:15 [ 7] [ 10] [0320025523] +09:56:15 [ 11] [ 6] [155735] +09:56:15 [ 70] [ 3] [301] +09:56:15 ============================================================================ +09:56:15 + + +waiting on router queue for slot.... +09:56:15 Sending to : +09:56:15 ============================================================================ +09:56:15 ============================================================================ +09:56:15 Slot Id : <325> +09:56:15 Transaction Type : RESPONSE +09:56:15 Received From : +09:56:15 ============================================================================ +09:56:15 FNo. Len. Field Value +09:56:15 ============================================================================ +09:56:15 [ 1] [ 4] [0810] +09:56:15 [ 7] [ 10] [0320025523] +09:56:15 [ 11] [ 6] [155735] +09:56:15 [ 39] [ 2] [00] +09:56:15 [ 70] [ 3] [301] +09:56:15 ============================================================================ +09:56:15 Calculate Source COMM Id = 2 +09:56:15 ============================================================================ +09:56:15 + + +waiting on router queue for slot.... +09:56:16 ============================================================================ +09:56:16 Slot Id : <297> +09:56:16 Transaction Type : RESPONSE +09:56:16 Received From : +09:56:16 ============================================================================ +09:56:16 FNo. Len. Field Value +09:56:16 ============================================================================ +09:56:16 [ 1] [ 4] [0210] +09:56:16 [ 2] [ 16] [6213545000095558] +09:56:16 [ 3] [ 6] [012000] +09:56:16 [ 4] [ 12] [000100000000] +09:56:16 [ 7] [ 10] [0320100400] +09:56:16 [ 11] [ 6] [079049] +09:56:16 [ 12] [ 6] [100400] +09:56:16 [ 13] [ 4] [0320] +09:56:16 [ 15] [ 4] [0320] +09:56:16 [ 18] [ 4] [6011] +09:56:16 [ 32] [ 6] [220699] +09:56:16 [ 35] [ 32] [6213545000095558=491212019555845] +09:56:16 [ 37] [ 12] [507900132934] +09:56:16 [ 38] [ 6] [580893] +09:56:16 [ 39] [ 2] [00] +09:56:16 [ 41] [ 8] [03000100] +09:56:16 [ 49] [ 3] [418] +09:56:16 [ 54] [ 40] [2001418C0001352540432002418C000135254043] +09:56:16 ============================================================================ +09:56:16 Calculate Source COMM Id = 1 +09:56:16 ============================================================================ +09:56:16 + + +waiting on router queue for slot.... +09:56:21 ============================================================================ +09:56:21 Slot Id : <291> +09:56:21 Transaction Type : REQUEST +09:56:21 Received From : +09:56:21 ============================================================================ +09:56:21 FNo. Len. Field Value +09:56:21 ============================================================================ +09:56:21 [ 1] [ 4] [0800] +09:56:21 [ 7] [ 10] [0320025412] +09:56:21 [ 11] [ 6] [015864] +09:56:21 [ 37] [ 12] [57909015864] +09:56:21 [ 70] [ 3] [301] +09:56:21 ============================================================================ +09:56:21 + + +waiting on router queue for slot.... +09:56:21 Sending to : +09:56:21 ============================================================================ +09:56:21 ============================================================================ +09:56:21 Slot Id : <291> +09:56:21 Transaction Type : RESPONSE +09:56:21 Received From : +09:56:21 ============================================================================ +09:56:21 FNo. Len. Field Value +09:56:21 ============================================================================ +09:56:21 [ 1] [ 4] [0810] +09:56:21 [ 7] [ 10] [0320025412] +09:56:21 [ 11] [ 6] [015864] +09:56:21 [ 37] [ 12] [579090158640] +09:56:21 [ 39] [ 2] [00] +09:56:21 [ 70] [ 3] [810] +09:56:21 ============================================================================ +09:56:21 Calculate Source COMM Id = 4 +09:56:21 ============================================================================ +09:56:21 + + +waiting on router queue for slot.... +09:56:30 ============================================================================ +09:56:30 Slot Id : <326> +09:56:30 Transaction Type : REQUEST +09:56:30 Received From : +09:56:30 ============================================================================ +09:56:30 FNo. Len. Field Value +09:56:30 ============================================================================ +09:56:30 [ 1] [ 4] [0800] +09:56:30 [ 7] [ 10] [0320025538] +09:56:30 [ 11] [ 6] [155736] +09:56:30 [ 70] [ 3] [301] +09:56:30 ============================================================================ +09:56:30 + + +waiting on router queue for slot.... +09:56:30 Sending to : +09:56:30 ============================================================================ +09:56:30 ============================================================================ +09:56:30 Slot Id : <326> +09:56:30 Transaction Type : RESPONSE +09:56:30 Received From : +09:56:30 ============================================================================ +09:56:30 FNo. Len. Field Value +09:56:30 ============================================================================ +09:56:30 [ 1] [ 4] [0810] +09:56:30 [ 7] [ 10] [0320025538] +09:56:30 [ 11] [ 6] [155736] +09:56:30 [ 39] [ 2] [00] +09:56:30 [ 70] [ 3] [301] +09:56:30 ============================================================================ +09:56:30 Calculate Source COMM Id = 2 +09:56:30 ============================================================================ +09:56:30 + + +waiting on router queue for slot.... +09:56:45 ============================================================================ +09:56:45 Slot Id : <301> +09:56:45 Transaction Type : REQUEST +09:56:45 Received From : +09:56:45 ============================================================================ +09:56:45 FNo. Len. Field Value +09:56:45 ============================================================================ +09:56:45 [ 1] [ 4] [0800] +09:56:45 [ 7] [ 10] [0320025553] +09:56:45 [ 11] [ 6] [155737] +09:56:45 [ 70] [ 3] [301] +09:56:45 ============================================================================ +09:56:45 + + +waiting on router queue for slot.... +09:56:45 Sending to : +09:56:45 ============================================================================ +09:56:45 ============================================================================ +09:56:45 Slot Id : <301> +09:56:45 Transaction Type : RESPONSE +09:56:45 Received From : +09:56:45 ============================================================================ +09:56:45 FNo. Len. Field Value +09:56:45 ============================================================================ +09:56:45 [ 1] [ 4] [0810] +09:56:45 [ 7] [ 10] [0320025553] +09:56:45 [ 11] [ 6] [155737] +09:56:45 [ 39] [ 2] [00] +09:56:45 [ 70] [ 3] [301] +09:56:45 ============================================================================ +09:56:45 Calculate Source COMM Id = 2 +09:56:45 ============================================================================ +09:56:45 + + +waiting on router queue for slot.... +09:56:51 ============================================================================ +09:56:51 Slot Id : <327> +09:56:51 Transaction Type : REQUEST +09:56:51 Received From : +09:56:51 ============================================================================ +09:56:51 FNo. Len. Field Value +09:56:51 ============================================================================ +09:56:51 [ 1] [ 4] [0800] +09:56:51 [ 2] [ 5] [02531] +09:56:51 [ 3] [ 6] [579098] +09:56:51 [ 7] [ 10] [0320025651] +09:56:51 [ 11] [ 6] [806989] +09:56:51 [ 15] [ 10] [0320025651] +09:56:51 [ 37] [ 11] [57909806989] +09:56:51 [ 70] [ 3] [001] +09:56:51 ============================================================================ +09:56:51 + + +waiting on router queue for slot.... +09:56:51 ============================================================================ +09:56:51 Slot Id : <327> +09:56:51 Transaction Type : RESPONSE +09:56:51 Received From : +09:56:51 ============================================================================ +09:56:51 FNo. Len. Field Value +09:56:51 ============================================================================ +09:56:51 [ 1] [ 4] [0810] +09:56:51 [ 7] [ 10] [0320025651] +09:56:51 [ 11] [ 6] [806989] +09:56:51 [ 15] [ 4] [0320] +09:56:51 [ 37] [ 12] [57909806989] +09:56:51 [ 39] [ 2] [00] +09:56:51 [ 70] [ 3] [001] +09:56:51 ============================================================================ +09:56:51 Sending to : +09:56:51 ============================================================================ +09:56:51 + + +waiting on router queue for slot.... +09:56:56 ============================================================================ +09:56:56 Slot Id : <305> +09:56:56 Transaction Type : REQUEST +09:56:56 Received From : +09:56:56 ============================================================================ +09:56:56 FNo. Len. Field Value +09:56:56 ============================================================================ +09:56:56 [ 1] [ 4] [0800] +09:56:56 [ 7] [ 10] [0320025604] +09:56:56 [ 11] [ 6] [155738] +09:56:56 [ 70] [ 3] [301] +09:56:56 ============================================================================ +09:56:56 + + +waiting on router queue for slot.... +09:56:56 Sending to : +09:56:56 ============================================================================ +09:56:56 ============================================================================ +09:56:56 Slot Id : <305> +09:56:56 Transaction Type : RESPONSE +09:56:56 Received From : +09:56:56 ============================================================================ +09:56:56 FNo. Len. Field Value +09:56:56 ============================================================================ +09:56:56 [ 1] [ 4] [0810] +09:56:56 [ 7] [ 10] [0320025604] +09:56:56 [ 11] [ 6] [155738] +09:56:56 [ 39] [ 2] [00] +09:56:56 [ 70] [ 3] [301] +09:56:56 ============================================================================ +09:56:56 Calculate Source COMM Id = 2 +09:56:56 ============================================================================ +09:56:56 + + +waiting on router queue for slot.... +09:57:04 ============================================================================ +09:57:04 Slot Id : <333> +09:57:04 Transaction Type : REQUEST +09:57:04 Received From : +09:57:04 ============================================================================ +09:57:04 FNo. Len. Field Value +09:57:04 ============================================================================ +09:57:04 [ 1] [ 4] [0800] +09:57:04 [ 7] [ 10] [0320170853] +09:57:04 [ 11] [ 6] [100853] +09:57:04 [ 37] [ 12] [57910100853] +09:57:04 [ 70] [ 3] [301] +09:57:04 ============================================================================ +09:57:04 + + +waiting on router queue for slot.... +09:57:04 Sending to : +09:57:04 ============================================================================ +09:57:04 ============================================================================ +09:57:04 Slot Id : <333> +09:57:04 Transaction Type : RESPONSE +09:57:04 Received From : +09:57:04 ============================================================================ +09:57:04 FNo. Len. Field Value +09:57:04 ============================================================================ +09:57:04 [ 1] [ 4] [0810] +09:57:04 [ 7] [ 10] [0320170853] +09:57:04 [ 11] [ 6] [100853] +09:57:04 [ 37] [ 12] [579101008530] +09:57:04 [ 39] [ 2] [00] +09:57:04 [ 70] [ 3] [810] +09:57:04 ============================================================================ +09:57:04 Calculate Source COMM Id = 6 +09:57:04 ============================================================================ +09:57:04 + + +waiting on router queue for slot.... +09:57:07 ============================================================================ +09:57:07 Slot Id : <314> +09:57:07 Transaction Type : REQUEST +09:57:07 Received From : +09:57:07 ============================================================================ +09:57:07 FNo. Len. Field Value +09:57:07 ============================================================================ +09:57:07 [ 1] [ 4] [0800] +09:57:07 [ 7] [ 10] [0320025615] +09:57:07 [ 11] [ 6] [155739] +09:57:07 [ 70] [ 3] [301] +09:57:07 ============================================================================ +09:57:07 + + +waiting on router queue for slot.... +09:57:07 Sending to : +09:57:07 ============================================================================ +09:57:07 ============================================================================ +09:57:07 Slot Id : <314> +09:57:07 Transaction Type : RESPONSE +09:57:07 Received From : +09:57:07 ============================================================================ +09:57:07 FNo. Len. Field Value +09:57:07 ============================================================================ +09:57:07 [ 1] [ 4] [0810] +09:57:07 [ 7] [ 10] [0320025615] +09:57:07 [ 11] [ 6] [155739] +09:57:07 [ 39] [ 2] [00] +09:57:07 [ 70] [ 3] [301] +09:57:07 ============================================================================ +09:57:07 Calculate Source COMM Id = 2 +09:57:07 ============================================================================ +09:57:07 + + +waiting on router queue for slot.... +09:57:07 ============================================================================ +09:57:07 Slot Id : <331> +09:57:07 Transaction Type : REQUEST +09:57:07 Received From : +09:57:07 ============================================================================ +09:57:07 FNo. Len. Field Value +09:57:07 ============================================================================ +09:57:07 [ 1] [ 4] [0200] +09:57:07 [ 2] [ 16] [1808930600001069] +09:57:07 [ 3] [ 6] [011000] +09:57:07 [ 4] [ 12] [000100000000] +09:57:07 [ 7] [ 10] [0320100455] +09:57:07 [ 11] [ 6] [009287] +09:57:07 [ 12] [ 6] [100455] +09:57:07 [ 13] [ 4] [0320] +09:57:07 [ 14] [ 4] [1803] +09:57:07 [ 15] [ 4] [0320] +09:57:07 [ 18] [ 4] [6011] +09:57:07 [ 22] [ 3] [900] +09:57:07 [ 25] [ 2] [02] +09:57:07 [ 28] [ 9] [D00002000] +09:57:07 [ 32] [ 6] [220699] +09:57:07 [ 35] [ 27] [1808930600001069=1803500927] +09:57:07 [ 37] [ 12] [507900213251] +09:57:07 [ 41] [ 8] [05000100] +09:57:07 [ 42] [ 15] [APTRA ] +09:57:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:57:07 [ 49] [ 3] [418] +09:57:07 [ 52] [ 16] [F1FEDE0B43AEBFD2] +09:57:07 ============================================================================ +09:57:07 + + +waiting on router queue for slot.... +09:57:07 Sending to : +09:57:07 ============================================================================ +09:57:07 Sending to : +09:57:07 ============================================================================ +09:57:08 ============================================================================ +09:57:08 Slot Id : <331> +09:57:08 Transaction Type : REQUEST +09:57:08 Received From : +09:57:08 ============================================================================ +09:57:08 FNo. Len. Field Value +09:57:08 ============================================================================ +09:57:08 [ 1] [ 4] [0200] +09:57:08 [ 2] [ 16] [1808930600001069] +09:57:08 [ 3] [ 6] [011000] +09:57:08 [ 4] [ 12] [000100000000] +09:57:08 [ 7] [ 10] [0320100455] +09:57:08 [ 11] [ 6] [009287] +09:57:08 [ 12] [ 6] [100455] +09:57:08 [ 13] [ 4] [0320] +09:57:08 [ 14] [ 4] [1803] +09:57:08 [ 15] [ 4] [0320] +09:57:08 [ 18] [ 4] [6011] +09:57:08 [ 22] [ 3] [900] +09:57:08 [ 25] [ 2] [02] +09:57:08 [ 28] [ 9] [D00002000] +09:57:08 [ 32] [ 6] [220699] +09:57:08 [ 35] [ 27] [1808930600001069=1803500927] +09:57:08 [ 37] [ 12] [507900213251] +09:57:08 [ 41] [ 8] [05000100] +09:57:08 [ 42] [ 15] [APTRA ] +09:57:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:57:08 [ 49] [ 3] [418] +09:57:08 [ 52] [ 16] [F1FEDE0B43AEBFD2] +09:57:08 ============================================================================ +09:57:08 + + +waiting on router queue for slot.... +09:57:08 Sending to : +09:57:08 ============================================================================ +09:57:08 ============================================================================ +09:57:08 Slot Id : <331> +09:57:08 Transaction Type : REQUEST +09:57:08 Received From : +09:57:08 ============================================================================ +09:57:08 FNo. Len. Field Value +09:57:08 ============================================================================ +09:57:08 [ 1] [ 4] [0200] +09:57:08 [ 2] [ 16] [1808930600001069] +09:57:08 [ 3] [ 6] [011000] +09:57:08 [ 4] [ 12] [000100000000] +09:57:08 [ 7] [ 10] [0320100455] +09:57:08 [ 11] [ 6] [009287] +09:57:08 [ 12] [ 6] [100455] +09:57:08 [ 13] [ 4] [0320] +09:57:08 [ 14] [ 4] [1803] +09:57:08 [ 15] [ 4] [0320] +09:57:08 [ 18] [ 4] [6011] +09:57:08 [ 22] [ 3] [900] +09:57:08 [ 25] [ 2] [02] +09:57:08 [ 28] [ 9] [D00002000] +09:57:08 [ 32] [ 6] [220699] +09:57:08 [ 35] [ 27] [1808930600001069=1803500927] +09:57:08 [ 37] [ 12] [507900213251] +09:57:08 [ 41] [ 8] [05000100] +09:57:08 [ 42] [ 15] [APTRA ] +09:57:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:57:08 [ 49] [ 3] [418] +09:57:08 [ 52] [ 16] [6F6881BB3A44A41B] +09:57:08 ============================================================================ +09:57:08 + + +waiting on router queue for slot.... +09:57:08 Sending to : <2> +09:57:08 ============================================================================ +09:57:16 ============================================================================ +09:57:16 Slot Id : <331> +09:57:16 Transaction Type : RESPONSE +09:57:16 Received From : +09:57:16 ============================================================================ +09:57:16 FNo. Len. Field Value +09:57:16 ============================================================================ +09:57:16 [ 1] [ 4] [0210] +09:57:16 [ 2] [ 16] [1808930600001069] +09:57:16 [ 3] [ 6] [011000] +09:57:16 [ 4] [ 12] [000100000000] +09:57:16 [ 6] [ 12] [000100000000] +09:57:16 [ 7] [ 10] [0320100455] +09:57:16 [ 11] [ 6] [009287] +09:57:16 [ 12] [ 6] [100455] +09:57:16 [ 13] [ 4] [0320] +09:57:16 [ 14] [ 4] [1803] +09:57:16 [ 18] [ 4] [6011] +09:57:16 [ 19] [ 3] [418] +09:57:16 [ 22] [ 3] [021] +09:57:16 [ 32] [ 6] [220699] +09:57:16 [ 35] [ 27] [1808930600001069=1803500927] +09:57:16 [ 37] [ 12] [507900213251] +09:57:16 [ 38] [ 6] [009287] +09:57:16 [ 39] [ 2] [00] +09:57:16 [ 41] [ 8] [05000100] +09:57:16 [ 49] [ 3] [418] +09:57:16 [ 52] [ 16] [6F6881BB3A44A41B] +09:57:16 [ 54] [ 20] [1001418C000068304800] +09:57:16 ============================================================================ +09:57:16 Sending to : +09:57:16 ============================================================================ +09:57:16 + + +waiting on router queue for slot.... +09:57:18 ============================================================================ +09:57:18 Slot Id : <331> +09:57:18 Transaction Type : RESPONSE +09:57:18 Received From : +09:57:18 ============================================================================ +09:57:18 FNo. Len. Field Value +09:57:18 ============================================================================ +09:57:18 [ 1] [ 4] [0210] +09:57:18 [ 2] [ 16] [1808930600001069] +09:57:18 [ 3] [ 6] [011000] +09:57:18 [ 4] [ 12] [000100000000] +09:57:18 [ 6] [ 12] [000100000000] +09:57:18 [ 7] [ 10] [0320100455] +09:57:18 [ 11] [ 6] [009287] +09:57:18 [ 12] [ 6] [100455] +09:57:18 [ 13] [ 4] [0320] +09:57:18 [ 14] [ 4] [1803] +09:57:18 [ 18] [ 4] [6011] +09:57:18 [ 19] [ 3] [418] +09:57:18 [ 22] [ 3] [021] +09:57:18 [ 32] [ 6] [220699] +09:57:18 [ 35] [ 27] [1808930600001069=1803500927] +09:57:18 [ 37] [ 12] [507900213251] +09:57:18 [ 38] [ 6] [009287] +09:57:18 [ 39] [ 2] [00] +09:57:18 [ 41] [ 8] [05000100] +09:57:18 [ 49] [ 3] [418] +09:57:18 [ 52] [ 16] [6F6881BB3A44A41B] +09:57:18 [ 54] [ 20] [1001418C000068304800] +09:57:18 ============================================================================ +09:57:18 Calculate Source COMM Id = 1 +09:57:18 ============================================================================ +09:57:18 + + +waiting on router queue for slot.... +09:57:21 ============================================================================ +09:57:21 Slot Id : <321> +09:57:21 Transaction Type : REQUEST +09:57:21 Received From : +09:57:21 ============================================================================ +09:57:21 FNo. Len. Field Value +09:57:21 ============================================================================ +09:57:21 [ 1] [ 4] [0200] +09:57:21 [ 2] [ 16] [6688990104797004] +09:57:21 [ 3] [ 6] [010000] +09:57:21 [ 4] [ 12] [000010000000] +09:57:21 [ 7] [ 10] [0320095717] +09:57:21 [ 11] [ 6] [706471] +09:57:21 [ 12] [ 6] [095717] +09:57:21 [ 13] [ 4] [0320] +09:57:21 [ 15] [ 4] [0320] +09:57:21 [ 18] [ 4] [6011] +09:57:21 [ 22] [ 3] [900] +09:57:21 [ 25] [ 2] [02] +09:57:21 [ 28] [ 9] [D00002000] +09:57:21 [ 32] [ 6] [621354] +09:57:21 [ 35] [ 37] [6688990104797004=43051231700432300000] +09:57:21 [ 37] [ 12] [507902508239] +09:57:21 [ 41] [ 8] [05003300] +09:57:21 [ 42] [ 15] [NATIVE ] +09:57:21 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:57:21 [ 49] [ 3] [418] +09:57:21 [ 52] [ 16] [8B3F94915BEF9BF9] +09:57:21 ============================================================================ +09:57:21 + + +waiting on router queue for slot.... +09:57:21 Sending to : +09:57:21 ============================================================================ +09:57:21 Sending to : +09:57:21 ============================================================================ +09:57:22 ============================================================================ +09:57:22 Slot Id : <321> +09:57:22 Transaction Type : REQUEST +09:57:22 Received From : +09:57:22 ============================================================================ +09:57:22 FNo. Len. Field Value +09:57:22 ============================================================================ +09:57:22 [ 1] [ 4] [0200] +09:57:22 [ 2] [ 16] [6688990104797004] +09:57:22 [ 3] [ 6] [010000] +09:57:22 [ 4] [ 12] [000010000000] +09:57:22 [ 7] [ 10] [0320095717] +09:57:22 [ 11] [ 6] [706471] +09:57:22 [ 12] [ 6] [095717] +09:57:22 [ 13] [ 4] [0320] +09:57:22 [ 15] [ 4] [0320] +09:57:22 [ 18] [ 4] [6011] +09:57:22 [ 22] [ 3] [900] +09:57:22 [ 25] [ 2] [02] +09:57:22 [ 28] [ 9] [D00002000] +09:57:22 [ 32] [ 6] [621354] +09:57:22 [ 35] [ 37] [6688990104797004=43051231700432300000] +09:57:22 [ 37] [ 12] [507902508239] +09:57:22 [ 41] [ 8] [05003300] +09:57:22 [ 42] [ 15] [NATIVE ] +09:57:22 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:57:22 [ 49] [ 3] [418] +09:57:22 [ 52] [ 16] [8B3F94915BEF9BF9] +09:57:22 ============================================================================ +09:57:22 + + +waiting on router queue for slot.... +09:57:22 Sending to : +09:57:22 ============================================================================ +09:57:22 ============================================================================ +09:57:22 Slot Id : <321> +09:57:22 Transaction Type : REQUEST +09:57:22 Received From : +09:57:22 ============================================================================ +09:57:22 FNo. Len. Field Value +09:57:22 ============================================================================ +09:57:22 [ 1] [ 4] [0200] +09:57:22 [ 2] [ 16] [6688990104797004] +09:57:22 [ 3] [ 6] [010000] +09:57:22 [ 4] [ 12] [000010000000] +09:57:22 [ 7] [ 10] [0320095717] +09:57:22 [ 11] [ 6] [706471] +09:57:22 [ 12] [ 6] [095717] +09:57:22 [ 13] [ 4] [0320] +09:57:22 [ 15] [ 4] [0320] +09:57:22 [ 18] [ 4] [6011] +09:57:22 [ 22] [ 3] [900] +09:57:22 [ 25] [ 2] [02] +09:57:22 [ 28] [ 9] [D00002000] +09:57:22 [ 32] [ 6] [621354] +09:57:22 [ 35] [ 37] [6688990104797004=43051231700432300000] +09:57:22 [ 37] [ 12] [507902508239] +09:57:22 [ 41] [ 8] [05003300] +09:57:22 [ 42] [ 15] [NATIVE ] +09:57:22 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:57:22 [ 49] [ 3] [418] +09:57:22 [ 52] [ 16] [D4378EF28D33A0D5] +09:57:22 ============================================================================ +09:57:22 + + +waiting on router queue for slot.... +09:57:22 Sending to : <4> +09:57:22 ============================================================================ +09:57:22 ============================================================================ +09:57:22 Slot Id : <337> +09:57:22 Transaction Type : REQUEST +09:57:22 Received From : +09:57:22 ============================================================================ +09:57:22 FNo. Len. Field Value +09:57:22 ============================================================================ +09:57:22 [ 1] [ 4] [0800] +09:57:22 [ 7] [ 10] [0320025630] +09:57:22 [ 11] [ 6] [155740] +09:57:22 [ 70] [ 3] [301] +09:57:22 ============================================================================ +09:57:22 + + +waiting on router queue for slot.... +09:57:22 Sending to : +09:57:22 ============================================================================ +09:57:22 ============================================================================ +09:57:22 Slot Id : <337> +09:57:22 Transaction Type : RESPONSE +09:57:22 Received From : +09:57:22 ============================================================================ +09:57:22 FNo. Len. Field Value +09:57:22 ============================================================================ +09:57:22 [ 1] [ 4] [0810] +09:57:22 [ 7] [ 10] [0320025630] +09:57:22 [ 11] [ 6] [155740] +09:57:22 [ 39] [ 2] [00] +09:57:22 [ 70] [ 3] [301] +09:57:22 ============================================================================ +09:57:22 Calculate Source COMM Id = 2 +09:57:22 ============================================================================ +09:57:22 + + +waiting on router queue for slot.... +09:57:23 ============================================================================ +09:57:23 Slot Id : <321> +09:57:23 Transaction Type : RESPONSE +09:57:23 Received From : +09:57:23 ============================================================================ +09:57:23 FNo. Len. Field Value +09:57:23 ============================================================================ +09:57:23 [ 1] [ 4] [0210] +09:57:23 [ 2] [ 16] [6688990104797004] +09:57:23 [ 3] [ 6] [010000] +09:57:23 [ 4] [ 12] [000010000000] +09:57:23 [ 11] [ 6] [706471] +09:57:23 [ 12] [ 6] [095717] +09:57:23 [ 15] [ 4] [0320] +09:57:23 [ 18] [ 4] [6011] +09:57:23 [ 32] [ 6] [621354] +09:57:23 [ 35] [ 37] [6688990104797004=43051231700432300000] +09:57:23 [ 37] [ 12] [507902508239] +09:57:23 [ 38] [ 6] [309182] +09:57:23 [ 39] [ 2] [00] +09:57:23 [ 41] [ 8] [05003300] +09:57:23 [ 49] [ 3] [418] +09:57:23 [ 54] [ 20] [0002418C000033147527] +09:57:23 ============================================================================ +09:57:23 Sending to : +09:57:23 ============================================================================ +09:57:23 + + +waiting on router queue for slot.... +09:57:23 ============================================================================ +09:57:23 Slot Id : <334> +09:57:23 Transaction Type : REQUEST +09:57:23 Received From : +09:57:23 ============================================================================ +09:57:23 FNo. Len. Field Value +09:57:23 ============================================================================ +09:57:23 [ 1] [ 4] [0200] +09:57:23 [ 2] [ 16] [6688990100941507] +09:57:23 [ 3] [ 6] [010000] +09:57:23 [ 4] [ 12] [000030000000] +09:57:23 [ 7] [ 10] [0320095719] +09:57:23 [ 11] [ 6] [706482] +09:57:23 [ 12] [ 6] [095719] +09:57:23 [ 13] [ 4] [0320] +09:57:23 [ 15] [ 4] [0320] +09:57:23 [ 18] [ 4] [6011] +09:57:23 [ 22] [ 3] [900] +09:57:23 [ 25] [ 2] [02] +09:57:23 [ 28] [ 9] [D00002000] +09:57:23 [ 32] [ 6] [621354] +09:57:23 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:57:23 [ 37] [ 12] [507904719464] +09:57:23 [ 41] [ 8] [18001000] +09:57:23 [ 42] [ 15] [NATIVE ] +09:57:23 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:57:23 [ 49] [ 3] [418] +09:57:23 [ 52] [ 16] [3B496FEB663F5696] +09:57:23 ============================================================================ +09:57:23 + + +waiting on router queue for slot.... +09:57:23 Sending to : +09:57:23 ============================================================================ +09:57:23 Sending to : +09:57:23 ============================================================================ +09:57:23 ============================================================================ +09:57:23 Slot Id : <334> +09:57:23 Transaction Type : REQUEST +09:57:23 Received From : +09:57:23 ============================================================================ +09:57:23 FNo. Len. Field Value +09:57:23 ============================================================================ +09:57:23 [ 1] [ 4] [0200] +09:57:23 [ 2] [ 16] [6688990100941507] +09:57:23 [ 3] [ 6] [010000] +09:57:23 [ 4] [ 12] [000030000000] +09:57:23 [ 7] [ 10] [0320095719] +09:57:23 [ 11] [ 6] [706482] +09:57:23 [ 12] [ 6] [095719] +09:57:23 [ 13] [ 4] [0320] +09:57:23 [ 15] [ 4] [0320] +09:57:23 [ 18] [ 4] [6011] +09:57:23 [ 22] [ 3] [900] +09:57:23 [ 25] [ 2] [02] +09:57:23 [ 28] [ 9] [D00002000] +09:57:23 [ 32] [ 6] [621354] +09:57:23 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:57:23 [ 37] [ 12] [507904719464] +09:57:23 [ 41] [ 8] [18001000] +09:57:23 [ 42] [ 15] [NATIVE ] +09:57:23 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:57:23 [ 49] [ 3] [418] +09:57:23 [ 52] [ 16] [3B496FEB663F5696] +09:57:23 ============================================================================ +09:57:23 + + +waiting on router queue for slot.... +09:57:23 Sending to : +09:57:23 ============================================================================ +09:57:23 ============================================================================ +09:57:23 Slot Id : <334> +09:57:23 Transaction Type : REQUEST +09:57:23 Received From : +09:57:23 ============================================================================ +09:57:23 FNo. Len. Field Value +09:57:23 ============================================================================ +09:57:23 [ 1] [ 4] [0200] +09:57:23 [ 2] [ 16] [6688990100941507] +09:57:23 [ 3] [ 6] [010000] +09:57:23 [ 4] [ 12] [000030000000] +09:57:23 [ 7] [ 10] [0320095719] +09:57:23 [ 11] [ 6] [706482] +09:57:23 [ 12] [ 6] [095719] +09:57:23 [ 13] [ 4] [0320] +09:57:23 [ 15] [ 4] [0320] +09:57:23 [ 18] [ 4] [6011] +09:57:23 [ 22] [ 3] [900] +09:57:23 [ 25] [ 2] [02] +09:57:23 [ 28] [ 9] [D00002000] +09:57:23 [ 32] [ 6] [621354] +09:57:23 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:57:23 [ 37] [ 12] [507904719464] +09:57:23 [ 41] [ 8] [18001000] +09:57:23 [ 42] [ 15] [NATIVE ] +09:57:23 [ 43] [ 40] [Khoua Unit Khoua LAO] +09:57:23 [ 49] [ 3] [418] +09:57:23 [ 52] [ 16] [708A5172D2D707EC] +09:57:23 ============================================================================ +09:57:23 + + +waiting on router queue for slot.... +09:57:23 Sending to : <4> +09:57:23 ============================================================================ +09:57:24 ============================================================================ +09:57:24 Slot Id : <334> +09:57:24 Transaction Type : RESPONSE +09:57:24 Received From : +09:57:24 ============================================================================ +09:57:24 FNo. Len. Field Value +09:57:24 ============================================================================ +09:57:24 [ 1] [ 4] [0210] +09:57:24 [ 2] [ 16] [6688990100941507] +09:57:24 [ 3] [ 6] [010000] +09:57:24 [ 4] [ 12] [000030000000] +09:57:24 [ 11] [ 6] [706482] +09:57:24 [ 12] [ 6] [095719] +09:57:24 [ 15] [ 4] [0320] +09:57:24 [ 18] [ 4] [6011] +09:57:24 [ 32] [ 6] [621354] +09:57:24 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:57:24 [ 37] [ 12] [507904719464] +09:57:24 [ 38] [ 6] [033857] +09:57:24 [ 39] [ 2] [00] +09:57:24 [ 41] [ 8] [18001000] +09:57:24 [ 49] [ 3] [418] +09:57:24 [ 54] [ 20] [0002418C000040707741] +09:57:24 ============================================================================ +09:57:24 Sending to : +09:57:24 ============================================================================ +09:57:24 + + +waiting on router queue for slot.... +09:57:24 ============================================================================ +09:57:24 Slot Id : <321> +09:57:24 Transaction Type : RESPONSE +09:57:24 Received From : +09:57:24 ============================================================================ +09:57:24 FNo. Len. Field Value +09:57:24 ============================================================================ +09:57:24 [ 1] [ 4] [0210] +09:57:24 [ 2] [ 16] [6688990104797004] +09:57:24 [ 3] [ 6] [010000] +09:57:24 [ 4] [ 12] [000010000000] +09:57:24 [ 11] [ 6] [706471] +09:57:24 [ 12] [ 6] [095717] +09:57:24 [ 15] [ 4] [0320] +09:57:24 [ 18] [ 4] [6011] +09:57:24 [ 32] [ 6] [621354] +09:57:24 [ 35] [ 37] [6688990104797004=43051231700432300000] +09:57:24 [ 37] [ 12] [507902508239] +09:57:24 [ 38] [ 6] [309182] +09:57:24 [ 39] [ 2] [00] +09:57:24 [ 41] [ 8] [05003300] +09:57:24 [ 49] [ 3] [418] +09:57:24 [ 54] [ 20] [0002418C000033147527] +09:57:24 ============================================================================ +09:57:24 Calculate Source COMM Id = 0 +09:57:24 ============================================================================ +09:57:24 + + +waiting on router queue for slot.... +09:57:26 ============================================================================ +09:57:26 Slot Id : <334> +09:57:26 Transaction Type : RESPONSE +09:57:26 Received From : +09:57:26 ============================================================================ +09:57:26 FNo. Len. Field Value +09:57:26 ============================================================================ +09:57:26 [ 1] [ 4] [0210] +09:57:26 [ 2] [ 16] [6688990100941507] +09:57:26 [ 3] [ 6] [010000] +09:57:26 [ 4] [ 12] [000030000000] +09:57:26 [ 11] [ 6] [706482] +09:57:26 [ 12] [ 6] [095719] +09:57:26 [ 15] [ 4] [0320] +09:57:26 [ 18] [ 4] [6011] +09:57:26 [ 32] [ 6] [621354] +09:57:26 [ 35] [ 37] [6688990100941507=41121231150746900000] +09:57:26 [ 37] [ 12] [507904719464] +09:57:26 [ 38] [ 6] [033857] +09:57:26 [ 39] [ 2] [00] +09:57:26 [ 41] [ 8] [18001000] +09:57:26 [ 49] [ 3] [418] +09:57:26 [ 54] [ 20] [0002418C000040707741] +09:57:26 ============================================================================ +09:57:26 Calculate Source COMM Id = 0 +09:57:26 ============================================================================ +09:57:26 + + +waiting on router queue for slot.... +09:57:34 ============================================================================ +09:57:34 Slot Id : <336> +09:57:34 Transaction Type : REQUEST +09:57:34 Received From : +09:57:34 ============================================================================ +09:57:34 FNo. Len. Field Value +09:57:34 ============================================================================ +09:57:34 [ 1] [ 4] [0800] +09:57:34 [ 7] [ 10] [0320025641] +09:57:34 [ 11] [ 6] [155741] +09:57:34 [ 70] [ 3] [301] +09:57:34 ============================================================================ +09:57:34 + + +waiting on router queue for slot.... +09:57:34 Sending to : +09:57:34 ============================================================================ +09:57:34 ============================================================================ +09:57:34 Slot Id : <336> +09:57:34 Transaction Type : RESPONSE +09:57:34 Received From : +09:57:34 ============================================================================ +09:57:34 FNo. Len. Field Value +09:57:34 ============================================================================ +09:57:34 [ 1] [ 4] [0810] +09:57:34 [ 7] [ 10] [0320025641] +09:57:34 [ 11] [ 6] [155741] +09:57:34 [ 39] [ 2] [00] +09:57:34 [ 70] [ 3] [301] +09:57:34 ============================================================================ +09:57:34 Calculate Source COMM Id = 2 +09:57:34 ============================================================================ +09:57:34 + + +waiting on router queue for slot.... +09:57:44 ============================================================================ +09:57:44 Slot Id : <335> +09:57:44 Transaction Type : REQUEST +09:57:44 Received From : +09:57:44 ============================================================================ +09:57:44 FNo. Len. Field Value +09:57:44 ============================================================================ +09:57:44 [ 1] [ 4] [0800] +09:57:44 [ 7] [ 10] [0320025652] +09:57:44 [ 11] [ 6] [155742] +09:57:44 [ 70] [ 3] [301] +09:57:44 ============================================================================ +09:57:44 + + +waiting on router queue for slot.... +09:57:44 Sending to : +09:57:44 ============================================================================ +09:57:44 ============================================================================ +09:57:44 Slot Id : <335> +09:57:44 Transaction Type : RESPONSE +09:57:44 Received From : +09:57:44 ============================================================================ +09:57:44 FNo. Len. Field Value +09:57:44 ============================================================================ +09:57:44 [ 1] [ 4] [0810] +09:57:44 [ 7] [ 10] [0320025652] +09:57:44 [ 11] [ 6] [155742] +09:57:44 [ 39] [ 2] [00] +09:57:44 [ 70] [ 3] [301] +09:57:44 ============================================================================ +09:57:44 Calculate Source COMM Id = 2 +09:57:44 ============================================================================ +09:57:44 + + +waiting on router queue for slot.... +09:57:47 ============================================================================ +09:57:47 Slot Id : <320> +09:57:47 Transaction Type : REQUEST +09:57:47 Received From : +09:57:47 ============================================================================ +09:57:47 FNo. Len. Field Value +09:57:47 ============================================================================ +09:57:47 [ 1] [ 4] [0200] +09:57:47 [ 2] [ 16] [6213541000573413] +09:57:47 [ 3] [ 6] [300000] +09:57:47 [ 4] [ 12] [000000000000] +09:57:47 [ 7] [ 10] [0320095539] +09:57:47 [ 11] [ 6] [937078] +09:57:47 [ 12] [ 6] [095539] +09:57:47 [ 13] [ 4] [0320] +09:57:47 [ 15] [ 4] [0320] +09:57:47 [ 18] [ 4] [6011] +09:57:47 [ 19] [ 3] [418] +09:57:47 [ 22] [ 3] [021] +09:57:47 [ 25] [ 2] [01] +09:57:47 [ 28] [ 9] [D00000000] +09:57:47 [ 32] [ 6] [668899] +09:57:47 [ 35] [ 32] [6213541000573413=491212017341203] +09:57:47 [ 37] [ 12] [507902435617] +09:57:47 [ 41] [ 8] [03020031] +09:57:47 [ 42] [ 15] [APT ] +09:57:47 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +09:57:47 [ 49] [ 3] [418] +09:57:47 [ 52] [ 16] [E7ECD3B8C491BEF5] +09:57:47 ============================================================================ +09:57:47 + + +waiting on router queue for slot.... +09:57:47 Sending to : +09:57:47 ============================================================================ +09:57:47 Sending to : +09:57:47 ============================================================================ +09:57:48 ============================================================================ +09:57:48 Slot Id : <320> +09:57:48 Transaction Type : REQUEST +09:57:48 Received From : +09:57:48 ============================================================================ +09:57:48 FNo. Len. Field Value +09:57:48 ============================================================================ +09:57:48 [ 1] [ 4] [0200] +09:57:48 [ 2] [ 16] [6213541000573413] +09:57:48 [ 3] [ 6] [300000] +09:57:48 [ 4] [ 12] [000000000000] +09:57:48 [ 7] [ 10] [0320095539] +09:57:48 [ 11] [ 6] [937078] +09:57:48 [ 12] [ 6] [095539] +09:57:48 [ 13] [ 4] [0320] +09:57:48 [ 15] [ 4] [0320] +09:57:48 [ 18] [ 4] [6011] +09:57:48 [ 19] [ 3] [418] +09:57:48 [ 22] [ 3] [021] +09:57:48 [ 25] [ 2] [01] +09:57:48 [ 28] [ 9] [D00000000] +09:57:48 [ 32] [ 6] [668899] +09:57:48 [ 35] [ 32] [6213541000573413=491212017341203] +09:57:48 [ 37] [ 12] [507902435617] +09:57:48 [ 41] [ 8] [03020031] +09:57:48 [ 42] [ 15] [APT ] +09:57:48 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +09:57:48 [ 49] [ 3] [418] +09:57:48 [ 52] [ 16] [E7ECD3B8C491BEF5] +09:57:48 ============================================================================ +09:57:48 + + +waiting on router queue for slot.... +09:57:48 Sending to : +09:57:48 ============================================================================ +09:57:48 ============================================================================ +09:57:48 Slot Id : <320> +09:57:48 Transaction Type : REQUEST +09:57:48 Received From : +09:57:48 ============================================================================ +09:57:48 FNo. Len. Field Value +09:57:48 ============================================================================ +09:57:48 [ 1] [ 4] [0200] +09:57:48 [ 2] [ 16] [6213541000573413] +09:57:48 [ 3] [ 6] [300000] +09:57:48 [ 4] [ 12] [000000000000] +09:57:48 [ 7] [ 10] [0320095539] +09:57:48 [ 11] [ 6] [937078] +09:57:48 [ 12] [ 6] [095539] +09:57:48 [ 13] [ 4] [0320] +09:57:48 [ 15] [ 4] [0320] +09:57:48 [ 18] [ 4] [6011] +09:57:48 [ 19] [ 3] [418] +09:57:48 [ 22] [ 3] [021] +09:57:48 [ 25] [ 2] [01] +09:57:48 [ 28] [ 9] [D00000000] +09:57:48 [ 32] [ 6] [668899] +09:57:48 [ 35] [ 32] [6213541000573413=491212017341203] +09:57:48 [ 37] [ 12] [507902435617] +09:57:48 [ 41] [ 8] [03020031] +09:57:48 [ 42] [ 15] [APT ] +09:57:48 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +09:57:48 [ 49] [ 3] [418] +09:57:48 [ 52] [ 16] [A2B7C3BB4E75FC96] +09:57:48 ============================================================================ +09:57:48 + + +waiting on router queue for slot.... +09:57:48 Sending to : <0> +09:57:48 ============================================================================ +09:57:48 ============================================================================ +09:57:48 Slot Id : <320> +09:57:48 Transaction Type : RESPONSE +09:57:48 Received From : +09:57:48 ============================================================================ +09:57:48 FNo. Len. Field Value +09:57:48 ============================================================================ +09:57:48 [ 1] [ 4] [0210] +09:57:48 [ 2] [ 16] [6213541000573413] +09:57:48 [ 3] [ 6] [300000] +09:57:48 [ 4] [ 12] [000000000000] +09:57:48 [ 7] [ 10] [0320095539] +09:57:48 [ 11] [ 6] [937078] +09:57:48 [ 12] [ 6] [095539] +09:57:48 [ 13] [ 4] [0320] +09:57:48 [ 15] [ 4] [0320] +09:57:48 [ 18] [ 4] [6011] +09:57:48 [ 19] [ 3] [418] +09:57:48 [ 32] [ 6] [668899] +09:57:48 [ 35] [ 32] [6213541000573413=491212017341203] +09:57:48 [ 37] [ 12] [507902435617] +09:57:48 [ 38] [ 6] [134342] +09:57:48 [ 39] [ 2] [00] +09:57:48 [ 41] [ 8] [03020031] +09:57:48 [ 49] [ 3] [418] +09:57:48 [ 54] [ 40] [0001418C0000882518940002418C000088251894] +09:57:48 ============================================================================ +09:57:48 Sending to : +09:57:48 ============================================================================ +09:57:48 + + +waiting on router queue for slot.... +09:57:49 ============================================================================ +09:57:49 Slot Id : <320> +09:57:49 Transaction Type : RESPONSE +09:57:49 Received From : +09:57:49 ============================================================================ +09:57:49 FNo. Len. Field Value +09:57:49 ============================================================================ +09:57:49 [ 1] [ 4] [0210] +09:57:49 [ 2] [ 16] [6213541000573413] +09:57:49 [ 3] [ 6] [300000] +09:57:49 [ 4] [ 12] [000000000000] +09:57:49 [ 7] [ 10] [0320095539] +09:57:49 [ 11] [ 6] [937078] +09:57:49 [ 12] [ 6] [095539] +09:57:49 [ 13] [ 4] [0320] +09:57:49 [ 15] [ 4] [0320] +09:57:49 [ 18] [ 4] [6011] +09:57:49 [ 19] [ 3] [418] +09:57:49 [ 32] [ 6] [668899] +09:57:49 [ 35] [ 32] [6213541000573413=491212017341203] +09:57:49 [ 37] [ 12] [507902435617] +09:57:49 [ 38] [ 6] [134342] +09:57:49 [ 39] [ 2] [00] +09:57:49 [ 41] [ 8] [03020031] +09:57:49 [ 49] [ 3] [418] +09:57:49 [ 54] [ 40] [0001418C0000882518940002418C000088251894] +09:57:49 ============================================================================ +09:57:49 Calculate Source COMM Id = 4 +09:57:49 ============================================================================ +09:57:49 + + +waiting on router queue for slot.... +09:57:53 ============================================================================ +09:57:53 Slot Id : <342> +09:57:53 Transaction Type : REQUEST +09:57:53 Received From : +09:57:53 ============================================================================ +09:57:53 FNo. Len. Field Value +09:57:53 ============================================================================ +09:57:53 [ 1] [ 4] [0800] +09:57:53 [ 2] [ 5] [02531] +09:57:53 [ 3] [ 6] [579098] +09:57:53 [ 7] [ 10] [0320025753] +09:57:53 [ 11] [ 6] [806990] +09:57:53 [ 15] [ 10] [0320025753] +09:57:53 [ 37] [ 11] [57909806990] +09:57:53 [ 70] [ 3] [001] +09:57:53 ============================================================================ +09:57:53 + + +waiting on router queue for slot.... +09:57:53 ============================================================================ +09:57:53 Slot Id : <342> +09:57:53 Transaction Type : RESPONSE +09:57:53 Received From : +09:57:53 ============================================================================ +09:57:53 FNo. Len. Field Value +09:57:53 ============================================================================ +09:57:53 [ 1] [ 4] [0810] +09:57:53 [ 7] [ 10] [0320025753] +09:57:53 [ 11] [ 6] [806990] +09:57:53 [ 15] [ 4] [0320] +09:57:53 [ 37] [ 12] [57909806990] +09:57:53 [ 39] [ 2] [00] +09:57:53 [ 70] [ 3] [001] +09:57:53 ============================================================================ +09:57:53 Sending to : +09:57:53 ============================================================================ +09:57:53 + + +waiting on router queue for slot.... +09:57:56 ============================================================================ +09:57:56 Slot Id : <345> +09:57:56 Transaction Type : REQUEST +09:57:56 Received From : +09:57:56 ============================================================================ +09:57:56 FNo. Len. Field Value +09:57:56 ============================================================================ +09:57:56 [ 1] [ 4] [0800] +09:57:56 [ 7] [ 10] [0320025704] +09:57:56 [ 11] [ 6] [155743] +09:57:56 [ 70] [ 3] [301] +09:57:56 ============================================================================ +09:57:56 + + +waiting on router queue for slot.... +09:57:56 Sending to : +09:57:56 ============================================================================ +09:57:56 ============================================================================ +09:57:56 Slot Id : <345> +09:57:56 Transaction Type : RESPONSE +09:57:56 Received From : +09:57:56 ============================================================================ +09:57:56 FNo. Len. Field Value +09:57:56 ============================================================================ +09:57:56 [ 1] [ 4] [0810] +09:57:56 [ 7] [ 10] [0320025704] +09:57:56 [ 11] [ 6] [155743] +09:57:56 [ 39] [ 2] [00] +09:57:56 [ 70] [ 3] [301] +09:57:56 ============================================================================ +09:57:56 Calculate Source COMM Id = 2 +09:57:56 ============================================================================ +09:57:56 + + +waiting on router queue for slot.... +09:57:56 ============================================================================ +09:57:56 Slot Id : <341> +09:57:56 Transaction Type : REQUEST +09:57:56 Received From : +09:57:56 ============================================================================ +09:57:56 FNo. Len. Field Value +09:57:56 ============================================================================ +09:57:56 [ 1] [ 4] [0200] +09:57:56 [ 2] [ 16] [6213545000586606] +09:57:56 [ 3] [ 6] [300000] +09:57:56 [ 4] [ 12] [000000000000] +09:57:56 [ 7] [ 10] [0320095547] +09:57:56 [ 11] [ 6] [937083] +09:57:56 [ 12] [ 6] [095547] +09:57:56 [ 13] [ 4] [0320] +09:57:56 [ 15] [ 4] [0320] +09:57:56 [ 18] [ 4] [6011] +09:57:56 [ 19] [ 3] [418] +09:57:56 [ 22] [ 3] [021] +09:57:56 [ 25] [ 2] [01] +09:57:56 [ 28] [ 9] [D00000000] +09:57:56 [ 32] [ 6] [668899] +09:57:56 [ 35] [ 32] [6213545000586606=491212018660511] +09:57:56 [ 37] [ 12] [507900297321] +09:57:56 [ 41] [ 8] [03010006] +09:57:56 [ 42] [ 15] [APT ] +09:57:56 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +09:57:56 [ 49] [ 3] [418] +09:57:56 [ 52] [ 16] [8EEF6BAE74215451] +09:57:56 ============================================================================ +09:57:56 + + +waiting on router queue for slot.... +09:57:56 Sending to : +09:57:56 ============================================================================ +09:57:56 Sending to : +09:57:56 ============================================================================ +09:57:56 ============================================================================ +09:57:56 Slot Id : <341> +09:57:56 Transaction Type : REQUEST +09:57:56 Received From : +09:57:56 ============================================================================ +09:57:56 FNo. Len. Field Value +09:57:56 ============================================================================ +09:57:56 [ 1] [ 4] [0200] +09:57:56 [ 2] [ 16] [6213545000586606] +09:57:56 [ 3] [ 6] [300000] +09:57:56 [ 4] [ 12] [000000000000] +09:57:56 [ 7] [ 10] [0320095547] +09:57:56 [ 11] [ 6] [937083] +09:57:56 [ 12] [ 6] [095547] +09:57:56 [ 13] [ 4] [0320] +09:57:56 [ 15] [ 4] [0320] +09:57:56 [ 18] [ 4] [6011] +09:57:56 [ 19] [ 3] [418] +09:57:56 [ 22] [ 3] [021] +09:57:56 [ 25] [ 2] [01] +09:57:56 [ 28] [ 9] [D00000000] +09:57:56 [ 32] [ 6] [668899] +09:57:56 [ 35] [ 32] [6213545000586606=491212018660511] +09:57:56 [ 37] [ 12] [507900297321] +09:57:56 [ 41] [ 8] [03010006] +09:57:56 [ 42] [ 15] [APT ] +09:57:56 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +09:57:56 [ 49] [ 3] [418] +09:57:56 [ 52] [ 16] [8EEF6BAE74215451] +09:57:56 ============================================================================ +09:57:56 + + +waiting on router queue for slot.... +09:57:56 Sending to : +09:57:56 ============================================================================ +09:57:56 ============================================================================ +09:57:56 Slot Id : <341> +09:57:56 Transaction Type : REQUEST +09:57:56 Received From : +09:57:56 ============================================================================ +09:57:56 FNo. Len. Field Value +09:57:56 ============================================================================ +09:57:56 [ 1] [ 4] [0200] +09:57:56 [ 2] [ 16] [6213545000586606] +09:57:56 [ 3] [ 6] [300000] +09:57:56 [ 4] [ 12] [000000000000] +09:57:56 [ 7] [ 10] [0320095547] +09:57:56 [ 11] [ 6] [937083] +09:57:56 [ 12] [ 6] [095547] +09:57:56 [ 13] [ 4] [0320] +09:57:56 [ 15] [ 4] [0320] +09:57:56 [ 18] [ 4] [6011] +09:57:56 [ 19] [ 3] [418] +09:57:56 [ 22] [ 3] [021] +09:57:56 [ 25] [ 2] [01] +09:57:56 [ 28] [ 9] [D00000000] +09:57:56 [ 32] [ 6] [668899] +09:57:56 [ 35] [ 32] [6213545000586606=491212018660511] +09:57:56 [ 37] [ 12] [507900297321] +09:57:56 [ 41] [ 8] [03010006] +09:57:56 [ 42] [ 15] [APT ] +09:57:56 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +09:57:56 [ 49] [ 3] [418] +09:57:56 [ 52] [ 16] [6CDBEE9AD72E4EE7] +09:57:56 ============================================================================ +09:57:56 + + +waiting on router queue for slot.... +09:57:56 Sending to : <0> +09:57:56 ============================================================================ +09:57:57 ============================================================================ +09:57:57 Slot Id : <341> +09:57:57 Transaction Type : RESPONSE +09:57:57 Received From : +09:57:57 ============================================================================ +09:57:57 FNo. Len. Field Value +09:57:57 ============================================================================ +09:57:57 [ 1] [ 4] [0210] +09:57:57 [ 2] [ 16] [6213545000586606] +09:57:57 [ 3] [ 6] [300000] +09:57:57 [ 4] [ 12] [000000000000] +09:57:57 [ 7] [ 10] [0320095547] +09:57:57 [ 11] [ 6] [937083] +09:57:57 [ 12] [ 6] [095547] +09:57:57 [ 13] [ 4] [0320] +09:57:57 [ 15] [ 4] [0320] +09:57:57 [ 18] [ 4] [6011] +09:57:57 [ 19] [ 3] [418] +09:57:57 [ 32] [ 6] [668899] +09:57:57 [ 35] [ 32] [6213545000586606=491212018660511] +09:57:57 [ 37] [ 12] [507900297321] +09:57:57 [ 38] [ 6] [589743] +09:57:57 [ 39] [ 2] [00] +09:57:57 [ 41] [ 8] [03010006] +09:57:57 [ 49] [ 3] [418] +09:57:57 [ 54] [ 40] [0001418C0000507797940002418C000050779794] +09:57:57 ============================================================================ +09:57:57 Sending to : +09:57:57 ============================================================================ +09:57:57 + + +waiting on router queue for slot.... +09:57:58 ============================================================================ +09:57:58 Slot Id : <341> +09:57:58 Transaction Type : RESPONSE +09:57:58 Received From : +09:57:58 ============================================================================ +09:57:58 FNo. Len. Field Value +09:57:58 ============================================================================ +09:57:58 [ 1] [ 4] [0210] +09:57:58 [ 2] [ 16] [6213545000586606] +09:57:58 [ 3] [ 6] [300000] +09:57:58 [ 4] [ 12] [000000000000] +09:57:58 [ 7] [ 10] [0320095547] +09:57:58 [ 11] [ 6] [937083] +09:57:58 [ 12] [ 6] [095547] +09:57:58 [ 13] [ 4] [0320] +09:57:58 [ 15] [ 4] [0320] +09:57:58 [ 18] [ 4] [6011] +09:57:58 [ 19] [ 3] [418] +09:57:58 [ 32] [ 6] [668899] +09:57:58 [ 35] [ 32] [6213545000586606=491212018660511] +09:57:58 [ 37] [ 12] [507900297321] +09:57:58 [ 38] [ 6] [589743] +09:57:58 [ 39] [ 2] [00] +09:57:58 [ 41] [ 8] [03010006] +09:57:58 [ 49] [ 3] [418] +09:57:58 [ 54] [ 40] [0001418C0000507797940002418C000050779794] +09:57:58 ============================================================================ +09:57:58 Calculate Source COMM Id = 4 +09:57:58 ============================================================================ +09:57:58 + + +waiting on router queue for slot.... +09:58:07 ============================================================================ +09:58:07 Slot Id : <344> +09:58:07 Transaction Type : REQUEST +09:58:07 Received From : +09:58:07 ============================================================================ +09:58:07 FNo. Len. Field Value +09:58:07 ============================================================================ +09:58:07 [ 1] [ 4] [0800] +09:58:07 [ 7] [ 10] [0320025715] +09:58:07 [ 11] [ 6] [155744] +09:58:07 [ 70] [ 3] [301] +09:58:07 ============================================================================ +09:58:07 + + +waiting on router queue for slot.... +09:58:07 Sending to : +09:58:07 ============================================================================ +09:58:07 ============================================================================ +09:58:07 Slot Id : <344> +09:58:07 Transaction Type : RESPONSE +09:58:07 Received From : +09:58:07 ============================================================================ +09:58:07 FNo. Len. Field Value +09:58:07 ============================================================================ +09:58:07 [ 1] [ 4] [0810] +09:58:07 [ 7] [ 10] [0320025715] +09:58:07 [ 11] [ 6] [155744] +09:58:07 [ 39] [ 2] [00] +09:58:07 [ 70] [ 3] [301] +09:58:07 ============================================================================ +09:58:07 Calculate Source COMM Id = 2 +09:58:07 ============================================================================ +09:58:07 + + +waiting on router queue for slot.... +09:58:07 ============================================================================ +09:58:07 Slot Id : <323> +09:58:07 Transaction Type : REQUEST +09:58:07 Received From : +09:58:07 ============================================================================ +09:58:07 FNo. Len. Field Value +09:58:07 ============================================================================ +09:58:07 [ 1] [ 4] [0200] +09:58:07 [ 2] [ 16] [6213544000090693] +09:58:07 [ 3] [ 6] [310000] +09:58:07 [ 4] [ 12] [000000000000] +09:58:07 [ 7] [ 10] [0320100553] +09:58:07 [ 11] [ 6] [242320] +09:58:07 [ 12] [ 6] [100553] +09:58:07 [ 13] [ 4] [0320] +09:58:07 [ 14] [ 4] [4912] +09:58:07 [ 15] [ 4] [0320] +09:58:07 [ 18] [ 4] [6011] +09:58:07 [ 22] [ 3] [900] +09:58:07 [ 25] [ 2] [02] +09:58:07 [ 28] [ 9] [000000000] +09:58:07 [ 32] [ 6] [220699] +09:58:07 [ 35] [ 32] [6213544000090693=491212019069216] +09:58:07 [ 37] [ 12] [507900341573] +09:58:07 [ 41] [ 8] [01002000] +09:58:07 [ 42] [ 15] [APTRA ] +09:58:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:58:07 [ 49] [ 3] [418] +09:58:07 [ 52] [ 16] [E0AF6B477E9A78B3] +09:58:07 ============================================================================ +09:58:07 + + +waiting on router queue for slot.... +09:58:07 Sending to : +09:58:07 ============================================================================ +09:58:07 Sending to : +09:58:07 ============================================================================ +09:58:07 ============================================================================ +09:58:07 Slot Id : <323> +09:58:07 Transaction Type : REQUEST +09:58:07 Received From : +09:58:07 ============================================================================ +09:58:07 FNo. Len. Field Value +09:58:07 ============================================================================ +09:58:07 [ 1] [ 4] [0200] +09:58:07 [ 2] [ 16] [6213544000090693] +09:58:07 [ 3] [ 6] [310000] +09:58:07 [ 4] [ 12] [000000000000] +09:58:07 [ 7] [ 10] [0320100553] +09:58:07 [ 11] [ 6] [242320] +09:58:07 [ 12] [ 6] [100553] +09:58:07 [ 13] [ 4] [0320] +09:58:07 [ 14] [ 4] [4912] +09:58:07 [ 15] [ 4] [0320] +09:58:07 [ 18] [ 4] [6011] +09:58:07 [ 22] [ 3] [900] +09:58:07 [ 25] [ 2] [02] +09:58:07 [ 28] [ 9] [000000000] +09:58:07 [ 32] [ 6] [220699] +09:58:07 [ 35] [ 32] [6213544000090693=491212019069216] +09:58:07 [ 37] [ 12] [507900341573] +09:58:07 [ 41] [ 8] [01002000] +09:58:07 [ 42] [ 15] [APTRA ] +09:58:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:58:07 [ 49] [ 3] [418] +09:58:07 [ 52] [ 16] [E0AF6B477E9A78B3] +09:58:07 ============================================================================ +09:58:07 + + +waiting on router queue for slot.... +09:58:07 Sending to : +09:58:07 ============================================================================ +09:58:07 ============================================================================ +09:58:07 Slot Id : <323> +09:58:07 Transaction Type : REQUEST +09:58:07 Received From : +09:58:07 ============================================================================ +09:58:07 FNo. Len. Field Value +09:58:07 ============================================================================ +09:58:07 [ 1] [ 4] [0200] +09:58:07 [ 2] [ 16] [6213544000090693] +09:58:07 [ 3] [ 6] [310000] +09:58:07 [ 4] [ 12] [000000000000] +09:58:07 [ 7] [ 10] [0320100553] +09:58:07 [ 11] [ 6] [242320] +09:58:07 [ 12] [ 6] [100553] +09:58:07 [ 13] [ 4] [0320] +09:58:07 [ 14] [ 4] [4912] +09:58:07 [ 15] [ 4] [0320] +09:58:07 [ 18] [ 4] [6011] +09:58:07 [ 22] [ 3] [900] +09:58:07 [ 25] [ 2] [02] +09:58:07 [ 28] [ 9] [000000000] +09:58:07 [ 32] [ 6] [220699] +09:58:07 [ 35] [ 32] [6213544000090693=491212019069216] +09:58:07 [ 37] [ 12] [507900341573] +09:58:07 [ 41] [ 8] [01002000] +09:58:07 [ 42] [ 15] [APTRA ] +09:58:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:58:07 [ 49] [ 3] [418] +09:58:07 [ 52] [ 16] [AE9A5516A59F9853] +09:58:07 ============================================================================ +09:58:07 + + +waiting on router queue for slot.... +09:58:07 Sending to : <0> +09:58:07 ============================================================================ +09:58:07 ============================================================================ +09:58:07 Slot Id : <323> +09:58:07 Transaction Type : RESPONSE +09:58:07 Received From : +09:58:07 ============================================================================ +09:58:07 FNo. Len. Field Value +09:58:07 ============================================================================ +09:58:07 [ 1] [ 4] [0210] +09:58:07 [ 2] [ 16] [6213544000090693] +09:58:07 [ 3] [ 6] [310000] +09:58:07 [ 4] [ 12] [000000000000] +09:58:07 [ 7] [ 10] [0320100553] +09:58:07 [ 11] [ 6] [242320] +09:58:07 [ 12] [ 6] [100553] +09:58:07 [ 13] [ 4] [0320] +09:58:07 [ 15] [ 4] [0320] +09:58:07 [ 18] [ 4] [6011] +09:58:07 [ 32] [ 6] [220699] +09:58:07 [ 35] [ 32] [6213544000090693=491212019069216] +09:58:07 [ 37] [ 12] [507900341573] +09:58:07 [ 38] [ 6] [691299] +09:58:07 [ 39] [ 2] [00] +09:58:07 [ 41] [ 8] [01002000] +09:58:07 [ 49] [ 3] [418] +09:58:07 [ 54] [ 40] [0001418C0013556498150002418C001355649815] +09:58:07 ============================================================================ +09:58:07 Sending to : +09:58:07 ============================================================================ +09:58:07 + + +waiting on router queue for slot.... +09:58:09 ============================================================================ +09:58:09 Slot Id : <323> +09:58:09 Transaction Type : RESPONSE +09:58:09 Received From : +09:58:09 ============================================================================ +09:58:09 FNo. Len. Field Value +09:58:09 ============================================================================ +09:58:09 [ 1] [ 4] [0210] +09:58:09 [ 2] [ 16] [6213544000090693] +09:58:09 [ 3] [ 6] [310000] +09:58:09 [ 4] [ 12] [000000000000] +09:58:09 [ 7] [ 10] [0320100553] +09:58:09 [ 11] [ 6] [242320] +09:58:09 [ 12] [ 6] [100553] +09:58:09 [ 13] [ 4] [0320] +09:58:09 [ 15] [ 4] [0320] +09:58:09 [ 18] [ 4] [6011] +09:58:09 [ 32] [ 6] [220699] +09:58:09 [ 35] [ 32] [6213544000090693=491212019069216] +09:58:09 [ 37] [ 12] [507900341573] +09:58:09 [ 38] [ 6] [691299] +09:58:09 [ 39] [ 2] [00] +09:58:09 [ 41] [ 8] [01002000] +09:58:09 [ 49] [ 3] [418] +09:58:09 [ 54] [ 40] [0001418C0013556498150002418C001355649815] +09:58:09 ============================================================================ +09:58:09 Calculate Source COMM Id = 1 +09:58:09 ============================================================================ +09:58:09 + + +waiting on router queue for slot.... +09:58:09 ============================================================================ +09:58:09 Slot Id : <268> +09:58:09 Transaction Type : REQUEST +09:58:09 Received From : +09:58:09 ============================================================================ +09:58:09 FNo. Len. Field Value +09:58:09 ============================================================================ +09:58:09 [ 1] [ 4] [0800] +09:58:09 [ 7] [ 10] [0320170958] +09:58:09 [ 11] [ 6] [100958] +09:58:09 [ 37] [ 12] [57910100958] +09:58:09 [ 70] [ 3] [301] +09:58:09 ============================================================================ +09:58:09 + + +waiting on router queue for slot.... +09:58:09 Sending to : +09:58:09 ============================================================================ +09:58:09 ============================================================================ +09:58:09 Slot Id : <268> +09:58:09 Transaction Type : RESPONSE +09:58:09 Received From : +09:58:09 ============================================================================ +09:58:09 FNo. Len. Field Value +09:58:09 ============================================================================ +09:58:09 [ 1] [ 4] [0810] +09:58:09 [ 7] [ 10] [0320170958] +09:58:09 [ 11] [ 6] [100958] +09:58:09 [ 37] [ 12] [579101009580] +09:58:09 [ 39] [ 2] [00] +09:58:09 [ 70] [ 3] [810] +09:58:09 ============================================================================ +09:58:09 Calculate Source COMM Id = 6 +09:58:09 ============================================================================ +09:58:09 + + +waiting on router queue for slot.... +09:58:22 ============================================================================ +09:58:22 Slot Id : <329> +09:58:22 Transaction Type : REQUEST +09:58:22 Received From : +09:58:22 ============================================================================ +09:58:22 FNo. Len. Field Value +09:58:22 ============================================================================ +09:58:22 [ 1] [ 4] [0200] +09:58:22 [ 2] [ 16] [1808930600001069] +09:58:22 [ 3] [ 6] [011000] +09:58:22 [ 4] [ 12] [000060000000] +09:58:22 [ 7] [ 10] [0320100609] +09:58:22 [ 11] [ 6] [009290] +09:58:22 [ 12] [ 6] [100609] +09:58:22 [ 13] [ 4] [0320] +09:58:22 [ 14] [ 4] [1803] +09:58:22 [ 15] [ 4] [0320] +09:58:22 [ 18] [ 4] [6011] +09:58:22 [ 22] [ 3] [900] +09:58:22 [ 25] [ 2] [02] +09:58:22 [ 28] [ 9] [D00002000] +09:58:22 [ 32] [ 6] [220699] +09:58:22 [ 35] [ 27] [1808930600001069=1803500927] +09:58:22 [ 37] [ 12] [507900213253] +09:58:22 [ 41] [ 8] [05000100] +09:58:22 [ 42] [ 15] [APTRA ] +09:58:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:58:22 [ 49] [ 3] [418] +09:58:22 [ 52] [ 16] [F1FEDE0B43AEBFD2] +09:58:22 ============================================================================ +09:58:22 + + +waiting on router queue for slot.... +09:58:22 Sending to : +09:58:22 ============================================================================ +09:58:22 Sending to : +09:58:22 ============================================================================ +09:58:22 ============================================================================ +09:58:22 Slot Id : <329> +09:58:22 Transaction Type : REQUEST +09:58:22 Received From : +09:58:22 ============================================================================ +09:58:22 FNo. Len. Field Value +09:58:22 ============================================================================ +09:58:22 [ 1] [ 4] [0200] +09:58:22 [ 2] [ 16] [1808930600001069] +09:58:22 [ 3] [ 6] [011000] +09:58:22 [ 4] [ 12] [000060000000] +09:58:22 [ 7] [ 10] [0320100609] +09:58:22 [ 11] [ 6] [009290] +09:58:22 [ 12] [ 6] [100609] +09:58:22 [ 13] [ 4] [0320] +09:58:22 [ 14] [ 4] [1803] +09:58:22 [ 15] [ 4] [0320] +09:58:22 [ 18] [ 4] [6011] +09:58:22 [ 22] [ 3] [900] +09:58:22 [ 25] [ 2] [02] +09:58:22 [ 28] [ 9] [D00002000] +09:58:22 [ 32] [ 6] [220699] +09:58:22 [ 35] [ 27] [1808930600001069=1803500927] +09:58:22 [ 37] [ 12] [507900213253] +09:58:22 [ 41] [ 8] [05000100] +09:58:22 [ 42] [ 15] [APTRA ] +09:58:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:58:22 [ 49] [ 3] [418] +09:58:22 [ 52] [ 16] [F1FEDE0B43AEBFD2] +09:58:22 ============================================================================ +09:58:22 + + +waiting on router queue for slot.... +09:58:22 Sending to : +09:58:22 ============================================================================ +09:58:22 ============================================================================ +09:58:22 Slot Id : <329> +09:58:22 Transaction Type : REQUEST +09:58:22 Received From : +09:58:22 ============================================================================ +09:58:22 FNo. Len. Field Value +09:58:22 ============================================================================ +09:58:22 [ 1] [ 4] [0200] +09:58:22 [ 2] [ 16] [1808930600001069] +09:58:22 [ 3] [ 6] [011000] +09:58:22 [ 4] [ 12] [000060000000] +09:58:22 [ 7] [ 10] [0320100609] +09:58:22 [ 11] [ 6] [009290] +09:58:22 [ 12] [ 6] [100609] +09:58:22 [ 13] [ 4] [0320] +09:58:22 [ 14] [ 4] [1803] +09:58:22 [ 15] [ 4] [0320] +09:58:22 [ 18] [ 4] [6011] +09:58:22 [ 22] [ 3] [900] +09:58:22 [ 25] [ 2] [02] +09:58:22 [ 28] [ 9] [D00002000] +09:58:22 [ 32] [ 6] [220699] +09:58:22 [ 35] [ 27] [1808930600001069=1803500927] +09:58:22 [ 37] [ 12] [507900213253] +09:58:22 [ 41] [ 8] [05000100] +09:58:22 [ 42] [ 15] [APTRA ] +09:58:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:58:22 [ 49] [ 3] [418] +09:58:22 [ 52] [ 16] [6F6881BB3A44A41B] +09:58:22 ============================================================================ +09:58:22 + + +waiting on router queue for slot.... +09:58:22 Sending to : <2> +09:58:22 ============================================================================ +09:58:23 ============================================================================ +09:58:23 Slot Id : <339> +09:58:23 Transaction Type : REQUEST +09:58:23 Received From : +09:58:23 ============================================================================ +09:58:23 FNo. Len. Field Value +09:58:23 ============================================================================ +09:58:23 [ 1] [ 4] [0800] +09:58:23 [ 7] [ 10] [0320025731] +09:58:23 [ 11] [ 6] [155745] +09:58:23 [ 70] [ 3] [301] +09:58:23 ============================================================================ +09:58:23 + + +waiting on router queue for slot.... +09:58:23 Sending to : +09:58:23 ============================================================================ +09:58:23 ============================================================================ +09:58:23 Slot Id : <339> +09:58:23 Transaction Type : RESPONSE +09:58:23 Received From : +09:58:23 ============================================================================ +09:58:23 FNo. Len. Field Value +09:58:23 ============================================================================ +09:58:23 [ 1] [ 4] [0810] +09:58:23 [ 7] [ 10] [0320025731] +09:58:23 [ 11] [ 6] [155745] +09:58:23 [ 39] [ 2] [00] +09:58:23 [ 70] [ 3] [301] +09:58:23 ============================================================================ +09:58:23 Calculate Source COMM Id = 2 +09:58:23 ============================================================================ +09:58:23 + + +waiting on router queue for slot.... +09:58:27 ============================================================================ +09:58:27 Slot Id : <348> +09:58:27 Transaction Type : REQUEST +09:58:27 Received From : +09:58:27 ============================================================================ +09:58:27 FNo. Len. Field Value +09:58:27 ============================================================================ +09:58:27 [ 1] [ 4] [0200] +09:58:27 [ 2] [ 16] [6213545000333603] +09:58:27 [ 3] [ 6] [010000] +09:58:27 [ 4] [ 12] [000050000000] +09:58:27 [ 7] [ 10] [0320025735] +09:58:27 [ 11] [ 6] [267859] +09:58:27 [ 12] [ 6] [095735] +09:58:27 [ 13] [ 4] [0320] +09:58:27 [ 14] [ 4] [4912] +09:58:27 [ 15] [ 4] [0320] +09:58:27 [ 18] [ 4] [6011] +09:58:27 [ 19] [ 3] [418] +09:58:27 [ 22] [ 3] [021] +09:58:27 [ 25] [ 2] [01] +09:58:27 [ 28] [ 9] [D00002000] +09:58:27 [ 32] [ 6] [180893] +09:58:27 [ 35] [ 32] [6213545000333603=491212013360798] +09:58:27 [ 37] [ 12] [507902267859] +09:58:27 [ 41] [ 8] [0441VT52] +09:58:27 [ 42] [ 15] [999999 ] +09:58:27 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +09:58:27 [ 49] [ 3] [418] +09:58:27 [ 52] [ 16] [E9EDDCEDE72D9B9C] +09:58:27 ============================================================================ +09:58:27 + + +waiting on router queue for slot.... +09:58:27 Sending to : +09:58:27 ============================================================================ +09:58:27 Sending to : +09:58:27 ============================================================================ +09:58:27 ============================================================================ +09:58:27 Slot Id : <348> +09:58:27 Transaction Type : REQUEST +09:58:27 Received From : +09:58:27 ============================================================================ +09:58:27 FNo. Len. Field Value +09:58:27 ============================================================================ +09:58:27 [ 1] [ 4] [0200] +09:58:27 [ 2] [ 16] [6213545000333603] +09:58:27 [ 3] [ 6] [010000] +09:58:27 [ 4] [ 12] [000050000000] +09:58:27 [ 7] [ 10] [0320025735] +09:58:27 [ 11] [ 6] [267859] +09:58:27 [ 12] [ 6] [095735] +09:58:27 [ 13] [ 4] [0320] +09:58:27 [ 14] [ 4] [4912] +09:58:27 [ 15] [ 4] [0320] +09:58:27 [ 18] [ 4] [6011] +09:58:27 [ 19] [ 3] [418] +09:58:27 [ 22] [ 3] [021] +09:58:27 [ 25] [ 2] [01] +09:58:27 [ 28] [ 9] [D00002000] +09:58:27 [ 32] [ 6] [180893] +09:58:27 [ 35] [ 32] [6213545000333603=491212013360798] +09:58:27 [ 37] [ 12] [507902267859] +09:58:27 [ 41] [ 8] [0441VT52] +09:58:27 [ 42] [ 15] [999999 ] +09:58:27 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +09:58:27 [ 49] [ 3] [418] +09:58:27 [ 52] [ 16] [E9EDDCEDE72D9B9C] +09:58:27 ============================================================================ +09:58:27 + + +waiting on router queue for slot.... +09:58:27 Sending to : +09:58:27 ============================================================================ +09:58:27 ============================================================================ +09:58:27 Slot Id : <348> +09:58:27 Transaction Type : REQUEST +09:58:27 Received From : +09:58:27 ============================================================================ +09:58:27 FNo. Len. Field Value +09:58:27 ============================================================================ +09:58:27 [ 1] [ 4] [0200] +09:58:27 [ 2] [ 16] [6213545000333603] +09:58:27 [ 3] [ 6] [010000] +09:58:27 [ 4] [ 12] [000050000000] +09:58:27 [ 7] [ 10] [0320025735] +09:58:27 [ 11] [ 6] [267859] +09:58:27 [ 12] [ 6] [095735] +09:58:27 [ 13] [ 4] [0320] +09:58:27 [ 14] [ 4] [4912] +09:58:27 [ 15] [ 4] [0320] +09:58:27 [ 18] [ 4] [6011] +09:58:27 [ 19] [ 3] [418] +09:58:27 [ 22] [ 3] [021] +09:58:27 [ 25] [ 2] [01] +09:58:27 [ 28] [ 9] [D00002000] +09:58:27 [ 32] [ 6] [180893] +09:58:27 [ 35] [ 32] [6213545000333603=491212013360798] +09:58:27 [ 37] [ 12] [507902267859] +09:58:27 [ 41] [ 8] [0441VT52] +09:58:27 [ 42] [ 15] [999999 ] +09:58:27 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +09:58:27 [ 49] [ 3] [418] +09:58:27 [ 52] [ 16] [547871C69582AAC4] +09:58:27 ============================================================================ +09:58:27 + + +waiting on router queue for slot.... +09:58:27 Sending to : <0> +09:58:27 ============================================================================ +09:58:28 ============================================================================ +09:58:28 Slot Id : <348> +09:58:28 Transaction Type : RESPONSE +09:58:28 Received From : +09:58:28 ============================================================================ +09:58:28 FNo. Len. Field Value +09:58:28 ============================================================================ +09:58:28 [ 1] [ 4] [0210] +09:58:28 [ 2] [ 16] [6213545000333603] +09:58:28 [ 3] [ 6] [010000] +09:58:28 [ 4] [ 12] [000050000000] +09:58:28 [ 7] [ 10] [0320025735] +09:58:28 [ 11] [ 6] [267859] +09:58:28 [ 12] [ 6] [095735] +09:58:28 [ 13] [ 4] [0320] +09:58:28 [ 15] [ 4] [0320] +09:58:28 [ 18] [ 4] [6011] +09:58:28 [ 19] [ 3] [418] +09:58:28 [ 22] [ 3] [021] +09:58:28 [ 32] [ 6] [180893] +09:58:28 [ 35] [ 32] [6213545000333603=491212013360798] +09:58:28 [ 37] [ 12] [507902267859] +09:58:28 [ 39] [ 2] [05] +09:58:28 [ 41] [ 8] [0441VT52] +09:58:28 [ 49] [ 3] [418] +09:58:28 ============================================================================ +09:58:28 Sending to : +09:58:28 ============================================================================ +09:58:28 + + +waiting on router queue for slot.... +09:58:28 ============================================================================ +09:58:28 Slot Id : <329> +09:58:28 Transaction Type : RESPONSE +09:58:28 Received From : +09:58:28 ============================================================================ +09:58:28 FNo. Len. Field Value +09:58:28 ============================================================================ +09:58:28 [ 1] [ 4] [0210] +09:58:28 [ 2] [ 16] [1808930600001069] +09:58:28 [ 3] [ 6] [011000] +09:58:28 [ 4] [ 12] [000060000000] +09:58:28 [ 6] [ 12] [000060000000] +09:58:28 [ 7] [ 10] [0320100609] +09:58:28 [ 11] [ 6] [009290] +09:58:28 [ 12] [ 6] [100609] +09:58:28 [ 13] [ 4] [0320] +09:58:28 [ 14] [ 4] [1803] +09:58:28 [ 18] [ 4] [6011] +09:58:28 [ 19] [ 3] [418] +09:58:28 [ 22] [ 3] [021] +09:58:28 [ 32] [ 6] [220699] +09:58:28 [ 35] [ 27] [1808930600001069=1803500927] +09:58:28 [ 37] [ 12] [507900213253] +09:58:28 [ 38] [ 6] [009290] +09:58:28 [ 39] [ 2] [00] +09:58:28 [ 41] [ 8] [05000100] +09:58:28 [ 49] [ 3] [418] +09:58:28 [ 52] [ 16] [6F6881BB3A44A41B] +09:58:28 [ 54] [ 20] [1001418C000008104800] +09:58:28 ============================================================================ +09:58:28 Sending to : +09:58:28 ============================================================================ +09:58:28 + + +waiting on router queue for slot.... +09:58:29 ============================================================================ +09:58:29 Slot Id : <348> +09:58:29 Transaction Type : RESPONSE +09:58:29 Received From : +09:58:29 ============================================================================ +09:58:29 FNo. Len. Field Value +09:58:29 ============================================================================ +09:58:29 [ 1] [ 4] [0210] +09:58:29 [ 2] [ 16] [6213545000333603] +09:58:29 [ 3] [ 6] [010000] +09:58:29 [ 4] [ 12] [000050000000] +09:58:29 [ 7] [ 10] [0320025735] +09:58:29 [ 11] [ 6] [267859] +09:58:29 [ 12] [ 6] [095735] +09:58:29 [ 13] [ 4] [0320] +09:58:29 [ 15] [ 4] [0320] +09:58:29 [ 18] [ 4] [6011] +09:58:29 [ 19] [ 3] [418] +09:58:29 [ 22] [ 3] [021] +09:58:29 [ 32] [ 6] [180893] +09:58:29 [ 35] [ 32] [6213545000333603=491212013360798] +09:58:29 [ 37] [ 12] [507902267859] +09:58:29 [ 39] [ 2] [05] +09:58:29 [ 41] [ 8] [0441VT52] +09:58:29 [ 49] [ 3] [418] +09:58:29 ============================================================================ +09:58:29 Calculate Source COMM Id = 2 +09:58:29 ============================================================================ +09:58:29 + + +waiting on router queue for slot.... +09:58:31 ============================================================================ +09:58:31 Slot Id : <329> +09:58:31 Transaction Type : RESPONSE +09:58:31 Received From : +09:58:31 ============================================================================ +09:58:31 FNo. Len. Field Value +09:58:31 ============================================================================ +09:58:31 [ 1] [ 4] [0210] +09:58:31 [ 2] [ 16] [1808930600001069] +09:58:31 [ 3] [ 6] [011000] +09:58:31 [ 4] [ 12] [000060000000] +09:58:31 [ 6] [ 12] [000060000000] +09:58:31 [ 7] [ 10] [0320100609] +09:58:31 [ 11] [ 6] [009290] +09:58:31 [ 12] [ 6] [100609] +09:58:31 [ 13] [ 4] [0320] +09:58:31 [ 14] [ 4] [1803] +09:58:31 [ 18] [ 4] [6011] +09:58:31 [ 19] [ 3] [418] +09:58:31 [ 22] [ 3] [021] +09:58:31 [ 32] [ 6] [220699] +09:58:31 [ 35] [ 27] [1808930600001069=1803500927] +09:58:31 [ 37] [ 12] [507900213253] +09:58:31 [ 38] [ 6] [009290] +09:58:31 [ 39] [ 2] [00] +09:58:31 [ 41] [ 8] [05000100] +09:58:31 [ 49] [ 3] [418] +09:58:31 [ 52] [ 16] [6F6881BB3A44A41B] +09:58:31 [ 54] [ 20] [1001418C000008104800] +09:58:31 ============================================================================ +09:58:31 Calculate Source COMM Id = 1 +09:58:31 ============================================================================ +09:58:31 + + +waiting on router queue for slot.... +09:58:41 ============================================================================ +09:58:41 Slot Id : <309> +09:58:41 Transaction Type : REQUEST +09:58:41 Received From : +09:58:41 ============================================================================ +09:58:41 FNo. Len. Field Value +09:58:41 ============================================================================ +09:58:41 [ 1] [ 4] [0200] +09:58:41 [ 2] [ 16] [2206990000065789] +09:58:41 [ 3] [ 6] [010000] +09:58:41 [ 4] [ 12] [000100000000] +09:58:41 [ 7] [ 10] [0320095837] +09:58:41 [ 11] [ 6] [706820] +09:58:41 [ 12] [ 6] [095837] +09:58:41 [ 13] [ 4] [0320] +09:58:41 [ 15] [ 4] [0320] +09:58:41 [ 18] [ 4] [6011] +09:58:41 [ 22] [ 3] [900] +09:58:41 [ 25] [ 2] [02] +09:58:41 [ 28] [ 9] [D00002000] +09:58:41 [ 32] [ 6] [621354] +09:58:41 [ 35] [ 32] [2206990000065789=970712611556621] +09:58:41 [ 37] [ 12] [507903264757] +09:58:41 [ 41] [ 8] [04003600] +09:58:41 [ 42] [ 15] [NATIVE ] +09:58:41 [ 43] [ 40] [PAKSE EXCHANGE Pakse LAO] +09:58:41 [ 49] [ 3] [418] +09:58:41 [ 52] [ 16] [FAD09D6A1052F01B] +09:58:41 ============================================================================ +09:58:41 + + +waiting on router queue for slot.... +09:58:41 Sending to : +09:58:41 ============================================================================ +09:58:41 Sending to : +09:58:41 ============================================================================ +09:58:41 ============================================================================ +09:58:41 Slot Id : <309> +09:58:41 Transaction Type : REQUEST +09:58:41 Received From : +09:58:41 ============================================================================ +09:58:41 FNo. Len. Field Value +09:58:41 ============================================================================ +09:58:41 [ 1] [ 4] [0200] +09:58:41 [ 2] [ 16] [2206990000065789] +09:58:41 [ 3] [ 6] [010000] +09:58:41 [ 4] [ 12] [000100000000] +09:58:41 [ 7] [ 10] [0320095837] +09:58:41 [ 11] [ 6] [706820] +09:58:41 [ 12] [ 6] [095837] +09:58:41 [ 13] [ 4] [0320] +09:58:41 [ 15] [ 4] [0320] +09:58:41 [ 18] [ 4] [6011] +09:58:41 [ 22] [ 3] [900] +09:58:41 [ 25] [ 2] [02] +09:58:41 [ 28] [ 9] [D00002000] +09:58:41 [ 32] [ 6] [621354] +09:58:41 [ 35] [ 32] [2206990000065789=970712611556621] +09:58:41 [ 37] [ 12] [507903264757] +09:58:41 [ 41] [ 8] [04003600] +09:58:41 [ 42] [ 15] [NATIVE ] +09:58:41 [ 43] [ 40] [PAKSE EXCHANGE Pakse LAO] +09:58:41 [ 49] [ 3] [418] +09:58:41 [ 52] [ 16] [FAD09D6A1052F01B] +09:58:41 ============================================================================ +09:58:41 + + +waiting on router queue for slot.... +09:58:41 Sending to : +09:58:41 ============================================================================ +09:58:41 ============================================================================ +09:58:41 Slot Id : <309> +09:58:41 Transaction Type : REQUEST +09:58:41 Received From : +09:58:41 ============================================================================ +09:58:41 FNo. Len. Field Value +09:58:41 ============================================================================ +09:58:41 [ 1] [ 4] [0200] +09:58:41 [ 2] [ 16] [2206990000065789] +09:58:41 [ 3] [ 6] [010000] +09:58:41 [ 4] [ 12] [000100000000] +09:58:41 [ 7] [ 10] [0320095837] +09:58:41 [ 11] [ 6] [706820] +09:58:41 [ 12] [ 6] [095837] +09:58:41 [ 13] [ 4] [0320] +09:58:41 [ 15] [ 4] [0320] +09:58:41 [ 18] [ 4] [6011] +09:58:41 [ 22] [ 3] [900] +09:58:41 [ 25] [ 2] [02] +09:58:41 [ 28] [ 9] [D00002000] +09:58:41 [ 32] [ 6] [621354] +09:58:41 [ 35] [ 32] [2206990000065789=970712611556621] +09:58:41 [ 37] [ 12] [507903264757] +09:58:41 [ 41] [ 8] [04003600] +09:58:41 [ 42] [ 15] [NATIVE ] +09:58:41 [ 43] [ 40] [PAKSE EXCHANGE Pakse LAO] +09:58:41 [ 49] [ 3] [418] +09:58:41 [ 52] [ 16] [58187CB6EE9232CD] +09:58:41 ============================================================================ +09:58:41 + + +waiting on router queue for slot.... +09:58:41 Sending to : <1> +09:58:41 ============================================================================ +09:58:42 ============================================================================ +09:58:42 Slot Id : <309> +09:58:42 Transaction Type : RESPONSE +09:58:42 Received From : +09:58:42 ============================================================================ +09:58:42 FNo. Len. Field Value +09:58:42 ============================================================================ +09:58:42 [ 1] [ 4] [0210] +09:58:42 [ 2] [ 16] [2206990000065789] +09:58:42 [ 3] [ 6] [010000] +09:58:42 [ 4] [ 12] [000100000000] +09:58:42 [ 7] [ 10] [0320095837] +09:58:42 [ 11] [ 6] [706820] +09:58:42 [ 12] [ 6] [095837] +09:58:42 [ 13] [ 4] [0320] +09:58:42 [ 15] [ 4] [0320] +09:58:42 [ 18] [ 4] [6011] +09:58:42 [ 22] [ 3] [900] +09:58:42 [ 32] [ 6] [621354] +09:58:42 [ 35] [ 32] [2206990000065789=970712611556621] +09:58:42 [ 37] [ 12] [507903264757] +09:58:42 [ 38] [ 6] [100629] +09:58:42 [ 39] [ 2] [55] +09:58:42 [ 41] [ 8] [04003600] +09:58:42 [ 49] [ 3] [418] +09:58:42 ============================================================================ +09:58:42 Sending to : +09:58:42 ============================================================================ +09:58:42 + + +waiting on router queue for slot.... +09:58:43 ============================================================================ +09:58:43 Slot Id : <309> +09:58:43 Transaction Type : RESPONSE +09:58:43 Received From : +09:58:43 ============================================================================ +09:58:43 FNo. Len. Field Value +09:58:43 ============================================================================ +09:58:43 [ 1] [ 4] [0210] +09:58:43 [ 2] [ 16] [2206990000065789] +09:58:43 [ 3] [ 6] [010000] +09:58:43 [ 4] [ 12] [000100000000] +09:58:43 [ 7] [ 10] [0320095837] +09:58:43 [ 11] [ 6] [706820] +09:58:43 [ 12] [ 6] [095837] +09:58:43 [ 13] [ 4] [0320] +09:58:43 [ 15] [ 4] [0320] +09:58:43 [ 18] [ 4] [6011] +09:58:43 [ 22] [ 3] [900] +09:58:43 [ 32] [ 6] [621354] +09:58:43 [ 35] [ 32] [2206990000065789=970712611556621] +09:58:43 [ 37] [ 12] [507903264757] +09:58:43 [ 38] [ 6] [100629] +09:58:43 [ 39] [ 2] [55] +09:58:43 [ 41] [ 8] [04003600] +09:58:43 [ 49] [ 3] [418] +09:58:43 ============================================================================ +09:58:43 Calculate Source COMM Id = 0 +09:58:43 ============================================================================ +09:58:43 + + +waiting on router queue for slot.... +09:58:44 ============================================================================ +09:58:44 Slot Id : <352> +09:58:44 Transaction Type : REQUEST +09:58:44 Received From : +09:58:44 ============================================================================ +09:58:44 FNo. Len. Field Value +09:58:44 ============================================================================ +09:58:44 [ 1] [ 4] [0800] +09:58:44 [ 7] [ 10] [0320025752] +09:58:44 [ 11] [ 6] [155746] +09:58:44 [ 70] [ 3] [301] +09:58:44 ============================================================================ +09:58:44 + + +waiting on router queue for slot.... +09:58:44 Sending to : +09:58:44 ============================================================================ +09:58:44 ============================================================================ +09:58:44 Slot Id : <352> +09:58:44 Transaction Type : RESPONSE +09:58:44 Received From : +09:58:44 ============================================================================ +09:58:44 FNo. Len. Field Value +09:58:44 ============================================================================ +09:58:44 [ 1] [ 4] [0810] +09:58:44 [ 7] [ 10] [0320025752] +09:58:44 [ 11] [ 6] [155746] +09:58:44 [ 39] [ 2] [00] +09:58:44 [ 70] [ 3] [301] +09:58:44 ============================================================================ +09:58:44 Calculate Source COMM Id = 2 +09:58:44 ============================================================================ +09:58:44 + + +waiting on router queue for slot.... +09:58:45 ============================================================================ +09:58:45 Slot Id : <328> +09:58:45 Transaction Type : REQUEST +09:58:45 Received From : +09:58:45 ============================================================================ +09:58:45 FNo. Len. Field Value +09:58:45 ============================================================================ +09:58:45 [ 1] [ 4] [0200] +09:58:45 [ 2] [ 16] [6213541000573413] +09:58:45 [ 3] [ 6] [010000] +09:58:45 [ 4] [ 12] [000005000000] +09:58:45 [ 7] [ 10] [0320095636] +09:58:45 [ 11] [ 6] [937118] +09:58:45 [ 12] [ 6] [095636] +09:58:45 [ 13] [ 4] [0320] +09:58:45 [ 15] [ 4] [0320] +09:58:45 [ 18] [ 4] [6011] +09:58:45 [ 19] [ 3] [418] +09:58:45 [ 22] [ 3] [021] +09:58:45 [ 25] [ 2] [01] +09:58:45 [ 28] [ 9] [D00002000] +09:58:45 [ 32] [ 6] [668899] +09:58:45 [ 35] [ 32] [6213541000573413=491212017341203] +09:58:45 [ 37] [ 12] [507902435618] +09:58:45 [ 41] [ 8] [03020031] +09:58:45 [ 42] [ 15] [APT ] +09:58:45 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +09:58:45 [ 49] [ 3] [418] +09:58:45 [ 52] [ 16] [E7ECD3B8C491BEF5] +09:58:45 ============================================================================ +09:58:45 + + +waiting on router queue for slot.... +09:58:45 Sending to : +09:58:45 ============================================================================ +09:58:45 Sending to : +09:58:45 ============================================================================ +09:58:45 ============================================================================ +09:58:45 Slot Id : <328> +09:58:45 Transaction Type : REQUEST +09:58:45 Received From : +09:58:45 ============================================================================ +09:58:45 FNo. Len. Field Value +09:58:45 ============================================================================ +09:58:45 [ 1] [ 4] [0200] +09:58:45 [ 2] [ 16] [6213541000573413] +09:58:45 [ 3] [ 6] [010000] +09:58:45 [ 4] [ 12] [000005000000] +09:58:45 [ 7] [ 10] [0320095636] +09:58:45 [ 11] [ 6] [937118] +09:58:45 [ 12] [ 6] [095636] +09:58:45 [ 13] [ 4] [0320] +09:58:45 [ 15] [ 4] [0320] +09:58:45 [ 18] [ 4] [6011] +09:58:45 [ 19] [ 3] [418] +09:58:45 [ 22] [ 3] [021] +09:58:45 [ 25] [ 2] [01] +09:58:45 [ 28] [ 9] [D00002000] +09:58:45 [ 32] [ 6] [668899] +09:58:45 [ 35] [ 32] [6213541000573413=491212017341203] +09:58:45 [ 37] [ 12] [507902435618] +09:58:45 [ 41] [ 8] [03020031] +09:58:45 [ 42] [ 15] [APT ] +09:58:45 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +09:58:45 [ 49] [ 3] [418] +09:58:45 [ 52] [ 16] [E7ECD3B8C491BEF5] +09:58:45 ============================================================================ +09:58:45 + + +waiting on router queue for slot.... +09:58:45 Sending to : +09:58:45 ============================================================================ +09:58:45 ============================================================================ +09:58:45 Slot Id : <328> +09:58:45 Transaction Type : REQUEST +09:58:45 Received From : +09:58:45 ============================================================================ +09:58:45 FNo. Len. Field Value +09:58:45 ============================================================================ +09:58:45 [ 1] [ 4] [0200] +09:58:45 [ 2] [ 16] [6213541000573413] +09:58:45 [ 3] [ 6] [010000] +09:58:45 [ 4] [ 12] [000005000000] +09:58:45 [ 7] [ 10] [0320095636] +09:58:45 [ 11] [ 6] [937118] +09:58:45 [ 12] [ 6] [095636] +09:58:45 [ 13] [ 4] [0320] +09:58:45 [ 15] [ 4] [0320] +09:58:45 [ 18] [ 4] [6011] +09:58:45 [ 19] [ 3] [418] +09:58:45 [ 22] [ 3] [021] +09:58:45 [ 25] [ 2] [01] +09:58:45 [ 28] [ 9] [D00002000] +09:58:45 [ 32] [ 6] [668899] +09:58:45 [ 35] [ 32] [6213541000573413=491212017341203] +09:58:45 [ 37] [ 12] [507902435618] +09:58:45 [ 41] [ 8] [03020031] +09:58:45 [ 42] [ 15] [APT ] +09:58:45 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +09:58:45 [ 49] [ 3] [418] +09:58:45 [ 52] [ 16] [A2B7C3BB4E75FC96] +09:58:45 ============================================================================ +09:58:45 + + +waiting on router queue for slot.... +09:58:45 Sending to : <0> +09:58:45 ============================================================================ +09:58:47 ============================================================================ +09:58:47 Slot Id : <328> +09:58:47 Transaction Type : RESPONSE +09:58:47 Received From : +09:58:47 ============================================================================ +09:58:47 FNo. Len. Field Value +09:58:47 ============================================================================ +09:58:47 [ 1] [ 4] [0210] +09:58:47 [ 2] [ 16] [6213541000573413] +09:58:47 [ 3] [ 6] [010000] +09:58:47 [ 4] [ 12] [000005000000] +09:58:47 [ 7] [ 10] [0320095636] +09:58:47 [ 11] [ 6] [937118] +09:58:47 [ 12] [ 6] [095636] +09:58:47 [ 13] [ 4] [0320] +09:58:47 [ 15] [ 4] [0320] +09:58:47 [ 18] [ 4] [6011] +09:58:47 [ 19] [ 3] [418] +09:58:47 [ 32] [ 6] [668899] +09:58:47 [ 35] [ 32] [6213541000573413=491212017341203] +09:58:47 [ 37] [ 12] [507902435618] +09:58:47 [ 38] [ 6] [401531] +09:58:47 [ 39] [ 2] [00] +09:58:47 [ 41] [ 8] [03020031] +09:58:47 [ 49] [ 3] [418] +09:58:47 [ 54] [ 40] [0001418C0000830518940002418C000083051894] +09:58:47 ============================================================================ +09:58:47 Sending to : +09:58:47 ============================================================================ +09:58:47 + + +waiting on router queue for slot.... +09:58:48 ============================================================================ +09:58:48 Slot Id : <328> +09:58:48 Transaction Type : RESPONSE +09:58:48 Received From : +09:58:48 ============================================================================ +09:58:48 FNo. Len. Field Value +09:58:48 ============================================================================ +09:58:48 [ 1] [ 4] [0210] +09:58:48 [ 2] [ 16] [6213541000573413] +09:58:48 [ 3] [ 6] [010000] +09:58:48 [ 4] [ 12] [000005000000] +09:58:48 [ 7] [ 10] [0320095636] +09:58:48 [ 11] [ 6] [937118] +09:58:48 [ 12] [ 6] [095636] +09:58:48 [ 13] [ 4] [0320] +09:58:48 [ 15] [ 4] [0320] +09:58:48 [ 18] [ 4] [6011] +09:58:48 [ 19] [ 3] [418] +09:58:48 [ 32] [ 6] [668899] +09:58:48 [ 35] [ 32] [6213541000573413=491212017341203] +09:58:48 [ 37] [ 12] [507902435618] +09:58:48 [ 38] [ 6] [401531] +09:58:48 [ 39] [ 2] [00] +09:58:48 [ 41] [ 8] [03020031] +09:58:48 [ 49] [ 3] [418] +09:58:48 [ 54] [ 40] [0001418C0000830518940002418C000083051894] +09:58:48 ============================================================================ +09:58:48 Calculate Source COMM Id = 4 +09:58:48 ============================================================================ +09:58:48 + + +waiting on router queue for slot.... +09:58:55 ============================================================================ +09:58:55 Slot Id : <347> +09:58:55 Transaction Type : REQUEST +09:58:55 Received From : +09:58:55 ============================================================================ +09:58:55 FNo. Len. Field Value +09:58:55 ============================================================================ +09:58:55 [ 1] [ 4] [0800] +09:58:55 [ 2] [ 5] [02531] +09:58:55 [ 3] [ 6] [579098] +09:58:55 [ 7] [ 10] [0320025855] +09:58:55 [ 11] [ 6] [806991] +09:58:55 [ 15] [ 10] [0320025855] +09:58:55 [ 37] [ 11] [57909806991] +09:58:55 [ 70] [ 3] [001] +09:58:55 ============================================================================ +09:58:55 + + +waiting on router queue for slot.... +09:58:55 ============================================================================ +09:58:55 Slot Id : <347> +09:58:55 Transaction Type : RESPONSE +09:58:55 Received From : +09:58:55 ============================================================================ +09:58:55 FNo. Len. Field Value +09:58:55 ============================================================================ +09:58:55 [ 1] [ 4] [0810] +09:58:55 [ 7] [ 10] [0320025855] +09:58:55 [ 11] [ 6] [806991] +09:58:55 [ 15] [ 4] [0320] +09:58:55 [ 37] [ 12] [57909806991] +09:58:55 [ 39] [ 2] [00] +09:58:55 [ 70] [ 3] [001] +09:58:55 ============================================================================ +09:58:55 Sending to : +09:58:55 ============================================================================ +09:58:55 + + +waiting on router queue for slot.... +09:59:00 ============================================================================ +09:59:00 Slot Id : <350> +09:59:00 Transaction Type : REQUEST +09:59:00 Received From : +09:59:00 ============================================================================ +09:59:00 FNo. Len. Field Value +09:59:00 ============================================================================ +09:59:00 [ 1] [ 4] [0800] +09:59:00 [ 7] [ 10] [0320025808] +09:59:00 [ 11] [ 6] [155747] +09:59:00 [ 70] [ 3] [301] +09:59:00 ============================================================================ +09:59:00 + + +waiting on router queue for slot.... +09:59:00 Sending to : +09:59:00 ============================================================================ +09:59:00 ============================================================================ +09:59:00 Slot Id : <350> +09:59:00 Transaction Type : RESPONSE +09:59:00 Received From : +09:59:00 ============================================================================ +09:59:00 FNo. Len. Field Value +09:59:00 ============================================================================ +09:59:00 [ 1] [ 4] [0810] +09:59:00 [ 7] [ 10] [0320025808] +09:59:00 [ 11] [ 6] [155747] +09:59:00 [ 39] [ 2] [00] +09:59:00 [ 70] [ 3] [301] +09:59:00 ============================================================================ +09:59:00 Calculate Source COMM Id = 2 +09:59:00 ============================================================================ +09:59:00 + + +waiting on router queue for slot.... +09:59:01 ============================================================================ +09:59:01 Slot Id : <319> +09:59:01 Transaction Type : REQUEST +09:59:01 Received From : +09:59:01 ============================================================================ +09:59:01 FNo. Len. Field Value +09:59:01 ============================================================================ +09:59:01 [ 1] [ 4] [0200] +09:59:01 [ 2] [ 16] [2206990000065789] +09:59:01 [ 3] [ 6] [010000] +09:59:01 [ 4] [ 12] [000100000000] +09:59:01 [ 7] [ 10] [0320095857] +09:59:01 [ 11] [ 6] [706905] +09:59:01 [ 12] [ 6] [095857] +09:59:01 [ 13] [ 4] [0320] +09:59:01 [ 15] [ 4] [0320] +09:59:01 [ 18] [ 4] [6011] +09:59:01 [ 22] [ 3] [900] +09:59:01 [ 25] [ 2] [02] +09:59:01 [ 28] [ 9] [D00002000] +09:59:01 [ 32] [ 6] [621354] +09:59:01 [ 35] [ 32] [2206990000065789=970712611556621] +09:59:01 [ 37] [ 12] [507903264759] +09:59:01 [ 41] [ 8] [04003600] +09:59:01 [ 42] [ 15] [NATIVE ] +09:59:01 [ 43] [ 40] [PAKSE EXCHANGE Pakse LAO] +09:59:01 [ 49] [ 3] [418] +09:59:01 [ 52] [ 16] [4BAAB08275AC0B7A] +09:59:01 ============================================================================ +09:59:01 + + +waiting on router queue for slot.... +09:59:01 Sending to : +09:59:01 ============================================================================ +09:59:01 Sending to : +09:59:01 ============================================================================ +09:59:01 ============================================================================ +09:59:01 Slot Id : <319> +09:59:01 Transaction Type : REQUEST +09:59:01 Received From : +09:59:01 ============================================================================ +09:59:01 FNo. Len. Field Value +09:59:01 ============================================================================ +09:59:01 [ 1] [ 4] [0200] +09:59:01 [ 2] [ 16] [2206990000065789] +09:59:01 [ 3] [ 6] [010000] +09:59:01 [ 4] [ 12] [000100000000] +09:59:01 [ 7] [ 10] [0320095857] +09:59:01 [ 11] [ 6] [706905] +09:59:01 [ 12] [ 6] [095857] +09:59:01 [ 13] [ 4] [0320] +09:59:01 [ 15] [ 4] [0320] +09:59:01 [ 18] [ 4] [6011] +09:59:01 [ 22] [ 3] [900] +09:59:01 [ 25] [ 2] [02] +09:59:01 [ 28] [ 9] [D00002000] +09:59:01 [ 32] [ 6] [621354] +09:59:01 [ 35] [ 32] [2206990000065789=970712611556621] +09:59:01 [ 37] [ 12] [507903264759] +09:59:01 [ 41] [ 8] [04003600] +09:59:01 [ 42] [ 15] [NATIVE ] +09:59:01 [ 43] [ 40] [PAKSE EXCHANGE Pakse LAO] +09:59:01 [ 49] [ 3] [418] +09:59:01 [ 52] [ 16] [4BAAB08275AC0B7A] +09:59:01 ============================================================================ +09:59:01 + + +waiting on router queue for slot.... +09:59:01 Sending to : +09:59:01 ============================================================================ +09:59:01 ============================================================================ +09:59:01 Slot Id : <319> +09:59:01 Transaction Type : REQUEST +09:59:01 Received From : +09:59:01 ============================================================================ +09:59:01 FNo. Len. Field Value +09:59:01 ============================================================================ +09:59:01 [ 1] [ 4] [0200] +09:59:01 [ 2] [ 16] [2206990000065789] +09:59:01 [ 3] [ 6] [010000] +09:59:01 [ 4] [ 12] [000100000000] +09:59:01 [ 7] [ 10] [0320095857] +09:59:01 [ 11] [ 6] [706905] +09:59:01 [ 12] [ 6] [095857] +09:59:01 [ 13] [ 4] [0320] +09:59:01 [ 15] [ 4] [0320] +09:59:01 [ 18] [ 4] [6011] +09:59:01 [ 22] [ 3] [900] +09:59:01 [ 25] [ 2] [02] +09:59:01 [ 28] [ 9] [D00002000] +09:59:01 [ 32] [ 6] [621354] +09:59:01 [ 35] [ 32] [2206990000065789=970712611556621] +09:59:01 [ 37] [ 12] [507903264759] +09:59:01 [ 41] [ 8] [04003600] +09:59:01 [ 42] [ 15] [NATIVE ] +09:59:01 [ 43] [ 40] [PAKSE EXCHANGE Pakse LAO] +09:59:01 [ 49] [ 3] [418] +09:59:01 [ 52] [ 16] [A867DB343220507F] +09:59:01 ============================================================================ +09:59:01 + + +waiting on router queue for slot.... +09:59:01 Sending to : <1> +09:59:01 ============================================================================ +09:59:03 ============================================================================ +09:59:03 Slot Id : <319> +09:59:03 Transaction Type : RESPONSE +09:59:03 Received From : +09:59:03 ============================================================================ +09:59:03 FNo. Len. Field Value +09:59:03 ============================================================================ +09:59:03 [ 1] [ 4] [0210] +09:59:03 [ 2] [ 16] [2206990000065789] +09:59:03 [ 3] [ 6] [010000] +09:59:03 [ 4] [ 12] [000100000000] +09:59:03 [ 7] [ 10] [0320095857] +09:59:03 [ 11] [ 6] [706905] +09:59:03 [ 12] [ 6] [095857] +09:59:03 [ 13] [ 4] [0320] +09:59:03 [ 15] [ 4] [0320] +09:59:03 [ 18] [ 4] [6011] +09:59:03 [ 32] [ 6] [621354] +09:59:03 [ 35] [ 32] [2206990000065789=970712611556621] +09:59:03 [ 37] [ 12] [507903264759] +09:59:03 [ 38] [ 6] [] +09:59:03 [ 39] [ 2] [51] +09:59:03 [ 41] [ 8] [04003600] +09:59:03 [ 49] [ 3] [418] +09:59:03 ============================================================================ +09:59:03 Sending to : +09:59:03 ============================================================================ +09:59:03 + + +waiting on router queue for slot.... +09:59:04 ============================================================================ +09:59:04 Slot Id : <319> +09:59:04 Transaction Type : RESPONSE +09:59:04 Received From : +09:59:04 ============================================================================ +09:59:04 FNo. Len. Field Value +09:59:04 ============================================================================ +09:59:04 [ 1] [ 4] [0210] +09:59:04 [ 2] [ 16] [2206990000065789] +09:59:04 [ 3] [ 6] [010000] +09:59:04 [ 4] [ 12] [000100000000] +09:59:04 [ 7] [ 10] [0320095857] +09:59:04 [ 11] [ 6] [706905] +09:59:04 [ 12] [ 6] [095857] +09:59:04 [ 13] [ 4] [0320] +09:59:04 [ 15] [ 4] [0320] +09:59:04 [ 18] [ 4] [6011] +09:59:04 [ 32] [ 6] [621354] +09:59:04 [ 35] [ 32] [2206990000065789=970712611556621] +09:59:04 [ 37] [ 12] [507903264759] +09:59:04 [ 38] [ 6] [] +09:59:04 [ 39] [ 2] [51] +09:59:04 [ 41] [ 8] [04003600] +09:59:04 [ 49] [ 3] [418] +09:59:04 ============================================================================ +09:59:04 Calculate Source COMM Id = 0 +09:59:04 ============================================================================ +09:59:04 + + +waiting on router queue for slot.... +09:59:09 ============================================================================ +09:59:09 Slot Id : <332> +09:59:09 Transaction Type : REQUEST +09:59:09 Received From : +09:59:09 ============================================================================ +09:59:09 FNo. Len. Field Value +09:59:09 ============================================================================ +09:59:09 [ 1] [ 4] [0200] +09:59:09 [ 2] [ 16] [6688990108091107] +09:59:09 [ 3] [ 6] [012000] +09:59:09 [ 4] [ 12] [000010000000] +09:59:09 [ 7] [ 10] [0320095905] +09:59:09 [ 11] [ 6] [706949] +09:59:09 [ 12] [ 6] [095905] +09:59:09 [ 13] [ 4] [0320] +09:59:09 [ 15] [ 4] [0320] +09:59:09 [ 18] [ 4] [6011] +09:59:09 [ 22] [ 3] [900] +09:59:09 [ 25] [ 2] [02] +09:59:09 [ 28] [ 9] [D00002000] +09:59:09 [ 32] [ 6] [621354] +09:59:09 [ 35] [ 37] [6688990108091107=44041231110728100000] +09:59:09 [ 37] [ 12] [507902508242] +09:59:09 [ 41] [ 8] [05003300] +09:59:09 [ 42] [ 15] [NATIVE ] +09:59:09 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:59:09 [ 49] [ 3] [418] +09:59:09 [ 52] [ 16] [3D69D68DCBFB71CF] +09:59:09 ============================================================================ +09:59:09 + + +waiting on router queue for slot.... +09:59:09 Sending to : +09:59:09 ============================================================================ +09:59:09 Sending to : +09:59:09 ============================================================================ +09:59:09 ============================================================================ +09:59:09 Slot Id : <332> +09:59:09 Transaction Type : REQUEST +09:59:09 Received From : +09:59:09 ============================================================================ +09:59:09 FNo. Len. Field Value +09:59:09 ============================================================================ +09:59:09 [ 1] [ 4] [0200] +09:59:09 [ 2] [ 16] [6688990108091107] +09:59:09 [ 3] [ 6] [012000] +09:59:09 [ 4] [ 12] [000010000000] +09:59:09 [ 7] [ 10] [0320095905] +09:59:09 [ 11] [ 6] [706949] +09:59:09 [ 12] [ 6] [095905] +09:59:09 [ 13] [ 4] [0320] +09:59:09 [ 15] [ 4] [0320] +09:59:09 [ 18] [ 4] [6011] +09:59:09 [ 22] [ 3] [900] +09:59:09 [ 25] [ 2] [02] +09:59:09 [ 28] [ 9] [D00002000] +09:59:09 [ 32] [ 6] [621354] +09:59:09 [ 35] [ 37] [6688990108091107=44041231110728100000] +09:59:09 [ 37] [ 12] [507902508242] +09:59:09 [ 41] [ 8] [05003300] +09:59:09 [ 42] [ 15] [NATIVE ] +09:59:09 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:59:09 [ 49] [ 3] [418] +09:59:09 [ 52] [ 16] [3D69D68DCBFB71CF] +09:59:09 ============================================================================ +09:59:09 + + +waiting on router queue for slot.... +09:59:09 Sending to : +09:59:09 ============================================================================ +09:59:09 ============================================================================ +09:59:09 Slot Id : <332> +09:59:09 Transaction Type : REQUEST +09:59:09 Received From : +09:59:09 ============================================================================ +09:59:09 FNo. Len. Field Value +09:59:09 ============================================================================ +09:59:09 [ 1] [ 4] [0200] +09:59:09 [ 2] [ 16] [6688990108091107] +09:59:09 [ 3] [ 6] [012000] +09:59:09 [ 4] [ 12] [000010000000] +09:59:09 [ 7] [ 10] [0320095905] +09:59:09 [ 11] [ 6] [706949] +09:59:09 [ 12] [ 6] [095905] +09:59:09 [ 13] [ 4] [0320] +09:59:09 [ 15] [ 4] [0320] +09:59:09 [ 18] [ 4] [6011] +09:59:09 [ 22] [ 3] [900] +09:59:09 [ 25] [ 2] [02] +09:59:09 [ 28] [ 9] [D00002000] +09:59:09 [ 32] [ 6] [621354] +09:59:09 [ 35] [ 37] [6688990108091107=44041231110728100000] +09:59:09 [ 37] [ 12] [507902508242] +09:59:09 [ 41] [ 8] [05003300] +09:59:09 [ 42] [ 15] [NATIVE ] +09:59:09 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +09:59:09 [ 49] [ 3] [418] +09:59:09 [ 52] [ 16] [089AA1740A35CD2B] +09:59:09 ============================================================================ +09:59:09 + + +waiting on router queue for slot.... +09:59:09 Sending to : <4> +09:59:09 ============================================================================ +09:59:12 ============================================================================ +09:59:12 Slot Id : <332> +09:59:12 Transaction Type : RESPONSE +09:59:12 Received From : +09:59:12 ============================================================================ +09:59:12 FNo. Len. Field Value +09:59:12 ============================================================================ +09:59:12 [ 1] [ 4] [0210] +09:59:12 [ 2] [ 16] [6688990108091107] +09:59:12 [ 3] [ 6] [012000] +09:59:12 [ 4] [ 12] [000010000000] +09:59:12 [ 11] [ 6] [706949] +09:59:12 [ 12] [ 6] [095905] +09:59:12 [ 15] [ 4] [0320] +09:59:12 [ 18] [ 4] [6011] +09:59:12 [ 32] [ 6] [621354] +09:59:12 [ 35] [ 37] [6688990108091107=44041231110728100000] +09:59:12 [ 37] [ 12] [507902508242] +09:59:12 [ 38] [ 6] [769753] +09:59:12 [ 39] [ 2] [00] +09:59:12 [ 41] [ 8] [05003300] +09:59:12 [ 49] [ 3] [418] +09:59:12 [ 54] [ 20] [2002418C000032411176] +09:59:12 ============================================================================ +09:59:12 Sending to : +09:59:12 ============================================================================ +09:59:12 + + +waiting on router queue for slot.... +09:59:12 ============================================================================ +09:59:12 Slot Id : <346> +09:59:12 Transaction Type : REQUEST +09:59:12 Received From : +09:59:12 ============================================================================ +09:59:12 FNo. Len. Field Value +09:59:12 ============================================================================ +09:59:12 [ 1] [ 4] [0800] +09:59:12 [ 7] [ 10] [0320025820] +09:59:12 [ 11] [ 6] [155748] +09:59:12 [ 70] [ 3] [301] +09:59:12 ============================================================================ +09:59:12 + + +waiting on router queue for slot.... +09:59:12 Sending to : +09:59:12 ============================================================================ +09:59:12 ============================================================================ +09:59:12 Slot Id : <346> +09:59:12 Transaction Type : RESPONSE +09:59:12 Received From : +09:59:12 ============================================================================ +09:59:12 FNo. Len. Field Value +09:59:12 ============================================================================ +09:59:12 [ 1] [ 4] [0810] +09:59:12 [ 7] [ 10] [0320025820] +09:59:12 [ 11] [ 6] [155748] +09:59:12 [ 39] [ 2] [00] +09:59:12 [ 70] [ 3] [301] +09:59:12 ============================================================================ +09:59:12 Calculate Source COMM Id = 2 +09:59:12 ============================================================================ +09:59:12 + + +waiting on router queue for slot.... +09:59:14 ============================================================================ +09:59:14 Slot Id : <356> +09:59:14 Transaction Type : REQUEST +09:59:14 Received From : +09:59:14 ============================================================================ +09:59:14 FNo. Len. Field Value +09:59:14 ============================================================================ +09:59:14 [ 1] [ 4] [0200] +09:59:14 [ 2] [ 16] [1808930300020096] +09:59:14 [ 3] [ 6] [011000] +09:59:14 [ 4] [ 12] [000100000000] +09:59:14 [ 7] [ 10] [0320100701] +09:59:14 [ 11] [ 6] [021151] +09:59:14 [ 12] [ 6] [100701] +09:59:14 [ 13] [ 4] [0320] +09:59:14 [ 14] [ 4] [1803] +09:59:14 [ 15] [ 4] [0320] +09:59:14 [ 18] [ 4] [6011] +09:59:14 [ 22] [ 3] [900] +09:59:14 [ 25] [ 2] [02] +09:59:14 [ 28] [ 9] [D00002000] +09:59:14 [ 32] [ 6] [220699] +09:59:14 [ 35] [ 27] [1808930300020096=1803500821] +09:59:14 [ 37] [ 12] [507900263105] +09:59:14 [ 41] [ 8] [01001400] +09:59:14 [ 42] [ 15] [APTRA ] +09:59:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:59:14 [ 49] [ 3] [418] +09:59:14 [ 52] [ 16] [F83A5BFC314B1547] +09:59:14 ============================================================================ +09:59:14 + + +waiting on router queue for slot.... +09:59:14 Sending to : +09:59:14 ============================================================================ +09:59:14 Sending to : +09:59:14 ============================================================================ +09:59:14 ============================================================================ +09:59:14 Slot Id : <332> +09:59:14 Transaction Type : RESPONSE +09:59:14 Received From : +09:59:14 ============================================================================ +09:59:14 FNo. Len. Field Value +09:59:14 ============================================================================ +09:59:14 [ 1] [ 4] [0210] +09:59:14 [ 2] [ 16] [6688990108091107] +09:59:14 [ 3] [ 6] [012000] +09:59:14 [ 4] [ 12] [000010000000] +09:59:14 [ 11] [ 6] [706949] +09:59:14 [ 12] [ 6] [095905] +09:59:14 [ 15] [ 4] [0320] +09:59:14 [ 18] [ 4] [6011] +09:59:14 [ 32] [ 6] [621354] +09:59:14 [ 35] [ 37] [6688990108091107=44041231110728100000] +09:59:14 [ 37] [ 12] [507902508242] +09:59:14 [ 38] [ 6] [769753] +09:59:14 [ 39] [ 2] [00] +09:59:14 [ 41] [ 8] [05003300] +09:59:14 [ 49] [ 3] [418] +09:59:14 [ 54] [ 20] [2002418C000032411176] +09:59:14 ============================================================================ +09:59:14 Calculate Source COMM Id = 0 +09:59:14 ============================================================================ +09:59:14 + + +waiting on router queue for slot.... +09:59:14 ============================================================================ +09:59:14 Slot Id : <356> +09:59:14 Transaction Type : REQUEST +09:59:14 Received From : +09:59:14 ============================================================================ +09:59:14 FNo. Len. Field Value +09:59:14 ============================================================================ +09:59:14 [ 1] [ 4] [0200] +09:59:14 [ 2] [ 16] [1808930300020096] +09:59:14 [ 3] [ 6] [011000] +09:59:14 [ 4] [ 12] [000100000000] +09:59:14 [ 7] [ 10] [0320100701] +09:59:14 [ 11] [ 6] [021151] +09:59:14 [ 12] [ 6] [100701] +09:59:14 [ 13] [ 4] [0320] +09:59:14 [ 14] [ 4] [1803] +09:59:14 [ 15] [ 4] [0320] +09:59:14 [ 18] [ 4] [6011] +09:59:14 [ 22] [ 3] [900] +09:59:14 [ 25] [ 2] [02] +09:59:14 [ 28] [ 9] [D00002000] +09:59:14 [ 32] [ 6] [220699] +09:59:14 [ 35] [ 27] [1808930300020096=1803500821] +09:59:14 [ 37] [ 12] [507900263105] +09:59:14 [ 41] [ 8] [01001400] +09:59:14 [ 42] [ 15] [APTRA ] +09:59:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:59:14 [ 49] [ 3] [418] +09:59:14 [ 52] [ 16] [F83A5BFC314B1547] +09:59:14 ============================================================================ +09:59:14 + + +waiting on router queue for slot.... +09:59:14 Sending to : +09:59:14 ============================================================================ +09:59:14 ============================================================================ +09:59:14 Slot Id : <356> +09:59:14 Transaction Type : REQUEST +09:59:14 Received From : +09:59:14 ============================================================================ +09:59:14 FNo. Len. Field Value +09:59:14 ============================================================================ +09:59:14 [ 1] [ 4] [0200] +09:59:14 [ 2] [ 16] [1808930300020096] +09:59:14 [ 3] [ 6] [011000] +09:59:14 [ 4] [ 12] [000100000000] +09:59:14 [ 7] [ 10] [0320100701] +09:59:14 [ 11] [ 6] [021151] +09:59:14 [ 12] [ 6] [100701] +09:59:14 [ 13] [ 4] [0320] +09:59:14 [ 14] [ 4] [1803] +09:59:14 [ 15] [ 4] [0320] +09:59:14 [ 18] [ 4] [6011] +09:59:14 [ 22] [ 3] [900] +09:59:14 [ 25] [ 2] [02] +09:59:14 [ 28] [ 9] [D00002000] +09:59:14 [ 32] [ 6] [220699] +09:59:14 [ 35] [ 27] [1808930300020096=1803500821] +09:59:14 [ 37] [ 12] [507900263105] +09:59:14 [ 41] [ 8] [01001400] +09:59:14 [ 42] [ 15] [APTRA ] +09:59:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +09:59:14 [ 49] [ 3] [418] +09:59:14 [ 52] [ 16] [8C1A1A1D99178545] +09:59:14 ============================================================================ +09:59:14 + + +waiting on router queue for slot.... +09:59:14 Sending to : <2> +09:59:14 ============================================================================ +09:59:14 ============================================================================ +09:59:14 Slot Id : <357> +09:59:14 Transaction Type : REQUEST +09:59:14 Received From : +09:59:14 ============================================================================ +09:59:14 FNo. Len. Field Value +09:59:14 ============================================================================ +09:59:14 [ 1] [ 4] [0800] +09:59:14 [ 7] [ 10] [0320171103] +09:59:14 [ 11] [ 6] [101103] +09:59:14 [ 37] [ 12] [57910101103] +09:59:14 [ 70] [ 3] [301] +09:59:14 ============================================================================ +09:59:14 + + +waiting on router queue for slot.... +09:59:14 Sending to : +09:59:14 ============================================================================ +09:59:14 ============================================================================ +09:59:14 Slot Id : <357> +09:59:14 Transaction Type : RESPONSE +09:59:14 Received From : +09:59:14 ============================================================================ +09:59:14 FNo. Len. Field Value +09:59:14 ============================================================================ +09:59:14 [ 1] [ 4] [0810] +09:59:14 [ 7] [ 10] [0320171103] +09:59:14 [ 11] [ 6] [101103] +09:59:14 [ 37] [ 12] [579101011030] +09:59:14 [ 39] [ 2] [00] +09:59:14 [ 70] [ 3] [810] +09:59:14 ============================================================================ +09:59:14 Calculate Source COMM Id = 6 +09:59:14 ============================================================================ +09:59:14 + + +waiting on router queue for slot.... +09:59:20 ============================================================================ +09:59:20 Slot Id : <356> +09:59:20 Transaction Type : RESPONSE +09:59:20 Received From : +09:59:20 ============================================================================ +09:59:20 FNo. Len. Field Value +09:59:20 ============================================================================ +09:59:20 [ 1] [ 4] [0210] +09:59:20 [ 2] [ 16] [1808930300020096] +09:59:20 [ 3] [ 6] [011000] +09:59:20 [ 4] [ 12] [000100000000] +09:59:20 [ 6] [ 12] [000100000000] +09:59:20 [ 7] [ 10] [0320100701] +09:59:20 [ 11] [ 6] [021151] +09:59:20 [ 12] [ 6] [100701] +09:59:20 [ 13] [ 4] [0320] +09:59:20 [ 14] [ 4] [1803] +09:59:20 [ 18] [ 4] [6011] +09:59:20 [ 19] [ 3] [418] +09:59:20 [ 22] [ 3] [021] +09:59:20 [ 32] [ 6] [220699] +09:59:20 [ 35] [ 27] [1808930300020096=1803500821] +09:59:20 [ 37] [ 12] [507900263105] +09:59:20 [ 38] [ 6] [021151] +09:59:20 [ 39] [ 2] [00] +09:59:20 [ 41] [ 8] [01001400] +09:59:20 [ 49] [ 3] [418] +09:59:20 [ 52] [ 16] [8C1A1A1D99178545] +09:59:20 [ 54] [ 20] [1001418C000439463400] +09:59:20 ============================================================================ +09:59:20 Sending to : +09:59:20 ============================================================================ +09:59:20 + + +waiting on router queue for slot.... +09:59:21 ============================================================================ +09:59:21 Slot Id : <356> +09:59:21 Transaction Type : RESPONSE +09:59:21 Received From : +09:59:21 ============================================================================ +09:59:21 FNo. Len. Field Value +09:59:21 ============================================================================ +09:59:21 [ 1] [ 4] [0210] +09:59:21 [ 2] [ 16] [1808930300020096] +09:59:21 [ 3] [ 6] [011000] +09:59:21 [ 4] [ 12] [000100000000] +09:59:21 [ 6] [ 12] [000100000000] +09:59:21 [ 7] [ 10] [0320100701] +09:59:21 [ 11] [ 6] [021151] +09:59:21 [ 12] [ 6] [100701] +09:59:21 [ 13] [ 4] [0320] +09:59:21 [ 14] [ 4] [1803] +09:59:21 [ 18] [ 4] [6011] +09:59:21 [ 19] [ 3] [418] +09:59:21 [ 22] [ 3] [021] +09:59:21 [ 32] [ 6] [220699] +09:59:21 [ 35] [ 27] [1808930300020096=1803500821] +09:59:21 [ 37] [ 12] [507900263105] +09:59:21 [ 38] [ 6] [021151] +09:59:21 [ 39] [ 2] [00] +09:59:21 [ 41] [ 8] [01001400] +09:59:21 [ 49] [ 3] [418] +09:59:21 [ 52] [ 16] [8C1A1A1D99178545] +09:59:21 [ 54] [ 20] [1001418C000439463400] +09:59:21 ============================================================================ +09:59:21 Calculate Source COMM Id = 1 +09:59:21 ============================================================================ +09:59:21 + + +waiting on router queue for slot.... +09:59:22 ============================================================================ +09:59:22 Slot Id : <330> +09:59:22 Transaction Type : REQUEST +09:59:22 Received From : +09:59:22 ============================================================================ +09:59:22 FNo. Len. Field Value +09:59:22 ============================================================================ +09:59:22 [ 1] [ 4] [0800] +09:59:22 [ 7] [ 10] [0320095909] +09:59:22 [ 11] [ 6] [074148] +09:59:22 [ 37] [ 12] [507909074148] +09:59:22 [ 70] [ 3] [ ] +09:59:22 ============================================================================ +09:59:22 + + +waiting on router queue for slot.... +09:59:22 Sending to : +09:59:22 ============================================================================ +09:59:22 ============================================================================ +09:59:22 Slot Id : <330> +09:59:22 Transaction Type : RESPONSE +09:59:22 Received From : +09:59:22 ============================================================================ +09:59:22 FNo. Len. Field Value +09:59:22 ============================================================================ +09:59:22 [ 1] [ 4] [0810] +09:59:22 [ 7] [ 10] [0320095909] +09:59:22 [ 11] [ 6] [074148] +09:59:22 [ 37] [ 12] [507909074148] +09:59:22 [ 39] [ 2] [91] +09:59:22 [ 70] [ 3] [ ] +09:59:22 ============================================================================ +09:59:22 Calculate Source COMM Id = 3 +09:59:22 ============================================================================ +09:59:22 + + +waiting on router queue for slot.... +09:59:25 ============================================================================ +09:59:25 Slot Id : <343> +09:59:25 Transaction Type : REQUEST +09:59:25 Received From : +09:59:25 ============================================================================ +09:59:25 FNo. Len. Field Value +09:59:25 ============================================================================ +09:59:25 [ 1] [ 4] [0200] +09:59:25 [ 2] [ 16] [6213544002069992] +09:59:25 [ 3] [ 6] [010000] +09:59:25 [ 4] [ 12] [000010000000] +09:59:25 [ 7] [ 10] [0320095717] +09:59:25 [ 11] [ 6] [937155] +09:59:25 [ 12] [ 6] [095717] +09:59:25 [ 13] [ 4] [0320] +09:59:25 [ 15] [ 4] [0320] +09:59:25 [ 18] [ 4] [6011] +09:59:25 [ 19] [ 3] [418] +09:59:25 [ 22] [ 3] [021] +09:59:25 [ 25] [ 2] [01] +09:59:25 [ 28] [ 9] [D00002000] +09:59:25 [ 32] [ 6] [668899] +09:59:25 [ 35] [ 32] [6213544002069992=491212016999787] +09:59:25 [ 37] [ 12] [507901489246] +09:59:25 [ 41] [ 8] [03515001] +09:59:25 [ 42] [ 15] [APT ] +09:59:25 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +09:59:25 [ 49] [ 3] [418] +09:59:25 [ 52] [ 16] [CAB28CE866C46395] +09:59:25 ============================================================================ +09:59:25 + + +waiting on router queue for slot.... +09:59:25 Sending to : +09:59:25 ============================================================================ +09:59:25 Sending to : +09:59:25 ============================================================================ +09:59:26 ============================================================================ +09:59:26 Slot Id : <343> +09:59:26 Transaction Type : REQUEST +09:59:26 Received From : +09:59:26 ============================================================================ +09:59:26 FNo. Len. Field Value +09:59:26 ============================================================================ +09:59:26 [ 1] [ 4] [0200] +09:59:26 [ 2] [ 16] [6213544002069992] +09:59:26 [ 3] [ 6] [010000] +09:59:26 [ 4] [ 12] [000010000000] +09:59:26 [ 7] [ 10] [0320095717] +09:59:26 [ 11] [ 6] [937155] +09:59:26 [ 12] [ 6] [095717] +09:59:26 [ 13] [ 4] [0320] +09:59:26 [ 15] [ 4] [0320] +09:59:26 [ 18] [ 4] [6011] +09:59:26 [ 19] [ 3] [418] +09:59:26 [ 22] [ 3] [021] +09:59:26 [ 25] [ 2] [01] +09:59:26 [ 28] [ 9] [D00002000] +09:59:26 [ 32] [ 6] [668899] +09:59:26 [ 35] [ 32] [6213544002069992=491212016999787] +09:59:26 [ 37] [ 12] [507901489246] +09:59:26 [ 41] [ 8] [03515001] +09:59:26 [ 42] [ 15] [APT ] +09:59:26 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +09:59:26 [ 49] [ 3] [418] +09:59:26 [ 52] [ 16] [CAB28CE866C46395] +09:59:26 ============================================================================ +09:59:26 + + +waiting on router queue for slot.... +09:59:26 Sending to : +09:59:26 ============================================================================ +09:59:26 ============================================================================ +09:59:26 Slot Id : <343> +09:59:26 Transaction Type : REQUEST +09:59:26 Received From : +09:59:26 ============================================================================ +09:59:26 FNo. Len. Field Value +09:59:26 ============================================================================ +09:59:26 [ 1] [ 4] [0200] +09:59:26 [ 2] [ 16] [6213544002069992] +09:59:26 [ 3] [ 6] [010000] +09:59:26 [ 4] [ 12] [000010000000] +09:59:26 [ 7] [ 10] [0320095717] +09:59:26 [ 11] [ 6] [937155] +09:59:26 [ 12] [ 6] [095717] +09:59:26 [ 13] [ 4] [0320] +09:59:26 [ 15] [ 4] [0320] +09:59:26 [ 18] [ 4] [6011] +09:59:26 [ 19] [ 3] [418] +09:59:26 [ 22] [ 3] [021] +09:59:26 [ 25] [ 2] [01] +09:59:26 [ 28] [ 9] [D00002000] +09:59:26 [ 32] [ 6] [668899] +09:59:26 [ 35] [ 32] [6213544002069992=491212016999787] +09:59:26 [ 37] [ 12] [507901489246] +09:59:26 [ 41] [ 8] [03515001] +09:59:26 [ 42] [ 15] [APT ] +09:59:26 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +09:59:26 [ 49] [ 3] [418] +09:59:26 [ 52] [ 16] [380BE91D7A75FAA1] +09:59:26 ============================================================================ +09:59:26 + + +waiting on router queue for slot.... +09:59:26 Sending to : <0> +09:59:26 ============================================================================ +09:59:26 ============================================================================ +09:59:26 Slot Id : <343> +09:59:26 Transaction Type : RESPONSE +09:59:26 Received From : +09:59:26 ============================================================================ +09:59:26 FNo. Len. Field Value +09:59:26 ============================================================================ +09:59:26 [ 1] [ 4] [0210] +09:59:26 [ 2] [ 16] [6213544002069992] +09:59:26 [ 3] [ 6] [010000] +09:59:26 [ 4] [ 12] [000010000000] +09:59:26 [ 7] [ 10] [0320095717] +09:59:26 [ 11] [ 6] [937155] +09:59:26 [ 12] [ 6] [095717] +09:59:26 [ 13] [ 4] [0320] +09:59:26 [ 15] [ 4] [0320] +09:59:26 [ 18] [ 4] [6011] +09:59:26 [ 19] [ 3] [418] +09:59:26 [ 32] [ 6] [668899] +09:59:26 [ 35] [ 32] [6213544002069992=491212016999787] +09:59:26 [ 37] [ 12] [507901489246] +09:59:26 [ 38] [ 6] [305034] +09:59:26 [ 39] [ 2] [00] +09:59:26 [ 41] [ 8] [03515001] +09:59:26 [ 49] [ 3] [418] +09:59:26 [ 54] [ 40] [0001418C0001472566100002418C000147256610] +09:59:26 ============================================================================ +09:59:26 Sending to : +09:59:26 ============================================================================ +09:59:26 + + +waiting on router queue for slot.... +09:59:28 ============================================================================ +09:59:28 Slot Id : <343> +09:59:28 Transaction Type : RESPONSE +09:59:28 Received From : +09:59:28 ============================================================================ +09:59:28 FNo. Len. Field Value +09:59:28 ============================================================================ +09:59:28 [ 1] [ 4] [0210] +09:59:28 [ 2] [ 16] [6213544002069992] +09:59:28 [ 3] [ 6] [010000] +09:59:28 [ 4] [ 12] [000010000000] +09:59:28 [ 7] [ 10] [0320095717] +09:59:28 [ 11] [ 6] [937155] +09:59:28 [ 12] [ 6] [095717] +09:59:28 [ 13] [ 4] [0320] +09:59:28 [ 15] [ 4] [0320] +09:59:28 [ 18] [ 4] [6011] +09:59:28 [ 19] [ 3] [418] +09:59:28 [ 32] [ 6] [668899] +09:59:28 [ 35] [ 32] [6213544002069992=491212016999787] +09:59:28 [ 37] [ 12] [507901489246] +09:59:28 [ 38] [ 6] [305034] +09:59:28 [ 39] [ 2] [00] +09:59:28 [ 41] [ 8] [03515001] +09:59:28 [ 49] [ 3] [418] +09:59:28 [ 54] [ 40] [0001418C0001472566100002418C000147256610] +09:59:28 ============================================================================ +09:59:28 Calculate Source COMM Id = 4 +09:59:28 ============================================================================ +09:59:28 + + +waiting on router queue for slot.... +09:59:29 ============================================================================ +09:59:29 Slot Id : <365> +09:59:29 Transaction Type : REQUEST +09:59:29 Received From : +09:59:29 ============================================================================ +09:59:29 FNo. Len. Field Value +09:59:29 ============================================================================ +09:59:29 [ 1] [ 4] [0800] +09:59:29 [ 7] [ 10] [0320025836] +09:59:29 [ 11] [ 6] [155749] +09:59:29 [ 70] [ 3] [301] +09:59:29 ============================================================================ +09:59:29 + + +waiting on router queue for slot.... +09:59:29 Sending to : +09:59:29 ============================================================================ +09:59:29 ============================================================================ +09:59:29 Slot Id : <365> +09:59:29 Transaction Type : RESPONSE +09:59:29 Received From : +09:59:29 ============================================================================ +09:59:29 FNo. Len. Field Value +09:59:29 ============================================================================ +09:59:29 [ 1] [ 4] [0810] +09:59:29 [ 7] [ 10] [0320025836] +09:59:29 [ 11] [ 6] [155749] +09:59:29 [ 39] [ 2] [00] +09:59:29 [ 70] [ 3] [301] +09:59:29 ============================================================================ +09:59:29 Calculate Source COMM Id = 2 +09:59:29 ============================================================================ +09:59:29 + + +waiting on router queue for slot.... +09:59:33 ============================================================================ +09:59:33 Slot Id : <313> +09:59:33 Transaction Type : REQUEST +09:59:33 Received From : +09:59:33 ============================================================================ +09:59:33 FNo. Len. Field Value +09:59:33 ============================================================================ +09:59:33 [ 1] [ 4] [0200] +09:59:33 [ 2] [ 16] [6213541000607351] +09:59:33 [ 3] [ 6] [010000] +09:59:33 [ 4] [ 12] [000050000000] +09:59:33 [ 7] [ 10] [0320095725] +09:59:33 [ 11] [ 6] [937160] +09:59:33 [ 12] [ 6] [095725] +09:59:33 [ 13] [ 4] [0320] +09:59:33 [ 15] [ 4] [0320] +09:59:33 [ 18] [ 4] [6011] +09:59:33 [ 19] [ 3] [418] +09:59:33 [ 22] [ 3] [021] +09:59:33 [ 25] [ 2] [01] +09:59:33 [ 28] [ 9] [D00002000] +09:59:33 [ 32] [ 6] [668899] +09:59:33 [ 35] [ 32] [6213541000607351=491212010735517] +09:59:33 [ 37] [ 12] [507900204592] +09:59:33 [ 41] [ 8] [03001004] +09:59:33 [ 42] [ 15] [APT ] +09:59:33 [ 43] [ 40] [ LDB SERVICE UNIT IN BOL C] +09:59:33 [ 49] [ 3] [418] +09:59:33 [ 52] [ 16] [0ED0AE0DC15D499D] +09:59:33 ============================================================================ +09:59:33 + + +waiting on router queue for slot.... +09:59:33 Sending to : +09:59:33 ============================================================================ +09:59:33 Sending to : +09:59:33 ============================================================================ +09:59:34 ============================================================================ +09:59:34 Slot Id : <313> +09:59:34 Transaction Type : REQUEST +09:59:34 Received From : +09:59:34 ============================================================================ +09:59:34 FNo. Len. Field Value +09:59:34 ============================================================================ +09:59:34 [ 1] [ 4] [0200] +09:59:34 [ 2] [ 16] [6213541000607351] +09:59:34 [ 3] [ 6] [010000] +09:59:34 [ 4] [ 12] [000050000000] +09:59:34 [ 7] [ 10] [0320095725] +09:59:34 [ 11] [ 6] [937160] +09:59:34 [ 12] [ 6] [095725] +09:59:34 [ 13] [ 4] [0320] +09:59:34 [ 15] [ 4] [0320] +09:59:34 [ 18] [ 4] [6011] +09:59:34 [ 19] [ 3] [418] +09:59:34 [ 22] [ 3] [021] +09:59:34 [ 25] [ 2] [01] +09:59:34 [ 28] [ 9] [D00002000] +09:59:34 [ 32] [ 6] [668899] +09:59:34 [ 35] [ 32] [6213541000607351=491212010735517] +09:59:34 [ 37] [ 12] [507900204592] +09:59:34 [ 41] [ 8] [03001004] +09:59:34 [ 42] [ 15] [APT ] +09:59:34 [ 43] [ 40] [ LDB SERVICE UNIT IN BOL C] +09:59:34 [ 49] [ 3] [418] +09:59:34 [ 52] [ 16] [0ED0AE0DC15D499D] +09:59:34 ============================================================================ +09:59:34 + + +waiting on router queue for slot.... +09:59:34 Sending to : +09:59:34 ============================================================================ +09:59:34 ============================================================================ +09:59:34 Slot Id : <313> +09:59:34 Transaction Type : REQUEST +09:59:34 Received From : +09:59:34 ============================================================================ +09:59:34 FNo. Len. Field Value +09:59:34 ============================================================================ +09:59:34 [ 1] [ 4] [0200] +09:59:34 [ 2] [ 16] [6213541000607351] +09:59:34 [ 3] [ 6] [010000] +09:59:34 [ 4] [ 12] [000050000000] +09:59:34 [ 7] [ 10] [0320095725] +09:59:34 [ 11] [ 6] [937160] +09:59:34 [ 12] [ 6] [095725] +09:59:34 [ 13] [ 4] [0320] +09:59:34 [ 15] [ 4] [0320] +09:59:34 [ 18] [ 4] [6011] +09:59:34 [ 19] [ 3] [418] +09:59:34 [ 22] [ 3] [021] +09:59:34 [ 25] [ 2] [01] +09:59:34 [ 28] [ 9] [D00002000] +09:59:34 [ 32] [ 6] [668899] +09:59:34 [ 35] [ 32] [6213541000607351=491212010735517] +09:59:34 [ 37] [ 12] [507900204592] +09:59:34 [ 41] [ 8] [03001004] +09:59:34 [ 42] [ 15] [APT ] +09:59:34 [ 43] [ 40] [ LDB SERVICE UNIT IN BOL C] +09:59:34 [ 49] [ 3] [418] +09:59:34 [ 52] [ 16] [F9704F2F6D0093A7] +09:59:34 ============================================================================ +09:59:34 + + +waiting on router queue for slot.... +09:59:34 Sending to : <0> +09:59:34 ============================================================================ +09:59:34 ============================================================================ +09:59:34 Slot Id : <313> +09:59:34 Transaction Type : RESPONSE +09:59:34 Received From : +09:59:34 ============================================================================ +09:59:34 FNo. Len. Field Value +09:59:34 ============================================================================ +09:59:34 [ 1] [ 4] [0210] +09:59:34 [ 2] [ 16] [6213541000607351] +09:59:34 [ 3] [ 6] [010000] +09:59:34 [ 4] [ 12] [000050000000] +09:59:34 [ 7] [ 10] [0320095725] +09:59:34 [ 11] [ 6] [937160] +09:59:34 [ 12] [ 6] [095725] +09:59:34 [ 13] [ 4] [0320] +09:59:34 [ 15] [ 4] [0320] +09:59:34 [ 18] [ 4] [6011] +09:59:34 [ 19] [ 3] [418] +09:59:34 [ 32] [ 6] [668899] +09:59:34 [ 35] [ 32] [6213541000607351=491212010735517] +09:59:34 [ 37] [ 12] [507900204592] +09:59:34 [ 38] [ 6] [220064] +09:59:34 [ 39] [ 2] [00] +09:59:34 [ 41] [ 8] [03001004] +09:59:34 [ 49] [ 3] [418] +09:59:34 [ 54] [ 40] [0001418C0000595886830002418C000059588683] +09:59:34 ============================================================================ +09:59:34 Sending to : +09:59:34 ============================================================================ +09:59:34 + + +waiting on router queue for slot.... +09:59:36 ============================================================================ +09:59:36 Slot Id : <313> +09:59:36 Transaction Type : RESPONSE +09:59:36 Received From : +09:59:36 ============================================================================ +09:59:36 FNo. Len. Field Value +09:59:36 ============================================================================ +09:59:36 [ 1] [ 4] [0210] +09:59:36 [ 2] [ 16] [6213541000607351] +09:59:36 [ 3] [ 6] [010000] +09:59:36 [ 4] [ 12] [000050000000] +09:59:36 [ 7] [ 10] [0320095725] +09:59:36 [ 11] [ 6] [937160] +09:59:36 [ 12] [ 6] [095725] +09:59:36 [ 13] [ 4] [0320] +09:59:36 [ 15] [ 4] [0320] +09:59:36 [ 18] [ 4] [6011] +09:59:36 [ 19] [ 3] [418] +09:59:36 [ 32] [ 6] [668899] +09:59:36 [ 35] [ 32] [6213541000607351=491212010735517] +09:59:36 [ 37] [ 12] [507900204592] +09:59:36 [ 38] [ 6] [220064] +09:59:36 [ 39] [ 2] [00] +09:59:36 [ 41] [ 8] [03001004] +09:59:36 [ 49] [ 3] [418] +09:59:36 [ 54] [ 40] [0001418C0000595886830002418C000059588683] +09:59:36 ============================================================================ +09:59:36 Calculate Source COMM Id = 4 +09:59:36 ============================================================================ +09:59:36 + + +waiting on router queue for slot.... +09:59:46 ============================================================================ +09:59:46 Slot Id : <366> +09:59:46 Transaction Type : REQUEST +09:59:46 Received From : +09:59:46 ============================================================================ +09:59:46 FNo. Len. Field Value +09:59:46 ============================================================================ +09:59:46 [ 1] [ 4] [0800] +09:59:46 [ 7] [ 10] [0320025853] +09:59:46 [ 11] [ 6] [155750] +09:59:46 [ 70] [ 3] [301] +09:59:46 ============================================================================ +09:59:46 + + +waiting on router queue for slot.... +09:59:46 Sending to : +09:59:46 ============================================================================ +09:59:46 ============================================================================ +09:59:46 Slot Id : <366> +09:59:46 Transaction Type : RESPONSE +09:59:46 Received From : +09:59:46 ============================================================================ +09:59:46 FNo. Len. Field Value +09:59:46 ============================================================================ +09:59:46 [ 1] [ 4] [0810] +09:59:46 [ 7] [ 10] [0320025853] +09:59:46 [ 11] [ 6] [155750] +09:59:46 [ 39] [ 2] [00] +09:59:46 [ 70] [ 3] [301] +09:59:46 ============================================================================ +09:59:46 Calculate Source COMM Id = 2 +09:59:46 ============================================================================ +09:59:46 + + +waiting on router queue for slot.... +09:59:49 ============================================================================ +09:59:49 Slot Id : <340> +09:59:49 Transaction Type : REQUEST +09:59:49 Received From : +09:59:49 ============================================================================ +09:59:49 FNo. Len. Field Value +09:59:49 ============================================================================ +09:59:49 [ 1] [ 4] [0200] +09:59:49 [ 2] [ 16] [2206990000065789] +09:59:49 [ 3] [ 6] [300000] +09:59:49 [ 4] [ 12] [000000000000] +09:59:49 [ 7] [ 10] [0320095945] +09:59:49 [ 11] [ 6] [707128] +09:59:49 [ 12] [ 6] [095945] +09:59:49 [ 13] [ 4] [0320] +09:59:49 [ 15] [ 4] [0320] +09:59:49 [ 18] [ 4] [6011] +09:59:49 [ 22] [ 3] [900] +09:59:49 [ 25] [ 2] [02] +09:59:49 [ 28] [ 9] [D00000000] +09:59:49 [ 32] [ 6] [621354] +09:59:49 [ 35] [ 32] [2206990000065789=970712611556621] +09:59:49 [ 37] [ 12] [507903264760] +09:59:49 [ 41] [ 8] [04003600] +09:59:49 [ 42] [ 15] [NATIVE ] +09:59:49 [ 43] [ 40] [PAKSE EXCHANGE Pakse LAO] +09:59:49 [ 49] [ 3] [418] +09:59:49 [ 52] [ 16] [4BAAB08275AC0B7A] +09:59:49 ============================================================================ +09:59:49 + + +waiting on router queue for slot.... +09:59:49 Sending to : +09:59:49 ============================================================================ +09:59:49 Sending to : +09:59:49 ============================================================================ +09:59:49 ============================================================================ +09:59:49 Slot Id : <340> +09:59:49 Transaction Type : REQUEST +09:59:49 Received From : +09:59:49 ============================================================================ +09:59:49 FNo. Len. Field Value +09:59:49 ============================================================================ +09:59:49 [ 1] [ 4] [0200] +09:59:49 [ 2] [ 16] [2206990000065789] +09:59:49 [ 3] [ 6] [300000] +09:59:49 [ 4] [ 12] [000000000000] +09:59:49 [ 7] [ 10] [0320095945] +09:59:49 [ 11] [ 6] [707128] +09:59:49 [ 12] [ 6] [095945] +09:59:49 [ 13] [ 4] [0320] +09:59:49 [ 15] [ 4] [0320] +09:59:49 [ 18] [ 4] [6011] +09:59:49 [ 22] [ 3] [900] +09:59:49 [ 25] [ 2] [02] +09:59:49 [ 28] [ 9] [D00000000] +09:59:49 [ 32] [ 6] [621354] +09:59:49 [ 35] [ 32] [2206990000065789=970712611556621] +09:59:49 [ 37] [ 12] [507903264760] +09:59:49 [ 41] [ 8] [04003600] +09:59:49 [ 42] [ 15] [NATIVE ] +09:59:49 [ 43] [ 40] [PAKSE EXCHANGE Pakse LAO] +09:59:49 [ 49] [ 3] [418] +09:59:49 [ 52] [ 16] [4BAAB08275AC0B7A] +09:59:49 ============================================================================ +09:59:49 + + +waiting on router queue for slot.... +09:59:49 Sending to : +09:59:49 ============================================================================ +09:59:49 ============================================================================ +09:59:49 Slot Id : <340> +09:59:49 Transaction Type : REQUEST +09:59:49 Received From : +09:59:49 ============================================================================ +09:59:49 FNo. Len. Field Value +09:59:49 ============================================================================ +09:59:49 [ 1] [ 4] [0200] +09:59:49 [ 2] [ 16] [2206990000065789] +09:59:49 [ 3] [ 6] [300000] +09:59:49 [ 4] [ 12] [000000000000] +09:59:49 [ 7] [ 10] [0320095945] +09:59:49 [ 11] [ 6] [707128] +09:59:49 [ 12] [ 6] [095945] +09:59:49 [ 13] [ 4] [0320] +09:59:49 [ 15] [ 4] [0320] +09:59:49 [ 18] [ 4] [6011] +09:59:49 [ 22] [ 3] [900] +09:59:49 [ 25] [ 2] [02] +09:59:49 [ 28] [ 9] [D00000000] +09:59:49 [ 32] [ 6] [621354] +09:59:49 [ 35] [ 32] [2206990000065789=970712611556621] +09:59:49 [ 37] [ 12] [507903264760] +09:59:49 [ 41] [ 8] [04003600] +09:59:49 [ 42] [ 15] [NATIVE ] +09:59:49 [ 43] [ 40] [PAKSE EXCHANGE Pakse LAO] +09:59:49 [ 49] [ 3] [418] +09:59:49 [ 52] [ 16] [A867DB343220507F] +09:59:49 ============================================================================ +09:59:49 + + +waiting on router queue for slot.... +09:59:49 Sending to : <1> +09:59:49 ============================================================================ +09:59:51 ============================================================================ +09:59:51 Slot Id : <340> +09:59:51 Transaction Type : RESPONSE +09:59:51 Received From : +09:59:51 ============================================================================ +09:59:51 FNo. Len. Field Value +09:59:51 ============================================================================ +09:59:51 [ 1] [ 4] [0210] +09:59:51 [ 2] [ 16] [2206990000065789] +09:59:51 [ 3] [ 6] [300000] +09:59:51 [ 4] [ 12] [000000000000] +09:59:51 [ 7] [ 10] [0320095945] +09:59:51 [ 11] [ 6] [707128] +09:59:51 [ 12] [ 6] [095945] +09:59:51 [ 13] [ 4] [0320] +09:59:51 [ 15] [ 4] [0320] +09:59:51 [ 18] [ 4] [6011] +09:59:51 [ 32] [ 6] [621354] +09:59:51 [ 35] [ 32] [2206990000065789=970712611556621] +09:59:51 [ 37] [ 12] [507903264760] +09:59:51 [ 38] [ 6] [226151] +09:59:51 [ 39] [ 2] [00] +09:59:51 [ 41] [ 8] [04003600] +09:59:51 [ 49] [ 3] [418] +09:59:51 [ 54] [ 40] [0001418C0000272886000002418C000027288600] +09:59:51 ============================================================================ +09:59:51 Sending to : +09:59:51 ============================================================================ +09:59:51 + + +waiting on router queue for slot.... +09:59:52 ============================================================================ +09:59:52 Slot Id : <340> +09:59:52 Transaction Type : RESPONSE +09:59:52 Received From : +09:59:52 ============================================================================ +09:59:52 FNo. Len. Field Value +09:59:52 ============================================================================ +09:59:52 [ 1] [ 4] [0210] +09:59:52 [ 2] [ 16] [2206990000065789] +09:59:52 [ 3] [ 6] [300000] +09:59:52 [ 4] [ 12] [000000000000] +09:59:52 [ 7] [ 10] [0320095945] +09:59:52 [ 11] [ 6] [707128] +09:59:52 [ 12] [ 6] [095945] +09:59:52 [ 13] [ 4] [0320] +09:59:52 [ 15] [ 4] [0320] +09:59:53 [ 18] [ 4] [6011] +09:59:53 [ 32] [ 6] [621354] +09:59:53 [ 35] [ 32] [2206990000065789=970712611556621] +09:59:53 [ 37] [ 12] [507903264760] +09:59:53 [ 38] [ 6] [226151] +09:59:53 [ 39] [ 2] [00] +09:59:53 [ 41] [ 8] [04003600] +09:59:53 [ 49] [ 3] [418] +09:59:53 [ 54] [ 40] [0001418C0000272886000002418C000027288600] +09:59:53 ============================================================================ +09:59:53 Calculate Source COMM Id = 0 +09:59:53 ============================================================================ +09:59:53 + + +waiting on router queue for slot.... +09:59:54 ============================================================================ +09:59:54 Slot Id : <371> +09:59:54 Transaction Type : REQUEST +09:59:54 Received From : +09:59:54 ============================================================================ +09:59:54 FNo. Len. Field Value +09:59:54 ============================================================================ +09:59:54 [ 1] [ 4] [0800] +09:59:54 [ 7] [ 10] [0320030742] +09:59:54 [ 11] [ 6] [071303] +09:59:54 [ 37] [ 12] [57910071303] +09:59:54 [ 70] [ 3] [301] +09:59:54 ============================================================================ +09:59:54 + + +waiting on router queue for slot.... +09:59:54 Sending to : +09:59:54 ============================================================================ +09:59:54 ============================================================================ +09:59:54 Slot Id : <371> +09:59:54 Transaction Type : RESPONSE +09:59:54 Received From : +09:59:54 ============================================================================ +09:59:54 FNo. Len. Field Value +09:59:54 ============================================================================ +09:59:54 [ 1] [ 4] [0810] +09:59:54 [ 7] [ 10] [0320030742] +09:59:54 [ 11] [ 6] [071303] +09:59:54 [ 37] [ 12] [579100713030] +09:59:54 [ 39] [ 2] [00] +09:59:54 [ 70] [ 3] [810] +09:59:54 ============================================================================ +09:59:54 Calculate Source COMM Id = 1 +09:59:54 ============================================================================ +09:59:54 + + +waiting on router queue for slot.... +09:59:57 ============================================================================ +09:59:57 Slot Id : <378> +09:59:57 Transaction Type : REQUEST +09:59:57 Received From : +09:59:57 ============================================================================ +09:59:57 FNo. Len. Field Value +09:59:57 ============================================================================ +09:59:57 [ 1] [ 4] [0800] +09:59:57 [ 2] [ 5] [02531] +09:59:57 [ 3] [ 6] [579098] +09:59:57 [ 7] [ 10] [0320025957] +09:59:57 [ 11] [ 6] [806992] +09:59:57 [ 15] [ 10] [0320025957] +09:59:57 [ 37] [ 11] [57909806992] +09:59:57 [ 70] [ 3] [001] +09:59:57 ============================================================================ +09:59:57 + + +waiting on router queue for slot.... +09:59:57 ============================================================================ +09:59:57 Slot Id : <378> +09:59:57 Transaction Type : RESPONSE +09:59:57 Received From : +09:59:57 ============================================================================ +09:59:57 FNo. Len. Field Value +09:59:57 ============================================================================ +09:59:57 [ 1] [ 4] [0810] +09:59:57 [ 7] [ 10] [0320025957] +09:59:57 [ 11] [ 6] [806992] +09:59:57 [ 15] [ 4] [0320] +09:59:57 [ 37] [ 12] [57909806992] +09:59:57 [ 39] [ 2] [00] +09:59:57 [ 70] [ 3] [001] +09:59:57 ============================================================================ +09:59:57 Sending to : +09:59:57 ============================================================================ +09:59:57 + + +waiting on router queue for slot.... +10:00:01 ============================================================================ +10:00:01 Slot Id : <324> +10:00:01 Transaction Type : REQUEST +10:00:01 Received From : +10:00:01 ============================================================================ +10:00:01 FNo. Len. Field Value +10:00:01 ============================================================================ +10:00:01 [ 1] [ 4] [0800] +10:00:01 [ 7] [ 10] [0320025909] +10:00:01 [ 11] [ 6] [155751] +10:00:01 [ 70] [ 3] [301] +10:00:01 ============================================================================ +10:00:01 + + +waiting on router queue for slot.... +10:00:01 Sending to : +10:00:01 ============================================================================ +10:00:01 ============================================================================ +10:00:01 Slot Id : <324> +10:00:01 Transaction Type : RESPONSE +10:00:01 Received From : +10:00:01 ============================================================================ +10:00:01 FNo. Len. Field Value +10:00:01 ============================================================================ +10:00:01 [ 1] [ 4] [0810] +10:00:01 [ 7] [ 10] [0320025909] +10:00:01 [ 11] [ 6] [155751] +10:00:01 [ 39] [ 2] [00] +10:00:01 [ 70] [ 3] [301] +10:00:01 ============================================================================ +10:00:01 Calculate Source COMM Id = 2 +10:00:01 ============================================================================ +10:00:01 + + +waiting on router queue for slot.... +10:00:06 ============================================================================ +10:00:06 Slot Id : <373> +10:00:06 Transaction Type : REQUEST +10:00:06 Received From : +10:00:06 ============================================================================ +10:00:06 FNo. Len. Field Value +10:00:06 ============================================================================ +10:00:06 [ 1] [ 4] [0200] +10:00:06 [ 2] [ 16] [6213545000333603] +10:00:06 [ 3] [ 6] [010000] +10:00:06 [ 4] [ 12] [000010000000] +10:00:06 [ 7] [ 10] [0320025912] +10:00:06 [ 11] [ 6] [267872] +10:00:06 [ 12] [ 6] [095912] +10:00:06 [ 13] [ 4] [0320] +10:00:06 [ 14] [ 4] [4912] +10:00:06 [ 15] [ 4] [0320] +10:00:06 [ 18] [ 4] [6011] +10:00:06 [ 19] [ 3] [418] +10:00:06 [ 22] [ 3] [021] +10:00:06 [ 25] [ 2] [01] +10:00:06 [ 28] [ 9] [D00002000] +10:00:06 [ 32] [ 6] [180893] +10:00:06 [ 35] [ 32] [6213545000333603=491212013360798] +10:00:06 [ 37] [ 12] [507902267872] +10:00:06 [ 41] [ 8] [0441VT52] +10:00:06 [ 42] [ 15] [999999 ] +10:00:06 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +10:00:06 [ 49] [ 3] [418] +10:00:06 [ 52] [ 16] [E9EDDCEDE72D9B9C] +10:00:06 ============================================================================ +10:00:06 + + +waiting on router queue for slot.... +10:00:06 Sending to : +10:00:06 ============================================================================ +10:00:06 Sending to : +10:00:06 ============================================================================ +10:00:06 ============================================================================ +10:00:06 Slot Id : <373> +10:00:06 Transaction Type : REQUEST +10:00:06 Received From : +10:00:06 ============================================================================ +10:00:06 FNo. Len. Field Value +10:00:06 ============================================================================ +10:00:06 [ 1] [ 4] [0200] +10:00:06 [ 2] [ 16] [6213545000333603] +10:00:06 [ 3] [ 6] [010000] +10:00:06 [ 4] [ 12] [000010000000] +10:00:06 [ 7] [ 10] [0320025912] +10:00:06 [ 11] [ 6] [267872] +10:00:06 [ 12] [ 6] [095912] +10:00:06 [ 13] [ 4] [0320] +10:00:06 [ 14] [ 4] [4912] +10:00:06 [ 15] [ 4] [0320] +10:00:06 [ 18] [ 4] [6011] +10:00:06 [ 19] [ 3] [418] +10:00:06 [ 22] [ 3] [021] +10:00:06 [ 25] [ 2] [01] +10:00:06 [ 28] [ 9] [D00002000] +10:00:06 [ 32] [ 6] [180893] +10:00:06 [ 35] [ 32] [6213545000333603=491212013360798] +10:00:06 [ 37] [ 12] [507902267872] +10:00:06 [ 41] [ 8] [0441VT52] +10:00:06 [ 42] [ 15] [999999 ] +10:00:06 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +10:00:06 [ 49] [ 3] [418] +10:00:06 [ 52] [ 16] [E9EDDCEDE72D9B9C] +10:00:06 ============================================================================ +10:00:06 + + +waiting on router queue for slot.... +10:00:06 Sending to : +10:00:06 ============================================================================ +10:00:06 ============================================================================ +10:00:06 Slot Id : <373> +10:00:06 Transaction Type : REQUEST +10:00:06 Received From : +10:00:06 ============================================================================ +10:00:06 FNo. Len. Field Value +10:00:06 ============================================================================ +10:00:06 [ 1] [ 4] [0200] +10:00:06 [ 2] [ 16] [6213545000333603] +10:00:06 [ 3] [ 6] [010000] +10:00:06 [ 4] [ 12] [000010000000] +10:00:06 [ 7] [ 10] [0320025912] +10:00:06 [ 11] [ 6] [267872] +10:00:06 [ 12] [ 6] [095912] +10:00:06 [ 13] [ 4] [0320] +10:00:06 [ 14] [ 4] [4912] +10:00:06 [ 15] [ 4] [0320] +10:00:06 [ 18] [ 4] [6011] +10:00:06 [ 19] [ 3] [418] +10:00:06 [ 22] [ 3] [021] +10:00:06 [ 25] [ 2] [01] +10:00:06 [ 28] [ 9] [D00002000] +10:00:06 [ 32] [ 6] [180893] +10:00:06 [ 35] [ 32] [6213545000333603=491212013360798] +10:00:06 [ 37] [ 12] [507902267872] +10:00:06 [ 41] [ 8] [0441VT52] +10:00:06 [ 42] [ 15] [999999 ] +10:00:06 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +10:00:06 [ 49] [ 3] [418] +10:00:06 [ 52] [ 16] [547871C69582AAC4] +10:00:06 ============================================================================ +10:00:06 + + +waiting on router queue for slot.... +10:00:06 Sending to : <0> +10:00:06 ============================================================================ +10:00:07 ============================================================================ +10:00:07 Slot Id : <373> +10:00:07 Transaction Type : RESPONSE +10:00:07 Received From : +10:00:07 ============================================================================ +10:00:07 FNo. Len. Field Value +10:00:07 ============================================================================ +10:00:07 [ 1] [ 4] [0210] +10:00:07 [ 2] [ 16] [6213545000333603] +10:00:07 [ 3] [ 6] [010000] +10:00:07 [ 4] [ 12] [000010000000] +10:00:07 [ 7] [ 10] [0320025912] +10:00:07 [ 11] [ 6] [267872] +10:00:07 [ 12] [ 6] [095912] +10:00:07 [ 13] [ 4] [0320] +10:00:07 [ 15] [ 4] [0320] +10:00:07 [ 18] [ 4] [6011] +10:00:07 [ 19] [ 3] [418] +10:00:07 [ 32] [ 6] [180893] +10:00:07 [ 35] [ 32] [6213545000333603=491212013360798] +10:00:07 [ 37] [ 12] [507902267872] +10:00:07 [ 38] [ 6] [418590] +10:00:07 [ 39] [ 2] [00] +10:00:07 [ 41] [ 8] [0441VT52] +10:00:07 [ 49] [ 3] [418] +10:00:07 [ 54] [ 40] [0001418C0000986118510002418C000098611851] +10:00:07 ============================================================================ +10:00:07 Sending to : +10:00:07 ============================================================================ +10:00:07 + + +waiting on router queue for slot.... +10:00:08 ============================================================================ +10:00:08 Slot Id : <373> +10:00:08 Transaction Type : RESPONSE +10:00:08 Received From : +10:00:08 ============================================================================ +10:00:08 FNo. Len. Field Value +10:00:08 ============================================================================ +10:00:08 [ 1] [ 4] [0210] +10:00:08 [ 2] [ 16] [6213545000333603] +10:00:08 [ 3] [ 6] [010000] +10:00:08 [ 4] [ 12] [000010000000] +10:00:08 [ 7] [ 10] [0320025912] +10:00:08 [ 11] [ 6] [267872] +10:00:08 [ 12] [ 6] [095912] +10:00:08 [ 13] [ 4] [0320] +10:00:08 [ 15] [ 4] [0320] +10:00:08 [ 18] [ 4] [6011] +10:00:08 [ 19] [ 3] [418] +10:00:08 [ 32] [ 6] [180893] +10:00:08 [ 35] [ 32] [6213545000333603=491212013360798] +10:00:08 [ 37] [ 12] [507902267872] +10:00:08 [ 38] [ 6] [418590] +10:00:08 [ 39] [ 2] [00] +10:00:08 [ 41] [ 8] [0441VT52] +10:00:08 [ 49] [ 3] [418] +10:00:08 [ 54] [ 40] [0001418C0000986118510002418C000098611851] +10:00:08 ============================================================================ +10:00:08 Calculate Source COMM Id = 2 +10:00:08 ============================================================================ +10:00:08 + + +waiting on router queue for slot.... +10:00:14 ============================================================================ +10:00:14 Slot Id : <353> +10:00:14 Transaction Type : REQUEST +10:00:14 Received From : +10:00:14 ============================================================================ +10:00:14 FNo. Len. Field Value +10:00:14 ============================================================================ +10:00:14 [ 1] [ 4] [0200] +10:00:14 [ 2] [ 16] [6688990100941507] +10:00:14 [ 3] [ 6] [010000] +10:00:14 [ 4] [ 12] [000020000000] +10:00:14 [ 7] [ 10] [0320100010] +10:00:14 [ 11] [ 6] [707232] +10:00:14 [ 12] [ 6] [100010] +10:00:14 [ 13] [ 4] [0320] +10:00:14 [ 15] [ 4] [0320] +10:00:14 [ 18] [ 4] [6011] +10:00:14 [ 22] [ 3] [900] +10:00:14 [ 25] [ 2] [02] +10:00:14 [ 28] [ 9] [D00002000] +10:00:14 [ 32] [ 6] [621354] +10:00:14 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:00:14 [ 37] [ 12] [507904719468] +10:00:14 [ 41] [ 8] [18001000] +10:00:14 [ 42] [ 15] [NATIVE ] +10:00:14 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:00:14 [ 49] [ 3] [418] +10:00:14 [ 52] [ 16] [3B496FEB663F5696] +10:00:14 ============================================================================ +10:00:14 + + +waiting on router queue for slot.... +10:00:14 Sending to : +10:00:14 ============================================================================ +10:00:14 Sending to : +10:00:14 ============================================================================ +10:00:14 ============================================================================ +10:00:14 Slot Id : <382> +10:00:14 Transaction Type : REQUEST +10:00:14 Received From : +10:00:14 ============================================================================ +10:00:14 FNo. Len. Field Value +10:00:14 ============================================================================ +10:00:14 [ 1] [ 4] [0200] +10:00:14 [ 2] [ 16] [6213541000053895] +10:00:14 [ 3] [ 6] [301000] +10:00:14 [ 4] [ 12] [000000000000] +10:00:14 [ 7] [ 10] [0320100035] +10:00:14 [ 11] [ 6] [203388] +10:00:14 [ 12] [ 6] [094750] +10:00:14 [ 13] [ 4] [0320] +10:00:14 [ 14] [ 4] [4912] +10:00:14 [ 15] [ 4] [0320] +10:00:14 [ 18] [ 4] [6011] +10:00:14 [ 19] [ 3] [418] +10:00:14 [ 22] [ 3] [021] +10:00:14 [ 25] [ 2] [01] +10:00:14 [ 28] [ 9] [D00000000] +10:00:14 [ 32] [ 6] [198901] +10:00:14 [ 35] [ 32] [6213541000053895=491212015389642] +10:00:14 [ 37] [ 12] [507910203388] +10:00:14 [ 41] [ 8] [01529019] +10:00:14 [ 42] [ 15] [000000041529019] +10:00:14 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +10:00:14 [ 49] [ 3] [418] +10:00:14 [ 52] [ 16] [02CFDA2E8FC87803] +10:00:14 ============================================================================ +10:00:14 + + +waiting on router queue for slot.... +10:00:14 Sending to : +10:00:14 ============================================================================ +10:00:14 Sending to : +10:00:14 ============================================================================ +10:00:14 ============================================================================ +10:00:14 Slot Id : <353> +10:00:14 Transaction Type : REQUEST +10:00:14 Received From : +10:00:14 ============================================================================ +10:00:14 FNo. Len. Field Value +10:00:14 ============================================================================ +10:00:14 [ 1] [ 4] [0200] +10:00:14 [ 2] [ 16] [6688990100941507] +10:00:14 [ 3] [ 6] [010000] +10:00:14 [ 4] [ 12] [000020000000] +10:00:14 [ 7] [ 10] [0320100010] +10:00:14 [ 11] [ 6] [707232] +10:00:14 [ 12] [ 6] [100010] +10:00:14 [ 13] [ 4] [0320] +10:00:14 [ 15] [ 4] [0320] +10:00:14 [ 18] [ 4] [6011] +10:00:14 [ 22] [ 3] [900] +10:00:14 [ 25] [ 2] [02] +10:00:14 [ 28] [ 9] [D00002000] +10:00:14 [ 32] [ 6] [621354] +10:00:14 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:00:14 [ 37] [ 12] [507904719468] +10:00:14 [ 41] [ 8] [18001000] +10:00:14 [ 42] [ 15] [NATIVE ] +10:00:14 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:00:14 [ 49] [ 3] [418] +10:00:14 [ 52] [ 16] [3B496FEB663F5696] +10:00:14 ============================================================================ +10:00:14 + + +waiting on router queue for slot.... +10:00:14 Sending to : +10:00:14 ============================================================================ +10:00:14 ============================================================================ +10:00:14 Slot Id : <353> +10:00:14 Transaction Type : REQUEST +10:00:14 Received From : +10:00:14 ============================================================================ +10:00:14 FNo. Len. Field Value +10:00:14 ============================================================================ +10:00:14 [ 1] [ 4] [0200] +10:00:14 [ 2] [ 16] [6688990100941507] +10:00:14 [ 3] [ 6] [010000] +10:00:14 [ 4] [ 12] [000020000000] +10:00:14 [ 7] [ 10] [0320100010] +10:00:14 [ 11] [ 6] [707232] +10:00:14 [ 12] [ 6] [100010] +10:00:14 [ 13] [ 4] [0320] +10:00:14 [ 15] [ 4] [0320] +10:00:14 [ 18] [ 4] [6011] +10:00:14 [ 22] [ 3] [900] +10:00:14 [ 25] [ 2] [02] +10:00:14 [ 28] [ 9] [D00002000] +10:00:14 [ 32] [ 6] [621354] +10:00:14 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:00:14 [ 37] [ 12] [507904719468] +10:00:14 [ 41] [ 8] [18001000] +10:00:14 [ 42] [ 15] [NATIVE ] +10:00:14 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:00:14 [ 49] [ 3] [418] +10:00:14 [ 52] [ 16] [708A5172D2D707EC] +10:00:14 ============================================================================ +10:00:14 + + +waiting on router queue for slot.... +10:00:14 Sending to : <4> +10:00:14 ============================================================================ +10:00:14 ============================================================================ +10:00:14 Slot Id : <382> +10:00:14 Transaction Type : REQUEST +10:00:14 Received From : +10:00:14 ============================================================================ +10:00:14 FNo. Len. Field Value +10:00:14 ============================================================================ +10:00:14 [ 1] [ 4] [0200] +10:00:14 [ 2] [ 16] [6213541000053895] +10:00:14 [ 3] [ 6] [301000] +10:00:14 [ 4] [ 12] [000000000000] +10:00:14 [ 7] [ 10] [0320100035] +10:00:14 [ 11] [ 6] [203388] +10:00:14 [ 12] [ 6] [094750] +10:00:14 [ 13] [ 4] [0320] +10:00:14 [ 14] [ 4] [4912] +10:00:14 [ 15] [ 4] [0320] +10:00:14 [ 18] [ 4] [6011] +10:00:14 [ 19] [ 3] [418] +10:00:14 [ 22] [ 3] [021] +10:00:14 [ 25] [ 2] [01] +10:00:14 [ 28] [ 9] [D00000000] +10:00:14 [ 32] [ 6] [198901] +10:00:14 [ 35] [ 32] [6213541000053895=491212015389642] +10:00:14 [ 37] [ 12] [507910203388] +10:00:14 [ 41] [ 8] [01529019] +10:00:14 [ 42] [ 15] [000000041529019] +10:00:14 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +10:00:14 [ 49] [ 3] [418] +10:00:14 [ 52] [ 16] [02CFDA2E8FC87803] +10:00:14 ============================================================================ +10:00:14 + + +waiting on router queue for slot.... +10:00:14 Sending to : +10:00:14 ============================================================================ +10:00:14 ============================================================================ +10:00:14 Slot Id : <382> +10:00:14 Transaction Type : REQUEST +10:00:14 Received From : +10:00:14 ============================================================================ +10:00:14 FNo. Len. Field Value +10:00:14 ============================================================================ +10:00:14 [ 1] [ 4] [0200] +10:00:14 [ 2] [ 16] [6213541000053895] +10:00:14 [ 3] [ 6] [301000] +10:00:14 [ 4] [ 12] [000000000000] +10:00:14 [ 7] [ 10] [0320100035] +10:00:14 [ 11] [ 6] [203388] +10:00:14 [ 12] [ 6] [094750] +10:00:14 [ 13] [ 4] [0320] +10:00:14 [ 14] [ 4] [4912] +10:00:14 [ 15] [ 4] [0320] +10:00:14 [ 18] [ 4] [6011] +10:00:14 [ 19] [ 3] [418] +10:00:14 [ 22] [ 3] [021] +10:00:14 [ 25] [ 2] [01] +10:00:14 [ 28] [ 9] [D00000000] +10:00:14 [ 32] [ 6] [198901] +10:00:14 [ 35] [ 32] [6213541000053895=491212015389642] +10:00:14 [ 37] [ 12] [507910203388] +10:00:14 [ 41] [ 8] [01529019] +10:00:14 [ 42] [ 15] [000000041529019] +10:00:14 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +10:00:14 [ 49] [ 3] [418] +10:00:14 [ 52] [ 16] [B9BE6CBEAB6DD7EB] +10:00:14 ============================================================================ +10:00:14 + + +waiting on router queue for slot.... +10:00:14 Sending to : <0> +10:00:14 ============================================================================ +10:00:15 ============================================================================ +10:00:15 Slot Id : <382> +10:00:15 Transaction Type : RESPONSE +10:00:15 Received From : +10:00:15 ============================================================================ +10:00:15 FNo. Len. Field Value +10:00:15 ============================================================================ +10:00:15 [ 1] [ 4] [0210] +10:00:15 [ 2] [ 16] [6213541000053895] +10:00:15 [ 3] [ 6] [301000] +10:00:15 [ 4] [ 12] [000000000000] +10:00:15 [ 7] [ 10] [0320100035] +10:00:15 [ 11] [ 6] [203388] +10:00:15 [ 12] [ 6] [094750] +10:00:15 [ 13] [ 4] [0320] +10:00:15 [ 15] [ 4] [0320] +10:00:15 [ 18] [ 4] [6011] +10:00:15 [ 19] [ 3] [418] +10:00:15 [ 32] [ 6] [198901] +10:00:15 [ 35] [ 32] [6213541000053895=491212015389642] +10:00:15 [ 37] [ 12] [507910203388] +10:00:15 [ 38] [ 6] [639797] +10:00:15 [ 39] [ 2] [00] +10:00:15 [ 41] [ 8] [01529019] +10:00:15 [ 49] [ 3] [418] +10:00:15 [ 54] [ 40] [1001418C0001428151291002418C000142815129] +10:00:15 ============================================================================ +10:00:15 Sending to : +10:00:15 ============================================================================ +10:00:15 + + +waiting on router queue for slot.... +10:00:16 ============================================================================ +10:00:16 Slot Id : <382> +10:00:16 Transaction Type : RESPONSE +10:00:16 Received From : +10:00:16 ============================================================================ +10:00:16 FNo. Len. Field Value +10:00:16 ============================================================================ +10:00:16 [ 1] [ 4] [0210] +10:00:16 [ 2] [ 16] [6213541000053895] +10:00:16 [ 3] [ 6] [301000] +10:00:16 [ 4] [ 12] [000000000000] +10:00:16 [ 7] [ 10] [0320100035] +10:00:16 [ 11] [ 6] [203388] +10:00:16 [ 12] [ 6] [094750] +10:00:16 [ 13] [ 4] [0320] +10:00:16 [ 15] [ 4] [0320] +10:00:16 [ 18] [ 4] [6011] +10:00:16 [ 19] [ 3] [418] +10:00:16 [ 32] [ 6] [198901] +10:00:16 [ 35] [ 32] [6213541000053895=491212015389642] +10:00:16 [ 37] [ 12] [507910203388] +10:00:16 [ 38] [ 6] [639797] +10:00:16 [ 39] [ 2] [00] +10:00:16 [ 41] [ 8] [01529019] +10:00:16 [ 49] [ 3] [418] +10:00:16 [ 54] [ 40] [1001418C0001428151291002418C000142815129] +10:00:16 ============================================================================ +10:00:16 Calculate Source COMM Id = 5 +10:00:16 ============================================================================ +10:00:16 + + +waiting on router queue for slot.... +10:00:17 ============================================================================ +10:00:17 Slot Id : <353> +10:00:17 Transaction Type : RESPONSE +10:00:17 Received From : +10:00:17 ============================================================================ +10:00:17 FNo. Len. Field Value +10:00:17 ============================================================================ +10:00:17 [ 1] [ 4] [0210] +10:00:17 [ 2] [ 16] [6688990100941507] +10:00:17 [ 3] [ 6] [010000] +10:00:17 [ 4] [ 12] [000020000000] +10:00:17 [ 11] [ 6] [707232] +10:00:17 [ 12] [ 6] [100010] +10:00:17 [ 15] [ 4] [0320] +10:00:17 [ 18] [ 4] [6011] +10:00:17 [ 32] [ 6] [621354] +10:00:17 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:00:17 [ 37] [ 12] [507904719468] +10:00:17 [ 38] [ 6] [660567] +10:00:17 [ 39] [ 2] [00] +10:00:17 [ 41] [ 8] [18001000] +10:00:17 [ 49] [ 3] [418] +10:00:17 [ 54] [ 20] [0002418C000020507741] +10:00:17 ============================================================================ +10:00:17 Sending to : +10:00:17 ============================================================================ +10:00:17 + + +waiting on router queue for slot.... +10:00:18 ============================================================================ +10:00:18 Slot Id : <353> +10:00:18 Transaction Type : RESPONSE +10:00:18 Received From : +10:00:18 ============================================================================ +10:00:18 FNo. Len. Field Value +10:00:18 ============================================================================ +10:00:18 [ 1] [ 4] [0210] +10:00:18 [ 2] [ 16] [6688990100941507] +10:00:18 [ 3] [ 6] [010000] +10:00:18 [ 4] [ 12] [000020000000] +10:00:18 [ 11] [ 6] [707232] +10:00:18 [ 12] [ 6] [100010] +10:00:18 [ 15] [ 4] [0320] +10:00:18 [ 18] [ 4] [6011] +10:00:18 [ 32] [ 6] [621354] +10:00:18 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:00:18 [ 37] [ 12] [507904719468] +10:00:18 [ 38] [ 6] [660567] +10:00:18 [ 39] [ 2] [00] +10:00:18 [ 41] [ 8] [18001000] +10:00:18 [ 49] [ 3] [418] +10:00:18 [ 54] [ 20] [0002418C000020507741] +10:00:18 ============================================================================ +10:00:18 Calculate Source COMM Id = 0 +10:00:18 ============================================================================ +10:00:18 + + +waiting on router queue for slot.... +10:00:19 ============================================================================ +10:00:19 Slot Id : <355> +10:00:19 Transaction Type : REQUEST +10:00:19 Received From : +10:00:19 ============================================================================ +10:00:19 FNo. Len. Field Value +10:00:19 ============================================================================ +10:00:19 [ 1] [ 4] [0800] +10:00:19 [ 7] [ 10] [0320171208] +10:00:19 [ 11] [ 6] [101208] +10:00:19 [ 37] [ 12] [57910101208] +10:00:19 [ 70] [ 3] [301] +10:00:19 ============================================================================ +10:00:19 + + +waiting on router queue for slot.... +10:00:19 Sending to : +10:00:19 ============================================================================ +10:00:19 ============================================================================ +10:00:19 Slot Id : <355> +10:00:19 Transaction Type : RESPONSE +10:00:19 Received From : +10:00:19 ============================================================================ +10:00:19 FNo. Len. Field Value +10:00:19 ============================================================================ +10:00:19 [ 1] [ 4] [0810] +10:00:19 [ 7] [ 10] [0320171208] +10:00:19 [ 11] [ 6] [101208] +10:00:19 [ 37] [ 12] [579101012080] +10:00:19 [ 39] [ 2] [00] +10:00:19 [ 70] [ 3] [810] +10:00:19 ============================================================================ +10:00:19 Calculate Source COMM Id = 6 +10:00:19 ============================================================================ +10:00:19 + + +waiting on router queue for slot.... +10:00:23 ============================================================================ +10:00:23 Slot Id : <363> +10:00:23 Transaction Type : REQUEST +10:00:23 Received From : +10:00:23 ============================================================================ +10:00:23 FNo. Len. Field Value +10:00:23 ============================================================================ +10:00:23 [ 1] [ 4] [0800] +10:00:23 [ 7] [ 10] [0320025930] +10:00:23 [ 11] [ 6] [155752] +10:00:23 [ 70] [ 3] [301] +10:00:23 ============================================================================ +10:00:23 + + +waiting on router queue for slot.... +10:00:23 Sending to : +10:00:23 ============================================================================ +10:00:23 ============================================================================ +10:00:23 Slot Id : <363> +10:00:23 Transaction Type : RESPONSE +10:00:23 Received From : +10:00:23 ============================================================================ +10:00:23 FNo. Len. Field Value +10:00:23 ============================================================================ +10:00:23 [ 1] [ 4] [0810] +10:00:23 [ 7] [ 10] [0320025930] +10:00:23 [ 11] [ 6] [155752] +10:00:23 [ 39] [ 2] [00] +10:00:23 [ 70] [ 3] [301] +10:00:23 ============================================================================ +10:00:23 Calculate Source COMM Id = 2 +10:00:23 ============================================================================ +10:00:23 + + +waiting on router queue for slot.... +10:00:38 ============================================================================ +10:00:38 Slot Id : <358> +10:00:38 Transaction Type : REQUEST +10:00:38 Received From : +10:00:38 ============================================================================ +10:00:38 FNo. Len. Field Value +10:00:38 ============================================================================ +10:00:38 [ 1] [ 4] [0800] +10:00:38 [ 7] [ 10] [0320025946] +10:00:38 [ 11] [ 6] [155753] +10:00:38 [ 70] [ 3] [301] +10:00:38 ============================================================================ +10:00:38 + + +waiting on router queue for slot.... +10:00:38 Sending to : +10:00:38 ============================================================================ +10:00:38 ============================================================================ +10:00:38 Slot Id : <358> +10:00:38 Transaction Type : RESPONSE +10:00:38 Received From : +10:00:38 ============================================================================ +10:00:38 FNo. Len. Field Value +10:00:38 ============================================================================ +10:00:38 [ 1] [ 4] [0810] +10:00:38 [ 7] [ 10] [0320025946] +10:00:38 [ 11] [ 6] [155753] +10:00:38 [ 39] [ 2] [00] +10:00:38 [ 70] [ 3] [301] +10:00:38 ============================================================================ +10:00:38 Calculate Source COMM Id = 2 +10:00:38 ============================================================================ +10:00:38 + + +waiting on router queue for slot.... +10:00:49 ============================================================================ +10:00:49 Slot Id : <370> +10:00:49 Transaction Type : REQUEST +10:00:49 Received From : +10:00:49 ============================================================================ +10:00:49 FNo. Len. Field Value +10:00:49 ============================================================================ +10:00:49 [ 1] [ 4] [0800] +10:00:49 [ 7] [ 10] [0320025957] +10:00:49 [ 11] [ 6] [155754] +10:00:49 [ 70] [ 3] [301] +10:00:49 ============================================================================ +10:00:49 + + +waiting on router queue for slot.... +10:00:49 Sending to : +10:00:49 ============================================================================ +10:00:49 ============================================================================ +10:00:49 Slot Id : <370> +10:00:49 Transaction Type : RESPONSE +10:00:49 Received From : +10:00:49 ============================================================================ +10:00:49 FNo. Len. Field Value +10:00:49 ============================================================================ +10:00:49 [ 1] [ 4] [0810] +10:00:49 [ 7] [ 10] [0320025957] +10:00:49 [ 11] [ 6] [155754] +10:00:49 [ 39] [ 2] [00] +10:00:49 [ 70] [ 3] [301] +10:00:49 ============================================================================ +10:00:49 Calculate Source COMM Id = 2 +10:00:49 ============================================================================ +10:00:49 + + +waiting on router queue for slot.... +10:00:50 ============================================================================ +10:00:50 Slot Id : <360> +10:00:50 Transaction Type : REQUEST +10:00:50 Received From : +10:00:50 ============================================================================ +10:00:50 FNo. Len. Field Value +10:00:50 ============================================================================ +10:00:50 [ 1] [ 4] [0200] +10:00:50 [ 2] [ 16] [6213544000158847] +10:00:50 [ 3] [ 6] [010000] +10:00:50 [ 4] [ 12] [000100000000] +10:00:50 [ 7] [ 10] [0320095841] +10:00:50 [ 11] [ 6] [937223] +10:00:50 [ 12] [ 6] [095841] +10:00:50 [ 13] [ 4] [0320] +10:00:50 [ 15] [ 4] [0320] +10:00:50 [ 18] [ 4] [6011] +10:00:50 [ 19] [ 3] [418] +10:00:50 [ 22] [ 3] [021] +10:00:50 [ 25] [ 2] [01] +10:00:50 [ 28] [ 9] [D00002000] +10:00:50 [ 32] [ 6] [668899] +10:00:50 [ 35] [ 32] [6213544000158847=491212015884055] +10:00:50 [ 37] [ 12] [507901856239] +10:00:50 [ 41] [ 8] [03311001] +10:00:50 [ 42] [ 15] [APT ] +10:00:50 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +10:00:50 [ 49] [ 3] [418] +10:00:50 [ 52] [ 16] [629C9F40BE072119] +10:00:50 ============================================================================ +10:00:50 + + +waiting on router queue for slot.... +10:00:50 Sending to : +10:00:50 ============================================================================ +10:00:50 Sending to : +10:00:50 ============================================================================ +10:00:51 ============================================================================ +10:00:51 Slot Id : <360> +10:00:51 Transaction Type : REQUEST +10:00:51 Received From : +10:00:51 ============================================================================ +10:00:51 FNo. Len. Field Value +10:00:51 ============================================================================ +10:00:51 [ 1] [ 4] [0200] +10:00:51 [ 2] [ 16] [6213544000158847] +10:00:51 [ 3] [ 6] [010000] +10:00:51 [ 4] [ 12] [000100000000] +10:00:51 [ 7] [ 10] [0320095841] +10:00:51 [ 11] [ 6] [937223] +10:00:51 [ 12] [ 6] [095841] +10:00:51 [ 13] [ 4] [0320] +10:00:51 [ 15] [ 4] [0320] +10:00:51 [ 18] [ 4] [6011] +10:00:51 [ 19] [ 3] [418] +10:00:51 [ 22] [ 3] [021] +10:00:51 [ 25] [ 2] [01] +10:00:51 [ 28] [ 9] [D00002000] +10:00:51 [ 32] [ 6] [668899] +10:00:51 [ 35] [ 32] [6213544000158847=491212015884055] +10:00:51 [ 37] [ 12] [507901856239] +10:00:51 [ 41] [ 8] [03311001] +10:00:51 [ 42] [ 15] [APT ] +10:00:51 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +10:00:51 [ 49] [ 3] [418] +10:00:51 [ 52] [ 16] [629C9F40BE072119] +10:00:51 ============================================================================ +10:00:51 + + +waiting on router queue for slot.... +10:00:51 Sending to : +10:00:51 ============================================================================ +10:00:51 ============================================================================ +10:00:51 Slot Id : <360> +10:00:51 Transaction Type : REQUEST +10:00:51 Received From : +10:00:51 ============================================================================ +10:00:51 FNo. Len. Field Value +10:00:51 ============================================================================ +10:00:51 [ 1] [ 4] [0200] +10:00:51 [ 2] [ 16] [6213544000158847] +10:00:51 [ 3] [ 6] [010000] +10:00:51 [ 4] [ 12] [000100000000] +10:00:51 [ 7] [ 10] [0320095841] +10:00:51 [ 11] [ 6] [937223] +10:00:51 [ 12] [ 6] [095841] +10:00:51 [ 13] [ 4] [0320] +10:00:51 [ 15] [ 4] [0320] +10:00:51 [ 18] [ 4] [6011] +10:00:51 [ 19] [ 3] [418] +10:00:51 [ 22] [ 3] [021] +10:00:51 [ 25] [ 2] [01] +10:00:51 [ 28] [ 9] [D00002000] +10:00:51 [ 32] [ 6] [668899] +10:00:51 [ 35] [ 32] [6213544000158847=491212015884055] +10:00:51 [ 37] [ 12] [507901856239] +10:00:51 [ 41] [ 8] [03311001] +10:00:51 [ 42] [ 15] [APT ] +10:00:51 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +10:00:51 [ 49] [ 3] [418] +10:00:51 [ 52] [ 16] [424A1CBA1E7F1BC0] +10:00:51 ============================================================================ +10:00:51 + + +waiting on router queue for slot.... +10:00:51 Sending to : <0> +10:00:51 ============================================================================ +10:00:51 ============================================================================ +10:00:51 Slot Id : <360> +10:00:51 Transaction Type : RESPONSE +10:00:51 Received From : +10:00:51 ============================================================================ +10:00:51 FNo. Len. Field Value +10:00:51 ============================================================================ +10:00:51 [ 1] [ 4] [0210] +10:00:51 [ 2] [ 16] [6213544000158847] +10:00:51 [ 3] [ 6] [010000] +10:00:51 [ 4] [ 12] [000100000000] +10:00:51 [ 7] [ 10] [0320095841] +10:00:51 [ 11] [ 6] [937223] +10:00:51 [ 12] [ 6] [095841] +10:00:51 [ 13] [ 4] [0320] +10:00:51 [ 15] [ 4] [0320] +10:00:51 [ 18] [ 4] [6011] +10:00:51 [ 19] [ 3] [418] +10:00:51 [ 32] [ 6] [668899] +10:00:51 [ 35] [ 32] [6213544000158847=491212015884055] +10:00:51 [ 37] [ 12] [507901856239] +10:00:51 [ 38] [ 6] [048377] +10:00:51 [ 39] [ 2] [00] +10:00:51 [ 41] [ 8] [03311001] +10:00:51 [ 49] [ 3] [418] +10:00:51 [ 54] [ 40] [0001418C0000293586770002418C000029358677] +10:00:51 ============================================================================ +10:00:51 Sending to : +10:00:51 ============================================================================ +10:00:51 + + +waiting on router queue for slot.... +10:00:53 ============================================================================ +10:00:53 Slot Id : <360> +10:00:53 Transaction Type : RESPONSE +10:00:53 Received From : +10:00:53 ============================================================================ +10:00:53 FNo. Len. Field Value +10:00:53 ============================================================================ +10:00:53 [ 1] [ 4] [0210] +10:00:53 [ 2] [ 16] [6213544000158847] +10:00:53 [ 3] [ 6] [010000] +10:00:53 [ 4] [ 12] [000100000000] +10:00:53 [ 7] [ 10] [0320095841] +10:00:53 [ 11] [ 6] [937223] +10:00:53 [ 12] [ 6] [095841] +10:00:53 [ 13] [ 4] [0320] +10:00:53 [ 15] [ 4] [0320] +10:00:53 [ 18] [ 4] [6011] +10:00:53 [ 19] [ 3] [418] +10:00:53 [ 32] [ 6] [668899] +10:00:53 [ 35] [ 32] [6213544000158847=491212015884055] +10:00:53 [ 37] [ 12] [507901856239] +10:00:53 [ 38] [ 6] [048377] +10:00:53 [ 39] [ 2] [00] +10:00:53 [ 41] [ 8] [03311001] +10:00:53 [ 49] [ 3] [418] +10:00:53 [ 54] [ 40] [0001418C0000293586770002418C000029358677] +10:00:53 ============================================================================ +10:00:53 Calculate Source COMM Id = 4 +10:00:53 ============================================================================ +10:00:53 + + +waiting on router queue for slot.... +10:00:59 ============================================================================ +10:00:59 Slot Id : <338> +10:00:59 Transaction Type : REQUEST +10:00:59 Received From : +10:00:59 ============================================================================ +10:00:59 FNo. Len. Field Value +10:00:59 ============================================================================ +10:00:59 [ 1] [ 4] [0800] +10:00:59 [ 2] [ 5] [02531] +10:00:59 [ 3] [ 6] [579108] +10:00:59 [ 7] [ 10] [0320030059] +10:00:59 [ 11] [ 6] [806993] +10:00:59 [ 15] [ 10] [0320030059] +10:00:59 [ 37] [ 11] [57910806993] +10:00:59 [ 70] [ 3] [001] +10:00:59 ============================================================================ +10:00:59 + + +waiting on router queue for slot.... +10:00:59 ============================================================================ +10:00:59 Slot Id : <338> +10:00:59 Transaction Type : RESPONSE +10:00:59 Received From : +10:00:59 ============================================================================ +10:00:59 FNo. Len. Field Value +10:00:59 ============================================================================ +10:00:59 [ 1] [ 4] [0810] +10:00:59 [ 7] [ 10] [0320030059] +10:00:59 [ 11] [ 6] [806993] +10:00:59 [ 15] [ 4] [0320] +10:00:59 [ 37] [ 12] [57910806993] +10:00:59 [ 39] [ 2] [00] +10:00:59 [ 70] [ 3] [001] +10:00:59 ============================================================================ +10:00:59 Sending to : +10:00:59 ============================================================================ +10:00:59 + + +waiting on router queue for slot.... +10:01:04 ============================================================================ +10:01:04 Slot Id : <354> +10:01:04 Transaction Type : REQUEST +10:01:04 Received From : +10:01:04 ============================================================================ +10:01:04 FNo. Len. Field Value +10:01:04 ============================================================================ +10:01:04 [ 1] [ 4] [0800] +10:01:04 [ 7] [ 10] [0320030012] +10:01:04 [ 11] [ 6] [155755] +10:01:04 [ 70] [ 3] [301] +10:01:04 ============================================================================ +10:01:04 + + +waiting on router queue for slot.... +10:01:04 Sending to : +10:01:04 ============================================================================ +10:01:04 ============================================================================ +10:01:04 Slot Id : <354> +10:01:04 Transaction Type : RESPONSE +10:01:04 Received From : +10:01:04 ============================================================================ +10:01:04 FNo. Len. Field Value +10:01:04 ============================================================================ +10:01:04 [ 1] [ 4] [0810] +10:01:04 [ 7] [ 10] [0320030012] +10:01:04 [ 11] [ 6] [155755] +10:01:04 [ 39] [ 2] [00] +10:01:04 [ 70] [ 3] [301] +10:01:04 ============================================================================ +10:01:04 Calculate Source COMM Id = 2 +10:01:04 ============================================================================ +10:01:04 + + +waiting on router queue for slot.... +10:01:10 ============================================================================ +10:01:10 Slot Id : <379> +10:01:10 Transaction Type : REQUEST +10:01:10 Received From : +10:01:10 ============================================================================ +10:01:10 FNo. Len. Field Value +10:01:10 ============================================================================ +10:01:10 [ 1] [ 4] [0200] +10:01:10 [ 2] [ 16] [6213545000333603] +10:01:10 [ 3] [ 6] [010000] +10:01:10 [ 4] [ 12] [000050000000] +10:01:10 [ 7] [ 10] [0320030017] +10:01:10 [ 11] [ 6] [267883] +10:01:10 [ 12] [ 6] [100017] +10:01:10 [ 13] [ 4] [0320] +10:01:10 [ 14] [ 4] [4912] +10:01:10 [ 15] [ 4] [0320] +10:01:10 [ 18] [ 4] [6011] +10:01:10 [ 19] [ 3] [418] +10:01:10 [ 22] [ 3] [021] +10:01:10 [ 25] [ 2] [01] +10:01:10 [ 28] [ 9] [D00002000] +10:01:10 [ 32] [ 6] [180893] +10:01:10 [ 35] [ 32] [6213545000333603=491212013360798] +10:01:10 [ 37] [ 12] [507903267883] +10:01:10 [ 41] [ 8] [0441VT52] +10:01:10 [ 42] [ 15] [999999 ] +10:01:10 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +10:01:10 [ 49] [ 3] [418] +10:01:10 [ 52] [ 16] [E9EDDCEDE72D9B9C] +10:01:10 ============================================================================ +10:01:10 + + +waiting on router queue for slot.... +10:01:10 Sending to : +10:01:10 ============================================================================ +10:01:10 Sending to : +10:01:10 ============================================================================ +10:01:10 ============================================================================ +10:01:10 Slot Id : <379> +10:01:10 Transaction Type : REQUEST +10:01:10 Received From : +10:01:10 ============================================================================ +10:01:10 FNo. Len. Field Value +10:01:10 ============================================================================ +10:01:10 [ 1] [ 4] [0200] +10:01:10 [ 2] [ 16] [6213545000333603] +10:01:10 [ 3] [ 6] [010000] +10:01:10 [ 4] [ 12] [000050000000] +10:01:10 [ 7] [ 10] [0320030017] +10:01:10 [ 11] [ 6] [267883] +10:01:10 [ 12] [ 6] [100017] +10:01:10 [ 13] [ 4] [0320] +10:01:10 [ 14] [ 4] [4912] +10:01:10 [ 15] [ 4] [0320] +10:01:10 [ 18] [ 4] [6011] +10:01:10 [ 19] [ 3] [418] +10:01:10 [ 22] [ 3] [021] +10:01:10 [ 25] [ 2] [01] +10:01:10 [ 28] [ 9] [D00002000] +10:01:10 [ 32] [ 6] [180893] +10:01:10 [ 35] [ 32] [6213545000333603=491212013360798] +10:01:10 [ 37] [ 12] [507903267883] +10:01:10 [ 41] [ 8] [0441VT52] +10:01:10 [ 42] [ 15] [999999 ] +10:01:10 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +10:01:10 [ 49] [ 3] [418] +10:01:10 [ 52] [ 16] [E9EDDCEDE72D9B9C] +10:01:10 ============================================================================ +10:01:10 + + +waiting on router queue for slot.... +10:01:10 Sending to : +10:01:10 ============================================================================ +10:01:10 ============================================================================ +10:01:10 Slot Id : <379> +10:01:10 Transaction Type : REQUEST +10:01:10 Received From : +10:01:10 ============================================================================ +10:01:10 FNo. Len. Field Value +10:01:10 ============================================================================ +10:01:10 [ 1] [ 4] [0200] +10:01:10 [ 2] [ 16] [6213545000333603] +10:01:10 [ 3] [ 6] [010000] +10:01:10 [ 4] [ 12] [000050000000] +10:01:10 [ 7] [ 10] [0320030017] +10:01:10 [ 11] [ 6] [267883] +10:01:10 [ 12] [ 6] [100017] +10:01:10 [ 13] [ 4] [0320] +10:01:10 [ 14] [ 4] [4912] +10:01:10 [ 15] [ 4] [0320] +10:01:10 [ 18] [ 4] [6011] +10:01:10 [ 19] [ 3] [418] +10:01:10 [ 22] [ 3] [021] +10:01:10 [ 25] [ 2] [01] +10:01:10 [ 28] [ 9] [D00002000] +10:01:10 [ 32] [ 6] [180893] +10:01:10 [ 35] [ 32] [6213545000333603=491212013360798] +10:01:10 [ 37] [ 12] [507903267883] +10:01:10 [ 41] [ 8] [0441VT52] +10:01:10 [ 42] [ 15] [999999 ] +10:01:10 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +10:01:10 [ 49] [ 3] [418] +10:01:10 [ 52] [ 16] [547871C69582AAC4] +10:01:10 ============================================================================ +10:01:10 + + +waiting on router queue for slot.... +10:01:10 Sending to : <0> +10:01:10 ============================================================================ +10:01:11 ============================================================================ +10:01:11 Slot Id : <379> +10:01:11 Transaction Type : RESPONSE +10:01:11 Received From : +10:01:11 ============================================================================ +10:01:11 FNo. Len. Field Value +10:01:11 ============================================================================ +10:01:11 [ 1] [ 4] [0210] +10:01:11 [ 2] [ 16] [6213545000333603] +10:01:11 [ 3] [ 6] [010000] +10:01:11 [ 4] [ 12] [000050000000] +10:01:11 [ 7] [ 10] [0320030017] +10:01:11 [ 11] [ 6] [267883] +10:01:11 [ 12] [ 6] [100017] +10:01:11 [ 13] [ 4] [0320] +10:01:11 [ 15] [ 4] [0320] +10:01:11 [ 18] [ 4] [6011] +10:01:11 [ 19] [ 3] [418] +10:01:11 [ 32] [ 6] [180893] +10:01:11 [ 35] [ 32] [6213545000333603=491212013360798] +10:01:11 [ 37] [ 12] [507903267883] +10:01:11 [ 38] [ 6] [657854] +10:01:11 [ 39] [ 2] [00] +10:01:11 [ 41] [ 8] [0441VT52] +10:01:11 [ 49] [ 3] [418] +10:01:11 [ 54] [ 40] [0001418C0000484118510002418C000048411851] +10:01:11 ============================================================================ +10:01:11 Sending to : +10:01:11 ============================================================================ +10:01:11 + + +waiting on router queue for slot.... +10:01:12 ============================================================================ +10:01:12 Slot Id : <369> +10:01:12 Transaction Type : REQUEST +10:01:12 Received From : +10:01:12 ============================================================================ +10:01:12 FNo. Len. Field Value +10:01:12 ============================================================================ +10:01:12 [ 1] [ 4] [0200] +10:01:12 [ 2] [ 16] [6688990602127100] +10:01:12 [ 3] [ 6] [301000] +10:01:12 [ 7] [ 10] [0320030018] +10:01:12 [ 11] [ 6] [267884] +10:01:12 [ 12] [ 6] [100018] +10:01:12 [ 13] [ 4] [0320] +10:01:12 [ 14] [ 4] [4209] +10:01:12 [ 15] [ 4] [0320] +10:01:12 [ 18] [ 4] [6011] +10:01:12 [ 19] [ 3] [418] +10:01:12 [ 22] [ 3] [021] +10:01:12 [ 25] [ 2] [01] +10:01:12 [ 32] [ 6] [180893] +10:01:12 [ 35] [ 37] [6688990602127100=42090061710089600000] +10:01:12 [ 37] [ 12] [507903267884] +10:01:12 [ 41] [ 8] [0221XKKM] +10:01:12 [ 42] [ 15] [999999 ] +10:01:12 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +10:01:12 [ 49] [ 3] [418] +10:01:12 [ 52] [ 16] [C7F0F7DB7227D44F] +10:01:12 ============================================================================ +10:01:12 + + +waiting on router queue for slot.... +10:01:12 Sending to : +10:01:12 ============================================================================ +10:01:12 Sending to : +10:01:12 ============================================================================ +10:01:12 ============================================================================ +10:01:12 Slot Id : <369> +10:01:12 Transaction Type : REQUEST +10:01:12 Received From : +10:01:12 ============================================================================ +10:01:12 FNo. Len. Field Value +10:01:12 ============================================================================ +10:01:12 [ 1] [ 4] [0200] +10:01:12 [ 2] [ 16] [6688990602127100] +10:01:12 [ 3] [ 6] [301000] +10:01:12 [ 7] [ 10] [0320030018] +10:01:12 [ 11] [ 6] [267884] +10:01:12 [ 12] [ 6] [100018] +10:01:12 [ 13] [ 4] [0320] +10:01:12 [ 14] [ 4] [4209] +10:01:12 [ 15] [ 4] [0320] +10:01:12 [ 18] [ 4] [6011] +10:01:12 [ 19] [ 3] [418] +10:01:12 [ 22] [ 3] [021] +10:01:12 [ 25] [ 2] [01] +10:01:12 [ 32] [ 6] [180893] +10:01:12 [ 35] [ 37] [6688990602127100=42090061710089600000] +10:01:12 [ 37] [ 12] [507903267884] +10:01:12 [ 41] [ 8] [0221XKKM] +10:01:12 [ 42] [ 15] [999999 ] +10:01:12 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +10:01:12 [ 49] [ 3] [418] +10:01:12 [ 52] [ 16] [C7F0F7DB7227D44F] +10:01:12 ============================================================================ +10:01:12 + + +waiting on router queue for slot.... +10:01:12 Sending to : +10:01:12 ============================================================================ +10:01:12 ============================================================================ +10:01:12 Slot Id : <369> +10:01:12 Transaction Type : REQUEST +10:01:12 Received From : +10:01:12 ============================================================================ +10:01:12 FNo. Len. Field Value +10:01:12 ============================================================================ +10:01:12 [ 1] [ 4] [0200] +10:01:12 [ 2] [ 16] [6688990602127100] +10:01:12 [ 3] [ 6] [301000] +10:01:12 [ 7] [ 10] [0320030018] +10:01:12 [ 11] [ 6] [267884] +10:01:12 [ 12] [ 6] [100018] +10:01:12 [ 13] [ 4] [0320] +10:01:12 [ 14] [ 4] [4209] +10:01:12 [ 15] [ 4] [0320] +10:01:12 [ 18] [ 4] [6011] +10:01:12 [ 19] [ 3] [418] +10:01:12 [ 22] [ 3] [021] +10:01:12 [ 25] [ 2] [01] +10:01:12 [ 32] [ 6] [180893] +10:01:12 [ 35] [ 37] [6688990602127100=42090061710089600000] +10:01:12 [ 37] [ 12] [507903267884] +10:01:12 [ 41] [ 8] [0221XKKM] +10:01:12 [ 42] [ 15] [999999 ] +10:01:12 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +10:01:12 [ 49] [ 3] [418] +10:01:12 [ 52] [ 16] [0ED289F09EE3592D] +10:01:12 ============================================================================ +10:01:12 + + +waiting on router queue for slot.... +10:01:12 Sending to : <0> +10:01:12 ============================================================================ +10:01:12 ============================================================================ +10:01:12 Slot Id : <369> +10:01:12 Transaction Type : RESPONSE +10:01:12 Received From : +10:01:12 ============================================================================ +10:01:12 FNo. Len. Field Value +10:01:12 ============================================================================ +10:01:12 [ 1] [ 4] [0210] +10:01:12 [ 2] [ 16] [6688990602127100] +10:01:12 [ 3] [ 6] [301000] +10:01:12 [ 4] [ 12] [000000000000] +10:01:12 [ 7] [ 10] [0320030018] +10:01:12 [ 11] [ 6] [267884] +10:01:12 [ 12] [ 6] [100018] +10:01:12 [ 13] [ 4] [0320] +10:01:12 [ 15] [ 4] [0320] +10:01:12 [ 18] [ 4] [6011] +10:01:12 [ 19] [ 3] [418] +10:01:12 [ 22] [ 3] [021] +10:01:12 [ 32] [ 6] [180893] +10:01:12 [ 35] [ 37] [6688990602127100=42090061710089600000] +10:01:12 [ 37] [ 12] [507903267884] +10:01:12 [ 39] [ 2] [14] +10:01:12 [ 41] [ 8] [0221XKKM] +10:01:12 [ 49] [ 3] [418] +10:01:12 ============================================================================ +10:01:12 Sending to : +10:01:12 ============================================================================ +10:01:12 + + +waiting on router queue for slot.... +10:01:13 ============================================================================ +10:01:13 Slot Id : <379> +10:01:13 Transaction Type : RESPONSE +10:01:13 Received From : +10:01:13 ============================================================================ +10:01:13 FNo. Len. Field Value +10:01:13 ============================================================================ +10:01:13 [ 1] [ 4] [0210] +10:01:13 [ 2] [ 16] [6213545000333603] +10:01:13 [ 3] [ 6] [010000] +10:01:13 [ 4] [ 12] [000050000000] +10:01:13 [ 7] [ 10] [0320030017] +10:01:13 [ 11] [ 6] [267883] +10:01:13 [ 12] [ 6] [100017] +10:01:13 [ 13] [ 4] [0320] +10:01:13 [ 15] [ 4] [0320] +10:01:13 [ 18] [ 4] [6011] +10:01:13 [ 19] [ 3] [418] +10:01:13 [ 32] [ 6] [180893] +10:01:13 [ 35] [ 32] [6213545000333603=491212013360798] +10:01:13 [ 37] [ 12] [507903267883] +10:01:13 [ 38] [ 6] [657854] +10:01:13 [ 39] [ 2] [00] +10:01:13 [ 41] [ 8] [0441VT52] +10:01:13 [ 49] [ 3] [418] +10:01:13 [ 54] [ 40] [0001418C0000484118510002418C000048411851] +10:01:13 ============================================================================ +10:01:13 Calculate Source COMM Id = 2 +10:01:13 ============================================================================ +10:01:13 + + +waiting on router queue for slot.... +10:01:14 ============================================================================ +10:01:14 Slot Id : <369> +10:01:14 Transaction Type : RESPONSE +10:01:14 Received From : +10:01:14 ============================================================================ +10:01:14 FNo. Len. Field Value +10:01:14 ============================================================================ +10:01:14 [ 1] [ 4] [0210] +10:01:14 [ 2] [ 16] [6688990602127100] +10:01:14 [ 3] [ 6] [301000] +10:01:14 [ 4] [ 12] [000000000000] +10:01:14 [ 7] [ 10] [0320030018] +10:01:14 [ 11] [ 6] [267884] +10:01:14 [ 12] [ 6] [100018] +10:01:14 [ 13] [ 4] [0320] +10:01:14 [ 15] [ 4] [0320] +10:01:14 [ 18] [ 4] [6011] +10:01:14 [ 19] [ 3] [418] +10:01:14 [ 22] [ 3] [021] +10:01:14 [ 32] [ 6] [180893] +10:01:14 [ 35] [ 37] [6688990602127100=42090061710089600000] +10:01:14 [ 37] [ 12] [507903267884] +10:01:14 [ 39] [ 2] [14] +10:01:14 [ 41] [ 8] [0221XKKM] +10:01:14 [ 49] [ 3] [418] +10:01:14 ============================================================================ +10:01:14 Calculate Source COMM Id = 2 +10:01:14 ============================================================================ +10:01:14 + + +waiting on router queue for slot.... +10:01:21 ============================================================================ +10:01:21 Slot Id : <396> +10:01:21 Transaction Type : REQUEST +10:01:21 Received From : +10:01:21 ============================================================================ +10:01:21 FNo. Len. Field Value +10:01:21 ============================================================================ +10:01:21 [ 1] [ 4] [0800] +10:01:21 [ 7] [ 10] [0320025912] +10:01:21 [ 11] [ 6] [029776] +10:01:21 [ 37] [ 12] [57909029776] +10:01:21 [ 70] [ 3] [301] +10:01:21 ============================================================================ +10:01:21 + + +waiting on router queue for slot.... +10:01:21 Sending to : +10:01:21 ============================================================================ +10:01:21 ============================================================================ +10:01:21 Slot Id : <396> +10:01:21 Transaction Type : RESPONSE +10:01:21 Received From : +10:01:21 ============================================================================ +10:01:21 FNo. Len. Field Value +10:01:21 ============================================================================ +10:01:21 [ 1] [ 4] [0810] +10:01:21 [ 7] [ 10] [0320025912] +10:01:21 [ 11] [ 6] [029776] +10:01:21 [ 37] [ 12] [579090297760] +10:01:21 [ 39] [ 2] [00] +10:01:21 [ 70] [ 3] [810] +10:01:21 ============================================================================ +10:01:21 Calculate Source COMM Id = 4 +10:01:21 ============================================================================ +10:01:21 + + +waiting on router queue for slot.... +10:01:21 ============================================================================ +10:01:21 Slot Id : <389> +10:01:21 Transaction Type : REQUEST +10:01:21 Received From : +10:01:21 ============================================================================ +10:01:21 FNo. Len. Field Value +10:01:21 ============================================================================ +10:01:21 [ 1] [ 4] [0200] +10:01:21 [ 2] [ 16] [6213541000053895] +10:01:21 [ 3] [ 6] [011000] +10:01:21 [ 4] [ 12] [000100000000] +10:01:21 [ 7] [ 10] [0320100143] +10:01:21 [ 11] [ 6] [203414] +10:01:21 [ 12] [ 6] [094858] +10:01:21 [ 13] [ 4] [0320] +10:01:21 [ 14] [ 4] [4912] +10:01:21 [ 15] [ 4] [0320] +10:01:21 [ 18] [ 4] [6011] +10:01:21 [ 19] [ 3] [418] +10:01:21 [ 22] [ 3] [021] +10:01:21 [ 25] [ 2] [01] +10:01:21 [ 28] [ 9] [D00002000] +10:01:21 [ 32] [ 6] [198901] +10:01:21 [ 35] [ 32] [6213541000053895=491212015389642] +10:01:21 [ 37] [ 12] [507910203414] +10:01:21 [ 41] [ 8] [01529019] +10:01:21 [ 42] [ 15] [000000041529019] +10:01:21 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +10:01:21 [ 49] [ 3] [418] +10:01:21 [ 52] [ 16] [02CFDA2E8FC87803] +10:01:21 ============================================================================ +10:01:21 + + +waiting on router queue for slot.... +10:01:21 Sending to : +10:01:21 ============================================================================ +10:01:21 Sending to : +10:01:21 ============================================================================ +10:01:22 ============================================================================ +10:01:22 Slot Id : <389> +10:01:22 Transaction Type : REQUEST +10:01:22 Received From : +10:01:22 ============================================================================ +10:01:22 FNo. Len. Field Value +10:01:22 ============================================================================ +10:01:22 [ 1] [ 4] [0200] +10:01:22 [ 2] [ 16] [6213541000053895] +10:01:22 [ 3] [ 6] [011000] +10:01:22 [ 4] [ 12] [000100000000] +10:01:22 [ 7] [ 10] [0320100143] +10:01:22 [ 11] [ 6] [203414] +10:01:22 [ 12] [ 6] [094858] +10:01:22 [ 13] [ 4] [0320] +10:01:22 [ 14] [ 4] [4912] +10:01:22 [ 15] [ 4] [0320] +10:01:22 [ 18] [ 4] [6011] +10:01:22 [ 19] [ 3] [418] +10:01:22 [ 22] [ 3] [021] +10:01:22 [ 25] [ 2] [01] +10:01:22 [ 28] [ 9] [D00002000] +10:01:22 [ 32] [ 6] [198901] +10:01:22 [ 35] [ 32] [6213541000053895=491212015389642] +10:01:22 [ 37] [ 12] [507910203414] +10:01:22 [ 41] [ 8] [01529019] +10:01:22 [ 42] [ 15] [000000041529019] +10:01:22 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +10:01:22 [ 49] [ 3] [418] +10:01:22 [ 52] [ 16] [02CFDA2E8FC87803] +10:01:22 ============================================================================ +10:01:22 + + +waiting on router queue for slot.... +10:01:22 Sending to : +10:01:22 ============================================================================ +10:01:22 ============================================================================ +10:01:22 Slot Id : <389> +10:01:22 Transaction Type : REQUEST +10:01:22 Received From : +10:01:22 ============================================================================ +10:01:22 FNo. Len. Field Value +10:01:22 ============================================================================ +10:01:22 [ 1] [ 4] [0200] +10:01:22 [ 2] [ 16] [6213541000053895] +10:01:22 [ 3] [ 6] [011000] +10:01:22 [ 4] [ 12] [000100000000] +10:01:22 [ 7] [ 10] [0320100143] +10:01:22 [ 11] [ 6] [203414] +10:01:22 [ 12] [ 6] [094858] +10:01:22 [ 13] [ 4] [0320] +10:01:22 [ 14] [ 4] [4912] +10:01:22 [ 15] [ 4] [0320] +10:01:22 [ 18] [ 4] [6011] +10:01:22 [ 19] [ 3] [418] +10:01:22 [ 22] [ 3] [021] +10:01:22 [ 25] [ 2] [01] +10:01:22 [ 28] [ 9] [D00002000] +10:01:22 [ 32] [ 6] [198901] +10:01:22 [ 35] [ 32] [6213541000053895=491212015389642] +10:01:22 [ 37] [ 12] [507910203414] +10:01:22 [ 41] [ 8] [01529019] +10:01:22 [ 42] [ 15] [000000041529019] +10:01:22 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +10:01:22 [ 49] [ 3] [418] +10:01:22 [ 52] [ 16] [B9BE6CBEAB6DD7EB] +10:01:22 ============================================================================ +10:01:22 + + +waiting on router queue for slot.... +10:01:22 Sending to : <0> +10:01:22 ============================================================================ +10:01:22 ============================================================================ +10:01:22 Slot Id : <389> +10:01:22 Transaction Type : RESPONSE +10:01:22 Received From : +10:01:22 ============================================================================ +10:01:22 FNo. Len. Field Value +10:01:22 ============================================================================ +10:01:22 [ 1] [ 4] [0210] +10:01:22 [ 2] [ 16] [6213541000053895] +10:01:22 [ 3] [ 6] [011000] +10:01:22 [ 4] [ 12] [000100000000] +10:01:22 [ 7] [ 10] [0320100143] +10:01:22 [ 11] [ 6] [203414] +10:01:22 [ 12] [ 6] [094858] +10:01:22 [ 13] [ 4] [0320] +10:01:22 [ 15] [ 4] [0320] +10:01:22 [ 18] [ 4] [6011] +10:01:22 [ 19] [ 3] [418] +10:01:22 [ 32] [ 6] [198901] +10:01:22 [ 35] [ 32] [6213541000053895=491212015389642] +10:01:22 [ 37] [ 12] [507910203414] +10:01:22 [ 38] [ 6] [060213] +10:01:22 [ 39] [ 2] [00] +10:01:22 [ 41] [ 8] [01529019] +10:01:22 [ 49] [ 3] [418] +10:01:22 [ 54] [ 40] [1001418C0000426151291002418C000042615129] +10:01:22 ============================================================================ +10:01:22 Sending to : +10:01:22 ============================================================================ +10:01:22 + + +waiting on router queue for slot.... +10:01:24 ============================================================================ +10:01:24 Slot Id : <389> +10:01:24 Transaction Type : RESPONSE +10:01:24 Received From : +10:01:24 ============================================================================ +10:01:24 FNo. Len. Field Value +10:01:24 ============================================================================ +10:01:24 [ 1] [ 4] [0210] +10:01:24 [ 2] [ 16] [6213541000053895] +10:01:24 [ 3] [ 6] [011000] +10:01:24 [ 4] [ 12] [000100000000] +10:01:24 [ 7] [ 10] [0320100143] +10:01:24 [ 11] [ 6] [203414] +10:01:24 [ 12] [ 6] [094858] +10:01:24 [ 13] [ 4] [0320] +10:01:24 [ 15] [ 4] [0320] +10:01:24 [ 18] [ 4] [6011] +10:01:24 [ 19] [ 3] [418] +10:01:24 [ 32] [ 6] [198901] +10:01:24 [ 35] [ 32] [6213541000053895=491212015389642] +10:01:24 [ 37] [ 12] [507910203414] +10:01:24 [ 38] [ 6] [060213] +10:01:24 [ 39] [ 2] [00] +10:01:24 [ 41] [ 8] [01529019] +10:01:24 [ 49] [ 3] [418] +10:01:24 [ 54] [ 40] [1001418C0000426151291002418C000042615129] +10:01:24 ============================================================================ +10:01:24 Calculate Source COMM Id = 5 +10:01:24 ============================================================================ +10:01:24 + + +waiting on router queue for slot.... +10:01:24 ============================================================================ +10:01:24 Slot Id : <351> +10:01:24 Transaction Type : REQUEST +10:01:24 Received From : +10:01:24 ============================================================================ +10:01:24 FNo. Len. Field Value +10:01:24 ============================================================================ +10:01:24 [ 1] [ 4] [0800] +10:01:24 [ 7] [ 10] [0320171313] +10:01:24 [ 11] [ 6] [101313] +10:01:24 [ 37] [ 12] [57910101313] +10:01:24 [ 70] [ 3] [301] +10:01:24 ============================================================================ +10:01:24 + + +waiting on router queue for slot.... +10:01:24 Sending to : +10:01:24 ============================================================================ +10:01:24 ============================================================================ +10:01:24 Slot Id : <351> +10:01:24 Transaction Type : RESPONSE +10:01:24 Received From : +10:01:24 ============================================================================ +10:01:24 FNo. Len. Field Value +10:01:24 ============================================================================ +10:01:24 [ 1] [ 4] [0810] +10:01:24 [ 7] [ 10] [0320171313] +10:01:24 [ 11] [ 6] [101313] +10:01:24 [ 37] [ 12] [579101013130] +10:01:24 [ 39] [ 2] [00] +10:01:24 [ 70] [ 3] [810] +10:01:24 ============================================================================ +10:01:24 Calculate Source COMM Id = 6 +10:01:24 ============================================================================ +10:01:24 + + +waiting on router queue for slot.... +10:01:30 ============================================================================ +10:01:30 Slot Id : <390> +10:01:30 Transaction Type : REQUEST +10:01:30 Received From : +10:01:30 ============================================================================ +10:01:30 FNo. Len. Field Value +10:01:30 ============================================================================ +10:01:30 [ 1] [ 4] [0800] +10:01:30 [ 7] [ 10] [0320030038] +10:01:30 [ 11] [ 6] [155756] +10:01:30 [ 70] [ 3] [301] +10:01:30 ============================================================================ +10:01:30 + + +waiting on router queue for slot.... +10:01:30 Sending to : +10:01:30 ============================================================================ +10:01:30 ============================================================================ +10:01:30 Slot Id : <390> +10:01:30 Transaction Type : RESPONSE +10:01:30 Received From : +10:01:30 ============================================================================ +10:01:30 FNo. Len. Field Value +10:01:30 ============================================================================ +10:01:30 [ 1] [ 4] [0810] +10:01:30 [ 7] [ 10] [0320030038] +10:01:30 [ 11] [ 6] [155756] +10:01:30 [ 39] [ 2] [00] +10:01:30 [ 70] [ 3] [301] +10:01:30 ============================================================================ +10:01:30 Calculate Source COMM Id = 2 +10:01:30 ============================================================================ +10:01:30 + + +waiting on router queue for slot.... +10:01:41 ============================================================================ +10:01:41 Slot Id : <359> +10:01:41 Transaction Type : REQUEST +10:01:41 Received From : +10:01:41 ============================================================================ +10:01:41 FNo. Len. Field Value +10:01:41 ============================================================================ +10:01:41 [ 1] [ 4] [0800] +10:01:41 [ 7] [ 10] [0320030049] +10:01:41 [ 11] [ 6] [155757] +10:01:41 [ 70] [ 3] [301] +10:01:41 ============================================================================ +10:01:41 + + +waiting on router queue for slot.... +10:01:41 Sending to : +10:01:41 ============================================================================ +10:01:41 ============================================================================ +10:01:41 Slot Id : <359> +10:01:41 Transaction Type : RESPONSE +10:01:41 Received From : +10:01:41 ============================================================================ +10:01:41 FNo. Len. Field Value +10:01:41 ============================================================================ +10:01:41 [ 1] [ 4] [0810] +10:01:41 [ 7] [ 10] [0320030049] +10:01:41 [ 11] [ 6] [155757] +10:01:41 [ 39] [ 2] [00] +10:01:41 [ 70] [ 3] [301] +10:01:41 ============================================================================ +10:01:41 Calculate Source COMM Id = 2 +10:01:41 ============================================================================ +10:01:41 + + +waiting on router queue for slot.... +10:01:52 ============================================================================ +10:01:52 Slot Id : <376> +10:01:52 Transaction Type : REQUEST +10:01:52 Received From : +10:01:52 ============================================================================ +10:01:52 FNo. Len. Field Value +10:01:52 ============================================================================ +10:01:52 [ 1] [ 4] [0800] +10:01:52 [ 7] [ 10] [0320030100] +10:01:52 [ 11] [ 6] [155758] +10:01:52 [ 70] [ 3] [301] +10:01:52 ============================================================================ +10:01:52 + + +waiting on router queue for slot.... +10:01:52 Sending to : +10:01:52 ============================================================================ +10:01:52 ============================================================================ +10:01:52 Slot Id : <376> +10:01:52 Transaction Type : RESPONSE +10:01:52 Received From : +10:01:52 ============================================================================ +10:01:52 FNo. Len. Field Value +10:01:52 ============================================================================ +10:01:52 [ 1] [ 4] [0810] +10:01:52 [ 7] [ 10] [0320030100] +10:01:52 [ 11] [ 6] [155758] +10:01:52 [ 39] [ 2] [00] +10:01:52 [ 70] [ 3] [301] +10:01:52 ============================================================================ +10:01:52 Calculate Source COMM Id = 2 +10:01:52 ============================================================================ +10:01:52 + + +waiting on router queue for slot.... +10:01:56 ============================================================================ +10:01:56 Slot Id : <374> +10:01:56 Transaction Type : REQUEST +10:01:56 Received From : +10:01:56 ============================================================================ +10:01:56 FNo. Len. Field Value +10:01:56 ============================================================================ +10:01:56 [ 1] [ 4] [0200] +10:01:56 [ 2] [ 16] [6688990100941507] +10:01:56 [ 3] [ 6] [010000] +10:01:56 [ 4] [ 12] [000020000000] +10:01:56 [ 7] [ 10] [0320100152] +10:01:56 [ 11] [ 6] [707708] +10:01:56 [ 12] [ 6] [100152] +10:01:56 [ 13] [ 4] [0320] +10:01:56 [ 15] [ 4] [0320] +10:01:56 [ 18] [ 4] [6011] +10:01:56 [ 22] [ 3] [900] +10:01:56 [ 25] [ 2] [02] +10:01:56 [ 28] [ 9] [D00002000] +10:01:56 [ 32] [ 6] [621354] +10:01:56 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:01:56 [ 37] [ 12] [507904719470] +10:01:56 [ 41] [ 8] [18001000] +10:01:56 [ 42] [ 15] [NATIVE ] +10:01:56 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:01:56 [ 49] [ 3] [418] +10:01:56 [ 52] [ 16] [3B496FEB663F5696] +10:01:56 ============================================================================ +10:01:56 + + +waiting on router queue for slot.... +10:01:56 Sending to : +10:01:56 ============================================================================ +10:01:56 Sending to : +10:01:56 ============================================================================ +10:01:57 ============================================================================ +10:01:57 Slot Id : <374> +10:01:57 Transaction Type : REQUEST +10:01:57 Received From : +10:01:57 ============================================================================ +10:01:57 FNo. Len. Field Value +10:01:57 ============================================================================ +10:01:57 [ 1] [ 4] [0200] +10:01:57 [ 2] [ 16] [6688990100941507] +10:01:57 [ 3] [ 6] [010000] +10:01:57 [ 4] [ 12] [000020000000] +10:01:57 [ 7] [ 10] [0320100152] +10:01:57 [ 11] [ 6] [707708] +10:01:57 [ 12] [ 6] [100152] +10:01:57 [ 13] [ 4] [0320] +10:01:57 [ 15] [ 4] [0320] +10:01:57 [ 18] [ 4] [6011] +10:01:57 [ 22] [ 3] [900] +10:01:57 [ 25] [ 2] [02] +10:01:57 [ 28] [ 9] [D00002000] +10:01:57 [ 32] [ 6] [621354] +10:01:57 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:01:57 [ 37] [ 12] [507904719470] +10:01:57 [ 41] [ 8] [18001000] +10:01:57 [ 42] [ 15] [NATIVE ] +10:01:57 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:01:57 [ 49] [ 3] [418] +10:01:57 [ 52] [ 16] [3B496FEB663F5696] +10:01:57 ============================================================================ +10:01:57 + + +waiting on router queue for slot.... +10:01:57 Sending to : +10:01:57 ============================================================================ +10:01:57 ============================================================================ +10:01:57 Slot Id : <374> +10:01:57 Transaction Type : REQUEST +10:01:57 Received From : +10:01:57 ============================================================================ +10:01:57 FNo. Len. Field Value +10:01:57 ============================================================================ +10:01:57 [ 1] [ 4] [0200] +10:01:57 [ 2] [ 16] [6688990100941507] +10:01:57 [ 3] [ 6] [010000] +10:01:57 [ 4] [ 12] [000020000000] +10:01:57 [ 7] [ 10] [0320100152] +10:01:57 [ 11] [ 6] [707708] +10:01:57 [ 12] [ 6] [100152] +10:01:57 [ 13] [ 4] [0320] +10:01:57 [ 15] [ 4] [0320] +10:01:57 [ 18] [ 4] [6011] +10:01:57 [ 22] [ 3] [900] +10:01:57 [ 25] [ 2] [02] +10:01:57 [ 28] [ 9] [D00002000] +10:01:57 [ 32] [ 6] [621354] +10:01:57 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:01:57 [ 37] [ 12] [507904719470] +10:01:57 [ 41] [ 8] [18001000] +10:01:57 [ 42] [ 15] [NATIVE ] +10:01:57 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:01:57 [ 49] [ 3] [418] +10:01:57 [ 52] [ 16] [708A5172D2D707EC] +10:01:57 ============================================================================ +10:01:57 + + +waiting on router queue for slot.... +10:01:57 Sending to : <4> +10:01:57 ============================================================================ +10:01:59 ============================================================================ +10:01:59 Slot Id : <374> +10:01:59 Transaction Type : RESPONSE +10:01:59 Received From : +10:01:59 ============================================================================ +10:01:59 FNo. Len. Field Value +10:01:59 ============================================================================ +10:01:59 [ 1] [ 4] [0210] +10:01:59 [ 2] [ 16] [6688990100941507] +10:01:59 [ 3] [ 6] [010000] +10:01:59 [ 4] [ 12] [000020000000] +10:01:59 [ 11] [ 6] [707708] +10:01:59 [ 12] [ 6] [100152] +10:01:59 [ 15] [ 4] [0320] +10:01:59 [ 18] [ 4] [6011] +10:01:59 [ 32] [ 6] [621354] +10:01:59 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:01:59 [ 37] [ 12] [507904719470] +10:01:59 [ 39] [ 2] [51] +10:01:59 [ 41] [ 8] [18001000] +10:01:59 [ 49] [ 3] [418] +10:01:59 [ 54] [ 0] [] +10:01:59 ============================================================================ +10:01:59 Sending to : +10:01:59 ============================================================================ +10:01:59 + + +waiting on router queue for slot.... +10:02:00 ============================================================================ +10:02:00 Slot Id : <374> +10:02:00 Transaction Type : RESPONSE +10:02:00 Received From : +10:02:00 ============================================================================ +10:02:00 FNo. Len. Field Value +10:02:00 ============================================================================ +10:02:00 [ 1] [ 4] [0210] +10:02:00 [ 2] [ 16] [6688990100941507] +10:02:00 [ 3] [ 6] [010000] +10:02:00 [ 4] [ 12] [000020000000] +10:02:00 [ 11] [ 6] [707708] +10:02:00 [ 12] [ 6] [100152] +10:02:00 [ 15] [ 4] [0320] +10:02:00 [ 18] [ 4] [6011] +10:02:00 [ 32] [ 6] [621354] +10:02:00 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:02:00 [ 37] [ 12] [507904719470] +10:02:00 [ 39] [ 2] [51] +10:02:00 [ 41] [ 8] [18001000] +10:02:00 [ 49] [ 3] [418] +10:02:00 [ 54] [ 0] [] +10:02:00 ============================================================================ +10:02:00 Calculate Source COMM Id = 0 +10:02:00 ============================================================================ +10:02:00 + + +waiting on router queue for slot.... +10:02:01 ============================================================================ +10:02:01 Slot Id : <361> +10:02:01 Transaction Type : REQUEST +10:02:01 Received From : +10:02:01 ============================================================================ +10:02:01 FNo. Len. Field Value +10:02:01 ============================================================================ +10:02:01 [ 1] [ 4] [0800] +10:02:01 [ 2] [ 5] [02531] +10:02:01 [ 3] [ 6] [579108] +10:02:01 [ 7] [ 10] [0320030201] +10:02:01 [ 11] [ 6] [806994] +10:02:01 [ 15] [ 10] [0320030201] +10:02:01 [ 37] [ 11] [57910806994] +10:02:01 [ 70] [ 3] [001] +10:02:01 ============================================================================ +10:02:01 + + +waiting on router queue for slot.... +10:02:01 ============================================================================ +10:02:01 Slot Id : <361> +10:02:01 Transaction Type : RESPONSE +10:02:01 Received From : +10:02:01 ============================================================================ +10:02:01 FNo. Len. Field Value +10:02:01 ============================================================================ +10:02:01 [ 1] [ 4] [0810] +10:02:01 [ 7] [ 10] [0320030201] +10:02:01 [ 11] [ 6] [806994] +10:02:01 [ 15] [ 4] [0320] +10:02:01 [ 37] [ 12] [57910806994] +10:02:01 [ 39] [ 2] [00] +10:02:01 [ 70] [ 3] [001] +10:02:01 ============================================================================ +10:02:01 Sending to : +10:02:01 ============================================================================ +10:02:01 + + +waiting on router queue for slot.... +10:02:01 ============================================================================ +10:02:01 Slot Id : <395> +10:02:01 Transaction Type : REQUEST +10:02:01 Received From : +10:02:01 ============================================================================ +10:02:01 FNo. Len. Field Value +10:02:01 ============================================================================ +10:02:01 [ 1] [ 4] [0200] +10:02:01 [ 2] [ 16] [6688990602739409] +10:02:01 [ 3] [ 6] [010000] +10:02:01 [ 4] [ 12] [000100000000] +10:02:01 [ 7] [ 10] [0320030107] +10:02:01 [ 11] [ 6] [267894] +10:02:01 [ 12] [ 6] [100107] +10:02:01 [ 13] [ 4] [0320] +10:02:01 [ 14] [ 4] [4310] +10:02:01 [ 15] [ 4] [0320] +10:02:01 [ 18] [ 4] [6011] +10:02:01 [ 19] [ 3] [418] +10:02:01 [ 22] [ 3] [021] +10:02:01 [ 25] [ 2] [01] +10:02:01 [ 28] [ 9] [D00002000] +10:02:01 [ 32] [ 6] [180893] +10:02:01 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:02:01 [ 37] [ 12] [507903267894] +10:02:01 [ 41] [ 8] [0201ADD1] +10:02:01 [ 42] [ 15] [999999 ] +10:02:01 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:02:01 [ 49] [ 3] [418] +10:02:01 [ 52] [ 16] [CD7202A9461C02E4] +10:02:01 ============================================================================ +10:02:01 + + +waiting on router queue for slot.... +10:02:01 Sending to : +10:02:01 ============================================================================ +10:02:01 Sending to : +10:02:01 ============================================================================ +10:02:01 ============================================================================ +10:02:01 Slot Id : <395> +10:02:01 Transaction Type : REQUEST +10:02:01 Received From : +10:02:01 ============================================================================ +10:02:01 FNo. Len. Field Value +10:02:01 ============================================================================ +10:02:01 [ 1] [ 4] [0200] +10:02:01 [ 2] [ 16] [6688990602739409] +10:02:01 [ 3] [ 6] [010000] +10:02:01 [ 4] [ 12] [000100000000] +10:02:01 [ 7] [ 10] [0320030107] +10:02:01 [ 11] [ 6] [267894] +10:02:01 [ 12] [ 6] [100107] +10:02:01 [ 13] [ 4] [0320] +10:02:01 [ 14] [ 4] [4310] +10:02:01 [ 15] [ 4] [0320] +10:02:01 [ 18] [ 4] [6011] +10:02:01 [ 19] [ 3] [418] +10:02:01 [ 22] [ 3] [021] +10:02:01 [ 25] [ 2] [01] +10:02:01 [ 28] [ 9] [D00002000] +10:02:01 [ 32] [ 6] [180893] +10:02:01 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:02:01 [ 37] [ 12] [507903267894] +10:02:01 [ 41] [ 8] [0201ADD1] +10:02:01 [ 42] [ 15] [999999 ] +10:02:01 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:02:01 [ 49] [ 3] [418] +10:02:01 [ 52] [ 16] [CD7202A9461C02E4] +10:02:01 ============================================================================ +10:02:01 + + +waiting on router queue for slot.... +10:02:01 Sending to : +10:02:01 ============================================================================ +10:02:01 ============================================================================ +10:02:01 Slot Id : <395> +10:02:01 Transaction Type : REQUEST +10:02:01 Received From : +10:02:01 ============================================================================ +10:02:01 FNo. Len. Field Value +10:02:01 ============================================================================ +10:02:01 [ 1] [ 4] [0200] +10:02:01 [ 2] [ 16] [6688990602739409] +10:02:01 [ 3] [ 6] [010000] +10:02:01 [ 4] [ 12] [000100000000] +10:02:01 [ 7] [ 10] [0320030107] +10:02:01 [ 11] [ 6] [267894] +10:02:01 [ 12] [ 6] [100107] +10:02:01 [ 13] [ 4] [0320] +10:02:01 [ 14] [ 4] [4310] +10:02:01 [ 15] [ 4] [0320] +10:02:01 [ 18] [ 4] [6011] +10:02:01 [ 19] [ 3] [418] +10:02:01 [ 22] [ 3] [021] +10:02:01 [ 25] [ 2] [01] +10:02:01 [ 28] [ 9] [D00002000] +10:02:01 [ 32] [ 6] [180893] +10:02:01 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:02:01 [ 37] [ 12] [507903267894] +10:02:01 [ 41] [ 8] [0201ADD1] +10:02:01 [ 42] [ 15] [999999 ] +10:02:01 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:02:01 [ 49] [ 3] [418] +10:02:01 [ 52] [ 16] [6089E472DFE9D627] +10:02:01 ============================================================================ +10:02:01 + + +waiting on router queue for slot.... +10:02:01 Sending to : <0> +10:02:01 ============================================================================ +10:02:02 ============================================================================ +10:02:02 Slot Id : <395> +10:02:02 Transaction Type : RESPONSE +10:02:02 Received From : +10:02:02 ============================================================================ +10:02:02 FNo. Len. Field Value +10:02:02 ============================================================================ +10:02:02 [ 1] [ 4] [0210] +10:02:02 [ 2] [ 16] [6688990602739409] +10:02:02 [ 3] [ 6] [010000] +10:02:02 [ 4] [ 12] [000100000000] +10:02:02 [ 7] [ 10] [0320030107] +10:02:02 [ 11] [ 6] [267894] +10:02:02 [ 12] [ 6] [100107] +10:02:02 [ 13] [ 4] [0320] +10:02:02 [ 15] [ 4] [0320] +10:02:02 [ 18] [ 4] [6011] +10:02:02 [ 19] [ 3] [418] +10:02:02 [ 22] [ 3] [021] +10:02:02 [ 32] [ 6] [180893] +10:02:02 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:02:02 [ 37] [ 12] [507903267894] +10:02:02 [ 39] [ 2] [14] +10:02:02 [ 41] [ 8] [0201ADD1] +10:02:02 [ 49] [ 3] [418] +10:02:02 ============================================================================ +10:02:02 Sending to : +10:02:02 ============================================================================ +10:02:02 + + +waiting on router queue for slot.... +10:02:02 ============================================================================ +10:02:02 Slot Id : <395> +10:02:02 Transaction Type : RESPONSE +10:02:02 Received From : +10:02:02 ============================================================================ +10:02:02 FNo. Len. Field Value +10:02:02 ============================================================================ +10:02:02 [ 1] [ 4] [0210] +10:02:02 [ 2] [ 16] [6688990602739409] +10:02:02 [ 3] [ 6] [010000] +10:02:02 [ 4] [ 12] [000100000000] +10:02:02 [ 7] [ 10] [0320030107] +10:02:02 [ 11] [ 6] [267894] +10:02:02 [ 12] [ 6] [100107] +10:02:02 [ 13] [ 4] [0320] +10:02:02 [ 15] [ 4] [0320] +10:02:02 [ 18] [ 4] [6011] +10:02:02 [ 19] [ 3] [418] +10:02:02 [ 22] [ 3] [021] +10:02:02 [ 32] [ 6] [180893] +10:02:02 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:02:02 [ 37] [ 12] [507903267894] +10:02:02 [ 39] [ 2] [14] +10:02:02 [ 41] [ 8] [0201ADD1] +10:02:02 [ 49] [ 3] [418] +10:02:02 ============================================================================ +10:02:02 Calculate Source COMM Id = 2 +10:02:02 ============================================================================ +10:02:02 + + +waiting on router queue for slot.... +10:02:14 ============================================================================ +10:02:14 Slot Id : <410> +10:02:14 Transaction Type : REQUEST +10:02:14 Received From : +10:02:14 ============================================================================ +10:02:14 FNo. Len. Field Value +10:02:14 ============================================================================ +10:02:14 [ 1] [ 4] [0800] +10:02:14 [ 7] [ 10] [0320030122] +10:02:14 [ 11] [ 6] [155759] +10:02:14 [ 70] [ 3] [301] +10:02:14 ============================================================================ +10:02:14 + + +waiting on router queue for slot.... +10:02:14 Sending to : +10:02:14 ============================================================================ +10:02:14 ============================================================================ +10:02:14 Slot Id : <410> +10:02:14 Transaction Type : RESPONSE +10:02:14 Received From : +10:02:14 ============================================================================ +10:02:14 FNo. Len. Field Value +10:02:14 ============================================================================ +10:02:14 [ 1] [ 4] [0810] +10:02:14 [ 7] [ 10] [0320030122] +10:02:14 [ 11] [ 6] [155759] +10:02:14 [ 39] [ 2] [00] +10:02:14 [ 70] [ 3] [301] +10:02:14 ============================================================================ +10:02:14 Calculate Source COMM Id = 2 +10:02:14 ============================================================================ +10:02:14 + + +waiting on router queue for slot.... +10:02:29 ============================================================================ +10:02:29 Slot Id : <383> +10:02:29 Transaction Type : REQUEST +10:02:29 Received From : +10:02:29 ============================================================================ +10:02:29 FNo. Len. Field Value +10:02:29 ============================================================================ +10:02:29 [ 1] [ 4] [0800] +10:02:29 [ 7] [ 10] [0320030137] +10:02:29 [ 11] [ 6] [155760] +10:02:29 [ 70] [ 3] [301] +10:02:29 ============================================================================ +10:02:29 + + +waiting on router queue for slot.... +10:02:29 Sending to : +10:02:29 ============================================================================ +10:02:29 ============================================================================ +10:02:29 Slot Id : <383> +10:02:29 Transaction Type : RESPONSE +10:02:29 Received From : +10:02:29 ============================================================================ +10:02:29 FNo. Len. Field Value +10:02:29 ============================================================================ +10:02:29 [ 1] [ 4] [0810] +10:02:29 [ 7] [ 10] [0320030137] +10:02:29 [ 11] [ 6] [155760] +10:02:29 [ 39] [ 2] [00] +10:02:29 [ 70] [ 3] [301] +10:02:29 ============================================================================ +10:02:29 Calculate Source COMM Id = 2 +10:02:29 ============================================================================ +10:02:29 + + +waiting on router queue for slot.... +10:02:29 ============================================================================ +10:02:29 Slot Id : <393> +10:02:29 Transaction Type : REQUEST +10:02:29 Received From : +10:02:29 ============================================================================ +10:02:29 FNo. Len. Field Value +10:02:29 ============================================================================ +10:02:29 [ 1] [ 4] [0800] +10:02:29 [ 7] [ 10] [0320171418] +10:02:29 [ 11] [ 6] [101418] +10:02:29 [ 37] [ 12] [57910101418] +10:02:29 [ 70] [ 3] [301] +10:02:29 ============================================================================ +10:02:29 + + +waiting on router queue for slot.... +10:02:29 Sending to : +10:02:29 ============================================================================ +10:02:29 ============================================================================ +10:02:29 Slot Id : <393> +10:02:29 Transaction Type : RESPONSE +10:02:29 Received From : +10:02:29 ============================================================================ +10:02:29 FNo. Len. Field Value +10:02:29 ============================================================================ +10:02:29 [ 1] [ 4] [0810] +10:02:29 [ 7] [ 10] [0320171418] +10:02:29 [ 11] [ 6] [101418] +10:02:29 [ 37] [ 12] [579101014180] +10:02:29 [ 39] [ 2] [00] +10:02:29 [ 70] [ 3] [810] +10:02:29 ============================================================================ +10:02:29 Calculate Source COMM Id = 6 +10:02:29 ============================================================================ +10:02:29 + + +waiting on router queue for slot.... +10:02:40 ============================================================================ +10:02:40 Slot Id : <400> +10:02:40 Transaction Type : REQUEST +10:02:40 Received From : +10:02:40 ============================================================================ +10:02:40 FNo. Len. Field Value +10:02:40 ============================================================================ +10:02:40 [ 1] [ 4] [0800] +10:02:40 [ 7] [ 10] [0320030148] +10:02:40 [ 11] [ 6] [155761] +10:02:40 [ 70] [ 3] [301] +10:02:40 ============================================================================ +10:02:40 + + +waiting on router queue for slot.... +10:02:40 Sending to : +10:02:40 ============================================================================ +10:02:40 ============================================================================ +10:02:40 Slot Id : <400> +10:02:40 Transaction Type : RESPONSE +10:02:40 Received From : +10:02:40 ============================================================================ +10:02:40 FNo. Len. Field Value +10:02:40 ============================================================================ +10:02:40 [ 1] [ 4] [0810] +10:02:40 [ 7] [ 10] [0320030148] +10:02:40 [ 11] [ 6] [155761] +10:02:40 [ 39] [ 2] [00] +10:02:40 [ 70] [ 3] [301] +10:02:40 ============================================================================ +10:02:40 Calculate Source COMM Id = 2 +10:02:40 ============================================================================ +10:02:40 + + +waiting on router queue for slot.... +10:02:44 ============================================================================ +10:02:44 Slot Id : <413> +10:02:44 Transaction Type : REQUEST +10:02:44 Received From : +10:02:44 ============================================================================ +10:02:44 FNo. Len. Field Value +10:02:44 ============================================================================ +10:02:44 [ 1] [ 4] [0200] +10:02:44 [ 2] [ 16] [6213544001514972] +10:02:44 [ 3] [ 6] [010000] +10:02:44 [ 4] [ 12] [000150000000] +10:02:44 [ 7] [ 10] [0320030152] +10:02:44 [ 11] [ 6] [267903] +10:02:44 [ 12] [ 6] [100152] +10:02:44 [ 13] [ 4] [0320] +10:02:44 [ 14] [ 4] [4912] +10:02:44 [ 15] [ 4] [0320] +10:02:44 [ 18] [ 4] [6011] +10:02:44 [ 19] [ 3] [418] +10:02:44 [ 22] [ 3] [021] +10:02:44 [ 25] [ 2] [01] +10:02:44 [ 28] [ 9] [D00002000] +10:02:44 [ 32] [ 6] [180893] +10:02:44 [ 35] [ 32] [6213544001514972=491212011497195] +10:02:44 [ 37] [ 12] [507903267903] +10:02:44 [ 41] [ 8] [0523XYNG] +10:02:44 [ 42] [ 15] [999999 ] +10:02:44 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +10:02:44 [ 49] [ 3] [418] +10:02:44 [ 52] [ 16] [868CE306C5F84B9C] +10:02:44 ============================================================================ +10:02:44 + + +waiting on router queue for slot.... +10:02:44 Sending to : +10:02:44 ============================================================================ +10:02:44 Sending to : +10:02:44 ============================================================================ +10:02:45 ============================================================================ +10:02:45 Slot Id : <413> +10:02:45 Transaction Type : REQUEST +10:02:45 Received From : +10:02:45 ============================================================================ +10:02:45 FNo. Len. Field Value +10:02:45 ============================================================================ +10:02:45 [ 1] [ 4] [0200] +10:02:45 [ 2] [ 16] [6213544001514972] +10:02:45 [ 3] [ 6] [010000] +10:02:45 [ 4] [ 12] [000150000000] +10:02:45 [ 7] [ 10] [0320030152] +10:02:45 [ 11] [ 6] [267903] +10:02:45 [ 12] [ 6] [100152] +10:02:45 [ 13] [ 4] [0320] +10:02:45 [ 14] [ 4] [4912] +10:02:45 [ 15] [ 4] [0320] +10:02:45 [ 18] [ 4] [6011] +10:02:45 [ 19] [ 3] [418] +10:02:45 [ 22] [ 3] [021] +10:02:45 [ 25] [ 2] [01] +10:02:45 [ 28] [ 9] [D00002000] +10:02:45 [ 32] [ 6] [180893] +10:02:45 [ 35] [ 32] [6213544001514972=491212011497195] +10:02:45 [ 37] [ 12] [507903267903] +10:02:45 [ 41] [ 8] [0523XYNG] +10:02:45 [ 42] [ 15] [999999 ] +10:02:45 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +10:02:45 [ 49] [ 3] [418] +10:02:45 [ 52] [ 16] [868CE306C5F84B9C] +10:02:45 ============================================================================ +10:02:45 + + +waiting on router queue for slot.... +10:02:45 Sending to : +10:02:45 ============================================================================ +10:02:45 ============================================================================ +10:02:45 Slot Id : <413> +10:02:45 Transaction Type : REQUEST +10:02:45 Received From : +10:02:45 ============================================================================ +10:02:45 FNo. Len. Field Value +10:02:45 ============================================================================ +10:02:45 [ 1] [ 4] [0200] +10:02:45 [ 2] [ 16] [6213544001514972] +10:02:45 [ 3] [ 6] [010000] +10:02:45 [ 4] [ 12] [000150000000] +10:02:45 [ 7] [ 10] [0320030152] +10:02:45 [ 11] [ 6] [267903] +10:02:45 [ 12] [ 6] [100152] +10:02:45 [ 13] [ 4] [0320] +10:02:45 [ 14] [ 4] [4912] +10:02:45 [ 15] [ 4] [0320] +10:02:45 [ 18] [ 4] [6011] +10:02:45 [ 19] [ 3] [418] +10:02:45 [ 22] [ 3] [021] +10:02:45 [ 25] [ 2] [01] +10:02:45 [ 28] [ 9] [D00002000] +10:02:45 [ 32] [ 6] [180893] +10:02:45 [ 35] [ 32] [6213544001514972=491212011497195] +10:02:45 [ 37] [ 12] [507903267903] +10:02:45 [ 41] [ 8] [0523XYNG] +10:02:45 [ 42] [ 15] [999999 ] +10:02:45 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +10:02:45 [ 49] [ 3] [418] +10:02:45 [ 52] [ 16] [D3073E68C270F0E7] +10:02:45 ============================================================================ +10:02:45 + + +waiting on router queue for slot.... +10:02:45 Sending to : <0> +10:02:45 ============================================================================ +10:02:45 ============================================================================ +10:02:45 Slot Id : <413> +10:02:45 Transaction Type : RESPONSE +10:02:45 Received From : +10:02:45 ============================================================================ +10:02:45 FNo. Len. Field Value +10:02:45 ============================================================================ +10:02:45 [ 1] [ 4] [0210] +10:02:45 [ 2] [ 16] [6213544001514972] +10:02:45 [ 3] [ 6] [010000] +10:02:45 [ 4] [ 12] [000150000000] +10:02:45 [ 7] [ 10] [0320030152] +10:02:45 [ 11] [ 6] [267903] +10:02:45 [ 12] [ 6] [100152] +10:02:45 [ 13] [ 4] [0320] +10:02:45 [ 15] [ 4] [0320] +10:02:45 [ 18] [ 4] [6011] +10:02:45 [ 19] [ 3] [418] +10:02:45 [ 22] [ 3] [021] +10:02:45 [ 32] [ 6] [180893] +10:02:45 [ 35] [ 32] [6213544001514972=491212011497195] +10:02:45 [ 37] [ 12] [507903267903] +10:02:45 [ 39] [ 2] [61] +10:02:45 [ 41] [ 8] [0523XYNG] +10:02:45 [ 49] [ 3] [418] +10:02:45 ============================================================================ +10:02:45 Sending to : +10:02:45 ============================================================================ +10:02:45 + + +waiting on router queue for slot.... +10:02:46 ============================================================================ +10:02:46 Slot Id : <413> +10:02:46 Transaction Type : RESPONSE +10:02:46 Received From : +10:02:46 ============================================================================ +10:02:46 FNo. Len. Field Value +10:02:46 ============================================================================ +10:02:46 [ 1] [ 4] [0210] +10:02:46 [ 2] [ 16] [6213544001514972] +10:02:46 [ 3] [ 6] [010000] +10:02:46 [ 4] [ 12] [000150000000] +10:02:46 [ 7] [ 10] [0320030152] +10:02:46 [ 11] [ 6] [267903] +10:02:46 [ 12] [ 6] [100152] +10:02:46 [ 13] [ 4] [0320] +10:02:46 [ 15] [ 4] [0320] +10:02:46 [ 18] [ 4] [6011] +10:02:46 [ 19] [ 3] [418] +10:02:46 [ 22] [ 3] [021] +10:02:46 [ 32] [ 6] [180893] +10:02:46 [ 35] [ 32] [6213544001514972=491212011497195] +10:02:46 [ 37] [ 12] [507903267903] +10:02:46 [ 39] [ 2] [61] +10:02:46 [ 41] [ 8] [0523XYNG] +10:02:46 [ 49] [ 3] [418] +10:02:46 ============================================================================ +10:02:46 Calculate Source COMM Id = 2 +10:02:46 ============================================================================ +10:02:46 + + +waiting on router queue for slot.... +10:02:50 ============================================================================ +10:02:50 Slot Id : <397> +10:02:50 Transaction Type : REQUEST +10:02:50 Received From : +10:02:50 ============================================================================ +10:02:50 FNo. Len. Field Value +10:02:50 ============================================================================ +10:02:50 [ 1] [ 4] [0200] +10:02:50 [ 2] [ 16] [6213544001802922] +10:02:50 [ 3] [ 6] [010000] +10:02:50 [ 4] [ 12] [000050000000] +10:02:50 [ 7] [ 10] [0320101037] +10:02:50 [ 11] [ 6] [450646] +10:02:50 [ 12] [ 6] [101037] +10:02:50 [ 13] [ 4] [0320] +10:02:50 [ 14] [ 4] [4912] +10:02:50 [ 15] [ 4] [0320] +10:02:50 [ 18] [ 4] [6011] +10:02:50 [ 22] [ 3] [900] +10:02:50 [ 25] [ 2] [02] +10:02:50 [ 28] [ 9] [D00002000] +10:02:50 [ 32] [ 6] [220699] +10:02:50 [ 35] [ 32] [6213544001802922=491212010292525] +10:02:50 [ 37] [ 12] [507900153102] +10:02:50 [ 41] [ 8] [03000300] +10:02:50 [ 42] [ 15] [APTRA ] +10:02:50 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:02:50 [ 49] [ 3] [418] +10:02:50 [ 52] [ 16] [A61538610DDD23AF] +10:02:50 ============================================================================ +10:02:50 + + +waiting on router queue for slot.... +10:02:50 Sending to : +10:02:50 ============================================================================ +10:02:50 Sending to : +10:02:50 ============================================================================ +10:02:50 ============================================================================ +10:02:50 Slot Id : <397> +10:02:50 Transaction Type : REQUEST +10:02:50 Received From : +10:02:50 ============================================================================ +10:02:50 FNo. Len. Field Value +10:02:50 ============================================================================ +10:02:50 [ 1] [ 4] [0200] +10:02:50 [ 2] [ 16] [6213544001802922] +10:02:50 [ 3] [ 6] [010000] +10:02:50 [ 4] [ 12] [000050000000] +10:02:50 [ 7] [ 10] [0320101037] +10:02:50 [ 11] [ 6] [450646] +10:02:50 [ 12] [ 6] [101037] +10:02:50 [ 13] [ 4] [0320] +10:02:50 [ 14] [ 4] [4912] +10:02:50 [ 15] [ 4] [0320] +10:02:50 [ 18] [ 4] [6011] +10:02:50 [ 22] [ 3] [900] +10:02:50 [ 25] [ 2] [02] +10:02:50 [ 28] [ 9] [D00002000] +10:02:50 [ 32] [ 6] [220699] +10:02:50 [ 35] [ 32] [6213544001802922=491212010292525] +10:02:50 [ 37] [ 12] [507900153102] +10:02:50 [ 41] [ 8] [03000300] +10:02:50 [ 42] [ 15] [APTRA ] +10:02:50 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:02:50 [ 49] [ 3] [418] +10:02:50 [ 52] [ 16] [A61538610DDD23AF] +10:02:50 ============================================================================ +10:02:50 + + +waiting on router queue for slot.... +10:02:50 Sending to : +10:02:50 ============================================================================ +10:02:50 ============================================================================ +10:02:50 Slot Id : <397> +10:02:50 Transaction Type : REQUEST +10:02:50 Received From : +10:02:50 ============================================================================ +10:02:50 FNo. Len. Field Value +10:02:50 ============================================================================ +10:02:50 [ 1] [ 4] [0200] +10:02:50 [ 2] [ 16] [6213544001802922] +10:02:50 [ 3] [ 6] [010000] +10:02:50 [ 4] [ 12] [000050000000] +10:02:50 [ 7] [ 10] [0320101037] +10:02:50 [ 11] [ 6] [450646] +10:02:50 [ 12] [ 6] [101037] +10:02:50 [ 13] [ 4] [0320] +10:02:50 [ 14] [ 4] [4912] +10:02:50 [ 15] [ 4] [0320] +10:02:50 [ 18] [ 4] [6011] +10:02:50 [ 22] [ 3] [900] +10:02:50 [ 25] [ 2] [02] +10:02:50 [ 28] [ 9] [D00002000] +10:02:50 [ 32] [ 6] [220699] +10:02:50 [ 35] [ 32] [6213544001802922=491212010292525] +10:02:50 [ 37] [ 12] [507900153102] +10:02:50 [ 41] [ 8] [03000300] +10:02:50 [ 42] [ 15] [APTRA ] +10:02:50 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:02:50 [ 49] [ 3] [418] +10:02:50 [ 52] [ 16] [F06E0F36D2589A52] +10:02:50 ============================================================================ +10:02:50 + + +waiting on router queue for slot.... +10:02:50 Sending to : <0> +10:02:50 ============================================================================ +10:02:51 ============================================================================ +10:02:51 Slot Id : <397> +10:02:51 Transaction Type : RESPONSE +10:02:51 Received From : +10:02:51 ============================================================================ +10:02:51 FNo. Len. Field Value +10:02:51 ============================================================================ +10:02:51 [ 1] [ 4] [0210] +10:02:51 [ 2] [ 16] [6213544001802922] +10:02:51 [ 3] [ 6] [010000] +10:02:51 [ 4] [ 12] [000050000000] +10:02:51 [ 7] [ 10] [0320101037] +10:02:51 [ 11] [ 6] [450646] +10:02:51 [ 12] [ 6] [101037] +10:02:51 [ 13] [ 4] [0320] +10:02:51 [ 15] [ 4] [0320] +10:02:51 [ 18] [ 4] [6011] +10:02:51 [ 32] [ 6] [220699] +10:02:51 [ 35] [ 32] [6213544001802922=491212010292525] +10:02:51 [ 37] [ 12] [507900153102] +10:02:51 [ 38] [ 6] [902020] +10:02:51 [ 39] [ 2] [00] +10:02:51 [ 41] [ 8] [03000300] +10:02:51 [ 49] [ 3] [418] +10:02:51 [ 54] [ 40] [0001418C0000424158130002418C000042415813] +10:02:51 ============================================================================ +10:02:51 Sending to : +10:02:51 ============================================================================ +10:02:51 + + +waiting on router queue for slot.... +10:02:53 ============================================================================ +10:02:53 Slot Id : <397> +10:02:53 Transaction Type : RESPONSE +10:02:53 Received From : +10:02:53 ============================================================================ +10:02:53 FNo. Len. Field Value +10:02:53 ============================================================================ +10:02:53 [ 1] [ 4] [0210] +10:02:53 [ 2] [ 16] [6213544001802922] +10:02:53 [ 3] [ 6] [010000] +10:02:53 [ 4] [ 12] [000050000000] +10:02:53 [ 7] [ 10] [0320101037] +10:02:53 [ 11] [ 6] [450646] +10:02:53 [ 12] [ 6] [101037] +10:02:53 [ 13] [ 4] [0320] +10:02:53 [ 15] [ 4] [0320] +10:02:53 [ 18] [ 4] [6011] +10:02:53 [ 32] [ 6] [220699] +10:02:53 [ 35] [ 32] [6213544001802922=491212010292525] +10:02:53 [ 37] [ 12] [507900153102] +10:02:53 [ 38] [ 6] [902020] +10:02:53 [ 39] [ 2] [00] +10:02:53 [ 41] [ 8] [03000300] +10:02:53 [ 49] [ 3] [418] +10:02:53 [ 54] [ 40] [0001418C0000424158130002418C000042415813] +10:02:53 ============================================================================ +10:02:53 Calculate Source COMM Id = 1 +10:02:53 ============================================================================ +10:02:53 + + +waiting on router queue for slot.... +10:02:53 ============================================================================ +10:02:53 Slot Id : <349> +10:02:53 Transaction Type : REQUEST +10:02:53 Received From : +10:02:53 ============================================================================ +10:02:53 FNo. Len. Field Value +10:02:53 ============================================================================ +10:02:53 [ 1] [ 4] [0200] +10:02:53 [ 2] [ 16] [6688990602739409] +10:02:53 [ 3] [ 6] [010000] +10:02:53 [ 4] [ 12] [000100000000] +10:02:53 [ 7] [ 10] [0320030201] +10:02:53 [ 11] [ 6] [267906] +10:02:53 [ 12] [ 6] [100201] +10:02:53 [ 13] [ 4] [0320] +10:02:53 [ 14] [ 4] [4310] +10:02:53 [ 15] [ 4] [0320] +10:02:53 [ 18] [ 4] [6011] +10:02:53 [ 19] [ 3] [418] +10:02:53 [ 22] [ 3] [021] +10:02:53 [ 25] [ 2] [01] +10:02:53 [ 28] [ 9] [D00002000] +10:02:53 [ 32] [ 6] [180893] +10:02:53 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:02:53 [ 37] [ 12] [507903267906] +10:02:53 [ 41] [ 8] [0201ADD1] +10:02:53 [ 42] [ 15] [999999 ] +10:02:53 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:02:53 [ 49] [ 3] [418] +10:02:53 [ 52] [ 16] [CD7202A9461C02E4] +10:02:53 ============================================================================ +10:02:53 + + +waiting on router queue for slot.... +10:02:53 Sending to : +10:02:53 ============================================================================ +10:02:53 Sending to : +10:02:53 ============================================================================ +10:02:53 ============================================================================ +10:02:53 Slot Id : <349> +10:02:53 Transaction Type : REQUEST +10:02:53 Received From : +10:02:53 ============================================================================ +10:02:53 FNo. Len. Field Value +10:02:53 ============================================================================ +10:02:53 [ 1] [ 4] [0200] +10:02:53 [ 2] [ 16] [6688990602739409] +10:02:53 [ 3] [ 6] [010000] +10:02:53 [ 4] [ 12] [000100000000] +10:02:53 [ 7] [ 10] [0320030201] +10:02:53 [ 11] [ 6] [267906] +10:02:53 [ 12] [ 6] [100201] +10:02:53 [ 13] [ 4] [0320] +10:02:53 [ 14] [ 4] [4310] +10:02:53 [ 15] [ 4] [0320] +10:02:53 [ 18] [ 4] [6011] +10:02:53 [ 19] [ 3] [418] +10:02:53 [ 22] [ 3] [021] +10:02:53 [ 25] [ 2] [01] +10:02:53 [ 28] [ 9] [D00002000] +10:02:53 [ 32] [ 6] [180893] +10:02:53 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:02:53 [ 37] [ 12] [507903267906] +10:02:53 [ 41] [ 8] [0201ADD1] +10:02:53 [ 42] [ 15] [999999 ] +10:02:53 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:02:53 [ 49] [ 3] [418] +10:02:53 [ 52] [ 16] [CD7202A9461C02E4] +10:02:53 ============================================================================ +10:02:53 + + +waiting on router queue for slot.... +10:02:53 Sending to : +10:02:53 ============================================================================ +10:02:53 ============================================================================ +10:02:53 Slot Id : <349> +10:02:53 Transaction Type : REQUEST +10:02:53 Received From : +10:02:53 ============================================================================ +10:02:53 FNo. Len. Field Value +10:02:53 ============================================================================ +10:02:53 [ 1] [ 4] [0200] +10:02:53 [ 2] [ 16] [6688990602739409] +10:02:53 [ 3] [ 6] [010000] +10:02:53 [ 4] [ 12] [000100000000] +10:02:53 [ 7] [ 10] [0320030201] +10:02:53 [ 11] [ 6] [267906] +10:02:53 [ 12] [ 6] [100201] +10:02:53 [ 13] [ 4] [0320] +10:02:53 [ 14] [ 4] [4310] +10:02:53 [ 15] [ 4] [0320] +10:02:53 [ 18] [ 4] [6011] +10:02:53 [ 19] [ 3] [418] +10:02:53 [ 22] [ 3] [021] +10:02:53 [ 25] [ 2] [01] +10:02:53 [ 28] [ 9] [D00002000] +10:02:53 [ 32] [ 6] [180893] +10:02:53 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:02:53 [ 37] [ 12] [507903267906] +10:02:53 [ 41] [ 8] [0201ADD1] +10:02:53 [ 42] [ 15] [999999 ] +10:02:53 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:02:53 [ 49] [ 3] [418] +10:02:53 [ 52] [ 16] [6089E472DFE9D627] +10:02:53 ============================================================================ +10:02:53 + + +waiting on router queue for slot.... +10:02:53 Sending to : <0> +10:02:53 ============================================================================ +10:02:54 ============================================================================ +10:02:54 Slot Id : <349> +10:02:54 Transaction Type : RESPONSE +10:02:54 Received From : +10:02:54 ============================================================================ +10:02:54 FNo. Len. Field Value +10:02:54 ============================================================================ +10:02:54 [ 1] [ 4] [0210] +10:02:54 [ 2] [ 16] [6688990602739409] +10:02:54 [ 3] [ 6] [010000] +10:02:54 [ 4] [ 12] [000100000000] +10:02:54 [ 7] [ 10] [0320030201] +10:02:54 [ 11] [ 6] [267906] +10:02:54 [ 12] [ 6] [100201] +10:02:54 [ 13] [ 4] [0320] +10:02:54 [ 15] [ 4] [0320] +10:02:54 [ 18] [ 4] [6011] +10:02:54 [ 19] [ 3] [418] +10:02:54 [ 22] [ 3] [021] +10:02:54 [ 32] [ 6] [180893] +10:02:54 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:02:54 [ 37] [ 12] [507903267906] +10:02:54 [ 39] [ 2] [14] +10:02:54 [ 41] [ 8] [0201ADD1] +10:02:54 [ 49] [ 3] [418] +10:02:54 ============================================================================ +10:02:54 Sending to : +10:02:54 ============================================================================ +10:02:54 + + +waiting on router queue for slot.... +10:02:56 ============================================================================ +10:02:56 Slot Id : <349> +10:02:56 Transaction Type : RESPONSE +10:02:56 Received From : +10:02:56 ============================================================================ +10:02:56 FNo. Len. Field Value +10:02:56 ============================================================================ +10:02:56 [ 1] [ 4] [0210] +10:02:56 [ 2] [ 16] [6688990602739409] +10:02:56 [ 3] [ 6] [010000] +10:02:56 [ 4] [ 12] [000100000000] +10:02:56 [ 7] [ 10] [0320030201] +10:02:56 [ 11] [ 6] [267906] +10:02:56 [ 12] [ 6] [100201] +10:02:56 [ 13] [ 4] [0320] +10:02:56 [ 15] [ 4] [0320] +10:02:56 [ 18] [ 4] [6011] +10:02:56 [ 19] [ 3] [418] +10:02:56 [ 22] [ 3] [021] +10:02:56 [ 32] [ 6] [180893] +10:02:56 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:02:56 [ 37] [ 12] [507903267906] +10:02:56 [ 39] [ 2] [14] +10:02:56 [ 41] [ 8] [0201ADD1] +10:02:56 [ 49] [ 3] [418] +10:02:56 ============================================================================ +10:02:56 Calculate Source COMM Id = 2 +10:02:56 ============================================================================ +10:02:56 + + +waiting on router queue for slot.... +10:03:03 ============================================================================ +10:03:03 Slot Id : <414> +10:03:03 Transaction Type : REQUEST +10:03:03 Received From : +10:03:03 ============================================================================ +10:03:03 FNo. Len. Field Value +10:03:03 ============================================================================ +10:03:03 [ 1] [ 4] [0800] +10:03:03 [ 2] [ 5] [02531] +10:03:03 [ 3] [ 6] [579108] +10:03:03 [ 7] [ 10] [0320030303] +10:03:03 [ 11] [ 6] [806995] +10:03:03 [ 15] [ 10] [0320030303] +10:03:03 [ 37] [ 11] [57910806995] +10:03:03 [ 70] [ 3] [001] +10:03:03 ============================================================================ +10:03:03 + + +waiting on router queue for slot.... +10:03:03 ============================================================================ +10:03:03 Slot Id : <414> +10:03:03 Transaction Type : RESPONSE +10:03:03 Received From : +10:03:03 ============================================================================ +10:03:03 FNo. Len. Field Value +10:03:03 ============================================================================ +10:03:03 [ 1] [ 4] [0810] +10:03:03 [ 7] [ 10] [0320030303] +10:03:03 [ 11] [ 6] [806995] +10:03:03 [ 15] [ 4] [0320] +10:03:03 [ 37] [ 12] [57910806995] +10:03:03 [ 39] [ 2] [00] +10:03:03 [ 70] [ 3] [001] +10:03:03 ============================================================================ +10:03:03 Sending to : +10:03:03 ============================================================================ +10:03:03 + + +waiting on router queue for slot.... +10:03:13 ============================================================================ +10:03:13 Slot Id : <399> +10:03:13 Transaction Type : REQUEST +10:03:13 Received From : +10:03:13 ============================================================================ +10:03:13 FNo. Len. Field Value +10:03:13 ============================================================================ +10:03:13 [ 1] [ 4] [0800] +10:03:13 [ 7] [ 10] [0320030220] +10:03:13 [ 11] [ 6] [155762] +10:03:13 [ 70] [ 3] [301] +10:03:13 ============================================================================ +10:03:13 + + +waiting on router queue for slot.... +10:03:13 Sending to : +10:03:13 ============================================================================ +10:03:13 ============================================================================ +10:03:13 Slot Id : <399> +10:03:13 Transaction Type : RESPONSE +10:03:13 Received From : +10:03:13 ============================================================================ +10:03:13 FNo. Len. Field Value +10:03:13 ============================================================================ +10:03:13 [ 1] [ 4] [0810] +10:03:13 [ 7] [ 10] [0320030220] +10:03:13 [ 11] [ 6] [155762] +10:03:13 [ 39] [ 2] [00] +10:03:13 [ 70] [ 3] [301] +10:03:13 ============================================================================ +10:03:13 Calculate Source COMM Id = 2 +10:03:13 ============================================================================ +10:03:13 + + +waiting on router queue for slot.... +10:03:27 ============================================================================ +10:03:27 Slot Id : <387> +10:03:27 Transaction Type : REQUEST +10:03:27 Received From : +10:03:27 ============================================================================ +10:03:27 FNo. Len. Field Value +10:03:27 ============================================================================ +10:03:27 [ 1] [ 4] [0200] +10:03:27 [ 2] [ 16] [6688990602739409] +10:03:27 [ 3] [ 6] [301000] +10:03:27 [ 7] [ 10] [0320030234] +10:03:27 [ 11] [ 6] [267910] +10:03:27 [ 12] [ 6] [100234] +10:03:27 [ 13] [ 4] [0320] +10:03:27 [ 14] [ 4] [4310] +10:03:27 [ 15] [ 4] [0320] +10:03:27 [ 18] [ 4] [6011] +10:03:27 [ 19] [ 3] [418] +10:03:27 [ 22] [ 3] [021] +10:03:27 [ 25] [ 2] [01] +10:03:27 [ 32] [ 6] [180893] +10:03:27 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:03:27 [ 37] [ 12] [507903267910] +10:03:27 [ 41] [ 8] [0201ADD1] +10:03:27 [ 42] [ 15] [999999 ] +10:03:27 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:03:27 [ 49] [ 3] [418] +10:03:27 [ 52] [ 16] [CD7202A9461C02E4] +10:03:27 ============================================================================ +10:03:27 + + +waiting on router queue for slot.... +10:03:27 Sending to : +10:03:27 ============================================================================ +10:03:27 Sending to : +10:03:27 ============================================================================ +10:03:27 ============================================================================ +10:03:27 Slot Id : <387> +10:03:27 Transaction Type : REQUEST +10:03:27 Received From : +10:03:27 ============================================================================ +10:03:27 FNo. Len. Field Value +10:03:27 ============================================================================ +10:03:27 [ 1] [ 4] [0200] +10:03:27 [ 2] [ 16] [6688990602739409] +10:03:27 [ 3] [ 6] [301000] +10:03:27 [ 7] [ 10] [0320030234] +10:03:27 [ 11] [ 6] [267910] +10:03:27 [ 12] [ 6] [100234] +10:03:27 [ 13] [ 4] [0320] +10:03:27 [ 14] [ 4] [4310] +10:03:27 [ 15] [ 4] [0320] +10:03:27 [ 18] [ 4] [6011] +10:03:27 [ 19] [ 3] [418] +10:03:27 [ 22] [ 3] [021] +10:03:27 [ 25] [ 2] [01] +10:03:27 [ 32] [ 6] [180893] +10:03:27 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:03:27 [ 37] [ 12] [507903267910] +10:03:27 [ 41] [ 8] [0201ADD1] +10:03:27 [ 42] [ 15] [999999 ] +10:03:27 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:03:27 [ 49] [ 3] [418] +10:03:27 [ 52] [ 16] [CD7202A9461C02E4] +10:03:27 ============================================================================ +10:03:27 + + +waiting on router queue for slot.... +10:03:27 Sending to : +10:03:27 ============================================================================ +10:03:27 ============================================================================ +10:03:27 Slot Id : <387> +10:03:27 Transaction Type : REQUEST +10:03:27 Received From : +10:03:27 ============================================================================ +10:03:27 FNo. Len. Field Value +10:03:27 ============================================================================ +10:03:27 [ 1] [ 4] [0200] +10:03:27 [ 2] [ 16] [6688990602739409] +10:03:27 [ 3] [ 6] [301000] +10:03:27 [ 7] [ 10] [0320030234] +10:03:27 [ 11] [ 6] [267910] +10:03:27 [ 12] [ 6] [100234] +10:03:27 [ 13] [ 4] [0320] +10:03:27 [ 14] [ 4] [4310] +10:03:27 [ 15] [ 4] [0320] +10:03:27 [ 18] [ 4] [6011] +10:03:27 [ 19] [ 3] [418] +10:03:27 [ 22] [ 3] [021] +10:03:27 [ 25] [ 2] [01] +10:03:27 [ 32] [ 6] [180893] +10:03:27 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:03:27 [ 37] [ 12] [507903267910] +10:03:27 [ 41] [ 8] [0201ADD1] +10:03:27 [ 42] [ 15] [999999 ] +10:03:27 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:03:27 [ 49] [ 3] [418] +10:03:27 [ 52] [ 16] [6089E472DFE9D627] +10:03:27 ============================================================================ +10:03:27 + + +waiting on router queue for slot.... +10:03:27 Sending to : <0> +10:03:27 ============================================================================ +10:03:27 ============================================================================ +10:03:27 Slot Id : <387> +10:03:27 Transaction Type : RESPONSE +10:03:27 Received From : +10:03:27 ============================================================================ +10:03:27 FNo. Len. Field Value +10:03:27 ============================================================================ +10:03:27 [ 1] [ 4] [0210] +10:03:27 [ 2] [ 16] [6688990602739409] +10:03:27 [ 3] [ 6] [301000] +10:03:27 [ 4] [ 12] [000000000000] +10:03:27 [ 7] [ 10] [0320030234] +10:03:27 [ 11] [ 6] [267910] +10:03:27 [ 12] [ 6] [100234] +10:03:27 [ 13] [ 4] [0320] +10:03:27 [ 15] [ 4] [0320] +10:03:27 [ 18] [ 4] [6011] +10:03:27 [ 19] [ 3] [418] +10:03:27 [ 22] [ 3] [021] +10:03:27 [ 32] [ 6] [180893] +10:03:27 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:03:27 [ 37] [ 12] [507903267910] +10:03:27 [ 39] [ 2] [14] +10:03:27 [ 41] [ 8] [0201ADD1] +10:03:27 [ 49] [ 3] [418] +10:03:27 ============================================================================ +10:03:27 Sending to : +10:03:27 ============================================================================ +10:03:27 + + +waiting on router queue for slot.... +10:03:28 ============================================================================ +10:03:28 Slot Id : <394> +10:03:28 Transaction Type : REQUEST +10:03:28 Received From : +10:03:28 ============================================================================ +10:03:28 FNo. Len. Field Value +10:03:28 ============================================================================ +10:03:28 [ 1] [ 4] [0800] +10:03:28 [ 7] [ 10] [0320030236] +10:03:28 [ 11] [ 6] [155763] +10:03:28 [ 70] [ 3] [301] +10:03:28 ============================================================================ +10:03:28 + + +waiting on router queue for slot.... +10:03:28 Sending to : +10:03:28 ============================================================================ +10:03:28 ============================================================================ +10:03:28 Slot Id : <394> +10:03:28 Transaction Type : RESPONSE +10:03:28 Received From : +10:03:28 ============================================================================ +10:03:28 FNo. Len. Field Value +10:03:28 ============================================================================ +10:03:28 [ 1] [ 4] [0810] +10:03:28 [ 7] [ 10] [0320030236] +10:03:28 [ 11] [ 6] [155763] +10:03:28 [ 39] [ 2] [00] +10:03:28 [ 70] [ 3] [301] +10:03:28 ============================================================================ +10:03:28 Calculate Source COMM Id = 2 +10:03:28 ============================================================================ +10:03:28 + + +waiting on router queue for slot.... +10:03:28 ============================================================================ +10:03:28 Slot Id : <387> +10:03:28 Transaction Type : RESPONSE +10:03:28 Received From : +10:03:28 ============================================================================ +10:03:28 FNo. Len. Field Value +10:03:28 ============================================================================ +10:03:28 [ 1] [ 4] [0210] +10:03:28 [ 2] [ 16] [6688990602739409] +10:03:28 [ 3] [ 6] [301000] +10:03:28 [ 4] [ 12] [000000000000] +10:03:28 [ 7] [ 10] [0320030234] +10:03:28 [ 11] [ 6] [267910] +10:03:28 [ 12] [ 6] [100234] +10:03:28 [ 13] [ 4] [0320] +10:03:28 [ 15] [ 4] [0320] +10:03:28 [ 18] [ 4] [6011] +10:03:28 [ 19] [ 3] [418] +10:03:28 [ 22] [ 3] [021] +10:03:28 [ 32] [ 6] [180893] +10:03:28 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:03:28 [ 37] [ 12] [507903267910] +10:03:28 [ 39] [ 2] [14] +10:03:28 [ 41] [ 8] [0201ADD1] +10:03:28 [ 49] [ 3] [418] +10:03:28 ============================================================================ +10:03:28 Calculate Source COMM Id = 2 +10:03:28 ============================================================================ +10:03:28 + + +waiting on router queue for slot.... +10:03:34 ============================================================================ +10:03:34 Slot Id : <372> +10:03:34 Transaction Type : REQUEST +10:03:34 Received From : +10:03:34 ============================================================================ +10:03:34 FNo. Len. Field Value +10:03:34 ============================================================================ +10:03:34 [ 1] [ 4] [0800] +10:03:34 [ 7] [ 10] [0320171523] +10:03:34 [ 11] [ 6] [101523] +10:03:34 [ 37] [ 12] [57910101523] +10:03:34 [ 70] [ 3] [301] +10:03:34 ============================================================================ +10:03:34 + + +waiting on router queue for slot.... +10:03:34 Sending to : +10:03:34 ============================================================================ +10:03:34 ============================================================================ +10:03:34 Slot Id : <372> +10:03:34 Transaction Type : RESPONSE +10:03:34 Received From : +10:03:34 ============================================================================ +10:03:34 FNo. Len. Field Value +10:03:34 ============================================================================ +10:03:34 [ 1] [ 4] [0810] +10:03:34 [ 7] [ 10] [0320171523] +10:03:34 [ 11] [ 6] [101523] +10:03:34 [ 37] [ 12] [579101015230] +10:03:34 [ 39] [ 2] [00] +10:03:34 [ 70] [ 3] [810] +10:03:34 ============================================================================ +10:03:34 Calculate Source COMM Id = 6 +10:03:34 ============================================================================ +10:03:34 + + +waiting on router queue for slot.... +10:03:43 ============================================================================ +10:03:43 Slot Id : <368> +10:03:43 Transaction Type : REQUEST +10:03:43 Received From : +10:03:43 ============================================================================ +10:03:43 FNo. Len. Field Value +10:03:43 ============================================================================ +10:03:43 [ 1] [ 4] [0200] +10:03:43 [ 2] [ 16] [2206990000065789] +10:03:43 [ 3] [ 6] [300000] +10:03:43 [ 4] [ 12] [000000000000] +10:03:43 [ 7] [ 10] [0320100339] +10:03:43 [ 11] [ 6] [708176] +10:03:43 [ 12] [ 6] [100339] +10:03:43 [ 13] [ 4] [0320] +10:03:43 [ 15] [ 4] [0320] +10:03:43 [ 18] [ 4] [6011] +10:03:43 [ 22] [ 3] [900] +10:03:43 [ 25] [ 2] [02] +10:03:43 [ 28] [ 9] [D00000000] +10:03:43 [ 32] [ 6] [621354] +10:03:43 [ 35] [ 32] [2206990000065789=970712611556621] +10:03:43 [ 37] [ 12] [507903236071] +10:03:43 [ 41] [ 8] [04003300] +10:03:43 [ 42] [ 15] [NATIVE ] +10:03:43 [ 43] [ 40] [CPS BRANCH Pakse LAO] +10:03:43 [ 49] [ 3] [418] +10:03:43 [ 52] [ 16] [4BAAB08275AC0B7A] +10:03:43 ============================================================================ +10:03:43 + + +waiting on router queue for slot.... +10:03:43 Sending to : +10:03:43 ============================================================================ +10:03:43 Sending to : +10:03:43 ============================================================================ +10:03:44 ============================================================================ +10:03:44 Slot Id : <368> +10:03:44 Transaction Type : REQUEST +10:03:44 Received From : +10:03:44 ============================================================================ +10:03:44 FNo. Len. Field Value +10:03:44 ============================================================================ +10:03:44 [ 1] [ 4] [0200] +10:03:44 [ 2] [ 16] [2206990000065789] +10:03:44 [ 3] [ 6] [300000] +10:03:44 [ 4] [ 12] [000000000000] +10:03:44 [ 7] [ 10] [0320100339] +10:03:44 [ 11] [ 6] [708176] +10:03:44 [ 12] [ 6] [100339] +10:03:44 [ 13] [ 4] [0320] +10:03:44 [ 15] [ 4] [0320] +10:03:44 [ 18] [ 4] [6011] +10:03:44 [ 22] [ 3] [900] +10:03:44 [ 25] [ 2] [02] +10:03:44 [ 28] [ 9] [D00000000] +10:03:44 [ 32] [ 6] [621354] +10:03:44 [ 35] [ 32] [2206990000065789=970712611556621] +10:03:44 [ 37] [ 12] [507903236071] +10:03:44 [ 41] [ 8] [04003300] +10:03:44 [ 42] [ 15] [NATIVE ] +10:03:44 [ 43] [ 40] [CPS BRANCH Pakse LAO] +10:03:44 [ 49] [ 3] [418] +10:03:44 [ 52] [ 16] [4BAAB08275AC0B7A] +10:03:44 ============================================================================ +10:03:44 + + +waiting on router queue for slot.... +10:03:44 Sending to : +10:03:44 ============================================================================ +10:03:44 ============================================================================ +10:03:44 Slot Id : <368> +10:03:44 Transaction Type : REQUEST +10:03:44 Received From : +10:03:44 ============================================================================ +10:03:44 FNo. Len. Field Value +10:03:44 ============================================================================ +10:03:44 [ 1] [ 4] [0200] +10:03:44 [ 2] [ 16] [2206990000065789] +10:03:44 [ 3] [ 6] [300000] +10:03:44 [ 4] [ 12] [000000000000] +10:03:44 [ 7] [ 10] [0320100339] +10:03:44 [ 11] [ 6] [708176] +10:03:44 [ 12] [ 6] [100339] +10:03:44 [ 13] [ 4] [0320] +10:03:44 [ 15] [ 4] [0320] +10:03:44 [ 18] [ 4] [6011] +10:03:44 [ 22] [ 3] [900] +10:03:44 [ 25] [ 2] [02] +10:03:44 [ 28] [ 9] [D00000000] +10:03:44 [ 32] [ 6] [621354] +10:03:44 [ 35] [ 32] [2206990000065789=970712611556621] +10:03:44 [ 37] [ 12] [507903236071] +10:03:44 [ 41] [ 8] [04003300] +10:03:44 [ 42] [ 15] [NATIVE ] +10:03:44 [ 43] [ 40] [CPS BRANCH Pakse LAO] +10:03:44 [ 49] [ 3] [418] +10:03:44 [ 52] [ 16] [A867DB343220507F] +10:03:44 ============================================================================ +10:03:44 + + +waiting on router queue for slot.... +10:03:44 Sending to : <1> +10:03:44 ============================================================================ +10:03:44 ============================================================================ +10:03:44 Slot Id : <418> +10:03:44 Transaction Type : REQUEST +10:03:44 Received From : +10:03:44 ============================================================================ +10:03:44 FNo. Len. Field Value +10:03:44 ============================================================================ +10:03:44 [ 1] [ 4] [0800] +10:03:44 [ 7] [ 10] [0320030252] +10:03:44 [ 11] [ 6] [155764] +10:03:44 [ 70] [ 3] [301] +10:03:44 ============================================================================ +10:03:44 + + +waiting on router queue for slot.... +10:03:44 Sending to : +10:03:44 ============================================================================ +10:03:44 ============================================================================ +10:03:44 Slot Id : <418> +10:03:44 Transaction Type : RESPONSE +10:03:44 Received From : +10:03:44 ============================================================================ +10:03:44 FNo. Len. Field Value +10:03:44 ============================================================================ +10:03:44 [ 1] [ 4] [0810] +10:03:44 [ 7] [ 10] [0320030252] +10:03:44 [ 11] [ 6] [155764] +10:03:44 [ 39] [ 2] [00] +10:03:44 [ 70] [ 3] [301] +10:03:44 ============================================================================ +10:03:44 Calculate Source COMM Id = 2 +10:03:44 ============================================================================ +10:03:44 + + +waiting on router queue for slot.... +10:03:45 ============================================================================ +10:03:45 Slot Id : <368> +10:03:45 Transaction Type : RESPONSE +10:03:45 Received From : +10:03:45 ============================================================================ +10:03:45 FNo. Len. Field Value +10:03:45 ============================================================================ +10:03:45 [ 1] [ 4] [0210] +10:03:45 [ 2] [ 16] [2206990000065789] +10:03:45 [ 3] [ 6] [300000] +10:03:45 [ 4] [ 12] [000000000000] +10:03:45 [ 7] [ 10] [0320100339] +10:03:45 [ 11] [ 6] [708176] +10:03:45 [ 12] [ 6] [100339] +10:03:45 [ 13] [ 4] [0320] +10:03:45 [ 15] [ 4] [0320] +10:03:45 [ 18] [ 4] [6011] +10:03:45 [ 32] [ 6] [621354] +10:03:45 [ 35] [ 32] [2206990000065789=970712611556621] +10:03:45 [ 37] [ 12] [507903236071] +10:03:45 [ 38] [ 6] [565293] +10:03:45 [ 39] [ 2] [00] +10:03:45 [ 41] [ 8] [04003300] +10:03:45 [ 49] [ 3] [418] +10:03:45 [ 54] [ 40] [0001418C0002272886000002418C000227288600] +10:03:45 ============================================================================ +10:03:45 Sending to : +10:03:45 ============================================================================ +10:03:45 + + +waiting on router queue for slot.... +10:03:47 ============================================================================ +10:03:47 Slot Id : <368> +10:03:47 Transaction Type : RESPONSE +10:03:47 Received From : +10:03:47 ============================================================================ +10:03:47 FNo. Len. Field Value +10:03:47 ============================================================================ +10:03:47 [ 1] [ 4] [0210] +10:03:47 [ 2] [ 16] [2206990000065789] +10:03:47 [ 3] [ 6] [300000] +10:03:47 [ 4] [ 12] [000000000000] +10:03:47 [ 7] [ 10] [0320100339] +10:03:47 [ 11] [ 6] [708176] +10:03:47 [ 12] [ 6] [100339] +10:03:47 [ 13] [ 4] [0320] +10:03:47 [ 15] [ 4] [0320] +10:03:47 [ 18] [ 4] [6011] +10:03:47 [ 32] [ 6] [621354] +10:03:47 [ 35] [ 32] [2206990000065789=970712611556621] +10:03:47 [ 37] [ 12] [507903236071] +10:03:47 [ 38] [ 6] [565293] +10:03:47 [ 39] [ 2] [00] +10:03:47 [ 41] [ 8] [04003300] +10:03:47 [ 49] [ 3] [418] +10:03:47 [ 54] [ 40] [0001418C0002272886000002418C000227288600] +10:03:47 ============================================================================ +10:03:47 Calculate Source COMM Id = 0 +10:03:47 ============================================================================ +10:03:47 + + +waiting on router queue for slot.... +10:03:55 ============================================================================ +10:03:55 Slot Id : <406> +10:03:55 Transaction Type : REQUEST +10:03:55 Received From : +10:03:55 ============================================================================ +10:03:55 FNo. Len. Field Value +10:03:55 ============================================================================ +10:03:55 [ 1] [ 4] [0420] +10:03:55 [ 2] [ 16] [6213545000095558] +10:03:55 [ 3] [ 6] [012000] +10:03:55 [ 4] [ 12] [000100000000] +10:03:55 [ 7] [ 10] [0320100400] +10:03:55 [ 11] [ 6] [079049] +10:03:55 [ 12] [ 6] [100400] +10:03:55 [ 13] [ 4] [0320] +10:03:55 [ 14] [ 4] [4912] +10:03:55 [ 15] [ 4] [0320] +10:03:55 [ 18] [ 4] [6011] +10:03:55 [ 22] [ 3] [900] +10:03:55 [ 25] [ 2] [02] +10:03:55 [ 28] [ 9] [C00002000] +10:03:55 [ 32] [ 6] [220699] +10:03:55 [ 35] [ 32] [6213545000095558=491212019555845] +10:03:55 [ 37] [ 12] [507900132934] +10:03:55 [ 39] [ 2] [00] +10:03:55 [ 41] [ 8] [03000100] +10:03:55 [ 42] [ 15] [APTRA ] +10:03:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:03:55 [ 49] [ 3] [418] +10:03:55 [ 90] [ 42] [020007904903201004000000022069900000000000] +10:03:55 ============================================================================ +10:03:55 + + +waiting on router queue for slot.... +10:03:55 Sending to : +10:03:55 ============================================================================ +10:04:00 ============================================================================ +10:04:00 Slot Id : <406> +10:04:00 Transaction Type : RESPONSE +10:04:00 Received From : +10:04:00 ============================================================================ +10:04:00 FNo. Len. Field Value +10:04:00 ============================================================================ +10:04:00 [ 1] [ 4] [0430] +10:04:00 [ 2] [ 16] [6213545000095558] +10:04:00 [ 3] [ 6] [012000] +10:04:00 [ 4] [ 12] [000100000000] +10:04:00 [ 7] [ 10] [0320100400] +10:04:00 [ 11] [ 6] [079049] +10:04:00 [ 12] [ 6] [100400] +10:04:00 [ 13] [ 4] [0320] +10:04:00 [ 14] [ 4] [4912] +10:04:00 [ 15] [ 4] [0320] +10:04:00 [ 18] [ 4] [6011] +10:04:00 [ 22] [ 3] [900] +10:04:00 [ 25] [ 2] [02] +10:04:00 [ 28] [ 9] [C00002000] +10:04:00 [ 32] [ 6] [220699] +10:04:00 [ 35] [ 32] [6213545000095558=491212019555845] +10:04:00 [ 37] [ 12] [507900132934] +10:04:00 [ 39] [ 2] [00] +10:04:00 [ 41] [ 8] [03000100] +10:04:00 [ 42] [ 15] [APTRA ] +10:04:00 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:04:00 [ 49] [ 3] [418] +10:04:00 [ 90] [ 42] [020007904903201004000000022069900000000000] +10:04:00 ============================================================================ +10:04:00 Calculate Source COMM Id = 1 +10:04:00 ============================================================================ +10:04:00 + + +waiting on router queue for slot.... +10:04:00 ============================================================================ +10:04:00 Slot Id : <419> +10:04:00 Transaction Type : REQUEST +10:04:00 Received From : +10:04:00 ============================================================================ +10:04:00 FNo. Len. Field Value +10:04:00 ============================================================================ +10:04:00 [ 1] [ 4] [0800] +10:04:00 [ 7] [ 10] [0320030308] +10:04:00 [ 11] [ 6] [155765] +10:04:00 [ 70] [ 3] [301] +10:04:00 ============================================================================ +10:04:00 + + +waiting on router queue for slot.... +10:04:00 Sending to : +10:04:00 ============================================================================ +10:04:00 ============================================================================ +10:04:00 Slot Id : <419> +10:04:00 Transaction Type : RESPONSE +10:04:00 Received From : +10:04:00 ============================================================================ +10:04:00 FNo. Len. Field Value +10:04:00 ============================================================================ +10:04:00 [ 1] [ 4] [0810] +10:04:00 [ 7] [ 10] [0320030308] +10:04:00 [ 11] [ 6] [155765] +10:04:00 [ 39] [ 2] [00] +10:04:00 [ 70] [ 3] [301] +10:04:00 ============================================================================ +10:04:00 Calculate Source COMM Id = 2 +10:04:00 ============================================================================ +10:04:00 + + +waiting on router queue for slot.... +10:04:05 ============================================================================ +10:04:05 Slot Id : <407> +10:04:05 Transaction Type : REQUEST +10:04:05 Received From : +10:04:05 ============================================================================ +10:04:05 FNo. Len. Field Value +10:04:05 ============================================================================ +10:04:05 [ 1] [ 4] [0800] +10:04:05 [ 2] [ 5] [02531] +10:04:05 [ 3] [ 6] [579108] +10:04:05 [ 7] [ 10] [0320030405] +10:04:05 [ 11] [ 6] [806996] +10:04:05 [ 15] [ 10] [0320030405] +10:04:05 [ 37] [ 11] [57910806996] +10:04:05 [ 70] [ 3] [001] +10:04:05 ============================================================================ +10:04:05 + + +waiting on router queue for slot.... +10:04:05 ============================================================================ +10:04:05 Slot Id : <407> +10:04:05 Transaction Type : RESPONSE +10:04:05 Received From : +10:04:05 ============================================================================ +10:04:05 FNo. Len. Field Value +10:04:05 ============================================================================ +10:04:05 [ 1] [ 4] [0810] +10:04:05 [ 7] [ 10] [0320030405] +10:04:05 [ 11] [ 6] [806996] +10:04:05 [ 15] [ 4] [0320] +10:04:05 [ 37] [ 12] [57910806996] +10:04:05 [ 39] [ 2] [00] +10:04:05 [ 70] [ 3] [001] +10:04:05 ============================================================================ +10:04:05 Sending to : +10:04:05 ============================================================================ +10:04:05 + + +waiting on router queue for slot.... +10:04:10 ============================================================================ +10:04:10 Slot Id : <380> +10:04:10 Transaction Type : REQUEST +10:04:10 Received From : +10:04:10 ============================================================================ +10:04:10 FNo. Len. Field Value +10:04:10 ============================================================================ +10:04:10 [ 1] [ 4] [0200] +10:04:10 [ 2] [ 16] [6688990602739409] +10:04:10 [ 3] [ 6] [010000] +10:04:10 [ 4] [ 12] [000050000000] +10:04:10 [ 7] [ 10] [0320030318] +10:04:10 [ 11] [ 6] [267917] +10:04:10 [ 12] [ 6] [100318] +10:04:10 [ 13] [ 4] [0320] +10:04:10 [ 14] [ 4] [4310] +10:04:10 [ 15] [ 4] [0320] +10:04:10 [ 18] [ 4] [6011] +10:04:10 [ 19] [ 3] [418] +10:04:10 [ 22] [ 3] [021] +10:04:10 [ 25] [ 2] [01] +10:04:10 [ 28] [ 9] [D00002000] +10:04:10 [ 32] [ 6] [180893] +10:04:10 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:04:10 [ 37] [ 12] [507903267917] +10:04:10 [ 41] [ 8] [0201ADD1] +10:04:10 [ 42] [ 15] [999999 ] +10:04:10 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:04:10 [ 49] [ 3] [418] +10:04:10 [ 52] [ 16] [CD7202A9461C02E4] +10:04:10 ============================================================================ +10:04:10 + + +waiting on router queue for slot.... +10:04:10 Sending to : +10:04:10 ============================================================================ +10:04:10 Sending to : +10:04:10 ============================================================================ +10:04:11 ============================================================================ +10:04:11 Slot Id : <380> +10:04:11 Transaction Type : REQUEST +10:04:11 Received From : +10:04:11 ============================================================================ +10:04:11 FNo. Len. Field Value +10:04:11 ============================================================================ +10:04:11 [ 1] [ 4] [0200] +10:04:11 [ 2] [ 16] [6688990602739409] +10:04:11 [ 3] [ 6] [010000] +10:04:11 [ 4] [ 12] [000050000000] +10:04:11 [ 7] [ 10] [0320030318] +10:04:11 [ 11] [ 6] [267917] +10:04:11 [ 12] [ 6] [100318] +10:04:11 [ 13] [ 4] [0320] +10:04:11 [ 14] [ 4] [4310] +10:04:11 [ 15] [ 4] [0320] +10:04:11 [ 18] [ 4] [6011] +10:04:11 [ 19] [ 3] [418] +10:04:11 [ 22] [ 3] [021] +10:04:11 [ 25] [ 2] [01] +10:04:11 [ 28] [ 9] [D00002000] +10:04:11 [ 32] [ 6] [180893] +10:04:11 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:04:11 [ 37] [ 12] [507903267917] +10:04:11 [ 41] [ 8] [0201ADD1] +10:04:11 [ 42] [ 15] [999999 ] +10:04:11 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:04:11 [ 49] [ 3] [418] +10:04:11 [ 52] [ 16] [CD7202A9461C02E4] +10:04:11 ============================================================================ +10:04:11 + + +waiting on router queue for slot.... +10:04:11 Sending to : +10:04:11 ============================================================================ +10:04:11 ============================================================================ +10:04:11 Slot Id : <380> +10:04:11 Transaction Type : REQUEST +10:04:11 Received From : +10:04:11 ============================================================================ +10:04:11 FNo. Len. Field Value +10:04:11 ============================================================================ +10:04:11 [ 1] [ 4] [0200] +10:04:11 [ 2] [ 16] [6688990602739409] +10:04:11 [ 3] [ 6] [010000] +10:04:11 [ 4] [ 12] [000050000000] +10:04:11 [ 7] [ 10] [0320030318] +10:04:11 [ 11] [ 6] [267917] +10:04:11 [ 12] [ 6] [100318] +10:04:11 [ 13] [ 4] [0320] +10:04:11 [ 14] [ 4] [4310] +10:04:11 [ 15] [ 4] [0320] +10:04:11 [ 18] [ 4] [6011] +10:04:11 [ 19] [ 3] [418] +10:04:11 [ 22] [ 3] [021] +10:04:11 [ 25] [ 2] [01] +10:04:11 [ 28] [ 9] [D00002000] +10:04:11 [ 32] [ 6] [180893] +10:04:11 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:04:11 [ 37] [ 12] [507903267917] +10:04:11 [ 41] [ 8] [0201ADD1] +10:04:11 [ 42] [ 15] [999999 ] +10:04:11 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:04:11 [ 49] [ 3] [418] +10:04:11 [ 52] [ 16] [6089E472DFE9D627] +10:04:11 ============================================================================ +10:04:11 + + +waiting on router queue for slot.... +10:04:11 Sending to : <0> +10:04:11 ============================================================================ +10:04:11 ============================================================================ +10:04:11 Slot Id : <380> +10:04:11 Transaction Type : RESPONSE +10:04:11 Received From : +10:04:11 ============================================================================ +10:04:11 FNo. Len. Field Value +10:04:11 ============================================================================ +10:04:11 [ 1] [ 4] [0210] +10:04:11 [ 2] [ 16] [6688990602739409] +10:04:11 [ 3] [ 6] [010000] +10:04:11 [ 4] [ 12] [000050000000] +10:04:11 [ 7] [ 10] [0320030318] +10:04:11 [ 11] [ 6] [267917] +10:04:11 [ 12] [ 6] [100318] +10:04:11 [ 13] [ 4] [0320] +10:04:11 [ 15] [ 4] [0320] +10:04:11 [ 18] [ 4] [6011] +10:04:11 [ 19] [ 3] [418] +10:04:11 [ 22] [ 3] [021] +10:04:11 [ 32] [ 6] [180893] +10:04:11 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:04:11 [ 37] [ 12] [507903267917] +10:04:11 [ 39] [ 2] [14] +10:04:11 [ 41] [ 8] [0201ADD1] +10:04:11 [ 49] [ 3] [418] +10:04:11 ============================================================================ +10:04:11 Sending to : +10:04:11 ============================================================================ +10:04:11 + + +waiting on router queue for slot.... +10:04:11 ============================================================================ +10:04:11 Slot Id : <411> +10:04:11 Transaction Type : REQUEST +10:04:11 Received From : +10:04:11 ============================================================================ +10:04:11 FNo. Len. Field Value +10:04:11 ============================================================================ +10:04:11 [ 1] [ 4] [0800] +10:04:11 [ 7] [ 10] [0320030319] +10:04:11 [ 11] [ 6] [155766] +10:04:11 [ 70] [ 3] [301] +10:04:11 ============================================================================ +10:04:11 + + +waiting on router queue for slot.... +10:04:11 Sending to : +10:04:11 ============================================================================ +10:04:11 ============================================================================ +10:04:11 Slot Id : <411> +10:04:11 Transaction Type : RESPONSE +10:04:11 Received From : +10:04:11 ============================================================================ +10:04:11 FNo. Len. Field Value +10:04:11 ============================================================================ +10:04:11 [ 1] [ 4] [0810] +10:04:11 [ 7] [ 10] [0320030319] +10:04:11 [ 11] [ 6] [155766] +10:04:11 [ 39] [ 2] [00] +10:04:11 [ 70] [ 3] [301] +10:04:11 ============================================================================ +10:04:11 Calculate Source COMM Id = 2 +10:04:11 ============================================================================ +10:04:11 + + +waiting on router queue for slot.... +10:04:12 ============================================================================ +10:04:12 Slot Id : <380> +10:04:12 Transaction Type : RESPONSE +10:04:12 Received From : +10:04:12 ============================================================================ +10:04:12 FNo. Len. Field Value +10:04:12 ============================================================================ +10:04:12 [ 1] [ 4] [0210] +10:04:12 [ 2] [ 16] [6688990602739409] +10:04:12 [ 3] [ 6] [010000] +10:04:12 [ 4] [ 12] [000050000000] +10:04:12 [ 7] [ 10] [0320030318] +10:04:12 [ 11] [ 6] [267917] +10:04:12 [ 12] [ 6] [100318] +10:04:12 [ 13] [ 4] [0320] +10:04:12 [ 15] [ 4] [0320] +10:04:12 [ 18] [ 4] [6011] +10:04:12 [ 19] [ 3] [418] +10:04:12 [ 22] [ 3] [021] +10:04:12 [ 32] [ 6] [180893] +10:04:12 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:04:12 [ 37] [ 12] [507903267917] +10:04:12 [ 39] [ 2] [14] +10:04:12 [ 41] [ 8] [0201ADD1] +10:04:12 [ 49] [ 3] [418] +10:04:12 ============================================================================ +10:04:12 Calculate Source COMM Id = 2 +10:04:12 ============================================================================ +10:04:12 + + +waiting on router queue for slot.... +10:04:12 ============================================================================ +10:04:12 Slot Id : <384> +10:04:12 Transaction Type : REQUEST +10:04:12 Received From : +10:04:12 ============================================================================ +10:04:12 FNo. Len. Field Value +10:04:12 ============================================================================ +10:04:12 [ 1] [ 4] [0200] +10:04:12 [ 2] [ 16] [6688990100941507] +10:04:12 [ 3] [ 6] [010000] +10:04:12 [ 4] [ 12] [000010000000] +10:04:12 [ 7] [ 10] [0320100408] +10:04:12 [ 11] [ 6] [708319] +10:04:12 [ 12] [ 6] [100408] +10:04:12 [ 13] [ 4] [0320] +10:04:12 [ 15] [ 4] [0320] +10:04:12 [ 18] [ 4] [6011] +10:04:12 [ 22] [ 3] [900] +10:04:12 [ 25] [ 2] [02] +10:04:12 [ 28] [ 9] [D00002000] +10:04:12 [ 32] [ 6] [621354] +10:04:12 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:04:12 [ 37] [ 12] [507904719474] +10:04:12 [ 41] [ 8] [18001000] +10:04:12 [ 42] [ 15] [NATIVE ] +10:04:12 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:04:12 [ 49] [ 3] [418] +10:04:12 [ 52] [ 16] [3B496FEB663F5696] +10:04:12 ============================================================================ +10:04:12 + + +waiting on router queue for slot.... +10:04:12 Sending to : +10:04:12 ============================================================================ +10:04:12 Sending to : +10:04:12 ============================================================================ +10:04:13 ============================================================================ +10:04:13 Slot Id : <384> +10:04:13 Transaction Type : REQUEST +10:04:13 Received From : +10:04:13 ============================================================================ +10:04:13 FNo. Len. Field Value +10:04:13 ============================================================================ +10:04:13 [ 1] [ 4] [0200] +10:04:13 [ 2] [ 16] [6688990100941507] +10:04:13 [ 3] [ 6] [010000] +10:04:13 [ 4] [ 12] [000010000000] +10:04:13 [ 7] [ 10] [0320100408] +10:04:13 [ 11] [ 6] [708319] +10:04:13 [ 12] [ 6] [100408] +10:04:13 [ 13] [ 4] [0320] +10:04:13 [ 15] [ 4] [0320] +10:04:13 [ 18] [ 4] [6011] +10:04:13 [ 22] [ 3] [900] +10:04:13 [ 25] [ 2] [02] +10:04:13 [ 28] [ 9] [D00002000] +10:04:13 [ 32] [ 6] [621354] +10:04:13 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:04:13 [ 37] [ 12] [507904719474] +10:04:13 [ 41] [ 8] [18001000] +10:04:13 [ 42] [ 15] [NATIVE ] +10:04:13 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:04:13 [ 49] [ 3] [418] +10:04:13 [ 52] [ 16] [3B496FEB663F5696] +10:04:13 ============================================================================ +10:04:13 + + +waiting on router queue for slot.... +10:04:13 Sending to : +10:04:13 ============================================================================ +10:04:13 ============================================================================ +10:04:13 Slot Id : <384> +10:04:13 Transaction Type : REQUEST +10:04:13 Received From : +10:04:13 ============================================================================ +10:04:13 FNo. Len. Field Value +10:04:13 ============================================================================ +10:04:13 [ 1] [ 4] [0200] +10:04:13 [ 2] [ 16] [6688990100941507] +10:04:13 [ 3] [ 6] [010000] +10:04:13 [ 4] [ 12] [000010000000] +10:04:13 [ 7] [ 10] [0320100408] +10:04:13 [ 11] [ 6] [708319] +10:04:13 [ 12] [ 6] [100408] +10:04:13 [ 13] [ 4] [0320] +10:04:13 [ 15] [ 4] [0320] +10:04:13 [ 18] [ 4] [6011] +10:04:13 [ 22] [ 3] [900] +10:04:13 [ 25] [ 2] [02] +10:04:13 [ 28] [ 9] [D00002000] +10:04:13 [ 32] [ 6] [621354] +10:04:13 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:04:13 [ 37] [ 12] [507904719474] +10:04:13 [ 41] [ 8] [18001000] +10:04:13 [ 42] [ 15] [NATIVE ] +10:04:13 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:04:13 [ 49] [ 3] [418] +10:04:13 [ 52] [ 16] [708A5172D2D707EC] +10:04:13 ============================================================================ +10:04:13 + + +waiting on router queue for slot.... +10:04:13 Sending to : <4> +10:04:13 ============================================================================ +10:04:14 ============================================================================ +10:04:14 Slot Id : <384> +10:04:14 Transaction Type : RESPONSE +10:04:14 Received From : +10:04:14 ============================================================================ +10:04:14 FNo. Len. Field Value +10:04:14 ============================================================================ +10:04:14 [ 1] [ 4] [0210] +10:04:14 [ 2] [ 16] [6688990100941507] +10:04:14 [ 3] [ 6] [010000] +10:04:14 [ 4] [ 12] [000010000000] +10:04:14 [ 11] [ 6] [708319] +10:04:14 [ 12] [ 6] [100408] +10:04:14 [ 15] [ 4] [0320] +10:04:14 [ 18] [ 4] [6011] +10:04:14 [ 32] [ 6] [621354] +10:04:14 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:04:14 [ 37] [ 12] [507904719474] +10:04:14 [ 38] [ 6] [265285] +10:04:14 [ 39] [ 2] [00] +10:04:14 [ 41] [ 8] [18001000] +10:04:14 [ 49] [ 3] [418] +10:04:14 [ 54] [ 20] [0002418C000010307741] +10:04:14 ============================================================================ +10:04:14 Sending to : +10:04:14 ============================================================================ +10:04:14 + + +waiting on router queue for slot.... +10:04:15 ============================================================================ +10:04:15 Slot Id : <384> +10:04:15 Transaction Type : RESPONSE +10:04:15 Received From : +10:04:15 ============================================================================ +10:04:15 FNo. Len. Field Value +10:04:15 ============================================================================ +10:04:15 [ 1] [ 4] [0210] +10:04:15 [ 2] [ 16] [6688990100941507] +10:04:15 [ 3] [ 6] [010000] +10:04:15 [ 4] [ 12] [000010000000] +10:04:15 [ 11] [ 6] [708319] +10:04:15 [ 12] [ 6] [100408] +10:04:15 [ 15] [ 4] [0320] +10:04:15 [ 18] [ 4] [6011] +10:04:15 [ 32] [ 6] [621354] +10:04:15 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:04:15 [ 37] [ 12] [507904719474] +10:04:15 [ 38] [ 6] [265285] +10:04:15 [ 39] [ 2] [00] +10:04:15 [ 41] [ 8] [18001000] +10:04:15 [ 49] [ 3] [418] +10:04:15 [ 54] [ 20] [0002418C000010307741] +10:04:15 ============================================================================ +10:04:15 Calculate Source COMM Id = 0 +10:04:15 ============================================================================ +10:04:15 + + +waiting on router queue for slot.... +10:04:29 ============================================================================ +10:04:29 Slot Id : <416> +10:04:29 Transaction Type : REQUEST +10:04:29 Received From : +10:04:29 ============================================================================ +10:04:29 FNo. Len. Field Value +10:04:29 ============================================================================ +10:04:29 [ 1] [ 4] [0800] +10:04:29 [ 7] [ 10] [0320030336] +10:04:29 [ 11] [ 6] [155767] +10:04:29 [ 70] [ 3] [301] +10:04:29 ============================================================================ +10:04:29 + + +waiting on router queue for slot.... +10:04:29 Sending to : +10:04:29 ============================================================================ +10:04:29 ============================================================================ +10:04:29 Slot Id : <416> +10:04:29 Transaction Type : RESPONSE +10:04:29 Received From : +10:04:29 ============================================================================ +10:04:29 FNo. Len. Field Value +10:04:29 ============================================================================ +10:04:29 [ 1] [ 4] [0810] +10:04:29 [ 7] [ 10] [0320030336] +10:04:29 [ 11] [ 6] [155767] +10:04:29 [ 39] [ 2] [00] +10:04:29 [ 70] [ 3] [301] +10:04:29 ============================================================================ +10:04:29 Calculate Source COMM Id = 2 +10:04:29 ============================================================================ +10:04:29 + + +waiting on router queue for slot.... +10:04:35 ============================================================================ +10:04:35 Slot Id : <401> +10:04:35 Transaction Type : REQUEST +10:04:35 Received From : +10:04:35 ============================================================================ +10:04:35 FNo. Len. Field Value +10:04:35 ============================================================================ +10:04:35 [ 1] [ 4] [0200] +10:04:35 [ 2] [ 16] [6213544001398665] +10:04:35 [ 3] [ 6] [301000] +10:04:35 [ 7] [ 10] [0320030343] +10:04:35 [ 11] [ 6] [267921] +10:04:35 [ 12] [ 6] [100343] +10:04:35 [ 13] [ 4] [0320] +10:04:35 [ 14] [ 4] [4912] +10:04:35 [ 15] [ 4] [0320] +10:04:35 [ 18] [ 4] [6011] +10:04:35 [ 19] [ 3] [418] +10:04:35 [ 22] [ 3] [021] +10:04:35 [ 25] [ 2] [01] +10:04:35 [ 32] [ 6] [180893] +10:04:35 [ 35] [ 32] [6213544001398665=491212019866808] +10:04:35 [ 37] [ 12] [507903267921] +10:04:35 [ 41] [ 8] [0221XKKM] +10:04:35 [ 42] [ 15] [999999 ] +10:04:35 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +10:04:35 [ 49] [ 3] [418] +10:04:35 [ 52] [ 16] [16707BEF2A8E18D8] +10:04:35 ============================================================================ +10:04:35 + + +waiting on router queue for slot.... +10:04:35 Sending to : +10:04:35 ============================================================================ +10:04:35 Sending to : +10:04:35 ============================================================================ +10:04:36 ============================================================================ +10:04:36 Slot Id : <401> +10:04:36 Transaction Type : REQUEST +10:04:36 Received From : +10:04:36 ============================================================================ +10:04:36 FNo. Len. Field Value +10:04:36 ============================================================================ +10:04:36 [ 1] [ 4] [0200] +10:04:36 [ 2] [ 16] [6213544001398665] +10:04:36 [ 3] [ 6] [301000] +10:04:36 [ 7] [ 10] [0320030343] +10:04:36 [ 11] [ 6] [267921] +10:04:36 [ 12] [ 6] [100343] +10:04:36 [ 13] [ 4] [0320] +10:04:36 [ 14] [ 4] [4912] +10:04:36 [ 15] [ 4] [0320] +10:04:36 [ 18] [ 4] [6011] +10:04:36 [ 19] [ 3] [418] +10:04:36 [ 22] [ 3] [021] +10:04:36 [ 25] [ 2] [01] +10:04:36 [ 32] [ 6] [180893] +10:04:36 [ 35] [ 32] [6213544001398665=491212019866808] +10:04:36 [ 37] [ 12] [507903267921] +10:04:36 [ 41] [ 8] [0221XKKM] +10:04:36 [ 42] [ 15] [999999 ] +10:04:36 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +10:04:36 [ 49] [ 3] [418] +10:04:36 [ 52] [ 16] [16707BEF2A8E18D8] +10:04:36 ============================================================================ +10:04:36 + + +waiting on router queue for slot.... +10:04:36 Sending to : +10:04:36 ============================================================================ +10:04:36 ============================================================================ +10:04:36 Slot Id : <401> +10:04:36 Transaction Type : REQUEST +10:04:36 Received From : +10:04:36 ============================================================================ +10:04:36 FNo. Len. Field Value +10:04:36 ============================================================================ +10:04:36 [ 1] [ 4] [0200] +10:04:36 [ 2] [ 16] [6213544001398665] +10:04:36 [ 3] [ 6] [301000] +10:04:36 [ 7] [ 10] [0320030343] +10:04:36 [ 11] [ 6] [267921] +10:04:36 [ 12] [ 6] [100343] +10:04:36 [ 13] [ 4] [0320] +10:04:36 [ 14] [ 4] [4912] +10:04:36 [ 15] [ 4] [0320] +10:04:36 [ 18] [ 4] [6011] +10:04:36 [ 19] [ 3] [418] +10:04:36 [ 22] [ 3] [021] +10:04:36 [ 25] [ 2] [01] +10:04:36 [ 32] [ 6] [180893] +10:04:36 [ 35] [ 32] [6213544001398665=491212019866808] +10:04:36 [ 37] [ 12] [507903267921] +10:04:36 [ 41] [ 8] [0221XKKM] +10:04:36 [ 42] [ 15] [999999 ] +10:04:36 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +10:04:36 [ 49] [ 3] [418] +10:04:36 [ 52] [ 16] [F63FE51D8667B365] +10:04:36 ============================================================================ +10:04:36 + + +waiting on router queue for slot.... +10:04:36 Sending to : <0> +10:04:36 ============================================================================ +10:04:36 ============================================================================ +10:04:36 Slot Id : <401> +10:04:36 Transaction Type : RESPONSE +10:04:36 Received From : +10:04:36 ============================================================================ +10:04:36 FNo. Len. Field Value +10:04:36 ============================================================================ +10:04:36 [ 1] [ 4] [0210] +10:04:36 [ 2] [ 16] [6213544001398665] +10:04:36 [ 3] [ 6] [301000] +10:04:36 [ 4] [ 12] [000000000000] +10:04:36 [ 7] [ 10] [0320030343] +10:04:36 [ 11] [ 6] [267921] +10:04:36 [ 12] [ 6] [100343] +10:04:36 [ 13] [ 4] [0320] +10:04:36 [ 15] [ 4] [0320] +10:04:36 [ 18] [ 4] [6011] +10:04:36 [ 19] [ 3] [418] +10:04:36 [ 32] [ 6] [180893] +10:04:36 [ 35] [ 32] [6213544001398665=491212019866808] +10:04:36 [ 37] [ 12] [507903267921] +10:04:36 [ 38] [ 6] [119386] +10:04:36 [ 39] [ 2] [00] +10:04:36 [ 41] [ 8] [0221XKKM] +10:04:36 [ 49] [ 3] [418] +10:04:36 [ 54] [ 40] [1001418C0003118508431002418C000311850843] +10:04:36 ============================================================================ +10:04:36 Sending to : +10:04:36 ============================================================================ +10:04:36 + + +waiting on router queue for slot.... +10:04:38 ============================================================================ +10:04:38 Slot Id : <401> +10:04:38 Transaction Type : RESPONSE +10:04:38 Received From : +10:04:38 ============================================================================ +10:04:38 FNo. Len. Field Value +10:04:38 ============================================================================ +10:04:38 [ 1] [ 4] [0210] +10:04:38 [ 2] [ 16] [6213544001398665] +10:04:38 [ 3] [ 6] [301000] +10:04:38 [ 4] [ 12] [000000000000] +10:04:38 [ 7] [ 10] [0320030343] +10:04:38 [ 11] [ 6] [267921] +10:04:38 [ 12] [ 6] [100343] +10:04:38 [ 13] [ 4] [0320] +10:04:38 [ 15] [ 4] [0320] +10:04:38 [ 18] [ 4] [6011] +10:04:38 [ 19] [ 3] [418] +10:04:38 [ 32] [ 6] [180893] +10:04:38 [ 35] [ 32] [6213544001398665=491212019866808] +10:04:38 [ 37] [ 12] [507903267921] +10:04:38 [ 38] [ 6] [119386] +10:04:38 [ 39] [ 2] [00] +10:04:38 [ 41] [ 8] [0221XKKM] +10:04:38 [ 49] [ 3] [418] +10:04:38 [ 54] [ 40] [1001418C0003118508431002418C000311850843] +10:04:38 ============================================================================ +10:04:38 Calculate Source COMM Id = 2 +10:04:38 ============================================================================ +10:04:38 + + +waiting on router queue for slot.... +10:04:39 ============================================================================ +10:04:39 Slot Id : <420> +10:04:39 Transaction Type : REQUEST +10:04:39 Received From : +10:04:39 ============================================================================ +10:04:39 FNo. Len. Field Value +10:04:39 ============================================================================ +10:04:39 [ 1] [ 4] [0800] +10:04:39 [ 7] [ 10] [0320171628] +10:04:39 [ 11] [ 6] [101628] +10:04:39 [ 37] [ 12] [57910101628] +10:04:39 [ 70] [ 3] [301] +10:04:39 ============================================================================ +10:04:39 + + +waiting on router queue for slot.... +10:04:39 Sending to : +10:04:39 ============================================================================ +10:04:39 ============================================================================ +10:04:39 Slot Id : <420> +10:04:39 Transaction Type : RESPONSE +10:04:39 Received From : +10:04:39 ============================================================================ +10:04:39 FNo. Len. Field Value +10:04:39 ============================================================================ +10:04:39 [ 1] [ 4] [0810] +10:04:39 [ 7] [ 10] [0320171628] +10:04:39 [ 11] [ 6] [101628] +10:04:39 [ 37] [ 12] [579101016280] +10:04:39 [ 39] [ 2] [00] +10:04:39 [ 70] [ 3] [810] +10:04:39 ============================================================================ +10:04:39 Calculate Source COMM Id = 6 +10:04:39 ============================================================================ +10:04:39 + + +waiting on router queue for slot.... +10:04:49 ============================================================================ +10:04:49 Slot Id : <381> +10:04:49 Transaction Type : REQUEST +10:04:49 Received From : +10:04:49 ============================================================================ +10:04:49 FNo. Len. Field Value +10:04:49 ============================================================================ +10:04:49 [ 1] [ 4] [0800] +10:04:49 [ 7] [ 10] [0320030357] +10:04:49 [ 11] [ 6] [155768] +10:04:49 [ 70] [ 3] [301] +10:04:49 ============================================================================ +10:04:49 + + +waiting on router queue for slot.... +10:04:49 Sending to : +10:04:49 ============================================================================ +10:04:49 ============================================================================ +10:04:49 Slot Id : <381> +10:04:49 Transaction Type : RESPONSE +10:04:49 Received From : +10:04:49 ============================================================================ +10:04:49 FNo. Len. Field Value +10:04:49 ============================================================================ +10:04:49 [ 1] [ 4] [0810] +10:04:49 [ 7] [ 10] [0320030357] +10:04:49 [ 11] [ 6] [155768] +10:04:49 [ 39] [ 2] [00] +10:04:49 [ 70] [ 3] [301] +10:04:49 ============================================================================ +10:04:49 Calculate Source COMM Id = 2 +10:04:49 ============================================================================ +10:04:49 + + +waiting on router queue for slot.... +10:04:54 ============================================================================ +10:04:54 Slot Id : <415> +10:04:54 Transaction Type : REQUEST +10:04:54 Received From : +10:04:54 ============================================================================ +10:04:54 FNo. Len. Field Value +10:04:54 ============================================================================ +10:04:54 [ 1] [ 4] [0800] +10:04:54 [ 7] [ 10] [0320031242] +10:04:54 [ 11] [ 6] [088308] +10:04:54 [ 37] [ 12] [57910088308] +10:04:54 [ 70] [ 3] [301] +10:04:54 ============================================================================ +10:04:54 + + +waiting on router queue for slot.... +10:04:54 Sending to : +10:04:54 ============================================================================ +10:04:54 ============================================================================ +10:04:54 Slot Id : <415> +10:04:54 Transaction Type : RESPONSE +10:04:54 Received From : +10:04:54 ============================================================================ +10:04:54 FNo. Len. Field Value +10:04:54 ============================================================================ +10:04:54 [ 1] [ 4] [0810] +10:04:54 [ 7] [ 10] [0320031242] +10:04:54 [ 11] [ 6] [088308] +10:04:54 [ 37] [ 12] [579100883080] +10:04:54 [ 39] [ 2] [00] +10:04:54 [ 70] [ 3] [810] +10:04:54 ============================================================================ +10:04:54 Calculate Source COMM Id = 1 +10:04:54 ============================================================================ +10:04:54 + + +waiting on router queue for slot.... +10:05:01 ============================================================================ +10:05:01 Slot Id : <398> +10:05:01 Transaction Type : REQUEST +10:05:01 Received From : +10:05:01 ============================================================================ +10:05:01 FNo. Len. Field Value +10:05:01 ============================================================================ +10:05:01 [ 1] [ 4] [0800] +10:05:01 [ 7] [ 10] [0320030408] +10:05:01 [ 11] [ 6] [155769] +10:05:01 [ 70] [ 3] [301] +10:05:01 ============================================================================ +10:05:01 + + +waiting on router queue for slot.... +10:05:01 Sending to : +10:05:01 ============================================================================ +10:05:01 ============================================================================ +10:05:01 Slot Id : <398> +10:05:01 Transaction Type : RESPONSE +10:05:01 Received From : +10:05:01 ============================================================================ +10:05:01 FNo. Len. Field Value +10:05:01 ============================================================================ +10:05:01 [ 1] [ 4] [0810] +10:05:01 [ 7] [ 10] [0320030408] +10:05:01 [ 11] [ 6] [155769] +10:05:01 [ 39] [ 2] [00] +10:05:01 [ 70] [ 3] [301] +10:05:01 ============================================================================ +10:05:01 Calculate Source COMM Id = 2 +10:05:01 ============================================================================ +10:05:01 + + +waiting on router queue for slot.... +10:05:07 ============================================================================ +10:05:07 Slot Id : <433> +10:05:07 Transaction Type : REQUEST +10:05:07 Received From : +10:05:07 ============================================================================ +10:05:07 FNo. Len. Field Value +10:05:07 ============================================================================ +10:05:07 [ 1] [ 4] [0800] +10:05:07 [ 2] [ 5] [02531] +10:05:07 [ 3] [ 6] [579108] +10:05:07 [ 7] [ 10] [0320030507] +10:05:07 [ 11] [ 6] [806997] +10:05:07 [ 15] [ 10] [0320030507] +10:05:07 [ 37] [ 11] [57910806997] +10:05:07 [ 70] [ 3] [001] +10:05:07 ============================================================================ +10:05:07 + + +waiting on router queue for slot.... +10:05:07 ============================================================================ +10:05:07 Slot Id : <433> +10:05:07 Transaction Type : RESPONSE +10:05:07 Received From : +10:05:07 ============================================================================ +10:05:07 FNo. Len. Field Value +10:05:07 ============================================================================ +10:05:07 [ 1] [ 4] [0810] +10:05:07 [ 7] [ 10] [0320030507] +10:05:07 [ 11] [ 6] [806997] +10:05:07 [ 15] [ 4] [0320] +10:05:07 [ 37] [ 12] [57910806997] +10:05:07 [ 39] [ 2] [00] +10:05:07 [ 70] [ 3] [001] +10:05:07 ============================================================================ +10:05:07 Sending to : +10:05:07 ============================================================================ +10:05:07 + + +waiting on router queue for slot.... +10:05:07 ============================================================================ +10:05:07 Slot Id : <425> +10:05:07 Transaction Type : REQUEST +10:05:07 Received From : +10:05:07 ============================================================================ +10:05:07 FNo. Len. Field Value +10:05:07 ============================================================================ +10:05:07 [ 1] [ 4] [0200] +10:05:07 [ 2] [ 16] [6688990040015834] +10:05:07 [ 3] [ 6] [302000] +10:05:07 [ 4] [ 12] [000000000000] +10:05:07 [ 7] [ 10] [0320100503] +10:05:07 [ 11] [ 6] [708575] +10:05:07 [ 12] [ 6] [100503] +10:05:07 [ 13] [ 4] [0320] +10:05:07 [ 15] [ 4] [0320] +10:05:07 [ 18] [ 4] [6011] +10:05:07 [ 22] [ 3] [900] +10:05:07 [ 25] [ 2] [02] +10:05:07 [ 28] [ 9] [D00000000] +10:05:07 [ 32] [ 6] [621354] +10:05:07 [ 35] [ 37] [6688990040015834=97101261241744200000] +10:05:07 [ 37] [ 12] [507904100469] +10:05:07 [ 41] [ 8] [08000700] +10:05:07 [ 42] [ 15] [NATIVE ] +10:05:07 [ 43] [ 40] [Attapeu Branch03 Samakyxay LAO] +10:05:07 [ 49] [ 3] [418] +10:05:07 [ 52] [ 16] [F0E76E5DE2EADA88] +10:05:07 ============================================================================ +10:05:07 + + +waiting on router queue for slot.... +10:05:07 Sending to : +10:05:07 ============================================================================ +10:05:07 Sending to : +10:05:07 ============================================================================ +10:05:07 ============================================================================ +10:05:07 Slot Id : <425> +10:05:07 Transaction Type : REQUEST +10:05:07 Received From : +10:05:07 ============================================================================ +10:05:07 FNo. Len. Field Value +10:05:07 ============================================================================ +10:05:07 [ 1] [ 4] [0200] +10:05:07 [ 2] [ 16] [6688990040015834] +10:05:07 [ 3] [ 6] [302000] +10:05:07 [ 4] [ 12] [000000000000] +10:05:07 [ 7] [ 10] [0320100503] +10:05:07 [ 11] [ 6] [708575] +10:05:07 [ 12] [ 6] [100503] +10:05:07 [ 13] [ 4] [0320] +10:05:07 [ 15] [ 4] [0320] +10:05:07 [ 18] [ 4] [6011] +10:05:07 [ 22] [ 3] [900] +10:05:07 [ 25] [ 2] [02] +10:05:07 [ 28] [ 9] [D00000000] +10:05:07 [ 32] [ 6] [621354] +10:05:07 [ 35] [ 37] [6688990040015834=97101261241744200000] +10:05:07 [ 37] [ 12] [507904100469] +10:05:07 [ 41] [ 8] [08000700] +10:05:07 [ 42] [ 15] [NATIVE ] +10:05:07 [ 43] [ 40] [Attapeu Branch03 Samakyxay LAO] +10:05:07 [ 49] [ 3] [418] +10:05:07 [ 52] [ 16] [F0E76E5DE2EADA88] +10:05:07 ============================================================================ +10:05:07 + + +waiting on router queue for slot.... +10:05:07 Sending to : +10:05:07 ============================================================================ +10:05:07 ============================================================================ +10:05:07 Slot Id : <425> +10:05:07 Transaction Type : REQUEST +10:05:07 Received From : +10:05:07 ============================================================================ +10:05:07 FNo. Len. Field Value +10:05:07 ============================================================================ +10:05:07 [ 1] [ 4] [0200] +10:05:07 [ 2] [ 16] [6688990040015834] +10:05:07 [ 3] [ 6] [302000] +10:05:07 [ 4] [ 12] [000000000000] +10:05:07 [ 7] [ 10] [0320100503] +10:05:07 [ 11] [ 6] [708575] +10:05:07 [ 12] [ 6] [100503] +10:05:07 [ 13] [ 4] [0320] +10:05:07 [ 15] [ 4] [0320] +10:05:07 [ 18] [ 4] [6011] +10:05:07 [ 22] [ 3] [900] +10:05:07 [ 25] [ 2] [02] +10:05:07 [ 28] [ 9] [D00000000] +10:05:07 [ 32] [ 6] [621354] +10:05:07 [ 35] [ 37] [6688990040015834=97101261241744200000] +10:05:07 [ 37] [ 12] [507904100469] +10:05:07 [ 41] [ 8] [08000700] +10:05:07 [ 42] [ 15] [NATIVE ] +10:05:07 [ 43] [ 40] [Attapeu Branch03 Samakyxay LAO] +10:05:07 [ 49] [ 3] [418] +10:05:07 [ 52] [ 16] [06312690FE10F161] +10:05:07 ============================================================================ +10:05:07 + + +waiting on router queue for slot.... +10:05:07 Sending to : <4> +10:05:07 ============================================================================ +10:05:08 ============================================================================ +10:05:08 Slot Id : <425> +10:05:08 Transaction Type : RESPONSE +10:05:08 Received From : +10:05:08 ============================================================================ +10:05:08 FNo. Len. Field Value +10:05:08 ============================================================================ +10:05:08 [ 1] [ 4] [0210] +10:05:08 [ 2] [ 16] [6688990040015834] +10:05:08 [ 3] [ 6] [302000] +10:05:08 [ 4] [ 12] [000000000000] +10:05:08 [ 7] [ 10] [0320100503] +10:05:08 [ 11] [ 6] [708575] +10:05:08 [ 12] [ 6] [100503] +10:05:08 [ 13] [ 4] [0320] +10:05:08 [ 15] [ 4] [0320] +10:05:08 [ 18] [ 4] [6011] +10:05:08 [ 22] [ 3] [021] +10:05:08 [ 32] [ 6] [621354] +10:05:08 [ 35] [ 37] [6688990040015834=97101261241744200000] +10:05:08 [ 37] [ 12] [507904100469] +10:05:08 [ 38] [ 6] [100259] +10:05:08 [ 39] [ 2] [55] +10:05:08 [ 41] [ 8] [08000700] +10:05:08 [ 49] [ 3] [418] +10:05:08 ============================================================================ +10:05:08 Sending to : +10:05:08 ============================================================================ +10:05:08 + + +waiting on router queue for slot.... +10:05:09 ============================================================================ +10:05:09 Slot Id : <425> +10:05:09 Transaction Type : RESPONSE +10:05:09 Received From : +10:05:09 ============================================================================ +10:05:09 FNo. Len. Field Value +10:05:09 ============================================================================ +10:05:09 [ 1] [ 4] [0210] +10:05:09 [ 2] [ 16] [6688990040015834] +10:05:09 [ 3] [ 6] [302000] +10:05:09 [ 4] [ 12] [000000000000] +10:05:09 [ 7] [ 10] [0320100503] +10:05:09 [ 11] [ 6] [708575] +10:05:09 [ 12] [ 6] [100503] +10:05:09 [ 13] [ 4] [0320] +10:05:09 [ 15] [ 4] [0320] +10:05:09 [ 18] [ 4] [6011] +10:05:09 [ 22] [ 3] [021] +10:05:09 [ 32] [ 6] [621354] +10:05:09 [ 35] [ 37] [6688990040015834=97101261241744200000] +10:05:09 [ 37] [ 12] [507904100469] +10:05:09 [ 38] [ 6] [100259] +10:05:09 [ 39] [ 2] [55] +10:05:09 [ 41] [ 8] [08000700] +10:05:09 [ 49] [ 3] [418] +10:05:09 ============================================================================ +10:05:09 Calculate Source COMM Id = 0 +10:05:09 ============================================================================ +10:05:09 + + +waiting on router queue for slot.... +10:05:12 ============================================================================ +10:05:12 Slot Id : <364> +10:05:12 Transaction Type : REQUEST +10:05:12 Received From : +10:05:12 ============================================================================ +10:05:12 FNo. Len. Field Value +10:05:12 ============================================================================ +10:05:12 [ 0] [ 4] [0420] +10:05:12 [ 1] [ 4] [0420] +10:05:12 [ 2] [ 16] [6213545000095558] +10:05:12 [ 3] [ 6] [012000] +10:05:12 [ 4] [ 12] [000100000000] +10:05:12 [ 6] [ 12] [000100000000] +10:05:12 [ 7] [ 10] [0320100400] +10:05:12 [ 11] [ 6] [079049] +10:05:12 [ 12] [ 6] [100400] +10:05:12 [ 13] [ 4] [0320] +10:05:12 [ 14] [ 4] [4912] +10:05:12 [ 15] [ 4] [0320] +10:05:12 [ 18] [ 4] [6011] +10:05:12 [ 22] [ 3] [900] +10:05:12 [ 25] [ 2] [02] +10:05:12 [ 28] [ 9] [D00002000] +10:05:12 [ 32] [ 6] [220699] +10:05:12 [ 35] [ 32] [6213545000095558=491212019555845] +10:05:12 [ 37] [ 12] [507900132934] +10:05:12 [ 39] [ 2] [00] +10:05:12 [ 41] [ 8] [03000100] +10:05:12 [ 42] [ 15] [APTRA ] +10:05:12 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:05:12 [ 49] [ 3] [418] +10:05:12 [ 52] [ 16] [AD7CDC6763B1A95B] +10:05:12 ============================================================================ +10:05:12 + + +waiting on router queue for slot.... +10:05:12 ============================================================================ +10:05:12 Slot Id : <364> +10:05:12 Transaction Type : RESPONSE +10:05:12 Received From : +10:05:12 ============================================================================ +10:05:12 FNo. Len. Field Value +10:05:12 ============================================================================ +10:05:12 [ 1] [ 4] [0430] +10:05:12 [ 2] [ 16] [6213545000095558] +10:05:12 [ 3] [ 6] [012000] +10:05:12 [ 4] [ 12] [000100000000] +10:05:12 [ 7] [ 10] [0320100400] +10:05:12 [ 11] [ 6] [079049] +10:05:12 [ 32] [ 6] [220699] +10:05:12 [ 35] [ 32] [6213545000095558=491212019555845] +10:05:12 [ 37] [ 12] [507900132934] +10:05:12 [ 39] [ 2] [00] +10:05:12 [ 41] [ 8] [03000100] +10:05:12 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:05:12 [ 49] [ 3] [418] +10:05:12 [ 90] [ 42] [020007904903201004000000022069900000000000] +10:05:12 ============================================================================ +10:05:12 Successfully send the slot [364] To REVERSAL Process +10:05:12 + + +waiting on router queue for slot.... +10:05:16 ============================================================================ +10:05:16 Slot Id : <388> +10:05:16 Transaction Type : REQUEST +10:05:16 Received From : +10:05:16 ============================================================================ +10:05:16 FNo. Len. Field Value +10:05:16 ============================================================================ +10:05:16 [ 1] [ 4] [0800] +10:05:16 [ 7] [ 10] [0320030424] +10:05:16 [ 11] [ 6] [155770] +10:05:16 [ 70] [ 3] [301] +10:05:16 ============================================================================ +10:05:16 + + +waiting on router queue for slot.... +10:05:16 Sending to : +10:05:16 ============================================================================ +10:05:16 ============================================================================ +10:05:16 Slot Id : <388> +10:05:16 Transaction Type : RESPONSE +10:05:16 Received From : +10:05:16 ============================================================================ +10:05:16 FNo. Len. Field Value +10:05:16 ============================================================================ +10:05:16 [ 1] [ 4] [0810] +10:05:16 [ 7] [ 10] [0320030424] +10:05:16 [ 11] [ 6] [155770] +10:05:16 [ 39] [ 2] [00] +10:05:16 [ 70] [ 3] [301] +10:05:16 ============================================================================ +10:05:16 Calculate Source COMM Id = 2 +10:05:16 ============================================================================ +10:05:16 + + +waiting on router queue for slot.... +10:05:31 ============================================================================ +10:05:31 Slot Id : <430> +10:05:31 Transaction Type : REQUEST +10:05:31 Received From : +10:05:31 ============================================================================ +10:05:31 FNo. Len. Field Value +10:05:31 ============================================================================ +10:05:31 [ 1] [ 4] [0200] +10:05:31 [ 2] [ 16] [6688990100941507] +10:05:31 [ 3] [ 6] [010000] +10:05:31 [ 4] [ 12] [000005000000] +10:05:31 [ 7] [ 10] [0320100527] +10:05:31 [ 11] [ 6] [708683] +10:05:31 [ 12] [ 6] [100527] +10:05:31 [ 13] [ 4] [0320] +10:05:31 [ 15] [ 4] [0320] +10:05:31 [ 18] [ 4] [6011] +10:05:31 [ 22] [ 3] [900] +10:05:31 [ 25] [ 2] [02] +10:05:31 [ 28] [ 9] [D00002000] +10:05:31 [ 32] [ 6] [621354] +10:05:31 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:05:31 [ 37] [ 12] [507904719476] +10:05:31 [ 41] [ 8] [18001000] +10:05:31 [ 42] [ 15] [NATIVE ] +10:05:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:05:31 [ 49] [ 3] [418] +10:05:31 [ 52] [ 16] [3B496FEB663F5696] +10:05:31 ============================================================================ +10:05:31 + + +waiting on router queue for slot.... +10:05:31 Sending to : +10:05:31 ============================================================================ +10:05:31 Sending to : +10:05:31 ============================================================================ +10:05:31 ============================================================================ +10:05:31 Slot Id : <430> +10:05:31 Transaction Type : REQUEST +10:05:31 Received From : +10:05:31 ============================================================================ +10:05:31 FNo. Len. Field Value +10:05:31 ============================================================================ +10:05:31 [ 1] [ 4] [0200] +10:05:31 [ 2] [ 16] [6688990100941507] +10:05:31 [ 3] [ 6] [010000] +10:05:31 [ 4] [ 12] [000005000000] +10:05:31 [ 7] [ 10] [0320100527] +10:05:31 [ 11] [ 6] [708683] +10:05:31 [ 12] [ 6] [100527] +10:05:31 [ 13] [ 4] [0320] +10:05:31 [ 15] [ 4] [0320] +10:05:31 [ 18] [ 4] [6011] +10:05:31 [ 22] [ 3] [900] +10:05:31 [ 25] [ 2] [02] +10:05:31 [ 28] [ 9] [D00002000] +10:05:31 [ 32] [ 6] [621354] +10:05:31 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:05:31 [ 37] [ 12] [507904719476] +10:05:31 [ 41] [ 8] [18001000] +10:05:31 [ 42] [ 15] [NATIVE ] +10:05:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:05:31 [ 49] [ 3] [418] +10:05:31 [ 52] [ 16] [3B496FEB663F5696] +10:05:31 ============================================================================ +10:05:31 + + +waiting on router queue for slot.... +10:05:31 Sending to : +10:05:31 ============================================================================ +10:05:31 ============================================================================ +10:05:31 Slot Id : <430> +10:05:31 Transaction Type : REQUEST +10:05:31 Received From : +10:05:31 ============================================================================ +10:05:31 FNo. Len. Field Value +10:05:31 ============================================================================ +10:05:31 [ 1] [ 4] [0200] +10:05:31 [ 2] [ 16] [6688990100941507] +10:05:31 [ 3] [ 6] [010000] +10:05:31 [ 4] [ 12] [000005000000] +10:05:31 [ 7] [ 10] [0320100527] +10:05:31 [ 11] [ 6] [708683] +10:05:31 [ 12] [ 6] [100527] +10:05:31 [ 13] [ 4] [0320] +10:05:31 [ 15] [ 4] [0320] +10:05:31 [ 18] [ 4] [6011] +10:05:31 [ 22] [ 3] [900] +10:05:31 [ 25] [ 2] [02] +10:05:31 [ 28] [ 9] [D00002000] +10:05:31 [ 32] [ 6] [621354] +10:05:31 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:05:31 [ 37] [ 12] [507904719476] +10:05:31 [ 41] [ 8] [18001000] +10:05:31 [ 42] [ 15] [NATIVE ] +10:05:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:05:31 [ 49] [ 3] [418] +10:05:31 [ 52] [ 16] [708A5172D2D707EC] +10:05:31 ============================================================================ +10:05:31 + + +waiting on router queue for slot.... +10:05:31 Sending to : <4> +10:05:31 ============================================================================ +10:05:32 ============================================================================ +10:05:32 Slot Id : <367> +10:05:32 Transaction Type : REQUEST +10:05:32 Received From : +10:05:32 ============================================================================ +10:05:32 FNo. Len. Field Value +10:05:32 ============================================================================ +10:05:32 [ 1] [ 4] [0800] +10:05:32 [ 7] [ 10] [0320030440] +10:05:32 [ 11] [ 6] [155771] +10:05:32 [ 70] [ 3] [301] +10:05:32 ============================================================================ +10:05:32 + + +waiting on router queue for slot.... +10:05:32 Sending to : +10:05:32 ============================================================================ +10:05:32 ============================================================================ +10:05:32 Slot Id : <367> +10:05:32 Transaction Type : RESPONSE +10:05:32 Received From : +10:05:32 ============================================================================ +10:05:32 FNo. Len. Field Value +10:05:32 ============================================================================ +10:05:32 [ 1] [ 4] [0810] +10:05:32 [ 7] [ 10] [0320030440] +10:05:32 [ 11] [ 6] [155771] +10:05:32 [ 39] [ 2] [00] +10:05:32 [ 70] [ 3] [301] +10:05:32 ============================================================================ +10:05:32 Calculate Source COMM Id = 2 +10:05:32 ============================================================================ +10:05:32 + + +waiting on router queue for slot.... +10:05:32 ============================================================================ +10:05:32 Slot Id : <430> +10:05:32 Transaction Type : RESPONSE +10:05:32 Received From : +10:05:32 ============================================================================ +10:05:32 FNo. Len. Field Value +10:05:32 ============================================================================ +10:05:32 [ 1] [ 4] [0210] +10:05:32 [ 2] [ 16] [6688990100941507] +10:05:32 [ 3] [ 6] [010000] +10:05:32 [ 4] [ 12] [000005000000] +10:05:32 [ 11] [ 6] [708683] +10:05:32 [ 12] [ 6] [100527] +10:05:32 [ 15] [ 4] [0320] +10:05:32 [ 18] [ 4] [6011] +10:05:32 [ 32] [ 6] [621354] +10:05:32 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:05:32 [ 37] [ 12] [507904719476] +10:05:32 [ 38] [ 6] [582619] +10:05:32 [ 39] [ 2] [00] +10:05:32 [ 41] [ 8] [18001000] +10:05:32 [ 49] [ 3] [418] +10:05:32 [ 54] [ 20] [0002418C000005107741] +10:05:32 ============================================================================ +10:05:32 Sending to : +10:05:32 ============================================================================ +10:05:32 + + +waiting on router queue for slot.... +10:05:33 ============================================================================ +10:05:33 Slot Id : <441> +10:05:33 Transaction Type : REQUEST +10:05:33 Received From : +10:05:33 ============================================================================ +10:05:33 FNo. Len. Field Value +10:05:33 ============================================================================ +10:05:33 [ 1] [ 4] [0200] +10:05:33 [ 2] [ 16] [6213544001398665] +10:05:33 [ 3] [ 6] [010000] +10:05:33 [ 4] [ 12] [000010000000] +10:05:33 [ 7] [ 10] [0320030440] +10:05:33 [ 11] [ 6] [267929] +10:05:33 [ 12] [ 6] [100440] +10:05:33 [ 13] [ 4] [0320] +10:05:33 [ 14] [ 4] [4912] +10:05:33 [ 15] [ 4] [0320] +10:05:33 [ 18] [ 4] [6011] +10:05:33 [ 19] [ 3] [418] +10:05:33 [ 22] [ 3] [021] +10:05:33 [ 25] [ 2] [01] +10:05:33 [ 28] [ 9] [D00002000] +10:05:33 [ 32] [ 6] [180893] +10:05:33 [ 35] [ 32] [6213544001398665=491212019866808] +10:05:33 [ 37] [ 12] [507903267929] +10:05:33 [ 41] [ 8] [0221XKKM] +10:05:33 [ 42] [ 15] [999999 ] +10:05:33 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +10:05:33 [ 49] [ 3] [418] +10:05:33 [ 52] [ 16] [16707BEF2A8E18D8] +10:05:33 ============================================================================ +10:05:33 + + +waiting on router queue for slot.... +10:05:33 Sending to : +10:05:33 ============================================================================ +10:05:33 Sending to : +10:05:33 ============================================================================ +10:05:33 ============================================================================ +10:05:33 Slot Id : <441> +10:05:33 Transaction Type : REQUEST +10:05:33 Received From : +10:05:33 ============================================================================ +10:05:33 FNo. Len. Field Value +10:05:33 ============================================================================ +10:05:33 [ 1] [ 4] [0200] +10:05:33 [ 2] [ 16] [6213544001398665] +10:05:33 [ 3] [ 6] [010000] +10:05:33 [ 4] [ 12] [000010000000] +10:05:33 [ 7] [ 10] [0320030440] +10:05:33 [ 11] [ 6] [267929] +10:05:33 [ 12] [ 6] [100440] +10:05:33 [ 13] [ 4] [0320] +10:05:33 [ 14] [ 4] [4912] +10:05:33 [ 15] [ 4] [0320] +10:05:33 [ 18] [ 4] [6011] +10:05:33 [ 19] [ 3] [418] +10:05:33 [ 22] [ 3] [021] +10:05:33 [ 25] [ 2] [01] +10:05:33 [ 28] [ 9] [D00002000] +10:05:33 [ 32] [ 6] [180893] +10:05:33 [ 35] [ 32] [6213544001398665=491212019866808] +10:05:33 [ 37] [ 12] [507903267929] +10:05:33 [ 41] [ 8] [0221XKKM] +10:05:33 [ 42] [ 15] [999999 ] +10:05:33 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +10:05:33 [ 49] [ 3] [418] +10:05:33 [ 52] [ 16] [16707BEF2A8E18D8] +10:05:33 ============================================================================ +10:05:33 + + +waiting on router queue for slot.... +10:05:33 Sending to : +10:05:33 ============================================================================ +10:05:33 ============================================================================ +10:05:33 Slot Id : <441> +10:05:33 Transaction Type : REQUEST +10:05:33 Received From : +10:05:33 ============================================================================ +10:05:33 FNo. Len. Field Value +10:05:33 ============================================================================ +10:05:33 [ 1] [ 4] [0200] +10:05:33 [ 2] [ 16] [6213544001398665] +10:05:33 [ 3] [ 6] [010000] +10:05:33 [ 4] [ 12] [000010000000] +10:05:33 [ 7] [ 10] [0320030440] +10:05:33 [ 11] [ 6] [267929] +10:05:33 [ 12] [ 6] [100440] +10:05:33 [ 13] [ 4] [0320] +10:05:33 [ 14] [ 4] [4912] +10:05:33 [ 15] [ 4] [0320] +10:05:33 [ 18] [ 4] [6011] +10:05:33 [ 19] [ 3] [418] +10:05:33 [ 22] [ 3] [021] +10:05:33 [ 25] [ 2] [01] +10:05:33 [ 28] [ 9] [D00002000] +10:05:33 [ 32] [ 6] [180893] +10:05:33 [ 35] [ 32] [6213544001398665=491212019866808] +10:05:33 [ 37] [ 12] [507903267929] +10:05:33 [ 41] [ 8] [0221XKKM] +10:05:33 [ 42] [ 15] [999999 ] +10:05:33 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +10:05:33 [ 49] [ 3] [418] +10:05:33 [ 52] [ 16] [F63FE51D8667B365] +10:05:33 ============================================================================ +10:05:33 + + +waiting on router queue for slot.... +10:05:33 Sending to : <0> +10:05:33 ============================================================================ +10:05:34 ============================================================================ +10:05:34 Slot Id : <430> +10:05:34 Transaction Type : RESPONSE +10:05:34 Received From : +10:05:34 ============================================================================ +10:05:34 FNo. Len. Field Value +10:05:34 ============================================================================ +10:05:34 [ 1] [ 4] [0210] +10:05:34 [ 2] [ 16] [6688990100941507] +10:05:34 [ 3] [ 6] [010000] +10:05:34 [ 4] [ 12] [000005000000] +10:05:34 [ 11] [ 6] [708683] +10:05:34 [ 12] [ 6] [100527] +10:05:34 [ 15] [ 4] [0320] +10:05:34 [ 18] [ 4] [6011] +10:05:34 [ 32] [ 6] [621354] +10:05:34 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:05:34 [ 37] [ 12] [507904719476] +10:05:34 [ 38] [ 6] [582619] +10:05:34 [ 39] [ 2] [00] +10:05:34 [ 41] [ 8] [18001000] +10:05:34 [ 49] [ 3] [418] +10:05:34 [ 54] [ 20] [0002418C000005107741] +10:05:34 ============================================================================ +10:05:34 Calculate Source COMM Id = 0 +10:05:34 ============================================================================ +10:05:34 + + +waiting on router queue for slot.... +10:05:34 ============================================================================ +10:05:34 Slot Id : <441> +10:05:34 Transaction Type : RESPONSE +10:05:34 Received From : +10:05:34 ============================================================================ +10:05:34 FNo. Len. Field Value +10:05:34 ============================================================================ +10:05:34 [ 1] [ 4] [0210] +10:05:34 [ 2] [ 16] [6213544001398665] +10:05:34 [ 3] [ 6] [010000] +10:05:34 [ 4] [ 12] [000010000000] +10:05:34 [ 7] [ 10] [0320030440] +10:05:34 [ 11] [ 6] [267929] +10:05:34 [ 12] [ 6] [100440] +10:05:34 [ 13] [ 4] [0320] +10:05:34 [ 15] [ 4] [0320] +10:05:34 [ 18] [ 4] [6011] +10:05:34 [ 19] [ 3] [418] +10:05:34 [ 32] [ 6] [180893] +10:05:34 [ 35] [ 32] [6213544001398665=491212019866808] +10:05:34 [ 37] [ 12] [507903267929] +10:05:34 [ 38] [ 6] [757224] +10:05:34 [ 39] [ 2] [00] +10:05:34 [ 41] [ 8] [0221XKKM] +10:05:34 [ 49] [ 3] [418] +10:05:34 [ 54] [ 40] [0001418C0003016508430002418C000301650843] +10:05:34 ============================================================================ +10:05:34 Sending to : +10:05:34 ============================================================================ +10:05:34 + + +waiting on router queue for slot.... +10:05:35 ============================================================================ +10:05:35 Slot Id : <409> +10:05:35 Transaction Type : REQUEST +10:05:35 Received From : +10:05:35 ============================================================================ +10:05:35 FNo. Len. Field Value +10:05:35 ============================================================================ +10:05:35 [ 1] [ 4] [0200] +10:05:35 [ 2] [ 16] [6213544002267539] +10:05:35 [ 3] [ 6] [300000] +10:05:35 [ 4] [ 12] [000000000000] +10:05:35 [ 7] [ 10] [0320101724] +10:05:35 [ 11] [ 6] [412165] +10:05:35 [ 12] [ 6] [101724] +10:05:35 [ 13] [ 4] [0320] +10:05:35 [ 14] [ 4] [1249] +10:05:35 [ 15] [ 4] [0320] +10:05:35 [ 18] [ 4] [6011] +10:05:35 [ 19] [ 3] [418] +10:05:35 [ 22] [ 3] [021] +10:05:35 [ 25] [ 2] [01] +10:05:35 [ 28] [ 9] [D00000000] +10:05:35 [ 32] [ 6] [123401] +10:05:35 [ 35] [ 32] [6213544002267539=491212016753072] +10:05:35 [ 37] [ 12] [507900354403] +10:05:35 [ 41] [ 8] [01002600] +10:05:35 [ 42] [ 15] [APT ] +10:05:35 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +10:05:35 [ 49] [ 3] [418] +10:05:35 [ 52] [ 16] [2C4DB7808E1DB974] +10:05:35 ============================================================================ +10:05:35 + + +waiting on router queue for slot.... +10:05:35 Sending to : +10:05:35 ============================================================================ +10:05:35 Sending to : +10:05:35 ============================================================================ +10:05:36 ============================================================================ +10:05:36 Slot Id : <409> +10:05:36 Transaction Type : REQUEST +10:05:36 Received From : +10:05:36 ============================================================================ +10:05:36 FNo. Len. Field Value +10:05:36 ============================================================================ +10:05:36 [ 1] [ 4] [0200] +10:05:36 [ 2] [ 16] [6213544002267539] +10:05:36 [ 3] [ 6] [300000] +10:05:36 [ 4] [ 12] [000000000000] +10:05:36 [ 7] [ 10] [0320101724] +10:05:36 [ 11] [ 6] [412165] +10:05:36 [ 12] [ 6] [101724] +10:05:36 [ 13] [ 4] [0320] +10:05:36 [ 14] [ 4] [1249] +10:05:36 [ 15] [ 4] [0320] +10:05:36 [ 18] [ 4] [6011] +10:05:36 [ 19] [ 3] [418] +10:05:36 [ 22] [ 3] [021] +10:05:36 [ 25] [ 2] [01] +10:05:36 [ 28] [ 9] [D00000000] +10:05:36 [ 32] [ 6] [123401] +10:05:36 [ 35] [ 32] [6213544002267539=491212016753072] +10:05:36 [ 37] [ 12] [507900354403] +10:05:36 [ 41] [ 8] [01002600] +10:05:36 [ 42] [ 15] [APT ] +10:05:36 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +10:05:36 [ 49] [ 3] [418] +10:05:36 [ 52] [ 16] [2C4DB7808E1DB974] +10:05:36 ============================================================================ +10:05:36 + + +waiting on router queue for slot.... +10:05:36 Sending to : +10:05:36 ============================================================================ +10:05:36 ============================================================================ +10:05:36 Slot Id : <409> +10:05:36 Transaction Type : REQUEST +10:05:36 Received From : +10:05:36 ============================================================================ +10:05:36 FNo. Len. Field Value +10:05:36 ============================================================================ +10:05:36 [ 1] [ 4] [0200] +10:05:36 [ 2] [ 16] [6213544002267539] +10:05:36 [ 3] [ 6] [300000] +10:05:36 [ 4] [ 12] [000000000000] +10:05:36 [ 7] [ 10] [0320101724] +10:05:36 [ 11] [ 6] [412165] +10:05:36 [ 12] [ 6] [101724] +10:05:36 [ 13] [ 4] [0320] +10:05:36 [ 14] [ 4] [1249] +10:05:36 [ 15] [ 4] [0320] +10:05:36 [ 18] [ 4] [6011] +10:05:36 [ 19] [ 3] [418] +10:05:36 [ 22] [ 3] [021] +10:05:36 [ 25] [ 2] [01] +10:05:36 [ 28] [ 9] [D00000000] +10:05:36 [ 32] [ 6] [123401] +10:05:36 [ 35] [ 32] [6213544002267539=491212016753072] +10:05:36 [ 37] [ 12] [507900354403] +10:05:36 [ 41] [ 8] [01002600] +10:05:36 [ 42] [ 15] [APT ] +10:05:36 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +10:05:36 [ 49] [ 3] [418] +10:05:36 [ 52] [ 16] [36613FEA583FEA34] +10:05:36 ============================================================================ +10:05:36 + + +waiting on router queue for slot.... +10:05:36 Sending to : <0> +10:05:36 ============================================================================ +10:05:36 ============================================================================ +10:05:36 Slot Id : <441> +10:05:36 Transaction Type : RESPONSE +10:05:36 Received From : +10:05:36 ============================================================================ +10:05:36 FNo. Len. Field Value +10:05:36 ============================================================================ +10:05:36 [ 1] [ 4] [0210] +10:05:36 [ 2] [ 16] [6213544001398665] +10:05:36 [ 3] [ 6] [010000] +10:05:36 [ 4] [ 12] [000010000000] +10:05:36 [ 7] [ 10] [0320030440] +10:05:36 [ 11] [ 6] [267929] +10:05:36 [ 12] [ 6] [100440] +10:05:36 [ 13] [ 4] [0320] +10:05:36 [ 15] [ 4] [0320] +10:05:36 [ 18] [ 4] [6011] +10:05:36 [ 19] [ 3] [418] +10:05:36 [ 32] [ 6] [180893] +10:05:36 [ 35] [ 32] [6213544001398665=491212019866808] +10:05:36 [ 37] [ 12] [507903267929] +10:05:36 [ 38] [ 6] [757224] +10:05:36 [ 39] [ 2] [00] +10:05:36 [ 41] [ 8] [0221XKKM] +10:05:36 [ 49] [ 3] [418] +10:05:36 [ 54] [ 40] [0001418C0003016508430002418C000301650843] +10:05:36 ============================================================================ +10:05:36 Calculate Source COMM Id = 2 +10:05:36 ============================================================================ +10:05:36 + + +waiting on router queue for slot.... +10:05:37 ============================================================================ +10:05:37 Slot Id : <409> +10:05:37 Transaction Type : RESPONSE +10:05:37 Received From : +10:05:37 ============================================================================ +10:05:37 FNo. Len. Field Value +10:05:37 ============================================================================ +10:05:37 [ 1] [ 4] [0210] +10:05:37 [ 2] [ 16] [6213544002267539] +10:05:37 [ 3] [ 6] [300000] +10:05:37 [ 4] [ 12] [000000000000] +10:05:37 [ 7] [ 10] [0320101724] +10:05:37 [ 11] [ 6] [412165] +10:05:37 [ 12] [ 6] [101724] +10:05:37 [ 13] [ 4] [0320] +10:05:37 [ 15] [ 4] [0320] +10:05:37 [ 18] [ 4] [6011] +10:05:37 [ 19] [ 3] [418] +10:05:37 [ 32] [ 6] [123401] +10:05:37 [ 35] [ 32] [6213544002267539=491212016753072] +10:05:37 [ 37] [ 12] [507900354403] +10:05:37 [ 38] [ 6] [189521] +10:05:37 [ 39] [ 2] [00] +10:05:37 [ 41] [ 8] [01002600] +10:05:37 [ 49] [ 3] [418] +10:05:37 [ 54] [ 40] [0001418C0000540000000002418C000054000000] +10:05:37 ============================================================================ +10:05:37 Sending to : +10:05:37 ============================================================================ +10:05:37 + + +waiting on router queue for slot.... +10:05:39 ============================================================================ +10:05:39 Slot Id : <409> +10:05:39 Transaction Type : RESPONSE +10:05:39 Received From : +10:05:39 ============================================================================ +10:05:39 FNo. Len. Field Value +10:05:39 ============================================================================ +10:05:39 [ 1] [ 4] [0210] +10:05:39 [ 2] [ 16] [6213544002267539] +10:05:39 [ 3] [ 6] [300000] +10:05:39 [ 4] [ 12] [000000000000] +10:05:39 [ 7] [ 10] [0320101724] +10:05:39 [ 11] [ 6] [412165] +10:05:39 [ 12] [ 6] [101724] +10:05:39 [ 13] [ 4] [0320] +10:05:39 [ 15] [ 4] [0320] +10:05:39 [ 18] [ 4] [6011] +10:05:39 [ 19] [ 3] [418] +10:05:39 [ 32] [ 6] [123401] +10:05:39 [ 35] [ 32] [6213544002267539=491212016753072] +10:05:39 [ 37] [ 12] [507900354403] +10:05:39 [ 38] [ 6] [189521] +10:05:39 [ 39] [ 2] [00] +10:05:39 [ 41] [ 8] [01002600] +10:05:39 [ 49] [ 3] [418] +10:05:39 [ 54] [ 40] [0001418C0000540000000002418C000054000000] +10:05:39 ============================================================================ +10:05:39 Calculate Source COMM Id = 6 +10:05:39 ============================================================================ +10:05:39 + + +waiting on router queue for slot.... +10:05:44 ============================================================================ +10:05:44 Slot Id : <437> +10:05:44 Transaction Type : REQUEST +10:05:44 Received From : +10:05:44 ============================================================================ +10:05:44 FNo. Len. Field Value +10:05:44 ============================================================================ +10:05:44 [ 1] [ 4] [0800] +10:05:44 [ 7] [ 10] [0320171733] +10:05:44 [ 11] [ 6] [101733] +10:05:44 [ 37] [ 12] [57910101733] +10:05:44 [ 70] [ 3] [301] +10:05:44 ============================================================================ +10:05:44 + + +waiting on router queue for slot.... +10:05:44 Sending to : +10:05:44 ============================================================================ +10:05:44 ============================================================================ +10:05:44 Slot Id : <437> +10:05:44 Transaction Type : RESPONSE +10:05:44 Received From : +10:05:44 ============================================================================ +10:05:44 FNo. Len. Field Value +10:05:44 ============================================================================ +10:05:44 [ 1] [ 4] [0810] +10:05:44 [ 7] [ 10] [0320171733] +10:05:44 [ 11] [ 6] [101733] +10:05:44 [ 37] [ 12] [579101017330] +10:05:44 [ 39] [ 2] [00] +10:05:44 [ 70] [ 3] [810] +10:05:44 ============================================================================ +10:05:44 Calculate Source COMM Id = 6 +10:05:44 ============================================================================ +10:05:44 + + +waiting on router queue for slot.... +10:05:47 ============================================================================ +10:05:47 Slot Id : <402> +10:05:47 Transaction Type : REQUEST +10:05:47 Received From : +10:05:47 ============================================================================ +10:05:47 FNo. Len. Field Value +10:05:47 ============================================================================ +10:05:47 [ 1] [ 4] [0800] +10:05:47 [ 7] [ 10] [0320030455] +10:05:47 [ 11] [ 6] [155772] +10:05:47 [ 70] [ 3] [301] +10:05:47 ============================================================================ +10:05:47 + + +waiting on router queue for slot.... +10:05:47 Sending to : +10:05:47 ============================================================================ +10:05:47 ============================================================================ +10:05:47 Slot Id : <402> +10:05:47 Transaction Type : RESPONSE +10:05:47 Received From : +10:05:47 ============================================================================ +10:05:47 FNo. Len. Field Value +10:05:47 ============================================================================ +10:05:47 [ 1] [ 4] [0810] +10:05:47 [ 7] [ 10] [0320030455] +10:05:47 [ 11] [ 6] [155772] +10:05:47 [ 39] [ 2] [00] +10:05:47 [ 70] [ 3] [301] +10:05:47 ============================================================================ +10:05:47 Calculate Source COMM Id = 2 +10:05:47 ============================================================================ +10:05:47 + + +waiting on router queue for slot.... +10:05:52 ============================================================================ +10:05:52 Slot Id : <403> +10:05:52 Transaction Type : REQUEST +10:05:52 Received From : +10:05:52 ============================================================================ +10:05:52 FNo. Len. Field Value +10:05:52 ============================================================================ +10:05:52 [ 1] [ 4] [0200] +10:05:52 [ 2] [ 16] [6213545000831473] +10:05:52 [ 3] [ 6] [010000] +10:05:52 [ 4] [ 12] [000050000000] +10:05:52 [ 7] [ 10] [0320030457] +10:05:52 [ 11] [ 6] [267934] +10:05:52 [ 12] [ 6] [100457] +10:05:52 [ 13] [ 4] [0320] +10:05:52 [ 14] [ 4] [4912] +10:05:52 [ 15] [ 4] [0320] +10:05:52 [ 18] [ 4] [6011] +10:05:52 [ 19] [ 3] [418] +10:05:52 [ 22] [ 3] [021] +10:05:52 [ 25] [ 2] [01] +10:05:52 [ 28] [ 9] [D00002000] +10:05:52 [ 32] [ 6] [180893] +10:05:52 [ 35] [ 32] [6213545000831473=491212013147458] +10:05:52 [ 37] [ 12] [507903267934] +10:05:52 [ 41] [ 8] [0465UDNM] +10:05:52 [ 42] [ 15] [999999 ] +10:05:52 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +10:05:52 [ 49] [ 3] [418] +10:05:52 [ 52] [ 16] [66655E23EC122624] +10:05:52 ============================================================================ +10:05:52 + + +waiting on router queue for slot.... +10:05:52 Sending to : +10:05:52 ============================================================================ +10:05:52 Sending to : +10:05:52 ============================================================================ +10:05:52 ============================================================================ +10:05:52 Slot Id : <403> +10:05:52 Transaction Type : REQUEST +10:05:52 Received From : +10:05:52 ============================================================================ +10:05:52 FNo. Len. Field Value +10:05:52 ============================================================================ +10:05:52 [ 1] [ 4] [0200] +10:05:52 [ 2] [ 16] [6213545000831473] +10:05:52 [ 3] [ 6] [010000] +10:05:52 [ 4] [ 12] [000050000000] +10:05:52 [ 7] [ 10] [0320030457] +10:05:52 [ 11] [ 6] [267934] +10:05:52 [ 12] [ 6] [100457] +10:05:52 [ 13] [ 4] [0320] +10:05:52 [ 14] [ 4] [4912] +10:05:52 [ 15] [ 4] [0320] +10:05:52 [ 18] [ 4] [6011] +10:05:52 [ 19] [ 3] [418] +10:05:52 [ 22] [ 3] [021] +10:05:52 [ 25] [ 2] [01] +10:05:52 [ 28] [ 9] [D00002000] +10:05:52 [ 32] [ 6] [180893] +10:05:52 [ 35] [ 32] [6213545000831473=491212013147458] +10:05:52 [ 37] [ 12] [507903267934] +10:05:52 [ 41] [ 8] [0465UDNM] +10:05:52 [ 42] [ 15] [999999 ] +10:05:52 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +10:05:52 [ 49] [ 3] [418] +10:05:52 [ 52] [ 16] [66655E23EC122624] +10:05:52 ============================================================================ +10:05:52 + + +waiting on router queue for slot.... +10:05:52 Sending to : +10:05:52 ============================================================================ +10:05:52 ============================================================================ +10:05:52 Slot Id : <403> +10:05:52 Transaction Type : REQUEST +10:05:52 Received From : +10:05:52 ============================================================================ +10:05:52 FNo. Len. Field Value +10:05:52 ============================================================================ +10:05:52 [ 1] [ 4] [0200] +10:05:52 [ 2] [ 16] [6213545000831473] +10:05:52 [ 3] [ 6] [010000] +10:05:52 [ 4] [ 12] [000050000000] +10:05:52 [ 7] [ 10] [0320030457] +10:05:52 [ 11] [ 6] [267934] +10:05:52 [ 12] [ 6] [100457] +10:05:52 [ 13] [ 4] [0320] +10:05:52 [ 14] [ 4] [4912] +10:05:52 [ 15] [ 4] [0320] +10:05:52 [ 18] [ 4] [6011] +10:05:52 [ 19] [ 3] [418] +10:05:52 [ 22] [ 3] [021] +10:05:52 [ 25] [ 2] [01] +10:05:52 [ 28] [ 9] [D00002000] +10:05:52 [ 32] [ 6] [180893] +10:05:52 [ 35] [ 32] [6213545000831473=491212013147458] +10:05:52 [ 37] [ 12] [507903267934] +10:05:52 [ 41] [ 8] [0465UDNM] +10:05:52 [ 42] [ 15] [999999 ] +10:05:52 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +10:05:52 [ 49] [ 3] [418] +10:05:52 [ 52] [ 16] [26F54FB662D02E40] +10:05:52 ============================================================================ +10:05:52 + + +waiting on router queue for slot.... +10:05:52 Sending to : <0> +10:05:52 ============================================================================ +10:05:53 ============================================================================ +10:05:53 Slot Id : <403> +10:05:53 Transaction Type : RESPONSE +10:05:53 Received From : +10:05:53 ============================================================================ +10:05:53 FNo. Len. Field Value +10:05:53 ============================================================================ +10:05:53 [ 1] [ 4] [0210] +10:05:53 [ 2] [ 16] [6213545000831473] +10:05:53 [ 3] [ 6] [010000] +10:05:53 [ 4] [ 12] [000050000000] +10:05:53 [ 7] [ 10] [0320030457] +10:05:53 [ 11] [ 6] [267934] +10:05:53 [ 12] [ 6] [100457] +10:05:53 [ 13] [ 4] [0320] +10:05:53 [ 15] [ 4] [0320] +10:05:53 [ 18] [ 4] [6011] +10:05:53 [ 19] [ 3] [418] +10:05:53 [ 32] [ 6] [180893] +10:05:53 [ 35] [ 32] [6213545000831473=491212013147458] +10:05:53 [ 37] [ 12] [507903267934] +10:05:53 [ 38] [ 6] [370544] +10:05:53 [ 39] [ 2] [00] +10:05:53 [ 41] [ 8] [0465UDNM] +10:05:53 [ 49] [ 3] [418] +10:05:53 [ 54] [ 40] [0001418C0002970986100002418C000297098610] +10:05:53 ============================================================================ +10:05:53 Sending to : +10:05:53 ============================================================================ +10:05:53 + + +waiting on router queue for slot.... +10:05:54 ============================================================================ +10:05:54 Slot Id : <403> +10:05:54 Transaction Type : RESPONSE +10:05:54 Received From : +10:05:54 ============================================================================ +10:05:54 FNo. Len. Field Value +10:05:54 ============================================================================ +10:05:54 [ 1] [ 4] [0210] +10:05:54 [ 2] [ 16] [6213545000831473] +10:05:54 [ 3] [ 6] [010000] +10:05:54 [ 4] [ 12] [000050000000] +10:05:54 [ 7] [ 10] [0320030457] +10:05:54 [ 11] [ 6] [267934] +10:05:54 [ 12] [ 6] [100457] +10:05:54 [ 13] [ 4] [0320] +10:05:54 [ 15] [ 4] [0320] +10:05:54 [ 18] [ 4] [6011] +10:05:54 [ 19] [ 3] [418] +10:05:54 [ 32] [ 6] [180893] +10:05:54 [ 35] [ 32] [6213545000831473=491212013147458] +10:05:54 [ 37] [ 12] [507903267934] +10:05:54 [ 38] [ 6] [370544] +10:05:54 [ 39] [ 2] [00] +10:05:54 [ 41] [ 8] [0465UDNM] +10:05:54 [ 49] [ 3] [418] +10:05:54 [ 54] [ 40] [0001418C0002970986100002418C000297098610] +10:05:54 ============================================================================ +10:05:54 Calculate Source COMM Id = 2 +10:05:54 ============================================================================ +10:05:54 + + +waiting on router queue for slot.... +10:06:05 ============================================================================ +10:06:05 Slot Id : <408> +10:06:05 Transaction Type : REQUEST +10:06:05 Received From : +10:06:05 ============================================================================ +10:06:05 FNo. Len. Field Value +10:06:05 ============================================================================ +10:06:05 [ 1] [ 4] [0200] +10:06:05 [ 2] [ 16] [6213545000896153] +10:06:05 [ 3] [ 6] [301000] +10:06:05 [ 7] [ 10] [0320030512] +10:06:05 [ 11] [ 6] [267937] +10:06:05 [ 12] [ 6] [100512] +10:06:05 [ 13] [ 4] [0320] +10:06:05 [ 14] [ 4] [4912] +10:06:05 [ 15] [ 4] [0320] +10:06:05 [ 18] [ 4] [6011] +10:06:05 [ 19] [ 3] [418] +10:06:05 [ 22] [ 3] [021] +10:06:05 [ 25] [ 2] [01] +10:06:05 [ 32] [ 6] [180893] +10:06:05 [ 35] [ 32] [6213545000896153=491212019615314] +10:06:05 [ 37] [ 12] [507903267937] +10:06:05 [ 41] [ 8] [0261PSL1] +10:06:05 [ 42] [ 15] [999999 ] +10:06:05 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +10:06:05 [ 49] [ 3] [418] +10:06:05 [ 52] [ 16] [C21FA2039C071761] +10:06:05 ============================================================================ +10:06:05 + + +waiting on router queue for slot.... +10:06:05 Sending to : +10:06:05 ============================================================================ +10:06:05 Sending to : +10:06:05 ============================================================================ +10:06:05 ============================================================================ +10:06:05 Slot Id : <408> +10:06:05 Transaction Type : REQUEST +10:06:05 Received From : +10:06:05 ============================================================================ +10:06:05 FNo. Len. Field Value +10:06:05 ============================================================================ +10:06:05 [ 1] [ 4] [0200] +10:06:05 [ 2] [ 16] [6213545000896153] +10:06:05 [ 3] [ 6] [301000] +10:06:05 [ 7] [ 10] [0320030512] +10:06:05 [ 11] [ 6] [267937] +10:06:05 [ 12] [ 6] [100512] +10:06:05 [ 13] [ 4] [0320] +10:06:05 [ 14] [ 4] [4912] +10:06:05 [ 15] [ 4] [0320] +10:06:05 [ 18] [ 4] [6011] +10:06:05 [ 19] [ 3] [418] +10:06:05 [ 22] [ 3] [021] +10:06:05 [ 25] [ 2] [01] +10:06:05 [ 32] [ 6] [180893] +10:06:05 [ 35] [ 32] [6213545000896153=491212019615314] +10:06:05 [ 37] [ 12] [507903267937] +10:06:05 [ 41] [ 8] [0261PSL1] +10:06:05 [ 42] [ 15] [999999 ] +10:06:05 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +10:06:05 [ 49] [ 3] [418] +10:06:05 [ 52] [ 16] [C21FA2039C071761] +10:06:05 ============================================================================ +10:06:05 + + +waiting on router queue for slot.... +10:06:05 Sending to : +10:06:05 ============================================================================ +10:06:05 ============================================================================ +10:06:05 Slot Id : <408> +10:06:05 Transaction Type : REQUEST +10:06:05 Received From : +10:06:05 ============================================================================ +10:06:05 FNo. Len. Field Value +10:06:05 ============================================================================ +10:06:05 [ 1] [ 4] [0200] +10:06:05 [ 2] [ 16] [6213545000896153] +10:06:05 [ 3] [ 6] [301000] +10:06:05 [ 7] [ 10] [0320030512] +10:06:05 [ 11] [ 6] [267937] +10:06:05 [ 12] [ 6] [100512] +10:06:05 [ 13] [ 4] [0320] +10:06:05 [ 14] [ 4] [4912] +10:06:05 [ 15] [ 4] [0320] +10:06:05 [ 18] [ 4] [6011] +10:06:05 [ 19] [ 3] [418] +10:06:05 [ 22] [ 3] [021] +10:06:05 [ 25] [ 2] [01] +10:06:05 [ 32] [ 6] [180893] +10:06:05 [ 35] [ 32] [6213545000896153=491212019615314] +10:06:05 [ 37] [ 12] [507903267937] +10:06:05 [ 41] [ 8] [0261PSL1] +10:06:05 [ 42] [ 15] [999999 ] +10:06:05 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +10:06:05 [ 49] [ 3] [418] +10:06:05 [ 52] [ 16] [52AA040F2BE10E19] +10:06:05 ============================================================================ +10:06:05 + + +waiting on router queue for slot.... +10:06:05 Sending to : <0> +10:06:05 ============================================================================ +10:06:05 ============================================================================ +10:06:05 Slot Id : <408> +10:06:05 Transaction Type : RESPONSE +10:06:05 Received From : +10:06:05 ============================================================================ +10:06:05 FNo. Len. Field Value +10:06:05 ============================================================================ +10:06:05 [ 1] [ 4] [0210] +10:06:05 [ 2] [ 16] [6213545000896153] +10:06:05 [ 3] [ 6] [301000] +10:06:05 [ 4] [ 12] [000000000000] +10:06:05 [ 7] [ 10] [0320030512] +10:06:05 [ 11] [ 6] [267937] +10:06:05 [ 12] [ 6] [100512] +10:06:05 [ 13] [ 4] [0320] +10:06:05 [ 15] [ 4] [0320] +10:06:05 [ 18] [ 4] [6011] +10:06:05 [ 19] [ 3] [418] +10:06:05 [ 32] [ 6] [180893] +10:06:05 [ 35] [ 32] [6213545000896153=491212019615314] +10:06:05 [ 37] [ 12] [507903267937] +10:06:05 [ 38] [ 6] [450494] +10:06:05 [ 39] [ 2] [00] +10:06:05 [ 41] [ 8] [0261PSL1] +10:06:05 [ 49] [ 3] [418] +10:06:05 [ 54] [ 40] [1001418C0000728087801002418C000072808780] +10:06:05 ============================================================================ +10:06:05 Sending to : +10:06:05 ============================================================================ +10:06:05 + + +waiting on router queue for slot.... +10:06:07 ============================================================================ +10:06:07 Slot Id : <408> +10:06:07 Transaction Type : RESPONSE +10:06:07 Received From : +10:06:07 ============================================================================ +10:06:07 FNo. Len. Field Value +10:06:07 ============================================================================ +10:06:07 [ 1] [ 4] [0210] +10:06:07 [ 2] [ 16] [6213545000896153] +10:06:07 [ 3] [ 6] [301000] +10:06:07 [ 4] [ 12] [000000000000] +10:06:07 [ 7] [ 10] [0320030512] +10:06:07 [ 11] [ 6] [267937] +10:06:07 [ 12] [ 6] [100512] +10:06:07 [ 13] [ 4] [0320] +10:06:07 [ 15] [ 4] [0320] +10:06:07 [ 18] [ 4] [6011] +10:06:07 [ 19] [ 3] [418] +10:06:07 [ 32] [ 6] [180893] +10:06:07 [ 35] [ 32] [6213545000896153=491212019615314] +10:06:07 [ 37] [ 12] [507903267937] +10:06:07 [ 38] [ 6] [450494] +10:06:07 [ 39] [ 2] [00] +10:06:07 [ 41] [ 8] [0261PSL1] +10:06:07 [ 49] [ 3] [418] +10:06:07 [ 54] [ 40] [1001418C0000728087801002418C000072808780] +10:06:07 ============================================================================ +10:06:07 Calculate Source COMM Id = 2 +10:06:07 ============================================================================ +10:06:07 + + +waiting on router queue for slot.... +10:06:09 ============================================================================ +10:06:09 Slot Id : <362> +10:06:09 Transaction Type : REQUEST +10:06:09 Received From : +10:06:09 ============================================================================ +10:06:09 FNo. Len. Field Value +10:06:09 ============================================================================ +10:06:09 [ 1] [ 4] [0800] +10:06:09 [ 2] [ 5] [02531] +10:06:09 [ 3] [ 6] [579108] +10:06:09 [ 7] [ 10] [0320030609] +10:06:09 [ 11] [ 6] [806998] +10:06:09 [ 15] [ 10] [0320030609] +10:06:09 [ 37] [ 11] [57910806998] +10:06:09 [ 70] [ 3] [001] +10:06:09 ============================================================================ +10:06:09 + + +waiting on router queue for slot.... +10:06:09 ============================================================================ +10:06:09 Slot Id : <362> +10:06:09 Transaction Type : RESPONSE +10:06:09 Received From : +10:06:09 ============================================================================ +10:06:09 FNo. Len. Field Value +10:06:09 ============================================================================ +10:06:09 [ 1] [ 4] [0810] +10:06:09 [ 7] [ 10] [0320030609] +10:06:09 [ 11] [ 6] [806998] +10:06:09 [ 15] [ 4] [0320] +10:06:09 [ 37] [ 12] [57910806998] +10:06:09 [ 39] [ 2] [00] +10:06:09 [ 70] [ 3] [001] +10:06:09 ============================================================================ +10:06:09 Sending to : +10:06:09 ============================================================================ +10:06:09 + + +waiting on router queue for slot.... +10:06:21 ============================================================================ +10:06:21 Slot Id : <375> +10:06:21 Transaction Type : REQUEST +10:06:21 Received From : +10:06:21 ============================================================================ +10:06:21 FNo. Len. Field Value +10:06:21 ============================================================================ +10:06:21 [ 1] [ 4] [0800] +10:06:21 [ 7] [ 10] [0320030529] +10:06:21 [ 11] [ 6] [155773] +10:06:21 [ 70] [ 3] [301] +10:06:21 ============================================================================ +10:06:21 + + +waiting on router queue for slot.... +10:06:21 Sending to : +10:06:21 ============================================================================ +10:06:21 ============================================================================ +10:06:21 Slot Id : <375> +10:06:21 Transaction Type : RESPONSE +10:06:21 Received From : +10:06:21 ============================================================================ +10:06:21 FNo. Len. Field Value +10:06:21 ============================================================================ +10:06:21 [ 1] [ 4] [0810] +10:06:21 [ 7] [ 10] [0320030529] +10:06:21 [ 11] [ 6] [155773] +10:06:21 [ 39] [ 2] [00] +10:06:21 [ 70] [ 3] [301] +10:06:21 ============================================================================ +10:06:21 Calculate Source COMM Id = 2 +10:06:21 ============================================================================ +10:06:21 + + +waiting on router queue for slot.... +10:06:21 ============================================================================ +10:06:21 Slot Id : <385> +10:06:21 Transaction Type : REQUEST +10:06:21 Received From : +10:06:21 ============================================================================ +10:06:21 FNo. Len. Field Value +10:06:21 ============================================================================ +10:06:21 [ 1] [ 4] [0800] +10:06:21 [ 7] [ 10] [0320030412] +10:06:21 [ 11] [ 6] [094539] +10:06:21 [ 37] [ 12] [57910094539] +10:06:21 [ 70] [ 3] [301] +10:06:21 ============================================================================ +10:06:21 + + +waiting on router queue for slot.... +10:06:21 Sending to : +10:06:21 ============================================================================ +10:06:21 ============================================================================ +10:06:21 Slot Id : <385> +10:06:21 Transaction Type : RESPONSE +10:06:21 Received From : +10:06:21 ============================================================================ +10:06:21 FNo. Len. Field Value +10:06:21 ============================================================================ +10:06:21 [ 1] [ 4] [0810] +10:06:21 [ 7] [ 10] [0320030412] +10:06:21 [ 11] [ 6] [094539] +10:06:21 [ 37] [ 12] [579100945390] +10:06:21 [ 39] [ 2] [00] +10:06:21 [ 70] [ 3] [810] +10:06:21 ============================================================================ +10:06:21 Calculate Source COMM Id = 4 +10:06:21 ============================================================================ +10:06:21 + + +waiting on router queue for slot.... +10:06:27 ============================================================================ +10:06:27 Slot Id : <447> +10:06:27 Transaction Type : REQUEST +10:06:27 Received From : +10:06:27 ============================================================================ +10:06:27 FNo. Len. Field Value +10:06:27 ============================================================================ +10:06:27 [ 1] [ 4] [0200] +10:06:27 [ 2] [ 16] [6213544001716767] +10:06:27 [ 3] [ 6] [010000] +10:06:27 [ 4] [ 12] [000010000000] +10:06:27 [ 7] [ 10] [0320030534] +10:06:27 [ 11] [ 6] [267944] +10:06:27 [ 12] [ 6] [100534] +10:06:27 [ 13] [ 4] [0320] +10:06:27 [ 14] [ 4] [4912] +10:06:27 [ 15] [ 4] [0320] +10:06:27 [ 18] [ 4] [6011] +10:06:27 [ 19] [ 3] [418] +10:06:27 [ 22] [ 3] [021] +10:06:27 [ 25] [ 2] [01] +10:06:27 [ 28] [ 9] [D00002000] +10:06:27 [ 32] [ 6] [180893] +10:06:27 [ 35] [ 32] [6213544001716767=491212011676198] +10:06:27 [ 37] [ 12] [507903267944] +10:06:27 [ 41] [ 8] [0523XYNG] +10:06:27 [ 42] [ 15] [999999 ] +10:06:27 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +10:06:27 [ 49] [ 3] [418] +10:06:27 [ 52] [ 16] [AF62CC5BA289A065] +10:06:27 ============================================================================ +10:06:27 + + +waiting on router queue for slot.... +10:06:27 Sending to : +10:06:27 ============================================================================ +10:06:27 Sending to : +10:06:27 ============================================================================ +10:06:28 ============================================================================ +10:06:28 Slot Id : <447> +10:06:28 Transaction Type : REQUEST +10:06:28 Received From : +10:06:28 ============================================================================ +10:06:28 FNo. Len. Field Value +10:06:28 ============================================================================ +10:06:28 [ 1] [ 4] [0200] +10:06:28 [ 2] [ 16] [6213544001716767] +10:06:28 [ 3] [ 6] [010000] +10:06:28 [ 4] [ 12] [000010000000] +10:06:28 [ 7] [ 10] [0320030534] +10:06:28 [ 11] [ 6] [267944] +10:06:28 [ 12] [ 6] [100534] +10:06:28 [ 13] [ 4] [0320] +10:06:28 [ 14] [ 4] [4912] +10:06:28 [ 15] [ 4] [0320] +10:06:28 [ 18] [ 4] [6011] +10:06:28 [ 19] [ 3] [418] +10:06:28 [ 22] [ 3] [021] +10:06:28 [ 25] [ 2] [01] +10:06:28 [ 28] [ 9] [D00002000] +10:06:28 [ 32] [ 6] [180893] +10:06:28 [ 35] [ 32] [6213544001716767=491212011676198] +10:06:28 [ 37] [ 12] [507903267944] +10:06:28 [ 41] [ 8] [0523XYNG] +10:06:28 [ 42] [ 15] [999999 ] +10:06:28 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +10:06:28 [ 49] [ 3] [418] +10:06:28 [ 52] [ 16] [AF62CC5BA289A065] +10:06:28 ============================================================================ +10:06:28 + + +waiting on router queue for slot.... +10:06:28 Sending to : +10:06:28 ============================================================================ +10:06:28 ============================================================================ +10:06:28 Slot Id : <447> +10:06:28 Transaction Type : REQUEST +10:06:28 Received From : +10:06:28 ============================================================================ +10:06:28 FNo. Len. Field Value +10:06:28 ============================================================================ +10:06:28 [ 1] [ 4] [0200] +10:06:28 [ 2] [ 16] [6213544001716767] +10:06:28 [ 3] [ 6] [010000] +10:06:28 [ 4] [ 12] [000010000000] +10:06:28 [ 7] [ 10] [0320030534] +10:06:28 [ 11] [ 6] [267944] +10:06:28 [ 12] [ 6] [100534] +10:06:28 [ 13] [ 4] [0320] +10:06:28 [ 14] [ 4] [4912] +10:06:28 [ 15] [ 4] [0320] +10:06:28 [ 18] [ 4] [6011] +10:06:28 [ 19] [ 3] [418] +10:06:28 [ 22] [ 3] [021] +10:06:28 [ 25] [ 2] [01] +10:06:28 [ 28] [ 9] [D00002000] +10:06:28 [ 32] [ 6] [180893] +10:06:28 [ 35] [ 32] [6213544001716767=491212011676198] +10:06:28 [ 37] [ 12] [507903267944] +10:06:28 [ 41] [ 8] [0523XYNG] +10:06:28 [ 42] [ 15] [999999 ] +10:06:28 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +10:06:28 [ 49] [ 3] [418] +10:06:28 [ 52] [ 16] [1CB5070F99BC1788] +10:06:28 ============================================================================ +10:06:28 + + +waiting on router queue for slot.... +10:06:28 Sending to : <0> +10:06:28 ============================================================================ +10:06:28 ============================================================================ +10:06:28 Slot Id : <447> +10:06:28 Transaction Type : RESPONSE +10:06:28 Received From : +10:06:28 ============================================================================ +10:06:28 FNo. Len. Field Value +10:06:28 ============================================================================ +10:06:28 [ 1] [ 4] [0210] +10:06:28 [ 2] [ 16] [6213544001716767] +10:06:28 [ 3] [ 6] [010000] +10:06:28 [ 4] [ 12] [000010000000] +10:06:28 [ 7] [ 10] [0320030534] +10:06:28 [ 11] [ 6] [267944] +10:06:28 [ 12] [ 6] [100534] +10:06:28 [ 13] [ 4] [0320] +10:06:28 [ 15] [ 4] [0320] +10:06:28 [ 18] [ 4] [6011] +10:06:28 [ 19] [ 3] [418] +10:06:28 [ 32] [ 6] [180893] +10:06:28 [ 35] [ 32] [6213544001716767=491212011676198] +10:06:28 [ 37] [ 12] [507903267944] +10:06:28 [ 38] [ 6] [252074] +10:06:28 [ 39] [ 2] [00] +10:06:28 [ 41] [ 8] [0523XYNG] +10:06:28 [ 49] [ 3] [418] +10:06:28 [ 54] [ 40] [0001418C0000941939220002418C000094193922] +10:06:28 ============================================================================ +10:06:28 Sending to : +10:06:28 ============================================================================ +10:06:28 + + +waiting on router queue for slot.... +10:06:30 ============================================================================ +10:06:30 Slot Id : <447> +10:06:30 Transaction Type : RESPONSE +10:06:30 Received From : +10:06:30 ============================================================================ +10:06:30 FNo. Len. Field Value +10:06:30 ============================================================================ +10:06:30 [ 1] [ 4] [0210] +10:06:30 [ 2] [ 16] [6213544001716767] +10:06:30 [ 3] [ 6] [010000] +10:06:30 [ 4] [ 12] [000010000000] +10:06:30 [ 7] [ 10] [0320030534] +10:06:30 [ 11] [ 6] [267944] +10:06:30 [ 12] [ 6] [100534] +10:06:30 [ 13] [ 4] [0320] +10:06:30 [ 15] [ 4] [0320] +10:06:30 [ 18] [ 4] [6011] +10:06:30 [ 19] [ 3] [418] +10:06:30 [ 32] [ 6] [180893] +10:06:30 [ 35] [ 32] [6213544001716767=491212011676198] +10:06:30 [ 37] [ 12] [507903267944] +10:06:30 [ 38] [ 6] [252074] +10:06:30 [ 39] [ 2] [00] +10:06:30 [ 41] [ 8] [0523XYNG] +10:06:30 [ 49] [ 3] [418] +10:06:30 [ 54] [ 40] [0001418C0000941939220002418C000094193922] +10:06:30 ============================================================================ +10:06:30 Calculate Source COMM Id = 2 +10:06:30 ============================================================================ +10:06:30 + + +waiting on router queue for slot.... +10:06:43 ============================================================================ +10:06:43 Slot Id : <392> +10:06:43 Transaction Type : REQUEST +10:06:43 Received From : +10:06:43 ============================================================================ +10:06:43 FNo. Len. Field Value +10:06:43 ============================================================================ +10:06:43 [ 1] [ 4] [0800] +10:06:43 [ 7] [ 10] [0320030551] +10:06:43 [ 11] [ 6] [155774] +10:06:43 [ 70] [ 3] [301] +10:06:43 ============================================================================ +10:06:43 + + +waiting on router queue for slot.... +10:06:43 Sending to : +10:06:43 ============================================================================ +10:06:43 ============================================================================ +10:06:43 Slot Id : <392> +10:06:43 Transaction Type : RESPONSE +10:06:43 Received From : +10:06:43 ============================================================================ +10:06:43 FNo. Len. Field Value +10:06:43 ============================================================================ +10:06:43 [ 1] [ 4] [0810] +10:06:43 [ 7] [ 10] [0320030551] +10:06:43 [ 11] [ 6] [155774] +10:06:43 [ 39] [ 2] [00] +10:06:43 [ 70] [ 3] [301] +10:06:43 ============================================================================ +10:06:43 Calculate Source COMM Id = 2 +10:06:43 ============================================================================ +10:06:43 + + +waiting on router queue for slot.... +10:06:49 ============================================================================ +10:06:49 Slot Id : <412> +10:06:49 Transaction Type : REQUEST +10:06:49 Received From : +10:06:49 ============================================================================ +10:06:49 FNo. Len. Field Value +10:06:49 ============================================================================ +10:06:49 [ 1] [ 4] [0800] +10:06:49 [ 7] [ 10] [0320171838] +10:06:49 [ 11] [ 6] [101838] +10:06:49 [ 37] [ 12] [57910101838] +10:06:49 [ 70] [ 3] [301] +10:06:49 ============================================================================ +10:06:49 + + +waiting on router queue for slot.... +10:06:49 Sending to : +10:06:49 ============================================================================ +10:06:49 ============================================================================ +10:06:49 Slot Id : <412> +10:06:49 Transaction Type : RESPONSE +10:06:49 Received From : +10:06:49 ============================================================================ +10:06:49 FNo. Len. Field Value +10:06:49 ============================================================================ +10:06:49 [ 1] [ 4] [0810] +10:06:49 [ 7] [ 10] [0320171838] +10:06:49 [ 11] [ 6] [101838] +10:06:49 [ 37] [ 12] [579101018380] +10:06:49 [ 39] [ 2] [00] +10:06:49 [ 70] [ 3] [810] +10:06:49 ============================================================================ +10:06:49 Calculate Source COMM Id = 6 +10:06:49 ============================================================================ +10:06:49 + + +waiting on router queue for slot.... +10:06:53 ============================================================================ +10:06:53 Slot Id : <450> +10:06:53 Transaction Type : REQUEST +10:06:53 Received From : +10:06:53 ============================================================================ +10:06:53 FNo. Len. Field Value +10:06:53 ============================================================================ +10:06:53 [ 1] [ 4] [0200] +10:06:53 [ 2] [ 16] [6213545000896153] +10:06:53 [ 3] [ 6] [011000] +10:06:53 [ 4] [ 12] [000068000000] +10:06:53 [ 7] [ 10] [0320030559] +10:06:53 [ 11] [ 6] [267949] +10:06:53 [ 12] [ 6] [100559] +10:06:53 [ 13] [ 4] [0320] +10:06:53 [ 14] [ 4] [4912] +10:06:53 [ 15] [ 4] [0320] +10:06:53 [ 18] [ 4] [6011] +10:06:53 [ 19] [ 3] [418] +10:06:53 [ 22] [ 3] [021] +10:06:53 [ 25] [ 2] [01] +10:06:53 [ 28] [ 9] [D00002000] +10:06:53 [ 32] [ 6] [180893] +10:06:53 [ 35] [ 32] [6213545000896153=491212019615314] +10:06:53 [ 37] [ 12] [507903267949] +10:06:53 [ 41] [ 8] [0261PSL1] +10:06:53 [ 42] [ 15] [999999 ] +10:06:53 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +10:06:53 [ 49] [ 3] [418] +10:06:53 [ 52] [ 16] [C21FA2039C071761] +10:06:53 ============================================================================ +10:06:53 + + +waiting on router queue for slot.... +10:06:53 Sending to : +10:06:53 ============================================================================ +10:06:53 Sending to : +10:06:53 ============================================================================ +10:06:54 ============================================================================ +10:06:54 Slot Id : <450> +10:06:54 Transaction Type : REQUEST +10:06:54 Received From : +10:06:54 ============================================================================ +10:06:54 FNo. Len. Field Value +10:06:54 ============================================================================ +10:06:54 [ 1] [ 4] [0200] +10:06:54 [ 2] [ 16] [6213545000896153] +10:06:54 [ 3] [ 6] [011000] +10:06:54 [ 4] [ 12] [000068000000] +10:06:54 [ 7] [ 10] [0320030559] +10:06:54 [ 11] [ 6] [267949] +10:06:54 [ 12] [ 6] [100559] +10:06:54 [ 13] [ 4] [0320] +10:06:54 [ 14] [ 4] [4912] +10:06:54 [ 15] [ 4] [0320] +10:06:54 [ 18] [ 4] [6011] +10:06:54 [ 19] [ 3] [418] +10:06:54 [ 22] [ 3] [021] +10:06:54 [ 25] [ 2] [01] +10:06:54 [ 28] [ 9] [D00002000] +10:06:54 [ 32] [ 6] [180893] +10:06:54 [ 35] [ 32] [6213545000896153=491212019615314] +10:06:54 [ 37] [ 12] [507903267949] +10:06:54 [ 41] [ 8] [0261PSL1] +10:06:54 [ 42] [ 15] [999999 ] +10:06:54 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +10:06:54 [ 49] [ 3] [418] +10:06:54 [ 52] [ 16] [C21FA2039C071761] +10:06:54 ============================================================================ +10:06:54 + + +waiting on router queue for slot.... +10:06:54 Sending to : +10:06:54 ============================================================================ +10:06:54 ============================================================================ +10:06:54 Slot Id : <450> +10:06:54 Transaction Type : REQUEST +10:06:54 Received From : +10:06:54 ============================================================================ +10:06:54 FNo. Len. Field Value +10:06:54 ============================================================================ +10:06:54 [ 1] [ 4] [0200] +10:06:54 [ 2] [ 16] [6213545000896153] +10:06:54 [ 3] [ 6] [011000] +10:06:54 [ 4] [ 12] [000068000000] +10:06:54 [ 7] [ 10] [0320030559] +10:06:54 [ 11] [ 6] [267949] +10:06:54 [ 12] [ 6] [100559] +10:06:54 [ 13] [ 4] [0320] +10:06:54 [ 14] [ 4] [4912] +10:06:54 [ 15] [ 4] [0320] +10:06:54 [ 18] [ 4] [6011] +10:06:54 [ 19] [ 3] [418] +10:06:54 [ 22] [ 3] [021] +10:06:54 [ 25] [ 2] [01] +10:06:54 [ 28] [ 9] [D00002000] +10:06:54 [ 32] [ 6] [180893] +10:06:54 [ 35] [ 32] [6213545000896153=491212019615314] +10:06:54 [ 37] [ 12] [507903267949] +10:06:54 [ 41] [ 8] [0261PSL1] +10:06:54 [ 42] [ 15] [999999 ] +10:06:54 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +10:06:54 [ 49] [ 3] [418] +10:06:54 [ 52] [ 16] [52AA040F2BE10E19] +10:06:54 ============================================================================ +10:06:54 + + +waiting on router queue for slot.... +10:06:54 Sending to : <0> +10:06:54 ============================================================================ +10:06:55 ============================================================================ +10:06:55 Slot Id : <450> +10:06:55 Transaction Type : RESPONSE +10:06:55 Received From : +10:06:55 ============================================================================ +10:06:55 FNo. Len. Field Value +10:06:55 ============================================================================ +10:06:55 [ 1] [ 4] [0210] +10:06:55 [ 2] [ 16] [6213545000896153] +10:06:55 [ 3] [ 6] [011000] +10:06:55 [ 4] [ 12] [000068000000] +10:06:55 [ 7] [ 10] [0320030559] +10:06:55 [ 11] [ 6] [267949] +10:06:55 [ 12] [ 6] [100559] +10:06:55 [ 13] [ 4] [0320] +10:06:55 [ 15] [ 4] [0320] +10:06:55 [ 18] [ 4] [6011] +10:06:55 [ 19] [ 3] [418] +10:06:55 [ 32] [ 6] [180893] +10:06:55 [ 35] [ 32] [6213545000896153=491212019615314] +10:06:55 [ 37] [ 12] [507903267949] +10:06:55 [ 38] [ 6] [267949] +10:06:55 [ 39] [ 2] [51] +10:06:55 [ 41] [ 8] [0261PSL1] +10:06:55 [ 49] [ 3] [418] +10:06:55 [ 54] [ 40] [1001418C0000728087801002418C000072808780] +10:06:55 ============================================================================ +10:06:55 Sending to : +10:06:55 ============================================================================ +10:06:55 + + +waiting on router queue for slot.... +10:06:56 ============================================================================ +10:06:56 Slot Id : <450> +10:06:56 Transaction Type : RESPONSE +10:06:56 Received From : +10:06:56 ============================================================================ +10:06:56 FNo. Len. Field Value +10:06:56 ============================================================================ +10:06:56 [ 1] [ 4] [0210] +10:06:56 [ 2] [ 16] [6213545000896153] +10:06:56 [ 3] [ 6] [011000] +10:06:56 [ 4] [ 12] [000068000000] +10:06:56 [ 7] [ 10] [0320030559] +10:06:56 [ 11] [ 6] [267949] +10:06:56 [ 12] [ 6] [100559] +10:06:56 [ 13] [ 4] [0320] +10:06:56 [ 15] [ 4] [0320] +10:06:56 [ 18] [ 4] [6011] +10:06:56 [ 19] [ 3] [418] +10:06:56 [ 32] [ 6] [180893] +10:06:56 [ 35] [ 32] [6213545000896153=491212019615314] +10:06:56 [ 37] [ 12] [507903267949] +10:06:56 [ 38] [ 6] [267949] +10:06:56 [ 39] [ 2] [51] +10:06:56 [ 41] [ 8] [0261PSL1] +10:06:56 [ 49] [ 3] [418] +10:06:56 [ 54] [ 40] [1001418C0000728087801002418C000072808780] +10:06:56 ============================================================================ +10:06:56 Calculate Source COMM Id = 2 +10:06:56 ============================================================================ +10:06:56 + + +waiting on router queue for slot.... +10:06:59 ============================================================================ +10:06:59 Slot Id : <417> +10:06:59 Transaction Type : REQUEST +10:06:59 Received From : +10:06:59 ============================================================================ +10:06:59 FNo. Len. Field Value +10:06:59 ============================================================================ +10:06:59 [ 1] [ 4] [0200] +10:06:59 [ 2] [ 16] [6213548000301430] +10:06:59 [ 3] [ 6] [010000] +10:06:59 [ 4] [ 12] [000030000000] +10:06:59 [ 7] [ 10] [0320100450] +10:06:59 [ 11] [ 6] [937559] +10:06:59 [ 12] [ 6] [100450] +10:06:59 [ 13] [ 4] [0320] +10:06:59 [ 15] [ 4] [0320] +10:06:59 [ 18] [ 4] [6011] +10:06:59 [ 19] [ 3] [418] +10:06:59 [ 22] [ 3] [021] +10:06:59 [ 25] [ 2] [01] +10:06:59 [ 28] [ 9] [D00002000] +10:06:59 [ 32] [ 6] [668899] +10:06:59 [ 35] [ 32] [6213548000301430=180312010143032] +10:06:59 [ 37] [ 12] [507900109327] +10:06:59 [ 41] [ 8] [03020002] +10:06:59 [ 42] [ 15] [APT ] +10:06:59 [ 43] [ 40] [ HEAD OFFICE 02 CHANTHABOU] +10:06:59 [ 49] [ 3] [418] +10:06:59 [ 52] [ 16] [B8EDCEA460589C2F] +10:06:59 ============================================================================ +10:06:59 + + +waiting on router queue for slot.... +10:06:59 Sending to : +10:06:59 ============================================================================ +10:06:59 Sending to : +10:06:59 ============================================================================ +10:06:59 ============================================================================ +10:06:59 Slot Id : <417> +10:06:59 Transaction Type : REQUEST +10:06:59 Received From : +10:06:59 ============================================================================ +10:06:59 FNo. Len. Field Value +10:06:59 ============================================================================ +10:06:59 [ 1] [ 4] [0200] +10:06:59 [ 2] [ 16] [6213548000301430] +10:06:59 [ 3] [ 6] [010000] +10:06:59 [ 4] [ 12] [000030000000] +10:06:59 [ 7] [ 10] [0320100450] +10:06:59 [ 11] [ 6] [937559] +10:06:59 [ 12] [ 6] [100450] +10:06:59 [ 13] [ 4] [0320] +10:06:59 [ 15] [ 4] [0320] +10:06:59 [ 18] [ 4] [6011] +10:06:59 [ 19] [ 3] [418] +10:06:59 [ 22] [ 3] [021] +10:06:59 [ 25] [ 2] [01] +10:06:59 [ 28] [ 9] [D00002000] +10:06:59 [ 32] [ 6] [668899] +10:06:59 [ 35] [ 32] [6213548000301430=180312010143032] +10:06:59 [ 37] [ 12] [507900109327] +10:06:59 [ 41] [ 8] [03020002] +10:06:59 [ 42] [ 15] [APT ] +10:06:59 [ 43] [ 40] [ HEAD OFFICE 02 CHANTHABOU] +10:06:59 [ 49] [ 3] [418] +10:06:59 [ 52] [ 16] [B8EDCEA460589C2F] +10:06:59 ============================================================================ +10:06:59 + + +waiting on router queue for slot.... +10:06:59 Sending to : +10:06:59 ============================================================================ +10:06:59 ============================================================================ +10:06:59 Slot Id : <417> +10:06:59 Transaction Type : REQUEST +10:06:59 Received From : +10:06:59 ============================================================================ +10:06:59 FNo. Len. Field Value +10:06:59 ============================================================================ +10:06:59 [ 1] [ 4] [0200] +10:06:59 [ 2] [ 16] [6213548000301430] +10:06:59 [ 3] [ 6] [010000] +10:06:59 [ 4] [ 12] [000030000000] +10:06:59 [ 7] [ 10] [0320100450] +10:06:59 [ 11] [ 6] [937559] +10:06:59 [ 12] [ 6] [100450] +10:06:59 [ 13] [ 4] [0320] +10:06:59 [ 15] [ 4] [0320] +10:06:59 [ 18] [ 4] [6011] +10:06:59 [ 19] [ 3] [418] +10:06:59 [ 22] [ 3] [021] +10:06:59 [ 25] [ 2] [01] +10:06:59 [ 28] [ 9] [D00002000] +10:06:59 [ 32] [ 6] [668899] +10:06:59 [ 35] [ 32] [6213548000301430=180312010143032] +10:06:59 [ 37] [ 12] [507900109327] +10:06:59 [ 41] [ 8] [03020002] +10:06:59 [ 42] [ 15] [APT ] +10:06:59 [ 43] [ 40] [ HEAD OFFICE 02 CHANTHABOU] +10:06:59 [ 49] [ 3] [418] +10:06:59 [ 52] [ 16] [1AA2D754EBD6938B] +10:06:59 ============================================================================ +10:06:59 + + +waiting on router queue for slot.... +10:06:59 Sending to : <0> +10:06:59 ============================================================================ +10:07:00 ============================================================================ +10:07:00 Slot Id : <417> +10:07:00 Transaction Type : RESPONSE +10:07:00 Received From : +10:07:00 ============================================================================ +10:07:00 FNo. Len. Field Value +10:07:00 ============================================================================ +10:07:00 [ 1] [ 4] [0210] +10:07:00 [ 2] [ 16] [6213548000301430] +10:07:00 [ 3] [ 6] [010000] +10:07:00 [ 4] [ 12] [000030000000] +10:07:00 [ 7] [ 10] [0320100450] +10:07:00 [ 11] [ 6] [937559] +10:07:00 [ 12] [ 6] [100450] +10:07:00 [ 13] [ 4] [0320] +10:07:00 [ 15] [ 4] [0320] +10:07:00 [ 18] [ 4] [6011] +10:07:00 [ 19] [ 3] [418] +10:07:00 [ 32] [ 6] [668899] +10:07:00 [ 35] [ 32] [6213548000301430=180312010143032] +10:07:00 [ 37] [ 12] [507900109327] +10:07:00 [ 38] [ 6] [937559] +10:07:00 [ 39] [ 2] [51] +10:07:00 [ 41] [ 8] [03020002] +10:07:00 [ 49] [ 3] [418] +10:07:00 [ 54] [ 40] [0001418C0000070299830002418C000007029983] +10:07:00 ============================================================================ +10:07:00 Sending to : +10:07:00 ============================================================================ +10:07:00 + + +waiting on router queue for slot.... +10:07:01 ============================================================================ +10:07:01 Slot Id : <417> +10:07:01 Transaction Type : RESPONSE +10:07:01 Received From : +10:07:01 ============================================================================ +10:07:01 FNo. Len. Field Value +10:07:01 ============================================================================ +10:07:01 [ 1] [ 4] [0210] +10:07:01 [ 2] [ 16] [6213548000301430] +10:07:01 [ 3] [ 6] [010000] +10:07:01 [ 4] [ 12] [000030000000] +10:07:01 [ 7] [ 10] [0320100450] +10:07:01 [ 11] [ 6] [937559] +10:07:01 [ 12] [ 6] [100450] +10:07:01 [ 13] [ 4] [0320] +10:07:01 [ 15] [ 4] [0320] +10:07:01 [ 18] [ 4] [6011] +10:07:01 [ 19] [ 3] [418] +10:07:01 [ 32] [ 6] [668899] +10:07:01 [ 35] [ 32] [6213548000301430=180312010143032] +10:07:01 [ 37] [ 12] [507900109327] +10:07:01 [ 38] [ 6] [937559] +10:07:01 [ 39] [ 2] [51] +10:07:01 [ 41] [ 8] [03020002] +10:07:01 [ 49] [ 3] [418] +10:07:01 [ 54] [ 40] [0001418C0000070299830002418C000007029983] +10:07:01 ============================================================================ +10:07:01 Calculate Source COMM Id = 4 +10:07:01 ============================================================================ +10:07:01 + + +waiting on router queue for slot.... +10:07:08 ============================================================================ +10:07:08 Slot Id : <386> +10:07:08 Transaction Type : REQUEST +10:07:08 Received From : +10:07:08 ============================================================================ +10:07:08 FNo. Len. Field Value +10:07:08 ============================================================================ +10:07:08 [ 1] [ 4] [0200] +10:07:08 [ 2] [ 16] [6213544002267539] +10:07:08 [ 3] [ 6] [010000] +10:07:08 [ 4] [ 12] [000049000000] +10:07:08 [ 7] [ 10] [0320101857] +10:07:08 [ 11] [ 6] [412170] +10:07:08 [ 12] [ 6] [101857] +10:07:08 [ 13] [ 4] [0320] +10:07:08 [ 14] [ 4] [1249] +10:07:08 [ 15] [ 4] [0320] +10:07:08 [ 18] [ 4] [6011] +10:07:08 [ 19] [ 3] [418] +10:07:08 [ 22] [ 3] [021] +10:07:08 [ 25] [ 2] [01] +10:07:08 [ 28] [ 9] [D00002000] +10:07:08 [ 32] [ 6] [123401] +10:07:08 [ 35] [ 32] [6213544002267539=491212016753072] +10:07:08 [ 37] [ 12] [507900354406] +10:07:08 [ 41] [ 8] [01002600] +10:07:08 [ 42] [ 15] [APT ] +10:07:08 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +10:07:08 [ 49] [ 3] [418] +10:07:08 [ 52] [ 16] [2C4DB7808E1DB974] +10:07:08 ============================================================================ +10:07:08 + + +waiting on router queue for slot.... +10:07:08 Sending to : +10:07:08 ============================================================================ +10:07:08 Sending to : +10:07:08 ============================================================================ +10:07:08 ============================================================================ +10:07:08 Slot Id : <386> +10:07:08 Transaction Type : REQUEST +10:07:08 Received From : +10:07:08 ============================================================================ +10:07:08 FNo. Len. Field Value +10:07:08 ============================================================================ +10:07:08 [ 1] [ 4] [0200] +10:07:08 [ 2] [ 16] [6213544002267539] +10:07:08 [ 3] [ 6] [010000] +10:07:08 [ 4] [ 12] [000049000000] +10:07:08 [ 7] [ 10] [0320101857] +10:07:08 [ 11] [ 6] [412170] +10:07:08 [ 12] [ 6] [101857] +10:07:08 [ 13] [ 4] [0320] +10:07:08 [ 14] [ 4] [1249] +10:07:08 [ 15] [ 4] [0320] +10:07:08 [ 18] [ 4] [6011] +10:07:08 [ 19] [ 3] [418] +10:07:08 [ 22] [ 3] [021] +10:07:08 [ 25] [ 2] [01] +10:07:08 [ 28] [ 9] [D00002000] +10:07:08 [ 32] [ 6] [123401] +10:07:08 [ 35] [ 32] [6213544002267539=491212016753072] +10:07:08 [ 37] [ 12] [507900354406] +10:07:08 [ 41] [ 8] [01002600] +10:07:08 [ 42] [ 15] [APT ] +10:07:08 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +10:07:08 [ 49] [ 3] [418] +10:07:08 [ 52] [ 16] [2C4DB7808E1DB974] +10:07:08 ============================================================================ +10:07:08 + + +waiting on router queue for slot.... +10:07:08 Sending to : +10:07:08 ============================================================================ +10:07:08 ============================================================================ +10:07:08 Slot Id : <386> +10:07:08 Transaction Type : REQUEST +10:07:08 Received From : +10:07:08 ============================================================================ +10:07:08 FNo. Len. Field Value +10:07:08 ============================================================================ +10:07:08 [ 1] [ 4] [0200] +10:07:08 [ 2] [ 16] [6213544002267539] +10:07:08 [ 3] [ 6] [010000] +10:07:08 [ 4] [ 12] [000049000000] +10:07:08 [ 7] [ 10] [0320101857] +10:07:08 [ 11] [ 6] [412170] +10:07:08 [ 12] [ 6] [101857] +10:07:08 [ 13] [ 4] [0320] +10:07:08 [ 14] [ 4] [1249] +10:07:08 [ 15] [ 4] [0320] +10:07:08 [ 18] [ 4] [6011] +10:07:08 [ 19] [ 3] [418] +10:07:08 [ 22] [ 3] [021] +10:07:08 [ 25] [ 2] [01] +10:07:08 [ 28] [ 9] [D00002000] +10:07:08 [ 32] [ 6] [123401] +10:07:08 [ 35] [ 32] [6213544002267539=491212016753072] +10:07:08 [ 37] [ 12] [507900354406] +10:07:08 [ 41] [ 8] [01002600] +10:07:08 [ 42] [ 15] [APT ] +10:07:08 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +10:07:08 [ 49] [ 3] [418] +10:07:08 [ 52] [ 16] [36613FEA583FEA34] +10:07:08 ============================================================================ +10:07:08 + + +waiting on router queue for slot.... +10:07:08 Sending to : <0> +10:07:08 ============================================================================ +10:07:09 ============================================================================ +10:07:09 Slot Id : <386> +10:07:09 Transaction Type : RESPONSE +10:07:09 Received From : +10:07:09 ============================================================================ +10:07:09 FNo. Len. Field Value +10:07:09 ============================================================================ +10:07:09 [ 1] [ 4] [0210] +10:07:09 [ 2] [ 16] [6213544002267539] +10:07:09 [ 3] [ 6] [010000] +10:07:09 [ 4] [ 12] [000049000000] +10:07:09 [ 7] [ 10] [0320101857] +10:07:09 [ 11] [ 6] [412170] +10:07:09 [ 12] [ 6] [101857] +10:07:09 [ 13] [ 4] [0320] +10:07:09 [ 15] [ 4] [0320] +10:07:09 [ 18] [ 4] [6011] +10:07:09 [ 19] [ 3] [418] +10:07:09 [ 32] [ 6] [123401] +10:07:09 [ 35] [ 32] [6213544002267539=491212016753072] +10:07:09 [ 37] [ 12] [507900354406] +10:07:09 [ 38] [ 6] [412170] +10:07:09 [ 39] [ 2] [51] +10:07:09 [ 41] [ 8] [01002600] +10:07:09 [ 49] [ 3] [418] +10:07:09 [ 54] [ 40] [0001418C0000540000000002418C000054000000] +10:07:09 ============================================================================ +10:07:09 Sending to : +10:07:09 ============================================================================ +10:07:09 + + +waiting on router queue for slot.... +10:07:10 ============================================================================ +10:07:10 Slot Id : <391> +10:07:10 Transaction Type : REQUEST +10:07:10 Received From : +10:07:10 ============================================================================ +10:07:10 FNo. Len. Field Value +10:07:10 ============================================================================ +10:07:10 [ 1] [ 4] [0800] +10:07:10 [ 7] [ 10] [0320030618] +10:07:10 [ 11] [ 6] [155775] +10:07:10 [ 70] [ 3] [301] +10:07:10 ============================================================================ +10:07:10 + + +waiting on router queue for slot.... +10:07:10 Sending to : +10:07:10 ============================================================================ +10:07:10 ============================================================================ +10:07:10 Slot Id : <391> +10:07:10 Transaction Type : RESPONSE +10:07:10 Received From : +10:07:10 ============================================================================ +10:07:10 FNo. Len. Field Value +10:07:10 ============================================================================ +10:07:10 [ 1] [ 4] [0810] +10:07:10 [ 7] [ 10] [0320030618] +10:07:10 [ 11] [ 6] [155775] +10:07:10 [ 39] [ 2] [00] +10:07:10 [ 70] [ 3] [301] +10:07:10 ============================================================================ +10:07:10 Calculate Source COMM Id = 2 +10:07:10 ============================================================================ +10:07:10 + + +waiting on router queue for slot.... +10:07:10 ============================================================================ +10:07:10 Slot Id : <386> +10:07:10 Transaction Type : RESPONSE +10:07:10 Received From : +10:07:10 ============================================================================ +10:07:10 FNo. Len. Field Value +10:07:10 ============================================================================ +10:07:10 [ 1] [ 4] [0210] +10:07:10 [ 2] [ 16] [6213544002267539] +10:07:10 [ 3] [ 6] [010000] +10:07:10 [ 4] [ 12] [000049000000] +10:07:10 [ 7] [ 10] [0320101857] +10:07:10 [ 11] [ 6] [412170] +10:07:10 [ 12] [ 6] [101857] +10:07:10 [ 13] [ 4] [0320] +10:07:10 [ 15] [ 4] [0320] +10:07:10 [ 18] [ 4] [6011] +10:07:10 [ 19] [ 3] [418] +10:07:10 [ 32] [ 6] [123401] +10:07:10 [ 35] [ 32] [6213544002267539=491212016753072] +10:07:10 [ 37] [ 12] [507900354406] +10:07:10 [ 38] [ 6] [412170] +10:07:10 [ 39] [ 2] [51] +10:07:10 [ 41] [ 8] [01002600] +10:07:10 [ 49] [ 3] [418] +10:07:10 [ 54] [ 40] [0001418C0000540000000002418C000054000000] +10:07:10 ============================================================================ +10:07:10 Calculate Source COMM Id = 6 +10:07:10 ============================================================================ +10:07:10 + + +waiting on router queue for slot.... +10:07:11 ============================================================================ +10:07:11 Slot Id : <377> +10:07:11 Transaction Type : REQUEST +10:07:11 Received From : +10:07:11 ============================================================================ +10:07:11 FNo. Len. Field Value +10:07:11 ============================================================================ +10:07:11 [ 1] [ 4] [0800] +10:07:11 [ 2] [ 5] [02531] +10:07:11 [ 3] [ 6] [579108] +10:07:11 [ 7] [ 10] [0320030711] +10:07:11 [ 11] [ 6] [806999] +10:07:11 [ 15] [ 10] [0320030711] +10:07:11 [ 37] [ 11] [57910806999] +10:07:11 [ 70] [ 3] [001] +10:07:11 ============================================================================ +10:07:11 + + +waiting on router queue for slot.... +10:07:11 ============================================================================ +10:07:11 Slot Id : <377> +10:07:11 Transaction Type : RESPONSE +10:07:11 Received From : +10:07:11 ============================================================================ +10:07:11 FNo. Len. Field Value +10:07:11 ============================================================================ +10:07:11 [ 1] [ 4] [0810] +10:07:11 [ 7] [ 10] [0320030711] +10:07:11 [ 11] [ 6] [806999] +10:07:11 [ 15] [ 4] [0320] +10:07:11 [ 37] [ 12] [57910806999] +10:07:11 [ 39] [ 2] [00] +10:07:11 [ 70] [ 3] [001] +10:07:11 ============================================================================ +10:07:11 Sending to : +10:07:11 ============================================================================ +10:07:11 + + +waiting on router queue for slot.... +10:07:12 ============================================================================ +10:07:12 Slot Id : <443> +10:07:12 Transaction Type : REQUEST +10:07:12 Received From : +10:07:12 ============================================================================ +10:07:12 FNo. Len. Field Value +10:07:12 ============================================================================ +10:07:12 [ 1] [ 4] [0800] +10:07:12 [ 7] [ 10] [0320030708] +10:07:12 [ 11] [ 6] [020262] +10:07:12 [ 37] [ 12] [507910020262] +10:07:12 [ 70] [ 3] [001] +10:07:12 ============================================================================ +10:07:12 + + +waiting on router queue for slot.... +10:07:12 Sending to : +10:07:12 ============================================================================ +10:07:12 ============================================================================ +10:07:12 Slot Id : <443> +10:07:12 Transaction Type : RESPONSE +10:07:12 Received From : +10:07:12 ============================================================================ +10:07:12 FNo. Len. Field Value +10:07:12 ============================================================================ +10:07:12 [ 1] [ 4] [0810] +10:07:12 [ 7] [ 10] [0320030708] +10:07:12 [ 11] [ 6] [020262] +10:07:12 [ 37] [ 12] [507910020262] +10:07:12 [ 39] [ 2] [00] +10:07:12 [ 70] [ 3] [001] +10:07:12 ============================================================================ +10:07:12 Calculate Source COMM Id = 0 +10:07:12 ============================================================================ +10:07:12 + + +waiting on router queue for slot.... +10:07:14 ============================================================================ +10:07:14 Slot Id : <405> +10:07:14 Transaction Type : REQUEST +10:07:14 Received From : +10:07:14 ============================================================================ +10:07:14 FNo. Len. Field Value +10:07:14 ============================================================================ +10:07:14 [ 1] [ 4] [0200] +10:07:14 [ 2] [ 16] [1888880000077990] +10:07:14 [ 3] [ 6] [010000] +10:07:14 [ 4] [ 12] [000050000000] +10:07:14 [ 7] [ 10] [0320100505] +10:07:14 [ 11] [ 6] [937574] +10:07:14 [ 12] [ 6] [100505] +10:07:14 [ 13] [ 4] [0320] +10:07:14 [ 15] [ 4] [0320] +10:07:14 [ 18] [ 4] [6011] +10:07:14 [ 19] [ 3] [418] +10:07:14 [ 22] [ 3] [021] +10:07:14 [ 25] [ 2] [01] +10:07:14 [ 28] [ 9] [D00002000] +10:07:14 [ 32] [ 6] [668899] +10:07:14 [ 35] [ 32] [1888880000077990=000010100000231] +10:07:14 [ 37] [ 12] [507901955617] +10:07:14 [ 41] [ 8] [03020018] +10:07:14 [ 42] [ 15] [APT ] +10:07:14 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +10:07:14 [ 49] [ 3] [418] +10:07:14 [ 52] [ 16] [741714B42875EAEB] +10:07:14 ============================================================================ +10:07:14 + + +waiting on router queue for slot.... +10:07:14 Sending to : +10:07:14 ============================================================================ +10:07:14 Sending to : +10:07:14 ============================================================================ +10:07:14 ============================================================================ +10:07:14 Slot Id : <405> +10:07:14 Transaction Type : REQUEST +10:07:14 Received From : +10:07:14 ============================================================================ +10:07:14 FNo. Len. Field Value +10:07:14 ============================================================================ +10:07:14 [ 1] [ 4] [0200] +10:07:14 [ 2] [ 16] [1888880000077990] +10:07:14 [ 3] [ 6] [010000] +10:07:14 [ 4] [ 12] [000050000000] +10:07:14 [ 7] [ 10] [0320100505] +10:07:14 [ 11] [ 6] [937574] +10:07:14 [ 12] [ 6] [100505] +10:07:14 [ 13] [ 4] [0320] +10:07:14 [ 15] [ 4] [0320] +10:07:14 [ 18] [ 4] [6011] +10:07:14 [ 19] [ 3] [418] +10:07:14 [ 22] [ 3] [021] +10:07:14 [ 25] [ 2] [01] +10:07:14 [ 28] [ 9] [D00002000] +10:07:14 [ 32] [ 6] [668899] +10:07:14 [ 35] [ 32] [1888880000077990=000010100000231] +10:07:14 [ 37] [ 12] [507901955617] +10:07:14 [ 41] [ 8] [03020018] +10:07:14 [ 42] [ 15] [APT ] +10:07:14 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +10:07:14 [ 49] [ 3] [418] +10:07:14 [ 52] [ 16] [741714B42875EAEB] +10:07:14 ============================================================================ +10:07:14 + + +waiting on router queue for slot.... +10:07:14 Sending to : +10:07:14 ============================================================================ +10:07:14 ============================================================================ +10:07:14 Slot Id : <405> +10:07:14 Transaction Type : REQUEST +10:07:14 Received From : +10:07:14 ============================================================================ +10:07:14 FNo. Len. Field Value +10:07:14 ============================================================================ +10:07:14 [ 1] [ 4] [0200] +10:07:14 [ 2] [ 16] [1888880000077990] +10:07:14 [ 3] [ 6] [010000] +10:07:14 [ 4] [ 12] [000050000000] +10:07:14 [ 7] [ 10] [0320100505] +10:07:14 [ 11] [ 6] [937574] +10:07:14 [ 12] [ 6] [100505] +10:07:14 [ 13] [ 4] [0320] +10:07:14 [ 15] [ 4] [0320] +10:07:14 [ 18] [ 4] [6011] +10:07:14 [ 19] [ 3] [418] +10:07:14 [ 22] [ 3] [021] +10:07:14 [ 25] [ 2] [01] +10:07:14 [ 28] [ 9] [D00002000] +10:07:14 [ 32] [ 6] [668899] +10:07:14 [ 35] [ 32] [1888880000077990=000010100000231] +10:07:14 [ 37] [ 12] [507901955617] +10:07:14 [ 41] [ 8] [03020018] +10:07:14 [ 42] [ 15] [APT ] +10:07:14 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +10:07:14 [ 49] [ 3] [418] +10:07:14 [ 52] [ 16] [1637EE0AAD0CBEC5] +10:07:14 ============================================================================ +10:07:14 + + +waiting on router queue for slot.... +10:07:14 Sending to : <5> +10:07:14 ============================================================================ +10:07:23 ============================================================================ +10:07:23 Slot Id : <405> +10:07:23 Transaction Type : RESPONSE +10:07:23 Received From : +10:07:23 ============================================================================ +10:07:23 FNo. Len. Field Value +10:07:23 ============================================================================ +10:07:23 [ 1] [ 4] [0210] +10:07:23 [ 2] [ 16] [1888880000077990] +10:07:23 [ 3] [ 6] [010000] +10:07:23 [ 4] [ 12] [000050000000] +10:07:23 [ 7] [ 10] [0320100505] +10:07:23 [ 11] [ 6] [937574] +10:07:23 [ 12] [ 6] [100505] +10:07:23 [ 13] [ 4] [0320] +10:07:23 [ 15] [ 4] [0320] +10:07:23 [ 18] [ 4] [6011] +10:07:23 [ 19] [ 3] [418] +10:07:23 [ 32] [ 6] [668899] +10:07:23 [ 37] [ 12] [507901955617] +10:07:23 [ 38] [ 6] [592859] +10:07:23 [ 39] [ 2] [00] +10:07:23 [ 41] [ 8] [03020018] +10:07:23 [ 49] [ 3] [418] +10:07:23 [ 54] [ 0] [] +10:07:23 ============================================================================ +10:07:23 Sending to : +10:07:23 ============================================================================ +10:07:23 + + +waiting on router queue for slot.... +10:07:24 ============================================================================ +10:07:24 Slot Id : <405> +10:07:24 Transaction Type : RESPONSE +10:07:24 Received From : +10:07:24 ============================================================================ +10:07:24 FNo. Len. Field Value +10:07:24 ============================================================================ +10:07:24 [ 1] [ 4] [0210] +10:07:24 [ 2] [ 16] [1888880000077990] +10:07:24 [ 3] [ 6] [010000] +10:07:24 [ 4] [ 12] [000050000000] +10:07:24 [ 7] [ 10] [0320100505] +10:07:24 [ 11] [ 6] [937574] +10:07:24 [ 12] [ 6] [100505] +10:07:24 [ 13] [ 4] [0320] +10:07:24 [ 15] [ 4] [0320] +10:07:24 [ 18] [ 4] [6011] +10:07:24 [ 19] [ 3] [418] +10:07:24 [ 32] [ 6] [668899] +10:07:24 [ 37] [ 12] [507901955617] +10:07:24 [ 38] [ 6] [592859] +10:07:24 [ 39] [ 2] [00] +10:07:24 [ 41] [ 8] [03020018] +10:07:24 [ 49] [ 3] [418] +10:07:24 [ 54] [ 0] [] +10:07:24 ============================================================================ +10:07:24 Calculate Source COMM Id = 4 +10:07:24 ============================================================================ +10:07:24 + + +waiting on router queue for slot.... +10:07:27 ============================================================================ +10:07:27 Slot Id : <456> +10:07:27 Transaction Type : REQUEST +10:07:27 Received From : +10:07:27 ============================================================================ +10:07:27 FNo. Len. Field Value +10:07:27 ============================================================================ +10:07:27 [ 1] [ 4] [0800] +10:07:27 [ 7] [ 10] [0320030634] +10:07:27 [ 11] [ 6] [155776] +10:07:27 [ 70] [ 3] [301] +10:07:27 ============================================================================ +10:07:27 + + +waiting on router queue for slot.... +10:07:27 Sending to : +10:07:27 ============================================================================ +10:07:27 ============================================================================ +10:07:27 Slot Id : <456> +10:07:27 Transaction Type : RESPONSE +10:07:27 Received From : +10:07:27 ============================================================================ +10:07:27 FNo. Len. Field Value +10:07:27 ============================================================================ +10:07:27 [ 1] [ 4] [0810] +10:07:27 [ 7] [ 10] [0320030634] +10:07:27 [ 11] [ 6] [155776] +10:07:27 [ 39] [ 2] [00] +10:07:27 [ 70] [ 3] [301] +10:07:27 ============================================================================ +10:07:27 Calculate Source COMM Id = 2 +10:07:27 ============================================================================ +10:07:27 + + +waiting on router queue for slot.... +10:07:35 ============================================================================ +10:07:35 Slot Id : <446> +10:07:35 Transaction Type : REQUEST +10:07:35 Received From : +10:07:35 ============================================================================ +10:07:35 FNo. Len. Field Value +10:07:35 ============================================================================ +10:07:35 [ 1] [ 4] [0200] +10:07:35 [ 2] [ 16] [6213545000896153] +10:07:35 [ 3] [ 6] [011000] +10:07:35 [ 4] [ 12] [000067000000] +10:07:35 [ 7] [ 10] [0320030641] +10:07:35 [ 11] [ 6] [267954] +10:07:35 [ 12] [ 6] [100641] +10:07:35 [ 13] [ 4] [0320] +10:07:35 [ 14] [ 4] [4912] +10:07:35 [ 15] [ 4] [0320] +10:07:35 [ 18] [ 4] [6011] +10:07:35 [ 19] [ 3] [418] +10:07:35 [ 22] [ 3] [021] +10:07:35 [ 25] [ 2] [01] +10:07:35 [ 28] [ 9] [D00002000] +10:07:35 [ 32] [ 6] [180893] +10:07:35 [ 35] [ 32] [6213545000896153=491212019615314] +10:07:35 [ 37] [ 12] [507903267954] +10:07:35 [ 41] [ 8] [0261PSL1] +10:07:35 [ 42] [ 15] [999999 ] +10:07:35 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +10:07:35 [ 49] [ 3] [418] +10:07:35 [ 52] [ 16] [C21FA2039C071761] +10:07:35 ============================================================================ +10:07:35 + + +waiting on router queue for slot.... +10:07:35 Sending to : +10:07:35 ============================================================================ +10:07:35 Sending to : +10:07:35 ============================================================================ +10:07:35 ============================================================================ +10:07:35 Slot Id : <446> +10:07:35 Transaction Type : REQUEST +10:07:35 Received From : +10:07:35 ============================================================================ +10:07:35 FNo. Len. Field Value +10:07:35 ============================================================================ +10:07:35 [ 1] [ 4] [0200] +10:07:35 [ 2] [ 16] [6213545000896153] +10:07:35 [ 3] [ 6] [011000] +10:07:35 [ 4] [ 12] [000067000000] +10:07:35 [ 7] [ 10] [0320030641] +10:07:35 [ 11] [ 6] [267954] +10:07:35 [ 12] [ 6] [100641] +10:07:35 [ 13] [ 4] [0320] +10:07:35 [ 14] [ 4] [4912] +10:07:35 [ 15] [ 4] [0320] +10:07:35 [ 18] [ 4] [6011] +10:07:35 [ 19] [ 3] [418] +10:07:35 [ 22] [ 3] [021] +10:07:35 [ 25] [ 2] [01] +10:07:35 [ 28] [ 9] [D00002000] +10:07:35 [ 32] [ 6] [180893] +10:07:35 [ 35] [ 32] [6213545000896153=491212019615314] +10:07:35 [ 37] [ 12] [507903267954] +10:07:35 [ 41] [ 8] [0261PSL1] +10:07:35 [ 42] [ 15] [999999 ] +10:07:35 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +10:07:35 [ 49] [ 3] [418] +10:07:35 [ 52] [ 16] [C21FA2039C071761] +10:07:35 ============================================================================ +10:07:35 + + +waiting on router queue for slot.... +10:07:35 Sending to : +10:07:35 ============================================================================ +10:07:35 ============================================================================ +10:07:35 Slot Id : <446> +10:07:35 Transaction Type : REQUEST +10:07:35 Received From : +10:07:35 ============================================================================ +10:07:35 FNo. Len. Field Value +10:07:35 ============================================================================ +10:07:35 [ 1] [ 4] [0200] +10:07:35 [ 2] [ 16] [6213545000896153] +10:07:35 [ 3] [ 6] [011000] +10:07:35 [ 4] [ 12] [000067000000] +10:07:35 [ 7] [ 10] [0320030641] +10:07:35 [ 11] [ 6] [267954] +10:07:35 [ 12] [ 6] [100641] +10:07:35 [ 13] [ 4] [0320] +10:07:35 [ 14] [ 4] [4912] +10:07:35 [ 15] [ 4] [0320] +10:07:35 [ 18] [ 4] [6011] +10:07:35 [ 19] [ 3] [418] +10:07:35 [ 22] [ 3] [021] +10:07:35 [ 25] [ 2] [01] +10:07:35 [ 28] [ 9] [D00002000] +10:07:35 [ 32] [ 6] [180893] +10:07:35 [ 35] [ 32] [6213545000896153=491212019615314] +10:07:35 [ 37] [ 12] [507903267954] +10:07:35 [ 41] [ 8] [0261PSL1] +10:07:35 [ 42] [ 15] [999999 ] +10:07:35 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +10:07:35 [ 49] [ 3] [418] +10:07:35 [ 52] [ 16] [52AA040F2BE10E19] +10:07:35 ============================================================================ +10:07:35 + + +waiting on router queue for slot.... +10:07:35 Sending to : <0> +10:07:35 ============================================================================ +10:07:36 ============================================================================ +10:07:36 Slot Id : <446> +10:07:36 Transaction Type : RESPONSE +10:07:36 Received From : +10:07:36 ============================================================================ +10:07:36 FNo. Len. Field Value +10:07:36 ============================================================================ +10:07:36 [ 1] [ 4] [0210] +10:07:36 [ 2] [ 16] [6213545000896153] +10:07:36 [ 3] [ 6] [011000] +10:07:36 [ 4] [ 12] [000067000000] +10:07:36 [ 7] [ 10] [0320030641] +10:07:36 [ 11] [ 6] [267954] +10:07:36 [ 12] [ 6] [100641] +10:07:36 [ 13] [ 4] [0320] +10:07:36 [ 15] [ 4] [0320] +10:07:36 [ 18] [ 4] [6011] +10:07:36 [ 19] [ 3] [418] +10:07:36 [ 32] [ 6] [180893] +10:07:36 [ 35] [ 32] [6213545000896153=491212019615314] +10:07:36 [ 37] [ 12] [507903267954] +10:07:36 [ 38] [ 6] [714678] +10:07:36 [ 39] [ 2] [00] +10:07:36 [ 41] [ 8] [0261PSL1] +10:07:36 [ 49] [ 3] [418] +10:07:36 [ 54] [ 40] [1001418C0000056087801002418C000005608780] +10:07:36 ============================================================================ +10:07:36 Sending to : +10:07:36 ============================================================================ +10:07:36 + + +waiting on router queue for slot.... +10:07:38 ============================================================================ +10:07:38 Slot Id : <446> +10:07:38 Transaction Type : RESPONSE +10:07:38 Received From : +10:07:38 ============================================================================ +10:07:38 FNo. Len. Field Value +10:07:38 ============================================================================ +10:07:38 [ 1] [ 4] [0210] +10:07:38 [ 2] [ 16] [6213545000896153] +10:07:38 [ 3] [ 6] [011000] +10:07:38 [ 4] [ 12] [000067000000] +10:07:38 [ 7] [ 10] [0320030641] +10:07:38 [ 11] [ 6] [267954] +10:07:38 [ 12] [ 6] [100641] +10:07:38 [ 13] [ 4] [0320] +10:07:38 [ 15] [ 4] [0320] +10:07:38 [ 18] [ 4] [6011] +10:07:38 [ 19] [ 3] [418] +10:07:38 [ 32] [ 6] [180893] +10:07:38 [ 35] [ 32] [6213545000896153=491212019615314] +10:07:38 [ 37] [ 12] [507903267954] +10:07:38 [ 38] [ 6] [714678] +10:07:38 [ 39] [ 2] [00] +10:07:38 [ 41] [ 8] [0261PSL1] +10:07:38 [ 49] [ 3] [418] +10:07:38 [ 54] [ 40] [1001418C0000056087801002418C000005608780] +10:07:38 ============================================================================ +10:07:38 Calculate Source COMM Id = 2 +10:07:38 ============================================================================ +10:07:38 + + +waiting on router queue for slot.... +10:07:41 ============================================================================ +10:07:41 Slot Id : <429> +10:07:41 Transaction Type : REQUEST +10:07:41 Received From : +10:07:41 ============================================================================ +10:07:41 FNo. Len. Field Value +10:07:41 ============================================================================ +10:07:41 [ 1] [ 4] [0200] +10:07:41 [ 2] [ 16] [6688990040146464] +10:07:41 [ 3] [ 6] [012000] +10:07:41 [ 4] [ 12] [000100000000] +10:07:41 [ 7] [ 10] [0320100737] +10:07:41 [ 11] [ 6] [709252] +10:07:41 [ 12] [ 6] [100737] +10:07:41 [ 13] [ 4] [0320] +10:07:41 [ 15] [ 4] [0320] +10:07:41 [ 18] [ 4] [6011] +10:07:41 [ 22] [ 3] [900] +10:07:41 [ 25] [ 2] [02] +10:07:41 [ 28] [ 9] [D00002000] +10:07:41 [ 32] [ 6] [621354] +10:07:41 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:07:41 [ 37] [ 12] [507905261855] +10:07:41 [ 41] [ 8] [19000900] +10:07:41 [ 42] [ 15] [NATIVE ] +10:07:41 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:07:41 [ 49] [ 3] [418] +10:07:41 [ 52] [ 16] [6D289394F576AEED] +10:07:41 ============================================================================ +10:07:41 + + +waiting on router queue for slot.... +10:07:41 Sending to : +10:07:41 ============================================================================ +10:07:41 Sending to : +10:07:41 ============================================================================ +10:07:41 ============================================================================ +10:07:41 Slot Id : <429> +10:07:41 Transaction Type : REQUEST +10:07:41 Received From : +10:07:41 ============================================================================ +10:07:41 FNo. Len. Field Value +10:07:41 ============================================================================ +10:07:41 [ 1] [ 4] [0200] +10:07:41 [ 2] [ 16] [6688990040146464] +10:07:41 [ 3] [ 6] [012000] +10:07:41 [ 4] [ 12] [000100000000] +10:07:41 [ 7] [ 10] [0320100737] +10:07:41 [ 11] [ 6] [709252] +10:07:41 [ 12] [ 6] [100737] +10:07:41 [ 13] [ 4] [0320] +10:07:41 [ 15] [ 4] [0320] +10:07:41 [ 18] [ 4] [6011] +10:07:41 [ 22] [ 3] [900] +10:07:41 [ 25] [ 2] [02] +10:07:41 [ 28] [ 9] [D00002000] +10:07:41 [ 32] [ 6] [621354] +10:07:41 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:07:41 [ 37] [ 12] [507905261855] +10:07:41 [ 41] [ 8] [19000900] +10:07:41 [ 42] [ 15] [NATIVE ] +10:07:41 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:07:41 [ 49] [ 3] [418] +10:07:41 [ 52] [ 16] [6D289394F576AEED] +10:07:41 ============================================================================ +10:07:41 + + +waiting on router queue for slot.... +10:07:41 Sending to : +10:07:41 ============================================================================ +10:07:41 ============================================================================ +10:07:41 Slot Id : <429> +10:07:41 Transaction Type : REQUEST +10:07:41 Received From : +10:07:41 ============================================================================ +10:07:41 FNo. Len. Field Value +10:07:41 ============================================================================ +10:07:41 [ 1] [ 4] [0200] +10:07:41 [ 2] [ 16] [6688990040146464] +10:07:41 [ 3] [ 6] [012000] +10:07:41 [ 4] [ 12] [000100000000] +10:07:41 [ 7] [ 10] [0320100737] +10:07:41 [ 11] [ 6] [709252] +10:07:41 [ 12] [ 6] [100737] +10:07:41 [ 13] [ 4] [0320] +10:07:41 [ 15] [ 4] [0320] +10:07:41 [ 18] [ 4] [6011] +10:07:41 [ 22] [ 3] [900] +10:07:41 [ 25] [ 2] [02] +10:07:41 [ 28] [ 9] [D00002000] +10:07:41 [ 32] [ 6] [621354] +10:07:41 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:07:41 [ 37] [ 12] [507905261855] +10:07:41 [ 41] [ 8] [19000900] +10:07:41 [ 42] [ 15] [NATIVE ] +10:07:41 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:07:41 [ 49] [ 3] [418] +10:07:41 [ 52] [ 16] [5814B7A2D264FE27] +10:07:41 ============================================================================ +10:07:41 + + +waiting on router queue for slot.... +10:07:41 Sending to : <4> +10:07:41 ============================================================================ +10:07:43 ============================================================================ +10:07:43 Slot Id : <429> +10:07:43 Transaction Type : RESPONSE +10:07:43 Received From : +10:07:43 ============================================================================ +10:07:43 FNo. Len. Field Value +10:07:43 ============================================================================ +10:07:43 [ 1] [ 4] [0210] +10:07:43 [ 2] [ 16] [6688990040146464] +10:07:43 [ 3] [ 6] [012000] +10:07:43 [ 4] [ 12] [000100000000] +10:07:43 [ 11] [ 6] [709252] +10:07:43 [ 12] [ 6] [100737] +10:07:43 [ 15] [ 4] [0320] +10:07:43 [ 18] [ 4] [6011] +10:07:43 [ 32] [ 6] [621354] +10:07:43 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:07:43 [ 37] [ 12] [507905261855] +10:07:43 [ 38] [ 6] [811599] +10:07:43 [ 39] [ 2] [00] +10:07:43 [ 41] [ 8] [19000900] +10:07:43 [ 49] [ 3] [418] +10:07:43 [ 54] [ 20] [2002418C000406000000] +10:07:43 ============================================================================ +10:07:43 Sending to : +10:07:43 ============================================================================ +10:07:43 + + +waiting on router queue for slot.... +10:07:45 ============================================================================ +10:07:45 Slot Id : <429> +10:07:45 Transaction Type : RESPONSE +10:07:45 Received From : +10:07:45 ============================================================================ +10:07:45 FNo. Len. Field Value +10:07:45 ============================================================================ +10:07:45 [ 1] [ 4] [0210] +10:07:45 [ 2] [ 16] [6688990040146464] +10:07:45 [ 3] [ 6] [012000] +10:07:45 [ 4] [ 12] [000100000000] +10:07:45 [ 11] [ 6] [709252] +10:07:45 [ 12] [ 6] [100737] +10:07:45 [ 15] [ 4] [0320] +10:07:45 [ 18] [ 4] [6011] +10:07:45 [ 32] [ 6] [621354] +10:07:45 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:07:45 [ 37] [ 12] [507905261855] +10:07:45 [ 38] [ 6] [811599] +10:07:45 [ 39] [ 2] [00] +10:07:45 [ 41] [ 8] [19000900] +10:07:45 [ 49] [ 3] [418] +10:07:45 [ 54] [ 20] [2002418C000406000000] +10:07:45 ============================================================================ +10:07:45 Calculate Source COMM Id = 0 +10:07:45 ============================================================================ +10:07:45 + + +waiting on router queue for slot.... +10:07:49 ============================================================================ +10:07:49 Slot Id : <435> +10:07:49 Transaction Type : REQUEST +10:07:49 Received From : +10:07:49 ============================================================================ +10:07:49 FNo. Len. Field Value +10:07:49 ============================================================================ +10:07:49 [ 1] [ 4] [0200] +10:07:49 [ 2] [ 16] [6213544002267539] +10:07:49 [ 3] [ 6] [010000] +10:07:49 [ 4] [ 12] [000048000000] +10:07:49 [ 7] [ 10] [0320101938] +10:07:49 [ 11] [ 6] [412174] +10:07:49 [ 12] [ 6] [101938] +10:07:49 [ 13] [ 4] [0320] +10:07:49 [ 14] [ 4] [1249] +10:07:49 [ 15] [ 4] [0320] +10:07:49 [ 18] [ 4] [6011] +10:07:49 [ 19] [ 3] [418] +10:07:49 [ 22] [ 3] [021] +10:07:49 [ 25] [ 2] [01] +10:07:49 [ 28] [ 9] [D00002000] +10:07:49 [ 32] [ 6] [123401] +10:07:49 [ 35] [ 32] [6213544002267539=491212016753072] +10:07:49 [ 37] [ 12] [507900354408] +10:07:49 [ 41] [ 8] [01002600] +10:07:49 [ 42] [ 15] [APT ] +10:07:49 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +10:07:49 [ 49] [ 3] [418] +10:07:49 [ 52] [ 16] [2C4DB7808E1DB974] +10:07:49 ============================================================================ +10:07:49 + + +waiting on router queue for slot.... +10:07:49 Sending to : +10:07:49 ============================================================================ +10:07:49 Sending to : +10:07:49 ============================================================================ +10:07:49 ============================================================================ +10:07:49 Slot Id : <435> +10:07:49 Transaction Type : REQUEST +10:07:49 Received From : +10:07:49 ============================================================================ +10:07:49 FNo. Len. Field Value +10:07:49 ============================================================================ +10:07:49 [ 1] [ 4] [0200] +10:07:49 [ 2] [ 16] [6213544002267539] +10:07:49 [ 3] [ 6] [010000] +10:07:49 [ 4] [ 12] [000048000000] +10:07:49 [ 7] [ 10] [0320101938] +10:07:49 [ 11] [ 6] [412174] +10:07:49 [ 12] [ 6] [101938] +10:07:49 [ 13] [ 4] [0320] +10:07:49 [ 14] [ 4] [1249] +10:07:49 [ 15] [ 4] [0320] +10:07:49 [ 18] [ 4] [6011] +10:07:49 [ 19] [ 3] [418] +10:07:49 [ 22] [ 3] [021] +10:07:49 [ 25] [ 2] [01] +10:07:49 [ 28] [ 9] [D00002000] +10:07:49 [ 32] [ 6] [123401] +10:07:49 [ 35] [ 32] [6213544002267539=491212016753072] +10:07:49 [ 37] [ 12] [507900354408] +10:07:49 [ 41] [ 8] [01002600] +10:07:49 [ 42] [ 15] [APT ] +10:07:49 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +10:07:49 [ 49] [ 3] [418] +10:07:49 [ 52] [ 16] [2C4DB7808E1DB974] +10:07:49 ============================================================================ +10:07:49 + + +waiting on router queue for slot.... +10:07:49 Sending to : +10:07:49 ============================================================================ +10:07:49 ============================================================================ +10:07:49 Slot Id : <435> +10:07:49 Transaction Type : REQUEST +10:07:49 Received From : +10:07:49 ============================================================================ +10:07:49 FNo. Len. Field Value +10:07:49 ============================================================================ +10:07:49 [ 1] [ 4] [0200] +10:07:49 [ 2] [ 16] [6213544002267539] +10:07:49 [ 3] [ 6] [010000] +10:07:49 [ 4] [ 12] [000048000000] +10:07:49 [ 7] [ 10] [0320101938] +10:07:49 [ 11] [ 6] [412174] +10:07:49 [ 12] [ 6] [101938] +10:07:49 [ 13] [ 4] [0320] +10:07:49 [ 14] [ 4] [1249] +10:07:49 [ 15] [ 4] [0320] +10:07:49 [ 18] [ 4] [6011] +10:07:49 [ 19] [ 3] [418] +10:07:49 [ 22] [ 3] [021] +10:07:49 [ 25] [ 2] [01] +10:07:49 [ 28] [ 9] [D00002000] +10:07:49 [ 32] [ 6] [123401] +10:07:49 [ 35] [ 32] [6213544002267539=491212016753072] +10:07:49 [ 37] [ 12] [507900354408] +10:07:49 [ 41] [ 8] [01002600] +10:07:49 [ 42] [ 15] [APT ] +10:07:49 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +10:07:49 [ 49] [ 3] [418] +10:07:49 [ 52] [ 16] [36613FEA583FEA34] +10:07:49 ============================================================================ +10:07:49 + + +waiting on router queue for slot.... +10:07:49 Sending to : <0> +10:07:49 ============================================================================ +10:07:50 ============================================================================ +10:07:50 Slot Id : <435> +10:07:50 Transaction Type : RESPONSE +10:07:50 Received From : +10:07:50 ============================================================================ +10:07:50 FNo. Len. Field Value +10:07:50 ============================================================================ +10:07:50 [ 1] [ 4] [0210] +10:07:50 [ 2] [ 16] [6213544002267539] +10:07:50 [ 3] [ 6] [010000] +10:07:50 [ 4] [ 12] [000048000000] +10:07:50 [ 7] [ 10] [0320101938] +10:07:50 [ 11] [ 6] [412174] +10:07:50 [ 12] [ 6] [101938] +10:07:50 [ 13] [ 4] [0320] +10:07:50 [ 15] [ 4] [0320] +10:07:50 [ 18] [ 4] [6011] +10:07:50 [ 19] [ 3] [418] +10:07:50 [ 32] [ 6] [123401] +10:07:50 [ 35] [ 32] [6213544002267539=491212016753072] +10:07:50 [ 37] [ 12] [507900354408] +10:07:50 [ 38] [ 6] [913884] +10:07:50 [ 39] [ 2] [00] +10:07:50 [ 41] [ 8] [01002600] +10:07:50 [ 49] [ 3] [418] +10:07:50 [ 54] [ 40] [0001418C0000058000000002418C000005800000] +10:07:50 ============================================================================ +10:07:50 Sending to : +10:07:50 ============================================================================ +10:07:50 + + +waiting on router queue for slot.... +10:07:52 ============================================================================ +10:07:52 Slot Id : <435> +10:07:52 Transaction Type : RESPONSE +10:07:52 Received From : +10:07:52 ============================================================================ +10:07:52 FNo. Len. Field Value +10:07:52 ============================================================================ +10:07:52 [ 1] [ 4] [0210] +10:07:52 [ 2] [ 16] [6213544002267539] +10:07:52 [ 3] [ 6] [010000] +10:07:52 [ 4] [ 12] [000048000000] +10:07:52 [ 7] [ 10] [0320101938] +10:07:52 [ 11] [ 6] [412174] +10:07:52 [ 12] [ 6] [101938] +10:07:52 [ 13] [ 4] [0320] +10:07:52 [ 15] [ 4] [0320] +10:07:52 [ 18] [ 4] [6011] +10:07:52 [ 19] [ 3] [418] +10:07:52 [ 32] [ 6] [123401] +10:07:52 [ 35] [ 32] [6213544002267539=491212016753072] +10:07:52 [ 37] [ 12] [507900354408] +10:07:52 [ 38] [ 6] [913884] +10:07:52 [ 39] [ 2] [00] +10:07:52 [ 41] [ 8] [01002600] +10:07:52 [ 49] [ 3] [418] +10:07:52 [ 54] [ 40] [0001418C0000058000000002418C000005800000] +10:07:52 ============================================================================ +10:07:52 Calculate Source COMM Id = 6 +10:07:52 ============================================================================ +10:07:52 + + +waiting on router queue for slot.... +10:07:53 ============================================================================ +10:07:53 Slot Id : <424> +10:07:53 Transaction Type : REQUEST +10:07:53 Received From : +10:07:53 ============================================================================ +10:07:53 FNo. Len. Field Value +10:07:53 ============================================================================ +10:07:53 [ 1] [ 4] [0800] +10:07:53 [ 7] [ 10] [0320030701] +10:07:53 [ 11] [ 6] [155777] +10:07:53 [ 70] [ 3] [301] +10:07:53 ============================================================================ +10:07:53 + + +waiting on router queue for slot.... +10:07:53 Sending to : +10:07:53 ============================================================================ +10:07:53 ============================================================================ +10:07:53 Slot Id : <424> +10:07:53 Transaction Type : RESPONSE +10:07:53 Received From : +10:07:53 ============================================================================ +10:07:53 FNo. Len. Field Value +10:07:53 ============================================================================ +10:07:53 [ 1] [ 4] [0810] +10:07:53 [ 7] [ 10] [0320030701] +10:07:53 [ 11] [ 6] [155777] +10:07:53 [ 39] [ 2] [00] +10:07:53 [ 70] [ 3] [301] +10:07:53 ============================================================================ +10:07:53 Calculate Source COMM Id = 2 +10:07:53 ============================================================================ +10:07:53 + + +waiting on router queue for slot.... +10:07:54 ============================================================================ +10:07:54 Slot Id : <445> +10:07:54 Transaction Type : REQUEST +10:07:54 Received From : +10:07:54 ============================================================================ +10:07:54 FNo. Len. Field Value +10:07:54 ============================================================================ +10:07:54 [ 1] [ 4] [0800] +10:07:54 [ 7] [ 10] [0320171943] +10:07:54 [ 11] [ 6] [101943] +10:07:54 [ 37] [ 12] [57910101943] +10:07:54 [ 70] [ 3] [301] +10:07:54 ============================================================================ +10:07:54 + + +waiting on router queue for slot.... +10:07:54 Sending to : +10:07:54 ============================================================================ +10:07:54 ============================================================================ +10:07:54 Slot Id : <445> +10:07:54 Transaction Type : RESPONSE +10:07:54 Received From : +10:07:54 ============================================================================ +10:07:54 FNo. Len. Field Value +10:07:54 ============================================================================ +10:07:54 [ 1] [ 4] [0810] +10:07:54 [ 7] [ 10] [0320171943] +10:07:54 [ 11] [ 6] [101943] +10:07:54 [ 37] [ 12] [579101019430] +10:07:54 [ 39] [ 2] [00] +10:07:54 [ 70] [ 3] [810] +10:07:54 ============================================================================ +10:07:54 Calculate Source COMM Id = 6 +10:07:54 ============================================================================ +10:07:54 + + +waiting on router queue for slot.... +10:08:02 ============================================================================ +10:08:02 Slot Id : <404> +10:08:02 Transaction Type : REQUEST +10:08:02 Received From : +10:08:02 ============================================================================ +10:08:02 FNo. Len. Field Value +10:08:02 ============================================================================ +10:08:02 [ 1] [ 4] [0200] +10:08:02 [ 2] [ 16] [6213544001801007] +10:08:02 [ 3] [ 6] [010000] +10:08:02 [ 4] [ 12] [000010000000] +10:08:02 [ 7] [ 10] [0320100553] +10:08:02 [ 11] [ 6] [937624] +10:08:02 [ 12] [ 6] [100553] +10:08:02 [ 13] [ 4] [0320] +10:08:02 [ 15] [ 4] [0320] +10:08:02 [ 18] [ 4] [6011] +10:08:02 [ 19] [ 3] [418] +10:08:02 [ 22] [ 3] [021] +10:08:02 [ 25] [ 2] [01] +10:08:02 [ 28] [ 9] [D00002000] +10:08:02 [ 32] [ 6] [668899] +10:08:02 [ 35] [ 32] [6213544001801007=491212010100967] +10:08:02 [ 37] [ 12] [507901963428] +10:08:02 [ 41] [ 8] [03020019] +10:08:02 [ 42] [ 15] [APT ] +10:08:02 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +10:08:02 [ 49] [ 3] [418] +10:08:02 [ 52] [ 16] [5C6526A171FDEC2E] +10:08:02 ============================================================================ +10:08:02 + + +waiting on router queue for slot.... +10:08:02 Sending to : +10:08:02 ============================================================================ +10:08:02 Sending to : +10:08:02 ============================================================================ +10:08:03 ============================================================================ +10:08:03 Slot Id : <404> +10:08:03 Transaction Type : REQUEST +10:08:03 Received From : +10:08:03 ============================================================================ +10:08:03 FNo. Len. Field Value +10:08:03 ============================================================================ +10:08:03 [ 1] [ 4] [0200] +10:08:03 [ 2] [ 16] [6213544001801007] +10:08:03 [ 3] [ 6] [010000] +10:08:03 [ 4] [ 12] [000010000000] +10:08:03 [ 7] [ 10] [0320100553] +10:08:03 [ 11] [ 6] [937624] +10:08:03 [ 12] [ 6] [100553] +10:08:03 [ 13] [ 4] [0320] +10:08:03 [ 15] [ 4] [0320] +10:08:03 [ 18] [ 4] [6011] +10:08:03 [ 19] [ 3] [418] +10:08:03 [ 22] [ 3] [021] +10:08:03 [ 25] [ 2] [01] +10:08:03 [ 28] [ 9] [D00002000] +10:08:03 [ 32] [ 6] [668899] +10:08:03 [ 35] [ 32] [6213544001801007=491212010100967] +10:08:03 [ 37] [ 12] [507901963428] +10:08:03 [ 41] [ 8] [03020019] +10:08:03 [ 42] [ 15] [APT ] +10:08:03 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +10:08:03 [ 49] [ 3] [418] +10:08:03 [ 52] [ 16] [5C6526A171FDEC2E] +10:08:03 ============================================================================ +10:08:03 + + +waiting on router queue for slot.... +10:08:03 Sending to : +10:08:03 ============================================================================ +10:08:03 ============================================================================ +10:08:03 Slot Id : <404> +10:08:03 Transaction Type : REQUEST +10:08:03 Received From : +10:08:03 ============================================================================ +10:08:03 FNo. Len. Field Value +10:08:03 ============================================================================ +10:08:03 [ 1] [ 4] [0200] +10:08:03 [ 2] [ 16] [6213544001801007] +10:08:03 [ 3] [ 6] [010000] +10:08:03 [ 4] [ 12] [000010000000] +10:08:03 [ 7] [ 10] [0320100553] +10:08:03 [ 11] [ 6] [937624] +10:08:03 [ 12] [ 6] [100553] +10:08:03 [ 13] [ 4] [0320] +10:08:03 [ 15] [ 4] [0320] +10:08:03 [ 18] [ 4] [6011] +10:08:03 [ 19] [ 3] [418] +10:08:03 [ 22] [ 3] [021] +10:08:03 [ 25] [ 2] [01] +10:08:03 [ 28] [ 9] [D00002000] +10:08:03 [ 32] [ 6] [668899] +10:08:03 [ 35] [ 32] [6213544001801007=491212010100967] +10:08:03 [ 37] [ 12] [507901963428] +10:08:03 [ 41] [ 8] [03020019] +10:08:03 [ 42] [ 15] [APT ] +10:08:03 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +10:08:03 [ 49] [ 3] [418] +10:08:03 [ 52] [ 16] [3DFFE8A6307256FC] +10:08:03 ============================================================================ +10:08:03 + + +waiting on router queue for slot.... +10:08:03 Sending to : <0> +10:08:03 ============================================================================ +10:08:03 ============================================================================ +10:08:03 Slot Id : <404> +10:08:03 Transaction Type : RESPONSE +10:08:03 Received From : +10:08:03 ============================================================================ +10:08:03 FNo. Len. Field Value +10:08:03 ============================================================================ +10:08:03 [ 1] [ 4] [0210] +10:08:03 [ 2] [ 16] [6213544001801007] +10:08:03 [ 3] [ 6] [010000] +10:08:03 [ 4] [ 12] [000010000000] +10:08:03 [ 7] [ 10] [0320100553] +10:08:03 [ 11] [ 6] [937624] +10:08:03 [ 12] [ 6] [100553] +10:08:03 [ 13] [ 4] [0320] +10:08:03 [ 15] [ 4] [0320] +10:08:03 [ 18] [ 4] [6011] +10:08:03 [ 19] [ 3] [418] +10:08:03 [ 32] [ 6] [668899] +10:08:03 [ 35] [ 32] [6213544001801007=491212010100967] +10:08:03 [ 37] [ 12] [507901963428] +10:08:03 [ 38] [ 6] [107727] +10:08:03 [ 39] [ 2] [00] +10:08:03 [ 41] [ 8] [03020019] +10:08:03 [ 49] [ 3] [418] +10:08:03 [ 54] [ 40] [0001418C0000053792110002418C000005379211] +10:08:03 ============================================================================ +10:08:03 Sending to : +10:08:03 ============================================================================ +10:08:03 + + +waiting on router queue for slot.... +10:08:05 ============================================================================ +10:08:05 Slot Id : <404> +10:08:05 Transaction Type : RESPONSE +10:08:05 Received From : +10:08:05 ============================================================================ +10:08:05 FNo. Len. Field Value +10:08:05 ============================================================================ +10:08:05 [ 1] [ 4] [0210] +10:08:05 [ 2] [ 16] [6213544001801007] +10:08:05 [ 3] [ 6] [010000] +10:08:05 [ 4] [ 12] [000010000000] +10:08:05 [ 7] [ 10] [0320100553] +10:08:05 [ 11] [ 6] [937624] +10:08:05 [ 12] [ 6] [100553] +10:08:05 [ 13] [ 4] [0320] +10:08:05 [ 15] [ 4] [0320] +10:08:05 [ 18] [ 4] [6011] +10:08:05 [ 19] [ 3] [418] +10:08:05 [ 32] [ 6] [668899] +10:08:05 [ 35] [ 32] [6213544001801007=491212010100967] +10:08:05 [ 37] [ 12] [507901963428] +10:08:05 [ 38] [ 6] [107727] +10:08:05 [ 39] [ 2] [00] +10:08:05 [ 41] [ 8] [03020019] +10:08:05 [ 49] [ 3] [418] +10:08:05 [ 54] [ 40] [0001418C0000053792110002418C000005379211] +10:08:05 ============================================================================ +10:08:05 Calculate Source COMM Id = 4 +10:08:05 ============================================================================ +10:08:05 + + +waiting on router queue for slot.... +10:08:10 ============================================================================ +10:08:10 Slot Id : <438> +10:08:10 Transaction Type : REQUEST +10:08:10 Received From : +10:08:10 ============================================================================ +10:08:10 FNo. Len. Field Value +10:08:10 ============================================================================ +10:08:10 [ 1] [ 4] [0800] +10:08:10 [ 7] [ 10] [0320030716] +10:08:10 [ 11] [ 6] [155778] +10:08:10 [ 70] [ 3] [301] +10:08:10 ============================================================================ +10:08:10 + + +waiting on router queue for slot.... +10:08:10 Sending to : +10:08:10 ============================================================================ +10:08:10 ============================================================================ +10:08:10 Slot Id : <438> +10:08:10 Transaction Type : RESPONSE +10:08:10 Received From : +10:08:10 ============================================================================ +10:08:10 FNo. Len. Field Value +10:08:10 ============================================================================ +10:08:10 [ 1] [ 4] [0810] +10:08:10 [ 7] [ 10] [0320030716] +10:08:10 [ 11] [ 6] [155778] +10:08:10 [ 39] [ 2] [00] +10:08:10 [ 70] [ 3] [301] +10:08:10 ============================================================================ +10:08:10 Calculate Source COMM Id = 2 +10:08:10 ============================================================================ +10:08:10 + + +waiting on router queue for slot.... +10:08:13 ============================================================================ +10:08:13 Slot Id : <442> +10:08:13 Transaction Type : REQUEST +10:08:13 Received From : +10:08:13 ============================================================================ +10:08:13 FNo. Len. Field Value +10:08:13 ============================================================================ +10:08:13 [ 1] [ 4] [0800] +10:08:13 [ 2] [ 5] [02531] +10:08:13 [ 3] [ 6] [579108] +10:08:13 [ 7] [ 10] [0320030813] +10:08:13 [ 11] [ 6] [807000] +10:08:13 [ 15] [ 10] [0320030813] +10:08:13 [ 37] [ 11] [57910807000] +10:08:13 [ 70] [ 3] [001] +10:08:13 ============================================================================ +10:08:13 + + +waiting on router queue for slot.... +10:08:13 ============================================================================ +10:08:13 Slot Id : <442> +10:08:13 Transaction Type : RESPONSE +10:08:13 Received From : +10:08:13 ============================================================================ +10:08:13 FNo. Len. Field Value +10:08:13 ============================================================================ +10:08:13 [ 1] [ 4] [0810] +10:08:13 [ 7] [ 10] [0320030813] +10:08:13 [ 11] [ 6] [807000] +10:08:13 [ 15] [ 4] [0320] +10:08:13 [ 37] [ 12] [57910807000] +10:08:13 [ 39] [ 2] [00] +10:08:13 [ 70] [ 3] [001] +10:08:13 ============================================================================ +10:08:13 Sending to : +10:08:13 ============================================================================ +10:08:13 + + +waiting on router queue for slot.... +10:08:24 ============================================================================ +10:08:24 Slot Id : <434> +10:08:24 Transaction Type : REQUEST +10:08:24 Received From : +10:08:24 ============================================================================ +10:08:24 FNo. Len. Field Value +10:08:24 ============================================================================ +10:08:24 [ 1] [ 4] [0200] +10:08:24 [ 2] [ 16] [6688990100954500] +10:08:24 [ 3] [ 6] [010000] +10:08:24 [ 4] [ 12] [000100000000] +10:08:24 [ 7] [ 10] [0320100820] +10:08:24 [ 11] [ 6] [709439] +10:08:24 [ 12] [ 6] [100820] +10:08:24 [ 13] [ 4] [0320] +10:08:24 [ 15] [ 4] [0320] +10:08:24 [ 18] [ 4] [6011] +10:08:24 [ 22] [ 3] [900] +10:08:24 [ 25] [ 2] [02] +10:08:24 [ 28] [ 9] [D00002000] +10:08:24 [ 32] [ 6] [621354] +10:08:24 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:08:24 [ 37] [ 12] [507904719481] +10:08:24 [ 41] [ 8] [18001000] +10:08:24 [ 42] [ 15] [NATIVE ] +10:08:24 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:08:24 [ 49] [ 3] [418] +10:08:24 [ 52] [ 16] [A3392CBD0AD7636A] +10:08:24 ============================================================================ +10:08:24 + + +waiting on router queue for slot.... +10:08:24 Sending to : +10:08:24 ============================================================================ +10:08:24 Sending to : +10:08:24 ============================================================================ +10:08:24 ============================================================================ +10:08:24 Slot Id : <434> +10:08:24 Transaction Type : REQUEST +10:08:24 Received From : +10:08:24 ============================================================================ +10:08:24 FNo. Len. Field Value +10:08:24 ============================================================================ +10:08:24 [ 1] [ 4] [0200] +10:08:24 [ 2] [ 16] [6688990100954500] +10:08:24 [ 3] [ 6] [010000] +10:08:24 [ 4] [ 12] [000100000000] +10:08:24 [ 7] [ 10] [0320100820] +10:08:24 [ 11] [ 6] [709439] +10:08:24 [ 12] [ 6] [100820] +10:08:24 [ 13] [ 4] [0320] +10:08:24 [ 15] [ 4] [0320] +10:08:24 [ 18] [ 4] [6011] +10:08:24 [ 22] [ 3] [900] +10:08:24 [ 25] [ 2] [02] +10:08:24 [ 28] [ 9] [D00002000] +10:08:24 [ 32] [ 6] [621354] +10:08:24 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:08:24 [ 37] [ 12] [507904719481] +10:08:24 [ 41] [ 8] [18001000] +10:08:24 [ 42] [ 15] [NATIVE ] +10:08:24 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:08:24 [ 49] [ 3] [418] +10:08:24 [ 52] [ 16] [A3392CBD0AD7636A] +10:08:24 ============================================================================ +10:08:24 + + +waiting on router queue for slot.... +10:08:24 Sending to : +10:08:24 ============================================================================ +10:08:24 ============================================================================ +10:08:24 Slot Id : <434> +10:08:24 Transaction Type : REQUEST +10:08:24 Received From : +10:08:24 ============================================================================ +10:08:24 FNo. Len. Field Value +10:08:24 ============================================================================ +10:08:24 [ 1] [ 4] [0200] +10:08:24 [ 2] [ 16] [6688990100954500] +10:08:24 [ 3] [ 6] [010000] +10:08:24 [ 4] [ 12] [000100000000] +10:08:24 [ 7] [ 10] [0320100820] +10:08:24 [ 11] [ 6] [709439] +10:08:24 [ 12] [ 6] [100820] +10:08:24 [ 13] [ 4] [0320] +10:08:24 [ 15] [ 4] [0320] +10:08:24 [ 18] [ 4] [6011] +10:08:24 [ 22] [ 3] [900] +10:08:24 [ 25] [ 2] [02] +10:08:24 [ 28] [ 9] [D00002000] +10:08:24 [ 32] [ 6] [621354] +10:08:24 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:08:24 [ 37] [ 12] [507904719481] +10:08:24 [ 41] [ 8] [18001000] +10:08:24 [ 42] [ 15] [NATIVE ] +10:08:24 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:08:24 [ 49] [ 3] [418] +10:08:24 [ 52] [ 16] [F0F417C7E0D10D66] +10:08:24 ============================================================================ +10:08:24 + + +waiting on router queue for slot.... +10:08:24 Sending to : <4> +10:08:24 ============================================================================ +10:08:25 ============================================================================ +10:08:25 Slot Id : <427> +10:08:25 Transaction Type : REQUEST +10:08:25 Received From : +10:08:25 ============================================================================ +10:08:25 FNo. Len. Field Value +10:08:25 ============================================================================ +10:08:25 [ 1] [ 4] [0800] +10:08:25 [ 7] [ 10] [0320030733] +10:08:25 [ 11] [ 6] [155779] +10:08:25 [ 70] [ 3] [301] +10:08:25 ============================================================================ +10:08:25 + + +waiting on router queue for slot.... +10:08:25 Sending to : +10:08:25 ============================================================================ +10:08:25 ============================================================================ +10:08:25 Slot Id : <427> +10:08:25 Transaction Type : RESPONSE +10:08:25 Received From : +10:08:25 ============================================================================ +10:08:25 FNo. Len. Field Value +10:08:25 ============================================================================ +10:08:25 [ 1] [ 4] [0810] +10:08:25 [ 7] [ 10] [0320030733] +10:08:25 [ 11] [ 6] [155779] +10:08:25 [ 39] [ 2] [00] +10:08:25 [ 70] [ 3] [301] +10:08:25 ============================================================================ +10:08:25 Calculate Source COMM Id = 2 +10:08:25 ============================================================================ +10:08:25 + + +waiting on router queue for slot.... +10:08:25 ============================================================================ +10:08:25 Slot Id : <434> +10:08:25 Transaction Type : RESPONSE +10:08:25 Received From : +10:08:25 ============================================================================ +10:08:25 FNo. Len. Field Value +10:08:25 ============================================================================ +10:08:25 [ 1] [ 4] [0210] +10:08:25 [ 2] [ 16] [6688990100954500] +10:08:25 [ 3] [ 6] [010000] +10:08:25 [ 4] [ 12] [000100000000] +10:08:25 [ 11] [ 6] [709439] +10:08:25 [ 12] [ 6] [100820] +10:08:25 [ 15] [ 4] [0320] +10:08:25 [ 18] [ 4] [6011] +10:08:25 [ 32] [ 6] [621354] +10:08:25 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:08:25 [ 37] [ 12] [507904719481] +10:08:25 [ 38] [ 6] [815862] +10:08:25 [ 39] [ 2] [00] +10:08:25 [ 41] [ 8] [18001000] +10:08:25 [ 49] [ 3] [418] +10:08:25 [ 54] [ 20] [0002418C000143056572] +10:08:25 ============================================================================ +10:08:25 Sending to : +10:08:25 ============================================================================ +10:08:25 + + +waiting on router queue for slot.... +10:08:27 ============================================================================ +10:08:27 Slot Id : <434> +10:08:27 Transaction Type : RESPONSE +10:08:27 Received From : +10:08:27 ============================================================================ +10:08:27 FNo. Len. Field Value +10:08:27 ============================================================================ +10:08:27 [ 1] [ 4] [0210] +10:08:27 [ 2] [ 16] [6688990100954500] +10:08:27 [ 3] [ 6] [010000] +10:08:27 [ 4] [ 12] [000100000000] +10:08:27 [ 11] [ 6] [709439] +10:08:27 [ 12] [ 6] [100820] +10:08:27 [ 15] [ 4] [0320] +10:08:27 [ 18] [ 4] [6011] +10:08:27 [ 32] [ 6] [621354] +10:08:27 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:08:27 [ 37] [ 12] [507904719481] +10:08:27 [ 38] [ 6] [815862] +10:08:27 [ 39] [ 2] [00] +10:08:27 [ 41] [ 8] [18001000] +10:08:27 [ 49] [ 3] [418] +10:08:27 [ 54] [ 20] [0002418C000143056572] +10:08:27 ============================================================================ +10:08:27 Calculate Source COMM Id = 0 +10:08:27 ============================================================================ +10:08:27 + + +waiting on router queue for slot.... +10:08:28 ============================================================================ +10:08:28 Slot Id : <428> +10:08:28 Transaction Type : REQUEST +10:08:28 Received From : +10:08:28 ============================================================================ +10:08:28 FNo. Len. Field Value +10:08:28 ============================================================================ +10:08:28 [ 1] [ 4] [0200] +10:08:28 [ 2] [ 16] [6688990040146464] +10:08:28 [ 3] [ 6] [302000] +10:08:28 [ 4] [ 12] [000000000000] +10:08:28 [ 7] [ 10] [0320100824] +10:08:28 [ 11] [ 6] [709455] +10:08:28 [ 12] [ 6] [100824] +10:08:28 [ 13] [ 4] [0320] +10:08:28 [ 15] [ 4] [0320] +10:08:28 [ 18] [ 4] [6011] +10:08:28 [ 22] [ 3] [900] +10:08:28 [ 25] [ 2] [02] +10:08:28 [ 28] [ 9] [D00000000] +10:08:28 [ 32] [ 6] [621354] +10:08:28 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:08:28 [ 37] [ 12] [507905261856] +10:08:28 [ 41] [ 8] [19000900] +10:08:28 [ 42] [ 15] [NATIVE ] +10:08:28 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:08:28 [ 49] [ 3] [418] +10:08:28 [ 52] [ 16] [6D289394F576AEED] +10:08:28 ============================================================================ +10:08:28 + + +waiting on router queue for slot.... +10:08:28 Sending to : +10:08:28 ============================================================================ +10:08:28 Sending to : +10:08:28 ============================================================================ +10:08:28 ============================================================================ +10:08:28 Slot Id : <428> +10:08:28 Transaction Type : REQUEST +10:08:28 Received From : +10:08:28 ============================================================================ +10:08:28 FNo. Len. Field Value +10:08:28 ============================================================================ +10:08:28 [ 1] [ 4] [0200] +10:08:28 [ 2] [ 16] [6688990040146464] +10:08:28 [ 3] [ 6] [302000] +10:08:28 [ 4] [ 12] [000000000000] +10:08:28 [ 7] [ 10] [0320100824] +10:08:28 [ 11] [ 6] [709455] +10:08:28 [ 12] [ 6] [100824] +10:08:28 [ 13] [ 4] [0320] +10:08:28 [ 15] [ 4] [0320] +10:08:28 [ 18] [ 4] [6011] +10:08:28 [ 22] [ 3] [900] +10:08:28 [ 25] [ 2] [02] +10:08:28 [ 28] [ 9] [D00000000] +10:08:28 [ 32] [ 6] [621354] +10:08:28 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:08:28 [ 37] [ 12] [507905261856] +10:08:28 [ 41] [ 8] [19000900] +10:08:28 [ 42] [ 15] [NATIVE ] +10:08:28 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:08:28 [ 49] [ 3] [418] +10:08:28 [ 52] [ 16] [6D289394F576AEED] +10:08:28 ============================================================================ +10:08:28 + + +waiting on router queue for slot.... +10:08:28 Sending to : +10:08:28 ============================================================================ +10:08:28 ============================================================================ +10:08:28 Slot Id : <428> +10:08:28 Transaction Type : REQUEST +10:08:28 Received From : +10:08:28 ============================================================================ +10:08:28 FNo. Len. Field Value +10:08:28 ============================================================================ +10:08:28 [ 1] [ 4] [0200] +10:08:28 [ 2] [ 16] [6688990040146464] +10:08:28 [ 3] [ 6] [302000] +10:08:28 [ 4] [ 12] [000000000000] +10:08:28 [ 7] [ 10] [0320100824] +10:08:28 [ 11] [ 6] [709455] +10:08:28 [ 12] [ 6] [100824] +10:08:28 [ 13] [ 4] [0320] +10:08:28 [ 15] [ 4] [0320] +10:08:28 [ 18] [ 4] [6011] +10:08:28 [ 22] [ 3] [900] +10:08:28 [ 25] [ 2] [02] +10:08:28 [ 28] [ 9] [D00000000] +10:08:28 [ 32] [ 6] [621354] +10:08:28 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:08:28 [ 37] [ 12] [507905261856] +10:08:28 [ 41] [ 8] [19000900] +10:08:28 [ 42] [ 15] [NATIVE ] +10:08:28 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:08:28 [ 49] [ 3] [418] +10:08:28 [ 52] [ 16] [5814B7A2D264FE27] +10:08:28 ============================================================================ +10:08:28 + + +waiting on router queue for slot.... +10:08:28 Sending to : <4> +10:08:28 ============================================================================ +10:08:29 ============================================================================ +10:08:29 Slot Id : <428> +10:08:29 Transaction Type : RESPONSE +10:08:29 Received From : +10:08:29 ============================================================================ +10:08:29 FNo. Len. Field Value +10:08:29 ============================================================================ +10:08:29 [ 1] [ 4] [0210] +10:08:29 [ 2] [ 16] [6688990040146464] +10:08:29 [ 3] [ 6] [302000] +10:08:29 [ 4] [ 12] [000000000000] +10:08:29 [ 11] [ 6] [709455] +10:08:29 [ 12] [ 6] [100824] +10:08:29 [ 15] [ 4] [0320] +10:08:29 [ 18] [ 4] [6011] +10:08:29 [ 32] [ 6] [621354] +10:08:29 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:08:29 [ 37] [ 12] [507905261856] +10:08:29 [ 38] [ 6] [643262] +10:08:29 [ 39] [ 2] [00] +10:08:29 [ 41] [ 8] [19000900] +10:08:29 [ 49] [ 3] [418] +10:08:29 [ 54] [ 20] [2002418C000406000000] +10:08:29 ============================================================================ +10:08:29 Sending to : +10:08:29 ============================================================================ +10:08:29 + + +waiting on router queue for slot.... +10:08:31 ============================================================================ +10:08:31 Slot Id : <428> +10:08:31 Transaction Type : RESPONSE +10:08:31 Received From : +10:08:31 ============================================================================ +10:08:31 FNo. Len. Field Value +10:08:31 ============================================================================ +10:08:31 [ 1] [ 4] [0210] +10:08:31 [ 2] [ 16] [6688990040146464] +10:08:31 [ 3] [ 6] [302000] +10:08:31 [ 4] [ 12] [000000000000] +10:08:31 [ 11] [ 6] [709455] +10:08:31 [ 12] [ 6] [100824] +10:08:31 [ 15] [ 4] [0320] +10:08:31 [ 18] [ 4] [6011] +10:08:31 [ 32] [ 6] [621354] +10:08:31 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:08:31 [ 37] [ 12] [507905261856] +10:08:31 [ 38] [ 6] [643262] +10:08:31 [ 39] [ 2] [00] +10:08:31 [ 41] [ 8] [19000900] +10:08:31 [ 49] [ 3] [418] +10:08:31 [ 54] [ 20] [2002418C000406000000] +10:08:31 ============================================================================ +10:08:31 Calculate Source COMM Id = 0 +10:08:31 ============================================================================ +10:08:31 + + +waiting on router queue for slot.... +10:08:31 ============================================================================ +10:08:31 Slot Id : <451> +10:08:31 Transaction Type : REQUEST +10:08:31 Received From : +10:08:31 ============================================================================ +10:08:31 FNo. Len. Field Value +10:08:31 ============================================================================ +10:08:31 [ 1] [ 4] [0200] +10:08:31 [ 2] [ 16] [1888880000077990] +10:08:31 [ 3] [ 6] [302000] +10:08:31 [ 4] [ 12] [000000000000] +10:08:31 [ 7] [ 10] [0320100622] +10:08:31 [ 11] [ 6] [937651] +10:08:31 [ 12] [ 6] [100622] +10:08:31 [ 13] [ 4] [0320] +10:08:31 [ 15] [ 4] [0320] +10:08:31 [ 18] [ 4] [6011] +10:08:31 [ 19] [ 3] [418] +10:08:31 [ 22] [ 3] [021] +10:08:31 [ 25] [ 2] [01] +10:08:31 [ 28] [ 9] [D00000000] +10:08:31 [ 32] [ 6] [668899] +10:08:31 [ 35] [ 32] [1888880000077990=000010100000231] +10:08:31 [ 37] [ 12] [507901955619] +10:08:31 [ 41] [ 8] [03020018] +10:08:31 [ 42] [ 15] [APT ] +10:08:31 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +10:08:31 [ 49] [ 3] [418] +10:08:31 [ 52] [ 16] [741714B42875EAEB] +10:08:31 ============================================================================ +10:08:31 + + +waiting on router queue for slot.... +10:08:31 Sending to : +10:08:31 ============================================================================ +10:08:31 Sending to : +10:08:31 ============================================================================ +10:08:32 ============================================================================ +10:08:32 Slot Id : <451> +10:08:32 Transaction Type : REQUEST +10:08:32 Received From : +10:08:32 ============================================================================ +10:08:32 FNo. Len. Field Value +10:08:32 ============================================================================ +10:08:32 [ 1] [ 4] [0200] +10:08:32 [ 2] [ 16] [1888880000077990] +10:08:32 [ 3] [ 6] [302000] +10:08:32 [ 4] [ 12] [000000000000] +10:08:32 [ 7] [ 10] [0320100622] +10:08:32 [ 11] [ 6] [937651] +10:08:32 [ 12] [ 6] [100622] +10:08:32 [ 13] [ 4] [0320] +10:08:32 [ 15] [ 4] [0320] +10:08:32 [ 18] [ 4] [6011] +10:08:32 [ 19] [ 3] [418] +10:08:32 [ 22] [ 3] [021] +10:08:32 [ 25] [ 2] [01] +10:08:32 [ 28] [ 9] [D00000000] +10:08:32 [ 32] [ 6] [668899] +10:08:32 [ 35] [ 32] [1888880000077990=000010100000231] +10:08:32 [ 37] [ 12] [507901955619] +10:08:32 [ 41] [ 8] [03020018] +10:08:32 [ 42] [ 15] [APT ] +10:08:32 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +10:08:32 [ 49] [ 3] [418] +10:08:32 [ 52] [ 16] [741714B42875EAEB] +10:08:32 ============================================================================ +10:08:32 + + +waiting on router queue for slot.... +10:08:32 Sending to : +10:08:32 ============================================================================ +10:08:32 ============================================================================ +10:08:32 Slot Id : <451> +10:08:32 Transaction Type : REQUEST +10:08:32 Received From : +10:08:32 ============================================================================ +10:08:32 FNo. Len. Field Value +10:08:32 ============================================================================ +10:08:32 [ 1] [ 4] [0200] +10:08:32 [ 2] [ 16] [1888880000077990] +10:08:32 [ 3] [ 6] [302000] +10:08:32 [ 4] [ 12] [000000000000] +10:08:32 [ 7] [ 10] [0320100622] +10:08:32 [ 11] [ 6] [937651] +10:08:32 [ 12] [ 6] [100622] +10:08:32 [ 13] [ 4] [0320] +10:08:32 [ 15] [ 4] [0320] +10:08:32 [ 18] [ 4] [6011] +10:08:32 [ 19] [ 3] [418] +10:08:32 [ 22] [ 3] [021] +10:08:32 [ 25] [ 2] [01] +10:08:32 [ 28] [ 9] [D00000000] +10:08:32 [ 32] [ 6] [668899] +10:08:32 [ 35] [ 32] [1888880000077990=000010100000231] +10:08:32 [ 37] [ 12] [507901955619] +10:08:32 [ 41] [ 8] [03020018] +10:08:32 [ 42] [ 15] [APT ] +10:08:32 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +10:08:32 [ 49] [ 3] [418] +10:08:32 [ 52] [ 16] [1637EE0AAD0CBEC5] +10:08:32 ============================================================================ +10:08:32 + + +waiting on router queue for slot.... +10:08:32 Sending to : <5> +10:08:32 ============================================================================ +10:08:35 ============================================================================ +10:08:35 Slot Id : <451> +10:08:35 Transaction Type : RESPONSE +10:08:35 Received From : +10:08:35 ============================================================================ +10:08:35 FNo. Len. Field Value +10:08:35 ============================================================================ +10:08:35 [ 1] [ 4] [0210] +10:08:35 [ 2] [ 16] [1888880000077990] +10:08:35 [ 3] [ 6] [302000] +10:08:35 [ 4] [ 12] [000000000000] +10:08:35 [ 7] [ 10] [0320100622] +10:08:35 [ 11] [ 6] [937651] +10:08:35 [ 12] [ 6] [100622] +10:08:35 [ 13] [ 4] [0320] +10:08:35 [ 15] [ 4] [0320] +10:08:35 [ 18] [ 4] [6011] +10:08:35 [ 19] [ 3] [418] +10:08:35 [ 32] [ 6] [668899] +10:08:35 [ 37] [ 12] [507901955619] +10:08:35 [ 38] [ 6] [106029] +10:08:35 [ 39] [ 2] [00] +10:08:35 [ 41] [ 8] [03020018] +10:08:35 [ 49] [ 3] [418] +10:08:35 [ 54] [ 20] [1001418C000003900000] +10:08:35 ============================================================================ +10:08:35 Sending to : +10:08:35 ============================================================================ +10:08:35 + + +waiting on router queue for slot.... +10:08:36 ============================================================================ +10:08:36 Slot Id : <457> +10:08:36 Transaction Type : REQUEST +10:08:36 Received From : +10:08:36 ============================================================================ +10:08:36 FNo. Len. Field Value +10:08:36 ============================================================================ +10:08:36 [ 1] [ 4] [0200] +10:08:36 [ 2] [ 16] [6213545000045397] +10:08:36 [ 3] [ 6] [310000] +10:08:36 [ 4] [ 12] [000000000000] +10:08:36 [ 7] [ 10] [0320101624] +10:08:36 [ 11] [ 6] [079053] +10:08:36 [ 12] [ 6] [101624] +10:08:36 [ 13] [ 4] [0320] +10:08:36 [ 14] [ 4] [4912] +10:08:36 [ 15] [ 4] [0320] +10:08:36 [ 18] [ 4] [6011] +10:08:36 [ 22] [ 3] [900] +10:08:36 [ 25] [ 2] [02] +10:08:36 [ 28] [ 9] [000000000] +10:08:36 [ 32] [ 6] [220699] +10:08:36 [ 35] [ 32] [6213545000045397=491212014539552] +10:08:36 [ 37] [ 12] [507900132936] +10:08:36 [ 41] [ 8] [03000100] +10:08:36 [ 42] [ 15] [APTRA ] +10:08:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:08:36 [ 49] [ 3] [418] +10:08:36 [ 52] [ 16] [C296EB3B65769E0A] +10:08:36 ============================================================================ +10:08:36 + + +waiting on router queue for slot.... +10:08:36 Sending to : +10:08:36 ============================================================================ +10:08:36 Sending to : +10:08:36 ============================================================================ +10:08:37 ============================================================================ +10:08:37 Slot Id : <457> +10:08:37 Transaction Type : REQUEST +10:08:37 Received From : +10:08:37 ============================================================================ +10:08:37 FNo. Len. Field Value +10:08:37 ============================================================================ +10:08:37 [ 1] [ 4] [0200] +10:08:37 [ 2] [ 16] [6213545000045397] +10:08:37 [ 3] [ 6] [310000] +10:08:37 [ 4] [ 12] [000000000000] +10:08:37 [ 7] [ 10] [0320101624] +10:08:37 [ 11] [ 6] [079053] +10:08:37 [ 12] [ 6] [101624] +10:08:37 [ 13] [ 4] [0320] +10:08:37 [ 14] [ 4] [4912] +10:08:37 [ 15] [ 4] [0320] +10:08:37 [ 18] [ 4] [6011] +10:08:37 [ 22] [ 3] [900] +10:08:37 [ 25] [ 2] [02] +10:08:37 [ 28] [ 9] [000000000] +10:08:37 [ 32] [ 6] [220699] +10:08:37 [ 35] [ 32] [6213545000045397=491212014539552] +10:08:37 [ 37] [ 12] [507900132936] +10:08:37 [ 41] [ 8] [03000100] +10:08:37 [ 42] [ 15] [APTRA ] +10:08:37 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:08:37 [ 49] [ 3] [418] +10:08:37 [ 52] [ 16] [C296EB3B65769E0A] +10:08:37 ============================================================================ +10:08:37 + + +waiting on router queue for slot.... +10:08:37 Sending to : +10:08:37 ============================================================================ +10:08:37 ============================================================================ +10:08:37 Slot Id : <451> +10:08:37 Transaction Type : RESPONSE +10:08:37 Received From : +10:08:37 ============================================================================ +10:08:37 FNo. Len. Field Value +10:08:37 ============================================================================ +10:08:37 [ 1] [ 4] [0210] +10:08:37 [ 2] [ 16] [1888880000077990] +10:08:37 [ 3] [ 6] [302000] +10:08:37 [ 4] [ 12] [000000000000] +10:08:37 [ 7] [ 10] [0320100622] +10:08:37 [ 11] [ 6] [937651] +10:08:37 [ 12] [ 6] [100622] +10:08:37 [ 13] [ 4] [0320] +10:08:37 [ 15] [ 4] [0320] +10:08:37 [ 18] [ 4] [6011] +10:08:37 [ 19] [ 3] [418] +10:08:37 [ 32] [ 6] [668899] +10:08:37 [ 37] [ 12] [507901955619] +10:08:37 [ 38] [ 6] [106029] +10:08:37 [ 39] [ 2] [00] +10:08:37 [ 41] [ 8] [03020018] +10:08:37 [ 49] [ 3] [418] +10:08:37 [ 54] [ 20] [1001418C000003900000] +10:08:37 ============================================================================ +10:08:37 Calculate Source COMM Id = 4 +10:08:37 ============================================================================ +10:08:37 + + +waiting on router queue for slot.... +10:08:37 ============================================================================ +10:08:37 Slot Id : <457> +10:08:37 Transaction Type : REQUEST +10:08:37 Received From : +10:08:37 ============================================================================ +10:08:37 FNo. Len. Field Value +10:08:37 ============================================================================ +10:08:37 [ 1] [ 4] [0200] +10:08:37 [ 2] [ 16] [6213545000045397] +10:08:37 [ 3] [ 6] [310000] +10:08:37 [ 4] [ 12] [000000000000] +10:08:37 [ 7] [ 10] [0320101624] +10:08:37 [ 11] [ 6] [079053] +10:08:37 [ 12] [ 6] [101624] +10:08:37 [ 13] [ 4] [0320] +10:08:37 [ 14] [ 4] [4912] +10:08:37 [ 15] [ 4] [0320] +10:08:37 [ 18] [ 4] [6011] +10:08:37 [ 22] [ 3] [900] +10:08:37 [ 25] [ 2] [02] +10:08:37 [ 28] [ 9] [000000000] +10:08:37 [ 32] [ 6] [220699] +10:08:37 [ 35] [ 32] [6213545000045397=491212014539552] +10:08:37 [ 37] [ 12] [507900132936] +10:08:37 [ 41] [ 8] [03000100] +10:08:37 [ 42] [ 15] [APTRA ] +10:08:37 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:08:37 [ 49] [ 3] [418] +10:08:37 [ 52] [ 16] [891923BAFD12A71F] +10:08:37 ============================================================================ +10:08:37 + + +waiting on router queue for slot.... +10:08:37 Sending to : <0> +10:08:37 ============================================================================ +10:08:37 ============================================================================ +10:08:37 Slot Id : <457> +10:08:37 Transaction Type : RESPONSE +10:08:37 Received From : +10:08:37 ============================================================================ +10:08:37 FNo. Len. Field Value +10:08:37 ============================================================================ +10:08:37 [ 1] [ 4] [0210] +10:08:37 [ 2] [ 16] [6213545000045397] +10:08:37 [ 3] [ 6] [310000] +10:08:37 [ 4] [ 12] [000000000000] +10:08:37 [ 7] [ 10] [0320101624] +10:08:37 [ 11] [ 6] [079053] +10:08:37 [ 12] [ 6] [101624] +10:08:37 [ 13] [ 4] [0320] +10:08:37 [ 15] [ 4] [0320] +10:08:37 [ 18] [ 4] [6011] +10:08:37 [ 32] [ 6] [220699] +10:08:37 [ 35] [ 32] [6213545000045397=491212014539552] +10:08:37 [ 37] [ 12] [507900132936] +10:08:37 [ 38] [ 6] [021965] +10:08:37 [ 39] [ 2] [00] +10:08:37 [ 41] [ 8] [03000100] +10:08:37 [ 49] [ 3] [418] +10:08:37 [ 54] [ 40] [0001418C0002009700290002418C000200970029] +10:08:37 ============================================================================ +10:08:37 Sending to : +10:08:37 ============================================================================ +10:08:37 + + +waiting on router queue for slot.... +10:08:38 ============================================================================ +10:08:38 Slot Id : <457> +10:08:38 Transaction Type : RESPONSE +10:08:38 Received From : +10:08:38 ============================================================================ +10:08:38 FNo. Len. Field Value +10:08:38 ============================================================================ +10:08:38 [ 1] [ 4] [0210] +10:08:38 [ 2] [ 16] [6213545000045397] +10:08:38 [ 3] [ 6] [310000] +10:08:38 [ 4] [ 12] [000000000000] +10:08:38 [ 7] [ 10] [0320101624] +10:08:38 [ 11] [ 6] [079053] +10:08:38 [ 12] [ 6] [101624] +10:08:38 [ 13] [ 4] [0320] +10:08:38 [ 15] [ 4] [0320] +10:08:38 [ 18] [ 4] [6011] +10:08:38 [ 32] [ 6] [220699] +10:08:38 [ 35] [ 32] [6213545000045397=491212014539552] +10:08:38 [ 37] [ 12] [507900132936] +10:08:38 [ 38] [ 6] [021965] +10:08:38 [ 39] [ 2] [00] +10:08:38 [ 41] [ 8] [03000100] +10:08:38 [ 49] [ 3] [418] +10:08:38 [ 54] [ 40] [0001418C0002009700290002418C000200970029] +10:08:38 ============================================================================ +10:08:38 Calculate Source COMM Id = 1 +10:08:38 ============================================================================ +10:08:38 + + +waiting on router queue for slot.... +10:08:41 ============================================================================ +10:08:41 Slot Id : <462> +10:08:41 Transaction Type : REQUEST +10:08:41 Received From : +10:08:41 ============================================================================ +10:08:41 FNo. Len. Field Value +10:08:41 ============================================================================ +10:08:41 [ 1] [ 4] [0800] +10:08:41 [ 7] [ 10] [0320030749] +10:08:41 [ 11] [ 6] [155780] +10:08:41 [ 70] [ 3] [301] +10:08:41 ============================================================================ +10:08:41 + + +waiting on router queue for slot.... +10:08:41 Sending to : +10:08:41 ============================================================================ +10:08:41 ============================================================================ +10:08:41 Slot Id : <462> +10:08:41 Transaction Type : RESPONSE +10:08:41 Received From : +10:08:41 ============================================================================ +10:08:41 FNo. Len. Field Value +10:08:41 ============================================================================ +10:08:41 [ 1] [ 4] [0810] +10:08:41 [ 7] [ 10] [0320030749] +10:08:41 [ 11] [ 6] [155780] +10:08:41 [ 39] [ 2] [00] +10:08:41 [ 70] [ 3] [301] +10:08:41 ============================================================================ +10:08:41 Calculate Source COMM Id = 2 +10:08:41 ============================================================================ +10:08:41 + + +waiting on router queue for slot.... +10:08:50 ============================================================================ +10:08:50 Slot Id : <431> +10:08:50 Transaction Type : REQUEST +10:08:50 Received From : +10:08:50 ============================================================================ +10:08:50 FNo. Len. Field Value +10:08:50 ============================================================================ +10:08:50 [ 1] [ 4] [0200] +10:08:50 [ 2] [ 16] [6213544002038096] +10:08:50 [ 3] [ 6] [301000] +10:08:50 [ 4] [ 12] [000000000000] +10:08:50 [ 7] [ 10] [0320100641] +10:08:50 [ 11] [ 6] [937670] +10:08:50 [ 12] [ 6] [100641] +10:08:50 [ 13] [ 4] [0320] +10:08:50 [ 15] [ 4] [0320] +10:08:50 [ 18] [ 4] [6011] +10:08:50 [ 19] [ 3] [418] +10:08:50 [ 22] [ 3] [021] +10:08:50 [ 25] [ 2] [01] +10:08:50 [ 28] [ 9] [D00000000] +10:08:50 [ 32] [ 6] [668899] +10:08:50 [ 35] [ 32] [6213544002038096=491212013809954] +10:08:50 [ 37] [ 12] [507900610770] +10:08:50 [ 41] [ 8] [03007001] +10:08:50 [ 42] [ 15] [APT ] +10:08:50 [ 43] [ 40] [ XAYABOULY BR OFFICE XAYAB] +10:08:50 [ 49] [ 3] [418] +10:08:50 [ 52] [ 16] [1F1DF4E453911E12] +10:08:50 ============================================================================ +10:08:50 + + +waiting on router queue for slot.... +10:08:50 Sending to : +10:08:50 ============================================================================ +10:08:50 Sending to : +10:08:50 ============================================================================ +10:08:50 ============================================================================ +10:08:50 Slot Id : <431> +10:08:50 Transaction Type : REQUEST +10:08:50 Received From : +10:08:50 ============================================================================ +10:08:50 FNo. Len. Field Value +10:08:50 ============================================================================ +10:08:50 [ 1] [ 4] [0200] +10:08:50 [ 2] [ 16] [6213544002038096] +10:08:50 [ 3] [ 6] [301000] +10:08:50 [ 4] [ 12] [000000000000] +10:08:50 [ 7] [ 10] [0320100641] +10:08:50 [ 11] [ 6] [937670] +10:08:50 [ 12] [ 6] [100641] +10:08:50 [ 13] [ 4] [0320] +10:08:50 [ 15] [ 4] [0320] +10:08:50 [ 18] [ 4] [6011] +10:08:50 [ 19] [ 3] [418] +10:08:50 [ 22] [ 3] [021] +10:08:50 [ 25] [ 2] [01] +10:08:50 [ 28] [ 9] [D00000000] +10:08:50 [ 32] [ 6] [668899] +10:08:50 [ 35] [ 32] [6213544002038096=491212013809954] +10:08:50 [ 37] [ 12] [507900610770] +10:08:50 [ 41] [ 8] [03007001] +10:08:50 [ 42] [ 15] [APT ] +10:08:50 [ 43] [ 40] [ XAYABOULY BR OFFICE XAYAB] +10:08:50 [ 49] [ 3] [418] +10:08:50 [ 52] [ 16] [1F1DF4E453911E12] +10:08:50 ============================================================================ +10:08:50 + + +waiting on router queue for slot.... +10:08:50 Sending to : +10:08:50 ============================================================================ +10:08:50 ============================================================================ +10:08:50 Slot Id : <431> +10:08:50 Transaction Type : REQUEST +10:08:50 Received From : +10:08:50 ============================================================================ +10:08:50 FNo. Len. Field Value +10:08:50 ============================================================================ +10:08:50 [ 1] [ 4] [0200] +10:08:50 [ 2] [ 16] [6213544002038096] +10:08:50 [ 3] [ 6] [301000] +10:08:50 [ 4] [ 12] [000000000000] +10:08:50 [ 7] [ 10] [0320100641] +10:08:50 [ 11] [ 6] [937670] +10:08:50 [ 12] [ 6] [100641] +10:08:50 [ 13] [ 4] [0320] +10:08:50 [ 15] [ 4] [0320] +10:08:50 [ 18] [ 4] [6011] +10:08:50 [ 19] [ 3] [418] +10:08:50 [ 22] [ 3] [021] +10:08:50 [ 25] [ 2] [01] +10:08:50 [ 28] [ 9] [D00000000] +10:08:50 [ 32] [ 6] [668899] +10:08:50 [ 35] [ 32] [6213544002038096=491212013809954] +10:08:50 [ 37] [ 12] [507900610770] +10:08:50 [ 41] [ 8] [03007001] +10:08:50 [ 42] [ 15] [APT ] +10:08:50 [ 43] [ 40] [ XAYABOULY BR OFFICE XAYAB] +10:08:50 [ 49] [ 3] [418] +10:08:50 [ 52] [ 16] [8AFEA4A23D02995C] +10:08:50 ============================================================================ +10:08:50 + + +waiting on router queue for slot.... +10:08:50 Sending to : <0> +10:08:50 ============================================================================ +10:08:50 ============================================================================ +10:08:50 Slot Id : <431> +10:08:50 Transaction Type : RESPONSE +10:08:50 Received From : +10:08:50 ============================================================================ +10:08:50 FNo. Len. Field Value +10:08:50 ============================================================================ +10:08:50 [ 1] [ 4] [0210] +10:08:50 [ 2] [ 16] [6213544002038096] +10:08:50 [ 3] [ 6] [301000] +10:08:50 [ 4] [ 12] [000000000000] +10:08:50 [ 7] [ 10] [0320100641] +10:08:50 [ 11] [ 6] [937670] +10:08:50 [ 12] [ 6] [100641] +10:08:50 [ 13] [ 4] [0320] +10:08:50 [ 15] [ 4] [0320] +10:08:50 [ 18] [ 4] [6011] +10:08:50 [ 19] [ 3] [418] +10:08:50 [ 32] [ 6] [668899] +10:08:50 [ 35] [ 32] [6213544002038096=491212013809954] +10:08:50 [ 37] [ 12] [507900610770] +10:08:50 [ 38] [ 6] [619064] +10:08:50 [ 39] [ 2] [00] +10:08:50 [ 41] [ 8] [03007001] +10:08:50 [ 49] [ 3] [418] +10:08:50 [ 54] [ 40] [1001418C0000107250961002418C000010725096] +10:08:50 ============================================================================ +10:08:50 Sending to : +10:08:50 ============================================================================ +10:08:50 + + +waiting on router queue for slot.... +10:08:52 ============================================================================ +10:08:52 Slot Id : <431> +10:08:52 Transaction Type : RESPONSE +10:08:52 Received From : +10:08:52 ============================================================================ +10:08:52 FNo. Len. Field Value +10:08:52 ============================================================================ +10:08:52 [ 1] [ 4] [0210] +10:08:52 [ 2] [ 16] [6213544002038096] +10:08:52 [ 3] [ 6] [301000] +10:08:52 [ 4] [ 12] [000000000000] +10:08:52 [ 7] [ 10] [0320100641] +10:08:52 [ 11] [ 6] [937670] +10:08:52 [ 12] [ 6] [100641] +10:08:52 [ 13] [ 4] [0320] +10:08:52 [ 15] [ 4] [0320] +10:08:52 [ 18] [ 4] [6011] +10:08:52 [ 19] [ 3] [418] +10:08:52 [ 32] [ 6] [668899] +10:08:52 [ 35] [ 32] [6213544002038096=491212013809954] +10:08:52 [ 37] [ 12] [507900610770] +10:08:52 [ 38] [ 6] [619064] +10:08:52 [ 39] [ 2] [00] +10:08:52 [ 41] [ 8] [03007001] +10:08:52 [ 49] [ 3] [418] +10:08:52 [ 54] [ 40] [1001418C0000107250961002418C000010725096] +10:08:52 ============================================================================ +10:08:52 Calculate Source COMM Id = 4 +10:08:52 ============================================================================ +10:08:52 + + +waiting on router queue for slot.... +10:08:56 ============================================================================ +10:08:56 Slot Id : <426> +10:08:56 Transaction Type : REQUEST +10:08:56 Received From : +10:08:56 ============================================================================ +10:08:56 FNo. Len. Field Value +10:08:56 ============================================================================ +10:08:56 [ 1] [ 4] [0800] +10:08:56 [ 7] [ 10] [0320030804] +10:08:56 [ 11] [ 6] [155781] +10:08:56 [ 70] [ 3] [301] +10:08:56 ============================================================================ +10:08:56 + + +waiting on router queue for slot.... +10:08:56 Sending to : +10:08:56 ============================================================================ +10:08:57 ============================================================================ +10:08:57 Slot Id : <426> +10:08:57 Transaction Type : RESPONSE +10:08:57 Received From : +10:08:57 ============================================================================ +10:08:57 FNo. Len. Field Value +10:08:57 ============================================================================ +10:08:57 [ 1] [ 4] [0810] +10:08:57 [ 7] [ 10] [0320030804] +10:08:57 [ 11] [ 6] [155781] +10:08:57 [ 39] [ 2] [00] +10:08:57 [ 70] [ 3] [301] +10:08:57 ============================================================================ +10:08:57 Calculate Source COMM Id = 2 +10:08:57 ============================================================================ +10:08:57 + + +waiting on router queue for slot.... +10:08:59 ============================================================================ +10:08:59 Slot Id : <422> +10:08:59 Transaction Type : REQUEST +10:08:59 Received From : +10:08:59 ============================================================================ +10:08:59 FNo. Len. Field Value +10:08:59 ============================================================================ +10:08:59 [ 1] [ 4] [0800] +10:08:59 [ 7] [ 10] [0320172048] +10:08:59 [ 11] [ 6] [102048] +10:08:59 [ 37] [ 12] [57910102048] +10:08:59 [ 70] [ 3] [301] +10:08:59 ============================================================================ +10:08:59 + + +waiting on router queue for slot.... +10:08:59 Sending to : +10:08:59 ============================================================================ +10:08:59 ============================================================================ +10:08:59 Slot Id : <422> +10:08:59 Transaction Type : RESPONSE +10:08:59 Received From : +10:08:59 ============================================================================ +10:08:59 FNo. Len. Field Value +10:08:59 ============================================================================ +10:08:59 [ 1] [ 4] [0810] +10:08:59 [ 7] [ 10] [0320172048] +10:08:59 [ 11] [ 6] [102048] +10:08:59 [ 37] [ 12] [579101020480] +10:08:59 [ 39] [ 2] [00] +10:08:59 [ 70] [ 3] [810] +10:08:59 ============================================================================ +10:08:59 Calculate Source COMM Id = 6 +10:08:59 ============================================================================ +10:08:59 + + +waiting on router queue for slot.... +10:09:09 ============================================================================ +10:09:09 Slot Id : <444> +10:09:09 Transaction Type : REQUEST +10:09:09 Received From : +10:09:09 ============================================================================ +10:09:09 FNo. Len. Field Value +10:09:09 ============================================================================ +10:09:09 [ 1] [ 4] [0200] +10:09:09 [ 2] [ 16] [6688990040146464] +10:09:09 [ 3] [ 6] [012000] +10:09:09 [ 4] [ 12] [000100000000] +10:09:09 [ 7] [ 10] [0320100905] +10:09:09 [ 11] [ 6] [709635] +10:09:09 [ 12] [ 6] [100905] +10:09:09 [ 13] [ 4] [0320] +10:09:09 [ 15] [ 4] [0320] +10:09:09 [ 18] [ 4] [6011] +10:09:09 [ 22] [ 3] [900] +10:09:09 [ 25] [ 2] [02] +10:09:09 [ 28] [ 9] [D00002000] +10:09:09 [ 32] [ 6] [621354] +10:09:09 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:09:09 [ 37] [ 12] [507905261858] +10:09:09 [ 41] [ 8] [19000900] +10:09:09 [ 42] [ 15] [NATIVE ] +10:09:09 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:09:09 [ 49] [ 3] [418] +10:09:09 [ 52] [ 16] [6D289394F576AEED] +10:09:09 ============================================================================ +10:09:09 + + +waiting on router queue for slot.... +10:09:09 Sending to : +10:09:09 ============================================================================ +10:09:09 Sending to : +10:09:09 ============================================================================ +10:09:10 ============================================================================ +10:09:10 Slot Id : <444> +10:09:10 Transaction Type : REQUEST +10:09:10 Received From : +10:09:10 ============================================================================ +10:09:10 FNo. Len. Field Value +10:09:10 ============================================================================ +10:09:10 [ 1] [ 4] [0200] +10:09:10 [ 2] [ 16] [6688990040146464] +10:09:10 [ 3] [ 6] [012000] +10:09:10 [ 4] [ 12] [000100000000] +10:09:10 [ 7] [ 10] [0320100905] +10:09:10 [ 11] [ 6] [709635] +10:09:10 [ 12] [ 6] [100905] +10:09:10 [ 13] [ 4] [0320] +10:09:10 [ 15] [ 4] [0320] +10:09:10 [ 18] [ 4] [6011] +10:09:10 [ 22] [ 3] [900] +10:09:10 [ 25] [ 2] [02] +10:09:10 [ 28] [ 9] [D00002000] +10:09:10 [ 32] [ 6] [621354] +10:09:10 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:09:10 [ 37] [ 12] [507905261858] +10:09:10 [ 41] [ 8] [19000900] +10:09:10 [ 42] [ 15] [NATIVE ] +10:09:10 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:09:10 [ 49] [ 3] [418] +10:09:10 [ 52] [ 16] [6D289394F576AEED] +10:09:10 ============================================================================ +10:09:10 + + +waiting on router queue for slot.... +10:09:10 Sending to : +10:09:10 ============================================================================ +10:09:10 ============================================================================ +10:09:10 Slot Id : <444> +10:09:10 Transaction Type : REQUEST +10:09:10 Received From : +10:09:10 ============================================================================ +10:09:10 FNo. Len. Field Value +10:09:10 ============================================================================ +10:09:10 [ 1] [ 4] [0200] +10:09:10 [ 2] [ 16] [6688990040146464] +10:09:10 [ 3] [ 6] [012000] +10:09:10 [ 4] [ 12] [000100000000] +10:09:10 [ 7] [ 10] [0320100905] +10:09:10 [ 11] [ 6] [709635] +10:09:10 [ 12] [ 6] [100905] +10:09:10 [ 13] [ 4] [0320] +10:09:10 [ 15] [ 4] [0320] +10:09:10 [ 18] [ 4] [6011] +10:09:10 [ 22] [ 3] [900] +10:09:10 [ 25] [ 2] [02] +10:09:10 [ 28] [ 9] [D00002000] +10:09:10 [ 32] [ 6] [621354] +10:09:10 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:09:10 [ 37] [ 12] [507905261858] +10:09:10 [ 41] [ 8] [19000900] +10:09:10 [ 42] [ 15] [NATIVE ] +10:09:10 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:09:10 [ 49] [ 3] [418] +10:09:10 [ 52] [ 16] [5814B7A2D264FE27] +10:09:10 ============================================================================ +10:09:10 + + +waiting on router queue for slot.... +10:09:10 Sending to : <4> +10:09:10 ============================================================================ +10:09:11 ============================================================================ +10:09:11 Slot Id : <444> +10:09:11 Transaction Type : RESPONSE +10:09:11 Received From : +10:09:11 ============================================================================ +10:09:11 FNo. Len. Field Value +10:09:11 ============================================================================ +10:09:11 [ 1] [ 4] [0210] +10:09:11 [ 2] [ 16] [6688990040146464] +10:09:11 [ 3] [ 6] [012000] +10:09:11 [ 4] [ 12] [000100000000] +10:09:11 [ 11] [ 6] [709635] +10:09:11 [ 12] [ 6] [100905] +10:09:11 [ 15] [ 4] [0320] +10:09:11 [ 18] [ 4] [6011] +10:09:11 [ 32] [ 6] [621354] +10:09:11 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:09:11 [ 37] [ 12] [507905261858] +10:09:11 [ 38] [ 6] [297569] +10:09:11 [ 39] [ 2] [00] +10:09:11 [ 41] [ 8] [19000900] +10:09:11 [ 49] [ 3] [418] +10:09:11 [ 54] [ 20] [2002418C000305800000] +10:09:11 ============================================================================ +10:09:11 Sending to : +10:09:11 ============================================================================ +10:09:11 + + +waiting on router queue for slot.... +10:09:13 ============================================================================ +10:09:13 Slot Id : <444> +10:09:13 Transaction Type : RESPONSE +10:09:13 Received From : +10:09:13 ============================================================================ +10:09:13 FNo. Len. Field Value +10:09:13 ============================================================================ +10:09:13 [ 1] [ 4] [0210] +10:09:13 [ 2] [ 16] [6688990040146464] +10:09:13 [ 3] [ 6] [012000] +10:09:13 [ 4] [ 12] [000100000000] +10:09:13 [ 11] [ 6] [709635] +10:09:13 [ 12] [ 6] [100905] +10:09:13 [ 15] [ 4] [0320] +10:09:13 [ 18] [ 4] [6011] +10:09:13 [ 32] [ 6] [621354] +10:09:13 [ 35] [ 37] [6688990040146464=98041261438721100000] +10:09:13 [ 37] [ 12] [507905261858] +10:09:13 [ 38] [ 6] [297569] +10:09:13 [ 39] [ 2] [00] +10:09:13 [ 41] [ 8] [19000900] +10:09:13 [ 49] [ 3] [418] +10:09:13 [ 54] [ 20] [2002418C000305800000] +10:09:13 ============================================================================ +10:09:13 Calculate Source COMM Id = 0 +10:09:13 ============================================================================ +10:09:13 + + +waiting on router queue for slot.... +10:09:14 ============================================================================ +10:09:14 Slot Id : <421> +10:09:14 Transaction Type : REQUEST +10:09:14 Received From : +10:09:14 ============================================================================ +10:09:14 FNo. Len. Field Value +10:09:14 ============================================================================ +10:09:14 [ 1] [ 4] [0800] +10:09:14 [ 7] [ 10] [0320030821] +10:09:14 [ 11] [ 6] [155782] +10:09:14 [ 70] [ 3] [301] +10:09:14 ============================================================================ +10:09:14 + + +waiting on router queue for slot.... +10:09:14 Sending to : +10:09:14 ============================================================================ +10:09:14 ============================================================================ +10:09:14 Slot Id : <421> +10:09:14 Transaction Type : RESPONSE +10:09:14 Received From : +10:09:14 ============================================================================ +10:09:14 FNo. Len. Field Value +10:09:14 ============================================================================ +10:09:14 [ 1] [ 4] [0810] +10:09:14 [ 7] [ 10] [0320030821] +10:09:14 [ 11] [ 6] [155782] +10:09:14 [ 39] [ 2] [00] +10:09:14 [ 70] [ 3] [301] +10:09:14 ============================================================================ +10:09:14 Calculate Source COMM Id = 2 +10:09:14 ============================================================================ +10:09:14 + + +waiting on router queue for slot.... +10:09:15 ============================================================================ +10:09:15 Slot Id : <465> +10:09:15 Transaction Type : REQUEST +10:09:15 Received From : +10:09:15 ============================================================================ +10:09:15 FNo. Len. Field Value +10:09:15 ============================================================================ +10:09:15 [ 1] [ 4] [0800] +10:09:15 [ 2] [ 5] [02531] +10:09:15 [ 3] [ 6] [579108] +10:09:15 [ 7] [ 10] [0320030915] +10:09:15 [ 11] [ 6] [807001] +10:09:15 [ 15] [ 10] [0320030915] +10:09:15 [ 37] [ 11] [57910807001] +10:09:15 [ 70] [ 3] [001] +10:09:15 ============================================================================ +10:09:15 + + +waiting on router queue for slot.... +10:09:15 ============================================================================ +10:09:15 Slot Id : <465> +10:09:15 Transaction Type : RESPONSE +10:09:15 Received From : +10:09:15 ============================================================================ +10:09:15 FNo. Len. Field Value +10:09:15 ============================================================================ +10:09:15 [ 1] [ 4] [0810] +10:09:15 [ 7] [ 10] [0320030915] +10:09:15 [ 11] [ 6] [807001] +10:09:15 [ 15] [ 4] [0320] +10:09:15 [ 37] [ 12] [57910807001] +10:09:15 [ 39] [ 2] [00] +10:09:15 [ 70] [ 3] [001] +10:09:15 ============================================================================ +10:09:15 Sending to : +10:09:15 ============================================================================ +10:09:15 + + +waiting on router queue for slot.... +10:09:26 ============================================================================ +10:09:26 Slot Id : <436> +10:09:26 Transaction Type : REQUEST +10:09:26 Received From : +10:09:26 ============================================================================ +10:09:26 FNo. Len. Field Value +10:09:26 ============================================================================ +10:09:26 [ 1] [ 4] [0200] +10:09:26 [ 2] [ 16] [6688990100954500] +10:09:26 [ 3] [ 6] [010000] +10:09:26 [ 4] [ 12] [000100000000] +10:09:26 [ 7] [ 10] [0320100922] +10:09:26 [ 11] [ 6] [709719] +10:09:26 [ 12] [ 6] [100922] +10:09:26 [ 13] [ 4] [0320] +10:09:26 [ 15] [ 4] [0320] +10:09:26 [ 18] [ 4] [6011] +10:09:26 [ 22] [ 3] [900] +10:09:26 [ 25] [ 2] [02] +10:09:26 [ 28] [ 9] [D00002000] +10:09:26 [ 32] [ 6] [621354] +10:09:26 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:09:26 [ 37] [ 12] [507904719483] +10:09:26 [ 41] [ 8] [18001000] +10:09:26 [ 42] [ 15] [NATIVE ] +10:09:26 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:09:26 [ 49] [ 3] [418] +10:09:26 [ 52] [ 16] [A3392CBD0AD7636A] +10:09:26 ============================================================================ +10:09:26 + + +waiting on router queue for slot.... +10:09:26 Sending to : +10:09:26 ============================================================================ +10:09:26 Sending to : +10:09:26 ============================================================================ +10:09:26 ============================================================================ +10:09:26 Slot Id : <436> +10:09:26 Transaction Type : REQUEST +10:09:26 Received From : +10:09:26 ============================================================================ +10:09:26 FNo. Len. Field Value +10:09:26 ============================================================================ +10:09:26 [ 1] [ 4] [0200] +10:09:26 [ 2] [ 16] [6688990100954500] +10:09:26 [ 3] [ 6] [010000] +10:09:26 [ 4] [ 12] [000100000000] +10:09:26 [ 7] [ 10] [0320100922] +10:09:26 [ 11] [ 6] [709719] +10:09:26 [ 12] [ 6] [100922] +10:09:26 [ 13] [ 4] [0320] +10:09:26 [ 15] [ 4] [0320] +10:09:26 [ 18] [ 4] [6011] +10:09:26 [ 22] [ 3] [900] +10:09:26 [ 25] [ 2] [02] +10:09:26 [ 28] [ 9] [D00002000] +10:09:26 [ 32] [ 6] [621354] +10:09:26 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:09:26 [ 37] [ 12] [507904719483] +10:09:26 [ 41] [ 8] [18001000] +10:09:26 [ 42] [ 15] [NATIVE ] +10:09:26 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:09:26 [ 49] [ 3] [418] +10:09:26 [ 52] [ 16] [A3392CBD0AD7636A] +10:09:26 ============================================================================ +10:09:26 + + +waiting on router queue for slot.... +10:09:26 Sending to : +10:09:26 ============================================================================ +10:09:26 ============================================================================ +10:09:26 Slot Id : <436> +10:09:26 Transaction Type : REQUEST +10:09:26 Received From : +10:09:26 ============================================================================ +10:09:26 FNo. Len. Field Value +10:09:26 ============================================================================ +10:09:26 [ 1] [ 4] [0200] +10:09:26 [ 2] [ 16] [6688990100954500] +10:09:26 [ 3] [ 6] [010000] +10:09:26 [ 4] [ 12] [000100000000] +10:09:26 [ 7] [ 10] [0320100922] +10:09:26 [ 11] [ 6] [709719] +10:09:26 [ 12] [ 6] [100922] +10:09:26 [ 13] [ 4] [0320] +10:09:26 [ 15] [ 4] [0320] +10:09:26 [ 18] [ 4] [6011] +10:09:26 [ 22] [ 3] [900] +10:09:26 [ 25] [ 2] [02] +10:09:26 [ 28] [ 9] [D00002000] +10:09:26 [ 32] [ 6] [621354] +10:09:26 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:09:26 [ 37] [ 12] [507904719483] +10:09:26 [ 41] [ 8] [18001000] +10:09:26 [ 42] [ 15] [NATIVE ] +10:09:26 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:09:26 [ 49] [ 3] [418] +10:09:26 [ 52] [ 16] [F0F417C7E0D10D66] +10:09:26 ============================================================================ +10:09:26 + + +waiting on router queue for slot.... +10:09:26 Sending to : <4> +10:09:26 ============================================================================ +10:09:27 ============================================================================ +10:09:27 Slot Id : <436> +10:09:27 Transaction Type : RESPONSE +10:09:27 Received From : +10:09:27 ============================================================================ +10:09:27 FNo. Len. Field Value +10:09:27 ============================================================================ +10:09:27 [ 1] [ 4] [0210] +10:09:27 [ 2] [ 16] [6688990100954500] +10:09:27 [ 3] [ 6] [010000] +10:09:27 [ 4] [ 12] [000100000000] +10:09:27 [ 11] [ 6] [709719] +10:09:27 [ 12] [ 6] [100922] +10:09:27 [ 15] [ 4] [0320] +10:09:27 [ 18] [ 4] [6011] +10:09:27 [ 32] [ 6] [621354] +10:09:27 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:09:27 [ 37] [ 12] [507904719483] +10:09:27 [ 38] [ 6] [697920] +10:09:27 [ 39] [ 2] [00] +10:09:27 [ 41] [ 8] [18001000] +10:09:27 [ 49] [ 3] [418] +10:09:27 [ 54] [ 20] [0002418C000042856572] +10:09:27 ============================================================================ +10:09:27 Sending to : +10:09:27 ============================================================================ +10:09:27 + + +waiting on router queue for slot.... +10:09:29 ============================================================================ +10:09:29 Slot Id : <436> +10:09:29 Transaction Type : RESPONSE +10:09:29 Received From : +10:09:29 ============================================================================ +10:09:29 FNo. Len. Field Value +10:09:29 ============================================================================ +10:09:29 [ 1] [ 4] [0210] +10:09:29 [ 2] [ 16] [6688990100954500] +10:09:29 [ 3] [ 6] [010000] +10:09:29 [ 4] [ 12] [000100000000] +10:09:29 [ 11] [ 6] [709719] +10:09:29 [ 12] [ 6] [100922] +10:09:29 [ 15] [ 4] [0320] +10:09:29 [ 18] [ 4] [6011] +10:09:29 [ 32] [ 6] [621354] +10:09:29 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:09:29 [ 37] [ 12] [507904719483] +10:09:29 [ 38] [ 6] [697920] +10:09:29 [ 39] [ 2] [00] +10:09:29 [ 41] [ 8] [18001000] +10:09:29 [ 49] [ 3] [418] +10:09:29 [ 54] [ 20] [0002418C000042856572] +10:09:29 ============================================================================ +10:09:29 Calculate Source COMM Id = 0 +10:09:29 ============================================================================ +10:09:29 + + +waiting on router queue for slot.... +10:09:29 ============================================================================ +10:09:29 Slot Id : <423> +10:09:29 Transaction Type : REQUEST +10:09:29 Received From : +10:09:29 ============================================================================ +10:09:29 FNo. Len. Field Value +10:09:29 ============================================================================ +10:09:29 [ 1] [ 4] [0800] +10:09:29 [ 7] [ 10] [0320030837] +10:09:29 [ 11] [ 6] [155783] +10:09:29 [ 70] [ 3] [301] +10:09:29 ============================================================================ +10:09:29 + + +waiting on router queue for slot.... +10:09:29 Sending to : +10:09:29 ============================================================================ +10:09:29 ============================================================================ +10:09:29 Slot Id : <423> +10:09:29 Transaction Type : RESPONSE +10:09:29 Received From : +10:09:29 ============================================================================ +10:09:29 FNo. Len. Field Value +10:09:29 ============================================================================ +10:09:29 [ 1] [ 4] [0810] +10:09:29 [ 7] [ 10] [0320030837] +10:09:29 [ 11] [ 6] [155783] +10:09:29 [ 39] [ 2] [00] +10:09:29 [ 70] [ 3] [301] +10:09:29 ============================================================================ +10:09:29 Calculate Source COMM Id = 2 +10:09:29 ============================================================================ +10:09:29 + + +waiting on router queue for slot.... +10:09:44 ============================================================================ +10:09:44 Slot Id : <439> +10:09:44 Transaction Type : REQUEST +10:09:44 Received From : +10:09:44 ============================================================================ +10:09:44 FNo. Len. Field Value +10:09:44 ============================================================================ +10:09:44 [ 1] [ 4] [0800] +10:09:44 [ 7] [ 10] [0320030852] +10:09:44 [ 11] [ 6] [155784] +10:09:44 [ 70] [ 3] [301] +10:09:44 ============================================================================ +10:09:44 + + +waiting on router queue for slot.... +10:09:44 Sending to : +10:09:44 ============================================================================ +10:09:44 ============================================================================ +10:09:44 Slot Id : <439> +10:09:44 Transaction Type : RESPONSE +10:09:44 Received From : +10:09:44 ============================================================================ +10:09:44 FNo. Len. Field Value +10:09:44 ============================================================================ +10:09:44 [ 1] [ 4] [0810] +10:09:44 [ 7] [ 10] [0320030852] +10:09:44 [ 11] [ 6] [155784] +10:09:44 [ 39] [ 2] [00] +10:09:44 [ 70] [ 3] [301] +10:09:44 ============================================================================ +10:09:44 Calculate Source COMM Id = 2 +10:09:44 ============================================================================ +10:09:44 + + +waiting on router queue for slot.... +10:09:54 ============================================================================ +10:09:54 Slot Id : <458> +10:09:54 Transaction Type : REQUEST +10:09:54 Received From : +10:09:54 ============================================================================ +10:09:54 FNo. Len. Field Value +10:09:54 ============================================================================ +10:09:54 [ 1] [ 4] [0800] +10:09:54 [ 7] [ 10] [0320031742] +10:09:54 [ 11] [ 6] [077315] +10:09:54 [ 37] [ 12] [57910077315] +10:09:54 [ 70] [ 3] [301] +10:09:54 ============================================================================ +10:09:54 + + +waiting on router queue for slot.... +10:09:54 Sending to : +10:09:54 ============================================================================ +10:09:54 ============================================================================ +10:09:54 Slot Id : <458> +10:09:54 Transaction Type : RESPONSE +10:09:54 Received From : +10:09:54 ============================================================================ +10:09:54 FNo. Len. Field Value +10:09:54 ============================================================================ +10:09:54 [ 1] [ 4] [0810] +10:09:54 [ 7] [ 10] [0320031742] +10:09:54 [ 11] [ 6] [077315] +10:09:54 [ 37] [ 12] [579100773150] +10:09:54 [ 39] [ 2] [00] +10:09:54 [ 70] [ 3] [810] +10:09:54 ============================================================================ +10:09:54 Calculate Source COMM Id = 1 +10:09:54 ============================================================================ +10:09:54 + + +waiting on router queue for slot.... +10:09:56 ============================================================================ +10:09:56 Slot Id : <459> +10:09:56 Transaction Type : REQUEST +10:09:56 Received From : +10:09:56 ============================================================================ +10:09:56 FNo. Len. Field Value +10:09:56 ============================================================================ +10:09:56 [ 1] [ 4] [0800] +10:09:56 [ 7] [ 10] [0320030904] +10:09:56 [ 11] [ 6] [155785] +10:09:56 [ 70] [ 3] [301] +10:09:56 ============================================================================ +10:09:56 + + +waiting on router queue for slot.... +10:09:56 Sending to : +10:09:56 ============================================================================ +10:09:56 ============================================================================ +10:09:56 Slot Id : <459> +10:09:56 Transaction Type : RESPONSE +10:09:56 Received From : +10:09:56 ============================================================================ +10:09:56 FNo. Len. Field Value +10:09:56 ============================================================================ +10:09:56 [ 1] [ 4] [0810] +10:09:56 [ 7] [ 10] [0320030904] +10:09:56 [ 11] [ 6] [155785] +10:09:56 [ 39] [ 2] [00] +10:09:56 [ 70] [ 3] [301] +10:09:56 ============================================================================ +10:09:56 Calculate Source COMM Id = 2 +10:09:56 ============================================================================ +10:09:56 + + +waiting on router queue for slot.... +10:10:01 ============================================================================ +10:10:01 Slot Id : <452> +10:10:01 Transaction Type : REQUEST +10:10:01 Received From : +10:10:01 ============================================================================ +10:10:01 FNo. Len. Field Value +10:10:01 ============================================================================ +10:10:01 [ 1] [ 4] [0200] +10:10:01 [ 2] [ 16] [6213545000815914] +10:10:01 [ 3] [ 6] [010000] +10:10:01 [ 4] [ 12] [000050000000] +10:10:01 [ 7] [ 10] [0320030907] +10:10:01 [ 11] [ 6] [267969] +10:10:01 [ 12] [ 6] [100907] +10:10:01 [ 13] [ 4] [0320] +10:10:01 [ 14] [ 4] [4912] +10:10:01 [ 15] [ 4] [0320] +10:10:01 [ 18] [ 4] [6011] +10:10:01 [ 19] [ 3] [418] +10:10:01 [ 22] [ 3] [021] +10:10:01 [ 25] [ 2] [01] +10:10:01 [ 28] [ 9] [D00002000] +10:10:01 [ 32] [ 6] [180893] +10:10:01 [ 35] [ 32] [6213545000815914=491212011591938] +10:10:01 [ 37] [ 12] [507903267969] +10:10:01 [ 41] [ 8] [0262PSLB] +10:10:01 [ 42] [ 15] [999999 ] +10:10:01 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +10:10:01 [ 49] [ 3] [418] +10:10:01 [ 52] [ 16] [24A5E67C9A72C4DE] +10:10:01 ============================================================================ +10:10:01 + + +waiting on router queue for slot.... +10:10:01 Sending to : +10:10:01 ============================================================================ +10:10:01 Sending to : +10:10:01 ============================================================================ +10:10:01 ============================================================================ +10:10:01 Slot Id : <452> +10:10:01 Transaction Type : REQUEST +10:10:01 Received From : +10:10:01 ============================================================================ +10:10:01 FNo. Len. Field Value +10:10:01 ============================================================================ +10:10:01 [ 1] [ 4] [0200] +10:10:01 [ 2] [ 16] [6213545000815914] +10:10:01 [ 3] [ 6] [010000] +10:10:01 [ 4] [ 12] [000050000000] +10:10:01 [ 7] [ 10] [0320030907] +10:10:01 [ 11] [ 6] [267969] +10:10:01 [ 12] [ 6] [100907] +10:10:01 [ 13] [ 4] [0320] +10:10:01 [ 14] [ 4] [4912] +10:10:01 [ 15] [ 4] [0320] +10:10:01 [ 18] [ 4] [6011] +10:10:01 [ 19] [ 3] [418] +10:10:01 [ 22] [ 3] [021] +10:10:01 [ 25] [ 2] [01] +10:10:01 [ 28] [ 9] [D00002000] +10:10:01 [ 32] [ 6] [180893] +10:10:01 [ 35] [ 32] [6213545000815914=491212011591938] +10:10:01 [ 37] [ 12] [507903267969] +10:10:01 [ 41] [ 8] [0262PSLB] +10:10:01 [ 42] [ 15] [999999 ] +10:10:01 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +10:10:01 [ 49] [ 3] [418] +10:10:01 [ 52] [ 16] [24A5E67C9A72C4DE] +10:10:01 ============================================================================ +10:10:01 + + +waiting on router queue for slot.... +10:10:01 Sending to : +10:10:01 ============================================================================ +10:10:01 ============================================================================ +10:10:01 Slot Id : <452> +10:10:01 Transaction Type : REQUEST +10:10:01 Received From : +10:10:01 ============================================================================ +10:10:01 FNo. Len. Field Value +10:10:01 ============================================================================ +10:10:01 [ 1] [ 4] [0200] +10:10:01 [ 2] [ 16] [6213545000815914] +10:10:01 [ 3] [ 6] [010000] +10:10:01 [ 4] [ 12] [000050000000] +10:10:01 [ 7] [ 10] [0320030907] +10:10:01 [ 11] [ 6] [267969] +10:10:01 [ 12] [ 6] [100907] +10:10:01 [ 13] [ 4] [0320] +10:10:01 [ 14] [ 4] [4912] +10:10:01 [ 15] [ 4] [0320] +10:10:01 [ 18] [ 4] [6011] +10:10:01 [ 19] [ 3] [418] +10:10:01 [ 22] [ 3] [021] +10:10:01 [ 25] [ 2] [01] +10:10:01 [ 28] [ 9] [D00002000] +10:10:01 [ 32] [ 6] [180893] +10:10:01 [ 35] [ 32] [6213545000815914=491212011591938] +10:10:01 [ 37] [ 12] [507903267969] +10:10:01 [ 41] [ 8] [0262PSLB] +10:10:01 [ 42] [ 15] [999999 ] +10:10:01 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +10:10:01 [ 49] [ 3] [418] +10:10:01 [ 52] [ 16] [9C10151343ABEF01] +10:10:01 ============================================================================ +10:10:01 + + +waiting on router queue for slot.... +10:10:01 Sending to : <0> +10:10:01 ============================================================================ +10:10:02 ============================================================================ +10:10:02 Slot Id : <452> +10:10:02 Transaction Type : RESPONSE +10:10:02 Received From : +10:10:02 ============================================================================ +10:10:02 FNo. Len. Field Value +10:10:02 ============================================================================ +10:10:02 [ 1] [ 4] [0210] +10:10:02 [ 2] [ 16] [6213545000815914] +10:10:02 [ 3] [ 6] [010000] +10:10:02 [ 4] [ 12] [000050000000] +10:10:02 [ 7] [ 10] [0320030907] +10:10:02 [ 11] [ 6] [267969] +10:10:02 [ 12] [ 6] [100907] +10:10:02 [ 13] [ 4] [0320] +10:10:02 [ 15] [ 4] [0320] +10:10:02 [ 18] [ 4] [6011] +10:10:02 [ 19] [ 3] [418] +10:10:02 [ 32] [ 6] [180893] +10:10:02 [ 35] [ 32] [6213545000815914=491212011591938] +10:10:02 [ 37] [ 12] [507903267969] +10:10:02 [ 38] [ 6] [509090] +10:10:02 [ 39] [ 2] [00] +10:10:02 [ 41] [ 8] [0262PSLB] +10:10:02 [ 49] [ 3] [418] +10:10:02 [ 54] [ 40] [0001418C0000325118970002418C000032511897] +10:10:02 ============================================================================ +10:10:02 Sending to : +10:10:02 ============================================================================ +10:10:02 + + +waiting on router queue for slot.... +10:10:04 ============================================================================ +10:10:04 Slot Id : <452> +10:10:04 Transaction Type : RESPONSE +10:10:04 Received From : +10:10:04 ============================================================================ +10:10:04 FNo. Len. Field Value +10:10:04 ============================================================================ +10:10:04 [ 1] [ 4] [0210] +10:10:04 [ 2] [ 16] [6213545000815914] +10:10:04 [ 3] [ 6] [010000] +10:10:04 [ 4] [ 12] [000050000000] +10:10:04 [ 7] [ 10] [0320030907] +10:10:04 [ 11] [ 6] [267969] +10:10:04 [ 12] [ 6] [100907] +10:10:04 [ 13] [ 4] [0320] +10:10:04 [ 15] [ 4] [0320] +10:10:04 [ 18] [ 4] [6011] +10:10:04 [ 19] [ 3] [418] +10:10:04 [ 32] [ 6] [180893] +10:10:04 [ 35] [ 32] [6213545000815914=491212011591938] +10:10:04 [ 37] [ 12] [507903267969] +10:10:04 [ 38] [ 6] [509090] +10:10:04 [ 39] [ 2] [00] +10:10:04 [ 41] [ 8] [0262PSLB] +10:10:04 [ 49] [ 3] [418] +10:10:04 [ 54] [ 40] [0001418C0000325118970002418C000032511897] +10:10:04 ============================================================================ +10:10:04 Calculate Source COMM Id = 2 +10:10:04 ============================================================================ +10:10:04 + + +waiting on router queue for slot.... +10:10:04 ============================================================================ +10:10:04 Slot Id : <466> +10:10:04 Transaction Type : REQUEST +10:10:04 Received From : +10:10:04 ============================================================================ +10:10:04 FNo. Len. Field Value +10:10:04 ============================================================================ +10:10:04 [ 1] [ 4] [0800] +10:10:04 [ 7] [ 10] [0320172153] +10:10:04 [ 11] [ 6] [102153] +10:10:04 [ 37] [ 12] [57910102153] +10:10:04 [ 70] [ 3] [301] +10:10:04 ============================================================================ +10:10:04 + + +waiting on router queue for slot.... +10:10:04 Sending to : +10:10:04 ============================================================================ +10:10:04 ============================================================================ +10:10:04 Slot Id : <466> +10:10:04 Transaction Type : RESPONSE +10:10:04 Received From : +10:10:04 ============================================================================ +10:10:04 FNo. Len. Field Value +10:10:04 ============================================================================ +10:10:04 [ 1] [ 4] [0810] +10:10:04 [ 7] [ 10] [0320172153] +10:10:04 [ 11] [ 6] [102153] +10:10:04 [ 37] [ 12] [579101021530] +10:10:04 [ 39] [ 2] [00] +10:10:04 [ 70] [ 3] [810] +10:10:04 ============================================================================ +10:10:04 Calculate Source COMM Id = 6 +10:10:04 ============================================================================ +10:10:04 + + +waiting on router queue for slot.... +10:10:08 ============================================================================ +10:10:08 Slot Id : <468> +10:10:08 Transaction Type : REQUEST +10:10:08 Received From : +10:10:08 ============================================================================ +10:10:08 FNo. Len. Field Value +10:10:08 ============================================================================ +10:10:08 [ 1] [ 4] [0800] +10:10:08 [ 7] [ 10] [0320100955] +10:10:08 [ 11] [ 6] [094341] +10:10:08 [ 37] [ 12] [507910094341] +10:10:08 [ 70] [ 3] [ ] +10:10:08 ============================================================================ +10:10:08 + + +waiting on router queue for slot.... +10:10:08 Sending to : +10:10:08 ============================================================================ +10:10:08 ============================================================================ +10:10:08 Slot Id : <468> +10:10:08 Transaction Type : RESPONSE +10:10:08 Received From : +10:10:08 ============================================================================ +10:10:08 FNo. Len. Field Value +10:10:08 ============================================================================ +10:10:08 [ 1] [ 4] [0810] +10:10:08 [ 7] [ 10] [0320100955] +10:10:08 [ 11] [ 6] [094341] +10:10:08 [ 37] [ 12] [507910094341] +10:10:08 [ 39] [ 2] [91] +10:10:08 [ 70] [ 3] [ ] +10:10:08 ============================================================================ +10:10:08 Calculate Source COMM Id = 3 +10:10:08 ============================================================================ +10:10:08 + + +waiting on router queue for slot.... +10:10:08 ============================================================================ +10:10:08 Slot Id : <455> +10:10:08 Transaction Type : REQUEST +10:10:08 Received From : +10:10:08 ============================================================================ +10:10:08 FNo. Len. Field Value +10:10:08 ============================================================================ +10:10:08 [ 1] [ 4] [0200] +10:10:08 [ 2] [ 16] [6213545000000434] +10:10:08 [ 3] [ 6] [010000] +10:10:08 [ 4] [ 12] [000100000000] +10:10:08 [ 7] [ 10] [0320100759] +10:10:08 [ 11] [ 6] [937743] +10:10:08 [ 12] [ 6] [100759] +10:10:08 [ 13] [ 4] [0320] +10:10:08 [ 15] [ 4] [0320] +10:10:08 [ 18] [ 4] [6011] +10:10:08 [ 19] [ 3] [418] +10:10:08 [ 22] [ 3] [021] +10:10:08 [ 25] [ 2] [01] +10:10:08 [ 28] [ 9] [D00002000] +10:10:08 [ 32] [ 6] [668899] +10:10:08 [ 35] [ 32] [6213545000000434=491212010043908] +10:10:08 [ 37] [ 12] [507902650419] +10:10:08 [ 41] [ 8] [03018006] +10:10:08 [ 42] [ 15] [APT ] +10:10:08 [ 43] [ 40] [ VOCATIONAL SCHOOL XAYSETT] +10:10:08 [ 49] [ 3] [418] +10:10:08 [ 52] [ 16] [779C8190F4208932] +10:10:08 ============================================================================ +10:10:08 + + +waiting on router queue for slot.... +10:10:08 Sending to : +10:10:08 ============================================================================ +10:10:08 Sending to : +10:10:08 ============================================================================ +10:10:08 ============================================================================ +10:10:08 Slot Id : <455> +10:10:08 Transaction Type : REQUEST +10:10:08 Received From : +10:10:08 ============================================================================ +10:10:08 FNo. Len. Field Value +10:10:08 ============================================================================ +10:10:08 [ 1] [ 4] [0200] +10:10:08 [ 2] [ 16] [6213545000000434] +10:10:08 [ 3] [ 6] [010000] +10:10:08 [ 4] [ 12] [000100000000] +10:10:08 [ 7] [ 10] [0320100759] +10:10:08 [ 11] [ 6] [937743] +10:10:08 [ 12] [ 6] [100759] +10:10:08 [ 13] [ 4] [0320] +10:10:08 [ 15] [ 4] [0320] +10:10:08 [ 18] [ 4] [6011] +10:10:08 [ 19] [ 3] [418] +10:10:08 [ 22] [ 3] [021] +10:10:08 [ 25] [ 2] [01] +10:10:08 [ 28] [ 9] [D00002000] +10:10:08 [ 32] [ 6] [668899] +10:10:08 [ 35] [ 32] [6213545000000434=491212010043908] +10:10:08 [ 37] [ 12] [507902650419] +10:10:08 [ 41] [ 8] [03018006] +10:10:08 [ 42] [ 15] [APT ] +10:10:08 [ 43] [ 40] [ VOCATIONAL SCHOOL XAYSETT] +10:10:08 [ 49] [ 3] [418] +10:10:08 [ 52] [ 16] [779C8190F4208932] +10:10:08 ============================================================================ +10:10:08 + + +waiting on router queue for slot.... +10:10:08 Sending to : +10:10:08 ============================================================================ +10:10:08 ============================================================================ +10:10:08 Slot Id : <455> +10:10:08 Transaction Type : REQUEST +10:10:08 Received From : +10:10:08 ============================================================================ +10:10:08 FNo. Len. Field Value +10:10:08 ============================================================================ +10:10:08 [ 1] [ 4] [0200] +10:10:08 [ 2] [ 16] [6213545000000434] +10:10:08 [ 3] [ 6] [010000] +10:10:08 [ 4] [ 12] [000100000000] +10:10:08 [ 7] [ 10] [0320100759] +10:10:08 [ 11] [ 6] [937743] +10:10:08 [ 12] [ 6] [100759] +10:10:08 [ 13] [ 4] [0320] +10:10:08 [ 15] [ 4] [0320] +10:10:08 [ 18] [ 4] [6011] +10:10:08 [ 19] [ 3] [418] +10:10:08 [ 22] [ 3] [021] +10:10:08 [ 25] [ 2] [01] +10:10:08 [ 28] [ 9] [D00002000] +10:10:08 [ 32] [ 6] [668899] +10:10:08 [ 35] [ 32] [6213545000000434=491212010043908] +10:10:08 [ 37] [ 12] [507902650419] +10:10:08 [ 41] [ 8] [03018006] +10:10:08 [ 42] [ 15] [APT ] +10:10:08 [ 43] [ 40] [ VOCATIONAL SCHOOL XAYSETT] +10:10:08 [ 49] [ 3] [418] +10:10:08 [ 52] [ 16] [D575012A767E4092] +10:10:08 ============================================================================ +10:10:08 + + +waiting on router queue for slot.... +10:10:08 Sending to : <0> +10:10:08 ============================================================================ +10:10:09 ============================================================================ +10:10:09 Slot Id : <455> +10:10:09 Transaction Type : RESPONSE +10:10:09 Received From : +10:10:09 ============================================================================ +10:10:09 FNo. Len. Field Value +10:10:09 ============================================================================ +10:10:09 [ 1] [ 4] [0210] +10:10:09 [ 2] [ 16] [6213545000000434] +10:10:09 [ 3] [ 6] [010000] +10:10:09 [ 4] [ 12] [000100000000] +10:10:09 [ 7] [ 10] [0320100759] +10:10:09 [ 11] [ 6] [937743] +10:10:09 [ 12] [ 6] [100759] +10:10:09 [ 13] [ 4] [0320] +10:10:09 [ 15] [ 4] [0320] +10:10:09 [ 18] [ 4] [6011] +10:10:09 [ 19] [ 3] [418] +10:10:09 [ 32] [ 6] [668899] +10:10:09 [ 35] [ 32] [6213545000000434=491212010043908] +10:10:09 [ 37] [ 12] [507902650419] +10:10:09 [ 38] [ 6] [973444] +10:10:09 [ 39] [ 2] [00] +10:10:09 [ 41] [ 8] [03018006] +10:10:09 [ 49] [ 3] [418] +10:10:09 [ 54] [ 40] [0001418C0000907211880002418C000090721188] +10:10:09 ============================================================================ +10:10:09 Sending to : +10:10:09 ============================================================================ +10:10:09 + + +waiting on router queue for slot.... +10:10:11 ============================================================================ +10:10:11 Slot Id : <455> +10:10:11 Transaction Type : RESPONSE +10:10:11 Received From : +10:10:11 ============================================================================ +10:10:11 FNo. Len. Field Value +10:10:11 ============================================================================ +10:10:11 [ 1] [ 4] [0210] +10:10:11 [ 2] [ 16] [6213545000000434] +10:10:11 [ 3] [ 6] [010000] +10:10:11 [ 4] [ 12] [000100000000] +10:10:11 [ 7] [ 10] [0320100759] +10:10:11 [ 11] [ 6] [937743] +10:10:11 [ 12] [ 6] [100759] +10:10:11 [ 13] [ 4] [0320] +10:10:11 [ 15] [ 4] [0320] +10:10:11 [ 18] [ 4] [6011] +10:10:11 [ 19] [ 3] [418] +10:10:11 [ 32] [ 6] [668899] +10:10:11 [ 35] [ 32] [6213545000000434=491212010043908] +10:10:11 [ 37] [ 12] [507902650419] +10:10:11 [ 38] [ 6] [973444] +10:10:11 [ 39] [ 2] [00] +10:10:11 [ 41] [ 8] [03018006] +10:10:11 [ 49] [ 3] [418] +10:10:11 [ 54] [ 40] [0001418C0000907211880002418C000090721188] +10:10:11 ============================================================================ +10:10:11 Calculate Source COMM Id = 4 +10:10:11 ============================================================================ +10:10:11 + + +waiting on router queue for slot.... +10:10:17 ============================================================================ +10:10:17 Slot Id : <475> +10:10:17 Transaction Type : REQUEST +10:10:17 Received From : +10:10:17 ============================================================================ +10:10:17 FNo. Len. Field Value +10:10:17 ============================================================================ +10:10:17 [ 1] [ 4] [0800] +10:10:17 [ 2] [ 5] [02531] +10:10:17 [ 3] [ 6] [579108] +10:10:17 [ 7] [ 10] [0320031017] +10:10:17 [ 11] [ 6] [807002] +10:10:17 [ 15] [ 10] [0320031017] +10:10:17 [ 37] [ 11] [57910807002] +10:10:17 [ 70] [ 3] [001] +10:10:17 ============================================================================ +10:10:17 + + +waiting on router queue for slot.... +10:10:17 ============================================================================ +10:10:17 Slot Id : <475> +10:10:17 Transaction Type : RESPONSE +10:10:17 Received From : +10:10:17 ============================================================================ +10:10:17 FNo. Len. Field Value +10:10:17 ============================================================================ +10:10:17 [ 1] [ 4] [0810] +10:10:17 [ 7] [ 10] [0320031017] +10:10:17 [ 11] [ 6] [807002] +10:10:17 [ 15] [ 4] [0320] +10:10:17 [ 37] [ 12] [57910807002] +10:10:17 [ 39] [ 2] [00] +10:10:17 [ 70] [ 3] [001] +10:10:17 ============================================================================ +10:10:17 Sending to : +10:10:17 ============================================================================ +10:10:17 + + +waiting on router queue for slot.... +10:10:18 ============================================================================ +10:10:18 Slot Id : <449> +10:10:18 Transaction Type : REQUEST +10:10:18 Received From : +10:10:18 ============================================================================ +10:10:18 FNo. Len. Field Value +10:10:18 ============================================================================ +10:10:18 [ 1] [ 4] [0800] +10:10:18 [ 7] [ 10] [0320030926] +10:10:18 [ 11] [ 6] [155786] +10:10:18 [ 70] [ 3] [301] +10:10:18 ============================================================================ +10:10:18 + + +waiting on router queue for slot.... +10:10:18 Sending to : +10:10:18 ============================================================================ +10:10:18 ============================================================================ +10:10:18 Slot Id : <449> +10:10:18 Transaction Type : RESPONSE +10:10:18 Received From : +10:10:18 ============================================================================ +10:10:18 FNo. Len. Field Value +10:10:18 ============================================================================ +10:10:18 [ 1] [ 4] [0810] +10:10:18 [ 7] [ 10] [0320030926] +10:10:18 [ 11] [ 6] [155786] +10:10:18 [ 39] [ 2] [00] +10:10:18 [ 70] [ 3] [301] +10:10:18 ============================================================================ +10:10:18 Calculate Source COMM Id = 2 +10:10:18 ============================================================================ +10:10:18 + + +waiting on router queue for slot.... +10:10:28 ============================================================================ +10:10:28 Slot Id : <440> +10:10:28 Transaction Type : REQUEST +10:10:28 Received From : +10:10:28 ============================================================================ +10:10:28 FNo. Len. Field Value +10:10:28 ============================================================================ +10:10:28 [ 1] [ 4] [0800] +10:10:28 [ 7] [ 10] [0320030936] +10:10:28 [ 11] [ 6] [155787] +10:10:28 [ 70] [ 3] [301] +10:10:28 ============================================================================ +10:10:28 + + +waiting on router queue for slot.... +10:10:28 Sending to : +10:10:28 ============================================================================ +10:10:28 ============================================================================ +10:10:28 Slot Id : <440> +10:10:28 Transaction Type : RESPONSE +10:10:28 Received From : +10:10:28 ============================================================================ +10:10:28 FNo. Len. Field Value +10:10:28 ============================================================================ +10:10:28 [ 1] [ 4] [0810] +10:10:28 [ 7] [ 10] [0320030936] +10:10:28 [ 11] [ 6] [155787] +10:10:28 [ 39] [ 2] [00] +10:10:28 [ 70] [ 3] [301] +10:10:28 ============================================================================ +10:10:28 Calculate Source COMM Id = 2 +10:10:28 ============================================================================ +10:10:28 + + +waiting on router queue for slot.... +10:10:31 ============================================================================ +10:10:31 Slot Id : <460> +10:10:31 Transaction Type : REQUEST +10:10:31 Received From : +10:10:31 ============================================================================ +10:10:31 FNo. Len. Field Value +10:10:31 ============================================================================ +10:10:31 [ 1] [ 4] [0200] +10:10:31 [ 2] [ 16] [6688990100954500] +10:10:31 [ 3] [ 6] [010000] +10:10:31 [ 4] [ 12] [000030000000] +10:10:31 [ 7] [ 10] [0320101026] +10:10:31 [ 11] [ 6] [710032] +10:10:31 [ 12] [ 6] [101026] +10:10:31 [ 13] [ 4] [0320] +10:10:31 [ 15] [ 4] [0320] +10:10:31 [ 18] [ 4] [6011] +10:10:31 [ 22] [ 3] [900] +10:10:31 [ 25] [ 2] [02] +10:10:31 [ 28] [ 9] [D00002000] +10:10:31 [ 32] [ 6] [621354] +10:10:31 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:10:31 [ 37] [ 12] [507904719485] +10:10:31 [ 41] [ 8] [18001000] +10:10:31 [ 42] [ 15] [NATIVE ] +10:10:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:10:31 [ 49] [ 3] [418] +10:10:31 [ 52] [ 16] [A3392CBD0AD7636A] +10:10:31 ============================================================================ +10:10:31 + + +waiting on router queue for slot.... +10:10:31 Sending to : +10:10:31 ============================================================================ +10:10:31 Sending to : +10:10:31 ============================================================================ +10:10:32 ============================================================================ +10:10:32 Slot Id : <460> +10:10:32 Transaction Type : REQUEST +10:10:32 Received From : +10:10:32 ============================================================================ +10:10:32 FNo. Len. Field Value +10:10:32 ============================================================================ +10:10:32 [ 1] [ 4] [0200] +10:10:32 [ 2] [ 16] [6688990100954500] +10:10:32 [ 3] [ 6] [010000] +10:10:32 [ 4] [ 12] [000030000000] +10:10:32 [ 7] [ 10] [0320101026] +10:10:32 [ 11] [ 6] [710032] +10:10:32 [ 12] [ 6] [101026] +10:10:32 [ 13] [ 4] [0320] +10:10:32 [ 15] [ 4] [0320] +10:10:32 [ 18] [ 4] [6011] +10:10:32 [ 22] [ 3] [900] +10:10:32 [ 25] [ 2] [02] +10:10:32 [ 28] [ 9] [D00002000] +10:10:32 [ 32] [ 6] [621354] +10:10:32 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:10:32 [ 37] [ 12] [507904719485] +10:10:32 [ 41] [ 8] [18001000] +10:10:32 [ 42] [ 15] [NATIVE ] +10:10:32 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:10:32 [ 49] [ 3] [418] +10:10:32 [ 52] [ 16] [A3392CBD0AD7636A] +10:10:32 ============================================================================ +10:10:32 + + +waiting on router queue for slot.... +10:10:32 Sending to : +10:10:32 ============================================================================ +10:10:32 ============================================================================ +10:10:32 Slot Id : <460> +10:10:32 Transaction Type : REQUEST +10:10:32 Received From : +10:10:32 ============================================================================ +10:10:32 FNo. Len. Field Value +10:10:32 ============================================================================ +10:10:32 [ 1] [ 4] [0200] +10:10:32 [ 2] [ 16] [6688990100954500] +10:10:32 [ 3] [ 6] [010000] +10:10:32 [ 4] [ 12] [000030000000] +10:10:32 [ 7] [ 10] [0320101026] +10:10:32 [ 11] [ 6] [710032] +10:10:32 [ 12] [ 6] [101026] +10:10:32 [ 13] [ 4] [0320] +10:10:32 [ 15] [ 4] [0320] +10:10:32 [ 18] [ 4] [6011] +10:10:32 [ 22] [ 3] [900] +10:10:32 [ 25] [ 2] [02] +10:10:32 [ 28] [ 9] [D00002000] +10:10:32 [ 32] [ 6] [621354] +10:10:32 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:10:32 [ 37] [ 12] [507904719485] +10:10:32 [ 41] [ 8] [18001000] +10:10:32 [ 42] [ 15] [NATIVE ] +10:10:32 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:10:32 [ 49] [ 3] [418] +10:10:32 [ 52] [ 16] [F0F417C7E0D10D66] +10:10:32 ============================================================================ +10:10:32 + + +waiting on router queue for slot.... +10:10:32 Sending to : <4> +10:10:32 ============================================================================ +10:10:33 ============================================================================ +10:10:33 Slot Id : <460> +10:10:33 Transaction Type : RESPONSE +10:10:33 Received From : +10:10:33 ============================================================================ +10:10:33 FNo. Len. Field Value +10:10:33 ============================================================================ +10:10:33 [ 1] [ 4] [0210] +10:10:33 [ 2] [ 16] [6688990100954500] +10:10:33 [ 3] [ 6] [010000] +10:10:33 [ 4] [ 12] [000030000000] +10:10:33 [ 11] [ 6] [710032] +10:10:33 [ 12] [ 6] [101026] +10:10:33 [ 15] [ 4] [0320] +10:10:33 [ 18] [ 4] [6011] +10:10:33 [ 32] [ 6] [621354] +10:10:33 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:10:33 [ 37] [ 12] [507904719485] +10:10:33 [ 38] [ 6] [144569] +10:10:33 [ 39] [ 2] [00] +10:10:33 [ 41] [ 8] [18001000] +10:10:33 [ 49] [ 3] [418] +10:10:33 [ 54] [ 20] [0002418C000012656572] +10:10:33 ============================================================================ +10:10:33 Sending to : +10:10:33 ============================================================================ +10:10:33 + + +waiting on router queue for slot.... +10:10:35 ============================================================================ +10:10:35 Slot Id : <460> +10:10:35 Transaction Type : RESPONSE +10:10:35 Received From : +10:10:35 ============================================================================ +10:10:35 FNo. Len. Field Value +10:10:35 ============================================================================ +10:10:35 [ 1] [ 4] [0210] +10:10:35 [ 2] [ 16] [6688990100954500] +10:10:35 [ 3] [ 6] [010000] +10:10:35 [ 4] [ 12] [000030000000] +10:10:35 [ 11] [ 6] [710032] +10:10:35 [ 12] [ 6] [101026] +10:10:35 [ 15] [ 4] [0320] +10:10:35 [ 18] [ 4] [6011] +10:10:35 [ 32] [ 6] [621354] +10:10:35 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:10:35 [ 37] [ 12] [507904719485] +10:10:35 [ 38] [ 6] [144569] +10:10:35 [ 39] [ 2] [00] +10:10:35 [ 41] [ 8] [18001000] +10:10:35 [ 49] [ 3] [418] +10:10:35 [ 54] [ 20] [0002418C000012656572] +10:10:35 ============================================================================ +10:10:35 Calculate Source COMM Id = 0 +10:10:35 ============================================================================ +10:10:35 + + +waiting on router queue for slot.... +10:10:40 ============================================================================ +10:10:40 Slot Id : <432> +10:10:40 Transaction Type : REQUEST +10:10:40 Received From : +10:10:40 ============================================================================ +10:10:40 FNo. Len. Field Value +10:10:40 ============================================================================ +10:10:40 [ 1] [ 4] [0800] +10:10:40 [ 7] [ 10] [0320030948] +10:10:40 [ 11] [ 6] [155788] +10:10:40 [ 70] [ 3] [301] +10:10:40 ============================================================================ +10:10:40 + + +waiting on router queue for slot.... +10:10:40 Sending to : +10:10:40 ============================================================================ +10:10:40 ============================================================================ +10:10:40 Slot Id : <432> +10:10:40 Transaction Type : RESPONSE +10:10:40 Received From : +10:10:40 ============================================================================ +10:10:40 FNo. Len. Field Value +10:10:40 ============================================================================ +10:10:40 [ 1] [ 4] [0810] +10:10:40 [ 7] [ 10] [0320030948] +10:10:40 [ 11] [ 6] [155788] +10:10:40 [ 39] [ 2] [00] +10:10:40 [ 70] [ 3] [301] +10:10:40 ============================================================================ +10:10:40 Calculate Source COMM Id = 2 +10:10:40 ============================================================================ +10:10:40 + + +waiting on router queue for slot.... +10:10:51 ============================================================================ +10:10:51 Slot Id : <482> +10:10:51 Transaction Type : REQUEST +10:10:51 Received From : +10:10:51 ============================================================================ +10:10:51 FNo. Len. Field Value +10:10:51 ============================================================================ +10:10:51 [ 1] [ 4] [0800] +10:10:51 [ 7] [ 10] [0320030958] +10:10:51 [ 11] [ 6] [155789] +10:10:51 [ 70] [ 3] [301] +10:10:51 ============================================================================ +10:10:51 + + +waiting on router queue for slot.... +10:10:51 Sending to : +10:10:51 ============================================================================ +10:10:51 ============================================================================ +10:10:51 Slot Id : <482> +10:10:51 Transaction Type : RESPONSE +10:10:51 Received From : +10:10:51 ============================================================================ +10:10:51 FNo. Len. Field Value +10:10:51 ============================================================================ +10:10:51 [ 1] [ 4] [0810] +10:10:51 [ 7] [ 10] [0320030958] +10:10:51 [ 11] [ 6] [155789] +10:10:51 [ 39] [ 2] [00] +10:10:51 [ 70] [ 3] [301] +10:10:51 ============================================================================ +10:10:51 Calculate Source COMM Id = 2 +10:10:51 ============================================================================ +10:10:51 + + +waiting on router queue for slot.... +10:11:01 ============================================================================ +10:11:01 Slot Id : <495> +10:11:01 Transaction Type : REQUEST +10:11:01 Received From : +10:11:01 ============================================================================ +10:11:01 FNo. Len. Field Value +10:11:01 ============================================================================ +10:11:01 [ 1] [ 4] [0200] +10:11:01 [ 2] [ 16] [6213545000000434] +10:11:01 [ 3] [ 6] [010000] +10:11:01 [ 4] [ 12] [000050000000] +10:11:01 [ 7] [ 10] [0320100852] +10:11:01 [ 11] [ 6] [937801] +10:11:01 [ 12] [ 6] [100852] +10:11:01 [ 13] [ 4] [0320] +10:11:01 [ 15] [ 4] [0320] +10:11:01 [ 18] [ 4] [6011] +10:11:01 [ 19] [ 3] [418] +10:11:01 [ 22] [ 3] [021] +10:11:01 [ 25] [ 2] [01] +10:11:01 [ 28] [ 9] [D00002000] +10:11:01 [ 32] [ 6] [668899] +10:11:01 [ 35] [ 32] [6213545000000434=491212010043908] +10:11:01 [ 37] [ 12] [507902650421] +10:11:01 [ 41] [ 8] [03018006] +10:11:01 [ 42] [ 15] [APT ] +10:11:01 [ 43] [ 40] [ VOCATIONAL SCHOOL XAYSETT] +10:11:01 [ 49] [ 3] [418] +10:11:01 [ 52] [ 16] [779C8190F4208932] +10:11:01 ============================================================================ +10:11:01 + + +waiting on router queue for slot.... +10:11:01 Sending to : +10:11:01 ============================================================================ +10:11:01 Sending to : +10:11:01 ============================================================================ +10:11:01 ============================================================================ +10:11:01 Slot Id : <495> +10:11:01 Transaction Type : REQUEST +10:11:01 Received From : +10:11:01 ============================================================================ +10:11:01 FNo. Len. Field Value +10:11:01 ============================================================================ +10:11:01 [ 1] [ 4] [0200] +10:11:01 [ 2] [ 16] [6213545000000434] +10:11:01 [ 3] [ 6] [010000] +10:11:01 [ 4] [ 12] [000050000000] +10:11:01 [ 7] [ 10] [0320100852] +10:11:01 [ 11] [ 6] [937801] +10:11:01 [ 12] [ 6] [100852] +10:11:01 [ 13] [ 4] [0320] +10:11:01 [ 15] [ 4] [0320] +10:11:01 [ 18] [ 4] [6011] +10:11:01 [ 19] [ 3] [418] +10:11:01 [ 22] [ 3] [021] +10:11:01 [ 25] [ 2] [01] +10:11:01 [ 28] [ 9] [D00002000] +10:11:01 [ 32] [ 6] [668899] +10:11:01 [ 35] [ 32] [6213545000000434=491212010043908] +10:11:01 [ 37] [ 12] [507902650421] +10:11:01 [ 41] [ 8] [03018006] +10:11:01 [ 42] [ 15] [APT ] +10:11:01 [ 43] [ 40] [ VOCATIONAL SCHOOL XAYSETT] +10:11:01 [ 49] [ 3] [418] +10:11:01 [ 52] [ 16] [779C8190F4208932] +10:11:01 ============================================================================ +10:11:01 + + +waiting on router queue for slot.... +10:11:01 Sending to : +10:11:01 ============================================================================ +10:11:01 ============================================================================ +10:11:01 Slot Id : <495> +10:11:01 Transaction Type : REQUEST +10:11:01 Received From : +10:11:01 ============================================================================ +10:11:01 FNo. Len. Field Value +10:11:01 ============================================================================ +10:11:01 [ 1] [ 4] [0200] +10:11:01 [ 2] [ 16] [6213545000000434] +10:11:01 [ 3] [ 6] [010000] +10:11:01 [ 4] [ 12] [000050000000] +10:11:01 [ 7] [ 10] [0320100852] +10:11:01 [ 11] [ 6] [937801] +10:11:01 [ 12] [ 6] [100852] +10:11:01 [ 13] [ 4] [0320] +10:11:01 [ 15] [ 4] [0320] +10:11:01 [ 18] [ 4] [6011] +10:11:01 [ 19] [ 3] [418] +10:11:01 [ 22] [ 3] [021] +10:11:01 [ 25] [ 2] [01] +10:11:01 [ 28] [ 9] [D00002000] +10:11:01 [ 32] [ 6] [668899] +10:11:01 [ 35] [ 32] [6213545000000434=491212010043908] +10:11:01 [ 37] [ 12] [507902650421] +10:11:01 [ 41] [ 8] [03018006] +10:11:01 [ 42] [ 15] [APT ] +10:11:01 [ 43] [ 40] [ VOCATIONAL SCHOOL XAYSETT] +10:11:01 [ 49] [ 3] [418] +10:11:01 [ 52] [ 16] [D575012A767E4092] +10:11:01 ============================================================================ +10:11:01 + + +waiting on router queue for slot.... +10:11:01 Sending to : <0> +10:11:01 ============================================================================ +10:11:01 ============================================================================ +10:11:01 Slot Id : <495> +10:11:01 Transaction Type : RESPONSE +10:11:01 Received From : +10:11:01 ============================================================================ +10:11:01 FNo. Len. Field Value +10:11:01 ============================================================================ +10:11:01 [ 1] [ 4] [0210] +10:11:01 [ 2] [ 16] [6213545000000434] +10:11:01 [ 3] [ 6] [010000] +10:11:01 [ 4] [ 12] [000050000000] +10:11:01 [ 7] [ 10] [0320100852] +10:11:01 [ 11] [ 6] [937801] +10:11:01 [ 12] [ 6] [100852] +10:11:01 [ 13] [ 4] [0320] +10:11:01 [ 15] [ 4] [0320] +10:11:01 [ 18] [ 4] [6011] +10:11:01 [ 19] [ 3] [418] +10:11:01 [ 32] [ 6] [668899] +10:11:01 [ 35] [ 32] [6213545000000434=491212010043908] +10:11:01 [ 37] [ 12] [507902650421] +10:11:01 [ 38] [ 6] [376456] +10:11:01 [ 39] [ 2] [00] +10:11:01 [ 41] [ 8] [03018006] +10:11:01 [ 49] [ 3] [418] +10:11:01 [ 54] [ 40] [0001418C0000405211880002418C000040521188] +10:11:01 ============================================================================ +10:11:01 Sending to : +10:11:01 ============================================================================ +10:11:01 + + +waiting on router queue for slot.... +10:11:03 ============================================================================ +10:11:03 Slot Id : <495> +10:11:03 Transaction Type : RESPONSE +10:11:03 Received From : +10:11:03 ============================================================================ +10:11:03 FNo. Len. Field Value +10:11:03 ============================================================================ +10:11:03 [ 1] [ 4] [0210] +10:11:03 [ 2] [ 16] [6213545000000434] +10:11:03 [ 3] [ 6] [010000] +10:11:03 [ 4] [ 12] [000050000000] +10:11:03 [ 7] [ 10] [0320100852] +10:11:03 [ 11] [ 6] [937801] +10:11:03 [ 12] [ 6] [100852] +10:11:03 [ 13] [ 4] [0320] +10:11:03 [ 15] [ 4] [0320] +10:11:03 [ 18] [ 4] [6011] +10:11:03 [ 19] [ 3] [418] +10:11:03 [ 32] [ 6] [668899] +10:11:03 [ 35] [ 32] [6213545000000434=491212010043908] +10:11:03 [ 37] [ 12] [507902650421] +10:11:03 [ 38] [ 6] [376456] +10:11:03 [ 39] [ 2] [00] +10:11:03 [ 41] [ 8] [03018006] +10:11:03 [ 49] [ 3] [418] +10:11:03 [ 54] [ 40] [0001418C0000405211880002418C000040521188] +10:11:03 ============================================================================ +10:11:03 Calculate Source COMM Id = 4 +10:11:03 ============================================================================ +10:11:03 + + +waiting on router queue for slot.... +10:11:07 ============================================================================ +10:11:07 Slot Id : <453> +10:11:07 Transaction Type : REQUEST +10:11:07 Received From : +10:11:07 ============================================================================ +10:11:07 FNo. Len. Field Value +10:11:07 ============================================================================ +10:11:07 [ 1] [ 4] [0800] +10:11:07 [ 7] [ 10] [0320031015] +10:11:07 [ 11] [ 6] [155790] +10:11:07 [ 70] [ 3] [301] +10:11:07 ============================================================================ +10:11:07 + + +waiting on router queue for slot.... +10:11:07 Sending to : +10:11:07 ============================================================================ +10:11:07 ============================================================================ +10:11:07 Slot Id : <453> +10:11:07 Transaction Type : RESPONSE +10:11:07 Received From : +10:11:07 ============================================================================ +10:11:07 FNo. Len. Field Value +10:11:07 ============================================================================ +10:11:07 [ 1] [ 4] [0810] +10:11:07 [ 7] [ 10] [0320031015] +10:11:07 [ 11] [ 6] [155790] +10:11:07 [ 39] [ 2] [00] +10:11:07 [ 70] [ 3] [301] +10:11:07 ============================================================================ +10:11:07 Calculate Source COMM Id = 2 +10:11:07 ============================================================================ +10:11:07 + + +waiting on router queue for slot.... +10:11:09 ============================================================================ +10:11:09 Slot Id : <488> +10:11:09 Transaction Type : REQUEST +10:11:09 Received From : +10:11:09 ============================================================================ +10:11:09 FNo. Len. Field Value +10:11:09 ============================================================================ +10:11:09 [ 1] [ 4] [0800] +10:11:09 [ 7] [ 10] [0320172258] +10:11:09 [ 11] [ 6] [102258] +10:11:09 [ 37] [ 12] [57910102258] +10:11:09 [ 70] [ 3] [301] +10:11:09 ============================================================================ +10:11:09 + + +waiting on router queue for slot.... +10:11:09 Sending to : +10:11:09 ============================================================================ +10:11:09 ============================================================================ +10:11:09 Slot Id : <488> +10:11:09 Transaction Type : RESPONSE +10:11:09 Received From : +10:11:09 ============================================================================ +10:11:09 FNo. Len. Field Value +10:11:09 ============================================================================ +10:11:09 [ 1] [ 4] [0810] +10:11:09 [ 7] [ 10] [0320172258] +10:11:09 [ 11] [ 6] [102258] +10:11:09 [ 37] [ 12] [579101022580] +10:11:09 [ 39] [ 2] [00] +10:11:09 [ 70] [ 3] [810] +10:11:09 ============================================================================ +10:11:09 Calculate Source COMM Id = 6 +10:11:09 ============================================================================ +10:11:09 + + +waiting on router queue for slot.... +10:11:18 ============================================================================ +10:11:18 Slot Id : <470> +10:11:18 Transaction Type : REQUEST +10:11:18 Received From : +10:11:18 ============================================================================ +10:11:18 FNo. Len. Field Value +10:11:18 ============================================================================ +10:11:18 [ 1] [ 4] [0800] +10:11:18 [ 7] [ 10] [0320031026] +10:11:18 [ 11] [ 6] [155791] +10:11:18 [ 70] [ 3] [301] +10:11:18 ============================================================================ +10:11:18 + + +waiting on router queue for slot.... +10:11:18 Sending to : +10:11:18 ============================================================================ +10:11:18 ============================================================================ +10:11:18 Slot Id : <470> +10:11:18 Transaction Type : RESPONSE +10:11:18 Received From : +10:11:18 ============================================================================ +10:11:18 FNo. Len. Field Value +10:11:18 ============================================================================ +10:11:18 [ 1] [ 4] [0810] +10:11:18 [ 7] [ 10] [0320031026] +10:11:18 [ 11] [ 6] [155791] +10:11:18 [ 39] [ 2] [00] +10:11:18 [ 70] [ 3] [301] +10:11:18 ============================================================================ +10:11:18 Calculate Source COMM Id = 2 +10:11:18 ============================================================================ +10:11:18 + + +waiting on router queue for slot.... +10:11:19 ============================================================================ +10:11:19 Slot Id : <490> +10:11:19 Transaction Type : REQUEST +10:11:19 Received From : +10:11:19 ============================================================================ +10:11:19 FNo. Len. Field Value +10:11:19 ============================================================================ +10:11:19 [ 1] [ 4] [0800] +10:11:19 [ 2] [ 5] [02531] +10:11:19 [ 3] [ 6] [579108] +10:11:19 [ 7] [ 10] [0320031119] +10:11:19 [ 11] [ 6] [807003] +10:11:19 [ 15] [ 10] [0320031119] +10:11:19 [ 37] [ 11] [57910807003] +10:11:19 [ 70] [ 3] [001] +10:11:19 ============================================================================ +10:11:19 + + +waiting on router queue for slot.... +10:11:19 ============================================================================ +10:11:19 Slot Id : <490> +10:11:19 Transaction Type : RESPONSE +10:11:19 Received From : +10:11:19 ============================================================================ +10:11:19 FNo. Len. Field Value +10:11:19 ============================================================================ +10:11:19 [ 1] [ 4] [0810] +10:11:19 [ 7] [ 10] [0320031119] +10:11:19 [ 11] [ 6] [807003] +10:11:19 [ 15] [ 4] [0320] +10:11:19 [ 37] [ 12] [57910807003] +10:11:19 [ 39] [ 2] [00] +10:11:19 [ 70] [ 3] [001] +10:11:19 ============================================================================ +10:11:19 Sending to : +10:11:19 ============================================================================ +10:11:19 + + +waiting on router queue for slot.... +10:11:20 ============================================================================ +10:11:20 Slot Id : <484> +10:11:20 Transaction Type : REQUEST +10:11:20 Received From : +10:11:20 ============================================================================ +10:11:20 FNo. Len. Field Value +10:11:20 ============================================================================ +10:11:20 [ 1] [ 4] [0800] +10:11:20 [ 7] [ 10] [0320030912] +10:11:20 [ 11] [ 6] [096518] +10:11:20 [ 37] [ 12] [57910096518] +10:11:20 [ 70] [ 3] [301] +10:11:20 ============================================================================ +10:11:20 + + +waiting on router queue for slot.... +10:11:20 Sending to : +10:11:20 ============================================================================ +10:11:20 ============================================================================ +10:11:20 Slot Id : <484> +10:11:20 Transaction Type : RESPONSE +10:11:20 Received From : +10:11:20 ============================================================================ +10:11:20 FNo. Len. Field Value +10:11:20 ============================================================================ +10:11:20 [ 1] [ 4] [0810] +10:11:20 [ 7] [ 10] [0320030912] +10:11:20 [ 11] [ 6] [096518] +10:11:20 [ 37] [ 12] [579100965180] +10:11:20 [ 39] [ 2] [00] +10:11:20 [ 70] [ 3] [810] +10:11:20 ============================================================================ +10:11:20 Calculate Source COMM Id = 4 +10:11:20 ============================================================================ +10:11:20 + + +waiting on router queue for slot.... +10:11:34 ============================================================================ +10:11:34 Slot Id : <463> +10:11:34 Transaction Type : REQUEST +10:11:34 Received From : +10:11:34 ============================================================================ +10:11:34 FNo. Len. Field Value +10:11:34 ============================================================================ +10:11:34 [ 1] [ 4] [0800] +10:11:34 [ 7] [ 10] [0320031042] +10:11:34 [ 11] [ 6] [155792] +10:11:34 [ 70] [ 3] [301] +10:11:34 ============================================================================ +10:11:34 + + +waiting on router queue for slot.... +10:11:34 Sending to : +10:11:34 ============================================================================ +10:11:34 ============================================================================ +10:11:34 Slot Id : <463> +10:11:34 Transaction Type : RESPONSE +10:11:34 Received From : +10:11:34 ============================================================================ +10:11:34 FNo. Len. Field Value +10:11:34 ============================================================================ +10:11:34 [ 1] [ 4] [0810] +10:11:34 [ 7] [ 10] [0320031042] +10:11:34 [ 11] [ 6] [155792] +10:11:34 [ 39] [ 2] [00] +10:11:34 [ 70] [ 3] [301] +10:11:34 ============================================================================ +10:11:34 Calculate Source COMM Id = 2 +10:11:34 ============================================================================ +10:11:34 + + +waiting on router queue for slot.... +10:11:43 ============================================================================ +10:11:43 Slot Id : <480> +10:11:43 Transaction Type : REQUEST +10:11:43 Received From : +10:11:43 ============================================================================ +10:11:43 FNo. Len. Field Value +10:11:43 ============================================================================ +10:11:43 [ 1] [ 4] [0200] +10:11:43 [ 2] [ 16] [6213545000045397] +10:11:43 [ 3] [ 6] [010000] +10:11:43 [ 4] [ 12] [000100000000] +10:11:43 [ 7] [ 10] [0320101930] +10:11:43 [ 11] [ 6] [079058] +10:11:43 [ 12] [ 6] [101930] +10:11:43 [ 13] [ 4] [0320] +10:11:43 [ 14] [ 4] [4912] +10:11:43 [ 15] [ 4] [0320] +10:11:43 [ 18] [ 4] [6011] +10:11:43 [ 22] [ 3] [900] +10:11:43 [ 25] [ 2] [02] +10:11:43 [ 28] [ 9] [D00002000] +10:11:43 [ 32] [ 6] [220699] +10:11:43 [ 35] [ 32] [6213545000045397=491212014539552] +10:11:43 [ 37] [ 12] [507900132941] +10:11:43 [ 41] [ 8] [03000100] +10:11:43 [ 42] [ 15] [APTRA ] +10:11:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:11:43 [ 49] [ 3] [418] +10:11:43 [ 52] [ 16] [C296EB3B65769E0A] +10:11:43 ============================================================================ +10:11:43 + + +waiting on router queue for slot.... +10:11:43 Sending to : +10:11:43 ============================================================================ +10:11:43 Sending to : +10:11:43 ============================================================================ +10:11:43 ============================================================================ +10:11:43 Slot Id : <480> +10:11:43 Transaction Type : REQUEST +10:11:43 Received From : +10:11:43 ============================================================================ +10:11:43 FNo. Len. Field Value +10:11:43 ============================================================================ +10:11:43 [ 1] [ 4] [0200] +10:11:43 [ 2] [ 16] [6213545000045397] +10:11:43 [ 3] [ 6] [010000] +10:11:43 [ 4] [ 12] [000100000000] +10:11:43 [ 7] [ 10] [0320101930] +10:11:43 [ 11] [ 6] [079058] +10:11:43 [ 12] [ 6] [101930] +10:11:43 [ 13] [ 4] [0320] +10:11:43 [ 14] [ 4] [4912] +10:11:43 [ 15] [ 4] [0320] +10:11:43 [ 18] [ 4] [6011] +10:11:43 [ 22] [ 3] [900] +10:11:43 [ 25] [ 2] [02] +10:11:43 [ 28] [ 9] [D00002000] +10:11:43 [ 32] [ 6] [220699] +10:11:43 [ 35] [ 32] [6213545000045397=491212014539552] +10:11:43 [ 37] [ 12] [507900132941] +10:11:43 [ 41] [ 8] [03000100] +10:11:43 [ 42] [ 15] [APTRA ] +10:11:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:11:43 [ 49] [ 3] [418] +10:11:43 [ 52] [ 16] [C296EB3B65769E0A] +10:11:43 ============================================================================ +10:11:43 + + +waiting on router queue for slot.... +10:11:43 Sending to : +10:11:43 ============================================================================ +10:11:43 ============================================================================ +10:11:43 Slot Id : <480> +10:11:43 Transaction Type : REQUEST +10:11:43 Received From : +10:11:43 ============================================================================ +10:11:43 FNo. Len. Field Value +10:11:43 ============================================================================ +10:11:43 [ 1] [ 4] [0200] +10:11:43 [ 2] [ 16] [6213545000045397] +10:11:43 [ 3] [ 6] [010000] +10:11:43 [ 4] [ 12] [000100000000] +10:11:43 [ 7] [ 10] [0320101930] +10:11:43 [ 11] [ 6] [079058] +10:11:43 [ 12] [ 6] [101930] +10:11:43 [ 13] [ 4] [0320] +10:11:43 [ 14] [ 4] [4912] +10:11:43 [ 15] [ 4] [0320] +10:11:43 [ 18] [ 4] [6011] +10:11:43 [ 22] [ 3] [900] +10:11:43 [ 25] [ 2] [02] +10:11:43 [ 28] [ 9] [D00002000] +10:11:43 [ 32] [ 6] [220699] +10:11:43 [ 35] [ 32] [6213545000045397=491212014539552] +10:11:43 [ 37] [ 12] [507900132941] +10:11:43 [ 41] [ 8] [03000100] +10:11:43 [ 42] [ 15] [APTRA ] +10:11:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:11:43 [ 49] [ 3] [418] +10:11:43 [ 52] [ 16] [891923BAFD12A71F] +10:11:43 ============================================================================ +10:11:43 + + +waiting on router queue for slot.... +10:11:43 Sending to : <0> +10:11:43 ============================================================================ +10:11:44 ============================================================================ +10:11:44 Slot Id : <480> +10:11:44 Transaction Type : RESPONSE +10:11:44 Received From : +10:11:44 ============================================================================ +10:11:44 FNo. Len. Field Value +10:11:44 ============================================================================ +10:11:44 [ 1] [ 4] [0210] +10:11:44 [ 2] [ 16] [6213545000045397] +10:11:44 [ 3] [ 6] [010000] +10:11:44 [ 4] [ 12] [000100000000] +10:11:44 [ 7] [ 10] [0320101930] +10:11:44 [ 11] [ 6] [079058] +10:11:44 [ 12] [ 6] [101930] +10:11:44 [ 13] [ 4] [0320] +10:11:44 [ 15] [ 4] [0320] +10:11:44 [ 18] [ 4] [6011] +10:11:44 [ 32] [ 6] [220699] +10:11:44 [ 35] [ 32] [6213545000045397=491212014539552] +10:11:44 [ 37] [ 12] [507900132941] +10:11:44 [ 38] [ 6] [822089] +10:11:44 [ 39] [ 2] [00] +10:11:44 [ 41] [ 8] [03000100] +10:11:44 [ 49] [ 3] [418] +10:11:44 [ 54] [ 40] [0001418C0001007700290002418C000100770029] +10:11:44 ============================================================================ +10:11:44 Sending to : +10:11:44 ============================================================================ +10:11:44 + + +waiting on router queue for slot.... +10:11:46 ============================================================================ +10:11:46 Slot Id : <471> +10:11:46 Transaction Type : REQUEST +10:11:46 Received From : +10:11:46 ============================================================================ +10:11:46 FNo. Len. Field Value +10:11:46 ============================================================================ +10:11:46 [ 1] [ 4] [0200] +10:11:46 [ 2] [ 16] [6688990100954500] +10:11:46 [ 3] [ 6] [010000] +10:11:46 [ 4] [ 12] [000020000000] +10:11:46 [ 7] [ 10] [0320101142] +10:11:46 [ 11] [ 6] [710352] +10:11:46 [ 12] [ 6] [101142] +10:11:46 [ 13] [ 4] [0320] +10:11:46 [ 15] [ 4] [0320] +10:11:46 [ 18] [ 4] [6011] +10:11:46 [ 22] [ 3] [900] +10:11:46 [ 25] [ 2] [02] +10:11:46 [ 28] [ 9] [D00002000] +10:11:46 [ 32] [ 6] [621354] +10:11:46 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:11:46 [ 37] [ 12] [507904719487] +10:11:46 [ 41] [ 8] [18001000] +10:11:46 [ 42] [ 15] [NATIVE ] +10:11:46 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:11:46 [ 49] [ 3] [418] +10:11:46 [ 52] [ 16] [A3392CBD0AD7636A] +10:11:46 ============================================================================ +10:11:46 + + +waiting on router queue for slot.... +10:11:46 Sending to : +10:11:46 ============================================================================ +10:11:46 Sending to : +10:11:46 ============================================================================ +10:11:46 ============================================================================ +10:11:46 Slot Id : <448> +10:11:46 Transaction Type : REQUEST +10:11:46 Received From : +10:11:46 ============================================================================ +10:11:46 FNo. Len. Field Value +10:11:46 ============================================================================ +10:11:46 [ 1] [ 4] [0800] +10:11:46 [ 7] [ 10] [0320031052] +10:11:46 [ 11] [ 6] [155793] +10:11:46 [ 70] [ 3] [301] +10:11:46 ============================================================================ +10:11:46 + + +waiting on router queue for slot.... +10:11:46 Sending to : +10:11:46 ============================================================================ +10:11:46 ============================================================================ +10:11:46 Slot Id : <448> +10:11:46 Transaction Type : RESPONSE +10:11:46 Received From : +10:11:46 ============================================================================ +10:11:46 FNo. Len. Field Value +10:11:46 ============================================================================ +10:11:46 [ 1] [ 4] [0810] +10:11:46 [ 7] [ 10] [0320031052] +10:11:46 [ 11] [ 6] [155793] +10:11:46 [ 39] [ 2] [00] +10:11:46 [ 70] [ 3] [301] +10:11:46 ============================================================================ +10:11:46 Calculate Source COMM Id = 2 +10:11:46 ============================================================================ +10:11:46 + + +waiting on router queue for slot.... +10:11:46 ============================================================================ +10:11:46 Slot Id : <480> +10:11:46 Transaction Type : RESPONSE +10:11:46 Received From : +10:11:46 ============================================================================ +10:11:46 FNo. Len. Field Value +10:11:46 ============================================================================ +10:11:46 [ 1] [ 4] [0210] +10:11:46 [ 2] [ 16] [6213545000045397] +10:11:46 [ 3] [ 6] [010000] +10:11:46 [ 4] [ 12] [000100000000] +10:11:46 [ 7] [ 10] [0320101930] +10:11:46 [ 11] [ 6] [079058] +10:11:46 [ 12] [ 6] [101930] +10:11:46 [ 13] [ 4] [0320] +10:11:46 [ 15] [ 4] [0320] +10:11:46 [ 18] [ 4] [6011] +10:11:46 [ 32] [ 6] [220699] +10:11:46 [ 35] [ 32] [6213545000045397=491212014539552] +10:11:46 [ 37] [ 12] [507900132941] +10:11:46 [ 38] [ 6] [822089] +10:11:46 [ 39] [ 2] [00] +10:11:46 [ 41] [ 8] [03000100] +10:11:46 [ 49] [ 3] [418] +10:11:46 [ 54] [ 40] [0001418C0001007700290002418C000100770029] +10:11:46 ============================================================================ +10:11:46 Calculate Source COMM Id = 1 +10:11:46 ============================================================================ +10:11:46 + + +waiting on router queue for slot.... +10:11:46 ============================================================================ +10:11:46 Slot Id : <471> +10:11:46 Transaction Type : REQUEST +10:11:46 Received From : +10:11:46 ============================================================================ +10:11:46 FNo. Len. Field Value +10:11:46 ============================================================================ +10:11:46 [ 1] [ 4] [0200] +10:11:46 [ 2] [ 16] [6688990100954500] +10:11:46 [ 3] [ 6] [010000] +10:11:46 [ 4] [ 12] [000020000000] +10:11:46 [ 7] [ 10] [0320101142] +10:11:46 [ 11] [ 6] [710352] +10:11:46 [ 12] [ 6] [101142] +10:11:46 [ 13] [ 4] [0320] +10:11:46 [ 15] [ 4] [0320] +10:11:46 [ 18] [ 4] [6011] +10:11:46 [ 22] [ 3] [900] +10:11:46 [ 25] [ 2] [02] +10:11:46 [ 28] [ 9] [D00002000] +10:11:46 [ 32] [ 6] [621354] +10:11:46 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:11:46 [ 37] [ 12] [507904719487] +10:11:46 [ 41] [ 8] [18001000] +10:11:46 [ 42] [ 15] [NATIVE ] +10:11:46 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:11:46 [ 49] [ 3] [418] +10:11:46 [ 52] [ 16] [A3392CBD0AD7636A] +10:11:46 ============================================================================ +10:11:46 + + +waiting on router queue for slot.... +10:11:46 Sending to : +10:11:46 ============================================================================ +10:11:46 ============================================================================ +10:11:46 Slot Id : <471> +10:11:46 Transaction Type : REQUEST +10:11:46 Received From : +10:11:46 ============================================================================ +10:11:46 FNo. Len. Field Value +10:11:46 ============================================================================ +10:11:46 [ 1] [ 4] [0200] +10:11:46 [ 2] [ 16] [6688990100954500] +10:11:46 [ 3] [ 6] [010000] +10:11:46 [ 4] [ 12] [000020000000] +10:11:46 [ 7] [ 10] [0320101142] +10:11:46 [ 11] [ 6] [710352] +10:11:46 [ 12] [ 6] [101142] +10:11:46 [ 13] [ 4] [0320] +10:11:46 [ 15] [ 4] [0320] +10:11:46 [ 18] [ 4] [6011] +10:11:46 [ 22] [ 3] [900] +10:11:46 [ 25] [ 2] [02] +10:11:46 [ 28] [ 9] [D00002000] +10:11:46 [ 32] [ 6] [621354] +10:11:46 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:11:46 [ 37] [ 12] [507904719487] +10:11:46 [ 41] [ 8] [18001000] +10:11:46 [ 42] [ 15] [NATIVE ] +10:11:46 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:11:46 [ 49] [ 3] [418] +10:11:46 [ 52] [ 16] [F0F417C7E0D10D66] +10:11:46 ============================================================================ +10:11:46 + + +waiting on router queue for slot.... +10:11:46 Sending to : <4> +10:11:46 ============================================================================ +10:11:46 ============================================================================ +10:11:46 Slot Id : <471> +10:11:46 Transaction Type : RESPONSE +10:11:46 Received From : +10:11:46 ============================================================================ +10:11:46 FNo. Len. Field Value +10:11:46 ============================================================================ +10:11:46 [ 1] [ 4] [0210] +10:11:46 [ 2] [ 16] [6688990100954500] +10:11:46 [ 3] [ 6] [010000] +10:11:46 [ 4] [ 12] [000020000000] +10:11:46 [ 11] [ 6] [710352] +10:11:46 [ 12] [ 6] [101142] +10:11:46 [ 15] [ 4] [0320] +10:11:46 [ 18] [ 4] [6011] +10:11:46 [ 32] [ 6] [621354] +10:11:46 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:11:46 [ 37] [ 12] [507904719487] +10:11:46 [ 39] [ 2] [51] +10:11:46 [ 41] [ 8] [18001000] +10:11:46 [ 49] [ 3] [418] +10:11:46 [ 54] [ 0] [] +10:11:46 ============================================================================ +10:11:46 Sending to : +10:11:46 ============================================================================ +10:11:46 + + +waiting on router queue for slot.... +10:11:47 ============================================================================ +10:11:47 Slot Id : <479> +10:11:47 Transaction Type : REQUEST +10:11:47 Received From : +10:11:47 ============================================================================ +10:11:47 FNo. Len. Field Value +10:11:47 ============================================================================ +10:11:47 [ 1] [ 4] [0200] +10:11:47 [ 2] [ 16] [1808931800012633] +10:11:47 [ 3] [ 6] [301000] +10:11:47 [ 4] [ 12] [000000000000] +10:11:47 [ 7] [ 10] [0320101143] +10:11:47 [ 11] [ 6] [710364] +10:11:47 [ 12] [ 6] [101143] +10:11:47 [ 13] [ 4] [0320] +10:11:47 [ 15] [ 4] [0320] +10:11:47 [ 18] [ 4] [6011] +10:11:47 [ 22] [ 3] [900] +10:11:47 [ 25] [ 2] [02] +10:11:47 [ 28] [ 9] [D00000000] +10:11:47 [ 32] [ 6] [621354] +10:11:47 [ 35] [ 27] [1808931800012633=1803500869] +10:11:47 [ 37] [ 12] [507904635521] +10:11:47 [ 41] [ 8] [17000800] +10:11:47 [ 42] [ 15] [NATIVE ] +10:11:47 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:11:47 [ 49] [ 3] [418] +10:11:47 [ 52] [ 16] [D001A708DB431E39] +10:11:47 ============================================================================ +10:11:47 + + +waiting on router queue for slot.... +10:11:47 Sending to : +10:11:47 ============================================================================ +10:11:47 Sending to : +10:11:47 ============================================================================ +10:11:47 ============================================================================ +10:11:47 Slot Id : <471> +10:11:47 Transaction Type : RESPONSE +10:11:47 Received From : +10:11:47 ============================================================================ +10:11:47 FNo. Len. Field Value +10:11:47 ============================================================================ +10:11:47 [ 1] [ 4] [0210] +10:11:47 [ 2] [ 16] [6688990100954500] +10:11:47 [ 3] [ 6] [010000] +10:11:47 [ 4] [ 12] [000020000000] +10:11:47 [ 11] [ 6] [710352] +10:11:47 [ 12] [ 6] [101142] +10:11:47 [ 15] [ 4] [0320] +10:11:47 [ 18] [ 4] [6011] +10:11:47 [ 32] [ 6] [621354] +10:11:47 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:11:47 [ 37] [ 12] [507904719487] +10:11:47 [ 39] [ 2] [51] +10:11:47 [ 41] [ 8] [18001000] +10:11:47 [ 49] [ 3] [418] +10:11:47 [ 54] [ 0] [] +10:11:47 ============================================================================ +10:11:47 Calculate Source COMM Id = 0 +10:11:47 ============================================================================ +10:11:47 + + +waiting on router queue for slot.... +10:11:48 ============================================================================ +10:11:48 Slot Id : <479> +10:11:48 Transaction Type : REQUEST +10:11:48 Received From : +10:11:48 ============================================================================ +10:11:48 FNo. Len. Field Value +10:11:48 ============================================================================ +10:11:48 [ 1] [ 4] [0200] +10:11:48 [ 2] [ 16] [1808931800012633] +10:11:48 [ 3] [ 6] [301000] +10:11:48 [ 4] [ 12] [000000000000] +10:11:48 [ 7] [ 10] [0320101143] +10:11:48 [ 11] [ 6] [710364] +10:11:48 [ 12] [ 6] [101143] +10:11:48 [ 13] [ 4] [0320] +10:11:48 [ 15] [ 4] [0320] +10:11:48 [ 18] [ 4] [6011] +10:11:48 [ 22] [ 3] [900] +10:11:48 [ 25] [ 2] [02] +10:11:48 [ 28] [ 9] [D00000000] +10:11:48 [ 32] [ 6] [621354] +10:11:48 [ 35] [ 27] [1808931800012633=1803500869] +10:11:48 [ 37] [ 12] [507904635521] +10:11:48 [ 41] [ 8] [17000800] +10:11:48 [ 42] [ 15] [NATIVE ] +10:11:48 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:11:48 [ 49] [ 3] [418] +10:11:48 [ 52] [ 16] [D001A708DB431E39] +10:11:48 ============================================================================ +10:11:48 + + +waiting on router queue for slot.... +10:11:48 Sending to : +10:11:48 ============================================================================ +10:11:48 ============================================================================ +10:11:48 Slot Id : <479> +10:11:48 Transaction Type : REQUEST +10:11:48 Received From : +10:11:48 ============================================================================ +10:11:48 FNo. Len. Field Value +10:11:48 ============================================================================ +10:11:48 [ 1] [ 4] [0200] +10:11:48 [ 2] [ 16] [1808931800012633] +10:11:48 [ 3] [ 6] [301000] +10:11:48 [ 4] [ 12] [000000000000] +10:11:48 [ 7] [ 10] [0320101143] +10:11:48 [ 11] [ 6] [710364] +10:11:48 [ 12] [ 6] [101143] +10:11:48 [ 13] [ 4] [0320] +10:11:48 [ 15] [ 4] [0320] +10:11:48 [ 18] [ 4] [6011] +10:11:48 [ 22] [ 3] [900] +10:11:48 [ 25] [ 2] [02] +10:11:48 [ 28] [ 9] [D00000000] +10:11:48 [ 32] [ 6] [621354] +10:11:48 [ 35] [ 27] [1808931800012633=1803500869] +10:11:48 [ 37] [ 12] [507904635521] +10:11:48 [ 41] [ 8] [17000800] +10:11:48 [ 42] [ 15] [NATIVE ] +10:11:48 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:11:48 [ 49] [ 3] [418] +10:11:48 [ 52] [ 16] [185F0AE7E71C5FC8] +10:11:48 ============================================================================ +10:11:48 + + +waiting on router queue for slot.... +10:11:48 Sending to : <2> +10:11:48 ============================================================================ +10:11:52 ============================================================================ +10:11:52 Slot Id : <479> +10:11:52 Transaction Type : RESPONSE +10:11:52 Received From : +10:11:52 ============================================================================ +10:11:52 FNo. Len. Field Value +10:11:52 ============================================================================ +10:11:52 [ 1] [ 4] [0210] +10:11:52 [ 2] [ 16] [1808931800012633] +10:11:52 [ 3] [ 6] [301000] +10:11:52 [ 7] [ 10] [0320101143] +10:11:52 [ 11] [ 6] [710364] +10:11:52 [ 12] [ 6] [101143] +10:11:52 [ 13] [ 4] [0320] +10:11:52 [ 14] [ 4] [1803] +10:11:52 [ 19] [ 3] [418] +10:11:52 [ 32] [ 6] [621354] +10:11:52 [ 37] [ 12] [507904635521] +10:11:52 [ 38] [ 6] [710364] +10:11:52 [ 39] [ 2] [00] +10:11:52 [ 41] [ 8] [17000800] +10:11:52 [ 49] [ 3] [418] +10:11:52 [ 52] [ 16] [185F0AE7E71C5FC8] +10:11:52 [ 54] [ 20] [1002418C000225855100] +10:11:52 ============================================================================ +10:11:52 Sending to : +10:11:52 ============================================================================ +10:11:52 + + +waiting on router queue for slot.... +10:11:53 ============================================================================ +10:11:53 Slot Id : <479> +10:11:53 Transaction Type : RESPONSE +10:11:53 Received From : +10:11:53 ============================================================================ +10:11:53 FNo. Len. Field Value +10:11:53 ============================================================================ +10:11:53 [ 1] [ 4] [0210] +10:11:53 [ 2] [ 16] [1808931800012633] +10:11:53 [ 3] [ 6] [301000] +10:11:53 [ 7] [ 10] [0320101143] +10:11:53 [ 11] [ 6] [710364] +10:11:53 [ 12] [ 6] [101143] +10:11:53 [ 13] [ 4] [0320] +10:11:53 [ 14] [ 4] [1803] +10:11:53 [ 19] [ 3] [418] +10:11:53 [ 32] [ 6] [621354] +10:11:53 [ 37] [ 12] [507904635521] +10:11:53 [ 38] [ 6] [710364] +10:11:53 [ 39] [ 2] [00] +10:11:53 [ 41] [ 8] [17000800] +10:11:53 [ 49] [ 3] [418] +10:11:53 [ 52] [ 16] [185F0AE7E71C5FC8] +10:11:53 [ 54] [ 20] [1002418C000225855100] +10:11:53 ============================================================================ +10:11:53 Calculate Source COMM Id = 0 +10:11:53 ============================================================================ +10:11:53 + + +waiting on router queue for slot.... +10:11:53 ============================================================================ +10:11:53 Slot Id : <0> +10:11:53 Transaction Type : REQUEST +10:11:53 Received From : +10:11:53 ============================================================================ +10:11:53 FNo. Len. Field Value +10:11:53 ============================================================================ +10:11:53 [ 1] [ 4] [0200] +10:11:53 [ 2] [ 16] [6213548000496701] +10:11:53 [ 3] [ 6] [010000] +10:11:53 [ 4] [ 12] [000020000000] +10:11:53 [ 7] [ 10] [0320100945] +10:11:53 [ 11] [ 6] [937855] +10:11:53 [ 12] [ 6] [100945] +10:11:53 [ 13] [ 4] [0320] +10:11:53 [ 15] [ 4] [0320] +10:11:53 [ 18] [ 4] [6011] +10:11:53 [ 19] [ 3] [418] +10:11:53 [ 22] [ 3] [021] +10:11:53 [ 25] [ 2] [01] +10:11:53 [ 28] [ 9] [D00002000] +10:11:53 [ 32] [ 6] [668899] +10:11:53 [ 35] [ 32] [6213548000496701=180912019670165] +10:11:53 [ 37] [ 12] [507901963433] +10:11:53 [ 41] [ 8] [03020019] +10:11:53 [ 42] [ 15] [APT ] +10:11:53 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +10:11:53 [ 49] [ 3] [418] +10:11:53 [ 52] [ 16] [DBB1B480800F421B] +10:11:53 ============================================================================ +10:11:53 + + +waiting on router queue for slot.... +10:11:53 Sending to : +10:11:53 ============================================================================ +10:11:53 Sending to : +10:11:53 ============================================================================ +10:11:54 ============================================================================ +10:11:54 Slot Id : <0> +10:11:54 Transaction Type : REQUEST +10:11:54 Received From : +10:11:54 ============================================================================ +10:11:54 FNo. Len. Field Value +10:11:54 ============================================================================ +10:11:54 [ 1] [ 4] [0200] +10:11:54 [ 2] [ 16] [6213548000496701] +10:11:54 [ 3] [ 6] [010000] +10:11:54 [ 4] [ 12] [000020000000] +10:11:54 [ 7] [ 10] [0320100945] +10:11:54 [ 11] [ 6] [937855] +10:11:54 [ 12] [ 6] [100945] +10:11:54 [ 13] [ 4] [0320] +10:11:54 [ 15] [ 4] [0320] +10:11:54 [ 18] [ 4] [6011] +10:11:54 [ 19] [ 3] [418] +10:11:54 [ 22] [ 3] [021] +10:11:54 [ 25] [ 2] [01] +10:11:54 [ 28] [ 9] [D00002000] +10:11:54 [ 32] [ 6] [668899] +10:11:54 [ 35] [ 32] [6213548000496701=180912019670165] +10:11:54 [ 37] [ 12] [507901963433] +10:11:54 [ 41] [ 8] [03020019] +10:11:54 [ 42] [ 15] [APT ] +10:11:54 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +10:11:54 [ 49] [ 3] [418] +10:11:54 [ 52] [ 16] [DBB1B480800F421B] +10:11:54 ============================================================================ +10:11:54 + + +waiting on router queue for slot.... +10:11:54 Sending to : +10:11:54 ============================================================================ +10:11:54 ============================================================================ +10:11:54 Slot Id : <0> +10:11:54 Transaction Type : REQUEST +10:11:54 Received From : +10:11:54 ============================================================================ +10:11:54 FNo. Len. Field Value +10:11:54 ============================================================================ +10:11:54 [ 1] [ 4] [0200] +10:11:54 [ 2] [ 16] [6213548000496701] +10:11:54 [ 3] [ 6] [010000] +10:11:54 [ 4] [ 12] [000020000000] +10:11:54 [ 7] [ 10] [0320100945] +10:11:54 [ 11] [ 6] [937855] +10:11:54 [ 12] [ 6] [100945] +10:11:54 [ 13] [ 4] [0320] +10:11:54 [ 15] [ 4] [0320] +10:11:54 [ 18] [ 4] [6011] +10:11:54 [ 19] [ 3] [418] +10:11:54 [ 22] [ 3] [021] +10:11:54 [ 25] [ 2] [01] +10:11:54 [ 28] [ 9] [D00002000] +10:11:54 [ 32] [ 6] [668899] +10:11:54 [ 35] [ 32] [6213548000496701=180912019670165] +10:11:54 [ 37] [ 12] [507901963433] +10:11:54 [ 41] [ 8] [03020019] +10:11:54 [ 42] [ 15] [APT ] +10:11:54 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +10:11:54 [ 49] [ 3] [418] +10:11:54 [ 52] [ 16] [A1A51228D303FBA1] +10:11:54 ============================================================================ +10:11:54 + + +waiting on router queue for slot.... +10:11:54 Sending to : <0> +10:11:54 ============================================================================ +10:11:55 ============================================================================ +10:11:55 Slot Id : <0> +10:11:55 Transaction Type : RESPONSE +10:11:55 Received From : +10:11:55 ============================================================================ +10:11:55 FNo. Len. Field Value +10:11:55 ============================================================================ +10:11:55 [ 1] [ 4] [0210] +10:11:55 [ 2] [ 16] [6213548000496701] +10:11:55 [ 3] [ 6] [010000] +10:11:55 [ 4] [ 12] [000020000000] +10:11:55 [ 7] [ 10] [0320100945] +10:11:55 [ 11] [ 6] [937855] +10:11:55 [ 12] [ 6] [100945] +10:11:55 [ 13] [ 4] [0320] +10:11:55 [ 15] [ 4] [0320] +10:11:55 [ 18] [ 4] [6011] +10:11:55 [ 19] [ 3] [418] +10:11:55 [ 32] [ 6] [668899] +10:11:55 [ 35] [ 32] [6213548000496701=180912019670165] +10:11:55 [ 37] [ 12] [507901963433] +10:11:55 [ 38] [ 6] [221787] +10:11:55 [ 39] [ 2] [00] +10:11:55 [ 41] [ 8] [03020019] +10:11:55 [ 49] [ 3] [418] +10:11:55 [ 54] [ 40] [0001418C0000748436070002418C000074843607] +10:11:55 ============================================================================ +10:11:55 Sending to : +10:11:55 ============================================================================ +10:11:55 + + +waiting on router queue for slot.... +10:11:56 ============================================================================ +10:11:56 Slot Id : <0> +10:11:56 Transaction Type : RESPONSE +10:11:56 Received From : +10:11:56 ============================================================================ +10:11:56 FNo. Len. Field Value +10:11:56 ============================================================================ +10:11:56 [ 1] [ 4] [0210] +10:11:56 [ 2] [ 16] [6213548000496701] +10:11:56 [ 3] [ 6] [010000] +10:11:56 [ 4] [ 12] [000020000000] +10:11:56 [ 7] [ 10] [0320100945] +10:11:56 [ 11] [ 6] [937855] +10:11:56 [ 12] [ 6] [100945] +10:11:56 [ 13] [ 4] [0320] +10:11:56 [ 15] [ 4] [0320] +10:11:56 [ 18] [ 4] [6011] +10:11:56 [ 19] [ 3] [418] +10:11:56 [ 32] [ 6] [668899] +10:11:56 [ 35] [ 32] [6213548000496701=180912019670165] +10:11:56 [ 37] [ 12] [507901963433] +10:11:56 [ 38] [ 6] [221787] +10:11:56 [ 39] [ 2] [00] +10:11:56 [ 41] [ 8] [03020019] +10:11:56 [ 49] [ 3] [418] +10:11:56 [ 54] [ 40] [0001418C0000748436070002418C000074843607] +10:11:56 ============================================================================ +10:11:56 Calculate Source COMM Id = 4 +10:11:56 ============================================================================ +10:11:56 + + +waiting on router queue for slot.... +10:12:00 ============================================================================ +10:12:00 Slot Id : <2> +10:12:00 Transaction Type : REQUEST +10:12:00 Received From : +10:12:00 ============================================================================ +10:12:00 FNo. Len. Field Value +10:12:00 ============================================================================ +10:12:00 [ 1] [ 4] [0800] +10:12:00 [ 7] [ 10] [0320031108] +10:12:00 [ 11] [ 6] [155794] +10:12:00 [ 70] [ 3] [301] +10:12:00 ============================================================================ +10:12:00 + + +waiting on router queue for slot.... +10:12:00 Sending to : +10:12:00 ============================================================================ +10:12:00 ============================================================================ +10:12:00 Slot Id : <2> +10:12:00 Transaction Type : RESPONSE +10:12:00 Received From : +10:12:00 ============================================================================ +10:12:00 FNo. Len. Field Value +10:12:00 ============================================================================ +10:12:00 [ 1] [ 4] [0810] +10:12:00 [ 7] [ 10] [0320031108] +10:12:00 [ 11] [ 6] [155794] +10:12:00 [ 39] [ 2] [00] +10:12:00 [ 70] [ 3] [301] +10:12:00 ============================================================================ +10:12:00 Calculate Source COMM Id = 2 +10:12:00 ============================================================================ +10:12:00 + + +waiting on router queue for slot.... +10:12:02 ============================================================================ +10:12:02 Slot Id : <1> +10:12:02 Transaction Type : REQUEST +10:12:02 Received From : +10:12:02 ============================================================================ +10:12:02 FNo. Len. Field Value +10:12:02 ============================================================================ +10:12:02 [ 1] [ 4] [0200] +10:12:02 [ 2] [ 16] [6213541000261589] +10:12:02 [ 3] [ 6] [301000] +10:12:02 [ 7] [ 10] [0320031110] +10:12:02 [ 11] [ 6] [267979] +10:12:02 [ 12] [ 6] [101110] +10:12:02 [ 13] [ 4] [0320] +10:12:02 [ 14] [ 4] [4912] +10:12:02 [ 15] [ 4] [0320] +10:12:02 [ 18] [ 4] [6011] +10:12:02 [ 19] [ 3] [418] +10:12:02 [ 22] [ 3] [021] +10:12:02 [ 25] [ 2] [01] +10:12:02 [ 32] [ 6] [180893] +10:12:02 [ 35] [ 32] [6213541000261589=491212016158068] +10:12:02 [ 37] [ 12] [507903267979] +10:12:02 [ 41] [ 8] [0112CPBR] +10:12:02 [ 42] [ 15] [999999 ] +10:12:02 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:12:02 [ 49] [ 3] [418] +10:12:02 [ 52] [ 16] [99212762D0F3A01C] +10:12:02 ============================================================================ +10:12:02 + + +waiting on router queue for slot.... +10:12:02 Sending to : +10:12:02 ============================================================================ +10:12:02 Sending to : +10:12:02 ============================================================================ +10:12:03 ============================================================================ +10:12:03 Slot Id : <1> +10:12:03 Transaction Type : REQUEST +10:12:03 Received From : +10:12:03 ============================================================================ +10:12:03 FNo. Len. Field Value +10:12:03 ============================================================================ +10:12:03 [ 1] [ 4] [0200] +10:12:03 [ 2] [ 16] [6213541000261589] +10:12:03 [ 3] [ 6] [301000] +10:12:03 [ 7] [ 10] [0320031110] +10:12:03 [ 11] [ 6] [267979] +10:12:03 [ 12] [ 6] [101110] +10:12:03 [ 13] [ 4] [0320] +10:12:03 [ 14] [ 4] [4912] +10:12:03 [ 15] [ 4] [0320] +10:12:03 [ 18] [ 4] [6011] +10:12:03 [ 19] [ 3] [418] +10:12:03 [ 22] [ 3] [021] +10:12:03 [ 25] [ 2] [01] +10:12:03 [ 32] [ 6] [180893] +10:12:03 [ 35] [ 32] [6213541000261589=491212016158068] +10:12:03 [ 37] [ 12] [507903267979] +10:12:03 [ 41] [ 8] [0112CPBR] +10:12:03 [ 42] [ 15] [999999 ] +10:12:03 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:12:03 [ 49] [ 3] [418] +10:12:03 [ 52] [ 16] [99212762D0F3A01C] +10:12:03 ============================================================================ +10:12:03 + + +waiting on router queue for slot.... +10:12:03 Sending to : +10:12:03 ============================================================================ +10:12:03 ============================================================================ +10:12:03 Slot Id : <1> +10:12:03 Transaction Type : REQUEST +10:12:03 Received From : +10:12:03 ============================================================================ +10:12:03 FNo. Len. Field Value +10:12:03 ============================================================================ +10:12:03 [ 1] [ 4] [0200] +10:12:03 [ 2] [ 16] [6213541000261589] +10:12:03 [ 3] [ 6] [301000] +10:12:03 [ 7] [ 10] [0320031110] +10:12:03 [ 11] [ 6] [267979] +10:12:03 [ 12] [ 6] [101110] +10:12:03 [ 13] [ 4] [0320] +10:12:03 [ 14] [ 4] [4912] +10:12:03 [ 15] [ 4] [0320] +10:12:03 [ 18] [ 4] [6011] +10:12:03 [ 19] [ 3] [418] +10:12:03 [ 22] [ 3] [021] +10:12:03 [ 25] [ 2] [01] +10:12:03 [ 32] [ 6] [180893] +10:12:03 [ 35] [ 32] [6213541000261589=491212016158068] +10:12:03 [ 37] [ 12] [507903267979] +10:12:03 [ 41] [ 8] [0112CPBR] +10:12:03 [ 42] [ 15] [999999 ] +10:12:03 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:12:03 [ 49] [ 3] [418] +10:12:03 [ 52] [ 16] [A887DD7D1CD9E2E8] +10:12:03 ============================================================================ +10:12:03 + + +waiting on router queue for slot.... +10:12:03 Sending to : <0> +10:12:03 ============================================================================ +10:12:03 ============================================================================ +10:12:03 Slot Id : <1> +10:12:03 Transaction Type : RESPONSE +10:12:03 Received From : +10:12:03 ============================================================================ +10:12:03 FNo. Len. Field Value +10:12:03 ============================================================================ +10:12:03 [ 1] [ 4] [0210] +10:12:03 [ 2] [ 16] [6213541000261589] +10:12:03 [ 3] [ 6] [301000] +10:12:03 [ 4] [ 12] [000000000000] +10:12:03 [ 7] [ 10] [0320031110] +10:12:03 [ 11] [ 6] [267979] +10:12:03 [ 12] [ 6] [101110] +10:12:03 [ 13] [ 4] [0320] +10:12:03 [ 15] [ 4] [0320] +10:12:03 [ 18] [ 4] [6011] +10:12:03 [ 19] [ 3] [418] +10:12:03 [ 32] [ 6] [180893] +10:12:03 [ 35] [ 32] [6213541000261589=491212016158068] +10:12:03 [ 37] [ 12] [507903267979] +10:12:03 [ 38] [ 6] [057427] +10:12:03 [ 39] [ 2] [00] +10:12:03 [ 41] [ 8] [0112CPBR] +10:12:03 [ 49] [ 3] [418] +10:12:03 [ 54] [ 40] [1001418C0032054602861002418C003205460286] +10:12:03 ============================================================================ +10:12:03 Sending to : +10:12:03 ============================================================================ +10:12:03 + + +waiting on router queue for slot.... +10:12:05 ============================================================================ +10:12:05 Slot Id : <1> +10:12:05 Transaction Type : RESPONSE +10:12:05 Received From : +10:12:05 ============================================================================ +10:12:05 FNo. Len. Field Value +10:12:05 ============================================================================ +10:12:05 [ 1] [ 4] [0210] +10:12:05 [ 2] [ 16] [6213541000261589] +10:12:05 [ 3] [ 6] [301000] +10:12:05 [ 4] [ 12] [000000000000] +10:12:05 [ 7] [ 10] [0320031110] +10:12:05 [ 11] [ 6] [267979] +10:12:05 [ 12] [ 6] [101110] +10:12:05 [ 13] [ 4] [0320] +10:12:05 [ 15] [ 4] [0320] +10:12:05 [ 18] [ 4] [6011] +10:12:05 [ 19] [ 3] [418] +10:12:05 [ 32] [ 6] [180893] +10:12:05 [ 35] [ 32] [6213541000261589=491212016158068] +10:12:05 [ 37] [ 12] [507903267979] +10:12:05 [ 38] [ 6] [057427] +10:12:05 [ 39] [ 2] [00] +10:12:05 [ 41] [ 8] [0112CPBR] +10:12:05 [ 49] [ 3] [418] +10:12:05 [ 54] [ 40] [1001418C0032054602861002418C003205460286] +10:12:05 ============================================================================ +10:12:05 Calculate Source COMM Id = 2 +10:12:05 ============================================================================ +10:12:05 + + +waiting on router queue for slot.... +10:12:14 ============================================================================ +10:12:14 Slot Id : <493> +10:12:14 Transaction Type : REQUEST +10:12:14 Received From : +10:12:14 ============================================================================ +10:12:14 FNo. Len. Field Value +10:12:14 ============================================================================ +10:12:14 [ 1] [ 4] [0800] +10:12:14 [ 7] [ 10] [0320172403] +10:12:14 [ 11] [ 6] [102403] +10:12:14 [ 37] [ 12] [57910102403] +10:12:14 [ 70] [ 3] [301] +10:12:14 ============================================================================ +10:12:14 + + +waiting on router queue for slot.... +10:12:14 Sending to : +10:12:14 ============================================================================ +10:12:14 ============================================================================ +10:12:14 Slot Id : <493> +10:12:14 Transaction Type : RESPONSE +10:12:14 Received From : +10:12:14 ============================================================================ +10:12:14 FNo. Len. Field Value +10:12:14 ============================================================================ +10:12:14 [ 1] [ 4] [0810] +10:12:14 [ 7] [ 10] [0320172403] +10:12:14 [ 11] [ 6] [102403] +10:12:14 [ 37] [ 12] [579101024030] +10:12:14 [ 39] [ 2] [00] +10:12:14 [ 70] [ 3] [810] +10:12:14 ============================================================================ +10:12:14 Calculate Source COMM Id = 6 +10:12:14 ============================================================================ +10:12:14 + + +waiting on router queue for slot.... +10:12:16 ============================================================================ +10:12:16 Slot Id : <498> +10:12:16 Transaction Type : REQUEST +10:12:16 Received From : +10:12:16 ============================================================================ +10:12:16 FNo. Len. Field Value +10:12:16 ============================================================================ +10:12:16 [ 1] [ 4] [0800] +10:12:16 [ 7] [ 10] [0320031124] +10:12:16 [ 11] [ 6] [155795] +10:12:16 [ 70] [ 3] [301] +10:12:16 ============================================================================ +10:12:16 + + +waiting on router queue for slot.... +10:12:16 Sending to : +10:12:16 ============================================================================ +10:12:16 ============================================================================ +10:12:16 Slot Id : <498> +10:12:16 Transaction Type : RESPONSE +10:12:16 Received From : +10:12:16 ============================================================================ +10:12:16 FNo. Len. Field Value +10:12:16 ============================================================================ +10:12:16 [ 1] [ 4] [0810] +10:12:16 [ 7] [ 10] [0320031124] +10:12:16 [ 11] [ 6] [155795] +10:12:16 [ 39] [ 2] [00] +10:12:16 [ 70] [ 3] [301] +10:12:16 ============================================================================ +10:12:16 Calculate Source COMM Id = 2 +10:12:16 ============================================================================ +10:12:16 + + +waiting on router queue for slot.... +10:12:21 ============================================================================ +10:12:21 Slot Id : <4> +10:12:21 Transaction Type : REQUEST +10:12:21 Received From : +10:12:21 ============================================================================ +10:12:21 FNo. Len. Field Value +10:12:21 ============================================================================ +10:12:21 [ 1] [ 4] [0800] +10:12:21 [ 2] [ 5] [02531] +10:12:21 [ 3] [ 6] [579108] +10:12:21 [ 7] [ 10] [0320031221] +10:12:21 [ 11] [ 6] [807004] +10:12:21 [ 15] [ 10] [0320031221] +10:12:21 [ 37] [ 11] [57910807004] +10:12:21 [ 70] [ 3] [001] +10:12:21 ============================================================================ +10:12:21 + + +waiting on router queue for slot.... +10:12:21 ============================================================================ +10:12:21 Slot Id : <4> +10:12:21 Transaction Type : RESPONSE +10:12:21 Received From : +10:12:21 ============================================================================ +10:12:21 FNo. Len. Field Value +10:12:21 ============================================================================ +10:12:21 [ 1] [ 4] [0810] +10:12:21 [ 7] [ 10] [0320031221] +10:12:21 [ 11] [ 6] [807004] +10:12:21 [ 15] [ 4] [0320] +10:12:21 [ 37] [ 12] [57910807004] +10:12:21 [ 39] [ 2] [00] +10:12:21 [ 70] [ 3] [001] +10:12:21 ============================================================================ +10:12:21 Sending to : +10:12:21 ============================================================================ +10:12:21 + + +waiting on router queue for slot.... +10:12:31 ============================================================================ +10:12:31 Slot Id : <483> +10:12:31 Transaction Type : REQUEST +10:12:31 Received From : +10:12:31 ============================================================================ +10:12:31 FNo. Len. Field Value +10:12:31 ============================================================================ +10:12:31 [ 1] [ 4] [0200] +10:12:31 [ 2] [ 16] [6688990100954500] +10:12:31 [ 3] [ 6] [010000] +10:12:31 [ 4] [ 12] [000010000000] +10:12:31 [ 7] [ 10] [0320101227] +10:12:31 [ 11] [ 6] [710531] +10:12:31 [ 12] [ 6] [101227] +10:12:31 [ 13] [ 4] [0320] +10:12:31 [ 15] [ 4] [0320] +10:12:31 [ 18] [ 4] [6011] +10:12:31 [ 22] [ 3] [900] +10:12:31 [ 25] [ 2] [02] +10:12:31 [ 28] [ 9] [D00002000] +10:12:31 [ 32] [ 6] [621354] +10:12:31 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:12:31 [ 37] [ 12] [507904719489] +10:12:31 [ 41] [ 8] [18001000] +10:12:31 [ 42] [ 15] [NATIVE ] +10:12:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:12:31 [ 49] [ 3] [418] +10:12:31 [ 52] [ 16] [A3392CBD0AD7636A] +10:12:31 ============================================================================ +10:12:31 + + +waiting on router queue for slot.... +10:12:31 Sending to : +10:12:31 ============================================================================ +10:12:31 Sending to : +10:12:31 ============================================================================ +10:12:32 ============================================================================ +10:12:32 Slot Id : <473> +10:12:32 Transaction Type : REQUEST +10:12:32 Received From : +10:12:32 ============================================================================ +10:12:32 FNo. Len. Field Value +10:12:32 ============================================================================ +10:12:32 [ 1] [ 4] [0800] +10:12:32 [ 7] [ 10] [0320031139] +10:12:32 [ 11] [ 6] [155796] +10:12:32 [ 70] [ 3] [301] +10:12:32 ============================================================================ +10:12:32 + + +waiting on router queue for slot.... +10:12:32 Sending to : +10:12:32 ============================================================================ +10:12:32 ============================================================================ +10:12:32 Slot Id : <473> +10:12:32 Transaction Type : RESPONSE +10:12:32 Received From : +10:12:32 ============================================================================ +10:12:32 FNo. Len. Field Value +10:12:32 ============================================================================ +10:12:32 [ 1] [ 4] [0810] +10:12:32 [ 7] [ 10] [0320031139] +10:12:32 [ 11] [ 6] [155796] +10:12:32 [ 39] [ 2] [00] +10:12:32 [ 70] [ 3] [301] +10:12:32 ============================================================================ +10:12:32 Calculate Source COMM Id = 2 +10:12:32 ============================================================================ +10:12:32 + + +waiting on router queue for slot.... +10:12:32 ============================================================================ +10:12:32 Slot Id : <483> +10:12:32 Transaction Type : REQUEST +10:12:32 Received From : +10:12:32 ============================================================================ +10:12:32 FNo. Len. Field Value +10:12:32 ============================================================================ +10:12:32 [ 1] [ 4] [0200] +10:12:32 [ 2] [ 16] [6688990100954500] +10:12:32 [ 3] [ 6] [010000] +10:12:32 [ 4] [ 12] [000010000000] +10:12:32 [ 7] [ 10] [0320101227] +10:12:32 [ 11] [ 6] [710531] +10:12:32 [ 12] [ 6] [101227] +10:12:32 [ 13] [ 4] [0320] +10:12:32 [ 15] [ 4] [0320] +10:12:32 [ 18] [ 4] [6011] +10:12:32 [ 22] [ 3] [900] +10:12:32 [ 25] [ 2] [02] +10:12:32 [ 28] [ 9] [D00002000] +10:12:32 [ 32] [ 6] [621354] +10:12:32 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:12:32 [ 37] [ 12] [507904719489] +10:12:32 [ 41] [ 8] [18001000] +10:12:32 [ 42] [ 15] [NATIVE ] +10:12:32 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:12:32 [ 49] [ 3] [418] +10:12:32 [ 52] [ 16] [A3392CBD0AD7636A] +10:12:32 ============================================================================ +10:12:32 + + +waiting on router queue for slot.... +10:12:32 Sending to : +10:12:32 ============================================================================ +10:12:32 ============================================================================ +10:12:32 Slot Id : <483> +10:12:32 Transaction Type : REQUEST +10:12:32 Received From : +10:12:32 ============================================================================ +10:12:32 FNo. Len. Field Value +10:12:32 ============================================================================ +10:12:32 [ 1] [ 4] [0200] +10:12:32 [ 2] [ 16] [6688990100954500] +10:12:32 [ 3] [ 6] [010000] +10:12:32 [ 4] [ 12] [000010000000] +10:12:32 [ 7] [ 10] [0320101227] +10:12:32 [ 11] [ 6] [710531] +10:12:32 [ 12] [ 6] [101227] +10:12:32 [ 13] [ 4] [0320] +10:12:32 [ 15] [ 4] [0320] +10:12:32 [ 18] [ 4] [6011] +10:12:32 [ 22] [ 3] [900] +10:12:32 [ 25] [ 2] [02] +10:12:32 [ 28] [ 9] [D00002000] +10:12:32 [ 32] [ 6] [621354] +10:12:32 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:12:32 [ 37] [ 12] [507904719489] +10:12:32 [ 41] [ 8] [18001000] +10:12:32 [ 42] [ 15] [NATIVE ] +10:12:32 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:12:32 [ 49] [ 3] [418] +10:12:32 [ 52] [ 16] [F0F417C7E0D10D66] +10:12:32 ============================================================================ +10:12:32 + + +waiting on router queue for slot.... +10:12:32 Sending to : <4> +10:12:32 ============================================================================ +10:12:32 ============================================================================ +10:12:32 Slot Id : <489> +10:12:32 Transaction Type : REQUEST +10:12:32 Received From : +10:12:32 ============================================================================ +10:12:32 FNo. Len. Field Value +10:12:32 ============================================================================ +10:12:32 [ 1] [ 4] [0200] +10:12:32 [ 2] [ 16] [6213545000078570] +10:12:32 [ 3] [ 6] [310000] +10:12:32 [ 4] [ 12] [000000000000] +10:12:32 [ 7] [ 10] [0320102019] +10:12:32 [ 11] [ 6] [079062] +10:12:32 [ 12] [ 6] [102019] +10:12:32 [ 13] [ 4] [0320] +10:12:32 [ 14] [ 4] [4912] +10:12:32 [ 15] [ 4] [0320] +10:12:32 [ 18] [ 4] [6011] +10:12:32 [ 22] [ 3] [900] +10:12:32 [ 25] [ 2] [02] +10:12:32 [ 28] [ 9] [000000000] +10:12:32 [ 32] [ 6] [220699] +10:12:32 [ 35] [ 32] [6213545000078570=491212017857257] +10:12:32 [ 37] [ 12] [507900132943] +10:12:32 [ 41] [ 8] [03000100] +10:12:32 [ 42] [ 15] [APTRA ] +10:12:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:12:32 [ 49] [ 3] [418] +10:12:32 [ 52] [ 16] [4571FBCAA9119BF0] +10:12:32 ============================================================================ +10:12:32 + + +waiting on router queue for slot.... +10:12:32 Sending to : +10:12:32 ============================================================================ +10:12:32 Sending to : +10:12:32 ============================================================================ +10:12:32 ============================================================================ +10:12:32 Slot Id : <489> +10:12:32 Transaction Type : REQUEST +10:12:32 Received From : +10:12:32 ============================================================================ +10:12:32 FNo. Len. Field Value +10:12:32 ============================================================================ +10:12:32 [ 1] [ 4] [0200] +10:12:32 [ 2] [ 16] [6213545000078570] +10:12:32 [ 3] [ 6] [310000] +10:12:32 [ 4] [ 12] [000000000000] +10:12:32 [ 7] [ 10] [0320102019] +10:12:32 [ 11] [ 6] [079062] +10:12:32 [ 12] [ 6] [102019] +10:12:32 [ 13] [ 4] [0320] +10:12:32 [ 14] [ 4] [4912] +10:12:32 [ 15] [ 4] [0320] +10:12:32 [ 18] [ 4] [6011] +10:12:32 [ 22] [ 3] [900] +10:12:32 [ 25] [ 2] [02] +10:12:32 [ 28] [ 9] [000000000] +10:12:32 [ 32] [ 6] [220699] +10:12:32 [ 35] [ 32] [6213545000078570=491212017857257] +10:12:32 [ 37] [ 12] [507900132943] +10:12:32 [ 41] [ 8] [03000100] +10:12:32 [ 42] [ 15] [APTRA ] +10:12:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:12:32 [ 49] [ 3] [418] +10:12:32 [ 52] [ 16] [4571FBCAA9119BF0] +10:12:32 ============================================================================ +10:12:32 + + +waiting on router queue for slot.... +10:12:32 Sending to : +10:12:32 ============================================================================ +10:12:32 ============================================================================ +10:12:32 Slot Id : <489> +10:12:32 Transaction Type : REQUEST +10:12:32 Received From : +10:12:32 ============================================================================ +10:12:32 FNo. Len. Field Value +10:12:32 ============================================================================ +10:12:32 [ 1] [ 4] [0200] +10:12:32 [ 2] [ 16] [6213545000078570] +10:12:32 [ 3] [ 6] [310000] +10:12:32 [ 4] [ 12] [000000000000] +10:12:32 [ 7] [ 10] [0320102019] +10:12:32 [ 11] [ 6] [079062] +10:12:32 [ 12] [ 6] [102019] +10:12:32 [ 13] [ 4] [0320] +10:12:32 [ 14] [ 4] [4912] +10:12:32 [ 15] [ 4] [0320] +10:12:32 [ 18] [ 4] [6011] +10:12:32 [ 22] [ 3] [900] +10:12:32 [ 25] [ 2] [02] +10:12:32 [ 28] [ 9] [000000000] +10:12:32 [ 32] [ 6] [220699] +10:12:32 [ 35] [ 32] [6213545000078570=491212017857257] +10:12:32 [ 37] [ 12] [507900132943] +10:12:32 [ 41] [ 8] [03000100] +10:12:32 [ 42] [ 15] [APTRA ] +10:12:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:12:32 [ 49] [ 3] [418] +10:12:32 [ 52] [ 16] [63A2B5852E1BAD50] +10:12:32 ============================================================================ +10:12:32 + + +waiting on router queue for slot.... +10:12:32 Sending to : <0> +10:12:32 ============================================================================ +10:12:33 ============================================================================ +10:12:33 Slot Id : <489> +10:12:33 Transaction Type : RESPONSE +10:12:33 Received From : +10:12:33 ============================================================================ +10:12:33 FNo. Len. Field Value +10:12:33 ============================================================================ +10:12:33 [ 1] [ 4] [0210] +10:12:33 [ 2] [ 16] [6213545000078570] +10:12:33 [ 3] [ 6] [310000] +10:12:33 [ 4] [ 12] [000000000000] +10:12:33 [ 7] [ 10] [0320102019] +10:12:33 [ 11] [ 6] [079062] +10:12:33 [ 12] [ 6] [102019] +10:12:33 [ 13] [ 4] [0320] +10:12:33 [ 15] [ 4] [0320] +10:12:33 [ 18] [ 4] [6011] +10:12:33 [ 32] [ 6] [220699] +10:12:33 [ 35] [ 32] [6213545000078570=491212017857257] +10:12:33 [ 37] [ 12] [507900132943] +10:12:33 [ 38] [ 6] [738485] +10:12:33 [ 39] [ 2] [00] +10:12:33 [ 41] [ 8] [03000100] +10:12:33 [ 49] [ 3] [418] +10:12:33 [ 54] [ 40] [0001418C0000155181240002418C000015518124] +10:12:33 ============================================================================ +10:12:33 Sending to : +10:12:33 ============================================================================ +10:12:33 + + +waiting on router queue for slot.... +10:12:33 ============================================================================ +10:12:33 Slot Id : <483> +10:12:33 Transaction Type : RESPONSE +10:12:33 Received From : +10:12:33 ============================================================================ +10:12:33 FNo. Len. Field Value +10:12:33 ============================================================================ +10:12:33 [ 1] [ 4] [0210] +10:12:33 [ 2] [ 16] [6688990100954500] +10:12:33 [ 3] [ 6] [010000] +10:12:33 [ 4] [ 12] [000010000000] +10:12:33 [ 11] [ 6] [710531] +10:12:33 [ 12] [ 6] [101227] +10:12:33 [ 15] [ 4] [0320] +10:12:33 [ 18] [ 4] [6011] +10:12:33 [ 32] [ 6] [621354] +10:12:33 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:12:33 [ 37] [ 12] [507904719489] +10:12:33 [ 38] [ 6] [329867] +10:12:33 [ 39] [ 2] [00] +10:12:33 [ 41] [ 8] [18001000] +10:12:33 [ 49] [ 3] [418] +10:12:33 [ 54] [ 20] [0002418C000002456572] +10:12:33 ============================================================================ +10:12:33 Sending to : +10:12:33 ============================================================================ +10:12:33 + + +waiting on router queue for slot.... +10:12:34 ============================================================================ +10:12:34 Slot Id : <489> +10:12:34 Transaction Type : RESPONSE +10:12:34 Received From : +10:12:34 ============================================================================ +10:12:34 FNo. Len. Field Value +10:12:34 ============================================================================ +10:12:34 [ 1] [ 4] [0210] +10:12:34 [ 2] [ 16] [6213545000078570] +10:12:34 [ 3] [ 6] [310000] +10:12:34 [ 4] [ 12] [000000000000] +10:12:34 [ 7] [ 10] [0320102019] +10:12:34 [ 11] [ 6] [079062] +10:12:34 [ 12] [ 6] [102019] +10:12:34 [ 13] [ 4] [0320] +10:12:34 [ 15] [ 4] [0320] +10:12:34 [ 18] [ 4] [6011] +10:12:34 [ 32] [ 6] [220699] +10:12:34 [ 35] [ 32] [6213545000078570=491212017857257] +10:12:34 [ 37] [ 12] [507900132943] +10:12:34 [ 38] [ 6] [738485] +10:12:34 [ 39] [ 2] [00] +10:12:34 [ 41] [ 8] [03000100] +10:12:34 [ 49] [ 3] [418] +10:12:34 [ 54] [ 40] [0001418C0000155181240002418C000015518124] +10:12:34 ============================================================================ +10:12:34 Calculate Source COMM Id = 1 +10:12:34 ============================================================================ +10:12:34 + + +waiting on router queue for slot.... +10:12:36 ============================================================================ +10:12:36 Slot Id : <483> +10:12:36 Transaction Type : RESPONSE +10:12:36 Received From : +10:12:36 ============================================================================ +10:12:36 FNo. Len. Field Value +10:12:36 ============================================================================ +10:12:36 [ 1] [ 4] [0210] +10:12:36 [ 2] [ 16] [6688990100954500] +10:12:36 [ 3] [ 6] [010000] +10:12:36 [ 4] [ 12] [000010000000] +10:12:36 [ 11] [ 6] [710531] +10:12:36 [ 12] [ 6] [101227] +10:12:36 [ 15] [ 4] [0320] +10:12:36 [ 18] [ 4] [6011] +10:12:36 [ 32] [ 6] [621354] +10:12:36 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:12:36 [ 37] [ 12] [507904719489] +10:12:36 [ 38] [ 6] [329867] +10:12:36 [ 39] [ 2] [00] +10:12:36 [ 41] [ 8] [18001000] +10:12:36 [ 49] [ 3] [418] +10:12:36 [ 54] [ 20] [0002418C000002456572] +10:12:36 ============================================================================ +10:12:36 Calculate Source COMM Id = 0 +10:12:36 ============================================================================ +10:12:36 + + +waiting on router queue for slot.... +10:12:41 ============================================================================ +10:12:41 Slot Id : <474> +10:12:41 Transaction Type : REQUEST +10:12:41 Received From : +10:12:41 ============================================================================ +10:12:41 FNo. Len. Field Value +10:12:41 ============================================================================ +10:12:41 [ 1] [ 4] [0200] +10:12:41 [ 2] [ 16] [6213542000033853] +10:12:41 [ 3] [ 6] [010000] +10:12:41 [ 4] [ 12] [000100000000] +10:12:41 [ 7] [ 10] [0320101032] +10:12:41 [ 11] [ 6] [937896] +10:12:41 [ 12] [ 6] [101032] +10:12:41 [ 13] [ 4] [0320] +10:12:41 [ 15] [ 4] [0320] +10:12:41 [ 18] [ 4] [6011] +10:12:41 [ 19] [ 3] [418] +10:12:41 [ 22] [ 3] [021] +10:12:41 [ 25] [ 2] [01] +10:12:41 [ 28] [ 9] [D00002000] +10:12:41 [ 32] [ 6] [668899] +10:12:41 [ 35] [ 32] [6213542000033853=491212013385536] +10:12:41 [ 37] [ 12] [507902071155] +10:12:41 [ 41] [ 8] [03006007] +10:12:41 [ 42] [ 15] [APT ] +10:12:41 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:12:41 [ 49] [ 3] [418] +10:12:41 [ 52] [ 16] [2A5E678E76CAD955] +10:12:41 ============================================================================ +10:12:41 + + +waiting on router queue for slot.... +10:12:41 Sending to : +10:12:41 ============================================================================ +10:12:41 Sending to : +10:12:41 ============================================================================ +10:12:42 ============================================================================ +10:12:42 Slot Id : <474> +10:12:42 Transaction Type : REQUEST +10:12:42 Received From : +10:12:42 ============================================================================ +10:12:42 FNo. Len. Field Value +10:12:42 ============================================================================ +10:12:42 [ 1] [ 4] [0200] +10:12:42 [ 2] [ 16] [6213542000033853] +10:12:42 [ 3] [ 6] [010000] +10:12:42 [ 4] [ 12] [000100000000] +10:12:42 [ 7] [ 10] [0320101032] +10:12:42 [ 11] [ 6] [937896] +10:12:42 [ 12] [ 6] [101032] +10:12:42 [ 13] [ 4] [0320] +10:12:42 [ 15] [ 4] [0320] +10:12:42 [ 18] [ 4] [6011] +10:12:42 [ 19] [ 3] [418] +10:12:42 [ 22] [ 3] [021] +10:12:42 [ 25] [ 2] [01] +10:12:42 [ 28] [ 9] [D00002000] +10:12:42 [ 32] [ 6] [668899] +10:12:42 [ 35] [ 32] [6213542000033853=491212013385536] +10:12:42 [ 37] [ 12] [507902071155] +10:12:42 [ 41] [ 8] [03006007] +10:12:42 [ 42] [ 15] [APT ] +10:12:42 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:12:42 [ 49] [ 3] [418] +10:12:42 [ 52] [ 16] [2A5E678E76CAD955] +10:12:42 ============================================================================ +10:12:42 + + +waiting on router queue for slot.... +10:12:42 Sending to : +10:12:42 ============================================================================ +10:12:42 ============================================================================ +10:12:42 Slot Id : <474> +10:12:42 Transaction Type : REQUEST +10:12:42 Received From : +10:12:42 ============================================================================ +10:12:42 FNo. Len. Field Value +10:12:42 ============================================================================ +10:12:42 [ 1] [ 4] [0200] +10:12:42 [ 2] [ 16] [6213542000033853] +10:12:42 [ 3] [ 6] [010000] +10:12:42 [ 4] [ 12] [000100000000] +10:12:42 [ 7] [ 10] [0320101032] +10:12:42 [ 11] [ 6] [937896] +10:12:42 [ 12] [ 6] [101032] +10:12:42 [ 13] [ 4] [0320] +10:12:42 [ 15] [ 4] [0320] +10:12:42 [ 18] [ 4] [6011] +10:12:42 [ 19] [ 3] [418] +10:12:42 [ 22] [ 3] [021] +10:12:42 [ 25] [ 2] [01] +10:12:42 [ 28] [ 9] [D00002000] +10:12:42 [ 32] [ 6] [668899] +10:12:42 [ 35] [ 32] [6213542000033853=491212013385536] +10:12:42 [ 37] [ 12] [507902071155] +10:12:42 [ 41] [ 8] [03006007] +10:12:42 [ 42] [ 15] [APT ] +10:12:42 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:12:42 [ 49] [ 3] [418] +10:12:42 [ 52] [ 16] [157A8D48AC6B4555] +10:12:42 ============================================================================ +10:12:42 + + +waiting on router queue for slot.... +10:12:42 Sending to : <0> +10:12:42 ============================================================================ +10:12:42 ============================================================================ +10:12:42 Slot Id : <474> +10:12:42 Transaction Type : RESPONSE +10:12:42 Received From : +10:12:42 ============================================================================ +10:12:42 FNo. Len. Field Value +10:12:42 ============================================================================ +10:12:42 [ 1] [ 4] [0210] +10:12:42 [ 2] [ 16] [6213542000033853] +10:12:42 [ 3] [ 6] [010000] +10:12:42 [ 4] [ 12] [000100000000] +10:12:42 [ 7] [ 10] [0320101032] +10:12:42 [ 11] [ 6] [937896] +10:12:42 [ 12] [ 6] [101032] +10:12:42 [ 13] [ 4] [0320] +10:12:42 [ 15] [ 4] [0320] +10:12:42 [ 18] [ 4] [6011] +10:12:42 [ 19] [ 3] [418] +10:12:42 [ 32] [ 6] [668899] +10:12:42 [ 35] [ 32] [6213542000033853=491212013385536] +10:12:42 [ 37] [ 12] [507902071155] +10:12:42 [ 38] [ 6] [150636] +10:12:42 [ 39] [ 2] [00] +10:12:42 [ 41] [ 8] [03006007] +10:12:42 [ 49] [ 3] [418] +10:12:42 [ 54] [ 40] [0001418C0000544641820002418C000054464182] +10:12:42 ============================================================================ +10:12:42 Sending to : +10:12:42 ============================================================================ +10:12:42 + + +waiting on router queue for slot.... +10:12:44 ============================================================================ +10:12:44 Slot Id : <474> +10:12:44 Transaction Type : RESPONSE +10:12:44 Received From : +10:12:44 ============================================================================ +10:12:44 FNo. Len. Field Value +10:12:44 ============================================================================ +10:12:44 [ 1] [ 4] [0210] +10:12:44 [ 2] [ 16] [6213542000033853] +10:12:44 [ 3] [ 6] [010000] +10:12:44 [ 4] [ 12] [000100000000] +10:12:44 [ 7] [ 10] [0320101032] +10:12:44 [ 11] [ 6] [937896] +10:12:44 [ 12] [ 6] [101032] +10:12:44 [ 13] [ 4] [0320] +10:12:44 [ 15] [ 4] [0320] +10:12:44 [ 18] [ 4] [6011] +10:12:44 [ 19] [ 3] [418] +10:12:44 [ 32] [ 6] [668899] +10:12:44 [ 35] [ 32] [6213542000033853=491212013385536] +10:12:44 [ 37] [ 12] [507902071155] +10:12:44 [ 38] [ 6] [150636] +10:12:44 [ 39] [ 2] [00] +10:12:44 [ 41] [ 8] [03006007] +10:12:44 [ 49] [ 3] [418] +10:12:44 [ 54] [ 40] [0001418C0000544641820002418C000054464182] +10:12:44 ============================================================================ +10:12:44 Calculate Source COMM Id = 4 +10:12:44 ============================================================================ +10:12:44 + + +waiting on router queue for slot.... +10:12:44 ============================================================================ +10:12:44 Slot Id : <476> +10:12:44 Transaction Type : REQUEST +10:12:44 Received From : +10:12:44 ============================================================================ +10:12:44 FNo. Len. Field Value +10:12:44 ============================================================================ +10:12:44 [ 1] [ 4] [0800] +10:12:44 [ 7] [ 10] [0320031151] +10:12:44 [ 11] [ 6] [155797] +10:12:44 [ 70] [ 3] [301] +10:12:44 ============================================================================ +10:12:44 + + +waiting on router queue for slot.... +10:12:44 Sending to : +10:12:44 ============================================================================ +10:12:44 ============================================================================ +10:12:44 Slot Id : <476> +10:12:44 Transaction Type : RESPONSE +10:12:44 Received From : +10:12:44 ============================================================================ +10:12:44 FNo. Len. Field Value +10:12:44 ============================================================================ +10:12:44 [ 1] [ 4] [0810] +10:12:44 [ 7] [ 10] [0320031151] +10:12:44 [ 11] [ 6] [155797] +10:12:44 [ 39] [ 2] [00] +10:12:44 [ 70] [ 3] [301] +10:12:44 ============================================================================ +10:12:44 Calculate Source COMM Id = 2 +10:12:44 ============================================================================ +10:12:44 + + +waiting on router queue for slot.... +10:12:58 ============================================================================ +10:12:58 Slot Id : <472> +10:12:58 Transaction Type : REQUEST +10:12:58 Received From : +10:12:58 ============================================================================ +10:12:58 FNo. Len. Field Value +10:12:58 ============================================================================ +10:12:58 [ 1] [ 4] [0200] +10:12:58 [ 2] [ 16] [1808931800012633] +10:12:58 [ 3] [ 6] [011000] +10:12:58 [ 4] [ 12] [000100000000] +10:12:58 [ 7] [ 10] [0320101254] +10:12:58 [ 11] [ 6] [710638] +10:12:58 [ 12] [ 6] [101254] +10:12:58 [ 13] [ 4] [0320] +10:12:58 [ 15] [ 4] [0320] +10:12:58 [ 18] [ 4] [6011] +10:12:58 [ 22] [ 3] [900] +10:12:58 [ 25] [ 2] [02] +10:12:58 [ 28] [ 9] [D00002000] +10:12:58 [ 32] [ 6] [621354] +10:12:58 [ 35] [ 27] [1808931800012633=1803500869] +10:12:58 [ 37] [ 12] [507904635523] +10:12:58 [ 41] [ 8] [17000800] +10:12:58 [ 42] [ 15] [NATIVE ] +10:12:58 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:12:58 [ 49] [ 3] [418] +10:12:58 [ 52] [ 16] [D001A708DB431E39] +10:12:58 ============================================================================ +10:12:58 + + +waiting on router queue for slot.... +10:12:58 Sending to : +10:12:58 ============================================================================ +10:12:58 Sending to : +10:12:58 ============================================================================ +10:12:59 ============================================================================ +10:12:59 Slot Id : <472> +10:12:59 Transaction Type : REQUEST +10:12:59 Received From : +10:12:59 ============================================================================ +10:12:59 FNo. Len. Field Value +10:12:59 ============================================================================ +10:12:59 [ 1] [ 4] [0200] +10:12:59 [ 2] [ 16] [1808931800012633] +10:12:59 [ 3] [ 6] [011000] +10:12:59 [ 4] [ 12] [000100000000] +10:12:59 [ 7] [ 10] [0320101254] +10:12:59 [ 11] [ 6] [710638] +10:12:59 [ 12] [ 6] [101254] +10:12:59 [ 13] [ 4] [0320] +10:12:59 [ 15] [ 4] [0320] +10:12:59 [ 18] [ 4] [6011] +10:12:59 [ 22] [ 3] [900] +10:12:59 [ 25] [ 2] [02] +10:12:59 [ 28] [ 9] [D00002000] +10:12:59 [ 32] [ 6] [621354] +10:12:59 [ 35] [ 27] [1808931800012633=1803500869] +10:12:59 [ 37] [ 12] [507904635523] +10:12:59 [ 41] [ 8] [17000800] +10:12:59 [ 42] [ 15] [NATIVE ] +10:12:59 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:12:59 [ 49] [ 3] [418] +10:12:59 [ 52] [ 16] [D001A708DB431E39] +10:12:59 ============================================================================ +10:12:59 + + +waiting on router queue for slot.... +10:12:59 Sending to : +10:12:59 ============================================================================ +10:12:59 ============================================================================ +10:12:59 Slot Id : <472> +10:12:59 Transaction Type : REQUEST +10:12:59 Received From : +10:12:59 ============================================================================ +10:12:59 FNo. Len. Field Value +10:12:59 ============================================================================ +10:12:59 [ 1] [ 4] [0200] +10:12:59 [ 2] [ 16] [1808931800012633] +10:12:59 [ 3] [ 6] [011000] +10:12:59 [ 4] [ 12] [000100000000] +10:12:59 [ 7] [ 10] [0320101254] +10:12:59 [ 11] [ 6] [710638] +10:12:59 [ 12] [ 6] [101254] +10:12:59 [ 13] [ 4] [0320] +10:12:59 [ 15] [ 4] [0320] +10:12:59 [ 18] [ 4] [6011] +10:12:59 [ 22] [ 3] [900] +10:12:59 [ 25] [ 2] [02] +10:12:59 [ 28] [ 9] [D00002000] +10:12:59 [ 32] [ 6] [621354] +10:12:59 [ 35] [ 27] [1808931800012633=1803500869] +10:12:59 [ 37] [ 12] [507904635523] +10:12:59 [ 41] [ 8] [17000800] +10:12:59 [ 42] [ 15] [NATIVE ] +10:12:59 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:12:59 [ 49] [ 3] [418] +10:12:59 [ 52] [ 16] [185F0AE7E71C5FC8] +10:12:59 ============================================================================ +10:12:59 + + +waiting on router queue for slot.... +10:12:59 Sending to : <2> +10:12:59 ============================================================================ +10:12:59 ============================================================================ +10:12:59 Slot Id : <486> +10:12:59 Transaction Type : REQUEST +10:12:59 Received From : +10:12:59 ============================================================================ +10:12:59 FNo. Len. Field Value +10:12:59 ============================================================================ +10:12:59 [ 1] [ 4] [0800] +10:12:59 [ 7] [ 10] [0320031207] +10:12:59 [ 11] [ 6] [155798] +10:12:59 [ 70] [ 3] [301] +10:12:59 ============================================================================ +10:12:59 + + +waiting on router queue for slot.... +10:12:59 Sending to : +10:12:59 ============================================================================ +10:12:59 ============================================================================ +10:12:59 Slot Id : <486> +10:12:59 Transaction Type : RESPONSE +10:12:59 Received From : +10:12:59 ============================================================================ +10:12:59 FNo. Len. Field Value +10:12:59 ============================================================================ +10:12:59 [ 1] [ 4] [0810] +10:12:59 [ 7] [ 10] [0320031207] +10:12:59 [ 11] [ 6] [155798] +10:12:59 [ 39] [ 2] [00] +10:12:59 [ 70] [ 3] [301] +10:12:59 ============================================================================ +10:12:59 Calculate Source COMM Id = 2 +10:12:59 ============================================================================ +10:12:59 + + +waiting on router queue for slot.... +10:13:07 ============================================================================ +10:13:07 Slot Id : <477> +10:13:07 Transaction Type : REQUEST +10:13:07 Received From : +10:13:07 ============================================================================ +10:13:07 FNo. Len. Field Value +10:13:07 ============================================================================ +10:13:07 [ 1] [ 4] [0200] +10:13:07 [ 2] [ 16] [6213545000078570] +10:13:07 [ 3] [ 6] [010000] +10:13:07 [ 4] [ 12] [000010000000] +10:13:07 [ 7] [ 10] [0320102055] +10:13:07 [ 11] [ 6] [079063] +10:13:07 [ 12] [ 6] [102055] +10:13:07 [ 13] [ 4] [0320] +10:13:07 [ 14] [ 4] [4912] +10:13:07 [ 15] [ 4] [0320] +10:13:07 [ 18] [ 4] [6011] +10:13:07 [ 22] [ 3] [900] +10:13:07 [ 25] [ 2] [02] +10:13:07 [ 28] [ 9] [D00002000] +10:13:07 [ 32] [ 6] [220699] +10:13:07 [ 35] [ 32] [6213545000078570=491212017857257] +10:13:07 [ 37] [ 12] [507900132944] +10:13:07 [ 41] [ 8] [03000100] +10:13:07 [ 42] [ 15] [APTRA ] +10:13:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:13:07 [ 49] [ 3] [418] +10:13:07 [ 52] [ 16] [4571FBCAA9119BF0] +10:13:07 ============================================================================ +10:13:07 + + +waiting on router queue for slot.... +10:13:07 Sending to : +10:13:07 ============================================================================ +10:13:07 Sending to : +10:13:07 ============================================================================ +10:13:07 ============================================================================ +10:13:07 Slot Id : <472> +10:13:07 Transaction Type : RESPONSE +10:13:07 Received From : +10:13:07 ============================================================================ +10:13:07 FNo. Len. Field Value +10:13:07 ============================================================================ +10:13:07 [ 1] [ 4] [0210] +10:13:07 [ 2] [ 16] [1808931800012633] +10:13:07 [ 3] [ 6] [011000] +10:13:07 [ 4] [ 12] [000100000000] +10:13:07 [ 6] [ 12] [000100000000] +10:13:07 [ 7] [ 10] [0320101254] +10:13:07 [ 11] [ 6] [710638] +10:13:07 [ 12] [ 6] [101254] +10:13:07 [ 13] [ 4] [0320] +10:13:07 [ 18] [ 4] [6011] +10:13:07 [ 19] [ 3] [418] +10:13:07 [ 22] [ 3] [021] +10:13:07 [ 32] [ 6] [621354] +10:13:07 [ 35] [ 27] [1808931800012633=1803500869] +10:13:07 [ 37] [ 12] [507904635523] +10:13:07 [ 38] [ 6] [710638] +10:13:07 [ 39] [ 2] [00] +10:13:07 [ 41] [ 8] [17000800] +10:13:07 [ 49] [ 3] [418] +10:13:07 [ 52] [ 16] [185F0AE7E71C5FC8] +10:13:07 [ 54] [ 20] [1001418C000125655100] +10:13:07 ============================================================================ +10:13:07 Sending to : +10:13:07 ============================================================================ +10:13:07 + + +waiting on router queue for slot.... +10:13:07 ============================================================================ +10:13:07 Slot Id : <477> +10:13:07 Transaction Type : REQUEST +10:13:07 Received From : +10:13:07 ============================================================================ +10:13:07 FNo. Len. Field Value +10:13:07 ============================================================================ +10:13:07 [ 1] [ 4] [0200] +10:13:07 [ 2] [ 16] [6213545000078570] +10:13:07 [ 3] [ 6] [010000] +10:13:07 [ 4] [ 12] [000010000000] +10:13:07 [ 7] [ 10] [0320102055] +10:13:07 [ 11] [ 6] [079063] +10:13:07 [ 12] [ 6] [102055] +10:13:07 [ 13] [ 4] [0320] +10:13:07 [ 14] [ 4] [4912] +10:13:07 [ 15] [ 4] [0320] +10:13:07 [ 18] [ 4] [6011] +10:13:07 [ 22] [ 3] [900] +10:13:07 [ 25] [ 2] [02] +10:13:07 [ 28] [ 9] [D00002000] +10:13:07 [ 32] [ 6] [220699] +10:13:07 [ 35] [ 32] [6213545000078570=491212017857257] +10:13:07 [ 37] [ 12] [507900132944] +10:13:07 [ 41] [ 8] [03000100] +10:13:07 [ 42] [ 15] [APTRA ] +10:13:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:13:07 [ 49] [ 3] [418] +10:13:07 [ 52] [ 16] [4571FBCAA9119BF0] +10:13:07 ============================================================================ +10:13:07 + + +waiting on router queue for slot.... +10:13:07 Sending to : +10:13:07 ============================================================================ +10:13:07 ============================================================================ +10:13:07 Slot Id : <477> +10:13:07 Transaction Type : REQUEST +10:13:07 Received From : +10:13:07 ============================================================================ +10:13:07 FNo. Len. Field Value +10:13:07 ============================================================================ +10:13:07 [ 1] [ 4] [0200] +10:13:07 [ 2] [ 16] [6213545000078570] +10:13:07 [ 3] [ 6] [010000] +10:13:07 [ 4] [ 12] [000010000000] +10:13:07 [ 7] [ 10] [0320102055] +10:13:07 [ 11] [ 6] [079063] +10:13:07 [ 12] [ 6] [102055] +10:13:07 [ 13] [ 4] [0320] +10:13:07 [ 14] [ 4] [4912] +10:13:07 [ 15] [ 4] [0320] +10:13:07 [ 18] [ 4] [6011] +10:13:07 [ 22] [ 3] [900] +10:13:07 [ 25] [ 2] [02] +10:13:07 [ 28] [ 9] [D00002000] +10:13:07 [ 32] [ 6] [220699] +10:13:07 [ 35] [ 32] [6213545000078570=491212017857257] +10:13:07 [ 37] [ 12] [507900132944] +10:13:07 [ 41] [ 8] [03000100] +10:13:07 [ 42] [ 15] [APTRA ] +10:13:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:13:07 [ 49] [ 3] [418] +10:13:07 [ 52] [ 16] [63A2B5852E1BAD50] +10:13:07 ============================================================================ +10:13:07 + + +waiting on router queue for slot.... +10:13:07 Sending to : <0> +10:13:07 ============================================================================ +10:13:08 ============================================================================ +10:13:08 Slot Id : <477> +10:13:08 Transaction Type : RESPONSE +10:13:08 Received From : +10:13:08 ============================================================================ +10:13:08 FNo. Len. Field Value +10:13:08 ============================================================================ +10:13:08 [ 1] [ 4] [0210] +10:13:08 [ 2] [ 16] [6213545000078570] +10:13:08 [ 3] [ 6] [010000] +10:13:08 [ 4] [ 12] [000010000000] +10:13:08 [ 7] [ 10] [0320102055] +10:13:08 [ 11] [ 6] [079063] +10:13:08 [ 12] [ 6] [102055] +10:13:08 [ 13] [ 4] [0320] +10:13:08 [ 15] [ 4] [0320] +10:13:08 [ 18] [ 4] [6011] +10:13:08 [ 32] [ 6] [220699] +10:13:08 [ 35] [ 32] [6213545000078570=491212017857257] +10:13:08 [ 37] [ 12] [507900132944] +10:13:08 [ 38] [ 6] [970038] +10:13:08 [ 39] [ 2] [00] +10:13:08 [ 41] [ 8] [03000100] +10:13:08 [ 49] [ 3] [418] +10:13:08 [ 54] [ 40] [0001418C0000053181240002418C000005318124] +10:13:08 ============================================================================ +10:13:08 Sending to : +10:13:08 ============================================================================ +10:13:08 + + +waiting on router queue for slot.... +10:13:09 ============================================================================ +10:13:09 Slot Id : <472> +10:13:09 Transaction Type : RESPONSE +10:13:09 Received From : +10:13:09 ============================================================================ +10:13:09 FNo. Len. Field Value +10:13:09 ============================================================================ +10:13:09 [ 1] [ 4] [0210] +10:13:09 [ 2] [ 16] [1808931800012633] +10:13:09 [ 3] [ 6] [011000] +10:13:09 [ 4] [ 12] [000100000000] +10:13:09 [ 6] [ 12] [000100000000] +10:13:09 [ 7] [ 10] [0320101254] +10:13:09 [ 11] [ 6] [710638] +10:13:09 [ 12] [ 6] [101254] +10:13:09 [ 13] [ 4] [0320] +10:13:09 [ 18] [ 4] [6011] +10:13:09 [ 19] [ 3] [418] +10:13:09 [ 22] [ 3] [021] +10:13:09 [ 32] [ 6] [621354] +10:13:09 [ 35] [ 27] [1808931800012633=1803500869] +10:13:09 [ 37] [ 12] [507904635523] +10:13:09 [ 38] [ 6] [710638] +10:13:09 [ 39] [ 2] [00] +10:13:09 [ 41] [ 8] [17000800] +10:13:09 [ 49] [ 3] [418] +10:13:09 [ 52] [ 16] [185F0AE7E71C5FC8] +10:13:09 [ 54] [ 20] [1001418C000125655100] +10:13:09 ============================================================================ +10:13:09 Calculate Source COMM Id = 0 +10:13:09 ============================================================================ +10:13:09 + + +waiting on router queue for slot.... +10:13:11 ============================================================================ +10:13:11 Slot Id : <477> +10:13:11 Transaction Type : RESPONSE +10:13:11 Received From : +10:13:11 ============================================================================ +10:13:11 FNo. Len. Field Value +10:13:11 ============================================================================ +10:13:11 [ 1] [ 4] [0210] +10:13:11 [ 2] [ 16] [6213545000078570] +10:13:11 [ 3] [ 6] [010000] +10:13:11 [ 4] [ 12] [000010000000] +10:13:11 [ 7] [ 10] [0320102055] +10:13:11 [ 11] [ 6] [079063] +10:13:11 [ 12] [ 6] [102055] +10:13:11 [ 13] [ 4] [0320] +10:13:11 [ 15] [ 4] [0320] +10:13:11 [ 18] [ 4] [6011] +10:13:11 [ 32] [ 6] [220699] +10:13:11 [ 35] [ 32] [6213545000078570=491212017857257] +10:13:11 [ 37] [ 12] [507900132944] +10:13:11 [ 38] [ 6] [970038] +10:13:11 [ 39] [ 2] [00] +10:13:11 [ 41] [ 8] [03000100] +10:13:11 [ 49] [ 3] [418] +10:13:11 [ 54] [ 40] [0001418C0000053181240002418C000005318124] +10:13:11 ============================================================================ +10:13:11 Calculate Source COMM Id = 1 +10:13:11 ============================================================================ +10:13:11 + + +waiting on router queue for slot.... +10:13:16 ============================================================================ +10:13:16 Slot Id : <492> +10:13:16 Transaction Type : REQUEST +10:13:16 Received From : +10:13:16 ============================================================================ +10:13:16 FNo. Len. Field Value +10:13:16 ============================================================================ +10:13:16 [ 1] [ 4] [0800] +10:13:16 [ 7] [ 10] [0320031224] +10:13:16 [ 11] [ 6] [155799] +10:13:16 [ 70] [ 3] [301] +10:13:16 ============================================================================ +10:13:16 + + +waiting on router queue for slot.... +10:13:16 Sending to : +10:13:16 ============================================================================ +10:13:16 ============================================================================ +10:13:16 Slot Id : <492> +10:13:16 Transaction Type : RESPONSE +10:13:16 Received From : +10:13:16 ============================================================================ +10:13:16 FNo. Len. Field Value +10:13:16 ============================================================================ +10:13:16 [ 1] [ 4] [0810] +10:13:16 [ 7] [ 10] [0320031224] +10:13:16 [ 11] [ 6] [155799] +10:13:16 [ 39] [ 2] [00] +10:13:16 [ 70] [ 3] [301] +10:13:16 ============================================================================ +10:13:16 Calculate Source COMM Id = 2 +10:13:16 ============================================================================ +10:13:16 + + +waiting on router queue for slot.... +10:13:19 ============================================================================ +10:13:19 Slot Id : <6> +10:13:19 Transaction Type : REQUEST +10:13:19 Received From : +10:13:19 ============================================================================ +10:13:19 FNo. Len. Field Value +10:13:19 ============================================================================ +10:13:19 [ 1] [ 4] [0800] +10:13:19 [ 7] [ 10] [0320172508] +10:13:19 [ 11] [ 6] [102508] +10:13:19 [ 37] [ 12] [57910102508] +10:13:19 [ 70] [ 3] [301] +10:13:19 ============================================================================ +10:13:19 + + +waiting on router queue for slot.... +10:13:19 Sending to : +10:13:19 ============================================================================ +10:13:19 ============================================================================ +10:13:19 Slot Id : <6> +10:13:19 Transaction Type : RESPONSE +10:13:19 Received From : +10:13:19 ============================================================================ +10:13:19 FNo. Len. Field Value +10:13:19 ============================================================================ +10:13:19 [ 1] [ 4] [0810] +10:13:19 [ 7] [ 10] [0320172508] +10:13:19 [ 11] [ 6] [102508] +10:13:19 [ 37] [ 12] [579101025080] +10:13:19 [ 39] [ 2] [00] +10:13:19 [ 70] [ 3] [810] +10:13:19 ============================================================================ +10:13:19 Calculate Source COMM Id = 6 +10:13:19 ============================================================================ +10:13:19 + + +waiting on router queue for slot.... +10:13:23 ============================================================================ +10:13:23 Slot Id : <485> +10:13:23 Transaction Type : REQUEST +10:13:23 Received From : +10:13:23 ============================================================================ +10:13:23 FNo. Len. Field Value +10:13:23 ============================================================================ +10:13:23 [ 1] [ 4] [0800] +10:13:23 [ 2] [ 5] [02531] +10:13:23 [ 3] [ 6] [579108] +10:13:23 [ 7] [ 10] [0320031323] +10:13:23 [ 11] [ 6] [807005] +10:13:23 [ 15] [ 10] [0320031323] +10:13:23 [ 37] [ 11] [57910807005] +10:13:23 [ 70] [ 3] [001] +10:13:23 ============================================================================ +10:13:23 + + +waiting on router queue for slot.... +10:13:23 ============================================================================ +10:13:23 Slot Id : <485> +10:13:23 Transaction Type : RESPONSE +10:13:23 Received From : +10:13:23 ============================================================================ +10:13:23 FNo. Len. Field Value +10:13:23 ============================================================================ +10:13:23 [ 1] [ 4] [0810] +10:13:23 [ 7] [ 10] [0320031323] +10:13:23 [ 11] [ 6] [807005] +10:13:23 [ 15] [ 4] [0320] +10:13:23 [ 37] [ 12] [57910807005] +10:13:23 [ 39] [ 2] [00] +10:13:23 [ 70] [ 3] [001] +10:13:23 ============================================================================ +10:13:23 Sending to : +10:13:23 ============================================================================ +10:13:23 + + +waiting on router queue for slot.... +10:13:28 ============================================================================ +10:13:28 Slot Id : <454> +10:13:28 Transaction Type : REQUEST +10:13:28 Received From : +10:13:28 ============================================================================ +10:13:28 FNo. Len. Field Value +10:13:28 ============================================================================ +10:13:28 [ 1] [ 4] [0800] +10:13:28 [ 7] [ 10] [0320031235] +10:13:28 [ 11] [ 6] [155800] +10:13:28 [ 70] [ 3] [301] +10:13:28 ============================================================================ +10:13:28 + + +waiting on router queue for slot.... +10:13:28 Sending to : +10:13:28 ============================================================================ +10:13:28 ============================================================================ +10:13:28 Slot Id : <454> +10:13:28 Transaction Type : RESPONSE +10:13:28 Received From : +10:13:28 ============================================================================ +10:13:28 FNo. Len. Field Value +10:13:28 ============================================================================ +10:13:28 [ 1] [ 4] [0810] +10:13:28 [ 7] [ 10] [0320031235] +10:13:28 [ 11] [ 6] [155800] +10:13:28 [ 39] [ 2] [00] +10:13:28 [ 70] [ 3] [301] +10:13:28 ============================================================================ +10:13:28 Calculate Source COMM Id = 2 +10:13:28 ============================================================================ +10:13:28 + + +waiting on router queue for slot.... +10:13:43 ============================================================================ +10:13:43 Slot Id : <14> +10:13:43 Transaction Type : REQUEST +10:13:43 Received From : +10:13:43 ============================================================================ +10:13:43 FNo. Len. Field Value +10:13:43 ============================================================================ +10:13:43 [ 1] [ 4] [0800] +10:13:43 [ 7] [ 10] [0320031251] +10:13:43 [ 11] [ 6] [155801] +10:13:43 [ 70] [ 3] [301] +10:13:43 ============================================================================ +10:13:43 + + +waiting on router queue for slot.... +10:13:43 Sending to : +10:13:43 ============================================================================ +10:13:43 ============================================================================ +10:13:43 Slot Id : <14> +10:13:43 Transaction Type : RESPONSE +10:13:43 Received From : +10:13:43 ============================================================================ +10:13:43 FNo. Len. Field Value +10:13:43 ============================================================================ +10:13:43 [ 1] [ 4] [0810] +10:13:43 [ 7] [ 10] [0320031251] +10:13:43 [ 11] [ 6] [155801] +10:13:43 [ 39] [ 2] [00] +10:13:43 [ 70] [ 3] [301] +10:13:43 ============================================================================ +10:13:43 Calculate Source COMM Id = 2 +10:13:43 ============================================================================ +10:13:43 + + +waiting on router queue for slot.... +10:13:54 ============================================================================ +10:13:54 Slot Id : <13> +10:13:54 Transaction Type : REQUEST +10:13:54 Received From : +10:13:54 ============================================================================ +10:13:54 FNo. Len. Field Value +10:13:54 ============================================================================ +10:13:54 [ 1] [ 4] [0800] +10:13:54 [ 7] [ 10] [0320031301] +10:13:54 [ 11] [ 6] [155802] +10:13:54 [ 70] [ 3] [301] +10:13:54 ============================================================================ +10:13:54 + + +waiting on router queue for slot.... +10:13:54 Sending to : +10:13:54 ============================================================================ +10:13:54 ============================================================================ +10:13:54 Slot Id : <13> +10:13:54 Transaction Type : RESPONSE +10:13:54 Received From : +10:13:54 ============================================================================ +10:13:54 FNo. Len. Field Value +10:13:54 ============================================================================ +10:13:54 [ 1] [ 4] [0810] +10:13:54 [ 7] [ 10] [0320031301] +10:13:54 [ 11] [ 6] [155802] +10:13:54 [ 39] [ 2] [00] +10:13:54 [ 70] [ 3] [301] +10:13:54 ============================================================================ +10:13:54 Calculate Source COMM Id = 2 +10:13:54 ============================================================================ +10:13:54 + + +waiting on router queue for slot.... +10:14:02 ============================================================================ +10:14:02 Slot Id : <12> +10:14:02 Transaction Type : REQUEST +10:14:02 Received From : +10:14:02 ============================================================================ +10:14:02 FNo. Len. Field Value +10:14:02 ============================================================================ +10:14:02 [ 1] [ 4] [0200] +10:14:02 [ 2] [ 16] [6688990100954500] +10:14:02 [ 3] [ 6] [010000] +10:14:02 [ 4] [ 12] [000005000000] +10:14:02 [ 7] [ 10] [0320101358] +10:14:02 [ 11] [ 6] [710889] +10:14:02 [ 12] [ 6] [101358] +10:14:02 [ 13] [ 4] [0320] +10:14:02 [ 15] [ 4] [0320] +10:14:02 [ 18] [ 4] [6011] +10:14:02 [ 22] [ 3] [900] +10:14:02 [ 25] [ 2] [02] +10:14:02 [ 28] [ 9] [D00002000] +10:14:02 [ 32] [ 6] [621354] +10:14:02 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:14:02 [ 37] [ 12] [507904719491] +10:14:02 [ 41] [ 8] [18001000] +10:14:02 [ 42] [ 15] [NATIVE ] +10:14:02 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:14:02 [ 49] [ 3] [418] +10:14:02 [ 52] [ 16] [A3392CBD0AD7636A] +10:14:02 ============================================================================ +10:14:02 + + +waiting on router queue for slot.... +10:14:02 Sending to : +10:14:02 ============================================================================ +10:14:02 Sending to : +10:14:02 ============================================================================ +10:14:02 ============================================================================ +10:14:02 Slot Id : <12> +10:14:02 Transaction Type : REQUEST +10:14:02 Received From : +10:14:02 ============================================================================ +10:14:02 FNo. Len. Field Value +10:14:02 ============================================================================ +10:14:02 [ 1] [ 4] [0200] +10:14:02 [ 2] [ 16] [6688990100954500] +10:14:02 [ 3] [ 6] [010000] +10:14:02 [ 4] [ 12] [000005000000] +10:14:02 [ 7] [ 10] [0320101358] +10:14:02 [ 11] [ 6] [710889] +10:14:02 [ 12] [ 6] [101358] +10:14:02 [ 13] [ 4] [0320] +10:14:02 [ 15] [ 4] [0320] +10:14:02 [ 18] [ 4] [6011] +10:14:02 [ 22] [ 3] [900] +10:14:02 [ 25] [ 2] [02] +10:14:02 [ 28] [ 9] [D00002000] +10:14:02 [ 32] [ 6] [621354] +10:14:02 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:14:02 [ 37] [ 12] [507904719491] +10:14:02 [ 41] [ 8] [18001000] +10:14:02 [ 42] [ 15] [NATIVE ] +10:14:02 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:14:02 [ 49] [ 3] [418] +10:14:02 [ 52] [ 16] [A3392CBD0AD7636A] +10:14:02 ============================================================================ +10:14:02 + + +waiting on router queue for slot.... +10:14:02 Sending to : +10:14:02 ============================================================================ +10:14:02 ============================================================================ +10:14:02 Slot Id : <12> +10:14:02 Transaction Type : REQUEST +10:14:02 Received From : +10:14:02 ============================================================================ +10:14:02 FNo. Len. Field Value +10:14:02 ============================================================================ +10:14:02 [ 1] [ 4] [0200] +10:14:02 [ 2] [ 16] [6688990100954500] +10:14:02 [ 3] [ 6] [010000] +10:14:02 [ 4] [ 12] [000005000000] +10:14:02 [ 7] [ 10] [0320101358] +10:14:02 [ 11] [ 6] [710889] +10:14:02 [ 12] [ 6] [101358] +10:14:02 [ 13] [ 4] [0320] +10:14:02 [ 15] [ 4] [0320] +10:14:02 [ 18] [ 4] [6011] +10:14:02 [ 22] [ 3] [900] +10:14:02 [ 25] [ 2] [02] +10:14:02 [ 28] [ 9] [D00002000] +10:14:02 [ 32] [ 6] [621354] +10:14:02 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:14:02 [ 37] [ 12] [507904719491] +10:14:02 [ 41] [ 8] [18001000] +10:14:02 [ 42] [ 15] [NATIVE ] +10:14:02 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:14:02 [ 49] [ 3] [418] +10:14:02 [ 52] [ 16] [F0F417C7E0D10D66] +10:14:02 ============================================================================ +10:14:02 + + +waiting on router queue for slot.... +10:14:02 Sending to : <4> +10:14:02 ============================================================================ +10:14:02 ============================================================================ +10:14:02 Slot Id : <12> +10:14:02 Transaction Type : RESPONSE +10:14:02 Received From : +10:14:02 ============================================================================ +10:14:02 FNo. Len. Field Value +10:14:02 ============================================================================ +10:14:02 [ 1] [ 4] [0210] +10:14:02 [ 2] [ 16] [6688990100954500] +10:14:02 [ 3] [ 6] [010000] +10:14:02 [ 4] [ 12] [000005000000] +10:14:02 [ 11] [ 6] [710889] +10:14:02 [ 12] [ 6] [101358] +10:14:02 [ 15] [ 4] [0320] +10:14:02 [ 18] [ 4] [6011] +10:14:02 [ 32] [ 6] [621354] +10:14:02 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:14:02 [ 37] [ 12] [507904719491] +10:14:02 [ 39] [ 2] [51] +10:14:02 [ 41] [ 8] [18001000] +10:14:02 [ 49] [ 3] [418] +10:14:02 [ 54] [ 0] [] +10:14:02 ============================================================================ +10:14:02 Sending to : +10:14:02 ============================================================================ +10:14:02 + + +waiting on router queue for slot.... +10:14:04 ============================================================================ +10:14:04 Slot Id : <12> +10:14:04 Transaction Type : RESPONSE +10:14:04 Received From : +10:14:04 ============================================================================ +10:14:04 FNo. Len. Field Value +10:14:04 ============================================================================ +10:14:04 [ 1] [ 4] [0210] +10:14:04 [ 2] [ 16] [6688990100954500] +10:14:04 [ 3] [ 6] [010000] +10:14:04 [ 4] [ 12] [000005000000] +10:14:04 [ 11] [ 6] [710889] +10:14:04 [ 12] [ 6] [101358] +10:14:04 [ 15] [ 4] [0320] +10:14:04 [ 18] [ 4] [6011] +10:14:04 [ 32] [ 6] [621354] +10:14:04 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:14:04 [ 37] [ 12] [507904719491] +10:14:04 [ 39] [ 2] [51] +10:14:04 [ 41] [ 8] [18001000] +10:14:04 [ 49] [ 3] [418] +10:14:04 [ 54] [ 0] [] +10:14:04 ============================================================================ +10:14:04 Calculate Source COMM Id = 0 +10:14:04 ============================================================================ +10:14:04 + + +waiting on router queue for slot.... +10:14:09 ============================================================================ +10:14:09 Slot Id : <16> +10:14:09 Transaction Type : REQUEST +10:14:09 Received From : +10:14:09 ============================================================================ +10:14:09 FNo. Len. Field Value +10:14:09 ============================================================================ +10:14:09 [ 1] [ 4] [0800] +10:14:09 [ 7] [ 10] [0320031317] +10:14:09 [ 11] [ 6] [155803] +10:14:09 [ 70] [ 3] [301] +10:14:09 ============================================================================ +10:14:09 + + +waiting on router queue for slot.... +10:14:09 Sending to : +10:14:09 ============================================================================ +10:14:09 ============================================================================ +10:14:09 Slot Id : <16> +10:14:09 Transaction Type : RESPONSE +10:14:09 Received From : +10:14:09 ============================================================================ +10:14:09 FNo. Len. Field Value +10:14:09 ============================================================================ +10:14:09 [ 1] [ 4] [0810] +10:14:09 [ 7] [ 10] [0320031317] +10:14:09 [ 11] [ 6] [155803] +10:14:09 [ 39] [ 2] [00] +10:14:09 [ 70] [ 3] [301] +10:14:09 ============================================================================ +10:14:09 Calculate Source COMM Id = 2 +10:14:09 ============================================================================ +10:14:09 + + +waiting on router queue for slot.... +10:14:20 ============================================================================ +10:14:20 Slot Id : <494> +10:14:20 Transaction Type : REQUEST +10:14:20 Received From : +10:14:20 ============================================================================ +10:14:20 FNo. Len. Field Value +10:14:20 ============================================================================ +10:14:20 [ 1] [ 4] [0800] +10:14:20 [ 7] [ 10] [0320031328] +10:14:20 [ 11] [ 6] [155804] +10:14:20 [ 70] [ 3] [301] +10:14:20 ============================================================================ +10:14:20 + + +waiting on router queue for slot.... +10:14:20 Sending to : +10:14:20 ============================================================================ +10:14:20 ============================================================================ +10:14:20 Slot Id : <494> +10:14:20 Transaction Type : RESPONSE +10:14:20 Received From : +10:14:20 ============================================================================ +10:14:20 FNo. Len. Field Value +10:14:20 ============================================================================ +10:14:20 [ 1] [ 4] [0810] +10:14:20 [ 7] [ 10] [0320031328] +10:14:20 [ 11] [ 6] [155804] +10:14:20 [ 39] [ 2] [00] +10:14:20 [ 70] [ 3] [301] +10:14:20 ============================================================================ +10:14:20 Calculate Source COMM Id = 2 +10:14:20 ============================================================================ +10:14:20 + + +waiting on router queue for slot.... +10:14:22 ============================================================================ +10:14:22 Slot Id : <491> +10:14:22 Transaction Type : REQUEST +10:14:22 Received From : +10:14:22 ============================================================================ +10:14:22 FNo. Len. Field Value +10:14:22 ============================================================================ +10:14:22 [ 1] [ 4] [0200] +10:14:22 [ 2] [ 16] [1808930800015711] +10:14:22 [ 3] [ 6] [301000] +10:14:22 [ 4] [ 12] [000000000000] +10:14:22 [ 7] [ 10] [0320101418] +10:14:22 [ 11] [ 6] [710963] +10:14:22 [ 12] [ 6] [101418] +10:14:22 [ 13] [ 4] [0320] +10:14:22 [ 15] [ 4] [0320] +10:14:22 [ 18] [ 4] [6011] +10:14:22 [ 22] [ 3] [900] +10:14:22 [ 25] [ 2] [02] +10:14:22 [ 28] [ 9] [D00000000] +10:14:22 [ 32] [ 6] [621354] +10:14:22 [ 35] [ 27] [1808930800015711=1803500797] +10:14:22 [ 37] [ 12] [507903032100] +10:14:22 [ 41] [ 8] [12002600] +10:14:22 [ 42] [ 15] [NATIVE ] +10:14:22 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +10:14:22 [ 49] [ 3] [418] +10:14:22 [ 52] [ 16] [E49A9C1484B829FC] +10:14:22 ============================================================================ +10:14:22 + + +waiting on router queue for slot.... +10:14:22 Sending to : +10:14:22 ============================================================================ +10:14:22 Sending to : +10:14:22 ============================================================================ +10:14:22 ============================================================================ +10:14:22 Slot Id : <491> +10:14:22 Transaction Type : REQUEST +10:14:22 Received From : +10:14:22 ============================================================================ +10:14:22 FNo. Len. Field Value +10:14:22 ============================================================================ +10:14:22 [ 1] [ 4] [0200] +10:14:22 [ 2] [ 16] [1808930800015711] +10:14:22 [ 3] [ 6] [301000] +10:14:22 [ 4] [ 12] [000000000000] +10:14:22 [ 7] [ 10] [0320101418] +10:14:22 [ 11] [ 6] [710963] +10:14:22 [ 12] [ 6] [101418] +10:14:22 [ 13] [ 4] [0320] +10:14:22 [ 15] [ 4] [0320] +10:14:22 [ 18] [ 4] [6011] +10:14:22 [ 22] [ 3] [900] +10:14:22 [ 25] [ 2] [02] +10:14:22 [ 28] [ 9] [D00000000] +10:14:22 [ 32] [ 6] [621354] +10:14:22 [ 35] [ 27] [1808930800015711=1803500797] +10:14:22 [ 37] [ 12] [507903032100] +10:14:22 [ 41] [ 8] [12002600] +10:14:22 [ 42] [ 15] [NATIVE ] +10:14:22 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +10:14:22 [ 49] [ 3] [418] +10:14:22 [ 52] [ 16] [E49A9C1484B829FC] +10:14:22 ============================================================================ +10:14:22 + + +waiting on router queue for slot.... +10:14:22 Sending to : +10:14:22 ============================================================================ +10:14:22 ============================================================================ +10:14:22 Slot Id : <491> +10:14:22 Transaction Type : REQUEST +10:14:22 Received From : +10:14:22 ============================================================================ +10:14:22 FNo. Len. Field Value +10:14:22 ============================================================================ +10:14:22 [ 1] [ 4] [0200] +10:14:22 [ 2] [ 16] [1808930800015711] +10:14:22 [ 3] [ 6] [301000] +10:14:22 [ 4] [ 12] [000000000000] +10:14:22 [ 7] [ 10] [0320101418] +10:14:22 [ 11] [ 6] [710963] +10:14:22 [ 12] [ 6] [101418] +10:14:22 [ 13] [ 4] [0320] +10:14:22 [ 15] [ 4] [0320] +10:14:22 [ 18] [ 4] [6011] +10:14:22 [ 22] [ 3] [900] +10:14:22 [ 25] [ 2] [02] +10:14:22 [ 28] [ 9] [D00000000] +10:14:22 [ 32] [ 6] [621354] +10:14:22 [ 35] [ 27] [1808930800015711=1803500797] +10:14:22 [ 37] [ 12] [507903032100] +10:14:22 [ 41] [ 8] [12002600] +10:14:22 [ 42] [ 15] [NATIVE ] +10:14:22 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +10:14:22 [ 49] [ 3] [418] +10:14:22 [ 52] [ 16] [27224AA84DF4E2B6] +10:14:22 ============================================================================ +10:14:22 + + +waiting on router queue for slot.... +10:14:22 Sending to : <2> +10:14:22 ============================================================================ +10:14:24 ============================================================================ +10:14:24 Slot Id : <22> +10:14:24 Transaction Type : REQUEST +10:14:24 Received From : +10:14:24 ============================================================================ +10:14:24 FNo. Len. Field Value +10:14:24 ============================================================================ +10:14:24 [ 1] [ 4] [0800] +10:14:24 [ 7] [ 10] [0320172613] +10:14:24 [ 11] [ 6] [102613] +10:14:24 [ 37] [ 12] [57910102613] +10:14:24 [ 70] [ 3] [301] +10:14:24 ============================================================================ +10:14:24 + + +waiting on router queue for slot.... +10:14:24 Sending to : +10:14:24 ============================================================================ +10:14:24 ============================================================================ +10:14:24 Slot Id : <22> +10:14:24 Transaction Type : RESPONSE +10:14:24 Received From : +10:14:24 ============================================================================ +10:14:24 FNo. Len. Field Value +10:14:24 ============================================================================ +10:14:24 [ 1] [ 4] [0810] +10:14:24 [ 7] [ 10] [0320172613] +10:14:24 [ 11] [ 6] [102613] +10:14:24 [ 37] [ 12] [579101026130] +10:14:24 [ 39] [ 2] [00] +10:14:24 [ 70] [ 3] [810] +10:14:24 ============================================================================ +10:14:24 Calculate Source COMM Id = 6 +10:14:24 ============================================================================ +10:14:24 + + +waiting on router queue for slot.... +10:14:25 ============================================================================ +10:14:25 Slot Id : <469> +10:14:25 Transaction Type : REQUEST +10:14:25 Received From : +10:14:25 ============================================================================ +10:14:25 FNo. Len. Field Value +10:14:25 ============================================================================ +10:14:25 [ 1] [ 4] [0800] +10:14:25 [ 2] [ 5] [02531] +10:14:25 [ 3] [ 6] [579108] +10:14:25 [ 7] [ 10] [0320031425] +10:14:25 [ 11] [ 6] [807006] +10:14:25 [ 15] [ 10] [0320031425] +10:14:25 [ 37] [ 11] [57910807006] +10:14:25 [ 70] [ 3] [001] +10:14:25 ============================================================================ +10:14:25 + + +waiting on router queue for slot.... +10:14:25 ============================================================================ +10:14:25 Slot Id : <469> +10:14:25 Transaction Type : RESPONSE +10:14:25 Received From : +10:14:25 ============================================================================ +10:14:25 FNo. Len. Field Value +10:14:25 ============================================================================ +10:14:25 [ 1] [ 4] [0810] +10:14:25 [ 7] [ 10] [0320031425] +10:14:25 [ 11] [ 6] [807006] +10:14:25 [ 15] [ 4] [0320] +10:14:25 [ 37] [ 12] [57910807006] +10:14:25 [ 39] [ 2] [00] +10:14:25 [ 70] [ 3] [001] +10:14:25 ============================================================================ +10:14:25 Sending to : +10:14:25 ============================================================================ +10:14:25 + + +waiting on router queue for slot.... +10:14:25 ============================================================================ +10:14:25 Slot Id : <491> +10:14:25 Transaction Type : RESPONSE +10:14:25 Received From : +10:14:25 ============================================================================ +10:14:25 FNo. Len. Field Value +10:14:25 ============================================================================ +10:14:25 [ 1] [ 4] [0210] +10:14:25 [ 2] [ 16] [1808930800015711] +10:14:25 [ 3] [ 6] [301000] +10:14:25 [ 7] [ 10] [0320101418] +10:14:25 [ 11] [ 6] [710963] +10:14:25 [ 12] [ 6] [101418] +10:14:25 [ 13] [ 4] [0320] +10:14:25 [ 14] [ 4] [1803] +10:14:25 [ 19] [ 3] [418] +10:14:25 [ 32] [ 6] [621354] +10:14:25 [ 37] [ 12] [507903032100] +10:14:25 [ 38] [ 6] [710963] +10:14:25 [ 39] [ 2] [00] +10:14:25 [ 41] [ 8] [12002600] +10:14:25 [ 49] [ 3] [418] +10:14:25 [ 52] [ 16] [27224AA84DF4E2B6] +10:14:25 [ 54] [ 20] [1002418C000233343400] +10:14:25 ============================================================================ +10:14:25 Sending to : +10:14:25 ============================================================================ +10:14:25 + + +waiting on router queue for slot.... +10:14:25 ============================================================================ +10:14:25 Slot Id : <17> +10:14:25 Transaction Type : REQUEST +10:14:25 Received From : +10:14:25 ============================================================================ +10:14:25 FNo. Len. Field Value +10:14:25 ============================================================================ +10:14:25 [ 1] [ 4] [0200] +10:14:25 [ 2] [ 16] [1808931800012633] +10:14:25 [ 3] [ 6] [011000] +10:14:25 [ 4] [ 12] [000100000000] +10:14:25 [ 7] [ 10] [0320101421] +10:14:25 [ 11] [ 6] [710977] +10:14:25 [ 12] [ 6] [101421] +10:14:25 [ 13] [ 4] [0320] +10:14:25 [ 15] [ 4] [0320] +10:14:25 [ 18] [ 4] [6011] +10:14:25 [ 22] [ 3] [900] +10:14:25 [ 25] [ 2] [02] +10:14:25 [ 28] [ 9] [D00002000] +10:14:25 [ 32] [ 6] [621354] +10:14:25 [ 35] [ 27] [1808931800012633=1803500869] +10:14:25 [ 37] [ 12] [507904635525] +10:14:25 [ 41] [ 8] [17000800] +10:14:25 [ 42] [ 15] [NATIVE ] +10:14:25 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:14:25 [ 49] [ 3] [418] +10:14:25 [ 52] [ 16] [D001A708DB431E39] +10:14:25 ============================================================================ +10:14:25 + + +waiting on router queue for slot.... +10:14:25 Sending to : +10:14:25 ============================================================================ +10:14:25 Sending to : +10:14:25 ============================================================================ +10:14:25 ============================================================================ +10:14:25 Slot Id : <17> +10:14:25 Transaction Type : REQUEST +10:14:25 Received From : +10:14:25 ============================================================================ +10:14:25 FNo. Len. Field Value +10:14:25 ============================================================================ +10:14:25 [ 1] [ 4] [0200] +10:14:25 [ 2] [ 16] [1808931800012633] +10:14:25 [ 3] [ 6] [011000] +10:14:25 [ 4] [ 12] [000100000000] +10:14:25 [ 7] [ 10] [0320101421] +10:14:25 [ 11] [ 6] [710977] +10:14:25 [ 12] [ 6] [101421] +10:14:25 [ 13] [ 4] [0320] +10:14:25 [ 15] [ 4] [0320] +10:14:25 [ 18] [ 4] [6011] +10:14:25 [ 22] [ 3] [900] +10:14:25 [ 25] [ 2] [02] +10:14:25 [ 28] [ 9] [D00002000] +10:14:25 [ 32] [ 6] [621354] +10:14:25 [ 35] [ 27] [1808931800012633=1803500869] +10:14:25 [ 37] [ 12] [507904635525] +10:14:25 [ 41] [ 8] [17000800] +10:14:25 [ 42] [ 15] [NATIVE ] +10:14:25 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:14:25 [ 49] [ 3] [418] +10:14:25 [ 52] [ 16] [D001A708DB431E39] +10:14:25 ============================================================================ +10:14:25 + + +waiting on router queue for slot.... +10:14:25 Sending to : +10:14:25 ============================================================================ +10:14:25 ============================================================================ +10:14:25 Slot Id : <17> +10:14:25 Transaction Type : REQUEST +10:14:25 Received From : +10:14:25 ============================================================================ +10:14:25 FNo. Len. Field Value +10:14:25 ============================================================================ +10:14:25 [ 1] [ 4] [0200] +10:14:25 [ 2] [ 16] [1808931800012633] +10:14:25 [ 3] [ 6] [011000] +10:14:25 [ 4] [ 12] [000100000000] +10:14:25 [ 7] [ 10] [0320101421] +10:14:25 [ 11] [ 6] [710977] +10:14:25 [ 12] [ 6] [101421] +10:14:25 [ 13] [ 4] [0320] +10:14:25 [ 15] [ 4] [0320] +10:14:25 [ 18] [ 4] [6011] +10:14:25 [ 22] [ 3] [900] +10:14:25 [ 25] [ 2] [02] +10:14:25 [ 28] [ 9] [D00002000] +10:14:25 [ 32] [ 6] [621354] +10:14:25 [ 35] [ 27] [1808931800012633=1803500869] +10:14:25 [ 37] [ 12] [507904635525] +10:14:25 [ 41] [ 8] [17000800] +10:14:25 [ 42] [ 15] [NATIVE ] +10:14:25 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:14:25 [ 49] [ 3] [418] +10:14:25 [ 52] [ 16] [185F0AE7E71C5FC8] +10:14:25 ============================================================================ +10:14:25 + + +waiting on router queue for slot.... +10:14:25 Sending to : <2> +10:14:25 ============================================================================ +10:14:26 ============================================================================ +10:14:26 Slot Id : <491> +10:14:26 Transaction Type : RESPONSE +10:14:26 Received From : +10:14:26 ============================================================================ +10:14:26 FNo. Len. Field Value +10:14:26 ============================================================================ +10:14:26 [ 1] [ 4] [0210] +10:14:26 [ 2] [ 16] [1808930800015711] +10:14:26 [ 3] [ 6] [301000] +10:14:26 [ 7] [ 10] [0320101418] +10:14:26 [ 11] [ 6] [710963] +10:14:26 [ 12] [ 6] [101418] +10:14:26 [ 13] [ 4] [0320] +10:14:26 [ 14] [ 4] [1803] +10:14:26 [ 19] [ 3] [418] +10:14:26 [ 32] [ 6] [621354] +10:14:26 [ 37] [ 12] [507903032100] +10:14:26 [ 38] [ 6] [710963] +10:14:26 [ 39] [ 2] [00] +10:14:26 [ 41] [ 8] [12002600] +10:14:26 [ 49] [ 3] [418] +10:14:26 [ 52] [ 16] [27224AA84DF4E2B6] +10:14:26 [ 54] [ 20] [1002418C000233343400] +10:14:26 ============================================================================ +10:14:26 Calculate Source COMM Id = 0 +10:14:26 ============================================================================ +10:14:26 + + +waiting on router queue for slot.... +10:14:33 ============================================================================ +10:14:33 Slot Id : <17> +10:14:33 Transaction Type : RESPONSE +10:14:33 Received From : +10:14:33 ============================================================================ +10:14:33 FNo. Len. Field Value +10:14:33 ============================================================================ +10:14:33 [ 1] [ 4] [0210] +10:14:33 [ 2] [ 16] [1808931800012633] +10:14:33 [ 3] [ 6] [011000] +10:14:33 [ 4] [ 12] [000100000000] +10:14:33 [ 6] [ 12] [000100000000] +10:14:33 [ 7] [ 10] [0320101421] +10:14:33 [ 11] [ 6] [710977] +10:14:33 [ 12] [ 6] [101421] +10:14:33 [ 13] [ 4] [0320] +10:14:33 [ 18] [ 4] [6011] +10:14:33 [ 19] [ 3] [418] +10:14:33 [ 22] [ 3] [021] +10:14:33 [ 32] [ 6] [621354] +10:14:33 [ 35] [ 27] [1808931800012633=1803500869] +10:14:33 [ 37] [ 12] [507904635525] +10:14:33 [ 38] [ 6] [710977] +10:14:33 [ 39] [ 2] [00] +10:14:33 [ 41] [ 8] [17000800] +10:14:33 [ 49] [ 3] [418] +10:14:33 [ 52] [ 16] [185F0AE7E71C5FC8] +10:14:33 [ 54] [ 20] [1001418C000025455100] +10:14:33 ============================================================================ +10:14:33 Sending to : +10:14:33 ============================================================================ +10:14:33 + + +waiting on router queue for slot.... +10:14:34 ============================================================================ +10:14:34 Slot Id : <17> +10:14:34 Transaction Type : RESPONSE +10:14:34 Received From : +10:14:34 ============================================================================ +10:14:34 FNo. Len. Field Value +10:14:34 ============================================================================ +10:14:34 [ 1] [ 4] [0210] +10:14:34 [ 2] [ 16] [1808931800012633] +10:14:34 [ 3] [ 6] [011000] +10:14:34 [ 4] [ 12] [000100000000] +10:14:34 [ 6] [ 12] [000100000000] +10:14:34 [ 7] [ 10] [0320101421] +10:14:34 [ 11] [ 6] [710977] +10:14:34 [ 12] [ 6] [101421] +10:14:34 [ 13] [ 4] [0320] +10:14:34 [ 18] [ 4] [6011] +10:14:34 [ 19] [ 3] [418] +10:14:34 [ 22] [ 3] [021] +10:14:34 [ 32] [ 6] [621354] +10:14:34 [ 35] [ 27] [1808931800012633=1803500869] +10:14:34 [ 37] [ 12] [507904635525] +10:14:34 [ 38] [ 6] [710977] +10:14:34 [ 39] [ 2] [00] +10:14:34 [ 41] [ 8] [17000800] +10:14:34 [ 49] [ 3] [418] +10:14:34 [ 52] [ 16] [185F0AE7E71C5FC8] +10:14:34 [ 54] [ 20] [1001418C000025455100] +10:14:34 ============================================================================ +10:14:34 Calculate Source COMM Id = 0 +10:14:34 ============================================================================ +10:14:34 + + +waiting on router queue for slot.... +10:14:36 ============================================================================ +10:14:36 Slot Id : <499> +10:14:36 Transaction Type : REQUEST +10:14:36 Received From : +10:14:36 ============================================================================ +10:14:36 FNo. Len. Field Value +10:14:36 ============================================================================ +10:14:36 [ 1] [ 4] [0800] +10:14:36 [ 7] [ 10] [0320031344] +10:14:36 [ 11] [ 6] [155805] +10:14:36 [ 70] [ 3] [301] +10:14:36 ============================================================================ +10:14:36 + + +waiting on router queue for slot.... +10:14:36 Sending to : +10:14:36 ============================================================================ +10:14:36 ============================================================================ +10:14:36 Slot Id : <499> +10:14:36 Transaction Type : RESPONSE +10:14:36 Received From : +10:14:36 ============================================================================ +10:14:36 FNo. Len. Field Value +10:14:36 ============================================================================ +10:14:36 [ 1] [ 4] [0810] +10:14:36 [ 7] [ 10] [0320031344] +10:14:36 [ 11] [ 6] [155805] +10:14:36 [ 39] [ 2] [00] +10:14:36 [ 70] [ 3] [301] +10:14:36 ============================================================================ +10:14:36 Calculate Source COMM Id = 2 +10:14:36 ============================================================================ +10:14:36 + + +waiting on router queue for slot.... +10:14:43 ============================================================================ +10:14:43 Slot Id : <31> +10:14:43 Transaction Type : REQUEST +10:14:43 Received From : +10:14:43 ============================================================================ +10:14:43 FNo. Len. Field Value +10:14:43 ============================================================================ +10:14:43 [ 1] [ 4] [0200] +10:14:43 [ 2] [ 16] [6213545000865844] +10:14:43 [ 3] [ 6] [010000] +10:14:43 [ 4] [ 12] [000010000000] +10:14:43 [ 7] [ 10] [0320102230] +10:14:43 [ 11] [ 6] [079067] +10:14:43 [ 12] [ 6] [102230] +10:14:43 [ 13] [ 4] [0320] +10:14:43 [ 14] [ 4] [4912] +10:14:43 [ 15] [ 4] [0320] +10:14:43 [ 18] [ 4] [6011] +10:14:43 [ 22] [ 3] [900] +10:14:43 [ 25] [ 2] [02] +10:14:43 [ 28] [ 9] [D00002000] +10:14:43 [ 32] [ 6] [220699] +10:14:43 [ 35] [ 32] [6213545000865844=491212016584760] +10:14:43 [ 37] [ 12] [507900132946] +10:14:43 [ 41] [ 8] [03000100] +10:14:43 [ 42] [ 15] [APTRA ] +10:14:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:14:43 [ 49] [ 3] [418] +10:14:43 [ 52] [ 16] [0D29894A01BA6764] +10:14:43 ============================================================================ +10:14:43 + + +waiting on router queue for slot.... +10:14:43 Sending to : +10:14:43 ============================================================================ +10:14:43 Sending to : +10:14:43 ============================================================================ +10:14:43 ============================================================================ +10:14:43 Slot Id : <31> +10:14:43 Transaction Type : REQUEST +10:14:43 Received From : +10:14:43 ============================================================================ +10:14:43 FNo. Len. Field Value +10:14:43 ============================================================================ +10:14:43 [ 1] [ 4] [0200] +10:14:43 [ 2] [ 16] [6213545000865844] +10:14:43 [ 3] [ 6] [010000] +10:14:43 [ 4] [ 12] [000010000000] +10:14:43 [ 7] [ 10] [0320102230] +10:14:43 [ 11] [ 6] [079067] +10:14:43 [ 12] [ 6] [102230] +10:14:43 [ 13] [ 4] [0320] +10:14:43 [ 14] [ 4] [4912] +10:14:43 [ 15] [ 4] [0320] +10:14:43 [ 18] [ 4] [6011] +10:14:43 [ 22] [ 3] [900] +10:14:43 [ 25] [ 2] [02] +10:14:43 [ 28] [ 9] [D00002000] +10:14:43 [ 32] [ 6] [220699] +10:14:43 [ 35] [ 32] [6213545000865844=491212016584760] +10:14:43 [ 37] [ 12] [507900132946] +10:14:43 [ 41] [ 8] [03000100] +10:14:43 [ 42] [ 15] [APTRA ] +10:14:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:14:43 [ 49] [ 3] [418] +10:14:43 [ 52] [ 16] [0D29894A01BA6764] +10:14:43 ============================================================================ +10:14:43 + + +waiting on router queue for slot.... +10:14:43 Sending to : +10:14:43 ============================================================================ +10:14:43 ============================================================================ +10:14:43 Slot Id : <31> +10:14:43 Transaction Type : REQUEST +10:14:43 Received From : +10:14:43 ============================================================================ +10:14:43 FNo. Len. Field Value +10:14:43 ============================================================================ +10:14:43 [ 1] [ 4] [0200] +10:14:43 [ 2] [ 16] [6213545000865844] +10:14:43 [ 3] [ 6] [010000] +10:14:43 [ 4] [ 12] [000010000000] +10:14:43 [ 7] [ 10] [0320102230] +10:14:43 [ 11] [ 6] [079067] +10:14:43 [ 12] [ 6] [102230] +10:14:43 [ 13] [ 4] [0320] +10:14:43 [ 14] [ 4] [4912] +10:14:43 [ 15] [ 4] [0320] +10:14:43 [ 18] [ 4] [6011] +10:14:43 [ 22] [ 3] [900] +10:14:43 [ 25] [ 2] [02] +10:14:43 [ 28] [ 9] [D00002000] +10:14:43 [ 32] [ 6] [220699] +10:14:43 [ 35] [ 32] [6213545000865844=491212016584760] +10:14:43 [ 37] [ 12] [507900132946] +10:14:43 [ 41] [ 8] [03000100] +10:14:43 [ 42] [ 15] [APTRA ] +10:14:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:14:43 [ 49] [ 3] [418] +10:14:43 [ 52] [ 16] [2D5FECF374890CD7] +10:14:43 ============================================================================ +10:14:43 + + +waiting on router queue for slot.... +10:14:43 Sending to : <0> +10:14:43 ============================================================================ +10:14:43 ============================================================================ +10:14:43 Slot Id : <31> +10:14:43 Transaction Type : RESPONSE +10:14:43 Received From : +10:14:43 ============================================================================ +10:14:43 FNo. Len. Field Value +10:14:43 ============================================================================ +10:14:43 [ 1] [ 4] [0210] +10:14:43 [ 2] [ 16] [6213545000865844] +10:14:43 [ 3] [ 6] [010000] +10:14:43 [ 4] [ 12] [000010000000] +10:14:43 [ 7] [ 10] [0320102230] +10:14:43 [ 11] [ 6] [079067] +10:14:43 [ 12] [ 6] [102230] +10:14:43 [ 13] [ 4] [0320] +10:14:43 [ 15] [ 4] [0320] +10:14:43 [ 18] [ 4] [6011] +10:14:43 [ 32] [ 6] [220699] +10:14:43 [ 35] [ 32] [6213545000865844=491212016584760] +10:14:43 [ 37] [ 12] [507900132946] +10:14:43 [ 38] [ 6] [079067] +10:14:43 [ 39] [ 2] [51] +10:14:43 [ 41] [ 8] [03000100] +10:14:43 [ 49] [ 3] [418] +10:14:43 [ 54] [ 40] [0001418C0000055361250002418C000005536125] +10:14:43 ============================================================================ +10:14:43 Sending to : +10:14:43 ============================================================================ +10:14:43 + + +waiting on router queue for slot.... +10:14:45 ============================================================================ +10:14:45 Slot Id : <31> +10:14:45 Transaction Type : RESPONSE +10:14:45 Received From : +10:14:45 ============================================================================ +10:14:45 FNo. Len. Field Value +10:14:45 ============================================================================ +10:14:45 [ 1] [ 4] [0210] +10:14:45 [ 2] [ 16] [6213545000865844] +10:14:45 [ 3] [ 6] [010000] +10:14:45 [ 4] [ 12] [000010000000] +10:14:45 [ 7] [ 10] [0320102230] +10:14:45 [ 11] [ 6] [079067] +10:14:45 [ 12] [ 6] [102230] +10:14:45 [ 13] [ 4] [0320] +10:14:45 [ 15] [ 4] [0320] +10:14:45 [ 18] [ 4] [6011] +10:14:45 [ 32] [ 6] [220699] +10:14:45 [ 35] [ 32] [6213545000865844=491212016584760] +10:14:45 [ 37] [ 12] [507900132946] +10:14:45 [ 38] [ 6] [079067] +10:14:45 [ 39] [ 2] [51] +10:14:45 [ 41] [ 8] [03000100] +10:14:45 [ 49] [ 3] [418] +10:14:45 [ 54] [ 40] [0001418C0000055361250002418C000005536125] +10:14:45 ============================================================================ +10:14:45 Calculate Source COMM Id = 1 +10:14:45 ============================================================================ +10:14:45 + + +waiting on router queue for slot.... +10:14:48 ============================================================================ +10:14:48 Slot Id : <481> +10:14:48 Transaction Type : REQUEST +10:14:48 Received From : +10:14:48 ============================================================================ +10:14:48 FNo. Len. Field Value +10:14:48 ============================================================================ +10:14:48 [ 1] [ 4] [0200] +10:14:48 [ 2] [ 16] [6213544001113924] +10:14:48 [ 3] [ 6] [011000] +10:14:48 [ 4] [ 12] [000045000000] +10:14:48 [ 7] [ 10] [0320102236] +10:14:48 [ 11] [ 6] [251131] +10:14:48 [ 12] [ 6] [102236] +10:14:48 [ 13] [ 4] [0320] +10:14:48 [ 14] [ 4] [4912] +10:14:48 [ 15] [ 4] [0320] +10:14:48 [ 18] [ 4] [6011] +10:14:48 [ 22] [ 3] [900] +10:14:48 [ 25] [ 2] [02] +10:14:48 [ 28] [ 9] [D00002000] +10:14:48 [ 32] [ 6] [220699] +10:14:48 [ 35] [ 32] [6213544001113924=491212011392613] +10:14:48 [ 37] [ 12] [507900336143] +10:14:48 [ 41] [ 8] [01001900] +10:14:48 [ 42] [ 15] [APTRA ] +10:14:48 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:14:48 [ 49] [ 3] [418] +10:14:48 [ 52] [ 16] [23F915CAABE1F619] +10:14:48 ============================================================================ +10:14:48 + + +waiting on router queue for slot.... +10:14:48 Sending to : +10:14:48 ============================================================================ +10:14:48 Sending to : +10:14:48 ============================================================================ +10:14:49 ============================================================================ +10:14:49 Slot Id : <481> +10:14:49 Transaction Type : REQUEST +10:14:49 Received From : +10:14:49 ============================================================================ +10:14:49 FNo. Len. Field Value +10:14:49 ============================================================================ +10:14:49 [ 1] [ 4] [0200] +10:14:49 [ 2] [ 16] [6213544001113924] +10:14:49 [ 3] [ 6] [011000] +10:14:49 [ 4] [ 12] [000045000000] +10:14:49 [ 7] [ 10] [0320102236] +10:14:49 [ 11] [ 6] [251131] +10:14:49 [ 12] [ 6] [102236] +10:14:49 [ 13] [ 4] [0320] +10:14:49 [ 14] [ 4] [4912] +10:14:49 [ 15] [ 4] [0320] +10:14:49 [ 18] [ 4] [6011] +10:14:49 [ 22] [ 3] [900] +10:14:49 [ 25] [ 2] [02] +10:14:49 [ 28] [ 9] [D00002000] +10:14:49 [ 32] [ 6] [220699] +10:14:49 [ 35] [ 32] [6213544001113924=491212011392613] +10:14:49 [ 37] [ 12] [507900336143] +10:14:49 [ 41] [ 8] [01001900] +10:14:49 [ 42] [ 15] [APTRA ] +10:14:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:14:49 [ 49] [ 3] [418] +10:14:49 [ 52] [ 16] [23F915CAABE1F619] +10:14:49 ============================================================================ +10:14:49 + + +waiting on router queue for slot.... +10:14:49 Sending to : +10:14:49 ============================================================================ +10:14:49 ============================================================================ +10:14:49 Slot Id : <481> +10:14:49 Transaction Type : REQUEST +10:14:49 Received From : +10:14:49 ============================================================================ +10:14:49 FNo. Len. Field Value +10:14:49 ============================================================================ +10:14:49 [ 1] [ 4] [0200] +10:14:49 [ 2] [ 16] [6213544001113924] +10:14:49 [ 3] [ 6] [011000] +10:14:49 [ 4] [ 12] [000045000000] +10:14:49 [ 7] [ 10] [0320102236] +10:14:49 [ 11] [ 6] [251131] +10:14:49 [ 12] [ 6] [102236] +10:14:49 [ 13] [ 4] [0320] +10:14:49 [ 14] [ 4] [4912] +10:14:49 [ 15] [ 4] [0320] +10:14:49 [ 18] [ 4] [6011] +10:14:49 [ 22] [ 3] [900] +10:14:49 [ 25] [ 2] [02] +10:14:49 [ 28] [ 9] [D00002000] +10:14:49 [ 32] [ 6] [220699] +10:14:49 [ 35] [ 32] [6213544001113924=491212011392613] +10:14:49 [ 37] [ 12] [507900336143] +10:14:49 [ 41] [ 8] [01001900] +10:14:49 [ 42] [ 15] [APTRA ] +10:14:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:14:49 [ 49] [ 3] [418] +10:14:49 [ 52] [ 16] [9521EA64848F6FCB] +10:14:49 ============================================================================ +10:14:49 + + +waiting on router queue for slot.... +10:14:49 Sending to : <0> +10:14:49 ============================================================================ +10:14:49 ============================================================================ +10:14:49 Slot Id : <10> +10:14:49 Transaction Type : REQUEST +10:14:49 Received From : +10:14:49 ============================================================================ +10:14:49 FNo. Len. Field Value +10:14:49 ============================================================================ +10:14:49 [ 1] [ 4] [0800] +10:14:49 [ 7] [ 10] [0320031356] +10:14:49 [ 11] [ 6] [155806] +10:14:49 [ 70] [ 3] [301] +10:14:49 ============================================================================ +10:14:49 + + +waiting on router queue for slot.... +10:14:49 Sending to : +10:14:49 ============================================================================ +10:14:49 ============================================================================ +10:14:49 Slot Id : <10> +10:14:49 Transaction Type : RESPONSE +10:14:49 Received From : +10:14:49 ============================================================================ +10:14:49 FNo. Len. Field Value +10:14:49 ============================================================================ +10:14:49 [ 1] [ 4] [0810] +10:14:49 [ 7] [ 10] [0320031356] +10:14:49 [ 11] [ 6] [155806] +10:14:49 [ 39] [ 2] [00] +10:14:49 [ 70] [ 3] [301] +10:14:49 ============================================================================ +10:14:49 Calculate Source COMM Id = 2 +10:14:49 ============================================================================ +10:14:49 + + +waiting on router queue for slot.... +10:14:49 ============================================================================ +10:14:49 Slot Id : <3> +10:14:49 Transaction Type : REQUEST +10:14:49 Received From : +10:14:49 ============================================================================ +10:14:49 FNo. Len. Field Value +10:14:49 ============================================================================ +10:14:49 [ 1] [ 4] [0200] +10:14:49 [ 2] [ 16] [6688990104798606] +10:14:49 [ 3] [ 6] [011000] +10:14:49 [ 4] [ 12] [000020000000] +10:14:49 [ 7] [ 10] [0320101445] +10:14:49 [ 11] [ 6] [711075] +10:14:49 [ 12] [ 6] [101445] +10:14:49 [ 13] [ 4] [0320] +10:14:49 [ 15] [ 4] [0320] +10:14:49 [ 18] [ 4] [6011] +10:14:49 [ 22] [ 3] [900] +10:14:49 [ 25] [ 2] [02] +10:14:49 [ 28] [ 9] [D00002000] +10:14:49 [ 32] [ 6] [621354] +10:14:49 [ 35] [ 37] [6688990104798606=43051231860602900000] +10:14:49 [ 37] [ 12] [507902508267] +10:14:49 [ 41] [ 8] [05003300] +10:14:49 [ 42] [ 15] [NATIVE ] +10:14:49 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +10:14:49 [ 49] [ 3] [418] +10:14:49 [ 52] [ 16] [11BA596D2A1D30C1] +10:14:49 ============================================================================ +10:14:49 + + +waiting on router queue for slot.... +10:14:49 Sending to : +10:14:49 ============================================================================ +10:14:49 Sending to : +10:14:49 ============================================================================ +10:14:49 ============================================================================ +10:14:49 Slot Id : <481> +10:14:49 Transaction Type : RESPONSE +10:14:49 Received From : +10:14:49 ============================================================================ +10:14:49 FNo. Len. Field Value +10:14:49 ============================================================================ +10:14:49 [ 1] [ 4] [0210] +10:14:49 [ 2] [ 16] [6213544001113924] +10:14:49 [ 3] [ 6] [011000] +10:14:49 [ 4] [ 12] [000045000000] +10:14:49 [ 7] [ 10] [0320102236] +10:14:49 [ 11] [ 6] [251131] +10:14:49 [ 12] [ 6] [102236] +10:14:49 [ 13] [ 4] [0320] +10:14:49 [ 15] [ 4] [0320] +10:14:49 [ 18] [ 4] [6011] +10:14:49 [ 32] [ 6] [220699] +10:14:49 [ 35] [ 32] [6213544001113924=491212011392613] +10:14:49 [ 37] [ 12] [507900336143] +10:14:49 [ 38] [ 6] [077862] +10:14:49 [ 39] [ 2] [00] +10:14:49 [ 41] [ 8] [01001900] +10:14:49 [ 49] [ 3] [418] +10:14:49 [ 54] [ 40] [1001418C0000087561871002418C000008756187] +10:14:49 ============================================================================ +10:14:49 Sending to : +10:14:49 ============================================================================ +10:14:49 + + +waiting on router queue for slot.... +10:14:49 ============================================================================ +10:14:49 Slot Id : <3> +10:14:49 Transaction Type : REQUEST +10:14:49 Received From : +10:14:49 ============================================================================ +10:14:49 FNo. Len. Field Value +10:14:49 ============================================================================ +10:14:49 [ 1] [ 4] [0200] +10:14:49 [ 2] [ 16] [6688990104798606] +10:14:49 [ 3] [ 6] [011000] +10:14:49 [ 4] [ 12] [000020000000] +10:14:49 [ 7] [ 10] [0320101445] +10:14:49 [ 11] [ 6] [711075] +10:14:49 [ 12] [ 6] [101445] +10:14:49 [ 13] [ 4] [0320] +10:14:49 [ 15] [ 4] [0320] +10:14:49 [ 18] [ 4] [6011] +10:14:49 [ 22] [ 3] [900] +10:14:49 [ 25] [ 2] [02] +10:14:49 [ 28] [ 9] [D00002000] +10:14:49 [ 32] [ 6] [621354] +10:14:49 [ 35] [ 37] [6688990104798606=43051231860602900000] +10:14:49 [ 37] [ 12] [507902508267] +10:14:49 [ 41] [ 8] [05003300] +10:14:49 [ 42] [ 15] [NATIVE ] +10:14:49 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +10:14:49 [ 49] [ 3] [418] +10:14:49 [ 52] [ 16] [11BA596D2A1D30C1] +10:14:49 ============================================================================ +10:14:49 + + +waiting on router queue for slot.... +10:14:49 Sending to : +10:14:49 ============================================================================ +10:14:49 ============================================================================ +10:14:49 Slot Id : <3> +10:14:49 Transaction Type : REQUEST +10:14:49 Received From : +10:14:49 ============================================================================ +10:14:49 FNo. Len. Field Value +10:14:49 ============================================================================ +10:14:49 [ 1] [ 4] [0200] +10:14:49 [ 2] [ 16] [6688990104798606] +10:14:49 [ 3] [ 6] [011000] +10:14:49 [ 4] [ 12] [000020000000] +10:14:49 [ 7] [ 10] [0320101445] +10:14:49 [ 11] [ 6] [711075] +10:14:49 [ 12] [ 6] [101445] +10:14:49 [ 13] [ 4] [0320] +10:14:49 [ 15] [ 4] [0320] +10:14:49 [ 18] [ 4] [6011] +10:14:49 [ 22] [ 3] [900] +10:14:49 [ 25] [ 2] [02] +10:14:49 [ 28] [ 9] [D00002000] +10:14:49 [ 32] [ 6] [621354] +10:14:49 [ 35] [ 37] [6688990104798606=43051231860602900000] +10:14:49 [ 37] [ 12] [507902508267] +10:14:49 [ 41] [ 8] [05003300] +10:14:49 [ 42] [ 15] [NATIVE ] +10:14:49 [ 43] [ 40] [FINANCE SCHOOL LuangprabangLAO] +10:14:49 [ 49] [ 3] [418] +10:14:49 [ 52] [ 16] [CBE2F9BB535C4DC5] +10:14:49 ============================================================================ +10:14:49 + + +waiting on router queue for slot.... +10:14:49 Sending to : <4> +10:14:49 ============================================================================ +10:14:51 ============================================================================ +10:14:51 Slot Id : <23> +10:14:51 Transaction Type : REQUEST +10:14:51 Received From : +10:14:51 ============================================================================ +10:14:51 FNo. Len. Field Value +10:14:51 ============================================================================ +10:14:51 [ 1] [ 4] [0200] +10:14:51 [ 2] [ 16] [6688990100954500] +10:14:51 [ 3] [ 6] [010000] +10:14:51 [ 4] [ 12] [000020000000] +10:14:51 [ 7] [ 10] [0320101447] +10:14:51 [ 11] [ 6] [711086] +10:14:51 [ 12] [ 6] [101447] +10:14:51 [ 13] [ 4] [0320] +10:14:51 [ 15] [ 4] [0320] +10:14:51 [ 18] [ 4] [6011] +10:14:51 [ 22] [ 3] [900] +10:14:51 [ 25] [ 2] [02] +10:14:51 [ 28] [ 9] [D00002000] +10:14:51 [ 32] [ 6] [621354] +10:14:51 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:14:51 [ 37] [ 12] [507904719493] +10:14:51 [ 41] [ 8] [18001000] +10:14:51 [ 42] [ 15] [NATIVE ] +10:14:51 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:14:51 [ 49] [ 3] [418] +10:14:51 [ 52] [ 16] [A3392CBD0AD7636A] +10:14:51 ============================================================================ +10:14:51 + + +waiting on router queue for slot.... +10:14:51 Sending to : +10:14:51 ============================================================================ +10:14:51 Sending to : +10:14:51 ============================================================================ +10:14:51 ============================================================================ +10:14:51 Slot Id : <481> +10:14:51 Transaction Type : RESPONSE +10:14:51 Received From : +10:14:51 ============================================================================ +10:14:51 FNo. Len. Field Value +10:14:51 ============================================================================ +10:14:51 [ 1] [ 4] [0210] +10:14:51 [ 2] [ 16] [6213544001113924] +10:14:51 [ 3] [ 6] [011000] +10:14:51 [ 4] [ 12] [000045000000] +10:14:51 [ 7] [ 10] [0320102236] +10:14:51 [ 11] [ 6] [251131] +10:14:51 [ 12] [ 6] [102236] +10:14:51 [ 13] [ 4] [0320] +10:14:51 [ 15] [ 4] [0320] +10:14:51 [ 18] [ 4] [6011] +10:14:51 [ 32] [ 6] [220699] +10:14:51 [ 35] [ 32] [6213544001113924=491212011392613] +10:14:51 [ 37] [ 12] [507900336143] +10:14:51 [ 38] [ 6] [077862] +10:14:51 [ 39] [ 2] [00] +10:14:51 [ 41] [ 8] [01001900] +10:14:51 [ 49] [ 3] [418] +10:14:51 [ 54] [ 40] [1001418C0000087561871002418C000008756187] +10:14:51 ============================================================================ +10:14:51 Calculate Source COMM Id = 1 +10:14:51 ============================================================================ +10:14:51 + + +waiting on router queue for slot.... +10:14:51 ============================================================================ +10:14:51 Slot Id : <23> +10:14:51 Transaction Type : REQUEST +10:14:51 Received From : +10:14:51 ============================================================================ +10:14:51 FNo. Len. Field Value +10:14:51 ============================================================================ +10:14:51 [ 1] [ 4] [0200] +10:14:51 [ 2] [ 16] [6688990100954500] +10:14:51 [ 3] [ 6] [010000] +10:14:51 [ 4] [ 12] [000020000000] +10:14:51 [ 7] [ 10] [0320101447] +10:14:51 [ 11] [ 6] [711086] +10:14:51 [ 12] [ 6] [101447] +10:14:51 [ 13] [ 4] [0320] +10:14:51 [ 15] [ 4] [0320] +10:14:51 [ 18] [ 4] [6011] +10:14:51 [ 22] [ 3] [900] +10:14:51 [ 25] [ 2] [02] +10:14:51 [ 28] [ 9] [D00002000] +10:14:51 [ 32] [ 6] [621354] +10:14:51 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:14:51 [ 37] [ 12] [507904719493] +10:14:51 [ 41] [ 8] [18001000] +10:14:51 [ 42] [ 15] [NATIVE ] +10:14:51 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:14:51 [ 49] [ 3] [418] +10:14:51 [ 52] [ 16] [A3392CBD0AD7636A] +10:14:51 ============================================================================ +10:14:51 + + +waiting on router queue for slot.... +10:14:51 Sending to : +10:14:51 ============================================================================ +10:14:51 ============================================================================ +10:14:51 Slot Id : <23> +10:14:51 Transaction Type : REQUEST +10:14:51 Received From : +10:14:51 ============================================================================ +10:14:51 FNo. Len. Field Value +10:14:51 ============================================================================ +10:14:51 [ 1] [ 4] [0200] +10:14:51 [ 2] [ 16] [6688990100954500] +10:14:51 [ 3] [ 6] [010000] +10:14:51 [ 4] [ 12] [000020000000] +10:14:51 [ 7] [ 10] [0320101447] +10:14:51 [ 11] [ 6] [711086] +10:14:51 [ 12] [ 6] [101447] +10:14:51 [ 13] [ 4] [0320] +10:14:51 [ 15] [ 4] [0320] +10:14:51 [ 18] [ 4] [6011] +10:14:51 [ 22] [ 3] [900] +10:14:51 [ 25] [ 2] [02] +10:14:51 [ 28] [ 9] [D00002000] +10:14:51 [ 32] [ 6] [621354] +10:14:51 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:14:51 [ 37] [ 12] [507904719493] +10:14:51 [ 41] [ 8] [18001000] +10:14:51 [ 42] [ 15] [NATIVE ] +10:14:51 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:14:51 [ 49] [ 3] [418] +10:14:51 [ 52] [ 16] [F0F417C7E0D10D66] +10:14:51 ============================================================================ +10:14:51 + + +waiting on router queue for slot.... +10:14:51 Sending to : <4> +10:14:51 ============================================================================ +10:14:51 ============================================================================ +10:14:51 Slot Id : <3> +10:14:51 Transaction Type : RESPONSE +10:14:51 Received From : +10:14:51 ============================================================================ +10:14:51 FNo. Len. Field Value +10:14:51 ============================================================================ +10:14:51 [ 1] [ 4] [0210] +10:14:51 [ 2] [ 16] [6688990104798606] +10:14:51 [ 3] [ 6] [011000] +10:14:51 [ 4] [ 12] [000020000000] +10:14:51 [ 11] [ 6] [711075] +10:14:51 [ 12] [ 6] [101445] +10:14:51 [ 15] [ 4] [0320] +10:14:51 [ 18] [ 4] [6011] +10:14:51 [ 32] [ 6] [621354] +10:14:51 [ 35] [ 37] [6688990104798606=43051231860602900000] +10:14:51 [ 37] [ 12] [507902508267] +10:14:51 [ 38] [ 6] [968836] +10:14:51 [ 39] [ 2] [00] +10:14:51 [ 41] [ 8] [05003300] +10:14:51 [ 49] [ 3] [418] +10:14:51 [ 54] [ 20] [1002418C000002562745] +10:14:51 ============================================================================ +10:14:51 Sending to : +10:14:51 ============================================================================ +10:14:51 + + +waiting on router queue for slot.... +10:14:52 ============================================================================ +10:14:52 Slot Id : <23> +10:14:52 Transaction Type : RESPONSE +10:14:52 Received From : +10:14:52 ============================================================================ +10:14:52 FNo. Len. Field Value +10:14:52 ============================================================================ +10:14:52 [ 1] [ 4] [0210] +10:14:52 [ 2] [ 16] [6688990100954500] +10:14:52 [ 3] [ 6] [010000] +10:14:52 [ 4] [ 12] [000020000000] +10:14:52 [ 11] [ 6] [711086] +10:14:52 [ 12] [ 6] [101447] +10:14:52 [ 15] [ 4] [0320] +10:14:52 [ 18] [ 4] [6011] +10:14:52 [ 32] [ 6] [621354] +10:14:52 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:14:52 [ 37] [ 12] [507904719493] +10:14:52 [ 39] [ 2] [51] +10:14:52 [ 41] [ 8] [18001000] +10:14:52 [ 49] [ 3] [418] +10:14:52 [ 54] [ 0] [] +10:14:52 ============================================================================ +10:14:52 Sending to : +10:14:52 ============================================================================ +10:14:52 + + +waiting on router queue for slot.... +10:14:52 ============================================================================ +10:14:52 Slot Id : <3> +10:14:52 Transaction Type : RESPONSE +10:14:52 Received From : +10:14:52 ============================================================================ +10:14:52 FNo. Len. Field Value +10:14:52 ============================================================================ +10:14:52 [ 1] [ 4] [0210] +10:14:52 [ 2] [ 16] [6688990104798606] +10:14:52 [ 3] [ 6] [011000] +10:14:52 [ 4] [ 12] [000020000000] +10:14:52 [ 11] [ 6] [711075] +10:14:52 [ 12] [ 6] [101445] +10:14:52 [ 15] [ 4] [0320] +10:14:52 [ 18] [ 4] [6011] +10:14:52 [ 32] [ 6] [621354] +10:14:52 [ 35] [ 37] [6688990104798606=43051231860602900000] +10:14:52 [ 37] [ 12] [507902508267] +10:14:52 [ 38] [ 6] [968836] +10:14:52 [ 39] [ 2] [00] +10:14:52 [ 41] [ 8] [05003300] +10:14:52 [ 49] [ 3] [418] +10:14:52 [ 54] [ 20] [1002418C000002562745] +10:14:52 ============================================================================ +10:14:52 Calculate Source COMM Id = 0 +10:14:52 ============================================================================ +10:14:52 + + +waiting on router queue for slot.... +10:14:53 ============================================================================ +10:14:53 Slot Id : <23> +10:14:53 Transaction Type : RESPONSE +10:14:53 Received From : +10:14:53 ============================================================================ +10:14:53 FNo. Len. Field Value +10:14:53 ============================================================================ +10:14:53 [ 1] [ 4] [0210] +10:14:53 [ 2] [ 16] [6688990100954500] +10:14:53 [ 3] [ 6] [010000] +10:14:53 [ 4] [ 12] [000020000000] +10:14:53 [ 11] [ 6] [711086] +10:14:53 [ 12] [ 6] [101447] +10:14:53 [ 15] [ 4] [0320] +10:14:53 [ 18] [ 4] [6011] +10:14:53 [ 32] [ 6] [621354] +10:14:53 [ 35] [ 37] [6688990100954500=41121231450034600000] +10:14:53 [ 37] [ 12] [507904719493] +10:14:53 [ 39] [ 2] [51] +10:14:53 [ 41] [ 8] [18001000] +10:14:53 [ 49] [ 3] [418] +10:14:53 [ 54] [ 0] [] +10:14:53 ============================================================================ +10:14:53 Calculate Source COMM Id = 0 +10:14:53 ============================================================================ +10:14:53 + + +waiting on router queue for slot.... +10:14:54 ============================================================================ +10:14:54 Slot Id : <29> +10:14:54 Transaction Type : REQUEST +10:14:54 Received From : +10:14:54 ============================================================================ +10:14:54 FNo. Len. Field Value +10:14:54 ============================================================================ +10:14:54 [ 1] [ 4] [0800] +10:14:54 [ 7] [ 10] [0320032242] +10:14:54 [ 11] [ 6] [090230] +10:14:54 [ 37] [ 12] [57910090230] +10:14:54 [ 70] [ 3] [301] +10:14:54 ============================================================================ +10:14:54 + + +waiting on router queue for slot.... +10:14:54 Sending to : +10:14:54 ============================================================================ +10:14:54 ============================================================================ +10:14:54 Slot Id : <29> +10:14:54 Transaction Type : RESPONSE +10:14:54 Received From : +10:14:54 ============================================================================ +10:14:54 FNo. Len. Field Value +10:14:54 ============================================================================ +10:14:54 [ 1] [ 4] [0810] +10:14:54 [ 7] [ 10] [0320032242] +10:14:54 [ 11] [ 6] [090230] +10:14:54 [ 37] [ 12] [579100902300] +10:14:54 [ 39] [ 2] [00] +10:14:54 [ 70] [ 3] [810] +10:14:54 ============================================================================ +10:14:54 Calculate Source COMM Id = 1 +10:14:54 ============================================================================ +10:14:54 + + +waiting on router queue for slot.... +10:15:05 ============================================================================ +10:15:05 Slot Id : <7> +10:15:05 Transaction Type : REQUEST +10:15:05 Received From : +10:15:05 ============================================================================ +10:15:05 FNo. Len. Field Value +10:15:05 ============================================================================ +10:15:05 [ 1] [ 4] [0800] +10:15:05 [ 7] [ 10] [0320031413] +10:15:05 [ 11] [ 6] [155807] +10:15:05 [ 70] [ 3] [301] +10:15:05 ============================================================================ +10:15:05 + + +waiting on router queue for slot.... +10:15:05 Sending to : +10:15:05 ============================================================================ +10:15:05 ============================================================================ +10:15:05 Slot Id : <7> +10:15:05 Transaction Type : RESPONSE +10:15:05 Received From : +10:15:05 ============================================================================ +10:15:05 FNo. Len. Field Value +10:15:05 ============================================================================ +10:15:05 [ 1] [ 4] [0810] +10:15:05 [ 7] [ 10] [0320031413] +10:15:05 [ 11] [ 6] [155807] +10:15:05 [ 39] [ 2] [00] +10:15:05 [ 70] [ 3] [301] +10:15:05 ============================================================================ +10:15:05 Calculate Source COMM Id = 2 +10:15:05 ============================================================================ +10:15:05 + + +waiting on router queue for slot.... +10:15:17 ============================================================================ +10:15:17 Slot Id : <33> +10:15:17 Transaction Type : REQUEST +10:15:17 Received From : +10:15:17 ============================================================================ +10:15:17 FNo. Len. Field Value +10:15:17 ============================================================================ +10:15:17 [ 1] [ 4] [0800] +10:15:17 [ 7] [ 10] [0320031425] +10:15:17 [ 11] [ 6] [155808] +10:15:17 [ 70] [ 3] [301] +10:15:17 ============================================================================ +10:15:17 + + +waiting on router queue for slot.... +10:15:17 Sending to : +10:15:17 ============================================================================ +10:15:17 ============================================================================ +10:15:17 Slot Id : <33> +10:15:17 Transaction Type : RESPONSE +10:15:17 Received From : +10:15:17 ============================================================================ +10:15:17 FNo. Len. Field Value +10:15:17 ============================================================================ +10:15:17 [ 1] [ 4] [0810] +10:15:17 [ 7] [ 10] [0320031425] +10:15:17 [ 11] [ 6] [155808] +10:15:17 [ 39] [ 2] [00] +10:15:17 [ 70] [ 3] [301] +10:15:17 ============================================================================ +10:15:17 Calculate Source COMM Id = 2 +10:15:17 ============================================================================ +10:15:17 + + +waiting on router queue for slot.... +10:15:27 ============================================================================ +10:15:27 Slot Id : <11> +10:15:27 Transaction Type : REQUEST +10:15:27 Received From : +10:15:27 ============================================================================ +10:15:27 FNo. Len. Field Value +10:15:27 ============================================================================ +10:15:27 [ 1] [ 4] [0800] +10:15:27 [ 2] [ 5] [02531] +10:15:27 [ 3] [ 6] [579108] +10:15:27 [ 7] [ 10] [0320031527] +10:15:27 [ 11] [ 6] [807007] +10:15:27 [ 15] [ 10] [0320031527] +10:15:27 [ 37] [ 11] [57910807007] +10:15:27 [ 70] [ 3] [001] +10:15:27 ============================================================================ +10:15:27 + + +waiting on router queue for slot.... +10:15:27 ============================================================================ +10:15:27 Slot Id : <11> +10:15:27 Transaction Type : RESPONSE +10:15:27 Received From : +10:15:27 ============================================================================ +10:15:27 FNo. Len. Field Value +10:15:27 ============================================================================ +10:15:27 [ 1] [ 4] [0810] +10:15:27 [ 7] [ 10] [0320031527] +10:15:27 [ 11] [ 6] [807007] +10:15:27 [ 15] [ 4] [0320] +10:15:27 [ 37] [ 12] [57910807007] +10:15:27 [ 39] [ 2] [00] +10:15:27 [ 70] [ 3] [001] +10:15:27 ============================================================================ +10:15:27 Sending to : +10:15:27 ============================================================================ +10:15:27 + + +waiting on router queue for slot.... +10:15:27 ============================================================================ +10:15:27 Slot Id : <21> +10:15:27 Transaction Type : REQUEST +10:15:27 Received From : +10:15:27 ============================================================================ +10:15:27 FNo. Len. Field Value +10:15:27 ============================================================================ +10:15:27 [ 1] [ 4] [0800] +10:15:27 [ 7] [ 10] [0320031435] +10:15:27 [ 11] [ 6] [155809] +10:15:27 [ 70] [ 3] [301] +10:15:27 ============================================================================ +10:15:27 + + +waiting on router queue for slot.... +10:15:27 Sending to : +10:15:27 ============================================================================ +10:15:27 ============================================================================ +10:15:27 Slot Id : <21> +10:15:27 Transaction Type : RESPONSE +10:15:27 Received From : +10:15:27 ============================================================================ +10:15:27 FNo. Len. Field Value +10:15:27 ============================================================================ +10:15:27 [ 1] [ 4] [0810] +10:15:27 [ 7] [ 10] [0320031435] +10:15:27 [ 11] [ 6] [155809] +10:15:27 [ 39] [ 2] [00] +10:15:27 [ 70] [ 3] [301] +10:15:27 ============================================================================ +10:15:27 Calculate Source COMM Id = 2 +10:15:27 ============================================================================ +10:15:27 + + +waiting on router queue for slot.... +10:15:29 ============================================================================ +10:15:29 Slot Id : <35> +10:15:29 Transaction Type : REQUEST +10:15:29 Received From : +10:15:29 ============================================================================ +10:15:29 FNo. Len. Field Value +10:15:29 ============================================================================ +10:15:29 [ 1] [ 4] [0800] +10:15:29 [ 7] [ 10] [0320172718] +10:15:29 [ 11] [ 6] [102718] +10:15:29 [ 37] [ 12] [57910102718] +10:15:29 [ 70] [ 3] [301] +10:15:29 ============================================================================ +10:15:29 + + +waiting on router queue for slot.... +10:15:29 Sending to : +10:15:29 ============================================================================ +10:15:29 ============================================================================ +10:15:29 Slot Id : <35> +10:15:29 Transaction Type : RESPONSE +10:15:29 Received From : +10:15:29 ============================================================================ +10:15:29 FNo. Len. Field Value +10:15:29 ============================================================================ +10:15:29 [ 1] [ 4] [0810] +10:15:29 [ 7] [ 10] [0320172718] +10:15:29 [ 11] [ 6] [102718] +10:15:29 [ 37] [ 12] [579101027180] +10:15:29 [ 39] [ 2] [00] +10:15:29 [ 70] [ 3] [810] +10:15:29 ============================================================================ +10:15:29 Calculate Source COMM Id = 6 +10:15:29 ============================================================================ +10:15:29 + + +waiting on router queue for slot.... +10:15:36 ============================================================================ +10:15:36 Slot Id : <496> +10:15:36 Transaction Type : REQUEST +10:15:36 Received From : +10:15:36 ============================================================================ +10:15:36 FNo. Len. Field Value +10:15:36 ============================================================================ +10:15:36 [ 1] [ 4] [0200] +10:15:36 [ 2] [ 16] [1808931800012831] +10:15:36 [ 3] [ 6] [301000] +10:15:36 [ 4] [ 12] [000000000000] +10:15:36 [ 7] [ 10] [0320101533] +10:15:36 [ 11] [ 6] [711264] +10:15:36 [ 12] [ 6] [101533] +10:15:36 [ 13] [ 4] [0320] +10:15:36 [ 15] [ 4] [0320] +10:15:36 [ 18] [ 4] [6011] +10:15:36 [ 22] [ 3] [900] +10:15:36 [ 25] [ 2] [02] +10:15:36 [ 28] [ 9] [D00000000] +10:15:36 [ 32] [ 6] [621354] +10:15:36 [ 35] [ 27] [1808931800012831=1803500526] +10:15:36 [ 37] [ 12] [507904635526] +10:15:36 [ 41] [ 8] [17000800] +10:15:36 [ 42] [ 15] [NATIVE ] +10:15:36 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:15:36 [ 49] [ 3] [418] +10:15:36 [ 52] [ 16] [8167A2C7A6895C9A] +10:15:36 ============================================================================ +10:15:36 + + +waiting on router queue for slot.... +10:15:36 Sending to : +10:15:36 ============================================================================ +10:15:36 Sending to : +10:15:36 ============================================================================ +10:15:37 ============================================================================ +10:15:37 Slot Id : <496> +10:15:37 Transaction Type : REQUEST +10:15:37 Received From : +10:15:37 ============================================================================ +10:15:37 FNo. Len. Field Value +10:15:37 ============================================================================ +10:15:37 [ 1] [ 4] [0200] +10:15:37 [ 2] [ 16] [1808931800012831] +10:15:37 [ 3] [ 6] [301000] +10:15:37 [ 4] [ 12] [000000000000] +10:15:37 [ 7] [ 10] [0320101533] +10:15:37 [ 11] [ 6] [711264] +10:15:37 [ 12] [ 6] [101533] +10:15:37 [ 13] [ 4] [0320] +10:15:37 [ 15] [ 4] [0320] +10:15:37 [ 18] [ 4] [6011] +10:15:37 [ 22] [ 3] [900] +10:15:37 [ 25] [ 2] [02] +10:15:37 [ 28] [ 9] [D00000000] +10:15:37 [ 32] [ 6] [621354] +10:15:37 [ 35] [ 27] [1808931800012831=1803500526] +10:15:37 [ 37] [ 12] [507904635526] +10:15:37 [ 41] [ 8] [17000800] +10:15:37 [ 42] [ 15] [NATIVE ] +10:15:37 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:15:37 [ 49] [ 3] [418] +10:15:37 [ 52] [ 16] [8167A2C7A6895C9A] +10:15:37 ============================================================================ +10:15:37 + + +waiting on router queue for slot.... +10:15:37 Sending to : +10:15:37 ============================================================================ +10:15:37 ============================================================================ +10:15:37 Slot Id : <496> +10:15:37 Transaction Type : REQUEST +10:15:37 Received From : +10:15:37 ============================================================================ +10:15:37 FNo. Len. Field Value +10:15:37 ============================================================================ +10:15:37 [ 1] [ 4] [0200] +10:15:37 [ 2] [ 16] [1808931800012831] +10:15:37 [ 3] [ 6] [301000] +10:15:37 [ 4] [ 12] [000000000000] +10:15:37 [ 7] [ 10] [0320101533] +10:15:37 [ 11] [ 6] [711264] +10:15:37 [ 12] [ 6] [101533] +10:15:37 [ 13] [ 4] [0320] +10:15:37 [ 15] [ 4] [0320] +10:15:37 [ 18] [ 4] [6011] +10:15:37 [ 22] [ 3] [900] +10:15:37 [ 25] [ 2] [02] +10:15:37 [ 28] [ 9] [D00000000] +10:15:37 [ 32] [ 6] [621354] +10:15:37 [ 35] [ 27] [1808931800012831=1803500526] +10:15:37 [ 37] [ 12] [507904635526] +10:15:37 [ 41] [ 8] [17000800] +10:15:37 [ 42] [ 15] [NATIVE ] +10:15:37 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:15:37 [ 49] [ 3] [418] +10:15:37 [ 52] [ 16] [AFC4C79E4539C8FD] +10:15:37 ============================================================================ +10:15:37 + + +waiting on router queue for slot.... +10:15:37 Sending to : <2> +10:15:37 ============================================================================ +10:15:40 ============================================================================ +10:15:40 Slot Id : <496> +10:15:40 Transaction Type : RESPONSE +10:15:40 Received From : +10:15:40 ============================================================================ +10:15:40 FNo. Len. Field Value +10:15:40 ============================================================================ +10:15:40 [ 1] [ 4] [0210] +10:15:40 [ 2] [ 16] [1808931800012831] +10:15:40 [ 3] [ 6] [301000] +10:15:40 [ 7] [ 10] [0320101533] +10:15:40 [ 11] [ 6] [711264] +10:15:40 [ 12] [ 6] [101533] +10:15:40 [ 13] [ 4] [0320] +10:15:40 [ 14] [ 4] [1803] +10:15:40 [ 19] [ 3] [418] +10:15:40 [ 32] [ 6] [621354] +10:15:40 [ 37] [ 12] [507904635526] +10:15:40 [ 39] [ 2] [55] +10:15:40 [ 41] [ 8] [17000800] +10:15:40 [ 49] [ 3] [418] +10:15:40 [ 52] [ 16] [AFC4C79E4539C8FD] +10:15:40 ============================================================================ +10:15:40 Sending to : +10:15:40 ============================================================================ +10:15:40 + + +waiting on router queue for slot.... +10:15:41 ============================================================================ +10:15:41 Slot Id : <496> +10:15:41 Transaction Type : RESPONSE +10:15:41 Received From : +10:15:41 ============================================================================ +10:15:41 FNo. Len. Field Value +10:15:41 ============================================================================ +10:15:41 [ 1] [ 4] [0210] +10:15:41 [ 2] [ 16] [1808931800012831] +10:15:41 [ 3] [ 6] [301000] +10:15:41 [ 7] [ 10] [0320101533] +10:15:41 [ 11] [ 6] [711264] +10:15:41 [ 12] [ 6] [101533] +10:15:41 [ 13] [ 4] [0320] +10:15:41 [ 14] [ 4] [1803] +10:15:41 [ 19] [ 3] [418] +10:15:41 [ 32] [ 6] [621354] +10:15:41 [ 37] [ 12] [507904635526] +10:15:41 [ 39] [ 2] [55] +10:15:41 [ 41] [ 8] [17000800] +10:15:41 [ 49] [ 3] [418] +10:15:41 [ 52] [ 16] [AFC4C79E4539C8FD] +10:15:41 ============================================================================ +10:15:41 Calculate Source COMM Id = 0 +10:15:41 ============================================================================ +10:15:41 + + +waiting on router queue for slot.... +10:15:47 ============================================================================ +10:15:47 Slot Id : <30> +10:15:47 Transaction Type : REQUEST +10:15:47 Received From : +10:15:47 ============================================================================ +10:15:47 FNo. Len. Field Value +10:15:47 ============================================================================ +10:15:47 [ 1] [ 4] [0200] +10:15:47 [ 2] [ 16] [6688990100941507] +10:15:47 [ 3] [ 6] [010000] +10:15:47 [ 4] [ 12] [000005000000] +10:15:47 [ 7] [ 10] [0320101543] +10:15:47 [ 11] [ 6] [711317] +10:15:47 [ 12] [ 6] [101543] +10:15:47 [ 13] [ 4] [0320] +10:15:47 [ 15] [ 4] [0320] +10:15:47 [ 18] [ 4] [6011] +10:15:47 [ 22] [ 3] [900] +10:15:47 [ 25] [ 2] [02] +10:15:47 [ 28] [ 9] [D00002000] +10:15:47 [ 32] [ 6] [621354] +10:15:47 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:15:47 [ 37] [ 12] [507904719495] +10:15:47 [ 41] [ 8] [18001000] +10:15:47 [ 42] [ 15] [NATIVE ] +10:15:47 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:15:47 [ 49] [ 3] [418] +10:15:47 [ 52] [ 16] [3B496FEB663F5696] +10:15:47 ============================================================================ +10:15:47 + + +waiting on router queue for slot.... +10:15:47 Sending to : +10:15:47 ============================================================================ +10:15:47 Sending to : +10:15:47 ============================================================================ +10:15:48 ============================================================================ +10:15:48 Slot Id : <30> +10:15:48 Transaction Type : REQUEST +10:15:48 Received From : +10:15:48 ============================================================================ +10:15:48 FNo. Len. Field Value +10:15:48 ============================================================================ +10:15:48 [ 1] [ 4] [0200] +10:15:48 [ 2] [ 16] [6688990100941507] +10:15:48 [ 3] [ 6] [010000] +10:15:48 [ 4] [ 12] [000005000000] +10:15:48 [ 7] [ 10] [0320101543] +10:15:48 [ 11] [ 6] [711317] +10:15:48 [ 12] [ 6] [101543] +10:15:48 [ 13] [ 4] [0320] +10:15:48 [ 15] [ 4] [0320] +10:15:48 [ 18] [ 4] [6011] +10:15:48 [ 22] [ 3] [900] +10:15:48 [ 25] [ 2] [02] +10:15:48 [ 28] [ 9] [D00002000] +10:15:48 [ 32] [ 6] [621354] +10:15:48 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:15:48 [ 37] [ 12] [507904719495] +10:15:48 [ 41] [ 8] [18001000] +10:15:48 [ 42] [ 15] [NATIVE ] +10:15:48 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:15:48 [ 49] [ 3] [418] +10:15:48 [ 52] [ 16] [3B496FEB663F5696] +10:15:48 ============================================================================ +10:15:48 + + +waiting on router queue for slot.... +10:15:48 Sending to : +10:15:48 ============================================================================ +10:15:48 ============================================================================ +10:15:48 Slot Id : <30> +10:15:48 Transaction Type : REQUEST +10:15:48 Received From : +10:15:48 ============================================================================ +10:15:48 FNo. Len. Field Value +10:15:48 ============================================================================ +10:15:48 [ 1] [ 4] [0200] +10:15:48 [ 2] [ 16] [6688990100941507] +10:15:48 [ 3] [ 6] [010000] +10:15:48 [ 4] [ 12] [000005000000] +10:15:48 [ 7] [ 10] [0320101543] +10:15:48 [ 11] [ 6] [711317] +10:15:48 [ 12] [ 6] [101543] +10:15:48 [ 13] [ 4] [0320] +10:15:48 [ 15] [ 4] [0320] +10:15:48 [ 18] [ 4] [6011] +10:15:48 [ 22] [ 3] [900] +10:15:48 [ 25] [ 2] [02] +10:15:48 [ 28] [ 9] [D00002000] +10:15:48 [ 32] [ 6] [621354] +10:15:48 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:15:48 [ 37] [ 12] [507904719495] +10:15:48 [ 41] [ 8] [18001000] +10:15:48 [ 42] [ 15] [NATIVE ] +10:15:48 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:15:48 [ 49] [ 3] [418] +10:15:48 [ 52] [ 16] [708A5172D2D707EC] +10:15:48 ============================================================================ +10:15:48 + + +waiting on router queue for slot.... +10:15:48 Sending to : <4> +10:15:48 ============================================================================ +10:15:48 ============================================================================ +10:15:48 Slot Id : <30> +10:15:48 Transaction Type : RESPONSE +10:15:48 Received From : +10:15:48 ============================================================================ +10:15:48 FNo. Len. Field Value +10:15:48 ============================================================================ +10:15:48 [ 1] [ 4] [0210] +10:15:48 [ 2] [ 16] [6688990100941507] +10:15:48 [ 3] [ 6] [010000] +10:15:48 [ 4] [ 12] [000005000000] +10:15:48 [ 7] [ 10] [0320101543] +10:15:48 [ 11] [ 6] [711317] +10:15:48 [ 12] [ 6] [101543] +10:15:48 [ 13] [ 4] [0320] +10:15:48 [ 15] [ 4] [0320] +10:15:48 [ 18] [ 4] [6011] +10:15:48 [ 22] [ 3] [021] +10:15:48 [ 32] [ 6] [621354] +10:15:48 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:15:48 [ 37] [ 12] [507904719495] +10:15:48 [ 39] [ 2] [65] +10:15:48 [ 41] [ 8] [18001000] +10:15:48 [ 49] [ 3] [418] +10:15:48 ============================================================================ +10:15:48 Sending to : +10:15:48 ============================================================================ +10:15:48 + + +waiting on router queue for slot.... +10:15:49 ============================================================================ +10:15:49 Slot Id : <30> +10:15:49 Transaction Type : RESPONSE +10:15:49 Received From : +10:15:49 ============================================================================ +10:15:49 FNo. Len. Field Value +10:15:49 ============================================================================ +10:15:49 [ 1] [ 4] [0210] +10:15:49 [ 2] [ 16] [6688990100941507] +10:15:49 [ 3] [ 6] [010000] +10:15:49 [ 4] [ 12] [000005000000] +10:15:49 [ 7] [ 10] [0320101543] +10:15:49 [ 11] [ 6] [711317] +10:15:49 [ 12] [ 6] [101543] +10:15:49 [ 13] [ 4] [0320] +10:15:49 [ 15] [ 4] [0320] +10:15:49 [ 18] [ 4] [6011] +10:15:49 [ 22] [ 3] [021] +10:15:49 [ 32] [ 6] [621354] +10:15:49 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:15:49 [ 37] [ 12] [507904719495] +10:15:49 [ 39] [ 2] [65] +10:15:49 [ 41] [ 8] [18001000] +10:15:49 [ 49] [ 3] [418] +10:15:49 ============================================================================ +10:15:49 Calculate Source COMM Id = 0 +10:15:49 ============================================================================ +10:15:49 + + +waiting on router queue for slot.... +10:15:49 ============================================================================ +10:15:49 Slot Id : <461> +10:15:49 Transaction Type : REQUEST +10:15:49 Received From : +10:15:49 ============================================================================ +10:15:49 FNo. Len. Field Value +10:15:49 ============================================================================ +10:15:49 [ 1] [ 4] [0800] +10:15:49 [ 7] [ 10] [0320031457] +10:15:49 [ 11] [ 6] [155810] +10:15:49 [ 70] [ 3] [301] +10:15:49 ============================================================================ +10:15:49 + + +waiting on router queue for slot.... +10:15:49 Sending to : +10:15:49 ============================================================================ +10:15:49 ============================================================================ +10:15:49 Slot Id : <461> +10:15:49 Transaction Type : RESPONSE +10:15:49 Received From : +10:15:49 ============================================================================ +10:15:49 FNo. Len. Field Value +10:15:49 ============================================================================ +10:15:49 [ 1] [ 4] [0810] +10:15:49 [ 7] [ 10] [0320031457] +10:15:49 [ 11] [ 6] [155810] +10:15:49 [ 39] [ 2] [00] +10:15:49 [ 70] [ 3] [301] +10:15:49 ============================================================================ +10:15:49 Calculate Source COMM Id = 2 +10:15:49 ============================================================================ +10:15:49 + + +waiting on router queue for slot.... +10:15:54 ============================================================================ +10:15:54 Slot Id : <37> +10:15:54 Transaction Type : REQUEST +10:15:54 Received From : +10:15:54 ============================================================================ +10:15:54 FNo. Len. Field Value +10:15:54 ============================================================================ +10:15:54 [ 1] [ 4] [0200] +10:15:54 [ 2] [ 16] [1808930500013453] +10:15:54 [ 3] [ 6] [301000] +10:15:54 [ 4] [ 12] [000000000000] +10:15:54 [ 7] [ 10] [0320101550] +10:15:54 [ 11] [ 6] [711341] +10:15:54 [ 12] [ 6] [101550] +10:15:54 [ 13] [ 4] [0320] +10:15:54 [ 15] [ 4] [0320] +10:15:54 [ 18] [ 4] [6011] +10:15:54 [ 22] [ 3] [900] +10:15:54 [ 25] [ 2] [02] +10:15:54 [ 28] [ 9] [D00000000] +10:15:54 [ 32] [ 6] [621354] +10:15:54 [ 35] [ 27] [1808930500013453=1803500401] +10:15:54 [ 37] [ 12] [507903207983] +10:15:54 [ 41] [ 8] [04003000] +10:15:54 [ 42] [ 15] [NATIVE ] +10:15:54 [ 43] [ 40] [DAOHUEANG UNIT Pakse LAO] +10:15:54 [ 49] [ 3] [418] +10:15:54 [ 52] [ 16] [AC5404548DD1D8B9] +10:15:54 ============================================================================ +10:15:54 + + +waiting on router queue for slot.... +10:15:54 Sending to : +10:15:54 ============================================================================ +10:15:54 Sending to : +10:15:54 ============================================================================ +10:15:54 ============================================================================ +10:15:54 Slot Id : <37> +10:15:54 Transaction Type : REQUEST +10:15:54 Received From : +10:15:54 ============================================================================ +10:15:54 FNo. Len. Field Value +10:15:54 ============================================================================ +10:15:54 [ 1] [ 4] [0200] +10:15:54 [ 2] [ 16] [1808930500013453] +10:15:54 [ 3] [ 6] [301000] +10:15:54 [ 4] [ 12] [000000000000] +10:15:54 [ 7] [ 10] [0320101550] +10:15:54 [ 11] [ 6] [711341] +10:15:54 [ 12] [ 6] [101550] +10:15:54 [ 13] [ 4] [0320] +10:15:54 [ 15] [ 4] [0320] +10:15:54 [ 18] [ 4] [6011] +10:15:54 [ 22] [ 3] [900] +10:15:54 [ 25] [ 2] [02] +10:15:54 [ 28] [ 9] [D00000000] +10:15:54 [ 32] [ 6] [621354] +10:15:54 [ 35] [ 27] [1808930500013453=1803500401] +10:15:54 [ 37] [ 12] [507903207983] +10:15:54 [ 41] [ 8] [04003000] +10:15:54 [ 42] [ 15] [NATIVE ] +10:15:54 [ 43] [ 40] [DAOHUEANG UNIT Pakse LAO] +10:15:54 [ 49] [ 3] [418] +10:15:54 [ 52] [ 16] [AC5404548DD1D8B9] +10:15:54 ============================================================================ +10:15:54 + + +waiting on router queue for slot.... +10:15:54 Sending to : +10:15:54 ============================================================================ +10:15:54 ============================================================================ +10:15:54 Slot Id : <37> +10:15:54 Transaction Type : REQUEST +10:15:54 Received From : +10:15:54 ============================================================================ +10:15:54 FNo. Len. Field Value +10:15:54 ============================================================================ +10:15:54 [ 1] [ 4] [0200] +10:15:54 [ 2] [ 16] [1808930500013453] +10:15:54 [ 3] [ 6] [301000] +10:15:54 [ 4] [ 12] [000000000000] +10:15:54 [ 7] [ 10] [0320101550] +10:15:54 [ 11] [ 6] [711341] +10:15:54 [ 12] [ 6] [101550] +10:15:54 [ 13] [ 4] [0320] +10:15:54 [ 15] [ 4] [0320] +10:15:54 [ 18] [ 4] [6011] +10:15:54 [ 22] [ 3] [900] +10:15:54 [ 25] [ 2] [02] +10:15:54 [ 28] [ 9] [D00000000] +10:15:54 [ 32] [ 6] [621354] +10:15:54 [ 35] [ 27] [1808930500013453=1803500401] +10:15:54 [ 37] [ 12] [507903207983] +10:15:54 [ 41] [ 8] [04003000] +10:15:54 [ 42] [ 15] [NATIVE ] +10:15:54 [ 43] [ 40] [DAOHUEANG UNIT Pakse LAO] +10:15:54 [ 49] [ 3] [418] +10:15:54 [ 52] [ 16] [F0BA1E240DCD1707] +10:15:54 ============================================================================ +10:15:54 + + +waiting on router queue for slot.... +10:15:54 Sending to : <2> +10:15:54 ============================================================================ +10:15:55 ============================================================================ +10:15:55 Slot Id : <9> +10:15:55 Transaction Type : REQUEST +10:15:55 Received From : +10:15:55 ============================================================================ +10:15:55 FNo. Len. Field Value +10:15:55 ============================================================================ +10:15:55 [ 1] [ 4] [0200] +10:15:55 [ 2] [ 16] [1808931800012831] +10:15:55 [ 3] [ 6] [301000] +10:15:55 [ 4] [ 12] [000000000000] +10:15:55 [ 7] [ 10] [0320101551] +10:15:55 [ 11] [ 6] [711344] +10:15:55 [ 12] [ 6] [101551] +10:15:55 [ 13] [ 4] [0320] +10:15:55 [ 15] [ 4] [0320] +10:15:55 [ 18] [ 4] [6011] +10:15:55 [ 22] [ 3] [900] +10:15:55 [ 25] [ 2] [02] +10:15:55 [ 28] [ 9] [D00000000] +10:15:55 [ 32] [ 6] [621354] +10:15:55 [ 35] [ 27] [1808931800012831=1803500526] +10:15:55 [ 37] [ 12] [507904635527] +10:15:55 [ 41] [ 8] [17000800] +10:15:55 [ 42] [ 15] [NATIVE ] +10:15:55 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:15:55 [ 49] [ 3] [418] +10:15:55 [ 52] [ 16] [1A27F7C95ADF5354] +10:15:55 ============================================================================ +10:15:55 + + +waiting on router queue for slot.... +10:15:55 Sending to : +10:15:55 ============================================================================ +10:15:55 Sending to : +10:15:55 ============================================================================ +10:15:55 ============================================================================ +10:15:55 Slot Id : <9> +10:15:55 Transaction Type : REQUEST +10:15:55 Received From : +10:15:55 ============================================================================ +10:15:55 FNo. Len. Field Value +10:15:55 ============================================================================ +10:15:55 [ 1] [ 4] [0200] +10:15:55 [ 2] [ 16] [1808931800012831] +10:15:55 [ 3] [ 6] [301000] +10:15:55 [ 4] [ 12] [000000000000] +10:15:55 [ 7] [ 10] [0320101551] +10:15:55 [ 11] [ 6] [711344] +10:15:55 [ 12] [ 6] [101551] +10:15:55 [ 13] [ 4] [0320] +10:15:55 [ 15] [ 4] [0320] +10:15:55 [ 18] [ 4] [6011] +10:15:55 [ 22] [ 3] [900] +10:15:55 [ 25] [ 2] [02] +10:15:55 [ 28] [ 9] [D00000000] +10:15:55 [ 32] [ 6] [621354] +10:15:55 [ 35] [ 27] [1808931800012831=1803500526] +10:15:55 [ 37] [ 12] [507904635527] +10:15:55 [ 41] [ 8] [17000800] +10:15:55 [ 42] [ 15] [NATIVE ] +10:15:55 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:15:55 [ 49] [ 3] [418] +10:15:55 [ 52] [ 16] [1A27F7C95ADF5354] +10:15:55 ============================================================================ +10:15:55 + + +waiting on router queue for slot.... +10:15:55 Sending to : +10:15:55 ============================================================================ +10:15:55 ============================================================================ +10:15:55 Slot Id : <9> +10:15:55 Transaction Type : REQUEST +10:15:55 Received From : +10:15:55 ============================================================================ +10:15:55 FNo. Len. Field Value +10:15:55 ============================================================================ +10:15:55 [ 1] [ 4] [0200] +10:15:55 [ 2] [ 16] [1808931800012831] +10:15:55 [ 3] [ 6] [301000] +10:15:55 [ 4] [ 12] [000000000000] +10:15:55 [ 7] [ 10] [0320101551] +10:15:55 [ 11] [ 6] [711344] +10:15:55 [ 12] [ 6] [101551] +10:15:55 [ 13] [ 4] [0320] +10:15:55 [ 15] [ 4] [0320] +10:15:55 [ 18] [ 4] [6011] +10:15:55 [ 22] [ 3] [900] +10:15:55 [ 25] [ 2] [02] +10:15:55 [ 28] [ 9] [D00000000] +10:15:55 [ 32] [ 6] [621354] +10:15:55 [ 35] [ 27] [1808931800012831=1803500526] +10:15:55 [ 37] [ 12] [507904635527] +10:15:55 [ 41] [ 8] [17000800] +10:15:55 [ 42] [ 15] [NATIVE ] +10:15:55 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:15:55 [ 49] [ 3] [418] +10:15:55 [ 52] [ 16] [EFAE0A9A7D022BF2] +10:15:55 ============================================================================ +10:15:55 + + +waiting on router queue for slot.... +10:15:55 Sending to : <2> +10:15:55 ============================================================================ +10:16:00 ============================================================================ +10:16:00 Slot Id : <37> +10:16:00 Transaction Type : RESPONSE +10:16:00 Received From : +10:16:00 ============================================================================ +10:16:00 FNo. Len. Field Value +10:16:00 ============================================================================ +10:16:00 [ 1] [ 4] [0210] +10:16:00 [ 2] [ 16] [1808930500013453] +10:16:00 [ 3] [ 6] [301000] +10:16:00 [ 7] [ 10] [0320101550] +10:16:00 [ 11] [ 6] [711341] +10:16:00 [ 12] [ 6] [101550] +10:16:00 [ 13] [ 4] [0320] +10:16:00 [ 14] [ 4] [1803] +10:16:00 [ 19] [ 3] [418] +10:16:00 [ 32] [ 6] [621354] +10:16:00 [ 37] [ 12] [507903207983] +10:16:00 [ 38] [ 6] [711341] +10:16:00 [ 39] [ 2] [00] +10:16:00 [ 41] [ 8] [04003000] +10:16:00 [ 49] [ 3] [418] +10:16:00 [ 52] [ 16] [F0BA1E240DCD1707] +10:16:00 [ 54] [ 20] [1002418C000159700100] +10:16:00 ============================================================================ +10:16:00 Sending to : +10:16:00 ============================================================================ +10:16:00 + + +waiting on router queue for slot.... +10:16:00 ============================================================================ +10:16:00 Slot Id : <9> +10:16:00 Transaction Type : RESPONSE +10:16:00 Received From : +10:16:00 ============================================================================ +10:16:00 FNo. Len. Field Value +10:16:00 ============================================================================ +10:16:00 [ 1] [ 4] [0210] +10:16:00 [ 2] [ 16] [1808931800012831] +10:16:00 [ 3] [ 6] [301000] +10:16:00 [ 7] [ 10] [0320101551] +10:16:00 [ 11] [ 6] [711344] +10:16:00 [ 12] [ 6] [101551] +10:16:00 [ 13] [ 4] [0320] +10:16:00 [ 14] [ 4] [1803] +10:16:00 [ 19] [ 3] [418] +10:16:00 [ 32] [ 6] [621354] +10:16:00 [ 37] [ 12] [507904635527] +10:16:00 [ 38] [ 6] [711344] +10:16:00 [ 39] [ 2] [00] +10:16:00 [ 41] [ 8] [17000800] +10:16:00 [ 49] [ 3] [418] +10:16:00 [ 52] [ 16] [EFAE0A9A7D022BF2] +10:16:00 [ 54] [ 20] [1002418C000194178400] +10:16:00 ============================================================================ +10:16:00 Sending to : +10:16:00 ============================================================================ +10:16:00 + + +waiting on router queue for slot.... +10:16:02 ============================================================================ +10:16:02 Slot Id : <37> +10:16:02 Transaction Type : RESPONSE +10:16:02 Received From : +10:16:02 ============================================================================ +10:16:02 FNo. Len. Field Value +10:16:02 ============================================================================ +10:16:02 [ 1] [ 4] [0210] +10:16:02 [ 2] [ 16] [1808930500013453] +10:16:02 [ 3] [ 6] [301000] +10:16:02 [ 7] [ 10] [0320101550] +10:16:02 [ 11] [ 6] [711341] +10:16:02 [ 12] [ 6] [101550] +10:16:02 [ 13] [ 4] [0320] +10:16:02 [ 14] [ 4] [1803] +10:16:02 [ 19] [ 3] [418] +10:16:02 [ 32] [ 6] [621354] +10:16:02 [ 37] [ 12] [507903207983] +10:16:02 [ 38] [ 6] [711341] +10:16:02 [ 39] [ 2] [00] +10:16:02 [ 41] [ 8] [04003000] +10:16:02 [ 49] [ 3] [418] +10:16:02 [ 52] [ 16] [F0BA1E240DCD1707] +10:16:02 [ 54] [ 20] [1002418C000159700100] +10:16:02 ============================================================================ +10:16:02 Calculate Source COMM Id = 0 +10:16:02 ============================================================================ +10:16:02 + + +waiting on router queue for slot.... +10:16:04 ============================================================================ +10:16:04 Slot Id : <9> +10:16:04 Transaction Type : RESPONSE +10:16:04 Received From : +10:16:04 ============================================================================ +10:16:04 FNo. Len. Field Value +10:16:04 ============================================================================ +10:16:04 [ 1] [ 4] [0210] +10:16:04 [ 2] [ 16] [1808931800012831] +10:16:04 [ 3] [ 6] [301000] +10:16:04 [ 7] [ 10] [0320101551] +10:16:04 [ 11] [ 6] [711344] +10:16:04 [ 12] [ 6] [101551] +10:16:04 [ 13] [ 4] [0320] +10:16:04 [ 14] [ 4] [1803] +10:16:04 [ 19] [ 3] [418] +10:16:04 [ 32] [ 6] [621354] +10:16:04 [ 37] [ 12] [507904635527] +10:16:04 [ 38] [ 6] [711344] +10:16:04 [ 39] [ 2] [00] +10:16:04 [ 41] [ 8] [17000800] +10:16:04 [ 49] [ 3] [418] +10:16:04 [ 52] [ 16] [EFAE0A9A7D022BF2] +10:16:04 [ 54] [ 20] [1002418C000194178400] +10:16:04 ============================================================================ +10:16:04 Calculate Source COMM Id = 0 +10:16:04 ============================================================================ +10:16:04 + + +waiting on router queue for slot.... +10:16:11 ============================================================================ +10:16:11 Slot Id : <36> +10:16:11 Transaction Type : REQUEST +10:16:11 Received From : +10:16:11 ============================================================================ +10:16:11 FNo. Len. Field Value +10:16:11 ============================================================================ +10:16:11 [ 1] [ 4] [0800] +10:16:11 [ 7] [ 10] [0320031519] +10:16:11 [ 11] [ 6] [155811] +10:16:11 [ 70] [ 3] [301] +10:16:11 ============================================================================ +10:16:11 + + +waiting on router queue for slot.... +10:16:11 Sending to : +10:16:11 ============================================================================ +10:16:11 ============================================================================ +10:16:11 Slot Id : <36> +10:16:11 Transaction Type : RESPONSE +10:16:11 Received From : +10:16:11 ============================================================================ +10:16:11 FNo. Len. Field Value +10:16:11 ============================================================================ +10:16:11 [ 1] [ 4] [0810] +10:16:11 [ 7] [ 10] [0320031519] +10:16:11 [ 11] [ 6] [155811] +10:16:11 [ 39] [ 2] [00] +10:16:11 [ 70] [ 3] [301] +10:16:11 ============================================================================ +10:16:11 Calculate Source COMM Id = 2 +10:16:11 ============================================================================ +10:16:11 + + +waiting on router queue for slot.... +10:16:20 ============================================================================ +10:16:20 Slot Id : <45> +10:16:20 Transaction Type : REQUEST +10:16:20 Received From : +10:16:20 ============================================================================ +10:16:20 FNo. Len. Field Value +10:16:20 ============================================================================ +10:16:20 [ 1] [ 4] [0800] +10:16:20 [ 7] [ 10] [0320031412] +10:16:20 [ 11] [ 6] [026836] +10:16:20 [ 37] [ 12] [57910026836] +10:16:20 [ 70] [ 3] [301] +10:16:20 ============================================================================ +10:16:20 + + +waiting on router queue for slot.... +10:16:20 Sending to : +10:16:20 ============================================================================ +10:16:20 ============================================================================ +10:16:20 Slot Id : <45> +10:16:20 Transaction Type : RESPONSE +10:16:20 Received From : +10:16:20 ============================================================================ +10:16:20 FNo. Len. Field Value +10:16:20 ============================================================================ +10:16:20 [ 1] [ 4] [0810] +10:16:20 [ 7] [ 10] [0320031412] +10:16:20 [ 11] [ 6] [026836] +10:16:20 [ 37] [ 12] [579100268360] +10:16:20 [ 39] [ 2] [00] +10:16:20 [ 70] [ 3] [810] +10:16:20 ============================================================================ +10:16:20 Calculate Source COMM Id = 4 +10:16:20 ============================================================================ +10:16:20 + + +waiting on router queue for slot.... +10:16:22 ============================================================================ +10:16:22 Slot Id : <18> +10:16:22 Transaction Type : REQUEST +10:16:22 Received From : +10:16:22 ============================================================================ +10:16:22 FNo. Len. Field Value +10:16:22 ============================================================================ +10:16:22 [ 1] [ 4] [0800] +10:16:22 [ 7] [ 10] [0320031530] +10:16:22 [ 11] [ 6] [155812] +10:16:22 [ 70] [ 3] [301] +10:16:22 ============================================================================ +10:16:22 + + +waiting on router queue for slot.... +10:16:22 Sending to : +10:16:22 ============================================================================ +10:16:22 ============================================================================ +10:16:22 Slot Id : <18> +10:16:22 Transaction Type : RESPONSE +10:16:22 Received From : +10:16:22 ============================================================================ +10:16:22 FNo. Len. Field Value +10:16:22 ============================================================================ +10:16:22 [ 1] [ 4] [0810] +10:16:22 [ 7] [ 10] [0320031530] +10:16:22 [ 11] [ 6] [155812] +10:16:22 [ 39] [ 2] [00] +10:16:22 [ 70] [ 3] [301] +10:16:22 ============================================================================ +10:16:22 Calculate Source COMM Id = 2 +10:16:22 ============================================================================ +10:16:22 + + +waiting on router queue for slot.... +10:16:23 ============================================================================ +10:16:23 Slot Id : <497> +10:16:23 Transaction Type : REQUEST +10:16:23 Received From : +10:16:23 ============================================================================ +10:16:23 FNo. Len. Field Value +10:16:23 ============================================================================ +10:16:23 [ 1] [ 4] [0200] +10:16:23 [ 2] [ 16] [6688990100941507] +10:16:23 [ 3] [ 6] [010000] +10:16:23 [ 4] [ 12] [000002000000] +10:16:23 [ 7] [ 10] [0320101619] +10:16:23 [ 11] [ 6] [711472] +10:16:23 [ 12] [ 6] [101619] +10:16:23 [ 13] [ 4] [0320] +10:16:23 [ 15] [ 4] [0320] +10:16:23 [ 18] [ 4] [6011] +10:16:23 [ 22] [ 3] [900] +10:16:23 [ 25] [ 2] [02] +10:16:23 [ 28] [ 9] [D00002000] +10:16:23 [ 32] [ 6] [621354] +10:16:23 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:16:23 [ 37] [ 12] [507904719497] +10:16:23 [ 41] [ 8] [18001000] +10:16:23 [ 42] [ 15] [NATIVE ] +10:16:23 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:16:23 [ 49] [ 3] [418] +10:16:23 [ 52] [ 16] [3B496FEB663F5696] +10:16:23 ============================================================================ +10:16:23 + + +waiting on router queue for slot.... +10:16:23 Sending to : +10:16:23 ============================================================================ +10:16:23 Sending to : +10:16:23 ============================================================================ +10:16:24 ============================================================================ +10:16:24 Slot Id : <497> +10:16:24 Transaction Type : REQUEST +10:16:24 Received From : +10:16:24 ============================================================================ +10:16:24 FNo. Len. Field Value +10:16:24 ============================================================================ +10:16:24 [ 1] [ 4] [0200] +10:16:24 [ 2] [ 16] [6688990100941507] +10:16:24 [ 3] [ 6] [010000] +10:16:24 [ 4] [ 12] [000002000000] +10:16:24 [ 7] [ 10] [0320101619] +10:16:24 [ 11] [ 6] [711472] +10:16:24 [ 12] [ 6] [101619] +10:16:24 [ 13] [ 4] [0320] +10:16:24 [ 15] [ 4] [0320] +10:16:24 [ 18] [ 4] [6011] +10:16:24 [ 22] [ 3] [900] +10:16:24 [ 25] [ 2] [02] +10:16:24 [ 28] [ 9] [D00002000] +10:16:24 [ 32] [ 6] [621354] +10:16:24 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:16:24 [ 37] [ 12] [507904719497] +10:16:24 [ 41] [ 8] [18001000] +10:16:24 [ 42] [ 15] [NATIVE ] +10:16:24 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:16:24 [ 49] [ 3] [418] +10:16:24 [ 52] [ 16] [3B496FEB663F5696] +10:16:24 ============================================================================ +10:16:24 + + +waiting on router queue for slot.... +10:16:24 Sending to : +10:16:24 ============================================================================ +10:16:24 ============================================================================ +10:16:24 Slot Id : <497> +10:16:24 Transaction Type : REQUEST +10:16:24 Received From : +10:16:24 ============================================================================ +10:16:24 FNo. Len. Field Value +10:16:24 ============================================================================ +10:16:24 [ 1] [ 4] [0200] +10:16:24 [ 2] [ 16] [6688990100941507] +10:16:24 [ 3] [ 6] [010000] +10:16:24 [ 4] [ 12] [000002000000] +10:16:24 [ 7] [ 10] [0320101619] +10:16:24 [ 11] [ 6] [711472] +10:16:24 [ 12] [ 6] [101619] +10:16:24 [ 13] [ 4] [0320] +10:16:24 [ 15] [ 4] [0320] +10:16:24 [ 18] [ 4] [6011] +10:16:24 [ 22] [ 3] [900] +10:16:24 [ 25] [ 2] [02] +10:16:24 [ 28] [ 9] [D00002000] +10:16:24 [ 32] [ 6] [621354] +10:16:24 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:16:24 [ 37] [ 12] [507904719497] +10:16:24 [ 41] [ 8] [18001000] +10:16:24 [ 42] [ 15] [NATIVE ] +10:16:24 [ 43] [ 40] [Khoua Unit Khoua LAO] +10:16:24 [ 49] [ 3] [418] +10:16:24 [ 52] [ 16] [708A5172D2D707EC] +10:16:24 ============================================================================ +10:16:24 + + +waiting on router queue for slot.... +10:16:24 Sending to : <4> +10:16:24 ============================================================================ +10:16:24 ============================================================================ +10:16:24 Slot Id : <497> +10:16:24 Transaction Type : RESPONSE +10:16:24 Received From : +10:16:24 ============================================================================ +10:16:24 FNo. Len. Field Value +10:16:24 ============================================================================ +10:16:24 [ 1] [ 4] [0210] +10:16:24 [ 2] [ 16] [6688990100941507] +10:16:24 [ 3] [ 6] [010000] +10:16:24 [ 4] [ 12] [000002000000] +10:16:24 [ 7] [ 10] [0320101619] +10:16:24 [ 11] [ 6] [711472] +10:16:24 [ 12] [ 6] [101619] +10:16:24 [ 13] [ 4] [0320] +10:16:24 [ 15] [ 4] [0320] +10:16:24 [ 18] [ 4] [6011] +10:16:24 [ 22] [ 3] [021] +10:16:24 [ 32] [ 6] [621354] +10:16:24 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:16:24 [ 37] [ 12] [507904719497] +10:16:24 [ 39] [ 2] [65] +10:16:24 [ 41] [ 8] [18001000] +10:16:24 [ 49] [ 3] [418] +10:16:24 ============================================================================ +10:16:24 Sending to : +10:16:24 ============================================================================ +10:16:24 + + +waiting on router queue for slot.... +10:16:25 ============================================================================ +10:16:25 Slot Id : <497> +10:16:25 Transaction Type : RESPONSE +10:16:25 Received From : +10:16:25 ============================================================================ +10:16:25 FNo. Len. Field Value +10:16:25 ============================================================================ +10:16:25 [ 1] [ 4] [0210] +10:16:25 [ 2] [ 16] [6688990100941507] +10:16:25 [ 3] [ 6] [010000] +10:16:25 [ 4] [ 12] [000002000000] +10:16:25 [ 7] [ 10] [0320101619] +10:16:25 [ 11] [ 6] [711472] +10:16:25 [ 12] [ 6] [101619] +10:16:25 [ 13] [ 4] [0320] +10:16:25 [ 15] [ 4] [0320] +10:16:25 [ 18] [ 4] [6011] +10:16:25 [ 22] [ 3] [021] +10:16:25 [ 32] [ 6] [621354] +10:16:25 [ 35] [ 37] [6688990100941507=41121231150746900000] +10:16:25 [ 37] [ 12] [507904719497] +10:16:25 [ 39] [ 2] [65] +10:16:25 [ 41] [ 8] [18001000] +10:16:25 [ 49] [ 3] [418] +10:16:25 ============================================================================ +10:16:25 Calculate Source COMM Id = 0 +10:16:25 ============================================================================ +10:16:25 + + +waiting on router queue for slot.... +10:16:29 ============================================================================ +10:16:29 Slot Id : <467> +10:16:29 Transaction Type : REQUEST +10:16:29 Received From : +10:16:29 ============================================================================ +10:16:29 FNo. Len. Field Value +10:16:29 ============================================================================ +10:16:29 [ 1] [ 4] [0800] +10:16:29 [ 2] [ 5] [02531] +10:16:29 [ 3] [ 6] [579108] +10:16:29 [ 7] [ 10] [0320031629] +10:16:29 [ 11] [ 6] [807008] +10:16:29 [ 15] [ 10] [0320031629] +10:16:29 [ 37] [ 11] [57910807008] +10:16:29 [ 70] [ 3] [001] +10:16:29 ============================================================================ +10:16:29 + + +waiting on router queue for slot.... +10:16:29 ============================================================================ +10:16:29 Slot Id : <467> +10:16:29 Transaction Type : RESPONSE +10:16:29 Received From : +10:16:29 ============================================================================ +10:16:29 FNo. Len. Field Value +10:16:29 ============================================================================ +10:16:29 [ 1] [ 4] [0810] +10:16:29 [ 7] [ 10] [0320031629] +10:16:29 [ 11] [ 6] [807008] +10:16:29 [ 15] [ 4] [0320] +10:16:29 [ 37] [ 12] [57910807008] +10:16:29 [ 39] [ 2] [00] +10:16:29 [ 70] [ 3] [001] +10:16:29 ============================================================================ +10:16:29 Sending to : +10:16:29 ============================================================================ +10:16:29 + + +waiting on router queue for slot.... +10:16:34 ============================================================================ +10:16:34 Slot Id : <40> +10:16:34 Transaction Type : REQUEST +10:16:34 Received From : +10:16:34 ============================================================================ +10:16:34 FNo. Len. Field Value +10:16:34 ============================================================================ +10:16:34 [ 1] [ 4] [0800] +10:16:34 [ 7] [ 10] [0320172823] +10:16:34 [ 11] [ 6] [102823] +10:16:34 [ 37] [ 12] [57910102823] +10:16:34 [ 70] [ 3] [301] +10:16:34 ============================================================================ +10:16:34 + + +waiting on router queue for slot.... +10:16:34 Sending to : +10:16:34 ============================================================================ +10:16:34 ============================================================================ +10:16:34 Slot Id : <40> +10:16:34 Transaction Type : RESPONSE +10:16:34 Received From : +10:16:34 ============================================================================ +10:16:34 FNo. Len. Field Value +10:16:34 ============================================================================ +10:16:34 [ 1] [ 4] [0810] +10:16:34 [ 7] [ 10] [0320172823] +10:16:34 [ 11] [ 6] [102823] +10:16:34 [ 37] [ 12] [579101028230] +10:16:34 [ 39] [ 2] [00] +10:16:34 [ 70] [ 3] [810] +10:16:34 ============================================================================ +10:16:34 Calculate Source COMM Id = 6 +10:16:34 ============================================================================ +10:16:34 + + +waiting on router queue for slot.... +10:16:37 ============================================================================ +10:16:37 Slot Id : <43> +10:16:37 Transaction Type : REQUEST +10:16:37 Received From : +10:16:37 ============================================================================ +10:16:37 FNo. Len. Field Value +10:16:37 ============================================================================ +10:16:37 [ 1] [ 4] [0800] +10:16:37 [ 7] [ 10] [0320031545] +10:16:37 [ 11] [ 6] [155813] +10:16:37 [ 70] [ 3] [301] +10:16:37 ============================================================================ +10:16:37 + + +waiting on router queue for slot.... +10:16:37 Sending to : +10:16:37 ============================================================================ +10:16:37 ============================================================================ +10:16:37 Slot Id : <43> +10:16:37 Transaction Type : RESPONSE +10:16:37 Received From : +10:16:37 ============================================================================ +10:16:37 FNo. Len. Field Value +10:16:37 ============================================================================ +10:16:37 [ 1] [ 4] [0810] +10:16:37 [ 7] [ 10] [0320031545] +10:16:37 [ 11] [ 6] [155813] +10:16:37 [ 39] [ 2] [00] +10:16:37 [ 70] [ 3] [301] +10:16:37 ============================================================================ +10:16:37 Calculate Source COMM Id = 2 +10:16:37 ============================================================================ +10:16:37 + + +waiting on router queue for slot.... +10:16:49 ============================================================================ +10:16:49 Slot Id : <28> +10:16:49 Transaction Type : REQUEST +10:16:49 Received From : +10:16:49 ============================================================================ +10:16:49 FNo. Len. Field Value +10:16:49 ============================================================================ +10:16:49 [ 1] [ 4] [0800] +10:16:49 [ 7] [ 10] [0320031556] +10:16:49 [ 11] [ 6] [155814] +10:16:49 [ 70] [ 3] [301] +10:16:49 ============================================================================ +10:16:49 + + +waiting on router queue for slot.... +10:16:49 Sending to : +10:16:49 ============================================================================ +10:16:49 ============================================================================ +10:16:49 Slot Id : <28> +10:16:49 Transaction Type : RESPONSE +10:16:49 Received From : +10:16:49 ============================================================================ +10:16:49 FNo. Len. Field Value +10:16:49 ============================================================================ +10:16:49 [ 1] [ 4] [0810] +10:16:49 [ 7] [ 10] [0320031556] +10:16:49 [ 11] [ 6] [155814] +10:16:49 [ 39] [ 2] [00] +10:16:49 [ 70] [ 3] [301] +10:16:49 ============================================================================ +10:16:49 Calculate Source COMM Id = 2 +10:16:49 ============================================================================ +10:16:49 + + +waiting on router queue for slot.... +10:16:52 ============================================================================ +10:16:52 Slot Id : <8> +10:16:52 Transaction Type : REQUEST +10:16:52 Received From : +10:16:52 ============================================================================ +10:16:52 FNo. Len. Field Value +10:16:52 ============================================================================ +10:16:52 [ 1] [ 4] [0200] +10:16:52 [ 2] [ 16] [6213545000974943] +10:16:52 [ 3] [ 6] [301000] +10:16:52 [ 7] [ 10] [0320031559] +10:16:52 [ 11] [ 6] [268017] +10:16:52 [ 12] [ 6] [101559] +10:16:52 [ 13] [ 4] [0320] +10:16:52 [ 14] [ 4] [4912] +10:16:52 [ 15] [ 4] [0320] +10:16:52 [ 18] [ 4] [6011] +10:16:52 [ 19] [ 3] [418] +10:16:52 [ 22] [ 3] [021] +10:16:52 [ 25] [ 2] [01] +10:16:52 [ 32] [ 6] [180893] +10:16:52 [ 35] [ 32] [6213545000974943=491212017494415] +10:16:52 [ 37] [ 12] [507903268017] +10:16:52 [ 41] [ 8] [0112CPBR] +10:16:52 [ 42] [ 15] [999999 ] +10:16:52 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:16:52 [ 49] [ 3] [418] +10:16:52 [ 52] [ 16] [6A16B9A0AA7D9884] +10:16:52 ============================================================================ +10:16:52 + + +waiting on router queue for slot.... +10:16:52 Sending to : +10:16:52 ============================================================================ +10:16:52 Sending to : +10:16:52 ============================================================================ +10:16:52 ============================================================================ +10:16:52 Slot Id : <8> +10:16:52 Transaction Type : REQUEST +10:16:52 Received From : +10:16:52 ============================================================================ +10:16:52 FNo. Len. Field Value +10:16:52 ============================================================================ +10:16:52 [ 1] [ 4] [0200] +10:16:52 [ 2] [ 16] [6213545000974943] +10:16:52 [ 3] [ 6] [301000] +10:16:52 [ 7] [ 10] [0320031559] +10:16:52 [ 11] [ 6] [268017] +10:16:52 [ 12] [ 6] [101559] +10:16:52 [ 13] [ 4] [0320] +10:16:52 [ 14] [ 4] [4912] +10:16:52 [ 15] [ 4] [0320] +10:16:52 [ 18] [ 4] [6011] +10:16:52 [ 19] [ 3] [418] +10:16:52 [ 22] [ 3] [021] +10:16:52 [ 25] [ 2] [01] +10:16:52 [ 32] [ 6] [180893] +10:16:52 [ 35] [ 32] [6213545000974943=491212017494415] +10:16:52 [ 37] [ 12] [507903268017] +10:16:52 [ 41] [ 8] [0112CPBR] +10:16:52 [ 42] [ 15] [999999 ] +10:16:52 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:16:52 [ 49] [ 3] [418] +10:16:52 [ 52] [ 16] [6A16B9A0AA7D9884] +10:16:52 ============================================================================ +10:16:52 + + +waiting on router queue for slot.... +10:16:52 Sending to : +10:16:52 ============================================================================ +10:16:52 ============================================================================ +10:16:52 Slot Id : <8> +10:16:52 Transaction Type : REQUEST +10:16:52 Received From : +10:16:52 ============================================================================ +10:16:52 FNo. Len. Field Value +10:16:52 ============================================================================ +10:16:52 [ 1] [ 4] [0200] +10:16:52 [ 2] [ 16] [6213545000974943] +10:16:52 [ 3] [ 6] [301000] +10:16:52 [ 7] [ 10] [0320031559] +10:16:52 [ 11] [ 6] [268017] +10:16:52 [ 12] [ 6] [101559] +10:16:52 [ 13] [ 4] [0320] +10:16:52 [ 14] [ 4] [4912] +10:16:52 [ 15] [ 4] [0320] +10:16:52 [ 18] [ 4] [6011] +10:16:52 [ 19] [ 3] [418] +10:16:52 [ 22] [ 3] [021] +10:16:52 [ 25] [ 2] [01] +10:16:52 [ 32] [ 6] [180893] +10:16:52 [ 35] [ 32] [6213545000974943=491212017494415] +10:16:52 [ 37] [ 12] [507903268017] +10:16:52 [ 41] [ 8] [0112CPBR] +10:16:52 [ 42] [ 15] [999999 ] +10:16:52 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:16:52 [ 49] [ 3] [418] +10:16:52 [ 52] [ 16] [B828E568764EA9E2] +10:16:52 ============================================================================ +10:16:52 + + +waiting on router queue for slot.... +10:16:52 Sending to : <0> +10:16:52 ============================================================================ +10:16:53 ============================================================================ +10:16:53 Slot Id : <8> +10:16:53 Transaction Type : RESPONSE +10:16:53 Received From : +10:16:53 ============================================================================ +10:16:53 FNo. Len. Field Value +10:16:53 ============================================================================ +10:16:53 [ 1] [ 4] [0210] +10:16:53 [ 2] [ 16] [6213545000974943] +10:16:53 [ 3] [ 6] [301000] +10:16:53 [ 4] [ 12] [000000000000] +10:16:53 [ 7] [ 10] [0320031559] +10:16:53 [ 11] [ 6] [268017] +10:16:53 [ 12] [ 6] [101559] +10:16:53 [ 13] [ 4] [0320] +10:16:53 [ 15] [ 4] [0320] +10:16:53 [ 18] [ 4] [6011] +10:16:53 [ 19] [ 3] [418] +10:16:53 [ 32] [ 6] [180893] +10:16:53 [ 35] [ 32] [6213545000974943=491212017494415] +10:16:53 [ 37] [ 12] [507903268017] +10:16:53 [ 38] [ 6] [851923] +10:16:53 [ 39] [ 2] [00] +10:16:53 [ 41] [ 8] [0112CPBR] +10:16:53 [ 49] [ 3] [418] +10:16:53 [ 54] [ 40] [1001418C0002178441971002418C000217844197] +10:16:53 ============================================================================ +10:16:53 Sending to : +10:16:53 ============================================================================ +10:16:53 + + +waiting on router queue for slot.... +10:16:54 ============================================================================ +10:16:54 Slot Id : <8> +10:16:54 Transaction Type : RESPONSE +10:16:54 Received From : +10:16:54 ============================================================================ +10:16:54 FNo. Len. Field Value +10:16:54 ============================================================================ +10:16:54 [ 1] [ 4] [0210] +10:16:54 [ 2] [ 16] [6213545000974943] +10:16:54 [ 3] [ 6] [301000] +10:16:54 [ 4] [ 12] [000000000000] +10:16:54 [ 7] [ 10] [0320031559] +10:16:54 [ 11] [ 6] [268017] +10:16:54 [ 12] [ 6] [101559] +10:16:54 [ 13] [ 4] [0320] +10:16:54 [ 15] [ 4] [0320] +10:16:54 [ 18] [ 4] [6011] +10:16:54 [ 19] [ 3] [418] +10:16:54 [ 32] [ 6] [180893] +10:16:54 [ 35] [ 32] [6213545000974943=491212017494415] +10:16:54 [ 37] [ 12] [507903268017] +10:16:54 [ 38] [ 6] [851923] +10:16:54 [ 39] [ 2] [00] +10:16:54 [ 41] [ 8] [0112CPBR] +10:16:54 [ 49] [ 3] [418] +10:16:54 [ 54] [ 40] [1001418C0002178441971002418C000217844197] +10:16:54 ============================================================================ +10:16:54 Calculate Source COMM Id = 2 +10:16:54 ============================================================================ +10:16:54 + + +waiting on router queue for slot.... +10:17:01 ============================================================================ +10:17:01 Slot Id : <50> +10:17:01 Transaction Type : REQUEST +10:17:01 Received From : +10:17:01 ============================================================================ +10:17:01 FNo. Len. Field Value +10:17:01 ============================================================================ +10:17:01 [ 1] [ 4] [0200] +10:17:01 [ 2] [ 16] [1808931100001815] +10:17:01 [ 3] [ 6] [311000] +10:17:01 [ 4] [ 12] [000000000000] +10:17:01 [ 7] [ 10] [0320102449] +10:17:01 [ 11] [ 6] [013414] +10:17:01 [ 12] [ 6] [102449] +10:17:01 [ 13] [ 4] [0320] +10:17:01 [ 14] [ 4] [1803] +10:17:01 [ 15] [ 4] [0320] +10:17:01 [ 18] [ 4] [6011] +10:17:01 [ 22] [ 3] [900] +10:17:01 [ 25] [ 2] [02] +10:17:01 [ 28] [ 9] [000000000] +10:17:01 [ 32] [ 6] [220699] +10:17:01 [ 35] [ 27] [1808931100001815=1803500740] +10:17:01 [ 37] [ 12] [507900200947] +10:17:01 [ 41] [ 8] [09000100] +10:17:01 [ 42] [ 15] [APTRA ] +10:17:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:17:01 [ 49] [ 3] [418] +10:17:01 [ 52] [ 16] [3BFE3C6B0167F4E6] +10:17:01 ============================================================================ +10:17:01 + + +waiting on router queue for slot.... +10:17:01 Sending to : +10:17:01 ============================================================================ +10:17:01 Sending to : +10:17:01 ============================================================================ +10:17:01 ============================================================================ +10:17:01 Slot Id : <50> +10:17:01 Transaction Type : REQUEST +10:17:01 Received From : +10:17:01 ============================================================================ +10:17:01 FNo. Len. Field Value +10:17:01 ============================================================================ +10:17:01 [ 1] [ 4] [0200] +10:17:01 [ 2] [ 16] [1808931100001815] +10:17:01 [ 3] [ 6] [311000] +10:17:01 [ 4] [ 12] [000000000000] +10:17:01 [ 7] [ 10] [0320102449] +10:17:01 [ 11] [ 6] [013414] +10:17:01 [ 12] [ 6] [102449] +10:17:01 [ 13] [ 4] [0320] +10:17:01 [ 14] [ 4] [1803] +10:17:01 [ 15] [ 4] [0320] +10:17:01 [ 18] [ 4] [6011] +10:17:01 [ 22] [ 3] [900] +10:17:01 [ 25] [ 2] [02] +10:17:01 [ 28] [ 9] [000000000] +10:17:01 [ 32] [ 6] [220699] +10:17:01 [ 35] [ 27] [1808931100001815=1803500740] +10:17:01 [ 37] [ 12] [507900200947] +10:17:01 [ 41] [ 8] [09000100] +10:17:01 [ 42] [ 15] [APTRA ] +10:17:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:17:01 [ 49] [ 3] [418] +10:17:01 [ 52] [ 16] [3BFE3C6B0167F4E6] +10:17:01 ============================================================================ +10:17:01 + + +waiting on router queue for slot.... +10:17:01 Sending to : +10:17:01 ============================================================================ +10:17:01 ============================================================================ +10:17:01 Slot Id : <50> +10:17:01 Transaction Type : REQUEST +10:17:01 Received From : +10:17:01 ============================================================================ +10:17:01 FNo. Len. Field Value +10:17:01 ============================================================================ +10:17:01 [ 1] [ 4] [0200] +10:17:01 [ 2] [ 16] [1808931100001815] +10:17:01 [ 3] [ 6] [311000] +10:17:01 [ 4] [ 12] [000000000000] +10:17:01 [ 7] [ 10] [0320102449] +10:17:01 [ 11] [ 6] [013414] +10:17:01 [ 12] [ 6] [102449] +10:17:01 [ 13] [ 4] [0320] +10:17:01 [ 14] [ 4] [1803] +10:17:01 [ 15] [ 4] [0320] +10:17:01 [ 18] [ 4] [6011] +10:17:01 [ 22] [ 3] [900] +10:17:01 [ 25] [ 2] [02] +10:17:01 [ 28] [ 9] [000000000] +10:17:01 [ 32] [ 6] [220699] +10:17:01 [ 35] [ 27] [1808931100001815=1803500740] +10:17:01 [ 37] [ 12] [507900200947] +10:17:01 [ 41] [ 8] [09000100] +10:17:01 [ 42] [ 15] [APTRA ] +10:17:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:17:01 [ 49] [ 3] [418] +10:17:01 [ 52] [ 16] [FE0D28F6DC501D41] +10:17:01 ============================================================================ +10:17:01 + + +waiting on router queue for slot.... +10:17:01 Sending to : <2> +10:17:01 ============================================================================ +10:17:03 ============================================================================ +10:17:03 Slot Id : <52> +10:17:03 Transaction Type : REQUEST +10:17:03 Received From : +10:17:03 ============================================================================ +10:17:03 FNo. Len. Field Value +10:17:03 ============================================================================ +10:17:03 [ 1] [ 4] [0200] +10:17:03 [ 2] [ 16] [6213541000206253] +10:17:03 [ 3] [ 6] [311000] +10:17:03 [ 4] [ 12] [000000000000] +10:17:03 [ 7] [ 10] [0320102449] +10:17:03 [ 11] [ 6] [251134] +10:17:03 [ 12] [ 6] [102449] +10:17:03 [ 13] [ 4] [0320] +10:17:03 [ 14] [ 4] [4912] +10:17:03 [ 15] [ 4] [0320] +10:17:03 [ 18] [ 4] [6011] +10:17:03 [ 22] [ 3] [900] +10:17:03 [ 25] [ 2] [02] +10:17:03 [ 28] [ 9] [000000000] +10:17:03 [ 32] [ 6] [220699] +10:17:03 [ 35] [ 32] [6213541000206253=491212010625123] +10:17:03 [ 37] [ 12] [507900336145] +10:17:03 [ 41] [ 8] [01001900] +10:17:03 [ 42] [ 15] [APTRA ] +10:17:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:17:03 [ 49] [ 3] [418] +10:17:03 [ 52] [ 16] [96CF739332EC239E] +10:17:03 ============================================================================ +10:17:03 + + +waiting on router queue for slot.... +10:17:03 Sending to : +10:17:03 ============================================================================ +10:17:03 Sending to : +10:17:03 ============================================================================ +10:17:03 ============================================================================ +10:17:03 Slot Id : <52> +10:17:03 Transaction Type : REQUEST +10:17:03 Received From : +10:17:03 ============================================================================ +10:17:03 FNo. Len. Field Value +10:17:03 ============================================================================ +10:17:03 [ 1] [ 4] [0200] +10:17:03 [ 2] [ 16] [6213541000206253] +10:17:03 [ 3] [ 6] [311000] +10:17:03 [ 4] [ 12] [000000000000] +10:17:03 [ 7] [ 10] [0320102449] +10:17:03 [ 11] [ 6] [251134] +10:17:03 [ 12] [ 6] [102449] +10:17:03 [ 13] [ 4] [0320] +10:17:03 [ 14] [ 4] [4912] +10:17:03 [ 15] [ 4] [0320] +10:17:03 [ 18] [ 4] [6011] +10:17:03 [ 22] [ 3] [900] +10:17:03 [ 25] [ 2] [02] +10:17:03 [ 28] [ 9] [000000000] +10:17:03 [ 32] [ 6] [220699] +10:17:03 [ 35] [ 32] [6213541000206253=491212010625123] +10:17:03 [ 37] [ 12] [507900336145] +10:17:03 [ 41] [ 8] [01001900] +10:17:03 [ 42] [ 15] [APTRA ] +10:17:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:17:03 [ 49] [ 3] [418] +10:17:03 [ 52] [ 16] [96CF739332EC239E] +10:17:03 ============================================================================ +10:17:03 + + +waiting on router queue for slot.... +10:17:03 Sending to : +10:17:03 ============================================================================ +10:17:03 ============================================================================ +10:17:03 Slot Id : <52> +10:17:03 Transaction Type : REQUEST +10:17:03 Received From : +10:17:03 ============================================================================ +10:17:03 FNo. Len. Field Value +10:17:03 ============================================================================ +10:17:03 [ 1] [ 4] [0200] +10:17:03 [ 2] [ 16] [6213541000206253] +10:17:03 [ 3] [ 6] [311000] +10:17:03 [ 4] [ 12] [000000000000] +10:17:03 [ 7] [ 10] [0320102449] +10:17:03 [ 11] [ 6] [251134] +10:17:03 [ 12] [ 6] [102449] +10:17:03 [ 13] [ 4] [0320] +10:17:03 [ 14] [ 4] [4912] +10:17:03 [ 15] [ 4] [0320] +10:17:03 [ 18] [ 4] [6011] +10:17:03 [ 22] [ 3] [900] +10:17:03 [ 25] [ 2] [02] +10:17:03 [ 28] [ 9] [000000000] +10:17:03 [ 32] [ 6] [220699] +10:17:03 [ 35] [ 32] [6213541000206253=491212010625123] +10:17:03 [ 37] [ 12] [507900336145] +10:17:03 [ 41] [ 8] [01001900] +10:17:03 [ 42] [ 15] [APTRA ] +10:17:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:17:03 [ 49] [ 3] [418] +10:17:03 [ 52] [ 16] [A327E55E0168DADD] +10:17:03 ============================================================================ +10:17:03 + + +waiting on router queue for slot.... +10:17:03 Sending to : <0> +10:17:03 ============================================================================ +10:17:03 ============================================================================ +10:17:03 Slot Id : <52> +10:17:03 Transaction Type : RESPONSE +10:17:03 Received From : +10:17:03 ============================================================================ +10:17:03 FNo. Len. Field Value +10:17:03 ============================================================================ +10:17:03 [ 1] [ 4] [0210] +10:17:03 [ 2] [ 16] [6213541000206253] +10:17:03 [ 3] [ 6] [311000] +10:17:03 [ 4] [ 12] [000000000000] +10:17:03 [ 7] [ 10] [0320102449] +10:17:03 [ 11] [ 6] [251134] +10:17:03 [ 12] [ 6] [102449] +10:17:03 [ 13] [ 4] [0320] +10:17:03 [ 15] [ 4] [0320] +10:17:03 [ 18] [ 4] [6011] +10:17:03 [ 32] [ 6] [220699] +10:17:03 [ 35] [ 32] [6213541000206253=491212010625123] +10:17:03 [ 37] [ 12] [507900336145] +10:17:03 [ 38] [ 6] [444191] +10:17:03 [ 39] [ 2] [00] +10:17:03 [ 41] [ 8] [01001900] +10:17:03 [ 49] [ 3] [418] +10:17:03 [ 54] [ 40] [1001418C0126001482711002418C012600148271] +10:17:03 ============================================================================ +10:17:03 Sending to : +10:17:03 ============================================================================ +10:17:03 + + +waiting on router queue for slot.... +10:17:05 ============================================================================ +10:17:05 Slot Id : <52> +10:17:05 Transaction Type : RESPONSE +10:17:05 Received From : +10:17:05 ============================================================================ +10:17:05 FNo. Len. Field Value +10:17:05 ============================================================================ +10:17:05 [ 1] [ 4] [0210] +10:17:05 [ 2] [ 16] [6213541000206253] +10:17:05 [ 3] [ 6] [311000] +10:17:05 [ 4] [ 12] [000000000000] +10:17:05 [ 7] [ 10] [0320102449] +10:17:05 [ 11] [ 6] [251134] +10:17:05 [ 12] [ 6] [102449] +10:17:05 [ 13] [ 4] [0320] +10:17:05 [ 15] [ 4] [0320] +10:17:05 [ 18] [ 4] [6011] +10:17:05 [ 32] [ 6] [220699] +10:17:05 [ 35] [ 32] [6213541000206253=491212010625123] +10:17:05 [ 37] [ 12] [507900336145] +10:17:05 [ 38] [ 6] [444191] +10:17:05 [ 39] [ 2] [00] +10:17:05 [ 41] [ 8] [01001900] +10:17:05 [ 49] [ 3] [418] +10:17:05 [ 54] [ 40] [1001418C0126001482711002418C012600148271] +10:17:05 ============================================================================ +10:17:05 Calculate Source COMM Id = 1 +10:17:05 ============================================================================ +10:17:05 + + +waiting on router queue for slot.... +10:17:11 ============================================================================ +10:17:11 Slot Id : <50> +10:17:11 Transaction Type : RESPONSE +10:17:11 Received From : +10:17:11 ============================================================================ +10:17:11 FNo. Len. Field Value +10:17:11 ============================================================================ +10:17:11 [ 1] [ 4] [0210] +10:17:11 [ 2] [ 16] [1808931100001815] +10:17:11 [ 3] [ 6] [301000] +10:17:11 [ 7] [ 10] [0320102449] +10:17:11 [ 11] [ 6] [013414] +10:17:11 [ 12] [ 6] [102449] +10:17:11 [ 13] [ 4] [0320] +10:17:11 [ 14] [ 4] [1803] +10:17:11 [ 19] [ 3] [418] +10:17:11 [ 32] [ 6] [220699] +10:17:11 [ 37] [ 12] [507900200947] +10:17:11 [ 38] [ 6] [013414] +10:17:11 [ 39] [ 2] [00] +10:17:11 [ 41] [ 8] [09000100] +10:17:11 [ 49] [ 3] [418] +10:17:11 [ 52] [ 16] [FE0D28F6DC501D41] +10:17:11 [ 54] [ 20] [1002418C000507348000] +10:17:11 ============================================================================ +10:17:11 Sending to : +10:17:11 ============================================================================ +10:17:11 + + +waiting on router queue for slot.... +10:17:13 ============================================================================ +10:17:13 Slot Id : <50> +10:17:13 Transaction Type : RESPONSE +10:17:13 Received From : +10:17:13 ============================================================================ +10:17:13 FNo. Len. Field Value +10:17:13 ============================================================================ +10:17:13 [ 1] [ 4] [0210] +10:17:13 [ 2] [ 16] [1808931100001815] +10:17:13 [ 3] [ 6] [301000] +10:17:13 [ 7] [ 10] [0320102449] +10:17:13 [ 11] [ 6] [013414] +10:17:13 [ 12] [ 6] [102449] +10:17:13 [ 13] [ 4] [0320] +10:17:13 [ 14] [ 4] [1803] +10:17:13 [ 19] [ 3] [418] +10:17:13 [ 32] [ 6] [220699] +10:17:13 [ 37] [ 12] [507900200947] +10:17:13 [ 38] [ 6] [013414] +10:17:13 [ 39] [ 2] [00] +10:17:13 [ 41] [ 8] [09000100] +10:17:13 [ 49] [ 3] [418] +10:17:13 [ 52] [ 16] [FE0D28F6DC501D41] +10:17:13 [ 54] [ 20] [1002418C000507348000] +10:17:13 ============================================================================ +10:17:13 Calculate Source COMM Id = 1 +10:17:13 ============================================================================ +10:17:13 + + +waiting on router queue for slot.... +10:17:14 ============================================================================ +10:17:14 Slot Id : <44> +10:17:14 Transaction Type : REQUEST +10:17:14 Received From : +10:17:14 ============================================================================ +10:17:14 FNo. Len. Field Value +10:17:14 ============================================================================ +10:17:14 [ 1] [ 4] [0200] +10:17:14 [ 2] [ 16] [1808931800012831] +10:17:14 [ 3] [ 6] [011000] +10:17:14 [ 4] [ 12] [000100000000] +10:17:14 [ 7] [ 10] [0320101710] +10:17:14 [ 11] [ 6] [711717] +10:17:14 [ 12] [ 6] [101710] +10:17:14 [ 13] [ 4] [0320] +10:17:14 [ 15] [ 4] [0320] +10:17:14 [ 18] [ 4] [6011] +10:17:14 [ 22] [ 3] [900] +10:17:14 [ 25] [ 2] [02] +10:17:14 [ 28] [ 9] [D00002000] +10:17:14 [ 32] [ 6] [621354] +10:17:14 [ 35] [ 27] [1808931800012831=1803500526] +10:17:14 [ 37] [ 12] [507904635529] +10:17:14 [ 41] [ 8] [17000800] +10:17:14 [ 42] [ 15] [NATIVE ] +10:17:14 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:17:14 [ 49] [ 3] [418] +10:17:14 [ 52] [ 16] [1A27F7C95ADF5354] +10:17:14 ============================================================================ +10:17:14 + + +waiting on router queue for slot.... +10:17:14 Sending to : +10:17:14 ============================================================================ +10:17:14 Sending to : +10:17:14 ============================================================================ +10:17:14 ============================================================================ +10:17:14 Slot Id : <44> +10:17:14 Transaction Type : REQUEST +10:17:14 Received From : +10:17:14 ============================================================================ +10:17:14 FNo. Len. Field Value +10:17:14 ============================================================================ +10:17:14 [ 1] [ 4] [0200] +10:17:14 [ 2] [ 16] [1808931800012831] +10:17:14 [ 3] [ 6] [011000] +10:17:14 [ 4] [ 12] [000100000000] +10:17:14 [ 7] [ 10] [0320101710] +10:17:14 [ 11] [ 6] [711717] +10:17:14 [ 12] [ 6] [101710] +10:17:14 [ 13] [ 4] [0320] +10:17:14 [ 15] [ 4] [0320] +10:17:14 [ 18] [ 4] [6011] +10:17:14 [ 22] [ 3] [900] +10:17:14 [ 25] [ 2] [02] +10:17:14 [ 28] [ 9] [D00002000] +10:17:14 [ 32] [ 6] [621354] +10:17:14 [ 35] [ 27] [1808931800012831=1803500526] +10:17:14 [ 37] [ 12] [507904635529] +10:17:14 [ 41] [ 8] [17000800] +10:17:14 [ 42] [ 15] [NATIVE ] +10:17:14 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:17:14 [ 49] [ 3] [418] +10:17:14 [ 52] [ 16] [1A27F7C95ADF5354] +10:17:14 ============================================================================ +10:17:14 + + +waiting on router queue for slot.... +10:17:14 Sending to : +10:17:14 ============================================================================ +10:17:14 ============================================================================ +10:17:14 Slot Id : <44> +10:17:14 Transaction Type : REQUEST +10:17:14 Received From : +10:17:14 ============================================================================ +10:17:14 FNo. Len. Field Value +10:17:14 ============================================================================ +10:17:14 [ 1] [ 4] [0200] +10:17:14 [ 2] [ 16] [1808931800012831] +10:17:14 [ 3] [ 6] [011000] +10:17:14 [ 4] [ 12] [000100000000] +10:17:14 [ 7] [ 10] [0320101710] +10:17:14 [ 11] [ 6] [711717] +10:17:14 [ 12] [ 6] [101710] +10:17:14 [ 13] [ 4] [0320] +10:17:14 [ 15] [ 4] [0320] +10:17:14 [ 18] [ 4] [6011] +10:17:14 [ 22] [ 3] [900] +10:17:14 [ 25] [ 2] [02] +10:17:14 [ 28] [ 9] [D00002000] +10:17:14 [ 32] [ 6] [621354] +10:17:14 [ 35] [ 27] [1808931800012831=1803500526] +10:17:14 [ 37] [ 12] [507904635529] +10:17:14 [ 41] [ 8] [17000800] +10:17:14 [ 42] [ 15] [NATIVE ] +10:17:14 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:17:14 [ 49] [ 3] [418] +10:17:14 [ 52] [ 16] [EFAE0A9A7D022BF2] +10:17:14 ============================================================================ +10:17:14 + + +waiting on router queue for slot.... +10:17:14 Sending to : <2> +10:17:14 ============================================================================ +10:17:25 ============================================================================ +10:17:25 Slot Id : <44> +10:17:25 Transaction Type : RESPONSE +10:17:25 Received From : +10:17:25 ============================================================================ +10:17:25 FNo. Len. Field Value +10:17:25 ============================================================================ +10:17:25 [ 1] [ 4] [0210] +10:17:25 [ 2] [ 16] [1808931800012831] +10:17:25 [ 3] [ 6] [011000] +10:17:25 [ 4] [ 12] [000100000000] +10:17:25 [ 6] [ 12] [000100000000] +10:17:25 [ 7] [ 10] [0320101710] +10:17:25 [ 11] [ 6] [711717] +10:17:25 [ 12] [ 6] [101710] +10:17:25 [ 13] [ 4] [0320] +10:17:25 [ 18] [ 4] [6011] +10:17:25 [ 19] [ 3] [418] +10:17:25 [ 22] [ 3] [021] +10:17:25 [ 32] [ 6] [621354] +10:17:25 [ 35] [ 27] [1808931800012831=1803500526] +10:17:25 [ 37] [ 12] [507904635529] +10:17:25 [ 38] [ 6] [711717] +10:17:25 [ 39] [ 2] [00] +10:17:25 [ 41] [ 8] [17000800] +10:17:25 [ 49] [ 3] [418] +10:17:25 [ 52] [ 16] [EFAE0A9A7D022BF2] +10:17:25 [ 54] [ 20] [1001418C000093978400] +10:17:25 ============================================================================ +10:17:25 Sending to : +10:17:25 ============================================================================ +10:17:25 + + +waiting on router queue for slot.... +10:17:27 ============================================================================ +10:17:27 Slot Id : <44> +10:17:27 Transaction Type : RESPONSE +10:17:27 Received From : +10:17:27 ============================================================================ +10:17:27 FNo. Len. Field Value +10:17:27 ============================================================================ +10:17:27 [ 1] [ 4] [0210] +10:17:27 [ 2] [ 16] [1808931800012831] +10:17:27 [ 3] [ 6] [011000] +10:17:27 [ 4] [ 12] [000100000000] +10:17:27 [ 6] [ 12] [000100000000] +10:17:27 [ 7] [ 10] [0320101710] +10:17:27 [ 11] [ 6] [711717] +10:17:27 [ 12] [ 6] [101710] +10:17:27 [ 13] [ 4] [0320] +10:17:27 [ 18] [ 4] [6011] +10:17:27 [ 19] [ 3] [418] +10:17:27 [ 22] [ 3] [021] +10:17:27 [ 32] [ 6] [621354] +10:17:27 [ 35] [ 27] [1808931800012831=1803500526] +10:17:27 [ 37] [ 12] [507904635529] +10:17:27 [ 38] [ 6] [711717] +10:17:27 [ 39] [ 2] [00] +10:17:27 [ 41] [ 8] [17000800] +10:17:27 [ 49] [ 3] [418] +10:17:27 [ 52] [ 16] [EFAE0A9A7D022BF2] +10:17:27 [ 54] [ 20] [1001418C000093978400] +10:17:27 ============================================================================ +10:17:27 Calculate Source COMM Id = 0 +10:17:27 ============================================================================ +10:17:27 + + +waiting on router queue for slot.... +10:17:30 ============================================================================ +10:17:30 Slot Id : <25> +10:17:30 Transaction Type : REQUEST +10:17:30 Received From : +10:17:30 ============================================================================ +10:17:30 FNo. Len. Field Value +10:17:30 ============================================================================ +10:17:30 [ 1] [ 4] [0800] +10:17:30 [ 7] [ 10] [0320031637] +10:17:30 [ 11] [ 6] [155815] +10:17:30 [ 70] [ 3] [301] +10:17:30 ============================================================================ +10:17:30 + + +waiting on router queue for slot.... +10:17:30 Sending to : +10:17:30 ============================================================================ +10:17:30 ============================================================================ +10:17:30 Slot Id : <25> +10:17:30 Transaction Type : RESPONSE +10:17:30 Received From : +10:17:30 ============================================================================ +10:17:30 FNo. Len. Field Value +10:17:30 ============================================================================ +10:17:30 [ 1] [ 4] [0810] +10:17:30 [ 7] [ 10] [0320031637] +10:17:30 [ 11] [ 6] [155815] +10:17:30 [ 39] [ 2] [00] +10:17:30 [ 70] [ 3] [301] +10:17:30 ============================================================================ +10:17:30 Calculate Source COMM Id = 2 +10:17:30 ============================================================================ +10:17:30 + + +waiting on router queue for slot.... +10:17:31 ============================================================================ +10:17:31 Slot Id : <61> +10:17:31 Transaction Type : REQUEST +10:17:31 Received From : +10:17:31 ============================================================================ +10:17:31 FNo. Len. Field Value +10:17:31 ============================================================================ +10:17:31 [ 1] [ 4] [0800] +10:17:31 [ 2] [ 5] [02531] +10:17:31 [ 3] [ 6] [579108] +10:17:31 [ 7] [ 10] [0320031731] +10:17:31 [ 11] [ 6] [807009] +10:17:31 [ 15] [ 10] [0320031731] +10:17:31 [ 37] [ 11] [57910807009] +10:17:31 [ 70] [ 3] [001] +10:17:31 ============================================================================ +10:17:31 + + +waiting on router queue for slot.... +10:17:31 ============================================================================ +10:17:31 Slot Id : <61> +10:17:31 Transaction Type : RESPONSE +10:17:31 Received From : +10:17:31 ============================================================================ +10:17:31 FNo. Len. Field Value +10:17:31 ============================================================================ +10:17:31 [ 1] [ 4] [0810] +10:17:31 [ 7] [ 10] [0320031731] +10:17:31 [ 11] [ 6] [807009] +10:17:31 [ 15] [ 4] [0320] +10:17:31 [ 37] [ 12] [57910807009] +10:17:31 [ 39] [ 2] [00] +10:17:31 [ 70] [ 3] [001] +10:17:31 ============================================================================ +10:17:31 Sending to : +10:17:31 ============================================================================ +10:17:31 + + +waiting on router queue for slot.... +10:17:38 ============================================================================ +10:17:38 Slot Id : <15> +10:17:38 Transaction Type : REQUEST +10:17:38 Received From : +10:17:38 ============================================================================ +10:17:38 FNo. Len. Field Value +10:17:38 ============================================================================ +10:17:38 [ 1] [ 4] [0200] +10:17:38 [ 2] [ 16] [6213545000974943] +10:17:38 [ 3] [ 6] [010000] +10:17:38 [ 4] [ 12] [000100000000] +10:17:38 [ 7] [ 10] [0320031646] +10:17:38 [ 11] [ 6] [268024] +10:17:38 [ 12] [ 6] [101646] +10:17:38 [ 13] [ 4] [0320] +10:17:38 [ 14] [ 4] [4912] +10:17:38 [ 15] [ 4] [0320] +10:17:38 [ 18] [ 4] [6011] +10:17:38 [ 19] [ 3] [418] +10:17:38 [ 22] [ 3] [021] +10:17:38 [ 25] [ 2] [01] +10:17:38 [ 28] [ 9] [D00002000] +10:17:38 [ 32] [ 6] [180893] +10:17:38 [ 35] [ 32] [6213545000974943=491212017494415] +10:17:38 [ 37] [ 12] [507903268024] +10:17:38 [ 41] [ 8] [0112CPBR] +10:17:38 [ 42] [ 15] [999999 ] +10:17:38 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:17:38 [ 49] [ 3] [418] +10:17:38 [ 52] [ 16] [6A16B9A0AA7D9884] +10:17:38 ============================================================================ +10:17:38 + + +waiting on router queue for slot.... +10:17:38 Sending to : +10:17:38 ============================================================================ +10:17:38 Sending to : +10:17:38 ============================================================================ +10:17:39 ============================================================================ +10:17:39 Slot Id : <15> +10:17:39 Transaction Type : REQUEST +10:17:39 Received From : +10:17:39 ============================================================================ +10:17:39 FNo. Len. Field Value +10:17:39 ============================================================================ +10:17:39 [ 1] [ 4] [0200] +10:17:39 [ 2] [ 16] [6213545000974943] +10:17:39 [ 3] [ 6] [010000] +10:17:39 [ 4] [ 12] [000100000000] +10:17:39 [ 7] [ 10] [0320031646] +10:17:39 [ 11] [ 6] [268024] +10:17:39 [ 12] [ 6] [101646] +10:17:39 [ 13] [ 4] [0320] +10:17:39 [ 14] [ 4] [4912] +10:17:39 [ 15] [ 4] [0320] +10:17:39 [ 18] [ 4] [6011] +10:17:39 [ 19] [ 3] [418] +10:17:39 [ 22] [ 3] [021] +10:17:39 [ 25] [ 2] [01] +10:17:39 [ 28] [ 9] [D00002000] +10:17:39 [ 32] [ 6] [180893] +10:17:39 [ 35] [ 32] [6213545000974943=491212017494415] +10:17:39 [ 37] [ 12] [507903268024] +10:17:39 [ 41] [ 8] [0112CPBR] +10:17:39 [ 42] [ 15] [999999 ] +10:17:39 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:17:39 [ 49] [ 3] [418] +10:17:39 [ 52] [ 16] [6A16B9A0AA7D9884] +10:17:39 ============================================================================ +10:17:39 + + +waiting on router queue for slot.... +10:17:39 Sending to : +10:17:39 ============================================================================ +10:17:39 ============================================================================ +10:17:39 Slot Id : <15> +10:17:39 Transaction Type : REQUEST +10:17:39 Received From : +10:17:39 ============================================================================ +10:17:39 FNo. Len. Field Value +10:17:39 ============================================================================ +10:17:39 [ 1] [ 4] [0200] +10:17:39 [ 2] [ 16] [6213545000974943] +10:17:39 [ 3] [ 6] [010000] +10:17:39 [ 4] [ 12] [000100000000] +10:17:39 [ 7] [ 10] [0320031646] +10:17:39 [ 11] [ 6] [268024] +10:17:39 [ 12] [ 6] [101646] +10:17:39 [ 13] [ 4] [0320] +10:17:39 [ 14] [ 4] [4912] +10:17:39 [ 15] [ 4] [0320] +10:17:39 [ 18] [ 4] [6011] +10:17:39 [ 19] [ 3] [418] +10:17:39 [ 22] [ 3] [021] +10:17:39 [ 25] [ 2] [01] +10:17:39 [ 28] [ 9] [D00002000] +10:17:39 [ 32] [ 6] [180893] +10:17:39 [ 35] [ 32] [6213545000974943=491212017494415] +10:17:39 [ 37] [ 12] [507903268024] +10:17:39 [ 41] [ 8] [0112CPBR] +10:17:39 [ 42] [ 15] [999999 ] +10:17:39 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:17:39 [ 49] [ 3] [418] +10:17:39 [ 52] [ 16] [B828E568764EA9E2] +10:17:39 ============================================================================ +10:17:39 + + +waiting on router queue for slot.... +10:17:39 Sending to : <0> +10:17:39 ============================================================================ +10:17:39 ============================================================================ +10:17:39 Slot Id : <15> +10:17:39 Transaction Type : RESPONSE +10:17:39 Received From : +10:17:39 ============================================================================ +10:17:39 FNo. Len. Field Value +10:17:39 ============================================================================ +10:17:39 [ 1] [ 4] [0210] +10:17:39 [ 2] [ 16] [6213545000974943] +10:17:39 [ 3] [ 6] [010000] +10:17:39 [ 4] [ 12] [000100000000] +10:17:39 [ 7] [ 10] [0320031646] +10:17:39 [ 11] [ 6] [268024] +10:17:39 [ 12] [ 6] [101646] +10:17:39 [ 13] [ 4] [0320] +10:17:39 [ 15] [ 4] [0320] +10:17:39 [ 18] [ 4] [6011] +10:17:39 [ 19] [ 3] [418] +10:17:39 [ 32] [ 6] [180893] +10:17:39 [ 35] [ 32] [6213545000974943=491212017494415] +10:17:39 [ 37] [ 12] [507903268024] +10:17:39 [ 38] [ 6] [216581] +10:17:39 [ 39] [ 2] [00] +10:17:39 [ 41] [ 8] [0112CPBR] +10:17:39 [ 49] [ 3] [418] +10:17:39 [ 54] [ 40] [0001418C0001176441970002418C000117644197] +10:17:39 ============================================================================ +10:17:39 Sending to : +10:17:39 ============================================================================ +10:17:39 + + +waiting on router queue for slot.... +10:17:39 ============================================================================ +10:17:39 Slot Id : <55> +10:17:39 Transaction Type : REQUEST +10:17:39 Received From : +10:17:39 ============================================================================ +10:17:39 FNo. Len. Field Value +10:17:39 ============================================================================ +10:17:39 [ 1] [ 4] [0800] +10:17:39 [ 7] [ 10] [0320172929] +10:17:39 [ 11] [ 6] [102929] +10:17:39 [ 37] [ 12] [57910102929] +10:17:39 [ 70] [ 3] [301] +10:17:39 ============================================================================ +10:17:39 + + +waiting on router queue for slot.... +10:17:39 Sending to : +10:17:39 ============================================================================ +10:17:39 ============================================================================ +10:17:39 Slot Id : <55> +10:17:39 Transaction Type : RESPONSE +10:17:39 Received From : +10:17:39 ============================================================================ +10:17:39 FNo. Len. Field Value +10:17:39 ============================================================================ +10:17:39 [ 1] [ 4] [0810] +10:17:39 [ 7] [ 10] [0320172929] +10:17:39 [ 11] [ 6] [102929] +10:17:39 [ 37] [ 12] [579101029290] +10:17:39 [ 39] [ 2] [00] +10:17:39 [ 70] [ 3] [810] +10:17:39 ============================================================================ +10:17:39 Calculate Source COMM Id = 6 +10:17:39 ============================================================================ +10:17:39 + + +waiting on router queue for slot.... +10:17:41 ============================================================================ +10:17:41 Slot Id : <478> +10:17:41 Transaction Type : REQUEST +10:17:41 Received From : +10:17:41 ============================================================================ +10:17:41 FNo. Len. Field Value +10:17:41 ============================================================================ +10:17:41 [ 1] [ 4] [0200] +10:17:41 [ 2] [ 16] [6213541000333495] +10:17:41 [ 3] [ 6] [010000] +10:17:41 [ 4] [ 12] [000100000000] +10:17:41 [ 7] [ 10] [0320101532] +10:17:41 [ 11] [ 6] [938129] +10:17:41 [ 12] [ 6] [101532] +10:17:41 [ 13] [ 4] [0320] +10:17:41 [ 15] [ 4] [0320] +10:17:41 [ 18] [ 4] [6011] +10:17:41 [ 19] [ 3] [418] +10:17:41 [ 22] [ 3] [021] +10:17:41 [ 25] [ 2] [01] +10:17:41 [ 28] [ 9] [D00002000] +10:17:41 [ 32] [ 6] [668899] +10:17:41 [ 35] [ 32] [6213541000333495=491212013349445] +10:17:41 [ 37] [ 12] [507900136686] +10:17:41 [ 41] [ 8] [03020004] +10:17:41 [ 42] [ 15] [APT ] +10:17:41 [ 43] [ 40] [ DEPT OF VT CAPITAL OF FIN] +10:17:41 [ 49] [ 3] [418] +10:17:41 [ 52] [ 16] [829AC8F852425FD1] +10:17:41 ============================================================================ +10:17:41 + + +waiting on router queue for slot.... +10:17:41 Sending to : +10:17:41 ============================================================================ +10:17:41 Sending to : +10:17:41 ============================================================================ +10:17:41 ============================================================================ +10:17:41 Slot Id : <15> +10:17:41 Transaction Type : RESPONSE +10:17:41 Received From : +10:17:41 ============================================================================ +10:17:41 FNo. Len. Field Value +10:17:41 ============================================================================ +10:17:41 [ 1] [ 4] [0210] +10:17:41 [ 2] [ 16] [6213545000974943] +10:17:41 [ 3] [ 6] [010000] +10:17:41 [ 4] [ 12] [000100000000] +10:17:41 [ 7] [ 10] [0320031646] +10:17:41 [ 11] [ 6] [268024] +10:17:41 [ 12] [ 6] [101646] +10:17:41 [ 13] [ 4] [0320] +10:17:41 [ 15] [ 4] [0320] +10:17:41 [ 18] [ 4] [6011] +10:17:41 [ 19] [ 3] [418] +10:17:41 [ 32] [ 6] [180893] +10:17:41 [ 35] [ 32] [6213545000974943=491212017494415] +10:17:41 [ 37] [ 12] [507903268024] +10:17:41 [ 38] [ 6] [216581] +10:17:41 [ 39] [ 2] [00] +10:17:41 [ 41] [ 8] [0112CPBR] +10:17:41 [ 49] [ 3] [418] +10:17:41 [ 54] [ 40] [0001418C0001176441970002418C000117644197] +10:17:41 ============================================================================ +10:17:41 Calculate Source COMM Id = 2 +10:17:41 ============================================================================ +10:17:41 + + +waiting on router queue for slot.... +10:17:41 ============================================================================ +10:17:41 Slot Id : <478> +10:17:41 Transaction Type : REQUEST +10:17:41 Received From : +10:17:41 ============================================================================ +10:17:41 FNo. Len. Field Value +10:17:41 ============================================================================ +10:17:41 [ 1] [ 4] [0200] +10:17:41 [ 2] [ 16] [6213541000333495] +10:17:41 [ 3] [ 6] [010000] +10:17:41 [ 4] [ 12] [000100000000] +10:17:41 [ 7] [ 10] [0320101532] +10:17:41 [ 11] [ 6] [938129] +10:17:41 [ 12] [ 6] [101532] +10:17:41 [ 13] [ 4] [0320] +10:17:41 [ 15] [ 4] [0320] +10:17:41 [ 18] [ 4] [6011] +10:17:41 [ 19] [ 3] [418] +10:17:41 [ 22] [ 3] [021] +10:17:41 [ 25] [ 2] [01] +10:17:41 [ 28] [ 9] [D00002000] +10:17:41 [ 32] [ 6] [668899] +10:17:41 [ 35] [ 32] [6213541000333495=491212013349445] +10:17:41 [ 37] [ 12] [507900136686] +10:17:41 [ 41] [ 8] [03020004] +10:17:41 [ 42] [ 15] [APT ] +10:17:41 [ 43] [ 40] [ DEPT OF VT CAPITAL OF FIN] +10:17:41 [ 49] [ 3] [418] +10:17:41 [ 52] [ 16] [829AC8F852425FD1] +10:17:41 ============================================================================ +10:17:41 + + +waiting on router queue for slot.... +10:17:41 Sending to : +10:17:41 ============================================================================ +10:17:41 ============================================================================ +10:17:41 Slot Id : <478> +10:17:41 Transaction Type : REQUEST +10:17:41 Received From : +10:17:41 ============================================================================ +10:17:41 FNo. Len. Field Value +10:17:41 ============================================================================ +10:17:41 [ 1] [ 4] [0200] +10:17:41 [ 2] [ 16] [6213541000333495] +10:17:41 [ 3] [ 6] [010000] +10:17:41 [ 4] [ 12] [000100000000] +10:17:41 [ 7] [ 10] [0320101532] +10:17:41 [ 11] [ 6] [938129] +10:17:41 [ 12] [ 6] [101532] +10:17:41 [ 13] [ 4] [0320] +10:17:41 [ 15] [ 4] [0320] +10:17:41 [ 18] [ 4] [6011] +10:17:41 [ 19] [ 3] [418] +10:17:41 [ 22] [ 3] [021] +10:17:41 [ 25] [ 2] [01] +10:17:41 [ 28] [ 9] [D00002000] +10:17:41 [ 32] [ 6] [668899] +10:17:41 [ 35] [ 32] [6213541000333495=491212013349445] +10:17:41 [ 37] [ 12] [507900136686] +10:17:41 [ 41] [ 8] [03020004] +10:17:41 [ 42] [ 15] [APT ] +10:17:41 [ 43] [ 40] [ DEPT OF VT CAPITAL OF FIN] +10:17:41 [ 49] [ 3] [418] +10:17:41 [ 52] [ 16] [4BBBE38CEAB41A79] +10:17:41 ============================================================================ +10:17:41 + + +waiting on router queue for slot.... +10:17:41 Sending to : <0> +10:17:41 ============================================================================ +10:17:42 ============================================================================ +10:17:42 Slot Id : <478> +10:17:42 Transaction Type : RESPONSE +10:17:42 Received From : +10:17:42 ============================================================================ +10:17:42 FNo. Len. Field Value +10:17:42 ============================================================================ +10:17:42 [ 1] [ 4] [0210] +10:17:42 [ 2] [ 16] [6213541000333495] +10:17:42 [ 3] [ 6] [010000] +10:17:42 [ 4] [ 12] [000100000000] +10:17:42 [ 7] [ 10] [0320101532] +10:17:42 [ 11] [ 6] [938129] +10:17:42 [ 12] [ 6] [101532] +10:17:42 [ 13] [ 4] [0320] +10:17:42 [ 15] [ 4] [0320] +10:17:42 [ 18] [ 4] [6011] +10:17:42 [ 19] [ 3] [418] +10:17:42 [ 32] [ 6] [668899] +10:17:42 [ 35] [ 32] [6213541000333495=491212013349445] +10:17:42 [ 37] [ 12] [507900136686] +10:17:42 [ 38] [ 6] [639084] +10:17:42 [ 39] [ 2] [00] +10:17:42 [ 41] [ 8] [03020004] +10:17:42 [ 49] [ 3] [418] +10:17:42 [ 54] [ 40] [0001418C0000056603370002418C000005660337] +10:17:42 ============================================================================ +10:17:42 Sending to : +10:17:42 ============================================================================ +10:17:42 + + +waiting on router queue for slot.... +10:17:43 ============================================================================ +10:17:43 Slot Id : <478> +10:17:43 Transaction Type : RESPONSE +10:17:43 Received From : +10:17:43 ============================================================================ +10:17:43 FNo. Len. Field Value +10:17:43 ============================================================================ +10:17:43 [ 1] [ 4] [0210] +10:17:43 [ 2] [ 16] [6213541000333495] +10:17:43 [ 3] [ 6] [010000] +10:17:43 [ 4] [ 12] [000100000000] +10:17:43 [ 7] [ 10] [0320101532] +10:17:43 [ 11] [ 6] [938129] +10:17:43 [ 12] [ 6] [101532] +10:17:43 [ 13] [ 4] [0320] +10:17:43 [ 15] [ 4] [0320] +10:17:43 [ 18] [ 4] [6011] +10:17:43 [ 19] [ 3] [418] +10:17:43 [ 32] [ 6] [668899] +10:17:43 [ 35] [ 32] [6213541000333495=491212013349445] +10:17:43 [ 37] [ 12] [507900136686] +10:17:43 [ 38] [ 6] [639084] +10:17:43 [ 39] [ 2] [00] +10:17:43 [ 41] [ 8] [03020004] +10:17:43 [ 49] [ 3] [418] +10:17:43 [ 54] [ 40] [0001418C0000056603370002418C000005660337] +10:17:43 ============================================================================ +10:17:43 Calculate Source COMM Id = 4 +10:17:43 ============================================================================ +10:17:43 + + +waiting on router queue for slot.... +10:17:46 ============================================================================ +10:17:46 Slot Id : <60> +10:17:46 Transaction Type : REQUEST +10:17:46 Received From : +10:17:46 ============================================================================ +10:17:46 FNo. Len. Field Value +10:17:46 ============================================================================ +10:17:46 [ 1] [ 4] [0200] +10:17:46 [ 2] [ 16] [1808930700008196] +10:17:46 [ 3] [ 6] [301000] +10:17:46 [ 4] [ 12] [000000000000] +10:17:46 [ 7] [ 10] [0320101537] +10:17:46 [ 11] [ 6] [938137] +10:17:46 [ 12] [ 6] [101537] +10:17:46 [ 13] [ 4] [0320] +10:17:46 [ 15] [ 4] [0320] +10:17:46 [ 18] [ 4] [6011] +10:17:46 [ 19] [ 3] [418] +10:17:46 [ 22] [ 3] [021] +10:17:46 [ 25] [ 2] [01] +10:17:46 [ 28] [ 9] [D00000000] +10:17:46 [ 32] [ 6] [668899] +10:17:46 [ 35] [ 27] [1808930700008196=1803500113] +10:17:46 [ 37] [ 12] [507901373581] +10:17:46 [ 41] [ 8] [03209001] +10:17:46 [ 42] [ 15] [APT ] +10:17:46 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +10:17:46 [ 49] [ 3] [418] +10:17:46 [ 52] [ 16] [879D3F6A973E7C3A] +10:17:46 ============================================================================ +10:17:46 + + +waiting on router queue for slot.... +10:17:46 Sending to : +10:17:46 ============================================================================ +10:17:46 Sending to : +10:17:46 ============================================================================ +10:17:47 ============================================================================ +10:17:47 Slot Id : <60> +10:17:47 Transaction Type : REQUEST +10:17:47 Received From : +10:17:47 ============================================================================ +10:17:47 FNo. Len. Field Value +10:17:47 ============================================================================ +10:17:47 [ 1] [ 4] [0200] +10:17:47 [ 2] [ 16] [1808930700008196] +10:17:47 [ 3] [ 6] [301000] +10:17:47 [ 4] [ 12] [000000000000] +10:17:47 [ 7] [ 10] [0320101537] +10:17:47 [ 11] [ 6] [938137] +10:17:47 [ 12] [ 6] [101537] +10:17:47 [ 13] [ 4] [0320] +10:17:47 [ 15] [ 4] [0320] +10:17:47 [ 18] [ 4] [6011] +10:17:47 [ 19] [ 3] [418] +10:17:47 [ 22] [ 3] [021] +10:17:47 [ 25] [ 2] [01] +10:17:47 [ 28] [ 9] [D00000000] +10:17:47 [ 32] [ 6] [668899] +10:17:47 [ 35] [ 27] [1808930700008196=1803500113] +10:17:47 [ 37] [ 12] [507901373581] +10:17:47 [ 41] [ 8] [03209001] +10:17:47 [ 42] [ 15] [APT ] +10:17:47 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +10:17:47 [ 49] [ 3] [418] +10:17:47 [ 52] [ 16] [879D3F6A973E7C3A] +10:17:47 ============================================================================ +10:17:47 + + +waiting on router queue for slot.... +10:17:47 Sending to : +10:17:47 ============================================================================ +10:17:47 ============================================================================ +10:17:47 Slot Id : <60> +10:17:47 Transaction Type : REQUEST +10:17:47 Received From : +10:17:47 ============================================================================ +10:17:47 FNo. Len. Field Value +10:17:47 ============================================================================ +10:17:47 [ 1] [ 4] [0200] +10:17:47 [ 2] [ 16] [1808930700008196] +10:17:47 [ 3] [ 6] [301000] +10:17:47 [ 4] [ 12] [000000000000] +10:17:47 [ 7] [ 10] [0320101537] +10:17:47 [ 11] [ 6] [938137] +10:17:47 [ 12] [ 6] [101537] +10:17:47 [ 13] [ 4] [0320] +10:17:47 [ 15] [ 4] [0320] +10:17:47 [ 18] [ 4] [6011] +10:17:47 [ 19] [ 3] [418] +10:17:47 [ 22] [ 3] [021] +10:17:47 [ 25] [ 2] [01] +10:17:47 [ 28] [ 9] [D00000000] +10:17:47 [ 32] [ 6] [668899] +10:17:47 [ 35] [ 27] [1808930700008196=1803500113] +10:17:47 [ 37] [ 12] [507901373581] +10:17:47 [ 41] [ 8] [03209001] +10:17:47 [ 42] [ 15] [APT ] +10:17:47 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +10:17:47 [ 49] [ 3] [418] +10:17:47 [ 52] [ 16] [E8196C3363555EE7] +10:17:47 ============================================================================ +10:17:47 + + +waiting on router queue for slot.... +10:17:47 Sending to : <2> +10:17:47 ============================================================================ +10:17:49 ============================================================================ +10:17:49 Slot Id : <60> +10:17:49 Transaction Type : RESPONSE +10:17:49 Received From : +10:17:49 ============================================================================ +10:17:49 FNo. Len. Field Value +10:17:49 ============================================================================ +10:17:49 [ 1] [ 4] [0210] +10:17:49 [ 2] [ 16] [1808930700008196] +10:17:49 [ 3] [ 6] [301000] +10:17:49 [ 7] [ 10] [0320101537] +10:17:49 [ 11] [ 6] [938137] +10:17:49 [ 12] [ 6] [101537] +10:17:49 [ 13] [ 4] [0320] +10:17:49 [ 14] [ 4] [1803] +10:17:49 [ 19] [ 3] [418] +10:17:49 [ 32] [ 6] [668899] +10:17:49 [ 37] [ 12] [507901373581] +10:17:49 [ 39] [ 2] [55] +10:17:49 [ 41] [ 8] [03209001] +10:17:49 [ 49] [ 3] [418] +10:17:49 [ 52] [ 16] [E8196C3363555EE7] +10:17:49 ============================================================================ +10:17:49 Sending to : +10:17:49 ============================================================================ +10:17:49 + + +waiting on router queue for slot.... +10:17:51 ============================================================================ +10:17:51 Slot Id : <60> +10:17:51 Transaction Type : RESPONSE +10:17:51 Received From : +10:17:51 ============================================================================ +10:17:51 FNo. Len. Field Value +10:17:51 ============================================================================ +10:17:51 [ 1] [ 4] [0210] +10:17:51 [ 2] [ 16] [1808930700008196] +10:17:51 [ 3] [ 6] [301000] +10:17:51 [ 7] [ 10] [0320101537] +10:17:51 [ 11] [ 6] [938137] +10:17:51 [ 12] [ 6] [101537] +10:17:51 [ 13] [ 4] [0320] +10:17:51 [ 14] [ 4] [1803] +10:17:51 [ 19] [ 3] [418] +10:17:51 [ 32] [ 6] [668899] +10:17:51 [ 37] [ 12] [507901373581] +10:17:51 [ 39] [ 2] [55] +10:17:51 [ 41] [ 8] [03209001] +10:17:51 [ 49] [ 3] [418] +10:17:51 [ 52] [ 16] [E8196C3363555EE7] +10:17:51 ============================================================================ +10:17:51 Calculate Source COMM Id = 4 +10:17:51 ============================================================================ +10:17:51 + + +waiting on router queue for slot.... +10:17:55 ============================================================================ +10:17:55 Slot Id : <68> +10:17:55 Transaction Type : REQUEST +10:17:55 Received From : +10:17:55 ============================================================================ +10:17:55 FNo. Len. Field Value +10:17:55 ============================================================================ +10:17:55 [ 1] [ 4] [0200] +10:17:55 [ 2] [ 16] [6213541000426034] +10:17:55 [ 3] [ 6] [010000] +10:17:55 [ 4] [ 12] [000100000000] +10:17:55 [ 7] [ 10] [0320101546] +10:17:55 [ 11] [ 6] [938147] +10:17:55 [ 12] [ 6] [101546] +10:17:55 [ 13] [ 4] [0320] +10:17:55 [ 15] [ 4] [0320] +10:17:55 [ 18] [ 4] [6011] +10:17:55 [ 19] [ 3] [418] +10:17:55 [ 22] [ 3] [021] +10:17:55 [ 25] [ 2] [01] +10:17:55 [ 28] [ 9] [D00002000] +10:17:55 [ 32] [ 6] [668899] +10:17:55 [ 35] [ 32] [6213541000426034=491212012603745] +10:17:55 [ 37] [ 12] [507902071158] +10:17:55 [ 41] [ 8] [03006007] +10:17:55 [ 42] [ 15] [APT ] +10:17:55 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:17:55 [ 49] [ 3] [418] +10:17:55 [ 52] [ 16] [22B215953523167B] +10:17:55 ============================================================================ +10:17:55 + + +waiting on router queue for slot.... +10:17:55 Sending to : +10:17:55 ============================================================================ +10:17:55 Sending to : +10:17:55 ============================================================================ +10:17:55 ============================================================================ +10:17:55 Slot Id : <68> +10:17:55 Transaction Type : REQUEST +10:17:55 Received From : +10:17:55 ============================================================================ +10:17:55 FNo. Len. Field Value +10:17:55 ============================================================================ +10:17:55 [ 1] [ 4] [0200] +10:17:55 [ 2] [ 16] [6213541000426034] +10:17:55 [ 3] [ 6] [010000] +10:17:55 [ 4] [ 12] [000100000000] +10:17:55 [ 7] [ 10] [0320101546] +10:17:55 [ 11] [ 6] [938147] +10:17:55 [ 12] [ 6] [101546] +10:17:55 [ 13] [ 4] [0320] +10:17:55 [ 15] [ 4] [0320] +10:17:55 [ 18] [ 4] [6011] +10:17:55 [ 19] [ 3] [418] +10:17:55 [ 22] [ 3] [021] +10:17:55 [ 25] [ 2] [01] +10:17:55 [ 28] [ 9] [D00002000] +10:17:55 [ 32] [ 6] [668899] +10:17:55 [ 35] [ 32] [6213541000426034=491212012603745] +10:17:55 [ 37] [ 12] [507902071158] +10:17:55 [ 41] [ 8] [03006007] +10:17:55 [ 42] [ 15] [APT ] +10:17:55 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:17:55 [ 49] [ 3] [418] +10:17:55 [ 52] [ 16] [22B215953523167B] +10:17:55 ============================================================================ +10:17:55 + + +waiting on router queue for slot.... +10:17:55 Sending to : +10:17:55 ============================================================================ +10:17:55 ============================================================================ +10:17:55 Slot Id : <68> +10:17:55 Transaction Type : REQUEST +10:17:55 Received From : +10:17:55 ============================================================================ +10:17:55 FNo. Len. Field Value +10:17:55 ============================================================================ +10:17:55 [ 1] [ 4] [0200] +10:17:55 [ 2] [ 16] [6213541000426034] +10:17:55 [ 3] [ 6] [010000] +10:17:55 [ 4] [ 12] [000100000000] +10:17:55 [ 7] [ 10] [0320101546] +10:17:55 [ 11] [ 6] [938147] +10:17:55 [ 12] [ 6] [101546] +10:17:55 [ 13] [ 4] [0320] +10:17:55 [ 15] [ 4] [0320] +10:17:55 [ 18] [ 4] [6011] +10:17:55 [ 19] [ 3] [418] +10:17:55 [ 22] [ 3] [021] +10:17:55 [ 25] [ 2] [01] +10:17:55 [ 28] [ 9] [D00002000] +10:17:55 [ 32] [ 6] [668899] +10:17:55 [ 35] [ 32] [6213541000426034=491212012603745] +10:17:55 [ 37] [ 12] [507902071158] +10:17:55 [ 41] [ 8] [03006007] +10:17:55 [ 42] [ 15] [APT ] +10:17:55 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:17:55 [ 49] [ 3] [418] +10:17:55 [ 52] [ 16] [0E1658BA589A5AA4] +10:17:55 ============================================================================ +10:17:55 + + +waiting on router queue for slot.... +10:17:55 Sending to : <0> +10:17:55 ============================================================================ +10:17:56 ============================================================================ +10:17:56 Slot Id : <68> +10:17:56 Transaction Type : RESPONSE +10:17:56 Received From : +10:17:56 ============================================================================ +10:17:56 FNo. Len. Field Value +10:17:56 ============================================================================ +10:17:56 [ 1] [ 4] [0210] +10:17:56 [ 2] [ 16] [6213541000426034] +10:17:56 [ 3] [ 6] [010000] +10:17:56 [ 4] [ 12] [000100000000] +10:17:56 [ 7] [ 10] [0320101546] +10:17:56 [ 11] [ 6] [938147] +10:17:56 [ 12] [ 6] [101546] +10:17:56 [ 13] [ 4] [0320] +10:17:56 [ 15] [ 4] [0320] +10:17:56 [ 18] [ 4] [6011] +10:17:56 [ 19] [ 3] [418] +10:17:56 [ 32] [ 6] [668899] +10:17:56 [ 35] [ 32] [6213541000426034=491212012603745] +10:17:56 [ 37] [ 12] [507902071158] +10:17:56 [ 38] [ 6] [571622] +10:17:56 [ 39] [ 2] [00] +10:17:56 [ 41] [ 8] [03006007] +10:17:56 [ 49] [ 3] [418] +10:17:56 [ 54] [ 40] [0001418C0030331089290002418C003033108929] +10:17:56 ============================================================================ +10:17:56 Sending to : +10:17:56 ============================================================================ +10:17:56 + + +waiting on router queue for slot.... +10:17:57 ============================================================================ +10:17:57 Slot Id : <68> +10:17:57 Transaction Type : RESPONSE +10:17:57 Received From : +10:17:57 ============================================================================ +10:17:57 FNo. Len. Field Value +10:17:57 ============================================================================ +10:17:57 [ 1] [ 4] [0210] +10:17:57 [ 2] [ 16] [6213541000426034] +10:17:57 [ 3] [ 6] [010000] +10:17:57 [ 4] [ 12] [000100000000] +10:17:57 [ 7] [ 10] [0320101546] +10:17:57 [ 11] [ 6] [938147] +10:17:57 [ 12] [ 6] [101546] +10:17:57 [ 13] [ 4] [0320] +10:17:57 [ 15] [ 4] [0320] +10:17:57 [ 18] [ 4] [6011] +10:17:57 [ 19] [ 3] [418] +10:17:57 [ 32] [ 6] [668899] +10:17:57 [ 35] [ 32] [6213541000426034=491212012603745] +10:17:57 [ 37] [ 12] [507902071158] +10:17:57 [ 38] [ 6] [571622] +10:17:57 [ 39] [ 2] [00] +10:17:57 [ 41] [ 8] [03006007] +10:17:57 [ 49] [ 3] [418] +10:17:57 [ 54] [ 40] [0001418C0030331089290002418C003033108929] +10:17:57 ============================================================================ +10:17:57 Calculate Source COMM Id = 4 +10:17:57 ============================================================================ +10:17:57 + + +waiting on router queue for slot.... +10:18:03 ============================================================================ +10:18:03 Slot Id : <63> +10:18:03 Transaction Type : REQUEST +10:18:03 Received From : +10:18:03 ============================================================================ +10:18:03 FNo. Len. Field Value +10:18:03 ============================================================================ +10:18:03 [ 1] [ 4] [0800] +10:18:03 [ 7] [ 10] [0320031710] +10:18:03 [ 11] [ 6] [155816] +10:18:03 [ 70] [ 3] [301] +10:18:03 ============================================================================ +10:18:03 + + +waiting on router queue for slot.... +10:18:03 Sending to : +10:18:03 ============================================================================ +10:18:03 ============================================================================ +10:18:03 Slot Id : <63> +10:18:03 Transaction Type : RESPONSE +10:18:03 Received From : +10:18:03 ============================================================================ +10:18:03 FNo. Len. Field Value +10:18:03 ============================================================================ +10:18:03 [ 1] [ 4] [0810] +10:18:03 [ 7] [ 10] [0320031710] +10:18:03 [ 11] [ 6] [155816] +10:18:03 [ 39] [ 2] [00] +10:18:03 [ 70] [ 3] [301] +10:18:03 ============================================================================ +10:18:03 Calculate Source COMM Id = 2 +10:18:03 ============================================================================ +10:18:03 + + +waiting on router queue for slot.... +10:18:13 ============================================================================ +10:18:13 Slot Id : <41> +10:18:13 Transaction Type : REQUEST +10:18:13 Received From : +10:18:13 ============================================================================ +10:18:13 FNo. Len. Field Value +10:18:13 ============================================================================ +10:18:13 [ 1] [ 4] [0800] +10:18:13 [ 7] [ 10] [0320031721] +10:18:13 [ 11] [ 6] [155817] +10:18:13 [ 70] [ 3] [301] +10:18:13 ============================================================================ +10:18:13 + + +waiting on router queue for slot.... +10:18:13 Sending to : +10:18:13 ============================================================================ +10:18:13 ============================================================================ +10:18:13 Slot Id : <41> +10:18:13 Transaction Type : RESPONSE +10:18:13 Received From : +10:18:13 ============================================================================ +10:18:13 FNo. Len. Field Value +10:18:13 ============================================================================ +10:18:13 [ 1] [ 4] [0810] +10:18:13 [ 7] [ 10] [0320031721] +10:18:13 [ 11] [ 6] [155817] +10:18:13 [ 39] [ 2] [00] +10:18:13 [ 70] [ 3] [301] +10:18:13 ============================================================================ +10:18:13 Calculate Source COMM Id = 2 +10:18:13 ============================================================================ +10:18:13 + + +waiting on router queue for slot.... +10:18:20 ============================================================================ +10:18:20 Slot Id : <38> +10:18:20 Transaction Type : REQUEST +10:18:20 Received From : +10:18:20 ============================================================================ +10:18:20 FNo. Len. Field Value +10:18:20 ============================================================================ +10:18:20 [ 1] [ 4] [0200] +10:18:20 [ 2] [ 16] [6213541000095987] +10:18:20 [ 3] [ 6] [010000] +10:18:20 [ 4] [ 12] [000100000000] +10:18:20 [ 7] [ 10] [0320031726] +10:18:20 [ 11] [ 6] [268031] +10:18:20 [ 12] [ 6] [101726] +10:18:20 [ 13] [ 4] [0320] +10:18:20 [ 14] [ 4] [4912] +10:18:20 [ 15] [ 4] [0320] +10:18:20 [ 18] [ 4] [6011] +10:18:20 [ 19] [ 3] [418] +10:18:20 [ 22] [ 3] [021] +10:18:20 [ 25] [ 2] [01] +10:18:20 [ 28] [ 9] [D00002000] +10:18:20 [ 32] [ 6] [180893] +10:18:20 [ 35] [ 32] [6213541000095987=491212019598862] +10:18:20 [ 37] [ 12] [507903268031] +10:18:20 [ 41] [ 8] [0110VTBR] +10:18:20 [ 42] [ 15] [999999 ] +10:18:20 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +10:18:20 [ 49] [ 3] [418] +10:18:20 [ 52] [ 16] [457EF12776FF1AFB] +10:18:20 ============================================================================ +10:18:20 + + +waiting on router queue for slot.... +10:18:20 Sending to : +10:18:20 ============================================================================ +10:18:20 Sending to : +10:18:20 ============================================================================ +10:18:20 ============================================================================ +10:18:20 Slot Id : <38> +10:18:20 Transaction Type : REQUEST +10:18:20 Received From : +10:18:20 ============================================================================ +10:18:20 FNo. Len. Field Value +10:18:20 ============================================================================ +10:18:20 [ 1] [ 4] [0200] +10:18:20 [ 2] [ 16] [6213541000095987] +10:18:20 [ 3] [ 6] [010000] +10:18:20 [ 4] [ 12] [000100000000] +10:18:20 [ 7] [ 10] [0320031726] +10:18:20 [ 11] [ 6] [268031] +10:18:20 [ 12] [ 6] [101726] +10:18:20 [ 13] [ 4] [0320] +10:18:20 [ 14] [ 4] [4912] +10:18:20 [ 15] [ 4] [0320] +10:18:20 [ 18] [ 4] [6011] +10:18:20 [ 19] [ 3] [418] +10:18:20 [ 22] [ 3] [021] +10:18:20 [ 25] [ 2] [01] +10:18:20 [ 28] [ 9] [D00002000] +10:18:20 [ 32] [ 6] [180893] +10:18:20 [ 35] [ 32] [6213541000095987=491212019598862] +10:18:20 [ 37] [ 12] [507903268031] +10:18:20 [ 41] [ 8] [0110VTBR] +10:18:20 [ 42] [ 15] [999999 ] +10:18:20 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +10:18:20 [ 49] [ 3] [418] +10:18:20 [ 52] [ 16] [457EF12776FF1AFB] +10:18:20 ============================================================================ +10:18:20 + + +waiting on router queue for slot.... +10:18:20 Sending to : +10:18:20 ============================================================================ +10:18:20 ============================================================================ +10:18:20 Slot Id : <38> +10:18:20 Transaction Type : REQUEST +10:18:20 Received From : +10:18:20 ============================================================================ +10:18:20 FNo. Len. Field Value +10:18:20 ============================================================================ +10:18:20 [ 1] [ 4] [0200] +10:18:20 [ 2] [ 16] [6213541000095987] +10:18:20 [ 3] [ 6] [010000] +10:18:20 [ 4] [ 12] [000100000000] +10:18:20 [ 7] [ 10] [0320031726] +10:18:20 [ 11] [ 6] [268031] +10:18:20 [ 12] [ 6] [101726] +10:18:20 [ 13] [ 4] [0320] +10:18:20 [ 14] [ 4] [4912] +10:18:20 [ 15] [ 4] [0320] +10:18:20 [ 18] [ 4] [6011] +10:18:20 [ 19] [ 3] [418] +10:18:20 [ 22] [ 3] [021] +10:18:20 [ 25] [ 2] [01] +10:18:20 [ 28] [ 9] [D00002000] +10:18:20 [ 32] [ 6] [180893] +10:18:20 [ 35] [ 32] [6213541000095987=491212019598862] +10:18:20 [ 37] [ 12] [507903268031] +10:18:20 [ 41] [ 8] [0110VTBR] +10:18:20 [ 42] [ 15] [999999 ] +10:18:20 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +10:18:20 [ 49] [ 3] [418] +10:18:20 [ 52] [ 16] [4D00C539B1387868] +10:18:20 ============================================================================ +10:18:20 + + +waiting on router queue for slot.... +10:18:20 Sending to : <0> +10:18:20 ============================================================================ +10:18:22 ============================================================================ +10:18:22 Slot Id : <38> +10:18:22 Transaction Type : RESPONSE +10:18:22 Received From : +10:18:22 ============================================================================ +10:18:22 FNo. Len. Field Value +10:18:22 ============================================================================ +10:18:22 [ 1] [ 4] [0210] +10:18:22 [ 2] [ 16] [6213541000095987] +10:18:22 [ 3] [ 6] [010000] +10:18:22 [ 4] [ 12] [000100000000] +10:18:22 [ 7] [ 10] [0320031726] +10:18:22 [ 11] [ 6] [268031] +10:18:22 [ 12] [ 6] [101726] +10:18:22 [ 13] [ 4] [0320] +10:18:22 [ 15] [ 4] [0320] +10:18:22 [ 18] [ 4] [6011] +10:18:22 [ 19] [ 3] [418] +10:18:22 [ 32] [ 6] [180893] +10:18:22 [ 35] [ 32] [6213541000095987=491212019598862] +10:18:22 [ 37] [ 12] [507903268031] +10:18:22 [ 38] [ 6] [707411] +10:18:22 [ 39] [ 2] [00] +10:18:22 [ 41] [ 8] [0110VTBR] +10:18:22 [ 49] [ 3] [418] +10:18:22 [ 54] [ 40] [0001840C0000000243880002840C000000024388] +10:18:22 ============================================================================ +10:18:22 Sending to : +10:18:22 ============================================================================ +10:18:22 + + +waiting on router queue for slot.... +10:18:23 ============================================================================ +10:18:23 Slot Id : <38> +10:18:23 Transaction Type : RESPONSE +10:18:23 Received From : +10:18:23 ============================================================================ +10:18:23 FNo. Len. Field Value +10:18:23 ============================================================================ +10:18:23 [ 1] [ 4] [0210] +10:18:23 [ 2] [ 16] [6213541000095987] +10:18:23 [ 3] [ 6] [010000] +10:18:23 [ 4] [ 12] [000100000000] +10:18:23 [ 7] [ 10] [0320031726] +10:18:23 [ 11] [ 6] [268031] +10:18:23 [ 12] [ 6] [101726] +10:18:23 [ 13] [ 4] [0320] +10:18:23 [ 15] [ 4] [0320] +10:18:23 [ 18] [ 4] [6011] +10:18:23 [ 19] [ 3] [418] +10:18:23 [ 32] [ 6] [180893] +10:18:23 [ 35] [ 32] [6213541000095987=491212019598862] +10:18:23 [ 37] [ 12] [507903268031] +10:18:23 [ 38] [ 6] [707411] +10:18:23 [ 39] [ 2] [00] +10:18:23 [ 41] [ 8] [0110VTBR] +10:18:23 [ 49] [ 3] [418] +10:18:23 [ 54] [ 40] [0001840C0000000243880002840C000000024388] +10:18:23 ============================================================================ +10:18:23 Calculate Source COMM Id = 2 +10:18:23 ============================================================================ +10:18:23 + + +waiting on router queue for slot.... +10:18:30 ============================================================================ +10:18:30 Slot Id : <464> +10:18:30 Transaction Type : REQUEST +10:18:30 Received From : +10:18:30 ============================================================================ +10:18:30 FNo. Len. Field Value +10:18:30 ============================================================================ +10:18:30 [ 1] [ 4] [0200] +10:18:30 [ 2] [ 16] [1808931800012831] +10:18:30 [ 3] [ 6] [011000] +10:18:30 [ 4] [ 12] [000090000000] +10:18:30 [ 7] [ 10] [0320101826] +10:18:30 [ 11] [ 6] [712042] +10:18:30 [ 12] [ 6] [101826] +10:18:30 [ 13] [ 4] [0320] +10:18:30 [ 15] [ 4] [0320] +10:18:30 [ 18] [ 4] [6011] +10:18:30 [ 22] [ 3] [900] +10:18:30 [ 25] [ 2] [02] +10:18:30 [ 28] [ 9] [D00002000] +10:18:30 [ 32] [ 6] [621354] +10:18:30 [ 35] [ 27] [1808931800012831=1803500526] +10:18:30 [ 37] [ 12] [507904635531] +10:18:30 [ 41] [ 8] [17000800] +10:18:30 [ 42] [ 15] [NATIVE ] +10:18:30 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:18:30 [ 49] [ 3] [418] +10:18:30 [ 52] [ 16] [1A27F7C95ADF5354] +10:18:30 ============================================================================ +10:18:30 + + +waiting on router queue for slot.... +10:18:30 Sending to : +10:18:30 ============================================================================ +10:18:30 Sending to : +10:18:30 ============================================================================ +10:18:30 ============================================================================ +10:18:30 Slot Id : <464> +10:18:30 Transaction Type : REQUEST +10:18:30 Received From : +10:18:30 ============================================================================ +10:18:30 FNo. Len. Field Value +10:18:30 ============================================================================ +10:18:30 [ 1] [ 4] [0200] +10:18:30 [ 2] [ 16] [1808931800012831] +10:18:30 [ 3] [ 6] [011000] +10:18:30 [ 4] [ 12] [000090000000] +10:18:30 [ 7] [ 10] [0320101826] +10:18:30 [ 11] [ 6] [712042] +10:18:30 [ 12] [ 6] [101826] +10:18:30 [ 13] [ 4] [0320] +10:18:30 [ 15] [ 4] [0320] +10:18:30 [ 18] [ 4] [6011] +10:18:30 [ 22] [ 3] [900] +10:18:30 [ 25] [ 2] [02] +10:18:30 [ 28] [ 9] [D00002000] +10:18:30 [ 32] [ 6] [621354] +10:18:30 [ 35] [ 27] [1808931800012831=1803500526] +10:18:30 [ 37] [ 12] [507904635531] +10:18:30 [ 41] [ 8] [17000800] +10:18:30 [ 42] [ 15] [NATIVE ] +10:18:30 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:18:30 [ 49] [ 3] [418] +10:18:30 [ 52] [ 16] [1A27F7C95ADF5354] +10:18:30 ============================================================================ +10:18:30 + + +waiting on router queue for slot.... +10:18:30 Sending to : +10:18:30 ============================================================================ +10:18:30 ============================================================================ +10:18:30 Slot Id : <464> +10:18:30 Transaction Type : REQUEST +10:18:30 Received From : +10:18:30 ============================================================================ +10:18:30 FNo. Len. Field Value +10:18:30 ============================================================================ +10:18:30 [ 1] [ 4] [0200] +10:18:30 [ 2] [ 16] [1808931800012831] +10:18:30 [ 3] [ 6] [011000] +10:18:30 [ 4] [ 12] [000090000000] +10:18:30 [ 7] [ 10] [0320101826] +10:18:30 [ 11] [ 6] [712042] +10:18:30 [ 12] [ 6] [101826] +10:18:30 [ 13] [ 4] [0320] +10:18:30 [ 15] [ 4] [0320] +10:18:30 [ 18] [ 4] [6011] +10:18:30 [ 22] [ 3] [900] +10:18:30 [ 25] [ 2] [02] +10:18:30 [ 28] [ 9] [D00002000] +10:18:30 [ 32] [ 6] [621354] +10:18:30 [ 35] [ 27] [1808931800012831=1803500526] +10:18:30 [ 37] [ 12] [507904635531] +10:18:30 [ 41] [ 8] [17000800] +10:18:30 [ 42] [ 15] [NATIVE ] +10:18:30 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:18:30 [ 49] [ 3] [418] +10:18:30 [ 52] [ 16] [EFAE0A9A7D022BF2] +10:18:30 ============================================================================ +10:18:30 + + +waiting on router queue for slot.... +10:18:30 Sending to : <2> +10:18:30 ============================================================================ +10:18:33 ============================================================================ +10:18:33 Slot Id : <73> +10:18:33 Transaction Type : REQUEST +10:18:33 Received From : +10:18:33 ============================================================================ +10:18:33 FNo. Len. Field Value +10:18:33 ============================================================================ +10:18:33 [ 1] [ 4] [0800] +10:18:33 [ 2] [ 5] [02531] +10:18:33 [ 3] [ 6] [579108] +10:18:33 [ 7] [ 10] [0320031833] +10:18:33 [ 11] [ 6] [807010] +10:18:33 [ 15] [ 10] [0320031833] +10:18:33 [ 37] [ 11] [57910807010] +10:18:33 [ 70] [ 3] [001] +10:18:33 ============================================================================ +10:18:33 + + +waiting on router queue for slot.... +10:18:33 ============================================================================ +10:18:33 Slot Id : <73> +10:18:33 Transaction Type : RESPONSE +10:18:33 Received From : +10:18:33 ============================================================================ +10:18:33 FNo. Len. Field Value +10:18:33 ============================================================================ +10:18:33 [ 1] [ 4] [0810] +10:18:33 [ 7] [ 10] [0320031833] +10:18:33 [ 11] [ 6] [807010] +10:18:33 [ 15] [ 4] [0320] +10:18:33 [ 37] [ 12] [57910807010] +10:18:33 [ 39] [ 2] [00] +10:18:33 [ 70] [ 3] [001] +10:18:33 ============================================================================ +10:18:33 Sending to : +10:18:33 ============================================================================ +10:18:33 + + +waiting on router queue for slot.... +10:18:36 ============================================================================ +10:18:36 Slot Id : <32> +10:18:36 Transaction Type : REQUEST +10:18:36 Received From : +10:18:36 ============================================================================ +10:18:36 FNo. Len. Field Value +10:18:36 ============================================================================ +10:18:36 [ 1] [ 4] [0200] +10:18:36 [ 2] [ 16] [6213541000538002] +10:18:36 [ 3] [ 6] [011000] +10:18:36 [ 4] [ 12] [000010000000] +10:18:36 [ 7] [ 10] [0320102624] +10:18:36 [ 11] [ 6] [306034] +10:18:36 [ 12] [ 6] [102624] +10:18:36 [ 13] [ 4] [0320] +10:18:36 [ 14] [ 4] [4912] +10:18:36 [ 15] [ 4] [0320] +10:18:36 [ 18] [ 4] [6011] +10:18:36 [ 22] [ 3] [900] +10:18:36 [ 25] [ 2] [02] +10:18:36 [ 28] [ 9] [D00002000] +10:18:36 [ 32] [ 6] [220699] +10:18:36 [ 35] [ 32] [6213541000538002=491212013800770] +10:18:36 [ 37] [ 12] [507900079326] +10:18:36 [ 41] [ 8] [01000700] +10:18:36 [ 42] [ 15] [APTRA ] +10:18:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:18:36 [ 49] [ 3] [418] +10:18:36 [ 52] [ 16] [31548790A3E3B830] +10:18:36 ============================================================================ +10:18:36 + + +waiting on router queue for slot.... +10:18:36 Sending to : +10:18:36 ============================================================================ +10:18:36 Sending to : +10:18:36 ============================================================================ +10:18:36 ============================================================================ +10:18:36 Slot Id : <464> +10:18:36 Transaction Type : RESPONSE +10:18:36 Received From : +10:18:36 ============================================================================ +10:18:36 FNo. Len. Field Value +10:18:36 ============================================================================ +10:18:36 [ 1] [ 4] [0210] +10:18:36 [ 2] [ 16] [1808931800012831] +10:18:36 [ 3] [ 6] [011000] +10:18:36 [ 4] [ 12] [000090000000] +10:18:36 [ 6] [ 12] [000090000000] +10:18:36 [ 7] [ 10] [0320101826] +10:18:36 [ 11] [ 6] [712042] +10:18:36 [ 12] [ 6] [101826] +10:18:36 [ 13] [ 4] [0320] +10:18:36 [ 18] [ 4] [6011] +10:18:36 [ 19] [ 3] [418] +10:18:36 [ 22] [ 3] [021] +10:18:36 [ 32] [ 6] [621354] +10:18:36 [ 35] [ 27] [1808931800012831=1803500526] +10:18:36 [ 37] [ 12] [507904635531] +10:18:36 [ 38] [ 6] [712042] +10:18:36 [ 39] [ 2] [00] +10:18:36 [ 41] [ 8] [17000800] +10:18:36 [ 49] [ 3] [418] +10:18:36 [ 52] [ 16] [EFAE0A9A7D022BF2] +10:18:36 [ 54] [ 20] [1001418C000003778400] +10:18:36 ============================================================================ +10:18:36 Sending to : +10:18:36 ============================================================================ +10:18:36 + + +waiting on router queue for slot.... +10:18:37 ============================================================================ +10:18:37 Slot Id : <32> +10:18:37 Transaction Type : REQUEST +10:18:37 Received From : +10:18:37 ============================================================================ +10:18:37 FNo. Len. Field Value +10:18:37 ============================================================================ +10:18:37 [ 1] [ 4] [0200] +10:18:37 [ 2] [ 16] [6213541000538002] +10:18:37 [ 3] [ 6] [011000] +10:18:37 [ 4] [ 12] [000010000000] +10:18:37 [ 7] [ 10] [0320102624] +10:18:37 [ 11] [ 6] [306034] +10:18:37 [ 12] [ 6] [102624] +10:18:37 [ 13] [ 4] [0320] +10:18:37 [ 14] [ 4] [4912] +10:18:37 [ 15] [ 4] [0320] +10:18:37 [ 18] [ 4] [6011] +10:18:37 [ 22] [ 3] [900] +10:18:37 [ 25] [ 2] [02] +10:18:37 [ 28] [ 9] [D00002000] +10:18:37 [ 32] [ 6] [220699] +10:18:37 [ 35] [ 32] [6213541000538002=491212013800770] +10:18:37 [ 37] [ 12] [507900079326] +10:18:37 [ 41] [ 8] [01000700] +10:18:37 [ 42] [ 15] [APTRA ] +10:18:37 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:18:37 [ 49] [ 3] [418] +10:18:37 [ 52] [ 16] [31548790A3E3B830] +10:18:37 ============================================================================ +10:18:37 + + +waiting on router queue for slot.... +10:18:37 Sending to : +10:18:37 ============================================================================ +10:18:37 ============================================================================ +10:18:37 Slot Id : <32> +10:18:37 Transaction Type : REQUEST +10:18:37 Received From : +10:18:37 ============================================================================ +10:18:37 FNo. Len. Field Value +10:18:37 ============================================================================ +10:18:37 [ 1] [ 4] [0200] +10:18:37 [ 2] [ 16] [6213541000538002] +10:18:37 [ 3] [ 6] [011000] +10:18:37 [ 4] [ 12] [000010000000] +10:18:37 [ 7] [ 10] [0320102624] +10:18:37 [ 11] [ 6] [306034] +10:18:37 [ 12] [ 6] [102624] +10:18:37 [ 13] [ 4] [0320] +10:18:37 [ 14] [ 4] [4912] +10:18:37 [ 15] [ 4] [0320] +10:18:37 [ 18] [ 4] [6011] +10:18:37 [ 22] [ 3] [900] +10:18:37 [ 25] [ 2] [02] +10:18:37 [ 28] [ 9] [D00002000] +10:18:37 [ 32] [ 6] [220699] +10:18:37 [ 35] [ 32] [6213541000538002=491212013800770] +10:18:37 [ 37] [ 12] [507900079326] +10:18:37 [ 41] [ 8] [01000700] +10:18:37 [ 42] [ 15] [APTRA ] +10:18:37 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:18:37 [ 49] [ 3] [418] +10:18:37 [ 52] [ 16] [0149307521B82156] +10:18:37 ============================================================================ +10:18:37 + + +waiting on router queue for slot.... +10:18:37 Sending to : <0> +10:18:37 ============================================================================ +10:18:37 ============================================================================ +10:18:37 Slot Id : <32> +10:18:37 Transaction Type : RESPONSE +10:18:37 Received From : +10:18:37 ============================================================================ +10:18:37 FNo. Len. Field Value +10:18:37 ============================================================================ +10:18:37 [ 1] [ 4] [0210] +10:18:37 [ 2] [ 16] [6213541000538002] +10:18:37 [ 3] [ 6] [011000] +10:18:37 [ 4] [ 12] [000010000000] +10:18:37 [ 7] [ 10] [0320102624] +10:18:37 [ 11] [ 6] [306034] +10:18:37 [ 12] [ 6] [102624] +10:18:37 [ 13] [ 4] [0320] +10:18:37 [ 15] [ 4] [0320] +10:18:37 [ 18] [ 4] [6011] +10:18:37 [ 32] [ 6] [220699] +10:18:37 [ 35] [ 32] [6213541000538002=491212013800770] +10:18:37 [ 37] [ 12] [507900079326] +10:18:37 [ 38] [ 6] [010263] +10:18:37 [ 39] [ 2] [00] +10:18:37 [ 41] [ 8] [01000700] +10:18:37 [ 49] [ 3] [418] +10:18:37 [ 54] [ 40] [1001418C0021940933271002418C002194093327] +10:18:37 ============================================================================ +10:18:37 Sending to : +10:18:37 ============================================================================ +10:18:37 + + +waiting on router queue for slot.... +10:18:38 ============================================================================ +10:18:38 Slot Id : <464> +10:18:38 Transaction Type : RESPONSE +10:18:38 Received From : +10:18:38 ============================================================================ +10:18:38 FNo. Len. Field Value +10:18:38 ============================================================================ +10:18:38 [ 1] [ 4] [0210] +10:18:38 [ 2] [ 16] [1808931800012831] +10:18:38 [ 3] [ 6] [011000] +10:18:38 [ 4] [ 12] [000090000000] +10:18:38 [ 6] [ 12] [000090000000] +10:18:38 [ 7] [ 10] [0320101826] +10:18:38 [ 11] [ 6] [712042] +10:18:38 [ 12] [ 6] [101826] +10:18:38 [ 13] [ 4] [0320] +10:18:38 [ 18] [ 4] [6011] +10:18:38 [ 19] [ 3] [418] +10:18:38 [ 22] [ 3] [021] +10:18:38 [ 32] [ 6] [621354] +10:18:38 [ 35] [ 27] [1808931800012831=1803500526] +10:18:38 [ 37] [ 12] [507904635531] +10:18:38 [ 38] [ 6] [712042] +10:18:38 [ 39] [ 2] [00] +10:18:38 [ 41] [ 8] [17000800] +10:18:38 [ 49] [ 3] [418] +10:18:38 [ 52] [ 16] [EFAE0A9A7D022BF2] +10:18:38 [ 54] [ 20] [1001418C000003778400] +10:18:38 ============================================================================ +10:18:38 Calculate Source COMM Id = 0 +10:18:38 ============================================================================ +10:18:38 + + +waiting on router queue for slot.... +10:18:39 ============================================================================ +10:18:39 Slot Id : <32> +10:18:39 Transaction Type : RESPONSE +10:18:39 Received From : +10:18:39 ============================================================================ +10:18:39 FNo. Len. Field Value +10:18:39 ============================================================================ +10:18:39 [ 1] [ 4] [0210] +10:18:39 [ 2] [ 16] [6213541000538002] +10:18:39 [ 3] [ 6] [011000] +10:18:39 [ 4] [ 12] [000010000000] +10:18:39 [ 7] [ 10] [0320102624] +10:18:39 [ 11] [ 6] [306034] +10:18:39 [ 12] [ 6] [102624] +10:18:39 [ 13] [ 4] [0320] +10:18:39 [ 15] [ 4] [0320] +10:18:39 [ 18] [ 4] [6011] +10:18:39 [ 32] [ 6] [220699] +10:18:39 [ 35] [ 32] [6213541000538002=491212013800770] +10:18:39 [ 37] [ 12] [507900079326] +10:18:39 [ 38] [ 6] [010263] +10:18:39 [ 39] [ 2] [00] +10:18:39 [ 41] [ 8] [01000700] +10:18:39 [ 49] [ 3] [418] +10:18:39 [ 54] [ 40] [1001418C0021940933271002418C002194093327] +10:18:39 ============================================================================ +10:18:39 Calculate Source COMM Id = 1 +10:18:39 ============================================================================ +10:18:39 + + +waiting on router queue for slot.... +10:18:44 ============================================================================ +10:18:44 Slot Id : <27> +10:18:44 Transaction Type : REQUEST +10:18:44 Received From : +10:18:44 ============================================================================ +10:18:44 FNo. Len. Field Value +10:18:44 ============================================================================ +10:18:44 [ 1] [ 4] [0800] +10:18:44 [ 7] [ 10] [0320173034] +10:18:44 [ 11] [ 6] [103034] +10:18:44 [ 37] [ 12] [57910103034] +10:18:44 [ 70] [ 3] [301] +10:18:44 ============================================================================ +10:18:44 + + +waiting on router queue for slot.... +10:18:44 Sending to : +10:18:44 ============================================================================ +10:18:44 ============================================================================ +10:18:44 Slot Id : <27> +10:18:44 Transaction Type : RESPONSE +10:18:44 Received From : +10:18:44 ============================================================================ +10:18:44 FNo. Len. Field Value +10:18:44 ============================================================================ +10:18:44 [ 1] [ 4] [0810] +10:18:44 [ 7] [ 10] [0320173034] +10:18:44 [ 11] [ 6] [103034] +10:18:44 [ 37] [ 12] [579101030340] +10:18:44 [ 39] [ 2] [00] +10:18:44 [ 70] [ 3] [810] +10:18:44 ============================================================================ +10:18:44 Calculate Source COMM Id = 6 +10:18:44 ============================================================================ +10:18:44 + + +waiting on router queue for slot.... +10:18:45 ============================================================================ +10:18:45 Slot Id : <487> +10:18:45 Transaction Type : REQUEST +10:18:45 Received From : +10:18:45 ============================================================================ +10:18:45 FNo. Len. Field Value +10:18:45 ============================================================================ +10:18:45 [ 1] [ 4] [0800] +10:18:45 [ 7] [ 10] [0320031753] +10:18:45 [ 11] [ 6] [155818] +10:18:45 [ 70] [ 3] [301] +10:18:45 ============================================================================ +10:18:45 + + +waiting on router queue for slot.... +10:18:45 Sending to : +10:18:45 ============================================================================ +10:18:45 ============================================================================ +10:18:45 Slot Id : <487> +10:18:45 Transaction Type : RESPONSE +10:18:45 Received From : +10:18:45 ============================================================================ +10:18:45 FNo. Len. Field Value +10:18:45 ============================================================================ +10:18:45 [ 1] [ 4] [0810] +10:18:45 [ 7] [ 10] [0320031753] +10:18:45 [ 11] [ 6] [155818] +10:18:45 [ 39] [ 2] [00] +10:18:45 [ 70] [ 3] [301] +10:18:45 ============================================================================ +10:18:45 Calculate Source COMM Id = 2 +10:18:45 ============================================================================ +10:18:45 + + +waiting on router queue for slot.... +10:18:53 ============================================================================ +10:18:53 Slot Id : <20> +10:18:53 Transaction Type : REQUEST +10:18:53 Received From : +10:18:53 ============================================================================ +10:18:53 FNo. Len. Field Value +10:18:53 ============================================================================ +10:18:53 [ 1] [ 4] [0200] +10:18:53 [ 2] [ 16] [6213541000426034] +10:18:53 [ 3] [ 6] [010000] +10:18:53 [ 4] [ 12] [000100000000] +10:18:53 [ 7] [ 10] [0320101645] +10:18:53 [ 11] [ 6] [938202] +10:18:53 [ 12] [ 6] [101645] +10:18:53 [ 13] [ 4] [0320] +10:18:53 [ 15] [ 4] [0320] +10:18:53 [ 18] [ 4] [6011] +10:18:53 [ 19] [ 3] [418] +10:18:53 [ 22] [ 3] [021] +10:18:53 [ 25] [ 2] [01] +10:18:53 [ 28] [ 9] [D00002000] +10:18:53 [ 32] [ 6] [668899] +10:18:53 [ 35] [ 32] [6213541000426034=491212012603745] +10:18:53 [ 37] [ 12] [507902071160] +10:18:53 [ 41] [ 8] [03006007] +10:18:53 [ 42] [ 15] [APT ] +10:18:53 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:18:53 [ 49] [ 3] [418] +10:18:53 [ 52] [ 16] [22B215953523167B] +10:18:53 ============================================================================ +10:18:53 + + +waiting on router queue for slot.... +10:18:53 Sending to : +10:18:53 ============================================================================ +10:18:53 Sending to : +10:18:53 ============================================================================ +10:18:54 ============================================================================ +10:18:54 Slot Id : <20> +10:18:54 Transaction Type : REQUEST +10:18:54 Received From : +10:18:54 ============================================================================ +10:18:54 FNo. Len. Field Value +10:18:54 ============================================================================ +10:18:54 [ 1] [ 4] [0200] +10:18:54 [ 2] [ 16] [6213541000426034] +10:18:54 [ 3] [ 6] [010000] +10:18:54 [ 4] [ 12] [000100000000] +10:18:54 [ 7] [ 10] [0320101645] +10:18:54 [ 11] [ 6] [938202] +10:18:54 [ 12] [ 6] [101645] +10:18:54 [ 13] [ 4] [0320] +10:18:54 [ 15] [ 4] [0320] +10:18:54 [ 18] [ 4] [6011] +10:18:54 [ 19] [ 3] [418] +10:18:54 [ 22] [ 3] [021] +10:18:54 [ 25] [ 2] [01] +10:18:54 [ 28] [ 9] [D00002000] +10:18:54 [ 32] [ 6] [668899] +10:18:54 [ 35] [ 32] [6213541000426034=491212012603745] +10:18:54 [ 37] [ 12] [507902071160] +10:18:54 [ 41] [ 8] [03006007] +10:18:54 [ 42] [ 15] [APT ] +10:18:54 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:18:54 [ 49] [ 3] [418] +10:18:54 [ 52] [ 16] [22B215953523167B] +10:18:54 ============================================================================ +10:18:54 + + +waiting on router queue for slot.... +10:18:54 Sending to : +10:18:54 ============================================================================ +10:18:54 ============================================================================ +10:18:54 Slot Id : <20> +10:18:54 Transaction Type : REQUEST +10:18:54 Received From : +10:18:54 ============================================================================ +10:18:54 FNo. Len. Field Value +10:18:54 ============================================================================ +10:18:54 [ 1] [ 4] [0200] +10:18:54 [ 2] [ 16] [6213541000426034] +10:18:54 [ 3] [ 6] [010000] +10:18:54 [ 4] [ 12] [000100000000] +10:18:54 [ 7] [ 10] [0320101645] +10:18:54 [ 11] [ 6] [938202] +10:18:54 [ 12] [ 6] [101645] +10:18:54 [ 13] [ 4] [0320] +10:18:54 [ 15] [ 4] [0320] +10:18:54 [ 18] [ 4] [6011] +10:18:54 [ 19] [ 3] [418] +10:18:54 [ 22] [ 3] [021] +10:18:54 [ 25] [ 2] [01] +10:18:54 [ 28] [ 9] [D00002000] +10:18:54 [ 32] [ 6] [668899] +10:18:54 [ 35] [ 32] [6213541000426034=491212012603745] +10:18:54 [ 37] [ 12] [507902071160] +10:18:54 [ 41] [ 8] [03006007] +10:18:54 [ 42] [ 15] [APT ] +10:18:54 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:18:54 [ 49] [ 3] [418] +10:18:54 [ 52] [ 16] [0E1658BA589A5AA4] +10:18:54 ============================================================================ +10:18:54 + + +waiting on router queue for slot.... +10:18:54 Sending to : <0> +10:18:54 ============================================================================ +10:18:55 ============================================================================ +10:18:55 Slot Id : <20> +10:18:55 Transaction Type : RESPONSE +10:18:55 Received From : +10:18:55 ============================================================================ +10:18:55 FNo. Len. Field Value +10:18:55 ============================================================================ +10:18:55 [ 1] [ 4] [0210] +10:18:55 [ 2] [ 16] [6213541000426034] +10:18:55 [ 3] [ 6] [010000] +10:18:55 [ 4] [ 12] [000100000000] +10:18:55 [ 7] [ 10] [0320101645] +10:18:55 [ 11] [ 6] [938202] +10:18:55 [ 12] [ 6] [101645] +10:18:55 [ 13] [ 4] [0320] +10:18:55 [ 15] [ 4] [0320] +10:18:55 [ 18] [ 4] [6011] +10:18:55 [ 19] [ 3] [418] +10:18:55 [ 32] [ 6] [668899] +10:18:55 [ 35] [ 32] [6213541000426034=491212012603745] +10:18:55 [ 37] [ 12] [507902071160] +10:18:55 [ 38] [ 6] [222627] +10:18:55 [ 39] [ 2] [00] +10:18:55 [ 41] [ 8] [03006007] +10:18:55 [ 49] [ 3] [418] +10:18:55 [ 54] [ 40] [0001418C0029329089290002418C002932908929] +10:18:55 ============================================================================ +10:18:55 Sending to : +10:18:55 ============================================================================ +10:18:55 + + +waiting on router queue for slot.... +10:18:56 ============================================================================ +10:18:56 Slot Id : <20> +10:18:56 Transaction Type : RESPONSE +10:18:56 Received From : +10:18:56 ============================================================================ +10:18:56 FNo. Len. Field Value +10:18:56 ============================================================================ +10:18:56 [ 1] [ 4] [0210] +10:18:56 [ 2] [ 16] [6213541000426034] +10:18:56 [ 3] [ 6] [010000] +10:18:56 [ 4] [ 12] [000100000000] +10:18:56 [ 7] [ 10] [0320101645] +10:18:56 [ 11] [ 6] [938202] +10:18:56 [ 12] [ 6] [101645] +10:18:56 [ 13] [ 4] [0320] +10:18:56 [ 15] [ 4] [0320] +10:18:56 [ 18] [ 4] [6011] +10:18:56 [ 19] [ 3] [418] +10:18:56 [ 32] [ 6] [668899] +10:18:56 [ 35] [ 32] [6213541000426034=491212012603745] +10:18:56 [ 37] [ 12] [507902071160] +10:18:56 [ 38] [ 6] [222627] +10:18:56 [ 39] [ 2] [00] +10:18:56 [ 41] [ 8] [03006007] +10:18:56 [ 49] [ 3] [418] +10:18:56 [ 54] [ 40] [0001418C0029329089290002418C002932908929] +10:18:56 ============================================================================ +10:18:56 Calculate Source COMM Id = 4 +10:18:56 ============================================================================ +10:18:56 + + +waiting on router queue for slot.... +10:18:57 ============================================================================ +10:18:57 Slot Id : <26> +10:18:57 Transaction Type : REQUEST +10:18:57 Received From : +10:18:57 ============================================================================ +10:18:57 FNo. Len. Field Value +10:18:57 ============================================================================ +10:18:57 [ 1] [ 4] [0800] +10:18:57 [ 7] [ 10] [0320031805] +10:18:57 [ 11] [ 6] [155819] +10:18:57 [ 70] [ 3] [301] +10:18:57 ============================================================================ +10:18:57 + + +waiting on router queue for slot.... +10:18:57 Sending to : +10:18:57 ============================================================================ +10:18:57 ============================================================================ +10:18:57 Slot Id : <26> +10:18:57 Transaction Type : RESPONSE +10:18:57 Received From : +10:18:57 ============================================================================ +10:18:57 FNo. Len. Field Value +10:18:57 ============================================================================ +10:18:57 [ 1] [ 4] [0810] +10:18:57 [ 7] [ 10] [0320031805] +10:18:57 [ 11] [ 6] [155819] +10:18:57 [ 39] [ 2] [00] +10:18:57 [ 70] [ 3] [301] +10:18:57 ============================================================================ +10:18:57 Calculate Source COMM Id = 2 +10:18:57 ============================================================================ +10:18:57 + + +waiting on router queue for slot.... +10:19:09 ============================================================================ +10:19:09 Slot Id : <48> +10:19:09 Transaction Type : REQUEST +10:19:09 Received From : +10:19:09 ============================================================================ +10:19:09 FNo. Len. Field Value +10:19:09 ============================================================================ +10:19:09 [ 1] [ 4] [0800] +10:19:09 [ 7] [ 10] [0320031817] +10:19:09 [ 11] [ 6] [155820] +10:19:09 [ 70] [ 3] [301] +10:19:09 ============================================================================ +10:19:09 + + +waiting on router queue for slot.... +10:19:09 Sending to : +10:19:09 ============================================================================ +10:19:09 ============================================================================ +10:19:09 Slot Id : <48> +10:19:09 Transaction Type : RESPONSE +10:19:09 Received From : +10:19:09 ============================================================================ +10:19:09 FNo. Len. Field Value +10:19:09 ============================================================================ +10:19:09 [ 1] [ 4] [0810] +10:19:09 [ 7] [ 10] [0320031817] +10:19:09 [ 11] [ 6] [155820] +10:19:09 [ 39] [ 2] [00] +10:19:09 [ 70] [ 3] [301] +10:19:09 ============================================================================ +10:19:09 Calculate Source COMM Id = 2 +10:19:09 ============================================================================ +10:19:09 + + +waiting on router queue for slot.... +10:19:10 ============================================================================ +10:19:10 Slot Id : <19> +10:19:10 Transaction Type : REQUEST +10:19:10 Received From : +10:19:10 ============================================================================ +10:19:10 FNo. Len. Field Value +10:19:10 ============================================================================ +10:19:10 [ 1] [ 4] [0200] +10:19:10 [ 2] [ 16] [6213541000095987] +10:19:10 [ 3] [ 6] [010000] +10:19:10 [ 4] [ 12] [000100000000] +10:19:10 [ 7] [ 10] [0320031817] +10:19:10 [ 11] [ 6] [268038] +10:19:10 [ 12] [ 6] [101817] +10:19:10 [ 13] [ 4] [0320] +10:19:10 [ 14] [ 4] [4912] +10:19:10 [ 15] [ 4] [0320] +10:19:10 [ 18] [ 4] [6011] +10:19:10 [ 19] [ 3] [418] +10:19:10 [ 22] [ 3] [021] +10:19:10 [ 25] [ 2] [01] +10:19:10 [ 28] [ 9] [D00002000] +10:19:10 [ 32] [ 6] [180893] +10:19:10 [ 35] [ 32] [6213541000095987=491212019598862] +10:19:10 [ 37] [ 12] [507903268038] +10:19:10 [ 41] [ 8] [0110VTBR] +10:19:10 [ 42] [ 15] [999999 ] +10:19:10 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +10:19:10 [ 49] [ 3] [418] +10:19:10 [ 52] [ 16] [457EF12776FF1AFB] +10:19:10 ============================================================================ +10:19:10 + + +waiting on router queue for slot.... +10:19:10 Sending to : +10:19:10 ============================================================================ +10:19:10 Sending to : +10:19:10 ============================================================================ +10:19:10 ============================================================================ +10:19:10 Slot Id : <19> +10:19:10 Transaction Type : REQUEST +10:19:10 Received From : +10:19:10 ============================================================================ +10:19:10 FNo. Len. Field Value +10:19:10 ============================================================================ +10:19:10 [ 1] [ 4] [0200] +10:19:10 [ 2] [ 16] [6213541000095987] +10:19:10 [ 3] [ 6] [010000] +10:19:10 [ 4] [ 12] [000100000000] +10:19:10 [ 7] [ 10] [0320031817] +10:19:10 [ 11] [ 6] [268038] +10:19:10 [ 12] [ 6] [101817] +10:19:10 [ 13] [ 4] [0320] +10:19:10 [ 14] [ 4] [4912] +10:19:10 [ 15] [ 4] [0320] +10:19:10 [ 18] [ 4] [6011] +10:19:10 [ 19] [ 3] [418] +10:19:10 [ 22] [ 3] [021] +10:19:10 [ 25] [ 2] [01] +10:19:10 [ 28] [ 9] [D00002000] +10:19:10 [ 32] [ 6] [180893] +10:19:10 [ 35] [ 32] [6213541000095987=491212019598862] +10:19:10 [ 37] [ 12] [507903268038] +10:19:10 [ 41] [ 8] [0110VTBR] +10:19:10 [ 42] [ 15] [999999 ] +10:19:10 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +10:19:10 [ 49] [ 3] [418] +10:19:10 [ 52] [ 16] [457EF12776FF1AFB] +10:19:10 ============================================================================ +10:19:10 + + +waiting on router queue for slot.... +10:19:10 Sending to : +10:19:10 ============================================================================ +10:19:10 ============================================================================ +10:19:10 Slot Id : <19> +10:19:10 Transaction Type : REQUEST +10:19:10 Received From : +10:19:10 ============================================================================ +10:19:10 FNo. Len. Field Value +10:19:10 ============================================================================ +10:19:10 [ 1] [ 4] [0200] +10:19:10 [ 2] [ 16] [6213541000095987] +10:19:10 [ 3] [ 6] [010000] +10:19:10 [ 4] [ 12] [000100000000] +10:19:10 [ 7] [ 10] [0320031817] +10:19:10 [ 11] [ 6] [268038] +10:19:10 [ 12] [ 6] [101817] +10:19:10 [ 13] [ 4] [0320] +10:19:10 [ 14] [ 4] [4912] +10:19:10 [ 15] [ 4] [0320] +10:19:10 [ 18] [ 4] [6011] +10:19:10 [ 19] [ 3] [418] +10:19:10 [ 22] [ 3] [021] +10:19:10 [ 25] [ 2] [01] +10:19:10 [ 28] [ 9] [D00002000] +10:19:10 [ 32] [ 6] [180893] +10:19:10 [ 35] [ 32] [6213541000095987=491212019598862] +10:19:10 [ 37] [ 12] [507903268038] +10:19:10 [ 41] [ 8] [0110VTBR] +10:19:10 [ 42] [ 15] [999999 ] +10:19:10 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +10:19:10 [ 49] [ 3] [418] +10:19:10 [ 52] [ 16] [4D00C539B1387868] +10:19:10 ============================================================================ +10:19:10 + + +waiting on router queue for slot.... +10:19:10 Sending to : <0> +10:19:10 ============================================================================ +10:19:10 ============================================================================ +10:19:10 Slot Id : <46> +10:19:10 Transaction Type : REQUEST +10:19:10 Received From : +10:19:10 ============================================================================ +10:19:10 FNo. Len. Field Value +10:19:10 ============================================================================ +10:19:10 [ 1] [ 4] [0420] +10:19:10 [ 2] [ 16] [6213545000045397] +10:19:10 [ 3] [ 6] [010000] +10:19:10 [ 4] [ 12] [000100000000] +10:19:10 [ 7] [ 10] [0320101930] +10:19:10 [ 11] [ 6] [079058] +10:19:10 [ 12] [ 6] [101930] +10:19:10 [ 13] [ 4] [0320] +10:19:10 [ 14] [ 4] [4912] +10:19:10 [ 15] [ 4] [0320] +10:19:10 [ 18] [ 4] [6011] +10:19:10 [ 22] [ 3] [900] +10:19:10 [ 25] [ 2] [02] +10:19:10 [ 28] [ 9] [C00002000] +10:19:10 [ 32] [ 6] [220699] +10:19:10 [ 35] [ 32] [6213545000045397=491212014539552] +10:19:10 [ 37] [ 12] [507900132941] +10:19:10 [ 39] [ 2] [00] +10:19:10 [ 41] [ 8] [03000100] +10:19:10 [ 42] [ 15] [APTRA ] +10:19:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:19:10 [ 49] [ 3] [418] +10:19:10 [ 90] [ 42] [020007905803201019300000022069900000000000] +10:19:10 ============================================================================ +10:19:10 + + +waiting on router queue for slot.... +10:19:10 Sending to : +10:19:10 ============================================================================ +10:19:11 ============================================================================ +10:19:11 Slot Id : <19> +10:19:11 Transaction Type : RESPONSE +10:19:11 Received From : +10:19:11 ============================================================================ +10:19:11 FNo. Len. Field Value +10:19:11 ============================================================================ +10:19:11 [ 1] [ 4] [0210] +10:19:11 [ 2] [ 16] [6213541000095987] +10:19:11 [ 3] [ 6] [010000] +10:19:11 [ 4] [ 12] [000100000000] +10:19:11 [ 7] [ 10] [0320031817] +10:19:11 [ 11] [ 6] [268038] +10:19:11 [ 12] [ 6] [101817] +10:19:11 [ 13] [ 4] [0320] +10:19:11 [ 15] [ 4] [0320] +10:19:11 [ 18] [ 4] [6011] +10:19:11 [ 19] [ 3] [418] +10:19:11 [ 32] [ 6] [180893] +10:19:11 [ 35] [ 32] [6213541000095987=491212019598862] +10:19:11 [ 37] [ 12] [507903268038] +10:19:11 [ 38] [ 6] [403198] +10:19:11 [ 39] [ 2] [00] +10:19:11 [ 41] [ 8] [0110VTBR] +10:19:11 [ 49] [ 3] [418] +10:19:11 [ 54] [ 40] [0001840C0000000120190002840C000000012019] +10:19:11 ============================================================================ +10:19:11 Sending to : +10:19:11 ============================================================================ +10:19:11 + + +waiting on router queue for slot.... +10:19:15 ============================================================================ +10:19:15 Slot Id : <46> +10:19:15 Transaction Type : RESPONSE +10:19:15 Received From : +10:19:15 ============================================================================ +10:19:15 FNo. Len. Field Value +10:19:15 ============================================================================ +10:19:15 [ 1] [ 4] [0430] +10:19:15 [ 2] [ 16] [6213545000045397] +10:19:15 [ 3] [ 6] [010000] +10:19:15 [ 4] [ 12] [000100000000] +10:19:15 [ 7] [ 10] [0320101930] +10:19:15 [ 11] [ 6] [079058] +10:19:15 [ 12] [ 6] [101930] +10:19:15 [ 13] [ 4] [0320] +10:19:15 [ 14] [ 4] [4912] +10:19:15 [ 15] [ 4] [0320] +10:19:15 [ 18] [ 4] [6011] +10:19:15 [ 22] [ 3] [900] +10:19:15 [ 25] [ 2] [02] +10:19:15 [ 28] [ 9] [C00002000] +10:19:15 [ 32] [ 6] [220699] +10:19:15 [ 35] [ 32] [6213545000045397=491212014539552] +10:19:15 [ 37] [ 12] [507900132941] +10:19:15 [ 39] [ 2] [00] +10:19:15 [ 41] [ 8] [03000100] +10:19:15 [ 42] [ 15] [APTRA ] +10:19:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:19:15 [ 49] [ 3] [418] +10:19:15 [ 90] [ 42] [020007905803201019300000022069900000000000] +10:19:15 ============================================================================ +10:19:15 Calculate Source COMM Id = 1 +10:19:15 ============================================================================ +10:19:15 + + +waiting on router queue for slot.... +10:19:16 ============================================================================ +10:19:16 Slot Id : <19> +10:19:16 Transaction Type : RESPONSE +10:19:16 Received From : +10:19:16 ============================================================================ +10:19:16 FNo. Len. Field Value +10:19:16 ============================================================================ +10:19:16 [ 1] [ 4] [0210] +10:19:16 [ 2] [ 16] [6213541000095987] +10:19:16 [ 3] [ 6] [010000] +10:19:16 [ 4] [ 12] [000100000000] +10:19:16 [ 7] [ 10] [0320031817] +10:19:16 [ 11] [ 6] [268038] +10:19:16 [ 12] [ 6] [101817] +10:19:16 [ 13] [ 4] [0320] +10:19:16 [ 15] [ 4] [0320] +10:19:16 [ 18] [ 4] [6011] +10:19:16 [ 19] [ 3] [418] +10:19:16 [ 32] [ 6] [180893] +10:19:16 [ 35] [ 32] [6213541000095987=491212019598862] +10:19:16 [ 37] [ 12] [507903268038] +10:19:16 [ 38] [ 6] [403198] +10:19:16 [ 39] [ 2] [00] +10:19:16 [ 41] [ 8] [0110VTBR] +10:19:16 [ 49] [ 3] [418] +10:19:16 [ 54] [ 40] [0001840C0000000120190002840C000000012019] +10:19:16 ============================================================================ +10:19:16 Calculate Source COMM Id = 2 +10:19:16 ============================================================================ +10:19:16 + + +waiting on router queue for slot.... +10:19:31 ============================================================================ +10:19:31 Slot Id : <69> +10:19:31 Transaction Type : REQUEST +10:19:31 Received From : +10:19:31 ============================================================================ +10:19:31 FNo. Len. Field Value +10:19:31 ============================================================================ +10:19:31 [ 1] [ 4] [0800] +10:19:31 [ 7] [ 10] [0320031839] +10:19:31 [ 11] [ 6] [155821] +10:19:31 [ 70] [ 3] [301] +10:19:31 ============================================================================ +10:19:31 + + +waiting on router queue for slot.... +10:19:31 Sending to : +10:19:31 ============================================================================ +10:19:31 ============================================================================ +10:19:31 Slot Id : <69> +10:19:31 Transaction Type : RESPONSE +10:19:31 Received From : +10:19:31 ============================================================================ +10:19:31 FNo. Len. Field Value +10:19:31 ============================================================================ +10:19:31 [ 1] [ 4] [0810] +10:19:31 [ 7] [ 10] [0320031839] +10:19:31 [ 11] [ 6] [155821] +10:19:31 [ 39] [ 2] [00] +10:19:31 [ 70] [ 3] [301] +10:19:31 ============================================================================ +10:19:31 Calculate Source COMM Id = 2 +10:19:31 ============================================================================ +10:19:31 + + +waiting on router queue for slot.... +10:19:35 ============================================================================ +10:19:35 Slot Id : <58> +10:19:35 Transaction Type : REQUEST +10:19:35 Received From : +10:19:35 ============================================================================ +10:19:35 FNo. Len. Field Value +10:19:35 ============================================================================ +10:19:35 [ 1] [ 4] [0800] +10:19:35 [ 2] [ 5] [02531] +10:19:35 [ 3] [ 6] [579108] +10:19:35 [ 7] [ 10] [0320031935] +10:19:35 [ 11] [ 6] [807011] +10:19:35 [ 15] [ 10] [0320031935] +10:19:35 [ 37] [ 11] [57910807011] +10:19:35 [ 70] [ 3] [001] +10:19:35 ============================================================================ +10:19:35 + + +waiting on router queue for slot.... +10:19:35 ============================================================================ +10:19:35 Slot Id : <58> +10:19:35 Transaction Type : RESPONSE +10:19:35 Received From : +10:19:35 ============================================================================ +10:19:35 FNo. Len. Field Value +10:19:35 ============================================================================ +10:19:35 [ 1] [ 4] [0810] +10:19:35 [ 7] [ 10] [0320031935] +10:19:35 [ 11] [ 6] [807011] +10:19:35 [ 15] [ 4] [0320] +10:19:35 [ 37] [ 12] [57910807011] +10:19:35 [ 39] [ 2] [00] +10:19:35 [ 70] [ 3] [001] +10:19:35 ============================================================================ +10:19:35 Sending to : +10:19:35 ============================================================================ +10:19:35 + + +waiting on router queue for slot.... +10:19:46 ============================================================================ +10:19:46 Slot Id : <78> +10:19:46 Transaction Type : REQUEST +10:19:46 Received From : +10:19:46 ============================================================================ +10:19:46 FNo. Len. Field Value +10:19:46 ============================================================================ +10:19:46 [ 1] [ 4] [0800] +10:19:46 [ 7] [ 10] [0320031854] +10:19:46 [ 11] [ 6] [155822] +10:19:46 [ 70] [ 3] [301] +10:19:46 ============================================================================ +10:19:46 + + +waiting on router queue for slot.... +10:19:46 Sending to : +10:19:46 ============================================================================ +10:19:46 ============================================================================ +10:19:46 Slot Id : <78> +10:19:46 Transaction Type : RESPONSE +10:19:46 Received From : +10:19:46 ============================================================================ +10:19:46 FNo. Len. Field Value +10:19:46 ============================================================================ +10:19:46 [ 1] [ 4] [0810] +10:19:46 [ 7] [ 10] [0320031854] +10:19:46 [ 11] [ 6] [155822] +10:19:46 [ 39] [ 2] [00] +10:19:46 [ 70] [ 3] [301] +10:19:46 ============================================================================ +10:19:46 Calculate Source COMM Id = 2 +10:19:46 ============================================================================ +10:19:46 + + +waiting on router queue for slot.... +10:19:49 ============================================================================ +10:19:49 Slot Id : <47> +10:19:49 Transaction Type : REQUEST +10:19:49 Received From : +10:19:49 ============================================================================ +10:19:49 FNo. Len. Field Value +10:19:49 ============================================================================ +10:19:49 [ 1] [ 4] [0800] +10:19:49 [ 7] [ 10] [0320173139] +10:19:49 [ 11] [ 6] [103139] +10:19:49 [ 37] [ 12] [57910103139] +10:19:49 [ 70] [ 3] [301] +10:19:49 ============================================================================ +10:19:49 + + +waiting on router queue for slot.... +10:19:49 Sending to : +10:19:49 ============================================================================ +10:19:49 ============================================================================ +10:19:49 Slot Id : <47> +10:19:49 Transaction Type : RESPONSE +10:19:49 Received From : +10:19:49 ============================================================================ +10:19:49 FNo. Len. Field Value +10:19:49 ============================================================================ +10:19:49 [ 1] [ 4] [0810] +10:19:49 [ 7] [ 10] [0320173139] +10:19:49 [ 11] [ 6] [103139] +10:19:49 [ 37] [ 12] [579101031390] +10:19:49 [ 39] [ 2] [00] +10:19:49 [ 70] [ 3] [810] +10:19:49 ============================================================================ +10:19:49 Calculate Source COMM Id = 6 +10:19:49 ============================================================================ +10:19:49 + + +waiting on router queue for slot.... +10:19:49 ============================================================================ +10:19:49 Slot Id : <81> +10:19:49 Transaction Type : REQUEST +10:19:49 Received From : +10:19:49 ============================================================================ +10:19:49 FNo. Len. Field Value +10:19:49 ============================================================================ +10:19:49 [ 1] [ 4] [0200] +10:19:49 [ 2] [ 16] [1808931800012633] +10:19:49 [ 3] [ 6] [011000] +10:19:49 [ 4] [ 12] [000020000000] +10:19:49 [ 7] [ 10] [0320101946] +10:19:49 [ 11] [ 6] [712390] +10:19:49 [ 12] [ 6] [101946] +10:19:49 [ 13] [ 4] [0320] +10:19:49 [ 15] [ 4] [0320] +10:19:49 [ 18] [ 4] [6011] +10:19:49 [ 22] [ 3] [900] +10:19:49 [ 25] [ 2] [02] +10:19:49 [ 28] [ 9] [D00002000] +10:19:49 [ 32] [ 6] [621354] +10:19:49 [ 35] [ 27] [1808931800012633=1803500869] +10:19:49 [ 37] [ 12] [507904635533] +10:19:49 [ 41] [ 8] [17000800] +10:19:49 [ 42] [ 15] [NATIVE ] +10:19:49 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:19:49 [ 49] [ 3] [418] +10:19:49 [ 52] [ 16] [D001A708DB431E39] +10:19:49 ============================================================================ +10:19:49 + + +waiting on router queue for slot.... +10:19:49 Sending to : +10:19:49 ============================================================================ +10:19:49 Sending to : +10:19:49 ============================================================================ +10:19:50 ============================================================================ +10:19:50 Slot Id : <81> +10:19:50 Transaction Type : REQUEST +10:19:50 Received From : +10:19:50 ============================================================================ +10:19:50 FNo. Len. Field Value +10:19:50 ============================================================================ +10:19:50 [ 1] [ 4] [0200] +10:19:50 [ 2] [ 16] [1808931800012633] +10:19:50 [ 3] [ 6] [011000] +10:19:50 [ 4] [ 12] [000020000000] +10:19:50 [ 7] [ 10] [0320101946] +10:19:50 [ 11] [ 6] [712390] +10:19:50 [ 12] [ 6] [101946] +10:19:50 [ 13] [ 4] [0320] +10:19:50 [ 15] [ 4] [0320] +10:19:50 [ 18] [ 4] [6011] +10:19:50 [ 22] [ 3] [900] +10:19:50 [ 25] [ 2] [02] +10:19:50 [ 28] [ 9] [D00002000] +10:19:50 [ 32] [ 6] [621354] +10:19:50 [ 35] [ 27] [1808931800012633=1803500869] +10:19:50 [ 37] [ 12] [507904635533] +10:19:50 [ 41] [ 8] [17000800] +10:19:50 [ 42] [ 15] [NATIVE ] +10:19:50 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:19:50 [ 49] [ 3] [418] +10:19:50 [ 52] [ 16] [D001A708DB431E39] +10:19:50 ============================================================================ +10:19:50 + + +waiting on router queue for slot.... +10:19:50 Sending to : +10:19:50 ============================================================================ +10:19:50 ============================================================================ +10:19:50 Slot Id : <81> +10:19:50 Transaction Type : REQUEST +10:19:50 Received From : +10:19:50 ============================================================================ +10:19:50 FNo. Len. Field Value +10:19:50 ============================================================================ +10:19:50 [ 1] [ 4] [0200] +10:19:50 [ 2] [ 16] [1808931800012633] +10:19:50 [ 3] [ 6] [011000] +10:19:50 [ 4] [ 12] [000020000000] +10:19:50 [ 7] [ 10] [0320101946] +10:19:50 [ 11] [ 6] [712390] +10:19:50 [ 12] [ 6] [101946] +10:19:50 [ 13] [ 4] [0320] +10:19:50 [ 15] [ 4] [0320] +10:19:50 [ 18] [ 4] [6011] +10:19:50 [ 22] [ 3] [900] +10:19:50 [ 25] [ 2] [02] +10:19:50 [ 28] [ 9] [D00002000] +10:19:50 [ 32] [ 6] [621354] +10:19:50 [ 35] [ 27] [1808931800012633=1803500869] +10:19:50 [ 37] [ 12] [507904635533] +10:19:50 [ 41] [ 8] [17000800] +10:19:50 [ 42] [ 15] [NATIVE ] +10:19:50 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:19:50 [ 49] [ 3] [418] +10:19:50 [ 52] [ 16] [185F0AE7E71C5FC8] +10:19:50 ============================================================================ +10:19:50 + + +waiting on router queue for slot.... +10:19:50 Sending to : <2> +10:19:50 ============================================================================ +10:19:53 ============================================================================ +10:19:53 Slot Id : <81> +10:19:53 Transaction Type : RESPONSE +10:19:53 Received From : +10:19:53 ============================================================================ +10:19:53 FNo. Len. Field Value +10:19:53 ============================================================================ +10:19:53 [ 1] [ 4] [0210] +10:19:53 [ 2] [ 16] [1808931800012633] +10:19:53 [ 3] [ 6] [011000] +10:19:53 [ 4] [ 12] [000020000000] +10:19:53 [ 6] [ 12] [000020000000] +10:19:53 [ 7] [ 10] [0320101946] +10:19:53 [ 11] [ 6] [712390] +10:19:53 [ 12] [ 6] [101946] +10:19:53 [ 13] [ 4] [0320] +10:19:53 [ 18] [ 4] [6011] +10:19:53 [ 19] [ 3] [418] +10:19:53 [ 22] [ 3] [021] +10:19:53 [ 32] [ 6] [621354] +10:19:53 [ 35] [ 27] [1808931800012633=1803500869] +10:19:53 [ 37] [ 12] [507904635533] +10:19:53 [ 38] [ 6] [712390] +10:19:53 [ 39] [ 2] [00] +10:19:53 [ 41] [ 8] [17000800] +10:19:53 [ 49] [ 3] [418] +10:19:53 [ 52] [ 16] [185F0AE7E71C5FC8] +10:19:53 [ 54] [ 20] [1001418C000005255100] +10:19:53 ============================================================================ +10:19:53 Sending to : +10:19:53 ============================================================================ +10:19:53 + + +waiting on router queue for slot.... +10:19:54 ============================================================================ +10:19:54 Slot Id : <54> +10:19:54 Transaction Type : REQUEST +10:19:54 Received From : +10:19:54 ============================================================================ +10:19:54 FNo. Len. Field Value +10:19:54 ============================================================================ +10:19:54 [ 1] [ 4] [0800] +10:19:54 [ 7] [ 10] [0320032742] +10:19:54 [ 11] [ 6] [099147] +10:19:54 [ 37] [ 12] [57910099147] +10:19:54 [ 70] [ 3] [301] +10:19:54 ============================================================================ +10:19:54 + + +waiting on router queue for slot.... +10:19:54 Sending to : +10:19:54 ============================================================================ +10:19:54 ============================================================================ +10:19:54 Slot Id : <54> +10:19:54 Transaction Type : RESPONSE +10:19:54 Received From : +10:19:54 ============================================================================ +10:19:54 FNo. Len. Field Value +10:19:54 ============================================================================ +10:19:54 [ 1] [ 4] [0810] +10:19:54 [ 7] [ 10] [0320032742] +10:19:54 [ 11] [ 6] [099147] +10:19:54 [ 37] [ 12] [579100991470] +10:19:54 [ 39] [ 2] [00] +10:19:54 [ 70] [ 3] [810] +10:19:54 ============================================================================ +10:19:54 Calculate Source COMM Id = 1 +10:19:54 ============================================================================ +10:19:54 + + +waiting on router queue for slot.... +10:19:55 ============================================================================ +10:19:55 Slot Id : <81> +10:19:55 Transaction Type : RESPONSE +10:19:55 Received From : +10:19:55 ============================================================================ +10:19:55 FNo. Len. Field Value +10:19:55 ============================================================================ +10:19:55 [ 1] [ 4] [0210] +10:19:55 [ 2] [ 16] [1808931800012633] +10:19:55 [ 3] [ 6] [011000] +10:19:55 [ 4] [ 12] [000020000000] +10:19:55 [ 6] [ 12] [000020000000] +10:19:55 [ 7] [ 10] [0320101946] +10:19:55 [ 11] [ 6] [712390] +10:19:55 [ 12] [ 6] [101946] +10:19:55 [ 13] [ 4] [0320] +10:19:55 [ 18] [ 4] [6011] +10:19:55 [ 19] [ 3] [418] +10:19:55 [ 22] [ 3] [021] +10:19:55 [ 32] [ 6] [621354] +10:19:55 [ 35] [ 27] [1808931800012633=1803500869] +10:19:55 [ 37] [ 12] [507904635533] +10:19:55 [ 38] [ 6] [712390] +10:19:55 [ 39] [ 2] [00] +10:19:55 [ 41] [ 8] [17000800] +10:19:55 [ 49] [ 3] [418] +10:19:55 [ 52] [ 16] [185F0AE7E71C5FC8] +10:19:55 [ 54] [ 20] [1001418C000005255100] +10:19:55 ============================================================================ +10:19:55 Calculate Source COMM Id = 0 +10:19:55 ============================================================================ +10:19:55 + + +waiting on router queue for slot.... +10:19:55 ============================================================================ +10:19:55 Slot Id : <57> +10:19:55 Transaction Type : REQUEST +10:19:55 Received From : +10:19:55 ============================================================================ +10:19:55 FNo. Len. Field Value +10:19:55 ============================================================================ +10:19:55 [ 1] [ 4] [0200] +10:19:55 [ 2] [ 16] [6213541000426034] +10:19:55 [ 3] [ 6] [010000] +10:19:55 [ 4] [ 12] [000030000000] +10:19:55 [ 7] [ 10] [0320101746] +10:19:55 [ 11] [ 6] [938249] +10:19:55 [ 12] [ 6] [101746] +10:19:55 [ 13] [ 4] [0320] +10:19:55 [ 15] [ 4] [0320] +10:19:55 [ 18] [ 4] [6011] +10:19:55 [ 19] [ 3] [418] +10:19:55 [ 22] [ 3] [021] +10:19:55 [ 25] [ 2] [01] +10:19:55 [ 28] [ 9] [D00002000] +10:19:55 [ 32] [ 6] [668899] +10:19:55 [ 35] [ 32] [6213541000426034=491212012603745] +10:19:55 [ 37] [ 12] [507902071162] +10:19:55 [ 41] [ 8] [03006007] +10:19:55 [ 42] [ 15] [APT ] +10:19:55 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:19:55 [ 49] [ 3] [418] +10:19:55 [ 52] [ 16] [22B215953523167B] +10:19:55 ============================================================================ +10:19:55 + + +waiting on router queue for slot.... +10:19:55 Sending to : +10:19:55 ============================================================================ +10:19:55 Sending to : +10:19:55 ============================================================================ +10:19:55 ============================================================================ +10:19:55 Slot Id : <57> +10:19:55 Transaction Type : REQUEST +10:19:55 Received From : +10:19:55 ============================================================================ +10:19:55 FNo. Len. Field Value +10:19:55 ============================================================================ +10:19:55 [ 1] [ 4] [0200] +10:19:55 [ 2] [ 16] [6213541000426034] +10:19:55 [ 3] [ 6] [010000] +10:19:55 [ 4] [ 12] [000030000000] +10:19:55 [ 7] [ 10] [0320101746] +10:19:55 [ 11] [ 6] [938249] +10:19:55 [ 12] [ 6] [101746] +10:19:55 [ 13] [ 4] [0320] +10:19:55 [ 15] [ 4] [0320] +10:19:55 [ 18] [ 4] [6011] +10:19:55 [ 19] [ 3] [418] +10:19:55 [ 22] [ 3] [021] +10:19:55 [ 25] [ 2] [01] +10:19:55 [ 28] [ 9] [D00002000] +10:19:56 [ 32] [ 6] [668899] +10:19:56 [ 35] [ 32] [6213541000426034=491212012603745] +10:19:56 [ 37] [ 12] [507902071162] +10:19:56 [ 41] [ 8] [03006007] +10:19:56 [ 42] [ 15] [APT ] +10:19:56 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:19:56 [ 49] [ 3] [418] +10:19:56 [ 52] [ 16] [22B215953523167B] +10:19:56 ============================================================================ +10:19:56 + + +waiting on router queue for slot.... +10:19:56 Sending to : +10:19:56 ============================================================================ +10:19:56 ============================================================================ +10:19:56 Slot Id : <57> +10:19:56 Transaction Type : REQUEST +10:19:56 Received From : +10:19:56 ============================================================================ +10:19:56 FNo. Len. Field Value +10:19:56 ============================================================================ +10:19:56 [ 1] [ 4] [0200] +10:19:56 [ 2] [ 16] [6213541000426034] +10:19:56 [ 3] [ 6] [010000] +10:19:56 [ 4] [ 12] [000030000000] +10:19:56 [ 7] [ 10] [0320101746] +10:19:56 [ 11] [ 6] [938249] +10:19:56 [ 12] [ 6] [101746] +10:19:56 [ 13] [ 4] [0320] +10:19:56 [ 15] [ 4] [0320] +10:19:56 [ 18] [ 4] [6011] +10:19:56 [ 19] [ 3] [418] +10:19:56 [ 22] [ 3] [021] +10:19:56 [ 25] [ 2] [01] +10:19:56 [ 28] [ 9] [D00002000] +10:19:56 [ 32] [ 6] [668899] +10:19:56 [ 35] [ 32] [6213541000426034=491212012603745] +10:19:56 [ 37] [ 12] [507902071162] +10:19:56 [ 41] [ 8] [03006007] +10:19:56 [ 42] [ 15] [APT ] +10:19:56 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:19:56 [ 49] [ 3] [418] +10:19:56 [ 52] [ 16] [0E1658BA589A5AA4] +10:19:56 ============================================================================ +10:19:56 + + +waiting on router queue for slot.... +10:19:56 Sending to : <0> +10:19:56 ============================================================================ +10:19:56 ============================================================================ +10:19:56 Slot Id : <57> +10:19:56 Transaction Type : RESPONSE +10:19:56 Received From : +10:19:56 ============================================================================ +10:19:56 FNo. Len. Field Value +10:19:56 ============================================================================ +10:19:56 [ 1] [ 4] [0210] +10:19:56 [ 2] [ 16] [6213541000426034] +10:19:56 [ 3] [ 6] [010000] +10:19:56 [ 4] [ 12] [000030000000] +10:19:56 [ 7] [ 10] [0320101746] +10:19:56 [ 11] [ 6] [938249] +10:19:56 [ 12] [ 6] [101746] +10:19:56 [ 13] [ 4] [0320] +10:19:56 [ 15] [ 4] [0320] +10:19:56 [ 18] [ 4] [6011] +10:19:56 [ 19] [ 3] [418] +10:19:56 [ 32] [ 6] [668899] +10:19:56 [ 35] [ 32] [6213541000426034=491212012603745] +10:19:56 [ 37] [ 12] [507902071162] +10:19:56 [ 38] [ 6] [977180] +10:19:56 [ 39] [ 2] [00] +10:19:56 [ 41] [ 8] [03006007] +10:19:56 [ 49] [ 3] [418] +10:19:56 [ 54] [ 40] [0001418C0029027089290002418C002902708929] +10:19:56 ============================================================================ +10:19:56 Sending to : +10:19:56 ============================================================================ +10:19:56 + + +waiting on router queue for slot.... +10:19:58 ============================================================================ +10:19:58 Slot Id : <57> +10:19:58 Transaction Type : RESPONSE +10:19:58 Received From : +10:19:58 ============================================================================ +10:19:58 FNo. Len. Field Value +10:19:58 ============================================================================ +10:19:58 [ 1] [ 4] [0210] +10:19:58 [ 2] [ 16] [6213541000426034] +10:19:58 [ 3] [ 6] [010000] +10:19:58 [ 4] [ 12] [000030000000] +10:19:58 [ 7] [ 10] [0320101746] +10:19:58 [ 11] [ 6] [938249] +10:19:58 [ 12] [ 6] [101746] +10:19:58 [ 13] [ 4] [0320] +10:19:58 [ 15] [ 4] [0320] +10:19:58 [ 18] [ 4] [6011] +10:19:58 [ 19] [ 3] [418] +10:19:58 [ 32] [ 6] [668899] +10:19:58 [ 35] [ 32] [6213541000426034=491212012603745] +10:19:58 [ 37] [ 12] [507902071162] +10:19:58 [ 38] [ 6] [977180] +10:19:58 [ 39] [ 2] [00] +10:19:58 [ 41] [ 8] [03006007] +10:19:58 [ 49] [ 3] [418] +10:19:58 [ 54] [ 40] [0001418C0029027089290002418C002902708929] +10:19:58 ============================================================================ +10:19:58 Calculate Source COMM Id = 4 +10:19:58 ============================================================================ +10:19:58 + + +waiting on router queue for slot.... +10:20:02 ============================================================================ +10:20:02 Slot Id : <24> +10:20:02 Transaction Type : REQUEST +10:20:02 Received From : +10:20:02 ============================================================================ +10:20:02 FNo. Len. Field Value +10:20:02 ============================================================================ +10:20:02 [ 1] [ 4] [0800] +10:20:02 [ 7] [ 10] [0320031910] +10:20:02 [ 11] [ 6] [155823] +10:20:02 [ 70] [ 3] [301] +10:20:02 ============================================================================ +10:20:02 + + +waiting on router queue for slot.... +10:20:02 Sending to : +10:20:02 ============================================================================ +10:20:02 ============================================================================ +10:20:02 Slot Id : <24> +10:20:02 Transaction Type : RESPONSE +10:20:02 Received From : +10:20:02 ============================================================================ +10:20:02 FNo. Len. Field Value +10:20:02 ============================================================================ +10:20:02 [ 1] [ 4] [0810] +10:20:02 [ 7] [ 10] [0320031910] +10:20:02 [ 11] [ 6] [155823] +10:20:02 [ 39] [ 2] [00] +10:20:02 [ 70] [ 3] [301] +10:20:02 ============================================================================ +10:20:02 Calculate Source COMM Id = 2 +10:20:02 ============================================================================ +10:20:02 + + +waiting on router queue for slot.... +10:20:13 ============================================================================ +10:20:13 Slot Id : <42> +10:20:13 Transaction Type : REQUEST +10:20:13 Received From : +10:20:13 ============================================================================ +10:20:13 FNo. Len. Field Value +10:20:13 ============================================================================ +10:20:13 [ 1] [ 4] [0800] +10:20:13 [ 7] [ 10] [0320031921] +10:20:13 [ 11] [ 6] [155824] +10:20:13 [ 70] [ 3] [301] +10:20:13 ============================================================================ +10:20:13 + + +waiting on router queue for slot.... +10:20:13 Sending to : +10:20:13 ============================================================================ +10:20:13 ============================================================================ +10:20:13 Slot Id : <42> +10:20:13 Transaction Type : RESPONSE +10:20:13 Received From : +10:20:13 ============================================================================ +10:20:13 FNo. Len. Field Value +10:20:13 ============================================================================ +10:20:13 [ 1] [ 4] [0810] +10:20:13 [ 7] [ 10] [0320031921] +10:20:13 [ 11] [ 6] [155824] +10:20:13 [ 39] [ 2] [00] +10:20:13 [ 70] [ 3] [301] +10:20:13 ============================================================================ +10:20:13 Calculate Source COMM Id = 2 +10:20:13 ============================================================================ +10:20:13 + + +waiting on router queue for slot.... +10:20:26 ============================================================================ +10:20:26 Slot Id : <34> +10:20:26 Transaction Type : REQUEST +10:20:26 Received From : +10:20:26 ============================================================================ +10:20:26 FNo. Len. Field Value +10:20:26 ============================================================================ +10:20:26 [ 0] [ 4] [0420] +10:20:26 [ 1] [ 4] [0420] +10:20:26 [ 2] [ 16] [6213545000045397] +10:20:26 [ 3] [ 6] [010000] +10:20:26 [ 4] [ 12] [000100000000] +10:20:26 [ 6] [ 12] [000100000000] +10:20:26 [ 7] [ 10] [0320101930] +10:20:26 [ 11] [ 6] [079058] +10:20:26 [ 12] [ 6] [101930] +10:20:26 [ 13] [ 4] [0320] +10:20:26 [ 14] [ 4] [4912] +10:20:26 [ 15] [ 4] [0320] +10:20:26 [ 18] [ 4] [6011] +10:20:26 [ 22] [ 3] [900] +10:20:26 [ 25] [ 2] [02] +10:20:26 [ 28] [ 9] [D00002000] +10:20:26 [ 32] [ 6] [220699] +10:20:26 [ 35] [ 32] [6213545000045397=491212014539552] +10:20:26 [ 37] [ 12] [507900132941] +10:20:26 [ 39] [ 2] [00] +10:20:26 [ 41] [ 8] [03000100] +10:20:26 [ 42] [ 15] [APTRA ] +10:20:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:20:26 [ 49] [ 3] [418] +10:20:26 [ 52] [ 16] [C296EB3B65769E0A] +10:20:26 ============================================================================ +10:20:26 + + +waiting on router queue for slot.... +10:20:26 ============================================================================ +10:20:26 Slot Id : <34> +10:20:26 Transaction Type : RESPONSE +10:20:26 Received From : +10:20:26 ============================================================================ +10:20:26 FNo. Len. Field Value +10:20:26 ============================================================================ +10:20:26 [ 1] [ 4] [0430] +10:20:26 [ 2] [ 16] [6213545000045397] +10:20:26 [ 3] [ 6] [010000] +10:20:26 [ 4] [ 12] [000100000000] +10:20:26 [ 7] [ 10] [0320101930] +10:20:26 [ 11] [ 6] [079058] +10:20:26 [ 32] [ 6] [220699] +10:20:26 [ 35] [ 32] [6213545000045397=491212014539552] +10:20:26 [ 37] [ 12] [507900132941] +10:20:26 [ 39] [ 2] [00] +10:20:26 [ 41] [ 8] [03000100] +10:20:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:20:26 [ 49] [ 3] [418] +10:20:26 [ 90] [ 42] [020007905803201019300000022069900000000000] +10:20:26 ============================================================================ +10:20:26 Successfully send the slot [34] To REVERSAL Process +10:20:26 + + +waiting on router queue for slot.... +10:20:29 ============================================================================ +10:20:29 Slot Id : <86> +10:20:29 Transaction Type : REQUEST +10:20:29 Received From : +10:20:29 ============================================================================ +10:20:29 FNo. Len. Field Value +10:20:29 ============================================================================ +10:20:29 [ 1] [ 4] [0800] +10:20:29 [ 7] [ 10] [0320031937] +10:20:29 [ 11] [ 6] [155825] +10:20:29 [ 70] [ 3] [301] +10:20:29 ============================================================================ +10:20:29 + + +waiting on router queue for slot.... +10:20:29 Sending to : +10:20:29 ============================================================================ +10:20:29 ============================================================================ +10:20:29 Slot Id : <86> +10:20:29 Transaction Type : RESPONSE +10:20:29 Received From : +10:20:29 ============================================================================ +10:20:29 FNo. Len. Field Value +10:20:29 ============================================================================ +10:20:29 [ 1] [ 4] [0810] +10:20:29 [ 7] [ 10] [0320031937] +10:20:29 [ 11] [ 6] [155825] +10:20:29 [ 39] [ 2] [00] +10:20:29 [ 70] [ 3] [301] +10:20:29 ============================================================================ +10:20:29 Calculate Source COMM Id = 2 +10:20:29 ============================================================================ +10:20:29 + + +waiting on router queue for slot.... +10:20:31 ============================================================================ +10:20:31 Slot Id : <49> +10:20:31 Transaction Type : REQUEST +10:20:31 Received From : +10:20:31 ============================================================================ +10:20:31 FNo. Len. Field Value +10:20:31 ============================================================================ +10:20:31 [ 1] [ 4] [0200] +10:20:31 [ 2] [ 16] [6213545000352249] +10:20:31 [ 3] [ 6] [301000] +10:20:31 [ 4] [ 12] [000000000000] +10:20:31 [ 7] [ 10] [0320101823] +10:20:31 [ 11] [ 6] [938281] +10:20:31 [ 12] [ 6] [101823] +10:20:31 [ 13] [ 4] [0320] +10:20:31 [ 15] [ 4] [0320] +10:20:31 [ 18] [ 4] [6011] +10:20:31 [ 19] [ 3] [418] +10:20:31 [ 22] [ 3] [021] +10:20:31 [ 25] [ 2] [01] +10:20:31 [ 28] [ 9] [D00000000] +10:20:31 [ 32] [ 6] [668899] +10:20:31 [ 35] [ 32] [6213545000352249=491212015224069] +10:20:31 [ 37] [ 12] [507901373583] +10:20:31 [ 41] [ 8] [03209001] +10:20:31 [ 42] [ 15] [APT ] +10:20:31 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +10:20:31 [ 49] [ 3] [418] +10:20:31 [ 52] [ 16] [52FAEC910AF72AFC] +10:20:31 ============================================================================ +10:20:31 + + +waiting on router queue for slot.... +10:20:31 Sending to : +10:20:31 ============================================================================ +10:20:31 Sending to : +10:20:31 ============================================================================ +10:20:32 ============================================================================ +10:20:32 Slot Id : <49> +10:20:32 Transaction Type : REQUEST +10:20:32 Received From : +10:20:32 ============================================================================ +10:20:32 FNo. Len. Field Value +10:20:32 ============================================================================ +10:20:32 [ 1] [ 4] [0200] +10:20:32 [ 2] [ 16] [6213545000352249] +10:20:32 [ 3] [ 6] [301000] +10:20:32 [ 4] [ 12] [000000000000] +10:20:32 [ 7] [ 10] [0320101823] +10:20:32 [ 11] [ 6] [938281] +10:20:32 [ 12] [ 6] [101823] +10:20:32 [ 13] [ 4] [0320] +10:20:32 [ 15] [ 4] [0320] +10:20:32 [ 18] [ 4] [6011] +10:20:32 [ 19] [ 3] [418] +10:20:32 [ 22] [ 3] [021] +10:20:32 [ 25] [ 2] [01] +10:20:32 [ 28] [ 9] [D00000000] +10:20:32 [ 32] [ 6] [668899] +10:20:32 [ 35] [ 32] [6213545000352249=491212015224069] +10:20:32 [ 37] [ 12] [507901373583] +10:20:32 [ 41] [ 8] [03209001] +10:20:32 [ 42] [ 15] [APT ] +10:20:32 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +10:20:32 [ 49] [ 3] [418] +10:20:32 [ 52] [ 16] [52FAEC910AF72AFC] +10:20:32 ============================================================================ +10:20:32 + + +waiting on router queue for slot.... +10:20:32 Sending to : +10:20:32 ============================================================================ +10:20:32 ============================================================================ +10:20:32 Slot Id : <49> +10:20:32 Transaction Type : REQUEST +10:20:32 Received From : +10:20:32 ============================================================================ +10:20:32 FNo. Len. Field Value +10:20:32 ============================================================================ +10:20:32 [ 1] [ 4] [0200] +10:20:32 [ 2] [ 16] [6213545000352249] +10:20:32 [ 3] [ 6] [301000] +10:20:32 [ 4] [ 12] [000000000000] +10:20:32 [ 7] [ 10] [0320101823] +10:20:32 [ 11] [ 6] [938281] +10:20:32 [ 12] [ 6] [101823] +10:20:32 [ 13] [ 4] [0320] +10:20:32 [ 15] [ 4] [0320] +10:20:32 [ 18] [ 4] [6011] +10:20:32 [ 19] [ 3] [418] +10:20:32 [ 22] [ 3] [021] +10:20:32 [ 25] [ 2] [01] +10:20:32 [ 28] [ 9] [D00000000] +10:20:32 [ 32] [ 6] [668899] +10:20:32 [ 35] [ 32] [6213545000352249=491212015224069] +10:20:32 [ 37] [ 12] [507901373583] +10:20:32 [ 41] [ 8] [03209001] +10:20:32 [ 42] [ 15] [APT ] +10:20:32 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +10:20:32 [ 49] [ 3] [418] +10:20:32 [ 52] [ 16] [35E19B7E6BAC46C7] +10:20:32 ============================================================================ +10:20:32 + + +waiting on router queue for slot.... +10:20:32 Sending to : <0> +10:20:32 ============================================================================ +10:20:32 ============================================================================ +10:20:32 Slot Id : <49> +10:20:32 Transaction Type : RESPONSE +10:20:32 Received From : +10:20:32 ============================================================================ +10:20:32 FNo. Len. Field Value +10:20:32 ============================================================================ +10:20:32 [ 1] [ 4] [0210] +10:20:32 [ 2] [ 16] [6213545000352249] +10:20:32 [ 3] [ 6] [301000] +10:20:32 [ 4] [ 12] [000000000000] +10:20:32 [ 7] [ 10] [0320101823] +10:20:32 [ 11] [ 6] [938281] +10:20:32 [ 12] [ 6] [101823] +10:20:32 [ 13] [ 4] [0320] +10:20:32 [ 15] [ 4] [0320] +10:20:32 [ 18] [ 4] [6011] +10:20:32 [ 19] [ 3] [418] +10:20:32 [ 32] [ 6] [668899] +10:20:32 [ 35] [ 32] [6213545000352249=491212015224069] +10:20:32 [ 37] [ 12] [507901373583] +10:20:32 [ 38] [ 6] [290425] +10:20:32 [ 39] [ 2] [00] +10:20:32 [ 41] [ 8] [03209001] +10:20:32 [ 49] [ 3] [418] +10:20:32 [ 54] [ 40] [1001418C0010385546381002418C001038554638] +10:20:32 ============================================================================ +10:20:32 Sending to : +10:20:32 ============================================================================ +10:20:32 + + +waiting on router queue for slot.... +10:20:34 ============================================================================ +10:20:34 Slot Id : <49> +10:20:34 Transaction Type : RESPONSE +10:20:34 Received From : +10:20:34 ============================================================================ +10:20:34 FNo. Len. Field Value +10:20:34 ============================================================================ +10:20:34 [ 1] [ 4] [0210] +10:20:34 [ 2] [ 16] [6213545000352249] +10:20:34 [ 3] [ 6] [301000] +10:20:34 [ 4] [ 12] [000000000000] +10:20:34 [ 7] [ 10] [0320101823] +10:20:34 [ 11] [ 6] [938281] +10:20:34 [ 12] [ 6] [101823] +10:20:34 [ 13] [ 4] [0320] +10:20:34 [ 15] [ 4] [0320] +10:20:34 [ 18] [ 4] [6011] +10:20:34 [ 19] [ 3] [418] +10:20:34 [ 32] [ 6] [668899] +10:20:34 [ 35] [ 32] [6213545000352249=491212015224069] +10:20:34 [ 37] [ 12] [507901373583] +10:20:34 [ 38] [ 6] [290425] +10:20:34 [ 39] [ 2] [00] +10:20:34 [ 41] [ 8] [03209001] +10:20:34 [ 49] [ 3] [418] +10:20:34 [ 54] [ 40] [1001418C0010385546381002418C001038554638] +10:20:34 ============================================================================ +10:20:34 Calculate Source COMM Id = 4 +10:20:34 ============================================================================ +10:20:34 + + +waiting on router queue for slot.... +10:20:37 ============================================================================ +10:20:37 Slot Id : <89> +10:20:37 Transaction Type : REQUEST +10:20:37 Received From : +10:20:37 ============================================================================ +10:20:37 FNo. Len. Field Value +10:20:37 ============================================================================ +10:20:37 [ 1] [ 4] [0800] +10:20:37 [ 2] [ 5] [02531] +10:20:37 [ 3] [ 6] [579108] +10:20:37 [ 7] [ 10] [0320032037] +10:20:37 [ 11] [ 6] [807012] +10:20:37 [ 15] [ 10] [0320032037] +10:20:37 [ 37] [ 11] [57910807012] +10:20:37 [ 70] [ 3] [001] +10:20:37 ============================================================================ +10:20:37 + + +waiting on router queue for slot.... +10:20:37 ============================================================================ +10:20:37 Slot Id : <89> +10:20:37 Transaction Type : RESPONSE +10:20:37 Received From : +10:20:37 ============================================================================ +10:20:37 FNo. Len. Field Value +10:20:37 ============================================================================ +10:20:37 [ 1] [ 4] [0810] +10:20:37 [ 7] [ 10] [0320032037] +10:20:37 [ 11] [ 6] [807012] +10:20:37 [ 15] [ 4] [0320] +10:20:37 [ 37] [ 12] [57910807012] +10:20:37 [ 39] [ 2] [00] +10:20:37 [ 70] [ 3] [001] +10:20:37 ============================================================================ +10:20:37 Sending to : +10:20:37 ============================================================================ +10:20:37 + + +waiting on router queue for slot.... +10:20:42 ============================================================================ +10:20:42 Slot Id : <88> +10:20:42 Transaction Type : REQUEST +10:20:42 Received From : +10:20:42 ============================================================================ +10:20:42 FNo. Len. Field Value +10:20:42 ============================================================================ +10:20:42 [ 1] [ 4] [0800] +10:20:42 [ 7] [ 10] [0320031948] +10:20:42 [ 11] [ 6] [155826] +10:20:42 [ 70] [ 3] [301] +10:20:42 ============================================================================ +10:20:42 + + +waiting on router queue for slot.... +10:20:42 Sending to : +10:20:42 ============================================================================ +10:20:42 ============================================================================ +10:20:42 Slot Id : <88> +10:20:42 Transaction Type : RESPONSE +10:20:42 Received From : +10:20:42 ============================================================================ +10:20:42 FNo. Len. Field Value +10:20:42 ============================================================================ +10:20:42 [ 1] [ 4] [0810] +10:20:42 [ 7] [ 10] [0320031948] +10:20:42 [ 11] [ 6] [155826] +10:20:42 [ 39] [ 2] [00] +10:20:42 [ 70] [ 3] [301] +10:20:42 ============================================================================ +10:20:42 Calculate Source COMM Id = 2 +10:20:42 ============================================================================ +10:20:42 + + +waiting on router queue for slot.... +10:20:46 ============================================================================ +10:20:46 Slot Id : <59> +10:20:46 Transaction Type : REQUEST +10:20:46 Received From : +10:20:46 ============================================================================ +10:20:46 FNo. Len. Field Value +10:20:46 ============================================================================ +10:20:46 [ 1] [ 4] [0420] +10:20:46 [ 2] [ 16] [6213545000078570] +10:20:46 [ 3] [ 6] [010000] +10:20:46 [ 4] [ 12] [000010000000] +10:20:46 [ 7] [ 10] [0320102055] +10:20:46 [ 11] [ 6] [079063] +10:20:46 [ 12] [ 6] [102055] +10:20:46 [ 13] [ 4] [0320] +10:20:46 [ 14] [ 4] [4912] +10:20:46 [ 15] [ 4] [0320] +10:20:46 [ 18] [ 4] [6011] +10:20:46 [ 22] [ 3] [900] +10:20:46 [ 25] [ 2] [02] +10:20:46 [ 28] [ 9] [C00002000] +10:20:46 [ 32] [ 6] [220699] +10:20:46 [ 35] [ 32] [6213545000078570=491212017857257] +10:20:46 [ 37] [ 12] [507900132944] +10:20:46 [ 39] [ 2] [00] +10:20:46 [ 41] [ 8] [03000100] +10:20:46 [ 42] [ 15] [APTRA ] +10:20:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:20:46 [ 49] [ 3] [418] +10:20:46 [ 90] [ 42] [020007906303201020550000022069900000000000] +10:20:46 ============================================================================ +10:20:46 + + +waiting on router queue for slot.... +10:20:46 Sending to : +10:20:46 ============================================================================ +10:20:50 ============================================================================ +10:20:50 Slot Id : <59> +10:20:50 Transaction Type : RESPONSE +10:20:50 Received From : +10:20:50 ============================================================================ +10:20:50 FNo. Len. Field Value +10:20:50 ============================================================================ +10:20:50 [ 1] [ 4] [0430] +10:20:50 [ 2] [ 16] [6213545000078570] +10:20:50 [ 3] [ 6] [010000] +10:20:50 [ 4] [ 12] [000010000000] +10:20:50 [ 7] [ 10] [0320102055] +10:20:50 [ 11] [ 6] [079063] +10:20:50 [ 12] [ 6] [102055] +10:20:50 [ 13] [ 4] [0320] +10:20:50 [ 14] [ 4] [4912] +10:20:50 [ 15] [ 4] [0320] +10:20:50 [ 18] [ 4] [6011] +10:20:50 [ 22] [ 3] [900] +10:20:50 [ 25] [ 2] [02] +10:20:50 [ 28] [ 9] [C00002000] +10:20:50 [ 32] [ 6] [220699] +10:20:50 [ 35] [ 32] [6213545000078570=491212017857257] +10:20:50 [ 37] [ 12] [507900132944] +10:20:50 [ 39] [ 2] [00] +10:20:50 [ 41] [ 8] [03000100] +10:20:50 [ 42] [ 15] [APTRA ] +10:20:50 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:20:50 [ 49] [ 3] [418] +10:20:50 [ 90] [ 42] [020007906303201020550000022069900000000000] +10:20:50 ============================================================================ +10:20:50 Calculate Source COMM Id = 1 +10:20:50 ============================================================================ +10:20:50 + + +waiting on router queue for slot.... +10:20:54 ============================================================================ +10:20:54 Slot Id : <5> +10:20:54 Transaction Type : REQUEST +10:20:54 Received From : +10:20:54 ============================================================================ +10:20:54 FNo. Len. Field Value +10:20:54 ============================================================================ +10:20:54 [ 1] [ 4] [0800] +10:20:54 [ 7] [ 10] [0320102041] +10:20:54 [ 11] [ 6] [014808] +10:20:54 [ 37] [ 12] [507910014808] +10:20:54 [ 70] [ 3] [ ] +10:20:54 ============================================================================ +10:20:54 + + +waiting on router queue for slot.... +10:20:54 Sending to : +10:20:54 ============================================================================ +10:20:54 ============================================================================ +10:20:54 Slot Id : <5> +10:20:54 Transaction Type : RESPONSE +10:20:54 Received From : +10:20:54 ============================================================================ +10:20:54 FNo. Len. Field Value +10:20:54 ============================================================================ +10:20:54 [ 1] [ 4] [0810] +10:20:54 [ 7] [ 10] [0320102041] +10:20:54 [ 11] [ 6] [014808] +10:20:54 [ 37] [ 12] [507910014808] +10:20:54 [ 39] [ 2] [91] +10:20:54 [ 70] [ 3] [ ] +10:20:54 ============================================================================ +10:20:54 Calculate Source COMM Id = 3 +10:20:54 ============================================================================ +10:20:54 + + +waiting on router queue for slot.... +10:20:54 ============================================================================ +10:20:54 Slot Id : <79> +10:20:54 Transaction Type : REQUEST +10:20:54 Received From : +10:20:54 ============================================================================ +10:20:54 FNo. Len. Field Value +10:20:54 ============================================================================ +10:20:54 [ 1] [ 4] [0800] +10:20:54 [ 7] [ 10] [0320173244] +10:20:54 [ 11] [ 6] [103244] +10:20:54 [ 37] [ 12] [57910103244] +10:20:54 [ 70] [ 3] [301] +10:20:54 ============================================================================ +10:20:54 + + +waiting on router queue for slot.... +10:20:54 Sending to : +10:20:54 ============================================================================ +10:20:54 ============================================================================ +10:20:54 Slot Id : <79> +10:20:54 Transaction Type : RESPONSE +10:20:54 Received From : +10:20:54 ============================================================================ +10:20:54 FNo. Len. Field Value +10:20:54 ============================================================================ +10:20:54 [ 1] [ 4] [0810] +10:20:54 [ 7] [ 10] [0320173244] +10:20:54 [ 11] [ 6] [103244] +10:20:54 [ 37] [ 12] [579101032440] +10:20:54 [ 39] [ 2] [00] +10:20:54 [ 70] [ 3] [810] +10:20:54 ============================================================================ +10:20:54 Calculate Source COMM Id = 6 +10:20:54 ============================================================================ +10:20:54 + + +waiting on router queue for slot.... +10:20:57 ============================================================================ +10:20:57 Slot Id : <84> +10:20:57 Transaction Type : REQUEST +10:20:57 Received From : +10:20:57 ============================================================================ +10:20:57 FNo. Len. Field Value +10:20:57 ============================================================================ +10:20:57 [ 1] [ 4] [0800] +10:20:57 [ 7] [ 10] [0320032004] +10:20:57 [ 11] [ 6] [155827] +10:20:57 [ 70] [ 3] [301] +10:20:57 ============================================================================ +10:20:57 + + +waiting on router queue for slot.... +10:20:57 Sending to : +10:20:57 ============================================================================ +10:20:57 ============================================================================ +10:20:57 Slot Id : <84> +10:20:57 Transaction Type : RESPONSE +10:20:57 Received From : +10:20:57 ============================================================================ +10:20:57 FNo. Len. Field Value +10:20:57 ============================================================================ +10:20:57 [ 1] [ 4] [0810] +10:20:57 [ 7] [ 10] [0320032004] +10:20:57 [ 11] [ 6] [155827] +10:20:57 [ 39] [ 2] [00] +10:20:57 [ 70] [ 3] [301] +10:20:57 ============================================================================ +10:20:57 Calculate Source COMM Id = 2 +10:20:57 ============================================================================ +10:20:57 + + +waiting on router queue for slot.... +10:21:02 ============================================================================ +10:21:02 Slot Id : <67> +10:21:02 Transaction Type : REQUEST +10:21:02 Received From : +10:21:02 ============================================================================ +10:21:02 FNo. Len. Field Value +10:21:02 ============================================================================ +10:21:02 [ 1] [ 4] [0200] +10:21:02 [ 2] [ 16] [1808930300046406] +10:21:02 [ 3] [ 6] [011000] +10:21:02 [ 4] [ 12] [000040000000] +10:21:02 [ 7] [ 10] [0320102058] +10:21:02 [ 11] [ 6] [712675] +10:21:02 [ 12] [ 6] [102058] +10:21:02 [ 13] [ 4] [0320] +10:21:02 [ 15] [ 4] [0320] +10:21:02 [ 18] [ 4] [6011] +10:21:02 [ 22] [ 3] [900] +10:21:02 [ 25] [ 2] [02] +10:21:02 [ 28] [ 9] [D00002000] +10:21:02 [ 32] [ 6] [621354] +10:21:02 [ 35] [ 27] [1808930300046406=1803500919] +10:21:02 [ 37] [ 12] [507902381423] +10:21:02 [ 41] [ 8] [01006300] +10:21:02 [ 42] [ 15] [NATIVE ] +10:21:02 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +10:21:02 [ 49] [ 3] [418] +10:21:02 [ 52] [ 16] [F3A9D34F6874F5AC] +10:21:02 ============================================================================ +10:21:02 + + +waiting on router queue for slot.... +10:21:02 Sending to : +10:21:02 ============================================================================ +10:21:02 Sending to : +10:21:02 ============================================================================ +10:21:03 ============================================================================ +10:21:03 Slot Id : <67> +10:21:03 Transaction Type : REQUEST +10:21:03 Received From : +10:21:03 ============================================================================ +10:21:03 FNo. Len. Field Value +10:21:03 ============================================================================ +10:21:03 [ 1] [ 4] [0200] +10:21:03 [ 2] [ 16] [1808930300046406] +10:21:03 [ 3] [ 6] [011000] +10:21:03 [ 4] [ 12] [000040000000] +10:21:03 [ 7] [ 10] [0320102058] +10:21:03 [ 11] [ 6] [712675] +10:21:03 [ 12] [ 6] [102058] +10:21:03 [ 13] [ 4] [0320] +10:21:03 [ 15] [ 4] [0320] +10:21:03 [ 18] [ 4] [6011] +10:21:03 [ 22] [ 3] [900] +10:21:03 [ 25] [ 2] [02] +10:21:03 [ 28] [ 9] [D00002000] +10:21:03 [ 32] [ 6] [621354] +10:21:03 [ 35] [ 27] [1808930300046406=1803500919] +10:21:03 [ 37] [ 12] [507902381423] +10:21:03 [ 41] [ 8] [01006300] +10:21:03 [ 42] [ 15] [NATIVE ] +10:21:03 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +10:21:03 [ 49] [ 3] [418] +10:21:03 [ 52] [ 16] [F3A9D34F6874F5AC] +10:21:03 ============================================================================ +10:21:03 + + +waiting on router queue for slot.... +10:21:03 Sending to : +10:21:03 ============================================================================ +10:21:03 ============================================================================ +10:21:03 Slot Id : <67> +10:21:03 Transaction Type : REQUEST +10:21:03 Received From : +10:21:03 ============================================================================ +10:21:03 FNo. Len. Field Value +10:21:03 ============================================================================ +10:21:03 [ 1] [ 4] [0200] +10:21:03 [ 2] [ 16] [1808930300046406] +10:21:03 [ 3] [ 6] [011000] +10:21:03 [ 4] [ 12] [000040000000] +10:21:03 [ 7] [ 10] [0320102058] +10:21:03 [ 11] [ 6] [712675] +10:21:03 [ 12] [ 6] [102058] +10:21:03 [ 13] [ 4] [0320] +10:21:03 [ 15] [ 4] [0320] +10:21:03 [ 18] [ 4] [6011] +10:21:03 [ 22] [ 3] [900] +10:21:03 [ 25] [ 2] [02] +10:21:03 [ 28] [ 9] [D00002000] +10:21:03 [ 32] [ 6] [621354] +10:21:03 [ 35] [ 27] [1808930300046406=1803500919] +10:21:03 [ 37] [ 12] [507902381423] +10:21:03 [ 41] [ 8] [01006300] +10:21:03 [ 42] [ 15] [NATIVE ] +10:21:03 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +10:21:03 [ 49] [ 3] [418] +10:21:03 [ 52] [ 16] [9E70C75FAE49C358] +10:21:03 ============================================================================ +10:21:03 + + +waiting on router queue for slot.... +10:21:03 Sending to : <2> +10:21:03 ============================================================================ +10:21:06 ============================================================================ +10:21:06 Slot Id : <67> +10:21:06 Transaction Type : RESPONSE +10:21:06 Received From : +10:21:06 ============================================================================ +10:21:06 FNo. Len. Field Value +10:21:06 ============================================================================ +10:21:06 [ 1] [ 4] [0210] +10:21:06 [ 2] [ 16] [1808930300046406] +10:21:06 [ 3] [ 6] [011000] +10:21:06 [ 4] [ 12] [000040000000] +10:21:06 [ 6] [ 12] [000040000000] +10:21:06 [ 7] [ 10] [0320102058] +10:21:06 [ 11] [ 6] [712675] +10:21:06 [ 12] [ 6] [102058] +10:21:06 [ 13] [ 4] [0320] +10:21:06 [ 18] [ 4] [6011] +10:21:06 [ 19] [ 3] [418] +10:21:06 [ 22] [ 3] [021] +10:21:06 [ 32] [ 6] [621354] +10:21:06 [ 35] [ 27] [1808930300046406=1803500919] +10:21:06 [ 37] [ 12] [507902381423] +10:21:06 [ 38] [ 6] [712675] +10:21:06 [ 39] [ 2] [00] +10:21:06 [ 41] [ 8] [01006300] +10:21:06 [ 49] [ 3] [418] +10:21:06 [ 52] [ 16] [9E70C75FAE49C358] +10:21:06 [ 54] [ 20] [1001418C000055800000] +10:21:06 ============================================================================ +10:21:06 Sending to : +10:21:06 ============================================================================ +10:21:06 + + +waiting on router queue for slot.... +10:21:08 ============================================================================ +10:21:08 Slot Id : <67> +10:21:08 Transaction Type : RESPONSE +10:21:08 Received From : +10:21:08 ============================================================================ +10:21:08 FNo. Len. Field Value +10:21:08 ============================================================================ +10:21:08 [ 1] [ 4] [0210] +10:21:08 [ 2] [ 16] [1808930300046406] +10:21:08 [ 3] [ 6] [011000] +10:21:08 [ 4] [ 12] [000040000000] +10:21:08 [ 6] [ 12] [000040000000] +10:21:08 [ 7] [ 10] [0320102058] +10:21:08 [ 11] [ 6] [712675] +10:21:08 [ 12] [ 6] [102058] +10:21:08 [ 13] [ 4] [0320] +10:21:08 [ 18] [ 4] [6011] +10:21:08 [ 19] [ 3] [418] +10:21:08 [ 22] [ 3] [021] +10:21:08 [ 32] [ 6] [621354] +10:21:08 [ 35] [ 27] [1808930300046406=1803500919] +10:21:08 [ 37] [ 12] [507902381423] +10:21:08 [ 38] [ 6] [712675] +10:21:08 [ 39] [ 2] [00] +10:21:08 [ 41] [ 8] [01006300] +10:21:08 [ 49] [ 3] [418] +10:21:08 [ 52] [ 16] [9E70C75FAE49C358] +10:21:08 [ 54] [ 20] [1001418C000055800000] +10:21:08 ============================================================================ +10:21:08 Calculate Source COMM Id = 0 +10:21:08 ============================================================================ +10:21:08 + + +waiting on router queue for slot.... +10:21:09 ============================================================================ +10:21:09 Slot Id : <62> +10:21:09 Transaction Type : REQUEST +10:21:09 Received From : +10:21:09 ============================================================================ +10:21:09 FNo. Len. Field Value +10:21:09 ============================================================================ +10:21:09 [ 1] [ 4] [0200] +10:21:09 [ 2] [ 16] [6688990601635103] +10:21:09 [ 3] [ 6] [010000] +10:21:09 [ 4] [ 12] [000010000000] +10:21:09 [ 7] [ 10] [0320102105] +10:21:09 [ 11] [ 6] [712701] +10:21:09 [ 12] [ 6] [102105] +10:21:09 [ 13] [ 4] [0320] +10:21:09 [ 15] [ 4] [0320] +10:21:09 [ 18] [ 4] [6011] +10:21:09 [ 22] [ 3] [900] +10:21:09 [ 25] [ 2] [02] +10:21:09 [ 28] [ 9] [D00002000] +10:21:09 [ 32] [ 6] [621354] +10:21:09 [ 35] [ 37] [6688990601635103=41110061510336500000] +10:21:09 [ 37] [ 12] [507904153829] +10:21:09 [ 41] [ 8] [20001000] +10:21:09 [ 42] [ 15] [NATIVE ] +10:21:09 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:21:09 [ 49] [ 3] [418] +10:21:09 [ 52] [ 16] [926E93E2060A078E] +10:21:09 ============================================================================ +10:21:09 + + +waiting on router queue for slot.... +10:21:09 Sending to : +10:21:09 ============================================================================ +10:21:09 Sending to : +10:21:09 ============================================================================ +10:21:10 ============================================================================ +10:21:10 Slot Id : <62> +10:21:10 Transaction Type : REQUEST +10:21:10 Received From : +10:21:10 ============================================================================ +10:21:10 FNo. Len. Field Value +10:21:10 ============================================================================ +10:21:10 [ 1] [ 4] [0200] +10:21:10 [ 2] [ 16] [6688990601635103] +10:21:10 [ 3] [ 6] [010000] +10:21:10 [ 4] [ 12] [000010000000] +10:21:10 [ 7] [ 10] [0320102105] +10:21:10 [ 11] [ 6] [712701] +10:21:10 [ 12] [ 6] [102105] +10:21:10 [ 13] [ 4] [0320] +10:21:10 [ 15] [ 4] [0320] +10:21:10 [ 18] [ 4] [6011] +10:21:10 [ 22] [ 3] [900] +10:21:10 [ 25] [ 2] [02] +10:21:10 [ 28] [ 9] [D00002000] +10:21:10 [ 32] [ 6] [621354] +10:21:10 [ 35] [ 37] [6688990601635103=41110061510336500000] +10:21:10 [ 37] [ 12] [507904153829] +10:21:10 [ 41] [ 8] [20001000] +10:21:10 [ 42] [ 15] [NATIVE ] +10:21:10 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:21:10 [ 49] [ 3] [418] +10:21:10 [ 52] [ 16] [926E93E2060A078E] +10:21:10 ============================================================================ +10:21:10 + + +waiting on router queue for slot.... +10:21:10 Sending to : +10:21:10 ============================================================================ +10:21:10 ============================================================================ +10:21:10 Slot Id : <62> +10:21:10 Transaction Type : REQUEST +10:21:10 Received From : +10:21:10 ============================================================================ +10:21:10 FNo. Len. Field Value +10:21:10 ============================================================================ +10:21:10 [ 1] [ 4] [0200] +10:21:10 [ 2] [ 16] [6688990601635103] +10:21:10 [ 3] [ 6] [010000] +10:21:10 [ 4] [ 12] [000010000000] +10:21:10 [ 7] [ 10] [0320102105] +10:21:10 [ 11] [ 6] [712701] +10:21:10 [ 12] [ 6] [102105] +10:21:10 [ 13] [ 4] [0320] +10:21:10 [ 15] [ 4] [0320] +10:21:10 [ 18] [ 4] [6011] +10:21:10 [ 22] [ 3] [900] +10:21:10 [ 25] [ 2] [02] +10:21:10 [ 28] [ 9] [D00002000] +10:21:10 [ 32] [ 6] [621354] +10:21:10 [ 35] [ 37] [6688990601635103=41110061510336500000] +10:21:10 [ 37] [ 12] [507904153829] +10:21:10 [ 41] [ 8] [20001000] +10:21:10 [ 42] [ 15] [NATIVE ] +10:21:10 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:21:10 [ 49] [ 3] [418] +10:21:10 [ 52] [ 16] [A08C712C23079473] +10:21:10 ============================================================================ +10:21:10 + + +waiting on router queue for slot.... +10:21:10 Sending to : <4> +10:21:10 ============================================================================ +10:21:11 ============================================================================ +10:21:11 Slot Id : <62> +10:21:11 Transaction Type : RESPONSE +10:21:11 Received From : +10:21:11 ============================================================================ +10:21:11 FNo. Len. Field Value +10:21:11 ============================================================================ +10:21:11 [ 1] [ 4] [0210] +10:21:11 [ 2] [ 16] [6688990601635103] +10:21:11 [ 3] [ 6] [010000] +10:21:11 [ 4] [ 12] [000010000000] +10:21:11 [ 11] [ 6] [712701] +10:21:11 [ 12] [ 6] [102105] +10:21:11 [ 15] [ 4] [0320] +10:21:11 [ 18] [ 4] [6011] +10:21:11 [ 32] [ 6] [621354] +10:21:11 [ 35] [ 37] [6688990601635103=41110061510336500000] +10:21:11 [ 37] [ 12] [507904153829] +10:21:11 [ 38] [ 6] [281101] +10:21:11 [ 39] [ 2] [00] +10:21:11 [ 41] [ 8] [20001000] +10:21:11 [ 49] [ 3] [418] +10:21:11 [ 54] [ 20] [0002418C000306592221] +10:21:11 ============================================================================ +10:21:11 Sending to : +10:21:11 ============================================================================ +10:21:11 + + +waiting on router queue for slot.... +10:21:12 ============================================================================ +10:21:12 Slot Id : <62> +10:21:12 Transaction Type : RESPONSE +10:21:12 Received From : +10:21:12 ============================================================================ +10:21:12 FNo. Len. Field Value +10:21:12 ============================================================================ +10:21:12 [ 1] [ 4] [0210] +10:21:12 [ 2] [ 16] [6688990601635103] +10:21:12 [ 3] [ 6] [010000] +10:21:12 [ 4] [ 12] [000010000000] +10:21:12 [ 11] [ 6] [712701] +10:21:12 [ 12] [ 6] [102105] +10:21:12 [ 15] [ 4] [0320] +10:21:12 [ 18] [ 4] [6011] +10:21:12 [ 32] [ 6] [621354] +10:21:12 [ 35] [ 37] [6688990601635103=41110061510336500000] +10:21:12 [ 37] [ 12] [507904153829] +10:21:12 [ 38] [ 6] [281101] +10:21:12 [ 39] [ 2] [00] +10:21:12 [ 41] [ 8] [20001000] +10:21:12 [ 49] [ 3] [418] +10:21:12 [ 54] [ 20] [0002418C000306592221] +10:21:12 ============================================================================ +10:21:12 Calculate Source COMM Id = 0 +10:21:12 ============================================================================ +10:21:12 + + +waiting on router queue for slot.... +10:21:18 ============================================================================ +10:21:18 Slot Id : <39> +10:21:18 Transaction Type : REQUEST +10:21:18 Received From : +10:21:18 ============================================================================ +10:21:18 FNo. Len. Field Value +10:21:18 ============================================================================ +10:21:18 [ 1] [ 4] [0800] +10:21:18 [ 7] [ 10] [0320032026] +10:21:18 [ 11] [ 6] [155828] +10:21:18 [ 70] [ 3] [301] +10:21:18 ============================================================================ +10:21:18 + + +waiting on router queue for slot.... +10:21:18 Sending to : +10:21:18 ============================================================================ +10:21:18 ============================================================================ +10:21:18 Slot Id : <39> +10:21:18 Transaction Type : RESPONSE +10:21:18 Received From : +10:21:18 ============================================================================ +10:21:18 FNo. Len. Field Value +10:21:18 ============================================================================ +10:21:18 [ 1] [ 4] [0810] +10:21:18 [ 7] [ 10] [0320032026] +10:21:18 [ 11] [ 6] [155828] +10:21:18 [ 39] [ 2] [00] +10:21:18 [ 70] [ 3] [301] +10:21:18 ============================================================================ +10:21:18 Calculate Source COMM Id = 2 +10:21:18 ============================================================================ +10:21:18 + + +waiting on router queue for slot.... +10:21:20 ============================================================================ +10:21:20 Slot Id : <51> +10:21:20 Transaction Type : REQUEST +10:21:20 Received From : +10:21:20 ============================================================================ +10:21:20 FNo. Len. Field Value +10:21:20 ============================================================================ +10:21:20 [ 1] [ 4] [0800] +10:21:20 [ 7] [ 10] [0320031912] +10:21:20 [ 11] [ 6] [010752] +10:21:20 [ 37] [ 12] [57910010752] +10:21:20 [ 70] [ 3] [301] +10:21:20 ============================================================================ +10:21:20 + + +waiting on router queue for slot.... +10:21:20 Sending to : +10:21:20 ============================================================================ +10:21:20 ============================================================================ +10:21:20 Slot Id : <51> +10:21:20 Transaction Type : RESPONSE +10:21:20 Received From : +10:21:20 ============================================================================ +10:21:20 FNo. Len. Field Value +10:21:20 ============================================================================ +10:21:20 [ 1] [ 4] [0810] +10:21:20 [ 7] [ 10] [0320031912] +10:21:20 [ 11] [ 6] [010752] +10:21:20 [ 37] [ 12] [579100107520] +10:21:20 [ 39] [ 2] [00] +10:21:20 [ 70] [ 3] [810] +10:21:20 ============================================================================ +10:21:20 Calculate Source COMM Id = 4 +10:21:20 ============================================================================ +10:21:20 + + +waiting on router queue for slot.... +10:21:34 ============================================================================ +10:21:34 Slot Id : <99> +10:21:34 Transaction Type : REQUEST +10:21:34 Received From : +10:21:34 ============================================================================ +10:21:34 FNo. Len. Field Value +10:21:34 ============================================================================ +10:21:34 [ 1] [ 4] [0800] +10:21:34 [ 7] [ 10] [0320032042] +10:21:34 [ 11] [ 6] [155829] +10:21:34 [ 70] [ 3] [301] +10:21:34 ============================================================================ +10:21:34 + + +waiting on router queue for slot.... +10:21:34 Sending to : +10:21:34 ============================================================================ +10:21:34 ============================================================================ +10:21:34 Slot Id : <99> +10:21:34 Transaction Type : RESPONSE +10:21:34 Received From : +10:21:34 ============================================================================ +10:21:34 FNo. Len. Field Value +10:21:34 ============================================================================ +10:21:34 [ 1] [ 4] [0810] +10:21:34 [ 7] [ 10] [0320032042] +10:21:34 [ 11] [ 6] [155829] +10:21:34 [ 39] [ 2] [00] +10:21:34 [ 70] [ 3] [301] +10:21:34 ============================================================================ +10:21:34 Calculate Source COMM Id = 2 +10:21:34 ============================================================================ +10:21:34 + + +waiting on router queue for slot.... +10:21:39 ============================================================================ +10:21:39 Slot Id : <64> +10:21:39 Transaction Type : REQUEST +10:21:39 Received From : +10:21:39 ============================================================================ +10:21:39 FNo. Len. Field Value +10:21:39 ============================================================================ +10:21:39 [ 1] [ 4] [0800] +10:21:39 [ 2] [ 5] [02531] +10:21:39 [ 3] [ 6] [579108] +10:21:39 [ 7] [ 10] [0320032139] +10:21:39 [ 11] [ 6] [807013] +10:21:39 [ 15] [ 10] [0320032139] +10:21:39 [ 37] [ 11] [57910807013] +10:21:39 [ 70] [ 3] [001] +10:21:39 ============================================================================ +10:21:39 + + +waiting on router queue for slot.... +10:21:39 ============================================================================ +10:21:39 Slot Id : <64> +10:21:39 Transaction Type : RESPONSE +10:21:39 Received From : +10:21:39 ============================================================================ +10:21:39 FNo. Len. Field Value +10:21:39 ============================================================================ +10:21:39 [ 1] [ 4] [0810] +10:21:39 [ 7] [ 10] [0320032139] +10:21:39 [ 11] [ 6] [807013] +10:21:39 [ 15] [ 4] [0320] +10:21:39 [ 37] [ 12] [57910807013] +10:21:39 [ 39] [ 2] [00] +10:21:39 [ 70] [ 3] [001] +10:21:39 ============================================================================ +10:21:39 Sending to : +10:21:39 ============================================================================ +10:21:39 + + +waiting on router queue for slot.... +10:21:50 ============================================================================ +10:21:50 Slot Id : <82> +10:21:50 Transaction Type : REQUEST +10:21:50 Received From : +10:21:50 ============================================================================ +10:21:50 FNo. Len. Field Value +10:21:50 ============================================================================ +10:21:50 [ 1] [ 4] [0800] +10:21:50 [ 7] [ 10] [0320032057] +10:21:50 [ 11] [ 6] [155830] +10:21:50 [ 70] [ 3] [301] +10:21:50 ============================================================================ +10:21:50 + + +waiting on router queue for slot.... +10:21:50 Sending to : +10:21:50 ============================================================================ +10:21:50 ============================================================================ +10:21:50 Slot Id : <82> +10:21:50 Transaction Type : RESPONSE +10:21:50 Received From : +10:21:50 ============================================================================ +10:21:50 FNo. Len. Field Value +10:21:50 ============================================================================ +10:21:50 [ 1] [ 4] [0810] +10:21:50 [ 7] [ 10] [0320032057] +10:21:50 [ 11] [ 6] [155830] +10:21:50 [ 39] [ 2] [00] +10:21:50 [ 70] [ 3] [301] +10:21:50 ============================================================================ +10:21:50 Calculate Source COMM Id = 2 +10:21:50 ============================================================================ +10:21:50 + + +waiting on router queue for slot.... +10:21:54 ============================================================================ +10:21:54 Slot Id : <93> +10:21:54 Transaction Type : REQUEST +10:21:54 Received From : +10:21:54 ============================================================================ +10:21:54 FNo. Len. Field Value +10:21:54 ============================================================================ +10:21:54 [ 1] [ 4] [0200] +10:21:54 [ 2] [ 16] [6688990105023905] +10:21:54 [ 3] [ 6] [011000] +10:21:54 [ 4] [ 12] [000060000000] +10:21:54 [ 7] [ 10] [0320102150] +10:21:54 [ 11] [ 6] [712888] +10:21:54 [ 12] [ 6] [102150] +10:21:54 [ 13] [ 4] [0320] +10:21:54 [ 15] [ 4] [0320] +10:21:54 [ 18] [ 4] [6011] +10:21:54 [ 22] [ 3] [900] +10:21:54 [ 25] [ 2] [02] +10:21:54 [ 28] [ 9] [D00002000] +10:21:54 [ 32] [ 6] [621354] +10:21:54 [ 35] [ 37] [6688990105023905=43071231390510600000] +10:21:54 [ 37] [ 12] [507903648787] +10:21:54 [ 41] [ 8] [16001700] +10:21:54 [ 42] [ 15] [NATIVE ] +10:21:54 [ 43] [ 40] [NOUL Unit Xaythany LAO] +10:21:54 [ 49] [ 3] [418] +10:21:54 [ 52] [ 16] [F6A7E82687CB1960] +10:21:54 ============================================================================ +10:21:54 + + +waiting on router queue for slot.... +10:21:54 Sending to : +10:21:54 ============================================================================ +10:21:54 Sending to : +10:21:54 ============================================================================ +10:21:54 ============================================================================ +10:21:54 Slot Id : <93> +10:21:54 Transaction Type : REQUEST +10:21:54 Received From : +10:21:54 ============================================================================ +10:21:54 FNo. Len. Field Value +10:21:54 ============================================================================ +10:21:54 [ 1] [ 4] [0200] +10:21:54 [ 2] [ 16] [6688990105023905] +10:21:54 [ 3] [ 6] [011000] +10:21:54 [ 4] [ 12] [000060000000] +10:21:54 [ 7] [ 10] [0320102150] +10:21:54 [ 11] [ 6] [712888] +10:21:54 [ 12] [ 6] [102150] +10:21:54 [ 13] [ 4] [0320] +10:21:54 [ 15] [ 4] [0320] +10:21:54 [ 18] [ 4] [6011] +10:21:54 [ 22] [ 3] [900] +10:21:54 [ 25] [ 2] [02] +10:21:54 [ 28] [ 9] [D00002000] +10:21:54 [ 32] [ 6] [621354] +10:21:54 [ 35] [ 37] [6688990105023905=43071231390510600000] +10:21:54 [ 37] [ 12] [507903648787] +10:21:54 [ 41] [ 8] [16001700] +10:21:54 [ 42] [ 15] [NATIVE ] +10:21:54 [ 43] [ 40] [NOUL Unit Xaythany LAO] +10:21:54 [ 49] [ 3] [418] +10:21:54 [ 52] [ 16] [F6A7E82687CB1960] +10:21:54 ============================================================================ +10:21:54 + + +waiting on router queue for slot.... +10:21:54 Sending to : +10:21:54 ============================================================================ +10:21:54 ============================================================================ +10:21:54 Slot Id : <93> +10:21:54 Transaction Type : REQUEST +10:21:54 Received From : +10:21:54 ============================================================================ +10:21:54 FNo. Len. Field Value +10:21:54 ============================================================================ +10:21:54 [ 1] [ 4] [0200] +10:21:54 [ 2] [ 16] [6688990105023905] +10:21:54 [ 3] [ 6] [011000] +10:21:54 [ 4] [ 12] [000060000000] +10:21:54 [ 7] [ 10] [0320102150] +10:21:54 [ 11] [ 6] [712888] +10:21:54 [ 12] [ 6] [102150] +10:21:54 [ 13] [ 4] [0320] +10:21:54 [ 15] [ 4] [0320] +10:21:54 [ 18] [ 4] [6011] +10:21:54 [ 22] [ 3] [900] +10:21:54 [ 25] [ 2] [02] +10:21:54 [ 28] [ 9] [D00002000] +10:21:54 [ 32] [ 6] [621354] +10:21:54 [ 35] [ 37] [6688990105023905=43071231390510600000] +10:21:54 [ 37] [ 12] [507903648787] +10:21:54 [ 41] [ 8] [16001700] +10:21:54 [ 42] [ 15] [NATIVE ] +10:21:54 [ 43] [ 40] [NOUL Unit Xaythany LAO] +10:21:54 [ 49] [ 3] [418] +10:21:54 [ 52] [ 16] [B9B4A5D6F8F463E0] +10:21:54 ============================================================================ +10:21:54 + + +waiting on router queue for slot.... +10:21:54 Sending to : <4> +10:21:54 ============================================================================ +10:21:55 ============================================================================ +10:21:55 Slot Id : <93> +10:21:55 Transaction Type : RESPONSE +10:21:55 Received From : +10:21:55 ============================================================================ +10:21:55 FNo. Len. Field Value +10:21:55 ============================================================================ +10:21:55 [ 1] [ 4] [0210] +10:21:55 [ 2] [ 16] [6688990105023905] +10:21:55 [ 3] [ 6] [011000] +10:21:55 [ 4] [ 12] [000060000000] +10:21:55 [ 11] [ 6] [712888] +10:21:55 [ 12] [ 6] [102150] +10:21:55 [ 15] [ 4] [0320] +10:21:55 [ 18] [ 4] [6011] +10:21:55 [ 32] [ 6] [621354] +10:21:55 [ 35] [ 37] [6688990105023905=43071231390510600000] +10:21:55 [ 37] [ 12] [507903648787] +10:21:55 [ 38] [ 6] [577142] +10:21:55 [ 39] [ 2] [00] +10:21:55 [ 41] [ 8] [16001700] +10:21:55 [ 49] [ 3] [418] +10:21:55 [ 54] [ 20] [1002418C000011931153] +10:21:55 ============================================================================ +10:21:55 Sending to : +10:21:55 ============================================================================ +10:21:55 + + +waiting on router queue for slot.... +10:21:57 ============================================================================ +10:21:57 Slot Id : <93> +10:21:57 Transaction Type : RESPONSE +10:21:57 Received From : +10:21:57 ============================================================================ +10:21:57 FNo. Len. Field Value +10:21:57 ============================================================================ +10:21:57 [ 1] [ 4] [0210] +10:21:57 [ 2] [ 16] [6688990105023905] +10:21:57 [ 3] [ 6] [011000] +10:21:57 [ 4] [ 12] [000060000000] +10:21:57 [ 11] [ 6] [712888] +10:21:57 [ 12] [ 6] [102150] +10:21:57 [ 15] [ 4] [0320] +10:21:57 [ 18] [ 4] [6011] +10:21:57 [ 32] [ 6] [621354] +10:21:57 [ 35] [ 37] [6688990105023905=43071231390510600000] +10:21:57 [ 37] [ 12] [507903648787] +10:21:57 [ 38] [ 6] [577142] +10:21:57 [ 39] [ 2] [00] +10:21:57 [ 41] [ 8] [16001700] +10:21:57 [ 49] [ 3] [418] +10:21:57 [ 54] [ 20] [1002418C000011931153] +10:21:57 ============================================================================ +10:21:57 Calculate Source COMM Id = 0 +10:21:57 ============================================================================ +10:21:57 + + +waiting on router queue for slot.... +10:21:59 ============================================================================ +10:21:59 Slot Id : <56> +10:21:59 Transaction Type : REQUEST +10:21:59 Received From : +10:21:59 ============================================================================ +10:21:59 FNo. Len. Field Value +10:21:59 ============================================================================ +10:21:59 [ 1] [ 4] [0800] +10:21:59 [ 7] [ 10] [0320173349] +10:21:59 [ 11] [ 6] [103349] +10:21:59 [ 37] [ 12] [57910103349] +10:21:59 [ 70] [ 3] [301] +10:21:59 ============================================================================ +10:21:59 + + +waiting on router queue for slot.... +10:21:59 Sending to : +10:21:59 ============================================================================ +10:21:59 ============================================================================ +10:21:59 Slot Id : <56> +10:21:59 Transaction Type : RESPONSE +10:21:59 Received From : +10:21:59 ============================================================================ +10:21:59 FNo. Len. Field Value +10:21:59 ============================================================================ +10:21:59 [ 1] [ 4] [0810] +10:21:59 [ 7] [ 10] [0320173349] +10:21:59 [ 11] [ 6] [103349] +10:21:59 [ 37] [ 12] [579101033490] +10:21:59 [ 39] [ 2] [00] +10:21:59 [ 70] [ 3] [810] +10:21:59 ============================================================================ +10:21:59 Calculate Source COMM Id = 6 +10:21:59 ============================================================================ +10:21:59 + + +waiting on router queue for slot.... +10:22:01 ============================================================================ +10:22:01 Slot Id : <91> +10:22:01 Transaction Type : REQUEST +10:22:01 Received From : +10:22:01 ============================================================================ +10:22:01 FNo. Len. Field Value +10:22:01 ============================================================================ +10:22:01 [ 1] [ 4] [0800] +10:22:01 [ 7] [ 10] [0320032108] +10:22:01 [ 11] [ 6] [155831] +10:22:01 [ 70] [ 3] [301] +10:22:01 ============================================================================ +10:22:01 + + +waiting on router queue for slot.... +10:22:01 Sending to : +10:22:01 ============================================================================ +10:22:01 ============================================================================ +10:22:01 Slot Id : <91> +10:22:01 Transaction Type : RESPONSE +10:22:01 Received From : +10:22:01 ============================================================================ +10:22:01 FNo. Len. Field Value +10:22:01 ============================================================================ +10:22:01 [ 1] [ 4] [0810] +10:22:01 [ 7] [ 10] [0320032108] +10:22:01 [ 11] [ 6] [155831] +10:22:01 [ 39] [ 2] [00] +10:22:01 [ 70] [ 3] [301] +10:22:01 ============================================================================ +10:22:01 Calculate Source COMM Id = 2 +10:22:01 ============================================================================ +10:22:01 + + +waiting on router queue for slot.... +10:22:01 ============================================================================ +10:22:01 Slot Id : <100> +10:22:01 Transaction Type : REQUEST +10:22:01 Received From : +10:22:01 ============================================================================ +10:22:01 FNo. Len. Field Value +10:22:01 ============================================================================ +10:22:01 [ 0] [ 4] [0420] +10:22:01 [ 1] [ 4] [0420] +10:22:01 [ 2] [ 16] [6213545000078570] +10:22:01 [ 3] [ 6] [010000] +10:22:01 [ 4] [ 12] [000010000000] +10:22:01 [ 6] [ 12] [000010000000] +10:22:01 [ 7] [ 10] [0320102055] +10:22:01 [ 11] [ 6] [079063] +10:22:01 [ 12] [ 6] [102055] +10:22:01 [ 13] [ 4] [0320] +10:22:01 [ 14] [ 4] [4912] +10:22:01 [ 15] [ 4] [0320] +10:22:01 [ 18] [ 4] [6011] +10:22:01 [ 22] [ 3] [900] +10:22:01 [ 25] [ 2] [02] +10:22:01 [ 28] [ 9] [D00002000] +10:22:01 [ 32] [ 6] [220699] +10:22:01 [ 35] [ 32] [6213545000078570=491212017857257] +10:22:01 [ 37] [ 12] [507900132944] +10:22:01 [ 39] [ 2] [00] +10:22:01 [ 41] [ 8] [03000100] +10:22:01 [ 42] [ 15] [APTRA ] +10:22:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:22:01 [ 49] [ 3] [418] +10:22:01 [ 52] [ 16] [4571FBCAA9119BF0] +10:22:01 ============================================================================ +10:22:01 + + +waiting on router queue for slot.... +10:22:01 ============================================================================ +10:22:01 Slot Id : <100> +10:22:01 Transaction Type : RESPONSE +10:22:01 Received From : +10:22:01 ============================================================================ +10:22:01 FNo. Len. Field Value +10:22:01 ============================================================================ +10:22:01 [ 1] [ 4] [0430] +10:22:01 [ 2] [ 16] [6213545000078570] +10:22:01 [ 3] [ 6] [010000] +10:22:01 [ 4] [ 12] [000010000000] +10:22:01 [ 7] [ 10] [0320102055] +10:22:01 [ 11] [ 6] [079063] +10:22:01 [ 32] [ 6] [220699] +10:22:01 [ 35] [ 32] [6213545000078570=491212017857257] +10:22:01 [ 37] [ 12] [507900132944] +10:22:01 [ 39] [ 2] [00] +10:22:01 [ 41] [ 8] [03000100] +10:22:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:22:01 [ 49] [ 3] [418] +10:22:01 [ 90] [ 42] [020007906303201020550000022069900000000000] +10:22:01 ============================================================================ +10:22:01 Successfully send the slot [100] To REVERSAL Process +10:22:01 + + +waiting on router queue for slot.... +10:22:11 ============================================================================ +10:22:11 Slot Id : <77> +10:22:11 Transaction Type : REQUEST +10:22:11 Received From : +10:22:11 ============================================================================ +10:22:11 FNo. Len. Field Value +10:22:11 ============================================================================ +10:22:11 [ 1] [ 4] [0800] +10:22:11 [ 7] [ 10] [0320032119] +10:22:11 [ 11] [ 6] [155832] +10:22:11 [ 70] [ 3] [301] +10:22:11 ============================================================================ +10:22:11 + + +waiting on router queue for slot.... +10:22:11 Sending to : +10:22:11 ============================================================================ +10:22:11 ============================================================================ +10:22:11 Slot Id : <77> +10:22:11 Transaction Type : RESPONSE +10:22:11 Received From : +10:22:11 ============================================================================ +10:22:11 FNo. Len. Field Value +10:22:11 ============================================================================ +10:22:11 [ 1] [ 4] [0810] +10:22:11 [ 7] [ 10] [0320032119] +10:22:11 [ 11] [ 6] [155832] +10:22:11 [ 39] [ 2] [00] +10:22:11 [ 70] [ 3] [301] +10:22:11 ============================================================================ +10:22:11 Calculate Source COMM Id = 2 +10:22:11 ============================================================================ +10:22:11 + + +waiting on router queue for slot.... +10:22:16 ============================================================================ +10:22:16 Slot Id : <65> +10:22:16 Transaction Type : REQUEST +10:22:16 Received From : +10:22:16 ============================================================================ +10:22:16 FNo. Len. Field Value +10:22:16 ============================================================================ +10:22:16 [ 1] [ 4] [0200] +10:22:16 [ 2] [ 16] [6688990105451502] +10:22:16 [ 3] [ 6] [301000] +10:22:16 [ 4] [ 12] [000000000000] +10:22:16 [ 7] [ 10] [0320102212] +10:22:16 [ 11] [ 6] [712980] +10:22:16 [ 12] [ 6] [102212] +10:22:16 [ 13] [ 4] [0320] +10:22:16 [ 15] [ 4] [0320] +10:22:16 [ 18] [ 4] [6011] +10:22:16 [ 22] [ 3] [900] +10:22:16 [ 25] [ 2] [02] +10:22:16 [ 28] [ 9] [D00000000] +10:22:16 [ 32] [ 6] [621354] +10:22:16 [ 35] [ 37] [6688990105451502=43091231150258500000] +10:22:16 [ 37] [ 12] [507904965565] +10:22:16 [ 41] [ 8] [15001100] +10:22:16 [ 42] [ 15] [NATIVE ] +10:22:16 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +10:22:16 [ 49] [ 3] [418] +10:22:16 [ 52] [ 16] [004720BF84894F3B] +10:22:16 ============================================================================ +10:22:16 + + +waiting on router queue for slot.... +10:22:16 Sending to : +10:22:16 ============================================================================ +10:22:16 Sending to : +10:22:16 ============================================================================ +10:22:17 ============================================================================ +10:22:17 Slot Id : <65> +10:22:17 Transaction Type : REQUEST +10:22:17 Received From : +10:22:17 ============================================================================ +10:22:17 FNo. Len. Field Value +10:22:17 ============================================================================ +10:22:17 [ 1] [ 4] [0200] +10:22:17 [ 2] [ 16] [6688990105451502] +10:22:17 [ 3] [ 6] [301000] +10:22:17 [ 4] [ 12] [000000000000] +10:22:17 [ 7] [ 10] [0320102212] +10:22:17 [ 11] [ 6] [712980] +10:22:17 [ 12] [ 6] [102212] +10:22:17 [ 13] [ 4] [0320] +10:22:17 [ 15] [ 4] [0320] +10:22:17 [ 18] [ 4] [6011] +10:22:17 [ 22] [ 3] [900] +10:22:17 [ 25] [ 2] [02] +10:22:17 [ 28] [ 9] [D00000000] +10:22:17 [ 32] [ 6] [621354] +10:22:17 [ 35] [ 37] [6688990105451502=43091231150258500000] +10:22:17 [ 37] [ 12] [507904965565] +10:22:17 [ 41] [ 8] [15001100] +10:22:17 [ 42] [ 15] [NATIVE ] +10:22:17 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +10:22:17 [ 49] [ 3] [418] +10:22:17 [ 52] [ 16] [004720BF84894F3B] +10:22:17 ============================================================================ +10:22:17 + + +waiting on router queue for slot.... +10:22:17 Sending to : +10:22:17 ============================================================================ +10:22:17 ============================================================================ +10:22:17 Slot Id : <65> +10:22:17 Transaction Type : REQUEST +10:22:17 Received From : +10:22:17 ============================================================================ +10:22:17 FNo. Len. Field Value +10:22:17 ============================================================================ +10:22:17 [ 1] [ 4] [0200] +10:22:17 [ 2] [ 16] [6688990105451502] +10:22:17 [ 3] [ 6] [301000] +10:22:17 [ 4] [ 12] [000000000000] +10:22:17 [ 7] [ 10] [0320102212] +10:22:17 [ 11] [ 6] [712980] +10:22:17 [ 12] [ 6] [102212] +10:22:17 [ 13] [ 4] [0320] +10:22:17 [ 15] [ 4] [0320] +10:22:17 [ 18] [ 4] [6011] +10:22:17 [ 22] [ 3] [900] +10:22:17 [ 25] [ 2] [02] +10:22:17 [ 28] [ 9] [D00000000] +10:22:17 [ 32] [ 6] [621354] +10:22:17 [ 35] [ 37] [6688990105451502=43091231150258500000] +10:22:17 [ 37] [ 12] [507904965565] +10:22:17 [ 41] [ 8] [15001100] +10:22:17 [ 42] [ 15] [NATIVE ] +10:22:17 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +10:22:17 [ 49] [ 3] [418] +10:22:17 [ 52] [ 16] [5352F808282080D3] +10:22:17 ============================================================================ +10:22:17 + + +waiting on router queue for slot.... +10:22:17 Sending to : <4> +10:22:17 ============================================================================ +10:22:18 ============================================================================ +10:22:18 Slot Id : <65> +10:22:18 Transaction Type : RESPONSE +10:22:18 Received From : +10:22:18 ============================================================================ +10:22:18 FNo. Len. Field Value +10:22:18 ============================================================================ +10:22:18 [ 1] [ 4] [0210] +10:22:18 [ 2] [ 16] [6688990105451502] +10:22:18 [ 3] [ 6] [301000] +10:22:18 [ 4] [ 12] [000000000000] +10:22:18 [ 11] [ 6] [712980] +10:22:18 [ 12] [ 6] [102212] +10:22:18 [ 15] [ 4] [0320] +10:22:18 [ 18] [ 4] [6011] +10:22:18 [ 32] [ 6] [621354] +10:22:18 [ 35] [ 37] [6688990105451502=43091231150258500000] +10:22:18 [ 37] [ 12] [507904965565] +10:22:18 [ 38] [ 6] [240474] +10:22:18 [ 39] [ 2] [00] +10:22:18 [ 41] [ 8] [15001100] +10:22:18 [ 49] [ 3] [418] +10:22:18 [ 54] [ 20] [1002418C000584276791] +10:22:18 ============================================================================ +10:22:18 Sending to : +10:22:18 ============================================================================ +10:22:18 + + +waiting on router queue for slot.... +10:22:19 ============================================================================ +10:22:19 Slot Id : <65> +10:22:19 Transaction Type : RESPONSE +10:22:19 Received From : +10:22:19 ============================================================================ +10:22:19 FNo. Len. Field Value +10:22:19 ============================================================================ +10:22:19 [ 1] [ 4] [0210] +10:22:19 [ 2] [ 16] [6688990105451502] +10:22:19 [ 3] [ 6] [301000] +10:22:19 [ 4] [ 12] [000000000000] +10:22:19 [ 11] [ 6] [712980] +10:22:19 [ 12] [ 6] [102212] +10:22:19 [ 15] [ 4] [0320] +10:22:19 [ 18] [ 4] [6011] +10:22:19 [ 32] [ 6] [621354] +10:22:19 [ 35] [ 37] [6688990105451502=43091231150258500000] +10:22:19 [ 37] [ 12] [507904965565] +10:22:19 [ 38] [ 6] [240474] +10:22:19 [ 39] [ 2] [00] +10:22:19 [ 41] [ 8] [15001100] +10:22:19 [ 49] [ 3] [418] +10:22:19 [ 54] [ 20] [1002418C000584276791] +10:22:19 ============================================================================ +10:22:19 Calculate Source COMM Id = 0 +10:22:19 ============================================================================ +10:22:19 + + +waiting on router queue for slot.... +10:22:22 ============================================================================ +10:22:22 Slot Id : <72> +10:22:22 Transaction Type : REQUEST +10:22:22 Received From : +10:22:22 ============================================================================ +10:22:22 FNo. Len. Field Value +10:22:22 ============================================================================ +10:22:22 [ 1] [ 4] [0800] +10:22:22 [ 7] [ 10] [0320032130] +10:22:22 [ 11] [ 6] [155833] +10:22:22 [ 70] [ 3] [301] +10:22:22 ============================================================================ +10:22:22 + + +waiting on router queue for slot.... +10:22:22 Sending to : +10:22:22 ============================================================================ +10:22:22 ============================================================================ +10:22:22 Slot Id : <72> +10:22:22 Transaction Type : RESPONSE +10:22:22 Received From : +10:22:22 ============================================================================ +10:22:22 FNo. Len. Field Value +10:22:22 ============================================================================ +10:22:22 [ 1] [ 4] [0810] +10:22:22 [ 7] [ 10] [0320032130] +10:22:22 [ 11] [ 6] [155833] +10:22:22 [ 39] [ 2] [00] +10:22:22 [ 70] [ 3] [301] +10:22:22 ============================================================================ +10:22:22 Calculate Source COMM Id = 2 +10:22:22 ============================================================================ +10:22:22 + + +waiting on router queue for slot.... +10:22:39 ============================================================================ +10:22:39 Slot Id : <106> +10:22:39 Transaction Type : REQUEST +10:22:39 Received From : +10:22:39 ============================================================================ +10:22:39 FNo. Len. Field Value +10:22:39 ============================================================================ +10:22:39 [ 1] [ 4] [0800] +10:22:39 [ 7] [ 10] [0320032145] +10:22:39 [ 11] [ 6] [155834] +10:22:39 [ 70] [ 3] [301] +10:22:39 ============================================================================ +10:22:39 + + +waiting on router queue for slot.... +10:22:39 Sending to : +10:22:39 ============================================================================ +10:22:39 ============================================================================ +10:22:39 Slot Id : <106> +10:22:39 Transaction Type : RESPONSE +10:22:39 Received From : +10:22:39 ============================================================================ +10:22:39 FNo. Len. Field Value +10:22:39 ============================================================================ +10:22:39 [ 1] [ 4] [0810] +10:22:39 [ 7] [ 10] [0320032145] +10:22:39 [ 11] [ 6] [155834] +10:22:39 [ 39] [ 2] [00] +10:22:39 [ 70] [ 3] [301] +10:22:39 ============================================================================ +10:22:39 Calculate Source COMM Id = 2 +10:22:39 ============================================================================ +10:22:39 + + +waiting on router queue for slot.... +10:22:41 ============================================================================ +10:22:41 Slot Id : <76> +10:22:41 Transaction Type : REQUEST +10:22:41 Received From : +10:22:41 ============================================================================ +10:22:41 FNo. Len. Field Value +10:22:41 ============================================================================ +10:22:41 [ 1] [ 4] [0800] +10:22:41 [ 2] [ 5] [02531] +10:22:41 [ 3] [ 6] [579108] +10:22:41 [ 7] [ 10] [0320032241] +10:22:41 [ 11] [ 6] [807014] +10:22:41 [ 15] [ 10] [0320032241] +10:22:41 [ 37] [ 11] [57910807014] +10:22:41 [ 70] [ 3] [001] +10:22:41 ============================================================================ +10:22:41 + + +waiting on router queue for slot.... +10:22:41 ============================================================================ +10:22:41 Slot Id : <76> +10:22:41 Transaction Type : RESPONSE +10:22:41 Received From : +10:22:41 ============================================================================ +10:22:41 FNo. Len. Field Value +10:22:41 ============================================================================ +10:22:41 [ 1] [ 4] [0810] +10:22:41 [ 7] [ 10] [0320032241] +10:22:41 [ 11] [ 6] [807014] +10:22:41 [ 15] [ 4] [0320] +10:22:41 [ 37] [ 12] [57910807014] +10:22:41 [ 39] [ 2] [00] +10:22:41 [ 70] [ 3] [001] +10:22:41 ============================================================================ +10:22:41 Sending to : +10:22:41 ============================================================================ +10:22:41 + + +waiting on router queue for slot.... +10:22:55 ============================================================================ +10:22:55 Slot Id : <66> +10:22:55 Transaction Type : REQUEST +10:22:55 Received From : +10:22:55 ============================================================================ +10:22:55 FNo. Len. Field Value +10:22:55 ============================================================================ +10:22:55 [ 1] [ 4] [0800] +10:22:55 [ 7] [ 10] [0320032202] +10:22:55 [ 11] [ 6] [155835] +10:22:55 [ 70] [ 3] [301] +10:22:55 ============================================================================ +10:22:55 + + +waiting on router queue for slot.... +10:22:55 Sending to : +10:22:55 ============================================================================ +10:22:55 ============================================================================ +10:22:55 Slot Id : <66> +10:22:55 Transaction Type : RESPONSE +10:22:55 Received From : +10:22:55 ============================================================================ +10:22:55 FNo. Len. Field Value +10:22:55 ============================================================================ +10:22:55 [ 1] [ 4] [0810] +10:22:55 [ 7] [ 10] [0320032202] +10:22:55 [ 11] [ 6] [155835] +10:22:55 [ 39] [ 2] [00] +10:22:55 [ 70] [ 3] [301] +10:22:55 ============================================================================ +10:22:55 Calculate Source COMM Id = 2 +10:22:55 ============================================================================ +10:22:55 + + +waiting on router queue for slot.... +10:23:05 ============================================================================ +10:23:05 Slot Id : <90> +10:23:05 Transaction Type : REQUEST +10:23:05 Received From : +10:23:05 ============================================================================ +10:23:05 FNo. Len. Field Value +10:23:05 ============================================================================ +10:23:05 [ 1] [ 4] [0800] +10:23:05 [ 7] [ 10] [0320173454] +10:23:05 [ 11] [ 6] [103454] +10:23:05 [ 37] [ 12] [57910103454] +10:23:05 [ 70] [ 3] [301] +10:23:05 ============================================================================ +10:23:05 + + +waiting on router queue for slot.... +10:23:05 Sending to : +10:23:05 ============================================================================ +10:23:05 ============================================================================ +10:23:05 Slot Id : <90> +10:23:05 Transaction Type : RESPONSE +10:23:05 Received From : +10:23:05 ============================================================================ +10:23:05 FNo. Len. Field Value +10:23:05 ============================================================================ +10:23:05 [ 1] [ 4] [0810] +10:23:05 [ 7] [ 10] [0320173454] +10:23:05 [ 11] [ 6] [103454] +10:23:05 [ 37] [ 12] [579101034540] +10:23:05 [ 39] [ 2] [00] +10:23:05 [ 70] [ 3] [810] +10:23:05 ============================================================================ +10:23:05 Calculate Source COMM Id = 6 +10:23:05 ============================================================================ +10:23:05 + + +waiting on router queue for slot.... +10:23:10 ============================================================================ +10:23:10 Slot Id : <114> +10:23:10 Transaction Type : REQUEST +10:23:10 Received From : +10:23:10 ============================================================================ +10:23:10 FNo. Len. Field Value +10:23:10 ============================================================================ +10:23:10 [ 1] [ 4] [0800] +10:23:10 [ 7] [ 10] [0320032218] +10:23:10 [ 11] [ 6] [155836] +10:23:10 [ 70] [ 3] [301] +10:23:10 ============================================================================ +10:23:10 + + +waiting on router queue for slot.... +10:23:10 Sending to : +10:23:10 ============================================================================ +10:23:10 ============================================================================ +10:23:10 Slot Id : <114> +10:23:10 Transaction Type : RESPONSE +10:23:10 Received From : +10:23:10 ============================================================================ +10:23:10 FNo. Len. Field Value +10:23:10 ============================================================================ +10:23:10 [ 1] [ 4] [0810] +10:23:10 [ 7] [ 10] [0320032218] +10:23:10 [ 11] [ 6] [155836] +10:23:10 [ 39] [ 2] [00] +10:23:10 [ 70] [ 3] [301] +10:23:10 ============================================================================ +10:23:10 Calculate Source COMM Id = 2 +10:23:10 ============================================================================ +10:23:10 + + +waiting on router queue for slot.... +10:23:26 ============================================================================ +10:23:26 Slot Id : <83> +10:23:26 Transaction Type : REQUEST +10:23:26 Received From : +10:23:26 ============================================================================ +10:23:26 FNo. Len. Field Value +10:23:26 ============================================================================ +10:23:26 [ 1] [ 4] [0800] +10:23:26 [ 7] [ 10] [0320032234] +10:23:26 [ 11] [ 6] [155837] +10:23:26 [ 70] [ 3] [301] +10:23:26 ============================================================================ +10:23:26 + + +waiting on router queue for slot.... +10:23:26 Sending to : +10:23:26 ============================================================================ +10:23:26 ============================================================================ +10:23:26 Slot Id : <83> +10:23:26 Transaction Type : RESPONSE +10:23:26 Received From : +10:23:26 ============================================================================ +10:23:26 FNo. Len. Field Value +10:23:26 ============================================================================ +10:23:26 [ 1] [ 4] [0810] +10:23:26 [ 7] [ 10] [0320032234] +10:23:26 [ 11] [ 6] [155837] +10:23:26 [ 39] [ 2] [00] +10:23:26 [ 70] [ 3] [301] +10:23:26 ============================================================================ +10:23:26 Calculate Source COMM Id = 2 +10:23:26 ============================================================================ +10:23:26 + + +waiting on router queue for slot.... +10:23:34 ============================================================================ +10:23:34 Slot Id : <74> +10:23:34 Transaction Type : REQUEST +10:23:34 Received From : +10:23:34 ============================================================================ +10:23:34 FNo. Len. Field Value +10:23:34 ============================================================================ +10:23:34 [ 1] [ 4] [0200] +10:23:34 [ 2] [ 16] [6213545000068456] +10:23:34 [ 3] [ 6] [010000] +10:23:34 [ 4] [ 12] [000005000000] +10:23:34 [ 7] [ 10] [0320102125] +10:23:34 [ 11] [ 6] [938434] +10:23:34 [ 12] [ 6] [102125] +10:23:34 [ 13] [ 4] [0320] +10:23:34 [ 15] [ 4] [0320] +10:23:34 [ 18] [ 4] [6011] +10:23:34 [ 19] [ 3] [418] +10:23:34 [ 22] [ 3] [021] +10:23:34 [ 25] [ 2] [01] +10:23:34 [ 28] [ 9] [D00002000] +10:23:34 [ 32] [ 6] [668899] +10:23:34 [ 35] [ 32] [6213545000068456=491212016845467] +10:23:34 [ 37] [ 12] [507901237424] +10:23:34 [ 41] [ 8] [03002002] +10:23:34 [ 42] [ 15] [APT ] +10:23:34 [ 43] [ 40] [ PROVINCIAL OF PHONGSALY P] +10:23:34 [ 49] [ 3] [418] +10:23:34 [ 52] [ 16] [3D4481AEC7AC2E9A] +10:23:34 ============================================================================ +10:23:34 + + +waiting on router queue for slot.... +10:23:34 Sending to : +10:23:34 ============================================================================ +10:23:34 Sending to : +10:23:34 ============================================================================ +10:23:34 ============================================================================ +10:23:34 Slot Id : <74> +10:23:34 Transaction Type : REQUEST +10:23:34 Received From : +10:23:34 ============================================================================ +10:23:34 FNo. Len. Field Value +10:23:34 ============================================================================ +10:23:34 [ 1] [ 4] [0200] +10:23:34 [ 2] [ 16] [6213545000068456] +10:23:34 [ 3] [ 6] [010000] +10:23:34 [ 4] [ 12] [000005000000] +10:23:34 [ 7] [ 10] [0320102125] +10:23:34 [ 11] [ 6] [938434] +10:23:34 [ 12] [ 6] [102125] +10:23:34 [ 13] [ 4] [0320] +10:23:34 [ 15] [ 4] [0320] +10:23:34 [ 18] [ 4] [6011] +10:23:34 [ 19] [ 3] [418] +10:23:34 [ 22] [ 3] [021] +10:23:34 [ 25] [ 2] [01] +10:23:34 [ 28] [ 9] [D00002000] +10:23:34 [ 32] [ 6] [668899] +10:23:34 [ 35] [ 32] [6213545000068456=491212016845467] +10:23:34 [ 37] [ 12] [507901237424] +10:23:34 [ 41] [ 8] [03002002] +10:23:34 [ 42] [ 15] [APT ] +10:23:34 [ 43] [ 40] [ PROVINCIAL OF PHONGSALY P] +10:23:34 [ 49] [ 3] [418] +10:23:34 [ 52] [ 16] [3D4481AEC7AC2E9A] +10:23:34 ============================================================================ +10:23:34 + + +waiting on router queue for slot.... +10:23:34 Sending to : +10:23:34 ============================================================================ +10:23:34 ============================================================================ +10:23:34 Slot Id : <74> +10:23:34 Transaction Type : REQUEST +10:23:34 Received From : +10:23:34 ============================================================================ +10:23:34 FNo. Len. Field Value +10:23:34 ============================================================================ +10:23:34 [ 1] [ 4] [0200] +10:23:34 [ 2] [ 16] [6213545000068456] +10:23:34 [ 3] [ 6] [010000] +10:23:34 [ 4] [ 12] [000005000000] +10:23:34 [ 7] [ 10] [0320102125] +10:23:34 [ 11] [ 6] [938434] +10:23:34 [ 12] [ 6] [102125] +10:23:34 [ 13] [ 4] [0320] +10:23:34 [ 15] [ 4] [0320] +10:23:34 [ 18] [ 4] [6011] +10:23:34 [ 19] [ 3] [418] +10:23:34 [ 22] [ 3] [021] +10:23:34 [ 25] [ 2] [01] +10:23:34 [ 28] [ 9] [D00002000] +10:23:34 [ 32] [ 6] [668899] +10:23:34 [ 35] [ 32] [6213545000068456=491212016845467] +10:23:34 [ 37] [ 12] [507901237424] +10:23:34 [ 41] [ 8] [03002002] +10:23:34 [ 42] [ 15] [APT ] +10:23:34 [ 43] [ 40] [ PROVINCIAL OF PHONGSALY P] +10:23:34 [ 49] [ 3] [418] +10:23:34 [ 52] [ 16] [F53EEA81B24084CD] +10:23:34 ============================================================================ +10:23:34 + + +waiting on router queue for slot.... +10:23:34 Sending to : <0> +10:23:34 ============================================================================ +10:23:35 ============================================================================ +10:23:35 Slot Id : <74> +10:23:35 Transaction Type : RESPONSE +10:23:35 Received From : +10:23:35 ============================================================================ +10:23:35 FNo. Len. Field Value +10:23:35 ============================================================================ +10:23:35 [ 1] [ 4] [0210] +10:23:35 [ 2] [ 16] [6213545000068456] +10:23:35 [ 3] [ 6] [010000] +10:23:35 [ 4] [ 12] [000005000000] +10:23:35 [ 7] [ 10] [0320102125] +10:23:35 [ 11] [ 6] [938434] +10:23:35 [ 12] [ 6] [102125] +10:23:35 [ 13] [ 4] [0320] +10:23:35 [ 15] [ 4] [0320] +10:23:35 [ 18] [ 4] [6011] +10:23:35 [ 19] [ 3] [418] +10:23:35 [ 32] [ 6] [668899] +10:23:35 [ 35] [ 32] [6213545000068456=491212016845467] +10:23:35 [ 37] [ 12] [507901237424] +10:23:35 [ 38] [ 6] [869276] +10:23:35 [ 39] [ 2] [00] +10:23:35 [ 41] [ 8] [03002002] +10:23:35 [ 49] [ 3] [418] +10:23:35 [ 54] [ 40] [0001418C0000424038520002418C000042403852] +10:23:35 ============================================================================ +10:23:35 Sending to : +10:23:35 ============================================================================ +10:23:35 + + +waiting on router queue for slot.... +10:23:37 ============================================================================ +10:23:37 Slot Id : <74> +10:23:37 Transaction Type : RESPONSE +10:23:37 Received From : +10:23:37 ============================================================================ +10:23:37 FNo. Len. Field Value +10:23:37 ============================================================================ +10:23:37 [ 1] [ 4] [0210] +10:23:37 [ 2] [ 16] [6213545000068456] +10:23:37 [ 3] [ 6] [010000] +10:23:37 [ 4] [ 12] [000005000000] +10:23:37 [ 7] [ 10] [0320102125] +10:23:37 [ 11] [ 6] [938434] +10:23:37 [ 12] [ 6] [102125] +10:23:37 [ 13] [ 4] [0320] +10:23:37 [ 15] [ 4] [0320] +10:23:37 [ 18] [ 4] [6011] +10:23:37 [ 19] [ 3] [418] +10:23:37 [ 32] [ 6] [668899] +10:23:37 [ 35] [ 32] [6213545000068456=491212016845467] +10:23:37 [ 37] [ 12] [507901237424] +10:23:37 [ 38] [ 6] [869276] +10:23:37 [ 39] [ 2] [00] +10:23:37 [ 41] [ 8] [03002002] +10:23:37 [ 49] [ 3] [418] +10:23:37 [ 54] [ 40] [0001418C0000424038520002418C000042403852] +10:23:37 ============================================================================ +10:23:37 Calculate Source COMM Id = 4 +10:23:37 ============================================================================ +10:23:37 + + +waiting on router queue for slot.... +10:23:38 ============================================================================ +10:23:38 Slot Id : <118> +10:23:38 Transaction Type : REQUEST +10:23:38 Received From : +10:23:38 ============================================================================ +10:23:38 FNo. Len. Field Value +10:23:38 ============================================================================ +10:23:38 [ 1] [ 4] [0800] +10:23:38 [ 7] [ 10] [0320032245] +10:23:38 [ 11] [ 6] [155838] +10:23:38 [ 70] [ 3] [301] +10:23:38 ============================================================================ +10:23:38 + + +waiting on router queue for slot.... +10:23:38 Sending to : +10:23:38 ============================================================================ +10:23:38 ============================================================================ +10:23:38 Slot Id : <118> +10:23:38 Transaction Type : RESPONSE +10:23:38 Received From : +10:23:38 ============================================================================ +10:23:38 FNo. Len. Field Value +10:23:38 ============================================================================ +10:23:38 [ 1] [ 4] [0810] +10:23:38 [ 7] [ 10] [0320032245] +10:23:38 [ 11] [ 6] [155838] +10:23:38 [ 39] [ 2] [00] +10:23:38 [ 70] [ 3] [301] +10:23:38 ============================================================================ +10:23:38 Calculate Source COMM Id = 2 +10:23:38 ============================================================================ +10:23:38 + + +waiting on router queue for slot.... +10:23:43 ============================================================================ +10:23:43 Slot Id : <107> +10:23:43 Transaction Type : REQUEST +10:23:43 Received From : +10:23:43 ============================================================================ +10:23:43 FNo. Len. Field Value +10:23:43 ============================================================================ +10:23:43 [ 1] [ 4] [0800] +10:23:43 [ 2] [ 5] [02531] +10:23:43 [ 3] [ 6] [579108] +10:23:43 [ 7] [ 10] [0320032343] +10:23:43 [ 11] [ 6] [807015] +10:23:43 [ 15] [ 10] [0320032343] +10:23:43 [ 37] [ 11] [57910807015] +10:23:43 [ 70] [ 3] [001] +10:23:43 ============================================================================ +10:23:43 + + +waiting on router queue for slot.... +10:23:43 ============================================================================ +10:23:43 Slot Id : <107> +10:23:43 Transaction Type : RESPONSE +10:23:43 Received From : +10:23:43 ============================================================================ +10:23:43 FNo. Len. Field Value +10:23:43 ============================================================================ +10:23:43 [ 1] [ 4] [0810] +10:23:43 [ 7] [ 10] [0320032343] +10:23:43 [ 11] [ 6] [807015] +10:23:43 [ 15] [ 4] [0320] +10:23:43 [ 37] [ 12] [57910807015] +10:23:43 [ 39] [ 2] [00] +10:23:43 [ 70] [ 3] [001] +10:23:43 ============================================================================ +10:23:43 Sending to : +10:23:43 ============================================================================ +10:23:43 + + +waiting on router queue for slot.... +10:23:51 ============================================================================ +10:23:51 Slot Id : <92> +10:23:51 Transaction Type : REQUEST +10:23:51 Received From : +10:23:51 ============================================================================ +10:23:51 FNo. Len. Field Value +10:23:51 ============================================================================ +10:23:51 [ 1] [ 4] [0200] +10:23:51 [ 2] [ 16] [6213545000078430] +10:23:51 [ 3] [ 6] [011000] +10:23:51 [ 4] [ 12] [000100000000] +10:23:51 [ 7] [ 10] [0320103138] +10:23:51 [ 11] [ 6] [079069] +10:23:51 [ 12] [ 6] [103138] +10:23:51 [ 13] [ 4] [0320] +10:23:51 [ 14] [ 4] [4912] +10:23:51 [ 15] [ 4] [0320] +10:23:51 [ 18] [ 4] [6011] +10:23:51 [ 22] [ 3] [900] +10:23:51 [ 25] [ 2] [02] +10:23:51 [ 28] [ 9] [D00002000] +10:23:51 [ 32] [ 6] [220699] +10:23:51 [ 35] [ 32] [6213545000078430=491212017843834] +10:23:51 [ 37] [ 12] [507900132948] +10:23:51 [ 41] [ 8] [03000100] +10:23:51 [ 42] [ 15] [APTRA ] +10:23:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:23:51 [ 49] [ 3] [418] +10:23:51 [ 52] [ 16] [A3E9CBA54A4C25AF] +10:23:51 ============================================================================ +10:23:51 + + +waiting on router queue for slot.... +10:23:51 Sending to : +10:23:51 ============================================================================ +10:23:51 Sending to : +10:23:51 ============================================================================ +10:23:51 ============================================================================ +10:23:51 Slot Id : <92> +10:23:51 Transaction Type : REQUEST +10:23:51 Received From : +10:23:51 ============================================================================ +10:23:51 FNo. Len. Field Value +10:23:51 ============================================================================ +10:23:51 [ 1] [ 4] [0200] +10:23:51 [ 2] [ 16] [6213545000078430] +10:23:51 [ 3] [ 6] [011000] +10:23:51 [ 4] [ 12] [000100000000] +10:23:51 [ 7] [ 10] [0320103138] +10:23:51 [ 11] [ 6] [079069] +10:23:51 [ 12] [ 6] [103138] +10:23:51 [ 13] [ 4] [0320] +10:23:51 [ 14] [ 4] [4912] +10:23:51 [ 15] [ 4] [0320] +10:23:51 [ 18] [ 4] [6011] +10:23:51 [ 22] [ 3] [900] +10:23:51 [ 25] [ 2] [02] +10:23:51 [ 28] [ 9] [D00002000] +10:23:51 [ 32] [ 6] [220699] +10:23:51 [ 35] [ 32] [6213545000078430=491212017843834] +10:23:51 [ 37] [ 12] [507900132948] +10:23:51 [ 41] [ 8] [03000100] +10:23:51 [ 42] [ 15] [APTRA ] +10:23:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:23:51 [ 49] [ 3] [418] +10:23:51 [ 52] [ 16] [A3E9CBA54A4C25AF] +10:23:51 ============================================================================ +10:23:51 + + +waiting on router queue for slot.... +10:23:51 Sending to : +10:23:51 ============================================================================ +10:23:51 ============================================================================ +10:23:51 Slot Id : <92> +10:23:51 Transaction Type : REQUEST +10:23:51 Received From : +10:23:51 ============================================================================ +10:23:51 FNo. Len. Field Value +10:23:51 ============================================================================ +10:23:51 [ 1] [ 4] [0200] +10:23:51 [ 2] [ 16] [6213545000078430] +10:23:51 [ 3] [ 6] [011000] +10:23:51 [ 4] [ 12] [000100000000] +10:23:51 [ 7] [ 10] [0320103138] +10:23:51 [ 11] [ 6] [079069] +10:23:51 [ 12] [ 6] [103138] +10:23:51 [ 13] [ 4] [0320] +10:23:51 [ 14] [ 4] [4912] +10:23:51 [ 15] [ 4] [0320] +10:23:51 [ 18] [ 4] [6011] +10:23:51 [ 22] [ 3] [900] +10:23:51 [ 25] [ 2] [02] +10:23:51 [ 28] [ 9] [D00002000] +10:23:51 [ 32] [ 6] [220699] +10:23:51 [ 35] [ 32] [6213545000078430=491212017843834] +10:23:51 [ 37] [ 12] [507900132948] +10:23:51 [ 41] [ 8] [03000100] +10:23:51 [ 42] [ 15] [APTRA ] +10:23:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:23:51 [ 49] [ 3] [418] +10:23:51 [ 52] [ 16] [751E9BE395ABA06F] +10:23:51 ============================================================================ +10:23:51 + + +waiting on router queue for slot.... +10:23:51 Sending to : <0> +10:23:51 ============================================================================ +10:23:52 ============================================================================ +10:23:52 Slot Id : <92> +10:23:52 Transaction Type : RESPONSE +10:23:52 Received From : +10:23:52 ============================================================================ +10:23:52 FNo. Len. Field Value +10:23:52 ============================================================================ +10:23:52 [ 1] [ 4] [0210] +10:23:52 [ 2] [ 16] [6213545000078430] +10:23:52 [ 3] [ 6] [011000] +10:23:52 [ 4] [ 12] [000100000000] +10:23:52 [ 7] [ 10] [0320103138] +10:23:52 [ 11] [ 6] [079069] +10:23:52 [ 12] [ 6] [103138] +10:23:52 [ 13] [ 4] [0320] +10:23:52 [ 15] [ 4] [0320] +10:23:52 [ 18] [ 4] [6011] +10:23:52 [ 32] [ 6] [220699] +10:23:52 [ 35] [ 32] [6213545000078430=491212017843834] +10:23:52 [ 37] [ 12] [507900132948] +10:23:52 [ 38] [ 6] [652210] +10:23:52 [ 39] [ 2] [00] +10:23:52 [ 41] [ 8] [03000100] +10:23:52 [ 49] [ 3] [418] +10:23:52 [ 54] [ 40] [1001418C0001322109561002418C000132210956] +10:23:52 ============================================================================ +10:23:52 Sending to : +10:23:52 ============================================================================ +10:23:52 + + +waiting on router queue for slot.... +10:23:54 ============================================================================ +10:23:54 Slot Id : <92> +10:23:54 Transaction Type : RESPONSE +10:23:54 Received From : +10:23:54 ============================================================================ +10:23:54 FNo. Len. Field Value +10:23:54 ============================================================================ +10:23:54 [ 1] [ 4] [0210] +10:23:54 [ 2] [ 16] [6213545000078430] +10:23:54 [ 3] [ 6] [011000] +10:23:54 [ 4] [ 12] [000100000000] +10:23:54 [ 7] [ 10] [0320103138] +10:23:54 [ 11] [ 6] [079069] +10:23:54 [ 12] [ 6] [103138] +10:23:54 [ 13] [ 4] [0320] +10:23:54 [ 15] [ 4] [0320] +10:23:54 [ 18] [ 4] [6011] +10:23:54 [ 32] [ 6] [220699] +10:23:54 [ 35] [ 32] [6213545000078430=491212017843834] +10:23:54 [ 37] [ 12] [507900132948] +10:23:54 [ 38] [ 6] [652210] +10:23:54 [ 39] [ 2] [00] +10:23:54 [ 41] [ 8] [03000100] +10:23:54 [ 49] [ 3] [418] +10:23:54 [ 54] [ 40] [1001418C0001322109561002418C000132210956] +10:23:54 ============================================================================ +10:23:54 Calculate Source COMM Id = 1 +10:23:54 ============================================================================ +10:23:54 + + +waiting on router queue for slot.... +10:23:54 ============================================================================ +10:23:54 Slot Id : <121> +10:23:54 Transaction Type : REQUEST +10:23:54 Received From : +10:23:54 ============================================================================ +10:23:54 FNo. Len. Field Value +10:23:54 ============================================================================ +10:23:54 [ 1] [ 4] [0800] +10:23:54 [ 7] [ 10] [0320032350] +10:23:54 [ 11] [ 6] [033674] +10:23:54 [ 37] [ 12] [507910033674] +10:23:54 [ 70] [ 3] [001] +10:23:54 ============================================================================ +10:23:54 + + +waiting on router queue for slot.... +10:23:54 Sending to : +10:23:54 ============================================================================ +10:23:54 ============================================================================ +10:23:54 Slot Id : <121> +10:23:54 Transaction Type : RESPONSE +10:23:54 Received From : +10:23:54 ============================================================================ +10:23:54 FNo. Len. Field Value +10:23:54 ============================================================================ +10:23:54 [ 1] [ 4] [0810] +10:23:54 [ 7] [ 10] [0320032350] +10:23:54 [ 11] [ 6] [033674] +10:23:54 [ 37] [ 12] [507910033674] +10:23:54 [ 39] [ 2] [00] +10:23:54 [ 70] [ 3] [001] +10:23:54 ============================================================================ +10:23:54 Calculate Source COMM Id = 0 +10:23:54 ============================================================================ +10:23:54 + + +waiting on router queue for slot.... +10:23:56 ============================================================================ +10:23:56 Slot Id : <115> +10:23:56 Transaction Type : REQUEST +10:23:56 Received From : +10:23:56 ============================================================================ +10:23:56 FNo. Len. Field Value +10:23:56 ============================================================================ +10:23:56 [ 1] [ 4] [0800] +10:23:56 [ 7] [ 10] [0320032303] +10:23:56 [ 11] [ 6] [155839] +10:23:56 [ 70] [ 3] [301] +10:23:56 ============================================================================ +10:23:56 + + +waiting on router queue for slot.... +10:23:56 Sending to : +10:23:56 ============================================================================ +10:23:56 ============================================================================ +10:23:56 Slot Id : <115> +10:23:56 Transaction Type : RESPONSE +10:23:56 Received From : +10:23:56 ============================================================================ +10:23:56 FNo. Len. Field Value +10:23:56 ============================================================================ +10:23:56 [ 1] [ 4] [0810] +10:23:56 [ 7] [ 10] [0320032303] +10:23:56 [ 11] [ 6] [155839] +10:23:56 [ 39] [ 2] [00] +10:23:56 [ 70] [ 3] [301] +10:23:56 ============================================================================ +10:23:56 Calculate Source COMM Id = 2 +10:23:56 ============================================================================ +10:23:56 + + +waiting on router queue for slot.... +10:24:07 ============================================================================ +10:24:07 Slot Id : <113> +10:24:07 Transaction Type : REQUEST +10:24:07 Received From : +10:24:07 ============================================================================ +10:24:07 FNo. Len. Field Value +10:24:07 ============================================================================ +10:24:07 [ 1] [ 4] [0200] +10:24:07 [ 2] [ 16] [6688990040050799] +10:24:07 [ 3] [ 6] [011000] +10:24:07 [ 4] [ 12] [000020000000] +10:24:07 [ 7] [ 10] [0320102403] +10:24:07 [ 11] [ 6] [713412] +10:24:07 [ 12] [ 6] [102403] +10:24:07 [ 13] [ 4] [0320] +10:24:07 [ 15] [ 4] [0320] +10:24:07 [ 18] [ 4] [6011] +10:24:07 [ 22] [ 3] [900] +10:24:07 [ 25] [ 2] [02] +10:24:07 [ 28] [ 9] [D00002000] +10:24:07 [ 32] [ 6] [621354] +10:24:07 [ 35] [ 37] [6688990040050799=97121261716905300000] +10:24:07 [ 37] [ 12] [507903611999] +10:24:07 [ 41] [ 8] [16001400] +10:24:07 [ 42] [ 15] [NATIVE ] +10:24:07 [ 43] [ 40] [NOUL Xaythany LAO] +10:24:07 [ 49] [ 3] [418] +10:24:07 [ 52] [ 16] [DDF1A25B02A34273] +10:24:07 ============================================================================ +10:24:07 + + +waiting on router queue for slot.... +10:24:07 Sending to : +10:24:07 ============================================================================ +10:24:07 Sending to : +10:24:07 ============================================================================ +10:24:08 ============================================================================ +10:24:08 Slot Id : <113> +10:24:08 Transaction Type : REQUEST +10:24:08 Received From : +10:24:08 ============================================================================ +10:24:08 FNo. Len. Field Value +10:24:08 ============================================================================ +10:24:08 [ 1] [ 4] [0200] +10:24:08 [ 2] [ 16] [6688990040050799] +10:24:08 [ 3] [ 6] [011000] +10:24:08 [ 4] [ 12] [000020000000] +10:24:08 [ 7] [ 10] [0320102403] +10:24:08 [ 11] [ 6] [713412] +10:24:08 [ 12] [ 6] [102403] +10:24:08 [ 13] [ 4] [0320] +10:24:08 [ 15] [ 4] [0320] +10:24:08 [ 18] [ 4] [6011] +10:24:08 [ 22] [ 3] [900] +10:24:08 [ 25] [ 2] [02] +10:24:08 [ 28] [ 9] [D00002000] +10:24:08 [ 32] [ 6] [621354] +10:24:08 [ 35] [ 37] [6688990040050799=97121261716905300000] +10:24:08 [ 37] [ 12] [507903611999] +10:24:08 [ 41] [ 8] [16001400] +10:24:08 [ 42] [ 15] [NATIVE ] +10:24:08 [ 43] [ 40] [NOUL Xaythany LAO] +10:24:08 [ 49] [ 3] [418] +10:24:08 [ 52] [ 16] [DDF1A25B02A34273] +10:24:08 ============================================================================ +10:24:08 + + +waiting on router queue for slot.... +10:24:08 Sending to : +10:24:08 ============================================================================ +10:24:08 ============================================================================ +10:24:08 Slot Id : <113> +10:24:08 Transaction Type : REQUEST +10:24:08 Received From : +10:24:08 ============================================================================ +10:24:08 FNo. Len. Field Value +10:24:08 ============================================================================ +10:24:08 [ 1] [ 4] [0200] +10:24:08 [ 2] [ 16] [6688990040050799] +10:24:08 [ 3] [ 6] [011000] +10:24:08 [ 4] [ 12] [000020000000] +10:24:08 [ 7] [ 10] [0320102403] +10:24:08 [ 11] [ 6] [713412] +10:24:08 [ 12] [ 6] [102403] +10:24:08 [ 13] [ 4] [0320] +10:24:08 [ 15] [ 4] [0320] +10:24:08 [ 18] [ 4] [6011] +10:24:08 [ 22] [ 3] [900] +10:24:08 [ 25] [ 2] [02] +10:24:08 [ 28] [ 9] [D00002000] +10:24:08 [ 32] [ 6] [621354] +10:24:08 [ 35] [ 37] [6688990040050799=97121261716905300000] +10:24:08 [ 37] [ 12] [507903611999] +10:24:08 [ 41] [ 8] [16001400] +10:24:08 [ 42] [ 15] [NATIVE ] +10:24:08 [ 43] [ 40] [NOUL Xaythany LAO] +10:24:08 [ 49] [ 3] [418] +10:24:08 [ 52] [ 16] [A16067F6C2B86A7F] +10:24:08 ============================================================================ +10:24:08 + + +waiting on router queue for slot.... +10:24:08 Sending to : <4> +10:24:08 ============================================================================ +10:24:09 ============================================================================ +10:24:09 Slot Id : <113> +10:24:09 Transaction Type : RESPONSE +10:24:09 Received From : +10:24:09 ============================================================================ +10:24:09 FNo. Len. Field Value +10:24:09 ============================================================================ +10:24:09 [ 1] [ 4] [0210] +10:24:09 [ 2] [ 16] [6688990040050799] +10:24:09 [ 3] [ 6] [011000] +10:24:09 [ 4] [ 12] [000020000000] +10:24:09 [ 11] [ 6] [713412] +10:24:09 [ 12] [ 6] [102403] +10:24:09 [ 15] [ 4] [0320] +10:24:09 [ 18] [ 4] [6011] +10:24:09 [ 32] [ 6] [621354] +10:24:09 [ 35] [ 37] [6688990040050799=97121261716905300000] +10:24:09 [ 37] [ 12] [507903611999] +10:24:09 [ 38] [ 6] [247902] +10:24:09 [ 39] [ 2] [00] +10:24:09 [ 41] [ 8] [16001400] +10:24:09 [ 49] [ 3] [418] +10:24:09 [ 54] [ 20] [1002418C000035139350] +10:24:09 ============================================================================ +10:24:09 Sending to : +10:24:09 ============================================================================ +10:24:09 + + +waiting on router queue for slot.... +10:24:11 ============================================================================ +10:24:11 Slot Id : <113> +10:24:11 Transaction Type : RESPONSE +10:24:11 Received From : +10:24:11 ============================================================================ +10:24:11 FNo. Len. Field Value +10:24:11 ============================================================================ +10:24:11 [ 1] [ 4] [0210] +10:24:11 [ 2] [ 16] [6688990040050799] +10:24:11 [ 3] [ 6] [011000] +10:24:11 [ 4] [ 12] [000020000000] +10:24:11 [ 11] [ 6] [713412] +10:24:11 [ 12] [ 6] [102403] +10:24:11 [ 15] [ 4] [0320] +10:24:11 [ 18] [ 4] [6011] +10:24:11 [ 32] [ 6] [621354] +10:24:11 [ 35] [ 37] [6688990040050799=97121261716905300000] +10:24:11 [ 37] [ 12] [507903611999] +10:24:11 [ 38] [ 6] [247902] +10:24:11 [ 39] [ 2] [00] +10:24:11 [ 41] [ 8] [16001400] +10:24:11 [ 49] [ 3] [418] +10:24:11 [ 54] [ 20] [1002418C000035139350] +10:24:11 ============================================================================ +10:24:11 Calculate Source COMM Id = 0 +10:24:11 ============================================================================ +10:24:11 + + +waiting on router queue for slot.... +10:24:11 ============================================================================ +10:24:11 Slot Id : <108> +10:24:11 Transaction Type : REQUEST +10:24:11 Received From : +10:24:11 ============================================================================ +10:24:11 FNo. Len. Field Value +10:24:11 ============================================================================ +10:24:11 [ 1] [ 4] [0800] +10:24:11 [ 7] [ 10] [0320032319] +10:24:11 [ 11] [ 6] [155840] +10:24:11 [ 70] [ 3] [301] +10:24:11 ============================================================================ +10:24:11 + + +waiting on router queue for slot.... +10:24:11 Sending to : +10:24:11 ============================================================================ +10:24:11 ============================================================================ +10:24:11 Slot Id : <108> +10:24:11 Transaction Type : RESPONSE +10:24:11 Received From : +10:24:11 ============================================================================ +10:24:11 FNo. Len. Field Value +10:24:11 ============================================================================ +10:24:11 [ 1] [ 4] [0810] +10:24:11 [ 7] [ 10] [0320032319] +10:24:11 [ 11] [ 6] [155840] +10:24:11 [ 39] [ 2] [00] +10:24:11 [ 70] [ 3] [301] +10:24:11 ============================================================================ +10:24:11 Calculate Source COMM Id = 2 +10:24:11 ============================================================================ +10:24:11 + + +waiting on router queue for slot.... +10:24:26 ============================================================================ +10:24:26 Slot Id : <94> +10:24:26 Transaction Type : REQUEST +10:24:26 Received From : +10:24:26 ============================================================================ +10:24:26 FNo. Len. Field Value +10:24:26 ============================================================================ +10:24:26 [ 1] [ 4] [0800] +10:24:26 [ 7] [ 10] [0320032334] +10:24:26 [ 11] [ 6] [155841] +10:24:26 [ 70] [ 3] [301] +10:24:26 ============================================================================ +10:24:26 + + +waiting on router queue for slot.... +10:24:26 Sending to : +10:24:26 ============================================================================ +10:24:26 ============================================================================ +10:24:26 Slot Id : <94> +10:24:26 Transaction Type : RESPONSE +10:24:26 Received From : +10:24:26 ============================================================================ +10:24:26 FNo. Len. Field Value +10:24:26 ============================================================================ +10:24:26 [ 1] [ 4] [0810] +10:24:26 [ 7] [ 10] [0320032334] +10:24:26 [ 11] [ 6] [155841] +10:24:26 [ 39] [ 2] [00] +10:24:26 [ 70] [ 3] [301] +10:24:26 ============================================================================ +10:24:26 Calculate Source COMM Id = 2 +10:24:26 ============================================================================ +10:24:26 + + +waiting on router queue for slot.... +10:24:38 ============================================================================ +10:24:38 Slot Id : <127> +10:24:38 Transaction Type : REQUEST +10:24:38 Received From : +10:24:38 ============================================================================ +10:24:38 FNo. Len. Field Value +10:24:38 ============================================================================ +10:24:38 [ 1] [ 4] [0800] +10:24:38 [ 7] [ 10] [0320032346] +10:24:38 [ 11] [ 6] [155842] +10:24:38 [ 70] [ 3] [301] +10:24:38 ============================================================================ +10:24:38 + + +waiting on router queue for slot.... +10:24:38 Sending to : +10:24:38 ============================================================================ +10:24:38 ============================================================================ +10:24:38 Slot Id : <127> +10:24:38 Transaction Type : RESPONSE +10:24:38 Received From : +10:24:38 ============================================================================ +10:24:38 FNo. Len. Field Value +10:24:38 ============================================================================ +10:24:38 [ 1] [ 4] [0810] +10:24:38 [ 7] [ 10] [0320032346] +10:24:38 [ 11] [ 6] [155842] +10:24:38 [ 39] [ 2] [00] +10:24:38 [ 70] [ 3] [301] +10:24:38 ============================================================================ +10:24:38 Calculate Source COMM Id = 2 +10:24:38 ============================================================================ +10:24:38 + + +waiting on router queue for slot.... +10:24:39 ============================================================================ +10:24:39 Slot Id : <95> +10:24:39 Transaction Type : REQUEST +10:24:39 Received From : +10:24:39 ============================================================================ +10:24:39 FNo. Len. Field Value +10:24:39 ============================================================================ +10:24:39 [ 1] [ 4] [0200] +10:24:39 [ 2] [ 16] [6688990105451502] +10:24:39 [ 3] [ 6] [012000] +10:24:39 [ 4] [ 12] [000050000000] +10:24:39 [ 7] [ 10] [0320102435] +10:24:39 [ 11] [ 6] [713549] +10:24:39 [ 12] [ 6] [102435] +10:24:39 [ 13] [ 4] [0320] +10:24:39 [ 15] [ 4] [0320] +10:24:39 [ 18] [ 4] [6011] +10:24:39 [ 22] [ 3] [900] +10:24:39 [ 25] [ 2] [02] +10:24:39 [ 28] [ 9] [D00002000] +10:24:39 [ 32] [ 6] [621354] +10:24:39 [ 35] [ 37] [6688990105451502=43091231150258500000] +10:24:39 [ 37] [ 12] [507904965569] +10:24:39 [ 41] [ 8] [15001100] +10:24:39 [ 42] [ 15] [NATIVE ] +10:24:39 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +10:24:39 [ 49] [ 3] [418] +10:24:39 [ 52] [ 16] [004720BF84894F3B] +10:24:39 ============================================================================ +10:24:39 + + +waiting on router queue for slot.... +10:24:39 Sending to : +10:24:39 ============================================================================ +10:24:39 Sending to : +10:24:39 ============================================================================ +10:24:39 ============================================================================ +10:24:39 Slot Id : <95> +10:24:39 Transaction Type : REQUEST +10:24:39 Received From : +10:24:39 ============================================================================ +10:24:39 FNo. Len. Field Value +10:24:39 ============================================================================ +10:24:39 [ 1] [ 4] [0200] +10:24:39 [ 2] [ 16] [6688990105451502] +10:24:39 [ 3] [ 6] [012000] +10:24:39 [ 4] [ 12] [000050000000] +10:24:39 [ 7] [ 10] [0320102435] +10:24:39 [ 11] [ 6] [713549] +10:24:39 [ 12] [ 6] [102435] +10:24:39 [ 13] [ 4] [0320] +10:24:39 [ 15] [ 4] [0320] +10:24:39 [ 18] [ 4] [6011] +10:24:39 [ 22] [ 3] [900] +10:24:39 [ 25] [ 2] [02] +10:24:39 [ 28] [ 9] [D00002000] +10:24:39 [ 32] [ 6] [621354] +10:24:39 [ 35] [ 37] [6688990105451502=43091231150258500000] +10:24:39 [ 37] [ 12] [507904965569] +10:24:39 [ 41] [ 8] [15001100] +10:24:39 [ 42] [ 15] [NATIVE ] +10:24:39 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +10:24:39 [ 49] [ 3] [418] +10:24:39 [ 52] [ 16] [004720BF84894F3B] +10:24:39 ============================================================================ +10:24:39 + + +waiting on router queue for slot.... +10:24:39 Sending to : +10:24:39 ============================================================================ +10:24:39 ============================================================================ +10:24:39 Slot Id : <95> +10:24:39 Transaction Type : REQUEST +10:24:39 Received From : +10:24:39 ============================================================================ +10:24:39 FNo. Len. Field Value +10:24:39 ============================================================================ +10:24:39 [ 1] [ 4] [0200] +10:24:39 [ 2] [ 16] [6688990105451502] +10:24:39 [ 3] [ 6] [012000] +10:24:39 [ 4] [ 12] [000050000000] +10:24:39 [ 7] [ 10] [0320102435] +10:24:39 [ 11] [ 6] [713549] +10:24:39 [ 12] [ 6] [102435] +10:24:39 [ 13] [ 4] [0320] +10:24:39 [ 15] [ 4] [0320] +10:24:39 [ 18] [ 4] [6011] +10:24:39 [ 22] [ 3] [900] +10:24:39 [ 25] [ 2] [02] +10:24:39 [ 28] [ 9] [D00002000] +10:24:39 [ 32] [ 6] [621354] +10:24:39 [ 35] [ 37] [6688990105451502=43091231150258500000] +10:24:39 [ 37] [ 12] [507904965569] +10:24:39 [ 41] [ 8] [15001100] +10:24:39 [ 42] [ 15] [NATIVE ] +10:24:39 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +10:24:39 [ 49] [ 3] [418] +10:24:39 [ 52] [ 16] [5352F808282080D3] +10:24:39 ============================================================================ +10:24:39 + + +waiting on router queue for slot.... +10:24:39 Sending to : <4> +10:24:39 ============================================================================ +10:24:41 ============================================================================ +10:24:41 Slot Id : <95> +10:24:41 Transaction Type : RESPONSE +10:24:41 Received From : +10:24:41 ============================================================================ +10:24:41 FNo. Len. Field Value +10:24:41 ============================================================================ +10:24:41 [ 1] [ 4] [0210] +10:24:41 [ 2] [ 16] [6688990105451502] +10:24:41 [ 3] [ 6] [012000] +10:24:41 [ 4] [ 12] [000050000000] +10:24:41 [ 11] [ 6] [713549] +10:24:41 [ 12] [ 6] [102435] +10:24:41 [ 15] [ 4] [0320] +10:24:41 [ 18] [ 4] [6011] +10:24:41 [ 32] [ 6] [621354] +10:24:41 [ 35] [ 37] [6688990105451502=43091231150258500000] +10:24:41 [ 37] [ 12] [507904965569] +10:24:41 [ 38] [ 6] [587370] +10:24:41 [ 39] [ 2] [00] +10:24:41 [ 41] [ 8] [15001100] +10:24:41 [ 49] [ 3] [418] +10:24:41 [ 54] [ 20] [2002418C000534076791] +10:24:41 ============================================================================ +10:24:41 Sending to : +10:24:41 ============================================================================ +10:24:41 + + +waiting on router queue for slot.... +10:24:43 ============================================================================ +10:24:43 Slot Id : <95> +10:24:43 Transaction Type : RESPONSE +10:24:43 Received From : +10:24:43 ============================================================================ +10:24:43 FNo. Len. Field Value +10:24:43 ============================================================================ +10:24:43 [ 1] [ 4] [0210] +10:24:43 [ 2] [ 16] [6688990105451502] +10:24:43 [ 3] [ 6] [012000] +10:24:43 [ 4] [ 12] [000050000000] +10:24:43 [ 11] [ 6] [713549] +10:24:43 [ 12] [ 6] [102435] +10:24:43 [ 15] [ 4] [0320] +10:24:43 [ 18] [ 4] [6011] +10:24:43 [ 32] [ 6] [621354] +10:24:43 [ 35] [ 37] [6688990105451502=43091231150258500000] +10:24:43 [ 37] [ 12] [507904965569] +10:24:43 [ 38] [ 6] [587370] +10:24:43 [ 39] [ 2] [00] +10:24:43 [ 41] [ 8] [15001100] +10:24:43 [ 49] [ 3] [418] +10:24:43 [ 54] [ 20] [2002418C000534076791] +10:24:43 ============================================================================ +10:24:43 Calculate Source COMM Id = 0 +10:24:43 ============================================================================ +10:24:43 + + +waiting on router queue for slot.... +10:24:45 ============================================================================ +10:24:45 Slot Id : <75> +10:24:45 Transaction Type : REQUEST +10:24:45 Received From : +10:24:45 ============================================================================ +10:24:45 FNo. Len. Field Value +10:24:45 ============================================================================ +10:24:45 [ 1] [ 4] [0800] +10:24:45 [ 2] [ 5] [02531] +10:24:45 [ 3] [ 6] [579108] +10:24:45 [ 7] [ 10] [0320032445] +10:24:45 [ 11] [ 6] [807016] +10:24:45 [ 15] [ 10] [0320032445] +10:24:45 [ 37] [ 11] [57910807016] +10:24:45 [ 70] [ 3] [001] +10:24:45 ============================================================================ +10:24:45 + + +waiting on router queue for slot.... +10:24:45 ============================================================================ +10:24:45 Slot Id : <75> +10:24:45 Transaction Type : RESPONSE +10:24:45 Received From : +10:24:45 ============================================================================ +10:24:45 FNo. Len. Field Value +10:24:45 ============================================================================ +10:24:45 [ 1] [ 4] [0810] +10:24:45 [ 7] [ 10] [0320032445] +10:24:45 [ 11] [ 6] [807016] +10:24:45 [ 15] [ 4] [0320] +10:24:45 [ 37] [ 12] [57910807016] +10:24:45 [ 39] [ 2] [00] +10:24:45 [ 70] [ 3] [001] +10:24:45 ============================================================================ +10:24:45 Sending to : +10:24:45 ============================================================================ +10:24:45 + + +waiting on router queue for slot.... +10:24:49 ============================================================================ +10:24:49 Slot Id : <125> +10:24:49 Transaction Type : REQUEST +10:24:49 Received From : +10:24:49 ============================================================================ +10:24:49 FNo. Len. Field Value +10:24:49 ============================================================================ +10:24:49 [ 1] [ 4] [0800] +10:24:49 [ 7] [ 10] [0320032357] +10:24:49 [ 11] [ 6] [155843] +10:24:49 [ 70] [ 3] [301] +10:24:49 ============================================================================ +10:24:49 + + +waiting on router queue for slot.... +10:24:49 Sending to : +10:24:49 ============================================================================ +10:24:49 ============================================================================ +10:24:49 Slot Id : <125> +10:24:49 Transaction Type : RESPONSE +10:24:49 Received From : +10:24:49 ============================================================================ +10:24:49 FNo. Len. Field Value +10:24:49 ============================================================================ +10:24:49 [ 1] [ 4] [0810] +10:24:49 [ 7] [ 10] [0320032357] +10:24:49 [ 11] [ 6] [155843] +10:24:49 [ 39] [ 2] [00] +10:24:49 [ 70] [ 3] [301] +10:24:49 ============================================================================ +10:24:49 Calculate Source COMM Id = 2 +10:24:49 ============================================================================ +10:24:49 + + +waiting on router queue for slot.... +10:24:54 ============================================================================ +10:24:54 Slot Id : <53> +10:24:54 Transaction Type : REQUEST +10:24:54 Received From : +10:24:54 ============================================================================ +10:24:54 FNo. Len. Field Value +10:24:54 ============================================================================ +10:24:54 [ 1] [ 4] [0800] +10:24:54 [ 7] [ 10] [0320033242] +10:24:54 [ 11] [ 6] [042810] +10:24:54 [ 37] [ 12] [57910042810] +10:24:54 [ 70] [ 3] [301] +10:24:54 ============================================================================ +10:24:54 + + +waiting on router queue for slot.... +10:24:54 Sending to : +10:24:54 ============================================================================ +10:24:54 ============================================================================ +10:24:54 Slot Id : <53> +10:24:54 Transaction Type : RESPONSE +10:24:54 Received From : +10:24:54 ============================================================================ +10:24:54 FNo. Len. Field Value +10:24:54 ============================================================================ +10:24:54 [ 1] [ 4] [0810] +10:24:54 [ 7] [ 10] [0320033242] +10:24:54 [ 11] [ 6] [042810] +10:24:54 [ 37] [ 12] [579100428100] +10:24:54 [ 39] [ 2] [00] +10:24:54 [ 70] [ 3] [810] +10:24:54 ============================================================================ +10:24:54 Calculate Source COMM Id = 1 +10:24:54 ============================================================================ +10:24:54 + + +waiting on router queue for slot.... +10:25:04 ============================================================================ +10:25:04 Slot Id : <98> +10:25:04 Transaction Type : REQUEST +10:25:04 Received From : +10:25:04 ============================================================================ +10:25:04 FNo. Len. Field Value +10:25:04 ============================================================================ +10:25:04 [ 1] [ 4] [0800] +10:25:04 [ 7] [ 10] [0320032412] +10:25:04 [ 11] [ 6] [155844] +10:25:04 [ 70] [ 3] [301] +10:25:04 ============================================================================ +10:25:04 + + +waiting on router queue for slot.... +10:25:04 Sending to : +10:25:04 ============================================================================ +10:25:04 ============================================================================ +10:25:04 Slot Id : <98> +10:25:04 Transaction Type : RESPONSE +10:25:04 Received From : +10:25:04 ============================================================================ +10:25:04 FNo. Len. Field Value +10:25:04 ============================================================================ +10:25:04 [ 1] [ 4] [0810] +10:25:04 [ 7] [ 10] [0320032412] +10:25:04 [ 11] [ 6] [155844] +10:25:04 [ 39] [ 2] [00] +10:25:04 [ 70] [ 3] [301] +10:25:04 ============================================================================ +10:25:04 Calculate Source COMM Id = 2 +10:25:04 ============================================================================ +10:25:04 + + +waiting on router queue for slot.... +10:25:07 ============================================================================ +10:25:07 Slot Id : <134> +10:25:07 Transaction Type : REQUEST +10:25:07 Received From : +10:25:07 ============================================================================ +10:25:07 FNo. Len. Field Value +10:25:07 ============================================================================ +10:25:07 [ 1] [ 4] [0200] +10:25:07 [ 2] [ 16] [6213548000054351] +10:25:07 [ 3] [ 6] [010000] +10:25:07 [ 4] [ 12] [000100000000] +10:25:07 [ 7] [ 10] [0320102259] +10:25:07 [ 11] [ 6] [938517] +10:25:07 [ 12] [ 6] [102259] +10:25:07 [ 13] [ 4] [0320] +10:25:07 [ 15] [ 4] [0320] +10:25:07 [ 18] [ 4] [6011] +10:25:07 [ 19] [ 3] [418] +10:25:07 [ 22] [ 3] [021] +10:25:07 [ 25] [ 2] [01] +10:25:07 [ 28] [ 9] [D00002000] +10:25:07 [ 32] [ 6] [668899] +10:25:07 [ 35] [ 32] [6213548000054351=130712015435856] +10:25:07 [ 37] [ 12] [507900835729] +10:25:07 [ 41] [ 8] [03015002] +10:25:07 [ 42] [ 15] [APT ] +10:25:07 [ 43] [ 40] [ TRADING CENTRE MARKET PAK] +10:25:07 [ 49] [ 3] [418] +10:25:07 [ 52] [ 16] [B919C02A335C396A] +10:25:07 ============================================================================ +10:25:07 + + +waiting on router queue for slot.... +10:25:07 Sending to : +10:25:07 ============================================================================ +10:25:07 Sending to : +10:25:07 ============================================================================ +10:25:08 ============================================================================ +10:25:08 Slot Id : <134> +10:25:08 Transaction Type : REQUEST +10:25:08 Received From : +10:25:08 ============================================================================ +10:25:08 FNo. Len. Field Value +10:25:08 ============================================================================ +10:25:08 [ 1] [ 4] [0200] +10:25:08 [ 2] [ 16] [6213548000054351] +10:25:08 [ 3] [ 6] [010000] +10:25:08 [ 4] [ 12] [000100000000] +10:25:08 [ 7] [ 10] [0320102259] +10:25:08 [ 11] [ 6] [938517] +10:25:08 [ 12] [ 6] [102259] +10:25:08 [ 13] [ 4] [0320] +10:25:08 [ 15] [ 4] [0320] +10:25:08 [ 18] [ 4] [6011] +10:25:08 [ 19] [ 3] [418] +10:25:08 [ 22] [ 3] [021] +10:25:08 [ 25] [ 2] [01] +10:25:08 [ 28] [ 9] [D00002000] +10:25:08 [ 32] [ 6] [668899] +10:25:08 [ 35] [ 32] [6213548000054351=130712015435856] +10:25:08 [ 37] [ 12] [507900835729] +10:25:08 [ 41] [ 8] [03015002] +10:25:08 [ 42] [ 15] [APT ] +10:25:08 [ 43] [ 40] [ TRADING CENTRE MARKET PAK] +10:25:08 [ 49] [ 3] [418] +10:25:08 [ 52] [ 16] [B919C02A335C396A] +10:25:08 ============================================================================ +10:25:08 + + +waiting on router queue for slot.... +10:25:08 Sending to : +10:25:08 ============================================================================ +10:25:08 ============================================================================ +10:25:08 Slot Id : <134> +10:25:08 Transaction Type : REQUEST +10:25:08 Received From : +10:25:08 ============================================================================ +10:25:08 FNo. Len. Field Value +10:25:08 ============================================================================ +10:25:08 [ 1] [ 4] [0200] +10:25:08 [ 2] [ 16] [6213548000054351] +10:25:08 [ 3] [ 6] [010000] +10:25:08 [ 4] [ 12] [000100000000] +10:25:08 [ 7] [ 10] [0320102259] +10:25:08 [ 11] [ 6] [938517] +10:25:08 [ 12] [ 6] [102259] +10:25:08 [ 13] [ 4] [0320] +10:25:08 [ 15] [ 4] [0320] +10:25:08 [ 18] [ 4] [6011] +10:25:08 [ 19] [ 3] [418] +10:25:08 [ 22] [ 3] [021] +10:25:08 [ 25] [ 2] [01] +10:25:08 [ 28] [ 9] [D00002000] +10:25:08 [ 32] [ 6] [668899] +10:25:08 [ 35] [ 32] [6213548000054351=130712015435856] +10:25:08 [ 37] [ 12] [507900835729] +10:25:08 [ 41] [ 8] [03015002] +10:25:08 [ 42] [ 15] [APT ] +10:25:08 [ 43] [ 40] [ TRADING CENTRE MARKET PAK] +10:25:08 [ 49] [ 3] [418] +10:25:08 [ 52] [ 16] [3737321B8452ECEE] +10:25:08 ============================================================================ +10:25:08 + + +waiting on router queue for slot.... +10:25:08 Sending to : <0> +10:25:08 ============================================================================ +10:25:08 ============================================================================ +10:25:08 Slot Id : <134> +10:25:08 Transaction Type : RESPONSE +10:25:08 Received From : +10:25:08 ============================================================================ +10:25:08 FNo. Len. Field Value +10:25:08 ============================================================================ +10:25:08 [ 1] [ 4] [0210] +10:25:08 [ 2] [ 16] [6213548000054351] +10:25:08 [ 3] [ 6] [010000] +10:25:08 [ 4] [ 12] [000100000000] +10:25:08 [ 7] [ 10] [0320102259] +10:25:08 [ 11] [ 6] [938517] +10:25:08 [ 12] [ 6] [102259] +10:25:08 [ 13] [ 4] [0320] +10:25:08 [ 15] [ 4] [0320] +10:25:08 [ 18] [ 4] [6011] +10:25:08 [ 19] [ 3] [418] +10:25:08 [ 32] [ 6] [668899] +10:25:08 [ 35] [ 32] [6213548000054351=130712015435856] +10:25:08 [ 37] [ 12] [507900835729] +10:25:08 [ 38] [ 6] [253447] +10:25:08 [ 39] [ 2] [00] +10:25:08 [ 41] [ 8] [03015002] +10:25:08 [ 49] [ 3] [418] +10:25:08 [ 54] [ 40] [0001418C0002099750890002418C000209975089] +10:25:08 ============================================================================ +10:25:08 Sending to : +10:25:08 ============================================================================ +10:25:08 + + +waiting on router queue for slot.... +10:25:10 ============================================================================ +10:25:10 Slot Id : <134> +10:25:10 Transaction Type : RESPONSE +10:25:10 Received From : +10:25:10 ============================================================================ +10:25:10 FNo. Len. Field Value +10:25:10 ============================================================================ +10:25:10 [ 1] [ 4] [0210] +10:25:10 [ 2] [ 16] [6213548000054351] +10:25:10 [ 3] [ 6] [010000] +10:25:10 [ 4] [ 12] [000100000000] +10:25:10 [ 7] [ 10] [0320102259] +10:25:10 [ 11] [ 6] [938517] +10:25:10 [ 12] [ 6] [102259] +10:25:10 [ 13] [ 4] [0320] +10:25:10 [ 15] [ 4] [0320] +10:25:10 [ 18] [ 4] [6011] +10:25:10 [ 19] [ 3] [418] +10:25:10 [ 32] [ 6] [668899] +10:25:10 [ 35] [ 32] [6213548000054351=130712015435856] +10:25:10 [ 37] [ 12] [507900835729] +10:25:10 [ 38] [ 6] [253447] +10:25:10 [ 39] [ 2] [00] +10:25:10 [ 41] [ 8] [03015002] +10:25:10 [ 49] [ 3] [418] +10:25:10 [ 54] [ 40] [0001418C0002099750890002418C000209975089] +10:25:10 ============================================================================ +10:25:10 Calculate Source COMM Id = 4 +10:25:10 ============================================================================ +10:25:10 + + +waiting on router queue for slot.... +10:25:15 ============================================================================ +10:25:15 Slot Id : <103> +10:25:15 Transaction Type : REQUEST +10:25:15 Received From : +10:25:15 ============================================================================ +10:25:15 FNo. Len. Field Value +10:25:15 ============================================================================ +10:25:15 [ 1] [ 4] [0800] +10:25:15 [ 7] [ 10] [0320032423] +10:25:15 [ 11] [ 6] [155845] +10:25:15 [ 70] [ 3] [301] +10:25:15 ============================================================================ +10:25:15 + + +waiting on router queue for slot.... +10:25:15 Sending to : +10:25:15 ============================================================================ +10:25:15 ============================================================================ +10:25:15 Slot Id : <103> +10:25:15 Transaction Type : RESPONSE +10:25:15 Received From : +10:25:15 ============================================================================ +10:25:15 FNo. Len. Field Value +10:25:15 ============================================================================ +10:25:15 [ 1] [ 4] [0810] +10:25:15 [ 7] [ 10] [0320032423] +10:25:15 [ 11] [ 6] [155845] +10:25:15 [ 39] [ 2] [00] +10:25:15 [ 70] [ 3] [301] +10:25:15 ============================================================================ +10:25:15 Calculate Source COMM Id = 2 +10:25:15 ============================================================================ +10:25:15 + + +waiting on router queue for slot.... +10:25:25 ============================================================================ +10:25:25 Slot Id : <96> +10:25:25 Transaction Type : REQUEST +10:25:25 Received From : +10:25:25 ============================================================================ +10:25:25 FNo. Len. Field Value +10:25:25 ============================================================================ +10:25:25 [ 1] [ 4] [0200] +10:25:25 [ 2] [ 16] [6213545000138333] +10:25:25 [ 3] [ 6] [010000] +10:25:25 [ 4] [ 12] [000100000000] +10:25:25 [ 7] [ 10] [0320103313] +10:25:25 [ 11] [ 6] [085591] +10:25:25 [ 12] [ 6] [103313] +10:25:25 [ 13] [ 4] [0320] +10:25:25 [ 14] [ 4] [4912] +10:25:25 [ 15] [ 4] [0320] +10:25:25 [ 18] [ 4] [6011] +10:25:25 [ 22] [ 3] [900] +10:25:25 [ 25] [ 2] [02] +10:25:25 [ 28] [ 9] [D00002000] +10:25:25 [ 32] [ 6] [220699] +10:25:25 [ 35] [ 32] [6213545000138333=491212013833446] +10:25:25 [ 37] [ 12] [507900140209] +10:25:25 [ 41] [ 8] [03000200] +10:25:25 [ 42] [ 15] [APTRA ] +10:25:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:25:25 [ 49] [ 3] [418] +10:25:25 [ 52] [ 16] [686B7956019A472E] +10:25:25 ============================================================================ +10:25:25 + + +waiting on router queue for slot.... +10:25:25 Sending to : +10:25:25 ============================================================================ +10:25:26 Sending to : +10:25:26 ============================================================================ +10:25:26 ============================================================================ +10:25:26 Slot Id : <96> +10:25:26 Transaction Type : REQUEST +10:25:26 Received From : +10:25:26 ============================================================================ +10:25:26 FNo. Len. Field Value +10:25:26 ============================================================================ +10:25:26 [ 1] [ 4] [0200] +10:25:26 [ 2] [ 16] [6213545000138333] +10:25:26 [ 3] [ 6] [010000] +10:25:26 [ 4] [ 12] [000100000000] +10:25:26 [ 7] [ 10] [0320103313] +10:25:26 [ 11] [ 6] [085591] +10:25:26 [ 12] [ 6] [103313] +10:25:26 [ 13] [ 4] [0320] +10:25:26 [ 14] [ 4] [4912] +10:25:26 [ 15] [ 4] [0320] +10:25:26 [ 18] [ 4] [6011] +10:25:26 [ 22] [ 3] [900] +10:25:26 [ 25] [ 2] [02] +10:25:26 [ 28] [ 9] [D00002000] +10:25:26 [ 32] [ 6] [220699] +10:25:26 [ 35] [ 32] [6213545000138333=491212013833446] +10:25:26 [ 37] [ 12] [507900140209] +10:25:26 [ 41] [ 8] [03000200] +10:25:26 [ 42] [ 15] [APTRA ] +10:25:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:25:26 [ 49] [ 3] [418] +10:25:26 [ 52] [ 16] [686B7956019A472E] +10:25:26 ============================================================================ +10:25:26 + + +waiting on router queue for slot.... +10:25:26 Sending to : +10:25:26 ============================================================================ +10:25:26 ============================================================================ +10:25:26 Slot Id : <96> +10:25:26 Transaction Type : REQUEST +10:25:26 Received From : +10:25:26 ============================================================================ +10:25:26 FNo. Len. Field Value +10:25:26 ============================================================================ +10:25:26 [ 1] [ 4] [0200] +10:25:26 [ 2] [ 16] [6213545000138333] +10:25:26 [ 3] [ 6] [010000] +10:25:26 [ 4] [ 12] [000100000000] +10:25:26 [ 7] [ 10] [0320103313] +10:25:26 [ 11] [ 6] [085591] +10:25:26 [ 12] [ 6] [103313] +10:25:26 [ 13] [ 4] [0320] +10:25:26 [ 14] [ 4] [4912] +10:25:26 [ 15] [ 4] [0320] +10:25:26 [ 18] [ 4] [6011] +10:25:26 [ 22] [ 3] [900] +10:25:26 [ 25] [ 2] [02] +10:25:26 [ 28] [ 9] [D00002000] +10:25:26 [ 32] [ 6] [220699] +10:25:26 [ 35] [ 32] [6213545000138333=491212013833446] +10:25:26 [ 37] [ 12] [507900140209] +10:25:26 [ 41] [ 8] [03000200] +10:25:26 [ 42] [ 15] [APTRA ] +10:25:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:25:26 [ 49] [ 3] [418] +10:25:26 [ 52] [ 16] [F7F4465E63175779] +10:25:26 ============================================================================ +10:25:26 + + +waiting on router queue for slot.... +10:25:26 Sending to : <0> +10:25:26 ============================================================================ +10:25:26 ============================================================================ +10:25:26 Slot Id : <71> +10:25:26 Transaction Type : REQUEST +10:25:26 Received From : +10:25:26 ============================================================================ +10:25:26 FNo. Len. Field Value +10:25:26 ============================================================================ +10:25:26 [ 1] [ 4] [0800] +10:25:26 [ 7] [ 10] [0320032434] +10:25:26 [ 11] [ 6] [155846] +10:25:26 [ 70] [ 3] [301] +10:25:26 ============================================================================ +10:25:26 + + +waiting on router queue for slot.... +10:25:26 Sending to : +10:25:26 ============================================================================ +10:25:26 ============================================================================ +10:25:26 Slot Id : <71> +10:25:26 Transaction Type : RESPONSE +10:25:26 Received From : +10:25:26 ============================================================================ +10:25:26 FNo. Len. Field Value +10:25:26 ============================================================================ +10:25:26 [ 1] [ 4] [0810] +10:25:26 [ 7] [ 10] [0320032434] +10:25:26 [ 11] [ 6] [155846] +10:25:26 [ 39] [ 2] [00] +10:25:26 [ 70] [ 3] [301] +10:25:26 ============================================================================ +10:25:26 Calculate Source COMM Id = 2 +10:25:26 ============================================================================ +10:25:26 + + +waiting on router queue for slot.... +10:25:27 ============================================================================ +10:25:27 Slot Id : <96> +10:25:27 Transaction Type : RESPONSE +10:25:27 Received From : +10:25:27 ============================================================================ +10:25:27 FNo. Len. Field Value +10:25:27 ============================================================================ +10:25:27 [ 1] [ 4] [0210] +10:25:27 [ 2] [ 16] [6213545000138333] +10:25:27 [ 3] [ 6] [010000] +10:25:27 [ 4] [ 12] [000100000000] +10:25:27 [ 7] [ 10] [0320103313] +10:25:27 [ 11] [ 6] [085591] +10:25:27 [ 12] [ 6] [103313] +10:25:27 [ 13] [ 4] [0320] +10:25:27 [ 15] [ 4] [0320] +10:25:27 [ 18] [ 4] [6011] +10:25:27 [ 32] [ 6] [220699] +10:25:27 [ 35] [ 32] [6213545000138333=491212013833446] +10:25:27 [ 37] [ 12] [507900140209] +10:25:27 [ 38] [ 6] [365326] +10:25:27 [ 39] [ 2] [00] +10:25:27 [ 41] [ 8] [03000200] +10:25:27 [ 49] [ 3] [418] +10:25:27 [ 54] [ 40] [0001418C0000731342810002418C000073134281] +10:25:27 ============================================================================ +10:25:27 Sending to : +10:25:27 ============================================================================ +10:25:27 + + +waiting on router queue for slot.... +10:25:28 ============================================================================ +10:25:28 Slot Id : <96> +10:25:28 Transaction Type : RESPONSE +10:25:28 Received From : +10:25:28 ============================================================================ +10:25:28 FNo. Len. Field Value +10:25:28 ============================================================================ +10:25:28 [ 1] [ 4] [0210] +10:25:28 [ 2] [ 16] [6213545000138333] +10:25:28 [ 3] [ 6] [010000] +10:25:28 [ 4] [ 12] [000100000000] +10:25:28 [ 7] [ 10] [0320103313] +10:25:28 [ 11] [ 6] [085591] +10:25:28 [ 12] [ 6] [103313] +10:25:28 [ 13] [ 4] [0320] +10:25:28 [ 15] [ 4] [0320] +10:25:28 [ 18] [ 4] [6011] +10:25:28 [ 32] [ 6] [220699] +10:25:28 [ 35] [ 32] [6213545000138333=491212013833446] +10:25:28 [ 37] [ 12] [507900140209] +10:25:28 [ 38] [ 6] [365326] +10:25:28 [ 39] [ 2] [00] +10:25:28 [ 41] [ 8] [03000200] +10:25:28 [ 49] [ 3] [418] +10:25:28 [ 54] [ 40] [0001418C0000731342810002418C000073134281] +10:25:28 ============================================================================ +10:25:28 Calculate Source COMM Id = 1 +10:25:28 ============================================================================ +10:25:28 + + +waiting on router queue for slot.... +10:25:31 ============================================================================ +10:25:31 Slot Id : <101> +10:25:31 Transaction Type : REQUEST +10:25:31 Received From : +10:25:31 ============================================================================ +10:25:31 FNo. Len. Field Value +10:25:31 ============================================================================ +10:25:31 [ 1] [ 4] [0200] +10:25:31 [ 2] [ 16] [6688990107354506] +10:25:31 [ 3] [ 6] [300000] +10:25:31 [ 4] [ 12] [000000000000] +10:25:31 [ 7] [ 10] [0320102527] +10:25:31 [ 11] [ 6] [713769] +10:25:31 [ 12] [ 6] [102527] +10:25:31 [ 13] [ 4] [0320] +10:25:31 [ 15] [ 4] [0320] +10:25:31 [ 18] [ 4] [6011] +10:25:31 [ 22] [ 3] [900] +10:25:31 [ 25] [ 2] [02] +10:25:31 [ 28] [ 9] [D00000000] +10:25:31 [ 32] [ 6] [621354] +10:25:31 [ 35] [ 37] [6688990107354506=44021231450630200000] +10:25:31 [ 37] [ 12] [507905310643] +10:25:31 [ 41] [ 8] [08001200] +10:25:31 [ 42] [ 15] [NATIVE ] +10:25:31 [ 43] [ 40] [Attapeu Branch04 Attapeu LAO] +10:25:31 [ 49] [ 3] [418] +10:25:31 [ 52] [ 16] [6C74C9E2F318F435] +10:25:31 ============================================================================ +10:25:31 + + +waiting on router queue for slot.... +10:25:31 Sending to : +10:25:31 ============================================================================ +10:25:31 Sending to : +10:25:31 ============================================================================ +10:25:31 ============================================================================ +10:25:31 Slot Id : <101> +10:25:31 Transaction Type : REQUEST +10:25:31 Received From : +10:25:31 ============================================================================ +10:25:31 FNo. Len. Field Value +10:25:31 ============================================================================ +10:25:31 [ 1] [ 4] [0200] +10:25:31 [ 2] [ 16] [6688990107354506] +10:25:31 [ 3] [ 6] [300000] +10:25:31 [ 4] [ 12] [000000000000] +10:25:31 [ 7] [ 10] [0320102527] +10:25:31 [ 11] [ 6] [713769] +10:25:31 [ 12] [ 6] [102527] +10:25:31 [ 13] [ 4] [0320] +10:25:31 [ 15] [ 4] [0320] +10:25:31 [ 18] [ 4] [6011] +10:25:31 [ 22] [ 3] [900] +10:25:31 [ 25] [ 2] [02] +10:25:31 [ 28] [ 9] [D00000000] +10:25:31 [ 32] [ 6] [621354] +10:25:31 [ 35] [ 37] [6688990107354506=44021231450630200000] +10:25:31 [ 37] [ 12] [507905310643] +10:25:31 [ 41] [ 8] [08001200] +10:25:31 [ 42] [ 15] [NATIVE ] +10:25:31 [ 43] [ 40] [Attapeu Branch04 Attapeu LAO] +10:25:31 [ 49] [ 3] [418] +10:25:31 [ 52] [ 16] [6C74C9E2F318F435] +10:25:31 ============================================================================ +10:25:31 + + +waiting on router queue for slot.... +10:25:31 Sending to : +10:25:31 ============================================================================ +10:25:31 ============================================================================ +10:25:31 Slot Id : <101> +10:25:31 Transaction Type : REQUEST +10:25:31 Received From : +10:25:31 ============================================================================ +10:25:31 FNo. Len. Field Value +10:25:31 ============================================================================ +10:25:31 [ 1] [ 4] [0200] +10:25:31 [ 2] [ 16] [6688990107354506] +10:25:31 [ 3] [ 6] [300000] +10:25:31 [ 4] [ 12] [000000000000] +10:25:31 [ 7] [ 10] [0320102527] +10:25:31 [ 11] [ 6] [713769] +10:25:31 [ 12] [ 6] [102527] +10:25:31 [ 13] [ 4] [0320] +10:25:31 [ 15] [ 4] [0320] +10:25:31 [ 18] [ 4] [6011] +10:25:31 [ 22] [ 3] [900] +10:25:31 [ 25] [ 2] [02] +10:25:31 [ 28] [ 9] [D00000000] +10:25:31 [ 32] [ 6] [621354] +10:25:31 [ 35] [ 37] [6688990107354506=44021231450630200000] +10:25:31 [ 37] [ 12] [507905310643] +10:25:31 [ 41] [ 8] [08001200] +10:25:31 [ 42] [ 15] [NATIVE ] +10:25:31 [ 43] [ 40] [Attapeu Branch04 Attapeu LAO] +10:25:31 [ 49] [ 3] [418] +10:25:31 [ 52] [ 16] [3024528C4BD348E0] +10:25:31 ============================================================================ +10:25:31 + + +waiting on router queue for slot.... +10:25:31 Sending to : <4> +10:25:31 ============================================================================ +10:25:32 ============================================================================ +10:25:32 Slot Id : <101> +10:25:32 Transaction Type : RESPONSE +10:25:32 Received From : +10:25:32 ============================================================================ +10:25:32 FNo. Len. Field Value +10:25:32 ============================================================================ +10:25:32 [ 1] [ 4] [0210] +10:25:32 [ 2] [ 16] [6688990107354506] +10:25:32 [ 3] [ 6] [300000] +10:25:32 [ 4] [ 12] [000000000000] +10:25:32 [ 11] [ 6] [713769] +10:25:32 [ 12] [ 6] [102527] +10:25:32 [ 15] [ 4] [0320] +10:25:32 [ 18] [ 4] [6011] +10:25:32 [ 32] [ 6] [621354] +10:25:32 [ 35] [ 37] [6688990107354506=44021231450630200000] +10:25:32 [ 37] [ 12] [507905310643] +10:25:32 [ 38] [ 6] [440646] +10:25:32 [ 39] [ 2] [00] +10:25:32 [ 41] [ 8] [08001200] +10:25:32 [ 49] [ 3] [418] +10:25:32 [ 54] [ 20] [0002418C000009731427] +10:25:32 ============================================================================ +10:25:32 Sending to : +10:25:32 ============================================================================ +10:25:32 + + +waiting on router queue for slot.... +10:25:33 ============================================================================ +10:25:33 Slot Id : <101> +10:25:33 Transaction Type : RESPONSE +10:25:33 Received From : +10:25:33 ============================================================================ +10:25:33 FNo. Len. Field Value +10:25:33 ============================================================================ +10:25:33 [ 1] [ 4] [0210] +10:25:33 [ 2] [ 16] [6688990107354506] +10:25:33 [ 3] [ 6] [300000] +10:25:33 [ 4] [ 12] [000000000000] +10:25:33 [ 11] [ 6] [713769] +10:25:33 [ 12] [ 6] [102527] +10:25:33 [ 15] [ 4] [0320] +10:25:33 [ 18] [ 4] [6011] +10:25:33 [ 32] [ 6] [621354] +10:25:33 [ 35] [ 37] [6688990107354506=44021231450630200000] +10:25:33 [ 37] [ 12] [507905310643] +10:25:33 [ 38] [ 6] [440646] +10:25:33 [ 39] [ 2] [00] +10:25:33 [ 41] [ 8] [08001200] +10:25:33 [ 49] [ 3] [418] +10:25:33 [ 54] [ 20] [0002418C000009731427] +10:25:33 ============================================================================ +10:25:33 Calculate Source COMM Id = 0 +10:25:33 ============================================================================ +10:25:33 + + +waiting on router queue for slot.... +10:25:41 ============================================================================ +10:25:41 Slot Id : <70> +10:25:41 Transaction Type : REQUEST +10:25:41 Received From : +10:25:41 ============================================================================ +10:25:41 FNo. Len. Field Value +10:25:41 ============================================================================ +10:25:41 [ 1] [ 4] [0800] +10:25:41 [ 7] [ 10] [0320032449] +10:25:41 [ 11] [ 6] [155847] +10:25:41 [ 70] [ 3] [301] +10:25:41 ============================================================================ +10:25:41 + + +waiting on router queue for slot.... +10:25:41 Sending to : +10:25:41 ============================================================================ +10:25:41 ============================================================================ +10:25:41 Slot Id : <70> +10:25:41 Transaction Type : RESPONSE +10:25:41 Received From : +10:25:41 ============================================================================ +10:25:41 FNo. Len. Field Value +10:25:41 ============================================================================ +10:25:41 [ 1] [ 4] [0810] +10:25:41 [ 7] [ 10] [0320032449] +10:25:41 [ 11] [ 6] [155847] +10:25:41 [ 39] [ 2] [00] +10:25:41 [ 70] [ 3] [301] +10:25:41 ============================================================================ +10:25:41 Calculate Source COMM Id = 2 +10:25:41 ============================================================================ +10:25:41 + + +waiting on router queue for slot.... +10:25:47 ============================================================================ +10:25:47 Slot Id : <109> +10:25:47 Transaction Type : REQUEST +10:25:47 Received From : +10:25:47 ============================================================================ +10:25:47 FNo. Len. Field Value +10:25:47 ============================================================================ +10:25:47 [ 1] [ 4] [0800] +10:25:47 [ 2] [ 5] [02531] +10:25:47 [ 3] [ 6] [579108] +10:25:47 [ 7] [ 10] [0320032547] +10:25:47 [ 11] [ 6] [807017] +10:25:47 [ 15] [ 10] [0320032547] +10:25:47 [ 37] [ 11] [57910807017] +10:25:47 [ 70] [ 3] [001] +10:25:47 ============================================================================ +10:25:47 + + +waiting on router queue for slot.... +10:25:47 ============================================================================ +10:25:47 Slot Id : <109> +10:25:47 Transaction Type : RESPONSE +10:25:47 Received From : +10:25:47 ============================================================================ +10:25:47 FNo. Len. Field Value +10:25:47 ============================================================================ +10:25:47 [ 1] [ 4] [0810] +10:25:47 [ 7] [ 10] [0320032547] +10:25:47 [ 11] [ 6] [807017] +10:25:47 [ 15] [ 4] [0320] +10:25:47 [ 37] [ 12] [57910807017] +10:25:47 [ 39] [ 2] [00] +10:25:47 [ 70] [ 3] [001] +10:25:47 ============================================================================ +10:25:47 Sending to : +10:25:47 ============================================================================ +10:25:47 + + +waiting on router queue for slot.... +10:25:58 ============================================================================ +10:25:58 Slot Id : <102> +10:25:58 Transaction Type : REQUEST +10:25:58 Received From : +10:25:58 ============================================================================ +10:25:58 FNo. Len. Field Value +10:25:58 ============================================================================ +10:25:58 [ 1] [ 4] [0800] +10:25:58 [ 7] [ 10] [0320032506] +10:25:58 [ 11] [ 6] [155848] +10:25:58 [ 70] [ 3] [301] +10:25:58 ============================================================================ +10:25:58 + + +waiting on router queue for slot.... +10:25:58 Sending to : +10:25:58 ============================================================================ +10:25:58 ============================================================================ +10:25:58 Slot Id : <102> +10:25:58 Transaction Type : RESPONSE +10:25:58 Received From : +10:25:58 ============================================================================ +10:25:58 FNo. Len. Field Value +10:25:58 ============================================================================ +10:25:58 [ 1] [ 4] [0810] +10:25:58 [ 7] [ 10] [0320032506] +10:25:58 [ 11] [ 6] [155848] +10:25:58 [ 39] [ 2] [00] +10:25:58 [ 70] [ 3] [301] +10:25:58 ============================================================================ +10:25:58 Calculate Source COMM Id = 2 +10:25:58 ============================================================================ +10:25:58 + + +waiting on router queue for slot.... +10:26:08 ============================================================================ +10:26:08 Slot Id : <136> +10:26:08 Transaction Type : REQUEST +10:26:08 Received From : +10:26:08 ============================================================================ +10:26:08 FNo. Len. Field Value +10:26:08 ============================================================================ +10:26:08 [ 1] [ 4] [0200] +10:26:08 [ 2] [ 16] [6213548000054351] +10:26:08 [ 3] [ 6] [010000] +10:26:08 [ 4] [ 12] [000100000000] +10:26:08 [ 7] [ 10] [0320102359] +10:26:08 [ 11] [ 6] [938572] +10:26:08 [ 12] [ 6] [102359] +10:26:08 [ 13] [ 4] [0320] +10:26:08 [ 15] [ 4] [0320] +10:26:08 [ 18] [ 4] [6011] +10:26:08 [ 19] [ 3] [418] +10:26:08 [ 22] [ 3] [021] +10:26:08 [ 25] [ 2] [01] +10:26:08 [ 28] [ 9] [D00002000] +10:26:08 [ 32] [ 6] [668899] +10:26:08 [ 35] [ 32] [6213548000054351=130712015435856] +10:26:08 [ 37] [ 12] [507900835731] +10:26:08 [ 41] [ 8] [03015002] +10:26:08 [ 42] [ 15] [APT ] +10:26:08 [ 43] [ 40] [ TRADING CENTRE MARKET PAK] +10:26:08 [ 49] [ 3] [418] +10:26:08 [ 52] [ 16] [B919C02A335C396A] +10:26:08 ============================================================================ +10:26:08 + + +waiting on router queue for slot.... +10:26:08 Sending to : +10:26:08 ============================================================================ +10:26:08 Sending to : +10:26:08 ============================================================================ +10:26:09 ============================================================================ +10:26:09 Slot Id : <136> +10:26:09 Transaction Type : REQUEST +10:26:09 Received From : +10:26:09 ============================================================================ +10:26:09 FNo. Len. Field Value +10:26:09 ============================================================================ +10:26:09 [ 1] [ 4] [0200] +10:26:09 [ 2] [ 16] [6213548000054351] +10:26:09 [ 3] [ 6] [010000] +10:26:09 [ 4] [ 12] [000100000000] +10:26:09 [ 7] [ 10] [0320102359] +10:26:09 [ 11] [ 6] [938572] +10:26:09 [ 12] [ 6] [102359] +10:26:09 [ 13] [ 4] [0320] +10:26:09 [ 15] [ 4] [0320] +10:26:09 [ 18] [ 4] [6011] +10:26:09 [ 19] [ 3] [418] +10:26:09 [ 22] [ 3] [021] +10:26:09 [ 25] [ 2] [01] +10:26:09 [ 28] [ 9] [D00002000] +10:26:09 [ 32] [ 6] [668899] +10:26:09 [ 35] [ 32] [6213548000054351=130712015435856] +10:26:09 [ 37] [ 12] [507900835731] +10:26:09 [ 41] [ 8] [03015002] +10:26:09 [ 42] [ 15] [APT ] +10:26:09 [ 43] [ 40] [ TRADING CENTRE MARKET PAK] +10:26:09 [ 49] [ 3] [418] +10:26:09 [ 52] [ 16] [B919C02A335C396A] +10:26:09 ============================================================================ +10:26:09 + + +waiting on router queue for slot.... +10:26:09 Sending to : +10:26:09 ============================================================================ +10:26:09 ============================================================================ +10:26:09 Slot Id : <136> +10:26:09 Transaction Type : REQUEST +10:26:09 Received From : +10:26:09 ============================================================================ +10:26:09 FNo. Len. Field Value +10:26:09 ============================================================================ +10:26:09 [ 1] [ 4] [0200] +10:26:09 [ 2] [ 16] [6213548000054351] +10:26:09 [ 3] [ 6] [010000] +10:26:09 [ 4] [ 12] [000100000000] +10:26:09 [ 7] [ 10] [0320102359] +10:26:09 [ 11] [ 6] [938572] +10:26:09 [ 12] [ 6] [102359] +10:26:09 [ 13] [ 4] [0320] +10:26:09 [ 15] [ 4] [0320] +10:26:09 [ 18] [ 4] [6011] +10:26:09 [ 19] [ 3] [418] +10:26:09 [ 22] [ 3] [021] +10:26:09 [ 25] [ 2] [01] +10:26:09 [ 28] [ 9] [D00002000] +10:26:09 [ 32] [ 6] [668899] +10:26:09 [ 35] [ 32] [6213548000054351=130712015435856] +10:26:09 [ 37] [ 12] [507900835731] +10:26:09 [ 41] [ 8] [03015002] +10:26:09 [ 42] [ 15] [APT ] +10:26:09 [ 43] [ 40] [ TRADING CENTRE MARKET PAK] +10:26:09 [ 49] [ 3] [418] +10:26:09 [ 52] [ 16] [3737321B8452ECEE] +10:26:09 ============================================================================ +10:26:09 + + +waiting on router queue for slot.... +10:26:09 Sending to : <0> +10:26:09 ============================================================================ +10:26:09 ============================================================================ +10:26:09 Slot Id : <85> +10:26:09 Transaction Type : REQUEST +10:26:09 Received From : +10:26:09 ============================================================================ +10:26:09 FNo. Len. Field Value +10:26:09 ============================================================================ +10:26:09 [ 1] [ 4] [0800] +10:26:09 [ 7] [ 10] [0320032517] +10:26:09 [ 11] [ 6] [155849] +10:26:09 [ 70] [ 3] [301] +10:26:09 ============================================================================ +10:26:09 + + +waiting on router queue for slot.... +10:26:09 Sending to : +10:26:09 ============================================================================ +10:26:09 ============================================================================ +10:26:09 Slot Id : <85> +10:26:09 Transaction Type : RESPONSE +10:26:09 Received From : +10:26:09 ============================================================================ +10:26:09 FNo. Len. Field Value +10:26:09 ============================================================================ +10:26:09 [ 1] [ 4] [0810] +10:26:09 [ 7] [ 10] [0320032517] +10:26:09 [ 11] [ 6] [155849] +10:26:09 [ 39] [ 2] [00] +10:26:09 [ 70] [ 3] [301] +10:26:09 ============================================================================ +10:26:09 Calculate Source COMM Id = 2 +10:26:09 ============================================================================ +10:26:09 + + +waiting on router queue for slot.... +10:26:09 ============================================================================ +10:26:09 Slot Id : <136> +10:26:09 Transaction Type : RESPONSE +10:26:09 Received From : +10:26:09 ============================================================================ +10:26:09 FNo. Len. Field Value +10:26:09 ============================================================================ +10:26:09 [ 1] [ 4] [0210] +10:26:09 [ 2] [ 16] [6213548000054351] +10:26:09 [ 3] [ 6] [010000] +10:26:09 [ 4] [ 12] [000100000000] +10:26:09 [ 7] [ 10] [0320102359] +10:26:09 [ 11] [ 6] [938572] +10:26:09 [ 12] [ 6] [102359] +10:26:09 [ 13] [ 4] [0320] +10:26:09 [ 15] [ 4] [0320] +10:26:09 [ 18] [ 4] [6011] +10:26:09 [ 19] [ 3] [418] +10:26:09 [ 32] [ 6] [668899] +10:26:09 [ 35] [ 32] [6213548000054351=130712015435856] +10:26:09 [ 37] [ 12] [507900835731] +10:26:09 [ 38] [ 6] [050133] +10:26:09 [ 39] [ 2] [00] +10:26:09 [ 41] [ 8] [03015002] +10:26:09 [ 49] [ 3] [418] +10:26:09 [ 54] [ 40] [0001418C0001097750890002418C000109775089] +10:26:09 ============================================================================ +10:26:09 Sending to : +10:26:09 ============================================================================ +10:26:09 + + +waiting on router queue for slot.... +10:26:11 ============================================================================ +10:26:11 Slot Id : <136> +10:26:11 Transaction Type : RESPONSE +10:26:11 Received From : +10:26:11 ============================================================================ +10:26:11 FNo. Len. Field Value +10:26:11 ============================================================================ +10:26:11 [ 1] [ 4] [0210] +10:26:11 [ 2] [ 16] [6213548000054351] +10:26:11 [ 3] [ 6] [010000] +10:26:11 [ 4] [ 12] [000100000000] +10:26:11 [ 7] [ 10] [0320102359] +10:26:11 [ 11] [ 6] [938572] +10:26:11 [ 12] [ 6] [102359] +10:26:11 [ 13] [ 4] [0320] +10:26:11 [ 15] [ 4] [0320] +10:26:11 [ 18] [ 4] [6011] +10:26:11 [ 19] [ 3] [418] +10:26:11 [ 32] [ 6] [668899] +10:26:11 [ 35] [ 32] [6213548000054351=130712015435856] +10:26:11 [ 37] [ 12] [507900835731] +10:26:11 [ 38] [ 6] [050133] +10:26:11 [ 39] [ 2] [00] +10:26:11 [ 41] [ 8] [03015002] +10:26:11 [ 49] [ 3] [418] +10:26:11 [ 54] [ 40] [0001418C0001097750890002418C000109775089] +10:26:11 ============================================================================ +10:26:11 Calculate Source COMM Id = 4 +10:26:11 ============================================================================ +10:26:11 + + +waiting on router queue for slot.... +10:26:21 ============================================================================ +10:26:21 Slot Id : <129> +10:26:21 Transaction Type : REQUEST +10:26:21 Received From : +10:26:21 ============================================================================ +10:26:21 FNo. Len. Field Value +10:26:21 ============================================================================ +10:26:21 [ 1] [ 4] [0800] +10:26:21 [ 7] [ 10] [0320032412] +10:26:21 [ 11] [ 6] [007833] +10:26:21 [ 37] [ 12] [57910007833] +10:26:21 [ 70] [ 3] [301] +10:26:21 ============================================================================ +10:26:21 + + +waiting on router queue for slot.... +10:26:21 Sending to : +10:26:21 ============================================================================ +10:26:21 ============================================================================ +10:26:21 Slot Id : <129> +10:26:21 Transaction Type : RESPONSE +10:26:21 Received From : +10:26:21 ============================================================================ +10:26:21 FNo. Len. Field Value +10:26:21 ============================================================================ +10:26:21 [ 1] [ 4] [0810] +10:26:21 [ 7] [ 10] [0320032412] +10:26:21 [ 11] [ 6] [007833] +10:26:21 [ 37] [ 12] [579100078330] +10:26:21 [ 39] [ 2] [00] +10:26:21 [ 70] [ 3] [810] +10:26:21 ============================================================================ +10:26:21 Calculate Source COMM Id = 4 +10:26:21 ============================================================================ +10:26:21 + + +waiting on router queue for slot.... +10:26:25 ============================================================================ +10:26:25 Slot Id : <131> +10:26:25 Transaction Type : REQUEST +10:26:25 Received From : +10:26:25 ============================================================================ +10:26:25 FNo. Len. Field Value +10:26:25 ============================================================================ +10:26:25 [ 1] [ 4] [0800] +10:26:25 [ 7] [ 10] [0320032533] +10:26:25 [ 11] [ 6] [155850] +10:26:25 [ 70] [ 3] [301] +10:26:25 ============================================================================ +10:26:25 + + +waiting on router queue for slot.... +10:26:25 Sending to : +10:26:25 ============================================================================ +10:26:25 ============================================================================ +10:26:25 Slot Id : <131> +10:26:25 Transaction Type : RESPONSE +10:26:25 Received From : +10:26:25 ============================================================================ +10:26:25 FNo. Len. Field Value +10:26:25 ============================================================================ +10:26:25 [ 1] [ 4] [0810] +10:26:25 [ 7] [ 10] [0320032533] +10:26:25 [ 11] [ 6] [155850] +10:26:25 [ 39] [ 2] [00] +10:26:25 [ 70] [ 3] [301] +10:26:25 ============================================================================ +10:26:25 Calculate Source COMM Id = 2 +10:26:25 ============================================================================ +10:26:25 + + +waiting on router queue for slot.... +10:26:35 ============================================================================ +10:26:35 Slot Id : <87> +10:26:35 Transaction Type : REQUEST +10:26:35 Received From : +10:26:35 ============================================================================ +10:26:35 FNo. Len. Field Value +10:26:35 ============================================================================ +10:26:35 [ 1] [ 4] [0200] +10:26:35 [ 2] [ 16] [6213545000138333] +10:26:35 [ 3] [ 6] [010000] +10:26:35 [ 4] [ 12] [000050000000] +10:26:35 [ 7] [ 10] [0320103423] +10:26:35 [ 11] [ 6] [085593] +10:26:35 [ 12] [ 6] [103423] +10:26:35 [ 13] [ 4] [0320] +10:26:35 [ 14] [ 4] [4912] +10:26:35 [ 15] [ 4] [0320] +10:26:35 [ 18] [ 4] [6011] +10:26:35 [ 22] [ 3] [900] +10:26:35 [ 25] [ 2] [02] +10:26:35 [ 28] [ 9] [D00002000] +10:26:35 [ 32] [ 6] [220699] +10:26:35 [ 35] [ 32] [6213545000138333=491212013833446] +10:26:35 [ 37] [ 12] [507900140211] +10:26:35 [ 41] [ 8] [03000200] +10:26:35 [ 42] [ 15] [APTRA ] +10:26:35 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:26:35 [ 49] [ 3] [418] +10:26:35 [ 52] [ 16] [686B7956019A472E] +10:26:35 ============================================================================ +10:26:35 + + +waiting on router queue for slot.... +10:26:35 Sending to : +10:26:35 ============================================================================ +10:26:35 Sending to : +10:26:35 ============================================================================ +10:26:36 ============================================================================ +10:26:36 Slot Id : <87> +10:26:36 Transaction Type : REQUEST +10:26:36 Received From : +10:26:36 ============================================================================ +10:26:36 FNo. Len. Field Value +10:26:36 ============================================================================ +10:26:36 [ 1] [ 4] [0200] +10:26:36 [ 2] [ 16] [6213545000138333] +10:26:36 [ 3] [ 6] [010000] +10:26:36 [ 4] [ 12] [000050000000] +10:26:36 [ 7] [ 10] [0320103423] +10:26:36 [ 11] [ 6] [085593] +10:26:36 [ 12] [ 6] [103423] +10:26:36 [ 13] [ 4] [0320] +10:26:36 [ 14] [ 4] [4912] +10:26:36 [ 15] [ 4] [0320] +10:26:36 [ 18] [ 4] [6011] +10:26:36 [ 22] [ 3] [900] +10:26:36 [ 25] [ 2] [02] +10:26:36 [ 28] [ 9] [D00002000] +10:26:36 [ 32] [ 6] [220699] +10:26:36 [ 35] [ 32] [6213545000138333=491212013833446] +10:26:36 [ 37] [ 12] [507900140211] +10:26:36 [ 41] [ 8] [03000200] +10:26:36 [ 42] [ 15] [APTRA ] +10:26:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:26:36 [ 49] [ 3] [418] +10:26:36 [ 52] [ 16] [686B7956019A472E] +10:26:36 ============================================================================ +10:26:36 + + +waiting on router queue for slot.... +10:26:36 Sending to : +10:26:36 ============================================================================ +10:26:36 ============================================================================ +10:26:36 Slot Id : <87> +10:26:36 Transaction Type : REQUEST +10:26:36 Received From : +10:26:36 ============================================================================ +10:26:36 FNo. Len. Field Value +10:26:36 ============================================================================ +10:26:36 [ 1] [ 4] [0200] +10:26:36 [ 2] [ 16] [6213545000138333] +10:26:36 [ 3] [ 6] [010000] +10:26:36 [ 4] [ 12] [000050000000] +10:26:36 [ 7] [ 10] [0320103423] +10:26:36 [ 11] [ 6] [085593] +10:26:36 [ 12] [ 6] [103423] +10:26:36 [ 13] [ 4] [0320] +10:26:36 [ 14] [ 4] [4912] +10:26:36 [ 15] [ 4] [0320] +10:26:36 [ 18] [ 4] [6011] +10:26:36 [ 22] [ 3] [900] +10:26:36 [ 25] [ 2] [02] +10:26:36 [ 28] [ 9] [D00002000] +10:26:36 [ 32] [ 6] [220699] +10:26:36 [ 35] [ 32] [6213545000138333=491212013833446] +10:26:36 [ 37] [ 12] [507900140211] +10:26:36 [ 41] [ 8] [03000200] +10:26:36 [ 42] [ 15] [APTRA ] +10:26:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:26:36 [ 49] [ 3] [418] +10:26:36 [ 52] [ 16] [F7F4465E63175779] +10:26:36 ============================================================================ +10:26:36 + + +waiting on router queue for slot.... +10:26:36 Sending to : <0> +10:26:36 ============================================================================ +10:26:36 ============================================================================ +10:26:36 Slot Id : <105> +10:26:36 Transaction Type : REQUEST +10:26:36 Received From : +10:26:36 ============================================================================ +10:26:36 FNo. Len. Field Value +10:26:36 ============================================================================ +10:26:36 [ 1] [ 4] [0800] +10:26:36 [ 7] [ 10] [0320032544] +10:26:36 [ 11] [ 6] [155851] +10:26:36 [ 70] [ 3] [301] +10:26:36 ============================================================================ +10:26:36 + + +waiting on router queue for slot.... +10:26:36 Sending to : +10:26:36 ============================================================================ +10:26:36 ============================================================================ +10:26:36 Slot Id : <105> +10:26:36 Transaction Type : RESPONSE +10:26:36 Received From : +10:26:36 ============================================================================ +10:26:36 FNo. Len. Field Value +10:26:36 ============================================================================ +10:26:36 [ 1] [ 4] [0810] +10:26:36 [ 7] [ 10] [0320032544] +10:26:36 [ 11] [ 6] [155851] +10:26:36 [ 39] [ 2] [00] +10:26:36 [ 70] [ 3] [301] +10:26:36 ============================================================================ +10:26:36 Calculate Source COMM Id = 2 +10:26:36 ============================================================================ +10:26:36 + + +waiting on router queue for slot.... +10:26:36 ============================================================================ +10:26:36 Slot Id : <87> +10:26:36 Transaction Type : RESPONSE +10:26:36 Received From : +10:26:36 ============================================================================ +10:26:36 FNo. Len. Field Value +10:26:36 ============================================================================ +10:26:36 [ 1] [ 4] [0210] +10:26:36 [ 2] [ 16] [6213545000138333] +10:26:36 [ 3] [ 6] [010000] +10:26:36 [ 4] [ 12] [000050000000] +10:26:36 [ 7] [ 10] [0320103423] +10:26:36 [ 11] [ 6] [085593] +10:26:36 [ 12] [ 6] [103423] +10:26:36 [ 13] [ 4] [0320] +10:26:36 [ 15] [ 4] [0320] +10:26:36 [ 18] [ 4] [6011] +10:26:36 [ 32] [ 6] [220699] +10:26:36 [ 35] [ 32] [6213545000138333=491212013833446] +10:26:36 [ 37] [ 12] [507900140211] +10:26:36 [ 38] [ 6] [988363] +10:26:36 [ 39] [ 2] [00] +10:26:36 [ 41] [ 8] [03000200] +10:26:36 [ 49] [ 3] [418] +10:26:36 [ 54] [ 40] [0001418C0000229342810002418C000022934281] +10:26:36 ============================================================================ +10:26:36 Sending to : +10:26:36 ============================================================================ +10:26:36 + + +waiting on router queue for slot.... +10:26:38 ============================================================================ +10:26:38 Slot Id : <87> +10:26:38 Transaction Type : RESPONSE +10:26:38 Received From : +10:26:38 ============================================================================ +10:26:38 FNo. Len. Field Value +10:26:38 ============================================================================ +10:26:38 [ 1] [ 4] [0210] +10:26:38 [ 2] [ 16] [6213545000138333] +10:26:38 [ 3] [ 6] [010000] +10:26:38 [ 4] [ 12] [000050000000] +10:26:38 [ 7] [ 10] [0320103423] +10:26:38 [ 11] [ 6] [085593] +10:26:38 [ 12] [ 6] [103423] +10:26:38 [ 13] [ 4] [0320] +10:26:38 [ 15] [ 4] [0320] +10:26:38 [ 18] [ 4] [6011] +10:26:38 [ 32] [ 6] [220699] +10:26:38 [ 35] [ 32] [6213545000138333=491212013833446] +10:26:38 [ 37] [ 12] [507900140211] +10:26:38 [ 38] [ 6] [988363] +10:26:38 [ 39] [ 2] [00] +10:26:38 [ 41] [ 8] [03000200] +10:26:38 [ 49] [ 3] [418] +10:26:38 [ 54] [ 40] [0001418C0000229342810002418C000022934281] +10:26:38 ============================================================================ +10:26:38 Calculate Source COMM Id = 1 +10:26:38 ============================================================================ +10:26:38 + + +waiting on router queue for slot.... +10:26:48 ============================================================================ +10:26:48 Slot Id : <104> +10:26:48 Transaction Type : REQUEST +10:26:48 Received From : +10:26:48 ============================================================================ +10:26:48 FNo. Len. Field Value +10:26:48 ============================================================================ +10:26:48 [ 1] [ 4] [0800] +10:26:48 [ 7] [ 10] [0320032555] +10:26:48 [ 11] [ 6] [155852] +10:26:48 [ 70] [ 3] [301] +10:26:48 ============================================================================ +10:26:48 + + +waiting on router queue for slot.... +10:26:48 Sending to : +10:26:48 ============================================================================ +10:26:48 ============================================================================ +10:26:48 Slot Id : <104> +10:26:48 Transaction Type : RESPONSE +10:26:48 Received From : +10:26:48 ============================================================================ +10:26:48 FNo. Len. Field Value +10:26:48 ============================================================================ +10:26:48 [ 1] [ 4] [0810] +10:26:48 [ 7] [ 10] [0320032555] +10:26:48 [ 11] [ 6] [155852] +10:26:48 [ 39] [ 2] [00] +10:26:48 [ 70] [ 3] [301] +10:26:48 ============================================================================ +10:26:48 Calculate Source COMM Id = 2 +10:26:48 ============================================================================ +10:26:48 + + +waiting on router queue for slot.... +10:26:49 ============================================================================ +10:26:49 Slot Id : <138> +10:26:49 Transaction Type : REQUEST +10:26:49 Received From : +10:26:49 ============================================================================ +10:26:49 FNo. Len. Field Value +10:26:49 ============================================================================ +10:26:49 [ 1] [ 4] [0800] +10:26:49 [ 2] [ 5] [02531] +10:26:49 [ 3] [ 6] [579108] +10:26:49 [ 7] [ 10] [0320032649] +10:26:49 [ 11] [ 6] [807018] +10:26:49 [ 15] [ 10] [0320032649] +10:26:49 [ 37] [ 11] [57910807018] +10:26:49 [ 70] [ 3] [001] +10:26:49 ============================================================================ +10:26:49 + + +waiting on router queue for slot.... +10:26:49 ============================================================================ +10:26:49 Slot Id : <138> +10:26:49 Transaction Type : RESPONSE +10:26:49 Received From : +10:26:49 ============================================================================ +10:26:49 FNo. Len. Field Value +10:26:49 ============================================================================ +10:26:49 [ 1] [ 4] [0810] +10:26:49 [ 7] [ 10] [0320032649] +10:26:49 [ 11] [ 6] [807018] +10:26:49 [ 15] [ 4] [0320] +10:26:49 [ 37] [ 12] [57910807018] +10:26:49 [ 39] [ 2] [00] +10:26:49 [ 70] [ 3] [001] +10:26:49 ============================================================================ +10:26:49 Sending to : +10:26:49 ============================================================================ +10:26:49 + + +waiting on router queue for slot.... +10:26:53 ============================================================================ +10:26:53 Slot Id : <117> +10:26:53 Transaction Type : REQUEST +10:26:53 Received From : +10:26:53 ============================================================================ +10:26:53 FNo. Len. Field Value +10:26:53 ============================================================================ +10:26:53 [ 1] [ 4] [0200] +10:26:53 [ 2] [ 16] [6688990107354506] +10:26:53 [ 3] [ 6] [011000] +10:26:53 [ 4] [ 12] [000004000000] +10:26:53 [ 7] [ 10] [0320102649] +10:26:53 [ 11] [ 6] [714161] +10:26:53 [ 12] [ 6] [102649] +10:26:53 [ 13] [ 4] [0320] +10:26:53 [ 15] [ 4] [0320] +10:26:53 [ 18] [ 4] [6011] +10:26:53 [ 22] [ 3] [900] +10:26:53 [ 25] [ 2] [02] +10:26:53 [ 28] [ 9] [D00002000] +10:26:53 [ 32] [ 6] [621354] +10:26:53 [ 35] [ 37] [6688990107354506=44021231450630200000] +10:26:53 [ 37] [ 12] [507905310645] +10:26:53 [ 41] [ 8] [08001200] +10:26:53 [ 42] [ 15] [NATIVE ] +10:26:53 [ 43] [ 40] [Attapeu Branch04 Attapeu LAO] +10:26:53 [ 49] [ 3] [418] +10:26:53 [ 52] [ 16] [6C74C9E2F318F435] +10:26:53 ============================================================================ +10:26:53 + + +waiting on router queue for slot.... +10:26:53 Sending to : +10:26:53 ============================================================================ +10:26:53 Sending to : +10:26:53 ============================================================================ +10:26:54 ============================================================================ +10:26:54 Slot Id : <117> +10:26:54 Transaction Type : REQUEST +10:26:54 Received From : +10:26:54 ============================================================================ +10:26:54 FNo. Len. Field Value +10:26:54 ============================================================================ +10:26:54 [ 1] [ 4] [0200] +10:26:54 [ 2] [ 16] [6688990107354506] +10:26:54 [ 3] [ 6] [011000] +10:26:54 [ 4] [ 12] [000004000000] +10:26:54 [ 7] [ 10] [0320102649] +10:26:54 [ 11] [ 6] [714161] +10:26:54 [ 12] [ 6] [102649] +10:26:54 [ 13] [ 4] [0320] +10:26:54 [ 15] [ 4] [0320] +10:26:54 [ 18] [ 4] [6011] +10:26:54 [ 22] [ 3] [900] +10:26:54 [ 25] [ 2] [02] +10:26:54 [ 28] [ 9] [D00002000] +10:26:54 [ 32] [ 6] [621354] +10:26:54 [ 35] [ 37] [6688990107354506=44021231450630200000] +10:26:54 [ 37] [ 12] [507905310645] +10:26:54 [ 41] [ 8] [08001200] +10:26:54 [ 42] [ 15] [NATIVE ] +10:26:54 [ 43] [ 40] [Attapeu Branch04 Attapeu LAO] +10:26:54 [ 49] [ 3] [418] +10:26:54 [ 52] [ 16] [6C74C9E2F318F435] +10:26:54 ============================================================================ +10:26:54 + + +waiting on router queue for slot.... +10:26:54 Sending to : +10:26:54 ============================================================================ +10:26:54 ============================================================================ +10:26:54 Slot Id : <117> +10:26:54 Transaction Type : REQUEST +10:26:54 Received From : +10:26:54 ============================================================================ +10:26:54 FNo. Len. Field Value +10:26:54 ============================================================================ +10:26:54 [ 1] [ 4] [0200] +10:26:54 [ 2] [ 16] [6688990107354506] +10:26:54 [ 3] [ 6] [011000] +10:26:54 [ 4] [ 12] [000004000000] +10:26:54 [ 7] [ 10] [0320102649] +10:26:54 [ 11] [ 6] [714161] +10:26:54 [ 12] [ 6] [102649] +10:26:54 [ 13] [ 4] [0320] +10:26:54 [ 15] [ 4] [0320] +10:26:54 [ 18] [ 4] [6011] +10:26:54 [ 22] [ 3] [900] +10:26:54 [ 25] [ 2] [02] +10:26:54 [ 28] [ 9] [D00002000] +10:26:54 [ 32] [ 6] [621354] +10:26:54 [ 35] [ 37] [6688990107354506=44021231450630200000] +10:26:54 [ 37] [ 12] [507905310645] +10:26:54 [ 41] [ 8] [08001200] +10:26:54 [ 42] [ 15] [NATIVE ] +10:26:54 [ 43] [ 40] [Attapeu Branch04 Attapeu LAO] +10:26:54 [ 49] [ 3] [418] +10:26:54 [ 52] [ 16] [3024528C4BD348E0] +10:26:54 ============================================================================ +10:26:54 + + +waiting on router queue for slot.... +10:26:54 Sending to : <4> +10:26:54 ============================================================================ +10:26:55 ============================================================================ +10:26:55 Slot Id : <117> +10:26:55 Transaction Type : RESPONSE +10:26:55 Received From : +10:26:55 ============================================================================ +10:26:55 FNo. Len. Field Value +10:26:55 ============================================================================ +10:26:55 [ 1] [ 4] [0210] +10:26:55 [ 2] [ 16] [6688990107354506] +10:26:55 [ 3] [ 6] [011000] +10:26:55 [ 4] [ 12] [000004000000] +10:26:55 [ 11] [ 6] [714161] +10:26:55 [ 12] [ 6] [102649] +10:26:55 [ 15] [ 4] [0320] +10:26:55 [ 18] [ 4] [6011] +10:26:55 [ 32] [ 6] [621354] +10:26:55 [ 35] [ 37] [6688990107354506=44021231450630200000] +10:26:55 [ 37] [ 12] [507905310645] +10:26:55 [ 38] [ 6] [189099] +10:26:55 [ 39] [ 2] [00] +10:26:55 [ 41] [ 8] [08001200] +10:26:55 [ 49] [ 3] [418] +10:26:55 [ 54] [ 20] [1002418C000005531427] +10:26:55 ============================================================================ +10:26:55 Sending to : +10:26:55 ============================================================================ +10:26:55 + + +waiting on router queue for slot.... +10:26:57 ============================================================================ +10:26:57 Slot Id : <117> +10:26:57 Transaction Type : RESPONSE +10:26:57 Received From : +10:26:57 ============================================================================ +10:26:57 FNo. Len. Field Value +10:26:57 ============================================================================ +10:26:57 [ 1] [ 4] [0210] +10:26:57 [ 2] [ 16] [6688990107354506] +10:26:57 [ 3] [ 6] [011000] +10:26:57 [ 4] [ 12] [000004000000] +10:26:57 [ 11] [ 6] [714161] +10:26:57 [ 12] [ 6] [102649] +10:26:57 [ 15] [ 4] [0320] +10:26:57 [ 18] [ 4] [6011] +10:26:57 [ 32] [ 6] [621354] +10:26:57 [ 35] [ 37] [6688990107354506=44021231450630200000] +10:26:57 [ 37] [ 12] [507905310645] +10:26:57 [ 38] [ 6] [189099] +10:26:57 [ 39] [ 2] [00] +10:26:57 [ 41] [ 8] [08001200] +10:26:57 [ 49] [ 3] [418] +10:26:57 [ 54] [ 20] [1002418C000005531427] +10:26:57 ============================================================================ +10:26:57 Calculate Source COMM Id = 0 +10:26:57 ============================================================================ +10:26:57 + + +waiting on router queue for slot.... +10:27:03 ============================================================================ +10:27:03 Slot Id : <112> +10:27:03 Transaction Type : REQUEST +10:27:03 Received From : +10:27:03 ============================================================================ +10:27:03 FNo. Len. Field Value +10:27:03 ============================================================================ +10:27:03 [ 1] [ 4] [0800] +10:27:03 [ 7] [ 10] [0320032611] +10:27:03 [ 11] [ 6] [155853] +10:27:03 [ 70] [ 3] [301] +10:27:03 ============================================================================ +10:27:03 + + +waiting on router queue for slot.... +10:27:03 Sending to : +10:27:03 ============================================================================ +10:27:03 ============================================================================ +10:27:03 Slot Id : <112> +10:27:03 Transaction Type : RESPONSE +10:27:03 Received From : +10:27:03 ============================================================================ +10:27:03 FNo. Len. Field Value +10:27:03 ============================================================================ +10:27:03 [ 1] [ 4] [0810] +10:27:03 [ 7] [ 10] [0320032611] +10:27:03 [ 11] [ 6] [155853] +10:27:03 [ 39] [ 2] [00] +10:27:03 [ 70] [ 3] [301] +10:27:03 ============================================================================ +10:27:03 Calculate Source COMM Id = 2 +10:27:03 ============================================================================ +10:27:03 + + +waiting on router queue for slot.... +10:27:12 ============================================================================ +10:27:12 Slot Id : <97> +10:27:12 Transaction Type : REQUEST +10:27:12 Received From : +10:27:12 ============================================================================ +10:27:12 FNo. Len. Field Value +10:27:12 ============================================================================ +10:27:12 [ 1] [ 4] [0200] +10:27:12 [ 2] [ 16] [6213544002264643] +10:27:12 [ 3] [ 6] [010000] +10:27:12 [ 4] [ 12] [000030000000] +10:27:12 [ 7] [ 10] [0320103500] +10:27:12 [ 11] [ 6] [223700] +10:27:12 [ 12] [ 6] [103500] +10:27:12 [ 13] [ 4] [0320] +10:27:12 [ 14] [ 4] [4912] +10:27:12 [ 15] [ 4] [0320] +10:27:12 [ 18] [ 4] [6011] +10:27:12 [ 22] [ 3] [900] +10:27:12 [ 25] [ 2] [02] +10:27:12 [ 28] [ 9] [D00002000] +10:27:12 [ 32] [ 6] [220699] +10:27:12 [ 35] [ 32] [6213544002264643=491212016464427] +10:27:12 [ 37] [ 12] [507900118745] +10:27:12 [ 41] [ 8] [01001100] +10:27:12 [ 42] [ 15] [APTRA ] +10:27:12 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:27:12 [ 49] [ 3] [418] +10:27:12 [ 52] [ 16] [F10A9C7448D3DA7C] +10:27:12 ============================================================================ +10:27:12 + + +waiting on router queue for slot.... +10:27:12 Sending to : +10:27:12 ============================================================================ +10:27:12 Sending to : +10:27:12 ============================================================================ +10:27:13 ============================================================================ +10:27:13 Slot Id : <97> +10:27:13 Transaction Type : REQUEST +10:27:13 Received From : +10:27:13 ============================================================================ +10:27:13 FNo. Len. Field Value +10:27:13 ============================================================================ +10:27:13 [ 1] [ 4] [0200] +10:27:13 [ 2] [ 16] [6213544002264643] +10:27:13 [ 3] [ 6] [010000] +10:27:13 [ 4] [ 12] [000030000000] +10:27:13 [ 7] [ 10] [0320103500] +10:27:13 [ 11] [ 6] [223700] +10:27:13 [ 12] [ 6] [103500] +10:27:13 [ 13] [ 4] [0320] +10:27:13 [ 14] [ 4] [4912] +10:27:13 [ 15] [ 4] [0320] +10:27:13 [ 18] [ 4] [6011] +10:27:13 [ 22] [ 3] [900] +10:27:13 [ 25] [ 2] [02] +10:27:13 [ 28] [ 9] [D00002000] +10:27:13 [ 32] [ 6] [220699] +10:27:13 [ 35] [ 32] [6213544002264643=491212016464427] +10:27:13 [ 37] [ 12] [507900118745] +10:27:13 [ 41] [ 8] [01001100] +10:27:13 [ 42] [ 15] [APTRA ] +10:27:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:27:13 [ 49] [ 3] [418] +10:27:13 [ 52] [ 16] [F10A9C7448D3DA7C] +10:27:13 ============================================================================ +10:27:13 + + +waiting on router queue for slot.... +10:27:13 Sending to : +10:27:13 ============================================================================ +10:27:13 ============================================================================ +10:27:13 Slot Id : <97> +10:27:13 Transaction Type : REQUEST +10:27:13 Received From : +10:27:13 ============================================================================ +10:27:13 FNo. Len. Field Value +10:27:13 ============================================================================ +10:27:13 [ 1] [ 4] [0200] +10:27:13 [ 2] [ 16] [6213544002264643] +10:27:13 [ 3] [ 6] [010000] +10:27:13 [ 4] [ 12] [000030000000] +10:27:13 [ 7] [ 10] [0320103500] +10:27:13 [ 11] [ 6] [223700] +10:27:13 [ 12] [ 6] [103500] +10:27:13 [ 13] [ 4] [0320] +10:27:13 [ 14] [ 4] [4912] +10:27:13 [ 15] [ 4] [0320] +10:27:13 [ 18] [ 4] [6011] +10:27:13 [ 22] [ 3] [900] +10:27:13 [ 25] [ 2] [02] +10:27:13 [ 28] [ 9] [D00002000] +10:27:13 [ 32] [ 6] [220699] +10:27:13 [ 35] [ 32] [6213544002264643=491212016464427] +10:27:13 [ 37] [ 12] [507900118745] +10:27:13 [ 41] [ 8] [01001100] +10:27:13 [ 42] [ 15] [APTRA ] +10:27:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:27:13 [ 49] [ 3] [418] +10:27:13 [ 52] [ 16] [6A069739C4C61A78] +10:27:13 ============================================================================ +10:27:13 + + +waiting on router queue for slot.... +10:27:13 Sending to : <0> +10:27:13 ============================================================================ +10:27:13 ============================================================================ +10:27:13 Slot Id : <97> +10:27:13 Transaction Type : RESPONSE +10:27:13 Received From : +10:27:13 ============================================================================ +10:27:13 FNo. Len. Field Value +10:27:13 ============================================================================ +10:27:13 [ 1] [ 4] [0210] +10:27:13 [ 2] [ 16] [6213544002264643] +10:27:13 [ 3] [ 6] [010000] +10:27:13 [ 4] [ 12] [000030000000] +10:27:13 [ 7] [ 10] [0320103500] +10:27:13 [ 11] [ 6] [223700] +10:27:13 [ 12] [ 6] [103500] +10:27:13 [ 13] [ 4] [0320] +10:27:13 [ 15] [ 4] [0320] +10:27:13 [ 18] [ 4] [6011] +10:27:13 [ 32] [ 6] [220699] +10:27:13 [ 35] [ 32] [6213544002264643=491212016464427] +10:27:13 [ 37] [ 12] [507900118745] +10:27:13 [ 38] [ 6] [088607] +10:27:13 [ 39] [ 2] [00] +10:27:13 [ 41] [ 8] [01001100] +10:27:13 [ 49] [ 3] [418] +10:27:13 [ 54] [ 40] [0001418C0000564000000002418C000056400000] +10:27:13 ============================================================================ +10:27:13 Sending to : +10:27:13 ============================================================================ +10:27:13 + + +waiting on router queue for slot.... +10:27:14 ============================================================================ +10:27:14 Slot Id : <140> +10:27:14 Transaction Type : REQUEST +10:27:14 Received From : +10:27:14 ============================================================================ +10:27:14 FNo. Len. Field Value +10:27:14 ============================================================================ +10:27:14 [ 1] [ 4] [0800] +10:27:14 [ 7] [ 10] [0320032622] +10:27:14 [ 11] [ 6] [155854] +10:27:14 [ 70] [ 3] [301] +10:27:14 ============================================================================ +10:27:14 + + +waiting on router queue for slot.... +10:27:14 Sending to : +10:27:14 ============================================================================ +10:27:14 ============================================================================ +10:27:14 Slot Id : <140> +10:27:14 Transaction Type : RESPONSE +10:27:14 Received From : +10:27:14 ============================================================================ +10:27:14 FNo. Len. Field Value +10:27:14 ============================================================================ +10:27:14 [ 1] [ 4] [0810] +10:27:14 [ 7] [ 10] [0320032622] +10:27:14 [ 11] [ 6] [155854] +10:27:14 [ 39] [ 2] [00] +10:27:14 [ 70] [ 3] [301] +10:27:14 ============================================================================ +10:27:14 Calculate Source COMM Id = 2 +10:27:14 ============================================================================ +10:27:14 + + +waiting on router queue for slot.... +10:27:15 ============================================================================ +10:27:15 Slot Id : <97> +10:27:15 Transaction Type : RESPONSE +10:27:15 Received From : +10:27:15 ============================================================================ +10:27:15 FNo. Len. Field Value +10:27:15 ============================================================================ +10:27:15 [ 1] [ 4] [0210] +10:27:15 [ 2] [ 16] [6213544002264643] +10:27:15 [ 3] [ 6] [010000] +10:27:15 [ 4] [ 12] [000030000000] +10:27:15 [ 7] [ 10] [0320103500] +10:27:15 [ 11] [ 6] [223700] +10:27:15 [ 12] [ 6] [103500] +10:27:15 [ 13] [ 4] [0320] +10:27:15 [ 15] [ 4] [0320] +10:27:15 [ 18] [ 4] [6011] +10:27:15 [ 32] [ 6] [220699] +10:27:15 [ 35] [ 32] [6213544002264643=491212016464427] +10:27:15 [ 37] [ 12] [507900118745] +10:27:15 [ 38] [ 6] [088607] +10:27:15 [ 39] [ 2] [00] +10:27:15 [ 41] [ 8] [01001100] +10:27:15 [ 49] [ 3] [418] +10:27:15 [ 54] [ 40] [0001418C0000564000000002418C000056400000] +10:27:15 ============================================================================ +10:27:15 Calculate Source COMM Id = 1 +10:27:15 ============================================================================ +10:27:15 + + +waiting on router queue for slot.... +10:27:31 ============================================================================ +10:27:31 Slot Id : <116> +10:27:31 Transaction Type : REQUEST +10:27:31 Received From : +10:27:31 ============================================================================ +10:27:31 FNo. Len. Field Value +10:27:31 ============================================================================ +10:27:31 [ 1] [ 4] [0800] +10:27:31 [ 7] [ 10] [0320032639] +10:27:31 [ 11] [ 6] [155855] +10:27:31 [ 70] [ 3] [301] +10:27:31 ============================================================================ +10:27:31 + + +waiting on router queue for slot.... +10:27:31 Sending to : +10:27:31 ============================================================================ +10:27:31 ============================================================================ +10:27:31 Slot Id : <116> +10:27:31 Transaction Type : RESPONSE +10:27:31 Received From : +10:27:31 ============================================================================ +10:27:31 FNo. Len. Field Value +10:27:31 ============================================================================ +10:27:31 [ 1] [ 4] [0810] +10:27:31 [ 7] [ 10] [0320032639] +10:27:31 [ 11] [ 6] [155855] +10:27:31 [ 39] [ 2] [00] +10:27:31 [ 70] [ 3] [301] +10:27:31 ============================================================================ +10:27:31 Calculate Source COMM Id = 2 +10:27:31 ============================================================================ +10:27:31 + + +waiting on router queue for slot.... +10:27:42 ============================================================================ +10:27:42 Slot Id : <111> +10:27:42 Transaction Type : REQUEST +10:27:42 Received From : +10:27:42 ============================================================================ +10:27:42 FNo. Len. Field Value +10:27:42 ============================================================================ +10:27:42 [ 1] [ 4] [0800] +10:27:42 [ 7] [ 10] [0320032650] +10:27:42 [ 11] [ 6] [155856] +10:27:42 [ 70] [ 3] [301] +10:27:42 ============================================================================ +10:27:42 + + +waiting on router queue for slot.... +10:27:42 Sending to : +10:27:42 ============================================================================ +10:27:42 ============================================================================ +10:27:42 Slot Id : <111> +10:27:42 Transaction Type : RESPONSE +10:27:42 Received From : +10:27:42 ============================================================================ +10:27:42 FNo. Len. Field Value +10:27:42 ============================================================================ +10:27:42 [ 1] [ 4] [0810] +10:27:42 [ 7] [ 10] [0320032650] +10:27:42 [ 11] [ 6] [155856] +10:27:42 [ 39] [ 2] [00] +10:27:42 [ 70] [ 3] [301] +10:27:42 ============================================================================ +10:27:42 Calculate Source COMM Id = 2 +10:27:42 ============================================================================ +10:27:42 + + +waiting on router queue for slot.... +10:27:51 ============================================================================ +10:27:51 Slot Id : <124> +10:27:51 Transaction Type : REQUEST +10:27:51 Received From : +10:27:51 ============================================================================ +10:27:51 FNo. Len. Field Value +10:27:51 ============================================================================ +10:27:51 [ 1] [ 4] [0800] +10:27:51 [ 2] [ 5] [02531] +10:27:51 [ 3] [ 6] [579108] +10:27:51 [ 7] [ 10] [0320032751] +10:27:51 [ 11] [ 6] [807019] +10:27:51 [ 15] [ 10] [0320032751] +10:27:51 [ 37] [ 11] [57910807019] +10:27:51 [ 70] [ 3] [001] +10:27:51 ============================================================================ +10:27:51 + + +waiting on router queue for slot.... +10:27:51 ============================================================================ +10:27:51 Slot Id : <124> +10:27:51 Transaction Type : RESPONSE +10:27:51 Received From : +10:27:51 ============================================================================ +10:27:51 FNo. Len. Field Value +10:27:51 ============================================================================ +10:27:51 [ 1] [ 4] [0810] +10:27:51 [ 7] [ 10] [0320032751] +10:27:51 [ 11] [ 6] [807019] +10:27:51 [ 15] [ 4] [0320] +10:27:51 [ 37] [ 12] [57910807019] +10:27:51 [ 39] [ 2] [00] +10:27:51 [ 70] [ 3] [001] +10:27:51 ============================================================================ +10:27:51 Sending to : +10:27:51 ============================================================================ +10:27:51 + + +waiting on router queue for slot.... +10:27:53 ============================================================================ +10:27:53 Slot Id : <161> +10:27:53 Transaction Type : REQUEST +10:27:53 Received From : +10:27:53 ============================================================================ +10:27:53 FNo. Len. Field Value +10:27:53 ============================================================================ +10:27:53 [ 1] [ 4] [0800] +10:27:53 [ 7] [ 10] [0320032701] +10:27:53 [ 11] [ 6] [155857] +10:27:53 [ 70] [ 3] [301] +10:27:53 ============================================================================ +10:27:53 + + +waiting on router queue for slot.... +10:27:53 Sending to : +10:27:53 ============================================================================ +10:27:53 ============================================================================ +10:27:53 Slot Id : <161> +10:27:53 Transaction Type : RESPONSE +10:27:53 Received From : +10:27:53 ============================================================================ +10:27:53 FNo. Len. Field Value +10:27:53 ============================================================================ +10:27:53 [ 1] [ 4] [0810] +10:27:53 [ 7] [ 10] [0320032701] +10:27:53 [ 11] [ 6] [155857] +10:27:53 [ 39] [ 2] [00] +10:27:53 [ 70] [ 3] [301] +10:27:53 ============================================================================ +10:27:53 Calculate Source COMM Id = 2 +10:27:53 ============================================================================ +10:27:53 + + +waiting on router queue for slot.... +10:28:04 ============================================================================ +10:28:04 Slot Id : <80> +10:28:04 Transaction Type : REQUEST +10:28:04 Received From : +10:28:04 ============================================================================ +10:28:04 FNo. Len. Field Value +10:28:04 ============================================================================ +10:28:04 [ 1] [ 4] [0800] +10:28:04 [ 7] [ 10] [0320032712] +10:28:04 [ 11] [ 6] [155858] +10:28:04 [ 70] [ 3] [301] +10:28:04 ============================================================================ +10:28:04 + + +waiting on router queue for slot.... +10:28:04 Sending to : +10:28:04 ============================================================================ +10:28:04 ============================================================================ +10:28:04 Slot Id : <80> +10:28:04 Transaction Type : RESPONSE +10:28:04 Received From : +10:28:04 ============================================================================ +10:28:04 FNo. Len. Field Value +10:28:04 ============================================================================ +10:28:04 [ 1] [ 4] [0810] +10:28:04 [ 7] [ 10] [0320032712] +10:28:04 [ 11] [ 6] [155858] +10:28:04 [ 39] [ 2] [00] +10:28:04 [ 70] [ 3] [301] +10:28:04 ============================================================================ +10:28:04 Calculate Source COMM Id = 2 +10:28:04 ============================================================================ +10:28:04 + + +waiting on router queue for slot.... +10:28:20 ============================================================================ +10:28:20 Slot Id : <147> +10:28:20 Transaction Type : REQUEST +10:28:20 Received From : +10:28:20 ============================================================================ +10:28:20 FNo. Len. Field Value +10:28:20 ============================================================================ +10:28:20 [ 1] [ 4] [0800] +10:28:20 [ 7] [ 10] [0320032728] +10:28:20 [ 11] [ 6] [155859] +10:28:20 [ 70] [ 3] [301] +10:28:20 ============================================================================ +10:28:20 + + +waiting on router queue for slot.... +10:28:20 Sending to : +10:28:20 ============================================================================ +10:28:20 ============================================================================ +10:28:20 Slot Id : <147> +10:28:20 Transaction Type : RESPONSE +10:28:20 Received From : +10:28:20 ============================================================================ +10:28:20 FNo. Len. Field Value +10:28:20 ============================================================================ +10:28:20 [ 1] [ 4] [0810] +10:28:20 [ 7] [ 10] [0320032728] +10:28:20 [ 11] [ 6] [155859] +10:28:20 [ 39] [ 2] [00] +10:28:20 [ 70] [ 3] [301] +10:28:20 ============================================================================ +10:28:20 Calculate Source COMM Id = 2 +10:28:20 ============================================================================ +10:28:20 + + +waiting on router queue for slot.... +10:28:30 ============================================================================ +10:28:30 Slot Id : <122> +10:28:30 Transaction Type : REQUEST +10:28:30 Received From : +10:28:30 ============================================================================ +10:28:30 FNo. Len. Field Value +10:28:30 ============================================================================ +10:28:30 [ 1] [ 4] [0800] +10:28:30 [ 7] [ 10] [0320032738] +10:28:30 [ 11] [ 6] [155860] +10:28:30 [ 70] [ 3] [301] +10:28:30 ============================================================================ +10:28:30 + + +waiting on router queue for slot.... +10:28:30 Sending to : +10:28:30 ============================================================================ +10:28:30 ============================================================================ +10:28:30 Slot Id : <122> +10:28:30 Transaction Type : RESPONSE +10:28:30 Received From : +10:28:30 ============================================================================ +10:28:30 FNo. Len. Field Value +10:28:30 ============================================================================ +10:28:30 [ 1] [ 4] [0810] +10:28:30 [ 7] [ 10] [0320032738] +10:28:30 [ 11] [ 6] [155860] +10:28:30 [ 39] [ 2] [00] +10:28:30 [ 70] [ 3] [301] +10:28:30 ============================================================================ +10:28:30 Calculate Source COMM Id = 2 +10:28:30 ============================================================================ +10:28:30 + + +waiting on router queue for slot.... +10:28:41 ============================================================================ +10:28:41 Slot Id : <132> +10:28:41 Transaction Type : REQUEST +10:28:41 Received From : +10:28:41 ============================================================================ +10:28:41 FNo. Len. Field Value +10:28:41 ============================================================================ +10:28:41 [ 1] [ 4] [0800] +10:28:41 [ 7] [ 10] [0320032748] +10:28:41 [ 11] [ 6] [155861] +10:28:41 [ 70] [ 3] [301] +10:28:41 ============================================================================ +10:28:41 + + +waiting on router queue for slot.... +10:28:41 Sending to : +10:28:41 ============================================================================ +10:28:41 ============================================================================ +10:28:41 Slot Id : <132> +10:28:41 Transaction Type : RESPONSE +10:28:41 Received From : +10:28:41 ============================================================================ +10:28:41 FNo. Len. Field Value +10:28:41 ============================================================================ +10:28:41 [ 1] [ 4] [0810] +10:28:41 [ 7] [ 10] [0320032748] +10:28:41 [ 11] [ 6] [155861] +10:28:41 [ 39] [ 2] [00] +10:28:41 [ 70] [ 3] [301] +10:28:41 ============================================================================ +10:28:41 Calculate Source COMM Id = 2 +10:28:41 ============================================================================ +10:28:41 + + +waiting on router queue for slot.... +10:28:53 ============================================================================ +10:28:53 Slot Id : <123> +10:28:53 Transaction Type : REQUEST +10:28:53 Received From : +10:28:53 ============================================================================ +10:28:53 FNo. Len. Field Value +10:28:53 ============================================================================ +10:28:53 [ 1] [ 4] [0800] +10:28:53 [ 2] [ 5] [02531] +10:28:53 [ 3] [ 6] [579108] +10:28:53 [ 7] [ 10] [0320032853] +10:28:53 [ 11] [ 6] [807020] +10:28:53 [ 15] [ 10] [0320032853] +10:28:53 [ 37] [ 11] [57910807020] +10:28:53 [ 70] [ 3] [001] +10:28:53 ============================================================================ +10:28:53 + + +waiting on router queue for slot.... +10:28:53 ============================================================================ +10:28:53 Slot Id : <123> +10:28:53 Transaction Type : RESPONSE +10:28:53 Received From : +10:28:53 ============================================================================ +10:28:53 FNo. Len. Field Value +10:28:53 ============================================================================ +10:28:53 [ 1] [ 4] [0810] +10:28:53 [ 7] [ 10] [0320032853] +10:28:53 [ 11] [ 6] [807020] +10:28:53 [ 15] [ 4] [0320] +10:28:53 [ 37] [ 12] [57910807020] +10:28:53 [ 39] [ 2] [00] +10:28:53 [ 70] [ 3] [001] +10:28:53 ============================================================================ +10:28:53 Sending to : +10:28:53 ============================================================================ +10:28:53 + + +waiting on router queue for slot.... +10:28:56 ============================================================================ +10:28:56 Slot Id : <162> +10:28:56 Transaction Type : REQUEST +10:28:56 Received From : +10:28:56 ============================================================================ +10:28:56 FNo. Len. Field Value +10:28:56 ============================================================================ +10:28:56 [ 1] [ 4] [0800] +10:28:56 [ 7] [ 10] [0320032804] +10:28:56 [ 11] [ 6] [155862] +10:28:56 [ 70] [ 3] [301] +10:28:56 ============================================================================ +10:28:56 + + +waiting on router queue for slot.... +10:28:56 Sending to : +10:28:56 ============================================================================ +10:28:56 ============================================================================ +10:28:56 Slot Id : <162> +10:28:56 Transaction Type : RESPONSE +10:28:56 Received From : +10:28:56 ============================================================================ +10:28:56 FNo. Len. Field Value +10:28:56 ============================================================================ +10:28:56 [ 1] [ 4] [0810] +10:28:56 [ 7] [ 10] [0320032804] +10:28:56 [ 11] [ 6] [155862] +10:28:56 [ 39] [ 2] [00] +10:28:56 [ 70] [ 3] [301] +10:28:56 ============================================================================ +10:28:56 Calculate Source COMM Id = 2 +10:28:56 ============================================================================ +10:28:56 + + +waiting on router queue for slot.... +10:29:07 ============================================================================ +10:29:07 Slot Id : <154> +10:29:07 Transaction Type : REQUEST +10:29:07 Received From : +10:29:07 ============================================================================ +10:29:07 FNo. Len. Field Value +10:29:07 ============================================================================ +10:29:07 [ 1] [ 4] [0800] +10:29:07 [ 7] [ 10] [0320032815] +10:29:07 [ 11] [ 6] [155863] +10:29:07 [ 70] [ 3] [301] +10:29:07 ============================================================================ +10:29:07 + + +waiting on router queue for slot.... +10:29:07 Sending to : +10:29:07 ============================================================================ +10:29:07 ============================================================================ +10:29:07 Slot Id : <154> +10:29:07 Transaction Type : RESPONSE +10:29:07 Received From : +10:29:07 ============================================================================ +10:29:07 FNo. Len. Field Value +10:29:07 ============================================================================ +10:29:07 [ 1] [ 4] [0810] +10:29:07 [ 7] [ 10] [0320032815] +10:29:07 [ 11] [ 6] [155863] +10:29:07 [ 39] [ 2] [00] +10:29:07 [ 70] [ 3] [301] +10:29:07 ============================================================================ +10:29:07 Calculate Source COMM Id = 2 +10:29:07 ============================================================================ +10:29:07 + + +waiting on router queue for slot.... +10:29:18 ============================================================================ +10:29:18 Slot Id : <145> +10:29:18 Transaction Type : REQUEST +10:29:18 Received From : +10:29:18 ============================================================================ +10:29:18 FNo. Len. Field Value +10:29:18 ============================================================================ +10:29:18 [ 1] [ 4] [0800] +10:29:18 [ 7] [ 10] [0320032826] +10:29:18 [ 11] [ 6] [155864] +10:29:18 [ 70] [ 3] [301] +10:29:18 ============================================================================ +10:29:18 + + +waiting on router queue for slot.... +10:29:18 Sending to : +10:29:18 ============================================================================ +10:29:18 ============================================================================ +10:29:18 Slot Id : <145> +10:29:18 Transaction Type : RESPONSE +10:29:18 Received From : +10:29:18 ============================================================================ +10:29:18 FNo. Len. Field Value +10:29:18 ============================================================================ +10:29:18 [ 1] [ 4] [0810] +10:29:18 [ 7] [ 10] [0320032826] +10:29:18 [ 11] [ 6] [155864] +10:29:18 [ 39] [ 2] [00] +10:29:18 [ 70] [ 3] [301] +10:29:18 ============================================================================ +10:29:18 Calculate Source COMM Id = 2 +10:29:18 ============================================================================ +10:29:18 + + +waiting on router queue for slot.... +10:29:26 ============================================================================ +10:29:26 Slot Id : <143> +10:29:26 Transaction Type : REQUEST +10:29:26 Received From : +10:29:26 ============================================================================ +10:29:26 FNo. Len. Field Value +10:29:26 ============================================================================ +10:29:26 [ 1] [ 4] [0200] +10:29:26 [ 2] [ 16] [6213544001016226] +10:29:26 [ 3] [ 6] [010000] +10:29:26 [ 4] [ 12] [000100000000] +10:29:26 [ 7] [ 10] [0320102717] +10:29:26 [ 11] [ 6] [938722] +10:29:26 [ 12] [ 6] [102717] +10:29:26 [ 13] [ 4] [0320] +10:29:26 [ 15] [ 4] [0320] +10:29:26 [ 18] [ 4] [6011] +10:29:26 [ 19] [ 3] [418] +10:29:26 [ 22] [ 3] [021] +10:29:26 [ 25] [ 2] [01] +10:29:26 [ 28] [ 9] [D00002000] +10:29:26 [ 32] [ 6] [668899] +10:29:26 [ 35] [ 32] [6213544001016226=491212011622274] +10:29:26 [ 37] [ 12] [507902279312] +10:29:26 [ 41] [ 8] [03003005] +10:29:26 [ 42] [ 15] [APT ] +10:29:26 [ 43] [ 40] [ TEACHER COLLEGE 2 LUANGNA] +10:29:26 [ 49] [ 3] [418] +10:29:26 [ 52] [ 16] [6D8BFCBFFABE6D99] +10:29:26 ============================================================================ +10:29:26 + + +waiting on router queue for slot.... +10:29:26 Sending to : +10:29:26 ============================================================================ +10:29:26 Sending to : +10:29:26 ============================================================================ +10:29:26 ============================================================================ +10:29:26 Slot Id : <143> +10:29:26 Transaction Type : REQUEST +10:29:26 Received From : +10:29:26 ============================================================================ +10:29:26 FNo. Len. Field Value +10:29:26 ============================================================================ +10:29:26 [ 1] [ 4] [0200] +10:29:26 [ 2] [ 16] [6213544001016226] +10:29:26 [ 3] [ 6] [010000] +10:29:26 [ 4] [ 12] [000100000000] +10:29:26 [ 7] [ 10] [0320102717] +10:29:26 [ 11] [ 6] [938722] +10:29:26 [ 12] [ 6] [102717] +10:29:26 [ 13] [ 4] [0320] +10:29:26 [ 15] [ 4] [0320] +10:29:26 [ 18] [ 4] [6011] +10:29:26 [ 19] [ 3] [418] +10:29:26 [ 22] [ 3] [021] +10:29:26 [ 25] [ 2] [01] +10:29:26 [ 28] [ 9] [D00002000] +10:29:26 [ 32] [ 6] [668899] +10:29:26 [ 35] [ 32] [6213544001016226=491212011622274] +10:29:26 [ 37] [ 12] [507902279312] +10:29:26 [ 41] [ 8] [03003005] +10:29:26 [ 42] [ 15] [APT ] +10:29:26 [ 43] [ 40] [ TEACHER COLLEGE 2 LUANGNA] +10:29:26 [ 49] [ 3] [418] +10:29:26 [ 52] [ 16] [6D8BFCBFFABE6D99] +10:29:26 ============================================================================ +10:29:26 + + +waiting on router queue for slot.... +10:29:26 Sending to : +10:29:26 ============================================================================ +10:29:26 ============================================================================ +10:29:26 Slot Id : <143> +10:29:26 Transaction Type : REQUEST +10:29:26 Received From : +10:29:26 ============================================================================ +10:29:26 FNo. Len. Field Value +10:29:26 ============================================================================ +10:29:26 [ 1] [ 4] [0200] +10:29:26 [ 2] [ 16] [6213544001016226] +10:29:26 [ 3] [ 6] [010000] +10:29:26 [ 4] [ 12] [000100000000] +10:29:26 [ 7] [ 10] [0320102717] +10:29:26 [ 11] [ 6] [938722] +10:29:26 [ 12] [ 6] [102717] +10:29:26 [ 13] [ 4] [0320] +10:29:26 [ 15] [ 4] [0320] +10:29:26 [ 18] [ 4] [6011] +10:29:26 [ 19] [ 3] [418] +10:29:26 [ 22] [ 3] [021] +10:29:26 [ 25] [ 2] [01] +10:29:26 [ 28] [ 9] [D00002000] +10:29:26 [ 32] [ 6] [668899] +10:29:26 [ 35] [ 32] [6213544001016226=491212011622274] +10:29:26 [ 37] [ 12] [507902279312] +10:29:26 [ 41] [ 8] [03003005] +10:29:26 [ 42] [ 15] [APT ] +10:29:26 [ 43] [ 40] [ TEACHER COLLEGE 2 LUANGNA] +10:29:26 [ 49] [ 3] [418] +10:29:26 [ 52] [ 16] [1F303D00EB7F5363] +10:29:26 ============================================================================ +10:29:26 + + +waiting on router queue for slot.... +10:29:26 Sending to : <0> +10:29:26 ============================================================================ +10:29:27 ============================================================================ +10:29:27 Slot Id : <143> +10:29:27 Transaction Type : RESPONSE +10:29:27 Received From : +10:29:27 ============================================================================ +10:29:27 FNo. Len. Field Value +10:29:27 ============================================================================ +10:29:27 [ 1] [ 4] [0210] +10:29:27 [ 2] [ 16] [6213544001016226] +10:29:27 [ 3] [ 6] [010000] +10:29:27 [ 4] [ 12] [000100000000] +10:29:27 [ 7] [ 10] [0320102717] +10:29:27 [ 11] [ 6] [938722] +10:29:27 [ 12] [ 6] [102717] +10:29:27 [ 13] [ 4] [0320] +10:29:27 [ 15] [ 4] [0320] +10:29:27 [ 18] [ 4] [6011] +10:29:27 [ 19] [ 3] [418] +10:29:27 [ 32] [ 6] [668899] +10:29:27 [ 35] [ 32] [6213544001016226=491212011622274] +10:29:27 [ 37] [ 12] [507902279312] +10:29:27 [ 38] [ 6] [475761] +10:29:27 [ 39] [ 2] [00] +10:29:27 [ 41] [ 8] [03003005] +10:29:27 [ 49] [ 3] [418] +10:29:27 [ 54] [ 40] [0001418C0004042164610002418C000404216461] +10:29:27 ============================================================================ +10:29:27 Sending to : +10:29:27 ============================================================================ +10:29:27 + + +waiting on router queue for slot.... +10:29:28 ============================================================================ +10:29:28 Slot Id : <143> +10:29:28 Transaction Type : RESPONSE +10:29:28 Received From : +10:29:28 ============================================================================ +10:29:28 FNo. Len. Field Value +10:29:28 ============================================================================ +10:29:28 [ 1] [ 4] [0210] +10:29:28 [ 2] [ 16] [6213544001016226] +10:29:28 [ 3] [ 6] [010000] +10:29:28 [ 4] [ 12] [000100000000] +10:29:28 [ 7] [ 10] [0320102717] +10:29:28 [ 11] [ 6] [938722] +10:29:28 [ 12] [ 6] [102717] +10:29:28 [ 13] [ 4] [0320] +10:29:28 [ 15] [ 4] [0320] +10:29:28 [ 18] [ 4] [6011] +10:29:28 [ 19] [ 3] [418] +10:29:28 [ 32] [ 6] [668899] +10:29:28 [ 35] [ 32] [6213544001016226=491212011622274] +10:29:28 [ 37] [ 12] [507902279312] +10:29:28 [ 38] [ 6] [475761] +10:29:28 [ 39] [ 2] [00] +10:29:28 [ 41] [ 8] [03003005] +10:29:28 [ 49] [ 3] [418] +10:29:28 [ 54] [ 40] [0001418C0004042164610002418C000404216461] +10:29:28 ============================================================================ +10:29:28 Calculate Source COMM Id = 4 +10:29:28 ============================================================================ +10:29:28 + + +waiting on router queue for slot.... +10:29:29 ============================================================================ +10:29:29 Slot Id : <158> +10:29:29 Transaction Type : REQUEST +10:29:29 Received From : +10:29:29 ============================================================================ +10:29:29 FNo. Len. Field Value +10:29:29 ============================================================================ +10:29:29 [ 1] [ 4] [0800] +10:29:29 [ 7] [ 10] [0320032836] +10:29:29 [ 11] [ 6] [155865] +10:29:29 [ 70] [ 3] [301] +10:29:29 ============================================================================ +10:29:29 + + +waiting on router queue for slot.... +10:29:29 Sending to : +10:29:29 ============================================================================ +10:29:29 ============================================================================ +10:29:29 Slot Id : <158> +10:29:29 Transaction Type : RESPONSE +10:29:29 Received From : +10:29:29 ============================================================================ +10:29:29 FNo. Len. Field Value +10:29:29 ============================================================================ +10:29:29 [ 1] [ 4] [0810] +10:29:29 [ 7] [ 10] [0320032836] +10:29:29 [ 11] [ 6] [155865] +10:29:29 [ 39] [ 2] [00] +10:29:29 [ 70] [ 3] [301] +10:29:29 ============================================================================ +10:29:29 Calculate Source COMM Id = 2 +10:29:29 ============================================================================ +10:29:29 + + +waiting on router queue for slot.... +10:29:40 ============================================================================ +10:29:40 Slot Id : <120> +10:29:40 Transaction Type : REQUEST +10:29:40 Received From : +10:29:40 ============================================================================ +10:29:40 FNo. Len. Field Value +10:29:40 ============================================================================ +10:29:40 [ 1] [ 4] [0800] +10:29:40 [ 7] [ 10] [0320032847] +10:29:40 [ 11] [ 6] [155866] +10:29:40 [ 70] [ 3] [301] +10:29:40 ============================================================================ +10:29:40 + + +waiting on router queue for slot.... +10:29:40 Sending to : +10:29:40 ============================================================================ +10:29:40 ============================================================================ +10:29:40 Slot Id : <120> +10:29:40 Transaction Type : RESPONSE +10:29:40 Received From : +10:29:40 ============================================================================ +10:29:40 FNo. Len. Field Value +10:29:40 ============================================================================ +10:29:40 [ 1] [ 4] [0810] +10:29:40 [ 7] [ 10] [0320032847] +10:29:40 [ 11] [ 6] [155866] +10:29:40 [ 39] [ 2] [00] +10:29:40 [ 70] [ 3] [301] +10:29:40 ============================================================================ +10:29:40 Calculate Source COMM Id = 2 +10:29:40 ============================================================================ +10:29:40 + + +waiting on router queue for slot.... +10:29:54 ============================================================================ +10:29:54 Slot Id : <166> +10:29:54 Transaction Type : REQUEST +10:29:54 Received From : +10:29:54 ============================================================================ +10:29:54 FNo. Len. Field Value +10:29:54 ============================================================================ +10:29:54 [ 1] [ 4] [0800] +10:29:54 [ 7] [ 10] [0320033742] +10:29:54 [ 11] [ 6] [078932] +10:29:54 [ 37] [ 12] [57910078932] +10:29:54 [ 70] [ 3] [301] +10:29:54 ============================================================================ +10:29:54 + + +waiting on router queue for slot.... +10:29:54 Sending to : +10:29:54 ============================================================================ +10:29:54 ============================================================================ +10:29:54 Slot Id : <166> +10:29:54 Transaction Type : RESPONSE +10:29:54 Received From : +10:29:54 ============================================================================ +10:29:54 FNo. Len. Field Value +10:29:54 ============================================================================ +10:29:54 [ 1] [ 4] [0810] +10:29:54 [ 7] [ 10] [0320033742] +10:29:54 [ 11] [ 6] [078932] +10:29:54 [ 37] [ 12] [579100789320] +10:29:54 [ 39] [ 2] [00] +10:29:54 [ 70] [ 3] [810] +10:29:54 ============================================================================ +10:29:54 Calculate Source COMM Id = 1 +10:29:54 ============================================================================ +10:29:54 + + +waiting on router queue for slot.... +10:29:55 ============================================================================ +10:29:55 Slot Id : <150> +10:29:55 Transaction Type : REQUEST +10:29:55 Received From : +10:29:55 ============================================================================ +10:29:55 FNo. Len. Field Value +10:29:55 ============================================================================ +10:29:55 [ 1] [ 4] [0800] +10:29:55 [ 2] [ 5] [02531] +10:29:55 [ 3] [ 6] [579108] +10:29:55 [ 7] [ 10] [0320032955] +10:29:55 [ 11] [ 6] [807021] +10:29:55 [ 15] [ 10] [0320032955] +10:29:55 [ 37] [ 11] [57910807021] +10:29:55 [ 70] [ 3] [001] +10:29:55 ============================================================================ +10:29:55 + + +waiting on router queue for slot.... +10:29:55 ============================================================================ +10:29:55 Slot Id : <150> +10:29:55 Transaction Type : RESPONSE +10:29:55 Received From : +10:29:55 ============================================================================ +10:29:55 FNo. Len. Field Value +10:29:55 ============================================================================ +10:29:55 [ 1] [ 4] [0810] +10:29:55 [ 7] [ 10] [0320032955] +10:29:55 [ 11] [ 6] [807021] +10:29:55 [ 15] [ 4] [0320] +10:29:55 [ 37] [ 12] [57910807021] +10:29:55 [ 39] [ 2] [00] +10:29:55 [ 70] [ 3] [001] +10:29:55 ============================================================================ +10:29:55 Sending to : +10:29:55 ============================================================================ +10:29:55 + + +waiting on router queue for slot.... +10:29:55 ============================================================================ +10:29:55 Slot Id : <153> +10:29:55 Transaction Type : REQUEST +10:29:55 Received From : +10:29:55 ============================================================================ +10:29:55 FNo. Len. Field Value +10:29:55 ============================================================================ +10:29:55 [ 1] [ 4] [0200] +10:29:55 [ 2] [ 16] [6213544002155205] +10:29:55 [ 3] [ 6] [011000] +10:29:55 [ 4] [ 12] [000010000000] +10:29:55 [ 7] [ 10] [0320103742] +10:29:55 [ 11] [ 6] [079075] +10:29:55 [ 12] [ 6] [103742] +10:29:55 [ 13] [ 4] [0320] +10:29:55 [ 14] [ 4] [4912] +10:29:55 [ 15] [ 4] [0320] +10:29:55 [ 18] [ 4] [6011] +10:29:55 [ 22] [ 3] [900] +10:29:55 [ 25] [ 2] [02] +10:29:55 [ 28] [ 9] [D00002000] +10:29:55 [ 32] [ 6] [220699] +10:29:55 [ 35] [ 32] [6213544002155205=491212015520873] +10:29:55 [ 37] [ 12] [507900132950] +10:29:55 [ 41] [ 8] [03000100] +10:29:55 [ 42] [ 15] [APTRA ] +10:29:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:29:55 [ 49] [ 3] [418] +10:29:55 [ 52] [ 16] [E55E8D206263934C] +10:29:55 ============================================================================ +10:29:55 + + +waiting on router queue for slot.... +10:29:55 Sending to : +10:29:55 ============================================================================ +10:29:55 Sending to : +10:29:55 ============================================================================ +10:29:55 ============================================================================ +10:29:55 Slot Id : <153> +10:29:55 Transaction Type : REQUEST +10:29:55 Received From : +10:29:55 ============================================================================ +10:29:55 FNo. Len. Field Value +10:29:55 ============================================================================ +10:29:55 [ 1] [ 4] [0200] +10:29:55 [ 2] [ 16] [6213544002155205] +10:29:55 [ 3] [ 6] [011000] +10:29:55 [ 4] [ 12] [000010000000] +10:29:55 [ 7] [ 10] [0320103742] +10:29:55 [ 11] [ 6] [079075] +10:29:55 [ 12] [ 6] [103742] +10:29:55 [ 13] [ 4] [0320] +10:29:55 [ 14] [ 4] [4912] +10:29:55 [ 15] [ 4] [0320] +10:29:55 [ 18] [ 4] [6011] +10:29:55 [ 22] [ 3] [900] +10:29:55 [ 25] [ 2] [02] +10:29:55 [ 28] [ 9] [D00002000] +10:29:55 [ 32] [ 6] [220699] +10:29:55 [ 35] [ 32] [6213544002155205=491212015520873] +10:29:55 [ 37] [ 12] [507900132950] +10:29:55 [ 41] [ 8] [03000100] +10:29:55 [ 42] [ 15] [APTRA ] +10:29:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:29:55 [ 49] [ 3] [418] +10:29:55 [ 52] [ 16] [E55E8D206263934C] +10:29:55 ============================================================================ +10:29:55 + + +waiting on router queue for slot.... +10:29:55 Sending to : +10:29:55 ============================================================================ +10:29:55 ============================================================================ +10:29:55 Slot Id : <153> +10:29:55 Transaction Type : REQUEST +10:29:55 Received From : +10:29:55 ============================================================================ +10:29:55 FNo. Len. Field Value +10:29:55 ============================================================================ +10:29:55 [ 1] [ 4] [0200] +10:29:55 [ 2] [ 16] [6213544002155205] +10:29:55 [ 3] [ 6] [011000] +10:29:55 [ 4] [ 12] [000010000000] +10:29:55 [ 7] [ 10] [0320103742] +10:29:55 [ 11] [ 6] [079075] +10:29:55 [ 12] [ 6] [103742] +10:29:55 [ 13] [ 4] [0320] +10:29:55 [ 14] [ 4] [4912] +10:29:55 [ 15] [ 4] [0320] +10:29:55 [ 18] [ 4] [6011] +10:29:55 [ 22] [ 3] [900] +10:29:55 [ 25] [ 2] [02] +10:29:55 [ 28] [ 9] [D00002000] +10:29:55 [ 32] [ 6] [220699] +10:29:55 [ 35] [ 32] [6213544002155205=491212015520873] +10:29:55 [ 37] [ 12] [507900132950] +10:29:55 [ 41] [ 8] [03000100] +10:29:55 [ 42] [ 15] [APTRA ] +10:29:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:29:55 [ 49] [ 3] [418] +10:29:55 [ 52] [ 16] [3031448A307C0076] +10:29:55 ============================================================================ +10:29:55 + + +waiting on router queue for slot.... +10:29:55 Sending to : <0> +10:29:55 ============================================================================ +10:29:56 ============================================================================ +10:29:56 Slot Id : <130> +10:29:56 Transaction Type : REQUEST +10:29:56 Received From : +10:29:56 ============================================================================ +10:29:56 FNo. Len. Field Value +10:29:56 ============================================================================ +10:29:56 [ 1] [ 4] [0200] +10:29:56 [ 2] [ 16] [1808930300045952] +10:29:56 [ 3] [ 6] [010000] +10:29:56 [ 4] [ 12] [000005000000] +10:29:56 [ 7] [ 10] [0320102952] +10:29:56 [ 11] [ 6] [714950] +10:29:56 [ 12] [ 6] [102952] +10:29:56 [ 13] [ 4] [0320] +10:29:56 [ 15] [ 4] [0320] +10:29:56 [ 18] [ 4] [6011] +10:29:56 [ 22] [ 3] [900] +10:29:56 [ 25] [ 2] [02] +10:29:56 [ 28] [ 9] [D00002000] +10:29:56 [ 32] [ 6] [621354] +10:29:56 [ 35] [ 27] [1808930300045952=1803500327] +10:29:56 [ 37] [ 12] [507903280362] +10:29:56 [ 41] [ 8] [14001000] +10:29:56 [ 42] [ 15] [NATIVE ] +10:29:56 [ 43] [ 40] [Viengchan province MEUANG FEUANLAO] +10:29:56 [ 49] [ 3] [418] +10:29:56 [ 52] [ 16] [EF6A65D01A95E77D] +10:29:56 ============================================================================ +10:29:56 + + +waiting on router queue for slot.... +10:29:56 Sending to : +10:29:56 ============================================================================ +10:29:56 Sending to : +10:29:56 ============================================================================ +10:29:56 ============================================================================ +10:29:56 Slot Id : <153> +10:29:56 Transaction Type : RESPONSE +10:29:56 Received From : +10:29:56 ============================================================================ +10:29:56 FNo. Len. Field Value +10:29:56 ============================================================================ +10:29:56 [ 1] [ 4] [0210] +10:29:56 [ 2] [ 16] [6213544002155205] +10:29:56 [ 3] [ 6] [011000] +10:29:56 [ 4] [ 12] [000010000000] +10:29:56 [ 7] [ 10] [0320103742] +10:29:56 [ 11] [ 6] [079075] +10:29:56 [ 12] [ 6] [103742] +10:29:56 [ 13] [ 4] [0320] +10:29:56 [ 15] [ 4] [0320] +10:29:56 [ 18] [ 4] [6011] +10:29:56 [ 32] [ 6] [220699] +10:29:56 [ 35] [ 32] [6213544002155205=491212015520873] +10:29:56 [ 37] [ 12] [507900132950] +10:29:56 [ 38] [ 6] [672992] +10:29:56 [ 39] [ 2] [00] +10:29:56 [ 41] [ 8] [03000100] +10:29:56 [ 49] [ 3] [418] +10:29:56 [ 54] [ 40] [1001418C0000653191781002418C000065319178] +10:29:56 ============================================================================ +10:29:56 Sending to : +10:29:56 ============================================================================ +10:29:56 + + +waiting on router queue for slot.... +10:29:56 ============================================================================ +10:29:56 Slot Id : <133> +10:29:56 Transaction Type : REQUEST +10:29:56 Received From : +10:29:56 ============================================================================ +10:29:56 FNo. Len. Field Value +10:29:56 ============================================================================ +10:29:56 [ 1] [ 4] [0800] +10:29:56 [ 7] [ 10] [0320032904] +10:29:56 [ 11] [ 6] [155867] +10:29:56 [ 70] [ 3] [301] +10:29:56 ============================================================================ +10:29:56 + + +waiting on router queue for slot.... +10:29:56 Sending to : +10:29:56 ============================================================================ +10:29:56 ============================================================================ +10:29:56 Slot Id : <133> +10:29:56 Transaction Type : RESPONSE +10:29:56 Received From : +10:29:56 ============================================================================ +10:29:56 FNo. Len. Field Value +10:29:56 ============================================================================ +10:29:56 [ 1] [ 4] [0810] +10:29:56 [ 7] [ 10] [0320032904] +10:29:56 [ 11] [ 6] [155867] +10:29:56 [ 39] [ 2] [00] +10:29:56 [ 70] [ 3] [301] +10:29:56 ============================================================================ +10:29:56 Calculate Source COMM Id = 2 +10:29:56 ============================================================================ +10:29:56 + + +waiting on router queue for slot.... +10:29:56 ============================================================================ +10:29:56 Slot Id : <130> +10:29:56 Transaction Type : REQUEST +10:29:56 Received From : +10:29:56 ============================================================================ +10:29:56 FNo. Len. Field Value +10:29:56 ============================================================================ +10:29:56 [ 1] [ 4] [0200] +10:29:56 [ 2] [ 16] [1808930300045952] +10:29:56 [ 3] [ 6] [010000] +10:29:56 [ 4] [ 12] [000005000000] +10:29:56 [ 7] [ 10] [0320102952] +10:29:56 [ 11] [ 6] [714950] +10:29:56 [ 12] [ 6] [102952] +10:29:56 [ 13] [ 4] [0320] +10:29:56 [ 15] [ 4] [0320] +10:29:56 [ 18] [ 4] [6011] +10:29:56 [ 22] [ 3] [900] +10:29:56 [ 25] [ 2] [02] +10:29:56 [ 28] [ 9] [D00002000] +10:29:56 [ 32] [ 6] [621354] +10:29:56 [ 35] [ 27] [1808930300045952=1803500327] +10:29:56 [ 37] [ 12] [507903280362] +10:29:56 [ 41] [ 8] [14001000] +10:29:56 [ 42] [ 15] [NATIVE ] +10:29:56 [ 43] [ 40] [Viengchan province MEUANG FEUANLAO] +10:29:56 [ 49] [ 3] [418] +10:29:56 [ 52] [ 16] [EF6A65D01A95E77D] +10:29:56 ============================================================================ +10:29:56 + + +waiting on router queue for slot.... +10:29:56 Sending to : +10:29:56 ============================================================================ +10:29:56 ============================================================================ +10:29:56 Slot Id : <130> +10:29:56 Transaction Type : REQUEST +10:29:56 Received From : +10:29:56 ============================================================================ +10:29:56 FNo. Len. Field Value +10:29:56 ============================================================================ +10:29:56 [ 1] [ 4] [0200] +10:29:56 [ 2] [ 16] [1808930300045952] +10:29:56 [ 3] [ 6] [010000] +10:29:56 [ 4] [ 12] [000005000000] +10:29:56 [ 7] [ 10] [0320102952] +10:29:56 [ 11] [ 6] [714950] +10:29:56 [ 12] [ 6] [102952] +10:29:56 [ 13] [ 4] [0320] +10:29:56 [ 15] [ 4] [0320] +10:29:56 [ 18] [ 4] [6011] +10:29:56 [ 22] [ 3] [900] +10:29:56 [ 25] [ 2] [02] +10:29:56 [ 28] [ 9] [D00002000] +10:29:56 [ 32] [ 6] [621354] +10:29:56 [ 35] [ 27] [1808930300045952=1803500327] +10:29:56 [ 37] [ 12] [507903280362] +10:29:56 [ 41] [ 8] [14001000] +10:29:56 [ 42] [ 15] [NATIVE ] +10:29:56 [ 43] [ 40] [Viengchan province MEUANG FEUANLAO] +10:29:56 [ 49] [ 3] [418] +10:29:56 [ 52] [ 16] [851DD380A4279990] +10:29:56 ============================================================================ +10:29:56 + + +waiting on router queue for slot.... +10:29:56 Sending to : <2> +10:29:56 ============================================================================ +10:29:57 ============================================================================ +10:29:57 Slot Id : <153> +10:29:57 Transaction Type : RESPONSE +10:29:57 Received From : +10:29:57 ============================================================================ +10:29:57 FNo. Len. Field Value +10:29:57 ============================================================================ +10:29:57 [ 1] [ 4] [0210] +10:29:57 [ 2] [ 16] [6213544002155205] +10:29:57 [ 3] [ 6] [011000] +10:29:57 [ 4] [ 12] [000010000000] +10:29:57 [ 7] [ 10] [0320103742] +10:29:57 [ 11] [ 6] [079075] +10:29:57 [ 12] [ 6] [103742] +10:29:57 [ 13] [ 4] [0320] +10:29:57 [ 15] [ 4] [0320] +10:29:57 [ 18] [ 4] [6011] +10:29:57 [ 32] [ 6] [220699] +10:29:57 [ 35] [ 32] [6213544002155205=491212015520873] +10:29:57 [ 37] [ 12] [507900132950] +10:29:57 [ 38] [ 6] [672992] +10:29:57 [ 39] [ 2] [00] +10:29:57 [ 41] [ 8] [03000100] +10:29:57 [ 49] [ 3] [418] +10:29:57 [ 54] [ 40] [1001418C0000653191781002418C000065319178] +10:29:57 ============================================================================ +10:29:57 Calculate Source COMM Id = 1 +10:29:57 ============================================================================ +10:29:57 + + +waiting on router queue for slot.... +10:29:57 ============================================================================ +10:29:57 Slot Id : <142> +10:29:57 Transaction Type : REQUEST +10:29:57 Received From : +10:29:57 ============================================================================ +10:29:57 FNo. Len. Field Value +10:29:57 ============================================================================ +10:29:57 [ 1] [ 4] [0200] +10:29:57 [ 2] [ 16] [1808931800001800] +10:29:57 [ 3] [ 6] [011000] +10:29:57 [ 4] [ 12] [000020000000] +10:29:57 [ 7] [ 10] [0320102953] +10:29:57 [ 11] [ 6] [714955] +10:29:57 [ 12] [ 6] [102953] +10:29:57 [ 13] [ 4] [0320] +10:29:57 [ 15] [ 4] [0320] +10:29:57 [ 18] [ 4] [6011] +10:29:57 [ 22] [ 3] [900] +10:29:57 [ 25] [ 2] [02] +10:29:57 [ 28] [ 9] [D00002000] +10:29:57 [ 32] [ 6] [621354] +10:29:57 [ 35] [ 27] [1808931800001800=1803500593] +10:29:57 [ 37] [ 12] [507903505349] +10:29:57 [ 41] [ 8] [09000700] +10:29:57 [ 42] [ 15] [NATIVE ] +10:29:57 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +10:29:57 [ 49] [ 3] [418] +10:29:57 [ 52] [ 16] [57760839F35378DB] +10:29:57 ============================================================================ +10:29:57 + + +waiting on router queue for slot.... +10:29:57 Sending to : +10:29:57 ============================================================================ +10:29:57 Sending to : +10:29:57 ============================================================================ +10:29:58 ============================================================================ +10:29:58 Slot Id : <142> +10:29:58 Transaction Type : REQUEST +10:29:58 Received From : +10:29:58 ============================================================================ +10:29:58 FNo. Len. Field Value +10:29:58 ============================================================================ +10:29:58 [ 1] [ 4] [0200] +10:29:58 [ 2] [ 16] [1808931800001800] +10:29:58 [ 3] [ 6] [011000] +10:29:58 [ 4] [ 12] [000020000000] +10:29:58 [ 7] [ 10] [0320102953] +10:29:58 [ 11] [ 6] [714955] +10:29:58 [ 12] [ 6] [102953] +10:29:58 [ 13] [ 4] [0320] +10:29:58 [ 15] [ 4] [0320] +10:29:58 [ 18] [ 4] [6011] +10:29:58 [ 22] [ 3] [900] +10:29:58 [ 25] [ 2] [02] +10:29:58 [ 28] [ 9] [D00002000] +10:29:58 [ 32] [ 6] [621354] +10:29:58 [ 35] [ 27] [1808931800001800=1803500593] +10:29:58 [ 37] [ 12] [507903505349] +10:29:58 [ 41] [ 8] [09000700] +10:29:58 [ 42] [ 15] [NATIVE ] +10:29:58 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +10:29:58 [ 49] [ 3] [418] +10:29:58 [ 52] [ 16] [57760839F35378DB] +10:29:58 ============================================================================ +10:29:58 + + +waiting on router queue for slot.... +10:29:58 Sending to : +10:29:58 ============================================================================ +10:29:58 ============================================================================ +10:29:58 Slot Id : <142> +10:29:58 Transaction Type : REQUEST +10:29:58 Received From : +10:29:58 ============================================================================ +10:29:58 FNo. Len. Field Value +10:29:58 ============================================================================ +10:29:58 [ 1] [ 4] [0200] +10:29:58 [ 2] [ 16] [1808931800001800] +10:29:58 [ 3] [ 6] [011000] +10:29:58 [ 4] [ 12] [000020000000] +10:29:58 [ 7] [ 10] [0320102953] +10:29:58 [ 11] [ 6] [714955] +10:29:58 [ 12] [ 6] [102953] +10:29:58 [ 13] [ 4] [0320] +10:29:58 [ 15] [ 4] [0320] +10:29:58 [ 18] [ 4] [6011] +10:29:58 [ 22] [ 3] [900] +10:29:58 [ 25] [ 2] [02] +10:29:58 [ 28] [ 9] [D00002000] +10:29:58 [ 32] [ 6] [621354] +10:29:58 [ 35] [ 27] [1808931800001800=1803500593] +10:29:58 [ 37] [ 12] [507903505349] +10:29:58 [ 41] [ 8] [09000700] +10:29:58 [ 42] [ 15] [NATIVE ] +10:29:58 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +10:29:58 [ 49] [ 3] [418] +10:29:58 [ 52] [ 16] [1EBA66694F3FF345] +10:29:58 ============================================================================ +10:29:58 + + +waiting on router queue for slot.... +10:29:58 Sending to : <2> +10:29:58 ============================================================================ +10:30:01 ============================================================================ +10:30:01 Slot Id : <130> +10:30:01 Transaction Type : RESPONSE +10:30:01 Received From : +10:30:01 ============================================================================ +10:30:01 FNo. Len. Field Value +10:30:01 ============================================================================ +10:30:01 [ 1] [ 4] [0210] +10:30:01 [ 2] [ 16] [1808930300045952] +10:30:01 [ 3] [ 6] [010000] +10:30:01 [ 4] [ 12] [000005000000] +10:30:01 [ 6] [ 12] [000005000000] +10:30:01 [ 7] [ 10] [0320102952] +10:30:01 [ 11] [ 6] [714950] +10:30:01 [ 12] [ 6] [102952] +10:30:01 [ 13] [ 4] [0320] +10:30:01 [ 18] [ 4] [6011] +10:30:01 [ 19] [ 3] [418] +10:30:01 [ 22] [ 3] [021] +10:30:01 [ 32] [ 6] [621354] +10:30:01 [ 35] [ 27] [1808930300045952=1803500327] +10:30:01 [ 37] [ 12] [507903280362] +10:30:01 [ 38] [ 6] [714950] +10:30:01 [ 39] [ 2] [00] +10:30:01 [ 41] [ 8] [14001000] +10:30:01 [ 49] [ 3] [418] +10:30:01 [ 52] [ 16] [851DD380A4279990] +10:30:01 [ 54] [ 20] [1001418C000096704800] +10:30:01 ============================================================================ +10:30:01 Sending to : +10:30:01 ============================================================================ +10:30:01 + + +waiting on router queue for slot.... +10:30:03 ============================================================================ +10:30:03 Slot Id : <130> +10:30:03 Transaction Type : RESPONSE +10:30:03 Received From : +10:30:03 ============================================================================ +10:30:03 FNo. Len. Field Value +10:30:03 ============================================================================ +10:30:03 [ 1] [ 4] [0210] +10:30:03 [ 2] [ 16] [1808930300045952] +10:30:03 [ 3] [ 6] [010000] +10:30:03 [ 4] [ 12] [000005000000] +10:30:03 [ 6] [ 12] [000005000000] +10:30:03 [ 7] [ 10] [0320102952] +10:30:03 [ 11] [ 6] [714950] +10:30:03 [ 12] [ 6] [102952] +10:30:03 [ 13] [ 4] [0320] +10:30:03 [ 18] [ 4] [6011] +10:30:03 [ 19] [ 3] [418] +10:30:03 [ 22] [ 3] [021] +10:30:03 [ 32] [ 6] [621354] +10:30:03 [ 35] [ 27] [1808930300045952=1803500327] +10:30:03 [ 37] [ 12] [507903280362] +10:30:03 [ 38] [ 6] [714950] +10:30:03 [ 39] [ 2] [00] +10:30:03 [ 41] [ 8] [14001000] +10:30:03 [ 49] [ 3] [418] +10:30:03 [ 52] [ 16] [851DD380A4279990] +10:30:03 [ 54] [ 20] [1001418C000096704800] +10:30:03 ============================================================================ +10:30:03 Calculate Source COMM Id = 0 +10:30:03 ============================================================================ +10:30:03 + + +waiting on router queue for slot.... +10:30:08 ============================================================================ +10:30:08 Slot Id : <142> +10:30:08 Transaction Type : RESPONSE +10:30:08 Received From : +10:30:08 ============================================================================ +10:30:08 FNo. Len. Field Value +10:30:08 ============================================================================ +10:30:08 [ 1] [ 4] [0210] +10:30:08 [ 2] [ 16] [1808931800001800] +10:30:08 [ 3] [ 6] [011000] +10:30:08 [ 4] [ 12] [000020000000] +10:30:08 [ 6] [ 12] [000020000000] +10:30:08 [ 7] [ 10] [0320102953] +10:30:08 [ 11] [ 6] [714955] +10:30:08 [ 12] [ 6] [102953] +10:30:08 [ 13] [ 4] [0320] +10:30:08 [ 18] [ 4] [6011] +10:30:08 [ 19] [ 3] [418] +10:30:08 [ 22] [ 3] [021] +10:30:08 [ 32] [ 6] [621354] +10:30:08 [ 35] [ 27] [1808931800001800=1803500593] +10:30:08 [ 37] [ 12] [507903505349] +10:30:08 [ 38] [ 6] [714955] +10:30:08 [ 39] [ 2] [00] +10:30:08 [ 41] [ 8] [09000700] +10:30:08 [ 49] [ 3] [418] +10:30:08 [ 52] [ 16] [1EBA66694F3FF345] +10:30:08 [ 54] [ 20] [1001418C000010917700] +10:30:08 ============================================================================ +10:30:08 Sending to : +10:30:08 ============================================================================ +10:30:08 + + +waiting on router queue for slot.... +10:30:09 ============================================================================ +10:30:09 Slot Id : <142> +10:30:09 Transaction Type : RESPONSE +10:30:09 Received From : +10:30:09 ============================================================================ +10:30:09 FNo. Len. Field Value +10:30:09 ============================================================================ +10:30:09 [ 1] [ 4] [0210] +10:30:09 [ 2] [ 16] [1808931800001800] +10:30:09 [ 3] [ 6] [011000] +10:30:09 [ 4] [ 12] [000020000000] +10:30:09 [ 6] [ 12] [000020000000] +10:30:09 [ 7] [ 10] [0320102953] +10:30:09 [ 11] [ 6] [714955] +10:30:09 [ 12] [ 6] [102953] +10:30:09 [ 13] [ 4] [0320] +10:30:09 [ 18] [ 4] [6011] +10:30:09 [ 19] [ 3] [418] +10:30:09 [ 22] [ 3] [021] +10:30:09 [ 32] [ 6] [621354] +10:30:09 [ 35] [ 27] [1808931800001800=1803500593] +10:30:09 [ 37] [ 12] [507903505349] +10:30:09 [ 38] [ 6] [714955] +10:30:09 [ 39] [ 2] [00] +10:30:09 [ 41] [ 8] [09000700] +10:30:09 [ 49] [ 3] [418] +10:30:09 [ 52] [ 16] [1EBA66694F3FF345] +10:30:09 [ 54] [ 20] [1001418C000010917700] +10:30:09 ============================================================================ +10:30:09 Calculate Source COMM Id = 0 +10:30:09 ============================================================================ +10:30:09 + + +waiting on router queue for slot.... +10:30:12 ============================================================================ +10:30:12 Slot Id : <110> +10:30:12 Transaction Type : REQUEST +10:30:12 Received From : +10:30:12 ============================================================================ +10:30:12 FNo. Len. Field Value +10:30:12 ============================================================================ +10:30:12 [ 1] [ 4] [0800] +10:30:12 [ 7] [ 10] [0320032920] +10:30:12 [ 11] [ 6] [155868] +10:30:12 [ 70] [ 3] [301] +10:30:12 ============================================================================ +10:30:12 + + +waiting on router queue for slot.... +10:30:12 Sending to : +10:30:12 ============================================================================ +10:30:12 ============================================================================ +10:30:12 Slot Id : <110> +10:30:13 Transaction Type : RESPONSE +10:30:13 Received From : +10:30:13 ============================================================================ +10:30:13 FNo. Len. Field Value +10:30:13 ============================================================================ +10:30:13 [ 1] [ 4] [0810] +10:30:13 [ 7] [ 10] [0320032920] +10:30:13 [ 11] [ 6] [155868] +10:30:13 [ 39] [ 2] [00] +10:30:13 [ 70] [ 3] [301] +10:30:13 ============================================================================ +10:30:13 Calculate Source COMM Id = 2 +10:30:13 ============================================================================ +10:30:13 + + +waiting on router queue for slot.... +10:30:14 ============================================================================ +10:30:14 Slot Id : <167> +10:30:14 Transaction Type : REQUEST +10:30:14 Received From : +10:30:14 ============================================================================ +10:30:14 FNo. Len. Field Value +10:30:14 ============================================================================ +10:30:14 [ 1] [ 4] [0200] +10:30:14 [ 2] [ 16] [6213545000078430] +10:30:14 [ 3] [ 6] [010000] +10:30:14 [ 4] [ 12] [000150000000] +10:30:14 [ 7] [ 10] [0320032921] +10:30:14 [ 11] [ 6] [268099] +10:30:14 [ 12] [ 6] [102921] +10:30:14 [ 13] [ 4] [0320] +10:30:14 [ 14] [ 4] [4912] +10:30:14 [ 15] [ 4] [0320] +10:30:14 [ 18] [ 4] [6011] +10:30:14 [ 19] [ 3] [418] +10:30:14 [ 22] [ 3] [021] +10:30:14 [ 25] [ 2] [01] +10:30:14 [ 28] [ 9] [D00002000] +10:30:14 [ 32] [ 6] [180893] +10:30:14 [ 35] [ 32] [6213545000078430=491212017843834] +10:30:14 [ 37] [ 12] [507903268099] +10:30:14 [ 41] [ 8] [0112CPBR] +10:30:14 [ 42] [ 15] [999999 ] +10:30:14 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:30:14 [ 49] [ 3] [418] +10:30:14 [ 52] [ 16] [27F7145C26800828] +10:30:14 ============================================================================ +10:30:14 + + +waiting on router queue for slot.... +10:30:14 Sending to : +10:30:14 ============================================================================ +10:30:14 Sending to : +10:30:14 ============================================================================ +10:30:15 ============================================================================ +10:30:15 Slot Id : <167> +10:30:15 Transaction Type : REQUEST +10:30:15 Received From : +10:30:15 ============================================================================ +10:30:15 FNo. Len. Field Value +10:30:15 ============================================================================ +10:30:15 [ 1] [ 4] [0200] +10:30:15 [ 2] [ 16] [6213545000078430] +10:30:15 [ 3] [ 6] [010000] +10:30:15 [ 4] [ 12] [000150000000] +10:30:15 [ 7] [ 10] [0320032921] +10:30:15 [ 11] [ 6] [268099] +10:30:15 [ 12] [ 6] [102921] +10:30:15 [ 13] [ 4] [0320] +10:30:15 [ 14] [ 4] [4912] +10:30:15 [ 15] [ 4] [0320] +10:30:15 [ 18] [ 4] [6011] +10:30:15 [ 19] [ 3] [418] +10:30:15 [ 22] [ 3] [021] +10:30:15 [ 25] [ 2] [01] +10:30:15 [ 28] [ 9] [D00002000] +10:30:15 [ 32] [ 6] [180893] +10:30:15 [ 35] [ 32] [6213545000078430=491212017843834] +10:30:15 [ 37] [ 12] [507903268099] +10:30:15 [ 41] [ 8] [0112CPBR] +10:30:15 [ 42] [ 15] [999999 ] +10:30:15 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:30:15 [ 49] [ 3] [418] +10:30:15 [ 52] [ 16] [27F7145C26800828] +10:30:15 ============================================================================ +10:30:15 + + +waiting on router queue for slot.... +10:30:15 Sending to : +10:30:15 ============================================================================ +10:30:15 ============================================================================ +10:30:15 Slot Id : <167> +10:30:15 Transaction Type : REQUEST +10:30:15 Received From : +10:30:15 ============================================================================ +10:30:15 FNo. Len. Field Value +10:30:15 ============================================================================ +10:30:15 [ 1] [ 4] [0200] +10:30:15 [ 2] [ 16] [6213545000078430] +10:30:15 [ 3] [ 6] [010000] +10:30:15 [ 4] [ 12] [000150000000] +10:30:15 [ 7] [ 10] [0320032921] +10:30:15 [ 11] [ 6] [268099] +10:30:15 [ 12] [ 6] [102921] +10:30:15 [ 13] [ 4] [0320] +10:30:15 [ 14] [ 4] [4912] +10:30:15 [ 15] [ 4] [0320] +10:30:15 [ 18] [ 4] [6011] +10:30:15 [ 19] [ 3] [418] +10:30:15 [ 22] [ 3] [021] +10:30:15 [ 25] [ 2] [01] +10:30:15 [ 28] [ 9] [D00002000] +10:30:15 [ 32] [ 6] [180893] +10:30:15 [ 35] [ 32] [6213545000078430=491212017843834] +10:30:15 [ 37] [ 12] [507903268099] +10:30:15 [ 41] [ 8] [0112CPBR] +10:30:15 [ 42] [ 15] [999999 ] +10:30:15 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:30:15 [ 49] [ 3] [418] +10:30:15 [ 52] [ 16] [751E9BE395ABA06F] +10:30:15 ============================================================================ +10:30:15 + + +waiting on router queue for slot.... +10:30:15 Sending to : <0> +10:30:15 ============================================================================ +10:30:15 ============================================================================ +10:30:15 Slot Id : <167> +10:30:15 Transaction Type : RESPONSE +10:30:15 Received From : +10:30:15 ============================================================================ +10:30:15 FNo. Len. Field Value +10:30:15 ============================================================================ +10:30:15 [ 1] [ 4] [0210] +10:30:15 [ 2] [ 16] [6213545000078430] +10:30:15 [ 3] [ 6] [010000] +10:30:15 [ 4] [ 12] [000150000000] +10:30:15 [ 7] [ 10] [0320032921] +10:30:15 [ 11] [ 6] [268099] +10:30:15 [ 12] [ 6] [102921] +10:30:15 [ 13] [ 4] [0320] +10:30:15 [ 15] [ 4] [0320] +10:30:15 [ 18] [ 4] [6011] +10:30:15 [ 19] [ 3] [418] +10:30:15 [ 22] [ 3] [021] +10:30:15 [ 32] [ 6] [180893] +10:30:15 [ 35] [ 32] [6213545000078430=491212017843834] +10:30:15 [ 37] [ 12] [507903268099] +10:30:15 [ 39] [ 2] [61] +10:30:15 [ 41] [ 8] [0112CPBR] +10:30:15 [ 49] [ 3] [418] +10:30:15 ============================================================================ +10:30:15 Sending to : +10:30:15 ============================================================================ +10:30:15 + + +waiting on router queue for slot.... +10:30:16 ============================================================================ +10:30:16 Slot Id : <167> +10:30:16 Transaction Type : RESPONSE +10:30:16 Received From : +10:30:16 ============================================================================ +10:30:16 FNo. Len. Field Value +10:30:16 ============================================================================ +10:30:16 [ 1] [ 4] [0210] +10:30:16 [ 2] [ 16] [6213545000078430] +10:30:16 [ 3] [ 6] [010000] +10:30:16 [ 4] [ 12] [000150000000] +10:30:16 [ 7] [ 10] [0320032921] +10:30:16 [ 11] [ 6] [268099] +10:30:16 [ 12] [ 6] [102921] +10:30:16 [ 13] [ 4] [0320] +10:30:16 [ 15] [ 4] [0320] +10:30:16 [ 18] [ 4] [6011] +10:30:16 [ 19] [ 3] [418] +10:30:16 [ 22] [ 3] [021] +10:30:16 [ 32] [ 6] [180893] +10:30:16 [ 35] [ 32] [6213545000078430=491212017843834] +10:30:16 [ 37] [ 12] [507903268099] +10:30:16 [ 39] [ 2] [61] +10:30:16 [ 41] [ 8] [0112CPBR] +10:30:16 [ 49] [ 3] [418] +10:30:16 ============================================================================ +10:30:16 Calculate Source COMM Id = 2 +10:30:16 ============================================================================ +10:30:16 + + +waiting on router queue for slot.... +10:30:17 ============================================================================ +10:30:17 Slot Id : <137> +10:30:17 Transaction Type : REQUEST +10:30:17 Received From : +10:30:17 ============================================================================ +10:30:17 FNo. Len. Field Value +10:30:17 ============================================================================ +10:30:17 [ 1] [ 4] [0200] +10:30:17 [ 2] [ 16] [6213544001016226] +10:30:17 [ 3] [ 6] [010000] +10:30:17 [ 4] [ 12] [000100000000] +10:30:17 [ 7] [ 10] [0320102808] +10:30:17 [ 11] [ 6] [938761] +10:30:17 [ 12] [ 6] [102808] +10:30:17 [ 13] [ 4] [0320] +10:30:17 [ 15] [ 4] [0320] +10:30:17 [ 18] [ 4] [6011] +10:30:17 [ 19] [ 3] [418] +10:30:17 [ 22] [ 3] [021] +10:30:17 [ 25] [ 2] [01] +10:30:17 [ 28] [ 9] [D00002000] +10:30:17 [ 32] [ 6] [668899] +10:30:17 [ 35] [ 32] [6213544001016226=491212011622274] +10:30:17 [ 37] [ 12] [507902279314] +10:30:17 [ 41] [ 8] [03003005] +10:30:17 [ 42] [ 15] [APT ] +10:30:17 [ 43] [ 40] [ TEACHER COLLEGE 2 LUANGNA] +10:30:17 [ 49] [ 3] [418] +10:30:17 [ 52] [ 16] [6D8BFCBFFABE6D99] +10:30:17 ============================================================================ +10:30:17 + + +waiting on router queue for slot.... +10:30:17 Sending to : +10:30:17 ============================================================================ +10:30:17 Sending to : +10:30:17 ============================================================================ +10:30:17 ============================================================================ +10:30:17 Slot Id : <137> +10:30:17 Transaction Type : REQUEST +10:30:17 Received From : +10:30:17 ============================================================================ +10:30:17 FNo. Len. Field Value +10:30:17 ============================================================================ +10:30:17 [ 1] [ 4] [0200] +10:30:17 [ 2] [ 16] [6213544001016226] +10:30:17 [ 3] [ 6] [010000] +10:30:17 [ 4] [ 12] [000100000000] +10:30:17 [ 7] [ 10] [0320102808] +10:30:17 [ 11] [ 6] [938761] +10:30:17 [ 12] [ 6] [102808] +10:30:17 [ 13] [ 4] [0320] +10:30:17 [ 15] [ 4] [0320] +10:30:17 [ 18] [ 4] [6011] +10:30:17 [ 19] [ 3] [418] +10:30:17 [ 22] [ 3] [021] +10:30:17 [ 25] [ 2] [01] +10:30:17 [ 28] [ 9] [D00002000] +10:30:17 [ 32] [ 6] [668899] +10:30:17 [ 35] [ 32] [6213544001016226=491212011622274] +10:30:17 [ 37] [ 12] [507902279314] +10:30:17 [ 41] [ 8] [03003005] +10:30:17 [ 42] [ 15] [APT ] +10:30:17 [ 43] [ 40] [ TEACHER COLLEGE 2 LUANGNA] +10:30:17 [ 49] [ 3] [418] +10:30:17 [ 52] [ 16] [6D8BFCBFFABE6D99] +10:30:17 ============================================================================ +10:30:17 + + +waiting on router queue for slot.... +10:30:17 Sending to : +10:30:17 ============================================================================ +10:30:17 ============================================================================ +10:30:17 Slot Id : <137> +10:30:17 Transaction Type : REQUEST +10:30:17 Received From : +10:30:17 ============================================================================ +10:30:17 FNo. Len. Field Value +10:30:17 ============================================================================ +10:30:17 [ 1] [ 4] [0200] +10:30:17 [ 2] [ 16] [6213544001016226] +10:30:17 [ 3] [ 6] [010000] +10:30:17 [ 4] [ 12] [000100000000] +10:30:17 [ 7] [ 10] [0320102808] +10:30:17 [ 11] [ 6] [938761] +10:30:17 [ 12] [ 6] [102808] +10:30:17 [ 13] [ 4] [0320] +10:30:17 [ 15] [ 4] [0320] +10:30:17 [ 18] [ 4] [6011] +10:30:17 [ 19] [ 3] [418] +10:30:17 [ 22] [ 3] [021] +10:30:17 [ 25] [ 2] [01] +10:30:17 [ 28] [ 9] [D00002000] +10:30:17 [ 32] [ 6] [668899] +10:30:17 [ 35] [ 32] [6213544001016226=491212011622274] +10:30:17 [ 37] [ 12] [507902279314] +10:30:17 [ 41] [ 8] [03003005] +10:30:17 [ 42] [ 15] [APT ] +10:30:17 [ 43] [ 40] [ TEACHER COLLEGE 2 LUANGNA] +10:30:17 [ 49] [ 3] [418] +10:30:17 [ 52] [ 16] [1F303D00EB7F5363] +10:30:17 ============================================================================ +10:30:17 + + +waiting on router queue for slot.... +10:30:17 Sending to : <0> +10:30:17 ============================================================================ +10:30:18 ============================================================================ +10:30:18 Slot Id : <137> +10:30:18 Transaction Type : RESPONSE +10:30:18 Received From : +10:30:18 ============================================================================ +10:30:18 FNo. Len. Field Value +10:30:18 ============================================================================ +10:30:18 [ 1] [ 4] [0210] +10:30:18 [ 2] [ 16] [6213544001016226] +10:30:18 [ 3] [ 6] [010000] +10:30:18 [ 4] [ 12] [000100000000] +10:30:18 [ 7] [ 10] [0320102808] +10:30:18 [ 11] [ 6] [938761] +10:30:18 [ 12] [ 6] [102808] +10:30:18 [ 13] [ 4] [0320] +10:30:18 [ 15] [ 4] [0320] +10:30:18 [ 18] [ 4] [6011] +10:30:18 [ 19] [ 3] [418] +10:30:18 [ 32] [ 6] [668899] +10:30:18 [ 35] [ 32] [6213544001016226=491212011622274] +10:30:18 [ 37] [ 12] [507902279314] +10:30:18 [ 38] [ 6] [628987] +10:30:18 [ 39] [ 2] [00] +10:30:18 [ 41] [ 8] [03003005] +10:30:18 [ 49] [ 3] [418] +10:30:18 [ 54] [ 40] [0001418C0003040164610002418C000304016461] +10:30:18 ============================================================================ +10:30:18 Sending to : +10:30:18 ============================================================================ +10:30:18 + + +waiting on router queue for slot.... +10:30:19 ============================================================================ +10:30:19 Slot Id : <137> +10:30:19 Transaction Type : RESPONSE +10:30:19 Received From : +10:30:19 ============================================================================ +10:30:19 FNo. Len. Field Value +10:30:19 ============================================================================ +10:30:19 [ 1] [ 4] [0210] +10:30:19 [ 2] [ 16] [6213544001016226] +10:30:19 [ 3] [ 6] [010000] +10:30:19 [ 4] [ 12] [000100000000] +10:30:19 [ 7] [ 10] [0320102808] +10:30:19 [ 11] [ 6] [938761] +10:30:19 [ 12] [ 6] [102808] +10:30:19 [ 13] [ 4] [0320] +10:30:19 [ 15] [ 4] [0320] +10:30:19 [ 18] [ 4] [6011] +10:30:19 [ 19] [ 3] [418] +10:30:19 [ 32] [ 6] [668899] +10:30:19 [ 35] [ 32] [6213544001016226=491212011622274] +10:30:19 [ 37] [ 12] [507902279314] +10:30:19 [ 38] [ 6] [628987] +10:30:19 [ 39] [ 2] [00] +10:30:19 [ 41] [ 8] [03003005] +10:30:19 [ 49] [ 3] [418] +10:30:19 [ 54] [ 40] [0001418C0003040164610002418C000304016461] +10:30:19 ============================================================================ +10:30:19 Calculate Source COMM Id = 4 +10:30:19 ============================================================================ +10:30:19 + + +waiting on router queue for slot.... +10:30:32 ============================================================================ +10:30:32 Slot Id : <159> +10:30:32 Transaction Type : REQUEST +10:30:32 Received From : +10:30:32 ============================================================================ +10:30:32 FNo. Len. Field Value +10:30:32 ============================================================================ +10:30:32 [ 1] [ 4] [0800] +10:30:32 [ 7] [ 10] [0320032939] +10:30:32 [ 11] [ 6] [155869] +10:30:32 [ 70] [ 3] [301] +10:30:32 ============================================================================ +10:30:32 + + +waiting on router queue for slot.... +10:30:32 Sending to : +10:30:32 ============================================================================ +10:30:32 ============================================================================ +10:30:32 Slot Id : <159> +10:30:32 Transaction Type : RESPONSE +10:30:32 Received From : +10:30:32 ============================================================================ +10:30:32 FNo. Len. Field Value +10:30:32 ============================================================================ +10:30:32 [ 1] [ 4] [0810] +10:30:32 [ 7] [ 10] [0320032939] +10:30:32 [ 11] [ 6] [155869] +10:30:32 [ 39] [ 2] [00] +10:30:32 [ 70] [ 3] [301] +10:30:32 ============================================================================ +10:30:32 Calculate Source COMM Id = 2 +10:30:32 ============================================================================ +10:30:32 + + +waiting on router queue for slot.... +10:30:42 ============================================================================ +10:30:42 Slot Id : <175> +10:30:42 Transaction Type : REQUEST +10:30:42 Received From : +10:30:42 ============================================================================ +10:30:42 FNo. Len. Field Value +10:30:42 ============================================================================ +10:30:42 [ 1] [ 4] [0200] +10:30:42 [ 2] [ 16] [6213545001073927] +10:30:42 [ 3] [ 6] [302000] +10:30:42 [ 7] [ 10] [0320032950] +10:30:42 [ 11] [ 6] [268101] +10:30:42 [ 12] [ 6] [102950] +10:30:42 [ 13] [ 4] [0320] +10:30:42 [ 14] [ 4] [4912] +10:30:42 [ 15] [ 4] [0320] +10:30:42 [ 18] [ 4] [6011] +10:30:42 [ 19] [ 3] [418] +10:30:42 [ 22] [ 3] [021] +10:30:42 [ 25] [ 2] [01] +10:30:42 [ 32] [ 6] [180893] +10:30:42 [ 35] [ 32] [6213545001073927=491212017392088] +10:30:42 [ 37] [ 12] [507903268101] +10:30:42 [ 41] [ 8] [0484HPVX] +10:30:42 [ 42] [ 15] [999999 ] +10:30:42 [ 43] [ 40] [ATM VIENGXAI HUAPHAN PRO, Viengxai, Lao ] +10:30:42 [ 49] [ 3] [418] +10:30:42 [ 52] [ 16] [9184DDD29A8B696C] +10:30:42 ============================================================================ +10:30:42 + + +waiting on router queue for slot.... +10:30:42 Sending to : +10:30:42 ============================================================================ +10:30:42 Sending to : +10:30:42 ============================================================================ +10:30:43 ============================================================================ +10:30:43 Slot Id : <175> +10:30:43 Transaction Type : REQUEST +10:30:43 Received From : +10:30:43 ============================================================================ +10:30:43 FNo. Len. Field Value +10:30:43 ============================================================================ +10:30:43 [ 1] [ 4] [0200] +10:30:43 [ 2] [ 16] [6213545001073927] +10:30:43 [ 3] [ 6] [302000] +10:30:43 [ 7] [ 10] [0320032950] +10:30:43 [ 11] [ 6] [268101] +10:30:43 [ 12] [ 6] [102950] +10:30:43 [ 13] [ 4] [0320] +10:30:43 [ 14] [ 4] [4912] +10:30:43 [ 15] [ 4] [0320] +10:30:43 [ 18] [ 4] [6011] +10:30:43 [ 19] [ 3] [418] +10:30:43 [ 22] [ 3] [021] +10:30:43 [ 25] [ 2] [01] +10:30:43 [ 32] [ 6] [180893] +10:30:43 [ 35] [ 32] [6213545001073927=491212017392088] +10:30:43 [ 37] [ 12] [507903268101] +10:30:43 [ 41] [ 8] [0484HPVX] +10:30:43 [ 42] [ 15] [999999 ] +10:30:43 [ 43] [ 40] [ATM VIENGXAI HUAPHAN PRO, Viengxai, Lao ] +10:30:43 [ 49] [ 3] [418] +10:30:43 [ 52] [ 16] [9184DDD29A8B696C] +10:30:43 ============================================================================ +10:30:43 + + +waiting on router queue for slot.... +10:30:43 Sending to : +10:30:43 ============================================================================ +10:30:43 ============================================================================ +10:30:43 Slot Id : <175> +10:30:43 Transaction Type : REQUEST +10:30:43 Received From : +10:30:43 ============================================================================ +10:30:43 FNo. Len. Field Value +10:30:43 ============================================================================ +10:30:43 [ 1] [ 4] [0200] +10:30:43 [ 2] [ 16] [6213545001073927] +10:30:43 [ 3] [ 6] [302000] +10:30:43 [ 7] [ 10] [0320032950] +10:30:43 [ 11] [ 6] [268101] +10:30:43 [ 12] [ 6] [102950] +10:30:43 [ 13] [ 4] [0320] +10:30:43 [ 14] [ 4] [4912] +10:30:43 [ 15] [ 4] [0320] +10:30:43 [ 18] [ 4] [6011] +10:30:43 [ 19] [ 3] [418] +10:30:43 [ 22] [ 3] [021] +10:30:43 [ 25] [ 2] [01] +10:30:43 [ 32] [ 6] [180893] +10:30:43 [ 35] [ 32] [6213545001073927=491212017392088] +10:30:43 [ 37] [ 12] [507903268101] +10:30:43 [ 41] [ 8] [0484HPVX] +10:30:43 [ 42] [ 15] [999999 ] +10:30:43 [ 43] [ 40] [ATM VIENGXAI HUAPHAN PRO, Viengxai, Lao ] +10:30:43 [ 49] [ 3] [418] +10:30:43 [ 52] [ 16] [CED5F22FB92765E8] +10:30:43 ============================================================================ +10:30:43 + + +waiting on router queue for slot.... +10:30:43 Sending to : <0> +10:30:43 ============================================================================ +10:30:43 ============================================================================ +10:30:43 Slot Id : <175> +10:30:43 Transaction Type : RESPONSE +10:30:43 Received From : +10:30:43 ============================================================================ +10:30:43 FNo. Len. Field Value +10:30:43 ============================================================================ +10:30:43 [ 1] [ 4] [0210] +10:30:43 [ 2] [ 16] [6213545001073927] +10:30:43 [ 3] [ 6] [302000] +10:30:43 [ 4] [ 12] [000000000000] +10:30:43 [ 7] [ 10] [0320032950] +10:30:43 [ 11] [ 6] [268101] +10:30:43 [ 12] [ 6] [102950] +10:30:43 [ 13] [ 4] [0320] +10:30:43 [ 15] [ 4] [0320] +10:30:43 [ 18] [ 4] [6011] +10:30:43 [ 19] [ 3] [418] +10:30:43 [ 32] [ 6] [180893] +10:30:43 [ 35] [ 32] [6213545001073927=491212017392088] +10:30:43 [ 37] [ 12] [507903268101] +10:30:43 [ 38] [ 6] [312742] +10:30:43 [ 39] [ 2] [00] +10:30:43 [ 41] [ 8] [0484HPVX] +10:30:43 [ 49] [ 3] [418] +10:30:43 [ 54] [ 40] [2001418C0001660831512002418C000166083151] +10:30:43 ============================================================================ +10:30:43 Sending to : +10:30:43 ============================================================================ +10:30:43 + + +waiting on router queue for slot.... +10:30:45 ============================================================================ +10:30:45 Slot Id : <175> +10:30:45 Transaction Type : RESPONSE +10:30:45 Received From : +10:30:45 ============================================================================ +10:30:45 FNo. Len. Field Value +10:30:45 ============================================================================ +10:30:45 [ 1] [ 4] [0210] +10:30:45 [ 2] [ 16] [6213545001073927] +10:30:45 [ 3] [ 6] [302000] +10:30:45 [ 4] [ 12] [000000000000] +10:30:45 [ 7] [ 10] [0320032950] +10:30:45 [ 11] [ 6] [268101] +10:30:45 [ 12] [ 6] [102950] +10:30:45 [ 13] [ 4] [0320] +10:30:45 [ 15] [ 4] [0320] +10:30:45 [ 18] [ 4] [6011] +10:30:45 [ 19] [ 3] [418] +10:30:45 [ 32] [ 6] [180893] +10:30:45 [ 35] [ 32] [6213545001073927=491212017392088] +10:30:45 [ 37] [ 12] [507903268101] +10:30:45 [ 38] [ 6] [312742] +10:30:45 [ 39] [ 2] [00] +10:30:45 [ 41] [ 8] [0484HPVX] +10:30:45 [ 49] [ 3] [418] +10:30:45 [ 54] [ 40] [2001418C0001660831512002418C000166083151] +10:30:45 ============================================================================ +10:30:45 Calculate Source COMM Id = 2 +10:30:45 ============================================================================ +10:30:45 + + +waiting on router queue for slot.... +10:30:57 ============================================================================ +10:30:57 Slot Id : <128> +10:30:57 Transaction Type : REQUEST +10:30:57 Received From : +10:30:57 ============================================================================ +10:30:57 FNo. Len. Field Value +10:30:57 ============================================================================ +10:30:57 [ 1] [ 4] [0800] +10:30:57 [ 2] [ 5] [02531] +10:30:57 [ 3] [ 6] [579108] +10:30:57 [ 7] [ 10] [0320033057] +10:30:57 [ 11] [ 6] [807022] +10:30:57 [ 15] [ 10] [0320033057] +10:30:57 [ 37] [ 11] [57910807022] +10:30:57 [ 70] [ 3] [001] +10:30:57 ============================================================================ +10:30:57 + + +waiting on router queue for slot.... +10:30:57 ============================================================================ +10:30:57 Slot Id : <128> +10:30:57 Transaction Type : RESPONSE +10:30:57 Received From : +10:30:57 ============================================================================ +10:30:57 FNo. Len. Field Value +10:30:57 ============================================================================ +10:30:57 [ 1] [ 4] [0810] +10:30:57 [ 7] [ 10] [0320033057] +10:30:57 [ 11] [ 6] [807022] +10:30:57 [ 15] [ 4] [0320] +10:30:57 [ 37] [ 12] [57910807022] +10:30:57 [ 39] [ 2] [00] +10:30:57 [ 70] [ 3] [001] +10:30:57 ============================================================================ +10:30:57 Sending to : +10:30:57 ============================================================================ +10:30:57 + + +waiting on router queue for slot.... +10:30:59 ============================================================================ +10:30:59 Slot Id : <146> +10:30:59 Transaction Type : REQUEST +10:30:59 Received From : +10:30:59 ============================================================================ +10:30:59 FNo. Len. Field Value +10:30:59 ============================================================================ +10:30:59 [ 1] [ 4] [0800] +10:30:59 [ 7] [ 10] [0320033006] +10:30:59 [ 11] [ 6] [155870] +10:30:59 [ 70] [ 3] [301] +10:30:59 ============================================================================ +10:30:59 + + +waiting on router queue for slot.... +10:30:59 Sending to : +10:30:59 ============================================================================ +10:30:59 ============================================================================ +10:30:59 Slot Id : <146> +10:30:59 Transaction Type : RESPONSE +10:30:59 Received From : +10:30:59 ============================================================================ +10:30:59 FNo. Len. Field Value +10:30:59 ============================================================================ +10:30:59 [ 1] [ 4] [0810] +10:30:59 [ 7] [ 10] [0320033006] +10:30:59 [ 11] [ 6] [155870] +10:30:59 [ 39] [ 2] [00] +10:30:59 [ 70] [ 3] [301] +10:30:59 ============================================================================ +10:30:59 Calculate Source COMM Id = 2 +10:30:59 ============================================================================ +10:30:59 + + +waiting on router queue for slot.... +10:31:15 ============================================================================ +10:31:15 Slot Id : <141> +10:31:15 Transaction Type : REQUEST +10:31:15 Received From : +10:31:15 ============================================================================ +10:31:15 FNo. Len. Field Value +10:31:15 ============================================================================ +10:31:15 [ 1] [ 4] [0800] +10:31:15 [ 7] [ 10] [0320033023] +10:31:15 [ 11] [ 6] [155871] +10:31:15 [ 70] [ 3] [301] +10:31:15 ============================================================================ +10:31:15 + + +waiting on router queue for slot.... +10:31:15 Sending to : +10:31:15 ============================================================================ +10:31:15 ============================================================================ +10:31:15 Slot Id : <141> +10:31:15 Transaction Type : RESPONSE +10:31:15 Received From : +10:31:15 ============================================================================ +10:31:15 FNo. Len. Field Value +10:31:15 ============================================================================ +10:31:15 [ 1] [ 4] [0810] +10:31:15 [ 7] [ 10] [0320033023] +10:31:15 [ 11] [ 6] [155871] +10:31:15 [ 39] [ 2] [00] +10:31:15 [ 70] [ 3] [301] +10:31:15 ============================================================================ +10:31:15 Calculate Source COMM Id = 2 +10:31:15 ============================================================================ +10:31:15 + + +waiting on router queue for slot.... +10:31:17 ============================================================================ +10:31:17 Slot Id : <151> +10:31:17 Transaction Type : REQUEST +10:31:17 Received From : +10:31:17 ============================================================================ +10:31:17 FNo. Len. Field Value +10:31:17 ============================================================================ +10:31:17 [ 1] [ 4] [0200] +10:31:17 [ 2] [ 16] [1808930300045952] +10:31:17 [ 3] [ 6] [010000] +10:31:17 [ 4] [ 12] [000070000000] +10:31:17 [ 7] [ 10] [0320103112] +10:31:17 [ 11] [ 6] [715256] +10:31:17 [ 12] [ 6] [103112] +10:31:17 [ 13] [ 4] [0320] +10:31:17 [ 15] [ 4] [0320] +10:31:17 [ 18] [ 4] [6011] +10:31:17 [ 22] [ 3] [900] +10:31:17 [ 25] [ 2] [02] +10:31:17 [ 28] [ 9] [D00002000] +10:31:17 [ 32] [ 6] [621354] +10:31:17 [ 35] [ 27] [1808930300045952=1803500327] +10:31:17 [ 37] [ 12] [507903280364] +10:31:17 [ 41] [ 8] [14001000] +10:31:17 [ 42] [ 15] [NATIVE ] +10:31:17 [ 43] [ 40] [Viengchan province MEUANG FEUANLAO] +10:31:17 [ 49] [ 3] [418] +10:31:17 [ 52] [ 16] [EF6A65D01A95E77D] +10:31:17 ============================================================================ +10:31:17 + + +waiting on router queue for slot.... +10:31:17 Sending to : +10:31:17 ============================================================================ +10:31:17 Sending to : +10:31:17 ============================================================================ +10:31:17 ============================================================================ +10:31:17 Slot Id : <151> +10:31:17 Transaction Type : REQUEST +10:31:17 Received From : +10:31:17 ============================================================================ +10:31:17 FNo. Len. Field Value +10:31:17 ============================================================================ +10:31:17 [ 1] [ 4] [0200] +10:31:17 [ 2] [ 16] [1808930300045952] +10:31:17 [ 3] [ 6] [010000] +10:31:17 [ 4] [ 12] [000070000000] +10:31:17 [ 7] [ 10] [0320103112] +10:31:17 [ 11] [ 6] [715256] +10:31:17 [ 12] [ 6] [103112] +10:31:17 [ 13] [ 4] [0320] +10:31:17 [ 15] [ 4] [0320] +10:31:17 [ 18] [ 4] [6011] +10:31:17 [ 22] [ 3] [900] +10:31:17 [ 25] [ 2] [02] +10:31:17 [ 28] [ 9] [D00002000] +10:31:17 [ 32] [ 6] [621354] +10:31:17 [ 35] [ 27] [1808930300045952=1803500327] +10:31:17 [ 37] [ 12] [507903280364] +10:31:17 [ 41] [ 8] [14001000] +10:31:17 [ 42] [ 15] [NATIVE ] +10:31:17 [ 43] [ 40] [Viengchan province MEUANG FEUANLAO] +10:31:17 [ 49] [ 3] [418] +10:31:17 [ 52] [ 16] [EF6A65D01A95E77D] +10:31:17 ============================================================================ +10:31:17 + + +waiting on router queue for slot.... +10:31:17 Sending to : +10:31:17 ============================================================================ +10:31:17 ============================================================================ +10:31:17 Slot Id : <151> +10:31:17 Transaction Type : REQUEST +10:31:17 Received From : +10:31:17 ============================================================================ +10:31:17 FNo. Len. Field Value +10:31:17 ============================================================================ +10:31:17 [ 1] [ 4] [0200] +10:31:17 [ 2] [ 16] [1808930300045952] +10:31:17 [ 3] [ 6] [010000] +10:31:17 [ 4] [ 12] [000070000000] +10:31:17 [ 7] [ 10] [0320103112] +10:31:17 [ 11] [ 6] [715256] +10:31:17 [ 12] [ 6] [103112] +10:31:17 [ 13] [ 4] [0320] +10:31:17 [ 15] [ 4] [0320] +10:31:17 [ 18] [ 4] [6011] +10:31:17 [ 22] [ 3] [900] +10:31:17 [ 25] [ 2] [02] +10:31:17 [ 28] [ 9] [D00002000] +10:31:17 [ 32] [ 6] [621354] +10:31:17 [ 35] [ 27] [1808930300045952=1803500327] +10:31:17 [ 37] [ 12] [507903280364] +10:31:17 [ 41] [ 8] [14001000] +10:31:17 [ 42] [ 15] [NATIVE ] +10:31:17 [ 43] [ 40] [Viengchan province MEUANG FEUANLAO] +10:31:17 [ 49] [ 3] [418] +10:31:17 [ 52] [ 16] [851DD380A4279990] +10:31:17 ============================================================================ +10:31:17 + + +waiting on router queue for slot.... +10:31:17 Sending to : <2> +10:31:17 ============================================================================ +10:31:21 ============================================================================ +10:31:21 Slot Id : <170> +10:31:21 Transaction Type : REQUEST +10:31:21 Received From : +10:31:21 ============================================================================ +10:31:21 FNo. Len. Field Value +10:31:21 ============================================================================ +10:31:21 [ 1] [ 4] [0800] +10:31:21 [ 7] [ 10] [0320032912] +10:31:21 [ 11] [ 6] [079405] +10:31:21 [ 37] [ 12] [57910079405] +10:31:21 [ 70] [ 3] [301] +10:31:21 ============================================================================ +10:31:21 + + +waiting on router queue for slot.... +10:31:21 Sending to : +10:31:21 ============================================================================ +10:31:21 ============================================================================ +10:31:21 Slot Id : <170> +10:31:21 Transaction Type : RESPONSE +10:31:21 Received From : +10:31:21 ============================================================================ +10:31:21 FNo. Len. Field Value +10:31:21 ============================================================================ +10:31:21 [ 1] [ 4] [0810] +10:31:21 [ 7] [ 10] [0320032912] +10:31:21 [ 11] [ 6] [079405] +10:31:21 [ 37] [ 12] [579100794050] +10:31:21 [ 39] [ 2] [00] +10:31:21 [ 70] [ 3] [810] +10:31:21 ============================================================================ +10:31:21 Calculate Source COMM Id = 4 +10:31:21 ============================================================================ +10:31:21 + + +waiting on router queue for slot.... +10:31:21 ============================================================================ +10:31:21 Slot Id : <151> +10:31:21 Transaction Type : RESPONSE +10:31:21 Received From : +10:31:21 ============================================================================ +10:31:21 FNo. Len. Field Value +10:31:21 ============================================================================ +10:31:21 [ 1] [ 4] [0210] +10:31:21 [ 2] [ 16] [1808930300045952] +10:31:21 [ 3] [ 6] [010000] +10:31:21 [ 4] [ 12] [000070000000] +10:31:21 [ 6] [ 12] [000070000000] +10:31:21 [ 7] [ 10] [0320103112] +10:31:21 [ 11] [ 6] [715256] +10:31:21 [ 12] [ 6] [103112] +10:31:21 [ 13] [ 4] [0320] +10:31:21 [ 18] [ 4] [6011] +10:31:21 [ 19] [ 3] [418] +10:31:21 [ 22] [ 3] [021] +10:31:21 [ 32] [ 6] [621354] +10:31:21 [ 35] [ 27] [1808930300045952=1803500327] +10:31:21 [ 37] [ 12] [507903280364] +10:31:21 [ 38] [ 6] [715256] +10:31:21 [ 39] [ 2] [00] +10:31:21 [ 41] [ 8] [14001000] +10:31:21 [ 49] [ 3] [418] +10:31:21 [ 52] [ 16] [851DD380A4279990] +10:31:21 [ 54] [ 20] [1001418C000026504800] +10:31:21 ============================================================================ +10:31:21 Sending to : +10:31:21 ============================================================================ +10:31:21 + + +waiting on router queue for slot.... +10:31:23 ============================================================================ +10:31:23 Slot Id : <151> +10:31:23 Transaction Type : RESPONSE +10:31:23 Received From : +10:31:23 ============================================================================ +10:31:23 FNo. Len. Field Value +10:31:23 ============================================================================ +10:31:23 [ 1] [ 4] [0210] +10:31:23 [ 2] [ 16] [1808930300045952] +10:31:23 [ 3] [ 6] [010000] +10:31:23 [ 4] [ 12] [000070000000] +10:31:23 [ 6] [ 12] [000070000000] +10:31:23 [ 7] [ 10] [0320103112] +10:31:23 [ 11] [ 6] [715256] +10:31:23 [ 12] [ 6] [103112] +10:31:23 [ 13] [ 4] [0320] +10:31:23 [ 18] [ 4] [6011] +10:31:23 [ 19] [ 3] [418] +10:31:23 [ 22] [ 3] [021] +10:31:23 [ 32] [ 6] [621354] +10:31:23 [ 35] [ 27] [1808930300045952=1803500327] +10:31:23 [ 37] [ 12] [507903280364] +10:31:23 [ 38] [ 6] [715256] +10:31:23 [ 39] [ 2] [00] +10:31:23 [ 41] [ 8] [14001000] +10:31:23 [ 49] [ 3] [418] +10:31:23 [ 52] [ 16] [851DD380A4279990] +10:31:23 [ 54] [ 20] [1001418C000026504800] +10:31:23 ============================================================================ +10:31:23 Calculate Source COMM Id = 0 +10:31:23 ============================================================================ +10:31:23 + + +waiting on router queue for slot.... +10:31:26 ============================================================================ +10:31:26 Slot Id : <157> +10:31:26 Transaction Type : REQUEST +10:31:26 Received From : +10:31:26 ============================================================================ +10:31:26 FNo. Len. Field Value +10:31:26 ============================================================================ +10:31:26 [ 1] [ 4] [0420] +10:31:26 [ 2] [ 16] [6213545000078430] +10:31:26 [ 3] [ 6] [011000] +10:31:26 [ 4] [ 12] [000100000000] +10:31:26 [ 7] [ 10] [0320103138] +10:31:26 [ 11] [ 6] [079069] +10:31:26 [ 12] [ 6] [103138] +10:31:26 [ 13] [ 4] [0320] +10:31:26 [ 14] [ 4] [4912] +10:31:26 [ 15] [ 4] [0320] +10:31:26 [ 18] [ 4] [6011] +10:31:26 [ 22] [ 3] [900] +10:31:26 [ 25] [ 2] [02] +10:31:26 [ 28] [ 9] [C00002000] +10:31:26 [ 32] [ 6] [220699] +10:31:26 [ 35] [ 32] [6213545000078430=491212017843834] +10:31:26 [ 37] [ 12] [507900132948] +10:31:26 [ 39] [ 2] [00] +10:31:26 [ 41] [ 8] [03000100] +10:31:26 [ 42] [ 15] [APTRA ] +10:31:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:31:26 [ 49] [ 3] [418] +10:31:26 [ 90] [ 42] [020007906903201031380000022069900000000000] +10:31:26 ============================================================================ +10:31:26 + + +waiting on router queue for slot.... +10:31:26 Sending to : +10:31:26 ============================================================================ +10:31:30 ============================================================================ +10:31:30 Slot Id : <157> +10:31:30 Transaction Type : RESPONSE +10:31:30 Received From : +10:31:30 ============================================================================ +10:31:30 FNo. Len. Field Value +10:31:30 ============================================================================ +10:31:30 [ 1] [ 4] [0430] +10:31:30 [ 2] [ 16] [6213545000078430] +10:31:30 [ 3] [ 6] [011000] +10:31:30 [ 4] [ 12] [000100000000] +10:31:30 [ 7] [ 10] [0320103138] +10:31:30 [ 11] [ 6] [079069] +10:31:30 [ 12] [ 6] [103138] +10:31:30 [ 13] [ 4] [0320] +10:31:30 [ 14] [ 4] [4912] +10:31:30 [ 15] [ 4] [0320] +10:31:30 [ 18] [ 4] [6011] +10:31:30 [ 22] [ 3] [900] +10:31:30 [ 25] [ 2] [02] +10:31:30 [ 28] [ 9] [C00002000] +10:31:30 [ 32] [ 6] [220699] +10:31:30 [ 35] [ 32] [6213545000078430=491212017843834] +10:31:30 [ 37] [ 12] [507900132948] +10:31:30 [ 39] [ 2] [00] +10:31:30 [ 41] [ 8] [03000100] +10:31:30 [ 42] [ 15] [APTRA ] +10:31:30 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:31:30 [ 49] [ 3] [418] +10:31:30 [ 90] [ 42] [020007906903201031380000022069900000000000] +10:31:30 ============================================================================ +10:31:30 Calculate Source COMM Id = 1 +10:31:30 ============================================================================ +10:31:30 + + +waiting on router queue for slot.... +10:31:32 ============================================================================ +10:31:32 Slot Id : <164> +10:31:32 Transaction Type : REQUEST +10:31:32 Received From : +10:31:32 ============================================================================ +10:31:32 FNo. Len. Field Value +10:31:32 ============================================================================ +10:31:32 [ 1] [ 4] [0200] +10:31:32 [ 2] [ 16] [6213544002155205] +10:31:32 [ 3] [ 6] [301000] +10:31:32 [ 4] [ 12] [000000000000] +10:31:32 [ 7] [ 10] [0320102923] +10:31:32 [ 11] [ 6] [938816] +10:31:32 [ 12] [ 6] [102923] +10:31:32 [ 13] [ 4] [0320] +10:31:32 [ 15] [ 4] [0320] +10:31:32 [ 18] [ 4] [6011] +10:31:32 [ 19] [ 3] [418] +10:31:32 [ 22] [ 3] [021] +10:31:32 [ 25] [ 2] [01] +10:31:32 [ 28] [ 9] [D00000000] +10:31:32 [ 32] [ 6] [668899] +10:31:32 [ 35] [ 32] [6213544002155205=491212015520873] +10:31:32 [ 37] [ 12] [507900823502] +10:31:32 [ 41] [ 8] [03015001] +10:31:32 [ 42] [ 15] [APT ] +10:31:32 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +10:31:32 [ 49] [ 3] [418] +10:31:32 [ 52] [ 16] [CC2CC76238BEDD14] +10:31:32 ============================================================================ +10:31:32 + + +waiting on router queue for slot.... +10:31:32 Sending to : +10:31:32 ============================================================================ +10:31:32 Sending to : +10:31:32 ============================================================================ +10:31:32 ============================================================================ +10:31:32 Slot Id : <164> +10:31:32 Transaction Type : REQUEST +10:31:32 Received From : +10:31:32 ============================================================================ +10:31:32 FNo. Len. Field Value +10:31:32 ============================================================================ +10:31:32 [ 1] [ 4] [0200] +10:31:32 [ 2] [ 16] [6213544002155205] +10:31:32 [ 3] [ 6] [301000] +10:31:32 [ 4] [ 12] [000000000000] +10:31:32 [ 7] [ 10] [0320102923] +10:31:32 [ 11] [ 6] [938816] +10:31:32 [ 12] [ 6] [102923] +10:31:32 [ 13] [ 4] [0320] +10:31:32 [ 15] [ 4] [0320] +10:31:32 [ 18] [ 4] [6011] +10:31:32 [ 19] [ 3] [418] +10:31:32 [ 22] [ 3] [021] +10:31:32 [ 25] [ 2] [01] +10:31:32 [ 28] [ 9] [D00000000] +10:31:32 [ 32] [ 6] [668899] +10:31:32 [ 35] [ 32] [6213544002155205=491212015520873] +10:31:32 [ 37] [ 12] [507900823502] +10:31:32 [ 41] [ 8] [03015001] +10:31:32 [ 42] [ 15] [APT ] +10:31:32 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +10:31:32 [ 49] [ 3] [418] +10:31:32 [ 52] [ 16] [CC2CC76238BEDD14] +10:31:32 ============================================================================ +10:31:32 + + +waiting on router queue for slot.... +10:31:32 Sending to : +10:31:32 ============================================================================ +10:31:32 ============================================================================ +10:31:32 Slot Id : <164> +10:31:32 Transaction Type : REQUEST +10:31:32 Received From : +10:31:32 ============================================================================ +10:31:32 FNo. Len. Field Value +10:31:32 ============================================================================ +10:31:32 [ 1] [ 4] [0200] +10:31:32 [ 2] [ 16] [6213544002155205] +10:31:32 [ 3] [ 6] [301000] +10:31:32 [ 4] [ 12] [000000000000] +10:31:32 [ 7] [ 10] [0320102923] +10:31:32 [ 11] [ 6] [938816] +10:31:32 [ 12] [ 6] [102923] +10:31:32 [ 13] [ 4] [0320] +10:31:32 [ 15] [ 4] [0320] +10:31:32 [ 18] [ 4] [6011] +10:31:32 [ 19] [ 3] [418] +10:31:32 [ 22] [ 3] [021] +10:31:32 [ 25] [ 2] [01] +10:31:32 [ 28] [ 9] [D00000000] +10:31:32 [ 32] [ 6] [668899] +10:31:32 [ 35] [ 32] [6213544002155205=491212015520873] +10:31:32 [ 37] [ 12] [507900823502] +10:31:32 [ 41] [ 8] [03015001] +10:31:32 [ 42] [ 15] [APT ] +10:31:32 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +10:31:32 [ 49] [ 3] [418] +10:31:32 [ 52] [ 16] [3031448A307C0076] +10:31:32 ============================================================================ +10:31:32 + + +waiting on router queue for slot.... +10:31:32 Sending to : <0> +10:31:32 ============================================================================ +10:31:33 ============================================================================ +10:31:33 Slot Id : <186> +10:31:33 Transaction Type : REQUEST +10:31:33 Received From : +10:31:33 ============================================================================ +10:31:33 FNo. Len. Field Value +10:31:33 ============================================================================ +10:31:33 [ 1] [ 4] [0200] +10:31:33 [ 2] [ 16] [6213545000078430] +10:31:33 [ 3] [ 6] [010000] +10:31:33 [ 4] [ 12] [000100000000] +10:31:33 [ 7] [ 10] [0320033037] +10:31:33 [ 11] [ 6] [268106] +10:31:33 [ 12] [ 6] [103037] +10:31:33 [ 13] [ 4] [0320] +10:31:33 [ 14] [ 4] [4912] +10:31:33 [ 15] [ 4] [0320] +10:31:33 [ 18] [ 4] [6011] +10:31:33 [ 19] [ 3] [418] +10:31:33 [ 22] [ 3] [021] +10:31:33 [ 25] [ 2] [01] +10:31:33 [ 28] [ 9] [D00002000] +10:31:33 [ 32] [ 6] [180893] +10:31:33 [ 35] [ 32] [6213545000078430=491212017843834] +10:31:33 [ 37] [ 12] [507903268106] +10:31:33 [ 41] [ 8] [0112CPBR] +10:31:33 [ 42] [ 15] [999999 ] +10:31:33 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:31:33 [ 49] [ 3] [418] +10:31:33 [ 52] [ 16] [27F7145C26800828] +10:31:33 ============================================================================ +10:31:33 + + +waiting on router queue for slot.... +10:31:33 Sending to : +10:31:33 ============================================================================ +10:31:33 Sending to : +10:31:33 ============================================================================ +10:31:33 ============================================================================ +10:31:33 Slot Id : <164> +10:31:33 Transaction Type : RESPONSE +10:31:33 Received From : +10:31:33 ============================================================================ +10:31:33 FNo. Len. Field Value +10:31:33 ============================================================================ +10:31:33 [ 1] [ 4] [0210] +10:31:33 [ 2] [ 16] [6213544002155205] +10:31:33 [ 3] [ 6] [301000] +10:31:33 [ 4] [ 12] [000000000000] +10:31:33 [ 7] [ 10] [0320102923] +10:31:33 [ 11] [ 6] [938816] +10:31:33 [ 12] [ 6] [102923] +10:31:33 [ 13] [ 4] [0320] +10:31:33 [ 15] [ 4] [0320] +10:31:33 [ 18] [ 4] [6011] +10:31:33 [ 19] [ 3] [418] +10:31:33 [ 32] [ 6] [668899] +10:31:33 [ 35] [ 32] [6213544002155205=491212015520873] +10:31:33 [ 37] [ 12] [507900823502] +10:31:33 [ 38] [ 6] [923162] +10:31:33 [ 39] [ 2] [00] +10:31:33 [ 41] [ 8] [03015001] +10:31:33 [ 49] [ 3] [418] +10:31:33 [ 54] [ 40] [1001418C0000653191781002418C000065319178] +10:31:33 ============================================================================ +10:31:33 Sending to : +10:31:33 ============================================================================ +10:31:33 + + +waiting on router queue for slot.... +10:31:33 ============================================================================ +10:31:33 Slot Id : <186> +10:31:33 Transaction Type : REQUEST +10:31:33 Received From : +10:31:33 ============================================================================ +10:31:33 FNo. Len. Field Value +10:31:33 ============================================================================ +10:31:33 [ 1] [ 4] [0200] +10:31:33 [ 2] [ 16] [6213545000078430] +10:31:33 [ 3] [ 6] [010000] +10:31:33 [ 4] [ 12] [000100000000] +10:31:33 [ 7] [ 10] [0320033037] +10:31:33 [ 11] [ 6] [268106] +10:31:33 [ 12] [ 6] [103037] +10:31:33 [ 13] [ 4] [0320] +10:31:33 [ 14] [ 4] [4912] +10:31:33 [ 15] [ 4] [0320] +10:31:33 [ 18] [ 4] [6011] +10:31:33 [ 19] [ 3] [418] +10:31:33 [ 22] [ 3] [021] +10:31:33 [ 25] [ 2] [01] +10:31:33 [ 28] [ 9] [D00002000] +10:31:33 [ 32] [ 6] [180893] +10:31:33 [ 35] [ 32] [6213545000078430=491212017843834] +10:31:33 [ 37] [ 12] [507903268106] +10:31:33 [ 41] [ 8] [0112CPBR] +10:31:33 [ 42] [ 15] [999999 ] +10:31:33 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:31:33 [ 49] [ 3] [418] +10:31:33 [ 52] [ 16] [27F7145C26800828] +10:31:33 ============================================================================ +10:31:33 + + +waiting on router queue for slot.... +10:31:33 Sending to : +10:31:33 ============================================================================ +10:31:33 ============================================================================ +10:31:33 Slot Id : <186> +10:31:33 Transaction Type : REQUEST +10:31:33 Received From : +10:31:33 ============================================================================ +10:31:33 FNo. Len. Field Value +10:31:33 ============================================================================ +10:31:33 [ 1] [ 4] [0200] +10:31:33 [ 2] [ 16] [6213545000078430] +10:31:33 [ 3] [ 6] [010000] +10:31:33 [ 4] [ 12] [000100000000] +10:31:33 [ 7] [ 10] [0320033037] +10:31:33 [ 11] [ 6] [268106] +10:31:33 [ 12] [ 6] [103037] +10:31:33 [ 13] [ 4] [0320] +10:31:33 [ 14] [ 4] [4912] +10:31:33 [ 15] [ 4] [0320] +10:31:33 [ 18] [ 4] [6011] +10:31:33 [ 19] [ 3] [418] +10:31:33 [ 22] [ 3] [021] +10:31:33 [ 25] [ 2] [01] +10:31:33 [ 28] [ 9] [D00002000] +10:31:33 [ 32] [ 6] [180893] +10:31:33 [ 35] [ 32] [6213545000078430=491212017843834] +10:31:33 [ 37] [ 12] [507903268106] +10:31:33 [ 41] [ 8] [0112CPBR] +10:31:33 [ 42] [ 15] [999999 ] +10:31:33 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:31:33 [ 49] [ 3] [418] +10:31:33 [ 52] [ 16] [751E9BE395ABA06F] +10:31:33 ============================================================================ +10:31:33 + + +waiting on router queue for slot.... +10:31:33 Sending to : <0> +10:31:33 ============================================================================ +10:31:33 ============================================================================ +10:31:33 Slot Id : <172> +10:31:33 Transaction Type : REQUEST +10:31:33 Received From : +10:31:33 ============================================================================ +10:31:33 FNo. Len. Field Value +10:31:33 ============================================================================ +10:31:33 [ 1] [ 4] [0800] +10:31:33 [ 7] [ 10] [0320033041] +10:31:33 [ 11] [ 6] [155872] +10:31:33 [ 70] [ 3] [301] +10:31:33 ============================================================================ +10:31:33 + + +waiting on router queue for slot.... +10:31:33 Sending to : +10:31:33 ============================================================================ +10:31:33 ============================================================================ +10:31:33 Slot Id : <172> +10:31:33 Transaction Type : RESPONSE +10:31:33 Received From : +10:31:33 ============================================================================ +10:31:33 FNo. Len. Field Value +10:31:33 ============================================================================ +10:31:33 [ 1] [ 4] [0810] +10:31:33 [ 7] [ 10] [0320033041] +10:31:33 [ 11] [ 6] [155872] +10:31:33 [ 39] [ 2] [00] +10:31:33 [ 70] [ 3] [301] +10:31:33 ============================================================================ +10:31:33 Calculate Source COMM Id = 2 +10:31:33 ============================================================================ +10:31:33 + + +waiting on router queue for slot.... +10:31:33 ============================================================================ +10:31:33 Slot Id : <148> +10:31:33 Transaction Type : REQUEST +10:31:33 Received From : +10:31:33 ============================================================================ +10:31:33 FNo. Len. Field Value +10:31:33 ============================================================================ +10:31:33 [ 1] [ 4] [0200] +10:31:33 [ 2] [ 16] [6213545001073927] +10:31:33 [ 3] [ 6] [010000] +10:31:33 [ 4] [ 12] [000100000000] +10:31:33 [ 7] [ 10] [0320033040] +10:31:33 [ 11] [ 6] [268107] +10:31:33 [ 12] [ 6] [103040] +10:31:33 [ 13] [ 4] [0320] +10:31:33 [ 14] [ 4] [4912] +10:31:33 [ 15] [ 4] [0320] +10:31:33 [ 18] [ 4] [6011] +10:31:33 [ 19] [ 3] [418] +10:31:33 [ 22] [ 3] [021] +10:31:33 [ 25] [ 2] [01] +10:31:33 [ 28] [ 9] [D00002000] +10:31:33 [ 32] [ 6] [180893] +10:31:33 [ 35] [ 32] [6213545001073927=491212017392088] +10:31:33 [ 37] [ 12] [507903268107] +10:31:33 [ 41] [ 8] [0484HPVX] +10:31:33 [ 42] [ 15] [999999 ] +10:31:33 [ 43] [ 40] [ATM VIENGXAI HUAPHAN PRO, Viengxai, Lao ] +10:31:33 [ 49] [ 3] [418] +10:31:33 [ 52] [ 16] [9184DDD29A8B696C] +10:31:33 ============================================================================ +10:31:33 + + +waiting on router queue for slot.... +10:31:33 Sending to : +10:31:33 ============================================================================ +10:31:33 Sending to : +10:31:33 ============================================================================ +10:31:34 ============================================================================ +10:31:34 Slot Id : <148> +10:31:34 Transaction Type : REQUEST +10:31:34 Received From : +10:31:34 ============================================================================ +10:31:34 FNo. Len. Field Value +10:31:34 ============================================================================ +10:31:34 [ 1] [ 4] [0200] +10:31:34 [ 2] [ 16] [6213545001073927] +10:31:34 [ 3] [ 6] [010000] +10:31:34 [ 4] [ 12] [000100000000] +10:31:34 [ 7] [ 10] [0320033040] +10:31:34 [ 11] [ 6] [268107] +10:31:34 [ 12] [ 6] [103040] +10:31:34 [ 13] [ 4] [0320] +10:31:34 [ 14] [ 4] [4912] +10:31:34 [ 15] [ 4] [0320] +10:31:34 [ 18] [ 4] [6011] +10:31:34 [ 19] [ 3] [418] +10:31:34 [ 22] [ 3] [021] +10:31:34 [ 25] [ 2] [01] +10:31:34 [ 28] [ 9] [D00002000] +10:31:34 [ 32] [ 6] [180893] +10:31:34 [ 35] [ 32] [6213545001073927=491212017392088] +10:31:34 [ 37] [ 12] [507903268107] +10:31:34 [ 41] [ 8] [0484HPVX] +10:31:34 [ 42] [ 15] [999999 ] +10:31:34 [ 43] [ 40] [ATM VIENGXAI HUAPHAN PRO, Viengxai, Lao ] +10:31:34 [ 49] [ 3] [418] +10:31:34 [ 52] [ 16] [9184DDD29A8B696C] +10:31:34 ============================================================================ +10:31:34 + + +waiting on router queue for slot.... +10:31:34 Sending to : +10:31:34 ============================================================================ +10:31:34 ============================================================================ +10:31:34 Slot Id : <148> +10:31:34 Transaction Type : REQUEST +10:31:34 Received From : +10:31:34 ============================================================================ +10:31:34 FNo. Len. Field Value +10:31:34 ============================================================================ +10:31:34 [ 1] [ 4] [0200] +10:31:34 [ 2] [ 16] [6213545001073927] +10:31:34 [ 3] [ 6] [010000] +10:31:34 [ 4] [ 12] [000100000000] +10:31:34 [ 7] [ 10] [0320033040] +10:31:34 [ 11] [ 6] [268107] +10:31:34 [ 12] [ 6] [103040] +10:31:34 [ 13] [ 4] [0320] +10:31:34 [ 14] [ 4] [4912] +10:31:34 [ 15] [ 4] [0320] +10:31:34 [ 18] [ 4] [6011] +10:31:34 [ 19] [ 3] [418] +10:31:34 [ 22] [ 3] [021] +10:31:34 [ 25] [ 2] [01] +10:31:34 [ 28] [ 9] [D00002000] +10:31:34 [ 32] [ 6] [180893] +10:31:34 [ 35] [ 32] [6213545001073927=491212017392088] +10:31:34 [ 37] [ 12] [507903268107] +10:31:34 [ 41] [ 8] [0484HPVX] +10:31:34 [ 42] [ 15] [999999 ] +10:31:34 [ 43] [ 40] [ATM VIENGXAI HUAPHAN PRO, Viengxai, Lao ] +10:31:34 [ 49] [ 3] [418] +10:31:34 [ 52] [ 16] [CED5F22FB92765E8] +10:31:34 ============================================================================ +10:31:34 + + +waiting on router queue for slot.... +10:31:34 Sending to : <0> +10:31:34 ============================================================================ +10:31:34 ============================================================================ +10:31:34 Slot Id : <186> +10:31:34 Transaction Type : RESPONSE +10:31:34 Received From : +10:31:34 ============================================================================ +10:31:34 FNo. Len. Field Value +10:31:34 ============================================================================ +10:31:34 [ 1] [ 4] [0210] +10:31:34 [ 2] [ 16] [6213545000078430] +10:31:34 [ 3] [ 6] [010000] +10:31:34 [ 4] [ 12] [000100000000] +10:31:34 [ 7] [ 10] [0320033037] +10:31:34 [ 11] [ 6] [268106] +10:31:34 [ 12] [ 6] [103037] +10:31:34 [ 13] [ 4] [0320] +10:31:34 [ 15] [ 4] [0320] +10:31:34 [ 18] [ 4] [6011] +10:31:34 [ 19] [ 3] [418] +10:31:34 [ 32] [ 6] [180893] +10:31:34 [ 35] [ 32] [6213545000078430=491212017843834] +10:31:34 [ 37] [ 12] [507903268106] +10:31:34 [ 38] [ 6] [429143] +10:31:34 [ 39] [ 2] [00] +10:31:34 [ 41] [ 8] [0112CPBR] +10:31:34 [ 49] [ 3] [418] +10:31:34 [ 54] [ 40] [0001418C0000320109560002418C000032010956] +10:31:34 ============================================================================ +10:31:34 Sending to : +10:31:34 ============================================================================ +10:31:34 + + +waiting on router queue for slot.... +10:31:34 ============================================================================ +10:31:34 Slot Id : <148> +10:31:34 Transaction Type : RESPONSE +10:31:34 Received From : +10:31:34 ============================================================================ +10:31:34 FNo. Len. Field Value +10:31:34 ============================================================================ +10:31:34 [ 1] [ 4] [0210] +10:31:34 [ 2] [ 16] [6213545001073927] +10:31:34 [ 3] [ 6] [010000] +10:31:34 [ 4] [ 12] [000100000000] +10:31:34 [ 7] [ 10] [0320033040] +10:31:34 [ 11] [ 6] [268107] +10:31:34 [ 12] [ 6] [103040] +10:31:34 [ 13] [ 4] [0320] +10:31:34 [ 15] [ 4] [0320] +10:31:34 [ 18] [ 4] [6011] +10:31:34 [ 19] [ 3] [418] +10:31:34 [ 32] [ 6] [180893] +10:31:34 [ 35] [ 32] [6213545001073927=491212017392088] +10:31:34 [ 37] [ 12] [507903268107] +10:31:34 [ 38] [ 6] [986002] +10:31:34 [ 39] [ 2] [00] +10:31:34 [ 41] [ 8] [0484HPVX] +10:31:34 [ 49] [ 3] [418] +10:31:34 [ 54] [ 40] [0001418C0000658831510002418C000065883151] +10:31:34 ============================================================================ +10:31:34 Sending to : +10:31:34 ============================================================================ +10:31:34 + + +waiting on router queue for slot.... +10:31:34 ============================================================================ +10:31:34 Slot Id : <164> +10:31:34 Transaction Type : RESPONSE +10:31:34 Received From : +10:31:34 ============================================================================ +10:31:34 FNo. Len. Field Value +10:31:34 ============================================================================ +10:31:34 [ 1] [ 4] [0210] +10:31:34 [ 2] [ 16] [6213544002155205] +10:31:34 [ 3] [ 6] [301000] +10:31:34 [ 4] [ 12] [000000000000] +10:31:34 [ 7] [ 10] [0320102923] +10:31:34 [ 11] [ 6] [938816] +10:31:34 [ 12] [ 6] [102923] +10:31:34 [ 13] [ 4] [0320] +10:31:34 [ 15] [ 4] [0320] +10:31:34 [ 18] [ 4] [6011] +10:31:34 [ 19] [ 3] [418] +10:31:34 [ 32] [ 6] [668899] +10:31:34 [ 35] [ 32] [6213544002155205=491212015520873] +10:31:34 [ 37] [ 12] [507900823502] +10:31:34 [ 38] [ 6] [923162] +10:31:34 [ 39] [ 2] [00] +10:31:34 [ 41] [ 8] [03015001] +10:31:34 [ 49] [ 3] [418] +10:31:34 [ 54] [ 40] [1001418C0000653191781002418C000065319178] +10:31:34 ============================================================================ +10:31:34 Calculate Source COMM Id = 4 +10:31:34 ============================================================================ +10:31:34 + + +waiting on router queue for slot.... +10:31:36 ============================================================================ +10:31:36 Slot Id : <148> +10:31:36 Transaction Type : RESPONSE +10:31:36 Received From : +10:31:36 ============================================================================ +10:31:36 FNo. Len. Field Value +10:31:36 ============================================================================ +10:31:36 [ 1] [ 4] [0210] +10:31:36 [ 2] [ 16] [6213545001073927] +10:31:36 [ 3] [ 6] [010000] +10:31:36 [ 4] [ 12] [000100000000] +10:31:36 [ 7] [ 10] [0320033040] +10:31:36 [ 11] [ 6] [268107] +10:31:36 [ 12] [ 6] [103040] +10:31:36 [ 13] [ 4] [0320] +10:31:36 [ 15] [ 4] [0320] +10:31:36 [ 18] [ 4] [6011] +10:31:36 [ 19] [ 3] [418] +10:31:36 [ 32] [ 6] [180893] +10:31:36 [ 35] [ 32] [6213545001073927=491212017392088] +10:31:36 [ 37] [ 12] [507903268107] +10:31:36 [ 38] [ 6] [986002] +10:31:36 [ 39] [ 2] [00] +10:31:36 [ 41] [ 8] [0484HPVX] +10:31:36 [ 49] [ 3] [418] +10:31:36 [ 54] [ 40] [0001418C0000658831510002418C000065883151] +10:31:36 ============================================================================ +10:31:36 Calculate Source COMM Id = 2 +10:31:36 ============================================================================ +10:31:36 + + +waiting on router queue for slot.... +10:31:37 ============================================================================ +10:31:37 Slot Id : <186> +10:31:37 Transaction Type : RESPONSE +10:31:37 Received From : +10:31:37 ============================================================================ +10:31:37 FNo. Len. Field Value +10:31:37 ============================================================================ +10:31:37 [ 1] [ 4] [0210] +10:31:37 [ 2] [ 16] [6213545000078430] +10:31:37 [ 3] [ 6] [010000] +10:31:37 [ 4] [ 12] [000100000000] +10:31:37 [ 7] [ 10] [0320033037] +10:31:37 [ 11] [ 6] [268106] +10:31:37 [ 12] [ 6] [103037] +10:31:37 [ 13] [ 4] [0320] +10:31:37 [ 15] [ 4] [0320] +10:31:37 [ 18] [ 4] [6011] +10:31:37 [ 19] [ 3] [418] +10:31:37 [ 32] [ 6] [180893] +10:31:37 [ 35] [ 32] [6213545000078430=491212017843834] +10:31:37 [ 37] [ 12] [507903268106] +10:31:37 [ 38] [ 6] [429143] +10:31:37 [ 39] [ 2] [00] +10:31:37 [ 41] [ 8] [0112CPBR] +10:31:37 [ 49] [ 3] [418] +10:31:37 [ 54] [ 40] [0001418C0000320109560002418C000032010956] +10:31:37 ============================================================================ +10:31:37 Calculate Source COMM Id = 2 +10:31:37 ============================================================================ +10:31:37 + + +waiting on router queue for slot.... +10:31:40 ============================================================================ +10:31:40 Slot Id : <126> +10:31:40 Transaction Type : REQUEST +10:31:40 Received From : +10:31:40 ============================================================================ +10:31:40 FNo. Len. Field Value +10:31:40 ============================================================================ +10:31:40 [ 1] [ 4] [0800] +10:31:40 [ 7] [ 10] [0320103127] +10:31:40 [ 11] [ 6] [035098] +10:31:40 [ 37] [ 12] [507910035098] +10:31:40 [ 70] [ 3] [ ] +10:31:40 ============================================================================ +10:31:40 + + +waiting on router queue for slot.... +10:31:40 Sending to : +10:31:40 ============================================================================ +10:31:40 ============================================================================ +10:31:40 Slot Id : <126> +10:31:40 Transaction Type : RESPONSE +10:31:40 Received From : +10:31:40 ============================================================================ +10:31:40 FNo. Len. Field Value +10:31:40 ============================================================================ +10:31:40 [ 1] [ 4] [0810] +10:31:40 [ 7] [ 10] [0320103127] +10:31:40 [ 11] [ 6] [035098] +10:31:40 [ 37] [ 12] [507910035098] +10:31:40 [ 39] [ 2] [91] +10:31:40 [ 70] [ 3] [ ] +10:31:40 ============================================================================ +10:31:40 Calculate Source COMM Id = 3 +10:31:40 ============================================================================ +10:31:40 + + +waiting on router queue for slot.... +10:31:50 ============================================================================ +10:31:50 Slot Id : <171> +10:31:50 Transaction Type : REQUEST +10:31:50 Received From : +10:31:50 ============================================================================ +10:31:50 FNo. Len. Field Value +10:31:50 ============================================================================ +10:31:50 [ 1] [ 4] [0800] +10:31:50 [ 7] [ 10] [0320033058] +10:31:50 [ 11] [ 6] [155873] +10:31:50 [ 70] [ 3] [301] +10:31:50 ============================================================================ +10:31:50 + + +waiting on router queue for slot.... +10:31:50 Sending to : +10:31:50 ============================================================================ +10:31:50 ============================================================================ +10:31:50 Slot Id : <171> +10:31:50 Transaction Type : RESPONSE +10:31:50 Received From : +10:31:50 ============================================================================ +10:31:50 FNo. Len. Field Value +10:31:50 ============================================================================ +10:31:50 [ 1] [ 4] [0810] +10:31:50 [ 7] [ 10] [0320033058] +10:31:50 [ 11] [ 6] [155873] +10:31:50 [ 39] [ 2] [00] +10:31:50 [ 70] [ 3] [301] +10:31:50 ============================================================================ +10:31:50 Calculate Source COMM Id = 2 +10:31:50 ============================================================================ +10:31:50 + + +waiting on router queue for slot.... +10:31:52 ============================================================================ +10:31:52 Slot Id : <182> +10:31:52 Transaction Type : REQUEST +10:31:52 Received From : +10:31:52 ============================================================================ +10:31:52 FNo. Len. Field Value +10:31:52 ============================================================================ +10:31:52 [ 1] [ 4] [0200] +10:31:52 [ 2] [ 16] [6688990103801401] +10:31:52 [ 3] [ 6] [010000] +10:31:52 [ 4] [ 12] [000100000000] +10:31:52 [ 7] [ 10] [0320103148] +10:31:52 [ 11] [ 6] [715383] +10:31:52 [ 12] [ 6] [103148] +10:31:52 [ 13] [ 4] [0320] +10:31:52 [ 15] [ 4] [0320] +10:31:52 [ 18] [ 4] [6011] +10:31:52 [ 22] [ 3] [900] +10:31:52 [ 25] [ 2] [02] +10:31:52 [ 28] [ 9] [D00002000] +10:31:52 [ 32] [ 6] [621354] +10:31:52 [ 35] [ 37] [6688990103801401=43021231140158500000] +10:31:52 [ 37] [ 12] [507904584965] +10:31:52 [ 41] [ 8] [02002100] +10:31:52 [ 42] [ 15] [NATIVE ] +10:31:52 [ 43] [ 40] [Friendship Brideg 03 Thakek LAO] +10:31:52 [ 49] [ 3] [418] +10:31:52 [ 52] [ 16] [01DABA097D968B90] +10:31:52 ============================================================================ +10:31:52 + + +waiting on router queue for slot.... +10:31:52 Sending to : +10:31:52 ============================================================================ +10:31:52 Sending to : +10:31:52 ============================================================================ +10:31:52 ============================================================================ +10:31:52 Slot Id : <119> +10:31:52 Transaction Type : REQUEST +10:31:52 Received From : +10:31:52 ============================================================================ +10:31:52 FNo. Len. Field Value +10:31:52 ============================================================================ +10:31:52 [ 1] [ 4] [0200] +10:31:52 [ 2] [ 16] [6213544002155205] +10:31:52 [ 3] [ 6] [300000] +10:31:52 [ 4] [ 12] [000000000000] +10:31:52 [ 7] [ 10] [0320102944] +10:31:52 [ 11] [ 6] [938830] +10:31:52 [ 12] [ 6] [102944] +10:31:52 [ 13] [ 4] [0320] +10:31:52 [ 15] [ 4] [0320] +10:31:52 [ 18] [ 4] [6011] +10:31:52 [ 19] [ 3] [418] +10:31:52 [ 22] [ 3] [021] +10:31:52 [ 25] [ 2] [01] +10:31:52 [ 28] [ 9] [D00000000] +10:31:52 [ 32] [ 6] [668899] +10:31:52 [ 35] [ 32] [6213544002155205=491212015520873] +10:31:52 [ 37] [ 12] [507900823503] +10:31:52 [ 41] [ 8] [03015001] +10:31:52 [ 42] [ 15] [APT ] +10:31:52 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +10:31:52 [ 49] [ 3] [418] +10:31:52 [ 52] [ 16] [CC2CC76238BEDD14] +10:31:52 ============================================================================ +10:31:52 + + +waiting on router queue for slot.... +10:31:52 Sending to : +10:31:52 ============================================================================ +10:31:52 Sending to : +10:31:52 ============================================================================ +10:31:52 ============================================================================ +10:31:52 Slot Id : <182> +10:31:52 Transaction Type : REQUEST +10:31:52 Received From : +10:31:52 ============================================================================ +10:31:52 FNo. Len. Field Value +10:31:52 ============================================================================ +10:31:52 [ 1] [ 4] [0200] +10:31:52 [ 2] [ 16] [6688990103801401] +10:31:52 [ 3] [ 6] [010000] +10:31:52 [ 4] [ 12] [000100000000] +10:31:52 [ 7] [ 10] [0320103148] +10:31:52 [ 11] [ 6] [715383] +10:31:52 [ 12] [ 6] [103148] +10:31:52 [ 13] [ 4] [0320] +10:31:52 [ 15] [ 4] [0320] +10:31:52 [ 18] [ 4] [6011] +10:31:52 [ 22] [ 3] [900] +10:31:52 [ 25] [ 2] [02] +10:31:52 [ 28] [ 9] [D00002000] +10:31:52 [ 32] [ 6] [621354] +10:31:52 [ 35] [ 37] [6688990103801401=43021231140158500000] +10:31:52 [ 37] [ 12] [507904584965] +10:31:52 [ 41] [ 8] [02002100] +10:31:52 [ 42] [ 15] [NATIVE ] +10:31:52 [ 43] [ 40] [Friendship Brideg 03 Thakek LAO] +10:31:52 [ 49] [ 3] [418] +10:31:52 [ 52] [ 16] [01DABA097D968B90] +10:31:52 ============================================================================ +10:31:52 + + +waiting on router queue for slot.... +10:31:52 Sending to : +10:31:52 ============================================================================ +10:31:52 ============================================================================ +10:31:52 Slot Id : <182> +10:31:52 Transaction Type : REQUEST +10:31:52 Received From : +10:31:52 ============================================================================ +10:31:52 FNo. Len. Field Value +10:31:52 ============================================================================ +10:31:52 [ 1] [ 4] [0200] +10:31:52 [ 2] [ 16] [6688990103801401] +10:31:52 [ 3] [ 6] [010000] +10:31:52 [ 4] [ 12] [000100000000] +10:31:52 [ 7] [ 10] [0320103148] +10:31:52 [ 11] [ 6] [715383] +10:31:52 [ 12] [ 6] [103148] +10:31:52 [ 13] [ 4] [0320] +10:31:52 [ 15] [ 4] [0320] +10:31:52 [ 18] [ 4] [6011] +10:31:52 [ 22] [ 3] [900] +10:31:52 [ 25] [ 2] [02] +10:31:52 [ 28] [ 9] [D00002000] +10:31:52 [ 32] [ 6] [621354] +10:31:52 [ 35] [ 37] [6688990103801401=43021231140158500000] +10:31:52 [ 37] [ 12] [507904584965] +10:31:52 [ 41] [ 8] [02002100] +10:31:52 [ 42] [ 15] [NATIVE ] +10:31:52 [ 43] [ 40] [Friendship Brideg 03 Thakek LAO] +10:31:52 [ 49] [ 3] [418] +10:31:52 [ 52] [ 16] [4F26BE2581E16F49] +10:31:52 ============================================================================ +10:31:52 + + +waiting on router queue for slot.... +10:31:52 Sending to : <4> +10:31:52 ============================================================================ +10:31:53 ============================================================================ +10:31:53 Slot Id : <119> +10:31:53 Transaction Type : REQUEST +10:31:53 Received From : +10:31:53 ============================================================================ +10:31:53 FNo. Len. Field Value +10:31:53 ============================================================================ +10:31:53 [ 1] [ 4] [0200] +10:31:53 [ 2] [ 16] [6213544002155205] +10:31:53 [ 3] [ 6] [300000] +10:31:53 [ 4] [ 12] [000000000000] +10:31:53 [ 7] [ 10] [0320102944] +10:31:53 [ 11] [ 6] [938830] +10:31:53 [ 12] [ 6] [102944] +10:31:53 [ 13] [ 4] [0320] +10:31:53 [ 15] [ 4] [0320] +10:31:53 [ 18] [ 4] [6011] +10:31:53 [ 19] [ 3] [418] +10:31:53 [ 22] [ 3] [021] +10:31:53 [ 25] [ 2] [01] +10:31:53 [ 28] [ 9] [D00000000] +10:31:53 [ 32] [ 6] [668899] +10:31:53 [ 35] [ 32] [6213544002155205=491212015520873] +10:31:53 [ 37] [ 12] [507900823503] +10:31:53 [ 41] [ 8] [03015001] +10:31:53 [ 42] [ 15] [APT ] +10:31:53 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +10:31:53 [ 49] [ 3] [418] +10:31:53 [ 52] [ 16] [CC2CC76238BEDD14] +10:31:53 ============================================================================ +10:31:53 + + +waiting on router queue for slot.... +10:31:53 Sending to : +10:31:53 ============================================================================ +10:31:53 ============================================================================ +10:31:53 Slot Id : <119> +10:31:53 Transaction Type : REQUEST +10:31:53 Received From : +10:31:53 ============================================================================ +10:31:53 FNo. Len. Field Value +10:31:53 ============================================================================ +10:31:53 [ 1] [ 4] [0200] +10:31:53 [ 2] [ 16] [6213544002155205] +10:31:53 [ 3] [ 6] [300000] +10:31:53 [ 4] [ 12] [000000000000] +10:31:53 [ 7] [ 10] [0320102944] +10:31:53 [ 11] [ 6] [938830] +10:31:53 [ 12] [ 6] [102944] +10:31:53 [ 13] [ 4] [0320] +10:31:53 [ 15] [ 4] [0320] +10:31:53 [ 18] [ 4] [6011] +10:31:53 [ 19] [ 3] [418] +10:31:53 [ 22] [ 3] [021] +10:31:53 [ 25] [ 2] [01] +10:31:53 [ 28] [ 9] [D00000000] +10:31:53 [ 32] [ 6] [668899] +10:31:53 [ 35] [ 32] [6213544002155205=491212015520873] +10:31:53 [ 37] [ 12] [507900823503] +10:31:53 [ 41] [ 8] [03015001] +10:31:53 [ 42] [ 15] [APT ] +10:31:53 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +10:31:53 [ 49] [ 3] [418] +10:31:53 [ 52] [ 16] [3031448A307C0076] +10:31:53 ============================================================================ +10:31:53 + + +waiting on router queue for slot.... +10:31:53 Sending to : <0> +10:31:53 ============================================================================ +10:31:53 ============================================================================ +10:31:53 Slot Id : <119> +10:31:53 Transaction Type : RESPONSE +10:31:53 Received From : +10:31:53 ============================================================================ +10:31:53 FNo. Len. Field Value +10:31:53 ============================================================================ +10:31:53 [ 1] [ 4] [0210] +10:31:53 [ 2] [ 16] [6213544002155205] +10:31:53 [ 3] [ 6] [300000] +10:31:53 [ 4] [ 12] [000000000000] +10:31:53 [ 7] [ 10] [0320102944] +10:31:53 [ 11] [ 6] [938830] +10:31:53 [ 12] [ 6] [102944] +10:31:53 [ 13] [ 4] [0320] +10:31:53 [ 15] [ 4] [0320] +10:31:53 [ 18] [ 4] [6011] +10:31:53 [ 19] [ 3] [418] +10:31:53 [ 32] [ 6] [668899] +10:31:53 [ 35] [ 32] [6213544002155205=491212015520873] +10:31:53 [ 37] [ 12] [507900823503] +10:31:53 [ 38] [ 6] [186117] +10:31:53 [ 39] [ 2] [00] +10:31:53 [ 41] [ 8] [03015001] +10:31:53 [ 49] [ 3] [418] +10:31:53 [ 54] [ 40] [0001418C0000653191780002418C000065319178] +10:31:53 ============================================================================ +10:31:53 Sending to : +10:31:53 ============================================================================ +10:31:53 + + +waiting on router queue for slot.... +10:31:53 ============================================================================ +10:31:53 Slot Id : <182> +10:31:53 Transaction Type : RESPONSE +10:31:53 Received From : +10:31:53 ============================================================================ +10:31:53 FNo. Len. Field Value +10:31:53 ============================================================================ +10:31:53 [ 1] [ 4] [0210] +10:31:53 [ 2] [ 16] [6688990103801401] +10:31:53 [ 3] [ 6] [010000] +10:31:53 [ 4] [ 12] [000100000000] +10:31:53 [ 11] [ 6] [715383] +10:31:53 [ 12] [ 6] [103148] +10:31:53 [ 15] [ 4] [0320] +10:31:53 [ 18] [ 4] [6011] +10:31:53 [ 32] [ 6] [621354] +10:31:53 [ 35] [ 37] [6688990103801401=43021231140158500000] +10:31:53 [ 37] [ 12] [507904584965] +10:31:53 [ 38] [ 6] [989079] +10:31:53 [ 39] [ 2] [00] +10:31:53 [ 41] [ 8] [02002100] +10:31:53 [ 49] [ 3] [418] +10:31:53 [ 54] [ 20] [0002418C000085595282] +10:31:53 ============================================================================ +10:31:53 Sending to : +10:31:53 ============================================================================ +10:31:53 + + +waiting on router queue for slot.... +10:31:55 ============================================================================ +10:31:55 Slot Id : <119> +10:31:55 Transaction Type : RESPONSE +10:31:55 Received From : +10:31:55 ============================================================================ +10:31:55 FNo. Len. Field Value +10:31:55 ============================================================================ +10:31:55 [ 1] [ 4] [0210] +10:31:55 [ 2] [ 16] [6213544002155205] +10:31:55 [ 3] [ 6] [300000] +10:31:55 [ 4] [ 12] [000000000000] +10:31:55 [ 7] [ 10] [0320102944] +10:31:55 [ 11] [ 6] [938830] +10:31:55 [ 12] [ 6] [102944] +10:31:55 [ 13] [ 4] [0320] +10:31:55 [ 15] [ 4] [0320] +10:31:55 [ 18] [ 4] [6011] +10:31:55 [ 19] [ 3] [418] +10:31:55 [ 32] [ 6] [668899] +10:31:55 [ 35] [ 32] [6213544002155205=491212015520873] +10:31:55 [ 37] [ 12] [507900823503] +10:31:55 [ 38] [ 6] [186117] +10:31:55 [ 39] [ 2] [00] +10:31:55 [ 41] [ 8] [03015001] +10:31:55 [ 49] [ 3] [418] +10:31:55 [ 54] [ 40] [0001418C0000653191780002418C000065319178] +10:31:55 ============================================================================ +10:31:55 Calculate Source COMM Id = 4 +10:31:55 ============================================================================ +10:31:55 + + +waiting on router queue for slot.... +10:31:56 ============================================================================ +10:31:56 Slot Id : <182> +10:31:56 Transaction Type : RESPONSE +10:31:56 Received From : +10:31:56 ============================================================================ +10:31:56 FNo. Len. Field Value +10:31:56 ============================================================================ +10:31:56 [ 1] [ 4] [0210] +10:31:56 [ 2] [ 16] [6688990103801401] +10:31:56 [ 3] [ 6] [010000] +10:31:56 [ 4] [ 12] [000100000000] +10:31:56 [ 11] [ 6] [715383] +10:31:56 [ 12] [ 6] [103148] +10:31:56 [ 15] [ 4] [0320] +10:31:56 [ 18] [ 4] [6011] +10:31:56 [ 32] [ 6] [621354] +10:31:56 [ 35] [ 37] [6688990103801401=43021231140158500000] +10:31:56 [ 37] [ 12] [507904584965] +10:31:56 [ 38] [ 6] [989079] +10:31:56 [ 39] [ 2] [00] +10:31:56 [ 41] [ 8] [02002100] +10:31:56 [ 49] [ 3] [418] +10:31:56 [ 54] [ 20] [0002418C000085595282] +10:31:56 ============================================================================ +10:31:56 Calculate Source COMM Id = 0 +10:31:56 ============================================================================ +10:31:56 + + +waiting on router queue for slot.... +10:31:59 ============================================================================ +10:31:59 Slot Id : <139> +10:31:59 Transaction Type : REQUEST +10:31:59 Received From : +10:31:59 ============================================================================ +10:31:59 FNo. Len. Field Value +10:31:59 ============================================================================ +10:31:59 [ 1] [ 4] [0800] +10:31:59 [ 2] [ 5] [02531] +10:31:59 [ 3] [ 6] [579108] +10:31:59 [ 7] [ 10] [0320033159] +10:31:59 [ 11] [ 6] [807023] +10:31:59 [ 15] [ 10] [0320033159] +10:31:59 [ 37] [ 11] [57910807023] +10:31:59 [ 70] [ 3] [001] +10:31:59 ============================================================================ +10:31:59 + + +waiting on router queue for slot.... +10:31:59 ============================================================================ +10:31:59 Slot Id : <139> +10:31:59 Transaction Type : RESPONSE +10:31:59 Received From : +10:31:59 ============================================================================ +10:31:59 FNo. Len. Field Value +10:31:59 ============================================================================ +10:31:59 [ 1] [ 4] [0810] +10:31:59 [ 7] [ 10] [0320033159] +10:31:59 [ 11] [ 6] [807023] +10:31:59 [ 15] [ 4] [0320] +10:31:59 [ 37] [ 12] [57910807023] +10:31:59 [ 39] [ 2] [00] +10:31:59 [ 70] [ 3] [001] +10:31:59 ============================================================================ +10:31:59 Sending to : +10:31:59 ============================================================================ +10:31:59 + + +waiting on router queue for slot.... +10:32:05 ============================================================================ +10:32:05 Slot Id : <176> +10:32:05 Transaction Type : REQUEST +10:32:05 Received From : +10:32:05 ============================================================================ +10:32:05 FNo. Len. Field Value +10:32:05 ============================================================================ +10:32:05 [ 1] [ 4] [0800] +10:32:05 [ 7] [ 10] [0320033113] +10:32:05 [ 11] [ 6] [155874] +10:32:05 [ 70] [ 3] [301] +10:32:05 ============================================================================ +10:32:05 + + +waiting on router queue for slot.... +10:32:05 Sending to : +10:32:05 ============================================================================ +10:32:05 ============================================================================ +10:32:05 Slot Id : <176> +10:32:05 Transaction Type : RESPONSE +10:32:05 Received From : +10:32:05 ============================================================================ +10:32:05 FNo. Len. Field Value +10:32:05 ============================================================================ +10:32:05 [ 1] [ 4] [0810] +10:32:05 [ 7] [ 10] [0320033113] +10:32:05 [ 11] [ 6] [155874] +10:32:05 [ 39] [ 2] [00] +10:32:05 [ 70] [ 3] [301] +10:32:05 ============================================================================ +10:32:05 Calculate Source COMM Id = 2 +10:32:05 ============================================================================ +10:32:05 + + +waiting on router queue for slot.... +10:32:16 ============================================================================ +10:32:16 Slot Id : <202> +10:32:16 Transaction Type : REQUEST +10:32:16 Received From : +10:32:16 ============================================================================ +10:32:16 FNo. Len. Field Value +10:32:16 ============================================================================ +10:32:16 [ 1] [ 4] [0800] +10:32:16 [ 7] [ 10] [0320033124] +10:32:16 [ 11] [ 6] [155875] +10:32:16 [ 70] [ 3] [301] +10:32:16 ============================================================================ +10:32:16 + + +waiting on router queue for slot.... +10:32:16 Sending to : +10:32:16 ============================================================================ +10:32:16 ============================================================================ +10:32:16 Slot Id : <202> +10:32:16 Transaction Type : RESPONSE +10:32:16 Received From : +10:32:16 ============================================================================ +10:32:16 FNo. Len. Field Value +10:32:16 ============================================================================ +10:32:16 [ 1] [ 4] [0810] +10:32:16 [ 7] [ 10] [0320033124] +10:32:16 [ 11] [ 6] [155875] +10:32:16 [ 39] [ 2] [00] +10:32:16 [ 70] [ 3] [301] +10:32:16 ============================================================================ +10:32:16 Calculate Source COMM Id = 2 +10:32:16 ============================================================================ +10:32:16 + + +waiting on router queue for slot.... +10:32:17 ============================================================================ +10:32:17 Slot Id : <160> +10:32:17 Transaction Type : REQUEST +10:32:17 Received From : +10:32:17 ============================================================================ +10:32:17 FNo. Len. Field Value +10:32:17 ============================================================================ +10:32:17 [ 1] [ 4] [0200] +10:32:17 [ 2] [ 16] [6213544002155205] +10:32:17 [ 3] [ 6] [302000] +10:32:17 [ 4] [ 12] [000000000000] +10:32:17 [ 7] [ 10] [0320103008] +10:32:17 [ 11] [ 6] [938854] +10:32:17 [ 12] [ 6] [103008] +10:32:17 [ 13] [ 4] [0320] +10:32:17 [ 15] [ 4] [0320] +10:32:17 [ 18] [ 4] [6011] +10:32:17 [ 19] [ 3] [418] +10:32:17 [ 22] [ 3] [021] +10:32:17 [ 25] [ 2] [01] +10:32:17 [ 28] [ 9] [D00000000] +10:32:17 [ 32] [ 6] [668899] +10:32:17 [ 35] [ 32] [6213544002155205=491212015520873] +10:32:17 [ 37] [ 12] [507900823504] +10:32:17 [ 41] [ 8] [03015001] +10:32:17 [ 42] [ 15] [APT ] +10:32:17 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +10:32:17 [ 49] [ 3] [418] +10:32:17 [ 52] [ 16] [CC2CC76238BEDD14] +10:32:17 ============================================================================ +10:32:17 + + +waiting on router queue for slot.... +10:32:17 Sending to : +10:32:17 ============================================================================ +10:32:17 Sending to : +10:32:17 ============================================================================ +10:32:18 ============================================================================ +10:32:18 Slot Id : <160> +10:32:18 Transaction Type : REQUEST +10:32:18 Received From : +10:32:18 ============================================================================ +10:32:18 FNo. Len. Field Value +10:32:18 ============================================================================ +10:32:18 [ 1] [ 4] [0200] +10:32:18 [ 2] [ 16] [6213544002155205] +10:32:18 [ 3] [ 6] [302000] +10:32:18 [ 4] [ 12] [000000000000] +10:32:18 [ 7] [ 10] [0320103008] +10:32:18 [ 11] [ 6] [938854] +10:32:18 [ 12] [ 6] [103008] +10:32:18 [ 13] [ 4] [0320] +10:32:18 [ 15] [ 4] [0320] +10:32:18 [ 18] [ 4] [6011] +10:32:18 [ 19] [ 3] [418] +10:32:18 [ 22] [ 3] [021] +10:32:18 [ 25] [ 2] [01] +10:32:18 [ 28] [ 9] [D00000000] +10:32:18 [ 32] [ 6] [668899] +10:32:18 [ 35] [ 32] [6213544002155205=491212015520873] +10:32:18 [ 37] [ 12] [507900823504] +10:32:18 [ 41] [ 8] [03015001] +10:32:18 [ 42] [ 15] [APT ] +10:32:18 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +10:32:18 [ 49] [ 3] [418] +10:32:18 [ 52] [ 16] [CC2CC76238BEDD14] +10:32:18 ============================================================================ +10:32:18 + + +waiting on router queue for slot.... +10:32:18 Sending to : +10:32:18 ============================================================================ +10:32:18 ============================================================================ +10:32:18 Slot Id : <160> +10:32:18 Transaction Type : REQUEST +10:32:18 Received From : +10:32:18 ============================================================================ +10:32:18 FNo. Len. Field Value +10:32:18 ============================================================================ +10:32:18 [ 1] [ 4] [0200] +10:32:18 [ 2] [ 16] [6213544002155205] +10:32:18 [ 3] [ 6] [302000] +10:32:18 [ 4] [ 12] [000000000000] +10:32:18 [ 7] [ 10] [0320103008] +10:32:18 [ 11] [ 6] [938854] +10:32:18 [ 12] [ 6] [103008] +10:32:18 [ 13] [ 4] [0320] +10:32:18 [ 15] [ 4] [0320] +10:32:18 [ 18] [ 4] [6011] +10:32:18 [ 19] [ 3] [418] +10:32:18 [ 22] [ 3] [021] +10:32:18 [ 25] [ 2] [01] +10:32:18 [ 28] [ 9] [D00000000] +10:32:18 [ 32] [ 6] [668899] +10:32:18 [ 35] [ 32] [6213544002155205=491212015520873] +10:32:18 [ 37] [ 12] [507900823504] +10:32:18 [ 41] [ 8] [03015001] +10:32:18 [ 42] [ 15] [APT ] +10:32:18 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +10:32:18 [ 49] [ 3] [418] +10:32:18 [ 52] [ 16] [3031448A307C0076] +10:32:18 ============================================================================ +10:32:18 + + +waiting on router queue for slot.... +10:32:18 Sending to : <0> +10:32:18 ============================================================================ +10:32:18 ============================================================================ +10:32:18 Slot Id : <160> +10:32:18 Transaction Type : RESPONSE +10:32:18 Received From : +10:32:18 ============================================================================ +10:32:18 FNo. Len. Field Value +10:32:18 ============================================================================ +10:32:18 [ 1] [ 4] [0210] +10:32:18 [ 2] [ 16] [6213544002155205] +10:32:18 [ 3] [ 6] [302000] +10:32:18 [ 4] [ 12] [000000000000] +10:32:18 [ 7] [ 10] [0320103008] +10:32:18 [ 11] [ 6] [938854] +10:32:18 [ 12] [ 6] [103008] +10:32:18 [ 13] [ 4] [0320] +10:32:18 [ 15] [ 4] [0320] +10:32:18 [ 18] [ 4] [6011] +10:32:18 [ 19] [ 3] [418] +10:32:18 [ 32] [ 6] [668899] +10:32:18 [ 35] [ 32] [6213544002155205=491212015520873] +10:32:18 [ 37] [ 12] [507900823504] +10:32:18 [ 38] [ 6] [079278] +10:32:18 [ 39] [ 2] [00] +10:32:18 [ 41] [ 8] [03015001] +10:32:18 [ 49] [ 3] [418] +10:32:18 [ 54] [ 40] [2001418C0000653191782002418C000065319178] +10:32:18 ============================================================================ +10:32:18 Sending to : +10:32:18 ============================================================================ +10:32:18 + + +waiting on router queue for slot.... +10:32:19 ============================================================================ +10:32:19 Slot Id : <160> +10:32:19 Transaction Type : RESPONSE +10:32:19 Received From : +10:32:19 ============================================================================ +10:32:19 FNo. Len. Field Value +10:32:19 ============================================================================ +10:32:19 [ 1] [ 4] [0210] +10:32:19 [ 2] [ 16] [6213544002155205] +10:32:19 [ 3] [ 6] [302000] +10:32:19 [ 4] [ 12] [000000000000] +10:32:19 [ 7] [ 10] [0320103008] +10:32:19 [ 11] [ 6] [938854] +10:32:19 [ 12] [ 6] [103008] +10:32:19 [ 13] [ 4] [0320] +10:32:19 [ 15] [ 4] [0320] +10:32:19 [ 18] [ 4] [6011] +10:32:19 [ 19] [ 3] [418] +10:32:19 [ 32] [ 6] [668899] +10:32:19 [ 35] [ 32] [6213544002155205=491212015520873] +10:32:19 [ 37] [ 12] [507900823504] +10:32:19 [ 38] [ 6] [079278] +10:32:19 [ 39] [ 2] [00] +10:32:19 [ 41] [ 8] [03015001] +10:32:19 [ 49] [ 3] [418] +10:32:19 [ 54] [ 40] [2001418C0000653191782002418C000065319178] +10:32:19 ============================================================================ +10:32:19 Calculate Source COMM Id = 4 +10:32:19 ============================================================================ +10:32:19 + + +waiting on router queue for slot.... +10:32:32 ============================================================================ +10:32:32 Slot Id : <187> +10:32:32 Transaction Type : REQUEST +10:32:32 Received From : +10:32:32 ============================================================================ +10:32:32 FNo. Len. Field Value +10:32:32 ============================================================================ +10:32:32 [ 1] [ 4] [0800] +10:32:32 [ 7] [ 10] [0320033140] +10:32:32 [ 11] [ 6] [155876] +10:32:32 [ 70] [ 3] [301] +10:32:32 ============================================================================ +10:32:32 + + +waiting on router queue for slot.... +10:32:32 Sending to : +10:32:32 ============================================================================ +10:32:32 ============================================================================ +10:32:32 Slot Id : <187> +10:32:32 Transaction Type : RESPONSE +10:32:32 Received From : +10:32:32 ============================================================================ +10:32:32 FNo. Len. Field Value +10:32:32 ============================================================================ +10:32:32 [ 1] [ 4] [0810] +10:32:32 [ 7] [ 10] [0320033140] +10:32:32 [ 11] [ 6] [155876] +10:32:32 [ 39] [ 2] [00] +10:32:32 [ 70] [ 3] [301] +10:32:32 ============================================================================ +10:32:32 Calculate Source COMM Id = 2 +10:32:32 ============================================================================ +10:32:32 + + +waiting on router queue for slot.... +10:32:41 ============================================================================ +10:32:41 Slot Id : <156> +10:32:41 Transaction Type : REQUEST +10:32:41 Received From : +10:32:41 ============================================================================ +10:32:41 FNo. Len. Field Value +10:32:41 ============================================================================ +10:32:41 [ 0] [ 4] [0420] +10:32:41 [ 1] [ 4] [0420] +10:32:41 [ 2] [ 16] [6213545000078430] +10:32:41 [ 3] [ 6] [011000] +10:32:41 [ 4] [ 12] [000100000000] +10:32:41 [ 6] [ 12] [000100000000] +10:32:41 [ 7] [ 10] [0320103138] +10:32:41 [ 11] [ 6] [079069] +10:32:41 [ 12] [ 6] [103138] +10:32:41 [ 13] [ 4] [0320] +10:32:41 [ 14] [ 4] [4912] +10:32:41 [ 15] [ 4] [0320] +10:32:41 [ 18] [ 4] [6011] +10:32:41 [ 22] [ 3] [900] +10:32:41 [ 25] [ 2] [02] +10:32:41 [ 28] [ 9] [D00002000] +10:32:41 [ 32] [ 6] [220699] +10:32:41 [ 35] [ 32] [6213545000078430=491212017843834] +10:32:41 [ 37] [ 12] [507900132948] +10:32:41 [ 39] [ 2] [00] +10:32:41 [ 41] [ 8] [03000100] +10:32:41 [ 42] [ 15] [APTRA ] +10:32:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:32:41 [ 49] [ 3] [418] +10:32:41 [ 52] [ 16] [A3E9CBA54A4C25AF] +10:32:41 ============================================================================ +10:32:41 + + +waiting on router queue for slot.... +10:32:41 ============================================================================ +10:32:41 Slot Id : <156> +10:32:41 Transaction Type : RESPONSE +10:32:41 Received From : +10:32:41 ============================================================================ +10:32:41 FNo. Len. Field Value +10:32:41 ============================================================================ +10:32:41 [ 1] [ 4] [0430] +10:32:41 [ 2] [ 16] [6213545000078430] +10:32:41 [ 3] [ 6] [011000] +10:32:41 [ 4] [ 12] [000100000000] +10:32:41 [ 7] [ 10] [0320103138] +10:32:41 [ 11] [ 6] [079069] +10:32:41 [ 32] [ 6] [220699] +10:32:41 [ 35] [ 32] [6213545000078430=491212017843834] +10:32:41 [ 37] [ 12] [507900132948] +10:32:41 [ 39] [ 2] [00] +10:32:41 [ 41] [ 8] [03000100] +10:32:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:32:41 [ 49] [ 3] [418] +10:32:41 [ 90] [ 42] [020007906903201031380000022069900000000000] +10:32:41 ============================================================================ +10:32:41 Successfully send the slot [156] To REVERSAL Process +10:32:41 + + +waiting on router queue for slot.... +10:32:43 ============================================================================ +10:32:43 Slot Id : <203> +10:32:43 Transaction Type : REQUEST +10:32:43 Received From : +10:32:43 ============================================================================ +10:32:43 FNo. Len. Field Value +10:32:43 ============================================================================ +10:32:43 [ 1] [ 4] [0800] +10:32:43 [ 7] [ 10] [0320033151] +10:32:43 [ 11] [ 6] [155877] +10:32:43 [ 70] [ 3] [301] +10:32:43 ============================================================================ +10:32:43 + + +waiting on router queue for slot.... +10:32:43 Sending to : +10:32:43 ============================================================================ +10:32:43 ============================================================================ +10:32:43 Slot Id : <203> +10:32:43 Transaction Type : RESPONSE +10:32:43 Received From : +10:32:43 ============================================================================ +10:32:43 FNo. Len. Field Value +10:32:43 ============================================================================ +10:32:43 [ 1] [ 4] [0810] +10:32:43 [ 7] [ 10] [0320033151] +10:32:43 [ 11] [ 6] [155877] +10:32:43 [ 39] [ 2] [00] +10:32:43 [ 70] [ 3] [301] +10:32:43 ============================================================================ +10:32:43 Calculate Source COMM Id = 2 +10:32:43 ============================================================================ +10:32:43 + + +waiting on router queue for slot.... +10:32:47 ============================================================================ +10:32:47 Slot Id : <179> +10:32:47 Transaction Type : REQUEST +10:32:47 Received From : +10:32:47 ============================================================================ +10:32:47 FNo. Len. Field Value +10:32:47 ============================================================================ +10:32:47 [ 1] [ 4] [0200] +10:32:47 [ 2] [ 16] [6213545000078430] +10:32:47 [ 3] [ 6] [301000] +10:32:47 [ 7] [ 10] [0320033154] +10:32:47 [ 11] [ 6] [268116] +10:32:47 [ 12] [ 6] [103154] +10:32:47 [ 13] [ 4] [0320] +10:32:47 [ 14] [ 4] [4912] +10:32:47 [ 15] [ 4] [0320] +10:32:47 [ 18] [ 4] [6011] +10:32:47 [ 19] [ 3] [418] +10:32:47 [ 22] [ 3] [021] +10:32:47 [ 25] [ 2] [01] +10:32:47 [ 32] [ 6] [180893] +10:32:47 [ 35] [ 32] [6213545000078430=491212017843834] +10:32:47 [ 37] [ 12] [507903268116] +10:32:47 [ 41] [ 8] [0112CPBR] +10:32:47 [ 42] [ 15] [999999 ] +10:32:47 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:32:47 [ 49] [ 3] [418] +10:32:47 [ 52] [ 16] [27F7145C26800828] +10:32:47 ============================================================================ +10:32:47 + + +waiting on router queue for slot.... +10:32:47 Sending to : +10:32:47 ============================================================================ +10:32:47 Sending to : +10:32:47 ============================================================================ +10:32:48 ============================================================================ +10:32:48 Slot Id : <179> +10:32:48 Transaction Type : REQUEST +10:32:48 Received From : +10:32:48 ============================================================================ +10:32:48 FNo. Len. Field Value +10:32:48 ============================================================================ +10:32:48 [ 1] [ 4] [0200] +10:32:48 [ 2] [ 16] [6213545000078430] +10:32:48 [ 3] [ 6] [301000] +10:32:48 [ 7] [ 10] [0320033154] +10:32:48 [ 11] [ 6] [268116] +10:32:48 [ 12] [ 6] [103154] +10:32:48 [ 13] [ 4] [0320] +10:32:48 [ 14] [ 4] [4912] +10:32:48 [ 15] [ 4] [0320] +10:32:48 [ 18] [ 4] [6011] +10:32:48 [ 19] [ 3] [418] +10:32:48 [ 22] [ 3] [021] +10:32:48 [ 25] [ 2] [01] +10:32:48 [ 32] [ 6] [180893] +10:32:48 [ 35] [ 32] [6213545000078430=491212017843834] +10:32:48 [ 37] [ 12] [507903268116] +10:32:48 [ 41] [ 8] [0112CPBR] +10:32:48 [ 42] [ 15] [999999 ] +10:32:48 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:32:48 [ 49] [ 3] [418] +10:32:48 [ 52] [ 16] [27F7145C26800828] +10:32:48 ============================================================================ +10:32:48 + + +waiting on router queue for slot.... +10:32:48 Sending to : +10:32:48 ============================================================================ +10:32:48 ============================================================================ +10:32:48 Slot Id : <179> +10:32:48 Transaction Type : REQUEST +10:32:48 Received From : +10:32:48 ============================================================================ +10:32:48 FNo. Len. Field Value +10:32:48 ============================================================================ +10:32:48 [ 1] [ 4] [0200] +10:32:48 [ 2] [ 16] [6213545000078430] +10:32:48 [ 3] [ 6] [301000] +10:32:48 [ 7] [ 10] [0320033154] +10:32:48 [ 11] [ 6] [268116] +10:32:48 [ 12] [ 6] [103154] +10:32:48 [ 13] [ 4] [0320] +10:32:48 [ 14] [ 4] [4912] +10:32:48 [ 15] [ 4] [0320] +10:32:48 [ 18] [ 4] [6011] +10:32:48 [ 19] [ 3] [418] +10:32:48 [ 22] [ 3] [021] +10:32:48 [ 25] [ 2] [01] +10:32:48 [ 32] [ 6] [180893] +10:32:48 [ 35] [ 32] [6213545000078430=491212017843834] +10:32:48 [ 37] [ 12] [507903268116] +10:32:48 [ 41] [ 8] [0112CPBR] +10:32:48 [ 42] [ 15] [999999 ] +10:32:48 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:32:48 [ 49] [ 3] [418] +10:32:48 [ 52] [ 16] [751E9BE395ABA06F] +10:32:48 ============================================================================ +10:32:48 + + +waiting on router queue for slot.... +10:32:48 Sending to : <0> +10:32:48 ============================================================================ +10:32:48 ============================================================================ +10:32:48 Slot Id : <179> +10:32:48 Transaction Type : RESPONSE +10:32:48 Received From : +10:32:48 ============================================================================ +10:32:48 FNo. Len. Field Value +10:32:48 ============================================================================ +10:32:48 [ 1] [ 4] [0210] +10:32:48 [ 2] [ 16] [6213545000078430] +10:32:48 [ 3] [ 6] [301000] +10:32:48 [ 4] [ 12] [000000000000] +10:32:48 [ 7] [ 10] [0320033154] +10:32:48 [ 11] [ 6] [268116] +10:32:48 [ 12] [ 6] [103154] +10:32:48 [ 13] [ 4] [0320] +10:32:48 [ 15] [ 4] [0320] +10:32:48 [ 18] [ 4] [6011] +10:32:48 [ 19] [ 3] [418] +10:32:48 [ 32] [ 6] [180893] +10:32:48 [ 35] [ 32] [6213545000078430=491212017843834] +10:32:48 [ 37] [ 12] [507903268116] +10:32:48 [ 38] [ 6] [100909] +10:32:48 [ 39] [ 2] [00] +10:32:48 [ 41] [ 8] [0112CPBR] +10:32:48 [ 49] [ 3] [418] +10:32:48 [ 54] [ 40] [1001418C0000320109561002418C000032010956] +10:32:48 ============================================================================ +10:32:48 Sending to : +10:32:48 ============================================================================ +10:32:48 + + +waiting on router queue for slot.... +10:32:50 ============================================================================ +10:32:50 Slot Id : <179> +10:32:50 Transaction Type : RESPONSE +10:32:50 Received From : +10:32:50 ============================================================================ +10:32:50 FNo. Len. Field Value +10:32:50 ============================================================================ +10:32:50 [ 1] [ 4] [0210] +10:32:50 [ 2] [ 16] [6213545000078430] +10:32:50 [ 3] [ 6] [301000] +10:32:50 [ 4] [ 12] [000000000000] +10:32:50 [ 7] [ 10] [0320033154] +10:32:50 [ 11] [ 6] [268116] +10:32:50 [ 12] [ 6] [103154] +10:32:50 [ 13] [ 4] [0320] +10:32:50 [ 15] [ 4] [0320] +10:32:50 [ 18] [ 4] [6011] +10:32:50 [ 19] [ 3] [418] +10:32:50 [ 32] [ 6] [180893] +10:32:50 [ 35] [ 32] [6213545000078430=491212017843834] +10:32:50 [ 37] [ 12] [507903268116] +10:32:50 [ 38] [ 6] [100909] +10:32:50 [ 39] [ 2] [00] +10:32:50 [ 41] [ 8] [0112CPBR] +10:32:50 [ 49] [ 3] [418] +10:32:50 [ 54] [ 40] [1001418C0000320109561002418C000032010956] +10:32:50 ============================================================================ +10:32:50 Calculate Source COMM Id = 2 +10:32:50 ============================================================================ +10:32:50 + + +waiting on router queue for slot.... +10:33:01 ============================================================================ +10:33:01 Slot Id : <144> +10:33:01 Transaction Type : REQUEST +10:33:01 Received From : +10:33:01 ============================================================================ +10:33:01 FNo. Len. Field Value +10:33:01 ============================================================================ +10:33:01 [ 1] [ 4] [0800] +10:33:01 [ 2] [ 5] [02531] +10:33:01 [ 3] [ 6] [579108] +10:33:01 [ 7] [ 10] [0320033301] +10:33:01 [ 11] [ 6] [807024] +10:33:01 [ 15] [ 10] [0320033301] +10:33:01 [ 37] [ 11] [57910807024] +10:33:01 [ 70] [ 3] [001] +10:33:01 ============================================================================ +10:33:01 + + +waiting on router queue for slot.... +10:33:01 ============================================================================ +10:33:01 Slot Id : <144> +10:33:01 Transaction Type : RESPONSE +10:33:01 Received From : +10:33:01 ============================================================================ +10:33:01 FNo. Len. Field Value +10:33:01 ============================================================================ +10:33:01 [ 1] [ 4] [0810] +10:33:01 [ 7] [ 10] [0320033301] +10:33:01 [ 11] [ 6] [807024] +10:33:01 [ 15] [ 4] [0320] +10:33:01 [ 37] [ 12] [57910807024] +10:33:01 [ 39] [ 2] [00] +10:33:01 [ 70] [ 3] [001] +10:33:01 ============================================================================ +10:33:01 Sending to : +10:33:01 ============================================================================ +10:33:01 + + +waiting on router queue for slot.... +10:33:03 ============================================================================ +10:33:03 Slot Id : <163> +10:33:03 Transaction Type : REQUEST +10:33:03 Received From : +10:33:03 ============================================================================ +10:33:03 FNo. Len. Field Value +10:33:03 ============================================================================ +10:33:03 [ 1] [ 4] [0200] +10:33:03 [ 2] [ 16] [6213545000968911] +10:33:03 [ 3] [ 6] [301000] +10:33:03 [ 4] [ 12] [000000000000] +10:33:03 [ 7] [ 10] [0320103054] +10:33:03 [ 11] [ 6] [938895] +10:33:03 [ 12] [ 6] [103054] +10:33:03 [ 13] [ 4] [0320] +10:33:03 [ 15] [ 4] [0320] +10:33:03 [ 18] [ 4] [6011] +10:33:03 [ 19] [ 3] [418] +10:33:03 [ 22] [ 3] [021] +10:33:03 [ 25] [ 2] [01] +10:33:03 [ 28] [ 9] [D00000000] +10:33:03 [ 32] [ 6] [668899] +10:33:03 [ 35] [ 32] [6213545000968911=491212016891930] +10:33:03 [ 37] [ 12] [507902150947] +10:33:03 [ 41] [ 8] [03020025] +10:33:03 [ 42] [ 15] [APT ] +10:33:03 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +10:33:03 [ 49] [ 3] [418] +10:33:03 [ 52] [ 16] [FE30538FF2BE1A02] +10:33:03 ============================================================================ +10:33:03 + + +waiting on router queue for slot.... +10:33:03 Sending to : +10:33:03 ============================================================================ +10:33:03 Sending to : +10:33:03 ============================================================================ +10:33:03 ============================================================================ +10:33:03 Slot Id : <163> +10:33:03 Transaction Type : REQUEST +10:33:03 Received From : +10:33:03 ============================================================================ +10:33:03 FNo. Len. Field Value +10:33:03 ============================================================================ +10:33:03 [ 1] [ 4] [0200] +10:33:03 [ 2] [ 16] [6213545000968911] +10:33:03 [ 3] [ 6] [301000] +10:33:03 [ 4] [ 12] [000000000000] +10:33:03 [ 7] [ 10] [0320103054] +10:33:03 [ 11] [ 6] [938895] +10:33:03 [ 12] [ 6] [103054] +10:33:03 [ 13] [ 4] [0320] +10:33:03 [ 15] [ 4] [0320] +10:33:03 [ 18] [ 4] [6011] +10:33:03 [ 19] [ 3] [418] +10:33:03 [ 22] [ 3] [021] +10:33:03 [ 25] [ 2] [01] +10:33:03 [ 28] [ 9] [D00000000] +10:33:03 [ 32] [ 6] [668899] +10:33:03 [ 35] [ 32] [6213545000968911=491212016891930] +10:33:03 [ 37] [ 12] [507902150947] +10:33:03 [ 41] [ 8] [03020025] +10:33:03 [ 42] [ 15] [APT ] +10:33:03 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +10:33:03 [ 49] [ 3] [418] +10:33:03 [ 52] [ 16] [FE30538FF2BE1A02] +10:33:03 ============================================================================ +10:33:03 + + +waiting on router queue for slot.... +10:33:03 Sending to : +10:33:03 ============================================================================ +10:33:03 ============================================================================ +10:33:03 Slot Id : <163> +10:33:03 Transaction Type : REQUEST +10:33:03 Received From : +10:33:03 ============================================================================ +10:33:03 FNo. Len. Field Value +10:33:03 ============================================================================ +10:33:03 [ 1] [ 4] [0200] +10:33:03 [ 2] [ 16] [6213545000968911] +10:33:03 [ 3] [ 6] [301000] +10:33:03 [ 4] [ 12] [000000000000] +10:33:03 [ 7] [ 10] [0320103054] +10:33:03 [ 11] [ 6] [938895] +10:33:03 [ 12] [ 6] [103054] +10:33:03 [ 13] [ 4] [0320] +10:33:03 [ 15] [ 4] [0320] +10:33:03 [ 18] [ 4] [6011] +10:33:03 [ 19] [ 3] [418] +10:33:03 [ 22] [ 3] [021] +10:33:03 [ 25] [ 2] [01] +10:33:03 [ 28] [ 9] [D00000000] +10:33:03 [ 32] [ 6] [668899] +10:33:03 [ 35] [ 32] [6213545000968911=491212016891930] +10:33:03 [ 37] [ 12] [507902150947] +10:33:03 [ 41] [ 8] [03020025] +10:33:03 [ 42] [ 15] [APT ] +10:33:03 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +10:33:03 [ 49] [ 3] [418] +10:33:03 [ 52] [ 16] [AE93B005662565BA] +10:33:03 ============================================================================ +10:33:03 + + +waiting on router queue for slot.... +10:33:03 Sending to : <0> +10:33:03 ============================================================================ +10:33:04 ============================================================================ +10:33:04 Slot Id : <163> +10:33:04 Transaction Type : RESPONSE +10:33:04 Received From : +10:33:04 ============================================================================ +10:33:04 FNo. Len. Field Value +10:33:04 ============================================================================ +10:33:04 [ 1] [ 4] [0210] +10:33:04 [ 2] [ 16] [6213545000968911] +10:33:04 [ 3] [ 6] [301000] +10:33:04 [ 4] [ 12] [000000000000] +10:33:04 [ 7] [ 10] [0320103054] +10:33:04 [ 11] [ 6] [938895] +10:33:04 [ 12] [ 6] [103054] +10:33:04 [ 13] [ 4] [0320] +10:33:04 [ 15] [ 4] [0320] +10:33:04 [ 18] [ 4] [6011] +10:33:04 [ 19] [ 3] [418] +10:33:04 [ 32] [ 6] [668899] +10:33:04 [ 35] [ 32] [6213545000968911=491212016891930] +10:33:04 [ 37] [ 12] [507902150947] +10:33:04 [ 38] [ 6] [832304] +10:33:04 [ 39] [ 2] [00] +10:33:04 [ 41] [ 8] [03020025] +10:33:04 [ 49] [ 3] [418] +10:33:04 [ 54] [ 40] [1001418C0001150429571002418C000115042957] +10:33:04 ============================================================================ +10:33:04 Sending to : +10:33:04 ============================================================================ +10:33:04 + + +waiting on router queue for slot.... +10:33:05 ============================================================================ +10:33:05 Slot Id : <204> +10:33:05 Transaction Type : REQUEST +10:33:05 Received From : +10:33:05 ============================================================================ +10:33:05 FNo. Len. Field Value +10:33:05 ============================================================================ +10:33:05 [ 1] [ 4] [0800] +10:33:05 [ 7] [ 10] [0320033213] +10:33:05 [ 11] [ 6] [155878] +10:33:05 [ 70] [ 3] [301] +10:33:05 ============================================================================ +10:33:05 + + +waiting on router queue for slot.... +10:33:05 Sending to : +10:33:05 ============================================================================ +10:33:05 ============================================================================ +10:33:05 Slot Id : <204> +10:33:05 Transaction Type : RESPONSE +10:33:05 Received From : +10:33:05 ============================================================================ +10:33:05 FNo. Len. Field Value +10:33:05 ============================================================================ +10:33:05 [ 1] [ 4] [0810] +10:33:05 [ 7] [ 10] [0320033213] +10:33:05 [ 11] [ 6] [155878] +10:33:05 [ 39] [ 2] [00] +10:33:05 [ 70] [ 3] [301] +10:33:05 ============================================================================ +10:33:05 Calculate Source COMM Id = 2 +10:33:05 ============================================================================ +10:33:05 + + +waiting on router queue for slot.... +10:33:05 ============================================================================ +10:33:05 Slot Id : <163> +10:33:05 Transaction Type : RESPONSE +10:33:05 Received From : +10:33:05 ============================================================================ +10:33:05 FNo. Len. Field Value +10:33:05 ============================================================================ +10:33:05 [ 1] [ 4] [0210] +10:33:05 [ 2] [ 16] [6213545000968911] +10:33:05 [ 3] [ 6] [301000] +10:33:05 [ 4] [ 12] [000000000000] +10:33:05 [ 7] [ 10] [0320103054] +10:33:05 [ 11] [ 6] [938895] +10:33:05 [ 12] [ 6] [103054] +10:33:05 [ 13] [ 4] [0320] +10:33:05 [ 15] [ 4] [0320] +10:33:05 [ 18] [ 4] [6011] +10:33:05 [ 19] [ 3] [418] +10:33:05 [ 32] [ 6] [668899] +10:33:05 [ 35] [ 32] [6213545000968911=491212016891930] +10:33:05 [ 37] [ 12] [507902150947] +10:33:05 [ 38] [ 6] [832304] +10:33:05 [ 39] [ 2] [00] +10:33:05 [ 41] [ 8] [03020025] +10:33:05 [ 49] [ 3] [418] +10:33:05 [ 54] [ 40] [1001418C0001150429571002418C000115042957] +10:33:05 ============================================================================ +10:33:05 Calculate Source COMM Id = 4 +10:33:05 ============================================================================ +10:33:05 + + +waiting on router queue for slot.... +10:33:15 ============================================================================ +10:33:15 Slot Id : <135> +10:33:15 Transaction Type : REQUEST +10:33:15 Received From : +10:33:15 ============================================================================ +10:33:15 FNo. Len. Field Value +10:33:15 ============================================================================ +10:33:15 [ 1] [ 4] [0800] +10:33:15 [ 7] [ 10] [0320033223] +10:33:15 [ 11] [ 6] [155879] +10:33:15 [ 70] [ 3] [301] +10:33:15 ============================================================================ +10:33:15 + + +waiting on router queue for slot.... +10:33:15 Sending to : +10:33:15 ============================================================================ +10:33:15 ============================================================================ +10:33:15 Slot Id : <135> +10:33:15 Transaction Type : RESPONSE +10:33:15 Received From : +10:33:15 ============================================================================ +10:33:15 FNo. Len. Field Value +10:33:15 ============================================================================ +10:33:15 [ 1] [ 4] [0810] +10:33:15 [ 7] [ 10] [0320033223] +10:33:15 [ 11] [ 6] [155879] +10:33:15 [ 39] [ 2] [00] +10:33:15 [ 70] [ 3] [301] +10:33:15 ============================================================================ +10:33:15 Calculate Source COMM Id = 2 +10:33:15 ============================================================================ +10:33:15 + + +waiting on router queue for slot.... +10:33:31 ============================================================================ +10:33:31 Slot Id : <152> +10:33:31 Transaction Type : REQUEST +10:33:31 Received From : +10:33:31 ============================================================================ +10:33:31 FNo. Len. Field Value +10:33:31 ============================================================================ +10:33:31 [ 1] [ 4] [0800] +10:33:31 [ 7] [ 10] [0320033239] +10:33:31 [ 11] [ 6] [155880] +10:33:31 [ 70] [ 3] [301] +10:33:31 ============================================================================ +10:33:31 + + +waiting on router queue for slot.... +10:33:31 Sending to : +10:33:31 ============================================================================ +10:33:31 ============================================================================ +10:33:31 Slot Id : <152> +10:33:31 Transaction Type : RESPONSE +10:33:31 Received From : +10:33:31 ============================================================================ +10:33:31 FNo. Len. Field Value +10:33:31 ============================================================================ +10:33:31 [ 1] [ 4] [0810] +10:33:31 [ 7] [ 10] [0320033239] +10:33:31 [ 11] [ 6] [155880] +10:33:31 [ 39] [ 2] [00] +10:33:31 [ 70] [ 3] [301] +10:33:31 ============================================================================ +10:33:31 Calculate Source COMM Id = 2 +10:33:31 ============================================================================ +10:33:31 + + +waiting on router queue for slot.... +10:33:37 ============================================================================ +10:33:37 Slot Id : <192> +10:33:37 Transaction Type : REQUEST +10:33:37 Received From : +10:33:37 ============================================================================ +10:33:37 FNo. Len. Field Value +10:33:37 ============================================================================ +10:33:37 [ 1] [ 4] [0200] +10:33:37 [ 2] [ 16] [6688990102837109] +10:33:37 [ 3] [ 6] [010000] +10:33:37 [ 4] [ 12] [000100000000] +10:33:37 [ 7] [ 10] [0320103333] +10:33:37 [ 11] [ 6] [715820] +10:33:37 [ 12] [ 6] [103333] +10:33:37 [ 13] [ 4] [0320] +10:33:37 [ 15] [ 4] [0320] +10:33:37 [ 18] [ 4] [6011] +10:33:37 [ 22] [ 3] [900] +10:33:37 [ 25] [ 2] [02] +10:33:37 [ 28] [ 9] [D00002000] +10:33:37 [ 32] [ 6] [621354] +10:33:37 [ 35] [ 37] [6688990102837109=42101231710935000000] +10:33:37 [ 37] [ 12] [507905150123] +10:33:37 [ 41] [ 8] [09001900] +10:33:37 [ 42] [ 15] [NATIVE ] +10:33:37 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +10:33:37 [ 49] [ 3] [418] +10:33:37 [ 52] [ 16] [49B90EB978D66CC2] +10:33:37 ============================================================================ +10:33:37 + + +waiting on router queue for slot.... +10:33:37 Sending to : +10:33:37 ============================================================================ +10:33:37 Sending to : +10:33:37 ============================================================================ +10:33:37 ============================================================================ +10:33:37 Slot Id : <192> +10:33:37 Transaction Type : REQUEST +10:33:37 Received From : +10:33:37 ============================================================================ +10:33:37 FNo. Len. Field Value +10:33:37 ============================================================================ +10:33:37 [ 1] [ 4] [0200] +10:33:37 [ 2] [ 16] [6688990102837109] +10:33:37 [ 3] [ 6] [010000] +10:33:37 [ 4] [ 12] [000100000000] +10:33:37 [ 7] [ 10] [0320103333] +10:33:37 [ 11] [ 6] [715820] +10:33:37 [ 12] [ 6] [103333] +10:33:37 [ 13] [ 4] [0320] +10:33:37 [ 15] [ 4] [0320] +10:33:37 [ 18] [ 4] [6011] +10:33:37 [ 22] [ 3] [900] +10:33:37 [ 25] [ 2] [02] +10:33:37 [ 28] [ 9] [D00002000] +10:33:37 [ 32] [ 6] [621354] +10:33:37 [ 35] [ 37] [6688990102837109=42101231710935000000] +10:33:37 [ 37] [ 12] [507905150123] +10:33:37 [ 41] [ 8] [09001900] +10:33:37 [ 42] [ 15] [NATIVE ] +10:33:37 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +10:33:37 [ 49] [ 3] [418] +10:33:37 [ 52] [ 16] [49B90EB978D66CC2] +10:33:37 ============================================================================ +10:33:37 + + +waiting on router queue for slot.... +10:33:37 Sending to : +10:33:37 ============================================================================ +10:33:37 ============================================================================ +10:33:37 Slot Id : <192> +10:33:37 Transaction Type : REQUEST +10:33:37 Received From : +10:33:37 ============================================================================ +10:33:37 FNo. Len. Field Value +10:33:37 ============================================================================ +10:33:37 [ 1] [ 4] [0200] +10:33:37 [ 2] [ 16] [6688990102837109] +10:33:37 [ 3] [ 6] [010000] +10:33:37 [ 4] [ 12] [000100000000] +10:33:37 [ 7] [ 10] [0320103333] +10:33:37 [ 11] [ 6] [715820] +10:33:37 [ 12] [ 6] [103333] +10:33:37 [ 13] [ 4] [0320] +10:33:37 [ 15] [ 4] [0320] +10:33:37 [ 18] [ 4] [6011] +10:33:37 [ 22] [ 3] [900] +10:33:37 [ 25] [ 2] [02] +10:33:37 [ 28] [ 9] [D00002000] +10:33:37 [ 32] [ 6] [621354] +10:33:37 [ 35] [ 37] [6688990102837109=42101231710935000000] +10:33:37 [ 37] [ 12] [507905150123] +10:33:37 [ 41] [ 8] [09001900] +10:33:37 [ 42] [ 15] [NATIVE ] +10:33:37 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +10:33:37 [ 49] [ 3] [418] +10:33:37 [ 52] [ 16] [F03B873F8162B7CA] +10:33:37 ============================================================================ +10:33:37 + + +waiting on router queue for slot.... +10:33:37 Sending to : <4> +10:33:37 ============================================================================ +10:33:38 ============================================================================ +10:33:38 Slot Id : <192> +10:33:38 Transaction Type : RESPONSE +10:33:38 Received From : +10:33:38 ============================================================================ +10:33:38 FNo. Len. Field Value +10:33:38 ============================================================================ +10:33:38 [ 1] [ 4] [0210] +10:33:38 [ 2] [ 16] [6688990102837109] +10:33:38 [ 3] [ 6] [010000] +10:33:38 [ 4] [ 12] [000100000000] +10:33:38 [ 11] [ 6] [715820] +10:33:38 [ 12] [ 6] [103333] +10:33:38 [ 15] [ 4] [0320] +10:33:38 [ 18] [ 4] [6011] +10:33:38 [ 32] [ 6] [621354] +10:33:38 [ 35] [ 37] [6688990102837109=42101231710935000000] +10:33:38 [ 37] [ 12] [507905150123] +10:33:38 [ 38] [ 6] [926305] +10:33:38 [ 39] [ 2] [00] +10:33:38 [ 41] [ 8] [09001900] +10:33:38 [ 49] [ 3] [418] +10:33:38 [ 54] [ 20] [0002840C000000015893] +10:33:38 ============================================================================ +10:33:38 Sending to : +10:33:38 ============================================================================ +10:33:38 + + +waiting on router queue for slot.... +10:33:40 ============================================================================ +10:33:40 Slot Id : <192> +10:33:40 Transaction Type : RESPONSE +10:33:40 Received From : +10:33:40 ============================================================================ +10:33:40 FNo. Len. Field Value +10:33:40 ============================================================================ +10:33:40 [ 1] [ 4] [0210] +10:33:40 [ 2] [ 16] [6688990102837109] +10:33:40 [ 3] [ 6] [010000] +10:33:40 [ 4] [ 12] [000100000000] +10:33:40 [ 11] [ 6] [715820] +10:33:40 [ 12] [ 6] [103333] +10:33:40 [ 15] [ 4] [0320] +10:33:40 [ 18] [ 4] [6011] +10:33:40 [ 32] [ 6] [621354] +10:33:40 [ 35] [ 37] [6688990102837109=42101231710935000000] +10:33:40 [ 37] [ 12] [507905150123] +10:33:40 [ 38] [ 6] [926305] +10:33:40 [ 39] [ 2] [00] +10:33:40 [ 41] [ 8] [09001900] +10:33:40 [ 49] [ 3] [418] +10:33:40 [ 54] [ 20] [0002840C000000015893] +10:33:40 ============================================================================ +10:33:40 Calculate Source COMM Id = 0 +10:33:40 ============================================================================ +10:33:40 + + +waiting on router queue for slot.... +10:33:42 ============================================================================ +10:33:42 Slot Id : <196> +10:33:42 Transaction Type : REQUEST +10:33:42 Received From : +10:33:42 ============================================================================ +10:33:42 FNo. Len. Field Value +10:33:42 ============================================================================ +10:33:42 [ 1] [ 4] [0200] +10:33:42 [ 2] [ 16] [6213548000509206] +10:33:42 [ 3] [ 6] [302000] +10:33:42 [ 4] [ 12] [000000000000] +10:33:42 [ 7] [ 10] [0320103133] +10:33:42 [ 11] [ 6] [938935] +10:33:42 [ 12] [ 6] [103133] +10:33:42 [ 13] [ 4] [0320] +10:33:42 [ 15] [ 4] [0320] +10:33:42 [ 18] [ 4] [6011] +10:33:42 [ 19] [ 3] [418] +10:33:42 [ 22] [ 3] [021] +10:33:42 [ 25] [ 2] [01] +10:33:42 [ 28] [ 9] [D00000000] +10:33:42 [ 32] [ 6] [668899] +10:33:42 [ 35] [ 32] [6213548000509206=181112010920283] +10:33:42 [ 37] [ 12] [507901912143] +10:33:42 [ 41] [ 8] [03013004] +10:33:42 [ 42] [ 15] [APT ] +10:33:42 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +10:33:42 [ 49] [ 3] [418] +10:33:42 [ 52] [ 16] [BF75F8749AA47306] +10:33:42 ============================================================================ +10:33:42 + + +waiting on router queue for slot.... +10:33:42 Sending to : +10:33:42 ============================================================================ +10:33:42 Sending to : +10:33:42 ============================================================================ +10:33:42 ============================================================================ +10:33:42 Slot Id : <196> +10:33:42 Transaction Type : REQUEST +10:33:42 Received From : +10:33:42 ============================================================================ +10:33:42 FNo. Len. Field Value +10:33:42 ============================================================================ +10:33:42 [ 1] [ 4] [0200] +10:33:42 [ 2] [ 16] [6213548000509206] +10:33:42 [ 3] [ 6] [302000] +10:33:42 [ 4] [ 12] [000000000000] +10:33:42 [ 7] [ 10] [0320103133] +10:33:42 [ 11] [ 6] [938935] +10:33:42 [ 12] [ 6] [103133] +10:33:42 [ 13] [ 4] [0320] +10:33:42 [ 15] [ 4] [0320] +10:33:42 [ 18] [ 4] [6011] +10:33:42 [ 19] [ 3] [418] +10:33:42 [ 22] [ 3] [021] +10:33:42 [ 25] [ 2] [01] +10:33:42 [ 28] [ 9] [D00000000] +10:33:42 [ 32] [ 6] [668899] +10:33:42 [ 35] [ 32] [6213548000509206=181112010920283] +10:33:42 [ 37] [ 12] [507901912143] +10:33:42 [ 41] [ 8] [03013004] +10:33:42 [ 42] [ 15] [APT ] +10:33:42 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +10:33:42 [ 49] [ 3] [418] +10:33:42 [ 52] [ 16] [BF75F8749AA47306] +10:33:42 ============================================================================ +10:33:42 + + +waiting on router queue for slot.... +10:33:42 Sending to : +10:33:42 ============================================================================ +10:33:42 ============================================================================ +10:33:42 Slot Id : <196> +10:33:42 Transaction Type : REQUEST +10:33:42 Received From : +10:33:42 ============================================================================ +10:33:42 FNo. Len. Field Value +10:33:42 ============================================================================ +10:33:42 [ 1] [ 4] [0200] +10:33:42 [ 2] [ 16] [6213548000509206] +10:33:42 [ 3] [ 6] [302000] +10:33:42 [ 4] [ 12] [000000000000] +10:33:42 [ 7] [ 10] [0320103133] +10:33:42 [ 11] [ 6] [938935] +10:33:42 [ 12] [ 6] [103133] +10:33:42 [ 13] [ 4] [0320] +10:33:42 [ 15] [ 4] [0320] +10:33:42 [ 18] [ 4] [6011] +10:33:42 [ 19] [ 3] [418] +10:33:42 [ 22] [ 3] [021] +10:33:42 [ 25] [ 2] [01] +10:33:42 [ 28] [ 9] [D00000000] +10:33:42 [ 32] [ 6] [668899] +10:33:42 [ 35] [ 32] [6213548000509206=181112010920283] +10:33:42 [ 37] [ 12] [507901912143] +10:33:42 [ 41] [ 8] [03013004] +10:33:42 [ 42] [ 15] [APT ] +10:33:42 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +10:33:42 [ 49] [ 3] [418] +10:33:42 [ 52] [ 16] [A78B4DB47D419F13] +10:33:42 ============================================================================ +10:33:42 + + +waiting on router queue for slot.... +10:33:42 Sending to : <0> +10:33:42 ============================================================================ +10:33:43 ============================================================================ +10:33:43 Slot Id : <196> +10:33:43 Transaction Type : RESPONSE +10:33:43 Received From : +10:33:43 ============================================================================ +10:33:43 FNo. Len. Field Value +10:33:43 ============================================================================ +10:33:43 [ 1] [ 4] [0210] +10:33:43 [ 2] [ 16] [6213548000509206] +10:33:43 [ 3] [ 6] [302000] +10:33:43 [ 4] [ 12] [000000000000] +10:33:43 [ 7] [ 10] [0320103133] +10:33:43 [ 11] [ 6] [938935] +10:33:43 [ 12] [ 6] [103133] +10:33:43 [ 13] [ 4] [0320] +10:33:43 [ 15] [ 4] [0320] +10:33:43 [ 18] [ 4] [6011] +10:33:43 [ 19] [ 3] [418] +10:33:43 [ 32] [ 6] [668899] +10:33:43 [ 35] [ 32] [6213548000509206=181112010920283] +10:33:43 [ 37] [ 12] [507901912143] +10:33:43 [ 38] [ 6] [311524] +10:33:43 [ 39] [ 2] [00] +10:33:43 [ 41] [ 8] [03013004] +10:33:43 [ 49] [ 3] [418] +10:33:43 [ 54] [ 40] [2001418C0009675035472002418C000967503547] +10:33:43 ============================================================================ +10:33:43 Sending to : +10:33:43 ============================================================================ +10:33:43 + + +waiting on router queue for slot.... +10:33:43 ============================================================================ +10:33:43 Slot Id : <191> +10:33:43 Transaction Type : REQUEST +10:33:43 Received From : +10:33:43 ============================================================================ +10:33:43 FNo. Len. Field Value +10:33:43 ============================================================================ +10:33:43 [ 1] [ 4] [0800] +10:33:43 [ 7] [ 10] [0320033251] +10:33:43 [ 11] [ 6] [155881] +10:33:43 [ 70] [ 3] [301] +10:33:43 ============================================================================ +10:33:43 + + +waiting on router queue for slot.... +10:33:43 Sending to : +10:33:43 ============================================================================ +10:33:43 ============================================================================ +10:33:43 Slot Id : <191> +10:33:43 Transaction Type : RESPONSE +10:33:43 Received From : +10:33:43 ============================================================================ +10:33:43 FNo. Len. Field Value +10:33:43 ============================================================================ +10:33:43 [ 1] [ 4] [0810] +10:33:43 [ 7] [ 10] [0320033251] +10:33:43 [ 11] [ 6] [155881] +10:33:43 [ 39] [ 2] [00] +10:33:43 [ 70] [ 3] [301] +10:33:43 ============================================================================ +10:33:43 Calculate Source COMM Id = 2 +10:33:43 ============================================================================ +10:33:43 + + +waiting on router queue for slot.... +10:33:45 ============================================================================ +10:33:45 Slot Id : <196> +10:33:45 Transaction Type : RESPONSE +10:33:45 Received From : +10:33:45 ============================================================================ +10:33:45 FNo. Len. Field Value +10:33:45 ============================================================================ +10:33:45 [ 1] [ 4] [0210] +10:33:45 [ 2] [ 16] [6213548000509206] +10:33:45 [ 3] [ 6] [302000] +10:33:45 [ 4] [ 12] [000000000000] +10:33:45 [ 7] [ 10] [0320103133] +10:33:45 [ 11] [ 6] [938935] +10:33:45 [ 12] [ 6] [103133] +10:33:45 [ 13] [ 4] [0320] +10:33:45 [ 15] [ 4] [0320] +10:33:45 [ 18] [ 4] [6011] +10:33:45 [ 19] [ 3] [418] +10:33:45 [ 32] [ 6] [668899] +10:33:45 [ 35] [ 32] [6213548000509206=181112010920283] +10:33:45 [ 37] [ 12] [507901912143] +10:33:45 [ 38] [ 6] [311524] +10:33:45 [ 39] [ 2] [00] +10:33:45 [ 41] [ 8] [03013004] +10:33:45 [ 49] [ 3] [418] +10:33:45 [ 54] [ 40] [2001418C0009675035472002418C000967503547] +10:33:45 ============================================================================ +10:33:45 Calculate Source COMM Id = 4 +10:33:45 ============================================================================ +10:33:45 + + +waiting on router queue for slot.... +10:33:49 ============================================================================ +10:33:49 Slot Id : <155> +10:33:49 Transaction Type : REQUEST +10:33:49 Received From : +10:33:49 ============================================================================ +10:33:49 FNo. Len. Field Value +10:33:49 ============================================================================ +10:33:49 [ 1] [ 4] [0200] +10:33:49 [ 2] [ 16] [1808931500005671] +10:33:49 [ 3] [ 6] [301000] +10:33:49 [ 4] [ 12] [000000000000] +10:33:49 [ 7] [ 10] [0320103345] +10:33:49 [ 11] [ 6] [715878] +10:33:49 [ 12] [ 6] [103345] +10:33:49 [ 13] [ 4] [0320] +10:33:49 [ 15] [ 4] [0320] +10:33:49 [ 18] [ 4] [6011] +10:33:49 [ 22] [ 3] [900] +10:33:49 [ 25] [ 2] [02] +10:33:49 [ 28] [ 9] [D00000000] +10:33:49 [ 32] [ 6] [621354] +10:33:49 [ 35] [ 27] [1808931500005671=1803500645] +10:33:49 [ 37] [ 12] [507905261880] +10:33:49 [ 41] [ 8] [19000900] +10:33:49 [ 42] [ 15] [NATIVE ] +10:33:49 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:33:49 [ 49] [ 3] [418] +10:33:49 [ 52] [ 16] [6672029E4EC0754D] +10:33:49 ============================================================================ +10:33:49 + + +waiting on router queue for slot.... +10:33:49 Sending to : +10:33:49 ============================================================================ +10:33:49 Sending to : +10:33:49 ============================================================================ +10:33:50 ============================================================================ +10:33:50 Slot Id : <155> +10:33:50 Transaction Type : REQUEST +10:33:50 Received From : +10:33:50 ============================================================================ +10:33:50 FNo. Len. Field Value +10:33:50 ============================================================================ +10:33:50 [ 1] [ 4] [0200] +10:33:50 [ 2] [ 16] [1808931500005671] +10:33:50 [ 3] [ 6] [301000] +10:33:50 [ 4] [ 12] [000000000000] +10:33:50 [ 7] [ 10] [0320103345] +10:33:50 [ 11] [ 6] [715878] +10:33:50 [ 12] [ 6] [103345] +10:33:50 [ 13] [ 4] [0320] +10:33:50 [ 15] [ 4] [0320] +10:33:50 [ 18] [ 4] [6011] +10:33:50 [ 22] [ 3] [900] +10:33:50 [ 25] [ 2] [02] +10:33:50 [ 28] [ 9] [D00000000] +10:33:50 [ 32] [ 6] [621354] +10:33:50 [ 35] [ 27] [1808931500005671=1803500645] +10:33:50 [ 37] [ 12] [507905261880] +10:33:50 [ 41] [ 8] [19000900] +10:33:50 [ 42] [ 15] [NATIVE ] +10:33:50 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:33:50 [ 49] [ 3] [418] +10:33:50 [ 52] [ 16] [6672029E4EC0754D] +10:33:50 ============================================================================ +10:33:50 + + +waiting on router queue for slot.... +10:33:50 Sending to : +10:33:50 ============================================================================ +10:33:50 ============================================================================ +10:33:50 Slot Id : <155> +10:33:50 Transaction Type : REQUEST +10:33:50 Received From : +10:33:50 ============================================================================ +10:33:50 FNo. Len. Field Value +10:33:50 ============================================================================ +10:33:50 [ 1] [ 4] [0200] +10:33:50 [ 2] [ 16] [1808931500005671] +10:33:50 [ 3] [ 6] [301000] +10:33:50 [ 4] [ 12] [000000000000] +10:33:50 [ 7] [ 10] [0320103345] +10:33:50 [ 11] [ 6] [715878] +10:33:50 [ 12] [ 6] [103345] +10:33:50 [ 13] [ 4] [0320] +10:33:50 [ 15] [ 4] [0320] +10:33:50 [ 18] [ 4] [6011] +10:33:50 [ 22] [ 3] [900] +10:33:50 [ 25] [ 2] [02] +10:33:50 [ 28] [ 9] [D00000000] +10:33:50 [ 32] [ 6] [621354] +10:33:50 [ 35] [ 27] [1808931500005671=1803500645] +10:33:50 [ 37] [ 12] [507905261880] +10:33:50 [ 41] [ 8] [19000900] +10:33:50 [ 42] [ 15] [NATIVE ] +10:33:50 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:33:50 [ 49] [ 3] [418] +10:33:50 [ 52] [ 16] [813671D317056C44] +10:33:50 ============================================================================ +10:33:50 + + +waiting on router queue for slot.... +10:33:50 Sending to : <2> +10:33:50 ============================================================================ +10:33:50 ============================================================================ +10:33:50 Slot Id : <190> +10:33:50 Transaction Type : REQUEST +10:33:50 Received From : +10:33:50 ============================================================================ +10:33:50 FNo. Len. Field Value +10:33:50 ============================================================================ +10:33:50 [ 1] [ 4] [0200] +10:33:50 [ 2] [ 16] [6688990103801401] +10:33:50 [ 3] [ 6] [010000] +10:33:50 [ 4] [ 12] [000080000000] +10:33:50 [ 7] [ 10] [0320103346] +10:33:50 [ 11] [ 6] [715889] +10:33:50 [ 12] [ 6] [103346] +10:33:50 [ 13] [ 4] [0320] +10:33:50 [ 15] [ 4] [0320] +10:33:50 [ 18] [ 4] [6011] +10:33:50 [ 22] [ 3] [900] +10:33:50 [ 25] [ 2] [02] +10:33:50 [ 28] [ 9] [D00002000] +10:33:50 [ 32] [ 6] [621354] +10:33:50 [ 35] [ 37] [6688990103801401=43021231140158500000] +10:33:50 [ 37] [ 12] [507904584967] +10:33:50 [ 41] [ 8] [02002100] +10:33:50 [ 42] [ 15] [NATIVE ] +10:33:50 [ 43] [ 40] [Friendship Brideg 03 Thakek LAO] +10:33:50 [ 49] [ 3] [418] +10:33:50 [ 52] [ 16] [01DABA097D968B90] +10:33:50 ============================================================================ +10:33:50 + + +waiting on router queue for slot.... +10:33:50 Sending to : +10:33:50 ============================================================================ +10:33:50 Sending to : +10:33:50 ============================================================================ +10:33:51 ============================================================================ +10:33:51 Slot Id : <190> +10:33:51 Transaction Type : REQUEST +10:33:51 Received From : +10:33:51 ============================================================================ +10:33:51 FNo. Len. Field Value +10:33:51 ============================================================================ +10:33:51 [ 1] [ 4] [0200] +10:33:51 [ 2] [ 16] [6688990103801401] +10:33:51 [ 3] [ 6] [010000] +10:33:51 [ 4] [ 12] [000080000000] +10:33:51 [ 7] [ 10] [0320103346] +10:33:51 [ 11] [ 6] [715889] +10:33:51 [ 12] [ 6] [103346] +10:33:51 [ 13] [ 4] [0320] +10:33:51 [ 15] [ 4] [0320] +10:33:51 [ 18] [ 4] [6011] +10:33:51 [ 22] [ 3] [900] +10:33:51 [ 25] [ 2] [02] +10:33:51 [ 28] [ 9] [D00002000] +10:33:51 [ 32] [ 6] [621354] +10:33:51 [ 35] [ 37] [6688990103801401=43021231140158500000] +10:33:51 [ 37] [ 12] [507904584967] +10:33:51 [ 41] [ 8] [02002100] +10:33:51 [ 42] [ 15] [NATIVE ] +10:33:51 [ 43] [ 40] [Friendship Brideg 03 Thakek LAO] +10:33:51 [ 49] [ 3] [418] +10:33:51 [ 52] [ 16] [01DABA097D968B90] +10:33:51 ============================================================================ +10:33:51 + + +waiting on router queue for slot.... +10:33:51 Sending to : +10:33:51 ============================================================================ +10:33:51 ============================================================================ +10:33:51 Slot Id : <190> +10:33:51 Transaction Type : REQUEST +10:33:51 Received From : +10:33:51 ============================================================================ +10:33:51 FNo. Len. Field Value +10:33:51 ============================================================================ +10:33:51 [ 1] [ 4] [0200] +10:33:51 [ 2] [ 16] [6688990103801401] +10:33:51 [ 3] [ 6] [010000] +10:33:51 [ 4] [ 12] [000080000000] +10:33:51 [ 7] [ 10] [0320103346] +10:33:51 [ 11] [ 6] [715889] +10:33:51 [ 12] [ 6] [103346] +10:33:51 [ 13] [ 4] [0320] +10:33:51 [ 15] [ 4] [0320] +10:33:51 [ 18] [ 4] [6011] +10:33:51 [ 22] [ 3] [900] +10:33:51 [ 25] [ 2] [02] +10:33:51 [ 28] [ 9] [D00002000] +10:33:51 [ 32] [ 6] [621354] +10:33:51 [ 35] [ 37] [6688990103801401=43021231140158500000] +10:33:51 [ 37] [ 12] [507904584967] +10:33:51 [ 41] [ 8] [02002100] +10:33:51 [ 42] [ 15] [NATIVE ] +10:33:51 [ 43] [ 40] [Friendship Brideg 03 Thakek LAO] +10:33:51 [ 49] [ 3] [418] +10:33:51 [ 52] [ 16] [4F26BE2581E16F49] +10:33:51 ============================================================================ +10:33:51 + + +waiting on router queue for slot.... +10:33:51 Sending to : <4> +10:33:51 ============================================================================ +10:33:52 ============================================================================ +10:33:52 Slot Id : <190> +10:33:52 Transaction Type : RESPONSE +10:33:52 Received From : +10:33:52 ============================================================================ +10:33:52 FNo. Len. Field Value +10:33:52 ============================================================================ +10:33:52 [ 1] [ 4] [0210] +10:33:52 [ 2] [ 16] [6688990103801401] +10:33:52 [ 3] [ 6] [010000] +10:33:52 [ 4] [ 12] [000080000000] +10:33:52 [ 11] [ 6] [715889] +10:33:52 [ 12] [ 6] [103346] +10:33:52 [ 15] [ 4] [0320] +10:33:52 [ 18] [ 4] [6011] +10:33:52 [ 32] [ 6] [621354] +10:33:52 [ 35] [ 37] [6688990103801401=43021231140158500000] +10:33:52 [ 37] [ 12] [507904584967] +10:33:52 [ 38] [ 6] [172855] +10:33:52 [ 39] [ 2] [00] +10:33:52 [ 41] [ 8] [02002100] +10:33:52 [ 49] [ 3] [418] +10:33:52 [ 54] [ 20] [0002418C000005395282] +10:33:52 ============================================================================ +10:33:52 Sending to : +10:33:52 ============================================================================ +10:33:52 + + +waiting on router queue for slot.... +10:33:53 ============================================================================ +10:33:53 Slot Id : <190> +10:33:53 Transaction Type : RESPONSE +10:33:53 Received From : +10:33:53 ============================================================================ +10:33:53 FNo. Len. Field Value +10:33:53 ============================================================================ +10:33:53 [ 1] [ 4] [0210] +10:33:53 [ 2] [ 16] [6688990103801401] +10:33:53 [ 3] [ 6] [010000] +10:33:53 [ 4] [ 12] [000080000000] +10:33:53 [ 11] [ 6] [715889] +10:33:53 [ 12] [ 6] [103346] +10:33:53 [ 15] [ 4] [0320] +10:33:53 [ 18] [ 4] [6011] +10:33:53 [ 32] [ 6] [621354] +10:33:53 [ 35] [ 37] [6688990103801401=43021231140158500000] +10:33:53 [ 37] [ 12] [507904584967] +10:33:53 [ 38] [ 6] [172855] +10:33:53 [ 39] [ 2] [00] +10:33:53 [ 41] [ 8] [02002100] +10:33:53 [ 49] [ 3] [418] +10:33:53 [ 54] [ 20] [0002418C000005395282] +10:33:53 ============================================================================ +10:33:53 Calculate Source COMM Id = 0 +10:33:53 ============================================================================ +10:33:53 + + +waiting on router queue for slot.... +10:33:55 ============================================================================ +10:33:55 Slot Id : <155> +10:33:55 Transaction Type : RESPONSE +10:33:55 Received From : +10:33:55 ============================================================================ +10:33:55 FNo. Len. Field Value +10:33:55 ============================================================================ +10:33:55 [ 1] [ 4] [0210] +10:33:55 [ 2] [ 16] [1808931500005671] +10:33:55 [ 3] [ 6] [301000] +10:33:55 [ 7] [ 10] [0320103345] +10:33:55 [ 11] [ 6] [715878] +10:33:55 [ 12] [ 6] [103345] +10:33:55 [ 13] [ 4] [0320] +10:33:55 [ 14] [ 4] [1803] +10:33:55 [ 19] [ 3] [418] +10:33:55 [ 32] [ 6] [621354] +10:33:55 [ 37] [ 12] [507905261880] +10:33:55 [ 38] [ 6] [715878] +10:33:55 [ 39] [ 2] [00] +10:33:55 [ 41] [ 8] [19000900] +10:33:55 [ 49] [ 3] [418] +10:33:55 [ 52] [ 16] [813671D317056C44] +10:33:55 [ 54] [ 20] [1002418C000032838220] +10:33:55 ============================================================================ +10:33:55 Sending to : +10:33:55 ============================================================================ +10:33:55 + + +waiting on router queue for slot.... +10:33:56 ============================================================================ +10:33:56 Slot Id : <181> +10:33:56 Transaction Type : REQUEST +10:33:56 Received From : +10:33:56 ============================================================================ +10:33:56 FNo. Len. Field Value +10:33:56 ============================================================================ +10:33:56 [ 1] [ 4] [0200] +10:33:56 [ 2] [ 16] [6213545000078430] +10:33:56 [ 3] [ 6] [010000] +10:33:56 [ 4] [ 12] [000100000000] +10:33:56 [ 7] [ 10] [0320033303] +10:33:56 [ 11] [ 6] [268126] +10:33:56 [ 12] [ 6] [103303] +10:33:56 [ 13] [ 4] [0320] +10:33:56 [ 14] [ 4] [4912] +10:33:56 [ 15] [ 4] [0320] +10:33:56 [ 18] [ 4] [6011] +10:33:56 [ 19] [ 3] [418] +10:33:56 [ 22] [ 3] [021] +10:33:56 [ 25] [ 2] [01] +10:33:56 [ 28] [ 9] [D00002000] +10:33:56 [ 32] [ 6] [180893] +10:33:56 [ 35] [ 32] [6213545000078430=491212017843834] +10:33:56 [ 37] [ 12] [507903268126] +10:33:56 [ 41] [ 8] [0112CPBR] +10:33:56 [ 42] [ 15] [999999 ] +10:33:56 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:33:56 [ 49] [ 3] [418] +10:33:56 [ 52] [ 16] [27F7145C26800828] +10:33:56 ============================================================================ +10:33:56 + + +waiting on router queue for slot.... +10:33:56 Sending to : +10:33:56 ============================================================================ +10:33:56 Sending to : +10:33:56 ============================================================================ +10:33:56 ============================================================================ +10:33:56 Slot Id : <181> +10:33:56 Transaction Type : REQUEST +10:33:56 Received From : +10:33:56 ============================================================================ +10:33:56 FNo. Len. Field Value +10:33:56 ============================================================================ +10:33:56 [ 1] [ 4] [0200] +10:33:56 [ 2] [ 16] [6213545000078430] +10:33:56 [ 3] [ 6] [010000] +10:33:56 [ 4] [ 12] [000100000000] +10:33:56 [ 7] [ 10] [0320033303] +10:33:56 [ 11] [ 6] [268126] +10:33:56 [ 12] [ 6] [103303] +10:33:56 [ 13] [ 4] [0320] +10:33:56 [ 14] [ 4] [4912] +10:33:56 [ 15] [ 4] [0320] +10:33:56 [ 18] [ 4] [6011] +10:33:56 [ 19] [ 3] [418] +10:33:56 [ 22] [ 3] [021] +10:33:56 [ 25] [ 2] [01] +10:33:56 [ 28] [ 9] [D00002000] +10:33:56 [ 32] [ 6] [180893] +10:33:56 [ 35] [ 32] [6213545000078430=491212017843834] +10:33:56 [ 37] [ 12] [507903268126] +10:33:56 [ 41] [ 8] [0112CPBR] +10:33:56 [ 42] [ 15] [999999 ] +10:33:56 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:33:56 [ 49] [ 3] [418] +10:33:56 [ 52] [ 16] [27F7145C26800828] +10:33:56 ============================================================================ +10:33:56 + + +waiting on router queue for slot.... +10:33:56 Sending to : +10:33:56 ============================================================================ +10:33:57 ============================================================================ +10:33:57 Slot Id : <181> +10:33:57 Transaction Type : REQUEST +10:33:57 Received From : +10:33:57 ============================================================================ +10:33:57 FNo. Len. Field Value +10:33:57 ============================================================================ +10:33:57 [ 1] [ 4] [0200] +10:33:57 [ 2] [ 16] [6213545000078430] +10:33:57 [ 3] [ 6] [010000] +10:33:57 [ 4] [ 12] [000100000000] +10:33:57 [ 7] [ 10] [0320033303] +10:33:57 [ 11] [ 6] [268126] +10:33:57 [ 12] [ 6] [103303] +10:33:57 [ 13] [ 4] [0320] +10:33:57 [ 14] [ 4] [4912] +10:33:57 [ 15] [ 4] [0320] +10:33:57 [ 18] [ 4] [6011] +10:33:57 [ 19] [ 3] [418] +10:33:57 [ 22] [ 3] [021] +10:33:57 [ 25] [ 2] [01] +10:33:57 [ 28] [ 9] [D00002000] +10:33:57 [ 32] [ 6] [180893] +10:33:57 [ 35] [ 32] [6213545000078430=491212017843834] +10:33:57 [ 37] [ 12] [507903268126] +10:33:57 [ 41] [ 8] [0112CPBR] +10:33:57 [ 42] [ 15] [999999 ] +10:33:57 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:33:57 [ 49] [ 3] [418] +10:33:57 [ 52] [ 16] [751E9BE395ABA06F] +10:33:57 ============================================================================ +10:33:57 + + +waiting on router queue for slot.... +10:33:57 Sending to : <0> +10:33:57 ============================================================================ +10:33:57 ============================================================================ +10:33:57 Slot Id : <155> +10:33:57 Transaction Type : RESPONSE +10:33:57 Received From : +10:33:57 ============================================================================ +10:33:57 FNo. Len. Field Value +10:33:57 ============================================================================ +10:33:57 [ 1] [ 4] [0210] +10:33:57 [ 2] [ 16] [1808931500005671] +10:33:57 [ 3] [ 6] [301000] +10:33:57 [ 7] [ 10] [0320103345] +10:33:57 [ 11] [ 6] [715878] +10:33:57 [ 12] [ 6] [103345] +10:33:57 [ 13] [ 4] [0320] +10:33:57 [ 14] [ 4] [1803] +10:33:57 [ 19] [ 3] [418] +10:33:57 [ 32] [ 6] [621354] +10:33:57 [ 37] [ 12] [507905261880] +10:33:57 [ 38] [ 6] [715878] +10:33:57 [ 39] [ 2] [00] +10:33:57 [ 41] [ 8] [19000900] +10:33:57 [ 49] [ 3] [418] +10:33:57 [ 52] [ 16] [813671D317056C44] +10:33:57 [ 54] [ 20] [1002418C000032838220] +10:33:57 ============================================================================ +10:33:57 Calculate Source COMM Id = 0 +10:33:57 ============================================================================ +10:33:57 + + +waiting on router queue for slot.... +10:33:57 ============================================================================ +10:33:57 Slot Id : <181> +10:33:57 Transaction Type : RESPONSE +10:33:57 Received From : +10:33:57 ============================================================================ +10:33:57 FNo. Len. Field Value +10:33:57 ============================================================================ +10:33:57 [ 1] [ 4] [0210] +10:33:57 [ 2] [ 16] [6213545000078430] +10:33:57 [ 3] [ 6] [010000] +10:33:57 [ 4] [ 12] [000100000000] +10:33:57 [ 7] [ 10] [0320033303] +10:33:57 [ 11] [ 6] [268126] +10:33:57 [ 12] [ 6] [103303] +10:33:57 [ 13] [ 4] [0320] +10:33:57 [ 15] [ 4] [0320] +10:33:57 [ 18] [ 4] [6011] +10:33:57 [ 19] [ 3] [418] +10:33:57 [ 32] [ 6] [180893] +10:33:57 [ 35] [ 32] [6213545000078430=491212017843834] +10:33:57 [ 37] [ 12] [507903268126] +10:33:57 [ 38] [ 6] [931749] +10:33:57 [ 39] [ 2] [00] +10:33:57 [ 41] [ 8] [0112CPBR] +10:33:57 [ 49] [ 3] [418] +10:33:57 [ 54] [ 40] [0001418C0000320109560002418C000032010956] +10:33:57 ============================================================================ +10:33:57 Sending to : +10:33:57 ============================================================================ +10:33:57 + + +waiting on router queue for slot.... +10:33:58 ============================================================================ +10:33:58 Slot Id : <181> +10:33:58 Transaction Type : RESPONSE +10:33:58 Received From : +10:33:58 ============================================================================ +10:33:58 FNo. Len. Field Value +10:33:58 ============================================================================ +10:33:58 [ 1] [ 4] [0210] +10:33:58 [ 2] [ 16] [6213545000078430] +10:33:58 [ 3] [ 6] [010000] +10:33:58 [ 4] [ 12] [000100000000] +10:33:58 [ 7] [ 10] [0320033303] +10:33:58 [ 11] [ 6] [268126] +10:33:58 [ 12] [ 6] [103303] +10:33:58 [ 13] [ 4] [0320] +10:33:58 [ 15] [ 4] [0320] +10:33:58 [ 18] [ 4] [6011] +10:33:58 [ 19] [ 3] [418] +10:33:58 [ 32] [ 6] [180893] +10:33:58 [ 35] [ 32] [6213545000078430=491212017843834] +10:33:58 [ 37] [ 12] [507903268126] +10:33:58 [ 38] [ 6] [931749] +10:33:58 [ 39] [ 2] [00] +10:33:58 [ 41] [ 8] [0112CPBR] +10:33:58 [ 49] [ 3] [418] +10:33:58 [ 54] [ 40] [0001418C0000320109560002418C000032010956] +10:33:58 ============================================================================ +10:33:58 Calculate Source COMM Id = 2 +10:33:58 ============================================================================ +10:33:58 + + +waiting on router queue for slot.... +10:34:03 ============================================================================ +10:34:03 Slot Id : <198> +10:34:03 Transaction Type : REQUEST +10:34:03 Received From : +10:34:03 ============================================================================ +10:34:03 FNo. Len. Field Value +10:34:03 ============================================================================ +10:34:03 [ 1] [ 4] [0800] +10:34:03 [ 2] [ 5] [02531] +10:34:03 [ 3] [ 6] [579108] +10:34:03 [ 7] [ 10] [0320033403] +10:34:03 [ 11] [ 6] [807025] +10:34:03 [ 15] [ 10] [0320033403] +10:34:03 [ 37] [ 11] [57910807025] +10:34:03 [ 70] [ 3] [001] +10:34:03 ============================================================================ +10:34:03 + + +waiting on router queue for slot.... +10:34:03 ============================================================================ +10:34:03 Slot Id : <198> +10:34:03 Transaction Type : RESPONSE +10:34:03 Received From : +10:34:03 ============================================================================ +10:34:03 FNo. Len. Field Value +10:34:03 ============================================================================ +10:34:03 [ 1] [ 4] [0810] +10:34:03 [ 7] [ 10] [0320033403] +10:34:03 [ 11] [ 6] [807025] +10:34:03 [ 15] [ 4] [0320] +10:34:03 [ 37] [ 12] [57910807025] +10:34:03 [ 39] [ 2] [00] +10:34:03 [ 70] [ 3] [001] +10:34:03 ============================================================================ +10:34:03 Sending to : +10:34:03 ============================================================================ +10:34:03 + + +waiting on router queue for slot.... +10:34:04 ============================================================================ +10:34:04 Slot Id : <201> +10:34:04 Transaction Type : REQUEST +10:34:04 Received From : +10:34:04 ============================================================================ +10:34:04 FNo. Len. Field Value +10:34:04 ============================================================================ +10:34:04 [ 1] [ 4] [0200] +10:34:04 [ 2] [ 16] [6688990104769607] +10:34:04 [ 3] [ 6] [010000] +10:34:04 [ 4] [ 12] [000050000000] +10:34:04 [ 7] [ 10] [0320103400] +10:34:04 [ 11] [ 6] [715942] +10:34:04 [ 12] [ 6] [103400] +10:34:04 [ 13] [ 4] [0320] +10:34:04 [ 15] [ 4] [0320] +10:34:04 [ 18] [ 4] [6011] +10:34:04 [ 22] [ 3] [900] +10:34:04 [ 25] [ 2] [02] +10:34:04 [ 28] [ 9] [D00002000] +10:34:04 [ 32] [ 6] [621354] +10:34:04 [ 35] [ 37] [6688990104769607=43051231960728600000] +10:34:04 [ 37] [ 12] [507904213062] +10:34:04 [ 41] [ 8] [01012000] +10:34:04 [ 42] [ 15] [NATIVE ] +10:34:04 [ 43] [ 40] [Thanaleng Unit Hatxaifong LAO] +10:34:04 [ 49] [ 3] [418] +10:34:04 [ 52] [ 16] [241D69F8D0C16D1C] +10:34:04 ============================================================================ +10:34:04 + + +waiting on router queue for slot.... +10:34:04 Sending to : +10:34:04 ============================================================================ +10:34:04 Sending to : +10:34:04 ============================================================================ +10:34:05 ============================================================================ +10:34:05 Slot Id : <201> +10:34:05 Transaction Type : REQUEST +10:34:05 Received From : +10:34:05 ============================================================================ +10:34:05 FNo. Len. Field Value +10:34:05 ============================================================================ +10:34:05 [ 1] [ 4] [0200] +10:34:05 [ 2] [ 16] [6688990104769607] +10:34:05 [ 3] [ 6] [010000] +10:34:05 [ 4] [ 12] [000050000000] +10:34:05 [ 7] [ 10] [0320103400] +10:34:05 [ 11] [ 6] [715942] +10:34:05 [ 12] [ 6] [103400] +10:34:05 [ 13] [ 4] [0320] +10:34:05 [ 15] [ 4] [0320] +10:34:05 [ 18] [ 4] [6011] +10:34:05 [ 22] [ 3] [900] +10:34:05 [ 25] [ 2] [02] +10:34:05 [ 28] [ 9] [D00002000] +10:34:05 [ 32] [ 6] [621354] +10:34:05 [ 35] [ 37] [6688990104769607=43051231960728600000] +10:34:05 [ 37] [ 12] [507904213062] +10:34:05 [ 41] [ 8] [01012000] +10:34:05 [ 42] [ 15] [NATIVE ] +10:34:05 [ 43] [ 40] [Thanaleng Unit Hatxaifong LAO] +10:34:05 [ 49] [ 3] [418] +10:34:05 [ 52] [ 16] [241D69F8D0C16D1C] +10:34:05 ============================================================================ +10:34:05 + + +waiting on router queue for slot.... +10:34:05 Sending to : +10:34:05 ============================================================================ +10:34:05 ============================================================================ +10:34:05 Slot Id : <201> +10:34:05 Transaction Type : REQUEST +10:34:05 Received From : +10:34:05 ============================================================================ +10:34:05 FNo. Len. Field Value +10:34:05 ============================================================================ +10:34:05 [ 1] [ 4] [0200] +10:34:05 [ 2] [ 16] [6688990104769607] +10:34:05 [ 3] [ 6] [010000] +10:34:05 [ 4] [ 12] [000050000000] +10:34:05 [ 7] [ 10] [0320103400] +10:34:05 [ 11] [ 6] [715942] +10:34:05 [ 12] [ 6] [103400] +10:34:05 [ 13] [ 4] [0320] +10:34:05 [ 15] [ 4] [0320] +10:34:05 [ 18] [ 4] [6011] +10:34:05 [ 22] [ 3] [900] +10:34:05 [ 25] [ 2] [02] +10:34:05 [ 28] [ 9] [D00002000] +10:34:05 [ 32] [ 6] [621354] +10:34:05 [ 35] [ 37] [6688990104769607=43051231960728600000] +10:34:05 [ 37] [ 12] [507904213062] +10:34:05 [ 41] [ 8] [01012000] +10:34:05 [ 42] [ 15] [NATIVE ] +10:34:05 [ 43] [ 40] [Thanaleng Unit Hatxaifong LAO] +10:34:05 [ 49] [ 3] [418] +10:34:05 [ 52] [ 16] [016BCB9E2F5B3112] +10:34:05 ============================================================================ +10:34:05 + + +waiting on router queue for slot.... +10:34:05 Sending to : <4> +10:34:05 ============================================================================ +10:34:06 ============================================================================ +10:34:06 Slot Id : <201> +10:34:06 Transaction Type : RESPONSE +10:34:06 Received From : +10:34:06 ============================================================================ +10:34:06 FNo. Len. Field Value +10:34:06 ============================================================================ +10:34:06 [ 1] [ 4] [0210] +10:34:06 [ 2] [ 16] [6688990104769607] +10:34:06 [ 3] [ 6] [010000] +10:34:06 [ 4] [ 12] [000050000000] +10:34:06 [ 11] [ 6] [715942] +10:34:06 [ 12] [ 6] [103400] +10:34:06 [ 15] [ 4] [0320] +10:34:06 [ 18] [ 4] [6011] +10:34:06 [ 32] [ 6] [621354] +10:34:06 [ 35] [ 37] [6688990104769607=43051231960728600000] +10:34:06 [ 37] [ 12] [507904213062] +10:34:06 [ 38] [ 6] [219904] +10:34:06 [ 39] [ 2] [00] +10:34:06 [ 41] [ 8] [01012000] +10:34:06 [ 49] [ 3] [418] +10:34:06 [ 54] [ 20] [0002418C000121548590] +10:34:06 ============================================================================ +10:34:06 Sending to : +10:34:06 ============================================================================ +10:34:06 + + +waiting on router queue for slot.... +10:34:07 ============================================================================ +10:34:07 Slot Id : <201> +10:34:07 Transaction Type : RESPONSE +10:34:07 Received From : +10:34:07 ============================================================================ +10:34:07 FNo. Len. Field Value +10:34:07 ============================================================================ +10:34:07 [ 1] [ 4] [0210] +10:34:07 [ 2] [ 16] [6688990104769607] +10:34:07 [ 3] [ 6] [010000] +10:34:07 [ 4] [ 12] [000050000000] +10:34:07 [ 11] [ 6] [715942] +10:34:07 [ 12] [ 6] [103400] +10:34:07 [ 15] [ 4] [0320] +10:34:07 [ 18] [ 4] [6011] +10:34:07 [ 32] [ 6] [621354] +10:34:07 [ 35] [ 37] [6688990104769607=43051231960728600000] +10:34:07 [ 37] [ 12] [507904213062] +10:34:07 [ 38] [ 6] [219904] +10:34:07 [ 39] [ 2] [00] +10:34:07 [ 41] [ 8] [01012000] +10:34:07 [ 49] [ 3] [418] +10:34:07 [ 54] [ 20] [0002418C000121548590] +10:34:07 ============================================================================ +10:34:07 Calculate Source COMM Id = 0 +10:34:07 ============================================================================ +10:34:07 + + +waiting on router queue for slot.... +10:34:11 ============================================================================ +10:34:11 Slot Id : <214> +10:34:11 Transaction Type : REQUEST +10:34:11 Received From : +10:34:11 ============================================================================ +10:34:11 FNo. Len. Field Value +10:34:11 ============================================================================ +10:34:11 [ 1] [ 4] [0200] +10:34:11 [ 2] [ 16] [6213541000705809] +10:34:11 [ 3] [ 6] [302000] +10:34:11 [ 4] [ 12] [000000000000] +10:34:11 [ 7] [ 10] [0320103202] +10:34:11 [ 11] [ 6] [938960] +10:34:11 [ 12] [ 6] [103202] +10:34:11 [ 13] [ 4] [0320] +10:34:11 [ 15] [ 4] [0320] +10:34:11 [ 18] [ 4] [6011] +10:34:11 [ 19] [ 3] [418] +10:34:11 [ 22] [ 3] [021] +10:34:11 [ 25] [ 2] [01] +10:34:11 [ 28] [ 9] [D00000000] +10:34:11 [ 32] [ 6] [668899] +10:34:11 [ 35] [ 32] [6213541000705809=491212010580091] +10:34:11 [ 37] [ 12] [507900196076] +10:34:11 [ 41] [ 8] [03001003] +10:34:11 [ 42] [ 15] [APT ] +10:34:11 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +10:34:11 [ 49] [ 3] [418] +10:34:11 [ 52] [ 16] [DF9027F3B8D06C62] +10:34:11 ============================================================================ +10:34:11 + + +waiting on router queue for slot.... +10:34:11 Sending to : +10:34:11 ============================================================================ +10:34:11 Sending to : +10:34:11 ============================================================================ +10:34:11 ============================================================================ +10:34:11 Slot Id : <214> +10:34:11 Transaction Type : REQUEST +10:34:11 Received From : +10:34:11 ============================================================================ +10:34:11 FNo. Len. Field Value +10:34:11 ============================================================================ +10:34:11 [ 1] [ 4] [0200] +10:34:11 [ 2] [ 16] [6213541000705809] +10:34:11 [ 3] [ 6] [302000] +10:34:11 [ 4] [ 12] [000000000000] +10:34:11 [ 7] [ 10] [0320103202] +10:34:11 [ 11] [ 6] [938960] +10:34:11 [ 12] [ 6] [103202] +10:34:11 [ 13] [ 4] [0320] +10:34:11 [ 15] [ 4] [0320] +10:34:11 [ 18] [ 4] [6011] +10:34:11 [ 19] [ 3] [418] +10:34:11 [ 22] [ 3] [021] +10:34:11 [ 25] [ 2] [01] +10:34:11 [ 28] [ 9] [D00000000] +10:34:11 [ 32] [ 6] [668899] +10:34:11 [ 35] [ 32] [6213541000705809=491212010580091] +10:34:11 [ 37] [ 12] [507900196076] +10:34:11 [ 41] [ 8] [03001003] +10:34:11 [ 42] [ 15] [APT ] +10:34:11 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +10:34:11 [ 49] [ 3] [418] +10:34:11 [ 52] [ 16] [DF9027F3B8D06C62] +10:34:11 ============================================================================ +10:34:11 + + +waiting on router queue for slot.... +10:34:11 Sending to : +10:34:11 ============================================================================ +10:34:11 ============================================================================ +10:34:11 Slot Id : <214> +10:34:11 Transaction Type : REQUEST +10:34:11 Received From : +10:34:11 ============================================================================ +10:34:11 FNo. Len. Field Value +10:34:11 ============================================================================ +10:34:11 [ 1] [ 4] [0200] +10:34:11 [ 2] [ 16] [6213541000705809] +10:34:11 [ 3] [ 6] [302000] +10:34:11 [ 4] [ 12] [000000000000] +10:34:11 [ 7] [ 10] [0320103202] +10:34:11 [ 11] [ 6] [938960] +10:34:11 [ 12] [ 6] [103202] +10:34:11 [ 13] [ 4] [0320] +10:34:11 [ 15] [ 4] [0320] +10:34:11 [ 18] [ 4] [6011] +10:34:11 [ 19] [ 3] [418] +10:34:11 [ 22] [ 3] [021] +10:34:11 [ 25] [ 2] [01] +10:34:11 [ 28] [ 9] [D00000000] +10:34:11 [ 32] [ 6] [668899] +10:34:11 [ 35] [ 32] [6213541000705809=491212010580091] +10:34:11 [ 37] [ 12] [507900196076] +10:34:11 [ 41] [ 8] [03001003] +10:34:11 [ 42] [ 15] [APT ] +10:34:11 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +10:34:11 [ 49] [ 3] [418] +10:34:11 [ 52] [ 16] [194B2B106DEA6DDE] +10:34:11 ============================================================================ +10:34:11 + + +waiting on router queue for slot.... +10:34:11 Sending to : <0> +10:34:11 ============================================================================ +10:34:12 ============================================================================ +10:34:12 Slot Id : <214> +10:34:12 Transaction Type : RESPONSE +10:34:12 Received From : +10:34:12 ============================================================================ +10:34:12 FNo. Len. Field Value +10:34:12 ============================================================================ +10:34:12 [ 1] [ 4] [0210] +10:34:12 [ 2] [ 16] [6213541000705809] +10:34:12 [ 3] [ 6] [302000] +10:34:12 [ 4] [ 12] [000000000000] +10:34:12 [ 7] [ 10] [0320103202] +10:34:12 [ 11] [ 6] [938960] +10:34:12 [ 12] [ 6] [103202] +10:34:12 [ 13] [ 4] [0320] +10:34:12 [ 15] [ 4] [0320] +10:34:12 [ 18] [ 4] [6011] +10:34:12 [ 19] [ 3] [418] +10:34:12 [ 32] [ 6] [668899] +10:34:12 [ 35] [ 32] [6213541000705809=491212010580091] +10:34:12 [ 37] [ 12] [507900196076] +10:34:12 [ 38] [ 6] [779336] +10:34:12 [ 39] [ 2] [00] +10:34:12 [ 41] [ 8] [03001003] +10:34:12 [ 49] [ 3] [418] +10:34:12 [ 54] [ 40] [2001418C0030302000002002418C003030200000] +10:34:12 ============================================================================ +10:34:12 Sending to : +10:34:12 ============================================================================ +10:34:12 + + +waiting on router queue for slot.... +10:34:13 ============================================================================ +10:34:13 Slot Id : <214> +10:34:13 Transaction Type : RESPONSE +10:34:13 Received From : +10:34:13 ============================================================================ +10:34:13 FNo. Len. Field Value +10:34:13 ============================================================================ +10:34:13 [ 1] [ 4] [0210] +10:34:13 [ 2] [ 16] [6213541000705809] +10:34:13 [ 3] [ 6] [302000] +10:34:13 [ 4] [ 12] [000000000000] +10:34:13 [ 7] [ 10] [0320103202] +10:34:13 [ 11] [ 6] [938960] +10:34:13 [ 12] [ 6] [103202] +10:34:13 [ 13] [ 4] [0320] +10:34:13 [ 15] [ 4] [0320] +10:34:13 [ 18] [ 4] [6011] +10:34:13 [ 19] [ 3] [418] +10:34:13 [ 32] [ 6] [668899] +10:34:13 [ 35] [ 32] [6213541000705809=491212010580091] +10:34:13 [ 37] [ 12] [507900196076] +10:34:13 [ 38] [ 6] [779336] +10:34:13 [ 39] [ 2] [00] +10:34:13 [ 41] [ 8] [03001003] +10:34:13 [ 49] [ 3] [418] +10:34:13 [ 54] [ 40] [2001418C0030302000002002418C003030200000] +10:34:13 ============================================================================ +10:34:13 Calculate Source COMM Id = 4 +10:34:13 ============================================================================ +10:34:13 + + +waiting on router queue for slot.... +10:34:13 ============================================================================ +10:34:13 Slot Id : <165> +10:34:13 Transaction Type : REQUEST +10:34:13 Received From : +10:34:13 ============================================================================ +10:34:13 FNo. Len. Field Value +10:34:13 ============================================================================ +10:34:13 [ 1] [ 4] [0200] +10:34:13 [ 2] [ 16] [6213548000500361] +10:34:13 [ 3] [ 6] [301000] +10:34:13 [ 7] [ 10] [0320033321] +10:34:13 [ 11] [ 6] [268127] +10:34:13 [ 12] [ 6] [103321] +10:34:13 [ 13] [ 4] [0320] +10:34:13 [ 14] [ 4] [1810] +10:34:13 [ 15] [ 4] [0320] +10:34:13 [ 18] [ 4] [6011] +10:34:13 [ 19] [ 3] [418] +10:34:13 [ 22] [ 3] [021] +10:34:13 [ 25] [ 2] [01] +10:34:13 [ 32] [ 6] [180893] +10:34:13 [ 35] [ 32] [6213548000500361=181012010036225] +10:34:13 [ 37] [ 12] [507903268127] +10:34:13 [ 41] [ 8] [0102SAPA] +10:34:13 [ 42] [ 15] [999999 ] +10:34:13 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +10:34:13 [ 49] [ 3] [418] +10:34:13 [ 52] [ 16] [95B1F3189A865EA6] +10:34:13 ============================================================================ +10:34:13 + + +waiting on router queue for slot.... +10:34:13 Sending to : +10:34:13 ============================================================================ +10:34:13 Sending to : +10:34:13 ============================================================================ +10:34:14 ============================================================================ +10:34:14 Slot Id : <165> +10:34:14 Transaction Type : REQUEST +10:34:14 Received From : +10:34:14 ============================================================================ +10:34:14 FNo. Len. Field Value +10:34:14 ============================================================================ +10:34:14 [ 1] [ 4] [0200] +10:34:14 [ 2] [ 16] [6213548000500361] +10:34:14 [ 3] [ 6] [301000] +10:34:14 [ 7] [ 10] [0320033321] +10:34:14 [ 11] [ 6] [268127] +10:34:14 [ 12] [ 6] [103321] +10:34:14 [ 13] [ 4] [0320] +10:34:14 [ 14] [ 4] [1810] +10:34:14 [ 15] [ 4] [0320] +10:34:14 [ 18] [ 4] [6011] +10:34:14 [ 19] [ 3] [418] +10:34:14 [ 22] [ 3] [021] +10:34:14 [ 25] [ 2] [01] +10:34:14 [ 32] [ 6] [180893] +10:34:14 [ 35] [ 32] [6213548000500361=181012010036225] +10:34:14 [ 37] [ 12] [507903268127] +10:34:14 [ 41] [ 8] [0102SAPA] +10:34:14 [ 42] [ 15] [999999 ] +10:34:14 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +10:34:14 [ 49] [ 3] [418] +10:34:14 [ 52] [ 16] [95B1F3189A865EA6] +10:34:14 ============================================================================ +10:34:14 + + +waiting on router queue for slot.... +10:34:14 Sending to : +10:34:14 ============================================================================ +10:34:14 ============================================================================ +10:34:14 Slot Id : <165> +10:34:14 Transaction Type : REQUEST +10:34:14 Received From : +10:34:14 ============================================================================ +10:34:14 FNo. Len. Field Value +10:34:14 ============================================================================ +10:34:14 [ 1] [ 4] [0200] +10:34:14 [ 2] [ 16] [6213548000500361] +10:34:14 [ 3] [ 6] [301000] +10:34:14 [ 7] [ 10] [0320033321] +10:34:14 [ 11] [ 6] [268127] +10:34:14 [ 12] [ 6] [103321] +10:34:14 [ 13] [ 4] [0320] +10:34:14 [ 14] [ 4] [1810] +10:34:14 [ 15] [ 4] [0320] +10:34:14 [ 18] [ 4] [6011] +10:34:14 [ 19] [ 3] [418] +10:34:14 [ 22] [ 3] [021] +10:34:14 [ 25] [ 2] [01] +10:34:14 [ 32] [ 6] [180893] +10:34:14 [ 35] [ 32] [6213548000500361=181012010036225] +10:34:14 [ 37] [ 12] [507903268127] +10:34:14 [ 41] [ 8] [0102SAPA] +10:34:14 [ 42] [ 15] [999999 ] +10:34:14 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +10:34:14 [ 49] [ 3] [418] +10:34:14 [ 52] [ 16] [A6A51A3006822C34] +10:34:14 ============================================================================ +10:34:14 + + +waiting on router queue for slot.... +10:34:14 Sending to : <0> +10:34:14 ============================================================================ +10:34:15 ============================================================================ +10:34:15 Slot Id : <165> +10:34:15 Transaction Type : RESPONSE +10:34:15 Received From : +10:34:15 ============================================================================ +10:34:15 FNo. Len. Field Value +10:34:15 ============================================================================ +10:34:15 [ 1] [ 4] [0210] +10:34:15 [ 2] [ 16] [6213548000500361] +10:34:15 [ 3] [ 6] [301000] +10:34:15 [ 4] [ 12] [000000000000] +10:34:15 [ 7] [ 10] [0320033321] +10:34:15 [ 11] [ 6] [268127] +10:34:15 [ 12] [ 6] [103321] +10:34:15 [ 13] [ 4] [0320] +10:34:15 [ 15] [ 4] [0320] +10:34:15 [ 18] [ 4] [6011] +10:34:15 [ 19] [ 3] [418] +10:34:15 [ 32] [ 6] [180893] +10:34:15 [ 35] [ 32] [6213548000500361=181012010036225] +10:34:15 [ 37] [ 12] [507903268127] +10:34:15 [ 38] [ 6] [180188] +10:34:15 [ 39] [ 2] [00] +10:34:15 [ 41] [ 8] [0102SAPA] +10:34:15 [ 49] [ 3] [418] +10:34:15 [ 54] [ 40] [1001418C0000554824501002418C000055482450] +10:34:15 ============================================================================ +10:34:15 Sending to : +10:34:15 ============================================================================ +10:34:15 + + +waiting on router queue for slot.... +10:34:15 ============================================================================ +10:34:15 Slot Id : <194> +10:34:15 Transaction Type : REQUEST +10:34:15 Received From : +10:34:15 ============================================================================ +10:34:15 FNo. Len. Field Value +10:34:15 ============================================================================ +10:34:15 [ 1] [ 4] [0800] +10:34:15 [ 7] [ 10] [0320033323] +10:34:15 [ 11] [ 6] [155882] +10:34:15 [ 70] [ 3] [301] +10:34:15 ============================================================================ +10:34:15 + + +waiting on router queue for slot.... +10:34:15 Sending to : +10:34:15 ============================================================================ +10:34:15 ============================================================================ +10:34:15 Slot Id : <194> +10:34:15 Transaction Type : RESPONSE +10:34:15 Received From : +10:34:15 ============================================================================ +10:34:15 FNo. Len. Field Value +10:34:15 ============================================================================ +10:34:15 [ 1] [ 4] [0810] +10:34:15 [ 7] [ 10] [0320033323] +10:34:15 [ 11] [ 6] [155882] +10:34:15 [ 39] [ 2] [00] +10:34:15 [ 70] [ 3] [301] +10:34:15 ============================================================================ +10:34:15 Calculate Source COMM Id = 2 +10:34:15 ============================================================================ +10:34:15 + + +waiting on router queue for slot.... +10:34:19 ============================================================================ +10:34:19 Slot Id : <165> +10:34:19 Transaction Type : RESPONSE +10:34:19 Received From : +10:34:19 ============================================================================ +10:34:19 FNo. Len. Field Value +10:34:19 ============================================================================ +10:34:19 [ 1] [ 4] [0210] +10:34:19 [ 2] [ 16] [6213548000500361] +10:34:19 [ 3] [ 6] [301000] +10:34:19 [ 4] [ 12] [000000000000] +10:34:19 [ 7] [ 10] [0320033321] +10:34:19 [ 11] [ 6] [268127] +10:34:19 [ 12] [ 6] [103321] +10:34:19 [ 13] [ 4] [0320] +10:34:19 [ 15] [ 4] [0320] +10:34:19 [ 18] [ 4] [6011] +10:34:19 [ 19] [ 3] [418] +10:34:19 [ 32] [ 6] [180893] +10:34:19 [ 35] [ 32] [6213548000500361=181012010036225] +10:34:19 [ 37] [ 12] [507903268127] +10:34:19 [ 38] [ 6] [180188] +10:34:19 [ 39] [ 2] [00] +10:34:19 [ 41] [ 8] [0102SAPA] +10:34:19 [ 49] [ 3] [418] +10:34:19 [ 54] [ 40] [1001418C0000554824501002418C000055482450] +10:34:19 ============================================================================ +10:34:19 Calculate Source COMM Id = 2 +10:34:19 ============================================================================ +10:34:19 + + +waiting on router queue for slot.... +10:34:25 ============================================================================ +10:34:25 Slot Id : <195> +10:34:25 Transaction Type : REQUEST +10:34:25 Received From : +10:34:25 ============================================================================ +10:34:25 FNo. Len. Field Value +10:34:25 ============================================================================ +10:34:25 [ 1] [ 4] [0200] +10:34:25 [ 2] [ 16] [6688990102837109] +10:34:25 [ 3] [ 6] [010000] +10:34:25 [ 4] [ 12] [000100000000] +10:34:25 [ 7] [ 10] [0320103421] +10:34:25 [ 11] [ 6] [716036] +10:34:25 [ 12] [ 6] [103421] +10:34:25 [ 13] [ 4] [0320] +10:34:25 [ 15] [ 4] [0320] +10:34:25 [ 18] [ 4] [6011] +10:34:25 [ 22] [ 3] [900] +10:34:25 [ 25] [ 2] [02] +10:34:25 [ 28] [ 9] [D00002000] +10:34:25 [ 32] [ 6] [621354] +10:34:25 [ 35] [ 37] [6688990102837109=42101231710935000000] +10:34:25 [ 37] [ 12] [507905150125] +10:34:25 [ 41] [ 8] [09001900] +10:34:25 [ 42] [ 15] [NATIVE ] +10:34:25 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +10:34:25 [ 49] [ 3] [418] +10:34:25 [ 52] [ 16] [49B90EB978D66CC2] +10:34:25 ============================================================================ +10:34:25 + + +waiting on router queue for slot.... +10:34:25 Sending to : +10:34:25 ============================================================================ +10:34:25 Sending to : +10:34:25 ============================================================================ +10:34:26 ============================================================================ +10:34:26 Slot Id : <195> +10:34:26 Transaction Type : REQUEST +10:34:26 Received From : +10:34:26 ============================================================================ +10:34:26 FNo. Len. Field Value +10:34:26 ============================================================================ +10:34:26 [ 1] [ 4] [0200] +10:34:26 [ 2] [ 16] [6688990102837109] +10:34:26 [ 3] [ 6] [010000] +10:34:26 [ 4] [ 12] [000100000000] +10:34:26 [ 7] [ 10] [0320103421] +10:34:26 [ 11] [ 6] [716036] +10:34:26 [ 12] [ 6] [103421] +10:34:26 [ 13] [ 4] [0320] +10:34:26 [ 15] [ 4] [0320] +10:34:26 [ 18] [ 4] [6011] +10:34:26 [ 22] [ 3] [900] +10:34:26 [ 25] [ 2] [02] +10:34:26 [ 28] [ 9] [D00002000] +10:34:26 [ 32] [ 6] [621354] +10:34:26 [ 35] [ 37] [6688990102837109=42101231710935000000] +10:34:26 [ 37] [ 12] [507905150125] +10:34:26 [ 41] [ 8] [09001900] +10:34:26 [ 42] [ 15] [NATIVE ] +10:34:26 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +10:34:26 [ 49] [ 3] [418] +10:34:26 [ 52] [ 16] [49B90EB978D66CC2] +10:34:26 ============================================================================ +10:34:26 + + +waiting on router queue for slot.... +10:34:26 Sending to : +10:34:26 ============================================================================ +10:34:26 ============================================================================ +10:34:26 Slot Id : <195> +10:34:26 Transaction Type : REQUEST +10:34:26 Received From : +10:34:26 ============================================================================ +10:34:26 FNo. Len. Field Value +10:34:26 ============================================================================ +10:34:26 [ 1] [ 4] [0200] +10:34:26 [ 2] [ 16] [6688990102837109] +10:34:26 [ 3] [ 6] [010000] +10:34:26 [ 4] [ 12] [000100000000] +10:34:26 [ 7] [ 10] [0320103421] +10:34:26 [ 11] [ 6] [716036] +10:34:26 [ 12] [ 6] [103421] +10:34:26 [ 13] [ 4] [0320] +10:34:26 [ 15] [ 4] [0320] +10:34:26 [ 18] [ 4] [6011] +10:34:26 [ 22] [ 3] [900] +10:34:26 [ 25] [ 2] [02] +10:34:26 [ 28] [ 9] [D00002000] +10:34:26 [ 32] [ 6] [621354] +10:34:26 [ 35] [ 37] [6688990102837109=42101231710935000000] +10:34:26 [ 37] [ 12] [507905150125] +10:34:26 [ 41] [ 8] [09001900] +10:34:26 [ 42] [ 15] [NATIVE ] +10:34:26 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +10:34:26 [ 49] [ 3] [418] +10:34:26 [ 52] [ 16] [F03B873F8162B7CA] +10:34:26 ============================================================================ +10:34:26 + + +waiting on router queue for slot.... +10:34:26 Sending to : <4> +10:34:26 ============================================================================ +10:34:26 ============================================================================ +10:34:26 Slot Id : <184> +10:34:26 Transaction Type : REQUEST +10:34:26 Received From : +10:34:26 ============================================================================ +10:34:26 FNo. Len. Field Value +10:34:26 ============================================================================ +10:34:26 [ 1] [ 4] [0200] +10:34:26 [ 2] [ 16] [6213545000646194] +10:34:26 [ 3] [ 6] [010000] +10:34:26 [ 4] [ 12] [000020000000] +10:34:26 [ 7] [ 10] [0320103217] +10:34:26 [ 11] [ 6] [938975] +10:34:26 [ 12] [ 6] [103217] +10:34:26 [ 13] [ 4] [0320] +10:34:26 [ 15] [ 4] [0320] +10:34:26 [ 18] [ 4] [6011] +10:34:26 [ 19] [ 3] [418] +10:34:26 [ 22] [ 3] [021] +10:34:26 [ 25] [ 2] [01] +10:34:26 [ 28] [ 9] [D00002000] +10:34:26 [ 32] [ 6] [668899] +10:34:26 [ 35] [ 32] [6213545000646194=491212014619240] +10:34:26 [ 37] [ 12] [507902379460] +10:34:26 [ 41] [ 8] [03017003] +10:34:26 [ 42] [ 15] [APT ] +10:34:26 [ 43] [ 40] [ SEKONG MARKET SEKONG ] +10:34:26 [ 49] [ 3] [418] +10:34:26 [ 52] [ 16] [52B2E7CB4C7F2811] +10:34:26 ============================================================================ +10:34:26 + + +waiting on router queue for slot.... +10:34:26 Sending to : +10:34:26 ============================================================================ +10:34:26 Sending to : +10:34:26 ============================================================================ +10:34:26 ============================================================================ +10:34:26 Slot Id : <184> +10:34:26 Transaction Type : REQUEST +10:34:26 Received From : +10:34:26 ============================================================================ +10:34:26 FNo. Len. Field Value +10:34:26 ============================================================================ +10:34:26 [ 1] [ 4] [0200] +10:34:26 [ 2] [ 16] [6213545000646194] +10:34:26 [ 3] [ 6] [010000] +10:34:26 [ 4] [ 12] [000020000000] +10:34:26 [ 7] [ 10] [0320103217] +10:34:26 [ 11] [ 6] [938975] +10:34:26 [ 12] [ 6] [103217] +10:34:26 [ 13] [ 4] [0320] +10:34:26 [ 15] [ 4] [0320] +10:34:26 [ 18] [ 4] [6011] +10:34:26 [ 19] [ 3] [418] +10:34:26 [ 22] [ 3] [021] +10:34:26 [ 25] [ 2] [01] +10:34:26 [ 28] [ 9] [D00002000] +10:34:26 [ 32] [ 6] [668899] +10:34:26 [ 35] [ 32] [6213545000646194=491212014619240] +10:34:26 [ 37] [ 12] [507902379460] +10:34:26 [ 41] [ 8] [03017003] +10:34:26 [ 42] [ 15] [APT ] +10:34:26 [ 43] [ 40] [ SEKONG MARKET SEKONG ] +10:34:26 [ 49] [ 3] [418] +10:34:26 [ 52] [ 16] [52B2E7CB4C7F2811] +10:34:26 ============================================================================ +10:34:26 + + +waiting on router queue for slot.... +10:34:26 Sending to : +10:34:26 ============================================================================ +10:34:26 ============================================================================ +10:34:26 Slot Id : <184> +10:34:26 Transaction Type : REQUEST +10:34:26 Received From : +10:34:26 ============================================================================ +10:34:26 FNo. Len. Field Value +10:34:26 ============================================================================ +10:34:26 [ 1] [ 4] [0200] +10:34:26 [ 2] [ 16] [6213545000646194] +10:34:26 [ 3] [ 6] [010000] +10:34:26 [ 4] [ 12] [000020000000] +10:34:26 [ 7] [ 10] [0320103217] +10:34:26 [ 11] [ 6] [938975] +10:34:26 [ 12] [ 6] [103217] +10:34:26 [ 13] [ 4] [0320] +10:34:26 [ 15] [ 4] [0320] +10:34:26 [ 18] [ 4] [6011] +10:34:26 [ 19] [ 3] [418] +10:34:26 [ 22] [ 3] [021] +10:34:26 [ 25] [ 2] [01] +10:34:26 [ 28] [ 9] [D00002000] +10:34:26 [ 32] [ 6] [668899] +10:34:26 [ 35] [ 32] [6213545000646194=491212014619240] +10:34:26 [ 37] [ 12] [507902379460] +10:34:26 [ 41] [ 8] [03017003] +10:34:26 [ 42] [ 15] [APT ] +10:34:26 [ 43] [ 40] [ SEKONG MARKET SEKONG ] +10:34:26 [ 49] [ 3] [418] +10:34:26 [ 52] [ 16] [82879A2C6E5EF4B8] +10:34:26 ============================================================================ +10:34:26 + + +waiting on router queue for slot.... +10:34:26 Sending to : <0> +10:34:26 ============================================================================ +10:34:27 ============================================================================ +10:34:27 Slot Id : <195> +10:34:27 Transaction Type : RESPONSE +10:34:27 Received From : +10:34:27 ============================================================================ +10:34:27 FNo. Len. Field Value +10:34:27 ============================================================================ +10:34:27 [ 1] [ 4] [0210] +10:34:27 [ 2] [ 16] [6688990102837109] +10:34:27 [ 3] [ 6] [010000] +10:34:27 [ 4] [ 12] [000100000000] +10:34:27 [ 11] [ 6] [716036] +10:34:27 [ 12] [ 6] [103421] +10:34:27 [ 15] [ 4] [0320] +10:34:27 [ 18] [ 4] [6011] +10:34:27 [ 32] [ 6] [621354] +10:34:27 [ 35] [ 37] [6688990102837109=42101231710935000000] +10:34:27 [ 37] [ 12] [507905150125] +10:34:27 [ 38] [ 6] [018353] +10:34:27 [ 39] [ 2] [00] +10:34:27 [ 41] [ 8] [09001900] +10:34:27 [ 49] [ 3] [418] +10:34:27 [ 54] [ 20] [0002840C000000003521] +10:34:27 ============================================================================ +10:34:27 Sending to : +10:34:27 ============================================================================ +10:34:27 + + +waiting on router queue for slot.... +10:34:27 ============================================================================ +10:34:27 Slot Id : <184> +10:34:27 Transaction Type : RESPONSE +10:34:27 Received From : +10:34:27 ============================================================================ +10:34:27 FNo. Len. Field Value +10:34:27 ============================================================================ +10:34:27 [ 1] [ 4] [0210] +10:34:27 [ 2] [ 16] [6213545000646194] +10:34:27 [ 3] [ 6] [010000] +10:34:27 [ 4] [ 12] [000020000000] +10:34:27 [ 7] [ 10] [0320103217] +10:34:27 [ 11] [ 6] [938975] +10:34:27 [ 12] [ 6] [103217] +10:34:27 [ 13] [ 4] [0320] +10:34:27 [ 15] [ 4] [0320] +10:34:27 [ 18] [ 4] [6011] +10:34:27 [ 19] [ 3] [418] +10:34:27 [ 32] [ 6] [668899] +10:34:27 [ 35] [ 32] [6213545000646194=491212014619240] +10:34:27 [ 37] [ 12] [507902379460] +10:34:27 [ 38] [ 6] [368729] +10:34:27 [ 39] [ 2] [00] +10:34:27 [ 41] [ 8] [03017003] +10:34:27 [ 49] [ 3] [418] +10:34:27 [ 54] [ 40] [0001418C0004183332750002418C000418333275] +10:34:27 ============================================================================ +10:34:27 Sending to : +10:34:27 ============================================================================ +10:34:27 + + +waiting on router queue for slot.... +10:34:28 ============================================================================ +10:34:28 Slot Id : <195> +10:34:28 Transaction Type : RESPONSE +10:34:28 Received From : +10:34:28 ============================================================================ +10:34:28 FNo. Len. Field Value +10:34:28 ============================================================================ +10:34:28 [ 1] [ 4] [0210] +10:34:28 [ 2] [ 16] [6688990102837109] +10:34:28 [ 3] [ 6] [010000] +10:34:28 [ 4] [ 12] [000100000000] +10:34:28 [ 11] [ 6] [716036] +10:34:28 [ 12] [ 6] [103421] +10:34:28 [ 15] [ 4] [0320] +10:34:28 [ 18] [ 4] [6011] +10:34:28 [ 32] [ 6] [621354] +10:34:28 [ 35] [ 37] [6688990102837109=42101231710935000000] +10:34:28 [ 37] [ 12] [507905150125] +10:34:28 [ 38] [ 6] [018353] +10:34:28 [ 39] [ 2] [00] +10:34:28 [ 41] [ 8] [09001900] +10:34:28 [ 49] [ 3] [418] +10:34:28 [ 54] [ 20] [0002840C000000003521] +10:34:28 ============================================================================ +10:34:28 Calculate Source COMM Id = 0 +10:34:28 ============================================================================ +10:34:28 + + +waiting on router queue for slot.... +10:34:30 ============================================================================ +10:34:30 Slot Id : <184> +10:34:30 Transaction Type : RESPONSE +10:34:30 Received From : +10:34:30 ============================================================================ +10:34:30 FNo. Len. Field Value +10:34:30 ============================================================================ +10:34:30 [ 1] [ 4] [0210] +10:34:30 [ 2] [ 16] [6213545000646194] +10:34:30 [ 3] [ 6] [010000] +10:34:30 [ 4] [ 12] [000020000000] +10:34:30 [ 7] [ 10] [0320103217] +10:34:30 [ 11] [ 6] [938975] +10:34:30 [ 12] [ 6] [103217] +10:34:30 [ 13] [ 4] [0320] +10:34:30 [ 15] [ 4] [0320] +10:34:30 [ 18] [ 4] [6011] +10:34:30 [ 19] [ 3] [418] +10:34:30 [ 32] [ 6] [668899] +10:34:30 [ 35] [ 32] [6213545000646194=491212014619240] +10:34:30 [ 37] [ 12] [507902379460] +10:34:30 [ 38] [ 6] [368729] +10:34:30 [ 39] [ 2] [00] +10:34:30 [ 41] [ 8] [03017003] +10:34:30 [ 49] [ 3] [418] +10:34:30 [ 54] [ 40] [0001418C0004183332750002418C000418333275] +10:34:30 ============================================================================ +10:34:30 Calculate Source COMM Id = 4 +10:34:30 ============================================================================ +10:34:30 + + +waiting on router queue for slot.... +10:34:31 ============================================================================ +10:34:31 Slot Id : <209> +10:34:31 Transaction Type : REQUEST +10:34:31 Received From : +10:34:31 ============================================================================ +10:34:31 FNo. Len. Field Value +10:34:31 ============================================================================ +10:34:31 [ 1] [ 4] [0800] +10:34:31 [ 7] [ 10] [0320033339] +10:34:31 [ 11] [ 6] [155883] +10:34:31 [ 70] [ 3] [301] +10:34:31 ============================================================================ +10:34:31 + + +waiting on router queue for slot.... +10:34:31 Sending to : +10:34:31 ============================================================================ +10:34:31 ============================================================================ +10:34:31 Slot Id : <209> +10:34:31 Transaction Type : RESPONSE +10:34:31 Received From : +10:34:31 ============================================================================ +10:34:31 FNo. Len. Field Value +10:34:31 ============================================================================ +10:34:31 [ 1] [ 4] [0810] +10:34:31 [ 7] [ 10] [0320033339] +10:34:31 [ 11] [ 6] [155883] +10:34:31 [ 39] [ 2] [00] +10:34:31 [ 70] [ 3] [301] +10:34:31 ============================================================================ +10:34:31 Calculate Source COMM Id = 2 +10:34:31 ============================================================================ +10:34:31 + + +waiting on router queue for slot.... +10:34:35 ============================================================================ +10:34:35 Slot Id : <178> +10:34:35 Transaction Type : REQUEST +10:34:35 Received From : +10:34:35 ============================================================================ +10:34:35 FNo. Len. Field Value +10:34:35 ============================================================================ +10:34:35 [ 1] [ 4] [0200] +10:34:35 [ 2] [ 16] [6213548000509206] +10:34:35 [ 3] [ 6] [010000] +10:34:35 [ 4] [ 12] [000100000000] +10:34:35 [ 7] [ 10] [0320103226] +10:34:35 [ 11] [ 6] [938984] +10:34:35 [ 12] [ 6] [103226] +10:34:35 [ 13] [ 4] [0320] +10:34:35 [ 15] [ 4] [0320] +10:34:35 [ 18] [ 4] [6011] +10:34:35 [ 19] [ 3] [418] +10:34:35 [ 22] [ 3] [021] +10:34:35 [ 25] [ 2] [01] +10:34:35 [ 28] [ 9] [D00002000] +10:34:35 [ 32] [ 6] [668899] +10:34:35 [ 35] [ 32] [6213548000509206=181112010920283] +10:34:35 [ 37] [ 12] [507901912145] +10:34:35 [ 41] [ 8] [03013004] +10:34:35 [ 42] [ 15] [APT ] +10:34:35 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +10:34:35 [ 49] [ 3] [418] +10:34:35 [ 52] [ 16] [BF75F8749AA47306] +10:34:35 ============================================================================ +10:34:35 + + +waiting on router queue for slot.... +10:34:35 Sending to : +10:34:35 ============================================================================ +10:34:35 Sending to : +10:34:35 ============================================================================ +10:34:35 ============================================================================ +10:34:35 Slot Id : <178> +10:34:35 Transaction Type : REQUEST +10:34:35 Received From : +10:34:35 ============================================================================ +10:34:35 FNo. Len. Field Value +10:34:35 ============================================================================ +10:34:35 [ 1] [ 4] [0200] +10:34:35 [ 2] [ 16] [6213548000509206] +10:34:35 [ 3] [ 6] [010000] +10:34:35 [ 4] [ 12] [000100000000] +10:34:35 [ 7] [ 10] [0320103226] +10:34:35 [ 11] [ 6] [938984] +10:34:35 [ 12] [ 6] [103226] +10:34:35 [ 13] [ 4] [0320] +10:34:35 [ 15] [ 4] [0320] +10:34:35 [ 18] [ 4] [6011] +10:34:35 [ 19] [ 3] [418] +10:34:35 [ 22] [ 3] [021] +10:34:35 [ 25] [ 2] [01] +10:34:35 [ 28] [ 9] [D00002000] +10:34:35 [ 32] [ 6] [668899] +10:34:35 [ 35] [ 32] [6213548000509206=181112010920283] +10:34:35 [ 37] [ 12] [507901912145] +10:34:35 [ 41] [ 8] [03013004] +10:34:35 [ 42] [ 15] [APT ] +10:34:35 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +10:34:35 [ 49] [ 3] [418] +10:34:35 [ 52] [ 16] [BF75F8749AA47306] +10:34:35 ============================================================================ +10:34:35 + + +waiting on router queue for slot.... +10:34:35 Sending to : +10:34:35 ============================================================================ +10:34:35 ============================================================================ +10:34:35 Slot Id : <178> +10:34:35 Transaction Type : REQUEST +10:34:35 Received From : +10:34:35 ============================================================================ +10:34:35 FNo. Len. Field Value +10:34:35 ============================================================================ +10:34:35 [ 1] [ 4] [0200] +10:34:35 [ 2] [ 16] [6213548000509206] +10:34:35 [ 3] [ 6] [010000] +10:34:35 [ 4] [ 12] [000100000000] +10:34:35 [ 7] [ 10] [0320103226] +10:34:35 [ 11] [ 6] [938984] +10:34:35 [ 12] [ 6] [103226] +10:34:35 [ 13] [ 4] [0320] +10:34:35 [ 15] [ 4] [0320] +10:34:35 [ 18] [ 4] [6011] +10:34:35 [ 19] [ 3] [418] +10:34:35 [ 22] [ 3] [021] +10:34:35 [ 25] [ 2] [01] +10:34:35 [ 28] [ 9] [D00002000] +10:34:35 [ 32] [ 6] [668899] +10:34:35 [ 35] [ 32] [6213548000509206=181112010920283] +10:34:35 [ 37] [ 12] [507901912145] +10:34:35 [ 41] [ 8] [03013004] +10:34:35 [ 42] [ 15] [APT ] +10:34:35 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +10:34:35 [ 49] [ 3] [418] +10:34:35 [ 52] [ 16] [A78B4DB47D419F13] +10:34:35 ============================================================================ +10:34:35 + + +waiting on router queue for slot.... +10:34:35 Sending to : <0> +10:34:35 ============================================================================ +10:34:36 ============================================================================ +10:34:36 Slot Id : <178> +10:34:36 Transaction Type : RESPONSE +10:34:36 Received From : +10:34:36 ============================================================================ +10:34:36 FNo. Len. Field Value +10:34:36 ============================================================================ +10:34:36 [ 1] [ 4] [0210] +10:34:36 [ 2] [ 16] [6213548000509206] +10:34:36 [ 3] [ 6] [010000] +10:34:36 [ 4] [ 12] [000100000000] +10:34:36 [ 7] [ 10] [0320103226] +10:34:36 [ 11] [ 6] [938984] +10:34:36 [ 12] [ 6] [103226] +10:34:36 [ 13] [ 4] [0320] +10:34:36 [ 15] [ 4] [0320] +10:34:36 [ 18] [ 4] [6011] +10:34:36 [ 19] [ 3] [418] +10:34:36 [ 32] [ 6] [668899] +10:34:36 [ 35] [ 32] [6213548000509206=181112010920283] +10:34:36 [ 37] [ 12] [507901912145] +10:34:36 [ 38] [ 6] [772024] +10:34:36 [ 39] [ 2] [00] +10:34:36 [ 41] [ 8] [03013004] +10:34:36 [ 49] [ 3] [418] +10:34:36 [ 54] [ 40] [0001418C0008673035470002418C000867303547] +10:34:36 ============================================================================ +10:34:36 Sending to : +10:34:36 ============================================================================ +10:34:36 + + +waiting on router queue for slot.... +10:34:37 ============================================================================ +10:34:37 Slot Id : <178> +10:34:37 Transaction Type : RESPONSE +10:34:37 Received From : +10:34:37 ============================================================================ +10:34:37 FNo. Len. Field Value +10:34:37 ============================================================================ +10:34:37 [ 1] [ 4] [0210] +10:34:37 [ 2] [ 16] [6213548000509206] +10:34:37 [ 3] [ 6] [010000] +10:34:37 [ 4] [ 12] [000100000000] +10:34:37 [ 7] [ 10] [0320103226] +10:34:37 [ 11] [ 6] [938984] +10:34:37 [ 12] [ 6] [103226] +10:34:37 [ 13] [ 4] [0320] +10:34:37 [ 15] [ 4] [0320] +10:34:37 [ 18] [ 4] [6011] +10:34:37 [ 19] [ 3] [418] +10:34:37 [ 32] [ 6] [668899] +10:34:37 [ 35] [ 32] [6213548000509206=181112010920283] +10:34:37 [ 37] [ 12] [507901912145] +10:34:37 [ 38] [ 6] [772024] +10:34:37 [ 39] [ 2] [00] +10:34:37 [ 41] [ 8] [03013004] +10:34:37 [ 49] [ 3] [418] +10:34:37 [ 54] [ 40] [0001418C0008673035470002418C000867303547] +10:34:37 ============================================================================ +10:34:37 Calculate Source COMM Id = 4 +10:34:37 ============================================================================ +10:34:37 + + +waiting on router queue for slot.... +10:34:42 ============================================================================ +10:34:42 Slot Id : <213> +10:34:42 Transaction Type : REQUEST +10:34:42 Received From : +10:34:42 ============================================================================ +10:34:42 FNo. Len. Field Value +10:34:42 ============================================================================ +10:34:42 [ 1] [ 4] [0800] +10:34:42 [ 7] [ 10] [0320033350] +10:34:42 [ 11] [ 6] [155884] +10:34:42 [ 70] [ 3] [301] +10:34:42 ============================================================================ +10:34:42 + + +waiting on router queue for slot.... +10:34:42 Sending to : +10:34:42 ============================================================================ +10:34:42 ============================================================================ +10:34:42 Slot Id : <213> +10:34:42 Transaction Type : RESPONSE +10:34:42 Received From : +10:34:42 ============================================================================ +10:34:42 FNo. Len. Field Value +10:34:42 ============================================================================ +10:34:42 [ 1] [ 4] [0810] +10:34:42 [ 7] [ 10] [0320033350] +10:34:42 [ 11] [ 6] [155884] +10:34:42 [ 39] [ 2] [00] +10:34:42 [ 70] [ 3] [301] +10:34:42 ============================================================================ +10:34:42 Calculate Source COMM Id = 2 +10:34:42 ============================================================================ +10:34:42 + + +waiting on router queue for slot.... +10:34:50 ============================================================================ +10:34:50 Slot Id : <206> +10:34:50 Transaction Type : REQUEST +10:34:50 Received From : +10:34:50 ============================================================================ +10:34:50 FNo. Len. Field Value +10:34:50 ============================================================================ +10:34:50 [ 1] [ 4] [0200] +10:34:50 [ 2] [ 16] [6213545000078430] +10:34:50 [ 3] [ 6] [010000] +10:34:50 [ 4] [ 12] [000100000000] +10:34:50 [ 7] [ 10] [0320033356] +10:34:50 [ 11] [ 6] [268133] +10:34:50 [ 12] [ 6] [103356] +10:34:50 [ 13] [ 4] [0320] +10:34:50 [ 14] [ 4] [4912] +10:34:50 [ 15] [ 4] [0320] +10:34:50 [ 18] [ 4] [6011] +10:34:50 [ 19] [ 3] [418] +10:34:50 [ 22] [ 3] [021] +10:34:50 [ 25] [ 2] [01] +10:34:50 [ 28] [ 9] [D00002000] +10:34:50 [ 32] [ 6] [180893] +10:34:50 [ 35] [ 32] [6213545000078430=491212017843834] +10:34:50 [ 37] [ 12] [507903268133] +10:34:50 [ 41] [ 8] [0112CPBR] +10:34:50 [ 42] [ 15] [999999 ] +10:34:50 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:34:50 [ 49] [ 3] [418] +10:34:50 [ 52] [ 16] [27F7145C26800828] +10:34:50 ============================================================================ +10:34:50 + + +waiting on router queue for slot.... +10:34:50 Sending to : +10:34:50 ============================================================================ +10:34:50 Sending to : +10:34:50 ============================================================================ +10:34:50 ============================================================================ +10:34:50 Slot Id : <206> +10:34:50 Transaction Type : REQUEST +10:34:50 Received From : +10:34:50 ============================================================================ +10:34:50 FNo. Len. Field Value +10:34:50 ============================================================================ +10:34:50 [ 1] [ 4] [0200] +10:34:50 [ 2] [ 16] [6213545000078430] +10:34:50 [ 3] [ 6] [010000] +10:34:50 [ 4] [ 12] [000100000000] +10:34:50 [ 7] [ 10] [0320033356] +10:34:50 [ 11] [ 6] [268133] +10:34:50 [ 12] [ 6] [103356] +10:34:50 [ 13] [ 4] [0320] +10:34:50 [ 14] [ 4] [4912] +10:34:50 [ 15] [ 4] [0320] +10:34:50 [ 18] [ 4] [6011] +10:34:50 [ 19] [ 3] [418] +10:34:50 [ 22] [ 3] [021] +10:34:50 [ 25] [ 2] [01] +10:34:50 [ 28] [ 9] [D00002000] +10:34:50 [ 32] [ 6] [180893] +10:34:50 [ 35] [ 32] [6213545000078430=491212017843834] +10:34:50 [ 37] [ 12] [507903268133] +10:34:50 [ 41] [ 8] [0112CPBR] +10:34:50 [ 42] [ 15] [999999 ] +10:34:50 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:34:50 [ 49] [ 3] [418] +10:34:50 [ 52] [ 16] [27F7145C26800828] +10:34:50 ============================================================================ +10:34:50 + + +waiting on router queue for slot.... +10:34:50 Sending to : +10:34:50 ============================================================================ +10:34:50 ============================================================================ +10:34:50 Slot Id : <206> +10:34:50 Transaction Type : REQUEST +10:34:50 Received From : +10:34:50 ============================================================================ +10:34:50 FNo. Len. Field Value +10:34:50 ============================================================================ +10:34:50 [ 1] [ 4] [0200] +10:34:50 [ 2] [ 16] [6213545000078430] +10:34:50 [ 3] [ 6] [010000] +10:34:50 [ 4] [ 12] [000100000000] +10:34:50 [ 7] [ 10] [0320033356] +10:34:50 [ 11] [ 6] [268133] +10:34:50 [ 12] [ 6] [103356] +10:34:50 [ 13] [ 4] [0320] +10:34:50 [ 14] [ 4] [4912] +10:34:50 [ 15] [ 4] [0320] +10:34:50 [ 18] [ 4] [6011] +10:34:50 [ 19] [ 3] [418] +10:34:50 [ 22] [ 3] [021] +10:34:50 [ 25] [ 2] [01] +10:34:50 [ 28] [ 9] [D00002000] +10:34:50 [ 32] [ 6] [180893] +10:34:50 [ 35] [ 32] [6213545000078430=491212017843834] +10:34:50 [ 37] [ 12] [507903268133] +10:34:50 [ 41] [ 8] [0112CPBR] +10:34:50 [ 42] [ 15] [999999 ] +10:34:50 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:34:50 [ 49] [ 3] [418] +10:34:50 [ 52] [ 16] [751E9BE395ABA06F] +10:34:50 ============================================================================ +10:34:50 + + +waiting on router queue for slot.... +10:34:50 Sending to : <0> +10:34:50 ============================================================================ +10:34:50 ============================================================================ +10:34:50 Slot Id : <206> +10:34:50 Transaction Type : RESPONSE +10:34:50 Received From : +10:34:50 ============================================================================ +10:34:50 FNo. Len. Field Value +10:34:50 ============================================================================ +10:34:50 [ 1] [ 4] [0210] +10:34:50 [ 2] [ 16] [6213545000078430] +10:34:50 [ 3] [ 6] [010000] +10:34:50 [ 4] [ 12] [000100000000] +10:34:50 [ 7] [ 10] [0320033356] +10:34:50 [ 11] [ 6] [268133] +10:34:50 [ 12] [ 6] [103356] +10:34:50 [ 13] [ 4] [0320] +10:34:50 [ 15] [ 4] [0320] +10:34:50 [ 18] [ 4] [6011] +10:34:50 [ 19] [ 3] [418] +10:34:50 [ 32] [ 6] [180893] +10:34:50 [ 35] [ 32] [6213545000078430=491212017843834] +10:34:50 [ 37] [ 12] [507903268133] +10:34:50 [ 38] [ 6] [268133] +10:34:50 [ 39] [ 2] [51] +10:34:50 [ 41] [ 8] [0112CPBR] +10:34:50 [ 49] [ 3] [418] +10:34:50 [ 54] [ 40] [0001418C0000320109560002418C000032010956] +10:34:50 ============================================================================ +10:34:50 Sending to : +10:34:50 ============================================================================ +10:34:50 + + +waiting on router queue for slot.... +10:34:51 ============================================================================ +10:34:51 Slot Id : <208> +10:34:51 Transaction Type : REQUEST +10:34:51 Received From : +10:34:51 ============================================================================ +10:34:51 FNo. Len. Field Value +10:34:51 ============================================================================ +10:34:51 [ 1] [ 4] [0200] +10:34:51 [ 2] [ 16] [1808931500005671] +10:34:51 [ 3] [ 6] [011000] +10:34:51 [ 4] [ 12] [000030000000] +10:34:51 [ 7] [ 10] [0320103447] +10:34:51 [ 11] [ 6] [716145] +10:34:51 [ 12] [ 6] [103447] +10:34:51 [ 13] [ 4] [0320] +10:34:51 [ 15] [ 4] [0320] +10:34:51 [ 18] [ 4] [6011] +10:34:51 [ 22] [ 3] [900] +10:34:51 [ 25] [ 2] [02] +10:34:51 [ 28] [ 9] [D00002000] +10:34:51 [ 32] [ 6] [621354] +10:34:51 [ 35] [ 27] [1808931500005671=1803500645] +10:34:51 [ 37] [ 12] [507905261882] +10:34:51 [ 41] [ 8] [19000900] +10:34:51 [ 42] [ 15] [NATIVE ] +10:34:51 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:34:51 [ 49] [ 3] [418] +10:34:51 [ 52] [ 16] [6672029E4EC0754D] +10:34:51 ============================================================================ +10:34:51 + + +waiting on router queue for slot.... +10:34:51 Sending to : +10:34:51 ============================================================================ +10:34:51 Sending to : +10:34:51 ============================================================================ +10:34:52 ============================================================================ +10:34:52 Slot Id : <206> +10:34:52 Transaction Type : RESPONSE +10:34:52 Received From : +10:34:52 ============================================================================ +10:34:52 FNo. Len. Field Value +10:34:52 ============================================================================ +10:34:52 [ 1] [ 4] [0210] +10:34:52 [ 2] [ 16] [6213545000078430] +10:34:52 [ 3] [ 6] [010000] +10:34:52 [ 4] [ 12] [000100000000] +10:34:52 [ 7] [ 10] [0320033356] +10:34:52 [ 11] [ 6] [268133] +10:34:52 [ 12] [ 6] [103356] +10:34:52 [ 13] [ 4] [0320] +10:34:52 [ 15] [ 4] [0320] +10:34:52 [ 18] [ 4] [6011] +10:34:52 [ 19] [ 3] [418] +10:34:52 [ 32] [ 6] [180893] +10:34:52 [ 35] [ 32] [6213545000078430=491212017843834] +10:34:52 [ 37] [ 12] [507903268133] +10:34:52 [ 38] [ 6] [268133] +10:34:52 [ 39] [ 2] [51] +10:34:52 [ 41] [ 8] [0112CPBR] +10:34:52 [ 49] [ 3] [418] +10:34:52 [ 54] [ 40] [0001418C0000320109560002418C000032010956] +10:34:52 ============================================================================ +10:34:52 Calculate Source COMM Id = 2 +10:34:52 ============================================================================ +10:34:52 + + +waiting on router queue for slot.... +10:34:52 ============================================================================ +10:34:52 Slot Id : <208> +10:34:52 Transaction Type : REQUEST +10:34:52 Received From : +10:34:52 ============================================================================ +10:34:52 FNo. Len. Field Value +10:34:52 ============================================================================ +10:34:52 [ 1] [ 4] [0200] +10:34:52 [ 2] [ 16] [1808931500005671] +10:34:52 [ 3] [ 6] [011000] +10:34:52 [ 4] [ 12] [000030000000] +10:34:52 [ 7] [ 10] [0320103447] +10:34:52 [ 11] [ 6] [716145] +10:34:52 [ 12] [ 6] [103447] +10:34:52 [ 13] [ 4] [0320] +10:34:52 [ 15] [ 4] [0320] +10:34:52 [ 18] [ 4] [6011] +10:34:52 [ 22] [ 3] [900] +10:34:52 [ 25] [ 2] [02] +10:34:52 [ 28] [ 9] [D00002000] +10:34:52 [ 32] [ 6] [621354] +10:34:52 [ 35] [ 27] [1808931500005671=1803500645] +10:34:52 [ 37] [ 12] [507905261882] +10:34:52 [ 41] [ 8] [19000900] +10:34:52 [ 42] [ 15] [NATIVE ] +10:34:52 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:34:52 [ 49] [ 3] [418] +10:34:52 [ 52] [ 16] [6672029E4EC0754D] +10:34:52 ============================================================================ +10:34:52 + + +waiting on router queue for slot.... +10:34:52 Sending to : +10:34:52 ============================================================================ +10:34:52 ============================================================================ +10:34:52 Slot Id : <208> +10:34:52 Transaction Type : REQUEST +10:34:52 Received From : +10:34:52 ============================================================================ +10:34:52 FNo. Len. Field Value +10:34:52 ============================================================================ +10:34:52 [ 1] [ 4] [0200] +10:34:52 [ 2] [ 16] [1808931500005671] +10:34:52 [ 3] [ 6] [011000] +10:34:52 [ 4] [ 12] [000030000000] +10:34:52 [ 7] [ 10] [0320103447] +10:34:52 [ 11] [ 6] [716145] +10:34:52 [ 12] [ 6] [103447] +10:34:52 [ 13] [ 4] [0320] +10:34:52 [ 15] [ 4] [0320] +10:34:52 [ 18] [ 4] [6011] +10:34:52 [ 22] [ 3] [900] +10:34:52 [ 25] [ 2] [02] +10:34:52 [ 28] [ 9] [D00002000] +10:34:52 [ 32] [ 6] [621354] +10:34:52 [ 35] [ 27] [1808931500005671=1803500645] +10:34:52 [ 37] [ 12] [507905261882] +10:34:52 [ 41] [ 8] [19000900] +10:34:52 [ 42] [ 15] [NATIVE ] +10:34:52 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +10:34:52 [ 49] [ 3] [418] +10:34:52 [ 52] [ 16] [813671D317056C44] +10:34:52 ============================================================================ +10:34:52 + + +waiting on router queue for slot.... +10:34:52 Sending to : <2> +10:34:52 ============================================================================ +10:34:53 ============================================================================ +10:34:53 Slot Id : <193> +10:34:53 Transaction Type : REQUEST +10:34:53 Received From : +10:34:53 ============================================================================ +10:34:53 FNo. Len. Field Value +10:34:53 ============================================================================ +10:34:53 [ 1] [ 4] [0800] +10:34:53 [ 7] [ 10] [0320033401] +10:34:53 [ 11] [ 6] [155885] +10:34:53 [ 70] [ 3] [301] +10:34:53 ============================================================================ +10:34:53 + + +waiting on router queue for slot.... +10:34:53 Sending to : +10:34:53 ============================================================================ +10:34:53 ============================================================================ +10:34:53 Slot Id : <193> +10:34:53 Transaction Type : RESPONSE +10:34:53 Received From : +10:34:53 ============================================================================ +10:34:53 FNo. Len. Field Value +10:34:53 ============================================================================ +10:34:53 [ 1] [ 4] [0810] +10:34:53 [ 7] [ 10] [0320033401] +10:34:53 [ 11] [ 6] [155885] +10:34:53 [ 39] [ 2] [00] +10:34:53 [ 70] [ 3] [301] +10:34:53 ============================================================================ +10:34:53 Calculate Source COMM Id = 2 +10:34:53 ============================================================================ +10:34:53 + + +waiting on router queue for slot.... +10:34:55 ============================================================================ +10:34:55 Slot Id : <221> +10:34:55 Transaction Type : REQUEST +10:34:55 Received From : +10:34:55 ============================================================================ +10:34:55 FNo. Len. Field Value +10:34:55 ============================================================================ +10:34:55 [ 1] [ 4] [0800] +10:34:55 [ 7] [ 10] [0320034242] +10:34:55 [ 11] [ 6] [023585] +10:34:55 [ 37] [ 12] [57910023585] +10:34:55 [ 70] [ 3] [301] +10:34:55 ============================================================================ +10:34:55 + + +waiting on router queue for slot.... +10:34:55 Sending to : +10:34:55 ============================================================================ +10:34:55 ============================================================================ +10:34:55 Slot Id : <221> +10:34:55 Transaction Type : RESPONSE +10:34:55 Received From : +10:34:55 ============================================================================ +10:34:55 FNo. Len. Field Value +10:34:55 ============================================================================ +10:34:55 [ 1] [ 4] [0810] +10:34:55 [ 7] [ 10] [0320034242] +10:34:55 [ 11] [ 6] [023585] +10:34:55 [ 37] [ 12] [579100235850] +10:34:55 [ 39] [ 2] [00] +10:34:55 [ 70] [ 3] [810] +10:34:55 ============================================================================ +10:34:55 Calculate Source COMM Id = 1 +10:34:55 ============================================================================ +10:34:55 + + +waiting on router queue for slot.... +10:35:00 ============================================================================ +10:35:00 Slot Id : <208> +10:35:00 Transaction Type : RESPONSE +10:35:00 Received From : +10:35:00 ============================================================================ +10:35:00 FNo. Len. Field Value +10:35:00 ============================================================================ +10:35:00 [ 1] [ 4] [0210] +10:35:00 [ 2] [ 16] [1808931500005671] +10:35:00 [ 3] [ 6] [011000] +10:35:00 [ 4] [ 12] [000030000000] +10:35:00 [ 6] [ 12] [000030000000] +10:35:00 [ 7] [ 10] [0320103447] +10:35:00 [ 11] [ 6] [716145] +10:35:00 [ 12] [ 6] [103447] +10:35:00 [ 13] [ 4] [0320] +10:35:00 [ 18] [ 4] [6011] +10:35:00 [ 19] [ 3] [418] +10:35:00 [ 22] [ 3] [021] +10:35:00 [ 32] [ 6] [621354] +10:35:00 [ 35] [ 27] [1808931500005671=1803500645] +10:35:00 [ 37] [ 12] [507905261882] +10:35:00 [ 38] [ 6] [716145] +10:35:00 [ 39] [ 2] [00] +10:35:00 [ 41] [ 8] [19000900] +10:35:00 [ 49] [ 3] [418] +10:35:00 [ 52] [ 16] [813671D317056C44] +10:35:00 [ 54] [ 20] [1001418C000002638220] +10:35:00 ============================================================================ +10:35:00 Sending to : +10:35:00 ============================================================================ +10:35:00 + + +waiting on router queue for slot.... +10:35:06 ============================================================================ +10:35:06 Slot Id : <208> +10:35:06 Transaction Type : RESPONSE +10:35:06 Received From : +10:35:06 ============================================================================ +10:35:06 FNo. Len. Field Value +10:35:06 ============================================================================ +10:35:06 [ 1] [ 4] [0210] +10:35:06 [ 2] [ 16] [1808931500005671] +10:35:06 [ 3] [ 6] [011000] +10:35:06 [ 4] [ 12] [000030000000] +10:35:06 [ 6] [ 12] [000030000000] +10:35:06 [ 7] [ 10] [0320103447] +10:35:06 [ 11] [ 6] [716145] +10:35:06 [ 12] [ 6] [103447] +10:35:06 [ 13] [ 4] [0320] +10:35:06 [ 18] [ 4] [6011] +10:35:06 [ 19] [ 3] [418] +10:35:06 [ 22] [ 3] [021] +10:35:06 [ 32] [ 6] [621354] +10:35:06 [ 35] [ 27] [1808931500005671=1803500645] +10:35:06 [ 37] [ 12] [507905261882] +10:35:06 [ 38] [ 6] [716145] +10:35:06 [ 39] [ 2] [00] +10:35:06 [ 41] [ 8] [19000900] +10:35:06 [ 49] [ 3] [418] +10:35:06 [ 52] [ 16] [813671D317056C44] +10:35:06 [ 54] [ 20] [1001418C000002638220] +10:35:06 ============================================================================ +10:35:06 Calculate Source COMM Id = 0 +10:35:06 ============================================================================ +10:35:06 + + +waiting on router queue for slot.... +10:35:06 ============================================================================ +10:35:06 Slot Id : <207> +10:35:06 Transaction Type : REQUEST +10:35:06 Received From : +10:35:06 ============================================================================ +10:35:06 FNo. Len. Field Value +10:35:06 ============================================================================ +10:35:06 [ 1] [ 4] [0800] +10:35:06 [ 2] [ 5] [02531] +10:35:06 [ 3] [ 6] [579108] +10:35:06 [ 7] [ 10] [0320033505] +10:35:06 [ 11] [ 6] [807026] +10:35:06 [ 15] [ 10] [0320033505] +10:35:06 [ 37] [ 11] [57910807026] +10:35:06 [ 70] [ 3] [001] +10:35:06 ============================================================================ +10:35:06 + + +waiting on router queue for slot.... +10:35:06 ============================================================================ +10:35:06 Slot Id : <207> +10:35:06 Transaction Type : RESPONSE +10:35:06 Received From : +10:35:06 ============================================================================ +10:35:06 FNo. Len. Field Value +10:35:06 ============================================================================ +10:35:06 [ 1] [ 4] [0810] +10:35:06 [ 7] [ 10] [0320033505] +10:35:06 [ 11] [ 6] [807026] +10:35:06 [ 15] [ 4] [0320] +10:35:06 [ 37] [ 12] [57910807026] +10:35:06 [ 39] [ 2] [00] +10:35:06 [ 70] [ 3] [001] +10:35:06 ============================================================================ +10:35:06 Sending to : +10:35:06 ============================================================================ +10:35:06 + + +waiting on router queue for slot.... +10:35:08 ============================================================================ +10:35:08 Slot Id : <212> +10:35:08 Transaction Type : REQUEST +10:35:08 Received From : +10:35:08 ============================================================================ +10:35:08 FNo. Len. Field Value +10:35:08 ============================================================================ +10:35:08 [ 1] [ 4] [0800] +10:35:08 [ 7] [ 10] [0320033416] +10:35:08 [ 11] [ 6] [155886] +10:35:08 [ 70] [ 3] [301] +10:35:08 ============================================================================ +10:35:08 + + +waiting on router queue for slot.... +10:35:08 Sending to : +10:35:08 ============================================================================ +10:35:08 ============================================================================ +10:35:08 Slot Id : <212> +10:35:08 Transaction Type : RESPONSE +10:35:08 Received From : +10:35:08 ============================================================================ +10:35:08 FNo. Len. Field Value +10:35:08 ============================================================================ +10:35:08 [ 1] [ 4] [0810] +10:35:08 [ 7] [ 10] [0320033416] +10:35:08 [ 11] [ 6] [155886] +10:35:08 [ 39] [ 2] [00] +10:35:08 [ 70] [ 3] [301] +10:35:08 ============================================================================ +10:35:08 Calculate Source COMM Id = 2 +10:35:08 ============================================================================ +10:35:08 + + +waiting on router queue for slot.... +10:35:11 ============================================================================ +10:35:11 Slot Id : <185> +10:35:11 Transaction Type : REQUEST +10:35:11 Received From : +10:35:11 ============================================================================ +10:35:11 FNo. Len. Field Value +10:35:11 ============================================================================ +10:35:11 [ 1] [ 4] [0200] +10:35:11 [ 2] [ 16] [6213541000325749] +10:35:11 [ 3] [ 6] [010000] +10:35:11 [ 4] [ 12] [000100000000] +10:35:11 [ 7] [ 10] [0320103302] +10:35:11 [ 11] [ 6] [939009] +10:35:11 [ 12] [ 6] [103302] +10:35:11 [ 13] [ 4] [0320] +10:35:11 [ 15] [ 4] [0320] +10:35:11 [ 18] [ 4] [6011] +10:35:11 [ 19] [ 3] [418] +10:35:11 [ 22] [ 3] [021] +10:35:11 [ 25] [ 2] [01] +10:35:11 [ 28] [ 9] [D00002000] +10:35:11 [ 32] [ 6] [668899] +10:35:11 [ 35] [ 32] [6213541000325749=491212012574926] +10:35:11 [ 37] [ 12] [507902071166] +10:35:11 [ 41] [ 8] [03006007] +10:35:11 [ 42] [ 15] [APT ] +10:35:11 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:35:11 [ 49] [ 3] [418] +10:35:11 [ 52] [ 16] [1167A71784893A53] +10:35:11 ============================================================================ +10:35:11 + + +waiting on router queue for slot.... +10:35:11 Sending to : +10:35:11 ============================================================================ +10:35:11 Sending to : +10:35:11 ============================================================================ +10:35:11 ============================================================================ +10:35:11 Slot Id : <185> +10:35:11 Transaction Type : REQUEST +10:35:11 Received From : +10:35:11 ============================================================================ +10:35:11 FNo. Len. Field Value +10:35:11 ============================================================================ +10:35:11 [ 1] [ 4] [0200] +10:35:11 [ 2] [ 16] [6213541000325749] +10:35:11 [ 3] [ 6] [010000] +10:35:11 [ 4] [ 12] [000100000000] +10:35:11 [ 7] [ 10] [0320103302] +10:35:11 [ 11] [ 6] [939009] +10:35:11 [ 12] [ 6] [103302] +10:35:11 [ 13] [ 4] [0320] +10:35:11 [ 15] [ 4] [0320] +10:35:11 [ 18] [ 4] [6011] +10:35:11 [ 19] [ 3] [418] +10:35:11 [ 22] [ 3] [021] +10:35:11 [ 25] [ 2] [01] +10:35:11 [ 28] [ 9] [D00002000] +10:35:11 [ 32] [ 6] [668899] +10:35:11 [ 35] [ 32] [6213541000325749=491212012574926] +10:35:11 [ 37] [ 12] [507902071166] +10:35:11 [ 41] [ 8] [03006007] +10:35:11 [ 42] [ 15] [APT ] +10:35:11 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:35:11 [ 49] [ 3] [418] +10:35:11 [ 52] [ 16] [1167A71784893A53] +10:35:11 ============================================================================ +10:35:11 + + +waiting on router queue for slot.... +10:35:11 Sending to : +10:35:11 ============================================================================ +10:35:11 ============================================================================ +10:35:11 Slot Id : <185> +10:35:11 Transaction Type : REQUEST +10:35:11 Received From : +10:35:11 ============================================================================ +10:35:11 FNo. Len. Field Value +10:35:11 ============================================================================ +10:35:11 [ 1] [ 4] [0200] +10:35:11 [ 2] [ 16] [6213541000325749] +10:35:11 [ 3] [ 6] [010000] +10:35:11 [ 4] [ 12] [000100000000] +10:35:11 [ 7] [ 10] [0320103302] +10:35:11 [ 11] [ 6] [939009] +10:35:11 [ 12] [ 6] [103302] +10:35:11 [ 13] [ 4] [0320] +10:35:11 [ 15] [ 4] [0320] +10:35:11 [ 18] [ 4] [6011] +10:35:11 [ 19] [ 3] [418] +10:35:11 [ 22] [ 3] [021] +10:35:11 [ 25] [ 2] [01] +10:35:11 [ 28] [ 9] [D00002000] +10:35:11 [ 32] [ 6] [668899] +10:35:11 [ 35] [ 32] [6213541000325749=491212012574926] +10:35:11 [ 37] [ 12] [507902071166] +10:35:11 [ 41] [ 8] [03006007] +10:35:11 [ 42] [ 15] [APT ] +10:35:11 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:35:11 [ 49] [ 3] [418] +10:35:11 [ 52] [ 16] [FE991BAE5A520AA9] +10:35:11 ============================================================================ +10:35:11 + + +waiting on router queue for slot.... +10:35:11 Sending to : <0> +10:35:11 ============================================================================ +10:35:12 ============================================================================ +10:35:12 Slot Id : <185> +10:35:12 Transaction Type : RESPONSE +10:35:12 Received From : +10:35:12 ============================================================================ +10:35:12 FNo. Len. Field Value +10:35:12 ============================================================================ +10:35:12 [ 1] [ 4] [0210] +10:35:12 [ 2] [ 16] [6213541000325749] +10:35:12 [ 3] [ 6] [010000] +10:35:12 [ 4] [ 12] [000100000000] +10:35:12 [ 7] [ 10] [0320103302] +10:35:12 [ 11] [ 6] [939009] +10:35:12 [ 12] [ 6] [103302] +10:35:12 [ 13] [ 4] [0320] +10:35:12 [ 15] [ 4] [0320] +10:35:12 [ 18] [ 4] [6011] +10:35:12 [ 19] [ 3] [418] +10:35:12 [ 32] [ 6] [668899] +10:35:12 [ 35] [ 32] [6213541000325749=491212012574926] +10:35:12 [ 37] [ 12] [507902071166] +10:35:12 [ 38] [ 6] [911800] +10:35:12 [ 39] [ 2] [00] +10:35:12 [ 41] [ 8] [03006007] +10:35:12 [ 49] [ 3] [418] +10:35:12 [ 54] [ 40] [0001418C0001540349240002418C000154034924] +10:35:12 ============================================================================ +10:35:12 Sending to : +10:35:12 ============================================================================ +10:35:12 + + +waiting on router queue for slot.... +10:35:14 ============================================================================ +10:35:14 Slot Id : <185> +10:35:14 Transaction Type : RESPONSE +10:35:14 Received From : +10:35:14 ============================================================================ +10:35:14 FNo. Len. Field Value +10:35:14 ============================================================================ +10:35:14 [ 1] [ 4] [0210] +10:35:14 [ 2] [ 16] [6213541000325749] +10:35:14 [ 3] [ 6] [010000] +10:35:14 [ 4] [ 12] [000100000000] +10:35:14 [ 7] [ 10] [0320103302] +10:35:14 [ 11] [ 6] [939009] +10:35:14 [ 12] [ 6] [103302] +10:35:14 [ 13] [ 4] [0320] +10:35:14 [ 15] [ 4] [0320] +10:35:14 [ 18] [ 4] [6011] +10:35:14 [ 19] [ 3] [418] +10:35:14 [ 32] [ 6] [668899] +10:35:14 [ 35] [ 32] [6213541000325749=491212012574926] +10:35:14 [ 37] [ 12] [507902071166] +10:35:14 [ 38] [ 6] [911800] +10:35:14 [ 39] [ 2] [00] +10:35:14 [ 41] [ 8] [03006007] +10:35:14 [ 49] [ 3] [418] +10:35:14 [ 54] [ 40] [0001418C0001540349240002418C000154034924] +10:35:14 ============================================================================ +10:35:14 Calculate Source COMM Id = 4 +10:35:14 ============================================================================ +10:35:14 + + +waiting on router queue for slot.... +10:35:18 ============================================================================ +10:35:18 Slot Id : <183> +10:35:18 Transaction Type : REQUEST +10:35:18 Received From : +10:35:18 ============================================================================ +10:35:18 FNo. Len. Field Value +10:35:18 ============================================================================ +10:35:18 [ 1] [ 4] [0800] +10:35:18 [ 7] [ 10] [0320033426] +10:35:18 [ 11] [ 6] [155887] +10:35:18 [ 70] [ 3] [301] +10:35:18 ============================================================================ +10:35:18 + + +waiting on router queue for slot.... +10:35:18 Sending to : +10:35:18 ============================================================================ +10:35:18 ============================================================================ +10:35:18 Slot Id : <183> +10:35:18 Transaction Type : RESPONSE +10:35:18 Received From : +10:35:18 ============================================================================ +10:35:18 FNo. Len. Field Value +10:35:18 ============================================================================ +10:35:18 [ 1] [ 4] [0810] +10:35:18 [ 7] [ 10] [0320033426] +10:35:18 [ 11] [ 6] [155887] +10:35:18 [ 39] [ 2] [00] +10:35:18 [ 70] [ 3] [301] +10:35:18 ============================================================================ +10:35:18 Calculate Source COMM Id = 2 +10:35:18 ============================================================================ +10:35:18 + + +waiting on router queue for slot.... +10:35:34 ============================================================================ +10:35:34 Slot Id : <211> +10:35:34 Transaction Type : REQUEST +10:35:34 Received From : +10:35:34 ============================================================================ +10:35:34 FNo. Len. Field Value +10:35:34 ============================================================================ +10:35:34 [ 1] [ 4] [0800] +10:35:34 [ 7] [ 10] [0320033442] +10:35:34 [ 11] [ 6] [155888] +10:35:34 [ 70] [ 3] [301] +10:35:34 ============================================================================ +10:35:34 + + +waiting on router queue for slot.... +10:35:34 Sending to : +10:35:34 ============================================================================ +10:35:34 ============================================================================ +10:35:34 Slot Id : <211> +10:35:34 Transaction Type : RESPONSE +10:35:34 Received From : +10:35:34 ============================================================================ +10:35:34 FNo. Len. Field Value +10:35:34 ============================================================================ +10:35:34 [ 1] [ 4] [0810] +10:35:34 [ 7] [ 10] [0320033442] +10:35:34 [ 11] [ 6] [155888] +10:35:34 [ 39] [ 2] [00] +10:35:34 [ 70] [ 3] [301] +10:35:34 ============================================================================ +10:35:34 Calculate Source COMM Id = 2 +10:35:34 ============================================================================ +10:35:34 + + +waiting on router queue for slot.... +10:35:37 ============================================================================ +10:35:37 Slot Id : <149> +10:35:37 Transaction Type : REQUEST +10:35:37 Received From : +10:35:37 ============================================================================ +10:35:37 FNo. Len. Field Value +10:35:37 ============================================================================ +10:35:37 [ 1] [ 4] [0200] +10:35:37 [ 2] [ 16] [6213543000203652] +10:35:37 [ 3] [ 6] [010000] +10:35:37 [ 4] [ 12] [000050000000] +10:35:37 [ 7] [ 10] [0320033443] +10:35:37 [ 11] [ 6] [268136] +10:35:37 [ 12] [ 6] [103443] +10:35:37 [ 13] [ 4] [0320] +10:35:37 [ 14] [ 4] [4912] +10:35:37 [ 15] [ 4] [0320] +10:35:37 [ 18] [ 4] [6011] +10:35:37 [ 19] [ 3] [418] +10:35:37 [ 22] [ 3] [021] +10:35:37 [ 25] [ 2] [01] +10:35:37 [ 28] [ 9] [D00002000] +10:35:37 [ 32] [ 6] [180893] +10:35:37 [ 35] [ 32] [6213543000203652=491212010365119] +10:35:37 [ 37] [ 12] [507903268136] +10:35:37 [ 41] [ 8] [0301LPBX] +10:35:37 [ 42] [ 15] [999999 ] +10:35:37 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +10:35:37 [ 49] [ 3] [418] +10:35:37 [ 52] [ 16] [32DB447E3E2B673E] +10:35:37 ============================================================================ +10:35:37 + + +waiting on router queue for slot.... +10:35:37 Sending to : +10:35:37 ============================================================================ +10:35:37 Sending to : +10:35:37 ============================================================================ +10:35:38 ============================================================================ +10:35:38 Slot Id : <149> +10:35:38 Transaction Type : REQUEST +10:35:38 Received From : +10:35:38 ============================================================================ +10:35:38 FNo. Len. Field Value +10:35:38 ============================================================================ +10:35:38 [ 1] [ 4] [0200] +10:35:38 [ 2] [ 16] [6213543000203652] +10:35:38 [ 3] [ 6] [010000] +10:35:38 [ 4] [ 12] [000050000000] +10:35:38 [ 7] [ 10] [0320033443] +10:35:38 [ 11] [ 6] [268136] +10:35:38 [ 12] [ 6] [103443] +10:35:38 [ 13] [ 4] [0320] +10:35:38 [ 14] [ 4] [4912] +10:35:38 [ 15] [ 4] [0320] +10:35:38 [ 18] [ 4] [6011] +10:35:38 [ 19] [ 3] [418] +10:35:38 [ 22] [ 3] [021] +10:35:38 [ 25] [ 2] [01] +10:35:38 [ 28] [ 9] [D00002000] +10:35:38 [ 32] [ 6] [180893] +10:35:38 [ 35] [ 32] [6213543000203652=491212010365119] +10:35:38 [ 37] [ 12] [507903268136] +10:35:38 [ 41] [ 8] [0301LPBX] +10:35:38 [ 42] [ 15] [999999 ] +10:35:38 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +10:35:38 [ 49] [ 3] [418] +10:35:38 [ 52] [ 16] [32DB447E3E2B673E] +10:35:38 ============================================================================ +10:35:38 + + +waiting on router queue for slot.... +10:35:38 Sending to : +10:35:38 ============================================================================ +10:35:38 ============================================================================ +10:35:38 Slot Id : <149> +10:35:38 Transaction Type : REQUEST +10:35:38 Received From : +10:35:38 ============================================================================ +10:35:38 FNo. Len. Field Value +10:35:38 ============================================================================ +10:35:38 [ 1] [ 4] [0200] +10:35:38 [ 2] [ 16] [6213543000203652] +10:35:38 [ 3] [ 6] [010000] +10:35:38 [ 4] [ 12] [000050000000] +10:35:38 [ 7] [ 10] [0320033443] +10:35:38 [ 11] [ 6] [268136] +10:35:38 [ 12] [ 6] [103443] +10:35:38 [ 13] [ 4] [0320] +10:35:38 [ 14] [ 4] [4912] +10:35:38 [ 15] [ 4] [0320] +10:35:38 [ 18] [ 4] [6011] +10:35:38 [ 19] [ 3] [418] +10:35:38 [ 22] [ 3] [021] +10:35:38 [ 25] [ 2] [01] +10:35:38 [ 28] [ 9] [D00002000] +10:35:38 [ 32] [ 6] [180893] +10:35:38 [ 35] [ 32] [6213543000203652=491212010365119] +10:35:38 [ 37] [ 12] [507903268136] +10:35:38 [ 41] [ 8] [0301LPBX] +10:35:38 [ 42] [ 15] [999999 ] +10:35:38 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +10:35:38 [ 49] [ 3] [418] +10:35:38 [ 52] [ 16] [FD14DDC6EE9BDE7F] +10:35:38 ============================================================================ +10:35:38 + + +waiting on router queue for slot.... +10:35:38 Sending to : <0> +10:35:38 ============================================================================ +10:35:39 ============================================================================ +10:35:39 Slot Id : <149> +10:35:39 Transaction Type : RESPONSE +10:35:39 Received From : +10:35:39 ============================================================================ +10:35:39 FNo. Len. Field Value +10:35:39 ============================================================================ +10:35:39 [ 1] [ 4] [0210] +10:35:39 [ 2] [ 16] [6213543000203652] +10:35:39 [ 3] [ 6] [010000] +10:35:39 [ 4] [ 12] [000050000000] +10:35:39 [ 7] [ 10] [0320033443] +10:35:39 [ 11] [ 6] [268136] +10:35:39 [ 12] [ 6] [103443] +10:35:39 [ 13] [ 4] [0320] +10:35:39 [ 15] [ 4] [0320] +10:35:39 [ 18] [ 4] [6011] +10:35:39 [ 19] [ 3] [418] +10:35:39 [ 32] [ 6] [180893] +10:35:39 [ 35] [ 32] [6213543000203652=491212010365119] +10:35:39 [ 37] [ 12] [507903268136] +10:35:39 [ 38] [ 6] [898120] +10:35:39 [ 39] [ 2] [00] +10:35:39 [ 41] [ 8] [0301LPBX] +10:35:39 [ 49] [ 3] [418] +10:35:39 [ 54] [ 40] [0001418C0000313926320002418C000031392632] +10:35:39 ============================================================================ +10:35:39 Sending to : +10:35:39 ============================================================================ +10:35:39 + + +waiting on router queue for slot.... +10:35:41 ============================================================================ +10:35:41 Slot Id : <149> +10:35:41 Transaction Type : RESPONSE +10:35:41 Received From : +10:35:41 ============================================================================ +10:35:41 FNo. Len. Field Value +10:35:41 ============================================================================ +10:35:41 [ 1] [ 4] [0210] +10:35:41 [ 2] [ 16] [6213543000203652] +10:35:41 [ 3] [ 6] [010000] +10:35:41 [ 4] [ 12] [000050000000] +10:35:41 [ 7] [ 10] [0320033443] +10:35:41 [ 11] [ 6] [268136] +10:35:41 [ 12] [ 6] [103443] +10:35:41 [ 13] [ 4] [0320] +10:35:41 [ 15] [ 4] [0320] +10:35:41 [ 18] [ 4] [6011] +10:35:41 [ 19] [ 3] [418] +10:35:41 [ 32] [ 6] [180893] +10:35:41 [ 35] [ 32] [6213543000203652=491212010365119] +10:35:41 [ 37] [ 12] [507903268136] +10:35:41 [ 38] [ 6] [898120] +10:35:41 [ 39] [ 2] [00] +10:35:41 [ 41] [ 8] [0301LPBX] +10:35:41 [ 49] [ 3] [418] +10:35:41 [ 54] [ 40] [0001418C0000313926320002418C000031392632] +10:35:41 ============================================================================ +10:35:41 Calculate Source COMM Id = 2 +10:35:41 ============================================================================ +10:35:41 + + +waiting on router queue for slot.... +10:35:43 ============================================================================ +10:35:43 Slot Id : <180> +10:35:43 Transaction Type : REQUEST +10:35:43 Received From : +10:35:43 ============================================================================ +10:35:43 FNo. Len. Field Value +10:35:43 ============================================================================ +10:35:43 [ 1] [ 4] [0200] +10:35:43 [ 2] [ 16] [6213548000509206] +10:35:43 [ 3] [ 6] [010000] +10:35:43 [ 4] [ 12] [000100000000] +10:35:43 [ 7] [ 10] [0320103335] +10:35:43 [ 11] [ 6] [939032] +10:35:43 [ 12] [ 6] [103335] +10:35:43 [ 13] [ 4] [0320] +10:35:43 [ 15] [ 4] [0320] +10:35:43 [ 18] [ 4] [6011] +10:35:43 [ 19] [ 3] [418] +10:35:43 [ 22] [ 3] [021] +10:35:43 [ 25] [ 2] [01] +10:35:43 [ 28] [ 9] [D00002000] +10:35:43 [ 32] [ 6] [668899] +10:35:43 [ 35] [ 32] [6213548000509206=181112010920283] +10:35:43 [ 37] [ 12] [507901912147] +10:35:43 [ 41] [ 8] [03013004] +10:35:43 [ 42] [ 15] [APT ] +10:35:43 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +10:35:43 [ 49] [ 3] [418] +10:35:43 [ 52] [ 16] [BF75F8749AA47306] +10:35:43 ============================================================================ +10:35:43 + + +waiting on router queue for slot.... +10:35:43 Sending to : +10:35:43 ============================================================================ +10:35:43 Sending to : +10:35:43 ============================================================================ +10:35:54 ============================================================================ +10:35:54 Slot Id : <174> +10:35:54 Transaction Type : REQUEST +10:35:54 Received From : +10:35:54 ============================================================================ +10:35:54 FNo. Len. Field Value +10:35:54 ============================================================================ +10:35:54 [ 1] [ 4] [0200] +10:35:54 [ 2] [ 16] [6213545000871487] +10:35:54 [ 3] [ 6] [010000] +10:35:54 [ 4] [ 12] [000050000000] +10:35:54 [ 7] [ 10] [0320103346] +10:35:54 [ 11] [ 6] [939035] +10:35:54 [ 12] [ 6] [103346] +10:35:54 [ 13] [ 4] [0320] +10:35:54 [ 15] [ 4] [0320] +10:35:54 [ 18] [ 4] [6011] +10:35:54 [ 19] [ 3] [418] +10:35:54 [ 22] [ 3] [021] +10:35:54 [ 25] [ 2] [01] +10:35:54 [ 28] [ 9] [D00002000] +10:35:54 [ 32] [ 6] [668899] +10:35:54 [ 35] [ 32] [6213545000871487=491212017148353] +10:35:54 [ 37] [ 12] [507900297329] +10:35:54 [ 41] [ 8] [03010006] +10:35:54 [ 42] [ 15] [APT ] +10:35:54 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:35:54 [ 49] [ 3] [418] +10:35:54 [ 52] [ 16] [3C33A82926E131F2] +10:35:54 ============================================================================ +10:35:54 + + +waiting on router queue for slot.... +10:35:54 Sending to : +10:35:54 ============================================================================ +10:35:54 Sending to : +10:35:54 ============================================================================ +10:35:56 ============================================================================ +10:35:56 Slot Id : <230> +10:35:56 Transaction Type : REQUEST +10:35:56 Received From : +10:35:56 ============================================================================ +10:35:56 FNo. Len. Field Value +10:35:56 ============================================================================ +10:35:56 [ 1] [ 4] [0800] +10:35:56 [ 7] [ 10] [0320033504] +10:35:56 [ 11] [ 6] [155889] +10:35:56 [ 70] [ 3] [301] +10:35:56 ============================================================================ +10:35:56 + + +waiting on router queue for slot.... +10:35:56 Sending to : +10:35:56 ============================================================================ +10:35:56 ============================================================================ +10:35:56 Slot Id : <230> +10:35:56 Transaction Type : RESPONSE +10:35:56 Received From : +10:35:56 ============================================================================ +10:35:56 FNo. Len. Field Value +10:35:56 ============================================================================ +10:35:56 [ 1] [ 4] [0810] +10:35:56 [ 7] [ 10] [0320033504] +10:35:56 [ 11] [ 6] [155889] +10:35:56 [ 39] [ 2] [00] +10:35:56 [ 70] [ 3] [301] +10:35:56 ============================================================================ +10:35:56 Calculate Source COMM Id = 2 +10:35:56 ============================================================================ +10:35:56 + + +waiting on router queue for slot.... +10:36:02 ============================================================================ +10:36:02 Slot Id : <168> +10:36:02 Transaction Type : REQUEST +10:36:02 Received From : +10:36:02 ============================================================================ +10:36:02 FNo. Len. Field Value +10:36:02 ============================================================================ +10:36:02 [ 1] [ 4] [0200] +10:36:02 [ 2] [ 16] [6213541000186562] +10:36:02 [ 3] [ 6] [011000] +10:36:02 [ 4] [ 12] [000005000000] +10:36:02 [ 7] [ 10] [0320033508] +10:36:02 [ 11] [ 6] [268141] +10:36:02 [ 12] [ 6] [103508] +10:36:02 [ 13] [ 4] [0320] +10:36:02 [ 14] [ 4] [4912] +10:36:02 [ 15] [ 4] [0320] +10:36:02 [ 18] [ 4] [6011] +10:36:02 [ 19] [ 3] [418] +10:36:02 [ 22] [ 3] [021] +10:36:02 [ 25] [ 2] [01] +10:36:02 [ 28] [ 9] [D00002000] +10:36:02 [ 32] [ 6] [180893] +10:36:02 [ 35] [ 32] [6213541000186562=491212018656611] +10:36:02 [ 37] [ 12] [507903268141] +10:36:02 [ 41] [ 8] [0106NAXA] +10:36:02 [ 42] [ 15] [999999 ] +10:36:02 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +10:36:02 [ 49] [ 3] [418] +10:36:02 [ 52] [ 16] [17F2B9609374E651] +10:36:02 ============================================================================ +10:36:02 + + +waiting on router queue for slot.... +10:36:02 Sending to : +10:36:02 ============================================================================ +10:36:02 Sending to : +10:36:02 ============================================================================ +10:36:08 ============================================================================ +10:36:08 Slot Id : <189> +10:36:08 Transaction Type : REQUEST +10:36:08 Received From : +10:36:08 ============================================================================ +10:36:08 FNo. Len. Field Value +10:36:08 ============================================================================ +10:36:08 [ 1] [ 4] [0800] +10:36:08 [ 2] [ 5] [02531] +10:36:08 [ 3] [ 6] [579108] +10:36:08 [ 7] [ 10] [0320033608] +10:36:08 [ 11] [ 6] [807027] +10:36:08 [ 15] [ 10] [0320033608] +10:36:08 [ 37] [ 11] [57910807027] +10:36:08 [ 70] [ 3] [001] +10:36:08 ============================================================================ +10:36:08 + + +waiting on router queue for slot.... +10:36:08 ============================================================================ +10:36:08 Slot Id : <189> +10:36:08 Transaction Type : RESPONSE +10:36:08 Received From : +10:36:08 ============================================================================ +10:36:08 FNo. Len. Field Value +10:36:08 ============================================================================ +10:36:08 [ 1] [ 4] [0810] +10:36:08 [ 7] [ 10] [0320033608] +10:36:08 [ 11] [ 6] [807027] +10:36:08 [ 15] [ 4] [0320] +10:36:08 [ 37] [ 12] [57910807027] +10:36:08 [ 39] [ 2] [00] +10:36:08 [ 70] [ 3] [001] +10:36:08 ============================================================================ +10:36:08 Sending to : +10:36:08 ============================================================================ +10:36:08 + + +waiting on router queue for slot.... +10:36:08 ============================================================================ +10:36:08 Slot Id : <169> +10:36:08 Transaction Type : REQUEST +10:36:08 Received From : +10:36:08 ============================================================================ +10:36:08 FNo. Len. Field Value +10:36:08 ============================================================================ +10:36:08 [ 1] [ 4] [0800] +10:36:08 [ 7] [ 10] [0320033515] +10:36:08 [ 11] [ 6] [155890] +10:36:08 [ 70] [ 3] [301] +10:36:08 ============================================================================ +10:36:08 + + +waiting on router queue for slot.... +10:36:08 Sending to : +10:36:08 ============================================================================ +10:36:08 ============================================================================ +10:36:08 Slot Id : <169> +10:36:08 Transaction Type : RESPONSE +10:36:08 Received From : +10:36:08 ============================================================================ +10:36:08 FNo. Len. Field Value +10:36:08 ============================================================================ +10:36:08 [ 1] [ 4] [0810] +10:36:08 [ 7] [ 10] [0320033515] +10:36:08 [ 11] [ 6] [155890] +10:36:08 [ 39] [ 2] [00] +10:36:08 [ 70] [ 3] [301] +10:36:08 ============================================================================ +10:36:08 Calculate Source COMM Id = 2 +10:36:08 ============================================================================ +10:36:08 + + +waiting on router queue for slot.... +10:36:15 ============================================================================ +10:36:15 Slot Id : <180> +10:36:15 Transaction Type : REQUEST +10:36:15 Received From : +10:36:15 ============================================================================ +10:36:15 FNo. Len. Field Value +10:36:15 ============================================================================ +10:36:15 [ 1] [ 4] [0200] +10:36:15 [ 2] [ 16] [6213548000509206] +10:36:15 [ 3] [ 6] [010000] +10:36:15 [ 4] [ 12] [000100000000] +10:36:15 [ 7] [ 10] [0320103335] +10:36:15 [ 11] [ 6] [939032] +10:36:15 [ 12] [ 6] [103335] +10:36:15 [ 13] [ 4] [0320] +10:36:15 [ 15] [ 4] [0320] +10:36:15 [ 18] [ 4] [6011] +10:36:15 [ 19] [ 3] [418] +10:36:15 [ 22] [ 3] [021] +10:36:15 [ 25] [ 2] [01] +10:36:15 [ 28] [ 9] [D00002000] +10:36:15 [ 32] [ 6] [668899] +10:36:15 [ 35] [ 32] [6213548000509206=181112010920283] +10:36:15 [ 37] [ 12] [507901912147] +10:36:15 [ 41] [ 8] [03013004] +10:36:15 [ 42] [ 15] [APT ] +10:36:15 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +10:36:15 [ 49] [ 3] [418] +10:36:15 [ 52] [ 16] [BF75F8749AA47306] +10:36:15 ============================================================================ +10:36:15 + + +waiting on router queue for slot.... +10:36:15 Sending to : +10:36:15 ============================================================================ +10:36:15 ============================================================================ +10:36:15 Slot Id : <180> +10:36:15 Transaction Type : REQUEST +10:36:15 Received From : +10:36:15 ============================================================================ +10:36:15 FNo. Len. Field Value +10:36:15 ============================================================================ +10:36:15 [ 1] [ 4] [0200] +10:36:15 [ 2] [ 16] [6213548000509206] +10:36:15 [ 3] [ 6] [010000] +10:36:15 [ 4] [ 12] [000100000000] +10:36:15 [ 7] [ 10] [0320103335] +10:36:15 [ 11] [ 6] [939032] +10:36:15 [ 12] [ 6] [103335] +10:36:15 [ 13] [ 4] [0320] +10:36:15 [ 15] [ 4] [0320] +10:36:15 [ 18] [ 4] [6011] +10:36:15 [ 19] [ 3] [418] +10:36:15 [ 22] [ 3] [021] +10:36:15 [ 25] [ 2] [01] +10:36:15 [ 28] [ 9] [D00002000] +10:36:15 [ 32] [ 6] [668899] +10:36:15 [ 35] [ 32] [6213548000509206=181112010920283] +10:36:15 [ 37] [ 12] [507901912147] +10:36:15 [ 41] [ 8] [03013004] +10:36:15 [ 42] [ 15] [APT ] +10:36:15 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +10:36:15 [ 49] [ 3] [418] +10:36:15 [ 52] [ 16] [A78B4DB47D419F13] +10:36:15 ============================================================================ +10:36:15 + + +waiting on router queue for slot.... +10:36:15 Sending to : <0> +10:36:15 ============================================================================ +10:36:15 ============================================================================ +10:36:15 Slot Id : <174> +10:36:15 Transaction Type : REQUEST +10:36:15 Received From : +10:36:15 ============================================================================ +10:36:15 FNo. Len. Field Value +10:36:15 ============================================================================ +10:36:15 [ 1] [ 4] [0200] +10:36:15 [ 2] [ 16] [6213545000871487] +10:36:15 [ 3] [ 6] [010000] +10:36:15 [ 4] [ 12] [000050000000] +10:36:15 [ 7] [ 10] [0320103346] +10:36:15 [ 11] [ 6] [939035] +10:36:15 [ 12] [ 6] [103346] +10:36:15 [ 13] [ 4] [0320] +10:36:15 [ 15] [ 4] [0320] +10:36:15 [ 18] [ 4] [6011] +10:36:15 [ 19] [ 3] [418] +10:36:15 [ 22] [ 3] [021] +10:36:15 [ 25] [ 2] [01] +10:36:15 [ 28] [ 9] [D00002000] +10:36:15 [ 32] [ 6] [668899] +10:36:15 [ 35] [ 32] [6213545000871487=491212017148353] +10:36:15 [ 37] [ 12] [507900297329] +10:36:15 [ 41] [ 8] [03010006] +10:36:15 [ 42] [ 15] [APT ] +10:36:15 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:36:15 [ 49] [ 3] [418] +10:36:15 [ 52] [ 16] [3C33A82926E131F2] +10:36:15 ============================================================================ +10:36:15 + + +waiting on router queue for slot.... +10:36:15 ============================================================================ +10:36:15 Slot Id : <168> +10:36:15 Transaction Type : REQUEST +10:36:15 Received From : +10:36:15 ============================================================================ +10:36:15 FNo. Len. Field Value +10:36:15 ============================================================================ +10:36:15 [ 1] [ 4] [0200] +10:36:15 [ 2] [ 16] [6213541000186562] +10:36:15 [ 3] [ 6] [011000] +10:36:15 [ 4] [ 12] [000005000000] +10:36:15 [ 7] [ 10] [0320033508] +10:36:15 [ 11] [ 6] [268141] +10:36:15 [ 12] [ 6] [103508] +10:36:15 [ 13] [ 4] [0320] +10:36:15 [ 14] [ 4] [4912] +10:36:15 [ 15] [ 4] [0320] +10:36:15 [ 18] [ 4] [6011] +10:36:15 [ 19] [ 3] [418] +10:36:15 [ 22] [ 3] [021] +10:36:15 [ 25] [ 2] [01] +10:36:15 [ 28] [ 9] [D00002000] +10:36:15 [ 32] [ 6] [180893] +10:36:15 [ 35] [ 32] [6213541000186562=491212018656611] +10:36:15 [ 37] [ 12] [507903268141] +10:36:15 [ 41] [ 8] [0106NAXA] +10:36:15 [ 42] [ 15] [999999 ] +10:36:15 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +10:36:15 [ 49] [ 3] [418] +10:36:15 [ 52] [ 16] [17F2B9609374E651] +10:36:15 ============================================================================ +10:36:15 Sending to : +10:36:15 ============================================================================ +10:36:15 + + +waiting on router queue for slot.... +10:36:15 Sending to : +10:36:15 ============================================================================ +10:36:15 ============================================================================ +10:36:15 Slot Id : <174> +10:36:15 Transaction Type : REQUEST +10:36:15 Received From : +10:36:15 ============================================================================ +10:36:15 FNo. Len. Field Value +10:36:15 ============================================================================ +10:36:15 [ 1] [ 4] [0200] +10:36:15 [ 2] [ 16] [6213545000871487] +10:36:15 [ 3] [ 6] [010000] +10:36:15 [ 4] [ 12] [000050000000] +10:36:15 [ 7] [ 10] [0320103346] +10:36:15 [ 11] [ 6] [939035] +10:36:15 [ 12] [ 6] [103346] +10:36:15 [ 13] [ 4] [0320] +10:36:15 [ 15] [ 4] [0320] +10:36:15 [ 18] [ 4] [6011] +10:36:15 [ 19] [ 3] [418] +10:36:15 [ 22] [ 3] [021] +10:36:15 [ 25] [ 2] [01] +10:36:15 [ 28] [ 9] [D00002000] +10:36:15 [ 32] [ 6] [668899] +10:36:15 [ 35] [ 32] [6213545000871487=491212017148353] +10:36:15 [ 37] [ 12] [507900297329] +10:36:15 [ 41] [ 8] [03010006] +10:36:15 [ 42] [ 15] [APT ] +10:36:15 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:36:15 [ 49] [ 3] [418] +10:36:15 [ 52] [ 16] [F6DC12809625F04D] +10:36:15 ============================================================================ +10:36:15 + + +waiting on router queue for slot.... +10:36:15 Sending to : <0> +10:36:15 ============================================================================ +10:36:15 ============================================================================ +10:36:15 Slot Id : <168> +10:36:15 Transaction Type : REQUEST +10:36:15 Received From : +10:36:15 ============================================================================ +10:36:15 FNo. Len. Field Value +10:36:15 ============================================================================ +10:36:15 [ 1] [ 4] [0200] +10:36:15 [ 2] [ 16] [6213541000186562] +10:36:15 [ 3] [ 6] [011000] +10:36:15 [ 4] [ 12] [000005000000] +10:36:15 [ 7] [ 10] [0320033508] +10:36:15 [ 11] [ 6] [268141] +10:36:15 [ 12] [ 6] [103508] +10:36:15 [ 13] [ 4] [0320] +10:36:15 [ 14] [ 4] [4912] +10:36:15 [ 15] [ 4] [0320] +10:36:15 [ 18] [ 4] [6011] +10:36:15 [ 19] [ 3] [418] +10:36:15 [ 22] [ 3] [021] +10:36:15 [ 25] [ 2] [01] +10:36:15 [ 28] [ 9] [D00002000] +10:36:15 [ 32] [ 6] [180893] +10:36:15 [ 35] [ 32] [6213541000186562=491212018656611] +10:36:15 [ 37] [ 12] [507903268141] +10:36:15 [ 41] [ 8] [0106NAXA] +10:36:15 [ 42] [ 15] [999999 ] +10:36:15 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +10:36:15 [ 49] [ 3] [418] +10:36:15 [ 52] [ 16] [63130D0F0DCD06CF] +10:36:15 ============================================================================ +10:36:15 + + +waiting on router queue for slot.... +10:36:15 Sending to : <0> +10:36:15 ============================================================================ +10:36:16 ============================================================================ +10:36:16 Slot Id : <180> +10:36:16 Transaction Type : RESPONSE +10:36:16 Received From : +10:36:16 ============================================================================ +10:36:16 FNo. Len. Field Value +10:36:16 ============================================================================ +10:36:16 [ 1] [ 4] [0210] +10:36:16 [ 2] [ 16] [6213548000509206] +10:36:16 [ 3] [ 6] [010000] +10:36:16 [ 4] [ 12] [000100000000] +10:36:16 [ 7] [ 10] [0320103335] +10:36:16 [ 11] [ 6] [939032] +10:36:16 [ 12] [ 6] [103335] +10:36:16 [ 13] [ 4] [0320] +10:36:16 [ 15] [ 4] [0320] +10:36:16 [ 18] [ 4] [6011] +10:36:16 [ 19] [ 3] [418] +10:36:16 [ 32] [ 6] [668899] +10:36:16 [ 35] [ 32] [6213548000509206=181112010920283] +10:36:16 [ 37] [ 12] [507901912147] +10:36:16 [ 38] [ 6] [431361] +10:36:16 [ 39] [ 2] [00] +10:36:16 [ 41] [ 8] [03013004] +10:36:16 [ 49] [ 3] [418] +10:36:16 [ 54] [ 40] [0001418C0007671035470002418C000767103547] +10:36:16 ============================================================================ +10:36:16 Sending to : +10:36:16 ============================================================================ +10:36:16 + + +waiting on router queue for slot.... +10:36:16 ============================================================================ +10:36:16 Slot Id : <174> +10:36:16 Transaction Type : RESPONSE +10:36:16 Received From : +10:36:16 ============================================================================ +10:36:16 FNo. Len. Field Value +10:36:16 ============================================================================ +10:36:16 [ 1] [ 4] [0210] +10:36:16 [ 2] [ 16] [6213545000871487] +10:36:16 [ 3] [ 6] [010000] +10:36:16 [ 4] [ 12] [000050000000] +10:36:16 [ 7] [ 10] [0320103346] +10:36:16 [ 11] [ 6] [939035] +10:36:16 [ 12] [ 6] [103346] +10:36:16 [ 13] [ 4] [0320] +10:36:16 [ 15] [ 4] [0320] +10:36:16 [ 18] [ 4] [6011] +10:36:16 [ 19] [ 3] [418] +10:36:16 [ 32] [ 6] [668899] +10:36:16 [ 35] [ 32] [6213545000871487=491212017148353] +10:36:16 [ 37] [ 12] [507900297329] +10:36:16 [ 38] [ 6] [873252] +10:36:16 [ 39] [ 2] [00] +10:36:16 [ 41] [ 8] [03010006] +10:36:16 [ 49] [ 3] [418] +10:36:16 [ 54] [ 40] [0001418C0000199781100002418C000019978110] +10:36:16 ============================================================================ +10:36:16 Sending to : +10:36:16 ============================================================================ +10:36:16 + + +waiting on router queue for slot.... +10:36:16 ============================================================================ +10:36:16 Slot Id : <168> +10:36:16 Transaction Type : RESPONSE +10:36:16 Received From : +10:36:16 ============================================================================ +10:36:16 FNo. Len. Field Value +10:36:16 ============================================================================ +10:36:16 [ 1] [ 4] [0210] +10:36:16 [ 2] [ 16] [6213541000186562] +10:36:16 [ 3] [ 6] [011000] +10:36:16 [ 4] [ 12] [000005000000] +10:36:16 [ 7] [ 10] [0320033508] +10:36:16 [ 11] [ 6] [268141] +10:36:16 [ 12] [ 6] [103508] +10:36:16 [ 13] [ 4] [0320] +10:36:16 [ 15] [ 4] [0320] +10:36:16 [ 18] [ 4] [6011] +10:36:16 [ 19] [ 3] [418] +10:36:16 [ 32] [ 6] [180893] +10:36:16 [ 35] [ 32] [6213541000186562=491212018656611] +10:36:16 [ 37] [ 12] [507903268141] +10:36:16 [ 38] [ 6] [969507] +10:36:16 [ 39] [ 2] [00] +10:36:16 [ 41] [ 8] [0106NAXA] +10:36:16 [ 49] [ 3] [418] +10:36:16 [ 54] [ 40] [1001418C0016246857891002418C001624685789] +10:36:16 ============================================================================ +10:36:16 Sending to : +10:36:16 ============================================================================ +10:36:16 + + +waiting on router queue for slot.... +10:36:19 ============================================================================ +10:36:19 Slot Id : <180> +10:36:19 Transaction Type : RESPONSE +10:36:19 Received From : +10:36:19 ============================================================================ +10:36:19 FNo. Len. Field Value +10:36:19 ============================================================================ +10:36:19 [ 1] [ 4] [0210] +10:36:19 [ 2] [ 16] [6213548000509206] +10:36:19 [ 3] [ 6] [010000] +10:36:19 [ 4] [ 12] [000100000000] +10:36:19 [ 7] [ 10] [0320103335] +10:36:19 [ 11] [ 6] [939032] +10:36:19 [ 12] [ 6] [103335] +10:36:19 [ 13] [ 4] [0320] +10:36:19 [ 15] [ 4] [0320] +10:36:19 [ 18] [ 4] [6011] +10:36:19 [ 19] [ 3] [418] +10:36:19 [ 32] [ 6] [668899] +10:36:19 [ 35] [ 32] [6213548000509206=181112010920283] +10:36:19 [ 37] [ 12] [507901912147] +10:36:19 [ 38] [ 6] [431361] +10:36:19 [ 39] [ 2] [00] +10:36:19 [ 41] [ 8] [03013004] +10:36:19 [ 49] [ 3] [418] +10:36:19 [ 54] [ 40] [0001418C0007671035470002418C000767103547] +10:36:19 ============================================================================ +10:36:19 Calculate Source COMM Id = 4 +10:36:19 ============================================================================ +10:36:19 + + +waiting on router queue for slot.... +10:36:21 ============================================================================ +10:36:21 Slot Id : <205> +10:36:21 Transaction Type : REQUEST +10:36:21 Received From : +10:36:21 ============================================================================ +10:36:21 FNo. Len. Field Value +10:36:21 ============================================================================ +10:36:21 [ 1] [ 4] [0800] +10:36:21 [ 7] [ 10] [0320033412] +10:36:21 [ 11] [ 6] [016305] +10:36:21 [ 37] [ 12] [57910016305] +10:36:21 [ 70] [ 3] [301] +10:36:21 ============================================================================ +10:36:21 + + +waiting on router queue for slot.... +10:36:21 Sending to : +10:36:21 ============================================================================ +10:36:21 ============================================================================ +10:36:21 Slot Id : <205> +10:36:21 Transaction Type : RESPONSE +10:36:21 Received From : +10:36:21 ============================================================================ +10:36:21 FNo. Len. Field Value +10:36:21 ============================================================================ +10:36:21 [ 1] [ 4] [0810] +10:36:21 [ 7] [ 10] [0320033412] +10:36:21 [ 11] [ 6] [016305] +10:36:21 [ 37] [ 12] [579100163050] +10:36:21 [ 39] [ 2] [00] +10:36:21 [ 70] [ 3] [810] +10:36:21 ============================================================================ +10:36:21 Calculate Source COMM Id = 4 +10:36:21 ============================================================================ +10:36:21 + + +waiting on router queue for slot.... +10:36:23 ============================================================================ +10:36:23 Slot Id : <232> +10:36:23 Transaction Type : REQUEST +10:36:23 Received From : +10:36:23 ============================================================================ +10:36:23 FNo. Len. Field Value +10:36:23 ============================================================================ +10:36:23 [ 1] [ 4] [0800] +10:36:23 [ 7] [ 10] [0320033530] +10:36:23 [ 11] [ 6] [155891] +10:36:23 [ 70] [ 3] [301] +10:36:23 ============================================================================ +10:36:23 + + +waiting on router queue for slot.... +10:36:23 Sending to : +10:36:23 ============================================================================ +10:36:23 ============================================================================ +10:36:23 Slot Id : <232> +10:36:23 Transaction Type : RESPONSE +10:36:23 Received From : +10:36:23 ============================================================================ +10:36:23 FNo. Len. Field Value +10:36:23 ============================================================================ +10:36:23 [ 1] [ 4] [0810] +10:36:23 [ 7] [ 10] [0320033530] +10:36:23 [ 11] [ 6] [155891] +10:36:23 [ 39] [ 2] [00] +10:36:23 [ 70] [ 3] [301] +10:36:23 ============================================================================ +10:36:23 Calculate Source COMM Id = 2 +10:36:23 ============================================================================ +10:36:23 + + +waiting on router queue for slot.... +10:36:24 ============================================================================ +10:36:24 Slot Id : <168> +10:36:24 Transaction Type : RESPONSE +10:36:24 Received From : +10:36:24 ============================================================================ +10:36:24 FNo. Len. Field Value +10:36:24 ============================================================================ +10:36:24 [ 1] [ 4] [0210] +10:36:24 [ 2] [ 16] [6213541000186562] +10:36:24 [ 3] [ 6] [011000] +10:36:24 [ 4] [ 12] [000005000000] +10:36:24 [ 7] [ 10] [0320033508] +10:36:24 [ 11] [ 6] [268141] +10:36:24 [ 12] [ 6] [103508] +10:36:24 [ 13] [ 4] [0320] +10:36:24 [ 15] [ 4] [0320] +10:36:24 [ 18] [ 4] [6011] +10:36:24 [ 19] [ 3] [418] +10:36:24 [ 32] [ 6] [180893] +10:36:24 [ 35] [ 32] [6213541000186562=491212018656611] +10:36:24 [ 37] [ 12] [507903268141] +10:36:24 [ 38] [ 6] [969507] +10:36:24 [ 39] [ 2] [00] +10:36:24 [ 41] [ 8] [0106NAXA] +10:36:24 [ 49] [ 3] [418] +10:36:24 [ 54] [ 40] [1001418C0016246857891002418C001624685789] +10:36:24 ============================================================================ +10:36:24 Calculate Source COMM Id = 2 +10:36:24 ============================================================================ +10:36:24 + + +waiting on router queue for slot.... +10:36:27 ============================================================================ +10:36:27 Slot Id : <174> +10:36:27 Transaction Type : RESPONSE +10:36:27 Received From : +10:36:27 ============================================================================ +10:36:27 FNo. Len. Field Value +10:36:27 ============================================================================ +10:36:27 [ 1] [ 4] [0210] +10:36:27 [ 2] [ 16] [6213545000871487] +10:36:27 [ 3] [ 6] [010000] +10:36:27 [ 4] [ 12] [000050000000] +10:36:27 [ 7] [ 10] [0320103346] +10:36:27 [ 11] [ 6] [939035] +10:36:27 [ 12] [ 6] [103346] +10:36:27 [ 13] [ 4] [0320] +10:36:27 [ 15] [ 4] [0320] +10:36:27 [ 18] [ 4] [6011] +10:36:27 [ 19] [ 3] [418] +10:36:27 [ 32] [ 6] [668899] +10:36:27 [ 35] [ 32] [6213545000871487=491212017148353] +10:36:27 [ 37] [ 12] [507900297329] +10:36:27 [ 38] [ 6] [873252] +10:36:27 [ 39] [ 2] [00] +10:36:27 [ 41] [ 8] [03010006] +10:36:27 [ 49] [ 3] [418] +10:36:27 [ 54] [ 40] [0001418C0000199781100002418C000019978110] +10:36:27 ============================================================================ +10:36:27 Calculate Source COMM Id = 4 +10:36:27 ============================================================================ +10:36:27 + + +waiting on router queue for slot.... +10:36:28 ============================================================================ +10:36:28 Slot Id : <222> +10:36:28 Transaction Type : REQUEST +10:36:28 Received From : +10:36:28 ============================================================================ +10:36:28 FNo. Len. Field Value +10:36:28 ============================================================================ +10:36:28 [ 1] [ 4] [0200] +10:36:28 [ 2] [ 16] [1808931100011939] +10:36:28 [ 3] [ 6] [010000] +10:36:28 [ 4] [ 12] [000025000000] +10:36:28 [ 7] [ 10] [0320103624] +10:36:28 [ 11] [ 6] [716541] +10:36:28 [ 12] [ 6] [103624] +10:36:28 [ 13] [ 4] [0320] +10:36:28 [ 15] [ 4] [0320] +10:36:28 [ 18] [ 4] [6011] +10:36:28 [ 22] [ 3] [900] +10:36:28 [ 25] [ 2] [02] +10:36:28 [ 28] [ 9] [D00002000] +10:36:28 [ 32] [ 6] [621354] +10:36:28 [ 35] [ 27] [1808931100011939=1803500987] +10:36:28 [ 37] [ 12] [507904341411] +10:36:28 [ 41] [ 8] [03003300] +10:36:28 [ 42] [ 15] [NATIVE ] +10:36:28 [ 43] [ 40] [SVN University KaisonephomvLAO] +10:36:28 [ 49] [ 3] [418] +10:36:28 [ 52] [ 16] [4AEC49226CB862CB] +10:36:28 ============================================================================ +10:36:28 + + +waiting on router queue for slot.... +10:36:28 Sending to : +10:36:28 ============================================================================ +10:36:28 Sending to : +10:36:28 ============================================================================ +10:36:29 ============================================================================ +10:36:29 Slot Id : <222> +10:36:29 Transaction Type : REQUEST +10:36:29 Received From : +10:36:29 ============================================================================ +10:36:29 FNo. Len. Field Value +10:36:29 ============================================================================ +10:36:29 [ 1] [ 4] [0200] +10:36:29 [ 2] [ 16] [1808931100011939] +10:36:29 [ 3] [ 6] [010000] +10:36:29 [ 4] [ 12] [000025000000] +10:36:29 [ 7] [ 10] [0320103624] +10:36:29 [ 11] [ 6] [716541] +10:36:29 [ 12] [ 6] [103624] +10:36:29 [ 13] [ 4] [0320] +10:36:29 [ 15] [ 4] [0320] +10:36:29 [ 18] [ 4] [6011] +10:36:29 [ 22] [ 3] [900] +10:36:29 [ 25] [ 2] [02] +10:36:29 [ 28] [ 9] [D00002000] +10:36:29 [ 32] [ 6] [621354] +10:36:29 [ 35] [ 27] [1808931100011939=1803500987] +10:36:29 [ 37] [ 12] [507904341411] +10:36:29 [ 41] [ 8] [03003300] +10:36:29 [ 42] [ 15] [NATIVE ] +10:36:29 [ 43] [ 40] [SVN University KaisonephomvLAO] +10:36:29 [ 49] [ 3] [418] +10:36:29 [ 52] [ 16] [4AEC49226CB862CB] +10:36:29 ============================================================================ +10:36:29 + + +waiting on router queue for slot.... +10:36:29 Sending to : +10:36:29 ============================================================================ +10:36:29 ============================================================================ +10:36:29 Slot Id : <222> +10:36:29 Transaction Type : REQUEST +10:36:29 Received From : +10:36:29 ============================================================================ +10:36:29 FNo. Len. Field Value +10:36:29 ============================================================================ +10:36:29 [ 1] [ 4] [0200] +10:36:29 [ 2] [ 16] [1808931100011939] +10:36:29 [ 3] [ 6] [010000] +10:36:29 [ 4] [ 12] [000025000000] +10:36:29 [ 7] [ 10] [0320103624] +10:36:29 [ 11] [ 6] [716541] +10:36:29 [ 12] [ 6] [103624] +10:36:29 [ 13] [ 4] [0320] +10:36:29 [ 15] [ 4] [0320] +10:36:29 [ 18] [ 4] [6011] +10:36:29 [ 22] [ 3] [900] +10:36:29 [ 25] [ 2] [02] +10:36:29 [ 28] [ 9] [D00002000] +10:36:29 [ 32] [ 6] [621354] +10:36:29 [ 35] [ 27] [1808931100011939=1803500987] +10:36:29 [ 37] [ 12] [507904341411] +10:36:29 [ 41] [ 8] [03003300] +10:36:29 [ 42] [ 15] [NATIVE ] +10:36:29 [ 43] [ 40] [SVN University KaisonephomvLAO] +10:36:29 [ 49] [ 3] [418] +10:36:29 [ 52] [ 16] [19CBD773E00511A6] +10:36:29 ============================================================================ +10:36:29 + + +waiting on router queue for slot.... +10:36:29 Sending to : <2> +10:36:29 ============================================================================ +10:36:38 ============================================================================ +10:36:38 Slot Id : <222> +10:36:38 Transaction Type : RESPONSE +10:36:38 Received From : +10:36:38 ============================================================================ +10:36:38 FNo. Len. Field Value +10:36:38 ============================================================================ +10:36:38 [ 1] [ 4] [0210] +10:36:38 [ 2] [ 16] [1808931100011939] +10:36:38 [ 3] [ 6] [010000] +10:36:38 [ 4] [ 12] [000025000000] +10:36:38 [ 6] [ 12] [000025000000] +10:36:38 [ 7] [ 10] [0320103624] +10:36:38 [ 11] [ 6] [716541] +10:36:38 [ 12] [ 6] [103624] +10:36:38 [ 13] [ 4] [0320] +10:36:38 [ 18] [ 4] [6011] +10:36:38 [ 19] [ 3] [418] +10:36:38 [ 22] [ 3] [021] +10:36:38 [ 32] [ 6] [621354] +10:36:38 [ 35] [ 27] [1808931100011939=1803500987] +10:36:38 [ 37] [ 12] [507904341411] +10:36:38 [ 38] [ 6] [716541] +10:36:38 [ 39] [ 2] [00] +10:36:38 [ 41] [ 8] [03003300] +10:36:38 [ 49] [ 3] [418] +10:36:38 [ 52] [ 16] [19CBD773E00511A6] +10:36:38 [ 54] [ 20] [1001418C000048300000] +10:36:38 ============================================================================ +10:36:38 Sending to : +10:36:38 ============================================================================ +10:36:38 + + +waiting on router queue for slot.... +10:36:42 ============================================================================ +10:36:42 Slot Id : <188> +10:36:42 Transaction Type : REQUEST +10:36:42 Received From : +10:36:42 ============================================================================ +10:36:42 FNo. Len. Field Value +10:36:42 ============================================================================ +10:36:42 [ 1] [ 4] [0200] +10:36:42 [ 2] [ 16] [6213545000078430] +10:36:42 [ 3] [ 6] [011000] +10:36:42 [ 4] [ 12] [000028000000] +10:36:42 [ 7] [ 10] [0320033549] +10:36:42 [ 11] [ 6] [268147] +10:36:42 [ 12] [ 6] [103549] +10:36:42 [ 13] [ 4] [0320] +10:36:42 [ 14] [ 4] [4912] +10:36:42 [ 15] [ 4] [0320] +10:36:42 [ 18] [ 4] [6011] +10:36:42 [ 19] [ 3] [418] +10:36:42 [ 22] [ 3] [021] +10:36:42 [ 25] [ 2] [01] +10:36:42 [ 28] [ 9] [D00002000] +10:36:42 [ 32] [ 6] [180893] +10:36:42 [ 35] [ 32] [6213545000078430=491212017843834] +10:36:42 [ 37] [ 12] [507903268147] +10:36:42 [ 41] [ 8] [0112CPBR] +10:36:42 [ 42] [ 15] [999999 ] +10:36:42 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:36:42 [ 49] [ 3] [418] +10:36:42 [ 52] [ 16] [27F7145C26800828] +10:36:42 ============================================================================ +10:36:42 + + +waiting on router queue for slot.... +10:36:42 Sending to : +10:36:42 ============================================================================ +10:36:42 Sending to : +10:36:42 ============================================================================ +10:36:42 ============================================================================ +10:36:42 Slot Id : <188> +10:36:42 Transaction Type : REQUEST +10:36:42 Received From : +10:36:42 ============================================================================ +10:36:42 FNo. Len. Field Value +10:36:42 ============================================================================ +10:36:42 [ 1] [ 4] [0200] +10:36:42 [ 2] [ 16] [6213545000078430] +10:36:42 [ 3] [ 6] [011000] +10:36:42 [ 4] [ 12] [000028000000] +10:36:42 [ 7] [ 10] [0320033549] +10:36:42 [ 11] [ 6] [268147] +10:36:42 [ 12] [ 6] [103549] +10:36:42 [ 13] [ 4] [0320] +10:36:42 [ 14] [ 4] [4912] +10:36:42 [ 15] [ 4] [0320] +10:36:42 [ 18] [ 4] [6011] +10:36:42 [ 19] [ 3] [418] +10:36:42 [ 22] [ 3] [021] +10:36:42 [ 25] [ 2] [01] +10:36:42 [ 28] [ 9] [D00002000] +10:36:42 [ 32] [ 6] [180893] +10:36:42 [ 35] [ 32] [6213545000078430=491212017843834] +10:36:42 [ 37] [ 12] [507903268147] +10:36:42 [ 41] [ 8] [0112CPBR] +10:36:42 [ 42] [ 15] [999999 ] +10:36:42 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:36:42 [ 49] [ 3] [418] +10:36:42 [ 52] [ 16] [27F7145C26800828] +10:36:42 ============================================================================ +10:36:42 + + +waiting on router queue for slot.... +10:36:42 Sending to : +10:36:42 ============================================================================ +10:36:42 ============================================================================ +10:36:42 Slot Id : <188> +10:36:42 Transaction Type : REQUEST +10:36:42 Received From : +10:36:42 ============================================================================ +10:36:42 FNo. Len. Field Value +10:36:42 ============================================================================ +10:36:42 [ 1] [ 4] [0200] +10:36:42 [ 2] [ 16] [6213545000078430] +10:36:42 [ 3] [ 6] [011000] +10:36:42 [ 4] [ 12] [000028000000] +10:36:42 [ 7] [ 10] [0320033549] +10:36:42 [ 11] [ 6] [268147] +10:36:42 [ 12] [ 6] [103549] +10:36:42 [ 13] [ 4] [0320] +10:36:42 [ 14] [ 4] [4912] +10:36:42 [ 15] [ 4] [0320] +10:36:42 [ 18] [ 4] [6011] +10:36:42 [ 19] [ 3] [418] +10:36:42 [ 22] [ 3] [021] +10:36:42 [ 25] [ 2] [01] +10:36:42 [ 28] [ 9] [D00002000] +10:36:42 [ 32] [ 6] [180893] +10:36:42 [ 35] [ 32] [6213545000078430=491212017843834] +10:36:42 [ 37] [ 12] [507903268147] +10:36:42 [ 41] [ 8] [0112CPBR] +10:36:42 [ 42] [ 15] [999999 ] +10:36:42 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:36:42 [ 49] [ 3] [418] +10:36:42 [ 52] [ 16] [751E9BE395ABA06F] +10:36:42 ============================================================================ +10:36:42 + + +waiting on router queue for slot.... +10:36:42 Sending to : <0> +10:36:42 ============================================================================ +10:36:42 ============================================================================ +10:36:42 Slot Id : <222> +10:36:42 Transaction Type : RESPONSE +10:36:42 Received From : +10:36:42 ============================================================================ +10:36:42 FNo. Len. Field Value +10:36:42 ============================================================================ +10:36:42 [ 1] [ 4] [0210] +10:36:42 [ 2] [ 16] [1808931100011939] +10:36:42 [ 3] [ 6] [010000] +10:36:42 [ 4] [ 12] [000025000000] +10:36:42 [ 6] [ 12] [000025000000] +10:36:42 [ 7] [ 10] [0320103624] +10:36:42 [ 11] [ 6] [716541] +10:36:42 [ 12] [ 6] [103624] +10:36:42 [ 13] [ 4] [0320] +10:36:42 [ 18] [ 4] [6011] +10:36:42 [ 19] [ 3] [418] +10:36:42 [ 22] [ 3] [021] +10:36:42 [ 32] [ 6] [621354] +10:36:42 [ 35] [ 27] [1808931100011939=1803500987] +10:36:42 [ 37] [ 12] [507904341411] +10:36:42 [ 38] [ 6] [716541] +10:36:42 [ 39] [ 2] [00] +10:36:42 [ 41] [ 8] [03003300] +10:36:42 [ 49] [ 3] [418] +10:36:42 [ 52] [ 16] [19CBD773E00511A6] +10:36:42 [ 54] [ 20] [1001418C000048300000] +10:36:42 ============================================================================ +10:36:42 Calculate Source COMM Id = 0 +10:36:42 ============================================================================ +10:36:42 + + +waiting on router queue for slot.... +10:36:42 ============================================================================ +10:36:42 Slot Id : <188> +10:36:42 Transaction Type : RESPONSE +10:36:42 Received From : +10:36:42 ============================================================================ +10:36:42 FNo. Len. Field Value +10:36:42 ============================================================================ +10:36:42 [ 1] [ 4] [0210] +10:36:42 [ 2] [ 16] [6213545000078430] +10:36:42 [ 3] [ 6] [011000] +10:36:42 [ 4] [ 12] [000028000000] +10:36:42 [ 7] [ 10] [0320033549] +10:36:42 [ 11] [ 6] [268147] +10:36:42 [ 12] [ 6] [103549] +10:36:42 [ 13] [ 4] [0320] +10:36:42 [ 15] [ 4] [0320] +10:36:42 [ 18] [ 4] [6011] +10:36:42 [ 19] [ 3] [418] +10:36:42 [ 32] [ 6] [180893] +10:36:42 [ 35] [ 32] [6213545000078430=491212017843834] +10:36:42 [ 37] [ 12] [507903268147] +10:36:42 [ 38] [ 6] [268147] +10:36:42 [ 39] [ 2] [51] +10:36:42 [ 41] [ 8] [0112CPBR] +10:36:42 [ 49] [ 3] [418] +10:36:42 [ 54] [ 40] [1001418C0000320109561002418C000032010956] +10:36:42 ============================================================================ +10:36:42 Sending to : +10:36:42 ============================================================================ +10:36:42 + + +waiting on router queue for slot.... +10:36:44 ============================================================================ +10:36:44 Slot Id : <173> +10:36:44 Transaction Type : REQUEST +10:36:44 Received From : +10:36:44 ============================================================================ +10:36:44 FNo. Len. Field Value +10:36:44 ============================================================================ +10:36:44 [ 1] [ 4] [0800] +10:36:44 [ 7] [ 10] [0320033551] +10:36:44 [ 11] [ 6] [155892] +10:36:44 [ 70] [ 3] [301] +10:36:44 ============================================================================ +10:36:44 + + +waiting on router queue for slot.... +10:36:44 Sending to : +10:36:44 ============================================================================ +10:36:44 ============================================================================ +10:36:44 Slot Id : <173> +10:36:44 Transaction Type : RESPONSE +10:36:44 Received From : +10:36:44 ============================================================================ +10:36:44 FNo. Len. Field Value +10:36:44 ============================================================================ +10:36:44 [ 1] [ 4] [0810] +10:36:44 [ 7] [ 10] [0320033551] +10:36:44 [ 11] [ 6] [155892] +10:36:44 [ 39] [ 2] [00] +10:36:44 [ 70] [ 3] [301] +10:36:44 ============================================================================ +10:36:44 Calculate Source COMM Id = 2 +10:36:44 ============================================================================ +10:36:44 + + +waiting on router queue for slot.... +10:36:44 ============================================================================ +10:36:44 Slot Id : <188> +10:36:44 Transaction Type : RESPONSE +10:36:44 Received From : +10:36:44 ============================================================================ +10:36:44 FNo. Len. Field Value +10:36:44 ============================================================================ +10:36:44 [ 1] [ 4] [0210] +10:36:44 [ 2] [ 16] [6213545000078430] +10:36:44 [ 3] [ 6] [011000] +10:36:44 [ 4] [ 12] [000028000000] +10:36:44 [ 7] [ 10] [0320033549] +10:36:44 [ 11] [ 6] [268147] +10:36:44 [ 12] [ 6] [103549] +10:36:44 [ 13] [ 4] [0320] +10:36:44 [ 15] [ 4] [0320] +10:36:44 [ 18] [ 4] [6011] +10:36:44 [ 19] [ 3] [418] +10:36:44 [ 32] [ 6] [180893] +10:36:44 [ 35] [ 32] [6213545000078430=491212017843834] +10:36:44 [ 37] [ 12] [507903268147] +10:36:44 [ 38] [ 6] [268147] +10:36:44 [ 39] [ 2] [51] +10:36:44 [ 41] [ 8] [0112CPBR] +10:36:44 [ 49] [ 3] [418] +10:36:44 [ 54] [ 40] [1001418C0000320109561002418C000032010956] +10:36:44 ============================================================================ +10:36:44 Calculate Source COMM Id = 2 +10:36:44 ============================================================================ +10:36:44 + + +waiting on router queue for slot.... +10:37:00 ============================================================================ +10:37:00 Slot Id : <229> +10:37:00 Transaction Type : REQUEST +10:37:00 Received From : +10:37:00 ============================================================================ +10:37:00 FNo. Len. Field Value +10:37:00 ============================================================================ +10:37:00 [ 1] [ 4] [0800] +10:37:00 [ 7] [ 10] [0320033608] +10:37:00 [ 11] [ 6] [155893] +10:37:00 [ 70] [ 3] [301] +10:37:00 ============================================================================ +10:37:00 + + +waiting on router queue for slot.... +10:37:00 Sending to : +10:37:00 ============================================================================ +10:37:00 ============================================================================ +10:37:00 Slot Id : <229> +10:37:00 Transaction Type : RESPONSE +10:37:00 Received From : +10:37:00 ============================================================================ +10:37:00 FNo. Len. Field Value +10:37:00 ============================================================================ +10:37:00 [ 1] [ 4] [0810] +10:37:00 [ 7] [ 10] [0320033608] +10:37:00 [ 11] [ 6] [155893] +10:37:00 [ 39] [ 2] [00] +10:37:00 [ 70] [ 3] [301] +10:37:00 ============================================================================ +10:37:00 Calculate Source COMM Id = 2 +10:37:00 ============================================================================ +10:37:00 + + +waiting on router queue for slot.... +10:37:10 ============================================================================ +10:37:10 Slot Id : <223> +10:37:10 Transaction Type : REQUEST +10:37:10 Received From : +10:37:10 ============================================================================ +10:37:10 FNo. Len. Field Value +10:37:10 ============================================================================ +10:37:10 [ 1] [ 4] [0800] +10:37:10 [ 2] [ 5] [02531] +10:37:10 [ 3] [ 6] [579108] +10:37:10 [ 7] [ 10] [0320033710] +10:37:10 [ 11] [ 6] [807028] +10:37:10 [ 15] [ 10] [0320033710] +10:37:10 [ 37] [ 11] [57910807028] +10:37:10 [ 70] [ 3] [001] +10:37:10 ============================================================================ +10:37:10 + + +waiting on router queue for slot.... +10:37:10 ============================================================================ +10:37:10 Slot Id : <223> +10:37:10 Transaction Type : RESPONSE +10:37:10 Received From : +10:37:10 ============================================================================ +10:37:10 FNo. Len. Field Value +10:37:10 ============================================================================ +10:37:10 [ 1] [ 4] [0810] +10:37:10 [ 7] [ 10] [0320033710] +10:37:10 [ 11] [ 6] [807028] +10:37:10 [ 15] [ 4] [0320] +10:37:10 [ 37] [ 12] [57910807028] +10:37:10 [ 39] [ 2] [00] +10:37:10 [ 70] [ 3] [001] +10:37:10 ============================================================================ +10:37:10 Sending to : +10:37:10 ============================================================================ +10:37:10 + + +waiting on router queue for slot.... +10:37:11 ============================================================================ +10:37:11 Slot Id : <215> +10:37:11 Transaction Type : REQUEST +10:37:11 Received From : +10:37:11 ============================================================================ +10:37:11 FNo. Len. Field Value +10:37:11 ============================================================================ +10:37:11 [ 1] [ 4] [0200] +10:37:11 [ 2] [ 16] [6213541000325749] +10:37:11 [ 3] [ 6] [010000] +10:37:11 [ 4] [ 12] [000100000000] +10:37:11 [ 7] [ 10] [0320103502] +10:37:11 [ 11] [ 6] [939077] +10:37:11 [ 12] [ 6] [103502] +10:37:11 [ 13] [ 4] [0320] +10:37:11 [ 15] [ 4] [0320] +10:37:11 [ 18] [ 4] [6011] +10:37:11 [ 19] [ 3] [418] +10:37:11 [ 22] [ 3] [021] +10:37:11 [ 25] [ 2] [01] +10:37:11 [ 28] [ 9] [D00002000] +10:37:11 [ 32] [ 6] [668899] +10:37:11 [ 35] [ 32] [6213541000325749=491212012574926] +10:37:11 [ 37] [ 12] [507902071169] +10:37:11 [ 41] [ 8] [03006007] +10:37:11 [ 42] [ 15] [APT ] +10:37:11 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:37:11 [ 49] [ 3] [418] +10:37:11 [ 52] [ 16] [1167A71784893A53] +10:37:11 ============================================================================ +10:37:11 + + +waiting on router queue for slot.... +10:37:11 Sending to : +10:37:11 ============================================================================ +10:37:11 Sending to : +10:37:11 ============================================================================ +10:37:12 ============================================================================ +10:37:12 Slot Id : <215> +10:37:12 Transaction Type : REQUEST +10:37:12 Received From : +10:37:12 ============================================================================ +10:37:12 FNo. Len. Field Value +10:37:12 ============================================================================ +10:37:12 [ 1] [ 4] [0200] +10:37:12 [ 2] [ 16] [6213541000325749] +10:37:12 [ 3] [ 6] [010000] +10:37:12 [ 4] [ 12] [000100000000] +10:37:12 [ 7] [ 10] [0320103502] +10:37:12 [ 11] [ 6] [939077] +10:37:12 [ 12] [ 6] [103502] +10:37:12 [ 13] [ 4] [0320] +10:37:12 [ 15] [ 4] [0320] +10:37:12 [ 18] [ 4] [6011] +10:37:12 [ 19] [ 3] [418] +10:37:12 [ 22] [ 3] [021] +10:37:12 [ 25] [ 2] [01] +10:37:12 [ 28] [ 9] [D00002000] +10:37:12 [ 32] [ 6] [668899] +10:37:12 [ 35] [ 32] [6213541000325749=491212012574926] +10:37:12 [ 37] [ 12] [507902071169] +10:37:12 [ 41] [ 8] [03006007] +10:37:12 [ 42] [ 15] [APT ] +10:37:12 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:37:12 [ 49] [ 3] [418] +10:37:12 [ 52] [ 16] [1167A71784893A53] +10:37:12 ============================================================================ +10:37:12 + + +waiting on router queue for slot.... +10:37:12 Sending to : +10:37:12 ============================================================================ +10:37:12 ============================================================================ +10:37:12 Slot Id : <215> +10:37:12 Transaction Type : REQUEST +10:37:12 Received From : +10:37:12 ============================================================================ +10:37:12 FNo. Len. Field Value +10:37:12 ============================================================================ +10:37:12 [ 1] [ 4] [0200] +10:37:12 [ 2] [ 16] [6213541000325749] +10:37:12 [ 3] [ 6] [010000] +10:37:12 [ 4] [ 12] [000100000000] +10:37:12 [ 7] [ 10] [0320103502] +10:37:12 [ 11] [ 6] [939077] +10:37:12 [ 12] [ 6] [103502] +10:37:12 [ 13] [ 4] [0320] +10:37:12 [ 15] [ 4] [0320] +10:37:12 [ 18] [ 4] [6011] +10:37:12 [ 19] [ 3] [418] +10:37:12 [ 22] [ 3] [021] +10:37:12 [ 25] [ 2] [01] +10:37:12 [ 28] [ 9] [D00002000] +10:37:12 [ 32] [ 6] [668899] +10:37:12 [ 35] [ 32] [6213541000325749=491212012574926] +10:37:12 [ 37] [ 12] [507902071169] +10:37:12 [ 41] [ 8] [03006007] +10:37:12 [ 42] [ 15] [APT ] +10:37:12 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +10:37:12 [ 49] [ 3] [418] +10:37:12 [ 52] [ 16] [FE991BAE5A520AA9] +10:37:12 ============================================================================ +10:37:12 + + +waiting on router queue for slot.... +10:37:12 Sending to : <0> +10:37:12 ============================================================================ +10:37:12 ============================================================================ +10:37:12 Slot Id : <246> +10:37:12 Transaction Type : REQUEST +10:37:12 Received From : +10:37:12 ============================================================================ +10:37:12 FNo. Len. Field Value +10:37:12 ============================================================================ +10:37:12 [ 1] [ 4] [0800] +10:37:12 [ 7] [ 10] [0320033620] +10:37:12 [ 11] [ 6] [155894] +10:37:12 [ 70] [ 3] [301] +10:37:12 ============================================================================ +10:37:12 + + +waiting on router queue for slot.... +10:37:12 Sending to : +10:37:12 ============================================================================ +10:37:12 ============================================================================ +10:37:12 Slot Id : <246> +10:37:12 Transaction Type : RESPONSE +10:37:12 Received From : +10:37:12 ============================================================================ +10:37:12 FNo. Len. Field Value +10:37:12 ============================================================================ +10:37:12 [ 1] [ 4] [0810] +10:37:12 [ 7] [ 10] [0320033620] +10:37:12 [ 11] [ 6] [155894] +10:37:12 [ 39] [ 2] [00] +10:37:12 [ 70] [ 3] [301] +10:37:12 ============================================================================ +10:37:12 Calculate Source COMM Id = 2 +10:37:12 ============================================================================ +10:37:12 + + +waiting on router queue for slot.... +10:37:12 ============================================================================ +10:37:12 Slot Id : <215> +10:37:12 Transaction Type : RESPONSE +10:37:12 Received From : +10:37:12 ============================================================================ +10:37:12 FNo. Len. Field Value +10:37:12 ============================================================================ +10:37:12 [ 1] [ 4] [0210] +10:37:12 [ 2] [ 16] [6213541000325749] +10:37:12 [ 3] [ 6] [010000] +10:37:12 [ 4] [ 12] [000100000000] +10:37:12 [ 7] [ 10] [0320103502] +10:37:12 [ 11] [ 6] [939077] +10:37:12 [ 12] [ 6] [103502] +10:37:12 [ 13] [ 4] [0320] +10:37:12 [ 15] [ 4] [0320] +10:37:12 [ 18] [ 4] [6011] +10:37:12 [ 19] [ 3] [418] +10:37:12 [ 32] [ 6] [668899] +10:37:12 [ 35] [ 32] [6213541000325749=491212012574926] +10:37:12 [ 37] [ 12] [507902071169] +10:37:12 [ 38] [ 6] [126446] +10:37:12 [ 39] [ 2] [00] +10:37:12 [ 41] [ 8] [03006007] +10:37:12 [ 49] [ 3] [418] +10:37:12 [ 54] [ 40] [0001418C0000538349240002418C000053834924] +10:37:12 ============================================================================ +10:37:12 Sending to : +10:37:12 ============================================================================ +10:37:12 + + +waiting on router queue for slot.... +10:37:14 ============================================================================ +10:37:14 Slot Id : <215> +10:37:14 Transaction Type : RESPONSE +10:37:14 Received From : +10:37:14 ============================================================================ +10:37:14 FNo. Len. Field Value +10:37:14 ============================================================================ +10:37:14 [ 1] [ 4] [0210] +10:37:14 [ 2] [ 16] [6213541000325749] +10:37:14 [ 3] [ 6] [010000] +10:37:14 [ 4] [ 12] [000100000000] +10:37:14 [ 7] [ 10] [0320103502] +10:37:14 [ 11] [ 6] [939077] +10:37:14 [ 12] [ 6] [103502] +10:37:14 [ 13] [ 4] [0320] +10:37:14 [ 15] [ 4] [0320] +10:37:14 [ 18] [ 4] [6011] +10:37:14 [ 19] [ 3] [418] +10:37:14 [ 32] [ 6] [668899] +10:37:14 [ 35] [ 32] [6213541000325749=491212012574926] +10:37:14 [ 37] [ 12] [507902071169] +10:37:14 [ 38] [ 6] [126446] +10:37:14 [ 39] [ 2] [00] +10:37:14 [ 41] [ 8] [03006007] +10:37:14 [ 49] [ 3] [418] +10:37:14 [ 54] [ 40] [0001418C0000538349240002418C000053834924] +10:37:14 ============================================================================ +10:37:14 Calculate Source COMM Id = 4 +10:37:14 ============================================================================ +10:37:14 + + +waiting on router queue for slot.... +10:37:14 ============================================================================ +10:37:14 Slot Id : <248> +10:37:14 Transaction Type : REQUEST +10:37:14 Received From : +10:37:14 ============================================================================ +10:37:14 FNo. Len. Field Value +10:37:14 ============================================================================ +10:37:14 [ 1] [ 4] [0200] +10:37:14 [ 2] [ 16] [6213548000509206] +10:37:14 [ 3] [ 6] [010000] +10:37:14 [ 4] [ 12] [000100000000] +10:37:14 [ 7] [ 10] [0320103505] +10:37:14 [ 11] [ 6] [939080] +10:37:14 [ 12] [ 6] [103505] +10:37:14 [ 13] [ 4] [0320] +10:37:14 [ 15] [ 4] [0320] +10:37:14 [ 18] [ 4] [6011] +10:37:14 [ 19] [ 3] [418] +10:37:14 [ 22] [ 3] [021] +10:37:14 [ 25] [ 2] [01] +10:37:14 [ 28] [ 9] [D00002000] +10:37:14 [ 32] [ 6] [668899] +10:37:14 [ 35] [ 32] [6213548000509206=181112010920283] +10:37:14 [ 37] [ 12] [507901912149] +10:37:14 [ 41] [ 8] [03013004] +10:37:14 [ 42] [ 15] [APT ] +10:37:14 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +10:37:14 [ 49] [ 3] [418] +10:37:14 [ 52] [ 16] [BF75F8749AA47306] +10:37:14 ============================================================================ +10:37:14 + + +waiting on router queue for slot.... +10:37:14 Sending to : +10:37:14 ============================================================================ +10:37:14 Sending to : +10:37:14 ============================================================================ +10:37:15 ============================================================================ +10:37:15 Slot Id : <248> +10:37:15 Transaction Type : REQUEST +10:37:15 Received From : +10:37:15 ============================================================================ +10:37:15 FNo. Len. Field Value +10:37:15 ============================================================================ +10:37:15 [ 1] [ 4] [0200] +10:37:15 [ 2] [ 16] [6213548000509206] +10:37:15 [ 3] [ 6] [010000] +10:37:15 [ 4] [ 12] [000100000000] +10:37:15 [ 7] [ 10] [0320103505] +10:37:15 [ 11] [ 6] [939080] +10:37:15 [ 12] [ 6] [103505] +10:37:15 [ 13] [ 4] [0320] +10:37:15 [ 15] [ 4] [0320] +10:37:15 [ 18] [ 4] [6011] +10:37:15 [ 19] [ 3] [418] +10:37:15 [ 22] [ 3] [021] +10:37:15 [ 25] [ 2] [01] +10:37:15 [ 28] [ 9] [D00002000] +10:37:15 [ 32] [ 6] [668899] +10:37:15 [ 35] [ 32] [6213548000509206=181112010920283] +10:37:15 [ 37] [ 12] [507901912149] +10:37:15 [ 41] [ 8] [03013004] +10:37:15 [ 42] [ 15] [APT ] +10:37:15 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +10:37:15 [ 49] [ 3] [418] +10:37:15 [ 52] [ 16] [BF75F8749AA47306] +10:37:15 ============================================================================ +10:37:15 + + +waiting on router queue for slot.... +10:37:15 Sending to : +10:37:15 ============================================================================ +10:37:15 ============================================================================ +10:37:15 Slot Id : <248> +10:37:15 Transaction Type : REQUEST +10:37:15 Received From : +10:37:15 ============================================================================ +10:37:15 FNo. Len. Field Value +10:37:15 ============================================================================ +10:37:15 [ 1] [ 4] [0200] +10:37:15 [ 2] [ 16] [6213548000509206] +10:37:15 [ 3] [ 6] [010000] +10:37:15 [ 4] [ 12] [000100000000] +10:37:15 [ 7] [ 10] [0320103505] +10:37:15 [ 11] [ 6] [939080] +10:37:15 [ 12] [ 6] [103505] +10:37:15 [ 13] [ 4] [0320] +10:37:15 [ 15] [ 4] [0320] +10:37:15 [ 18] [ 4] [6011] +10:37:15 [ 19] [ 3] [418] +10:37:15 [ 22] [ 3] [021] +10:37:15 [ 25] [ 2] [01] +10:37:15 [ 28] [ 9] [D00002000] +10:37:15 [ 32] [ 6] [668899] +10:37:15 [ 35] [ 32] [6213548000509206=181112010920283] +10:37:15 [ 37] [ 12] [507901912149] +10:37:15 [ 41] [ 8] [03013004] +10:37:15 [ 42] [ 15] [APT ] +10:37:15 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +10:37:15 [ 49] [ 3] [418] +10:37:15 [ 52] [ 16] [A78B4DB47D419F13] +10:37:15 ============================================================================ +10:37:15 + + +waiting on router queue for slot.... +10:37:15 Sending to : <0> +10:37:15 ============================================================================ +10:37:15 ============================================================================ +10:37:15 Slot Id : <248> +10:37:15 Transaction Type : RESPONSE +10:37:15 Received From : +10:37:15 ============================================================================ +10:37:15 FNo. Len. Field Value +10:37:15 ============================================================================ +10:37:15 [ 1] [ 4] [0210] +10:37:15 [ 2] [ 16] [6213548000509206] +10:37:15 [ 3] [ 6] [010000] +10:37:15 [ 4] [ 12] [000100000000] +10:37:15 [ 7] [ 10] [0320103505] +10:37:15 [ 11] [ 6] [939080] +10:37:15 [ 12] [ 6] [103505] +10:37:15 [ 13] [ 4] [0320] +10:37:15 [ 15] [ 4] [0320] +10:37:15 [ 18] [ 4] [6011] +10:37:15 [ 19] [ 3] [418] +10:37:15 [ 32] [ 6] [668899] +10:37:15 [ 35] [ 32] [6213548000509206=181112010920283] +10:37:15 [ 37] [ 12] [507901912149] +10:37:15 [ 38] [ 6] [116666] +10:37:15 [ 39] [ 2] [00] +10:37:15 [ 41] [ 8] [03013004] +10:37:15 [ 49] [ 3] [418] +10:37:15 [ 54] [ 40] [0001418C0006669035470002418C000666903547] +10:37:15 ============================================================================ +10:37:15 Sending to : +10:37:15 ============================================================================ +10:37:15 + + +waiting on router queue for slot.... +10:37:16 ============================================================================ +10:37:16 Slot Id : <248> +10:37:16 Transaction Type : RESPONSE +10:37:16 Received From : +10:37:16 ============================================================================ +10:37:16 FNo. Len. Field Value +10:37:16 ============================================================================ +10:37:16 [ 1] [ 4] [0210] +10:37:16 [ 2] [ 16] [6213548000509206] +10:37:16 [ 3] [ 6] [010000] +10:37:16 [ 4] [ 12] [000100000000] +10:37:16 [ 7] [ 10] [0320103505] +10:37:16 [ 11] [ 6] [939080] +10:37:16 [ 12] [ 6] [103505] +10:37:16 [ 13] [ 4] [0320] +10:37:16 [ 15] [ 4] [0320] +10:37:16 [ 18] [ 4] [6011] +10:37:16 [ 19] [ 3] [418] +10:37:16 [ 32] [ 6] [668899] +10:37:16 [ 35] [ 32] [6213548000509206=181112010920283] +10:37:16 [ 37] [ 12] [507901912149] +10:37:16 [ 38] [ 6] [116666] +10:37:16 [ 39] [ 2] [00] +10:37:16 [ 41] [ 8] [03013004] +10:37:16 [ 49] [ 3] [418] +10:37:16 [ 54] [ 40] [0001418C0006669035470002418C000666903547] +10:37:16 ============================================================================ +10:37:16 Calculate Source COMM Id = 4 +10:37:16 ============================================================================ +10:37:16 + + +waiting on router queue for slot.... +10:37:23 ============================================================================ +10:37:23 Slot Id : <243> +10:37:23 Transaction Type : REQUEST +10:37:23 Received From : +10:37:23 ============================================================================ +10:37:23 FNo. Len. Field Value +10:37:23 ============================================================================ +10:37:23 [ 1] [ 4] [0800] +10:37:23 [ 7] [ 10] [0320033631] +10:37:23 [ 11] [ 6] [155895] +10:37:23 [ 70] [ 3] [301] +10:37:23 ============================================================================ +10:37:23 + + +waiting on router queue for slot.... +10:37:23 Sending to : +10:37:23 ============================================================================ +10:37:23 ============================================================================ +10:37:23 Slot Id : <243> +10:37:23 Transaction Type : RESPONSE +10:37:23 Received From : +10:37:23 ============================================================================ +10:37:23 FNo. Len. Field Value +10:37:23 ============================================================================ +10:37:23 [ 1] [ 4] [0810] +10:37:23 [ 7] [ 10] [0320033631] +10:37:23 [ 11] [ 6] [155895] +10:37:23 [ 39] [ 2] [00] +10:37:23 [ 70] [ 3] [301] +10:37:23 ============================================================================ +10:37:23 Calculate Source COMM Id = 2 +10:37:23 ============================================================================ +10:37:23 + + +waiting on router queue for slot.... +10:37:28 ============================================================================ +10:37:28 Slot Id : <244> +10:37:28 Transaction Type : REQUEST +10:37:28 Received From : +10:37:28 ============================================================================ +10:37:28 FNo. Len. Field Value +10:37:28 ============================================================================ +10:37:28 [ 1] [ 4] [0200] +10:37:28 [ 2] [ 16] [1808930500013453] +10:37:28 [ 3] [ 6] [301000] +10:37:28 [ 4] [ 12] [000000000000] +10:37:28 [ 7] [ 10] [0320103519] +10:37:28 [ 11] [ 6] [939089] +10:37:28 [ 12] [ 6] [103519] +10:37:28 [ 13] [ 4] [0320] +10:37:28 [ 15] [ 4] [0320] +10:37:28 [ 18] [ 4] [6011] +10:37:28 [ 19] [ 3] [418] +10:37:28 [ 22] [ 3] [021] +10:37:28 [ 25] [ 2] [01] +10:37:28 [ 28] [ 9] [D00000000] +10:37:28 [ 32] [ 6] [668899] +10:37:28 [ 35] [ 27] [1808930500013453=1803500401] +10:37:28 [ 37] [ 12] [507900858271] +10:37:28 [ 41] [ 8] [03015004] +10:37:28 [ 42] [ 15] [APT ] +10:37:28 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +10:37:28 [ 49] [ 3] [418] +10:37:28 [ 52] [ 16] [BFD2C9FD0EDD8805] +10:37:28 ============================================================================ +10:37:28 + + +waiting on router queue for slot.... +10:37:28 Sending to : +10:37:28 ============================================================================ +10:37:28 Sending to : +10:37:28 ============================================================================ +10:37:28 ============================================================================ +10:37:28 Slot Id : <244> +10:37:28 Transaction Type : REQUEST +10:37:28 Received From : +10:37:28 ============================================================================ +10:37:28 FNo. Len. Field Value +10:37:28 ============================================================================ +10:37:28 [ 1] [ 4] [0200] +10:37:28 [ 2] [ 16] [1808930500013453] +10:37:28 [ 3] [ 6] [301000] +10:37:28 [ 4] [ 12] [000000000000] +10:37:28 [ 7] [ 10] [0320103519] +10:37:28 [ 11] [ 6] [939089] +10:37:28 [ 12] [ 6] [103519] +10:37:28 [ 13] [ 4] [0320] +10:37:28 [ 15] [ 4] [0320] +10:37:28 [ 18] [ 4] [6011] +10:37:28 [ 19] [ 3] [418] +10:37:28 [ 22] [ 3] [021] +10:37:28 [ 25] [ 2] [01] +10:37:28 [ 28] [ 9] [D00000000] +10:37:28 [ 32] [ 6] [668899] +10:37:28 [ 35] [ 27] [1808930500013453=1803500401] +10:37:28 [ 37] [ 12] [507900858271] +10:37:28 [ 41] [ 8] [03015004] +10:37:28 [ 42] [ 15] [APT ] +10:37:28 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +10:37:28 [ 49] [ 3] [418] +10:37:28 [ 52] [ 16] [BFD2C9FD0EDD8805] +10:37:28 ============================================================================ +10:37:28 + + +waiting on router queue for slot.... +10:37:28 Sending to : +10:37:28 ============================================================================ +10:37:28 ============================================================================ +10:37:28 Slot Id : <244> +10:37:28 Transaction Type : REQUEST +10:37:28 Received From : +10:37:28 ============================================================================ +10:37:28 FNo. Len. Field Value +10:37:28 ============================================================================ +10:37:28 [ 1] [ 4] [0200] +10:37:28 [ 2] [ 16] [1808930500013453] +10:37:28 [ 3] [ 6] [301000] +10:37:28 [ 4] [ 12] [000000000000] +10:37:28 [ 7] [ 10] [0320103519] +10:37:28 [ 11] [ 6] [939089] +10:37:28 [ 12] [ 6] [103519] +10:37:28 [ 13] [ 4] [0320] +10:37:28 [ 15] [ 4] [0320] +10:37:28 [ 18] [ 4] [6011] +10:37:28 [ 19] [ 3] [418] +10:37:28 [ 22] [ 3] [021] +10:37:28 [ 25] [ 2] [01] +10:37:28 [ 28] [ 9] [D00000000] +10:37:28 [ 32] [ 6] [668899] +10:37:28 [ 35] [ 27] [1808930500013453=1803500401] +10:37:28 [ 37] [ 12] [507900858271] +10:37:28 [ 41] [ 8] [03015004] +10:37:28 [ 42] [ 15] [APT ] +10:37:28 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +10:37:28 [ 49] [ 3] [418] +10:37:28 [ 52] [ 16] [3607E1A262FCEBAD] +10:37:28 ============================================================================ +10:37:28 + + +waiting on router queue for slot.... +10:37:28 Sending to : <2> +10:37:28 ============================================================================ +10:37:29 ============================================================================ +10:37:29 Slot Id : <244> +10:37:29 Transaction Type : RESPONSE +10:37:29 Received From : +10:37:29 ============================================================================ +10:37:29 FNo. Len. Field Value +10:37:29 ============================================================================ +10:37:29 [ 1] [ 4] [0210] +10:37:29 [ 2] [ 16] [1808930500013453] +10:37:29 [ 3] [ 6] [301000] +10:37:29 [ 7] [ 10] [0320103519] +10:37:29 [ 11] [ 6] [939089] +10:37:29 [ 12] [ 6] [103519] +10:37:29 [ 13] [ 4] [0320] +10:37:29 [ 14] [ 4] [1803] +10:37:29 [ 19] [ 3] [418] +10:37:29 [ 32] [ 6] [668899] +10:37:29 [ 37] [ 12] [507900858271] +10:37:29 [ 39] [ 2] [55] +10:37:29 [ 41] [ 8] [03015004] +10:37:29 [ 49] [ 3] [418] +10:37:29 [ 52] [ 16] [3607E1A262FCEBAD] +10:37:29 ============================================================================ +10:37:29 Sending to : +10:37:29 ============================================================================ +10:37:29 + + +waiting on router queue for slot.... +10:37:30 ============================================================================ +10:37:30 Slot Id : <244> +10:37:30 Transaction Type : RESPONSE +10:37:30 Received From : +10:37:30 ============================================================================ +10:37:30 FNo. Len. Field Value +10:37:30 ============================================================================ +10:37:30 [ 1] [ 4] [0210] +10:37:30 [ 2] [ 16] [1808930500013453] +10:37:30 [ 3] [ 6] [301000] +10:37:30 [ 7] [ 10] [0320103519] +10:37:30 [ 11] [ 6] [939089] +10:37:30 [ 12] [ 6] [103519] +10:37:30 [ 13] [ 4] [0320] +10:37:30 [ 14] [ 4] [1803] +10:37:30 [ 19] [ 3] [418] +10:37:30 [ 32] [ 6] [668899] +10:37:30 [ 37] [ 12] [507900858271] +10:37:30 [ 39] [ 2] [55] +10:37:30 [ 41] [ 8] [03015004] +10:37:30 [ 49] [ 3] [418] +10:37:30 [ 52] [ 16] [3607E1A262FCEBAD] +10:37:30 ============================================================================ +10:37:30 Calculate Source COMM Id = 4 +10:37:30 ============================================================================ +10:37:30 + + +waiting on router queue for slot.... +10:37:36 ============================================================================ +10:37:36 Slot Id : <177> +10:37:36 Transaction Type : REQUEST +10:37:36 Received From : +10:37:36 ============================================================================ +10:37:36 FNo. Len. Field Value +10:37:36 ============================================================================ +10:37:36 [ 1] [ 4] [0420] +10:37:36 [ 2] [ 16] [6213544002155205] +10:37:36 [ 3] [ 6] [011000] +10:37:36 [ 4] [ 12] [000010000000] +10:37:36 [ 7] [ 10] [0320103742] +10:37:36 [ 11] [ 6] [079075] +10:37:36 [ 12] [ 6] [103742] +10:37:36 [ 13] [ 4] [0320] +10:37:36 [ 14] [ 4] [4912] +10:37:36 [ 15] [ 4] [0320] +10:37:36 [ 18] [ 4] [6011] +10:37:36 [ 22] [ 3] [900] +10:37:36 [ 25] [ 2] [02] +10:37:36 [ 28] [ 9] [C00002000] +10:37:36 [ 32] [ 6] [220699] +10:37:36 [ 35] [ 32] [6213544002155205=491212015520873] +10:37:36 [ 37] [ 12] [507900132950] +10:37:36 [ 39] [ 2] [00] +10:37:36 [ 41] [ 8] [03000100] +10:37:36 [ 42] [ 15] [APTRA ] +10:37:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:37:36 [ 49] [ 3] [418] +10:37:36 [ 90] [ 42] [020007907503201037420000022069900000000000] +10:37:36 ============================================================================ +10:37:36 + + +waiting on router queue for slot.... +10:37:36 Sending to : +10:37:36 ============================================================================ +10:37:40 ============================================================================ +10:37:40 Slot Id : <227> +10:37:40 Transaction Type : REQUEST +10:37:40 Received From : +10:37:40 ============================================================================ +10:37:40 FNo. Len. Field Value +10:37:40 ============================================================================ +10:37:40 [ 1] [ 4] [0800] +10:37:40 [ 7] [ 10] [0320033647] +10:37:40 [ 11] [ 6] [155896] +10:37:40 [ 70] [ 3] [301] +10:37:40 ============================================================================ +10:37:40 + + +waiting on router queue for slot.... +10:37:40 Sending to : +10:37:40 ============================================================================ +10:37:40 ============================================================================ +10:37:40 Slot Id : <227> +10:37:40 Transaction Type : RESPONSE +10:37:40 Received From : +10:37:40 ============================================================================ +10:37:40 FNo. Len. Field Value +10:37:40 ============================================================================ +10:37:40 [ 1] [ 4] [0810] +10:37:40 [ 7] [ 10] [0320033647] +10:37:40 [ 11] [ 6] [155896] +10:37:40 [ 39] [ 2] [00] +10:37:40 [ 70] [ 3] [301] +10:37:40 ============================================================================ +10:37:40 Calculate Source COMM Id = 2 +10:37:40 ============================================================================ +10:37:40 + + +waiting on router queue for slot.... +10:37:44 ============================================================================ +10:37:44 Slot Id : <177> +10:37:44 Transaction Type : RESPONSE +10:37:44 Received From : +10:37:44 ============================================================================ +10:37:44 FNo. Len. Field Value +10:37:44 ============================================================================ +10:37:44 [ 1] [ 4] [0430] +10:37:44 [ 2] [ 16] [6213544002155205] +10:37:44 [ 3] [ 6] [011000] +10:37:44 [ 4] [ 12] [000010000000] +10:37:44 [ 7] [ 10] [0320103742] +10:37:44 [ 11] [ 6] [079075] +10:37:44 [ 12] [ 6] [103742] +10:37:44 [ 13] [ 4] [0320] +10:37:44 [ 14] [ 4] [4912] +10:37:44 [ 15] [ 4] [0320] +10:37:44 [ 18] [ 4] [6011] +10:37:44 [ 22] [ 3] [900] +10:37:44 [ 25] [ 2] [02] +10:37:44 [ 28] [ 9] [C00002000] +10:37:44 [ 32] [ 6] [220699] +10:37:44 [ 35] [ 32] [6213544002155205=491212015520873] +10:37:44 [ 37] [ 12] [507900132950] +10:37:44 [ 39] [ 2] [00] +10:37:44 [ 41] [ 8] [03000100] +10:37:44 [ 42] [ 15] [APTRA ] +10:37:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:37:44 [ 49] [ 3] [418] +10:37:44 [ 90] [ 42] [020007907503201037420000022069900000000000] +10:37:44 ============================================================================ +10:37:44 Calculate Source COMM Id = 1 +10:37:44 ============================================================================ +10:37:44 + + +waiting on router queue for slot.... +10:37:55 ============================================================================ +10:37:55 Slot Id : <251> +10:37:55 Transaction Type : REQUEST +10:37:55 Received From : +10:37:55 ============================================================================ +10:37:55 FNo. Len. Field Value +10:37:55 ============================================================================ +10:37:55 [ 1] [ 4] [0800] +10:37:55 [ 7] [ 10] [0320033703] +10:37:55 [ 11] [ 6] [155897] +10:37:55 [ 70] [ 3] [301] +10:37:55 ============================================================================ +10:37:55 + + +waiting on router queue for slot.... +10:37:55 Sending to : +10:37:55 ============================================================================ +10:37:55 ============================================================================ +10:37:55 Slot Id : <251> +10:37:55 Transaction Type : RESPONSE +10:37:55 Received From : +10:37:55 ============================================================================ +10:37:55 FNo. Len. Field Value +10:37:55 ============================================================================ +10:37:55 [ 1] [ 4] [0810] +10:37:55 [ 7] [ 10] [0320033703] +10:37:55 [ 11] [ 6] [155897] +10:37:55 [ 39] [ 2] [00] +10:37:55 [ 70] [ 3] [301] +10:37:55 ============================================================================ +10:37:55 Calculate Source COMM Id = 2 +10:37:55 ============================================================================ +10:37:55 + + +waiting on router queue for slot.... +10:37:58 ============================================================================ +10:37:58 Slot Id : <235> +10:37:58 Transaction Type : REQUEST +10:37:58 Received From : +10:37:58 ============================================================================ +10:37:58 FNo. Len. Field Value +10:37:58 ============================================================================ +10:37:58 [ 1] [ 4] [0200] +10:37:58 [ 2] [ 16] [1808930800004061] +10:37:58 [ 3] [ 6] [010000] +10:37:58 [ 4] [ 12] [000020000000] +10:37:58 [ 7] [ 10] [0320103754] +10:37:58 [ 11] [ 6] [716988] +10:37:58 [ 12] [ 6] [103754] +10:37:58 [ 13] [ 4] [0320] +10:37:58 [ 15] [ 4] [0320] +10:37:58 [ 18] [ 4] [6011] +10:37:58 [ 22] [ 3] [900] +10:37:58 [ 25] [ 2] [02] +10:37:58 [ 28] [ 9] [D00002000] +10:37:58 [ 32] [ 6] [621354] +10:37:58 [ 35] [ 27] [1808930800004061=1803500626] +10:37:58 [ 37] [ 12] [507904014972] +10:37:58 [ 41] [ 8] [01011700] +10:37:58 [ 42] [ 15] [NATIVE ] +10:37:58 [ 43] [ 40] [Souksavath College Xaythany LAO] +10:37:58 [ 49] [ 3] [418] +10:37:58 [ 52] [ 16] [58F88F5BA1346398] +10:37:58 ============================================================================ +10:37:58 + + +waiting on router queue for slot.... +10:37:58 Sending to : +10:37:58 ============================================================================ +10:37:58 Sending to : +10:37:58 ============================================================================ +10:37:58 ============================================================================ +10:37:58 Slot Id : <235> +10:37:58 Transaction Type : REQUEST +10:37:58 Received From : +10:37:58 ============================================================================ +10:37:58 FNo. Len. Field Value +10:37:58 ============================================================================ +10:37:58 [ 1] [ 4] [0200] +10:37:58 [ 2] [ 16] [1808930800004061] +10:37:58 [ 3] [ 6] [010000] +10:37:58 [ 4] [ 12] [000020000000] +10:37:58 [ 7] [ 10] [0320103754] +10:37:58 [ 11] [ 6] [716988] +10:37:58 [ 12] [ 6] [103754] +10:37:58 [ 13] [ 4] [0320] +10:37:58 [ 15] [ 4] [0320] +10:37:58 [ 18] [ 4] [6011] +10:37:58 [ 22] [ 3] [900] +10:37:58 [ 25] [ 2] [02] +10:37:58 [ 28] [ 9] [D00002000] +10:37:58 [ 32] [ 6] [621354] +10:37:58 [ 35] [ 27] [1808930800004061=1803500626] +10:37:58 [ 37] [ 12] [507904014972] +10:37:58 [ 41] [ 8] [01011700] +10:37:58 [ 42] [ 15] [NATIVE ] +10:37:58 [ 43] [ 40] [Souksavath College Xaythany LAO] +10:37:58 [ 49] [ 3] [418] +10:37:58 [ 52] [ 16] [58F88F5BA1346398] +10:37:58 ============================================================================ +10:37:58 + + +waiting on router queue for slot.... +10:37:58 Sending to : +10:37:58 ============================================================================ +10:37:58 ============================================================================ +10:37:58 Slot Id : <235> +10:37:58 Transaction Type : REQUEST +10:37:58 Received From : +10:37:58 ============================================================================ +10:37:58 FNo. Len. Field Value +10:37:58 ============================================================================ +10:37:58 [ 1] [ 4] [0200] +10:37:58 [ 2] [ 16] [1808930800004061] +10:37:58 [ 3] [ 6] [010000] +10:37:58 [ 4] [ 12] [000020000000] +10:37:58 [ 7] [ 10] [0320103754] +10:37:58 [ 11] [ 6] [716988] +10:37:58 [ 12] [ 6] [103754] +10:37:58 [ 13] [ 4] [0320] +10:37:58 [ 15] [ 4] [0320] +10:37:58 [ 18] [ 4] [6011] +10:37:58 [ 22] [ 3] [900] +10:37:58 [ 25] [ 2] [02] +10:37:58 [ 28] [ 9] [D00002000] +10:37:58 [ 32] [ 6] [621354] +10:37:58 [ 35] [ 27] [1808930800004061=1803500626] +10:37:58 [ 37] [ 12] [507904014972] +10:37:58 [ 41] [ 8] [01011700] +10:37:58 [ 42] [ 15] [NATIVE ] +10:37:58 [ 43] [ 40] [Souksavath College Xaythany LAO] +10:37:58 [ 49] [ 3] [418] +10:37:58 [ 52] [ 16] [2C434C0A8F814356] +10:37:58 ============================================================================ +10:37:58 + + +waiting on router queue for slot.... +10:37:58 Sending to : <2> +10:37:58 ============================================================================ +10:38:00 ============================================================================ +10:38:00 Slot Id : <235> +10:38:00 Transaction Type : RESPONSE +10:38:00 Received From : +10:38:00 ============================================================================ +10:38:00 FNo. Len. Field Value +10:38:00 ============================================================================ +10:38:00 [ 1] [ 4] [0210] +10:38:00 [ 2] [ 16] [1808930800004061] +10:38:00 [ 3] [ 6] [010000] +10:38:00 [ 4] [ 12] [000020000000] +10:38:00 [ 6] [ 12] [000020000000] +10:38:00 [ 7] [ 10] [0320103754] +10:38:00 [ 11] [ 6] [716988] +10:38:00 [ 12] [ 6] [103754] +10:38:00 [ 13] [ 4] [0320] +10:38:00 [ 18] [ 4] [6011] +10:38:00 [ 19] [ 3] [418] +10:38:00 [ 22] [ 3] [021] +10:38:00 [ 28] [ 9] [D00002000] +10:38:00 [ 32] [ 6] [621354] +10:38:00 [ 35] [ 27] [1808930800004061=1803500626] +10:38:00 [ 37] [ 12] [507904014972] +10:38:00 [ 39] [ 2] [55] +10:38:00 [ 41] [ 8] [01011700] +10:38:00 [ 49] [ 3] [418] +10:38:00 [ 51] [ 3] [418] +10:38:00 [ 52] [ 16] [2C434C0A8F814356] +10:38:00 ============================================================================ +10:38:00 Sending to : +10:38:00 ============================================================================ +10:38:00 + + +waiting on router queue for slot.... +10:38:01 ============================================================================ +10:38:01 Slot Id : <235> +10:38:01 Transaction Type : RESPONSE +10:38:01 Received From : +10:38:01 ============================================================================ +10:38:01 FNo. Len. Field Value +10:38:01 ============================================================================ +10:38:01 [ 1] [ 4] [0210] +10:38:01 [ 2] [ 16] [1808930800004061] +10:38:01 [ 3] [ 6] [010000] +10:38:01 [ 4] [ 12] [000020000000] +10:38:01 [ 6] [ 12] [000020000000] +10:38:01 [ 7] [ 10] [0320103754] +10:38:01 [ 11] [ 6] [716988] +10:38:01 [ 12] [ 6] [103754] +10:38:01 [ 13] [ 4] [0320] +10:38:01 [ 18] [ 4] [6011] +10:38:01 [ 19] [ 3] [418] +10:38:01 [ 22] [ 3] [021] +10:38:01 [ 28] [ 9] [D00002000] +10:38:01 [ 32] [ 6] [621354] +10:38:01 [ 35] [ 27] [1808930800004061=1803500626] +10:38:01 [ 37] [ 12] [507904014972] +10:38:01 [ 39] [ 2] [55] +10:38:01 [ 41] [ 8] [01011700] +10:38:01 [ 49] [ 3] [418] +10:38:01 [ 51] [ 3] [418] +10:38:01 [ 52] [ 16] [2C434C0A8F814356] +10:38:01 ============================================================================ +10:38:01 Calculate Source COMM Id = 0 +10:38:01 ============================================================================ +10:38:01 + + +waiting on router queue for slot.... +10:38:07 ============================================================================ +10:38:07 Slot Id : <250> +10:38:07 Transaction Type : REQUEST +10:38:07 Received From : +10:38:07 ============================================================================ +10:38:07 FNo. Len. Field Value +10:38:07 ============================================================================ +10:38:07 [ 1] [ 4] [0200] +10:38:07 [ 2] [ 16] [1808930500013453] +10:38:07 [ 3] [ 6] [301000] +10:38:07 [ 4] [ 12] [000000000000] +10:38:07 [ 7] [ 10] [0320103558] +10:38:07 [ 11] [ 6] [939113] +10:38:07 [ 12] [ 6] [103558] +10:38:07 [ 13] [ 4] [0320] +10:38:07 [ 15] [ 4] [0320] +10:38:07 [ 18] [ 4] [6011] +10:38:07 [ 19] [ 3] [418] +10:38:07 [ 22] [ 3] [021] +10:38:07 [ 25] [ 2] [01] +10:38:07 [ 28] [ 9] [D00000000] +10:38:07 [ 32] [ 6] [668899] +10:38:07 [ 35] [ 27] [1808930500013453=1803500401] +10:38:07 [ 37] [ 12] [507900858273] +10:38:07 [ 41] [ 8] [03015004] +10:38:07 [ 42] [ 15] [APT ] +10:38:07 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +10:38:07 [ 49] [ 3] [418] +10:38:07 [ 52] [ 16] [BFD2C9FD0EDD8805] +10:38:07 ============================================================================ +10:38:07 + + +waiting on router queue for slot.... +10:38:07 Sending to : +10:38:07 ============================================================================ +10:38:07 Sending to : +10:38:07 ============================================================================ +10:38:07 ============================================================================ +10:38:07 Slot Id : <250> +10:38:07 Transaction Type : REQUEST +10:38:07 Received From : +10:38:07 ============================================================================ +10:38:07 FNo. Len. Field Value +10:38:07 ============================================================================ +10:38:07 [ 1] [ 4] [0200] +10:38:07 [ 2] [ 16] [1808930500013453] +10:38:07 [ 3] [ 6] [301000] +10:38:07 [ 4] [ 12] [000000000000] +10:38:07 [ 7] [ 10] [0320103558] +10:38:07 [ 11] [ 6] [939113] +10:38:07 [ 12] [ 6] [103558] +10:38:07 [ 13] [ 4] [0320] +10:38:07 [ 15] [ 4] [0320] +10:38:07 [ 18] [ 4] [6011] +10:38:07 [ 19] [ 3] [418] +10:38:07 [ 22] [ 3] [021] +10:38:07 [ 25] [ 2] [01] +10:38:07 [ 28] [ 9] [D00000000] +10:38:07 [ 32] [ 6] [668899] +10:38:07 [ 35] [ 27] [1808930500013453=1803500401] +10:38:07 [ 37] [ 12] [507900858273] +10:38:07 [ 41] [ 8] [03015004] +10:38:07 [ 42] [ 15] [APT ] +10:38:07 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +10:38:07 [ 49] [ 3] [418] +10:38:07 [ 52] [ 16] [BFD2C9FD0EDD8805] +10:38:07 ============================================================================ +10:38:07 + + +waiting on router queue for slot.... +10:38:07 Sending to : +10:38:07 ============================================================================ +10:38:07 ============================================================================ +10:38:07 Slot Id : <250> +10:38:07 Transaction Type : REQUEST +10:38:07 Received From : +10:38:07 ============================================================================ +10:38:07 FNo. Len. Field Value +10:38:07 ============================================================================ +10:38:07 [ 1] [ 4] [0200] +10:38:07 [ 2] [ 16] [1808930500013453] +10:38:07 [ 3] [ 6] [301000] +10:38:07 [ 4] [ 12] [000000000000] +10:38:07 [ 7] [ 10] [0320103558] +10:38:07 [ 11] [ 6] [939113] +10:38:07 [ 12] [ 6] [103558] +10:38:07 [ 13] [ 4] [0320] +10:38:07 [ 15] [ 4] [0320] +10:38:07 [ 18] [ 4] [6011] +10:38:07 [ 19] [ 3] [418] +10:38:07 [ 22] [ 3] [021] +10:38:07 [ 25] [ 2] [01] +10:38:07 [ 28] [ 9] [D00000000] +10:38:07 [ 32] [ 6] [668899] +10:38:07 [ 35] [ 27] [1808930500013453=1803500401] +10:38:07 [ 37] [ 12] [507900858273] +10:38:07 [ 41] [ 8] [03015004] +10:38:07 [ 42] [ 15] [APT ] +10:38:07 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +10:38:07 [ 49] [ 3] [418] +10:38:07 [ 52] [ 16] [3607E1A262FCEBAD] +10:38:07 ============================================================================ +10:38:07 + + +waiting on router queue for slot.... +10:38:07 Sending to : <2> +10:38:07 ============================================================================ +10:38:08 ============================================================================ +10:38:08 Slot Id : <242> +10:38:08 Transaction Type : REQUEST +10:38:08 Received From : +10:38:08 ============================================================================ +10:38:08 FNo. Len. Field Value +10:38:08 ============================================================================ +10:38:08 [ 1] [ 4] [0200] +10:38:08 [ 2] [ 16] [6213545000078430] +10:38:08 [ 3] [ 6] [011000] +10:38:08 [ 4] [ 12] [000025000000] +10:38:08 [ 7] [ 10] [0320033715] +10:38:08 [ 11] [ 6] [268154] +10:38:08 [ 12] [ 6] [103715] +10:38:08 [ 13] [ 4] [0320] +10:38:08 [ 14] [ 4] [4912] +10:38:08 [ 15] [ 4] [0320] +10:38:08 [ 18] [ 4] [6011] +10:38:08 [ 19] [ 3] [418] +10:38:08 [ 22] [ 3] [021] +10:38:08 [ 25] [ 2] [01] +10:38:08 [ 28] [ 9] [D00002000] +10:38:08 [ 32] [ 6] [180893] +10:38:08 [ 35] [ 32] [6213545000078430=491212017843834] +10:38:08 [ 37] [ 12] [507903268154] +10:38:08 [ 41] [ 8] [0112CPBR] +10:38:08 [ 42] [ 15] [999999 ] +10:38:08 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:38:08 [ 49] [ 3] [418] +10:38:08 [ 52] [ 16] [27F7145C26800828] +10:38:08 ============================================================================ +10:38:08 + + +waiting on router queue for slot.... +10:38:08 Sending to : +10:38:08 ============================================================================ +10:38:08 Sending to : +10:38:08 ============================================================================ +10:38:09 ============================================================================ +10:38:09 Slot Id : <242> +10:38:09 Transaction Type : REQUEST +10:38:09 Received From : +10:38:09 ============================================================================ +10:38:09 FNo. Len. Field Value +10:38:09 ============================================================================ +10:38:09 [ 1] [ 4] [0200] +10:38:09 [ 2] [ 16] [6213545000078430] +10:38:09 [ 3] [ 6] [011000] +10:38:09 [ 4] [ 12] [000025000000] +10:38:09 [ 7] [ 10] [0320033715] +10:38:09 [ 11] [ 6] [268154] +10:38:09 [ 12] [ 6] [103715] +10:38:09 [ 13] [ 4] [0320] +10:38:09 [ 14] [ 4] [4912] +10:38:09 [ 15] [ 4] [0320] +10:38:09 [ 18] [ 4] [6011] +10:38:09 [ 19] [ 3] [418] +10:38:09 [ 22] [ 3] [021] +10:38:09 [ 25] [ 2] [01] +10:38:09 [ 28] [ 9] [D00002000] +10:38:09 [ 32] [ 6] [180893] +10:38:09 [ 35] [ 32] [6213545000078430=491212017843834] +10:38:09 [ 37] [ 12] [507903268154] +10:38:09 [ 41] [ 8] [0112CPBR] +10:38:09 [ 42] [ 15] [999999 ] +10:38:09 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:38:09 [ 49] [ 3] [418] +10:38:09 [ 52] [ 16] [27F7145C26800828] +10:38:09 ============================================================================ +10:38:09 + + +waiting on router queue for slot.... +10:38:09 Sending to : +10:38:09 ============================================================================ +10:38:09 ============================================================================ +10:38:09 Slot Id : <242> +10:38:09 Transaction Type : REQUEST +10:38:09 Received From : +10:38:09 ============================================================================ +10:38:09 FNo. Len. Field Value +10:38:09 ============================================================================ +10:38:09 [ 1] [ 4] [0200] +10:38:09 [ 2] [ 16] [6213545000078430] +10:38:09 [ 3] [ 6] [011000] +10:38:09 [ 4] [ 12] [000025000000] +10:38:09 [ 7] [ 10] [0320033715] +10:38:09 [ 11] [ 6] [268154] +10:38:09 [ 12] [ 6] [103715] +10:38:09 [ 13] [ 4] [0320] +10:38:09 [ 14] [ 4] [4912] +10:38:09 [ 15] [ 4] [0320] +10:38:09 [ 18] [ 4] [6011] +10:38:09 [ 19] [ 3] [418] +10:38:09 [ 22] [ 3] [021] +10:38:09 [ 25] [ 2] [01] +10:38:09 [ 28] [ 9] [D00002000] +10:38:09 [ 32] [ 6] [180893] +10:38:09 [ 35] [ 32] [6213545000078430=491212017843834] +10:38:09 [ 37] [ 12] [507903268154] +10:38:09 [ 41] [ 8] [0112CPBR] +10:38:09 [ 42] [ 15] [999999 ] +10:38:09 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:38:09 [ 49] [ 3] [418] +10:38:09 [ 52] [ 16] [751E9BE395ABA06F] +10:38:09 ============================================================================ +10:38:09 + + +waiting on router queue for slot.... +10:38:09 Sending to : <0> +10:38:09 ============================================================================ +10:38:09 ============================================================================ +10:38:09 Slot Id : <250> +10:38:09 Transaction Type : RESPONSE +10:38:09 Received From : +10:38:09 ============================================================================ +10:38:09 FNo. Len. Field Value +10:38:09 ============================================================================ +10:38:09 [ 1] [ 4] [0210] +10:38:09 [ 2] [ 16] [1808930500013453] +10:38:09 [ 3] [ 6] [301000] +10:38:09 [ 7] [ 10] [0320103558] +10:38:09 [ 11] [ 6] [939113] +10:38:09 [ 12] [ 6] [103558] +10:38:09 [ 13] [ 4] [0320] +10:38:09 [ 14] [ 4] [1803] +10:38:09 [ 19] [ 3] [418] +10:38:09 [ 32] [ 6] [668899] +10:38:09 [ 37] [ 12] [507900858273] +10:38:09 [ 39] [ 2] [55] +10:38:09 [ 41] [ 8] [03015004] +10:38:09 [ 49] [ 3] [418] +10:38:09 [ 52] [ 16] [3607E1A262FCEBAD] +10:38:09 ============================================================================ +10:38:09 Sending to : +10:38:09 ============================================================================ +10:38:09 + + +waiting on router queue for slot.... +10:38:09 ============================================================================ +10:38:09 Slot Id : <242> +10:38:09 Transaction Type : RESPONSE +10:38:09 Received From : +10:38:09 ============================================================================ +10:38:09 FNo. Len. Field Value +10:38:09 ============================================================================ +10:38:09 [ 1] [ 4] [0210] +10:38:09 [ 2] [ 16] [6213545000078430] +10:38:09 [ 3] [ 6] [011000] +10:38:09 [ 4] [ 12] [000025000000] +10:38:09 [ 7] [ 10] [0320033715] +10:38:09 [ 11] [ 6] [268154] +10:38:09 [ 12] [ 6] [103715] +10:38:09 [ 13] [ 4] [0320] +10:38:09 [ 15] [ 4] [0320] +10:38:09 [ 18] [ 4] [6011] +10:38:09 [ 19] [ 3] [418] +10:38:09 [ 32] [ 6] [180893] +10:38:09 [ 35] [ 32] [6213545000078430=491212017843834] +10:38:09 [ 37] [ 12] [507903268154] +10:38:09 [ 38] [ 6] [974981] +10:38:09 [ 39] [ 2] [00] +10:38:09 [ 41] [ 8] [0112CPBR] +10:38:09 [ 49] [ 3] [418] +10:38:09 [ 54] [ 40] [1001418C0000068109561002418C000006810956] +10:38:09 ============================================================================ +10:38:09 Sending to : +10:38:09 ============================================================================ +10:38:09 + + +waiting on router queue for slot.... +10:38:10 ============================================================================ +10:38:10 Slot Id : <250> +10:38:10 Transaction Type : RESPONSE +10:38:10 Received From : +10:38:10 ============================================================================ +10:38:10 FNo. Len. Field Value +10:38:10 ============================================================================ +10:38:10 [ 1] [ 4] [0210] +10:38:10 [ 2] [ 16] [1808930500013453] +10:38:10 [ 3] [ 6] [301000] +10:38:10 [ 7] [ 10] [0320103558] +10:38:10 [ 11] [ 6] [939113] +10:38:10 [ 12] [ 6] [103558] +10:38:10 [ 13] [ 4] [0320] +10:38:10 [ 14] [ 4] [1803] +10:38:10 [ 19] [ 3] [418] +10:38:10 [ 32] [ 6] [668899] +10:38:10 [ 37] [ 12] [507900858273] +10:38:10 [ 39] [ 2] [55] +10:38:10 [ 41] [ 8] [03015004] +10:38:10 [ 49] [ 3] [418] +10:38:10 [ 52] [ 16] [3607E1A262FCEBAD] +10:38:10 ============================================================================ +10:38:10 Calculate Source COMM Id = 4 +10:38:10 ============================================================================ +10:38:10 + + +waiting on router queue for slot.... +10:38:12 ============================================================================ +10:38:12 Slot Id : <226> +10:38:12 Transaction Type : REQUEST +10:38:12 Received From : +10:38:12 ============================================================================ +10:38:12 FNo. Len. Field Value +10:38:12 ============================================================================ +10:38:12 [ 1] [ 4] [0800] +10:38:12 [ 2] [ 5] [02531] +10:38:12 [ 3] [ 6] [579108] +10:38:12 [ 7] [ 10] [0320033812] +10:38:12 [ 11] [ 6] [807029] +10:38:12 [ 15] [ 10] [0320033812] +10:38:12 [ 37] [ 11] [57910807029] +10:38:12 [ 70] [ 3] [001] +10:38:12 ============================================================================ +10:38:12 + + +waiting on router queue for slot.... +10:38:12 ============================================================================ +10:38:12 Slot Id : <226> +10:38:12 Transaction Type : RESPONSE +10:38:12 Received From : +10:38:12 ============================================================================ +10:38:12 FNo. Len. Field Value +10:38:12 ============================================================================ +10:38:12 [ 1] [ 4] [0810] +10:38:12 [ 7] [ 10] [0320033812] +10:38:12 [ 11] [ 6] [807029] +10:38:12 [ 15] [ 4] [0320] +10:38:12 [ 37] [ 12] [57910807029] +10:38:12 [ 39] [ 2] [00] +10:38:12 [ 70] [ 3] [001] +10:38:12 ============================================================================ +10:38:12 Sending to : +10:38:12 ============================================================================ +10:38:12 + + +waiting on router queue for slot.... +10:38:12 ============================================================================ +10:38:12 Slot Id : <242> +10:38:12 Transaction Type : RESPONSE +10:38:12 Received From : +10:38:12 ============================================================================ +10:38:12 FNo. Len. Field Value +10:38:12 ============================================================================ +10:38:12 [ 1] [ 4] [0210] +10:38:12 [ 2] [ 16] [6213545000078430] +10:38:12 [ 3] [ 6] [011000] +10:38:12 [ 4] [ 12] [000025000000] +10:38:12 [ 7] [ 10] [0320033715] +10:38:12 [ 11] [ 6] [268154] +10:38:12 [ 12] [ 6] [103715] +10:38:12 [ 13] [ 4] [0320] +10:38:12 [ 15] [ 4] [0320] +10:38:12 [ 18] [ 4] [6011] +10:38:12 [ 19] [ 3] [418] +10:38:12 [ 32] [ 6] [180893] +10:38:12 [ 35] [ 32] [6213545000078430=491212017843834] +10:38:12 [ 37] [ 12] [507903268154] +10:38:12 [ 38] [ 6] [974981] +10:38:12 [ 39] [ 2] [00] +10:38:12 [ 41] [ 8] [0112CPBR] +10:38:12 [ 49] [ 3] [418] +10:38:12 [ 54] [ 40] [1001418C0000068109561002418C000006810956] +10:38:12 ============================================================================ +10:38:12 Calculate Source COMM Id = 2 +10:38:12 ============================================================================ +10:38:12 + + +waiting on router queue for slot.... +10:38:15 ============================================================================ +10:38:15 Slot Id : <255> +10:38:15 Transaction Type : REQUEST +10:38:15 Received From : +10:38:15 ============================================================================ +10:38:15 FNo. Len. Field Value +10:38:15 ============================================================================ +10:38:15 [ 1] [ 4] [0200] +10:38:15 [ 2] [ 16] [1808930800004061] +10:38:15 [ 3] [ 6] [010000] +10:38:15 [ 4] [ 12] [000020000000] +10:38:15 [ 7] [ 10] [0320103811] +10:38:15 [ 11] [ 6] [717069] +10:38:15 [ 12] [ 6] [103811] +10:38:15 [ 13] [ 4] [0320] +10:38:15 [ 15] [ 4] [0320] +10:38:15 [ 18] [ 4] [6011] +10:38:15 [ 22] [ 3] [900] +10:38:15 [ 25] [ 2] [02] +10:38:15 [ 28] [ 9] [D00002000] +10:38:15 [ 32] [ 6] [621354] +10:38:15 [ 35] [ 27] [1808930800004061=1803500626] +10:38:15 [ 37] [ 12] [507904014974] +10:38:15 [ 41] [ 8] [01011700] +10:38:15 [ 42] [ 15] [NATIVE ] +10:38:15 [ 43] [ 40] [Souksavath College Xaythany LAO] +10:38:15 [ 49] [ 3] [418] +10:38:15 [ 52] [ 16] [58F88F5BA1346398] +10:38:15 ============================================================================ +10:38:15 + + +waiting on router queue for slot.... +10:38:15 Sending to : +10:38:15 ============================================================================ +10:38:15 Sending to : +10:38:15 ============================================================================ +10:38:16 ============================================================================ +10:38:16 Slot Id : <255> +10:38:16 Transaction Type : REQUEST +10:38:16 Received From : +10:38:16 ============================================================================ +10:38:16 FNo. Len. Field Value +10:38:16 ============================================================================ +10:38:16 [ 1] [ 4] [0200] +10:38:16 [ 2] [ 16] [1808930800004061] +10:38:16 [ 3] [ 6] [010000] +10:38:16 [ 4] [ 12] [000020000000] +10:38:16 [ 7] [ 10] [0320103811] +10:38:16 [ 11] [ 6] [717069] +10:38:16 [ 12] [ 6] [103811] +10:38:16 [ 13] [ 4] [0320] +10:38:16 [ 15] [ 4] [0320] +10:38:16 [ 18] [ 4] [6011] +10:38:16 [ 22] [ 3] [900] +10:38:16 [ 25] [ 2] [02] +10:38:16 [ 28] [ 9] [D00002000] +10:38:16 [ 32] [ 6] [621354] +10:38:16 [ 35] [ 27] [1808930800004061=1803500626] +10:38:16 [ 37] [ 12] [507904014974] +10:38:16 [ 41] [ 8] [01011700] +10:38:16 [ 42] [ 15] [NATIVE ] +10:38:16 [ 43] [ 40] [Souksavath College Xaythany LAO] +10:38:16 [ 49] [ 3] [418] +10:38:16 [ 52] [ 16] [58F88F5BA1346398] +10:38:16 ============================================================================ +10:38:16 + + +waiting on router queue for slot.... +10:38:16 Sending to : +10:38:16 ============================================================================ +10:38:16 ============================================================================ +10:38:16 Slot Id : <255> +10:38:16 Transaction Type : REQUEST +10:38:16 Received From : +10:38:16 ============================================================================ +10:38:16 FNo. Len. Field Value +10:38:16 ============================================================================ +10:38:16 [ 1] [ 4] [0200] +10:38:16 [ 2] [ 16] [1808930800004061] +10:38:16 [ 3] [ 6] [010000] +10:38:16 [ 4] [ 12] [000020000000] +10:38:16 [ 7] [ 10] [0320103811] +10:38:16 [ 11] [ 6] [717069] +10:38:16 [ 12] [ 6] [103811] +10:38:16 [ 13] [ 4] [0320] +10:38:16 [ 15] [ 4] [0320] +10:38:16 [ 18] [ 4] [6011] +10:38:16 [ 22] [ 3] [900] +10:38:16 [ 25] [ 2] [02] +10:38:16 [ 28] [ 9] [D00002000] +10:38:16 [ 32] [ 6] [621354] +10:38:16 [ 35] [ 27] [1808930800004061=1803500626] +10:38:16 [ 37] [ 12] [507904014974] +10:38:16 [ 41] [ 8] [01011700] +10:38:16 [ 42] [ 15] [NATIVE ] +10:38:16 [ 43] [ 40] [Souksavath College Xaythany LAO] +10:38:16 [ 49] [ 3] [418] +10:38:16 [ 52] [ 16] [2C434C0A8F814356] +10:38:16 ============================================================================ +10:38:16 + + +waiting on router queue for slot.... +10:38:16 Sending to : <2> +10:38:16 ============================================================================ +10:38:17 ============================================================================ +10:38:17 Slot Id : <255> +10:38:17 Transaction Type : RESPONSE +10:38:17 Received From : +10:38:17 ============================================================================ +10:38:17 FNo. Len. Field Value +10:38:17 ============================================================================ +10:38:17 [ 1] [ 4] [0210] +10:38:17 [ 2] [ 16] [1808930800004061] +10:38:17 [ 3] [ 6] [010000] +10:38:17 [ 4] [ 12] [000020000000] +10:38:17 [ 6] [ 12] [000020000000] +10:38:17 [ 7] [ 10] [0320103811] +10:38:17 [ 11] [ 6] [717069] +10:38:17 [ 12] [ 6] [103811] +10:38:17 [ 13] [ 4] [0320] +10:38:17 [ 18] [ 4] [6011] +10:38:17 [ 19] [ 3] [418] +10:38:17 [ 22] [ 3] [021] +10:38:17 [ 28] [ 9] [D00002000] +10:38:17 [ 32] [ 6] [621354] +10:38:17 [ 35] [ 27] [1808930800004061=1803500626] +10:38:17 [ 37] [ 12] [507904014974] +10:38:17 [ 39] [ 2] [55] +10:38:17 [ 41] [ 8] [01011700] +10:38:17 [ 49] [ 3] [418] +10:38:17 [ 51] [ 3] [418] +10:38:17 [ 52] [ 16] [2C434C0A8F814356] +10:38:17 ============================================================================ +10:38:17 Sending to : +10:38:17 ============================================================================ +10:38:17 + + +waiting on router queue for slot.... +10:38:18 ============================================================================ +10:38:18 Slot Id : <255> +10:38:18 Transaction Type : RESPONSE +10:38:18 Received From : +10:38:18 ============================================================================ +10:38:18 FNo. Len. Field Value +10:38:18 ============================================================================ +10:38:18 [ 1] [ 4] [0210] +10:38:18 [ 2] [ 16] [1808930800004061] +10:38:18 [ 3] [ 6] [010000] +10:38:18 [ 4] [ 12] [000020000000] +10:38:18 [ 6] [ 12] [000020000000] +10:38:18 [ 7] [ 10] [0320103811] +10:38:18 [ 11] [ 6] [717069] +10:38:18 [ 12] [ 6] [103811] +10:38:18 [ 13] [ 4] [0320] +10:38:18 [ 18] [ 4] [6011] +10:38:18 [ 19] [ 3] [418] +10:38:18 [ 22] [ 3] [021] +10:38:18 [ 28] [ 9] [D00002000] +10:38:18 [ 32] [ 6] [621354] +10:38:18 [ 35] [ 27] [1808930800004061=1803500626] +10:38:18 [ 37] [ 12] [507904014974] +10:38:18 [ 39] [ 2] [55] +10:38:18 [ 41] [ 8] [01011700] +10:38:18 [ 49] [ 3] [418] +10:38:18 [ 51] [ 3] [418] +10:38:18 [ 52] [ 16] [2C434C0A8F814356] +10:38:18 ============================================================================ +10:38:18 Calculate Source COMM Id = 0 +10:38:18 ============================================================================ +10:38:18 + + +waiting on router queue for slot.... +10:38:28 ============================================================================ +10:38:28 Slot Id : <238> +10:38:28 Transaction Type : REQUEST +10:38:28 Received From : +10:38:28 ============================================================================ +10:38:28 FNo. Len. Field Value +10:38:28 ============================================================================ +10:38:28 [ 1] [ 4] [0200] +10:38:28 [ 2] [ 16] [1808930800004061] +10:38:28 [ 3] [ 6] [010000] +10:38:28 [ 4] [ 12] [000020000000] +10:38:28 [ 7] [ 10] [0320103824] +10:38:28 [ 11] [ 6] [717119] +10:38:28 [ 12] [ 6] [103824] +10:38:28 [ 13] [ 4] [0320] +10:38:28 [ 15] [ 4] [0320] +10:38:28 [ 18] [ 4] [6011] +10:38:28 [ 22] [ 3] [900] +10:38:28 [ 25] [ 2] [02] +10:38:28 [ 28] [ 9] [D00002000] +10:38:28 [ 32] [ 6] [621354] +10:38:28 [ 35] [ 27] [1808930800004061=1803500626] +10:38:28 [ 37] [ 12] [507904014976] +10:38:28 [ 41] [ 8] [01011700] +10:38:28 [ 42] [ 15] [NATIVE ] +10:38:28 [ 43] [ 40] [Souksavath College Xaythany LAO] +10:38:28 [ 49] [ 3] [418] +10:38:28 [ 52] [ 16] [7470FA9D758469FF] +10:38:28 ============================================================================ +10:38:28 + + +waiting on router queue for slot.... +10:38:28 Sending to : +10:38:28 ============================================================================ +10:38:28 Sending to : +10:38:28 ============================================================================ +10:38:28 ============================================================================ +10:38:28 Slot Id : <238> +10:38:28 Transaction Type : REQUEST +10:38:28 Received From : +10:38:28 ============================================================================ +10:38:28 FNo. Len. Field Value +10:38:28 ============================================================================ +10:38:28 [ 1] [ 4] [0200] +10:38:28 [ 2] [ 16] [1808930800004061] +10:38:28 [ 3] [ 6] [010000] +10:38:28 [ 4] [ 12] [000020000000] +10:38:28 [ 7] [ 10] [0320103824] +10:38:28 [ 11] [ 6] [717119] +10:38:28 [ 12] [ 6] [103824] +10:38:28 [ 13] [ 4] [0320] +10:38:28 [ 15] [ 4] [0320] +10:38:28 [ 18] [ 4] [6011] +10:38:28 [ 22] [ 3] [900] +10:38:28 [ 25] [ 2] [02] +10:38:28 [ 28] [ 9] [D00002000] +10:38:28 [ 32] [ 6] [621354] +10:38:28 [ 35] [ 27] [1808930800004061=1803500626] +10:38:28 [ 37] [ 12] [507904014976] +10:38:28 [ 41] [ 8] [01011700] +10:38:28 [ 42] [ 15] [NATIVE ] +10:38:28 [ 43] [ 40] [Souksavath College Xaythany LAO] +10:38:28 [ 49] [ 3] [418] +10:38:28 [ 52] [ 16] [7470FA9D758469FF] +10:38:28 ============================================================================ +10:38:28 + + +waiting on router queue for slot.... +10:38:28 Sending to : +10:38:28 ============================================================================ +10:38:28 ============================================================================ +10:38:28 Slot Id : <238> +10:38:28 Transaction Type : REQUEST +10:38:28 Received From : +10:38:28 ============================================================================ +10:38:28 FNo. Len. Field Value +10:38:28 ============================================================================ +10:38:28 [ 1] [ 4] [0200] +10:38:28 [ 2] [ 16] [1808930800004061] +10:38:28 [ 3] [ 6] [010000] +10:38:28 [ 4] [ 12] [000020000000] +10:38:28 [ 7] [ 10] [0320103824] +10:38:28 [ 11] [ 6] [717119] +10:38:28 [ 12] [ 6] [103824] +10:38:28 [ 13] [ 4] [0320] +10:38:28 [ 15] [ 4] [0320] +10:38:28 [ 18] [ 4] [6011] +10:38:28 [ 22] [ 3] [900] +10:38:28 [ 25] [ 2] [02] +10:38:28 [ 28] [ 9] [D00002000] +10:38:28 [ 32] [ 6] [621354] +10:38:28 [ 35] [ 27] [1808930800004061=1803500626] +10:38:28 [ 37] [ 12] [507904014976] +10:38:28 [ 41] [ 8] [01011700] +10:38:28 [ 42] [ 15] [NATIVE ] +10:38:28 [ 43] [ 40] [Souksavath College Xaythany LAO] +10:38:28 [ 49] [ 3] [418] +10:38:28 [ 52] [ 16] [E88DE19556D9BFCC] +10:38:28 ============================================================================ +10:38:28 + + +waiting on router queue for slot.... +10:38:28 Sending to : <2> +10:38:28 ============================================================================ +10:38:36 ============================================================================ +10:38:36 Slot Id : <238> +10:38:36 Transaction Type : RESPONSE +10:38:36 Received From : +10:38:36 ============================================================================ +10:38:36 FNo. Len. Field Value +10:38:36 ============================================================================ +10:38:36 [ 1] [ 4] [0210] +10:38:36 [ 2] [ 16] [1808930800004061] +10:38:36 [ 3] [ 6] [010000] +10:38:36 [ 4] [ 12] [000020000000] +10:38:36 [ 6] [ 12] [000020000000] +10:38:36 [ 7] [ 10] [0320103824] +10:38:36 [ 11] [ 6] [717119] +10:38:36 [ 12] [ 6] [103824] +10:38:36 [ 13] [ 4] [0320] +10:38:36 [ 18] [ 4] [6011] +10:38:36 [ 19] [ 3] [418] +10:38:36 [ 22] [ 3] [021] +10:38:36 [ 32] [ 6] [621354] +10:38:36 [ 35] [ 27] [1808930800004061=1803500626] +10:38:36 [ 37] [ 12] [507904014976] +10:38:36 [ 38] [ 6] [717119] +10:38:36 [ 39] [ 2] [00] +10:38:36 [ 41] [ 8] [01011700] +10:38:36 [ 49] [ 3] [418] +10:38:36 [ 52] [ 16] [E88DE19556D9BFCC] +10:38:36 [ 54] [ 20] [1001418C000057887000] +10:38:36 ============================================================================ +10:38:36 Sending to : +10:38:36 ============================================================================ +10:38:36 + + +waiting on router queue for slot.... +10:38:40 ============================================================================ +10:38:40 Slot Id : <233> +10:38:40 Transaction Type : REQUEST +10:38:40 Received From : +10:38:40 ============================================================================ +10:38:40 FNo. Len. Field Value +10:38:40 ============================================================================ +10:38:40 [ 1] [ 4] [0800] +10:38:40 [ 7] [ 10] [0320033747] +10:38:40 [ 11] [ 6] [155898] +10:38:40 [ 70] [ 3] [301] +10:38:40 ============================================================================ +10:38:40 + + +waiting on router queue for slot.... +10:38:40 Sending to : +10:38:40 ============================================================================ +10:38:40 ============================================================================ +10:38:40 Slot Id : <233> +10:38:40 Transaction Type : RESPONSE +10:38:40 Received From : +10:38:40 ============================================================================ +10:38:40 FNo. Len. Field Value +10:38:40 ============================================================================ +10:38:40 [ 1] [ 4] [0810] +10:38:40 [ 7] [ 10] [0320033747] +10:38:40 [ 11] [ 6] [155898] +10:38:40 [ 39] [ 2] [00] +10:38:40 [ 70] [ 3] [301] +10:38:40 ============================================================================ +10:38:40 Calculate Source COMM Id = 2 +10:38:40 ============================================================================ +10:38:40 + + +waiting on router queue for slot.... +10:38:41 ============================================================================ +10:38:41 Slot Id : <238> +10:38:41 Transaction Type : RESPONSE +10:38:41 Received From : +10:38:41 ============================================================================ +10:38:41 FNo. Len. Field Value +10:38:41 ============================================================================ +10:38:41 [ 1] [ 4] [0210] +10:38:41 [ 2] [ 16] [1808930800004061] +10:38:41 [ 3] [ 6] [010000] +10:38:41 [ 4] [ 12] [000020000000] +10:38:41 [ 6] [ 12] [000020000000] +10:38:41 [ 7] [ 10] [0320103824] +10:38:41 [ 11] [ 6] [717119] +10:38:41 [ 12] [ 6] [103824] +10:38:41 [ 13] [ 4] [0320] +10:38:41 [ 18] [ 4] [6011] +10:38:41 [ 19] [ 3] [418] +10:38:41 [ 22] [ 3] [021] +10:38:41 [ 32] [ 6] [621354] +10:38:41 [ 35] [ 27] [1808930800004061=1803500626] +10:38:41 [ 37] [ 12] [507904014976] +10:38:41 [ 38] [ 6] [717119] +10:38:41 [ 39] [ 2] [00] +10:38:41 [ 41] [ 8] [01011700] +10:38:41 [ 49] [ 3] [418] +10:38:41 [ 52] [ 16] [E88DE19556D9BFCC] +10:38:41 [ 54] [ 20] [1001418C000057887000] +10:38:41 ============================================================================ +10:38:41 Calculate Source COMM Id = 0 +10:38:41 ============================================================================ +10:38:41 + + +waiting on router queue for slot.... +10:38:55 ============================================================================ +10:38:55 Slot Id : <237> +10:38:55 Transaction Type : REQUEST +10:38:55 Received From : +10:38:55 ============================================================================ +10:38:55 FNo. Len. Field Value +10:38:55 ============================================================================ +10:38:55 [ 0] [ 4] [0420] +10:38:55 [ 1] [ 4] [0420] +10:38:55 [ 2] [ 16] [6213544002155205] +10:38:55 [ 3] [ 6] [011000] +10:38:55 [ 4] [ 12] [000010000000] +10:38:55 [ 6] [ 12] [000010000000] +10:38:55 [ 7] [ 10] [0320103742] +10:38:55 [ 11] [ 6] [079075] +10:38:55 [ 12] [ 6] [103742] +10:38:55 [ 13] [ 4] [0320] +10:38:55 [ 14] [ 4] [4912] +10:38:55 [ 15] [ 4] [0320] +10:38:55 [ 18] [ 4] [6011] +10:38:55 [ 22] [ 3] [900] +10:38:55 [ 25] [ 2] [02] +10:38:55 [ 28] [ 9] [D00002000] +10:38:55 [ 32] [ 6] [220699] +10:38:55 [ 35] [ 32] [6213544002155205=491212015520873] +10:38:55 [ 37] [ 12] [507900132950] +10:38:55 [ 39] [ 2] [00] +10:38:55 [ 41] [ 8] [03000100] +10:38:55 [ 42] [ 15] [APTRA ] +10:38:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:38:55 [ 49] [ 3] [418] +10:38:55 [ 52] [ 16] [E55E8D206263934C] +10:38:55 ============================================================================ +10:38:55 + + +waiting on router queue for slot.... +10:38:55 ============================================================================ +10:38:55 Slot Id : <200> +10:38:55 Transaction Type : REQUEST +10:38:55 Received From : +10:38:55 ============================================================================ +10:38:55 FNo. Len. Field Value +10:38:55 ============================================================================ +10:38:55 [ 1] [ 4] [0800] +10:38:55 [ 7] [ 10] [0320033803] +10:38:55 [ 11] [ 6] [155899] +10:38:55 [ 70] [ 3] [301] +10:38:55 ============================================================================ +10:38:55 + + +waiting on router queue for slot.... +10:38:55 Sending to : +10:38:55 ============================================================================ +10:38:55 ============================================================================ +10:38:55 Slot Id : <200> +10:38:55 Transaction Type : RESPONSE +10:38:55 Received From : +10:38:55 ============================================================================ +10:38:55 FNo. Len. Field Value +10:38:55 ============================================================================ +10:38:55 [ 1] [ 4] [0810] +10:38:55 [ 7] [ 10] [0320033803] +10:38:55 [ 11] [ 6] [155899] +10:38:55 [ 39] [ 2] [00] +10:38:55 [ 70] [ 3] [301] +10:38:55 ============================================================================ +10:38:55 Calculate Source COMM Id = 2 +10:38:55 ============================================================================ +10:38:55 + + +waiting on router queue for slot.... +10:38:55 ============================================================================ +10:38:55 Slot Id : <237> +10:38:55 Transaction Type : RESPONSE +10:38:55 Received From : +10:38:55 ============================================================================ +10:38:55 FNo. Len. Field Value +10:38:55 ============================================================================ +10:38:55 [ 1] [ 4] [0430] +10:38:55 [ 2] [ 16] [6213544002155205] +10:38:55 [ 3] [ 6] [011000] +10:38:55 [ 4] [ 12] [000010000000] +10:38:55 [ 7] [ 10] [0320103742] +10:38:55 [ 11] [ 6] [079075] +10:38:55 [ 32] [ 6] [220699] +10:38:55 [ 35] [ 32] [6213544002155205=491212015520873] +10:38:55 [ 37] [ 12] [507900132950] +10:38:55 [ 39] [ 2] [00] +10:38:55 [ 41] [ 8] [03000100] +10:38:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:38:55 [ 49] [ 3] [418] +10:38:55 [ 90] [ 42] [020007907503201037420000022069900000000000] +10:38:55 ============================================================================ +10:38:55 Successfully send the slot [237] To REVERSAL Process +10:38:55 + + +waiting on router queue for slot.... +10:38:59 ============================================================================ +10:38:59 Slot Id : <216> +10:38:59 Transaction Type : REQUEST +10:38:59 Received From : +10:38:59 ============================================================================ +10:38:59 FNo. Len. Field Value +10:38:59 ============================================================================ +10:38:59 [ 1] [ 4] [0200] +10:38:59 [ 2] [ 16] [6213545000078430] +10:38:59 [ 3] [ 6] [011000] +10:38:59 [ 4] [ 12] [000002000000] +10:38:59 [ 7] [ 10] [0320033806] +10:38:59 [ 11] [ 6] [268160] +10:38:59 [ 12] [ 6] [103806] +10:38:59 [ 13] [ 4] [0320] +10:38:59 [ 14] [ 4] [4912] +10:38:59 [ 15] [ 4] [0320] +10:38:59 [ 18] [ 4] [6011] +10:38:59 [ 19] [ 3] [418] +10:38:59 [ 22] [ 3] [021] +10:38:59 [ 25] [ 2] [01] +10:38:59 [ 28] [ 9] [D00002000] +10:38:59 [ 32] [ 6] [180893] +10:38:59 [ 35] [ 32] [6213545000078430=491212017843834] +10:38:59 [ 37] [ 12] [507903268160] +10:38:59 [ 41] [ 8] [0112CPBR] +10:38:59 [ 42] [ 15] [999999 ] +10:38:59 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:38:59 [ 49] [ 3] [418] +10:38:59 [ 52] [ 16] [27F7145C26800828] +10:38:59 ============================================================================ +10:38:59 + + +waiting on router queue for slot.... +10:38:59 Sending to : +10:38:59 ============================================================================ +10:38:59 Sending to : +10:38:59 ============================================================================ +10:38:59 ============================================================================ +10:38:59 Slot Id : <220> +10:38:59 Transaction Type : REQUEST +10:38:59 Received From : +10:38:59 ============================================================================ +10:38:59 FNo. Len. Field Value +10:38:59 ============================================================================ +10:38:59 [ 1] [ 4] [0200] +10:38:59 [ 2] [ 16] [6213545000871487] +10:38:59 [ 3] [ 6] [010000] +10:38:59 [ 4] [ 12] [000014000000] +10:38:59 [ 7] [ 10] [0320103650] +10:38:59 [ 11] [ 6] [939145] +10:38:59 [ 12] [ 6] [103650] +10:38:59 [ 13] [ 4] [0320] +10:38:59 [ 15] [ 4] [0320] +10:38:59 [ 18] [ 4] [6011] +10:38:59 [ 19] [ 3] [418] +10:38:59 [ 22] [ 3] [021] +10:38:59 [ 25] [ 2] [01] +10:38:59 [ 28] [ 9] [D00002000] +10:38:59 [ 32] [ 6] [668899] +10:38:59 [ 35] [ 32] [6213545000871487=491212017148353] +10:38:59 [ 37] [ 12] [507900297331] +10:38:59 [ 41] [ 8] [03010006] +10:38:59 [ 42] [ 15] [APT ] +10:38:59 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:38:59 [ 49] [ 3] [418] +10:38:59 [ 52] [ 16] [3C33A82926E131F2] +10:38:59 ============================================================================ +10:38:59 + + +waiting on router queue for slot.... +10:38:59 Sending to : +10:38:59 ============================================================================ +10:38:59 Sending to : +10:38:59 ============================================================================ +10:39:01 ============================================================================ +10:39:01 Slot Id : <234> +10:39:01 Transaction Type : REQUEST +10:39:01 Received From : +10:39:01 ============================================================================ +10:39:01 FNo. Len. Field Value +10:39:01 ============================================================================ +10:39:01 [ 1] [ 4] [0200] +10:39:01 [ 2] [ 16] [6213545000011019] +10:39:01 [ 3] [ 6] [011000] +10:39:01 [ 4] [ 12] [000100000000] +10:39:01 [ 7] [ 10] [0320104648] +10:39:01 [ 11] [ 6] [079079] +10:39:01 [ 12] [ 6] [104648] +10:39:01 [ 13] [ 4] [0320] +10:39:01 [ 14] [ 4] [4912] +10:39:01 [ 15] [ 4] [0320] +10:39:01 [ 18] [ 4] [6011] +10:39:01 [ 22] [ 3] [900] +10:39:01 [ 25] [ 2] [02] +10:39:01 [ 28] [ 9] [D00002000] +10:39:01 [ 32] [ 6] [220699] +10:39:01 [ 35] [ 32] [6213545000011019=491212011101751] +10:39:01 [ 37] [ 12] [507900132952] +10:39:01 [ 41] [ 8] [03000100] +10:39:01 [ 42] [ 15] [APTRA ] +10:39:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:39:01 [ 49] [ 3] [418] +10:39:01 [ 52] [ 16] [0A92CCAA1623519E] +10:39:01 ============================================================================ +10:39:01 + + +waiting on router queue for slot.... +10:39:01 Sending to : +10:39:01 ============================================================================ +10:39:01 Sending to : +10:39:01 ============================================================================ +10:39:01 ============================================================================ +10:39:01 Slot Id : <234> +10:39:01 Transaction Type : REQUEST +10:39:01 Received From : +10:39:01 ============================================================================ +10:39:01 FNo. Len. Field Value +10:39:01 ============================================================================ +10:39:01 [ 1] [ 4] [0200] +10:39:01 [ 2] [ 16] [6213545000011019] +10:39:01 [ 3] [ 6] [011000] +10:39:01 [ 4] [ 12] [000100000000] +10:39:01 [ 7] [ 10] [0320104648] +10:39:01 [ 11] [ 6] [079079] +10:39:01 [ 12] [ 6] [104648] +10:39:01 [ 13] [ 4] [0320] +10:39:01 [ 14] [ 4] [4912] +10:39:01 [ 15] [ 4] [0320] +10:39:01 [ 18] [ 4] [6011] +10:39:01 [ 22] [ 3] [900] +10:39:01 [ 25] [ 2] [02] +10:39:01 [ 28] [ 9] [D00002000] +10:39:01 [ 32] [ 6] [220699] +10:39:01 [ 35] [ 32] [6213545000011019=491212011101751] +10:39:01 [ 37] [ 12] [507900132952] +10:39:01 [ 41] [ 8] [03000100] +10:39:01 [ 42] [ 15] [APTRA ] +10:39:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:39:01 [ 49] [ 3] [418] +10:39:01 [ 52] [ 16] [0A92CCAA1623519E] +10:39:01 ============================================================================ +10:39:02 + + +waiting on router queue for slot.... +10:39:02 ============================================================================ +10:39:02 Slot Id : <216> +10:39:02 Transaction Type : REQUEST +10:39:02 Received From : +10:39:02 ============================================================================ +10:39:02 FNo. Len. Field Value +10:39:02 ============================================================================ +10:39:02 [ 1] [ 4] [0200] +10:39:02 [ 2] [ 16] [6213545000078430] +10:39:02 [ 3] [ 6] [011000] +10:39:02 [ 4] [ 12] [000002000000] +10:39:02 [ 7] [ 10] [0320033806] +10:39:02 [ 11] [ 6] [268160] +10:39:02 [ 12] [ 6] [103806] +10:39:02 [ 13] [ 4] [0320] +10:39:02 [ 14] [ 4] [4912] +10:39:02 Sending to : +10:39:02 ============================================================================ +10:39:02 [ 15] [ 4] [0320] +10:39:02 [ 18] [ 4] [6011] +10:39:02 [ 19] [ 3] [418] +10:39:02 [ 22] [ 3] [021] +10:39:02 [ 25] [ 2] [01] +10:39:02 [ 28] [ 9] [D00002000] +10:39:02 [ 32] [ 6] [180893] +10:39:02 [ 35] [ 32] [6213545000078430=491212017843834] +10:39:02 [ 37] [ 12] [507903268160] +10:39:02 [ 41] [ 8] [0112CPBR] +10:39:02 [ 42] [ 15] [999999 ] +10:39:02 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:39:02 [ 49] [ 3] [418] +10:39:02 [ 52] [ 16] [27F7145C26800828] +10:39:02 ============================================================================ +10:39:02 + + +waiting on router queue for slot.... +10:39:02 ============================================================================ +10:39:02 Slot Id : <220> +10:39:02 Transaction Type : REQUEST +10:39:02 Received From : +10:39:02 ============================================================================ +10:39:02 FNo. Len. Field Value +10:39:02 ============================================================================ +10:39:02 [ 1] [ 4] [0200] +10:39:02 [ 2] [ 16] [6213545000871487] +10:39:02 [ 3] [ 6] [010000] +10:39:02 [ 4] [ 12] [000014000000] +10:39:02 [ 7] [ 10] [0320103650] +10:39:02 [ 11] [ 6] [939145] +10:39:02 [ 12] [ 6] [103650] +10:39:02 [ 13] [ 4] [0320] +10:39:02 [ 15] [ 4] [0320] +10:39:02 [ 18] [ 4] [6011] +10:39:02 [ 19] [ 3] [418] +10:39:02 [ 22] [ 3] [021] +10:39:02 [ 25] [ 2] [01] +10:39:02 Sending to : +10:39:02 [ 28] [ 9] [D00002000] +10:39:02 ============================================================================ +10:39:02 [ 32] [ 6] [668899] +10:39:02 [ 35] [ 32] [6213545000871487=491212017148353] +10:39:02 [ 37] [ 12] [507900297331] +10:39:02 [ 41] [ 8] [03010006] +10:39:02 [ 42] [ 15] [APT ] +10:39:02 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:39:02 [ 49] [ 3] [418] +10:39:02 [ 52] [ 16] [3C33A82926E131F2] +10:39:02 ============================================================================ +10:39:02 + + +waiting on router queue for slot.... +10:39:02 Sending to : +10:39:02 ============================================================================ +10:39:02 ============================================================================ +10:39:02 Slot Id : <234> +10:39:02 Transaction Type : REQUEST +10:39:02 Received From : +10:39:02 ============================================================================ +10:39:02 FNo. Len. Field Value +10:39:02 ============================================================================ +10:39:02 [ 1] [ 4] [0200] +10:39:02 [ 2] [ 16] [6213545000011019] +10:39:02 [ 3] [ 6] [011000] +10:39:02 [ 4] [ 12] [000100000000] +10:39:02 [ 7] [ 10] [0320104648] +10:39:02 [ 11] [ 6] [079079] +10:39:02 [ 12] [ 6] [104648] +10:39:02 [ 13] [ 4] [0320] +10:39:02 [ 14] [ 4] [4912] +10:39:02 [ 15] [ 4] [0320] +10:39:02 [ 18] [ 4] [6011] +10:39:02 [ 22] [ 3] [900] +10:39:02 [ 25] [ 2] [02] +10:39:02 [ 28] [ 9] [D00002000] +10:39:02 [ 32] [ 6] [220699] +10:39:02 [ 35] [ 32] [6213545000011019=491212011101751] +10:39:02 [ 37] [ 12] [507900132952] +10:39:02 [ 41] [ 8] [03000100] +10:39:02 [ 42] [ 15] [APTRA ] +10:39:02 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:39:02 [ 49] [ 3] [418] +10:39:02 [ 52] [ 16] [2365FB4D64A2BDDF] +10:39:02 ============================================================================ +10:39:02 + + +waiting on router queue for slot.... +10:39:02 Sending to : <0> +10:39:02 ============================================================================ +10:39:02 ============================================================================ +10:39:02 Slot Id : <216> +10:39:02 Transaction Type : REQUEST +10:39:02 Received From : +10:39:02 ============================================================================ +10:39:02 FNo. Len. Field Value +10:39:02 ============================================================================ +10:39:02 [ 1] [ 4] [0200] +10:39:02 [ 2] [ 16] [6213545000078430] +10:39:02 [ 3] [ 6] [011000] +10:39:02 [ 4] [ 12] [000002000000] +10:39:02 [ 7] [ 10] [0320033806] +10:39:02 [ 11] [ 6] [268160] +10:39:02 [ 12] [ 6] [103806] +10:39:02 [ 13] [ 4] [0320] +10:39:02 [ 14] [ 4] [4912] +10:39:02 [ 15] [ 4] [0320] +10:39:02 [ 18] [ 4] [6011] +10:39:02 [ 19] [ 3] [418] +10:39:02 [ 22] [ 3] [021] +10:39:02 [ 25] [ 2] [01] +10:39:02 [ 28] [ 9] [D00002000] +10:39:02 [ 32] [ 6] [180893] +10:39:02 [ 35] [ 32] [6213545000078430=491212017843834] +10:39:02 [ 37] [ 12] [507903268160] +10:39:02 [ 41] [ 8] [0112CPBR] +10:39:02 [ 42] [ 15] [999999 ] +10:39:02 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:39:02 [ 49] [ 3] [418] +10:39:02 [ 52] [ 16] [751E9BE395ABA06F] +10:39:02 ============================================================================ +10:39:02 + + +waiting on router queue for slot.... +10:39:02 Sending to : <0> +10:39:02 ============================================================================ +10:39:02 ============================================================================ +10:39:02 Slot Id : <220> +10:39:02 Transaction Type : REQUEST +10:39:02 Received From : +10:39:02 ============================================================================ +10:39:02 FNo. Len. Field Value +10:39:02 ============================================================================ +10:39:02 [ 1] [ 4] [0200] +10:39:02 [ 2] [ 16] [6213545000871487] +10:39:02 [ 3] [ 6] [010000] +10:39:02 [ 4] [ 12] [000014000000] +10:39:02 [ 7] [ 10] [0320103650] +10:39:02 [ 11] [ 6] [939145] +10:39:02 [ 12] [ 6] [103650] +10:39:02 [ 13] [ 4] [0320] +10:39:02 [ 15] [ 4] [0320] +10:39:02 [ 18] [ 4] [6011] +10:39:02 [ 19] [ 3] [418] +10:39:02 [ 22] [ 3] [021] +10:39:02 [ 25] [ 2] [01] +10:39:02 [ 28] [ 9] [D00002000] +10:39:02 [ 32] [ 6] [668899] +10:39:02 [ 35] [ 32] [6213545000871487=491212017148353] +10:39:02 [ 37] [ 12] [507900297331] +10:39:02 [ 41] [ 8] [03010006] +10:39:02 [ 42] [ 15] [APT ] +10:39:02 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:39:02 [ 49] [ 3] [418] +10:39:02 [ 52] [ 16] [F6DC12809625F04D] +10:39:02 ============================================================================ +10:39:02 + + +waiting on router queue for slot.... +10:39:02 Sending to : <0> +10:39:02 ============================================================================ +10:39:02 ============================================================================ +10:39:02 Slot Id : <216> +10:39:02 Transaction Type : RESPONSE +10:39:02 Received From : +10:39:02 ============================================================================ +10:39:02 FNo. Len. Field Value +10:39:02 ============================================================================ +10:39:02 [ 1] [ 4] [0210] +10:39:02 [ 2] [ 16] [6213545000078430] +10:39:02 [ 3] [ 6] [011000] +10:39:02 [ 4] [ 12] [000002000000] +10:39:02 [ 7] [ 10] [0320033806] +10:39:02 [ 11] [ 6] [268160] +10:39:02 [ 12] [ 6] [103806] +10:39:02 [ 13] [ 4] [0320] +10:39:02 [ 15] [ 4] [0320] +10:39:02 [ 18] [ 4] [6011] +10:39:02 [ 19] [ 3] [418] +10:39:02 [ 32] [ 6] [180893] +10:39:02 [ 35] [ 32] [6213545000078430=491212017843834] +10:39:02 [ 37] [ 12] [507903268160] +10:39:02 [ 38] [ 6] [268160] +10:39:02 [ 39] [ 2] [51] +10:39:02 [ 41] [ 8] [0112CPBR] +10:39:02 [ 49] [ 3] [418] +10:39:02 [ 54] [ 40] [1001418C0000068109561002418C000006810956] +10:39:02 ============================================================================ +10:39:02 Sending to : +10:39:02 ============================================================================ +10:39:02 + + +waiting on router queue for slot.... +10:39:02 ============================================================================ +10:39:02 Slot Id : <234> +10:39:02 Transaction Type : RESPONSE +10:39:02 Received From : +10:39:02 ============================================================================ +10:39:02 FNo. Len. Field Value +10:39:02 ============================================================================ +10:39:02 [ 1] [ 4] [0210] +10:39:02 [ 2] [ 16] [6213545000011019] +10:39:02 [ 3] [ 6] [011000] +10:39:02 [ 4] [ 12] [000100000000] +10:39:02 [ 7] [ 10] [0320104648] +10:39:02 [ 11] [ 6] [079079] +10:39:02 [ 12] [ 6] [104648] +10:39:02 [ 13] [ 4] [0320] +10:39:02 [ 15] [ 4] [0320] +10:39:02 [ 18] [ 4] [6011] +10:39:02 [ 32] [ 6] [220699] +10:39:02 [ 35] [ 32] [6213545000011019=491212011101751] +10:39:02 [ 37] [ 12] [507900132952] +10:39:02 [ 38] [ 6] [935196] +10:39:02 [ 39] [ 2] [00] +10:39:02 [ 41] [ 8] [03000100] +10:39:02 [ 49] [ 3] [418] +10:39:02 [ 54] [ 40] [1001418C0000802187091002418C000080218709] +10:39:02 ============================================================================ +10:39:02 Sending to : +10:39:02 ============================================================================ +10:39:02 + + +waiting on router queue for slot.... +10:39:04 ============================================================================ +10:39:04 Slot Id : <216> +10:39:04 Transaction Type : RESPONSE +10:39:04 Received From : +10:39:04 ============================================================================ +10:39:04 FNo. Len. Field Value +10:39:04 ============================================================================ +10:39:04 [ 1] [ 4] [0210] +10:39:04 [ 2] [ 16] [6213545000078430] +10:39:04 [ 3] [ 6] [011000] +10:39:04 [ 4] [ 12] [000002000000] +10:39:04 [ 7] [ 10] [0320033806] +10:39:04 [ 11] [ 6] [268160] +10:39:04 [ 12] [ 6] [103806] +10:39:04 [ 13] [ 4] [0320] +10:39:04 [ 15] [ 4] [0320] +10:39:04 [ 18] [ 4] [6011] +10:39:04 [ 19] [ 3] [418] +10:39:04 [ 32] [ 6] [180893] +10:39:04 [ 35] [ 32] [6213545000078430=491212017843834] +10:39:04 [ 37] [ 12] [507903268160] +10:39:04 [ 38] [ 6] [268160] +10:39:04 [ 39] [ 2] [51] +10:39:04 [ 41] [ 8] [0112CPBR] +10:39:04 [ 49] [ 3] [418] +10:39:04 [ 54] [ 40] [1001418C0000068109561002418C000006810956] +10:39:04 ============================================================================ +10:39:04 Calculate Source COMM Id = 2 +10:39:04 ============================================================================ +10:39:04 + + +waiting on router queue for slot.... +10:39:10 ============================================================================ +10:39:10 Slot Id : <234> +10:39:10 Transaction Type : RESPONSE +10:39:10 Received From : +10:39:10 ============================================================================ +10:39:10 FNo. Len. Field Value +10:39:10 ============================================================================ +10:39:10 [ 1] [ 4] [0210] +10:39:10 [ 2] [ 16] [6213545000011019] +10:39:10 [ 3] [ 6] [011000] +10:39:10 [ 4] [ 12] [000100000000] +10:39:10 [ 7] [ 10] [0320104648] +10:39:10 [ 11] [ 6] [079079] +10:39:10 [ 12] [ 6] [104648] +10:39:10 [ 13] [ 4] [0320] +10:39:10 [ 15] [ 4] [0320] +10:39:10 [ 18] [ 4] [6011] +10:39:10 [ 32] [ 6] [220699] +10:39:10 [ 35] [ 32] [6213545000011019=491212011101751] +10:39:10 [ 37] [ 12] [507900132952] +10:39:10 [ 38] [ 6] [935196] +10:39:10 [ 39] [ 2] [00] +10:39:10 [ 41] [ 8] [03000100] +10:39:10 [ 49] [ 3] [418] +10:39:10 [ 54] [ 40] [1001418C0000802187091002418C000080218709] +10:39:10 ============================================================================ +10:39:10 Calculate Source COMM Id = 1 +10:39:10 ============================================================================ +10:39:10 + + +waiting on router queue for slot.... +10:39:14 ============================================================================ +10:39:14 Slot Id : <249> +10:39:14 Transaction Type : REQUEST +10:39:14 Received From : +10:39:14 ============================================================================ +10:39:14 FNo. Len. Field Value +10:39:14 ============================================================================ +10:39:14 [ 1] [ 4] [0800] +10:39:14 [ 2] [ 5] [02531] +10:39:14 [ 3] [ 6] [579108] +10:39:14 [ 7] [ 10] [0320033914] +10:39:14 [ 11] [ 6] [807030] +10:39:14 [ 15] [ 10] [0320033914] +10:39:14 [ 37] [ 11] [57910807030] +10:39:14 [ 70] [ 3] [001] +10:39:14 ============================================================================ +10:39:14 + + +waiting on router queue for slot.... +10:39:14 ============================================================================ +10:39:14 Slot Id : <249> +10:39:14 Transaction Type : RESPONSE +10:39:14 Received From : +10:39:14 ============================================================================ +10:39:14 FNo. Len. Field Value +10:39:14 ============================================================================ +10:39:14 [ 1] [ 4] [0810] +10:39:14 [ 7] [ 10] [0320033914] +10:39:14 [ 11] [ 6] [807030] +10:39:14 [ 15] [ 4] [0320] +10:39:14 [ 37] [ 12] [57910807030] +10:39:14 [ 39] [ 2] [00] +10:39:14 [ 70] [ 3] [001] +10:39:14 ============================================================================ +10:39:14 Sending to : +10:39:14 ============================================================================ +10:39:14 + + +waiting on router queue for slot.... +10:39:17 ============================================================================ +10:39:17 Slot Id : <253> +10:39:17 Transaction Type : REQUEST +10:39:17 Received From : +10:39:17 ============================================================================ +10:39:17 FNo. Len. Field Value +10:39:17 ============================================================================ +10:39:17 [ 1] [ 4] [0800] +10:39:17 [ 7] [ 10] [0320033825] +10:39:17 [ 11] [ 6] [155900] +10:39:17 [ 70] [ 3] [301] +10:39:17 ============================================================================ +10:39:17 + + +waiting on router queue for slot.... +10:39:17 Sending to : +10:39:17 ============================================================================ +10:39:17 ============================================================================ +10:39:17 Slot Id : <253> +10:39:17 Transaction Type : RESPONSE +10:39:17 Received From : +10:39:17 ============================================================================ +10:39:17 FNo. Len. Field Value +10:39:17 ============================================================================ +10:39:17 [ 1] [ 4] [0810] +10:39:17 [ 7] [ 10] [0320033825] +10:39:17 [ 11] [ 6] [155900] +10:39:17 [ 39] [ 2] [00] +10:39:17 [ 70] [ 3] [301] +10:39:17 ============================================================================ +10:39:17 Calculate Source COMM Id = 2 +10:39:17 ============================================================================ +10:39:17 + + +waiting on router queue for slot.... +10:39:28 ============================================================================ +10:39:28 Slot Id : <260> +10:39:28 Transaction Type : REQUEST +10:39:28 Received From : +10:39:28 ============================================================================ +10:39:28 FNo. Len. Field Value +10:39:28 ============================================================================ +10:39:28 [ 1] [ 4] [0800] +10:39:28 [ 7] [ 10] [0320033835] +10:39:28 [ 11] [ 6] [155901] +10:39:28 [ 70] [ 3] [301] +10:39:28 ============================================================================ +10:39:28 + + +waiting on router queue for slot.... +10:39:28 Sending to : +10:39:28 ============================================================================ +10:39:28 ============================================================================ +10:39:28 Slot Id : <260> +10:39:28 Transaction Type : RESPONSE +10:39:28 Received From : +10:39:28 ============================================================================ +10:39:28 FNo. Len. Field Value +10:39:28 ============================================================================ +10:39:28 [ 1] [ 4] [0810] +10:39:28 [ 7] [ 10] [0320033835] +10:39:28 [ 11] [ 6] [155901] +10:39:28 [ 39] [ 2] [00] +10:39:28 [ 70] [ 3] [301] +10:39:28 ============================================================================ +10:39:28 Calculate Source COMM Id = 2 +10:39:28 ============================================================================ +10:39:28 + + +waiting on router queue for slot.... +10:39:39 ============================================================================ +10:39:39 Slot Id : <210> +10:39:39 Transaction Type : REQUEST +10:39:39 Received From : +10:39:39 ============================================================================ +10:39:39 FNo. Len. Field Value +10:39:39 ============================================================================ +10:39:39 [ 1] [ 4] [0800] +10:39:39 [ 7] [ 10] [0320033846] +10:39:39 [ 11] [ 6] [155902] +10:39:39 [ 70] [ 3] [301] +10:39:39 ============================================================================ +10:39:39 + + +waiting on router queue for slot.... +10:39:39 Sending to : +10:39:39 ============================================================================ +10:39:39 ============================================================================ +10:39:39 Slot Id : <210> +10:39:39 Transaction Type : RESPONSE +10:39:39 Received From : +10:39:39 ============================================================================ +10:39:39 FNo. Len. Field Value +10:39:39 ============================================================================ +10:39:39 [ 1] [ 4] [0810] +10:39:39 [ 7] [ 10] [0320033846] +10:39:39 [ 11] [ 6] [155902] +10:39:39 [ 39] [ 2] [00] +10:39:39 [ 70] [ 3] [301] +10:39:39 ============================================================================ +10:39:39 Calculate Source COMM Id = 2 +10:39:39 ============================================================================ +10:39:39 + + +waiting on router queue for slot.... +10:39:40 ============================================================================ +10:39:40 Slot Id : <261> +10:39:40 Transaction Type : REQUEST +10:39:40 Received From : +10:39:40 ============================================================================ +10:39:40 FNo. Len. Field Value +10:39:40 ============================================================================ +10:39:40 [ 1] [ 4] [0200] +10:39:40 [ 2] [ 16] [1808931100011939] +10:39:40 [ 3] [ 6] [301000] +10:39:40 [ 4] [ 12] [000000000000] +10:39:40 [ 7] [ 10] [0320103936] +10:39:40 [ 11] [ 6] [717452] +10:39:40 [ 12] [ 6] [103936] +10:39:40 [ 13] [ 4] [0320] +10:39:40 [ 15] [ 4] [0320] +10:39:40 [ 18] [ 4] [6011] +10:39:40 [ 22] [ 3] [900] +10:39:40 [ 25] [ 2] [02] +10:39:40 [ 28] [ 9] [D00000000] +10:39:40 [ 32] [ 6] [621354] +10:39:40 [ 35] [ 27] [1808931100011939=1803500987] +10:39:40 [ 37] [ 12] [507904341412] +10:39:40 [ 41] [ 8] [03003300] +10:39:40 [ 42] [ 15] [NATIVE ] +10:39:40 [ 43] [ 40] [SVN University KaisonephomvLAO] +10:39:40 [ 49] [ 3] [418] +10:39:40 [ 52] [ 16] [4AEC49226CB862CB] +10:39:40 ============================================================================ +10:39:40 + + +waiting on router queue for slot.... +10:39:40 Sending to : +10:39:40 ============================================================================ +10:39:40 Sending to : +10:39:40 ============================================================================ +10:39:41 ============================================================================ +10:39:41 Slot Id : <261> +10:39:41 Transaction Type : REQUEST +10:39:41 Received From : +10:39:41 ============================================================================ +10:39:41 FNo. Len. Field Value +10:39:41 ============================================================================ +10:39:41 [ 1] [ 4] [0200] +10:39:41 [ 2] [ 16] [1808931100011939] +10:39:41 [ 3] [ 6] [301000] +10:39:41 [ 4] [ 12] [000000000000] +10:39:41 [ 7] [ 10] [0320103936] +10:39:41 [ 11] [ 6] [717452] +10:39:41 [ 12] [ 6] [103936] +10:39:41 [ 13] [ 4] [0320] +10:39:41 [ 15] [ 4] [0320] +10:39:41 [ 18] [ 4] [6011] +10:39:41 [ 22] [ 3] [900] +10:39:41 [ 25] [ 2] [02] +10:39:41 [ 28] [ 9] [D00000000] +10:39:41 [ 32] [ 6] [621354] +10:39:41 [ 35] [ 27] [1808931100011939=1803500987] +10:39:41 [ 37] [ 12] [507904341412] +10:39:41 [ 41] [ 8] [03003300] +10:39:41 [ 42] [ 15] [NATIVE ] +10:39:41 [ 43] [ 40] [SVN University KaisonephomvLAO] +10:39:41 [ 49] [ 3] [418] +10:39:41 [ 52] [ 16] [4AEC49226CB862CB] +10:39:41 ============================================================================ +10:39:41 + + +waiting on router queue for slot.... +10:39:41 Sending to : +10:39:41 ============================================================================ +10:39:41 ============================================================================ +10:39:41 Slot Id : <261> +10:39:41 Transaction Type : REQUEST +10:39:41 Received From : +10:39:41 ============================================================================ +10:39:41 FNo. Len. Field Value +10:39:41 ============================================================================ +10:39:41 [ 1] [ 4] [0200] +10:39:41 [ 2] [ 16] [1808931100011939] +10:39:41 [ 3] [ 6] [301000] +10:39:41 [ 4] [ 12] [000000000000] +10:39:41 [ 7] [ 10] [0320103936] +10:39:41 [ 11] [ 6] [717452] +10:39:41 [ 12] [ 6] [103936] +10:39:41 [ 13] [ 4] [0320] +10:39:41 [ 15] [ 4] [0320] +10:39:41 [ 18] [ 4] [6011] +10:39:41 [ 22] [ 3] [900] +10:39:41 [ 25] [ 2] [02] +10:39:41 [ 28] [ 9] [D00000000] +10:39:41 [ 32] [ 6] [621354] +10:39:41 [ 35] [ 27] [1808931100011939=1803500987] +10:39:41 [ 37] [ 12] [507904341412] +10:39:41 [ 41] [ 8] [03003300] +10:39:41 [ 42] [ 15] [NATIVE ] +10:39:41 [ 43] [ 40] [SVN University KaisonephomvLAO] +10:39:41 [ 49] [ 3] [418] +10:39:41 [ 52] [ 16] [19CBD773E00511A6] +10:39:41 ============================================================================ +10:39:41 + + +waiting on router queue for slot.... +10:39:41 Sending to : <2> +10:39:41 ============================================================================ +10:39:41 ============================================================================ +10:39:41 Slot Id : <225> +10:39:41 Transaction Type : REQUEST +10:39:41 Received From : +10:39:41 ============================================================================ +10:39:41 FNo. Len. Field Value +10:39:41 ============================================================================ +10:39:41 [ 1] [ 4] [0200] +10:39:41 [ 2] [ 16] [1808931300001722] +10:39:41 [ 3] [ 6] [011000] +10:39:41 [ 4] [ 12] [000050000000] +10:39:41 [ 7] [ 10] [0320103937] +10:39:41 [ 11] [ 6] [717457] +10:39:41 [ 12] [ 6] [103937] +10:39:41 [ 13] [ 4] [0320] +10:39:41 [ 15] [ 4] [0320] +10:39:41 [ 18] [ 4] [6011] +10:39:41 [ 22] [ 3] [900] +10:39:41 [ 25] [ 2] [02] +10:39:41 [ 28] [ 9] [D00002000] +10:39:41 [ 32] [ 6] [621354] +10:39:41 [ 35] [ 27] [1808931300001722=1803500889] +10:39:41 [ 37] [ 12] [507903478202] +10:39:41 [ 41] [ 8] [06002000] +10:39:41 [ 42] [ 15] [NATIVE ] +10:39:41 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +10:39:41 [ 49] [ 3] [418] +10:39:41 [ 52] [ 16] [C6E7AF81E2A000FF] +10:39:41 ============================================================================ +10:39:41 + + +waiting on router queue for slot.... +10:39:41 Sending to : +10:39:41 ============================================================================ +10:39:41 Sending to : +10:39:41 ============================================================================ +10:39:42 ============================================================================ +10:39:42 Slot Id : <225> +10:39:42 Transaction Type : REQUEST +10:39:42 Received From : +10:39:42 ============================================================================ +10:39:42 FNo. Len. Field Value +10:39:42 ============================================================================ +10:39:42 [ 1] [ 4] [0200] +10:39:42 [ 2] [ 16] [1808931300001722] +10:39:42 [ 3] [ 6] [011000] +10:39:42 [ 4] [ 12] [000050000000] +10:39:42 [ 7] [ 10] [0320103937] +10:39:42 [ 11] [ 6] [717457] +10:39:42 [ 12] [ 6] [103937] +10:39:42 [ 13] [ 4] [0320] +10:39:42 [ 15] [ 4] [0320] +10:39:42 [ 18] [ 4] [6011] +10:39:42 [ 22] [ 3] [900] +10:39:42 [ 25] [ 2] [02] +10:39:42 [ 28] [ 9] [D00002000] +10:39:42 [ 32] [ 6] [621354] +10:39:42 [ 35] [ 27] [1808931300001722=1803500889] +10:39:42 [ 37] [ 12] [507903478202] +10:39:42 [ 41] [ 8] [06002000] +10:39:42 [ 42] [ 15] [NATIVE ] +10:39:42 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +10:39:42 [ 49] [ 3] [418] +10:39:42 [ 52] [ 16] [C6E7AF81E2A000FF] +10:39:42 ============================================================================ +10:39:42 + + +waiting on router queue for slot.... +10:39:42 Sending to : +10:39:42 ============================================================================ +10:39:42 ============================================================================ +10:39:42 Slot Id : <225> +10:39:42 Transaction Type : REQUEST +10:39:42 Received From : +10:39:42 ============================================================================ +10:39:42 FNo. Len. Field Value +10:39:42 ============================================================================ +10:39:42 [ 1] [ 4] [0200] +10:39:42 [ 2] [ 16] [1808931300001722] +10:39:42 [ 3] [ 6] [011000] +10:39:42 [ 4] [ 12] [000050000000] +10:39:42 [ 7] [ 10] [0320103937] +10:39:42 [ 11] [ 6] [717457] +10:39:42 [ 12] [ 6] [103937] +10:39:42 [ 13] [ 4] [0320] +10:39:42 [ 15] [ 4] [0320] +10:39:42 [ 18] [ 4] [6011] +10:39:42 [ 22] [ 3] [900] +10:39:42 [ 25] [ 2] [02] +10:39:42 [ 28] [ 9] [D00002000] +10:39:42 [ 32] [ 6] [621354] +10:39:42 [ 35] [ 27] [1808931300001722=1803500889] +10:39:42 [ 37] [ 12] [507903478202] +10:39:42 [ 41] [ 8] [06002000] +10:39:42 [ 42] [ 15] [NATIVE ] +10:39:42 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +10:39:42 [ 49] [ 3] [418] +10:39:42 [ 52] [ 16] [C68E8B85399E6460] +10:39:42 ============================================================================ +10:39:42 + + +waiting on router queue for slot.... +10:39:42 Sending to : <2> +10:39:42 ============================================================================ +10:39:46 ============================================================================ +10:39:46 Slot Id : <261> +10:39:46 Transaction Type : RESPONSE +10:39:46 Received From : +10:39:46 ============================================================================ +10:39:46 FNo. Len. Field Value +10:39:46 ============================================================================ +10:39:46 [ 1] [ 4] [0210] +10:39:46 [ 2] [ 16] [1808931100011939] +10:39:46 [ 3] [ 6] [301000] +10:39:46 [ 7] [ 10] [0320103936] +10:39:46 [ 11] [ 6] [717452] +10:39:46 [ 12] [ 6] [103936] +10:39:46 [ 13] [ 4] [0320] +10:39:46 [ 14] [ 4] [1803] +10:39:46 [ 19] [ 3] [418] +10:39:46 [ 32] [ 6] [621354] +10:39:46 [ 37] [ 12] [507904341412] +10:39:46 [ 38] [ 6] [717452] +10:39:46 [ 39] [ 2] [00] +10:39:46 [ 41] [ 8] [03003300] +10:39:46 [ 49] [ 3] [418] +10:39:46 [ 52] [ 16] [19CBD773E00511A6] +10:39:46 [ 54] [ 20] [1002418C000048300000] +10:39:46 ============================================================================ +10:39:46 Sending to : +10:39:46 ============================================================================ +10:39:46 + + +waiting on router queue for slot.... +10:39:46 ============================================================================ +10:39:46 Slot Id : <220> +10:39:46 10:39:46 Received From : <> +10:39:46 ============================================================================ +10:39:46 FNo. Len. Field Value +10:39:46 ============================================================================ +10:39:46 Sending to : +10:39:46 ============================================================================ +10:39:46 + + +waiting on router queue for slot.... +10:39:47 ============================================================================ +10:39:47 Slot Id : <225> +10:39:47 Transaction Type : RESPONSE +10:39:47 Received From : +10:39:47 ============================================================================ +10:39:47 FNo. Len. Field Value +10:39:47 ============================================================================ +10:39:47 [ 1] [ 4] [0210] +10:39:47 [ 2] [ 16] [1808931300001722] +10:39:47 [ 3] [ 6] [011000] +10:39:47 [ 4] [ 12] [000050000000] +10:39:47 [ 6] [ 12] [000050000000] +10:39:47 [ 7] [ 10] [0320103937] +10:39:47 [ 11] [ 6] [717457] +10:39:47 [ 12] [ 6] [103937] +10:39:47 [ 13] [ 4] [0320] +10:39:47 [ 18] [ 4] [6011] +10:39:47 [ 19] [ 3] [418] +10:39:47 [ 22] [ 3] [021] +10:39:47 [ 32] [ 6] [621354] +10:39:47 [ 35] [ 27] [1808931300001722=1803500889] +10:39:47 [ 37] [ 12] [507903478202] +10:39:47 [ 38] [ 6] [717457] +10:39:47 [ 39] [ 2] [00] +10:39:47 [ 41] [ 8] [06002000] +10:39:47 [ 49] [ 3] [418] +10:39:47 [ 52] [ 16] [C68E8B85399E6460] +10:39:47 [ 54] [ 20] [1001418C020011968700] +10:39:47 ============================================================================ +10:39:47 Sending to : +10:39:47 ============================================================================ +10:39:47 + + +waiting on router queue for slot.... +10:39:48 ============================================================================ +10:39:48 Slot Id : <261> +10:39:48 Transaction Type : RESPONSE +10:39:48 Received From : +10:39:48 ============================================================================ +10:39:48 FNo. Len. Field Value +10:39:48 ============================================================================ +10:39:48 [ 1] [ 4] [0210] +10:39:48 [ 2] [ 16] [1808931100011939] +10:39:48 [ 3] [ 6] [301000] +10:39:48 [ 7] [ 10] [0320103936] +10:39:48 [ 11] [ 6] [717452] +10:39:48 [ 12] [ 6] [103936] +10:39:48 [ 13] [ 4] [0320] +10:39:48 [ 14] [ 4] [1803] +10:39:48 [ 19] [ 3] [418] +10:39:48 [ 32] [ 6] [621354] +10:39:48 [ 37] [ 12] [507904341412] +10:39:48 [ 38] [ 6] [717452] +10:39:48 [ 39] [ 2] [00] +10:39:48 [ 41] [ 8] [03003300] +10:39:48 [ 49] [ 3] [418] +10:39:48 [ 52] [ 16] [19CBD773E00511A6] +10:39:48 [ 54] [ 20] [1002418C000048300000] +10:39:48 ============================================================================ +10:39:48 Calculate Source COMM Id = 0 +10:39:48 ============================================================================ +10:39:48 + + +waiting on router queue for slot.... +10:39:49 ============================================================================ +10:39:49 Slot Id : <225> +10:39:49 Transaction Type : RESPONSE +10:39:49 Received From : +10:39:49 ============================================================================ +10:39:49 FNo. Len. Field Value +10:39:49 ============================================================================ +10:39:49 [ 1] [ 4] [0210] +10:39:49 [ 2] [ 16] [1808931300001722] +10:39:49 [ 3] [ 6] [011000] +10:39:49 [ 4] [ 12] [000050000000] +10:39:49 [ 6] [ 12] [000050000000] +10:39:49 [ 7] [ 10] [0320103937] +10:39:49 [ 11] [ 6] [717457] +10:39:49 [ 12] [ 6] [103937] +10:39:49 [ 13] [ 4] [0320] +10:39:49 [ 18] [ 4] [6011] +10:39:49 [ 19] [ 3] [418] +10:39:49 [ 22] [ 3] [021] +10:39:49 [ 32] [ 6] [621354] +10:39:49 [ 35] [ 27] [1808931300001722=1803500889] +10:39:49 [ 37] [ 12] [507903478202] +10:39:49 [ 38] [ 6] [717457] +10:39:49 [ 39] [ 2] [00] +10:39:49 [ 41] [ 8] [06002000] +10:39:49 [ 49] [ 3] [418] +10:39:49 [ 52] [ 16] [C68E8B85399E6460] +10:39:49 [ 54] [ 20] [1001418C020011968700] +10:39:49 ============================================================================ +10:39:49 Calculate Source COMM Id = 0 +10:39:49 ============================================================================ +10:39:49 + + +waiting on router queue for slot.... +10:39:55 ============================================================================ +10:39:55 Slot Id : <259> +10:39:55 Transaction Type : REQUEST +10:39:55 Received From : +10:39:55 ============================================================================ +10:39:55 FNo. Len. Field Value +10:39:55 ============================================================================ +10:39:55 [ 1] [ 4] [0800] +10:39:55 [ 7] [ 10] [0320034742] +10:39:55 [ 11] [ 6] [052661] +10:39:55 [ 37] [ 12] [57910052661] +10:39:55 [ 70] [ 3] [301] +10:39:55 ============================================================================ +10:39:55 + + +waiting on router queue for slot.... +10:39:55 Sending to : +10:39:55 ============================================================================ +10:39:55 ============================================================================ +10:39:55 Slot Id : <259> +10:39:55 Transaction Type : RESPONSE +10:39:55 Received From : +10:39:55 ============================================================================ +10:39:55 FNo. Len. Field Value +10:39:55 ============================================================================ +10:39:55 [ 1] [ 4] [0810] +10:39:55 [ 7] [ 10] [0320034742] +10:39:55 [ 11] [ 6] [052661] +10:39:55 [ 37] [ 12] [579100526610] +10:39:55 [ 39] [ 2] [00] +10:39:55 [ 70] [ 3] [810] +10:39:55 ============================================================================ +10:39:55 Calculate Source COMM Id = 1 +10:39:55 ============================================================================ +10:39:55 + + +waiting on router queue for slot.... +10:39:57 ============================================================================ +10:39:57 Slot Id : <263> +10:39:57 Transaction Type : REQUEST +10:39:57 Received From : +10:39:57 ============================================================================ +10:39:57 FNo. Len. Field Value +10:39:57 ============================================================================ +10:39:57 [ 1] [ 4] [0800] +10:39:57 [ 7] [ 10] [0320033905] +10:39:57 [ 11] [ 6] [155903] +10:39:57 [ 70] [ 3] [301] +10:39:57 ============================================================================ +10:39:57 + + +waiting on router queue for slot.... +10:39:57 Sending to : +10:39:57 ============================================================================ +10:39:57 ============================================================================ +10:39:57 Slot Id : <263> +10:39:57 Transaction Type : RESPONSE +10:39:57 Received From : +10:39:57 ============================================================================ +10:39:57 FNo. Len. Field Value +10:39:57 ============================================================================ +10:39:57 [ 1] [ 4] [0810] +10:39:57 [ 7] [ 10] [0320033905] +10:39:57 [ 11] [ 6] [155903] +10:39:57 [ 39] [ 2] [00] +10:39:57 [ 70] [ 3] [301] +10:39:57 ============================================================================ +10:39:57 Calculate Source COMM Id = 2 +10:39:57 ============================================================================ +10:39:57 + + +waiting on router queue for slot.... +10:40:03 ============================================================================ +10:40:03 Slot Id : <199> +10:40:03 Transaction Type : REQUEST +10:40:03 Received From : +10:40:03 ============================================================================ +10:40:03 FNo. Len. Field Value +10:40:03 ============================================================================ +10:40:03 [ 1] [ 4] [0200] +10:40:03 [ 2] [ 16] [6213546000007890] +10:40:03 [ 3] [ 6] [012000] +10:40:03 [ 4] [ 12] [000010000000] +10:40:03 [ 7] [ 10] [0320104751] +10:40:03 [ 11] [ 6] [254849] +10:40:03 [ 12] [ 6] [104751] +10:40:03 [ 13] [ 4] [0320] +10:40:03 [ 14] [ 4] [4912] +10:40:03 [ 15] [ 4] [0320] +10:40:03 [ 18] [ 4] [6011] +10:40:03 [ 22] [ 3] [900] +10:40:03 [ 25] [ 2] [02] +10:40:03 [ 28] [ 9] [D00002000] +10:40:03 [ 32] [ 6] [220699] +10:40:03 [ 35] [ 32] [6213546000007890=491212010789621] +10:40:03 [ 37] [ 12] [507900094418] +10:40:03 [ 41] [ 8] [01000900] +10:40:03 [ 42] [ 15] [APTRA ] +10:40:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:40:03 [ 49] [ 3] [418] +10:40:03 [ 52] [ 16] [275311F92697460B] +10:40:03 ============================================================================ +10:40:03 + + +waiting on router queue for slot.... +10:40:03 Sending to : +10:40:03 ============================================================================ +10:40:03 Sending to : +10:40:03 ============================================================================ +10:40:07 ============================================================================ +10:40:07 Slot Id : <199> +10:40:07 Transaction Type : REQUEST +10:40:07 Received From : +10:40:07 ============================================================================ +10:40:07 FNo. Len. Field Value +10:40:07 ============================================================================ +10:40:07 [ 1] [ 4] [0200] +10:40:07 [ 2] [ 16] [6213546000007890] +10:40:07 [ 3] [ 6] [012000] +10:40:07 [ 4] [ 12] [000010000000] +10:40:07 [ 7] [ 10] [0320104751] +10:40:07 [ 11] [ 6] [254849] +10:40:07 [ 12] [ 6] [104751] +10:40:07 [ 13] [ 4] [0320] +10:40:07 [ 14] [ 4] [4912] +10:40:07 [ 15] [ 4] [0320] +10:40:07 [ 18] [ 4] [6011] +10:40:07 [ 22] [ 3] [900] +10:40:07 [ 25] [ 2] [02] +10:40:07 [ 28] [ 9] [D00002000] +10:40:07 [ 32] [ 6] [220699] +10:40:07 [ 35] [ 32] [6213546000007890=491212010789621] +10:40:07 [ 37] [ 12] [507900094418] +10:40:07 [ 41] [ 8] [01000900] +10:40:07 [ 42] [ 15] [APTRA ] +10:40:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:40:07 [ 49] [ 3] [418] +10:40:07 [ 52] [ 16] [275311F92697460B] +10:40:07 ============================================================================ +10:40:07 + + +waiting on router queue for slot.... +10:40:07 Sending to : +10:40:07 ============================================================================ +10:40:07 ============================================================================ +10:40:07 Slot Id : <199> +10:40:07 Transaction Type : REQUEST +10:40:07 Received From : +10:40:07 ============================================================================ +10:40:07 FNo. Len. Field Value +10:40:07 ============================================================================ +10:40:07 [ 1] [ 4] [0200] +10:40:07 [ 2] [ 16] [6213546000007890] +10:40:07 [ 3] [ 6] [012000] +10:40:07 [ 4] [ 12] [000010000000] +10:40:07 [ 7] [ 10] [0320104751] +10:40:07 [ 11] [ 6] [254849] +10:40:07 [ 12] [ 6] [104751] +10:40:07 [ 13] [ 4] [0320] +10:40:07 [ 14] [ 4] [4912] +10:40:07 [ 15] [ 4] [0320] +10:40:07 [ 18] [ 4] [6011] +10:40:07 [ 22] [ 3] [900] +10:40:07 [ 25] [ 2] [02] +10:40:07 [ 28] [ 9] [D00002000] +10:40:07 [ 32] [ 6] [220699] +10:40:07 [ 35] [ 32] [6213546000007890=491212010789621] +10:40:07 [ 37] [ 12] [507900094418] +10:40:07 [ 41] [ 8] [01000900] +10:40:07 [ 42] [ 15] [APTRA ] +10:40:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:40:07 [ 49] [ 3] [418] +10:40:07 [ 52] [ 16] [996DAF3C90712110] +10:40:07 ============================================================================ +10:40:07 + + +waiting on router queue for slot.... +10:40:07 Sending to : <0> +10:40:07 ============================================================================ +10:40:07 ============================================================================ +10:40:07 Slot Id : <199> +10:40:07 Transaction Type : RESPONSE +10:40:07 Received From : +10:40:07 ============================================================================ +10:40:07 FNo. Len. Field Value +10:40:07 ============================================================================ +10:40:07 [ 1] [ 4] [0210] +10:40:07 [ 2] [ 16] [6213546000007890] +10:40:07 [ 3] [ 6] [012000] +10:40:07 [ 4] [ 12] [000010000000] +10:40:07 [ 7] [ 10] [0320104751] +10:40:07 [ 11] [ 6] [254849] +10:40:07 [ 12] [ 6] [104751] +10:40:07 [ 13] [ 4] [0320] +10:40:07 [ 15] [ 4] [0320] +10:40:07 [ 18] [ 4] [6011] +10:40:07 [ 32] [ 6] [220699] +10:40:07 [ 35] [ 32] [6213546000007890=491212010789621] +10:40:07 [ 37] [ 12] [507900094418] +10:40:07 [ 38] [ 6] [254849] +10:40:07 [ 39] [ 2] [51] +10:40:07 [ 41] [ 8] [01000900] +10:40:07 [ 49] [ 3] [418] +10:40:07 [ 54] [ 40] [2001418C0000076155852002418C000007615585] +10:40:07 ============================================================================ +10:40:07 Sending to : +10:40:07 ============================================================================ +10:40:07 + + +waiting on router queue for slot.... +10:40:08 ============================================================================ +10:40:08 Slot Id : <270> +10:40:08 Transaction Type : REQUEST +10:40:08 Received From : +10:40:08 ============================================================================ +10:40:08 FNo. Len. Field Value +10:40:08 ============================================================================ +10:40:08 [ 1] [ 4] [0800] +10:40:08 [ 7] [ 10] [0320033915] +10:40:08 [ 11] [ 6] [155904] +10:40:08 [ 70] [ 3] [301] +10:40:08 ============================================================================ +10:40:08 + + +waiting on router queue for slot.... +10:40:08 Sending to : +10:40:08 ============================================================================ +10:40:08 ============================================================================ +10:40:08 Slot Id : <270> +10:40:08 Transaction Type : RESPONSE +10:40:08 Received From : +10:40:08 ============================================================================ +10:40:08 FNo. Len. Field Value +10:40:08 ============================================================================ +10:40:08 [ 1] [ 4] [0810] +10:40:08 [ 7] [ 10] [0320033915] +10:40:08 [ 11] [ 6] [155904] +10:40:08 [ 39] [ 2] [00] +10:40:08 [ 70] [ 3] [301] +10:40:08 ============================================================================ +10:40:08 Calculate Source COMM Id = 2 +10:40:08 ============================================================================ +10:40:08 + + +waiting on router queue for slot.... +10:40:09 ============================================================================ +10:40:09 Slot Id : <199> +10:40:09 Transaction Type : RESPONSE +10:40:09 Received From : +10:40:09 ============================================================================ +10:40:09 FNo. Len. Field Value +10:40:09 ============================================================================ +10:40:09 [ 1] [ 4] [0210] +10:40:09 [ 2] [ 16] [6213546000007890] +10:40:09 [ 3] [ 6] [012000] +10:40:09 [ 4] [ 12] [000010000000] +10:40:09 [ 7] [ 10] [0320104751] +10:40:09 [ 11] [ 6] [254849] +10:40:09 [ 12] [ 6] [104751] +10:40:09 [ 13] [ 4] [0320] +10:40:09 [ 15] [ 4] [0320] +10:40:09 [ 18] [ 4] [6011] +10:40:09 [ 32] [ 6] [220699] +10:40:09 [ 35] [ 32] [6213546000007890=491212010789621] +10:40:09 [ 37] [ 12] [507900094418] +10:40:09 [ 38] [ 6] [254849] +10:40:09 [ 39] [ 2] [51] +10:40:09 [ 41] [ 8] [01000900] +10:40:09 [ 49] [ 3] [418] +10:40:09 [ 54] [ 40] [2001418C0000076155852002418C000007615585] +10:40:09 ============================================================================ +10:40:09 Calculate Source COMM Id = 1 +10:40:09 ============================================================================ +10:40:09 + + +waiting on router queue for slot.... +10:40:16 ============================================================================ +10:40:16 Slot Id : <269> +10:40:16 Transaction Type : REQUEST +10:40:16 Received From : +10:40:16 ============================================================================ +10:40:16 FNo. Len. Field Value +10:40:16 ============================================================================ +10:40:16 [ 1] [ 4] [0800] +10:40:16 [ 2] [ 5] [02531] +10:40:16 [ 3] [ 6] [579108] +10:40:16 [ 7] [ 10] [0320034016] +10:40:16 [ 11] [ 6] [807031] +10:40:16 [ 15] [ 10] [0320034016] +10:40:16 [ 37] [ 11] [57910807031] +10:40:16 [ 70] [ 3] [001] +10:40:16 ============================================================================ +10:40:16 + + +waiting on router queue for slot.... +10:40:16 ============================================================================ +10:40:16 Slot Id : <269> +10:40:16 Transaction Type : RESPONSE +10:40:16 Received From : +10:40:16 ============================================================================ +10:40:16 FNo. Len. Field Value +10:40:16 ============================================================================ +10:40:16 [ 1] [ 4] [0810] +10:40:16 [ 7] [ 10] [0320034016] +10:40:16 [ 11] [ 6] [807031] +10:40:16 [ 15] [ 4] [0320] +10:40:16 [ 37] [ 12] [57910807031] +10:40:16 [ 39] [ 2] [00] +10:40:16 [ 70] [ 3] [001] +10:40:16 ============================================================================ +10:40:16 Sending to : +10:40:16 ============================================================================ +10:40:16 + + +waiting on router queue for slot.... +10:40:19 ============================================================================ +10:40:19 Slot Id : <240> +10:40:19 Transaction Type : REQUEST +10:40:19 Received From : +10:40:19 ============================================================================ +10:40:19 FNo. Len. Field Value +10:40:19 ============================================================================ +10:40:19 [ 1] [ 4] [0800] +10:40:19 [ 7] [ 10] [0320033927] +10:40:19 [ 11] [ 6] [155905] +10:40:19 [ 70] [ 3] [301] +10:40:19 ============================================================================ +10:40:19 + + +waiting on router queue for slot.... +10:40:19 Sending to : +10:40:19 ============================================================================ +10:40:19 ============================================================================ +10:40:19 Slot Id : <240> +10:40:19 Transaction Type : RESPONSE +10:40:19 Received From : +10:40:19 ============================================================================ +10:40:19 FNo. Len. Field Value +10:40:19 ============================================================================ +10:40:19 [ 1] [ 4] [0810] +10:40:19 [ 7] [ 10] [0320033927] +10:40:19 [ 11] [ 6] [155905] +10:40:19 [ 39] [ 2] [00] +10:40:19 [ 70] [ 3] [301] +10:40:19 ============================================================================ +10:40:19 Calculate Source COMM Id = 2 +10:40:19 ============================================================================ +10:40:19 + + +waiting on router queue for slot.... +10:40:27 ============================================================================ +10:40:27 Slot Id : <228> +10:40:27 Transaction Type : REQUEST +10:40:27 Received From : +10:40:27 ============================================================================ +10:40:27 FNo. Len. Field Value +10:40:27 ============================================================================ +10:40:27 [ 1] [ 4] [0200] +10:40:27 [ 2] [ 16] [6213543000224856] +10:40:27 [ 3] [ 6] [301000] +10:40:27 [ 4] [ 12] [000000000000] +10:40:27 [ 7] [ 10] [0320103818] +10:40:27 [ 11] [ 6] [939219] +10:40:27 [ 12] [ 6] [103818] +10:40:27 [ 13] [ 4] [0320] +10:40:27 [ 15] [ 4] [0320] +10:40:27 [ 18] [ 4] [6011] +10:40:27 [ 19] [ 3] [418] +10:40:27 [ 22] [ 3] [021] +10:40:27 [ 25] [ 2] [01] +10:40:27 [ 28] [ 9] [D00000000] +10:40:27 [ 32] [ 6] [668899] +10:40:27 [ 35] [ 32] [6213543000224856=491212012485158] +10:40:27 [ 37] [ 12] [507900513185] +10:40:27 [ 41] [ 8] [03012001] +10:40:27 [ 42] [ 15] [APT ] +10:40:27 [ 43] [ 40] [ LAK20 BR OFFICE LAK20 ] +10:40:27 [ 49] [ 3] [418] +10:40:27 [ 52] [ 16] [172AF0CBB7A0793B] +10:40:27 ============================================================================ +10:40:27 + + +waiting on router queue for slot.... +10:40:27 Sending to : +10:40:27 ============================================================================ +10:40:27 Sending to : +10:40:27 ============================================================================ +10:40:27 ============================================================================ +10:40:27 Slot Id : <228> +10:40:27 Transaction Type : REQUEST +10:40:27 Received From : +10:40:27 ============================================================================ +10:40:27 FNo. Len. Field Value +10:40:27 ============================================================================ +10:40:27 [ 1] [ 4] [0200] +10:40:27 [ 2] [ 16] [6213543000224856] +10:40:27 [ 3] [ 6] [301000] +10:40:27 [ 4] [ 12] [000000000000] +10:40:27 [ 7] [ 10] [0320103818] +10:40:27 [ 11] [ 6] [939219] +10:40:27 [ 12] [ 6] [103818] +10:40:27 [ 13] [ 4] [0320] +10:40:27 [ 15] [ 4] [0320] +10:40:27 [ 18] [ 4] [6011] +10:40:27 [ 19] [ 3] [418] +10:40:27 [ 22] [ 3] [021] +10:40:27 [ 25] [ 2] [01] +10:40:27 [ 28] [ 9] [D00000000] +10:40:27 [ 32] [ 6] [668899] +10:40:27 [ 35] [ 32] [6213543000224856=491212012485158] +10:40:27 [ 37] [ 12] [507900513185] +10:40:27 [ 41] [ 8] [03012001] +10:40:27 [ 42] [ 15] [APT ] +10:40:27 [ 43] [ 40] [ LAK20 BR OFFICE LAK20 ] +10:40:27 [ 49] [ 3] [418] +10:40:27 [ 52] [ 16] [172AF0CBB7A0793B] +10:40:27 ============================================================================ +10:40:27 + + +waiting on router queue for slot.... +10:40:27 Sending to : +10:40:27 ============================================================================ +10:40:27 ============================================================================ +10:40:27 Slot Id : <228> +10:40:27 Transaction Type : REQUEST +10:40:27 Received From : +10:40:27 ============================================================================ +10:40:27 FNo. Len. Field Value +10:40:27 ============================================================================ +10:40:27 [ 1] [ 4] [0200] +10:40:27 [ 2] [ 16] [6213543000224856] +10:40:27 [ 3] [ 6] [301000] +10:40:27 [ 4] [ 12] [000000000000] +10:40:27 [ 7] [ 10] [0320103818] +10:40:27 [ 11] [ 6] [939219] +10:40:27 [ 12] [ 6] [103818] +10:40:27 [ 13] [ 4] [0320] +10:40:27 [ 15] [ 4] [0320] +10:40:27 [ 18] [ 4] [6011] +10:40:27 [ 19] [ 3] [418] +10:40:27 [ 22] [ 3] [021] +10:40:27 [ 25] [ 2] [01] +10:40:27 [ 28] [ 9] [D00000000] +10:40:27 [ 32] [ 6] [668899] +10:40:27 [ 35] [ 32] [6213543000224856=491212012485158] +10:40:27 [ 37] [ 12] [507900513185] +10:40:27 [ 41] [ 8] [03012001] +10:40:27 [ 42] [ 15] [APT ] +10:40:27 [ 43] [ 40] [ LAK20 BR OFFICE LAK20 ] +10:40:27 [ 49] [ 3] [418] +10:40:27 [ 52] [ 16] [0CE7EB8D741FED80] +10:40:27 ============================================================================ +10:40:27 + + +waiting on router queue for slot.... +10:40:27 Sending to : <0> +10:40:27 ============================================================================ +10:40:27 ============================================================================ +10:40:27 Slot Id : <228> +10:40:27 Transaction Type : RESPONSE +10:40:27 Received From : +10:40:27 ============================================================================ +10:40:27 FNo. Len. Field Value +10:40:27 ============================================================================ +10:40:27 [ 1] [ 4] [0210] +10:40:27 [ 2] [ 16] [6213543000224856] +10:40:27 [ 3] [ 6] [301000] +10:40:27 [ 4] [ 12] [000000000000] +10:40:27 [ 7] [ 10] [0320103818] +10:40:27 [ 11] [ 6] [939219] +10:40:27 [ 12] [ 6] [103818] +10:40:27 [ 13] [ 4] [0320] +10:40:27 [ 15] [ 4] [0320] +10:40:27 [ 18] [ 4] [6011] +10:40:27 [ 19] [ 3] [418] +10:40:27 [ 32] [ 6] [668899] +10:40:27 [ 35] [ 32] [6213543000224856=491212012485158] +10:40:27 [ 37] [ 12] [507900513185] +10:40:27 [ 38] [ 6] [654428] +10:40:27 [ 39] [ 2] [00] +10:40:27 [ 41] [ 8] [03012001] +10:40:27 [ 49] [ 3] [418] +10:40:27 [ 54] [ 40] [1001418C0000282870591002418C000028287059] +10:40:27 ============================================================================ +10:40:27 Sending to : +10:40:27 ============================================================================ +10:40:27 + + +waiting on router queue for slot.... +10:40:29 ============================================================================ +10:40:29 Slot Id : <197> +10:40:29 Transaction Type : REQUEST +10:40:29 Received From : +10:40:29 ============================================================================ +10:40:29 FNo. Len. Field Value +10:40:29 ============================================================================ +10:40:29 [ 1] [ 4] [0200] +10:40:29 [ 2] [ 16] [6688990106954702] +10:40:29 [ 3] [ 6] [010000] +10:40:29 [ 4] [ 12] [000100000000] +10:40:29 [ 7] [ 10] [0320033935] +10:40:29 [ 11] [ 6] [268170] +10:40:29 [ 12] [ 6] [103935] +10:40:29 [ 13] [ 4] [0320] +10:40:29 [ 14] [ 4] [4401] +10:40:29 [ 15] [ 4] [0320] +10:40:29 [ 18] [ 4] [6011] +10:40:29 [ 19] [ 3] [418] +10:40:29 [ 22] [ 3] [021] +10:40:29 [ 25] [ 2] [01] +10:40:29 [ 28] [ 9] [D00002000] +10:40:29 [ 32] [ 6] [180893] +10:40:29 [ 35] [ 37] [6688990106954702=44011231470296400000] +10:40:29 [ 37] [ 12] [507903268170] +10:40:29 [ 41] [ 8] [0201ADD1] +10:40:29 [ 42] [ 15] [999999 ] +10:40:29 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:40:29 [ 49] [ 3] [418] +10:40:29 [ 52] [ 16] [91A4EEDA3E09C10B] +10:40:29 ============================================================================ +10:40:29 + + +waiting on router queue for slot.... +10:40:29 Sending to : +10:40:29 ============================================================================ +10:40:29 Sending to : +10:40:29 ============================================================================ +10:40:29 ============================================================================ +10:40:29 Slot Id : <275> +10:40:29 Transaction Type : REQUEST +10:40:29 Received From : +10:40:29 ============================================================================ +10:40:29 FNo. Len. Field Value +10:40:29 ============================================================================ +10:40:29 [ 1] [ 4] [0800] +10:40:29 [ 7] [ 10] [0320033937] +10:40:29 [ 11] [ 6] [155906] +10:40:29 [ 70] [ 3] [301] +10:40:29 ============================================================================ +10:40:29 + + +waiting on router queue for slot.... +10:40:29 Sending to : +10:40:29 ============================================================================ +10:40:29 ============================================================================ +10:40:29 Slot Id : <275> +10:40:29 Transaction Type : RESPONSE +10:40:29 Received From : +10:40:29 ============================================================================ +10:40:29 FNo. Len. Field Value +10:40:29 ============================================================================ +10:40:29 [ 1] [ 4] [0810] +10:40:29 [ 7] [ 10] [0320033937] +10:40:29 [ 11] [ 6] [155906] +10:40:29 [ 39] [ 2] [00] +10:40:29 [ 70] [ 3] [301] +10:40:29 ============================================================================ +10:40:29 Calculate Source COMM Id = 2 +10:40:29 ============================================================================ +10:40:29 + + +waiting on router queue for slot.... +10:40:30 ============================================================================ +10:40:30 Slot Id : <197> +10:40:30 Transaction Type : REQUEST +10:40:30 Received From : +10:40:30 ============================================================================ +10:40:30 FNo. Len. Field Value +10:40:30 ============================================================================ +10:40:30 [ 1] [ 4] [0200] +10:40:30 [ 2] [ 16] [6688990106954702] +10:40:30 [ 3] [ 6] [010000] +10:40:30 [ 4] [ 12] [000100000000] +10:40:30 [ 7] [ 10] [0320033935] +10:40:30 [ 11] [ 6] [268170] +10:40:30 [ 12] [ 6] [103935] +10:40:30 [ 13] [ 4] [0320] +10:40:30 [ 14] [ 4] [4401] +10:40:30 [ 15] [ 4] [0320] +10:40:30 [ 18] [ 4] [6011] +10:40:30 [ 19] [ 3] [418] +10:40:30 [ 22] [ 3] [021] +10:40:30 [ 25] [ 2] [01] +10:40:30 [ 28] [ 9] [D00002000] +10:40:30 [ 32] [ 6] [180893] +10:40:30 [ 35] [ 37] [6688990106954702=44011231470296400000] +10:40:30 [ 37] [ 12] [507903268170] +10:40:30 [ 41] [ 8] [0201ADD1] +10:40:30 [ 42] [ 15] [999999 ] +10:40:30 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:40:30 [ 49] [ 3] [418] +10:40:30 [ 52] [ 16] [91A4EEDA3E09C10B] +10:40:30 ============================================================================ +10:40:30 + + +waiting on router queue for slot.... +10:40:30 Sending to : +10:40:30 ============================================================================ +10:40:30 ============================================================================ +10:40:30 Slot Id : <197> +10:40:30 Transaction Type : REQUEST +10:40:30 Received From : +10:40:30 ============================================================================ +10:40:30 FNo. Len. Field Value +10:40:30 ============================================================================ +10:40:30 [ 1] [ 4] [0200] +10:40:30 [ 2] [ 16] [6688990106954702] +10:40:30 [ 3] [ 6] [010000] +10:40:30 [ 4] [ 12] [000100000000] +10:40:30 [ 7] [ 10] [0320033935] +10:40:30 [ 11] [ 6] [268170] +10:40:30 [ 12] [ 6] [103935] +10:40:30 [ 13] [ 4] [0320] +10:40:30 [ 14] [ 4] [4401] +10:40:30 [ 15] [ 4] [0320] +10:40:30 [ 18] [ 4] [6011] +10:40:30 [ 19] [ 3] [418] +10:40:30 [ 22] [ 3] [021] +10:40:30 [ 25] [ 2] [01] +10:40:30 [ 28] [ 9] [D00002000] +10:40:30 [ 32] [ 6] [180893] +10:40:30 [ 35] [ 37] [6688990106954702=44011231470296400000] +10:40:30 [ 37] [ 12] [507903268170] +10:40:30 [ 41] [ 8] [0201ADD1] +10:40:30 [ 42] [ 15] [999999 ] +10:40:30 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:40:30 [ 49] [ 3] [418] +10:40:30 [ 52] [ 16] [FC217F1DF6CC2911] +10:40:30 ============================================================================ +10:40:30 + + +waiting on router queue for slot.... +10:40:30 Sending to : <0> +10:40:30 ============================================================================ +10:40:30 ============================================================================ +10:40:30 Slot Id : <197> +10:40:30 Transaction Type : RESPONSE +10:40:30 Received From : +10:40:30 ============================================================================ +10:40:30 FNo. Len. Field Value +10:40:30 ============================================================================ +10:40:30 [ 1] [ 4] [0210] +10:40:30 [ 2] [ 16] [6688990106954702] +10:40:30 [ 3] [ 6] [010000] +10:40:30 [ 4] [ 12] [000100000000] +10:40:30 [ 7] [ 10] [0320033935] +10:40:30 [ 11] [ 6] [268170] +10:40:30 [ 12] [ 6] [103935] +10:40:30 [ 13] [ 4] [0320] +10:40:30 [ 15] [ 4] [0320] +10:40:30 [ 18] [ 4] [6011] +10:40:30 [ 19] [ 3] [418] +10:40:30 [ 22] [ 3] [021] +10:40:30 [ 32] [ 6] [180893] +10:40:30 [ 35] [ 37] [6688990106954702=44011231470296400000] +10:40:30 [ 37] [ 12] [507903268170] +10:40:30 [ 39] [ 2] [14] +10:40:30 [ 41] [ 8] [0201ADD1] +10:40:30 [ 49] [ 3] [418] +10:40:30 ============================================================================ +10:40:30 Sending to : +10:40:30 ============================================================================ +10:40:30 + + +waiting on router queue for slot.... +10:40:33 ============================================================================ +10:40:33 Slot Id : <228> +10:40:33 Transaction Type : RESPONSE +10:40:33 Received From : +10:40:33 ============================================================================ +10:40:33 FNo. Len. Field Value +10:40:33 ============================================================================ +10:40:33 [ 1] [ 4] [0210] +10:40:33 [ 2] [ 16] [6213543000224856] +10:40:33 [ 3] [ 6] [301000] +10:40:33 [ 4] [ 12] [000000000000] +10:40:33 [ 7] [ 10] [0320103818] +10:40:33 [ 11] [ 6] [939219] +10:40:33 [ 12] [ 6] [103818] +10:40:33 [ 13] [ 4] [0320] +10:40:33 [ 15] [ 4] [0320] +10:40:33 [ 18] [ 4] [6011] +10:40:33 [ 19] [ 3] [418] +10:40:33 [ 32] [ 6] [668899] +10:40:33 [ 35] [ 32] [6213543000224856=491212012485158] +10:40:33 [ 37] [ 12] [507900513185] +10:40:33 [ 38] [ 6] [654428] +10:40:33 [ 39] [ 2] [00] +10:40:33 [ 41] [ 8] [03012001] +10:40:33 [ 49] [ 3] [418] +10:40:33 [ 54] [ 40] [1001418C0000282870591002418C000028287059] +10:40:33 ============================================================================ +10:40:33 Calculate Source COMM Id = 4 +10:40:33 ============================================================================ +10:40:33 + + +waiting on router queue for slot.... +10:40:35 ============================================================================ +10:40:35 Slot Id : <197> +10:40:35 Transaction Type : RESPONSE +10:40:35 Received From : +10:40:35 ============================================================================ +10:40:35 FNo. Len. Field Value +10:40:35 ============================================================================ +10:40:35 [ 1] [ 4] [0210] +10:40:35 [ 2] [ 16] [6688990106954702] +10:40:35 [ 3] [ 6] [010000] +10:40:35 [ 4] [ 12] [000100000000] +10:40:35 [ 7] [ 10] [0320033935] +10:40:35 [ 11] [ 6] [268170] +10:40:35 [ 12] [ 6] [103935] +10:40:35 [ 13] [ 4] [0320] +10:40:35 [ 15] [ 4] [0320] +10:40:35 [ 18] [ 4] [6011] +10:40:35 [ 19] [ 3] [418] +10:40:35 [ 22] [ 3] [021] +10:40:35 [ 32] [ 6] [180893] +10:40:35 [ 35] [ 37] [6688990106954702=44011231470296400000] +10:40:35 [ 37] [ 12] [507903268170] +10:40:35 [ 39] [ 2] [14] +10:40:35 [ 41] [ 8] [0201ADD1] +10:40:35 [ 49] [ 3] [418] +10:40:35 ============================================================================ +10:40:35 Calculate Source COMM Id = 2 +10:40:35 ============================================================================ +10:40:35 + + +waiting on router queue for slot.... +10:40:36 ============================================================================ +10:40:36 Slot Id : <265> +10:40:36 Transaction Type : REQUEST +10:40:36 Received From : +10:40:36 ============================================================================ +10:40:36 FNo. Len. Field Value +10:40:36 ============================================================================ +10:40:36 [ 1] [ 4] [0200] +10:40:36 [ 2] [ 16] [6213545001051030] +10:40:36 [ 3] [ 6] [010000] +10:40:36 [ 4] [ 12] [000100000000] +10:40:36 [ 7] [ 10] [0320103827] +10:40:36 [ 11] [ 6] [939227] +10:40:36 [ 12] [ 6] [103827] +10:40:36 [ 13] [ 4] [0320] +10:40:36 [ 15] [ 4] [0320] +10:40:36 [ 18] [ 4] [6011] +10:40:36 [ 19] [ 3] [418] +10:40:36 [ 22] [ 3] [021] +10:40:36 [ 25] [ 2] [01] +10:40:36 [ 28] [ 9] [D00002000] +10:40:36 [ 32] [ 6] [668899] +10:40:36 [ 35] [ 32] [6213545001051030=491212015103213] +10:40:36 [ 37] [ 12] [507900297333] +10:40:36 [ 41] [ 8] [03010006] +10:40:36 [ 42] [ 15] [APT ] +10:40:36 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:40:36 [ 49] [ 3] [418] +10:40:36 [ 52] [ 16] [E01616301B32E779] +10:40:36 ============================================================================ +10:40:36 + + +waiting on router queue for slot.... +10:40:36 Sending to : +10:40:36 ============================================================================ +10:40:36 Sending to : +10:40:36 ============================================================================ +10:40:36 ============================================================================ +10:40:36 Slot Id : <256> +10:40:36 Transaction Type : REQUEST +10:40:36 Received From : +10:40:36 ============================================================================ +10:40:36 FNo. Len. Field Value +10:40:36 ============================================================================ +10:40:36 [ 1] [ 4] [0800] +10:40:36 [ 7] [ 10] [0320034032] +10:40:36 [ 11] [ 6] [063293] +10:40:36 [ 37] [ 12] [507910063293] +10:40:36 [ 70] [ 3] [001] +10:40:36 ============================================================================ +10:40:36 + + +waiting on router queue for slot.... +10:40:36 Sending to : +10:40:36 ============================================================================ +10:40:36 ============================================================================ +10:40:36 Slot Id : <256> +10:40:36 Transaction Type : RESPONSE +10:40:36 Received From : +10:40:36 ============================================================================ +10:40:36 FNo. Len. Field Value +10:40:36 ============================================================================ +10:40:36 [ 1] [ 4] [0810] +10:40:36 [ 7] [ 10] [0320034032] +10:40:36 [ 11] [ 6] [063293] +10:40:36 [ 37] [ 12] [507910063293] +10:40:36 [ 39] [ 2] [00] +10:40:36 [ 70] [ 3] [001] +10:40:36 ============================================================================ +10:40:36 Calculate Source COMM Id = 0 +10:40:36 ============================================================================ +10:40:36 + + +waiting on router queue for slot.... +10:40:36 ============================================================================ +10:40:36 Slot Id : <265> +10:40:36 Transaction Type : REQUEST +10:40:36 Received From : +10:40:36 ============================================================================ +10:40:36 FNo. Len. Field Value +10:40:36 ============================================================================ +10:40:36 [ 1] [ 4] [0200] +10:40:36 [ 2] [ 16] [6213545001051030] +10:40:36 [ 3] [ 6] [010000] +10:40:36 [ 4] [ 12] [000100000000] +10:40:36 [ 7] [ 10] [0320103827] +10:40:36 [ 11] [ 6] [939227] +10:40:36 [ 12] [ 6] [103827] +10:40:36 [ 13] [ 4] [0320] +10:40:36 [ 15] [ 4] [0320] +10:40:36 [ 18] [ 4] [6011] +10:40:36 [ 19] [ 3] [418] +10:40:36 [ 22] [ 3] [021] +10:40:36 [ 25] [ 2] [01] +10:40:36 [ 28] [ 9] [D00002000] +10:40:36 [ 32] [ 6] [668899] +10:40:36 [ 35] [ 32] [6213545001051030=491212015103213] +10:40:36 [ 37] [ 12] [507900297333] +10:40:36 [ 41] [ 8] [03010006] +10:40:36 [ 42] [ 15] [APT ] +10:40:36 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:40:36 [ 49] [ 3] [418] +10:40:36 [ 52] [ 16] [E01616301B32E779] +10:40:36 ============================================================================ +10:40:36 + + +waiting on router queue for slot.... +10:40:36 Sending to : +10:40:36 ============================================================================ +10:40:36 ============================================================================ +10:40:36 Slot Id : <265> +10:40:36 Transaction Type : REQUEST +10:40:36 Received From : +10:40:36 ============================================================================ +10:40:36 FNo. Len. Field Value +10:40:36 ============================================================================ +10:40:36 [ 1] [ 4] [0200] +10:40:36 [ 2] [ 16] [6213545001051030] +10:40:36 [ 3] [ 6] [010000] +10:40:36 [ 4] [ 12] [000100000000] +10:40:36 [ 7] [ 10] [0320103827] +10:40:36 [ 11] [ 6] [939227] +10:40:36 [ 12] [ 6] [103827] +10:40:36 [ 13] [ 4] [0320] +10:40:36 [ 15] [ 4] [0320] +10:40:36 [ 18] [ 4] [6011] +10:40:36 [ 19] [ 3] [418] +10:40:36 [ 22] [ 3] [021] +10:40:36 [ 25] [ 2] [01] +10:40:36 [ 28] [ 9] [D00002000] +10:40:36 [ 32] [ 6] [668899] +10:40:36 [ 35] [ 32] [6213545001051030=491212015103213] +10:40:36 [ 37] [ 12] [507900297333] +10:40:36 [ 41] [ 8] [03010006] +10:40:36 [ 42] [ 15] [APT ] +10:40:36 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:40:36 [ 49] [ 3] [418] +10:40:36 [ 52] [ 16] [AFC7C5DBA9BD3A69] +10:40:36 ============================================================================ +10:40:36 + + +waiting on router queue for slot.... +10:40:36 Sending to : <0> +10:40:36 ============================================================================ +10:40:37 ============================================================================ +10:40:37 Slot Id : <265> +10:40:37 Transaction Type : RESPONSE +10:40:37 Received From : +10:40:37 ============================================================================ +10:40:37 FNo. Len. Field Value +10:40:37 ============================================================================ +10:40:37 [ 1] [ 4] [0210] +10:40:37 [ 2] [ 16] [6213545001051030] +10:40:37 [ 3] [ 6] [010000] +10:40:37 [ 4] [ 12] [000100000000] +10:40:37 [ 7] [ 10] [0320103827] +10:40:37 [ 11] [ 6] [939227] +10:40:37 [ 12] [ 6] [103827] +10:40:37 [ 13] [ 4] [0320] +10:40:37 [ 15] [ 4] [0320] +10:40:37 [ 18] [ 4] [6011] +10:40:37 [ 19] [ 3] [418] +10:40:37 [ 22] [ 3] [021] +10:40:37 [ 32] [ 6] [668899] +10:40:37 [ 35] [ 32] [6213545001051030=491212015103213] +10:40:37 [ 37] [ 12] [507900297333] +10:40:37 [ 38] [ 6] [104032] +10:40:37 [ 39] [ 2] [55] +10:40:37 [ 41] [ 8] [03010006] +10:40:37 [ 49] [ 3] [418] +10:40:37 ============================================================================ +10:40:37 Sending to : +10:40:37 ============================================================================ +10:40:37 + + +waiting on router queue for slot.... +10:40:40 ============================================================================ +10:40:40 Slot Id : <265> +10:40:40 Transaction Type : RESPONSE +10:40:40 Received From : +10:40:40 ============================================================================ +10:40:40 FNo. Len. Field Value +10:40:40 ============================================================================ +10:40:40 [ 1] [ 4] [0210] +10:40:40 [ 2] [ 16] [6213545001051030] +10:40:40 [ 3] [ 6] [010000] +10:40:40 [ 4] [ 12] [000100000000] +10:40:40 [ 7] [ 10] [0320103827] +10:40:40 [ 11] [ 6] [939227] +10:40:40 [ 12] [ 6] [103827] +10:40:40 [ 13] [ 4] [0320] +10:40:40 [ 15] [ 4] [0320] +10:40:40 [ 18] [ 4] [6011] +10:40:40 [ 19] [ 3] [418] +10:40:40 [ 22] [ 3] [021] +10:40:40 [ 32] [ 6] [668899] +10:40:40 [ 35] [ 32] [6213545001051030=491212015103213] +10:40:40 [ 37] [ 12] [507900297333] +10:40:40 [ 38] [ 6] [104032] +10:40:40 [ 39] [ 2] [55] +10:40:40 [ 41] [ 8] [03010006] +10:40:40 [ 49] [ 3] [418] +10:40:40 ============================================================================ +10:40:40 Calculate Source COMM Id = 4 +10:40:40 ============================================================================ +10:40:40 + + +waiting on router queue for slot.... +10:40:46 ============================================================================ +10:40:46 Slot Id : <247> +10:40:46 Transaction Type : REQUEST +10:40:46 Received From : +10:40:46 ============================================================================ +10:40:46 FNo. Len. Field Value +10:40:46 ============================================================================ +10:40:46 [ 1] [ 4] [0800] +10:40:46 [ 7] [ 10] [0320033953] +10:40:46 [ 11] [ 6] [155907] +10:40:46 [ 70] [ 3] [301] +10:40:46 ============================================================================ +10:40:46 + + +waiting on router queue for slot.... +10:40:46 Sending to : +10:40:46 ============================================================================ +10:40:46 ============================================================================ +10:40:46 Slot Id : <247> +10:40:46 Transaction Type : RESPONSE +10:40:46 Received From : +10:40:46 ============================================================================ +10:40:46 FNo. Len. Field Value +10:40:46 ============================================================================ +10:40:46 [ 1] [ 4] [0810] +10:40:46 [ 7] [ 10] [0320033953] +10:40:46 [ 11] [ 6] [155907] +10:40:46 [ 39] [ 2] [00] +10:40:46 [ 70] [ 3] [301] +10:40:46 ============================================================================ +10:40:46 Calculate Source COMM Id = 2 +10:40:46 ============================================================================ +10:40:46 + + +waiting on router queue for slot.... +10:41:00 ============================================================================ +10:41:00 Slot Id : <274> +10:41:00 Transaction Type : REQUEST +10:41:00 Received From : +10:41:00 ============================================================================ +10:41:00 FNo. Len. Field Value +10:41:00 ============================================================================ +10:41:00 [ 0] [ 4] [0420] +10:41:00 [ 1] [ 4] [0420] +10:41:00 [ 2] [ 16] [6213545000871487] +10:41:00 [ 3] [ 6] [010000] +10:41:00 [ 4] [ 12] [000014000000] +10:41:00 [ 7] [ 10] [0320103650] +10:41:00 [ 11] [ 6] [939145] +10:41:00 [ 12] [ 6] [103650] +10:41:00 [ 13] [ 4] [0320] +10:41:00 [ 15] [ 4] [0320] +10:41:00 [ 18] [ 4] [6011] +10:41:00 [ 19] [ 3] [418] +10:41:00 [ 22] [ 3] [021] +10:41:00 [ 25] [ 2] [01] +10:41:00 [ 28] [ 9] [D00002000] +10:41:00 [ 32] [ 6] [668899] +10:41:00 [ 35] [ 32] [6213545000871487=491212017148353] +10:41:00 [ 37] [ 12] [507900297331] +10:41:00 [ 41] [ 8] [03010006] +10:41:00 [ 42] [ 15] [APT ] +10:41:00 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:41:00 [ 49] [ 3] [418] +10:41:00 [ 52] [ 16] [3C33A82926E131F2] +10:41:00 ============================================================================ +10:41:00 + + +waiting on router queue for slot.... +10:41:00 ============================================================================ +10:41:00 Slot Id : <274> +10:41:00 Transaction Type : RESPONSE +10:41:00 Received From : +10:41:00 ============================================================================ +10:41:00 FNo. Len. Field Value +10:41:00 ============================================================================ +10:41:00 [ 1] [ 4] [0430] +10:41:00 [ 2] [ 16] [6213545000871487] +10:41:00 [ 3] [ 6] [010000] +10:41:00 [ 4] [ 12] [000014000000] +10:41:00 [ 7] [ 10] [0320103650] +10:41:00 [ 11] [ 6] [939145] +10:41:00 [ 19] [ 3] [418] +10:41:00 [ 32] [ 6] [668899] +10:41:00 [ 35] [ 32] [6213545000871487=491212017148353] +10:41:00 [ 37] [ 12] [507900297331] +10:41:00 [ 39] [ 2] [00] +10:41:00 [ 41] [ 8] [03010006] +10:41:00 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:41:00 [ 49] [ 3] [418] +10:41:00 [ 90] [ 42] [020093914503201036500000066889900000000000] +10:41:00 ============================================================================ +10:41:00 Successfully send the slot [274] To REVERSAL Process +10:41:00 + + +waiting on router queue for slot.... +10:41:02 ============================================================================ +10:41:02 Slot Id : <218> +10:41:02 Transaction Type : REQUEST +10:41:02 Received From : +10:41:02 ============================================================================ +10:41:02 FNo. Len. Field Value +10:41:02 ============================================================================ +10:41:02 [ 1] [ 4] [0800] +10:41:02 [ 7] [ 10] [0320034009] +10:41:02 [ 11] [ 6] [155908] +10:41:02 [ 70] [ 3] [301] +10:41:02 ============================================================================ +10:41:02 + + +waiting on router queue for slot.... +10:41:02 Sending to : +10:41:02 ============================================================================ +10:41:02 ============================================================================ +10:41:02 Slot Id : <218> +10:41:02 Transaction Type : RESPONSE +10:41:02 Received From : +10:41:02 ============================================================================ +10:41:02 FNo. Len. Field Value +10:41:02 ============================================================================ +10:41:02 [ 1] [ 4] [0810] +10:41:02 [ 7] [ 10] [0320034009] +10:41:02 [ 11] [ 6] [155908] +10:41:02 [ 39] [ 2] [00] +10:41:02 [ 70] [ 3] [301] +10:41:02 ============================================================================ +10:41:02 Calculate Source COMM Id = 2 +10:41:02 ============================================================================ +10:41:02 + + +waiting on router queue for slot.... +10:41:12 ============================================================================ +10:41:12 Slot Id : <231> +10:41:12 Transaction Type : REQUEST +10:41:12 Received From : +10:41:12 ============================================================================ +10:41:12 FNo. Len. Field Value +10:41:12 ============================================================================ +10:41:12 [ 1] [ 4] [0800] +10:41:12 [ 7] [ 10] [0320034020] +10:41:12 [ 11] [ 6] [155909] +10:41:12 [ 70] [ 3] [301] +10:41:12 ============================================================================ +10:41:12 + + +waiting on router queue for slot.... +10:41:12 Sending to : +10:41:12 ============================================================================ +10:41:12 ============================================================================ +10:41:12 Slot Id : <231> +10:41:12 Transaction Type : RESPONSE +10:41:12 Received From : +10:41:12 ============================================================================ +10:41:12 FNo. Len. Field Value +10:41:12 ============================================================================ +10:41:12 [ 1] [ 4] [0810] +10:41:12 [ 7] [ 10] [0320034020] +10:41:12 [ 11] [ 6] [155909] +10:41:12 [ 39] [ 2] [00] +10:41:12 [ 70] [ 3] [301] +10:41:12 ============================================================================ +10:41:12 Calculate Source COMM Id = 2 +10:41:12 ============================================================================ +10:41:12 + + +waiting on router queue for slot.... +10:41:16 ============================================================================ +10:41:16 Slot Id : <239> +10:41:16 Transaction Type : REQUEST +10:41:16 Received From : +10:41:16 ============================================================================ +10:41:16 FNo. Len. Field Value +10:41:16 ============================================================================ +10:41:16 [ 1] [ 4] [0200] +10:41:16 [ 2] [ 16] [6688990104461007] +10:41:16 [ 3] [ 6] [300000] +10:41:16 [ 4] [ 12] [000000000000] +10:41:16 [ 7] [ 10] [0320104112] +10:41:16 [ 11] [ 6] [717923] +10:41:16 [ 12] [ 6] [104112] +10:41:16 [ 13] [ 4] [0320] +10:41:16 [ 15] [ 4] [0320] +10:41:16 [ 18] [ 4] [6011] +10:41:16 [ 22] [ 3] [900] +10:41:16 [ 25] [ 2] [02] +10:41:16 [ 28] [ 9] [D00000000] +10:41:16 [ 32] [ 6] [621354] +10:41:16 [ 35] [ 37] [6688990104461007=43041231100760700000] +10:41:16 [ 37] [ 12] [507904153839] +10:41:16 [ 41] [ 8] [20001000] +10:41:16 [ 42] [ 15] [NATIVE ] +10:41:16 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:41:16 [ 49] [ 3] [418] +10:41:16 [ 52] [ 16] [6E2CC16BDCED4E0F] +10:41:16 ============================================================================ +10:41:16 + + +waiting on router queue for slot.... +10:41:16 Sending to : +10:41:16 ============================================================================ +10:41:16 Sending to : +10:41:16 ============================================================================ +10:41:18 ============================================================================ +10:41:18 Slot Id : <279> +10:41:18 Transaction Type : REQUEST +10:41:18 Received From : +10:41:18 ============================================================================ +10:41:18 FNo. Len. Field Value +10:41:18 ============================================================================ +10:41:18 [ 1] [ 4] [0800] +10:41:18 [ 2] [ 5] [02531] +10:41:18 [ 3] [ 6] [579108] +10:41:18 [ 7] [ 10] [0320034118] +10:41:18 [ 11] [ 6] [807032] +10:41:18 [ 15] [ 10] [0320034118] +10:41:18 [ 37] [ 11] [57910807032] +10:41:18 [ 70] [ 3] [001] +10:41:18 ============================================================================ +10:41:18 + + +waiting on router queue for slot.... +10:41:18 ============================================================================ +10:41:18 Slot Id : <279> +10:41:18 Transaction Type : RESPONSE +10:41:18 Received From : +10:41:18 ============================================================================ +10:41:18 FNo. Len. Field Value +10:41:18 ============================================================================ +10:41:18 [ 1] [ 4] [0810] +10:41:18 [ 7] [ 10] [0320034118] +10:41:18 [ 11] [ 6] [807032] +10:41:18 [ 15] [ 4] [0320] +10:41:18 [ 37] [ 12] [57910807032] +10:41:18 [ 39] [ 2] [00] +10:41:18 [ 70] [ 3] [001] +10:41:18 ============================================================================ +10:41:18 Sending to : +10:41:18 ============================================================================ +10:41:18 + + +waiting on router queue for slot.... +10:41:21 ============================================================================ +10:41:21 Slot Id : <264> +10:41:21 Transaction Type : REQUEST +10:41:21 Received From : +10:41:21 ============================================================================ +10:41:21 FNo. Len. Field Value +10:41:21 ============================================================================ +10:41:21 [ 1] [ 4] [0800] +10:41:21 [ 7] [ 10] [0320033912] +10:41:21 [ 11] [ 6] [087155] +10:41:21 [ 37] [ 12] [57910087155] +10:41:21 [ 70] [ 3] [301] +10:41:21 ============================================================================ +10:41:21 + + +waiting on router queue for slot.... +10:41:21 Sending to : +10:41:21 ============================================================================ +10:41:21 ============================================================================ +10:41:21 Slot Id : <264> +10:41:21 Transaction Type : RESPONSE +10:41:21 Received From : +10:41:21 ============================================================================ +10:41:21 FNo. Len. Field Value +10:41:21 ============================================================================ +10:41:21 [ 1] [ 4] [0810] +10:41:21 [ 7] [ 10] [0320033912] +10:41:21 [ 11] [ 6] [087155] +10:41:21 [ 37] [ 12] [579100871550] +10:41:21 [ 39] [ 2] [00] +10:41:21 [ 70] [ 3] [810] +10:41:21 ============================================================================ +10:41:21 Calculate Source COMM Id = 4 +10:41:21 ============================================================================ +10:41:21 + + +waiting on router queue for slot.... +10:41:23 ============================================================================ +10:41:23 Slot Id : <273> +10:41:23 Transaction Type : REQUEST +10:41:23 Received From : +10:41:23 ============================================================================ +10:41:23 FNo. Len. Field Value +10:41:23 ============================================================================ +10:41:23 [ 1] [ 4] [0800] +10:41:23 [ 7] [ 10] [0320034030] +10:41:23 [ 11] [ 6] [155910] +10:41:23 [ 70] [ 3] [301] +10:41:23 ============================================================================ +10:41:23 + + +waiting on router queue for slot.... +10:41:23 Sending to : +10:41:23 ============================================================================ +10:41:23 ============================================================================ +10:41:23 Slot Id : <273> +10:41:23 Transaction Type : RESPONSE +10:41:23 Received From : +10:41:23 ============================================================================ +10:41:23 FNo. Len. Field Value +10:41:23 ============================================================================ +10:41:23 [ 1] [ 4] [0810] +10:41:23 [ 7] [ 10] [0320034030] +10:41:23 [ 11] [ 6] [155910] +10:41:23 [ 39] [ 2] [00] +10:41:23 [ 70] [ 3] [301] +10:41:23 ============================================================================ +10:41:23 Calculate Source COMM Id = 2 +10:41:23 ============================================================================ +10:41:23 + + +waiting on router queue for slot.... +10:41:35 ============================================================================ +10:41:35 Slot Id : <254> +10:41:35 Transaction Type : REQUEST +10:41:35 Received From : +10:41:35 ============================================================================ +10:41:35 FNo. Len. Field Value +10:41:35 ============================================================================ +10:41:35 [ 1] [ 4] [0800] +10:41:35 [ 7] [ 10] [0320034043] +10:41:35 [ 11] [ 6] [155911] +10:41:35 [ 70] [ 3] [301] +10:41:35 ============================================================================ +10:41:35 + + +waiting on router queue for slot.... +10:41:35 Sending to : +10:41:35 ============================================================================ +10:41:35 ============================================================================ +10:41:35 Slot Id : <254> +10:41:35 Transaction Type : RESPONSE +10:41:35 Received From : +10:41:35 ============================================================================ +10:41:35 FNo. Len. Field Value +10:41:35 ============================================================================ +10:41:35 [ 1] [ 4] [0810] +10:41:35 [ 7] [ 10] [0320034043] +10:41:35 [ 11] [ 6] [155911] +10:41:35 [ 39] [ 2] [00] +10:41:35 [ 70] [ 3] [301] +10:41:35 ============================================================================ +10:41:35 Calculate Source COMM Id = 2 +10:41:35 ============================================================================ +10:41:35 + + +waiting on router queue for slot.... +10:41:38 ============================================================================ +10:41:38 Slot Id : <239> +10:41:38 Transaction Type : REQUEST +10:41:38 Received From : +10:41:38 ============================================================================ +10:41:38 FNo. Len. Field Value +10:41:38 ============================================================================ +10:41:38 [ 1] [ 4] [0200] +10:41:38 [ 2] [ 16] [6688990104461007] +10:41:38 [ 3] [ 6] [300000] +10:41:38 [ 4] [ 12] [000000000000] +10:41:38 [ 7] [ 10] [0320104112] +10:41:38 [ 11] [ 6] [717923] +10:41:38 [ 12] [ 6] [104112] +10:41:38 [ 13] [ 4] [0320] +10:41:38 [ 15] [ 4] [0320] +10:41:38 [ 18] [ 4] [6011] +10:41:38 [ 22] [ 3] [900] +10:41:38 [ 25] [ 2] [02] +10:41:38 [ 28] [ 9] [D00000000] +10:41:38 [ 32] [ 6] [621354] +10:41:38 [ 35] [ 37] [6688990104461007=43041231100760700000] +10:41:38 [ 37] [ 12] [507904153839] +10:41:38 [ 41] [ 8] [20001000] +10:41:38 [ 42] [ 15] [NATIVE ] +10:41:38 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:41:38 [ 49] [ 3] [418] +10:41:38 [ 52] [ 16] [6E2CC16BDCED4E0F] +10:41:38 ============================================================================ +10:41:38 + + +waiting on router queue for slot.... +10:41:38 Sending to : +10:41:38 ============================================================================ +10:41:38 ============================================================================ +10:41:38 Slot Id : <239> +10:41:38 Transaction Type : REQUEST +10:41:38 Received From : +10:41:38 ============================================================================ +10:41:38 FNo. Len. Field Value +10:41:38 ============================================================================ +10:41:38 [ 1] [ 4] [0200] +10:41:38 [ 2] [ 16] [6688990104461007] +10:41:38 [ 3] [ 6] [300000] +10:41:38 [ 4] [ 12] [000000000000] +10:41:38 [ 7] [ 10] [0320104112] +10:41:38 [ 11] [ 6] [717923] +10:41:38 [ 12] [ 6] [104112] +10:41:38 [ 13] [ 4] [0320] +10:41:38 [ 15] [ 4] [0320] +10:41:38 [ 18] [ 4] [6011] +10:41:38 [ 22] [ 3] [900] +10:41:38 [ 25] [ 2] [02] +10:41:38 [ 28] [ 9] [D00000000] +10:41:38 [ 32] [ 6] [621354] +10:41:38 [ 35] [ 37] [6688990104461007=43041231100760700000] +10:41:38 [ 37] [ 12] [507904153839] +10:41:38 [ 41] [ 8] [20001000] +10:41:38 [ 42] [ 15] [NATIVE ] +10:41:38 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:41:38 [ 49] [ 3] [418] +10:41:38 [ 52] [ 16] [B9C201D536C92D43] +10:41:38 ============================================================================ +10:41:38 + + +waiting on router queue for slot.... +10:41:38 Sending to : <4> +10:41:38 ============================================================================ +10:41:40 ============================================================================ +10:41:40 Slot Id : <239> +10:41:40 Transaction Type : RESPONSE +10:41:40 Received From : +10:41:40 ============================================================================ +10:41:40 FNo. Len. Field Value +10:41:40 ============================================================================ +10:41:40 [ 1] [ 4] [0210] +10:41:40 [ 2] [ 16] [6688990104461007] +10:41:40 [ 3] [ 6] [300000] +10:41:40 [ 4] [ 12] [000000000000] +10:41:40 [ 11] [ 6] [717923] +10:41:40 [ 12] [ 6] [104112] +10:41:40 [ 15] [ 4] [0320] +10:41:40 [ 18] [ 4] [6011] +10:41:40 [ 32] [ 6] [621354] +10:41:40 [ 35] [ 37] [6688990104461007=43041231100760700000] +10:41:40 [ 37] [ 12] [507904153839] +10:41:40 [ 38] [ 6] [923791] +10:41:40 [ 39] [ 2] [00] +10:41:40 [ 41] [ 8] [20001000] +10:41:40 [ 49] [ 3] [418] +10:41:40 [ 54] [ 20] [0002418C000221210170] +10:41:40 ============================================================================ +10:41:40 Sending to : +10:41:40 ============================================================================ +10:41:40 + + +waiting on router queue for slot.... +10:41:44 ============================================================================ +10:41:44 Slot Id : <266> +10:41:44 Transaction Type : REQUEST +10:41:44 Received From : +10:41:44 ============================================================================ +10:41:44 FNo. Len. Field Value +10:41:44 ============================================================================ +10:41:44 [ 1] [ 4] [0200] +10:41:44 [ 2] [ 16] [6213544000646312] +10:41:44 [ 3] [ 6] [301000] +10:41:44 [ 4] [ 12] [000000000000] +10:41:44 [ 7] [ 10] [0320103935] +10:41:44 [ 11] [ 6] [939283] +10:41:44 [ 12] [ 6] [103935] +10:41:44 [ 13] [ 4] [0320] +10:41:44 [ 15] [ 4] [0320] +10:41:44 [ 18] [ 4] [6011] +10:41:44 [ 19] [ 3] [418] +10:41:44 [ 22] [ 3] [021] +10:41:44 [ 25] [ 2] [01] +10:41:44 [ 28] [ 9] [D00000000] +10:41:44 [ 32] [ 6] [668899] +10:41:44 [ 35] [ 32] [6213544000646312=491212014631962] +10:41:44 [ 37] [ 12] [507902380193] +10:41:44 [ 41] [ 8] [03020029] +10:41:44 [ 42] [ 15] [APT ] +10:41:44 [ 43] [ 40] [ SAYKONG COMPANY SISANGVON] +10:41:44 [ 49] [ 3] [418] +10:41:44 [ 52] [ 16] [9A1EFB53ED6378E2] +10:41:44 ============================================================================ +10:41:44 + + +waiting on router queue for slot.... +10:41:44 Sending to : +10:41:44 ============================================================================ +10:41:44 Sending to : +10:41:44 ============================================================================ +10:41:47 ============================================================================ +10:41:47 Slot Id : <282> +10:41:47 Transaction Type : REQUEST +10:41:47 Received From : +10:41:47 ============================================================================ +10:41:47 FNo. Len. Field Value +10:41:47 ============================================================================ +10:41:47 [ 1] [ 4] [0800] +10:41:47 [ 7] [ 10] [0320034055] +10:41:47 [ 11] [ 6] [155912] +10:41:47 [ 70] [ 3] [301] +10:41:47 ============================================================================ +10:41:47 + + +waiting on router queue for slot.... +10:41:47 Sending to : +10:41:47 ============================================================================ +10:41:47 ============================================================================ +10:41:47 Slot Id : <282> +10:41:47 Transaction Type : RESPONSE +10:41:47 Received From : +10:41:47 ============================================================================ +10:41:47 FNo. Len. Field Value +10:41:47 ============================================================================ +10:41:47 [ 1] [ 4] [0810] +10:41:47 [ 7] [ 10] [0320034055] +10:41:47 [ 11] [ 6] [155912] +10:41:47 [ 39] [ 2] [00] +10:41:47 [ 70] [ 3] [301] +10:41:47 ============================================================================ +10:41:47 Calculate Source COMM Id = 2 +10:41:47 ============================================================================ +10:41:47 + + +waiting on router queue for slot.... +10:41:50 ============================================================================ +10:41:50 Slot Id : <239> +10:41:50 Transaction Type : RESPONSE +10:41:50 Received From : +10:41:50 ============================================================================ +10:41:50 FNo. Len. Field Value +10:41:50 ============================================================================ +10:41:50 [ 1] [ 4] [0210] +10:41:50 [ 2] [ 16] [6688990104461007] +10:41:50 [ 3] [ 6] [300000] +10:41:50 [ 4] [ 12] [000000000000] +10:41:50 [ 11] [ 6] [717923] +10:41:50 [ 12] [ 6] [104112] +10:41:50 [ 15] [ 4] [0320] +10:41:50 [ 18] [ 4] [6011] +10:41:50 [ 32] [ 6] [621354] +10:41:50 [ 35] [ 37] [6688990104461007=43041231100760700000] +10:41:50 [ 37] [ 12] [507904153839] +10:41:50 [ 38] [ 6] [923791] +10:41:50 [ 39] [ 2] [00] +10:41:50 [ 41] [ 8] [20001000] +10:41:50 [ 49] [ 3] [418] +10:41:50 [ 54] [ 20] [0002418C000221210170] +10:41:50 ============================================================================ +10:41:50 Calculate Source COMM Id = 0 +10:41:50 ============================================================================ +10:41:50 + + +waiting on router queue for slot.... +10:41:50 ============================================================================ +10:41:50 Slot Id : <266> +10:41:50 Transaction Type : REQUEST +10:41:50 Received From : +10:41:50 ============================================================================ +10:41:50 FNo. Len. Field Value +10:41:50 ============================================================================ +10:41:50 [ 1] [ 4] [0200] +10:41:50 [ 2] [ 16] [6213544000646312] +10:41:50 [ 3] [ 6] [301000] +10:41:50 [ 4] [ 12] [000000000000] +10:41:50 [ 7] [ 10] [0320103935] +10:41:50 [ 11] [ 6] [939283] +10:41:50 [ 12] [ 6] [103935] +10:41:50 [ 13] [ 4] [0320] +10:41:50 [ 15] [ 4] [0320] +10:41:50 [ 18] [ 4] [6011] +10:41:50 [ 19] [ 3] [418] +10:41:50 [ 22] [ 3] [021] +10:41:50 [ 25] [ 2] [01] +10:41:50 [ 28] [ 9] [D00000000] +10:41:50 [ 32] [ 6] [668899] +10:41:50 [ 35] [ 32] [6213544000646312=491212014631962] +10:41:50 [ 37] [ 12] [507902380193] +10:41:50 [ 41] [ 8] [03020029] +10:41:50 [ 42] [ 15] [APT ] +10:41:50 [ 43] [ 40] [ SAYKONG COMPANY SISANGVON] +10:41:50 [ 49] [ 3] [418] +10:41:50 [ 52] [ 16] [9A1EFB53ED6378E2] +10:41:50 ============================================================================ +10:41:50 + + +waiting on router queue for slot.... +10:41:50 Sending to : +10:41:50 ============================================================================ +10:41:50 ============================================================================ +10:41:50 Slot Id : <266> +10:41:50 Transaction Type : REQUEST +10:41:50 Received From : +10:41:50 ============================================================================ +10:41:50 FNo. Len. Field Value +10:41:50 ============================================================================ +10:41:50 [ 1] [ 4] [0200] +10:41:50 [ 2] [ 16] [6213544000646312] +10:41:50 [ 3] [ 6] [301000] +10:41:50 [ 4] [ 12] [000000000000] +10:41:50 [ 7] [ 10] [0320103935] +10:41:50 [ 11] [ 6] [939283] +10:41:50 [ 12] [ 6] [103935] +10:41:50 [ 13] [ 4] [0320] +10:41:50 [ 15] [ 4] [0320] +10:41:50 [ 18] [ 4] [6011] +10:41:50 [ 19] [ 3] [418] +10:41:50 [ 22] [ 3] [021] +10:41:50 [ 25] [ 2] [01] +10:41:50 [ 28] [ 9] [D00000000] +10:41:50 [ 32] [ 6] [668899] +10:41:50 [ 35] [ 32] [6213544000646312=491212014631962] +10:41:50 [ 37] [ 12] [507902380193] +10:41:50 [ 41] [ 8] [03020029] +10:41:50 [ 42] [ 15] [APT ] +10:41:50 [ 43] [ 40] [ SAYKONG COMPANY SISANGVON] +10:41:50 [ 49] [ 3] [418] +10:41:50 [ 52] [ 16] [CA88044CAD40853A] +10:41:50 ============================================================================ +10:41:50 + + +waiting on router queue for slot.... +10:41:50 Sending to : <0> +10:41:50 ============================================================================ +10:41:51 ============================================================================ +10:41:51 Slot Id : <266> +10:41:51 Transaction Type : RESPONSE +10:41:51 Received From : +10:41:51 ============================================================================ +10:41:51 FNo. Len. Field Value +10:41:51 ============================================================================ +10:41:51 [ 1] [ 4] [0210] +10:41:51 [ 2] [ 16] [6213544000646312] +10:41:51 [ 3] [ 6] [301000] +10:41:51 [ 4] [ 12] [000000000000] +10:41:51 [ 7] [ 10] [0320103935] +10:41:51 [ 11] [ 6] [939283] +10:41:51 [ 12] [ 6] [103935] +10:41:51 [ 13] [ 4] [0320] +10:41:51 [ 15] [ 4] [0320] +10:41:51 [ 18] [ 4] [6011] +10:41:51 [ 19] [ 3] [418] +10:41:51 [ 32] [ 6] [668899] +10:41:51 [ 35] [ 32] [6213544000646312=491212014631962] +10:41:51 [ 37] [ 12] [507902380193] +10:41:51 [ 38] [ 6] [747579] +10:41:51 [ 39] [ 2] [00] +10:41:51 [ 41] [ 8] [03020029] +10:41:51 [ 49] [ 3] [418] +10:41:51 [ 54] [ 40] [1001418C0003568209471002418C000356820947] +10:41:51 ============================================================================ +10:41:51 Sending to : +10:41:51 ============================================================================ +10:41:51 + + +waiting on router queue for slot.... +10:41:59 ============================================================================ +10:41:59 Slot Id : <272> +10:41:59 Transaction Type : REQUEST +10:41:59 Received From : +10:41:59 ============================================================================ +10:41:59 FNo. Len. Field Value +10:41:59 ============================================================================ +10:41:59 [ 1] [ 4] [0800] +10:41:59 [ 7] [ 10] [0320034107] +10:41:59 [ 11] [ 6] [155913] +10:41:59 [ 70] [ 3] [301] +10:41:59 ============================================================================ +10:41:59 + + +waiting on router queue for slot.... +10:41:59 Sending to : +10:41:59 ============================================================================ +10:41:59 ============================================================================ +10:41:59 Slot Id : <272> +10:41:59 Transaction Type : RESPONSE +10:41:59 Received From : +10:41:59 ============================================================================ +10:41:59 FNo. Len. Field Value +10:41:59 ============================================================================ +10:41:59 [ 1] [ 4] [0810] +10:41:59 [ 7] [ 10] [0320034107] +10:41:59 [ 11] [ 6] [155913] +10:41:59 [ 39] [ 2] [00] +10:41:59 [ 70] [ 3] [301] +10:41:59 ============================================================================ +10:41:59 Calculate Source COMM Id = 2 +10:41:59 ============================================================================ +10:41:59 + + +waiting on router queue for slot.... +10:42:00 ============================================================================ +10:42:00 Slot Id : <252> +10:42:00 Transaction Type : REQUEST +10:42:00 Received From : +10:42:00 ============================================================================ +10:42:00 FNo. Len. Field Value +10:42:00 ============================================================================ +10:42:00 [ 1] [ 4] [0200] +10:42:00 [ 2] [ 16] [6213545001051030] +10:42:00 [ 3] [ 6] [010000] +10:42:00 [ 4] [ 12] [000100000000] +10:42:00 [ 7] [ 10] [0320103951] +10:42:00 [ 11] [ 6] [939299] +10:42:00 [ 12] [ 6] [103951] +10:42:00 [ 13] [ 4] [0320] +10:42:00 [ 15] [ 4] [0320] +10:42:00 [ 18] [ 4] [6011] +10:42:00 [ 19] [ 3] [418] +10:42:00 [ 22] [ 3] [021] +10:42:00 [ 25] [ 2] [01] +10:42:00 [ 28] [ 9] [D00002000] +10:42:00 [ 32] [ 6] [668899] +10:42:00 [ 35] [ 32] [6213545001051030=491212015103213] +10:42:00 [ 37] [ 12] [507900297336] +10:42:00 [ 41] [ 8] [03010006] +10:42:00 [ 42] [ 15] [APT ] +10:42:00 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:42:00 [ 49] [ 3] [418] +10:42:00 [ 52] [ 16] [459354D0C11E0537] +10:42:00 ============================================================================ +10:42:00 + + +waiting on router queue for slot.... +10:42:00 Sending to : +10:42:00 ============================================================================ +10:42:00 Sending to : +10:42:00 ============================================================================ +10:42:01 ============================================================================ +10:42:01 Slot Id : <252> +10:42:01 Transaction Type : REQUEST +10:42:01 Received From : +10:42:01 ============================================================================ +10:42:01 FNo. Len. Field Value +10:42:01 ============================================================================ +10:42:01 [ 1] [ 4] [0200] +10:42:01 [ 2] [ 16] [6213545001051030] +10:42:01 [ 3] [ 6] [010000] +10:42:01 [ 4] [ 12] [000100000000] +10:42:01 [ 7] [ 10] [0320103951] +10:42:01 [ 11] [ 6] [939299] +10:42:01 [ 12] [ 6] [103951] +10:42:01 [ 13] [ 4] [0320] +10:42:01 [ 15] [ 4] [0320] +10:42:01 [ 18] [ 4] [6011] +10:42:01 [ 19] [ 3] [418] +10:42:01 [ 22] [ 3] [021] +10:42:01 [ 25] [ 2] [01] +10:42:01 [ 28] [ 9] [D00002000] +10:42:01 [ 32] [ 6] [668899] +10:42:01 [ 35] [ 32] [6213545001051030=491212015103213] +10:42:01 [ 37] [ 12] [507900297336] +10:42:01 [ 41] [ 8] [03010006] +10:42:01 [ 42] [ 15] [APT ] +10:42:01 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:42:01 [ 49] [ 3] [418] +10:42:01 [ 52] [ 16] [459354D0C11E0537] +10:42:01 ============================================================================ +10:42:01 + + +waiting on router queue for slot.... +10:42:01 Sending to : +10:42:01 ============================================================================ +10:42:01 ============================================================================ +10:42:01 Slot Id : <252> +10:42:01 Transaction Type : REQUEST +10:42:01 Received From : +10:42:01 ============================================================================ +10:42:01 FNo. Len. Field Value +10:42:01 ============================================================================ +10:42:01 [ 1] [ 4] [0200] +10:42:01 [ 2] [ 16] [6213545001051030] +10:42:01 [ 3] [ 6] [010000] +10:42:01 [ 4] [ 12] [000100000000] +10:42:01 [ 7] [ 10] [0320103951] +10:42:01 [ 11] [ 6] [939299] +10:42:01 [ 12] [ 6] [103951] +10:42:01 [ 13] [ 4] [0320] +10:42:01 [ 15] [ 4] [0320] +10:42:01 [ 18] [ 4] [6011] +10:42:01 [ 19] [ 3] [418] +10:42:01 [ 22] [ 3] [021] +10:42:01 [ 25] [ 2] [01] +10:42:01 [ 28] [ 9] [D00002000] +10:42:01 [ 32] [ 6] [668899] +10:42:01 [ 35] [ 32] [6213545001051030=491212015103213] +10:42:01 [ 37] [ 12] [507900297336] +10:42:01 [ 41] [ 8] [03010006] +10:42:01 [ 42] [ 15] [APT ] +10:42:01 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:42:01 [ 49] [ 3] [418] +10:42:01 [ 52] [ 16] [A69A45E09BB943C2] +10:42:01 ============================================================================ +10:42:01 + + +waiting on router queue for slot.... +10:42:01 Sending to : <0> +10:42:01 ============================================================================ +10:42:02 ============================================================================ +10:42:02 Slot Id : <252> +10:42:02 Transaction Type : RESPONSE +10:42:02 Received From : +10:42:02 ============================================================================ +10:42:02 FNo. Len. Field Value +10:42:02 ============================================================================ +10:42:02 [ 1] [ 4] [0210] +10:42:02 [ 2] [ 16] [6213545001051030] +10:42:02 [ 3] [ 6] [010000] +10:42:02 [ 4] [ 12] [000100000000] +10:42:02 [ 7] [ 10] [0320103951] +10:42:02 [ 11] [ 6] [939299] +10:42:02 [ 12] [ 6] [103951] +10:42:02 [ 13] [ 4] [0320] +10:42:02 [ 15] [ 4] [0320] +10:42:02 [ 18] [ 4] [6011] +10:42:02 [ 19] [ 3] [418] +10:42:02 [ 32] [ 6] [668899] +10:42:02 [ 35] [ 32] [6213545001051030=491212015103213] +10:42:02 [ 37] [ 12] [507900297336] +10:42:02 [ 38] [ 6] [339725] +10:42:02 [ 39] [ 2] [00] +10:42:02 [ 41] [ 8] [03010006] +10:42:02 [ 49] [ 3] [418] +10:42:02 [ 54] [ 40] [0001418C0000130836790002418C000013083679] +10:42:02 ============================================================================ +10:42:02 Sending to : +10:42:02 ============================================================================ +10:42:02 + + +waiting on router queue for slot.... +10:42:04 ============================================================================ +10:42:04 Slot Id : <266> +10:42:04 Transaction Type : RESPONSE +10:42:04 Received From : +10:42:04 ============================================================================ +10:42:04 FNo. Len. Field Value +10:42:04 ============================================================================ +10:42:04 [ 1] [ 4] [0210] +10:42:04 [ 2] [ 16] [6213544000646312] +10:42:04 [ 3] [ 6] [301000] +10:42:04 [ 4] [ 12] [000000000000] +10:42:04 [ 7] [ 10] [0320103935] +10:42:04 [ 11] [ 6] [939283] +10:42:04 [ 12] [ 6] [103935] +10:42:04 [ 13] [ 4] [0320] +10:42:04 [ 15] [ 4] [0320] +10:42:04 [ 18] [ 4] [6011] +10:42:04 [ 19] [ 3] [418] +10:42:04 [ 32] [ 6] [668899] +10:42:04 [ 35] [ 32] [6213544000646312=491212014631962] +10:42:04 [ 37] [ 12] [507902380193] +10:42:04 [ 38] [ 6] [747579] +10:42:04 [ 39] [ 2] [00] +10:42:04 [ 41] [ 8] [03020029] +10:42:04 [ 49] [ 3] [418] +10:42:04 [ 54] [ 40] [1001418C0003568209471002418C000356820947] +10:42:04 ============================================================================ +10:42:04 Calculate Source COMM Id = 4 +10:42:04 ============================================================================ +10:42:04 + + +waiting on router queue for slot.... +10:42:06 ============================================================================ +10:42:06 Slot Id : <252> +10:42:06 Transaction Type : RESPONSE +10:42:06 Received From : +10:42:06 ============================================================================ +10:42:06 FNo. Len. Field Value +10:42:06 ============================================================================ +10:42:06 [ 1] [ 4] [0210] +10:42:06 [ 2] [ 16] [6213545001051030] +10:42:06 [ 3] [ 6] [010000] +10:42:06 [ 4] [ 12] [000100000000] +10:42:06 [ 7] [ 10] [0320103951] +10:42:06 [ 11] [ 6] [939299] +10:42:06 [ 12] [ 6] [103951] +10:42:06 [ 13] [ 4] [0320] +10:42:06 [ 15] [ 4] [0320] +10:42:06 [ 18] [ 4] [6011] +10:42:06 [ 19] [ 3] [418] +10:42:06 [ 32] [ 6] [668899] +10:42:06 [ 35] [ 32] [6213545001051030=491212015103213] +10:42:06 [ 37] [ 12] [507900297336] +10:42:06 [ 38] [ 6] [339725] +10:42:06 [ 39] [ 2] [00] +10:42:06 [ 41] [ 8] [03010006] +10:42:06 [ 49] [ 3] [418] +10:42:06 [ 54] [ 40] [0001418C0000130836790002418C000013083679] +10:42:06 ============================================================================ +10:42:06 Calculate Source COMM Id = 4 +10:42:06 ============================================================================ +10:42:06 + + +waiting on router queue for slot.... +10:42:10 ============================================================================ +10:42:10 Slot Id : <241> +10:42:10 Transaction Type : REQUEST +10:42:10 Received From : +10:42:10 ============================================================================ +10:42:10 FNo. Len. Field Value +10:42:10 ============================================================================ +10:42:10 [ 1] [ 4] [0200] +10:42:10 [ 2] [ 16] [6688990106954702] +10:42:10 [ 3] [ 6] [010000] +10:42:10 [ 4] [ 12] [000100000000] +10:42:10 [ 7] [ 10] [0320034117] +10:42:10 [ 11] [ 6] [268179] +10:42:10 [ 12] [ 6] [104117] +10:42:10 [ 13] [ 4] [0320] +10:42:10 [ 14] [ 4] [4401] +10:42:10 [ 15] [ 4] [0320] +10:42:10 [ 18] [ 4] [6011] +10:42:10 [ 19] [ 3] [418] +10:42:10 [ 22] [ 3] [021] +10:42:10 [ 25] [ 2] [01] +10:42:10 [ 28] [ 9] [D00002000] +10:42:10 [ 32] [ 6] [180893] +10:42:10 [ 35] [ 37] [6688990106954702=44011231470296400000] +10:42:10 [ 37] [ 12] [507903268179] +10:42:10 [ 41] [ 8] [0201ADD1] +10:42:10 [ 42] [ 15] [999999 ] +10:42:10 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:42:10 [ 49] [ 3] [418] +10:42:10 [ 52] [ 16] [91A4EEDA3E09C10B] +10:42:10 ============================================================================ +10:42:10 + + +waiting on router queue for slot.... +10:42:10 Sending to : +10:42:10 ============================================================================ +10:42:10 Sending to : +10:42:10 ============================================================================ +10:42:10 ============================================================================ +10:42:10 Slot Id : <276> +10:42:10 Transaction Type : REQUEST +10:42:10 Received From : +10:42:10 ============================================================================ +10:42:10 FNo. Len. Field Value +10:42:10 ============================================================================ +10:42:10 [ 1] [ 4] [0800] +10:42:10 [ 7] [ 10] [0320034117] +10:42:10 [ 11] [ 6] [155914] +10:42:10 [ 70] [ 3] [301] +10:42:10 ============================================================================ +10:42:10 + + +waiting on router queue for slot.... +10:42:10 Sending to : +10:42:10 ============================================================================ +10:42:10 ============================================================================ +10:42:10 Slot Id : <276> +10:42:10 Transaction Type : RESPONSE +10:42:10 Received From : +10:42:10 ============================================================================ +10:42:10 FNo. Len. Field Value +10:42:10 ============================================================================ +10:42:10 [ 1] [ 4] [0810] +10:42:10 [ 7] [ 10] [0320034117] +10:42:10 [ 11] [ 6] [155914] +10:42:10 [ 39] [ 2] [00] +10:42:10 [ 70] [ 3] [301] +10:42:10 ============================================================================ +10:42:10 Calculate Source COMM Id = 2 +10:42:10 ============================================================================ +10:42:10 + + +waiting on router queue for slot.... +10:42:10 ============================================================================ +10:42:10 Slot Id : <241> +10:42:10 Transaction Type : REQUEST +10:42:10 Received From : +10:42:10 ============================================================================ +10:42:10 FNo. Len. Field Value +10:42:10 ============================================================================ +10:42:10 [ 1] [ 4] [0200] +10:42:10 [ 2] [ 16] [6688990106954702] +10:42:10 [ 3] [ 6] [010000] +10:42:10 [ 4] [ 12] [000100000000] +10:42:10 [ 7] [ 10] [0320034117] +10:42:10 [ 11] [ 6] [268179] +10:42:10 [ 12] [ 6] [104117] +10:42:10 [ 13] [ 4] [0320] +10:42:10 [ 14] [ 4] [4401] +10:42:10 [ 15] [ 4] [0320] +10:42:10 [ 18] [ 4] [6011] +10:42:10 [ 19] [ 3] [418] +10:42:10 [ 22] [ 3] [021] +10:42:10 [ 25] [ 2] [01] +10:42:10 [ 28] [ 9] [D00002000] +10:42:10 [ 32] [ 6] [180893] +10:42:10 [ 35] [ 37] [6688990106954702=44011231470296400000] +10:42:10 [ 37] [ 12] [507903268179] +10:42:10 [ 41] [ 8] [0201ADD1] +10:42:10 [ 42] [ 15] [999999 ] +10:42:10 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:42:10 [ 49] [ 3] [418] +10:42:10 [ 52] [ 16] [91A4EEDA3E09C10B] +10:42:10 ============================================================================ +10:42:10 + + +waiting on router queue for slot.... +10:42:10 Sending to : +10:42:10 ============================================================================ +10:42:10 ============================================================================ +10:42:10 Slot Id : <241> +10:42:10 Transaction Type : REQUEST +10:42:10 Received From : +10:42:10 ============================================================================ +10:42:10 FNo. Len. Field Value +10:42:10 ============================================================================ +10:42:10 [ 1] [ 4] [0200] +10:42:10 [ 2] [ 16] [6688990106954702] +10:42:10 [ 3] [ 6] [010000] +10:42:10 [ 4] [ 12] [000100000000] +10:42:10 [ 7] [ 10] [0320034117] +10:42:10 [ 11] [ 6] [268179] +10:42:10 [ 12] [ 6] [104117] +10:42:10 [ 13] [ 4] [0320] +10:42:10 [ 14] [ 4] [4401] +10:42:10 [ 15] [ 4] [0320] +10:42:10 [ 18] [ 4] [6011] +10:42:10 [ 19] [ 3] [418] +10:42:10 [ 22] [ 3] [021] +10:42:10 [ 25] [ 2] [01] +10:42:10 [ 28] [ 9] [D00002000] +10:42:10 [ 32] [ 6] [180893] +10:42:10 [ 35] [ 37] [6688990106954702=44011231470296400000] +10:42:10 [ 37] [ 12] [507903268179] +10:42:10 [ 41] [ 8] [0201ADD1] +10:42:10 [ 42] [ 15] [999999 ] +10:42:10 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +10:42:10 [ 49] [ 3] [418] +10:42:10 [ 52] [ 16] [FC217F1DF6CC2911] +10:42:10 ============================================================================ +10:42:10 + + +waiting on router queue for slot.... +10:42:10 Sending to : <0> +10:42:10 ============================================================================ +10:42:10 ============================================================================ +10:42:10 Slot Id : <241> +10:42:10 Transaction Type : RESPONSE +10:42:10 Received From : +10:42:10 ============================================================================ +10:42:10 FNo. Len. Field Value +10:42:10 ============================================================================ +10:42:10 [ 1] [ 4] [0210] +10:42:10 [ 2] [ 16] [6688990106954702] +10:42:10 [ 3] [ 6] [010000] +10:42:10 [ 4] [ 12] [000100000000] +10:42:10 [ 7] [ 10] [0320034117] +10:42:10 [ 11] [ 6] [268179] +10:42:10 [ 12] [ 6] [104117] +10:42:10 [ 13] [ 4] [0320] +10:42:10 [ 15] [ 4] [0320] +10:42:10 [ 18] [ 4] [6011] +10:42:10 [ 19] [ 3] [418] +10:42:10 [ 22] [ 3] [021] +10:42:10 [ 32] [ 6] [180893] +10:42:10 [ 35] [ 37] [6688990106954702=44011231470296400000] +10:42:10 [ 37] [ 12] [507903268179] +10:42:10 [ 39] [ 2] [14] +10:42:10 [ 41] [ 8] [0201ADD1] +10:42:10 [ 49] [ 3] [418] +10:42:10 ============================================================================ +10:42:10 Sending to : +10:42:10 ============================================================================ +10:42:10 + + +waiting on router queue for slot.... +10:42:12 ============================================================================ +10:42:12 Slot Id : <241> +10:42:12 Transaction Type : RESPONSE +10:42:12 Received From : +10:42:12 ============================================================================ +10:42:12 FNo. Len. Field Value +10:42:12 ============================================================================ +10:42:12 [ 1] [ 4] [0210] +10:42:12 [ 2] [ 16] [6688990106954702] +10:42:12 [ 3] [ 6] [010000] +10:42:12 [ 4] [ 12] [000100000000] +10:42:12 [ 7] [ 10] [0320034117] +10:42:12 [ 11] [ 6] [268179] +10:42:12 [ 12] [ 6] [104117] +10:42:12 [ 13] [ 4] [0320] +10:42:12 [ 15] [ 4] [0320] +10:42:12 [ 18] [ 4] [6011] +10:42:12 [ 19] [ 3] [418] +10:42:12 [ 22] [ 3] [021] +10:42:12 [ 32] [ 6] [180893] +10:42:12 [ 35] [ 37] [6688990106954702=44011231470296400000] +10:42:12 [ 37] [ 12] [507903268179] +10:42:12 [ 39] [ 2] [14] +10:42:12 [ 41] [ 8] [0201ADD1] +10:42:12 [ 49] [ 3] [418] +10:42:12 ============================================================================ +10:42:12 Calculate Source COMM Id = 2 +10:42:12 ============================================================================ +10:42:12 + + +waiting on router queue for slot.... +10:42:20 ============================================================================ +10:42:20 Slot Id : <280> +10:42:20 Transaction Type : REQUEST +10:42:20 Received From : +10:42:20 ============================================================================ +10:42:20 FNo. Len. Field Value +10:42:20 ============================================================================ +10:42:20 [ 1] [ 4] [0800] +10:42:20 [ 2] [ 5] [02531] +10:42:20 [ 3] [ 6] [579108] +10:42:20 [ 7] [ 10] [0320034220] +10:42:20 [ 11] [ 6] [807033] +10:42:20 [ 15] [ 10] [0320034220] +10:42:20 [ 37] [ 11] [57910807033] +10:42:20 [ 70] [ 3] [001] +10:42:20 ============================================================================ +10:42:20 + + +waiting on router queue for slot.... +10:42:20 ============================================================================ +10:42:20 Slot Id : <280> +10:42:20 Transaction Type : RESPONSE +10:42:20 Received From : +10:42:20 ============================================================================ +10:42:20 FNo. Len. Field Value +10:42:20 ============================================================================ +10:42:20 [ 1] [ 4] [0810] +10:42:20 [ 7] [ 10] [0320034220] +10:42:20 [ 11] [ 6] [807033] +10:42:20 [ 15] [ 4] [0320] +10:42:20 [ 37] [ 12] [57910807033] +10:42:20 [ 39] [ 2] [00] +10:42:20 [ 70] [ 3] [001] +10:42:20 ============================================================================ +10:42:20 Sending to : +10:42:20 ============================================================================ +10:42:20 + + +waiting on router queue for slot.... +10:42:24 ============================================================================ +10:42:24 Slot Id : <219> +10:42:24 Transaction Type : REQUEST +10:42:24 Received From : +10:42:24 ============================================================================ +10:42:24 FNo. Len. Field Value +10:42:24 ============================================================================ +10:42:24 [ 1] [ 4] [0200] +10:42:24 [ 2] [ 16] [6213545001042021] +10:42:24 [ 3] [ 6] [010000] +10:42:24 [ 4] [ 12] [000010000000] +10:42:24 [ 7] [ 10] [0320104015] +10:42:24 [ 11] [ 6] [939316] +10:42:24 [ 12] [ 6] [104015] +10:42:24 [ 13] [ 4] [0320] +10:42:24 [ 15] [ 4] [0320] +10:42:24 [ 18] [ 4] [6011] +10:42:24 [ 19] [ 3] [418] +10:42:24 [ 22] [ 3] [021] +10:42:24 [ 25] [ 2] [01] +10:42:24 [ 28] [ 9] [D00002000] +10:42:24 [ 32] [ 6] [668899] +10:42:24 [ 35] [ 32] [6213545001042021=491212014202897] +10:42:24 [ 37] [ 12] [507901834237] +10:42:24 [ 41] [ 8] [03308001] +10:42:24 [ 42] [ 15] [APT ] +10:42:24 [ 43] [ 40] [ VIENGTHONG UNIT VIENGTHON] +10:42:24 [ 49] [ 3] [418] +10:42:24 [ 52] [ 16] [D4B5B798D411D11F] +10:42:24 ============================================================================ +10:42:24 + + +waiting on router queue for slot.... +10:42:24 Sending to : +10:42:24 ============================================================================ +10:42:24 Sending to : +10:42:24 ============================================================================ +10:42:25 ============================================================================ +10:42:25 Slot Id : <245> +10:42:25 Transaction Type : REQUEST +10:42:25 Received From : +10:42:25 ============================================================================ +10:42:25 FNo. Len. Field Value +10:42:25 ============================================================================ +10:42:25 [ 1] [ 4] [0200] +10:42:25 [ 2] [ 16] [1808930400011656] +10:42:25 [ 3] [ 6] [011000] +10:42:25 [ 4] [ 12] [000050000000] +10:42:25 [ 7] [ 10] [0320104221] +10:42:25 [ 11] [ 6] [718273] +10:42:25 [ 12] [ 6] [104221] +10:42:25 [ 13] [ 4] [0320] +10:42:25 [ 15] [ 4] [0320] +10:42:25 [ 18] [ 4] [6011] +10:42:25 [ 22] [ 3] [900] +10:42:25 [ 25] [ 2] [02] +10:42:25 [ 28] [ 9] [D00002000] +10:42:25 [ 32] [ 6] [621354] +10:42:25 [ 35] [ 27] [1808930400011656=1803500809] +10:42:25 [ 37] [ 12] [507904031654] +10:42:25 [ 41] [ 8] [09001700] +10:42:25 [ 42] [ 15] [NATIVE ] +10:42:25 [ 43] [ 40] [Xaysetha Unit 02 Xaysetha LAO] +10:42:25 [ 49] [ 3] [418] +10:42:25 [ 52] [ 16] [CC84FB832B7FF1EE] +10:42:25 ============================================================================ +10:42:25 + + +waiting on router queue for slot.... +10:42:25 Sending to : +10:42:25 ============================================================================ +10:42:25 Sending to : +10:42:25 ============================================================================ +10:42:25 ============================================================================ +10:42:25 Slot Id : <258> +10:42:25 Transaction Type : REQUEST +10:42:25 Received From : +10:42:25 ============================================================================ +10:42:25 FNo. Len. Field Value +10:42:25 ============================================================================ +10:42:25 [ 1] [ 4] [0800] +10:42:25 [ 7] [ 10] [0320104213] +10:42:25 [ 11] [ 6] [056170] +10:42:25 [ 37] [ 12] [507910056170] +10:42:25 [ 70] [ 3] [ ] +10:42:25 ============================================================================ +10:42:25 + + +waiting on router queue for slot.... +10:42:25 Sending to : +10:42:25 ============================================================================ +10:42:25 ============================================================================ +10:42:25 Slot Id : <258> +10:42:25 Transaction Type : RESPONSE +10:42:25 Received From : +10:42:25 ============================================================================ +10:42:25 FNo. Len. Field Value +10:42:25 ============================================================================ +10:42:25 [ 1] [ 4] [0810] +10:42:25 [ 7] [ 10] [0320104213] +10:42:25 [ 11] [ 6] [056170] +10:42:25 [ 37] [ 12] [507910056170] +10:42:25 [ 39] [ 2] [91] +10:42:25 [ 70] [ 3] [ ] +10:42:25 ============================================================================ +10:42:25 Calculate Source COMM Id = 3 +10:42:25 ============================================================================ +10:42:25 + + +waiting on router queue for slot.... +10:42:26 ============================================================================ +10:42:26 Slot Id : <219> +10:42:26 Transaction Type : REQUEST +10:42:26 Received From : +10:42:26 ============================================================================ +10:42:26 FNo. Len. Field Value +10:42:26 ============================================================================ +10:42:26 [ 1] [ 4] [0200] +10:42:26 [ 2] [ 16] [6213545001042021] +10:42:26 [ 3] [ 6] [010000] +10:42:26 [ 4] [ 12] [000010000000] +10:42:26 [ 7] [ 10] [0320104015] +10:42:26 [ 11] [ 6] [939316] +10:42:26 [ 12] [ 6] [104015] +10:42:26 [ 13] [ 4] [0320] +10:42:26 [ 15] [ 4] [0320] +10:42:26 [ 18] [ 4] [6011] +10:42:26 [ 19] [ 3] [418] +10:42:26 [ 22] [ 3] [021] +10:42:26 [ 25] [ 2] [01] +10:42:26 [ 28] [ 9] [D00002000] +10:42:26 [ 32] [ 6] [668899] +10:42:26 [ 35] [ 32] [6213545001042021=491212014202897] +10:42:26 [ 37] [ 12] [507901834237] +10:42:26 [ 41] [ 8] [03308001] +10:42:26 [ 42] [ 15] [APT ] +10:42:26 [ 43] [ 40] [ VIENGTHONG UNIT VIENGTHON] +10:42:26 [ 49] [ 3] [418] +10:42:26 [ 52] [ 16] [D4B5B798D411D11F] +10:42:26 ============================================================================ +10:42:26 + + +waiting on router queue for slot.... +10:42:26 Sending to : +10:42:26 ============================================================================ +10:42:26 ============================================================================ +10:42:26 Slot Id : <219> +10:42:26 Transaction Type : REQUEST +10:42:26 Received From : +10:42:26 ============================================================================ +10:42:26 FNo. Len. Field Value +10:42:26 ============================================================================ +10:42:26 [ 1] [ 4] [0200] +10:42:26 [ 2] [ 16] [6213545001042021] +10:42:26 [ 3] [ 6] [010000] +10:42:26 [ 4] [ 12] [000010000000] +10:42:26 [ 7] [ 10] [0320104015] +10:42:26 [ 11] [ 6] [939316] +10:42:26 [ 12] [ 6] [104015] +10:42:26 [ 13] [ 4] [0320] +10:42:26 [ 15] [ 4] [0320] +10:42:26 [ 18] [ 4] [6011] +10:42:26 [ 19] [ 3] [418] +10:42:26 [ 22] [ 3] [021] +10:42:26 [ 25] [ 2] [01] +10:42:26 [ 28] [ 9] [D00002000] +10:42:26 [ 32] [ 6] [668899] +10:42:26 [ 35] [ 32] [6213545001042021=491212014202897] +10:42:26 [ 37] [ 12] [507901834237] +10:42:26 [ 41] [ 8] [03308001] +10:42:26 [ 42] [ 15] [APT ] +10:42:26 [ 43] [ 40] [ VIENGTHONG UNIT VIENGTHON] +10:42:26 [ 49] [ 3] [418] +10:42:26 [ 52] [ 16] [0F5241507631EACA] +10:42:26 ============================================================================ +10:42:26 + + +waiting on router queue for slot.... +10:42:26 Sending to : <0> +10:42:26 ============================================================================ +10:42:26 ============================================================================ +10:42:26 Slot Id : <245> +10:42:26 Transaction Type : REQUEST +10:42:26 Received From : +10:42:26 ============================================================================ +10:42:26 FNo. Len. Field Value +10:42:26 ============================================================================ +10:42:26 [ 1] [ 4] [0200] +10:42:26 [ 2] [ 16] [1808930400011656] +10:42:26 [ 3] [ 6] [011000] +10:42:26 [ 4] [ 12] [000050000000] +10:42:26 [ 7] [ 10] [0320104221] +10:42:26 [ 11] [ 6] [718273] +10:42:26 [ 12] [ 6] [104221] +10:42:26 [ 13] [ 4] [0320] +10:42:26 [ 15] [ 4] [0320] +10:42:26 [ 18] [ 4] [6011] +10:42:26 [ 22] [ 3] [900] +10:42:26 [ 25] [ 2] [02] +10:42:26 [ 28] [ 9] [D00002000] +10:42:26 [ 32] [ 6] [621354] +10:42:26 [ 35] [ 27] [1808930400011656=1803500809] +10:42:26 [ 37] [ 12] [507904031654] +10:42:26 [ 41] [ 8] [09001700] +10:42:26 [ 42] [ 15] [NATIVE ] +10:42:26 [ 43] [ 40] [Xaysetha Unit 02 Xaysetha LAO] +10:42:26 [ 49] [ 3] [418] +10:42:26 [ 52] [ 16] [CC84FB832B7FF1EE] +10:42:26 ============================================================================ +10:42:26 + + +waiting on router queue for slot.... +10:42:26 Sending to : +10:42:26 ============================================================================ +10:42:26 ============================================================================ +10:42:26 Slot Id : <245> +10:42:26 Transaction Type : REQUEST +10:42:26 Received From : +10:42:26 ============================================================================ +10:42:26 FNo. Len. Field Value +10:42:26 ============================================================================ +10:42:26 [ 1] [ 4] [0200] +10:42:26 [ 2] [ 16] [1808930400011656] +10:42:26 [ 3] [ 6] [011000] +10:42:26 [ 4] [ 12] [000050000000] +10:42:26 [ 7] [ 10] [0320104221] +10:42:26 [ 11] [ 6] [718273] +10:42:26 [ 12] [ 6] [104221] +10:42:26 [ 13] [ 4] [0320] +10:42:26 [ 15] [ 4] [0320] +10:42:26 [ 18] [ 4] [6011] +10:42:26 [ 22] [ 3] [900] +10:42:26 [ 25] [ 2] [02] +10:42:26 [ 28] [ 9] [D00002000] +10:42:26 [ 32] [ 6] [621354] +10:42:26 [ 35] [ 27] [1808930400011656=1803500809] +10:42:26 [ 37] [ 12] [507904031654] +10:42:26 [ 41] [ 8] [09001700] +10:42:26 [ 42] [ 15] [NATIVE ] +10:42:26 [ 43] [ 40] [Xaysetha Unit 02 Xaysetha LAO] +10:42:26 [ 49] [ 3] [418] +10:42:26 [ 52] [ 16] [C23AE00BC8957E58] +10:42:26 ============================================================================ +10:42:26 + + +waiting on router queue for slot.... +10:42:26 Sending to : <2> +10:42:26 ============================================================================ +10:42:27 ============================================================================ +10:42:27 Slot Id : <284> +10:42:27 Transaction Type : REQUEST +10:42:27 Received From : +10:42:27 ============================================================================ +10:42:27 FNo. Len. Field Value +10:42:27 ============================================================================ +10:42:27 [ 1] [ 4] [0800] +10:42:27 [ 7] [ 10] [0320034134] +10:42:27 [ 11] [ 6] [155915] +10:42:27 [ 70] [ 3] [301] +10:42:27 ============================================================================ +10:42:27 + + +waiting on router queue for slot.... +10:42:27 Sending to : +10:42:27 ============================================================================ +10:42:27 ============================================================================ +10:42:27 Slot Id : <284> +10:42:27 Transaction Type : RESPONSE +10:42:27 Received From : +10:42:27 ============================================================================ +10:42:27 FNo. Len. Field Value +10:42:27 ============================================================================ +10:42:27 [ 1] [ 4] [0810] +10:42:27 [ 7] [ 10] [0320034134] +10:42:27 [ 11] [ 6] [155915] +10:42:27 [ 39] [ 2] [00] +10:42:27 [ 70] [ 3] [301] +10:42:27 ============================================================================ +10:42:27 Calculate Source COMM Id = 2 +10:42:27 ============================================================================ +10:42:27 + + +waiting on router queue for slot.... +10:42:27 ============================================================================ +10:42:27 Slot Id : <219> +10:42:27 Transaction Type : RESPONSE +10:42:27 Received From : +10:42:27 ============================================================================ +10:42:27 FNo. Len. Field Value +10:42:27 ============================================================================ +10:42:27 [ 1] [ 4] [0210] +10:42:27 [ 2] [ 16] [6213545001042021] +10:42:27 [ 3] [ 6] [010000] +10:42:27 [ 4] [ 12] [000010000000] +10:42:27 [ 7] [ 10] [0320104015] +10:42:27 [ 11] [ 6] [939316] +10:42:27 [ 12] [ 6] [104015] +10:42:27 [ 13] [ 4] [0320] +10:42:27 [ 15] [ 4] [0320] +10:42:27 [ 18] [ 4] [6011] +10:42:27 [ 19] [ 3] [418] +10:42:27 [ 32] [ 6] [668899] +10:42:27 [ 35] [ 32] [6213545001042021=491212014202897] +10:42:27 [ 37] [ 12] [507901834237] +10:42:27 [ 38] [ 6] [719512] +10:42:27 [ 39] [ 2] [00] +10:42:27 [ 41] [ 8] [03308001] +10:42:27 [ 49] [ 3] [418] +10:42:27 [ 54] [ 40] [0001418C0001478618840002418C000147861884] +10:42:27 ============================================================================ +10:42:27 Sending to : +10:42:27 ============================================================================ +10:42:27 + + +waiting on router queue for slot.... +10:42:29 ============================================================================ +10:42:29 Slot Id : <219> +10:42:29 Transaction Type : RESPONSE +10:42:29 Received From : +10:42:29 ============================================================================ +10:42:29 FNo. Len. Field Value +10:42:29 ============================================================================ +10:42:29 [ 1] [ 4] [0210] +10:42:29 [ 2] [ 16] [6213545001042021] +10:42:29 [ 3] [ 6] [010000] +10:42:29 [ 4] [ 12] [000010000000] +10:42:29 [ 7] [ 10] [0320104015] +10:42:29 [ 11] [ 6] [939316] +10:42:29 [ 12] [ 6] [104015] +10:42:29 [ 13] [ 4] [0320] +10:42:29 [ 15] [ 4] [0320] +10:42:29 [ 18] [ 4] [6011] +10:42:29 [ 19] [ 3] [418] +10:42:29 [ 32] [ 6] [668899] +10:42:29 [ 35] [ 32] [6213545001042021=491212014202897] +10:42:29 [ 37] [ 12] [507901834237] +10:42:29 [ 38] [ 6] [719512] +10:42:29 [ 39] [ 2] [00] +10:42:29 [ 41] [ 8] [03308001] +10:42:29 [ 49] [ 3] [418] +10:42:29 [ 54] [ 40] [0001418C0001478618840002418C000147861884] +10:42:29 ============================================================================ +10:42:29 Calculate Source COMM Id = 4 +10:42:29 ============================================================================ +10:42:29 + + +waiting on router queue for slot.... +10:42:29 ============================================================================ +10:42:29 Slot Id : <245> +10:42:29 Transaction Type : RESPONSE +10:42:29 Received From : +10:42:29 ============================================================================ +10:42:29 FNo. Len. Field Value +10:42:29 ============================================================================ +10:42:29 [ 1] [ 4] [0210] +10:42:29 [ 2] [ 16] [1808930400011656] +10:42:29 [ 3] [ 6] [011000] +10:42:29 [ 4] [ 12] [000050000000] +10:42:29 [ 6] [ 12] [000050000000] +10:42:29 [ 7] [ 10] [0320104221] +10:42:29 [ 11] [ 6] [718273] +10:42:29 [ 12] [ 6] [104221] +10:42:29 [ 13] [ 4] [0320] +10:42:29 [ 18] [ 4] [6011] +10:42:29 [ 19] [ 3] [418] +10:42:29 [ 22] [ 3] [021] +10:42:29 [ 28] [ 9] [D00002000] +10:42:29 [ 32] [ 6] [621354] +10:42:29 [ 35] [ 27] [1808930400011656=1803500809] +10:42:29 [ 37] [ 12] [507904031654] +10:42:29 [ 39] [ 2] [55] +10:42:29 [ 41] [ 8] [09001700] +10:42:29 [ 49] [ 3] [418] +10:42:29 [ 51] [ 3] [418] +10:42:29 [ 52] [ 16] [C23AE00BC8957E58] +10:42:29 ============================================================================ +10:42:29 Sending to : +10:42:29 ============================================================================ +10:42:29 + + +waiting on router queue for slot.... +10:42:30 ============================================================================ +10:42:30 Slot Id : <245> +10:42:30 Transaction Type : RESPONSE +10:42:30 Received From : +10:42:30 ============================================================================ +10:42:30 FNo. Len. Field Value +10:42:30 ============================================================================ +10:42:30 [ 1] [ 4] [0210] +10:42:30 [ 2] [ 16] [1808930400011656] +10:42:30 [ 3] [ 6] [011000] +10:42:30 [ 4] [ 12] [000050000000] +10:42:30 [ 6] [ 12] [000050000000] +10:42:30 [ 7] [ 10] [0320104221] +10:42:30 [ 11] [ 6] [718273] +10:42:30 [ 12] [ 6] [104221] +10:42:30 [ 13] [ 4] [0320] +10:42:30 [ 18] [ 4] [6011] +10:42:30 [ 19] [ 3] [418] +10:42:30 [ 22] [ 3] [021] +10:42:30 [ 28] [ 9] [D00002000] +10:42:30 [ 32] [ 6] [621354] +10:42:30 [ 35] [ 27] [1808930400011656=1803500809] +10:42:30 [ 37] [ 12] [507904031654] +10:42:30 [ 39] [ 2] [55] +10:42:30 [ 41] [ 8] [09001700] +10:42:30 [ 49] [ 3] [418] +10:42:30 [ 51] [ 3] [418] +10:42:30 [ 52] [ 16] [C23AE00BC8957E58] +10:42:30 ============================================================================ +10:42:30 Calculate Source COMM Id = 0 +10:42:30 ============================================================================ +10:42:30 + + +waiting on router queue for slot.... +10:42:35 ============================================================================ +10:42:35 Slot Id : <224> +10:42:35 Transaction Type : REQUEST +10:42:35 Received From : +10:42:35 ============================================================================ +10:42:35 FNo. Len. Field Value +10:42:35 ============================================================================ +10:42:35 [ 1] [ 4] [0200] +10:42:35 [ 2] [ 16] [6688990601478009] +10:42:35 [ 3] [ 6] [300000] +10:42:35 [ 4] [ 12] [000000000000] +10:42:35 [ 7] [ 10] [0320104230] +10:42:35 [ 11] [ 6] [718320] +10:42:35 [ 12] [ 6] [104230] +10:42:35 [ 13] [ 4] [0320] +10:42:35 [ 15] [ 4] [0320] +10:42:35 [ 18] [ 4] [6011] +10:42:35 [ 22] [ 3] [900] +10:42:35 [ 25] [ 2] [02] +10:42:35 [ 28] [ 9] [D00000000] +10:42:35 [ 32] [ 6] [621354] +10:42:35 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:42:35 [ 37] [ 12] [507904153840] +10:42:35 [ 41] [ 8] [20001000] +10:42:35 [ 42] [ 15] [NATIVE ] +10:42:35 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:42:35 [ 49] [ 3] [418] +10:42:35 [ 52] [ 16] [B0290573CFBE31A2] +10:42:35 ============================================================================ +10:42:35 + + +waiting on router queue for slot.... +10:42:35 Sending to : +10:42:35 ============================================================================ +10:42:35 Sending to : +10:42:35 ============================================================================ +10:42:35 ============================================================================ +10:42:35 Slot Id : <224> +10:42:35 Transaction Type : REQUEST +10:42:35 Received From : +10:42:35 ============================================================================ +10:42:35 FNo. Len. Field Value +10:42:35 ============================================================================ +10:42:35 [ 1] [ 4] [0200] +10:42:35 [ 2] [ 16] [6688990601478009] +10:42:35 [ 3] [ 6] [300000] +10:42:35 [ 4] [ 12] [000000000000] +10:42:35 [ 7] [ 10] [0320104230] +10:42:35 [ 11] [ 6] [718320] +10:42:35 [ 12] [ 6] [104230] +10:42:35 [ 13] [ 4] [0320] +10:42:35 [ 15] [ 4] [0320] +10:42:35 [ 18] [ 4] [6011] +10:42:35 [ 22] [ 3] [900] +10:42:35 [ 25] [ 2] [02] +10:42:35 [ 28] [ 9] [D00000000] +10:42:35 [ 32] [ 6] [621354] +10:42:35 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:42:35 [ 37] [ 12] [507904153840] +10:42:35 [ 41] [ 8] [20001000] +10:42:35 [ 42] [ 15] [NATIVE ] +10:42:35 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:42:35 [ 49] [ 3] [418] +10:42:35 [ 52] [ 16] [B0290573CFBE31A2] +10:42:35 ============================================================================ +10:42:35 + + +waiting on router queue for slot.... +10:42:35 Sending to : +10:42:35 ============================================================================ +10:42:35 ============================================================================ +10:42:35 Slot Id : <224> +10:42:35 Transaction Type : REQUEST +10:42:35 Received From : +10:42:35 ============================================================================ +10:42:35 FNo. Len. Field Value +10:42:35 ============================================================================ +10:42:35 [ 1] [ 4] [0200] +10:42:35 [ 2] [ 16] [6688990601478009] +10:42:35 [ 3] [ 6] [300000] +10:42:35 [ 4] [ 12] [000000000000] +10:42:35 [ 7] [ 10] [0320104230] +10:42:35 [ 11] [ 6] [718320] +10:42:35 [ 12] [ 6] [104230] +10:42:35 [ 13] [ 4] [0320] +10:42:35 [ 15] [ 4] [0320] +10:42:35 [ 18] [ 4] [6011] +10:42:35 [ 22] [ 3] [900] +10:42:35 [ 25] [ 2] [02] +10:42:35 [ 28] [ 9] [D00000000] +10:42:35 [ 32] [ 6] [621354] +10:42:35 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:42:35 [ 37] [ 12] [507904153840] +10:42:35 [ 41] [ 8] [20001000] +10:42:35 [ 42] [ 15] [NATIVE ] +10:42:35 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:42:35 [ 49] [ 3] [418] +10:42:35 [ 52] [ 16] [114E2316C792F4F2] +10:42:35 ============================================================================ +10:42:35 + + +waiting on router queue for slot.... +10:42:35 Sending to : <4> +10:42:35 ============================================================================ +10:42:35 ============================================================================ +10:42:35 Slot Id : <224> +10:42:35 Transaction Type : RESPONSE +10:42:35 Received From : +10:42:35 ============================================================================ +10:42:35 FNo. Len. Field Value +10:42:35 ============================================================================ +10:42:35 [ 1] [ 4] [0210] +10:42:35 [ 2] [ 16] [6688990601478009] +10:42:35 [ 3] [ 6] [300000] +10:42:35 [ 4] [ 12] [000000000000] +10:42:35 [ 7] [ 10] [0320104230] +10:42:35 [ 11] [ 6] [718320] +10:42:35 [ 12] [ 6] [104230] +10:42:35 [ 13] [ 4] [0320] +10:42:35 [ 15] [ 4] [0320] +10:42:35 [ 18] [ 4] [6011] +10:42:35 [ 22] [ 3] [021] +10:42:35 [ 32] [ 6] [621354] +10:42:35 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:42:35 [ 37] [ 12] [507904153840] +10:42:35 [ 38] [ 6] [104026] +10:42:35 [ 39] [ 2] [55] +10:42:35 [ 41] [ 8] [20001000] +10:42:35 [ 49] [ 3] [418] +10:42:35 ============================================================================ +10:42:35 Sending to : +10:42:35 ============================================================================ +10:42:35 + + +waiting on router queue for slot.... +10:42:36 ============================================================================ +10:42:36 Slot Id : <224> +10:42:36 Transaction Type : RESPONSE +10:42:36 Received From : +10:42:36 ============================================================================ +10:42:36 FNo. Len. Field Value +10:42:36 ============================================================================ +10:42:36 [ 1] [ 4] [0210] +10:42:36 [ 2] [ 16] [6688990601478009] +10:42:36 [ 3] [ 6] [300000] +10:42:36 [ 4] [ 12] [000000000000] +10:42:36 [ 7] [ 10] [0320104230] +10:42:36 [ 11] [ 6] [718320] +10:42:36 [ 12] [ 6] [104230] +10:42:36 [ 13] [ 4] [0320] +10:42:36 [ 15] [ 4] [0320] +10:42:36 [ 18] [ 4] [6011] +10:42:36 [ 22] [ 3] [021] +10:42:36 [ 32] [ 6] [621354] +10:42:36 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:42:36 [ 37] [ 12] [507904153840] +10:42:36 [ 38] [ 6] [104026] +10:42:36 [ 39] [ 2] [55] +10:42:36 [ 41] [ 8] [20001000] +10:42:36 [ 49] [ 3] [418] +10:42:36 ============================================================================ +10:42:36 Calculate Source COMM Id = 0 +10:42:36 ============================================================================ +10:42:36 + + +waiting on router queue for slot.... +10:42:46 ============================================================================ +10:42:46 Slot Id : <287> +10:42:46 Transaction Type : REQUEST +10:42:46 Received From : +10:42:46 ============================================================================ +10:42:46 FNo. Len. Field Value +10:42:46 ============================================================================ +10:42:46 [ 1] [ 4] [0800] +10:42:46 [ 7] [ 10] [0320034151] +10:42:46 [ 11] [ 6] [155916] +10:42:46 [ 70] [ 3] [301] +10:42:46 ============================================================================ +10:42:46 + + +waiting on router queue for slot.... +10:42:46 Sending to : +10:42:46 ============================================================================ +10:42:46 ============================================================================ +10:42:46 Slot Id : <287> +10:42:46 Transaction Type : RESPONSE +10:42:46 Received From : +10:42:46 ============================================================================ +10:42:46 FNo. Len. Field Value +10:42:46 ============================================================================ +10:42:46 [ 1] [ 4] [0810] +10:42:46 [ 7] [ 10] [0320034151] +10:42:46 [ 11] [ 6] [155916] +10:42:46 [ 39] [ 2] [00] +10:42:46 [ 70] [ 3] [301] +10:42:46 ============================================================================ +10:42:46 Calculate Source COMM Id = 2 +10:42:46 ============================================================================ +10:42:46 + + +waiting on router queue for slot.... +10:42:50 ============================================================================ +10:42:50 Slot Id : <290> +10:42:50 Transaction Type : REQUEST +10:42:50 Received From : +10:42:50 ============================================================================ +10:42:50 FNo. Len. Field Value +10:42:50 ============================================================================ +10:42:50 [ 1] [ 4] [0200] +10:42:50 [ 2] [ 16] [6213541000538002] +10:42:50 [ 3] [ 6] [011000] +10:42:50 [ 4] [ 12] [000030000000] +10:42:50 [ 7] [ 10] [0320105037] +10:42:50 [ 11] [ 6] [306041] +10:42:50 [ 12] [ 6] [105037] +10:42:50 [ 13] [ 4] [0320] +10:42:50 [ 14] [ 4] [4912] +10:42:50 [ 15] [ 4] [0320] +10:42:50 [ 18] [ 4] [6011] +10:42:50 [ 22] [ 3] [900] +10:42:50 [ 25] [ 2] [02] +10:42:50 [ 28] [ 9] [D00002000] +10:42:50 [ 32] [ 6] [220699] +10:42:50 [ 35] [ 32] [6213541000538002=491212013800770] +10:42:50 [ 37] [ 12] [507900079328] +10:42:50 [ 41] [ 8] [01000700] +10:42:50 [ 42] [ 15] [APTRA ] +10:42:50 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:42:50 [ 49] [ 3] [418] +10:42:50 [ 52] [ 16] [31548790A3E3B830] +10:42:50 ============================================================================ +10:42:50 + + +waiting on router queue for slot.... +10:42:50 Sending to : +10:42:50 ============================================================================ +10:42:50 Sending to : +10:42:50 ============================================================================ +10:42:52 ============================================================================ +10:42:52 Slot Id : <290> +10:42:52 Transaction Type : REQUEST +10:42:52 Received From : +10:42:52 ============================================================================ +10:42:52 FNo. Len. Field Value +10:42:52 ============================================================================ +10:42:52 [ 1] [ 4] [0200] +10:42:52 [ 2] [ 16] [6213541000538002] +10:42:52 [ 3] [ 6] [011000] +10:42:52 [ 4] [ 12] [000030000000] +10:42:52 [ 7] [ 10] [0320105037] +10:42:52 [ 11] [ 6] [306041] +10:42:52 [ 12] [ 6] [105037] +10:42:52 [ 13] [ 4] [0320] +10:42:52 [ 14] [ 4] [4912] +10:42:52 [ 15] [ 4] [0320] +10:42:52 [ 18] [ 4] [6011] +10:42:52 [ 22] [ 3] [900] +10:42:52 [ 25] [ 2] [02] +10:42:52 [ 28] [ 9] [D00002000] +10:42:52 [ 32] [ 6] [220699] +10:42:52 [ 35] [ 32] [6213541000538002=491212013800770] +10:42:52 [ 37] [ 12] [507900079328] +10:42:52 [ 41] [ 8] [01000700] +10:42:52 [ 42] [ 15] [APTRA ] +10:42:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:42:52 [ 49] [ 3] [418] +10:42:52 [ 52] [ 16] [31548790A3E3B830] +10:42:52 ============================================================================ +10:42:52 + + +waiting on router queue for slot.... +10:42:52 Sending to : +10:42:52 ============================================================================ +10:42:52 ============================================================================ +10:42:52 Slot Id : <290> +10:42:52 Transaction Type : REQUEST +10:42:52 Received From : +10:42:52 ============================================================================ +10:42:52 FNo. Len. Field Value +10:42:52 ============================================================================ +10:42:52 [ 1] [ 4] [0200] +10:42:52 [ 2] [ 16] [6213541000538002] +10:42:52 [ 3] [ 6] [011000] +10:42:52 [ 4] [ 12] [000030000000] +10:42:52 [ 7] [ 10] [0320105037] +10:42:52 [ 11] [ 6] [306041] +10:42:52 [ 12] [ 6] [105037] +10:42:52 [ 13] [ 4] [0320] +10:42:52 [ 14] [ 4] [4912] +10:42:52 [ 15] [ 4] [0320] +10:42:52 [ 18] [ 4] [6011] +10:42:52 [ 22] [ 3] [900] +10:42:52 [ 25] [ 2] [02] +10:42:52 [ 28] [ 9] [D00002000] +10:42:52 [ 32] [ 6] [220699] +10:42:52 [ 35] [ 32] [6213541000538002=491212013800770] +10:42:52 [ 37] [ 12] [507900079328] +10:42:52 [ 41] [ 8] [01000700] +10:42:52 [ 42] [ 15] [APTRA ] +10:42:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:42:52 [ 49] [ 3] [418] +10:42:52 [ 52] [ 16] [0149307521B82156] +10:42:52 ============================================================================ +10:42:52 + + +waiting on router queue for slot.... +10:42:52 Sending to : <0> +10:42:52 ============================================================================ +10:42:53 ============================================================================ +10:42:53 Slot Id : <290> +10:42:53 Transaction Type : RESPONSE +10:42:53 Received From : +10:42:53 ============================================================================ +10:42:53 FNo. Len. Field Value +10:42:53 ============================================================================ +10:42:53 [ 1] [ 4] [0210] +10:42:53 [ 2] [ 16] [6213541000538002] +10:42:53 [ 3] [ 6] [011000] +10:42:53 [ 4] [ 12] [000030000000] +10:42:53 [ 7] [ 10] [0320105037] +10:42:53 [ 11] [ 6] [306041] +10:42:53 [ 12] [ 6] [105037] +10:42:53 [ 13] [ 4] [0320] +10:42:53 [ 15] [ 4] [0320] +10:42:53 [ 18] [ 4] [6011] +10:42:53 [ 32] [ 6] [220699] +10:42:53 [ 35] [ 32] [6213541000538002=491212013800770] +10:42:53 [ 37] [ 12] [507900079328] +10:42:53 [ 38] [ 6] [324553] +10:42:53 [ 39] [ 2] [00] +10:42:53 [ 41] [ 8] [01000700] +10:42:53 [ 49] [ 3] [418] +10:42:53 [ 54] [ 40] [1001418C0021638933271002418C002163893327] +10:42:53 ============================================================================ +10:42:53 Sending to : +10:42:53 ============================================================================ +10:42:53 + + +waiting on router queue for slot.... +10:42:54 ============================================================================ +10:42:54 Slot Id : <290> +10:42:54 Transaction Type : RESPONSE +10:42:54 Received From : +10:42:54 ============================================================================ +10:42:54 FNo. Len. Field Value +10:42:54 ============================================================================ +10:42:54 [ 1] [ 4] [0210] +10:42:54 [ 2] [ 16] [6213541000538002] +10:42:54 [ 3] [ 6] [011000] +10:42:54 [ 4] [ 12] [000030000000] +10:42:54 [ 7] [ 10] [0320105037] +10:42:54 [ 11] [ 6] [306041] +10:42:54 [ 12] [ 6] [105037] +10:42:54 [ 13] [ 4] [0320] +10:42:54 [ 15] [ 4] [0320] +10:42:54 [ 18] [ 4] [6011] +10:42:54 [ 32] [ 6] [220699] +10:42:54 [ 35] [ 32] [6213541000538002=491212013800770] +10:42:54 [ 37] [ 12] [507900079328] +10:42:54 [ 38] [ 6] [324553] +10:42:54 [ 39] [ 2] [00] +10:42:54 [ 41] [ 8] [01000700] +10:42:54 [ 49] [ 3] [418] +10:42:54 [ 54] [ 40] [1001418C0021638933271002418C002163893327] +10:42:54 ============================================================================ +10:42:54 Calculate Source COMM Id = 1 +10:42:54 ============================================================================ +10:42:54 + + +waiting on router queue for slot.... +10:43:00 ============================================================================ +10:43:00 Slot Id : <277> +10:43:00 Transaction Type : REQUEST +10:43:00 Received From : +10:43:00 ============================================================================ +10:43:00 FNo. Len. Field Value +10:43:00 ============================================================================ +10:43:00 [ 1] [ 4] [0800] +10:43:00 [ 7] [ 10] [0320034208] +10:43:00 [ 11] [ 6] [155917] +10:43:00 [ 70] [ 3] [301] +10:43:00 ============================================================================ +10:43:00 + + +waiting on router queue for slot.... +10:43:00 Sending to : +10:43:00 ============================================================================ +10:43:00 ============================================================================ +10:43:00 Slot Id : <277> +10:43:00 Transaction Type : RESPONSE +10:43:00 Received From : +10:43:00 ============================================================================ +10:43:00 FNo. Len. Field Value +10:43:00 ============================================================================ +10:43:00 [ 1] [ 4] [0810] +10:43:00 [ 7] [ 10] [0320034208] +10:43:00 [ 11] [ 6] [155917] +10:43:00 [ 39] [ 2] [00] +10:43:00 [ 70] [ 3] [301] +10:43:00 ============================================================================ +10:43:00 Calculate Source COMM Id = 2 +10:43:00 ============================================================================ +10:43:00 + + +waiting on router queue for slot.... +10:43:03 ============================================================================ +10:43:03 Slot Id : <288> +10:43:03 Transaction Type : REQUEST +10:43:03 Received From : +10:43:03 ============================================================================ +10:43:03 FNo. Len. Field Value +10:43:03 ============================================================================ +10:43:03 [ 1] [ 4] [0200] +10:43:03 [ 2] [ 16] [1234010100218503] +10:43:03 [ 3] [ 6] [010000] +10:43:03 [ 4] [ 12] [000030000000] +10:43:03 [ 7] [ 10] [0320104259] +10:43:03 [ 11] [ 6] [718448] +10:43:03 [ 12] [ 6] [104259] +10:43:03 [ 13] [ 4] [0320] +10:43:03 [ 15] [ 4] [0320] +10:43:03 [ 18] [ 4] [6011] +10:43:03 [ 22] [ 3] [900] +10:43:03 [ 25] [ 2] [02] +10:43:03 [ 28] [ 9] [D00002000] +10:43:03 [ 32] [ 6] [621354] +10:43:03 [ 35] [ 32] [1234010100218503=170700011850000] +10:43:03 [ 37] [ 12] [507904381065] +10:43:03 [ 41] [ 8] [03003700] +10:43:03 [ 42] [ 15] [NATIVE ] +10:43:03 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +10:43:03 [ 49] [ 3] [418] +10:43:03 [ 52] [ 16] [56F267FB1BFD4ABD] +10:43:03 ============================================================================ +10:43:03 + + +waiting on router queue for slot.... +10:43:03 Sending to : +10:43:03 ============================================================================ +10:43:03 Sending to : +10:43:03 ============================================================================ +10:43:06 ============================================================================ +10:43:06 Slot Id : <288> +10:43:06 Transaction Type : REQUEST +10:43:06 Received From : +10:43:06 ============================================================================ +10:43:06 FNo. Len. Field Value +10:43:06 ============================================================================ +10:43:06 [ 1] [ 4] [0200] +10:43:06 [ 2] [ 16] [1234010100218503] +10:43:06 [ 3] [ 6] [010000] +10:43:06 [ 4] [ 12] [000030000000] +10:43:06 [ 7] [ 10] [0320104259] +10:43:06 [ 11] [ 6] [718448] +10:43:06 [ 12] [ 6] [104259] +10:43:06 [ 13] [ 4] [0320] +10:43:06 [ 15] [ 4] [0320] +10:43:06 [ 18] [ 4] [6011] +10:43:06 [ 22] [ 3] [900] +10:43:06 [ 25] [ 2] [02] +10:43:06 [ 28] [ 9] [D00002000] +10:43:06 [ 32] [ 6] [621354] +10:43:06 [ 35] [ 32] [1234010100218503=170700011850000] +10:43:06 [ 37] [ 12] [507904381065] +10:43:06 [ 41] [ 8] [03003700] +10:43:06 [ 42] [ 15] [NATIVE ] +10:43:06 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +10:43:06 [ 49] [ 3] [418] +10:43:06 [ 52] [ 16] [56F267FB1BFD4ABD] +10:43:06 ============================================================================ +10:43:06 + + +waiting on router queue for slot.... +10:43:06 Sending to : +10:43:06 ============================================================================ +10:43:06 ============================================================================ +10:43:06 Slot Id : <288> +10:43:06 Transaction Type : REQUEST +10:43:06 Received From : +10:43:06 ============================================================================ +10:43:06 FNo. Len. Field Value +10:43:06 ============================================================================ +10:43:06 [ 1] [ 4] [0200] +10:43:06 [ 2] [ 16] [1234010100218503] +10:43:06 [ 3] [ 6] [010000] +10:43:06 [ 4] [ 12] [000030000000] +10:43:06 [ 7] [ 10] [0320104259] +10:43:06 [ 11] [ 6] [718448] +10:43:06 [ 12] [ 6] [104259] +10:43:06 [ 13] [ 4] [0320] +10:43:06 [ 15] [ 4] [0320] +10:43:06 [ 18] [ 4] [6011] +10:43:06 [ 22] [ 3] [900] +10:43:06 [ 25] [ 2] [02] +10:43:06 [ 28] [ 9] [D00002000] +10:43:06 [ 32] [ 6] [621354] +10:43:06 [ 35] [ 32] [1234010100218503=170700011850000] +10:43:06 [ 37] [ 12] [507904381065] +10:43:06 [ 41] [ 8] [03003700] +10:43:06 [ 42] [ 15] [NATIVE ] +10:43:06 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +10:43:06 [ 49] [ 3] [418] +10:43:06 [ 52] [ 16] [E7E93A88F4FDF67B] +10:43:06 ============================================================================ +10:43:06 + + +waiting on router queue for slot.... +10:43:06 ONUS/OFFUS CARD status [0] +10:43:06 ============================================================================ +10:43:07 ============================================================================ +10:43:07 Slot Id : <236> +10:43:07 Transaction Type : REQUEST +10:43:07 Received From : +10:43:07 ============================================================================ +10:43:07 FNo. Len. Field Value +10:43:07 ============================================================================ +10:43:07 [ 1] [ 4] [0200] +10:43:07 [ 2] [ 16] [6213545000858286] +10:43:07 [ 3] [ 6] [010000] +10:43:07 [ 4] [ 12] [000050000000] +10:43:07 [ 7] [ 10] [0320104058] +10:43:07 [ 11] [ 6] [939346] +10:43:07 [ 12] [ 6] [104058] +10:43:07 [ 13] [ 4] [0320] +10:43:07 [ 15] [ 4] [0320] +10:43:07 [ 18] [ 4] [6011] +10:43:07 [ 19] [ 3] [418] +10:43:07 [ 22] [ 3] [021] +10:43:07 [ 25] [ 2] [01] +10:43:07 [ 28] [ 9] [D00002000] +10:43:07 [ 32] [ 6] [668899] +10:43:07 [ 35] [ 32] [6213545000858286=491212015828065] +10:43:07 [ 37] [ 12] [507900297338] +10:43:07 [ 41] [ 8] [03010006] +10:43:07 [ 42] [ 15] [APT ] +10:43:07 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:43:07 [ 49] [ 3] [418] +10:43:07 [ 52] [ 16] [E515485B5B7E328C] +10:43:07 ============================================================================ +10:43:07 + + +waiting on router queue for slot.... +10:43:07 Sending to : +10:43:07 ============================================================================ +10:43:07 Sending to : +10:43:07 ============================================================================ +10:43:07 ============================================================================ +10:43:07 Slot Id : <236> +10:43:07 Transaction Type : REQUEST +10:43:07 Received From : +10:43:07 ============================================================================ +10:43:07 FNo. Len. Field Value +10:43:07 ============================================================================ +10:43:07 [ 1] [ 4] [0200] +10:43:07 [ 2] [ 16] [6213545000858286] +10:43:07 [ 3] [ 6] [010000] +10:43:07 [ 4] [ 12] [000050000000] +10:43:07 [ 7] [ 10] [0320104058] +10:43:07 [ 11] [ 6] [939346] +10:43:07 [ 12] [ 6] [104058] +10:43:07 [ 13] [ 4] [0320] +10:43:07 [ 15] [ 4] [0320] +10:43:07 [ 18] [ 4] [6011] +10:43:07 [ 19] [ 3] [418] +10:43:07 [ 22] [ 3] [021] +10:43:07 [ 25] [ 2] [01] +10:43:07 [ 28] [ 9] [D00002000] +10:43:07 [ 32] [ 6] [668899] +10:43:07 [ 35] [ 32] [6213545000858286=491212015828065] +10:43:07 [ 37] [ 12] [507900297338] +10:43:07 [ 41] [ 8] [03010006] +10:43:07 [ 42] [ 15] [APT ] +10:43:07 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:43:07 [ 49] [ 3] [418] +10:43:07 [ 52] [ 16] [E515485B5B7E328C] +10:43:07 ============================================================================ +10:43:07 + + +waiting on router queue for slot.... +10:43:07 Sending to : +10:43:07 ============================================================================ +10:43:07 ============================================================================ +10:43:07 Slot Id : <236> +10:43:07 Transaction Type : REQUEST +10:43:07 Received From : +10:43:07 ============================================================================ +10:43:07 FNo. Len. Field Value +10:43:07 ============================================================================ +10:43:07 [ 1] [ 4] [0200] +10:43:07 [ 2] [ 16] [6213545000858286] +10:43:07 [ 3] [ 6] [010000] +10:43:07 [ 4] [ 12] [000050000000] +10:43:07 [ 7] [ 10] [0320104058] +10:43:07 [ 11] [ 6] [939346] +10:43:07 [ 12] [ 6] [104058] +10:43:07 [ 13] [ 4] [0320] +10:43:07 [ 15] [ 4] [0320] +10:43:07 [ 18] [ 4] [6011] +10:43:07 [ 19] [ 3] [418] +10:43:07 [ 22] [ 3] [021] +10:43:07 [ 25] [ 2] [01] +10:43:07 [ 28] [ 9] [D00002000] +10:43:07 [ 32] [ 6] [668899] +10:43:07 [ 35] [ 32] [6213545000858286=491212015828065] +10:43:07 [ 37] [ 12] [507900297338] +10:43:07 [ 41] [ 8] [03010006] +10:43:07 [ 42] [ 15] [APT ] +10:43:07 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:43:07 [ 49] [ 3] [418] +10:43:07 [ 52] [ 16] [06E3F04B9E6DEC0F] +10:43:07 ============================================================================ +10:43:07 + + +waiting on router queue for slot.... +10:43:07 Sending to : <0> +10:43:07 ============================================================================ +10:43:07 ============================================================================ +10:43:07 Slot Id : <271> +10:43:07 Transaction Type : REQUEST +10:43:07 Received From : +10:43:07 ============================================================================ +10:43:07 FNo. Len. Field Value +10:43:07 ============================================================================ +10:43:07 [ 1] [ 4] [0200] +10:43:07 [ 2] [ 16] [6688990601478009] +10:43:07 [ 3] [ 6] [300000] +10:43:07 [ 4] [ 12] [000000000000] +10:43:07 [ 7] [ 10] [0320104303] +10:43:07 [ 11] [ 6] [718469] +10:43:07 [ 12] [ 6] [104303] +10:43:07 [ 13] [ 4] [0320] +10:43:07 [ 15] [ 4] [0320] +10:43:07 [ 18] [ 4] [6011] +10:43:07 [ 22] [ 3] [900] +10:43:07 [ 25] [ 2] [02] +10:43:07 [ 28] [ 9] [D00000000] +10:43:07 [ 32] [ 6] [621354] +10:43:07 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:43:07 [ 37] [ 12] [507904153841] +10:43:07 [ 41] [ 8] [20001000] +10:43:07 [ 42] [ 15] [NATIVE ] +10:43:07 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:43:07 [ 49] [ 3] [418] +10:43:07 [ 52] [ 16] [8DB277BA84EB6C74] +10:43:07 ============================================================================ +10:43:07 + + +waiting on router queue for slot.... +10:43:07 Sending to : +10:43:07 ============================================================================ +10:43:07 Sending to : +10:43:07 ============================================================================ +10:43:08 ============================================================================ +10:43:08 Slot Id : <271> +10:43:08 Transaction Type : REQUEST +10:43:08 Received From : +10:43:08 ============================================================================ +10:43:08 FNo. Len. Field Value +10:43:08 ============================================================================ +10:43:08 [ 1] [ 4] [0200] +10:43:08 [ 2] [ 16] [6688990601478009] +10:43:08 [ 3] [ 6] [300000] +10:43:08 [ 4] [ 12] [000000000000] +10:43:08 [ 7] [ 10] [0320104303] +10:43:08 [ 11] [ 6] [718469] +10:43:08 [ 12] [ 6] [104303] +10:43:08 [ 13] [ 4] [0320] +10:43:08 [ 15] [ 4] [0320] +10:43:08 [ 18] [ 4] [6011] +10:43:08 [ 22] [ 3] [900] +10:43:08 [ 25] [ 2] [02] +10:43:08 [ 28] [ 9] [D00000000] +10:43:08 [ 32] [ 6] [621354] +10:43:08 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:43:08 [ 37] [ 12] [507904153841] +10:43:08 [ 41] [ 8] [20001000] +10:43:08 [ 42] [ 15] [NATIVE ] +10:43:08 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:43:08 [ 49] [ 3] [418] +10:43:08 [ 52] [ 16] [8DB277BA84EB6C74] +10:43:08 ============================================================================ +10:43:08 + + +waiting on router queue for slot.... +10:43:08 Sending to : +10:43:08 ============================================================================ +10:43:08 ============================================================================ +10:43:08 Slot Id : <271> +10:43:08 Transaction Type : REQUEST +10:43:08 Received From : +10:43:08 ============================================================================ +10:43:08 FNo. Len. Field Value +10:43:08 ============================================================================ +10:43:08 [ 1] [ 4] [0200] +10:43:08 [ 2] [ 16] [6688990601478009] +10:43:08 [ 3] [ 6] [300000] +10:43:08 [ 4] [ 12] [000000000000] +10:43:08 [ 7] [ 10] [0320104303] +10:43:08 [ 11] [ 6] [718469] +10:43:08 [ 12] [ 6] [104303] +10:43:08 [ 13] [ 4] [0320] +10:43:08 [ 15] [ 4] [0320] +10:43:08 [ 18] [ 4] [6011] +10:43:08 [ 22] [ 3] [900] +10:43:08 [ 25] [ 2] [02] +10:43:08 [ 28] [ 9] [D00000000] +10:43:08 [ 32] [ 6] [621354] +10:43:08 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:43:08 [ 37] [ 12] [507904153841] +10:43:08 [ 41] [ 8] [20001000] +10:43:08 [ 42] [ 15] [NATIVE ] +10:43:08 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:43:08 [ 49] [ 3] [418] +10:43:08 [ 52] [ 16] [E1563D6309AF5708] +10:43:08 ============================================================================ +10:43:08 + + +waiting on router queue for slot.... +10:43:08 Sending to : <4> +10:43:08 ============================================================================ +10:43:08 ============================================================================ +10:43:08 Slot Id : <236> +10:43:08 Transaction Type : RESPONSE +10:43:08 Received From : +10:43:08 ============================================================================ +10:43:08 FNo. Len. Field Value +10:43:08 ============================================================================ +10:43:08 [ 1] [ 4] [0210] +10:43:08 [ 2] [ 16] [6213545000858286] +10:43:08 [ 3] [ 6] [010000] +10:43:08 [ 4] [ 12] [000050000000] +10:43:08 [ 7] [ 10] [0320104058] +10:43:08 [ 11] [ 6] [939346] +10:43:08 [ 12] [ 6] [104058] +10:43:08 [ 13] [ 4] [0320] +10:43:08 [ 15] [ 4] [0320] +10:43:08 [ 18] [ 4] [6011] +10:43:08 [ 19] [ 3] [418] +10:43:08 [ 32] [ 6] [668899] +10:43:08 [ 35] [ 32] [6213545000858286=491212015828065] +10:43:08 [ 37] [ 12] [507900297338] +10:43:08 [ 38] [ 6] [549663] +10:43:08 [ 39] [ 2] [00] +10:43:08 [ 41] [ 8] [03010006] +10:43:08 [ 49] [ 3] [418] +10:43:08 [ 54] [ 40] [0001418C0000657476060002418C000065747606] +10:43:08 ============================================================================ +10:43:08 Sending to : +10:43:08 ============================================================================ +10:43:08 + + +waiting on router queue for slot.... +10:43:10 ============================================================================ +10:43:10 Slot Id : <271> +10:43:10 Transaction Type : RESPONSE +10:43:10 Received From : +10:43:10 ============================================================================ +10:43:10 FNo. Len. Field Value +10:43:10 ============================================================================ +10:43:10 [ 1] [ 4] [0210] +10:43:10 [ 2] [ 16] [6688990601478009] +10:43:10 [ 3] [ 6] [300000] +10:43:10 [ 4] [ 12] [000000000000] +10:43:10 [ 11] [ 6] [718469] +10:43:10 [ 12] [ 6] [104303] +10:43:10 [ 15] [ 4] [0320] +10:43:10 [ 18] [ 4] [6011] +10:43:10 [ 32] [ 6] [621354] +10:43:10 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:43:10 [ 37] [ 12] [507904153841] +10:43:10 [ 38] [ 6] [188841] +10:43:10 [ 39] [ 2] [00] +10:43:10 [ 41] [ 8] [20001000] +10:43:10 [ 49] [ 3] [418] +10:43:10 [ 54] [ 20] [0002418C000002307527] +10:43:10 ============================================================================ +10:43:10 Sending to : +10:43:10 ============================================================================ +10:43:10 + + +waiting on router queue for slot.... +10:43:10 ============================================================================ +10:43:10 Slot Id : <236> +10:43:10 Transaction Type : RESPONSE +10:43:10 Received From : +10:43:10 ============================================================================ +10:43:10 FNo. Len. Field Value +10:43:10 ============================================================================ +10:43:10 [ 1] [ 4] [0210] +10:43:10 [ 2] [ 16] [6213545000858286] +10:43:10 [ 3] [ 6] [010000] +10:43:10 [ 4] [ 12] [000050000000] +10:43:10 [ 7] [ 10] [0320104058] +10:43:10 [ 11] [ 6] [939346] +10:43:10 [ 12] [ 6] [104058] +10:43:10 [ 13] [ 4] [0320] +10:43:10 [ 15] [ 4] [0320] +10:43:10 [ 18] [ 4] [6011] +10:43:10 [ 19] [ 3] [418] +10:43:10 [ 32] [ 6] [668899] +10:43:10 [ 35] [ 32] [6213545000858286=491212015828065] +10:43:10 [ 37] [ 12] [507900297338] +10:43:10 [ 38] [ 6] [549663] +10:43:10 [ 39] [ 2] [00] +10:43:10 [ 41] [ 8] [03010006] +10:43:10 [ 49] [ 3] [418] +10:43:10 [ 54] [ 40] [0001418C0000657476060002418C000065747606] +10:43:10 ============================================================================ +10:43:10 Calculate Source COMM Id = 4 +10:43:10 ============================================================================ +10:43:10 + + +waiting on router queue for slot.... +10:43:11 ============================================================================ +10:43:11 Slot Id : <267> +10:43:11 Transaction Type : REQUEST +10:43:11 Received From : +10:43:11 ============================================================================ +10:43:11 FNo. Len. Field Value +10:43:11 ============================================================================ +10:43:11 [ 1] [ 4] [0800] +10:43:11 [ 7] [ 10] [0320034218] +10:43:11 [ 11] [ 6] [155918] +10:43:11 [ 70] [ 3] [301] +10:43:11 ============================================================================ +10:43:11 + + +waiting on router queue for slot.... +10:43:11 Sending to : +10:43:11 ============================================================================ +10:43:11 ============================================================================ +10:43:11 Slot Id : <267> +10:43:11 Transaction Type : RESPONSE +10:43:11 Received From : +10:43:11 ============================================================================ +10:43:11 FNo. Len. Field Value +10:43:11 ============================================================================ +10:43:11 [ 1] [ 4] [0810] +10:43:11 [ 7] [ 10] [0320034218] +10:43:11 [ 11] [ 6] [155918] +10:43:11 [ 39] [ 2] [00] +10:43:11 [ 70] [ 3] [301] +10:43:11 ============================================================================ +10:43:11 Calculate Source COMM Id = 2 +10:43:11 ============================================================================ +10:43:11 + + +waiting on router queue for slot.... +10:43:11 ============================================================================ +10:43:11 Slot Id : <293> +10:43:11 Transaction Type : REQUEST +10:43:11 Received From : +10:43:11 ============================================================================ +10:43:11 FNo. Len. Field Value +10:43:11 ============================================================================ +10:43:11 [ 1] [ 4] [0200] +10:43:11 [ 2] [ 16] [6213544001420303] +10:43:11 [ 3] [ 6] [010000] +10:43:11 [ 4] [ 12] [000020000000] +10:43:11 [ 7] [ 10] [0320104102] +10:43:11 [ 11] [ 6] [939351] +10:43:11 [ 12] [ 6] [104102] +10:43:11 [ 13] [ 4] [0320] +10:43:11 [ 15] [ 4] [0320] +10:43:11 [ 18] [ 4] [6011] +10:43:11 [ 19] [ 3] [418] +10:43:11 [ 22] [ 3] [021] +10:43:11 [ 25] [ 2] [01] +10:43:11 [ 28] [ 9] [D00002000] +10:43:11 [ 32] [ 6] [668899] +10:43:11 [ 35] [ 32] [6213544001420303=491212012030467] +10:43:11 [ 37] [ 12] [507901963463] +10:43:11 [ 41] [ 8] [03020019] +10:43:11 [ 42] [ 15] [APT ] +10:43:11 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +10:43:11 [ 49] [ 3] [418] +10:43:11 [ 52] [ 16] [C288F50D78E76760] +10:43:11 ============================================================================ +10:43:11 + + +waiting on router queue for slot.... +10:43:11 Sending to : +10:43:11 ============================================================================ +10:43:11 Sending to : +10:43:11 ============================================================================ +10:43:11 ============================================================================ +10:43:11 Slot Id : <293> +10:43:11 Transaction Type : REQUEST +10:43:11 Received From : +10:43:11 ============================================================================ +10:43:11 FNo. Len. Field Value +10:43:11 ============================================================================ +10:43:11 [ 1] [ 4] [0200] +10:43:11 [ 2] [ 16] [6213544001420303] +10:43:11 [ 3] [ 6] [010000] +10:43:11 [ 4] [ 12] [000020000000] +10:43:11 [ 7] [ 10] [0320104102] +10:43:11 [ 11] [ 6] [939351] +10:43:11 [ 12] [ 6] [104102] +10:43:11 [ 13] [ 4] [0320] +10:43:11 [ 15] [ 4] [0320] +10:43:11 [ 18] [ 4] [6011] +10:43:11 [ 19] [ 3] [418] +10:43:11 [ 22] [ 3] [021] +10:43:11 [ 25] [ 2] [01] +10:43:11 [ 28] [ 9] [D00002000] +10:43:11 [ 32] [ 6] [668899] +10:43:11 [ 35] [ 32] [6213544001420303=491212012030467] +10:43:11 [ 37] [ 12] [507901963463] +10:43:11 [ 41] [ 8] [03020019] +10:43:11 [ 42] [ 15] [APT ] +10:43:11 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +10:43:11 [ 49] [ 3] [418] +10:43:11 [ 52] [ 16] [C288F50D78E76760] +10:43:11 ============================================================================ +10:43:11 + + +waiting on router queue for slot.... +10:43:11 Sending to : +10:43:11 ============================================================================ +10:43:11 ============================================================================ +10:43:11 Slot Id : <293> +10:43:11 Transaction Type : REQUEST +10:43:11 Received From : +10:43:11 ============================================================================ +10:43:11 FNo. Len. Field Value +10:43:11 ============================================================================ +10:43:11 [ 1] [ 4] [0200] +10:43:11 [ 2] [ 16] [6213544001420303] +10:43:11 [ 3] [ 6] [010000] +10:43:11 [ 4] [ 12] [000020000000] +10:43:11 [ 7] [ 10] [0320104102] +10:43:11 [ 11] [ 6] [939351] +10:43:11 [ 12] [ 6] [104102] +10:43:11 [ 13] [ 4] [0320] +10:43:11 [ 15] [ 4] [0320] +10:43:11 [ 18] [ 4] [6011] +10:43:11 [ 19] [ 3] [418] +10:43:11 [ 22] [ 3] [021] +10:43:11 [ 25] [ 2] [01] +10:43:11 [ 28] [ 9] [D00002000] +10:43:11 [ 32] [ 6] [668899] +10:43:11 [ 35] [ 32] [6213544001420303=491212012030467] +10:43:11 [ 37] [ 12] [507901963463] +10:43:11 [ 41] [ 8] [03020019] +10:43:11 [ 42] [ 15] [APT ] +10:43:11 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +10:43:11 [ 49] [ 3] [418] +10:43:11 [ 52] [ 16] [2F687652A0A52236] +10:43:11 ============================================================================ +10:43:11 + + +waiting on router queue for slot.... +10:43:11 Sending to : <0> +10:43:11 ============================================================================ +10:43:12 ============================================================================ +10:43:12 Slot Id : <271> +10:43:12 Transaction Type : RESPONSE +10:43:12 Received From : +10:43:12 ============================================================================ +10:43:12 FNo. Len. Field Value +10:43:12 ============================================================================ +10:43:12 [ 1] [ 4] [0210] +10:43:12 [ 2] [ 16] [6688990601478009] +10:43:12 [ 3] [ 6] [300000] +10:43:12 [ 4] [ 12] [000000000000] +10:43:12 [ 11] [ 6] [718469] +10:43:12 [ 12] [ 6] [104303] +10:43:12 [ 15] [ 4] [0320] +10:43:12 [ 18] [ 4] [6011] +10:43:12 [ 32] [ 6] [621354] +10:43:12 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:43:12 [ 37] [ 12] [507904153841] +10:43:12 [ 38] [ 6] [188841] +10:43:12 [ 39] [ 2] [00] +10:43:12 [ 41] [ 8] [20001000] +10:43:12 [ 49] [ 3] [418] +10:43:12 [ 54] [ 20] [0002418C000002307527] +10:43:12 ============================================================================ +10:43:12 Calculate Source COMM Id = 0 +10:43:12 ============================================================================ +10:43:12 + + +waiting on router queue for slot.... +10:43:14 ============================================================================ +10:43:14 Slot Id : <293> +10:43:14 Transaction Type : RESPONSE +10:43:14 Received From : +10:43:14 ============================================================================ +10:43:14 FNo. Len. Field Value +10:43:14 ============================================================================ +10:43:14 [ 1] [ 4] [0210] +10:43:14 [ 2] [ 16] [6213544001420303] +10:43:14 [ 3] [ 6] [010000] +10:43:14 [ 4] [ 12] [000020000000] +10:43:14 [ 7] [ 10] [0320104102] +10:43:14 [ 11] [ 6] [939351] +10:43:14 [ 12] [ 6] [104102] +10:43:14 [ 13] [ 4] [0320] +10:43:14 [ 15] [ 4] [0320] +10:43:14 [ 18] [ 4] [6011] +10:43:14 [ 19] [ 3] [418] +10:43:14 [ 32] [ 6] [668899] +10:43:14 [ 35] [ 32] [6213544001420303=491212012030467] +10:43:14 [ 37] [ 12] [507901963463] +10:43:14 [ 38] [ 6] [403808] +10:43:14 [ 39] [ 2] [00] +10:43:14 [ 41] [ 8] [03020019] +10:43:14 [ 49] [ 3] [418] +10:43:14 [ 54] [ 40] [0001418C0000202894700002418C000020289470] +10:43:14 ============================================================================ +10:43:14 Sending to : +10:43:14 ============================================================================ +10:43:14 + + +waiting on router queue for slot.... +10:43:16 ============================================================================ +10:43:16 Slot Id : <293> +10:43:16 Transaction Type : RESPONSE +10:43:16 Received From : +10:43:16 ============================================================================ +10:43:16 FNo. Len. Field Value +10:43:16 ============================================================================ +10:43:16 [ 1] [ 4] [0210] +10:43:16 [ 2] [ 16] [6213544001420303] +10:43:16 [ 3] [ 6] [010000] +10:43:16 [ 4] [ 12] [000020000000] +10:43:16 [ 7] [ 10] [0320104102] +10:43:16 [ 11] [ 6] [939351] +10:43:16 [ 12] [ 6] [104102] +10:43:16 [ 13] [ 4] [0320] +10:43:16 [ 15] [ 4] [0320] +10:43:16 [ 18] [ 4] [6011] +10:43:16 [ 19] [ 3] [418] +10:43:16 [ 32] [ 6] [668899] +10:43:16 [ 35] [ 32] [6213544001420303=491212012030467] +10:43:16 [ 37] [ 12] [507901963463] +10:43:16 [ 38] [ 6] [403808] +10:43:16 [ 39] [ 2] [00] +10:43:16 [ 41] [ 8] [03020019] +10:43:16 [ 49] [ 3] [418] +10:43:16 [ 54] [ 40] [0001418C0000202894700002418C000020289470] +10:43:16 ============================================================================ +10:43:16 Calculate Source COMM Id = 4 +10:43:16 ============================================================================ +10:43:16 + + +waiting on router queue for slot.... +10:43:21 ============================================================================ +10:43:21 Slot Id : <278> +10:43:21 Transaction Type : REQUEST +10:43:21 Received From : +10:43:21 ============================================================================ +10:43:21 FNo. Len. Field Value +10:43:21 ============================================================================ +10:43:21 [ 1] [ 4] [0200] +10:43:21 [ 2] [ 16] [1808930400011656] +10:43:21 [ 3] [ 6] [011000] +10:43:21 [ 4] [ 12] [000050000000] +10:43:21 [ 7] [ 10] [0320104317] +10:43:21 [ 11] [ 6] [718535] +10:43:21 [ 12] [ 6] [104317] +10:43:21 [ 13] [ 4] [0320] +10:43:21 [ 15] [ 4] [0320] +10:43:21 [ 18] [ 4] [6011] +10:43:21 [ 22] [ 3] [900] +10:43:21 [ 25] [ 2] [02] +10:43:21 [ 28] [ 9] [D00002000] +10:43:21 [ 32] [ 6] [621354] +10:43:21 [ 35] [ 27] [1808930400011656=1803500809] +10:43:21 [ 37] [ 12] [507904031656] +10:43:21 [ 41] [ 8] [09001700] +10:43:21 [ 42] [ 15] [NATIVE ] +10:43:21 [ 43] [ 40] [Xaysetha Unit 02 Xaysetha LAO] +10:43:21 [ 49] [ 3] [418] +10:43:21 [ 52] [ 16] [FA613F42D3659E24] +10:43:21 ============================================================================ +10:43:21 + + +waiting on router queue for slot.... +10:43:21 Sending to : +10:43:21 ============================================================================ +10:43:21 Sending to : +10:43:21 ============================================================================ +10:43:22 ============================================================================ +10:43:22 Slot Id : <217> +10:43:22 Transaction Type : REQUEST +10:43:22 Received From : +10:43:22 ============================================================================ +10:43:22 FNo. Len. Field Value +10:43:22 ============================================================================ +10:43:22 [ 1] [ 4] [0800] +10:43:22 [ 2] [ 5] [02531] +10:43:22 [ 3] [ 6] [579108] +10:43:22 [ 7] [ 10] [0320034322] +10:43:22 [ 11] [ 6] [807034] +10:43:22 [ 15] [ 10] [0320034322] +10:43:22 [ 37] [ 11] [57910807034] +10:43:22 [ 70] [ 3] [001] +10:43:22 ============================================================================ +10:43:22 + + +waiting on router queue for slot.... +10:43:22 ============================================================================ +10:43:22 Slot Id : <217> +10:43:22 Transaction Type : RESPONSE +10:43:22 Received From : +10:43:22 ============================================================================ +10:43:22 FNo. Len. Field Value +10:43:22 ============================================================================ +10:43:22 [ 1] [ 4] [0810] +10:43:22 [ 7] [ 10] [0320034322] +10:43:22 [ 11] [ 6] [807034] +10:43:22 [ 15] [ 4] [0320] +10:43:22 [ 37] [ 12] [57910807034] +10:43:22 [ 39] [ 2] [00] +10:43:22 [ 70] [ 3] [001] +10:43:22 ============================================================================ +10:43:22 Sending to : +10:43:22 ============================================================================ +10:43:22 + + +waiting on router queue for slot.... +10:43:22 ============================================================================ +10:43:22 Slot Id : <278> +10:43:22 Transaction Type : REQUEST +10:43:22 Received From : +10:43:22 ============================================================================ +10:43:22 FNo. Len. Field Value +10:43:22 ============================================================================ +10:43:22 [ 1] [ 4] [0200] +10:43:22 [ 2] [ 16] [1808930400011656] +10:43:22 [ 3] [ 6] [011000] +10:43:22 [ 4] [ 12] [000050000000] +10:43:22 [ 7] [ 10] [0320104317] +10:43:22 [ 11] [ 6] [718535] +10:43:22 [ 12] [ 6] [104317] +10:43:22 [ 13] [ 4] [0320] +10:43:22 [ 15] [ 4] [0320] +10:43:22 [ 18] [ 4] [6011] +10:43:22 [ 22] [ 3] [900] +10:43:22 [ 25] [ 2] [02] +10:43:22 [ 28] [ 9] [D00002000] +10:43:22 [ 32] [ 6] [621354] +10:43:22 [ 35] [ 27] [1808930400011656=1803500809] +10:43:22 [ 37] [ 12] [507904031656] +10:43:22 [ 41] [ 8] [09001700] +10:43:22 [ 42] [ 15] [NATIVE ] +10:43:22 [ 43] [ 40] [Xaysetha Unit 02 Xaysetha LAO] +10:43:22 [ 49] [ 3] [418] +10:43:22 [ 52] [ 16] [FA613F42D3659E24] +10:43:22 ============================================================================ +10:43:22 + + +waiting on router queue for slot.... +10:43:22 Sending to : +10:43:22 ============================================================================ +10:43:22 ============================================================================ +10:43:22 Slot Id : <278> +10:43:22 Transaction Type : REQUEST +10:43:22 Received From : +10:43:22 ============================================================================ +10:43:22 FNo. Len. Field Value +10:43:22 ============================================================================ +10:43:22 [ 1] [ 4] [0200] +10:43:22 [ 2] [ 16] [1808930400011656] +10:43:22 [ 3] [ 6] [011000] +10:43:22 [ 4] [ 12] [000050000000] +10:43:22 [ 7] [ 10] [0320104317] +10:43:22 [ 11] [ 6] [718535] +10:43:22 [ 12] [ 6] [104317] +10:43:22 [ 13] [ 4] [0320] +10:43:22 [ 15] [ 4] [0320] +10:43:22 [ 18] [ 4] [6011] +10:43:22 [ 22] [ 3] [900] +10:43:22 [ 25] [ 2] [02] +10:43:22 [ 28] [ 9] [D00002000] +10:43:22 [ 32] [ 6] [621354] +10:43:22 [ 35] [ 27] [1808930400011656=1803500809] +10:43:22 [ 37] [ 12] [507904031656] +10:43:22 [ 41] [ 8] [09001700] +10:43:22 [ 42] [ 15] [NATIVE ] +10:43:22 [ 43] [ 40] [Xaysetha Unit 02 Xaysetha LAO] +10:43:22 [ 49] [ 3] [418] +10:43:22 [ 52] [ 16] [D672C36E20A95D90] +10:43:22 ============================================================================ +10:43:22 + + +waiting on router queue for slot.... +10:43:22 Sending to : <2> +10:43:22 ============================================================================ +10:43:22 ============================================================================ +10:43:22 Slot Id : <294> +10:43:22 Transaction Type : REQUEST +10:43:22 Received From : +10:43:22 ============================================================================ +10:43:22 FNo. Len. Field Value +10:43:22 ============================================================================ +10:43:22 [ 1] [ 4] [0800] +10:43:22 [ 7] [ 10] [0320034229] +10:43:22 [ 11] [ 6] [155919] +10:43:22 [ 70] [ 3] [301] +10:43:22 ============================================================================ +10:43:22 + + +waiting on router queue for slot.... +10:43:22 Sending to : +10:43:22 ============================================================================ +10:43:22 ============================================================================ +10:43:22 Slot Id : <294> +10:43:22 Transaction Type : RESPONSE +10:43:22 Received From : +10:43:22 ============================================================================ +10:43:22 FNo. Len. Field Value +10:43:22 ============================================================================ +10:43:22 [ 1] [ 4] [0810] +10:43:22 [ 7] [ 10] [0320034229] +10:43:22 [ 11] [ 6] [155919] +10:43:22 [ 39] [ 2] [00] +10:43:22 [ 70] [ 3] [301] +10:43:22 ============================================================================ +10:43:22 Calculate Source COMM Id = 2 +10:43:22 ============================================================================ +10:43:22 + + +waiting on router queue for slot.... +10:43:29 ============================================================================ +10:43:29 Slot Id : <278> +10:43:29 Transaction Type : RESPONSE +10:43:29 Received From : +10:43:29 ============================================================================ +10:43:29 FNo. Len. Field Value +10:43:29 ============================================================================ +10:43:29 [ 1] [ 4] [0210] +10:43:29 [ 2] [ 16] [1808930400011656] +10:43:29 [ 3] [ 6] [011000] +10:43:29 [ 4] [ 12] [000050000000] +10:43:29 [ 6] [ 12] [000050000000] +10:43:29 [ 7] [ 10] [0320104317] +10:43:29 [ 11] [ 6] [718535] +10:43:29 [ 12] [ 6] [104317] +10:43:29 [ 13] [ 4] [0320] +10:43:29 [ 18] [ 4] [6011] +10:43:29 [ 19] [ 3] [418] +10:43:29 [ 22] [ 3] [021] +10:43:29 [ 32] [ 6] [621354] +10:43:29 [ 35] [ 27] [1808930400011656=1803500809] +10:43:29 [ 37] [ 12] [507904031656] +10:43:29 [ 38] [ 6] [718535] +10:43:29 [ 39] [ 2] [00] +10:43:29 [ 41] [ 8] [09001700] +10:43:29 [ 49] [ 3] [418] +10:43:29 [ 52] [ 16] [D672C36E20A95D90] +10:43:29 [ 54] [ 20] [1001418C000758053600] +10:43:29 ============================================================================ +10:43:29 Sending to : +10:43:29 ============================================================================ +10:43:29 + + +waiting on router queue for slot.... +10:43:31 ============================================================================ +10:43:31 Slot Id : <278> +10:43:31 Transaction Type : RESPONSE +10:43:31 Received From : +10:43:31 ============================================================================ +10:43:31 FNo. Len. Field Value +10:43:31 ============================================================================ +10:43:31 [ 1] [ 4] [0210] +10:43:31 [ 2] [ 16] [1808930400011656] +10:43:31 [ 3] [ 6] [011000] +10:43:31 [ 4] [ 12] [000050000000] +10:43:31 [ 6] [ 12] [000050000000] +10:43:31 [ 7] [ 10] [0320104317] +10:43:31 [ 11] [ 6] [718535] +10:43:31 [ 12] [ 6] [104317] +10:43:31 [ 13] [ 4] [0320] +10:43:31 [ 18] [ 4] [6011] +10:43:31 [ 19] [ 3] [418] +10:43:31 [ 22] [ 3] [021] +10:43:31 [ 32] [ 6] [621354] +10:43:31 [ 35] [ 27] [1808930400011656=1803500809] +10:43:31 [ 37] [ 12] [507904031656] +10:43:31 [ 38] [ 6] [718535] +10:43:31 [ 39] [ 2] [00] +10:43:31 [ 41] [ 8] [09001700] +10:43:31 [ 49] [ 3] [418] +10:43:31 [ 52] [ 16] [D672C36E20A95D90] +10:43:31 [ 54] [ 20] [1001418C000758053600] +10:43:31 ============================================================================ +10:43:31 Calculate Source COMM Id = 0 +10:43:31 ============================================================================ +10:43:31 + + +waiting on router queue for slot.... +10:43:37 ============================================================================ +10:43:37 Slot Id : <303> +10:43:37 Transaction Type : REQUEST +10:43:37 Received From : +10:43:37 ============================================================================ +10:43:37 FNo. Len. Field Value +10:43:37 ============================================================================ +10:43:37 [ 1] [ 4] [0800] +10:43:37 [ 7] [ 10] [0320034244] +10:43:37 [ 11] [ 6] [155920] +10:43:37 [ 70] [ 3] [301] +10:43:37 ============================================================================ +10:43:37 + + +waiting on router queue for slot.... +10:43:37 Sending to : +10:43:37 ============================================================================ +10:43:37 ============================================================================ +10:43:37 Slot Id : <303> +10:43:37 Transaction Type : RESPONSE +10:43:37 Received From : +10:43:37 ============================================================================ +10:43:37 FNo. Len. Field Value +10:43:37 ============================================================================ +10:43:37 [ 1] [ 4] [0810] +10:43:37 [ 7] [ 10] [0320034244] +10:43:37 [ 11] [ 6] [155920] +10:43:37 [ 39] [ 2] [00] +10:43:37 [ 70] [ 3] [301] +10:43:37 ============================================================================ +10:43:37 Calculate Source COMM Id = 2 +10:43:37 ============================================================================ +10:43:37 + + +waiting on router queue for slot.... +10:43:47 ============================================================================ +10:43:47 Slot Id : <298> +10:43:47 Transaction Type : REQUEST +10:43:47 Received From : +10:43:47 ============================================================================ +10:43:47 FNo. Len. Field Value +10:43:47 ============================================================================ +10:43:47 [ 1] [ 4] [0800] +10:43:47 [ 7] [ 10] [0320034255] +10:43:47 [ 11] [ 6] [155921] +10:43:47 [ 70] [ 3] [301] +10:43:47 ============================================================================ +10:43:47 + + +waiting on router queue for slot.... +10:43:47 Sending to : +10:43:47 ============================================================================ +10:43:47 ============================================================================ +10:43:47 Slot Id : <298> +10:43:47 Transaction Type : RESPONSE +10:43:47 Received From : +10:43:47 ============================================================================ +10:43:47 FNo. Len. Field Value +10:43:47 ============================================================================ +10:43:47 [ 1] [ 4] [0810] +10:43:47 [ 7] [ 10] [0320034255] +10:43:47 [ 11] [ 6] [155921] +10:43:47 [ 39] [ 2] [00] +10:43:47 [ 70] [ 3] [301] +10:43:47 ============================================================================ +10:43:47 Calculate Source COMM Id = 2 +10:43:47 ============================================================================ +10:43:47 + + +waiting on router queue for slot.... +10:43:54 ============================================================================ +10:43:54 Slot Id : <257> +10:43:54 Transaction Type : REQUEST +10:43:54 Received From : +10:43:54 ============================================================================ +10:43:54 FNo. Len. Field Value +10:43:54 ============================================================================ +10:43:54 [ 1] [ 4] [0200] +10:43:54 [ 2] [ 16] [6213545001065238] +10:43:54 [ 3] [ 6] [010000] +10:43:54 [ 4] [ 12] [000100000000] +10:43:54 [ 7] [ 10] [0320034301] +10:43:54 [ 11] [ 6] [268192] +10:43:54 [ 12] [ 6] [104301] +10:43:54 [ 13] [ 4] [0320] +10:43:54 [ 14] [ 4] [4912] +10:43:54 [ 15] [ 4] [0320] +10:43:54 [ 18] [ 4] [6011] +10:43:54 [ 19] [ 3] [418] +10:43:54 [ 22] [ 3] [021] +10:43:54 [ 25] [ 2] [01] +10:43:54 [ 28] [ 9] [D00002000] +10:43:54 [ 32] [ 6] [180893] +10:43:54 [ 35] [ 32] [6213545001065238=491212016523253] +10:43:54 [ 37] [ 12] [507903268192] +10:43:54 [ 41] [ 8] [0324BKDT] +10:43:54 [ 42] [ 15] [999999 ] +10:43:54 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:43:54 [ 49] [ 3] [418] +10:43:54 [ 52] [ 16] [2A9D193CF7157E16] +10:43:54 ============================================================================ +10:43:54 + + +waiting on router queue for slot.... +10:43:54 Sending to : +10:43:54 ============================================================================ +10:43:54 Sending to : +10:43:54 ============================================================================ +10:43:54 ============================================================================ +10:43:54 Slot Id : <257> +10:43:54 Transaction Type : REQUEST +10:43:54 Received From : +10:43:54 ============================================================================ +10:43:54 FNo. Len. Field Value +10:43:54 ============================================================================ +10:43:54 [ 1] [ 4] [0200] +10:43:54 [ 2] [ 16] [6213545001065238] +10:43:54 [ 3] [ 6] [010000] +10:43:54 [ 4] [ 12] [000100000000] +10:43:54 [ 7] [ 10] [0320034301] +10:43:54 [ 11] [ 6] [268192] +10:43:54 [ 12] [ 6] [104301] +10:43:54 [ 13] [ 4] [0320] +10:43:54 [ 14] [ 4] [4912] +10:43:54 [ 15] [ 4] [0320] +10:43:54 [ 18] [ 4] [6011] +10:43:54 [ 19] [ 3] [418] +10:43:54 [ 22] [ 3] [021] +10:43:54 [ 25] [ 2] [01] +10:43:54 [ 28] [ 9] [D00002000] +10:43:54 [ 32] [ 6] [180893] +10:43:54 [ 35] [ 32] [6213545001065238=491212016523253] +10:43:54 [ 37] [ 12] [507903268192] +10:43:54 [ 41] [ 8] [0324BKDT] +10:43:54 [ 42] [ 15] [999999 ] +10:43:54 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:43:54 [ 49] [ 3] [418] +10:43:54 [ 52] [ 16] [2A9D193CF7157E16] +10:43:54 ============================================================================ +10:43:54 + + +waiting on router queue for slot.... +10:43:54 Sending to : +10:43:54 ============================================================================ +10:43:54 ============================================================================ +10:43:54 Slot Id : <257> +10:43:54 Transaction Type : REQUEST +10:43:54 Received From : +10:43:54 ============================================================================ +10:43:54 FNo. Len. Field Value +10:43:54 ============================================================================ +10:43:54 [ 1] [ 4] [0200] +10:43:54 [ 2] [ 16] [6213545001065238] +10:43:54 [ 3] [ 6] [010000] +10:43:54 [ 4] [ 12] [000100000000] +10:43:54 [ 7] [ 10] [0320034301] +10:43:54 [ 11] [ 6] [268192] +10:43:54 [ 12] [ 6] [104301] +10:43:54 [ 13] [ 4] [0320] +10:43:54 [ 14] [ 4] [4912] +10:43:54 [ 15] [ 4] [0320] +10:43:54 [ 18] [ 4] [6011] +10:43:54 [ 19] [ 3] [418] +10:43:54 [ 22] [ 3] [021] +10:43:54 [ 25] [ 2] [01] +10:43:54 [ 28] [ 9] [D00002000] +10:43:54 [ 32] [ 6] [180893] +10:43:54 [ 35] [ 32] [6213545001065238=491212016523253] +10:43:54 [ 37] [ 12] [507903268192] +10:43:54 [ 41] [ 8] [0324BKDT] +10:43:54 [ 42] [ 15] [999999 ] +10:43:54 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:43:54 [ 49] [ 3] [418] +10:43:54 [ 52] [ 16] [750CB2420E1A247A] +10:43:54 ============================================================================ +10:43:54 + + +waiting on router queue for slot.... +10:43:54 Sending to : <0> +10:43:54 ============================================================================ +10:43:55 ============================================================================ +10:43:55 Slot Id : <257> +10:43:55 Transaction Type : RESPONSE +10:43:55 Received From : +10:43:55 ============================================================================ +10:43:55 FNo. Len. Field Value +10:43:55 ============================================================================ +10:43:55 [ 1] [ 4] [0210] +10:43:55 [ 2] [ 16] [6213545001065238] +10:43:55 [ 3] [ 6] [010000] +10:43:55 [ 4] [ 12] [000100000000] +10:43:55 [ 7] [ 10] [0320034301] +10:43:55 [ 11] [ 6] [268192] +10:43:55 [ 12] [ 6] [104301] +10:43:55 [ 13] [ 4] [0320] +10:43:55 [ 15] [ 4] [0320] +10:43:55 [ 18] [ 4] [6011] +10:43:55 [ 19] [ 3] [418] +10:43:55 [ 32] [ 6] [180893] +10:43:55 [ 35] [ 32] [6213545001065238=491212016523253] +10:43:55 [ 37] [ 12] [507903268192] +10:43:55 [ 38] [ 6] [600167] +10:43:55 [ 39] [ 2] [00] +10:43:55 [ 41] [ 8] [0324BKDT] +10:43:55 [ 49] [ 3] [418] +10:43:55 [ 54] [ 40] [0001418C0000694261190002418C000069426119] +10:43:55 ============================================================================ +10:43:55 Sending to : +10:43:55 ============================================================================ +10:43:55 + + +waiting on router queue for slot.... +10:43:57 ============================================================================ +10:43:57 Slot Id : <257> +10:43:57 Transaction Type : RESPONSE +10:43:57 Received From : +10:43:57 ============================================================================ +10:43:57 FNo. Len. Field Value +10:43:57 ============================================================================ +10:43:57 [ 1] [ 4] [0210] +10:43:57 [ 2] [ 16] [6213545001065238] +10:43:57 [ 3] [ 6] [010000] +10:43:57 [ 4] [ 12] [000100000000] +10:43:57 [ 7] [ 10] [0320034301] +10:43:57 [ 11] [ 6] [268192] +10:43:57 [ 12] [ 6] [104301] +10:43:57 [ 13] [ 4] [0320] +10:43:57 [ 15] [ 4] [0320] +10:43:57 [ 18] [ 4] [6011] +10:43:57 [ 19] [ 3] [418] +10:43:57 [ 32] [ 6] [180893] +10:43:57 [ 35] [ 32] [6213545001065238=491212016523253] +10:43:57 [ 37] [ 12] [507903268192] +10:43:57 [ 38] [ 6] [600167] +10:43:57 [ 39] [ 2] [00] +10:43:57 [ 41] [ 8] [0324BKDT] +10:43:57 [ 49] [ 3] [418] +10:43:57 [ 54] [ 40] [0001418C0000694261190002418C000069426119] +10:43:57 ============================================================================ +10:43:57 Calculate Source COMM Id = 2 +10:43:57 ============================================================================ +10:43:57 + + +waiting on router queue for slot.... +10:44:05 ============================================================================ +10:44:05 Slot Id : <299> +10:44:05 Transaction Type : REQUEST +10:44:05 Received From : +10:44:05 ============================================================================ +10:44:05 FNo. Len. Field Value +10:44:05 ============================================================================ +10:44:05 [ 1] [ 4] [0200] +10:44:05 [ 2] [ 16] [1808931400003032] +10:44:05 [ 3] [ 6] [011000] +10:44:05 [ 4] [ 12] [000002000000] +10:44:05 [ 7] [ 10] [0320104401] +10:44:05 [ 11] [ 6] [718740] +10:44:05 [ 12] [ 6] [104401] +10:44:05 [ 13] [ 4] [0320] +10:44:05 [ 15] [ 4] [0320] +10:44:05 [ 18] [ 4] [6011] +10:44:05 [ 22] [ 3] [900] +10:44:05 [ 25] [ 2] [02] +10:44:05 [ 28] [ 9] [D00002000] +10:44:05 [ 32] [ 6] [621354] +10:44:05 [ 35] [ 27] [1808931400003032=1803500136] +10:44:05 [ 37] [ 12] [507904707121] +10:44:05 [ 41] [ 8] [18000900] +10:44:05 [ 42] [ 15] [NATIVE ] +10:44:05 [ 43] [ 40] [Bounneau District Bounneua LAO] +10:44:05 [ 49] [ 3] [418] +10:44:05 [ 52] [ 16] [D2DE185599AF1F1F] +10:44:05 ============================================================================ +10:44:05 + + +waiting on router queue for slot.... +10:44:05 Sending to : +10:44:05 ============================================================================ +10:44:05 Sending to : +10:44:05 ============================================================================ +10:44:05 ============================================================================ +10:44:05 Slot Id : <299> +10:44:05 Transaction Type : REQUEST +10:44:05 Received From : +10:44:05 ============================================================================ +10:44:05 FNo. Len. Field Value +10:44:05 ============================================================================ +10:44:05 [ 1] [ 4] [0200] +10:44:05 [ 2] [ 16] [1808931400003032] +10:44:05 [ 3] [ 6] [011000] +10:44:05 [ 4] [ 12] [000002000000] +10:44:05 [ 7] [ 10] [0320104401] +10:44:05 [ 11] [ 6] [718740] +10:44:05 [ 12] [ 6] [104401] +10:44:05 [ 13] [ 4] [0320] +10:44:05 [ 15] [ 4] [0320] +10:44:05 [ 18] [ 4] [6011] +10:44:05 [ 22] [ 3] [900] +10:44:05 [ 25] [ 2] [02] +10:44:05 [ 28] [ 9] [D00002000] +10:44:05 [ 32] [ 6] [621354] +10:44:05 [ 35] [ 27] [1808931400003032=1803500136] +10:44:05 [ 37] [ 12] [507904707121] +10:44:05 [ 41] [ 8] [18000900] +10:44:05 [ 42] [ 15] [NATIVE ] +10:44:05 [ 43] [ 40] [Bounneau District Bounneua LAO] +10:44:05 [ 49] [ 3] [418] +10:44:05 [ 52] [ 16] [D2DE185599AF1F1F] +10:44:05 ============================================================================ +10:44:05 + + +waiting on router queue for slot.... +10:44:05 Sending to : +10:44:05 ============================================================================ +10:44:05 ============================================================================ +10:44:05 Slot Id : <299> +10:44:05 Transaction Type : REQUEST +10:44:05 Received From : +10:44:05 ============================================================================ +10:44:05 FNo. Len. Field Value +10:44:05 ============================================================================ +10:44:05 [ 1] [ 4] [0200] +10:44:05 [ 2] [ 16] [1808931400003032] +10:44:05 [ 3] [ 6] [011000] +10:44:05 [ 4] [ 12] [000002000000] +10:44:05 [ 7] [ 10] [0320104401] +10:44:05 [ 11] [ 6] [718740] +10:44:05 [ 12] [ 6] [104401] +10:44:05 [ 13] [ 4] [0320] +10:44:05 [ 15] [ 4] [0320] +10:44:05 [ 18] [ 4] [6011] +10:44:05 [ 22] [ 3] [900] +10:44:05 [ 25] [ 2] [02] +10:44:05 [ 28] [ 9] [D00002000] +10:44:05 [ 32] [ 6] [621354] +10:44:05 [ 35] [ 27] [1808931400003032=1803500136] +10:44:05 [ 37] [ 12] [507904707121] +10:44:05 [ 41] [ 8] [18000900] +10:44:05 [ 42] [ 15] [NATIVE ] +10:44:05 [ 43] [ 40] [Bounneau District Bounneua LAO] +10:44:05 [ 49] [ 3] [418] +10:44:05 [ 52] [ 16] [96FBD640D1020B6F] +10:44:05 ============================================================================ +10:44:05 + + +waiting on router queue for slot.... +10:44:05 Sending to : <2> +10:44:05 ============================================================================ +10:44:07 ============================================================================ +10:44:07 Slot Id : <302> +10:44:07 Transaction Type : REQUEST +10:44:07 Received From : +10:44:07 ============================================================================ +10:44:07 FNo. Len. Field Value +10:44:07 ============================================================================ +10:44:07 [ 1] [ 4] [0200] +10:44:07 [ 2] [ 16] [6213545000871487] +10:44:07 [ 3] [ 6] [010000] +10:44:07 [ 4] [ 12] [000010000000] +10:44:07 [ 7] [ 10] [0320104158] +10:44:07 [ 11] [ 6] [939397] +10:44:07 [ 12] [ 6] [104158] +10:44:07 [ 13] [ 4] [0320] +10:44:07 [ 15] [ 4] [0320] +10:44:07 [ 18] [ 4] [6011] +10:44:07 [ 19] [ 3] [418] +10:44:07 [ 22] [ 3] [021] +10:44:07 [ 25] [ 2] [01] +10:44:07 [ 28] [ 9] [D00002000] +10:44:07 [ 32] [ 6] [668899] +10:44:07 [ 35] [ 32] [6213545000871487=491212017148353] +10:44:07 [ 37] [ 12] [507900297340] +10:44:07 [ 41] [ 8] [03010006] +10:44:07 [ 42] [ 15] [APT ] +10:44:07 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:44:07 [ 49] [ 3] [418] +10:44:07 [ 52] [ 16] [3C33A82926E131F2] +10:44:07 ============================================================================ +10:44:07 + + +waiting on router queue for slot.... +10:44:07 Sending to : +10:44:07 ============================================================================ +10:44:07 Sending to : +10:44:07 ============================================================================ +10:44:07 ============================================================================ +10:44:07 Slot Id : <281> +10:44:07 Transaction Type : REQUEST +10:44:07 Received From : +10:44:07 ============================================================================ +10:44:07 FNo. Len. Field Value +10:44:07 ============================================================================ +10:44:07 [ 1] [ 4] [0200] +10:44:07 [ 2] [ 16] [6213544000646312] +10:44:07 [ 3] [ 6] [010000] +10:44:07 [ 4] [ 12] [000100000000] +10:44:07 [ 7] [ 10] [0320104158] +10:44:07 [ 11] [ 6] [939398] +10:44:07 [ 12] [ 6] [104158] +10:44:07 [ 13] [ 4] [0320] +10:44:07 [ 15] [ 4] [0320] +10:44:07 [ 18] [ 4] [6011] +10:44:07 [ 19] [ 3] [418] +10:44:07 [ 22] [ 3] [021] +10:44:07 [ 25] [ 2] [01] +10:44:07 [ 28] [ 9] [D00002000] +10:44:07 [ 32] [ 6] [668899] +10:44:07 [ 35] [ 32] [6213544000646312=491212014631962] +10:44:07 [ 37] [ 12] [507902380196] +10:44:07 [ 41] [ 8] [03020029] +10:44:07 [ 42] [ 15] [APT ] +10:44:07 [ 43] [ 40] [ SAYKONG COMPANY SISANGVON] +10:44:07 [ 49] [ 3] [418] +10:44:07 [ 52] [ 16] [9A1EFB53ED6378E2] +10:44:07 ============================================================================ +10:44:07 + + +waiting on router queue for slot.... +10:44:07 Sending to : +10:44:07 ============================================================================ +10:44:07 Sending to : +10:44:07 ============================================================================ +10:44:08 ============================================================================ +10:44:08 Slot Id : <300> +10:44:08 Transaction Type : REQUEST +10:44:08 Received From : +10:44:08 ============================================================================ +10:44:08 FNo. Len. Field Value +10:44:08 ============================================================================ +10:44:08 [ 1] [ 4] [0200] +10:44:08 [ 2] [ 16] [6213548000353613] +10:44:08 [ 3] [ 6] [301000] +10:44:08 [ 4] [ 12] [000000000000] +10:44:08 [ 7] [ 10] [0320104429] +10:44:08 [ 11] [ 6] [204049] +10:44:08 [ 12] [ 6] [104456] +10:44:08 [ 13] [ 4] [0320] +10:44:08 [ 14] [ 4] [1804] +10:44:08 [ 15] [ 4] [0320] +10:44:08 [ 18] [ 4] [6011] +10:44:08 [ 19] [ 3] [418] +10:44:08 [ 22] [ 3] [021] +10:44:08 [ 25] [ 2] [01] +10:44:08 [ 28] [ 9] [D00000000] +10:44:08 [ 32] [ 6] [198901] +10:44:08 [ 35] [ 32] [6213548000353613=180412015361035] +10:44:08 [ 37] [ 12] [507910204049] +10:44:08 [ 41] [ 8] [01529009] +10:44:08 [ 42] [ 15] [000000041529009] +10:44:08 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +10:44:08 [ 49] [ 3] [418] +10:44:08 [ 52] [ 16] [026620D6C57165F9] +10:44:08 ============================================================================ +10:44:08 + + +waiting on router queue for slot.... +10:44:08 Sending to : +10:44:08 ============================================================================ +10:44:08 Sending to : +10:44:08 ============================================================================ +10:44:08 ============================================================================ +10:44:08 Slot Id : <299> +10:44:08 Transaction Type : RESPONSE +10:44:08 Received From : +10:44:08 ============================================================================ +10:44:08 FNo. Len. Field Value +10:44:08 ============================================================================ +10:44:08 [ 1] [ 4] [0210] +10:44:08 [ 2] [ 16] [1808931400003032] +10:44:08 [ 3] [ 6] [011000] +10:44:08 [ 4] [ 12] [000002000000] +10:44:08 [ 6] [ 12] [000002000000] +10:44:08 [ 7] [ 10] [0320104401] +10:44:08 [ 11] [ 6] [718740] +10:44:08 [ 12] [ 6] [104401] +10:44:08 [ 13] [ 4] [0320] +10:44:08 [ 18] [ 4] [6011] +10:44:08 [ 19] [ 3] [418] +10:44:08 [ 22] [ 3] [021] +10:44:08 [ 32] [ 6] [621354] +10:44:08 [ 35] [ 27] [1808931400003032=1803500136] +10:44:08 [ 37] [ 12] [507904707121] +10:44:08 [ 38] [ 6] [718740] +10:44:08 [ 39] [ 2] [51] +10:44:08 [ 41] [ 8] [18000900] +10:44:08 [ 49] [ 3] [418] +10:44:08 [ 52] [ 16] [96FBD640D1020B6F] +10:44:08 ============================================================================ +10:44:08 Sending to : +10:44:08 ============================================================================ +10:44:08 + + +waiting on router queue for slot.... +10:44:11 ============================================================================ +10:44:11 Slot Id : <292> +10:44:11 Transaction Type : REQUEST +10:44:11 Received From : +10:44:11 ============================================================================ +10:44:11 FNo. Len. Field Value +10:44:11 ============================================================================ +10:44:11 [ 1] [ 4] [0200] +10:44:11 [ 2] [ 16] [6213545000142616] +10:44:11 [ 3] [ 6] [011000] +10:44:11 [ 4] [ 12] [000020000000] +10:44:11 [ 7] [ 10] [0320034319] +10:44:11 [ 11] [ 6] [268197] +10:44:11 [ 12] [ 6] [104319] +10:44:11 [ 13] [ 4] [0320] +10:44:11 [ 14] [ 4] [4912] +10:44:11 [ 15] [ 4] [0320] +10:44:11 [ 18] [ 4] [6011] +10:44:11 [ 19] [ 3] [418] +10:44:11 [ 22] [ 3] [021] +10:44:11 [ 25] [ 2] [01] +10:44:11 [ 28] [ 9] [D00002000] +10:44:11 [ 32] [ 6] [180893] +10:44:11 [ 35] [ 32] [6213545000142616=491212014261320] +10:44:11 [ 37] [ 12] [507903268197] +10:44:11 [ 41] [ 8] [0363CPSH] +10:44:11 [ 42] [ 15] [999999 ] +10:44:11 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +10:44:11 [ 49] [ 3] [418] +10:44:11 [ 52] [ 16] [9DAB555A59832951] +10:44:11 ============================================================================ +10:44:11 + + +waiting on router queue for slot.... +10:44:11 Sending to : +10:44:11 ============================================================================ +10:44:11 Sending to : +10:44:11 ============================================================================ +10:44:13 ============================================================================ +10:44:13 Slot Id : <281> +10:44:13 Transaction Type : REQUEST +10:44:13 Received From : +10:44:13 ============================================================================ +10:44:13 FNo. Len. Field Value +10:44:13 ============================================================================ +10:44:13 [ 1] [ 4] [0200] +10:44:13 [ 2] [ 16] [6213544000646312] +10:44:13 [ 3] [ 6] [010000] +10:44:13 [ 4] [ 12] [000100000000] +10:44:13 [ 7] [ 10] [0320104158] +10:44:13 [ 11] [ 6] [939398] +10:44:13 [ 12] [ 6] [104158] +10:44:13 [ 13] [ 4] [0320] +10:44:13 [ 15] [ 4] [0320] +10:44:13 [ 18] [ 4] [6011] +10:44:13 [ 19] [ 3] [418] +10:44:13 [ 22] [ 3] [021] +10:44:13 [ 25] [ 2] [01] +10:44:13 [ 28] [ 9] [D00002000] +10:44:13 [ 32] [ 6] [668899] +10:44:13 [ 35] [ 32] [6213544000646312=491212014631962] +10:44:13 [ 37] [ 12] [507902380196] +10:44:13 [ 41] [ 8] [03020029] +10:44:13 [ 42] [ 15] [APT ] +10:44:13 [ 43] [ 40] [ SAYKONG COMPANY SISANGVON] +10:44:13 [ 49] [ 3] [418] +10:44:13 [ 52] [ 16] [9A1EFB53ED6378E2] +10:44:13 ============================================================================ +10:44:13 + + +waiting on router queue for slot.... +10:44:13 Sending to : +10:44:13 ============================================================================ +10:44:13 ============================================================================ +10:44:13 Slot Id : <300> +10:44:13 Transaction Type : REQUEST +10:44:13 Received From : +10:44:13 ============================================================================ +10:44:13 FNo. Len. Field Value +10:44:13 ============================================================================ +10:44:13 [ 1] [ 4] [0200] +10:44:13 [ 2] [ 16] [6213548000353613] +10:44:13 [ 3] [ 6] [301000] +10:44:13 [ 4] [ 12] [000000000000] +10:44:13 [ 7] [ 10] [0320104429] +10:44:13 [ 11] [ 6] [204049] +10:44:13 [ 12] [ 6] [104456] +10:44:13 [ 13] [ 4] [0320] +10:44:13 [ 14] [ 4] [1804] +10:44:13 [ 15] [ 4] [0320] +10:44:13 [ 18] [ 4] [6011] +10:44:13 [ 19] [ 3] [418] +10:44:13 [ 22] [ 3] [021] +10:44:13 [ 25] [ 2] [01] +10:44:13 [ 28] [ 9] [D00000000] +10:44:13 [ 32] [ 6] [198901] +10:44:13 [ 35] [ 32] [6213548000353613=180412015361035] +10:44:13 [ 37] [ 12] [507910204049] +10:44:13 [ 41] [ 8] [01529009] +10:44:13 [ 42] [ 15] [000000041529009] +10:44:13 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +10:44:13 [ 49] [ 3] [418] +10:44:13 [ 52] [ 16] [026620D6C57165F9] +10:44:13 ============================================================================ +10:44:13 + + +waiting on router queue for slot.... +10:44:13 ============================================================================ +10:44:13 Slot Id : <302> +10:44:13 Transaction Type : REQUEST +10:44:13 Received From : +10:44:13 ============================================================================ +10:44:13 FNo. Len. Field Value +10:44:13 ============================================================================ +10:44:13 [ 1] [ 4] [0200] +10:44:13 [ 2] [ 16] [6213545000871487] +10:44:13 [ 3] [ 6] [010000] +10:44:13 [ 4] [ 12] [000010000000] +10:44:13 [ 7] [ 10] [0320104158] +10:44:13 [ 11] [ 6] [939397] +10:44:13 [ 12] [ 6] [104158] +10:44:13 [ 13] [ 4] [0320] +10:44:13 [ 15] [ 4] [0320] +10:44:13 [ 18] [ 4] [6011] +10:44:13 [ 19] [ 3] [418] +10:44:13 [ 22] [ 3] [021] +10:44:13 [ 25] [ 2] [01] +10:44:13 [ 28] [ 9] [D00002000] +10:44:13 [ 32] [ 6] [668899] +10:44:13 [ 35] [ 32] [6213545000871487=491212017148353] +10:44:13 [ 37] [ 12] [507900297340] +10:44:13 [ 41] [ 8] [03010006] +10:44:13 [ 42] [ 15] [APT ] +10:44:13 Sending to : +10:44:13 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:44:13 ============================================================================ +10:44:13 [ 49] [ 3] [418] +10:44:13 [ 52] [ 16] [3C33A82926E131F2] +10:44:13 ============================================================================ +10:44:13 + + +waiting on router queue for slot.... +10:44:13 ============================================================================ +10:44:13 Slot Id : <292> +10:44:13 Transaction Type : REQUEST +10:44:13 Received From : +10:44:13 ============================================================================ +10:44:13 FNo. Len. Field Value +10:44:13 ============================================================================ +10:44:13 [ 1] [ 4] [0200] +10:44:13 [ 2] [ 16] [6213545000142616] +10:44:13 [ 3] [ 6] [011000] +10:44:13 [ 4] [ 12] [000020000000] +10:44:13 [ 7] [ 10] [0320034319] +10:44:13 [ 11] [ 6] [268197] +10:44:13 [ 12] [ 6] [104319] +10:44:13 [ 13] [ 4] [0320] +10:44:13 [ 14] [ 4] [4912] +10:44:13 [ 15] [ 4] [0320] +10:44:13 [ 18] [ 4] [6011] +10:44:13 [ 19] [ 3] [418] +10:44:13 [ 22] [ 3] [021] +10:44:13 [ 25] [ 2] [01] +10:44:13 [ 28] [ 9] [D00002000] +10:44:13 [ 32] [ 6] [180893] +10:44:13 [ 35] [ 32] [6213545000142616=491212014261320] +10:44:13 [ 37] [ 12] [507903268197] +10:44:13 Sending to : +10:44:13 ============================================================================ +10:44:13 [ 41] [ 8] [0363CPSH] +10:44:13 [ 42] [ 15] [999999 ] +10:44:13 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +10:44:13 [ 49] [ 3] [418] +10:44:13 [ 52] [ 16] [9DAB555A59832951] +10:44:13 ============================================================================ +10:44:13 + + +waiting on router queue for slot.... +10:44:13 Sending to : +10:44:13 ============================================================================ +10:44:13 ============================================================================ +10:44:13 Slot Id : <281> +10:44:13 Transaction Type : REQUEST +10:44:13 Received From : +10:44:13 ============================================================================ +10:44:13 FNo. Len. Field Value +10:44:13 ============================================================================ +10:44:13 [ 1] [ 4] [0200] +10:44:13 [ 2] [ 16] [6213544000646312] +10:44:13 [ 3] [ 6] [010000] +10:44:13 [ 4] [ 12] [000100000000] +10:44:13 [ 7] [ 10] [0320104158] +10:44:13 [ 11] [ 6] [939398] +10:44:13 [ 12] [ 6] [104158] +10:44:13 [ 13] [ 4] [0320] +10:44:13 [ 15] [ 4] [0320] +10:44:13 [ 18] [ 4] [6011] +10:44:13 [ 19] [ 3] [418] +10:44:13 [ 22] [ 3] [021] +10:44:13 [ 25] [ 2] [01] +10:44:13 [ 28] [ 9] [D00002000] +10:44:13 [ 32] [ 6] [668899] +10:44:13 [ 35] [ 32] [6213544000646312=491212014631962] +10:44:13 [ 37] [ 12] [507902380196] +10:44:13 [ 41] [ 8] [03020029] +10:44:13 [ 42] [ 15] [APT ] +10:44:13 [ 43] [ 40] [ SAYKONG COMPANY SISANGVON] +10:44:13 [ 49] [ 3] [418] +10:44:13 [ 52] [ 16] [CA88044CAD40853A] +10:44:13 ============================================================================ +10:44:13 + + +waiting on router queue for slot.... +10:44:13 Sending to : <0> +10:44:13 ============================================================================ +10:44:13 ============================================================================ +10:44:13 Slot Id : <300> +10:44:13 Transaction Type : REQUEST +10:44:13 Received From : +10:44:13 ============================================================================ +10:44:13 FNo. Len. Field Value +10:44:13 ============================================================================ +10:44:13 [ 1] [ 4] [0200] +10:44:13 [ 2] [ 16] [6213548000353613] +10:44:13 [ 3] [ 6] [301000] +10:44:13 [ 4] [ 12] [000000000000] +10:44:13 [ 7] [ 10] [0320104429] +10:44:13 [ 11] [ 6] [204049] +10:44:13 [ 12] [ 6] [104456] +10:44:13 [ 13] [ 4] [0320] +10:44:13 [ 14] [ 4] [1804] +10:44:13 [ 15] [ 4] [0320] +10:44:13 [ 18] [ 4] [6011] +10:44:13 [ 19] [ 3] [418] +10:44:13 [ 22] [ 3] [021] +10:44:13 [ 25] [ 2] [01] +10:44:13 [ 28] [ 9] [D00000000] +10:44:13 [ 32] [ 6] [198901] +10:44:13 [ 35] [ 32] [6213548000353613=180412015361035] +10:44:13 [ 37] [ 12] [507910204049] +10:44:13 [ 41] [ 8] [01529009] +10:44:13 [ 42] [ 15] [000000041529009] +10:44:13 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +10:44:13 [ 49] [ 3] [418] +10:44:13 [ 52] [ 16] [8A2C2A830873D594] +10:44:13 ============================================================================ +10:44:13 + + +waiting on router queue for slot.... +10:44:13 Sending to : <0> +10:44:13 ============================================================================ +10:44:13 ============================================================================ +10:44:13 Slot Id : <302> +10:44:13 Transaction Type : REQUEST +10:44:13 Received From : +10:44:13 ============================================================================ +10:44:13 FNo. Len. Field Value +10:44:13 ============================================================================ +10:44:13 [ 1] [ 4] [0200] +10:44:13 [ 2] [ 16] [6213545000871487] +10:44:13 [ 3] [ 6] [010000] +10:44:13 [ 4] [ 12] [000010000000] +10:44:13 [ 7] [ 10] [0320104158] +10:44:13 [ 11] [ 6] [939397] +10:44:13 [ 12] [ 6] [104158] +10:44:13 [ 13] [ 4] [0320] +10:44:13 [ 15] [ 4] [0320] +10:44:13 [ 18] [ 4] [6011] +10:44:13 [ 19] [ 3] [418] +10:44:13 [ 22] [ 3] [021] +10:44:13 [ 25] [ 2] [01] +10:44:13 [ 28] [ 9] [D00002000] +10:44:13 [ 32] [ 6] [668899] +10:44:13 [ 35] [ 32] [6213545000871487=491212017148353] +10:44:13 [ 37] [ 12] [507900297340] +10:44:13 [ 41] [ 8] [03010006] +10:44:13 [ 42] [ 15] [APT ] +10:44:13 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:44:13 [ 49] [ 3] [418] +10:44:13 [ 52] [ 16] [F6DC12809625F04D] +10:44:13 ============================================================================ +10:44:13 + + +waiting on router queue for slot.... +10:44:13 Sending to : <0> +10:44:13 ============================================================================ +10:44:13 ============================================================================ +10:44:13 Slot Id : <292> +10:44:13 Transaction Type : REQUEST +10:44:13 Received From : +10:44:13 ============================================================================ +10:44:13 FNo. Len. Field Value +10:44:13 ============================================================================ +10:44:13 [ 1] [ 4] [0200] +10:44:13 [ 2] [ 16] [6213545000142616] +10:44:13 [ 3] [ 6] [011000] +10:44:13 [ 4] [ 12] [000020000000] +10:44:13 [ 7] [ 10] [0320034319] +10:44:13 [ 11] [ 6] [268197] +10:44:13 [ 12] [ 6] [104319] +10:44:13 [ 13] [ 4] [0320] +10:44:13 [ 14] [ 4] [4912] +10:44:13 [ 15] [ 4] [0320] +10:44:13 [ 18] [ 4] [6011] +10:44:13 [ 19] [ 3] [418] +10:44:13 [ 22] [ 3] [021] +10:44:13 [ 25] [ 2] [01] +10:44:13 [ 28] [ 9] [D00002000] +10:44:13 [ 32] [ 6] [180893] +10:44:13 [ 35] [ 32] [6213545000142616=491212014261320] +10:44:13 [ 37] [ 12] [507903268197] +10:44:13 [ 41] [ 8] [0363CPSH] +10:44:13 [ 42] [ 15] [999999 ] +10:44:13 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +10:44:13 [ 49] [ 3] [418] +10:44:13 [ 52] [ 16] [A558F52C8A77319E] +10:44:13 ============================================================================ +10:44:13 + + +waiting on router queue for slot.... +10:44:13 Sending to : <0> +10:44:13 ============================================================================ +10:44:13 ============================================================================ +10:44:13 Slot Id : <299> +10:44:13 Transaction Type : RESPONSE +10:44:13 Received From : +10:44:13 ============================================================================ +10:44:13 FNo. Len. Field Value +10:44:13 ============================================================================ +10:44:13 [ 1] [ 4] [0210] +10:44:13 [ 2] [ 16] [1808931400003032] +10:44:13 [ 3] [ 6] [011000] +10:44:13 [ 4] [ 12] [000002000000] +10:44:13 [ 6] [ 12] [000002000000] +10:44:13 [ 7] [ 10] [0320104401] +10:44:13 [ 11] [ 6] [718740] +10:44:13 [ 12] [ 6] [104401] +10:44:13 [ 13] [ 4] [0320] +10:44:13 [ 18] [ 4] [6011] +10:44:13 [ 19] [ 3] [418] +10:44:13 [ 22] [ 3] [021] +10:44:13 [ 32] [ 6] [621354] +10:44:13 [ 35] [ 27] [1808931400003032=1803500136] +10:44:13 [ 37] [ 12] [507904707121] +10:44:13 [ 38] [ 6] [718740] +10:44:13 [ 39] [ 2] [51] +10:44:13 [ 41] [ 8] [18000900] +10:44:13 [ 49] [ 3] [418] +10:44:13 [ 52] [ 16] [96FBD640D1020B6F] +10:44:13 ============================================================================ +10:44:13 Calculate Source COMM Id = 0 +10:44:13 ============================================================================ +10:44:13 + + +waiting on router queue for slot.... +10:44:13 ============================================================================ +10:44:13 Slot Id : <300> +10:44:13 Transaction Type : RESPONSE +10:44:13 Received From : +10:44:13 ============================================================================ +10:44:13 FNo. Len. Field Value +10:44:13 ============================================================================ +10:44:13 [ 1] [ 4] [0210] +10:44:13 [ 2] [ 16] [6213548000353613] +10:44:13 [ 3] [ 6] [301000] +10:44:13 [ 4] [ 12] [000000000000] +10:44:13 [ 7] [ 10] [0320104429] +10:44:13 [ 11] [ 6] [204049] +10:44:13 [ 12] [ 6] [104456] +10:44:13 [ 13] [ 4] [0320] +10:44:13 [ 15] [ 4] [0320] +10:44:13 [ 18] [ 4] [6011] +10:44:13 [ 19] [ 3] [418] +10:44:13 [ 32] [ 6] [198901] +10:44:13 [ 35] [ 32] [6213548000353613=180412015361035] +10:44:13 [ 37] [ 12] [507910204049] +10:44:13 [ 38] [ 6] [310039] +10:44:13 [ 39] [ 2] [00] +10:44:13 [ 41] [ 8] [01529009] +10:44:13 [ 49] [ 3] [418] +10:44:13 [ 54] [ 40] [1001418C0000158347251002418C000015834725] +10:44:13 ============================================================================ +10:44:13 Sending to : +10:44:13 ============================================================================ +10:44:13 + + +waiting on router queue for slot.... +10:44:14 ============================================================================ +10:44:14 Slot Id : <281> +10:44:14 Transaction Type : RESPONSE +10:44:14 Received From : +10:44:14 ============================================================================ +10:44:14 FNo. Len. Field Value +10:44:14 ============================================================================ +10:44:14 [ 1] [ 4] [0210] +10:44:14 [ 2] [ 16] [6213544000646312] +10:44:14 [ 3] [ 6] [010000] +10:44:14 [ 4] [ 12] [000100000000] +10:44:14 [ 7] [ 10] [0320104158] +10:44:14 [ 11] [ 6] [939398] +10:44:14 [ 12] [ 6] [104158] +10:44:14 [ 13] [ 4] [0320] +10:44:14 [ 15] [ 4] [0320] +10:44:14 [ 18] [ 4] [6011] +10:44:14 [ 19] [ 3] [418] +10:44:14 [ 32] [ 6] [668899] +10:44:14 [ 35] [ 32] [6213544000646312=491212014631962] +10:44:14 [ 37] [ 12] [507902380196] +10:44:14 [ 38] [ 6] [201034] +10:44:14 [ 39] [ 2] [00] +10:44:14 [ 41] [ 8] [03020029] +10:44:14 [ 49] [ 3] [418] +10:44:14 [ 54] [ 40] [0001418C0002566209470002418C000256620947] +10:44:14 ============================================================================ +10:44:14 Sending to : +10:44:14 ============================================================================ +10:44:14 + + +waiting on router queue for slot.... +10:44:15 ============================================================================ +10:44:15 Slot Id : <300> +10:44:15 Transaction Type : RESPONSE +10:44:15 Received From : +10:44:15 ============================================================================ +10:44:15 FNo. Len. Field Value +10:44:15 ============================================================================ +10:44:15 [ 1] [ 4] [0210] +10:44:15 [ 2] [ 16] [6213548000353613] +10:44:15 [ 3] [ 6] [301000] +10:44:15 [ 4] [ 12] [000000000000] +10:44:15 [ 7] [ 10] [0320104429] +10:44:15 [ 11] [ 6] [204049] +10:44:15 [ 12] [ 6] [104456] +10:44:15 [ 13] [ 4] [0320] +10:44:15 [ 15] [ 4] [0320] +10:44:15 [ 18] [ 4] [6011] +10:44:15 [ 19] [ 3] [418] +10:44:15 [ 32] [ 6] [198901] +10:44:15 [ 35] [ 32] [6213548000353613=180412015361035] +10:44:15 [ 37] [ 12] [507910204049] +10:44:15 [ 38] [ 6] [310039] +10:44:15 [ 39] [ 2] [00] +10:44:15 [ 41] [ 8] [01529009] +10:44:15 [ 49] [ 3] [418] +10:44:15 [ 54] [ 40] [1001418C0000158347251002418C000015834725] +10:44:15 ============================================================================ +10:44:15 Calculate Source COMM Id = 5 +10:44:15 ============================================================================ +10:44:15 + + +waiting on router queue for slot.... +10:44:17 ============================================================================ +10:44:17 Slot Id : <281> +10:44:17 Transaction Type : RESPONSE +10:44:17 Received From : +10:44:17 ============================================================================ +10:44:17 FNo. Len. Field Value +10:44:17 ============================================================================ +10:44:17 [ 1] [ 4] [0210] +10:44:17 [ 2] [ 16] [6213544000646312] +10:44:17 [ 3] [ 6] [010000] +10:44:17 [ 4] [ 12] [000100000000] +10:44:17 [ 7] [ 10] [0320104158] +10:44:17 [ 11] [ 6] [939398] +10:44:17 [ 12] [ 6] [104158] +10:44:17 [ 13] [ 4] [0320] +10:44:17 [ 15] [ 4] [0320] +10:44:17 [ 18] [ 4] [6011] +10:44:17 [ 19] [ 3] [418] +10:44:17 [ 32] [ 6] [668899] +10:44:17 [ 35] [ 32] [6213544000646312=491212014631962] +10:44:17 [ 37] [ 12] [507902380196] +10:44:17 [ 38] [ 6] [201034] +10:44:17 [ 39] [ 2] [00] +10:44:17 [ 41] [ 8] [03020029] +10:44:17 [ 49] [ 3] [418] +10:44:17 [ 54] [ 40] [0001418C0002566209470002418C000256620947] +10:44:17 ============================================================================ +10:44:17 Calculate Source COMM Id = 4 +10:44:17 ============================================================================ +10:44:17 + + +waiting on router queue for slot.... +10:44:19 ============================================================================ +10:44:19 Slot Id : <295> +10:44:19 Transaction Type : REQUEST +10:44:19 Received From : +10:44:19 ============================================================================ +10:44:19 FNo. Len. Field Value +10:44:19 ============================================================================ +10:44:19 [ 1] [ 4] [0800] +10:44:19 [ 7] [ 10] [0320034327] +10:44:19 [ 11] [ 6] [155922] +10:44:19 [ 70] [ 3] [301] +10:44:19 ============================================================================ +10:44:19 + + +waiting on router queue for slot.... +10:44:19 Sending to : +10:44:19 ============================================================================ +10:44:19 ============================================================================ +10:44:19 Slot Id : <295> +10:44:19 Transaction Type : RESPONSE +10:44:19 Received From : +10:44:19 ============================================================================ +10:44:19 FNo. Len. Field Value +10:44:19 ============================================================================ +10:44:19 [ 1] [ 4] [0810] +10:44:19 [ 7] [ 10] [0320034327] +10:44:19 [ 11] [ 6] [155922] +10:44:19 [ 39] [ 2] [00] +10:44:19 [ 70] [ 3] [301] +10:44:19 ============================================================================ +10:44:19 Calculate Source COMM Id = 2 +10:44:19 ============================================================================ +10:44:19 + + +waiting on router queue for slot.... +10:44:24 ============================================================================ +10:44:24 Slot Id : <308> +10:44:24 Transaction Type : REQUEST +10:44:24 Received From : +10:44:24 ============================================================================ +10:44:24 FNo. Len. Field Value +10:44:24 ============================================================================ +10:44:24 [ 1] [ 4] [0800] +10:44:24 [ 2] [ 5] [02531] +10:44:24 [ 3] [ 6] [579108] +10:44:24 [ 7] [ 10] [0320034424] +10:44:24 [ 11] [ 6] [807035] +10:44:24 [ 15] [ 10] [0320034424] +10:44:24 [ 37] [ 11] [57910807035] +10:44:24 [ 70] [ 3] [001] +10:44:24 ============================================================================ +10:44:24 + + +waiting on router queue for slot.... +10:44:24 ============================================================================ +10:44:24 Slot Id : <308> +10:44:24 Transaction Type : RESPONSE +10:44:24 Received From : +10:44:24 ============================================================================ +10:44:24 FNo. Len. Field Value +10:44:24 ============================================================================ +10:44:24 [ 1] [ 4] [0810] +10:44:24 [ 7] [ 10] [0320034424] +10:44:24 [ 11] [ 6] [807035] +10:44:24 [ 15] [ 4] [0320] +10:44:24 [ 37] [ 12] [57910807035] +10:44:24 [ 39] [ 2] [00] +10:44:24 [ 70] [ 3] [001] +10:44:24 ============================================================================ +10:44:24 Sending to : +10:44:24 ============================================================================ +10:44:24 + + +waiting on router queue for slot.... +10:44:33 ============================================================================ +10:44:33 Slot Id : <262> +10:44:33 Transaction Type : REQUEST +10:44:33 Received From : +10:44:33 ============================================================================ +10:44:33 FNo. Len. Field Value +10:44:33 ============================================================================ +10:44:33 [ 1] [ 4] [0200] +10:44:33 [ 2] [ 16] [1234010100218503] +10:44:33 [ 3] [ 6] [010000] +10:44:33 [ 4] [ 12] [000030000000] +10:44:33 [ 7] [ 10] [0320104429] +10:44:33 [ 11] [ 6] [718868] +10:44:33 [ 12] [ 6] [104429] +10:44:33 [ 13] [ 4] [0320] +10:44:33 [ 15] [ 4] [0320] +10:44:33 [ 18] [ 4] [6011] +10:44:33 [ 22] [ 3] [900] +10:44:33 [ 25] [ 2] [02] +10:44:33 [ 28] [ 9] [D00002000] +10:44:33 [ 32] [ 6] [621354] +10:44:33 [ 35] [ 32] [1234010100218503=170700011850000] +10:44:33 [ 37] [ 12] [507904381069] +10:44:33 [ 41] [ 8] [03003700] +10:44:33 [ 42] [ 15] [NATIVE ] +10:44:33 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +10:44:33 [ 49] [ 3] [418] +10:44:33 [ 52] [ 16] [56F267FB1BFD4ABD] +10:44:33 ============================================================================ +10:44:33 + + +waiting on router queue for slot.... +10:44:33 Sending to : +10:44:33 ============================================================================ +10:44:33 Sending to : +10:44:33 ============================================================================ +10:44:34 ============================================================================ +10:44:34 Slot Id : <262> +10:44:34 Transaction Type : REQUEST +10:44:34 Received From : +10:44:34 ============================================================================ +10:44:34 FNo. Len. Field Value +10:44:34 ============================================================================ +10:44:34 [ 1] [ 4] [0200] +10:44:34 [ 2] [ 16] [1234010100218503] +10:44:34 [ 3] [ 6] [010000] +10:44:34 [ 4] [ 12] [000030000000] +10:44:34 [ 7] [ 10] [0320104429] +10:44:34 [ 11] [ 6] [718868] +10:44:34 [ 12] [ 6] [104429] +10:44:34 [ 13] [ 4] [0320] +10:44:34 [ 15] [ 4] [0320] +10:44:34 [ 18] [ 4] [6011] +10:44:34 [ 22] [ 3] [900] +10:44:34 [ 25] [ 2] [02] +10:44:34 [ 28] [ 9] [D00002000] +10:44:34 [ 32] [ 6] [621354] +10:44:34 [ 35] [ 32] [1234010100218503=170700011850000] +10:44:34 [ 37] [ 12] [507904381069] +10:44:34 [ 41] [ 8] [03003700] +10:44:34 [ 42] [ 15] [NATIVE ] +10:44:34 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +10:44:34 [ 49] [ 3] [418] +10:44:34 [ 52] [ 16] [56F267FB1BFD4ABD] +10:44:34 ============================================================================ +10:44:34 + + +waiting on router queue for slot.... +10:44:34 Sending to : +10:44:34 ============================================================================ +10:44:34 ============================================================================ +10:44:34 Slot Id : <262> +10:44:34 Transaction Type : REQUEST +10:44:34 Received From : +10:44:34 ============================================================================ +10:44:34 FNo. Len. Field Value +10:44:34 ============================================================================ +10:44:34 [ 1] [ 4] [0200] +10:44:34 [ 2] [ 16] [1234010100218503] +10:44:34 [ 3] [ 6] [010000] +10:44:34 [ 4] [ 12] [000030000000] +10:44:34 [ 7] [ 10] [0320104429] +10:44:34 [ 11] [ 6] [718868] +10:44:34 [ 12] [ 6] [104429] +10:44:34 [ 13] [ 4] [0320] +10:44:34 [ 15] [ 4] [0320] +10:44:34 [ 18] [ 4] [6011] +10:44:34 [ 22] [ 3] [900] +10:44:34 [ 25] [ 2] [02] +10:44:34 [ 28] [ 9] [D00002000] +10:44:34 [ 32] [ 6] [621354] +10:44:34 [ 35] [ 32] [1234010100218503=170700011850000] +10:44:34 [ 37] [ 12] [507904381069] +10:44:34 [ 41] [ 8] [03003700] +10:44:34 [ 42] [ 15] [NATIVE ] +10:44:34 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +10:44:34 [ 49] [ 3] [418] +10:44:34 [ 52] [ 16] [E7E93A88F4FDF67B] +10:44:34 ============================================================================ +10:44:34 + + +waiting on router queue for slot.... +10:44:34 ONUS/OFFUS CARD status [0] +10:44:34 ============================================================================ +10:44:34 ============================================================================ +10:44:34 Slot Id : <296> +10:44:34 Transaction Type : REQUEST +10:44:34 Received From : +10:44:34 ============================================================================ +10:44:34 FNo. Len. Field Value +10:44:34 ============================================================================ +10:44:34 [ 1] [ 4] [0800] +10:44:34 [ 7] [ 10] [0320034342] +10:44:34 [ 11] [ 6] [155923] +10:44:34 [ 70] [ 3] [301] +10:44:34 ============================================================================ +10:44:34 + + +waiting on router queue for slot.... +10:44:34 Sending to : +10:44:34 ============================================================================ +10:44:34 ============================================================================ +10:44:34 Slot Id : <296> +10:44:34 Transaction Type : RESPONSE +10:44:34 Received From : +10:44:34 ============================================================================ +10:44:34 FNo. Len. Field Value +10:44:34 ============================================================================ +10:44:34 [ 1] [ 4] [0810] +10:44:34 [ 7] [ 10] [0320034342] +10:44:34 [ 11] [ 6] [155923] +10:44:34 [ 39] [ 2] [00] +10:44:34 [ 70] [ 3] [301] +10:44:34 ============================================================================ +10:44:34 Calculate Source COMM Id = 2 +10:44:34 ============================================================================ +10:44:34 + + +waiting on router queue for slot.... +10:44:42 ============================================================================ +10:44:42 Slot Id : <283> +10:44:42 Transaction Type : REQUEST +10:44:42 Received From : +10:44:42 ============================================================================ +10:44:42 FNo. Len. Field Value +10:44:42 ============================================================================ +10:44:42 [ 1] [ 4] [0200] +10:44:42 [ 2] [ 16] [6688990020021208] +10:44:42 [ 3] [ 6] [301000] +10:44:42 [ 4] [ 12] [000000000000] +10:44:42 [ 7] [ 10] [0320104438] +10:44:42 [ 11] [ 6] [718892] +10:44:42 [ 12] [ 6] [104438] +10:44:42 [ 13] [ 4] [0320] +10:44:42 [ 15] [ 4] [0320] +10:44:42 [ 18] [ 4] [6011] +10:44:42 [ 22] [ 3] [900] +10:44:42 [ 25] [ 2] [02] +10:44:42 [ 28] [ 9] [D00000000] +10:44:42 [ 32] [ 6] [621354] +10:44:42 [ 35] [ 37] [6688990020021208=98041261403991700000] +10:44:42 [ 37] [ 12] [507903675277] +10:44:42 [ 41] [ 8] [16002000] +10:44:42 [ 42] [ 15] [NATIVE ] +10:44:42 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +10:44:42 [ 49] [ 3] [418] +10:44:42 [ 52] [ 16] [031FCB310DF96809] +10:44:42 ============================================================================ +10:44:42 + + +waiting on router queue for slot.... +10:44:42 Sending to : +10:44:42 ============================================================================ +10:44:42 Sending to : +10:44:42 ============================================================================ +10:44:42 ============================================================================ +10:44:42 Slot Id : <283> +10:44:42 Transaction Type : REQUEST +10:44:42 Received From : +10:44:42 ============================================================================ +10:44:42 FNo. Len. Field Value +10:44:42 ============================================================================ +10:44:42 [ 1] [ 4] [0200] +10:44:42 [ 2] [ 16] [6688990020021208] +10:44:42 [ 3] [ 6] [301000] +10:44:42 [ 4] [ 12] [000000000000] +10:44:42 [ 7] [ 10] [0320104438] +10:44:42 [ 11] [ 6] [718892] +10:44:42 [ 12] [ 6] [104438] +10:44:42 [ 13] [ 4] [0320] +10:44:42 [ 15] [ 4] [0320] +10:44:42 [ 18] [ 4] [6011] +10:44:42 [ 22] [ 3] [900] +10:44:42 [ 25] [ 2] [02] +10:44:42 [ 28] [ 9] [D00000000] +10:44:42 [ 32] [ 6] [621354] +10:44:42 [ 35] [ 37] [6688990020021208=98041261403991700000] +10:44:42 [ 37] [ 12] [507903675277] +10:44:42 [ 41] [ 8] [16002000] +10:44:42 [ 42] [ 15] [NATIVE ] +10:44:42 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +10:44:42 [ 49] [ 3] [418] +10:44:42 [ 52] [ 16] [031FCB310DF96809] +10:44:42 ============================================================================ +10:44:42 + + +waiting on router queue for slot.... +10:44:42 Sending to : +10:44:42 ============================================================================ +10:44:42 ============================================================================ +10:44:42 Slot Id : <283> +10:44:42 Transaction Type : REQUEST +10:44:42 Received From : +10:44:42 ============================================================================ +10:44:42 FNo. Len. Field Value +10:44:42 ============================================================================ +10:44:42 [ 1] [ 4] [0200] +10:44:42 [ 2] [ 16] [6688990020021208] +10:44:42 [ 3] [ 6] [301000] +10:44:42 [ 4] [ 12] [000000000000] +10:44:42 [ 7] [ 10] [0320104438] +10:44:42 [ 11] [ 6] [718892] +10:44:42 [ 12] [ 6] [104438] +10:44:42 [ 13] [ 4] [0320] +10:44:42 [ 15] [ 4] [0320] +10:44:42 [ 18] [ 4] [6011] +10:44:42 [ 22] [ 3] [900] +10:44:42 [ 25] [ 2] [02] +10:44:42 [ 28] [ 9] [D00000000] +10:44:42 [ 32] [ 6] [621354] +10:44:42 [ 35] [ 37] [6688990020021208=98041261403991700000] +10:44:42 [ 37] [ 12] [507903675277] +10:44:42 [ 41] [ 8] [16002000] +10:44:42 [ 42] [ 15] [NATIVE ] +10:44:42 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +10:44:42 [ 49] [ 3] [418] +10:44:42 [ 52] [ 16] [FC672971310EF3B3] +10:44:42 ============================================================================ +10:44:42 + + +waiting on router queue for slot.... +10:44:42 Sending to : <4> +10:44:42 ============================================================================ +10:44:42 ============================================================================ +10:44:42 Slot Id : <316> +10:44:42 Transaction Type : REQUEST +10:44:42 Received From : +10:44:42 ============================================================================ +10:44:42 FNo. Len. Field Value +10:44:42 ============================================================================ +10:44:42 [ 1] [ 4] [0420] +10:44:42 [ 2] [ 16] [6213545000142616] +10:44:42 [ 3] [ 6] [011000] +10:44:42 [ 4] [ 12] [000020000000] +10:44:42 [ 7] [ 10] [0320034350] +10:44:42 [ 11] [ 6] [268197] +10:44:42 [ 12] [ 6] [104319] +10:44:42 [ 13] [ 4] [0320] +10:44:42 [ 14] [ 4] [4912] +10:44:42 [ 15] [ 4] [0320] +10:44:42 [ 18] [ 4] [6011] +10:44:42 [ 19] [ 3] [418] +10:44:42 [ 22] [ 3] [021] +10:44:42 [ 25] [ 2] [01] +10:44:42 [ 28] [ 9] [D00002000] +10:44:42 [ 32] [ 6] [180893] +10:44:42 [ 35] [ 32] [6213545000142616=491212014261320] +10:44:42 [ 37] [ 12] [507903268197] +10:44:42 [ 39] [ 2] [68] +10:44:42 [ 41] [ 8] [0363CPSH] +10:44:42 [ 42] [ 15] [999999 ] +10:44:42 [ 49] [ 3] [418] +10:44:42 [ 90] [ 42] [ TES1+0000080000] +10:44:42 [104] [ 16] [0001808930000000] +10:44:42 ============================================================================ +10:44:42 + + +waiting on router queue for slot.... +10:44:42 Sending to : +10:44:42 ============================================================================ +10:44:44 ============================================================================ +10:44:44 Slot Id : <283> +10:44:44 Transaction Type : RESPONSE +10:44:44 Received From : +10:44:44 ============================================================================ +10:44:44 FNo. Len. Field Value +10:44:44 ============================================================================ +10:44:44 [ 1] [ 4] [0210] +10:44:44 [ 2] [ 16] [6688990020021208] +10:44:44 [ 3] [ 6] [301000] +10:44:44 [ 4] [ 12] [000000000000] +10:44:44 [ 11] [ 6] [718892] +10:44:44 [ 12] [ 6] [104438] +10:44:44 [ 15] [ 4] [0320] +10:44:44 [ 18] [ 4] [6011] +10:44:44 [ 32] [ 6] [621354] +10:44:44 [ 35] [ 37] [6688990020021208=98041261403991700000] +10:44:44 [ 37] [ 12] [507903675277] +10:44:44 [ 38] [ 6] [436862] +10:44:44 [ 39] [ 2] [00] +10:44:44 [ 41] [ 8] [16002000] +10:44:44 [ 49] [ 3] [418] +10:44:44 [ 54] [ 20] [1002418C000107843400] +10:44:44 ============================================================================ +10:44:44 Sending to : +10:44:44 ============================================================================ +10:44:44 + + +waiting on router queue for slot.... +10:44:45 ============================================================================ +10:44:45 Slot Id : <286> +10:44:45 Transaction Type : REQUEST +10:44:45 Received From : +10:44:45 ============================================================================ +10:44:45 FNo. Len. Field Value +10:44:45 ============================================================================ +10:44:45 [ 1] [ 4] [0800] +10:44:45 [ 7] [ 10] [0320034353] +10:44:45 [ 11] [ 6] [155924] +10:44:45 [ 70] [ 3] [301] +10:44:45 ============================================================================ +10:44:45 + + +waiting on router queue for slot.... +10:44:45 Sending to : +10:44:45 ============================================================================ +10:44:45 ============================================================================ +10:44:45 Slot Id : <286> +10:44:45 Transaction Type : RESPONSE +10:44:45 Received From : +10:44:45 ============================================================================ +10:44:45 FNo. Len. Field Value +10:44:45 ============================================================================ +10:44:45 [ 1] [ 4] [0810] +10:44:45 [ 7] [ 10] [0320034353] +10:44:45 [ 11] [ 6] [155924] +10:44:45 [ 39] [ 2] [00] +10:44:45 [ 70] [ 3] [301] +10:44:45 ============================================================================ +10:44:45 Calculate Source COMM Id = 2 +10:44:45 ============================================================================ +10:44:45 + + +waiting on router queue for slot.... +10:44:47 ============================================================================ +10:44:47 Slot Id : <316> +10:44:47 Transaction Type : RESPONSE +10:44:47 Received From : +10:44:47 ============================================================================ +10:44:47 FNo. Len. Field Value +10:44:47 ============================================================================ +10:44:47 [ 1] [ 4] [0430] +10:44:47 [ 2] [ 16] [6213545000142616] +10:44:47 [ 3] [ 6] [011000] +10:44:47 [ 4] [ 12] [000020000000] +10:44:47 [ 7] [ 10] [0320034350] +10:44:47 [ 11] [ 6] [268197] +10:44:47 [ 12] [ 6] [104319] +10:44:47 [ 13] [ 4] [0320] +10:44:47 [ 14] [ 4] [4912] +10:44:47 [ 15] [ 4] [0320] +10:44:47 [ 18] [ 4] [6011] +10:44:47 [ 19] [ 3] [418] +10:44:47 [ 22] [ 3] [021] +10:44:47 [ 25] [ 2] [01] +10:44:47 [ 28] [ 9] [D00002000] +10:44:47 [ 32] [ 6] [180893] +10:44:47 [ 35] [ 32] [6213545000142616=491212014261320] +10:44:47 [ 37] [ 12] [507903268197] +10:44:47 [ 39] [ 2] [00] +10:44:47 [ 41] [ 8] [0363CPSH] +10:44:47 [ 42] [ 15] [999999 ] +10:44:47 [ 49] [ 3] [418] +10:44:47 [ 90] [ 42] [ TES1+000008000004300200268197032010431900] +10:44:47 [104] [ 16] [0001808930000000] +10:44:47 ============================================================================ +10:44:47 Calculate Source COMM Id = 2 +10:44:47 ============================================================================ +10:44:47 + + +waiting on router queue for slot.... +10:44:49 ============================================================================ +10:44:49 Slot Id : <283> +10:44:49 Transaction Type : RESPONSE +10:44:49 Received From : +10:44:49 ============================================================================ +10:44:49 FNo. Len. Field Value +10:44:49 ============================================================================ +10:44:49 [ 1] [ 4] [0210] +10:44:49 [ 2] [ 16] [6688990020021208] +10:44:49 [ 3] [ 6] [301000] +10:44:49 [ 4] [ 12] [000000000000] +10:44:49 [ 11] [ 6] [718892] +10:44:49 [ 12] [ 6] [104438] +10:44:49 [ 15] [ 4] [0320] +10:44:49 [ 18] [ 4] [6011] +10:44:49 [ 32] [ 6] [621354] +10:44:49 [ 35] [ 37] [6688990020021208=98041261403991700000] +10:44:49 [ 37] [ 12] [507903675277] +10:44:49 [ 38] [ 6] [436862] +10:44:49 [ 39] [ 2] [00] +10:44:49 [ 41] [ 8] [16002000] +10:44:49 [ 49] [ 3] [418] +10:44:49 [ 54] [ 20] [1002418C000107843400] +10:44:49 ============================================================================ +10:44:49 Calculate Source COMM Id = 0 +10:44:49 ============================================================================ +10:44:49 + + +waiting on router queue for slot.... +10:44:53 ============================================================================ +10:44:53 Slot Id : <302> +10:44:53 10:44:53 Received From : <> +10:44:53 ============================================================================ +10:44:53 FNo. Len. Field Value +10:44:53 ============================================================================ +10:44:53 Sending to : +10:44:53 ============================================================================ +10:44:53 + + +waiting on router queue for slot.... +10:44:55 ============================================================================ +10:44:55 Slot Id : <311> +10:44:55 Transaction Type : REQUEST +10:44:55 Received From : +10:44:55 ============================================================================ +10:44:55 FNo. Len. Field Value +10:44:55 ============================================================================ +10:44:55 [ 1] [ 4] [0800] +10:44:55 [ 7] [ 10] [0320035242] +10:44:55 [ 11] [ 6] [044573] +10:44:55 [ 37] [ 12] [57910044573] +10:44:55 [ 70] [ 3] [301] +10:44:55 ============================================================================ +10:44:55 + + +waiting on router queue for slot.... +10:44:55 Sending to : +10:44:55 ============================================================================ +10:44:55 ============================================================================ +10:44:55 Slot Id : <311> +10:44:55 Transaction Type : RESPONSE +10:44:55 Received From : +10:44:55 ============================================================================ +10:44:55 FNo. Len. Field Value +10:44:55 ============================================================================ +10:44:55 [ 1] [ 4] [0810] +10:44:55 [ 7] [ 10] [0320035242] +10:44:55 [ 11] [ 6] [044573] +10:44:55 [ 37] [ 12] [579100445730] +10:44:55 [ 39] [ 2] [00] +10:44:55 [ 70] [ 3] [810] +10:44:55 ============================================================================ +10:44:55 Calculate Source COMM Id = 1 +10:44:55 ============================================================================ +10:44:55 + + +waiting on router queue for slot.... +10:44:55 ============================================================================ +10:44:55 Slot Id : <312> +10:44:55 Transaction Type : REQUEST +10:44:55 Received From : +10:44:55 ============================================================================ +10:44:55 FNo. Len. Field Value +10:44:55 ============================================================================ +10:44:55 [ 1] [ 4] [0200] +10:44:55 [ 2] [ 16] [6688990104461007] +10:44:55 [ 3] [ 6] [010000] +10:44:55 [ 4] [ 12] [000100000000] +10:44:55 [ 7] [ 10] [0320104451] +10:44:55 [ 11] [ 6] [718955] +10:44:55 [ 12] [ 6] [104451] +10:44:55 [ 13] [ 4] [0320] +10:44:55 [ 15] [ 4] [0320] +10:44:55 [ 18] [ 4] [6011] +10:44:55 [ 22] [ 3] [900] +10:44:55 [ 25] [ 2] [02] +10:44:55 [ 28] [ 9] [D00002000] +10:44:55 [ 32] [ 6] [621354] +10:44:55 [ 35] [ 37] [6688990104461007=43041231100760700000] +10:44:55 [ 37] [ 12] [507904153843] +10:44:55 [ 41] [ 8] [20001000] +10:44:55 [ 42] [ 15] [NATIVE ] +10:44:55 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:44:55 [ 49] [ 3] [418] +10:44:55 [ 52] [ 16] [6E2CC16BDCED4E0F] +10:44:55 ============================================================================ +10:44:55 + + +waiting on router queue for slot.... +10:44:55 Sending to : +10:44:55 ============================================================================ +10:44:55 Sending to : +10:44:55 ============================================================================ +10:44:56 ============================================================================ +10:44:56 Slot Id : <312> +10:44:56 Transaction Type : REQUEST +10:44:56 Received From : +10:44:56 ============================================================================ +10:44:56 FNo. Len. Field Value +10:44:56 ============================================================================ +10:44:56 [ 1] [ 4] [0200] +10:44:56 [ 2] [ 16] [6688990104461007] +10:44:56 [ 3] [ 6] [010000] +10:44:56 [ 4] [ 12] [000100000000] +10:44:56 [ 7] [ 10] [0320104451] +10:44:56 [ 11] [ 6] [718955] +10:44:56 [ 12] [ 6] [104451] +10:44:56 [ 13] [ 4] [0320] +10:44:56 [ 15] [ 4] [0320] +10:44:56 [ 18] [ 4] [6011] +10:44:56 [ 22] [ 3] [900] +10:44:56 [ 25] [ 2] [02] +10:44:56 [ 28] [ 9] [D00002000] +10:44:56 [ 32] [ 6] [621354] +10:44:56 [ 35] [ 37] [6688990104461007=43041231100760700000] +10:44:56 [ 37] [ 12] [507904153843] +10:44:56 [ 41] [ 8] [20001000] +10:44:56 [ 42] [ 15] [NATIVE ] +10:44:56 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:44:56 [ 49] [ 3] [418] +10:44:56 [ 52] [ 16] [6E2CC16BDCED4E0F] +10:44:56 ============================================================================ +10:44:56 + + +waiting on router queue for slot.... +10:44:56 Sending to : +10:44:56 ============================================================================ +10:44:56 ============================================================================ +10:44:56 Slot Id : <312> +10:44:56 Transaction Type : REQUEST +10:44:56 Received From : +10:44:56 ============================================================================ +10:44:56 FNo. Len. Field Value +10:44:56 ============================================================================ +10:44:56 [ 1] [ 4] [0200] +10:44:56 [ 2] [ 16] [6688990104461007] +10:44:56 [ 3] [ 6] [010000] +10:44:56 [ 4] [ 12] [000100000000] +10:44:56 [ 7] [ 10] [0320104451] +10:44:56 [ 11] [ 6] [718955] +10:44:56 [ 12] [ 6] [104451] +10:44:56 [ 13] [ 4] [0320] +10:44:56 [ 15] [ 4] [0320] +10:44:56 [ 18] [ 4] [6011] +10:44:56 [ 22] [ 3] [900] +10:44:56 [ 25] [ 2] [02] +10:44:56 [ 28] [ 9] [D00002000] +10:44:56 [ 32] [ 6] [621354] +10:44:56 [ 35] [ 37] [6688990104461007=43041231100760700000] +10:44:56 [ 37] [ 12] [507904153843] +10:44:56 [ 41] [ 8] [20001000] +10:44:56 [ 42] [ 15] [NATIVE ] +10:44:56 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:44:56 [ 49] [ 3] [418] +10:44:56 [ 52] [ 16] [B9C201D536C92D43] +10:44:56 ============================================================================ +10:44:56 + + +waiting on router queue for slot.... +10:44:56 Sending to : <4> +10:44:56 ============================================================================ +10:44:57 ============================================================================ +10:44:57 Slot Id : <306> +10:44:57 Transaction Type : REQUEST +10:44:57 Received From : +10:44:57 ============================================================================ +10:44:57 FNo. Len. Field Value +10:44:57 ============================================================================ +10:44:57 [ 1] [ 4] [0200] +10:44:57 [ 2] [ 16] [6688990106720608] +10:44:57 [ 3] [ 6] [300000] +10:44:57 [ 4] [ 12] [000000000000] +10:44:57 [ 7] [ 10] [0320104453] +10:44:57 [ 11] [ 6] [718971] +10:44:57 [ 12] [ 6] [104453] +10:44:57 [ 13] [ 4] [0320] +10:44:57 [ 15] [ 4] [0320] +10:44:57 [ 18] [ 4] [6011] +10:44:57 [ 22] [ 3] [900] +10:44:57 [ 25] [ 2] [02] +10:44:57 [ 28] [ 9] [D00000000] +10:44:57 [ 32] [ 6] [621354] +10:44:57 [ 35] [ 37] [6688990106720608=44011231060808600000] +10:44:57 [ 37] [ 12] [507903016930] +10:44:57 [ 41] [ 8] [12002400] +10:44:57 [ 42] [ 15] [NATIVE ] +10:44:57 [ 43] [ 40] [BAN NATOR Xayabouly LAO] +10:44:57 [ 49] [ 3] [418] +10:44:57 [ 52] [ 16] [002ECE234A3FD48F] +10:44:57 ============================================================================ +10:44:57 + + +waiting on router queue for slot.... +10:44:57 Sending to : +10:44:57 ============================================================================ +10:44:57 Sending to : +10:44:57 ============================================================================ +10:44:57 ============================================================================ +10:44:57 Slot Id : <306> +10:44:57 Transaction Type : REQUEST +10:44:57 Received From : +10:44:57 ============================================================================ +10:44:57 FNo. Len. Field Value +10:44:57 ============================================================================ +10:44:57 [ 1] [ 4] [0200] +10:44:57 [ 2] [ 16] [6688990106720608] +10:44:57 [ 3] [ 6] [300000] +10:44:57 [ 4] [ 12] [000000000000] +10:44:57 [ 7] [ 10] [0320104453] +10:44:57 [ 11] [ 6] [718971] +10:44:57 [ 12] [ 6] [104453] +10:44:57 [ 13] [ 4] [0320] +10:44:57 [ 15] [ 4] [0320] +10:44:57 [ 18] [ 4] [6011] +10:44:57 [ 22] [ 3] [900] +10:44:57 [ 25] [ 2] [02] +10:44:57 [ 28] [ 9] [D00000000] +10:44:57 [ 32] [ 6] [621354] +10:44:57 [ 35] [ 37] [6688990106720608=44011231060808600000] +10:44:57 [ 37] [ 12] [507903016930] +10:44:57 [ 41] [ 8] [12002400] +10:44:57 [ 42] [ 15] [NATIVE ] +10:44:57 [ 43] [ 40] [BAN NATOR Xayabouly LAO] +10:44:57 [ 49] [ 3] [418] +10:44:57 [ 52] [ 16] [002ECE234A3FD48F] +10:44:57 ============================================================================ +10:44:57 + + +waiting on router queue for slot.... +10:44:57 Sending to : +10:44:57 ============================================================================ +10:44:57 ============================================================================ +10:44:57 Slot Id : <306> +10:44:57 Transaction Type : REQUEST +10:44:57 Received From : +10:44:57 ============================================================================ +10:44:57 FNo. Len. Field Value +10:44:57 ============================================================================ +10:44:57 [ 1] [ 4] [0200] +10:44:57 [ 2] [ 16] [6688990106720608] +10:44:57 [ 3] [ 6] [300000] +10:44:57 [ 4] [ 12] [000000000000] +10:44:57 [ 7] [ 10] [0320104453] +10:44:57 [ 11] [ 6] [718971] +10:44:57 [ 12] [ 6] [104453] +10:44:57 [ 13] [ 4] [0320] +10:44:57 [ 15] [ 4] [0320] +10:44:57 [ 18] [ 4] [6011] +10:44:57 [ 22] [ 3] [900] +10:44:57 [ 25] [ 2] [02] +10:44:57 [ 28] [ 9] [D00000000] +10:44:57 [ 32] [ 6] [621354] +10:44:57 [ 35] [ 37] [6688990106720608=44011231060808600000] +10:44:57 [ 37] [ 12] [507903016930] +10:44:57 [ 41] [ 8] [12002400] +10:44:57 [ 42] [ 15] [NATIVE ] +10:44:57 [ 43] [ 40] [BAN NATOR Xayabouly LAO] +10:44:57 [ 49] [ 3] [418] +10:44:57 [ 52] [ 16] [ECF9FE5429E1670C] +10:44:57 ============================================================================ +10:44:57 + + +waiting on router queue for slot.... +10:44:57 Sending to : <4> +10:44:57 ============================================================================ +10:44:58 ============================================================================ +10:44:58 Slot Id : <312> +10:44:58 Transaction Type : RESPONSE +10:44:58 Received From : +10:44:58 ============================================================================ +10:44:58 FNo. Len. Field Value +10:44:58 ============================================================================ +10:44:58 [ 1] [ 4] [0210] +10:44:58 [ 2] [ 16] [6688990104461007] +10:44:58 [ 3] [ 6] [010000] +10:44:58 [ 4] [ 12] [000100000000] +10:44:58 [ 11] [ 6] [718955] +10:44:58 [ 12] [ 6] [104451] +10:44:58 [ 15] [ 4] [0320] +10:44:58 [ 18] [ 4] [6011] +10:44:58 [ 32] [ 6] [621354] +10:44:58 [ 35] [ 37] [6688990104461007=43041231100760700000] +10:44:58 [ 37] [ 12] [507904153843] +10:44:58 [ 38] [ 6] [010000] +10:44:58 [ 39] [ 2] [00] +10:44:58 [ 41] [ 8] [20001000] +10:44:58 [ 49] [ 3] [418] +10:44:58 [ 54] [ 20] [0002418C000121010170] +10:44:58 ============================================================================ +10:44:58 Sending to : +10:44:58 ============================================================================ +10:44:58 + + +waiting on router queue for slot.... +10:44:58 ============================================================================ +10:44:58 Slot Id : <292> +10:44:58 10:44:58 Received From : <> +10:44:58 ============================================================================ +10:44:58 FNo. Len. Field Value +10:44:58 ============================================================================ +10:44:58 Sending to : +10:44:58 ============================================================================ +10:44:58 + + +waiting on router queue for slot.... +10:44:59 ============================================================================ +10:44:59 Slot Id : <306> +10:44:59 Transaction Type : RESPONSE +10:44:59 Received From : +10:44:59 ============================================================================ +10:44:59 FNo. Len. Field Value +10:44:59 ============================================================================ +10:44:59 [ 1] [ 4] [0210] +10:44:59 [ 2] [ 16] [6688990106720608] +10:44:59 [ 3] [ 6] [300000] +10:44:59 [ 4] [ 12] [000000000000] +10:44:59 [ 11] [ 6] [718971] +10:44:59 [ 12] [ 6] [104453] +10:44:59 [ 15] [ 4] [0320] +10:44:59 [ 18] [ 4] [6011] +10:44:59 [ 32] [ 6] [621354] +10:44:59 [ 35] [ 37] [6688990106720608=44011231060808600000] +10:44:59 [ 37] [ 12] [507903016930] +10:44:59 [ 38] [ 6] [641587] +10:44:59 [ 39] [ 2] [00] +10:44:59 [ 41] [ 8] [12002400] +10:44:59 [ 49] [ 3] [418] +10:44:59 [ 54] [ 20] [0002418C000053686878] +10:44:59 ============================================================================ +10:44:59 Sending to : +10:44:59 ============================================================================ +10:44:59 + + +waiting on router queue for slot.... +10:45:01 ============================================================================ +10:45:01 Slot Id : <312> +10:45:01 Transaction Type : RESPONSE +10:45:01 Received From : +10:45:01 ============================================================================ +10:45:01 FNo. Len. Field Value +10:45:01 ============================================================================ +10:45:01 [ 1] [ 4] [0210] +10:45:01 [ 2] [ 16] [6688990104461007] +10:45:01 [ 3] [ 6] [010000] +10:45:01 [ 4] [ 12] [000100000000] +10:45:01 [ 11] [ 6] [718955] +10:45:01 [ 12] [ 6] [104451] +10:45:01 [ 15] [ 4] [0320] +10:45:01 [ 18] [ 4] [6011] +10:45:01 [ 32] [ 6] [621354] +10:45:01 [ 35] [ 37] [6688990104461007=43041231100760700000] +10:45:01 [ 37] [ 12] [507904153843] +10:45:01 [ 38] [ 6] [010000] +10:45:01 [ 39] [ 2] [00] +10:45:01 [ 41] [ 8] [20001000] +10:45:01 [ 49] [ 3] [418] +10:45:01 [ 54] [ 20] [0002418C000121010170] +10:45:01 ============================================================================ +10:45:01 Calculate Source COMM Id = 0 +10:45:01 ============================================================================ +10:45:01 + + +waiting on router queue for slot.... +10:45:02 ============================================================================ +10:45:02 Slot Id : <306> +10:45:02 Transaction Type : RESPONSE +10:45:02 Received From : +10:45:02 ============================================================================ +10:45:02 FNo. Len. Field Value +10:45:02 ============================================================================ +10:45:02 [ 1] [ 4] [0210] +10:45:02 [ 2] [ 16] [6688990106720608] +10:45:02 [ 3] [ 6] [300000] +10:45:02 [ 4] [ 12] [000000000000] +10:45:02 [ 11] [ 6] [718971] +10:45:02 [ 12] [ 6] [104453] +10:45:02 [ 15] [ 4] [0320] +10:45:02 [ 18] [ 4] [6011] +10:45:02 [ 32] [ 6] [621354] +10:45:02 [ 35] [ 37] [6688990106720608=44011231060808600000] +10:45:02 [ 37] [ 12] [507903016930] +10:45:02 [ 38] [ 6] [641587] +10:45:02 [ 39] [ 2] [00] +10:45:02 [ 41] [ 8] [12002400] +10:45:02 [ 49] [ 3] [418] +10:45:02 [ 54] [ 20] [0002418C000053686878] +10:45:02 ============================================================================ +10:45:02 Calculate Source COMM Id = 0 +10:45:02 ============================================================================ +10:45:02 + + +waiting on router queue for slot.... +10:45:14 ============================================================================ +10:45:14 Slot Id : <307> +10:45:14 Transaction Type : REQUEST +10:45:14 Received From : +10:45:14 ============================================================================ +10:45:14 FNo. Len. Field Value +10:45:14 ============================================================================ +10:45:14 [ 1] [ 4] [0800] +10:45:14 [ 7] [ 10] [0320034419] +10:45:14 [ 11] [ 6] [155925] +10:45:14 [ 70] [ 3] [301] +10:45:14 ============================================================================ +10:45:14 + + +waiting on router queue for slot.... +10:45:14 Sending to : +10:45:14 ============================================================================ +10:45:14 ============================================================================ +10:45:14 Slot Id : <307> +10:45:14 Transaction Type : RESPONSE +10:45:14 Received From : +10:45:14 ============================================================================ +10:45:14 FNo. Len. Field Value +10:45:14 ============================================================================ +10:45:14 [ 1] [ 4] [0810] +10:45:14 [ 7] [ 10] [0320034419] +10:45:14 [ 11] [ 6] [155925] +10:45:14 [ 39] [ 2] [00] +10:45:14 [ 70] [ 3] [301] +10:45:14 ============================================================================ +10:45:14 Calculate Source COMM Id = 2 +10:45:14 ============================================================================ +10:45:14 + + +waiting on router queue for slot.... +10:45:15 ============================================================================ +10:45:15 Slot Id : <317> +10:45:15 Transaction Type : REQUEST +10:45:15 Received From : +10:45:15 ============================================================================ +10:45:15 FNo. Len. Field Value +10:45:15 ============================================================================ +10:45:15 [ 1] [ 4] [0200] +10:45:15 [ 2] [ 16] [6213546000001455] +10:45:15 [ 3] [ 6] [010000] +10:45:15 [ 4] [ 12] [000100000000] +10:45:15 [ 7] [ 10] [0320034421] +10:45:15 [ 11] [ 6] [268203] +10:45:15 [ 12] [ 6] [104421] +10:45:15 [ 13] [ 4] [0320] +10:45:15 [ 14] [ 4] [4912] +10:45:15 [ 15] [ 4] [0320] +10:45:15 [ 18] [ 4] [6011] +10:45:15 [ 19] [ 3] [418] +10:45:15 [ 22] [ 3] [021] +10:45:15 [ 25] [ 2] [01] +10:45:15 [ 28] [ 9] [D00002000] +10:45:15 [ 32] [ 6] [180893] +10:45:15 [ 35] [ 32] [6213546000001455=491212010145040] +10:45:15 [ 37] [ 12] [507903268203] +10:45:15 [ 41] [ 8] [0111BLBR] +10:45:15 [ 42] [ 15] [999999 ] +10:45:15 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +10:45:15 [ 49] [ 3] [418] +10:45:15 [ 52] [ 16] [DB7A2B3BCA207E70] +10:45:15 ============================================================================ +10:45:15 + + +waiting on router queue for slot.... +10:45:15 Sending to : +10:45:15 ============================================================================ +10:45:15 Sending to : +10:45:15 ============================================================================ +10:45:16 ============================================================================ +10:45:16 Slot Id : <317> +10:45:16 Transaction Type : REQUEST +10:45:16 Received From : +10:45:16 ============================================================================ +10:45:16 FNo. Len. Field Value +10:45:16 ============================================================================ +10:45:16 [ 1] [ 4] [0200] +10:45:16 [ 2] [ 16] [6213546000001455] +10:45:16 [ 3] [ 6] [010000] +10:45:16 [ 4] [ 12] [000100000000] +10:45:16 [ 7] [ 10] [0320034421] +10:45:16 [ 11] [ 6] [268203] +10:45:16 [ 12] [ 6] [104421] +10:45:16 [ 13] [ 4] [0320] +10:45:16 [ 14] [ 4] [4912] +10:45:16 [ 15] [ 4] [0320] +10:45:16 [ 18] [ 4] [6011] +10:45:16 [ 19] [ 3] [418] +10:45:16 [ 22] [ 3] [021] +10:45:16 [ 25] [ 2] [01] +10:45:16 [ 28] [ 9] [D00002000] +10:45:16 [ 32] [ 6] [180893] +10:45:16 [ 35] [ 32] [6213546000001455=491212010145040] +10:45:16 [ 37] [ 12] [507903268203] +10:45:16 [ 41] [ 8] [0111BLBR] +10:45:16 [ 42] [ 15] [999999 ] +10:45:16 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +10:45:16 [ 49] [ 3] [418] +10:45:16 [ 52] [ 16] [DB7A2B3BCA207E70] +10:45:16 ============================================================================ +10:45:16 + + +waiting on router queue for slot.... +10:45:16 Sending to : +10:45:16 ============================================================================ +10:45:16 ============================================================================ +10:45:16 Slot Id : <317> +10:45:16 Transaction Type : REQUEST +10:45:16 Received From : +10:45:16 ============================================================================ +10:45:16 FNo. Len. Field Value +10:45:16 ============================================================================ +10:45:16 [ 1] [ 4] [0200] +10:45:16 [ 2] [ 16] [6213546000001455] +10:45:16 [ 3] [ 6] [010000] +10:45:16 [ 4] [ 12] [000100000000] +10:45:16 [ 7] [ 10] [0320034421] +10:45:16 [ 11] [ 6] [268203] +10:45:16 [ 12] [ 6] [104421] +10:45:16 [ 13] [ 4] [0320] +10:45:16 [ 14] [ 4] [4912] +10:45:16 [ 15] [ 4] [0320] +10:45:16 [ 18] [ 4] [6011] +10:45:16 [ 19] [ 3] [418] +10:45:16 [ 22] [ 3] [021] +10:45:16 [ 25] [ 2] [01] +10:45:16 [ 28] [ 9] [D00002000] +10:45:16 [ 32] [ 6] [180893] +10:45:16 [ 35] [ 32] [6213546000001455=491212010145040] +10:45:16 [ 37] [ 12] [507903268203] +10:45:16 [ 41] [ 8] [0111BLBR] +10:45:16 [ 42] [ 15] [999999 ] +10:45:16 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +10:45:16 [ 49] [ 3] [418] +10:45:16 [ 52] [ 16] [85589D89359239D2] +10:45:16 ============================================================================ +10:45:16 + + +waiting on router queue for slot.... +10:45:16 Sending to : <0> +10:45:16 ============================================================================ +10:45:17 ============================================================================ +10:45:17 Slot Id : <317> +10:45:17 Transaction Type : RESPONSE +10:45:17 Received From : +10:45:17 ============================================================================ +10:45:17 FNo. Len. Field Value +10:45:17 ============================================================================ +10:45:17 [ 1] [ 4] [0210] +10:45:17 [ 2] [ 16] [6213546000001455] +10:45:17 [ 3] [ 6] [010000] +10:45:17 [ 4] [ 12] [000100000000] +10:45:17 [ 7] [ 10] [0320034421] +10:45:17 [ 11] [ 6] [268203] +10:45:17 [ 12] [ 6] [104421] +10:45:17 [ 13] [ 4] [0320] +10:45:17 [ 15] [ 4] [0320] +10:45:17 [ 18] [ 4] [6011] +10:45:17 [ 19] [ 3] [418] +10:45:17 [ 32] [ 6] [180893] +10:45:17 [ 35] [ 32] [6213546000001455=491212010145040] +10:45:17 [ 37] [ 12] [507903268203] +10:45:17 [ 38] [ 6] [998380] +10:45:17 [ 39] [ 2] [00] +10:45:17 [ 41] [ 8] [0111BLBR] +10:45:17 [ 49] [ 3] [418] +10:45:17 [ 54] [ 40] [0001418C0001587416740002418C000158741674] +10:45:17 ============================================================================ +10:45:17 Sending to : +10:45:17 ============================================================================ +10:45:17 + + +waiting on router queue for slot.... +10:45:19 ============================================================================ +10:45:19 Slot Id : <317> +10:45:19 Transaction Type : RESPONSE +10:45:19 Received From : +10:45:19 ============================================================================ +10:45:19 FNo. Len. Field Value +10:45:19 ============================================================================ +10:45:19 [ 1] [ 4] [0210] +10:45:19 [ 2] [ 16] [6213546000001455] +10:45:19 [ 3] [ 6] [010000] +10:45:19 [ 4] [ 12] [000100000000] +10:45:19 [ 7] [ 10] [0320034421] +10:45:19 [ 11] [ 6] [268203] +10:45:19 [ 12] [ 6] [104421] +10:45:19 [ 13] [ 4] [0320] +10:45:19 [ 15] [ 4] [0320] +10:45:19 [ 18] [ 4] [6011] +10:45:19 [ 19] [ 3] [418] +10:45:19 [ 32] [ 6] [180893] +10:45:19 [ 35] [ 32] [6213546000001455=491212010145040] +10:45:19 [ 37] [ 12] [507903268203] +10:45:19 [ 38] [ 6] [998380] +10:45:19 [ 39] [ 2] [00] +10:45:19 [ 41] [ 8] [0111BLBR] +10:45:19 [ 49] [ 3] [418] +10:45:19 [ 54] [ 40] [0001418C0001587416740002418C000158741674] +10:45:19 ============================================================================ +10:45:19 Calculate Source COMM Id = 2 +10:45:19 ============================================================================ +10:45:19 + + +waiting on router queue for slot.... +10:45:26 ============================================================================ +10:45:26 Slot Id : <310> +10:45:26 Transaction Type : REQUEST +10:45:26 Received From : +10:45:26 ============================================================================ +10:45:26 FNo. Len. Field Value +10:45:26 ============================================================================ +10:45:26 [ 1] [ 4] [0800] +10:45:26 [ 2] [ 5] [02531] +10:45:26 [ 3] [ 6] [579108] +10:45:26 [ 7] [ 10] [0320034526] +10:45:26 [ 11] [ 6] [807036] +10:45:26 [ 15] [ 10] [0320034526] +10:45:26 [ 37] [ 11] [57910807036] +10:45:26 [ 70] [ 3] [001] +10:45:26 ============================================================================ +10:45:26 + + +waiting on router queue for slot.... +10:45:26 ============================================================================ +10:45:26 Slot Id : <310> +10:45:26 Transaction Type : RESPONSE +10:45:26 Received From : +10:45:26 ============================================================================ +10:45:26 FNo. Len. Field Value +10:45:26 ============================================================================ +10:45:26 [ 1] [ 4] [0810] +10:45:26 [ 7] [ 10] [0320034526] +10:45:26 [ 11] [ 6] [807036] +10:45:26 [ 15] [ 4] [0320] +10:45:26 [ 37] [ 12] [57910807036] +10:45:26 [ 39] [ 2] [00] +10:45:26 [ 70] [ 3] [001] +10:45:26 ============================================================================ +10:45:26 Sending to : +10:45:26 ============================================================================ +10:45:26 + + +waiting on router queue for slot.... +10:45:33 ============================================================================ +10:45:33 Slot Id : <318> +10:45:33 Transaction Type : REQUEST +10:45:33 Received From : +10:45:33 ============================================================================ +10:45:33 FNo. Len. Field Value +10:45:33 ============================================================================ +10:45:33 [ 1] [ 4] [0800] +10:45:33 [ 7] [ 10] [0320034441] +10:45:33 [ 11] [ 6] [155926] +10:45:33 [ 70] [ 3] [301] +10:45:33 ============================================================================ +10:45:33 + + +waiting on router queue for slot.... +10:45:33 Sending to : +10:45:33 ============================================================================ +10:45:33 ============================================================================ +10:45:33 Slot Id : <318> +10:45:33 Transaction Type : RESPONSE +10:45:33 Received From : +10:45:33 ============================================================================ +10:45:33 FNo. Len. Field Value +10:45:33 ============================================================================ +10:45:33 [ 1] [ 4] [0810] +10:45:33 [ 7] [ 10] [0320034441] +10:45:33 [ 11] [ 6] [155926] +10:45:33 [ 39] [ 2] [00] +10:45:33 [ 70] [ 3] [301] +10:45:33 ============================================================================ +10:45:33 Calculate Source COMM Id = 2 +10:45:33 ============================================================================ +10:45:33 + + +waiting on router queue for slot.... +10:45:38 ============================================================================ +10:45:38 Slot Id : <322> +10:45:38 Transaction Type : REQUEST +10:45:38 Received From : +10:45:38 ============================================================================ +10:45:38 FNo. Len. Field Value +10:45:38 ============================================================================ +10:45:38 [ 1] [ 4] [0200] +10:45:38 [ 2] [ 16] [6213545001051030] +10:45:38 [ 3] [ 6] [010000] +10:45:38 [ 4] [ 12] [000005000000] +10:45:38 [ 7] [ 10] [0320104329] +10:45:38 [ 11] [ 6] [939463] +10:45:38 [ 12] [ 6] [104329] +10:45:38 [ 13] [ 4] [0320] +10:45:38 [ 15] [ 4] [0320] +10:45:38 [ 18] [ 4] [6011] +10:45:38 [ 19] [ 3] [418] +10:45:38 [ 22] [ 3] [021] +10:45:38 [ 25] [ 2] [01] +10:45:38 [ 28] [ 9] [D00002000] +10:45:38 [ 32] [ 6] [668899] +10:45:38 [ 35] [ 32] [6213545001051030=491212015103213] +10:45:38 [ 37] [ 12] [507900297342] +10:45:38 [ 41] [ 8] [03010006] +10:45:38 [ 42] [ 15] [APT ] +10:45:38 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:45:38 [ 49] [ 3] [418] +10:45:38 [ 52] [ 16] [459354D0C11E0537] +10:45:38 ============================================================================ +10:45:38 + + +waiting on router queue for slot.... +10:45:38 Sending to : +10:45:38 ============================================================================ +10:45:38 Sending to : +10:45:38 ============================================================================ +10:45:38 ============================================================================ +10:45:38 Slot Id : <322> +10:45:38 Transaction Type : REQUEST +10:45:38 Received From : +10:45:38 ============================================================================ +10:45:38 FNo. Len. Field Value +10:45:38 ============================================================================ +10:45:38 [ 1] [ 4] [0200] +10:45:38 [ 2] [ 16] [6213545001051030] +10:45:38 [ 3] [ 6] [010000] +10:45:38 [ 4] [ 12] [000005000000] +10:45:38 [ 7] [ 10] [0320104329] +10:45:38 [ 11] [ 6] [939463] +10:45:38 [ 12] [ 6] [104329] +10:45:38 [ 13] [ 4] [0320] +10:45:38 [ 15] [ 4] [0320] +10:45:38 [ 18] [ 4] [6011] +10:45:38 [ 19] [ 3] [418] +10:45:38 [ 22] [ 3] [021] +10:45:38 [ 25] [ 2] [01] +10:45:38 [ 28] [ 9] [D00002000] +10:45:38 [ 32] [ 6] [668899] +10:45:38 [ 35] [ 32] [6213545001051030=491212015103213] +10:45:38 [ 37] [ 12] [507900297342] +10:45:38 [ 41] [ 8] [03010006] +10:45:38 [ 42] [ 15] [APT ] +10:45:38 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:45:38 [ 49] [ 3] [418] +10:45:38 [ 52] [ 16] [459354D0C11E0537] +10:45:38 ============================================================================ +10:45:38 + + +waiting on router queue for slot.... +10:45:38 Sending to : +10:45:38 ============================================================================ +10:45:38 ============================================================================ +10:45:38 Slot Id : <322> +10:45:38 Transaction Type : REQUEST +10:45:38 Received From : +10:45:38 ============================================================================ +10:45:38 FNo. Len. Field Value +10:45:38 ============================================================================ +10:45:38 [ 1] [ 4] [0200] +10:45:38 [ 2] [ 16] [6213545001051030] +10:45:38 [ 3] [ 6] [010000] +10:45:38 [ 4] [ 12] [000005000000] +10:45:38 [ 7] [ 10] [0320104329] +10:45:38 [ 11] [ 6] [939463] +10:45:38 [ 12] [ 6] [104329] +10:45:38 [ 13] [ 4] [0320] +10:45:38 [ 15] [ 4] [0320] +10:45:38 [ 18] [ 4] [6011] +10:45:38 [ 19] [ 3] [418] +10:45:38 [ 22] [ 3] [021] +10:45:38 [ 25] [ 2] [01] +10:45:38 [ 28] [ 9] [D00002000] +10:45:38 [ 32] [ 6] [668899] +10:45:38 [ 35] [ 32] [6213545001051030=491212015103213] +10:45:38 [ 37] [ 12] [507900297342] +10:45:38 [ 41] [ 8] [03010006] +10:45:38 [ 42] [ 15] [APT ] +10:45:38 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:45:38 [ 49] [ 3] [418] +10:45:38 [ 52] [ 16] [A69A45E09BB943C2] +10:45:38 ============================================================================ +10:45:38 + + +waiting on router queue for slot.... +10:45:38 Sending to : <0> +10:45:38 ============================================================================ +10:45:39 ============================================================================ +10:45:39 Slot Id : <322> +10:45:39 Transaction Type : RESPONSE +10:45:39 Received From : +10:45:39 ============================================================================ +10:45:39 FNo. Len. Field Value +10:45:39 ============================================================================ +10:45:39 [ 1] [ 4] [0210] +10:45:39 [ 2] [ 16] [6213545001051030] +10:45:39 [ 3] [ 6] [010000] +10:45:39 [ 4] [ 12] [000005000000] +10:45:39 [ 7] [ 10] [0320104329] +10:45:39 [ 11] [ 6] [939463] +10:45:39 [ 12] [ 6] [104329] +10:45:39 [ 13] [ 4] [0320] +10:45:39 [ 15] [ 4] [0320] +10:45:39 [ 18] [ 4] [6011] +10:45:39 [ 19] [ 3] [418] +10:45:39 [ 32] [ 6] [668899] +10:45:39 [ 35] [ 32] [6213545001051030=491212015103213] +10:45:39 [ 37] [ 12] [507900297342] +10:45:39 [ 38] [ 6] [411875] +10:45:39 [ 39] [ 2] [00] +10:45:39 [ 41] [ 8] [03010006] +10:45:39 [ 49] [ 3] [418] +10:45:39 [ 54] [ 40] [0001418C0000078836790002418C000007883679] +10:45:39 ============================================================================ +10:45:39 Sending to : +10:45:39 ============================================================================ +10:45:39 + + +waiting on router queue for slot.... +10:45:40 ============================================================================ +10:45:40 Slot Id : <322> +10:45:40 Transaction Type : RESPONSE +10:45:40 Received From : +10:45:40 ============================================================================ +10:45:40 FNo. Len. Field Value +10:45:40 ============================================================================ +10:45:40 [ 1] [ 4] [0210] +10:45:40 [ 2] [ 16] [6213545001051030] +10:45:40 [ 3] [ 6] [010000] +10:45:40 [ 4] [ 12] [000005000000] +10:45:40 [ 7] [ 10] [0320104329] +10:45:40 [ 11] [ 6] [939463] +10:45:40 [ 12] [ 6] [104329] +10:45:40 [ 13] [ 4] [0320] +10:45:40 [ 15] [ 4] [0320] +10:45:40 [ 18] [ 4] [6011] +10:45:40 [ 19] [ 3] [418] +10:45:40 [ 32] [ 6] [668899] +10:45:40 [ 35] [ 32] [6213545001051030=491212015103213] +10:45:40 [ 37] [ 12] [507900297342] +10:45:40 [ 38] [ 6] [411875] +10:45:40 [ 39] [ 2] [00] +10:45:40 [ 41] [ 8] [03010006] +10:45:40 [ 49] [ 3] [418] +10:45:40 [ 54] [ 40] [0001418C0000078836790002418C000007883679] +10:45:40 ============================================================================ +10:45:40 Calculate Source COMM Id = 4 +10:45:40 ============================================================================ +10:45:40 + + +waiting on router queue for slot.... +10:45:44 ============================================================================ +10:45:44 Slot Id : <315> +10:45:44 Transaction Type : REQUEST +10:45:44 Received From : +10:45:44 ============================================================================ +10:45:44 FNo. Len. Field Value +10:45:44 ============================================================================ +10:45:44 [ 1] [ 4] [0800] +10:45:44 [ 7] [ 10] [0320034452] +10:45:44 [ 11] [ 6] [155927] +10:45:44 [ 70] [ 3] [301] +10:45:44 ============================================================================ +10:45:44 + + +waiting on router queue for slot.... +10:45:44 Sending to : +10:45:44 ============================================================================ +10:45:44 ============================================================================ +10:45:44 Slot Id : <315> +10:45:44 Transaction Type : RESPONSE +10:45:44 Received From : +10:45:44 ============================================================================ +10:45:44 FNo. Len. Field Value +10:45:44 ============================================================================ +10:45:44 [ 1] [ 4] [0810] +10:45:44 [ 7] [ 10] [0320034452] +10:45:44 [ 11] [ 6] [155927] +10:45:44 [ 39] [ 2] [00] +10:45:44 [ 70] [ 3] [301] +10:45:44 ============================================================================ +10:45:44 Calculate Source COMM Id = 2 +10:45:44 ============================================================================ +10:45:44 + + +waiting on router queue for slot.... +10:45:55 ============================================================================ +10:45:55 Slot Id : <304> +10:45:55 Transaction Type : REQUEST +10:45:55 Received From : +10:45:55 ============================================================================ +10:45:55 FNo. Len. Field Value +10:45:55 ============================================================================ +10:45:55 [ 1] [ 4] [0800] +10:45:55 [ 7] [ 10] [0320034502] +10:45:55 [ 11] [ 6] [155928] +10:45:55 [ 70] [ 3] [301] +10:45:55 ============================================================================ +10:45:55 + + +waiting on router queue for slot.... +10:45:55 Sending to : +10:45:55 ============================================================================ +10:45:55 ============================================================================ +10:45:55 Slot Id : <304> +10:45:55 Transaction Type : RESPONSE +10:45:55 Received From : +10:45:55 ============================================================================ +10:45:55 FNo. Len. Field Value +10:45:55 ============================================================================ +10:45:55 [ 1] [ 4] [0810] +10:45:55 [ 7] [ 10] [0320034502] +10:45:55 [ 11] [ 6] [155928] +10:45:55 [ 39] [ 2] [00] +10:45:55 [ 70] [ 3] [301] +10:45:55 ============================================================================ +10:45:55 Calculate Source COMM Id = 2 +10:45:55 ============================================================================ +10:45:55 + + +waiting on router queue for slot.... +10:45:58 ============================================================================ +10:45:58 Slot Id : <289> +10:45:58 Transaction Type : REQUEST +10:45:58 Received From : +10:45:58 ============================================================================ +10:45:58 FNo. Len. Field Value +10:45:58 ============================================================================ +10:45:58 [ 1] [ 4] [0200] +10:45:58 [ 2] [ 16] [6688990106720608] +10:45:58 [ 3] [ 6] [010000] +10:45:58 [ 4] [ 12] [000029000000] +10:45:58 [ 7] [ 10] [0320104554] +10:45:58 [ 11] [ 6] [719227] +10:45:58 [ 12] [ 6] [104554] +10:45:58 [ 13] [ 4] [0320] +10:45:58 [ 15] [ 4] [0320] +10:45:58 [ 18] [ 4] [6011] +10:45:58 [ 22] [ 3] [900] +10:45:58 [ 25] [ 2] [02] +10:45:58 [ 28] [ 9] [D00002000] +10:45:58 [ 32] [ 6] [621354] +10:45:58 [ 35] [ 37] [6688990106720608=44011231060808600000] +10:45:58 [ 37] [ 12] [507903016932] +10:45:58 [ 41] [ 8] [12002400] +10:45:58 [ 42] [ 15] [NATIVE ] +10:45:58 [ 43] [ 40] [BAN NATOR Xayabouly LAO] +10:45:58 [ 49] [ 3] [418] +10:45:58 [ 52] [ 16] [002ECE234A3FD48F] +10:45:58 ============================================================================ +10:45:58 + + +waiting on router queue for slot.... +10:45:58 Sending to : +10:45:58 ============================================================================ +10:45:58 Sending to : +10:45:58 ============================================================================ +10:45:58 ============================================================================ +10:45:58 Slot Id : <285> +10:45:58 Transaction Type : REQUEST +10:45:58 Received From : +10:45:58 ============================================================================ +10:45:58 FNo. Len. Field Value +10:45:58 ============================================================================ +10:45:58 [ 1] [ 4] [0200] +10:45:58 [ 2] [ 16] [6213545001065238] +10:45:58 [ 3] [ 6] [011000] +10:45:58 [ 4] [ 12] [000060000000] +10:45:58 [ 7] [ 10] [0320034503] +10:45:58 [ 11] [ 6] [268209] +10:45:58 [ 12] [ 6] [104503] +10:45:58 [ 13] [ 4] [0320] +10:45:58 [ 14] [ 4] [4912] +10:45:58 [ 15] [ 4] [0320] +10:45:58 [ 18] [ 4] [6011] +10:45:58 [ 19] [ 3] [418] +10:45:58 [ 22] [ 3] [021] +10:45:58 [ 25] [ 2] [01] +10:45:58 [ 28] [ 9] [D00002000] +10:45:58 [ 32] [ 6] [180893] +10:45:58 [ 35] [ 32] [6213545001065238=491212016523253] +10:45:58 [ 37] [ 12] [507903268209] +10:45:58 [ 41] [ 8] [0324BKDT] +10:45:58 [ 42] [ 15] [999999 ] +10:45:58 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:45:58 [ 49] [ 3] [418] +10:45:58 [ 52] [ 16] [2A9D193CF7157E16] +10:45:58 ============================================================================ +10:45:58 + + +waiting on router queue for slot.... +10:45:58 Sending to : +10:45:58 ============================================================================ +10:45:58 Sending to : +10:45:58 ============================================================================ +10:45:58 ============================================================================ +10:45:58 Slot Id : <289> +10:45:58 Transaction Type : REQUEST +10:45:58 Received From : +10:45:58 ============================================================================ +10:45:58 FNo. Len. Field Value +10:45:58 ============================================================================ +10:45:58 [ 1] [ 4] [0200] +10:45:58 [ 2] [ 16] [6688990106720608] +10:45:58 [ 3] [ 6] [010000] +10:45:58 [ 4] [ 12] [000029000000] +10:45:58 [ 7] [ 10] [0320104554] +10:45:58 [ 11] [ 6] [719227] +10:45:58 [ 12] [ 6] [104554] +10:45:58 [ 13] [ 4] [0320] +10:45:58 [ 15] [ 4] [0320] +10:45:58 [ 18] [ 4] [6011] +10:45:58 [ 22] [ 3] [900] +10:45:58 [ 25] [ 2] [02] +10:45:58 [ 28] [ 9] [D00002000] +10:45:58 [ 32] [ 6] [621354] +10:45:58 [ 35] [ 37] [6688990106720608=44011231060808600000] +10:45:58 [ 37] [ 12] [507903016932] +10:45:58 [ 41] [ 8] [12002400] +10:45:58 [ 42] [ 15] [NATIVE ] +10:45:58 [ 43] [ 40] [BAN NATOR Xayabouly LAO] +10:45:58 [ 49] [ 3] [418] +10:45:58 [ 52] [ 16] [002ECE234A3FD48F] +10:45:58 ============================================================================ +10:45:58 + + +waiting on router queue for slot.... +10:45:58 Sending to : +10:45:58 ============================================================================ +10:45:58 ============================================================================ +10:45:58 Slot Id : <289> +10:45:58 Transaction Type : REQUEST +10:45:58 Received From : +10:45:58 ============================================================================ +10:45:58 FNo. Len. Field Value +10:45:58 ============================================================================ +10:45:58 [ 1] [ 4] [0200] +10:45:58 [ 2] [ 16] [6688990106720608] +10:45:58 [ 3] [ 6] [010000] +10:45:58 [ 4] [ 12] [000029000000] +10:45:58 [ 7] [ 10] [0320104554] +10:45:58 [ 11] [ 6] [719227] +10:45:58 [ 12] [ 6] [104554] +10:45:58 [ 13] [ 4] [0320] +10:45:58 [ 15] [ 4] [0320] +10:45:58 [ 18] [ 4] [6011] +10:45:58 [ 22] [ 3] [900] +10:45:58 [ 25] [ 2] [02] +10:45:58 [ 28] [ 9] [D00002000] +10:45:58 [ 32] [ 6] [621354] +10:45:58 [ 35] [ 37] [6688990106720608=44011231060808600000] +10:45:58 [ 37] [ 12] [507903016932] +10:45:58 [ 41] [ 8] [12002400] +10:45:58 [ 42] [ 15] [NATIVE ] +10:45:58 [ 43] [ 40] [BAN NATOR Xayabouly LAO] +10:45:58 [ 49] [ 3] [418] +10:45:58 [ 52] [ 16] [ECF9FE5429E1670C] +10:45:58 ============================================================================ +10:45:58 + + +waiting on router queue for slot.... +10:45:58 Sending to : <4> +10:45:58 ============================================================================ +10:45:59 ============================================================================ +10:45:59 Slot Id : <285> +10:45:59 Transaction Type : REQUEST +10:45:59 Received From : +10:45:59 ============================================================================ +10:45:59 FNo. Len. Field Value +10:45:59 ============================================================================ +10:45:59 [ 1] [ 4] [0200] +10:45:59 [ 2] [ 16] [6213545001065238] +10:45:59 [ 3] [ 6] [011000] +10:45:59 [ 4] [ 12] [000060000000] +10:45:59 [ 7] [ 10] [0320034503] +10:45:59 [ 11] [ 6] [268209] +10:45:59 [ 12] [ 6] [104503] +10:45:59 [ 13] [ 4] [0320] +10:45:59 [ 14] [ 4] [4912] +10:45:59 [ 15] [ 4] [0320] +10:45:59 [ 18] [ 4] [6011] +10:45:59 [ 19] [ 3] [418] +10:45:59 [ 22] [ 3] [021] +10:45:59 [ 25] [ 2] [01] +10:45:59 [ 28] [ 9] [D00002000] +10:45:59 [ 32] [ 6] [180893] +10:45:59 [ 35] [ 32] [6213545001065238=491212016523253] +10:45:59 [ 37] [ 12] [507903268209] +10:45:59 [ 41] [ 8] [0324BKDT] +10:45:59 [ 42] [ 15] [999999 ] +10:45:59 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:45:59 [ 49] [ 3] [418] +10:45:59 [ 52] [ 16] [2A9D193CF7157E16] +10:45:59 ============================================================================ +10:45:59 + + +waiting on router queue for slot.... +10:45:59 Sending to : +10:45:59 ============================================================================ +10:45:59 ============================================================================ +10:45:59 Slot Id : <285> +10:45:59 Transaction Type : REQUEST +10:45:59 Received From : +10:45:59 ============================================================================ +10:45:59 FNo. Len. Field Value +10:45:59 ============================================================================ +10:45:59 [ 1] [ 4] [0200] +10:45:59 [ 2] [ 16] [6213545001065238] +10:45:59 [ 3] [ 6] [011000] +10:45:59 [ 4] [ 12] [000060000000] +10:45:59 [ 7] [ 10] [0320034503] +10:45:59 [ 11] [ 6] [268209] +10:45:59 [ 12] [ 6] [104503] +10:45:59 [ 13] [ 4] [0320] +10:45:59 [ 14] [ 4] [4912] +10:45:59 [ 15] [ 4] [0320] +10:45:59 [ 18] [ 4] [6011] +10:45:59 [ 19] [ 3] [418] +10:45:59 [ 22] [ 3] [021] +10:45:59 [ 25] [ 2] [01] +10:45:59 [ 28] [ 9] [D00002000] +10:45:59 [ 32] [ 6] [180893] +10:45:59 [ 35] [ 32] [6213545001065238=491212016523253] +10:45:59 [ 37] [ 12] [507903268209] +10:45:59 [ 41] [ 8] [0324BKDT] +10:45:59 [ 42] [ 15] [999999 ] +10:45:59 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:45:59 [ 49] [ 3] [418] +10:45:59 [ 52] [ 16] [750CB2420E1A247A] +10:45:59 ============================================================================ +10:45:59 + + +waiting on router queue for slot.... +10:45:59 Sending to : <0> +10:45:59 ============================================================================ +10:45:59 ============================================================================ +10:45:59 Slot Id : <285> +10:45:59 Transaction Type : RESPONSE +10:45:59 Received From : +10:45:59 ============================================================================ +10:45:59 FNo. Len. Field Value +10:45:59 ============================================================================ +10:45:59 [ 1] [ 4] [0210] +10:45:59 [ 2] [ 16] [6213545001065238] +10:45:59 [ 3] [ 6] [011000] +10:45:59 [ 4] [ 12] [000060000000] +10:45:59 [ 7] [ 10] [0320034503] +10:45:59 [ 11] [ 6] [268209] +10:45:59 [ 12] [ 6] [104503] +10:45:59 [ 13] [ 4] [0320] +10:45:59 [ 15] [ 4] [0320] +10:45:59 [ 18] [ 4] [6011] +10:45:59 [ 19] [ 3] [418] +10:45:59 [ 32] [ 6] [180893] +10:45:59 [ 35] [ 32] [6213545001065238=491212016523253] +10:45:59 [ 37] [ 12] [507903268209] +10:45:59 [ 38] [ 6] [057751] +10:45:59 [ 39] [ 2] [00] +10:45:59 [ 41] [ 8] [0324BKDT] +10:45:59 [ 49] [ 3] [418] +10:45:59 [ 54] [ 40] [1001418C0000092261191002418C000009226119] +10:45:59 ============================================================================ +10:45:59 Sending to : +10:45:59 ============================================================================ +10:45:59 + + +waiting on router queue for slot.... +10:45:59 ============================================================================ +10:45:59 Slot Id : <325> +10:45:59 Transaction Type : REQUEST +10:45:59 Received From : +10:45:59 ============================================================================ +10:45:59 FNo. Len. Field Value +10:45:59 ============================================================================ +10:45:59 [ 0] [ 4] [0420] +10:45:59 [ 1] [ 4] [0420] +10:45:59 [ 2] [ 16] [6213545000142616] +10:45:59 [ 3] [ 6] [011000] +10:45:59 [ 4] [ 12] [000020000000] +10:45:59 [ 6] [ 12] [000020000000] +10:45:59 [ 7] [ 10] [0320034319] +10:45:59 [ 11] [ 6] [268197] +10:45:59 [ 12] [ 6] [104319] +10:45:59 [ 13] [ 4] [0320] +10:45:59 [ 14] [ 4] [4912] +10:45:59 [ 15] [ 4] [0320] +10:45:59 [ 18] [ 4] [6011] +10:45:59 [ 19] [ 3] [418] +10:45:59 [ 22] [ 3] [021] +10:45:59 [ 25] [ 2] [01] +10:45:59 [ 28] [ 9] [D00002000] +10:45:59 [ 32] [ 6] [180893] +10:45:59 [ 35] [ 32] [6213545000142616=491212014261320] +10:45:59 [ 37] [ 12] [507903268197] +10:45:59 [ 39] [ 2] [68] +10:45:59 [ 41] [ 8] [0363CPSH] +10:45:59 [ 42] [ 15] [999999 ] +10:45:59 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +10:45:59 [ 49] [ 3] [418] +10:45:59 [ 52] [ 16] [9DAB555A59832951] +10:45:59 ============================================================================ +10:45:59 + + +waiting on router queue for slot.... +10:46:00 ============================================================================ +10:46:00 Slot Id : <289> +10:46:00 Transaction Type : RESPONSE +10:46:00 Received From : +10:46:00 ============================================================================ +10:46:00 FNo. Len. Field Value +10:46:00 ============================================================================ +10:46:00 [ 1] [ 4] [0210] +10:46:00 [ 2] [ 16] [6688990106720608] +10:46:00 [ 3] [ 6] [010000] +10:46:00 [ 4] [ 12] [000029000000] +10:46:00 [ 11] [ 6] [719227] +10:46:00 [ 12] [ 6] [104554] +10:46:00 [ 15] [ 4] [0320] +10:46:00 [ 18] [ 4] [6011] +10:46:00 [ 32] [ 6] [621354] +10:46:00 [ 35] [ 37] [6688990106720608=44011231060808600000] +10:46:00 [ 37] [ 12] [507903016932] +10:46:00 [ 38] [ 6] [944445] +10:46:00 [ 39] [ 2] [00] +10:46:00 [ 41] [ 8] [12002400] +10:46:00 [ 49] [ 3] [418] +10:46:00 [ 54] [ 20] [0002418C000024486878] +10:46:00 ============================================================================ +10:46:00 Sending to : +10:46:00 ============================================================================ +10:46:00 + + +waiting on router queue for slot.... +10:46:00 ============================================================================ +10:46:00 Slot Id : <325> +10:46:00 Transaction Type : RESPONSE +10:46:00 Received From : +10:46:00 ============================================================================ +10:46:00 FNo. Len. Field Value +10:46:00 ============================================================================ +10:46:00 [ 1] [ 4] [0430] +10:46:00 [ 2] [ 16] [6213545000142616] +10:46:00 [ 3] [ 6] [011000] +10:46:00 [ 4] [ 12] [000020000000] +10:46:00 [ 7] [ 10] [0320034319] +10:46:00 [ 11] [ 6] [268197] +10:46:00 [ 19] [ 3] [418] +10:46:00 [ 32] [ 6] [180893] +10:46:00 [ 35] [ 32] [6213545000142616=491212014261320] +10:46:00 [ 37] [ 12] [507903268197] +10:46:00 [ 39] [ 2] [00] +10:46:00 [ 41] [ 8] [0363CPSH] +10:46:00 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +10:46:00 [ 49] [ 3] [418] +10:46:00 [ 90] [ 42] [020026819703200343190000018089300000000000] +10:46:00 ============================================================================ +10:46:00 Successfully send the slot [325] To REVERSAL Process +10:46:00 + + +waiting on router queue for slot.... +10:46:01 ============================================================================ +10:46:01 Slot Id : <285> +10:46:01 Transaction Type : RESPONSE +10:46:01 Received From : +10:46:01 ============================================================================ +10:46:01 FNo. Len. Field Value +10:46:01 ============================================================================ +10:46:01 [ 1] [ 4] [0210] +10:46:01 [ 2] [ 16] [6213545001065238] +10:46:01 [ 3] [ 6] [011000] +10:46:01 [ 4] [ 12] [000060000000] +10:46:01 [ 7] [ 10] [0320034503] +10:46:01 [ 11] [ 6] [268209] +10:46:01 [ 12] [ 6] [104503] +10:46:01 [ 13] [ 4] [0320] +10:46:01 [ 15] [ 4] [0320] +10:46:01 [ 18] [ 4] [6011] +10:46:01 [ 19] [ 3] [418] +10:46:01 [ 32] [ 6] [180893] +10:46:01 [ 35] [ 32] [6213545001065238=491212016523253] +10:46:01 [ 37] [ 12] [507903268209] +10:46:01 [ 38] [ 6] [057751] +10:46:01 [ 39] [ 2] [00] +10:46:01 [ 41] [ 8] [0324BKDT] +10:46:01 [ 49] [ 3] [418] +10:46:01 [ 54] [ 40] [1001418C0000092261191002418C000009226119] +10:46:01 ============================================================================ +10:46:01 Calculate Source COMM Id = 2 +10:46:01 ============================================================================ +10:46:01 + + +waiting on router queue for slot.... +10:46:02 ============================================================================ +10:46:02 Slot Id : <289> +10:46:02 Transaction Type : RESPONSE +10:46:02 Received From : +10:46:02 ============================================================================ +10:46:02 FNo. Len. Field Value +10:46:02 ============================================================================ +10:46:02 [ 1] [ 4] [0210] +10:46:02 [ 2] [ 16] [6688990106720608] +10:46:02 [ 3] [ 6] [010000] +10:46:02 [ 4] [ 12] [000029000000] +10:46:02 [ 11] [ 6] [719227] +10:46:02 [ 12] [ 6] [104554] +10:46:02 [ 15] [ 4] [0320] +10:46:02 [ 18] [ 4] [6011] +10:46:02 [ 32] [ 6] [621354] +10:46:02 [ 35] [ 37] [6688990106720608=44011231060808600000] +10:46:02 [ 37] [ 12] [507903016932] +10:46:02 [ 38] [ 6] [944445] +10:46:02 [ 39] [ 2] [00] +10:46:02 [ 41] [ 8] [12002400] +10:46:02 [ 49] [ 3] [418] +10:46:02 [ 54] [ 20] [0002418C000024486878] +10:46:02 ============================================================================ +10:46:02 Calculate Source COMM Id = 0 +10:46:02 ============================================================================ +10:46:02 + + +waiting on router queue for slot.... +10:46:08 ============================================================================ +10:46:08 Slot Id : <297> +10:46:08 Transaction Type : REQUEST +10:46:08 Received From : +10:46:08 ============================================================================ +10:46:08 FNo. Len. Field Value +10:46:08 ============================================================================ +10:46:08 [ 0] [ 4] [0420] +10:46:08 [ 1] [ 4] [0420] +10:46:08 [ 2] [ 16] [6213545000871487] +10:46:08 [ 3] [ 6] [010000] +10:46:08 [ 4] [ 12] [000010000000] +10:46:08 [ 7] [ 10] [0320104158] +10:46:08 [ 11] [ 6] [939397] +10:46:08 [ 12] [ 6] [104158] +10:46:08 [ 13] [ 4] [0320] +10:46:08 [ 15] [ 4] [0320] +10:46:08 [ 18] [ 4] [6011] +10:46:08 [ 19] [ 3] [418] +10:46:08 [ 22] [ 3] [021] +10:46:08 [ 25] [ 2] [01] +10:46:08 [ 28] [ 9] [D00002000] +10:46:08 [ 32] [ 6] [668899] +10:46:08 [ 35] [ 32] [6213545000871487=491212017148353] +10:46:08 [ 37] [ 12] [507900297340] +10:46:08 [ 41] [ 8] [03010006] +10:46:08 [ 42] [ 15] [APT ] +10:46:08 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:46:08 [ 49] [ 3] [418] +10:46:08 [ 52] [ 16] [3C33A82926E131F2] +10:46:08 ============================================================================ +10:46:08 + + +waiting on router queue for slot.... +10:46:09 ============================================================================ +10:46:09 Slot Id : <297> +10:46:09 Transaction Type : RESPONSE +10:46:09 Received From : +10:46:09 ============================================================================ +10:46:09 FNo. Len. Field Value +10:46:09 ============================================================================ +10:46:09 [ 1] [ 4] [0430] +10:46:09 [ 2] [ 16] [6213545000871487] +10:46:09 [ 3] [ 6] [010000] +10:46:09 [ 4] [ 12] [000010000000] +10:46:09 [ 7] [ 10] [0320104158] +10:46:09 [ 11] [ 6] [939397] +10:46:09 [ 19] [ 3] [418] +10:46:09 [ 32] [ 6] [668899] +10:46:09 [ 35] [ 32] [6213545000871487=491212017148353] +10:46:09 [ 37] [ 12] [507900297340] +10:46:09 [ 39] [ 2] [00] +10:46:09 [ 41] [ 8] [03010006] +10:46:09 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +10:46:09 [ 49] [ 3] [418] +10:46:09 [ 90] [ 42] [020093939703201041580000066889900000000000] +10:46:09 ============================================================================ +10:46:09 Successfully send the slot [297] To REVERSAL Process +10:46:09 + + +waiting on router queue for slot.... +10:46:16 ============================================================================ +10:46:16 Slot Id : <291> +10:46:16 Transaction Type : REQUEST +10:46:16 Received From : +10:46:16 ============================================================================ +10:46:16 FNo. Len. Field Value +10:46:16 ============================================================================ +10:46:16 [ 1] [ 4] [0800] +10:46:16 [ 7] [ 10] [0320034524] +10:46:16 [ 11] [ 6] [155929] +10:46:16 [ 70] [ 3] [301] +10:46:16 ============================================================================ +10:46:16 + + +waiting on router queue for slot.... +10:46:16 Sending to : +10:46:16 ============================================================================ +10:46:16 ============================================================================ +10:46:16 Slot Id : <291> +10:46:16 Transaction Type : RESPONSE +10:46:16 Received From : +10:46:16 ============================================================================ +10:46:16 FNo. Len. Field Value +10:46:16 ============================================================================ +10:46:16 [ 1] [ 4] [0810] +10:46:16 [ 7] [ 10] [0320034524] +10:46:16 [ 11] [ 6] [155929] +10:46:16 [ 39] [ 2] [00] +10:46:16 [ 70] [ 3] [301] +10:46:16 ============================================================================ +10:46:16 Calculate Source COMM Id = 2 +10:46:16 ============================================================================ +10:46:16 + + +waiting on router queue for slot.... +10:46:21 ============================================================================ +10:46:21 Slot Id : <326> +10:46:21 Transaction Type : REQUEST +10:46:21 Received From : +10:46:21 ============================================================================ +10:46:21 FNo. Len. Field Value +10:46:21 ============================================================================ +10:46:21 [ 1] [ 4] [0800] +10:46:21 [ 7] [ 10] [0320034412] +10:46:21 [ 11] [ 6] [085975] +10:46:21 [ 37] [ 12] [57910085975] +10:46:21 [ 70] [ 3] [301] +10:46:21 ============================================================================ +10:46:21 + + +waiting on router queue for slot.... +10:46:21 Sending to : +10:46:21 ============================================================================ +10:46:21 ============================================================================ +10:46:21 Slot Id : <326> +10:46:21 Transaction Type : RESPONSE +10:46:21 Received From : +10:46:21 ============================================================================ +10:46:21 FNo. Len. Field Value +10:46:21 ============================================================================ +10:46:21 [ 1] [ 4] [0810] +10:46:21 [ 7] [ 10] [0320034412] +10:46:21 [ 11] [ 6] [085975] +10:46:21 [ 37] [ 12] [579100859750] +10:46:21 [ 39] [ 2] [00] +10:46:21 [ 70] [ 3] [810] +10:46:21 ============================================================================ +10:46:21 Calculate Source COMM Id = 4 +10:46:21 ============================================================================ +10:46:21 + + +waiting on router queue for slot.... +10:46:22 ============================================================================ +10:46:22 Slot Id : <301> +10:46:22 Transaction Type : REQUEST +10:46:22 Received From : +10:46:22 ============================================================================ +10:46:22 FNo. Len. Field Value +10:46:22 ============================================================================ +10:46:22 [ 1] [ 4] [0200] +10:46:22 [ 2] [ 16] [6213545000142616] +10:46:22 [ 3] [ 6] [011000] +10:46:22 [ 4] [ 12] [000020000000] +10:46:22 [ 7] [ 10] [0320034529] +10:46:22 [ 11] [ 6] [268215] +10:46:22 [ 12] [ 6] [104529] +10:46:22 [ 13] [ 4] [0320] +10:46:22 [ 14] [ 4] [4912] +10:46:22 [ 15] [ 4] [0320] +10:46:22 [ 18] [ 4] [6011] +10:46:22 [ 19] [ 3] [418] +10:46:22 [ 22] [ 3] [021] +10:46:22 [ 25] [ 2] [01] +10:46:22 [ 28] [ 9] [D00002000] +10:46:22 [ 32] [ 6] [180893] +10:46:22 [ 35] [ 32] [6213545000142616=491212014261320] +10:46:22 [ 37] [ 12] [507903268215] +10:46:22 [ 41] [ 8] [0363CPSH] +10:46:22 [ 42] [ 15] [999999 ] +10:46:22 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +10:46:22 [ 49] [ 3] [418] +10:46:22 [ 52] [ 16] [9DAB555A59832951] +10:46:22 ============================================================================ +10:46:22 + + +waiting on router queue for slot.... +10:46:22 Sending to : +10:46:22 ============================================================================ +10:46:22 Sending to : +10:46:22 ============================================================================ +10:46:23 ============================================================================ +10:46:23 Slot Id : <301> +10:46:23 Transaction Type : REQUEST +10:46:23 Received From : +10:46:23 ============================================================================ +10:46:23 FNo. Len. Field Value +10:46:23 ============================================================================ +10:46:23 [ 1] [ 4] [0200] +10:46:23 [ 2] [ 16] [6213545000142616] +10:46:23 [ 3] [ 6] [011000] +10:46:23 [ 4] [ 12] [000020000000] +10:46:23 [ 7] [ 10] [0320034529] +10:46:23 [ 11] [ 6] [268215] +10:46:23 [ 12] [ 6] [104529] +10:46:23 [ 13] [ 4] [0320] +10:46:23 [ 14] [ 4] [4912] +10:46:23 [ 15] [ 4] [0320] +10:46:23 [ 18] [ 4] [6011] +10:46:23 [ 19] [ 3] [418] +10:46:23 [ 22] [ 3] [021] +10:46:23 [ 25] [ 2] [01] +10:46:23 [ 28] [ 9] [D00002000] +10:46:23 [ 32] [ 6] [180893] +10:46:23 [ 35] [ 32] [6213545000142616=491212014261320] +10:46:23 [ 37] [ 12] [507903268215] +10:46:23 [ 41] [ 8] [0363CPSH] +10:46:23 [ 42] [ 15] [999999 ] +10:46:23 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +10:46:23 [ 49] [ 3] [418] +10:46:23 [ 52] [ 16] [9DAB555A59832951] +10:46:23 ============================================================================ +10:46:23 + + +waiting on router queue for slot.... +10:46:23 Sending to : +10:46:23 ============================================================================ +10:46:23 ============================================================================ +10:46:23 Slot Id : <301> +10:46:23 Transaction Type : REQUEST +10:46:23 Received From : +10:46:23 ============================================================================ +10:46:23 FNo. Len. Field Value +10:46:23 ============================================================================ +10:46:23 [ 1] [ 4] [0200] +10:46:23 [ 2] [ 16] [6213545000142616] +10:46:23 [ 3] [ 6] [011000] +10:46:23 [ 4] [ 12] [000020000000] +10:46:23 [ 7] [ 10] [0320034529] +10:46:23 [ 11] [ 6] [268215] +10:46:23 [ 12] [ 6] [104529] +10:46:23 [ 13] [ 4] [0320] +10:46:23 [ 14] [ 4] [4912] +10:46:23 [ 15] [ 4] [0320] +10:46:23 [ 18] [ 4] [6011] +10:46:23 [ 19] [ 3] [418] +10:46:23 [ 22] [ 3] [021] +10:46:23 [ 25] [ 2] [01] +10:46:23 [ 28] [ 9] [D00002000] +10:46:23 [ 32] [ 6] [180893] +10:46:23 [ 35] [ 32] [6213545000142616=491212014261320] +10:46:23 [ 37] [ 12] [507903268215] +10:46:23 [ 41] [ 8] [0363CPSH] +10:46:23 [ 42] [ 15] [999999 ] +10:46:23 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +10:46:23 [ 49] [ 3] [418] +10:46:23 [ 52] [ 16] [A558F52C8A77319E] +10:46:23 ============================================================================ +10:46:23 + + +waiting on router queue for slot.... +10:46:23 Sending to : <0> +10:46:23 ============================================================================ +10:46:23 ============================================================================ +10:46:23 Slot Id : <327> +10:46:23 Transaction Type : REQUEST +10:46:23 Received From : +10:46:23 ============================================================================ +10:46:23 FNo. Len. Field Value +10:46:23 ============================================================================ +10:46:23 [ 1] [ 4] [0200] +10:46:23 [ 2] [ 16] [6688990601478009] +10:46:23 [ 3] [ 6] [300000] +10:46:23 [ 4] [ 12] [000000000000] +10:46:23 [ 7] [ 10] [0320104619] +10:46:23 [ 11] [ 6] [719316] +10:46:23 [ 12] [ 6] [104619] +10:46:23 [ 13] [ 4] [0320] +10:46:23 [ 15] [ 4] [0320] +10:46:23 [ 18] [ 4] [6011] +10:46:23 [ 22] [ 3] [900] +10:46:23 [ 25] [ 2] [02] +10:46:23 [ 28] [ 9] [D00000000] +10:46:23 [ 32] [ 6] [621354] +10:46:23 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:46:23 [ 37] [ 12] [507904153844] +10:46:23 [ 41] [ 8] [20001000] +10:46:23 [ 42] [ 15] [NATIVE ] +10:46:23 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:46:23 [ 49] [ 3] [418] +10:46:23 [ 52] [ 16] [8DB277BA84EB6C74] +10:46:23 ============================================================================ +10:46:23 + + +waiting on router queue for slot.... +10:46:23 Sending to : +10:46:23 ============================================================================ +10:46:23 Sending to : +10:46:23 ============================================================================ +10:46:23 ============================================================================ +10:46:23 Slot Id : <301> +10:46:23 Transaction Type : RESPONSE +10:46:23 Received From : +10:46:23 ============================================================================ +10:46:23 FNo. Len. Field Value +10:46:23 ============================================================================ +10:46:23 [ 1] [ 4] [0210] +10:46:23 [ 2] [ 16] [6213545000142616] +10:46:23 [ 3] [ 6] [011000] +10:46:23 [ 4] [ 12] [000020000000] +10:46:23 [ 7] [ 10] [0320034529] +10:46:23 [ 11] [ 6] [268215] +10:46:23 [ 12] [ 6] [104529] +10:46:23 [ 13] [ 4] [0320] +10:46:23 [ 15] [ 4] [0320] +10:46:23 [ 18] [ 4] [6011] +10:46:23 [ 19] [ 3] [418] +10:46:23 [ 32] [ 6] [180893] +10:46:23 [ 35] [ 32] [6213545000142616=491212014261320] +10:46:23 [ 37] [ 12] [507903268215] +10:46:23 [ 38] [ 6] [160431] +10:46:23 [ 39] [ 2] [00] +10:46:23 [ 41] [ 8] [0363CPSH] +10:46:23 [ 49] [ 3] [418] +10:46:23 [ 54] [ 40] [1001418C0000266730861002418C000026673086] +10:46:23 ============================================================================ +10:46:23 Sending to : +10:46:23 ============================================================================ +10:46:23 + + +waiting on router queue for slot.... +10:46:24 ============================================================================ +10:46:24 Slot Id : <327> +10:46:24 Transaction Type : REQUEST +10:46:24 Received From : +10:46:24 ============================================================================ +10:46:24 FNo. Len. Field Value +10:46:24 ============================================================================ +10:46:24 [ 1] [ 4] [0200] +10:46:24 [ 2] [ 16] [6688990601478009] +10:46:24 [ 3] [ 6] [300000] +10:46:24 [ 4] [ 12] [000000000000] +10:46:24 [ 7] [ 10] [0320104619] +10:46:24 [ 11] [ 6] [719316] +10:46:24 [ 12] [ 6] [104619] +10:46:24 [ 13] [ 4] [0320] +10:46:24 [ 15] [ 4] [0320] +10:46:24 [ 18] [ 4] [6011] +10:46:24 [ 22] [ 3] [900] +10:46:24 [ 25] [ 2] [02] +10:46:24 [ 28] [ 9] [D00000000] +10:46:24 [ 32] [ 6] [621354] +10:46:24 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:46:24 [ 37] [ 12] [507904153844] +10:46:24 [ 41] [ 8] [20001000] +10:46:24 [ 42] [ 15] [NATIVE ] +10:46:24 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:46:24 [ 49] [ 3] [418] +10:46:24 [ 52] [ 16] [8DB277BA84EB6C74] +10:46:24 ============================================================================ +10:46:24 + + +waiting on router queue for slot.... +10:46:24 Sending to : +10:46:24 ============================================================================ +10:46:24 ============================================================================ +10:46:24 Slot Id : <327> +10:46:24 Transaction Type : REQUEST +10:46:24 Received From : +10:46:24 ============================================================================ +10:46:24 FNo. Len. Field Value +10:46:24 ============================================================================ +10:46:24 [ 1] [ 4] [0200] +10:46:24 [ 2] [ 16] [6688990601478009] +10:46:24 [ 3] [ 6] [300000] +10:46:24 [ 4] [ 12] [000000000000] +10:46:24 [ 7] [ 10] [0320104619] +10:46:24 [ 11] [ 6] [719316] +10:46:24 [ 12] [ 6] [104619] +10:46:24 [ 13] [ 4] [0320] +10:46:24 [ 15] [ 4] [0320] +10:46:24 [ 18] [ 4] [6011] +10:46:24 [ 22] [ 3] [900] +10:46:24 [ 25] [ 2] [02] +10:46:24 [ 28] [ 9] [D00000000] +10:46:24 [ 32] [ 6] [621354] +10:46:24 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:46:24 [ 37] [ 12] [507904153844] +10:46:24 [ 41] [ 8] [20001000] +10:46:24 [ 42] [ 15] [NATIVE ] +10:46:24 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +10:46:24 [ 49] [ 3] [418] +10:46:24 [ 52] [ 16] [E1563D6309AF5708] +10:46:24 ============================================================================ +10:46:24 + + +waiting on router queue for slot.... +10:46:24 Sending to : <4> +10:46:24 ============================================================================ +10:46:25 ============================================================================ +10:46:25 Slot Id : <327> +10:46:25 Transaction Type : RESPONSE +10:46:25 Received From : +10:46:25 ============================================================================ +10:46:25 FNo. Len. Field Value +10:46:25 ============================================================================ +10:46:25 [ 1] [ 4] [0210] +10:46:25 [ 2] [ 16] [6688990601478009] +10:46:25 [ 3] [ 6] [300000] +10:46:25 [ 4] [ 12] [000000000000] +10:46:25 [ 11] [ 6] [719316] +10:46:25 [ 12] [ 6] [104619] +10:46:25 [ 15] [ 4] [0320] +10:46:25 [ 18] [ 4] [6011] +10:46:25 [ 32] [ 6] [621354] +10:46:25 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:46:25 [ 37] [ 12] [507904153844] +10:46:25 [ 38] [ 6] [131952] +10:46:25 [ 39] [ 2] [00] +10:46:25 [ 41] [ 8] [20001000] +10:46:25 [ 49] [ 3] [418] +10:46:25 [ 54] [ 20] [0002418C000002307527] +10:46:25 ============================================================================ +10:46:25 Sending to : +10:46:25 ============================================================================ +10:46:25 + + +waiting on router queue for slot.... +10:46:25 ============================================================================ +10:46:25 Slot Id : <301> +10:46:25 Transaction Type : RESPONSE +10:46:25 Received From : +10:46:25 ============================================================================ +10:46:25 FNo. Len. Field Value +10:46:25 ============================================================================ +10:46:25 [ 1] [ 4] [0210] +10:46:25 [ 2] [ 16] [6213545000142616] +10:46:25 [ 3] [ 6] [011000] +10:46:25 [ 4] [ 12] [000020000000] +10:46:25 [ 7] [ 10] [0320034529] +10:46:25 [ 11] [ 6] [268215] +10:46:25 [ 12] [ 6] [104529] +10:46:25 [ 13] [ 4] [0320] +10:46:25 [ 15] [ 4] [0320] +10:46:25 [ 18] [ 4] [6011] +10:46:25 [ 19] [ 3] [418] +10:46:25 [ 32] [ 6] [180893] +10:46:25 [ 35] [ 32] [6213545000142616=491212014261320] +10:46:25 [ 37] [ 12] [507903268215] +10:46:25 [ 38] [ 6] [160431] +10:46:25 [ 39] [ 2] [00] +10:46:25 [ 41] [ 8] [0363CPSH] +10:46:25 [ 49] [ 3] [418] +10:46:25 [ 54] [ 40] [1001418C0000266730861002418C000026673086] +10:46:25 ============================================================================ +10:46:25 Calculate Source COMM Id = 2 +10:46:25 ============================================================================ +10:46:25 + + +waiting on router queue for slot.... +10:46:26 ============================================================================ +10:46:26 Slot Id : <327> +10:46:26 Transaction Type : RESPONSE +10:46:26 Received From : +10:46:26 ============================================================================ +10:46:26 FNo. Len. Field Value +10:46:26 ============================================================================ +10:46:26 [ 1] [ 4] [0210] +10:46:26 [ 2] [ 16] [6688990601478009] +10:46:26 [ 3] [ 6] [300000] +10:46:26 [ 4] [ 12] [000000000000] +10:46:26 [ 11] [ 6] [719316] +10:46:26 [ 12] [ 6] [104619] +10:46:26 [ 15] [ 4] [0320] +10:46:26 [ 18] [ 4] [6011] +10:46:26 [ 32] [ 6] [621354] +10:46:26 [ 35] [ 37] [6688990601478009=41090061800958300000] +10:46:26 [ 37] [ 12] [507904153844] +10:46:26 [ 38] [ 6] [131952] +10:46:26 [ 39] [ 2] [00] +10:46:26 [ 41] [ 8] [20001000] +10:46:26 [ 49] [ 3] [418] +10:46:26 [ 54] [ 20] [0002418C000002307527] +10:46:26 ============================================================================ +10:46:26 Calculate Source COMM Id = 0 +10:46:26 ============================================================================ +10:46:26 + + +waiting on router queue for slot.... +10:46:28 ============================================================================ +10:46:28 Slot Id : <305> +10:46:28 Transaction Type : REQUEST +10:46:28 Received From : +10:46:28 ============================================================================ +10:46:28 FNo. Len. Field Value +10:46:28 ============================================================================ +10:46:28 [ 1] [ 4] [0800] +10:46:28 [ 2] [ 5] [02531] +10:46:28 [ 3] [ 6] [579108] +10:46:28 [ 7] [ 10] [0320034628] +10:46:28 [ 11] [ 6] [807037] +10:46:28 [ 15] [ 10] [0320034628] +10:46:28 [ 37] [ 11] [57910807037] +10:46:28 [ 70] [ 3] [001] +10:46:28 ============================================================================ +10:46:28 + + +waiting on router queue for slot.... +10:46:28 ============================================================================ +10:46:28 Slot Id : <305> +10:46:28 Transaction Type : RESPONSE +10:46:28 Received From : +10:46:28 ============================================================================ +10:46:28 FNo. Len. Field Value +10:46:28 ============================================================================ +10:46:28 [ 1] [ 4] [0810] +10:46:28 [ 7] [ 10] [0320034628] +10:46:28 [ 11] [ 6] [807037] +10:46:28 [ 15] [ 4] [0320] +10:46:28 [ 37] [ 12] [57910807037] +10:46:28 [ 39] [ 2] [00] +10:46:28 [ 70] [ 3] [001] +10:46:28 ============================================================================ +10:46:28 Sending to : +10:46:28 ============================================================================ +10:46:28 + + +waiting on router queue for slot.... +10:46:36 ============================================================================ +10:46:36 Slot Id : <333> +10:46:36 Transaction Type : REQUEST +10:46:36 Received From : +10:46:36 ============================================================================ +10:46:36 FNo. Len. Field Value +10:46:36 ============================================================================ +10:46:36 [ 1] [ 4] [0420] +10:46:36 [ 2] [ 16] [6213545000011019] +10:46:36 [ 3] [ 6] [011000] +10:46:36 [ 4] [ 12] [000100000000] +10:46:36 [ 7] [ 10] [0320104648] +10:46:36 [ 11] [ 6] [079079] +10:46:36 [ 12] [ 6] [104648] +10:46:36 [ 13] [ 4] [0320] +10:46:36 [ 14] [ 4] [4912] +10:46:36 [ 15] [ 4] [0320] +10:46:36 [ 18] [ 4] [6011] +10:46:36 [ 22] [ 3] [900] +10:46:36 [ 25] [ 2] [02] +10:46:36 [ 28] [ 9] [C00002000] +10:46:36 [ 32] [ 6] [220699] +10:46:36 [ 35] [ 32] [6213545000011019=491212011101751] +10:46:36 [ 37] [ 12] [507900132952] +10:46:36 [ 39] [ 2] [00] +10:46:36 [ 41] [ 8] [03000100] +10:46:36 [ 42] [ 15] [APTRA ] +10:46:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:46:36 [ 49] [ 3] [418] +10:46:36 [ 90] [ 42] [020007907903201046480000022069900000000000] +10:46:36 ============================================================================ +10:46:36 + + +waiting on router queue for slot.... +10:46:36 Sending to : +10:46:36 ============================================================================ +10:46:37 ============================================================================ +10:46:37 Slot Id : <314> +10:46:37 Transaction Type : REQUEST +10:46:37 Received From : +10:46:37 ============================================================================ +10:46:37 FNo. Len. Field Value +10:46:37 ============================================================================ +10:46:37 [ 1] [ 4] [0800] +10:46:37 [ 7] [ 10] [0320034545] +10:46:37 [ 11] [ 6] [155930] +10:46:37 [ 70] [ 3] [301] +10:46:37 ============================================================================ +10:46:37 + + +waiting on router queue for slot.... +10:46:37 Sending to : +10:46:37 ============================================================================ +10:46:37 ============================================================================ +10:46:37 Slot Id : <314> +10:46:37 Transaction Type : RESPONSE +10:46:37 Received From : +10:46:37 ============================================================================ +10:46:37 FNo. Len. Field Value +10:46:37 ============================================================================ +10:46:37 [ 1] [ 4] [0810] +10:46:37 [ 7] [ 10] [0320034545] +10:46:37 [ 11] [ 6] [155930] +10:46:37 [ 39] [ 2] [00] +10:46:37 [ 70] [ 3] [301] +10:46:37 ============================================================================ +10:46:37 Calculate Source COMM Id = 2 +10:46:37 ============================================================================ +10:46:37 + + +waiting on router queue for slot.... +10:46:41 ============================================================================ +10:46:41 Slot Id : <333> +10:46:41 Transaction Type : RESPONSE +10:46:41 Received From : +10:46:41 ============================================================================ +10:46:41 FNo. Len. Field Value +10:46:41 ============================================================================ +10:46:41 [ 1] [ 4] [0430] +10:46:41 [ 2] [ 16] [6213545000011019] +10:46:41 [ 3] [ 6] [011000] +10:46:41 [ 4] [ 12] [000100000000] +10:46:41 [ 7] [ 10] [0320104648] +10:46:41 [ 11] [ 6] [079079] +10:46:41 [ 12] [ 6] [104648] +10:46:41 [ 13] [ 4] [0320] +10:46:41 [ 14] [ 4] [4912] +10:46:41 [ 15] [ 4] [0320] +10:46:41 [ 18] [ 4] [6011] +10:46:41 [ 22] [ 3] [900] +10:46:41 [ 25] [ 2] [02] +10:46:41 [ 28] [ 9] [C00002000] +10:46:41 [ 32] [ 6] [220699] +10:46:41 [ 35] [ 32] [6213545000011019=491212011101751] +10:46:41 [ 37] [ 12] [507900132952] +10:46:41 [ 39] [ 2] [00] +10:46:41 [ 41] [ 8] [03000100] +10:46:41 [ 42] [ 15] [APTRA ] +10:46:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:46:41 [ 49] [ 3] [418] +10:46:41 [ 90] [ 42] [020007907903201046480000022069900000000000] +10:46:41 ============================================================================ +10:46:41 Calculate Source COMM Id = 1 +10:46:41 ============================================================================ +10:46:41 + + +waiting on router queue for slot.... +10:46:49 ============================================================================ +10:46:49 Slot Id : <331> +10:46:49 Transaction Type : REQUEST +10:46:49 Received From : +10:46:49 ============================================================================ +10:46:49 FNo. Len. Field Value +10:46:49 ============================================================================ +10:46:49 [ 1] [ 4] [0800] +10:46:49 [ 7] [ 10] [0320034557] +10:46:49 [ 11] [ 6] [155931] +10:46:49 [ 70] [ 3] [301] +10:46:49 ============================================================================ +10:46:49 + + +waiting on router queue for slot.... +10:46:49 Sending to : +10:46:49 ============================================================================ +10:46:49 ============================================================================ +10:46:49 Slot Id : <331> +10:46:49 Transaction Type : RESPONSE +10:46:49 Received From : +10:46:49 ============================================================================ +10:46:49 FNo. Len. Field Value +10:46:49 ============================================================================ +10:46:49 [ 1] [ 4] [0810] +10:46:49 [ 7] [ 10] [0320034557] +10:46:49 [ 11] [ 6] [155931] +10:46:49 [ 39] [ 2] [00] +10:46:49 [ 70] [ 3] [301] +10:46:49 ============================================================================ +10:46:49 Calculate Source COMM Id = 2 +10:46:49 ============================================================================ +10:46:49 + + +waiting on router queue for slot.... +10:46:51 ============================================================================ +10:46:51 Slot Id : <337> +10:46:51 Transaction Type : REQUEST +10:46:51 Received From : +10:46:51 ============================================================================ +10:46:51 FNo. Len. Field Value +10:46:51 ============================================================================ +10:46:51 [ 1] [ 4] [0200] +10:46:51 [ 2] [ 16] [1234010100218503] +10:46:51 [ 3] [ 6] [011000] +10:46:51 [ 4] [ 12] [000030000000] +10:46:51 [ 7] [ 10] [0320104647] +10:46:51 [ 11] [ 6] [719401] +10:46:51 [ 12] [ 6] [104647] +10:46:51 [ 13] [ 4] [0320] +10:46:51 [ 15] [ 4] [0320] +10:46:51 [ 18] [ 4] [6011] +10:46:51 [ 22] [ 3] [900] +10:46:51 [ 25] [ 2] [02] +10:46:51 [ 28] [ 9] [D00002000] +10:46:51 [ 32] [ 6] [621354] +10:46:51 [ 35] [ 32] [1234010100218503=170700011850000] +10:46:51 [ 37] [ 12] [507904381074] +10:46:51 [ 41] [ 8] [03003700] +10:46:51 [ 42] [ 15] [NATIVE ] +10:46:51 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +10:46:51 [ 49] [ 3] [418] +10:46:51 [ 52] [ 16] [56F267FB1BFD4ABD] +10:46:51 ============================================================================ +10:46:51 + + +waiting on router queue for slot.... +10:46:51 Sending to : +10:46:51 ============================================================================ +10:46:51 Sending to : +10:46:51 ============================================================================ +10:46:51 ============================================================================ +10:46:51 Slot Id : <337> +10:46:51 Transaction Type : REQUEST +10:46:51 Received From : +10:46:51 ============================================================================ +10:46:51 FNo. Len. Field Value +10:46:51 ============================================================================ +10:46:51 [ 1] [ 4] [0200] +10:46:51 [ 2] [ 16] [1234010100218503] +10:46:51 [ 3] [ 6] [011000] +10:46:51 [ 4] [ 12] [000030000000] +10:46:51 [ 7] [ 10] [0320104647] +10:46:51 [ 11] [ 6] [719401] +10:46:51 [ 12] [ 6] [104647] +10:46:51 [ 13] [ 4] [0320] +10:46:51 [ 15] [ 4] [0320] +10:46:51 [ 18] [ 4] [6011] +10:46:51 [ 22] [ 3] [900] +10:46:51 [ 25] [ 2] [02] +10:46:51 [ 28] [ 9] [D00002000] +10:46:51 [ 32] [ 6] [621354] +10:46:51 [ 35] [ 32] [1234010100218503=170700011850000] +10:46:51 [ 37] [ 12] [507904381074] +10:46:51 [ 41] [ 8] [03003700] +10:46:51 [ 42] [ 15] [NATIVE ] +10:46:51 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +10:46:51 [ 49] [ 3] [418] +10:46:51 [ 52] [ 16] [56F267FB1BFD4ABD] +10:46:51 ============================================================================ +10:46:51 + + +waiting on router queue for slot.... +10:46:51 Sending to : +10:46:51 ============================================================================ +10:46:51 ============================================================================ +10:46:51 Slot Id : <337> +10:46:51 Transaction Type : REQUEST +10:46:51 Received From : +10:46:51 ============================================================================ +10:46:51 FNo. Len. Field Value +10:46:51 ============================================================================ +10:46:51 [ 1] [ 4] [0200] +10:46:51 [ 2] [ 16] [1234010100218503] +10:46:51 [ 3] [ 6] [011000] +10:46:51 [ 4] [ 12] [000030000000] +10:46:51 [ 7] [ 10] [0320104647] +10:46:51 [ 11] [ 6] [719401] +10:46:51 [ 12] [ 6] [104647] +10:46:51 [ 13] [ 4] [0320] +10:46:51 [ 15] [ 4] [0320] +10:46:51 [ 18] [ 4] [6011] +10:46:51 [ 22] [ 3] [900] +10:46:51 [ 25] [ 2] [02] +10:46:51 [ 28] [ 9] [D00002000] +10:46:51 [ 32] [ 6] [621354] +10:46:51 [ 35] [ 32] [1234010100218503=170700011850000] +10:46:51 [ 37] [ 12] [507904381074] +10:46:51 [ 41] [ 8] [03003700] +10:46:51 [ 42] [ 15] [NATIVE ] +10:46:51 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +10:46:51 [ 49] [ 3] [418] +10:46:51 [ 52] [ 16] [E7E93A88F4FDF67B] +10:46:51 ============================================================================ +10:46:51 + + +waiting on router queue for slot.... +10:46:51 ONUS/OFFUS CARD status [0] +10:46:51 ============================================================================ +10:47:01 ============================================================================ +10:47:01 Slot Id : <321> +10:47:01 Transaction Type : REQUEST +10:47:01 Received From : +10:47:01 ============================================================================ +10:47:01 FNo. Len. Field Value +10:47:01 ============================================================================ +10:47:01 [ 1] [ 4] [0800] +10:47:01 [ 7] [ 10] [0320034608] +10:47:01 [ 11] [ 6] [155932] +10:47:01 [ 70] [ 3] [301] +10:47:01 ============================================================================ +10:47:01 + + +waiting on router queue for slot.... +10:47:01 Sending to : +10:47:01 ============================================================================ +10:47:01 ============================================================================ +10:47:01 Slot Id : <321> +10:47:01 Transaction Type : RESPONSE +10:47:01 Received From : +10:47:01 ============================================================================ +10:47:01 FNo. Len. Field Value +10:47:01 ============================================================================ +10:47:01 [ 1] [ 4] [0810] +10:47:01 [ 7] [ 10] [0320034608] +10:47:01 [ 11] [ 6] [155932] +10:47:01 [ 39] [ 2] [00] +10:47:01 [ 70] [ 3] [301] +10:47:01 ============================================================================ +10:47:01 Calculate Source COMM Id = 2 +10:47:01 ============================================================================ +10:47:01 + + +waiting on router queue for slot.... +10:47:17 ============================================================================ +10:47:17 Slot Id : <334> +10:47:17 Transaction Type : REQUEST +10:47:17 Received From : +10:47:17 ============================================================================ +10:47:17 FNo. Len. Field Value +10:47:17 ============================================================================ +10:47:17 [ 1] [ 4] [0800] +10:47:17 [ 7] [ 10] [0320034624] +10:47:17 [ 11] [ 6] [155933] +10:47:17 [ 70] [ 3] [301] +10:47:17 ============================================================================ +10:47:17 + + +waiting on router queue for slot.... +10:47:17 Sending to : +10:47:17 ============================================================================ +10:47:17 ============================================================================ +10:47:17 Slot Id : <334> +10:47:17 Transaction Type : RESPONSE +10:47:17 Received From : +10:47:17 ============================================================================ +10:47:17 FNo. Len. Field Value +10:47:17 ============================================================================ +10:47:17 [ 1] [ 4] [0810] +10:47:17 [ 7] [ 10] [0320034624] +10:47:17 [ 11] [ 6] [155933] +10:47:17 [ 39] [ 2] [00] +10:47:17 [ 70] [ 3] [301] +10:47:17 ============================================================================ +10:47:17 Calculate Source COMM Id = 2 +10:47:17 ============================================================================ +10:47:17 + + +waiting on router queue for slot.... +10:47:29 ============================================================================ +10:47:29 Slot Id : <336> +10:47:29 Transaction Type : REQUEST +10:47:29 Received From : +10:47:29 ============================================================================ +10:47:29 FNo. Len. Field Value +10:47:29 ============================================================================ +10:47:29 [ 1] [ 4] [0800] +10:47:29 [ 7] [ 10] [0320034637] +10:47:29 [ 11] [ 6] [155934] +10:47:29 [ 70] [ 3] [301] +10:47:29 ============================================================================ +10:47:29 + + +waiting on router queue for slot.... +10:47:29 Sending to : +10:47:29 ============================================================================ +10:47:29 ============================================================================ +10:47:29 Slot Id : <336> +10:47:29 Transaction Type : RESPONSE +10:47:29 Received From : +10:47:29 ============================================================================ +10:47:29 FNo. Len. Field Value +10:47:29 ============================================================================ +10:47:29 [ 1] [ 4] [0810] +10:47:29 [ 7] [ 10] [0320034637] +10:47:29 [ 11] [ 6] [155934] +10:47:29 [ 39] [ 2] [00] +10:47:29 [ 70] [ 3] [301] +10:47:29 ============================================================================ +10:47:29 Calculate Source COMM Id = 2 +10:47:29 ============================================================================ +10:47:29 + + +waiting on router queue for slot.... +10:47:30 ============================================================================ +10:47:30 Slot Id : <335> +10:47:30 Transaction Type : REQUEST +10:47:30 Received From : +10:47:30 ============================================================================ +10:47:30 FNo. Len. Field Value +10:47:30 ============================================================================ +10:47:30 [ 1] [ 4] [0800] +10:47:30 [ 2] [ 5] [02531] +10:47:30 [ 3] [ 6] [579108] +10:47:30 [ 7] [ 10] [0320034730] +10:47:30 [ 11] [ 6] [807038] +10:47:30 [ 15] [ 10] [0320034730] +10:47:30 [ 37] [ 11] [57910807038] +10:47:30 [ 70] [ 3] [001] +10:47:30 ============================================================================ +10:47:30 + + +waiting on router queue for slot.... +10:47:30 ============================================================================ +10:47:30 Slot Id : <335> +10:47:30 Transaction Type : RESPONSE +10:47:30 Received From : +10:47:30 ============================================================================ +10:47:30 FNo. Len. Field Value +10:47:30 ============================================================================ +10:47:30 [ 1] [ 4] [0810] +10:47:30 [ 7] [ 10] [0320034730] +10:47:30 [ 11] [ 6] [807038] +10:47:30 [ 15] [ 4] [0320] +10:47:30 [ 37] [ 12] [57910807038] +10:47:30 [ 39] [ 2] [00] +10:47:30 [ 70] [ 3] [001] +10:47:30 ============================================================================ +10:47:30 Sending to : +10:47:30 ============================================================================ +10:47:30 + + +waiting on router queue for slot.... +10:47:40 ============================================================================ +10:47:40 Slot Id : <320> +10:47:40 Transaction Type : REQUEST +10:47:40 Received From : +10:47:40 ============================================================================ +10:47:40 FNo. Len. Field Value +10:47:40 ============================================================================ +10:47:40 [ 1] [ 4] [0800] +10:47:40 [ 7] [ 10] [0320034647] +10:47:40 [ 11] [ 6] [155935] +10:47:40 [ 70] [ 3] [301] +10:47:40 ============================================================================ +10:47:40 + + +waiting on router queue for slot.... +10:47:40 Sending to : +10:47:40 ============================================================================ +10:47:40 ============================================================================ +10:47:40 Slot Id : <320> +10:47:40 Transaction Type : RESPONSE +10:47:40 Received From : +10:47:40 ============================================================================ +10:47:40 FNo. Len. Field Value +10:47:40 ============================================================================ +10:47:40 [ 1] [ 4] [0810] +10:47:40 [ 7] [ 10] [0320034647] +10:47:40 [ 11] [ 6] [155935] +10:47:40 [ 39] [ 2] [00] +10:47:40 [ 70] [ 3] [301] +10:47:40 ============================================================================ +10:47:40 Calculate Source COMM Id = 2 +10:47:40 ============================================================================ +10:47:40 + + +waiting on router queue for slot.... +10:47:50 ============================================================================ +10:47:50 Slot Id : <342> +10:47:50 Transaction Type : REQUEST +10:47:50 Received From : +10:47:50 ============================================================================ +10:47:50 FNo. Len. Field Value +10:47:50 ============================================================================ +10:47:50 [ 1] [ 4] [0800] +10:47:50 [ 7] [ 10] [0320034658] +10:47:50 [ 11] [ 6] [155936] +10:47:50 [ 70] [ 3] [301] +10:47:50 ============================================================================ +10:47:50 + + +waiting on router queue for slot.... +10:47:50 Sending to : +10:47:50 ============================================================================ +10:47:50 ============================================================================ +10:47:50 Slot Id : <342> +10:47:50 Transaction Type : RESPONSE +10:47:50 Received From : +10:47:50 ============================================================================ +10:47:50 FNo. Len. Field Value +10:47:50 ============================================================================ +10:47:50 [ 1] [ 4] [0810] +10:47:50 [ 7] [ 10] [0320034658] +10:47:50 [ 11] [ 6] [155936] +10:47:50 [ 39] [ 2] [00] +10:47:50 [ 70] [ 3] [301] +10:47:50 ============================================================================ +10:47:50 Calculate Source COMM Id = 2 +10:47:50 ============================================================================ +10:47:50 + + +waiting on router queue for slot.... +10:47:52 ============================================================================ +10:47:52 Slot Id : <345> +10:47:52 Transaction Type : REQUEST +10:47:52 Received From : +10:47:52 ============================================================================ +10:47:52 FNo. Len. Field Value +10:47:52 ============================================================================ +10:47:52 [ 0] [ 4] [0420] +10:47:52 [ 1] [ 4] [0420] +10:47:52 [ 2] [ 16] [6213545000011019] +10:47:52 [ 3] [ 6] [011000] +10:47:52 [ 4] [ 12] [000100000000] +10:47:52 [ 6] [ 12] [000100000000] +10:47:52 [ 7] [ 10] [0320104648] +10:47:52 [ 11] [ 6] [079079] +10:47:52 [ 12] [ 6] [104648] +10:47:52 [ 13] [ 4] [0320] +10:47:52 [ 14] [ 4] [4912] +10:47:52 [ 15] [ 4] [0320] +10:47:52 [ 18] [ 4] [6011] +10:47:52 [ 22] [ 3] [900] +10:47:52 [ 25] [ 2] [02] +10:47:52 [ 28] [ 9] [D00002000] +10:47:52 [ 32] [ 6] [220699] +10:47:52 [ 35] [ 32] [6213545000011019=491212011101751] +10:47:52 [ 37] [ 12] [507900132952] +10:47:52 [ 39] [ 2] [00] +10:47:52 [ 41] [ 8] [03000100] +10:47:52 [ 42] [ 15] [APTRA ] +10:47:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:47:52 [ 49] [ 3] [418] +10:47:52 [ 52] [ 16] [0A92CCAA1623519E] +10:47:52 ============================================================================ +10:47:52 + + +waiting on router queue for slot.... +10:47:52 ============================================================================ +10:47:52 Slot Id : <345> +10:47:52 Transaction Type : RESPONSE +10:47:52 Received From : +10:47:52 ============================================================================ +10:47:52 FNo. Len. Field Value +10:47:52 ============================================================================ +10:47:52 [ 1] [ 4] [0430] +10:47:52 [ 2] [ 16] [6213545000011019] +10:47:52 [ 3] [ 6] [011000] +10:47:52 [ 4] [ 12] [000100000000] +10:47:52 [ 7] [ 10] [0320104648] +10:47:52 [ 11] [ 6] [079079] +10:47:52 [ 32] [ 6] [220699] +10:47:52 [ 35] [ 32] [6213545000011019=491212011101751] +10:47:52 [ 37] [ 12] [507900132952] +10:47:52 [ 39] [ 2] [00] +10:47:52 [ 41] [ 8] [03000100] +10:47:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:47:52 [ 49] [ 3] [418] +10:47:52 [ 90] [ 42] [020007907903201046480000022069900000000000] +10:47:52 ============================================================================ +10:47:52 Successfully send the slot [345] To REVERSAL Process +10:47:52 + + +waiting on router queue for slot.... +10:47:53 ============================================================================ +10:47:53 Slot Id : <341> +10:47:53 Transaction Type : REQUEST +10:47:53 Received From : +10:47:53 ============================================================================ +10:47:53 FNo. Len. Field Value +10:47:53 ============================================================================ +10:47:53 [ 1] [ 4] [0200] +10:47:53 [ 2] [ 16] [6213545000942544] +10:47:53 [ 3] [ 6] [011000] +10:47:53 [ 4] [ 12] [000050000000] +10:47:53 [ 7] [ 10] [0320104814] +10:47:53 [ 11] [ 6] [204097] +10:47:53 [ 12] [ 6] [104227] +10:47:53 [ 13] [ 4] [0320] +10:47:53 [ 14] [ 4] [4912] +10:47:53 [ 15] [ 4] [0320] +10:47:53 [ 18] [ 4] [6011] +10:47:53 [ 19] [ 3] [418] +10:47:53 [ 22] [ 3] [021] +10:47:53 [ 25] [ 2] [01] +10:47:53 [ 28] [ 9] [D00002000] +10:47:53 [ 32] [ 6] [198901] +10:47:53 [ 35] [ 32] [6213545000942544=491212014254854] +10:47:53 [ 37] [ 12] [507910204097] +10:47:53 [ 41] [ 8] [01529018] +10:47:53 [ 42] [ 15] [000000041529018] +10:47:53 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +10:47:53 [ 49] [ 3] [418] +10:47:53 [ 52] [ 16] [004B23F932DD4F86] +10:47:53 ============================================================================ +10:47:53 + + +waiting on router queue for slot.... +10:47:53 Sending to : +10:47:53 ============================================================================ +10:47:53 Sending to : +10:47:53 ============================================================================ +10:47:53 ============================================================================ +10:47:53 Slot Id : <341> +10:47:53 Transaction Type : REQUEST +10:47:53 Received From : +10:47:53 ============================================================================ +10:47:53 FNo. Len. Field Value +10:47:53 ============================================================================ +10:47:53 [ 1] [ 4] [0200] +10:47:53 [ 2] [ 16] [6213545000942544] +10:47:53 [ 3] [ 6] [011000] +10:47:53 [ 4] [ 12] [000050000000] +10:47:53 [ 7] [ 10] [0320104814] +10:47:53 [ 11] [ 6] [204097] +10:47:53 [ 12] [ 6] [104227] +10:47:53 [ 13] [ 4] [0320] +10:47:53 [ 14] [ 4] [4912] +10:47:53 [ 15] [ 4] [0320] +10:47:53 [ 18] [ 4] [6011] +10:47:53 [ 19] [ 3] [418] +10:47:53 [ 22] [ 3] [021] +10:47:53 [ 25] [ 2] [01] +10:47:53 [ 28] [ 9] [D00002000] +10:47:53 [ 32] [ 6] [198901] +10:47:53 [ 35] [ 32] [6213545000942544=491212014254854] +10:47:53 [ 37] [ 12] [507910204097] +10:47:53 [ 41] [ 8] [01529018] +10:47:53 [ 42] [ 15] [000000041529018] +10:47:53 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +10:47:53 [ 49] [ 3] [418] +10:47:53 [ 52] [ 16] [004B23F932DD4F86] +10:47:53 ============================================================================ +10:47:53 + + +waiting on router queue for slot.... +10:47:53 Sending to : +10:47:53 ============================================================================ +10:47:53 ============================================================================ +10:47:53 Slot Id : <341> +10:47:53 Transaction Type : REQUEST +10:47:53 Received From : +10:47:53 ============================================================================ +10:47:53 FNo. Len. Field Value +10:47:53 ============================================================================ +10:47:53 [ 1] [ 4] [0200] +10:47:53 [ 2] [ 16] [6213545000942544] +10:47:53 [ 3] [ 6] [011000] +10:47:53 [ 4] [ 12] [000050000000] +10:47:53 [ 7] [ 10] [0320104814] +10:47:53 [ 11] [ 6] [204097] +10:47:53 [ 12] [ 6] [104227] +10:47:53 [ 13] [ 4] [0320] +10:47:53 [ 14] [ 4] [4912] +10:47:53 [ 15] [ 4] [0320] +10:47:53 [ 18] [ 4] [6011] +10:47:53 [ 19] [ 3] [418] +10:47:53 [ 22] [ 3] [021] +10:47:53 [ 25] [ 2] [01] +10:47:53 [ 28] [ 9] [D00002000] +10:47:53 [ 32] [ 6] [198901] +10:47:53 [ 35] [ 32] [6213545000942544=491212014254854] +10:47:53 [ 37] [ 12] [507910204097] +10:47:53 [ 41] [ 8] [01529018] +10:47:53 [ 42] [ 15] [000000041529018] +10:47:53 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +10:47:53 [ 49] [ 3] [418] +10:47:53 [ 52] [ 16] [11356838B160A62C] +10:47:53 ============================================================================ +10:47:53 + + +waiting on router queue for slot.... +10:47:53 Sending to : <0> +10:47:53 ============================================================================ +10:47:54 ============================================================================ +10:47:54 Slot Id : <341> +10:47:54 Transaction Type : RESPONSE +10:47:54 Received From : +10:47:54 ============================================================================ +10:47:54 FNo. Len. Field Value +10:47:54 ============================================================================ +10:47:54 [ 1] [ 4] [0210] +10:47:54 [ 2] [ 16] [6213545000942544] +10:47:54 [ 3] [ 6] [011000] +10:47:54 [ 4] [ 12] [000050000000] +10:47:54 [ 7] [ 10] [0320104814] +10:47:54 [ 11] [ 6] [204097] +10:47:54 [ 12] [ 6] [104227] +10:47:54 [ 13] [ 4] [0320] +10:47:54 [ 15] [ 4] [0320] +10:47:54 [ 18] [ 4] [6011] +10:47:54 [ 19] [ 3] [418] +10:47:54 [ 32] [ 6] [198901] +10:47:54 [ 35] [ 32] [6213545000942544=491212014254854] +10:47:54 [ 37] [ 12] [507910204097] +10:47:54 [ 38] [ 6] [480221] +10:47:54 [ 39] [ 2] [00] +10:47:54 [ 41] [ 8] [01529018] +10:47:54 [ 49] [ 3] [418] +10:47:54 [ 54] [ 40] [1001418C0005578700421002418C000557870042] +10:47:54 ============================================================================ +10:47:54 Sending to : +10:47:54 ============================================================================ +10:47:54 + + +waiting on router queue for slot.... +10:47:54 ============================================================================ +10:47:54 Slot Id : <344> +10:47:54 Transaction Type : REQUEST +10:47:54 Received From : +10:47:54 ============================================================================ +10:47:54 FNo. Len. Field Value +10:47:54 ============================================================================ +10:47:54 [ 1] [ 4] [0200] +10:47:54 [ 2] [ 16] [6213545001065212] +10:47:54 [ 3] [ 6] [010000] +10:47:54 [ 4] [ 12] [000100000000] +10:47:54 [ 7] [ 10] [0320034701] +10:47:54 [ 11] [ 6] [268222] +10:47:54 [ 12] [ 6] [104701] +10:47:54 [ 13] [ 4] [0320] +10:47:54 [ 14] [ 4] [4912] +10:47:54 [ 15] [ 4] [0320] +10:47:54 [ 18] [ 4] [6011] +10:47:54 [ 19] [ 3] [418] +10:47:54 [ 22] [ 3] [021] +10:47:54 [ 25] [ 2] [01] +10:47:54 [ 28] [ 9] [D00002000] +10:47:54 [ 32] [ 6] [180893] +10:47:54 [ 35] [ 32] [6213545001065212=491212016521673] +10:47:54 [ 37] [ 12] [507903268222] +10:47:54 [ 41] [ 8] [0324BKDT] +10:47:54 [ 42] [ 15] [999999 ] +10:47:54 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:47:54 [ 49] [ 3] [418] +10:47:54 [ 52] [ 16] [172346E95F205ACB] +10:47:54 ============================================================================ +10:47:54 + + +waiting on router queue for slot.... +10:47:54 Sending to : +10:47:54 ============================================================================ +10:47:54 Sending to : +10:47:54 ============================================================================ +10:47:54 ============================================================================ +10:47:54 Slot Id : <344> +10:47:54 Transaction Type : REQUEST +10:47:54 Received From : +10:47:54 ============================================================================ +10:47:54 FNo. Len. Field Value +10:47:54 ============================================================================ +10:47:54 [ 1] [ 4] [0200] +10:47:54 [ 2] [ 16] [6213545001065212] +10:47:54 [ 3] [ 6] [010000] +10:47:54 [ 4] [ 12] [000100000000] +10:47:54 [ 7] [ 10] [0320034701] +10:47:54 [ 11] [ 6] [268222] +10:47:54 [ 12] [ 6] [104701] +10:47:54 [ 13] [ 4] [0320] +10:47:54 [ 14] [ 4] [4912] +10:47:54 [ 15] [ 4] [0320] +10:47:54 [ 18] [ 4] [6011] +10:47:54 [ 19] [ 3] [418] +10:47:54 [ 22] [ 3] [021] +10:47:54 [ 25] [ 2] [01] +10:47:54 [ 28] [ 9] [D00002000] +10:47:54 [ 32] [ 6] [180893] +10:47:54 [ 35] [ 32] [6213545001065212=491212016521673] +10:47:54 [ 37] [ 12] [507903268222] +10:47:54 [ 41] [ 8] [0324BKDT] +10:47:54 [ 42] [ 15] [999999 ] +10:47:54 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:47:54 [ 49] [ 3] [418] +10:47:54 [ 52] [ 16] [172346E95F205ACB] +10:47:54 ============================================================================ +10:47:54 + + +waiting on router queue for slot.... +10:47:54 Sending to : +10:47:54 ============================================================================ +10:47:54 ============================================================================ +10:47:54 Slot Id : <344> +10:47:54 Transaction Type : REQUEST +10:47:54 Received From : +10:47:54 ============================================================================ +10:47:54 FNo. Len. Field Value +10:47:54 ============================================================================ +10:47:54 [ 1] [ 4] [0200] +10:47:54 [ 2] [ 16] [6213545001065212] +10:47:54 [ 3] [ 6] [010000] +10:47:54 [ 4] [ 12] [000100000000] +10:47:54 [ 7] [ 10] [0320034701] +10:47:54 [ 11] [ 6] [268222] +10:47:54 [ 12] [ 6] [104701] +10:47:54 [ 13] [ 4] [0320] +10:47:54 [ 14] [ 4] [4912] +10:47:54 [ 15] [ 4] [0320] +10:47:54 [ 18] [ 4] [6011] +10:47:54 [ 19] [ 3] [418] +10:47:54 [ 22] [ 3] [021] +10:47:54 [ 25] [ 2] [01] +10:47:54 [ 28] [ 9] [D00002000] +10:47:54 [ 32] [ 6] [180893] +10:47:54 [ 35] [ 32] [6213545001065212=491212016521673] +10:47:54 [ 37] [ 12] [507903268222] +10:47:54 [ 41] [ 8] [0324BKDT] +10:47:54 [ 42] [ 15] [999999 ] +10:47:54 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:47:54 [ 49] [ 3] [418] +10:47:54 [ 52] [ 16] [7393830CFC9E4190] +10:47:54 ============================================================================ +10:47:54 + + +waiting on router queue for slot.... +10:47:54 Sending to : <0> +10:47:54 ============================================================================ +10:47:55 ============================================================================ +10:47:55 Slot Id : <344> +10:47:55 Transaction Type : RESPONSE +10:47:55 Received From : +10:47:55 ============================================================================ +10:47:55 FNo. Len. Field Value +10:47:55 ============================================================================ +10:47:55 [ 1] [ 4] [0210] +10:47:55 [ 2] [ 16] [6213545001065212] +10:47:55 [ 3] [ 6] [010000] +10:47:55 [ 4] [ 12] [000100000000] +10:47:55 [ 7] [ 10] [0320034701] +10:47:55 [ 11] [ 6] [268222] +10:47:55 [ 12] [ 6] [104701] +10:47:55 [ 13] [ 4] [0320] +10:47:55 [ 15] [ 4] [0320] +10:47:55 [ 18] [ 4] [6011] +10:47:55 [ 19] [ 3] [418] +10:47:55 [ 32] [ 6] [180893] +10:47:55 [ 35] [ 32] [6213545001065212=491212016521673] +10:47:55 [ 37] [ 12] [507903268222] +10:47:55 [ 38] [ 6] [480223] +10:47:55 [ 39] [ 2] [00] +10:47:55 [ 41] [ 8] [0324BKDT] +10:47:55 [ 49] [ 3] [418] +10:47:55 [ 54] [ 40] [0001418C0000698265660002418C000069826566] +10:47:55 ============================================================================ +10:47:55 Sending to : +10:47:55 ============================================================================ +10:47:55 + + +waiting on router queue for slot.... +10:47:55 ============================================================================ +10:47:55 Slot Id : <341> +10:47:55 Transaction Type : RESPONSE +10:47:55 Received From : +10:47:55 ============================================================================ +10:47:55 FNo. Len. Field Value +10:47:55 ============================================================================ +10:47:55 [ 1] [ 4] [0210] +10:47:55 [ 2] [ 16] [6213545000942544] +10:47:55 [ 3] [ 6] [011000] +10:47:55 [ 4] [ 12] [000050000000] +10:47:55 [ 7] [ 10] [0320104814] +10:47:55 [ 11] [ 6] [204097] +10:47:55 [ 12] [ 6] [104227] +10:47:55 [ 13] [ 4] [0320] +10:47:55 [ 15] [ 4] [0320] +10:47:55 [ 18] [ 4] [6011] +10:47:55 [ 19] [ 3] [418] +10:47:55 [ 32] [ 6] [198901] +10:47:55 [ 35] [ 32] [6213545000942544=491212014254854] +10:47:55 [ 37] [ 12] [507910204097] +10:47:55 [ 38] [ 6] [480221] +10:47:55 [ 39] [ 2] [00] +10:47:55 [ 41] [ 8] [01529018] +10:47:55 [ 49] [ 3] [418] +10:47:55 [ 54] [ 40] [1001418C0005578700421002418C000557870042] +10:47:55 ============================================================================ +10:47:55 Calculate Source COMM Id = 5 +10:47:55 ============================================================================ +10:47:55 + + +waiting on router queue for slot.... +10:47:57 ============================================================================ +10:47:57 Slot Id : <344> +10:47:57 Transaction Type : RESPONSE +10:47:57 Received From : +10:47:57 ============================================================================ +10:47:57 FNo. Len. Field Value +10:47:57 ============================================================================ +10:47:57 [ 1] [ 4] [0210] +10:47:57 [ 2] [ 16] [6213545001065212] +10:47:57 [ 3] [ 6] [010000] +10:47:57 [ 4] [ 12] [000100000000] +10:47:57 [ 7] [ 10] [0320034701] +10:47:57 [ 11] [ 6] [268222] +10:47:57 [ 12] [ 6] [104701] +10:47:57 [ 13] [ 4] [0320] +10:47:57 [ 15] [ 4] [0320] +10:47:57 [ 18] [ 4] [6011] +10:47:57 [ 19] [ 3] [418] +10:47:57 [ 32] [ 6] [180893] +10:47:57 [ 35] [ 32] [6213545001065212=491212016521673] +10:47:57 [ 37] [ 12] [507903268222] +10:47:57 [ 38] [ 6] [480223] +10:47:57 [ 39] [ 2] [00] +10:47:57 [ 41] [ 8] [0324BKDT] +10:47:57 [ 49] [ 3] [418] +10:47:57 [ 54] [ 40] [0001418C0000698265660002418C000069826566] +10:47:57 ============================================================================ +10:47:57 Calculate Source COMM Id = 2 +10:47:57 ============================================================================ +10:47:57 + + +waiting on router queue for slot.... +10:48:11 ============================================================================ +10:48:11 Slot Id : <268> +10:48:11 Transaction Type : REQUEST +10:48:11 Received From : +10:48:11 ============================================================================ +10:48:11 FNo. Len. Field Value +10:48:11 ============================================================================ +10:48:11 [ 1] [ 4] [0800] +10:48:11 [ 7] [ 10] [0320034719] +10:48:11 [ 11] [ 6] [155937] +10:48:11 [ 70] [ 3] [301] +10:48:11 ============================================================================ +10:48:11 + + +waiting on router queue for slot.... +10:48:11 Sending to : +10:48:11 ============================================================================ +10:48:11 ============================================================================ +10:48:11 Slot Id : <268> +10:48:11 Transaction Type : RESPONSE +10:48:11 Received From : +10:48:11 ============================================================================ +10:48:11 FNo. Len. Field Value +10:48:11 ============================================================================ +10:48:11 [ 1] [ 4] [0810] +10:48:11 [ 7] [ 10] [0320034719] +10:48:11 [ 11] [ 6] [155937] +10:48:11 [ 39] [ 2] [00] +10:48:11 [ 70] [ 3] [301] +10:48:11 ============================================================================ +10:48:11 Calculate Source COMM Id = 2 +10:48:11 ============================================================================ +10:48:11 + + +waiting on router queue for slot.... +10:48:22 ============================================================================ +10:48:22 Slot Id : <323> +10:48:22 Transaction Type : REQUEST +10:48:22 Received From : +10:48:22 ============================================================================ +10:48:22 FNo. Len. Field Value +10:48:22 ============================================================================ +10:48:22 [ 1] [ 4] [0800] +10:48:22 [ 7] [ 10] [0320034730] +10:48:22 [ 11] [ 6] [155938] +10:48:22 [ 70] [ 3] [301] +10:48:22 ============================================================================ +10:48:22 + + +waiting on router queue for slot.... +10:48:22 Sending to : +10:48:22 ============================================================================ +10:48:22 ============================================================================ +10:48:22 Slot Id : <323> +10:48:22 Transaction Type : RESPONSE +10:48:22 Received From : +10:48:22 ============================================================================ +10:48:22 FNo. Len. Field Value +10:48:22 ============================================================================ +10:48:22 [ 1] [ 4] [0810] +10:48:22 [ 7] [ 10] [0320034730] +10:48:22 [ 11] [ 6] [155938] +10:48:22 [ 39] [ 2] [00] +10:48:22 [ 70] [ 3] [301] +10:48:22 ============================================================================ +10:48:22 Calculate Source COMM Id = 2 +10:48:22 ============================================================================ +10:48:22 + + +waiting on router queue for slot.... +10:48:32 ============================================================================ +10:48:32 Slot Id : <339> +10:48:32 Transaction Type : REQUEST +10:48:32 Received From : +10:48:32 ============================================================================ +10:48:32 FNo. Len. Field Value +10:48:32 ============================================================================ +10:48:32 [ 1] [ 4] [0800] +10:48:32 [ 2] [ 5] [02531] +10:48:32 [ 3] [ 6] [579108] +10:48:32 [ 7] [ 10] [0320034832] +10:48:32 [ 11] [ 6] [807039] +10:48:32 [ 15] [ 10] [0320034832] +10:48:32 [ 37] [ 11] [57910807039] +10:48:32 [ 70] [ 3] [001] +10:48:32 ============================================================================ +10:48:32 + + +waiting on router queue for slot.... +10:48:32 ============================================================================ +10:48:32 Slot Id : <339> +10:48:32 Transaction Type : RESPONSE +10:48:32 Received From : +10:48:32 ============================================================================ +10:48:32 FNo. Len. Field Value +10:48:32 ============================================================================ +10:48:32 [ 1] [ 4] [0810] +10:48:32 [ 7] [ 10] [0320034832] +10:48:32 [ 11] [ 6] [807039] +10:48:32 [ 15] [ 4] [0320] +10:48:32 [ 37] [ 12] [57910807039] +10:48:32 [ 39] [ 2] [00] +10:48:32 [ 70] [ 3] [001] +10:48:32 ============================================================================ +10:48:32 Sending to : +10:48:32 ============================================================================ +10:48:32 + + +waiting on router queue for slot.... +10:48:34 ============================================================================ +10:48:34 Slot Id : <348> +10:48:34 Transaction Type : REQUEST +10:48:34 Received From : +10:48:34 ============================================================================ +10:48:34 FNo. Len. Field Value +10:48:34 ============================================================================ +10:48:34 [ 1] [ 4] [0800] +10:48:34 [ 7] [ 10] [0320034741] +10:48:34 [ 11] [ 6] [155939] +10:48:34 [ 70] [ 3] [301] +10:48:34 ============================================================================ +10:48:34 + + +waiting on router queue for slot.... +10:48:34 Sending to : +10:48:34 ============================================================================ +10:48:34 ============================================================================ +10:48:34 Slot Id : <348> +10:48:34 Transaction Type : RESPONSE +10:48:34 Received From : +10:48:34 ============================================================================ +10:48:34 FNo. Len. Field Value +10:48:34 ============================================================================ +10:48:34 [ 1] [ 4] [0810] +10:48:34 [ 7] [ 10] [0320034741] +10:48:34 [ 11] [ 6] [155939] +10:48:34 [ 39] [ 2] [00] +10:48:34 [ 70] [ 3] [301] +10:48:34 ============================================================================ +10:48:34 Calculate Source COMM Id = 2 +10:48:34 ============================================================================ +10:48:34 + + +waiting on router queue for slot.... +10:48:50 ============================================================================ +10:48:50 Slot Id : <329> +10:48:50 Transaction Type : REQUEST +10:48:50 Received From : +10:48:50 ============================================================================ +10:48:50 FNo. Len. Field Value +10:48:50 ============================================================================ +10:48:50 [ 1] [ 4] [0800] +10:48:50 [ 7] [ 10] [0320034758] +10:48:50 [ 11] [ 6] [155940] +10:48:50 [ 70] [ 3] [301] +10:48:50 ============================================================================ +10:48:50 + + +waiting on router queue for slot.... +10:48:50 Sending to : +10:48:50 ============================================================================ +10:48:50 ============================================================================ +10:48:50 Slot Id : <329> +10:48:50 Transaction Type : RESPONSE +10:48:50 Received From : +10:48:50 ============================================================================ +10:48:50 FNo. Len. Field Value +10:48:50 ============================================================================ +10:48:50 [ 1] [ 4] [0810] +10:48:50 [ 7] [ 10] [0320034758] +10:48:50 [ 11] [ 6] [155940] +10:48:50 [ 39] [ 2] [00] +10:48:50 [ 70] [ 3] [301] +10:48:50 ============================================================================ +10:48:50 Calculate Source COMM Id = 2 +10:48:50 ============================================================================ +10:48:50 + + +waiting on router queue for slot.... +10:49:01 ============================================================================ +10:49:01 Slot Id : <352> +10:49:01 Transaction Type : REQUEST +10:49:01 Received From : +10:49:01 ============================================================================ +10:49:01 FNo. Len. Field Value +10:49:01 ============================================================================ +10:49:01 [ 1] [ 4] [0800] +10:49:01 [ 7] [ 10] [0320034808] +10:49:01 [ 11] [ 6] [155941] +10:49:01 [ 70] [ 3] [301] +10:49:01 ============================================================================ +10:49:01 + + +waiting on router queue for slot.... +10:49:01 Sending to : +10:49:01 ============================================================================ +10:49:01 ============================================================================ +10:49:01 Slot Id : <352> +10:49:01 Transaction Type : RESPONSE +10:49:01 Received From : +10:49:01 ============================================================================ +10:49:01 FNo. Len. Field Value +10:49:01 ============================================================================ +10:49:01 [ 1] [ 4] [0810] +10:49:01 [ 7] [ 10] [0320034808] +10:49:01 [ 11] [ 6] [155941] +10:49:01 [ 39] [ 2] [00] +10:49:01 [ 70] [ 3] [301] +10:49:01 ============================================================================ +10:49:01 Calculate Source COMM Id = 2 +10:49:01 ============================================================================ +10:49:01 + + +waiting on router queue for slot.... +10:49:12 ============================================================================ +10:49:12 Slot Id : <309> +10:49:12 Transaction Type : REQUEST +10:49:12 Received From : +10:49:12 ============================================================================ +10:49:12 FNo. Len. Field Value +10:49:12 ============================================================================ +10:49:12 [ 1] [ 4] [0800] +10:49:12 [ 7] [ 10] [0320034820] +10:49:12 [ 11] [ 6] [155942] +10:49:12 [ 70] [ 3] [301] +10:49:12 ============================================================================ +10:49:12 + + +waiting on router queue for slot.... +10:49:12 Sending to : +10:49:12 ============================================================================ +10:49:12 ============================================================================ +10:49:12 Slot Id : <309> +10:49:12 Transaction Type : RESPONSE +10:49:12 Received From : +10:49:12 ============================================================================ +10:49:12 FNo. Len. Field Value +10:49:12 ============================================================================ +10:49:12 [ 1] [ 4] [0810] +10:49:12 [ 7] [ 10] [0320034820] +10:49:12 [ 11] [ 6] [155942] +10:49:12 [ 39] [ 2] [00] +10:49:12 [ 70] [ 3] [301] +10:49:12 ============================================================================ +10:49:12 Calculate Source COMM Id = 2 +10:49:12 ============================================================================ +10:49:12 + + +waiting on router queue for slot.... +10:49:16 ============================================================================ +10:49:16 Slot Id : <328> +10:49:16 Transaction Type : REQUEST +10:49:16 Received From : +10:49:16 ============================================================================ +10:49:16 FNo. Len. Field Value +10:49:16 ============================================================================ +10:49:16 [ 1] [ 4] [0200] +10:49:16 [ 2] [ 16] [6213545001065212] +10:49:16 [ 3] [ 6] [011000] +10:49:16 [ 4] [ 12] [000060000000] +10:49:16 [ 7] [ 10] [0320034823] +10:49:16 [ 11] [ 6] [268231] +10:49:16 [ 12] [ 6] [104823] +10:49:16 [ 13] [ 4] [0320] +10:49:16 [ 14] [ 4] [4912] +10:49:16 [ 15] [ 4] [0320] +10:49:16 [ 18] [ 4] [6011] +10:49:16 [ 19] [ 3] [418] +10:49:16 [ 22] [ 3] [021] +10:49:16 [ 25] [ 2] [01] +10:49:16 [ 28] [ 9] [D00002000] +10:49:16 [ 32] [ 6] [180893] +10:49:16 [ 35] [ 32] [6213545001065212=491212016521673] +10:49:16 [ 37] [ 12] [507903268231] +10:49:16 [ 41] [ 8] [0324BKDT] +10:49:16 [ 42] [ 15] [999999 ] +10:49:16 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:49:16 [ 49] [ 3] [418] +10:49:16 [ 52] [ 16] [172346E95F205ACB] +10:49:16 ============================================================================ +10:49:16 + + +waiting on router queue for slot.... +10:49:16 Sending to : +10:49:16 ============================================================================ +10:49:16 Sending to : +10:49:16 ============================================================================ +10:49:16 ============================================================================ +10:49:16 Slot Id : <328> +10:49:16 Transaction Type : REQUEST +10:49:16 Received From : +10:49:16 ============================================================================ +10:49:16 FNo. Len. Field Value +10:49:16 ============================================================================ +10:49:16 [ 1] [ 4] [0200] +10:49:16 [ 2] [ 16] [6213545001065212] +10:49:16 [ 3] [ 6] [011000] +10:49:16 [ 4] [ 12] [000060000000] +10:49:16 [ 7] [ 10] [0320034823] +10:49:16 [ 11] [ 6] [268231] +10:49:16 [ 12] [ 6] [104823] +10:49:16 [ 13] [ 4] [0320] +10:49:16 [ 14] [ 4] [4912] +10:49:16 [ 15] [ 4] [0320] +10:49:16 [ 18] [ 4] [6011] +10:49:16 [ 19] [ 3] [418] +10:49:16 [ 22] [ 3] [021] +10:49:16 [ 25] [ 2] [01] +10:49:16 [ 28] [ 9] [D00002000] +10:49:16 [ 32] [ 6] [180893] +10:49:16 [ 35] [ 32] [6213545001065212=491212016521673] +10:49:16 [ 37] [ 12] [507903268231] +10:49:16 [ 41] [ 8] [0324BKDT] +10:49:16 [ 42] [ 15] [999999 ] +10:49:16 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:49:16 [ 49] [ 3] [418] +10:49:16 [ 52] [ 16] [172346E95F205ACB] +10:49:16 ============================================================================ +10:49:16 + + +waiting on router queue for slot.... +10:49:16 Sending to : +10:49:16 ============================================================================ +10:49:16 ============================================================================ +10:49:16 Slot Id : <328> +10:49:16 Transaction Type : REQUEST +10:49:16 Received From : +10:49:16 ============================================================================ +10:49:16 FNo. Len. Field Value +10:49:16 ============================================================================ +10:49:16 [ 1] [ 4] [0200] +10:49:16 [ 2] [ 16] [6213545001065212] +10:49:16 [ 3] [ 6] [011000] +10:49:16 [ 4] [ 12] [000060000000] +10:49:16 [ 7] [ 10] [0320034823] +10:49:16 [ 11] [ 6] [268231] +10:49:16 [ 12] [ 6] [104823] +10:49:16 [ 13] [ 4] [0320] +10:49:16 [ 14] [ 4] [4912] +10:49:16 [ 15] [ 4] [0320] +10:49:16 [ 18] [ 4] [6011] +10:49:16 [ 19] [ 3] [418] +10:49:16 [ 22] [ 3] [021] +10:49:16 [ 25] [ 2] [01] +10:49:16 [ 28] [ 9] [D00002000] +10:49:16 [ 32] [ 6] [180893] +10:49:16 [ 35] [ 32] [6213545001065212=491212016521673] +10:49:16 [ 37] [ 12] [507903268231] +10:49:16 [ 41] [ 8] [0324BKDT] +10:49:16 [ 42] [ 15] [999999 ] +10:49:16 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:49:16 [ 49] [ 3] [418] +10:49:16 [ 52] [ 16] [7393830CFC9E4190] +10:49:16 ============================================================================ +10:49:16 + + +waiting on router queue for slot.... +10:49:16 Sending to : <0> +10:49:16 ============================================================================ +10:49:17 ============================================================================ +10:49:17 Slot Id : <328> +10:49:17 Transaction Type : RESPONSE +10:49:17 Received From : +10:49:17 ============================================================================ +10:49:17 FNo. Len. Field Value +10:49:17 ============================================================================ +10:49:17 [ 1] [ 4] [0210] +10:49:17 [ 2] [ 16] [6213545001065212] +10:49:17 [ 3] [ 6] [011000] +10:49:17 [ 4] [ 12] [000060000000] +10:49:17 [ 7] [ 10] [0320034823] +10:49:17 [ 11] [ 6] [268231] +10:49:17 [ 12] [ 6] [104823] +10:49:17 [ 13] [ 4] [0320] +10:49:17 [ 15] [ 4] [0320] +10:49:17 [ 18] [ 4] [6011] +10:49:17 [ 19] [ 3] [418] +10:49:17 [ 32] [ 6] [180893] +10:49:17 [ 35] [ 32] [6213545001065212=491212016521673] +10:49:17 [ 37] [ 12] [507903268231] +10:49:17 [ 38] [ 6] [572386] +10:49:17 [ 39] [ 2] [00] +10:49:17 [ 41] [ 8] [0324BKDT] +10:49:17 [ 49] [ 3] [418] +10:49:17 [ 54] [ 40] [1001418C0000096265661002418C000009626566] +10:49:17 ============================================================================ +10:49:17 Sending to : +10:49:17 ============================================================================ +10:49:17 + + +waiting on router queue for slot.... +10:49:18 ============================================================================ +10:49:18 Slot Id : <328> +10:49:18 Transaction Type : RESPONSE +10:49:18 Received From : +10:49:18 ============================================================================ +10:49:18 FNo. Len. Field Value +10:49:18 ============================================================================ +10:49:18 [ 1] [ 4] [0210] +10:49:18 [ 2] [ 16] [6213545001065212] +10:49:18 [ 3] [ 6] [011000] +10:49:18 [ 4] [ 12] [000060000000] +10:49:18 [ 7] [ 10] [0320034823] +10:49:18 [ 11] [ 6] [268231] +10:49:18 [ 12] [ 6] [104823] +10:49:18 [ 13] [ 4] [0320] +10:49:18 [ 15] [ 4] [0320] +10:49:18 [ 18] [ 4] [6011] +10:49:18 [ 19] [ 3] [418] +10:49:18 [ 32] [ 6] [180893] +10:49:18 [ 35] [ 32] [6213545001065212=491212016521673] +10:49:18 [ 37] [ 12] [507903268231] +10:49:18 [ 38] [ 6] [572386] +10:49:18 [ 39] [ 2] [00] +10:49:18 [ 41] [ 8] [0324BKDT] +10:49:18 [ 49] [ 3] [418] +10:49:18 [ 54] [ 40] [1001418C0000096265661002418C000009626566] +10:49:18 ============================================================================ +10:49:18 Calculate Source COMM Id = 2 +10:49:18 ============================================================================ +10:49:18 + + +waiting on router queue for slot.... +10:49:25 ============================================================================ +10:49:25 Slot Id : <347> +10:49:25 Transaction Type : REQUEST +10:49:25 Received From : +10:49:25 ============================================================================ +10:49:25 FNo. Len. Field Value +10:49:25 ============================================================================ +10:49:25 [ 1] [ 4] [0200] +10:49:25 [ 2] [ 16] [6213545000442883] +10:49:25 [ 3] [ 6] [011000] +10:49:25 [ 4] [ 12] [000050000000] +10:49:25 [ 7] [ 10] [0320105712] +10:49:25 [ 11] [ 6] [021154] +10:49:25 [ 12] [ 6] [105712] +10:49:25 [ 13] [ 4] [0320] +10:49:25 [ 14] [ 4] [4912] +10:49:25 [ 15] [ 4] [0320] +10:49:25 [ 18] [ 4] [6011] +10:49:25 [ 22] [ 3] [900] +10:49:25 [ 25] [ 2] [02] +10:49:25 [ 28] [ 9] [D00002000] +10:49:25 [ 32] [ 6] [220699] +10:49:25 [ 35] [ 32] [6213545000442883=491212014288626] +10:49:25 [ 37] [ 12] [507900263107] +10:49:25 [ 41] [ 8] [01001400] +10:49:25 [ 42] [ 15] [APTRA ] +10:49:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:49:25 [ 49] [ 3] [418] +10:49:25 [ 52] [ 16] [1304C4ACED036CB2] +10:49:25 ============================================================================ +10:49:25 + + +waiting on router queue for slot.... +10:49:25 Sending to : +10:49:25 ============================================================================ +10:49:25 Sending to : +10:49:25 ============================================================================ +10:49:25 ============================================================================ +10:49:25 Slot Id : <347> +10:49:25 Transaction Type : REQUEST +10:49:25 Received From : +10:49:25 ============================================================================ +10:49:25 FNo. Len. Field Value +10:49:25 ============================================================================ +10:49:25 [ 1] [ 4] [0200] +10:49:25 [ 2] [ 16] [6213545000442883] +10:49:25 [ 3] [ 6] [011000] +10:49:25 [ 4] [ 12] [000050000000] +10:49:25 [ 7] [ 10] [0320105712] +10:49:25 [ 11] [ 6] [021154] +10:49:25 [ 12] [ 6] [105712] +10:49:25 [ 13] [ 4] [0320] +10:49:25 [ 14] [ 4] [4912] +10:49:25 [ 15] [ 4] [0320] +10:49:25 [ 18] [ 4] [6011] +10:49:25 [ 22] [ 3] [900] +10:49:25 [ 25] [ 2] [02] +10:49:25 [ 28] [ 9] [D00002000] +10:49:25 [ 32] [ 6] [220699] +10:49:25 [ 35] [ 32] [6213545000442883=491212014288626] +10:49:25 [ 37] [ 12] [507900263107] +10:49:25 [ 41] [ 8] [01001400] +10:49:25 [ 42] [ 15] [APTRA ] +10:49:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:49:25 [ 49] [ 3] [418] +10:49:25 [ 52] [ 16] [1304C4ACED036CB2] +10:49:25 ============================================================================ +10:49:25 + + +waiting on router queue for slot.... +10:49:25 Sending to : +10:49:25 ============================================================================ +10:49:25 ============================================================================ +10:49:25 Slot Id : <347> +10:49:25 Transaction Type : REQUEST +10:49:25 Received From : +10:49:25 ============================================================================ +10:49:25 FNo. Len. Field Value +10:49:25 ============================================================================ +10:49:25 [ 1] [ 4] [0200] +10:49:25 [ 2] [ 16] [6213545000442883] +10:49:25 [ 3] [ 6] [011000] +10:49:25 [ 4] [ 12] [000050000000] +10:49:25 [ 7] [ 10] [0320105712] +10:49:25 [ 11] [ 6] [021154] +10:49:25 [ 12] [ 6] [105712] +10:49:25 [ 13] [ 4] [0320] +10:49:25 [ 14] [ 4] [4912] +10:49:25 [ 15] [ 4] [0320] +10:49:25 [ 18] [ 4] [6011] +10:49:25 [ 22] [ 3] [900] +10:49:25 [ 25] [ 2] [02] +10:49:25 [ 28] [ 9] [D00002000] +10:49:25 [ 32] [ 6] [220699] +10:49:25 [ 35] [ 32] [6213545000442883=491212014288626] +10:49:25 [ 37] [ 12] [507900263107] +10:49:25 [ 41] [ 8] [01001400] +10:49:25 [ 42] [ 15] [APTRA ] +10:49:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:49:25 [ 49] [ 3] [418] +10:49:25 [ 52] [ 16] [CF9B49E5666E2CFB] +10:49:25 ============================================================================ +10:49:25 + + +waiting on router queue for slot.... +10:49:25 Sending to : <0> +10:49:25 ============================================================================ +10:49:26 ============================================================================ +10:49:26 Slot Id : <347> +10:49:26 Transaction Type : RESPONSE +10:49:26 Received From : +10:49:26 ============================================================================ +10:49:26 FNo. Len. Field Value +10:49:26 ============================================================================ +10:49:26 [ 1] [ 4] [0210] +10:49:26 [ 2] [ 16] [6213545000442883] +10:49:26 [ 3] [ 6] [011000] +10:49:26 [ 4] [ 12] [000050000000] +10:49:26 [ 7] [ 10] [0320105712] +10:49:26 [ 11] [ 6] [021154] +10:49:26 [ 12] [ 6] [105712] +10:49:26 [ 13] [ 4] [0320] +10:49:26 [ 15] [ 4] [0320] +10:49:26 [ 18] [ 4] [6011] +10:49:26 [ 32] [ 6] [220699] +10:49:26 [ 35] [ 32] [6213545000442883=491212014288626] +10:49:26 [ 37] [ 12] [507900263107] +10:49:26 [ 38] [ 6] [553709] +10:49:26 [ 39] [ 2] [00] +10:49:26 [ 41] [ 8] [01001400] +10:49:26 [ 49] [ 3] [418] +10:49:26 [ 54] [ 40] [1001418C0012256915521002418C001225691552] +10:49:26 ============================================================================ +10:49:26 Sending to : +10:49:26 ============================================================================ +10:49:26 + + +waiting on router queue for slot.... +10:49:28 ============================================================================ +10:49:28 Slot Id : <347> +10:49:28 Transaction Type : RESPONSE +10:49:28 Received From : +10:49:28 ============================================================================ +10:49:28 FNo. Len. Field Value +10:49:28 ============================================================================ +10:49:28 [ 1] [ 4] [0210] +10:49:28 [ 2] [ 16] [6213545000442883] +10:49:28 [ 3] [ 6] [011000] +10:49:28 [ 4] [ 12] [000050000000] +10:49:28 [ 7] [ 10] [0320105712] +10:49:28 [ 11] [ 6] [021154] +10:49:28 [ 12] [ 6] [105712] +10:49:28 [ 13] [ 4] [0320] +10:49:28 [ 15] [ 4] [0320] +10:49:28 [ 18] [ 4] [6011] +10:49:28 [ 32] [ 6] [220699] +10:49:28 [ 35] [ 32] [6213545000442883=491212014288626] +10:49:28 [ 37] [ 12] [507900263107] +10:49:28 [ 38] [ 6] [553709] +10:49:28 [ 39] [ 2] [00] +10:49:28 [ 41] [ 8] [01001400] +10:49:28 [ 49] [ 3] [418] +10:49:28 [ 54] [ 40] [1001418C0012256915521002418C001225691552] +10:49:28 ============================================================================ +10:49:28 Calculate Source COMM Id = 1 +10:49:28 ============================================================================ +10:49:28 + + +waiting on router queue for slot.... +10:49:33 ============================================================================ +10:49:33 Slot Id : <350> +10:49:33 Transaction Type : REQUEST +10:49:33 Received From : +10:49:33 ============================================================================ +10:49:33 FNo. Len. Field Value +10:49:33 ============================================================================ +10:49:33 [ 1] [ 4] [0800] +10:49:33 [ 7] [ 10] [0320034841] +10:49:33 [ 11] [ 6] [155943] +10:49:33 [ 70] [ 3] [301] +10:49:33 ============================================================================ +10:49:33 + + +waiting on router queue for slot.... +10:49:33 Sending to : +10:49:33 ============================================================================ +10:49:34 ============================================================================ +10:49:34 Slot Id : <350> +10:49:34 Transaction Type : RESPONSE +10:49:34 Received From : +10:49:34 ============================================================================ +10:49:34 FNo. Len. Field Value +10:49:34 ============================================================================ +10:49:34 [ 1] [ 4] [0810] +10:49:34 [ 7] [ 10] [0320034841] +10:49:34 [ 11] [ 6] [155943] +10:49:34 [ 39] [ 2] [00] +10:49:34 [ 70] [ 3] [301] +10:49:34 ============================================================================ +10:49:34 Calculate Source COMM Id = 2 +10:49:34 ============================================================================ +10:49:34 + + +waiting on router queue for slot.... +10:49:34 ============================================================================ +10:49:34 Slot Id : <319> +10:49:34 Transaction Type : REQUEST +10:49:34 Received From : +10:49:34 ============================================================================ +10:49:34 FNo. Len. Field Value +10:49:34 ============================================================================ +10:49:34 [ 1] [ 4] [0800] +10:49:34 [ 2] [ 5] [02531] +10:49:34 [ 3] [ 6] [579108] +10:49:34 [ 7] [ 10] [0320034934] +10:49:34 [ 11] [ 6] [807040] +10:49:34 [ 15] [ 10] [0320034934] +10:49:34 [ 37] [ 11] [57910807040] +10:49:34 [ 70] [ 3] [001] +10:49:34 ============================================================================ +10:49:34 + + +waiting on router queue for slot.... +10:49:34 ============================================================================ +10:49:34 Slot Id : <319> +10:49:34 Transaction Type : RESPONSE +10:49:34 Received From : +10:49:34 ============================================================================ +10:49:34 FNo. Len. Field Value +10:49:34 ============================================================================ +10:49:34 [ 1] [ 4] [0810] +10:49:34 [ 7] [ 10] [0320034934] +10:49:34 [ 11] [ 6] [807040] +10:49:34 [ 15] [ 4] [0320] +10:49:34 [ 37] [ 12] [57910807040] +10:49:34 [ 39] [ 2] [00] +10:49:34 [ 70] [ 3] [001] +10:49:34 ============================================================================ +10:49:34 Sending to : +10:49:34 ============================================================================ +10:49:34 + + +waiting on router queue for slot.... +10:49:49 ============================================================================ +10:49:49 Slot Id : <346> +10:49:49 Transaction Type : REQUEST +10:49:49 Received From : +10:49:49 ============================================================================ +10:49:49 FNo. Len. Field Value +10:49:49 ============================================================================ +10:49:49 [ 1] [ 4] [0800] +10:49:49 [ 7] [ 10] [0320034857] +10:49:49 [ 11] [ 6] [155944] +10:49:49 [ 70] [ 3] [301] +10:49:49 ============================================================================ +10:49:49 + + +waiting on router queue for slot.... +10:49:49 Sending to : +10:49:49 ============================================================================ +10:49:49 ============================================================================ +10:49:49 Slot Id : <346> +10:49:49 Transaction Type : RESPONSE +10:49:49 Received From : +10:49:49 ============================================================================ +10:49:49 FNo. Len. Field Value +10:49:49 ============================================================================ +10:49:49 [ 1] [ 4] [0810] +10:49:49 [ 7] [ 10] [0320034857] +10:49:49 [ 11] [ 6] [155944] +10:49:49 [ 39] [ 2] [00] +10:49:49 [ 70] [ 3] [301] +10:49:49 ============================================================================ +10:49:49 Calculate Source COMM Id = 2 +10:49:49 ============================================================================ +10:49:49 + + +waiting on router queue for slot.... +10:49:55 ============================================================================ +10:49:55 Slot Id : <357> +10:49:55 Transaction Type : REQUEST +10:49:55 Received From : +10:49:55 ============================================================================ +10:49:55 FNo. Len. Field Value +10:49:55 ============================================================================ +10:49:55 [ 1] [ 4] [0800] +10:49:55 [ 7] [ 10] [0320035742] +10:49:55 [ 11] [ 6] [043652] +10:49:55 [ 37] [ 12] [57910043652] +10:49:55 [ 70] [ 3] [301] +10:49:55 ============================================================================ +10:49:55 + + +waiting on router queue for slot.... +10:49:55 Sending to : +10:49:55 ============================================================================ +10:49:55 ============================================================================ +10:49:55 Slot Id : <357> +10:49:55 Transaction Type : RESPONSE +10:49:55 Received From : +10:49:55 ============================================================================ +10:49:55 FNo. Len. Field Value +10:49:55 ============================================================================ +10:49:55 [ 1] [ 4] [0810] +10:49:55 [ 7] [ 10] [0320035742] +10:49:55 [ 11] [ 6] [043652] +10:49:55 [ 37] [ 12] [579100436520] +10:49:55 [ 39] [ 2] [00] +10:49:55 [ 70] [ 3] [810] +10:49:55 ============================================================================ +10:49:55 Calculate Source COMM Id = 1 +10:49:55 ============================================================================ +10:49:55 + + +waiting on router queue for slot.... +10:49:58 ============================================================================ +10:49:58 Slot Id : <332> +10:49:58 Transaction Type : REQUEST +10:49:58 Received From : +10:49:58 ============================================================================ +10:49:58 FNo. Len. Field Value +10:49:58 ============================================================================ +10:49:58 [ 1] [ 4] [0200] +10:49:58 [ 2] [ 16] [6688990050090859] +10:49:58 [ 3] [ 6] [311000] +10:49:58 [ 4] [ 12] [000000000000] +10:49:58 [ 7] [ 10] [0320105745] +10:49:58 [ 11] [ 6] [177345] +10:49:58 [ 12] [ 6] [105745] +10:49:58 [ 13] [ 4] [0320] +10:49:58 [ 14] [ 4] [9806] +10:49:58 [ 15] [ 4] [0320] +10:49:58 [ 18] [ 4] [6011] +10:49:58 [ 22] [ 3] [900] +10:49:58 [ 25] [ 2] [02] +10:49:58 [ 28] [ 9] [000000000] +10:49:58 [ 32] [ 6] [220699] +10:49:58 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:49:58 [ 37] [ 12] [507900010220] +10:49:58 [ 41] [ 8] [01000100] +10:49:58 [ 42] [ 15] [APTRA ] +10:49:58 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:49:58 [ 49] [ 3] [418] +10:49:58 [ 52] [ 16] [3E2473A978CC8D82] +10:49:58 ============================================================================ +10:49:58 + + +waiting on router queue for slot.... +10:49:58 Sending to : +10:49:58 ============================================================================ +10:49:58 Sending to : +10:49:58 ============================================================================ +10:49:58 ============================================================================ +10:49:58 Slot Id : <332> +10:49:58 Transaction Type : REQUEST +10:49:58 Received From : +10:49:58 ============================================================================ +10:49:58 FNo. Len. Field Value +10:49:58 ============================================================================ +10:49:58 [ 1] [ 4] [0200] +10:49:58 [ 2] [ 16] [6688990050090859] +10:49:58 [ 3] [ 6] [311000] +10:49:58 [ 4] [ 12] [000000000000] +10:49:58 [ 7] [ 10] [0320105745] +10:49:58 [ 11] [ 6] [177345] +10:49:58 [ 12] [ 6] [105745] +10:49:58 [ 13] [ 4] [0320] +10:49:58 [ 14] [ 4] [9806] +10:49:58 [ 15] [ 4] [0320] +10:49:58 [ 18] [ 4] [6011] +10:49:58 [ 22] [ 3] [900] +10:49:58 [ 25] [ 2] [02] +10:49:58 [ 28] [ 9] [000000000] +10:49:58 [ 32] [ 6] [220699] +10:49:58 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:49:58 [ 37] [ 12] [507900010220] +10:49:58 [ 41] [ 8] [01000100] +10:49:58 [ 42] [ 15] [APTRA ] +10:49:58 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:49:58 [ 49] [ 3] [418] +10:49:58 [ 52] [ 16] [3E2473A978CC8D82] +10:49:58 ============================================================================ +10:49:58 + + +waiting on router queue for slot.... +10:49:58 Sending to : +10:49:58 ============================================================================ +10:49:58 ============================================================================ +10:49:58 Slot Id : <332> +10:49:58 Transaction Type : REQUEST +10:49:58 Received From : +10:49:58 ============================================================================ +10:49:58 FNo. Len. Field Value +10:49:58 ============================================================================ +10:49:58 [ 1] [ 4] [0200] +10:49:58 [ 2] [ 16] [6688990050090859] +10:49:58 [ 3] [ 6] [311000] +10:49:58 [ 4] [ 12] [000000000000] +10:49:58 [ 7] [ 10] [0320105745] +10:49:58 [ 11] [ 6] [177345] +10:49:58 [ 12] [ 6] [105745] +10:49:58 [ 13] [ 4] [0320] +10:49:58 [ 14] [ 4] [9806] +10:49:58 [ 15] [ 4] [0320] +10:49:58 [ 18] [ 4] [6011] +10:49:58 [ 22] [ 3] [900] +10:49:58 [ 25] [ 2] [02] +10:49:58 [ 28] [ 9] [000000000] +10:49:58 [ 32] [ 6] [220699] +10:49:58 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:49:58 [ 37] [ 12] [507900010220] +10:49:58 [ 41] [ 8] [01000100] +10:49:58 [ 42] [ 15] [APTRA ] +10:49:58 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:49:58 [ 49] [ 3] [418] +10:49:58 [ 52] [ 16] [37C9DC8CE74C55DD] +10:49:58 ============================================================================ +10:49:58 + + +waiting on router queue for slot.... +10:49:58 Sending to : <0> +10:49:58 ============================================================================ +10:49:58 ============================================================================ +10:49:58 Slot Id : <332> +10:49:58 Transaction Type : RESPONSE +10:49:58 Received From : +10:49:58 ============================================================================ +10:49:58 FNo. Len. Field Value +10:49:58 ============================================================================ +10:49:58 [ 1] [ 4] [0210] +10:49:58 [ 2] [ 16] [6688990050090859] +10:49:58 [ 3] [ 6] [311000] +10:49:58 [ 4] [ 12] [000000000000] +10:49:58 [ 7] [ 10] [0320105745] +10:49:58 [ 11] [ 6] [177345] +10:49:58 [ 12] [ 6] [105745] +10:49:58 [ 13] [ 4] [0320] +10:49:58 [ 15] [ 4] [0320] +10:49:58 [ 18] [ 4] [6011] +10:49:58 [ 22] [ 3] [900] +10:49:58 [ 32] [ 6] [220699] +10:49:58 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:49:58 [ 37] [ 12] [507900010220] +10:49:58 [ 39] [ 2] [14] +10:49:58 [ 41] [ 8] [01000100] +10:49:58 [ 49] [ 3] [418] +10:49:58 ============================================================================ +10:49:58 Sending to : +10:49:58 ============================================================================ +10:49:58 + + +waiting on router queue for slot.... +10:49:59 ============================================================================ +10:49:59 Slot Id : <332> +10:49:59 Transaction Type : RESPONSE +10:49:59 Received From : +10:49:59 ============================================================================ +10:49:59 FNo. Len. Field Value +10:49:59 ============================================================================ +10:49:59 [ 1] [ 4] [0210] +10:49:59 [ 2] [ 16] [6688990050090859] +10:49:59 [ 3] [ 6] [311000] +10:49:59 [ 4] [ 12] [000000000000] +10:49:59 [ 7] [ 10] [0320105745] +10:49:59 [ 11] [ 6] [177345] +10:49:59 [ 12] [ 6] [105745] +10:49:59 [ 13] [ 4] [0320] +10:49:59 [ 15] [ 4] [0320] +10:49:59 [ 18] [ 4] [6011] +10:49:59 [ 22] [ 3] [900] +10:49:59 [ 32] [ 6] [220699] +10:49:59 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:49:59 [ 37] [ 12] [507900010220] +10:49:59 [ 39] [ 2] [14] +10:49:59 [ 41] [ 8] [01000100] +10:49:59 [ 49] [ 3] [418] +10:49:59 ============================================================================ +10:49:59 Calculate Source COMM Id = 1 +10:49:59 ============================================================================ +10:49:59 + + +waiting on router queue for slot.... +10:50:01 ============================================================================ +10:50:01 Slot Id : <330> +10:50:01 Transaction Type : REQUEST +10:50:01 Received From : +10:50:01 ============================================================================ +10:50:01 FNo. Len. Field Value +10:50:01 ============================================================================ +10:50:01 [ 1] [ 4] [0800] +10:50:01 [ 7] [ 10] [0320034909] +10:50:01 [ 11] [ 6] [155945] +10:50:01 [ 70] [ 3] [301] +10:50:01 ============================================================================ +10:50:01 + + +waiting on router queue for slot.... +10:50:01 Sending to : +10:50:01 ============================================================================ +10:50:01 ============================================================================ +10:50:01 Slot Id : <330> +10:50:01 Transaction Type : RESPONSE +10:50:01 Received From : +10:50:01 ============================================================================ +10:50:01 FNo. Len. Field Value +10:50:01 ============================================================================ +10:50:01 [ 1] [ 4] [0810] +10:50:01 [ 7] [ 10] [0320034909] +10:50:01 [ 11] [ 6] [155945] +10:50:01 [ 39] [ 2] [00] +10:50:01 [ 70] [ 3] [301] +10:50:01 ============================================================================ +10:50:01 Calculate Source COMM Id = 2 +10:50:01 ============================================================================ +10:50:01 + + +waiting on router queue for slot.... +10:50:11 ============================================================================ +10:50:11 Slot Id : <356> +10:50:11 Transaction Type : REQUEST +10:50:11 Received From : +10:50:11 ============================================================================ +10:50:11 FNo. Len. Field Value +10:50:11 ============================================================================ +10:50:11 [ 1] [ 4] [0200] +10:50:11 [ 2] [ 16] [6688990600827701] +10:50:11 [ 3] [ 6] [011000] +10:50:11 [ 4] [ 12] [000100000000] +10:50:11 [ 7] [ 10] [0320105007] +10:50:11 [ 11] [ 6] [720283] +10:50:11 [ 12] [ 6] [105007] +10:50:11 [ 13] [ 4] [0320] +10:50:11 [ 15] [ 4] [0320] +10:50:11 [ 18] [ 4] [6011] +10:50:11 [ 22] [ 3] [900] +10:50:11 [ 25] [ 2] [02] +10:50:11 [ 28] [ 9] [D00002000] +10:50:11 [ 32] [ 6] [621354] +10:50:11 [ 35] [ 37] [6688990600827701=41010061770190800000] +10:50:11 [ 37] [ 12] [507904273142] +10:50:11 [ 41] [ 8] [03002600] +10:50:11 [ 42] [ 15] [NATIVE ] +10:50:11 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +10:50:11 [ 49] [ 3] [418] +10:50:11 [ 52] [ 16] [2CF3248DB6A017B1] +10:50:11 ============================================================================ +10:50:11 + + +waiting on router queue for slot.... +10:50:11 Sending to : +10:50:11 ============================================================================ +10:50:11 Sending to : +10:50:11 ============================================================================ +10:50:11 ============================================================================ +10:50:11 Slot Id : <356> +10:50:11 Transaction Type : REQUEST +10:50:11 Received From : +10:50:11 ============================================================================ +10:50:11 FNo. Len. Field Value +10:50:11 ============================================================================ +10:50:11 [ 1] [ 4] [0200] +10:50:11 [ 2] [ 16] [6688990600827701] +10:50:11 [ 3] [ 6] [011000] +10:50:11 [ 4] [ 12] [000100000000] +10:50:11 [ 7] [ 10] [0320105007] +10:50:11 [ 11] [ 6] [720283] +10:50:11 [ 12] [ 6] [105007] +10:50:11 [ 13] [ 4] [0320] +10:50:11 [ 15] [ 4] [0320] +10:50:11 [ 18] [ 4] [6011] +10:50:11 [ 22] [ 3] [900] +10:50:11 [ 25] [ 2] [02] +10:50:11 [ 28] [ 9] [D00002000] +10:50:11 [ 32] [ 6] [621354] +10:50:11 [ 35] [ 37] [6688990600827701=41010061770190800000] +10:50:11 [ 37] [ 12] [507904273142] +10:50:11 [ 41] [ 8] [03002600] +10:50:11 [ 42] [ 15] [NATIVE ] +10:50:11 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +10:50:11 [ 49] [ 3] [418] +10:50:11 [ 52] [ 16] [2CF3248DB6A017B1] +10:50:11 ============================================================================ +10:50:11 + + +waiting on router queue for slot.... +10:50:11 Sending to : +10:50:11 ============================================================================ +10:50:11 ============================================================================ +10:50:11 Slot Id : <356> +10:50:11 Transaction Type : REQUEST +10:50:11 Received From : +10:50:11 ============================================================================ +10:50:11 FNo. Len. Field Value +10:50:11 ============================================================================ +10:50:11 [ 1] [ 4] [0200] +10:50:11 [ 2] [ 16] [6688990600827701] +10:50:11 [ 3] [ 6] [011000] +10:50:11 [ 4] [ 12] [000100000000] +10:50:11 [ 7] [ 10] [0320105007] +10:50:11 [ 11] [ 6] [720283] +10:50:11 [ 12] [ 6] [105007] +10:50:11 [ 13] [ 4] [0320] +10:50:11 [ 15] [ 4] [0320] +10:50:11 [ 18] [ 4] [6011] +10:50:11 [ 22] [ 3] [900] +10:50:11 [ 25] [ 2] [02] +10:50:11 [ 28] [ 9] [D00002000] +10:50:11 [ 32] [ 6] [621354] +10:50:11 [ 35] [ 37] [6688990600827701=41010061770190800000] +10:50:11 [ 37] [ 12] [507904273142] +10:50:11 [ 41] [ 8] [03002600] +10:50:11 [ 42] [ 15] [NATIVE ] +10:50:11 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +10:50:11 [ 49] [ 3] [418] +10:50:11 [ 52] [ 16] [D859F8D8231D3E61] +10:50:11 ============================================================================ +10:50:11 + + +waiting on router queue for slot.... +10:50:11 Sending to : <4> +10:50:11 ============================================================================ +10:50:12 ============================================================================ +10:50:12 Slot Id : <365> +10:50:12 Transaction Type : REQUEST +10:50:12 Received From : +10:50:12 ============================================================================ +10:50:12 FNo. Len. Field Value +10:50:12 ============================================================================ +10:50:12 [ 1] [ 4] [0800] +10:50:12 [ 7] [ 10] [0320034920] +10:50:12 [ 11] [ 6] [155946] +10:50:12 [ 70] [ 3] [301] +10:50:12 ============================================================================ +10:50:12 + + +waiting on router queue for slot.... +10:50:12 Sending to : +10:50:12 ============================================================================ +10:50:12 ============================================================================ +10:50:12 Slot Id : <365> +10:50:12 Transaction Type : RESPONSE +10:50:12 Received From : +10:50:12 ============================================================================ +10:50:12 FNo. Len. Field Value +10:50:12 ============================================================================ +10:50:12 [ 1] [ 4] [0810] +10:50:12 [ 7] [ 10] [0320034920] +10:50:12 [ 11] [ 6] [155946] +10:50:12 [ 39] [ 2] [00] +10:50:12 [ 70] [ 3] [301] +10:50:12 ============================================================================ +10:50:12 Calculate Source COMM Id = 2 +10:50:12 ============================================================================ +10:50:12 + + +waiting on router queue for slot.... +10:50:13 ============================================================================ +10:50:13 Slot Id : <356> +10:50:13 Transaction Type : RESPONSE +10:50:13 Received From : +10:50:13 ============================================================================ +10:50:13 FNo. Len. Field Value +10:50:13 ============================================================================ +10:50:13 [ 1] [ 4] [0210] +10:50:13 [ 2] [ 16] [6688990600827701] +10:50:13 [ 3] [ 6] [011000] +10:50:13 [ 4] [ 12] [000100000000] +10:50:13 [ 11] [ 6] [720283] +10:50:13 [ 12] [ 6] [105007] +10:50:13 [ 15] [ 4] [0320] +10:50:13 [ 18] [ 4] [6011] +10:50:13 [ 32] [ 6] [621354] +10:50:13 [ 35] [ 37] [6688990600827701=41010061770190800000] +10:50:13 [ 37] [ 12] [507904273142] +10:50:13 [ 38] [ 6] [769218] +10:50:13 [ 39] [ 2] [00] +10:50:13 [ 41] [ 8] [03002600] +10:50:13 [ 49] [ 3] [418] +10:50:13 [ 54] [ 20] [1002418C000060825697] +10:50:13 ============================================================================ +10:50:13 Sending to : +10:50:13 ============================================================================ +10:50:13 + + +waiting on router queue for slot.... +10:50:14 ============================================================================ +10:50:14 Slot Id : <356> +10:50:14 Transaction Type : RESPONSE +10:50:14 Received From : +10:50:14 ============================================================================ +10:50:14 FNo. Len. Field Value +10:50:14 ============================================================================ +10:50:14 [ 1] [ 4] [0210] +10:50:14 [ 2] [ 16] [6688990600827701] +10:50:14 [ 3] [ 6] [011000] +10:50:14 [ 4] [ 12] [000100000000] +10:50:14 [ 11] [ 6] [720283] +10:50:14 [ 12] [ 6] [105007] +10:50:14 [ 15] [ 4] [0320] +10:50:14 [ 18] [ 4] [6011] +10:50:14 [ 32] [ 6] [621354] +10:50:14 [ 35] [ 37] [6688990600827701=41010061770190800000] +10:50:14 [ 37] [ 12] [507904273142] +10:50:14 [ 38] [ 6] [769218] +10:50:14 [ 39] [ 2] [00] +10:50:14 [ 41] [ 8] [03002600] +10:50:14 [ 49] [ 3] [418] +10:50:14 [ 54] [ 20] [1002418C000060825697] +10:50:14 ============================================================================ +10:50:14 Calculate Source COMM Id = 0 +10:50:14 ============================================================================ +10:50:14 + + +waiting on router queue for slot.... +10:50:23 ============================================================================ +10:50:23 Slot Id : <343> +10:50:23 Transaction Type : REQUEST +10:50:23 Received From : +10:50:23 ============================================================================ +10:50:23 FNo. Len. Field Value +10:50:23 ============================================================================ +10:50:23 [ 1] [ 4] [0800] +10:50:23 [ 7] [ 10] [0320034930] +10:50:23 [ 11] [ 6] [155947] +10:50:23 [ 70] [ 3] [301] +10:50:23 ============================================================================ +10:50:23 + + +waiting on router queue for slot.... +10:50:23 Sending to : +10:50:23 ============================================================================ +10:50:23 ============================================================================ +10:50:23 Slot Id : <343> +10:50:23 Transaction Type : RESPONSE +10:50:23 Received From : +10:50:23 ============================================================================ +10:50:23 FNo. Len. Field Value +10:50:23 ============================================================================ +10:50:23 [ 1] [ 4] [0810] +10:50:23 [ 7] [ 10] [0320034930] +10:50:23 [ 11] [ 6] [155947] +10:50:23 [ 39] [ 2] [00] +10:50:23 [ 70] [ 3] [301] +10:50:23 ============================================================================ +10:50:23 Calculate Source COMM Id = 2 +10:50:23 ============================================================================ +10:50:23 + + +waiting on router queue for slot.... +10:50:25 ============================================================================ +10:50:25 Slot Id : <313> +10:50:25 Transaction Type : REQUEST +10:50:25 Received From : +10:50:25 ============================================================================ +10:50:25 FNo. Len. Field Value +10:50:25 ============================================================================ +10:50:25 [ 1] [ 4] [0200] +10:50:25 [ 2] [ 16] [6688990602691204] +10:50:25 [ 3] [ 6] [010000] +10:50:25 [ 4] [ 12] [000200000000] +10:50:25 [ 7] [ 10] [0320034932] +10:50:25 [ 11] [ 6] [268237] +10:50:25 [ 12] [ 6] [104932] +10:50:25 [ 13] [ 4] [0320] +10:50:25 [ 14] [ 4] [4310] +10:50:25 [ 15] [ 4] [0320] +10:50:25 [ 18] [ 4] [6011] +10:50:25 [ 19] [ 3] [418] +10:50:25 [ 22] [ 3] [021] +10:50:25 [ 25] [ 2] [01] +10:50:25 [ 28] [ 9] [D00002000] +10:50:25 [ 32] [ 6] [180893] +10:50:25 [ 35] [ 37] [6688990602691204=43100061120481800000] +10:50:25 [ 37] [ 12] [507903268237] +10:50:25 [ 41] [ 8] [0369SLVL] +10:50:25 [ 42] [ 15] [999999 ] +10:50:25 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +10:50:25 [ 49] [ 3] [418] +10:50:25 [ 52] [ 16] [155C42B3938B5DBE] +10:50:25 ============================================================================ +10:50:25 + + +waiting on router queue for slot.... +10:50:25 Sending to : +10:50:25 ============================================================================ +10:50:25 Sending to : +10:50:25 ============================================================================ +10:50:25 ============================================================================ +10:50:25 Slot Id : <313> +10:50:25 Transaction Type : REQUEST +10:50:25 Received From : +10:50:25 ============================================================================ +10:50:25 FNo. Len. Field Value +10:50:25 ============================================================================ +10:50:25 [ 1] [ 4] [0200] +10:50:25 [ 2] [ 16] [6688990602691204] +10:50:25 [ 3] [ 6] [010000] +10:50:25 [ 4] [ 12] [000200000000] +10:50:25 [ 7] [ 10] [0320034932] +10:50:25 [ 11] [ 6] [268237] +10:50:25 [ 12] [ 6] [104932] +10:50:25 [ 13] [ 4] [0320] +10:50:25 [ 14] [ 4] [4310] +10:50:25 [ 15] [ 4] [0320] +10:50:25 [ 18] [ 4] [6011] +10:50:25 [ 19] [ 3] [418] +10:50:25 [ 22] [ 3] [021] +10:50:25 [ 25] [ 2] [01] +10:50:25 [ 28] [ 9] [D00002000] +10:50:25 [ 32] [ 6] [180893] +10:50:25 [ 35] [ 37] [6688990602691204=43100061120481800000] +10:50:25 [ 37] [ 12] [507903268237] +10:50:25 [ 41] [ 8] [0369SLVL] +10:50:25 [ 42] [ 15] [999999 ] +10:50:25 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +10:50:25 [ 49] [ 3] [418] +10:50:25 [ 52] [ 16] [155C42B3938B5DBE] +10:50:25 ============================================================================ +10:50:25 + + +waiting on router queue for slot.... +10:50:25 Sending to : +10:50:25 ============================================================================ +10:50:25 ============================================================================ +10:50:25 Slot Id : <313> +10:50:25 Transaction Type : REQUEST +10:50:25 Received From : +10:50:25 ============================================================================ +10:50:25 FNo. Len. Field Value +10:50:25 ============================================================================ +10:50:25 [ 1] [ 4] [0200] +10:50:25 [ 2] [ 16] [6688990602691204] +10:50:25 [ 3] [ 6] [010000] +10:50:25 [ 4] [ 12] [000200000000] +10:50:25 [ 7] [ 10] [0320034932] +10:50:25 [ 11] [ 6] [268237] +10:50:25 [ 12] [ 6] [104932] +10:50:25 [ 13] [ 4] [0320] +10:50:25 [ 14] [ 4] [4310] +10:50:25 [ 15] [ 4] [0320] +10:50:25 [ 18] [ 4] [6011] +10:50:25 [ 19] [ 3] [418] +10:50:25 [ 22] [ 3] [021] +10:50:25 [ 25] [ 2] [01] +10:50:25 [ 28] [ 9] [D00002000] +10:50:25 [ 32] [ 6] [180893] +10:50:25 [ 35] [ 37] [6688990602691204=43100061120481800000] +10:50:25 [ 37] [ 12] [507903268237] +10:50:25 [ 41] [ 8] [0369SLVL] +10:50:25 [ 42] [ 15] [999999 ] +10:50:25 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +10:50:25 [ 49] [ 3] [418] +10:50:25 [ 52] [ 16] [FC374F945705CE29] +10:50:25 ============================================================================ +10:50:25 + + +waiting on router queue for slot.... +10:50:25 Sending to : <0> +10:50:25 ============================================================================ +10:50:25 ============================================================================ +10:50:25 Slot Id : <313> +10:50:25 Transaction Type : RESPONSE +10:50:25 Received From : +10:50:25 ============================================================================ +10:50:25 FNo. Len. Field Value +10:50:25 ============================================================================ +10:50:25 [ 1] [ 4] [0210] +10:50:25 [ 2] [ 16] [6688990602691204] +10:50:25 [ 3] [ 6] [010000] +10:50:25 [ 4] [ 12] [000200000000] +10:50:25 [ 7] [ 10] [0320034932] +10:50:25 [ 11] [ 6] [268237] +10:50:25 [ 12] [ 6] [104932] +10:50:25 [ 13] [ 4] [0320] +10:50:25 [ 15] [ 4] [0320] +10:50:25 [ 18] [ 4] [6011] +10:50:25 [ 19] [ 3] [418] +10:50:25 [ 22] [ 3] [021] +10:50:25 [ 32] [ 6] [180893] +10:50:25 [ 35] [ 37] [6688990602691204=43100061120481800000] +10:50:25 [ 37] [ 12] [507903268237] +10:50:25 [ 39] [ 2] [61] +10:50:25 [ 41] [ 8] [0369SLVL] +10:50:25 [ 49] [ 3] [418] +10:50:25 ============================================================================ +10:50:25 Sending to : +10:50:25 ============================================================================ +10:50:25 + + +waiting on router queue for slot.... +10:50:27 ============================================================================ +10:50:27 Slot Id : <313> +10:50:27 Transaction Type : RESPONSE +10:50:27 Received From : +10:50:27 ============================================================================ +10:50:27 FNo. Len. Field Value +10:50:27 ============================================================================ +10:50:27 [ 1] [ 4] [0210] +10:50:27 [ 2] [ 16] [6688990602691204] +10:50:27 [ 3] [ 6] [010000] +10:50:27 [ 4] [ 12] [000200000000] +10:50:27 [ 7] [ 10] [0320034932] +10:50:27 [ 11] [ 6] [268237] +10:50:27 [ 12] [ 6] [104932] +10:50:27 [ 13] [ 4] [0320] +10:50:27 [ 15] [ 4] [0320] +10:50:27 [ 18] [ 4] [6011] +10:50:27 [ 19] [ 3] [418] +10:50:27 [ 22] [ 3] [021] +10:50:27 [ 32] [ 6] [180893] +10:50:27 [ 35] [ 37] [6688990602691204=43100061120481800000] +10:50:27 [ 37] [ 12] [507903268237] +10:50:27 [ 39] [ 2] [61] +10:50:27 [ 41] [ 8] [0369SLVL] +10:50:27 [ 49] [ 3] [418] +10:50:27 ============================================================================ +10:50:27 Calculate Source COMM Id = 2 +10:50:27 ============================================================================ +10:50:27 + + +waiting on router queue for slot.... +10:50:36 ============================================================================ +10:50:36 Slot Id : <366> +10:50:36 Transaction Type : REQUEST +10:50:36 Received From : +10:50:36 ============================================================================ +10:50:36 FNo. Len. Field Value +10:50:36 ============================================================================ +10:50:36 [ 1] [ 4] [0800] +10:50:36 [ 2] [ 5] [02531] +10:50:36 [ 3] [ 6] [579108] +10:50:36 [ 7] [ 10] [0320035036] +10:50:36 [ 11] [ 6] [807041] +10:50:36 [ 15] [ 10] [0320035036] +10:50:36 [ 37] [ 11] [57910807041] +10:50:36 [ 70] [ 3] [001] +10:50:36 ============================================================================ +10:50:36 + + +waiting on router queue for slot.... +10:50:36 ============================================================================ +10:50:36 Slot Id : <366> +10:50:36 Transaction Type : RESPONSE +10:50:36 Received From : +10:50:36 ============================================================================ +10:50:36 FNo. Len. Field Value +10:50:36 ============================================================================ +10:50:36 [ 1] [ 4] [0810] +10:50:36 [ 7] [ 10] [0320035036] +10:50:36 [ 11] [ 6] [807041] +10:50:36 [ 15] [ 4] [0320] +10:50:36 [ 37] [ 12] [57910807041] +10:50:36 [ 39] [ 2] [00] +10:50:36 [ 70] [ 3] [001] +10:50:36 ============================================================================ +10:50:36 Sending to : +10:50:36 ============================================================================ +10:50:36 + + +waiting on router queue for slot.... +10:50:40 ============================================================================ +10:50:40 Slot Id : <371> +10:50:40 Transaction Type : REQUEST +10:50:40 Received From : +10:50:40 ============================================================================ +10:50:40 FNo. Len. Field Value +10:50:40 ============================================================================ +10:50:40 [ 1] [ 4] [0800] +10:50:40 [ 7] [ 10] [0320034948] +10:50:40 [ 11] [ 6] [155948] +10:50:40 [ 70] [ 3] [301] +10:50:40 ============================================================================ +10:50:40 + + +waiting on router queue for slot.... +10:50:40 Sending to : +10:50:40 ============================================================================ +10:50:40 ============================================================================ +10:50:40 Slot Id : <371> +10:50:40 Transaction Type : RESPONSE +10:50:40 Received From : +10:50:40 ============================================================================ +10:50:40 FNo. Len. Field Value +10:50:40 ============================================================================ +10:50:40 [ 1] [ 4] [0810] +10:50:40 [ 7] [ 10] [0320034948] +10:50:40 [ 11] [ 6] [155948] +10:50:40 [ 39] [ 2] [00] +10:50:40 [ 70] [ 3] [301] +10:50:40 ============================================================================ +10:50:40 Calculate Source COMM Id = 2 +10:50:40 ============================================================================ +10:50:40 + + +waiting on router queue for slot.... +10:50:53 ============================================================================ +10:50:53 Slot Id : <340> +10:50:53 Transaction Type : REQUEST +10:50:53 Received From : +10:50:53 ============================================================================ +10:50:53 FNo. Len. Field Value +10:50:53 ============================================================================ +10:50:53 [ 1] [ 4] [0200] +10:50:53 [ 2] [ 16] [6213548000353613] +10:50:53 [ 3] [ 6] [011000] +10:50:53 [ 4] [ 12] [000010000000] +10:50:53 [ 7] [ 10] [0320105114] +10:50:53 [ 11] [ 6] [204143] +10:50:53 [ 12] [ 6] [105141] +10:50:53 [ 13] [ 4] [0320] +10:50:53 [ 14] [ 4] [1804] +10:50:53 [ 15] [ 4] [0320] +10:50:53 [ 18] [ 4] [6011] +10:50:53 [ 19] [ 3] [418] +10:50:53 [ 22] [ 3] [021] +10:50:53 [ 25] [ 2] [01] +10:50:53 [ 28] [ 9] [D00002000] +10:50:53 [ 32] [ 6] [198901] +10:50:53 [ 35] [ 32] [6213548000353613=180412015361035] +10:50:53 [ 37] [ 12] [507910204143] +10:50:53 [ 41] [ 8] [01529009] +10:50:53 [ 42] [ 15] [000000041529009] +10:50:53 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +10:50:53 [ 49] [ 3] [418] +10:50:53 [ 52] [ 16] [026620D6C57165F9] +10:50:53 ============================================================================ +10:50:53 + + +waiting on router queue for slot.... +10:50:53 Sending to : +10:50:53 ============================================================================ +10:50:53 Sending to : +10:50:53 ============================================================================ +10:50:53 ============================================================================ +10:50:53 Slot Id : <340> +10:50:53 Transaction Type : REQUEST +10:50:53 Received From : +10:50:53 ============================================================================ +10:50:53 FNo. Len. Field Value +10:50:53 ============================================================================ +10:50:53 [ 1] [ 4] [0200] +10:50:53 [ 2] [ 16] [6213548000353613] +10:50:53 [ 3] [ 6] [011000] +10:50:53 [ 4] [ 12] [000010000000] +10:50:53 [ 7] [ 10] [0320105114] +10:50:53 [ 11] [ 6] [204143] +10:50:53 [ 12] [ 6] [105141] +10:50:53 [ 13] [ 4] [0320] +10:50:53 [ 14] [ 4] [1804] +10:50:53 [ 15] [ 4] [0320] +10:50:53 [ 18] [ 4] [6011] +10:50:53 [ 19] [ 3] [418] +10:50:53 [ 22] [ 3] [021] +10:50:53 [ 25] [ 2] [01] +10:50:53 [ 28] [ 9] [D00002000] +10:50:53 [ 32] [ 6] [198901] +10:50:53 [ 35] [ 32] [6213548000353613=180412015361035] +10:50:53 [ 37] [ 12] [507910204143] +10:50:53 [ 41] [ 8] [01529009] +10:50:53 [ 42] [ 15] [000000041529009] +10:50:53 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +10:50:53 [ 49] [ 3] [418] +10:50:53 [ 52] [ 16] [026620D6C57165F9] +10:50:53 ============================================================================ +10:50:53 + + +waiting on router queue for slot.... +10:50:53 Sending to : +10:50:53 ============================================================================ +10:50:53 ============================================================================ +10:50:53 Slot Id : <340> +10:50:53 Transaction Type : REQUEST +10:50:53 Received From : +10:50:53 ============================================================================ +10:50:53 FNo. Len. Field Value +10:50:53 ============================================================================ +10:50:53 [ 1] [ 4] [0200] +10:50:53 [ 2] [ 16] [6213548000353613] +10:50:53 [ 3] [ 6] [011000] +10:50:53 [ 4] [ 12] [000010000000] +10:50:53 [ 7] [ 10] [0320105114] +10:50:53 [ 11] [ 6] [204143] +10:50:53 [ 12] [ 6] [105141] +10:50:53 [ 13] [ 4] [0320] +10:50:53 [ 14] [ 4] [1804] +10:50:53 [ 15] [ 4] [0320] +10:50:53 [ 18] [ 4] [6011] +10:50:53 [ 19] [ 3] [418] +10:50:53 [ 22] [ 3] [021] +10:50:53 [ 25] [ 2] [01] +10:50:53 [ 28] [ 9] [D00002000] +10:50:53 [ 32] [ 6] [198901] +10:50:53 [ 35] [ 32] [6213548000353613=180412015361035] +10:50:53 [ 37] [ 12] [507910204143] +10:50:53 [ 41] [ 8] [01529009] +10:50:53 [ 42] [ 15] [000000041529009] +10:50:53 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +10:50:53 [ 49] [ 3] [418] +10:50:53 [ 52] [ 16] [8A2C2A830873D594] +10:50:53 ============================================================================ +10:50:53 + + +waiting on router queue for slot.... +10:50:53 Sending to : <0> +10:50:53 ============================================================================ +10:50:54 ============================================================================ +10:50:54 Slot Id : <340> +10:50:54 Transaction Type : RESPONSE +10:50:54 Received From : +10:50:54 ============================================================================ +10:50:54 FNo. Len. Field Value +10:50:54 ============================================================================ +10:50:54 [ 1] [ 4] [0210] +10:50:54 [ 2] [ 16] [6213548000353613] +10:50:54 [ 3] [ 6] [011000] +10:50:54 [ 4] [ 12] [000010000000] +10:50:54 [ 7] [ 10] [0320105114] +10:50:54 [ 11] [ 6] [204143] +10:50:54 [ 12] [ 6] [105141] +10:50:54 [ 13] [ 4] [0320] +10:50:54 [ 15] [ 4] [0320] +10:50:54 [ 18] [ 4] [6011] +10:50:54 [ 19] [ 3] [418] +10:50:54 [ 32] [ 6] [198901] +10:50:54 [ 35] [ 32] [6213548000353613=180412015361035] +10:50:54 [ 37] [ 12] [507910204143] +10:50:54 [ 38] [ 6] [589253] +10:50:54 [ 39] [ 2] [00] +10:50:54 [ 41] [ 8] [01529009] +10:50:54 [ 49] [ 3] [418] +10:50:54 [ 54] [ 40] [1001418C0000456347251002418C000045634725] +10:50:54 ============================================================================ +10:50:54 Sending to : +10:50:54 ============================================================================ +10:50:54 + + +waiting on router queue for slot.... +10:50:54 ============================================================================ +10:50:54 Slot Id : <378> +10:50:54 Transaction Type : REQUEST +10:50:54 Received From : +10:50:54 ============================================================================ +10:50:54 FNo. Len. Field Value +10:50:54 ============================================================================ +10:50:54 [ 1] [ 4] [0800] +10:50:54 [ 7] [ 10] [0320035002] +10:50:54 [ 11] [ 6] [155949] +10:50:54 [ 70] [ 3] [301] +10:50:54 ============================================================================ +10:50:54 + + +waiting on router queue for slot.... +10:50:54 Sending to : +10:50:54 ============================================================================ +10:50:54 ============================================================================ +10:50:54 Slot Id : <378> +10:50:54 Transaction Type : RESPONSE +10:50:54 Received From : +10:50:54 ============================================================================ +10:50:54 FNo. Len. Field Value +10:50:54 ============================================================================ +10:50:54 [ 1] [ 4] [0810] +10:50:54 [ 7] [ 10] [0320035002] +10:50:54 [ 11] [ 6] [155949] +10:50:54 [ 39] [ 2] [00] +10:50:54 [ 70] [ 3] [301] +10:50:54 ============================================================================ +10:50:54 Calculate Source COMM Id = 2 +10:50:54 ============================================================================ +10:50:54 + + +waiting on router queue for slot.... +10:50:55 ============================================================================ +10:50:55 Slot Id : <340> +10:50:55 Transaction Type : RESPONSE +10:50:55 Received From : +10:50:55 ============================================================================ +10:50:55 FNo. Len. Field Value +10:50:55 ============================================================================ +10:50:55 [ 1] [ 4] [0210] +10:50:55 [ 2] [ 16] [6213548000353613] +10:50:55 [ 3] [ 6] [011000] +10:50:55 [ 4] [ 12] [000010000000] +10:50:55 [ 7] [ 10] [0320105114] +10:50:55 [ 11] [ 6] [204143] +10:50:55 [ 12] [ 6] [105141] +10:50:55 [ 13] [ 4] [0320] +10:50:55 [ 15] [ 4] [0320] +10:50:55 [ 18] [ 4] [6011] +10:50:55 [ 19] [ 3] [418] +10:50:55 [ 32] [ 6] [198901] +10:50:55 [ 35] [ 32] [6213548000353613=180412015361035] +10:50:55 [ 37] [ 12] [507910204143] +10:50:55 [ 38] [ 6] [589253] +10:50:55 [ 39] [ 2] [00] +10:50:55 [ 41] [ 8] [01529009] +10:50:55 [ 49] [ 3] [418] +10:50:55 [ 54] [ 40] [1001418C0000456347251002418C000045634725] +10:50:55 ============================================================================ +10:50:55 Calculate Source COMM Id = 5 +10:50:55 ============================================================================ +10:50:55 + + +waiting on router queue for slot.... +10:51:05 ============================================================================ +10:51:05 Slot Id : <324> +10:51:05 Transaction Type : REQUEST +10:51:05 Received From : +10:51:05 ============================================================================ +10:51:05 FNo. Len. Field Value +10:51:05 ============================================================================ +10:51:05 [ 1] [ 4] [0200] +10:51:05 [ 2] [ 16] [6688990050090859] +10:51:05 [ 3] [ 6] [010000] +10:51:05 [ 4] [ 12] [000005000000] +10:51:05 [ 7] [ 10] [0320105852] +10:51:05 [ 11] [ 6] [177347] +10:51:05 [ 12] [ 6] [105852] +10:51:05 [ 13] [ 4] [0320] +10:51:05 [ 14] [ 4] [9806] +10:51:05 [ 15] [ 4] [0320] +10:51:05 [ 18] [ 4] [6011] +10:51:05 [ 22] [ 3] [900] +10:51:05 [ 25] [ 2] [02] +10:51:05 [ 28] [ 9] [D00002000] +10:51:05 [ 32] [ 6] [220699] +10:51:05 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:51:05 [ 37] [ 12] [507900010222] +10:51:05 [ 41] [ 8] [01000100] +10:51:05 [ 42] [ 15] [APTRA ] +10:51:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:51:05 [ 49] [ 3] [418] +10:51:05 [ 52] [ 16] [3E2473A978CC8D82] +10:51:05 ============================================================================ +10:51:05 + + +waiting on router queue for slot.... +10:51:05 Sending to : +10:51:05 ============================================================================ +10:51:05 Sending to : +10:51:05 ============================================================================ +10:51:05 ============================================================================ +10:51:05 Slot Id : <324> +10:51:05 Transaction Type : REQUEST +10:51:05 Received From : +10:51:05 ============================================================================ +10:51:05 FNo. Len. Field Value +10:51:05 ============================================================================ +10:51:05 [ 1] [ 4] [0200] +10:51:05 [ 2] [ 16] [6688990050090859] +10:51:05 [ 3] [ 6] [010000] +10:51:05 [ 4] [ 12] [000005000000] +10:51:05 [ 7] [ 10] [0320105852] +10:51:05 [ 11] [ 6] [177347] +10:51:05 [ 12] [ 6] [105852] +10:51:05 [ 13] [ 4] [0320] +10:51:05 [ 14] [ 4] [9806] +10:51:05 [ 15] [ 4] [0320] +10:51:05 [ 18] [ 4] [6011] +10:51:05 [ 22] [ 3] [900] +10:51:05 [ 25] [ 2] [02] +10:51:05 [ 28] [ 9] [D00002000] +10:51:05 [ 32] [ 6] [220699] +10:51:05 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:51:05 [ 37] [ 12] [507900010222] +10:51:05 [ 41] [ 8] [01000100] +10:51:05 [ 42] [ 15] [APTRA ] +10:51:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:51:05 [ 49] [ 3] [418] +10:51:05 [ 52] [ 16] [3E2473A978CC8D82] +10:51:05 ============================================================================ +10:51:05 + + +waiting on router queue for slot.... +10:51:05 Sending to : +10:51:05 ============================================================================ +10:51:05 ============================================================================ +10:51:05 Slot Id : <324> +10:51:05 Transaction Type : REQUEST +10:51:05 Received From : +10:51:05 ============================================================================ +10:51:05 FNo. Len. Field Value +10:51:05 ============================================================================ +10:51:05 [ 1] [ 4] [0200] +10:51:05 [ 2] [ 16] [6688990050090859] +10:51:05 [ 3] [ 6] [010000] +10:51:05 [ 4] [ 12] [000005000000] +10:51:05 [ 7] [ 10] [0320105852] +10:51:05 [ 11] [ 6] [177347] +10:51:05 [ 12] [ 6] [105852] +10:51:05 [ 13] [ 4] [0320] +10:51:05 [ 14] [ 4] [9806] +10:51:05 [ 15] [ 4] [0320] +10:51:05 [ 18] [ 4] [6011] +10:51:05 [ 22] [ 3] [900] +10:51:05 [ 25] [ 2] [02] +10:51:05 [ 28] [ 9] [D00002000] +10:51:05 [ 32] [ 6] [220699] +10:51:05 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:51:05 [ 37] [ 12] [507900010222] +10:51:05 [ 41] [ 8] [01000100] +10:51:05 [ 42] [ 15] [APTRA ] +10:51:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:51:05 [ 49] [ 3] [418] +10:51:05 [ 52] [ 16] [37C9DC8CE74C55DD] +10:51:05 ============================================================================ +10:51:05 + + +waiting on router queue for slot.... +10:51:05 Sending to : <0> +10:51:05 ============================================================================ +10:51:05 ============================================================================ +10:51:05 Slot Id : <324> +10:51:05 Transaction Type : RESPONSE +10:51:05 Received From : +10:51:05 ============================================================================ +10:51:05 FNo. Len. Field Value +10:51:05 ============================================================================ +10:51:05 [ 1] [ 4] [0210] +10:51:05 [ 2] [ 16] [6688990050090859] +10:51:05 [ 3] [ 6] [010000] +10:51:05 [ 4] [ 12] [000005000000] +10:51:05 [ 7] [ 10] [0320105852] +10:51:05 [ 11] [ 6] [177347] +10:51:05 [ 12] [ 6] [105852] +10:51:05 [ 13] [ 4] [0320] +10:51:05 [ 15] [ 4] [0320] +10:51:05 [ 18] [ 4] [6011] +10:51:05 [ 22] [ 3] [900] +10:51:05 [ 32] [ 6] [220699] +10:51:05 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:51:05 [ 37] [ 12] [507900010222] +10:51:05 [ 39] [ 2] [14] +10:51:05 [ 41] [ 8] [01000100] +10:51:05 [ 49] [ 3] [418] +10:51:05 ============================================================================ +10:51:05 Sending to : +10:51:05 ============================================================================ +10:51:05 + + +waiting on router queue for slot.... +10:51:07 ============================================================================ +10:51:07 Slot Id : <324> +10:51:07 Transaction Type : RESPONSE +10:51:07 Received From : +10:51:07 ============================================================================ +10:51:07 FNo. Len. Field Value +10:51:07 ============================================================================ +10:51:07 [ 1] [ 4] [0210] +10:51:07 [ 2] [ 16] [6688990050090859] +10:51:07 [ 3] [ 6] [010000] +10:51:07 [ 4] [ 12] [000005000000] +10:51:07 [ 7] [ 10] [0320105852] +10:51:07 [ 11] [ 6] [177347] +10:51:07 [ 12] [ 6] [105852] +10:51:07 [ 13] [ 4] [0320] +10:51:07 [ 15] [ 4] [0320] +10:51:07 [ 18] [ 4] [6011] +10:51:07 [ 22] [ 3] [900] +10:51:07 [ 32] [ 6] [220699] +10:51:07 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:51:07 [ 37] [ 12] [507900010222] +10:51:07 [ 39] [ 2] [14] +10:51:07 [ 41] [ 8] [01000100] +10:51:07 [ 49] [ 3] [418] +10:51:07 ============================================================================ +10:51:07 Calculate Source COMM Id = 1 +10:51:07 ============================================================================ +10:51:07 + + +waiting on router queue for slot.... +10:51:09 ============================================================================ +10:51:09 Slot Id : <373> +10:51:09 Transaction Type : REQUEST +10:51:09 Received From : +10:51:09 ============================================================================ +10:51:09 FNo. Len. Field Value +10:51:09 ============================================================================ +10:51:09 [ 1] [ 4] [0800] +10:51:09 [ 7] [ 10] [0320035017] +10:51:09 [ 11] [ 6] [155950] +10:51:09 [ 70] [ 3] [301] +10:51:09 ============================================================================ +10:51:09 + + +waiting on router queue for slot.... +10:51:09 Sending to : +10:51:09 ============================================================================ +10:51:09 ============================================================================ +10:51:09 Slot Id : <373> +10:51:09 Transaction Type : RESPONSE +10:51:09 Received From : +10:51:09 ============================================================================ +10:51:09 FNo. Len. Field Value +10:51:09 ============================================================================ +10:51:09 [ 1] [ 4] [0810] +10:51:09 [ 7] [ 10] [0320035017] +10:51:09 [ 11] [ 6] [155950] +10:51:09 [ 39] [ 2] [00] +10:51:09 [ 70] [ 3] [301] +10:51:09 ============================================================================ +10:51:09 Calculate Source COMM Id = 2 +10:51:09 ============================================================================ +10:51:09 + + +waiting on router queue for slot.... +10:51:14 ============================================================================ +10:51:14 Slot Id : <382> +10:51:14 Transaction Type : REQUEST +10:51:14 Received From : +10:51:14 ============================================================================ +10:51:14 FNo. Len. Field Value +10:51:14 ============================================================================ +10:51:14 [ 1] [ 4] [0200] +10:51:14 [ 2] [ 16] [6688990602691204] +10:51:14 [ 3] [ 6] [010000] +10:51:14 [ 4] [ 12] [000100000000] +10:51:14 [ 7] [ 10] [0320035021] +10:51:14 [ 11] [ 6] [268243] +10:51:14 [ 12] [ 6] [105021] +10:51:14 [ 13] [ 4] [0320] +10:51:14 [ 14] [ 4] [4310] +10:51:14 [ 15] [ 4] [0320] +10:51:14 [ 18] [ 4] [6011] +10:51:14 [ 19] [ 3] [418] +10:51:14 [ 22] [ 3] [021] +10:51:14 [ 25] [ 2] [01] +10:51:14 [ 28] [ 9] [D00002000] +10:51:14 [ 32] [ 6] [180893] +10:51:14 [ 35] [ 37] [6688990602691204=43100061120481800000] +10:51:14 [ 37] [ 12] [507903268243] +10:51:14 [ 41] [ 8] [0369SLVL] +10:51:14 [ 42] [ 15] [999999 ] +10:51:14 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +10:51:14 [ 49] [ 3] [418] +10:51:14 [ 52] [ 16] [155C42B3938B5DBE] +10:51:14 ============================================================================ +10:51:14 + + +waiting on router queue for slot.... +10:51:14 Sending to : +10:51:14 ============================================================================ +10:51:14 Sending to : +10:51:14 ============================================================================ +10:51:14 ============================================================================ +10:51:14 Slot Id : <382> +10:51:14 Transaction Type : REQUEST +10:51:14 Received From : +10:51:14 ============================================================================ +10:51:14 FNo. Len. Field Value +10:51:14 ============================================================================ +10:51:14 [ 1] [ 4] [0200] +10:51:14 [ 2] [ 16] [6688990602691204] +10:51:14 [ 3] [ 6] [010000] +10:51:14 [ 4] [ 12] [000100000000] +10:51:14 [ 7] [ 10] [0320035021] +10:51:14 [ 11] [ 6] [268243] +10:51:14 [ 12] [ 6] [105021] +10:51:14 [ 13] [ 4] [0320] +10:51:14 [ 14] [ 4] [4310] +10:51:14 [ 15] [ 4] [0320] +10:51:14 [ 18] [ 4] [6011] +10:51:14 [ 19] [ 3] [418] +10:51:14 [ 22] [ 3] [021] +10:51:14 [ 25] [ 2] [01] +10:51:14 [ 28] [ 9] [D00002000] +10:51:14 [ 32] [ 6] [180893] +10:51:14 [ 35] [ 37] [6688990602691204=43100061120481800000] +10:51:14 [ 37] [ 12] [507903268243] +10:51:14 [ 41] [ 8] [0369SLVL] +10:51:14 [ 42] [ 15] [999999 ] +10:51:14 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +10:51:14 [ 49] [ 3] [418] +10:51:14 [ 52] [ 16] [155C42B3938B5DBE] +10:51:14 ============================================================================ +10:51:14 + + +waiting on router queue for slot.... +10:51:14 Sending to : +10:51:14 ============================================================================ +10:51:14 ============================================================================ +10:51:14 Slot Id : <382> +10:51:14 Transaction Type : REQUEST +10:51:14 Received From : +10:51:14 ============================================================================ +10:51:14 FNo. Len. Field Value +10:51:14 ============================================================================ +10:51:14 [ 1] [ 4] [0200] +10:51:14 [ 2] [ 16] [6688990602691204] +10:51:14 [ 3] [ 6] [010000] +10:51:14 [ 4] [ 12] [000100000000] +10:51:14 [ 7] [ 10] [0320035021] +10:51:14 [ 11] [ 6] [268243] +10:51:14 [ 12] [ 6] [105021] +10:51:14 [ 13] [ 4] [0320] +10:51:14 [ 14] [ 4] [4310] +10:51:14 [ 15] [ 4] [0320] +10:51:14 [ 18] [ 4] [6011] +10:51:14 [ 19] [ 3] [418] +10:51:14 [ 22] [ 3] [021] +10:51:14 [ 25] [ 2] [01] +10:51:14 [ 28] [ 9] [D00002000] +10:51:14 [ 32] [ 6] [180893] +10:51:14 [ 35] [ 37] [6688990602691204=43100061120481800000] +10:51:14 [ 37] [ 12] [507903268243] +10:51:14 [ 41] [ 8] [0369SLVL] +10:51:14 [ 42] [ 15] [999999 ] +10:51:14 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +10:51:14 [ 49] [ 3] [418] +10:51:14 [ 52] [ 16] [FC374F945705CE29] +10:51:14 ============================================================================ +10:51:14 + + +waiting on router queue for slot.... +10:51:14 Sending to : <0> +10:51:14 ============================================================================ +10:51:14 ============================================================================ +10:51:14 Slot Id : <382> +10:51:14 Transaction Type : RESPONSE +10:51:14 Received From : +10:51:14 ============================================================================ +10:51:14 FNo. Len. Field Value +10:51:14 ============================================================================ +10:51:14 [ 1] [ 4] [0210] +10:51:14 [ 2] [ 16] [6688990602691204] +10:51:14 [ 3] [ 6] [010000] +10:51:14 [ 4] [ 12] [000100000000] +10:51:14 [ 7] [ 10] [0320035021] +10:51:14 [ 11] [ 6] [268243] +10:51:14 [ 12] [ 6] [105021] +10:51:14 [ 13] [ 4] [0320] +10:51:14 [ 15] [ 4] [0320] +10:51:14 [ 18] [ 4] [6011] +10:51:14 [ 19] [ 3] [418] +10:51:14 [ 22] [ 3] [021] +10:51:14 [ 32] [ 6] [180893] +10:51:14 [ 35] [ 37] [6688990602691204=43100061120481800000] +10:51:14 [ 37] [ 12] [507903268243] +10:51:14 [ 39] [ 2] [14] +10:51:14 [ 41] [ 8] [0369SLVL] +10:51:14 [ 49] [ 3] [418] +10:51:14 ============================================================================ +10:51:14 Sending to : +10:51:14 ============================================================================ +10:51:14 + + +waiting on router queue for slot.... +10:51:16 ============================================================================ +10:51:16 Slot Id : <382> +10:51:16 Transaction Type : RESPONSE +10:51:16 Received From : +10:51:16 ============================================================================ +10:51:16 FNo. Len. Field Value +10:51:16 ============================================================================ +10:51:16 [ 1] [ 4] [0210] +10:51:16 [ 2] [ 16] [6688990602691204] +10:51:16 [ 3] [ 6] [010000] +10:51:16 [ 4] [ 12] [000100000000] +10:51:16 [ 7] [ 10] [0320035021] +10:51:16 [ 11] [ 6] [268243] +10:51:16 [ 12] [ 6] [105021] +10:51:16 [ 13] [ 4] [0320] +10:51:16 [ 15] [ 4] [0320] +10:51:16 [ 18] [ 4] [6011] +10:51:16 [ 19] [ 3] [418] +10:51:16 [ 22] [ 3] [021] +10:51:16 [ 32] [ 6] [180893] +10:51:16 [ 35] [ 37] [6688990602691204=43100061120481800000] +10:51:16 [ 37] [ 12] [507903268243] +10:51:16 [ 39] [ 2] [14] +10:51:16 [ 41] [ 8] [0369SLVL] +10:51:16 [ 49] [ 3] [418] +10:51:16 ============================================================================ +10:51:16 Calculate Source COMM Id = 2 +10:51:16 ============================================================================ +10:51:16 + + +waiting on router queue for slot.... +10:51:21 ============================================================================ +10:51:21 Slot Id : <355> +10:51:21 Transaction Type : REQUEST +10:51:21 Received From : +10:51:21 ============================================================================ +10:51:21 FNo. Len. Field Value +10:51:21 ============================================================================ +10:51:21 [ 1] [ 4] [0800] +10:51:21 [ 7] [ 10] [0320034912] +10:51:21 [ 11] [ 6] [044238] +10:51:21 [ 37] [ 12] [57910044238] +10:51:21 [ 70] [ 3] [301] +10:51:21 ============================================================================ +10:51:21 + + +waiting on router queue for slot.... +10:51:21 Sending to : +10:51:21 ============================================================================ +10:51:21 ============================================================================ +10:51:21 Slot Id : <355> +10:51:21 Transaction Type : RESPONSE +10:51:21 Received From : +10:51:21 ============================================================================ +10:51:21 FNo. Len. Field Value +10:51:21 ============================================================================ +10:51:21 [ 1] [ 4] [0810] +10:51:21 [ 7] [ 10] [0320034912] +10:51:21 [ 11] [ 6] [044238] +10:51:21 [ 37] [ 12] [579100442380] +10:51:21 [ 39] [ 2] [00] +10:51:21 [ 70] [ 3] [810] +10:51:21 ============================================================================ +10:51:21 Calculate Source COMM Id = 4 +10:51:21 ============================================================================ +10:51:21 + + +waiting on router queue for slot.... +10:51:22 ============================================================================ +10:51:22 Slot Id : <353> +10:51:22 Transaction Type : REQUEST +10:51:22 Received From : +10:51:22 ============================================================================ +10:51:22 FNo. Len. Field Value +10:51:22 ============================================================================ +10:51:22 [ 1] [ 4] [0200] +10:51:22 [ 2] [ 16] [6213548000353613] +10:51:22 [ 3] [ 6] [301000] +10:51:22 [ 4] [ 12] [000000000000] +10:51:22 [ 7] [ 10] [0320105143] +10:51:22 [ 11] [ 6] [204152] +10:51:22 [ 12] [ 6] [105210] +10:51:22 [ 13] [ 4] [0320] +10:51:22 [ 14] [ 4] [1804] +10:51:22 [ 15] [ 4] [0320] +10:51:22 [ 18] [ 4] [6011] +10:51:22 [ 19] [ 3] [418] +10:51:22 [ 22] [ 3] [021] +10:51:22 [ 25] [ 2] [01] +10:51:22 [ 28] [ 9] [D00000000] +10:51:22 [ 32] [ 6] [198901] +10:51:22 [ 35] [ 32] [6213548000353613=180412015361035] +10:51:22 [ 37] [ 12] [507910204152] +10:51:22 [ 41] [ 8] [01529009] +10:51:22 [ 42] [ 15] [000000041529009] +10:51:22 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +10:51:22 [ 49] [ 3] [418] +10:51:22 [ 52] [ 16] [026620D6C57165F9] +10:51:22 ============================================================================ +10:51:22 + + +waiting on router queue for slot.... +10:51:22 Sending to : +10:51:22 ============================================================================ +10:51:22 Sending to : +10:51:22 ============================================================================ +10:51:22 ============================================================================ +10:51:22 Slot Id : <353> +10:51:22 Transaction Type : REQUEST +10:51:22 Received From : +10:51:22 ============================================================================ +10:51:22 FNo. Len. Field Value +10:51:22 ============================================================================ +10:51:22 [ 1] [ 4] [0200] +10:51:22 [ 2] [ 16] [6213548000353613] +10:51:22 [ 3] [ 6] [301000] +10:51:22 [ 4] [ 12] [000000000000] +10:51:22 [ 7] [ 10] [0320105143] +10:51:22 [ 11] [ 6] [204152] +10:51:22 [ 12] [ 6] [105210] +10:51:22 [ 13] [ 4] [0320] +10:51:22 [ 14] [ 4] [1804] +10:51:22 [ 15] [ 4] [0320] +10:51:22 [ 18] [ 4] [6011] +10:51:22 [ 19] [ 3] [418] +10:51:22 [ 22] [ 3] [021] +10:51:22 [ 25] [ 2] [01] +10:51:22 [ 28] [ 9] [D00000000] +10:51:22 [ 32] [ 6] [198901] +10:51:22 [ 35] [ 32] [6213548000353613=180412015361035] +10:51:22 [ 37] [ 12] [507910204152] +10:51:22 [ 41] [ 8] [01529009] +10:51:22 [ 42] [ 15] [000000041529009] +10:51:22 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +10:51:22 [ 49] [ 3] [418] +10:51:22 [ 52] [ 16] [026620D6C57165F9] +10:51:22 ============================================================================ +10:51:22 + + +waiting on router queue for slot.... +10:51:22 Sending to : +10:51:22 ============================================================================ +10:51:22 ============================================================================ +10:51:22 Slot Id : <353> +10:51:22 Transaction Type : REQUEST +10:51:22 Received From : +10:51:22 ============================================================================ +10:51:22 FNo. Len. Field Value +10:51:22 ============================================================================ +10:51:22 [ 1] [ 4] [0200] +10:51:22 [ 2] [ 16] [6213548000353613] +10:51:22 [ 3] [ 6] [301000] +10:51:22 [ 4] [ 12] [000000000000] +10:51:22 [ 7] [ 10] [0320105143] +10:51:22 [ 11] [ 6] [204152] +10:51:22 [ 12] [ 6] [105210] +10:51:22 [ 13] [ 4] [0320] +10:51:22 [ 14] [ 4] [1804] +10:51:22 [ 15] [ 4] [0320] +10:51:22 [ 18] [ 4] [6011] +10:51:22 [ 19] [ 3] [418] +10:51:22 [ 22] [ 3] [021] +10:51:22 [ 25] [ 2] [01] +10:51:22 [ 28] [ 9] [D00000000] +10:51:22 [ 32] [ 6] [198901] +10:51:22 [ 35] [ 32] [6213548000353613=180412015361035] +10:51:22 [ 37] [ 12] [507910204152] +10:51:22 [ 41] [ 8] [01529009] +10:51:22 [ 42] [ 15] [000000041529009] +10:51:22 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +10:51:22 [ 49] [ 3] [418] +10:51:22 [ 52] [ 16] [8A2C2A830873D594] +10:51:22 ============================================================================ +10:51:22 + + +waiting on router queue for slot.... +10:51:22 Sending to : <0> +10:51:22 ============================================================================ +10:51:23 ============================================================================ +10:51:23 Slot Id : <353> +10:51:23 Transaction Type : RESPONSE +10:51:23 Received From : +10:51:23 ============================================================================ +10:51:23 FNo. Len. Field Value +10:51:23 ============================================================================ +10:51:23 [ 1] [ 4] [0210] +10:51:23 [ 2] [ 16] [6213548000353613] +10:51:23 [ 3] [ 6] [301000] +10:51:23 [ 4] [ 12] [000000000000] +10:51:23 [ 7] [ 10] [0320105143] +10:51:23 [ 11] [ 6] [204152] +10:51:23 [ 12] [ 6] [105210] +10:51:23 [ 13] [ 4] [0320] +10:51:23 [ 15] [ 4] [0320] +10:51:23 [ 18] [ 4] [6011] +10:51:23 [ 19] [ 3] [418] +10:51:23 [ 32] [ 6] [198901] +10:51:23 [ 35] [ 32] [6213548000353613=180412015361035] +10:51:23 [ 37] [ 12] [507910204152] +10:51:23 [ 38] [ 6] [757003] +10:51:23 [ 39] [ 2] [00] +10:51:23 [ 41] [ 8] [01529009] +10:51:23 [ 49] [ 3] [418] +10:51:23 [ 54] [ 40] [1001418C0000456347251002418C000045634725] +10:51:23 ============================================================================ +10:51:23 Sending to : +10:51:23 ============================================================================ +10:51:23 + + +waiting on router queue for slot.... +10:51:24 ============================================================================ +10:51:24 Slot Id : <353> +10:51:24 Transaction Type : RESPONSE +10:51:24 Received From : +10:51:24 ============================================================================ +10:51:24 FNo. Len. Field Value +10:51:24 ============================================================================ +10:51:24 [ 1] [ 4] [0210] +10:51:24 [ 2] [ 16] [6213548000353613] +10:51:24 [ 3] [ 6] [301000] +10:51:24 [ 4] [ 12] [000000000000] +10:51:24 [ 7] [ 10] [0320105143] +10:51:24 [ 11] [ 6] [204152] +10:51:24 [ 12] [ 6] [105210] +10:51:24 [ 13] [ 4] [0320] +10:51:24 [ 15] [ 4] [0320] +10:51:24 [ 18] [ 4] [6011] +10:51:24 [ 19] [ 3] [418] +10:51:24 [ 32] [ 6] [198901] +10:51:24 [ 35] [ 32] [6213548000353613=180412015361035] +10:51:24 [ 37] [ 12] [507910204152] +10:51:24 [ 38] [ 6] [757003] +10:51:24 [ 39] [ 2] [00] +10:51:24 [ 41] [ 8] [01529009] +10:51:24 [ 49] [ 3] [418] +10:51:24 [ 54] [ 40] [1001418C0000456347251002418C000045634725] +10:51:24 ============================================================================ +10:51:24 Calculate Source COMM Id = 5 +10:51:24 ============================================================================ +10:51:24 + + +waiting on router queue for slot.... +10:51:27 ============================================================================ +10:51:27 Slot Id : <363> +10:51:27 Transaction Type : REQUEST +10:51:27 Received From : +10:51:27 ============================================================================ +10:51:27 FNo. Len. Field Value +10:51:27 ============================================================================ +10:51:27 [ 1] [ 4] [0200] +10:51:27 [ 2] [ 16] [6688990600827701] +10:51:27 [ 3] [ 6] [011000] +10:51:27 [ 4] [ 12] [000055000000] +10:51:27 [ 7] [ 10] [0320105123] +10:51:27 [ 11] [ 6] [720581] +10:51:27 [ 12] [ 6] [105123] +10:51:27 [ 13] [ 4] [0320] +10:51:27 [ 15] [ 4] [0320] +10:51:27 [ 18] [ 4] [6011] +10:51:27 [ 22] [ 3] [900] +10:51:27 [ 25] [ 2] [02] +10:51:27 [ 28] [ 9] [D00002000] +10:51:27 [ 32] [ 6] [621354] +10:51:27 [ 35] [ 37] [6688990600827701=41010061770190800000] +10:51:27 [ 37] [ 12] [507904273144] +10:51:27 [ 41] [ 8] [03002600] +10:51:27 [ 42] [ 15] [NATIVE ] +10:51:27 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +10:51:27 [ 49] [ 3] [418] +10:51:27 [ 52] [ 16] [2CF3248DB6A017B1] +10:51:27 ============================================================================ +10:51:27 + + +waiting on router queue for slot.... +10:51:27 Sending to : +10:51:27 ============================================================================ +10:51:27 Sending to : +10:51:27 ============================================================================ +10:51:27 ============================================================================ +10:51:27 Slot Id : <358> +10:51:27 Transaction Type : REQUEST +10:51:27 Received From : +10:51:27 ============================================================================ +10:51:27 FNo. Len. Field Value +10:51:27 ============================================================================ +10:51:27 [ 1] [ 4] [0200] +10:51:27 [ 2] [ 16] [6213545001065220] +10:51:27 [ 3] [ 6] [010000] +10:51:27 [ 4] [ 12] [000100000000] +10:51:27 [ 7] [ 10] [0320035034] +10:51:27 [ 11] [ 6] [268245] +10:51:27 [ 12] [ 6] [105034] +10:51:27 [ 13] [ 4] [0320] +10:51:27 [ 14] [ 4] [4912] +10:51:27 [ 15] [ 4] [0320] +10:51:27 [ 18] [ 4] [6011] +10:51:27 [ 19] [ 3] [418] +10:51:27 [ 22] [ 3] [021] +10:51:27 [ 25] [ 2] [01] +10:51:27 [ 28] [ 9] [D00002000] +10:51:27 [ 32] [ 6] [180893] +10:51:27 [ 35] [ 32] [6213545001065220=491212016522253] +10:51:27 [ 37] [ 12] [507903268245] +10:51:27 [ 41] [ 8] [0324BKDT] +10:51:27 [ 42] [ 15] [999999 ] +10:51:27 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:51:27 [ 49] [ 3] [418] +10:51:27 [ 52] [ 16] [A99719B03A779A39] +10:51:27 ============================================================================ +10:51:27 + + +waiting on router queue for slot.... +10:51:27 Sending to : +10:51:27 ============================================================================ +10:51:27 Sending to : +10:51:27 ============================================================================ +10:51:27 ============================================================================ +10:51:27 Slot Id : <363> +10:51:27 Transaction Type : REQUEST +10:51:27 Received From : +10:51:27 ============================================================================ +10:51:27 FNo. Len. Field Value +10:51:27 ============================================================================ +10:51:27 [ 1] [ 4] [0200] +10:51:27 [ 2] [ 16] [6688990600827701] +10:51:27 [ 3] [ 6] [011000] +10:51:27 [ 4] [ 12] [000055000000] +10:51:27 [ 7] [ 10] [0320105123] +10:51:27 [ 11] [ 6] [720581] +10:51:27 [ 12] [ 6] [105123] +10:51:27 [ 13] [ 4] [0320] +10:51:27 [ 15] [ 4] [0320] +10:51:27 [ 18] [ 4] [6011] +10:51:27 [ 22] [ 3] [900] +10:51:27 [ 25] [ 2] [02] +10:51:27 [ 28] [ 9] [D00002000] +10:51:27 [ 32] [ 6] [621354] +10:51:27 [ 35] [ 37] [6688990600827701=41010061770190800000] +10:51:27 [ 37] [ 12] [507904273144] +10:51:27 [ 41] [ 8] [03002600] +10:51:27 [ 42] [ 15] [NATIVE ] +10:51:27 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +10:51:27 [ 49] [ 3] [418] +10:51:27 [ 52] [ 16] [2CF3248DB6A017B1] +10:51:27 ============================================================================ +10:51:27 + + +waiting on router queue for slot.... +10:51:27 Sending to : +10:51:27 ============================================================================ +10:51:27 ============================================================================ +10:51:27 Slot Id : <363> +10:51:27 Transaction Type : REQUEST +10:51:27 Received From : +10:51:27 ============================================================================ +10:51:27 FNo. Len. Field Value +10:51:27 ============================================================================ +10:51:27 [ 1] [ 4] [0200] +10:51:27 [ 2] [ 16] [6688990600827701] +10:51:27 [ 3] [ 6] [011000] +10:51:27 [ 4] [ 12] [000055000000] +10:51:27 [ 7] [ 10] [0320105123] +10:51:27 [ 11] [ 6] [720581] +10:51:27 [ 12] [ 6] [105123] +10:51:27 [ 13] [ 4] [0320] +10:51:27 [ 15] [ 4] [0320] +10:51:27 [ 18] [ 4] [6011] +10:51:27 [ 22] [ 3] [900] +10:51:27 [ 25] [ 2] [02] +10:51:27 [ 28] [ 9] [D00002000] +10:51:27 [ 32] [ 6] [621354] +10:51:27 [ 35] [ 37] [6688990600827701=41010061770190800000] +10:51:27 [ 37] [ 12] [507904273144] +10:51:27 [ 41] [ 8] [03002600] +10:51:27 [ 42] [ 15] [NATIVE ] +10:51:27 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +10:51:27 [ 49] [ 3] [418] +10:51:27 [ 52] [ 16] [D859F8D8231D3E61] +10:51:27 ============================================================================ +10:51:27 + + +waiting on router queue for slot.... +10:51:27 Sending to : <4> +10:51:27 ============================================================================ +10:51:27 ============================================================================ +10:51:27 Slot Id : <358> +10:51:27 Transaction Type : REQUEST +10:51:27 Received From : +10:51:27 ============================================================================ +10:51:27 FNo. Len. Field Value +10:51:27 ============================================================================ +10:51:27 [ 1] [ 4] [0200] +10:51:27 [ 2] [ 16] [6213545001065220] +10:51:27 [ 3] [ 6] [010000] +10:51:27 [ 4] [ 12] [000100000000] +10:51:27 [ 7] [ 10] [0320035034] +10:51:27 [ 11] [ 6] [268245] +10:51:27 [ 12] [ 6] [105034] +10:51:27 [ 13] [ 4] [0320] +10:51:27 [ 14] [ 4] [4912] +10:51:27 [ 15] [ 4] [0320] +10:51:27 [ 18] [ 4] [6011] +10:51:27 [ 19] [ 3] [418] +10:51:27 [ 22] [ 3] [021] +10:51:27 [ 25] [ 2] [01] +10:51:27 [ 28] [ 9] [D00002000] +10:51:27 [ 32] [ 6] [180893] +10:51:27 [ 35] [ 32] [6213545001065220=491212016522253] +10:51:27 [ 37] [ 12] [507903268245] +10:51:27 [ 41] [ 8] [0324BKDT] +10:51:27 [ 42] [ 15] [999999 ] +10:51:27 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:51:27 [ 49] [ 3] [418] +10:51:27 [ 52] [ 16] [A99719B03A779A39] +10:51:27 ============================================================================ +10:51:27 + + +waiting on router queue for slot.... +10:51:27 Sending to : +10:51:27 ============================================================================ +10:51:27 ============================================================================ +10:51:27 Slot Id : <358> +10:51:27 Transaction Type : REQUEST +10:51:27 Received From : +10:51:27 ============================================================================ +10:51:27 FNo. Len. Field Value +10:51:27 ============================================================================ +10:51:27 [ 1] [ 4] [0200] +10:51:27 [ 2] [ 16] [6213545001065220] +10:51:27 [ 3] [ 6] [010000] +10:51:27 [ 4] [ 12] [000100000000] +10:51:27 [ 7] [ 10] [0320035034] +10:51:27 [ 11] [ 6] [268245] +10:51:27 [ 12] [ 6] [105034] +10:51:27 [ 13] [ 4] [0320] +10:51:27 [ 14] [ 4] [4912] +10:51:27 [ 15] [ 4] [0320] +10:51:27 [ 18] [ 4] [6011] +10:51:27 [ 19] [ 3] [418] +10:51:27 [ 22] [ 3] [021] +10:51:27 [ 25] [ 2] [01] +10:51:27 [ 28] [ 9] [D00002000] +10:51:27 [ 32] [ 6] [180893] +10:51:27 [ 35] [ 32] [6213545001065220=491212016522253] +10:51:27 [ 37] [ 12] [507903268245] +10:51:27 [ 41] [ 8] [0324BKDT] +10:51:27 [ 42] [ 15] [999999 ] +10:51:27 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:51:27 [ 49] [ 3] [418] +10:51:27 [ 52] [ 16] [92AC46B4B8D0B02B] +10:51:27 ============================================================================ +10:51:27 + + +waiting on router queue for slot.... +10:51:27 Sending to : <0> +10:51:27 ============================================================================ +10:51:28 ============================================================================ +10:51:28 Slot Id : <358> +10:51:28 Transaction Type : RESPONSE +10:51:28 Received From : +10:51:28 ============================================================================ +10:51:28 FNo. Len. Field Value +10:51:28 ============================================================================ +10:51:28 [ 1] [ 4] [0210] +10:51:28 [ 2] [ 16] [6213545001065220] +10:51:28 [ 3] [ 6] [010000] +10:51:28 [ 4] [ 12] [000100000000] +10:51:28 [ 7] [ 10] [0320035034] +10:51:28 [ 11] [ 6] [268245] +10:51:28 [ 12] [ 6] [105034] +10:51:28 [ 13] [ 4] [0320] +10:51:28 [ 15] [ 4] [0320] +10:51:28 [ 18] [ 4] [6011] +10:51:28 [ 19] [ 3] [418] +10:51:28 [ 32] [ 6] [180893] +10:51:28 [ 35] [ 32] [6213545001065220=491212016522253] +10:51:28 [ 37] [ 12] [507903268245] +10:51:28 [ 38] [ 6] [773243] +10:51:28 [ 39] [ 2] [00] +10:51:28 [ 41] [ 8] [0324BKDT] +10:51:28 [ 49] [ 3] [418] +10:51:28 [ 54] [ 40] [0001418C0000694271660002418C000069427166] +10:51:28 ============================================================================ +10:51:28 Sending to : +10:51:28 ============================================================================ +10:51:28 + + +waiting on router queue for slot.... +10:51:28 ============================================================================ +10:51:28 Slot Id : <363> +10:51:28 Transaction Type : RESPONSE +10:51:28 Received From : +10:51:28 ============================================================================ +10:51:28 FNo. Len. Field Value +10:51:28 ============================================================================ +10:51:28 [ 1] [ 4] [0210] +10:51:28 [ 2] [ 16] [6688990600827701] +10:51:28 [ 3] [ 6] [011000] +10:51:28 [ 4] [ 12] [000055000000] +10:51:28 [ 11] [ 6] [720581] +10:51:28 [ 12] [ 6] [105123] +10:51:28 [ 15] [ 4] [0320] +10:51:28 [ 18] [ 4] [6011] +10:51:28 [ 32] [ 6] [621354] +10:51:28 [ 35] [ 37] [6688990600827701=41010061770190800000] +10:51:28 [ 37] [ 12] [507904273144] +10:51:28 [ 38] [ 6] [479540] +10:51:28 [ 39] [ 2] [00] +10:51:28 [ 41] [ 8] [03002600] +10:51:28 [ 49] [ 3] [418] +10:51:28 [ 54] [ 20] [1002418C000005625697] +10:51:28 ============================================================================ +10:51:28 Sending to : +10:51:28 ============================================================================ +10:51:28 + + +waiting on router queue for slot.... +10:51:29 ============================================================================ +10:51:29 Slot Id : <358> +10:51:29 Transaction Type : RESPONSE +10:51:29 Received From : +10:51:29 ============================================================================ +10:51:29 FNo. Len. Field Value +10:51:29 ============================================================================ +10:51:29 [ 1] [ 4] [0210] +10:51:29 [ 2] [ 16] [6213545001065220] +10:51:29 [ 3] [ 6] [010000] +10:51:29 [ 4] [ 12] [000100000000] +10:51:29 [ 7] [ 10] [0320035034] +10:51:29 [ 11] [ 6] [268245] +10:51:29 [ 12] [ 6] [105034] +10:51:29 [ 13] [ 4] [0320] +10:51:29 [ 15] [ 4] [0320] +10:51:29 [ 18] [ 4] [6011] +10:51:29 [ 19] [ 3] [418] +10:51:29 [ 32] [ 6] [180893] +10:51:29 [ 35] [ 32] [6213545001065220=491212016522253] +10:51:29 [ 37] [ 12] [507903268245] +10:51:29 [ 38] [ 6] [773243] +10:51:29 [ 39] [ 2] [00] +10:51:29 [ 41] [ 8] [0324BKDT] +10:51:29 [ 49] [ 3] [418] +10:51:29 [ 54] [ 40] [0001418C0000694271660002418C000069427166] +10:51:29 ============================================================================ +10:51:29 Calculate Source COMM Id = 2 +10:51:29 ============================================================================ +10:51:29 + + +waiting on router queue for slot.... +10:51:31 ============================================================================ +10:51:31 Slot Id : <363> +10:51:31 Transaction Type : RESPONSE +10:51:31 Received From : +10:51:31 ============================================================================ +10:51:31 FNo. Len. Field Value +10:51:31 ============================================================================ +10:51:31 [ 1] [ 4] [0210] +10:51:31 [ 2] [ 16] [6688990600827701] +10:51:31 [ 3] [ 6] [011000] +10:51:31 [ 4] [ 12] [000055000000] +10:51:31 [ 11] [ 6] [720581] +10:51:31 [ 12] [ 6] [105123] +10:51:31 [ 15] [ 4] [0320] +10:51:31 [ 18] [ 4] [6011] +10:51:31 [ 32] [ 6] [621354] +10:51:31 [ 35] [ 37] [6688990600827701=41010061770190800000] +10:51:31 [ 37] [ 12] [507904273144] +10:51:31 [ 38] [ 6] [479540] +10:51:31 [ 39] [ 2] [00] +10:51:31 [ 41] [ 8] [03002600] +10:51:31 [ 49] [ 3] [418] +10:51:31 [ 54] [ 20] [1002418C000005625697] +10:51:31 ============================================================================ +10:51:31 Calculate Source COMM Id = 0 +10:51:31 ============================================================================ +10:51:31 + + +waiting on router queue for slot.... +10:51:38 ============================================================================ +10:51:38 Slot Id : <370> +10:51:38 Transaction Type : REQUEST +10:51:38 Received From : +10:51:38 ============================================================================ +10:51:38 FNo. Len. Field Value +10:51:38 ============================================================================ +10:51:38 [ 1] [ 4] [0800] +10:51:38 [ 2] [ 5] [02531] +10:51:38 [ 3] [ 6] [579108] +10:51:38 [ 7] [ 10] [0320035138] +10:51:38 [ 11] [ 6] [807042] +10:51:38 [ 15] [ 10] [0320035138] +10:51:38 [ 37] [ 11] [57910807042] +10:51:38 [ 70] [ 3] [001] +10:51:38 ============================================================================ +10:51:38 + + +waiting on router queue for slot.... +10:51:38 ============================================================================ +10:51:38 Slot Id : <370> +10:51:38 Transaction Type : RESPONSE +10:51:38 Received From : +10:51:38 ============================================================================ +10:51:38 FNo. Len. Field Value +10:51:38 ============================================================================ +10:51:38 [ 1] [ 4] [0810] +10:51:38 [ 7] [ 10] [0320035138] +10:51:38 [ 11] [ 6] [807042] +10:51:38 [ 15] [ 4] [0320] +10:51:38 [ 37] [ 12] [57910807042] +10:51:38 [ 39] [ 2] [00] +10:51:38 [ 70] [ 3] [001] +10:51:38 ============================================================================ +10:51:38 Sending to : +10:51:38 ============================================================================ +10:51:38 + + +waiting on router queue for slot.... +10:51:42 ============================================================================ +10:51:42 Slot Id : <360> +10:51:42 Transaction Type : REQUEST +10:51:42 Received From : +10:51:42 ============================================================================ +10:51:42 FNo. Len. Field Value +10:51:42 ============================================================================ +10:51:42 [ 1] [ 4] [0800] +10:51:42 [ 7] [ 10] [0320035050] +10:51:42 [ 11] [ 6] [155951] +10:51:42 [ 70] [ 3] [301] +10:51:42 ============================================================================ +10:51:42 + + +waiting on router queue for slot.... +10:51:42 Sending to : +10:51:42 ============================================================================ +10:51:42 ============================================================================ +10:51:42 Slot Id : <360> +10:51:42 Transaction Type : RESPONSE +10:51:42 Received From : +10:51:42 ============================================================================ +10:51:42 FNo. Len. Field Value +10:51:42 ============================================================================ +10:51:42 [ 1] [ 4] [0810] +10:51:42 [ 7] [ 10] [0320035050] +10:51:42 [ 11] [ 6] [155951] +10:51:42 [ 39] [ 2] [00] +10:51:42 [ 70] [ 3] [301] +10:51:42 ============================================================================ +10:51:42 Calculate Source COMM Id = 2 +10:51:42 ============================================================================ +10:51:42 + + +waiting on router queue for slot.... +10:51:53 ============================================================================ +10:51:53 Slot Id : <338> +10:51:53 Transaction Type : REQUEST +10:51:53 Received From : +10:51:53 ============================================================================ +10:51:53 FNo. Len. Field Value +10:51:53 ============================================================================ +10:51:53 [ 1] [ 4] [0800] +10:51:53 [ 7] [ 10] [0320035101] +10:51:53 [ 11] [ 6] [155952] +10:51:53 [ 70] [ 3] [301] +10:51:53 ============================================================================ +10:51:53 + + +waiting on router queue for slot.... +10:51:53 Sending to : +10:51:53 ============================================================================ +10:51:53 ============================================================================ +10:51:53 Slot Id : <338> +10:51:53 Transaction Type : RESPONSE +10:51:53 Received From : +10:51:53 ============================================================================ +10:51:53 FNo. Len. Field Value +10:51:53 ============================================================================ +10:51:53 [ 1] [ 4] [0810] +10:51:53 [ 7] [ 10] [0320035101] +10:51:53 [ 11] [ 6] [155952] +10:51:53 [ 39] [ 2] [00] +10:51:53 [ 70] [ 3] [301] +10:51:53 ============================================================================ +10:51:53 Calculate Source COMM Id = 2 +10:51:53 ============================================================================ +10:51:53 + + +waiting on router queue for slot.... +10:52:05 ============================================================================ +10:52:05 Slot Id : <354> +10:52:05 Transaction Type : REQUEST +10:52:05 Received From : +10:52:05 ============================================================================ +10:52:05 FNo. Len. Field Value +10:52:05 ============================================================================ +10:52:05 [ 1] [ 4] [0800] +10:52:05 [ 7] [ 10] [0320035111] +10:52:05 [ 11] [ 6] [155953] +10:52:05 [ 70] [ 3] [301] +10:52:05 ============================================================================ +10:52:05 + + +waiting on router queue for slot.... +10:52:05 Sending to : +10:52:05 ============================================================================ +10:52:05 ============================================================================ +10:52:05 Slot Id : <354> +10:52:05 Transaction Type : RESPONSE +10:52:05 Received From : +10:52:05 ============================================================================ +10:52:05 FNo. Len. Field Value +10:52:05 ============================================================================ +10:52:05 [ 1] [ 4] [0810] +10:52:05 [ 7] [ 10] [0320035111] +10:52:05 [ 11] [ 6] [155953] +10:52:05 [ 39] [ 2] [00] +10:52:05 [ 70] [ 3] [301] +10:52:05 ============================================================================ +10:52:05 Calculate Source COMM Id = 2 +10:52:05 ============================================================================ +10:52:05 + + +waiting on router queue for slot.... +10:52:19 ============================================================================ +10:52:19 Slot Id : <379> +10:52:19 Transaction Type : REQUEST +10:52:19 Received From : +10:52:19 ============================================================================ +10:52:19 FNo. Len. Field Value +10:52:19 ============================================================================ +10:52:19 [ 1] [ 4] [0800] +10:52:19 [ 7] [ 10] [0320035127] +10:52:19 [ 11] [ 6] [155954] +10:52:19 [ 70] [ 3] [301] +10:52:19 ============================================================================ +10:52:19 + + +waiting on router queue for slot.... +10:52:19 Sending to : +10:52:19 ============================================================================ +10:52:19 ============================================================================ +10:52:19 Slot Id : <379> +10:52:19 Transaction Type : RESPONSE +10:52:19 Received From : +10:52:19 ============================================================================ +10:52:19 FNo. Len. Field Value +10:52:19 ============================================================================ +10:52:19 [ 1] [ 4] [0810] +10:52:19 [ 7] [ 10] [0320035127] +10:52:19 [ 11] [ 6] [155954] +10:52:19 [ 39] [ 2] [00] +10:52:19 [ 70] [ 3] [301] +10:52:19 ============================================================================ +10:52:19 Calculate Source COMM Id = 2 +10:52:19 ============================================================================ +10:52:19 + + +waiting on router queue for slot.... +10:52:23 ============================================================================ +10:52:23 Slot Id : <369> +10:52:23 Transaction Type : REQUEST +10:52:23 Received From : +10:52:23 ============================================================================ +10:52:23 FNo. Len. Field Value +10:52:23 ============================================================================ +10:52:23 [ 1] [ 4] [0200] +10:52:23 [ 2] [ 16] [6688990050090859] +10:52:23 [ 3] [ 6] [310000] +10:52:23 [ 4] [ 12] [000000000000] +10:52:23 [ 7] [ 10] [0320110011] +10:52:23 [ 11] [ 6] [177349] +10:52:23 [ 12] [ 6] [110011] +10:52:23 [ 13] [ 4] [0320] +10:52:23 [ 14] [ 4] [9806] +10:52:23 [ 15] [ 4] [0320] +10:52:23 [ 18] [ 4] [6011] +10:52:23 [ 22] [ 3] [900] +10:52:23 [ 25] [ 2] [02] +10:52:23 [ 28] [ 9] [000000000] +10:52:23 [ 32] [ 6] [220699] +10:52:23 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:52:23 [ 37] [ 12] [507900010224] +10:52:23 [ 41] [ 8] [01000100] +10:52:23 [ 42] [ 15] [APTRA ] +10:52:23 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:52:23 [ 49] [ 3] [418] +10:52:23 [ 52] [ 16] [3E2473A978CC8D82] +10:52:23 ============================================================================ +10:52:23 + + +waiting on router queue for slot.... +10:52:23 Sending to : +10:52:23 ============================================================================ +10:52:23 Sending to : +10:52:23 ============================================================================ +10:52:24 ============================================================================ +10:52:24 Slot Id : <369> +10:52:24 Transaction Type : REQUEST +10:52:24 Received From : +10:52:24 ============================================================================ +10:52:24 FNo. Len. Field Value +10:52:24 ============================================================================ +10:52:24 [ 1] [ 4] [0200] +10:52:24 [ 2] [ 16] [6688990050090859] +10:52:24 [ 3] [ 6] [310000] +10:52:24 [ 4] [ 12] [000000000000] +10:52:24 [ 7] [ 10] [0320110011] +10:52:24 [ 11] [ 6] [177349] +10:52:24 [ 12] [ 6] [110011] +10:52:24 [ 13] [ 4] [0320] +10:52:24 [ 14] [ 4] [9806] +10:52:24 [ 15] [ 4] [0320] +10:52:24 [ 18] [ 4] [6011] +10:52:24 [ 22] [ 3] [900] +10:52:24 [ 25] [ 2] [02] +10:52:24 [ 28] [ 9] [000000000] +10:52:24 [ 32] [ 6] [220699] +10:52:24 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:52:24 [ 37] [ 12] [507900010224] +10:52:24 [ 41] [ 8] [01000100] +10:52:24 [ 42] [ 15] [APTRA ] +10:52:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:52:24 [ 49] [ 3] [418] +10:52:24 [ 52] [ 16] [3E2473A978CC8D82] +10:52:24 ============================================================================ +10:52:24 + + +waiting on router queue for slot.... +10:52:24 Sending to : +10:52:24 ============================================================================ +10:52:24 ============================================================================ +10:52:24 Slot Id : <369> +10:52:24 Transaction Type : REQUEST +10:52:24 Received From : +10:52:24 ============================================================================ +10:52:24 FNo. Len. Field Value +10:52:24 ============================================================================ +10:52:24 [ 1] [ 4] [0200] +10:52:24 [ 2] [ 16] [6688990050090859] +10:52:24 [ 3] [ 6] [310000] +10:52:24 [ 4] [ 12] [000000000000] +10:52:24 [ 7] [ 10] [0320110011] +10:52:24 [ 11] [ 6] [177349] +10:52:24 [ 12] [ 6] [110011] +10:52:24 [ 13] [ 4] [0320] +10:52:24 [ 14] [ 4] [9806] +10:52:24 [ 15] [ 4] [0320] +10:52:24 [ 18] [ 4] [6011] +10:52:24 [ 22] [ 3] [900] +10:52:24 [ 25] [ 2] [02] +10:52:24 [ 28] [ 9] [000000000] +10:52:24 [ 32] [ 6] [220699] +10:52:24 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:52:24 [ 37] [ 12] [507900010224] +10:52:24 [ 41] [ 8] [01000100] +10:52:24 [ 42] [ 15] [APTRA ] +10:52:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +10:52:24 [ 49] [ 3] [418] +10:52:24 [ 52] [ 16] [37C9DC8CE74C55DD] +10:52:24 ============================================================================ +10:52:24 + + +waiting on router queue for slot.... +10:52:24 Sending to : <0> +10:52:24 ============================================================================ +10:52:24 ============================================================================ +10:52:24 Slot Id : <369> +10:52:24 Transaction Type : RESPONSE +10:52:24 Received From : +10:52:24 ============================================================================ +10:52:24 FNo. Len. Field Value +10:52:24 ============================================================================ +10:52:24 [ 1] [ 4] [0210] +10:52:24 [ 2] [ 16] [6688990050090859] +10:52:24 [ 3] [ 6] [310000] +10:52:24 [ 4] [ 12] [000000000000] +10:52:24 [ 7] [ 10] [0320110011] +10:52:24 [ 11] [ 6] [177349] +10:52:24 [ 12] [ 6] [110011] +10:52:24 [ 13] [ 4] [0320] +10:52:24 [ 15] [ 4] [0320] +10:52:24 [ 18] [ 4] [6011] +10:52:24 [ 22] [ 3] [900] +10:52:24 [ 32] [ 6] [220699] +10:52:24 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:52:24 [ 37] [ 12] [507900010224] +10:52:24 [ 39] [ 2] [14] +10:52:24 [ 41] [ 8] [01000100] +10:52:24 [ 49] [ 3] [418] +10:52:24 ============================================================================ +10:52:24 Sending to : +10:52:24 ============================================================================ +10:52:24 + + +waiting on router queue for slot.... +10:52:25 ============================================================================ +10:52:25 Slot Id : <369> +10:52:25 Transaction Type : RESPONSE +10:52:25 Received From : +10:52:25 ============================================================================ +10:52:25 FNo. Len. Field Value +10:52:25 ============================================================================ +10:52:25 [ 1] [ 4] [0210] +10:52:25 [ 2] [ 16] [6688990050090859] +10:52:25 [ 3] [ 6] [310000] +10:52:25 [ 4] [ 12] [000000000000] +10:52:25 [ 7] [ 10] [0320110011] +10:52:25 [ 11] [ 6] [177349] +10:52:25 [ 12] [ 6] [110011] +10:52:25 [ 13] [ 4] [0320] +10:52:25 [ 15] [ 4] [0320] +10:52:25 [ 18] [ 4] [6011] +10:52:25 [ 22] [ 3] [900] +10:52:25 [ 32] [ 6] [220699] +10:52:25 [ 35] [ 37] [6688990050090859=98061261942920100000] +10:52:25 [ 37] [ 12] [507900010224] +10:52:25 [ 39] [ 2] [14] +10:52:25 [ 41] [ 8] [01000100] +10:52:25 [ 49] [ 3] [418] +10:52:25 ============================================================================ +10:52:25 Calculate Source COMM Id = 1 +10:52:25 ============================================================================ +10:52:25 + + +waiting on router queue for slot.... +10:52:30 ============================================================================ +10:52:30 Slot Id : <396> +10:52:30 Transaction Type : REQUEST +10:52:30 Received From : +10:52:30 ============================================================================ +10:52:30 FNo. Len. Field Value +10:52:30 ============================================================================ +10:52:30 [ 1] [ 4] [0800] +10:52:30 [ 7] [ 10] [0320035138] +10:52:30 [ 11] [ 6] [155955] +10:52:30 [ 70] [ 3] [301] +10:52:30 ============================================================================ +10:52:30 + + +waiting on router queue for slot.... +10:52:30 Sending to : +10:52:30 ============================================================================ +10:52:30 ============================================================================ +10:52:30 Slot Id : <396> +10:52:30 Transaction Type : RESPONSE +10:52:30 Received From : +10:52:30 ============================================================================ +10:52:30 FNo. Len. Field Value +10:52:30 ============================================================================ +10:52:30 [ 1] [ 4] [0810] +10:52:30 [ 7] [ 10] [0320035138] +10:52:30 [ 11] [ 6] [155955] +10:52:30 [ 39] [ 2] [00] +10:52:30 [ 70] [ 3] [301] +10:52:30 ============================================================================ +10:52:30 Calculate Source COMM Id = 2 +10:52:30 ============================================================================ +10:52:30 + + +waiting on router queue for slot.... +10:52:36 ============================================================================ +10:52:36 Slot Id : <351> +10:52:36 Transaction Type : REQUEST +10:52:36 Received From : +10:52:36 ============================================================================ +10:52:36 FNo. Len. Field Value +10:52:36 ============================================================================ +10:52:36 [ 1] [ 4] [0200] +10:52:36 [ 2] [ 16] [6213545001065220] +10:52:36 [ 3] [ 6] [011000] +10:52:36 [ 4] [ 12] [000060000000] +10:52:36 [ 7] [ 10] [0320035141] +10:52:36 [ 11] [ 6] [268256] +10:52:36 [ 12] [ 6] [105141] +10:52:36 [ 13] [ 4] [0320] +10:52:36 [ 14] [ 4] [4912] +10:52:36 [ 15] [ 4] [0320] +10:52:36 [ 18] [ 4] [6011] +10:52:36 [ 19] [ 3] [418] +10:52:36 [ 22] [ 3] [021] +10:52:36 [ 25] [ 2] [01] +10:52:36 [ 28] [ 9] [D00002000] +10:52:36 [ 32] [ 6] [180893] +10:52:36 [ 35] [ 32] [6213545001065220=491212016522253] +10:52:36 [ 37] [ 12] [507903268256] +10:52:36 [ 41] [ 8] [0324BKDT] +10:52:36 [ 42] [ 15] [999999 ] +10:52:36 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:52:36 [ 49] [ 3] [418] +10:52:36 [ 52] [ 16] [75F3D169572805C3] +10:52:36 ============================================================================ +10:52:36 + + +waiting on router queue for slot.... +10:52:36 Sending to : +10:52:36 ============================================================================ +10:52:36 Sending to : +10:52:36 ============================================================================ +10:52:36 ============================================================================ +10:52:36 Slot Id : <351> +10:52:36 Transaction Type : REQUEST +10:52:36 Received From : +10:52:36 ============================================================================ +10:52:36 FNo. Len. Field Value +10:52:36 ============================================================================ +10:52:36 [ 1] [ 4] [0200] +10:52:36 [ 2] [ 16] [6213545001065220] +10:52:36 [ 3] [ 6] [011000] +10:52:36 [ 4] [ 12] [000060000000] +10:52:36 [ 7] [ 10] [0320035141] +10:52:36 [ 11] [ 6] [268256] +10:52:36 [ 12] [ 6] [105141] +10:52:36 [ 13] [ 4] [0320] +10:52:36 [ 14] [ 4] [4912] +10:52:36 [ 15] [ 4] [0320] +10:52:36 [ 18] [ 4] [6011] +10:52:36 [ 19] [ 3] [418] +10:52:36 [ 22] [ 3] [021] +10:52:36 [ 25] [ 2] [01] +10:52:36 [ 28] [ 9] [D00002000] +10:52:36 [ 32] [ 6] [180893] +10:52:36 [ 35] [ 32] [6213545001065220=491212016522253] +10:52:36 [ 37] [ 12] [507903268256] +10:52:36 [ 41] [ 8] [0324BKDT] +10:52:36 [ 42] [ 15] [999999 ] +10:52:36 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:52:36 [ 49] [ 3] [418] +10:52:36 [ 52] [ 16] [75F3D169572805C3] +10:52:36 ============================================================================ +10:52:36 + + +waiting on router queue for slot.... +10:52:36 Sending to : +10:52:36 ============================================================================ +10:52:36 ============================================================================ +10:52:36 Slot Id : <351> +10:52:36 Transaction Type : REQUEST +10:52:36 Received From : +10:52:36 ============================================================================ +10:52:36 FNo. Len. Field Value +10:52:36 ============================================================================ +10:52:36 [ 1] [ 4] [0200] +10:52:36 [ 2] [ 16] [6213545001065220] +10:52:36 [ 3] [ 6] [011000] +10:52:36 [ 4] [ 12] [000060000000] +10:52:36 [ 7] [ 10] [0320035141] +10:52:36 [ 11] [ 6] [268256] +10:52:36 [ 12] [ 6] [105141] +10:52:36 [ 13] [ 4] [0320] +10:52:36 [ 14] [ 4] [4912] +10:52:36 [ 15] [ 4] [0320] +10:52:36 [ 18] [ 4] [6011] +10:52:36 [ 19] [ 3] [418] +10:52:36 [ 22] [ 3] [021] +10:52:36 [ 25] [ 2] [01] +10:52:36 [ 28] [ 9] [D00002000] +10:52:36 [ 32] [ 6] [180893] +10:52:36 [ 35] [ 32] [6213545001065220=491212016522253] +10:52:36 [ 37] [ 12] [507903268256] +10:52:36 [ 41] [ 8] [0324BKDT] +10:52:36 [ 42] [ 15] [999999 ] +10:52:36 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:52:36 [ 49] [ 3] [418] +10:52:36 [ 52] [ 16] [92E806B6939B7DEB] +10:52:36 ============================================================================ +10:52:36 + + +waiting on router queue for slot.... +10:52:36 Sending to : <0> +10:52:36 ============================================================================ +10:52:36 ============================================================================ +10:52:36 Slot Id : <351> +10:52:36 Transaction Type : RESPONSE +10:52:36 Received From : +10:52:36 ============================================================================ +10:52:36 FNo. Len. Field Value +10:52:36 ============================================================================ +10:52:36 [ 1] [ 4] [0210] +10:52:36 [ 2] [ 16] [6213545001065220] +10:52:36 [ 3] [ 6] [011000] +10:52:36 [ 4] [ 12] [000060000000] +10:52:36 [ 7] [ 10] [0320035141] +10:52:36 [ 11] [ 6] [268256] +10:52:36 [ 12] [ 6] [105141] +10:52:36 [ 13] [ 4] [0320] +10:52:36 [ 15] [ 4] [0320] +10:52:36 [ 18] [ 4] [6011] +10:52:36 [ 19] [ 3] [418] +10:52:36 [ 22] [ 3] [021] +10:52:36 [ 32] [ 6] [180893] +10:52:36 [ 35] [ 32] [6213545001065220=491212016522253] +10:52:36 [ 37] [ 12] [507903268256] +10:52:36 [ 38] [ 6] [105232] +10:52:36 [ 39] [ 2] [55] +10:52:36 [ 41] [ 8] [0324BKDT] +10:52:36 [ 49] [ 3] [418] +10:52:36 ============================================================================ +10:52:36 Sending to : +10:52:36 ============================================================================ +10:52:36 + + +waiting on router queue for slot.... +10:52:37 ============================================================================ +10:52:37 Slot Id : <351> +10:52:37 Transaction Type : RESPONSE +10:52:37 Received From : +10:52:37 ============================================================================ +10:52:37 FNo. Len. Field Value +10:52:37 ============================================================================ +10:52:37 [ 1] [ 4] [0210] +10:52:37 [ 2] [ 16] [6213545001065220] +10:52:37 [ 3] [ 6] [011000] +10:52:37 [ 4] [ 12] [000060000000] +10:52:37 [ 7] [ 10] [0320035141] +10:52:37 [ 11] [ 6] [268256] +10:52:37 [ 12] [ 6] [105141] +10:52:37 [ 13] [ 4] [0320] +10:52:37 [ 15] [ 4] [0320] +10:52:37 [ 18] [ 4] [6011] +10:52:37 [ 19] [ 3] [418] +10:52:37 [ 22] [ 3] [021] +10:52:37 [ 32] [ 6] [180893] +10:52:37 [ 35] [ 32] [6213545001065220=491212016522253] +10:52:37 [ 37] [ 12] [507903268256] +10:52:37 [ 38] [ 6] [105232] +10:52:37 [ 39] [ 2] [55] +10:52:37 [ 41] [ 8] [0324BKDT] +10:52:37 [ 49] [ 3] [418] +10:52:37 ============================================================================ +10:52:37 Calculate Source COMM Id = 2 +10:52:37 ============================================================================ +10:52:37 + + +waiting on router queue for slot.... +10:52:40 ============================================================================ +10:52:40 Slot Id : <389> +10:52:40 Transaction Type : REQUEST +10:52:40 Received From : +10:52:40 ============================================================================ +10:52:40 FNo. Len. Field Value +10:52:40 ============================================================================ +10:52:40 [ 1] [ 4] [0800] +10:52:40 [ 2] [ 5] [02531] +10:52:40 [ 3] [ 6] [579108] +10:52:40 [ 7] [ 10] [0320035240] +10:52:40 [ 11] [ 6] [807043] +10:52:40 [ 15] [ 10] [0320035240] +10:52:40 [ 37] [ 11] [57910807043] +10:52:40 [ 70] [ 3] [001] +10:52:40 ============================================================================ +10:52:40 + + +waiting on router queue for slot.... +10:52:40 ============================================================================ +10:52:40 Slot Id : <389> +10:52:40 Transaction Type : RESPONSE +10:52:40 Received From : +10:52:40 ============================================================================ +10:52:40 FNo. Len. Field Value +10:52:40 ============================================================================ +10:52:40 [ 1] [ 4] [0810] +10:52:40 [ 7] [ 10] [0320035240] +10:52:40 [ 11] [ 6] [807043] +10:52:40 [ 15] [ 4] [0320] +10:52:40 [ 37] [ 12] [57910807043] +10:52:40 [ 39] [ 2] [00] +10:52:40 [ 70] [ 3] [001] +10:52:40 ============================================================================ +10:52:40 Sending to : +10:52:40 ============================================================================ +10:52:40 + + +waiting on router queue for slot.... +10:52:51 ============================================================================ +10:52:51 Slot Id : <390> +10:52:51 Transaction Type : REQUEST +10:52:51 Received From : +10:52:51 ============================================================================ +10:52:51 FNo. Len. Field Value +10:52:51 ============================================================================ +10:52:51 [ 1] [ 4] [0800] +10:52:51 [ 7] [ 10] [0320035159] +10:52:51 [ 11] [ 6] [155956] +10:52:51 [ 70] [ 3] [301] +10:52:51 ============================================================================ +10:52:51 + + +waiting on router queue for slot.... +10:52:51 Sending to : +10:52:51 ============================================================================ +10:52:51 ============================================================================ +10:52:51 Slot Id : <390> +10:52:51 Transaction Type : RESPONSE +10:52:51 Received From : +10:52:51 ============================================================================ +10:52:51 FNo. Len. Field Value +10:52:51 ============================================================================ +10:52:51 [ 1] [ 4] [0810] +10:52:51 [ 7] [ 10] [0320035159] +10:52:51 [ 11] [ 6] [155956] +10:52:51 [ 39] [ 2] [00] +10:52:51 [ 70] [ 3] [301] +10:52:51 ============================================================================ +10:52:51 Calculate Source COMM Id = 2 +10:52:51 ============================================================================ +10:52:51 + + +waiting on router queue for slot.... +10:52:58 ============================================================================ +10:52:58 Slot Id : <359> +10:52:58 Transaction Type : REQUEST +10:52:58 Received From : +10:52:58 ============================================================================ +10:52:58 FNo. Len. Field Value +10:52:58 ============================================================================ +10:52:58 [ 1] [ 4] [0200] +10:52:58 [ 2] [ 16] [6688990105536401] +10:52:58 [ 3] [ 6] [011000] +10:52:58 [ 4] [ 12] [000050000000] +10:52:58 [ 7] [ 10] [0320105254] +10:52:58 [ 11] [ 6] [720954] +10:52:58 [ 12] [ 6] [105254] +10:52:58 [ 13] [ 4] [0320] +10:52:58 [ 15] [ 4] [0320] +10:52:58 [ 18] [ 4] [6011] +10:52:58 [ 22] [ 3] [900] +10:52:58 [ 25] [ 2] [02] +10:52:58 [ 28] [ 9] [D00002000] +10:52:58 [ 32] [ 6] [621354] +10:52:58 [ 35] [ 37] [6688990105536401=43091231640105500000] +10:52:58 [ 37] [ 12] [507903883654] +10:52:58 [ 41] [ 8] [01010400] +10:52:58 [ 42] [ 15] [NATIVE ] +10:52:58 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +10:52:58 [ 49] [ 3] [418] +10:52:58 [ 52] [ 16] [740564AEDBE4805E] +10:52:58 ============================================================================ +10:52:58 + + +waiting on router queue for slot.... +10:52:58 Sending to : +10:52:58 ============================================================================ +10:52:58 Sending to : +10:52:58 ============================================================================ +10:52:58 ============================================================================ +10:52:58 Slot Id : <359> +10:52:58 Transaction Type : REQUEST +10:52:58 Received From : +10:52:58 ============================================================================ +10:52:58 FNo. Len. Field Value +10:52:58 ============================================================================ +10:52:58 [ 1] [ 4] [0200] +10:52:58 [ 2] [ 16] [6688990105536401] +10:52:58 [ 3] [ 6] [011000] +10:52:58 [ 4] [ 12] [000050000000] +10:52:58 [ 7] [ 10] [0320105254] +10:52:58 [ 11] [ 6] [720954] +10:52:58 [ 12] [ 6] [105254] +10:52:58 [ 13] [ 4] [0320] +10:52:58 [ 15] [ 4] [0320] +10:52:58 [ 18] [ 4] [6011] +10:52:58 [ 22] [ 3] [900] +10:52:58 [ 25] [ 2] [02] +10:52:58 [ 28] [ 9] [D00002000] +10:52:58 [ 32] [ 6] [621354] +10:52:58 [ 35] [ 37] [6688990105536401=43091231640105500000] +10:52:58 [ 37] [ 12] [507903883654] +10:52:58 [ 41] [ 8] [01010400] +10:52:58 [ 42] [ 15] [NATIVE ] +10:52:58 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +10:52:58 [ 49] [ 3] [418] +10:52:58 [ 52] [ 16] [740564AEDBE4805E] +10:52:58 ============================================================================ +10:52:58 + + +waiting on router queue for slot.... +10:52:58 Sending to : +10:52:58 ============================================================================ +10:52:58 ============================================================================ +10:52:58 Slot Id : <359> +10:52:58 Transaction Type : REQUEST +10:52:58 Received From : +10:52:58 ============================================================================ +10:52:58 FNo. Len. Field Value +10:52:58 ============================================================================ +10:52:58 [ 1] [ 4] [0200] +10:52:58 [ 2] [ 16] [6688990105536401] +10:52:58 [ 3] [ 6] [011000] +10:52:58 [ 4] [ 12] [000050000000] +10:52:58 [ 7] [ 10] [0320105254] +10:52:58 [ 11] [ 6] [720954] +10:52:58 [ 12] [ 6] [105254] +10:52:58 [ 13] [ 4] [0320] +10:52:58 [ 15] [ 4] [0320] +10:52:58 [ 18] [ 4] [6011] +10:52:58 [ 22] [ 3] [900] +10:52:58 [ 25] [ 2] [02] +10:52:58 [ 28] [ 9] [D00002000] +10:52:58 [ 32] [ 6] [621354] +10:52:58 [ 35] [ 37] [6688990105536401=43091231640105500000] +10:52:58 [ 37] [ 12] [507903883654] +10:52:58 [ 41] [ 8] [01010400] +10:52:58 [ 42] [ 15] [NATIVE ] +10:52:58 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +10:52:58 [ 49] [ 3] [418] +10:52:58 [ 52] [ 16] [A3210DD74FE66343] +10:52:58 ============================================================================ +10:52:58 + + +waiting on router queue for slot.... +10:52:58 Sending to : <4> +10:52:58 ============================================================================ +10:52:59 ============================================================================ +10:52:59 Slot Id : <376> +10:52:59 Transaction Type : REQUEST +10:52:59 Received From : +10:52:59 ============================================================================ +10:52:59 FNo. Len. Field Value +10:52:59 ============================================================================ +10:52:59 [ 1] [ 4] [0200] +10:52:59 [ 2] [ 16] [6213544002272307] +10:52:59 [ 3] [ 6] [300000] +10:52:59 [ 4] [ 12] [000000000000] +10:52:59 [ 7] [ 10] [0320105050] +10:52:59 [ 11] [ 6] [939753] +10:52:59 [ 12] [ 6] [105050] +10:52:59 [ 13] [ 4] [0320] +10:52:59 [ 15] [ 4] [0320] +10:52:59 [ 18] [ 4] [6011] +10:52:59 [ 19] [ 3] [418] +10:52:59 [ 22] [ 3] [021] +10:52:59 [ 25] [ 2] [01] +10:52:59 [ 28] [ 9] [D00000000] +10:52:59 [ 32] [ 6] [668899] +10:52:59 [ 35] [ 32] [6213544002272307=491212017230973] +10:52:59 [ 37] [ 12] [507902255410] +10:52:59 [ 41] [ 8] [03316003] +10:52:59 [ 42] [ 15] [APT ] +10:52:59 [ 43] [ 40] [ KONGSEDONE UNIT KONGSEDON] +10:52:59 [ 49] [ 3] [418] +10:52:59 [ 52] [ 16] [B5BDA7982CBAB262] +10:52:59 ============================================================================ +10:52:59 + + +waiting on router queue for slot.... +10:52:59 Sending to : +10:52:59 ============================================================================ +10:52:59 Sending to : +10:52:59 ============================================================================ +10:52:59 ============================================================================ +10:52:59 Slot Id : <376> +10:52:59 Transaction Type : REQUEST +10:52:59 Received From : +10:52:59 ============================================================================ +10:52:59 FNo. Len. Field Value +10:52:59 ============================================================================ +10:52:59 [ 1] [ 4] [0200] +10:52:59 [ 2] [ 16] [6213544002272307] +10:52:59 [ 3] [ 6] [300000] +10:52:59 [ 4] [ 12] [000000000000] +10:52:59 [ 7] [ 10] [0320105050] +10:52:59 [ 11] [ 6] [939753] +10:52:59 [ 12] [ 6] [105050] +10:52:59 [ 13] [ 4] [0320] +10:52:59 [ 15] [ 4] [0320] +10:52:59 [ 18] [ 4] [6011] +10:52:59 [ 19] [ 3] [418] +10:52:59 [ 22] [ 3] [021] +10:52:59 [ 25] [ 2] [01] +10:52:59 [ 28] [ 9] [D00000000] +10:52:59 [ 32] [ 6] [668899] +10:52:59 [ 35] [ 32] [6213544002272307=491212017230973] +10:52:59 [ 37] [ 12] [507902255410] +10:52:59 [ 41] [ 8] [03316003] +10:52:59 [ 42] [ 15] [APT ] +10:52:59 [ 43] [ 40] [ KONGSEDONE UNIT KONGSEDON] +10:52:59 [ 49] [ 3] [418] +10:52:59 [ 52] [ 16] [B5BDA7982CBAB262] +10:52:59 ============================================================================ +10:52:59 + + +waiting on router queue for slot.... +10:52:59 Sending to : +10:52:59 ============================================================================ +10:53:00 ============================================================================ +10:53:00 Slot Id : <376> +10:53:00 Transaction Type : REQUEST +10:53:00 Received From : +10:53:00 ============================================================================ +10:53:00 FNo. Len. Field Value +10:53:00 ============================================================================ +10:53:00 [ 1] [ 4] [0200] +10:53:00 [ 2] [ 16] [6213544002272307] +10:53:00 [ 3] [ 6] [300000] +10:53:00 [ 4] [ 12] [000000000000] +10:53:00 [ 7] [ 10] [0320105050] +10:53:00 [ 11] [ 6] [939753] +10:53:00 [ 12] [ 6] [105050] +10:53:00 [ 13] [ 4] [0320] +10:53:00 [ 15] [ 4] [0320] +10:53:00 [ 18] [ 4] [6011] +10:53:00 [ 19] [ 3] [418] +10:53:00 [ 22] [ 3] [021] +10:53:00 [ 25] [ 2] [01] +10:53:00 [ 28] [ 9] [D00000000] +10:53:00 [ 32] [ 6] [668899] +10:53:00 [ 35] [ 32] [6213544002272307=491212017230973] +10:53:00 [ 37] [ 12] [507902255410] +10:53:00 [ 41] [ 8] [03316003] +10:53:00 [ 42] [ 15] [APT ] +10:53:00 [ 43] [ 40] [ KONGSEDONE UNIT KONGSEDON] +10:53:00 [ 49] [ 3] [418] +10:53:00 [ 52] [ 16] [B5434005E3B5C1AD] +10:53:00 ============================================================================ +10:53:00 + + +waiting on router queue for slot.... +10:53:00 Sending to : <0> +10:53:00 ============================================================================ +10:53:00 ============================================================================ +10:53:00 Slot Id : <359> +10:53:00 Transaction Type : RESPONSE +10:53:00 Received From : +10:53:00 ============================================================================ +10:53:00 FNo. Len. Field Value +10:53:00 ============================================================================ +10:53:00 [ 1] [ 4] [0210] +10:53:00 [ 2] [ 16] [6688990105536401] +10:53:00 [ 3] [ 6] [011000] +10:53:00 [ 4] [ 12] [000050000000] +10:53:00 [ 11] [ 6] [720954] +10:53:00 [ 12] [ 6] [105254] +10:53:00 [ 15] [ 4] [0320] +10:53:00 [ 18] [ 4] [6011] +10:53:00 [ 32] [ 6] [621354] +10:53:00 [ 35] [ 37] [6688990105536401=43091231640105500000] +10:53:00 [ 37] [ 12] [507903883654] +10:53:00 [ 38] [ 6] [917187] +10:53:00 [ 39] [ 2] [00] +10:53:00 [ 41] [ 8] [01010400] +10:53:00 [ 49] [ 3] [418] +10:53:00 [ 54] [ 20] [1002418C000158879084] +10:53:00 ============================================================================ +10:53:00 Sending to : +10:53:00 ============================================================================ +10:53:00 + + +waiting on router queue for slot.... +10:53:00 ============================================================================ +10:53:00 Slot Id : <376> +10:53:00 Transaction Type : RESPONSE +10:53:00 Received From : +10:53:00 ============================================================================ +10:53:00 FNo. Len. Field Value +10:53:00 ============================================================================ +10:53:00 [ 1] [ 4] [0210] +10:53:00 [ 2] [ 16] [6213544002272307] +10:53:00 [ 3] [ 6] [300000] +10:53:00 [ 4] [ 12] [000000000000] +10:53:00 [ 7] [ 10] [0320105050] +10:53:00 [ 11] [ 6] [939753] +10:53:00 [ 12] [ 6] [105050] +10:53:00 [ 13] [ 4] [0320] +10:53:00 [ 15] [ 4] [0320] +10:53:00 [ 18] [ 4] [6011] +10:53:00 [ 19] [ 3] [418] +10:53:00 [ 32] [ 6] [668899] +10:53:00 [ 35] [ 32] [6213544002272307=491212017230973] +10:53:00 [ 37] [ 12] [507902255410] +10:53:00 [ 38] [ 6] [892118] +10:53:00 [ 39] [ 2] [00] +10:53:00 [ 41] [ 8] [03316003] +10:53:00 [ 49] [ 3] [418] +10:53:00 [ 54] [ 40] [0001764C0000000500000002764C000000050000] +10:53:00 ============================================================================ +10:53:00 Sending to : +10:53:00 ============================================================================ +10:53:00 + + +waiting on router queue for slot.... +10:53:01 ============================================================================ +10:53:01 Slot Id : <359> +10:53:01 Transaction Type : RESPONSE +10:53:01 Received From : +10:53:01 ============================================================================ +10:53:01 FNo. Len. Field Value +10:53:01 ============================================================================ +10:53:01 [ 1] [ 4] [0210] +10:53:01 [ 2] [ 16] [6688990105536401] +10:53:01 [ 3] [ 6] [011000] +10:53:01 [ 4] [ 12] [000050000000] +10:53:01 [ 11] [ 6] [720954] +10:53:01 [ 12] [ 6] [105254] +10:53:01 [ 15] [ 4] [0320] +10:53:01 [ 18] [ 4] [6011] +10:53:01 [ 32] [ 6] [621354] +10:53:01 [ 35] [ 37] [6688990105536401=43091231640105500000] +10:53:01 [ 37] [ 12] [507903883654] +10:53:01 [ 38] [ 6] [917187] +10:53:01 [ 39] [ 2] [00] +10:53:01 [ 41] [ 8] [01010400] +10:53:01 [ 49] [ 3] [418] +10:53:01 [ 54] [ 20] [1002418C000158879084] +10:53:01 ============================================================================ +10:53:01 Calculate Source COMM Id = 0 +10:53:01 ============================================================================ +10:53:01 + + +waiting on router queue for slot.... +10:53:02 ============================================================================ +10:53:02 Slot Id : <361> +10:53:02 Transaction Type : REQUEST +10:53:02 Received From : +10:53:02 ============================================================================ +10:53:02 FNo. Len. Field Value +10:53:02 ============================================================================ +10:53:02 [ 1] [ 4] [0800] +10:53:02 [ 7] [ 10] [0320035210] +10:53:02 [ 11] [ 6] [155957] +10:53:02 [ 70] [ 3] [301] +10:53:02 ============================================================================ +10:53:02 + + +waiting on router queue for slot.... +10:53:02 Sending to : +10:53:02 ============================================================================ +10:53:02 ============================================================================ +10:53:02 Slot Id : <361> +10:53:02 Transaction Type : RESPONSE +10:53:02 Received From : +10:53:02 ============================================================================ +10:53:02 FNo. Len. Field Value +10:53:02 ============================================================================ +10:53:02 [ 1] [ 4] [0810] +10:53:02 [ 7] [ 10] [0320035210] +10:53:02 [ 11] [ 6] [155957] +10:53:02 [ 39] [ 2] [00] +10:53:02 [ 70] [ 3] [301] +10:53:02 ============================================================================ +10:53:02 Calculate Source COMM Id = 2 +10:53:02 ============================================================================ +10:53:02 + + +waiting on router queue for slot.... +10:53:03 ============================================================================ +10:53:03 Slot Id : <376> +10:53:03 Transaction Type : RESPONSE +10:53:03 Received From : +10:53:03 ============================================================================ +10:53:03 FNo. Len. Field Value +10:53:03 ============================================================================ +10:53:03 [ 1] [ 4] [0210] +10:53:03 [ 2] [ 16] [6213544002272307] +10:53:03 [ 3] [ 6] [300000] +10:53:03 [ 4] [ 12] [000000000000] +10:53:03 [ 7] [ 10] [0320105050] +10:53:03 [ 11] [ 6] [939753] +10:53:03 [ 12] [ 6] [105050] +10:53:03 [ 13] [ 4] [0320] +10:53:03 [ 15] [ 4] [0320] +10:53:03 [ 18] [ 4] [6011] +10:53:03 [ 19] [ 3] [418] +10:53:03 [ 32] [ 6] [668899] +10:53:03 [ 35] [ 32] [6213544002272307=491212017230973] +10:53:03 [ 37] [ 12] [507902255410] +10:53:03 [ 38] [ 6] [892118] +10:53:03 [ 39] [ 2] [00] +10:53:03 [ 41] [ 8] [03316003] +10:53:03 [ 49] [ 3] [418] +10:53:03 [ 54] [ 40] [0001764C0000000500000002764C000000050000] +10:53:03 ============================================================================ +10:53:03 Calculate Source COMM Id = 4 +10:53:03 ============================================================================ +10:53:03 + + +waiting on router queue for slot.... +10:53:11 ============================================================================ +10:53:11 Slot Id : <374> +10:53:11 Transaction Type : REQUEST +10:53:11 Received From : +10:53:11 ============================================================================ +10:53:11 FNo. Len. Field Value +10:53:11 ============================================================================ +10:53:11 [ 1] [ 4] [0800] +10:53:11 [ 7] [ 10] [0320105258] +10:53:11 [ 11] [ 6] [076463] +10:53:11 [ 37] [ 12] [507910076463] +10:53:11 [ 70] [ 3] [ ] +10:53:11 ============================================================================ +10:53:11 + + +waiting on router queue for slot.... +10:53:11 Sending to : +10:53:11 ============================================================================ +10:53:11 ============================================================================ +10:53:11 Slot Id : <374> +10:53:11 Transaction Type : RESPONSE +10:53:11 Received From : +10:53:11 ============================================================================ +10:53:11 FNo. Len. Field Value +10:53:11 ============================================================================ +10:53:11 [ 1] [ 4] [0810] +10:53:11 [ 7] [ 10] [0320105258] +10:53:11 [ 11] [ 6] [076463] +10:53:11 [ 37] [ 12] [507910076463] +10:53:11 [ 39] [ 2] [91] +10:53:11 [ 70] [ 3] [ ] +10:53:11 ============================================================================ +10:53:11 Calculate Source COMM Id = 3 +10:53:11 ============================================================================ +10:53:11 + + +waiting on router queue for slot.... +10:53:19 ============================================================================ +10:53:19 Slot Id : <395> +10:53:19 Transaction Type : REQUEST +10:53:19 Received From : +10:53:19 ============================================================================ +10:53:19 FNo. Len. Field Value +10:53:19 ============================================================================ +10:53:19 [ 1] [ 4] [0800] +10:53:19 [ 7] [ 10] [0320035226] +10:53:19 [ 11] [ 6] [155958] +10:53:19 [ 70] [ 3] [301] +10:53:19 ============================================================================ +10:53:19 + + +waiting on router queue for slot.... +10:53:19 Sending to : +10:53:19 ============================================================================ +10:53:19 ============================================================================ +10:53:19 Slot Id : <395> +10:53:19 Transaction Type : RESPONSE +10:53:19 Received From : +10:53:19 ============================================================================ +10:53:19 FNo. Len. Field Value +10:53:19 ============================================================================ +10:53:19 [ 1] [ 4] [0810] +10:53:19 [ 7] [ 10] [0320035226] +10:53:19 [ 11] [ 6] [155958] +10:53:19 [ 39] [ 2] [00] +10:53:19 [ 70] [ 3] [301] +10:53:19 ============================================================================ +10:53:19 Calculate Source COMM Id = 2 +10:53:19 ============================================================================ +10:53:19 + + +waiting on router queue for slot.... +10:53:24 ============================================================================ +10:53:24 Slot Id : <410> +10:53:24 Transaction Type : REQUEST +10:53:24 Received From : +10:53:24 ============================================================================ +10:53:24 FNo. Len. Field Value +10:53:24 ============================================================================ +10:53:24 [ 1] [ 4] [0200] +10:53:24 [ 2] [ 16] [6213541000443872] +10:53:24 [ 3] [ 6] [011000] +10:53:24 [ 4] [ 12] [000020000000] +10:53:24 [ 7] [ 10] [0320035231] +10:53:24 [ 11] [ 6] [268260] +10:53:24 [ 12] [ 6] [105231] +10:53:24 [ 13] [ 4] [0320] +10:53:24 [ 14] [ 4] [4912] +10:53:24 [ 15] [ 4] [0320] +10:53:24 [ 18] [ 4] [6011] +10:53:24 [ 19] [ 3] [418] +10:53:24 [ 22] [ 3] [021] +10:53:24 [ 25] [ 2] [01] +10:53:24 [ 28] [ 9] [D00002000] +10:53:24 [ 32] [ 6] [180893] +10:53:24 [ 35] [ 32] [6213541000443872=491212014387642] +10:53:24 [ 37] [ 12] [507903268260] +10:53:24 [ 41] [ 8] [0363CPSH] +10:53:24 [ 42] [ 15] [999999 ] +10:53:24 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +10:53:24 [ 49] [ 3] [418] +10:53:24 [ 52] [ 16] [F132428EBDE343B5] +10:53:24 ============================================================================ +10:53:24 + + +waiting on router queue for slot.... +10:53:24 Sending to : +10:53:24 ============================================================================ +10:53:24 Sending to : +10:53:24 ============================================================================ +10:53:25 ============================================================================ +10:53:25 Slot Id : <410> +10:53:25 Transaction Type : REQUEST +10:53:25 Received From : +10:53:25 ============================================================================ +10:53:25 FNo. Len. Field Value +10:53:25 ============================================================================ +10:53:25 [ 1] [ 4] [0200] +10:53:25 [ 2] [ 16] [6213541000443872] +10:53:25 [ 3] [ 6] [011000] +10:53:25 [ 4] [ 12] [000020000000] +10:53:25 [ 7] [ 10] [0320035231] +10:53:25 [ 11] [ 6] [268260] +10:53:25 [ 12] [ 6] [105231] +10:53:25 [ 13] [ 4] [0320] +10:53:25 [ 14] [ 4] [4912] +10:53:25 [ 15] [ 4] [0320] +10:53:25 [ 18] [ 4] [6011] +10:53:25 [ 19] [ 3] [418] +10:53:25 [ 22] [ 3] [021] +10:53:25 [ 25] [ 2] [01] +10:53:25 [ 28] [ 9] [D00002000] +10:53:25 [ 32] [ 6] [180893] +10:53:25 [ 35] [ 32] [6213541000443872=491212014387642] +10:53:25 [ 37] [ 12] [507903268260] +10:53:25 [ 41] [ 8] [0363CPSH] +10:53:25 [ 42] [ 15] [999999 ] +10:53:25 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +10:53:25 [ 49] [ 3] [418] +10:53:25 [ 52] [ 16] [F132428EBDE343B5] +10:53:25 ============================================================================ +10:53:25 + + +waiting on router queue for slot.... +10:53:25 Sending to : +10:53:25 ============================================================================ +10:53:25 ============================================================================ +10:53:25 Slot Id : <410> +10:53:25 Transaction Type : REQUEST +10:53:25 Received From : +10:53:25 ============================================================================ +10:53:25 FNo. Len. Field Value +10:53:25 ============================================================================ +10:53:25 [ 1] [ 4] [0200] +10:53:25 [ 2] [ 16] [6213541000443872] +10:53:25 [ 3] [ 6] [011000] +10:53:25 [ 4] [ 12] [000020000000] +10:53:25 [ 7] [ 10] [0320035231] +10:53:25 [ 11] [ 6] [268260] +10:53:25 [ 12] [ 6] [105231] +10:53:25 [ 13] [ 4] [0320] +10:53:25 [ 14] [ 4] [4912] +10:53:25 [ 15] [ 4] [0320] +10:53:25 [ 18] [ 4] [6011] +10:53:25 [ 19] [ 3] [418] +10:53:25 [ 22] [ 3] [021] +10:53:25 [ 25] [ 2] [01] +10:53:25 [ 28] [ 9] [D00002000] +10:53:25 [ 32] [ 6] [180893] +10:53:25 [ 35] [ 32] [6213541000443872=491212014387642] +10:53:25 [ 37] [ 12] [507903268260] +10:53:25 [ 41] [ 8] [0363CPSH] +10:53:25 [ 42] [ 15] [999999 ] +10:53:25 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +10:53:25 [ 49] [ 3] [418] +10:53:25 [ 52] [ 16] [996E33C7576B321B] +10:53:25 ============================================================================ +10:53:25 + + +waiting on router queue for slot.... +10:53:25 Sending to : <0> +10:53:25 ============================================================================ +10:53:25 ============================================================================ +10:53:25 Slot Id : <410> +10:53:25 Transaction Type : RESPONSE +10:53:25 Received From : +10:53:25 ============================================================================ +10:53:25 FNo. Len. Field Value +10:53:25 ============================================================================ +10:53:25 [ 1] [ 4] [0210] +10:53:25 [ 2] [ 16] [6213541000443872] +10:53:25 [ 3] [ 6] [011000] +10:53:25 [ 4] [ 12] [000020000000] +10:53:25 [ 7] [ 10] [0320035231] +10:53:25 [ 11] [ 6] [268260] +10:53:25 [ 12] [ 6] [105231] +10:53:25 [ 13] [ 4] [0320] +10:53:25 [ 15] [ 4] [0320] +10:53:25 [ 18] [ 4] [6011] +10:53:25 [ 19] [ 3] [418] +10:53:25 [ 32] [ 6] [180893] +10:53:25 [ 35] [ 32] [6213541000443872=491212014387642] +10:53:25 [ 37] [ 12] [507903268260] +10:53:25 [ 38] [ 6] [025115] +10:53:25 [ 39] [ 2] [00] +10:53:25 [ 41] [ 8] [0363CPSH] +10:53:25 [ 49] [ 3] [418] +10:53:25 [ 54] [ 40] [1001418C0118918085001002418C011891808500] +10:53:25 ============================================================================ +10:53:25 Sending to : +10:53:25 ============================================================================ +10:53:25 + + +waiting on router queue for slot.... +10:53:27 ============================================================================ +10:53:27 Slot Id : <410> +10:53:27 Transaction Type : RESPONSE +10:53:27 Received From : +10:53:27 ============================================================================ +10:53:27 FNo. Len. Field Value +10:53:27 ============================================================================ +10:53:27 [ 1] [ 4] [0210] +10:53:27 [ 2] [ 16] [6213541000443872] +10:53:27 [ 3] [ 6] [011000] +10:53:27 [ 4] [ 12] [000020000000] +10:53:27 [ 7] [ 10] [0320035231] +10:53:27 [ 11] [ 6] [268260] +10:53:27 [ 12] [ 6] [105231] +10:53:27 [ 13] [ 4] [0320] +10:53:27 [ 15] [ 4] [0320] +10:53:27 [ 18] [ 4] [6011] +10:53:27 [ 19] [ 3] [418] +10:53:27 [ 32] [ 6] [180893] +10:53:27 [ 35] [ 32] [6213541000443872=491212014387642] +10:53:27 [ 37] [ 12] [507903268260] +10:53:27 [ 38] [ 6] [025115] +10:53:27 [ 39] [ 2] [00] +10:53:27 [ 41] [ 8] [0363CPSH] +10:53:27 [ 49] [ 3] [418] +10:53:27 [ 54] [ 40] [1001418C0118918085001002418C011891808500] +10:53:27 ============================================================================ +10:53:27 Calculate Source COMM Id = 2 +10:53:27 ============================================================================ +10:53:27 + + +waiting on router queue for slot.... +10:53:36 ============================================================================ +10:53:36 Slot Id : <383> +10:53:36 Transaction Type : REQUEST +10:53:36 Received From : +10:53:36 ============================================================================ +10:53:36 FNo. Len. Field Value +10:53:36 ============================================================================ +10:53:36 [ 1] [ 4] [0200] +10:53:36 [ 2] [ 16] [6213548000559086] +10:53:36 [ 3] [ 6] [011000] +10:53:36 [ 4] [ 12] [000100000000] +10:53:36 [ 7] [ 10] [0320105357] +10:53:36 [ 11] [ 6] [204179] +10:53:36 [ 12] [ 6] [225208] +10:53:36 [ 13] [ 4] [0319] +10:53:36 [ 14] [ 4] [1902] +10:53:36 [ 15] [ 4] [0319] +10:53:36 [ 18] [ 4] [6011] +10:53:36 [ 19] [ 3] [418] +10:53:36 [ 22] [ 3] [021] +10:53:36 [ 25] [ 2] [01] +10:53:36 [ 28] [ 9] [D00002000] +10:53:36 [ 32] [ 6] [198901] +10:53:36 [ 35] [ 32] [6213548000559086=190212015908570] +10:53:36 [ 37] [ 12] [507910204179] +10:53:36 [ 41] [ 8] [01529031] +10:53:36 [ 42] [ 15] [000000041529031] +10:53:36 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +10:53:36 [ 49] [ 3] [418] +10:53:36 [ 52] [ 16] [E24D1AC6727B3794] +10:53:36 ============================================================================ +10:53:36 + + +waiting on router queue for slot.... +10:53:36 Sending to : +10:53:36 ============================================================================ +10:53:36 Sending to : +10:53:36 ============================================================================ +10:53:36 ============================================================================ +10:53:36 Slot Id : <383> +10:53:36 Transaction Type : REQUEST +10:53:36 Received From : +10:53:36 ============================================================================ +10:53:36 FNo. Len. Field Value +10:53:36 ============================================================================ +10:53:36 [ 1] [ 4] [0200] +10:53:36 [ 2] [ 16] [6213548000559086] +10:53:36 [ 3] [ 6] [011000] +10:53:36 [ 4] [ 12] [000100000000] +10:53:36 [ 7] [ 10] [0320105357] +10:53:36 [ 11] [ 6] [204179] +10:53:36 [ 12] [ 6] [225208] +10:53:36 [ 13] [ 4] [0319] +10:53:36 [ 14] [ 4] [1902] +10:53:36 [ 15] [ 4] [0319] +10:53:36 [ 18] [ 4] [6011] +10:53:36 [ 19] [ 3] [418] +10:53:36 [ 22] [ 3] [021] +10:53:36 [ 25] [ 2] [01] +10:53:36 [ 28] [ 9] [D00002000] +10:53:36 [ 32] [ 6] [198901] +10:53:36 [ 35] [ 32] [6213548000559086=190212015908570] +10:53:36 [ 37] [ 12] [507910204179] +10:53:36 [ 41] [ 8] [01529031] +10:53:36 [ 42] [ 15] [000000041529031] +10:53:36 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +10:53:36 [ 49] [ 3] [418] +10:53:36 [ 52] [ 16] [E24D1AC6727B3794] +10:53:36 ============================================================================ +10:53:36 + + +waiting on router queue for slot.... +10:53:36 Sending to : +10:53:36 ============================================================================ +10:53:36 ============================================================================ +10:53:36 Slot Id : <383> +10:53:36 Transaction Type : REQUEST +10:53:36 Received From : +10:53:36 ============================================================================ +10:53:36 FNo. Len. Field Value +10:53:36 ============================================================================ +10:53:36 [ 1] [ 4] [0200] +10:53:36 [ 2] [ 16] [6213548000559086] +10:53:36 [ 3] [ 6] [011000] +10:53:36 [ 4] [ 12] [000100000000] +10:53:36 [ 7] [ 10] [0320105357] +10:53:36 [ 11] [ 6] [204179] +10:53:36 [ 12] [ 6] [225208] +10:53:36 [ 13] [ 4] [0319] +10:53:36 [ 14] [ 4] [1902] +10:53:36 [ 15] [ 4] [0319] +10:53:36 [ 18] [ 4] [6011] +10:53:36 [ 19] [ 3] [418] +10:53:36 [ 22] [ 3] [021] +10:53:36 [ 25] [ 2] [01] +10:53:36 [ 28] [ 9] [D00002000] +10:53:36 [ 32] [ 6] [198901] +10:53:36 [ 35] [ 32] [6213548000559086=190212015908570] +10:53:36 [ 37] [ 12] [507910204179] +10:53:36 [ 41] [ 8] [01529031] +10:53:36 [ 42] [ 15] [000000041529031] +10:53:36 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +10:53:36 [ 49] [ 3] [418] +10:53:36 [ 52] [ 16] [96555B1745BCD9D1] +10:53:36 ============================================================================ +10:53:36 + + +waiting on router queue for slot.... +10:53:36 Sending to : <0> +10:53:36 ============================================================================ +10:53:36 ============================================================================ +10:53:36 Slot Id : <383> +10:53:36 Transaction Type : RESPONSE +10:53:36 Received From : +10:53:36 ============================================================================ +10:53:36 FNo. Len. Field Value +10:53:36 ============================================================================ +10:53:36 [ 1] [ 4] [0210] +10:53:36 [ 2] [ 16] [6213548000559086] +10:53:36 [ 3] [ 6] [011000] +10:53:36 [ 4] [ 12] [000100000000] +10:53:36 [ 7] [ 10] [0320105357] +10:53:36 [ 11] [ 6] [204179] +10:53:36 [ 12] [ 6] [225208] +10:53:36 [ 13] [ 4] [0319] +10:53:36 [ 15] [ 4] [0319] +10:53:36 [ 18] [ 4] [6011] +10:53:36 [ 19] [ 3] [418] +10:53:36 [ 32] [ 6] [198901] +10:53:36 [ 35] [ 32] [6213548000559086=190212015908570] +10:53:36 [ 37] [ 12] [507910204179] +10:53:36 [ 38] [ 6] [204179] +10:53:36 [ 39] [ 2] [51] +10:53:36 [ 41] [ 8] [01529031] +10:53:36 [ 49] [ 3] [418] +10:53:36 [ 54] [ 40] [1001418C0000550275341002418C000055027534] +10:53:36 ============================================================================ +10:53:36 Sending to : +10:53:36 ============================================================================ +10:53:36 + + +waiting on router queue for slot.... +10:53:38 ============================================================================ +10:53:38 Slot Id : <383> +10:53:38 Transaction Type : RESPONSE +10:53:38 Received From : +10:53:38 ============================================================================ +10:53:38 FNo. Len. Field Value +10:53:38 ============================================================================ +10:53:38 [ 1] [ 4] [0210] +10:53:38 [ 2] [ 16] [6213548000559086] +10:53:38 [ 3] [ 6] [011000] +10:53:38 [ 4] [ 12] [000100000000] +10:53:38 [ 7] [ 10] [0320105357] +10:53:38 [ 11] [ 6] [204179] +10:53:38 [ 12] [ 6] [225208] +10:53:38 [ 13] [ 4] [0319] +10:53:38 [ 15] [ 4] [0319] +10:53:38 [ 18] [ 4] [6011] +10:53:38 [ 19] [ 3] [418] +10:53:38 [ 32] [ 6] [198901] +10:53:38 [ 35] [ 32] [6213548000559086=190212015908570] +10:53:38 [ 37] [ 12] [507910204179] +10:53:38 [ 38] [ 6] [204179] +10:53:38 [ 39] [ 2] [51] +10:53:38 [ 41] [ 8] [01529031] +10:53:38 [ 49] [ 3] [418] +10:53:38 [ 54] [ 40] [1001418C0000550275341002418C000055027534] +10:53:38 ============================================================================ +10:53:38 Calculate Source COMM Id = 5 +10:53:38 ============================================================================ +10:53:38 + + +waiting on router queue for slot.... +10:53:40 ============================================================================ +10:53:40 Slot Id : <393> +10:53:40 Transaction Type : REQUEST +10:53:40 Received From : +10:53:40 ============================================================================ +10:53:40 FNo. Len. Field Value +10:53:40 ============================================================================ +10:53:40 [ 1] [ 4] [0800] +10:53:40 [ 7] [ 10] [0320035247] +10:53:40 [ 11] [ 6] [155959] +10:53:40 [ 70] [ 3] [301] +10:53:40 ============================================================================ +10:53:40 + + +waiting on router queue for slot.... +10:53:40 Sending to : +10:53:40 ============================================================================ +10:53:40 ============================================================================ +10:53:40 Slot Id : <393> +10:53:40 Transaction Type : RESPONSE +10:53:40 Received From : +10:53:40 ============================================================================ +10:53:40 FNo. Len. Field Value +10:53:40 ============================================================================ +10:53:40 [ 1] [ 4] [0810] +10:53:40 [ 7] [ 10] [0320035247] +10:53:40 [ 11] [ 6] [155959] +10:53:40 [ 39] [ 2] [00] +10:53:40 [ 70] [ 3] [301] +10:53:40 ============================================================================ +10:53:40 Calculate Source COMM Id = 2 +10:53:40 ============================================================================ +10:53:40 + + +waiting on router queue for slot.... +10:53:42 ============================================================================ +10:53:42 Slot Id : <400> +10:53:42 Transaction Type : REQUEST +10:53:42 Received From : +10:53:42 ============================================================================ +10:53:42 FNo. Len. Field Value +10:53:42 ============================================================================ +10:53:42 [ 1] [ 4] [0800] +10:53:42 [ 2] [ 5] [02531] +10:53:42 [ 3] [ 6] [579108] +10:53:42 [ 7] [ 10] [0320035342] +10:53:42 [ 11] [ 6] [807044] +10:53:42 [ 15] [ 10] [0320035342] +10:53:42 [ 37] [ 11] [57910807044] +10:53:42 [ 70] [ 3] [001] +10:53:42 ============================================================================ +10:53:42 + + +waiting on router queue for slot.... +10:53:42 ============================================================================ +10:53:42 Slot Id : <400> +10:53:42 Transaction Type : RESPONSE +10:53:42 Received From : +10:53:42 ============================================================================ +10:53:42 FNo. Len. Field Value +10:53:42 ============================================================================ +10:53:42 [ 1] [ 4] [0810] +10:53:42 [ 7] [ 10] [0320035342] +10:53:42 [ 11] [ 6] [807044] +10:53:42 [ 15] [ 4] [0320] +10:53:42 [ 37] [ 12] [57910807044] +10:53:42 [ 39] [ 2] [00] +10:53:42 [ 70] [ 3] [001] +10:53:42 ============================================================================ +10:53:42 Sending to : +10:53:42 ============================================================================ +10:53:42 + + +waiting on router queue for slot.... +10:53:50 ============================================================================ +10:53:50 Slot Id : <413> +10:53:50 Transaction Type : REQUEST +10:53:50 Received From : +10:53:50 ============================================================================ +10:53:50 FNo. Len. Field Value +10:53:50 ============================================================================ +10:53:50 [ 1] [ 4] [0800] +10:53:50 [ 7] [ 10] [0320035258] +10:53:50 [ 11] [ 6] [155960] +10:53:50 [ 70] [ 3] [301] +10:53:50 ============================================================================ +10:53:50 + + +waiting on router queue for slot.... +10:53:50 Sending to : +10:53:50 ============================================================================ +10:53:50 ============================================================================ +10:53:50 Slot Id : <413> +10:53:50 Transaction Type : RESPONSE +10:53:50 Received From : +10:53:50 ============================================================================ +10:53:50 FNo. Len. Field Value +10:53:50 ============================================================================ +10:53:50 [ 1] [ 4] [0810] +10:53:50 [ 7] [ 10] [0320035258] +10:53:50 [ 11] [ 6] [155960] +10:53:50 [ 39] [ 2] [00] +10:53:50 [ 70] [ 3] [301] +10:53:50 ============================================================================ +10:53:50 Calculate Source COMM Id = 2 +10:53:50 ============================================================================ +10:53:50 + + +waiting on router queue for slot.... +10:53:52 ============================================================================ +10:53:52 Slot Id : <397> +10:53:52 Transaction Type : REQUEST +10:53:52 Received From : +10:53:52 ============================================================================ +10:53:52 FNo. Len. Field Value +10:53:52 ============================================================================ +10:53:52 [ 1] [ 4] [0200] +10:53:52 [ 2] [ 16] [6213541000634413] +10:53:52 [ 3] [ 6] [301000] +10:53:52 [ 7] [ 10] [0320035300] +10:53:52 [ 11] [ 6] [268263] +10:53:52 [ 12] [ 6] [105300] +10:53:52 [ 13] [ 4] [0320] +10:53:52 [ 14] [ 4] [4912] +10:53:52 [ 15] [ 4] [0320] +10:53:52 [ 18] [ 4] [6011] +10:53:52 [ 19] [ 3] [418] +10:53:52 [ 22] [ 3] [021] +10:53:52 [ 25] [ 2] [01] +10:53:52 [ 32] [ 6] [180893] +10:53:52 [ 35] [ 32] [6213541000634413=491212013441996] +10:53:52 [ 37] [ 12] [507903268263] +10:53:52 [ 41] [ 8] [0529LPBF] +10:53:52 [ 42] [ 15] [999999 ] +10:53:52 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +10:53:52 [ 49] [ 3] [418] +10:53:52 [ 52] [ 16] [8EA7685FB4973EAC] +10:53:52 ============================================================================ +10:53:52 + + +waiting on router queue for slot.... +10:53:52 Sending to : +10:53:52 ============================================================================ +10:53:52 Sending to : +10:53:52 ============================================================================ +10:53:53 ============================================================================ +10:53:53 Slot Id : <397> +10:53:53 Transaction Type : REQUEST +10:53:53 Received From : +10:53:53 ============================================================================ +10:53:53 FNo. Len. Field Value +10:53:53 ============================================================================ +10:53:53 [ 1] [ 4] [0200] +10:53:53 [ 2] [ 16] [6213541000634413] +10:53:53 [ 3] [ 6] [301000] +10:53:53 [ 7] [ 10] [0320035300] +10:53:53 [ 11] [ 6] [268263] +10:53:53 [ 12] [ 6] [105300] +10:53:53 [ 13] [ 4] [0320] +10:53:53 [ 14] [ 4] [4912] +10:53:53 [ 15] [ 4] [0320] +10:53:53 [ 18] [ 4] [6011] +10:53:53 [ 19] [ 3] [418] +10:53:53 [ 22] [ 3] [021] +10:53:53 [ 25] [ 2] [01] +10:53:53 [ 32] [ 6] [180893] +10:53:53 [ 35] [ 32] [6213541000634413=491212013441996] +10:53:53 [ 37] [ 12] [507903268263] +10:53:53 [ 41] [ 8] [0529LPBF] +10:53:53 [ 42] [ 15] [999999 ] +10:53:53 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +10:53:53 [ 49] [ 3] [418] +10:53:53 [ 52] [ 16] [8EA7685FB4973EAC] +10:53:53 ============================================================================ +10:53:53 + + +waiting on router queue for slot.... +10:53:53 Sending to : +10:53:53 ============================================================================ +10:53:53 ============================================================================ +10:53:53 Slot Id : <397> +10:53:53 Transaction Type : REQUEST +10:53:53 Received From : +10:53:53 ============================================================================ +10:53:53 FNo. Len. Field Value +10:53:53 ============================================================================ +10:53:53 [ 1] [ 4] [0200] +10:53:53 [ 2] [ 16] [6213541000634413] +10:53:53 [ 3] [ 6] [301000] +10:53:53 [ 7] [ 10] [0320035300] +10:53:53 [ 11] [ 6] [268263] +10:53:53 [ 12] [ 6] [105300] +10:53:53 [ 13] [ 4] [0320] +10:53:53 [ 14] [ 4] [4912] +10:53:53 [ 15] [ 4] [0320] +10:53:53 [ 18] [ 4] [6011] +10:53:53 [ 19] [ 3] [418] +10:53:53 [ 22] [ 3] [021] +10:53:53 [ 25] [ 2] [01] +10:53:53 [ 32] [ 6] [180893] +10:53:53 [ 35] [ 32] [6213541000634413=491212013441996] +10:53:53 [ 37] [ 12] [507903268263] +10:53:53 [ 41] [ 8] [0529LPBF] +10:53:53 [ 42] [ 15] [999999 ] +10:53:53 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +10:53:53 [ 49] [ 3] [418] +10:53:53 [ 52] [ 16] [2EDB84ACF312AB58] +10:53:53 ============================================================================ +10:53:53 + + +waiting on router queue for slot.... +10:53:53 Sending to : <0> +10:53:53 ============================================================================ +10:53:53 ============================================================================ +10:53:53 Slot Id : <397> +10:53:53 Transaction Type : RESPONSE +10:53:53 Received From : +10:53:53 ============================================================================ +10:53:53 FNo. Len. Field Value +10:53:53 ============================================================================ +10:53:53 [ 1] [ 4] [0210] +10:53:53 [ 2] [ 16] [6213541000634413] +10:53:53 [ 3] [ 6] [301000] +10:53:53 [ 4] [ 12] [000000000000] +10:53:53 [ 7] [ 10] [0320035300] +10:53:53 [ 11] [ 6] [268263] +10:53:53 [ 12] [ 6] [105300] +10:53:53 [ 13] [ 4] [0320] +10:53:53 [ 15] [ 4] [0320] +10:53:53 [ 18] [ 4] [6011] +10:53:53 [ 19] [ 3] [418] +10:53:53 [ 32] [ 6] [180893] +10:53:53 [ 35] [ 32] [6213541000634413=491212013441996] +10:53:53 [ 37] [ 12] [507903268263] +10:53:53 [ 38] [ 6] [966726] +10:53:53 [ 39] [ 2] [00] +10:53:53 [ 41] [ 8] [0529LPBF] +10:53:53 [ 49] [ 3] [418] +10:53:53 [ 54] [ 40] [1001418C0002916963581002418C000291696358] +10:53:53 ============================================================================ +10:53:53 Sending to : +10:53:53 ============================================================================ +10:53:53 + + +waiting on router queue for slot.... +10:53:55 ============================================================================ +10:53:55 Slot Id : <397> +10:53:55 Transaction Type : RESPONSE +10:53:55 Received From : +10:53:55 ============================================================================ +10:53:55 FNo. Len. Field Value +10:53:55 ============================================================================ +10:53:55 [ 1] [ 4] [0210] +10:53:55 [ 2] [ 16] [6213541000634413] +10:53:55 [ 3] [ 6] [301000] +10:53:55 [ 4] [ 12] [000000000000] +10:53:55 [ 7] [ 10] [0320035300] +10:53:55 [ 11] [ 6] [268263] +10:53:55 [ 12] [ 6] [105300] +10:53:55 [ 13] [ 4] [0320] +10:53:55 [ 15] [ 4] [0320] +10:53:55 [ 18] [ 4] [6011] +10:53:55 [ 19] [ 3] [418] +10:53:55 [ 32] [ 6] [180893] +10:53:55 [ 35] [ 32] [6213541000634413=491212013441996] +10:53:55 [ 37] [ 12] [507903268263] +10:53:55 [ 38] [ 6] [966726] +10:53:55 [ 39] [ 2] [00] +10:53:55 [ 41] [ 8] [0529LPBF] +10:53:55 [ 49] [ 3] [418] +10:53:55 [ 54] [ 40] [1001418C0002916963581002418C000291696358] +10:53:55 ============================================================================ +10:53:55 Calculate Source COMM Id = 2 +10:53:55 ============================================================================ +10:53:55 + + +waiting on router queue for slot.... +10:54:01 ============================================================================ +10:54:01 Slot Id : <349> +10:54:01 Transaction Type : REQUEST +10:54:01 Received From : +10:54:01 ============================================================================ +10:54:01 FNo. Len. Field Value +10:54:01 ============================================================================ +10:54:01 [ 1] [ 4] [0200] +10:54:01 [ 2] [ 16] [6213545001065220] +10:54:01 [ 3] [ 6] [011000] +10:54:01 [ 4] [ 12] [000060000000] +10:54:01 [ 7] [ 10] [0320035309] +10:54:01 [ 11] [ 6] [268267] +10:54:01 [ 12] [ 6] [105309] +10:54:01 [ 13] [ 4] [0320] +10:54:01 [ 14] [ 4] [4912] +10:54:01 [ 15] [ 4] [0320] +10:54:01 [ 18] [ 4] [6011] +10:54:01 [ 19] [ 3] [418] +10:54:01 [ 22] [ 3] [021] +10:54:01 [ 25] [ 2] [01] +10:54:01 [ 28] [ 9] [D00002000] +10:54:01 [ 32] [ 6] [180893] +10:54:01 [ 35] [ 32] [6213545001065220=491212016522253] +10:54:01 [ 37] [ 12] [507903268267] +10:54:01 [ 41] [ 8] [0324BKDT] +10:54:01 [ 42] [ 15] [999999 ] +10:54:01 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:54:01 [ 49] [ 3] [418] +10:54:01 [ 52] [ 16] [A99719B03A779A39] +10:54:01 ============================================================================ +10:54:01 + + +waiting on router queue for slot.... +10:54:01 Sending to : +10:54:01 ============================================================================ +10:54:01 Sending to : +10:54:01 ============================================================================ +10:54:02 ============================================================================ +10:54:02 Slot Id : <349> +10:54:02 Transaction Type : REQUEST +10:54:02 Received From : +10:54:02 ============================================================================ +10:54:02 FNo. Len. Field Value +10:54:02 ============================================================================ +10:54:02 [ 1] [ 4] [0200] +10:54:02 [ 2] [ 16] [6213545001065220] +10:54:02 [ 3] [ 6] [011000] +10:54:02 [ 4] [ 12] [000060000000] +10:54:02 [ 7] [ 10] [0320035309] +10:54:02 [ 11] [ 6] [268267] +10:54:02 [ 12] [ 6] [105309] +10:54:02 [ 13] [ 4] [0320] +10:54:02 [ 14] [ 4] [4912] +10:54:02 [ 15] [ 4] [0320] +10:54:02 [ 18] [ 4] [6011] +10:54:02 [ 19] [ 3] [418] +10:54:02 [ 22] [ 3] [021] +10:54:02 [ 25] [ 2] [01] +10:54:02 [ 28] [ 9] [D00002000] +10:54:02 [ 32] [ 6] [180893] +10:54:02 [ 35] [ 32] [6213545001065220=491212016522253] +10:54:02 [ 37] [ 12] [507903268267] +10:54:02 [ 41] [ 8] [0324BKDT] +10:54:02 [ 42] [ 15] [999999 ] +10:54:02 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:54:02 [ 49] [ 3] [418] +10:54:02 [ 52] [ 16] [A99719B03A779A39] +10:54:02 ============================================================================ +10:54:02 + + +waiting on router queue for slot.... +10:54:02 Sending to : +10:54:02 ============================================================================ +10:54:02 ============================================================================ +10:54:02 Slot Id : <349> +10:54:02 Transaction Type : REQUEST +10:54:02 Received From : +10:54:02 ============================================================================ +10:54:02 FNo. Len. Field Value +10:54:02 ============================================================================ +10:54:02 [ 1] [ 4] [0200] +10:54:02 [ 2] [ 16] [6213545001065220] +10:54:02 [ 3] [ 6] [011000] +10:54:02 [ 4] [ 12] [000060000000] +10:54:02 [ 7] [ 10] [0320035309] +10:54:02 [ 11] [ 6] [268267] +10:54:02 [ 12] [ 6] [105309] +10:54:02 [ 13] [ 4] [0320] +10:54:02 [ 14] [ 4] [4912] +10:54:02 [ 15] [ 4] [0320] +10:54:02 [ 18] [ 4] [6011] +10:54:02 [ 19] [ 3] [418] +10:54:02 [ 22] [ 3] [021] +10:54:02 [ 25] [ 2] [01] +10:54:02 [ 28] [ 9] [D00002000] +10:54:02 [ 32] [ 6] [180893] +10:54:02 [ 35] [ 32] [6213545001065220=491212016522253] +10:54:02 [ 37] [ 12] [507903268267] +10:54:02 [ 41] [ 8] [0324BKDT] +10:54:02 [ 42] [ 15] [999999 ] +10:54:02 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +10:54:02 [ 49] [ 3] [418] +10:54:02 [ 52] [ 16] [92AC46B4B8D0B02B] +10:54:02 ============================================================================ +10:54:02 + + +waiting on router queue for slot.... +10:54:02 Sending to : <0> +10:54:02 ============================================================================ +10:54:02 ============================================================================ +10:54:02 Slot Id : <349> +10:54:02 Transaction Type : RESPONSE +10:54:02 Received From : +10:54:02 ============================================================================ +10:54:02 FNo. Len. Field Value +10:54:02 ============================================================================ +10:54:02 [ 1] [ 4] [0210] +10:54:02 [ 2] [ 16] [6213545001065220] +10:54:02 [ 3] [ 6] [011000] +10:54:02 [ 4] [ 12] [000060000000] +10:54:02 [ 7] [ 10] [0320035309] +10:54:02 [ 11] [ 6] [268267] +10:54:02 [ 12] [ 6] [105309] +10:54:02 [ 13] [ 4] [0320] +10:54:02 [ 15] [ 4] [0320] +10:54:02 [ 18] [ 4] [6011] +10:54:02 [ 19] [ 3] [418] +10:54:02 [ 32] [ 6] [180893] +10:54:02 [ 35] [ 32] [6213545001065220=491212016522253] +10:54:02 [ 37] [ 12] [507903268267] +10:54:02 [ 38] [ 6] [182349] +10:54:02 [ 39] [ 2] [00] +10:54:02 [ 41] [ 8] [0324BKDT] +10:54:02 [ 49] [ 3] [418] +10:54:02 [ 54] [ 40] [1001418C0000092271661002418C000009227166] +10:54:02 ============================================================================ +10:54:02 Sending to : +10:54:02 ============================================================================ +10:54:02 + + +waiting on router queue for slot.... +10:54:04 ============================================================================ +10:54:04 Slot Id : <349> +10:54:04 Transaction Type : RESPONSE +10:54:04 Received From : +10:54:04 ============================================================================ +10:54:04 FNo. Len. Field Value +10:54:04 ============================================================================ +10:54:04 [ 1] [ 4] [0210] +10:54:04 [ 2] [ 16] [6213545001065220] +10:54:04 [ 3] [ 6] [011000] +10:54:04 [ 4] [ 12] [000060000000] +10:54:04 [ 7] [ 10] [0320035309] +10:54:04 [ 11] [ 6] [268267] +10:54:04 [ 12] [ 6] [105309] +10:54:04 [ 13] [ 4] [0320] +10:54:04 [ 15] [ 4] [0320] +10:54:04 [ 18] [ 4] [6011] +10:54:04 [ 19] [ 3] [418] +10:54:04 [ 32] [ 6] [180893] +10:54:04 [ 35] [ 32] [6213545001065220=491212016522253] +10:54:04 [ 37] [ 12] [507903268267] +10:54:04 [ 38] [ 6] [182349] +10:54:04 [ 39] [ 2] [00] +10:54:04 [ 41] [ 8] [0324BKDT] +10:54:04 [ 49] [ 3] [418] +10:54:04 [ 54] [ 40] [1001418C0000092271661002418C000009227166] +10:54:04 ============================================================================ +10:54:04 Calculate Source COMM Id = 2 +10:54:04 ============================================================================ +10:54:04 + + +waiting on router queue for slot.... +10:54:04 ============================================================================ +10:54:04 Slot Id : <414> +10:54:04 Transaction Type : REQUEST +10:54:04 Received From : +10:54:04 ============================================================================ +10:54:04 FNo. Len. Field Value +10:54:04 ============================================================================ +10:54:04 [ 1] [ 4] [0200] +10:54:04 [ 2] [ 16] [2206990000123471] +10:54:04 [ 3] [ 6] [010000] +10:54:04 [ 4] [ 12] [000030000000] +10:54:04 [ 7] [ 10] [0320105155] +10:54:04 [ 11] [ 6] [939791] +10:54:04 [ 12] [ 6] [105155] +10:54:04 [ 13] [ 4] [0320] +10:54:04 [ 15] [ 4] [0320] +10:54:04 [ 18] [ 4] [6011] +10:54:04 [ 19] [ 3] [418] +10:54:04 [ 22] [ 3] [021] +10:54:04 [ 25] [ 2] [01] +10:54:04 [ 28] [ 9] [D00002000] +10:54:04 [ 32] [ 6] [668899] +10:54:04 [ 35] [ 32] [2206990000123471=980312617713807] +10:54:04 [ 37] [ 12] [507900771431] +10:54:04 [ 41] [ 8] [03005001] +10:54:04 [ 42] [ 15] [APT ] +10:54:04 [ 43] [ 40] [ OUDOMSAY BRANCH OFFICE OU] +10:54:04 [ 49] [ 3] [418] +10:54:04 [ 52] [ 16] [C5000BA402B55C20] +10:54:04 ============================================================================ +10:54:04 + + +waiting on router queue for slot.... +10:54:04 Sending to : +10:54:04 ============================================================================ +10:54:04 Sending to : +10:54:04 ============================================================================ +10:54:04 ============================================================================ +10:54:04 Slot Id : <414> +10:54:04 Transaction Type : REQUEST +10:54:04 Received From : +10:54:04 ============================================================================ +10:54:04 FNo. Len. Field Value +10:54:04 ============================================================================ +10:54:04 [ 1] [ 4] [0200] +10:54:04 [ 2] [ 16] [2206990000123471] +10:54:04 [ 3] [ 6] [010000] +10:54:04 [ 4] [ 12] [000030000000] +10:54:04 [ 7] [ 10] [0320105155] +10:54:04 [ 11] [ 6] [939791] +10:54:04 [ 12] [ 6] [105155] +10:54:04 [ 13] [ 4] [0320] +10:54:04 [ 15] [ 4] [0320] +10:54:04 [ 18] [ 4] [6011] +10:54:04 [ 19] [ 3] [418] +10:54:04 [ 22] [ 3] [021] +10:54:04 [ 25] [ 2] [01] +10:54:04 [ 28] [ 9] [D00002000] +10:54:04 [ 32] [ 6] [668899] +10:54:04 [ 35] [ 32] [2206990000123471=980312617713807] +10:54:04 [ 37] [ 12] [507900771431] +10:54:04 [ 41] [ 8] [03005001] +10:54:04 [ 42] [ 15] [APT ] +10:54:04 [ 43] [ 40] [ OUDOMSAY BRANCH OFFICE OU] +10:54:04 [ 49] [ 3] [418] +10:54:04 [ 52] [ 16] [C5000BA402B55C20] +10:54:04 ============================================================================ +10:54:04 + + +waiting on router queue for slot.... +10:54:04 Sending to : +10:54:04 ============================================================================ +10:54:04 ============================================================================ +10:54:04 Slot Id : <414> +10:54:04 Transaction Type : REQUEST +10:54:04 Received From : +10:54:04 ============================================================================ +10:54:04 FNo. Len. Field Value +10:54:04 ============================================================================ +10:54:04 [ 1] [ 4] [0200] +10:54:04 [ 2] [ 16] [2206990000123471] +10:54:04 [ 3] [ 6] [010000] +10:54:04 [ 4] [ 12] [000030000000] +10:54:04 [ 7] [ 10] [0320105155] +10:54:04 [ 11] [ 6] [939791] +10:54:04 [ 12] [ 6] [105155] +10:54:04 [ 13] [ 4] [0320] +10:54:04 [ 15] [ 4] [0320] +10:54:04 [ 18] [ 4] [6011] +10:54:04 [ 19] [ 3] [418] +10:54:04 [ 22] [ 3] [021] +10:54:04 [ 25] [ 2] [01] +10:54:04 [ 28] [ 9] [D00002000] +10:54:04 [ 32] [ 6] [668899] +10:54:04 [ 35] [ 32] [2206990000123471=980312617713807] +10:54:04 [ 37] [ 12] [507900771431] +10:54:04 [ 41] [ 8] [03005001] +10:54:04 [ 42] [ 15] [APT ] +10:54:04 [ 43] [ 40] [ OUDOMSAY BRANCH OFFICE OU] +10:54:04 [ 49] [ 3] [418] +10:54:04 [ 52] [ 16] [FD837B38AA63629E] +10:54:04 ============================================================================ +10:54:04 + + +waiting on router queue for slot.... +10:54:04 Sending to : <1> +10:54:04 ============================================================================ +10:54:07 ============================================================================ +10:54:07 Slot Id : <414> +10:54:07 Transaction Type : RESPONSE +10:54:07 Received From : +10:54:07 ============================================================================ +10:54:07 FNo. Len. Field Value +10:54:07 ============================================================================ +10:54:07 [ 1] [ 4] [0210] +10:54:07 [ 2] [ 16] [2206990000123471] +10:54:07 [ 3] [ 6] [010000] +10:54:07 [ 4] [ 12] [000030000000] +10:54:07 [ 7] [ 10] [0320105155] +10:54:07 [ 11] [ 6] [939791] +10:54:07 [ 12] [ 6] [105155] +10:54:07 [ 13] [ 4] [0320] +10:54:07 [ 15] [ 4] [0320] +10:54:07 [ 18] [ 4] [6011] +10:54:07 [ 32] [ 6] [668899] +10:54:07 [ 35] [ 32] [2206990000123471=980312617713807] +10:54:07 [ 37] [ 12] [507900771431] +10:54:07 [ 38] [ 6] [229845] +10:54:07 [ 39] [ 2] [00] +10:54:07 [ 41] [ 8] [03005001] +10:54:07 [ 49] [ 3] [418] +10:54:07 [ 54] [ 40] [0001418C0000222316000002418C000022231600] +10:54:07 ============================================================================ +10:54:07 Sending to : +10:54:07 ============================================================================ +10:54:07 + + +waiting on router queue for slot.... +10:54:09 ============================================================================ +10:54:09 Slot Id : <414> +10:54:09 Transaction Type : RESPONSE +10:54:09 Received From : +10:54:09 ============================================================================ +10:54:09 FNo. Len. Field Value +10:54:09 ============================================================================ +10:54:09 [ 1] [ 4] [0210] +10:54:09 [ 2] [ 16] [2206990000123471] +10:54:09 [ 3] [ 6] [010000] +10:54:09 [ 4] [ 12] [000030000000] +10:54:09 [ 7] [ 10] [0320105155] +10:54:09 [ 11] [ 6] [939791] +10:54:09 [ 12] [ 6] [105155] +10:54:09 [ 13] [ 4] [0320] +10:54:09 [ 15] [ 4] [0320] +10:54:09 [ 18] [ 4] [6011] +10:54:09 [ 32] [ 6] [668899] +10:54:09 [ 35] [ 32] [2206990000123471=980312617713807] +10:54:09 [ 37] [ 12] [507900771431] +10:54:09 [ 38] [ 6] [229845] +10:54:09 [ 39] [ 2] [00] +10:54:09 [ 41] [ 8] [03005001] +10:54:09 [ 49] [ 3] [418] +10:54:09 [ 54] [ 40] [0001418C0000222316000002418C000022231600] +10:54:09 ============================================================================ +10:54:09 Calculate Source COMM Id = 4 +10:54:09 ============================================================================ +10:54:09 + + +waiting on router queue for slot.... +10:54:17 ============================================================================ +10:54:17 Slot Id : <399> +10:54:17 Transaction Type : REQUEST +10:54:17 Received From : +10:54:17 ============================================================================ +10:54:17 FNo. Len. Field Value +10:54:17 ============================================================================ +10:54:17 [ 1] [ 4] [0800] +10:54:17 [ 7] [ 10] [0320035325] +10:54:17 [ 11] [ 6] [155961] +10:54:17 [ 70] [ 3] [301] +10:54:17 ============================================================================ +10:54:17 + + +waiting on router queue for slot.... +10:54:17 Sending to : +10:54:17 ============================================================================ +10:54:17 ============================================================================ +10:54:17 Slot Id : <399> +10:54:17 Transaction Type : RESPONSE +10:54:17 Received From : +10:54:17 ============================================================================ +10:54:17 FNo. Len. Field Value +10:54:17 ============================================================================ +10:54:17 [ 1] [ 4] [0810] +10:54:17 [ 7] [ 10] [0320035325] +10:54:17 [ 11] [ 6] [155961] +10:54:17 [ 39] [ 2] [00] +10:54:17 [ 70] [ 3] [301] +10:54:17 ============================================================================ +10:54:17 Calculate Source COMM Id = 2 +10:54:17 ============================================================================ +10:54:17 + + +waiting on router queue for slot.... +10:54:25 ============================================================================ +10:54:25 Slot Id : <394> +10:54:25 Transaction Type : REQUEST +10:54:25 Received From : +10:54:25 ============================================================================ +10:54:25 FNo. Len. Field Value +10:54:25 ============================================================================ +10:54:25 [ 1] [ 4] [0200] +10:54:25 [ 2] [ 16] [6213544002272307] +10:54:25 [ 3] [ 6] [301000] +10:54:25 [ 4] [ 12] [000000000000] +10:54:25 [ 7] [ 10] [0320105216] +10:54:25 [ 11] [ 6] [939800] +10:54:25 [ 12] [ 6] [105216] +10:54:25 [ 13] [ 4] [0320] +10:54:25 [ 15] [ 4] [0320] +10:54:25 [ 18] [ 4] [6011] +10:54:25 [ 19] [ 3] [418] +10:54:25 [ 22] [ 3] [021] +10:54:25 [ 25] [ 2] [01] +10:54:25 [ 28] [ 9] [D00000000] +10:54:25 [ 32] [ 6] [668899] +10:54:25 [ 35] [ 32] [6213544002272307=491212017230973] +10:54:25 [ 37] [ 12] [507902255411] +10:54:25 [ 41] [ 8] [03316003] +10:54:25 [ 42] [ 15] [APT ] +10:54:25 [ 43] [ 40] [ KONGSEDONE UNIT KONGSEDON] +10:54:25 [ 49] [ 3] [418] +10:54:25 [ 52] [ 16] [B5BDA7982CBAB262] +10:54:25 ============================================================================ +10:54:25 + + +waiting on router queue for slot.... +10:54:25 Sending to : +10:54:25 ============================================================================ +10:54:25 Sending to : +10:54:25 ============================================================================ +10:54:25 ============================================================================ +10:54:25 Slot Id : <394> +10:54:25 Transaction Type : REQUEST +10:54:25 Received From : +10:54:25 ============================================================================ +10:54:25 FNo. Len. Field Value +10:54:25 ============================================================================ +10:54:25 [ 1] [ 4] [0200] +10:54:25 [ 2] [ 16] [6213544002272307] +10:54:25 [ 3] [ 6] [301000] +10:54:25 [ 4] [ 12] [000000000000] +10:54:25 [ 7] [ 10] [0320105216] +10:54:25 [ 11] [ 6] [939800] +10:54:25 [ 12] [ 6] [105216] +10:54:25 [ 13] [ 4] [0320] +10:54:25 [ 15] [ 4] [0320] +10:54:25 [ 18] [ 4] [6011] +10:54:25 [ 19] [ 3] [418] +10:54:25 [ 22] [ 3] [021] +10:54:25 [ 25] [ 2] [01] +10:54:25 [ 28] [ 9] [D00000000] +10:54:25 [ 32] [ 6] [668899] +10:54:25 [ 35] [ 32] [6213544002272307=491212017230973] +10:54:25 [ 37] [ 12] [507902255411] +10:54:25 [ 41] [ 8] [03316003] +10:54:25 [ 42] [ 15] [APT ] +10:54:25 [ 43] [ 40] [ KONGSEDONE UNIT KONGSEDON] +10:54:25 [ 49] [ 3] [418] +10:54:25 [ 52] [ 16] [B5BDA7982CBAB262] +10:54:25 ============================================================================ +10:54:25 + + +waiting on router queue for slot.... +10:54:25 Sending to : +10:54:25 ============================================================================ +10:54:25 ============================================================================ +10:54:25 Slot Id : <394> +10:54:25 Transaction Type : REQUEST +10:54:25 Received From : +10:54:25 ============================================================================ +10:54:25 FNo. Len. Field Value +10:54:25 ============================================================================ +10:54:25 [ 1] [ 4] [0200] +10:54:25 [ 2] [ 16] [6213544002272307] +10:54:25 [ 3] [ 6] [301000] +10:54:25 [ 4] [ 12] [000000000000] +10:54:25 [ 7] [ 10] [0320105216] +10:54:25 [ 11] [ 6] [939800] +10:54:25 [ 12] [ 6] [105216] +10:54:25 [ 13] [ 4] [0320] +10:54:25 [ 15] [ 4] [0320] +10:54:25 [ 18] [ 4] [6011] +10:54:25 [ 19] [ 3] [418] +10:54:25 [ 22] [ 3] [021] +10:54:25 [ 25] [ 2] [01] +10:54:25 [ 28] [ 9] [D00000000] +10:54:25 [ 32] [ 6] [668899] +10:54:25 [ 35] [ 32] [6213544002272307=491212017230973] +10:54:25 [ 37] [ 12] [507902255411] +10:54:25 [ 41] [ 8] [03316003] +10:54:25 [ 42] [ 15] [APT ] +10:54:25 [ 43] [ 40] [ KONGSEDONE UNIT KONGSEDON] +10:54:25 [ 49] [ 3] [418] +10:54:25 [ 52] [ 16] [B5434005E3B5C1AD] +10:54:25 ============================================================================ +10:54:25 + + +waiting on router queue for slot.... +10:54:25 Sending to : <0> +10:54:25 ============================================================================ +10:54:25 ============================================================================ +10:54:25 Slot Id : <394> +10:54:25 Transaction Type : RESPONSE +10:54:25 Received From : +10:54:25 ============================================================================ +10:54:25 FNo. Len. Field Value +10:54:25 ============================================================================ +10:54:25 [ 1] [ 4] [0210] +10:54:25 [ 2] [ 16] [6213544002272307] +10:54:25 [ 3] [ 6] [301000] +10:54:25 [ 4] [ 12] [000000000000] +10:54:25 [ 7] [ 10] [0320105216] +10:54:25 [ 11] [ 6] [939800] +10:54:25 [ 12] [ 6] [105216] +10:54:25 [ 13] [ 4] [0320] +10:54:25 [ 15] [ 4] [0320] +10:54:25 [ 18] [ 4] [6011] +10:54:25 [ 19] [ 3] [418] +10:54:25 [ 32] [ 6] [668899] +10:54:25 [ 35] [ 32] [6213544002272307=491212017230973] +10:54:25 [ 37] [ 12] [507902255411] +10:54:25 [ 38] [ 6] [368174] +10:54:25 [ 39] [ 2] [00] +10:54:25 [ 41] [ 8] [03316003] +10:54:25 [ 49] [ 3] [418] +10:54:25 [ 54] [ 40] [1001764C0000000500001002764C000000050000] +10:54:25 ============================================================================ +10:54:25 Sending to : +10:54:25 ============================================================================ +10:54:25 + + +waiting on router queue for slot.... +10:54:27 ============================================================================ +10:54:27 Slot Id : <394> +10:54:27 Transaction Type : RESPONSE +10:54:27 Received From : +10:54:27 ============================================================================ +10:54:27 FNo. Len. Field Value +10:54:27 ============================================================================ +10:54:27 [ 1] [ 4] [0210] +10:54:27 [ 2] [ 16] [6213544002272307] +10:54:27 [ 3] [ 6] [301000] +10:54:27 [ 4] [ 12] [000000000000] +10:54:27 [ 7] [ 10] [0320105216] +10:54:27 [ 11] [ 6] [939800] +10:54:27 [ 12] [ 6] [105216] +10:54:27 [ 13] [ 4] [0320] +10:54:27 [ 15] [ 4] [0320] +10:54:27 [ 18] [ 4] [6011] +10:54:27 [ 19] [ 3] [418] +10:54:27 [ 32] [ 6] [668899] +10:54:27 [ 35] [ 32] [6213544002272307=491212017230973] +10:54:27 [ 37] [ 12] [507902255411] +10:54:27 [ 38] [ 6] [368174] +10:54:27 [ 39] [ 2] [00] +10:54:27 [ 41] [ 8] [03316003] +10:54:27 [ 49] [ 3] [418] +10:54:27 [ 54] [ 40] [1001764C0000000500001002764C000000050000] +10:54:27 ============================================================================ +10:54:27 Calculate Source COMM Id = 4 +10:54:27 ============================================================================ +10:54:27 + + +waiting on router queue for slot.... +10:54:34 ============================================================================ +10:54:34 Slot Id : <387> +10:54:34 Transaction Type : REQUEST +10:54:34 Received From : +10:54:34 ============================================================================ +10:54:34 FNo. Len. Field Value +10:54:34 ============================================================================ +10:54:34 [ 1] [ 4] [0800] +10:54:34 [ 7] [ 10] [0320035342] +10:54:34 [ 11] [ 6] [155962] +10:54:34 [ 70] [ 3] [301] +10:54:34 ============================================================================ +10:54:34 + + +waiting on router queue for slot.... +10:54:34 Sending to : +10:54:34 ============================================================================ +10:54:34 ============================================================================ +10:54:34 Slot Id : <387> +10:54:34 Transaction Type : RESPONSE +10:54:34 Received From : +10:54:34 ============================================================================ +10:54:34 FNo. Len. Field Value +10:54:34 ============================================================================ +10:54:34 [ 1] [ 4] [0810] +10:54:34 [ 7] [ 10] [0320035342] +10:54:34 [ 11] [ 6] [155962] +10:54:34 [ 39] [ 2] [00] +10:54:34 [ 70] [ 3] [301] +10:54:34 ============================================================================ +10:54:34 Calculate Source COMM Id = 2 +10:54:34 ============================================================================ +10:54:34 + + +waiting on router queue for slot.... +10:54:37 ============================================================================ +10:54:37 Slot Id : <372> +10:54:37 Transaction Type : REQUEST +10:54:37 Received From : +10:54:37 ============================================================================ +10:54:37 FNo. Len. Field Value +10:54:37 ============================================================================ +10:54:37 [ 1] [ 4] [0200] +10:54:37 [ 2] [ 16] [6213541000634413] +10:54:37 [ 3] [ 6] [010000] +10:54:37 [ 4] [ 12] [000100000000] +10:54:37 [ 7] [ 10] [0320035344] +10:54:37 [ 11] [ 6] [268272] +10:54:37 [ 12] [ 6] [105344] +10:54:37 [ 13] [ 4] [0320] +10:54:37 [ 14] [ 4] [4912] +10:54:37 [ 15] [ 4] [0320] +10:54:37 [ 18] [ 4] [6011] +10:54:37 [ 19] [ 3] [418] +10:54:37 [ 22] [ 3] [021] +10:54:37 [ 25] [ 2] [01] +10:54:37 [ 28] [ 9] [D00002000] +10:54:37 [ 32] [ 6] [180893] +10:54:37 [ 35] [ 32] [6213541000634413=491212013441996] +10:54:37 [ 37] [ 12] [507903268272] +10:54:37 [ 41] [ 8] [0529LPBF] +10:54:37 [ 42] [ 15] [999999 ] +10:54:37 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +10:54:37 [ 49] [ 3] [418] +10:54:37 [ 52] [ 16] [8EA7685FB4973EAC] +10:54:37 ============================================================================ +10:54:37 + + +waiting on router queue for slot.... +10:54:37 Sending to : +10:54:37 ============================================================================ +10:54:37 Sending to : +10:54:37 ============================================================================ +10:54:37 ============================================================================ +10:54:37 Slot Id : <372> +10:54:37 Transaction Type : REQUEST +10:54:37 Received From : +10:54:37 ============================================================================ +10:54:37 FNo. Len. Field Value +10:54:37 ============================================================================ +10:54:37 [ 1] [ 4] [0200] +10:54:37 [ 2] [ 16] [6213541000634413] +10:54:37 [ 3] [ 6] [010000] +10:54:37 [ 4] [ 12] [000100000000] +10:54:37 [ 7] [ 10] [0320035344] +10:54:37 [ 11] [ 6] [268272] +10:54:37 [ 12] [ 6] [105344] +10:54:37 [ 13] [ 4] [0320] +10:54:37 [ 14] [ 4] [4912] +10:54:37 [ 15] [ 4] [0320] +10:54:37 [ 18] [ 4] [6011] +10:54:37 [ 19] [ 3] [418] +10:54:37 [ 22] [ 3] [021] +10:54:37 [ 25] [ 2] [01] +10:54:37 [ 28] [ 9] [D00002000] +10:54:37 [ 32] [ 6] [180893] +10:54:37 [ 35] [ 32] [6213541000634413=491212013441996] +10:54:37 [ 37] [ 12] [507903268272] +10:54:37 [ 41] [ 8] [0529LPBF] +10:54:37 [ 42] [ 15] [999999 ] +10:54:37 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +10:54:37 [ 49] [ 3] [418] +10:54:37 [ 52] [ 16] [8EA7685FB4973EAC] +10:54:37 ============================================================================ +10:54:37 + + +waiting on router queue for slot.... +10:54:37 Sending to : +10:54:37 ============================================================================ +10:54:37 ============================================================================ +10:54:37 Slot Id : <372> +10:54:37 Transaction Type : REQUEST +10:54:37 Received From : +10:54:37 ============================================================================ +10:54:37 FNo. Len. Field Value +10:54:37 ============================================================================ +10:54:37 [ 1] [ 4] [0200] +10:54:37 [ 2] [ 16] [6213541000634413] +10:54:37 [ 3] [ 6] [010000] +10:54:37 [ 4] [ 12] [000100000000] +10:54:37 [ 7] [ 10] [0320035344] +10:54:37 [ 11] [ 6] [268272] +10:54:37 [ 12] [ 6] [105344] +10:54:37 [ 13] [ 4] [0320] +10:54:37 [ 14] [ 4] [4912] +10:54:37 [ 15] [ 4] [0320] +10:54:37 [ 18] [ 4] [6011] +10:54:37 [ 19] [ 3] [418] +10:54:37 [ 22] [ 3] [021] +10:54:37 [ 25] [ 2] [01] +10:54:37 [ 28] [ 9] [D00002000] +10:54:37 [ 32] [ 6] [180893] +10:54:37 [ 35] [ 32] [6213541000634413=491212013441996] +10:54:37 [ 37] [ 12] [507903268272] +10:54:37 [ 41] [ 8] [0529LPBF] +10:54:37 [ 42] [ 15] [999999 ] +10:54:37 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +10:54:37 [ 49] [ 3] [418] +10:54:37 [ 52] [ 16] [2EDB84ACF312AB58] +10:54:37 ============================================================================ +10:54:37 + + +waiting on router queue for slot.... +10:54:37 Sending to : <0> +10:54:37 ============================================================================ +10:54:38 ============================================================================ +10:54:38 Slot Id : <372> +10:54:38 Transaction Type : RESPONSE +10:54:38 Received From : +10:54:38 ============================================================================ +10:54:38 FNo. Len. Field Value +10:54:38 ============================================================================ +10:54:38 [ 1] [ 4] [0210] +10:54:38 [ 2] [ 16] [6213541000634413] +10:54:38 [ 3] [ 6] [010000] +10:54:38 [ 4] [ 12] [000100000000] +10:54:38 [ 7] [ 10] [0320035344] +10:54:38 [ 11] [ 6] [268272] +10:54:38 [ 12] [ 6] [105344] +10:54:38 [ 13] [ 4] [0320] +10:54:38 [ 15] [ 4] [0320] +10:54:38 [ 18] [ 4] [6011] +10:54:38 [ 19] [ 3] [418] +10:54:38 [ 32] [ 6] [180893] +10:54:38 [ 35] [ 32] [6213541000634413=491212013441996] +10:54:38 [ 37] [ 12] [507903268272] +10:54:38 [ 38] [ 6] [835034] +10:54:38 [ 39] [ 2] [00] +10:54:38 [ 41] [ 8] [0529LPBF] +10:54:38 [ 49] [ 3] [418] +10:54:38 [ 54] [ 40] [0001418C0001914963580002418C000191496358] +10:54:38 ============================================================================ +10:54:38 Sending to : +10:54:38 ============================================================================ +10:54:38 + + +waiting on router queue for slot.... +10:54:40 ============================================================================ +10:54:40 Slot Id : <372> +10:54:40 Transaction Type : RESPONSE +10:54:40 Received From : +10:54:40 ============================================================================ +10:54:40 FNo. Len. Field Value +10:54:40 ============================================================================ +10:54:40 [ 1] [ 4] [0210] +10:54:40 [ 2] [ 16] [6213541000634413] +10:54:40 [ 3] [ 6] [010000] +10:54:40 [ 4] [ 12] [000100000000] +10:54:40 [ 7] [ 10] [0320035344] +10:54:40 [ 11] [ 6] [268272] +10:54:40 [ 12] [ 6] [105344] +10:54:40 [ 13] [ 4] [0320] +10:54:40 [ 15] [ 4] [0320] +10:54:40 [ 18] [ 4] [6011] +10:54:40 [ 19] [ 3] [418] +10:54:40 [ 32] [ 6] [180893] +10:54:40 [ 35] [ 32] [6213541000634413=491212013441996] +10:54:40 [ 37] [ 12] [507903268272] +10:54:40 [ 38] [ 6] [835034] +10:54:40 [ 39] [ 2] [00] +10:54:40 [ 41] [ 8] [0529LPBF] +10:54:40 [ 49] [ 3] [418] +10:54:40 [ 54] [ 40] [0001418C0001914963580002418C000191496358] +10:54:40 ============================================================================ +10:54:40 Calculate Source COMM Id = 2 +10:54:40 ============================================================================ +10:54:40 + + +waiting on router queue for slot.... +10:54:44 ============================================================================ +10:54:44 Slot Id : <418> +10:54:44 Transaction Type : REQUEST +10:54:44 Received From : +10:54:44 ============================================================================ +10:54:44 FNo. Len. Field Value +10:54:44 ============================================================================ +10:54:44 [ 1] [ 4] [0800] +10:54:44 [ 2] [ 5] [02531] +10:54:44 [ 3] [ 6] [579108] +10:54:44 [ 7] [ 10] [0320035444] +10:54:44 [ 11] [ 6] [807045] +10:54:44 [ 15] [ 10] [0320035444] +10:54:44 [ 37] [ 11] [57910807045] +10:54:44 [ 70] [ 3] [001] +10:54:44 ============================================================================ +10:54:44 + + +waiting on router queue for slot.... +10:54:44 ============================================================================ +10:54:44 Slot Id : <418> +10:54:44 Transaction Type : RESPONSE +10:54:44 Received From : +10:54:44 ============================================================================ +10:54:44 FNo. Len. Field Value +10:54:44 ============================================================================ +10:54:44 [ 1] [ 4] [0810] +10:54:44 [ 7] [ 10] [0320035444] +10:54:44 [ 11] [ 6] [807045] +10:54:44 [ 15] [ 4] [0320] +10:54:44 [ 37] [ 12] [57910807045] +10:54:44 [ 39] [ 2] [00] +10:54:44 [ 70] [ 3] [001] +10:54:44 ============================================================================ +10:54:44 Sending to : +10:54:44 ============================================================================ +10:54:44 + + +waiting on router queue for slot.... +10:54:46 ============================================================================ +10:54:46 Slot Id : <368> +10:54:46 Transaction Type : REQUEST +10:54:46 Received From : +10:54:46 ============================================================================ +10:54:46 FNo. Len. Field Value +10:54:46 ============================================================================ +10:54:46 [ 1] [ 4] [0200] +10:54:46 [ 2] [ 16] [6213544002255229] +10:54:46 [ 3] [ 6] [010000] +10:54:46 [ 4] [ 12] [000100000000] +10:54:46 [ 7] [ 10] [0320035352] +10:54:46 [ 11] [ 6] [268277] +10:54:46 [ 12] [ 6] [105352] +10:54:46 [ 13] [ 4] [0320] +10:54:46 [ 14] [ 4] [4912] +10:54:46 [ 15] [ 4] [0320] +10:54:46 [ 18] [ 4] [6011] +10:54:46 [ 19] [ 3] [418] +10:54:46 [ 22] [ 3] [021] +10:54:46 [ 25] [ 2] [01] +10:54:46 [ 28] [ 9] [D00002000] +10:54:46 [ 32] [ 6] [180893] +10:54:46 [ 35] [ 32] [6213544002255229=491212015522466] +10:54:46 [ 37] [ 12] [507903268277] +10:54:46 [ 41] [ 8] [0108THNG] +10:54:46 [ 42] [ 15] [999999 ] +10:54:46 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +10:54:46 [ 49] [ 3] [418] +10:54:46 [ 52] [ 16] [9DC1E0D90B29B83B] +10:54:46 ============================================================================ +10:54:46 + + +waiting on router queue for slot.... +10:54:46 Sending to : +10:54:46 ============================================================================ +10:54:46 Sending to : +10:54:46 ============================================================================ +10:54:46 ============================================================================ +10:54:46 Slot Id : <368> +10:54:46 Transaction Type : REQUEST +10:54:46 Received From : +10:54:46 ============================================================================ +10:54:46 FNo. Len. Field Value +10:54:46 ============================================================================ +10:54:46 [ 1] [ 4] [0200] +10:54:46 [ 2] [ 16] [6213544002255229] +10:54:46 [ 3] [ 6] [010000] +10:54:46 [ 4] [ 12] [000100000000] +10:54:46 [ 7] [ 10] [0320035352] +10:54:46 [ 11] [ 6] [268277] +10:54:46 [ 12] [ 6] [105352] +10:54:46 [ 13] [ 4] [0320] +10:54:46 [ 14] [ 4] [4912] +10:54:46 [ 15] [ 4] [0320] +10:54:46 [ 18] [ 4] [6011] +10:54:46 [ 19] [ 3] [418] +10:54:46 [ 22] [ 3] [021] +10:54:46 [ 25] [ 2] [01] +10:54:46 [ 28] [ 9] [D00002000] +10:54:46 [ 32] [ 6] [180893] +10:54:46 [ 35] [ 32] [6213544002255229=491212015522466] +10:54:46 [ 37] [ 12] [507903268277] +10:54:46 [ 41] [ 8] [0108THNG] +10:54:46 [ 42] [ 15] [999999 ] +10:54:46 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +10:54:46 [ 49] [ 3] [418] +10:54:46 [ 52] [ 16] [9DC1E0D90B29B83B] +10:54:46 ============================================================================ +10:54:46 + + +waiting on router queue for slot.... +10:54:46 Sending to : +10:54:46 ============================================================================ +10:54:46 ============================================================================ +10:54:46 Slot Id : <368> +10:54:46 Transaction Type : REQUEST +10:54:46 Received From : +10:54:46 ============================================================================ +10:54:46 FNo. Len. Field Value +10:54:46 ============================================================================ +10:54:46 [ 1] [ 4] [0200] +10:54:46 [ 2] [ 16] [6213544002255229] +10:54:46 [ 3] [ 6] [010000] +10:54:46 [ 4] [ 12] [000100000000] +10:54:46 [ 7] [ 10] [0320035352] +10:54:46 [ 11] [ 6] [268277] +10:54:46 [ 12] [ 6] [105352] +10:54:46 [ 13] [ 4] [0320] +10:54:46 [ 14] [ 4] [4912] +10:54:46 [ 15] [ 4] [0320] +10:54:46 [ 18] [ 4] [6011] +10:54:46 [ 19] [ 3] [418] +10:54:46 [ 22] [ 3] [021] +10:54:46 [ 25] [ 2] [01] +10:54:46 [ 28] [ 9] [D00002000] +10:54:46 [ 32] [ 6] [180893] +10:54:46 [ 35] [ 32] [6213544002255229=491212015522466] +10:54:46 [ 37] [ 12] [507903268277] +10:54:46 [ 41] [ 8] [0108THNG] +10:54:46 [ 42] [ 15] [999999 ] +10:54:46 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +10:54:46 [ 49] [ 3] [418] +10:54:46 [ 52] [ 16] [1E78F2014DACABBF] +10:54:46 ============================================================================ +10:54:46 + + +waiting on router queue for slot.... +10:54:46 Sending to : <0> +10:54:46 ============================================================================ +10:54:47 ============================================================================ +10:54:47 Slot Id : <368> +10:54:47 Transaction Type : RESPONSE +10:54:47 Received From : +10:54:47 ============================================================================ +10:54:47 FNo. Len. Field Value +10:54:47 ============================================================================ +10:54:47 [ 1] [ 4] [0210] +10:54:47 [ 2] [ 16] [6213544002255229] +10:54:47 [ 3] [ 6] [010000] +10:54:47 [ 4] [ 12] [000100000000] +10:54:47 [ 7] [ 10] [0320035352] +10:54:47 [ 11] [ 6] [268277] +10:54:47 [ 12] [ 6] [105352] +10:54:47 [ 13] [ 4] [0320] +10:54:47 [ 15] [ 4] [0320] +10:54:47 [ 18] [ 4] [6011] +10:54:47 [ 19] [ 3] [418] +10:54:47 [ 32] [ 6] [180893] +10:54:47 [ 35] [ 32] [6213544002255229=491212015522466] +10:54:47 [ 37] [ 12] [507903268277] +10:54:47 [ 38] [ 6] [676521] +10:54:47 [ 39] [ 2] [00] +10:54:47 [ 41] [ 8] [0108THNG] +10:54:47 [ 49] [ 3] [418] +10:54:47 [ 54] [ 40] [0001418C0001198000000002418C000119800000] +10:54:47 ============================================================================ +10:54:47 Sending to : +10:54:47 ============================================================================ +10:54:47 + + +waiting on router queue for slot.... +10:54:48 ============================================================================ +10:54:48 Slot Id : <368> +10:54:48 Transaction Type : RESPONSE +10:54:48 Received From : +10:54:48 ============================================================================ +10:54:48 FNo. Len. Field Value +10:54:48 ============================================================================ +10:54:48 [ 1] [ 4] [0210] +10:54:48 [ 2] [ 16] [6213544002255229] +10:54:48 [ 3] [ 6] [010000] +10:54:48 [ 4] [ 12] [000100000000] +10:54:48 [ 7] [ 10] [0320035352] +10:54:48 [ 11] [ 6] [268277] +10:54:48 [ 12] [ 6] [105352] +10:54:48 [ 13] [ 4] [0320] +10:54:48 [ 15] [ 4] [0320] +10:54:48 [ 18] [ 4] [6011] +10:54:48 [ 19] [ 3] [418] +10:54:48 [ 32] [ 6] [180893] +10:54:48 [ 35] [ 32] [6213544002255229=491212015522466] +10:54:48 [ 37] [ 12] [507903268277] +10:54:48 [ 38] [ 6] [676521] +10:54:48 [ 39] [ 2] [00] +10:54:48 [ 41] [ 8] [0108THNG] +10:54:48 [ 49] [ 3] [418] +10:54:48 [ 54] [ 40] [0001418C0001198000000002418C000119800000] +10:54:48 ============================================================================ +10:54:48 Calculate Source COMM Id = 2 +10:54:48 ============================================================================ +10:54:48 + + +waiting on router queue for slot.... +10:54:55 ============================================================================ +10:54:55 Slot Id : <406> +10:54:55 Transaction Type : REQUEST +10:54:55 Received From : +10:54:55 ============================================================================ +10:54:55 FNo. Len. Field Value +10:54:55 ============================================================================ +10:54:55 [ 1] [ 4] [0800] +10:54:55 [ 7] [ 10] [0320040242] +10:54:55 [ 11] [ 6] [041865] +10:54:55 [ 37] [ 12] [57911041865] +10:54:55 [ 70] [ 3] [301] +10:54:55 ============================================================================ +10:54:55 + + +waiting on router queue for slot.... +10:54:55 Sending to : +10:54:55 ============================================================================ +10:54:55 ============================================================================ +10:54:55 Slot Id : <406> +10:54:55 Transaction Type : RESPONSE +10:54:55 Received From : +10:54:55 ============================================================================ +10:54:55 FNo. Len. Field Value +10:54:55 ============================================================================ +10:54:55 [ 1] [ 4] [0810] +10:54:55 [ 7] [ 10] [0320040242] +10:54:55 [ 11] [ 6] [041865] +10:54:55 [ 37] [ 12] [579110418650] +10:54:55 [ 39] [ 2] [00] +10:54:55 [ 70] [ 3] [810] +10:54:55 ============================================================================ +10:54:55 Calculate Source COMM Id = 1 +10:54:55 ============================================================================ +10:54:55 + + +waiting on router queue for slot.... +10:55:01 ============================================================================ +10:55:01 Slot Id : <419> +10:55:01 Transaction Type : REQUEST +10:55:01 Received From : +10:55:01 ============================================================================ +10:55:01 FNo. Len. Field Value +10:55:01 ============================================================================ +10:55:01 [ 1] [ 4] [0800] +10:55:01 [ 7] [ 10] [0320035408] +10:55:01 [ 11] [ 6] [155963] +10:55:01 [ 70] [ 3] [301] +10:55:01 ============================================================================ +10:55:01 + + +waiting on router queue for slot.... +10:55:01 Sending to : +10:55:01 ============================================================================ +10:55:01 ============================================================================ +10:55:01 Slot Id : <419> +10:55:01 Transaction Type : RESPONSE +10:55:01 Received From : +10:55:01 ============================================================================ +10:55:01 FNo. Len. Field Value +10:55:01 ============================================================================ +10:55:01 [ 1] [ 4] [0810] +10:55:01 [ 7] [ 10] [0320035408] +10:55:01 [ 11] [ 6] [155963] +10:55:01 [ 39] [ 2] [00] +10:55:01 [ 70] [ 3] [301] +10:55:01 ============================================================================ +10:55:01 Calculate Source COMM Id = 2 +10:55:01 ============================================================================ +10:55:01 + + +waiting on router queue for slot.... +10:55:16 ============================================================================ +10:55:16 Slot Id : <407> +10:55:16 Transaction Type : REQUEST +10:55:16 Received From : +10:55:16 ============================================================================ +10:55:16 FNo. Len. Field Value +10:55:16 ============================================================================ +10:55:16 [ 1] [ 4] [0800] +10:55:16 [ 7] [ 10] [0320035424] +10:55:16 [ 11] [ 6] [155964] +10:55:16 [ 70] [ 3] [301] +10:55:16 ============================================================================ +10:55:16 + + +waiting on router queue for slot.... +10:55:16 Sending to : +10:55:16 ============================================================================ +10:55:16 ============================================================================ +10:55:16 Slot Id : <407> +10:55:16 Transaction Type : RESPONSE +10:55:16 Received From : +10:55:16 ============================================================================ +10:55:16 FNo. Len. Field Value +10:55:16 ============================================================================ +10:55:16 [ 1] [ 4] [0810] +10:55:16 [ 7] [ 10] [0320035424] +10:55:16 [ 11] [ 6] [155964] +10:55:16 [ 39] [ 2] [00] +10:55:16 [ 70] [ 3] [301] +10:55:16 ============================================================================ +10:55:16 Calculate Source COMM Id = 2 +10:55:16 ============================================================================ +10:55:16 + + +waiting on router queue for slot.... +10:55:29 ============================================================================ +10:55:29 Slot Id : <411> +10:55:29 Transaction Type : REQUEST +10:55:29 Received From : +10:55:29 ============================================================================ +10:55:29 FNo. Len. Field Value +10:55:29 ============================================================================ +10:55:29 [ 1] [ 4] [0800] +10:55:29 [ 7] [ 10] [0320035436] +10:55:29 [ 11] [ 6] [155965] +10:55:29 [ 70] [ 3] [301] +10:55:29 ============================================================================ +10:55:29 + + +waiting on router queue for slot.... +10:55:29 Sending to : +10:55:29 ============================================================================ +10:55:29 ============================================================================ +10:55:29 Slot Id : <411> +10:55:29 Transaction Type : RESPONSE +10:55:29 Received From : +10:55:29 ============================================================================ +10:55:29 FNo. Len. Field Value +10:55:29 ============================================================================ +10:55:29 [ 1] [ 4] [0810] +10:55:29 [ 7] [ 10] [0320035436] +10:55:29 [ 11] [ 6] [155965] +10:55:29 [ 39] [ 2] [00] +10:55:29 [ 70] [ 3] [301] +10:55:29 ============================================================================ +10:55:29 Calculate Source COMM Id = 2 +10:55:29 ============================================================================ +10:55:29 + + +waiting on router queue for slot.... +10:55:44 ============================================================================ +10:55:44 Slot Id : <380> +10:55:44 Transaction Type : REQUEST +10:55:44 Received From : +10:55:44 ============================================================================ +10:55:44 FNo. Len. Field Value +10:55:44 ============================================================================ +10:55:44 [ 1] [ 4] [0800] +10:55:44 [ 7] [ 10] [0320035451] +10:55:44 [ 11] [ 6] [155966] +10:55:44 [ 70] [ 3] [301] +10:55:44 ============================================================================ +10:55:44 + + +waiting on router queue for slot.... +10:55:44 Sending to : +10:55:44 ============================================================================ +10:55:44 ============================================================================ +10:55:44 Slot Id : <380> +10:55:44 Transaction Type : RESPONSE +10:55:44 Received From : +10:55:44 ============================================================================ +10:55:44 FNo. Len. Field Value +10:55:44 ============================================================================ +10:55:44 [ 1] [ 4] [0810] +10:55:44 [ 7] [ 10] [0320035451] +10:55:44 [ 11] [ 6] [155966] +10:55:44 [ 39] [ 2] [00] +10:55:44 [ 70] [ 3] [301] +10:55:44 ============================================================================ +10:55:44 Calculate Source COMM Id = 2 +10:55:44 ============================================================================ +10:55:44 + + +waiting on router queue for slot.... +10:55:46 ============================================================================ +10:55:46 Slot Id : <384> +10:55:46 Transaction Type : REQUEST +10:55:46 Received From : +10:55:46 ============================================================================ +10:55:46 FNo. Len. Field Value +10:55:46 ============================================================================ +10:55:46 [ 1] [ 4] [0800] +10:55:46 [ 2] [ 5] [02531] +10:55:46 [ 3] [ 6] [579108] +10:55:46 [ 7] [ 10] [0320035546] +10:55:46 [ 11] [ 6] [807046] +10:55:46 [ 15] [ 10] [0320035546] +10:55:46 [ 37] [ 11] [57910807046] +10:55:46 [ 70] [ 3] [001] +10:55:46 ============================================================================ +10:55:46 + + +waiting on router queue for slot.... +10:55:46 ============================================================================ +10:55:46 Slot Id : <384> +10:55:46 Transaction Type : RESPONSE +10:55:46 Received From : +10:55:46 ============================================================================ +10:55:46 FNo. Len. Field Value +10:55:46 ============================================================================ +10:55:46 [ 1] [ 4] [0810] +10:55:46 [ 7] [ 10] [0320035546] +10:55:46 [ 11] [ 6] [807046] +10:55:46 [ 15] [ 4] [0320] +10:55:46 [ 37] [ 12] [57910807046] +10:55:46 [ 39] [ 2] [00] +10:55:46 [ 70] [ 3] [001] +10:55:46 ============================================================================ +10:55:46 Sending to : +10:55:46 ============================================================================ +10:55:46 + + +waiting on router queue for slot.... +10:55:54 ============================================================================ +10:55:54 Slot Id : <416> +10:55:54 Transaction Type : REQUEST +10:55:54 Received From : +10:55:54 ============================================================================ +10:55:54 FNo. Len. Field Value +10:55:54 ============================================================================ +10:55:54 [ 1] [ 4] [0800] +10:55:54 [ 7] [ 10] [0320035502] +10:55:54 [ 11] [ 6] [155967] +10:55:54 [ 70] [ 3] [301] +10:55:54 ============================================================================ +10:55:54 + + +waiting on router queue for slot.... +10:55:54 Sending to : +10:55:54 ============================================================================ +10:55:54 ============================================================================ +10:55:54 Slot Id : <416> +10:55:54 Transaction Type : RESPONSE +10:55:54 Received From : +10:55:54 ============================================================================ +10:55:54 FNo. Len. Field Value +10:55:54 ============================================================================ +10:55:54 [ 1] [ 4] [0810] +10:55:54 [ 7] [ 10] [0320035502] +10:55:54 [ 11] [ 6] [155967] +10:55:54 [ 39] [ 2] [00] +10:55:54 [ 70] [ 3] [301] +10:55:54 ============================================================================ +10:55:54 Calculate Source COMM Id = 2 +10:55:54 ============================================================================ +10:55:54 + + +waiting on router queue for slot.... +10:56:05 ============================================================================ +10:56:05 Slot Id : <420> +10:56:05 Transaction Type : REQUEST +10:56:05 Received From : +10:56:05 ============================================================================ +10:56:05 FNo. Len. Field Value +10:56:05 ============================================================================ +10:56:05 [ 1] [ 4] [0800] +10:56:05 [ 7] [ 10] [0320035513] +10:56:05 [ 11] [ 6] [155968] +10:56:05 [ 70] [ 3] [301] +10:56:05 ============================================================================ +10:56:05 + + +waiting on router queue for slot.... +10:56:05 Sending to : +10:56:05 ============================================================================ +10:56:05 ============================================================================ +10:56:05 Slot Id : <420> +10:56:05 Transaction Type : RESPONSE +10:56:05 Received From : +10:56:05 ============================================================================ +10:56:05 FNo. Len. Field Value +10:56:05 ============================================================================ +10:56:05 [ 1] [ 4] [0810] +10:56:05 [ 7] [ 10] [0320035513] +10:56:05 [ 11] [ 6] [155968] +10:56:05 [ 39] [ 2] [00] +10:56:05 [ 70] [ 3] [301] +10:56:05 ============================================================================ +10:56:05 Calculate Source COMM Id = 2 +10:56:05 ============================================================================ +10:56:05 + + +waiting on router queue for slot.... +10:56:13 ============================================================================ +10:56:13 Slot Id : <401> +10:56:13 Transaction Type : REQUEST +10:56:13 Received From : +10:56:13 ============================================================================ +10:56:13 FNo. Len. Field Value +10:56:13 ============================================================================ +10:56:13 [ 1] [ 4] [0200] +10:56:13 [ 2] [ 16] [1808931800013110] +10:56:13 [ 3] [ 6] [301000] +10:56:13 [ 4] [ 12] [000000000000] +10:56:13 [ 7] [ 10] [0320105609] +10:56:13 [ 11] [ 6] [721798] +10:56:13 [ 12] [ 6] [105609] +10:56:13 [ 13] [ 4] [0320] +10:56:13 [ 15] [ 4] [0320] +10:56:13 [ 18] [ 4] [6011] +10:56:13 [ 22] [ 3] [900] +10:56:13 [ 25] [ 2] [02] +10:56:13 [ 28] [ 9] [D00000000] +10:56:13 [ 32] [ 6] [621354] +10:56:13 [ 35] [ 27] [1808931800013110=1803500460] +10:56:13 [ 37] [ 12] [507904635564] +10:56:13 [ 41] [ 8] [17000800] +10:56:13 [ 42] [ 15] [NATIVE ] +10:56:13 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:56:13 [ 49] [ 3] [418] +10:56:13 [ 52] [ 16] [46AD6223B0A06E63] +10:56:13 ============================================================================ +10:56:13 + + +waiting on router queue for slot.... +10:56:13 Sending to : +10:56:13 ============================================================================ +10:56:13 Sending to : +10:56:13 ============================================================================ +10:56:14 ============================================================================ +10:56:14 Slot Id : <401> +10:56:14 Transaction Type : REQUEST +10:56:14 Received From : +10:56:14 ============================================================================ +10:56:14 FNo. Len. Field Value +10:56:14 ============================================================================ +10:56:14 [ 1] [ 4] [0200] +10:56:14 [ 2] [ 16] [1808931800013110] +10:56:14 [ 3] [ 6] [301000] +10:56:14 [ 4] [ 12] [000000000000] +10:56:14 [ 7] [ 10] [0320105609] +10:56:14 [ 11] [ 6] [721798] +10:56:14 [ 12] [ 6] [105609] +10:56:14 [ 13] [ 4] [0320] +10:56:14 [ 15] [ 4] [0320] +10:56:14 [ 18] [ 4] [6011] +10:56:14 [ 22] [ 3] [900] +10:56:14 [ 25] [ 2] [02] +10:56:14 [ 28] [ 9] [D00000000] +10:56:14 [ 32] [ 6] [621354] +10:56:14 [ 35] [ 27] [1808931800013110=1803500460] +10:56:14 [ 37] [ 12] [507904635564] +10:56:14 [ 41] [ 8] [17000800] +10:56:14 [ 42] [ 15] [NATIVE ] +10:56:14 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:56:14 [ 49] [ 3] [418] +10:56:14 [ 52] [ 16] [46AD6223B0A06E63] +10:56:14 ============================================================================ +10:56:14 + + +waiting on router queue for slot.... +10:56:14 Sending to : +10:56:14 ============================================================================ +10:56:14 ============================================================================ +10:56:14 Slot Id : <401> +10:56:14 Transaction Type : REQUEST +10:56:14 Received From : +10:56:14 ============================================================================ +10:56:14 FNo. Len. Field Value +10:56:14 ============================================================================ +10:56:14 [ 1] [ 4] [0200] +10:56:14 [ 2] [ 16] [1808931800013110] +10:56:14 [ 3] [ 6] [301000] +10:56:14 [ 4] [ 12] [000000000000] +10:56:14 [ 7] [ 10] [0320105609] +10:56:14 [ 11] [ 6] [721798] +10:56:14 [ 12] [ 6] [105609] +10:56:14 [ 13] [ 4] [0320] +10:56:14 [ 15] [ 4] [0320] +10:56:14 [ 18] [ 4] [6011] +10:56:14 [ 22] [ 3] [900] +10:56:14 [ 25] [ 2] [02] +10:56:14 [ 28] [ 9] [D00000000] +10:56:14 [ 32] [ 6] [621354] +10:56:14 [ 35] [ 27] [1808931800013110=1803500460] +10:56:14 [ 37] [ 12] [507904635564] +10:56:14 [ 41] [ 8] [17000800] +10:56:14 [ 42] [ 15] [NATIVE ] +10:56:14 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:56:14 [ 49] [ 3] [418] +10:56:14 [ 52] [ 16] [9CF86F44870B988C] +10:56:14 ============================================================================ +10:56:14 + + +waiting on router queue for slot.... +10:56:14 Sending to : <2> +10:56:14 ============================================================================ +10:56:21 ============================================================================ +10:56:21 Slot Id : <381> +10:56:21 Transaction Type : REQUEST +10:56:21 Received From : +10:56:21 ============================================================================ +10:56:21 FNo. Len. Field Value +10:56:21 ============================================================================ +10:56:21 [ 1] [ 4] [0800] +10:56:21 [ 7] [ 10] [0320035412] +10:56:21 [ 11] [ 6] [025356] +10:56:21 [ 37] [ 12] [57910025356] +10:56:21 [ 70] [ 3] [301] +10:56:21 ============================================================================ +10:56:21 + + +waiting on router queue for slot.... +10:56:21 Sending to : +10:56:21 ============================================================================ +10:56:21 ============================================================================ +10:56:21 Slot Id : <381> +10:56:21 Transaction Type : RESPONSE +10:56:21 Received From : +10:56:21 ============================================================================ +10:56:21 FNo. Len. Field Value +10:56:21 ============================================================================ +10:56:21 [ 1] [ 4] [0810] +10:56:21 [ 7] [ 10] [0320035412] +10:56:21 [ 11] [ 6] [025356] +10:56:21 [ 37] [ 12] [579100253560] +10:56:21 [ 39] [ 2] [00] +10:56:21 [ 70] [ 3] [810] +10:56:21 ============================================================================ +10:56:21 Calculate Source COMM Id = 4 +10:56:21 ============================================================================ +10:56:21 + + +waiting on router queue for slot.... +10:56:24 ============================================================================ +10:56:24 Slot Id : <401> +10:56:24 Transaction Type : RESPONSE +10:56:24 Received From : +10:56:24 ============================================================================ +10:56:24 FNo. Len. Field Value +10:56:24 ============================================================================ +10:56:24 [ 1] [ 4] [0210] +10:56:24 [ 2] [ 16] [1808931800013110] +10:56:24 [ 3] [ 6] [301000] +10:56:24 [ 7] [ 10] [0320105609] +10:56:24 [ 11] [ 6] [721798] +10:56:24 [ 12] [ 6] [105609] +10:56:24 [ 13] [ 4] [0320] +10:56:24 [ 14] [ 4] [1803] +10:56:24 [ 19] [ 3] [418] +10:56:24 [ 32] [ 6] [621354] +10:56:24 [ 37] [ 12] [507904635564] +10:56:24 [ 38] [ 6] [721798] +10:56:24 [ 39] [ 2] [00] +10:56:24 [ 41] [ 8] [17000800] +10:56:24 [ 49] [ 3] [418] +10:56:24 [ 52] [ 16] [9CF86F44870B988C] +10:56:24 [ 54] [ 20] [1002418C000195447200] +10:56:24 ============================================================================ +10:56:24 Sending to : +10:56:24 ============================================================================ +10:56:24 + + +waiting on router queue for slot.... +10:56:25 ============================================================================ +10:56:25 Slot Id : <401> +10:56:25 Transaction Type : RESPONSE +10:56:25 Received From : +10:56:25 ============================================================================ +10:56:25 FNo. Len. Field Value +10:56:25 ============================================================================ +10:56:25 [ 1] [ 4] [0210] +10:56:25 [ 2] [ 16] [1808931800013110] +10:56:25 [ 3] [ 6] [301000] +10:56:25 [ 7] [ 10] [0320105609] +10:56:25 [ 11] [ 6] [721798] +10:56:25 [ 12] [ 6] [105609] +10:56:25 [ 13] [ 4] [0320] +10:56:25 [ 14] [ 4] [1803] +10:56:25 [ 19] [ 3] [418] +10:56:25 [ 32] [ 6] [621354] +10:56:25 [ 37] [ 12] [507904635564] +10:56:25 [ 38] [ 6] [721798] +10:56:25 [ 39] [ 2] [00] +10:56:25 [ 41] [ 8] [17000800] +10:56:25 [ 49] [ 3] [418] +10:56:25 [ 52] [ 16] [9CF86F44870B988C] +10:56:25 [ 54] [ 20] [1002418C000195447200] +10:56:25 ============================================================================ +10:56:25 Calculate Source COMM Id = 0 +10:56:25 ============================================================================ +10:56:25 + + +waiting on router queue for slot.... +10:56:27 ============================================================================ +10:56:27 Slot Id : <415> +10:56:27 Transaction Type : REQUEST +10:56:27 Received From : +10:56:27 ============================================================================ +10:56:27 FNo. Len. Field Value +10:56:27 ============================================================================ +10:56:27 [ 1] [ 4] [0800] +10:56:27 [ 7] [ 10] [0320035535] +10:56:27 [ 11] [ 6] [155969] +10:56:27 [ 70] [ 3] [301] +10:56:27 ============================================================================ +10:56:27 + + +waiting on router queue for slot.... +10:56:27 Sending to : +10:56:27 ============================================================================ +10:56:27 ============================================================================ +10:56:27 Slot Id : <415> +10:56:27 Transaction Type : RESPONSE +10:56:27 Received From : +10:56:27 ============================================================================ +10:56:27 FNo. Len. Field Value +10:56:27 ============================================================================ +10:56:27 [ 1] [ 4] [0810] +10:56:27 [ 7] [ 10] [0320035535] +10:56:27 [ 11] [ 6] [155969] +10:56:27 [ 39] [ 2] [00] +10:56:27 [ 70] [ 3] [301] +10:56:27 ============================================================================ +10:56:27 Calculate Source COMM Id = 2 +10:56:27 ============================================================================ +10:56:27 + + +waiting on router queue for slot.... +10:56:38 ============================================================================ +10:56:38 Slot Id : <398> +10:56:38 Transaction Type : REQUEST +10:56:38 Received From : +10:56:38 ============================================================================ +10:56:38 FNo. Len. Field Value +10:56:38 ============================================================================ +10:56:38 [ 1] [ 4] [0800] +10:56:38 [ 7] [ 10] [0320035545] +10:56:38 [ 11] [ 6] [155970] +10:56:38 [ 70] [ 3] [301] +10:56:38 ============================================================================ +10:56:38 + + +waiting on router queue for slot.... +10:56:38 Sending to : +10:56:38 ============================================================================ +10:56:38 ============================================================================ +10:56:38 Slot Id : <398> +10:56:38 Transaction Type : RESPONSE +10:56:38 Received From : +10:56:38 ============================================================================ +10:56:38 FNo. Len. Field Value +10:56:38 ============================================================================ +10:56:38 [ 1] [ 4] [0810] +10:56:38 [ 7] [ 10] [0320035545] +10:56:38 [ 11] [ 6] [155970] +10:56:38 [ 39] [ 2] [00] +10:56:38 [ 70] [ 3] [301] +10:56:38 ============================================================================ +10:56:38 Calculate Source COMM Id = 2 +10:56:38 ============================================================================ +10:56:38 + + +waiting on router queue for slot.... +10:56:40 ============================================================================ +10:56:40 Slot Id : <433> +10:56:40 Transaction Type : REQUEST +10:56:40 Received From : +10:56:40 ============================================================================ +10:56:40 FNo. Len. Field Value +10:56:40 ============================================================================ +10:56:40 [ 1] [ 4] [0200] +10:56:40 [ 2] [ 16] [1888880000089870] +10:56:40 [ 3] [ 6] [010000] +10:56:40 [ 4] [ 12] [000030000000] +10:56:40 [ 7] [ 10] [0320105636] +10:56:40 [ 11] [ 6] [721904] +10:56:40 [ 12] [ 6] [105636] +10:56:40 [ 13] [ 4] [0320] +10:56:40 [ 15] [ 4] [0320] +10:56:40 [ 18] [ 4] [6011] +10:56:40 [ 22] [ 3] [900] +10:56:40 [ 25] [ 2] [02] +10:56:40 [ 28] [ 9] [D00002000] +10:56:40 [ 32] [ 6] [621354] +10:56:40 [ 35] [ 32] [1888880000089870=000010100000694] +10:56:40 [ 37] [ 12] [507904645034] +10:56:40 [ 41] [ 8] [17000900] +10:56:40 [ 42] [ 15] [NATIVE ] +10:56:40 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +10:56:40 [ 49] [ 3] [418] +10:56:40 [ 52] [ 16] [80D808A3C24190A5] +10:56:40 ============================================================================ +10:56:40 + + +waiting on router queue for slot.... +10:56:40 Sending to : +10:56:40 ============================================================================ +10:56:40 Sending to : +10:56:40 ============================================================================ +10:56:41 ============================================================================ +10:56:41 Slot Id : <433> +10:56:41 Transaction Type : REQUEST +10:56:41 Received From : +10:56:41 ============================================================================ +10:56:41 FNo. Len. Field Value +10:56:41 ============================================================================ +10:56:41 [ 1] [ 4] [0200] +10:56:41 [ 2] [ 16] [1888880000089870] +10:56:41 [ 3] [ 6] [010000] +10:56:41 [ 4] [ 12] [000030000000] +10:56:41 [ 7] [ 10] [0320105636] +10:56:41 [ 11] [ 6] [721904] +10:56:41 [ 12] [ 6] [105636] +10:56:41 [ 13] [ 4] [0320] +10:56:41 [ 15] [ 4] [0320] +10:56:41 [ 18] [ 4] [6011] +10:56:41 [ 22] [ 3] [900] +10:56:41 [ 25] [ 2] [02] +10:56:41 [ 28] [ 9] [D00002000] +10:56:41 [ 32] [ 6] [621354] +10:56:41 [ 35] [ 32] [1888880000089870=000010100000694] +10:56:41 [ 37] [ 12] [507904645034] +10:56:41 [ 41] [ 8] [17000900] +10:56:41 [ 42] [ 15] [NATIVE ] +10:56:41 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +10:56:41 [ 49] [ 3] [418] +10:56:41 [ 52] [ 16] [80D808A3C24190A5] +10:56:41 ============================================================================ +10:56:41 + + +waiting on router queue for slot.... +10:56:41 Sending to : +10:56:41 ============================================================================ +10:56:41 ============================================================================ +10:56:41 Slot Id : <433> +10:56:41 Transaction Type : REQUEST +10:56:41 Received From : +10:56:41 ============================================================================ +10:56:41 FNo. Len. Field Value +10:56:41 ============================================================================ +10:56:41 [ 1] [ 4] [0200] +10:56:41 [ 2] [ 16] [1888880000089870] +10:56:41 [ 3] [ 6] [010000] +10:56:41 [ 4] [ 12] [000030000000] +10:56:41 [ 7] [ 10] [0320105636] +10:56:41 [ 11] [ 6] [721904] +10:56:41 [ 12] [ 6] [105636] +10:56:41 [ 13] [ 4] [0320] +10:56:41 [ 15] [ 4] [0320] +10:56:41 [ 18] [ 4] [6011] +10:56:41 [ 22] [ 3] [900] +10:56:41 [ 25] [ 2] [02] +10:56:41 [ 28] [ 9] [D00002000] +10:56:41 [ 32] [ 6] [621354] +10:56:41 [ 35] [ 32] [1888880000089870=000010100000694] +10:56:41 [ 37] [ 12] [507904645034] +10:56:41 [ 41] [ 8] [17000900] +10:56:41 [ 42] [ 15] [NATIVE ] +10:56:41 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +10:56:41 [ 49] [ 3] [418] +10:56:41 [ 52] [ 16] [71CE10EE13F63820] +10:56:41 ============================================================================ +10:56:41 + + +waiting on router queue for slot.... +10:56:41 Sending to : <5> +10:56:41 ============================================================================ +10:56:48 ============================================================================ +10:56:48 Slot Id : <425> +10:56:48 Transaction Type : REQUEST +10:56:48 Received From : +10:56:48 ============================================================================ +10:56:48 FNo. Len. Field Value +10:56:48 ============================================================================ +10:56:48 [ 1] [ 4] [0800] +10:56:48 [ 2] [ 5] [02531] +10:56:48 [ 3] [ 6] [579108] +10:56:48 [ 7] [ 10] [0320035648] +10:56:48 [ 11] [ 6] [807047] +10:56:48 [ 15] [ 10] [0320035648] +10:56:48 [ 37] [ 11] [57910807047] +10:56:48 [ 70] [ 3] [001] +10:56:48 ============================================================================ +10:56:48 + + +waiting on router queue for slot.... +10:56:48 ============================================================================ +10:56:48 Slot Id : <425> +10:56:48 Transaction Type : RESPONSE +10:56:48 Received From : +10:56:48 ============================================================================ +10:56:48 FNo. Len. Field Value +10:56:48 ============================================================================ +10:56:48 [ 1] [ 4] [0810] +10:56:48 [ 7] [ 10] [0320035648] +10:56:48 [ 11] [ 6] [807047] +10:56:48 [ 15] [ 4] [0320] +10:56:48 [ 37] [ 12] [57910807047] +10:56:48 [ 39] [ 2] [00] +10:56:48 [ 70] [ 3] [001] +10:56:48 ============================================================================ +10:56:48 Sending to : +10:56:48 ============================================================================ +10:56:48 + + +waiting on router queue for slot.... +10:56:49 ============================================================================ +10:56:49 Slot Id : <433> +10:56:49 Transaction Type : RESPONSE +10:56:49 Received From : +10:56:49 ============================================================================ +10:56:49 FNo. Len. Field Value +10:56:49 ============================================================================ +10:56:49 [ 1] [ 4] [0210] +10:56:49 [ 2] [ 16] [1888880000089870] +10:56:49 [ 3] [ 6] [010000] +10:56:49 [ 4] [ 12] [000030000000] +10:56:49 [ 7] [ 10] [0320105636] +10:56:49 [ 11] [ 6] [721904] +10:56:49 [ 12] [ 6] [105636] +10:56:49 [ 13] [ 4] [0320] +10:56:49 [ 15] [ 4] [0320] +10:56:49 [ 18] [ 4] [6011] +10:56:49 [ 19] [ 3] [418] +10:56:49 [ 32] [ 6] [621354] +10:56:49 [ 37] [ 12] [507904645034] +10:56:49 [ 38] [ 6] [988874] +10:56:49 [ 39] [ 2] [00] +10:56:49 [ 41] [ 8] [17000900] +10:56:49 [ 49] [ 3] [418] +10:56:49 [ 54] [ 0] [] +10:56:49 ============================================================================ +10:56:49 Sending to : +10:56:49 ============================================================================ +10:56:49 + + +waiting on router queue for slot.... +10:56:50 ============================================================================ +10:56:50 Slot Id : <433> +10:56:50 Transaction Type : RESPONSE +10:56:50 Received From : +10:56:50 ============================================================================ +10:56:50 FNo. Len. Field Value +10:56:50 ============================================================================ +10:56:50 [ 1] [ 4] [0210] +10:56:50 [ 2] [ 16] [1888880000089870] +10:56:50 [ 3] [ 6] [010000] +10:56:50 [ 4] [ 12] [000030000000] +10:56:50 [ 7] [ 10] [0320105636] +10:56:50 [ 11] [ 6] [721904] +10:56:50 [ 12] [ 6] [105636] +10:56:50 [ 13] [ 4] [0320] +10:56:50 [ 15] [ 4] [0320] +10:56:50 [ 18] [ 4] [6011] +10:56:50 [ 19] [ 3] [418] +10:56:50 [ 32] [ 6] [621354] +10:56:50 [ 37] [ 12] [507904645034] +10:56:50 [ 38] [ 6] [988874] +10:56:50 [ 39] [ 2] [00] +10:56:50 [ 41] [ 8] [17000900] +10:56:50 [ 49] [ 3] [418] +10:56:50 [ 54] [ 0] [] +10:56:50 ============================================================================ +10:56:50 Calculate Source COMM Id = 0 +10:56:50 ============================================================================ +10:56:50 + + +waiting on router queue for slot.... +10:56:55 ============================================================================ +10:56:55 Slot Id : <364> +10:56:55 Transaction Type : REQUEST +10:56:55 Received From : +10:56:55 ============================================================================ +10:56:55 FNo. Len. Field Value +10:56:55 ============================================================================ +10:56:55 [ 1] [ 4] [0800] +10:56:55 [ 7] [ 10] [0320035601] +10:56:55 [ 11] [ 6] [155971] +10:56:55 [ 70] [ 3] [301] +10:56:55 ============================================================================ +10:56:55 + + +waiting on router queue for slot.... +10:56:55 Sending to : +10:56:55 ============================================================================ +10:56:55 ============================================================================ +10:56:55 Slot Id : <364> +10:56:55 Transaction Type : RESPONSE +10:56:55 Received From : +10:56:55 ============================================================================ +10:56:55 FNo. Len. Field Value +10:56:55 ============================================================================ +10:56:55 [ 1] [ 4] [0810] +10:56:55 [ 7] [ 10] [0320035601] +10:56:55 [ 11] [ 6] [155971] +10:56:55 [ 39] [ 2] [00] +10:56:55 [ 70] [ 3] [301] +10:56:55 ============================================================================ +10:56:55 Calculate Source COMM Id = 2 +10:56:55 ============================================================================ +10:56:55 + + +waiting on router queue for slot.... +10:56:56 ============================================================================ +10:56:56 Slot Id : <388> +10:56:56 Transaction Type : REQUEST +10:56:56 Received From : +10:56:56 ============================================================================ +10:56:56 FNo. Len. Field Value +10:56:56 ============================================================================ +10:56:56 [ 1] [ 4] [0200] +10:56:56 [ 2] [ 16] [6688990602739409] +10:56:56 [ 3] [ 6] [010000] +10:56:56 [ 4] [ 12] [000200000000] +10:56:56 [ 7] [ 10] [0320035603] +10:56:56 [ 11] [ 6] [268288] +10:56:56 [ 12] [ 6] [105603] +10:56:56 [ 13] [ 4] [0320] +10:56:56 [ 14] [ 4] [4310] +10:56:56 [ 15] [ 4] [0320] +10:56:56 [ 18] [ 4] [6011] +10:56:56 [ 19] [ 3] [418] +10:56:56 [ 22] [ 3] [021] +10:56:56 [ 25] [ 2] [01] +10:56:56 [ 28] [ 9] [D00002000] +10:56:56 [ 32] [ 6] [180893] +10:56:56 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:56:56 [ 37] [ 12] [507903268288] +10:56:56 [ 41] [ 8] [0486HPXK] +10:56:56 [ 42] [ 15] [999999 ] +10:56:56 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +10:56:56 [ 49] [ 3] [418] +10:56:56 [ 52] [ 16] [CD7202A9461C02E4] +10:56:56 ============================================================================ +10:56:56 + + +waiting on router queue for slot.... +10:56:56 Sending to : +10:56:56 ============================================================================ +10:56:56 Sending to : +10:56:56 ============================================================================ +10:56:57 ============================================================================ +10:56:57 Slot Id : <388> +10:56:57 Transaction Type : REQUEST +10:56:57 Received From : +10:56:57 ============================================================================ +10:56:57 FNo. Len. Field Value +10:56:57 ============================================================================ +10:56:57 [ 1] [ 4] [0200] +10:56:57 [ 2] [ 16] [6688990602739409] +10:56:57 [ 3] [ 6] [010000] +10:56:57 [ 4] [ 12] [000200000000] +10:56:57 [ 7] [ 10] [0320035603] +10:56:57 [ 11] [ 6] [268288] +10:56:57 [ 12] [ 6] [105603] +10:56:57 [ 13] [ 4] [0320] +10:56:57 [ 14] [ 4] [4310] +10:56:57 [ 15] [ 4] [0320] +10:56:57 [ 18] [ 4] [6011] +10:56:57 [ 19] [ 3] [418] +10:56:57 [ 22] [ 3] [021] +10:56:57 [ 25] [ 2] [01] +10:56:57 [ 28] [ 9] [D00002000] +10:56:57 [ 32] [ 6] [180893] +10:56:57 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:56:57 [ 37] [ 12] [507903268288] +10:56:57 [ 41] [ 8] [0486HPXK] +10:56:57 [ 42] [ 15] [999999 ] +10:56:57 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +10:56:57 [ 49] [ 3] [418] +10:56:57 [ 52] [ 16] [CD7202A9461C02E4] +10:56:57 ============================================================================ +10:56:57 + + +waiting on router queue for slot.... +10:56:57 Sending to : +10:56:57 ============================================================================ +10:56:57 ============================================================================ +10:56:57 Slot Id : <388> +10:56:57 Transaction Type : REQUEST +10:56:57 Received From : +10:56:57 ============================================================================ +10:56:57 FNo. Len. Field Value +10:56:57 ============================================================================ +10:56:57 [ 1] [ 4] [0200] +10:56:57 [ 2] [ 16] [6688990602739409] +10:56:57 [ 3] [ 6] [010000] +10:56:57 [ 4] [ 12] [000200000000] +10:56:57 [ 7] [ 10] [0320035603] +10:56:57 [ 11] [ 6] [268288] +10:56:57 [ 12] [ 6] [105603] +10:56:57 [ 13] [ 4] [0320] +10:56:57 [ 14] [ 4] [4310] +10:56:57 [ 15] [ 4] [0320] +10:56:57 [ 18] [ 4] [6011] +10:56:57 [ 19] [ 3] [418] +10:56:57 [ 22] [ 3] [021] +10:56:57 [ 25] [ 2] [01] +10:56:57 [ 28] [ 9] [D00002000] +10:56:57 [ 32] [ 6] [180893] +10:56:57 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:56:57 [ 37] [ 12] [507903268288] +10:56:57 [ 41] [ 8] [0486HPXK] +10:56:57 [ 42] [ 15] [999999 ] +10:56:57 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +10:56:57 [ 49] [ 3] [418] +10:56:57 [ 52] [ 16] [6089E472DFE9D627] +10:56:57 ============================================================================ +10:56:57 + + +waiting on router queue for slot.... +10:56:57 Sending to : <0> +10:56:57 ============================================================================ +10:56:57 ============================================================================ +10:56:57 Slot Id : <388> +10:56:57 Transaction Type : RESPONSE +10:56:57 Received From : +10:56:57 ============================================================================ +10:56:57 FNo. Len. Field Value +10:56:57 ============================================================================ +10:56:57 [ 1] [ 4] [0210] +10:56:57 [ 2] [ 16] [6688990602739409] +10:56:57 [ 3] [ 6] [010000] +10:56:57 [ 4] [ 12] [000200000000] +10:56:57 [ 7] [ 10] [0320035603] +10:56:57 [ 11] [ 6] [268288] +10:56:57 [ 12] [ 6] [105603] +10:56:57 [ 13] [ 4] [0320] +10:56:57 [ 15] [ 4] [0320] +10:56:57 [ 18] [ 4] [6011] +10:56:57 [ 19] [ 3] [418] +10:56:57 [ 22] [ 3] [021] +10:56:57 [ 32] [ 6] [180893] +10:56:57 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:56:57 [ 37] [ 12] [507903268288] +10:56:57 [ 39] [ 2] [61] +10:56:57 [ 41] [ 8] [0486HPXK] +10:56:57 [ 49] [ 3] [418] +10:56:57 ============================================================================ +10:56:57 Sending to : +10:56:57 ============================================================================ +10:56:57 + + +waiting on router queue for slot.... +10:56:58 ============================================================================ +10:56:58 Slot Id : <388> +10:56:58 Transaction Type : RESPONSE +10:56:58 Received From : +10:56:58 ============================================================================ +10:56:58 FNo. Len. Field Value +10:56:58 ============================================================================ +10:56:58 [ 1] [ 4] [0210] +10:56:58 [ 2] [ 16] [6688990602739409] +10:56:58 [ 3] [ 6] [010000] +10:56:58 [ 4] [ 12] [000200000000] +10:56:58 [ 7] [ 10] [0320035603] +10:56:58 [ 11] [ 6] [268288] +10:56:58 [ 12] [ 6] [105603] +10:56:58 [ 13] [ 4] [0320] +10:56:58 [ 15] [ 4] [0320] +10:56:58 [ 18] [ 4] [6011] +10:56:58 [ 19] [ 3] [418] +10:56:58 [ 22] [ 3] [021] +10:56:58 [ 32] [ 6] [180893] +10:56:58 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:56:58 [ 37] [ 12] [507903268288] +10:56:58 [ 39] [ 2] [61] +10:56:58 [ 41] [ 8] [0486HPXK] +10:56:58 [ 49] [ 3] [418] +10:56:58 ============================================================================ +10:56:58 Calculate Source COMM Id = 2 +10:56:58 ============================================================================ +10:56:58 + + +waiting on router queue for slot.... +10:57:09 ============================================================================ +10:57:09 Slot Id : <367> +10:57:09 Transaction Type : REQUEST +10:57:09 Received From : +10:57:09 ============================================================================ +10:57:09 FNo. Len. Field Value +10:57:09 ============================================================================ +10:57:09 [ 1] [ 4] [0800] +10:57:09 [ 7] [ 10] [0320035617] +10:57:09 [ 11] [ 6] [155972] +10:57:09 [ 70] [ 3] [301] +10:57:09 ============================================================================ +10:57:09 + + +waiting on router queue for slot.... +10:57:09 Sending to : +10:57:09 ============================================================================ +10:57:09 ============================================================================ +10:57:09 Slot Id : <367> +10:57:09 Transaction Type : RESPONSE +10:57:09 Received From : +10:57:09 ============================================================================ +10:57:09 FNo. Len. Field Value +10:57:09 ============================================================================ +10:57:09 [ 1] [ 4] [0810] +10:57:09 [ 7] [ 10] [0320035617] +10:57:09 [ 11] [ 6] [155972] +10:57:09 [ 39] [ 2] [00] +10:57:09 [ 70] [ 3] [301] +10:57:09 ============================================================================ +10:57:09 Calculate Source COMM Id = 2 +10:57:09 ============================================================================ +10:57:09 + + +waiting on router queue for slot.... +10:57:15 ============================================================================ +10:57:15 Slot Id : <430> +10:57:15 Transaction Type : REQUEST +10:57:15 Received From : +10:57:15 ============================================================================ +10:57:15 FNo. Len. Field Value +10:57:15 ============================================================================ +10:57:15 [ 1] [ 4] [0200] +10:57:15 [ 2] [ 16] [6213543000091354] +10:57:15 [ 3] [ 6] [010000] +10:57:15 [ 4] [ 12] [000020000000] +10:57:15 [ 7] [ 10] [0320105506] +10:57:15 [ 11] [ 6] [939908] +10:57:15 [ 12] [ 6] [105506] +10:57:15 [ 13] [ 4] [0320] +10:57:15 [ 15] [ 4] [0320] +10:57:15 [ 18] [ 4] [6011] +10:57:15 [ 19] [ 3] [418] +10:57:15 [ 22] [ 3] [021] +10:57:15 [ 25] [ 2] [01] +10:57:15 [ 28] [ 9] [D00002000] +10:57:15 [ 32] [ 6] [668899] +10:57:15 [ 35] [ 32] [6213543000091354=491212019135895] +10:57:15 [ 37] [ 12] [507900196079] +10:57:15 [ 41] [ 8] [03001003] +10:57:15 [ 42] [ 15] [APT ] +10:57:15 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +10:57:15 [ 49] [ 3] [418] +10:57:15 [ 52] [ 16] [183FB02EEA2BD091] +10:57:15 ============================================================================ +10:57:15 + + +waiting on router queue for slot.... +10:57:15 Sending to : +10:57:15 ============================================================================ +10:57:15 Sending to : +10:57:15 ============================================================================ +10:57:16 ============================================================================ +10:57:16 Slot Id : <430> +10:57:16 Transaction Type : REQUEST +10:57:16 Received From : +10:57:16 ============================================================================ +10:57:16 FNo. Len. Field Value +10:57:16 ============================================================================ +10:57:16 [ 1] [ 4] [0200] +10:57:16 [ 2] [ 16] [6213543000091354] +10:57:16 [ 3] [ 6] [010000] +10:57:16 [ 4] [ 12] [000020000000] +10:57:16 [ 7] [ 10] [0320105506] +10:57:16 [ 11] [ 6] [939908] +10:57:16 [ 12] [ 6] [105506] +10:57:16 [ 13] [ 4] [0320] +10:57:16 [ 15] [ 4] [0320] +10:57:16 [ 18] [ 4] [6011] +10:57:16 [ 19] [ 3] [418] +10:57:16 [ 22] [ 3] [021] +10:57:16 [ 25] [ 2] [01] +10:57:16 [ 28] [ 9] [D00002000] +10:57:16 [ 32] [ 6] [668899] +10:57:16 [ 35] [ 32] [6213543000091354=491212019135895] +10:57:16 [ 37] [ 12] [507900196079] +10:57:16 [ 41] [ 8] [03001003] +10:57:16 [ 42] [ 15] [APT ] +10:57:16 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +10:57:16 [ 49] [ 3] [418] +10:57:16 [ 52] [ 16] [183FB02EEA2BD091] +10:57:16 ============================================================================ +10:57:16 + + +waiting on router queue for slot.... +10:57:16 Sending to : +10:57:16 ============================================================================ +10:57:16 ============================================================================ +10:57:16 Slot Id : <430> +10:57:16 Transaction Type : REQUEST +10:57:16 Received From : +10:57:16 ============================================================================ +10:57:16 FNo. Len. Field Value +10:57:16 ============================================================================ +10:57:16 [ 1] [ 4] [0200] +10:57:16 [ 2] [ 16] [6213543000091354] +10:57:16 [ 3] [ 6] [010000] +10:57:16 [ 4] [ 12] [000020000000] +10:57:16 [ 7] [ 10] [0320105506] +10:57:16 [ 11] [ 6] [939908] +10:57:16 [ 12] [ 6] [105506] +10:57:16 [ 13] [ 4] [0320] +10:57:16 [ 15] [ 4] [0320] +10:57:16 [ 18] [ 4] [6011] +10:57:16 [ 19] [ 3] [418] +10:57:16 [ 22] [ 3] [021] +10:57:16 [ 25] [ 2] [01] +10:57:16 [ 28] [ 9] [D00002000] +10:57:16 [ 32] [ 6] [668899] +10:57:16 [ 35] [ 32] [6213543000091354=491212019135895] +10:57:16 [ 37] [ 12] [507900196079] +10:57:16 [ 41] [ 8] [03001003] +10:57:16 [ 42] [ 15] [APT ] +10:57:16 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +10:57:16 [ 49] [ 3] [418] +10:57:16 [ 52] [ 16] [50174C97AC4200DD] +10:57:16 ============================================================================ +10:57:16 + + +waiting on router queue for slot.... +10:57:16 Sending to : <0> +10:57:16 ============================================================================ +10:57:16 ============================================================================ +10:57:16 Slot Id : <430> +10:57:16 Transaction Type : RESPONSE +10:57:16 Received From : +10:57:16 ============================================================================ +10:57:16 FNo. Len. Field Value +10:57:16 ============================================================================ +10:57:16 [ 1] [ 4] [0210] +10:57:16 [ 2] [ 16] [6213543000091354] +10:57:16 [ 3] [ 6] [010000] +10:57:16 [ 4] [ 12] [000020000000] +10:57:16 [ 7] [ 10] [0320105506] +10:57:16 [ 11] [ 6] [939908] +10:57:16 [ 12] [ 6] [105506] +10:57:16 [ 13] [ 4] [0320] +10:57:16 [ 15] [ 4] [0320] +10:57:16 [ 18] [ 4] [6011] +10:57:16 [ 19] [ 3] [418] +10:57:16 [ 22] [ 3] [021] +10:57:16 [ 32] [ 6] [668899] +10:57:16 [ 35] [ 32] [6213543000091354=491212019135895] +10:57:16 [ 37] [ 12] [507900196079] +10:57:16 [ 38] [ 6] [105712] +10:57:16 [ 39] [ 2] [55] +10:57:16 [ 41] [ 8] [03001003] +10:57:16 [ 49] [ 3] [418] +10:57:16 ============================================================================ +10:57:16 Sending to : +10:57:16 ============================================================================ +10:57:16 + + +waiting on router queue for slot.... +10:57:17 ============================================================================ +10:57:17 Slot Id : <430> +10:57:17 Transaction Type : RESPONSE +10:57:17 Received From : +10:57:17 ============================================================================ +10:57:17 FNo. Len. Field Value +10:57:17 ============================================================================ +10:57:17 [ 1] [ 4] [0210] +10:57:17 [ 2] [ 16] [6213543000091354] +10:57:17 [ 3] [ 6] [010000] +10:57:17 [ 4] [ 12] [000020000000] +10:57:17 [ 7] [ 10] [0320105506] +10:57:17 [ 11] [ 6] [939908] +10:57:17 [ 12] [ 6] [105506] +10:57:17 [ 13] [ 4] [0320] +10:57:17 [ 15] [ 4] [0320] +10:57:17 [ 18] [ 4] [6011] +10:57:17 [ 19] [ 3] [418] +10:57:17 [ 22] [ 3] [021] +10:57:17 [ 32] [ 6] [668899] +10:57:17 [ 35] [ 32] [6213543000091354=491212019135895] +10:57:17 [ 37] [ 12] [507900196079] +10:57:17 [ 38] [ 6] [105712] +10:57:17 [ 39] [ 2] [55] +10:57:17 [ 41] [ 8] [03001003] +10:57:17 [ 49] [ 3] [418] +10:57:17 ============================================================================ +10:57:17 Calculate Source COMM Id = 4 +10:57:17 ============================================================================ +10:57:17 + + +waiting on router queue for slot.... +10:57:18 ============================================================================ +10:57:18 Slot Id : <441> +10:57:18 Transaction Type : REQUEST +10:57:18 Received From : +10:57:18 ============================================================================ +10:57:18 FNo. Len. Field Value +10:57:18 ============================================================================ +10:57:18 [ 1] [ 4] [0800] +10:57:18 [ 7] [ 10] [0320035714] +10:57:18 [ 11] [ 6] [013359] +10:57:18 [ 37] [ 12] [507910013359] +10:57:18 [ 70] [ 3] [001] +10:57:18 ============================================================================ +10:57:18 + + +waiting on router queue for slot.... +10:57:18 Sending to : +10:57:18 ============================================================================ +10:57:18 ============================================================================ +10:57:18 Slot Id : <441> +10:57:18 Transaction Type : RESPONSE +10:57:18 Received From : +10:57:18 ============================================================================ +10:57:18 FNo. Len. Field Value +10:57:18 ============================================================================ +10:57:18 [ 1] [ 4] [0810] +10:57:18 [ 7] [ 10] [0320035714] +10:57:18 [ 11] [ 6] [013359] +10:57:18 [ 37] [ 12] [507910013359] +10:57:18 [ 39] [ 2] [00] +10:57:18 [ 70] [ 3] [001] +10:57:18 ============================================================================ +10:57:18 Calculate Source COMM Id = 0 +10:57:18 ============================================================================ +10:57:18 + + +waiting on router queue for slot.... +10:57:25 ============================================================================ +10:57:25 Slot Id : <409> +10:57:25 Transaction Type : REQUEST +10:57:25 Received From : +10:57:25 ============================================================================ +10:57:25 FNo. Len. Field Value +10:57:25 ============================================================================ +10:57:25 [ 1] [ 4] [0800] +10:57:25 [ 7] [ 10] [0320035632] +10:57:25 [ 11] [ 6] [155973] +10:57:25 [ 70] [ 3] [301] +10:57:25 ============================================================================ +10:57:25 + + +waiting on router queue for slot.... +10:57:25 Sending to : +10:57:25 ============================================================================ +10:57:25 ============================================================================ +10:57:25 Slot Id : <409> +10:57:25 Transaction Type : RESPONSE +10:57:25 Received From : +10:57:25 ============================================================================ +10:57:25 FNo. Len. Field Value +10:57:25 ============================================================================ +10:57:25 [ 1] [ 4] [0810] +10:57:25 [ 7] [ 10] [0320035632] +10:57:25 [ 11] [ 6] [155973] +10:57:25 [ 39] [ 2] [00] +10:57:25 [ 70] [ 3] [301] +10:57:25 ============================================================================ +10:57:25 Calculate Source COMM Id = 2 +10:57:25 ============================================================================ +10:57:25 + + +waiting on router queue for slot.... +10:57:36 ============================================================================ +10:57:36 Slot Id : <437> +10:57:36 Transaction Type : REQUEST +10:57:36 Received From : +10:57:36 ============================================================================ +10:57:36 FNo. Len. Field Value +10:57:36 ============================================================================ +10:57:36 [ 1] [ 4] [0200] +10:57:36 [ 2] [ 16] [1888880000089870] +10:57:36 [ 3] [ 6] [300000] +10:57:36 [ 4] [ 12] [000000000000] +10:57:36 [ 7] [ 10] [0320105732] +10:57:36 [ 11] [ 6] [722142] +10:57:36 [ 12] [ 6] [105732] +10:57:36 [ 13] [ 4] [0320] +10:57:36 [ 15] [ 4] [0320] +10:57:36 [ 18] [ 4] [6011] +10:57:36 [ 22] [ 3] [900] +10:57:36 [ 25] [ 2] [02] +10:57:36 [ 28] [ 9] [D00000000] +10:57:36 [ 32] [ 6] [621354] +10:57:36 [ 35] [ 32] [1888880000089870=000010100000694] +10:57:36 [ 37] [ 12] [507904645035] +10:57:36 [ 41] [ 8] [17000900] +10:57:36 [ 42] [ 15] [NATIVE ] +10:57:36 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +10:57:36 [ 49] [ 3] [418] +10:57:36 [ 52] [ 16] [80D808A3C24190A5] +10:57:36 ============================================================================ +10:57:36 + + +waiting on router queue for slot.... +10:57:36 Sending to : +10:57:36 ============================================================================ +10:57:36 Sending to : +10:57:36 ============================================================================ +10:57:37 ============================================================================ +10:57:37 Slot Id : <437> +10:57:37 Transaction Type : REQUEST +10:57:37 Received From : +10:57:37 ============================================================================ +10:57:37 FNo. Len. Field Value +10:57:37 ============================================================================ +10:57:37 [ 1] [ 4] [0200] +10:57:37 [ 2] [ 16] [1888880000089870] +10:57:37 [ 3] [ 6] [300000] +10:57:37 [ 4] [ 12] [000000000000] +10:57:37 [ 7] [ 10] [0320105732] +10:57:37 [ 11] [ 6] [722142] +10:57:37 [ 12] [ 6] [105732] +10:57:37 [ 13] [ 4] [0320] +10:57:37 [ 15] [ 4] [0320] +10:57:37 [ 18] [ 4] [6011] +10:57:37 [ 22] [ 3] [900] +10:57:37 [ 25] [ 2] [02] +10:57:37 [ 28] [ 9] [D00000000] +10:57:37 [ 32] [ 6] [621354] +10:57:37 [ 35] [ 32] [1888880000089870=000010100000694] +10:57:37 [ 37] [ 12] [507904645035] +10:57:37 [ 41] [ 8] [17000900] +10:57:37 [ 42] [ 15] [NATIVE ] +10:57:37 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +10:57:37 [ 49] [ 3] [418] +10:57:37 [ 52] [ 16] [80D808A3C24190A5] +10:57:37 ============================================================================ +10:57:37 + + +waiting on router queue for slot.... +10:57:37 Sending to : +10:57:37 ============================================================================ +10:57:37 ============================================================================ +10:57:37 Slot Id : <437> +10:57:37 Transaction Type : REQUEST +10:57:37 Received From : +10:57:37 ============================================================================ +10:57:37 FNo. Len. Field Value +10:57:37 ============================================================================ +10:57:37 [ 1] [ 4] [0200] +10:57:37 [ 2] [ 16] [1888880000089870] +10:57:37 [ 3] [ 6] [300000] +10:57:37 [ 4] [ 12] [000000000000] +10:57:37 [ 7] [ 10] [0320105732] +10:57:37 [ 11] [ 6] [722142] +10:57:37 [ 12] [ 6] [105732] +10:57:37 [ 13] [ 4] [0320] +10:57:37 [ 15] [ 4] [0320] +10:57:37 [ 18] [ 4] [6011] +10:57:37 [ 22] [ 3] [900] +10:57:37 [ 25] [ 2] [02] +10:57:37 [ 28] [ 9] [D00000000] +10:57:37 [ 32] [ 6] [621354] +10:57:37 [ 35] [ 32] [1888880000089870=000010100000694] +10:57:37 [ 37] [ 12] [507904645035] +10:57:37 [ 41] [ 8] [17000900] +10:57:37 [ 42] [ 15] [NATIVE ] +10:57:37 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +10:57:37 [ 49] [ 3] [418] +10:57:37 [ 52] [ 16] [71CE10EE13F63820] +10:57:37 ============================================================================ +10:57:37 + + +waiting on router queue for slot.... +10:57:37 Sending to : <5> +10:57:37 ============================================================================ +10:57:40 ============================================================================ +10:57:40 Slot Id : <437> +10:57:40 Transaction Type : RESPONSE +10:57:40 Received From : +10:57:40 ============================================================================ +10:57:40 FNo. Len. Field Value +10:57:40 ============================================================================ +10:57:40 [ 1] [ 4] [0210] +10:57:40 [ 2] [ 16] [1888880000089870] +10:57:40 [ 3] [ 6] [300000] +10:57:40 [ 4] [ 12] [000000000000] +10:57:40 [ 7] [ 10] [0320105732] +10:57:40 [ 11] [ 6] [722142] +10:57:40 [ 12] [ 6] [105732] +10:57:40 [ 13] [ 4] [0320] +10:57:40 [ 15] [ 4] [0320] +10:57:40 [ 18] [ 4] [6011] +10:57:40 [ 19] [ 3] [418] +10:57:40 [ 32] [ 6] [621354] +10:57:40 [ 37] [ 12] [507904645035] +10:57:40 [ 38] [ 6] [496101] +10:57:40 [ 39] [ 2] [00] +10:57:40 [ 41] [ 8] [17000900] +10:57:40 [ 49] [ 3] [418] +10:57:40 [ 54] [ 20] [1001418C000527600000] +10:57:40 ============================================================================ +10:57:40 Sending to : +10:57:40 ============================================================================ +10:57:40 + + +waiting on router queue for slot.... +10:57:41 ============================================================================ +10:57:41 Slot Id : <402> +10:57:41 Transaction Type : REQUEST +10:57:41 Received From : +10:57:41 ============================================================================ +10:57:41 FNo. Len. Field Value +10:57:41 ============================================================================ +10:57:41 [ 1] [ 4] [0800] +10:57:41 [ 7] [ 10] [0320035648] +10:57:41 [ 11] [ 6] [155974] +10:57:41 [ 70] [ 3] [301] +10:57:41 ============================================================================ +10:57:41 + + +waiting on router queue for slot.... +10:57:41 Sending to : +10:57:41 ============================================================================ +10:57:41 ============================================================================ +10:57:41 Slot Id : <402> +10:57:41 Transaction Type : RESPONSE +10:57:41 Received From : +10:57:41 ============================================================================ +10:57:41 FNo. Len. Field Value +10:57:41 ============================================================================ +10:57:41 [ 1] [ 4] [0810] +10:57:41 [ 7] [ 10] [0320035648] +10:57:41 [ 11] [ 6] [155974] +10:57:41 [ 39] [ 2] [00] +10:57:41 [ 70] [ 3] [301] +10:57:41 ============================================================================ +10:57:41 Calculate Source COMM Id = 2 +10:57:41 ============================================================================ +10:57:41 + + +waiting on router queue for slot.... +10:57:42 ============================================================================ +10:57:42 Slot Id : <437> +10:57:42 Transaction Type : RESPONSE +10:57:42 Received From : +10:57:42 ============================================================================ +10:57:42 FNo. Len. Field Value +10:57:42 ============================================================================ +10:57:42 [ 1] [ 4] [0210] +10:57:42 [ 2] [ 16] [1888880000089870] +10:57:42 [ 3] [ 6] [300000] +10:57:42 [ 4] [ 12] [000000000000] +10:57:42 [ 7] [ 10] [0320105732] +10:57:42 [ 11] [ 6] [722142] +10:57:42 [ 12] [ 6] [105732] +10:57:42 [ 13] [ 4] [0320] +10:57:42 [ 15] [ 4] [0320] +10:57:42 [ 18] [ 4] [6011] +10:57:42 [ 19] [ 3] [418] +10:57:42 [ 32] [ 6] [621354] +10:57:42 [ 37] [ 12] [507904645035] +10:57:42 [ 38] [ 6] [496101] +10:57:42 [ 39] [ 2] [00] +10:57:42 [ 41] [ 8] [17000900] +10:57:42 [ 49] [ 3] [418] +10:57:42 [ 54] [ 20] [1001418C000527600000] +10:57:42 ============================================================================ +10:57:42 Calculate Source COMM Id = 0 +10:57:42 ============================================================================ +10:57:42 + + +waiting on router queue for slot.... +10:57:50 ============================================================================ +10:57:50 Slot Id : <403> +10:57:50 Transaction Type : REQUEST +10:57:50 Received From : +10:57:50 ============================================================================ +10:57:50 FNo. Len. Field Value +10:57:50 ============================================================================ +10:57:50 [ 1] [ 4] [0800] +10:57:50 [ 2] [ 5] [02531] +10:57:50 [ 3] [ 6] [579108] +10:57:50 [ 7] [ 10] [0320035750] +10:57:50 [ 11] [ 6] [807048] +10:57:50 [ 15] [ 10] [0320035750] +10:57:50 [ 37] [ 11] [57910807048] +10:57:50 [ 70] [ 3] [001] +10:57:50 ============================================================================ +10:57:50 + + +waiting on router queue for slot.... +10:57:50 ============================================================================ +10:57:50 Slot Id : <403> +10:57:50 Transaction Type : RESPONSE +10:57:50 Received From : +10:57:50 ============================================================================ +10:57:50 FNo. Len. Field Value +10:57:50 ============================================================================ +10:57:50 [ 1] [ 4] [0810] +10:57:50 [ 7] [ 10] [0320035750] +10:57:50 [ 11] [ 6] [807048] +10:57:50 [ 15] [ 4] [0320] +10:57:50 [ 37] [ 12] [57910807048] +10:57:50 [ 39] [ 2] [00] +10:57:50 [ 70] [ 3] [001] +10:57:50 ============================================================================ +10:57:50 Sending to : +10:57:50 ============================================================================ +10:57:50 + + +waiting on router queue for slot.... +10:57:52 ============================================================================ +10:57:52 Slot Id : <408> +10:57:52 Transaction Type : REQUEST +10:57:52 Received From : +10:57:52 ============================================================================ +10:57:52 FNo. Len. Field Value +10:57:52 ============================================================================ +10:57:52 [ 1] [ 4] [0800] +10:57:52 [ 7] [ 10] [0320035700] +10:57:52 [ 11] [ 6] [155975] +10:57:52 [ 70] [ 3] [301] +10:57:52 ============================================================================ +10:57:52 + + +waiting on router queue for slot.... +10:57:52 Sending to : +10:57:52 ============================================================================ +10:57:52 ============================================================================ +10:57:52 Slot Id : <408> +10:57:52 Transaction Type : RESPONSE +10:57:52 Received From : +10:57:52 ============================================================================ +10:57:52 FNo. Len. Field Value +10:57:52 ============================================================================ +10:57:52 [ 1] [ 4] [0810] +10:57:52 [ 7] [ 10] [0320035700] +10:57:52 [ 11] [ 6] [155975] +10:57:52 [ 39] [ 2] [00] +10:57:52 [ 70] [ 3] [301] +10:57:52 ============================================================================ +10:57:52 Calculate Source COMM Id = 2 +10:57:52 ============================================================================ +10:57:52 + + +waiting on router queue for slot.... +10:57:55 ============================================================================ +10:57:55 Slot Id : <362> +10:57:55 Transaction Type : REQUEST +10:57:55 Received From : +10:57:55 ============================================================================ +10:57:55 FNo. Len. Field Value +10:57:55 ============================================================================ +10:57:55 [ 1] [ 4] [0200] +10:57:55 [ 2] [ 16] [6213544001208211] +10:57:55 [ 3] [ 6] [011000] +10:57:55 [ 4] [ 12] [000070000000] +10:57:55 [ 7] [ 10] [0320035702] +10:57:55 [ 11] [ 6] [268292] +10:57:55 [ 12] [ 6] [105702] +10:57:55 [ 13] [ 4] [0320] +10:57:55 [ 14] [ 4] [4912] +10:57:55 [ 15] [ 4] [0320] +10:57:55 [ 18] [ 4] [6011] +10:57:55 [ 19] [ 3] [418] +10:57:55 [ 22] [ 3] [021] +10:57:55 [ 25] [ 2] [01] +10:57:55 [ 28] [ 9] [D00002000] +10:57:55 [ 32] [ 6] [180893] +10:57:55 [ 35] [ 32] [6213544001208211=491212010821752] +10:57:55 [ 37] [ 12] [507903268292] +10:57:55 [ 41] [ 8] [0363CPSH] +10:57:55 [ 42] [ 15] [999999 ] +10:57:55 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +10:57:55 [ 49] [ 3] [418] +10:57:55 [ 52] [ 16] [4E1A63400761F546] +10:57:55 ============================================================================ +10:57:55 + + +waiting on router queue for slot.... +10:57:55 Sending to : +10:57:55 ============================================================================ +10:57:55 Sending to : +10:57:55 ============================================================================ +10:57:55 ============================================================================ +10:57:55 Slot Id : <362> +10:57:55 Transaction Type : REQUEST +10:57:55 Received From : +10:57:55 ============================================================================ +10:57:55 FNo. Len. Field Value +10:57:55 ============================================================================ +10:57:55 [ 1] [ 4] [0200] +10:57:55 [ 2] [ 16] [6213544001208211] +10:57:55 [ 3] [ 6] [011000] +10:57:55 [ 4] [ 12] [000070000000] +10:57:55 [ 7] [ 10] [0320035702] +10:57:55 [ 11] [ 6] [268292] +10:57:55 [ 12] [ 6] [105702] +10:57:55 [ 13] [ 4] [0320] +10:57:55 [ 14] [ 4] [4912] +10:57:55 [ 15] [ 4] [0320] +10:57:55 [ 18] [ 4] [6011] +10:57:55 [ 19] [ 3] [418] +10:57:55 [ 22] [ 3] [021] +10:57:55 [ 25] [ 2] [01] +10:57:55 [ 28] [ 9] [D00002000] +10:57:55 [ 32] [ 6] [180893] +10:57:55 [ 35] [ 32] [6213544001208211=491212010821752] +10:57:55 [ 37] [ 12] [507903268292] +10:57:55 [ 41] [ 8] [0363CPSH] +10:57:55 [ 42] [ 15] [999999 ] +10:57:55 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +10:57:55 [ 49] [ 3] [418] +10:57:55 [ 52] [ 16] [4E1A63400761F546] +10:57:55 ============================================================================ +10:57:55 + + +waiting on router queue for slot.... +10:57:55 Sending to : +10:57:55 ============================================================================ +10:57:55 ============================================================================ +10:57:55 Slot Id : <362> +10:57:55 Transaction Type : REQUEST +10:57:55 Received From : +10:57:55 ============================================================================ +10:57:55 FNo. Len. Field Value +10:57:55 ============================================================================ +10:57:55 [ 1] [ 4] [0200] +10:57:55 [ 2] [ 16] [6213544001208211] +10:57:55 [ 3] [ 6] [011000] +10:57:55 [ 4] [ 12] [000070000000] +10:57:55 [ 7] [ 10] [0320035702] +10:57:55 [ 11] [ 6] [268292] +10:57:55 [ 12] [ 6] [105702] +10:57:55 [ 13] [ 4] [0320] +10:57:55 [ 14] [ 4] [4912] +10:57:55 [ 15] [ 4] [0320] +10:57:55 [ 18] [ 4] [6011] +10:57:55 [ 19] [ 3] [418] +10:57:55 [ 22] [ 3] [021] +10:57:55 [ 25] [ 2] [01] +10:57:55 [ 28] [ 9] [D00002000] +10:57:55 [ 32] [ 6] [180893] +10:57:55 [ 35] [ 32] [6213544001208211=491212010821752] +10:57:55 [ 37] [ 12] [507903268292] +10:57:55 [ 41] [ 8] [0363CPSH] +10:57:55 [ 42] [ 15] [999999 ] +10:57:55 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +10:57:55 [ 49] [ 3] [418] +10:57:55 [ 52] [ 16] [7D141BA67CDDD2F5] +10:57:55 ============================================================================ +10:57:55 + + +waiting on router queue for slot.... +10:57:55 Sending to : <0> +10:57:55 ============================================================================ +10:57:56 ============================================================================ +10:57:56 Slot Id : <362> +10:57:56 Transaction Type : RESPONSE +10:57:56 Received From : +10:57:56 ============================================================================ +10:57:56 FNo. Len. Field Value +10:57:56 ============================================================================ +10:57:56 [ 1] [ 4] [0210] +10:57:56 [ 2] [ 16] [6213544001208211] +10:57:56 [ 3] [ 6] [011000] +10:57:56 [ 4] [ 12] [000070000000] +10:57:56 [ 7] [ 10] [0320035702] +10:57:56 [ 11] [ 6] [268292] +10:57:56 [ 12] [ 6] [105702] +10:57:56 [ 13] [ 4] [0320] +10:57:56 [ 15] [ 4] [0320] +10:57:56 [ 18] [ 4] [6011] +10:57:56 [ 19] [ 3] [418] +10:57:56 [ 32] [ 6] [180893] +10:57:56 [ 35] [ 32] [6213544001208211=491212010821752] +10:57:56 [ 37] [ 12] [507903268292] +10:57:56 [ 38] [ 6] [312549] +10:57:56 [ 39] [ 2] [00] +10:57:56 [ 41] [ 8] [0363CPSH] +10:57:56 [ 49] [ 3] [418] +10:57:56 [ 54] [ 40] [1001418C0001276296151002418C000127629615] +10:57:56 ============================================================================ +10:57:56 Sending to : +10:57:56 ============================================================================ +10:57:56 + + +waiting on router queue for slot.... +10:57:57 ============================================================================ +10:57:57 Slot Id : <362> +10:57:57 Transaction Type : RESPONSE +10:57:57 Received From : +10:57:57 ============================================================================ +10:57:57 FNo. Len. Field Value +10:57:57 ============================================================================ +10:57:57 [ 1] [ 4] [0210] +10:57:57 [ 2] [ 16] [6213544001208211] +10:57:57 [ 3] [ 6] [011000] +10:57:57 [ 4] [ 12] [000070000000] +10:57:57 [ 7] [ 10] [0320035702] +10:57:57 [ 11] [ 6] [268292] +10:57:57 [ 12] [ 6] [105702] +10:57:57 [ 13] [ 4] [0320] +10:57:57 [ 15] [ 4] [0320] +10:57:57 [ 18] [ 4] [6011] +10:57:57 [ 19] [ 3] [418] +10:57:57 [ 32] [ 6] [180893] +10:57:57 [ 35] [ 32] [6213544001208211=491212010821752] +10:57:57 [ 37] [ 12] [507903268292] +10:57:57 [ 38] [ 6] [312549] +10:57:57 [ 39] [ 2] [00] +10:57:57 [ 41] [ 8] [0363CPSH] +10:57:57 [ 49] [ 3] [418] +10:57:57 [ 54] [ 40] [1001418C0001276296151002418C000127629615] +10:57:57 ============================================================================ +10:57:57 Calculate Source COMM Id = 2 +10:57:57 ============================================================================ +10:57:57 + + +waiting on router queue for slot.... +10:57:59 ============================================================================ +10:57:59 Slot Id : <375> +10:57:59 Transaction Type : REQUEST +10:57:59 Received From : +10:57:59 ============================================================================ +10:57:59 FNo. Len. Field Value +10:57:59 ============================================================================ +10:57:59 [ 1] [ 4] [0200] +10:57:59 [ 2] [ 16] [6213543000091354] +10:57:59 [ 3] [ 6] [010000] +10:57:59 [ 4] [ 12] [000020000000] +10:57:59 [ 7] [ 10] [0320105550] +10:57:59 [ 11] [ 6] [939934] +10:57:59 [ 12] [ 6] [105550] +10:57:59 [ 13] [ 4] [0320] +10:57:59 [ 15] [ 4] [0320] +10:57:59 [ 18] [ 4] [6011] +10:57:59 [ 19] [ 3] [418] +10:57:59 [ 22] [ 3] [021] +10:57:59 [ 25] [ 2] [01] +10:57:59 [ 28] [ 9] [D00002000] +10:57:59 [ 32] [ 6] [668899] +10:57:59 [ 35] [ 32] [6213543000091354=491212019135895] +10:57:59 [ 37] [ 12] [507900196081] +10:57:59 [ 41] [ 8] [03001003] +10:57:59 [ 42] [ 15] [APT ] +10:57:59 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +10:57:59 [ 49] [ 3] [418] +10:57:59 [ 52] [ 16] [EC23C83ED976B96D] +10:57:59 ============================================================================ +10:57:59 + + +waiting on router queue for slot.... +10:57:59 Sending to : +10:57:59 ============================================================================ +10:57:59 Sending to : +10:57:59 ============================================================================ +10:57:59 ============================================================================ +10:57:59 Slot Id : <375> +10:57:59 Transaction Type : REQUEST +10:57:59 Received From : +10:57:59 ============================================================================ +10:57:59 FNo. Len. Field Value +10:57:59 ============================================================================ +10:57:59 [ 1] [ 4] [0200] +10:57:59 [ 2] [ 16] [6213543000091354] +10:57:59 [ 3] [ 6] [010000] +10:57:59 [ 4] [ 12] [000020000000] +10:57:59 [ 7] [ 10] [0320105550] +10:57:59 [ 11] [ 6] [939934] +10:57:59 [ 12] [ 6] [105550] +10:57:59 [ 13] [ 4] [0320] +10:57:59 [ 15] [ 4] [0320] +10:57:59 [ 18] [ 4] [6011] +10:57:59 [ 19] [ 3] [418] +10:57:59 [ 22] [ 3] [021] +10:57:59 [ 25] [ 2] [01] +10:57:59 [ 28] [ 9] [D00002000] +10:57:59 [ 32] [ 6] [668899] +10:57:59 [ 35] [ 32] [6213543000091354=491212019135895] +10:57:59 [ 37] [ 12] [507900196081] +10:57:59 [ 41] [ 8] [03001003] +10:57:59 [ 42] [ 15] [APT ] +10:57:59 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +10:57:59 [ 49] [ 3] [418] +10:57:59 [ 52] [ 16] [EC23C83ED976B96D] +10:57:59 ============================================================================ +10:57:59 + + +waiting on router queue for slot.... +10:57:59 Sending to : +10:57:59 ============================================================================ +10:57:59 ============================================================================ +10:57:59 Slot Id : <375> +10:57:59 Transaction Type : REQUEST +10:57:59 Received From : +10:57:59 ============================================================================ +10:57:59 FNo. Len. Field Value +10:57:59 ============================================================================ +10:57:59 [ 1] [ 4] [0200] +10:57:59 [ 2] [ 16] [6213543000091354] +10:57:59 [ 3] [ 6] [010000] +10:57:59 [ 4] [ 12] [000020000000] +10:57:59 [ 7] [ 10] [0320105550] +10:57:59 [ 11] [ 6] [939934] +10:57:59 [ 12] [ 6] [105550] +10:57:59 [ 13] [ 4] [0320] +10:57:59 [ 15] [ 4] [0320] +10:57:59 [ 18] [ 4] [6011] +10:57:59 [ 19] [ 3] [418] +10:57:59 [ 22] [ 3] [021] +10:57:59 [ 25] [ 2] [01] +10:57:59 [ 28] [ 9] [D00002000] +10:57:59 [ 32] [ 6] [668899] +10:57:59 [ 35] [ 32] [6213543000091354=491212019135895] +10:57:59 [ 37] [ 12] [507900196081] +10:57:59 [ 41] [ 8] [03001003] +10:57:59 [ 42] [ 15] [APT ] +10:57:59 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +10:57:59 [ 49] [ 3] [418] +10:57:59 [ 52] [ 16] [643A397B5FAC335A] +10:57:59 ============================================================================ +10:57:59 + + +waiting on router queue for slot.... +10:57:59 Sending to : <0> +10:57:59 ============================================================================ +10:58:00 ============================================================================ +10:58:00 Slot Id : <375> +10:58:00 Transaction Type : RESPONSE +10:58:00 Received From : +10:58:00 ============================================================================ +10:58:00 FNo. Len. Field Value +10:58:00 ============================================================================ +10:58:00 [ 1] [ 4] [0210] +10:58:00 [ 2] [ 16] [6213543000091354] +10:58:00 [ 3] [ 6] [010000] +10:58:00 [ 4] [ 12] [000020000000] +10:58:00 [ 7] [ 10] [0320105550] +10:58:00 [ 11] [ 6] [939934] +10:58:00 [ 12] [ 6] [105550] +10:58:00 [ 13] [ 4] [0320] +10:58:00 [ 15] [ 4] [0320] +10:58:00 [ 18] [ 4] [6011] +10:58:00 [ 19] [ 3] [418] +10:58:00 [ 32] [ 6] [668899] +10:58:00 [ 35] [ 32] [6213543000091354=491212019135895] +10:58:00 [ 37] [ 12] [507900196081] +10:58:00 [ 38] [ 6] [800698] +10:58:00 [ 39] [ 2] [00] +10:58:00 [ 41] [ 8] [03001003] +10:58:00 [ 49] [ 3] [418] +10:58:00 [ 54] [ 40] [0001418C0001231177040002418C000123117704] +10:58:00 ============================================================================ +10:58:00 Sending to : +10:58:00 ============================================================================ +10:58:00 + + +waiting on router queue for slot.... +10:58:02 ============================================================================ +10:58:02 Slot Id : <375> +10:58:02 Transaction Type : RESPONSE +10:58:02 Received From : +10:58:02 ============================================================================ +10:58:02 FNo. Len. Field Value +10:58:02 ============================================================================ +10:58:02 [ 1] [ 4] [0210] +10:58:02 [ 2] [ 16] [6213543000091354] +10:58:02 [ 3] [ 6] [010000] +10:58:02 [ 4] [ 12] [000020000000] +10:58:02 [ 7] [ 10] [0320105550] +10:58:02 [ 11] [ 6] [939934] +10:58:02 [ 12] [ 6] [105550] +10:58:02 [ 13] [ 4] [0320] +10:58:02 [ 15] [ 4] [0320] +10:58:02 [ 18] [ 4] [6011] +10:58:02 [ 19] [ 3] [418] +10:58:02 [ 32] [ 6] [668899] +10:58:02 [ 35] [ 32] [6213543000091354=491212019135895] +10:58:02 [ 37] [ 12] [507900196081] +10:58:02 [ 38] [ 6] [800698] +10:58:02 [ 39] [ 2] [00] +10:58:02 [ 41] [ 8] [03001003] +10:58:02 [ 49] [ 3] [418] +10:58:02 [ 54] [ 40] [0001418C0001231177040002418C000123117704] +10:58:02 ============================================================================ +10:58:02 Calculate Source COMM Id = 4 +10:58:02 ============================================================================ +10:58:02 + + +waiting on router queue for slot.... +10:58:08 ============================================================================ +10:58:08 Slot Id : <385> +10:58:08 Transaction Type : REQUEST +10:58:08 Received From : +10:58:08 ============================================================================ +10:58:08 FNo. Len. Field Value +10:58:08 ============================================================================ +10:58:08 [ 1] [ 4] [0800] +10:58:08 [ 7] [ 10] [0320035716] +10:58:08 [ 11] [ 6] [155976] +10:58:08 [ 70] [ 3] [301] +10:58:08 ============================================================================ +10:58:08 + + +waiting on router queue for slot.... +10:58:08 Sending to : +10:58:08 ============================================================================ +10:58:08 ============================================================================ +10:58:08 Slot Id : <385> +10:58:08 Transaction Type : RESPONSE +10:58:08 Received From : +10:58:08 ============================================================================ +10:58:08 FNo. Len. Field Value +10:58:08 ============================================================================ +10:58:08 [ 1] [ 4] [0810] +10:58:08 [ 7] [ 10] [0320035716] +10:58:08 [ 11] [ 6] [155976] +10:58:08 [ 39] [ 2] [00] +10:58:08 [ 70] [ 3] [301] +10:58:08 ============================================================================ +10:58:08 Calculate Source COMM Id = 2 +10:58:08 ============================================================================ +10:58:08 + + +waiting on router queue for slot.... +10:58:19 ============================================================================ +10:58:19 Slot Id : <447> +10:58:19 Transaction Type : REQUEST +10:58:19 Received From : +10:58:19 ============================================================================ +10:58:19 FNo. Len. Field Value +10:58:19 ============================================================================ +10:58:19 [ 1] [ 4] [0800] +10:58:19 [ 7] [ 10] [0320035726] +10:58:19 [ 11] [ 6] [155977] +10:58:19 [ 70] [ 3] [301] +10:58:19 ============================================================================ +10:58:19 + + +waiting on router queue for slot.... +10:58:19 Sending to : +10:58:19 ============================================================================ +10:58:19 ============================================================================ +10:58:19 Slot Id : <447> +10:58:19 Transaction Type : RESPONSE +10:58:19 Received From : +10:58:19 ============================================================================ +10:58:19 FNo. Len. Field Value +10:58:19 ============================================================================ +10:58:19 [ 1] [ 4] [0810] +10:58:19 [ 7] [ 10] [0320035726] +10:58:19 [ 11] [ 6] [155977] +10:58:19 [ 39] [ 2] [00] +10:58:19 [ 70] [ 3] [301] +10:58:19 ============================================================================ +10:58:19 Calculate Source COMM Id = 2 +10:58:19 ============================================================================ +10:58:19 + + +waiting on router queue for slot.... +10:58:26 ============================================================================ +10:58:26 Slot Id : <392> +10:58:26 Transaction Type : REQUEST +10:58:26 Received From : +10:58:26 ============================================================================ +10:58:26 FNo. Len. Field Value +10:58:26 ============================================================================ +10:58:26 [ 1] [ 4] [0200] +10:58:26 [ 2] [ 16] [6688990040039412] +10:58:26 [ 3] [ 6] [010000] +10:58:26 [ 4] [ 12] [000050000000] +10:58:26 [ 7] [ 10] [0320105822] +10:58:26 [ 11] [ 6] [722359] +10:58:26 [ 12] [ 6] [105822] +10:58:26 [ 13] [ 4] [0320] +10:58:26 [ 15] [ 4] [0320] +10:58:26 [ 18] [ 4] [6011] +10:58:26 [ 22] [ 3] [900] +10:58:26 [ 25] [ 2] [02] +10:58:26 [ 28] [ 9] [D00002000] +10:58:26 [ 32] [ 6] [621354] +10:58:26 [ 35] [ 37] [6688990040039412=97111261165750100000] +10:58:26 [ 37] [ 12] [507904599648] +10:58:26 [ 41] [ 8] [02002200] +10:58:26 [ 42] [ 15] [NATIVE ] +10:58:26 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +10:58:26 [ 49] [ 3] [418] +10:58:26 [ 52] [ 16] [06254D3844BE33B8] +10:58:26 ============================================================================ +10:58:26 + + +waiting on router queue for slot.... +10:58:26 Sending to : +10:58:26 ============================================================================ +10:58:26 Sending to : +10:58:26 ============================================================================ +10:58:26 ============================================================================ +10:58:26 Slot Id : <392> +10:58:26 Transaction Type : REQUEST +10:58:26 Received From : +10:58:26 ============================================================================ +10:58:26 FNo. Len. Field Value +10:58:26 ============================================================================ +10:58:26 [ 1] [ 4] [0200] +10:58:26 [ 2] [ 16] [6688990040039412] +10:58:26 [ 3] [ 6] [010000] +10:58:26 [ 4] [ 12] [000050000000] +10:58:26 [ 7] [ 10] [0320105822] +10:58:26 [ 11] [ 6] [722359] +10:58:26 [ 12] [ 6] [105822] +10:58:26 [ 13] [ 4] [0320] +10:58:26 [ 15] [ 4] [0320] +10:58:26 [ 18] [ 4] [6011] +10:58:26 [ 22] [ 3] [900] +10:58:26 [ 25] [ 2] [02] +10:58:26 [ 28] [ 9] [D00002000] +10:58:26 [ 32] [ 6] [621354] +10:58:26 [ 35] [ 37] [6688990040039412=97111261165750100000] +10:58:26 [ 37] [ 12] [507904599648] +10:58:26 [ 41] [ 8] [02002200] +10:58:26 [ 42] [ 15] [NATIVE ] +10:58:26 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +10:58:26 [ 49] [ 3] [418] +10:58:26 [ 52] [ 16] [06254D3844BE33B8] +10:58:26 ============================================================================ +10:58:26 + + +waiting on router queue for slot.... +10:58:26 Sending to : +10:58:26 ============================================================================ +10:58:26 ============================================================================ +10:58:26 Slot Id : <392> +10:58:26 Transaction Type : REQUEST +10:58:26 Received From : +10:58:26 ============================================================================ +10:58:26 FNo. Len. Field Value +10:58:26 ============================================================================ +10:58:26 [ 1] [ 4] [0200] +10:58:26 [ 2] [ 16] [6688990040039412] +10:58:26 [ 3] [ 6] [010000] +10:58:26 [ 4] [ 12] [000050000000] +10:58:26 [ 7] [ 10] [0320105822] +10:58:26 [ 11] [ 6] [722359] +10:58:26 [ 12] [ 6] [105822] +10:58:26 [ 13] [ 4] [0320] +10:58:26 [ 15] [ 4] [0320] +10:58:26 [ 18] [ 4] [6011] +10:58:26 [ 22] [ 3] [900] +10:58:26 [ 25] [ 2] [02] +10:58:26 [ 28] [ 9] [D00002000] +10:58:26 [ 32] [ 6] [621354] +10:58:26 [ 35] [ 37] [6688990040039412=97111261165750100000] +10:58:26 [ 37] [ 12] [507904599648] +10:58:26 [ 41] [ 8] [02002200] +10:58:26 [ 42] [ 15] [NATIVE ] +10:58:26 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +10:58:26 [ 49] [ 3] [418] +10:58:26 [ 52] [ 16] [EB9EB7748F1D5CC3] +10:58:26 ============================================================================ +10:58:26 + + +waiting on router queue for slot.... +10:58:26 Sending to : <4> +10:58:26 ============================================================================ +10:58:27 ============================================================================ +10:58:27 Slot Id : <392> +10:58:27 Transaction Type : RESPONSE +10:58:27 Received From : +10:58:27 ============================================================================ +10:58:27 FNo. Len. Field Value +10:58:27 ============================================================================ +10:58:27 [ 1] [ 4] [0210] +10:58:27 [ 2] [ 16] [6688990040039412] +10:58:27 [ 3] [ 6] [010000] +10:58:27 [ 4] [ 12] [000050000000] +10:58:27 [ 11] [ 6] [722359] +10:58:27 [ 12] [ 6] [105822] +10:58:27 [ 15] [ 4] [0320] +10:58:27 [ 18] [ 4] [6011] +10:58:27 [ 32] [ 6] [621354] +10:58:27 [ 35] [ 37] [6688990040039412=97111261165750100000] +10:58:27 [ 37] [ 12] [507904599648] +10:58:27 [ 39] [ 2] [51] +10:58:27 [ 41] [ 8] [02002200] +10:58:27 [ 49] [ 3] [418] +10:58:27 [ 54] [ 0] [] +10:58:27 ============================================================================ +10:58:27 Sending to : +10:58:27 ============================================================================ +10:58:27 + + +waiting on router queue for slot.... +10:58:28 ============================================================================ +10:58:28 Slot Id : <392> +10:58:28 Transaction Type : RESPONSE +10:58:28 Received From : +10:58:28 ============================================================================ +10:58:28 FNo. Len. Field Value +10:58:28 ============================================================================ +10:58:28 [ 1] [ 4] [0210] +10:58:28 [ 2] [ 16] [6688990040039412] +10:58:28 [ 3] [ 6] [010000] +10:58:28 [ 4] [ 12] [000050000000] +10:58:28 [ 11] [ 6] [722359] +10:58:28 [ 12] [ 6] [105822] +10:58:28 [ 15] [ 4] [0320] +10:58:28 [ 18] [ 4] [6011] +10:58:28 [ 32] [ 6] [621354] +10:58:28 [ 35] [ 37] [6688990040039412=97111261165750100000] +10:58:28 [ 37] [ 12] [507904599648] +10:58:28 [ 39] [ 2] [51] +10:58:28 [ 41] [ 8] [02002200] +10:58:28 [ 49] [ 3] [418] +10:58:28 [ 54] [ 0] [] +10:58:28 ============================================================================ +10:58:28 Calculate Source COMM Id = 0 +10:58:28 ============================================================================ +10:58:28 + + +waiting on router queue for slot.... +10:58:29 ============================================================================ +10:58:29 Slot Id : <412> +10:58:29 Transaction Type : REQUEST +10:58:29 Received From : +10:58:29 ============================================================================ +10:58:29 FNo. Len. Field Value +10:58:29 ============================================================================ +10:58:29 [ 1] [ 4] [0800] +10:58:29 [ 7] [ 10] [0320035737] +10:58:29 [ 11] [ 6] [155978] +10:58:29 [ 70] [ 3] [301] +10:58:29 ============================================================================ +10:58:29 + + +waiting on router queue for slot.... +10:58:29 Sending to : +10:58:29 ============================================================================ +10:58:29 ============================================================================ +10:58:29 Slot Id : <412> +10:58:29 Transaction Type : RESPONSE +10:58:29 Received From : +10:58:29 ============================================================================ +10:58:29 FNo. Len. Field Value +10:58:29 ============================================================================ +10:58:29 [ 1] [ 4] [0810] +10:58:29 [ 7] [ 10] [0320035737] +10:58:29 [ 11] [ 6] [155978] +10:58:29 [ 39] [ 2] [00] +10:58:29 [ 70] [ 3] [301] +10:58:29 ============================================================================ +10:58:29 Calculate Source COMM Id = 2 +10:58:29 ============================================================================ +10:58:29 + + +waiting on router queue for slot.... +10:58:41 ============================================================================ +10:58:41 Slot Id : <450> +10:58:41 Transaction Type : REQUEST +10:58:41 Received From : +10:58:41 ============================================================================ +10:58:41 FNo. Len. Field Value +10:58:41 ============================================================================ +10:58:41 [ 1] [ 4] [0800] +10:58:41 [ 7] [ 10] [0320035749] +10:58:41 [ 11] [ 6] [155979] +10:58:41 [ 70] [ 3] [301] +10:58:41 ============================================================================ +10:58:41 + + +waiting on router queue for slot.... +10:58:41 Sending to : +10:58:41 ============================================================================ +10:58:41 ============================================================================ +10:58:41 Slot Id : <450> +10:58:41 Transaction Type : RESPONSE +10:58:41 Received From : +10:58:41 ============================================================================ +10:58:41 FNo. Len. Field Value +10:58:41 ============================================================================ +10:58:41 [ 1] [ 4] [0810] +10:58:41 [ 7] [ 10] [0320035749] +10:58:41 [ 11] [ 6] [155979] +10:58:41 [ 39] [ 2] [00] +10:58:41 [ 70] [ 3] [301] +10:58:41 ============================================================================ +10:58:41 Calculate Source COMM Id = 2 +10:58:41 ============================================================================ +10:58:41 + + +waiting on router queue for slot.... +10:58:42 ============================================================================ +10:58:42 Slot Id : <417> +10:58:42 Transaction Type : REQUEST +10:58:42 Received From : +10:58:42 ============================================================================ +10:58:42 FNo. Len. Field Value +10:58:42 ============================================================================ +10:58:42 [ 1] [ 4] [0200] +10:58:42 [ 2] [ 16] [2206990000091827] +10:58:42 [ 3] [ 6] [300000] +10:58:42 [ 4] [ 12] [000000000000] +10:58:42 [ 7] [ 10] [0320105633] +10:58:42 [ 11] [ 6] [939961] +10:58:42 [ 12] [ 6] [105633] +10:58:42 [ 13] [ 4] [0320] +10:58:42 [ 15] [ 4] [0320] +10:58:42 [ 18] [ 4] [6011] +10:58:42 [ 19] [ 3] [418] +10:58:42 [ 22] [ 3] [021] +10:58:42 [ 25] [ 2] [01] +10:58:42 [ 28] [ 9] [D00000000] +10:58:42 [ 32] [ 6] [668899] +10:58:42 [ 35] [ 32] [2206990000091827=971012619129539] +10:58:42 [ 37] [ 12] [507902031645] +10:58:42 [ 41] [ 8] [03018003] +10:58:42 [ 42] [ 15] [APT ] +10:58:42 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +10:58:42 [ 49] [ 3] [418] +10:58:42 [ 52] [ 16] [40DD29C0D4C3A518] +10:58:42 ============================================================================ +10:58:42 + + +waiting on router queue for slot.... +10:58:42 Sending to : +10:58:42 ============================================================================ +10:58:42 Sending to : +10:58:42 ============================================================================ +10:58:42 ============================================================================ +10:58:42 Slot Id : <417> +10:58:42 Transaction Type : REQUEST +10:58:42 Received From : +10:58:42 ============================================================================ +10:58:42 FNo. Len. Field Value +10:58:42 ============================================================================ +10:58:42 [ 1] [ 4] [0200] +10:58:42 [ 2] [ 16] [2206990000091827] +10:58:42 [ 3] [ 6] [300000] +10:58:42 [ 4] [ 12] [000000000000] +10:58:42 [ 7] [ 10] [0320105633] +10:58:42 [ 11] [ 6] [939961] +10:58:42 [ 12] [ 6] [105633] +10:58:42 [ 13] [ 4] [0320] +10:58:42 [ 15] [ 4] [0320] +10:58:42 [ 18] [ 4] [6011] +10:58:42 [ 19] [ 3] [418] +10:58:42 [ 22] [ 3] [021] +10:58:42 [ 25] [ 2] [01] +10:58:42 [ 28] [ 9] [D00000000] +10:58:42 [ 32] [ 6] [668899] +10:58:42 [ 35] [ 32] [2206990000091827=971012619129539] +10:58:42 [ 37] [ 12] [507902031645] +10:58:42 [ 41] [ 8] [03018003] +10:58:42 [ 42] [ 15] [APT ] +10:58:42 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +10:58:42 [ 49] [ 3] [418] +10:58:42 [ 52] [ 16] [40DD29C0D4C3A518] +10:58:42 ============================================================================ +10:58:42 + + +waiting on router queue for slot.... +10:58:42 Sending to : +10:58:42 ============================================================================ +10:58:42 ============================================================================ +10:58:42 Slot Id : <417> +10:58:42 Transaction Type : REQUEST +10:58:42 Received From : +10:58:42 ============================================================================ +10:58:42 FNo. Len. Field Value +10:58:42 ============================================================================ +10:58:42 [ 1] [ 4] [0200] +10:58:42 [ 2] [ 16] [2206990000091827] +10:58:42 [ 3] [ 6] [300000] +10:58:42 [ 4] [ 12] [000000000000] +10:58:42 [ 7] [ 10] [0320105633] +10:58:42 [ 11] [ 6] [939961] +10:58:42 [ 12] [ 6] [105633] +10:58:42 [ 13] [ 4] [0320] +10:58:42 [ 15] [ 4] [0320] +10:58:42 [ 18] [ 4] [6011] +10:58:42 [ 19] [ 3] [418] +10:58:42 [ 22] [ 3] [021] +10:58:42 [ 25] [ 2] [01] +10:58:42 [ 28] [ 9] [D00000000] +10:58:42 [ 32] [ 6] [668899] +10:58:42 [ 35] [ 32] [2206990000091827=971012619129539] +10:58:42 [ 37] [ 12] [507902031645] +10:58:42 [ 41] [ 8] [03018003] +10:58:42 [ 42] [ 15] [APT ] +10:58:42 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +10:58:42 [ 49] [ 3] [418] +10:58:42 [ 52] [ 16] [C9D35285F0D20C6F] +10:58:42 ============================================================================ +10:58:42 + + +waiting on router queue for slot.... +10:58:42 Sending to : <1> +10:58:42 ============================================================================ +10:58:44 ============================================================================ +10:58:44 Slot Id : <417> +10:58:44 Transaction Type : RESPONSE +10:58:44 Received From : +10:58:44 ============================================================================ +10:58:44 FNo. Len. Field Value +10:58:44 ============================================================================ +10:58:44 [ 1] [ 4] [0210] +10:58:44 [ 2] [ 16] [2206990000091827] +10:58:44 [ 3] [ 6] [300000] +10:58:44 [ 4] [ 12] [000000000000] +10:58:44 [ 7] [ 10] [0320105633] +10:58:44 [ 11] [ 6] [939961] +10:58:44 [ 12] [ 6] [105633] +10:58:44 [ 13] [ 4] [0320] +10:58:44 [ 15] [ 4] [0320] +10:58:44 [ 18] [ 4] [6011] +10:58:44 [ 32] [ 6] [668899] +10:58:44 [ 35] [ 32] [2206990000091827=971012619129539] +10:58:44 [ 37] [ 12] [507902031645] +10:58:44 [ 38] [ 6] [843842] +10:58:44 [ 39] [ 2] [00] +10:58:44 [ 41] [ 8] [03018003] +10:58:44 [ 49] [ 3] [418] +10:58:44 [ 54] [ 40] [0001418C0000828428000002418C000082842800] +10:58:44 ============================================================================ +10:58:44 Sending to : +10:58:44 ============================================================================ +10:58:44 + + +waiting on router queue for slot.... +10:58:46 ============================================================================ +10:58:46 Slot Id : <391> +10:58:46 Transaction Type : REQUEST +10:58:46 Received From : +10:58:46 ============================================================================ +10:58:46 FNo. Len. Field Value +10:58:46 ============================================================================ +10:58:46 [ 1] [ 4] [0200] +10:58:46 [ 2] [ 16] [6688990602739409] +10:58:46 [ 3] [ 6] [302000] +10:58:46 [ 7] [ 10] [0320035752] +10:58:46 [ 11] [ 6] [268301] +10:58:46 [ 12] [ 6] [105752] +10:58:46 [ 13] [ 4] [0320] +10:58:46 [ 14] [ 4] [4310] +10:58:46 [ 15] [ 4] [0320] +10:58:46 [ 18] [ 4] [6011] +10:58:46 [ 19] [ 3] [418] +10:58:46 [ 22] [ 3] [021] +10:58:46 [ 25] [ 2] [01] +10:58:46 [ 32] [ 6] [180893] +10:58:46 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:58:46 [ 37] [ 12] [507903268301] +10:58:46 [ 41] [ 8] [0486HPXK] +10:58:46 [ 42] [ 15] [999999 ] +10:58:46 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +10:58:46 [ 49] [ 3] [418] +10:58:46 [ 52] [ 16] [CD7202A9461C02E4] +10:58:46 ============================================================================ +10:58:46 + + +waiting on router queue for slot.... +10:58:46 Sending to : +10:58:46 ============================================================================ +10:58:46 Sending to : +10:58:46 ============================================================================ +10:58:46 ============================================================================ +10:58:46 Slot Id : <417> +10:58:46 Transaction Type : RESPONSE +10:58:46 Received From : +10:58:46 ============================================================================ +10:58:46 FNo. Len. Field Value +10:58:46 ============================================================================ +10:58:46 [ 1] [ 4] [0210] +10:58:46 [ 2] [ 16] [2206990000091827] +10:58:46 [ 3] [ 6] [300000] +10:58:46 [ 4] [ 12] [000000000000] +10:58:46 [ 7] [ 10] [0320105633] +10:58:46 [ 11] [ 6] [939961] +10:58:46 [ 12] [ 6] [105633] +10:58:46 [ 13] [ 4] [0320] +10:58:46 [ 15] [ 4] [0320] +10:58:46 [ 18] [ 4] [6011] +10:58:46 [ 32] [ 6] [668899] +10:58:46 [ 35] [ 32] [2206990000091827=971012619129539] +10:58:46 [ 37] [ 12] [507902031645] +10:58:46 [ 38] [ 6] [843842] +10:58:46 [ 39] [ 2] [00] +10:58:46 [ 41] [ 8] [03018003] +10:58:46 [ 49] [ 3] [418] +10:58:46 [ 54] [ 40] [0001418C0000828428000002418C000082842800] +10:58:46 ============================================================================ +10:58:46 Calculate Source COMM Id = 4 +10:58:46 ============================================================================ +10:58:46 + + +waiting on router queue for slot.... +10:58:46 ============================================================================ +10:58:46 Slot Id : <391> +10:58:46 Transaction Type : REQUEST +10:58:46 Received From : +10:58:46 ============================================================================ +10:58:46 FNo. Len. Field Value +10:58:46 ============================================================================ +10:58:46 [ 1] [ 4] [0200] +10:58:46 [ 2] [ 16] [6688990602739409] +10:58:46 [ 3] [ 6] [302000] +10:58:46 [ 7] [ 10] [0320035752] +10:58:46 [ 11] [ 6] [268301] +10:58:46 [ 12] [ 6] [105752] +10:58:46 [ 13] [ 4] [0320] +10:58:46 [ 14] [ 4] [4310] +10:58:46 [ 15] [ 4] [0320] +10:58:46 [ 18] [ 4] [6011] +10:58:46 [ 19] [ 3] [418] +10:58:46 [ 22] [ 3] [021] +10:58:46 [ 25] [ 2] [01] +10:58:46 [ 32] [ 6] [180893] +10:58:46 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:58:46 [ 37] [ 12] [507903268301] +10:58:46 [ 41] [ 8] [0486HPXK] +10:58:46 [ 42] [ 15] [999999 ] +10:58:46 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +10:58:46 [ 49] [ 3] [418] +10:58:46 [ 52] [ 16] [CD7202A9461C02E4] +10:58:46 ============================================================================ +10:58:46 + + +waiting on router queue for slot.... +10:58:46 Sending to : +10:58:46 ============================================================================ +10:58:46 ============================================================================ +10:58:46 Slot Id : <391> +10:58:46 Transaction Type : REQUEST +10:58:46 Received From : +10:58:46 ============================================================================ +10:58:46 FNo. Len. Field Value +10:58:46 ============================================================================ +10:58:46 [ 1] [ 4] [0200] +10:58:46 [ 2] [ 16] [6688990602739409] +10:58:46 [ 3] [ 6] [302000] +10:58:46 [ 7] [ 10] [0320035752] +10:58:46 [ 11] [ 6] [268301] +10:58:46 [ 12] [ 6] [105752] +10:58:46 [ 13] [ 4] [0320] +10:58:46 [ 14] [ 4] [4310] +10:58:46 [ 15] [ 4] [0320] +10:58:46 [ 18] [ 4] [6011] +10:58:46 [ 19] [ 3] [418] +10:58:46 [ 22] [ 3] [021] +10:58:46 [ 25] [ 2] [01] +10:58:46 [ 32] [ 6] [180893] +10:58:46 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:58:46 [ 37] [ 12] [507903268301] +10:58:46 [ 41] [ 8] [0486HPXK] +10:58:46 [ 42] [ 15] [999999 ] +10:58:46 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +10:58:46 [ 49] [ 3] [418] +10:58:46 [ 52] [ 16] [6089E472DFE9D627] +10:58:46 ============================================================================ +10:58:46 + + +waiting on router queue for slot.... +10:58:46 Sending to : <0> +10:58:46 ============================================================================ +10:58:46 ============================================================================ +10:58:46 Slot Id : <391> +10:58:46 Transaction Type : RESPONSE +10:58:46 Received From : +10:58:46 ============================================================================ +10:58:46 FNo. Len. Field Value +10:58:46 ============================================================================ +10:58:46 [ 1] [ 4] [0210] +10:58:46 [ 2] [ 16] [6688990602739409] +10:58:46 [ 3] [ 6] [302000] +10:58:46 [ 4] [ 12] [000000000000] +10:58:46 [ 7] [ 10] [0320035752] +10:58:46 [ 11] [ 6] [268301] +10:58:46 [ 12] [ 6] [105752] +10:58:46 [ 13] [ 4] [0320] +10:58:46 [ 15] [ 4] [0320] +10:58:46 [ 18] [ 4] [6011] +10:58:46 [ 19] [ 3] [418] +10:58:46 [ 22] [ 3] [021] +10:58:46 [ 32] [ 6] [180893] +10:58:46 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:58:46 [ 37] [ 12] [507903268301] +10:58:46 [ 39] [ 2] [14] +10:58:46 [ 41] [ 8] [0486HPXK] +10:58:46 [ 49] [ 3] [418] +10:58:46 ============================================================================ +10:58:46 Sending to : +10:58:46 ============================================================================ +10:58:46 + + +waiting on router queue for slot.... +10:58:47 ============================================================================ +10:58:47 Slot Id : <391> +10:58:47 Transaction Type : RESPONSE +10:58:47 Received From : +10:58:47 ============================================================================ +10:58:47 FNo. Len. Field Value +10:58:47 ============================================================================ +10:58:47 [ 1] [ 4] [0210] +10:58:47 [ 2] [ 16] [6688990602739409] +10:58:47 [ 3] [ 6] [302000] +10:58:47 [ 4] [ 12] [000000000000] +10:58:47 [ 7] [ 10] [0320035752] +10:58:47 [ 11] [ 6] [268301] +10:58:47 [ 12] [ 6] [105752] +10:58:47 [ 13] [ 4] [0320] +10:58:47 [ 15] [ 4] [0320] +10:58:47 [ 18] [ 4] [6011] +10:58:47 [ 19] [ 3] [418] +10:58:47 [ 22] [ 3] [021] +10:58:47 [ 32] [ 6] [180893] +10:58:47 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:58:47 [ 37] [ 12] [507903268301] +10:58:47 [ 39] [ 2] [14] +10:58:47 [ 41] [ 8] [0486HPXK] +10:58:47 [ 49] [ 3] [418] +10:58:47 ============================================================================ +10:58:47 Calculate Source COMM Id = 2 +10:58:47 ============================================================================ +10:58:47 + + +waiting on router queue for slot.... +10:58:52 ============================================================================ +10:58:52 Slot Id : <443> +10:58:52 Transaction Type : REQUEST +10:58:52 Received From : +10:58:52 ============================================================================ +10:58:52 FNo. Len. Field Value +10:58:52 ============================================================================ +10:58:52 [ 1] [ 4] [0800] +10:58:52 [ 2] [ 5] [02531] +10:58:52 [ 3] [ 6] [579108] +10:58:52 [ 7] [ 10] [0320035852] +10:58:52 [ 11] [ 6] [807049] +10:58:52 [ 15] [ 10] [0320035852] +10:58:52 [ 37] [ 11] [57910807049] +10:58:52 [ 70] [ 3] [001] +10:58:52 ============================================================================ +10:58:52 + + +waiting on router queue for slot.... +10:58:52 ============================================================================ +10:58:52 Slot Id : <443> +10:58:52 Transaction Type : RESPONSE +10:58:52 Received From : +10:58:52 ============================================================================ +10:58:52 FNo. Len. Field Value +10:58:52 ============================================================================ +10:58:52 [ 1] [ 4] [0810] +10:58:52 [ 7] [ 10] [0320035852] +10:58:52 [ 11] [ 6] [807049] +10:58:52 [ 15] [ 4] [0320] +10:58:52 [ 37] [ 12] [57910807049] +10:58:52 [ 39] [ 2] [00] +10:58:52 [ 70] [ 3] [001] +10:58:52 ============================================================================ +10:58:52 Sending to : +10:58:52 ============================================================================ +10:58:52 + + +waiting on router queue for slot.... +10:58:55 ============================================================================ +10:58:55 Slot Id : <377> +10:58:55 Transaction Type : REQUEST +10:58:55 Received From : +10:58:55 ============================================================================ +10:58:55 FNo. Len. Field Value +10:58:55 ============================================================================ +10:58:55 [ 1] [ 4] [0200] +10:58:55 [ 2] [ 16] [6213545001067242] +10:58:55 [ 3] [ 6] [011000] +10:58:55 [ 4] [ 12] [000025000000] +10:58:55 [ 7] [ 10] [0320035800] +10:58:55 [ 11] [ 6] [268302] +10:58:55 [ 12] [ 6] [105800] +10:58:55 [ 13] [ 4] [0320] +10:58:55 [ 14] [ 4] [4912] +10:58:55 [ 15] [ 4] [0320] +10:58:55 [ 18] [ 4] [6011] +10:58:55 [ 19] [ 3] [418] +10:58:55 [ 22] [ 3] [021] +10:58:55 [ 25] [ 2] [01] +10:58:55 [ 28] [ 9] [D00002000] +10:58:55 [ 32] [ 6] [180893] +10:58:55 [ 35] [ 32] [6213545001067242=491212016724419] +10:58:55 [ 37] [ 12] [507903268302] +10:58:55 [ 41] [ 8] [0121SKBR] +10:58:55 [ 42] [ 15] [999999 ] +10:58:55 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +10:58:55 [ 49] [ 3] [418] +10:58:55 [ 52] [ 16] [E75EDF8834840283] +10:58:55 ============================================================================ +10:58:55 + + +waiting on router queue for slot.... +10:58:55 Sending to : +10:58:55 ============================================================================ +10:58:55 Sending to : +10:58:55 ============================================================================ +10:58:55 ============================================================================ +10:58:55 Slot Id : <377> +10:58:55 Transaction Type : REQUEST +10:58:55 Received From : +10:58:55 ============================================================================ +10:58:55 FNo. Len. Field Value +10:58:55 ============================================================================ +10:58:55 [ 1] [ 4] [0200] +10:58:55 [ 2] [ 16] [6213545001067242] +10:58:55 [ 3] [ 6] [011000] +10:58:55 [ 4] [ 12] [000025000000] +10:58:55 [ 7] [ 10] [0320035800] +10:58:55 [ 11] [ 6] [268302] +10:58:55 [ 12] [ 6] [105800] +10:58:55 [ 13] [ 4] [0320] +10:58:55 [ 14] [ 4] [4912] +10:58:55 [ 15] [ 4] [0320] +10:58:55 [ 18] [ 4] [6011] +10:58:55 [ 19] [ 3] [418] +10:58:55 [ 22] [ 3] [021] +10:58:55 [ 25] [ 2] [01] +10:58:55 [ 28] [ 9] [D00002000] +10:58:55 [ 32] [ 6] [180893] +10:58:55 [ 35] [ 32] [6213545001067242=491212016724419] +10:58:55 [ 37] [ 12] [507903268302] +10:58:55 [ 41] [ 8] [0121SKBR] +10:58:55 [ 42] [ 15] [999999 ] +10:58:55 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +10:58:55 [ 49] [ 3] [418] +10:58:55 [ 52] [ 16] [E75EDF8834840283] +10:58:55 ============================================================================ +10:58:55 + + +waiting on router queue for slot.... +10:58:55 Sending to : +10:58:55 ============================================================================ +10:58:55 ============================================================================ +10:58:55 Slot Id : <377> +10:58:55 Transaction Type : REQUEST +10:58:55 Received From : +10:58:55 ============================================================================ +10:58:55 FNo. Len. Field Value +10:58:55 ============================================================================ +10:58:55 [ 1] [ 4] [0200] +10:58:55 [ 2] [ 16] [6213545001067242] +10:58:55 [ 3] [ 6] [011000] +10:58:55 [ 4] [ 12] [000025000000] +10:58:55 [ 7] [ 10] [0320035800] +10:58:55 [ 11] [ 6] [268302] +10:58:55 [ 12] [ 6] [105800] +10:58:55 [ 13] [ 4] [0320] +10:58:55 [ 14] [ 4] [4912] +10:58:55 [ 15] [ 4] [0320] +10:58:55 [ 18] [ 4] [6011] +10:58:55 [ 19] [ 3] [418] +10:58:55 [ 22] [ 3] [021] +10:58:55 [ 25] [ 2] [01] +10:58:55 [ 28] [ 9] [D00002000] +10:58:55 [ 32] [ 6] [180893] +10:58:55 [ 35] [ 32] [6213545001067242=491212016724419] +10:58:55 [ 37] [ 12] [507903268302] +10:58:55 [ 41] [ 8] [0121SKBR] +10:58:55 [ 42] [ 15] [999999 ] +10:58:55 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +10:58:55 [ 49] [ 3] [418] +10:58:55 [ 52] [ 16] [36EDFE7769E600B0] +10:58:55 ============================================================================ +10:58:55 + + +waiting on router queue for slot.... +10:58:55 Sending to : <0> +10:58:55 ============================================================================ +10:58:56 ============================================================================ +10:58:56 Slot Id : <377> +10:58:56 Transaction Type : RESPONSE +10:58:56 Received From : +10:58:56 ============================================================================ +10:58:56 FNo. Len. Field Value +10:58:56 ============================================================================ +10:58:56 [ 1] [ 4] [0210] +10:58:56 [ 2] [ 16] [6213545001067242] +10:58:56 [ 3] [ 6] [011000] +10:58:56 [ 4] [ 12] [000025000000] +10:58:56 [ 7] [ 10] [0320035800] +10:58:56 [ 11] [ 6] [268302] +10:58:56 [ 12] [ 6] [105800] +10:58:56 [ 13] [ 4] [0320] +10:58:56 [ 15] [ 4] [0320] +10:58:56 [ 18] [ 4] [6011] +10:58:56 [ 19] [ 3] [418] +10:58:56 [ 32] [ 6] [180893] +10:58:56 [ 35] [ 32] [6213545001067242=491212016724419] +10:58:56 [ 37] [ 12] [507903268302] +10:58:56 [ 38] [ 6] [586605] +10:58:56 [ 39] [ 2] [00] +10:58:56 [ 41] [ 8] [0121SKBR] +10:58:56 [ 49] [ 3] [418] +10:58:56 [ 54] [ 40] [1001418C0000082562071002418C000008256207] +10:58:56 ============================================================================ +10:58:56 Sending to : +10:58:56 ============================================================================ +10:58:56 + + +waiting on router queue for slot.... +10:58:57 ============================================================================ +10:58:57 Slot Id : <377> +10:58:57 Transaction Type : RESPONSE +10:58:57 Received From : +10:58:57 ============================================================================ +10:58:57 FNo. Len. Field Value +10:58:57 ============================================================================ +10:58:57 [ 1] [ 4] [0210] +10:58:57 [ 2] [ 16] [6213545001067242] +10:58:57 [ 3] [ 6] [011000] +10:58:57 [ 4] [ 12] [000025000000] +10:58:57 [ 7] [ 10] [0320035800] +10:58:57 [ 11] [ 6] [268302] +10:58:57 [ 12] [ 6] [105800] +10:58:57 [ 13] [ 4] [0320] +10:58:57 [ 15] [ 4] [0320] +10:58:57 [ 18] [ 4] [6011] +10:58:57 [ 19] [ 3] [418] +10:58:57 [ 32] [ 6] [180893] +10:58:57 [ 35] [ 32] [6213545001067242=491212016724419] +10:58:57 [ 37] [ 12] [507903268302] +10:58:57 [ 38] [ 6] [586605] +10:58:57 [ 39] [ 2] [00] +10:58:57 [ 41] [ 8] [0121SKBR] +10:58:57 [ 49] [ 3] [418] +10:58:57 [ 54] [ 40] [1001418C0000082562071002418C000008256207] +10:58:57 ============================================================================ +10:58:57 Calculate Source COMM Id = 2 +10:58:57 ============================================================================ +10:58:57 + + +waiting on router queue for slot.... +10:59:13 ============================================================================ +10:59:13 Slot Id : <386> +10:59:13 Transaction Type : REQUEST +10:59:13 Received From : +10:59:13 ============================================================================ +10:59:13 FNo. Len. Field Value +10:59:13 ============================================================================ +10:59:13 [ 1] [ 4] [0200] +10:59:13 [ 2] [ 16] [6688990602739409] +10:59:13 [ 3] [ 6] [301000] +10:59:13 [ 7] [ 10] [0320035820] +10:59:13 [ 11] [ 6] [268309] +10:59:13 [ 12] [ 6] [105820] +10:59:13 [ 13] [ 4] [0320] +10:59:13 [ 14] [ 4] [4310] +10:59:13 [ 15] [ 4] [0320] +10:59:13 [ 18] [ 4] [6011] +10:59:13 [ 19] [ 3] [418] +10:59:13 [ 22] [ 3] [021] +10:59:13 [ 25] [ 2] [01] +10:59:13 [ 32] [ 6] [180893] +10:59:13 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:59:13 [ 37] [ 12] [507903268309] +10:59:13 [ 41] [ 8] [0486HPXK] +10:59:13 [ 42] [ 15] [999999 ] +10:59:13 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +10:59:13 [ 49] [ 3] [418] +10:59:13 [ 52] [ 16] [CD7202A9461C02E4] +10:59:13 ============================================================================ +10:59:13 + + +waiting on router queue for slot.... +10:59:13 Sending to : +10:59:13 ============================================================================ +10:59:13 Sending to : +10:59:13 ============================================================================ +10:59:14 ============================================================================ +10:59:14 Slot Id : <386> +10:59:14 Transaction Type : REQUEST +10:59:14 Received From : +10:59:14 ============================================================================ +10:59:14 FNo. Len. Field Value +10:59:14 ============================================================================ +10:59:14 [ 1] [ 4] [0200] +10:59:14 [ 2] [ 16] [6688990602739409] +10:59:14 [ 3] [ 6] [301000] +10:59:14 [ 7] [ 10] [0320035820] +10:59:14 [ 11] [ 6] [268309] +10:59:14 [ 12] [ 6] [105820] +10:59:14 [ 13] [ 4] [0320] +10:59:14 [ 14] [ 4] [4310] +10:59:14 [ 15] [ 4] [0320] +10:59:14 [ 18] [ 4] [6011] +10:59:14 [ 19] [ 3] [418] +10:59:14 [ 22] [ 3] [021] +10:59:14 [ 25] [ 2] [01] +10:59:14 [ 32] [ 6] [180893] +10:59:14 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:59:14 [ 37] [ 12] [507903268309] +10:59:14 [ 41] [ 8] [0486HPXK] +10:59:14 [ 42] [ 15] [999999 ] +10:59:14 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +10:59:14 [ 49] [ 3] [418] +10:59:14 [ 52] [ 16] [CD7202A9461C02E4] +10:59:14 ============================================================================ +10:59:14 + + +waiting on router queue for slot.... +10:59:14 Sending to : +10:59:14 ============================================================================ +10:59:14 ============================================================================ +10:59:14 Slot Id : <386> +10:59:14 Transaction Type : REQUEST +10:59:14 Received From : +10:59:14 ============================================================================ +10:59:14 FNo. Len. Field Value +10:59:14 ============================================================================ +10:59:14 [ 1] [ 4] [0200] +10:59:14 [ 2] [ 16] [6688990602739409] +10:59:14 [ 3] [ 6] [301000] +10:59:14 [ 7] [ 10] [0320035820] +10:59:14 [ 11] [ 6] [268309] +10:59:14 [ 12] [ 6] [105820] +10:59:14 [ 13] [ 4] [0320] +10:59:14 [ 14] [ 4] [4310] +10:59:14 [ 15] [ 4] [0320] +10:59:14 [ 18] [ 4] [6011] +10:59:14 [ 19] [ 3] [418] +10:59:14 [ 22] [ 3] [021] +10:59:14 [ 25] [ 2] [01] +10:59:14 [ 32] [ 6] [180893] +10:59:14 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:59:14 [ 37] [ 12] [507903268309] +10:59:14 [ 41] [ 8] [0486HPXK] +10:59:14 [ 42] [ 15] [999999 ] +10:59:14 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +10:59:14 [ 49] [ 3] [418] +10:59:14 [ 52] [ 16] [6089E472DFE9D627] +10:59:14 ============================================================================ +10:59:14 + + +waiting on router queue for slot.... +10:59:14 Sending to : <0> +10:59:14 ============================================================================ +10:59:14 ============================================================================ +10:59:14 Slot Id : <386> +10:59:14 Transaction Type : RESPONSE +10:59:14 Received From : +10:59:14 ============================================================================ +10:59:14 FNo. Len. Field Value +10:59:14 ============================================================================ +10:59:14 [ 1] [ 4] [0210] +10:59:14 [ 2] [ 16] [6688990602739409] +10:59:14 [ 3] [ 6] [301000] +10:59:14 [ 4] [ 12] [000000000000] +10:59:14 [ 7] [ 10] [0320035820] +10:59:14 [ 11] [ 6] [268309] +10:59:14 [ 12] [ 6] [105820] +10:59:14 [ 13] [ 4] [0320] +10:59:14 [ 15] [ 4] [0320] +10:59:14 [ 18] [ 4] [6011] +10:59:14 [ 19] [ 3] [418] +10:59:14 [ 22] [ 3] [021] +10:59:14 [ 32] [ 6] [180893] +10:59:14 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:59:14 [ 37] [ 12] [507903268309] +10:59:14 [ 39] [ 2] [14] +10:59:14 [ 41] [ 8] [0486HPXK] +10:59:14 [ 49] [ 3] [418] +10:59:14 ============================================================================ +10:59:14 Sending to : +10:59:14 ============================================================================ +10:59:14 + + +waiting on router queue for slot.... +10:59:15 ============================================================================ +10:59:15 Slot Id : <386> +10:59:15 Transaction Type : RESPONSE +10:59:15 Received From : +10:59:15 ============================================================================ +10:59:15 FNo. Len. Field Value +10:59:15 ============================================================================ +10:59:15 [ 1] [ 4] [0210] +10:59:15 [ 2] [ 16] [6688990602739409] +10:59:15 [ 3] [ 6] [301000] +10:59:15 [ 4] [ 12] [000000000000] +10:59:15 [ 7] [ 10] [0320035820] +10:59:15 [ 11] [ 6] [268309] +10:59:15 [ 12] [ 6] [105820] +10:59:15 [ 13] [ 4] [0320] +10:59:15 [ 15] [ 4] [0320] +10:59:15 [ 18] [ 4] [6011] +10:59:15 [ 19] [ 3] [418] +10:59:15 [ 22] [ 3] [021] +10:59:15 [ 32] [ 6] [180893] +10:59:15 [ 35] [ 37] [6688990602739409=43100061940943000000] +10:59:15 [ 37] [ 12] [507903268309] +10:59:15 [ 39] [ 2] [14] +10:59:15 [ 41] [ 8] [0486HPXK] +10:59:15 [ 49] [ 3] [418] +10:59:15 ============================================================================ +10:59:15 Calculate Source COMM Id = 2 +10:59:15 ============================================================================ +10:59:15 + + +waiting on router queue for slot.... +10:59:16 ============================================================================ +10:59:16 Slot Id : <405> +10:59:16 Transaction Type : REQUEST +10:59:16 Received From : +10:59:16 ============================================================================ +10:59:16 FNo. Len. Field Value +10:59:16 ============================================================================ +10:59:16 [ 1] [ 4] [0800] +10:59:16 [ 7] [ 10] [0320035822] +10:59:16 [ 11] [ 6] [155980] +10:59:16 [ 70] [ 3] [301] +10:59:16 ============================================================================ +10:59:16 + + +waiting on router queue for slot.... +10:59:16 Sending to : +10:59:16 ============================================================================ +10:59:16 ============================================================================ +10:59:16 Slot Id : <405> +10:59:16 Transaction Type : RESPONSE +10:59:16 Received From : +10:59:16 ============================================================================ +10:59:16 FNo. Len. Field Value +10:59:16 ============================================================================ +10:59:16 [ 1] [ 4] [0810] +10:59:16 [ 7] [ 10] [0320035822] +10:59:16 [ 11] [ 6] [155980] +10:59:16 [ 39] [ 2] [00] +10:59:16 [ 70] [ 3] [301] +10:59:16 ============================================================================ +10:59:16 Calculate Source COMM Id = 2 +10:59:16 ============================================================================ +10:59:16 + + +waiting on router queue for slot.... +10:59:27 ============================================================================ +10:59:27 Slot Id : <456> +10:59:27 Transaction Type : REQUEST +10:59:27 Received From : +10:59:27 ============================================================================ +10:59:27 FNo. Len. Field Value +10:59:27 ============================================================================ +10:59:27 [ 1] [ 4] [0200] +10:59:27 [ 2] [ 16] [6688990040039412] +10:59:27 [ 3] [ 6] [010000] +10:59:27 [ 4] [ 12] [000040000000] +10:59:27 [ 7] [ 10] [0320105923] +10:59:27 [ 11] [ 6] [722610] +10:59:27 [ 12] [ 6] [105923] +10:59:27 [ 13] [ 4] [0320] +10:59:27 [ 15] [ 4] [0320] +10:59:27 [ 18] [ 4] [6011] +10:59:27 [ 22] [ 3] [900] +10:59:27 [ 25] [ 2] [02] +10:59:27 [ 28] [ 9] [D00002000] +10:59:27 [ 32] [ 6] [621354] +10:59:27 [ 35] [ 37] [6688990040039412=97111261165750100000] +10:59:27 [ 37] [ 12] [507904599650] +10:59:27 [ 41] [ 8] [02002200] +10:59:27 [ 42] [ 15] [NATIVE ] +10:59:27 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +10:59:27 [ 49] [ 3] [418] +10:59:27 [ 52] [ 16] [06254D3844BE33B8] +10:59:27 ============================================================================ +10:59:27 + + +waiting on router queue for slot.... +10:59:27 Sending to : +10:59:27 ============================================================================ +10:59:27 Sending to : +10:59:27 ============================================================================ +10:59:27 ============================================================================ +10:59:27 Slot Id : <456> +10:59:27 Transaction Type : REQUEST +10:59:27 Received From : +10:59:27 ============================================================================ +10:59:27 FNo. Len. Field Value +10:59:27 ============================================================================ +10:59:27 [ 1] [ 4] [0200] +10:59:27 [ 2] [ 16] [6688990040039412] +10:59:27 [ 3] [ 6] [010000] +10:59:27 [ 4] [ 12] [000040000000] +10:59:27 [ 7] [ 10] [0320105923] +10:59:27 [ 11] [ 6] [722610] +10:59:27 [ 12] [ 6] [105923] +10:59:27 [ 13] [ 4] [0320] +10:59:27 [ 15] [ 4] [0320] +10:59:27 [ 18] [ 4] [6011] +10:59:27 [ 22] [ 3] [900] +10:59:27 [ 25] [ 2] [02] +10:59:27 [ 28] [ 9] [D00002000] +10:59:27 [ 32] [ 6] [621354] +10:59:27 [ 35] [ 37] [6688990040039412=97111261165750100000] +10:59:27 [ 37] [ 12] [507904599650] +10:59:27 [ 41] [ 8] [02002200] +10:59:27 [ 42] [ 15] [NATIVE ] +10:59:27 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +10:59:27 [ 49] [ 3] [418] +10:59:27 [ 52] [ 16] [06254D3844BE33B8] +10:59:27 ============================================================================ +10:59:27 + + +waiting on router queue for slot.... +10:59:27 Sending to : +10:59:27 ============================================================================ +10:59:27 ============================================================================ +10:59:27 Slot Id : <456> +10:59:27 Transaction Type : REQUEST +10:59:27 Received From : +10:59:27 ============================================================================ +10:59:27 FNo. Len. Field Value +10:59:27 ============================================================================ +10:59:27 [ 1] [ 4] [0200] +10:59:27 [ 2] [ 16] [6688990040039412] +10:59:27 [ 3] [ 6] [010000] +10:59:27 [ 4] [ 12] [000040000000] +10:59:27 [ 7] [ 10] [0320105923] +10:59:27 [ 11] [ 6] [722610] +10:59:27 [ 12] [ 6] [105923] +10:59:27 [ 13] [ 4] [0320] +10:59:27 [ 15] [ 4] [0320] +10:59:27 [ 18] [ 4] [6011] +10:59:27 [ 22] [ 3] [900] +10:59:27 [ 25] [ 2] [02] +10:59:27 [ 28] [ 9] [D00002000] +10:59:27 [ 32] [ 6] [621354] +10:59:27 [ 35] [ 37] [6688990040039412=97111261165750100000] +10:59:27 [ 37] [ 12] [507904599650] +10:59:27 [ 41] [ 8] [02002200] +10:59:27 [ 42] [ 15] [NATIVE ] +10:59:27 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +10:59:27 [ 49] [ 3] [418] +10:59:27 [ 52] [ 16] [EB9EB7748F1D5CC3] +10:59:27 ============================================================================ +10:59:27 + + +waiting on router queue for slot.... +10:59:27 Sending to : <4> +10:59:27 ============================================================================ +10:59:28 ============================================================================ +10:59:28 Slot Id : <446> +10:59:28 Transaction Type : REQUEST +10:59:28 Received From : +10:59:28 ============================================================================ +10:59:28 FNo. Len. Field Value +10:59:28 ============================================================================ +10:59:28 [ 1] [ 4] [0800] +10:59:28 [ 7] [ 10] [0320035834] +10:59:28 [ 11] [ 6] [155981] +10:59:28 [ 70] [ 3] [301] +10:59:28 ============================================================================ +10:59:28 + + +waiting on router queue for slot.... +10:59:28 Sending to : +10:59:28 ============================================================================ +10:59:28 ============================================================================ +10:59:28 Slot Id : <446> +10:59:28 Transaction Type : RESPONSE +10:59:28 Received From : +10:59:28 ============================================================================ +10:59:28 FNo. Len. Field Value +10:59:28 ============================================================================ +10:59:28 [ 1] [ 4] [0810] +10:59:28 [ 7] [ 10] [0320035834] +10:59:28 [ 11] [ 6] [155981] +10:59:28 [ 39] [ 2] [00] +10:59:28 [ 70] [ 3] [301] +10:59:28 ============================================================================ +10:59:28 Calculate Source COMM Id = 2 +10:59:28 ============================================================================ +10:59:28 + + +waiting on router queue for slot.... +10:59:30 ============================================================================ +10:59:30 Slot Id : <456> +10:59:30 Transaction Type : RESPONSE +10:59:30 Received From : +10:59:30 ============================================================================ +10:59:30 FNo. Len. Field Value +10:59:30 ============================================================================ +10:59:30 [ 1] [ 4] [0210] +10:59:30 [ 2] [ 16] [6688990040039412] +10:59:30 [ 3] [ 6] [010000] +10:59:30 [ 4] [ 12] [000040000000] +10:59:30 [ 11] [ 6] [722610] +10:59:30 [ 12] [ 6] [105923] +10:59:30 [ 15] [ 4] [0320] +10:59:30 [ 18] [ 4] [6011] +10:59:30 [ 32] [ 6] [621354] +10:59:30 [ 35] [ 37] [6688990040039412=97111261165750100000] +10:59:30 [ 37] [ 12] [507904599650] +10:59:30 [ 38] [ 6] [863566] +10:59:30 [ 39] [ 2] [00] +10:59:30 [ 41] [ 8] [02002200] +10:59:30 [ 49] [ 3] [418] +10:59:30 [ 54] [ 20] [0002418C000011990579] +10:59:30 ============================================================================ +10:59:30 Sending to : +10:59:30 ============================================================================ +10:59:30 + + +waiting on router queue for slot.... +10:59:32 ============================================================================ +10:59:32 Slot Id : <456> +10:59:32 Transaction Type : RESPONSE +10:59:32 Received From : +10:59:32 ============================================================================ +10:59:32 FNo. Len. Field Value +10:59:32 ============================================================================ +10:59:32 [ 1] [ 4] [0210] +10:59:32 [ 2] [ 16] [6688990040039412] +10:59:32 [ 3] [ 6] [010000] +10:59:32 [ 4] [ 12] [000040000000] +10:59:32 [ 11] [ 6] [722610] +10:59:32 [ 12] [ 6] [105923] +10:59:32 [ 15] [ 4] [0320] +10:59:32 [ 18] [ 4] [6011] +10:59:32 [ 32] [ 6] [621354] +10:59:32 [ 35] [ 37] [6688990040039412=97111261165750100000] +10:59:32 [ 37] [ 12] [507904599650] +10:59:32 [ 38] [ 6] [863566] +10:59:32 [ 39] [ 2] [00] +10:59:32 [ 41] [ 8] [02002200] +10:59:32 [ 49] [ 3] [418] +10:59:32 [ 54] [ 20] [0002418C000011990579] +10:59:32 ============================================================================ +10:59:32 Calculate Source COMM Id = 0 +10:59:32 ============================================================================ +10:59:32 + + +waiting on router queue for slot.... +10:59:43 ============================================================================ +10:59:43 Slot Id : <429> +10:59:43 Transaction Type : REQUEST +10:59:43 Received From : +10:59:43 ============================================================================ +10:59:43 FNo. Len. Field Value +10:59:43 ============================================================================ +10:59:43 [ 1] [ 4] [0800] +10:59:43 [ 7] [ 10] [0320035851] +10:59:43 [ 11] [ 6] [155982] +10:59:43 [ 70] [ 3] [301] +10:59:43 ============================================================================ +10:59:43 + + +waiting on router queue for slot.... +10:59:43 Sending to : +10:59:43 ============================================================================ +10:59:43 ============================================================================ +10:59:43 Slot Id : <429> +10:59:43 Transaction Type : RESPONSE +10:59:43 Received From : +10:59:43 ============================================================================ +10:59:43 FNo. Len. Field Value +10:59:43 ============================================================================ +10:59:43 [ 1] [ 4] [0810] +10:59:43 [ 7] [ 10] [0320035851] +10:59:43 [ 11] [ 6] [155982] +10:59:43 [ 39] [ 2] [00] +10:59:43 [ 70] [ 3] [301] +10:59:43 ============================================================================ +10:59:43 Calculate Source COMM Id = 2 +10:59:43 ============================================================================ +10:59:43 + + +waiting on router queue for slot.... +10:59:52 ============================================================================ +10:59:52 Slot Id : <424> +10:59:52 Transaction Type : REQUEST +10:59:52 Received From : +10:59:52 ============================================================================ +10:59:52 FNo. Len. Field Value +10:59:52 ============================================================================ +10:59:52 [ 1] [ 4] [0200] +10:59:52 [ 2] [ 16] [6213541000681604] +10:59:52 [ 3] [ 6] [301000] +10:59:52 [ 7] [ 10] [0320035859] +10:59:52 [ 11] [ 6] [268313] +10:59:52 [ 12] [ 6] [105859] +10:59:52 [ 13] [ 4] [0320] +10:59:52 [ 14] [ 4] [4912] +10:59:52 [ 15] [ 4] [0320] +10:59:52 [ 18] [ 4] [6011] +10:59:52 [ 19] [ 3] [418] +10:59:52 [ 22] [ 3] [021] +10:59:52 [ 25] [ 2] [01] +10:59:52 [ 32] [ 6] [180893] +10:59:52 [ 35] [ 32] [6213541000681604=491212018160299] +10:59:52 [ 37] [ 12] [507903268313] +10:59:52 [ 41] [ 8] [0112CPBR] +10:59:52 [ 42] [ 15] [999999 ] +10:59:52 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:59:52 [ 49] [ 3] [418] +10:59:52 [ 52] [ 16] [7E2823EAA3065CC7] +10:59:52 ============================================================================ +10:59:52 + + +waiting on router queue for slot.... +10:59:52 Sending to : +10:59:52 ============================================================================ +10:59:52 Sending to : +10:59:52 ============================================================================ +10:59:52 ============================================================================ +10:59:52 Slot Id : <424> +10:59:52 Transaction Type : REQUEST +10:59:52 Received From : +10:59:52 ============================================================================ +10:59:52 FNo. Len. Field Value +10:59:52 ============================================================================ +10:59:52 [ 1] [ 4] [0200] +10:59:52 [ 2] [ 16] [6213541000681604] +10:59:52 [ 3] [ 6] [301000] +10:59:52 [ 7] [ 10] [0320035859] +10:59:52 [ 11] [ 6] [268313] +10:59:52 [ 12] [ 6] [105859] +10:59:52 [ 13] [ 4] [0320] +10:59:52 [ 14] [ 4] [4912] +10:59:52 [ 15] [ 4] [0320] +10:59:52 [ 18] [ 4] [6011] +10:59:52 [ 19] [ 3] [418] +10:59:52 [ 22] [ 3] [021] +10:59:52 [ 25] [ 2] [01] +10:59:52 [ 32] [ 6] [180893] +10:59:52 [ 35] [ 32] [6213541000681604=491212018160299] +10:59:52 [ 37] [ 12] [507903268313] +10:59:52 [ 41] [ 8] [0112CPBR] +10:59:52 [ 42] [ 15] [999999 ] +10:59:52 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:59:52 [ 49] [ 3] [418] +10:59:52 [ 52] [ 16] [7E2823EAA3065CC7] +10:59:52 ============================================================================ +10:59:52 + + +waiting on router queue for slot.... +10:59:52 Sending to : +10:59:52 ============================================================================ +10:59:52 ============================================================================ +10:59:52 Slot Id : <424> +10:59:52 Transaction Type : REQUEST +10:59:52 Received From : +10:59:52 ============================================================================ +10:59:52 FNo. Len. Field Value +10:59:52 ============================================================================ +10:59:52 [ 1] [ 4] [0200] +10:59:52 [ 2] [ 16] [6213541000681604] +10:59:52 [ 3] [ 6] [301000] +10:59:52 [ 7] [ 10] [0320035859] +10:59:52 [ 11] [ 6] [268313] +10:59:52 [ 12] [ 6] [105859] +10:59:52 [ 13] [ 4] [0320] +10:59:52 [ 14] [ 4] [4912] +10:59:52 [ 15] [ 4] [0320] +10:59:52 [ 18] [ 4] [6011] +10:59:52 [ 19] [ 3] [418] +10:59:52 [ 22] [ 3] [021] +10:59:52 [ 25] [ 2] [01] +10:59:52 [ 32] [ 6] [180893] +10:59:52 [ 35] [ 32] [6213541000681604=491212018160299] +10:59:52 [ 37] [ 12] [507903268313] +10:59:52 [ 41] [ 8] [0112CPBR] +10:59:52 [ 42] [ 15] [999999 ] +10:59:52 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +10:59:52 [ 49] [ 3] [418] +10:59:52 [ 52] [ 16] [D3FAEC502F2B75FC] +10:59:52 ============================================================================ +10:59:52 + + +waiting on router queue for slot.... +10:59:52 Sending to : <0> +10:59:52 ============================================================================ +10:59:52 ============================================================================ +10:59:52 Slot Id : <424> +10:59:52 Transaction Type : RESPONSE +10:59:52 Received From : +10:59:52 ============================================================================ +10:59:52 FNo. Len. Field Value +10:59:52 ============================================================================ +10:59:52 [ 1] [ 4] [0210] +10:59:52 [ 2] [ 16] [6213541000681604] +10:59:52 [ 3] [ 6] [301000] +10:59:52 [ 4] [ 12] [000000000000] +10:59:52 [ 7] [ 10] [0320035859] +10:59:52 [ 11] [ 6] [268313] +10:59:52 [ 12] [ 6] [105859] +10:59:52 [ 13] [ 4] [0320] +10:59:52 [ 15] [ 4] [0320] +10:59:52 [ 18] [ 4] [6011] +10:59:52 [ 19] [ 3] [418] +10:59:52 [ 32] [ 6] [180893] +10:59:52 [ 35] [ 32] [6213541000681604=491212018160299] +10:59:52 [ 37] [ 12] [507903268313] +10:59:52 [ 38] [ 6] [457850] +10:59:52 [ 39] [ 2] [00] +10:59:52 [ 41] [ 8] [0112CPBR] +10:59:52 [ 49] [ 3] [418] +10:59:52 [ 54] [ 40] [1001418C0000508872191002418C000050887219] +10:59:52 ============================================================================ +10:59:52 Sending to : +10:59:52 ============================================================================ +10:59:52 + + +waiting on router queue for slot.... +10:59:54 ============================================================================ +10:59:54 Slot Id : <445> +10:59:54 Transaction Type : REQUEST +10:59:54 Received From : +10:59:54 ============================================================================ +10:59:54 FNo. Len. Field Value +10:59:54 ============================================================================ +10:59:54 [ 1] [ 4] [0800] +10:59:54 [ 2] [ 5] [02531] +10:59:54 [ 3] [ 6] [579108] +10:59:54 [ 7] [ 10] [0320035954] +10:59:54 [ 11] [ 6] [807050] +10:59:54 [ 15] [ 10] [0320035954] +10:59:54 [ 37] [ 11] [57910807050] +10:59:54 [ 70] [ 3] [001] +10:59:54 ============================================================================ +10:59:54 + + +waiting on router queue for slot.... +10:59:54 ============================================================================ +10:59:54 Slot Id : <445> +10:59:54 Transaction Type : RESPONSE +10:59:54 Received From : +10:59:54 ============================================================================ +10:59:54 FNo. Len. Field Value +10:59:54 ============================================================================ +10:59:54 [ 1] [ 4] [0810] +10:59:54 [ 7] [ 10] [0320035954] +10:59:54 [ 11] [ 6] [807050] +10:59:54 [ 15] [ 4] [0320] +10:59:54 [ 37] [ 12] [57910807050] +10:59:54 [ 39] [ 2] [00] +10:59:54 [ 70] [ 3] [001] +10:59:54 ============================================================================ +10:59:54 Sending to : +10:59:54 ============================================================================ +10:59:54 + + +waiting on router queue for slot.... +10:59:54 ============================================================================ +10:59:54 Slot Id : <424> +10:59:54 Transaction Type : RESPONSE +10:59:54 Received From : +10:59:54 ============================================================================ +10:59:54 FNo. Len. Field Value +10:59:54 ============================================================================ +10:59:54 [ 1] [ 4] [0210] +10:59:54 [ 2] [ 16] [6213541000681604] +10:59:54 [ 3] [ 6] [301000] +10:59:54 [ 4] [ 12] [000000000000] +10:59:54 [ 7] [ 10] [0320035859] +10:59:54 [ 11] [ 6] [268313] +10:59:54 [ 12] [ 6] [105859] +10:59:54 [ 13] [ 4] [0320] +10:59:54 [ 15] [ 4] [0320] +10:59:54 [ 18] [ 4] [6011] +10:59:54 [ 19] [ 3] [418] +10:59:54 [ 32] [ 6] [180893] +10:59:54 [ 35] [ 32] [6213541000681604=491212018160299] +10:59:54 [ 37] [ 12] [507903268313] +10:59:54 [ 38] [ 6] [457850] +10:59:54 [ 39] [ 2] [00] +10:59:54 [ 41] [ 8] [0112CPBR] +10:59:54 [ 49] [ 3] [418] +10:59:54 [ 54] [ 40] [1001418C0000508872191002418C000050887219] +10:59:54 ============================================================================ +10:59:54 Calculate Source COMM Id = 2 +10:59:54 ============================================================================ +10:59:54 + + +waiting on router queue for slot.... +10:59:54 ============================================================================ +10:59:54 Slot Id : <435> +10:59:54 Transaction Type : REQUEST +10:59:54 Received From : +10:59:54 ============================================================================ +10:59:54 FNo. Len. Field Value +10:59:54 ============================================================================ +10:59:54 [ 1] [ 4] [0200] +10:59:54 [ 2] [ 16] [1808931800013110] +10:59:54 [ 3] [ 6] [012000] +10:59:54 [ 4] [ 12] [000100000000] +10:59:54 [ 7] [ 10] [0320105950] +10:59:54 [ 11] [ 6] [722747] +10:59:54 [ 12] [ 6] [105950] +10:59:54 [ 13] [ 4] [0320] +10:59:54 [ 15] [ 4] [0320] +10:59:54 [ 18] [ 4] [6011] +10:59:54 [ 22] [ 3] [900] +10:59:54 [ 25] [ 2] [02] +10:59:54 [ 28] [ 9] [D00002000] +10:59:54 [ 32] [ 6] [621354] +10:59:54 [ 35] [ 27] [1808931800013110=1803500460] +10:59:54 [ 37] [ 12] [507904635567] +10:59:54 [ 41] [ 8] [17000800] +10:59:54 [ 42] [ 15] [NATIVE ] +10:59:54 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:59:54 [ 49] [ 3] [418] +10:59:54 [ 52] [ 16] [46AD6223B0A06E63] +10:59:54 ============================================================================ +10:59:54 + + +waiting on router queue for slot.... +10:59:54 Sending to : +10:59:54 ============================================================================ +10:59:54 Sending to : +10:59:54 ============================================================================ +10:59:55 ============================================================================ +10:59:55 Slot Id : <435> +10:59:55 Transaction Type : REQUEST +10:59:55 Received From : +10:59:55 ============================================================================ +10:59:55 FNo. Len. Field Value +10:59:55 ============================================================================ +10:59:55 [ 1] [ 4] [0200] +10:59:55 [ 2] [ 16] [1808931800013110] +10:59:55 [ 3] [ 6] [012000] +10:59:55 [ 4] [ 12] [000100000000] +10:59:55 [ 7] [ 10] [0320105950] +10:59:55 [ 11] [ 6] [722747] +10:59:55 [ 12] [ 6] [105950] +10:59:55 [ 13] [ 4] [0320] +10:59:55 [ 15] [ 4] [0320] +10:59:55 [ 18] [ 4] [6011] +10:59:55 [ 22] [ 3] [900] +10:59:55 [ 25] [ 2] [02] +10:59:55 [ 28] [ 9] [D00002000] +10:59:55 [ 32] [ 6] [621354] +10:59:55 [ 35] [ 27] [1808931800013110=1803500460] +10:59:55 [ 37] [ 12] [507904635567] +10:59:55 [ 41] [ 8] [17000800] +10:59:55 [ 42] [ 15] [NATIVE ] +10:59:55 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:59:55 [ 49] [ 3] [418] +10:59:55 [ 52] [ 16] [46AD6223B0A06E63] +10:59:55 ============================================================================ +10:59:55 + + +waiting on router queue for slot.... +10:59:55 Sending to : +10:59:55 ============================================================================ +10:59:55 ============================================================================ +10:59:55 Slot Id : <435> +10:59:55 Transaction Type : REQUEST +10:59:55 Received From : +10:59:55 ============================================================================ +10:59:55 FNo. Len. Field Value +10:59:55 ============================================================================ +10:59:55 [ 1] [ 4] [0200] +10:59:55 [ 2] [ 16] [1808931800013110] +10:59:55 [ 3] [ 6] [012000] +10:59:55 [ 4] [ 12] [000100000000] +10:59:55 [ 7] [ 10] [0320105950] +10:59:55 [ 11] [ 6] [722747] +10:59:55 [ 12] [ 6] [105950] +10:59:55 [ 13] [ 4] [0320] +10:59:55 [ 15] [ 4] [0320] +10:59:55 [ 18] [ 4] [6011] +10:59:55 [ 22] [ 3] [900] +10:59:55 [ 25] [ 2] [02] +10:59:55 [ 28] [ 9] [D00002000] +10:59:55 [ 32] [ 6] [621354] +10:59:55 [ 35] [ 27] [1808931800013110=1803500460] +10:59:55 [ 37] [ 12] [507904635567] +10:59:55 [ 41] [ 8] [17000800] +10:59:55 [ 42] [ 15] [NATIVE ] +10:59:55 [ 43] [ 40] [Ban Nakhai Naxay LAO] +10:59:55 [ 49] [ 3] [418] +10:59:55 [ 52] [ 16] [9CF86F44870B988C] +10:59:55 ============================================================================ +10:59:55 + + +waiting on router queue for slot.... +10:59:55 Sending to : <2> +10:59:55 ============================================================================ +10:59:55 ============================================================================ +10:59:55 Slot Id : <404> +10:59:55 Transaction Type : REQUEST +10:59:55 Received From : +10:59:55 ============================================================================ +10:59:55 FNo. Len. Field Value +10:59:55 ============================================================================ +10:59:55 [ 1] [ 4] [0800] +10:59:55 [ 7] [ 10] [0320040742] +10:59:55 [ 11] [ 6] [068702] +10:59:55 [ 37] [ 12] [57911068702] +10:59:55 [ 70] [ 3] [301] +10:59:55 ============================================================================ +10:59:55 + + +waiting on router queue for slot.... +10:59:55 Sending to : +10:59:55 ============================================================================ +10:59:55 ============================================================================ +10:59:55 Slot Id : <404> +10:59:55 Transaction Type : RESPONSE +10:59:55 Received From : +10:59:55 ============================================================================ +10:59:55 FNo. Len. Field Value +10:59:55 ============================================================================ +10:59:55 [ 1] [ 4] [0810] +10:59:55 [ 7] [ 10] [0320040742] +10:59:55 [ 11] [ 6] [068702] +10:59:55 [ 37] [ 12] [579110687020] +10:59:55 [ 39] [ 2] [00] +10:59:55 [ 70] [ 3] [810] +10:59:55 ============================================================================ +10:59:55 Calculate Source COMM Id = 1 +10:59:55 ============================================================================ +10:59:55 + + +waiting on router queue for slot.... +10:59:56 ============================================================================ +10:59:56 Slot Id : <435> +10:59:56 Transaction Type : RESPONSE +10:59:56 Received From : +10:59:56 ============================================================================ +10:59:56 FNo. Len. Field Value +10:59:56 ============================================================================ +10:59:56 [ 1] [ 4] [0210] +10:59:56 [ 2] [ 16] [1808931800013110] +10:59:56 [ 3] [ 6] [012000] +10:59:56 [ 4] [ 12] [000100000000] +10:59:56 [ 7] [ 10] [0320105950] +10:59:56 [ 11] [ 6] [722747] +10:59:56 [ 12] [ 6] [105950] +10:59:56 [ 13] [ 4] [0320] +10:59:56 [ 18] [ 4] [6011] +10:59:56 [ 19] [ 3] [418] +10:59:56 [ 22] [ 3] [021] +10:59:56 [ 28] [ 9] [D00002000] +10:59:56 [ 32] [ 6] [621354] +10:59:56 [ 35] [ 27] [1808931800013110=1803500460] +10:59:56 [ 37] [ 12] [507904635567] +10:59:56 [ 39] [ 2] [42] +10:59:56 [ 41] [ 8] [17000800] +10:59:56 [ 49] [ 3] [418] +10:59:56 [ 52] [ 16] [9CF86F44870B988C] +10:59:56 ============================================================================ +10:59:56 Sending to : +10:59:56 ============================================================================ +10:59:56 + + +waiting on router queue for slot.... +10:59:57 ============================================================================ +10:59:57 Slot Id : <435> +10:59:57 Transaction Type : RESPONSE +10:59:57 Received From : +10:59:57 ============================================================================ +10:59:57 FNo. Len. Field Value +10:59:57 ============================================================================ +10:59:57 [ 1] [ 4] [0210] +10:59:57 [ 2] [ 16] [1808931800013110] +10:59:57 [ 3] [ 6] [012000] +10:59:57 [ 4] [ 12] [000100000000] +10:59:57 [ 7] [ 10] [0320105950] +10:59:57 [ 11] [ 6] [722747] +10:59:57 [ 12] [ 6] [105950] +10:59:57 [ 13] [ 4] [0320] +10:59:57 [ 18] [ 4] [6011] +10:59:57 [ 19] [ 3] [418] +10:59:57 [ 22] [ 3] [021] +10:59:57 [ 28] [ 9] [D00002000] +10:59:57 [ 32] [ 6] [621354] +10:59:57 [ 35] [ 27] [1808931800013110=1803500460] +10:59:57 [ 37] [ 12] [507904635567] +10:59:57 [ 39] [ 2] [42] +10:59:57 [ 41] [ 8] [17000800] +10:59:57 [ 49] [ 3] [418] +10:59:57 [ 52] [ 16] [9CF86F44870B988C] +10:59:57 ============================================================================ +10:59:57 Calculate Source COMM Id = 0 +10:59:57 ============================================================================ +10:59:57 + + +waiting on router queue for slot.... +10:59:58 ============================================================================ +10:59:58 Slot Id : <438> +10:59:58 Transaction Type : REQUEST +10:59:58 Received From : +10:59:58 ============================================================================ +10:59:58 FNo. Len. Field Value +10:59:58 ============================================================================ +10:59:58 [ 1] [ 4] [0200] +10:59:58 [ 2] [ 16] [6213545001067242] +10:59:58 [ 3] [ 6] [011000] +10:59:58 [ 4] [ 12] [000002000000] +10:59:58 [ 7] [ 10] [0320035905] +10:59:58 [ 11] [ 6] [268315] +10:59:58 [ 12] [ 6] [105905] +10:59:58 [ 13] [ 4] [0320] +10:59:58 [ 14] [ 4] [4912] +10:59:58 [ 15] [ 4] [0320] +10:59:58 [ 18] [ 4] [6011] +10:59:58 [ 19] [ 3] [418] +10:59:58 [ 22] [ 3] [021] +10:59:58 [ 25] [ 2] [01] +10:59:58 [ 28] [ 9] [D00002000] +10:59:58 [ 32] [ 6] [180893] +10:59:58 [ 35] [ 32] [6213545001067242=491212016724419] +10:59:58 [ 37] [ 12] [507903268315] +10:59:58 [ 41] [ 8] [0121SKBR] +10:59:58 [ 42] [ 15] [999999 ] +10:59:58 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +10:59:58 [ 49] [ 3] [418] +10:59:58 [ 52] [ 16] [E75EDF8834840283] +10:59:58 ============================================================================ +10:59:58 + + +waiting on router queue for slot.... +10:59:58 Sending to : +10:59:58 ============================================================================ +10:59:58 Sending to : +10:59:58 ============================================================================ +10:59:58 ============================================================================ +10:59:58 Slot Id : <438> +10:59:58 Transaction Type : REQUEST +10:59:58 Received From : +10:59:58 ============================================================================ +10:59:58 FNo. Len. Field Value +10:59:58 ============================================================================ +10:59:58 [ 1] [ 4] [0200] +10:59:58 [ 2] [ 16] [6213545001067242] +10:59:58 [ 3] [ 6] [011000] +10:59:58 [ 4] [ 12] [000002000000] +10:59:58 [ 7] [ 10] [0320035905] +10:59:58 [ 11] [ 6] [268315] +10:59:58 [ 12] [ 6] [105905] +10:59:58 [ 13] [ 4] [0320] +10:59:58 [ 14] [ 4] [4912] +10:59:58 [ 15] [ 4] [0320] +10:59:58 [ 18] [ 4] [6011] +10:59:58 [ 19] [ 3] [418] +10:59:58 [ 22] [ 3] [021] +10:59:58 [ 25] [ 2] [01] +10:59:58 [ 28] [ 9] [D00002000] +10:59:58 [ 32] [ 6] [180893] +10:59:58 [ 35] [ 32] [6213545001067242=491212016724419] +10:59:58 [ 37] [ 12] [507903268315] +10:59:58 [ 41] [ 8] [0121SKBR] +10:59:58 [ 42] [ 15] [999999 ] +10:59:58 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +10:59:58 [ 49] [ 3] [418] +10:59:58 [ 52] [ 16] [E75EDF8834840283] +10:59:58 ============================================================================ +10:59:58 + + +waiting on router queue for slot.... +10:59:58 Sending to : +10:59:58 ============================================================================ +10:59:58 ============================================================================ +10:59:58 Slot Id : <438> +10:59:58 Transaction Type : REQUEST +10:59:58 Received From : +10:59:58 ============================================================================ +10:59:58 FNo. Len. Field Value +10:59:58 ============================================================================ +10:59:58 [ 1] [ 4] [0200] +10:59:58 [ 2] [ 16] [6213545001067242] +10:59:58 [ 3] [ 6] [011000] +10:59:58 [ 4] [ 12] [000002000000] +10:59:58 [ 7] [ 10] [0320035905] +10:59:58 [ 11] [ 6] [268315] +10:59:58 [ 12] [ 6] [105905] +10:59:58 [ 13] [ 4] [0320] +10:59:58 [ 14] [ 4] [4912] +10:59:58 [ 15] [ 4] [0320] +10:59:58 [ 18] [ 4] [6011] +10:59:58 [ 19] [ 3] [418] +10:59:58 [ 22] [ 3] [021] +10:59:58 [ 25] [ 2] [01] +10:59:58 [ 28] [ 9] [D00002000] +10:59:58 [ 32] [ 6] [180893] +10:59:58 [ 35] [ 32] [6213545001067242=491212016724419] +10:59:58 [ 37] [ 12] [507903268315] +10:59:58 [ 41] [ 8] [0121SKBR] +10:59:58 [ 42] [ 15] [999999 ] +10:59:58 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +10:59:58 [ 49] [ 3] [418] +10:59:58 [ 52] [ 16] [36EDFE7769E600B0] +10:59:58 ============================================================================ +10:59:58 + + +waiting on router queue for slot.... +10:59:58 Sending to : <0> +10:59:58 ============================================================================ +10:59:59 ============================================================================ +10:59:59 Slot Id : <438> +10:59:59 Transaction Type : RESPONSE +10:59:59 Received From : +10:59:59 ============================================================================ +10:59:59 FNo. Len. Field Value +10:59:59 ============================================================================ +10:59:59 [ 1] [ 4] [0210] +10:59:59 [ 2] [ 16] [6213545001067242] +10:59:59 [ 3] [ 6] [011000] +10:59:59 [ 4] [ 12] [000002000000] +10:59:59 [ 7] [ 10] [0320035905] +10:59:59 [ 11] [ 6] [268315] +10:59:59 [ 12] [ 6] [105905] +10:59:59 [ 13] [ 4] [0320] +10:59:59 [ 15] [ 4] [0320] +10:59:59 [ 18] [ 4] [6011] +10:59:59 [ 19] [ 3] [418] +10:59:59 [ 22] [ 3] [021] +10:59:59 [ 32] [ 6] [180893] +10:59:59 [ 35] [ 32] [6213545001067242=491212016724419] +10:59:59 [ 37] [ 12] [507903268315] +10:59:59 [ 39] [ 2] [05] +10:59:59 [ 41] [ 8] [0121SKBR] +10:59:59 [ 49] [ 3] [418] +10:59:59 ============================================================================ +10:59:59 Sending to : +10:59:59 ============================================================================ +10:59:59 + + +waiting on router queue for slot.... +11:00:00 ============================================================================ +11:00:00 Slot Id : <438> +11:00:00 Transaction Type : RESPONSE +11:00:00 Received From : +11:00:00 ============================================================================ +11:00:00 FNo. Len. Field Value +11:00:00 ============================================================================ +11:00:00 [ 1] [ 4] [0210] +11:00:00 [ 2] [ 16] [6213545001067242] +11:00:00 [ 3] [ 6] [011000] +11:00:00 [ 4] [ 12] [000002000000] +11:00:00 [ 7] [ 10] [0320035905] +11:00:00 [ 11] [ 6] [268315] +11:00:00 [ 12] [ 6] [105905] +11:00:00 [ 13] [ 4] [0320] +11:00:00 [ 15] [ 4] [0320] +11:00:00 [ 18] [ 4] [6011] +11:00:00 [ 19] [ 3] [418] +11:00:00 [ 22] [ 3] [021] +11:00:00 [ 32] [ 6] [180893] +11:00:00 [ 35] [ 32] [6213545001067242=491212016724419] +11:00:00 [ 37] [ 12] [507903268315] +11:00:00 [ 39] [ 2] [05] +11:00:00 [ 41] [ 8] [0121SKBR] +11:00:00 [ 49] [ 3] [418] +11:00:00 ============================================================================ +11:00:00 Calculate Source COMM Id = 2 +11:00:00 ============================================================================ +11:00:00 + + +waiting on router queue for slot.... +11:00:03 ============================================================================ +11:00:03 Slot Id : <442> +11:00:03 Transaction Type : REQUEST +11:00:03 Received From : +11:00:03 ============================================================================ +11:00:03 FNo. Len. Field Value +11:00:03 ============================================================================ +11:00:03 [ 1] [ 4] [0200] +11:00:03 [ 2] [ 16] [6213541000676968] +11:00:03 [ 3] [ 6] [301000] +11:00:03 [ 4] [ 12] [000000000000] +11:00:03 [ 7] [ 10] [0320110024] +11:00:03 [ 11] [ 6] [204278] +11:00:03 [ 12] [ 6] [104846] +11:00:03 [ 13] [ 4] [0320] +11:00:03 [ 14] [ 4] [4912] +11:00:03 [ 15] [ 4] [0320] +11:00:03 [ 18] [ 4] [6011] +11:00:03 [ 19] [ 3] [418] +11:00:03 [ 22] [ 3] [021] +11:00:03 [ 25] [ 2] [01] +11:00:03 [ 28] [ 9] [D00000000] +11:00:03 [ 32] [ 6] [198901] +11:00:03 [ 35] [ 32] [6213541000676968=491212017696462] +11:00:03 [ 37] [ 12] [507911204278] +11:00:03 [ 41] [ 8] [01529024] +11:00:03 [ 42] [ 15] [000000041529024] +11:00:03 [ 43] [ 40] [JDB ATM TOKYO COIL VN ] +11:00:03 [ 49] [ 3] [418] +11:00:03 [ 52] [ 16] [2C6C4836C3D2E421] +11:00:03 ============================================================================ +11:00:03 + + +waiting on router queue for slot.... +11:00:03 Sending to : +11:00:03 ============================================================================ +11:00:03 Sending to : +11:00:03 ============================================================================ +11:00:03 ============================================================================ +11:00:03 Slot Id : <442> +11:00:03 Transaction Type : REQUEST +11:00:03 Received From : +11:00:03 ============================================================================ +11:00:03 FNo. Len. Field Value +11:00:03 ============================================================================ +11:00:03 [ 1] [ 4] [0200] +11:00:03 [ 2] [ 16] [6213541000676968] +11:00:03 [ 3] [ 6] [301000] +11:00:03 [ 4] [ 12] [000000000000] +11:00:03 [ 7] [ 10] [0320110024] +11:00:03 [ 11] [ 6] [204278] +11:00:03 [ 12] [ 6] [104846] +11:00:03 [ 13] [ 4] [0320] +11:00:03 [ 14] [ 4] [4912] +11:00:03 [ 15] [ 4] [0320] +11:00:03 [ 18] [ 4] [6011] +11:00:03 [ 19] [ 3] [418] +11:00:03 [ 22] [ 3] [021] +11:00:03 [ 25] [ 2] [01] +11:00:03 [ 28] [ 9] [D00000000] +11:00:03 [ 32] [ 6] [198901] +11:00:03 [ 35] [ 32] [6213541000676968=491212017696462] +11:00:03 [ 37] [ 12] [507911204278] +11:00:03 [ 41] [ 8] [01529024] +11:00:03 [ 42] [ 15] [000000041529024] +11:00:03 [ 43] [ 40] [JDB ATM TOKYO COIL VN ] +11:00:03 [ 49] [ 3] [418] +11:00:03 [ 52] [ 16] [2C6C4836C3D2E421] +11:00:03 ============================================================================ +11:00:03 + + +waiting on router queue for slot.... +11:00:03 Sending to : +11:00:03 ============================================================================ +11:00:03 ============================================================================ +11:00:03 Slot Id : <442> +11:00:03 Transaction Type : REQUEST +11:00:03 Received From : +11:00:03 ============================================================================ +11:00:03 FNo. Len. Field Value +11:00:03 ============================================================================ +11:00:03 [ 1] [ 4] [0200] +11:00:03 [ 2] [ 16] [6213541000676968] +11:00:03 [ 3] [ 6] [301000] +11:00:03 [ 4] [ 12] [000000000000] +11:00:03 [ 7] [ 10] [0320110024] +11:00:03 [ 11] [ 6] [204278] +11:00:03 [ 12] [ 6] [104846] +11:00:03 [ 13] [ 4] [0320] +11:00:03 [ 14] [ 4] [4912] +11:00:03 [ 15] [ 4] [0320] +11:00:03 [ 18] [ 4] [6011] +11:00:03 [ 19] [ 3] [418] +11:00:03 [ 22] [ 3] [021] +11:00:03 [ 25] [ 2] [01] +11:00:03 [ 28] [ 9] [D00000000] +11:00:03 [ 32] [ 6] [198901] +11:00:03 [ 35] [ 32] [6213541000676968=491212017696462] +11:00:03 [ 37] [ 12] [507911204278] +11:00:03 [ 41] [ 8] [01529024] +11:00:03 [ 42] [ 15] [000000041529024] +11:00:03 [ 43] [ 40] [JDB ATM TOKYO COIL VN ] +11:00:03 [ 49] [ 3] [418] +11:00:03 [ 52] [ 16] [876D0BED4FB3EE87] +11:00:03 ============================================================================ +11:00:03 + + +waiting on router queue for slot.... +11:00:03 Sending to : <0> +11:00:03 ============================================================================ +11:00:03 ============================================================================ +11:00:03 Slot Id : <442> +11:00:03 Transaction Type : RESPONSE +11:00:03 Received From : +11:00:03 ============================================================================ +11:00:03 FNo. Len. Field Value +11:00:03 ============================================================================ +11:00:03 [ 1] [ 4] [0210] +11:00:03 [ 2] [ 16] [6213541000676968] +11:00:03 [ 3] [ 6] [301000] +11:00:03 [ 4] [ 12] [000000000000] +11:00:03 [ 7] [ 10] [0320110024] +11:00:03 [ 11] [ 6] [204278] +11:00:03 [ 12] [ 6] [104846] +11:00:03 [ 13] [ 4] [0320] +11:00:03 [ 15] [ 4] [0320] +11:00:03 [ 18] [ 4] [6011] +11:00:03 [ 19] [ 3] [418] +11:00:03 [ 32] [ 6] [198901] +11:00:03 [ 35] [ 32] [6213541000676968=491212017696462] +11:00:03 [ 37] [ 12] [507911204278] +11:00:03 [ 38] [ 6] [284395] +11:00:03 [ 39] [ 2] [00] +11:00:03 [ 41] [ 8] [01529024] +11:00:03 [ 49] [ 3] [418] +11:00:03 [ 54] [ 40] [1001418C0000197925521002418C000019792552] +11:00:03 ============================================================================ +11:00:03 Sending to : +11:00:03 ============================================================================ +11:00:03 + + +waiting on router queue for slot.... +11:00:05 ============================================================================ +11:00:05 Slot Id : <442> +11:00:05 Transaction Type : RESPONSE +11:00:05 Received From : +11:00:05 ============================================================================ +11:00:05 FNo. Len. Field Value +11:00:05 ============================================================================ +11:00:05 [ 1] [ 4] [0210] +11:00:05 [ 2] [ 16] [6213541000676968] +11:00:05 [ 3] [ 6] [301000] +11:00:05 [ 4] [ 12] [000000000000] +11:00:05 [ 7] [ 10] [0320110024] +11:00:05 [ 11] [ 6] [204278] +11:00:05 [ 12] [ 6] [104846] +11:00:05 [ 13] [ 4] [0320] +11:00:05 [ 15] [ 4] [0320] +11:00:05 [ 18] [ 4] [6011] +11:00:05 [ 19] [ 3] [418] +11:00:05 [ 32] [ 6] [198901] +11:00:05 [ 35] [ 32] [6213541000676968=491212017696462] +11:00:05 [ 37] [ 12] [507911204278] +11:00:05 [ 38] [ 6] [284395] +11:00:05 [ 39] [ 2] [00] +11:00:05 [ 41] [ 8] [01529024] +11:00:05 [ 49] [ 3] [418] +11:00:05 [ 54] [ 40] [1001418C0000197925521002418C000019792552] +11:00:05 ============================================================================ +11:00:05 Calculate Source COMM Id = 5 +11:00:05 ============================================================================ +11:00:05 + + +waiting on router queue for slot.... +11:00:11 ============================================================================ +11:00:11 Slot Id : <427> +11:00:11 Transaction Type : REQUEST +11:00:11 Received From : +11:00:11 ============================================================================ +11:00:11 FNo. Len. Field Value +11:00:11 ============================================================================ +11:00:11 [ 1] [ 4] [0200] +11:00:11 [ 2] [ 16] [6213545000614358] +11:00:11 [ 3] [ 6] [010000] +11:00:11 [ 4] [ 12] [000060000000] +11:00:11 [ 7] [ 10] [0320105802] +11:00:11 [ 11] [ 6] [940028] +11:00:11 [ 12] [ 6] [105802] +11:00:11 [ 13] [ 4] [0320] +11:00:11 [ 15] [ 4] [0320] +11:00:11 [ 18] [ 4] [6011] +11:00:11 [ 19] [ 3] [418] +11:00:11 [ 22] [ 3] [021] +11:00:11 [ 25] [ 2] [01] +11:00:11 [ 28] [ 9] [D00002000] +11:00:11 [ 32] [ 6] [668899] +11:00:11 [ 35] [ 32] [6213545000614358=491212011435463] +11:00:11 [ 37] [ 12] [507900297346] +11:00:11 [ 41] [ 8] [03010006] +11:00:11 [ 42] [ 15] [APT ] +11:00:11 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +11:00:11 [ 49] [ 3] [418] +11:00:11 [ 52] [ 16] [862470CAA22C08E8] +11:00:11 ============================================================================ +11:00:11 + + +waiting on router queue for slot.... +11:00:11 Sending to : +11:00:11 ============================================================================ +11:00:11 Sending to : +11:00:11 ============================================================================ +11:00:11 ============================================================================ +11:00:11 Slot Id : <427> +11:00:11 Transaction Type : REQUEST +11:00:11 Received From : +11:00:11 ============================================================================ +11:00:11 FNo. Len. Field Value +11:00:11 ============================================================================ +11:00:11 [ 1] [ 4] [0200] +11:00:11 [ 2] [ 16] [6213545000614358] +11:00:11 [ 3] [ 6] [010000] +11:00:11 [ 4] [ 12] [000060000000] +11:00:11 [ 7] [ 10] [0320105802] +11:00:11 [ 11] [ 6] [940028] +11:00:11 [ 12] [ 6] [105802] +11:00:11 [ 13] [ 4] [0320] +11:00:11 [ 15] [ 4] [0320] +11:00:11 [ 18] [ 4] [6011] +11:00:11 [ 19] [ 3] [418] +11:00:11 [ 22] [ 3] [021] +11:00:11 [ 25] [ 2] [01] +11:00:11 [ 28] [ 9] [D00002000] +11:00:11 [ 32] [ 6] [668899] +11:00:11 [ 35] [ 32] [6213545000614358=491212011435463] +11:00:11 [ 37] [ 12] [507900297346] +11:00:11 [ 41] [ 8] [03010006] +11:00:11 [ 42] [ 15] [APT ] +11:00:11 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +11:00:11 [ 49] [ 3] [418] +11:00:11 [ 52] [ 16] [862470CAA22C08E8] +11:00:11 ============================================================================ +11:00:11 + + +waiting on router queue for slot.... +11:00:11 Sending to : +11:00:11 ============================================================================ +11:00:11 ============================================================================ +11:00:11 Slot Id : <427> +11:00:11 Transaction Type : REQUEST +11:00:11 Received From : +11:00:11 ============================================================================ +11:00:11 FNo. Len. Field Value +11:00:11 ============================================================================ +11:00:11 [ 1] [ 4] [0200] +11:00:11 [ 2] [ 16] [6213545000614358] +11:00:11 [ 3] [ 6] [010000] +11:00:11 [ 4] [ 12] [000060000000] +11:00:11 [ 7] [ 10] [0320105802] +11:00:11 [ 11] [ 6] [940028] +11:00:11 [ 12] [ 6] [105802] +11:00:11 [ 13] [ 4] [0320] +11:00:11 [ 15] [ 4] [0320] +11:00:11 [ 18] [ 4] [6011] +11:00:11 [ 19] [ 3] [418] +11:00:11 [ 22] [ 3] [021] +11:00:11 [ 25] [ 2] [01] +11:00:11 [ 28] [ 9] [D00002000] +11:00:11 [ 32] [ 6] [668899] +11:00:11 [ 35] [ 32] [6213545000614358=491212011435463] +11:00:11 [ 37] [ 12] [507900297346] +11:00:11 [ 41] [ 8] [03010006] +11:00:11 [ 42] [ 15] [APT ] +11:00:11 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +11:00:11 [ 49] [ 3] [418] +11:00:11 [ 52] [ 16] [7918B45541C36739] +11:00:11 ============================================================================ +11:00:11 + + +waiting on router queue for slot.... +11:00:11 Sending to : <0> +11:00:11 ============================================================================ +11:00:12 ============================================================================ +11:00:12 Slot Id : <427> +11:00:12 Transaction Type : RESPONSE +11:00:12 Received From : +11:00:12 ============================================================================ +11:00:12 FNo. Len. Field Value +11:00:12 ============================================================================ +11:00:12 [ 1] [ 4] [0210] +11:00:12 [ 2] [ 16] [6213545000614358] +11:00:12 [ 3] [ 6] [010000] +11:00:12 [ 4] [ 12] [000060000000] +11:00:12 [ 7] [ 10] [0320105802] +11:00:12 [ 11] [ 6] [940028] +11:00:12 [ 12] [ 6] [105802] +11:00:12 [ 13] [ 4] [0320] +11:00:12 [ 15] [ 4] [0320] +11:00:12 [ 18] [ 4] [6011] +11:00:12 [ 19] [ 3] [418] +11:00:12 [ 32] [ 6] [668899] +11:00:12 [ 35] [ 32] [6213545000614358=491212011435463] +11:00:12 [ 37] [ 12] [507900297346] +11:00:12 [ 38] [ 6] [434097] +11:00:12 [ 39] [ 2] [00] +11:00:12 [ 41] [ 8] [03010006] +11:00:12 [ 49] [ 3] [418] +11:00:12 [ 54] [ 40] [0001418C0000100508850002418C000010050885] +11:00:12 ============================================================================ +11:00:12 Sending to : +11:00:12 ============================================================================ +11:00:12 + + +waiting on router queue for slot.... +11:00:13 ============================================================================ +11:00:13 Slot Id : <427> +11:00:13 Transaction Type : RESPONSE +11:00:13 Received From : +11:00:13 ============================================================================ +11:00:13 FNo. Len. Field Value +11:00:13 ============================================================================ +11:00:13 [ 1] [ 4] [0210] +11:00:13 [ 2] [ 16] [6213545000614358] +11:00:13 [ 3] [ 6] [010000] +11:00:13 [ 4] [ 12] [000060000000] +11:00:13 [ 7] [ 10] [0320105802] +11:00:13 [ 11] [ 6] [940028] +11:00:13 [ 12] [ 6] [105802] +11:00:13 [ 13] [ 4] [0320] +11:00:13 [ 15] [ 4] [0320] +11:00:13 [ 18] [ 4] [6011] +11:00:13 [ 19] [ 3] [418] +11:00:13 [ 32] [ 6] [668899] +11:00:13 [ 35] [ 32] [6213545000614358=491212011435463] +11:00:13 [ 37] [ 12] [507900297346] +11:00:13 [ 38] [ 6] [434097] +11:00:13 [ 39] [ 2] [00] +11:00:13 [ 41] [ 8] [03010006] +11:00:13 [ 49] [ 3] [418] +11:00:13 [ 54] [ 40] [0001418C0000100508850002418C000010050885] +11:00:13 ============================================================================ +11:00:13 Calculate Source COMM Id = 4 +11:00:13 ============================================================================ +11:00:13 + + +waiting on router queue for slot.... +11:00:13 ============================================================================ +11:00:13 Slot Id : <434> +11:00:13 Transaction Type : REQUEST +11:00:13 Received From : +11:00:13 ============================================================================ +11:00:13 FNo. Len. Field Value +11:00:13 ============================================================================ +11:00:13 [ 1] [ 4] [0800] +11:00:13 [ 7] [ 10] [0320035921] +11:00:13 [ 11] [ 6] [155983] +11:00:13 [ 70] [ 3] [301] +11:00:13 ============================================================================ +11:00:13 + + +waiting on router queue for slot.... +11:00:13 Sending to : +11:00:13 ============================================================================ +11:00:13 ============================================================================ +11:00:13 Slot Id : <434> +11:00:13 Transaction Type : RESPONSE +11:00:13 Received From : +11:00:13 ============================================================================ +11:00:13 FNo. Len. Field Value +11:00:13 ============================================================================ +11:00:13 [ 1] [ 4] [0810] +11:00:13 [ 7] [ 10] [0320035921] +11:00:13 [ 11] [ 6] [155983] +11:00:13 [ 39] [ 2] [00] +11:00:13 [ 70] [ 3] [301] +11:00:13 ============================================================================ +11:00:13 Calculate Source COMM Id = 2 +11:00:13 ============================================================================ +11:00:13 + + +waiting on router queue for slot.... +11:00:25 ============================================================================ +11:00:25 Slot Id : <428> +11:00:25 Transaction Type : REQUEST +11:00:25 Received From : +11:00:25 ============================================================================ +11:00:25 FNo. Len. Field Value +11:00:25 ============================================================================ +11:00:25 [ 1] [ 4] [0800] +11:00:25 [ 7] [ 10] [0320035932] +11:00:25 [ 11] [ 6] [155984] +11:00:25 [ 70] [ 3] [301] +11:00:25 ============================================================================ +11:00:25 + + +waiting on router queue for slot.... +11:00:25 Sending to : +11:00:25 ============================================================================ +11:00:25 ============================================================================ +11:00:25 Slot Id : <428> +11:00:25 Transaction Type : RESPONSE +11:00:25 Received From : +11:00:25 ============================================================================ +11:00:25 FNo. Len. Field Value +11:00:25 ============================================================================ +11:00:25 [ 1] [ 4] [0810] +11:00:25 [ 7] [ 10] [0320035932] +11:00:25 [ 11] [ 6] [155984] +11:00:25 [ 39] [ 2] [00] +11:00:25 [ 70] [ 3] [301] +11:00:25 ============================================================================ +11:00:25 Calculate Source COMM Id = 2 +11:00:25 ============================================================================ +11:00:25 + + +waiting on router queue for slot.... +11:00:27 ============================================================================ +11:00:27 Slot Id : <451> +11:00:27 Transaction Type : REQUEST +11:00:27 Received From : +11:00:27 ============================================================================ +11:00:27 FNo. Len. Field Value +11:00:27 ============================================================================ +11:00:27 [ 1] [ 4] [0200] +11:00:27 [ 2] [ 16] [6688990602739409] +11:00:27 [ 3] [ 6] [010000] +11:00:27 [ 4] [ 12] [000100000000] +11:00:27 [ 7] [ 10] [0320035933] +11:00:27 [ 11] [ 6] [268318] +11:00:27 [ 12] [ 6] [105933] +11:00:27 [ 13] [ 4] [0320] +11:00:27 [ 14] [ 4] [4310] +11:00:27 [ 15] [ 4] [0320] +11:00:27 [ 18] [ 4] [6011] +11:00:27 [ 19] [ 3] [418] +11:00:27 [ 22] [ 3] [021] +11:00:27 [ 25] [ 2] [01] +11:00:27 [ 28] [ 9] [D00002000] +11:00:27 [ 32] [ 6] [180893] +11:00:27 [ 35] [ 37] [6688990602739409=43100061940943000000] +11:00:27 [ 37] [ 12] [507903268318] +11:00:27 [ 41] [ 8] [0486HPXK] +11:00:27 [ 42] [ 15] [999999 ] +11:00:27 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +11:00:27 [ 49] [ 3] [418] +11:00:27 [ 52] [ 16] [CD7202A9461C02E4] +11:00:27 ============================================================================ +11:00:27 + + +waiting on router queue for slot.... +11:00:27 Sending to : +11:00:27 ============================================================================ +11:00:27 Sending to : +11:00:27 ============================================================================ +11:00:27 ============================================================================ +11:00:27 Slot Id : <451> +11:00:27 Transaction Type : REQUEST +11:00:27 Received From : +11:00:27 ============================================================================ +11:00:27 FNo. Len. Field Value +11:00:27 ============================================================================ +11:00:27 [ 1] [ 4] [0200] +11:00:27 [ 2] [ 16] [6688990602739409] +11:00:27 [ 3] [ 6] [010000] +11:00:27 [ 4] [ 12] [000100000000] +11:00:27 [ 7] [ 10] [0320035933] +11:00:27 [ 11] [ 6] [268318] +11:00:27 [ 12] [ 6] [105933] +11:00:27 [ 13] [ 4] [0320] +11:00:27 [ 14] [ 4] [4310] +11:00:27 [ 15] [ 4] [0320] +11:00:27 [ 18] [ 4] [6011] +11:00:27 [ 19] [ 3] [418] +11:00:27 [ 22] [ 3] [021] +11:00:27 [ 25] [ 2] [01] +11:00:27 [ 28] [ 9] [D00002000] +11:00:27 [ 32] [ 6] [180893] +11:00:27 [ 35] [ 37] [6688990602739409=43100061940943000000] +11:00:27 [ 37] [ 12] [507903268318] +11:00:27 [ 41] [ 8] [0486HPXK] +11:00:27 [ 42] [ 15] [999999 ] +11:00:27 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +11:00:27 [ 49] [ 3] [418] +11:00:27 [ 52] [ 16] [CD7202A9461C02E4] +11:00:27 ============================================================================ +11:00:27 + + +waiting on router queue for slot.... +11:00:27 Sending to : +11:00:27 ============================================================================ +11:00:27 ============================================================================ +11:00:27 Slot Id : <451> +11:00:27 Transaction Type : REQUEST +11:00:27 Received From : +11:00:27 ============================================================================ +11:00:27 FNo. Len. Field Value +11:00:27 ============================================================================ +11:00:27 [ 1] [ 4] [0200] +11:00:27 [ 2] [ 16] [6688990602739409] +11:00:27 [ 3] [ 6] [010000] +11:00:27 [ 4] [ 12] [000100000000] +11:00:27 [ 7] [ 10] [0320035933] +11:00:27 [ 11] [ 6] [268318] +11:00:27 [ 12] [ 6] [105933] +11:00:27 [ 13] [ 4] [0320] +11:00:27 [ 14] [ 4] [4310] +11:00:27 [ 15] [ 4] [0320] +11:00:27 [ 18] [ 4] [6011] +11:00:27 [ 19] [ 3] [418] +11:00:27 [ 22] [ 3] [021] +11:00:27 [ 25] [ 2] [01] +11:00:27 [ 28] [ 9] [D00002000] +11:00:27 [ 32] [ 6] [180893] +11:00:27 [ 35] [ 37] [6688990602739409=43100061940943000000] +11:00:27 [ 37] [ 12] [507903268318] +11:00:27 [ 41] [ 8] [0486HPXK] +11:00:27 [ 42] [ 15] [999999 ] +11:00:27 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +11:00:27 [ 49] [ 3] [418] +11:00:27 [ 52] [ 16] [6089E472DFE9D627] +11:00:27 ============================================================================ +11:00:27 + + +waiting on router queue for slot.... +11:00:27 Sending to : <0> +11:00:27 ============================================================================ +11:00:27 ============================================================================ +11:00:27 Slot Id : <451> +11:00:27 Transaction Type : RESPONSE +11:00:27 Received From : +11:00:27 ============================================================================ +11:00:27 FNo. Len. Field Value +11:00:27 ============================================================================ +11:00:27 [ 1] [ 4] [0210] +11:00:27 [ 2] [ 16] [6688990602739409] +11:00:27 [ 3] [ 6] [010000] +11:00:27 [ 4] [ 12] [000100000000] +11:00:27 [ 7] [ 10] [0320035933] +11:00:27 [ 11] [ 6] [268318] +11:00:27 [ 12] [ 6] [105933] +11:00:27 [ 13] [ 4] [0320] +11:00:27 [ 15] [ 4] [0320] +11:00:27 [ 18] [ 4] [6011] +11:00:27 [ 19] [ 3] [418] +11:00:27 [ 22] [ 3] [021] +11:00:27 [ 32] [ 6] [180893] +11:00:27 [ 35] [ 37] [6688990602739409=43100061940943000000] +11:00:27 [ 37] [ 12] [507903268318] +11:00:27 [ 39] [ 2] [14] +11:00:27 [ 41] [ 8] [0486HPXK] +11:00:27 [ 49] [ 3] [418] +11:00:27 ============================================================================ +11:00:27 Sending to : +11:00:27 ============================================================================ +11:00:27 + + +waiting on router queue for slot.... +11:00:28 ============================================================================ +11:00:28 Slot Id : <451> +11:00:28 Transaction Type : RESPONSE +11:00:28 Received From : +11:00:28 ============================================================================ +11:00:28 FNo. Len. Field Value +11:00:28 ============================================================================ +11:00:28 [ 1] [ 4] [0210] +11:00:28 [ 2] [ 16] [6688990602739409] +11:00:28 [ 3] [ 6] [010000] +11:00:28 [ 4] [ 12] [000100000000] +11:00:28 [ 7] [ 10] [0320035933] +11:00:28 [ 11] [ 6] [268318] +11:00:28 [ 12] [ 6] [105933] +11:00:28 [ 13] [ 4] [0320] +11:00:28 [ 15] [ 4] [0320] +11:00:28 [ 18] [ 4] [6011] +11:00:28 [ 19] [ 3] [418] +11:00:28 [ 22] [ 3] [021] +11:00:28 [ 32] [ 6] [180893] +11:00:28 [ 35] [ 37] [6688990602739409=43100061940943000000] +11:00:28 [ 37] [ 12] [507903268318] +11:00:28 [ 39] [ 2] [14] +11:00:28 [ 41] [ 8] [0486HPXK] +11:00:28 [ 49] [ 3] [418] +11:00:28 ============================================================================ +11:00:28 Calculate Source COMM Id = 2 +11:00:28 ============================================================================ +11:00:28 + + +waiting on router queue for slot.... +11:00:41 ============================================================================ +11:00:41 Slot Id : <462> +11:00:41 Transaction Type : REQUEST +11:00:41 Received From : +11:00:41 ============================================================================ +11:00:41 FNo. Len. Field Value +11:00:41 ============================================================================ +11:00:41 [ 1] [ 4] [0800] +11:00:41 [ 7] [ 10] [0320035948] +11:00:41 [ 11] [ 6] [155985] +11:00:41 [ 70] [ 3] [301] +11:00:41 ============================================================================ +11:00:41 + + +waiting on router queue for slot.... +11:00:41 Sending to : +11:00:41 ============================================================================ +11:00:41 ============================================================================ +11:00:41 Slot Id : <462> +11:00:41 Transaction Type : RESPONSE +11:00:41 Received From : +11:00:41 ============================================================================ +11:00:41 FNo. Len. Field Value +11:00:41 ============================================================================ +11:00:41 [ 1] [ 4] [0810] +11:00:41 [ 7] [ 10] [0320035948] +11:00:41 [ 11] [ 6] [155985] +11:00:41 [ 39] [ 2] [00] +11:00:41 [ 70] [ 3] [301] +11:00:41 ============================================================================ +11:00:41 Calculate Source COMM Id = 2 +11:00:41 ============================================================================ +11:00:41 + + +waiting on router queue for slot.... +11:00:51 ============================================================================ +11:00:51 Slot Id : <457> +11:00:51 Transaction Type : REQUEST +11:00:51 Received From : +11:00:51 ============================================================================ +11:00:51 FNo. Len. Field Value +11:00:51 ============================================================================ +11:00:51 [ 1] [ 4] [0200] +11:00:51 [ 2] [ 16] [6213541000681604] +11:00:51 [ 3] [ 6] [011000] +11:00:51 [ 4] [ 12] [000040000000] +11:00:51 [ 7] [ 10] [0320035957] +11:00:51 [ 11] [ 6] [268322] +11:00:51 [ 12] [ 6] [105957] +11:00:51 [ 13] [ 4] [0320] +11:00:51 [ 14] [ 4] [4912] +11:00:51 [ 15] [ 4] [0320] +11:00:51 [ 18] [ 4] [6011] +11:00:51 [ 19] [ 3] [418] +11:00:51 [ 22] [ 3] [021] +11:00:51 [ 25] [ 2] [01] +11:00:51 [ 28] [ 9] [D00002000] +11:00:51 [ 32] [ 6] [180893] +11:00:51 [ 35] [ 32] [6213541000681604=491212018160299] +11:00:51 [ 37] [ 12] [507903268322] +11:00:51 [ 41] [ 8] [0112CPBR] +11:00:51 [ 42] [ 15] [999999 ] +11:00:51 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:00:51 [ 49] [ 3] [418] +11:00:51 [ 52] [ 16] [7E2823EAA3065CC7] +11:00:51 ============================================================================ +11:00:51 + + +waiting on router queue for slot.... +11:00:51 Sending to : +11:00:51 ============================================================================ +11:00:51 Sending to : +11:00:51 ============================================================================ +11:00:51 ============================================================================ +11:00:51 Slot Id : <457> +11:00:51 Transaction Type : REQUEST +11:00:51 Received From : +11:00:51 ============================================================================ +11:00:51 FNo. Len. Field Value +11:00:51 ============================================================================ +11:00:51 [ 1] [ 4] [0200] +11:00:51 [ 2] [ 16] [6213541000681604] +11:00:51 [ 3] [ 6] [011000] +11:00:51 [ 4] [ 12] [000040000000] +11:00:51 [ 7] [ 10] [0320035957] +11:00:51 [ 11] [ 6] [268322] +11:00:51 [ 12] [ 6] [105957] +11:00:51 [ 13] [ 4] [0320] +11:00:51 [ 14] [ 4] [4912] +11:00:51 [ 15] [ 4] [0320] +11:00:51 [ 18] [ 4] [6011] +11:00:51 [ 19] [ 3] [418] +11:00:51 [ 22] [ 3] [021] +11:00:51 [ 25] [ 2] [01] +11:00:51 [ 28] [ 9] [D00002000] +11:00:51 [ 32] [ 6] [180893] +11:00:51 [ 35] [ 32] [6213541000681604=491212018160299] +11:00:51 [ 37] [ 12] [507903268322] +11:00:51 [ 41] [ 8] [0112CPBR] +11:00:51 [ 42] [ 15] [999999 ] +11:00:51 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:00:51 [ 49] [ 3] [418] +11:00:51 [ 52] [ 16] [7E2823EAA3065CC7] +11:00:51 ============================================================================ +11:00:51 + + +waiting on router queue for slot.... +11:00:51 Sending to : +11:00:51 ============================================================================ +11:00:51 ============================================================================ +11:00:51 Slot Id : <457> +11:00:51 Transaction Type : REQUEST +11:00:51 Received From : +11:00:51 ============================================================================ +11:00:51 FNo. Len. Field Value +11:00:51 ============================================================================ +11:00:51 [ 1] [ 4] [0200] +11:00:51 [ 2] [ 16] [6213541000681604] +11:00:51 [ 3] [ 6] [011000] +11:00:51 [ 4] [ 12] [000040000000] +11:00:51 [ 7] [ 10] [0320035957] +11:00:51 [ 11] [ 6] [268322] +11:00:51 [ 12] [ 6] [105957] +11:00:51 [ 13] [ 4] [0320] +11:00:51 [ 14] [ 4] [4912] +11:00:51 [ 15] [ 4] [0320] +11:00:51 [ 18] [ 4] [6011] +11:00:51 [ 19] [ 3] [418] +11:00:51 [ 22] [ 3] [021] +11:00:51 [ 25] [ 2] [01] +11:00:51 [ 28] [ 9] [D00002000] +11:00:51 [ 32] [ 6] [180893] +11:00:51 [ 35] [ 32] [6213541000681604=491212018160299] +11:00:51 [ 37] [ 12] [507903268322] +11:00:51 [ 41] [ 8] [0112CPBR] +11:00:51 [ 42] [ 15] [999999 ] +11:00:51 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:00:51 [ 49] [ 3] [418] +11:00:51 [ 52] [ 16] [D3FAEC502F2B75FC] +11:00:51 ============================================================================ +11:00:51 + + +waiting on router queue for slot.... +11:00:51 Sending to : <0> +11:00:51 ============================================================================ +11:00:52 ============================================================================ +11:00:52 Slot Id : <457> +11:00:52 Transaction Type : RESPONSE +11:00:52 Received From : +11:00:52 ============================================================================ +11:00:52 FNo. Len. Field Value +11:00:52 ============================================================================ +11:00:52 [ 1] [ 4] [0210] +11:00:52 [ 2] [ 16] [6213541000681604] +11:00:52 [ 3] [ 6] [011000] +11:00:52 [ 4] [ 12] [000040000000] +11:00:52 [ 7] [ 10] [0320035957] +11:00:52 [ 11] [ 6] [268322] +11:00:52 [ 12] [ 6] [105957] +11:00:52 [ 13] [ 4] [0320] +11:00:52 [ 15] [ 4] [0320] +11:00:52 [ 18] [ 4] [6011] +11:00:52 [ 19] [ 3] [418] +11:00:52 [ 32] [ 6] [180893] +11:00:52 [ 35] [ 32] [6213541000681604=491212018160299] +11:00:52 [ 37] [ 12] [507903268322] +11:00:52 [ 38] [ 6] [384309] +11:00:52 [ 39] [ 2] [00] +11:00:52 [ 41] [ 8] [0112CPBR] +11:00:52 [ 49] [ 3] [418] +11:00:52 [ 54] [ 40] [1001418C0000106872191002418C000010687219] +11:00:52 ============================================================================ +11:00:52 Sending to : +11:00:52 ============================================================================ +11:00:52 + + +waiting on router queue for slot.... +11:00:52 ============================================================================ +11:00:52 Slot Id : <431> +11:00:52 Transaction Type : REQUEST +11:00:52 Received From : +11:00:52 ============================================================================ +11:00:52 FNo. Len. Field Value +11:00:52 ============================================================================ +11:00:52 [ 1] [ 4] [0800] +11:00:52 [ 7] [ 10] [0320040000] +11:00:52 [ 11] [ 6] [155986] +11:00:52 [ 70] [ 3] [301] +11:00:52 ============================================================================ +11:00:52 + + +waiting on router queue for slot.... +11:00:52 Sending to : +11:00:52 ============================================================================ +11:00:52 ============================================================================ +11:00:52 Slot Id : <431> +11:00:52 Transaction Type : RESPONSE +11:00:52 Received From : +11:00:52 ============================================================================ +11:00:52 FNo. Len. Field Value +11:00:52 ============================================================================ +11:00:52 [ 1] [ 4] [0810] +11:00:52 [ 7] [ 10] [0320040000] +11:00:52 [ 11] [ 6] [155986] +11:00:52 [ 39] [ 2] [00] +11:00:52 [ 70] [ 3] [301] +11:00:52 ============================================================================ +11:00:52 Calculate Source COMM Id = 2 +11:00:52 ============================================================================ +11:00:52 + + +waiting on router queue for slot.... +11:00:53 ============================================================================ +11:00:53 Slot Id : <457> +11:00:53 Transaction Type : RESPONSE +11:00:53 Received From : +11:00:53 ============================================================================ +11:00:53 FNo. Len. Field Value +11:00:53 ============================================================================ +11:00:53 [ 1] [ 4] [0210] +11:00:53 [ 2] [ 16] [6213541000681604] +11:00:53 [ 3] [ 6] [011000] +11:00:53 [ 4] [ 12] [000040000000] +11:00:53 [ 7] [ 10] [0320035957] +11:00:53 [ 11] [ 6] [268322] +11:00:53 [ 12] [ 6] [105957] +11:00:53 [ 13] [ 4] [0320] +11:00:53 [ 15] [ 4] [0320] +11:00:53 [ 18] [ 4] [6011] +11:00:53 [ 19] [ 3] [418] +11:00:53 [ 32] [ 6] [180893] +11:00:53 [ 35] [ 32] [6213541000681604=491212018160299] +11:00:53 [ 37] [ 12] [507903268322] +11:00:53 [ 38] [ 6] [384309] +11:00:53 [ 39] [ 2] [00] +11:00:53 [ 41] [ 8] [0112CPBR] +11:00:53 [ 49] [ 3] [418] +11:00:53 [ 54] [ 40] [1001418C0000106872191002418C000010687219] +11:00:53 ============================================================================ +11:00:53 Calculate Source COMM Id = 2 +11:00:53 ============================================================================ +11:00:53 + + +waiting on router queue for slot.... +11:00:56 ============================================================================ +11:00:56 Slot Id : <426> +11:00:56 Transaction Type : REQUEST +11:00:56 Received From : +11:00:56 ============================================================================ +11:00:56 FNo. Len. Field Value +11:00:56 ============================================================================ +11:00:56 [ 1] [ 4] [0800] +11:00:56 [ 2] [ 5] [02531] +11:00:56 [ 3] [ 6] [579118] +11:00:56 [ 7] [ 10] [0320040056] +11:00:56 [ 11] [ 6] [807051] +11:00:56 [ 15] [ 10] [0320040056] +11:00:56 [ 37] [ 11] [57911807051] +11:00:56 [ 70] [ 3] [001] +11:00:56 ============================================================================ +11:00:56 + + +waiting on router queue for slot.... +11:00:56 ============================================================================ +11:00:56 Slot Id : <426> +11:00:56 Transaction Type : RESPONSE +11:00:56 Received From : +11:00:56 ============================================================================ +11:00:56 FNo. Len. Field Value +11:00:56 ============================================================================ +11:00:56 [ 1] [ 4] [0810] +11:00:56 [ 7] [ 10] [0320040056] +11:00:56 [ 11] [ 6] [807051] +11:00:56 [ 15] [ 4] [0320] +11:00:56 [ 37] [ 12] [57911807051] +11:00:56 [ 39] [ 2] [00] +11:00:56 [ 70] [ 3] [001] +11:00:56 ============================================================================ +11:00:56 Sending to : +11:00:56 ============================================================================ +11:00:56 + + +waiting on router queue for slot.... +11:01:04 ============================================================================ +11:01:04 Slot Id : <422> +11:01:04 Transaction Type : REQUEST +11:01:04 Received From : +11:01:04 ============================================================================ +11:01:04 FNo. Len. Field Value +11:01:04 ============================================================================ +11:01:04 [ 1] [ 4] [0200] +11:01:04 [ 2] [ 16] [6688990040039412] +11:01:04 [ 3] [ 6] [010000] +11:01:04 [ 4] [ 12] [000008000000] +11:01:04 [ 7] [ 10] [0320110100] +11:01:04 [ 11] [ 6] [723037] +11:01:04 [ 12] [ 6] [110100] +11:01:04 [ 13] [ 4] [0320] +11:01:04 [ 15] [ 4] [0320] +11:01:04 [ 18] [ 4] [6011] +11:01:04 [ 22] [ 3] [900] +11:01:04 [ 25] [ 2] [02] +11:01:04 [ 28] [ 9] [D00002000] +11:01:04 [ 32] [ 6] [621354] +11:01:04 [ 35] [ 37] [6688990040039412=97111261165750100000] +11:01:04 [ 37] [ 12] [507904599652] +11:01:04 [ 41] [ 8] [02002200] +11:01:04 [ 42] [ 15] [NATIVE ] +11:01:04 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +11:01:04 [ 49] [ 3] [418] +11:01:04 [ 52] [ 16] [06254D3844BE33B8] +11:01:04 ============================================================================ +11:01:04 + + +waiting on router queue for slot.... +11:01:04 Sending to : +11:01:04 ============================================================================ +11:01:04 Sending to : +11:01:04 ============================================================================ +11:01:04 ============================================================================ +11:01:04 Slot Id : <422> +11:01:04 Transaction Type : REQUEST +11:01:04 Received From : +11:01:04 ============================================================================ +11:01:04 FNo. Len. Field Value +11:01:04 ============================================================================ +11:01:04 [ 1] [ 4] [0200] +11:01:04 [ 2] [ 16] [6688990040039412] +11:01:04 [ 3] [ 6] [010000] +11:01:04 [ 4] [ 12] [000008000000] +11:01:04 [ 7] [ 10] [0320110100] +11:01:04 [ 11] [ 6] [723037] +11:01:04 [ 12] [ 6] [110100] +11:01:04 [ 13] [ 4] [0320] +11:01:04 [ 15] [ 4] [0320] +11:01:04 [ 18] [ 4] [6011] +11:01:04 [ 22] [ 3] [900] +11:01:04 [ 25] [ 2] [02] +11:01:04 [ 28] [ 9] [D00002000] +11:01:04 [ 32] [ 6] [621354] +11:01:04 [ 35] [ 37] [6688990040039412=97111261165750100000] +11:01:04 [ 37] [ 12] [507904599652] +11:01:04 [ 41] [ 8] [02002200] +11:01:04 [ 42] [ 15] [NATIVE ] +11:01:04 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +11:01:04 [ 49] [ 3] [418] +11:01:04 [ 52] [ 16] [06254D3844BE33B8] +11:01:04 ============================================================================ +11:01:04 + + +waiting on router queue for slot.... +11:01:04 Sending to : +11:01:04 ============================================================================ +11:01:04 ============================================================================ +11:01:04 Slot Id : <422> +11:01:04 Transaction Type : REQUEST +11:01:04 Received From : +11:01:04 ============================================================================ +11:01:04 FNo. Len. Field Value +11:01:04 ============================================================================ +11:01:04 [ 1] [ 4] [0200] +11:01:04 [ 2] [ 16] [6688990040039412] +11:01:04 [ 3] [ 6] [010000] +11:01:04 [ 4] [ 12] [000008000000] +11:01:04 [ 7] [ 10] [0320110100] +11:01:04 [ 11] [ 6] [723037] +11:01:04 [ 12] [ 6] [110100] +11:01:04 [ 13] [ 4] [0320] +11:01:04 [ 15] [ 4] [0320] +11:01:04 [ 18] [ 4] [6011] +11:01:04 [ 22] [ 3] [900] +11:01:04 [ 25] [ 2] [02] +11:01:04 [ 28] [ 9] [D00002000] +11:01:04 [ 32] [ 6] [621354] +11:01:04 [ 35] [ 37] [6688990040039412=97111261165750100000] +11:01:04 [ 37] [ 12] [507904599652] +11:01:04 [ 41] [ 8] [02002200] +11:01:04 [ 42] [ 15] [NATIVE ] +11:01:04 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +11:01:04 [ 49] [ 3] [418] +11:01:04 [ 52] [ 16] [EB9EB7748F1D5CC3] +11:01:04 ============================================================================ +11:01:04 + + +waiting on router queue for slot.... +11:01:04 Sending to : <4> +11:01:04 ============================================================================ +11:01:05 ============================================================================ +11:01:05 Slot Id : <422> +11:01:05 Transaction Type : RESPONSE +11:01:05 Received From : +11:01:05 ============================================================================ +11:01:05 FNo. Len. Field Value +11:01:05 ============================================================================ +11:01:05 [ 1] [ 4] [0210] +11:01:05 [ 2] [ 16] [6688990040039412] +11:01:05 [ 3] [ 6] [010000] +11:01:05 [ 4] [ 12] [000008000000] +11:01:05 [ 11] [ 6] [723037] +11:01:05 [ 12] [ 6] [110100] +11:01:05 [ 15] [ 4] [0320] +11:01:05 [ 18] [ 4] [6011] +11:01:05 [ 32] [ 6] [621354] +11:01:05 [ 35] [ 37] [6688990040039412=97111261165750100000] +11:01:05 [ 37] [ 12] [507904599652] +11:01:05 [ 38] [ 6] [551982] +11:01:05 [ 39] [ 2] [00] +11:01:05 [ 41] [ 8] [02002200] +11:01:05 [ 49] [ 3] [418] +11:01:05 [ 54] [ 20] [0002418C000003790579] +11:01:05 ============================================================================ +11:01:05 Sending to : +11:01:05 ============================================================================ +11:01:05 + + +waiting on router queue for slot.... +11:01:07 ============================================================================ +11:01:07 Slot Id : <422> +11:01:07 Transaction Type : RESPONSE +11:01:07 Received From : +11:01:07 ============================================================================ +11:01:07 FNo. Len. Field Value +11:01:07 ============================================================================ +11:01:07 [ 1] [ 4] [0210] +11:01:07 [ 2] [ 16] [6688990040039412] +11:01:07 [ 3] [ 6] [010000] +11:01:07 [ 4] [ 12] [000008000000] +11:01:07 [ 11] [ 6] [723037] +11:01:07 [ 12] [ 6] [110100] +11:01:07 [ 15] [ 4] [0320] +11:01:07 [ 18] [ 4] [6011] +11:01:07 [ 32] [ 6] [621354] +11:01:07 [ 35] [ 37] [6688990040039412=97111261165750100000] +11:01:07 [ 37] [ 12] [507904599652] +11:01:07 [ 38] [ 6] [551982] +11:01:07 [ 39] [ 2] [00] +11:01:07 [ 41] [ 8] [02002200] +11:01:07 [ 49] [ 3] [418] +11:01:07 [ 54] [ 20] [0002418C000003790579] +11:01:07 ============================================================================ +11:01:07 Calculate Source COMM Id = 0 +11:01:07 ============================================================================ +11:01:07 + + +waiting on router queue for slot.... +11:01:08 ============================================================================ +11:01:08 Slot Id : <421> +11:01:08 Transaction Type : REQUEST +11:01:08 Received From : +11:01:08 ============================================================================ +11:01:08 FNo. Len. Field Value +11:01:08 ============================================================================ +11:01:08 [ 1] [ 4] [0800] +11:01:08 [ 7] [ 10] [0320040016] +11:01:08 [ 11] [ 6] [155987] +11:01:08 [ 70] [ 3] [301] +11:01:08 ============================================================================ +11:01:08 + + +waiting on router queue for slot.... +11:01:08 Sending to : +11:01:08 ============================================================================ +11:01:08 ============================================================================ +11:01:08 Slot Id : <421> +11:01:08 Transaction Type : RESPONSE +11:01:08 Received From : +11:01:08 ============================================================================ +11:01:08 FNo. Len. Field Value +11:01:08 ============================================================================ +11:01:08 [ 1] [ 4] [0810] +11:01:08 [ 7] [ 10] [0320040016] +11:01:08 [ 11] [ 6] [155987] +11:01:08 [ 39] [ 2] [00] +11:01:08 [ 70] [ 3] [301] +11:01:08 ============================================================================ +11:01:08 Calculate Source COMM Id = 2 +11:01:08 ============================================================================ +11:01:08 + + +waiting on router queue for slot.... +11:01:13 ============================================================================ +11:01:13 Slot Id : <444> +11:01:13 Transaction Type : REQUEST +11:01:13 Received From : +11:01:13 ============================================================================ +11:01:13 FNo. Len. Field Value +11:01:13 ============================================================================ +11:01:13 [ 1] [ 4] [0200] +11:01:13 [ 2] [ 16] [6688990040156620] +11:01:13 [ 3] [ 6] [011000] +11:01:13 [ 4] [ 12] [000030000000] +11:01:13 [ 7] [ 10] [0320110900] +11:01:13 [ 11] [ 6] [107196] +11:01:13 [ 12] [ 6] [110900] +11:01:13 [ 13] [ 4] [0320] +11:01:13 [ 14] [ 4] [9805] +11:01:13 [ 15] [ 4] [0320] +11:01:13 [ 18] [ 4] [6011] +11:01:13 [ 22] [ 3] [900] +11:01:13 [ 25] [ 2] [02] +11:01:13 [ 28] [ 9] [D00002000] +11:01:13 [ 32] [ 6] [220699] +11:01:13 [ 35] [ 37] [6688990040156620=98051261668098000000] +11:01:13 [ 37] [ 12] [507900327815] +11:01:13 [ 41] [ 8] [01001800] +11:01:13 [ 42] [ 15] [APTRA ] +11:01:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:01:13 [ 49] [ 3] [418] +11:01:13 [ 52] [ 16] [4611FC2368FA1136] +11:01:13 ============================================================================ +11:01:13 + + +waiting on router queue for slot.... +11:01:13 Sending to : +11:01:13 ============================================================================ +11:01:13 Sending to : +11:01:13 ============================================================================ +11:01:13 ============================================================================ +11:01:13 Slot Id : <444> +11:01:13 Transaction Type : REQUEST +11:01:13 Received From : +11:01:13 ============================================================================ +11:01:13 FNo. Len. Field Value +11:01:13 ============================================================================ +11:01:13 [ 1] [ 4] [0200] +11:01:13 [ 2] [ 16] [6688990040156620] +11:01:13 [ 3] [ 6] [011000] +11:01:13 [ 4] [ 12] [000030000000] +11:01:13 [ 7] [ 10] [0320110900] +11:01:13 [ 11] [ 6] [107196] +11:01:13 [ 12] [ 6] [110900] +11:01:13 [ 13] [ 4] [0320] +11:01:13 [ 14] [ 4] [9805] +11:01:13 [ 15] [ 4] [0320] +11:01:13 [ 18] [ 4] [6011] +11:01:13 [ 22] [ 3] [900] +11:01:13 [ 25] [ 2] [02] +11:01:13 [ 28] [ 9] [D00002000] +11:01:13 [ 32] [ 6] [220699] +11:01:13 [ 35] [ 37] [6688990040156620=98051261668098000000] +11:01:13 [ 37] [ 12] [507900327815] +11:01:13 [ 41] [ 8] [01001800] +11:01:13 [ 42] [ 15] [APTRA ] +11:01:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:01:13 [ 49] [ 3] [418] +11:01:13 [ 52] [ 16] [4611FC2368FA1136] +11:01:13 ============================================================================ +11:01:13 + + +waiting on router queue for slot.... +11:01:13 Sending to : +11:01:13 ============================================================================ +11:01:13 ============================================================================ +11:01:13 Slot Id : <444> +11:01:13 Transaction Type : REQUEST +11:01:13 Received From : +11:01:13 ============================================================================ +11:01:13 FNo. Len. Field Value +11:01:13 ============================================================================ +11:01:13 [ 1] [ 4] [0200] +11:01:13 [ 2] [ 16] [6688990040156620] +11:01:13 [ 3] [ 6] [011000] +11:01:13 [ 4] [ 12] [000030000000] +11:01:13 [ 7] [ 10] [0320110900] +11:01:13 [ 11] [ 6] [107196] +11:01:13 [ 12] [ 6] [110900] +11:01:13 [ 13] [ 4] [0320] +11:01:13 [ 14] [ 4] [9805] +11:01:13 [ 15] [ 4] [0320] +11:01:13 [ 18] [ 4] [6011] +11:01:13 [ 22] [ 3] [900] +11:01:13 [ 25] [ 2] [02] +11:01:13 [ 28] [ 9] [D00002000] +11:01:13 [ 32] [ 6] [220699] +11:01:13 [ 35] [ 37] [6688990040156620=98051261668098000000] +11:01:13 [ 37] [ 12] [507900327815] +11:01:13 [ 41] [ 8] [01001800] +11:01:13 [ 42] [ 15] [APTRA ] +11:01:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:01:13 [ 49] [ 3] [418] +11:01:13 [ 52] [ 16] [0B6FD495C01750CE] +11:01:13 ============================================================================ +11:01:13 + + +waiting on router queue for slot.... +11:01:13 Sending to : <0> +11:01:13 ============================================================================ +11:01:13 ============================================================================ +11:01:13 Slot Id : <444> +11:01:13 Transaction Type : RESPONSE +11:01:13 Received From : +11:01:13 ============================================================================ +11:01:13 FNo. Len. Field Value +11:01:13 ============================================================================ +11:01:13 [ 1] [ 4] [0210] +11:01:13 [ 2] [ 16] [6688990040156620] +11:01:13 [ 3] [ 6] [011000] +11:01:13 [ 4] [ 12] [000030000000] +11:01:13 [ 7] [ 10] [0320110900] +11:01:13 [ 11] [ 6] [107196] +11:01:13 [ 12] [ 6] [110900] +11:01:13 [ 13] [ 4] [0320] +11:01:13 [ 15] [ 4] [0320] +11:01:13 [ 18] [ 4] [6011] +11:01:13 [ 22] [ 3] [900] +11:01:13 [ 32] [ 6] [220699] +11:01:13 [ 35] [ 37] [6688990040156620=98051261668098000000] +11:01:13 [ 37] [ 12] [507900327815] +11:01:13 [ 39] [ 2] [14] +11:01:13 [ 41] [ 8] [01001800] +11:01:13 [ 49] [ 3] [418] +11:01:13 ============================================================================ +11:01:13 Sending to : +11:01:13 ============================================================================ +11:01:13 + + +waiting on router queue for slot.... +11:01:15 ============================================================================ +11:01:15 Slot Id : <444> +11:01:15 Transaction Type : RESPONSE +11:01:15 Received From : +11:01:15 ============================================================================ +11:01:15 FNo. Len. Field Value +11:01:15 ============================================================================ +11:01:15 [ 1] [ 4] [0210] +11:01:15 [ 2] [ 16] [6688990040156620] +11:01:15 [ 3] [ 6] [011000] +11:01:15 [ 4] [ 12] [000030000000] +11:01:15 [ 7] [ 10] [0320110900] +11:01:15 [ 11] [ 6] [107196] +11:01:15 [ 12] [ 6] [110900] +11:01:15 [ 13] [ 4] [0320] +11:01:15 [ 15] [ 4] [0320] +11:01:15 [ 18] [ 4] [6011] +11:01:15 [ 22] [ 3] [900] +11:01:15 [ 32] [ 6] [220699] +11:01:15 [ 35] [ 37] [6688990040156620=98051261668098000000] +11:01:15 [ 37] [ 12] [507900327815] +11:01:15 [ 39] [ 2] [14] +11:01:15 [ 41] [ 8] [01001800] +11:01:15 [ 49] [ 3] [418] +11:01:15 ============================================================================ +11:01:15 Calculate Source COMM Id = 1 +11:01:15 ============================================================================ +11:01:15 + + +waiting on router queue for slot.... +11:01:19 ============================================================================ +11:01:19 Slot Id : <465> +11:01:19 Transaction Type : REQUEST +11:01:19 Received From : +11:01:19 ============================================================================ +11:01:19 FNo. Len. Field Value +11:01:19 ============================================================================ +11:01:19 [ 1] [ 4] [0800] +11:01:19 [ 7] [ 10] [0320040027] +11:01:19 [ 11] [ 6] [155988] +11:01:19 [ 70] [ 3] [301] +11:01:19 ============================================================================ +11:01:19 + + +waiting on router queue for slot.... +11:01:19 Sending to : +11:01:19 ============================================================================ +11:01:19 ============================================================================ +11:01:19 Slot Id : <465> +11:01:19 Transaction Type : RESPONSE +11:01:19 Received From : +11:01:19 ============================================================================ +11:01:19 FNo. Len. Field Value +11:01:19 ============================================================================ +11:01:19 [ 1] [ 4] [0810] +11:01:19 [ 7] [ 10] [0320040027] +11:01:19 [ 11] [ 6] [155988] +11:01:19 [ 39] [ 2] [00] +11:01:19 [ 70] [ 3] [301] +11:01:19 ============================================================================ +11:01:19 Calculate Source COMM Id = 2 +11:01:19 ============================================================================ +11:01:19 + + +waiting on router queue for slot.... +11:01:20 ============================================================================ +11:01:20 Slot Id : <423> +11:01:20 Transaction Type : REQUEST +11:01:20 Received From : +11:01:20 ============================================================================ +11:01:20 FNo. Len. Field Value +11:01:20 ============================================================================ +11:01:20 [ 1] [ 4] [0200] +11:01:20 [ 2] [ 16] [6213544001443339] +11:01:20 [ 3] [ 6] [300000] +11:01:20 [ 4] [ 12] [000000000000] +11:01:20 [ 7] [ 10] [0320105911] +11:01:20 [ 11] [ 6] [940079] +11:01:20 [ 12] [ 6] [105911] +11:01:20 [ 13] [ 4] [0320] +11:01:20 [ 15] [ 4] [0320] +11:01:20 [ 18] [ 4] [6011] +11:01:20 [ 19] [ 3] [418] +11:01:20 [ 22] [ 3] [021] +11:01:20 [ 25] [ 2] [01] +11:01:20 [ 28] [ 9] [D00000000] +11:01:20 [ 32] [ 6] [668899] +11:01:20 [ 35] [ 32] [6213544001443339=491212014333617] +11:01:20 [ 37] [ 12] [507901963468] +11:01:20 [ 41] [ 8] [03020019] +11:01:20 [ 42] [ 15] [APT ] +11:01:20 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:01:20 [ 49] [ 3] [418] +11:01:20 [ 52] [ 16] [0A1FF48EF1F76AE2] +11:01:20 ============================================================================ +11:01:20 + + +waiting on router queue for slot.... +11:01:20 Sending to : +11:01:20 ============================================================================ +11:01:20 Sending to : +11:01:20 ============================================================================ +11:01:20 ============================================================================ +11:01:20 Slot Id : <423> +11:01:20 Transaction Type : REQUEST +11:01:20 Received From : +11:01:20 ============================================================================ +11:01:20 FNo. Len. Field Value +11:01:20 ============================================================================ +11:01:20 [ 1] [ 4] [0200] +11:01:20 [ 2] [ 16] [6213544001443339] +11:01:20 [ 3] [ 6] [300000] +11:01:20 [ 4] [ 12] [000000000000] +11:01:20 [ 7] [ 10] [0320105911] +11:01:20 [ 11] [ 6] [940079] +11:01:20 [ 12] [ 6] [105911] +11:01:20 [ 13] [ 4] [0320] +11:01:20 [ 15] [ 4] [0320] +11:01:20 [ 18] [ 4] [6011] +11:01:20 [ 19] [ 3] [418] +11:01:20 [ 22] [ 3] [021] +11:01:20 [ 25] [ 2] [01] +11:01:20 [ 28] [ 9] [D00000000] +11:01:20 [ 32] [ 6] [668899] +11:01:20 [ 35] [ 32] [6213544001443339=491212014333617] +11:01:20 [ 37] [ 12] [507901963468] +11:01:20 [ 41] [ 8] [03020019] +11:01:20 [ 42] [ 15] [APT ] +11:01:20 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:01:20 [ 49] [ 3] [418] +11:01:20 [ 52] [ 16] [0A1FF48EF1F76AE2] +11:01:20 ============================================================================ +11:01:20 + + +waiting on router queue for slot.... +11:01:20 Sending to : +11:01:20 ============================================================================ +11:01:20 ============================================================================ +11:01:20 Slot Id : <423> +11:01:20 Transaction Type : REQUEST +11:01:20 Received From : +11:01:20 ============================================================================ +11:01:20 FNo. Len. Field Value +11:01:20 ============================================================================ +11:01:20 [ 1] [ 4] [0200] +11:01:20 [ 2] [ 16] [6213544001443339] +11:01:20 [ 3] [ 6] [300000] +11:01:20 [ 4] [ 12] [000000000000] +11:01:20 [ 7] [ 10] [0320105911] +11:01:20 [ 11] [ 6] [940079] +11:01:20 [ 12] [ 6] [105911] +11:01:20 [ 13] [ 4] [0320] +11:01:20 [ 15] [ 4] [0320] +11:01:20 [ 18] [ 4] [6011] +11:01:20 [ 19] [ 3] [418] +11:01:20 [ 22] [ 3] [021] +11:01:20 [ 25] [ 2] [01] +11:01:20 [ 28] [ 9] [D00000000] +11:01:20 [ 32] [ 6] [668899] +11:01:20 [ 35] [ 32] [6213544001443339=491212014333617] +11:01:20 [ 37] [ 12] [507901963468] +11:01:20 [ 41] [ 8] [03020019] +11:01:20 [ 42] [ 15] [APT ] +11:01:20 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:01:20 [ 49] [ 3] [418] +11:01:20 [ 52] [ 16] [FDD8E0295FE514A6] +11:01:20 ============================================================================ +11:01:20 + + +waiting on router queue for slot.... +11:01:20 Sending to : <0> +11:01:20 ============================================================================ +11:01:20 ============================================================================ +11:01:20 Slot Id : <423> +11:01:20 Transaction Type : RESPONSE +11:01:20 Received From : +11:01:20 ============================================================================ +11:01:20 FNo. Len. Field Value +11:01:20 ============================================================================ +11:01:20 [ 1] [ 4] [0210] +11:01:20 [ 2] [ 16] [6213544001443339] +11:01:20 [ 3] [ 6] [300000] +11:01:20 [ 4] [ 12] [000000000000] +11:01:20 [ 7] [ 10] [0320105911] +11:01:20 [ 11] [ 6] [940079] +11:01:20 [ 12] [ 6] [105911] +11:01:20 [ 13] [ 4] [0320] +11:01:20 [ 15] [ 4] [0320] +11:01:20 [ 18] [ 4] [6011] +11:01:20 [ 19] [ 3] [418] +11:01:20 [ 32] [ 6] [668899] +11:01:20 [ 35] [ 32] [6213544001443339=491212014333617] +11:01:20 [ 37] [ 12] [507901963468] +11:01:20 [ 38] [ 6] [337922] +11:01:20 [ 39] [ 2] [00] +11:01:20 [ 41] [ 8] [03020019] +11:01:20 [ 49] [ 3] [418] +11:01:20 [ 54] [ 40] [0001418C0000347233510002418C000034723351] +11:01:20 ============================================================================ +11:01:20 Sending to : +11:01:20 ============================================================================ +11:01:20 + + +waiting on router queue for slot.... +11:01:21 ============================================================================ +11:01:21 Slot Id : <436> +11:01:21 Transaction Type : REQUEST +11:01:21 Received From : +11:01:21 ============================================================================ +11:01:21 FNo. Len. Field Value +11:01:21 ============================================================================ +11:01:21 [ 1] [ 4] [0800] +11:01:21 [ 7] [ 10] [0320035912] +11:01:21 [ 11] [ 6] [058521] +11:01:21 [ 37] [ 12] [57910058521] +11:01:21 [ 70] [ 3] [301] +11:01:21 ============================================================================ +11:01:21 + + +waiting on router queue for slot.... +11:01:21 Sending to : +11:01:21 ============================================================================ +11:01:21 ============================================================================ +11:01:21 Slot Id : <436> +11:01:21 Transaction Type : RESPONSE +11:01:21 Received From : +11:01:21 ============================================================================ +11:01:21 FNo. Len. Field Value +11:01:21 ============================================================================ +11:01:21 [ 1] [ 4] [0810] +11:01:21 [ 7] [ 10] [0320035912] +11:01:21 [ 11] [ 6] [058521] +11:01:21 [ 37] [ 12] [579100585210] +11:01:21 [ 39] [ 2] [00] +11:01:21 [ 70] [ 3] [810] +11:01:21 ============================================================================ +11:01:21 Calculate Source COMM Id = 4 +11:01:21 ============================================================================ +11:01:21 + + +waiting on router queue for slot.... +11:01:22 ============================================================================ +11:01:22 Slot Id : <423> +11:01:22 Transaction Type : RESPONSE +11:01:22 Received From : +11:01:22 ============================================================================ +11:01:22 FNo. Len. Field Value +11:01:22 ============================================================================ +11:01:22 [ 1] [ 4] [0210] +11:01:22 [ 2] [ 16] [6213544001443339] +11:01:22 [ 3] [ 6] [300000] +11:01:22 [ 4] [ 12] [000000000000] +11:01:22 [ 7] [ 10] [0320105911] +11:01:22 [ 11] [ 6] [940079] +11:01:22 [ 12] [ 6] [105911] +11:01:22 [ 13] [ 4] [0320] +11:01:22 [ 15] [ 4] [0320] +11:01:22 [ 18] [ 4] [6011] +11:01:22 [ 19] [ 3] [418] +11:01:22 [ 32] [ 6] [668899] +11:01:22 [ 35] [ 32] [6213544001443339=491212014333617] +11:01:22 [ 37] [ 12] [507901963468] +11:01:22 [ 38] [ 6] [337922] +11:01:22 [ 39] [ 2] [00] +11:01:22 [ 41] [ 8] [03020019] +11:01:22 [ 49] [ 3] [418] +11:01:22 [ 54] [ 40] [0001418C0000347233510002418C000034723351] +11:01:22 ============================================================================ +11:01:22 Calculate Source COMM Id = 4 +11:01:22 ============================================================================ +11:01:22 + + +waiting on router queue for slot.... +11:01:35 ============================================================================ +11:01:35 Slot Id : <439> +11:01:35 Transaction Type : REQUEST +11:01:35 Received From : +11:01:35 ============================================================================ +11:01:35 FNo. Len. Field Value +11:01:35 ============================================================================ +11:01:35 [ 1] [ 4] [0800] +11:01:35 [ 7] [ 10] [0320040043] +11:01:35 [ 11] [ 6] [155989] +11:01:35 [ 70] [ 3] [301] +11:01:35 ============================================================================ +11:01:35 + + +waiting on router queue for slot.... +11:01:35 Sending to : +11:01:35 ============================================================================ +11:01:35 ============================================================================ +11:01:35 Slot Id : <439> +11:01:35 Transaction Type : RESPONSE +11:01:35 Received From : +11:01:35 ============================================================================ +11:01:35 FNo. Len. Field Value +11:01:35 ============================================================================ +11:01:35 [ 1] [ 4] [0810] +11:01:35 [ 7] [ 10] [0320040043] +11:01:35 [ 11] [ 6] [155989] +11:01:35 [ 39] [ 2] [00] +11:01:35 [ 70] [ 3] [301] +11:01:35 ============================================================================ +11:01:35 Calculate Source COMM Id = 2 +11:01:35 ============================================================================ +11:01:35 + + +waiting on router queue for slot.... +11:01:46 ============================================================================ +11:01:46 Slot Id : <458> +11:01:46 Transaction Type : REQUEST +11:01:46 Received From : +11:01:46 ============================================================================ +11:01:46 FNo. Len. Field Value +11:01:46 ============================================================================ +11:01:46 [ 1] [ 4] [0800] +11:01:46 [ 7] [ 10] [0320040054] +11:01:46 [ 11] [ 6] [155990] +11:01:46 [ 70] [ 3] [301] +11:01:46 ============================================================================ +11:01:46 + + +waiting on router queue for slot.... +11:01:46 Sending to : +11:01:46 ============================================================================ +11:01:46 ============================================================================ +11:01:46 Slot Id : <458> +11:01:46 Transaction Type : RESPONSE +11:01:46 Received From : +11:01:46 ============================================================================ +11:01:46 FNo. Len. Field Value +11:01:46 ============================================================================ +11:01:46 [ 1] [ 4] [0810] +11:01:46 [ 7] [ 10] [0320040054] +11:01:46 [ 11] [ 6] [155990] +11:01:46 [ 39] [ 2] [00] +11:01:46 [ 70] [ 3] [301] +11:01:46 ============================================================================ +11:01:46 Calculate Source COMM Id = 2 +11:01:46 ============================================================================ +11:01:46 + + +waiting on router queue for slot.... +11:01:48 ============================================================================ +11:01:48 Slot Id : <459> +11:01:48 Transaction Type : REQUEST +11:01:48 Received From : +11:01:48 ============================================================================ +11:01:48 FNo. Len. Field Value +11:01:48 ============================================================================ +11:01:48 [ 1] [ 4] [0200] +11:01:48 [ 2] [ 16] [1808931800013110] +11:01:48 [ 3] [ 6] [011000] +11:01:48 [ 4] [ 12] [000100000000] +11:01:48 [ 7] [ 10] [0320110144] +11:01:48 [ 11] [ 6] [723210] +11:01:48 [ 12] [ 6] [110144] +11:01:48 [ 13] [ 4] [0320] +11:01:48 [ 15] [ 4] [0320] +11:01:48 [ 18] [ 4] [6011] +11:01:48 [ 22] [ 3] [900] +11:01:48 [ 25] [ 2] [02] +11:01:48 [ 28] [ 9] [D00002000] +11:01:48 [ 32] [ 6] [621354] +11:01:48 [ 35] [ 27] [1808931800013110=1803500460] +11:01:48 [ 37] [ 12] [507904635569] +11:01:48 [ 41] [ 8] [17000800] +11:01:48 [ 42] [ 15] [NATIVE ] +11:01:48 [ 43] [ 40] [Ban Nakhai Naxay LAO] +11:01:48 [ 49] [ 3] [418] +11:01:48 [ 52] [ 16] [46AD6223B0A06E63] +11:01:48 ============================================================================ +11:01:48 + + +waiting on router queue for slot.... +11:01:48 Sending to : +11:01:48 ============================================================================ +11:01:48 Sending to : +11:01:48 ============================================================================ +11:01:48 ============================================================================ +11:01:48 Slot Id : <459> +11:01:48 Transaction Type : REQUEST +11:01:48 Received From : +11:01:48 ============================================================================ +11:01:48 FNo. Len. Field Value +11:01:48 ============================================================================ +11:01:48 [ 1] [ 4] [0200] +11:01:48 [ 2] [ 16] [1808931800013110] +11:01:48 [ 3] [ 6] [011000] +11:01:48 [ 4] [ 12] [000100000000] +11:01:48 [ 7] [ 10] [0320110144] +11:01:48 [ 11] [ 6] [723210] +11:01:48 [ 12] [ 6] [110144] +11:01:48 [ 13] [ 4] [0320] +11:01:48 [ 15] [ 4] [0320] +11:01:48 [ 18] [ 4] [6011] +11:01:48 [ 22] [ 3] [900] +11:01:48 [ 25] [ 2] [02] +11:01:48 [ 28] [ 9] [D00002000] +11:01:48 [ 32] [ 6] [621354] +11:01:48 [ 35] [ 27] [1808931800013110=1803500460] +11:01:48 [ 37] [ 12] [507904635569] +11:01:48 [ 41] [ 8] [17000800] +11:01:48 [ 42] [ 15] [NATIVE ] +11:01:48 [ 43] [ 40] [Ban Nakhai Naxay LAO] +11:01:48 [ 49] [ 3] [418] +11:01:48 [ 52] [ 16] [46AD6223B0A06E63] +11:01:48 ============================================================================ +11:01:48 + + +waiting on router queue for slot.... +11:01:48 Sending to : +11:01:48 ============================================================================ +11:01:48 ============================================================================ +11:01:48 Slot Id : <459> +11:01:48 Transaction Type : REQUEST +11:01:48 Received From : +11:01:48 ============================================================================ +11:01:48 FNo. Len. Field Value +11:01:48 ============================================================================ +11:01:48 [ 1] [ 4] [0200] +11:01:48 [ 2] [ 16] [1808931800013110] +11:01:48 [ 3] [ 6] [011000] +11:01:48 [ 4] [ 12] [000100000000] +11:01:48 [ 7] [ 10] [0320110144] +11:01:48 [ 11] [ 6] [723210] +11:01:48 [ 12] [ 6] [110144] +11:01:48 [ 13] [ 4] [0320] +11:01:48 [ 15] [ 4] [0320] +11:01:48 [ 18] [ 4] [6011] +11:01:48 [ 22] [ 3] [900] +11:01:48 [ 25] [ 2] [02] +11:01:48 [ 28] [ 9] [D00002000] +11:01:48 [ 32] [ 6] [621354] +11:01:48 [ 35] [ 27] [1808931800013110=1803500460] +11:01:48 [ 37] [ 12] [507904635569] +11:01:48 [ 41] [ 8] [17000800] +11:01:48 [ 42] [ 15] [NATIVE ] +11:01:48 [ 43] [ 40] [Ban Nakhai Naxay LAO] +11:01:48 [ 49] [ 3] [418] +11:01:48 [ 52] [ 16] [9CF86F44870B988C] +11:01:48 ============================================================================ +11:01:48 + + +waiting on router queue for slot.... +11:01:48 Sending to : <2> +11:01:48 ============================================================================ +11:01:53 ============================================================================ +11:01:53 Slot Id : <459> +11:01:53 Transaction Type : RESPONSE +11:01:53 Received From : +11:01:53 ============================================================================ +11:01:53 FNo. Len. Field Value +11:01:53 ============================================================================ +11:01:53 [ 1] [ 4] [0210] +11:01:53 [ 2] [ 16] [1808931800013110] +11:01:53 [ 3] [ 6] [011000] +11:01:53 [ 4] [ 12] [000100000000] +11:01:53 [ 6] [ 12] [000100000000] +11:01:53 [ 7] [ 10] [0320110144] +11:01:53 [ 11] [ 6] [723210] +11:01:53 [ 12] [ 6] [110144] +11:01:53 [ 13] [ 4] [0320] +11:01:53 [ 18] [ 4] [6011] +11:01:53 [ 19] [ 3] [418] +11:01:53 [ 22] [ 3] [021] +11:01:53 [ 32] [ 6] [621354] +11:01:53 [ 35] [ 27] [1808931800013110=1803500460] +11:01:53 [ 37] [ 12] [507904635569] +11:01:53 [ 38] [ 6] [723210] +11:01:53 [ 39] [ 2] [00] +11:01:53 [ 41] [ 8] [17000800] +11:01:53 [ 49] [ 3] [418] +11:01:53 [ 52] [ 16] [9CF86F44870B988C] +11:01:53 [ 54] [ 20] [1001418C000095247200] +11:01:53 ============================================================================ +11:01:53 Sending to : +11:01:53 ============================================================================ +11:01:53 + + +waiting on router queue for slot.... +11:01:54 ============================================================================ +11:01:54 Slot Id : <459> +11:01:54 Transaction Type : RESPONSE +11:01:54 Received From : +11:01:54 ============================================================================ +11:01:54 FNo. Len. Field Value +11:01:54 ============================================================================ +11:01:54 [ 1] [ 4] [0210] +11:01:54 [ 2] [ 16] [1808931800013110] +11:01:54 [ 3] [ 6] [011000] +11:01:54 [ 4] [ 12] [000100000000] +11:01:54 [ 6] [ 12] [000100000000] +11:01:54 [ 7] [ 10] [0320110144] +11:01:54 [ 11] [ 6] [723210] +11:01:54 [ 12] [ 6] [110144] +11:01:54 [ 13] [ 4] [0320] +11:01:54 [ 18] [ 4] [6011] +11:01:54 [ 19] [ 3] [418] +11:01:54 [ 22] [ 3] [021] +11:01:54 [ 32] [ 6] [621354] +11:01:54 [ 35] [ 27] [1808931800013110=1803500460] +11:01:54 [ 37] [ 12] [507904635569] +11:01:54 [ 38] [ 6] [723210] +11:01:54 [ 39] [ 2] [00] +11:01:54 [ 41] [ 8] [17000800] +11:01:54 [ 49] [ 3] [418] +11:01:54 [ 52] [ 16] [9CF86F44870B988C] +11:01:54 [ 54] [ 20] [1001418C000095247200] +11:01:54 ============================================================================ +11:01:54 Calculate Source COMM Id = 0 +11:01:54 ============================================================================ +11:01:54 + + +waiting on router queue for slot.... +11:01:58 ============================================================================ +11:01:58 Slot Id : <466> +11:01:58 Transaction Type : REQUEST +11:01:58 Received From : +11:01:58 ============================================================================ +11:01:58 FNo. Len. Field Value +11:01:58 ============================================================================ +11:01:58 [ 1] [ 4] [0800] +11:01:58 [ 2] [ 5] [02531] +11:01:58 [ 3] [ 6] [579118] +11:01:58 [ 7] [ 10] [0320040158] +11:01:58 [ 11] [ 6] [807052] +11:01:58 [ 15] [ 10] [0320040158] +11:01:58 [ 37] [ 11] [57911807052] +11:01:58 [ 70] [ 3] [001] +11:01:58 ============================================================================ +11:01:58 + + +waiting on router queue for slot.... +11:01:58 ============================================================================ +11:01:58 Slot Id : <466> +11:01:58 Transaction Type : RESPONSE +11:01:58 Received From : +11:01:58 ============================================================================ +11:01:58 FNo. Len. Field Value +11:01:58 ============================================================================ +11:01:58 [ 1] [ 4] [0810] +11:01:58 [ 7] [ 10] [0320040158] +11:01:58 [ 11] [ 6] [807052] +11:01:58 [ 15] [ 4] [0320] +11:01:58 [ 37] [ 12] [57911807052] +11:01:58 [ 39] [ 2] [00] +11:01:58 [ 70] [ 3] [001] +11:01:58 ============================================================================ +11:01:58 Sending to : +11:01:58 ============================================================================ +11:01:58 + + +waiting on router queue for slot.... +11:02:04 ============================================================================ +11:02:04 Slot Id : <452> +11:02:04 Transaction Type : REQUEST +11:02:04 Received From : +11:02:04 ============================================================================ +11:02:04 FNo. Len. Field Value +11:02:04 ============================================================================ +11:02:04 [ 1] [ 4] [0800] +11:02:04 [ 7] [ 10] [0320040111] +11:02:04 [ 11] [ 6] [155991] +11:02:04 [ 70] [ 3] [301] +11:02:04 ============================================================================ +11:02:04 + + +waiting on router queue for slot.... +11:02:04 Sending to : +11:02:04 ============================================================================ +11:02:04 ============================================================================ +11:02:04 Slot Id : <452> +11:02:04 Transaction Type : RESPONSE +11:02:04 Received From : +11:02:04 ============================================================================ +11:02:04 FNo. Len. Field Value +11:02:04 ============================================================================ +11:02:04 [ 1] [ 4] [0810] +11:02:04 [ 7] [ 10] [0320040111] +11:02:04 [ 11] [ 6] [155991] +11:02:04 [ 39] [ 2] [00] +11:02:04 [ 70] [ 3] [301] +11:02:04 ============================================================================ +11:02:04 Calculate Source COMM Id = 2 +11:02:04 ============================================================================ +11:02:04 + + +waiting on router queue for slot.... +11:02:04 ============================================================================ +11:02:04 Slot Id : <468> +11:02:04 Transaction Type : REQUEST +11:02:04 Received From : +11:02:04 ============================================================================ +11:02:04 FNo. Len. Field Value +11:02:04 ============================================================================ +11:02:04 [ 1] [ 4] [0200] +11:02:04 [ 2] [ 16] [6213541000375231] +11:02:04 [ 3] [ 6] [311000] +11:02:04 [ 4] [ 12] [000000000000] +11:02:04 [ 7] [ 10] [0320110952] +11:02:04 [ 11] [ 6] [168902] +11:02:04 [ 12] [ 6] [110952] +11:02:04 [ 13] [ 4] [0320] +11:02:04 [ 14] [ 4] [4912] +11:02:04 [ 15] [ 4] [0320] +11:02:04 [ 18] [ 4] [6011] +11:02:04 [ 22] [ 3] [900] +11:02:04 [ 25] [ 2] [02] +11:02:04 [ 28] [ 9] [000000000] +11:02:04 [ 32] [ 6] [220699] +11:02:04 [ 35] [ 32] [6213541000375231=491212017523147] +11:02:04 [ 37] [ 12] [507900026322] +11:02:04 [ 41] [ 8] [01000200] +11:02:04 [ 42] [ 15] [APTRA ] +11:02:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:02:04 [ 49] [ 3] [418] +11:02:04 [ 52] [ 16] [AC0F87469851A999] +11:02:04 ============================================================================ +11:02:04 + + +waiting on router queue for slot.... +11:02:04 Sending to : +11:02:04 ============================================================================ +11:02:04 Sending to : +11:02:04 ============================================================================ +11:02:05 ============================================================================ +11:02:05 Slot Id : <468> +11:02:05 Transaction Type : REQUEST +11:02:05 Received From : +11:02:05 ============================================================================ +11:02:05 FNo. Len. Field Value +11:02:05 ============================================================================ +11:02:05 [ 1] [ 4] [0200] +11:02:05 [ 2] [ 16] [6213541000375231] +11:02:05 [ 3] [ 6] [311000] +11:02:05 [ 4] [ 12] [000000000000] +11:02:05 [ 7] [ 10] [0320110952] +11:02:05 [ 11] [ 6] [168902] +11:02:05 [ 12] [ 6] [110952] +11:02:05 [ 13] [ 4] [0320] +11:02:05 [ 14] [ 4] [4912] +11:02:05 [ 15] [ 4] [0320] +11:02:05 [ 18] [ 4] [6011] +11:02:05 [ 22] [ 3] [900] +11:02:05 [ 25] [ 2] [02] +11:02:05 [ 28] [ 9] [000000000] +11:02:05 [ 32] [ 6] [220699] +11:02:05 [ 35] [ 32] [6213541000375231=491212017523147] +11:02:05 [ 37] [ 12] [507900026322] +11:02:05 [ 41] [ 8] [01000200] +11:02:05 [ 42] [ 15] [APTRA ] +11:02:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:02:05 [ 49] [ 3] [418] +11:02:05 [ 52] [ 16] [AC0F87469851A999] +11:02:05 ============================================================================ +11:02:05 + + +waiting on router queue for slot.... +11:02:05 Sending to : +11:02:05 ============================================================================ +11:02:05 ============================================================================ +11:02:05 Slot Id : <468> +11:02:05 Transaction Type : REQUEST +11:02:05 Received From : +11:02:05 ============================================================================ +11:02:05 FNo. Len. Field Value +11:02:05 ============================================================================ +11:02:05 [ 1] [ 4] [0200] +11:02:05 [ 2] [ 16] [6213541000375231] +11:02:05 [ 3] [ 6] [311000] +11:02:05 [ 4] [ 12] [000000000000] +11:02:05 [ 7] [ 10] [0320110952] +11:02:05 [ 11] [ 6] [168902] +11:02:05 [ 12] [ 6] [110952] +11:02:05 [ 13] [ 4] [0320] +11:02:05 [ 14] [ 4] [4912] +11:02:05 [ 15] [ 4] [0320] +11:02:05 [ 18] [ 4] [6011] +11:02:05 [ 22] [ 3] [900] +11:02:05 [ 25] [ 2] [02] +11:02:05 [ 28] [ 9] [000000000] +11:02:05 [ 32] [ 6] [220699] +11:02:05 [ 35] [ 32] [6213541000375231=491212017523147] +11:02:05 [ 37] [ 12] [507900026322] +11:02:05 [ 41] [ 8] [01000200] +11:02:05 [ 42] [ 15] [APTRA ] +11:02:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:02:05 [ 49] [ 3] [418] +11:02:05 [ 52] [ 16] [6DE2B92ED3AAD7AA] +11:02:05 ============================================================================ +11:02:05 + + +waiting on router queue for slot.... +11:02:05 Sending to : <0> +11:02:05 ============================================================================ +11:02:05 ============================================================================ +11:02:05 Slot Id : <468> +11:02:05 Transaction Type : RESPONSE +11:02:05 Received From : +11:02:05 ============================================================================ +11:02:05 FNo. Len. Field Value +11:02:05 ============================================================================ +11:02:05 [ 1] [ 4] [0210] +11:02:05 [ 2] [ 16] [6213541000375231] +11:02:05 [ 3] [ 6] [311000] +11:02:05 [ 4] [ 12] [000000000000] +11:02:05 [ 7] [ 10] [0320110952] +11:02:05 [ 11] [ 6] [168902] +11:02:05 [ 12] [ 6] [110952] +11:02:05 [ 13] [ 4] [0320] +11:02:05 [ 15] [ 4] [0320] +11:02:05 [ 18] [ 4] [6011] +11:02:05 [ 32] [ 6] [220699] +11:02:05 [ 35] [ 32] [6213541000375231=491212017523147] +11:02:05 [ 37] [ 12] [507900026322] +11:02:05 [ 38] [ 6] [058643] +11:02:05 [ 39] [ 2] [00] +11:02:05 [ 41] [ 8] [01000200] +11:02:05 [ 49] [ 3] [418] +11:02:05 [ 54] [ 40] [1001418C0000513671241002418C000051367124] +11:02:05 ============================================================================ +11:02:05 Sending to : +11:02:05 ============================================================================ +11:02:05 + + +waiting on router queue for slot.... +11:02:07 ============================================================================ +11:02:07 Slot Id : <468> +11:02:07 Transaction Type : RESPONSE +11:02:07 Received From : +11:02:07 ============================================================================ +11:02:07 FNo. Len. Field Value +11:02:07 ============================================================================ +11:02:07 [ 1] [ 4] [0210] +11:02:07 [ 2] [ 16] [6213541000375231] +11:02:07 [ 3] [ 6] [311000] +11:02:07 [ 4] [ 12] [000000000000] +11:02:07 [ 7] [ 10] [0320110952] +11:02:07 [ 11] [ 6] [168902] +11:02:07 [ 12] [ 6] [110952] +11:02:07 [ 13] [ 4] [0320] +11:02:07 [ 15] [ 4] [0320] +11:02:07 [ 18] [ 4] [6011] +11:02:07 [ 32] [ 6] [220699] +11:02:07 [ 35] [ 32] [6213541000375231=491212017523147] +11:02:07 [ 37] [ 12] [507900026322] +11:02:07 [ 38] [ 6] [058643] +11:02:07 [ 39] [ 2] [00] +11:02:07 [ 41] [ 8] [01000200] +11:02:07 [ 49] [ 3] [418] +11:02:07 [ 54] [ 40] [1001418C0000513671241002418C000051367124] +11:02:07 ============================================================================ +11:02:07 Calculate Source COMM Id = 1 +11:02:07 ============================================================================ +11:02:07 + + +waiting on router queue for slot.... +11:02:11 ============================================================================ +11:02:11 Slot Id : <455> +11:02:11 Transaction Type : REQUEST +11:02:11 Received From : +11:02:11 ============================================================================ +11:02:11 FNo. Len. Field Value +11:02:11 ============================================================================ +11:02:11 [ 1] [ 4] [0200] +11:02:11 [ 2] [ 16] [6688990040039412] +11:02:11 [ 3] [ 6] [010000] +11:02:11 [ 4] [ 12] [000002000000] +11:02:11 [ 7] [ 10] [0320110207] +11:02:11 [ 11] [ 6] [723317] +11:02:11 [ 12] [ 6] [110207] +11:02:11 [ 13] [ 4] [0320] +11:02:11 [ 15] [ 4] [0320] +11:02:11 [ 18] [ 4] [6011] +11:02:11 [ 22] [ 3] [900] +11:02:11 [ 25] [ 2] [02] +11:02:11 [ 28] [ 9] [D00002000] +11:02:11 [ 32] [ 6] [621354] +11:02:11 [ 35] [ 37] [6688990040039412=97111261165750100000] +11:02:11 [ 37] [ 12] [507904599654] +11:02:11 [ 41] [ 8] [02002200] +11:02:11 [ 42] [ 15] [NATIVE ] +11:02:11 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +11:02:11 [ 49] [ 3] [418] +11:02:11 [ 52] [ 16] [06254D3844BE33B8] +11:02:11 ============================================================================ +11:02:11 + + +waiting on router queue for slot.... +11:02:11 Sending to : +11:02:11 ============================================================================ +11:02:11 Sending to : +11:02:11 ============================================================================ +11:02:12 ============================================================================ +11:02:12 Slot Id : <455> +11:02:12 Transaction Type : REQUEST +11:02:12 Received From : +11:02:12 ============================================================================ +11:02:12 FNo. Len. Field Value +11:02:12 ============================================================================ +11:02:12 [ 1] [ 4] [0200] +11:02:12 [ 2] [ 16] [6688990040039412] +11:02:12 [ 3] [ 6] [010000] +11:02:12 [ 4] [ 12] [000002000000] +11:02:12 [ 7] [ 10] [0320110207] +11:02:12 [ 11] [ 6] [723317] +11:02:12 [ 12] [ 6] [110207] +11:02:12 [ 13] [ 4] [0320] +11:02:12 [ 15] [ 4] [0320] +11:02:12 [ 18] [ 4] [6011] +11:02:12 [ 22] [ 3] [900] +11:02:12 [ 25] [ 2] [02] +11:02:12 [ 28] [ 9] [D00002000] +11:02:12 [ 32] [ 6] [621354] +11:02:12 [ 35] [ 37] [6688990040039412=97111261165750100000] +11:02:12 [ 37] [ 12] [507904599654] +11:02:12 [ 41] [ 8] [02002200] +11:02:12 [ 42] [ 15] [NATIVE ] +11:02:12 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +11:02:12 [ 49] [ 3] [418] +11:02:12 [ 52] [ 16] [06254D3844BE33B8] +11:02:12 ============================================================================ +11:02:12 + + +waiting on router queue for slot.... +11:02:12 Sending to : +11:02:12 ============================================================================ +11:02:12 ============================================================================ +11:02:12 Slot Id : <455> +11:02:12 Transaction Type : REQUEST +11:02:12 Received From : +11:02:12 ============================================================================ +11:02:12 FNo. Len. Field Value +11:02:12 ============================================================================ +11:02:12 [ 1] [ 4] [0200] +11:02:12 [ 2] [ 16] [6688990040039412] +11:02:12 [ 3] [ 6] [010000] +11:02:12 [ 4] [ 12] [000002000000] +11:02:12 [ 7] [ 10] [0320110207] +11:02:12 [ 11] [ 6] [723317] +11:02:12 [ 12] [ 6] [110207] +11:02:12 [ 13] [ 4] [0320] +11:02:12 [ 15] [ 4] [0320] +11:02:12 [ 18] [ 4] [6011] +11:02:12 [ 22] [ 3] [900] +11:02:12 [ 25] [ 2] [02] +11:02:12 [ 28] [ 9] [D00002000] +11:02:12 [ 32] [ 6] [621354] +11:02:12 [ 35] [ 37] [6688990040039412=97111261165750100000] +11:02:12 [ 37] [ 12] [507904599654] +11:02:12 [ 41] [ 8] [02002200] +11:02:12 [ 42] [ 15] [NATIVE ] +11:02:12 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +11:02:12 [ 49] [ 3] [418] +11:02:12 [ 52] [ 16] [EB9EB7748F1D5CC3] +11:02:12 ============================================================================ +11:02:12 + + +waiting on router queue for slot.... +11:02:12 Sending to : <4> +11:02:12 ============================================================================ +11:02:12 ============================================================================ +11:02:12 Slot Id : <455> +11:02:12 Transaction Type : RESPONSE +11:02:12 Received From : +11:02:12 ============================================================================ +11:02:12 FNo. Len. Field Value +11:02:12 ============================================================================ +11:02:12 [ 1] [ 4] [0210] +11:02:12 [ 2] [ 16] [6688990040039412] +11:02:12 [ 3] [ 6] [010000] +11:02:12 [ 4] [ 12] [000002000000] +11:02:12 [ 11] [ 6] [723317] +11:02:12 [ 12] [ 6] [110207] +11:02:12 [ 15] [ 4] [0320] +11:02:12 [ 18] [ 4] [6011] +11:02:12 [ 32] [ 6] [621354] +11:02:12 [ 35] [ 37] [6688990040039412=97111261165750100000] +11:02:12 [ 37] [ 12] [507904599654] +11:02:12 [ 39] [ 2] [51] +11:02:12 [ 41] [ 8] [02002200] +11:02:12 [ 49] [ 3] [418] +11:02:12 [ 54] [ 0] [] +11:02:12 ============================================================================ +11:02:12 Sending to : +11:02:12 ============================================================================ +11:02:12 + + +waiting on router queue for slot.... +11:02:12 ============================================================================ +11:02:12 Slot Id : <449> +11:02:12 Transaction Type : REQUEST +11:02:12 Received From : +11:02:12 ============================================================================ +11:02:12 FNo. Len. Field Value +11:02:12 ============================================================================ +11:02:12 [ 1] [ 4] [0200] +11:02:12 [ 2] [ 16] [2206990000091827] +11:02:12 [ 3] [ 6] [012000] +11:02:12 [ 4] [ 12] [000075000000] +11:02:12 [ 7] [ 10] [0320110208] +11:02:12 [ 11] [ 6] [723326] +11:02:12 [ 12] [ 6] [110208] +11:02:12 [ 13] [ 4] [0320] +11:02:12 [ 15] [ 4] [0320] +11:02:12 [ 18] [ 4] [6011] +11:02:12 [ 22] [ 3] [900] +11:02:12 [ 25] [ 2] [02] +11:02:12 [ 28] [ 9] [D00002000] +11:02:12 [ 32] [ 6] [621354] +11:02:12 [ 35] [ 32] [2206990000091827=971012619129539] +11:02:12 [ 37] [ 12] [507904119743] +11:02:12 [ 41] [ 8] [08000800] +11:02:12 [ 42] [ 15] [NATIVE ] +11:02:12 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +11:02:12 [ 49] [ 3] [418] +11:02:12 [ 52] [ 16] [9153DB542DBB1EE4] +11:02:12 ============================================================================ +11:02:12 + + +waiting on router queue for slot.... +11:02:12 Sending to : +11:02:12 ============================================================================ +11:02:12 Sending to : +11:02:12 ============================================================================ +11:02:13 ============================================================================ +11:02:13 Slot Id : <449> +11:02:13 Transaction Type : REQUEST +11:02:13 Received From : +11:02:13 ============================================================================ +11:02:13 FNo. Len. Field Value +11:02:13 ============================================================================ +11:02:13 [ 1] [ 4] [0200] +11:02:13 [ 2] [ 16] [2206990000091827] +11:02:13 [ 3] [ 6] [012000] +11:02:13 [ 4] [ 12] [000075000000] +11:02:13 [ 7] [ 10] [0320110208] +11:02:13 [ 11] [ 6] [723326] +11:02:13 [ 12] [ 6] [110208] +11:02:13 [ 13] [ 4] [0320] +11:02:13 [ 15] [ 4] [0320] +11:02:13 [ 18] [ 4] [6011] +11:02:13 [ 22] [ 3] [900] +11:02:13 [ 25] [ 2] [02] +11:02:13 [ 28] [ 9] [D00002000] +11:02:13 [ 32] [ 6] [621354] +11:02:13 [ 35] [ 32] [2206990000091827=971012619129539] +11:02:13 [ 37] [ 12] [507904119743] +11:02:13 [ 41] [ 8] [08000800] +11:02:13 [ 42] [ 15] [NATIVE ] +11:02:13 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +11:02:13 [ 49] [ 3] [418] +11:02:13 [ 52] [ 16] [9153DB542DBB1EE4] +11:02:13 ============================================================================ +11:02:13 + + +waiting on router queue for slot.... +11:02:13 Sending to : +11:02:13 ============================================================================ +11:02:13 ============================================================================ +11:02:13 Slot Id : <449> +11:02:13 Transaction Type : REQUEST +11:02:13 Received From : +11:02:13 ============================================================================ +11:02:13 FNo. Len. Field Value +11:02:13 ============================================================================ +11:02:13 [ 1] [ 4] [0200] +11:02:13 [ 2] [ 16] [2206990000091827] +11:02:13 [ 3] [ 6] [012000] +11:02:13 [ 4] [ 12] [000075000000] +11:02:13 [ 7] [ 10] [0320110208] +11:02:13 [ 11] [ 6] [723326] +11:02:13 [ 12] [ 6] [110208] +11:02:13 [ 13] [ 4] [0320] +11:02:13 [ 15] [ 4] [0320] +11:02:13 [ 18] [ 4] [6011] +11:02:13 [ 22] [ 3] [900] +11:02:13 [ 25] [ 2] [02] +11:02:13 [ 28] [ 9] [D00002000] +11:02:13 [ 32] [ 6] [621354] +11:02:13 [ 35] [ 32] [2206990000091827=971012619129539] +11:02:13 [ 37] [ 12] [507904119743] +11:02:13 [ 41] [ 8] [08000800] +11:02:13 [ 42] [ 15] [NATIVE ] +11:02:13 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +11:02:13 [ 49] [ 3] [418] +11:02:13 [ 52] [ 16] [C9D35285F0D20C6F] +11:02:13 ============================================================================ +11:02:13 + + +waiting on router queue for slot.... +11:02:13 Sending to : <1> +11:02:13 ============================================================================ +11:02:13 ============================================================================ +11:02:13 Slot Id : <455> +11:02:13 Transaction Type : RESPONSE +11:02:13 Received From : +11:02:13 ============================================================================ +11:02:13 FNo. Len. Field Value +11:02:13 ============================================================================ +11:02:13 [ 1] [ 4] [0210] +11:02:13 [ 2] [ 16] [6688990040039412] +11:02:13 [ 3] [ 6] [010000] +11:02:13 [ 4] [ 12] [000002000000] +11:02:13 [ 11] [ 6] [723317] +11:02:13 [ 12] [ 6] [110207] +11:02:13 [ 15] [ 4] [0320] +11:02:13 [ 18] [ 4] [6011] +11:02:13 [ 32] [ 6] [621354] +11:02:13 [ 35] [ 37] [6688990040039412=97111261165750100000] +11:02:13 [ 37] [ 12] [507904599654] +11:02:13 [ 39] [ 2] [51] +11:02:13 [ 41] [ 8] [02002200] +11:02:13 [ 49] [ 3] [418] +11:02:13 [ 54] [ 0] [] +11:02:13 ============================================================================ +11:02:13 Calculate Source COMM Id = 0 +11:02:13 ============================================================================ +11:02:13 + + +waiting on router queue for slot.... +11:02:14 ============================================================================ +11:02:14 Slot Id : <475> +11:02:14 Transaction Type : REQUEST +11:02:14 Received From : +11:02:14 ============================================================================ +11:02:14 FNo. Len. Field Value +11:02:14 ============================================================================ +11:02:14 [ 1] [ 4] [0800] +11:02:14 [ 7] [ 10] [0320040122] +11:02:14 [ 11] [ 6] [155992] +11:02:14 [ 70] [ 3] [301] +11:02:14 ============================================================================ +11:02:14 + + +waiting on router queue for slot.... +11:02:14 Sending to : +11:02:14 ============================================================================ +11:02:14 ============================================================================ +11:02:14 Slot Id : <475> +11:02:14 Transaction Type : RESPONSE +11:02:14 Received From : +11:02:14 ============================================================================ +11:02:14 FNo. Len. Field Value +11:02:14 ============================================================================ +11:02:14 [ 1] [ 4] [0810] +11:02:14 [ 7] [ 10] [0320040122] +11:02:14 [ 11] [ 6] [155992] +11:02:14 [ 39] [ 2] [00] +11:02:14 [ 70] [ 3] [301] +11:02:14 ============================================================================ +11:02:14 Calculate Source COMM Id = 2 +11:02:14 ============================================================================ +11:02:14 + + +waiting on router queue for slot.... +11:02:16 ============================================================================ +11:02:16 Slot Id : <449> +11:02:16 Transaction Type : RESPONSE +11:02:16 Received From : +11:02:16 ============================================================================ +11:02:16 FNo. Len. Field Value +11:02:16 ============================================================================ +11:02:16 [ 1] [ 4] [0210] +11:02:16 [ 2] [ 16] [2206990000091827] +11:02:16 [ 3] [ 6] [012000] +11:02:16 [ 4] [ 12] [000075000000] +11:02:16 [ 7] [ 10] [0320110208] +11:02:16 [ 11] [ 6] [723326] +11:02:16 [ 12] [ 6] [110208] +11:02:16 [ 13] [ 4] [0320] +11:02:16 [ 15] [ 4] [0320] +11:02:16 [ 18] [ 4] [6011] +11:02:16 [ 32] [ 6] [621354] +11:02:16 [ 35] [ 32] [2206990000091827=971012619129539] +11:02:16 [ 37] [ 12] [507904119743] +11:02:16 [ 38] [ 6] [420333] +11:02:16 [ 39] [ 2] [00] +11:02:16 [ 41] [ 8] [08000800] +11:02:16 [ 49] [ 3] [418] +11:02:16 [ 54] [ 40] [2001418C0000076428002002418C000007642800] +11:02:16 ============================================================================ +11:02:16 Sending to : +11:02:16 ============================================================================ +11:02:16 + + +waiting on router queue for slot.... +11:02:17 ============================================================================ +11:02:17 Slot Id : <449> +11:02:17 Transaction Type : RESPONSE +11:02:17 Received From : +11:02:17 ============================================================================ +11:02:17 FNo. Len. Field Value +11:02:17 ============================================================================ +11:02:17 [ 1] [ 4] [0210] +11:02:17 [ 2] [ 16] [2206990000091827] +11:02:17 [ 3] [ 6] [012000] +11:02:17 [ 4] [ 12] [000075000000] +11:02:17 [ 7] [ 10] [0320110208] +11:02:17 [ 11] [ 6] [723326] +11:02:17 [ 12] [ 6] [110208] +11:02:17 [ 13] [ 4] [0320] +11:02:17 [ 15] [ 4] [0320] +11:02:17 [ 18] [ 4] [6011] +11:02:17 [ 32] [ 6] [621354] +11:02:17 [ 35] [ 32] [2206990000091827=971012619129539] +11:02:17 [ 37] [ 12] [507904119743] +11:02:17 [ 38] [ 6] [420333] +11:02:17 [ 39] [ 2] [00] +11:02:17 [ 41] [ 8] [08000800] +11:02:17 [ 49] [ 3] [418] +11:02:17 [ 54] [ 40] [2001418C0000076428002002418C000007642800] +11:02:17 ============================================================================ +11:02:17 Calculate Source COMM Id = 0 +11:02:17 ============================================================================ +11:02:17 + + +waiting on router queue for slot.... +11:02:25 ============================================================================ +11:02:25 Slot Id : <440> +11:02:25 Transaction Type : REQUEST +11:02:25 Received From : +11:02:25 ============================================================================ +11:02:25 FNo. Len. Field Value +11:02:25 ============================================================================ +11:02:25 [ 1] [ 4] [0800] +11:02:25 [ 7] [ 10] [0320040133] +11:02:25 [ 11] [ 6] [155993] +11:02:25 [ 70] [ 3] [301] +11:02:25 ============================================================================ +11:02:25 + + +waiting on router queue for slot.... +11:02:25 Sending to : +11:02:25 ============================================================================ +11:02:25 ============================================================================ +11:02:25 Slot Id : <440> +11:02:25 Transaction Type : RESPONSE +11:02:25 Received From : +11:02:25 ============================================================================ +11:02:25 FNo. Len. Field Value +11:02:25 ============================================================================ +11:02:25 [ 1] [ 4] [0810] +11:02:25 [ 7] [ 10] [0320040133] +11:02:25 [ 11] [ 6] [155993] +11:02:25 [ 39] [ 2] [00] +11:02:25 [ 70] [ 3] [301] +11:02:25 ============================================================================ +11:02:25 Calculate Source COMM Id = 2 +11:02:25 ============================================================================ +11:02:25 + + +waiting on router queue for slot.... +11:02:30 ============================================================================ +11:02:30 Slot Id : <460> +11:02:30 Transaction Type : REQUEST +11:02:30 Received From : +11:02:30 ============================================================================ +11:02:30 FNo. Len. Field Value +11:02:30 ============================================================================ +11:02:30 [ 1] [ 4] [0200] +11:02:30 [ 2] [ 16] [6213542000059783] +11:02:30 [ 3] [ 6] [310000] +11:02:30 [ 4] [ 12] [000000000000] +11:02:30 [ 7] [ 10] [0320111017] +11:02:30 [ 11] [ 6] [107199] +11:02:30 [ 12] [ 6] [111017] +11:02:30 [ 13] [ 4] [0320] +11:02:30 [ 14] [ 4] [4912] +11:02:30 [ 15] [ 4] [0320] +11:02:30 [ 18] [ 4] [6011] +11:02:30 [ 22] [ 3] [900] +11:02:30 [ 25] [ 2] [02] +11:02:30 [ 28] [ 9] [000000000] +11:02:30 [ 32] [ 6] [220699] +11:02:30 [ 35] [ 32] [6213542000059783=491212015978288] +11:02:30 [ 37] [ 12] [507900327817] +11:02:30 [ 41] [ 8] [01001800] +11:02:30 [ 42] [ 15] [APTRA ] +11:02:30 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:02:30 [ 49] [ 3] [418] +11:02:30 [ 52] [ 16] [2869A958B3C86033] +11:02:30 ============================================================================ +11:02:30 + + +waiting on router queue for slot.... +11:02:30 Sending to : +11:02:30 ============================================================================ +11:02:30 Sending to : +11:02:30 ============================================================================ +11:02:30 ============================================================================ +11:02:30 Slot Id : <460> +11:02:30 Transaction Type : REQUEST +11:02:30 Received From : +11:02:30 ============================================================================ +11:02:30 FNo. Len. Field Value +11:02:30 ============================================================================ +11:02:30 [ 1] [ 4] [0200] +11:02:30 [ 2] [ 16] [6213542000059783] +11:02:30 [ 3] [ 6] [310000] +11:02:30 [ 4] [ 12] [000000000000] +11:02:30 [ 7] [ 10] [0320111017] +11:02:30 [ 11] [ 6] [107199] +11:02:30 [ 12] [ 6] [111017] +11:02:30 [ 13] [ 4] [0320] +11:02:30 [ 14] [ 4] [4912] +11:02:30 [ 15] [ 4] [0320] +11:02:30 [ 18] [ 4] [6011] +11:02:30 [ 22] [ 3] [900] +11:02:30 [ 25] [ 2] [02] +11:02:30 [ 28] [ 9] [000000000] +11:02:30 [ 32] [ 6] [220699] +11:02:30 [ 35] [ 32] [6213542000059783=491212015978288] +11:02:30 [ 37] [ 12] [507900327817] +11:02:30 [ 41] [ 8] [01001800] +11:02:30 [ 42] [ 15] [APTRA ] +11:02:30 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:02:30 [ 49] [ 3] [418] +11:02:30 [ 52] [ 16] [2869A958B3C86033] +11:02:30 ============================================================================ +11:02:30 + + +waiting on router queue for slot.... +11:02:30 Sending to : +11:02:30 ============================================================================ +11:02:30 ============================================================================ +11:02:30 Slot Id : <460> +11:02:30 Transaction Type : REQUEST +11:02:30 Received From : +11:02:30 ============================================================================ +11:02:30 FNo. Len. Field Value +11:02:30 ============================================================================ +11:02:30 [ 1] [ 4] [0200] +11:02:30 [ 2] [ 16] [6213542000059783] +11:02:30 [ 3] [ 6] [310000] +11:02:30 [ 4] [ 12] [000000000000] +11:02:30 [ 7] [ 10] [0320111017] +11:02:30 [ 11] [ 6] [107199] +11:02:30 [ 12] [ 6] [111017] +11:02:30 [ 13] [ 4] [0320] +11:02:30 [ 14] [ 4] [4912] +11:02:30 [ 15] [ 4] [0320] +11:02:30 [ 18] [ 4] [6011] +11:02:30 [ 22] [ 3] [900] +11:02:30 [ 25] [ 2] [02] +11:02:30 [ 28] [ 9] [000000000] +11:02:30 [ 32] [ 6] [220699] +11:02:30 [ 35] [ 32] [6213542000059783=491212015978288] +11:02:30 [ 37] [ 12] [507900327817] +11:02:30 [ 41] [ 8] [01001800] +11:02:30 [ 42] [ 15] [APTRA ] +11:02:30 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:02:30 [ 49] [ 3] [418] +11:02:30 [ 52] [ 16] [576D2E83B55AA01B] +11:02:30 ============================================================================ +11:02:30 + + +waiting on router queue for slot.... +11:02:30 Sending to : <0> +11:02:30 ============================================================================ +11:02:31 ============================================================================ +11:02:31 Slot Id : <460> +11:02:31 Transaction Type : RESPONSE +11:02:31 Received From : +11:02:31 ============================================================================ +11:02:31 FNo. Len. Field Value +11:02:31 ============================================================================ +11:02:31 [ 1] [ 4] [0210] +11:02:31 [ 2] [ 16] [6213542000059783] +11:02:31 [ 3] [ 6] [310000] +11:02:31 [ 4] [ 12] [000000000000] +11:02:31 [ 7] [ 10] [0320111017] +11:02:31 [ 11] [ 6] [107199] +11:02:31 [ 12] [ 6] [111017] +11:02:31 [ 13] [ 4] [0320] +11:02:31 [ 15] [ 4] [0320] +11:02:31 [ 18] [ 4] [6011] +11:02:31 [ 32] [ 6] [220699] +11:02:31 [ 35] [ 32] [6213542000059783=491212015978288] +11:02:31 [ 37] [ 12] [507900327817] +11:02:31 [ 38] [ 6] [751599] +11:02:31 [ 39] [ 2] [00] +11:02:31 [ 41] [ 8] [01001800] +11:02:31 [ 49] [ 3] [418] +11:02:31 [ 54] [ 40] [0001418C0001089124490002418C000108912449] +11:02:31 ============================================================================ +11:02:31 Sending to : +11:02:31 ============================================================================ +11:02:31 + + +waiting on router queue for slot.... +11:02:32 ============================================================================ +11:02:32 Slot Id : <460> +11:02:32 Transaction Type : RESPONSE +11:02:32 Received From : +11:02:32 ============================================================================ +11:02:32 FNo. Len. Field Value +11:02:32 ============================================================================ +11:02:32 [ 1] [ 4] [0210] +11:02:32 [ 2] [ 16] [6213542000059783] +11:02:32 [ 3] [ 6] [310000] +11:02:32 [ 4] [ 12] [000000000000] +11:02:32 [ 7] [ 10] [0320111017] +11:02:32 [ 11] [ 6] [107199] +11:02:32 [ 12] [ 6] [111017] +11:02:32 [ 13] [ 4] [0320] +11:02:32 [ 15] [ 4] [0320] +11:02:32 [ 18] [ 4] [6011] +11:02:32 [ 32] [ 6] [220699] +11:02:32 [ 35] [ 32] [6213542000059783=491212015978288] +11:02:32 [ 37] [ 12] [507900327817] +11:02:32 [ 38] [ 6] [751599] +11:02:32 [ 39] [ 2] [00] +11:02:32 [ 41] [ 8] [01001800] +11:02:32 [ 49] [ 3] [418] +11:02:32 [ 54] [ 40] [0001418C0001089124490002418C000108912449] +11:02:32 ============================================================================ +11:02:32 Calculate Source COMM Id = 1 +11:02:32 ============================================================================ +11:02:32 + + +waiting on router queue for slot.... +11:02:38 ============================================================================ +11:02:38 Slot Id : <432> +11:02:38 Transaction Type : REQUEST +11:02:38 Received From : +11:02:38 ============================================================================ +11:02:38 FNo. Len. Field Value +11:02:38 ============================================================================ +11:02:38 [ 1] [ 4] [0200] +11:02:38 [ 2] [ 16] [1808930200038628] +11:02:38 [ 3] [ 6] [011000] +11:02:38 [ 4] [ 12] [000100000000] +11:02:38 [ 7] [ 10] [0320110234] +11:02:38 [ 11] [ 6] [723423] +11:02:38 [ 12] [ 6] [110234] +11:02:38 [ 13] [ 4] [0320] +11:02:38 [ 15] [ 4] [0320] +11:02:38 [ 18] [ 4] [6011] +11:02:38 [ 22] [ 3] [900] +11:02:38 [ 25] [ 2] [02] +11:02:38 [ 28] [ 9] [D00002000] +11:02:38 [ 32] [ 6] [621354] +11:02:38 [ 35] [ 27] [1808930200038628=1803500799] +11:02:38 [ 37] [ 12] [507903883671] +11:02:38 [ 41] [ 8] [01010400] +11:02:38 [ 42] [ 15] [NATIVE ] +11:02:38 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +11:02:38 [ 49] [ 3] [418] +11:02:38 [ 52] [ 16] [EA2773D0C2146C8B] +11:02:38 ============================================================================ +11:02:38 + + +waiting on router queue for slot.... +11:02:38 Sending to : +11:02:38 ============================================================================ +11:02:38 Sending to : +11:02:38 ============================================================================ +11:02:38 ============================================================================ +11:02:38 Slot Id : <432> +11:02:38 Transaction Type : REQUEST +11:02:38 Received From : +11:02:38 ============================================================================ +11:02:38 FNo. Len. Field Value +11:02:38 ============================================================================ +11:02:38 [ 1] [ 4] [0200] +11:02:38 [ 2] [ 16] [1808930200038628] +11:02:38 [ 3] [ 6] [011000] +11:02:38 [ 4] [ 12] [000100000000] +11:02:38 [ 7] [ 10] [0320110234] +11:02:38 [ 11] [ 6] [723423] +11:02:38 [ 12] [ 6] [110234] +11:02:38 [ 13] [ 4] [0320] +11:02:38 [ 15] [ 4] [0320] +11:02:38 [ 18] [ 4] [6011] +11:02:38 [ 22] [ 3] [900] +11:02:38 [ 25] [ 2] [02] +11:02:38 [ 28] [ 9] [D00002000] +11:02:38 [ 32] [ 6] [621354] +11:02:38 [ 35] [ 27] [1808930200038628=1803500799] +11:02:38 [ 37] [ 12] [507903883671] +11:02:38 [ 41] [ 8] [01010400] +11:02:38 [ 42] [ 15] [NATIVE ] +11:02:38 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +11:02:38 [ 49] [ 3] [418] +11:02:38 [ 52] [ 16] [EA2773D0C2146C8B] +11:02:38 ============================================================================ +11:02:38 + + +waiting on router queue for slot.... +11:02:38 Sending to : +11:02:38 ============================================================================ +11:02:38 ============================================================================ +11:02:38 Slot Id : <432> +11:02:38 Transaction Type : REQUEST +11:02:38 Received From : +11:02:38 ============================================================================ +11:02:38 FNo. Len. Field Value +11:02:38 ============================================================================ +11:02:38 [ 1] [ 4] [0200] +11:02:38 [ 2] [ 16] [1808930200038628] +11:02:38 [ 3] [ 6] [011000] +11:02:38 [ 4] [ 12] [000100000000] +11:02:38 [ 7] [ 10] [0320110234] +11:02:38 [ 11] [ 6] [723423] +11:02:38 [ 12] [ 6] [110234] +11:02:38 [ 13] [ 4] [0320] +11:02:38 [ 15] [ 4] [0320] +11:02:38 [ 18] [ 4] [6011] +11:02:38 [ 22] [ 3] [900] +11:02:38 [ 25] [ 2] [02] +11:02:38 [ 28] [ 9] [D00002000] +11:02:38 [ 32] [ 6] [621354] +11:02:38 [ 35] [ 27] [1808930200038628=1803500799] +11:02:38 [ 37] [ 12] [507903883671] +11:02:38 [ 41] [ 8] [01010400] +11:02:38 [ 42] [ 15] [NATIVE ] +11:02:38 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +11:02:38 [ 49] [ 3] [418] +11:02:38 [ 52] [ 16] [75D5158FABE48BD6] +11:02:38 ============================================================================ +11:02:38 + + +waiting on router queue for slot.... +11:02:38 Sending to : <2> +11:02:38 ============================================================================ +11:02:38 ============================================================================ +11:02:38 Slot Id : <482> +11:02:38 Transaction Type : REQUEST +11:02:38 Received From : +11:02:38 ============================================================================ +11:02:38 FNo. Len. Field Value +11:02:38 ============================================================================ +11:02:38 [ 1] [ 4] [0800] +11:02:38 [ 7] [ 10] [0320040144] +11:02:38 [ 11] [ 6] [155994] +11:02:38 [ 70] [ 3] [301] +11:02:38 ============================================================================ +11:02:38 + + +waiting on router queue for slot.... +11:02:38 Sending to : +11:02:38 ============================================================================ +11:02:38 ============================================================================ +11:02:38 Slot Id : <482> +11:02:38 Transaction Type : RESPONSE +11:02:38 Received From : +11:02:38 ============================================================================ +11:02:38 FNo. Len. Field Value +11:02:38 ============================================================================ +11:02:38 [ 1] [ 4] [0810] +11:02:38 [ 7] [ 10] [0320040144] +11:02:38 [ 11] [ 6] [155994] +11:02:38 [ 39] [ 2] [00] +11:02:38 [ 70] [ 3] [301] +11:02:38 ============================================================================ +11:02:38 Calculate Source COMM Id = 2 +11:02:38 ============================================================================ +11:02:38 + + +waiting on router queue for slot.... +11:02:44 ============================================================================ +11:02:44 Slot Id : <432> +11:02:44 Transaction Type : RESPONSE +11:02:44 Received From : +11:02:44 ============================================================================ +11:02:44 FNo. Len. Field Value +11:02:44 ============================================================================ +11:02:44 [ 1] [ 4] [0210] +11:02:44 [ 2] [ 16] [1808930200038628] +11:02:44 [ 3] [ 6] [011000] +11:02:44 [ 4] [ 12] [000100000000] +11:02:44 [ 6] [ 12] [000100000000] +11:02:44 [ 7] [ 10] [0320110234] +11:02:44 [ 11] [ 6] [723423] +11:02:44 [ 12] [ 6] [110234] +11:02:44 [ 13] [ 4] [0320] +11:02:44 [ 18] [ 4] [6011] +11:02:44 [ 19] [ 3] [418] +11:02:44 [ 22] [ 3] [021] +11:02:44 [ 32] [ 6] [621354] +11:02:44 [ 35] [ 27] [1808930200038628=1803500799] +11:02:44 [ 37] [ 12] [507903883671] +11:02:44 [ 38] [ 6] [723423] +11:02:44 [ 39] [ 2] [00] +11:02:44 [ 41] [ 8] [01010400] +11:02:44 [ 49] [ 3] [418] +11:02:44 [ 52] [ 16] [75D5158FABE48BD6] +11:02:44 [ 54] [ 20] [1001418C000703455700] +11:02:44 ============================================================================ +11:02:44 Sending to : +11:02:44 ============================================================================ +11:02:44 + + +waiting on router queue for slot.... +11:02:45 ============================================================================ +11:02:45 Slot Id : <495> +11:02:45 Transaction Type : REQUEST +11:02:45 Received From : +11:02:45 ============================================================================ +11:02:45 FNo. Len. Field Value +11:02:45 ============================================================================ +11:02:45 [ 1] [ 4] [0200] +11:02:45 [ 2] [ 16] [6213544001557443] +11:02:45 [ 3] [ 6] [010000] +11:02:45 [ 4] [ 12] [000005000000] +11:02:45 [ 7] [ 10] [0320110036] +11:02:45 [ 11] [ 6] [940144] +11:02:45 [ 12] [ 6] [110036] +11:02:45 [ 13] [ 4] [0320] +11:02:45 [ 15] [ 4] [0320] +11:02:45 [ 18] [ 4] [6011] +11:02:45 [ 19] [ 3] [418] +11:02:45 [ 22] [ 3] [021] +11:02:45 [ 25] [ 2] [01] +11:02:45 [ 28] [ 9] [D00002000] +11:02:45 [ 32] [ 6] [668899] +11:02:45 [ 35] [ 32] [6213544001557443=491212015744437] +11:02:45 [ 37] [ 12] [507900844878] +11:02:45 [ 41] [ 8] [03015003] +11:02:45 [ 42] [ 15] [APT ] +11:02:45 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +11:02:45 [ 49] [ 3] [418] +11:02:45 [ 52] [ 16] [453A511892538329] +11:02:45 ============================================================================ +11:02:45 + + +waiting on router queue for slot.... +11:02:45 Sending to : +11:02:45 ============================================================================ +11:02:45 Sending to : +11:02:45 ============================================================================ +11:02:45 ============================================================================ +11:02:45 Slot Id : <495> +11:02:45 Transaction Type : REQUEST +11:02:45 Received From : +11:02:45 ============================================================================ +11:02:45 FNo. Len. Field Value +11:02:45 ============================================================================ +11:02:45 [ 1] [ 4] [0200] +11:02:45 [ 2] [ 16] [6213544001557443] +11:02:45 [ 3] [ 6] [010000] +11:02:45 [ 4] [ 12] [000005000000] +11:02:45 [ 7] [ 10] [0320110036] +11:02:45 [ 11] [ 6] [940144] +11:02:45 [ 12] [ 6] [110036] +11:02:45 [ 13] [ 4] [0320] +11:02:45 [ 15] [ 4] [0320] +11:02:45 [ 18] [ 4] [6011] +11:02:45 [ 19] [ 3] [418] +11:02:45 [ 22] [ 3] [021] +11:02:45 [ 25] [ 2] [01] +11:02:45 [ 28] [ 9] [D00002000] +11:02:45 [ 32] [ 6] [668899] +11:02:45 [ 35] [ 32] [6213544001557443=491212015744437] +11:02:45 [ 37] [ 12] [507900844878] +11:02:45 [ 41] [ 8] [03015003] +11:02:45 [ 42] [ 15] [APT ] +11:02:45 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +11:02:45 [ 49] [ 3] [418] +11:02:45 [ 52] [ 16] [453A511892538329] +11:02:45 ============================================================================ +11:02:45 + + +waiting on router queue for slot.... +11:02:45 Sending to : +11:02:45 ============================================================================ +11:02:45 ============================================================================ +11:02:45 Slot Id : <495> +11:02:45 Transaction Type : REQUEST +11:02:45 Received From : +11:02:45 ============================================================================ +11:02:45 FNo. Len. Field Value +11:02:45 ============================================================================ +11:02:45 [ 1] [ 4] [0200] +11:02:45 [ 2] [ 16] [6213544001557443] +11:02:45 [ 3] [ 6] [010000] +11:02:45 [ 4] [ 12] [000005000000] +11:02:45 [ 7] [ 10] [0320110036] +11:02:45 [ 11] [ 6] [940144] +11:02:45 [ 12] [ 6] [110036] +11:02:45 [ 13] [ 4] [0320] +11:02:45 [ 15] [ 4] [0320] +11:02:45 [ 18] [ 4] [6011] +11:02:45 [ 19] [ 3] [418] +11:02:45 [ 22] [ 3] [021] +11:02:45 [ 25] [ 2] [01] +11:02:45 [ 28] [ 9] [D00002000] +11:02:45 [ 32] [ 6] [668899] +11:02:45 [ 35] [ 32] [6213544001557443=491212015744437] +11:02:45 [ 37] [ 12] [507900844878] +11:02:45 [ 41] [ 8] [03015003] +11:02:45 [ 42] [ 15] [APT ] +11:02:45 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +11:02:45 [ 49] [ 3] [418] +11:02:45 [ 52] [ 16] [350B7C893FE4AA4E] +11:02:45 ============================================================================ +11:02:45 + + +waiting on router queue for slot.... +11:02:45 Sending to : <0> +11:02:45 ============================================================================ +11:02:45 ============================================================================ +11:02:45 Slot Id : <432> +11:02:45 Transaction Type : RESPONSE +11:02:45 Received From : +11:02:45 ============================================================================ +11:02:45 FNo. Len. Field Value +11:02:45 ============================================================================ +11:02:45 [ 1] [ 4] [0210] +11:02:45 [ 2] [ 16] [1808930200038628] +11:02:45 [ 3] [ 6] [011000] +11:02:45 [ 4] [ 12] [000100000000] +11:02:45 [ 6] [ 12] [000100000000] +11:02:45 [ 7] [ 10] [0320110234] +11:02:45 [ 11] [ 6] [723423] +11:02:45 [ 12] [ 6] [110234] +11:02:45 [ 13] [ 4] [0320] +11:02:45 [ 18] [ 4] [6011] +11:02:45 [ 19] [ 3] [418] +11:02:45 [ 22] [ 3] [021] +11:02:45 [ 32] [ 6] [621354] +11:02:45 [ 35] [ 27] [1808930200038628=1803500799] +11:02:45 [ 37] [ 12] [507903883671] +11:02:45 [ 38] [ 6] [723423] +11:02:45 [ 39] [ 2] [00] +11:02:45 [ 41] [ 8] [01010400] +11:02:45 [ 49] [ 3] [418] +11:02:45 [ 52] [ 16] [75D5158FABE48BD6] +11:02:45 [ 54] [ 20] [1001418C000703455700] +11:02:45 ============================================================================ +11:02:45 Calculate Source COMM Id = 0 +11:02:45 ============================================================================ +11:02:45 + + +waiting on router queue for slot.... +11:02:46 ============================================================================ +11:02:46 Slot Id : <495> +11:02:46 Transaction Type : RESPONSE +11:02:46 Received From : +11:02:46 ============================================================================ +11:02:46 FNo. Len. Field Value +11:02:46 ============================================================================ +11:02:46 [ 1] [ 4] [0210] +11:02:46 [ 2] [ 16] [6213544001557443] +11:02:46 [ 3] [ 6] [010000] +11:02:46 [ 4] [ 12] [000005000000] +11:02:46 [ 7] [ 10] [0320110036] +11:02:46 [ 11] [ 6] [940144] +11:02:46 [ 12] [ 6] [110036] +11:02:46 [ 13] [ 4] [0320] +11:02:46 [ 15] [ 4] [0320] +11:02:46 [ 18] [ 4] [6011] +11:02:46 [ 19] [ 3] [418] +11:02:46 [ 32] [ 6] [668899] +11:02:46 [ 35] [ 32] [6213544001557443=491212015744437] +11:02:46 [ 37] [ 12] [507900844878] +11:02:46 [ 38] [ 6] [320763] +11:02:46 [ 39] [ 2] [00] +11:02:46 [ 41] [ 8] [03015003] +11:02:46 [ 49] [ 3] [418] +11:02:46 [ 54] [ 40] [0001418C0000507859790002418C000050785979] +11:02:46 ============================================================================ +11:02:46 Sending to : +11:02:46 ============================================================================ +11:02:46 + + +waiting on router queue for slot.... +11:02:47 ============================================================================ +11:02:47 Slot Id : <495> +11:02:47 Transaction Type : RESPONSE +11:02:47 Received From : +11:02:47 ============================================================================ +11:02:47 FNo. Len. Field Value +11:02:47 ============================================================================ +11:02:47 [ 1] [ 4] [0210] +11:02:47 [ 2] [ 16] [6213544001557443] +11:02:47 [ 3] [ 6] [010000] +11:02:47 [ 4] [ 12] [000005000000] +11:02:47 [ 7] [ 10] [0320110036] +11:02:47 [ 11] [ 6] [940144] +11:02:47 [ 12] [ 6] [110036] +11:02:47 [ 13] [ 4] [0320] +11:02:47 [ 15] [ 4] [0320] +11:02:47 [ 18] [ 4] [6011] +11:02:47 [ 19] [ 3] [418] +11:02:47 [ 32] [ 6] [668899] +11:02:47 [ 35] [ 32] [6213544001557443=491212015744437] +11:02:47 [ 37] [ 12] [507900844878] +11:02:47 [ 38] [ 6] [320763] +11:02:47 [ 39] [ 2] [00] +11:02:47 [ 41] [ 8] [03015003] +11:02:47 [ 49] [ 3] [418] +11:02:47 [ 54] [ 40] [0001418C0000507859790002418C000050785979] +11:02:47 ============================================================================ +11:02:47 Calculate Source COMM Id = 4 +11:02:47 ============================================================================ +11:02:47 + + +waiting on router queue for slot.... +11:02:53 ============================================================================ +11:02:53 Slot Id : <453> +11:02:53 Transaction Type : REQUEST +11:02:53 Received From : +11:02:53 ============================================================================ +11:02:53 FNo. Len. Field Value +11:02:53 ============================================================================ +11:02:53 [ 1] [ 4] [0800] +11:02:53 [ 7] [ 10] [0320040200] +11:02:53 [ 11] [ 6] [155995] +11:02:53 [ 70] [ 3] [301] +11:02:53 ============================================================================ +11:02:53 + + +waiting on router queue for slot.... +11:02:53 Sending to : +11:02:53 ============================================================================ +11:02:53 ============================================================================ +11:02:53 Slot Id : <453> +11:02:53 Transaction Type : RESPONSE +11:02:53 Received From : +11:02:53 ============================================================================ +11:02:53 FNo. Len. Field Value +11:02:53 ============================================================================ +11:02:53 [ 1] [ 4] [0810] +11:02:53 [ 7] [ 10] [0320040200] +11:02:53 [ 11] [ 6] [155995] +11:02:53 [ 39] [ 2] [00] +11:02:53 [ 70] [ 3] [301] +11:02:53 ============================================================================ +11:02:53 Calculate Source COMM Id = 2 +11:02:53 ============================================================================ +11:02:53 + + +waiting on router queue for slot.... +11:03:00 ============================================================================ +11:03:00 Slot Id : <488> +11:03:00 Transaction Type : REQUEST +11:03:00 Received From : +11:03:00 ============================================================================ +11:03:00 FNo. Len. Field Value +11:03:00 ============================================================================ +11:03:00 [ 1] [ 4] [0800] +11:03:00 [ 2] [ 5] [02531] +11:03:00 [ 3] [ 6] [579118] +11:03:00 [ 7] [ 10] [0320040300] +11:03:00 [ 11] [ 6] [807053] +11:03:00 [ 15] [ 10] [0320040300] +11:03:00 [ 37] [ 11] [57911807053] +11:03:00 [ 70] [ 3] [001] +11:03:00 ============================================================================ +11:03:00 + + +waiting on router queue for slot.... +11:03:00 ============================================================================ +11:03:00 Slot Id : <488> +11:03:00 Transaction Type : RESPONSE +11:03:00 Received From : +11:03:00 ============================================================================ +11:03:00 FNo. Len. Field Value +11:03:00 ============================================================================ +11:03:00 [ 1] [ 4] [0810] +11:03:00 [ 7] [ 10] [0320040300] +11:03:00 [ 11] [ 6] [807053] +11:03:00 [ 15] [ 4] [0320] +11:03:00 [ 37] [ 12] [57911807053] +11:03:00 [ 39] [ 2] [00] +11:03:00 [ 70] [ 3] [001] +11:03:00 ============================================================================ +11:03:00 Sending to : +11:03:00 ============================================================================ +11:03:00 + + +waiting on router queue for slot.... +11:03:04 ============================================================================ +11:03:04 Slot Id : <470> +11:03:04 Transaction Type : REQUEST +11:03:04 Received From : +11:03:04 ============================================================================ +11:03:04 FNo. Len. Field Value +11:03:04 ============================================================================ +11:03:04 [ 1] [ 4] [0200] +11:03:04 [ 2] [ 16] [6213541000375231] +11:03:04 [ 3] [ 6] [011000] +11:03:04 [ 4] [ 12] [000040000000] +11:03:04 [ 7] [ 10] [0320111051] +11:03:04 [ 11] [ 6] [168903] +11:03:04 [ 12] [ 6] [111051] +11:03:04 [ 13] [ 4] [0320] +11:03:04 [ 14] [ 4] [4912] +11:03:04 [ 15] [ 4] [0320] +11:03:04 [ 18] [ 4] [6011] +11:03:04 [ 22] [ 3] [900] +11:03:04 [ 25] [ 2] [02] +11:03:04 [ 28] [ 9] [D00002000] +11:03:04 [ 32] [ 6] [220699] +11:03:04 [ 35] [ 32] [6213541000375231=491212017523147] +11:03:04 [ 37] [ 12] [507900026323] +11:03:04 [ 41] [ 8] [01000200] +11:03:04 [ 42] [ 15] [APTRA ] +11:03:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:03:04 [ 49] [ 3] [418] +11:03:04 [ 52] [ 16] [AC0F87469851A999] +11:03:04 ============================================================================ +11:03:04 + + +waiting on router queue for slot.... +11:03:04 Sending to : +11:03:04 ============================================================================ +11:03:04 Sending to : +11:03:04 ============================================================================ +11:03:04 ============================================================================ +11:03:04 Slot Id : <484> +11:03:04 Transaction Type : REQUEST +11:03:04 Received From : +11:03:04 ============================================================================ +11:03:04 FNo. Len. Field Value +11:03:04 ============================================================================ +11:03:04 [ 1] [ 4] [0800] +11:03:04 [ 7] [ 10] [0320040211] +11:03:04 [ 11] [ 6] [155996] +11:03:04 [ 70] [ 3] [301] +11:03:04 ============================================================================ +11:03:04 + + +waiting on router queue for slot.... +11:03:04 Sending to : +11:03:04 ============================================================================ +11:03:04 ============================================================================ +11:03:04 Slot Id : <484> +11:03:04 Transaction Type : RESPONSE +11:03:04 Received From : +11:03:04 ============================================================================ +11:03:04 FNo. Len. Field Value +11:03:04 ============================================================================ +11:03:04 [ 1] [ 4] [0810] +11:03:04 [ 7] [ 10] [0320040211] +11:03:04 [ 11] [ 6] [155996] +11:03:04 [ 39] [ 2] [00] +11:03:04 [ 70] [ 3] [301] +11:03:04 ============================================================================ +11:03:04 Calculate Source COMM Id = 2 +11:03:04 ============================================================================ +11:03:04 + + +waiting on router queue for slot.... +11:03:04 ============================================================================ +11:03:04 Slot Id : <470> +11:03:04 Transaction Type : REQUEST +11:03:04 Received From : +11:03:04 ============================================================================ +11:03:04 FNo. Len. Field Value +11:03:04 ============================================================================ +11:03:04 [ 1] [ 4] [0200] +11:03:04 [ 2] [ 16] [6213541000375231] +11:03:04 [ 3] [ 6] [011000] +11:03:04 [ 4] [ 12] [000040000000] +11:03:04 [ 7] [ 10] [0320111051] +11:03:04 [ 11] [ 6] [168903] +11:03:04 [ 12] [ 6] [111051] +11:03:04 [ 13] [ 4] [0320] +11:03:04 [ 14] [ 4] [4912] +11:03:04 [ 15] [ 4] [0320] +11:03:04 [ 18] [ 4] [6011] +11:03:04 [ 22] [ 3] [900] +11:03:04 [ 25] [ 2] [02] +11:03:04 [ 28] [ 9] [D00002000] +11:03:04 [ 32] [ 6] [220699] +11:03:04 [ 35] [ 32] [6213541000375231=491212017523147] +11:03:04 [ 37] [ 12] [507900026323] +11:03:04 [ 41] [ 8] [01000200] +11:03:04 [ 42] [ 15] [APTRA ] +11:03:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:03:04 [ 49] [ 3] [418] +11:03:04 [ 52] [ 16] [AC0F87469851A999] +11:03:04 ============================================================================ +11:03:04 + + +waiting on router queue for slot.... +11:03:04 Sending to : +11:03:04 ============================================================================ +11:03:04 ============================================================================ +11:03:04 Slot Id : <470> +11:03:04 Transaction Type : REQUEST +11:03:04 Received From : +11:03:04 ============================================================================ +11:03:04 FNo. Len. Field Value +11:03:04 ============================================================================ +11:03:04 [ 1] [ 4] [0200] +11:03:04 [ 2] [ 16] [6213541000375231] +11:03:04 [ 3] [ 6] [011000] +11:03:04 [ 4] [ 12] [000040000000] +11:03:04 [ 7] [ 10] [0320111051] +11:03:04 [ 11] [ 6] [168903] +11:03:04 [ 12] [ 6] [111051] +11:03:04 [ 13] [ 4] [0320] +11:03:04 [ 14] [ 4] [4912] +11:03:04 [ 15] [ 4] [0320] +11:03:04 [ 18] [ 4] [6011] +11:03:04 [ 22] [ 3] [900] +11:03:04 [ 25] [ 2] [02] +11:03:04 [ 28] [ 9] [D00002000] +11:03:04 [ 32] [ 6] [220699] +11:03:04 [ 35] [ 32] [6213541000375231=491212017523147] +11:03:04 [ 37] [ 12] [507900026323] +11:03:04 [ 41] [ 8] [01000200] +11:03:04 [ 42] [ 15] [APTRA ] +11:03:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:03:04 [ 49] [ 3] [418] +11:03:04 [ 52] [ 16] [6DE2B92ED3AAD7AA] +11:03:04 ============================================================================ +11:03:04 + + +waiting on router queue for slot.... +11:03:04 Sending to : <0> +11:03:04 ============================================================================ +11:03:05 ============================================================================ +11:03:05 Slot Id : <470> +11:03:05 Transaction Type : RESPONSE +11:03:05 Received From : +11:03:05 ============================================================================ +11:03:05 FNo. Len. Field Value +11:03:05 ============================================================================ +11:03:05 [ 1] [ 4] [0210] +11:03:05 [ 2] [ 16] [6213541000375231] +11:03:05 [ 3] [ 6] [011000] +11:03:05 [ 4] [ 12] [000040000000] +11:03:05 [ 7] [ 10] [0320111051] +11:03:05 [ 11] [ 6] [168903] +11:03:05 [ 12] [ 6] [111051] +11:03:05 [ 13] [ 4] [0320] +11:03:05 [ 15] [ 4] [0320] +11:03:05 [ 18] [ 4] [6011] +11:03:05 [ 32] [ 6] [220699] +11:03:05 [ 35] [ 32] [6213541000375231=491212017523147] +11:03:05 [ 37] [ 12] [507900026323] +11:03:05 [ 38] [ 6] [540248] +11:03:05 [ 39] [ 2] [00] +11:03:05 [ 41] [ 8] [01000200] +11:03:05 [ 49] [ 3] [418] +11:03:05 [ 54] [ 40] [1001418C0000111671241002418C000011167124] +11:03:05 ============================================================================ +11:03:05 Sending to : +11:03:05 ============================================================================ +11:03:05 + + +waiting on router queue for slot.... +11:03:06 ============================================================================ +11:03:06 Slot Id : <470> +11:03:06 Transaction Type : RESPONSE +11:03:06 Received From : +11:03:06 ============================================================================ +11:03:06 FNo. Len. Field Value +11:03:06 ============================================================================ +11:03:06 [ 1] [ 4] [0210] +11:03:06 [ 2] [ 16] [6213541000375231] +11:03:06 [ 3] [ 6] [011000] +11:03:06 [ 4] [ 12] [000040000000] +11:03:06 [ 7] [ 10] [0320111051] +11:03:06 [ 11] [ 6] [168903] +11:03:06 [ 12] [ 6] [111051] +11:03:06 [ 13] [ 4] [0320] +11:03:06 [ 15] [ 4] [0320] +11:03:06 [ 18] [ 4] [6011] +11:03:06 [ 32] [ 6] [220699] +11:03:06 [ 35] [ 32] [6213541000375231=491212017523147] +11:03:06 [ 37] [ 12] [507900026323] +11:03:06 [ 38] [ 6] [540248] +11:03:06 [ 39] [ 2] [00] +11:03:06 [ 41] [ 8] [01000200] +11:03:06 [ 49] [ 3] [418] +11:03:06 [ 54] [ 40] [1001418C0000111671241002418C000011167124] +11:03:06 ============================================================================ +11:03:06 Calculate Source COMM Id = 1 +11:03:06 ============================================================================ +11:03:06 + + +waiting on router queue for slot.... +11:03:15 ============================================================================ +11:03:15 Slot Id : <490> +11:03:15 Transaction Type : REQUEST +11:03:15 Received From : +11:03:15 ============================================================================ +11:03:15 FNo. Len. Field Value +11:03:15 ============================================================================ +11:03:15 [ 1] [ 4] [0800] +11:03:15 [ 7] [ 10] [0320040223] +11:03:15 [ 11] [ 6] [155997] +11:03:15 [ 70] [ 3] [301] +11:03:15 ============================================================================ +11:03:15 + + +waiting on router queue for slot.... +11:03:15 Sending to : +11:03:15 ============================================================================ +11:03:15 ============================================================================ +11:03:15 Slot Id : <490> +11:03:15 Transaction Type : RESPONSE +11:03:15 Received From : +11:03:15 ============================================================================ +11:03:15 FNo. Len. Field Value +11:03:15 ============================================================================ +11:03:15 [ 1] [ 4] [0810] +11:03:15 [ 7] [ 10] [0320040223] +11:03:15 [ 11] [ 6] [155997] +11:03:15 [ 39] [ 2] [00] +11:03:15 [ 70] [ 3] [301] +11:03:15 ============================================================================ +11:03:15 Calculate Source COMM Id = 2 +11:03:15 ============================================================================ +11:03:15 + + +waiting on router queue for slot.... +11:03:18 ============================================================================ +11:03:18 Slot Id : <463> +11:03:18 Transaction Type : REQUEST +11:03:18 Received From : +11:03:18 ============================================================================ +11:03:18 FNo. Len. Field Value +11:03:18 ============================================================================ +11:03:18 [ 1] [ 4] [0200] +11:03:18 [ 2] [ 16] [2206990000091827] +11:03:18 [ 3] [ 6] [302000] +11:03:18 [ 4] [ 12] [000000000000] +11:03:18 [ 7] [ 10] [0320110314] +11:03:18 [ 11] [ 6] [723576] +11:03:18 [ 12] [ 6] [110314] +11:03:18 [ 13] [ 4] [0320] +11:03:18 [ 15] [ 4] [0320] +11:03:18 [ 18] [ 4] [6011] +11:03:18 [ 22] [ 3] [900] +11:03:18 [ 25] [ 2] [02] +11:03:18 [ 28] [ 9] [D00000000] +11:03:18 [ 32] [ 6] [621354] +11:03:18 [ 35] [ 32] [2206990000091827=971012619129539] +11:03:18 [ 37] [ 12] [507904119744] +11:03:18 [ 41] [ 8] [08000800] +11:03:18 [ 42] [ 15] [NATIVE ] +11:03:18 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +11:03:18 [ 49] [ 3] [418] +11:03:18 [ 52] [ 16] [9153DB542DBB1EE4] +11:03:18 ============================================================================ +11:03:18 + + +waiting on router queue for slot.... +11:03:18 Sending to : +11:03:18 ============================================================================ +11:03:18 Sending to : +11:03:18 ============================================================================ +11:03:19 ============================================================================ +11:03:19 Slot Id : <463> +11:03:19 Transaction Type : REQUEST +11:03:19 Received From : +11:03:19 ============================================================================ +11:03:19 FNo. Len. Field Value +11:03:19 ============================================================================ +11:03:19 [ 1] [ 4] [0200] +11:03:19 [ 2] [ 16] [2206990000091827] +11:03:19 [ 3] [ 6] [302000] +11:03:19 [ 4] [ 12] [000000000000] +11:03:19 [ 7] [ 10] [0320110314] +11:03:19 [ 11] [ 6] [723576] +11:03:19 [ 12] [ 6] [110314] +11:03:19 [ 13] [ 4] [0320] +11:03:19 [ 15] [ 4] [0320] +11:03:19 [ 18] [ 4] [6011] +11:03:19 [ 22] [ 3] [900] +11:03:19 [ 25] [ 2] [02] +11:03:19 [ 28] [ 9] [D00000000] +11:03:19 [ 32] [ 6] [621354] +11:03:19 [ 35] [ 32] [2206990000091827=971012619129539] +11:03:19 [ 37] [ 12] [507904119744] +11:03:19 [ 41] [ 8] [08000800] +11:03:19 [ 42] [ 15] [NATIVE ] +11:03:19 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +11:03:19 [ 49] [ 3] [418] +11:03:19 [ 52] [ 16] [9153DB542DBB1EE4] +11:03:19 ============================================================================ +11:03:19 + + +waiting on router queue for slot.... +11:03:19 Sending to : +11:03:19 ============================================================================ +11:03:19 ============================================================================ +11:03:19 Slot Id : <463> +11:03:19 Transaction Type : REQUEST +11:03:19 Received From : +11:03:19 ============================================================================ +11:03:19 FNo. Len. Field Value +11:03:19 ============================================================================ +11:03:19 [ 1] [ 4] [0200] +11:03:19 [ 2] [ 16] [2206990000091827] +11:03:19 [ 3] [ 6] [302000] +11:03:19 [ 4] [ 12] [000000000000] +11:03:19 [ 7] [ 10] [0320110314] +11:03:19 [ 11] [ 6] [723576] +11:03:19 [ 12] [ 6] [110314] +11:03:19 [ 13] [ 4] [0320] +11:03:19 [ 15] [ 4] [0320] +11:03:19 [ 18] [ 4] [6011] +11:03:19 [ 22] [ 3] [900] +11:03:19 [ 25] [ 2] [02] +11:03:19 [ 28] [ 9] [D00000000] +11:03:19 [ 32] [ 6] [621354] +11:03:19 [ 35] [ 32] [2206990000091827=971012619129539] +11:03:19 [ 37] [ 12] [507904119744] +11:03:19 [ 41] [ 8] [08000800] +11:03:19 [ 42] [ 15] [NATIVE ] +11:03:19 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +11:03:19 [ 49] [ 3] [418] +11:03:19 [ 52] [ 16] [C9D35285F0D20C6F] +11:03:19 ============================================================================ +11:03:19 + + +waiting on router queue for slot.... +11:03:19 Sending to : <1> +11:03:19 ============================================================================ +11:03:20 ============================================================================ +11:03:20 Slot Id : <463> +11:03:20 Transaction Type : RESPONSE +11:03:20 Received From : +11:03:20 ============================================================================ +11:03:20 FNo. Len. Field Value +11:03:20 ============================================================================ +11:03:20 [ 1] [ 4] [0210] +11:03:20 [ 2] [ 16] [2206990000091827] +11:03:20 [ 3] [ 6] [302000] +11:03:20 [ 4] [ 12] [000000000000] +11:03:20 [ 7] [ 10] [0320110314] +11:03:20 [ 11] [ 6] [723576] +11:03:20 [ 12] [ 6] [110314] +11:03:20 [ 13] [ 4] [0320] +11:03:20 [ 15] [ 4] [0320] +11:03:20 [ 18] [ 4] [6011] +11:03:20 [ 32] [ 6] [621354] +11:03:20 [ 35] [ 32] [2206990000091827=971012619129539] +11:03:20 [ 37] [ 12] [507904119744] +11:03:20 [ 38] [ 6] [422029] +11:03:20 [ 39] [ 2] [00] +11:03:20 [ 41] [ 8] [08000800] +11:03:20 [ 49] [ 3] [418] +11:03:20 [ 54] [ 40] [2001418C0000076428002002418C000007642800] +11:03:20 ============================================================================ +11:03:20 Sending to : +11:03:20 ============================================================================ +11:03:20 + + +waiting on router queue for slot.... +11:03:22 ============================================================================ +11:03:22 Slot Id : <463> +11:03:22 Transaction Type : RESPONSE +11:03:22 Received From : +11:03:22 ============================================================================ +11:03:22 FNo. Len. Field Value +11:03:22 ============================================================================ +11:03:22 [ 1] [ 4] [0210] +11:03:22 [ 2] [ 16] [2206990000091827] +11:03:22 [ 3] [ 6] [302000] +11:03:22 [ 4] [ 12] [000000000000] +11:03:22 [ 7] [ 10] [0320110314] +11:03:22 [ 11] [ 6] [723576] +11:03:22 [ 12] [ 6] [110314] +11:03:22 [ 13] [ 4] [0320] +11:03:22 [ 15] [ 4] [0320] +11:03:22 [ 18] [ 4] [6011] +11:03:22 [ 32] [ 6] [621354] +11:03:22 [ 35] [ 32] [2206990000091827=971012619129539] +11:03:22 [ 37] [ 12] [507904119744] +11:03:22 [ 38] [ 6] [422029] +11:03:22 [ 39] [ 2] [00] +11:03:22 [ 41] [ 8] [08000800] +11:03:22 [ 49] [ 3] [418] +11:03:22 [ 54] [ 40] [2001418C0000076428002002418C000007642800] +11:03:22 ============================================================================ +11:03:22 Calculate Source COMM Id = 0 +11:03:22 ============================================================================ +11:03:22 + + +waiting on router queue for slot.... +11:03:24 ============================================================================ +11:03:24 Slot Id : <448> +11:03:24 Transaction Type : REQUEST +11:03:24 Received From : +11:03:24 ============================================================================ +11:03:24 FNo. Len. Field Value +11:03:24 ============================================================================ +11:03:24 [ 1] [ 4] [0200] +11:03:24 [ 2] [ 16] [6688990104459704] +11:03:24 [ 3] [ 6] [010000] +11:03:24 [ 4] [ 12] [000100000000] +11:03:24 [ 7] [ 10] [0320110320] +11:03:24 [ 11] [ 6] [723598] +11:03:24 [ 12] [ 6] [110320] +11:03:24 [ 13] [ 4] [0320] +11:03:24 [ 15] [ 4] [0320] +11:03:24 [ 18] [ 4] [6011] +11:03:24 [ 22] [ 3] [900] +11:03:24 [ 25] [ 2] [02] +11:03:24 [ 28] [ 9] [D00002000] +11:03:24 [ 32] [ 6] [621354] +11:03:24 [ 35] [ 37] [6688990104459704=43041231970467100000] +11:03:24 [ 37] [ 12] [507904322695] +11:03:24 [ 41] [ 8] [03003100] +11:03:24 [ 42] [ 15] [NATIVE ] +11:03:24 [ 43] [ 40] [Songkhone Unit Songkhone LAO] +11:03:24 [ 49] [ 3] [418] +11:03:24 [ 52] [ 16] [E0031E7397B4B2E6] +11:03:24 ============================================================================ +11:03:24 + + +waiting on router queue for slot.... +11:03:24 Sending to : +11:03:24 ============================================================================ +11:03:24 Sending to : +11:03:24 ============================================================================ +11:03:25 ============================================================================ +11:03:25 Slot Id : <448> +11:03:25 Transaction Type : REQUEST +11:03:25 Received From : +11:03:25 ============================================================================ +11:03:25 FNo. Len. Field Value +11:03:25 ============================================================================ +11:03:25 [ 1] [ 4] [0200] +11:03:25 [ 2] [ 16] [6688990104459704] +11:03:25 [ 3] [ 6] [010000] +11:03:25 [ 4] [ 12] [000100000000] +11:03:25 [ 7] [ 10] [0320110320] +11:03:25 [ 11] [ 6] [723598] +11:03:25 [ 12] [ 6] [110320] +11:03:25 [ 13] [ 4] [0320] +11:03:25 [ 15] [ 4] [0320] +11:03:25 [ 18] [ 4] [6011] +11:03:25 [ 22] [ 3] [900] +11:03:25 [ 25] [ 2] [02] +11:03:25 [ 28] [ 9] [D00002000] +11:03:25 [ 32] [ 6] [621354] +11:03:25 [ 35] [ 37] [6688990104459704=43041231970467100000] +11:03:25 [ 37] [ 12] [507904322695] +11:03:25 [ 41] [ 8] [03003100] +11:03:25 [ 42] [ 15] [NATIVE ] +11:03:25 [ 43] [ 40] [Songkhone Unit Songkhone LAO] +11:03:25 [ 49] [ 3] [418] +11:03:25 [ 52] [ 16] [E0031E7397B4B2E6] +11:03:25 ============================================================================ +11:03:25 + + +waiting on router queue for slot.... +11:03:25 Sending to : +11:03:25 ============================================================================ +11:03:25 ============================================================================ +11:03:25 Slot Id : <448> +11:03:25 Transaction Type : REQUEST +11:03:25 Received From : +11:03:25 ============================================================================ +11:03:25 FNo. Len. Field Value +11:03:25 ============================================================================ +11:03:25 [ 1] [ 4] [0200] +11:03:25 [ 2] [ 16] [6688990104459704] +11:03:25 [ 3] [ 6] [010000] +11:03:25 [ 4] [ 12] [000100000000] +11:03:25 [ 7] [ 10] [0320110320] +11:03:25 [ 11] [ 6] [723598] +11:03:25 [ 12] [ 6] [110320] +11:03:25 [ 13] [ 4] [0320] +11:03:25 [ 15] [ 4] [0320] +11:03:25 [ 18] [ 4] [6011] +11:03:25 [ 22] [ 3] [900] +11:03:25 [ 25] [ 2] [02] +11:03:25 [ 28] [ 9] [D00002000] +11:03:25 [ 32] [ 6] [621354] +11:03:25 [ 35] [ 37] [6688990104459704=43041231970467100000] +11:03:25 [ 37] [ 12] [507904322695] +11:03:25 [ 41] [ 8] [03003100] +11:03:25 [ 42] [ 15] [NATIVE ] +11:03:25 [ 43] [ 40] [Songkhone Unit Songkhone LAO] +11:03:25 [ 49] [ 3] [418] +11:03:25 [ 52] [ 16] [183A0F97BA5BE76C] +11:03:25 ============================================================================ +11:03:25 + + +waiting on router queue for slot.... +11:03:25 Sending to : <4> +11:03:25 ============================================================================ +11:03:25 ============================================================================ +11:03:25 Slot Id : <448> +11:03:25 Transaction Type : RESPONSE +11:03:25 Received From : +11:03:25 ============================================================================ +11:03:25 FNo. Len. Field Value +11:03:25 ============================================================================ +11:03:25 [ 1] [ 4] [0210] +11:03:25 [ 2] [ 16] [6688990104459704] +11:03:25 [ 3] [ 6] [010000] +11:03:25 [ 4] [ 12] [000100000000] +11:03:25 [ 11] [ 6] [723598] +11:03:25 [ 12] [ 6] [110320] +11:03:25 [ 15] [ 4] [0320] +11:03:25 [ 18] [ 4] [6011] +11:03:25 [ 32] [ 6] [621354] +11:03:25 [ 35] [ 37] [6688990104459704=43041231970467100000] +11:03:25 [ 37] [ 12] [507904322695] +11:03:25 [ 39] [ 2] [51] +11:03:25 [ 41] [ 8] [03003100] +11:03:25 [ 49] [ 3] [418] +11:03:25 [ 54] [ 0] [] +11:03:25 ============================================================================ +11:03:25 Sending to : +11:03:25 ============================================================================ +11:03:25 + + +waiting on router queue for slot.... +11:03:26 ============================================================================ +11:03:26 Slot Id : <480> +11:03:26 Transaction Type : REQUEST +11:03:26 Received From : +11:03:26 ============================================================================ +11:03:26 FNo. Len. Field Value +11:03:26 ============================================================================ +11:03:26 [ 1] [ 4] [0800] +11:03:26 [ 7] [ 10] [0320040234] +11:03:26 [ 11] [ 6] [155998] +11:03:26 [ 70] [ 3] [301] +11:03:26 ============================================================================ +11:03:26 + + +waiting on router queue for slot.... +11:03:26 Sending to : +11:03:26 ============================================================================ +11:03:26 ============================================================================ +11:03:26 Slot Id : <480> +11:03:26 Transaction Type : RESPONSE +11:03:26 Received From : +11:03:26 ============================================================================ +11:03:26 FNo. Len. Field Value +11:03:26 ============================================================================ +11:03:26 [ 1] [ 4] [0810] +11:03:26 [ 7] [ 10] [0320040234] +11:03:26 [ 11] [ 6] [155998] +11:03:26 [ 39] [ 2] [00] +11:03:26 [ 70] [ 3] [301] +11:03:26 ============================================================================ +11:03:26 Calculate Source COMM Id = 2 +11:03:26 ============================================================================ +11:03:26 + + +waiting on router queue for slot.... +11:03:26 ============================================================================ +11:03:26 Slot Id : <448> +11:03:26 Transaction Type : RESPONSE +11:03:26 Received From : +11:03:26 ============================================================================ +11:03:26 FNo. Len. Field Value +11:03:26 ============================================================================ +11:03:26 [ 1] [ 4] [0210] +11:03:26 [ 2] [ 16] [6688990104459704] +11:03:26 [ 3] [ 6] [010000] +11:03:26 [ 4] [ 12] [000100000000] +11:03:26 [ 11] [ 6] [723598] +11:03:26 [ 12] [ 6] [110320] +11:03:26 [ 15] [ 4] [0320] +11:03:26 [ 18] [ 4] [6011] +11:03:26 [ 32] [ 6] [621354] +11:03:26 [ 35] [ 37] [6688990104459704=43041231970467100000] +11:03:26 [ 37] [ 12] [507904322695] +11:03:26 [ 39] [ 2] [51] +11:03:26 [ 41] [ 8] [03003100] +11:03:26 [ 49] [ 3] [418] +11:03:26 [ 54] [ 0] [] +11:03:26 ============================================================================ +11:03:26 Calculate Source COMM Id = 0 +11:03:26 ============================================================================ +11:03:26 + + +waiting on router queue for slot.... +11:03:37 ============================================================================ +11:03:37 Slot Id : <471> +11:03:37 Transaction Type : REQUEST +11:03:37 Received From : +11:03:37 ============================================================================ +11:03:37 FNo. Len. Field Value +11:03:37 ============================================================================ +11:03:37 [ 1] [ 4] [0800] +11:03:37 [ 7] [ 10] [0320040245] +11:03:37 [ 11] [ 6] [155999] +11:03:37 [ 70] [ 3] [301] +11:03:37 ============================================================================ +11:03:37 + + +waiting on router queue for slot.... +11:03:37 Sending to : +11:03:37 ============================================================================ +11:03:37 ============================================================================ +11:03:37 Slot Id : <471> +11:03:37 Transaction Type : RESPONSE +11:03:37 Received From : +11:03:37 ============================================================================ +11:03:37 FNo. Len. Field Value +11:03:37 ============================================================================ +11:03:37 [ 1] [ 4] [0810] +11:03:37 [ 7] [ 10] [0320040245] +11:03:37 [ 11] [ 6] [155999] +11:03:37 [ 39] [ 2] [00] +11:03:37 [ 70] [ 3] [301] +11:03:37 ============================================================================ +11:03:37 Calculate Source COMM Id = 2 +11:03:37 ============================================================================ +11:03:37 + + +waiting on router queue for slot.... +11:03:40 ============================================================================ +11:03:40 Slot Id : <479> +11:03:40 Transaction Type : REQUEST +11:03:40 Received From : +11:03:40 ============================================================================ +11:03:40 FNo. Len. Field Value +11:03:40 ============================================================================ +11:03:40 [ 1] [ 4] [0200] +11:03:40 [ 2] [ 16] [6213548000319069] +11:03:40 [ 3] [ 6] [302000] +11:03:40 [ 7] [ 10] [0320040247] +11:03:40 [ 11] [ 6] [268334] +11:03:40 [ 12] [ 6] [110247] +11:03:40 [ 13] [ 4] [0320] +11:03:40 [ 14] [ 4] [1803] +11:03:40 [ 15] [ 4] [0320] +11:03:40 [ 18] [ 4] [6011] +11:03:40 [ 19] [ 3] [418] +11:03:40 [ 22] [ 3] [021] +11:03:40 [ 25] [ 2] [01] +11:03:40 [ 32] [ 6] [180893] +11:03:40 [ 35] [ 32] [6213548000319069=180312011906394] +11:03:40 [ 37] [ 12] [507904268334] +11:03:40 [ 41] [ 8] [0441VT52] +11:03:40 [ 42] [ 15] [999999 ] +11:03:40 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:03:40 [ 49] [ 3] [418] +11:03:40 [ 52] [ 16] [B3653ABA91E3B076] +11:03:40 ============================================================================ +11:03:40 + + +waiting on router queue for slot.... +11:03:40 Sending to : +11:03:40 ============================================================================ +11:03:40 Sending to : +11:03:40 ============================================================================ +11:03:40 ============================================================================ +11:03:40 Slot Id : <479> +11:03:40 Transaction Type : REQUEST +11:03:40 Received From : +11:03:40 ============================================================================ +11:03:40 FNo. Len. Field Value +11:03:40 ============================================================================ +11:03:40 [ 1] [ 4] [0200] +11:03:40 [ 2] [ 16] [6213548000319069] +11:03:40 [ 3] [ 6] [302000] +11:03:40 [ 7] [ 10] [0320040247] +11:03:40 [ 11] [ 6] [268334] +11:03:40 [ 12] [ 6] [110247] +11:03:40 [ 13] [ 4] [0320] +11:03:40 [ 14] [ 4] [1803] +11:03:40 [ 15] [ 4] [0320] +11:03:40 [ 18] [ 4] [6011] +11:03:40 [ 19] [ 3] [418] +11:03:40 [ 22] [ 3] [021] +11:03:40 [ 25] [ 2] [01] +11:03:40 [ 32] [ 6] [180893] +11:03:40 [ 35] [ 32] [6213548000319069=180312011906394] +11:03:40 [ 37] [ 12] [507904268334] +11:03:40 [ 41] [ 8] [0441VT52] +11:03:40 [ 42] [ 15] [999999 ] +11:03:40 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:03:40 [ 49] [ 3] [418] +11:03:40 [ 52] [ 16] [B3653ABA91E3B076] +11:03:40 ============================================================================ +11:03:40 + + +waiting on router queue for slot.... +11:03:40 Sending to : +11:03:40 ============================================================================ +11:03:40 ============================================================================ +11:03:40 Slot Id : <479> +11:03:40 Transaction Type : REQUEST +11:03:40 Received From : +11:03:40 ============================================================================ +11:03:40 FNo. Len. Field Value +11:03:40 ============================================================================ +11:03:40 [ 1] [ 4] [0200] +11:03:40 [ 2] [ 16] [6213548000319069] +11:03:40 [ 3] [ 6] [302000] +11:03:40 [ 7] [ 10] [0320040247] +11:03:40 [ 11] [ 6] [268334] +11:03:40 [ 12] [ 6] [110247] +11:03:40 [ 13] [ 4] [0320] +11:03:40 [ 14] [ 4] [1803] +11:03:40 [ 15] [ 4] [0320] +11:03:40 [ 18] [ 4] [6011] +11:03:40 [ 19] [ 3] [418] +11:03:40 [ 22] [ 3] [021] +11:03:40 [ 25] [ 2] [01] +11:03:40 [ 32] [ 6] [180893] +11:03:40 [ 35] [ 32] [6213548000319069=180312011906394] +11:03:40 [ 37] [ 12] [507904268334] +11:03:40 [ 41] [ 8] [0441VT52] +11:03:40 [ 42] [ 15] [999999 ] +11:03:40 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:03:40 [ 49] [ 3] [418] +11:03:40 [ 52] [ 16] [A8B0FEA8AF098EE4] +11:03:40 ============================================================================ +11:03:40 + + +waiting on router queue for slot.... +11:03:40 Sending to : <0> +11:03:40 ============================================================================ +11:03:40 ============================================================================ +11:03:40 Slot Id : <479> +11:03:40 Transaction Type : RESPONSE +11:03:40 Received From : +11:03:40 ============================================================================ +11:03:40 FNo. Len. Field Value +11:03:40 ============================================================================ +11:03:40 [ 1] [ 4] [0210] +11:03:40 [ 2] [ 16] [6213548000319069] +11:03:40 [ 3] [ 6] [302000] +11:03:40 [ 4] [ 12] [000000000000] +11:03:40 [ 7] [ 10] [0320040247] +11:03:40 [ 11] [ 6] [268334] +11:03:40 [ 12] [ 6] [110247] +11:03:40 [ 13] [ 4] [0320] +11:03:40 [ 15] [ 4] [0320] +11:03:40 [ 18] [ 4] [6011] +11:03:40 [ 19] [ 3] [418] +11:03:40 [ 32] [ 6] [180893] +11:03:40 [ 35] [ 32] [6213548000319069=180312011906394] +11:03:40 [ 37] [ 12] [507904268334] +11:03:40 [ 38] [ 6] [326789] +11:03:40 [ 39] [ 2] [00] +11:03:40 [ 41] [ 8] [0441VT52] +11:03:40 [ 49] [ 3] [418] +11:03:40 [ 54] [ 40] [2001418C0000554905362002418C000055490536] +11:03:40 ============================================================================ +11:03:40 Sending to : +11:03:40 ============================================================================ +11:03:40 + + +waiting on router queue for slot.... +11:03:42 ============================================================================ +11:03:42 Slot Id : <479> +11:03:42 Transaction Type : RESPONSE +11:03:42 Received From : +11:03:42 ============================================================================ +11:03:42 FNo. Len. Field Value +11:03:42 ============================================================================ +11:03:42 [ 1] [ 4] [0210] +11:03:42 [ 2] [ 16] [6213548000319069] +11:03:42 [ 3] [ 6] [302000] +11:03:42 [ 4] [ 12] [000000000000] +11:03:42 [ 7] [ 10] [0320040247] +11:03:42 [ 11] [ 6] [268334] +11:03:42 [ 12] [ 6] [110247] +11:03:42 [ 13] [ 4] [0320] +11:03:42 [ 15] [ 4] [0320] +11:03:42 [ 18] [ 4] [6011] +11:03:42 [ 19] [ 3] [418] +11:03:42 [ 32] [ 6] [180893] +11:03:42 [ 35] [ 32] [6213548000319069=180312011906394] +11:03:42 [ 37] [ 12] [507904268334] +11:03:42 [ 38] [ 6] [326789] +11:03:42 [ 39] [ 2] [00] +11:03:42 [ 41] [ 8] [0441VT52] +11:03:42 [ 49] [ 3] [418] +11:03:42 [ 54] [ 40] [2001418C0000554905362002418C000055490536] +11:03:42 ============================================================================ +11:03:42 Calculate Source COMM Id = 2 +11:03:42 ============================================================================ +11:03:42 + + +waiting on router queue for slot.... +11:03:48 ============================================================================ +11:03:48 Slot Id : <0> +11:03:48 Transaction Type : REQUEST +11:03:48 Received From : +11:03:48 ============================================================================ +11:03:48 FNo. Len. Field Value +11:03:48 ============================================================================ +11:03:48 [ 1] [ 4] [0200] +11:03:48 [ 2] [ 16] [1808930200038628] +11:03:48 [ 3] [ 6] [011000] +11:03:48 [ 4] [ 12] [000045000000] +11:03:48 [ 7] [ 10] [0320110344] +11:03:48 [ 11] [ 6] [723684] +11:03:48 [ 12] [ 6] [110344] +11:03:48 [ 13] [ 4] [0320] +11:03:48 [ 15] [ 4] [0320] +11:03:48 [ 18] [ 4] [6011] +11:03:48 [ 22] [ 3] [900] +11:03:48 [ 25] [ 2] [02] +11:03:48 [ 28] [ 9] [D00002000] +11:03:48 [ 32] [ 6] [621354] +11:03:48 [ 35] [ 27] [1808930200038628=1803500799] +11:03:48 [ 37] [ 12] [507903883673] +11:03:48 [ 41] [ 8] [01010400] +11:03:48 [ 42] [ 15] [NATIVE ] +11:03:48 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +11:03:48 [ 49] [ 3] [418] +11:03:48 [ 52] [ 16] [EA2773D0C2146C8B] +11:03:48 ============================================================================ +11:03:48 + + +waiting on router queue for slot.... +11:03:48 Sending to : +11:03:48 ============================================================================ +11:03:48 Sending to : +11:03:48 ============================================================================ +11:03:48 ============================================================================ +11:03:48 Slot Id : <0> +11:03:48 Transaction Type : REQUEST +11:03:48 Received From : +11:03:48 ============================================================================ +11:03:48 FNo. Len. Field Value +11:03:48 ============================================================================ +11:03:48 [ 1] [ 4] [0200] +11:03:48 [ 2] [ 16] [1808930200038628] +11:03:48 [ 3] [ 6] [011000] +11:03:48 [ 4] [ 12] [000045000000] +11:03:48 [ 7] [ 10] [0320110344] +11:03:48 [ 11] [ 6] [723684] +11:03:48 [ 12] [ 6] [110344] +11:03:48 [ 13] [ 4] [0320] +11:03:48 [ 15] [ 4] [0320] +11:03:48 [ 18] [ 4] [6011] +11:03:48 [ 22] [ 3] [900] +11:03:48 [ 25] [ 2] [02] +11:03:48 [ 28] [ 9] [D00002000] +11:03:48 [ 32] [ 6] [621354] +11:03:48 [ 35] [ 27] [1808930200038628=1803500799] +11:03:48 [ 37] [ 12] [507903883673] +11:03:48 [ 41] [ 8] [01010400] +11:03:48 [ 42] [ 15] [NATIVE ] +11:03:48 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +11:03:48 [ 49] [ 3] [418] +11:03:48 [ 52] [ 16] [EA2773D0C2146C8B] +11:03:48 ============================================================================ +11:03:48 + + +waiting on router queue for slot.... +11:03:48 Sending to : +11:03:48 ============================================================================ +11:03:48 ============================================================================ +11:03:48 Slot Id : <0> +11:03:48 Transaction Type : REQUEST +11:03:48 Received From : +11:03:48 ============================================================================ +11:03:48 FNo. Len. Field Value +11:03:48 ============================================================================ +11:03:48 [ 1] [ 4] [0200] +11:03:48 [ 2] [ 16] [1808930200038628] +11:03:48 [ 3] [ 6] [011000] +11:03:48 [ 4] [ 12] [000045000000] +11:03:48 [ 7] [ 10] [0320110344] +11:03:48 [ 11] [ 6] [723684] +11:03:48 [ 12] [ 6] [110344] +11:03:48 [ 13] [ 4] [0320] +11:03:48 [ 15] [ 4] [0320] +11:03:48 [ 18] [ 4] [6011] +11:03:48 [ 22] [ 3] [900] +11:03:48 [ 25] [ 2] [02] +11:03:48 [ 28] [ 9] [D00002000] +11:03:48 [ 32] [ 6] [621354] +11:03:48 [ 35] [ 27] [1808930200038628=1803500799] +11:03:48 [ 37] [ 12] [507903883673] +11:03:48 [ 41] [ 8] [01010400] +11:03:48 [ 42] [ 15] [NATIVE ] +11:03:48 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +11:03:48 [ 49] [ 3] [418] +11:03:48 [ 52] [ 16] [75D5158FABE48BD6] +11:03:48 ============================================================================ +11:03:48 + + +waiting on router queue for slot.... +11:03:48 Sending to : <2> +11:03:48 ============================================================================ +11:03:52 ============================================================================ +11:03:52 Slot Id : <0> +11:03:52 Transaction Type : RESPONSE +11:03:52 Received From : +11:03:52 ============================================================================ +11:03:52 FNo. Len. Field Value +11:03:52 ============================================================================ +11:03:52 [ 1] [ 4] [0210] +11:03:52 [ 2] [ 16] [1808930200038628] +11:03:52 [ 3] [ 6] [011000] +11:03:52 [ 4] [ 12] [000045000000] +11:03:52 [ 6] [ 12] [000045000000] +11:03:52 [ 7] [ 10] [0320110344] +11:03:52 [ 11] [ 6] [723684] +11:03:52 [ 12] [ 6] [110344] +11:03:52 [ 13] [ 4] [0320] +11:03:52 [ 18] [ 4] [6011] +11:03:52 [ 19] [ 3] [418] +11:03:52 [ 22] [ 3] [021] +11:03:52 [ 32] [ 6] [621354] +11:03:52 [ 35] [ 27] [1808930200038628=1803500799] +11:03:52 [ 37] [ 12] [507903883673] +11:03:52 [ 38] [ 6] [723684] +11:03:52 [ 39] [ 2] [00] +11:03:52 [ 41] [ 8] [01010400] +11:03:52 [ 49] [ 3] [418] +11:03:52 [ 52] [ 16] [75D5158FABE48BD6] +11:03:52 [ 54] [ 20] [1001418C000658255700] +11:03:52 ============================================================================ +11:03:52 Sending to : +11:03:52 ============================================================================ +11:03:52 + + +waiting on router queue for slot.... +11:03:54 ============================================================================ +11:03:54 Slot Id : <0> +11:03:54 Transaction Type : RESPONSE +11:03:54 Received From : +11:03:54 ============================================================================ +11:03:54 FNo. Len. Field Value +11:03:54 ============================================================================ +11:03:54 [ 1] [ 4] [0210] +11:03:54 [ 2] [ 16] [1808930200038628] +11:03:54 [ 3] [ 6] [011000] +11:03:54 [ 4] [ 12] [000045000000] +11:03:54 [ 6] [ 12] [000045000000] +11:03:54 [ 7] [ 10] [0320110344] +11:03:54 [ 11] [ 6] [723684] +11:03:54 [ 12] [ 6] [110344] +11:03:54 [ 13] [ 4] [0320] +11:03:54 [ 18] [ 4] [6011] +11:03:54 [ 19] [ 3] [418] +11:03:54 [ 22] [ 3] [021] +11:03:54 [ 32] [ 6] [621354] +11:03:54 [ 35] [ 27] [1808930200038628=1803500799] +11:03:54 [ 37] [ 12] [507903883673] +11:03:54 [ 38] [ 6] [723684] +11:03:54 [ 39] [ 2] [00] +11:03:54 [ 41] [ 8] [01010400] +11:03:54 [ 49] [ 3] [418] +11:03:54 [ 52] [ 16] [75D5158FABE48BD6] +11:03:54 [ 54] [ 20] [1001418C000658255700] +11:03:54 ============================================================================ +11:03:54 Calculate Source COMM Id = 0 +11:03:54 ============================================================================ +11:03:54 + + +waiting on router queue for slot.... +11:03:54 ============================================================================ +11:03:54 Slot Id : <2> +11:03:54 Transaction Type : REQUEST +11:03:54 Received From : +11:03:54 ============================================================================ +11:03:54 FNo. Len. Field Value +11:03:54 ============================================================================ +11:03:54 [ 1] [ 4] [0200] +11:03:54 [ 2] [ 16] [6213541000122831] +11:03:54 [ 3] [ 6] [010000] +11:03:54 [ 4] [ 12] [000100000000] +11:03:54 [ 7] [ 10] [0320110145] +11:03:54 [ 11] [ 6] [940205] +11:03:54 [ 12] [ 6] [110145] +11:03:54 [ 13] [ 4] [0320] +11:03:54 [ 15] [ 4] [0320] +11:03:54 [ 18] [ 4] [6011] +11:03:54 [ 19] [ 3] [418] +11:03:54 [ 22] [ 3] [021] +11:03:54 [ 25] [ 2] [01] +11:03:54 [ 28] [ 9] [D00002000] +11:03:54 [ 32] [ 6] [668899] +11:03:54 [ 35] [ 32] [6213541000122831=491212012283178] +11:03:54 [ 37] [ 12] [507902294722] +11:03:54 [ 41] [ 8] [03009006] +11:03:54 [ 42] [ 15] [APT ] +11:03:54 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:03:54 [ 49] [ 3] [418] +11:03:54 [ 52] [ 16] [FC8D3107655F6F6D] +11:03:54 ============================================================================ +11:03:54 + + +waiting on router queue for slot.... +11:03:54 Sending to : +11:03:54 ============================================================================ +11:03:54 Sending to : +11:03:54 ============================================================================ +11:03:54 ============================================================================ +11:03:54 Slot Id : <2> +11:03:54 Transaction Type : REQUEST +11:03:54 Received From : +11:03:54 ============================================================================ +11:03:54 FNo. Len. Field Value +11:03:54 ============================================================================ +11:03:54 [ 1] [ 4] [0200] +11:03:54 [ 2] [ 16] [6213541000122831] +11:03:54 [ 3] [ 6] [010000] +11:03:54 [ 4] [ 12] [000100000000] +11:03:54 [ 7] [ 10] [0320110145] +11:03:54 [ 11] [ 6] [940205] +11:03:54 [ 12] [ 6] [110145] +11:03:54 [ 13] [ 4] [0320] +11:03:54 [ 15] [ 4] [0320] +11:03:54 [ 18] [ 4] [6011] +11:03:54 [ 19] [ 3] [418] +11:03:54 [ 22] [ 3] [021] +11:03:54 [ 25] [ 2] [01] +11:03:54 [ 28] [ 9] [D00002000] +11:03:54 [ 32] [ 6] [668899] +11:03:54 [ 35] [ 32] [6213541000122831=491212012283178] +11:03:54 [ 37] [ 12] [507902294722] +11:03:54 [ 41] [ 8] [03009006] +11:03:54 [ 42] [ 15] [APT ] +11:03:54 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:03:54 [ 49] [ 3] [418] +11:03:54 [ 52] [ 16] [FC8D3107655F6F6D] +11:03:54 ============================================================================ +11:03:54 + + +waiting on router queue for slot.... +11:03:54 Sending to : +11:03:54 ============================================================================ +11:03:54 ============================================================================ +11:03:54 Slot Id : <2> +11:03:54 Transaction Type : REQUEST +11:03:54 Received From : +11:03:54 ============================================================================ +11:03:54 FNo. Len. Field Value +11:03:54 ============================================================================ +11:03:54 [ 1] [ 4] [0200] +11:03:54 [ 2] [ 16] [6213541000122831] +11:03:54 [ 3] [ 6] [010000] +11:03:54 [ 4] [ 12] [000100000000] +11:03:54 [ 7] [ 10] [0320110145] +11:03:54 [ 11] [ 6] [940205] +11:03:54 [ 12] [ 6] [110145] +11:03:54 [ 13] [ 4] [0320] +11:03:54 [ 15] [ 4] [0320] +11:03:54 [ 18] [ 4] [6011] +11:03:54 [ 19] [ 3] [418] +11:03:54 [ 22] [ 3] [021] +11:03:54 [ 25] [ 2] [01] +11:03:54 [ 28] [ 9] [D00002000] +11:03:54 [ 32] [ 6] [668899] +11:03:54 [ 35] [ 32] [6213541000122831=491212012283178] +11:03:54 [ 37] [ 12] [507902294722] +11:03:54 [ 41] [ 8] [03009006] +11:03:54 [ 42] [ 15] [APT ] +11:03:54 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:03:54 [ 49] [ 3] [418] +11:03:54 [ 52] [ 16] [441E430ED55ECF77] +11:03:54 ============================================================================ +11:03:54 + + +waiting on router queue for slot.... +11:03:54 Sending to : <0> +11:03:54 ============================================================================ +11:03:55 ============================================================================ +11:03:55 Slot Id : <2> +11:03:55 Transaction Type : RESPONSE +11:03:55 Received From : +11:03:55 ============================================================================ +11:03:55 FNo. Len. Field Value +11:03:55 ============================================================================ +11:03:55 [ 1] [ 4] [0210] +11:03:55 [ 2] [ 16] [6213541000122831] +11:03:55 [ 3] [ 6] [010000] +11:03:55 [ 4] [ 12] [000100000000] +11:03:55 [ 7] [ 10] [0320110145] +11:03:55 [ 11] [ 6] [940205] +11:03:55 [ 12] [ 6] [110145] +11:03:55 [ 13] [ 4] [0320] +11:03:55 [ 15] [ 4] [0320] +11:03:55 [ 18] [ 4] [6011] +11:03:55 [ 19] [ 3] [418] +11:03:55 [ 32] [ 6] [668899] +11:03:55 [ 35] [ 32] [6213541000122831=491212012283178] +11:03:55 [ 37] [ 12] [507902294722] +11:03:55 [ 38] [ 6] [794071] +11:03:55 [ 39] [ 2] [00] +11:03:55 [ 41] [ 8] [03009006] +11:03:55 [ 49] [ 3] [418] +11:03:55 [ 54] [ 40] [0001418C0079480905700002418C007948090570] +11:03:55 ============================================================================ +11:03:55 Sending to : +11:03:55 ============================================================================ +11:03:55 + + +waiting on router queue for slot.... +11:03:56 ============================================================================ +11:03:56 Slot Id : <2> +11:03:56 Transaction Type : RESPONSE +11:03:56 Received From : +11:03:56 ============================================================================ +11:03:56 FNo. Len. Field Value +11:03:56 ============================================================================ +11:03:56 [ 1] [ 4] [0210] +11:03:56 [ 2] [ 16] [6213541000122831] +11:03:56 [ 3] [ 6] [010000] +11:03:56 [ 4] [ 12] [000100000000] +11:03:56 [ 7] [ 10] [0320110145] +11:03:56 [ 11] [ 6] [940205] +11:03:56 [ 12] [ 6] [110145] +11:03:56 [ 13] [ 4] [0320] +11:03:56 [ 15] [ 4] [0320] +11:03:56 [ 18] [ 4] [6011] +11:03:56 [ 19] [ 3] [418] +11:03:56 [ 32] [ 6] [668899] +11:03:56 [ 35] [ 32] [6213541000122831=491212012283178] +11:03:56 [ 37] [ 12] [507902294722] +11:03:56 [ 38] [ 6] [794071] +11:03:56 [ 39] [ 2] [00] +11:03:56 [ 41] [ 8] [03009006] +11:03:56 [ 49] [ 3] [418] +11:03:56 [ 54] [ 40] [0001418C0079480905700002418C007948090570] +11:03:56 ============================================================================ +11:03:56 Calculate Source COMM Id = 4 +11:03:56 ============================================================================ +11:03:56 + + +waiting on router queue for slot.... +11:03:57 ============================================================================ +11:03:57 Slot Id : <1> +11:03:57 Transaction Type : REQUEST +11:03:57 Received From : +11:03:57 ============================================================================ +11:03:57 FNo. Len. Field Value +11:03:57 ============================================================================ +11:03:57 [ 1] [ 4] [0800] +11:03:57 [ 7] [ 10] [0320110344] +11:03:57 [ 11] [ 6] [097815] +11:03:57 [ 37] [ 12] [507911097815] +11:03:57 [ 70] [ 3] [ ] +11:03:57 ============================================================================ +11:03:57 + + +waiting on router queue for slot.... +11:03:57 Sending to : +11:03:57 ============================================================================ +11:03:57 ============================================================================ +11:03:57 Slot Id : <1> +11:03:57 Transaction Type : RESPONSE +11:03:57 Received From : +11:03:57 ============================================================================ +11:03:57 FNo. Len. Field Value +11:03:57 ============================================================================ +11:03:57 [ 1] [ 4] [0810] +11:03:57 [ 7] [ 10] [0320110344] +11:03:57 [ 11] [ 6] [097815] +11:03:57 [ 37] [ 12] [507911097815] +11:03:57 [ 39] [ 2] [91] +11:03:57 [ 70] [ 3] [ ] +11:03:57 ============================================================================ +11:03:57 Calculate Source COMM Id = 3 +11:03:57 ============================================================================ +11:03:57 + + +waiting on router queue for slot.... +11:04:02 ============================================================================ +11:04:02 Slot Id : <493> +11:04:02 Transaction Type : REQUEST +11:04:02 Received From : +11:04:02 ============================================================================ +11:04:02 FNo. Len. Field Value +11:04:02 ============================================================================ +11:04:02 [ 1] [ 4] [0800] +11:04:02 [ 2] [ 5] [02531] +11:04:02 [ 3] [ 6] [579118] +11:04:02 [ 7] [ 10] [0320040402] +11:04:02 [ 11] [ 6] [807054] +11:04:02 [ 15] [ 10] [0320040402] +11:04:02 [ 37] [ 11] [57911807054] +11:04:02 [ 70] [ 3] [001] +11:04:02 ============================================================================ +11:04:02 + + +waiting on router queue for slot.... +11:04:02 ============================================================================ +11:04:02 Slot Id : <493> +11:04:02 Transaction Type : RESPONSE +11:04:02 Received From : +11:04:02 ============================================================================ +11:04:02 FNo. Len. Field Value +11:04:02 ============================================================================ +11:04:02 [ 1] [ 4] [0810] +11:04:02 [ 7] [ 10] [0320040402] +11:04:02 [ 11] [ 6] [807054] +11:04:02 [ 15] [ 4] [0320] +11:04:02 [ 37] [ 12] [57911807054] +11:04:02 [ 39] [ 2] [00] +11:04:02 [ 70] [ 3] [001] +11:04:02 ============================================================================ +11:04:02 Sending to : +11:04:02 ============================================================================ +11:04:02 + + +waiting on router queue for slot.... +11:04:05 ============================================================================ +11:04:05 Slot Id : <498> +11:04:05 Transaction Type : REQUEST +11:04:05 Received From : +11:04:05 ============================================================================ +11:04:05 FNo. Len. Field Value +11:04:05 ============================================================================ +11:04:05 [ 1] [ 4] [0800] +11:04:05 [ 7] [ 10] [0320040311] +11:04:05 [ 11] [ 6] [156000] +11:04:05 [ 70] [ 3] [301] +11:04:05 ============================================================================ +11:04:05 + + +waiting on router queue for slot.... +11:04:05 Sending to : +11:04:05 ============================================================================ +11:04:05 ============================================================================ +11:04:05 Slot Id : <498> +11:04:05 Transaction Type : RESPONSE +11:04:05 Received From : +11:04:05 ============================================================================ +11:04:05 FNo. Len. Field Value +11:04:05 ============================================================================ +11:04:05 [ 1] [ 4] [0810] +11:04:05 [ 7] [ 10] [0320040311] +11:04:05 [ 11] [ 6] [156000] +11:04:05 [ 39] [ 2] [00] +11:04:05 [ 70] [ 3] [301] +11:04:05 ============================================================================ +11:04:05 Calculate Source COMM Id = 2 +11:04:05 ============================================================================ +11:04:05 + + +waiting on router queue for slot.... +11:04:17 ============================================================================ +11:04:17 Slot Id : <4> +11:04:17 Transaction Type : REQUEST +11:04:17 Received From : +11:04:17 ============================================================================ +11:04:17 FNo. Len. Field Value +11:04:17 ============================================================================ +11:04:17 [ 1] [ 4] [0200] +11:04:17 [ 2] [ 16] [6213548000319069] +11:04:17 [ 3] [ 6] [010000] +11:04:17 [ 4] [ 12] [000050000000] +11:04:17 [ 7] [ 10] [0320040323] +11:04:17 [ 11] [ 6] [268337] +11:04:17 [ 12] [ 6] [110323] +11:04:17 [ 13] [ 4] [0320] +11:04:17 [ 14] [ 4] [1803] +11:04:17 [ 15] [ 4] [0320] +11:04:17 [ 18] [ 4] [6011] +11:04:17 [ 19] [ 3] [418] +11:04:17 [ 22] [ 3] [021] +11:04:17 [ 25] [ 2] [01] +11:04:17 [ 28] [ 9] [D00002000] +11:04:17 [ 32] [ 6] [180893] +11:04:17 [ 35] [ 32] [6213548000319069=180312011906394] +11:04:17 [ 37] [ 12] [507904268337] +11:04:17 [ 41] [ 8] [0441VT52] +11:04:17 [ 42] [ 15] [999999 ] +11:04:17 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:04:17 [ 49] [ 3] [418] +11:04:17 [ 52] [ 16] [B3653ABA91E3B076] +11:04:17 ============================================================================ +11:04:17 + + +waiting on router queue for slot.... +11:04:17 Sending to : +11:04:17 ============================================================================ +11:04:17 Sending to : +11:04:17 ============================================================================ +11:04:17 ============================================================================ +11:04:17 Slot Id : <4> +11:04:17 Transaction Type : REQUEST +11:04:17 Received From : +11:04:17 ============================================================================ +11:04:17 FNo. Len. Field Value +11:04:17 ============================================================================ +11:04:17 [ 1] [ 4] [0200] +11:04:17 [ 2] [ 16] [6213548000319069] +11:04:17 [ 3] [ 6] [010000] +11:04:17 [ 4] [ 12] [000050000000] +11:04:17 [ 7] [ 10] [0320040323] +11:04:17 [ 11] [ 6] [268337] +11:04:17 [ 12] [ 6] [110323] +11:04:17 [ 13] [ 4] [0320] +11:04:17 [ 14] [ 4] [1803] +11:04:17 [ 15] [ 4] [0320] +11:04:17 [ 18] [ 4] [6011] +11:04:17 [ 19] [ 3] [418] +11:04:17 [ 22] [ 3] [021] +11:04:17 [ 25] [ 2] [01] +11:04:17 [ 28] [ 9] [D00002000] +11:04:17 [ 32] [ 6] [180893] +11:04:17 [ 35] [ 32] [6213548000319069=180312011906394] +11:04:17 [ 37] [ 12] [507904268337] +11:04:17 [ 41] [ 8] [0441VT52] +11:04:17 [ 42] [ 15] [999999 ] +11:04:17 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:04:17 [ 49] [ 3] [418] +11:04:17 [ 52] [ 16] [B3653ABA91E3B076] +11:04:17 ============================================================================ +11:04:17 + + +waiting on router queue for slot.... +11:04:17 Sending to : +11:04:17 ============================================================================ +11:04:17 ============================================================================ +11:04:17 Slot Id : <4> +11:04:17 Transaction Type : REQUEST +11:04:17 Received From : +11:04:17 ============================================================================ +11:04:17 FNo. Len. Field Value +11:04:17 ============================================================================ +11:04:17 [ 1] [ 4] [0200] +11:04:17 [ 2] [ 16] [6213548000319069] +11:04:17 [ 3] [ 6] [010000] +11:04:17 [ 4] [ 12] [000050000000] +11:04:17 [ 7] [ 10] [0320040323] +11:04:17 [ 11] [ 6] [268337] +11:04:17 [ 12] [ 6] [110323] +11:04:17 [ 13] [ 4] [0320] +11:04:17 [ 14] [ 4] [1803] +11:04:17 [ 15] [ 4] [0320] +11:04:17 [ 18] [ 4] [6011] +11:04:17 [ 19] [ 3] [418] +11:04:17 [ 22] [ 3] [021] +11:04:17 [ 25] [ 2] [01] +11:04:17 [ 28] [ 9] [D00002000] +11:04:17 [ 32] [ 6] [180893] +11:04:17 [ 35] [ 32] [6213548000319069=180312011906394] +11:04:17 [ 37] [ 12] [507904268337] +11:04:17 [ 41] [ 8] [0441VT52] +11:04:17 [ 42] [ 15] [999999 ] +11:04:17 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:04:17 [ 49] [ 3] [418] +11:04:17 [ 52] [ 16] [A8B0FEA8AF098EE4] +11:04:17 ============================================================================ +11:04:17 + + +waiting on router queue for slot.... +11:04:17 Sending to : <0> +11:04:17 ============================================================================ +11:04:18 ============================================================================ +11:04:18 Slot Id : <4> +11:04:18 Transaction Type : RESPONSE +11:04:18 Received From : +11:04:18 ============================================================================ +11:04:18 FNo. Len. Field Value +11:04:18 ============================================================================ +11:04:18 [ 1] [ 4] [0210] +11:04:18 [ 2] [ 16] [6213548000319069] +11:04:18 [ 3] [ 6] [010000] +11:04:18 [ 4] [ 12] [000050000000] +11:04:18 [ 7] [ 10] [0320040323] +11:04:18 [ 11] [ 6] [268337] +11:04:18 [ 12] [ 6] [110323] +11:04:18 [ 13] [ 4] [0320] +11:04:18 [ 15] [ 4] [0320] +11:04:18 [ 18] [ 4] [6011] +11:04:18 [ 19] [ 3] [418] +11:04:18 [ 32] [ 6] [180893] +11:04:18 [ 35] [ 32] [6213548000319069=180312011906394] +11:04:18 [ 37] [ 12] [507904268337] +11:04:18 [ 38] [ 6] [252889] +11:04:18 [ 39] [ 2] [00] +11:04:18 [ 41] [ 8] [0441VT52] +11:04:18 [ 49] [ 3] [418] +11:04:18 [ 54] [ 40] [0001418C0000052905360002418C000005290536] +11:04:18 ============================================================================ +11:04:18 Sending to : +11:04:18 ============================================================================ +11:04:18 + + +waiting on router queue for slot.... +11:04:19 ============================================================================ +11:04:19 Slot Id : <4> +11:04:19 Transaction Type : RESPONSE +11:04:19 Received From : +11:04:19 ============================================================================ +11:04:19 FNo. Len. Field Value +11:04:19 ============================================================================ +11:04:19 [ 1] [ 4] [0210] +11:04:19 [ 2] [ 16] [6213548000319069] +11:04:19 [ 3] [ 6] [010000] +11:04:19 [ 4] [ 12] [000050000000] +11:04:19 [ 7] [ 10] [0320040323] +11:04:19 [ 11] [ 6] [268337] +11:04:19 [ 12] [ 6] [110323] +11:04:19 [ 13] [ 4] [0320] +11:04:19 [ 15] [ 4] [0320] +11:04:19 [ 18] [ 4] [6011] +11:04:19 [ 19] [ 3] [418] +11:04:19 [ 32] [ 6] [180893] +11:04:19 [ 35] [ 32] [6213548000319069=180312011906394] +11:04:19 [ 37] [ 12] [507904268337] +11:04:19 [ 38] [ 6] [252889] +11:04:19 [ 39] [ 2] [00] +11:04:19 [ 41] [ 8] [0441VT52] +11:04:19 [ 49] [ 3] [418] +11:04:19 [ 54] [ 40] [0001418C0000052905360002418C000005290536] +11:04:19 ============================================================================ +11:04:19 Calculate Source COMM Id = 2 +11:04:19 ============================================================================ +11:04:19 + + +waiting on router queue for slot.... +11:04:20 ============================================================================ +11:04:20 Slot Id : <473> +11:04:20 Transaction Type : REQUEST +11:04:20 Received From : +11:04:20 ============================================================================ +11:04:20 FNo. Len. Field Value +11:04:20 ============================================================================ +11:04:20 [ 1] [ 4] [0800] +11:04:20 [ 7] [ 10] [0320040327] +11:04:20 [ 11] [ 6] [156001] +11:04:20 [ 70] [ 3] [301] +11:04:20 ============================================================================ +11:04:20 + + +waiting on router queue for slot.... +11:04:20 Sending to : +11:04:20 ============================================================================ +11:04:20 ============================================================================ +11:04:20 Slot Id : <473> +11:04:20 Transaction Type : RESPONSE +11:04:20 Received From : +11:04:20 ============================================================================ +11:04:20 FNo. Len. Field Value +11:04:20 ============================================================================ +11:04:20 [ 1] [ 4] [0810] +11:04:20 [ 7] [ 10] [0320040327] +11:04:20 [ 11] [ 6] [156001] +11:04:20 [ 39] [ 2] [00] +11:04:20 [ 70] [ 3] [301] +11:04:20 ============================================================================ +11:04:20 Calculate Source COMM Id = 2 +11:04:20 ============================================================================ +11:04:20 + + +waiting on router queue for slot.... +11:04:20 ============================================================================ +11:04:20 Slot Id : <489> +11:04:20 Transaction Type : REQUEST +11:04:20 Received From : +11:04:20 ============================================================================ +11:04:20 FNo. Len. Field Value +11:04:20 ============================================================================ +11:04:20 [ 1] [ 4] [0200] +11:04:20 [ 2] [ 16] [1808931300013024] +11:04:20 [ 3] [ 6] [012000] +11:04:20 [ 4] [ 12] [000100000000] +11:04:20 [ 7] [ 10] [0320110416] +11:04:20 [ 11] [ 6] [723817] +11:04:20 [ 12] [ 6] [110416] +11:04:20 [ 13] [ 4] [0320] +11:04:20 [ 15] [ 4] [0320] +11:04:20 [ 18] [ 4] [6011] +11:04:20 [ 22] [ 3] [900] +11:04:20 [ 25] [ 2] [02] +11:04:20 [ 28] [ 9] [D00002000] +11:04:20 [ 32] [ 6] [621354] +11:04:20 [ 35] [ 27] [1808931300013024=1803500295] +11:04:20 [ 37] [ 12] [507902706272] +11:04:20 [ 41] [ 8] [14000900] +11:04:20 [ 42] [ 15] [NATIVE ] +11:04:20 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +11:04:20 [ 49] [ 3] [418] +11:04:20 [ 52] [ 16] [F6649D724B4858F6] +11:04:20 ============================================================================ +11:04:20 + + +waiting on router queue for slot.... +11:04:20 Sending to : +11:04:20 ============================================================================ +11:04:20 Sending to : +11:04:20 ============================================================================ +11:04:20 ============================================================================ +11:04:20 Slot Id : <489> +11:04:20 Transaction Type : REQUEST +11:04:20 Received From : +11:04:20 ============================================================================ +11:04:20 FNo. Len. Field Value +11:04:20 ============================================================================ +11:04:20 [ 1] [ 4] [0200] +11:04:20 [ 2] [ 16] [1808931300013024] +11:04:20 [ 3] [ 6] [012000] +11:04:20 [ 4] [ 12] [000100000000] +11:04:20 [ 7] [ 10] [0320110416] +11:04:20 [ 11] [ 6] [723817] +11:04:20 [ 12] [ 6] [110416] +11:04:20 [ 13] [ 4] [0320] +11:04:20 [ 15] [ 4] [0320] +11:04:20 [ 18] [ 4] [6011] +11:04:20 [ 22] [ 3] [900] +11:04:20 [ 25] [ 2] [02] +11:04:20 [ 28] [ 9] [D00002000] +11:04:20 [ 32] [ 6] [621354] +11:04:20 [ 35] [ 27] [1808931300013024=1803500295] +11:04:20 [ 37] [ 12] [507902706272] +11:04:20 [ 41] [ 8] [14000900] +11:04:20 [ 42] [ 15] [NATIVE ] +11:04:20 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +11:04:20 [ 49] [ 3] [418] +11:04:20 [ 52] [ 16] [F6649D724B4858F6] +11:04:20 ============================================================================ +11:04:20 + + +waiting on router queue for slot.... +11:04:20 Sending to : +11:04:20 ============================================================================ +11:04:20 ============================================================================ +11:04:20 Slot Id : <489> +11:04:20 Transaction Type : REQUEST +11:04:20 Received From : +11:04:20 ============================================================================ +11:04:20 FNo. Len. Field Value +11:04:20 ============================================================================ +11:04:20 [ 1] [ 4] [0200] +11:04:20 [ 2] [ 16] [1808931300013024] +11:04:20 [ 3] [ 6] [012000] +11:04:20 [ 4] [ 12] [000100000000] +11:04:20 [ 7] [ 10] [0320110416] +11:04:20 [ 11] [ 6] [723817] +11:04:20 [ 12] [ 6] [110416] +11:04:20 [ 13] [ 4] [0320] +11:04:20 [ 15] [ 4] [0320] +11:04:20 [ 18] [ 4] [6011] +11:04:20 [ 22] [ 3] [900] +11:04:20 [ 25] [ 2] [02] +11:04:20 [ 28] [ 9] [D00002000] +11:04:20 [ 32] [ 6] [621354] +11:04:20 [ 35] [ 27] [1808931300013024=1803500295] +11:04:20 [ 37] [ 12] [507902706272] +11:04:20 [ 41] [ 8] [14000900] +11:04:20 [ 42] [ 15] [NATIVE ] +11:04:20 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +11:04:20 [ 49] [ 3] [418] +11:04:20 [ 52] [ 16] [C411FC79F9FF1001] +11:04:20 ============================================================================ +11:04:20 + + +waiting on router queue for slot.... +11:04:20 Sending to : <2> +11:04:20 ============================================================================ +11:04:22 ============================================================================ +11:04:22 Slot Id : <489> +11:04:22 Transaction Type : RESPONSE +11:04:22 Received From : +11:04:22 ============================================================================ +11:04:22 FNo. Len. Field Value +11:04:22 ============================================================================ +11:04:22 [ 1] [ 4] [0210] +11:04:22 [ 2] [ 16] [1808931300013024] +11:04:22 [ 3] [ 6] [012000] +11:04:22 [ 4] [ 12] [000100000000] +11:04:22 [ 7] [ 10] [0320110416] +11:04:22 [ 11] [ 6] [723817] +11:04:22 [ 12] [ 6] [110416] +11:04:22 [ 13] [ 4] [0320] +11:04:22 [ 18] [ 4] [6011] +11:04:22 [ 19] [ 3] [418] +11:04:22 [ 22] [ 3] [021] +11:04:22 [ 28] [ 9] [D00002000] +11:04:22 [ 32] [ 6] [621354] +11:04:22 [ 35] [ 27] [1808931300013024=1803500295] +11:04:22 [ 37] [ 12] [507902706272] +11:04:22 [ 39] [ 2] [42] +11:04:22 [ 41] [ 8] [14000900] +11:04:22 [ 49] [ 3] [418] +11:04:22 [ 52] [ 16] [C411FC79F9FF1001] +11:04:22 ============================================================================ +11:04:22 Sending to : +11:04:22 ============================================================================ +11:04:22 + + +waiting on router queue for slot.... +11:04:23 ============================================================================ +11:04:23 Slot Id : <489> +11:04:23 Transaction Type : RESPONSE +11:04:23 Received From : +11:04:23 ============================================================================ +11:04:23 FNo. Len. Field Value +11:04:23 ============================================================================ +11:04:23 [ 1] [ 4] [0210] +11:04:23 [ 2] [ 16] [1808931300013024] +11:04:23 [ 3] [ 6] [012000] +11:04:23 [ 4] [ 12] [000100000000] +11:04:23 [ 7] [ 10] [0320110416] +11:04:23 [ 11] [ 6] [723817] +11:04:23 [ 12] [ 6] [110416] +11:04:23 [ 13] [ 4] [0320] +11:04:23 [ 18] [ 4] [6011] +11:04:23 [ 19] [ 3] [418] +11:04:23 [ 22] [ 3] [021] +11:04:23 [ 28] [ 9] [D00002000] +11:04:23 [ 32] [ 6] [621354] +11:04:23 [ 35] [ 27] [1808931300013024=1803500295] +11:04:23 [ 37] [ 12] [507902706272] +11:04:23 [ 39] [ 2] [42] +11:04:23 [ 41] [ 8] [14000900] +11:04:23 [ 49] [ 3] [418] +11:04:23 [ 52] [ 16] [C411FC79F9FF1001] +11:04:23 ============================================================================ +11:04:23 Calculate Source COMM Id = 0 +11:04:23 ============================================================================ +11:04:23 + + +waiting on router queue for slot.... +11:04:30 ============================================================================ +11:04:30 Slot Id : <483> +11:04:30 Transaction Type : REQUEST +11:04:30 Received From : +11:04:30 ============================================================================ +11:04:30 FNo. Len. Field Value +11:04:30 ============================================================================ +11:04:30 [ 1] [ 4] [0200] +11:04:30 [ 2] [ 16] [1808930400013884] +11:04:30 [ 3] [ 6] [010000] +11:04:30 [ 4] [ 12] [000100000000] +11:04:30 [ 7] [ 10] [0320110221] +11:04:30 [ 11] [ 6] [940228] +11:04:30 [ 12] [ 6] [110221] +11:04:30 [ 13] [ 4] [0320] +11:04:30 [ 15] [ 4] [0320] +11:04:30 [ 18] [ 4] [6011] +11:04:30 [ 19] [ 3] [418] +11:04:30 [ 22] [ 3] [021] +11:04:30 [ 25] [ 2] [01] +11:04:30 [ 28] [ 9] [D00002000] +11:04:30 [ 32] [ 6] [668899] +11:04:30 [ 35] [ 27] [1808930400013884=1803500634] +11:04:30 [ 37] [ 12] [507901856314] +11:04:30 [ 41] [ 8] [03311001] +11:04:30 [ 42] [ 15] [APT ] +11:04:30 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:04:30 [ 49] [ 3] [418] +11:04:30 [ 52] [ 16] [CC4B4C5C0AA006E5] +11:04:30 ============================================================================ +11:04:30 + + +waiting on router queue for slot.... +11:04:30 Sending to : +11:04:30 ============================================================================ +11:04:30 Sending to : +11:04:30 ============================================================================ +11:04:30 ============================================================================ +11:04:30 Slot Id : <483> +11:04:30 Transaction Type : REQUEST +11:04:30 Received From : +11:04:30 ============================================================================ +11:04:30 FNo. Len. Field Value +11:04:30 ============================================================================ +11:04:30 [ 1] [ 4] [0200] +11:04:30 [ 2] [ 16] [1808930400013884] +11:04:30 [ 3] [ 6] [010000] +11:04:30 [ 4] [ 12] [000100000000] +11:04:30 [ 7] [ 10] [0320110221] +11:04:30 [ 11] [ 6] [940228] +11:04:30 [ 12] [ 6] [110221] +11:04:30 [ 13] [ 4] [0320] +11:04:30 [ 15] [ 4] [0320] +11:04:30 [ 18] [ 4] [6011] +11:04:30 [ 19] [ 3] [418] +11:04:30 [ 22] [ 3] [021] +11:04:30 [ 25] [ 2] [01] +11:04:30 [ 28] [ 9] [D00002000] +11:04:30 [ 32] [ 6] [668899] +11:04:30 [ 35] [ 27] [1808930400013884=1803500634] +11:04:30 [ 37] [ 12] [507901856314] +11:04:30 [ 41] [ 8] [03311001] +11:04:30 [ 42] [ 15] [APT ] +11:04:30 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:04:30 [ 49] [ 3] [418] +11:04:30 [ 52] [ 16] [CC4B4C5C0AA006E5] +11:04:30 ============================================================================ +11:04:30 + + +waiting on router queue for slot.... +11:04:30 Sending to : +11:04:30 ============================================================================ +11:04:30 ============================================================================ +11:04:30 Slot Id : <483> +11:04:30 Transaction Type : REQUEST +11:04:30 Received From : +11:04:30 ============================================================================ +11:04:30 FNo. Len. Field Value +11:04:30 ============================================================================ +11:04:30 [ 1] [ 4] [0200] +11:04:30 [ 2] [ 16] [1808930400013884] +11:04:30 [ 3] [ 6] [010000] +11:04:30 [ 4] [ 12] [000100000000] +11:04:30 [ 7] [ 10] [0320110221] +11:04:30 [ 11] [ 6] [940228] +11:04:30 [ 12] [ 6] [110221] +11:04:30 [ 13] [ 4] [0320] +11:04:30 [ 15] [ 4] [0320] +11:04:30 [ 18] [ 4] [6011] +11:04:30 [ 19] [ 3] [418] +11:04:30 [ 22] [ 3] [021] +11:04:30 [ 25] [ 2] [01] +11:04:30 [ 28] [ 9] [D00002000] +11:04:30 [ 32] [ 6] [668899] +11:04:30 [ 35] [ 27] [1808930400013884=1803500634] +11:04:30 [ 37] [ 12] [507901856314] +11:04:30 [ 41] [ 8] [03311001] +11:04:30 [ 42] [ 15] [APT ] +11:04:30 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:04:30 [ 49] [ 3] [418] +11:04:30 [ 52] [ 16] [0900EBBEA3DB63C9] +11:04:30 ============================================================================ +11:04:30 + + +waiting on router queue for slot.... +11:04:30 Sending to : <2> +11:04:30 ============================================================================ +11:04:37 ============================================================================ +11:04:37 Slot Id : <483> +11:04:37 Transaction Type : RESPONSE +11:04:37 Received From : +11:04:37 ============================================================================ +11:04:37 FNo. Len. Field Value +11:04:37 ============================================================================ +11:04:37 [ 1] [ 4] [0210] +11:04:37 [ 2] [ 16] [1808930400013884] +11:04:37 [ 3] [ 6] [010000] +11:04:37 [ 4] [ 12] [000100000000] +11:04:37 [ 6] [ 12] [000100000000] +11:04:37 [ 7] [ 10] [0320110221] +11:04:37 [ 11] [ 6] [940228] +11:04:37 [ 12] [ 6] [110221] +11:04:37 [ 13] [ 4] [0320] +11:04:37 [ 18] [ 4] [6011] +11:04:37 [ 19] [ 3] [418] +11:04:37 [ 22] [ 3] [021] +11:04:37 [ 32] [ 6] [668899] +11:04:37 [ 35] [ 27] [1808930400013884=1803500634] +11:04:37 [ 37] [ 12] [507901856314] +11:04:37 [ 38] [ 6] [940228] +11:04:37 [ 39] [ 2] [00] +11:04:37 [ 41] [ 8] [03311001] +11:04:37 [ 49] [ 3] [418] +11:04:37 [ 52] [ 16] [0900EBBEA3DB63C9] +11:04:37 [ 54] [ 20] [1001418C000020583700] +11:04:37 ============================================================================ +11:04:37 Sending to : +11:04:37 ============================================================================ +11:04:37 + + +waiting on router queue for slot.... +11:04:39 ============================================================================ +11:04:39 Slot Id : <483> +11:04:39 Transaction Type : RESPONSE +11:04:39 Received From : +11:04:39 ============================================================================ +11:04:39 FNo. Len. Field Value +11:04:39 ============================================================================ +11:04:39 [ 1] [ 4] [0210] +11:04:39 [ 2] [ 16] [1808930400013884] +11:04:39 [ 3] [ 6] [010000] +11:04:39 [ 4] [ 12] [000100000000] +11:04:39 [ 6] [ 12] [000100000000] +11:04:39 [ 7] [ 10] [0320110221] +11:04:39 [ 11] [ 6] [940228] +11:04:39 [ 12] [ 6] [110221] +11:04:39 [ 13] [ 4] [0320] +11:04:39 [ 18] [ 4] [6011] +11:04:39 [ 19] [ 3] [418] +11:04:39 [ 22] [ 3] [021] +11:04:39 [ 32] [ 6] [668899] +11:04:39 [ 35] [ 27] [1808930400013884=1803500634] +11:04:39 [ 37] [ 12] [507901856314] +11:04:39 [ 38] [ 6] [940228] +11:04:39 [ 39] [ 2] [00] +11:04:39 [ 41] [ 8] [03311001] +11:04:39 [ 49] [ 3] [418] +11:04:39 [ 52] [ 16] [0900EBBEA3DB63C9] +11:04:39 [ 54] [ 20] [1001418C000020583700] +11:04:39 ============================================================================ +11:04:39 Calculate Source COMM Id = 4 +11:04:39 ============================================================================ +11:04:39 + + +waiting on router queue for slot.... +11:04:45 ============================================================================ +11:04:45 Slot Id : <476> +11:04:45 Transaction Type : REQUEST +11:04:45 Received From : +11:04:45 ============================================================================ +11:04:45 FNo. Len. Field Value +11:04:45 ============================================================================ +11:04:45 [ 1] [ 4] [0800] +11:04:45 [ 7] [ 10] [0320040349] +11:04:45 [ 11] [ 6] [156002] +11:04:45 [ 70] [ 3] [301] +11:04:45 ============================================================================ +11:04:45 + + +waiting on router queue for slot.... +11:04:45 Sending to : +11:04:45 ============================================================================ +11:04:45 ============================================================================ +11:04:45 Slot Id : <476> +11:04:45 Transaction Type : RESPONSE +11:04:45 Received From : +11:04:45 ============================================================================ +11:04:45 FNo. Len. Field Value +11:04:45 ============================================================================ +11:04:45 [ 1] [ 4] [0810] +11:04:45 [ 7] [ 10] [0320040349] +11:04:45 [ 11] [ 6] [156002] +11:04:45 [ 39] [ 2] [00] +11:04:45 [ 70] [ 3] [301] +11:04:45 ============================================================================ +11:04:45 Calculate Source COMM Id = 2 +11:04:45 ============================================================================ +11:04:45 + + +waiting on router queue for slot.... +11:04:54 ============================================================================ +11:04:54 Slot Id : <474> +11:04:54 Transaction Type : REQUEST +11:04:54 Received From : +11:04:54 ============================================================================ +11:04:54 FNo. Len. Field Value +11:04:54 ============================================================================ +11:04:54 [ 1] [ 4] [0200] +11:04:54 [ 2] [ 16] [6213541000122831] +11:04:54 [ 3] [ 6] [010000] +11:04:54 [ 4] [ 12] [000100000000] +11:04:54 [ 7] [ 10] [0320110245] +11:04:54 [ 11] [ 6] [940240] +11:04:54 [ 12] [ 6] [110245] +11:04:54 [ 13] [ 4] [0320] +11:04:54 [ 15] [ 4] [0320] +11:04:54 [ 18] [ 4] [6011] +11:04:54 [ 19] [ 3] [418] +11:04:54 [ 22] [ 3] [021] +11:04:54 [ 25] [ 2] [01] +11:04:54 [ 28] [ 9] [D00002000] +11:04:54 [ 32] [ 6] [668899] +11:04:54 [ 35] [ 32] [6213541000122831=491212012283178] +11:04:54 [ 37] [ 12] [507902294724] +11:04:54 [ 41] [ 8] [03009006] +11:04:54 [ 42] [ 15] [APT ] +11:04:54 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:04:54 [ 49] [ 3] [418] +11:04:54 [ 52] [ 16] [FC8D3107655F6F6D] +11:04:54 ============================================================================ +11:04:54 + + +waiting on router queue for slot.... +11:04:54 Sending to : +11:04:54 ============================================================================ +11:04:54 Sending to : +11:04:54 ============================================================================ +11:04:55 ============================================================================ +11:04:55 Slot Id : <474> +11:04:55 Transaction Type : REQUEST +11:04:55 Received From : +11:04:55 ============================================================================ +11:04:55 FNo. Len. Field Value +11:04:55 ============================================================================ +11:04:55 [ 1] [ 4] [0200] +11:04:55 [ 2] [ 16] [6213541000122831] +11:04:55 [ 3] [ 6] [010000] +11:04:55 [ 4] [ 12] [000100000000] +11:04:55 [ 7] [ 10] [0320110245] +11:04:55 [ 11] [ 6] [940240] +11:04:55 [ 12] [ 6] [110245] +11:04:55 [ 13] [ 4] [0320] +11:04:55 [ 15] [ 4] [0320] +11:04:55 [ 18] [ 4] [6011] +11:04:55 [ 19] [ 3] [418] +11:04:55 [ 22] [ 3] [021] +11:04:55 [ 25] [ 2] [01] +11:04:55 [ 28] [ 9] [D00002000] +11:04:55 [ 32] [ 6] [668899] +11:04:55 [ 35] [ 32] [6213541000122831=491212012283178] +11:04:55 [ 37] [ 12] [507902294724] +11:04:55 [ 41] [ 8] [03009006] +11:04:55 [ 42] [ 15] [APT ] +11:04:55 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:04:55 [ 49] [ 3] [418] +11:04:55 [ 52] [ 16] [FC8D3107655F6F6D] +11:04:55 ============================================================================ +11:04:55 + + +waiting on router queue for slot.... +11:04:55 Sending to : +11:04:55 ============================================================================ +11:04:55 ============================================================================ +11:04:55 Slot Id : <474> +11:04:55 Transaction Type : REQUEST +11:04:55 Received From : +11:04:55 ============================================================================ +11:04:55 FNo. Len. Field Value +11:04:55 ============================================================================ +11:04:55 [ 1] [ 4] [0200] +11:04:55 [ 2] [ 16] [6213541000122831] +11:04:55 [ 3] [ 6] [010000] +11:04:55 [ 4] [ 12] [000100000000] +11:04:55 [ 7] [ 10] [0320110245] +11:04:55 [ 11] [ 6] [940240] +11:04:55 [ 12] [ 6] [110245] +11:04:55 [ 13] [ 4] [0320] +11:04:55 [ 15] [ 4] [0320] +11:04:55 [ 18] [ 4] [6011] +11:04:55 [ 19] [ 3] [418] +11:04:55 [ 22] [ 3] [021] +11:04:55 [ 25] [ 2] [01] +11:04:55 [ 28] [ 9] [D00002000] +11:04:55 [ 32] [ 6] [668899] +11:04:55 [ 35] [ 32] [6213541000122831=491212012283178] +11:04:55 [ 37] [ 12] [507902294724] +11:04:55 [ 41] [ 8] [03009006] +11:04:55 [ 42] [ 15] [APT ] +11:04:55 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:04:55 [ 49] [ 3] [418] +11:04:55 [ 52] [ 16] [441E430ED55ECF77] +11:04:55 ============================================================================ +11:04:55 + + +waiting on router queue for slot.... +11:04:55 Sending to : <0> +11:04:55 ============================================================================ +11:04:55 ============================================================================ +11:04:55 Slot Id : <486> +11:04:55 Transaction Type : REQUEST +11:04:55 Received From : +11:04:55 ============================================================================ +11:04:55 FNo. Len. Field Value +11:04:55 ============================================================================ +11:04:55 [ 1] [ 4] [0800] +11:04:55 [ 7] [ 10] [0320041242] +11:04:55 [ 11] [ 6] [039916] +11:04:55 [ 37] [ 12] [57911039916] +11:04:55 [ 70] [ 3] [301] +11:04:55 ============================================================================ +11:04:55 + + +waiting on router queue for slot.... +11:04:55 Sending to : +11:04:55 ============================================================================ +11:04:55 ============================================================================ +11:04:55 Slot Id : <486> +11:04:55 Transaction Type : RESPONSE +11:04:55 Received From : +11:04:55 ============================================================================ +11:04:55 FNo. Len. Field Value +11:04:55 ============================================================================ +11:04:55 [ 1] [ 4] [0810] +11:04:55 [ 7] [ 10] [0320041242] +11:04:55 [ 11] [ 6] [039916] +11:04:55 [ 37] [ 12] [579110399160] +11:04:55 [ 39] [ 2] [00] +11:04:55 [ 70] [ 3] [810] +11:04:55 ============================================================================ +11:04:55 Calculate Source COMM Id = 1 +11:04:55 ============================================================================ +11:04:55 + + +waiting on router queue for slot.... +11:04:55 ============================================================================ +11:04:55 Slot Id : <474> +11:04:55 Transaction Type : RESPONSE +11:04:55 Received From : +11:04:55 ============================================================================ +11:04:55 FNo. Len. Field Value +11:04:55 ============================================================================ +11:04:55 [ 1] [ 4] [0210] +11:04:55 [ 2] [ 16] [6213541000122831] +11:04:55 [ 3] [ 6] [010000] +11:04:55 [ 4] [ 12] [000100000000] +11:04:55 [ 7] [ 10] [0320110245] +11:04:55 [ 11] [ 6] [940240] +11:04:55 [ 12] [ 6] [110245] +11:04:55 [ 13] [ 4] [0320] +11:04:55 [ 15] [ 4] [0320] +11:04:55 [ 18] [ 4] [6011] +11:04:55 [ 19] [ 3] [418] +11:04:55 [ 32] [ 6] [668899] +11:04:55 [ 35] [ 32] [6213541000122831=491212012283178] +11:04:55 [ 37] [ 12] [507902294724] +11:04:55 [ 38] [ 6] [998431] +11:04:55 [ 39] [ 2] [00] +11:04:55 [ 41] [ 8] [03009006] +11:04:55 [ 49] [ 3] [418] +11:04:55 [ 54] [ 40] [0001418C0078478905700002418C007847890570] +11:04:55 ============================================================================ +11:04:55 Sending to : +11:04:55 ============================================================================ +11:04:55 + + +waiting on router queue for slot.... +11:04:57 ============================================================================ +11:04:57 Slot Id : <474> +11:04:57 Transaction Type : RESPONSE +11:04:57 Received From : +11:04:57 ============================================================================ +11:04:57 FNo. Len. Field Value +11:04:57 ============================================================================ +11:04:57 [ 1] [ 4] [0210] +11:04:57 [ 2] [ 16] [6213541000122831] +11:04:57 [ 3] [ 6] [010000] +11:04:57 [ 4] [ 12] [000100000000] +11:04:57 [ 7] [ 10] [0320110245] +11:04:57 [ 11] [ 6] [940240] +11:04:57 [ 12] [ 6] [110245] +11:04:57 [ 13] [ 4] [0320] +11:04:57 [ 15] [ 4] [0320] +11:04:57 [ 18] [ 4] [6011] +11:04:57 [ 19] [ 3] [418] +11:04:57 [ 32] [ 6] [668899] +11:04:57 [ 35] [ 32] [6213541000122831=491212012283178] +11:04:57 [ 37] [ 12] [507902294724] +11:04:57 [ 38] [ 6] [998431] +11:04:57 [ 39] [ 2] [00] +11:04:57 [ 41] [ 8] [03009006] +11:04:57 [ 49] [ 3] [418] +11:04:57 [ 54] [ 40] [0001418C0078478905700002418C007847890570] +11:04:57 ============================================================================ +11:04:57 Calculate Source COMM Id = 4 +11:04:57 ============================================================================ +11:04:57 + + +waiting on router queue for slot.... +11:04:58 ============================================================================ +11:04:58 Slot Id : <472> +11:04:58 Transaction Type : REQUEST +11:04:58 Received From : +11:04:58 ============================================================================ +11:04:58 FNo. Len. Field Value +11:04:58 ============================================================================ +11:04:58 [ 1] [ 4] [0800] +11:04:58 [ 7] [ 10] [0320040406] +11:04:58 [ 11] [ 6] [156003] +11:04:58 [ 70] [ 3] [301] +11:04:58 ============================================================================ +11:04:58 + + +waiting on router queue for slot.... +11:04:58 Sending to : +11:04:58 ============================================================================ +11:04:58 ============================================================================ +11:04:58 Slot Id : <472> +11:04:58 Transaction Type : RESPONSE +11:04:58 Received From : +11:04:58 ============================================================================ +11:04:58 FNo. Len. Field Value +11:04:58 ============================================================================ +11:04:58 [ 1] [ 4] [0810] +11:04:58 [ 7] [ 10] [0320040406] +11:04:58 [ 11] [ 6] [156003] +11:04:58 [ 39] [ 2] [00] +11:04:58 [ 70] [ 3] [301] +11:04:58 ============================================================================ +11:04:58 Calculate Source COMM Id = 2 +11:04:58 ============================================================================ +11:04:58 + + +waiting on router queue for slot.... +11:05:04 ============================================================================ +11:05:04 Slot Id : <477> +11:05:04 Transaction Type : REQUEST +11:05:04 Received From : +11:05:04 ============================================================================ +11:05:04 FNo. Len. Field Value +11:05:04 ============================================================================ +11:05:04 [ 1] [ 4] [0800] +11:05:04 [ 2] [ 5] [02531] +11:05:04 [ 3] [ 6] [579118] +11:05:04 [ 7] [ 10] [0320040504] +11:05:04 [ 11] [ 6] [807055] +11:05:04 [ 15] [ 10] [0320040504] +11:05:04 [ 37] [ 11] [57911807055] +11:05:04 [ 70] [ 3] [001] +11:05:04 ============================================================================ +11:05:04 + + +waiting on router queue for slot.... +11:05:04 ============================================================================ +11:05:04 Slot Id : <477> +11:05:04 Transaction Type : RESPONSE +11:05:04 Received From : +11:05:04 ============================================================================ +11:05:04 FNo. Len. Field Value +11:05:04 ============================================================================ +11:05:04 [ 1] [ 4] [0810] +11:05:04 [ 7] [ 10] [0320040504] +11:05:04 [ 11] [ 6] [807055] +11:05:04 [ 15] [ 4] [0320] +11:05:04 [ 37] [ 12] [57911807055] +11:05:04 [ 39] [ 2] [00] +11:05:04 [ 70] [ 3] [001] +11:05:04 ============================================================================ +11:05:04 Sending to : +11:05:04 ============================================================================ +11:05:04 + + +waiting on router queue for slot.... +11:05:11 ============================================================================ +11:05:11 Slot Id : <492> +11:05:11 Transaction Type : REQUEST +11:05:11 Received From : +11:05:11 ============================================================================ +11:05:11 FNo. Len. Field Value +11:05:11 ============================================================================ +11:05:11 [ 1] [ 4] [0800] +11:05:11 [ 7] [ 10] [0320040418] +11:05:11 [ 11] [ 6] [156004] +11:05:11 [ 70] [ 3] [301] +11:05:11 ============================================================================ +11:05:11 + + +waiting on router queue for slot.... +11:05:11 Sending to : +11:05:11 ============================================================================ +11:05:11 ============================================================================ +11:05:11 Slot Id : <492> +11:05:11 Transaction Type : RESPONSE +11:05:11 Received From : +11:05:11 ============================================================================ +11:05:11 FNo. Len. Field Value +11:05:11 ============================================================================ +11:05:11 [ 1] [ 4] [0810] +11:05:11 [ 7] [ 10] [0320040418] +11:05:11 [ 11] [ 6] [156004] +11:05:11 [ 39] [ 2] [00] +11:05:11 [ 70] [ 3] [301] +11:05:11 ============================================================================ +11:05:11 Calculate Source COMM Id = 2 +11:05:11 ============================================================================ +11:05:11 + + +waiting on router queue for slot.... +11:05:18 ============================================================================ +11:05:18 Slot Id : <6> +11:05:18 Transaction Type : REQUEST +11:05:18 Received From : +11:05:18 ============================================================================ +11:05:18 FNo. Len. Field Value +11:05:18 ============================================================================ +11:05:18 [ 1] [ 4] [0200] +11:05:18 [ 2] [ 16] [1808931300013024] +11:05:18 [ 3] [ 6] [012000] +11:05:18 [ 4] [ 12] [000100000000] +11:05:18 [ 7] [ 10] [0320110513] +11:05:18 [ 11] [ 6] [724034] +11:05:18 [ 12] [ 6] [110513] +11:05:18 [ 13] [ 4] [0320] +11:05:18 [ 15] [ 4] [0320] +11:05:18 [ 18] [ 4] [6011] +11:05:18 [ 22] [ 3] [900] +11:05:18 [ 25] [ 2] [02] +11:05:18 [ 28] [ 9] [D00002000] +11:05:18 [ 32] [ 6] [621354] +11:05:18 [ 35] [ 27] [1808931300013024=1803500295] +11:05:18 [ 37] [ 12] [507902706275] +11:05:18 [ 41] [ 8] [14000900] +11:05:18 [ 42] [ 15] [NATIVE ] +11:05:18 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +11:05:18 [ 49] [ 3] [418] +11:05:18 [ 52] [ 16] [F6649D724B4858F6] +11:05:18 ============================================================================ +11:05:18 + + +waiting on router queue for slot.... +11:05:18 Sending to : +11:05:18 ============================================================================ +11:05:18 Sending to : +11:05:18 ============================================================================ +11:05:18 ============================================================================ +11:05:18 Slot Id : <6> +11:05:18 Transaction Type : REQUEST +11:05:18 Received From : +11:05:18 ============================================================================ +11:05:18 FNo. Len. Field Value +11:05:18 ============================================================================ +11:05:18 [ 1] [ 4] [0200] +11:05:18 [ 2] [ 16] [1808931300013024] +11:05:18 [ 3] [ 6] [012000] +11:05:18 [ 4] [ 12] [000100000000] +11:05:18 [ 7] [ 10] [0320110513] +11:05:18 [ 11] [ 6] [724034] +11:05:18 [ 12] [ 6] [110513] +11:05:18 [ 13] [ 4] [0320] +11:05:18 [ 15] [ 4] [0320] +11:05:18 [ 18] [ 4] [6011] +11:05:18 [ 22] [ 3] [900] +11:05:18 [ 25] [ 2] [02] +11:05:18 [ 28] [ 9] [D00002000] +11:05:18 [ 32] [ 6] [621354] +11:05:18 [ 35] [ 27] [1808931300013024=1803500295] +11:05:18 [ 37] [ 12] [507902706275] +11:05:18 [ 41] [ 8] [14000900] +11:05:18 [ 42] [ 15] [NATIVE ] +11:05:18 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +11:05:18 [ 49] [ 3] [418] +11:05:18 [ 52] [ 16] [F6649D724B4858F6] +11:05:18 ============================================================================ +11:05:18 + + +waiting on router queue for slot.... +11:05:18 Sending to : +11:05:18 ============================================================================ +11:05:18 ============================================================================ +11:05:18 Slot Id : <6> +11:05:18 Transaction Type : REQUEST +11:05:18 Received From : +11:05:18 ============================================================================ +11:05:18 FNo. Len. Field Value +11:05:18 ============================================================================ +11:05:18 [ 1] [ 4] [0200] +11:05:18 [ 2] [ 16] [1808931300013024] +11:05:18 [ 3] [ 6] [012000] +11:05:18 [ 4] [ 12] [000100000000] +11:05:18 [ 7] [ 10] [0320110513] +11:05:18 [ 11] [ 6] [724034] +11:05:18 [ 12] [ 6] [110513] +11:05:18 [ 13] [ 4] [0320] +11:05:18 [ 15] [ 4] [0320] +11:05:18 [ 18] [ 4] [6011] +11:05:18 [ 22] [ 3] [900] +11:05:18 [ 25] [ 2] [02] +11:05:18 [ 28] [ 9] [D00002000] +11:05:18 [ 32] [ 6] [621354] +11:05:18 [ 35] [ 27] [1808931300013024=1803500295] +11:05:18 [ 37] [ 12] [507902706275] +11:05:18 [ 41] [ 8] [14000900] +11:05:18 [ 42] [ 15] [NATIVE ] +11:05:18 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +11:05:18 [ 49] [ 3] [418] +11:05:18 [ 52] [ 16] [C411FC79F9FF1001] +11:05:18 ============================================================================ +11:05:18 + + +waiting on router queue for slot.... +11:05:18 Sending to : <2> +11:05:18 ============================================================================ +11:05:19 ============================================================================ +11:05:19 Slot Id : <6> +11:05:19 Transaction Type : RESPONSE +11:05:19 Received From : +11:05:19 ============================================================================ +11:05:19 FNo. Len. Field Value +11:05:19 ============================================================================ +11:05:19 [ 1] [ 4] [0210] +11:05:19 [ 2] [ 16] [1808931300013024] +11:05:19 [ 3] [ 6] [012000] +11:05:19 [ 4] [ 12] [000100000000] +11:05:19 [ 7] [ 10] [0320110513] +11:05:19 [ 11] [ 6] [724034] +11:05:19 [ 12] [ 6] [110513] +11:05:19 [ 13] [ 4] [0320] +11:05:19 [ 18] [ 4] [6011] +11:05:19 [ 19] [ 3] [418] +11:05:19 [ 22] [ 3] [021] +11:05:19 [ 28] [ 9] [D00002000] +11:05:19 [ 32] [ 6] [621354] +11:05:19 [ 35] [ 27] [1808931300013024=1803500295] +11:05:19 [ 37] [ 12] [507902706275] +11:05:19 [ 39] [ 2] [42] +11:05:19 [ 41] [ 8] [14000900] +11:05:19 [ 49] [ 3] [418] +11:05:19 [ 52] [ 16] [C411FC79F9FF1001] +11:05:19 ============================================================================ +11:05:19 Sending to : +11:05:19 ============================================================================ +11:05:19 + + +waiting on router queue for slot.... +11:05:20 ============================================================================ +11:05:20 Slot Id : <6> +11:05:20 Transaction Type : RESPONSE +11:05:20 Received From : +11:05:20 ============================================================================ +11:05:20 FNo. Len. Field Value +11:05:20 ============================================================================ +11:05:20 [ 1] [ 4] [0210] +11:05:20 [ 2] [ 16] [1808931300013024] +11:05:20 [ 3] [ 6] [012000] +11:05:20 [ 4] [ 12] [000100000000] +11:05:20 [ 7] [ 10] [0320110513] +11:05:20 [ 11] [ 6] [724034] +11:05:20 [ 12] [ 6] [110513] +11:05:20 [ 13] [ 4] [0320] +11:05:20 [ 18] [ 4] [6011] +11:05:20 [ 19] [ 3] [418] +11:05:20 [ 22] [ 3] [021] +11:05:20 [ 28] [ 9] [D00002000] +11:05:20 [ 32] [ 6] [621354] +11:05:20 [ 35] [ 27] [1808931300013024=1803500295] +11:05:20 [ 37] [ 12] [507902706275] +11:05:20 [ 39] [ 2] [42] +11:05:20 [ 41] [ 8] [14000900] +11:05:20 [ 49] [ 3] [418] +11:05:20 [ 52] [ 16] [C411FC79F9FF1001] +11:05:20 ============================================================================ +11:05:20 Calculate Source COMM Id = 0 +11:05:20 ============================================================================ +11:05:20 + + +waiting on router queue for slot.... +11:05:32 ============================================================================ +11:05:32 Slot Id : <485> +11:05:32 Transaction Type : REQUEST +11:05:32 Received From : +11:05:32 ============================================================================ +11:05:32 FNo. Len. Field Value +11:05:32 ============================================================================ +11:05:32 [ 1] [ 4] [0800] +11:05:32 [ 7] [ 10] [0320040440] +11:05:32 [ 11] [ 6] [156005] +11:05:32 [ 70] [ 3] [301] +11:05:32 ============================================================================ +11:05:32 + + +waiting on router queue for slot.... +11:05:32 Sending to : +11:05:32 ============================================================================ +11:05:32 ============================================================================ +11:05:32 Slot Id : <485> +11:05:32 Transaction Type : RESPONSE +11:05:32 Received From : +11:05:32 ============================================================================ +11:05:32 FNo. Len. Field Value +11:05:32 ============================================================================ +11:05:32 [ 1] [ 4] [0810] +11:05:32 [ 7] [ 10] [0320040440] +11:05:32 [ 11] [ 6] [156005] +11:05:32 [ 39] [ 2] [00] +11:05:32 [ 70] [ 3] [301] +11:05:32 ============================================================================ +11:05:32 Calculate Source COMM Id = 2 +11:05:32 ============================================================================ +11:05:32 + + +waiting on router queue for slot.... +11:05:46 ============================================================================ +11:05:46 Slot Id : <454> +11:05:46 Transaction Type : REQUEST +11:05:46 Received From : +11:05:46 ============================================================================ +11:05:46 FNo. Len. Field Value +11:05:46 ============================================================================ +11:05:46 [ 1] [ 4] [0200] +11:05:46 [ 2] [ 16] [1808930400013884] +11:05:46 [ 3] [ 6] [010000] +11:05:46 [ 4] [ 12] [000010000000] +11:05:46 [ 7] [ 10] [0320110337] +11:05:46 [ 11] [ 6] [940276] +11:05:46 [ 12] [ 6] [110337] +11:05:46 [ 13] [ 4] [0320] +11:05:46 [ 15] [ 4] [0320] +11:05:46 [ 18] [ 4] [6011] +11:05:46 [ 19] [ 3] [418] +11:05:46 [ 22] [ 3] [021] +11:05:46 [ 25] [ 2] [01] +11:05:46 [ 28] [ 9] [D00002000] +11:05:46 [ 32] [ 6] [668899] +11:05:46 [ 35] [ 27] [1808930400013884=1803500634] +11:05:46 [ 37] [ 12] [507901856316] +11:05:46 [ 41] [ 8] [03311001] +11:05:46 [ 42] [ 15] [APT ] +11:05:46 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:05:46 [ 49] [ 3] [418] +11:05:46 [ 52] [ 16] [CC4B4C5C0AA006E5] +11:05:46 ============================================================================ +11:05:46 + + +waiting on router queue for slot.... +11:05:46 Sending to : +11:05:46 ============================================================================ +11:05:46 Sending to : +11:05:46 ============================================================================ +11:05:47 ============================================================================ +11:05:47 Slot Id : <454> +11:05:47 Transaction Type : REQUEST +11:05:47 Received From : +11:05:47 ============================================================================ +11:05:47 FNo. Len. Field Value +11:05:47 ============================================================================ +11:05:47 [ 1] [ 4] [0200] +11:05:47 [ 2] [ 16] [1808930400013884] +11:05:47 [ 3] [ 6] [010000] +11:05:47 [ 4] [ 12] [000010000000] +11:05:47 [ 7] [ 10] [0320110337] +11:05:47 [ 11] [ 6] [940276] +11:05:47 [ 12] [ 6] [110337] +11:05:47 [ 13] [ 4] [0320] +11:05:47 [ 15] [ 4] [0320] +11:05:47 [ 18] [ 4] [6011] +11:05:47 [ 19] [ 3] [418] +11:05:47 [ 22] [ 3] [021] +11:05:47 [ 25] [ 2] [01] +11:05:47 [ 28] [ 9] [D00002000] +11:05:47 [ 32] [ 6] [668899] +11:05:47 [ 35] [ 27] [1808930400013884=1803500634] +11:05:47 [ 37] [ 12] [507901856316] +11:05:47 [ 41] [ 8] [03311001] +11:05:47 [ 42] [ 15] [APT ] +11:05:47 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:05:47 [ 49] [ 3] [418] +11:05:47 [ 52] [ 16] [CC4B4C5C0AA006E5] +11:05:47 ============================================================================ +11:05:47 + + +waiting on router queue for slot.... +11:05:47 Sending to : +11:05:47 ============================================================================ +11:05:47 ============================================================================ +11:05:47 Slot Id : <454> +11:05:47 Transaction Type : REQUEST +11:05:47 Received From : +11:05:47 ============================================================================ +11:05:47 FNo. Len. Field Value +11:05:47 ============================================================================ +11:05:47 [ 1] [ 4] [0200] +11:05:47 [ 2] [ 16] [1808930400013884] +11:05:47 [ 3] [ 6] [010000] +11:05:47 [ 4] [ 12] [000010000000] +11:05:47 [ 7] [ 10] [0320110337] +11:05:47 [ 11] [ 6] [940276] +11:05:47 [ 12] [ 6] [110337] +11:05:47 [ 13] [ 4] [0320] +11:05:47 [ 15] [ 4] [0320] +11:05:47 [ 18] [ 4] [6011] +11:05:47 [ 19] [ 3] [418] +11:05:47 [ 22] [ 3] [021] +11:05:47 [ 25] [ 2] [01] +11:05:47 [ 28] [ 9] [D00002000] +11:05:47 [ 32] [ 6] [668899] +11:05:47 [ 35] [ 27] [1808930400013884=1803500634] +11:05:47 [ 37] [ 12] [507901856316] +11:05:47 [ 41] [ 8] [03311001] +11:05:47 [ 42] [ 15] [APT ] +11:05:47 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:05:47 [ 49] [ 3] [418] +11:05:47 [ 52] [ 16] [0900EBBEA3DB63C9] +11:05:47 ============================================================================ +11:05:47 + + +waiting on router queue for slot.... +11:05:47 Sending to : <2> +11:05:47 ============================================================================ +11:05:47 ============================================================================ +11:05:47 Slot Id : <14> +11:05:47 Transaction Type : REQUEST +11:05:47 Received From : +11:05:47 ============================================================================ +11:05:47 FNo. Len. Field Value +11:05:47 ============================================================================ +11:05:47 [ 1] [ 4] [0800] +11:05:47 [ 7] [ 10] [0320040454] +11:05:47 [ 11] [ 6] [156006] +11:05:47 [ 70] [ 3] [301] +11:05:47 ============================================================================ +11:05:47 + + +waiting on router queue for slot.... +11:05:47 Sending to : +11:05:47 ============================================================================ +11:05:47 ============================================================================ +11:05:47 Slot Id : <14> +11:05:47 Transaction Type : RESPONSE +11:05:47 Received From : +11:05:47 ============================================================================ +11:05:47 FNo. Len. Field Value +11:05:47 ============================================================================ +11:05:47 [ 1] [ 4] [0810] +11:05:47 [ 7] [ 10] [0320040454] +11:05:47 [ 11] [ 6] [156006] +11:05:47 [ 39] [ 2] [00] +11:05:47 [ 70] [ 3] [301] +11:05:47 ============================================================================ +11:05:47 Calculate Source COMM Id = 2 +11:05:47 ============================================================================ +11:05:47 + + +waiting on router queue for slot.... +11:05:51 ============================================================================ +11:05:51 Slot Id : <13> +11:05:51 Transaction Type : REQUEST +11:05:51 Received From : +11:05:51 ============================================================================ +11:05:51 FNo. Len. Field Value +11:05:51 ============================================================================ +11:05:51 [ 1] [ 4] [0200] +11:05:51 [ 2] [ 16] [6213541000122831] +11:05:51 [ 3] [ 6] [010000] +11:05:51 [ 4] [ 12] [000100000000] +11:05:51 [ 7] [ 10] [0320110342] +11:05:51 [ 11] [ 6] [940279] +11:05:51 [ 12] [ 6] [110342] +11:05:51 [ 13] [ 4] [0320] +11:05:51 [ 15] [ 4] [0320] +11:05:51 [ 18] [ 4] [6011] +11:05:51 [ 19] [ 3] [418] +11:05:51 [ 22] [ 3] [021] +11:05:51 [ 25] [ 2] [01] +11:05:51 [ 28] [ 9] [D00002000] +11:05:51 [ 32] [ 6] [668899] +11:05:51 [ 35] [ 32] [6213541000122831=491212012283178] +11:05:51 [ 37] [ 12] [507902294726] +11:05:51 [ 41] [ 8] [03009006] +11:05:51 [ 42] [ 15] [APT ] +11:05:51 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:05:51 [ 49] [ 3] [418] +11:05:51 [ 52] [ 16] [FC8D3107655F6F6D] +11:05:51 ============================================================================ +11:05:51 + + +waiting on router queue for slot.... +11:05:51 Sending to : +11:05:51 ============================================================================ +11:05:51 Sending to : +11:05:51 ============================================================================ +11:05:51 ============================================================================ +11:05:51 Slot Id : <454> +11:05:51 Transaction Type : RESPONSE +11:05:51 Received From : +11:05:51 ============================================================================ +11:05:51 FNo. Len. Field Value +11:05:51 ============================================================================ +11:05:51 [ 1] [ 4] [0210] +11:05:51 [ 2] [ 16] [1808930400013884] +11:05:51 [ 3] [ 6] [010000] +11:05:51 [ 4] [ 12] [000010000000] +11:05:51 [ 6] [ 12] [000010000000] +11:05:51 [ 7] [ 10] [0320110337] +11:05:51 [ 11] [ 6] [940276] +11:05:51 [ 12] [ 6] [110337] +11:05:51 [ 13] [ 4] [0320] +11:05:51 [ 18] [ 4] [6011] +11:05:51 [ 19] [ 3] [418] +11:05:51 [ 22] [ 3] [021] +11:05:51 [ 32] [ 6] [668899] +11:05:51 [ 35] [ 27] [1808930400013884=1803500634] +11:05:51 [ 37] [ 12] [507901856316] +11:05:51 [ 38] [ 6] [940276] +11:05:51 [ 39] [ 2] [00] +11:05:51 [ 41] [ 8] [03311001] +11:05:51 [ 49] [ 3] [418] +11:05:51 [ 52] [ 16] [0900EBBEA3DB63C9] +11:05:51 [ 54] [ 20] [1001418C000010383700] +11:05:51 ============================================================================ +11:05:51 Sending to : +11:05:51 ============================================================================ +11:05:51 + + +waiting on router queue for slot.... +11:05:52 ============================================================================ +11:05:52 Slot Id : <13> +11:05:52 Transaction Type : REQUEST +11:05:52 Received From : +11:05:52 ============================================================================ +11:05:52 FNo. Len. Field Value +11:05:52 ============================================================================ +11:05:52 [ 1] [ 4] [0200] +11:05:52 [ 2] [ 16] [6213541000122831] +11:05:52 [ 3] [ 6] [010000] +11:05:52 [ 4] [ 12] [000100000000] +11:05:52 [ 7] [ 10] [0320110342] +11:05:52 [ 11] [ 6] [940279] +11:05:52 [ 12] [ 6] [110342] +11:05:52 [ 13] [ 4] [0320] +11:05:52 [ 15] [ 4] [0320] +11:05:52 [ 18] [ 4] [6011] +11:05:52 [ 19] [ 3] [418] +11:05:52 [ 22] [ 3] [021] +11:05:52 [ 25] [ 2] [01] +11:05:52 [ 28] [ 9] [D00002000] +11:05:52 [ 32] [ 6] [668899] +11:05:52 [ 35] [ 32] [6213541000122831=491212012283178] +11:05:52 [ 37] [ 12] [507902294726] +11:05:52 [ 41] [ 8] [03009006] +11:05:52 [ 42] [ 15] [APT ] +11:05:52 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:05:52 [ 49] [ 3] [418] +11:05:52 [ 52] [ 16] [FC8D3107655F6F6D] +11:05:52 ============================================================================ +11:05:52 + + +waiting on router queue for slot.... +11:05:52 Sending to : +11:05:52 ============================================================================ +11:05:52 ============================================================================ +11:05:52 Slot Id : <13> +11:05:52 Transaction Type : REQUEST +11:05:52 Received From : +11:05:52 ============================================================================ +11:05:52 FNo. Len. Field Value +11:05:52 ============================================================================ +11:05:52 [ 1] [ 4] [0200] +11:05:52 [ 2] [ 16] [6213541000122831] +11:05:52 [ 3] [ 6] [010000] +11:05:52 [ 4] [ 12] [000100000000] +11:05:52 [ 7] [ 10] [0320110342] +11:05:52 [ 11] [ 6] [940279] +11:05:52 [ 12] [ 6] [110342] +11:05:52 [ 13] [ 4] [0320] +11:05:52 [ 15] [ 4] [0320] +11:05:52 [ 18] [ 4] [6011] +11:05:52 [ 19] [ 3] [418] +11:05:52 [ 22] [ 3] [021] +11:05:52 [ 25] [ 2] [01] +11:05:52 [ 28] [ 9] [D00002000] +11:05:52 [ 32] [ 6] [668899] +11:05:52 [ 35] [ 32] [6213541000122831=491212012283178] +11:05:52 [ 37] [ 12] [507902294726] +11:05:52 [ 41] [ 8] [03009006] +11:05:52 [ 42] [ 15] [APT ] +11:05:52 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:05:52 [ 49] [ 3] [418] +11:05:52 [ 52] [ 16] [441E430ED55ECF77] +11:05:52 ============================================================================ +11:05:52 + + +waiting on router queue for slot.... +11:05:52 Sending to : <0> +11:05:52 ============================================================================ +11:05:52 ============================================================================ +11:05:52 Slot Id : <13> +11:05:52 Transaction Type : RESPONSE +11:05:52 Received From : +11:05:52 ============================================================================ +11:05:52 FNo. Len. Field Value +11:05:52 ============================================================================ +11:05:52 [ 1] [ 4] [0210] +11:05:52 [ 2] [ 16] [6213541000122831] +11:05:52 [ 3] [ 6] [010000] +11:05:52 [ 4] [ 12] [000100000000] +11:05:52 [ 7] [ 10] [0320110342] +11:05:52 [ 11] [ 6] [940279] +11:05:52 [ 12] [ 6] [110342] +11:05:52 [ 13] [ 4] [0320] +11:05:52 [ 15] [ 4] [0320] +11:05:52 [ 18] [ 4] [6011] +11:05:52 [ 19] [ 3] [418] +11:05:52 [ 32] [ 6] [668899] +11:05:52 [ 35] [ 32] [6213541000122831=491212012283178] +11:05:52 [ 37] [ 12] [507902294726] +11:05:52 [ 38] [ 6] [933553] +11:05:52 [ 39] [ 2] [00] +11:05:52 [ 41] [ 8] [03009006] +11:05:52 [ 49] [ 3] [418] +11:05:52 [ 54] [ 40] [0001418C0077476905700002418C007747690570] +11:05:52 ============================================================================ +11:05:52 Sending to : +11:05:52 ============================================================================ +11:05:52 + + +waiting on router queue for slot.... +11:05:53 ============================================================================ +11:05:53 Slot Id : <454> +11:05:53 Transaction Type : RESPONSE +11:05:53 Received From : +11:05:53 ============================================================================ +11:05:53 FNo. Len. Field Value +11:05:53 ============================================================================ +11:05:53 [ 1] [ 4] [0210] +11:05:53 [ 2] [ 16] [1808930400013884] +11:05:53 [ 3] [ 6] [010000] +11:05:53 [ 4] [ 12] [000010000000] +11:05:53 [ 6] [ 12] [000010000000] +11:05:53 [ 7] [ 10] [0320110337] +11:05:53 [ 11] [ 6] [940276] +11:05:53 [ 12] [ 6] [110337] +11:05:53 [ 13] [ 4] [0320] +11:05:53 [ 18] [ 4] [6011] +11:05:53 [ 19] [ 3] [418] +11:05:53 [ 22] [ 3] [021] +11:05:53 [ 32] [ 6] [668899] +11:05:53 [ 35] [ 27] [1808930400013884=1803500634] +11:05:53 [ 37] [ 12] [507901856316] +11:05:53 [ 38] [ 6] [940276] +11:05:53 [ 39] [ 2] [00] +11:05:53 [ 41] [ 8] [03311001] +11:05:53 [ 49] [ 3] [418] +11:05:53 [ 52] [ 16] [0900EBBEA3DB63C9] +11:05:53 [ 54] [ 20] [1001418C000010383700] +11:05:53 ============================================================================ +11:05:53 Calculate Source COMM Id = 4 +11:05:53 ============================================================================ +11:05:53 + + +waiting on router queue for slot.... +11:05:55 ============================================================================ +11:05:55 Slot Id : <13> +11:05:55 Transaction Type : RESPONSE +11:05:55 Received From : +11:05:55 ============================================================================ +11:05:55 FNo. Len. Field Value +11:05:55 ============================================================================ +11:05:55 [ 1] [ 4] [0210] +11:05:55 [ 2] [ 16] [6213541000122831] +11:05:55 [ 3] [ 6] [010000] +11:05:55 [ 4] [ 12] [000100000000] +11:05:55 [ 7] [ 10] [0320110342] +11:05:55 [ 11] [ 6] [940279] +11:05:55 [ 12] [ 6] [110342] +11:05:55 [ 13] [ 4] [0320] +11:05:55 [ 15] [ 4] [0320] +11:05:55 [ 18] [ 4] [6011] +11:05:55 [ 19] [ 3] [418] +11:05:55 [ 32] [ 6] [668899] +11:05:55 [ 35] [ 32] [6213541000122831=491212012283178] +11:05:55 [ 37] [ 12] [507902294726] +11:05:55 [ 38] [ 6] [933553] +11:05:55 [ 39] [ 2] [00] +11:05:55 [ 41] [ 8] [03009006] +11:05:55 [ 49] [ 3] [418] +11:05:55 [ 54] [ 40] [0001418C0077476905700002418C007747690570] +11:05:55 ============================================================================ +11:05:55 Calculate Source COMM Id = 4 +11:05:55 ============================================================================ +11:05:55 + + +waiting on router queue for slot.... +11:05:57 ============================================================================ +11:05:57 Slot Id : <12> +11:05:57 Transaction Type : REQUEST +11:05:57 Received From : +11:05:57 ============================================================================ +11:05:57 FNo. Len. Field Value +11:05:57 ============================================================================ +11:05:57 [ 1] [ 4] [0200] +11:05:57 [ 2] [ 16] [6688990020018428] +11:05:57 [ 3] [ 6] [301000] +11:05:57 [ 4] [ 12] [000000000000] +11:05:57 [ 7] [ 10] [0320110553] +11:05:57 [ 11] [ 6] [724191] +11:05:57 [ 12] [ 6] [110553] +11:05:57 [ 13] [ 4] [0320] +11:05:57 [ 15] [ 4] [0320] +11:05:57 [ 18] [ 4] [6011] +11:05:57 [ 22] [ 3] [900] +11:05:57 [ 25] [ 2] [02] +11:05:57 [ 28] [ 9] [D00000000] +11:05:57 [ 32] [ 6] [621354] +11:05:57 [ 35] [ 37] [6688990020018428=98011261483746700000] +11:05:57 [ 37] [ 12] [507904807601] +11:05:57 [ 41] [ 8] [07001600] +11:05:57 [ 42] [ 15] [NATIVE ] +11:05:57 [ 43] [ 40] [Long District Long LAO] +11:05:57 [ 49] [ 3] [418] +11:05:57 [ 52] [ 16] [76D046006B89BE40] +11:05:57 ============================================================================ +11:05:57 + + +waiting on router queue for slot.... +11:05:57 Sending to : +11:05:57 ============================================================================ +11:05:57 Sending to : +11:05:57 ============================================================================ +11:05:58 ============================================================================ +11:05:58 Slot Id : <12> +11:05:58 Transaction Type : REQUEST +11:05:58 Received From : +11:05:58 ============================================================================ +11:05:58 FNo. Len. Field Value +11:05:58 ============================================================================ +11:05:58 [ 1] [ 4] [0200] +11:05:58 [ 2] [ 16] [6688990020018428] +11:05:58 [ 3] [ 6] [301000] +11:05:58 [ 4] [ 12] [000000000000] +11:05:58 [ 7] [ 10] [0320110553] +11:05:58 [ 11] [ 6] [724191] +11:05:58 [ 12] [ 6] [110553] +11:05:58 [ 13] [ 4] [0320] +11:05:58 [ 15] [ 4] [0320] +11:05:58 [ 18] [ 4] [6011] +11:05:58 [ 22] [ 3] [900] +11:05:58 [ 25] [ 2] [02] +11:05:58 [ 28] [ 9] [D00000000] +11:05:58 [ 32] [ 6] [621354] +11:05:58 [ 35] [ 37] [6688990020018428=98011261483746700000] +11:05:58 [ 37] [ 12] [507904807601] +11:05:58 [ 41] [ 8] [07001600] +11:05:58 [ 42] [ 15] [NATIVE ] +11:05:58 [ 43] [ 40] [Long District Long LAO] +11:05:58 [ 49] [ 3] [418] +11:05:58 [ 52] [ 16] [76D046006B89BE40] +11:05:58 ============================================================================ +11:05:58 + + +waiting on router queue for slot.... +11:05:58 Sending to : +11:05:58 ============================================================================ +11:05:58 ============================================================================ +11:05:58 Slot Id : <12> +11:05:58 Transaction Type : REQUEST +11:05:58 Received From : +11:05:58 ============================================================================ +11:05:58 FNo. Len. Field Value +11:05:58 ============================================================================ +11:05:58 [ 1] [ 4] [0200] +11:05:58 [ 2] [ 16] [6688990020018428] +11:05:58 [ 3] [ 6] [301000] +11:05:58 [ 4] [ 12] [000000000000] +11:05:58 [ 7] [ 10] [0320110553] +11:05:58 [ 11] [ 6] [724191] +11:05:58 [ 12] [ 6] [110553] +11:05:58 [ 13] [ 4] [0320] +11:05:58 [ 15] [ 4] [0320] +11:05:58 [ 18] [ 4] [6011] +11:05:58 [ 22] [ 3] [900] +11:05:58 [ 25] [ 2] [02] +11:05:58 [ 28] [ 9] [D00000000] +11:05:58 [ 32] [ 6] [621354] +11:05:58 [ 35] [ 37] [6688990020018428=98011261483746700000] +11:05:58 [ 37] [ 12] [507904807601] +11:05:58 [ 41] [ 8] [07001600] +11:05:58 [ 42] [ 15] [NATIVE ] +11:05:58 [ 43] [ 40] [Long District Long LAO] +11:05:58 [ 49] [ 3] [418] +11:05:58 [ 52] [ 16] [183BF891B6C03AA0] +11:05:58 ============================================================================ +11:05:58 + + +waiting on router queue for slot.... +11:05:58 Sending to : <4> +11:05:58 ============================================================================ +11:05:58 ============================================================================ +11:05:58 Slot Id : <12> +11:05:58 Transaction Type : RESPONSE +11:05:58 Received From : +11:05:58 ============================================================================ +11:05:58 FNo. Len. Field Value +11:05:58 ============================================================================ +11:05:58 [ 1] [ 4] [0210] +11:05:58 [ 2] [ 16] [6688990020018428] +11:05:58 [ 3] [ 6] [301000] +11:05:58 [ 4] [ 12] [000000000000] +11:05:58 [ 11] [ 6] [724191] +11:05:58 [ 12] [ 6] [110553] +11:05:58 [ 15] [ 4] [0320] +11:05:58 [ 18] [ 4] [6011] +11:05:58 [ 32] [ 6] [621354] +11:05:58 [ 35] [ 37] [6688990020018428=98011261483746700000] +11:05:58 [ 37] [ 12] [507904807601] +11:05:58 [ 38] [ 6] [925561] +11:05:58 [ 39] [ 2] [00] +11:05:58 [ 41] [ 8] [07001600] +11:05:58 [ 49] [ 3] [418] +11:05:58 [ 54] [ 20] [1002418C000133756154] +11:05:58 ============================================================================ +11:05:58 Sending to : +11:05:58 ============================================================================ +11:05:58 + + +waiting on router queue for slot.... +11:05:58 ============================================================================ +11:05:58 Slot Id : <16> +11:05:58 Transaction Type : REQUEST +11:05:58 Received From : +11:05:58 ============================================================================ +11:05:58 FNo. Len. Field Value +11:05:58 ============================================================================ +11:05:58 [ 1] [ 4] [0800] +11:05:58 [ 7] [ 10] [0320040506] +11:05:58 [ 11] [ 6] [156007] +11:05:58 [ 70] [ 3] [301] +11:05:58 ============================================================================ +11:05:58 + + +waiting on router queue for slot.... +11:05:58 Sending to : +11:05:58 ============================================================================ +11:05:58 ============================================================================ +11:05:58 Slot Id : <16> +11:05:58 Transaction Type : RESPONSE +11:05:58 Received From : +11:05:58 ============================================================================ +11:05:58 FNo. Len. Field Value +11:05:58 ============================================================================ +11:05:58 [ 1] [ 4] [0810] +11:05:58 [ 7] [ 10] [0320040506] +11:05:58 [ 11] [ 6] [156007] +11:05:58 [ 39] [ 2] [00] +11:05:58 [ 70] [ 3] [301] +11:05:58 ============================================================================ +11:05:58 Calculate Source COMM Id = 2 +11:05:58 ============================================================================ +11:05:58 + + +waiting on router queue for slot.... +11:06:00 ============================================================================ +11:06:00 Slot Id : <12> +11:06:00 Transaction Type : RESPONSE +11:06:00 Received From : +11:06:00 ============================================================================ +11:06:00 FNo. Len. Field Value +11:06:00 ============================================================================ +11:06:00 [ 1] [ 4] [0210] +11:06:00 [ 2] [ 16] [6688990020018428] +11:06:00 [ 3] [ 6] [301000] +11:06:00 [ 4] [ 12] [000000000000] +11:06:00 [ 11] [ 6] [724191] +11:06:00 [ 12] [ 6] [110553] +11:06:00 [ 15] [ 4] [0320] +11:06:00 [ 18] [ 4] [6011] +11:06:00 [ 32] [ 6] [621354] +11:06:00 [ 35] [ 37] [6688990020018428=98011261483746700000] +11:06:00 [ 37] [ 12] [507904807601] +11:06:00 [ 38] [ 6] [925561] +11:06:00 [ 39] [ 2] [00] +11:06:00 [ 41] [ 8] [07001600] +11:06:00 [ 49] [ 3] [418] +11:06:00 [ 54] [ 20] [1002418C000133756154] +11:06:00 ============================================================================ +11:06:00 Calculate Source COMM Id = 0 +11:06:00 ============================================================================ +11:06:00 + + +waiting on router queue for slot.... +11:06:04 ============================================================================ +11:06:04 Slot Id : <494> +11:06:04 Transaction Type : REQUEST +11:06:04 Received From : +11:06:04 ============================================================================ +11:06:04 FNo. Len. Field Value +11:06:04 ============================================================================ +11:06:04 [ 1] [ 4] [0200] +11:06:04 [ 2] [ 16] [1808931800013110] +11:06:04 [ 3] [ 6] [011000] +11:06:04 [ 4] [ 12] [000090000000] +11:06:04 [ 7] [ 10] [0320110600] +11:06:04 [ 11] [ 6] [724220] +11:06:04 [ 12] [ 6] [110600] +11:06:04 [ 13] [ 4] [0320] +11:06:04 [ 15] [ 4] [0320] +11:06:04 [ 18] [ 4] [6011] +11:06:04 [ 22] [ 3] [900] +11:06:04 [ 25] [ 2] [02] +11:06:04 [ 28] [ 9] [D00002000] +11:06:04 [ 32] [ 6] [621354] +11:06:04 [ 35] [ 27] [1808931800013110=1803500460] +11:06:04 [ 37] [ 12] [507904635571] +11:06:04 [ 41] [ 8] [17000800] +11:06:04 [ 42] [ 15] [NATIVE ] +11:06:04 [ 43] [ 40] [Ban Nakhai Naxay LAO] +11:06:04 [ 49] [ 3] [418] +11:06:04 [ 52] [ 16] [46AD6223B0A06E63] +11:06:04 ============================================================================ +11:06:04 + + +waiting on router queue for slot.... +11:06:04 Sending to : +11:06:04 ============================================================================ +11:06:04 Sending to : +11:06:04 ============================================================================ +11:06:04 ============================================================================ +11:06:04 Slot Id : <494> +11:06:04 Transaction Type : REQUEST +11:06:04 Received From : +11:06:04 ============================================================================ +11:06:04 FNo. Len. Field Value +11:06:04 ============================================================================ +11:06:04 [ 1] [ 4] [0200] +11:06:04 [ 2] [ 16] [1808931800013110] +11:06:04 [ 3] [ 6] [011000] +11:06:04 [ 4] [ 12] [000090000000] +11:06:04 [ 7] [ 10] [0320110600] +11:06:04 [ 11] [ 6] [724220] +11:06:04 [ 12] [ 6] [110600] +11:06:04 [ 13] [ 4] [0320] +11:06:04 [ 15] [ 4] [0320] +11:06:04 [ 18] [ 4] [6011] +11:06:04 [ 22] [ 3] [900] +11:06:04 [ 25] [ 2] [02] +11:06:04 [ 28] [ 9] [D00002000] +11:06:04 [ 32] [ 6] [621354] +11:06:04 [ 35] [ 27] [1808931800013110=1803500460] +11:06:04 [ 37] [ 12] [507904635571] +11:06:04 [ 41] [ 8] [17000800] +11:06:04 [ 42] [ 15] [NATIVE ] +11:06:04 [ 43] [ 40] [Ban Nakhai Naxay LAO] +11:06:04 [ 49] [ 3] [418] +11:06:04 [ 52] [ 16] [46AD6223B0A06E63] +11:06:04 ============================================================================ +11:06:04 + + +waiting on router queue for slot.... +11:06:04 Sending to : +11:06:04 ============================================================================ +11:06:04 ============================================================================ +11:06:04 Slot Id : <494> +11:06:04 Transaction Type : REQUEST +11:06:04 Received From : +11:06:04 ============================================================================ +11:06:04 FNo. Len. Field Value +11:06:04 ============================================================================ +11:06:04 [ 1] [ 4] [0200] +11:06:04 [ 2] [ 16] [1808931800013110] +11:06:04 [ 3] [ 6] [011000] +11:06:04 [ 4] [ 12] [000090000000] +11:06:04 [ 7] [ 10] [0320110600] +11:06:04 [ 11] [ 6] [724220] +11:06:04 [ 12] [ 6] [110600] +11:06:04 [ 13] [ 4] [0320] +11:06:04 [ 15] [ 4] [0320] +11:06:04 [ 18] [ 4] [6011] +11:06:04 [ 22] [ 3] [900] +11:06:04 [ 25] [ 2] [02] +11:06:04 [ 28] [ 9] [D00002000] +11:06:04 [ 32] [ 6] [621354] +11:06:04 [ 35] [ 27] [1808931800013110=1803500460] +11:06:04 [ 37] [ 12] [507904635571] +11:06:04 [ 41] [ 8] [17000800] +11:06:04 [ 42] [ 15] [NATIVE ] +11:06:04 [ 43] [ 40] [Ban Nakhai Naxay LAO] +11:06:04 [ 49] [ 3] [418] +11:06:04 [ 52] [ 16] [9CF86F44870B988C] +11:06:04 ============================================================================ +11:06:04 + + +waiting on router queue for slot.... +11:06:04 Sending to : <2> +11:06:04 ============================================================================ +11:06:04 ============================================================================ +11:06:04 Slot Id : <22> +11:06:04 Transaction Type : REQUEST +11:06:04 Received From : +11:06:04 ============================================================================ +11:06:04 FNo. Len. Field Value +11:06:04 ============================================================================ +11:06:04 [ 1] [ 4] [0200] +11:06:04 [ 2] [ 16] [6213544001952446] +11:06:04 [ 3] [ 6] [301000] +11:06:04 [ 7] [ 10] [0320040511] +11:06:04 [ 11] [ 6] [268342] +11:06:04 [ 12] [ 6] [110511] +11:06:04 [ 13] [ 4] [0320] +11:06:04 [ 14] [ 4] [4912] +11:06:04 [ 15] [ 4] [0320] +11:06:04 [ 18] [ 4] [6011] +11:06:04 [ 19] [ 3] [418] +11:06:04 [ 22] [ 3] [021] +11:06:04 [ 25] [ 2] [01] +11:06:04 [ 32] [ 6] [180893] +11:06:04 [ 35] [ 32] [6213544001952446=491212015244797] +11:06:04 [ 37] [ 12] [507904268342] +11:06:04 [ 41] [ 8] [0381CPSP] +11:06:04 [ 42] [ 15] [999999 ] +11:06:04 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +11:06:04 [ 49] [ 3] [418] +11:06:04 [ 52] [ 16] [47383C0AF71C4024] +11:06:04 ============================================================================ +11:06:04 + + +waiting on router queue for slot.... +11:06:04 Sending to : +11:06:04 ============================================================================ +11:06:04 Sending to : +11:06:04 ============================================================================ +11:06:05 ============================================================================ +11:06:05 Slot Id : <22> +11:06:05 Transaction Type : REQUEST +11:06:05 Received From : +11:06:05 ============================================================================ +11:06:05 FNo. Len. Field Value +11:06:05 ============================================================================ +11:06:05 [ 1] [ 4] [0200] +11:06:05 [ 2] [ 16] [6213544001952446] +11:06:05 [ 3] [ 6] [301000] +11:06:05 [ 7] [ 10] [0320040511] +11:06:05 [ 11] [ 6] [268342] +11:06:05 [ 12] [ 6] [110511] +11:06:05 [ 13] [ 4] [0320] +11:06:05 [ 14] [ 4] [4912] +11:06:05 [ 15] [ 4] [0320] +11:06:05 [ 18] [ 4] [6011] +11:06:05 [ 19] [ 3] [418] +11:06:05 [ 22] [ 3] [021] +11:06:05 [ 25] [ 2] [01] +11:06:05 [ 32] [ 6] [180893] +11:06:05 [ 35] [ 32] [6213544001952446=491212015244797] +11:06:05 [ 37] [ 12] [507904268342] +11:06:05 [ 41] [ 8] [0381CPSP] +11:06:05 [ 42] [ 15] [999999 ] +11:06:05 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +11:06:05 [ 49] [ 3] [418] +11:06:05 [ 52] [ 16] [47383C0AF71C4024] +11:06:05 ============================================================================ +11:06:05 + + +waiting on router queue for slot.... +11:06:05 Sending to : +11:06:05 ============================================================================ +11:06:05 ============================================================================ +11:06:05 Slot Id : <22> +11:06:05 Transaction Type : REQUEST +11:06:05 Received From : +11:06:05 ============================================================================ +11:06:05 FNo. Len. Field Value +11:06:05 ============================================================================ +11:06:05 [ 1] [ 4] [0200] +11:06:05 [ 2] [ 16] [6213544001952446] +11:06:05 [ 3] [ 6] [301000] +11:06:05 [ 7] [ 10] [0320040511] +11:06:05 [ 11] [ 6] [268342] +11:06:05 [ 12] [ 6] [110511] +11:06:05 [ 13] [ 4] [0320] +11:06:05 [ 14] [ 4] [4912] +11:06:05 [ 15] [ 4] [0320] +11:06:05 [ 18] [ 4] [6011] +11:06:05 [ 19] [ 3] [418] +11:06:05 [ 22] [ 3] [021] +11:06:05 [ 25] [ 2] [01] +11:06:05 [ 32] [ 6] [180893] +11:06:05 [ 35] [ 32] [6213544001952446=491212015244797] +11:06:05 [ 37] [ 12] [507904268342] +11:06:05 [ 41] [ 8] [0381CPSP] +11:06:05 [ 42] [ 15] [999999 ] +11:06:05 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +11:06:05 [ 49] [ 3] [418] +11:06:05 [ 52] [ 16] [3BA0A9D288282876] +11:06:05 ============================================================================ +11:06:05 + + +waiting on router queue for slot.... +11:06:05 Sending to : <0> +11:06:05 ============================================================================ +11:06:05 ============================================================================ +11:06:05 Slot Id : <22> +11:06:05 Transaction Type : RESPONSE +11:06:05 Received From : +11:06:05 ============================================================================ +11:06:05 FNo. Len. Field Value +11:06:05 ============================================================================ +11:06:05 [ 1] [ 4] [0210] +11:06:05 [ 2] [ 16] [6213544001952446] +11:06:05 [ 3] [ 6] [301000] +11:06:05 [ 4] [ 12] [000000000000] +11:06:05 [ 7] [ 10] [0320040511] +11:06:05 [ 11] [ 6] [268342] +11:06:05 [ 12] [ 6] [110511] +11:06:05 [ 13] [ 4] [0320] +11:06:05 [ 15] [ 4] [0320] +11:06:05 [ 18] [ 4] [6011] +11:06:05 [ 19] [ 3] [418] +11:06:05 [ 32] [ 6] [180893] +11:06:05 [ 35] [ 32] [6213544001952446=491212015244797] +11:06:05 [ 37] [ 12] [507904268342] +11:06:05 [ 38] [ 6] [055322] +11:06:05 [ 39] [ 2] [00] +11:06:05 [ 41] [ 8] [0381CPSP] +11:06:05 [ 49] [ 3] [418] +11:06:05 [ 54] [ 40] [1001418C0080903772691002418C008090377269] +11:06:05 ============================================================================ +11:06:05 Sending to : +11:06:05 ============================================================================ +11:06:05 + + +waiting on router queue for slot.... +11:06:06 ============================================================================ +11:06:06 Slot Id : <469> +11:06:06 Transaction Type : REQUEST +11:06:06 Received From : +11:06:06 ============================================================================ +11:06:06 FNo. Len. Field Value +11:06:06 ============================================================================ +11:06:06 [ 1] [ 4] [0800] +11:06:06 [ 2] [ 5] [02531] +11:06:06 [ 3] [ 6] [579118] +11:06:06 [ 7] [ 10] [0320040606] +11:06:06 [ 11] [ 6] [807056] +11:06:06 [ 15] [ 10] [0320040606] +11:06:06 [ 37] [ 11] [57911807056] +11:06:06 [ 70] [ 3] [001] +11:06:06 ============================================================================ +11:06:06 + + +waiting on router queue for slot.... +11:06:06 ============================================================================ +11:06:06 Slot Id : <469> +11:06:06 Transaction Type : RESPONSE +11:06:06 Received From : +11:06:06 ============================================================================ +11:06:06 FNo. Len. Field Value +11:06:06 ============================================================================ +11:06:06 [ 1] [ 4] [0810] +11:06:06 [ 7] [ 10] [0320040606] +11:06:06 [ 11] [ 6] [807056] +11:06:06 [ 15] [ 4] [0320] +11:06:06 [ 37] [ 12] [57911807056] +11:06:06 [ 39] [ 2] [00] +11:06:06 [ 70] [ 3] [001] +11:06:06 ============================================================================ +11:06:06 Sending to : +11:06:06 ============================================================================ +11:06:06 + + +waiting on router queue for slot.... +11:06:06 ============================================================================ +11:06:06 Slot Id : <22> +11:06:06 Transaction Type : RESPONSE +11:06:06 Received From : +11:06:06 ============================================================================ +11:06:06 FNo. Len. Field Value +11:06:06 ============================================================================ +11:06:06 [ 1] [ 4] [0210] +11:06:06 [ 2] [ 16] [6213544001952446] +11:06:06 [ 3] [ 6] [301000] +11:06:06 [ 4] [ 12] [000000000000] +11:06:06 [ 7] [ 10] [0320040511] +11:06:06 [ 11] [ 6] [268342] +11:06:06 [ 12] [ 6] [110511] +11:06:06 [ 13] [ 4] [0320] +11:06:06 [ 15] [ 4] [0320] +11:06:06 [ 18] [ 4] [6011] +11:06:06 [ 19] [ 3] [418] +11:06:06 [ 32] [ 6] [180893] +11:06:06 [ 35] [ 32] [6213544001952446=491212015244797] +11:06:06 [ 37] [ 12] [507904268342] +11:06:06 [ 38] [ 6] [055322] +11:06:06 [ 39] [ 2] [00] +11:06:06 [ 41] [ 8] [0381CPSP] +11:06:06 [ 49] [ 3] [418] +11:06:06 [ 54] [ 40] [1001418C0080903772691002418C008090377269] +11:06:06 ============================================================================ +11:06:06 Calculate Source COMM Id = 2 +11:06:06 ============================================================================ +11:06:06 + + +waiting on router queue for slot.... +11:06:07 ============================================================================ +11:06:07 Slot Id : <494> +11:06:07 Transaction Type : RESPONSE +11:06:07 Received From : +11:06:07 ============================================================================ +11:06:07 FNo. Len. Field Value +11:06:07 ============================================================================ +11:06:07 [ 1] [ 4] [0210] +11:06:07 [ 2] [ 16] [1808931800013110] +11:06:07 [ 3] [ 6] [011000] +11:06:07 [ 4] [ 12] [000090000000] +11:06:07 [ 6] [ 12] [000090000000] +11:06:07 [ 7] [ 10] [0320110600] +11:06:07 [ 11] [ 6] [724220] +11:06:07 [ 12] [ 6] [110600] +11:06:07 [ 13] [ 4] [0320] +11:06:07 [ 18] [ 4] [6011] +11:06:07 [ 19] [ 3] [418] +11:06:07 [ 22] [ 3] [021] +11:06:07 [ 32] [ 6] [621354] +11:06:07 [ 35] [ 27] [1808931800013110=1803500460] +11:06:07 [ 37] [ 12] [507904635571] +11:06:07 [ 38] [ 6] [724220] +11:06:07 [ 39] [ 2] [00] +11:06:07 [ 41] [ 8] [17000800] +11:06:07 [ 49] [ 3] [418] +11:06:07 [ 52] [ 16] [9CF86F44870B988C] +11:06:07 [ 54] [ 20] [1001418C000005047200] +11:06:07 ============================================================================ +11:06:07 Sending to : +11:06:07 ============================================================================ +11:06:07 + + +waiting on router queue for slot.... +11:06:09 ============================================================================ +11:06:09 Slot Id : <494> +11:06:09 Transaction Type : RESPONSE +11:06:09 Received From : +11:06:09 ============================================================================ +11:06:09 FNo. Len. Field Value +11:06:09 ============================================================================ +11:06:09 [ 1] [ 4] [0210] +11:06:09 [ 2] [ 16] [1808931800013110] +11:06:09 [ 3] [ 6] [011000] +11:06:09 [ 4] [ 12] [000090000000] +11:06:09 [ 6] [ 12] [000090000000] +11:06:09 [ 7] [ 10] [0320110600] +11:06:09 [ 11] [ 6] [724220] +11:06:09 [ 12] [ 6] [110600] +11:06:09 [ 13] [ 4] [0320] +11:06:09 [ 18] [ 4] [6011] +11:06:09 [ 19] [ 3] [418] +11:06:09 [ 22] [ 3] [021] +11:06:09 [ 32] [ 6] [621354] +11:06:09 [ 35] [ 27] [1808931800013110=1803500460] +11:06:09 [ 37] [ 12] [507904635571] +11:06:09 [ 38] [ 6] [724220] +11:06:09 [ 39] [ 2] [00] +11:06:09 [ 41] [ 8] [17000800] +11:06:09 [ 49] [ 3] [418] +11:06:09 [ 52] [ 16] [9CF86F44870B988C] +11:06:09 [ 54] [ 20] [1001418C000005047200] +11:06:09 ============================================================================ +11:06:09 Calculate Source COMM Id = 0 +11:06:09 ============================================================================ +11:06:09 + + +waiting on router queue for slot.... +11:06:21 ============================================================================ +11:06:21 Slot Id : <491> +11:06:21 Transaction Type : REQUEST +11:06:21 Received From : +11:06:21 ============================================================================ +11:06:21 FNo. Len. Field Value +11:06:21 ============================================================================ +11:06:21 [ 1] [ 4] [0800] +11:06:21 [ 7] [ 10] [0320040528] +11:06:21 [ 11] [ 6] [156008] +11:06:21 [ 70] [ 3] [301] +11:06:21 ============================================================================ +11:06:21 + + +waiting on router queue for slot.... +11:06:21 Sending to : +11:06:21 ============================================================================ +11:06:21 ============================================================================ +11:06:21 Slot Id : <491> +11:06:21 Transaction Type : RESPONSE +11:06:21 Received From : +11:06:21 ============================================================================ +11:06:21 FNo. Len. Field Value +11:06:21 ============================================================================ +11:06:21 [ 1] [ 4] [0810] +11:06:21 [ 7] [ 10] [0320040528] +11:06:21 [ 11] [ 6] [156008] +11:06:21 [ 39] [ 2] [00] +11:06:21 [ 70] [ 3] [301] +11:06:21 ============================================================================ +11:06:21 Calculate Source COMM Id = 2 +11:06:21 ============================================================================ +11:06:21 + + +waiting on router queue for slot.... +11:06:21 ============================================================================ +11:06:21 Slot Id : <499> +11:06:21 Transaction Type : REQUEST +11:06:21 Received From : +11:06:21 ============================================================================ +11:06:21 FNo. Len. Field Value +11:06:21 ============================================================================ +11:06:21 [ 1] [ 4] [0800] +11:06:21 [ 7] [ 10] [0320040412] +11:06:21 [ 11] [ 6] [081036] +11:06:21 [ 37] [ 12] [57911081036] +11:06:21 [ 70] [ 3] [301] +11:06:21 ============================================================================ +11:06:21 + + +waiting on router queue for slot.... +11:06:21 Sending to : +11:06:21 ============================================================================ +11:06:21 ============================================================================ +11:06:21 Slot Id : <499> +11:06:21 Transaction Type : RESPONSE +11:06:21 Received From : +11:06:21 ============================================================================ +11:06:21 FNo. Len. Field Value +11:06:21 ============================================================================ +11:06:21 [ 1] [ 4] [0810] +11:06:21 [ 7] [ 10] [0320040412] +11:06:21 [ 11] [ 6] [081036] +11:06:21 [ 37] [ 12] [579110810360] +11:06:21 [ 39] [ 2] [00] +11:06:21 [ 70] [ 3] [810] +11:06:21 ============================================================================ +11:06:21 Calculate Source COMM Id = 4 +11:06:21 ============================================================================ +11:06:21 + + +waiting on router queue for slot.... +11:06:31 ============================================================================ +11:06:31 Slot Id : <17> +11:06:31 Transaction Type : REQUEST +11:06:31 Received From : +11:06:31 ============================================================================ +11:06:31 FNo. Len. Field Value +11:06:31 ============================================================================ +11:06:31 [ 1] [ 4] [0800] +11:06:31 [ 7] [ 10] [0320040539] +11:06:31 [ 11] [ 6] [156009] +11:06:31 [ 70] [ 3] [301] +11:06:31 ============================================================================ +11:06:31 + + +waiting on router queue for slot.... +11:06:31 Sending to : +11:06:31 ============================================================================ +11:06:31 ============================================================================ +11:06:31 Slot Id : <17> +11:06:31 Transaction Type : RESPONSE +11:06:31 Received From : +11:06:31 ============================================================================ +11:06:31 FNo. Len. Field Value +11:06:31 ============================================================================ +11:06:31 [ 1] [ 4] [0810] +11:06:31 [ 7] [ 10] [0320040539] +11:06:31 [ 11] [ 6] [156009] +11:06:31 [ 39] [ 2] [00] +11:06:31 [ 70] [ 3] [301] +11:06:31 ============================================================================ +11:06:31 Calculate Source COMM Id = 2 +11:06:31 ============================================================================ +11:06:31 + + +waiting on router queue for slot.... +11:06:42 ============================================================================ +11:06:42 Slot Id : <31> +11:06:42 Transaction Type : REQUEST +11:06:42 Received From : +11:06:42 ============================================================================ +11:06:42 FNo. Len. Field Value +11:06:42 ============================================================================ +11:06:42 [ 1] [ 4] [0800] +11:06:42 [ 7] [ 10] [0320040549] +11:06:42 [ 11] [ 6] [156010] +11:06:42 [ 70] [ 3] [301] +11:06:42 ============================================================================ +11:06:42 + + +waiting on router queue for slot.... +11:06:42 Sending to : +11:06:42 ============================================================================ +11:06:42 ============================================================================ +11:06:42 Slot Id : <31> +11:06:42 Transaction Type : RESPONSE +11:06:42 Received From : +11:06:42 ============================================================================ +11:06:42 FNo. Len. Field Value +11:06:42 ============================================================================ +11:06:42 [ 1] [ 4] [0810] +11:06:42 [ 7] [ 10] [0320040549] +11:06:42 [ 11] [ 6] [156010] +11:06:42 [ 39] [ 2] [00] +11:06:42 [ 70] [ 3] [301] +11:06:42 ============================================================================ +11:06:42 Calculate Source COMM Id = 2 +11:06:42 ============================================================================ +11:06:42 + + +waiting on router queue for slot.... +11:06:53 ============================================================================ +11:06:53 Slot Id : <10> +11:06:53 Transaction Type : REQUEST +11:06:53 Received From : +11:06:53 ============================================================================ +11:06:53 FNo. Len. Field Value +11:06:53 ============================================================================ +11:06:53 [ 1] [ 4] [0800] +11:06:53 [ 7] [ 10] [0320040601] +11:06:53 [ 11] [ 6] [156011] +11:06:53 [ 70] [ 3] [301] +11:06:53 ============================================================================ +11:06:53 + + +waiting on router queue for slot.... +11:06:53 Sending to : +11:06:53 ============================================================================ +11:06:53 ============================================================================ +11:06:53 Slot Id : <10> +11:06:53 Transaction Type : RESPONSE +11:06:53 Received From : +11:06:53 ============================================================================ +11:06:53 FNo. Len. Field Value +11:06:53 ============================================================================ +11:06:53 [ 1] [ 4] [0810] +11:06:53 [ 7] [ 10] [0320040601] +11:06:53 [ 11] [ 6] [156011] +11:06:53 [ 39] [ 2] [00] +11:06:53 [ 70] [ 3] [301] +11:06:53 ============================================================================ +11:06:53 Calculate Source COMM Id = 2 +11:06:53 ============================================================================ +11:06:53 + + +waiting on router queue for slot.... +11:06:59 ============================================================================ +11:06:59 Slot Id : <481> +11:06:59 Transaction Type : REQUEST +11:06:59 Received From : +11:06:59 ============================================================================ +11:06:59 FNo. Len. Field Value +11:06:59 ============================================================================ +11:06:59 [ 1] [ 4] [0200] +11:06:59 [ 2] [ 16] [6688990602739409] +11:06:59 [ 3] [ 6] [301000] +11:06:59 [ 4] [ 12] [000000000000] +11:06:59 [ 7] [ 10] [0320110655] +11:06:59 [ 11] [ 6] [724438] +11:06:59 [ 12] [ 6] [110655] +11:06:59 [ 13] [ 4] [0320] +11:06:59 [ 15] [ 4] [0320] +11:06:59 [ 18] [ 4] [6011] +11:06:59 [ 22] [ 3] [900] +11:06:59 [ 25] [ 2] [02] +11:06:59 [ 28] [ 9] [D00000000] +11:06:59 [ 32] [ 6] [621354] +11:06:59 [ 35] [ 37] [6688990602739409=43100061940943000000] +11:06:59 [ 37] [ 12] [507904660571] +11:06:59 [ 41] [ 8] [17001100] +11:06:59 [ 42] [ 15] [NATIVE ] +11:06:59 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +11:06:59 [ 49] [ 3] [418] +11:06:59 [ 52] [ 16] [79F582B0DDA7BE0C] +11:06:59 ============================================================================ +11:06:59 + + +waiting on router queue for slot.... +11:06:59 Sending to : +11:06:59 ============================================================================ +11:06:59 Sending to : +11:06:59 ============================================================================ +11:06:59 ============================================================================ +11:06:59 Slot Id : <481> +11:06:59 Transaction Type : REQUEST +11:06:59 Received From : +11:06:59 ============================================================================ +11:06:59 FNo. Len. Field Value +11:06:59 ============================================================================ +11:06:59 [ 1] [ 4] [0200] +11:06:59 [ 2] [ 16] [6688990602739409] +11:06:59 [ 3] [ 6] [301000] +11:06:59 [ 4] [ 12] [000000000000] +11:06:59 [ 7] [ 10] [0320110655] +11:06:59 [ 11] [ 6] [724438] +11:06:59 [ 12] [ 6] [110655] +11:06:59 [ 13] [ 4] [0320] +11:06:59 [ 15] [ 4] [0320] +11:06:59 [ 18] [ 4] [6011] +11:06:59 [ 22] [ 3] [900] +11:06:59 [ 25] [ 2] [02] +11:06:59 [ 28] [ 9] [D00000000] +11:06:59 [ 32] [ 6] [621354] +11:06:59 [ 35] [ 37] [6688990602739409=43100061940943000000] +11:06:59 [ 37] [ 12] [507904660571] +11:06:59 [ 41] [ 8] [17001100] +11:06:59 [ 42] [ 15] [NATIVE ] +11:06:59 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +11:06:59 [ 49] [ 3] [418] +11:06:59 [ 52] [ 16] [79F582B0DDA7BE0C] +11:06:59 ============================================================================ +11:06:59 + + +waiting on router queue for slot.... +11:06:59 Sending to : +11:06:59 ============================================================================ +11:06:59 ============================================================================ +11:06:59 Slot Id : <481> +11:06:59 Transaction Type : REQUEST +11:06:59 Received From : +11:06:59 ============================================================================ +11:06:59 FNo. Len. Field Value +11:06:59 ============================================================================ +11:06:59 [ 1] [ 4] [0200] +11:06:59 [ 2] [ 16] [6688990602739409] +11:06:59 [ 3] [ 6] [301000] +11:06:59 [ 4] [ 12] [000000000000] +11:06:59 [ 7] [ 10] [0320110655] +11:06:59 [ 11] [ 6] [724438] +11:06:59 [ 12] [ 6] [110655] +11:06:59 [ 13] [ 4] [0320] +11:06:59 [ 15] [ 4] [0320] +11:06:59 [ 18] [ 4] [6011] +11:06:59 [ 22] [ 3] [900] +11:06:59 [ 25] [ 2] [02] +11:06:59 [ 28] [ 9] [D00000000] +11:06:59 [ 32] [ 6] [621354] +11:06:59 [ 35] [ 37] [6688990602739409=43100061940943000000] +11:06:59 [ 37] [ 12] [507904660571] +11:06:59 [ 41] [ 8] [17001100] +11:06:59 [ 42] [ 15] [NATIVE ] +11:06:59 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +11:06:59 [ 49] [ 3] [418] +11:06:59 [ 52] [ 16] [2C9C2E335AEC5E4B] +11:06:59 ============================================================================ +11:06:59 + + +waiting on router queue for slot.... +11:06:59 Sending to : <4> +11:06:59 ============================================================================ +11:06:59 ============================================================================ +11:06:59 Slot Id : <481> +11:06:59 Transaction Type : RESPONSE +11:06:59 Received From : +11:06:59 ============================================================================ +11:06:59 FNo. Len. Field Value +11:06:59 ============================================================================ +11:06:59 [ 1] [ 4] [0210] +11:06:59 [ 2] [ 16] [6688990602739409] +11:06:59 [ 3] [ 6] [301000] +11:06:59 [ 4] [ 12] [000000000000] +11:06:59 [ 7] [ 10] [0320110655] +11:06:59 [ 11] [ 6] [724438] +11:06:59 [ 12] [ 6] [110655] +11:06:59 [ 13] [ 4] [0320] +11:06:59 [ 15] [ 4] [0320] +11:06:59 [ 18] [ 4] [6011] +11:06:59 [ 22] [ 3] [021] +11:06:59 [ 32] [ 6] [621354] +11:06:59 [ 35] [ 37] [6688990602739409=43100061940943000000] +11:06:59 [ 37] [ 12] [507904660571] +11:06:59 [ 38] [ 6] [110450] +11:06:59 [ 39] [ 2] [55] +11:06:59 [ 41] [ 8] [17001100] +11:06:59 [ 49] [ 3] [418] +11:06:59 ============================================================================ +11:06:59 Sending to : +11:06:59 ============================================================================ +11:06:59 + + +waiting on router queue for slot.... +11:07:00 ============================================================================ +11:07:00 Slot Id : <481> +11:07:00 Transaction Type : RESPONSE +11:07:00 Received From : +11:07:00 ============================================================================ +11:07:00 FNo. Len. Field Value +11:07:00 ============================================================================ +11:07:00 [ 1] [ 4] [0210] +11:07:00 [ 2] [ 16] [6688990602739409] +11:07:00 [ 3] [ 6] [301000] +11:07:00 [ 4] [ 12] [000000000000] +11:07:00 [ 7] [ 10] [0320110655] +11:07:00 [ 11] [ 6] [724438] +11:07:00 [ 12] [ 6] [110655] +11:07:00 [ 13] [ 4] [0320] +11:07:00 [ 15] [ 4] [0320] +11:07:00 [ 18] [ 4] [6011] +11:07:00 [ 22] [ 3] [021] +11:07:00 [ 32] [ 6] [621354] +11:07:00 [ 35] [ 37] [6688990602739409=43100061940943000000] +11:07:00 [ 37] [ 12] [507904660571] +11:07:00 [ 38] [ 6] [110450] +11:07:00 [ 39] [ 2] [55] +11:07:00 [ 41] [ 8] [17001100] +11:07:00 [ 49] [ 3] [418] +11:07:00 ============================================================================ +11:07:00 Calculate Source COMM Id = 0 +11:07:00 ============================================================================ +11:07:00 + + +waiting on router queue for slot.... +11:07:04 ============================================================================ +11:07:04 Slot Id : <29> +11:07:04 Transaction Type : REQUEST +11:07:04 Received From : +11:07:04 ============================================================================ +11:07:04 FNo. Len. Field Value +11:07:04 ============================================================================ +11:07:04 [ 1] [ 4] [0800] +11:07:04 [ 7] [ 10] [0320040612] +11:07:04 [ 11] [ 6] [156012] +11:07:04 [ 70] [ 3] [301] +11:07:04 ============================================================================ +11:07:04 + + +waiting on router queue for slot.... +11:07:04 Sending to : +11:07:04 ============================================================================ +11:07:04 ============================================================================ +11:07:04 Slot Id : <29> +11:07:04 Transaction Type : RESPONSE +11:07:04 Received From : +11:07:04 ============================================================================ +11:07:04 FNo. Len. Field Value +11:07:04 ============================================================================ +11:07:04 [ 1] [ 4] [0810] +11:07:04 [ 7] [ 10] [0320040612] +11:07:04 [ 11] [ 6] [156012] +11:07:04 [ 39] [ 2] [00] +11:07:04 [ 70] [ 3] [301] +11:07:04 ============================================================================ +11:07:04 Calculate Source COMM Id = 2 +11:07:04 ============================================================================ +11:07:04 + + +waiting on router queue for slot.... +11:07:08 ============================================================================ +11:07:08 Slot Id : <3> +11:07:08 Transaction Type : REQUEST +11:07:08 Received From : +11:07:08 ============================================================================ +11:07:08 FNo. Len. Field Value +11:07:08 ============================================================================ +11:07:08 [ 1] [ 4] [0800] +11:07:08 [ 2] [ 5] [02531] +11:07:08 [ 3] [ 6] [579118] +11:07:08 [ 7] [ 10] [0320040708] +11:07:08 [ 11] [ 6] [807057] +11:07:08 [ 15] [ 10] [0320040708] +11:07:08 [ 37] [ 11] [57911807057] +11:07:08 [ 70] [ 3] [001] +11:07:08 ============================================================================ +11:07:08 + + +waiting on router queue for slot.... +11:07:08 ============================================================================ +11:07:08 Slot Id : <3> +11:07:08 Transaction Type : RESPONSE +11:07:08 Received From : +11:07:08 ============================================================================ +11:07:08 FNo. Len. Field Value +11:07:08 ============================================================================ +11:07:08 [ 1] [ 4] [0810] +11:07:08 [ 7] [ 10] [0320040708] +11:07:08 [ 11] [ 6] [807057] +11:07:08 [ 15] [ 4] [0320] +11:07:08 [ 37] [ 12] [57911807057] +11:07:08 [ 39] [ 2] [00] +11:07:08 [ 70] [ 3] [001] +11:07:08 ============================================================================ +11:07:08 Sending to : +11:07:08 ============================================================================ +11:07:08 + + +waiting on router queue for slot.... +11:07:15 ============================================================================ +11:07:15 Slot Id : <23> +11:07:15 Transaction Type : REQUEST +11:07:15 Received From : +11:07:15 ============================================================================ +11:07:15 FNo. Len. Field Value +11:07:15 ============================================================================ +11:07:15 [ 1] [ 4] [0800] +11:07:15 [ 7] [ 10] [0320040623] +11:07:15 [ 11] [ 6] [156013] +11:07:15 [ 70] [ 3] [301] +11:07:15 ============================================================================ +11:07:15 + + +waiting on router queue for slot.... +11:07:15 Sending to : +11:07:15 ============================================================================ +11:07:15 ============================================================================ +11:07:15 Slot Id : <23> +11:07:15 Transaction Type : RESPONSE +11:07:15 Received From : +11:07:15 ============================================================================ +11:07:15 FNo. Len. Field Value +11:07:15 ============================================================================ +11:07:15 [ 1] [ 4] [0810] +11:07:15 [ 7] [ 10] [0320040623] +11:07:15 [ 11] [ 6] [156013] +11:07:15 [ 39] [ 2] [00] +11:07:15 [ 70] [ 3] [301] +11:07:15 ============================================================================ +11:07:15 Calculate Source COMM Id = 2 +11:07:15 ============================================================================ +11:07:15 + + +waiting on router queue for slot.... +11:07:18 ============================================================================ +11:07:18 Slot Id : <7> +11:07:18 Transaction Type : REQUEST +11:07:18 Received From : +11:07:18 ============================================================================ +11:07:18 FNo. Len. Field Value +11:07:18 ============================================================================ +11:07:18 [ 1] [ 4] [0200] +11:07:18 [ 2] [ 16] [6213541000122831] +11:07:18 [ 3] [ 6] [010000] +11:07:18 [ 4] [ 12] [000100000000] +11:07:18 [ 7] [ 10] [0320110509] +11:07:18 [ 11] [ 6] [940330] +11:07:18 [ 12] [ 6] [110509] +11:07:18 [ 13] [ 4] [0320] +11:07:18 [ 15] [ 4] [0320] +11:07:18 [ 18] [ 4] [6011] +11:07:18 [ 19] [ 3] [418] +11:07:18 [ 22] [ 3] [021] +11:07:18 [ 25] [ 2] [01] +11:07:18 [ 28] [ 9] [D00002000] +11:07:18 [ 32] [ 6] [668899] +11:07:18 [ 35] [ 32] [6213541000122831=491212012283178] +11:07:18 [ 37] [ 12] [507902294729] +11:07:18 [ 41] [ 8] [03009006] +11:07:18 [ 42] [ 15] [APT ] +11:07:18 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:07:18 [ 49] [ 3] [418] +11:07:18 [ 52] [ 16] [FC8D3107655F6F6D] +11:07:18 ============================================================================ +11:07:18 + + +waiting on router queue for slot.... +11:07:18 Sending to : +11:07:18 ============================================================================ +11:07:18 Sending to : +11:07:18 ============================================================================ +11:07:18 ============================================================================ +11:07:18 Slot Id : <7> +11:07:18 Transaction Type : REQUEST +11:07:18 Received From : +11:07:18 ============================================================================ +11:07:18 FNo. Len. Field Value +11:07:18 ============================================================================ +11:07:18 [ 1] [ 4] [0200] +11:07:18 [ 2] [ 16] [6213541000122831] +11:07:18 [ 3] [ 6] [010000] +11:07:18 [ 4] [ 12] [000100000000] +11:07:18 [ 7] [ 10] [0320110509] +11:07:18 [ 11] [ 6] [940330] +11:07:18 [ 12] [ 6] [110509] +11:07:18 [ 13] [ 4] [0320] +11:07:18 [ 15] [ 4] [0320] +11:07:18 [ 18] [ 4] [6011] +11:07:18 [ 19] [ 3] [418] +11:07:18 [ 22] [ 3] [021] +11:07:18 [ 25] [ 2] [01] +11:07:18 [ 28] [ 9] [D00002000] +11:07:18 [ 32] [ 6] [668899] +11:07:18 [ 35] [ 32] [6213541000122831=491212012283178] +11:07:18 [ 37] [ 12] [507902294729] +11:07:18 [ 41] [ 8] [03009006] +11:07:18 [ 42] [ 15] [APT ] +11:07:18 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:07:18 [ 49] [ 3] [418] +11:07:18 [ 52] [ 16] [FC8D3107655F6F6D] +11:07:18 ============================================================================ +11:07:18 + + +waiting on router queue for slot.... +11:07:18 Sending to : +11:07:18 ============================================================================ +11:07:18 ============================================================================ +11:07:18 Slot Id : <7> +11:07:18 Transaction Type : REQUEST +11:07:18 Received From : +11:07:18 ============================================================================ +11:07:18 FNo. Len. Field Value +11:07:18 ============================================================================ +11:07:18 [ 1] [ 4] [0200] +11:07:18 [ 2] [ 16] [6213541000122831] +11:07:18 [ 3] [ 6] [010000] +11:07:18 [ 4] [ 12] [000100000000] +11:07:18 [ 7] [ 10] [0320110509] +11:07:18 [ 11] [ 6] [940330] +11:07:18 [ 12] [ 6] [110509] +11:07:18 [ 13] [ 4] [0320] +11:07:18 [ 15] [ 4] [0320] +11:07:18 [ 18] [ 4] [6011] +11:07:18 [ 19] [ 3] [418] +11:07:18 [ 22] [ 3] [021] +11:07:18 [ 25] [ 2] [01] +11:07:18 [ 28] [ 9] [D00002000] +11:07:18 [ 32] [ 6] [668899] +11:07:18 [ 35] [ 32] [6213541000122831=491212012283178] +11:07:18 [ 37] [ 12] [507902294729] +11:07:18 [ 41] [ 8] [03009006] +11:07:18 [ 42] [ 15] [APT ] +11:07:18 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:07:18 [ 49] [ 3] [418] +11:07:18 [ 52] [ 16] [441E430ED55ECF77] +11:07:18 ============================================================================ +11:07:18 + + +waiting on router queue for slot.... +11:07:18 Sending to : <0> +11:07:18 ============================================================================ +11:07:19 ============================================================================ +11:07:19 Slot Id : <7> +11:07:19 Transaction Type : RESPONSE +11:07:19 Received From : +11:07:19 ============================================================================ +11:07:19 FNo. Len. Field Value +11:07:19 ============================================================================ +11:07:19 [ 1] [ 4] [0210] +11:07:19 [ 2] [ 16] [6213541000122831] +11:07:19 [ 3] [ 6] [010000] +11:07:19 [ 4] [ 12] [000100000000] +11:07:19 [ 7] [ 10] [0320110509] +11:07:19 [ 11] [ 6] [940330] +11:07:19 [ 12] [ 6] [110509] +11:07:19 [ 13] [ 4] [0320] +11:07:19 [ 15] [ 4] [0320] +11:07:19 [ 18] [ 4] [6011] +11:07:19 [ 19] [ 3] [418] +11:07:19 [ 32] [ 6] [668899] +11:07:19 [ 35] [ 32] [6213541000122831=491212012283178] +11:07:19 [ 37] [ 12] [507902294729] +11:07:19 [ 38] [ 6] [759647] +11:07:19 [ 39] [ 2] [00] +11:07:19 [ 41] [ 8] [03009006] +11:07:19 [ 49] [ 3] [418] +11:07:19 [ 54] [ 40] [0001418C0076474905700002418C007647490570] +11:07:19 ============================================================================ +11:07:19 Sending to : +11:07:19 ============================================================================ +11:07:19 + + +waiting on router queue for slot.... +11:07:20 ============================================================================ +11:07:20 Slot Id : <7> +11:07:20 Transaction Type : RESPONSE +11:07:20 Received From : +11:07:20 ============================================================================ +11:07:20 FNo. Len. Field Value +11:07:20 ============================================================================ +11:07:20 [ 1] [ 4] [0210] +11:07:20 [ 2] [ 16] [6213541000122831] +11:07:20 [ 3] [ 6] [010000] +11:07:20 [ 4] [ 12] [000100000000] +11:07:20 [ 7] [ 10] [0320110509] +11:07:20 [ 11] [ 6] [940330] +11:07:20 [ 12] [ 6] [110509] +11:07:20 [ 13] [ 4] [0320] +11:07:20 [ 15] [ 4] [0320] +11:07:20 [ 18] [ 4] [6011] +11:07:20 [ 19] [ 3] [418] +11:07:20 [ 32] [ 6] [668899] +11:07:20 [ 35] [ 32] [6213541000122831=491212012283178] +11:07:20 [ 37] [ 12] [507902294729] +11:07:20 [ 38] [ 6] [759647] +11:07:20 [ 39] [ 2] [00] +11:07:20 [ 41] [ 8] [03009006] +11:07:20 [ 49] [ 3] [418] +11:07:20 [ 54] [ 40] [0001418C0076474905700002418C007647490570] +11:07:20 ============================================================================ +11:07:20 Calculate Source COMM Id = 4 +11:07:20 ============================================================================ +11:07:20 + + +waiting on router queue for slot.... +11:07:26 ============================================================================ +11:07:26 Slot Id : <33> +11:07:26 Transaction Type : REQUEST +11:07:26 Received From : +11:07:26 ============================================================================ +11:07:26 FNo. Len. Field Value +11:07:26 ============================================================================ +11:07:26 [ 1] [ 4] [0800] +11:07:26 [ 7] [ 10] [0320040634] +11:07:26 [ 11] [ 6] [156014] +11:07:26 [ 70] [ 3] [301] +11:07:26 ============================================================================ +11:07:26 + + +waiting on router queue for slot.... +11:07:26 Sending to : +11:07:26 ============================================================================ +11:07:26 ============================================================================ +11:07:26 Slot Id : <33> +11:07:26 Transaction Type : RESPONSE +11:07:26 Received From : +11:07:26 ============================================================================ +11:07:26 FNo. Len. Field Value +11:07:26 ============================================================================ +11:07:26 [ 1] [ 4] [0810] +11:07:26 [ 7] [ 10] [0320040634] +11:07:26 [ 11] [ 6] [156014] +11:07:26 [ 39] [ 2] [00] +11:07:26 [ 70] [ 3] [301] +11:07:26 ============================================================================ +11:07:26 Calculate Source COMM Id = 2 +11:07:26 ============================================================================ +11:07:26 + + +waiting on router queue for slot.... +11:07:41 ============================================================================ +11:07:41 Slot Id : <21> +11:07:41 Transaction Type : REQUEST +11:07:41 Received From : +11:07:41 ============================================================================ +11:07:41 FNo. Len. Field Value +11:07:41 ============================================================================ +11:07:41 [ 1] [ 4] [0800] +11:07:41 [ 7] [ 10] [0320040649] +11:07:41 [ 11] [ 6] [156015] +11:07:41 [ 70] [ 3] [301] +11:07:41 ============================================================================ +11:07:41 + + +waiting on router queue for slot.... +11:07:41 Sending to : +11:07:41 ============================================================================ +11:07:41 ============================================================================ +11:07:41 Slot Id : <21> +11:07:41 Transaction Type : RESPONSE +11:07:41 Received From : +11:07:41 ============================================================================ +11:07:41 FNo. Len. Field Value +11:07:41 ============================================================================ +11:07:41 [ 1] [ 4] [0810] +11:07:41 [ 7] [ 10] [0320040649] +11:07:41 [ 11] [ 6] [156015] +11:07:41 [ 39] [ 2] [00] +11:07:41 [ 70] [ 3] [301] +11:07:41 ============================================================================ +11:07:41 Calculate Source COMM Id = 2 +11:07:41 ============================================================================ +11:07:41 + + +waiting on router queue for slot.... +11:07:54 ============================================================================ +11:07:54 Slot Id : <11> +11:07:54 Transaction Type : REQUEST +11:07:54 Received From : +11:07:54 ============================================================================ +11:07:54 FNo. Len. Field Value +11:07:54 ============================================================================ +11:07:54 [ 1] [ 4] [0800] +11:07:54 [ 7] [ 10] [0320040702] +11:07:54 [ 11] [ 6] [156016] +11:07:54 [ 70] [ 3] [301] +11:07:54 ============================================================================ +11:07:54 + + +waiting on router queue for slot.... +11:07:54 Sending to : +11:07:54 ============================================================================ +11:07:54 ============================================================================ +11:07:54 Slot Id : <11> +11:07:54 Transaction Type : RESPONSE +11:07:54 Received From : +11:07:54 ============================================================================ +11:07:54 FNo. Len. Field Value +11:07:54 ============================================================================ +11:07:54 [ 1] [ 4] [0810] +11:07:54 [ 7] [ 10] [0320040702] +11:07:54 [ 11] [ 6] [156016] +11:07:54 [ 39] [ 2] [00] +11:07:54 [ 70] [ 3] [301] +11:07:54 ============================================================================ +11:07:54 Calculate Source COMM Id = 2 +11:07:54 ============================================================================ +11:07:54 + + +waiting on router queue for slot.... +11:07:55 ============================================================================ +11:07:55 Slot Id : <35> +11:07:55 Transaction Type : REQUEST +11:07:55 Received From : +11:07:55 ============================================================================ +11:07:55 FNo. Len. Field Value +11:07:55 ============================================================================ +11:07:55 [ 1] [ 4] [0200] +11:07:55 [ 2] [ 16] [6213541000403512] +11:07:55 [ 3] [ 6] [011000] +11:07:55 [ 4] [ 12] [000020000000] +11:07:55 [ 7] [ 10] [0320040703] +11:07:55 [ 11] [ 6] [268348] +11:07:55 [ 12] [ 6] [110703] +11:07:55 [ 13] [ 4] [0320] +11:07:55 [ 14] [ 4] [4912] +11:07:55 [ 15] [ 4] [0320] +11:07:55 [ 18] [ 4] [6011] +11:07:55 [ 19] [ 3] [418] +11:07:55 [ 22] [ 3] [021] +11:07:55 [ 25] [ 2] [01] +11:07:55 [ 28] [ 9] [D00002000] +11:07:55 [ 32] [ 6] [180893] +11:07:55 [ 35] [ 32] [6213541000403512=491212010351866] +11:07:55 [ 37] [ 12] [507904268348] +11:07:55 [ 41] [ 8] [0532XYKH] +11:07:55 [ 42] [ 15] [999999 ] +11:07:55 [ 43] [ 40] [ATM KHOP LOCATION, Khop, Lao People ] +11:07:55 [ 49] [ 3] [418] +11:07:55 [ 52] [ 16] [D5F53D6469BEEFB4] +11:07:55 ============================================================================ +11:07:55 + + +waiting on router queue for slot.... +11:07:55 Sending to : +11:07:55 ============================================================================ +11:07:55 Sending to : +11:07:55 ============================================================================ +11:07:56 ============================================================================ +11:07:56 Slot Id : <35> +11:07:56 Transaction Type : REQUEST +11:07:56 Received From : +11:07:56 ============================================================================ +11:07:56 FNo. Len. Field Value +11:07:56 ============================================================================ +11:07:56 [ 1] [ 4] [0200] +11:07:56 [ 2] [ 16] [6213541000403512] +11:07:56 [ 3] [ 6] [011000] +11:07:56 [ 4] [ 12] [000020000000] +11:07:56 [ 7] [ 10] [0320040703] +11:07:56 [ 11] [ 6] [268348] +11:07:56 [ 12] [ 6] [110703] +11:07:56 [ 13] [ 4] [0320] +11:07:56 [ 14] [ 4] [4912] +11:07:56 [ 15] [ 4] [0320] +11:07:56 [ 18] [ 4] [6011] +11:07:56 [ 19] [ 3] [418] +11:07:56 [ 22] [ 3] [021] +11:07:56 [ 25] [ 2] [01] +11:07:56 [ 28] [ 9] [D00002000] +11:07:56 [ 32] [ 6] [180893] +11:07:56 [ 35] [ 32] [6213541000403512=491212010351866] +11:07:56 [ 37] [ 12] [507904268348] +11:07:56 [ 41] [ 8] [0532XYKH] +11:07:56 [ 42] [ 15] [999999 ] +11:07:56 [ 43] [ 40] [ATM KHOP LOCATION, Khop, Lao People ] +11:07:56 [ 49] [ 3] [418] +11:07:56 [ 52] [ 16] [D5F53D6469BEEFB4] +11:07:56 ============================================================================ +11:07:56 + + +waiting on router queue for slot.... +11:07:56 Sending to : +11:07:56 ============================================================================ +11:07:56 ============================================================================ +11:07:56 Slot Id : <35> +11:07:56 Transaction Type : REQUEST +11:07:56 Received From : +11:07:56 ============================================================================ +11:07:56 FNo. Len. Field Value +11:07:56 ============================================================================ +11:07:56 [ 1] [ 4] [0200] +11:07:56 [ 2] [ 16] [6213541000403512] +11:07:56 [ 3] [ 6] [011000] +11:07:56 [ 4] [ 12] [000020000000] +11:07:56 [ 7] [ 10] [0320040703] +11:07:56 [ 11] [ 6] [268348] +11:07:56 [ 12] [ 6] [110703] +11:07:56 [ 13] [ 4] [0320] +11:07:56 [ 14] [ 4] [4912] +11:07:56 [ 15] [ 4] [0320] +11:07:56 [ 18] [ 4] [6011] +11:07:56 [ 19] [ 3] [418] +11:07:56 [ 22] [ 3] [021] +11:07:56 [ 25] [ 2] [01] +11:07:56 [ 28] [ 9] [D00002000] +11:07:56 [ 32] [ 6] [180893] +11:07:56 [ 35] [ 32] [6213541000403512=491212010351866] +11:07:56 [ 37] [ 12] [507904268348] +11:07:56 [ 41] [ 8] [0532XYKH] +11:07:56 [ 42] [ 15] [999999 ] +11:07:56 [ 43] [ 40] [ATM KHOP LOCATION, Khop, Lao People ] +11:07:56 [ 49] [ 3] [418] +11:07:56 [ 52] [ 16] [BEFD1E58B329F833] +11:07:56 ============================================================================ +11:07:56 + + +waiting on router queue for slot.... +11:07:56 Sending to : <0> +11:07:56 ============================================================================ +11:07:57 ============================================================================ +11:07:57 Slot Id : <35> +11:07:57 Transaction Type : RESPONSE +11:07:57 Received From : +11:07:57 ============================================================================ +11:07:57 FNo. Len. Field Value +11:07:57 ============================================================================ +11:07:57 [ 1] [ 4] [0210] +11:07:57 [ 2] [ 16] [6213541000403512] +11:07:57 [ 3] [ 6] [011000] +11:07:57 [ 4] [ 12] [000020000000] +11:07:57 [ 7] [ 10] [0320040703] +11:07:57 [ 11] [ 6] [268348] +11:07:57 [ 12] [ 6] [110703] +11:07:57 [ 13] [ 4] [0320] +11:07:57 [ 15] [ 4] [0320] +11:07:57 [ 18] [ 4] [6011] +11:07:57 [ 19] [ 3] [418] +11:07:57 [ 32] [ 6] [180893] +11:07:57 [ 35] [ 32] [6213541000403512=491212010351866] +11:07:57 [ 37] [ 12] [507904268348] +11:07:57 [ 38] [ 6] [221115] +11:07:57 [ 39] [ 2] [00] +11:07:57 [ 41] [ 8] [0532XYKH] +11:07:57 [ 49] [ 3] [418] +11:07:57 [ 54] [ 40] [1001418C0000177016111002418C000017701611] +11:07:57 ============================================================================ +11:07:57 Sending to : +11:07:57 ============================================================================ +11:07:57 + + +waiting on router queue for slot.... +11:07:58 ============================================================================ +11:07:58 Slot Id : <35> +11:07:58 Transaction Type : RESPONSE +11:07:58 Received From : +11:07:58 ============================================================================ +11:07:58 FNo. Len. Field Value +11:07:58 ============================================================================ +11:07:58 [ 1] [ 4] [0210] +11:07:58 [ 2] [ 16] [6213541000403512] +11:07:58 [ 3] [ 6] [011000] +11:07:58 [ 4] [ 12] [000020000000] +11:07:58 [ 7] [ 10] [0320040703] +11:07:58 [ 11] [ 6] [268348] +11:07:58 [ 12] [ 6] [110703] +11:07:58 [ 13] [ 4] [0320] +11:07:58 [ 15] [ 4] [0320] +11:07:58 [ 18] [ 4] [6011] +11:07:58 [ 19] [ 3] [418] +11:07:58 [ 32] [ 6] [180893] +11:07:58 [ 35] [ 32] [6213541000403512=491212010351866] +11:07:58 [ 37] [ 12] [507904268348] +11:07:58 [ 38] [ 6] [221115] +11:07:58 [ 39] [ 2] [00] +11:07:58 [ 41] [ 8] [0532XYKH] +11:07:58 [ 49] [ 3] [418] +11:07:58 [ 54] [ 40] [1001418C0000177016111002418C000017701611] +11:07:58 ============================================================================ +11:07:58 Calculate Source COMM Id = 2 +11:07:58 ============================================================================ +11:07:58 + + +waiting on router queue for slot.... +11:07:59 ============================================================================ +11:07:59 Slot Id : <496> +11:07:59 Transaction Type : REQUEST +11:07:59 Received From : +11:07:59 ============================================================================ +11:07:59 FNo. Len. Field Value +11:07:59 ============================================================================ +11:07:59 [ 1] [ 4] [0200] +11:07:59 [ 2] [ 16] [2206991200061530] +11:07:59 [ 3] [ 6] [010000] +11:07:59 [ 4] [ 12] [000005000000] +11:07:59 [ 7] [ 10] [0320110755] +11:07:59 [ 11] [ 6] [724693] +11:07:59 [ 12] [ 6] [110755] +11:07:59 [ 13] [ 4] [0320] +11:07:59 [ 15] [ 4] [0320] +11:07:59 [ 18] [ 4] [6011] +11:07:59 [ 22] [ 3] [900] +11:07:59 [ 25] [ 2] [02] +11:07:59 [ 28] [ 9] [D00002000] +11:07:59 [ 32] [ 6] [621354] +11:07:59 [ 35] [ 32] [2206991200061530=140600016153000] +11:07:59 [ 37] [ 12] [507903058132] +11:07:59 [ 41] [ 8] [01008500] +11:07:59 [ 42] [ 15] [NATIVE ] +11:07:59 [ 43] [ 40] [MOF ChanthaboulyLAO] +11:07:59 [ 49] [ 3] [418] +11:07:59 [ 52] [ 16] [2FA63FF519D7A41B] +11:07:59 ============================================================================ +11:07:59 + + +waiting on router queue for slot.... +11:07:59 Sending to : +11:07:59 ============================================================================ +11:07:59 Sending to : +11:07:59 ============================================================================ +11:08:00 ============================================================================ +11:08:00 Slot Id : <496> +11:08:00 Transaction Type : REQUEST +11:08:00 Received From : +11:08:00 ============================================================================ +11:08:00 FNo. Len. Field Value +11:08:00 ============================================================================ +11:08:00 [ 1] [ 4] [0200] +11:08:00 [ 2] [ 16] [2206991200061530] +11:08:00 [ 3] [ 6] [010000] +11:08:00 [ 4] [ 12] [000005000000] +11:08:00 [ 7] [ 10] [0320110755] +11:08:00 [ 11] [ 6] [724693] +11:08:00 [ 12] [ 6] [110755] +11:08:00 [ 13] [ 4] [0320] +11:08:00 [ 15] [ 4] [0320] +11:08:00 [ 18] [ 4] [6011] +11:08:00 [ 22] [ 3] [900] +11:08:00 [ 25] [ 2] [02] +11:08:00 [ 28] [ 9] [D00002000] +11:08:00 [ 32] [ 6] [621354] +11:08:00 [ 35] [ 32] [2206991200061530=140600016153000] +11:08:00 [ 37] [ 12] [507903058132] +11:08:00 [ 41] [ 8] [01008500] +11:08:00 [ 42] [ 15] [NATIVE ] +11:08:00 [ 43] [ 40] [MOF ChanthaboulyLAO] +11:08:00 [ 49] [ 3] [418] +11:08:00 [ 52] [ 16] [2FA63FF519D7A41B] +11:08:00 ============================================================================ +11:08:00 + + +waiting on router queue for slot.... +11:08:00 Sending to : +11:08:00 ============================================================================ +11:08:00 ============================================================================ +11:08:00 Slot Id : <496> +11:08:00 Transaction Type : REQUEST +11:08:00 Received From : +11:08:00 ============================================================================ +11:08:00 FNo. Len. Field Value +11:08:00 ============================================================================ +11:08:00 [ 1] [ 4] [0200] +11:08:00 [ 2] [ 16] [2206991200061530] +11:08:00 [ 3] [ 6] [010000] +11:08:00 [ 4] [ 12] [000005000000] +11:08:00 [ 7] [ 10] [0320110755] +11:08:00 [ 11] [ 6] [724693] +11:08:00 [ 12] [ 6] [110755] +11:08:00 [ 13] [ 4] [0320] +11:08:00 [ 15] [ 4] [0320] +11:08:00 [ 18] [ 4] [6011] +11:08:00 [ 22] [ 3] [900] +11:08:00 [ 25] [ 2] [02] +11:08:00 [ 28] [ 9] [D00002000] +11:08:00 [ 32] [ 6] [621354] +11:08:00 [ 35] [ 32] [2206991200061530=140600016153000] +11:08:00 [ 37] [ 12] [507903058132] +11:08:00 [ 41] [ 8] [01008500] +11:08:00 [ 42] [ 15] [NATIVE ] +11:08:00 [ 43] [ 40] [MOF ChanthaboulyLAO] +11:08:00 [ 49] [ 3] [418] +11:08:00 [ 52] [ 16] [30AE950AB79B0B26] +11:08:00 ============================================================================ +11:08:00 + + +waiting on router queue for slot.... +11:08:00 Sending to : <1> +11:08:00 ============================================================================ +11:08:02 ============================================================================ +11:08:02 Slot Id : <496> +11:08:02 Transaction Type : RESPONSE +11:08:02 Received From : +11:08:02 ============================================================================ +11:08:02 FNo. Len. Field Value +11:08:02 ============================================================================ +11:08:02 [ 1] [ 4] [0210] +11:08:02 [ 2] [ 16] [2206991200061530] +11:08:02 [ 3] [ 6] [010000] +11:08:02 [ 4] [ 12] [000005000000] +11:08:02 [ 7] [ 10] [0320110755] +11:08:02 [ 11] [ 6] [724693] +11:08:02 [ 12] [ 6] [110755] +11:08:02 [ 13] [ 4] [0320] +11:08:02 [ 15] [ 4] [0320] +11:08:02 [ 18] [ 4] [6011] +11:08:02 [ 32] [ 6] [621354] +11:08:02 [ 35] [ 32] [2206991200061530=140600016153000] +11:08:02 [ 37] [ 12] [507903058132] +11:08:02 [ 38] [ 6] [353887] +11:08:02 [ 39] [ 2] [00] +11:08:02 [ 41] [ 8] [01008500] +11:08:02 [ 49] [ 3] [418] +11:08:02 [ 54] [ 40] [0001418C0001896139000002418C000189613900] +11:08:02 ============================================================================ +11:08:02 Sending to : +11:08:02 ============================================================================ +11:08:02 + + +waiting on router queue for slot.... +11:08:03 ============================================================================ +11:08:03 Slot Id : <496> +11:08:03 Transaction Type : RESPONSE +11:08:03 Received From : +11:08:03 ============================================================================ +11:08:03 FNo. Len. Field Value +11:08:03 ============================================================================ +11:08:03 [ 1] [ 4] [0210] +11:08:03 [ 2] [ 16] [2206991200061530] +11:08:03 [ 3] [ 6] [010000] +11:08:03 [ 4] [ 12] [000005000000] +11:08:03 [ 7] [ 10] [0320110755] +11:08:03 [ 11] [ 6] [724693] +11:08:03 [ 12] [ 6] [110755] +11:08:03 [ 13] [ 4] [0320] +11:08:03 [ 15] [ 4] [0320] +11:08:03 [ 18] [ 4] [6011] +11:08:03 [ 32] [ 6] [621354] +11:08:03 [ 35] [ 32] [2206991200061530=140600016153000] +11:08:03 [ 37] [ 12] [507903058132] +11:08:03 [ 38] [ 6] [353887] +11:08:03 [ 39] [ 2] [00] +11:08:03 [ 41] [ 8] [01008500] +11:08:03 [ 49] [ 3] [418] +11:08:03 [ 54] [ 40] [0001418C0001896139000002418C000189613900] +11:08:03 ============================================================================ +11:08:03 Calculate Source COMM Id = 0 +11:08:03 ============================================================================ +11:08:03 + + +waiting on router queue for slot.... +11:08:06 ============================================================================ +11:08:06 Slot Id : <461> +11:08:06 Transaction Type : REQUEST +11:08:06 Received From : +11:08:06 ============================================================================ +11:08:06 FNo. Len. Field Value +11:08:06 ============================================================================ +11:08:06 [ 1] [ 4] [0200] +11:08:06 [ 2] [ 16] [6213541000051774] +11:08:06 [ 3] [ 6] [011000] +11:08:06 [ 4] [ 12] [000030000000] +11:08:06 [ 7] [ 10] [0320111553] +11:08:06 [ 11] [ 6] [259175] +11:08:06 [ 12] [ 6] [111553] +11:08:06 [ 13] [ 4] [0320] +11:08:06 [ 14] [ 4] [4912] +11:08:06 [ 15] [ 4] [0320] +11:08:06 [ 18] [ 4] [6011] +11:08:06 [ 22] [ 3] [900] +11:08:06 [ 25] [ 2] [02] +11:08:06 [ 28] [ 9] [D00002000] +11:08:06 [ 32] [ 6] [220699] +11:08:06 [ 35] [ 32] [6213541000051774=491212015177394] +11:08:06 [ 37] [ 12] [507900040545] +11:08:06 [ 41] [ 8] [01000400] +11:08:06 [ 42] [ 15] [APTRA ] +11:08:06 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:08:06 [ 49] [ 3] [418] +11:08:06 [ 52] [ 16] [369C771663A159DB] +11:08:06 ============================================================================ +11:08:06 + + +waiting on router queue for slot.... +11:08:06 Sending to : +11:08:06 ============================================================================ +11:08:06 Sending to : +11:08:06 ============================================================================ +11:08:06 ============================================================================ +11:08:06 Slot Id : <461> +11:08:06 Transaction Type : REQUEST +11:08:06 Received From : +11:08:06 ============================================================================ +11:08:06 FNo. Len. Field Value +11:08:06 ============================================================================ +11:08:06 [ 1] [ 4] [0200] +11:08:06 [ 2] [ 16] [6213541000051774] +11:08:06 [ 3] [ 6] [011000] +11:08:06 [ 4] [ 12] [000030000000] +11:08:06 [ 7] [ 10] [0320111553] +11:08:06 [ 11] [ 6] [259175] +11:08:06 [ 12] [ 6] [111553] +11:08:06 [ 13] [ 4] [0320] +11:08:06 [ 14] [ 4] [4912] +11:08:06 [ 15] [ 4] [0320] +11:08:06 [ 18] [ 4] [6011] +11:08:06 [ 22] [ 3] [900] +11:08:06 [ 25] [ 2] [02] +11:08:06 [ 28] [ 9] [D00002000] +11:08:06 [ 32] [ 6] [220699] +11:08:06 [ 35] [ 32] [6213541000051774=491212015177394] +11:08:06 [ 37] [ 12] [507900040545] +11:08:06 [ 41] [ 8] [01000400] +11:08:06 [ 42] [ 15] [APTRA ] +11:08:06 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:08:06 [ 49] [ 3] [418] +11:08:06 [ 52] [ 16] [369C771663A159DB] +11:08:06 ============================================================================ +11:08:06 + + +waiting on router queue for slot.... +11:08:06 Sending to : +11:08:06 ============================================================================ +11:08:06 ============================================================================ +11:08:06 Slot Id : <461> +11:08:06 Transaction Type : REQUEST +11:08:06 Received From : +11:08:06 ============================================================================ +11:08:06 FNo. Len. Field Value +11:08:06 ============================================================================ +11:08:06 [ 1] [ 4] [0200] +11:08:06 [ 2] [ 16] [6213541000051774] +11:08:06 [ 3] [ 6] [011000] +11:08:06 [ 4] [ 12] [000030000000] +11:08:06 [ 7] [ 10] [0320111553] +11:08:06 [ 11] [ 6] [259175] +11:08:06 [ 12] [ 6] [111553] +11:08:06 [ 13] [ 4] [0320] +11:08:06 [ 14] [ 4] [4912] +11:08:06 [ 15] [ 4] [0320] +11:08:06 [ 18] [ 4] [6011] +11:08:06 [ 22] [ 3] [900] +11:08:06 [ 25] [ 2] [02] +11:08:06 [ 28] [ 9] [D00002000] +11:08:06 [ 32] [ 6] [220699] +11:08:06 [ 35] [ 32] [6213541000051774=491212015177394] +11:08:06 [ 37] [ 12] [507900040545] +11:08:06 [ 41] [ 8] [01000400] +11:08:06 [ 42] [ 15] [APTRA ] +11:08:06 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:08:06 [ 49] [ 3] [418] +11:08:06 [ 52] [ 16] [D054541EA0D03D25] +11:08:06 ============================================================================ +11:08:06 + + +waiting on router queue for slot.... +11:08:06 Sending to : <0> +11:08:06 ============================================================================ +11:08:07 ============================================================================ +11:08:07 Slot Id : <30> +11:08:07 Transaction Type : REQUEST +11:08:07 Received From : +11:08:07 ============================================================================ +11:08:07 FNo. Len. Field Value +11:08:07 ============================================================================ +11:08:07 [ 1] [ 4] [0200] +11:08:07 [ 2] [ 16] [6213541000122831] +11:08:07 [ 3] [ 6] [010000] +11:08:07 [ 4] [ 12] [000100000000] +11:08:07 [ 7] [ 10] [0320110558] +11:08:07 [ 11] [ 6] [940358] +11:08:07 [ 12] [ 6] [110558] +11:08:07 [ 13] [ 4] [0320] +11:08:07 [ 15] [ 4] [0320] +11:08:07 [ 18] [ 4] [6011] +11:08:07 [ 19] [ 3] [418] +11:08:07 [ 22] [ 3] [021] +11:08:07 [ 25] [ 2] [01] +11:08:07 [ 28] [ 9] [D00002000] +11:08:07 [ 32] [ 6] [668899] +11:08:07 [ 35] [ 32] [6213541000122831=491212012283178] +11:08:07 [ 37] [ 12] [507902294731] +11:08:07 [ 41] [ 8] [03009006] +11:08:07 [ 42] [ 15] [APT ] +11:08:07 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:08:07 [ 49] [ 3] [418] +11:08:07 [ 52] [ 16] [FC8D3107655F6F6D] +11:08:07 ============================================================================ +11:08:07 + + +waiting on router queue for slot.... +11:08:07 Sending to : +11:08:07 ============================================================================ +11:08:07 Sending to : +11:08:07 ============================================================================ +11:08:07 ============================================================================ +11:08:07 Slot Id : <30> +11:08:07 Transaction Type : REQUEST +11:08:07 Received From : +11:08:07 ============================================================================ +11:08:07 FNo. Len. Field Value +11:08:07 ============================================================================ +11:08:07 [ 1] [ 4] [0200] +11:08:07 [ 2] [ 16] [6213541000122831] +11:08:07 [ 3] [ 6] [010000] +11:08:07 [ 4] [ 12] [000100000000] +11:08:07 [ 7] [ 10] [0320110558] +11:08:07 [ 11] [ 6] [940358] +11:08:07 [ 12] [ 6] [110558] +11:08:07 [ 13] [ 4] [0320] +11:08:07 [ 15] [ 4] [0320] +11:08:07 [ 18] [ 4] [6011] +11:08:07 [ 19] [ 3] [418] +11:08:07 [ 22] [ 3] [021] +11:08:07 [ 25] [ 2] [01] +11:08:07 [ 28] [ 9] [D00002000] +11:08:07 [ 32] [ 6] [668899] +11:08:07 [ 35] [ 32] [6213541000122831=491212012283178] +11:08:07 [ 37] [ 12] [507902294731] +11:08:07 [ 41] [ 8] [03009006] +11:08:07 [ 42] [ 15] [APT ] +11:08:07 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:08:07 [ 49] [ 3] [418] +11:08:07 [ 52] [ 16] [FC8D3107655F6F6D] +11:08:07 ============================================================================ +11:08:07 + + +waiting on router queue for slot.... +11:08:07 Sending to : +11:08:07 ============================================================================ +11:08:07 ============================================================================ +11:08:07 Slot Id : <30> +11:08:07 Transaction Type : REQUEST +11:08:07 Received From : +11:08:07 ============================================================================ +11:08:07 FNo. Len. Field Value +11:08:07 ============================================================================ +11:08:07 [ 1] [ 4] [0200] +11:08:07 [ 2] [ 16] [6213541000122831] +11:08:07 [ 3] [ 6] [010000] +11:08:07 [ 4] [ 12] [000100000000] +11:08:07 [ 7] [ 10] [0320110558] +11:08:07 [ 11] [ 6] [940358] +11:08:07 [ 12] [ 6] [110558] +11:08:07 [ 13] [ 4] [0320] +11:08:07 [ 15] [ 4] [0320] +11:08:07 [ 18] [ 4] [6011] +11:08:07 [ 19] [ 3] [418] +11:08:07 [ 22] [ 3] [021] +11:08:07 [ 25] [ 2] [01] +11:08:07 [ 28] [ 9] [D00002000] +11:08:07 [ 32] [ 6] [668899] +11:08:07 [ 35] [ 32] [6213541000122831=491212012283178] +11:08:07 [ 37] [ 12] [507902294731] +11:08:07 [ 41] [ 8] [03009006] +11:08:07 [ 42] [ 15] [APT ] +11:08:07 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:08:07 [ 49] [ 3] [418] +11:08:07 [ 52] [ 16] [441E430ED55ECF77] +11:08:07 ============================================================================ +11:08:07 + + +waiting on router queue for slot.... +11:08:07 Sending to : <0> +11:08:07 ============================================================================ +11:08:07 ============================================================================ +11:08:07 Slot Id : <461> +11:08:07 Transaction Type : RESPONSE +11:08:07 Received From : +11:08:07 ============================================================================ +11:08:07 FNo. Len. Field Value +11:08:07 ============================================================================ +11:08:07 [ 1] [ 4] [0210] +11:08:07 [ 2] [ 16] [6213541000051774] +11:08:07 [ 3] [ 6] [011000] +11:08:07 [ 4] [ 12] [000030000000] +11:08:07 [ 7] [ 10] [0320111553] +11:08:07 [ 11] [ 6] [259175] +11:08:07 [ 12] [ 6] [111553] +11:08:07 [ 13] [ 4] [0320] +11:08:07 [ 15] [ 4] [0320] +11:08:07 [ 18] [ 4] [6011] +11:08:07 [ 32] [ 6] [220699] +11:08:07 [ 35] [ 32] [6213541000051774=491212015177394] +11:08:07 [ 37] [ 12] [507900040545] +11:08:07 [ 38] [ 6] [259175] +11:08:07 [ 39] [ 2] [51] +11:08:07 [ 41] [ 8] [01000400] +11:08:07 [ 49] [ 3] [418] +11:08:07 [ 54] [ 40] [1001418C0000198692531002418C000019869253] +11:08:07 ============================================================================ +11:08:07 Sending to : +11:08:07 ============================================================================ +11:08:07 + + +waiting on router queue for slot.... +11:08:08 ============================================================================ +11:08:08 Slot Id : <30> +11:08:08 Transaction Type : RESPONSE +11:08:08 Received From : +11:08:08 ============================================================================ +11:08:08 FNo. Len. Field Value +11:08:08 ============================================================================ +11:08:08 [ 1] [ 4] [0210] +11:08:08 [ 2] [ 16] [6213541000122831] +11:08:08 [ 3] [ 6] [010000] +11:08:08 [ 4] [ 12] [000100000000] +11:08:08 [ 7] [ 10] [0320110558] +11:08:08 [ 11] [ 6] [940358] +11:08:08 [ 12] [ 6] [110558] +11:08:08 [ 13] [ 4] [0320] +11:08:08 [ 15] [ 4] [0320] +11:08:08 [ 18] [ 4] [6011] +11:08:08 [ 19] [ 3] [418] +11:08:08 [ 32] [ 6] [668899] +11:08:08 [ 35] [ 32] [6213541000122831=491212012283178] +11:08:08 [ 37] [ 12] [507902294731] +11:08:08 [ 38] [ 6] [283021] +11:08:08 [ 39] [ 2] [00] +11:08:08 [ 41] [ 8] [03009006] +11:08:08 [ 49] [ 3] [418] +11:08:08 [ 54] [ 40] [0001418C0075472905700002418C007547290570] +11:08:08 ============================================================================ +11:08:08 Sending to : +11:08:08 ============================================================================ +11:08:08 + + +waiting on router queue for slot.... +11:08:08 ============================================================================ +11:08:08 Slot Id : <461> +11:08:08 Transaction Type : RESPONSE +11:08:08 Received From : +11:08:08 ============================================================================ +11:08:08 FNo. Len. Field Value +11:08:08 ============================================================================ +11:08:08 [ 1] [ 4] [0210] +11:08:08 [ 2] [ 16] [6213541000051774] +11:08:08 [ 3] [ 6] [011000] +11:08:08 [ 4] [ 12] [000030000000] +11:08:08 [ 7] [ 10] [0320111553] +11:08:08 [ 11] [ 6] [259175] +11:08:08 [ 12] [ 6] [111553] +11:08:08 [ 13] [ 4] [0320] +11:08:08 [ 15] [ 4] [0320] +11:08:08 [ 18] [ 4] [6011] +11:08:08 [ 32] [ 6] [220699] +11:08:08 [ 35] [ 32] [6213541000051774=491212015177394] +11:08:08 [ 37] [ 12] [507900040545] +11:08:08 [ 38] [ 6] [259175] +11:08:08 [ 39] [ 2] [51] +11:08:08 [ 41] [ 8] [01000400] +11:08:08 [ 49] [ 3] [418] +11:08:08 [ 54] [ 40] [1001418C0000198692531002418C000019869253] +11:08:08 ============================================================================ +11:08:08 Calculate Source COMM Id = 1 +11:08:08 ============================================================================ +11:08:08 + + +waiting on router queue for slot.... +11:08:10 ============================================================================ +11:08:10 Slot Id : <37> +11:08:10 Transaction Type : REQUEST +11:08:10 Received From : +11:08:10 ============================================================================ +11:08:10 FNo. Len. Field Value +11:08:10 ============================================================================ +11:08:10 [ 1] [ 4] [0800] +11:08:10 [ 2] [ 5] [02531] +11:08:10 [ 3] [ 6] [579118] +11:08:10 [ 7] [ 10] [0320040810] +11:08:10 [ 11] [ 6] [807058] +11:08:10 [ 15] [ 10] [0320040810] +11:08:10 [ 37] [ 11] [57911807058] +11:08:10 [ 70] [ 3] [001] +11:08:10 ============================================================================ +11:08:10 + + +waiting on router queue for slot.... +11:08:10 ============================================================================ +11:08:10 Slot Id : <37> +11:08:10 Transaction Type : RESPONSE +11:08:10 Received From : +11:08:10 ============================================================================ +11:08:10 FNo. Len. Field Value +11:08:10 ============================================================================ +11:08:10 [ 1] [ 4] [0810] +11:08:10 [ 7] [ 10] [0320040810] +11:08:10 [ 11] [ 6] [807058] +11:08:10 [ 15] [ 4] [0320] +11:08:10 [ 37] [ 12] [57911807058] +11:08:10 [ 39] [ 2] [00] +11:08:10 [ 70] [ 3] [001] +11:08:10 ============================================================================ +11:08:10 Sending to : +11:08:10 ============================================================================ +11:08:10 + + +waiting on router queue for slot.... +11:08:10 ============================================================================ +11:08:10 Slot Id : <30> +11:08:10 Transaction Type : RESPONSE +11:08:10 Received From : +11:08:10 ============================================================================ +11:08:10 FNo. Len. Field Value +11:08:10 ============================================================================ +11:08:10 [ 1] [ 4] [0210] +11:08:10 [ 2] [ 16] [6213541000122831] +11:08:10 [ 3] [ 6] [010000] +11:08:10 [ 4] [ 12] [000100000000] +11:08:10 [ 7] [ 10] [0320110558] +11:08:10 [ 11] [ 6] [940358] +11:08:10 [ 12] [ 6] [110558] +11:08:10 [ 13] [ 4] [0320] +11:08:10 [ 15] [ 4] [0320] +11:08:10 [ 18] [ 4] [6011] +11:08:10 [ 19] [ 3] [418] +11:08:10 [ 32] [ 6] [668899] +11:08:10 [ 35] [ 32] [6213541000122831=491212012283178] +11:08:10 [ 37] [ 12] [507902294731] +11:08:10 [ 38] [ 6] [283021] +11:08:10 [ 39] [ 2] [00] +11:08:10 [ 41] [ 8] [03009006] +11:08:10 [ 49] [ 3] [418] +11:08:10 [ 54] [ 40] [0001418C0075472905700002418C007547290570] +11:08:10 ============================================================================ +11:08:10 Calculate Source COMM Id = 4 +11:08:10 ============================================================================ +11:08:10 + + +waiting on router queue for slot.... +11:08:14 ============================================================================ +11:08:14 Slot Id : <9> +11:08:14 Transaction Type : REQUEST +11:08:14 Received From : +11:08:14 ============================================================================ +11:08:14 FNo. Len. Field Value +11:08:14 ============================================================================ +11:08:14 [ 1] [ 4] [0800] +11:08:14 [ 7] [ 10] [0320040722] +11:08:14 [ 11] [ 6] [156017] +11:08:14 [ 70] [ 3] [301] +11:08:14 ============================================================================ +11:08:14 + + +waiting on router queue for slot.... +11:08:14 Sending to : +11:08:14 ============================================================================ +11:08:14 ============================================================================ +11:08:14 Slot Id : <9> +11:08:14 Transaction Type : RESPONSE +11:08:14 Received From : +11:08:14 ============================================================================ +11:08:14 FNo. Len. Field Value +11:08:14 ============================================================================ +11:08:14 [ 1] [ 4] [0810] +11:08:14 [ 7] [ 10] [0320040722] +11:08:14 [ 11] [ 6] [156017] +11:08:14 [ 39] [ 2] [00] +11:08:14 [ 70] [ 3] [301] +11:08:14 ============================================================================ +11:08:14 Calculate Source COMM Id = 2 +11:08:14 ============================================================================ +11:08:14 + + +waiting on router queue for slot.... +11:08:15 ============================================================================ +11:08:15 Slot Id : <36> +11:08:15 Transaction Type : REQUEST +11:08:15 Received From : +11:08:15 ============================================================================ +11:08:15 FNo. Len. Field Value +11:08:15 ============================================================================ +11:08:15 [ 1] [ 4] [0200] +11:08:15 [ 2] [ 16] [6213544001916417] +11:08:15 [ 3] [ 6] [010000] +11:08:15 [ 4] [ 12] [000050000000] +11:08:15 [ 7] [ 10] [0320110606] +11:08:15 [ 11] [ 6] [940367] +11:08:15 [ 12] [ 6] [110606] +11:08:15 [ 13] [ 4] [0320] +11:08:15 [ 15] [ 4] [0320] +11:08:15 [ 18] [ 4] [6011] +11:08:15 [ 19] [ 3] [418] +11:08:15 [ 22] [ 3] [021] +11:08:15 [ 25] [ 2] [01] +11:08:15 [ 28] [ 9] [D00002000] +11:08:15 [ 32] [ 6] [668899] +11:08:15 [ 35] [ 32] [6213544001916417=491212011641971] +11:08:15 [ 37] [ 12] [507902730346] +11:08:15 [ 41] [ 8] [03013005] +11:08:15 [ 42] [ 15] [APT ] +11:08:15 [ 43] [ 40] [ CEMENT FACTORY THAKHAEK ] +11:08:15 [ 49] [ 3] [418] +11:08:15 [ 52] [ 16] [BB316AAE6EA64998] +11:08:15 ============================================================================ +11:08:15 + + +waiting on router queue for slot.... +11:08:15 Sending to : +11:08:15 ============================================================================ +11:08:15 Sending to : +11:08:15 ============================================================================ +11:08:16 ============================================================================ +11:08:16 Slot Id : <36> +11:08:16 Transaction Type : REQUEST +11:08:16 Received From : +11:08:16 ============================================================================ +11:08:16 FNo. Len. Field Value +11:08:16 ============================================================================ +11:08:16 [ 1] [ 4] [0200] +11:08:16 [ 2] [ 16] [6213544001916417] +11:08:16 [ 3] [ 6] [010000] +11:08:16 [ 4] [ 12] [000050000000] +11:08:16 [ 7] [ 10] [0320110606] +11:08:16 [ 11] [ 6] [940367] +11:08:16 [ 12] [ 6] [110606] +11:08:16 [ 13] [ 4] [0320] +11:08:16 [ 15] [ 4] [0320] +11:08:16 [ 18] [ 4] [6011] +11:08:16 [ 19] [ 3] [418] +11:08:16 [ 22] [ 3] [021] +11:08:16 [ 25] [ 2] [01] +11:08:16 [ 28] [ 9] [D00002000] +11:08:16 [ 32] [ 6] [668899] +11:08:16 [ 35] [ 32] [6213544001916417=491212011641971] +11:08:16 [ 37] [ 12] [507902730346] +11:08:16 [ 41] [ 8] [03013005] +11:08:16 [ 42] [ 15] [APT ] +11:08:16 [ 43] [ 40] [ CEMENT FACTORY THAKHAEK ] +11:08:16 [ 49] [ 3] [418] +11:08:16 [ 52] [ 16] [BB316AAE6EA64998] +11:08:16 ============================================================================ +11:08:16 + + +waiting on router queue for slot.... +11:08:16 Sending to : +11:08:16 ============================================================================ +11:08:16 ============================================================================ +11:08:16 Slot Id : <36> +11:08:16 Transaction Type : REQUEST +11:08:16 Received From : +11:08:16 ============================================================================ +11:08:16 FNo. Len. Field Value +11:08:16 ============================================================================ +11:08:16 [ 1] [ 4] [0200] +11:08:16 [ 2] [ 16] [6213544001916417] +11:08:16 [ 3] [ 6] [010000] +11:08:16 [ 4] [ 12] [000050000000] +11:08:16 [ 7] [ 10] [0320110606] +11:08:16 [ 11] [ 6] [940367] +11:08:16 [ 12] [ 6] [110606] +11:08:16 [ 13] [ 4] [0320] +11:08:16 [ 15] [ 4] [0320] +11:08:16 [ 18] [ 4] [6011] +11:08:16 [ 19] [ 3] [418] +11:08:16 [ 22] [ 3] [021] +11:08:16 [ 25] [ 2] [01] +11:08:16 [ 28] [ 9] [D00002000] +11:08:16 [ 32] [ 6] [668899] +11:08:16 [ 35] [ 32] [6213544001916417=491212011641971] +11:08:16 [ 37] [ 12] [507902730346] +11:08:16 [ 41] [ 8] [03013005] +11:08:16 [ 42] [ 15] [APT ] +11:08:16 [ 43] [ 40] [ CEMENT FACTORY THAKHAEK ] +11:08:16 [ 49] [ 3] [418] +11:08:16 [ 52] [ 16] [052128CBAAEE2693] +11:08:16 ============================================================================ +11:08:16 + + +waiting on router queue for slot.... +11:08:16 Sending to : <0> +11:08:16 ============================================================================ +11:08:16 ============================================================================ +11:08:16 Slot Id : <36> +11:08:16 Transaction Type : RESPONSE +11:08:16 Received From : +11:08:16 ============================================================================ +11:08:16 FNo. Len. Field Value +11:08:16 ============================================================================ +11:08:16 [ 1] [ 4] [0210] +11:08:16 [ 2] [ 16] [6213544001916417] +11:08:16 [ 3] [ 6] [010000] +11:08:16 [ 4] [ 12] [000050000000] +11:08:16 [ 7] [ 10] [0320110606] +11:08:16 [ 11] [ 6] [940367] +11:08:16 [ 12] [ 6] [110606] +11:08:16 [ 13] [ 4] [0320] +11:08:16 [ 15] [ 4] [0320] +11:08:16 [ 18] [ 4] [6011] +11:08:16 [ 19] [ 3] [418] +11:08:16 [ 32] [ 6] [668899] +11:08:16 [ 35] [ 32] [6213544001916417=491212011641971] +11:08:16 [ 37] [ 12] [507902730346] +11:08:16 [ 38] [ 6] [192984] +11:08:16 [ 39] [ 2] [00] +11:08:16 [ 41] [ 8] [03013005] +11:08:16 [ 49] [ 3] [418] +11:08:16 [ 54] [ 40] [0001418C0000197795970002418C000019779597] +11:08:16 ============================================================================ +11:08:16 Sending to : +11:08:16 ============================================================================ +11:08:16 + + +waiting on router queue for slot.... +11:08:18 ============================================================================ +11:08:18 Slot Id : <36> +11:08:18 Transaction Type : RESPONSE +11:08:18 Received From : +11:08:18 ============================================================================ +11:08:18 FNo. Len. Field Value +11:08:18 ============================================================================ +11:08:18 [ 1] [ 4] [0210] +11:08:18 [ 2] [ 16] [6213544001916417] +11:08:18 [ 3] [ 6] [010000] +11:08:18 [ 4] [ 12] [000050000000] +11:08:18 [ 7] [ 10] [0320110606] +11:08:18 [ 11] [ 6] [940367] +11:08:18 [ 12] [ 6] [110606] +11:08:18 [ 13] [ 4] [0320] +11:08:18 [ 15] [ 4] [0320] +11:08:18 [ 18] [ 4] [6011] +11:08:18 [ 19] [ 3] [418] +11:08:18 [ 32] [ 6] [668899] +11:08:18 [ 35] [ 32] [6213544001916417=491212011641971] +11:08:18 [ 37] [ 12] [507902730346] +11:08:18 [ 38] [ 6] [192984] +11:08:18 [ 39] [ 2] [00] +11:08:18 [ 41] [ 8] [03013005] +11:08:18 [ 49] [ 3] [418] +11:08:18 [ 54] [ 40] [0001418C0000197795970002418C000019779597] +11:08:18 ============================================================================ +11:08:18 Calculate Source COMM Id = 4 +11:08:18 ============================================================================ +11:08:18 + + +waiting on router queue for slot.... +11:08:25 ============================================================================ +11:08:25 Slot Id : <45> +11:08:25 Transaction Type : REQUEST +11:08:25 Received From : +11:08:25 ============================================================================ +11:08:25 FNo. Len. Field Value +11:08:25 ============================================================================ +11:08:25 [ 1] [ 4] [0800] +11:08:25 [ 7] [ 10] [0320040732] +11:08:25 [ 11] [ 6] [156018] +11:08:25 [ 70] [ 3] [301] +11:08:25 ============================================================================ +11:08:25 + + +waiting on router queue for slot.... +11:08:25 Sending to : +11:08:25 ============================================================================ +11:08:25 ============================================================================ +11:08:25 Slot Id : <45> +11:08:25 Transaction Type : RESPONSE +11:08:25 Received From : +11:08:25 ============================================================================ +11:08:25 FNo. Len. Field Value +11:08:25 ============================================================================ +11:08:25 [ 1] [ 4] [0810] +11:08:25 [ 7] [ 10] [0320040732] +11:08:25 [ 11] [ 6] [156018] +11:08:25 [ 39] [ 2] [00] +11:08:25 [ 70] [ 3] [301] +11:08:25 ============================================================================ +11:08:25 Calculate Source COMM Id = 2 +11:08:25 ============================================================================ +11:08:25 + + +waiting on router queue for slot.... +11:08:40 ============================================================================ +11:08:40 Slot Id : <18> +11:08:40 Transaction Type : REQUEST +11:08:40 Received From : +11:08:40 ============================================================================ +11:08:40 FNo. Len. Field Value +11:08:40 ============================================================================ +11:08:40 [ 1] [ 4] [0800] +11:08:40 [ 7] [ 10] [0320040748] +11:08:40 [ 11] [ 6] [156019] +11:08:40 [ 70] [ 3] [301] +11:08:40 ============================================================================ +11:08:40 + + +waiting on router queue for slot.... +11:08:40 Sending to : +11:08:40 ============================================================================ +11:08:40 ============================================================================ +11:08:40 Slot Id : <18> +11:08:40 Transaction Type : RESPONSE +11:08:40 Received From : +11:08:40 ============================================================================ +11:08:40 FNo. Len. Field Value +11:08:40 ============================================================================ +11:08:40 [ 1] [ 4] [0810] +11:08:40 [ 7] [ 10] [0320040748] +11:08:40 [ 11] [ 6] [156019] +11:08:40 [ 39] [ 2] [00] +11:08:40 [ 70] [ 3] [301] +11:08:40 ============================================================================ +11:08:40 Calculate Source COMM Id = 2 +11:08:40 ============================================================================ +11:08:40 + + +waiting on router queue for slot.... +11:08:43 ============================================================================ +11:08:43 Slot Id : <497> +11:08:43 Transaction Type : REQUEST +11:08:43 Received From : +11:08:43 ============================================================================ +11:08:43 FNo. Len. Field Value +11:08:43 ============================================================================ +11:08:43 [ 1] [ 4] [0200] +11:08:43 [ 2] [ 16] [6213541000051774] +11:08:43 [ 3] [ 6] [311000] +11:08:43 [ 4] [ 12] [000000000000] +11:08:43 [ 7] [ 10] [0320111631] +11:08:43 [ 11] [ 6] [259178] +11:08:43 [ 12] [ 6] [111631] +11:08:43 [ 13] [ 4] [0320] +11:08:43 [ 14] [ 4] [4912] +11:08:43 [ 15] [ 4] [0320] +11:08:43 [ 18] [ 4] [6011] +11:08:43 [ 22] [ 3] [900] +11:08:43 [ 25] [ 2] [02] +11:08:43 [ 28] [ 9] [000000000] +11:08:43 [ 32] [ 6] [220699] +11:08:43 [ 35] [ 32] [6213541000051774=491212015177394] +11:08:43 [ 37] [ 12] [507900040547] +11:08:43 [ 41] [ 8] [01000400] +11:08:43 [ 42] [ 15] [APTRA ] +11:08:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:08:43 [ 49] [ 3] [418] +11:08:43 [ 52] [ 16] [369C771663A159DB] +11:08:43 ============================================================================ +11:08:43 + + +waiting on router queue for slot.... +11:08:43 Sending to : +11:08:43 ============================================================================ +11:08:43 Sending to : +11:08:43 ============================================================================ +11:08:44 ============================================================================ +11:08:44 Slot Id : <497> +11:08:44 Transaction Type : REQUEST +11:08:44 Received From : +11:08:44 ============================================================================ +11:08:44 FNo. Len. Field Value +11:08:44 ============================================================================ +11:08:44 [ 1] [ 4] [0200] +11:08:44 [ 2] [ 16] [6213541000051774] +11:08:44 [ 3] [ 6] [311000] +11:08:44 [ 4] [ 12] [000000000000] +11:08:44 [ 7] [ 10] [0320111631] +11:08:44 [ 11] [ 6] [259178] +11:08:44 [ 12] [ 6] [111631] +11:08:44 [ 13] [ 4] [0320] +11:08:44 [ 14] [ 4] [4912] +11:08:44 [ 15] [ 4] [0320] +11:08:44 [ 18] [ 4] [6011] +11:08:44 [ 22] [ 3] [900] +11:08:44 [ 25] [ 2] [02] +11:08:44 [ 28] [ 9] [000000000] +11:08:44 [ 32] [ 6] [220699] +11:08:44 [ 35] [ 32] [6213541000051774=491212015177394] +11:08:44 [ 37] [ 12] [507900040547] +11:08:44 [ 41] [ 8] [01000400] +11:08:44 [ 42] [ 15] [APTRA ] +11:08:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:08:44 [ 49] [ 3] [418] +11:08:44 [ 52] [ 16] [369C771663A159DB] +11:08:44 ============================================================================ +11:08:44 + + +waiting on router queue for slot.... +11:08:44 Sending to : +11:08:44 ============================================================================ +11:08:44 ============================================================================ +11:08:44 Slot Id : <497> +11:08:44 Transaction Type : REQUEST +11:08:44 Received From : +11:08:44 ============================================================================ +11:08:44 FNo. Len. Field Value +11:08:44 ============================================================================ +11:08:44 [ 1] [ 4] [0200] +11:08:44 [ 2] [ 16] [6213541000051774] +11:08:44 [ 3] [ 6] [311000] +11:08:44 [ 4] [ 12] [000000000000] +11:08:44 [ 7] [ 10] [0320111631] +11:08:44 [ 11] [ 6] [259178] +11:08:44 [ 12] [ 6] [111631] +11:08:44 [ 13] [ 4] [0320] +11:08:44 [ 14] [ 4] [4912] +11:08:44 [ 15] [ 4] [0320] +11:08:44 [ 18] [ 4] [6011] +11:08:44 [ 22] [ 3] [900] +11:08:44 [ 25] [ 2] [02] +11:08:44 [ 28] [ 9] [000000000] +11:08:44 [ 32] [ 6] [220699] +11:08:44 [ 35] [ 32] [6213541000051774=491212015177394] +11:08:44 [ 37] [ 12] [507900040547] +11:08:44 [ 41] [ 8] [01000400] +11:08:44 [ 42] [ 15] [APTRA ] +11:08:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:08:44 [ 49] [ 3] [418] +11:08:44 [ 52] [ 16] [D054541EA0D03D25] +11:08:44 ============================================================================ +11:08:44 + + +waiting on router queue for slot.... +11:08:44 Sending to : <0> +11:08:44 ============================================================================ +11:08:44 ============================================================================ +11:08:44 Slot Id : <497> +11:08:44 Transaction Type : RESPONSE +11:08:44 Received From : +11:08:44 ============================================================================ +11:08:44 FNo. Len. Field Value +11:08:44 ============================================================================ +11:08:44 [ 1] [ 4] [0210] +11:08:44 [ 2] [ 16] [6213541000051774] +11:08:44 [ 3] [ 6] [311000] +11:08:44 [ 4] [ 12] [000000000000] +11:08:44 [ 7] [ 10] [0320111631] +11:08:44 [ 11] [ 6] [259178] +11:08:44 [ 12] [ 6] [111631] +11:08:44 [ 13] [ 4] [0320] +11:08:44 [ 15] [ 4] [0320] +11:08:44 [ 18] [ 4] [6011] +11:08:44 [ 32] [ 6] [220699] +11:08:44 [ 35] [ 32] [6213541000051774=491212015177394] +11:08:44 [ 37] [ 12] [507900040547] +11:08:44 [ 38] [ 6] [173552] +11:08:44 [ 39] [ 2] [00] +11:08:44 [ 41] [ 8] [01000400] +11:08:44 [ 49] [ 3] [418] +11:08:44 [ 54] [ 40] [1001418C0000198692531002418C000019869253] +11:08:44 ============================================================================ +11:08:44 Sending to : +11:08:44 ============================================================================ +11:08:44 + + +waiting on router queue for slot.... +11:08:46 ============================================================================ +11:08:46 Slot Id : <497> +11:08:46 Transaction Type : RESPONSE +11:08:46 Received From : +11:08:46 ============================================================================ +11:08:46 FNo. Len. Field Value +11:08:46 ============================================================================ +11:08:46 [ 1] [ 4] [0210] +11:08:46 [ 2] [ 16] [6213541000051774] +11:08:46 [ 3] [ 6] [311000] +11:08:46 [ 4] [ 12] [000000000000] +11:08:46 [ 7] [ 10] [0320111631] +11:08:46 [ 11] [ 6] [259178] +11:08:46 [ 12] [ 6] [111631] +11:08:46 [ 13] [ 4] [0320] +11:08:46 [ 15] [ 4] [0320] +11:08:46 [ 18] [ 4] [6011] +11:08:46 [ 32] [ 6] [220699] +11:08:46 [ 35] [ 32] [6213541000051774=491212015177394] +11:08:46 [ 37] [ 12] [507900040547] +11:08:46 [ 38] [ 6] [173552] +11:08:46 [ 39] [ 2] [00] +11:08:46 [ 41] [ 8] [01000400] +11:08:46 [ 49] [ 3] [418] +11:08:46 [ 54] [ 40] [1001418C0000198692531002418C000019869253] +11:08:46 ============================================================================ +11:08:46 Calculate Source COMM Id = 1 +11:08:46 ============================================================================ +11:08:46 + + +waiting on router queue for slot.... +11:08:54 ============================================================================ +11:08:54 Slot Id : <467> +11:08:54 Transaction Type : REQUEST +11:08:54 Received From : +11:08:54 ============================================================================ +11:08:54 FNo. Len. Field Value +11:08:54 ============================================================================ +11:08:54 [ 1] [ 4] [0200] +11:08:54 [ 2] [ 16] [6213543000223023] +11:08:54 [ 3] [ 6] [010000] +11:08:54 [ 4] [ 12] [000050000000] +11:08:54 [ 7] [ 10] [0320110645] +11:08:54 [ 11] [ 6] [940387] +11:08:54 [ 12] [ 6] [110645] +11:08:54 [ 13] [ 4] [0320] +11:08:54 [ 15] [ 4] [0320] +11:08:54 [ 18] [ 4] [6011] +11:08:54 [ 19] [ 3] [418] +11:08:54 [ 22] [ 3] [021] +11:08:54 [ 25] [ 2] [01] +11:08:54 [ 28] [ 9] [D00002000] +11:08:54 [ 32] [ 6] [668899] +11:08:54 [ 35] [ 32] [6213543000223023=491212012302710] +11:08:54 [ 37] [ 12] [507900270917] +11:08:54 [ 41] [ 8] [03010004] +11:08:54 [ 42] [ 15] [APT ] +11:08:54 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:08:54 [ 49] [ 3] [418] +11:08:54 [ 52] [ 16] [A29799D2780580C8] +11:08:54 ============================================================================ +11:08:54 + + +waiting on router queue for slot.... +11:08:54 Sending to : +11:08:54 ============================================================================ +11:08:54 Sending to : +11:08:54 ============================================================================ +11:08:54 ============================================================================ +11:08:54 Slot Id : <467> +11:08:54 Transaction Type : REQUEST +11:08:54 Received From : +11:08:54 ============================================================================ +11:08:54 FNo. Len. Field Value +11:08:54 ============================================================================ +11:08:54 [ 1] [ 4] [0200] +11:08:54 [ 2] [ 16] [6213543000223023] +11:08:54 [ 3] [ 6] [010000] +11:08:54 [ 4] [ 12] [000050000000] +11:08:54 [ 7] [ 10] [0320110645] +11:08:54 [ 11] [ 6] [940387] +11:08:54 [ 12] [ 6] [110645] +11:08:54 [ 13] [ 4] [0320] +11:08:54 [ 15] [ 4] [0320] +11:08:54 [ 18] [ 4] [6011] +11:08:54 [ 19] [ 3] [418] +11:08:54 [ 22] [ 3] [021] +11:08:54 [ 25] [ 2] [01] +11:08:54 [ 28] [ 9] [D00002000] +11:08:54 [ 32] [ 6] [668899] +11:08:54 [ 35] [ 32] [6213543000223023=491212012302710] +11:08:54 [ 37] [ 12] [507900270917] +11:08:54 [ 41] [ 8] [03010004] +11:08:54 [ 42] [ 15] [APT ] +11:08:54 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:08:54 [ 49] [ 3] [418] +11:08:54 [ 52] [ 16] [A29799D2780580C8] +11:08:54 ============================================================================ +11:08:54 + + +waiting on router queue for slot.... +11:08:54 Sending to : +11:08:54 ============================================================================ +11:08:54 ============================================================================ +11:08:54 Slot Id : <467> +11:08:54 Transaction Type : REQUEST +11:08:54 Received From : +11:08:54 ============================================================================ +11:08:54 FNo. Len. Field Value +11:08:54 ============================================================================ +11:08:54 [ 1] [ 4] [0200] +11:08:54 [ 2] [ 16] [6213543000223023] +11:08:54 [ 3] [ 6] [010000] +11:08:54 [ 4] [ 12] [000050000000] +11:08:54 [ 7] [ 10] [0320110645] +11:08:54 [ 11] [ 6] [940387] +11:08:54 [ 12] [ 6] [110645] +11:08:54 [ 13] [ 4] [0320] +11:08:54 [ 15] [ 4] [0320] +11:08:54 [ 18] [ 4] [6011] +11:08:54 [ 19] [ 3] [418] +11:08:54 [ 22] [ 3] [021] +11:08:54 [ 25] [ 2] [01] +11:08:54 [ 28] [ 9] [D00002000] +11:08:54 [ 32] [ 6] [668899] +11:08:54 [ 35] [ 32] [6213543000223023=491212012302710] +11:08:54 [ 37] [ 12] [507900270917] +11:08:54 [ 41] [ 8] [03010004] +11:08:54 [ 42] [ 15] [APT ] +11:08:54 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:08:54 [ 49] [ 3] [418] +11:08:54 [ 52] [ 16] [9124E718294E89A0] +11:08:54 ============================================================================ +11:08:54 + + +waiting on router queue for slot.... +11:08:54 Sending to : <0> +11:08:54 ============================================================================ +11:08:55 ============================================================================ +11:08:55 Slot Id : <467> +11:08:55 Transaction Type : RESPONSE +11:08:55 Received From : +11:08:55 ============================================================================ +11:08:55 FNo. Len. Field Value +11:08:55 ============================================================================ +11:08:55 [ 1] [ 4] [0210] +11:08:55 [ 2] [ 16] [6213543000223023] +11:08:55 [ 3] [ 6] [010000] +11:08:55 [ 4] [ 12] [000050000000] +11:08:55 [ 7] [ 10] [0320110645] +11:08:55 [ 11] [ 6] [940387] +11:08:55 [ 12] [ 6] [110645] +11:08:55 [ 13] [ 4] [0320] +11:08:55 [ 15] [ 4] [0320] +11:08:55 [ 18] [ 4] [6011] +11:08:55 [ 19] [ 3] [418] +11:08:55 [ 32] [ 6] [668899] +11:08:55 [ 35] [ 32] [6213543000223023=491212012302710] +11:08:55 [ 37] [ 12] [507900270917] +11:08:55 [ 38] [ 6] [818891] +11:08:55 [ 39] [ 2] [00] +11:08:55 [ 41] [ 8] [03010004] +11:08:55 [ 49] [ 3] [418] +11:08:55 [ 54] [ 40] [0001418C0000701029830002418C000070102983] +11:08:55 ============================================================================ +11:08:55 Sending to : +11:08:55 ============================================================================ +11:08:55 + + +waiting on router queue for slot.... +11:08:55 ============================================================================ +11:08:55 Slot Id : <40> +11:08:55 Transaction Type : REQUEST +11:08:55 Received From : +11:08:55 ============================================================================ +11:08:55 FNo. Len. Field Value +11:08:55 ============================================================================ +11:08:55 [ 1] [ 4] [0800] +11:08:55 [ 7] [ 10] [0320040803] +11:08:55 [ 11] [ 6] [156020] +11:08:55 [ 70] [ 3] [301] +11:08:55 ============================================================================ +11:08:55 + + +waiting on router queue for slot.... +11:08:55 Sending to : +11:08:55 ============================================================================ +11:08:55 ============================================================================ +11:08:55 Slot Id : <40> +11:08:55 Transaction Type : RESPONSE +11:08:55 Received From : +11:08:55 ============================================================================ +11:08:55 FNo. Len. Field Value +11:08:55 ============================================================================ +11:08:55 [ 1] [ 4] [0810] +11:08:55 [ 7] [ 10] [0320040803] +11:08:55 [ 11] [ 6] [156020] +11:08:55 [ 39] [ 2] [00] +11:08:55 [ 70] [ 3] [301] +11:08:55 ============================================================================ +11:08:55 Calculate Source COMM Id = 2 +11:08:55 ============================================================================ +11:08:55 + + +waiting on router queue for slot.... +11:08:56 ============================================================================ +11:08:56 Slot Id : <467> +11:08:56 Transaction Type : RESPONSE +11:08:56 Received From : +11:08:56 ============================================================================ +11:08:56 FNo. Len. Field Value +11:08:56 ============================================================================ +11:08:56 [ 1] [ 4] [0210] +11:08:56 [ 2] [ 16] [6213543000223023] +11:08:56 [ 3] [ 6] [010000] +11:08:56 [ 4] [ 12] [000050000000] +11:08:56 [ 7] [ 10] [0320110645] +11:08:56 [ 11] [ 6] [940387] +11:08:56 [ 12] [ 6] [110645] +11:08:56 [ 13] [ 4] [0320] +11:08:56 [ 15] [ 4] [0320] +11:08:56 [ 18] [ 4] [6011] +11:08:56 [ 19] [ 3] [418] +11:08:56 [ 32] [ 6] [668899] +11:08:56 [ 35] [ 32] [6213543000223023=491212012302710] +11:08:56 [ 37] [ 12] [507900270917] +11:08:56 [ 38] [ 6] [818891] +11:08:56 [ 39] [ 2] [00] +11:08:56 [ 41] [ 8] [03010004] +11:08:56 [ 49] [ 3] [418] +11:08:56 [ 54] [ 40] [0001418C0000701029830002418C000070102983] +11:08:56 ============================================================================ +11:08:56 Calculate Source COMM Id = 4 +11:08:56 ============================================================================ +11:08:56 + + +waiting on router queue for slot.... +11:09:06 ============================================================================ +11:09:06 Slot Id : <43> +11:09:06 Transaction Type : REQUEST +11:09:06 Received From : +11:09:06 ============================================================================ +11:09:06 FNo. Len. Field Value +11:09:06 ============================================================================ +11:09:06 [ 1] [ 4] [0200] +11:09:06 [ 2] [ 16] [6213544001451779] +11:09:06 [ 3] [ 6] [010000] +11:09:06 [ 4] [ 12] [000010000000] +11:09:06 [ 7] [ 10] [0320040813] +11:09:06 [ 11] [ 6] [268354] +11:09:06 [ 12] [ 6] [110813] +11:09:06 [ 13] [ 4] [0320] +11:09:06 [ 14] [ 4] [4912] +11:09:06 [ 15] [ 4] [0320] +11:09:06 [ 18] [ 4] [6011] +11:09:06 [ 19] [ 3] [418] +11:09:06 [ 22] [ 3] [021] +11:09:06 [ 25] [ 2] [01] +11:09:06 [ 28] [ 9] [D00002000] +11:09:06 [ 32] [ 6] [180893] +11:09:06 [ 35] [ 32] [6213544001451779=491212015177878] +11:09:06 [ 37] [ 12] [507904268354] +11:09:06 [ 41] [ 8] [0527LPBL] +11:09:06 [ 42] [ 15] [999999 ] +11:09:06 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +11:09:06 [ 49] [ 3] [418] +11:09:06 [ 52] [ 16] [6D6749A3B3F05E09] +11:09:06 ============================================================================ +11:09:06 + + +waiting on router queue for slot.... +11:09:06 Sending to : +11:09:06 ============================================================================ +11:09:06 Sending to : +11:09:06 ============================================================================ +11:09:07 ============================================================================ +11:09:07 Slot Id : <28> +11:09:07 Transaction Type : REQUEST +11:09:07 Received From : +11:09:07 ============================================================================ +11:09:07 FNo. Len. Field Value +11:09:07 ============================================================================ +11:09:07 [ 1] [ 4] [0800] +11:09:07 [ 7] [ 10] [0320040814] +11:09:07 [ 11] [ 6] [156021] +11:09:07 [ 70] [ 3] [301] +11:09:07 ============================================================================ +11:09:07 + + +waiting on router queue for slot.... +11:09:07 Sending to : +11:09:07 ============================================================================ +11:09:07 ============================================================================ +11:09:07 Slot Id : <28> +11:09:07 Transaction Type : RESPONSE +11:09:07 Received From : +11:09:07 ============================================================================ +11:09:07 FNo. Len. Field Value +11:09:07 ============================================================================ +11:09:07 [ 1] [ 4] [0810] +11:09:07 [ 7] [ 10] [0320040814] +11:09:07 [ 11] [ 6] [156021] +11:09:07 [ 39] [ 2] [00] +11:09:07 [ 70] [ 3] [301] +11:09:07 ============================================================================ +11:09:07 Calculate Source COMM Id = 2 +11:09:07 ============================================================================ +11:09:07 + + +waiting on router queue for slot.... +11:09:07 ============================================================================ +11:09:07 Slot Id : <43> +11:09:07 Transaction Type : REQUEST +11:09:07 Received From : +11:09:07 ============================================================================ +11:09:07 FNo. Len. Field Value +11:09:07 ============================================================================ +11:09:07 [ 1] [ 4] [0200] +11:09:07 [ 2] [ 16] [6213544001451779] +11:09:07 [ 3] [ 6] [010000] +11:09:07 [ 4] [ 12] [000010000000] +11:09:07 [ 7] [ 10] [0320040813] +11:09:07 [ 11] [ 6] [268354] +11:09:07 [ 12] [ 6] [110813] +11:09:07 [ 13] [ 4] [0320] +11:09:07 [ 14] [ 4] [4912] +11:09:07 [ 15] [ 4] [0320] +11:09:07 [ 18] [ 4] [6011] +11:09:07 [ 19] [ 3] [418] +11:09:07 [ 22] [ 3] [021] +11:09:07 [ 25] [ 2] [01] +11:09:07 [ 28] [ 9] [D00002000] +11:09:07 [ 32] [ 6] [180893] +11:09:07 [ 35] [ 32] [6213544001451779=491212015177878] +11:09:07 [ 37] [ 12] [507904268354] +11:09:07 [ 41] [ 8] [0527LPBL] +11:09:07 [ 42] [ 15] [999999 ] +11:09:07 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +11:09:07 [ 49] [ 3] [418] +11:09:07 [ 52] [ 16] [6D6749A3B3F05E09] +11:09:07 ============================================================================ +11:09:07 + + +waiting on router queue for slot.... +11:09:07 Sending to : +11:09:07 ============================================================================ +11:09:07 ============================================================================ +11:09:07 Slot Id : <43> +11:09:07 Transaction Type : REQUEST +11:09:07 Received From : +11:09:07 ============================================================================ +11:09:07 FNo. Len. Field Value +11:09:07 ============================================================================ +11:09:07 [ 1] [ 4] [0200] +11:09:07 [ 2] [ 16] [6213544001451779] +11:09:07 [ 3] [ 6] [010000] +11:09:07 [ 4] [ 12] [000010000000] +11:09:07 [ 7] [ 10] [0320040813] +11:09:07 [ 11] [ 6] [268354] +11:09:07 [ 12] [ 6] [110813] +11:09:07 [ 13] [ 4] [0320] +11:09:07 [ 14] [ 4] [4912] +11:09:07 [ 15] [ 4] [0320] +11:09:07 [ 18] [ 4] [6011] +11:09:07 [ 19] [ 3] [418] +11:09:07 [ 22] [ 3] [021] +11:09:07 [ 25] [ 2] [01] +11:09:07 [ 28] [ 9] [D00002000] +11:09:07 [ 32] [ 6] [180893] +11:09:07 [ 35] [ 32] [6213544001451779=491212015177878] +11:09:07 [ 37] [ 12] [507904268354] +11:09:07 [ 41] [ 8] [0527LPBL] +11:09:07 [ 42] [ 15] [999999 ] +11:09:07 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +11:09:07 [ 49] [ 3] [418] +11:09:07 [ 52] [ 16] [F49B30F857B6A6F6] +11:09:07 ============================================================================ +11:09:07 + + +waiting on router queue for slot.... +11:09:07 Sending to : <0> +11:09:07 ============================================================================ +11:09:07 ============================================================================ +11:09:07 Slot Id : <43> +11:09:07 Transaction Type : RESPONSE +11:09:07 Received From : +11:09:07 ============================================================================ +11:09:07 FNo. Len. Field Value +11:09:07 ============================================================================ +11:09:07 [ 1] [ 4] [0210] +11:09:07 [ 2] [ 16] [6213544001451779] +11:09:07 [ 3] [ 6] [010000] +11:09:07 [ 4] [ 12] [000010000000] +11:09:07 [ 7] [ 10] [0320040813] +11:09:07 [ 11] [ 6] [268354] +11:09:07 [ 12] [ 6] [110813] +11:09:07 [ 13] [ 4] [0320] +11:09:07 [ 15] [ 4] [0320] +11:09:07 [ 18] [ 4] [6011] +11:09:07 [ 19] [ 3] [418] +11:09:07 [ 32] [ 6] [180893] +11:09:07 [ 35] [ 32] [6213544001451779=491212015177878] +11:09:07 [ 37] [ 12] [507904268354] +11:09:07 [ 38] [ 6] [939951] +11:09:07 [ 39] [ 2] [00] +11:09:07 [ 41] [ 8] [0527LPBL] +11:09:07 [ 49] [ 3] [418] +11:09:07 [ 54] [ 40] [0001418C0000151537380002418C000015153738] +11:09:07 ============================================================================ +11:09:07 Sending to : +11:09:07 ============================================================================ +11:09:07 + + +waiting on router queue for slot.... +11:09:08 ============================================================================ +11:09:08 Slot Id : <8> +11:09:08 Transaction Type : REQUEST +11:09:08 Received From : +11:09:08 ============================================================================ +11:09:08 FNo. Len. Field Value +11:09:08 ============================================================================ +11:09:08 [ 1] [ 4] [0200] +11:09:08 [ 2] [ 16] [6213544000555414] +11:09:08 [ 3] [ 6] [011000] +11:09:08 [ 4] [ 12] [000110000000] +11:09:08 [ 7] [ 10] [0320040815] +11:09:08 [ 11] [ 6] [268356] +11:09:08 [ 12] [ 6] [110815] +11:09:08 [ 13] [ 4] [0320] +11:09:08 [ 14] [ 4] [4912] +11:09:08 [ 15] [ 4] [0320] +11:09:08 [ 18] [ 4] [6011] +11:09:08 [ 19] [ 3] [418] +11:09:08 [ 22] [ 3] [021] +11:09:08 [ 25] [ 2] [01] +11:09:08 [ 28] [ 9] [D00002000] +11:09:08 [ 32] [ 6] [180893] +11:09:08 [ 35] [ 32] [6213544000555414=491212015541709] +11:09:08 [ 37] [ 12] [507904268356] +11:09:08 [ 41] [ 8] [0463LNTN] +11:09:08 [ 42] [ 15] [999999 ] +11:09:08 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +11:09:08 [ 49] [ 3] [418] +11:09:08 [ 52] [ 16] [D65CFF068F5ECB73] +11:09:08 ============================================================================ +11:09:08 + + +waiting on router queue for slot.... +11:09:08 Sending to : +11:09:08 ============================================================================ +11:09:08 Sending to : +11:09:08 ============================================================================ +11:09:08 ============================================================================ +11:09:08 Slot Id : <8> +11:09:08 Transaction Type : REQUEST +11:09:08 Received From : +11:09:08 ============================================================================ +11:09:08 FNo. Len. Field Value +11:09:08 ============================================================================ +11:09:08 [ 1] [ 4] [0200] +11:09:08 [ 2] [ 16] [6213544000555414] +11:09:08 [ 3] [ 6] [011000] +11:09:08 [ 4] [ 12] [000110000000] +11:09:08 [ 7] [ 10] [0320040815] +11:09:08 [ 11] [ 6] [268356] +11:09:08 [ 12] [ 6] [110815] +11:09:08 [ 13] [ 4] [0320] +11:09:08 [ 14] [ 4] [4912] +11:09:08 [ 15] [ 4] [0320] +11:09:08 [ 18] [ 4] [6011] +11:09:08 [ 19] [ 3] [418] +11:09:08 [ 22] [ 3] [021] +11:09:08 [ 25] [ 2] [01] +11:09:08 [ 28] [ 9] [D00002000] +11:09:08 [ 32] [ 6] [180893] +11:09:08 [ 35] [ 32] [6213544000555414=491212015541709] +11:09:08 [ 37] [ 12] [507904268356] +11:09:08 [ 41] [ 8] [0463LNTN] +11:09:08 [ 42] [ 15] [999999 ] +11:09:08 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +11:09:08 [ 49] [ 3] [418] +11:09:08 [ 52] [ 16] [D65CFF068F5ECB73] +11:09:08 ============================================================================ +11:09:08 + + +waiting on router queue for slot.... +11:09:08 Sending to : +11:09:08 ============================================================================ +11:09:08 ============================================================================ +11:09:08 Slot Id : <8> +11:09:08 Transaction Type : REQUEST +11:09:08 Received From : +11:09:08 ============================================================================ +11:09:08 FNo. Len. Field Value +11:09:08 ============================================================================ +11:09:08 [ 1] [ 4] [0200] +11:09:08 [ 2] [ 16] [6213544000555414] +11:09:08 [ 3] [ 6] [011000] +11:09:08 [ 4] [ 12] [000110000000] +11:09:08 [ 7] [ 10] [0320040815] +11:09:08 [ 11] [ 6] [268356] +11:09:08 [ 12] [ 6] [110815] +11:09:08 [ 13] [ 4] [0320] +11:09:08 [ 14] [ 4] [4912] +11:09:08 [ 15] [ 4] [0320] +11:09:08 [ 18] [ 4] [6011] +11:09:08 [ 19] [ 3] [418] +11:09:08 [ 22] [ 3] [021] +11:09:08 [ 25] [ 2] [01] +11:09:08 [ 28] [ 9] [D00002000] +11:09:08 [ 32] [ 6] [180893] +11:09:08 [ 35] [ 32] [6213544000555414=491212015541709] +11:09:08 [ 37] [ 12] [507904268356] +11:09:08 [ 41] [ 8] [0463LNTN] +11:09:08 [ 42] [ 15] [999999 ] +11:09:08 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +11:09:08 [ 49] [ 3] [418] +11:09:08 [ 52] [ 16] [07344FEA64948F1A] +11:09:08 ============================================================================ +11:09:08 + + +waiting on router queue for slot.... +11:09:08 Sending to : <0> +11:09:08 ============================================================================ +11:09:08 ============================================================================ +11:09:08 Slot Id : <8> +11:09:08 Transaction Type : RESPONSE +11:09:08 Received From : +11:09:08 ============================================================================ +11:09:08 FNo. Len. Field Value +11:09:08 ============================================================================ +11:09:08 [ 1] [ 4] [0210] +11:09:08 [ 2] [ 16] [6213544000555414] +11:09:08 [ 3] [ 6] [011000] +11:09:08 [ 4] [ 12] [000110000000] +11:09:08 [ 7] [ 10] [0320040815] +11:09:08 [ 11] [ 6] [268356] +11:09:08 [ 12] [ 6] [110815] +11:09:08 [ 13] [ 4] [0320] +11:09:08 [ 15] [ 4] [0320] +11:09:08 [ 18] [ 4] [6011] +11:09:08 [ 19] [ 3] [418] +11:09:08 [ 22] [ 3] [021] +11:09:08 [ 32] [ 6] [180893] +11:09:08 [ 35] [ 32] [6213544000555414=491212015541709] +11:09:08 [ 37] [ 12] [507904268356] +11:09:08 [ 39] [ 2] [61] +11:09:08 [ 41] [ 8] [0463LNTN] +11:09:08 [ 49] [ 3] [418] +11:09:08 ============================================================================ +11:09:08 Sending to : +11:09:08 ============================================================================ +11:09:08 + + +waiting on router queue for slot.... +11:09:09 ============================================================================ +11:09:09 Slot Id : <43> +11:09:09 Transaction Type : RESPONSE +11:09:09 Received From : +11:09:09 ============================================================================ +11:09:09 FNo. Len. Field Value +11:09:09 ============================================================================ +11:09:09 [ 1] [ 4] [0210] +11:09:09 [ 2] [ 16] [6213544001451779] +11:09:09 [ 3] [ 6] [010000] +11:09:09 [ 4] [ 12] [000010000000] +11:09:09 [ 7] [ 10] [0320040813] +11:09:09 [ 11] [ 6] [268354] +11:09:09 [ 12] [ 6] [110813] +11:09:09 [ 13] [ 4] [0320] +11:09:09 [ 15] [ 4] [0320] +11:09:09 [ 18] [ 4] [6011] +11:09:09 [ 19] [ 3] [418] +11:09:09 [ 32] [ 6] [180893] +11:09:09 [ 35] [ 32] [6213544001451779=491212015177878] +11:09:09 [ 37] [ 12] [507904268354] +11:09:09 [ 38] [ 6] [939951] +11:09:09 [ 39] [ 2] [00] +11:09:09 [ 41] [ 8] [0527LPBL] +11:09:09 [ 49] [ 3] [418] +11:09:09 [ 54] [ 40] [0001418C0000151537380002418C000015153738] +11:09:09 ============================================================================ +11:09:09 Calculate Source COMM Id = 2 +11:09:09 ============================================================================ +11:09:09 + + +waiting on router queue for slot.... +11:09:10 ============================================================================ +11:09:10 Slot Id : <52> +11:09:10 Transaction Type : REQUEST +11:09:10 Received From : +11:09:10 ============================================================================ +11:09:10 FNo. Len. Field Value +11:09:10 ============================================================================ +11:09:10 [ 1] [ 4] [0200] +11:09:10 [ 2] [ 16] [6213544001916417] +11:09:10 [ 3] [ 6] [010000] +11:09:10 [ 4] [ 12] [000010000000] +11:09:10 [ 7] [ 10] [0320110701] +11:09:10 [ 11] [ 6] [940393] +11:09:10 [ 12] [ 6] [110701] +11:09:10 [ 13] [ 4] [0320] +11:09:10 [ 15] [ 4] [0320] +11:09:10 [ 18] [ 4] [6011] +11:09:10 [ 19] [ 3] [418] +11:09:10 [ 22] [ 3] [021] +11:09:10 [ 25] [ 2] [01] +11:09:10 [ 28] [ 9] [D00002000] +11:09:10 [ 32] [ 6] [668899] +11:09:10 [ 35] [ 32] [6213544001916417=491212011641971] +11:09:10 [ 37] [ 12] [507902730348] +11:09:10 [ 41] [ 8] [03013005] +11:09:10 [ 42] [ 15] [APT ] +11:09:10 [ 43] [ 40] [ CEMENT FACTORY THAKHAEK ] +11:09:10 [ 49] [ 3] [418] +11:09:10 [ 52] [ 16] [BB316AAE6EA64998] +11:09:10 ============================================================================ +11:09:10 + + +waiting on router queue for slot.... +11:09:10 Sending to : +11:09:10 ============================================================================ +11:09:10 Sending to : +11:09:10 ============================================================================ +11:09:10 ============================================================================ +11:09:10 Slot Id : <8> +11:09:10 Transaction Type : RESPONSE +11:09:10 Received From : +11:09:10 ============================================================================ +11:09:10 FNo. Len. Field Value +11:09:10 ============================================================================ +11:09:10 [ 1] [ 4] [0210] +11:09:10 [ 2] [ 16] [6213544000555414] +11:09:10 [ 3] [ 6] [011000] +11:09:10 [ 4] [ 12] [000110000000] +11:09:10 [ 7] [ 10] [0320040815] +11:09:10 [ 11] [ 6] [268356] +11:09:10 [ 12] [ 6] [110815] +11:09:10 [ 13] [ 4] [0320] +11:09:10 [ 15] [ 4] [0320] +11:09:10 [ 18] [ 4] [6011] +11:09:10 [ 19] [ 3] [418] +11:09:10 [ 22] [ 3] [021] +11:09:10 [ 32] [ 6] [180893] +11:09:10 [ 35] [ 32] [6213544000555414=491212015541709] +11:09:10 [ 37] [ 12] [507904268356] +11:09:10 [ 39] [ 2] [61] +11:09:10 [ 41] [ 8] [0463LNTN] +11:09:10 [ 49] [ 3] [418] +11:09:10 ============================================================================ +11:09:10 Calculate Source COMM Id = 2 +11:09:10 ============================================================================ +11:09:10 + + +waiting on router queue for slot.... +11:09:10 ============================================================================ +11:09:10 Slot Id : <52> +11:09:10 Transaction Type : REQUEST +11:09:10 Received From : +11:09:10 ============================================================================ +11:09:10 FNo. Len. Field Value +11:09:10 ============================================================================ +11:09:10 [ 1] [ 4] [0200] +11:09:10 [ 2] [ 16] [6213544001916417] +11:09:10 [ 3] [ 6] [010000] +11:09:10 [ 4] [ 12] [000010000000] +11:09:10 [ 7] [ 10] [0320110701] +11:09:10 [ 11] [ 6] [940393] +11:09:10 [ 12] [ 6] [110701] +11:09:10 [ 13] [ 4] [0320] +11:09:10 [ 15] [ 4] [0320] +11:09:10 [ 18] [ 4] [6011] +11:09:10 [ 19] [ 3] [418] +11:09:10 [ 22] [ 3] [021] +11:09:10 [ 25] [ 2] [01] +11:09:10 [ 28] [ 9] [D00002000] +11:09:10 [ 32] [ 6] [668899] +11:09:10 [ 35] [ 32] [6213544001916417=491212011641971] +11:09:10 [ 37] [ 12] [507902730348] +11:09:10 [ 41] [ 8] [03013005] +11:09:10 [ 42] [ 15] [APT ] +11:09:10 [ 43] [ 40] [ CEMENT FACTORY THAKHAEK ] +11:09:10 [ 49] [ 3] [418] +11:09:10 [ 52] [ 16] [BB316AAE6EA64998] +11:09:10 ============================================================================ +11:09:10 + + +waiting on router queue for slot.... +11:09:10 Sending to : +11:09:10 ============================================================================ +11:09:10 ============================================================================ +11:09:10 Slot Id : <52> +11:09:10 Transaction Type : REQUEST +11:09:10 Received From : +11:09:10 ============================================================================ +11:09:10 FNo. Len. Field Value +11:09:10 ============================================================================ +11:09:10 [ 1] [ 4] [0200] +11:09:10 [ 2] [ 16] [6213544001916417] +11:09:10 [ 3] [ 6] [010000] +11:09:10 [ 4] [ 12] [000010000000] +11:09:10 [ 7] [ 10] [0320110701] +11:09:10 [ 11] [ 6] [940393] +11:09:10 [ 12] [ 6] [110701] +11:09:10 [ 13] [ 4] [0320] +11:09:10 [ 15] [ 4] [0320] +11:09:10 [ 18] [ 4] [6011] +11:09:10 [ 19] [ 3] [418] +11:09:10 [ 22] [ 3] [021] +11:09:10 [ 25] [ 2] [01] +11:09:10 [ 28] [ 9] [D00002000] +11:09:10 [ 32] [ 6] [668899] +11:09:10 [ 35] [ 32] [6213544001916417=491212011641971] +11:09:10 [ 37] [ 12] [507902730348] +11:09:10 [ 41] [ 8] [03013005] +11:09:10 [ 42] [ 15] [APT ] +11:09:10 [ 43] [ 40] [ CEMENT FACTORY THAKHAEK ] +11:09:10 [ 49] [ 3] [418] +11:09:10 [ 52] [ 16] [052128CBAAEE2693] +11:09:10 ============================================================================ +11:09:10 + + +waiting on router queue for slot.... +11:09:10 Sending to : <0> +11:09:10 ============================================================================ +11:09:11 ============================================================================ +11:09:11 Slot Id : <52> +11:09:11 Transaction Type : RESPONSE +11:09:11 Received From : +11:09:11 ============================================================================ +11:09:11 FNo. Len. Field Value +11:09:11 ============================================================================ +11:09:11 [ 1] [ 4] [0210] +11:09:11 [ 2] [ 16] [6213544001916417] +11:09:11 [ 3] [ 6] [010000] +11:09:11 [ 4] [ 12] [000010000000] +11:09:11 [ 7] [ 10] [0320110701] +11:09:11 [ 11] [ 6] [940393] +11:09:11 [ 12] [ 6] [110701] +11:09:11 [ 13] [ 4] [0320] +11:09:11 [ 15] [ 4] [0320] +11:09:11 [ 18] [ 4] [6011] +11:09:11 [ 19] [ 3] [418] +11:09:11 [ 32] [ 6] [668899] +11:09:11 [ 35] [ 32] [6213544001916417=491212011641971] +11:09:11 [ 37] [ 12] [507902730348] +11:09:11 [ 38] [ 6] [452265] +11:09:11 [ 39] [ 2] [00] +11:09:11 [ 41] [ 8] [03013005] +11:09:11 [ 49] [ 3] [418] +11:09:11 [ 54] [ 40] [0001418C0000095795970002418C000009579597] +11:09:11 ============================================================================ +11:09:11 Sending to : +11:09:11 ============================================================================ +11:09:11 + + +waiting on router queue for slot.... +11:09:12 ============================================================================ +11:09:12 Slot Id : <50> +11:09:12 Transaction Type : REQUEST +11:09:12 Received From : +11:09:12 ============================================================================ +11:09:12 FNo. Len. Field Value +11:09:12 ============================================================================ +11:09:12 [ 1] [ 4] [0800] +11:09:12 [ 2] [ 5] [02531] +11:09:12 [ 3] [ 6] [579118] +11:09:12 [ 7] [ 10] [0320040912] +11:09:12 [ 11] [ 6] [807059] +11:09:12 [ 15] [ 10] [0320040912] +11:09:12 [ 37] [ 11] [57911807059] +11:09:12 [ 70] [ 3] [001] +11:09:12 ============================================================================ +11:09:12 + + +waiting on router queue for slot.... +11:09:12 ============================================================================ +11:09:12 Slot Id : <50> +11:09:12 Transaction Type : RESPONSE +11:09:12 Received From : +11:09:12 ============================================================================ +11:09:12 FNo. Len. Field Value +11:09:12 ============================================================================ +11:09:12 [ 1] [ 4] [0810] +11:09:12 [ 7] [ 10] [0320040912] +11:09:12 [ 11] [ 6] [807059] +11:09:12 [ 15] [ 4] [0320] +11:09:12 [ 37] [ 12] [57911807059] +11:09:12 [ 39] [ 2] [00] +11:09:12 [ 70] [ 3] [001] +11:09:12 ============================================================================ +11:09:12 Sending to : +11:09:12 ============================================================================ +11:09:12 + + +waiting on router queue for slot.... +11:09:12 ============================================================================ +11:09:12 Slot Id : <52> +11:09:12 Transaction Type : RESPONSE +11:09:12 Received From : +11:09:12 ============================================================================ +11:09:12 FNo. Len. Field Value +11:09:12 ============================================================================ +11:09:12 [ 1] [ 4] [0210] +11:09:12 [ 2] [ 16] [6213544001916417] +11:09:12 [ 3] [ 6] [010000] +11:09:12 [ 4] [ 12] [000010000000] +11:09:12 [ 7] [ 10] [0320110701] +11:09:12 [ 11] [ 6] [940393] +11:09:12 [ 12] [ 6] [110701] +11:09:12 [ 13] [ 4] [0320] +11:09:12 [ 15] [ 4] [0320] +11:09:12 [ 18] [ 4] [6011] +11:09:12 [ 19] [ 3] [418] +11:09:12 [ 32] [ 6] [668899] +11:09:12 [ 35] [ 32] [6213544001916417=491212011641971] +11:09:12 [ 37] [ 12] [507902730348] +11:09:12 [ 38] [ 6] [452265] +11:09:12 [ 39] [ 2] [00] +11:09:12 [ 41] [ 8] [03013005] +11:09:12 [ 49] [ 3] [418] +11:09:12 [ 54] [ 40] [0001418C0000095795970002418C000009579597] +11:09:12 ============================================================================ +11:09:12 Calculate Source COMM Id = 4 +11:09:12 ============================================================================ +11:09:12 + + +waiting on router queue for slot.... +11:09:23 ============================================================================ +11:09:23 Slot Id : <25> +11:09:23 Transaction Type : REQUEST +11:09:23 Received From : +11:09:23 ============================================================================ +11:09:23 FNo. Len. Field Value +11:09:23 ============================================================================ +11:09:23 [ 1] [ 4] [0800] +11:09:23 [ 7] [ 10] [0320040831] +11:09:23 [ 11] [ 6] [156022] +11:09:23 [ 70] [ 3] [301] +11:09:23 ============================================================================ +11:09:23 + + +waiting on router queue for slot.... +11:09:23 Sending to : +11:09:23 ============================================================================ +11:09:23 ============================================================================ +11:09:23 Slot Id : <25> +11:09:23 Transaction Type : RESPONSE +11:09:23 Received From : +11:09:23 ============================================================================ +11:09:23 FNo. Len. Field Value +11:09:23 ============================================================================ +11:09:23 [ 1] [ 4] [0810] +11:09:23 [ 7] [ 10] [0320040831] +11:09:23 [ 11] [ 6] [156022] +11:09:23 [ 39] [ 2] [00] +11:09:23 [ 70] [ 3] [301] +11:09:23 ============================================================================ +11:09:23 Calculate Source COMM Id = 2 +11:09:23 ============================================================================ +11:09:23 + + +waiting on router queue for slot.... +11:09:33 ============================================================================ +11:09:33 Slot Id : <44> +11:09:33 Transaction Type : REQUEST +11:09:33 Received From : +11:09:33 ============================================================================ +11:09:33 FNo. Len. Field Value +11:09:33 ============================================================================ +11:09:33 [ 1] [ 4] [0800] +11:09:33 [ 7] [ 10] [0320040841] +11:09:33 [ 11] [ 6] [156023] +11:09:33 [ 70] [ 3] [301] +11:09:33 ============================================================================ +11:09:33 + + +waiting on router queue for slot.... +11:09:33 Sending to : +11:09:33 ============================================================================ +11:09:33 ============================================================================ +11:09:33 Slot Id : <44> +11:09:33 Transaction Type : RESPONSE +11:09:33 Received From : +11:09:33 ============================================================================ +11:09:33 FNo. Len. Field Value +11:09:33 ============================================================================ +11:09:33 [ 1] [ 4] [0810] +11:09:33 [ 7] [ 10] [0320040841] +11:09:33 [ 11] [ 6] [156023] +11:09:33 [ 39] [ 2] [00] +11:09:33 [ 70] [ 3] [301] +11:09:33 ============================================================================ +11:09:33 Calculate Source COMM Id = 2 +11:09:33 ============================================================================ +11:09:33 + + +waiting on router queue for slot.... +11:09:49 ============================================================================ +11:09:49 Slot Id : <61> +11:09:49 Transaction Type : REQUEST +11:09:49 Received From : +11:09:49 ============================================================================ +11:09:49 FNo. Len. Field Value +11:09:49 ============================================================================ +11:09:49 [ 1] [ 4] [0800] +11:09:49 [ 7] [ 10] [0320040857] +11:09:49 [ 11] [ 6] [156024] +11:09:49 [ 70] [ 3] [301] +11:09:49 ============================================================================ +11:09:49 + + +waiting on router queue for slot.... +11:09:49 Sending to : +11:09:49 ============================================================================ +11:09:49 ============================================================================ +11:09:49 Slot Id : <61> +11:09:49 Transaction Type : RESPONSE +11:09:49 Received From : +11:09:49 ============================================================================ +11:09:49 FNo. Len. Field Value +11:09:49 ============================================================================ +11:09:49 [ 1] [ 4] [0810] +11:09:49 [ 7] [ 10] [0320040857] +11:09:49 [ 11] [ 6] [156024] +11:09:49 [ 39] [ 2] [00] +11:09:49 [ 70] [ 3] [301] +11:09:49 ============================================================================ +11:09:49 Calculate Source COMM Id = 2 +11:09:49 ============================================================================ +11:09:49 + + +waiting on router queue for slot.... +11:09:51 ============================================================================ +11:09:51 Slot Id : <55> +11:09:51 Transaction Type : REQUEST +11:09:51 Received From : +11:09:51 ============================================================================ +11:09:51 FNo. Len. Field Value +11:09:51 ============================================================================ +11:09:51 [ 1] [ 4] [0200] +11:09:51 [ 2] [ 16] [6213544000555414] +11:09:51 [ 3] [ 6] [010000] +11:09:51 [ 4] [ 12] [000100000000] +11:09:51 [ 7] [ 10] [0320040858] +11:09:51 [ 11] [ 6] [268361] +11:09:51 [ 12] [ 6] [110858] +11:09:51 [ 13] [ 4] [0320] +11:09:51 [ 14] [ 4] [4912] +11:09:51 [ 15] [ 4] [0320] +11:09:51 [ 18] [ 4] [6011] +11:09:51 [ 19] [ 3] [418] +11:09:51 [ 22] [ 3] [021] +11:09:51 [ 25] [ 2] [01] +11:09:51 [ 28] [ 9] [D00002000] +11:09:51 [ 32] [ 6] [180893] +11:09:51 [ 35] [ 32] [6213544000555414=491212015541709] +11:09:51 [ 37] [ 12] [507904268361] +11:09:51 [ 41] [ 8] [0463LNTN] +11:09:51 [ 42] [ 15] [999999 ] +11:09:51 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +11:09:51 [ 49] [ 3] [418] +11:09:51 [ 52] [ 16] [D65CFF068F5ECB73] +11:09:51 ============================================================================ +11:09:51 + + +waiting on router queue for slot.... +11:09:51 Sending to : +11:09:51 ============================================================================ +11:09:51 Sending to : +11:09:51 ============================================================================ +11:09:51 ============================================================================ +11:09:51 Slot Id : <55> +11:09:51 Transaction Type : REQUEST +11:09:51 Received From : +11:09:51 ============================================================================ +11:09:51 FNo. Len. Field Value +11:09:51 ============================================================================ +11:09:51 [ 1] [ 4] [0200] +11:09:51 [ 2] [ 16] [6213544000555414] +11:09:51 [ 3] [ 6] [010000] +11:09:51 [ 4] [ 12] [000100000000] +11:09:51 [ 7] [ 10] [0320040858] +11:09:51 [ 11] [ 6] [268361] +11:09:51 [ 12] [ 6] [110858] +11:09:51 [ 13] [ 4] [0320] +11:09:51 [ 14] [ 4] [4912] +11:09:51 [ 15] [ 4] [0320] +11:09:51 [ 18] [ 4] [6011] +11:09:51 [ 19] [ 3] [418] +11:09:51 [ 22] [ 3] [021] +11:09:51 [ 25] [ 2] [01] +11:09:51 [ 28] [ 9] [D00002000] +11:09:51 [ 32] [ 6] [180893] +11:09:51 [ 35] [ 32] [6213544000555414=491212015541709] +11:09:51 [ 37] [ 12] [507904268361] +11:09:51 [ 41] [ 8] [0463LNTN] +11:09:51 [ 42] [ 15] [999999 ] +11:09:51 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +11:09:51 [ 49] [ 3] [418] +11:09:51 [ 52] [ 16] [D65CFF068F5ECB73] +11:09:51 ============================================================================ +11:09:51 + + +waiting on router queue for slot.... +11:09:51 Sending to : +11:09:51 ============================================================================ +11:09:51 ============================================================================ +11:09:51 Slot Id : <55> +11:09:51 Transaction Type : REQUEST +11:09:51 Received From : +11:09:51 ============================================================================ +11:09:51 FNo. Len. Field Value +11:09:51 ============================================================================ +11:09:51 [ 1] [ 4] [0200] +11:09:51 [ 2] [ 16] [6213544000555414] +11:09:51 [ 3] [ 6] [010000] +11:09:51 [ 4] [ 12] [000100000000] +11:09:51 [ 7] [ 10] [0320040858] +11:09:51 [ 11] [ 6] [268361] +11:09:51 [ 12] [ 6] [110858] +11:09:51 [ 13] [ 4] [0320] +11:09:51 [ 14] [ 4] [4912] +11:09:51 [ 15] [ 4] [0320] +11:09:51 [ 18] [ 4] [6011] +11:09:51 [ 19] [ 3] [418] +11:09:51 [ 22] [ 3] [021] +11:09:51 [ 25] [ 2] [01] +11:09:51 [ 28] [ 9] [D00002000] +11:09:51 [ 32] [ 6] [180893] +11:09:51 [ 35] [ 32] [6213544000555414=491212015541709] +11:09:51 [ 37] [ 12] [507904268361] +11:09:51 [ 41] [ 8] [0463LNTN] +11:09:51 [ 42] [ 15] [999999 ] +11:09:51 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +11:09:51 [ 49] [ 3] [418] +11:09:51 [ 52] [ 16] [07344FEA64948F1A] +11:09:51 ============================================================================ +11:09:51 + + +waiting on router queue for slot.... +11:09:51 Sending to : <0> +11:09:51 ============================================================================ +11:09:52 ============================================================================ +11:09:52 Slot Id : <55> +11:09:52 Transaction Type : RESPONSE +11:09:52 Received From : +11:09:52 ============================================================================ +11:09:52 FNo. Len. Field Value +11:09:52 ============================================================================ +11:09:52 [ 1] [ 4] [0210] +11:09:52 [ 2] [ 16] [6213544000555414] +11:09:52 [ 3] [ 6] [010000] +11:09:52 [ 4] [ 12] [000100000000] +11:09:52 [ 7] [ 10] [0320040858] +11:09:52 [ 11] [ 6] [268361] +11:09:52 [ 12] [ 6] [110858] +11:09:52 [ 13] [ 4] [0320] +11:09:52 [ 15] [ 4] [0320] +11:09:52 [ 18] [ 4] [6011] +11:09:52 [ 19] [ 3] [418] +11:09:52 [ 32] [ 6] [180893] +11:09:52 [ 35] [ 32] [6213544000555414=491212015541709] +11:09:52 [ 37] [ 12] [507904268361] +11:09:52 [ 38] [ 6] [842040] +11:09:52 [ 39] [ 2] [00] +11:09:52 [ 41] [ 8] [0463LNTN] +11:09:52 [ 49] [ 3] [418] +11:09:52 [ 54] [ 40] [0001418C0005209640240002418C000520964024] +11:09:52 ============================================================================ +11:09:52 Sending to : +11:09:52 ============================================================================ +11:09:52 + + +waiting on router queue for slot.... +11:09:54 ============================================================================ +11:09:54 Slot Id : <55> +11:09:54 Transaction Type : RESPONSE +11:09:54 Received From : +11:09:54 ============================================================================ +11:09:54 FNo. Len. Field Value +11:09:54 ============================================================================ +11:09:54 [ 1] [ 4] [0210] +11:09:54 [ 2] [ 16] [6213544000555414] +11:09:54 [ 3] [ 6] [010000] +11:09:54 [ 4] [ 12] [000100000000] +11:09:54 [ 7] [ 10] [0320040858] +11:09:54 [ 11] [ 6] [268361] +11:09:54 [ 12] [ 6] [110858] +11:09:54 [ 13] [ 4] [0320] +11:09:54 [ 15] [ 4] [0320] +11:09:54 [ 18] [ 4] [6011] +11:09:54 [ 19] [ 3] [418] +11:09:54 [ 32] [ 6] [180893] +11:09:54 [ 35] [ 32] [6213544000555414=491212015541709] +11:09:54 [ 37] [ 12] [507904268361] +11:09:54 [ 38] [ 6] [842040] +11:09:54 [ 39] [ 2] [00] +11:09:54 [ 41] [ 8] [0463LNTN] +11:09:54 [ 49] [ 3] [418] +11:09:54 [ 54] [ 40] [0001418C0005209640240002418C000520964024] +11:09:54 ============================================================================ +11:09:54 Calculate Source COMM Id = 2 +11:09:54 ============================================================================ +11:09:54 + + +waiting on router queue for slot.... +11:09:55 ============================================================================ +11:09:55 Slot Id : <15> +11:09:55 Transaction Type : REQUEST +11:09:55 Received From : +11:09:55 ============================================================================ +11:09:55 FNo. Len. Field Value +11:09:55 ============================================================================ +11:09:55 [ 1] [ 4] [0800] +11:09:55 [ 7] [ 10] [0320041742] +11:09:55 [ 11] [ 6] [081284] +11:09:55 [ 37] [ 12] [57911081284] +11:09:55 [ 70] [ 3] [301] +11:09:55 ============================================================================ +11:09:55 + + +waiting on router queue for slot.... +11:09:55 Sending to : +11:09:55 ============================================================================ +11:09:55 ============================================================================ +11:09:55 Slot Id : <15> +11:09:55 Transaction Type : RESPONSE +11:09:55 Received From : +11:09:55 ============================================================================ +11:09:55 FNo. Len. Field Value +11:09:55 ============================================================================ +11:09:55 [ 1] [ 4] [0810] +11:09:55 [ 7] [ 10] [0320041742] +11:09:55 [ 11] [ 6] [081284] +11:09:55 [ 37] [ 12] [579110812840] +11:09:55 [ 39] [ 2] [00] +11:09:55 [ 70] [ 3] [810] +11:09:55 ============================================================================ +11:09:55 Calculate Source COMM Id = 1 +11:09:55 ============================================================================ +11:09:55 + + +waiting on router queue for slot.... +11:10:06 ============================================================================ +11:10:06 Slot Id : <478> +11:10:06 Transaction Type : REQUEST +11:10:06 Received From : +11:10:06 ============================================================================ +11:10:06 FNo. Len. Field Value +11:10:06 ============================================================================ +11:10:06 [ 1] [ 4] [0800] +11:10:06 [ 7] [ 10] [0320040913] +11:10:06 [ 11] [ 6] [156025] +11:10:06 [ 70] [ 3] [301] +11:10:06 ============================================================================ +11:10:06 + + +waiting on router queue for slot.... +11:10:06 Sending to : +11:10:06 ============================================================================ +11:10:06 ============================================================================ +11:10:06 Slot Id : <478> +11:10:06 Transaction Type : RESPONSE +11:10:06 Received From : +11:10:06 ============================================================================ +11:10:06 FNo. Len. Field Value +11:10:06 ============================================================================ +11:10:06 [ 1] [ 4] [0810] +11:10:06 [ 7] [ 10] [0320040913] +11:10:06 [ 11] [ 6] [156025] +11:10:06 [ 39] [ 2] [00] +11:10:06 [ 70] [ 3] [301] +11:10:06 ============================================================================ +11:10:06 Calculate Source COMM Id = 2 +11:10:06 ============================================================================ +11:10:06 + + +waiting on router queue for slot.... +11:10:14 ============================================================================ +11:10:14 Slot Id : <60> +11:10:14 Transaction Type : REQUEST +11:10:14 Received From : +11:10:14 ============================================================================ +11:10:14 FNo. Len. Field Value +11:10:14 ============================================================================ +11:10:14 [ 1] [ 4] [0800] +11:10:14 [ 2] [ 5] [02531] +11:10:14 [ 3] [ 6] [579118] +11:10:14 [ 7] [ 10] [0320041014] +11:10:14 [ 11] [ 6] [807060] +11:10:14 [ 15] [ 10] [0320041014] +11:10:14 [ 37] [ 11] [57911807060] +11:10:14 [ 70] [ 3] [001] +11:10:14 ============================================================================ +11:10:14 + + +waiting on router queue for slot.... +11:10:14 ============================================================================ +11:10:14 Slot Id : <60> +11:10:14 Transaction Type : RESPONSE +11:10:14 Received From : +11:10:14 ============================================================================ +11:10:14 FNo. Len. Field Value +11:10:14 ============================================================================ +11:10:14 [ 1] [ 4] [0810] +11:10:14 [ 7] [ 10] [0320041014] +11:10:14 [ 11] [ 6] [807060] +11:10:14 [ 15] [ 4] [0320] +11:10:14 [ 37] [ 12] [57911807060] +11:10:14 [ 39] [ 2] [00] +11:10:14 [ 70] [ 3] [001] +11:10:14 ============================================================================ +11:10:14 Sending to : +11:10:14 ============================================================================ +11:10:14 + + +waiting on router queue for slot.... +11:10:22 ============================================================================ +11:10:22 Slot Id : <68> +11:10:22 Transaction Type : REQUEST +11:10:22 Received From : +11:10:22 ============================================================================ +11:10:22 FNo. Len. Field Value +11:10:22 ============================================================================ +11:10:22 [ 1] [ 4] [0800] +11:10:22 [ 7] [ 10] [0320040929] +11:10:22 [ 11] [ 6] [156026] +11:10:22 [ 70] [ 3] [301] +11:10:22 ============================================================================ +11:10:22 + + +waiting on router queue for slot.... +11:10:22 Sending to : +11:10:22 ============================================================================ +11:10:22 ============================================================================ +11:10:22 Slot Id : <68> +11:10:22 Transaction Type : RESPONSE +11:10:22 Received From : +11:10:22 ============================================================================ +11:10:22 FNo. Len. Field Value +11:10:22 ============================================================================ +11:10:22 [ 1] [ 4] [0810] +11:10:22 [ 7] [ 10] [0320040929] +11:10:22 [ 11] [ 6] [156026] +11:10:22 [ 39] [ 2] [00] +11:10:22 [ 70] [ 3] [301] +11:10:22 ============================================================================ +11:10:22 Calculate Source COMM Id = 2 +11:10:22 ============================================================================ +11:10:22 + + +waiting on router queue for slot.... +11:10:25 ============================================================================ +11:10:25 Slot Id : <63> +11:10:25 Transaction Type : REQUEST +11:10:25 Received From : +11:10:25 ============================================================================ +11:10:25 FNo. Len. Field Value +11:10:25 ============================================================================ +11:10:25 [ 1] [ 4] [0200] +11:10:25 [ 2] [ 16] [6213543000229624] +11:10:25 [ 3] [ 6] [010000] +11:10:25 [ 4] [ 12] [000100000000] +11:10:25 [ 7] [ 10] [0320040932] +11:10:25 [ 11] [ 6] [268367] +11:10:25 [ 12] [ 6] [110932] +11:10:25 [ 13] [ 4] [0320] +11:10:25 [ 14] [ 4] [4912] +11:10:25 [ 15] [ 4] [0320] +11:10:25 [ 18] [ 4] [6011] +11:10:25 [ 19] [ 3] [418] +11:10:25 [ 22] [ 3] [021] +11:10:25 [ 25] [ 2] [01] +11:10:25 [ 28] [ 9] [D00002000] +11:10:25 [ 32] [ 6] [180893] +11:10:25 [ 35] [ 32] [6213543000229624=491212012962361] +11:10:25 [ 37] [ 12] [507904268367] +11:10:25 [ 41] [ 8] [0368KMMX] +11:10:25 [ 42] [ 15] [999999 ] +11:10:25 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:10:25 [ 49] [ 3] [418] +11:10:25 [ 52] [ 16] [622FDE71443BAF06] +11:10:25 ============================================================================ +11:10:25 + + +waiting on router queue for slot.... +11:10:25 Sending to : +11:10:25 ============================================================================ +11:10:25 Sending to : +11:10:25 ============================================================================ +11:10:25 ============================================================================ +11:10:25 Slot Id : <63> +11:10:25 Transaction Type : REQUEST +11:10:25 Received From : +11:10:25 ============================================================================ +11:10:25 FNo. Len. Field Value +11:10:25 ============================================================================ +11:10:25 [ 1] [ 4] [0200] +11:10:25 [ 2] [ 16] [6213543000229624] +11:10:25 [ 3] [ 6] [010000] +11:10:25 [ 4] [ 12] [000100000000] +11:10:25 [ 7] [ 10] [0320040932] +11:10:25 [ 11] [ 6] [268367] +11:10:25 [ 12] [ 6] [110932] +11:10:25 [ 13] [ 4] [0320] +11:10:25 [ 14] [ 4] [4912] +11:10:25 [ 15] [ 4] [0320] +11:10:25 [ 18] [ 4] [6011] +11:10:25 [ 19] [ 3] [418] +11:10:25 [ 22] [ 3] [021] +11:10:25 [ 25] [ 2] [01] +11:10:25 [ 28] [ 9] [D00002000] +11:10:25 [ 32] [ 6] [180893] +11:10:25 [ 35] [ 32] [6213543000229624=491212012962361] +11:10:25 [ 37] [ 12] [507904268367] +11:10:25 [ 41] [ 8] [0368KMMX] +11:10:25 [ 42] [ 15] [999999 ] +11:10:25 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:10:25 [ 49] [ 3] [418] +11:10:25 [ 52] [ 16] [622FDE71443BAF06] +11:10:25 ============================================================================ +11:10:25 + + +waiting on router queue for slot.... +11:10:25 Sending to : +11:10:25 ============================================================================ +11:10:25 ============================================================================ +11:10:25 Slot Id : <63> +11:10:25 Transaction Type : REQUEST +11:10:25 Received From : +11:10:25 ============================================================================ +11:10:25 FNo. Len. Field Value +11:10:25 ============================================================================ +11:10:25 [ 1] [ 4] [0200] +11:10:25 [ 2] [ 16] [6213543000229624] +11:10:25 [ 3] [ 6] [010000] +11:10:25 [ 4] [ 12] [000100000000] +11:10:25 [ 7] [ 10] [0320040932] +11:10:25 [ 11] [ 6] [268367] +11:10:25 [ 12] [ 6] [110932] +11:10:25 [ 13] [ 4] [0320] +11:10:25 [ 14] [ 4] [4912] +11:10:25 [ 15] [ 4] [0320] +11:10:25 [ 18] [ 4] [6011] +11:10:25 [ 19] [ 3] [418] +11:10:25 [ 22] [ 3] [021] +11:10:25 [ 25] [ 2] [01] +11:10:25 [ 28] [ 9] [D00002000] +11:10:25 [ 32] [ 6] [180893] +11:10:25 [ 35] [ 32] [6213543000229624=491212012962361] +11:10:25 [ 37] [ 12] [507904268367] +11:10:25 [ 41] [ 8] [0368KMMX] +11:10:25 [ 42] [ 15] [999999 ] +11:10:25 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:10:25 [ 49] [ 3] [418] +11:10:25 [ 52] [ 16] [C40A2FBD9BE14017] +11:10:25 ============================================================================ +11:10:25 + + +waiting on router queue for slot.... +11:10:25 Sending to : <0> +11:10:25 ============================================================================ +11:10:25 ============================================================================ +11:10:25 Slot Id : <63> +11:10:25 Transaction Type : RESPONSE +11:10:25 Received From : +11:10:25 ============================================================================ +11:10:25 FNo. Len. Field Value +11:10:25 ============================================================================ +11:10:25 [ 1] [ 4] [0210] +11:10:25 [ 2] [ 16] [6213543000229624] +11:10:25 [ 3] [ 6] [010000] +11:10:25 [ 4] [ 12] [000100000000] +11:10:25 [ 7] [ 10] [0320040932] +11:10:25 [ 11] [ 6] [268367] +11:10:25 [ 12] [ 6] [110932] +11:10:25 [ 13] [ 4] [0320] +11:10:25 [ 15] [ 4] [0320] +11:10:25 [ 18] [ 4] [6011] +11:10:25 [ 19] [ 3] [418] +11:10:25 [ 22] [ 3] [021] +11:10:25 [ 32] [ 6] [180893] +11:10:25 [ 35] [ 32] [6213543000229624=491212012962361] +11:10:25 [ 37] [ 12] [507904268367] +11:10:25 [ 38] [ 6] [111021] +11:10:25 [ 39] [ 2] [55] +11:10:25 [ 41] [ 8] [0368KMMX] +11:10:25 [ 49] [ 3] [418] +11:10:25 ============================================================================ +11:10:25 Sending to : +11:10:25 ============================================================================ +11:10:25 + + +waiting on router queue for slot.... +11:10:26 ============================================================================ +11:10:26 Slot Id : <63> +11:10:26 Transaction Type : RESPONSE +11:10:26 Received From : +11:10:26 ============================================================================ +11:10:26 FNo. Len. Field Value +11:10:26 ============================================================================ +11:10:26 [ 1] [ 4] [0210] +11:10:26 [ 2] [ 16] [6213543000229624] +11:10:26 [ 3] [ 6] [010000] +11:10:26 [ 4] [ 12] [000100000000] +11:10:26 [ 7] [ 10] [0320040932] +11:10:26 [ 11] [ 6] [268367] +11:10:26 [ 12] [ 6] [110932] +11:10:26 [ 13] [ 4] [0320] +11:10:26 [ 15] [ 4] [0320] +11:10:26 [ 18] [ 4] [6011] +11:10:26 [ 19] [ 3] [418] +11:10:26 [ 22] [ 3] [021] +11:10:26 [ 32] [ 6] [180893] +11:10:26 [ 35] [ 32] [6213543000229624=491212012962361] +11:10:26 [ 37] [ 12] [507904268367] +11:10:26 [ 38] [ 6] [111021] +11:10:26 [ 39] [ 2] [55] +11:10:26 [ 41] [ 8] [0368KMMX] +11:10:26 [ 49] [ 3] [418] +11:10:26 ============================================================================ +11:10:26 Calculate Source COMM Id = 2 +11:10:26 ============================================================================ +11:10:26 + + +waiting on router queue for slot.... +11:10:32 ============================================================================ +11:10:32 Slot Id : <41> +11:10:32 Transaction Type : REQUEST +11:10:32 Received From : +11:10:32 ============================================================================ +11:10:32 FNo. Len. Field Value +11:10:32 ============================================================================ +11:10:32 [ 1] [ 4] [0200] +11:10:32 [ 2] [ 16] [6213541000119936] +11:10:32 [ 3] [ 6] [301000] +11:10:32 [ 4] [ 12] [000000000000] +11:10:32 [ 7] [ 10] [0320110823] +11:10:32 [ 11] [ 6] [940441] +11:10:32 [ 12] [ 6] [110823] +11:10:32 [ 13] [ 4] [0320] +11:10:32 [ 15] [ 4] [0320] +11:10:32 [ 18] [ 4] [6011] +11:10:32 [ 19] [ 3] [418] +11:10:32 [ 22] [ 3] [021] +11:10:32 [ 25] [ 2] [01] +11:10:32 [ 28] [ 9] [D00000000] +11:10:32 [ 32] [ 6] [668899] +11:10:32 [ 35] [ 32] [6213541000119936=491212011993560] +11:10:32 [ 37] [ 12] [507901963474] +11:10:32 [ 41] [ 8] [03020019] +11:10:32 [ 42] [ 15] [APT ] +11:10:32 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:10:32 [ 49] [ 3] [418] +11:10:32 [ 52] [ 16] [F12E25FDFF2B95EA] +11:10:32 ============================================================================ +11:10:32 + + +waiting on router queue for slot.... +11:10:32 Sending to : +11:10:32 ============================================================================ +11:10:32 Sending to : +11:10:32 ============================================================================ +11:10:32 ============================================================================ +11:10:32 Slot Id : <41> +11:10:32 Transaction Type : REQUEST +11:10:32 Received From : +11:10:32 ============================================================================ +11:10:32 FNo. Len. Field Value +11:10:32 ============================================================================ +11:10:32 [ 1] [ 4] [0200] +11:10:32 [ 2] [ 16] [6213541000119936] +11:10:32 [ 3] [ 6] [301000] +11:10:32 [ 4] [ 12] [000000000000] +11:10:32 [ 7] [ 10] [0320110823] +11:10:32 [ 11] [ 6] [940441] +11:10:32 [ 12] [ 6] [110823] +11:10:32 [ 13] [ 4] [0320] +11:10:32 [ 15] [ 4] [0320] +11:10:32 [ 18] [ 4] [6011] +11:10:32 [ 19] [ 3] [418] +11:10:32 [ 22] [ 3] [021] +11:10:32 [ 25] [ 2] [01] +11:10:32 [ 28] [ 9] [D00000000] +11:10:32 [ 32] [ 6] [668899] +11:10:32 [ 35] [ 32] [6213541000119936=491212011993560] +11:10:32 [ 37] [ 12] [507901963474] +11:10:32 [ 41] [ 8] [03020019] +11:10:32 [ 42] [ 15] [APT ] +11:10:32 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:10:32 [ 49] [ 3] [418] +11:10:32 [ 52] [ 16] [F12E25FDFF2B95EA] +11:10:32 ============================================================================ +11:10:32 + + +waiting on router queue for slot.... +11:10:32 Sending to : +11:10:32 ============================================================================ +11:10:32 ============================================================================ +11:10:32 Slot Id : <41> +11:10:32 Transaction Type : REQUEST +11:10:32 Received From : +11:10:32 ============================================================================ +11:10:32 FNo. Len. Field Value +11:10:32 ============================================================================ +11:10:32 [ 1] [ 4] [0200] +11:10:32 [ 2] [ 16] [6213541000119936] +11:10:32 [ 3] [ 6] [301000] +11:10:32 [ 4] [ 12] [000000000000] +11:10:32 [ 7] [ 10] [0320110823] +11:10:32 [ 11] [ 6] [940441] +11:10:32 [ 12] [ 6] [110823] +11:10:32 [ 13] [ 4] [0320] +11:10:32 [ 15] [ 4] [0320] +11:10:32 [ 18] [ 4] [6011] +11:10:32 [ 19] [ 3] [418] +11:10:32 [ 22] [ 3] [021] +11:10:32 [ 25] [ 2] [01] +11:10:32 [ 28] [ 9] [D00000000] +11:10:32 [ 32] [ 6] [668899] +11:10:32 [ 35] [ 32] [6213541000119936=491212011993560] +11:10:32 [ 37] [ 12] [507901963474] +11:10:32 [ 41] [ 8] [03020019] +11:10:32 [ 42] [ 15] [APT ] +11:10:32 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:10:32 [ 49] [ 3] [418] +11:10:32 [ 52] [ 16] [302E25B293EBF614] +11:10:32 ============================================================================ +11:10:32 + + +waiting on router queue for slot.... +11:10:32 Sending to : <0> +11:10:32 ============================================================================ +11:10:33 ============================================================================ +11:10:33 Slot Id : <41> +11:10:33 Transaction Type : RESPONSE +11:10:33 Received From : +11:10:33 ============================================================================ +11:10:33 FNo. Len. Field Value +11:10:33 ============================================================================ +11:10:33 [ 1] [ 4] [0210] +11:10:33 [ 2] [ 16] [6213541000119936] +11:10:33 [ 3] [ 6] [301000] +11:10:33 [ 4] [ 12] [000000000000] +11:10:33 [ 7] [ 10] [0320110823] +11:10:33 [ 11] [ 6] [940441] +11:10:33 [ 12] [ 6] [110823] +11:10:33 [ 13] [ 4] [0320] +11:10:33 [ 15] [ 4] [0320] +11:10:33 [ 18] [ 4] [6011] +11:10:33 [ 19] [ 3] [418] +11:10:33 [ 32] [ 6] [668899] +11:10:33 [ 35] [ 32] [6213541000119936=491212011993560] +11:10:33 [ 37] [ 12] [507901963474] +11:10:33 [ 38] [ 6] [801479] +11:10:33 [ 39] [ 2] [00] +11:10:33 [ 41] [ 8] [03020019] +11:10:33 [ 49] [ 3] [418] +11:10:33 [ 54] [ 40] [1001418C0005990404611002418C000599040461] +11:10:33 ============================================================================ +11:10:33 Sending to : +11:10:33 ============================================================================ +11:10:33 + + +waiting on router queue for slot.... +11:10:34 ============================================================================ +11:10:34 Slot Id : <41> +11:10:34 Transaction Type : RESPONSE +11:10:34 Received From : +11:10:34 ============================================================================ +11:10:34 FNo. Len. Field Value +11:10:34 ============================================================================ +11:10:34 [ 1] [ 4] [0210] +11:10:34 [ 2] [ 16] [6213541000119936] +11:10:34 [ 3] [ 6] [301000] +11:10:34 [ 4] [ 12] [000000000000] +11:10:34 [ 7] [ 10] [0320110823] +11:10:34 [ 11] [ 6] [940441] +11:10:34 [ 12] [ 6] [110823] +11:10:34 [ 13] [ 4] [0320] +11:10:34 [ 15] [ 4] [0320] +11:10:34 [ 18] [ 4] [6011] +11:10:34 [ 19] [ 3] [418] +11:10:34 [ 32] [ 6] [668899] +11:10:34 [ 35] [ 32] [6213541000119936=491212011993560] +11:10:34 [ 37] [ 12] [507901963474] +11:10:34 [ 38] [ 6] [801479] +11:10:34 [ 39] [ 2] [00] +11:10:34 [ 41] [ 8] [03020019] +11:10:34 [ 49] [ 3] [418] +11:10:34 [ 54] [ 40] [1001418C0005990404611002418C000599040461] +11:10:34 ============================================================================ +11:10:34 Calculate Source COMM Id = 4 +11:10:34 ============================================================================ +11:10:34 + + +waiting on router queue for slot.... +11:10:37 ============================================================================ +11:10:37 Slot Id : <38> +11:10:37 Transaction Type : REQUEST +11:10:37 Received From : +11:10:37 ============================================================================ +11:10:37 FNo. Len. Field Value +11:10:37 ============================================================================ +11:10:37 [ 1] [ 4] [0200] +11:10:37 [ 2] [ 16] [6213544000555414] +11:10:37 [ 3] [ 6] [010000] +11:10:37 [ 4] [ 12] [000010000000] +11:10:37 [ 7] [ 10] [0320040944] +11:10:37 [ 11] [ 6] [268371] +11:10:37 [ 12] [ 6] [110944] +11:10:37 [ 13] [ 4] [0320] +11:10:37 [ 14] [ 4] [4912] +11:10:37 [ 15] [ 4] [0320] +11:10:37 [ 18] [ 4] [6011] +11:10:37 [ 19] [ 3] [418] +11:10:37 [ 22] [ 3] [021] +11:10:37 [ 25] [ 2] [01] +11:10:37 [ 28] [ 9] [D00002000] +11:10:37 [ 32] [ 6] [180893] +11:10:37 [ 35] [ 32] [6213544000555414=491212015541709] +11:10:37 [ 37] [ 12] [507904268371] +11:10:37 [ 41] [ 8] [0463LNTN] +11:10:37 [ 42] [ 15] [999999 ] +11:10:37 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +11:10:37 [ 49] [ 3] [418] +11:10:37 [ 52] [ 16] [D65CFF068F5ECB73] +11:10:37 ============================================================================ +11:10:37 + + +waiting on router queue for slot.... +11:10:37 Sending to : +11:10:37 ============================================================================ +11:10:37 Sending to : +11:10:37 ============================================================================ +11:10:38 ============================================================================ +11:10:38 Slot Id : <38> +11:10:38 Transaction Type : REQUEST +11:10:38 Received From : +11:10:38 ============================================================================ +11:10:38 FNo. Len. Field Value +11:10:38 ============================================================================ +11:10:38 [ 1] [ 4] [0200] +11:10:38 [ 2] [ 16] [6213544000555414] +11:10:38 [ 3] [ 6] [010000] +11:10:38 [ 4] [ 12] [000010000000] +11:10:38 [ 7] [ 10] [0320040944] +11:10:38 [ 11] [ 6] [268371] +11:10:38 [ 12] [ 6] [110944] +11:10:38 [ 13] [ 4] [0320] +11:10:38 [ 14] [ 4] [4912] +11:10:38 [ 15] [ 4] [0320] +11:10:38 [ 18] [ 4] [6011] +11:10:38 [ 19] [ 3] [418] +11:10:38 [ 22] [ 3] [021] +11:10:38 [ 25] [ 2] [01] +11:10:38 [ 28] [ 9] [D00002000] +11:10:38 [ 32] [ 6] [180893] +11:10:38 [ 35] [ 32] [6213544000555414=491212015541709] +11:10:38 [ 37] [ 12] [507904268371] +11:10:38 [ 41] [ 8] [0463LNTN] +11:10:38 [ 42] [ 15] [999999 ] +11:10:38 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +11:10:38 [ 49] [ 3] [418] +11:10:38 [ 52] [ 16] [D65CFF068F5ECB73] +11:10:38 ============================================================================ +11:10:38 + + +waiting on router queue for slot.... +11:10:38 Sending to : +11:10:38 ============================================================================ +11:10:38 ============================================================================ +11:10:38 Slot Id : <38> +11:10:38 Transaction Type : REQUEST +11:10:38 Received From : +11:10:38 ============================================================================ +11:10:38 FNo. Len. Field Value +11:10:38 ============================================================================ +11:10:38 [ 1] [ 4] [0200] +11:10:38 [ 2] [ 16] [6213544000555414] +11:10:38 [ 3] [ 6] [010000] +11:10:38 [ 4] [ 12] [000010000000] +11:10:38 [ 7] [ 10] [0320040944] +11:10:38 [ 11] [ 6] [268371] +11:10:38 [ 12] [ 6] [110944] +11:10:38 [ 13] [ 4] [0320] +11:10:38 [ 14] [ 4] [4912] +11:10:38 [ 15] [ 4] [0320] +11:10:38 [ 18] [ 4] [6011] +11:10:38 [ 19] [ 3] [418] +11:10:38 [ 22] [ 3] [021] +11:10:38 [ 25] [ 2] [01] +11:10:38 [ 28] [ 9] [D00002000] +11:10:38 [ 32] [ 6] [180893] +11:10:38 [ 35] [ 32] [6213544000555414=491212015541709] +11:10:38 [ 37] [ 12] [507904268371] +11:10:38 [ 41] [ 8] [0463LNTN] +11:10:38 [ 42] [ 15] [999999 ] +11:10:38 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +11:10:38 [ 49] [ 3] [418] +11:10:38 [ 52] [ 16] [07344FEA64948F1A] +11:10:38 ============================================================================ +11:10:38 + + +waiting on router queue for slot.... +11:10:38 Sending to : <0> +11:10:38 ============================================================================ +11:10:38 ============================================================================ +11:10:38 Slot Id : <73> +11:10:38 Transaction Type : REQUEST +11:10:38 Received From : +11:10:38 ============================================================================ +11:10:38 FNo. Len. Field Value +11:10:38 ============================================================================ +11:10:38 [ 1] [ 4] [0800] +11:10:38 [ 7] [ 10] [0320040946] +11:10:38 [ 11] [ 6] [156027] +11:10:38 [ 70] [ 3] [301] +11:10:38 ============================================================================ +11:10:38 + + +waiting on router queue for slot.... +11:10:38 Sending to : +11:10:38 ============================================================================ +11:10:38 ============================================================================ +11:10:38 Slot Id : <73> +11:10:38 Transaction Type : RESPONSE +11:10:38 Received From : +11:10:38 ============================================================================ +11:10:38 FNo. Len. Field Value +11:10:38 ============================================================================ +11:10:38 [ 1] [ 4] [0810] +11:10:38 [ 7] [ 10] [0320040946] +11:10:38 [ 11] [ 6] [156027] +11:10:38 [ 39] [ 2] [00] +11:10:38 [ 70] [ 3] [301] +11:10:38 ============================================================================ +11:10:38 Calculate Source COMM Id = 2 +11:10:38 ============================================================================ +11:10:38 + + +waiting on router queue for slot.... +11:10:38 ============================================================================ +11:10:38 Slot Id : <38> +11:10:38 Transaction Type : RESPONSE +11:10:38 Received From : +11:10:38 ============================================================================ +11:10:38 FNo. Len. Field Value +11:10:38 ============================================================================ +11:10:38 [ 1] [ 4] [0210] +11:10:38 [ 2] [ 16] [6213544000555414] +11:10:38 [ 3] [ 6] [010000] +11:10:38 [ 4] [ 12] [000010000000] +11:10:38 [ 7] [ 10] [0320040944] +11:10:38 [ 11] [ 6] [268371] +11:10:38 [ 12] [ 6] [110944] +11:10:38 [ 13] [ 4] [0320] +11:10:38 [ 15] [ 4] [0320] +11:10:38 [ 18] [ 4] [6011] +11:10:38 [ 19] [ 3] [418] +11:10:38 [ 32] [ 6] [180893] +11:10:38 [ 35] [ 32] [6213544000555414=491212015541709] +11:10:38 [ 37] [ 12] [507904268371] +11:10:38 [ 38] [ 6] [872054] +11:10:38 [ 39] [ 2] [00] +11:10:38 [ 41] [ 8] [0463LNTN] +11:10:38 [ 49] [ 3] [418] +11:10:38 [ 54] [ 40] [0001418C0005107640240002418C000510764024] +11:10:38 ============================================================================ +11:10:38 Sending to : +11:10:38 ============================================================================ +11:10:38 + + +waiting on router queue for slot.... +11:10:40 ============================================================================ +11:10:40 Slot Id : <38> +11:10:40 Transaction Type : RESPONSE +11:10:40 Received From : +11:10:40 ============================================================================ +11:10:40 FNo. Len. Field Value +11:10:40 ============================================================================ +11:10:40 [ 1] [ 4] [0210] +11:10:40 [ 2] [ 16] [6213544000555414] +11:10:40 [ 3] [ 6] [010000] +11:10:40 [ 4] [ 12] [000010000000] +11:10:40 [ 7] [ 10] [0320040944] +11:10:40 [ 11] [ 6] [268371] +11:10:40 [ 12] [ 6] [110944] +11:10:40 [ 13] [ 4] [0320] +11:10:40 [ 15] [ 4] [0320] +11:10:40 [ 18] [ 4] [6011] +11:10:40 [ 19] [ 3] [418] +11:10:40 [ 32] [ 6] [180893] +11:10:40 [ 35] [ 32] [6213544000555414=491212015541709] +11:10:40 [ 37] [ 12] [507904268371] +11:10:40 [ 38] [ 6] [872054] +11:10:40 [ 39] [ 2] [00] +11:10:40 [ 41] [ 8] [0463LNTN] +11:10:40 [ 49] [ 3] [418] +11:10:40 [ 54] [ 40] [0001418C0005107640240002418C000510764024] +11:10:40 ============================================================================ +11:10:40 Calculate Source COMM Id = 2 +11:10:40 ============================================================================ +11:10:40 + + +waiting on router queue for slot.... +11:10:54 ============================================================================ +11:10:54 Slot Id : <464> +11:10:54 Transaction Type : REQUEST +11:10:54 Received From : +11:10:54 ============================================================================ +11:10:54 FNo. Len. Field Value +11:10:54 ============================================================================ +11:10:54 [ 1] [ 4] [0800] +11:10:54 [ 7] [ 10] [0320041002] +11:10:54 [ 11] [ 6] [156028] +11:10:54 [ 70] [ 3] [301] +11:10:54 ============================================================================ +11:10:54 + + +waiting on router queue for slot.... +11:10:54 Sending to : +11:10:54 ============================================================================ +11:10:54 ============================================================================ +11:10:54 Slot Id : <464> +11:10:54 Transaction Type : RESPONSE +11:10:54 Received From : +11:10:54 ============================================================================ +11:10:54 FNo. Len. Field Value +11:10:54 ============================================================================ +11:10:54 [ 1] [ 4] [0810] +11:10:54 [ 7] [ 10] [0320041002] +11:10:54 [ 11] [ 6] [156028] +11:10:54 [ 39] [ 2] [00] +11:10:54 [ 70] [ 3] [301] +11:10:54 ============================================================================ +11:10:54 Calculate Source COMM Id = 2 +11:10:54 ============================================================================ +11:10:54 + + +waiting on router queue for slot.... +11:11:09 ============================================================================ +11:11:09 Slot Id : <32> +11:11:09 Transaction Type : REQUEST +11:11:09 Received From : +11:11:09 ============================================================================ +11:11:09 FNo. Len. Field Value +11:11:09 ============================================================================ +11:11:09 [ 1] [ 4] [0800] +11:11:09 [ 7] [ 10] [0320041017] +11:11:09 [ 11] [ 6] [156029] +11:11:09 [ 70] [ 3] [301] +11:11:09 ============================================================================ +11:11:09 + + +waiting on router queue for slot.... +11:11:09 Sending to : +11:11:09 ============================================================================ +11:11:09 ============================================================================ +11:11:09 Slot Id : <32> +11:11:09 Transaction Type : RESPONSE +11:11:09 Received From : +11:11:09 ============================================================================ +11:11:09 FNo. Len. Field Value +11:11:09 ============================================================================ +11:11:09 [ 1] [ 4] [0810] +11:11:09 [ 7] [ 10] [0320041017] +11:11:09 [ 11] [ 6] [156029] +11:11:09 [ 39] [ 2] [00] +11:11:09 [ 70] [ 3] [301] +11:11:09 ============================================================================ +11:11:09 Calculate Source COMM Id = 2 +11:11:09 ============================================================================ +11:11:09 + + +waiting on router queue for slot.... +11:11:11 ============================================================================ +11:11:11 Slot Id : <27> +11:11:11 Transaction Type : REQUEST +11:11:11 Received From : +11:11:11 ============================================================================ +11:11:11 FNo. Len. Field Value +11:11:11 ============================================================================ +11:11:11 [ 1] [ 4] [0200] +11:11:11 [ 2] [ 16] [6213544001636577] +11:11:11 [ 3] [ 6] [010000] +11:11:11 [ 4] [ 12] [000100000000] +11:11:11 [ 7] [ 10] [0320111858] +11:11:11 [ 11] [ 6] [079091] +11:11:11 [ 12] [ 6] [111858] +11:11:11 [ 13] [ 4] [0320] +11:11:11 [ 14] [ 4] [4912] +11:11:11 [ 15] [ 4] [0320] +11:11:11 [ 18] [ 4] [6011] +11:11:11 [ 22] [ 3] [900] +11:11:11 [ 25] [ 2] [02] +11:11:11 [ 28] [ 9] [D00002000] +11:11:11 [ 32] [ 6] [220699] +11:11:11 [ 35] [ 32] [6213544001636577=491212013657028] +11:11:11 [ 37] [ 12] [507900132962] +11:11:11 [ 41] [ 8] [03000100] +11:11:11 [ 42] [ 15] [APTRA ] +11:11:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:11:11 [ 49] [ 3] [418] +11:11:11 [ 52] [ 16] [CEB7BA4C00CFBE53] +11:11:11 ============================================================================ +11:11:11 + + +waiting on router queue for slot.... +11:11:11 Sending to : +11:11:11 ============================================================================ +11:11:11 Sending to : +11:11:11 ============================================================================ +11:11:11 ============================================================================ +11:11:11 Slot Id : <27> +11:11:11 Transaction Type : REQUEST +11:11:11 Received From : +11:11:11 ============================================================================ +11:11:11 FNo. Len. Field Value +11:11:11 ============================================================================ +11:11:11 [ 1] [ 4] [0200] +11:11:11 [ 2] [ 16] [6213544001636577] +11:11:11 [ 3] [ 6] [010000] +11:11:11 [ 4] [ 12] [000100000000] +11:11:11 [ 7] [ 10] [0320111858] +11:11:11 [ 11] [ 6] [079091] +11:11:11 [ 12] [ 6] [111858] +11:11:11 [ 13] [ 4] [0320] +11:11:11 [ 14] [ 4] [4912] +11:11:11 [ 15] [ 4] [0320] +11:11:11 [ 18] [ 4] [6011] +11:11:11 [ 22] [ 3] [900] +11:11:11 [ 25] [ 2] [02] +11:11:11 [ 28] [ 9] [D00002000] +11:11:11 [ 32] [ 6] [220699] +11:11:11 [ 35] [ 32] [6213544001636577=491212013657028] +11:11:11 [ 37] [ 12] [507900132962] +11:11:11 [ 41] [ 8] [03000100] +11:11:11 [ 42] [ 15] [APTRA ] +11:11:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:11:11 [ 49] [ 3] [418] +11:11:11 [ 52] [ 16] [CEB7BA4C00CFBE53] +11:11:11 ============================================================================ +11:11:11 + + +waiting on router queue for slot.... +11:11:11 Sending to : +11:11:11 ============================================================================ +11:11:11 ============================================================================ +11:11:11 Slot Id : <27> +11:11:11 Transaction Type : REQUEST +11:11:11 Received From : +11:11:11 ============================================================================ +11:11:11 FNo. Len. Field Value +11:11:11 ============================================================================ +11:11:11 [ 1] [ 4] [0200] +11:11:11 [ 2] [ 16] [6213544001636577] +11:11:11 [ 3] [ 6] [010000] +11:11:11 [ 4] [ 12] [000100000000] +11:11:11 [ 7] [ 10] [0320111858] +11:11:11 [ 11] [ 6] [079091] +11:11:11 [ 12] [ 6] [111858] +11:11:11 [ 13] [ 4] [0320] +11:11:11 [ 14] [ 4] [4912] +11:11:11 [ 15] [ 4] [0320] +11:11:11 [ 18] [ 4] [6011] +11:11:11 [ 22] [ 3] [900] +11:11:11 [ 25] [ 2] [02] +11:11:11 [ 28] [ 9] [D00002000] +11:11:11 [ 32] [ 6] [220699] +11:11:11 [ 35] [ 32] [6213544001636577=491212013657028] +11:11:11 [ 37] [ 12] [507900132962] +11:11:11 [ 41] [ 8] [03000100] +11:11:11 [ 42] [ 15] [APTRA ] +11:11:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:11:11 [ 49] [ 3] [418] +11:11:11 [ 52] [ 16] [2F77A5A70C3FD769] +11:11:11 ============================================================================ +11:11:11 + + +waiting on router queue for slot.... +11:11:11 Sending to : <0> +11:11:11 ============================================================================ +11:11:12 ============================================================================ +11:11:12 Slot Id : <27> +11:11:12 Transaction Type : RESPONSE +11:11:12 Received From : +11:11:12 ============================================================================ +11:11:12 FNo. Len. Field Value +11:11:12 ============================================================================ +11:11:12 [ 1] [ 4] [0210] +11:11:12 [ 2] [ 16] [6213544001636577] +11:11:12 [ 3] [ 6] [010000] +11:11:12 [ 4] [ 12] [000100000000] +11:11:12 [ 7] [ 10] [0320111858] +11:11:12 [ 11] [ 6] [079091] +11:11:12 [ 12] [ 6] [111858] +11:11:12 [ 13] [ 4] [0320] +11:11:12 [ 15] [ 4] [0320] +11:11:12 [ 18] [ 4] [6011] +11:11:12 [ 32] [ 6] [220699] +11:11:12 [ 35] [ 32] [6213544001636577=491212013657028] +11:11:12 [ 37] [ 12] [507900132962] +11:11:12 [ 38] [ 6] [586956] +11:11:12 [ 39] [ 2] [00] +11:11:12 [ 41] [ 8] [03000100] +11:11:12 [ 49] [ 3] [418] +11:11:12 [ 54] [ 40] [0001418C0002330262930002418C000233026293] +11:11:12 ============================================================================ +11:11:12 Sending to : +11:11:12 ============================================================================ +11:11:12 + + +waiting on router queue for slot.... +11:11:12 ============================================================================ +11:11:12 Slot Id : <487> +11:11:12 Transaction Type : REQUEST +11:11:12 Received From : +11:11:12 ============================================================================ +11:11:12 FNo. Len. Field Value +11:11:12 ============================================================================ +11:11:12 [ 1] [ 4] [0200] +11:11:12 [ 2] [ 16] [6688990040020628] +11:11:12 [ 3] [ 6] [010000] +11:11:12 [ 4] [ 12] [000010000000] +11:11:12 [ 7] [ 10] [0320041019] +11:11:12 [ 11] [ 6] [268374] +11:11:12 [ 12] [ 6] [111019] +11:11:12 [ 13] [ 4] [0320] +11:11:12 [ 14] [ 4] [9711] +11:11:12 [ 15] [ 4] [0320] +11:11:12 [ 18] [ 4] [6011] +11:11:12 [ 19] [ 3] [418] +11:11:12 [ 22] [ 3] [021] +11:11:12 [ 25] [ 2] [01] +11:11:12 [ 28] [ 9] [D00002000] +11:11:12 [ 32] [ 6] [180893] +11:11:12 [ 35] [ 37] [6688990040020628=97111261878990200000] +11:11:12 [ 37] [ 12] [507904268374] +11:11:12 [ 41] [ 8] [0401XSBR] +11:11:12 [ 42] [ 15] [999999 ] +11:11:12 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +11:11:12 [ 49] [ 3] [418] +11:11:12 [ 52] [ 16] [ADAF6B10DA6F6B75] +11:11:12 ============================================================================ +11:11:12 + + +waiting on router queue for slot.... +11:11:12 Sending to : +11:11:12 ============================================================================ +11:11:12 Sending to : +11:11:12 ============================================================================ +11:11:13 ============================================================================ +11:11:13 Slot Id : <487> +11:11:13 Transaction Type : REQUEST +11:11:13 Received From : +11:11:13 ============================================================================ +11:11:13 FNo. Len. Field Value +11:11:13 ============================================================================ +11:11:13 [ 1] [ 4] [0200] +11:11:13 [ 2] [ 16] [6688990040020628] +11:11:13 [ 3] [ 6] [010000] +11:11:13 [ 4] [ 12] [000010000000] +11:11:13 [ 7] [ 10] [0320041019] +11:11:13 [ 11] [ 6] [268374] +11:11:13 [ 12] [ 6] [111019] +11:11:13 [ 13] [ 4] [0320] +11:11:13 [ 14] [ 4] [9711] +11:11:13 [ 15] [ 4] [0320] +11:11:13 [ 18] [ 4] [6011] +11:11:13 [ 19] [ 3] [418] +11:11:13 [ 22] [ 3] [021] +11:11:13 [ 25] [ 2] [01] +11:11:13 [ 28] [ 9] [D00002000] +11:11:13 [ 32] [ 6] [180893] +11:11:13 [ 35] [ 37] [6688990040020628=97111261878990200000] +11:11:13 [ 37] [ 12] [507904268374] +11:11:13 [ 41] [ 8] [0401XSBR] +11:11:13 [ 42] [ 15] [999999 ] +11:11:13 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +11:11:13 [ 49] [ 3] [418] +11:11:13 [ 52] [ 16] [ADAF6B10DA6F6B75] +11:11:13 ============================================================================ +11:11:13 + + +waiting on router queue for slot.... +11:11:13 Sending to : +11:11:13 ============================================================================ +11:11:13 ============================================================================ +11:11:13 Slot Id : <487> +11:11:13 Transaction Type : REQUEST +11:11:13 Received From : +11:11:13 ============================================================================ +11:11:13 FNo. Len. Field Value +11:11:13 ============================================================================ +11:11:13 [ 1] [ 4] [0200] +11:11:13 [ 2] [ 16] [6688990040020628] +11:11:13 [ 3] [ 6] [010000] +11:11:13 [ 4] [ 12] [000010000000] +11:11:13 [ 7] [ 10] [0320041019] +11:11:13 [ 11] [ 6] [268374] +11:11:13 [ 12] [ 6] [111019] +11:11:13 [ 13] [ 4] [0320] +11:11:13 [ 14] [ 4] [9711] +11:11:13 [ 15] [ 4] [0320] +11:11:13 [ 18] [ 4] [6011] +11:11:13 [ 19] [ 3] [418] +11:11:13 [ 22] [ 3] [021] +11:11:13 [ 25] [ 2] [01] +11:11:13 [ 28] [ 9] [D00002000] +11:11:13 [ 32] [ 6] [180893] +11:11:13 [ 35] [ 37] [6688990040020628=97111261878990200000] +11:11:13 [ 37] [ 12] [507904268374] +11:11:13 [ 41] [ 8] [0401XSBR] +11:11:13 [ 42] [ 15] [999999 ] +11:11:13 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +11:11:13 [ 49] [ 3] [418] +11:11:13 [ 52] [ 16] [B9E0A16E1CF6643D] +11:11:13 ============================================================================ +11:11:13 + + +waiting on router queue for slot.... +11:11:13 Sending to : <0> +11:11:13 ============================================================================ +11:11:13 ============================================================================ +11:11:13 Slot Id : <487> +11:11:13 Transaction Type : RESPONSE +11:11:13 Received From : +11:11:13 ============================================================================ +11:11:13 FNo. Len. Field Value +11:11:13 ============================================================================ +11:11:13 [ 1] [ 4] [0210] +11:11:13 [ 2] [ 16] [6688990040020628] +11:11:13 [ 3] [ 6] [010000] +11:11:13 [ 4] [ 12] [000010000000] +11:11:13 [ 7] [ 10] [0320041019] +11:11:13 [ 11] [ 6] [268374] +11:11:13 [ 12] [ 6] [111019] +11:11:13 [ 13] [ 4] [0320] +11:11:13 [ 15] [ 4] [0320] +11:11:13 [ 18] [ 4] [6011] +11:11:13 [ 19] [ 3] [418] +11:11:13 [ 22] [ 3] [021] +11:11:13 [ 32] [ 6] [180893] +11:11:13 [ 35] [ 37] [6688990040020628=97111261878990200000] +11:11:13 [ 37] [ 12] [507904268374] +11:11:13 [ 39] [ 2] [14] +11:11:13 [ 41] [ 8] [0401XSBR] +11:11:13 [ 49] [ 3] [418] +11:11:13 ============================================================================ +11:11:13 Sending to : +11:11:13 ============================================================================ +11:11:13 + + +waiting on router queue for slot.... +11:11:14 ============================================================================ +11:11:14 Slot Id : <27> +11:11:14 Transaction Type : RESPONSE +11:11:14 Received From : +11:11:14 ============================================================================ +11:11:14 FNo. Len. Field Value +11:11:14 ============================================================================ +11:11:14 [ 1] [ 4] [0210] +11:11:14 [ 2] [ 16] [6213544001636577] +11:11:14 [ 3] [ 6] [010000] +11:11:14 [ 4] [ 12] [000100000000] +11:11:14 [ 7] [ 10] [0320111858] +11:11:14 [ 11] [ 6] [079091] +11:11:14 [ 12] [ 6] [111858] +11:11:14 [ 13] [ 4] [0320] +11:11:14 [ 15] [ 4] [0320] +11:11:14 [ 18] [ 4] [6011] +11:11:14 [ 32] [ 6] [220699] +11:11:14 [ 35] [ 32] [6213544001636577=491212013657028] +11:11:14 [ 37] [ 12] [507900132962] +11:11:14 [ 38] [ 6] [586956] +11:11:14 [ 39] [ 2] [00] +11:11:14 [ 41] [ 8] [03000100] +11:11:14 [ 49] [ 3] [418] +11:11:14 [ 54] [ 40] [0001418C0002330262930002418C000233026293] +11:11:14 ============================================================================ +11:11:14 Calculate Source COMM Id = 1 +11:11:14 ============================================================================ +11:11:14 + + +waiting on router queue for slot.... +11:11:14 ============================================================================ +11:11:14 Slot Id : <487> +11:11:14 Transaction Type : RESPONSE +11:11:14 Received From : +11:11:14 ============================================================================ +11:11:14 FNo. Len. Field Value +11:11:14 ============================================================================ +11:11:14 [ 1] [ 4] [0210] +11:11:14 [ 2] [ 16] [6688990040020628] +11:11:14 [ 3] [ 6] [010000] +11:11:14 [ 4] [ 12] [000010000000] +11:11:14 [ 7] [ 10] [0320041019] +11:11:14 [ 11] [ 6] [268374] +11:11:14 [ 12] [ 6] [111019] +11:11:14 [ 13] [ 4] [0320] +11:11:14 [ 15] [ 4] [0320] +11:11:14 [ 18] [ 4] [6011] +11:11:14 [ 19] [ 3] [418] +11:11:14 [ 22] [ 3] [021] +11:11:14 [ 32] [ 6] [180893] +11:11:14 [ 35] [ 37] [6688990040020628=97111261878990200000] +11:11:14 [ 37] [ 12] [507904268374] +11:11:14 [ 39] [ 2] [14] +11:11:14 [ 41] [ 8] [0401XSBR] +11:11:14 [ 49] [ 3] [418] +11:11:14 ============================================================================ +11:11:14 Calculate Source COMM Id = 2 +11:11:14 ============================================================================ +11:11:14 + + +waiting on router queue for slot.... +11:11:16 ============================================================================ +11:11:16 Slot Id : <26> +11:11:16 Transaction Type : REQUEST +11:11:16 Received From : +11:11:16 ============================================================================ +11:11:16 FNo. Len. Field Value +11:11:16 ============================================================================ +11:11:16 [ 1] [ 4] [0800] +11:11:16 [ 2] [ 5] [02531] +11:11:16 [ 3] [ 6] [579118] +11:11:16 [ 7] [ 10] [0320041116] +11:11:16 [ 11] [ 6] [807061] +11:11:16 [ 15] [ 10] [0320041116] +11:11:16 [ 37] [ 11] [57911807061] +11:11:16 [ 70] [ 3] [001] +11:11:16 ============================================================================ +11:11:16 + + +waiting on router queue for slot.... +11:11:16 ============================================================================ +11:11:16 Slot Id : <26> +11:11:16 Transaction Type : RESPONSE +11:11:16 Received From : +11:11:16 ============================================================================ +11:11:16 FNo. Len. Field Value +11:11:16 ============================================================================ +11:11:16 [ 1] [ 4] [0810] +11:11:16 [ 7] [ 10] [0320041116] +11:11:16 [ 11] [ 6] [807061] +11:11:16 [ 15] [ 4] [0320] +11:11:16 [ 37] [ 12] [57911807061] +11:11:16 [ 39] [ 2] [00] +11:11:16 [ 70] [ 3] [001] +11:11:16 ============================================================================ +11:11:16 Sending to : +11:11:16 ============================================================================ +11:11:16 + + +waiting on router queue for slot.... +11:11:21 ============================================================================ +11:11:21 Slot Id : <20> +11:11:21 Transaction Type : REQUEST +11:11:21 Received From : +11:11:21 ============================================================================ +11:11:21 FNo. Len. Field Value +11:11:21 ============================================================================ +11:11:21 [ 1] [ 4] [0800] +11:11:21 [ 7] [ 10] [0320040912] +11:11:21 [ 11] [ 6] [025850] +11:11:21 [ 37] [ 12] [57911025850] +11:11:21 [ 70] [ 3] [301] +11:11:21 ============================================================================ +11:11:21 + + +waiting on router queue for slot.... +11:11:21 Sending to : +11:11:21 ============================================================================ +11:11:21 ============================================================================ +11:11:21 Slot Id : <20> +11:11:21 Transaction Type : RESPONSE +11:11:21 Received From : +11:11:21 ============================================================================ +11:11:21 FNo. Len. Field Value +11:11:21 ============================================================================ +11:11:21 [ 1] [ 4] [0810] +11:11:21 [ 7] [ 10] [0320040912] +11:11:21 [ 11] [ 6] [025850] +11:11:21 [ 37] [ 12] [579110258500] +11:11:21 [ 39] [ 2] [00] +11:11:21 [ 70] [ 3] [810] +11:11:21 ============================================================================ +11:11:21 Calculate Source COMM Id = 4 +11:11:21 ============================================================================ +11:11:21 + + +waiting on router queue for slot.... +11:11:26 ============================================================================ +11:11:26 Slot Id : <48> +11:11:26 Transaction Type : REQUEST +11:11:26 Received From : +11:11:26 ============================================================================ +11:11:26 FNo. Len. Field Value +11:11:26 ============================================================================ +11:11:26 [ 1] [ 4] [0200] +11:11:26 [ 2] [ 16] [6213545000822449] +11:11:26 [ 3] [ 6] [010000] +11:11:26 [ 4] [ 12] [000200000000] +11:11:26 [ 7] [ 10] [0320041034] +11:11:26 [ 11] [ 6] [268379] +11:11:26 [ 12] [ 6] [111034] +11:11:26 [ 13] [ 4] [0320] +11:11:26 [ 14] [ 4] [4912] +11:11:26 [ 15] [ 4] [0320] +11:11:26 [ 18] [ 4] [6011] +11:11:26 [ 19] [ 3] [418] +11:11:26 [ 22] [ 3] [021] +11:11:26 [ 25] [ 2] [01] +11:11:26 [ 28] [ 9] [D00002000] +11:11:26 [ 32] [ 6] [180893] +11:11:26 [ 35] [ 32] [6213545000822449=491212012244968] +11:11:26 [ 37] [ 12] [507904268379] +11:11:26 [ 41] [ 8] [0262PSLB] +11:11:26 [ 42] [ 15] [999999 ] +11:11:26 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:11:26 [ 49] [ 3] [418] +11:11:26 [ 52] [ 16] [9A308E70A3438E4A] +11:11:26 ============================================================================ +11:11:26 + + +waiting on router queue for slot.... +11:11:26 Sending to : +11:11:26 ============================================================================ +11:11:26 Sending to : +11:11:26 ============================================================================ +11:11:27 ============================================================================ +11:11:27 Slot Id : <48> +11:11:27 Transaction Type : REQUEST +11:11:27 Received From : +11:11:27 ============================================================================ +11:11:27 FNo. Len. Field Value +11:11:27 ============================================================================ +11:11:27 [ 1] [ 4] [0200] +11:11:27 [ 2] [ 16] [6213545000822449] +11:11:27 [ 3] [ 6] [010000] +11:11:27 [ 4] [ 12] [000200000000] +11:11:27 [ 7] [ 10] [0320041034] +11:11:27 [ 11] [ 6] [268379] +11:11:27 [ 12] [ 6] [111034] +11:11:27 [ 13] [ 4] [0320] +11:11:27 [ 14] [ 4] [4912] +11:11:27 [ 15] [ 4] [0320] +11:11:27 [ 18] [ 4] [6011] +11:11:27 [ 19] [ 3] [418] +11:11:27 [ 22] [ 3] [021] +11:11:27 [ 25] [ 2] [01] +11:11:27 [ 28] [ 9] [D00002000] +11:11:27 [ 32] [ 6] [180893] +11:11:27 [ 35] [ 32] [6213545000822449=491212012244968] +11:11:27 [ 37] [ 12] [507904268379] +11:11:27 [ 41] [ 8] [0262PSLB] +11:11:27 [ 42] [ 15] [999999 ] +11:11:27 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:11:27 [ 49] [ 3] [418] +11:11:27 [ 52] [ 16] [9A308E70A3438E4A] +11:11:27 ============================================================================ +11:11:27 + + +waiting on router queue for slot.... +11:11:27 Sending to : +11:11:27 ============================================================================ +11:11:27 ============================================================================ +11:11:27 Slot Id : <48> +11:11:27 Transaction Type : REQUEST +11:11:27 Received From : +11:11:27 ============================================================================ +11:11:27 FNo. Len. Field Value +11:11:27 ============================================================================ +11:11:27 [ 1] [ 4] [0200] +11:11:27 [ 2] [ 16] [6213545000822449] +11:11:27 [ 3] [ 6] [010000] +11:11:27 [ 4] [ 12] [000200000000] +11:11:27 [ 7] [ 10] [0320041034] +11:11:27 [ 11] [ 6] [268379] +11:11:27 [ 12] [ 6] [111034] +11:11:27 [ 13] [ 4] [0320] +11:11:27 [ 14] [ 4] [4912] +11:11:27 [ 15] [ 4] [0320] +11:11:27 [ 18] [ 4] [6011] +11:11:27 [ 19] [ 3] [418] +11:11:27 [ 22] [ 3] [021] +11:11:27 [ 25] [ 2] [01] +11:11:27 [ 28] [ 9] [D00002000] +11:11:27 [ 32] [ 6] [180893] +11:11:27 [ 35] [ 32] [6213545000822449=491212012244968] +11:11:27 [ 37] [ 12] [507904268379] +11:11:27 [ 41] [ 8] [0262PSLB] +11:11:27 [ 42] [ 15] [999999 ] +11:11:27 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:11:27 [ 49] [ 3] [418] +11:11:27 [ 52] [ 16] [7599475DBEB43DE2] +11:11:27 ============================================================================ +11:11:27 + + +waiting on router queue for slot.... +11:11:27 Sending to : <0> +11:11:27 ============================================================================ +11:11:27 ============================================================================ +11:11:27 Slot Id : <48> +11:11:27 Transaction Type : RESPONSE +11:11:27 Received From : +11:11:27 ============================================================================ +11:11:27 FNo. Len. Field Value +11:11:27 ============================================================================ +11:11:27 [ 1] [ 4] [0210] +11:11:27 [ 2] [ 16] [6213545000822449] +11:11:27 [ 3] [ 6] [010000] +11:11:27 [ 4] [ 12] [000200000000] +11:11:27 [ 7] [ 10] [0320041034] +11:11:27 [ 11] [ 6] [268379] +11:11:27 [ 12] [ 6] [111034] +11:11:27 [ 13] [ 4] [0320] +11:11:27 [ 15] [ 4] [0320] +11:11:27 [ 18] [ 4] [6011] +11:11:27 [ 19] [ 3] [418] +11:11:27 [ 22] [ 3] [021] +11:11:27 [ 32] [ 6] [180893] +11:11:27 [ 35] [ 32] [6213545000822449=491212012244968] +11:11:27 [ 37] [ 12] [507904268379] +11:11:27 [ 39] [ 2] [61] +11:11:27 [ 41] [ 8] [0262PSLB] +11:11:27 [ 49] [ 3] [418] +11:11:27 ============================================================================ +11:11:27 Sending to : +11:11:27 ============================================================================ +11:11:27 + + +waiting on router queue for slot.... +11:11:28 ============================================================================ +11:11:28 Slot Id : <48> +11:11:28 Transaction Type : RESPONSE +11:11:28 Received From : +11:11:28 ============================================================================ +11:11:28 FNo. Len. Field Value +11:11:28 ============================================================================ +11:11:28 [ 1] [ 4] [0210] +11:11:28 [ 2] [ 16] [6213545000822449] +11:11:28 [ 3] [ 6] [010000] +11:11:28 [ 4] [ 12] [000200000000] +11:11:28 [ 7] [ 10] [0320041034] +11:11:28 [ 11] [ 6] [268379] +11:11:28 [ 12] [ 6] [111034] +11:11:28 [ 13] [ 4] [0320] +11:11:28 [ 15] [ 4] [0320] +11:11:28 [ 18] [ 4] [6011] +11:11:28 [ 19] [ 3] [418] +11:11:28 [ 22] [ 3] [021] +11:11:28 [ 32] [ 6] [180893] +11:11:28 [ 35] [ 32] [6213545000822449=491212012244968] +11:11:28 [ 37] [ 12] [507904268379] +11:11:28 [ 39] [ 2] [61] +11:11:28 [ 41] [ 8] [0262PSLB] +11:11:28 [ 49] [ 3] [418] +11:11:28 ============================================================================ +11:11:28 Calculate Source COMM Id = 2 +11:11:28 ============================================================================ +11:11:28 + + +waiting on router queue for slot.... +11:11:34 ============================================================================ +11:11:34 Slot Id : <46> +11:11:34 Transaction Type : REQUEST +11:11:34 Received From : +11:11:34 ============================================================================ +11:11:34 FNo. Len. Field Value +11:11:34 ============================================================================ +11:11:34 [ 1] [ 4] [0200] +11:11:34 [ 2] [ 16] [6213543000081207] +11:11:34 [ 3] [ 6] [012000] +11:11:34 [ 4] [ 12] [000040000000] +11:11:34 [ 7] [ 10] [0320041042] +11:11:34 [ 11] [ 6] [268381] +11:11:34 [ 12] [ 6] [111042] +11:11:34 [ 13] [ 4] [0320] +11:11:34 [ 14] [ 4] [4912] +11:11:34 [ 15] [ 4] [0320] +11:11:34 [ 18] [ 4] [6011] +11:11:34 [ 19] [ 3] [418] +11:11:34 [ 22] [ 3] [021] +11:11:34 [ 25] [ 2] [01] +11:11:34 [ 28] [ 9] [D00002000] +11:11:34 [ 32] [ 6] [180893] +11:11:34 [ 35] [ 32] [6213543000081207=491212018120295] +11:11:34 [ 37] [ 12] [507904268381] +11:11:34 [ 41] [ 8] [0527LPBL] +11:11:34 [ 42] [ 15] [999999 ] +11:11:34 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +11:11:34 [ 49] [ 3] [418] +11:11:34 [ 52] [ 16] [9205F0886506B50A] +11:11:34 ============================================================================ +11:11:34 + + +waiting on router queue for slot.... +11:11:34 Sending to : +11:11:34 ============================================================================ +11:11:34 Sending to : +11:11:34 ============================================================================ +11:11:35 ============================================================================ +11:11:35 Slot Id : <46> +11:11:35 Transaction Type : REQUEST +11:11:35 Received From : +11:11:35 ============================================================================ +11:11:35 FNo. Len. Field Value +11:11:35 ============================================================================ +11:11:35 [ 1] [ 4] [0200] +11:11:35 [ 2] [ 16] [6213543000081207] +11:11:35 [ 3] [ 6] [012000] +11:11:35 [ 4] [ 12] [000040000000] +11:11:35 [ 7] [ 10] [0320041042] +11:11:35 [ 11] [ 6] [268381] +11:11:35 [ 12] [ 6] [111042] +11:11:35 [ 13] [ 4] [0320] +11:11:35 [ 14] [ 4] [4912] +11:11:35 [ 15] [ 4] [0320] +11:11:35 [ 18] [ 4] [6011] +11:11:35 [ 19] [ 3] [418] +11:11:35 [ 22] [ 3] [021] +11:11:35 [ 25] [ 2] [01] +11:11:35 [ 28] [ 9] [D00002000] +11:11:35 [ 32] [ 6] [180893] +11:11:35 [ 35] [ 32] [6213543000081207=491212018120295] +11:11:35 [ 37] [ 12] [507904268381] +11:11:35 [ 41] [ 8] [0527LPBL] +11:11:35 [ 42] [ 15] [999999 ] +11:11:35 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +11:11:35 [ 49] [ 3] [418] +11:11:35 [ 52] [ 16] [9205F0886506B50A] +11:11:35 ============================================================================ +11:11:35 + + +waiting on router queue for slot.... +11:11:35 Sending to : +11:11:35 ============================================================================ +11:11:35 ============================================================================ +11:11:35 Slot Id : <46> +11:11:35 Transaction Type : REQUEST +11:11:35 Received From : +11:11:35 ============================================================================ +11:11:35 FNo. Len. Field Value +11:11:35 ============================================================================ +11:11:35 [ 1] [ 4] [0200] +11:11:35 [ 2] [ 16] [6213543000081207] +11:11:35 [ 3] [ 6] [012000] +11:11:35 [ 4] [ 12] [000040000000] +11:11:35 [ 7] [ 10] [0320041042] +11:11:35 [ 11] [ 6] [268381] +11:11:35 [ 12] [ 6] [111042] +11:11:35 [ 13] [ 4] [0320] +11:11:35 [ 14] [ 4] [4912] +11:11:35 [ 15] [ 4] [0320] +11:11:35 [ 18] [ 4] [6011] +11:11:35 [ 19] [ 3] [418] +11:11:35 [ 22] [ 3] [021] +11:11:35 [ 25] [ 2] [01] +11:11:35 [ 28] [ 9] [D00002000] +11:11:35 [ 32] [ 6] [180893] +11:11:35 [ 35] [ 32] [6213543000081207=491212018120295] +11:11:35 [ 37] [ 12] [507904268381] +11:11:35 [ 41] [ 8] [0527LPBL] +11:11:35 [ 42] [ 15] [999999 ] +11:11:35 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +11:11:35 [ 49] [ 3] [418] +11:11:35 [ 52] [ 16] [DE26A3EEC3FD5068] +11:11:35 ============================================================================ +11:11:35 + + +waiting on router queue for slot.... +11:11:35 Sending to : <0> +11:11:35 ============================================================================ +11:11:35 ============================================================================ +11:11:35 Slot Id : <46> +11:11:35 Transaction Type : RESPONSE +11:11:35 Received From : +11:11:35 ============================================================================ +11:11:35 FNo. Len. Field Value +11:11:35 ============================================================================ +11:11:35 [ 1] [ 4] [0210] +11:11:35 [ 2] [ 16] [6213543000081207] +11:11:35 [ 3] [ 6] [012000] +11:11:35 [ 4] [ 12] [000040000000] +11:11:35 [ 7] [ 10] [0320041042] +11:11:35 [ 11] [ 6] [268381] +11:11:35 [ 12] [ 6] [111042] +11:11:35 [ 13] [ 4] [0320] +11:11:35 [ 15] [ 4] [0320] +11:11:35 [ 18] [ 4] [6011] +11:11:35 [ 19] [ 3] [418] +11:11:35 [ 32] [ 6] [180893] +11:11:35 [ 35] [ 32] [6213543000081207=491212018120295] +11:11:35 [ 37] [ 12] [507904268381] +11:11:35 [ 38] [ 6] [268381] +11:11:35 [ 39] [ 2] [51] +11:11:35 [ 41] [ 8] [0527LPBL] +11:11:35 [ 49] [ 3] [418] +11:11:35 [ 54] [ 40] [2001418C0000446661282002418C000044666128] +11:11:35 ============================================================================ +11:11:35 Sending to : +11:11:35 ============================================================================ +11:11:35 + + +waiting on router queue for slot.... +11:11:36 ============================================================================ +11:11:36 Slot Id : <46> +11:11:36 Transaction Type : RESPONSE +11:11:36 Received From : +11:11:36 ============================================================================ +11:11:36 FNo. Len. Field Value +11:11:36 ============================================================================ +11:11:36 [ 1] [ 4] [0210] +11:11:36 [ 2] [ 16] [6213543000081207] +11:11:36 [ 3] [ 6] [012000] +11:11:36 [ 4] [ 12] [000040000000] +11:11:36 [ 7] [ 10] [0320041042] +11:11:36 [ 11] [ 6] [268381] +11:11:36 [ 12] [ 6] [111042] +11:11:36 [ 13] [ 4] [0320] +11:11:36 [ 15] [ 4] [0320] +11:11:36 [ 18] [ 4] [6011] +11:11:36 [ 19] [ 3] [418] +11:11:36 [ 32] [ 6] [180893] +11:11:36 [ 35] [ 32] [6213543000081207=491212018120295] +11:11:36 [ 37] [ 12] [507904268381] +11:11:36 [ 38] [ 6] [268381] +11:11:36 [ 39] [ 2] [51] +11:11:36 [ 41] [ 8] [0527LPBL] +11:11:36 [ 49] [ 3] [418] +11:11:36 [ 54] [ 40] [2001418C0000446661282002418C000044666128] +11:11:36 ============================================================================ +11:11:36 Calculate Source COMM Id = 2 +11:11:36 ============================================================================ +11:11:36 + + +waiting on router queue for slot.... +11:11:51 ============================================================================ +11:11:51 Slot Id : <19> +11:11:51 Transaction Type : REQUEST +11:11:51 Received From : +11:11:51 ============================================================================ +11:11:51 FNo. Len. Field Value +11:11:51 ============================================================================ +11:11:51 [ 1] [ 4] [0800] +11:11:51 [ 7] [ 10] [0320041058] +11:11:51 [ 11] [ 6] [156030] +11:11:51 [ 70] [ 3] [301] +11:11:51 ============================================================================ +11:11:51 + + +waiting on router queue for slot.... +11:11:51 Sending to : +11:11:51 ============================================================================ +11:11:51 ============================================================================ +11:11:51 Slot Id : <19> +11:11:51 Transaction Type : RESPONSE +11:11:51 Received From : +11:11:51 ============================================================================ +11:11:51 FNo. Len. Field Value +11:11:51 ============================================================================ +11:11:51 [ 1] [ 4] [0810] +11:11:51 [ 7] [ 10] [0320041058] +11:11:51 [ 11] [ 6] [156030] +11:11:51 [ 39] [ 2] [00] +11:11:51 [ 70] [ 3] [301] +11:11:51 ============================================================================ +11:11:51 Calculate Source COMM Id = 2 +11:11:51 ============================================================================ +11:11:51 + + +waiting on router queue for slot.... +11:12:02 ============================================================================ +11:12:02 Slot Id : <69> +11:12:02 Transaction Type : REQUEST +11:12:02 Received From : +11:12:02 ============================================================================ +11:12:02 FNo. Len. Field Value +11:12:02 ============================================================================ +11:12:02 [ 1] [ 4] [0200] +11:12:02 [ 2] [ 16] [6213543000081207] +11:12:02 [ 3] [ 6] [302000] +11:12:02 [ 7] [ 10] [0320041109] +11:12:02 [ 11] [ 6] [268386] +11:12:02 [ 12] [ 6] [111109] +11:12:02 [ 13] [ 4] [0320] +11:12:02 [ 14] [ 4] [4912] +11:12:02 [ 15] [ 4] [0320] +11:12:02 [ 18] [ 4] [6011] +11:12:02 [ 19] [ 3] [418] +11:12:02 [ 22] [ 3] [021] +11:12:02 [ 25] [ 2] [01] +11:12:02 [ 32] [ 6] [180893] +11:12:02 [ 35] [ 32] [6213543000081207=491212018120295] +11:12:02 [ 37] [ 12] [507904268386] +11:12:02 [ 41] [ 8] [0527LPBL] +11:12:02 [ 42] [ 15] [999999 ] +11:12:02 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +11:12:02 [ 49] [ 3] [418] +11:12:02 [ 52] [ 16] [9205F0886506B50A] +11:12:02 ============================================================================ +11:12:02 + + +waiting on router queue for slot.... +11:12:02 Sending to : +11:12:02 ============================================================================ +11:12:02 Sending to : +11:12:02 ============================================================================ +11:12:02 ============================================================================ +11:12:02 Slot Id : <58> +11:12:02 Transaction Type : REQUEST +11:12:02 Received From : +11:12:02 ============================================================================ +11:12:02 FNo. Len. Field Value +11:12:02 ============================================================================ +11:12:02 [ 1] [ 4] [0800] +11:12:02 [ 7] [ 10] [0320041109] +11:12:02 [ 11] [ 6] [156031] +11:12:02 [ 70] [ 3] [301] +11:12:02 ============================================================================ +11:12:02 + + +waiting on router queue for slot.... +11:12:02 Sending to : +11:12:02 ============================================================================ +11:12:02 ============================================================================ +11:12:02 Slot Id : <58> +11:12:02 Transaction Type : RESPONSE +11:12:02 Received From : +11:12:02 ============================================================================ +11:12:02 FNo. Len. Field Value +11:12:02 ============================================================================ +11:12:02 [ 1] [ 4] [0810] +11:12:02 [ 7] [ 10] [0320041109] +11:12:02 [ 11] [ 6] [156031] +11:12:02 [ 39] [ 2] [00] +11:12:02 [ 70] [ 3] [301] +11:12:02 ============================================================================ +11:12:02 Calculate Source COMM Id = 2 +11:12:02 ============================================================================ +11:12:02 + + +waiting on router queue for slot.... +11:12:02 ============================================================================ +11:12:02 Slot Id : <69> +11:12:02 Transaction Type : REQUEST +11:12:02 Received From : +11:12:02 ============================================================================ +11:12:02 FNo. Len. Field Value +11:12:02 ============================================================================ +11:12:02 [ 1] [ 4] [0200] +11:12:02 [ 2] [ 16] [6213543000081207] +11:12:02 [ 3] [ 6] [302000] +11:12:02 [ 7] [ 10] [0320041109] +11:12:02 [ 11] [ 6] [268386] +11:12:02 [ 12] [ 6] [111109] +11:12:02 [ 13] [ 4] [0320] +11:12:02 [ 14] [ 4] [4912] +11:12:02 [ 15] [ 4] [0320] +11:12:02 [ 18] [ 4] [6011] +11:12:02 [ 19] [ 3] [418] +11:12:02 [ 22] [ 3] [021] +11:12:02 [ 25] [ 2] [01] +11:12:02 [ 32] [ 6] [180893] +11:12:02 [ 35] [ 32] [6213543000081207=491212018120295] +11:12:02 [ 37] [ 12] [507904268386] +11:12:02 [ 41] [ 8] [0527LPBL] +11:12:02 [ 42] [ 15] [999999 ] +11:12:02 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +11:12:02 [ 49] [ 3] [418] +11:12:02 [ 52] [ 16] [9205F0886506B50A] +11:12:02 ============================================================================ +11:12:02 + + +waiting on router queue for slot.... +11:12:02 Sending to : +11:12:02 ============================================================================ +11:12:02 ============================================================================ +11:12:02 Slot Id : <69> +11:12:02 Transaction Type : REQUEST +11:12:02 Received From : +11:12:02 ============================================================================ +11:12:02 FNo. Len. Field Value +11:12:02 ============================================================================ +11:12:02 [ 1] [ 4] [0200] +11:12:02 [ 2] [ 16] [6213543000081207] +11:12:02 [ 3] [ 6] [302000] +11:12:02 [ 7] [ 10] [0320041109] +11:12:02 [ 11] [ 6] [268386] +11:12:02 [ 12] [ 6] [111109] +11:12:02 [ 13] [ 4] [0320] +11:12:02 [ 14] [ 4] [4912] +11:12:02 [ 15] [ 4] [0320] +11:12:02 [ 18] [ 4] [6011] +11:12:02 [ 19] [ 3] [418] +11:12:02 [ 22] [ 3] [021] +11:12:02 [ 25] [ 2] [01] +11:12:02 [ 32] [ 6] [180893] +11:12:02 [ 35] [ 32] [6213543000081207=491212018120295] +11:12:02 [ 37] [ 12] [507904268386] +11:12:02 [ 41] [ 8] [0527LPBL] +11:12:02 [ 42] [ 15] [999999 ] +11:12:02 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +11:12:02 [ 49] [ 3] [418] +11:12:02 [ 52] [ 16] [DE26A3EEC3FD5068] +11:12:02 ============================================================================ +11:12:02 + + +waiting on router queue for slot.... +11:12:02 Sending to : <0> +11:12:02 ============================================================================ +11:12:02 ============================================================================ +11:12:02 Slot Id : <69> +11:12:02 Transaction Type : RESPONSE +11:12:02 Received From : +11:12:02 ============================================================================ +11:12:02 FNo. Len. Field Value +11:12:02 ============================================================================ +11:12:02 [ 1] [ 4] [0210] +11:12:02 [ 2] [ 16] [6213543000081207] +11:12:02 [ 3] [ 6] [302000] +11:12:02 [ 4] [ 12] [000000000000] +11:12:02 [ 7] [ 10] [0320041109] +11:12:02 [ 11] [ 6] [268386] +11:12:02 [ 12] [ 6] [111109] +11:12:02 [ 13] [ 4] [0320] +11:12:02 [ 15] [ 4] [0320] +11:12:02 [ 18] [ 4] [6011] +11:12:02 [ 19] [ 3] [418] +11:12:02 [ 32] [ 6] [180893] +11:12:02 [ 35] [ 32] [6213543000081207=491212018120295] +11:12:02 [ 37] [ 12] [507904268386] +11:12:02 [ 38] [ 6] [337792] +11:12:02 [ 39] [ 2] [00] +11:12:02 [ 41] [ 8] [0527LPBL] +11:12:02 [ 49] [ 3] [418] +11:12:02 [ 54] [ 40] [2001418C0000446661282002418C000044666128] +11:12:02 ============================================================================ +11:12:02 Sending to : +11:12:02 ============================================================================ +11:12:02 + + +waiting on router queue for slot.... +11:12:04 ============================================================================ +11:12:04 Slot Id : <69> +11:12:04 Transaction Type : RESPONSE +11:12:04 Received From : +11:12:04 ============================================================================ +11:12:04 FNo. Len. Field Value +11:12:04 ============================================================================ +11:12:04 [ 1] [ 4] [0210] +11:12:04 [ 2] [ 16] [6213543000081207] +11:12:04 [ 3] [ 6] [302000] +11:12:04 [ 4] [ 12] [000000000000] +11:12:04 [ 7] [ 10] [0320041109] +11:12:04 [ 11] [ 6] [268386] +11:12:04 [ 12] [ 6] [111109] +11:12:04 [ 13] [ 4] [0320] +11:12:04 [ 15] [ 4] [0320] +11:12:04 [ 18] [ 4] [6011] +11:12:04 [ 19] [ 3] [418] +11:12:04 [ 32] [ 6] [180893] +11:12:04 [ 35] [ 32] [6213543000081207=491212018120295] +11:12:04 [ 37] [ 12] [507904268386] +11:12:04 [ 38] [ 6] [337792] +11:12:04 [ 39] [ 2] [00] +11:12:04 [ 41] [ 8] [0527LPBL] +11:12:04 [ 49] [ 3] [418] +11:12:04 [ 54] [ 40] [2001418C0000446661282002418C000044666128] +11:12:04 ============================================================================ +11:12:04 Calculate Source COMM Id = 2 +11:12:04 ============================================================================ +11:12:04 + + +waiting on router queue for slot.... +11:12:13 ============================================================================ +11:12:13 Slot Id : <78> +11:12:13 Transaction Type : REQUEST +11:12:13 Received From : +11:12:13 ============================================================================ +11:12:13 FNo. Len. Field Value +11:12:13 ============================================================================ +11:12:13 [ 1] [ 4] [0200] +11:12:13 [ 2] [ 16] [6213545000822449] +11:12:13 [ 3] [ 6] [010000] +11:12:13 [ 4] [ 12] [000100000000] +11:12:13 [ 7] [ 10] [0320041118] +11:12:13 [ 11] [ 6] [268388] +11:12:13 [ 12] [ 6] [111118] +11:12:13 [ 13] [ 4] [0320] +11:12:13 [ 14] [ 4] [4912] +11:12:13 [ 15] [ 4] [0320] +11:12:13 [ 18] [ 4] [6011] +11:12:13 [ 19] [ 3] [418] +11:12:13 [ 22] [ 3] [021] +11:12:13 [ 25] [ 2] [01] +11:12:13 [ 28] [ 9] [D00002000] +11:12:13 [ 32] [ 6] [180893] +11:12:13 [ 35] [ 32] [6213545000822449=491212012244968] +11:12:13 [ 37] [ 12] [507904268388] +11:12:13 [ 41] [ 8] [0262PSLB] +11:12:13 [ 42] [ 15] [999999 ] +11:12:13 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:12:13 [ 49] [ 3] [418] +11:12:13 [ 52] [ 16] [9A308E70A3438E4A] +11:12:13 ============================================================================ +11:12:13 + + +waiting on router queue for slot.... +11:12:13 Sending to : +11:12:13 ============================================================================ +11:12:13 Sending to : +11:12:13 ============================================================================ +11:12:13 ============================================================================ +11:12:13 Slot Id : <78> +11:12:13 Transaction Type : REQUEST +11:12:13 Received From : +11:12:13 ============================================================================ +11:12:13 FNo. Len. Field Value +11:12:13 ============================================================================ +11:12:13 [ 1] [ 4] [0200] +11:12:13 [ 2] [ 16] [6213545000822449] +11:12:13 [ 3] [ 6] [010000] +11:12:13 [ 4] [ 12] [000100000000] +11:12:13 [ 7] [ 10] [0320041118] +11:12:13 [ 11] [ 6] [268388] +11:12:13 [ 12] [ 6] [111118] +11:12:13 [ 13] [ 4] [0320] +11:12:13 [ 14] [ 4] [4912] +11:12:13 [ 15] [ 4] [0320] +11:12:13 [ 18] [ 4] [6011] +11:12:13 [ 19] [ 3] [418] +11:12:13 [ 22] [ 3] [021] +11:12:13 [ 25] [ 2] [01] +11:12:13 [ 28] [ 9] [D00002000] +11:12:13 [ 32] [ 6] [180893] +11:12:13 [ 35] [ 32] [6213545000822449=491212012244968] +11:12:13 [ 37] [ 12] [507904268388] +11:12:13 [ 41] [ 8] [0262PSLB] +11:12:13 [ 42] [ 15] [999999 ] +11:12:13 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:12:13 [ 49] [ 3] [418] +11:12:13 [ 52] [ 16] [9A308E70A3438E4A] +11:12:13 ============================================================================ +11:12:13 + + +waiting on router queue for slot.... +11:12:13 Sending to : +11:12:13 ============================================================================ +11:12:13 ============================================================================ +11:12:13 Slot Id : <78> +11:12:13 Transaction Type : REQUEST +11:12:13 Received From : +11:12:13 ============================================================================ +11:12:13 FNo. Len. Field Value +11:12:13 ============================================================================ +11:12:13 [ 1] [ 4] [0200] +11:12:13 [ 2] [ 16] [6213545000822449] +11:12:13 [ 3] [ 6] [010000] +11:12:13 [ 4] [ 12] [000100000000] +11:12:13 [ 7] [ 10] [0320041118] +11:12:13 [ 11] [ 6] [268388] +11:12:13 [ 12] [ 6] [111118] +11:12:13 [ 13] [ 4] [0320] +11:12:13 [ 14] [ 4] [4912] +11:12:13 [ 15] [ 4] [0320] +11:12:13 [ 18] [ 4] [6011] +11:12:13 [ 19] [ 3] [418] +11:12:13 [ 22] [ 3] [021] +11:12:13 [ 25] [ 2] [01] +11:12:13 [ 28] [ 9] [D00002000] +11:12:13 [ 32] [ 6] [180893] +11:12:13 [ 35] [ 32] [6213545000822449=491212012244968] +11:12:13 [ 37] [ 12] [507904268388] +11:12:13 [ 41] [ 8] [0262PSLB] +11:12:13 [ 42] [ 15] [999999 ] +11:12:13 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:12:13 [ 49] [ 3] [418] +11:12:13 [ 52] [ 16] [7599475DBEB43DE2] +11:12:13 ============================================================================ +11:12:13 + + +waiting on router queue for slot.... +11:12:13 Sending to : <0> +11:12:13 ============================================================================ +11:12:14 ============================================================================ +11:12:14 Slot Id : <78> +11:12:14 Transaction Type : RESPONSE +11:12:14 Received From : +11:12:14 ============================================================================ +11:12:14 FNo. Len. Field Value +11:12:14 ============================================================================ +11:12:14 [ 1] [ 4] [0210] +11:12:14 [ 2] [ 16] [6213545000822449] +11:12:14 [ 3] [ 6] [010000] +11:12:14 [ 4] [ 12] [000100000000] +11:12:14 [ 7] [ 10] [0320041118] +11:12:14 [ 11] [ 6] [268388] +11:12:14 [ 12] [ 6] [111118] +11:12:14 [ 13] [ 4] [0320] +11:12:14 [ 15] [ 4] [0320] +11:12:14 [ 18] [ 4] [6011] +11:12:14 [ 19] [ 3] [418] +11:12:14 [ 32] [ 6] [180893] +11:12:14 [ 35] [ 32] [6213545000822449=491212012244968] +11:12:14 [ 37] [ 12] [507904268388] +11:12:14 [ 38] [ 6] [281342] +11:12:14 [ 39] [ 2] [00] +11:12:14 [ 41] [ 8] [0262PSLB] +11:12:14 [ 49] [ 3] [418] +11:12:14 [ 54] [ 40] [0001418C0001109886220002418C000110988622] +11:12:14 ============================================================================ +11:12:14 Sending to : +11:12:14 ============================================================================ +11:12:14 + + +waiting on router queue for slot.... +11:12:15 ============================================================================ +11:12:15 Slot Id : <78> +11:12:15 Transaction Type : RESPONSE +11:12:15 Received From : +11:12:15 ============================================================================ +11:12:15 FNo. Len. Field Value +11:12:15 ============================================================================ +11:12:15 [ 1] [ 4] [0210] +11:12:15 [ 2] [ 16] [6213545000822449] +11:12:15 [ 3] [ 6] [010000] +11:12:15 [ 4] [ 12] [000100000000] +11:12:15 [ 7] [ 10] [0320041118] +11:12:15 [ 11] [ 6] [268388] +11:12:15 [ 12] [ 6] [111118] +11:12:15 [ 13] [ 4] [0320] +11:12:15 [ 15] [ 4] [0320] +11:12:15 [ 18] [ 4] [6011] +11:12:15 [ 19] [ 3] [418] +11:12:15 [ 32] [ 6] [180893] +11:12:15 [ 35] [ 32] [6213545000822449=491212012244968] +11:12:15 [ 37] [ 12] [507904268388] +11:12:15 [ 38] [ 6] [281342] +11:12:15 [ 39] [ 2] [00] +11:12:15 [ 41] [ 8] [0262PSLB] +11:12:15 [ 49] [ 3] [418] +11:12:15 [ 54] [ 40] [0001418C0001109886220002418C000110988622] +11:12:15 ============================================================================ +11:12:15 Calculate Source COMM Id = 2 +11:12:15 ============================================================================ +11:12:15 + + +waiting on router queue for slot.... +11:12:18 ============================================================================ +11:12:18 Slot Id : <47> +11:12:18 Transaction Type : REQUEST +11:12:18 Received From : +11:12:18 ============================================================================ +11:12:18 FNo. Len. Field Value +11:12:18 ============================================================================ +11:12:18 [ 1] [ 4] [0800] +11:12:18 [ 2] [ 5] [02531] +11:12:18 [ 3] [ 6] [579118] +11:12:18 [ 7] [ 10] [0320041218] +11:12:18 [ 11] [ 6] [807062] +11:12:18 [ 15] [ 10] [0320041218] +11:12:18 [ 37] [ 11] [57911807062] +11:12:18 [ 70] [ 3] [001] +11:12:18 ============================================================================ +11:12:18 + + +waiting on router queue for slot.... +11:12:18 ============================================================================ +11:12:18 Slot Id : <47> +11:12:18 Transaction Type : RESPONSE +11:12:18 Received From : +11:12:18 ============================================================================ +11:12:18 FNo. Len. Field Value +11:12:18 ============================================================================ +11:12:18 [ 1] [ 4] [0810] +11:12:18 [ 7] [ 10] [0320041218] +11:12:18 [ 11] [ 6] [807062] +11:12:18 [ 15] [ 4] [0320] +11:12:18 [ 37] [ 12] [57911807062] +11:12:18 [ 39] [ 2] [00] +11:12:18 [ 70] [ 3] [001] +11:12:18 ============================================================================ +11:12:18 Sending to : +11:12:18 ============================================================================ +11:12:18 + + +waiting on router queue for slot.... +11:12:29 ============================================================================ +11:12:29 Slot Id : <54> +11:12:29 Transaction Type : REQUEST +11:12:29 Received From : +11:12:29 ============================================================================ +11:12:29 FNo. Len. Field Value +11:12:29 ============================================================================ +11:12:29 [ 1] [ 4] [0200] +11:12:29 [ 2] [ 16] [6213544001603387] +11:12:29 [ 3] [ 6] [010000] +11:12:29 [ 4] [ 12] [000020000000] +11:12:29 [ 7] [ 10] [0320111020] +11:12:29 [ 11] [ 6] [940518] +11:12:29 [ 12] [ 6] [111020] +11:12:29 [ 13] [ 4] [0320] +11:12:29 [ 15] [ 4] [0320] +11:12:29 [ 18] [ 4] [6011] +11:12:29 [ 19] [ 3] [418] +11:12:29 [ 22] [ 3] [021] +11:12:29 [ 25] [ 2] [01] +11:12:29 [ 28] [ 9] [D00002000] +11:12:29 [ 32] [ 6] [668899] +11:12:29 [ 35] [ 32] [6213544001603387=491212010338278] +11:12:29 [ 37] [ 12] [507902407349] +11:12:29 [ 41] [ 8] [03001010] +11:12:29 [ 42] [ 15] [APT ] +11:12:29 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +11:12:29 [ 49] [ 3] [418] +11:12:29 [ 52] [ 16] [EDDF8E16D9CB2E82] +11:12:29 ============================================================================ +11:12:29 + + +waiting on router queue for slot.... +11:12:29 Sending to : +11:12:29 ============================================================================ +11:12:29 Sending to : +11:12:29 ============================================================================ +11:12:30 ============================================================================ +11:12:30 Slot Id : <54> +11:12:30 Transaction Type : REQUEST +11:12:30 Received From : +11:12:30 ============================================================================ +11:12:30 FNo. Len. Field Value +11:12:30 ============================================================================ +11:12:30 [ 1] [ 4] [0200] +11:12:30 [ 2] [ 16] [6213544001603387] +11:12:30 [ 3] [ 6] [010000] +11:12:30 [ 4] [ 12] [000020000000] +11:12:30 [ 7] [ 10] [0320111020] +11:12:30 [ 11] [ 6] [940518] +11:12:30 [ 12] [ 6] [111020] +11:12:30 [ 13] [ 4] [0320] +11:12:30 [ 15] [ 4] [0320] +11:12:30 [ 18] [ 4] [6011] +11:12:30 [ 19] [ 3] [418] +11:12:30 [ 22] [ 3] [021] +11:12:30 [ 25] [ 2] [01] +11:12:30 [ 28] [ 9] [D00002000] +11:12:30 [ 32] [ 6] [668899] +11:12:30 [ 35] [ 32] [6213544001603387=491212010338278] +11:12:30 [ 37] [ 12] [507902407349] +11:12:30 [ 41] [ 8] [03001010] +11:12:30 [ 42] [ 15] [APT ] +11:12:30 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +11:12:30 [ 49] [ 3] [418] +11:12:30 [ 52] [ 16] [EDDF8E16D9CB2E82] +11:12:30 ============================================================================ +11:12:30 + + +waiting on router queue for slot.... +11:12:30 Sending to : +11:12:30 ============================================================================ +11:12:30 ============================================================================ +11:12:30 Slot Id : <54> +11:12:30 Transaction Type : REQUEST +11:12:30 Received From : +11:12:30 ============================================================================ +11:12:30 FNo. Len. Field Value +11:12:30 ============================================================================ +11:12:30 [ 1] [ 4] [0200] +11:12:30 [ 2] [ 16] [6213544001603387] +11:12:30 [ 3] [ 6] [010000] +11:12:30 [ 4] [ 12] [000020000000] +11:12:30 [ 7] [ 10] [0320111020] +11:12:30 [ 11] [ 6] [940518] +11:12:30 [ 12] [ 6] [111020] +11:12:30 [ 13] [ 4] [0320] +11:12:30 [ 15] [ 4] [0320] +11:12:30 [ 18] [ 4] [6011] +11:12:30 [ 19] [ 3] [418] +11:12:30 [ 22] [ 3] [021] +11:12:30 [ 25] [ 2] [01] +11:12:30 [ 28] [ 9] [D00002000] +11:12:30 [ 32] [ 6] [668899] +11:12:30 [ 35] [ 32] [6213544001603387=491212010338278] +11:12:30 [ 37] [ 12] [507902407349] +11:12:30 [ 41] [ 8] [03001010] +11:12:30 [ 42] [ 15] [APT ] +11:12:30 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +11:12:30 [ 49] [ 3] [418] +11:12:30 [ 52] [ 16] [B90D870D1F379BED] +11:12:30 ============================================================================ +11:12:30 + + +waiting on router queue for slot.... +11:12:30 Sending to : <0> +11:12:30 ============================================================================ +11:12:30 ============================================================================ +11:12:30 Slot Id : <81> +11:12:30 Transaction Type : REQUEST +11:12:30 Received From : +11:12:30 ============================================================================ +11:12:30 FNo. Len. Field Value +11:12:30 ============================================================================ +11:12:30 [ 1] [ 4] [0800] +11:12:30 [ 7] [ 10] [0320041138] +11:12:30 [ 11] [ 6] [156032] +11:12:30 [ 70] [ 3] [301] +11:12:30 ============================================================================ +11:12:30 + + +waiting on router queue for slot.... +11:12:30 Sending to : +11:12:30 ============================================================================ +11:12:30 ============================================================================ +11:12:30 Slot Id : <81> +11:12:30 Transaction Type : RESPONSE +11:12:30 Received From : +11:12:30 ============================================================================ +11:12:30 FNo. Len. Field Value +11:12:30 ============================================================================ +11:12:30 [ 1] [ 4] [0810] +11:12:30 [ 7] [ 10] [0320041138] +11:12:30 [ 11] [ 6] [156032] +11:12:30 [ 39] [ 2] [00] +11:12:30 [ 70] [ 3] [301] +11:12:30 ============================================================================ +11:12:30 Calculate Source COMM Id = 2 +11:12:30 ============================================================================ +11:12:30 + + +waiting on router queue for slot.... +11:12:30 ============================================================================ +11:12:30 Slot Id : <54> +11:12:30 Transaction Type : RESPONSE +11:12:30 Received From : +11:12:30 ============================================================================ +11:12:30 FNo. Len. Field Value +11:12:30 ============================================================================ +11:12:30 [ 1] [ 4] [0210] +11:12:30 [ 2] [ 16] [6213544001603387] +11:12:30 [ 3] [ 6] [010000] +11:12:30 [ 4] [ 12] [000020000000] +11:12:30 [ 7] [ 10] [0320111020] +11:12:30 [ 11] [ 6] [940518] +11:12:30 [ 12] [ 6] [111020] +11:12:30 [ 13] [ 4] [0320] +11:12:30 [ 15] [ 4] [0320] +11:12:30 [ 18] [ 4] [6011] +11:12:30 [ 19] [ 3] [418] +11:12:30 [ 32] [ 6] [668899] +11:12:30 [ 35] [ 32] [6213544001603387=491212010338278] +11:12:30 [ 37] [ 12] [507902407349] +11:12:30 [ 38] [ 6] [992197] +11:12:30 [ 39] [ 2] [00] +11:12:30 [ 41] [ 8] [03001010] +11:12:30 [ 49] [ 3] [418] +11:12:30 [ 54] [ 40] [0001418C0000110756000002418C000011075600] +11:12:30 ============================================================================ +11:12:30 Sending to : +11:12:30 ============================================================================ +11:12:30 + + +waiting on router queue for slot.... +11:12:32 ============================================================================ +11:12:32 Slot Id : <54> +11:12:32 Transaction Type : RESPONSE +11:12:32 Received From : +11:12:32 ============================================================================ +11:12:32 FNo. Len. Field Value +11:12:32 ============================================================================ +11:12:32 [ 1] [ 4] [0210] +11:12:32 [ 2] [ 16] [6213544001603387] +11:12:32 [ 3] [ 6] [010000] +11:12:32 [ 4] [ 12] [000020000000] +11:12:32 [ 7] [ 10] [0320111020] +11:12:32 [ 11] [ 6] [940518] +11:12:32 [ 12] [ 6] [111020] +11:12:32 [ 13] [ 4] [0320] +11:12:32 [ 15] [ 4] [0320] +11:12:32 [ 18] [ 4] [6011] +11:12:32 [ 19] [ 3] [418] +11:12:32 [ 32] [ 6] [668899] +11:12:32 [ 35] [ 32] [6213544001603387=491212010338278] +11:12:32 [ 37] [ 12] [507902407349] +11:12:32 [ 38] [ 6] [992197] +11:12:32 [ 39] [ 2] [00] +11:12:32 [ 41] [ 8] [03001010] +11:12:32 [ 49] [ 3] [418] +11:12:32 [ 54] [ 40] [0001418C0000110756000002418C000011075600] +11:12:32 ============================================================================ +11:12:32 Calculate Source COMM Id = 4 +11:12:32 ============================================================================ +11:12:32 + + +waiting on router queue for slot.... +11:12:41 ============================================================================ +11:12:41 Slot Id : <57> +11:12:41 Transaction Type : REQUEST +11:12:41 Received From : +11:12:41 ============================================================================ +11:12:41 FNo. Len. Field Value +11:12:41 ============================================================================ +11:12:41 [ 1] [ 4] [0800] +11:12:41 [ 7] [ 10] [0320041148] +11:12:41 [ 11] [ 6] [156033] +11:12:41 [ 70] [ 3] [301] +11:12:41 ============================================================================ +11:12:41 + + +waiting on router queue for slot.... +11:12:41 Sending to : +11:12:41 ============================================================================ +11:12:41 ============================================================================ +11:12:41 Slot Id : <57> +11:12:41 Transaction Type : RESPONSE +11:12:41 Received From : +11:12:41 ============================================================================ +11:12:41 FNo. Len. Field Value +11:12:41 ============================================================================ +11:12:41 [ 1] [ 4] [0810] +11:12:41 [ 7] [ 10] [0320041148] +11:12:41 [ 11] [ 6] [156033] +11:12:41 [ 39] [ 2] [00] +11:12:41 [ 70] [ 3] [301] +11:12:41 ============================================================================ +11:12:41 Calculate Source COMM Id = 2 +11:12:41 ============================================================================ +11:12:41 + + +waiting on router queue for slot.... +11:12:51 ============================================================================ +11:12:51 Slot Id : <24> +11:12:51 Transaction Type : REQUEST +11:12:51 Received From : +11:12:51 ============================================================================ +11:12:51 FNo. Len. Field Value +11:12:51 ============================================================================ +11:12:51 [ 1] [ 4] [0800] +11:12:51 [ 7] [ 10] [0320041159] +11:12:51 [ 11] [ 6] [156034] +11:12:51 [ 70] [ 3] [301] +11:12:51 ============================================================================ +11:12:51 + + +waiting on router queue for slot.... +11:12:51 Sending to : +11:12:51 ============================================================================ +11:12:51 ============================================================================ +11:12:51 Slot Id : <24> +11:12:51 Transaction Type : RESPONSE +11:12:51 Received From : +11:12:51 ============================================================================ +11:12:51 FNo. Len. Field Value +11:12:51 ============================================================================ +11:12:51 [ 1] [ 4] [0810] +11:12:51 [ 7] [ 10] [0320041159] +11:12:51 [ 11] [ 6] [156034] +11:12:51 [ 39] [ 2] [00] +11:12:51 [ 70] [ 3] [301] +11:12:51 ============================================================================ +11:12:51 Calculate Source COMM Id = 2 +11:12:51 ============================================================================ +11:12:51 + + +waiting on router queue for slot.... +11:12:52 ============================================================================ +11:12:52 Slot Id : <42> +11:12:52 Transaction Type : REQUEST +11:12:52 Received From : +11:12:52 ============================================================================ +11:12:52 FNo. Len. Field Value +11:12:52 ============================================================================ +11:12:52 [ 1] [ 4] [0200] +11:12:52 [ 2] [ 16] [6213548000509206] +11:12:52 [ 3] [ 6] [302000] +11:12:52 [ 4] [ 12] [000000000000] +11:12:52 [ 7] [ 10] [0320111043] +11:12:52 [ 11] [ 6] [940541] +11:12:52 [ 12] [ 6] [111043] +11:12:52 [ 13] [ 4] [0320] +11:12:52 [ 15] [ 4] [0320] +11:12:52 [ 18] [ 4] [6011] +11:12:52 [ 19] [ 3] [418] +11:12:52 [ 22] [ 3] [021] +11:12:52 [ 25] [ 2] [01] +11:12:52 [ 28] [ 9] [D00000000] +11:12:52 [ 32] [ 6] [668899] +11:12:52 [ 35] [ 32] [6213548000509206=181112010920283] +11:12:52 [ 37] [ 12] [507900329873] +11:12:52 [ 41] [ 8] [03013003] +11:12:52 [ 42] [ 15] [APT ] +11:12:52 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:12:52 [ 49] [ 3] [418] +11:12:52 [ 52] [ 16] [BF75F8749AA47306] +11:12:52 ============================================================================ +11:12:52 + + +waiting on router queue for slot.... +11:12:52 Sending to : +11:12:52 ============================================================================ +11:12:52 Sending to : +11:12:52 ============================================================================ +11:12:52 ============================================================================ +11:12:52 Slot Id : <42> +11:12:52 Transaction Type : REQUEST +11:12:52 Received From : +11:12:52 ============================================================================ +11:12:52 FNo. Len. Field Value +11:12:52 ============================================================================ +11:12:52 [ 1] [ 4] [0200] +11:12:52 [ 2] [ 16] [6213548000509206] +11:12:52 [ 3] [ 6] [302000] +11:12:52 [ 4] [ 12] [000000000000] +11:12:52 [ 7] [ 10] [0320111043] +11:12:52 [ 11] [ 6] [940541] +11:12:52 [ 12] [ 6] [111043] +11:12:52 [ 13] [ 4] [0320] +11:12:52 [ 15] [ 4] [0320] +11:12:52 [ 18] [ 4] [6011] +11:12:52 [ 19] [ 3] [418] +11:12:52 [ 22] [ 3] [021] +11:12:52 [ 25] [ 2] [01] +11:12:52 [ 28] [ 9] [D00000000] +11:12:52 [ 32] [ 6] [668899] +11:12:52 [ 35] [ 32] [6213548000509206=181112010920283] +11:12:52 [ 37] [ 12] [507900329873] +11:12:52 [ 41] [ 8] [03013003] +11:12:52 [ 42] [ 15] [APT ] +11:12:52 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:12:52 [ 49] [ 3] [418] +11:12:52 [ 52] [ 16] [BF75F8749AA47306] +11:12:52 ============================================================================ +11:12:52 + + +waiting on router queue for slot.... +11:12:52 Sending to : +11:12:52 ============================================================================ +11:12:52 ============================================================================ +11:12:52 Slot Id : <42> +11:12:52 Transaction Type : REQUEST +11:12:52 Received From : +11:12:52 ============================================================================ +11:12:52 FNo. Len. Field Value +11:12:52 ============================================================================ +11:12:52 [ 1] [ 4] [0200] +11:12:52 [ 2] [ 16] [6213548000509206] +11:12:52 [ 3] [ 6] [302000] +11:12:52 [ 4] [ 12] [000000000000] +11:12:52 [ 7] [ 10] [0320111043] +11:12:52 [ 11] [ 6] [940541] +11:12:52 [ 12] [ 6] [111043] +11:12:52 [ 13] [ 4] [0320] +11:12:52 [ 15] [ 4] [0320] +11:12:52 [ 18] [ 4] [6011] +11:12:52 [ 19] [ 3] [418] +11:12:52 [ 22] [ 3] [021] +11:12:52 [ 25] [ 2] [01] +11:12:52 [ 28] [ 9] [D00000000] +11:12:52 [ 32] [ 6] [668899] +11:12:52 [ 35] [ 32] [6213548000509206=181112010920283] +11:12:52 [ 37] [ 12] [507900329873] +11:12:52 [ 41] [ 8] [03013003] +11:12:52 [ 42] [ 15] [APT ] +11:12:52 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:12:52 [ 49] [ 3] [418] +11:12:52 [ 52] [ 16] [A78B4DB47D419F13] +11:12:52 ============================================================================ +11:12:52 + + +waiting on router queue for slot.... +11:12:52 Sending to : <0> +11:12:52 ============================================================================ +11:12:52 ============================================================================ +11:12:52 Slot Id : <42> +11:12:52 Transaction Type : RESPONSE +11:12:52 Received From : +11:12:52 ============================================================================ +11:12:52 FNo. Len. Field Value +11:12:52 ============================================================================ +11:12:52 [ 1] [ 4] [0210] +11:12:52 [ 2] [ 16] [6213548000509206] +11:12:52 [ 3] [ 6] [302000] +11:12:52 [ 4] [ 12] [000000000000] +11:12:52 [ 7] [ 10] [0320111043] +11:12:52 [ 11] [ 6] [940541] +11:12:52 [ 12] [ 6] [111043] +11:12:52 [ 13] [ 4] [0320] +11:12:52 [ 15] [ 4] [0320] +11:12:52 [ 18] [ 4] [6011] +11:12:52 [ 19] [ 3] [418] +11:12:52 [ 32] [ 6] [668899] +11:12:52 [ 35] [ 32] [6213548000509206=181112010920283] +11:12:52 [ 37] [ 12] [507900329873] +11:12:52 [ 38] [ 6] [480404] +11:12:52 [ 39] [ 2] [00] +11:12:52 [ 41] [ 8] [03013003] +11:12:52 [ 49] [ 3] [418] +11:12:52 [ 54] [ 40] [2001418C0006669035472002418C000666903547] +11:12:52 ============================================================================ +11:12:52 Sending to : +11:12:52 ============================================================================ +11:12:52 + + +waiting on router queue for slot.... +11:12:54 ============================================================================ +11:12:54 Slot Id : <42> +11:12:54 Transaction Type : RESPONSE +11:12:54 Received From : +11:12:54 ============================================================================ +11:12:54 FNo. Len. Field Value +11:12:54 ============================================================================ +11:12:54 [ 1] [ 4] [0210] +11:12:54 [ 2] [ 16] [6213548000509206] +11:12:54 [ 3] [ 6] [302000] +11:12:54 [ 4] [ 12] [000000000000] +11:12:54 [ 7] [ 10] [0320111043] +11:12:54 [ 11] [ 6] [940541] +11:12:54 [ 12] [ 6] [111043] +11:12:54 [ 13] [ 4] [0320] +11:12:54 [ 15] [ 4] [0320] +11:12:54 [ 18] [ 4] [6011] +11:12:54 [ 19] [ 3] [418] +11:12:54 [ 32] [ 6] [668899] +11:12:54 [ 35] [ 32] [6213548000509206=181112010920283] +11:12:54 [ 37] [ 12] [507900329873] +11:12:54 [ 38] [ 6] [480404] +11:12:54 [ 39] [ 2] [00] +11:12:54 [ 41] [ 8] [03013003] +11:12:54 [ 49] [ 3] [418] +11:12:54 [ 54] [ 40] [2001418C0006669035472002418C000666903547] +11:12:54 ============================================================================ +11:12:54 Calculate Source COMM Id = 4 +11:12:54 ============================================================================ +11:12:54 + + +waiting on router queue for slot.... +11:13:03 ============================================================================ +11:13:03 Slot Id : <34> +11:13:03 Transaction Type : REQUEST +11:13:03 Received From : +11:13:03 ============================================================================ +11:13:03 FNo. Len. Field Value +11:13:03 ============================================================================ +11:13:03 [ 1] [ 4] [0800] +11:13:03 [ 7] [ 10] [0320041210] +11:13:03 [ 11] [ 6] [156035] +11:13:03 [ 70] [ 3] [301] +11:13:03 ============================================================================ +11:13:03 + + +waiting on router queue for slot.... +11:13:03 Sending to : +11:13:03 ============================================================================ +11:13:03 ============================================================================ +11:13:03 Slot Id : <34> +11:13:03 Transaction Type : RESPONSE +11:13:03 Received From : +11:13:03 ============================================================================ +11:13:03 FNo. Len. Field Value +11:13:03 ============================================================================ +11:13:03 [ 1] [ 4] [0810] +11:13:03 [ 7] [ 10] [0320041210] +11:13:03 [ 11] [ 6] [156035] +11:13:03 [ 39] [ 2] [00] +11:13:03 [ 70] [ 3] [301] +11:13:03 ============================================================================ +11:13:03 Calculate Source COMM Id = 2 +11:13:03 ============================================================================ +11:13:03 + + +waiting on router queue for slot.... +11:13:15 ============================================================================ +11:13:15 Slot Id : <86> +11:13:15 Transaction Type : REQUEST +11:13:15 Received From : +11:13:15 ============================================================================ +11:13:15 FNo. Len. Field Value +11:13:15 ============================================================================ +11:13:15 [ 1] [ 4] [0200] +11:13:15 [ 2] [ 16] [6213548000509206] +11:13:15 [ 3] [ 6] [302000] +11:13:15 [ 4] [ 12] [000000000000] +11:13:15 [ 7] [ 10] [0320111106] +11:13:15 [ 11] [ 6] [940563] +11:13:15 [ 12] [ 6] [111106] +11:13:15 [ 13] [ 4] [0320] +11:13:15 [ 15] [ 4] [0320] +11:13:15 [ 18] [ 4] [6011] +11:13:15 [ 19] [ 3] [418] +11:13:15 [ 22] [ 3] [021] +11:13:15 [ 25] [ 2] [01] +11:13:15 [ 28] [ 9] [D00000000] +11:13:15 [ 32] [ 6] [668899] +11:13:15 [ 35] [ 32] [6213548000509206=181112010920283] +11:13:15 [ 37] [ 12] [507900329874] +11:13:15 [ 41] [ 8] [03013003] +11:13:15 [ 42] [ 15] [APT ] +11:13:15 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:13:15 [ 49] [ 3] [418] +11:13:15 [ 52] [ 16] [BF75F8749AA47306] +11:13:15 ============================================================================ +11:13:15 + + +waiting on router queue for slot.... +11:13:15 Sending to : +11:13:15 ============================================================================ +11:13:15 Sending to : +11:13:15 ============================================================================ +11:13:15 ============================================================================ +11:13:15 Slot Id : <86> +11:13:15 Transaction Type : REQUEST +11:13:15 Received From : +11:13:15 ============================================================================ +11:13:15 FNo. Len. Field Value +11:13:15 ============================================================================ +11:13:15 [ 1] [ 4] [0200] +11:13:15 [ 2] [ 16] [6213548000509206] +11:13:15 [ 3] [ 6] [302000] +11:13:15 [ 4] [ 12] [000000000000] +11:13:15 [ 7] [ 10] [0320111106] +11:13:15 [ 11] [ 6] [940563] +11:13:15 [ 12] [ 6] [111106] +11:13:15 [ 13] [ 4] [0320] +11:13:15 [ 15] [ 4] [0320] +11:13:15 [ 18] [ 4] [6011] +11:13:15 [ 19] [ 3] [418] +11:13:15 [ 22] [ 3] [021] +11:13:15 [ 25] [ 2] [01] +11:13:15 [ 28] [ 9] [D00000000] +11:13:15 [ 32] [ 6] [668899] +11:13:15 [ 35] [ 32] [6213548000509206=181112010920283] +11:13:15 [ 37] [ 12] [507900329874] +11:13:15 [ 41] [ 8] [03013003] +11:13:15 [ 42] [ 15] [APT ] +11:13:15 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:13:15 [ 49] [ 3] [418] +11:13:15 [ 52] [ 16] [BF75F8749AA47306] +11:13:15 ============================================================================ +11:13:15 + + +waiting on router queue for slot.... +11:13:15 Sending to : +11:13:15 ============================================================================ +11:13:15 ============================================================================ +11:13:15 Slot Id : <86> +11:13:15 Transaction Type : REQUEST +11:13:15 Received From : +11:13:15 ============================================================================ +11:13:15 FNo. Len. Field Value +11:13:15 ============================================================================ +11:13:15 [ 1] [ 4] [0200] +11:13:15 [ 2] [ 16] [6213548000509206] +11:13:15 [ 3] [ 6] [302000] +11:13:15 [ 4] [ 12] [000000000000] +11:13:15 [ 7] [ 10] [0320111106] +11:13:15 [ 11] [ 6] [940563] +11:13:15 [ 12] [ 6] [111106] +11:13:15 [ 13] [ 4] [0320] +11:13:15 [ 15] [ 4] [0320] +11:13:15 [ 18] [ 4] [6011] +11:13:15 [ 19] [ 3] [418] +11:13:15 [ 22] [ 3] [021] +11:13:15 [ 25] [ 2] [01] +11:13:15 [ 28] [ 9] [D00000000] +11:13:15 [ 32] [ 6] [668899] +11:13:15 [ 35] [ 32] [6213548000509206=181112010920283] +11:13:15 [ 37] [ 12] [507900329874] +11:13:15 [ 41] [ 8] [03013003] +11:13:15 [ 42] [ 15] [APT ] +11:13:15 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:13:15 [ 49] [ 3] [418] +11:13:15 [ 52] [ 16] [A78B4DB47D419F13] +11:13:15 ============================================================================ +11:13:15 + + +waiting on router queue for slot.... +11:13:15 Sending to : <0> +11:13:15 ============================================================================ +11:13:15 ============================================================================ +11:13:15 Slot Id : <86> +11:13:15 Transaction Type : RESPONSE +11:13:15 Received From : +11:13:15 ============================================================================ +11:13:15 FNo. Len. Field Value +11:13:15 ============================================================================ +11:13:15 [ 1] [ 4] [0210] +11:13:15 [ 2] [ 16] [6213548000509206] +11:13:15 [ 3] [ 6] [302000] +11:13:15 [ 4] [ 12] [000000000000] +11:13:15 [ 7] [ 10] [0320111106] +11:13:15 [ 11] [ 6] [940563] +11:13:15 [ 12] [ 6] [111106] +11:13:15 [ 13] [ 4] [0320] +11:13:15 [ 15] [ 4] [0320] +11:13:15 [ 18] [ 4] [6011] +11:13:15 [ 19] [ 3] [418] +11:13:15 [ 32] [ 6] [668899] +11:13:15 [ 35] [ 32] [6213548000509206=181112010920283] +11:13:15 [ 37] [ 12] [507900329874] +11:13:15 [ 38] [ 6] [513250] +11:13:15 [ 39] [ 2] [00] +11:13:15 [ 41] [ 8] [03013003] +11:13:15 [ 49] [ 3] [418] +11:13:15 [ 54] [ 40] [2001418C0006669035472002418C000666903547] +11:13:15 ============================================================================ +11:13:15 Sending to : +11:13:15 ============================================================================ +11:13:15 + + +waiting on router queue for slot.... +11:13:17 ============================================================================ +11:13:17 Slot Id : <86> +11:13:17 Transaction Type : RESPONSE +11:13:17 Received From : +11:13:17 ============================================================================ +11:13:17 FNo. Len. Field Value +11:13:17 ============================================================================ +11:13:17 [ 1] [ 4] [0210] +11:13:17 [ 2] [ 16] [6213548000509206] +11:13:17 [ 3] [ 6] [302000] +11:13:17 [ 4] [ 12] [000000000000] +11:13:17 [ 7] [ 10] [0320111106] +11:13:17 [ 11] [ 6] [940563] +11:13:17 [ 12] [ 6] [111106] +11:13:17 [ 13] [ 4] [0320] +11:13:17 [ 15] [ 4] [0320] +11:13:17 [ 18] [ 4] [6011] +11:13:17 [ 19] [ 3] [418] +11:13:17 [ 32] [ 6] [668899] +11:13:17 [ 35] [ 32] [6213548000509206=181112010920283] +11:13:17 [ 37] [ 12] [507900329874] +11:13:17 [ 38] [ 6] [513250] +11:13:17 [ 39] [ 2] [00] +11:13:17 [ 41] [ 8] [03013003] +11:13:17 [ 49] [ 3] [418] +11:13:17 [ 54] [ 40] [2001418C0006669035472002418C000666903547] +11:13:17 ============================================================================ +11:13:17 Calculate Source COMM Id = 4 +11:13:17 ============================================================================ +11:13:17 + + +waiting on router queue for slot.... +11:13:19 ============================================================================ +11:13:19 Slot Id : <49> +11:13:19 Transaction Type : REQUEST +11:13:19 Received From : +11:13:19 ============================================================================ +11:13:19 FNo. Len. Field Value +11:13:19 ============================================================================ +11:13:19 [ 1] [ 4] [0800] +11:13:19 [ 7] [ 10] [0320041226] +11:13:19 [ 11] [ 6] [156036] +11:13:19 [ 70] [ 3] [301] +11:13:19 ============================================================================ +11:13:19 + + +waiting on router queue for slot.... +11:13:19 Sending to : +11:13:19 ============================================================================ +11:13:19 ============================================================================ +11:13:19 Slot Id : <49> +11:13:19 Transaction Type : RESPONSE +11:13:19 Received From : +11:13:19 ============================================================================ +11:13:19 FNo. Len. Field Value +11:13:19 ============================================================================ +11:13:19 [ 1] [ 4] [0810] +11:13:19 [ 7] [ 10] [0320041226] +11:13:19 [ 11] [ 6] [156036] +11:13:19 [ 39] [ 2] [00] +11:13:19 [ 70] [ 3] [301] +11:13:19 ============================================================================ +11:13:19 Calculate Source COMM Id = 2 +11:13:19 ============================================================================ +11:13:19 + + +waiting on router queue for slot.... +11:13:20 ============================================================================ +11:13:20 Slot Id : <89> +11:13:20 Transaction Type : REQUEST +11:13:20 Received From : +11:13:20 ============================================================================ +11:13:20 FNo. Len. Field Value +11:13:20 ============================================================================ +11:13:20 [ 1] [ 4] [0800] +11:13:20 [ 2] [ 5] [02531] +11:13:20 [ 3] [ 6] [579118] +11:13:20 [ 7] [ 10] [0320041320] +11:13:20 [ 11] [ 6] [807063] +11:13:20 [ 15] [ 10] [0320041320] +11:13:20 [ 37] [ 11] [57911807063] +11:13:20 [ 70] [ 3] [001] +11:13:20 ============================================================================ +11:13:20 + + +waiting on router queue for slot.... +11:13:20 ============================================================================ +11:13:20 Slot Id : <89> +11:13:20 Transaction Type : RESPONSE +11:13:20 Received From : +11:13:20 ============================================================================ +11:13:20 FNo. Len. Field Value +11:13:20 ============================================================================ +11:13:20 [ 1] [ 4] [0810] +11:13:20 [ 7] [ 10] [0320041320] +11:13:20 [ 11] [ 6] [807063] +11:13:20 [ 15] [ 4] [0320] +11:13:20 [ 37] [ 12] [57911807063] +11:13:20 [ 39] [ 2] [00] +11:13:20 [ 70] [ 3] [001] +11:13:20 ============================================================================ +11:13:20 Sending to : +11:13:20 ============================================================================ +11:13:20 + + +waiting on router queue for slot.... +11:13:21 ============================================================================ +11:13:21 Slot Id : <88> +11:13:21 Transaction Type : REQUEST +11:13:21 Received From : +11:13:21 ============================================================================ +11:13:21 FNo. Len. Field Value +11:13:21 ============================================================================ +11:13:21 [ 1] [ 4] [0200] +11:13:21 [ 2] [ 16] [6213545000822449] +11:13:21 [ 3] [ 6] [010000] +11:13:21 [ 4] [ 12] [000100000000] +11:13:21 [ 7] [ 10] [0320041228] +11:13:21 [ 11] [ 6] [268399] +11:13:21 [ 12] [ 6] [111228] +11:13:21 [ 13] [ 4] [0320] +11:13:21 [ 14] [ 4] [4912] +11:13:21 [ 15] [ 4] [0320] +11:13:21 [ 18] [ 4] [6011] +11:13:21 [ 19] [ 3] [418] +11:13:21 [ 22] [ 3] [021] +11:13:21 [ 25] [ 2] [01] +11:13:21 [ 28] [ 9] [D00002000] +11:13:21 [ 32] [ 6] [180893] +11:13:21 [ 35] [ 32] [6213545000822449=491212012244968] +11:13:21 [ 37] [ 12] [507904268399] +11:13:21 [ 41] [ 8] [0262PSLB] +11:13:21 [ 42] [ 15] [999999 ] +11:13:21 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:13:21 [ 49] [ 3] [418] +11:13:21 [ 52] [ 16] [9A308E70A3438E4A] +11:13:21 ============================================================================ +11:13:21 + + +waiting on router queue for slot.... +11:13:21 Sending to : +11:13:21 ============================================================================ +11:13:21 Sending to : +11:13:21 ============================================================================ +11:13:21 ============================================================================ +11:13:21 Slot Id : <88> +11:13:21 Transaction Type : REQUEST +11:13:21 Received From : +11:13:21 ============================================================================ +11:13:21 FNo. Len. Field Value +11:13:21 ============================================================================ +11:13:21 [ 1] [ 4] [0200] +11:13:21 [ 2] [ 16] [6213545000822449] +11:13:21 [ 3] [ 6] [010000] +11:13:21 [ 4] [ 12] [000100000000] +11:13:21 [ 7] [ 10] [0320041228] +11:13:21 [ 11] [ 6] [268399] +11:13:21 [ 12] [ 6] [111228] +11:13:21 [ 13] [ 4] [0320] +11:13:21 [ 14] [ 4] [4912] +11:13:21 [ 15] [ 4] [0320] +11:13:21 [ 18] [ 4] [6011] +11:13:21 [ 19] [ 3] [418] +11:13:21 [ 22] [ 3] [021] +11:13:21 [ 25] [ 2] [01] +11:13:21 [ 28] [ 9] [D00002000] +11:13:21 [ 32] [ 6] [180893] +11:13:21 [ 35] [ 32] [6213545000822449=491212012244968] +11:13:21 [ 37] [ 12] [507904268399] +11:13:21 [ 41] [ 8] [0262PSLB] +11:13:21 [ 42] [ 15] [999999 ] +11:13:21 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:13:21 [ 49] [ 3] [418] +11:13:21 [ 52] [ 16] [9A308E70A3438E4A] +11:13:21 ============================================================================ +11:13:21 + + +waiting on router queue for slot.... +11:13:21 Sending to : +11:13:21 ============================================================================ +11:13:21 ============================================================================ +11:13:21 Slot Id : <88> +11:13:21 Transaction Type : REQUEST +11:13:21 Received From : +11:13:21 ============================================================================ +11:13:21 FNo. Len. Field Value +11:13:21 ============================================================================ +11:13:21 [ 1] [ 4] [0200] +11:13:21 [ 2] [ 16] [6213545000822449] +11:13:21 [ 3] [ 6] [010000] +11:13:21 [ 4] [ 12] [000100000000] +11:13:21 [ 7] [ 10] [0320041228] +11:13:21 [ 11] [ 6] [268399] +11:13:21 [ 12] [ 6] [111228] +11:13:21 [ 13] [ 4] [0320] +11:13:21 [ 14] [ 4] [4912] +11:13:21 [ 15] [ 4] [0320] +11:13:21 [ 18] [ 4] [6011] +11:13:21 [ 19] [ 3] [418] +11:13:21 [ 22] [ 3] [021] +11:13:21 [ 25] [ 2] [01] +11:13:21 [ 28] [ 9] [D00002000] +11:13:21 [ 32] [ 6] [180893] +11:13:21 [ 35] [ 32] [6213545000822449=491212012244968] +11:13:21 [ 37] [ 12] [507904268399] +11:13:21 [ 41] [ 8] [0262PSLB] +11:13:21 [ 42] [ 15] [999999 ] +11:13:21 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:13:21 [ 49] [ 3] [418] +11:13:21 [ 52] [ 16] [7599475DBEB43DE2] +11:13:21 ============================================================================ +11:13:21 + + +waiting on router queue for slot.... +11:13:21 Sending to : <0> +11:13:21 ============================================================================ +11:13:22 ============================================================================ +11:13:22 Slot Id : <88> +11:13:22 Transaction Type : RESPONSE +11:13:22 Received From : +11:13:22 ============================================================================ +11:13:22 FNo. Len. Field Value +11:13:22 ============================================================================ +11:13:22 [ 1] [ 4] [0210] +11:13:22 [ 2] [ 16] [6213545000822449] +11:13:22 [ 3] [ 6] [010000] +11:13:22 [ 4] [ 12] [000100000000] +11:13:22 [ 7] [ 10] [0320041228] +11:13:22 [ 11] [ 6] [268399] +11:13:22 [ 12] [ 6] [111228] +11:13:22 [ 13] [ 4] [0320] +11:13:22 [ 15] [ 4] [0320] +11:13:22 [ 18] [ 4] [6011] +11:13:22 [ 19] [ 3] [418] +11:13:22 [ 32] [ 6] [180893] +11:13:22 [ 35] [ 32] [6213545000822449=491212012244968] +11:13:22 [ 37] [ 12] [507904268399] +11:13:22 [ 38] [ 6] [599800] +11:13:22 [ 39] [ 2] [00] +11:13:22 [ 41] [ 8] [0262PSLB] +11:13:22 [ 49] [ 3] [418] +11:13:22 [ 54] [ 40] [0001418C0000107886220002418C000010788622] +11:13:22 ============================================================================ +11:13:22 Sending to : +11:13:22 ============================================================================ +11:13:22 + + +waiting on router queue for slot.... +11:13:23 ============================================================================ +11:13:23 Slot Id : <88> +11:13:23 Transaction Type : RESPONSE +11:13:23 Received From : +11:13:23 ============================================================================ +11:13:23 FNo. Len. Field Value +11:13:23 ============================================================================ +11:13:23 [ 1] [ 4] [0210] +11:13:23 [ 2] [ 16] [6213545000822449] +11:13:23 [ 3] [ 6] [010000] +11:13:23 [ 4] [ 12] [000100000000] +11:13:23 [ 7] [ 10] [0320041228] +11:13:23 [ 11] [ 6] [268399] +11:13:23 [ 12] [ 6] [111228] +11:13:23 [ 13] [ 4] [0320] +11:13:23 [ 15] [ 4] [0320] +11:13:23 [ 18] [ 4] [6011] +11:13:23 [ 19] [ 3] [418] +11:13:23 [ 32] [ 6] [180893] +11:13:23 [ 35] [ 32] [6213545000822449=491212012244968] +11:13:23 [ 37] [ 12] [507904268399] +11:13:23 [ 38] [ 6] [599800] +11:13:23 [ 39] [ 2] [00] +11:13:23 [ 41] [ 8] [0262PSLB] +11:13:23 [ 49] [ 3] [418] +11:13:23 [ 54] [ 40] [0001418C0000107886220002418C000010788622] +11:13:23 ============================================================================ +11:13:23 Calculate Source COMM Id = 2 +11:13:23 ============================================================================ +11:13:23 + + +waiting on router queue for slot.... +11:13:24 ============================================================================ +11:13:24 Slot Id : <59> +11:13:24 Transaction Type : REQUEST +11:13:24 Received From : +11:13:24 ============================================================================ +11:13:24 FNo. Len. Field Value +11:13:24 ============================================================================ +11:13:24 [ 1] [ 4] [0200] +11:13:24 [ 2] [ 16] [6213543000081207] +11:13:24 [ 3] [ 6] [012000] +11:13:24 [ 4] [ 12] [000035000000] +11:13:24 [ 7] [ 10] [0320041231] +11:13:24 [ 11] [ 6] [268401] +11:13:24 [ 12] [ 6] [111231] +11:13:24 [ 13] [ 4] [0320] +11:13:24 [ 14] [ 4] [4912] +11:13:24 [ 15] [ 4] [0320] +11:13:24 [ 18] [ 4] [6011] +11:13:24 [ 19] [ 3] [418] +11:13:24 [ 22] [ 3] [021] +11:13:24 [ 25] [ 2] [01] +11:13:24 [ 28] [ 9] [D00002000] +11:13:24 [ 32] [ 6] [180893] +11:13:24 [ 35] [ 32] [6213543000081207=491212018120295] +11:13:24 [ 37] [ 12] [507904268401] +11:13:24 [ 41] [ 8] [0527LPBL] +11:13:24 [ 42] [ 15] [999999 ] +11:13:24 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +11:13:24 [ 49] [ 3] [418] +11:13:24 [ 52] [ 16] [9205F0886506B50A] +11:13:24 ============================================================================ +11:13:24 + + +waiting on router queue for slot.... +11:13:24 Sending to : +11:13:24 ============================================================================ +11:13:24 Sending to : +11:13:24 ============================================================================ +11:13:25 ============================================================================ +11:13:25 Slot Id : <59> +11:13:25 Transaction Type : REQUEST +11:13:25 Received From : +11:13:25 ============================================================================ +11:13:25 FNo. Len. Field Value +11:13:25 ============================================================================ +11:13:25 [ 1] [ 4] [0200] +11:13:25 [ 2] [ 16] [6213543000081207] +11:13:25 [ 3] [ 6] [012000] +11:13:25 [ 4] [ 12] [000035000000] +11:13:25 [ 7] [ 10] [0320041231] +11:13:25 [ 11] [ 6] [268401] +11:13:25 [ 12] [ 6] [111231] +11:13:25 [ 13] [ 4] [0320] +11:13:25 [ 14] [ 4] [4912] +11:13:25 [ 15] [ 4] [0320] +11:13:25 [ 18] [ 4] [6011] +11:13:25 [ 19] [ 3] [418] +11:13:25 [ 22] [ 3] [021] +11:13:25 [ 25] [ 2] [01] +11:13:25 [ 28] [ 9] [D00002000] +11:13:25 [ 32] [ 6] [180893] +11:13:25 [ 35] [ 32] [6213543000081207=491212018120295] +11:13:25 [ 37] [ 12] [507904268401] +11:13:25 [ 41] [ 8] [0527LPBL] +11:13:25 [ 42] [ 15] [999999 ] +11:13:25 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +11:13:25 [ 49] [ 3] [418] +11:13:25 [ 52] [ 16] [9205F0886506B50A] +11:13:25 ============================================================================ +11:13:25 + + +waiting on router queue for slot.... +11:13:25 Sending to : +11:13:25 ============================================================================ +11:13:25 ============================================================================ +11:13:25 Slot Id : <59> +11:13:25 Transaction Type : REQUEST +11:13:25 Received From : +11:13:25 ============================================================================ +11:13:25 FNo. Len. Field Value +11:13:25 ============================================================================ +11:13:25 [ 1] [ 4] [0200] +11:13:25 [ 2] [ 16] [6213543000081207] +11:13:25 [ 3] [ 6] [012000] +11:13:25 [ 4] [ 12] [000035000000] +11:13:25 [ 7] [ 10] [0320041231] +11:13:25 [ 11] [ 6] [268401] +11:13:25 [ 12] [ 6] [111231] +11:13:25 [ 13] [ 4] [0320] +11:13:25 [ 14] [ 4] [4912] +11:13:25 [ 15] [ 4] [0320] +11:13:25 [ 18] [ 4] [6011] +11:13:25 [ 19] [ 3] [418] +11:13:25 [ 22] [ 3] [021] +11:13:25 [ 25] [ 2] [01] +11:13:25 [ 28] [ 9] [D00002000] +11:13:25 [ 32] [ 6] [180893] +11:13:25 [ 35] [ 32] [6213543000081207=491212018120295] +11:13:25 [ 37] [ 12] [507904268401] +11:13:25 [ 41] [ 8] [0527LPBL] +11:13:25 [ 42] [ 15] [999999 ] +11:13:25 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +11:13:25 [ 49] [ 3] [418] +11:13:25 [ 52] [ 16] [DE26A3EEC3FD5068] +11:13:25 ============================================================================ +11:13:25 + + +waiting on router queue for slot.... +11:13:25 Sending to : <0> +11:13:25 ============================================================================ +11:13:26 ============================================================================ +11:13:26 Slot Id : <59> +11:13:26 Transaction Type : RESPONSE +11:13:26 Received From : +11:13:26 ============================================================================ +11:13:26 FNo. Len. Field Value +11:13:26 ============================================================================ +11:13:26 [ 1] [ 4] [0210] +11:13:26 [ 2] [ 16] [6213543000081207] +11:13:26 [ 3] [ 6] [012000] +11:13:26 [ 4] [ 12] [000035000000] +11:13:26 [ 7] [ 10] [0320041231] +11:13:26 [ 11] [ 6] [268401] +11:13:26 [ 12] [ 6] [111231] +11:13:26 [ 13] [ 4] [0320] +11:13:26 [ 15] [ 4] [0320] +11:13:26 [ 18] [ 4] [6011] +11:13:26 [ 19] [ 3] [418] +11:13:26 [ 32] [ 6] [180893] +11:13:26 [ 35] [ 32] [6213543000081207=491212018120295] +11:13:26 [ 37] [ 12] [507904268401] +11:13:26 [ 38] [ 6] [918097] +11:13:26 [ 39] [ 2] [00] +11:13:26 [ 41] [ 8] [0527LPBL] +11:13:26 [ 49] [ 3] [418] +11:13:26 [ 54] [ 40] [2001418C0000094661282002418C000009466128] +11:13:26 ============================================================================ +11:13:26 Sending to : +11:13:26 ============================================================================ +11:13:26 + + +waiting on router queue for slot.... +11:13:28 ============================================================================ +11:13:28 Slot Id : <59> +11:13:28 Transaction Type : RESPONSE +11:13:28 Received From : +11:13:28 ============================================================================ +11:13:28 FNo. Len. Field Value +11:13:28 ============================================================================ +11:13:28 [ 1] [ 4] [0210] +11:13:28 [ 2] [ 16] [6213543000081207] +11:13:28 [ 3] [ 6] [012000] +11:13:28 [ 4] [ 12] [000035000000] +11:13:28 [ 7] [ 10] [0320041231] +11:13:28 [ 11] [ 6] [268401] +11:13:28 [ 12] [ 6] [111231] +11:13:28 [ 13] [ 4] [0320] +11:13:28 [ 15] [ 4] [0320] +11:13:28 [ 18] [ 4] [6011] +11:13:28 [ 19] [ 3] [418] +11:13:28 [ 32] [ 6] [180893] +11:13:28 [ 35] [ 32] [6213543000081207=491212018120295] +11:13:28 [ 37] [ 12] [507904268401] +11:13:28 [ 38] [ 6] [918097] +11:13:28 [ 39] [ 2] [00] +11:13:28 [ 41] [ 8] [0527LPBL] +11:13:28 [ 49] [ 3] [418] +11:13:28 [ 54] [ 40] [2001418C0000094661282002418C000009466128] +11:13:28 ============================================================================ +11:13:28 Calculate Source COMM Id = 2 +11:13:28 ============================================================================ +11:13:28 + + +waiting on router queue for slot.... +11:13:39 ============================================================================ +11:13:39 Slot Id : <5> +11:13:39 Transaction Type : REQUEST +11:13:39 Received From : +11:13:39 ============================================================================ +11:13:39 FNo. Len. Field Value +11:13:39 ============================================================================ +11:13:39 [ 1] [ 4] [0200] +11:13:39 [ 2] [ 16] [6213548000509206] +11:13:39 [ 3] [ 6] [010000] +11:13:39 [ 4] [ 12] [000100000000] +11:13:39 [ 7] [ 10] [0320111130] +11:13:39 [ 11] [ 6] [940591] +11:13:39 [ 12] [ 6] [111130] +11:13:39 [ 13] [ 4] [0320] +11:13:39 [ 15] [ 4] [0320] +11:13:39 [ 18] [ 4] [6011] +11:13:39 [ 19] [ 3] [418] +11:13:39 [ 22] [ 3] [021] +11:13:39 [ 25] [ 2] [01] +11:13:39 [ 28] [ 9] [D00002000] +11:13:39 [ 32] [ 6] [668899] +11:13:39 [ 35] [ 32] [6213548000509206=181112010920283] +11:13:39 [ 37] [ 12] [507900329875] +11:13:39 [ 41] [ 8] [03013003] +11:13:39 [ 42] [ 15] [APT ] +11:13:39 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:13:39 [ 49] [ 3] [418] +11:13:39 [ 52] [ 16] [BF75F8749AA47306] +11:13:39 ============================================================================ +11:13:39 + + +waiting on router queue for slot.... +11:13:39 Sending to : +11:13:39 ============================================================================ +11:13:39 Sending to : +11:13:39 ============================================================================ +11:13:39 ============================================================================ +11:13:39 Slot Id : <5> +11:13:39 Transaction Type : REQUEST +11:13:39 Received From : +11:13:39 ============================================================================ +11:13:39 FNo. Len. Field Value +11:13:39 ============================================================================ +11:13:39 [ 1] [ 4] [0200] +11:13:39 [ 2] [ 16] [6213548000509206] +11:13:39 [ 3] [ 6] [010000] +11:13:39 [ 4] [ 12] [000100000000] +11:13:39 [ 7] [ 10] [0320111130] +11:13:39 [ 11] [ 6] [940591] +11:13:39 [ 12] [ 6] [111130] +11:13:39 [ 13] [ 4] [0320] +11:13:39 [ 15] [ 4] [0320] +11:13:39 [ 18] [ 4] [6011] +11:13:39 [ 19] [ 3] [418] +11:13:39 [ 22] [ 3] [021] +11:13:39 [ 25] [ 2] [01] +11:13:39 [ 28] [ 9] [D00002000] +11:13:39 [ 32] [ 6] [668899] +11:13:39 [ 35] [ 32] [6213548000509206=181112010920283] +11:13:39 [ 37] [ 12] [507900329875] +11:13:39 [ 41] [ 8] [03013003] +11:13:39 [ 42] [ 15] [APT ] +11:13:39 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:13:39 [ 49] [ 3] [418] +11:13:39 [ 52] [ 16] [BF75F8749AA47306] +11:13:39 ============================================================================ +11:13:39 + + +waiting on router queue for slot.... +11:13:39 Sending to : +11:13:39 ============================================================================ +11:13:39 ============================================================================ +11:13:39 Slot Id : <5> +11:13:39 Transaction Type : REQUEST +11:13:39 Received From : +11:13:39 ============================================================================ +11:13:39 FNo. Len. Field Value +11:13:39 ============================================================================ +11:13:39 [ 1] [ 4] [0200] +11:13:39 [ 2] [ 16] [6213548000509206] +11:13:39 [ 3] [ 6] [010000] +11:13:39 [ 4] [ 12] [000100000000] +11:13:39 [ 7] [ 10] [0320111130] +11:13:39 [ 11] [ 6] [940591] +11:13:39 [ 12] [ 6] [111130] +11:13:39 [ 13] [ 4] [0320] +11:13:39 [ 15] [ 4] [0320] +11:13:39 [ 18] [ 4] [6011] +11:13:39 [ 19] [ 3] [418] +11:13:39 [ 22] [ 3] [021] +11:13:39 [ 25] [ 2] [01] +11:13:39 [ 28] [ 9] [D00002000] +11:13:39 [ 32] [ 6] [668899] +11:13:39 [ 35] [ 32] [6213548000509206=181112010920283] +11:13:39 [ 37] [ 12] [507900329875] +11:13:39 [ 41] [ 8] [03013003] +11:13:39 [ 42] [ 15] [APT ] +11:13:39 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:13:39 [ 49] [ 3] [418] +11:13:39 [ 52] [ 16] [A78B4DB47D419F13] +11:13:39 ============================================================================ +11:13:39 + + +waiting on router queue for slot.... +11:13:39 Sending to : <0> +11:13:39 ============================================================================ +11:13:40 ============================================================================ +11:13:40 Slot Id : <5> +11:13:40 Transaction Type : RESPONSE +11:13:40 Received From : +11:13:40 ============================================================================ +11:13:40 FNo. Len. Field Value +11:13:40 ============================================================================ +11:13:40 [ 1] [ 4] [0210] +11:13:40 [ 2] [ 16] [6213548000509206] +11:13:40 [ 3] [ 6] [010000] +11:13:40 [ 4] [ 12] [000100000000] +11:13:40 [ 7] [ 10] [0320111130] +11:13:40 [ 11] [ 6] [940591] +11:13:40 [ 12] [ 6] [111130] +11:13:40 [ 13] [ 4] [0320] +11:13:40 [ 15] [ 4] [0320] +11:13:40 [ 18] [ 4] [6011] +11:13:40 [ 19] [ 3] [418] +11:13:40 [ 32] [ 6] [668899] +11:13:40 [ 35] [ 32] [6213548000509206=181112010920283] +11:13:40 [ 37] [ 12] [507900329875] +11:13:40 [ 38] [ 6] [764475] +11:13:40 [ 39] [ 2] [00] +11:13:40 [ 41] [ 8] [03013003] +11:13:40 [ 49] [ 3] [418] +11:13:40 [ 54] [ 40] [0001418C0005667035470002418C000566703547] +11:13:40 ============================================================================ +11:13:40 Sending to : +11:13:40 ============================================================================ +11:13:40 + + +waiting on router queue for slot.... +11:13:40 ============================================================================ +11:13:40 Slot Id : <79> +11:13:40 Transaction Type : REQUEST +11:13:40 Received From : +11:13:40 ============================================================================ +11:13:40 FNo. Len. Field Value +11:13:40 ============================================================================ +11:13:40 [ 1] [ 4] [0800] +11:13:40 [ 7] [ 10] [0320041248] +11:13:40 [ 11] [ 6] [156037] +11:13:40 [ 70] [ 3] [301] +11:13:40 ============================================================================ +11:13:40 + + +waiting on router queue for slot.... +11:13:40 Sending to : +11:13:40 ============================================================================ +11:13:40 ============================================================================ +11:13:40 Slot Id : <79> +11:13:40 Transaction Type : RESPONSE +11:13:40 Received From : +11:13:40 ============================================================================ +11:13:40 FNo. Len. Field Value +11:13:40 ============================================================================ +11:13:40 [ 1] [ 4] [0810] +11:13:40 [ 7] [ 10] [0320041248] +11:13:40 [ 11] [ 6] [156037] +11:13:40 [ 39] [ 2] [00] +11:13:40 [ 70] [ 3] [301] +11:13:40 ============================================================================ +11:13:40 Calculate Source COMM Id = 2 +11:13:40 ============================================================================ +11:13:40 + + +waiting on router queue for slot.... +11:13:42 ============================================================================ +11:13:42 Slot Id : <5> +11:13:42 Transaction Type : RESPONSE +11:13:42 Received From : +11:13:42 ============================================================================ +11:13:42 FNo. Len. Field Value +11:13:42 ============================================================================ +11:13:42 [ 1] [ 4] [0210] +11:13:42 [ 2] [ 16] [6213548000509206] +11:13:42 [ 3] [ 6] [010000] +11:13:42 [ 4] [ 12] [000100000000] +11:13:42 [ 7] [ 10] [0320111130] +11:13:42 [ 11] [ 6] [940591] +11:13:42 [ 12] [ 6] [111130] +11:13:42 [ 13] [ 4] [0320] +11:13:42 [ 15] [ 4] [0320] +11:13:42 [ 18] [ 4] [6011] +11:13:42 [ 19] [ 3] [418] +11:13:42 [ 32] [ 6] [668899] +11:13:42 [ 35] [ 32] [6213548000509206=181112010920283] +11:13:42 [ 37] [ 12] [507900329875] +11:13:42 [ 38] [ 6] [764475] +11:13:42 [ 39] [ 2] [00] +11:13:42 [ 41] [ 8] [03013003] +11:13:42 [ 49] [ 3] [418] +11:13:42 [ 54] [ 40] [0001418C0005667035470002418C000566703547] +11:13:42 ============================================================================ +11:13:42 Calculate Source COMM Id = 4 +11:13:42 ============================================================================ +11:13:42 + + +waiting on router queue for slot.... +11:13:56 ============================================================================ +11:13:56 Slot Id : <84> +11:13:56 Transaction Type : REQUEST +11:13:56 Received From : +11:13:56 ============================================================================ +11:13:56 FNo. Len. Field Value +11:13:56 ============================================================================ +11:13:56 [ 1] [ 4] [0800] +11:13:56 [ 7] [ 10] [0320041304] +11:13:56 [ 11] [ 6] [156038] +11:13:56 [ 70] [ 3] [301] +11:13:56 ============================================================================ +11:13:56 + + +waiting on router queue for slot.... +11:13:56 Sending to : +11:13:56 ============================================================================ +11:13:56 ============================================================================ +11:13:56 Slot Id : <84> +11:13:56 Transaction Type : RESPONSE +11:13:56 Received From : +11:13:56 ============================================================================ +11:13:56 FNo. Len. Field Value +11:13:56 ============================================================================ +11:13:56 [ 1] [ 4] [0810] +11:13:56 [ 7] [ 10] [0320041304] +11:13:56 [ 11] [ 6] [156038] +11:13:56 [ 39] [ 2] [00] +11:13:56 [ 70] [ 3] [301] +11:13:56 ============================================================================ +11:13:56 Calculate Source COMM Id = 2 +11:13:56 ============================================================================ +11:13:56 + + +waiting on router queue for slot.... +11:14:00 ============================================================================ +11:14:00 Slot Id : <67> +11:14:00 Transaction Type : REQUEST +11:14:00 Received From : +11:14:00 ============================================================================ +11:14:00 FNo. Len. Field Value +11:14:00 ============================================================================ +11:14:00 [ 1] [ 4] [0800] +11:14:00 [ 7] [ 10] [0320041356] +11:14:00 [ 11] [ 6] [003154] +11:14:00 [ 37] [ 12] [507911003154] +11:14:00 [ 70] [ 3] [001] +11:14:00 ============================================================================ +11:14:00 + + +waiting on router queue for slot.... +11:14:00 Sending to : +11:14:00 ============================================================================ +11:14:00 ============================================================================ +11:14:00 Slot Id : <67> +11:14:00 Transaction Type : RESPONSE +11:14:00 Received From : +11:14:00 ============================================================================ +11:14:00 FNo. Len. Field Value +11:14:00 ============================================================================ +11:14:00 [ 1] [ 4] [0810] +11:14:00 [ 7] [ 10] [0320041356] +11:14:00 [ 11] [ 6] [003154] +11:14:00 [ 37] [ 12] [507911003154] +11:14:00 [ 39] [ 2] [00] +11:14:00 [ 70] [ 3] [001] +11:14:00 ============================================================================ +11:14:00 Calculate Source COMM Id = 0 +11:14:00 ============================================================================ +11:14:00 + + +waiting on router queue for slot.... +11:14:12 ============================================================================ +11:14:12 Slot Id : <62> +11:14:12 Transaction Type : REQUEST +11:14:12 Received From : +11:14:12 ============================================================================ +11:14:12 FNo. Len. Field Value +11:14:12 ============================================================================ +11:14:12 [ 1] [ 4] [0800] +11:14:12 [ 7] [ 10] [0320041320] +11:14:12 [ 11] [ 6] [156039] +11:14:12 [ 70] [ 3] [301] +11:14:12 ============================================================================ +11:14:12 + + +waiting on router queue for slot.... +11:14:12 Sending to : +11:14:12 ============================================================================ +11:14:12 ============================================================================ +11:14:12 Slot Id : <62> +11:14:12 Transaction Type : RESPONSE +11:14:12 Received From : +11:14:12 ============================================================================ +11:14:12 FNo. Len. Field Value +11:14:12 ============================================================================ +11:14:12 [ 1] [ 4] [0810] +11:14:12 [ 7] [ 10] [0320041320] +11:14:12 [ 11] [ 6] [156039] +11:14:12 [ 39] [ 2] [00] +11:14:12 [ 70] [ 3] [301] +11:14:12 ============================================================================ +11:14:12 Calculate Source COMM Id = 2 +11:14:12 ============================================================================ +11:14:12 + + +waiting on router queue for slot.... +11:14:22 ============================================================================ +11:14:22 Slot Id : <39> +11:14:22 Transaction Type : REQUEST +11:14:22 Received From : +11:14:22 ============================================================================ +11:14:22 FNo. Len. Field Value +11:14:22 ============================================================================ +11:14:22 [ 1] [ 4] [0800] +11:14:22 [ 2] [ 5] [02531] +11:14:22 [ 3] [ 6] [579118] +11:14:22 [ 7] [ 10] [0320041422] +11:14:22 [ 11] [ 6] [807064] +11:14:22 [ 15] [ 10] [0320041422] +11:14:22 [ 37] [ 11] [57911807064] +11:14:22 [ 70] [ 3] [001] +11:14:22 ============================================================================ +11:14:22 + + +waiting on router queue for slot.... +11:14:22 ============================================================================ +11:14:22 Slot Id : <39> +11:14:22 Transaction Type : RESPONSE +11:14:22 Received From : +11:14:22 ============================================================================ +11:14:22 FNo. Len. Field Value +11:14:22 ============================================================================ +11:14:22 [ 1] [ 4] [0810] +11:14:22 [ 7] [ 10] [0320041422] +11:14:22 [ 11] [ 6] [807064] +11:14:22 [ 15] [ 4] [0320] +11:14:22 [ 37] [ 12] [57911807064] +11:14:22 [ 39] [ 2] [00] +11:14:22 [ 70] [ 3] [001] +11:14:22 ============================================================================ +11:14:22 Sending to : +11:14:22 ============================================================================ +11:14:22 + + +waiting on router queue for slot.... +11:14:24 ============================================================================ +11:14:24 Slot Id : <51> +11:14:24 Transaction Type : REQUEST +11:14:24 Received From : +11:14:24 ============================================================================ +11:14:24 FNo. Len. Field Value +11:14:24 ============================================================================ +11:14:24 [ 1] [ 4] [0800] +11:14:24 [ 7] [ 10] [0320041331] +11:14:24 [ 11] [ 6] [156040] +11:14:24 [ 70] [ 3] [301] +11:14:24 ============================================================================ +11:14:24 + + +waiting on router queue for slot.... +11:14:24 Sending to : +11:14:24 ============================================================================ +11:14:24 ============================================================================ +11:14:24 Slot Id : <51> +11:14:24 Transaction Type : RESPONSE +11:14:24 Received From : +11:14:24 ============================================================================ +11:14:24 FNo. Len. Field Value +11:14:24 ============================================================================ +11:14:24 [ 1] [ 4] [0810] +11:14:24 [ 7] [ 10] [0320041331] +11:14:24 [ 11] [ 6] [156040] +11:14:24 [ 39] [ 2] [00] +11:14:24 [ 70] [ 3] [301] +11:14:24 ============================================================================ +11:14:24 Calculate Source COMM Id = 2 +11:14:24 ============================================================================ +11:14:24 + + +waiting on router queue for slot.... +11:14:39 ============================================================================ +11:14:39 Slot Id : <99> +11:14:39 Transaction Type : REQUEST +11:14:39 Received From : +11:14:39 ============================================================================ +11:14:39 FNo. Len. Field Value +11:14:39 ============================================================================ +11:14:39 [ 1] [ 4] [0800] +11:14:39 [ 7] [ 10] [0320041347] +11:14:39 [ 11] [ 6] [156041] +11:14:39 [ 70] [ 3] [301] +11:14:39 ============================================================================ +11:14:39 + + +waiting on router queue for slot.... +11:14:39 Sending to : +11:14:39 ============================================================================ +11:14:39 ============================================================================ +11:14:39 Slot Id : <99> +11:14:39 Transaction Type : RESPONSE +11:14:39 Received From : +11:14:39 ============================================================================ +11:14:39 FNo. Len. Field Value +11:14:39 ============================================================================ +11:14:39 [ 1] [ 4] [0810] +11:14:39 [ 7] [ 10] [0320041347] +11:14:39 [ 11] [ 6] [156041] +11:14:39 [ 39] [ 2] [00] +11:14:39 [ 70] [ 3] [301] +11:14:39 ============================================================================ +11:14:39 Calculate Source COMM Id = 2 +11:14:39 ============================================================================ +11:14:39 + + +waiting on router queue for slot.... +11:14:43 ============================================================================ +11:14:43 Slot Id : <64> +11:14:43 Transaction Type : REQUEST +11:14:43 Received From : +11:14:43 ============================================================================ +11:14:43 FNo. Len. Field Value +11:14:43 ============================================================================ +11:14:43 [ 1] [ 4] [0200] +11:14:43 [ 2] [ 16] [6213548000509206] +11:14:43 [ 3] [ 6] [010000] +11:14:43 [ 4] [ 12] [000100000000] +11:14:43 [ 7] [ 10] [0320111234] +11:14:43 [ 11] [ 6] [940641] +11:14:43 [ 12] [ 6] [111234] +11:14:43 [ 13] [ 4] [0320] +11:14:43 [ 15] [ 4] [0320] +11:14:43 [ 18] [ 4] [6011] +11:14:43 [ 19] [ 3] [418] +11:14:43 [ 22] [ 3] [021] +11:14:43 [ 25] [ 2] [01] +11:14:43 [ 28] [ 9] [D00002000] +11:14:43 [ 32] [ 6] [668899] +11:14:43 [ 35] [ 32] [6213548000509206=181112010920283] +11:14:43 [ 37] [ 12] [507900329877] +11:14:43 [ 41] [ 8] [03013003] +11:14:43 [ 42] [ 15] [APT ] +11:14:43 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:14:43 [ 49] [ 3] [418] +11:14:43 [ 52] [ 16] [BF75F8749AA47306] +11:14:43 ============================================================================ +11:14:43 + + +waiting on router queue for slot.... +11:14:43 Sending to : +11:14:43 ============================================================================ +11:14:43 Sending to : +11:14:43 ============================================================================ +11:14:43 ============================================================================ +11:14:43 Slot Id : <82> +11:14:43 Transaction Type : REQUEST +11:14:43 Received From : +11:14:43 ============================================================================ +11:14:43 FNo. Len. Field Value +11:14:43 ============================================================================ +11:14:43 [ 1] [ 4] [0800] +11:14:43 [ 7] [ 10] [0320111430] +11:14:43 [ 11] [ 6] [020292] +11:14:43 [ 37] [ 12] [507911020292] +11:14:43 [ 70] [ 3] [ ] +11:14:43 ============================================================================ +11:14:43 + + +waiting on router queue for slot.... +11:14:43 Sending to : +11:14:43 ============================================================================ +11:14:43 ============================================================================ +11:14:43 Slot Id : <82> +11:14:43 Transaction Type : RESPONSE +11:14:43 Received From : +11:14:43 ============================================================================ +11:14:43 FNo. Len. Field Value +11:14:43 ============================================================================ +11:14:43 [ 1] [ 4] [0810] +11:14:43 [ 7] [ 10] [0320111430] +11:14:43 [ 11] [ 6] [020292] +11:14:43 [ 37] [ 12] [507911020292] +11:14:43 [ 39] [ 2] [91] +11:14:43 [ 70] [ 3] [ ] +11:14:43 ============================================================================ +11:14:43 Calculate Source COMM Id = 3 +11:14:43 ============================================================================ +11:14:43 + + +waiting on router queue for slot.... +11:14:43 ============================================================================ +11:14:43 Slot Id : <64> +11:14:43 Transaction Type : REQUEST +11:14:43 Received From : +11:14:43 ============================================================================ +11:14:43 FNo. Len. Field Value +11:14:43 ============================================================================ +11:14:43 [ 1] [ 4] [0200] +11:14:43 [ 2] [ 16] [6213548000509206] +11:14:43 [ 3] [ 6] [010000] +11:14:43 [ 4] [ 12] [000100000000] +11:14:43 [ 7] [ 10] [0320111234] +11:14:43 [ 11] [ 6] [940641] +11:14:43 [ 12] [ 6] [111234] +11:14:43 [ 13] [ 4] [0320] +11:14:43 [ 15] [ 4] [0320] +11:14:43 [ 18] [ 4] [6011] +11:14:43 [ 19] [ 3] [418] +11:14:43 [ 22] [ 3] [021] +11:14:43 [ 25] [ 2] [01] +11:14:43 [ 28] [ 9] [D00002000] +11:14:43 [ 32] [ 6] [668899] +11:14:43 [ 35] [ 32] [6213548000509206=181112010920283] +11:14:43 [ 37] [ 12] [507900329877] +11:14:43 [ 41] [ 8] [03013003] +11:14:43 [ 42] [ 15] [APT ] +11:14:43 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:14:43 [ 49] [ 3] [418] +11:14:43 [ 52] [ 16] [BF75F8749AA47306] +11:14:43 ============================================================================ +11:14:43 + + +waiting on router queue for slot.... +11:14:43 Sending to : +11:14:43 ============================================================================ +11:14:43 ============================================================================ +11:14:43 Slot Id : <64> +11:14:43 Transaction Type : REQUEST +11:14:43 Received From : +11:14:43 ============================================================================ +11:14:43 FNo. Len. Field Value +11:14:43 ============================================================================ +11:14:43 [ 1] [ 4] [0200] +11:14:43 [ 2] [ 16] [6213548000509206] +11:14:43 [ 3] [ 6] [010000] +11:14:43 [ 4] [ 12] [000100000000] +11:14:43 [ 7] [ 10] [0320111234] +11:14:43 [ 11] [ 6] [940641] +11:14:43 [ 12] [ 6] [111234] +11:14:43 [ 13] [ 4] [0320] +11:14:43 [ 15] [ 4] [0320] +11:14:43 [ 18] [ 4] [6011] +11:14:43 [ 19] [ 3] [418] +11:14:43 [ 22] [ 3] [021] +11:14:43 [ 25] [ 2] [01] +11:14:43 [ 28] [ 9] [D00002000] +11:14:43 [ 32] [ 6] [668899] +11:14:43 [ 35] [ 32] [6213548000509206=181112010920283] +11:14:43 [ 37] [ 12] [507900329877] +11:14:43 [ 41] [ 8] [03013003] +11:14:43 [ 42] [ 15] [APT ] +11:14:43 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:14:43 [ 49] [ 3] [418] +11:14:43 [ 52] [ 16] [A78B4DB47D419F13] +11:14:43 ============================================================================ +11:14:43 + + +waiting on router queue for slot.... +11:14:43 Sending to : <0> +11:14:43 ============================================================================ +11:14:44 ============================================================================ +11:14:44 Slot Id : <64> +11:14:44 Transaction Type : RESPONSE +11:14:44 Received From : +11:14:44 ============================================================================ +11:14:44 FNo. Len. Field Value +11:14:44 ============================================================================ +11:14:44 [ 1] [ 4] [0210] +11:14:44 [ 2] [ 16] [6213548000509206] +11:14:44 [ 3] [ 6] [010000] +11:14:44 [ 4] [ 12] [000100000000] +11:14:44 [ 7] [ 10] [0320111234] +11:14:44 [ 11] [ 6] [940641] +11:14:44 [ 12] [ 6] [111234] +11:14:44 [ 13] [ 4] [0320] +11:14:44 [ 15] [ 4] [0320] +11:14:44 [ 18] [ 4] [6011] +11:14:44 [ 19] [ 3] [418] +11:14:44 [ 32] [ 6] [668899] +11:14:44 [ 35] [ 32] [6213548000509206=181112010920283] +11:14:44 [ 37] [ 12] [507900329877] +11:14:44 [ 38] [ 6] [511180] +11:14:44 [ 39] [ 2] [00] +11:14:44 [ 41] [ 8] [03013003] +11:14:44 [ 49] [ 3] [418] +11:14:44 [ 54] [ 40] [0001418C0004665035470002418C000466503547] +11:14:44 ============================================================================ +11:14:44 Sending to : +11:14:44 ============================================================================ +11:14:44 + + +waiting on router queue for slot.... +11:14:45 ============================================================================ +11:14:45 Slot Id : <64> +11:14:45 Transaction Type : RESPONSE +11:14:45 Received From : +11:14:45 ============================================================================ +11:14:45 FNo. Len. Field Value +11:14:45 ============================================================================ +11:14:45 [ 1] [ 4] [0210] +11:14:45 [ 2] [ 16] [6213548000509206] +11:14:45 [ 3] [ 6] [010000] +11:14:45 [ 4] [ 12] [000100000000] +11:14:45 [ 7] [ 10] [0320111234] +11:14:45 [ 11] [ 6] [940641] +11:14:45 [ 12] [ 6] [111234] +11:14:45 [ 13] [ 4] [0320] +11:14:45 [ 15] [ 4] [0320] +11:14:45 [ 18] [ 4] [6011] +11:14:45 [ 19] [ 3] [418] +11:14:45 [ 32] [ 6] [668899] +11:14:45 [ 35] [ 32] [6213548000509206=181112010920283] +11:14:45 [ 37] [ 12] [507900329877] +11:14:45 [ 38] [ 6] [511180] +11:14:45 [ 39] [ 2] [00] +11:14:45 [ 41] [ 8] [03013003] +11:14:45 [ 49] [ 3] [418] +11:14:45 [ 54] [ 40] [0001418C0004665035470002418C000466503547] +11:14:45 ============================================================================ +11:14:45 Calculate Source COMM Id = 4 +11:14:45 ============================================================================ +11:14:45 + + +waiting on router queue for slot.... +11:14:50 ============================================================================ +11:14:50 Slot Id : <56> +11:14:50 Transaction Type : REQUEST +11:14:50 Received From : +11:14:50 ============================================================================ +11:14:50 FNo. Len. Field Value +11:14:50 ============================================================================ +11:14:50 [ 1] [ 4] [0800] +11:14:50 [ 7] [ 10] [0320041358] +11:14:50 [ 11] [ 6] [156042] +11:14:50 [ 70] [ 3] [301] +11:14:50 ============================================================================ +11:14:50 + + +waiting on router queue for slot.... +11:14:50 Sending to : +11:14:50 ============================================================================ +11:14:50 ============================================================================ +11:14:50 Slot Id : <56> +11:14:50 Transaction Type : RESPONSE +11:14:50 Received From : +11:14:50 ============================================================================ +11:14:50 FNo. Len. Field Value +11:14:50 ============================================================================ +11:14:50 [ 1] [ 4] [0810] +11:14:50 [ 7] [ 10] [0320041358] +11:14:50 [ 11] [ 6] [156042] +11:14:50 [ 39] [ 2] [00] +11:14:50 [ 70] [ 3] [301] +11:14:50 ============================================================================ +11:14:50 Calculate Source COMM Id = 2 +11:14:50 ============================================================================ +11:14:50 + + +waiting on router queue for slot.... +11:14:55 ============================================================================ +11:14:55 Slot Id : <93> +11:14:55 Transaction Type : REQUEST +11:14:55 Received From : +11:14:55 ============================================================================ +11:14:55 FNo. Len. Field Value +11:14:55 ============================================================================ +11:14:55 [ 1] [ 4] [0800] +11:14:55 [ 7] [ 10] [0320042242] +11:14:55 [ 11] [ 6] [081457] +11:14:55 [ 37] [ 12] [57911081457] +11:14:55 [ 70] [ 3] [301] +11:14:55 ============================================================================ +11:14:55 + + +waiting on router queue for slot.... +11:14:55 Sending to : +11:14:55 ============================================================================ +11:14:55 ============================================================================ +11:14:55 Slot Id : <93> +11:14:55 Transaction Type : RESPONSE +11:14:55 Received From : +11:14:55 ============================================================================ +11:14:55 FNo. Len. Field Value +11:14:55 ============================================================================ +11:14:55 [ 1] [ 4] [0810] +11:14:55 [ 7] [ 10] [0320042242] +11:14:55 [ 11] [ 6] [081457] +11:14:55 [ 37] [ 12] [579110814570] +11:14:55 [ 39] [ 2] [00] +11:14:55 [ 70] [ 3] [810] +11:14:55 ============================================================================ +11:14:55 Calculate Source COMM Id = 1 +11:14:55 ============================================================================ +11:14:55 + + +waiting on router queue for slot.... +11:14:59 ============================================================================ +11:14:59 Slot Id : <91> +11:14:59 Transaction Type : REQUEST +11:14:59 Received From : +11:14:59 ============================================================================ +11:14:59 FNo. Len. Field Value +11:14:59 ============================================================================ +11:14:59 [ 1] [ 4] [0200] +11:14:59 [ 2] [ 16] [1808930900017526] +11:14:59 [ 3] [ 6] [011000] +11:14:59 [ 4] [ 12] [000010000000] +11:14:59 [ 7] [ 10] [0320111455] +11:14:59 [ 11] [ 6] [726334] +11:14:59 [ 12] [ 6] [111455] +11:14:59 [ 13] [ 4] [0320] +11:14:59 [ 15] [ 4] [0320] +11:14:59 [ 18] [ 4] [6011] +11:14:59 [ 22] [ 3] [900] +11:14:59 [ 25] [ 2] [02] +11:14:59 [ 28] [ 9] [D00002000] +11:14:59 [ 32] [ 6] [621354] +11:14:59 [ 35] [ 27] [1808930900017526=1803500525] +11:14:59 [ 37] [ 12] [507904228865] +11:14:59 [ 41] [ 8] [05004600] +11:14:59 [ 42] [ 15] [NATIVE ] +11:14:59 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +11:14:59 [ 49] [ 3] [418] +11:14:59 [ 52] [ 16] [C7759AF43F337B49] +11:14:59 ============================================================================ +11:14:59 + + +waiting on router queue for slot.... +11:14:59 Sending to : +11:14:59 ============================================================================ +11:14:59 Sending to : +11:14:59 ============================================================================ +11:14:59 ============================================================================ +11:14:59 Slot Id : <91> +11:14:59 Transaction Type : REQUEST +11:14:59 Received From : +11:14:59 ============================================================================ +11:14:59 FNo. Len. Field Value +11:14:59 ============================================================================ +11:14:59 [ 1] [ 4] [0200] +11:14:59 [ 2] [ 16] [1808930900017526] +11:14:59 [ 3] [ 6] [011000] +11:14:59 [ 4] [ 12] [000010000000] +11:14:59 [ 7] [ 10] [0320111455] +11:14:59 [ 11] [ 6] [726334] +11:14:59 [ 12] [ 6] [111455] +11:14:59 [ 13] [ 4] [0320] +11:14:59 [ 15] [ 4] [0320] +11:14:59 [ 18] [ 4] [6011] +11:14:59 [ 22] [ 3] [900] +11:14:59 [ 25] [ 2] [02] +11:14:59 [ 28] [ 9] [D00002000] +11:14:59 [ 32] [ 6] [621354] +11:14:59 [ 35] [ 27] [1808930900017526=1803500525] +11:14:59 [ 37] [ 12] [507904228865] +11:14:59 [ 41] [ 8] [05004600] +11:14:59 [ 42] [ 15] [NATIVE ] +11:14:59 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +11:14:59 [ 49] [ 3] [418] +11:14:59 [ 52] [ 16] [C7759AF43F337B49] +11:14:59 ============================================================================ +11:14:59 + + +waiting on router queue for slot.... +11:14:59 Sending to : +11:14:59 ============================================================================ +11:14:59 ============================================================================ +11:14:59 Slot Id : <91> +11:14:59 Transaction Type : REQUEST +11:14:59 Received From : +11:14:59 ============================================================================ +11:14:59 FNo. Len. Field Value +11:14:59 ============================================================================ +11:14:59 [ 1] [ 4] [0200] +11:14:59 [ 2] [ 16] [1808930900017526] +11:14:59 [ 3] [ 6] [011000] +11:14:59 [ 4] [ 12] [000010000000] +11:14:59 [ 7] [ 10] [0320111455] +11:14:59 [ 11] [ 6] [726334] +11:14:59 [ 12] [ 6] [111455] +11:14:59 [ 13] [ 4] [0320] +11:14:59 [ 15] [ 4] [0320] +11:14:59 [ 18] [ 4] [6011] +11:14:59 [ 22] [ 3] [900] +11:14:59 [ 25] [ 2] [02] +11:14:59 [ 28] [ 9] [D00002000] +11:14:59 [ 32] [ 6] [621354] +11:14:59 [ 35] [ 27] [1808930900017526=1803500525] +11:14:59 [ 37] [ 12] [507904228865] +11:14:59 [ 41] [ 8] [05004600] +11:14:59 [ 42] [ 15] [NATIVE ] +11:14:59 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +11:14:59 [ 49] [ 3] [418] +11:14:59 [ 52] [ 16] [2920CCB452969798] +11:14:59 ============================================================================ +11:14:59 + + +waiting on router queue for slot.... +11:14:59 Sending to : <2> +11:14:59 ============================================================================ +11:15:00 ============================================================================ +11:15:00 Slot Id : <100> +11:15:00 Transaction Type : REQUEST +11:15:00 Received From : +11:15:00 ============================================================================ +11:15:00 FNo. Len. Field Value +11:15:00 ============================================================================ +11:15:00 [ 1] [ 4] [0200] +11:15:00 [ 2] [ 16] [6213541000047319] +11:15:00 [ 3] [ 6] [010000] +11:15:00 [ 4] [ 12] [000070000000] +11:15:00 [ 7] [ 10] [0320111251] +11:15:00 [ 11] [ 6] [940657] +11:15:00 [ 12] [ 6] [111251] +11:15:00 [ 13] [ 4] [0320] +11:15:00 [ 15] [ 4] [0320] +11:15:00 [ 18] [ 4] [6011] +11:15:00 [ 19] [ 3] [418] +11:15:00 [ 22] [ 3] [021] +11:15:00 [ 25] [ 2] [01] +11:15:00 [ 28] [ 9] [D00002000] +11:15:00 [ 32] [ 6] [668899] +11:15:00 [ 35] [ 32] [6213541000047319=491212014731965] +11:15:00 [ 37] [ 12] [507902071172] +11:15:00 [ 41] [ 8] [03006007] +11:15:00 [ 42] [ 15] [APT ] +11:15:00 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +11:15:00 [ 49] [ 3] [418] +11:15:00 [ 52] [ 16] [C049113562B3E3C3] +11:15:00 ============================================================================ +11:15:00 + + +waiting on router queue for slot.... +11:15:00 Sending to : +11:15:00 ============================================================================ +11:15:00 Sending to : +11:15:00 ============================================================================ +11:15:00 ============================================================================ +11:15:00 Slot Id : <100> +11:15:00 Transaction Type : REQUEST +11:15:00 Received From : +11:15:00 ============================================================================ +11:15:00 FNo. Len. Field Value +11:15:00 ============================================================================ +11:15:00 [ 1] [ 4] [0200] +11:15:00 [ 2] [ 16] [6213541000047319] +11:15:00 [ 3] [ 6] [010000] +11:15:00 [ 4] [ 12] [000070000000] +11:15:00 [ 7] [ 10] [0320111251] +11:15:00 [ 11] [ 6] [940657] +11:15:00 [ 12] [ 6] [111251] +11:15:00 [ 13] [ 4] [0320] +11:15:00 [ 15] [ 4] [0320] +11:15:00 [ 18] [ 4] [6011] +11:15:00 [ 19] [ 3] [418] +11:15:00 [ 22] [ 3] [021] +11:15:00 [ 25] [ 2] [01] +11:15:00 [ 28] [ 9] [D00002000] +11:15:00 [ 32] [ 6] [668899] +11:15:00 [ 35] [ 32] [6213541000047319=491212014731965] +11:15:00 [ 37] [ 12] [507902071172] +11:15:00 [ 41] [ 8] [03006007] +11:15:00 [ 42] [ 15] [APT ] +11:15:00 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +11:15:00 [ 49] [ 3] [418] +11:15:00 [ 52] [ 16] [C049113562B3E3C3] +11:15:00 ============================================================================ +11:15:00 + + +waiting on router queue for slot.... +11:15:00 Sending to : +11:15:00 ============================================================================ +11:15:00 ============================================================================ +11:15:00 Slot Id : <100> +11:15:00 Transaction Type : REQUEST +11:15:00 Received From : +11:15:00 ============================================================================ +11:15:00 FNo. Len. Field Value +11:15:00 ============================================================================ +11:15:00 [ 1] [ 4] [0200] +11:15:00 [ 2] [ 16] [6213541000047319] +11:15:00 [ 3] [ 6] [010000] +11:15:00 [ 4] [ 12] [000070000000] +11:15:00 [ 7] [ 10] [0320111251] +11:15:00 [ 11] [ 6] [940657] +11:15:00 [ 12] [ 6] [111251] +11:15:00 [ 13] [ 4] [0320] +11:15:00 [ 15] [ 4] [0320] +11:15:00 [ 18] [ 4] [6011] +11:15:00 [ 19] [ 3] [418] +11:15:00 [ 22] [ 3] [021] +11:15:00 [ 25] [ 2] [01] +11:15:00 [ 28] [ 9] [D00002000] +11:15:00 [ 32] [ 6] [668899] +11:15:00 [ 35] [ 32] [6213541000047319=491212014731965] +11:15:00 [ 37] [ 12] [507902071172] +11:15:00 [ 41] [ 8] [03006007] +11:15:00 [ 42] [ 15] [APT ] +11:15:00 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +11:15:00 [ 49] [ 3] [418] +11:15:00 [ 52] [ 16] [3517ED2394C492B7] +11:15:00 ============================================================================ +11:15:00 + + +waiting on router queue for slot.... +11:15:00 Sending to : <0> +11:15:00 ============================================================================ +11:15:01 ============================================================================ +11:15:01 Slot Id : <100> +11:15:01 Transaction Type : RESPONSE +11:15:01 Received From : +11:15:01 ============================================================================ +11:15:01 FNo. Len. Field Value +11:15:01 ============================================================================ +11:15:01 [ 1] [ 4] [0210] +11:15:01 [ 2] [ 16] [6213541000047319] +11:15:01 [ 3] [ 6] [010000] +11:15:01 [ 4] [ 12] [000070000000] +11:15:01 [ 7] [ 10] [0320111251] +11:15:01 [ 11] [ 6] [940657] +11:15:01 [ 12] [ 6] [111251] +11:15:01 [ 13] [ 4] [0320] +11:15:01 [ 15] [ 4] [0320] +11:15:01 [ 18] [ 4] [6011] +11:15:01 [ 19] [ 3] [418] +11:15:01 [ 32] [ 6] [668899] +11:15:01 [ 35] [ 32] [6213541000047319=491212014731965] +11:15:01 [ 37] [ 12] [507902071172] +11:15:01 [ 38] [ 6] [431762] +11:15:01 [ 39] [ 2] [00] +11:15:01 [ 41] [ 8] [03006007] +11:15:01 [ 49] [ 3] [418] +11:15:01 [ 54] [ 40] [0001418C0000540716130002418C000054071613] +11:15:01 ============================================================================ +11:15:01 Sending to : +11:15:01 ============================================================================ +11:15:01 + + +waiting on router queue for slot.... +11:15:03 ============================================================================ +11:15:03 Slot Id : <91> +11:15:03 Transaction Type : RESPONSE +11:15:03 Received From : +11:15:03 ============================================================================ +11:15:03 FNo. Len. Field Value +11:15:03 ============================================================================ +11:15:03 [ 1] [ 4] [0210] +11:15:03 [ 2] [ 16] [1808930900017526] +11:15:03 [ 3] [ 6] [011000] +11:15:03 [ 4] [ 12] [000010000000] +11:15:03 [ 6] [ 12] [000010000000] +11:15:03 [ 7] [ 10] [0320111455] +11:15:03 [ 11] [ 6] [726334] +11:15:03 [ 12] [ 6] [111455] +11:15:03 [ 13] [ 4] [0320] +11:15:03 [ 18] [ 4] [6011] +11:15:03 [ 19] [ 3] [418] +11:15:03 [ 22] [ 3] [021] +11:15:03 [ 32] [ 6] [621354] +11:15:03 [ 35] [ 27] [1808930900017526=1803500525] +11:15:03 [ 37] [ 12] [507904228865] +11:15:03 [ 38] [ 6] [726334] +11:15:03 [ 39] [ 2] [00] +11:15:03 [ 41] [ 8] [05004600] +11:15:03 [ 49] [ 3] [418] +11:15:03 [ 52] [ 16] [2920CCB452969798] +11:15:03 [ 54] [ 20] [1001418C000035907200] +11:15:03 ============================================================================ +11:15:03 Sending to : +11:15:03 ============================================================================ +11:15:03 + + +waiting on router queue for slot.... +11:15:03 ============================================================================ +11:15:03 Slot Id : <100> +11:15:03 Transaction Type : RESPONSE +11:15:03 Received From : +11:15:03 ============================================================================ +11:15:03 FNo. Len. Field Value +11:15:03 ============================================================================ +11:15:03 [ 1] [ 4] [0210] +11:15:03 [ 2] [ 16] [6213541000047319] +11:15:03 [ 3] [ 6] [010000] +11:15:03 [ 4] [ 12] [000070000000] +11:15:03 [ 7] [ 10] [0320111251] +11:15:03 [ 11] [ 6] [940657] +11:15:03 [ 12] [ 6] [111251] +11:15:03 [ 13] [ 4] [0320] +11:15:03 [ 15] [ 4] [0320] +11:15:03 [ 18] [ 4] [6011] +11:15:03 [ 19] [ 3] [418] +11:15:03 [ 32] [ 6] [668899] +11:15:03 [ 35] [ 32] [6213541000047319=491212014731965] +11:15:03 [ 37] [ 12] [507902071172] +11:15:03 [ 38] [ 6] [431762] +11:15:03 [ 39] [ 2] [00] +11:15:03 [ 41] [ 8] [03006007] +11:15:03 [ 49] [ 3] [418] +11:15:03 [ 54] [ 40] [0001418C0000540716130002418C000054071613] +11:15:03 ============================================================================ +11:15:03 Calculate Source COMM Id = 4 +11:15:03 ============================================================================ +11:15:03 + + +waiting on router queue for slot.... +11:15:04 ============================================================================ +11:15:04 Slot Id : <91> +11:15:04 Transaction Type : RESPONSE +11:15:04 Received From : +11:15:04 ============================================================================ +11:15:04 FNo. Len. Field Value +11:15:04 ============================================================================ +11:15:04 [ 1] [ 4] [0210] +11:15:04 [ 2] [ 16] [1808930900017526] +11:15:04 [ 3] [ 6] [011000] +11:15:04 [ 4] [ 12] [000010000000] +11:15:04 [ 6] [ 12] [000010000000] +11:15:04 [ 7] [ 10] [0320111455] +11:15:04 [ 11] [ 6] [726334] +11:15:04 [ 12] [ 6] [111455] +11:15:04 [ 13] [ 4] [0320] +11:15:04 [ 18] [ 4] [6011] +11:15:04 [ 19] [ 3] [418] +11:15:04 [ 22] [ 3] [021] +11:15:04 [ 32] [ 6] [621354] +11:15:04 [ 35] [ 27] [1808930900017526=1803500525] +11:15:04 [ 37] [ 12] [507904228865] +11:15:04 [ 38] [ 6] [726334] +11:15:04 [ 39] [ 2] [00] +11:15:04 [ 41] [ 8] [05004600] +11:15:04 [ 49] [ 3] [418] +11:15:04 [ 52] [ 16] [2920CCB452969798] +11:15:04 [ 54] [ 20] [1001418C000035907200] +11:15:04 ============================================================================ +11:15:04 Calculate Source COMM Id = 0 +11:15:04 ============================================================================ +11:15:04 + + +waiting on router queue for slot.... +11:15:09 ============================================================================ +11:15:09 Slot Id : <77> +11:15:09 Transaction Type : REQUEST +11:15:09 Received From : +11:15:09 ============================================================================ +11:15:09 FNo. Len. Field Value +11:15:09 ============================================================================ +11:15:09 [ 1] [ 4] [0200] +11:15:09 [ 2] [ 16] [2206990000137026] +11:15:09 [ 3] [ 6] [011000] +11:15:09 [ 4] [ 12] [000090000000] +11:15:09 [ 7] [ 10] [0320111504] +11:15:09 [ 11] [ 6] [726367] +11:15:09 [ 12] [ 6] [111504] +11:15:09 [ 13] [ 4] [0320] +11:15:09 [ 15] [ 4] [0320] +11:15:09 [ 18] [ 4] [6011] +11:15:09 [ 22] [ 3] [900] +11:15:09 [ 25] [ 2] [02] +11:15:09 [ 28] [ 9] [D00002000] +11:15:09 [ 32] [ 6] [621354] +11:15:09 [ 35] [ 32] [2206990000137026=980612610160808] +11:15:09 [ 37] [ 12] [507902381594] +11:15:09 [ 41] [ 8] [01006300] +11:15:09 [ 42] [ 15] [NATIVE ] +11:15:09 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +11:15:09 [ 49] [ 3] [418] +11:15:09 [ 52] [ 16] [9D800B3786AE631D] +11:15:09 ============================================================================ +11:15:09 + + +waiting on router queue for slot.... +11:15:09 Sending to : +11:15:09 ============================================================================ +11:15:09 Sending to : +11:15:09 ============================================================================ +11:15:09 ============================================================================ +11:15:09 Slot Id : <77> +11:15:09 Transaction Type : REQUEST +11:15:09 Received From : +11:15:09 ============================================================================ +11:15:09 FNo. Len. Field Value +11:15:09 ============================================================================ +11:15:09 [ 1] [ 4] [0200] +11:15:09 [ 2] [ 16] [2206990000137026] +11:15:09 [ 3] [ 6] [011000] +11:15:09 [ 4] [ 12] [000090000000] +11:15:09 [ 7] [ 10] [0320111504] +11:15:09 [ 11] [ 6] [726367] +11:15:09 [ 12] [ 6] [111504] +11:15:09 [ 13] [ 4] [0320] +11:15:09 [ 15] [ 4] [0320] +11:15:09 [ 18] [ 4] [6011] +11:15:09 [ 22] [ 3] [900] +11:15:09 [ 25] [ 2] [02] +11:15:09 [ 28] [ 9] [D00002000] +11:15:09 [ 32] [ 6] [621354] +11:15:09 [ 35] [ 32] [2206990000137026=980612610160808] +11:15:09 [ 37] [ 12] [507902381594] +11:15:09 [ 41] [ 8] [01006300] +11:15:09 [ 42] [ 15] [NATIVE ] +11:15:09 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +11:15:09 [ 49] [ 3] [418] +11:15:09 [ 52] [ 16] [9D800B3786AE631D] +11:15:09 ============================================================================ +11:15:09 + + +waiting on router queue for slot.... +11:15:09 Sending to : +11:15:09 ============================================================================ +11:15:09 ============================================================================ +11:15:09 Slot Id : <77> +11:15:09 Transaction Type : REQUEST +11:15:09 Received From : +11:15:09 ============================================================================ +11:15:09 FNo. Len. Field Value +11:15:09 ============================================================================ +11:15:09 [ 1] [ 4] [0200] +11:15:09 [ 2] [ 16] [2206990000137026] +11:15:09 [ 3] [ 6] [011000] +11:15:09 [ 4] [ 12] [000090000000] +11:15:09 [ 7] [ 10] [0320111504] +11:15:09 [ 11] [ 6] [726367] +11:15:09 [ 12] [ 6] [111504] +11:15:09 [ 13] [ 4] [0320] +11:15:09 [ 15] [ 4] [0320] +11:15:09 [ 18] [ 4] [6011] +11:15:09 [ 22] [ 3] [900] +11:15:09 [ 25] [ 2] [02] +11:15:09 [ 28] [ 9] [D00002000] +11:15:09 [ 32] [ 6] [621354] +11:15:09 [ 35] [ 32] [2206990000137026=980612610160808] +11:15:09 [ 37] [ 12] [507902381594] +11:15:09 [ 41] [ 8] [01006300] +11:15:09 [ 42] [ 15] [NATIVE ] +11:15:09 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +11:15:09 [ 49] [ 3] [418] +11:15:09 [ 52] [ 16] [D176D1CA60F92D07] +11:15:09 ============================================================================ +11:15:09 + + +waiting on router queue for slot.... +11:15:09 Sending to : <1> +11:15:09 ============================================================================ +11:15:11 ============================================================================ +11:15:11 Slot Id : <65> +11:15:11 Transaction Type : REQUEST +11:15:11 Received From : +11:15:11 ============================================================================ +11:15:11 FNo. Len. Field Value +11:15:11 ============================================================================ +11:15:11 [ 1] [ 4] [0800] +11:15:11 [ 7] [ 10] [0320041419] +11:15:11 [ 11] [ 6] [156043] +11:15:11 [ 70] [ 3] [301] +11:15:11 ============================================================================ +11:15:11 + + +waiting on router queue for slot.... +11:15:11 Sending to : +11:15:11 ============================================================================ +11:15:11 ============================================================================ +11:15:11 Slot Id : <65> +11:15:11 Transaction Type : RESPONSE +11:15:11 Received From : +11:15:11 ============================================================================ +11:15:11 FNo. Len. Field Value +11:15:11 ============================================================================ +11:15:11 [ 1] [ 4] [0810] +11:15:11 [ 7] [ 10] [0320041419] +11:15:11 [ 11] [ 6] [156043] +11:15:11 [ 39] [ 2] [00] +11:15:11 [ 70] [ 3] [301] +11:15:11 ============================================================================ +11:15:11 Calculate Source COMM Id = 2 +11:15:11 ============================================================================ +11:15:11 + + +waiting on router queue for slot.... +11:15:24 ============================================================================ +11:15:24 Slot Id : <72> +11:15:24 Transaction Type : REQUEST +11:15:24 Received From : +11:15:24 ============================================================================ +11:15:24 FNo. Len. Field Value +11:15:24 ============================================================================ +11:15:24 [ 1] [ 4] [0800] +11:15:24 [ 2] [ 5] [02531] +11:15:24 [ 3] [ 6] [579118] +11:15:24 [ 7] [ 10] [0320041524] +11:15:24 [ 11] [ 6] [807065] +11:15:24 [ 15] [ 10] [0320041524] +11:15:24 [ 37] [ 11] [57911807065] +11:15:24 [ 70] [ 3] [001] +11:15:24 ============================================================================ +11:15:24 + + +waiting on router queue for slot.... +11:15:24 ============================================================================ +11:15:24 Slot Id : <72> +11:15:24 Transaction Type : RESPONSE +11:15:24 Received From : +11:15:24 ============================================================================ +11:15:24 FNo. Len. Field Value +11:15:24 ============================================================================ +11:15:24 [ 1] [ 4] [0810] +11:15:24 [ 7] [ 10] [0320041524] +11:15:24 [ 11] [ 6] [807065] +11:15:24 [ 15] [ 4] [0320] +11:15:24 [ 37] [ 12] [57911807065] +11:15:24 [ 39] [ 2] [00] +11:15:24 [ 70] [ 3] [001] +11:15:24 ============================================================================ +11:15:24 Sending to : +11:15:24 ============================================================================ +11:15:24 + + +waiting on router queue for slot.... +11:15:26 ============================================================================ +11:15:26 Slot Id : <106> +11:15:26 Transaction Type : REQUEST +11:15:26 Received From : +11:15:26 ============================================================================ +11:15:26 FNo. Len. Field Value +11:15:26 ============================================================================ +11:15:26 [ 1] [ 4] [0800] +11:15:26 [ 7] [ 10] [0320041434] +11:15:26 [ 11] [ 6] [156044] +11:15:26 [ 70] [ 3] [301] +11:15:26 ============================================================================ +11:15:26 + + +waiting on router queue for slot.... +11:15:26 Sending to : +11:15:26 ============================================================================ +11:15:26 ============================================================================ +11:15:26 Slot Id : <106> +11:15:26 Transaction Type : RESPONSE +11:15:26 Received From : +11:15:26 ============================================================================ +11:15:26 FNo. Len. Field Value +11:15:26 ============================================================================ +11:15:26 [ 1] [ 4] [0810] +11:15:26 [ 7] [ 10] [0320041434] +11:15:26 [ 11] [ 6] [156044] +11:15:26 [ 39] [ 2] [00] +11:15:26 [ 70] [ 3] [301] +11:15:26 ============================================================================ +11:15:26 Calculate Source COMM Id = 2 +11:15:26 ============================================================================ +11:15:26 + + +waiting on router queue for slot.... +11:15:31 ============================================================================ +11:15:31 Slot Id : <76> +11:15:31 Transaction Type : REQUEST +11:15:31 Received From : +11:15:31 ============================================================================ +11:15:31 FNo. Len. Field Value +11:15:31 ============================================================================ +11:15:31 [ 1] [ 4] [0200] +11:15:31 [ 2] [ 16] [6213541000119936] +11:15:31 [ 3] [ 6] [010000] +11:15:31 [ 4] [ 12] [000100000000] +11:15:31 [ 7] [ 10] [0320111322] +11:15:31 [ 11] [ 6] [940684] +11:15:31 [ 12] [ 6] [111322] +11:15:31 [ 13] [ 4] [0320] +11:15:31 [ 15] [ 4] [0320] +11:15:31 [ 18] [ 4] [6011] +11:15:31 [ 19] [ 3] [418] +11:15:31 [ 22] [ 3] [021] +11:15:31 [ 25] [ 2] [01] +11:15:31 [ 28] [ 9] [D00002000] +11:15:31 [ 32] [ 6] [668899] +11:15:31 [ 35] [ 32] [6213541000119936=491212011993560] +11:15:31 [ 37] [ 12] [507901963482] +11:15:31 [ 41] [ 8] [03020019] +11:15:31 [ 42] [ 15] [APT ] +11:15:31 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:15:31 [ 49] [ 3] [418] +11:15:31 [ 52] [ 16] [F12E25FDFF2B95EA] +11:15:31 ============================================================================ +11:15:31 + + +waiting on router queue for slot.... +11:15:31 Sending to : +11:15:31 ============================================================================ +11:15:31 Sending to : +11:15:31 ============================================================================ +11:15:32 ============================================================================ +11:15:32 Slot Id : <76> +11:15:32 Transaction Type : REQUEST +11:15:32 Received From : +11:15:32 ============================================================================ +11:15:32 FNo. Len. Field Value +11:15:32 ============================================================================ +11:15:32 [ 1] [ 4] [0200] +11:15:32 [ 2] [ 16] [6213541000119936] +11:15:32 [ 3] [ 6] [010000] +11:15:32 [ 4] [ 12] [000100000000] +11:15:32 [ 7] [ 10] [0320111322] +11:15:32 [ 11] [ 6] [940684] +11:15:32 [ 12] [ 6] [111322] +11:15:32 [ 13] [ 4] [0320] +11:15:32 [ 15] [ 4] [0320] +11:15:32 [ 18] [ 4] [6011] +11:15:32 [ 19] [ 3] [418] +11:15:32 [ 22] [ 3] [021] +11:15:32 [ 25] [ 2] [01] +11:15:32 [ 28] [ 9] [D00002000] +11:15:32 [ 32] [ 6] [668899] +11:15:32 [ 35] [ 32] [6213541000119936=491212011993560] +11:15:32 [ 37] [ 12] [507901963482] +11:15:32 [ 41] [ 8] [03020019] +11:15:32 [ 42] [ 15] [APT ] +11:15:32 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:15:32 [ 49] [ 3] [418] +11:15:32 [ 52] [ 16] [F12E25FDFF2B95EA] +11:15:32 ============================================================================ +11:15:32 + + +waiting on router queue for slot.... +11:15:32 Sending to : +11:15:32 ============================================================================ +11:15:32 ============================================================================ +11:15:32 Slot Id : <76> +11:15:32 Transaction Type : REQUEST +11:15:32 Received From : +11:15:32 ============================================================================ +11:15:32 FNo. Len. Field Value +11:15:32 ============================================================================ +11:15:32 [ 1] [ 4] [0200] +11:15:32 [ 2] [ 16] [6213541000119936] +11:15:32 [ 3] [ 6] [010000] +11:15:32 [ 4] [ 12] [000100000000] +11:15:32 [ 7] [ 10] [0320111322] +11:15:32 [ 11] [ 6] [940684] +11:15:32 [ 12] [ 6] [111322] +11:15:32 [ 13] [ 4] [0320] +11:15:32 [ 15] [ 4] [0320] +11:15:32 [ 18] [ 4] [6011] +11:15:32 [ 19] [ 3] [418] +11:15:32 [ 22] [ 3] [021] +11:15:32 [ 25] [ 2] [01] +11:15:32 [ 28] [ 9] [D00002000] +11:15:32 [ 32] [ 6] [668899] +11:15:32 [ 35] [ 32] [6213541000119936=491212011993560] +11:15:32 [ 37] [ 12] [507901963482] +11:15:32 [ 41] [ 8] [03020019] +11:15:32 [ 42] [ 15] [APT ] +11:15:32 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:15:32 [ 49] [ 3] [418] +11:15:32 [ 52] [ 16] [302E25B293EBF614] +11:15:32 ============================================================================ +11:15:32 + + +waiting on router queue for slot.... +11:15:32 Sending to : <0> +11:15:32 ============================================================================ +11:15:32 ============================================================================ +11:15:32 Slot Id : <76> +11:15:32 Transaction Type : RESPONSE +11:15:32 Received From : +11:15:32 ============================================================================ +11:15:32 FNo. Len. Field Value +11:15:32 ============================================================================ +11:15:32 [ 1] [ 4] [0210] +11:15:32 [ 2] [ 16] [6213541000119936] +11:15:32 [ 3] [ 6] [010000] +11:15:32 [ 4] [ 12] [000100000000] +11:15:32 [ 7] [ 10] [0320111322] +11:15:32 [ 11] [ 6] [940684] +11:15:32 [ 12] [ 6] [111322] +11:15:32 [ 13] [ 4] [0320] +11:15:32 [ 15] [ 4] [0320] +11:15:32 [ 18] [ 4] [6011] +11:15:32 [ 19] [ 3] [418] +11:15:32 [ 32] [ 6] [668899] +11:15:32 [ 35] [ 32] [6213541000119936=491212011993560] +11:15:32 [ 37] [ 12] [507901963482] +11:15:32 [ 38] [ 6] [013391] +11:15:32 [ 39] [ 2] [00] +11:15:32 [ 41] [ 8] [03020019] +11:15:32 [ 49] [ 3] [418] +11:15:32 [ 54] [ 40] [0001418C0004988404610002418C000498840461] +11:15:32 ============================================================================ +11:15:32 Sending to : +11:15:32 ============================================================================ +11:15:32 + + +waiting on router queue for slot.... +11:15:33 ============================================================================ +11:15:33 Slot Id : <76> +11:15:33 Transaction Type : RESPONSE +11:15:33 Received From : +11:15:33 ============================================================================ +11:15:33 FNo. Len. Field Value +11:15:33 ============================================================================ +11:15:33 [ 1] [ 4] [0210] +11:15:33 [ 2] [ 16] [6213541000119936] +11:15:33 [ 3] [ 6] [010000] +11:15:33 [ 4] [ 12] [000100000000] +11:15:33 [ 7] [ 10] [0320111322] +11:15:33 [ 11] [ 6] [940684] +11:15:33 [ 12] [ 6] [111322] +11:15:33 [ 13] [ 4] [0320] +11:15:33 [ 15] [ 4] [0320] +11:15:33 [ 18] [ 4] [6011] +11:15:33 [ 19] [ 3] [418] +11:15:33 [ 32] [ 6] [668899] +11:15:33 [ 35] [ 32] [6213541000119936=491212011993560] +11:15:33 [ 37] [ 12] [507901963482] +11:15:33 [ 38] [ 6] [013391] +11:15:33 [ 39] [ 2] [00] +11:15:33 [ 41] [ 8] [03020019] +11:15:33 [ 49] [ 3] [418] +11:15:33 [ 54] [ 40] [0001418C0004988404610002418C000498840461] +11:15:33 ============================================================================ +11:15:33 Calculate Source COMM Id = 4 +11:15:33 ============================================================================ +11:15:33 + + +waiting on router queue for slot.... +11:15:38 ============================================================================ +11:15:38 Slot Id : <66> +11:15:38 Transaction Type : REQUEST +11:15:38 Received From : +11:15:38 ============================================================================ +11:15:38 FNo. Len. Field Value +11:15:38 ============================================================================ +11:15:38 [ 1] [ 4] [0420] +11:15:38 [ 2] [ 16] [2206990000137026] +11:15:38 [ 3] [ 6] [011000] +11:15:38 [ 4] [ 12] [000090000000] +11:15:38 [ 7] [ 10] [0320111504] +11:15:38 [ 11] [ 6] [726367] +11:15:38 [ 12] [ 6] [111504] +11:15:38 [ 13] [ 4] [0320] +11:15:38 [ 15] [ 4] [0320] +11:15:38 [ 18] [ 4] [6011] +11:15:38 [ 22] [ 3] [900] +11:15:38 [ 25] [ 2] [02] +11:15:38 [ 28] [ 9] [C00002000] +11:15:38 [ 32] [ 6] [621354] +11:15:38 [ 35] [ 32] [2206990000137026=980612610160808] +11:15:38 [ 37] [ 12] [507902381594] +11:15:38 [ 39] [ 2] [00] +11:15:38 [ 41] [ 8] [01006300] +11:15:38 [ 42] [ 15] [NATIVE ] +11:15:38 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +11:15:38 [ 49] [ 3] [418] +11:15:38 [ 90] [ 42] [020072636703201115040000062135400000000000] +11:15:38 ============================================================================ +11:15:38 + + +waiting on router queue for slot.... +11:15:38 Sending to : +11:15:38 ============================================================================ +11:15:42 ============================================================================ +11:15:42 Slot Id : <66> +11:15:42 Transaction Type : RESPONSE +11:15:42 Received From : +11:15:42 ============================================================================ +11:15:42 FNo. Len. Field Value +11:15:42 ============================================================================ +11:15:42 [ 1] [ 4] [0430] +11:15:42 [ 2] [ 16] [2206990000137026] +11:15:42 [ 3] [ 6] [011000] +11:15:42 [ 4] [ 12] [000090000000] +11:15:42 [ 7] [ 10] [0320111504] +11:15:42 [ 11] [ 6] [726367] +11:15:42 [ 12] [ 6] [111504] +11:15:42 [ 13] [ 4] [0320] +11:15:42 [ 15] [ 4] [0320] +11:15:42 [ 18] [ 4] [6011] +11:15:42 [ 22] [ 3] [900] +11:15:42 [ 25] [ 2] [02] +11:15:42 [ 28] [ 9] [C00002000] +11:15:42 [ 32] [ 6] [621354] +11:15:42 [ 35] [ 32] [2206990000137026=980612610160808] +11:15:42 [ 37] [ 12] [507902381594] +11:15:42 [ 39] [ 2] [00] +11:15:42 [ 41] [ 8] [01006300] +11:15:42 [ 42] [ 15] [NATIVE ] +11:15:42 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +11:15:42 [ 49] [ 3] [418] +11:15:42 [ 90] [ 42] [020072636703201115040000062135400000000000] +11:15:42 ============================================================================ +11:15:42 Calculate Source COMM Id = 0 +11:15:42 ============================================================================ +11:15:42 + + +waiting on router queue for slot.... +11:15:43 ============================================================================ +11:15:43 Slot Id : <90> +11:15:43 Transaction Type : REQUEST +11:15:43 Received From : +11:15:43 ============================================================================ +11:15:43 FNo. Len. Field Value +11:15:43 ============================================================================ +11:15:43 [ 1] [ 4] [0800] +11:15:43 [ 7] [ 10] [0320041450] +11:15:43 [ 11] [ 6] [156045] +11:15:43 [ 70] [ 3] [301] +11:15:43 ============================================================================ +11:15:43 + + +waiting on router queue for slot.... +11:15:43 Sending to : +11:15:43 ============================================================================ +11:15:43 ============================================================================ +11:15:43 Slot Id : <90> +11:15:43 Transaction Type : RESPONSE +11:15:43 Received From : +11:15:43 ============================================================================ +11:15:43 FNo. Len. Field Value +11:15:43 ============================================================================ +11:15:43 [ 1] [ 4] [0810] +11:15:43 [ 7] [ 10] [0320041450] +11:15:43 [ 11] [ 6] [156045] +11:15:43 [ 39] [ 2] [00] +11:15:43 [ 70] [ 3] [301] +11:15:43 ============================================================================ +11:15:43 Calculate Source COMM Id = 2 +11:15:43 ============================================================================ +11:15:43 + + +waiting on router queue for slot.... +11:15:48 ============================================================================ +11:15:48 Slot Id : <114> +11:15:48 Transaction Type : REQUEST +11:15:48 Received From : +11:15:48 ============================================================================ +11:15:48 FNo. Len. Field Value +11:15:48 ============================================================================ +11:15:48 [ 1] [ 4] [0200] +11:15:48 [ 2] [ 16] [1808930900017526] +11:15:48 [ 3] [ 6] [301000] +11:15:48 [ 4] [ 12] [000000000000] +11:15:48 [ 7] [ 10] [0320111544] +11:15:48 [ 11] [ 6] [726525] +11:15:48 [ 12] [ 6] [111544] +11:15:48 [ 13] [ 4] [0320] +11:15:48 [ 15] [ 4] [0320] +11:15:48 [ 18] [ 4] [6011] +11:15:48 [ 22] [ 3] [900] +11:15:48 [ 25] [ 2] [02] +11:15:48 [ 28] [ 9] [D00000000] +11:15:48 [ 32] [ 6] [621354] +11:15:48 [ 35] [ 27] [1808930900017526=1803500525] +11:15:48 [ 37] [ 12] [507904228866] +11:15:48 [ 41] [ 8] [05004600] +11:15:48 [ 42] [ 15] [NATIVE ] +11:15:48 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +11:15:48 [ 49] [ 3] [418] +11:15:48 [ 52] [ 16] [C7759AF43F337B49] +11:15:48 ============================================================================ +11:15:48 + + +waiting on router queue for slot.... +11:15:48 Sending to : +11:15:48 ============================================================================ +11:15:48 Sending to : +11:15:48 ============================================================================ +11:15:48 ============================================================================ +11:15:48 Slot Id : <114> +11:15:48 Transaction Type : REQUEST +11:15:48 Received From : +11:15:48 ============================================================================ +11:15:48 FNo. Len. Field Value +11:15:48 ============================================================================ +11:15:48 [ 1] [ 4] [0200] +11:15:48 [ 2] [ 16] [1808930900017526] +11:15:48 [ 3] [ 6] [301000] +11:15:48 [ 4] [ 12] [000000000000] +11:15:48 [ 7] [ 10] [0320111544] +11:15:48 [ 11] [ 6] [726525] +11:15:48 [ 12] [ 6] [111544] +11:15:48 [ 13] [ 4] [0320] +11:15:48 [ 15] [ 4] [0320] +11:15:48 [ 18] [ 4] [6011] +11:15:48 [ 22] [ 3] [900] +11:15:48 [ 25] [ 2] [02] +11:15:48 [ 28] [ 9] [D00000000] +11:15:48 [ 32] [ 6] [621354] +11:15:48 [ 35] [ 27] [1808930900017526=1803500525] +11:15:48 [ 37] [ 12] [507904228866] +11:15:48 [ 41] [ 8] [05004600] +11:15:48 [ 42] [ 15] [NATIVE ] +11:15:48 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +11:15:48 [ 49] [ 3] [418] +11:15:48 [ 52] [ 16] [C7759AF43F337B49] +11:15:48 ============================================================================ +11:15:48 + + +waiting on router queue for slot.... +11:15:48 Sending to : +11:15:48 ============================================================================ +11:15:48 ============================================================================ +11:15:48 Slot Id : <114> +11:15:48 Transaction Type : REQUEST +11:15:48 Received From : +11:15:48 ============================================================================ +11:15:48 FNo. Len. Field Value +11:15:48 ============================================================================ +11:15:48 [ 1] [ 4] [0200] +11:15:48 [ 2] [ 16] [1808930900017526] +11:15:48 [ 3] [ 6] [301000] +11:15:48 [ 4] [ 12] [000000000000] +11:15:48 [ 7] [ 10] [0320111544] +11:15:48 [ 11] [ 6] [726525] +11:15:48 [ 12] [ 6] [111544] +11:15:48 [ 13] [ 4] [0320] +11:15:48 [ 15] [ 4] [0320] +11:15:48 [ 18] [ 4] [6011] +11:15:48 [ 22] [ 3] [900] +11:15:48 [ 25] [ 2] [02] +11:15:48 [ 28] [ 9] [D00000000] +11:15:48 [ 32] [ 6] [621354] +11:15:48 [ 35] [ 27] [1808930900017526=1803500525] +11:15:48 [ 37] [ 12] [507904228866] +11:15:48 [ 41] [ 8] [05004600] +11:15:48 [ 42] [ 15] [NATIVE ] +11:15:48 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +11:15:48 [ 49] [ 3] [418] +11:15:48 [ 52] [ 16] [2920CCB452969798] +11:15:48 ============================================================================ +11:15:48 + + +waiting on router queue for slot.... +11:15:48 Sending to : <2> +11:15:48 ============================================================================ +11:15:49 ============================================================================ +11:15:49 Slot Id : <83> +11:15:49 Transaction Type : REQUEST +11:15:49 Received From : +11:15:49 ============================================================================ +11:15:49 FNo. Len. Field Value +11:15:49 ============================================================================ +11:15:49 [ 1] [ 4] [0200] +11:15:49 [ 2] [ 16] [6213548000509206] +11:15:49 [ 3] [ 6] [010000] +11:15:49 [ 4] [ 12] [000010000000] +11:15:49 [ 7] [ 10] [0320111340] +11:15:49 [ 11] [ 6] [940700] +11:15:49 [ 12] [ 6] [111340] +11:15:49 [ 13] [ 4] [0320] +11:15:49 [ 15] [ 4] [0320] +11:15:49 [ 18] [ 4] [6011] +11:15:49 [ 19] [ 3] [418] +11:15:49 [ 22] [ 3] [021] +11:15:49 [ 25] [ 2] [01] +11:15:49 [ 28] [ 9] [D00002000] +11:15:49 [ 32] [ 6] [668899] +11:15:49 [ 35] [ 32] [6213548000509206=181112010920283] +11:15:49 [ 37] [ 12] [507900329879] +11:15:49 [ 41] [ 8] [03013003] +11:15:49 [ 42] [ 15] [APT ] +11:15:49 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:15:49 [ 49] [ 3] [418] +11:15:49 [ 52] [ 16] [BF75F8749AA47306] +11:15:49 ============================================================================ +11:15:49 + + +waiting on router queue for slot.... +11:15:49 Sending to : +11:15:49 ============================================================================ +11:15:49 Sending to : +11:15:49 ============================================================================ +11:15:49 ============================================================================ +11:15:49 Slot Id : <83> +11:15:49 Transaction Type : REQUEST +11:15:49 Received From : +11:15:49 ============================================================================ +11:15:49 FNo. Len. Field Value +11:15:49 ============================================================================ +11:15:49 [ 1] [ 4] [0200] +11:15:49 [ 2] [ 16] [6213548000509206] +11:15:49 [ 3] [ 6] [010000] +11:15:49 [ 4] [ 12] [000010000000] +11:15:49 [ 7] [ 10] [0320111340] +11:15:49 [ 11] [ 6] [940700] +11:15:49 [ 12] [ 6] [111340] +11:15:49 [ 13] [ 4] [0320] +11:15:49 [ 15] [ 4] [0320] +11:15:49 [ 18] [ 4] [6011] +11:15:49 [ 19] [ 3] [418] +11:15:49 [ 22] [ 3] [021] +11:15:49 [ 25] [ 2] [01] +11:15:49 [ 28] [ 9] [D00002000] +11:15:49 [ 32] [ 6] [668899] +11:15:49 [ 35] [ 32] [6213548000509206=181112010920283] +11:15:49 [ 37] [ 12] [507900329879] +11:15:49 [ 41] [ 8] [03013003] +11:15:49 [ 42] [ 15] [APT ] +11:15:49 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:15:49 [ 49] [ 3] [418] +11:15:49 [ 52] [ 16] [BF75F8749AA47306] +11:15:49 ============================================================================ +11:15:49 + + +waiting on router queue for slot.... +11:15:49 Sending to : +11:15:49 ============================================================================ +11:15:49 ============================================================================ +11:15:49 Slot Id : <83> +11:15:49 Transaction Type : REQUEST +11:15:49 Received From : +11:15:49 ============================================================================ +11:15:49 FNo. Len. Field Value +11:15:49 ============================================================================ +11:15:49 [ 1] [ 4] [0200] +11:15:49 [ 2] [ 16] [6213548000509206] +11:15:49 [ 3] [ 6] [010000] +11:15:49 [ 4] [ 12] [000010000000] +11:15:49 [ 7] [ 10] [0320111340] +11:15:49 [ 11] [ 6] [940700] +11:15:49 [ 12] [ 6] [111340] +11:15:49 [ 13] [ 4] [0320] +11:15:49 [ 15] [ 4] [0320] +11:15:49 [ 18] [ 4] [6011] +11:15:49 [ 19] [ 3] [418] +11:15:49 [ 22] [ 3] [021] +11:15:49 [ 25] [ 2] [01] +11:15:49 [ 28] [ 9] [D00002000] +11:15:49 [ 32] [ 6] [668899] +11:15:49 [ 35] [ 32] [6213548000509206=181112010920283] +11:15:49 [ 37] [ 12] [507900329879] +11:15:49 [ 41] [ 8] [03013003] +11:15:49 [ 42] [ 15] [APT ] +11:15:49 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +11:15:49 [ 49] [ 3] [418] +11:15:49 [ 52] [ 16] [A78B4DB47D419F13] +11:15:49 ============================================================================ +11:15:49 + + +waiting on router queue for slot.... +11:15:49 Sending to : <0> +11:15:49 ============================================================================ +11:15:50 ============================================================================ +11:15:50 Slot Id : <83> +11:15:50 Transaction Type : RESPONSE +11:15:50 Received From : +11:15:50 ============================================================================ +11:15:50 FNo. Len. Field Value +11:15:50 ============================================================================ +11:15:50 [ 1] [ 4] [0210] +11:15:50 [ 2] [ 16] [6213548000509206] +11:15:50 [ 3] [ 6] [010000] +11:15:50 [ 4] [ 12] [000010000000] +11:15:50 [ 7] [ 10] [0320111340] +11:15:50 [ 11] [ 6] [940700] +11:15:50 [ 12] [ 6] [111340] +11:15:50 [ 13] [ 4] [0320] +11:15:50 [ 15] [ 4] [0320] +11:15:50 [ 18] [ 4] [6011] +11:15:50 [ 19] [ 3] [418] +11:15:50 [ 32] [ 6] [668899] +11:15:50 [ 35] [ 32] [6213548000509206=181112010920283] +11:15:50 [ 37] [ 12] [507900329879] +11:15:50 [ 38] [ 6] [551406] +11:15:50 [ 39] [ 2] [00] +11:15:50 [ 41] [ 8] [03013003] +11:15:50 [ 49] [ 3] [418] +11:15:50 [ 54] [ 40] [0001418C0004563035470002418C000456303547] +11:15:50 ============================================================================ +11:15:50 Sending to : +11:15:50 ============================================================================ +11:15:50 + + +waiting on router queue for slot.... +11:15:51 ============================================================================ +11:15:51 Slot Id : <83> +11:15:51 Transaction Type : RESPONSE +11:15:51 Received From : +11:15:51 ============================================================================ +11:15:51 FNo. Len. Field Value +11:15:51 ============================================================================ +11:15:51 [ 1] [ 4] [0210] +11:15:51 [ 2] [ 16] [6213548000509206] +11:15:51 [ 3] [ 6] [010000] +11:15:51 [ 4] [ 12] [000010000000] +11:15:51 [ 7] [ 10] [0320111340] +11:15:51 [ 11] [ 6] [940700] +11:15:51 [ 12] [ 6] [111340] +11:15:51 [ 13] [ 4] [0320] +11:15:51 [ 15] [ 4] [0320] +11:15:51 [ 18] [ 4] [6011] +11:15:51 [ 19] [ 3] [418] +11:15:51 [ 32] [ 6] [668899] +11:15:51 [ 35] [ 32] [6213548000509206=181112010920283] +11:15:51 [ 37] [ 12] [507900329879] +11:15:51 [ 38] [ 6] [551406] +11:15:51 [ 39] [ 2] [00] +11:15:51 [ 41] [ 8] [03013003] +11:15:51 [ 49] [ 3] [418] +11:15:51 [ 54] [ 40] [0001418C0004563035470002418C000456303547] +11:15:51 ============================================================================ +11:15:51 Calculate Source COMM Id = 4 +11:15:51 ============================================================================ +11:15:51 + + +waiting on router queue for slot.... +11:15:53 ============================================================================ +11:15:53 Slot Id : <114> +11:15:53 Transaction Type : RESPONSE +11:15:53 Received From : +11:15:53 ============================================================================ +11:15:53 FNo. Len. Field Value +11:15:53 ============================================================================ +11:15:53 [ 1] [ 4] [0210] +11:15:53 [ 2] [ 16] [1808930900017526] +11:15:53 [ 3] [ 6] [301000] +11:15:53 [ 7] [ 10] [0320111544] +11:15:53 [ 11] [ 6] [726525] +11:15:53 [ 12] [ 6] [111544] +11:15:53 [ 13] [ 4] [0320] +11:15:53 [ 14] [ 4] [1803] +11:15:53 [ 19] [ 3] [418] +11:15:53 [ 32] [ 6] [621354] +11:15:53 [ 37] [ 12] [507904228866] +11:15:53 [ 38] [ 6] [726525] +11:15:53 [ 39] [ 2] [00] +11:15:53 [ 41] [ 8] [05004600] +11:15:53 [ 49] [ 3] [418] +11:15:53 [ 52] [ 16] [2920CCB452969798] +11:15:53 [ 54] [ 20] [1002418C000035907200] +11:15:53 ============================================================================ +11:15:53 Sending to : +11:15:53 ============================================================================ +11:15:53 + + +waiting on router queue for slot.... +11:15:55 ============================================================================ +11:15:55 Slot Id : <114> +11:15:55 Transaction Type : RESPONSE +11:15:55 Received From : +11:15:55 ============================================================================ +11:15:55 FNo. Len. Field Value +11:15:55 ============================================================================ +11:15:55 [ 1] [ 4] [0210] +11:15:55 [ 2] [ 16] [1808930900017526] +11:15:55 [ 3] [ 6] [301000] +11:15:55 [ 7] [ 10] [0320111544] +11:15:55 [ 11] [ 6] [726525] +11:15:55 [ 12] [ 6] [111544] +11:15:55 [ 13] [ 4] [0320] +11:15:55 [ 14] [ 4] [1803] +11:15:55 [ 19] [ 3] [418] +11:15:55 [ 32] [ 6] [621354] +11:15:55 [ 37] [ 12] [507904228866] +11:15:55 [ 38] [ 6] [726525] +11:15:55 [ 39] [ 2] [00] +11:15:55 [ 41] [ 8] [05004600] +11:15:55 [ 49] [ 3] [418] +11:15:55 [ 52] [ 16] [2920CCB452969798] +11:15:55 [ 54] [ 20] [1002418C000035907200] +11:15:55 ============================================================================ +11:15:55 Calculate Source COMM Id = 0 +11:15:55 ============================================================================ +11:15:55 + + +waiting on router queue for slot.... +11:15:56 ============================================================================ +11:15:56 Slot Id : <77> +11:15:56 11:15:56 Received From : <> +11:15:56 ============================================================================ +11:15:56 FNo. Len. Field Value +11:15:56 ============================================================================ +11:15:56 Sending to : +11:15:56 ============================================================================ +11:15:56 + + +waiting on router queue for slot.... +11:16:04 ============================================================================ +11:16:04 Slot Id : <118> +11:16:04 Transaction Type : REQUEST +11:16:04 Received From : +11:16:04 ============================================================================ +11:16:04 FNo. Len. Field Value +11:16:04 ============================================================================ +11:16:04 [ 1] [ 4] [0800] +11:16:04 [ 7] [ 10] [0320041512] +11:16:04 [ 11] [ 6] [156046] +11:16:04 [ 70] [ 3] [301] +11:16:04 ============================================================================ +11:16:04 + + +waiting on router queue for slot.... +11:16:04 Sending to : +11:16:04 ============================================================================ +11:16:04 ============================================================================ +11:16:04 Slot Id : <118> +11:16:04 Transaction Type : RESPONSE +11:16:04 Received From : +11:16:04 ============================================================================ +11:16:04 FNo. Len. Field Value +11:16:04 ============================================================================ +11:16:04 [ 1] [ 4] [0810] +11:16:04 [ 7] [ 10] [0320041512] +11:16:04 [ 11] [ 6] [156046] +11:16:04 [ 39] [ 2] [00] +11:16:04 [ 70] [ 3] [301] +11:16:04 ============================================================================ +11:16:04 Calculate Source COMM Id = 2 +11:16:04 ============================================================================ +11:16:04 + + +waiting on router queue for slot.... +11:16:14 ============================================================================ +11:16:14 Slot Id : <74> +11:16:14 Transaction Type : REQUEST +11:16:14 Received From : +11:16:14 ============================================================================ +11:16:14 FNo. Len. Field Value +11:16:14 ============================================================================ +11:16:14 [ 1] [ 4] [0800] +11:16:14 [ 7] [ 10] [0320041522] +11:16:14 [ 11] [ 6] [156047] +11:16:14 [ 70] [ 3] [301] +11:16:14 ============================================================================ +11:16:14 + + +waiting on router queue for slot.... +11:16:14 Sending to : +11:16:14 ============================================================================ +11:16:14 ============================================================================ +11:16:14 Slot Id : <74> +11:16:14 Transaction Type : RESPONSE +11:16:14 Received From : +11:16:14 ============================================================================ +11:16:14 FNo. Len. Field Value +11:16:14 ============================================================================ +11:16:14 [ 1] [ 4] [0810] +11:16:14 [ 7] [ 10] [0320041522] +11:16:14 [ 11] [ 6] [156047] +11:16:14 [ 39] [ 2] [00] +11:16:14 [ 70] [ 3] [301] +11:16:14 ============================================================================ +11:16:14 Calculate Source COMM Id = 2 +11:16:14 ============================================================================ +11:16:14 + + +waiting on router queue for slot.... +11:16:17 ============================================================================ +11:16:17 Slot Id : <107> +11:16:17 Transaction Type : REQUEST +11:16:17 Received From : +11:16:17 ============================================================================ +11:16:17 FNo. Len. Field Value +11:16:17 ============================================================================ +11:16:17 [ 1] [ 4] [0200] +11:16:17 [ 2] [ 16] [6213541000137698] +11:16:17 [ 3] [ 6] [012000] +11:16:17 [ 4] [ 12] [000100000000] +11:16:17 [ 7] [ 10] [0320112405] +11:16:17 [ 11] [ 6] [001977] +11:16:17 [ 12] [ 6] [112405] +11:16:17 [ 13] [ 4] [0320] +11:16:17 [ 14] [ 4] [4912] +11:16:17 [ 15] [ 4] [0320] +11:16:17 [ 18] [ 4] [6011] +11:16:17 [ 22] [ 3] [900] +11:16:17 [ 25] [ 2] [02] +11:16:17 [ 28] [ 9] [D00002000] +11:16:17 [ 32] [ 6] [220699] +11:16:17 [ 35] [ 32] [6213541000137698=491212013769726] +11:16:17 [ 37] [ 12] [507900296958] +11:16:17 [ 41] [ 8] [01001600] +11:16:17 [ 42] [ 15] [APTRA ] +11:16:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:16:17 [ 49] [ 3] [418] +11:16:17 [ 52] [ 16] [74142DA686DC7F41] +11:16:17 ============================================================================ +11:16:17 + + +waiting on router queue for slot.... +11:16:17 Sending to : +11:16:17 ============================================================================ +11:16:17 Sending to : +11:16:17 ============================================================================ +11:16:18 ============================================================================ +11:16:18 Slot Id : <107> +11:16:18 Transaction Type : REQUEST +11:16:18 Received From : +11:16:18 ============================================================================ +11:16:18 FNo. Len. Field Value +11:16:18 ============================================================================ +11:16:18 [ 1] [ 4] [0200] +11:16:18 [ 2] [ 16] [6213541000137698] +11:16:18 [ 3] [ 6] [012000] +11:16:18 [ 4] [ 12] [000100000000] +11:16:18 [ 7] [ 10] [0320112405] +11:16:18 [ 11] [ 6] [001977] +11:16:18 [ 12] [ 6] [112405] +11:16:18 [ 13] [ 4] [0320] +11:16:18 [ 14] [ 4] [4912] +11:16:18 [ 15] [ 4] [0320] +11:16:18 [ 18] [ 4] [6011] +11:16:18 [ 22] [ 3] [900] +11:16:18 [ 25] [ 2] [02] +11:16:18 [ 28] [ 9] [D00002000] +11:16:18 [ 32] [ 6] [220699] +11:16:18 [ 35] [ 32] [6213541000137698=491212013769726] +11:16:18 [ 37] [ 12] [507900296958] +11:16:18 [ 41] [ 8] [01001600] +11:16:18 [ 42] [ 15] [APTRA ] +11:16:18 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:16:18 [ 49] [ 3] [418] +11:16:18 [ 52] [ 16] [74142DA686DC7F41] +11:16:18 ============================================================================ +11:16:18 + + +waiting on router queue for slot.... +11:16:18 Sending to : +11:16:18 ============================================================================ +11:16:18 ============================================================================ +11:16:18 Slot Id : <107> +11:16:18 Transaction Type : REQUEST +11:16:18 Received From : +11:16:18 ============================================================================ +11:16:18 FNo. Len. Field Value +11:16:18 ============================================================================ +11:16:18 [ 1] [ 4] [0200] +11:16:18 [ 2] [ 16] [6213541000137698] +11:16:18 [ 3] [ 6] [012000] +11:16:18 [ 4] [ 12] [000100000000] +11:16:18 [ 7] [ 10] [0320112405] +11:16:18 [ 11] [ 6] [001977] +11:16:18 [ 12] [ 6] [112405] +11:16:18 [ 13] [ 4] [0320] +11:16:18 [ 14] [ 4] [4912] +11:16:18 [ 15] [ 4] [0320] +11:16:18 [ 18] [ 4] [6011] +11:16:18 [ 22] [ 3] [900] +11:16:18 [ 25] [ 2] [02] +11:16:18 [ 28] [ 9] [D00002000] +11:16:18 [ 32] [ 6] [220699] +11:16:18 [ 35] [ 32] [6213541000137698=491212013769726] +11:16:18 [ 37] [ 12] [507900296958] +11:16:18 [ 41] [ 8] [01001600] +11:16:18 [ 42] [ 15] [APTRA ] +11:16:18 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:16:18 [ 49] [ 3] [418] +11:16:18 [ 52] [ 16] [EC93B3133177F6F7] +11:16:18 ============================================================================ +11:16:18 + + +waiting on router queue for slot.... +11:16:18 Sending to : <0> +11:16:18 ============================================================================ +11:16:18 ============================================================================ +11:16:18 Slot Id : <107> +11:16:18 Transaction Type : RESPONSE +11:16:18 Received From : +11:16:18 ============================================================================ +11:16:18 FNo. Len. Field Value +11:16:18 ============================================================================ +11:16:18 [ 1] [ 4] [0210] +11:16:18 [ 2] [ 16] [6213541000137698] +11:16:18 [ 3] [ 6] [012000] +11:16:18 [ 4] [ 12] [000100000000] +11:16:18 [ 7] [ 10] [0320112405] +11:16:18 [ 11] [ 6] [001977] +11:16:18 [ 12] [ 6] [112405] +11:16:18 [ 13] [ 4] [0320] +11:16:18 [ 15] [ 4] [0320] +11:16:18 [ 18] [ 4] [6011] +11:16:18 [ 32] [ 6] [220699] +11:16:18 [ 35] [ 32] [6213541000137698=491212013769726] +11:16:18 [ 37] [ 12] [507900296958] +11:16:18 [ 38] [ 6] [001977] +11:16:18 [ 39] [ 2] [51] +11:16:18 [ 41] [ 8] [01001600] +11:16:18 [ 49] [ 3] [418] +11:16:18 [ 54] [ 40] [2001418C0000036567272002418C000003656727] +11:16:18 ============================================================================ +11:16:18 Sending to : +11:16:18 ============================================================================ +11:16:18 + + +waiting on router queue for slot.... +11:16:19 ============================================================================ +11:16:19 Slot Id : <107> +11:16:19 Transaction Type : RESPONSE +11:16:19 Received From : +11:16:19 ============================================================================ +11:16:19 FNo. Len. Field Value +11:16:19 ============================================================================ +11:16:19 [ 1] [ 4] [0210] +11:16:19 [ 2] [ 16] [6213541000137698] +11:16:19 [ 3] [ 6] [012000] +11:16:19 [ 4] [ 12] [000100000000] +11:16:19 [ 7] [ 10] [0320112405] +11:16:19 [ 11] [ 6] [001977] +11:16:19 [ 12] [ 6] [112405] +11:16:19 [ 13] [ 4] [0320] +11:16:19 [ 15] [ 4] [0320] +11:16:19 [ 18] [ 4] [6011] +11:16:19 [ 32] [ 6] [220699] +11:16:19 [ 35] [ 32] [6213541000137698=491212013769726] +11:16:19 [ 37] [ 12] [507900296958] +11:16:19 [ 38] [ 6] [001977] +11:16:19 [ 39] [ 2] [51] +11:16:19 [ 41] [ 8] [01001600] +11:16:19 [ 49] [ 3] [418] +11:16:19 [ 54] [ 40] [2001418C0000036567272002418C000003656727] +11:16:19 ============================================================================ +11:16:19 Calculate Source COMM Id = 1 +11:16:19 ============================================================================ +11:16:19 + + +waiting on router queue for slot.... +11:16:20 ============================================================================ +11:16:20 Slot Id : <121> +11:16:20 Transaction Type : REQUEST +11:16:20 Received From : +11:16:20 ============================================================================ +11:16:20 FNo. Len. Field Value +11:16:20 ============================================================================ +11:16:20 [ 1] [ 4] [0800] +11:16:20 [ 7] [ 10] [0320041412] +11:16:20 [ 11] [ 6] [080741] +11:16:20 [ 37] [ 12] [57911080741] +11:16:20 [ 70] [ 3] [301] +11:16:20 ============================================================================ +11:16:20 + + +waiting on router queue for slot.... +11:16:20 Sending to : +11:16:20 ============================================================================ +11:16:20 ============================================================================ +11:16:21 Slot Id : <121> +11:16:21 Transaction Type : RESPONSE +11:16:21 Received From : +11:16:21 ============================================================================ +11:16:21 FNo. Len. Field Value +11:16:21 ============================================================================ +11:16:21 [ 1] [ 4] [0810] +11:16:21 [ 7] [ 10] [0320041412] +11:16:21 [ 11] [ 6] [080741] +11:16:21 [ 37] [ 12] [579110807410] +11:16:21 [ 39] [ 2] [00] +11:16:21 [ 70] [ 3] [810] +11:16:21 ============================================================================ +11:16:21 Calculate Source COMM Id = 4 +11:16:21 ============================================================================ +11:16:21 + + +waiting on router queue for slot.... +11:16:26 ============================================================================ +11:16:26 Slot Id : <115> +11:16:26 Transaction Type : REQUEST +11:16:26 Received From : +11:16:26 ============================================================================ +11:16:26 FNo. Len. Field Value +11:16:26 ============================================================================ +11:16:26 [ 1] [ 4] [0800] +11:16:26 [ 7] [ 10] [0320041533] +11:16:26 [ 11] [ 6] [156048] +11:16:26 [ 70] [ 3] [301] +11:16:26 ============================================================================ +11:16:26 + + +waiting on router queue for slot.... +11:16:26 Sending to : +11:16:26 ============================================================================ +11:16:26 ============================================================================ +11:16:26 Slot Id : <115> +11:16:26 Transaction Type : RESPONSE +11:16:26 Received From : +11:16:26 ============================================================================ +11:16:26 FNo. Len. Field Value +11:16:26 ============================================================================ +11:16:26 [ 1] [ 4] [0810] +11:16:26 [ 7] [ 10] [0320041533] +11:16:26 [ 11] [ 6] [156048] +11:16:26 [ 39] [ 2] [00] +11:16:26 [ 70] [ 3] [301] +11:16:26 ============================================================================ +11:16:26 Calculate Source COMM Id = 2 +11:16:26 ============================================================================ +11:16:26 + + +waiting on router queue for slot.... +11:16:26 ============================================================================ +11:16:26 Slot Id : <92> +11:16:26 Transaction Type : REQUEST +11:16:26 Received From : +11:16:26 ============================================================================ +11:16:26 FNo. Len. Field Value +11:16:26 ============================================================================ +11:16:26 [ 1] [ 4] [0800] +11:16:26 [ 2] [ 5] [02531] +11:16:26 [ 3] [ 6] [579118] +11:16:26 [ 7] [ 10] [0320041626] +11:16:26 [ 11] [ 6] [807066] +11:16:26 [ 15] [ 10] [0320041626] +11:16:26 [ 37] [ 11] [57911807066] +11:16:26 [ 70] [ 3] [001] +11:16:26 ============================================================================ +11:16:26 + + +waiting on router queue for slot.... +11:16:26 ============================================================================ +11:16:26 Slot Id : <92> +11:16:26 Transaction Type : RESPONSE +11:16:26 Received From : +11:16:26 ============================================================================ +11:16:26 FNo. Len. Field Value +11:16:26 ============================================================================ +11:16:26 [ 1] [ 4] [0810] +11:16:26 [ 7] [ 10] [0320041626] +11:16:26 [ 11] [ 6] [807066] +11:16:26 [ 15] [ 4] [0320] +11:16:26 [ 37] [ 12] [57911807066] +11:16:26 [ 39] [ 2] [00] +11:16:26 [ 70] [ 3] [001] +11:16:26 ============================================================================ +11:16:26 Sending to : +11:16:26 ============================================================================ +11:16:26 + + +waiting on router queue for slot.... +11:16:40 ============================================================================ +11:16:40 Slot Id : <108> +11:16:40 Transaction Type : REQUEST +11:16:40 Received From : +11:16:40 ============================================================================ +11:16:40 FNo. Len. Field Value +11:16:40 ============================================================================ +11:16:40 [ 1] [ 4] [0800] +11:16:40 [ 7] [ 10] [0320041548] +11:16:40 [ 11] [ 6] [156049] +11:16:40 [ 70] [ 3] [301] +11:16:40 ============================================================================ +11:16:40 + + +waiting on router queue for slot.... +11:16:40 Sending to : +11:16:40 ============================================================================ +11:16:40 ============================================================================ +11:16:40 Slot Id : <108> +11:16:40 Transaction Type : RESPONSE +11:16:40 Received From : +11:16:40 ============================================================================ +11:16:40 FNo. Len. Field Value +11:16:40 ============================================================================ +11:16:40 [ 1] [ 4] [0810] +11:16:40 [ 7] [ 10] [0320041548] +11:16:40 [ 11] [ 6] [156049] +11:16:40 [ 39] [ 2] [00] +11:16:40 [ 70] [ 3] [301] +11:16:40 ============================================================================ +11:16:40 Calculate Source COMM Id = 2 +11:16:40 ============================================================================ +11:16:40 + + +waiting on router queue for slot.... +11:16:51 ============================================================================ +11:16:51 Slot Id : <113> +11:16:51 Transaction Type : REQUEST +11:16:51 Received From : +11:16:51 ============================================================================ +11:16:51 FNo. Len. Field Value +11:16:51 ============================================================================ +11:16:51 [ 1] [ 4] [0200] +11:16:51 [ 2] [ 16] [6213544002151121] +11:16:51 [ 3] [ 6] [011000] +11:16:51 [ 4] [ 12] [000005000000] +11:16:51 [ 7] [ 10] [0320041557] +11:16:51 [ 11] [ 6] [268423] +11:16:51 [ 12] [ 6] [111557] +11:16:51 [ 13] [ 4] [0320] +11:16:51 [ 14] [ 4] [4912] +11:16:51 [ 15] [ 4] [0320] +11:16:51 [ 18] [ 4] [6011] +11:16:51 [ 19] [ 3] [418] +11:16:51 [ 22] [ 3] [021] +11:16:51 [ 25] [ 2] [01] +11:16:51 [ 28] [ 9] [D00002000] +11:16:51 [ 32] [ 6] [180893] +11:16:51 [ 35] [ 32] [6213544002151121=491212015112293] +11:16:51 [ 37] [ 12] [507904268423] +11:16:51 [ 41] [ 8] [0108THNG] +11:16:51 [ 42] [ 15] [999999 ] +11:16:51 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +11:16:51 [ 49] [ 3] [418] +11:16:51 [ 52] [ 16] [4DB7989369A11666] +11:16:51 ============================================================================ +11:16:51 + + +waiting on router queue for slot.... +11:16:51 Sending to : +11:16:51 ============================================================================ +11:16:51 Sending to : +11:16:51 ============================================================================ +11:16:51 ============================================================================ +11:16:51 Slot Id : <94> +11:16:51 Transaction Type : REQUEST +11:16:51 Received From : +11:16:51 ============================================================================ +11:16:51 FNo. Len. Field Value +11:16:51 ============================================================================ +11:16:51 [ 1] [ 4] [0800] +11:16:51 [ 7] [ 10] [0320041558] +11:16:51 [ 11] [ 6] [156050] +11:16:51 [ 70] [ 3] [301] +11:16:51 ============================================================================ +11:16:51 + + +waiting on router queue for slot.... +11:16:51 Sending to : +11:16:51 ============================================================================ +11:16:51 ============================================================================ +11:16:51 Slot Id : <94> +11:16:51 Transaction Type : RESPONSE +11:16:51 Received From : +11:16:51 ============================================================================ +11:16:51 FNo. Len. Field Value +11:16:51 ============================================================================ +11:16:51 [ 1] [ 4] [0810] +11:16:51 [ 7] [ 10] [0320041558] +11:16:51 [ 11] [ 6] [156050] +11:16:51 [ 39] [ 2] [00] +11:16:51 [ 70] [ 3] [301] +11:16:51 ============================================================================ +11:16:51 Calculate Source COMM Id = 2 +11:16:51 ============================================================================ +11:16:51 + + +waiting on router queue for slot.... +11:16:51 ============================================================================ +11:16:51 Slot Id : <113> +11:16:51 Transaction Type : REQUEST +11:16:51 Received From : +11:16:51 ============================================================================ +11:16:51 FNo. Len. Field Value +11:16:51 ============================================================================ +11:16:51 [ 1] [ 4] [0200] +11:16:51 [ 2] [ 16] [6213544002151121] +11:16:51 [ 3] [ 6] [011000] +11:16:51 [ 4] [ 12] [000005000000] +11:16:51 [ 7] [ 10] [0320041557] +11:16:51 [ 11] [ 6] [268423] +11:16:51 [ 12] [ 6] [111557] +11:16:51 [ 13] [ 4] [0320] +11:16:51 [ 14] [ 4] [4912] +11:16:51 [ 15] [ 4] [0320] +11:16:51 [ 18] [ 4] [6011] +11:16:51 [ 19] [ 3] [418] +11:16:51 [ 22] [ 3] [021] +11:16:51 [ 25] [ 2] [01] +11:16:51 [ 28] [ 9] [D00002000] +11:16:51 [ 32] [ 6] [180893] +11:16:51 [ 35] [ 32] [6213544002151121=491212015112293] +11:16:51 [ 37] [ 12] [507904268423] +11:16:51 [ 41] [ 8] [0108THNG] +11:16:51 [ 42] [ 15] [999999 ] +11:16:51 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +11:16:51 [ 49] [ 3] [418] +11:16:51 [ 52] [ 16] [4DB7989369A11666] +11:16:51 ============================================================================ +11:16:51 + + +waiting on router queue for slot.... +11:16:51 Sending to : +11:16:51 ============================================================================ +11:16:51 ============================================================================ +11:16:51 Slot Id : <113> +11:16:51 Transaction Type : REQUEST +11:16:51 Received From : +11:16:51 ============================================================================ +11:16:51 FNo. Len. Field Value +11:16:51 ============================================================================ +11:16:51 [ 1] [ 4] [0200] +11:16:51 [ 2] [ 16] [6213544002151121] +11:16:51 [ 3] [ 6] [011000] +11:16:51 [ 4] [ 12] [000005000000] +11:16:51 [ 7] [ 10] [0320041557] +11:16:51 [ 11] [ 6] [268423] +11:16:51 [ 12] [ 6] [111557] +11:16:51 [ 13] [ 4] [0320] +11:16:51 [ 14] [ 4] [4912] +11:16:51 [ 15] [ 4] [0320] +11:16:51 [ 18] [ 4] [6011] +11:16:51 [ 19] [ 3] [418] +11:16:51 [ 22] [ 3] [021] +11:16:51 [ 25] [ 2] [01] +11:16:51 [ 28] [ 9] [D00002000] +11:16:51 [ 32] [ 6] [180893] +11:16:51 [ 35] [ 32] [6213544002151121=491212015112293] +11:16:51 [ 37] [ 12] [507904268423] +11:16:51 [ 41] [ 8] [0108THNG] +11:16:51 [ 42] [ 15] [999999 ] +11:16:51 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +11:16:51 [ 49] [ 3] [418] +11:16:51 [ 52] [ 16] [01FE934F216A5A44] +11:16:51 ============================================================================ +11:16:51 + + +waiting on router queue for slot.... +11:16:51 Sending to : <0> +11:16:51 ============================================================================ +11:16:52 ============================================================================ +11:16:52 Slot Id : <113> +11:16:52 Transaction Type : RESPONSE +11:16:52 Received From : +11:16:52 ============================================================================ +11:16:52 FNo. Len. Field Value +11:16:52 ============================================================================ +11:16:52 [ 1] [ 4] [0210] +11:16:52 [ 2] [ 16] [6213544002151121] +11:16:52 [ 3] [ 6] [011000] +11:16:52 [ 4] [ 12] [000005000000] +11:16:52 [ 7] [ 10] [0320041557] +11:16:52 [ 11] [ 6] [268423] +11:16:52 [ 12] [ 6] [111557] +11:16:52 [ 13] [ 4] [0320] +11:16:52 [ 15] [ 4] [0320] +11:16:52 [ 18] [ 4] [6011] +11:16:52 [ 19] [ 3] [418] +11:16:52 [ 32] [ 6] [180893] +11:16:52 [ 35] [ 32] [6213544002151121=491212015112293] +11:16:52 [ 37] [ 12] [507904268423] +11:16:52 [ 38] [ 6] [424285] +11:16:52 [ 39] [ 2] [00] +11:16:52 [ 41] [ 8] [0108THNG] +11:16:52 [ 49] [ 3] [418] +11:16:52 [ 54] [ 40] [1001418C0002196850141002418C000219685014] +11:16:52 ============================================================================ +11:16:52 Sending to : +11:16:52 ============================================================================ +11:16:52 + + +waiting on router queue for slot.... +11:16:53 ============================================================================ +11:16:53 Slot Id : <113> +11:16:53 Transaction Type : RESPONSE +11:16:53 Received From : +11:16:53 ============================================================================ +11:16:53 FNo. Len. Field Value +11:16:53 ============================================================================ +11:16:53 [ 1] [ 4] [0210] +11:16:53 [ 2] [ 16] [6213544002151121] +11:16:53 [ 3] [ 6] [011000] +11:16:53 [ 4] [ 12] [000005000000] +11:16:53 [ 7] [ 10] [0320041557] +11:16:53 [ 11] [ 6] [268423] +11:16:53 [ 12] [ 6] [111557] +11:16:53 [ 13] [ 4] [0320] +11:16:53 [ 15] [ 4] [0320] +11:16:53 [ 18] [ 4] [6011] +11:16:53 [ 19] [ 3] [418] +11:16:53 [ 32] [ 6] [180893] +11:16:53 [ 35] [ 32] [6213544002151121=491212015112293] +11:16:53 [ 37] [ 12] [507904268423] +11:16:53 [ 38] [ 6] [424285] +11:16:53 [ 39] [ 2] [00] +11:16:53 [ 41] [ 8] [0108THNG] +11:16:53 [ 49] [ 3] [418] +11:16:53 [ 54] [ 40] [1001418C0002196850141002418C000219685014] +11:16:53 ============================================================================ +11:16:53 Calculate Source COMM Id = 2 +11:16:53 ============================================================================ +11:16:53 + + +waiting on router queue for slot.... +11:16:54 ============================================================================ +11:16:54 Slot Id : <127> +11:16:54 Transaction Type : REQUEST +11:16:54 Received From : +11:16:54 ============================================================================ +11:16:54 FNo. Len. Field Value +11:16:54 ============================================================================ +11:16:54 [ 0] [ 4] [0420] +11:16:54 [ 1] [ 4] [0420] +11:16:54 [ 2] [ 16] [2206990000137026] +11:16:54 [ 3] [ 6] [011000] +11:16:54 [ 4] [ 12] [000090000000] +11:16:54 [ 6] [ 12] [000090000000] +11:16:54 [ 7] [ 10] [0320111504] +11:16:54 [ 11] [ 6] [726367] +11:16:54 [ 12] [ 6] [111504] +11:16:54 [ 13] [ 4] [0320] +11:16:54 [ 15] [ 4] [0320] +11:16:54 [ 18] [ 4] [6011] +11:16:54 [ 22] [ 3] [900] +11:16:54 [ 25] [ 2] [02] +11:16:54 [ 28] [ 9] [D00002000] +11:16:54 [ 32] [ 6] [621354] +11:16:54 [ 35] [ 32] [2206990000137026=980612610160808] +11:16:54 [ 37] [ 12] [507902381594] +11:16:54 [ 39] [ 2] [00] +11:16:54 [ 41] [ 8] [01006300] +11:16:54 [ 42] [ 15] [NATIVE ] +11:16:54 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +11:16:54 [ 49] [ 3] [418] +11:16:54 [ 52] [ 16] [9D800B3786AE631D] +11:16:54 ============================================================================ +11:16:54 + + +waiting on router queue for slot.... +11:16:55 ============================================================================ +11:16:55 Slot Id : <127> +11:16:55 Transaction Type : RESPONSE +11:16:55 Received From : +11:16:55 ============================================================================ +11:16:55 FNo. Len. Field Value +11:16:55 ============================================================================ +11:16:55 [ 1] [ 4] [0430] +11:16:55 [ 2] [ 16] [2206990000137026] +11:16:55 [ 3] [ 6] [011000] +11:16:55 [ 4] [ 12] [000090000000] +11:16:55 [ 7] [ 10] [0320111504] +11:16:55 [ 11] [ 6] [726367] +11:16:55 [ 32] [ 6] [621354] +11:16:55 [ 35] [ 32] [2206990000137026=980612610160808] +11:16:55 [ 37] [ 12] [507902381594] +11:16:55 [ 39] [ 2] [00] +11:16:55 [ 41] [ 8] [01006300] +11:16:55 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +11:16:55 [ 49] [ 3] [418] +11:16:55 [ 90] [ 42] [020072636703201115040000062135400000000000] +11:16:55 ============================================================================ +11:16:55 Successfully send the slot [127] To REVERSAL Process +11:16:55 + + +waiting on router queue for slot.... +11:17:02 ============================================================================ +11:17:02 Slot Id : <95> +11:17:02 Transaction Type : REQUEST +11:17:02 Received From : +11:17:02 ============================================================================ +11:17:02 FNo. Len. Field Value +11:17:02 ============================================================================ +11:17:02 [ 1] [ 4] [0200] +11:17:02 [ 2] [ 16] [1888880000097022] +11:17:02 [ 3] [ 6] [010000] +11:17:02 [ 4] [ 12] [000100000000] +11:17:02 [ 7] [ 10] [0320111453] +11:17:02 [ 11] [ 6] [940770] +11:17:02 [ 12] [ 6] [111453] +11:17:02 [ 13] [ 4] [0320] +11:17:02 [ 15] [ 4] [0320] +11:17:02 [ 18] [ 4] [6011] +11:17:02 [ 19] [ 3] [418] +11:17:02 [ 22] [ 3] [021] +11:17:02 [ 25] [ 2] [01] +11:17:02 [ 28] [ 9] [D00002000] +11:17:02 [ 32] [ 6] [668899] +11:17:02 [ 35] [ 32] [1888880000097022=000010100000330] +11:17:02 [ 37] [ 12] [507900136696] +11:17:02 [ 41] [ 8] [03020004] +11:17:02 [ 42] [ 15] [APT ] +11:17:02 [ 43] [ 40] [ DEPT OF VT CAPITAL OF FIN] +11:17:02 [ 49] [ 3] [418] +11:17:02 [ 52] [ 16] [B52ED7D4290406CD] +11:17:02 ============================================================================ +11:17:02 + + +waiting on router queue for slot.... +11:17:02 Sending to : +11:17:02 ============================================================================ +11:17:02 Sending to : +11:17:02 ============================================================================ +11:17:03 ============================================================================ +11:17:03 Slot Id : <95> +11:17:03 Transaction Type : REQUEST +11:17:03 Received From : +11:17:03 ============================================================================ +11:17:03 FNo. Len. Field Value +11:17:03 ============================================================================ +11:17:03 [ 1] [ 4] [0200] +11:17:03 [ 2] [ 16] [1888880000097022] +11:17:03 [ 3] [ 6] [010000] +11:17:03 [ 4] [ 12] [000100000000] +11:17:03 [ 7] [ 10] [0320111453] +11:17:03 [ 11] [ 6] [940770] +11:17:03 [ 12] [ 6] [111453] +11:17:03 [ 13] [ 4] [0320] +11:17:03 [ 15] [ 4] [0320] +11:17:03 [ 18] [ 4] [6011] +11:17:03 [ 19] [ 3] [418] +11:17:03 [ 22] [ 3] [021] +11:17:03 [ 25] [ 2] [01] +11:17:03 [ 28] [ 9] [D00002000] +11:17:03 [ 32] [ 6] [668899] +11:17:03 [ 35] [ 32] [1888880000097022=000010100000330] +11:17:03 [ 37] [ 12] [507900136696] +11:17:03 [ 41] [ 8] [03020004] +11:17:03 [ 42] [ 15] [APT ] +11:17:03 [ 43] [ 40] [ DEPT OF VT CAPITAL OF FIN] +11:17:03 [ 49] [ 3] [418] +11:17:03 [ 52] [ 16] [B52ED7D4290406CD] +11:17:03 ============================================================================ +11:17:03 + + +waiting on router queue for slot.... +11:17:03 Sending to : +11:17:03 ============================================================================ +11:17:03 ============================================================================ +11:17:03 Slot Id : <95> +11:17:03 Transaction Type : REQUEST +11:17:03 Received From : +11:17:03 ============================================================================ +11:17:03 FNo. Len. Field Value +11:17:03 ============================================================================ +11:17:03 [ 1] [ 4] [0200] +11:17:03 [ 2] [ 16] [1888880000097022] +11:17:03 [ 3] [ 6] [010000] +11:17:03 [ 4] [ 12] [000100000000] +11:17:03 [ 7] [ 10] [0320111453] +11:17:03 [ 11] [ 6] [940770] +11:17:03 [ 12] [ 6] [111453] +11:17:03 [ 13] [ 4] [0320] +11:17:03 [ 15] [ 4] [0320] +11:17:03 [ 18] [ 4] [6011] +11:17:03 [ 19] [ 3] [418] +11:17:03 [ 22] [ 3] [021] +11:17:03 [ 25] [ 2] [01] +11:17:03 [ 28] [ 9] [D00002000] +11:17:03 [ 32] [ 6] [668899] +11:17:03 [ 35] [ 32] [1888880000097022=000010100000330] +11:17:03 [ 37] [ 12] [507900136696] +11:17:03 [ 41] [ 8] [03020004] +11:17:03 [ 42] [ 15] [APT ] +11:17:03 [ 43] [ 40] [ DEPT OF VT CAPITAL OF FIN] +11:17:03 [ 49] [ 3] [418] +11:17:03 [ 52] [ 16] [E362B5C48E1B5E7D] +11:17:03 ============================================================================ +11:17:03 + + +waiting on router queue for slot.... +11:17:03 Sending to : <5> +11:17:03 ============================================================================ +11:17:08 ============================================================================ +11:17:08 Slot Id : <75> +11:17:08 Transaction Type : REQUEST +11:17:08 Received From : +11:17:08 ============================================================================ +11:17:08 FNo. Len. Field Value +11:17:08 ============================================================================ +11:17:08 [ 1] [ 4] [0800] +11:17:08 [ 7] [ 10] [0320041616] +11:17:08 [ 11] [ 6] [156051] +11:17:08 [ 70] [ 3] [301] +11:17:08 ============================================================================ +11:17:08 + + +waiting on router queue for slot.... +11:17:08 Sending to : +11:17:08 ============================================================================ +11:17:08 ============================================================================ +11:17:08 Slot Id : <75> +11:17:08 Transaction Type : RESPONSE +11:17:08 Received From : +11:17:08 ============================================================================ +11:17:08 FNo. Len. Field Value +11:17:08 ============================================================================ +11:17:08 [ 1] [ 4] [0810] +11:17:08 [ 7] [ 10] [0320041616] +11:17:08 [ 11] [ 6] [156051] +11:17:08 [ 39] [ 2] [00] +11:17:08 [ 70] [ 3] [301] +11:17:08 ============================================================================ +11:17:08 Calculate Source COMM Id = 2 +11:17:08 ============================================================================ +11:17:08 + + +waiting on router queue for slot.... +11:17:10 ============================================================================ +11:17:10 Slot Id : <125> +11:17:10 Transaction Type : REQUEST +11:17:10 Received From : +11:17:10 ============================================================================ +11:17:10 FNo. Len. Field Value +11:17:10 ============================================================================ +11:17:10 [ 1] [ 4] [0200] +11:17:10 [ 2] [ 16] [6213548000416345] +11:17:10 [ 3] [ 6] [301000] +11:17:10 [ 4] [ 12] [000000000000] +11:17:10 [ 7] [ 10] [0320111731] +11:17:10 [ 11] [ 6] [204516] +11:17:10 [ 12] [ 6] [231541] +11:17:10 [ 13] [ 4] [0319] +11:17:10 [ 14] [ 4] [1806] +11:17:10 [ 15] [ 4] [0319] +11:17:10 [ 18] [ 4] [6011] +11:17:10 [ 19] [ 3] [418] +11:17:10 [ 22] [ 3] [021] +11:17:10 [ 25] [ 2] [01] +11:17:10 [ 28] [ 9] [D00000000] +11:17:10 [ 32] [ 6] [198901] +11:17:10 [ 35] [ 32] [6213548000416345=180612011634030] +11:17:10 [ 37] [ 12] [507911204516] +11:17:10 [ 41] [ 8] [01529031] +11:17:10 [ 42] [ 15] [000000041529031] +11:17:10 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:17:10 [ 49] [ 3] [418] +11:17:10 [ 52] [ 16] [68876FD821F23522] +11:17:10 ============================================================================ +11:17:10 + + +waiting on router queue for slot.... +11:17:10 Sending to : +11:17:10 ============================================================================ +11:17:10 Sending to : +11:17:10 ============================================================================ +11:17:10 ============================================================================ +11:17:10 Slot Id : <125> +11:17:10 Transaction Type : REQUEST +11:17:10 Received From : +11:17:10 ============================================================================ +11:17:10 FNo. Len. Field Value +11:17:10 ============================================================================ +11:17:10 [ 1] [ 4] [0200] +11:17:10 [ 2] [ 16] [6213548000416345] +11:17:10 [ 3] [ 6] [301000] +11:17:10 [ 4] [ 12] [000000000000] +11:17:10 [ 7] [ 10] [0320111731] +11:17:10 [ 11] [ 6] [204516] +11:17:10 [ 12] [ 6] [231541] +11:17:10 [ 13] [ 4] [0319] +11:17:10 [ 14] [ 4] [1806] +11:17:10 [ 15] [ 4] [0319] +11:17:10 [ 18] [ 4] [6011] +11:17:10 [ 19] [ 3] [418] +11:17:10 [ 22] [ 3] [021] +11:17:10 [ 25] [ 2] [01] +11:17:10 [ 28] [ 9] [D00000000] +11:17:10 [ 32] [ 6] [198901] +11:17:10 [ 35] [ 32] [6213548000416345=180612011634030] +11:17:10 [ 37] [ 12] [507911204516] +11:17:10 [ 41] [ 8] [01529031] +11:17:10 [ 42] [ 15] [000000041529031] +11:17:10 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:17:10 [ 49] [ 3] [418] +11:17:10 [ 52] [ 16] [68876FD821F23522] +11:17:10 ============================================================================ +11:17:10 + + +waiting on router queue for slot.... +11:17:10 Sending to : +11:17:10 ============================================================================ +11:17:10 ============================================================================ +11:17:10 Slot Id : <125> +11:17:10 Transaction Type : REQUEST +11:17:10 Received From : +11:17:10 ============================================================================ +11:17:10 FNo. Len. Field Value +11:17:10 ============================================================================ +11:17:10 [ 1] [ 4] [0200] +11:17:10 [ 2] [ 16] [6213548000416345] +11:17:10 [ 3] [ 6] [301000] +11:17:10 [ 4] [ 12] [000000000000] +11:17:10 [ 7] [ 10] [0320111731] +11:17:10 [ 11] [ 6] [204516] +11:17:10 [ 12] [ 6] [231541] +11:17:10 [ 13] [ 4] [0319] +11:17:10 [ 14] [ 4] [1806] +11:17:10 [ 15] [ 4] [0319] +11:17:10 [ 18] [ 4] [6011] +11:17:10 [ 19] [ 3] [418] +11:17:10 [ 22] [ 3] [021] +11:17:10 [ 25] [ 2] [01] +11:17:10 [ 28] [ 9] [D00000000] +11:17:10 [ 32] [ 6] [198901] +11:17:10 [ 35] [ 32] [6213548000416345=180612011634030] +11:17:10 [ 37] [ 12] [507911204516] +11:17:10 [ 41] [ 8] [01529031] +11:17:10 [ 42] [ 15] [000000041529031] +11:17:10 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:17:10 [ 49] [ 3] [418] +11:17:10 [ 52] [ 16] [5C9E85DAF0934C22] +11:17:10 ============================================================================ +11:17:10 + + +waiting on router queue for slot.... +11:17:10 Sending to : <0> +11:17:10 ============================================================================ +11:17:10 ============================================================================ +11:17:10 Slot Id : <125> +11:17:10 Transaction Type : RESPONSE +11:17:10 Received From : +11:17:10 ============================================================================ +11:17:10 FNo. Len. Field Value +11:17:10 ============================================================================ +11:17:10 [ 1] [ 4] [0210] +11:17:10 [ 2] [ 16] [6213548000416345] +11:17:10 [ 3] [ 6] [301000] +11:17:10 [ 4] [ 12] [000000000000] +11:17:10 [ 7] [ 10] [0320111731] +11:17:10 [ 11] [ 6] [204516] +11:17:10 [ 12] [ 6] [231541] +11:17:10 [ 13] [ 4] [0319] +11:17:10 [ 15] [ 4] [0319] +11:17:10 [ 18] [ 4] [6011] +11:17:10 [ 19] [ 3] [418] +11:17:10 [ 32] [ 6] [198901] +11:17:10 [ 35] [ 32] [6213548000416345=180612011634030] +11:17:10 [ 37] [ 12] [507911204516] +11:17:10 [ 38] [ 6] [160693] +11:17:10 [ 39] [ 2] [00] +11:17:10 [ 41] [ 8] [01529031] +11:17:10 [ 49] [ 3] [418] +11:17:10 [ 54] [ 40] [1001418C0000038929371002418C000003892937] +11:17:10 ============================================================================ +11:17:10 Sending to : +11:17:10 ============================================================================ +11:17:10 + + +waiting on router queue for slot.... +11:17:10 ============================================================================ +11:17:10 Slot Id : <95> +11:17:10 Transaction Type : RESPONSE +11:17:10 Received From : +11:17:10 ============================================================================ +11:17:10 FNo. Len. Field Value +11:17:10 ============================================================================ +11:17:10 [ 1] [ 4] [0210] +11:17:10 [ 2] [ 16] [1888880000097022] +11:17:10 [ 3] [ 6] [010000] +11:17:10 [ 4] [ 12] [000100000000] +11:17:10 [ 7] [ 10] [0320111453] +11:17:10 [ 11] [ 6] [940770] +11:17:10 [ 12] [ 6] [111453] +11:17:10 [ 13] [ 4] [0320] +11:17:10 [ 15] [ 4] [0320] +11:17:10 [ 18] [ 4] [6011] +11:17:10 [ 19] [ 3] [418] +11:17:10 [ 32] [ 6] [668899] +11:17:10 [ 37] [ 12] [507900136696] +11:17:10 [ 38] [ 6] [280768] +11:17:10 [ 39] [ 2] [00] +11:17:10 [ 41] [ 8] [03020004] +11:17:10 [ 49] [ 3] [418] +11:17:10 [ 54] [ 0] [] +11:17:10 ============================================================================ +11:17:10 Sending to : +11:17:10 ============================================================================ +11:17:10 + + +waiting on router queue for slot.... +11:17:11 ============================================================================ +11:17:11 Slot Id : <125> +11:17:11 Transaction Type : RESPONSE +11:17:11 Received From : +11:17:11 ============================================================================ +11:17:11 FNo. Len. Field Value +11:17:11 ============================================================================ +11:17:11 [ 1] [ 4] [0210] +11:17:11 [ 2] [ 16] [6213548000416345] +11:17:11 [ 3] [ 6] [301000] +11:17:11 [ 4] [ 12] [000000000000] +11:17:11 [ 7] [ 10] [0320111731] +11:17:11 [ 11] [ 6] [204516] +11:17:11 [ 12] [ 6] [231541] +11:17:11 [ 13] [ 4] [0319] +11:17:11 [ 15] [ 4] [0319] +11:17:11 [ 18] [ 4] [6011] +11:17:11 [ 19] [ 3] [418] +11:17:11 [ 32] [ 6] [198901] +11:17:11 [ 35] [ 32] [6213548000416345=180612011634030] +11:17:11 [ 37] [ 12] [507911204516] +11:17:11 [ 38] [ 6] [160693] +11:17:11 [ 39] [ 2] [00] +11:17:11 [ 41] [ 8] [01529031] +11:17:11 [ 49] [ 3] [418] +11:17:11 [ 54] [ 40] [1001418C0000038929371002418C000003892937] +11:17:11 ============================================================================ +11:17:11 Calculate Source COMM Id = 5 +11:17:11 ============================================================================ +11:17:11 + + +waiting on router queue for slot.... +11:17:13 ============================================================================ +11:17:13 Slot Id : <95> +11:17:13 Transaction Type : RESPONSE +11:17:13 Received From : +11:17:13 ============================================================================ +11:17:13 FNo. Len. Field Value +11:17:13 ============================================================================ +11:17:13 [ 1] [ 4] [0210] +11:17:13 [ 2] [ 16] [1888880000097022] +11:17:13 [ 3] [ 6] [010000] +11:17:13 [ 4] [ 12] [000100000000] +11:17:13 [ 7] [ 10] [0320111453] +11:17:13 [ 11] [ 6] [940770] +11:17:13 [ 12] [ 6] [111453] +11:17:13 [ 13] [ 4] [0320] +11:17:13 [ 15] [ 4] [0320] +11:17:13 [ 18] [ 4] [6011] +11:17:13 [ 19] [ 3] [418] +11:17:13 [ 32] [ 6] [668899] +11:17:13 [ 37] [ 12] [507900136696] +11:17:13 [ 38] [ 6] [280768] +11:17:13 [ 39] [ 2] [00] +11:17:13 [ 41] [ 8] [03020004] +11:17:13 [ 49] [ 3] [418] +11:17:13 [ 54] [ 0] [] +11:17:13 ============================================================================ +11:17:13 Calculate Source COMM Id = 4 +11:17:13 ============================================================================ +11:17:13 + + +waiting on router queue for slot.... +11:17:19 ============================================================================ +11:17:19 Slot Id : <53> +11:17:19 Transaction Type : REQUEST +11:17:19 Received From : +11:17:19 ============================================================================ +11:17:19 FNo. Len. Field Value +11:17:19 ============================================================================ +11:17:19 [ 1] [ 4] [0800] +11:17:19 [ 7] [ 10] [0320041627] +11:17:19 [ 11] [ 6] [156052] +11:17:19 [ 70] [ 3] [301] +11:17:19 ============================================================================ +11:17:19 + + +waiting on router queue for slot.... +11:17:19 Sending to : +11:17:19 ============================================================================ +11:17:19 ============================================================================ +11:17:19 Slot Id : <53> +11:17:19 Transaction Type : RESPONSE +11:17:19 Received From : +11:17:19 ============================================================================ +11:17:19 FNo. Len. Field Value +11:17:19 ============================================================================ +11:17:19 [ 1] [ 4] [0810] +11:17:19 [ 7] [ 10] [0320041627] +11:17:19 [ 11] [ 6] [156052] +11:17:19 [ 39] [ 2] [00] +11:17:19 [ 70] [ 3] [301] +11:17:19 ============================================================================ +11:17:19 Calculate Source COMM Id = 2 +11:17:19 ============================================================================ +11:17:19 + + +waiting on router queue for slot.... +11:17:21 ============================================================================ +11:17:21 Slot Id : <98> +11:17:21 Transaction Type : REQUEST +11:17:21 Received From : +11:17:21 ============================================================================ +11:17:21 FNo. Len. Field Value +11:17:21 ============================================================================ +11:17:21 [ 1] [ 4] [0200] +11:17:21 [ 2] [ 16] [6688990105571705] +11:17:21 [ 3] [ 6] [010000] +11:17:21 [ 4] [ 12] [000030000000] +11:17:21 [ 7] [ 10] [0320111717] +11:17:21 [ 11] [ 6] [726968] +11:17:21 [ 12] [ 6] [111717] +11:17:21 [ 13] [ 4] [0320] +11:17:21 [ 15] [ 4] [0320] +11:17:21 [ 18] [ 4] [6011] +11:17:21 [ 22] [ 3] [900] +11:17:21 [ 25] [ 2] [02] +11:17:21 [ 28] [ 9] [D00002000] +11:17:21 [ 32] [ 6] [621354] +11:17:21 [ 35] [ 37] [6688990105571705=43101231170522500000] +11:17:21 [ 37] [ 12] [507904599656] +11:17:21 [ 41] [ 8] [02002200] +11:17:21 [ 42] [ 15] [NATIVE ] +11:17:21 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +11:17:21 [ 49] [ 3] [418] +11:17:21 [ 52] [ 16] [4B1BD2D7AD41976D] +11:17:21 ============================================================================ +11:17:21 + + +waiting on router queue for slot.... +11:17:21 Sending to : +11:17:21 ============================================================================ +11:17:21 Sending to : +11:17:21 ============================================================================ +11:17:22 ============================================================================ +11:17:22 Slot Id : <98> +11:17:22 Transaction Type : REQUEST +11:17:22 Received From : +11:17:22 ============================================================================ +11:17:22 FNo. Len. Field Value +11:17:22 ============================================================================ +11:17:22 [ 1] [ 4] [0200] +11:17:22 [ 2] [ 16] [6688990105571705] +11:17:22 [ 3] [ 6] [010000] +11:17:22 [ 4] [ 12] [000030000000] +11:17:22 [ 7] [ 10] [0320111717] +11:17:22 [ 11] [ 6] [726968] +11:17:22 [ 12] [ 6] [111717] +11:17:22 [ 13] [ 4] [0320] +11:17:22 [ 15] [ 4] [0320] +11:17:22 [ 18] [ 4] [6011] +11:17:22 [ 22] [ 3] [900] +11:17:22 [ 25] [ 2] [02] +11:17:22 [ 28] [ 9] [D00002000] +11:17:22 [ 32] [ 6] [621354] +11:17:22 [ 35] [ 37] [6688990105571705=43101231170522500000] +11:17:22 [ 37] [ 12] [507904599656] +11:17:22 [ 41] [ 8] [02002200] +11:17:22 [ 42] [ 15] [NATIVE ] +11:17:22 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +11:17:22 [ 49] [ 3] [418] +11:17:22 [ 52] [ 16] [4B1BD2D7AD41976D] +11:17:22 ============================================================================ +11:17:22 + + +waiting on router queue for slot.... +11:17:22 Sending to : +11:17:22 ============================================================================ +11:17:22 ============================================================================ +11:17:22 Slot Id : <98> +11:17:22 Transaction Type : REQUEST +11:17:22 Received From : +11:17:22 ============================================================================ +11:17:22 FNo. Len. Field Value +11:17:22 ============================================================================ +11:17:22 [ 1] [ 4] [0200] +11:17:22 [ 2] [ 16] [6688990105571705] +11:17:22 [ 3] [ 6] [010000] +11:17:22 [ 4] [ 12] [000030000000] +11:17:22 [ 7] [ 10] [0320111717] +11:17:22 [ 11] [ 6] [726968] +11:17:22 [ 12] [ 6] [111717] +11:17:22 [ 13] [ 4] [0320] +11:17:22 [ 15] [ 4] [0320] +11:17:22 [ 18] [ 4] [6011] +11:17:22 [ 22] [ 3] [900] +11:17:22 [ 25] [ 2] [02] +11:17:22 [ 28] [ 9] [D00002000] +11:17:22 [ 32] [ 6] [621354] +11:17:22 [ 35] [ 37] [6688990105571705=43101231170522500000] +11:17:22 [ 37] [ 12] [507904599656] +11:17:22 [ 41] [ 8] [02002200] +11:17:22 [ 42] [ 15] [NATIVE ] +11:17:22 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +11:17:22 [ 49] [ 3] [418] +11:17:22 [ 52] [ 16] [DAC46401475A918F] +11:17:22 ============================================================================ +11:17:22 + + +waiting on router queue for slot.... +11:17:22 Sending to : <4> +11:17:22 ============================================================================ +11:17:23 ============================================================================ +11:17:23 Slot Id : <98> +11:17:23 Transaction Type : RESPONSE +11:17:23 Received From : +11:17:23 ============================================================================ +11:17:23 FNo. Len. Field Value +11:17:23 ============================================================================ +11:17:23 [ 1] [ 4] [0210] +11:17:23 [ 2] [ 16] [6688990105571705] +11:17:23 [ 3] [ 6] [010000] +11:17:23 [ 4] [ 12] [000030000000] +11:17:23 [ 11] [ 6] [726968] +11:17:23 [ 12] [ 6] [111717] +11:17:23 [ 15] [ 4] [0320] +11:17:23 [ 18] [ 4] [6011] +11:17:23 [ 32] [ 6] [621354] +11:17:23 [ 35] [ 37] [6688990105571705=43101231170522500000] +11:17:23 [ 37] [ 12] [507904599656] +11:17:23 [ 38] [ 6] [007356] +11:17:23 [ 39] [ 2] [00] +11:17:23 [ 41] [ 8] [02002200] +11:17:23 [ 49] [ 3] [418] +11:17:23 [ 54] [ 20] [0002418C000006407357] +11:17:23 ============================================================================ +11:17:23 Sending to : +11:17:23 ============================================================================ +11:17:23 + + +waiting on router queue for slot.... +11:17:24 ============================================================================ +11:17:24 Slot Id : <98> +11:17:24 Transaction Type : RESPONSE +11:17:24 Received From : +11:17:24 ============================================================================ +11:17:24 FNo. Len. Field Value +11:17:24 ============================================================================ +11:17:24 [ 1] [ 4] [0210] +11:17:24 [ 2] [ 16] [6688990105571705] +11:17:24 [ 3] [ 6] [010000] +11:17:24 [ 4] [ 12] [000030000000] +11:17:24 [ 11] [ 6] [726968] +11:17:24 [ 12] [ 6] [111717] +11:17:24 [ 15] [ 4] [0320] +11:17:24 [ 18] [ 4] [6011] +11:17:24 [ 32] [ 6] [621354] +11:17:24 [ 35] [ 37] [6688990105571705=43101231170522500000] +11:17:24 [ 37] [ 12] [507904599656] +11:17:24 [ 38] [ 6] [007356] +11:17:24 [ 39] [ 2] [00] +11:17:24 [ 41] [ 8] [02002200] +11:17:24 [ 49] [ 3] [418] +11:17:24 [ 54] [ 20] [0002418C000006407357] +11:17:24 ============================================================================ +11:17:24 Calculate Source COMM Id = 0 +11:17:24 ============================================================================ +11:17:24 + + +waiting on router queue for slot.... +11:17:28 ============================================================================ +11:17:28 Slot Id : <134> +11:17:28 Transaction Type : REQUEST +11:17:28 Received From : +11:17:28 ============================================================================ +11:17:28 FNo. Len. Field Value +11:17:28 ============================================================================ +11:17:28 [ 1] [ 4] [0800] +11:17:28 [ 2] [ 5] [02531] +11:17:28 [ 3] [ 6] [579118] +11:17:28 [ 7] [ 10] [0320041728] +11:17:28 [ 11] [ 6] [807067] +11:17:28 [ 15] [ 10] [0320041728] +11:17:28 [ 37] [ 11] [57911807067] +11:17:28 [ 70] [ 3] [001] +11:17:28 ============================================================================ +11:17:28 + + +waiting on router queue for slot.... +11:17:28 ============================================================================ +11:17:28 Slot Id : <134> +11:17:28 Transaction Type : RESPONSE +11:17:28 Received From : +11:17:28 ============================================================================ +11:17:28 FNo. Len. Field Value +11:17:28 ============================================================================ +11:17:28 [ 1] [ 4] [0810] +11:17:28 [ 7] [ 10] [0320041728] +11:17:28 [ 11] [ 6] [807067] +11:17:28 [ 15] [ 4] [0320] +11:17:28 [ 37] [ 12] [57911807067] +11:17:28 [ 39] [ 2] [00] +11:17:28 [ 70] [ 3] [001] +11:17:28 ============================================================================ +11:17:28 Sending to : +11:17:28 ============================================================================ +11:17:28 + + +waiting on router queue for slot.... +11:17:33 ============================================================================ +11:17:33 Slot Id : <103> +11:17:33 Transaction Type : REQUEST +11:17:33 Received From : +11:17:33 ============================================================================ +11:17:33 FNo. Len. Field Value +11:17:33 ============================================================================ +11:17:33 [ 1] [ 4] [0800] +11:17:33 [ 7] [ 10] [0320041641] +11:17:33 [ 11] [ 6] [156053] +11:17:33 [ 70] [ 3] [301] +11:17:33 ============================================================================ +11:17:33 + + +waiting on router queue for slot.... +11:17:33 Sending to : +11:17:33 ============================================================================ +11:17:33 ============================================================================ +11:17:33 Slot Id : <103> +11:17:33 Transaction Type : RESPONSE +11:17:33 Received From : +11:17:33 ============================================================================ +11:17:33 FNo. Len. Field Value +11:17:33 ============================================================================ +11:17:33 [ 1] [ 4] [0810] +11:17:33 [ 7] [ 10] [0320041641] +11:17:33 [ 11] [ 6] [156053] +11:17:33 [ 39] [ 2] [00] +11:17:33 [ 70] [ 3] [301] +11:17:33 ============================================================================ +11:17:33 Calculate Source COMM Id = 2 +11:17:33 ============================================================================ +11:17:33 + + +waiting on router queue for slot.... +11:17:45 ============================================================================ +11:17:45 Slot Id : <71> +11:17:45 Transaction Type : REQUEST +11:17:45 Received From : +11:17:45 ============================================================================ +11:17:45 FNo. Len. Field Value +11:17:45 ============================================================================ +11:17:45 [ 1] [ 4] [0800] +11:17:45 [ 7] [ 10] [0320041653] +11:17:45 [ 11] [ 6] [156054] +11:17:45 [ 70] [ 3] [301] +11:17:45 ============================================================================ +11:17:45 + + +waiting on router queue for slot.... +11:17:45 Sending to : +11:17:45 ============================================================================ +11:17:45 ============================================================================ +11:17:45 Slot Id : <71> +11:17:45 Transaction Type : RESPONSE +11:17:45 Received From : +11:17:45 ============================================================================ +11:17:45 FNo. Len. Field Value +11:17:45 ============================================================================ +11:17:45 [ 1] [ 4] [0810] +11:17:45 [ 7] [ 10] [0320041653] +11:17:45 [ 11] [ 6] [156054] +11:17:45 [ 39] [ 2] [00] +11:17:45 [ 70] [ 3] [301] +11:17:45 ============================================================================ +11:17:45 Calculate Source COMM Id = 2 +11:17:45 ============================================================================ +11:17:45 + + +waiting on router queue for slot.... +11:17:52 ============================================================================ +11:17:52 Slot Id : <96> +11:17:52 Transaction Type : REQUEST +11:17:52 Received From : +11:17:52 ============================================================================ +11:17:52 FNo. Len. Field Value +11:17:52 ============================================================================ +11:17:52 [ 1] [ 4] [0200] +11:17:52 [ 2] [ 16] [6213548000229383] +11:17:52 [ 3] [ 6] [010000] +11:17:52 [ 4] [ 12] [000010000000] +11:17:52 [ 7] [ 10] [0320111543] +11:17:52 [ 11] [ 6] [940810] +11:17:52 [ 12] [ 6] [111543] +11:17:52 [ 13] [ 4] [0320] +11:17:52 [ 15] [ 4] [0320] +11:17:52 [ 18] [ 4] [6011] +11:17:52 [ 19] [ 3] [418] +11:17:52 [ 22] [ 3] [021] +11:17:52 [ 25] [ 2] [01] +11:17:52 [ 28] [ 9] [D00002000] +11:17:52 [ 32] [ 6] [668899] +11:17:52 [ 35] [ 32] [6213548000229383=180112012938646] +11:17:52 [ 37] [ 12] [507901963484] +11:17:52 [ 41] [ 8] [03020019] +11:17:52 [ 42] [ 15] [APT ] +11:17:52 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:17:52 [ 49] [ 3] [418] +11:17:52 [ 52] [ 16] [11BB526DC7AD6DB0] +11:17:52 ============================================================================ +11:17:52 + + +waiting on router queue for slot.... +11:17:52 Sending to : +11:17:52 ============================================================================ +11:17:52 Sending to : +11:17:52 ============================================================================ +11:17:52 ============================================================================ +11:17:52 Slot Id : <96> +11:17:52 Transaction Type : REQUEST +11:17:52 Received From : +11:17:52 ============================================================================ +11:17:52 FNo. Len. Field Value +11:17:52 ============================================================================ +11:17:52 [ 1] [ 4] [0200] +11:17:52 [ 2] [ 16] [6213548000229383] +11:17:52 [ 3] [ 6] [010000] +11:17:52 [ 4] [ 12] [000010000000] +11:17:52 [ 7] [ 10] [0320111543] +11:17:52 [ 11] [ 6] [940810] +11:17:52 [ 12] [ 6] [111543] +11:17:52 [ 13] [ 4] [0320] +11:17:52 [ 15] [ 4] [0320] +11:17:52 [ 18] [ 4] [6011] +11:17:52 [ 19] [ 3] [418] +11:17:52 [ 22] [ 3] [021] +11:17:52 [ 25] [ 2] [01] +11:17:52 [ 28] [ 9] [D00002000] +11:17:52 [ 32] [ 6] [668899] +11:17:52 [ 35] [ 32] [6213548000229383=180112012938646] +11:17:52 [ 37] [ 12] [507901963484] +11:17:52 [ 41] [ 8] [03020019] +11:17:52 [ 42] [ 15] [APT ] +11:17:52 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:17:52 [ 49] [ 3] [418] +11:17:52 [ 52] [ 16] [11BB526DC7AD6DB0] +11:17:52 ============================================================================ +11:17:52 + + +waiting on router queue for slot.... +11:17:52 Sending to : +11:17:52 ============================================================================ +11:17:52 ============================================================================ +11:17:52 Slot Id : <96> +11:17:52 Transaction Type : REQUEST +11:17:52 Received From : +11:17:52 ============================================================================ +11:17:52 FNo. Len. Field Value +11:17:52 ============================================================================ +11:17:52 [ 1] [ 4] [0200] +11:17:52 [ 2] [ 16] [6213548000229383] +11:17:52 [ 3] [ 6] [010000] +11:17:52 [ 4] [ 12] [000010000000] +11:17:52 [ 7] [ 10] [0320111543] +11:17:52 [ 11] [ 6] [940810] +11:17:52 [ 12] [ 6] [111543] +11:17:52 [ 13] [ 4] [0320] +11:17:52 [ 15] [ 4] [0320] +11:17:52 [ 18] [ 4] [6011] +11:17:52 [ 19] [ 3] [418] +11:17:52 [ 22] [ 3] [021] +11:17:52 [ 25] [ 2] [01] +11:17:52 [ 28] [ 9] [D00002000] +11:17:52 [ 32] [ 6] [668899] +11:17:52 [ 35] [ 32] [6213548000229383=180112012938646] +11:17:52 [ 37] [ 12] [507901963484] +11:17:52 [ 41] [ 8] [03020019] +11:17:52 [ 42] [ 15] [APT ] +11:17:52 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:17:52 [ 49] [ 3] [418] +11:17:52 [ 52] [ 16] [564575F78DCC5872] +11:17:52 ============================================================================ +11:17:52 + + +waiting on router queue for slot.... +11:17:52 Sending to : <0> +11:17:52 ============================================================================ +11:17:53 ============================================================================ +11:17:53 Slot Id : <96> +11:17:53 Transaction Type : RESPONSE +11:17:53 Received From : +11:17:53 ============================================================================ +11:17:53 FNo. Len. Field Value +11:17:53 ============================================================================ +11:17:53 [ 1] [ 4] [0210] +11:17:53 [ 2] [ 16] [6213548000229383] +11:17:53 [ 3] [ 6] [010000] +11:17:53 [ 4] [ 12] [000010000000] +11:17:53 [ 7] [ 10] [0320111543] +11:17:53 [ 11] [ 6] [940810] +11:17:53 [ 12] [ 6] [111543] +11:17:53 [ 13] [ 4] [0320] +11:17:53 [ 15] [ 4] [0320] +11:17:53 [ 18] [ 4] [6011] +11:17:53 [ 19] [ 3] [418] +11:17:53 [ 32] [ 6] [668899] +11:17:53 [ 35] [ 32] [6213548000229383=180112012938646] +11:17:53 [ 37] [ 12] [507901963484] +11:17:53 [ 38] [ 6] [433192] +11:17:53 [ 39] [ 2] [00] +11:17:53 [ 41] [ 8] [03020019] +11:17:53 [ 49] [ 3] [418] +11:17:53 [ 54] [ 40] [0001418C0000248414420002418C000024841442] +11:17:53 ============================================================================ +11:17:53 Sending to : +11:17:53 ============================================================================ +11:17:53 + + +waiting on router queue for slot.... +11:17:54 ============================================================================ +11:17:54 Slot Id : <96> +11:17:54 Transaction Type : RESPONSE +11:17:54 Received From : +11:17:54 ============================================================================ +11:17:54 FNo. Len. Field Value +11:17:54 ============================================================================ +11:17:54 [ 1] [ 4] [0210] +11:17:54 [ 2] [ 16] [6213548000229383] +11:17:54 [ 3] [ 6] [010000] +11:17:54 [ 4] [ 12] [000010000000] +11:17:54 [ 7] [ 10] [0320111543] +11:17:54 [ 11] [ 6] [940810] +11:17:54 [ 12] [ 6] [111543] +11:17:54 [ 13] [ 4] [0320] +11:17:54 [ 15] [ 4] [0320] +11:17:54 [ 18] [ 4] [6011] +11:17:54 [ 19] [ 3] [418] +11:17:54 [ 32] [ 6] [668899] +11:17:54 [ 35] [ 32] [6213548000229383=180112012938646] +11:17:54 [ 37] [ 12] [507901963484] +11:17:54 [ 38] [ 6] [433192] +11:17:54 [ 39] [ 2] [00] +11:17:54 [ 41] [ 8] [03020019] +11:17:54 [ 49] [ 3] [418] +11:17:54 [ 54] [ 40] [0001418C0000248414420002418C000024841442] +11:17:54 ============================================================================ +11:17:54 Calculate Source COMM Id = 4 +11:17:54 ============================================================================ +11:17:54 + + +waiting on router queue for slot.... +11:17:56 ============================================================================ +11:17:56 Slot Id : <101> +11:17:56 Transaction Type : REQUEST +11:17:56 Received From : +11:17:56 ============================================================================ +11:17:56 FNo. Len. Field Value +11:17:56 ============================================================================ +11:17:56 [ 1] [ 4] [0800] +11:17:56 [ 7] [ 10] [0320041704] +11:17:56 [ 11] [ 6] [156055] +11:17:56 [ 70] [ 3] [301] +11:17:56 ============================================================================ +11:17:56 + + +waiting on router queue for slot.... +11:17:56 Sending to : +11:17:56 ============================================================================ +11:17:56 ============================================================================ +11:17:56 Slot Id : <101> +11:17:56 Transaction Type : RESPONSE +11:17:56 Received From : +11:17:56 ============================================================================ +11:17:56 FNo. Len. Field Value +11:17:56 ============================================================================ +11:17:56 [ 1] [ 4] [0810] +11:17:56 [ 7] [ 10] [0320041704] +11:17:56 [ 11] [ 6] [156055] +11:17:56 [ 39] [ 2] [00] +11:17:56 [ 70] [ 3] [301] +11:17:56 ============================================================================ +11:17:56 Calculate Source COMM Id = 2 +11:17:56 ============================================================================ +11:17:56 + + +waiting on router queue for slot.... +11:18:12 ============================================================================ +11:18:12 Slot Id : <70> +11:18:12 Transaction Type : REQUEST +11:18:12 Received From : +11:18:12 ============================================================================ +11:18:12 FNo. Len. Field Value +11:18:12 ============================================================================ +11:18:12 [ 1] [ 4] [0800] +11:18:12 [ 7] [ 10] [0320041719] +11:18:12 [ 11] [ 6] [156056] +11:18:12 [ 70] [ 3] [301] +11:18:12 ============================================================================ +11:18:12 + + +waiting on router queue for slot.... +11:18:12 Sending to : +11:18:12 ============================================================================ +11:18:12 ============================================================================ +11:18:12 Slot Id : <70> +11:18:12 Transaction Type : RESPONSE +11:18:12 Received From : +11:18:12 ============================================================================ +11:18:12 FNo. Len. Field Value +11:18:12 ============================================================================ +11:18:12 [ 1] [ 4] [0810] +11:18:12 [ 7] [ 10] [0320041719] +11:18:12 [ 11] [ 6] [156056] +11:18:12 [ 39] [ 2] [00] +11:18:12 [ 70] [ 3] [301] +11:18:12 ============================================================================ +11:18:12 Calculate Source COMM Id = 2 +11:18:12 ============================================================================ +11:18:12 + + +waiting on router queue for slot.... +11:18:29 ============================================================================ +11:18:29 Slot Id : <109> +11:18:29 Transaction Type : REQUEST +11:18:29 Received From : +11:18:29 ============================================================================ +11:18:29 FNo. Len. Field Value +11:18:29 ============================================================================ +11:18:29 [ 1] [ 4] [0800] +11:18:29 [ 7] [ 10] [0320041736] +11:18:29 [ 11] [ 6] [156057] +11:18:29 [ 70] [ 3] [301] +11:18:29 ============================================================================ +11:18:29 + + +waiting on router queue for slot.... +11:18:29 Sending to : +11:18:29 ============================================================================ +11:18:29 ============================================================================ +11:18:29 Slot Id : <109> +11:18:29 Transaction Type : RESPONSE +11:18:29 Received From : +11:18:29 ============================================================================ +11:18:29 FNo. Len. Field Value +11:18:29 ============================================================================ +11:18:29 [ 1] [ 4] [0810] +11:18:29 [ 7] [ 10] [0320041736] +11:18:29 [ 11] [ 6] [156057] +11:18:29 [ 39] [ 2] [00] +11:18:29 [ 70] [ 3] [301] +11:18:29 ============================================================================ +11:18:29 Calculate Source COMM Id = 2 +11:18:29 ============================================================================ +11:18:29 + + +waiting on router queue for slot.... +11:18:30 ============================================================================ +11:18:30 Slot Id : <102> +11:18:30 Transaction Type : REQUEST +11:18:30 Received From : +11:18:30 ============================================================================ +11:18:30 FNo. Len. Field Value +11:18:30 ============================================================================ +11:18:30 [ 1] [ 4] [0800] +11:18:30 [ 2] [ 5] [02531] +11:18:30 [ 3] [ 6] [579118] +11:18:30 [ 7] [ 10] [0320041830] +11:18:30 [ 11] [ 6] [807068] +11:18:30 [ 15] [ 10] [0320041830] +11:18:30 [ 37] [ 11] [57911807068] +11:18:30 [ 70] [ 3] [001] +11:18:30 ============================================================================ +11:18:30 + + +waiting on router queue for slot.... +11:18:30 ============================================================================ +11:18:30 Slot Id : <102> +11:18:30 Transaction Type : RESPONSE +11:18:30 Received From : +11:18:30 ============================================================================ +11:18:30 FNo. Len. Field Value +11:18:30 ============================================================================ +11:18:30 [ 1] [ 4] [0810] +11:18:30 [ 7] [ 10] [0320041830] +11:18:30 [ 11] [ 6] [807068] +11:18:30 [ 15] [ 4] [0320] +11:18:30 [ 37] [ 12] [57911807068] +11:18:30 [ 39] [ 2] [00] +11:18:30 [ 70] [ 3] [001] +11:18:30 ============================================================================ +11:18:30 Sending to : +11:18:30 ============================================================================ +11:18:30 + + +waiting on router queue for slot.... +11:18:35 ============================================================================ +11:18:35 Slot Id : <85> +11:18:35 Transaction Type : REQUEST +11:18:35 Received From : +11:18:35 ============================================================================ +11:18:35 FNo. Len. Field Value +11:18:35 ============================================================================ +11:18:35 [ 1] [ 4] [0200] +11:18:35 [ 2] [ 16] [6213544001207700] +11:18:35 [ 3] [ 6] [010000] +11:18:35 [ 4] [ 12] [000100000000] +11:18:35 [ 7] [ 10] [0320111626] +11:18:35 [ 11] [ 6] [940847] +11:18:35 [ 12] [ 6] [111626] +11:18:35 [ 13] [ 4] [0320] +11:18:35 [ 15] [ 4] [0320] +11:18:35 [ 18] [ 4] [6011] +11:18:35 [ 19] [ 3] [418] +11:18:35 [ 22] [ 3] [021] +11:18:35 [ 25] [ 2] [01] +11:18:35 [ 28] [ 9] [D00002000] +11:18:35 [ 32] [ 6] [668899] +11:18:35 [ 35] [ 32] [6213544001207700=491212010770595] +11:18:35 [ 37] [ 12] [507902435623] +11:18:35 [ 41] [ 8] [03020031] +11:18:35 [ 42] [ 15] [APT ] +11:18:35 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:18:35 [ 49] [ 3] [418] +11:18:35 [ 52] [ 16] [33363056DFF8B925] +11:18:35 ============================================================================ +11:18:35 + + +waiting on router queue for slot.... +11:18:35 Sending to : +11:18:35 ============================================================================ +11:18:35 Sending to : +11:18:35 ============================================================================ +11:18:35 ============================================================================ +11:18:35 Slot Id : <85> +11:18:35 Transaction Type : REQUEST +11:18:35 Received From : +11:18:35 ============================================================================ +11:18:35 FNo. Len. Field Value +11:18:35 ============================================================================ +11:18:35 [ 1] [ 4] [0200] +11:18:35 [ 2] [ 16] [6213544001207700] +11:18:35 [ 3] [ 6] [010000] +11:18:35 [ 4] [ 12] [000100000000] +11:18:35 [ 7] [ 10] [0320111626] +11:18:35 [ 11] [ 6] [940847] +11:18:35 [ 12] [ 6] [111626] +11:18:35 [ 13] [ 4] [0320] +11:18:35 [ 15] [ 4] [0320] +11:18:35 [ 18] [ 4] [6011] +11:18:35 [ 19] [ 3] [418] +11:18:35 [ 22] [ 3] [021] +11:18:35 [ 25] [ 2] [01] +11:18:35 [ 28] [ 9] [D00002000] +11:18:35 [ 32] [ 6] [668899] +11:18:35 [ 35] [ 32] [6213544001207700=491212010770595] +11:18:35 [ 37] [ 12] [507902435623] +11:18:35 [ 41] [ 8] [03020031] +11:18:35 [ 42] [ 15] [APT ] +11:18:35 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:18:35 [ 49] [ 3] [418] +11:18:35 [ 52] [ 16] [33363056DFF8B925] +11:18:35 ============================================================================ +11:18:35 + + +waiting on router queue for slot.... +11:18:35 Sending to : +11:18:35 ============================================================================ +11:18:35 ============================================================================ +11:18:35 Slot Id : <85> +11:18:35 Transaction Type : REQUEST +11:18:35 Received From : +11:18:35 ============================================================================ +11:18:35 FNo. Len. Field Value +11:18:35 ============================================================================ +11:18:35 [ 1] [ 4] [0200] +11:18:35 [ 2] [ 16] [6213544001207700] +11:18:35 [ 3] [ 6] [010000] +11:18:35 [ 4] [ 12] [000100000000] +11:18:35 [ 7] [ 10] [0320111626] +11:18:35 [ 11] [ 6] [940847] +11:18:35 [ 12] [ 6] [111626] +11:18:35 [ 13] [ 4] [0320] +11:18:35 [ 15] [ 4] [0320] +11:18:35 [ 18] [ 4] [6011] +11:18:35 [ 19] [ 3] [418] +11:18:35 [ 22] [ 3] [021] +11:18:35 [ 25] [ 2] [01] +11:18:35 [ 28] [ 9] [D00002000] +11:18:35 [ 32] [ 6] [668899] +11:18:35 [ 35] [ 32] [6213544001207700=491212010770595] +11:18:35 [ 37] [ 12] [507902435623] +11:18:35 [ 41] [ 8] [03020031] +11:18:35 [ 42] [ 15] [APT ] +11:18:35 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:18:35 [ 49] [ 3] [418] +11:18:35 [ 52] [ 16] [B637918913EC1B0E] +11:18:35 ============================================================================ +11:18:35 + + +waiting on router queue for slot.... +11:18:35 Sending to : <0> +11:18:35 ============================================================================ +11:18:36 ============================================================================ +11:18:36 Slot Id : <85> +11:18:36 Transaction Type : RESPONSE +11:18:36 Received From : +11:18:36 ============================================================================ +11:18:36 FNo. Len. Field Value +11:18:36 ============================================================================ +11:18:36 [ 1] [ 4] [0210] +11:18:36 [ 2] [ 16] [6213544001207700] +11:18:36 [ 3] [ 6] [010000] +11:18:36 [ 4] [ 12] [000100000000] +11:18:36 [ 7] [ 10] [0320111626] +11:18:36 [ 11] [ 6] [940847] +11:18:36 [ 12] [ 6] [111626] +11:18:36 [ 13] [ 4] [0320] +11:18:36 [ 15] [ 4] [0320] +11:18:36 [ 18] [ 4] [6011] +11:18:36 [ 19] [ 3] [418] +11:18:36 [ 32] [ 6] [668899] +11:18:36 [ 35] [ 32] [6213544001207700=491212010770595] +11:18:36 [ 37] [ 12] [507902435623] +11:18:36 [ 38] [ 6] [455113] +11:18:36 [ 39] [ 2] [00] +11:18:36 [ 41] [ 8] [03020031] +11:18:36 [ 49] [ 3] [418] +11:18:36 [ 54] [ 40] [0001418C0020054778770002418C002005477877] +11:18:36 ============================================================================ +11:18:36 Sending to : +11:18:36 ============================================================================ +11:18:36 + + +waiting on router queue for slot.... +11:18:37 ============================================================================ +11:18:37 Slot Id : <85> +11:18:37 Transaction Type : RESPONSE +11:18:37 Received From : +11:18:37 ============================================================================ +11:18:37 FNo. Len. Field Value +11:18:37 ============================================================================ +11:18:37 [ 1] [ 4] [0210] +11:18:37 [ 2] [ 16] [6213544001207700] +11:18:37 [ 3] [ 6] [010000] +11:18:37 [ 4] [ 12] [000100000000] +11:18:37 [ 7] [ 10] [0320111626] +11:18:37 [ 11] [ 6] [940847] +11:18:37 [ 12] [ 6] [111626] +11:18:37 [ 13] [ 4] [0320] +11:18:37 [ 15] [ 4] [0320] +11:18:37 [ 18] [ 4] [6011] +11:18:37 [ 19] [ 3] [418] +11:18:37 [ 32] [ 6] [668899] +11:18:37 [ 35] [ 32] [6213544001207700=491212010770595] +11:18:37 [ 37] [ 12] [507902435623] +11:18:37 [ 38] [ 6] [455113] +11:18:37 [ 39] [ 2] [00] +11:18:37 [ 41] [ 8] [03020031] +11:18:37 [ 49] [ 3] [418] +11:18:37 [ 54] [ 40] [0001418C0020054778770002418C002005477877] +11:18:37 ============================================================================ +11:18:37 Calculate Source COMM Id = 4 +11:18:37 ============================================================================ +11:18:37 + + +waiting on router queue for slot.... +11:18:41 ============================================================================ +11:18:41 Slot Id : <136> +11:18:41 Transaction Type : REQUEST +11:18:41 Received From : +11:18:41 ============================================================================ +11:18:41 FNo. Len. Field Value +11:18:41 ============================================================================ +11:18:41 [ 1] [ 4] [0200] +11:18:41 [ 2] [ 16] [6213541000245582] +11:18:41 [ 3] [ 6] [010000] +11:18:41 [ 4] [ 12] [000050000000] +11:18:41 [ 7] [ 10] [0320111632] +11:18:41 [ 11] [ 6] [940854] +11:18:41 [ 12] [ 6] [111632] +11:18:41 [ 13] [ 4] [0320] +11:18:41 [ 15] [ 4] [0320] +11:18:41 [ 18] [ 4] [6011] +11:18:41 [ 19] [ 3] [418] +11:18:41 [ 22] [ 3] [021] +11:18:41 [ 25] [ 2] [01] +11:18:41 [ 28] [ 9] [D00002000] +11:18:41 [ 32] [ 6] [668899] +11:18:41 [ 35] [ 32] [6213541000245582=491212014558847] +11:18:41 [ 37] [ 12] [507902150951] +11:18:41 [ 41] [ 8] [03020025] +11:18:41 [ 42] [ 15] [APT ] +11:18:41 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +11:18:41 [ 49] [ 3] [418] +11:18:41 [ 52] [ 16] [070AA3C17E03E06E] +11:18:41 ============================================================================ +11:18:41 + + +waiting on router queue for slot.... +11:18:41 Sending to : +11:18:41 ============================================================================ +11:18:41 Sending to : +11:18:41 ============================================================================ +11:18:41 ============================================================================ +11:18:41 Slot Id : <136> +11:18:41 Transaction Type : REQUEST +11:18:41 Received From : +11:18:41 ============================================================================ +11:18:41 FNo. Len. Field Value +11:18:41 ============================================================================ +11:18:41 [ 1] [ 4] [0200] +11:18:41 [ 2] [ 16] [6213541000245582] +11:18:41 [ 3] [ 6] [010000] +11:18:41 [ 4] [ 12] [000050000000] +11:18:41 [ 7] [ 10] [0320111632] +11:18:41 [ 11] [ 6] [940854] +11:18:41 [ 12] [ 6] [111632] +11:18:41 [ 13] [ 4] [0320] +11:18:41 [ 15] [ 4] [0320] +11:18:41 [ 18] [ 4] [6011] +11:18:41 [ 19] [ 3] [418] +11:18:41 [ 22] [ 3] [021] +11:18:41 [ 25] [ 2] [01] +11:18:41 [ 28] [ 9] [D00002000] +11:18:41 [ 32] [ 6] [668899] +11:18:41 [ 35] [ 32] [6213541000245582=491212014558847] +11:18:41 [ 37] [ 12] [507902150951] +11:18:41 [ 41] [ 8] [03020025] +11:18:41 [ 42] [ 15] [APT ] +11:18:41 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +11:18:41 [ 49] [ 3] [418] +11:18:41 [ 52] [ 16] [070AA3C17E03E06E] +11:18:41 ============================================================================ +11:18:41 + + +waiting on router queue for slot.... +11:18:41 Sending to : +11:18:41 ============================================================================ +11:18:42 ============================================================================ +11:18:42 Slot Id : <136> +11:18:42 Transaction Type : REQUEST +11:18:42 Received From : +11:18:42 ============================================================================ +11:18:42 FNo. Len. Field Value +11:18:42 ============================================================================ +11:18:42 [ 1] [ 4] [0200] +11:18:42 [ 2] [ 16] [6213541000245582] +11:18:42 [ 3] [ 6] [010000] +11:18:42 [ 4] [ 12] [000050000000] +11:18:42 [ 7] [ 10] [0320111632] +11:18:42 [ 11] [ 6] [940854] +11:18:42 [ 12] [ 6] [111632] +11:18:42 [ 13] [ 4] [0320] +11:18:42 [ 15] [ 4] [0320] +11:18:42 [ 18] [ 4] [6011] +11:18:42 [ 19] [ 3] [418] +11:18:42 [ 22] [ 3] [021] +11:18:42 [ 25] [ 2] [01] +11:18:42 [ 28] [ 9] [D00002000] +11:18:42 [ 32] [ 6] [668899] +11:18:42 [ 35] [ 32] [6213541000245582=491212014558847] +11:18:42 [ 37] [ 12] [507902150951] +11:18:42 [ 41] [ 8] [03020025] +11:18:42 [ 42] [ 15] [APT ] +11:18:42 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +11:18:42 [ 49] [ 3] [418] +11:18:42 [ 52] [ 16] [2422F1F9C43B194C] +11:18:42 ============================================================================ +11:18:42 + + +waiting on router queue for slot.... +11:18:42 Sending to : <0> +11:18:42 ============================================================================ +11:18:42 ============================================================================ +11:18:42 Slot Id : <136> +11:18:42 Transaction Type : RESPONSE +11:18:42 Received From : +11:18:42 ============================================================================ +11:18:42 FNo. Len. Field Value +11:18:42 ============================================================================ +11:18:42 [ 1] [ 4] [0210] +11:18:42 [ 2] [ 16] [6213541000245582] +11:18:42 [ 3] [ 6] [010000] +11:18:42 [ 4] [ 12] [000050000000] +11:18:42 [ 7] [ 10] [0320111632] +11:18:42 [ 11] [ 6] [940854] +11:18:42 [ 12] [ 6] [111632] +11:18:42 [ 13] [ 4] [0320] +11:18:42 [ 15] [ 4] [0320] +11:18:42 [ 18] [ 4] [6011] +11:18:42 [ 19] [ 3] [418] +11:18:42 [ 32] [ 6] [668899] +11:18:42 [ 35] [ 32] [6213541000245582=491212014558847] +11:18:42 [ 37] [ 12] [507902150951] +11:18:42 [ 38] [ 6] [831486] +11:18:42 [ 39] [ 2] [00] +11:18:42 [ 41] [ 8] [03020025] +11:18:42 [ 49] [ 3] [418] +11:18:42 [ 54] [ 40] [0001418C0011110483660002418C001111048366] +11:18:42 ============================================================================ +11:18:42 Sending to : +11:18:42 ============================================================================ +11:18:42 + + +waiting on router queue for slot.... +11:18:43 ============================================================================ +11:18:43 Slot Id : <136> +11:18:43 Transaction Type : RESPONSE +11:18:43 Received From : +11:18:43 ============================================================================ +11:18:43 FNo. Len. Field Value +11:18:43 ============================================================================ +11:18:43 [ 1] [ 4] [0210] +11:18:43 [ 2] [ 16] [6213541000245582] +11:18:43 [ 3] [ 6] [010000] +11:18:43 [ 4] [ 12] [000050000000] +11:18:43 [ 7] [ 10] [0320111632] +11:18:43 [ 11] [ 6] [940854] +11:18:43 [ 12] [ 6] [111632] +11:18:43 [ 13] [ 4] [0320] +11:18:43 [ 15] [ 4] [0320] +11:18:43 [ 18] [ 4] [6011] +11:18:43 [ 19] [ 3] [418] +11:18:43 [ 32] [ 6] [668899] +11:18:43 [ 35] [ 32] [6213541000245582=491212014558847] +11:18:43 [ 37] [ 12] [507902150951] +11:18:43 [ 38] [ 6] [831486] +11:18:43 [ 39] [ 2] [00] +11:18:43 [ 41] [ 8] [03020025] +11:18:43 [ 49] [ 3] [418] +11:18:43 [ 54] [ 40] [0001418C0011110483660002418C001111048366] +11:18:43 ============================================================================ +11:18:43 Calculate Source COMM Id = 4 +11:18:43 ============================================================================ +11:18:43 + + +waiting on router queue for slot.... +11:18:46 ============================================================================ +11:18:46 Slot Id : <129> +11:18:46 Transaction Type : REQUEST +11:18:46 Received From : +11:18:46 ============================================================================ +11:18:46 FNo. Len. Field Value +11:18:46 ============================================================================ +11:18:46 [ 1] [ 4] [0800] +11:18:46 [ 7] [ 10] [0320041753] +11:18:46 [ 11] [ 6] [156058] +11:18:46 [ 70] [ 3] [301] +11:18:46 ============================================================================ +11:18:46 + + +waiting on router queue for slot.... +11:18:46 Sending to : +11:18:46 ============================================================================ +11:18:46 ============================================================================ +11:18:46 Slot Id : <129> +11:18:46 Transaction Type : RESPONSE +11:18:46 Received From : +11:18:46 ============================================================================ +11:18:46 FNo. Len. Field Value +11:18:46 ============================================================================ +11:18:46 [ 1] [ 4] [0810] +11:18:46 [ 7] [ 10] [0320041753] +11:18:46 [ 11] [ 6] [156058] +11:18:46 [ 39] [ 2] [00] +11:18:46 [ 70] [ 3] [301] +11:18:46 ============================================================================ +11:18:46 Calculate Source COMM Id = 2 +11:18:46 ============================================================================ +11:18:46 + + +waiting on router queue for slot.... +11:18:46 ============================================================================ +11:18:46 Slot Id : <131> +11:18:46 Transaction Type : REQUEST +11:18:46 Received From : +11:18:46 ============================================================================ +11:18:46 FNo. Len. Field Value +11:18:46 ============================================================================ +11:18:46 [ 1] [ 4] [0420] +11:18:46 [ 2] [ 16] [6213544001636577] +11:18:46 [ 3] [ 6] [010000] +11:18:46 [ 4] [ 12] [000100000000] +11:18:46 [ 7] [ 10] [0320111858] +11:18:46 [ 11] [ 6] [079091] +11:18:46 [ 12] [ 6] [111858] +11:18:46 [ 13] [ 4] [0320] +11:18:46 [ 14] [ 4] [4912] +11:18:46 [ 15] [ 4] [0320] +11:18:46 [ 18] [ 4] [6011] +11:18:46 [ 22] [ 3] [900] +11:18:46 [ 25] [ 2] [02] +11:18:46 [ 28] [ 9] [C00002000] +11:18:46 [ 32] [ 6] [220699] +11:18:46 [ 35] [ 32] [6213544001636577=491212013657028] +11:18:46 [ 37] [ 12] [507900132962] +11:18:46 [ 39] [ 2] [00] +11:18:46 [ 41] [ 8] [03000100] +11:18:46 [ 42] [ 15] [APTRA ] +11:18:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:18:46 [ 49] [ 3] [418] +11:18:46 [ 90] [ 42] [020007909103201118580000022069900000000000] +11:18:46 ============================================================================ +11:18:46 + + +waiting on router queue for slot.... +11:18:46 Sending to : +11:18:46 ============================================================================ +11:18:51 ============================================================================ +11:18:51 Slot Id : <131> +11:18:51 Transaction Type : RESPONSE +11:18:51 Received From : +11:18:51 ============================================================================ +11:18:51 FNo. Len. Field Value +11:18:51 ============================================================================ +11:18:51 [ 1] [ 4] [0430] +11:18:51 [ 2] [ 16] [6213544001636577] +11:18:51 [ 3] [ 6] [010000] +11:18:51 [ 4] [ 12] [000100000000] +11:18:51 [ 7] [ 10] [0320111858] +11:18:51 [ 11] [ 6] [079091] +11:18:51 [ 12] [ 6] [111858] +11:18:51 [ 13] [ 4] [0320] +11:18:51 [ 14] [ 4] [4912] +11:18:51 [ 15] [ 4] [0320] +11:18:51 [ 18] [ 4] [6011] +11:18:51 [ 22] [ 3] [900] +11:18:51 [ 25] [ 2] [02] +11:18:51 [ 28] [ 9] [C00002000] +11:18:51 [ 32] [ 6] [220699] +11:18:51 [ 35] [ 32] [6213544001636577=491212013657028] +11:18:51 [ 37] [ 12] [507900132962] +11:18:51 [ 39] [ 2] [00] +11:18:51 [ 41] [ 8] [03000100] +11:18:51 [ 42] [ 15] [APTRA ] +11:18:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:18:51 [ 49] [ 3] [418] +11:18:51 [ 90] [ 42] [020007909103201118580000022069900000000000] +11:18:51 ============================================================================ +11:18:51 Calculate Source COMM Id = 1 +11:18:51 ============================================================================ +11:18:51 + + +waiting on router queue for slot.... +11:19:02 ============================================================================ +11:19:02 Slot Id : <105> +11:19:02 Transaction Type : REQUEST +11:19:02 Received From : +11:19:02 ============================================================================ +11:19:02 FNo. Len. Field Value +11:19:02 ============================================================================ +11:19:02 [ 1] [ 4] [0800] +11:19:02 [ 7] [ 10] [0320041809] +11:19:02 [ 11] [ 6] [156059] +11:19:02 [ 70] [ 3] [301] +11:19:02 ============================================================================ +11:19:02 + + +waiting on router queue for slot.... +11:19:02 Sending to : +11:19:02 ============================================================================ +11:19:02 ============================================================================ +11:19:02 Slot Id : <105> +11:19:02 Transaction Type : RESPONSE +11:19:02 Received From : +11:19:02 ============================================================================ +11:19:02 FNo. Len. Field Value +11:19:02 ============================================================================ +11:19:02 [ 1] [ 4] [0810] +11:19:02 [ 7] [ 10] [0320041809] +11:19:02 [ 11] [ 6] [156059] +11:19:02 [ 39] [ 2] [00] +11:19:02 [ 70] [ 3] [301] +11:19:02 ============================================================================ +11:19:02 Calculate Source COMM Id = 2 +11:19:02 ============================================================================ +11:19:02 + + +waiting on router queue for slot.... +11:19:12 ============================================================================ +11:19:12 Slot Id : <87> +11:19:12 Transaction Type : REQUEST +11:19:12 Received From : +11:19:12 ============================================================================ +11:19:12 FNo. Len. Field Value +11:19:12 ============================================================================ +11:19:12 [ 1] [ 4] [0800] +11:19:12 [ 7] [ 10] [0320041820] +11:19:12 [ 11] [ 6] [156060] +11:19:12 [ 70] [ 3] [301] +11:19:12 ============================================================================ +11:19:12 + + +waiting on router queue for slot.... +11:19:12 Sending to : +11:19:12 ============================================================================ +11:19:12 ============================================================================ +11:19:12 Slot Id : <87> +11:19:12 Transaction Type : RESPONSE +11:19:12 Received From : +11:19:12 ============================================================================ +11:19:12 FNo. Len. Field Value +11:19:12 ============================================================================ +11:19:12 [ 1] [ 4] [0810] +11:19:12 [ 7] [ 10] [0320041820] +11:19:12 [ 11] [ 6] [156060] +11:19:12 [ 39] [ 2] [00] +11:19:12 [ 70] [ 3] [301] +11:19:12 ============================================================================ +11:19:12 Calculate Source COMM Id = 2 +11:19:12 ============================================================================ +11:19:12 + + +waiting on router queue for slot.... +11:19:14 ============================================================================ +11:19:14 Slot Id : <104> +11:19:14 Transaction Type : REQUEST +11:19:14 Received From : +11:19:14 ============================================================================ +11:19:14 FNo. Len. Field Value +11:19:14 ============================================================================ +11:19:14 [ 1] [ 4] [0200] +11:19:14 [ 2] [ 16] [6688990602683607] +11:19:14 [ 3] [ 6] [300000] +11:19:14 [ 4] [ 12] [000000000000] +11:19:14 [ 7] [ 10] [0320111910] +11:19:14 [ 11] [ 6] [727472] +11:19:14 [ 12] [ 6] [111910] +11:19:14 [ 13] [ 4] [0320] +11:19:14 [ 15] [ 4] [0320] +11:19:14 [ 18] [ 4] [6011] +11:19:14 [ 22] [ 3] [900] +11:19:14 [ 25] [ 2] [02] +11:19:14 [ 28] [ 9] [D00000000] +11:19:14 [ 32] [ 6] [621354] +11:19:14 [ 35] [ 37] [6688990602683607=43100061360763800000] +11:19:14 [ 37] [ 12] [507905108873] +11:19:14 [ 41] [ 8] [20001300] +11:19:14 [ 42] [ 15] [NATIVE ] +11:19:14 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +11:19:14 [ 49] [ 3] [418] +11:19:14 [ 52] [ 16] [8841296ABDC87EF8] +11:19:14 ============================================================================ +11:19:14 + + +waiting on router queue for slot.... +11:19:14 Sending to : +11:19:14 ============================================================================ +11:19:14 Sending to : +11:19:14 ============================================================================ +11:19:14 ============================================================================ +11:19:14 Slot Id : <104> +11:19:14 Transaction Type : REQUEST +11:19:14 Received From : +11:19:14 ============================================================================ +11:19:14 FNo. Len. Field Value +11:19:14 ============================================================================ +11:19:14 [ 1] [ 4] [0200] +11:19:14 [ 2] [ 16] [6688990602683607] +11:19:14 [ 3] [ 6] [300000] +11:19:14 [ 4] [ 12] [000000000000] +11:19:14 [ 7] [ 10] [0320111910] +11:19:14 [ 11] [ 6] [727472] +11:19:14 [ 12] [ 6] [111910] +11:19:14 [ 13] [ 4] [0320] +11:19:14 [ 15] [ 4] [0320] +11:19:14 [ 18] [ 4] [6011] +11:19:14 [ 22] [ 3] [900] +11:19:14 [ 25] [ 2] [02] +11:19:14 [ 28] [ 9] [D00000000] +11:19:14 [ 32] [ 6] [621354] +11:19:14 [ 35] [ 37] [6688990602683607=43100061360763800000] +11:19:14 [ 37] [ 12] [507905108873] +11:19:14 [ 41] [ 8] [20001300] +11:19:14 [ 42] [ 15] [NATIVE ] +11:19:14 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +11:19:14 [ 49] [ 3] [418] +11:19:14 [ 52] [ 16] [8841296ABDC87EF8] +11:19:14 ============================================================================ +11:19:14 + + +waiting on router queue for slot.... +11:19:14 Sending to : +11:19:14 ============================================================================ +11:19:14 ============================================================================ +11:19:14 Slot Id : <104> +11:19:14 Transaction Type : REQUEST +11:19:14 Received From : +11:19:14 ============================================================================ +11:19:14 FNo. Len. Field Value +11:19:14 ============================================================================ +11:19:14 [ 1] [ 4] [0200] +11:19:14 [ 2] [ 16] [6688990602683607] +11:19:14 [ 3] [ 6] [300000] +11:19:14 [ 4] [ 12] [000000000000] +11:19:14 [ 7] [ 10] [0320111910] +11:19:14 [ 11] [ 6] [727472] +11:19:14 [ 12] [ 6] [111910] +11:19:14 [ 13] [ 4] [0320] +11:19:14 [ 15] [ 4] [0320] +11:19:14 [ 18] [ 4] [6011] +11:19:14 [ 22] [ 3] [900] +11:19:14 [ 25] [ 2] [02] +11:19:14 [ 28] [ 9] [D00000000] +11:19:14 [ 32] [ 6] [621354] +11:19:14 [ 35] [ 37] [6688990602683607=43100061360763800000] +11:19:14 [ 37] [ 12] [507905108873] +11:19:14 [ 41] [ 8] [20001300] +11:19:14 [ 42] [ 15] [NATIVE ] +11:19:14 [ 43] [ 40] [Suan kaen Garden Saravane LAO] +11:19:14 [ 49] [ 3] [418] +11:19:14 [ 52] [ 16] [5FD41EE986AB2F6C] +11:19:14 ============================================================================ +11:19:14 + + +waiting on router queue for slot.... +11:19:14 Sending to : <4> +11:19:14 ============================================================================ +11:19:15 ============================================================================ +11:19:15 Slot Id : <138> +11:19:15 Transaction Type : REQUEST +11:19:15 Received From : +11:19:15 ============================================================================ +11:19:15 FNo. Len. Field Value +11:19:15 ============================================================================ +11:19:15 [ 1] [ 4] [0200] +11:19:15 [ 2] [ 16] [6213545000118624] +11:19:15 [ 3] [ 6] [301000] +11:19:15 [ 4] [ 12] [000000000000] +11:19:15 [ 7] [ 10] [0320111706] +11:19:15 [ 11] [ 6] [940894] +11:19:15 [ 12] [ 6] [111706] +11:19:15 [ 13] [ 4] [0320] +11:19:15 [ 15] [ 4] [0320] +11:19:15 [ 18] [ 4] [6011] +11:19:15 [ 19] [ 3] [418] +11:19:15 [ 22] [ 3] [021] +11:19:15 [ 25] [ 2] [01] +11:19:15 [ 28] [ 9] [D00000000] +11:19:15 [ 32] [ 6] [668899] +11:19:15 [ 35] [ 32] [6213545000118624=491212011862685] +11:19:15 [ 37] [ 12] [507900844884] +11:19:15 [ 41] [ 8] [03015003] +11:19:15 [ 42] [ 15] [APT ] +11:19:15 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +11:19:15 [ 49] [ 3] [418] +11:19:15 [ 52] [ 16] [28E55206DD5CA96B] +11:19:15 ============================================================================ +11:19:15 + + +waiting on router queue for slot.... +11:19:15 Sending to : +11:19:15 ============================================================================ +11:19:15 Sending to : +11:19:15 ============================================================================ +11:19:15 ============================================================================ +11:19:15 Slot Id : <104> +11:19:15 Transaction Type : RESPONSE +11:19:15 Received From : +11:19:15 ============================================================================ +11:19:15 FNo. Len. Field Value +11:19:15 ============================================================================ +11:19:15 [ 1] [ 4] [0210] +11:19:15 [ 2] [ 16] [6688990602683607] +11:19:15 [ 3] [ 6] [300000] +11:19:15 [ 4] [ 12] [000000000000] +11:19:15 [ 11] [ 6] [727472] +11:19:15 [ 12] [ 6] [111910] +11:19:15 [ 15] [ 4] [0320] +11:19:15 [ 18] [ 4] [6011] +11:19:15 [ 32] [ 6] [621354] +11:19:15 [ 35] [ 37] [6688990602683607=43100061360763800000] +11:19:15 [ 37] [ 12] [507905108873] +11:19:15 [ 38] [ 6] [403506] +11:19:15 [ 39] [ 2] [00] +11:19:15 [ 41] [ 8] [20001300] +11:19:15 [ 49] [ 3] [418] +11:19:15 [ 54] [ 20] [0002418C000004334240] +11:19:15 ============================================================================ +11:19:15 Sending to : +11:19:15 ============================================================================ +11:19:15 + + +waiting on router queue for slot.... +11:19:15 ============================================================================ +11:19:15 Slot Id : <138> +11:19:15 Transaction Type : REQUEST +11:19:15 Received From : +11:19:15 ============================================================================ +11:19:15 FNo. Len. Field Value +11:19:15 ============================================================================ +11:19:15 [ 1] [ 4] [0200] +11:19:15 [ 2] [ 16] [6213545000118624] +11:19:15 [ 3] [ 6] [301000] +11:19:15 [ 4] [ 12] [000000000000] +11:19:15 [ 7] [ 10] [0320111706] +11:19:15 [ 11] [ 6] [940894] +11:19:15 [ 12] [ 6] [111706] +11:19:15 [ 13] [ 4] [0320] +11:19:15 [ 15] [ 4] [0320] +11:19:15 [ 18] [ 4] [6011] +11:19:15 [ 19] [ 3] [418] +11:19:15 [ 22] [ 3] [021] +11:19:15 [ 25] [ 2] [01] +11:19:15 [ 28] [ 9] [D00000000] +11:19:15 [ 32] [ 6] [668899] +11:19:15 [ 35] [ 32] [6213545000118624=491212011862685] +11:19:15 [ 37] [ 12] [507900844884] +11:19:15 [ 41] [ 8] [03015003] +11:19:15 [ 42] [ 15] [APT ] +11:19:15 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +11:19:15 [ 49] [ 3] [418] +11:19:15 [ 52] [ 16] [28E55206DD5CA96B] +11:19:15 ============================================================================ +11:19:15 + + +waiting on router queue for slot.... +11:19:15 Sending to : +11:19:15 ============================================================================ +11:19:15 ============================================================================ +11:19:15 Slot Id : <138> +11:19:15 Transaction Type : REQUEST +11:19:15 Received From : +11:19:15 ============================================================================ +11:19:15 FNo. Len. Field Value +11:19:15 ============================================================================ +11:19:15 [ 1] [ 4] [0200] +11:19:15 [ 2] [ 16] [6213545000118624] +11:19:15 [ 3] [ 6] [301000] +11:19:15 [ 4] [ 12] [000000000000] +11:19:15 [ 7] [ 10] [0320111706] +11:19:15 [ 11] [ 6] [940894] +11:19:15 [ 12] [ 6] [111706] +11:19:15 [ 13] [ 4] [0320] +11:19:15 [ 15] [ 4] [0320] +11:19:15 [ 18] [ 4] [6011] +11:19:15 [ 19] [ 3] [418] +11:19:15 [ 22] [ 3] [021] +11:19:15 [ 25] [ 2] [01] +11:19:15 [ 28] [ 9] [D00000000] +11:19:15 [ 32] [ 6] [668899] +11:19:15 [ 35] [ 32] [6213545000118624=491212011862685] +11:19:15 [ 37] [ 12] [507900844884] +11:19:15 [ 41] [ 8] [03015003] +11:19:15 [ 42] [ 15] [APT ] +11:19:15 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +11:19:15 [ 49] [ 3] [418] +11:19:15 [ 52] [ 16] [6FDFB232DA6E9E21] +11:19:15 ============================================================================ +11:19:15 + + +waiting on router queue for slot.... +11:19:15 Sending to : <0> +11:19:15 ============================================================================ +11:19:16 ============================================================================ +11:19:16 Slot Id : <138> +11:19:16 Transaction Type : RESPONSE +11:19:16 Received From : +11:19:16 ============================================================================ +11:19:16 FNo. Len. Field Value +11:19:16 ============================================================================ +11:19:16 [ 1] [ 4] [0210] +11:19:16 [ 2] [ 16] [6213545000118624] +11:19:16 [ 3] [ 6] [301000] +11:19:16 [ 4] [ 12] [000000000000] +11:19:16 [ 7] [ 10] [0320111706] +11:19:16 [ 11] [ 6] [940894] +11:19:16 [ 12] [ 6] [111706] +11:19:16 [ 13] [ 4] [0320] +11:19:16 [ 15] [ 4] [0320] +11:19:16 [ 18] [ 4] [6011] +11:19:16 [ 19] [ 3] [418] +11:19:16 [ 32] [ 6] [668899] +11:19:16 [ 35] [ 32] [6213545000118624=491212011862685] +11:19:16 [ 37] [ 12] [507900844884] +11:19:16 [ 38] [ 6] [522578] +11:19:16 [ 39] [ 2] [00] +11:19:16 [ 41] [ 8] [03015003] +11:19:16 [ 49] [ 3] [418] +11:19:16 [ 54] [ 40] [1001418C0001425496571002418C000142549657] +11:19:16 ============================================================================ +11:19:16 Sending to : +11:19:16 ============================================================================ +11:19:16 + + +waiting on router queue for slot.... +11:19:17 ============================================================================ +11:19:17 Slot Id : <104> +11:19:17 Transaction Type : RESPONSE +11:19:17 Received From : +11:19:17 ============================================================================ +11:19:17 FNo. Len. Field Value +11:19:17 ============================================================================ +11:19:17 [ 1] [ 4] [0210] +11:19:17 [ 2] [ 16] [6688990602683607] +11:19:17 [ 3] [ 6] [300000] +11:19:17 [ 4] [ 12] [000000000000] +11:19:17 [ 11] [ 6] [727472] +11:19:17 [ 12] [ 6] [111910] +11:19:17 [ 15] [ 4] [0320] +11:19:17 [ 18] [ 4] [6011] +11:19:17 [ 32] [ 6] [621354] +11:19:17 [ 35] [ 37] [6688990602683607=43100061360763800000] +11:19:17 [ 37] [ 12] [507905108873] +11:19:17 [ 38] [ 6] [403506] +11:19:17 [ 39] [ 2] [00] +11:19:17 [ 41] [ 8] [20001300] +11:19:17 [ 49] [ 3] [418] +11:19:17 [ 54] [ 20] [0002418C000004334240] +11:19:17 ============================================================================ +11:19:17 Calculate Source COMM Id = 0 +11:19:17 ============================================================================ +11:19:17 + + +waiting on router queue for slot.... +11:19:18 ============================================================================ +11:19:18 Slot Id : <138> +11:19:18 Transaction Type : RESPONSE +11:19:18 Received From : +11:19:18 ============================================================================ +11:19:18 FNo. Len. Field Value +11:19:18 ============================================================================ +11:19:18 [ 1] [ 4] [0210] +11:19:18 [ 2] [ 16] [6213545000118624] +11:19:18 [ 3] [ 6] [301000] +11:19:18 [ 4] [ 12] [000000000000] +11:19:18 [ 7] [ 10] [0320111706] +11:19:18 [ 11] [ 6] [940894] +11:19:18 [ 12] [ 6] [111706] +11:19:18 [ 13] [ 4] [0320] +11:19:18 [ 15] [ 4] [0320] +11:19:18 [ 18] [ 4] [6011] +11:19:18 [ 19] [ 3] [418] +11:19:18 [ 32] [ 6] [668899] +11:19:18 [ 35] [ 32] [6213545000118624=491212011862685] +11:19:18 [ 37] [ 12] [507900844884] +11:19:18 [ 38] [ 6] [522578] +11:19:18 [ 39] [ 2] [00] +11:19:18 [ 41] [ 8] [03015003] +11:19:18 [ 49] [ 3] [418] +11:19:18 [ 54] [ 40] [1001418C0001425496571002418C000142549657] +11:19:18 ============================================================================ +11:19:18 Calculate Source COMM Id = 4 +11:19:18 ============================================================================ +11:19:18 + + +waiting on router queue for slot.... +11:19:20 ============================================================================ +11:19:20 Slot Id : <117> +11:19:20 Transaction Type : REQUEST +11:19:20 Received From : +11:19:20 ============================================================================ +11:19:20 FNo. Len. Field Value +11:19:20 ============================================================================ +11:19:20 [ 1] [ 4] [0200] +11:19:20 [ 2] [ 16] [1888880000097022] +11:19:20 [ 3] [ 6] [010000] +11:19:20 [ 4] [ 12] [000100000000] +11:19:20 [ 7] [ 10] [0320111711] +11:19:20 [ 11] [ 6] [940899] +11:19:20 [ 12] [ 6] [111711] +11:19:20 [ 13] [ 4] [0320] +11:19:20 [ 15] [ 4] [0320] +11:19:20 [ 18] [ 4] [6011] +11:19:20 [ 19] [ 3] [418] +11:19:20 [ 22] [ 3] [021] +11:19:20 [ 25] [ 2] [01] +11:19:20 [ 28] [ 9] [D00002000] +11:19:20 [ 32] [ 6] [668899] +11:19:20 [ 35] [ 32] [1888880000097022=000010100000330] +11:19:20 [ 37] [ 12] [507900136698] +11:19:20 [ 41] [ 8] [03020004] +11:19:20 [ 42] [ 15] [APT ] +11:19:20 [ 43] [ 40] [ DEPT OF VT CAPITAL OF FIN] +11:19:20 [ 49] [ 3] [418] +11:19:20 [ 52] [ 16] [B52ED7D4290406CD] +11:19:20 ============================================================================ +11:19:20 + + +waiting on router queue for slot.... +11:19:20 Sending to : +11:19:20 ============================================================================ +11:19:20 Sending to : +11:19:20 ============================================================================ +11:19:20 ============================================================================ +11:19:20 Slot Id : <117> +11:19:20 Transaction Type : REQUEST +11:19:20 Received From : +11:19:20 ============================================================================ +11:19:20 FNo. Len. Field Value +11:19:20 ============================================================================ +11:19:20 [ 1] [ 4] [0200] +11:19:20 [ 2] [ 16] [1888880000097022] +11:19:20 [ 3] [ 6] [010000] +11:19:20 [ 4] [ 12] [000100000000] +11:19:20 [ 7] [ 10] [0320111711] +11:19:20 [ 11] [ 6] [940899] +11:19:20 [ 12] [ 6] [111711] +11:19:20 [ 13] [ 4] [0320] +11:19:20 [ 15] [ 4] [0320] +11:19:20 [ 18] [ 4] [6011] +11:19:20 [ 19] [ 3] [418] +11:19:20 [ 22] [ 3] [021] +11:19:20 [ 25] [ 2] [01] +11:19:20 [ 28] [ 9] [D00002000] +11:19:20 [ 32] [ 6] [668899] +11:19:20 [ 35] [ 32] [1888880000097022=000010100000330] +11:19:20 [ 37] [ 12] [507900136698] +11:19:20 [ 41] [ 8] [03020004] +11:19:20 [ 42] [ 15] [APT ] +11:19:20 [ 43] [ 40] [ DEPT OF VT CAPITAL OF FIN] +11:19:20 [ 49] [ 3] [418] +11:19:20 [ 52] [ 16] [B52ED7D4290406CD] +11:19:20 ============================================================================ +11:19:20 + + +waiting on router queue for slot.... +11:19:20 Sending to : +11:19:20 ============================================================================ +11:19:20 ============================================================================ +11:19:20 Slot Id : <117> +11:19:20 Transaction Type : REQUEST +11:19:20 Received From : +11:19:20 ============================================================================ +11:19:20 FNo. Len. Field Value +11:19:20 ============================================================================ +11:19:20 [ 1] [ 4] [0200] +11:19:20 [ 2] [ 16] [1888880000097022] +11:19:20 [ 3] [ 6] [010000] +11:19:20 [ 4] [ 12] [000100000000] +11:19:20 [ 7] [ 10] [0320111711] +11:19:20 [ 11] [ 6] [940899] +11:19:20 [ 12] [ 6] [111711] +11:19:20 [ 13] [ 4] [0320] +11:19:20 [ 15] [ 4] [0320] +11:19:20 [ 18] [ 4] [6011] +11:19:20 [ 19] [ 3] [418] +11:19:20 [ 22] [ 3] [021] +11:19:20 [ 25] [ 2] [01] +11:19:20 [ 28] [ 9] [D00002000] +11:19:20 [ 32] [ 6] [668899] +11:19:20 [ 35] [ 32] [1888880000097022=000010100000330] +11:19:20 [ 37] [ 12] [507900136698] +11:19:20 [ 41] [ 8] [03020004] +11:19:20 [ 42] [ 15] [APT ] +11:19:20 [ 43] [ 40] [ DEPT OF VT CAPITAL OF FIN] +11:19:20 [ 49] [ 3] [418] +11:19:20 [ 52] [ 16] [E362B5C48E1B5E7D] +11:19:20 ============================================================================ +11:19:20 + + +waiting on router queue for slot.... +11:19:20 Sending to : <5> +11:19:20 ============================================================================ +11:19:23 ============================================================================ +11:19:23 Slot Id : <112> +11:19:23 Transaction Type : REQUEST +11:19:23 Received From : +11:19:23 ============================================================================ +11:19:23 FNo. Len. Field Value +11:19:23 ============================================================================ +11:19:23 [ 1] [ 4] [0800] +11:19:23 [ 7] [ 10] [0320041831] +11:19:23 [ 11] [ 6] [156061] +11:19:23 [ 70] [ 3] [301] +11:19:23 ============================================================================ +11:19:23 + + +waiting on router queue for slot.... +11:19:23 Sending to : +11:19:23 ============================================================================ +11:19:23 ============================================================================ +11:19:23 Slot Id : <112> +11:19:23 Transaction Type : RESPONSE +11:19:23 Received From : +11:19:23 ============================================================================ +11:19:23 FNo. Len. Field Value +11:19:23 ============================================================================ +11:19:23 [ 1] [ 4] [0810] +11:19:23 [ 7] [ 10] [0320041831] +11:19:23 [ 11] [ 6] [156061] +11:19:23 [ 39] [ 2] [00] +11:19:23 [ 70] [ 3] [301] +11:19:23 ============================================================================ +11:19:23 Calculate Source COMM Id = 2 +11:19:23 ============================================================================ +11:19:23 + + +waiting on router queue for slot.... +11:19:23 ============================================================================ +11:19:23 Slot Id : <140> +11:19:23 Transaction Type : REQUEST +11:19:23 Received From : +11:19:23 ============================================================================ +11:19:23 FNo. Len. Field Value +11:19:23 ============================================================================ +11:19:23 [ 1] [ 4] [0200] +11:19:23 [ 2] [ 16] [1808930200040764] +11:19:23 [ 3] [ 6] [011000] +11:19:23 [ 4] [ 12] [000045000000] +11:19:23 [ 7] [ 10] [0320111919] +11:19:23 [ 11] [ 6] [727513] +11:19:23 [ 12] [ 6] [111919] +11:19:23 [ 13] [ 4] [0320] +11:19:23 [ 15] [ 4] [0320] +11:19:23 [ 18] [ 4] [6011] +11:19:23 [ 22] [ 3] [900] +11:19:23 [ 25] [ 2] [02] +11:19:23 [ 28] [ 9] [D00002000] +11:19:23 [ 32] [ 6] [621354] +11:19:23 [ 35] [ 27] [1808930200040764=1803500469] +11:19:23 [ 37] [ 12] [507903063631] +11:19:23 [ 41] [ 8] [01008600] +11:19:23 [ 42] [ 15] [NATIVE ] +11:19:23 [ 43] [ 40] [BEER LAO Hatxaifong LAO] +11:19:23 [ 49] [ 3] [418] +11:19:23 [ 52] [ 16] [C8E1C9F0009279B1] +11:19:23 ============================================================================ +11:19:23 + + +waiting on router queue for slot.... +11:19:23 Sending to : +11:19:23 ============================================================================ +11:19:23 Sending to : +11:19:23 ============================================================================ +11:19:24 ============================================================================ +11:19:24 Slot Id : <117> +11:19:24 Transaction Type : RESPONSE +11:19:24 Received From : +11:19:24 ============================================================================ +11:19:24 FNo. Len. Field Value +11:19:24 ============================================================================ +11:19:24 [ 1] [ 4] [0210] +11:19:24 [ 2] [ 16] [1888880000097022] +11:19:24 [ 3] [ 6] [010000] +11:19:24 [ 4] [ 12] [000100000000] +11:19:24 [ 7] [ 10] [0320111711] +11:19:24 [ 11] [ 6] [940899] +11:19:24 [ 12] [ 6] [111711] +11:19:24 [ 13] [ 4] [0320] +11:19:24 [ 15] [ 4] [0320] +11:19:24 [ 18] [ 4] [6011] +11:19:24 [ 19] [ 3] [418] +11:19:24 [ 32] [ 6] [668899] +11:19:24 [ 37] [ 12] [507900136698] +11:19:24 [ 38] [ 6] [393500] +11:19:24 [ 39] [ 2] [00] +11:19:24 [ 41] [ 8] [03020004] +11:19:24 [ 49] [ 3] [418] +11:19:24 [ 54] [ 0] [] +11:19:24 ============================================================================ +11:19:24 Sending to : +11:19:24 ============================================================================ +11:19:24 + + +waiting on router queue for slot.... +11:19:24 ============================================================================ +11:19:24 Slot Id : <140> +11:19:24 Transaction Type : REQUEST +11:19:24 Received From : +11:19:24 ============================================================================ +11:19:24 FNo. Len. Field Value +11:19:24 ============================================================================ +11:19:24 [ 1] [ 4] [0200] +11:19:24 [ 2] [ 16] [1808930200040764] +11:19:24 [ 3] [ 6] [011000] +11:19:24 [ 4] [ 12] [000045000000] +11:19:24 [ 7] [ 10] [0320111919] +11:19:24 [ 11] [ 6] [727513] +11:19:24 [ 12] [ 6] [111919] +11:19:24 [ 13] [ 4] [0320] +11:19:24 [ 15] [ 4] [0320] +11:19:24 [ 18] [ 4] [6011] +11:19:24 [ 22] [ 3] [900] +11:19:24 [ 25] [ 2] [02] +11:19:24 [ 28] [ 9] [D00002000] +11:19:24 [ 32] [ 6] [621354] +11:19:24 [ 35] [ 27] [1808930200040764=1803500469] +11:19:24 [ 37] [ 12] [507903063631] +11:19:24 [ 41] [ 8] [01008600] +11:19:24 [ 42] [ 15] [NATIVE ] +11:19:24 [ 43] [ 40] [BEER LAO Hatxaifong LAO] +11:19:24 [ 49] [ 3] [418] +11:19:24 [ 52] [ 16] [C8E1C9F0009279B1] +11:19:24 ============================================================================ +11:19:24 + + +waiting on router queue for slot.... +11:19:24 Sending to : +11:19:24 ============================================================================ +11:19:24 ============================================================================ +11:19:24 Slot Id : <140> +11:19:24 Transaction Type : REQUEST +11:19:24 Received From : +11:19:24 ============================================================================ +11:19:24 FNo. Len. Field Value +11:19:24 ============================================================================ +11:19:24 [ 1] [ 4] [0200] +11:19:24 [ 2] [ 16] [1808930200040764] +11:19:24 [ 3] [ 6] [011000] +11:19:24 [ 4] [ 12] [000045000000] +11:19:24 [ 7] [ 10] [0320111919] +11:19:24 [ 11] [ 6] [727513] +11:19:24 [ 12] [ 6] [111919] +11:19:24 [ 13] [ 4] [0320] +11:19:24 [ 15] [ 4] [0320] +11:19:24 [ 18] [ 4] [6011] +11:19:24 [ 22] [ 3] [900] +11:19:24 [ 25] [ 2] [02] +11:19:24 [ 28] [ 9] [D00002000] +11:19:24 [ 32] [ 6] [621354] +11:19:24 [ 35] [ 27] [1808930200040764=1803500469] +11:19:24 [ 37] [ 12] [507903063631] +11:19:24 [ 41] [ 8] [01008600] +11:19:24 [ 42] [ 15] [NATIVE ] +11:19:24 [ 43] [ 40] [BEER LAO Hatxaifong LAO] +11:19:24 [ 49] [ 3] [418] +11:19:24 [ 52] [ 16] [D322D5B9F8B096E6] +11:19:24 ============================================================================ +11:19:24 + + +waiting on router queue for slot.... +11:19:24 Sending to : <2> +11:19:24 ============================================================================ +11:19:25 ============================================================================ +11:19:25 Slot Id : <117> +11:19:25 Transaction Type : RESPONSE +11:19:25 Received From : +11:19:25 ============================================================================ +11:19:25 FNo. Len. Field Value +11:19:25 ============================================================================ +11:19:25 [ 1] [ 4] [0210] +11:19:25 [ 2] [ 16] [1888880000097022] +11:19:25 [ 3] [ 6] [010000] +11:19:25 [ 4] [ 12] [000100000000] +11:19:25 [ 7] [ 10] [0320111711] +11:19:25 [ 11] [ 6] [940899] +11:19:25 [ 12] [ 6] [111711] +11:19:25 [ 13] [ 4] [0320] +11:19:25 [ 15] [ 4] [0320] +11:19:25 [ 18] [ 4] [6011] +11:19:25 [ 19] [ 3] [418] +11:19:25 [ 32] [ 6] [668899] +11:19:25 [ 37] [ 12] [507900136698] +11:19:25 [ 38] [ 6] [393500] +11:19:25 [ 39] [ 2] [00] +11:19:25 [ 41] [ 8] [03020004] +11:19:25 [ 49] [ 3] [418] +11:19:25 [ 54] [ 0] [] +11:19:25 ============================================================================ +11:19:25 Calculate Source COMM Id = 4 +11:19:25 ============================================================================ +11:19:25 + + +waiting on router queue for slot.... +11:19:29 ============================================================================ +11:19:29 Slot Id : <140> +11:19:29 Transaction Type : RESPONSE +11:19:29 Received From : +11:19:29 ============================================================================ +11:19:29 FNo. Len. Field Value +11:19:29 ============================================================================ +11:19:29 [ 1] [ 4] [0210] +11:19:29 [ 2] [ 16] [1808930200040764] +11:19:29 [ 3] [ 6] [011000] +11:19:29 [ 4] [ 12] [000045000000] +11:19:29 [ 6] [ 12] [000045000000] +11:19:29 [ 7] [ 10] [0320111919] +11:19:29 [ 11] [ 6] [727513] +11:19:29 [ 12] [ 6] [111919] +11:19:29 [ 13] [ 4] [0320] +11:19:29 [ 18] [ 4] [6011] +11:19:29 [ 19] [ 3] [418] +11:19:29 [ 22] [ 3] [021] +11:19:29 [ 32] [ 6] [621354] +11:19:29 [ 35] [ 27] [1808930200040764=1803500469] +11:19:29 [ 37] [ 12] [507903063631] +11:19:29 [ 38] [ 6] [727513] +11:19:29 [ 39] [ 2] [00] +11:19:29 [ 41] [ 8] [01008600] +11:19:29 [ 49] [ 3] [418] +11:19:29 [ 52] [ 16] [D322D5B9F8B096E6] +11:19:29 [ 54] [ 20] [1001418C000015189000] +11:19:29 ============================================================================ +11:19:29 Sending to : +11:19:29 ============================================================================ +11:19:29 + + +waiting on router queue for slot.... +11:19:29 ============================================================================ +11:19:29 Slot Id : <97> +11:19:29 Transaction Type : REQUEST +11:19:29 Received From : +11:19:29 ============================================================================ +11:19:29 FNo. Len. Field Value +11:19:29 ============================================================================ +11:19:29 [ 1] [ 4] [0200] +11:19:29 [ 2] [ 16] [6213548000416378] +11:19:29 [ 3] [ 6] [301000] +11:19:29 [ 4] [ 12] [000000000000] +11:19:29 [ 7] [ 10] [0320111950] +11:19:29 [ 11] [ 6] [204546] +11:19:29 [ 12] [ 6] [231801] +11:19:29 [ 13] [ 4] [0319] +11:19:29 [ 14] [ 4] [1806] +11:19:29 [ 15] [ 4] [0319] +11:19:29 [ 18] [ 4] [6011] +11:19:29 [ 19] [ 3] [418] +11:19:29 [ 22] [ 3] [021] +11:19:29 [ 25] [ 2] [01] +11:19:29 [ 28] [ 9] [D00000000] +11:19:29 [ 32] [ 6] [198901] +11:19:29 [ 35] [ 32] [6213548000416378=180612011637519] +11:19:29 [ 37] [ 12] [507911204546] +11:19:29 [ 41] [ 8] [01529031] +11:19:29 [ 42] [ 15] [000000041529031] +11:19:29 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:19:29 [ 49] [ 3] [418] +11:19:29 [ 52] [ 16] [F1DE67D6F2B6C2A5] +11:19:29 ============================================================================ +11:19:29 + + +waiting on router queue for slot.... +11:19:29 Sending to : +11:19:29 ============================================================================ +11:19:29 Sending to : +11:19:29 ============================================================================ +11:19:29 ============================================================================ +11:19:29 Slot Id : <97> +11:19:29 Transaction Type : REQUEST +11:19:29 Received From : +11:19:29 ============================================================================ +11:19:29 FNo. Len. Field Value +11:19:29 ============================================================================ +11:19:29 [ 1] [ 4] [0200] +11:19:29 [ 2] [ 16] [6213548000416378] +11:19:29 [ 3] [ 6] [301000] +11:19:29 [ 4] [ 12] [000000000000] +11:19:29 [ 7] [ 10] [0320111950] +11:19:29 [ 11] [ 6] [204546] +11:19:29 [ 12] [ 6] [231801] +11:19:29 [ 13] [ 4] [0319] +11:19:29 [ 14] [ 4] [1806] +11:19:29 [ 15] [ 4] [0319] +11:19:29 [ 18] [ 4] [6011] +11:19:29 [ 19] [ 3] [418] +11:19:29 [ 22] [ 3] [021] +11:19:29 [ 25] [ 2] [01] +11:19:29 [ 28] [ 9] [D00000000] +11:19:29 [ 32] [ 6] [198901] +11:19:29 [ 35] [ 32] [6213548000416378=180612011637519] +11:19:29 [ 37] [ 12] [507911204546] +11:19:29 [ 41] [ 8] [01529031] +11:19:29 [ 42] [ 15] [000000041529031] +11:19:29 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:19:29 [ 49] [ 3] [418] +11:19:29 [ 52] [ 16] [F1DE67D6F2B6C2A5] +11:19:29 ============================================================================ +11:19:29 + + +waiting on router queue for slot.... +11:19:29 Sending to : +11:19:29 ============================================================================ +11:19:29 ============================================================================ +11:19:29 Slot Id : <97> +11:19:29 Transaction Type : REQUEST +11:19:29 Received From : +11:19:29 ============================================================================ +11:19:29 FNo. Len. Field Value +11:19:29 ============================================================================ +11:19:29 [ 1] [ 4] [0200] +11:19:29 [ 2] [ 16] [6213548000416378] +11:19:29 [ 3] [ 6] [301000] +11:19:29 [ 4] [ 12] [000000000000] +11:19:29 [ 7] [ 10] [0320111950] +11:19:29 [ 11] [ 6] [204546] +11:19:29 [ 12] [ 6] [231801] +11:19:29 [ 13] [ 4] [0319] +11:19:29 [ 14] [ 4] [1806] +11:19:29 [ 15] [ 4] [0319] +11:19:29 [ 18] [ 4] [6011] +11:19:29 [ 19] [ 3] [418] +11:19:29 [ 22] [ 3] [021] +11:19:29 [ 25] [ 2] [01] +11:19:29 [ 28] [ 9] [D00000000] +11:19:29 [ 32] [ 6] [198901] +11:19:29 [ 35] [ 32] [6213548000416378=180612011637519] +11:19:29 [ 37] [ 12] [507911204546] +11:19:29 [ 41] [ 8] [01529031] +11:19:29 [ 42] [ 15] [000000041529031] +11:19:29 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:19:29 [ 49] [ 3] [418] +11:19:29 [ 52] [ 16] [BC6104B8A9E57F53] +11:19:29 ============================================================================ +11:19:29 + + +waiting on router queue for slot.... +11:19:29 Sending to : <0> +11:19:29 ============================================================================ +11:19:30 ============================================================================ +11:19:30 Slot Id : <97> +11:19:30 Transaction Type : RESPONSE +11:19:30 Received From : +11:19:30 ============================================================================ +11:19:30 FNo. Len. Field Value +11:19:30 ============================================================================ +11:19:30 [ 1] [ 4] [0210] +11:19:30 [ 2] [ 16] [6213548000416378] +11:19:30 [ 3] [ 6] [301000] +11:19:30 [ 4] [ 12] [000000000000] +11:19:30 [ 7] [ 10] [0320111950] +11:19:30 [ 11] [ 6] [204546] +11:19:30 [ 12] [ 6] [231801] +11:19:30 [ 13] [ 4] [0319] +11:19:30 [ 15] [ 4] [0319] +11:19:30 [ 18] [ 4] [6011] +11:19:30 [ 19] [ 3] [418] +11:19:30 [ 32] [ 6] [198901] +11:19:30 [ 35] [ 32] [6213548000416378=180612011637519] +11:19:30 [ 37] [ 12] [507911204546] +11:19:30 [ 38] [ 6] [641274] +11:19:30 [ 39] [ 2] [00] +11:19:30 [ 41] [ 8] [01529031] +11:19:30 [ 49] [ 3] [418] +11:19:30 [ 54] [ 40] [1001418C0000475959291002418C000047595929] +11:19:30 ============================================================================ +11:19:30 Sending to : +11:19:30 ============================================================================ +11:19:30 + + +waiting on router queue for slot.... +11:19:30 ============================================================================ +11:19:30 Slot Id : <140> +11:19:30 Transaction Type : RESPONSE +11:19:30 Received From : +11:19:30 ============================================================================ +11:19:30 FNo. Len. Field Value +11:19:30 ============================================================================ +11:19:30 [ 1] [ 4] [0210] +11:19:30 [ 2] [ 16] [1808930200040764] +11:19:30 [ 3] [ 6] [011000] +11:19:30 [ 4] [ 12] [000045000000] +11:19:30 [ 6] [ 12] [000045000000] +11:19:30 [ 7] [ 10] [0320111919] +11:19:30 [ 11] [ 6] [727513] +11:19:30 [ 12] [ 6] [111919] +11:19:30 [ 13] [ 4] [0320] +11:19:30 [ 18] [ 4] [6011] +11:19:30 [ 19] [ 3] [418] +11:19:30 [ 22] [ 3] [021] +11:19:30 [ 32] [ 6] [621354] +11:19:30 [ 35] [ 27] [1808930200040764=1803500469] +11:19:30 [ 37] [ 12] [507903063631] +11:19:30 [ 38] [ 6] [727513] +11:19:30 [ 39] [ 2] [00] +11:19:30 [ 41] [ 8] [01008600] +11:19:30 [ 49] [ 3] [418] +11:19:30 [ 52] [ 16] [D322D5B9F8B096E6] +11:19:30 [ 54] [ 20] [1001418C000015189000] +11:19:30 ============================================================================ +11:19:30 Calculate Source COMM Id = 0 +11:19:30 ============================================================================ +11:19:30 + + +waiting on router queue for slot.... +11:19:32 ============================================================================ +11:19:32 Slot Id : <97> +11:19:32 Transaction Type : RESPONSE +11:19:32 Received From : +11:19:32 ============================================================================ +11:19:32 FNo. Len. Field Value +11:19:32 ============================================================================ +11:19:32 [ 1] [ 4] [0210] +11:19:32 [ 2] [ 16] [6213548000416378] +11:19:32 [ 3] [ 6] [301000] +11:19:32 [ 4] [ 12] [000000000000] +11:19:32 [ 7] [ 10] [0320111950] +11:19:32 [ 11] [ 6] [204546] +11:19:32 [ 12] [ 6] [231801] +11:19:32 [ 13] [ 4] [0319] +11:19:32 [ 15] [ 4] [0319] +11:19:32 [ 18] [ 4] [6011] +11:19:32 [ 19] [ 3] [418] +11:19:32 [ 32] [ 6] [198901] +11:19:32 [ 35] [ 32] [6213548000416378=180612011637519] +11:19:32 [ 37] [ 12] [507911204546] +11:19:32 [ 38] [ 6] [641274] +11:19:32 [ 39] [ 2] [00] +11:19:32 [ 41] [ 8] [01529031] +11:19:32 [ 49] [ 3] [418] +11:19:32 [ 54] [ 40] [1001418C0000475959291002418C000047595929] +11:19:32 ============================================================================ +11:19:32 Calculate Source COMM Id = 5 +11:19:32 ============================================================================ +11:19:32 + + +waiting on router queue for slot.... +11:19:32 ============================================================================ +11:19:32 Slot Id : <116> +11:19:32 Transaction Type : REQUEST +11:19:32 Received From : +11:19:32 ============================================================================ +11:19:32 FNo. Len. Field Value +11:19:32 ============================================================================ +11:19:32 [ 1] [ 4] [0800] +11:19:32 [ 2] [ 5] [02531] +11:19:32 [ 3] [ 6] [579118] +11:19:32 [ 7] [ 10] [0320041932] +11:19:32 [ 11] [ 6] [807069] +11:19:32 [ 15] [ 10] [0320041932] +11:19:32 [ 37] [ 11] [57911807069] +11:19:32 [ 70] [ 3] [001] +11:19:32 ============================================================================ +11:19:32 + + +waiting on router queue for slot.... +11:19:32 ============================================================================ +11:19:32 Slot Id : <116> +11:19:32 Transaction Type : RESPONSE +11:19:32 Received From : +11:19:32 ============================================================================ +11:19:32 FNo. Len. Field Value +11:19:32 ============================================================================ +11:19:32 [ 1] [ 4] [0810] +11:19:32 [ 7] [ 10] [0320041932] +11:19:32 [ 11] [ 6] [807069] +11:19:32 [ 15] [ 4] [0320] +11:19:32 [ 37] [ 12] [57911807069] +11:19:32 [ 39] [ 2] [00] +11:19:32 [ 70] [ 3] [001] +11:19:32 ============================================================================ +11:19:32 Sending to : +11:19:32 ============================================================================ +11:19:32 + + +waiting on router queue for slot.... +11:19:34 ============================================================================ +11:19:34 Slot Id : <111> +11:19:34 Transaction Type : REQUEST +11:19:34 Received From : +11:19:34 ============================================================================ +11:19:34 FNo. Len. Field Value +11:19:34 ============================================================================ +11:19:34 [ 1] [ 4] [0200] +11:19:34 [ 2] [ 16] [6213544001207700] +11:19:34 [ 3] [ 6] [010000] +11:19:34 [ 4] [ 12] [000070000000] +11:19:34 [ 7] [ 10] [0320111725] +11:19:34 [ 11] [ 6] [940915] +11:19:34 [ 12] [ 6] [111725] +11:19:34 [ 13] [ 4] [0320] +11:19:34 [ 15] [ 4] [0320] +11:19:34 [ 18] [ 4] [6011] +11:19:34 [ 19] [ 3] [418] +11:19:34 [ 22] [ 3] [021] +11:19:34 [ 25] [ 2] [01] +11:19:34 [ 28] [ 9] [D00002000] +11:19:34 [ 32] [ 6] [668899] +11:19:34 [ 35] [ 32] [6213544001207700=491212010770595] +11:19:34 [ 37] [ 12] [507902435625] +11:19:34 [ 41] [ 8] [03020031] +11:19:34 [ 42] [ 15] [APT ] +11:19:34 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:19:34 [ 49] [ 3] [418] +11:19:34 [ 52] [ 16] [33363056DFF8B925] +11:19:34 ============================================================================ +11:19:34 + + +waiting on router queue for slot.... +11:19:34 Sending to : +11:19:34 ============================================================================ +11:19:34 Sending to : +11:19:34 ============================================================================ +11:19:35 ============================================================================ +11:19:35 Slot Id : <111> +11:19:35 Transaction Type : REQUEST +11:19:35 Received From : +11:19:35 ============================================================================ +11:19:35 FNo. Len. Field Value +11:19:35 ============================================================================ +11:19:35 [ 1] [ 4] [0200] +11:19:35 [ 2] [ 16] [6213544001207700] +11:19:35 [ 3] [ 6] [010000] +11:19:35 [ 4] [ 12] [000070000000] +11:19:35 [ 7] [ 10] [0320111725] +11:19:35 [ 11] [ 6] [940915] +11:19:35 [ 12] [ 6] [111725] +11:19:35 [ 13] [ 4] [0320] +11:19:35 [ 15] [ 4] [0320] +11:19:35 [ 18] [ 4] [6011] +11:19:35 [ 19] [ 3] [418] +11:19:35 [ 22] [ 3] [021] +11:19:35 [ 25] [ 2] [01] +11:19:35 [ 28] [ 9] [D00002000] +11:19:35 [ 32] [ 6] [668899] +11:19:35 [ 35] [ 32] [6213544001207700=491212010770595] +11:19:35 [ 37] [ 12] [507902435625] +11:19:35 [ 41] [ 8] [03020031] +11:19:35 [ 42] [ 15] [APT ] +11:19:35 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:19:35 [ 49] [ 3] [418] +11:19:35 [ 52] [ 16] [33363056DFF8B925] +11:19:35 ============================================================================ +11:19:35 + + +waiting on router queue for slot.... +11:19:35 Sending to : +11:19:35 ============================================================================ +11:19:35 ============================================================================ +11:19:35 Slot Id : <111> +11:19:35 Transaction Type : REQUEST +11:19:35 Received From : +11:19:35 ============================================================================ +11:19:35 FNo. Len. Field Value +11:19:35 ============================================================================ +11:19:35 [ 1] [ 4] [0200] +11:19:35 [ 2] [ 16] [6213544001207700] +11:19:35 [ 3] [ 6] [010000] +11:19:35 [ 4] [ 12] [000070000000] +11:19:35 [ 7] [ 10] [0320111725] +11:19:35 [ 11] [ 6] [940915] +11:19:35 [ 12] [ 6] [111725] +11:19:35 [ 13] [ 4] [0320] +11:19:35 [ 15] [ 4] [0320] +11:19:35 [ 18] [ 4] [6011] +11:19:35 [ 19] [ 3] [418] +11:19:35 [ 22] [ 3] [021] +11:19:35 [ 25] [ 2] [01] +11:19:35 [ 28] [ 9] [D00002000] +11:19:35 [ 32] [ 6] [668899] +11:19:35 [ 35] [ 32] [6213544001207700=491212010770595] +11:19:35 [ 37] [ 12] [507902435625] +11:19:35 [ 41] [ 8] [03020031] +11:19:35 [ 42] [ 15] [APT ] +11:19:35 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:19:35 [ 49] [ 3] [418] +11:19:35 [ 52] [ 16] [B637918913EC1B0E] +11:19:35 ============================================================================ +11:19:35 + + +waiting on router queue for slot.... +11:19:35 Sending to : <0> +11:19:35 ============================================================================ +11:19:35 ============================================================================ +11:19:35 Slot Id : <111> +11:19:35 Transaction Type : RESPONSE +11:19:35 Received From : +11:19:35 ============================================================================ +11:19:35 FNo. Len. Field Value +11:19:35 ============================================================================ +11:19:35 [ 1] [ 4] [0210] +11:19:35 [ 2] [ 16] [6213544001207700] +11:19:35 [ 3] [ 6] [010000] +11:19:35 [ 4] [ 12] [000070000000] +11:19:35 [ 7] [ 10] [0320111725] +11:19:35 [ 11] [ 6] [940915] +11:19:35 [ 12] [ 6] [111725] +11:19:35 [ 13] [ 4] [0320] +11:19:35 [ 15] [ 4] [0320] +11:19:35 [ 18] [ 4] [6011] +11:19:35 [ 19] [ 3] [418] +11:19:35 [ 32] [ 6] [668899] +11:19:35 [ 35] [ 32] [6213544001207700=491212010770595] +11:19:35 [ 37] [ 12] [507902435625] +11:19:35 [ 38] [ 6] [967488] +11:19:35 [ 39] [ 2] [00] +11:19:35 [ 41] [ 8] [03020031] +11:19:35 [ 49] [ 3] [418] +11:19:35 [ 54] [ 40] [0001418C0019352778770002418C001935277877] +11:19:35 ============================================================================ +11:19:35 Sending to : +11:19:35 ============================================================================ +11:19:35 + + +waiting on router queue for slot.... +11:19:37 ============================================================================ +11:19:37 Slot Id : <111> +11:19:37 Transaction Type : RESPONSE +11:19:37 Received From : +11:19:37 ============================================================================ +11:19:37 FNo. Len. Field Value +11:19:37 ============================================================================ +11:19:37 [ 1] [ 4] [0210] +11:19:37 [ 2] [ 16] [6213544001207700] +11:19:37 [ 3] [ 6] [010000] +11:19:37 [ 4] [ 12] [000070000000] +11:19:37 [ 7] [ 10] [0320111725] +11:19:37 [ 11] [ 6] [940915] +11:19:37 [ 12] [ 6] [111725] +11:19:37 [ 13] [ 4] [0320] +11:19:37 [ 15] [ 4] [0320] +11:19:37 [ 18] [ 4] [6011] +11:19:37 [ 19] [ 3] [418] +11:19:37 [ 32] [ 6] [668899] +11:19:37 [ 35] [ 32] [6213544001207700=491212010770595] +11:19:37 [ 37] [ 12] [507902435625] +11:19:37 [ 38] [ 6] [967488] +11:19:37 [ 39] [ 2] [00] +11:19:37 [ 41] [ 8] [03020031] +11:19:37 [ 49] [ 3] [418] +11:19:37 [ 54] [ 40] [0001418C0019352778770002418C001935277877] +11:19:37 ============================================================================ +11:19:37 Calculate Source COMM Id = 4 +11:19:37 ============================================================================ +11:19:37 + + +waiting on router queue for slot.... +11:19:39 ============================================================================ +11:19:39 Slot Id : <124> +11:19:39 Transaction Type : REQUEST +11:19:39 Received From : +11:19:39 ============================================================================ +11:19:39 FNo. Len. Field Value +11:19:39 ============================================================================ +11:19:39 [ 1] [ 4] [0800] +11:19:39 [ 7] [ 10] [0320041847] +11:19:39 [ 11] [ 6] [156062] +11:19:39 [ 70] [ 3] [301] +11:19:39 ============================================================================ +11:19:39 + + +waiting on router queue for slot.... +11:19:39 Sending to : +11:19:39 ============================================================================ +11:19:39 ============================================================================ +11:19:39 Slot Id : <124> +11:19:39 Transaction Type : RESPONSE +11:19:39 Received From : +11:19:39 ============================================================================ +11:19:39 FNo. Len. Field Value +11:19:39 ============================================================================ +11:19:39 [ 1] [ 4] [0810] +11:19:39 [ 7] [ 10] [0320041847] +11:19:39 [ 11] [ 6] [156062] +11:19:39 [ 39] [ 2] [00] +11:19:39 [ 70] [ 3] [301] +11:19:39 ============================================================================ +11:19:39 Calculate Source COMM Id = 2 +11:19:39 ============================================================================ +11:19:39 + + +waiting on router queue for slot.... +11:19:50 ============================================================================ +11:19:50 Slot Id : <161> +11:19:50 Transaction Type : REQUEST +11:19:50 Received From : +11:19:50 ============================================================================ +11:19:50 FNo. Len. Field Value +11:19:50 ============================================================================ +11:19:50 [ 1] [ 4] [0800] +11:19:50 [ 7] [ 10] [0320041858] +11:19:50 [ 11] [ 6] [156063] +11:19:50 [ 70] [ 3] [301] +11:19:50 ============================================================================ +11:19:50 + + +waiting on router queue for slot.... +11:19:50 Sending to : +11:19:50 ============================================================================ +11:19:50 ============================================================================ +11:19:50 Slot Id : <161> +11:19:50 Transaction Type : RESPONSE +11:19:50 Received From : +11:19:50 ============================================================================ +11:19:50 FNo. Len. Field Value +11:19:50 ============================================================================ +11:19:50 [ 1] [ 4] [0810] +11:19:50 [ 7] [ 10] [0320041858] +11:19:50 [ 11] [ 6] [156063] +11:19:50 [ 39] [ 2] [00] +11:19:50 [ 70] [ 3] [301] +11:19:50 ============================================================================ +11:19:50 Calculate Source COMM Id = 2 +11:19:50 ============================================================================ +11:19:50 + + +waiting on router queue for slot.... +11:19:55 ============================================================================ +11:19:55 Slot Id : <80> +11:19:55 Transaction Type : REQUEST +11:19:55 Received From : +11:19:55 ============================================================================ +11:19:55 FNo. Len. Field Value +11:19:55 ============================================================================ +11:19:55 [ 1] [ 4] [0800] +11:19:55 [ 7] [ 10] [0320042742] +11:19:55 [ 11] [ 6] [067638] +11:19:55 [ 37] [ 12] [57911067638] +11:19:55 [ 70] [ 3] [301] +11:19:55 ============================================================================ +11:19:55 + + +waiting on router queue for slot.... +11:19:55 Sending to : +11:19:55 ============================================================================ +11:19:55 ============================================================================ +11:19:55 Slot Id : <80> +11:19:55 Transaction Type : RESPONSE +11:19:55 Received From : +11:19:55 ============================================================================ +11:19:55 FNo. Len. Field Value +11:19:55 ============================================================================ +11:19:55 [ 1] [ 4] [0810] +11:19:55 [ 7] [ 10] [0320042742] +11:19:55 [ 11] [ 6] [067638] +11:19:55 [ 37] [ 12] [579110676380] +11:19:55 [ 39] [ 2] [00] +11:19:55 [ 70] [ 3] [810] +11:19:55 ============================================================================ +11:19:55 Calculate Source COMM Id = 1 +11:19:55 ============================================================================ +11:19:55 + + +waiting on router queue for slot.... +11:20:01 ============================================================================ +11:20:01 Slot Id : <147> +11:20:01 Transaction Type : REQUEST +11:20:01 Received From : +11:20:01 ============================================================================ +11:20:01 FNo. Len. Field Value +11:20:01 ============================================================================ +11:20:01 [ 1] [ 4] [0800] +11:20:01 [ 7] [ 10] [0320041909] +11:20:01 [ 11] [ 6] [156064] +11:20:01 [ 70] [ 3] [301] +11:20:01 ============================================================================ +11:20:01 + + +waiting on router queue for slot.... +11:20:01 Sending to : +11:20:01 ============================================================================ +11:20:01 ============================================================================ +11:20:01 Slot Id : <147> +11:20:01 Transaction Type : RESPONSE +11:20:01 Received From : +11:20:01 ============================================================================ +11:20:01 FNo. Len. Field Value +11:20:01 ============================================================================ +11:20:01 [ 1] [ 4] [0810] +11:20:01 [ 7] [ 10] [0320041909] +11:20:01 [ 11] [ 6] [156064] +11:20:01 [ 39] [ 2] [00] +11:20:01 [ 70] [ 3] [301] +11:20:01 ============================================================================ +11:20:01 Calculate Source COMM Id = 2 +11:20:01 ============================================================================ +11:20:01 + + +waiting on router queue for slot.... +11:20:01 ============================================================================ +11:20:01 Slot Id : <122> +11:20:01 Transaction Type : REQUEST +11:20:01 Received From : +11:20:01 ============================================================================ +11:20:01 FNo. Len. Field Value +11:20:01 ============================================================================ +11:20:01 [ 1] [ 4] [0200] +11:20:01 [ 2] [ 16] [6213545000118624] +11:20:01 [ 3] [ 6] [010000] +11:20:01 [ 4] [ 12] [000100000000] +11:20:01 [ 7] [ 10] [0320111752] +11:20:01 [ 11] [ 6] [940935] +11:20:01 [ 12] [ 6] [111752] +11:20:01 [ 13] [ 4] [0320] +11:20:01 [ 15] [ 4] [0320] +11:20:01 [ 18] [ 4] [6011] +11:20:01 [ 19] [ 3] [418] +11:20:01 [ 22] [ 3] [021] +11:20:01 [ 25] [ 2] [01] +11:20:01 [ 28] [ 9] [D00002000] +11:20:01 [ 32] [ 6] [668899] +11:20:01 [ 35] [ 32] [6213545000118624=491212011862685] +11:20:01 [ 37] [ 12] [507900844885] +11:20:01 [ 41] [ 8] [03015003] +11:20:01 [ 42] [ 15] [APT ] +11:20:01 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +11:20:01 [ 49] [ 3] [418] +11:20:01 [ 52] [ 16] [28E55206DD5CA96B] +11:20:01 ============================================================================ +11:20:01 + + +waiting on router queue for slot.... +11:20:01 Sending to : +11:20:01 ============================================================================ +11:20:01 Sending to : +11:20:01 ============================================================================ +11:20:02 ============================================================================ +11:20:02 Slot Id : <122> +11:20:02 Transaction Type : REQUEST +11:20:02 Received From : +11:20:02 ============================================================================ +11:20:02 FNo. Len. Field Value +11:20:02 ============================================================================ +11:20:02 [ 1] [ 4] [0200] +11:20:02 [ 2] [ 16] [6213545000118624] +11:20:02 [ 3] [ 6] [010000] +11:20:02 [ 4] [ 12] [000100000000] +11:20:02 [ 7] [ 10] [0320111752] +11:20:02 [ 11] [ 6] [940935] +11:20:02 [ 12] [ 6] [111752] +11:20:02 [ 13] [ 4] [0320] +11:20:02 [ 15] [ 4] [0320] +11:20:02 [ 18] [ 4] [6011] +11:20:02 [ 19] [ 3] [418] +11:20:02 [ 22] [ 3] [021] +11:20:02 [ 25] [ 2] [01] +11:20:02 [ 28] [ 9] [D00002000] +11:20:02 [ 32] [ 6] [668899] +11:20:02 [ 35] [ 32] [6213545000118624=491212011862685] +11:20:02 [ 37] [ 12] [507900844885] +11:20:02 [ 41] [ 8] [03015003] +11:20:02 [ 42] [ 15] [APT ] +11:20:02 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +11:20:02 [ 49] [ 3] [418] +11:20:02 [ 52] [ 16] [28E55206DD5CA96B] +11:20:02 ============================================================================ +11:20:02 + + +waiting on router queue for slot.... +11:20:02 Sending to : +11:20:02 ============================================================================ +11:20:02 ============================================================================ +11:20:02 Slot Id : <122> +11:20:02 Transaction Type : REQUEST +11:20:02 Received From : +11:20:02 ============================================================================ +11:20:02 FNo. Len. Field Value +11:20:02 ============================================================================ +11:20:02 [ 1] [ 4] [0200] +11:20:02 [ 2] [ 16] [6213545000118624] +11:20:02 [ 3] [ 6] [010000] +11:20:02 [ 4] [ 12] [000100000000] +11:20:02 [ 7] [ 10] [0320111752] +11:20:02 [ 11] [ 6] [940935] +11:20:02 [ 12] [ 6] [111752] +11:20:02 [ 13] [ 4] [0320] +11:20:02 [ 15] [ 4] [0320] +11:20:02 [ 18] [ 4] [6011] +11:20:02 [ 19] [ 3] [418] +11:20:02 [ 22] [ 3] [021] +11:20:02 [ 25] [ 2] [01] +11:20:02 [ 28] [ 9] [D00002000] +11:20:02 [ 32] [ 6] [668899] +11:20:02 [ 35] [ 32] [6213545000118624=491212011862685] +11:20:02 [ 37] [ 12] [507900844885] +11:20:02 [ 41] [ 8] [03015003] +11:20:02 [ 42] [ 15] [APT ] +11:20:02 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +11:20:02 [ 49] [ 3] [418] +11:20:02 [ 52] [ 16] [6FDFB232DA6E9E21] +11:20:02 ============================================================================ +11:20:02 + + +waiting on router queue for slot.... +11:20:02 Sending to : <0> +11:20:02 ============================================================================ +11:20:02 ============================================================================ +11:20:02 Slot Id : <122> +11:20:02 Transaction Type : RESPONSE +11:20:02 Received From : +11:20:02 ============================================================================ +11:20:02 FNo. Len. Field Value +11:20:02 ============================================================================ +11:20:02 [ 1] [ 4] [0210] +11:20:02 [ 2] [ 16] [6213545000118624] +11:20:02 [ 3] [ 6] [010000] +11:20:02 [ 4] [ 12] [000100000000] +11:20:02 [ 7] [ 10] [0320111752] +11:20:02 [ 11] [ 6] [940935] +11:20:02 [ 12] [ 6] [111752] +11:20:02 [ 13] [ 4] [0320] +11:20:02 [ 15] [ 4] [0320] +11:20:02 [ 18] [ 4] [6011] +11:20:02 [ 19] [ 3] [418] +11:20:02 [ 32] [ 6] [668899] +11:20:02 [ 35] [ 32] [6213545000118624=491212011862685] +11:20:02 [ 37] [ 12] [507900844885] +11:20:02 [ 38] [ 6] [101624] +11:20:02 [ 39] [ 2] [00] +11:20:02 [ 41] [ 8] [03015003] +11:20:02 [ 49] [ 3] [418] +11:20:02 [ 54] [ 40] [0001418C0000423496570002418C000042349657] +11:20:02 ============================================================================ +11:20:02 Sending to : +11:20:02 ============================================================================ +11:20:02 + + +waiting on router queue for slot.... +11:20:03 ============================================================================ +11:20:03 Slot Id : <132> +11:20:03 Transaction Type : REQUEST +11:20:03 Received From : +11:20:03 ============================================================================ +11:20:03 FNo. Len. Field Value +11:20:03 ============================================================================ +11:20:03 [ 1] [ 4] [0200] +11:20:03 [ 2] [ 16] [6213541000119936] +11:20:03 [ 3] [ 6] [010000] +11:20:03 [ 4] [ 12] [000100000000] +11:20:03 [ 7] [ 10] [0320111754] +11:20:03 [ 11] [ 6] [940936] +11:20:03 [ 12] [ 6] [111754] +11:20:03 [ 13] [ 4] [0320] +11:20:03 [ 15] [ 4] [0320] +11:20:03 [ 18] [ 4] [6011] +11:20:03 [ 19] [ 3] [418] +11:20:03 [ 22] [ 3] [021] +11:20:03 [ 25] [ 2] [01] +11:20:03 [ 28] [ 9] [D00002000] +11:20:03 [ 32] [ 6] [668899] +11:20:03 [ 35] [ 32] [6213541000119936=491212011993560] +11:20:03 [ 37] [ 12] [507901963486] +11:20:03 [ 41] [ 8] [03020019] +11:20:03 [ 42] [ 15] [APT ] +11:20:03 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:20:03 [ 49] [ 3] [418] +11:20:03 [ 52] [ 16] [F12E25FDFF2B95EA] +11:20:03 ============================================================================ +11:20:03 + + +waiting on router queue for slot.... +11:20:03 Sending to : +11:20:03 ============================================================================ +11:20:03 Sending to : +11:20:03 ============================================================================ +11:20:03 ============================================================================ +11:20:03 Slot Id : <123> +11:20:03 Transaction Type : REQUEST +11:20:03 Received From : +11:20:03 ============================================================================ +11:20:03 FNo. Len. Field Value +11:20:03 ============================================================================ +11:20:03 [ 0] [ 4] [0420] +11:20:03 [ 1] [ 4] [0420] +11:20:03 [ 2] [ 16] [6213544001636577] +11:20:03 [ 3] [ 6] [010000] +11:20:03 [ 4] [ 12] [000100000000] +11:20:03 [ 6] [ 12] [000100000000] +11:20:03 [ 7] [ 10] [0320111858] +11:20:03 [ 11] [ 6] [079091] +11:20:03 [ 12] [ 6] [111858] +11:20:03 [ 13] [ 4] [0320] +11:20:03 [ 14] [ 4] [4912] +11:20:03 [ 15] [ 4] [0320] +11:20:03 [ 18] [ 4] [6011] +11:20:03 [ 22] [ 3] [900] +11:20:03 [ 25] [ 2] [02] +11:20:03 [ 28] [ 9] [D00002000] +11:20:03 [ 32] [ 6] [220699] +11:20:03 [ 35] [ 32] [6213544001636577=491212013657028] +11:20:03 [ 37] [ 12] [507900132962] +11:20:03 [ 39] [ 2] [00] +11:20:03 [ 41] [ 8] [03000100] +11:20:03 [ 42] [ 15] [APTRA ] +11:20:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:20:03 [ 49] [ 3] [418] +11:20:03 [ 52] [ 16] [CEB7BA4C00CFBE53] +11:20:03 ============================================================================ +11:20:03 + + +waiting on router queue for slot.... +11:20:04 ============================================================================ +11:20:04 Slot Id : <132> +11:20:04 Transaction Type : REQUEST +11:20:04 Received From : +11:20:04 ============================================================================ +11:20:04 FNo. Len. Field Value +11:20:04 ============================================================================ +11:20:04 [ 1] [ 4] [0200] +11:20:04 [ 2] [ 16] [6213541000119936] +11:20:04 [ 3] [ 6] [010000] +11:20:04 [ 4] [ 12] [000100000000] +11:20:04 [ 7] [ 10] [0320111754] +11:20:04 [ 11] [ 6] [940936] +11:20:04 [ 12] [ 6] [111754] +11:20:04 [ 13] [ 4] [0320] +11:20:04 [ 15] [ 4] [0320] +11:20:04 [ 18] [ 4] [6011] +11:20:04 [ 19] [ 3] [418] +11:20:04 [ 22] [ 3] [021] +11:20:04 [ 25] [ 2] [01] +11:20:04 [ 28] [ 9] [D00002000] +11:20:04 [ 32] [ 6] [668899] +11:20:04 [ 35] [ 32] [6213541000119936=491212011993560] +11:20:04 [ 37] [ 12] [507901963486] +11:20:04 [ 41] [ 8] [03020019] +11:20:04 [ 42] [ 15] [APT ] +11:20:04 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:20:04 [ 49] [ 3] [418] +11:20:04 [ 52] [ 16] [F12E25FDFF2B95EA] +11:20:04 ============================================================================ +11:20:04 + + +waiting on router queue for slot.... +11:20:04 Sending to : +11:20:04 ============================================================================ +11:20:04 ============================================================================ +11:20:04 Slot Id : <132> +11:20:04 Transaction Type : REQUEST +11:20:04 Received From : +11:20:04 ============================================================================ +11:20:04 FNo. Len. Field Value +11:20:04 ============================================================================ +11:20:04 [ 1] [ 4] [0200] +11:20:04 [ 2] [ 16] [6213541000119936] +11:20:04 [ 3] [ 6] [010000] +11:20:04 [ 4] [ 12] [000100000000] +11:20:04 [ 7] [ 10] [0320111754] +11:20:04 [ 11] [ 6] [940936] +11:20:04 [ 12] [ 6] [111754] +11:20:04 [ 13] [ 4] [0320] +11:20:04 [ 15] [ 4] [0320] +11:20:04 [ 18] [ 4] [6011] +11:20:04 [ 19] [ 3] [418] +11:20:04 [ 22] [ 3] [021] +11:20:04 [ 25] [ 2] [01] +11:20:04 [ 28] [ 9] [D00002000] +11:20:04 [ 32] [ 6] [668899] +11:20:04 [ 35] [ 32] [6213541000119936=491212011993560] +11:20:04 [ 37] [ 12] [507901963486] +11:20:04 [ 41] [ 8] [03020019] +11:20:04 [ 42] [ 15] [APT ] +11:20:04 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:20:04 [ 49] [ 3] [418] +11:20:04 [ 52] [ 16] [302E25B293EBF614] +11:20:04 ============================================================================ +11:20:04 + + +waiting on router queue for slot.... +11:20:04 Sending to : <0> +11:20:04 ============================================================================ +11:20:04 ============================================================================ +11:20:04 Slot Id : <123> +11:20:04 Transaction Type : RESPONSE +11:20:04 Received From : +11:20:04 ============================================================================ +11:20:04 FNo. Len. Field Value +11:20:04 ============================================================================ +11:20:04 [ 1] [ 4] [0430] +11:20:04 [ 2] [ 16] [6213544001636577] +11:20:04 [ 3] [ 6] [010000] +11:20:04 [ 4] [ 12] [000100000000] +11:20:04 [ 7] [ 10] [0320111858] +11:20:04 [ 11] [ 6] [079091] +11:20:04 [ 32] [ 6] [220699] +11:20:04 [ 35] [ 32] [6213544001636577=491212013657028] +11:20:04 [ 37] [ 12] [507900132962] +11:20:04 [ 39] [ 2] [00] +11:20:04 [ 41] [ 8] [03000100] +11:20:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:20:04 [ 49] [ 3] [418] +11:20:04 [ 90] [ 42] [020007909103201118580000022069900000000000] +11:20:04 ============================================================================ +11:20:04 Successfully send the slot [123] To REVERSAL Process +11:20:04 + + +waiting on router queue for slot.... +11:20:04 ============================================================================ +11:20:04 Slot Id : <122> +11:20:04 Transaction Type : RESPONSE +11:20:04 Received From : +11:20:04 ============================================================================ +11:20:04 FNo. Len. Field Value +11:20:04 ============================================================================ +11:20:04 [ 1] [ 4] [0210] +11:20:04 [ 2] [ 16] [6213545000118624] +11:20:04 [ 3] [ 6] [010000] +11:20:04 [ 4] [ 12] [000100000000] +11:20:04 [ 7] [ 10] [0320111752] +11:20:04 [ 11] [ 6] [940935] +11:20:04 [ 12] [ 6] [111752] +11:20:04 [ 13] [ 4] [0320] +11:20:04 [ 15] [ 4] [0320] +11:20:04 [ 18] [ 4] [6011] +11:20:04 [ 19] [ 3] [418] +11:20:04 [ 32] [ 6] [668899] +11:20:04 [ 35] [ 32] [6213545000118624=491212011862685] +11:20:04 [ 37] [ 12] [507900844885] +11:20:04 [ 38] [ 6] [101624] +11:20:04 [ 39] [ 2] [00] +11:20:04 [ 41] [ 8] [03015003] +11:20:04 [ 49] [ 3] [418] +11:20:04 [ 54] [ 40] [0001418C0000423496570002418C000042349657] +11:20:04 ============================================================================ +11:20:04 Calculate Source COMM Id = 4 +11:20:04 ============================================================================ +11:20:04 + + +waiting on router queue for slot.... +11:20:04 ============================================================================ +11:20:04 Slot Id : <132> +11:20:04 Transaction Type : RESPONSE +11:20:04 Received From : +11:20:04 ============================================================================ +11:20:04 FNo. Len. Field Value +11:20:04 ============================================================================ +11:20:04 [ 1] [ 4] [0210] +11:20:04 [ 2] [ 16] [6213541000119936] +11:20:04 [ 3] [ 6] [010000] +11:20:04 [ 4] [ 12] [000100000000] +11:20:04 [ 7] [ 10] [0320111754] +11:20:04 [ 11] [ 6] [940936] +11:20:04 [ 12] [ 6] [111754] +11:20:04 [ 13] [ 4] [0320] +11:20:04 [ 15] [ 4] [0320] +11:20:04 [ 18] [ 4] [6011] +11:20:04 [ 19] [ 3] [418] +11:20:04 [ 32] [ 6] [668899] +11:20:04 [ 35] [ 32] [6213541000119936=491212011993560] +11:20:04 [ 37] [ 12] [507901963486] +11:20:04 [ 38] [ 6] [846801] +11:20:04 [ 39] [ 2] [00] +11:20:04 [ 41] [ 8] [03020019] +11:20:04 [ 49] [ 3] [418] +11:20:04 [ 54] [ 40] [0001418C0003986404610002418C000398640461] +11:20:04 ============================================================================ +11:20:04 Sending to : +11:20:04 ============================================================================ +11:20:04 + + +waiting on router queue for slot.... +11:20:06 ============================================================================ +11:20:06 Slot Id : <132> +11:20:06 Transaction Type : RESPONSE +11:20:06 Received From : +11:20:06 ============================================================================ +11:20:06 FNo. Len. Field Value +11:20:06 ============================================================================ +11:20:06 [ 1] [ 4] [0210] +11:20:06 [ 2] [ 16] [6213541000119936] +11:20:06 [ 3] [ 6] [010000] +11:20:06 [ 4] [ 12] [000100000000] +11:20:06 [ 7] [ 10] [0320111754] +11:20:06 [ 11] [ 6] [940936] +11:20:06 [ 12] [ 6] [111754] +11:20:06 [ 13] [ 4] [0320] +11:20:06 [ 15] [ 4] [0320] +11:20:06 [ 18] [ 4] [6011] +11:20:06 [ 19] [ 3] [418] +11:20:06 [ 32] [ 6] [668899] +11:20:06 [ 35] [ 32] [6213541000119936=491212011993560] +11:20:06 [ 37] [ 12] [507901963486] +11:20:06 [ 38] [ 6] [846801] +11:20:06 [ 39] [ 2] [00] +11:20:06 [ 41] [ 8] [03020019] +11:20:06 [ 49] [ 3] [418] +11:20:06 [ 54] [ 40] [0001418C0003986404610002418C000398640461] +11:20:06 ============================================================================ +11:20:06 Calculate Source COMM Id = 4 +11:20:06 ============================================================================ +11:20:06 + + +waiting on router queue for slot.... +11:20:12 ============================================================================ +11:20:12 Slot Id : <162> +11:20:12 Transaction Type : REQUEST +11:20:12 Received From : +11:20:12 ============================================================================ +11:20:12 FNo. Len. Field Value +11:20:12 ============================================================================ +11:20:12 [ 1] [ 4] [0800] +11:20:12 [ 7] [ 10] [0320041920] +11:20:12 [ 11] [ 6] [156065] +11:20:12 [ 70] [ 3] [301] +11:20:12 ============================================================================ +11:20:12 + + +waiting on router queue for slot.... +11:20:12 Sending to : +11:20:12 ============================================================================ +11:20:12 ============================================================================ +11:20:12 Slot Id : <162> +11:20:12 Transaction Type : RESPONSE +11:20:12 Received From : +11:20:12 ============================================================================ +11:20:12 FNo. Len. Field Value +11:20:12 ============================================================================ +11:20:12 [ 1] [ 4] [0810] +11:20:12 [ 7] [ 10] [0320041920] +11:20:12 [ 11] [ 6] [156065] +11:20:12 [ 39] [ 2] [00] +11:20:12 [ 70] [ 3] [301] +11:20:12 ============================================================================ +11:20:12 Calculate Source COMM Id = 2 +11:20:12 ============================================================================ +11:20:12 + + +waiting on router queue for slot.... +11:20:24 ============================================================================ +11:20:24 Slot Id : <154> +11:20:24 Transaction Type : REQUEST +11:20:24 Received From : +11:20:24 ============================================================================ +11:20:24 FNo. Len. Field Value +11:20:24 ============================================================================ +11:20:24 [ 1] [ 4] [0200] +11:20:24 [ 2] [ 16] [6213541000106925] +11:20:24 [ 3] [ 6] [010000] +11:20:24 [ 4] [ 12] [000010000000] +11:20:24 [ 7] [ 10] [0320111815] +11:20:24 [ 11] [ 6] [940956] +11:20:24 [ 12] [ 6] [111815] +11:20:24 [ 13] [ 4] [0320] +11:20:24 [ 15] [ 4] [0320] +11:20:24 [ 18] [ 4] [6011] +11:20:24 [ 19] [ 3] [418] +11:20:24 [ 22] [ 3] [021] +11:20:24 [ 25] [ 2] [01] +11:20:24 [ 28] [ 9] [D00002000] +11:20:24 [ 32] [ 6] [668899] +11:20:24 [ 35] [ 32] [6213541000106925=491212010692472] +11:20:24 [ 37] [ 12] [507900977508] +11:20:24 [ 41] [ 8] [03407002] +11:20:24 [ 42] [ 15] [APT ] +11:20:24 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +11:20:24 [ 49] [ 3] [418] +11:20:24 [ 52] [ 16] [15DFDE8FDAA44FCF] +11:20:24 ============================================================================ +11:20:24 + + +waiting on router queue for slot.... +11:20:24 Sending to : +11:20:24 ============================================================================ +11:20:24 Sending to : +11:20:24 ============================================================================ +11:20:24 ============================================================================ +11:20:24 Slot Id : <154> +11:20:24 Transaction Type : REQUEST +11:20:24 Received From : +11:20:24 ============================================================================ +11:20:24 FNo. Len. Field Value +11:20:24 ============================================================================ +11:20:24 [ 1] [ 4] [0200] +11:20:24 [ 2] [ 16] [6213541000106925] +11:20:24 [ 3] [ 6] [010000] +11:20:24 [ 4] [ 12] [000010000000] +11:20:24 [ 7] [ 10] [0320111815] +11:20:24 [ 11] [ 6] [940956] +11:20:24 [ 12] [ 6] [111815] +11:20:24 [ 13] [ 4] [0320] +11:20:24 [ 15] [ 4] [0320] +11:20:24 [ 18] [ 4] [6011] +11:20:24 [ 19] [ 3] [418] +11:20:24 [ 22] [ 3] [021] +11:20:24 [ 25] [ 2] [01] +11:20:24 [ 28] [ 9] [D00002000] +11:20:24 [ 32] [ 6] [668899] +11:20:24 [ 35] [ 32] [6213541000106925=491212010692472] +11:20:24 [ 37] [ 12] [507900977508] +11:20:24 [ 41] [ 8] [03407002] +11:20:24 [ 42] [ 15] [APT ] +11:20:24 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +11:20:24 [ 49] [ 3] [418] +11:20:24 [ 52] [ 16] [15DFDE8FDAA44FCF] +11:20:24 ============================================================================ +11:20:24 + + +waiting on router queue for slot.... +11:20:24 Sending to : +11:20:24 ============================================================================ +11:20:24 ============================================================================ +11:20:24 Slot Id : <154> +11:20:24 Transaction Type : REQUEST +11:20:24 Received From : +11:20:24 ============================================================================ +11:20:24 FNo. Len. Field Value +11:20:24 ============================================================================ +11:20:24 [ 1] [ 4] [0200] +11:20:24 [ 2] [ 16] [6213541000106925] +11:20:24 [ 3] [ 6] [010000] +11:20:24 [ 4] [ 12] [000010000000] +11:20:24 [ 7] [ 10] [0320111815] +11:20:24 [ 11] [ 6] [940956] +11:20:24 [ 12] [ 6] [111815] +11:20:24 [ 13] [ 4] [0320] +11:20:24 [ 15] [ 4] [0320] +11:20:24 [ 18] [ 4] [6011] +11:20:24 [ 19] [ 3] [418] +11:20:24 [ 22] [ 3] [021] +11:20:24 [ 25] [ 2] [01] +11:20:24 [ 28] [ 9] [D00002000] +11:20:24 [ 32] [ 6] [668899] +11:20:24 [ 35] [ 32] [6213541000106925=491212010692472] +11:20:24 [ 37] [ 12] [507900977508] +11:20:24 [ 41] [ 8] [03407002] +11:20:24 [ 42] [ 15] [APT ] +11:20:24 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +11:20:24 [ 49] [ 3] [418] +11:20:24 [ 52] [ 16] [0F79890ACD321A0C] +11:20:24 ============================================================================ +11:20:24 + + +waiting on router queue for slot.... +11:20:24 Sending to : <0> +11:20:24 ============================================================================ +11:20:24 ============================================================================ +11:20:24 Slot Id : <145> +11:20:24 Transaction Type : REQUEST +11:20:24 Received From : +11:20:24 ============================================================================ +11:20:24 FNo. Len. Field Value +11:20:24 ============================================================================ +11:20:24 [ 1] [ 4] [0800] +11:20:24 [ 7] [ 10] [0320041932] +11:20:24 [ 11] [ 6] [156066] +11:20:24 [ 70] [ 3] [301] +11:20:24 ============================================================================ +11:20:24 + + +waiting on router queue for slot.... +11:20:24 Sending to : +11:20:24 ============================================================================ +11:20:24 ============================================================================ +11:20:24 Slot Id : <145> +11:20:24 Transaction Type : RESPONSE +11:20:24 Received From : +11:20:24 ============================================================================ +11:20:24 FNo. Len. Field Value +11:20:24 ============================================================================ +11:20:24 [ 1] [ 4] [0810] +11:20:24 [ 7] [ 10] [0320041932] +11:20:24 [ 11] [ 6] [156066] +11:20:24 [ 39] [ 2] [00] +11:20:24 [ 70] [ 3] [301] +11:20:24 ============================================================================ +11:20:24 Calculate Source COMM Id = 2 +11:20:24 ============================================================================ +11:20:24 + + +waiting on router queue for slot.... +11:20:24 ============================================================================ +11:20:24 Slot Id : <158> +11:20:24 Transaction Type : REQUEST +11:20:24 Received From : +11:20:24 ============================================================================ +11:20:24 FNo. Len. Field Value +11:20:24 ============================================================================ +11:20:24 [ 1] [ 4] [0200] +11:20:24 [ 2] [ 16] [6213541000327059] +11:20:24 [ 3] [ 6] [010000] +11:20:24 [ 4] [ 12] [000100000000] +11:20:24 [ 7] [ 10] [0320111815] +11:20:24 [ 11] [ 6] [940957] +11:20:24 [ 12] [ 6] [111815] +11:20:24 [ 13] [ 4] [0320] +11:20:24 [ 15] [ 4] [0320] +11:20:24 [ 18] [ 4] [6011] +11:20:24 [ 19] [ 3] [418] +11:20:24 [ 22] [ 3] [021] +11:20:24 [ 25] [ 2] [01] +11:20:24 [ 28] [ 9] [D00002000] +11:20:24 [ 32] [ 6] [668899] +11:20:24 [ 35] [ 32] [6213541000327059=491212012705526] +11:20:24 [ 37] [ 12] [507902071174] +11:20:24 [ 41] [ 8] [03006007] +11:20:24 [ 42] [ 15] [APT ] +11:20:24 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +11:20:24 [ 49] [ 3] [418] +11:20:24 [ 52] [ 16] [8DA2534B2534BCEA] +11:20:24 ============================================================================ +11:20:24 + + +waiting on router queue for slot.... +11:20:24 Sending to : +11:20:24 ============================================================================ +11:20:24 Sending to : +11:20:24 ============================================================================ +11:20:25 ============================================================================ +11:20:25 Slot Id : <158> +11:20:25 Transaction Type : REQUEST +11:20:25 Received From : +11:20:25 ============================================================================ +11:20:25 FNo. Len. Field Value +11:20:25 ============================================================================ +11:20:25 [ 1] [ 4] [0200] +11:20:25 [ 2] [ 16] [6213541000327059] +11:20:25 [ 3] [ 6] [010000] +11:20:25 [ 4] [ 12] [000100000000] +11:20:25 [ 7] [ 10] [0320111815] +11:20:25 [ 11] [ 6] [940957] +11:20:25 [ 12] [ 6] [111815] +11:20:25 [ 13] [ 4] [0320] +11:20:25 [ 15] [ 4] [0320] +11:20:25 [ 18] [ 4] [6011] +11:20:25 [ 19] [ 3] [418] +11:20:25 [ 22] [ 3] [021] +11:20:25 [ 25] [ 2] [01] +11:20:25 [ 28] [ 9] [D00002000] +11:20:25 [ 32] [ 6] [668899] +11:20:25 [ 35] [ 32] [6213541000327059=491212012705526] +11:20:25 [ 37] [ 12] [507902071174] +11:20:25 [ 41] [ 8] [03006007] +11:20:25 [ 42] [ 15] [APT ] +11:20:25 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +11:20:25 [ 49] [ 3] [418] +11:20:25 [ 52] [ 16] [8DA2534B2534BCEA] +11:20:25 ============================================================================ +11:20:25 + + +waiting on router queue for slot.... +11:20:25 Sending to : +11:20:25 ============================================================================ +11:20:25 ============================================================================ +11:20:25 Slot Id : <158> +11:20:25 Transaction Type : REQUEST +11:20:25 Received From : +11:20:25 ============================================================================ +11:20:25 FNo. Len. Field Value +11:20:25 ============================================================================ +11:20:25 [ 1] [ 4] [0200] +11:20:25 [ 2] [ 16] [6213541000327059] +11:20:25 [ 3] [ 6] [010000] +11:20:25 [ 4] [ 12] [000100000000] +11:20:25 [ 7] [ 10] [0320111815] +11:20:25 [ 11] [ 6] [940957] +11:20:25 [ 12] [ 6] [111815] +11:20:25 [ 13] [ 4] [0320] +11:20:25 [ 15] [ 4] [0320] +11:20:25 [ 18] [ 4] [6011] +11:20:25 [ 19] [ 3] [418] +11:20:25 [ 22] [ 3] [021] +11:20:25 [ 25] [ 2] [01] +11:20:25 [ 28] [ 9] [D00002000] +11:20:25 [ 32] [ 6] [668899] +11:20:25 [ 35] [ 32] [6213541000327059=491212012705526] +11:20:25 [ 37] [ 12] [507902071174] +11:20:25 [ 41] [ 8] [03006007] +11:20:25 [ 42] [ 15] [APT ] +11:20:25 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +11:20:25 [ 49] [ 3] [418] +11:20:25 [ 52] [ 16] [108708C12988F36E] +11:20:25 ============================================================================ +11:20:25 + + +waiting on router queue for slot.... +11:20:25 Sending to : <0> +11:20:25 ============================================================================ +11:20:25 ============================================================================ +11:20:25 Slot Id : <154> +11:20:25 Transaction Type : RESPONSE +11:20:25 Received From : +11:20:25 ============================================================================ +11:20:25 FNo. Len. Field Value +11:20:25 ============================================================================ +11:20:25 [ 1] [ 4] [0210] +11:20:25 [ 2] [ 16] [6213541000106925] +11:20:25 [ 3] [ 6] [010000] +11:20:25 [ 4] [ 12] [000010000000] +11:20:25 [ 7] [ 10] [0320111815] +11:20:25 [ 11] [ 6] [940956] +11:20:25 [ 12] [ 6] [111815] +11:20:25 [ 13] [ 4] [0320] +11:20:25 [ 15] [ 4] [0320] +11:20:25 [ 18] [ 4] [6011] +11:20:25 [ 19] [ 3] [418] +11:20:25 [ 32] [ 6] [668899] +11:20:25 [ 35] [ 32] [6213541000106925=491212010692472] +11:20:25 [ 37] [ 12] [507900977508] +11:20:25 [ 38] [ 6] [416807] +11:20:25 [ 39] [ 2] [00] +11:20:25 [ 41] [ 8] [03407002] +11:20:25 [ 49] [ 3] [418] +11:20:25 [ 54] [ 40] [0001418C0002108821720002418C000210882172] +11:20:25 ============================================================================ +11:20:25 Sending to : +11:20:25 ============================================================================ +11:20:25 + + +waiting on router queue for slot.... +11:20:25 ============================================================================ +11:20:25 Slot Id : <158> +11:20:25 Transaction Type : RESPONSE +11:20:25 Received From : +11:20:25 ============================================================================ +11:20:25 FNo. Len. Field Value +11:20:25 ============================================================================ +11:20:25 [ 1] [ 4] [0210] +11:20:25 [ 2] [ 16] [6213541000327059] +11:20:25 [ 3] [ 6] [010000] +11:20:25 [ 4] [ 12] [000100000000] +11:20:25 [ 7] [ 10] [0320111815] +11:20:25 [ 11] [ 6] [940957] +11:20:25 [ 12] [ 6] [111815] +11:20:25 [ 13] [ 4] [0320] +11:20:25 [ 15] [ 4] [0320] +11:20:25 [ 18] [ 4] [6011] +11:20:25 [ 19] [ 3] [418] +11:20:25 [ 32] [ 6] [668899] +11:20:25 [ 35] [ 32] [6213541000327059=491212012705526] +11:20:25 [ 37] [ 12] [507902071174] +11:20:25 [ 38] [ 6] [980610] +11:20:25 [ 39] [ 2] [00] +11:20:25 [ 41] [ 8] [03006007] +11:20:25 [ 49] [ 3] [418] +11:20:25 [ 54] [ 40] [0001418C0002308703340002418C000230870334] +11:20:25 ============================================================================ +11:20:25 Sending to : +11:20:25 ============================================================================ +11:20:25 + + +waiting on router queue for slot.... +11:20:26 ============================================================================ +11:20:26 Slot Id : <154> +11:20:26 Transaction Type : RESPONSE +11:20:26 Received From : +11:20:26 ============================================================================ +11:20:26 FNo. Len. Field Value +11:20:26 ============================================================================ +11:20:26 [ 1] [ 4] [0210] +11:20:26 [ 2] [ 16] [6213541000106925] +11:20:26 [ 3] [ 6] [010000] +11:20:26 [ 4] [ 12] [000010000000] +11:20:26 [ 7] [ 10] [0320111815] +11:20:26 [ 11] [ 6] [940956] +11:20:26 [ 12] [ 6] [111815] +11:20:26 [ 13] [ 4] [0320] +11:20:26 [ 15] [ 4] [0320] +11:20:26 [ 18] [ 4] [6011] +11:20:26 [ 19] [ 3] [418] +11:20:26 [ 32] [ 6] [668899] +11:20:26 [ 35] [ 32] [6213541000106925=491212010692472] +11:20:26 [ 37] [ 12] [507900977508] +11:20:26 [ 38] [ 6] [416807] +11:20:26 [ 39] [ 2] [00] +11:20:26 [ 41] [ 8] [03407002] +11:20:26 [ 49] [ 3] [418] +11:20:26 [ 54] [ 40] [0001418C0002108821720002418C000210882172] +11:20:26 ============================================================================ +11:20:26 Calculate Source COMM Id = 4 +11:20:26 ============================================================================ +11:20:26 + + +waiting on router queue for slot.... +11:20:28 ============================================================================ +11:20:28 Slot Id : <158> +11:20:28 Transaction Type : RESPONSE +11:20:28 Received From : +11:20:28 ============================================================================ +11:20:28 FNo. Len. Field Value +11:20:28 ============================================================================ +11:20:28 [ 1] [ 4] [0210] +11:20:28 [ 2] [ 16] [6213541000327059] +11:20:28 [ 3] [ 6] [010000] +11:20:28 [ 4] [ 12] [000100000000] +11:20:28 [ 7] [ 10] [0320111815] +11:20:28 [ 11] [ 6] [940957] +11:20:28 [ 12] [ 6] [111815] +11:20:28 [ 13] [ 4] [0320] +11:20:28 [ 15] [ 4] [0320] +11:20:28 [ 18] [ 4] [6011] +11:20:28 [ 19] [ 3] [418] +11:20:28 [ 32] [ 6] [668899] +11:20:28 [ 35] [ 32] [6213541000327059=491212012705526] +11:20:28 [ 37] [ 12] [507902071174] +11:20:28 [ 38] [ 6] [980610] +11:20:28 [ 39] [ 2] [00] +11:20:28 [ 41] [ 8] [03006007] +11:20:28 [ 49] [ 3] [418] +11:20:28 [ 54] [ 40] [0001418C0002308703340002418C000230870334] +11:20:28 ============================================================================ +11:20:28 Calculate Source COMM Id = 4 +11:20:28 ============================================================================ +11:20:28 + + +waiting on router queue for slot.... +11:20:34 ============================================================================ +11:20:34 Slot Id : <143> +11:20:34 Transaction Type : REQUEST +11:20:34 Received From : +11:20:34 ============================================================================ +11:20:34 FNo. Len. Field Value +11:20:34 ============================================================================ +11:20:34 [ 1] [ 4] [0800] +11:20:34 [ 2] [ 5] [02531] +11:20:34 [ 3] [ 6] [579118] +11:20:34 [ 7] [ 10] [0320042034] +11:20:34 [ 11] [ 6] [807070] +11:20:34 [ 15] [ 10] [0320042034] +11:20:34 [ 37] [ 11] [57911807070] +11:20:34 [ 70] [ 3] [001] +11:20:34 ============================================================================ +11:20:34 + + +waiting on router queue for slot.... +11:20:34 ============================================================================ +11:20:34 Slot Id : <143> +11:20:34 Transaction Type : RESPONSE +11:20:34 Received From : +11:20:34 ============================================================================ +11:20:34 FNo. Len. Field Value +11:20:34 ============================================================================ +11:20:34 [ 1] [ 4] [0810] +11:20:34 [ 7] [ 10] [0320042034] +11:20:34 [ 11] [ 6] [807070] +11:20:34 [ 15] [ 4] [0320] +11:20:34 [ 37] [ 12] [57911807070] +11:20:34 [ 39] [ 2] [00] +11:20:34 [ 70] [ 3] [001] +11:20:34 ============================================================================ +11:20:34 Sending to : +11:20:34 ============================================================================ +11:20:34 + + +waiting on router queue for slot.... +11:20:38 ============================================================================ +11:20:38 Slot Id : <120> +11:20:38 Transaction Type : REQUEST +11:20:38 Received From : +11:20:38 ============================================================================ +11:20:38 FNo. Len. Field Value +11:20:38 ============================================================================ +11:20:38 [ 1] [ 4] [0200] +11:20:38 [ 2] [ 16] [6213543000201573] +11:20:38 [ 3] [ 6] [010000] +11:20:38 [ 4] [ 12] [000100000000] +11:20:38 [ 7] [ 10] [0320041946] +11:20:38 [ 11] [ 6] [268439] +11:20:38 [ 12] [ 6] [111946] +11:20:38 [ 13] [ 4] [0320] +11:20:38 [ 14] [ 4] [4912] +11:20:38 [ 15] [ 4] [0320] +11:20:38 [ 18] [ 4] [6011] +11:20:38 [ 19] [ 3] [418] +11:20:38 [ 22] [ 3] [021] +11:20:38 [ 25] [ 2] [01] +11:20:38 [ 28] [ 9] [D00002000] +11:20:38 [ 32] [ 6] [180893] +11:20:38 [ 35] [ 32] [6213543000201573=491212010157798] +11:20:38 [ 37] [ 12] [507904268439] +11:20:38 [ 41] [ 8] [0463LNTN] +11:20:38 [ 42] [ 15] [999999 ] +11:20:38 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +11:20:38 [ 49] [ 3] [418] +11:20:38 [ 52] [ 16] [6F8A4113DBBC91CC] +11:20:38 ============================================================================ +11:20:38 + + +waiting on router queue for slot.... +11:20:38 Sending to : +11:20:38 ============================================================================ +11:20:38 Sending to : +11:20:38 ============================================================================ +11:20:39 ============================================================================ +11:20:39 Slot Id : <120> +11:20:39 Transaction Type : REQUEST +11:20:39 Received From : +11:20:39 ============================================================================ +11:20:39 FNo. Len. Field Value +11:20:39 ============================================================================ +11:20:39 [ 1] [ 4] [0200] +11:20:39 [ 2] [ 16] [6213543000201573] +11:20:39 [ 3] [ 6] [010000] +11:20:39 [ 4] [ 12] [000100000000] +11:20:39 [ 7] [ 10] [0320041946] +11:20:39 [ 11] [ 6] [268439] +11:20:39 [ 12] [ 6] [111946] +11:20:39 [ 13] [ 4] [0320] +11:20:39 [ 14] [ 4] [4912] +11:20:39 [ 15] [ 4] [0320] +11:20:39 [ 18] [ 4] [6011] +11:20:39 [ 19] [ 3] [418] +11:20:39 [ 22] [ 3] [021] +11:20:39 [ 25] [ 2] [01] +11:20:39 [ 28] [ 9] [D00002000] +11:20:39 [ 32] [ 6] [180893] +11:20:39 [ 35] [ 32] [6213543000201573=491212010157798] +11:20:39 [ 37] [ 12] [507904268439] +11:20:39 [ 41] [ 8] [0463LNTN] +11:20:39 [ 42] [ 15] [999999 ] +11:20:39 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +11:20:39 [ 49] [ 3] [418] +11:20:39 [ 52] [ 16] [6F8A4113DBBC91CC] +11:20:39 ============================================================================ +11:20:39 + + +waiting on router queue for slot.... +11:20:39 Sending to : +11:20:39 ============================================================================ +11:20:39 ============================================================================ +11:20:39 Slot Id : <120> +11:20:39 Transaction Type : REQUEST +11:20:39 Received From : +11:20:39 ============================================================================ +11:20:39 FNo. Len. Field Value +11:20:39 ============================================================================ +11:20:39 [ 1] [ 4] [0200] +11:20:39 [ 2] [ 16] [6213543000201573] +11:20:39 [ 3] [ 6] [010000] +11:20:39 [ 4] [ 12] [000100000000] +11:20:39 [ 7] [ 10] [0320041946] +11:20:39 [ 11] [ 6] [268439] +11:20:39 [ 12] [ 6] [111946] +11:20:39 [ 13] [ 4] [0320] +11:20:39 [ 14] [ 4] [4912] +11:20:39 [ 15] [ 4] [0320] +11:20:39 [ 18] [ 4] [6011] +11:20:39 [ 19] [ 3] [418] +11:20:39 [ 22] [ 3] [021] +11:20:39 [ 25] [ 2] [01] +11:20:39 [ 28] [ 9] [D00002000] +11:20:39 [ 32] [ 6] [180893] +11:20:39 [ 35] [ 32] [6213543000201573=491212010157798] +11:20:39 [ 37] [ 12] [507904268439] +11:20:39 [ 41] [ 8] [0463LNTN] +11:20:39 [ 42] [ 15] [999999 ] +11:20:39 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +11:20:39 [ 49] [ 3] [418] +11:20:39 [ 52] [ 16] [BC055F31D3C36F69] +11:20:39 ============================================================================ +11:20:39 + + +waiting on router queue for slot.... +11:20:39 Sending to : <0> +11:20:39 ============================================================================ +11:20:39 ============================================================================ +11:20:39 Slot Id : <120> +11:20:39 Transaction Type : RESPONSE +11:20:39 Received From : +11:20:39 ============================================================================ +11:20:39 FNo. Len. Field Value +11:20:39 ============================================================================ +11:20:39 [ 1] [ 4] [0210] +11:20:39 [ 2] [ 16] [6213543000201573] +11:20:39 [ 3] [ 6] [010000] +11:20:39 [ 4] [ 12] [000100000000] +11:20:39 [ 7] [ 10] [0320041946] +11:20:39 [ 11] [ 6] [268439] +11:20:39 [ 12] [ 6] [111946] +11:20:39 [ 13] [ 4] [0320] +11:20:39 [ 15] [ 4] [0320] +11:20:39 [ 18] [ 4] [6011] +11:20:39 [ 19] [ 3] [418] +11:20:39 [ 32] [ 6] [180893] +11:20:39 [ 35] [ 32] [6213543000201573=491212010157798] +11:20:39 [ 37] [ 12] [507904268439] +11:20:39 [ 38] [ 6] [995073] +11:20:39 [ 39] [ 2] [00] +11:20:39 [ 41] [ 8] [0463LNTN] +11:20:39 [ 49] [ 3] [418] +11:20:39 [ 54] [ 40] [0001418C0005811941640002418C000581194164] +11:20:39 ============================================================================ +11:20:39 Sending to : +11:20:39 ============================================================================ +11:20:39 + + +waiting on router queue for slot.... +11:20:41 ============================================================================ +11:20:41 Slot Id : <120> +11:20:41 Transaction Type : RESPONSE +11:20:41 Received From : +11:20:41 ============================================================================ +11:20:41 FNo. Len. Field Value +11:20:41 ============================================================================ +11:20:41 [ 1] [ 4] [0210] +11:20:41 [ 2] [ 16] [6213543000201573] +11:20:41 [ 3] [ 6] [010000] +11:20:41 [ 4] [ 12] [000100000000] +11:20:41 [ 7] [ 10] [0320041946] +11:20:41 [ 11] [ 6] [268439] +11:20:41 [ 12] [ 6] [111946] +11:20:41 [ 13] [ 4] [0320] +11:20:41 [ 15] [ 4] [0320] +11:20:41 [ 18] [ 4] [6011] +11:20:41 [ 19] [ 3] [418] +11:20:41 [ 32] [ 6] [180893] +11:20:41 [ 35] [ 32] [6213543000201573=491212010157798] +11:20:41 [ 37] [ 12] [507904268439] +11:20:41 [ 38] [ 6] [995073] +11:20:41 [ 39] [ 2] [00] +11:20:41 [ 41] [ 8] [0463LNTN] +11:20:41 [ 49] [ 3] [418] +11:20:41 [ 54] [ 40] [0001418C0005811941640002418C000581194164] +11:20:41 ============================================================================ +11:20:41 Calculate Source COMM Id = 2 +11:20:41 ============================================================================ +11:20:41 + + +waiting on router queue for slot.... +11:20:42 ============================================================================ +11:20:42 Slot Id : <166> +11:20:42 Transaction Type : REQUEST +11:20:42 Received From : +11:20:42 ============================================================================ +11:20:42 FNo. Len. Field Value +11:20:42 ============================================================================ +11:20:42 [ 1] [ 4] [0800] +11:20:42 [ 7] [ 10] [0320041948] +11:20:42 [ 11] [ 6] [156067] +11:20:42 [ 70] [ 3] [301] +11:20:42 ============================================================================ +11:20:42 + + +waiting on router queue for slot.... +11:20:42 Sending to : +11:20:42 ============================================================================ +11:20:42 ============================================================================ +11:20:42 Slot Id : <166> +11:20:42 Transaction Type : RESPONSE +11:20:42 Received From : +11:20:42 ============================================================================ +11:20:42 FNo. Len. Field Value +11:20:42 ============================================================================ +11:20:42 [ 1] [ 4] [0810] +11:20:42 [ 7] [ 10] [0320041948] +11:20:42 [ 11] [ 6] [156067] +11:20:42 [ 39] [ 2] [00] +11:20:42 [ 70] [ 3] [301] +11:20:42 ============================================================================ +11:20:42 Calculate Source COMM Id = 2 +11:20:42 ============================================================================ +11:20:42 + + +waiting on router queue for slot.... +11:20:57 ============================================================================ +11:20:57 Slot Id : <133> +11:20:57 Transaction Type : REQUEST +11:20:57 Received From : +11:20:57 ============================================================================ +11:20:57 FNo. Len. Field Value +11:20:57 ============================================================================ +11:20:57 [ 1] [ 4] [0800] +11:20:57 [ 7] [ 10] [0320042004] +11:20:57 [ 11] [ 6] [156068] +11:20:57 [ 70] [ 3] [301] +11:20:57 ============================================================================ +11:20:57 + + +waiting on router queue for slot.... +11:20:57 Sending to : +11:20:57 ============================================================================ +11:20:57 ============================================================================ +11:20:57 Slot Id : <133> +11:20:57 Transaction Type : RESPONSE +11:20:57 Received From : +11:20:57 ============================================================================ +11:20:57 FNo. Len. Field Value +11:20:57 ============================================================================ +11:20:57 [ 1] [ 4] [0810] +11:20:57 [ 7] [ 10] [0320042004] +11:20:57 [ 11] [ 6] [156068] +11:20:57 [ 39] [ 2] [00] +11:20:57 [ 70] [ 3] [301] +11:20:57 ============================================================================ +11:20:57 Calculate Source COMM Id = 2 +11:20:57 ============================================================================ +11:20:57 + + +waiting on router queue for slot.... +11:21:07 ============================================================================ +11:21:07 Slot Id : <150> +11:21:07 Transaction Type : REQUEST +11:21:07 Received From : +11:21:07 ============================================================================ +11:21:07 FNo. Len. Field Value +11:21:07 ============================================================================ +11:21:07 [ 1] [ 4] [0800] +11:21:07 [ 7] [ 10] [0320042015] +11:21:07 [ 11] [ 6] [156069] +11:21:07 [ 70] [ 3] [301] +11:21:07 ============================================================================ +11:21:07 + + +waiting on router queue for slot.... +11:21:07 Sending to : +11:21:07 ============================================================================ +11:21:07 ============================================================================ +11:21:07 Slot Id : <150> +11:21:07 Transaction Type : RESPONSE +11:21:07 Received From : +11:21:07 ============================================================================ +11:21:07 FNo. Len. Field Value +11:21:07 ============================================================================ +11:21:07 [ 1] [ 4] [0810] +11:21:07 [ 7] [ 10] [0320042015] +11:21:07 [ 11] [ 6] [156069] +11:21:07 [ 39] [ 2] [00] +11:21:07 [ 70] [ 3] [301] +11:21:07 ============================================================================ +11:21:07 Calculate Source COMM Id = 2 +11:21:07 ============================================================================ +11:21:07 + + +waiting on router queue for slot.... +11:21:21 ============================================================================ +11:21:21 Slot Id : <153> +11:21:21 Transaction Type : REQUEST +11:21:21 Received From : +11:21:21 ============================================================================ +11:21:21 FNo. Len. Field Value +11:21:21 ============================================================================ +11:21:21 [ 1] [ 4] [0800] +11:21:21 [ 7] [ 10] [0320041912] +11:21:21 [ 11] [ 6] [062482] +11:21:21 [ 37] [ 12] [57911062482] +11:21:21 [ 70] [ 3] [301] +11:21:21 ============================================================================ +11:21:21 + + +waiting on router queue for slot.... +11:21:21 Sending to : +11:21:21 ============================================================================ +11:21:21 ============================================================================ +11:21:21 Slot Id : <153> +11:21:21 Transaction Type : RESPONSE +11:21:21 Received From : +11:21:21 ============================================================================ +11:21:21 FNo. Len. Field Value +11:21:21 ============================================================================ +11:21:21 [ 1] [ 4] [0810] +11:21:21 [ 7] [ 10] [0320041912] +11:21:21 [ 11] [ 6] [062482] +11:21:21 [ 37] [ 12] [579110624820] +11:21:21 [ 39] [ 2] [00] +11:21:21 [ 70] [ 3] [810] +11:21:21 ============================================================================ +11:21:21 Calculate Source COMM Id = 4 +11:21:21 ============================================================================ +11:21:21 + + +waiting on router queue for slot.... +11:21:23 ============================================================================ +11:21:23 Slot Id : <130> +11:21:23 Transaction Type : REQUEST +11:21:23 Received From : +11:21:23 ============================================================================ +11:21:23 FNo. Len. Field Value +11:21:23 ============================================================================ +11:21:23 [ 1] [ 4] [0800] +11:21:23 [ 7] [ 10] [0320042031] +11:21:23 [ 11] [ 6] [156070] +11:21:23 [ 70] [ 3] [301] +11:21:23 ============================================================================ +11:21:23 + + +waiting on router queue for slot.... +11:21:23 Sending to : +11:21:23 ============================================================================ +11:21:23 ============================================================================ +11:21:23 Slot Id : <130> +11:21:23 Transaction Type : RESPONSE +11:21:23 Received From : +11:21:23 ============================================================================ +11:21:23 FNo. Len. Field Value +11:21:23 ============================================================================ +11:21:23 [ 1] [ 4] [0810] +11:21:23 [ 7] [ 10] [0320042031] +11:21:23 [ 11] [ 6] [156070] +11:21:23 [ 39] [ 2] [00] +11:21:23 [ 70] [ 3] [301] +11:21:23 ============================================================================ +11:21:23 Calculate Source COMM Id = 2 +11:21:23 ============================================================================ +11:21:23 + + +waiting on router queue for slot.... +11:21:29 ============================================================================ +11:21:29 Slot Id : <142> +11:21:29 Transaction Type : REQUEST +11:21:29 Received From : +11:21:29 ============================================================================ +11:21:29 FNo. Len. Field Value +11:21:29 ============================================================================ +11:21:29 [ 1] [ 4] [0200] +11:21:29 [ 2] [ 16] [6213541000106925] +11:21:29 [ 3] [ 6] [010000] +11:21:29 [ 4] [ 12] [000100000000] +11:21:29 [ 7] [ 10] [0320111920] +11:21:29 [ 11] [ 6] [941010] +11:21:29 [ 12] [ 6] [111920] +11:21:29 [ 13] [ 4] [0320] +11:21:29 [ 15] [ 4] [0320] +11:21:29 [ 18] [ 4] [6011] +11:21:29 [ 19] [ 3] [418] +11:21:29 [ 22] [ 3] [021] +11:21:29 [ 25] [ 2] [01] +11:21:29 [ 28] [ 9] [D00002000] +11:21:29 [ 32] [ 6] [668899] +11:21:29 [ 35] [ 32] [6213541000106925=491212010692472] +11:21:29 [ 37] [ 12] [507900977510] +11:21:29 [ 41] [ 8] [03407002] +11:21:29 [ 42] [ 15] [APT ] +11:21:29 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +11:21:29 [ 49] [ 3] [418] +11:21:29 [ 52] [ 16] [15DFDE8FDAA44FCF] +11:21:29 ============================================================================ +11:21:29 + + +waiting on router queue for slot.... +11:21:29 Sending to : +11:21:29 ============================================================================ +11:21:29 Sending to : +11:21:29 ============================================================================ +11:21:29 ============================================================================ +11:21:29 Slot Id : <142> +11:21:29 Transaction Type : REQUEST +11:21:29 Received From : +11:21:29 ============================================================================ +11:21:29 FNo. Len. Field Value +11:21:29 ============================================================================ +11:21:29 [ 1] [ 4] [0200] +11:21:29 [ 2] [ 16] [6213541000106925] +11:21:29 [ 3] [ 6] [010000] +11:21:29 [ 4] [ 12] [000100000000] +11:21:29 [ 7] [ 10] [0320111920] +11:21:29 [ 11] [ 6] [941010] +11:21:29 [ 12] [ 6] [111920] +11:21:29 [ 13] [ 4] [0320] +11:21:29 [ 15] [ 4] [0320] +11:21:29 [ 18] [ 4] [6011] +11:21:29 [ 19] [ 3] [418] +11:21:29 [ 22] [ 3] [021] +11:21:29 [ 25] [ 2] [01] +11:21:29 [ 28] [ 9] [D00002000] +11:21:29 [ 32] [ 6] [668899] +11:21:29 [ 35] [ 32] [6213541000106925=491212010692472] +11:21:29 [ 37] [ 12] [507900977510] +11:21:29 [ 41] [ 8] [03407002] +11:21:29 [ 42] [ 15] [APT ] +11:21:29 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +11:21:29 [ 49] [ 3] [418] +11:21:29 [ 52] [ 16] [15DFDE8FDAA44FCF] +11:21:29 ============================================================================ +11:21:29 + + +waiting on router queue for slot.... +11:21:29 Sending to : +11:21:29 ============================================================================ +11:21:29 ============================================================================ +11:21:29 Slot Id : <142> +11:21:29 Transaction Type : REQUEST +11:21:29 Received From : +11:21:29 ============================================================================ +11:21:29 FNo. Len. Field Value +11:21:29 ============================================================================ +11:21:29 [ 1] [ 4] [0200] +11:21:29 [ 2] [ 16] [6213541000106925] +11:21:29 [ 3] [ 6] [010000] +11:21:29 [ 4] [ 12] [000100000000] +11:21:29 [ 7] [ 10] [0320111920] +11:21:29 [ 11] [ 6] [941010] +11:21:29 [ 12] [ 6] [111920] +11:21:29 [ 13] [ 4] [0320] +11:21:29 [ 15] [ 4] [0320] +11:21:29 [ 18] [ 4] [6011] +11:21:29 [ 19] [ 3] [418] +11:21:29 [ 22] [ 3] [021] +11:21:29 [ 25] [ 2] [01] +11:21:29 [ 28] [ 9] [D00002000] +11:21:29 [ 32] [ 6] [668899] +11:21:29 [ 35] [ 32] [6213541000106925=491212010692472] +11:21:29 [ 37] [ 12] [507900977510] +11:21:29 [ 41] [ 8] [03407002] +11:21:29 [ 42] [ 15] [APT ] +11:21:29 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +11:21:29 [ 49] [ 3] [418] +11:21:29 [ 52] [ 16] [0F79890ACD321A0C] +11:21:29 ============================================================================ +11:21:29 + + +waiting on router queue for slot.... +11:21:29 Sending to : <0> +11:21:29 ============================================================================ +11:21:30 ============================================================================ +11:21:30 Slot Id : <142> +11:21:30 Transaction Type : RESPONSE +11:21:30 Received From : +11:21:30 ============================================================================ +11:21:30 FNo. Len. Field Value +11:21:30 ============================================================================ +11:21:30 [ 1] [ 4] [0210] +11:21:30 [ 2] [ 16] [6213541000106925] +11:21:30 [ 3] [ 6] [010000] +11:21:30 [ 4] [ 12] [000100000000] +11:21:30 [ 7] [ 10] [0320111920] +11:21:30 [ 11] [ 6] [941010] +11:21:30 [ 12] [ 6] [111920] +11:21:30 [ 13] [ 4] [0320] +11:21:30 [ 15] [ 4] [0320] +11:21:30 [ 18] [ 4] [6011] +11:21:30 [ 19] [ 3] [418] +11:21:30 [ 32] [ 6] [668899] +11:21:30 [ 35] [ 32] [6213541000106925=491212010692472] +11:21:30 [ 37] [ 12] [507900977510] +11:21:30 [ 38] [ 6] [644334] +11:21:30 [ 39] [ 2] [00] +11:21:30 [ 41] [ 8] [03407002] +11:21:30 [ 49] [ 3] [418] +11:21:30 [ 54] [ 40] [0001418C0001106821720002418C000110682172] +11:21:30 ============================================================================ +11:21:30 Sending to : +11:21:30 ============================================================================ +11:21:30 + + +waiting on router queue for slot.... +11:21:31 ============================================================================ +11:21:31 Slot Id : <142> +11:21:31 Transaction Type : RESPONSE +11:21:31 Received From : +11:21:31 ============================================================================ +11:21:31 FNo. Len. Field Value +11:21:31 ============================================================================ +11:21:31 [ 1] [ 4] [0210] +11:21:31 [ 2] [ 16] [6213541000106925] +11:21:31 [ 3] [ 6] [010000] +11:21:31 [ 4] [ 12] [000100000000] +11:21:31 [ 7] [ 10] [0320111920] +11:21:31 [ 11] [ 6] [941010] +11:21:31 [ 12] [ 6] [111920] +11:21:31 [ 13] [ 4] [0320] +11:21:31 [ 15] [ 4] [0320] +11:21:31 [ 18] [ 4] [6011] +11:21:31 [ 19] [ 3] [418] +11:21:31 [ 32] [ 6] [668899] +11:21:31 [ 35] [ 32] [6213541000106925=491212010692472] +11:21:31 [ 37] [ 12] [507900977510] +11:21:31 [ 38] [ 6] [644334] +11:21:31 [ 39] [ 2] [00] +11:21:31 [ 41] [ 8] [03407002] +11:21:31 [ 49] [ 3] [418] +11:21:31 [ 54] [ 40] [0001418C0001106821720002418C000110682172] +11:21:31 ============================================================================ +11:21:31 Calculate Source COMM Id = 4 +11:21:31 ============================================================================ +11:21:31 + + +waiting on router queue for slot.... +11:21:34 ============================================================================ +11:21:34 Slot Id : <110> +11:21:34 Transaction Type : REQUEST +11:21:34 Received From : +11:21:34 ============================================================================ +11:21:34 FNo. Len. Field Value +11:21:34 ============================================================================ +11:21:34 [ 1] [ 4] [0800] +11:21:34 [ 7] [ 10] [0320042041] +11:21:34 [ 11] [ 6] [156071] +11:21:34 [ 70] [ 3] [301] +11:21:34 ============================================================================ +11:21:34 + + +waiting on router queue for slot.... +11:21:34 Sending to : +11:21:34 ============================================================================ +11:21:34 ============================================================================ +11:21:34 Slot Id : <110> +11:21:34 Transaction Type : RESPONSE +11:21:34 Received From : +11:21:34 ============================================================================ +11:21:34 FNo. Len. Field Value +11:21:34 ============================================================================ +11:21:34 [ 1] [ 4] [0810] +11:21:34 [ 7] [ 10] [0320042041] +11:21:34 [ 11] [ 6] [156071] +11:21:34 [ 39] [ 2] [00] +11:21:34 [ 70] [ 3] [301] +11:21:34 ============================================================================ +11:21:34 Calculate Source COMM Id = 2 +11:21:34 ============================================================================ +11:21:34 + + +waiting on router queue for slot.... +11:21:36 ============================================================================ +11:21:36 Slot Id : <167> +11:21:36 Transaction Type : REQUEST +11:21:36 Received From : +11:21:36 ============================================================================ +11:21:36 FNo. Len. Field Value +11:21:36 ============================================================================ +11:21:36 [ 1] [ 4] [0800] +11:21:36 [ 2] [ 5] [02531] +11:21:36 [ 3] [ 6] [579118] +11:21:36 [ 7] [ 10] [0320042136] +11:21:36 [ 11] [ 6] [807071] +11:21:36 [ 15] [ 10] [0320042136] +11:21:36 [ 37] [ 11] [57911807071] +11:21:36 [ 70] [ 3] [001] +11:21:36 ============================================================================ +11:21:36 + + +waiting on router queue for slot.... +11:21:36 ============================================================================ +11:21:36 Slot Id : <167> +11:21:36 Transaction Type : RESPONSE +11:21:36 Received From : +11:21:36 ============================================================================ +11:21:36 FNo. Len. Field Value +11:21:36 ============================================================================ +11:21:36 [ 1] [ 4] [0810] +11:21:36 [ 7] [ 10] [0320042136] +11:21:36 [ 11] [ 6] [807071] +11:21:36 [ 15] [ 4] [0320] +11:21:36 [ 37] [ 12] [57911807071] +11:21:36 [ 39] [ 2] [00] +11:21:36 [ 70] [ 3] [001] +11:21:36 ============================================================================ +11:21:36 Sending to : +11:21:36 ============================================================================ +11:21:36 + + +waiting on router queue for slot.... +11:21:45 ============================================================================ +11:21:45 Slot Id : <137> +11:21:45 Transaction Type : REQUEST +11:21:45 Received From : +11:21:45 ============================================================================ +11:21:45 FNo. Len. Field Value +11:21:45 ============================================================================ +11:21:45 [ 1] [ 4] [0200] +11:21:45 [ 2] [ 16] [6213541000137698] +11:21:45 [ 3] [ 6] [302000] +11:21:45 [ 4] [ 12] [000000000000] +11:21:45 [ 7] [ 10] [0320111936] +11:21:45 [ 11] [ 6] [941021] +11:21:45 [ 12] [ 6] [111936] +11:21:45 [ 13] [ 4] [0320] +11:21:45 [ 15] [ 4] [0320] +11:21:45 [ 18] [ 4] [6011] +11:21:45 [ 19] [ 3] [418] +11:21:45 [ 22] [ 3] [021] +11:21:45 [ 25] [ 2] [01] +11:21:45 [ 28] [ 9] [D00000000] +11:21:45 [ 32] [ 6] [668899] +11:21:45 [ 35] [ 32] [6213541000137698=491212013769726] +11:21:45 [ 37] [ 12] [507900136701] +11:21:45 [ 41] [ 8] [03020004] +11:21:45 [ 42] [ 15] [APT ] +11:21:45 [ 43] [ 40] [ DEPT OF VT CAPITAL OF FIN] +11:21:45 [ 49] [ 3] [418] +11:21:45 [ 52] [ 16] [9644ED184435C23F] +11:21:45 ============================================================================ +11:21:45 + + +waiting on router queue for slot.... +11:21:45 Sending to : +11:21:45 ============================================================================ +11:21:45 Sending to : +11:21:45 ============================================================================ +11:21:46 ============================================================================ +11:21:46 Slot Id : <137> +11:21:46 Transaction Type : REQUEST +11:21:46 Received From : +11:21:46 ============================================================================ +11:21:46 FNo. Len. Field Value +11:21:46 ============================================================================ +11:21:46 [ 1] [ 4] [0200] +11:21:46 [ 2] [ 16] [6213541000137698] +11:21:46 [ 3] [ 6] [302000] +11:21:46 [ 4] [ 12] [000000000000] +11:21:46 [ 7] [ 10] [0320111936] +11:21:46 [ 11] [ 6] [941021] +11:21:46 [ 12] [ 6] [111936] +11:21:46 [ 13] [ 4] [0320] +11:21:46 [ 15] [ 4] [0320] +11:21:46 [ 18] [ 4] [6011] +11:21:46 [ 19] [ 3] [418] +11:21:46 [ 22] [ 3] [021] +11:21:46 [ 25] [ 2] [01] +11:21:46 [ 28] [ 9] [D00000000] +11:21:46 [ 32] [ 6] [668899] +11:21:46 [ 35] [ 32] [6213541000137698=491212013769726] +11:21:46 [ 37] [ 12] [507900136701] +11:21:46 [ 41] [ 8] [03020004] +11:21:46 [ 42] [ 15] [APT ] +11:21:46 [ 43] [ 40] [ DEPT OF VT CAPITAL OF FIN] +11:21:46 [ 49] [ 3] [418] +11:21:46 [ 52] [ 16] [9644ED184435C23F] +11:21:46 ============================================================================ +11:21:46 + + +waiting on router queue for slot.... +11:21:46 Sending to : +11:21:46 ============================================================================ +11:21:46 ============================================================================ +11:21:46 Slot Id : <137> +11:21:46 Transaction Type : REQUEST +11:21:46 Received From : +11:21:46 ============================================================================ +11:21:46 FNo. Len. Field Value +11:21:46 ============================================================================ +11:21:46 [ 1] [ 4] [0200] +11:21:46 [ 2] [ 16] [6213541000137698] +11:21:46 [ 3] [ 6] [302000] +11:21:46 [ 4] [ 12] [000000000000] +11:21:46 [ 7] [ 10] [0320111936] +11:21:46 [ 11] [ 6] [941021] +11:21:46 [ 12] [ 6] [111936] +11:21:46 [ 13] [ 4] [0320] +11:21:46 [ 15] [ 4] [0320] +11:21:46 [ 18] [ 4] [6011] +11:21:46 [ 19] [ 3] [418] +11:21:46 [ 22] [ 3] [021] +11:21:46 [ 25] [ 2] [01] +11:21:46 [ 28] [ 9] [D00000000] +11:21:46 [ 32] [ 6] [668899] +11:21:46 [ 35] [ 32] [6213541000137698=491212013769726] +11:21:46 [ 37] [ 12] [507900136701] +11:21:46 [ 41] [ 8] [03020004] +11:21:46 [ 42] [ 15] [APT ] +11:21:46 [ 43] [ 40] [ DEPT OF VT CAPITAL OF FIN] +11:21:46 [ 49] [ 3] [418] +11:21:46 [ 52] [ 16] [EC93B3133177F6F7] +11:21:46 ============================================================================ +11:21:46 + + +waiting on router queue for slot.... +11:21:46 Sending to : <0> +11:21:46 ============================================================================ +11:21:46 ============================================================================ +11:21:46 Slot Id : <137> +11:21:46 Transaction Type : RESPONSE +11:21:46 Received From : +11:21:46 ============================================================================ +11:21:46 FNo. Len. Field Value +11:21:46 ============================================================================ +11:21:46 [ 1] [ 4] [0210] +11:21:46 [ 2] [ 16] [6213541000137698] +11:21:46 [ 3] [ 6] [302000] +11:21:46 [ 4] [ 12] [000000000000] +11:21:46 [ 7] [ 10] [0320111936] +11:21:46 [ 11] [ 6] [941021] +11:21:46 [ 12] [ 6] [111936] +11:21:46 [ 13] [ 4] [0320] +11:21:46 [ 15] [ 4] [0320] +11:21:46 [ 18] [ 4] [6011] +11:21:46 [ 19] [ 3] [418] +11:21:46 [ 32] [ 6] [668899] +11:21:46 [ 35] [ 32] [6213541000137698=491212013769726] +11:21:46 [ 37] [ 12] [507900136701] +11:21:46 [ 38] [ 6] [005288] +11:21:46 [ 39] [ 2] [00] +11:21:46 [ 41] [ 8] [03020004] +11:21:46 [ 49] [ 3] [418] +11:21:46 [ 54] [ 40] [2001418C0000036567272002418C000003656727] +11:21:46 ============================================================================ +11:21:46 Sending to : +11:21:46 ============================================================================ +11:21:46 + + +waiting on router queue for slot.... +11:21:48 ============================================================================ +11:21:48 Slot Id : <137> +11:21:48 Transaction Type : RESPONSE +11:21:48 Received From : +11:21:48 ============================================================================ +11:21:48 FNo. Len. Field Value +11:21:48 ============================================================================ +11:21:48 [ 1] [ 4] [0210] +11:21:48 [ 2] [ 16] [6213541000137698] +11:21:48 [ 3] [ 6] [302000] +11:21:48 [ 4] [ 12] [000000000000] +11:21:48 [ 7] [ 10] [0320111936] +11:21:48 [ 11] [ 6] [941021] +11:21:48 [ 12] [ 6] [111936] +11:21:48 [ 13] [ 4] [0320] +11:21:48 [ 15] [ 4] [0320] +11:21:48 [ 18] [ 4] [6011] +11:21:48 [ 19] [ 3] [418] +11:21:48 [ 32] [ 6] [668899] +11:21:48 [ 35] [ 32] [6213541000137698=491212013769726] +11:21:48 [ 37] [ 12] [507900136701] +11:21:48 [ 38] [ 6] [005288] +11:21:48 [ 39] [ 2] [00] +11:21:48 [ 41] [ 8] [03020004] +11:21:48 [ 49] [ 3] [418] +11:21:48 [ 54] [ 40] [2001418C0000036567272002418C000003656727] +11:21:48 ============================================================================ +11:21:48 Calculate Source COMM Id = 4 +11:21:48 ============================================================================ +11:21:48 + + +waiting on router queue for slot.... +11:21:50 ============================================================================ +11:21:50 Slot Id : <159> +11:21:50 Transaction Type : REQUEST +11:21:50 Received From : +11:21:50 ============================================================================ +11:21:50 FNo. Len. Field Value +11:21:50 ============================================================================ +11:21:50 [ 1] [ 4] [0800] +11:21:50 [ 7] [ 10] [0320042057] +11:21:50 [ 11] [ 6] [156072] +11:21:50 [ 70] [ 3] [301] +11:21:50 ============================================================================ +11:21:50 + + +waiting on router queue for slot.... +11:21:50 Sending to : +11:21:50 ============================================================================ +11:21:50 ============================================================================ +11:21:50 Slot Id : <159> +11:21:50 Transaction Type : RESPONSE +11:21:50 Received From : +11:21:50 ============================================================================ +11:21:50 FNo. Len. Field Value +11:21:50 ============================================================================ +11:21:50 [ 1] [ 4] [0810] +11:21:50 [ 7] [ 10] [0320042057] +11:21:50 [ 11] [ 6] [156072] +11:21:50 [ 39] [ 2] [00] +11:21:50 [ 70] [ 3] [301] +11:21:50 ============================================================================ +11:21:50 Calculate Source COMM Id = 2 +11:21:50 ============================================================================ +11:21:50 + + +waiting on router queue for slot.... +11:21:52 ============================================================================ +11:21:52 Slot Id : <175> +11:21:52 Transaction Type : REQUEST +11:21:52 Received From : +11:21:52 ============================================================================ +11:21:52 FNo. Len. Field Value +11:21:52 ============================================================================ +11:21:52 [ 1] [ 4] [0200] +11:21:52 [ 2] [ 16] [6213544002012497] +11:21:52 [ 3] [ 6] [010000] +11:21:52 [ 4] [ 12] [000010000000] +11:21:52 [ 7] [ 10] [0320111943] +11:21:52 [ 11] [ 6] [941026] +11:21:52 [ 12] [ 6] [111943] +11:21:52 [ 13] [ 4] [0320] +11:21:52 [ 15] [ 4] [0320] +11:21:52 [ 18] [ 4] [6011] +11:21:52 [ 19] [ 3] [418] +11:21:52 [ 22] [ 3] [021] +11:21:52 [ 25] [ 2] [01] +11:21:52 [ 28] [ 9] [D00002000] +11:21:52 [ 32] [ 6] [668899] +11:21:52 [ 35] [ 32] [6213544002012497=491212011249740] +11:21:52 [ 37] [ 12] [507901912156] +11:21:52 [ 41] [ 8] [03013004] +11:21:52 [ 42] [ 15] [APT ] +11:21:52 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +11:21:52 [ 49] [ 3] [418] +11:21:52 [ 52] [ 16] [5EF65F5060C2DF8D] +11:21:52 ============================================================================ +11:21:52 + + +waiting on router queue for slot.... +11:21:52 Sending to : +11:21:52 ============================================================================ +11:21:52 Sending to : +11:21:52 ============================================================================ +11:21:52 ============================================================================ +11:21:52 Slot Id : <175> +11:21:52 Transaction Type : REQUEST +11:21:52 Received From : +11:21:52 ============================================================================ +11:21:52 FNo. Len. Field Value +11:21:52 ============================================================================ +11:21:52 [ 1] [ 4] [0200] +11:21:52 [ 2] [ 16] [6213544002012497] +11:21:52 [ 3] [ 6] [010000] +11:21:52 [ 4] [ 12] [000010000000] +11:21:52 [ 7] [ 10] [0320111943] +11:21:52 [ 11] [ 6] [941026] +11:21:52 [ 12] [ 6] [111943] +11:21:52 [ 13] [ 4] [0320] +11:21:52 [ 15] [ 4] [0320] +11:21:52 [ 18] [ 4] [6011] +11:21:52 [ 19] [ 3] [418] +11:21:52 [ 22] [ 3] [021] +11:21:52 [ 25] [ 2] [01] +11:21:52 [ 28] [ 9] [D00002000] +11:21:52 [ 32] [ 6] [668899] +11:21:52 [ 35] [ 32] [6213544002012497=491212011249740] +11:21:52 [ 37] [ 12] [507901912156] +11:21:52 [ 41] [ 8] [03013004] +11:21:52 [ 42] [ 15] [APT ] +11:21:52 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +11:21:52 [ 49] [ 3] [418] +11:21:52 [ 52] [ 16] [5EF65F5060C2DF8D] +11:21:52 ============================================================================ +11:21:52 + + +waiting on router queue for slot.... +11:21:52 Sending to : +11:21:52 ============================================================================ +11:21:52 ============================================================================ +11:21:52 Slot Id : <175> +11:21:52 Transaction Type : REQUEST +11:21:52 Received From : +11:21:52 ============================================================================ +11:21:52 FNo. Len. Field Value +11:21:52 ============================================================================ +11:21:52 [ 1] [ 4] [0200] +11:21:52 [ 2] [ 16] [6213544002012497] +11:21:52 [ 3] [ 6] [010000] +11:21:52 [ 4] [ 12] [000010000000] +11:21:52 [ 7] [ 10] [0320111943] +11:21:52 [ 11] [ 6] [941026] +11:21:52 [ 12] [ 6] [111943] +11:21:52 [ 13] [ 4] [0320] +11:21:52 [ 15] [ 4] [0320] +11:21:52 [ 18] [ 4] [6011] +11:21:52 [ 19] [ 3] [418] +11:21:52 [ 22] [ 3] [021] +11:21:52 [ 25] [ 2] [01] +11:21:52 [ 28] [ 9] [D00002000] +11:21:52 [ 32] [ 6] [668899] +11:21:52 [ 35] [ 32] [6213544002012497=491212011249740] +11:21:52 [ 37] [ 12] [507901912156] +11:21:52 [ 41] [ 8] [03013004] +11:21:52 [ 42] [ 15] [APT ] +11:21:52 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +11:21:52 [ 49] [ 3] [418] +11:21:52 [ 52] [ 16] [BEA28BDF0B655865] +11:21:52 ============================================================================ +11:21:52 + + +waiting on router queue for slot.... +11:21:52 Sending to : <0> +11:21:52 ============================================================================ +11:21:53 ============================================================================ +11:21:53 Slot Id : <175> +11:21:53 Transaction Type : RESPONSE +11:21:53 Received From : +11:21:53 ============================================================================ +11:21:53 FNo. Len. Field Value +11:21:53 ============================================================================ +11:21:53 [ 1] [ 4] [0210] +11:21:53 [ 2] [ 16] [6213544002012497] +11:21:53 [ 3] [ 6] [010000] +11:21:53 [ 4] [ 12] [000010000000] +11:21:53 [ 7] [ 10] [0320111943] +11:21:53 [ 11] [ 6] [941026] +11:21:53 [ 12] [ 6] [111943] +11:21:53 [ 13] [ 4] [0320] +11:21:53 [ 15] [ 4] [0320] +11:21:53 [ 18] [ 4] [6011] +11:21:53 [ 19] [ 3] [418] +11:21:53 [ 22] [ 3] [021] +11:21:53 [ 32] [ 6] [668899] +11:21:53 [ 35] [ 32] [6213544002012497=491212011249740] +11:21:53 [ 37] [ 12] [507901912156] +11:21:53 [ 38] [ 6] [112149] +11:21:53 [ 39] [ 2] [55] +11:21:53 [ 41] [ 8] [03013004] +11:21:53 [ 49] [ 3] [418] +11:21:53 ============================================================================ +11:21:53 Sending to : +11:21:53 ============================================================================ +11:21:53 + + +waiting on router queue for slot.... +11:21:54 ============================================================================ +11:21:54 Slot Id : <175> +11:21:54 Transaction Type : RESPONSE +11:21:54 Received From : +11:21:54 ============================================================================ +11:21:54 FNo. Len. Field Value +11:21:54 ============================================================================ +11:21:54 [ 1] [ 4] [0210] +11:21:54 [ 2] [ 16] [6213544002012497] +11:21:54 [ 3] [ 6] [010000] +11:21:54 [ 4] [ 12] [000010000000] +11:21:54 [ 7] [ 10] [0320111943] +11:21:54 [ 11] [ 6] [941026] +11:21:54 [ 12] [ 6] [111943] +11:21:54 [ 13] [ 4] [0320] +11:21:54 [ 15] [ 4] [0320] +11:21:54 [ 18] [ 4] [6011] +11:21:54 [ 19] [ 3] [418] +11:21:54 [ 22] [ 3] [021] +11:21:54 [ 32] [ 6] [668899] +11:21:54 [ 35] [ 32] [6213544002012497=491212011249740] +11:21:54 [ 37] [ 12] [507901912156] +11:21:54 [ 38] [ 6] [112149] +11:21:54 [ 39] [ 2] [55] +11:21:54 [ 41] [ 8] [03013004] +11:21:54 [ 49] [ 3] [418] +11:21:54 ============================================================================ +11:21:54 Calculate Source COMM Id = 4 +11:21:54 ============================================================================ +11:21:54 + + +waiting on router queue for slot.... +11:21:54 ============================================================================ +11:21:54 Slot Id : <128> +11:21:54 Transaction Type : REQUEST +11:21:54 Received From : +11:21:54 ============================================================================ +11:21:54 FNo. Len. Field Value +11:21:54 ============================================================================ +11:21:54 [ 1] [ 4] [0200] +11:21:54 [ 2] [ 16] [6213544001922209] +11:21:54 [ 3] [ 6] [011000] +11:21:54 [ 4] [ 12] [000020000000] +11:21:54 [ 7] [ 10] [0320112215] +11:21:54 [ 11] [ 6] [204582] +11:21:54 [ 12] [ 6] [232026] +11:21:54 [ 13] [ 4] [0319] +11:21:54 [ 14] [ 4] [4912] +11:21:54 [ 15] [ 4] [0319] +11:21:54 [ 18] [ 4] [6011] +11:21:54 [ 19] [ 3] [418] +11:21:54 [ 22] [ 3] [021] +11:21:54 [ 25] [ 2] [01] +11:21:54 [ 28] [ 9] [D00002000] +11:21:54 [ 32] [ 6] [198901] +11:21:54 [ 35] [ 32] [6213544001922209=491212012220968] +11:21:54 [ 37] [ 12] [507911204582] +11:21:54 [ 41] [ 8] [01529031] +11:21:54 [ 42] [ 15] [000000041529031] +11:21:54 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:21:54 [ 49] [ 3] [418] +11:21:54 [ 52] [ 16] [29091E031C5B79E0] +11:21:54 ============================================================================ +11:21:54 + + +waiting on router queue for slot.... +11:21:54 Sending to : +11:21:54 ============================================================================ +11:21:54 Sending to : +11:21:54 ============================================================================ +11:21:54 ============================================================================ +11:21:54 Slot Id : <128> +11:21:54 Transaction Type : REQUEST +11:21:54 Received From : +11:21:54 ============================================================================ +11:21:54 FNo. Len. Field Value +11:21:54 ============================================================================ +11:21:54 [ 1] [ 4] [0200] +11:21:54 [ 2] [ 16] [6213544001922209] +11:21:54 [ 3] [ 6] [011000] +11:21:54 [ 4] [ 12] [000020000000] +11:21:54 [ 7] [ 10] [0320112215] +11:21:54 [ 11] [ 6] [204582] +11:21:54 [ 12] [ 6] [232026] +11:21:54 [ 13] [ 4] [0319] +11:21:54 [ 14] [ 4] [4912] +11:21:54 [ 15] [ 4] [0319] +11:21:54 [ 18] [ 4] [6011] +11:21:54 [ 19] [ 3] [418] +11:21:54 [ 22] [ 3] [021] +11:21:54 [ 25] [ 2] [01] +11:21:54 [ 28] [ 9] [D00002000] +11:21:54 [ 32] [ 6] [198901] +11:21:54 [ 35] [ 32] [6213544001922209=491212012220968] +11:21:54 [ 37] [ 12] [507911204582] +11:21:54 [ 41] [ 8] [01529031] +11:21:54 [ 42] [ 15] [000000041529031] +11:21:54 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:21:54 [ 49] [ 3] [418] +11:21:54 [ 52] [ 16] [29091E031C5B79E0] +11:21:54 ============================================================================ +11:21:54 + + +waiting on router queue for slot.... +11:21:54 Sending to : +11:21:54 ============================================================================ +11:21:54 ============================================================================ +11:21:54 Slot Id : <128> +11:21:54 Transaction Type : REQUEST +11:21:54 Received From : +11:21:54 ============================================================================ +11:21:54 FNo. Len. Field Value +11:21:54 ============================================================================ +11:21:54 [ 1] [ 4] [0200] +11:21:54 [ 2] [ 16] [6213544001922209] +11:21:54 [ 3] [ 6] [011000] +11:21:54 [ 4] [ 12] [000020000000] +11:21:54 [ 7] [ 10] [0320112215] +11:21:54 [ 11] [ 6] [204582] +11:21:54 [ 12] [ 6] [232026] +11:21:54 [ 13] [ 4] [0319] +11:21:54 [ 14] [ 4] [4912] +11:21:54 [ 15] [ 4] [0319] +11:21:54 [ 18] [ 4] [6011] +11:21:54 [ 19] [ 3] [418] +11:21:54 [ 22] [ 3] [021] +11:21:54 [ 25] [ 2] [01] +11:21:54 [ 28] [ 9] [D00002000] +11:21:54 [ 32] [ 6] [198901] +11:21:54 [ 35] [ 32] [6213544001922209=491212012220968] +11:21:54 [ 37] [ 12] [507911204582] +11:21:54 [ 41] [ 8] [01529031] +11:21:54 [ 42] [ 15] [000000041529031] +11:21:54 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:21:54 [ 49] [ 3] [418] +11:21:54 [ 52] [ 16] [8A365AB11B42E63A] +11:21:54 ============================================================================ +11:21:54 + + +waiting on router queue for slot.... +11:21:54 Sending to : <0> +11:21:54 ============================================================================ +11:21:55 ============================================================================ +11:21:55 Slot Id : <128> +11:21:55 Transaction Type : RESPONSE +11:21:55 Received From : +11:21:55 ============================================================================ +11:21:55 FNo. Len. Field Value +11:21:55 ============================================================================ +11:21:55 [ 1] [ 4] [0210] +11:21:55 [ 2] [ 16] [6213544001922209] +11:21:55 [ 3] [ 6] [011000] +11:21:55 [ 4] [ 12] [000020000000] +11:21:55 [ 7] [ 10] [0320112215] +11:21:55 [ 11] [ 6] [204582] +11:21:55 [ 12] [ 6] [232026] +11:21:55 [ 13] [ 4] [0319] +11:21:55 [ 15] [ 4] [0319] +11:21:55 [ 18] [ 4] [6011] +11:21:55 [ 19] [ 3] [418] +11:21:55 [ 32] [ 6] [198901] +11:21:55 [ 35] [ 32] [6213544001922209=491212012220968] +11:21:55 [ 37] [ 12] [507911204582] +11:21:55 [ 38] [ 6] [573775] +11:21:55 [ 39] [ 2] [00] +11:21:55 [ 41] [ 8] [01529031] +11:21:55 [ 49] [ 3] [418] +11:21:55 [ 54] [ 40] [1001418C0000414978301002418C000041497830] +11:21:55 ============================================================================ +11:21:55 Sending to : +11:21:55 ============================================================================ +11:21:55 + + +waiting on router queue for slot.... +11:21:56 ============================================================================ +11:21:56 Slot Id : <128> +11:21:56 Transaction Type : RESPONSE +11:21:56 Received From : +11:21:56 ============================================================================ +11:21:56 FNo. Len. Field Value +11:21:56 ============================================================================ +11:21:56 [ 1] [ 4] [0210] +11:21:56 [ 2] [ 16] [6213544001922209] +11:21:56 [ 3] [ 6] [011000] +11:21:56 [ 4] [ 12] [000020000000] +11:21:56 [ 7] [ 10] [0320112215] +11:21:56 [ 11] [ 6] [204582] +11:21:56 [ 12] [ 6] [232026] +11:21:56 [ 13] [ 4] [0319] +11:21:56 [ 15] [ 4] [0319] +11:21:56 [ 18] [ 4] [6011] +11:21:56 [ 19] [ 3] [418] +11:21:56 [ 32] [ 6] [198901] +11:21:56 [ 35] [ 32] [6213544001922209=491212012220968] +11:21:56 [ 37] [ 12] [507911204582] +11:21:56 [ 38] [ 6] [573775] +11:21:56 [ 39] [ 2] [00] +11:21:56 [ 41] [ 8] [01529031] +11:21:56 [ 49] [ 3] [418] +11:21:56 [ 54] [ 40] [1001418C0000414978301002418C000041497830] +11:21:56 ============================================================================ +11:21:56 Calculate Source COMM Id = 5 +11:21:56 ============================================================================ +11:21:56 + + +waiting on router queue for slot.... +11:21:57 ============================================================================ +11:21:57 Slot Id : <146> +11:21:57 Transaction Type : REQUEST +11:21:57 Received From : +11:21:57 ============================================================================ +11:21:57 FNo. Len. Field Value +11:21:57 ============================================================================ +11:21:57 [ 1] [ 4] [0200] +11:21:57 [ 2] [ 16] [6213541000043318] +11:21:57 [ 3] [ 6] [010000] +11:21:57 [ 4] [ 12] [000150000000] +11:21:57 [ 7] [ 10] [0320042104] +11:21:57 [ 11] [ 6] [268448] +11:21:57 [ 12] [ 6] [112104] +11:21:57 [ 13] [ 4] [0320] +11:21:57 [ 14] [ 4] [4912] +11:21:57 [ 15] [ 4] [0320] +11:21:57 [ 18] [ 4] [6011] +11:21:57 [ 19] [ 3] [418] +11:21:57 [ 22] [ 3] [021] +11:21:57 [ 25] [ 2] [01] +11:21:57 [ 28] [ 9] [D00002000] +11:21:57 [ 32] [ 6] [180893] +11:21:57 [ 35] [ 32] [6213541000043318=491212014331307] +11:21:57 [ 37] [ 12] [507904268448] +11:21:57 [ 41] [ 8] [0529LPBF] +11:21:57 [ 42] [ 15] [999999 ] +11:21:57 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:21:57 [ 49] [ 3] [418] +11:21:57 [ 52] [ 16] [24525ABD38082C73] +11:21:57 ============================================================================ +11:21:57 + + +waiting on router queue for slot.... +11:21:57 Sending to : +11:21:57 ============================================================================ +11:21:57 Sending to : +11:21:57 ============================================================================ +11:21:57 ============================================================================ +11:21:57 Slot Id : <146> +11:21:57 Transaction Type : REQUEST +11:21:57 Received From : +11:21:57 ============================================================================ +11:21:57 FNo. Len. Field Value +11:21:57 ============================================================================ +11:21:57 [ 1] [ 4] [0200] +11:21:57 [ 2] [ 16] [6213541000043318] +11:21:57 [ 3] [ 6] [010000] +11:21:57 [ 4] [ 12] [000150000000] +11:21:57 [ 7] [ 10] [0320042104] +11:21:57 [ 11] [ 6] [268448] +11:21:57 [ 12] [ 6] [112104] +11:21:57 [ 13] [ 4] [0320] +11:21:57 [ 14] [ 4] [4912] +11:21:57 [ 15] [ 4] [0320] +11:21:57 [ 18] [ 4] [6011] +11:21:57 [ 19] [ 3] [418] +11:21:57 [ 22] [ 3] [021] +11:21:57 [ 25] [ 2] [01] +11:21:57 [ 28] [ 9] [D00002000] +11:21:57 [ 32] [ 6] [180893] +11:21:57 [ 35] [ 32] [6213541000043318=491212014331307] +11:21:57 [ 37] [ 12] [507904268448] +11:21:57 [ 41] [ 8] [0529LPBF] +11:21:57 [ 42] [ 15] [999999 ] +11:21:57 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:21:57 [ 49] [ 3] [418] +11:21:57 [ 52] [ 16] [24525ABD38082C73] +11:21:57 ============================================================================ +11:21:57 + + +waiting on router queue for slot.... +11:21:57 Sending to : +11:21:57 ============================================================================ +11:21:57 ============================================================================ +11:21:57 Slot Id : <146> +11:21:57 Transaction Type : REQUEST +11:21:57 Received From : +11:21:57 ============================================================================ +11:21:57 FNo. Len. Field Value +11:21:57 ============================================================================ +11:21:57 [ 1] [ 4] [0200] +11:21:57 [ 2] [ 16] [6213541000043318] +11:21:57 [ 3] [ 6] [010000] +11:21:57 [ 4] [ 12] [000150000000] +11:21:57 [ 7] [ 10] [0320042104] +11:21:57 [ 11] [ 6] [268448] +11:21:57 [ 12] [ 6] [112104] +11:21:57 [ 13] [ 4] [0320] +11:21:57 [ 14] [ 4] [4912] +11:21:57 [ 15] [ 4] [0320] +11:21:57 [ 18] [ 4] [6011] +11:21:57 [ 19] [ 3] [418] +11:21:57 [ 22] [ 3] [021] +11:21:57 [ 25] [ 2] [01] +11:21:57 [ 28] [ 9] [D00002000] +11:21:57 [ 32] [ 6] [180893] +11:21:57 [ 35] [ 32] [6213541000043318=491212014331307] +11:21:57 [ 37] [ 12] [507904268448] +11:21:57 [ 41] [ 8] [0529LPBF] +11:21:57 [ 42] [ 15] [999999 ] +11:21:57 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:21:57 [ 49] [ 3] [418] +11:21:57 [ 52] [ 16] [E483D1EAEF02AC95] +11:21:57 ============================================================================ +11:21:57 + + +waiting on router queue for slot.... +11:21:57 Sending to : <0> +11:21:57 ============================================================================ +11:21:58 ============================================================================ +11:21:58 Slot Id : <146> +11:21:58 Transaction Type : RESPONSE +11:21:58 Received From : +11:21:58 ============================================================================ +11:21:58 FNo. Len. Field Value +11:21:58 ============================================================================ +11:21:58 [ 1] [ 4] [0210] +11:21:58 [ 2] [ 16] [6213541000043318] +11:21:58 [ 3] [ 6] [010000] +11:21:58 [ 4] [ 12] [000150000000] +11:21:58 [ 7] [ 10] [0320042104] +11:21:58 [ 11] [ 6] [268448] +11:21:58 [ 12] [ 6] [112104] +11:21:58 [ 13] [ 4] [0320] +11:21:58 [ 15] [ 4] [0320] +11:21:58 [ 18] [ 4] [6011] +11:21:58 [ 19] [ 3] [418] +11:21:58 [ 22] [ 3] [021] +11:21:58 [ 32] [ 6] [180893] +11:21:58 [ 35] [ 32] [6213541000043318=491212014331307] +11:21:58 [ 37] [ 12] [507904268448] +11:21:58 [ 39] [ 2] [61] +11:21:58 [ 41] [ 8] [0529LPBF] +11:21:58 [ 49] [ 3] [418] +11:21:58 ============================================================================ +11:21:58 Sending to : +11:21:58 ============================================================================ +11:21:58 + + +waiting on router queue for slot.... +11:22:00 ============================================================================ +11:22:00 Slot Id : <146> +11:22:00 Transaction Type : RESPONSE +11:22:00 Received From : +11:22:00 ============================================================================ +11:22:00 FNo. Len. Field Value +11:22:00 ============================================================================ +11:22:00 [ 1] [ 4] [0210] +11:22:00 [ 2] [ 16] [6213541000043318] +11:22:00 [ 3] [ 6] [010000] +11:22:00 [ 4] [ 12] [000150000000] +11:22:00 [ 7] [ 10] [0320042104] +11:22:00 [ 11] [ 6] [268448] +11:22:00 [ 12] [ 6] [112104] +11:22:00 [ 13] [ 4] [0320] +11:22:00 [ 15] [ 4] [0320] +11:22:00 [ 18] [ 4] [6011] +11:22:00 [ 19] [ 3] [418] +11:22:00 [ 22] [ 3] [021] +11:22:00 [ 32] [ 6] [180893] +11:22:00 [ 35] [ 32] [6213541000043318=491212014331307] +11:22:00 [ 37] [ 12] [507904268448] +11:22:00 [ 39] [ 2] [61] +11:22:00 [ 41] [ 8] [0529LPBF] +11:22:00 [ 49] [ 3] [418] +11:22:00 ============================================================================ +11:22:00 Calculate Source COMM Id = 2 +11:22:00 ============================================================================ +11:22:00 + + +waiting on router queue for slot.... +11:22:06 ============================================================================ +11:22:06 Slot Id : <141> +11:22:06 Transaction Type : REQUEST +11:22:06 Received From : +11:22:06 ============================================================================ +11:22:06 FNo. Len. Field Value +11:22:06 ============================================================================ +11:22:06 [ 1] [ 4] [0200] +11:22:06 [ 2] [ 16] [6213544000194313] +11:22:06 [ 3] [ 6] [012000] +11:22:06 [ 4] [ 12] [000030000000] +11:22:06 [ 7] [ 10] [0320042113] +11:22:06 [ 11] [ 6] [268450] +11:22:06 [ 12] [ 6] [112113] +11:22:06 [ 13] [ 4] [0320] +11:22:06 [ 14] [ 4] [4912] +11:22:06 [ 15] [ 4] [0320] +11:22:06 [ 18] [ 4] [6011] +11:22:06 [ 19] [ 3] [418] +11:22:06 [ 22] [ 3] [021] +11:22:06 [ 25] [ 2] [01] +11:22:06 [ 28] [ 9] [D00002000] +11:22:06 [ 32] [ 6] [180893] +11:22:06 [ 35] [ 32] [6213544000194313=491212019431388] +11:22:06 [ 37] [ 12] [507904268450] +11:22:06 [ 41] [ 8] [0363CPSH] +11:22:06 [ 42] [ 15] [999999 ] +11:22:06 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:22:06 [ 49] [ 3] [418] +11:22:06 [ 52] [ 16] [D71E8BE03FB5FC70] +11:22:06 ============================================================================ +11:22:06 + + +waiting on router queue for slot.... +11:22:06 Sending to : +11:22:06 ============================================================================ +11:22:06 Sending to : +11:22:06 ============================================================================ +11:22:07 ============================================================================ +11:22:07 Slot Id : <141> +11:22:07 Transaction Type : REQUEST +11:22:07 Received From : +11:22:07 ============================================================================ +11:22:07 FNo. Len. Field Value +11:22:07 ============================================================================ +11:22:07 [ 1] [ 4] [0200] +11:22:07 [ 2] [ 16] [6213544000194313] +11:22:07 [ 3] [ 6] [012000] +11:22:07 [ 4] [ 12] [000030000000] +11:22:07 [ 7] [ 10] [0320042113] +11:22:07 [ 11] [ 6] [268450] +11:22:07 [ 12] [ 6] [112113] +11:22:07 [ 13] [ 4] [0320] +11:22:07 [ 14] [ 4] [4912] +11:22:07 [ 15] [ 4] [0320] +11:22:07 [ 18] [ 4] [6011] +11:22:07 [ 19] [ 3] [418] +11:22:07 [ 22] [ 3] [021] +11:22:07 [ 25] [ 2] [01] +11:22:07 [ 28] [ 9] [D00002000] +11:22:07 [ 32] [ 6] [180893] +11:22:07 [ 35] [ 32] [6213544000194313=491212019431388] +11:22:07 [ 37] [ 12] [507904268450] +11:22:07 [ 41] [ 8] [0363CPSH] +11:22:07 [ 42] [ 15] [999999 ] +11:22:07 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:22:07 [ 49] [ 3] [418] +11:22:07 [ 52] [ 16] [D71E8BE03FB5FC70] +11:22:07 ============================================================================ +11:22:07 + + +waiting on router queue for slot.... +11:22:07 Sending to : +11:22:07 ============================================================================ +11:22:07 ============================================================================ +11:22:07 Slot Id : <141> +11:22:07 Transaction Type : REQUEST +11:22:07 Received From : +11:22:07 ============================================================================ +11:22:07 FNo. Len. Field Value +11:22:07 ============================================================================ +11:22:07 [ 1] [ 4] [0200] +11:22:07 [ 2] [ 16] [6213544000194313] +11:22:07 [ 3] [ 6] [012000] +11:22:07 [ 4] [ 12] [000030000000] +11:22:07 [ 7] [ 10] [0320042113] +11:22:07 [ 11] [ 6] [268450] +11:22:07 [ 12] [ 6] [112113] +11:22:07 [ 13] [ 4] [0320] +11:22:07 [ 14] [ 4] [4912] +11:22:07 [ 15] [ 4] [0320] +11:22:07 [ 18] [ 4] [6011] +11:22:07 [ 19] [ 3] [418] +11:22:07 [ 22] [ 3] [021] +11:22:07 [ 25] [ 2] [01] +11:22:07 [ 28] [ 9] [D00002000] +11:22:07 [ 32] [ 6] [180893] +11:22:07 [ 35] [ 32] [6213544000194313=491212019431388] +11:22:07 [ 37] [ 12] [507904268450] +11:22:07 [ 41] [ 8] [0363CPSH] +11:22:07 [ 42] [ 15] [999999 ] +11:22:07 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:22:07 [ 49] [ 3] [418] +11:22:07 [ 52] [ 16] [A8A4CCC4907C0906] +11:22:07 ============================================================================ +11:22:07 + + +waiting on router queue for slot.... +11:22:07 Sending to : <0> +11:22:07 ============================================================================ +11:22:07 ============================================================================ +11:22:07 Slot Id : <170> +11:22:07 Transaction Type : REQUEST +11:22:07 Received From : +11:22:07 ============================================================================ +11:22:07 FNo. Len. Field Value +11:22:07 ============================================================================ +11:22:07 [ 1] [ 4] [0200] +11:22:07 [ 2] [ 16] [6213545000118624] +11:22:07 [ 3] [ 6] [010000] +11:22:07 [ 4] [ 12] [000035000000] +11:22:07 [ 7] [ 10] [0320111958] +11:22:07 [ 11] [ 6] [941039] +11:22:07 [ 12] [ 6] [111958] +11:22:07 [ 13] [ 4] [0320] +11:22:07 [ 15] [ 4] [0320] +11:22:07 [ 18] [ 4] [6011] +11:22:07 [ 19] [ 3] [418] +11:22:07 [ 22] [ 3] [021] +11:22:07 [ 25] [ 2] [01] +11:22:07 [ 28] [ 9] [D00002000] +11:22:07 [ 32] [ 6] [668899] +11:22:07 [ 35] [ 32] [6213545000118624=491212011862685] +11:22:07 [ 37] [ 12] [507900844887] +11:22:07 [ 41] [ 8] [03015003] +11:22:07 [ 42] [ 15] [APT ] +11:22:07 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +11:22:07 [ 49] [ 3] [418] +11:22:07 [ 52] [ 16] [28E55206DD5CA96B] +11:22:07 ============================================================================ +11:22:07 + + +waiting on router queue for slot.... +11:22:07 Sending to : +11:22:07 ============================================================================ +11:22:07 Sending to : +11:22:07 ============================================================================ +11:22:07 ============================================================================ +11:22:07 Slot Id : <170> +11:22:07 Transaction Type : REQUEST +11:22:07 Received From : +11:22:07 ============================================================================ +11:22:07 FNo. Len. Field Value +11:22:07 ============================================================================ +11:22:07 [ 1] [ 4] [0200] +11:22:07 [ 2] [ 16] [6213545000118624] +11:22:07 [ 3] [ 6] [010000] +11:22:07 [ 4] [ 12] [000035000000] +11:22:07 [ 7] [ 10] [0320111958] +11:22:07 [ 11] [ 6] [941039] +11:22:07 [ 12] [ 6] [111958] +11:22:07 [ 13] [ 4] [0320] +11:22:07 [ 15] [ 4] [0320] +11:22:07 [ 18] [ 4] [6011] +11:22:07 [ 19] [ 3] [418] +11:22:07 [ 22] [ 3] [021] +11:22:07 [ 25] [ 2] [01] +11:22:07 [ 28] [ 9] [D00002000] +11:22:07 [ 32] [ 6] [668899] +11:22:07 [ 35] [ 32] [6213545000118624=491212011862685] +11:22:07 [ 37] [ 12] [507900844887] +11:22:07 [ 41] [ 8] [03015003] +11:22:07 [ 42] [ 15] [APT ] +11:22:07 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +11:22:07 [ 49] [ 3] [418] +11:22:07 [ 52] [ 16] [28E55206DD5CA96B] +11:22:07 ============================================================================ +11:22:07 + + +waiting on router queue for slot.... +11:22:07 Sending to : +11:22:07 ============================================================================ +11:22:07 ============================================================================ +11:22:07 Slot Id : <170> +11:22:07 Transaction Type : REQUEST +11:22:07 Received From : +11:22:07 ============================================================================ +11:22:07 FNo. Len. Field Value +11:22:07 ============================================================================ +11:22:07 [ 1] [ 4] [0200] +11:22:07 [ 2] [ 16] [6213545000118624] +11:22:07 [ 3] [ 6] [010000] +11:22:07 [ 4] [ 12] [000035000000] +11:22:07 [ 7] [ 10] [0320111958] +11:22:07 [ 11] [ 6] [941039] +11:22:07 [ 12] [ 6] [111958] +11:22:07 [ 13] [ 4] [0320] +11:22:07 [ 15] [ 4] [0320] +11:22:07 [ 18] [ 4] [6011] +11:22:07 [ 19] [ 3] [418] +11:22:07 [ 22] [ 3] [021] +11:22:07 [ 25] [ 2] [01] +11:22:07 [ 28] [ 9] [D00002000] +11:22:07 [ 32] [ 6] [668899] +11:22:07 [ 35] [ 32] [6213545000118624=491212011862685] +11:22:07 [ 37] [ 12] [507900844887] +11:22:07 [ 41] [ 8] [03015003] +11:22:07 [ 42] [ 15] [APT ] +11:22:07 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +11:22:07 [ 49] [ 3] [418] +11:22:07 [ 52] [ 16] [6FDFB232DA6E9E21] +11:22:07 ============================================================================ +11:22:07 + + +waiting on router queue for slot.... +11:22:07 Sending to : <0> +11:22:07 ============================================================================ +11:22:08 ============================================================================ +11:22:08 Slot Id : <141> +11:22:08 Transaction Type : RESPONSE +11:22:08 Received From : +11:22:08 ============================================================================ +11:22:08 FNo. Len. Field Value +11:22:08 ============================================================================ +11:22:08 [ 1] [ 4] [0210] +11:22:08 [ 2] [ 16] [6213544000194313] +11:22:08 [ 3] [ 6] [012000] +11:22:08 [ 4] [ 12] [000030000000] +11:22:08 [ 7] [ 10] [0320042113] +11:22:08 [ 11] [ 6] [268450] +11:22:08 [ 12] [ 6] [112113] +11:22:08 [ 13] [ 4] [0320] +11:22:08 [ 15] [ 4] [0320] +11:22:08 [ 18] [ 4] [6011] +11:22:08 [ 19] [ 3] [418] +11:22:08 [ 32] [ 6] [180893] +11:22:08 [ 35] [ 32] [6213544000194313=491212019431388] +11:22:08 [ 37] [ 12] [507904268450] +11:22:08 [ 38] [ 6] [214585] +11:22:08 [ 39] [ 2] [00] +11:22:08 [ 41] [ 8] [0363CPSH] +11:22:08 [ 49] [ 3] [418] +11:22:08 [ 54] [ 40] [2001418C0000816025342002418C000081602534] +11:22:08 ============================================================================ +11:22:08 Sending to : +11:22:08 ============================================================================ +11:22:08 + + +waiting on router queue for slot.... +11:22:08 ============================================================================ +11:22:08 Slot Id : <170> +11:22:08 Transaction Type : RESPONSE +11:22:08 Received From : +11:22:08 ============================================================================ +11:22:08 FNo. Len. Field Value +11:22:08 ============================================================================ +11:22:08 [ 1] [ 4] [0210] +11:22:08 [ 2] [ 16] [6213545000118624] +11:22:08 [ 3] [ 6] [010000] +11:22:08 [ 4] [ 12] [000035000000] +11:22:08 [ 7] [ 10] [0320111958] +11:22:08 [ 11] [ 6] [941039] +11:22:08 [ 12] [ 6] [111958] +11:22:08 [ 13] [ 4] [0320] +11:22:08 [ 15] [ 4] [0320] +11:22:08 [ 18] [ 4] [6011] +11:22:08 [ 19] [ 3] [418] +11:22:08 [ 32] [ 6] [668899] +11:22:08 [ 35] [ 32] [6213545000118624=491212011862685] +11:22:08 [ 37] [ 12] [507900844887] +11:22:08 [ 38] [ 6] [647800] +11:22:08 [ 39] [ 2] [00] +11:22:08 [ 41] [ 8] [03015003] +11:22:08 [ 49] [ 3] [418] +11:22:08 [ 54] [ 40] [0001418C0000071496570002418C000007149657] +11:22:08 ============================================================================ +11:22:08 Sending to : +11:22:08 ============================================================================ +11:22:08 + + +waiting on router queue for slot.... +11:22:09 ============================================================================ +11:22:09 Slot Id : <141> +11:22:09 Transaction Type : RESPONSE +11:22:09 Received From : +11:22:09 ============================================================================ +11:22:09 FNo. Len. Field Value +11:22:09 ============================================================================ +11:22:09 [ 1] [ 4] [0210] +11:22:09 [ 2] [ 16] [6213544000194313] +11:22:09 [ 3] [ 6] [012000] +11:22:09 [ 4] [ 12] [000030000000] +11:22:09 [ 7] [ 10] [0320042113] +11:22:09 [ 11] [ 6] [268450] +11:22:09 [ 12] [ 6] [112113] +11:22:09 [ 13] [ 4] [0320] +11:22:09 [ 15] [ 4] [0320] +11:22:09 [ 18] [ 4] [6011] +11:22:09 [ 19] [ 3] [418] +11:22:09 [ 32] [ 6] [180893] +11:22:09 [ 35] [ 32] [6213544000194313=491212019431388] +11:22:09 [ 37] [ 12] [507904268450] +11:22:09 [ 38] [ 6] [214585] +11:22:09 [ 39] [ 2] [00] +11:22:09 [ 41] [ 8] [0363CPSH] +11:22:09 [ 49] [ 3] [418] +11:22:09 [ 54] [ 40] [2001418C0000816025342002418C000081602534] +11:22:09 ============================================================================ +11:22:09 Calculate Source COMM Id = 2 +11:22:09 ============================================================================ +11:22:09 + + +waiting on router queue for slot.... +11:22:11 ============================================================================ +11:22:11 Slot Id : <170> +11:22:11 Transaction Type : RESPONSE +11:22:11 Received From : +11:22:11 ============================================================================ +11:22:11 FNo. Len. Field Value +11:22:11 ============================================================================ +11:22:11 [ 1] [ 4] [0210] +11:22:11 [ 2] [ 16] [6213545000118624] +11:22:11 [ 3] [ 6] [010000] +11:22:11 [ 4] [ 12] [000035000000] +11:22:11 [ 7] [ 10] [0320111958] +11:22:11 [ 11] [ 6] [941039] +11:22:11 [ 12] [ 6] [111958] +11:22:11 [ 13] [ 4] [0320] +11:22:11 [ 15] [ 4] [0320] +11:22:11 [ 18] [ 4] [6011] +11:22:11 [ 19] [ 3] [418] +11:22:11 [ 32] [ 6] [668899] +11:22:11 [ 35] [ 32] [6213545000118624=491212011862685] +11:22:11 [ 37] [ 12] [507900844887] +11:22:11 [ 38] [ 6] [647800] +11:22:11 [ 39] [ 2] [00] +11:22:11 [ 41] [ 8] [03015003] +11:22:11 [ 49] [ 3] [418] +11:22:11 [ 54] [ 40] [0001418C0000071496570002418C000007149657] +11:22:11 ============================================================================ +11:22:11 Calculate Source COMM Id = 4 +11:22:11 ============================================================================ +11:22:11 + + +waiting on router queue for slot.... +11:22:19 ============================================================================ +11:22:19 Slot Id : <151> +11:22:19 Transaction Type : REQUEST +11:22:19 Received From : +11:22:19 ============================================================================ +11:22:19 FNo. Len. Field Value +11:22:19 ============================================================================ +11:22:19 [ 1] [ 4] [0200] +11:22:19 [ 2] [ 16] [6213545000482301] +11:22:19 [ 3] [ 6] [012000] +11:22:19 [ 4] [ 12] [000100000000] +11:22:19 [ 7] [ 10] [0320113006] +11:22:19 [ 11] [ 6] [251157] +11:22:19 [ 12] [ 6] [113006] +11:22:19 [ 13] [ 4] [0320] +11:22:19 [ 14] [ 4] [4912] +11:22:19 [ 15] [ 4] [0320] +11:22:19 [ 18] [ 4] [6011] +11:22:19 [ 22] [ 3] [900] +11:22:19 [ 25] [ 2] [02] +11:22:19 [ 28] [ 9] [D00002000] +11:22:19 [ 32] [ 6] [220699] +11:22:19 [ 35] [ 32] [6213545000482301=491212018230940] +11:22:19 [ 37] [ 12] [507900336161] +11:22:19 [ 41] [ 8] [01001900] +11:22:19 [ 42] [ 15] [APTRA ] +11:22:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:22:19 [ 49] [ 3] [418] +11:22:19 [ 52] [ 16] [5B5E1D94937B6CE6] +11:22:19 ============================================================================ +11:22:19 + + +waiting on router queue for slot.... +11:22:19 Sending to : +11:22:19 ============================================================================ +11:22:19 Sending to : +11:22:19 ============================================================================ +11:22:19 ============================================================================ +11:22:19 Slot Id : <151> +11:22:19 Transaction Type : REQUEST +11:22:19 Received From : +11:22:19 ============================================================================ +11:22:19 FNo. Len. Field Value +11:22:19 ============================================================================ +11:22:19 [ 1] [ 4] [0200] +11:22:19 [ 2] [ 16] [6213545000482301] +11:22:19 [ 3] [ 6] [012000] +11:22:19 [ 4] [ 12] [000100000000] +11:22:19 [ 7] [ 10] [0320113006] +11:22:19 [ 11] [ 6] [251157] +11:22:19 [ 12] [ 6] [113006] +11:22:19 [ 13] [ 4] [0320] +11:22:19 [ 14] [ 4] [4912] +11:22:19 [ 15] [ 4] [0320] +11:22:19 [ 18] [ 4] [6011] +11:22:19 [ 22] [ 3] [900] +11:22:19 [ 25] [ 2] [02] +11:22:19 [ 28] [ 9] [D00002000] +11:22:19 [ 32] [ 6] [220699] +11:22:19 [ 35] [ 32] [6213545000482301=491212018230940] +11:22:19 [ 37] [ 12] [507900336161] +11:22:19 [ 41] [ 8] [01001900] +11:22:19 [ 42] [ 15] [APTRA ] +11:22:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:22:19 [ 49] [ 3] [418] +11:22:19 [ 52] [ 16] [5B5E1D94937B6CE6] +11:22:19 ============================================================================ +11:22:19 + + +waiting on router queue for slot.... +11:22:19 Sending to : +11:22:19 ============================================================================ +11:22:19 ============================================================================ +11:22:19 Slot Id : <151> +11:22:19 Transaction Type : REQUEST +11:22:19 Received From : +11:22:19 ============================================================================ +11:22:19 FNo. Len. Field Value +11:22:19 ============================================================================ +11:22:19 [ 1] [ 4] [0200] +11:22:19 [ 2] [ 16] [6213545000482301] +11:22:19 [ 3] [ 6] [012000] +11:22:19 [ 4] [ 12] [000100000000] +11:22:19 [ 7] [ 10] [0320113006] +11:22:19 [ 11] [ 6] [251157] +11:22:19 [ 12] [ 6] [113006] +11:22:19 [ 13] [ 4] [0320] +11:22:19 [ 14] [ 4] [4912] +11:22:19 [ 15] [ 4] [0320] +11:22:19 [ 18] [ 4] [6011] +11:22:19 [ 22] [ 3] [900] +11:22:19 [ 25] [ 2] [02] +11:22:19 [ 28] [ 9] [D00002000] +11:22:19 [ 32] [ 6] [220699] +11:22:19 [ 35] [ 32] [6213545000482301=491212018230940] +11:22:19 [ 37] [ 12] [507900336161] +11:22:19 [ 41] [ 8] [01001900] +11:22:19 [ 42] [ 15] [APTRA ] +11:22:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:22:19 [ 49] [ 3] [418] +11:22:19 [ 52] [ 16] [0BC3DDB7172DA0E2] +11:22:19 ============================================================================ +11:22:19 + + +waiting on router queue for slot.... +11:22:19 Sending to : <0> +11:22:19 ============================================================================ +11:22:19 ============================================================================ +11:22:19 Slot Id : <151> +11:22:19 Transaction Type : RESPONSE +11:22:19 Received From : +11:22:19 ============================================================================ +11:22:19 FNo. Len. Field Value +11:22:19 ============================================================================ +11:22:19 [ 1] [ 4] [0210] +11:22:19 [ 2] [ 16] [6213545000482301] +11:22:19 [ 3] [ 6] [012000] +11:22:19 [ 4] [ 12] [000100000000] +11:22:19 [ 7] [ 10] [0320113006] +11:22:19 [ 11] [ 6] [251157] +11:22:19 [ 12] [ 6] [113006] +11:22:19 [ 13] [ 4] [0320] +11:22:19 [ 15] [ 4] [0320] +11:22:19 [ 18] [ 4] [6011] +11:22:19 [ 32] [ 6] [220699] +11:22:19 [ 35] [ 32] [6213545000482301=491212018230940] +11:22:19 [ 37] [ 12] [507900336161] +11:22:19 [ 38] [ 6] [221381] +11:22:19 [ 39] [ 2] [00] +11:22:19 [ 41] [ 8] [01001900] +11:22:19 [ 49] [ 3] [418] +11:22:19 [ 54] [ 40] [2001418C0002390029912002418C000239002991] +11:22:19 ============================================================================ +11:22:19 Sending to : +11:22:19 ============================================================================ +11:22:19 + + +waiting on router queue for slot.... +11:22:21 ============================================================================ +11:22:21 Slot Id : <151> +11:22:21 Transaction Type : RESPONSE +11:22:21 Received From : +11:22:21 ============================================================================ +11:22:21 FNo. Len. Field Value +11:22:21 ============================================================================ +11:22:21 [ 1] [ 4] [0210] +11:22:21 [ 2] [ 16] [6213545000482301] +11:22:21 [ 3] [ 6] [012000] +11:22:21 [ 4] [ 12] [000100000000] +11:22:21 [ 7] [ 10] [0320113006] +11:22:21 [ 11] [ 6] [251157] +11:22:21 [ 12] [ 6] [113006] +11:22:21 [ 13] [ 4] [0320] +11:22:21 [ 15] [ 4] [0320] +11:22:21 [ 18] [ 4] [6011] +11:22:21 [ 32] [ 6] [220699] +11:22:21 [ 35] [ 32] [6213545000482301=491212018230940] +11:22:21 [ 37] [ 12] [507900336161] +11:22:21 [ 38] [ 6] [221381] +11:22:21 [ 39] [ 2] [00] +11:22:21 [ 41] [ 8] [01001900] +11:22:21 [ 49] [ 3] [418] +11:22:21 [ 54] [ 40] [2001418C0002390029912002418C000239002991] +11:22:21 ============================================================================ +11:22:21 Calculate Source COMM Id = 1 +11:22:21 ============================================================================ +11:22:21 + + +waiting on router queue for slot.... +11:22:22 ============================================================================ +11:22:22 Slot Id : <157> +11:22:22 Transaction Type : REQUEST +11:22:22 Received From : +11:22:22 ============================================================================ +11:22:22 FNo. Len. Field Value +11:22:22 ============================================================================ +11:22:22 [ 1] [ 4] [0800] +11:22:22 [ 7] [ 10] [0320042129] +11:22:22 [ 11] [ 6] [156073] +11:22:22 [ 70] [ 3] [301] +11:22:22 ============================================================================ +11:22:22 + + +waiting on router queue for slot.... +11:22:22 Sending to : +11:22:22 ============================================================================ +11:22:22 ============================================================================ +11:22:22 Slot Id : <157> +11:22:22 Transaction Type : RESPONSE +11:22:22 Received From : +11:22:22 ============================================================================ +11:22:22 FNo. Len. Field Value +11:22:22 ============================================================================ +11:22:22 [ 1] [ 4] [0810] +11:22:22 [ 7] [ 10] [0320042129] +11:22:22 [ 11] [ 6] [156073] +11:22:22 [ 39] [ 2] [00] +11:22:22 [ 70] [ 3] [301] +11:22:22 ============================================================================ +11:22:22 Calculate Source COMM Id = 2 +11:22:22 ============================================================================ +11:22:22 + + +waiting on router queue for slot.... +11:22:34 ============================================================================ +11:22:34 Slot Id : <172> +11:22:34 Transaction Type : REQUEST +11:22:34 Received From : +11:22:34 ============================================================================ +11:22:34 FNo. Len. Field Value +11:22:34 ============================================================================ +11:22:34 [ 1] [ 4] [0800] +11:22:34 [ 7] [ 10] [0320042140] +11:22:34 [ 11] [ 6] [156074] +11:22:34 [ 70] [ 3] [301] +11:22:34 ============================================================================ +11:22:34 + + +waiting on router queue for slot.... +11:22:34 Sending to : +11:22:34 ============================================================================ +11:22:34 ============================================================================ +11:22:34 Slot Id : <172> +11:22:34 Transaction Type : RESPONSE +11:22:34 Received From : +11:22:34 ============================================================================ +11:22:34 FNo. Len. Field Value +11:22:34 ============================================================================ +11:22:34 [ 1] [ 4] [0810] +11:22:34 [ 7] [ 10] [0320042140] +11:22:34 [ 11] [ 6] [156074] +11:22:34 [ 39] [ 2] [00] +11:22:34 [ 70] [ 3] [301] +11:22:34 ============================================================================ +11:22:34 Calculate Source COMM Id = 2 +11:22:34 ============================================================================ +11:22:34 + + +waiting on router queue for slot.... +11:22:34 ============================================================================ +11:22:34 Slot Id : <164> +11:22:34 Transaction Type : REQUEST +11:22:34 Received From : +11:22:34 ============================================================================ +11:22:34 FNo. Len. Field Value +11:22:34 ============================================================================ +11:22:34 [ 1] [ 4] [0200] +11:22:34 [ 2] [ 16] [6213541000043318] +11:22:34 [ 3] [ 6] [010000] +11:22:34 [ 4] [ 12] [000150000000] +11:22:34 [ 7] [ 10] [0320042139] +11:22:34 [ 11] [ 6] [268455] +11:22:34 [ 12] [ 6] [112139] +11:22:34 [ 13] [ 4] [0320] +11:22:34 [ 14] [ 4] [4912] +11:22:34 [ 15] [ 4] [0320] +11:22:34 [ 18] [ 4] [6011] +11:22:34 [ 19] [ 3] [418] +11:22:34 [ 22] [ 3] [021] +11:22:34 [ 25] [ 2] [01] +11:22:34 [ 28] [ 9] [D00002000] +11:22:34 [ 32] [ 6] [180893] +11:22:34 [ 35] [ 32] [6213541000043318=491212014331307] +11:22:34 [ 37] [ 12] [507904268455] +11:22:34 [ 41] [ 8] [0529LPBF] +11:22:34 [ 42] [ 15] [999999 ] +11:22:34 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:22:34 [ 49] [ 3] [418] +11:22:34 [ 52] [ 16] [24525ABD38082C73] +11:22:34 ============================================================================ +11:22:34 + + +waiting on router queue for slot.... +11:22:34 Sending to : +11:22:34 ============================================================================ +11:22:34 Sending to : +11:22:34 ============================================================================ +11:22:34 ============================================================================ +11:22:34 Slot Id : <164> +11:22:34 Transaction Type : REQUEST +11:22:34 Received From : +11:22:34 ============================================================================ +11:22:34 FNo. Len. Field Value +11:22:34 ============================================================================ +11:22:34 [ 1] [ 4] [0200] +11:22:34 [ 2] [ 16] [6213541000043318] +11:22:34 [ 3] [ 6] [010000] +11:22:34 [ 4] [ 12] [000150000000] +11:22:34 [ 7] [ 10] [0320042139] +11:22:34 [ 11] [ 6] [268455] +11:22:34 [ 12] [ 6] [112139] +11:22:34 [ 13] [ 4] [0320] +11:22:34 [ 14] [ 4] [4912] +11:22:34 [ 15] [ 4] [0320] +11:22:34 [ 18] [ 4] [6011] +11:22:34 [ 19] [ 3] [418] +11:22:34 [ 22] [ 3] [021] +11:22:34 [ 25] [ 2] [01] +11:22:34 [ 28] [ 9] [D00002000] +11:22:34 [ 32] [ 6] [180893] +11:22:34 [ 35] [ 32] [6213541000043318=491212014331307] +11:22:34 [ 37] [ 12] [507904268455] +11:22:34 [ 41] [ 8] [0529LPBF] +11:22:34 [ 42] [ 15] [999999 ] +11:22:34 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:22:34 [ 49] [ 3] [418] +11:22:34 [ 52] [ 16] [24525ABD38082C73] +11:22:34 ============================================================================ +11:22:34 + + +waiting on router queue for slot.... +11:22:34 Sending to : +11:22:34 ============================================================================ +11:22:34 ============================================================================ +11:22:34 Slot Id : <164> +11:22:34 Transaction Type : REQUEST +11:22:34 Received From : +11:22:34 ============================================================================ +11:22:34 FNo. Len. Field Value +11:22:34 ============================================================================ +11:22:34 [ 1] [ 4] [0200] +11:22:34 [ 2] [ 16] [6213541000043318] +11:22:34 [ 3] [ 6] [010000] +11:22:34 [ 4] [ 12] [000150000000] +11:22:34 [ 7] [ 10] [0320042139] +11:22:34 [ 11] [ 6] [268455] +11:22:34 [ 12] [ 6] [112139] +11:22:34 [ 13] [ 4] [0320] +11:22:34 [ 14] [ 4] [4912] +11:22:34 [ 15] [ 4] [0320] +11:22:34 [ 18] [ 4] [6011] +11:22:34 [ 19] [ 3] [418] +11:22:34 [ 22] [ 3] [021] +11:22:34 [ 25] [ 2] [01] +11:22:34 [ 28] [ 9] [D00002000] +11:22:34 [ 32] [ 6] [180893] +11:22:34 [ 35] [ 32] [6213541000043318=491212014331307] +11:22:34 [ 37] [ 12] [507904268455] +11:22:34 [ 41] [ 8] [0529LPBF] +11:22:34 [ 42] [ 15] [999999 ] +11:22:34 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:22:34 [ 49] [ 3] [418] +11:22:34 [ 52] [ 16] [E483D1EAEF02AC95] +11:22:34 ============================================================================ +11:22:34 + + +waiting on router queue for slot.... +11:22:34 Sending to : <0> +11:22:34 ============================================================================ +11:22:34 ============================================================================ +11:22:34 Slot Id : <164> +11:22:34 Transaction Type : RESPONSE +11:22:34 Received From : +11:22:34 ============================================================================ +11:22:34 FNo. Len. Field Value +11:22:34 ============================================================================ +11:22:34 [ 1] [ 4] [0210] +11:22:34 [ 2] [ 16] [6213541000043318] +11:22:34 [ 3] [ 6] [010000] +11:22:34 [ 4] [ 12] [000150000000] +11:22:34 [ 7] [ 10] [0320042139] +11:22:34 [ 11] [ 6] [268455] +11:22:34 [ 12] [ 6] [112139] +11:22:34 [ 13] [ 4] [0320] +11:22:34 [ 15] [ 4] [0320] +11:22:34 [ 18] [ 4] [6011] +11:22:34 [ 19] [ 3] [418] +11:22:34 [ 22] [ 3] [021] +11:22:34 [ 32] [ 6] [180893] +11:22:34 [ 35] [ 32] [6213541000043318=491212014331307] +11:22:34 [ 37] [ 12] [507904268455] +11:22:34 [ 39] [ 2] [61] +11:22:34 [ 41] [ 8] [0529LPBF] +11:22:34 [ 49] [ 3] [418] +11:22:34 ============================================================================ +11:22:34 Sending to : +11:22:34 ============================================================================ +11:22:34 + + +waiting on router queue for slot.... +11:22:35 ============================================================================ +11:22:35 Slot Id : <164> +11:22:35 Transaction Type : RESPONSE +11:22:35 Received From : +11:22:35 ============================================================================ +11:22:35 FNo. Len. Field Value +11:22:35 ============================================================================ +11:22:35 [ 1] [ 4] [0210] +11:22:35 [ 2] [ 16] [6213541000043318] +11:22:35 [ 3] [ 6] [010000] +11:22:35 [ 4] [ 12] [000150000000] +11:22:35 [ 7] [ 10] [0320042139] +11:22:35 [ 11] [ 6] [268455] +11:22:35 [ 12] [ 6] [112139] +11:22:35 [ 13] [ 4] [0320] +11:22:35 [ 15] [ 4] [0320] +11:22:35 [ 18] [ 4] [6011] +11:22:35 [ 19] [ 3] [418] +11:22:35 [ 22] [ 3] [021] +11:22:35 [ 32] [ 6] [180893] +11:22:35 [ 35] [ 32] [6213541000043318=491212014331307] +11:22:35 [ 37] [ 12] [507904268455] +11:22:35 [ 39] [ 2] [61] +11:22:35 [ 41] [ 8] [0529LPBF] +11:22:35 [ 49] [ 3] [418] +11:22:35 ============================================================================ +11:22:35 Calculate Source COMM Id = 2 +11:22:35 ============================================================================ +11:22:35 + + +waiting on router queue for slot.... +11:22:35 ============================================================================ +11:22:35 Slot Id : <148> +11:22:35 Transaction Type : REQUEST +11:22:35 Received From : +11:22:35 ============================================================================ +11:22:35 FNo. Len. Field Value +11:22:35 ============================================================================ +11:22:35 [ 1] [ 4] [0200] +11:22:35 [ 2] [ 16] [6213544002012497] +11:22:35 [ 3] [ 6] [010000] +11:22:35 [ 4] [ 12] [000010000000] +11:22:35 [ 7] [ 10] [0320112026] +11:22:35 [ 11] [ 6] [941053] +11:22:35 [ 12] [ 6] [112026] +11:22:35 [ 13] [ 4] [0320] +11:22:35 [ 15] [ 4] [0320] +11:22:35 [ 18] [ 4] [6011] +11:22:35 [ 19] [ 3] [418] +11:22:35 [ 22] [ 3] [021] +11:22:35 [ 25] [ 2] [01] +11:22:35 [ 28] [ 9] [D00002000] +11:22:35 [ 32] [ 6] [668899] +11:22:35 [ 35] [ 32] [6213544002012497=491212011249740] +11:22:35 [ 37] [ 12] [507901912158] +11:22:35 [ 41] [ 8] [03013004] +11:22:35 [ 42] [ 15] [APT ] +11:22:35 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +11:22:35 [ 49] [ 3] [418] +11:22:35 [ 52] [ 16] [5EF65F5060C2DF8D] +11:22:35 ============================================================================ +11:22:35 + + +waiting on router queue for slot.... +11:22:35 Sending to : +11:22:35 ============================================================================ +11:22:35 Sending to : +11:22:35 ============================================================================ +11:22:36 ============================================================================ +11:22:36 Slot Id : <126> +11:22:36 Transaction Type : REQUEST +11:22:36 Received From : +11:22:36 ============================================================================ +11:22:36 FNo. Len. Field Value +11:22:36 ============================================================================ +11:22:36 [ 1] [ 4] [0200] +11:22:36 [ 2] [ 16] [6688990103684708] +11:22:36 [ 3] [ 6] [010000] +11:22:36 [ 4] [ 12] [000100000000] +11:22:36 [ 7] [ 10] [0320112232] +11:22:36 [ 11] [ 6] [728402] +11:22:36 [ 12] [ 6] [112232] +11:22:36 [ 13] [ 4] [0320] +11:22:36 [ 15] [ 4] [0320] +11:22:36 [ 18] [ 4] [6011] +11:22:36 [ 22] [ 3] [900] +11:22:36 [ 25] [ 2] [02] +11:22:36 [ 28] [ 9] [D00002000] +11:22:36 [ 32] [ 6] [621354] +11:22:36 [ 35] [ 37] [6688990103684708=43011231470836200000] +11:22:36 [ 37] [ 12] [507903372885] +11:22:36 [ 41] [ 8] [13001700] +11:22:36 [ 42] [ 15] [NATIVE ] +11:22:36 [ 43] [ 40] [Khoun District Khoun LAO] +11:22:36 [ 49] [ 3] [418] +11:22:36 [ 52] [ 16] [4F8559568D2CC47F] +11:22:36 ============================================================================ +11:22:36 + + +waiting on router queue for slot.... +11:22:36 Sending to : +11:22:36 ============================================================================ +11:22:36 Sending to : +11:22:36 ============================================================================ +11:22:36 ============================================================================ +11:22:36 Slot Id : <148> +11:22:36 Transaction Type : REQUEST +11:22:36 Received From : +11:22:36 ============================================================================ +11:22:36 FNo. Len. Field Value +11:22:36 ============================================================================ +11:22:36 [ 1] [ 4] [0200] +11:22:36 [ 2] [ 16] [6213544002012497] +11:22:36 [ 3] [ 6] [010000] +11:22:36 [ 4] [ 12] [000010000000] +11:22:36 [ 7] [ 10] [0320112026] +11:22:36 [ 11] [ 6] [941053] +11:22:36 [ 12] [ 6] [112026] +11:22:36 [ 13] [ 4] [0320] +11:22:36 [ 15] [ 4] [0320] +11:22:36 [ 18] [ 4] [6011] +11:22:36 [ 19] [ 3] [418] +11:22:36 [ 22] [ 3] [021] +11:22:36 [ 25] [ 2] [01] +11:22:36 [ 28] [ 9] [D00002000] +11:22:36 [ 32] [ 6] [668899] +11:22:36 [ 35] [ 32] [6213544002012497=491212011249740] +11:22:36 [ 37] [ 12] [507901912158] +11:22:36 [ 41] [ 8] [03013004] +11:22:36 [ 42] [ 15] [APT ] +11:22:36 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +11:22:36 [ 49] [ 3] [418] +11:22:36 [ 52] [ 16] [5EF65F5060C2DF8D] +11:22:36 ============================================================================ +11:22:36 + + +waiting on router queue for slot.... +11:22:36 Sending to : +11:22:36 ============================================================================ +11:22:36 ============================================================================ +11:22:36 Slot Id : <148> +11:22:36 Transaction Type : REQUEST +11:22:36 Received From : +11:22:36 ============================================================================ +11:22:36 FNo. Len. Field Value +11:22:36 ============================================================================ +11:22:36 [ 1] [ 4] [0200] +11:22:36 [ 2] [ 16] [6213544002012497] +11:22:36 [ 3] [ 6] [010000] +11:22:36 [ 4] [ 12] [000010000000] +11:22:36 [ 7] [ 10] [0320112026] +11:22:36 [ 11] [ 6] [941053] +11:22:36 [ 12] [ 6] [112026] +11:22:36 [ 13] [ 4] [0320] +11:22:36 [ 15] [ 4] [0320] +11:22:36 [ 18] [ 4] [6011] +11:22:36 [ 19] [ 3] [418] +11:22:36 [ 22] [ 3] [021] +11:22:36 [ 25] [ 2] [01] +11:22:36 [ 28] [ 9] [D00002000] +11:22:36 [ 32] [ 6] [668899] +11:22:36 [ 35] [ 32] [6213544002012497=491212011249740] +11:22:36 [ 37] [ 12] [507901912158] +11:22:36 [ 41] [ 8] [03013004] +11:22:36 [ 42] [ 15] [APT ] +11:22:36 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +11:22:36 [ 49] [ 3] [418] +11:22:36 [ 52] [ 16] [BEA28BDF0B655865] +11:22:36 ============================================================================ +11:22:36 + + +waiting on router queue for slot.... +11:22:36 Sending to : <0> +11:22:36 ============================================================================ +11:22:36 ============================================================================ +11:22:36 Slot Id : <126> +11:22:36 Transaction Type : REQUEST +11:22:36 Received From : +11:22:36 ============================================================================ +11:22:36 FNo. Len. Field Value +11:22:36 ============================================================================ +11:22:36 [ 1] [ 4] [0200] +11:22:36 [ 2] [ 16] [6688990103684708] +11:22:36 [ 3] [ 6] [010000] +11:22:36 [ 4] [ 12] [000100000000] +11:22:36 [ 7] [ 10] [0320112232] +11:22:36 [ 11] [ 6] [728402] +11:22:36 [ 12] [ 6] [112232] +11:22:36 [ 13] [ 4] [0320] +11:22:36 [ 15] [ 4] [0320] +11:22:36 [ 18] [ 4] [6011] +11:22:36 [ 22] [ 3] [900] +11:22:36 [ 25] [ 2] [02] +11:22:36 [ 28] [ 9] [D00002000] +11:22:36 [ 32] [ 6] [621354] +11:22:36 [ 35] [ 37] [6688990103684708=43011231470836200000] +11:22:36 [ 37] [ 12] [507903372885] +11:22:36 [ 41] [ 8] [13001700] +11:22:36 [ 42] [ 15] [NATIVE ] +11:22:36 [ 43] [ 40] [Khoun District Khoun LAO] +11:22:36 [ 49] [ 3] [418] +11:22:36 [ 52] [ 16] [4F8559568D2CC47F] +11:22:36 ============================================================================ +11:22:36 + + +waiting on router queue for slot.... +11:22:36 Sending to : +11:22:36 ============================================================================ +11:22:36 ============================================================================ +11:22:36 Slot Id : <126> +11:22:36 Transaction Type : REQUEST +11:22:36 Received From : +11:22:36 ============================================================================ +11:22:36 FNo. Len. Field Value +11:22:36 ============================================================================ +11:22:36 [ 1] [ 4] [0200] +11:22:36 [ 2] [ 16] [6688990103684708] +11:22:36 [ 3] [ 6] [010000] +11:22:36 [ 4] [ 12] [000100000000] +11:22:36 [ 7] [ 10] [0320112232] +11:22:36 [ 11] [ 6] [728402] +11:22:36 [ 12] [ 6] [112232] +11:22:36 [ 13] [ 4] [0320] +11:22:36 [ 15] [ 4] [0320] +11:22:36 [ 18] [ 4] [6011] +11:22:36 [ 22] [ 3] [900] +11:22:36 [ 25] [ 2] [02] +11:22:36 [ 28] [ 9] [D00002000] +11:22:36 [ 32] [ 6] [621354] +11:22:36 [ 35] [ 37] [6688990103684708=43011231470836200000] +11:22:36 [ 37] [ 12] [507903372885] +11:22:36 [ 41] [ 8] [13001700] +11:22:36 [ 42] [ 15] [NATIVE ] +11:22:36 [ 43] [ 40] [Khoun District Khoun LAO] +11:22:36 [ 49] [ 3] [418] +11:22:36 [ 52] [ 16] [EEA2EF46828C9829] +11:22:36 ============================================================================ +11:22:36 + + +waiting on router queue for slot.... +11:22:36 Sending to : <4> +11:22:36 ============================================================================ +11:22:37 ============================================================================ +11:22:37 Slot Id : <148> +11:22:37 Transaction Type : RESPONSE +11:22:37 Received From : +11:22:37 ============================================================================ +11:22:37 FNo. Len. Field Value +11:22:37 ============================================================================ +11:22:37 [ 1] [ 4] [0210] +11:22:37 [ 2] [ 16] [6213544002012497] +11:22:37 [ 3] [ 6] [010000] +11:22:37 [ 4] [ 12] [000010000000] +11:22:37 [ 7] [ 10] [0320112026] +11:22:37 [ 11] [ 6] [941053] +11:22:37 [ 12] [ 6] [112026] +11:22:37 [ 13] [ 4] [0320] +11:22:37 [ 15] [ 4] [0320] +11:22:37 [ 18] [ 4] [6011] +11:22:37 [ 19] [ 3] [418] +11:22:37 [ 22] [ 3] [021] +11:22:37 [ 32] [ 6] [668899] +11:22:37 [ 35] [ 32] [6213544002012497=491212011249740] +11:22:37 [ 37] [ 12] [507901912158] +11:22:37 [ 38] [ 6] [112232] +11:22:37 [ 39] [ 2] [55] +11:22:37 [ 41] [ 8] [03013004] +11:22:37 [ 49] [ 3] [418] +11:22:37 ============================================================================ +11:22:37 Sending to : +11:22:37 ============================================================================ +11:22:37 + + +waiting on router queue for slot.... +11:22:37 ============================================================================ +11:22:37 Slot Id : <126> +11:22:37 Transaction Type : RESPONSE +11:22:37 Received From : +11:22:37 ============================================================================ +11:22:37 FNo. Len. Field Value +11:22:37 ============================================================================ +11:22:37 [ 1] [ 4] [0210] +11:22:37 [ 2] [ 16] [6688990103684708] +11:22:37 [ 3] [ 6] [010000] +11:22:37 [ 4] [ 12] [000100000000] +11:22:37 [ 11] [ 6] [728402] +11:22:37 [ 12] [ 6] [112232] +11:22:37 [ 15] [ 4] [0320] +11:22:37 [ 18] [ 4] [6011] +11:22:37 [ 32] [ 6] [621354] +11:22:37 [ 35] [ 37] [6688990103684708=43011231470836200000] +11:22:37 [ 37] [ 12] [507903372885] +11:22:37 [ 38] [ 6] [469064] +11:22:37 [ 39] [ 2] [00] +11:22:37 [ 41] [ 8] [13001700] +11:22:37 [ 49] [ 3] [418] +11:22:37 [ 54] [ 20] [0002418C000002701234] +11:22:37 ============================================================================ +11:22:37 Sending to : +11:22:37 ============================================================================ +11:22:37 + + +waiting on router queue for slot.... +11:22:37 ============================================================================ +11:22:37 Slot Id : <148> +11:22:37 Transaction Type : RESPONSE +11:22:37 Received From : +11:22:37 ============================================================================ +11:22:37 FNo. Len. Field Value +11:22:37 ============================================================================ +11:22:37 [ 1] [ 4] [0210] +11:22:37 [ 2] [ 16] [6213544002012497] +11:22:37 [ 3] [ 6] [010000] +11:22:37 [ 4] [ 12] [000010000000] +11:22:37 [ 7] [ 10] [0320112026] +11:22:37 [ 11] [ 6] [941053] +11:22:37 [ 12] [ 6] [112026] +11:22:37 [ 13] [ 4] [0320] +11:22:37 [ 15] [ 4] [0320] +11:22:37 [ 18] [ 4] [6011] +11:22:37 [ 19] [ 3] [418] +11:22:37 [ 22] [ 3] [021] +11:22:37 [ 32] [ 6] [668899] +11:22:37 [ 35] [ 32] [6213544002012497=491212011249740] +11:22:37 [ 37] [ 12] [507901912158] +11:22:37 [ 38] [ 6] [112232] +11:22:37 [ 39] [ 2] [55] +11:22:37 [ 41] [ 8] [03013004] +11:22:37 [ 49] [ 3] [418] +11:22:37 ============================================================================ +11:22:37 Calculate Source COMM Id = 4 +11:22:37 ============================================================================ +11:22:37 + + +waiting on router queue for slot.... +11:22:38 ============================================================================ +11:22:38 Slot Id : <186> +11:22:38 Transaction Type : REQUEST +11:22:38 Received From : +11:22:38 ============================================================================ +11:22:38 FNo. Len. Field Value +11:22:38 ============================================================================ +11:22:38 [ 1] [ 4] [0800] +11:22:38 [ 2] [ 5] [02531] +11:22:38 [ 3] [ 6] [579118] +11:22:38 [ 7] [ 10] [0320042238] +11:22:38 [ 11] [ 6] [807072] +11:22:38 [ 15] [ 10] [0320042238] +11:22:38 [ 37] [ 11] [57911807072] +11:22:38 [ 70] [ 3] [001] +11:22:38 ============================================================================ +11:22:38 + + +waiting on router queue for slot.... +11:22:38 ============================================================================ +11:22:38 Slot Id : <186> +11:22:38 Transaction Type : RESPONSE +11:22:38 Received From : +11:22:38 ============================================================================ +11:22:38 FNo. Len. Field Value +11:22:38 ============================================================================ +11:22:38 [ 1] [ 4] [0810] +11:22:38 [ 7] [ 10] [0320042238] +11:22:38 [ 11] [ 6] [807072] +11:22:38 [ 15] [ 4] [0320] +11:22:38 [ 37] [ 12] [57911807072] +11:22:38 [ 39] [ 2] [00] +11:22:38 [ 70] [ 3] [001] +11:22:38 ============================================================================ +11:22:38 Sending to : +11:22:38 ============================================================================ +11:22:38 + + +waiting on router queue for slot.... +11:22:39 ============================================================================ +11:22:39 Slot Id : <126> +11:22:39 Transaction Type : RESPONSE +11:22:39 Received From : +11:22:39 ============================================================================ +11:22:39 FNo. Len. Field Value +11:22:39 ============================================================================ +11:22:39 [ 1] [ 4] [0210] +11:22:39 [ 2] [ 16] [6688990103684708] +11:22:39 [ 3] [ 6] [010000] +11:22:39 [ 4] [ 12] [000100000000] +11:22:39 [ 11] [ 6] [728402] +11:22:39 [ 12] [ 6] [112232] +11:22:39 [ 15] [ 4] [0320] +11:22:39 [ 18] [ 4] [6011] +11:22:39 [ 32] [ 6] [621354] +11:22:39 [ 35] [ 37] [6688990103684708=43011231470836200000] +11:22:39 [ 37] [ 12] [507903372885] +11:22:39 [ 38] [ 6] [469064] +11:22:39 [ 39] [ 2] [00] +11:22:39 [ 41] [ 8] [13001700] +11:22:39 [ 49] [ 3] [418] +11:22:39 [ 54] [ 20] [0002418C000002701234] +11:22:39 ============================================================================ +11:22:39 Calculate Source COMM Id = 0 +11:22:39 ============================================================================ +11:22:39 + + +waiting on router queue for slot.... +11:22:49 ============================================================================ +11:22:49 Slot Id : <171> +11:22:49 Transaction Type : REQUEST +11:22:49 Received From : +11:22:49 ============================================================================ +11:22:49 FNo. Len. Field Value +11:22:49 ============================================================================ +11:22:49 [ 1] [ 4] [0800] +11:22:49 [ 7] [ 10] [0320042157] +11:22:49 [ 11] [ 6] [156075] +11:22:49 [ 70] [ 3] [301] +11:22:49 ============================================================================ +11:22:49 + + +waiting on router queue for slot.... +11:22:49 Sending to : +11:22:49 ============================================================================ +11:22:49 ============================================================================ +11:22:49 Slot Id : <171> +11:22:49 Transaction Type : RESPONSE +11:22:49 Received From : +11:22:49 ============================================================================ +11:22:49 FNo. Len. Field Value +11:22:49 ============================================================================ +11:22:49 [ 1] [ 4] [0810] +11:22:49 [ 7] [ 10] [0320042157] +11:22:49 [ 11] [ 6] [156075] +11:22:49 [ 39] [ 2] [00] +11:22:49 [ 70] [ 3] [301] +11:22:49 ============================================================================ +11:22:49 Calculate Source COMM Id = 2 +11:22:49 ============================================================================ +11:22:49 + + +waiting on router queue for slot.... +11:23:00 ============================================================================ +11:23:00 Slot Id : <119> +11:23:00 Transaction Type : REQUEST +11:23:00 Received From : +11:23:00 ============================================================================ +11:23:00 FNo. Len. Field Value +11:23:00 ============================================================================ +11:23:00 [ 1] [ 4] [0800] +11:23:00 [ 7] [ 10] [0320042208] +11:23:00 [ 11] [ 6] [156076] +11:23:00 [ 70] [ 3] [301] +11:23:00 ============================================================================ +11:23:00 + + +waiting on router queue for slot.... +11:23:00 Sending to : +11:23:00 ============================================================================ +11:23:00 ============================================================================ +11:23:00 Slot Id : <119> +11:23:00 Transaction Type : RESPONSE +11:23:00 Received From : +11:23:00 ============================================================================ +11:23:00 FNo. Len. Field Value +11:23:00 ============================================================================ +11:23:00 [ 1] [ 4] [0810] +11:23:00 [ 7] [ 10] [0320042208] +11:23:00 [ 11] [ 6] [156076] +11:23:00 [ 39] [ 2] [00] +11:23:00 [ 70] [ 3] [301] +11:23:00 ============================================================================ +11:23:00 Calculate Source COMM Id = 2 +11:23:00 ============================================================================ +11:23:00 + + +waiting on router queue for slot.... +11:23:12 ============================================================================ +11:23:12 Slot Id : <182> +11:23:12 Transaction Type : REQUEST +11:23:12 Received From : +11:23:12 ============================================================================ +11:23:12 FNo. Len. Field Value +11:23:12 ============================================================================ +11:23:12 [ 1] [ 4] [0800] +11:23:12 [ 7] [ 10] [0320042219] +11:23:12 [ 11] [ 6] [156077] +11:23:12 [ 70] [ 3] [301] +11:23:12 ============================================================================ +11:23:12 + + +waiting on router queue for slot.... +11:23:12 Sending to : +11:23:12 ============================================================================ +11:23:12 ============================================================================ +11:23:12 Slot Id : <182> +11:23:12 Transaction Type : RESPONSE +11:23:12 Received From : +11:23:12 ============================================================================ +11:23:12 FNo. Len. Field Value +11:23:12 ============================================================================ +11:23:12 [ 1] [ 4] [0810] +11:23:12 [ 7] [ 10] [0320042219] +11:23:12 [ 11] [ 6] [156077] +11:23:12 [ 39] [ 2] [00] +11:23:12 [ 70] [ 3] [301] +11:23:12 ============================================================================ +11:23:12 Calculate Source COMM Id = 2 +11:23:12 ============================================================================ +11:23:12 + + +waiting on router queue for slot.... +11:23:22 ============================================================================ +11:23:22 Slot Id : <139> +11:23:22 Transaction Type : REQUEST +11:23:22 Received From : +11:23:22 ============================================================================ +11:23:22 FNo. Len. Field Value +11:23:22 ============================================================================ +11:23:22 [ 1] [ 4] [0800] +11:23:22 [ 7] [ 10] [0320042230] +11:23:22 [ 11] [ 6] [156078] +11:23:22 [ 70] [ 3] [301] +11:23:22 ============================================================================ +11:23:22 + + +waiting on router queue for slot.... +11:23:22 Sending to : +11:23:22 ============================================================================ +11:23:22 ============================================================================ +11:23:22 Slot Id : <139> +11:23:22 Transaction Type : RESPONSE +11:23:22 Received From : +11:23:22 ============================================================================ +11:23:22 FNo. Len. Field Value +11:23:22 ============================================================================ +11:23:22 [ 1] [ 4] [0810] +11:23:22 [ 7] [ 10] [0320042230] +11:23:22 [ 11] [ 6] [156078] +11:23:22 [ 39] [ 2] [00] +11:23:22 [ 70] [ 3] [301] +11:23:22 ============================================================================ +11:23:22 Calculate Source COMM Id = 2 +11:23:22 ============================================================================ +11:23:22 + + +waiting on router queue for slot.... +11:23:24 ============================================================================ +11:23:24 Slot Id : <176> +11:23:24 Transaction Type : REQUEST +11:23:24 Received From : +11:23:24 ============================================================================ +11:23:24 FNo. Len. Field Value +11:23:24 ============================================================================ +11:23:24 [ 1] [ 4] [0200] +11:23:24 [ 2] [ 16] [6688990102723002] +11:23:24 [ 3] [ 6] [010000] +11:23:24 [ 4] [ 12] [000005000000] +11:23:24 [ 7] [ 10] [0320112320] +11:23:24 [ 11] [ 6] [728617] +11:23:24 [ 12] [ 6] [112320] +11:23:24 [ 13] [ 4] [0320] +11:23:24 [ 15] [ 4] [0320] +11:23:24 [ 18] [ 4] [6011] +11:23:24 [ 22] [ 3] [900] +11:23:24 [ 25] [ 2] [02] +11:23:24 [ 28] [ 9] [D00002000] +11:23:24 [ 32] [ 6] [621354] +11:23:24 [ 35] [ 37] [6688990102723002=42101231300243100000] +11:23:24 [ 37] [ 12] [507904707192] +11:23:24 [ 41] [ 8] [18000900] +11:23:24 [ 42] [ 15] [NATIVE ] +11:23:24 [ 43] [ 40] [Bounneau District Bounneua LAO] +11:23:24 [ 49] [ 3] [418] +11:23:24 [ 52] [ 16] [66FFBA06271D2155] +11:23:24 ============================================================================ +11:23:24 + + +waiting on router queue for slot.... +11:23:24 Sending to : +11:23:24 ============================================================================ +11:23:24 Sending to : +11:23:24 ============================================================================ +11:23:24 ============================================================================ +11:23:24 Slot Id : <176> +11:23:24 Transaction Type : REQUEST +11:23:24 Received From : +11:23:24 ============================================================================ +11:23:24 FNo. Len. Field Value +11:23:24 ============================================================================ +11:23:24 [ 1] [ 4] [0200] +11:23:24 [ 2] [ 16] [6688990102723002] +11:23:24 [ 3] [ 6] [010000] +11:23:24 [ 4] [ 12] [000005000000] +11:23:24 [ 7] [ 10] [0320112320] +11:23:24 [ 11] [ 6] [728617] +11:23:24 [ 12] [ 6] [112320] +11:23:24 [ 13] [ 4] [0320] +11:23:24 [ 15] [ 4] [0320] +11:23:24 [ 18] [ 4] [6011] +11:23:24 [ 22] [ 3] [900] +11:23:24 [ 25] [ 2] [02] +11:23:24 [ 28] [ 9] [D00002000] +11:23:24 [ 32] [ 6] [621354] +11:23:24 [ 35] [ 37] [6688990102723002=42101231300243100000] +11:23:24 [ 37] [ 12] [507904707192] +11:23:24 [ 41] [ 8] [18000900] +11:23:24 [ 42] [ 15] [NATIVE ] +11:23:24 [ 43] [ 40] [Bounneau District Bounneua LAO] +11:23:24 [ 49] [ 3] [418] +11:23:24 [ 52] [ 16] [66FFBA06271D2155] +11:23:24 ============================================================================ +11:23:24 + + +waiting on router queue for slot.... +11:23:24 Sending to : +11:23:24 ============================================================================ +11:23:25 ============================================================================ +11:23:25 Slot Id : <176> +11:23:25 Transaction Type : REQUEST +11:23:25 Received From : +11:23:25 ============================================================================ +11:23:25 FNo. Len. Field Value +11:23:25 ============================================================================ +11:23:25 [ 1] [ 4] [0200] +11:23:25 [ 2] [ 16] [6688990102723002] +11:23:25 [ 3] [ 6] [010000] +11:23:25 [ 4] [ 12] [000005000000] +11:23:25 [ 7] [ 10] [0320112320] +11:23:25 [ 11] [ 6] [728617] +11:23:25 [ 12] [ 6] [112320] +11:23:25 [ 13] [ 4] [0320] +11:23:25 [ 15] [ 4] [0320] +11:23:25 [ 18] [ 4] [6011] +11:23:25 [ 22] [ 3] [900] +11:23:25 [ 25] [ 2] [02] +11:23:25 [ 28] [ 9] [D00002000] +11:23:25 [ 32] [ 6] [621354] +11:23:25 [ 35] [ 37] [6688990102723002=42101231300243100000] +11:23:25 [ 37] [ 12] [507904707192] +11:23:25 [ 41] [ 8] [18000900] +11:23:25 [ 42] [ 15] [NATIVE ] +11:23:25 [ 43] [ 40] [Bounneau District Bounneua LAO] +11:23:25 [ 49] [ 3] [418] +11:23:25 [ 52] [ 16] [26BBF34B2F2A2AC2] +11:23:25 ============================================================================ +11:23:25 + + +waiting on router queue for slot.... +11:23:25 Sending to : <4> +11:23:25 ============================================================================ +11:23:25 ============================================================================ +11:23:25 Slot Id : <202> +11:23:25 Transaction Type : REQUEST +11:23:25 Received From : +11:23:25 ============================================================================ +11:23:25 FNo. Len. Field Value +11:23:25 ============================================================================ +11:23:25 [ 1] [ 4] [0200] +11:23:25 [ 2] [ 16] [6213544002012497] +11:23:25 [ 3] [ 6] [010000] +11:23:25 [ 4] [ 12] [000020000000] +11:23:25 [ 7] [ 10] [0320112116] +11:23:25 [ 11] [ 6] [941091] +11:23:25 [ 12] [ 6] [112116] +11:23:25 [ 13] [ 4] [0320] +11:23:25 [ 15] [ 4] [0320] +11:23:25 [ 18] [ 4] [6011] +11:23:25 [ 19] [ 3] [418] +11:23:25 [ 22] [ 3] [021] +11:23:25 [ 25] [ 2] [01] +11:23:25 [ 28] [ 9] [D00002000] +11:23:25 [ 32] [ 6] [668899] +11:23:25 [ 35] [ 32] [6213544002012497=491212011249740] +11:23:25 [ 37] [ 12] [507901912160] +11:23:25 [ 41] [ 8] [03013004] +11:23:25 [ 42] [ 15] [APT ] +11:23:25 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +11:23:25 [ 49] [ 3] [418] +11:23:25 [ 52] [ 16] [5EF65F5060C2DF8D] +11:23:25 ============================================================================ +11:23:25 + + +waiting on router queue for slot.... +11:23:25 Sending to : +11:23:25 ============================================================================ +11:23:25 Sending to : +11:23:25 ============================================================================ +11:23:25 ============================================================================ +11:23:25 Slot Id : <202> +11:23:25 Transaction Type : REQUEST +11:23:25 Received From : +11:23:25 ============================================================================ +11:23:25 FNo. Len. Field Value +11:23:25 ============================================================================ +11:23:25 [ 1] [ 4] [0200] +11:23:25 [ 2] [ 16] [6213544002012497] +11:23:25 [ 3] [ 6] [010000] +11:23:25 [ 4] [ 12] [000020000000] +11:23:25 [ 7] [ 10] [0320112116] +11:23:25 [ 11] [ 6] [941091] +11:23:25 [ 12] [ 6] [112116] +11:23:25 [ 13] [ 4] [0320] +11:23:25 [ 15] [ 4] [0320] +11:23:25 [ 18] [ 4] [6011] +11:23:25 [ 19] [ 3] [418] +11:23:25 [ 22] [ 3] [021] +11:23:25 [ 25] [ 2] [01] +11:23:25 [ 28] [ 9] [D00002000] +11:23:25 [ 32] [ 6] [668899] +11:23:25 [ 35] [ 32] [6213544002012497=491212011249740] +11:23:25 [ 37] [ 12] [507901912160] +11:23:25 [ 41] [ 8] [03013004] +11:23:25 [ 42] [ 15] [APT ] +11:23:25 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +11:23:25 [ 49] [ 3] [418] +11:23:25 [ 52] [ 16] [5EF65F5060C2DF8D] +11:23:25 ============================================================================ +11:23:25 + + +waiting on router queue for slot.... +11:23:25 Sending to : +11:23:25 ============================================================================ +11:23:25 ============================================================================ +11:23:25 Slot Id : <202> +11:23:25 Transaction Type : REQUEST +11:23:25 Received From : +11:23:25 ============================================================================ +11:23:25 FNo. Len. Field Value +11:23:25 ============================================================================ +11:23:25 [ 1] [ 4] [0200] +11:23:25 [ 2] [ 16] [6213544002012497] +11:23:25 [ 3] [ 6] [010000] +11:23:25 [ 4] [ 12] [000020000000] +11:23:25 [ 7] [ 10] [0320112116] +11:23:25 [ 11] [ 6] [941091] +11:23:25 [ 12] [ 6] [112116] +11:23:25 [ 13] [ 4] [0320] +11:23:25 [ 15] [ 4] [0320] +11:23:25 [ 18] [ 4] [6011] +11:23:25 [ 19] [ 3] [418] +11:23:25 [ 22] [ 3] [021] +11:23:25 [ 25] [ 2] [01] +11:23:25 [ 28] [ 9] [D00002000] +11:23:25 [ 32] [ 6] [668899] +11:23:25 [ 35] [ 32] [6213544002012497=491212011249740] +11:23:25 [ 37] [ 12] [507901912160] +11:23:25 [ 41] [ 8] [03013004] +11:23:25 [ 42] [ 15] [APT ] +11:23:25 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +11:23:25 [ 49] [ 3] [418] +11:23:25 [ 52] [ 16] [BEA28BDF0B655865] +11:23:25 ============================================================================ +11:23:25 + + +waiting on router queue for slot.... +11:23:25 Sending to : <0> +11:23:25 ============================================================================ +11:23:26 ============================================================================ +11:23:26 Slot Id : <176> +11:23:26 Transaction Type : RESPONSE +11:23:26 Received From : +11:23:26 ============================================================================ +11:23:26 FNo. Len. Field Value +11:23:26 ============================================================================ +11:23:26 [ 1] [ 4] [0210] +11:23:26 [ 2] [ 16] [6688990102723002] +11:23:26 [ 3] [ 6] [010000] +11:23:26 [ 4] [ 12] [000005000000] +11:23:26 [ 11] [ 6] [728617] +11:23:26 [ 12] [ 6] [112320] +11:23:26 [ 15] [ 4] [0320] +11:23:26 [ 18] [ 4] [6011] +11:23:26 [ 32] [ 6] [621354] +11:23:26 [ 35] [ 37] [6688990102723002=42101231300243100000] +11:23:26 [ 37] [ 12] [507904707192] +11:23:26 [ 38] [ 6] [856131] +11:23:26 [ 39] [ 2] [00] +11:23:26 [ 41] [ 8] [18000900] +11:23:26 [ 49] [ 3] [418] +11:23:26 [ 54] [ 20] [0002418C000545698068] +11:23:26 ============================================================================ +11:23:26 Sending to : +11:23:26 ============================================================================ +11:23:26 + + +waiting on router queue for slot.... +11:23:26 ============================================================================ +11:23:26 Slot Id : <202> +11:23:26 Transaction Type : RESPONSE +11:23:26 Received From : +11:23:26 ============================================================================ +11:23:26 FNo. Len. Field Value +11:23:26 ============================================================================ +11:23:26 [ 1] [ 4] [0210] +11:23:26 [ 2] [ 16] [6213544002012497] +11:23:26 [ 3] [ 6] [010000] +11:23:26 [ 4] [ 12] [000020000000] +11:23:26 [ 7] [ 10] [0320112116] +11:23:26 [ 11] [ 6] [941091] +11:23:26 [ 12] [ 6] [112116] +11:23:26 [ 13] [ 4] [0320] +11:23:26 [ 15] [ 4] [0320] +11:23:26 [ 18] [ 4] [6011] +11:23:26 [ 19] [ 3] [418] +11:23:26 [ 22] [ 3] [021] +11:23:26 [ 32] [ 6] [668899] +11:23:26 [ 35] [ 32] [6213544002012497=491212011249740] +11:23:26 [ 37] [ 12] [507901912160] +11:23:26 [ 38] [ 6] [112322] +11:23:26 [ 39] [ 2] [75] +11:23:26 [ 41] [ 8] [03013004] +11:23:26 [ 49] [ 3] [418] +11:23:26 ============================================================================ +11:23:26 Sending to : +11:23:26 ============================================================================ +11:23:26 + + +waiting on router queue for slot.... +11:23:27 ============================================================================ +11:23:27 Slot Id : <176> +11:23:27 Transaction Type : RESPONSE +11:23:27 Received From : +11:23:27 ============================================================================ +11:23:27 FNo. Len. Field Value +11:23:27 ============================================================================ +11:23:27 [ 1] [ 4] [0210] +11:23:27 [ 2] [ 16] [6688990102723002] +11:23:27 [ 3] [ 6] [010000] +11:23:27 [ 4] [ 12] [000005000000] +11:23:27 [ 11] [ 6] [728617] +11:23:27 [ 12] [ 6] [112320] +11:23:27 [ 15] [ 4] [0320] +11:23:27 [ 18] [ 4] [6011] +11:23:27 [ 32] [ 6] [621354] +11:23:27 [ 35] [ 37] [6688990102723002=42101231300243100000] +11:23:27 [ 37] [ 12] [507904707192] +11:23:27 [ 38] [ 6] [856131] +11:23:27 [ 39] [ 2] [00] +11:23:27 [ 41] [ 8] [18000900] +11:23:27 [ 49] [ 3] [418] +11:23:27 [ 54] [ 20] [0002418C000545698068] +11:23:27 ============================================================================ +11:23:27 Calculate Source COMM Id = 0 +11:23:27 ============================================================================ +11:23:27 + + +waiting on router queue for slot.... +11:23:29 ============================================================================ +11:23:29 Slot Id : <202> +11:23:29 Transaction Type : RESPONSE +11:23:29 Received From : +11:23:29 ============================================================================ +11:23:29 FNo. Len. Field Value +11:23:29 ============================================================================ +11:23:29 [ 1] [ 4] [0210] +11:23:29 [ 2] [ 16] [6213544002012497] +11:23:29 [ 3] [ 6] [010000] +11:23:29 [ 4] [ 12] [000020000000] +11:23:29 [ 7] [ 10] [0320112116] +11:23:29 [ 11] [ 6] [941091] +11:23:29 [ 12] [ 6] [112116] +11:23:29 [ 13] [ 4] [0320] +11:23:29 [ 15] [ 4] [0320] +11:23:29 [ 18] [ 4] [6011] +11:23:29 [ 19] [ 3] [418] +11:23:29 [ 22] [ 3] [021] +11:23:29 [ 32] [ 6] [668899] +11:23:29 [ 35] [ 32] [6213544002012497=491212011249740] +11:23:29 [ 37] [ 12] [507901912160] +11:23:29 [ 38] [ 6] [112322] +11:23:29 [ 39] [ 2] [75] +11:23:29 [ 41] [ 8] [03013004] +11:23:29 [ 49] [ 3] [418] +11:23:29 ============================================================================ +11:23:29 Calculate Source COMM Id = 4 +11:23:29 ============================================================================ +11:23:29 + + +waiting on router queue for slot.... +11:23:32 ============================================================================ +11:23:32 Slot Id : <160> +11:23:32 Transaction Type : REQUEST +11:23:32 Received From : +11:23:32 ============================================================================ +11:23:32 FNo. Len. Field Value +11:23:32 ============================================================================ +11:23:32 [ 1] [ 4] [0800] +11:23:32 [ 7] [ 10] [0320042240] +11:23:32 [ 11] [ 6] [156079] +11:23:32 [ 70] [ 3] [301] +11:23:32 ============================================================================ +11:23:32 + + +waiting on router queue for slot.... +11:23:32 Sending to : +11:23:32 ============================================================================ +11:23:32 ============================================================================ +11:23:32 Slot Id : <160> +11:23:32 Transaction Type : RESPONSE +11:23:32 Received From : +11:23:32 ============================================================================ +11:23:32 FNo. Len. Field Value +11:23:32 ============================================================================ +11:23:32 [ 1] [ 4] [0810] +11:23:32 [ 7] [ 10] [0320042240] +11:23:32 [ 11] [ 6] [156079] +11:23:32 [ 39] [ 2] [00] +11:23:32 [ 70] [ 3] [301] +11:23:32 ============================================================================ +11:23:32 Calculate Source COMM Id = 2 +11:23:32 ============================================================================ +11:23:32 + + +waiting on router queue for slot.... +11:23:36 ============================================================================ +11:23:36 Slot Id : <187> +11:23:36 Transaction Type : REQUEST +11:23:36 Received From : +11:23:36 ============================================================================ +11:23:36 FNo. Len. Field Value +11:23:36 ============================================================================ +11:23:36 [ 1] [ 4] [0200] +11:23:36 [ 2] [ 16] [6213545000558076] +11:23:36 [ 3] [ 6] [010000] +11:23:36 [ 4] [ 12] [000070000000] +11:23:36 [ 7] [ 10] [0320112127] +11:23:36 [ 11] [ 6] [941101] +11:23:36 [ 12] [ 6] [112127] +11:23:36 [ 13] [ 4] [0320] +11:23:36 [ 15] [ 4] [0320] +11:23:36 [ 18] [ 4] [6011] +11:23:36 [ 19] [ 3] [418] +11:23:36 [ 22] [ 3] [021] +11:23:36 [ 25] [ 2] [01] +11:23:36 [ 28] [ 9] [D00002000] +11:23:36 [ 32] [ 6] [668899] +11:23:36 [ 35] [ 32] [6213545000558076=491212015807608] +11:23:36 [ 37] [ 12] [507901963490] +11:23:36 [ 41] [ 8] [03020019] +11:23:36 [ 42] [ 15] [APT ] +11:23:36 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:23:36 [ 49] [ 3] [418] +11:23:36 [ 52] [ 16] [D3157C43ABB3674B] +11:23:36 ============================================================================ +11:23:36 + + +waiting on router queue for slot.... +11:23:36 Sending to : +11:23:36 ============================================================================ +11:23:36 Sending to : +11:23:36 ============================================================================ +11:23:36 ============================================================================ +11:23:36 Slot Id : <187> +11:23:36 Transaction Type : REQUEST +11:23:36 Received From : +11:23:36 ============================================================================ +11:23:36 FNo. Len. Field Value +11:23:36 ============================================================================ +11:23:36 [ 1] [ 4] [0200] +11:23:36 [ 2] [ 16] [6213545000558076] +11:23:36 [ 3] [ 6] [010000] +11:23:36 [ 4] [ 12] [000070000000] +11:23:36 [ 7] [ 10] [0320112127] +11:23:36 [ 11] [ 6] [941101] +11:23:36 [ 12] [ 6] [112127] +11:23:36 [ 13] [ 4] [0320] +11:23:36 [ 15] [ 4] [0320] +11:23:36 [ 18] [ 4] [6011] +11:23:36 [ 19] [ 3] [418] +11:23:36 [ 22] [ 3] [021] +11:23:36 [ 25] [ 2] [01] +11:23:36 [ 28] [ 9] [D00002000] +11:23:36 [ 32] [ 6] [668899] +11:23:36 [ 35] [ 32] [6213545000558076=491212015807608] +11:23:36 [ 37] [ 12] [507901963490] +11:23:36 [ 41] [ 8] [03020019] +11:23:36 [ 42] [ 15] [APT ] +11:23:36 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:23:36 [ 49] [ 3] [418] +11:23:36 [ 52] [ 16] [D3157C43ABB3674B] +11:23:36 ============================================================================ +11:23:36 + + +waiting on router queue for slot.... +11:23:36 Sending to : +11:23:36 ============================================================================ +11:23:36 ============================================================================ +11:23:36 Slot Id : <187> +11:23:36 Transaction Type : REQUEST +11:23:36 Received From : +11:23:36 ============================================================================ +11:23:36 FNo. Len. Field Value +11:23:36 ============================================================================ +11:23:36 [ 1] [ 4] [0200] +11:23:36 [ 2] [ 16] [6213545000558076] +11:23:36 [ 3] [ 6] [010000] +11:23:36 [ 4] [ 12] [000070000000] +11:23:36 [ 7] [ 10] [0320112127] +11:23:36 [ 11] [ 6] [941101] +11:23:36 [ 12] [ 6] [112127] +11:23:36 [ 13] [ 4] [0320] +11:23:36 [ 15] [ 4] [0320] +11:23:36 [ 18] [ 4] [6011] +11:23:36 [ 19] [ 3] [418] +11:23:36 [ 22] [ 3] [021] +11:23:36 [ 25] [ 2] [01] +11:23:36 [ 28] [ 9] [D00002000] +11:23:36 [ 32] [ 6] [668899] +11:23:36 [ 35] [ 32] [6213545000558076=491212015807608] +11:23:36 [ 37] [ 12] [507901963490] +11:23:36 [ 41] [ 8] [03020019] +11:23:36 [ 42] [ 15] [APT ] +11:23:36 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:23:36 [ 49] [ 3] [418] +11:23:36 [ 52] [ 16] [690F5EFC7AF3DF1A] +11:23:36 ============================================================================ +11:23:36 + + +waiting on router queue for slot.... +11:23:36 Sending to : <0> +11:23:36 ============================================================================ +11:23:37 ============================================================================ +11:23:37 Slot Id : <187> +11:23:37 Transaction Type : RESPONSE +11:23:37 Received From : +11:23:37 ============================================================================ +11:23:37 FNo. Len. Field Value +11:23:37 ============================================================================ +11:23:37 [ 1] [ 4] [0210] +11:23:37 [ 2] [ 16] [6213545000558076] +11:23:37 [ 3] [ 6] [010000] +11:23:37 [ 4] [ 12] [000070000000] +11:23:37 [ 7] [ 10] [0320112127] +11:23:37 [ 11] [ 6] [941101] +11:23:37 [ 12] [ 6] [112127] +11:23:37 [ 13] [ 4] [0320] +11:23:37 [ 15] [ 4] [0320] +11:23:37 [ 18] [ 4] [6011] +11:23:37 [ 19] [ 3] [418] +11:23:37 [ 32] [ 6] [668899] +11:23:37 [ 35] [ 32] [6213545000558076=491212015807608] +11:23:37 [ 37] [ 12] [507901963490] +11:23:37 [ 38] [ 6] [720023] +11:23:37 [ 39] [ 2] [00] +11:23:37 [ 41] [ 8] [03020019] +11:23:37 [ 49] [ 3] [418] +11:23:37 [ 54] [ 40] [0001418C0000451747230002418C000045174723] +11:23:37 ============================================================================ +11:23:37 Sending to : +11:23:37 ============================================================================ +11:23:37 + + +waiting on router queue for slot.... +11:23:39 ============================================================================ +11:23:39 Slot Id : <187> +11:23:39 Transaction Type : RESPONSE +11:23:39 Received From : +11:23:39 ============================================================================ +11:23:39 FNo. Len. Field Value +11:23:39 ============================================================================ +11:23:39 [ 1] [ 4] [0210] +11:23:39 [ 2] [ 16] [6213545000558076] +11:23:39 [ 3] [ 6] [010000] +11:23:39 [ 4] [ 12] [000070000000] +11:23:39 [ 7] [ 10] [0320112127] +11:23:39 [ 11] [ 6] [941101] +11:23:39 [ 12] [ 6] [112127] +11:23:39 [ 13] [ 4] [0320] +11:23:39 [ 15] [ 4] [0320] +11:23:39 [ 18] [ 4] [6011] +11:23:39 [ 19] [ 3] [418] +11:23:39 [ 32] [ 6] [668899] +11:23:39 [ 35] [ 32] [6213545000558076=491212015807608] +11:23:39 [ 37] [ 12] [507901963490] +11:23:39 [ 38] [ 6] [720023] +11:23:39 [ 39] [ 2] [00] +11:23:39 [ 41] [ 8] [03020019] +11:23:39 [ 49] [ 3] [418] +11:23:39 [ 54] [ 40] [0001418C0000451747230002418C000045174723] +11:23:39 ============================================================================ +11:23:39 Calculate Source COMM Id = 4 +11:23:39 ============================================================================ +11:23:39 + + +waiting on router queue for slot.... +11:23:40 ============================================================================ +11:23:40 Slot Id : <156> +11:23:40 Transaction Type : REQUEST +11:23:40 Received From : +11:23:40 ============================================================================ +11:23:40 FNo. Len. Field Value +11:23:40 ============================================================================ +11:23:40 [ 1] [ 4] [0800] +11:23:40 [ 2] [ 5] [02531] +11:23:40 [ 3] [ 6] [579118] +11:23:40 [ 7] [ 10] [0320042340] +11:23:40 [ 11] [ 6] [807073] +11:23:40 [ 15] [ 10] [0320042340] +11:23:40 [ 37] [ 11] [57911807073] +11:23:40 [ 70] [ 3] [001] +11:23:40 ============================================================================ +11:23:40 + + +waiting on router queue for slot.... +11:23:40 ============================================================================ +11:23:40 Slot Id : <156> +11:23:40 Transaction Type : RESPONSE +11:23:40 Received From : +11:23:40 ============================================================================ +11:23:40 FNo. Len. Field Value +11:23:40 ============================================================================ +11:23:40 [ 1] [ 4] [0810] +11:23:40 [ 7] [ 10] [0320042340] +11:23:40 [ 11] [ 6] [807073] +11:23:40 [ 15] [ 4] [0320] +11:23:40 [ 37] [ 12] [57911807073] +11:23:40 [ 39] [ 2] [00] +11:23:40 [ 70] [ 3] [001] +11:23:40 ============================================================================ +11:23:40 Sending to : +11:23:40 ============================================================================ +11:23:40 + + +waiting on router queue for slot.... +11:23:40 ============================================================================ +11:23:40 Slot Id : <203> +11:23:40 Transaction Type : REQUEST +11:23:40 Received From : +11:23:40 ============================================================================ +11:23:40 FNo. Len. Field Value +11:23:40 ============================================================================ +11:23:40 [ 1] [ 4] [0200] +11:23:40 [ 2] [ 16] [6213541000043318] +11:23:40 [ 3] [ 6] [010000] +11:23:40 [ 4] [ 12] [000100000000] +11:23:40 [ 7] [ 10] [0320042247] +11:23:40 [ 11] [ 6] [268463] +11:23:40 [ 12] [ 6] [112247] +11:23:40 [ 13] [ 4] [0320] +11:23:40 [ 14] [ 4] [4912] +11:23:40 [ 15] [ 4] [0320] +11:23:40 [ 18] [ 4] [6011] +11:23:40 [ 19] [ 3] [418] +11:23:40 [ 22] [ 3] [021] +11:23:40 [ 25] [ 2] [01] +11:23:40 [ 28] [ 9] [D00002000] +11:23:40 [ 32] [ 6] [180893] +11:23:40 [ 35] [ 32] [6213541000043318=491212014331307] +11:23:40 [ 37] [ 12] [507904268463] +11:23:40 [ 41] [ 8] [0529LPBF] +11:23:40 [ 42] [ 15] [999999 ] +11:23:40 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:23:40 [ 49] [ 3] [418] +11:23:40 [ 52] [ 16] [24525ABD38082C73] +11:23:40 ============================================================================ +11:23:40 + + +waiting on router queue for slot.... +11:23:40 Sending to : +11:23:40 ============================================================================ +11:23:40 Sending to : +11:23:40 ============================================================================ +11:23:41 ============================================================================ +11:23:41 Slot Id : <203> +11:23:41 Transaction Type : REQUEST +11:23:41 Received From : +11:23:41 ============================================================================ +11:23:41 FNo. Len. Field Value +11:23:41 ============================================================================ +11:23:41 [ 1] [ 4] [0200] +11:23:41 [ 2] [ 16] [6213541000043318] +11:23:41 [ 3] [ 6] [010000] +11:23:41 [ 4] [ 12] [000100000000] +11:23:41 [ 7] [ 10] [0320042247] +11:23:41 [ 11] [ 6] [268463] +11:23:41 [ 12] [ 6] [112247] +11:23:41 [ 13] [ 4] [0320] +11:23:41 [ 14] [ 4] [4912] +11:23:41 [ 15] [ 4] [0320] +11:23:41 [ 18] [ 4] [6011] +11:23:41 [ 19] [ 3] [418] +11:23:41 [ 22] [ 3] [021] +11:23:41 [ 25] [ 2] [01] +11:23:41 [ 28] [ 9] [D00002000] +11:23:41 [ 32] [ 6] [180893] +11:23:41 [ 35] [ 32] [6213541000043318=491212014331307] +11:23:41 [ 37] [ 12] [507904268463] +11:23:41 [ 41] [ 8] [0529LPBF] +11:23:41 [ 42] [ 15] [999999 ] +11:23:41 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:23:41 [ 49] [ 3] [418] +11:23:41 [ 52] [ 16] [24525ABD38082C73] +11:23:41 ============================================================================ +11:23:41 + + +waiting on router queue for slot.... +11:23:41 Sending to : +11:23:41 ============================================================================ +11:23:41 ============================================================================ +11:23:41 Slot Id : <203> +11:23:41 Transaction Type : REQUEST +11:23:41 Received From : +11:23:41 ============================================================================ +11:23:41 FNo. Len. Field Value +11:23:41 ============================================================================ +11:23:41 [ 1] [ 4] [0200] +11:23:41 [ 2] [ 16] [6213541000043318] +11:23:41 [ 3] [ 6] [010000] +11:23:41 [ 4] [ 12] [000100000000] +11:23:41 [ 7] [ 10] [0320042247] +11:23:41 [ 11] [ 6] [268463] +11:23:41 [ 12] [ 6] [112247] +11:23:41 [ 13] [ 4] [0320] +11:23:41 [ 14] [ 4] [4912] +11:23:41 [ 15] [ 4] [0320] +11:23:41 [ 18] [ 4] [6011] +11:23:41 [ 19] [ 3] [418] +11:23:41 [ 22] [ 3] [021] +11:23:41 [ 25] [ 2] [01] +11:23:41 [ 28] [ 9] [D00002000] +11:23:41 [ 32] [ 6] [180893] +11:23:41 [ 35] [ 32] [6213541000043318=491212014331307] +11:23:41 [ 37] [ 12] [507904268463] +11:23:41 [ 41] [ 8] [0529LPBF] +11:23:41 [ 42] [ 15] [999999 ] +11:23:41 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:23:41 [ 49] [ 3] [418] +11:23:41 [ 52] [ 16] [E483D1EAEF02AC95] +11:23:41 ============================================================================ +11:23:41 + + +waiting on router queue for slot.... +11:23:41 Sending to : <0> +11:23:41 ============================================================================ +11:23:42 ============================================================================ +11:23:42 Slot Id : <203> +11:23:42 Transaction Type : RESPONSE +11:23:42 Received From : +11:23:42 ============================================================================ +11:23:42 FNo. Len. Field Value +11:23:42 ============================================================================ +11:23:42 [ 1] [ 4] [0210] +11:23:42 [ 2] [ 16] [6213541000043318] +11:23:42 [ 3] [ 6] [010000] +11:23:42 [ 4] [ 12] [000100000000] +11:23:42 [ 7] [ 10] [0320042247] +11:23:42 [ 11] [ 6] [268463] +11:23:42 [ 12] [ 6] [112247] +11:23:42 [ 13] [ 4] [0320] +11:23:42 [ 15] [ 4] [0320] +11:23:42 [ 18] [ 4] [6011] +11:23:42 [ 19] [ 3] [418] +11:23:42 [ 32] [ 6] [180893] +11:23:42 [ 35] [ 32] [6213541000043318=491212014331307] +11:23:42 [ 37] [ 12] [507904268463] +11:23:42 [ 38] [ 6] [865937] +11:23:42 [ 39] [ 2] [00] +11:23:42 [ 41] [ 8] [0529LPBF] +11:23:42 [ 49] [ 3] [418] +11:23:42 [ 54] [ 40] [0001418C0000829530740002418C000082953074] +11:23:42 ============================================================================ +11:23:42 Sending to : +11:23:42 ============================================================================ +11:23:42 + + +waiting on router queue for slot.... +11:23:43 ============================================================================ +11:23:43 Slot Id : <203> +11:23:43 Transaction Type : RESPONSE +11:23:43 Received From : +11:23:43 ============================================================================ +11:23:43 FNo. Len. Field Value +11:23:43 ============================================================================ +11:23:43 [ 1] [ 4] [0210] +11:23:43 [ 2] [ 16] [6213541000043318] +11:23:43 [ 3] [ 6] [010000] +11:23:43 [ 4] [ 12] [000100000000] +11:23:43 [ 7] [ 10] [0320042247] +11:23:43 [ 11] [ 6] [268463] +11:23:43 [ 12] [ 6] [112247] +11:23:43 [ 13] [ 4] [0320] +11:23:43 [ 15] [ 4] [0320] +11:23:43 [ 18] [ 4] [6011] +11:23:43 [ 19] [ 3] [418] +11:23:43 [ 32] [ 6] [180893] +11:23:43 [ 35] [ 32] [6213541000043318=491212014331307] +11:23:43 [ 37] [ 12] [507904268463] +11:23:43 [ 38] [ 6] [865937] +11:23:43 [ 39] [ 2] [00] +11:23:43 [ 41] [ 8] [0529LPBF] +11:23:43 [ 49] [ 3] [418] +11:23:43 [ 54] [ 40] [0001418C0000829530740002418C000082953074] +11:23:43 ============================================================================ +11:23:43 Calculate Source COMM Id = 2 +11:23:43 ============================================================================ +11:23:43 + + +waiting on router queue for slot.... +11:23:43 ============================================================================ +11:23:43 Slot Id : <179> +11:23:43 Transaction Type : REQUEST +11:23:43 Received From : +11:23:43 ============================================================================ +11:23:43 FNo. Len. Field Value +11:23:43 ============================================================================ +11:23:43 [ 1] [ 4] [0200] +11:23:43 [ 2] [ 16] [6213545000482301] +11:23:43 [ 3] [ 6] [012000] +11:23:43 [ 4] [ 12] [000100000000] +11:23:43 [ 7] [ 10] [0320113131] +11:23:43 [ 11] [ 6] [251160] +11:23:43 [ 12] [ 6] [113131] +11:23:43 [ 13] [ 4] [0320] +11:23:43 [ 14] [ 4] [4912] +11:23:43 [ 15] [ 4] [0320] +11:23:43 [ 18] [ 4] [6011] +11:23:43 [ 22] [ 3] [900] +11:23:43 [ 25] [ 2] [02] +11:23:43 [ 28] [ 9] [D00002000] +11:23:43 [ 32] [ 6] [220699] +11:23:43 [ 35] [ 32] [6213545000482301=491212018230940] +11:23:43 [ 37] [ 12] [507900336163] +11:23:43 [ 41] [ 8] [01001900] +11:23:43 [ 42] [ 15] [APTRA ] +11:23:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:23:43 [ 49] [ 3] [418] +11:23:43 [ 52] [ 16] [5B5E1D94937B6CE6] +11:23:43 ============================================================================ +11:23:43 + + +waiting on router queue for slot.... +11:23:43 Sending to : +11:23:43 ============================================================================ +11:23:43 Sending to : +11:23:43 ============================================================================ +11:23:44 ============================================================================ +11:23:44 Slot Id : <179> +11:23:44 Transaction Type : REQUEST +11:23:44 Received From : +11:23:44 ============================================================================ +11:23:44 FNo. Len. Field Value +11:23:44 ============================================================================ +11:23:44 [ 1] [ 4] [0200] +11:23:44 [ 2] [ 16] [6213545000482301] +11:23:44 [ 3] [ 6] [012000] +11:23:44 [ 4] [ 12] [000100000000] +11:23:44 [ 7] [ 10] [0320113131] +11:23:44 [ 11] [ 6] [251160] +11:23:44 [ 12] [ 6] [113131] +11:23:44 [ 13] [ 4] [0320] +11:23:44 [ 14] [ 4] [4912] +11:23:44 [ 15] [ 4] [0320] +11:23:44 [ 18] [ 4] [6011] +11:23:44 [ 22] [ 3] [900] +11:23:44 [ 25] [ 2] [02] +11:23:44 [ 28] [ 9] [D00002000] +11:23:44 [ 32] [ 6] [220699] +11:23:44 [ 35] [ 32] [6213545000482301=491212018230940] +11:23:44 [ 37] [ 12] [507900336163] +11:23:44 [ 41] [ 8] [01001900] +11:23:44 [ 42] [ 15] [APTRA ] +11:23:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:23:44 [ 49] [ 3] [418] +11:23:44 [ 52] [ 16] [5B5E1D94937B6CE6] +11:23:44 ============================================================================ +11:23:44 + + +waiting on router queue for slot.... +11:23:44 Sending to : +11:23:44 ============================================================================ +11:23:44 ============================================================================ +11:23:44 Slot Id : <179> +11:23:44 Transaction Type : REQUEST +11:23:44 Received From : +11:23:44 ============================================================================ +11:23:44 FNo. Len. Field Value +11:23:44 ============================================================================ +11:23:44 [ 1] [ 4] [0200] +11:23:44 [ 2] [ 16] [6213545000482301] +11:23:44 [ 3] [ 6] [012000] +11:23:44 [ 4] [ 12] [000100000000] +11:23:44 [ 7] [ 10] [0320113131] +11:23:44 [ 11] [ 6] [251160] +11:23:44 [ 12] [ 6] [113131] +11:23:44 [ 13] [ 4] [0320] +11:23:44 [ 14] [ 4] [4912] +11:23:44 [ 15] [ 4] [0320] +11:23:44 [ 18] [ 4] [6011] +11:23:44 [ 22] [ 3] [900] +11:23:44 [ 25] [ 2] [02] +11:23:44 [ 28] [ 9] [D00002000] +11:23:44 [ 32] [ 6] [220699] +11:23:44 [ 35] [ 32] [6213545000482301=491212018230940] +11:23:44 [ 37] [ 12] [507900336163] +11:23:44 [ 41] [ 8] [01001900] +11:23:44 [ 42] [ 15] [APTRA ] +11:23:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:23:44 [ 49] [ 3] [418] +11:23:44 [ 52] [ 16] [0BC3DDB7172DA0E2] +11:23:44 ============================================================================ +11:23:44 + + +waiting on router queue for slot.... +11:23:44 Sending to : <0> +11:23:44 ============================================================================ +11:23:44 ============================================================================ +11:23:44 Slot Id : <144> +11:23:44 Transaction Type : REQUEST +11:23:44 Received From : +11:23:44 ============================================================================ +11:23:44 FNo. Len. Field Value +11:23:44 ============================================================================ +11:23:44 [ 1] [ 4] [0800] +11:23:44 [ 7] [ 10] [0320042251] +11:23:44 [ 11] [ 6] [156080] +11:23:44 [ 70] [ 3] [301] +11:23:44 ============================================================================ +11:23:44 + + +waiting on router queue for slot.... +11:23:44 Sending to : +11:23:44 ============================================================================ +11:23:44 ============================================================================ +11:23:44 Slot Id : <144> +11:23:44 Transaction Type : RESPONSE +11:23:44 Received From : +11:23:44 ============================================================================ +11:23:44 FNo. Len. Field Value +11:23:44 ============================================================================ +11:23:44 [ 1] [ 4] [0810] +11:23:44 [ 7] [ 10] [0320042251] +11:23:44 [ 11] [ 6] [156080] +11:23:44 [ 39] [ 2] [00] +11:23:44 [ 70] [ 3] [301] +11:23:44 ============================================================================ +11:23:44 Calculate Source COMM Id = 2 +11:23:44 ============================================================================ +11:23:44 + + +waiting on router queue for slot.... +11:23:44 ============================================================================ +11:23:44 Slot Id : <179> +11:23:44 Transaction Type : RESPONSE +11:23:44 Received From : +11:23:44 ============================================================================ +11:23:44 FNo. Len. Field Value +11:23:44 ============================================================================ +11:23:44 [ 1] [ 4] [0210] +11:23:44 [ 2] [ 16] [6213545000482301] +11:23:44 [ 3] [ 6] [012000] +11:23:44 [ 4] [ 12] [000100000000] +11:23:44 [ 7] [ 10] [0320113131] +11:23:44 [ 11] [ 6] [251160] +11:23:44 [ 12] [ 6] [113131] +11:23:44 [ 13] [ 4] [0320] +11:23:44 [ 15] [ 4] [0320] +11:23:44 [ 18] [ 4] [6011] +11:23:44 [ 32] [ 6] [220699] +11:23:44 [ 35] [ 32] [6213545000482301=491212018230940] +11:23:44 [ 37] [ 12] [507900336163] +11:23:44 [ 38] [ 6] [062103] +11:23:44 [ 39] [ 2] [00] +11:23:44 [ 41] [ 8] [01001900] +11:23:44 [ 49] [ 3] [418] +11:23:44 [ 54] [ 40] [2001418C0001388029912002418C000138802991] +11:23:44 ============================================================================ +11:23:44 Sending to : +11:23:44 ============================================================================ +11:23:44 + + +waiting on router queue for slot.... +11:23:46 ============================================================================ +11:23:46 Slot Id : <179> +11:23:46 Transaction Type : RESPONSE +11:23:46 Received From : +11:23:46 ============================================================================ +11:23:46 FNo. Len. Field Value +11:23:46 ============================================================================ +11:23:46 [ 1] [ 4] [0210] +11:23:46 [ 2] [ 16] [6213545000482301] +11:23:46 [ 3] [ 6] [012000] +11:23:46 [ 4] [ 12] [000100000000] +11:23:46 [ 7] [ 10] [0320113131] +11:23:46 [ 11] [ 6] [251160] +11:23:46 [ 12] [ 6] [113131] +11:23:46 [ 13] [ 4] [0320] +11:23:46 [ 15] [ 4] [0320] +11:23:46 [ 18] [ 4] [6011] +11:23:46 [ 32] [ 6] [220699] +11:23:46 [ 35] [ 32] [6213545000482301=491212018230940] +11:23:46 [ 37] [ 12] [507900336163] +11:23:46 [ 38] [ 6] [062103] +11:23:46 [ 39] [ 2] [00] +11:23:46 [ 41] [ 8] [01001900] +11:23:46 [ 49] [ 3] [418] +11:23:46 [ 54] [ 40] [2001418C0001388029912002418C000138802991] +11:23:46 ============================================================================ +11:23:46 Calculate Source COMM Id = 1 +11:23:46 ============================================================================ +11:23:46 + + +waiting on router queue for slot.... +11:24:00 ============================================================================ +11:24:00 Slot Id : <204> +11:24:00 Transaction Type : REQUEST +11:24:00 Received From : +11:24:00 ============================================================================ +11:24:00 FNo. Len. Field Value +11:24:00 ============================================================================ +11:24:00 [ 1] [ 4] [0800] +11:24:00 [ 7] [ 10] [0320042307] +11:24:00 [ 11] [ 6] [156081] +11:24:00 [ 70] [ 3] [301] +11:24:00 ============================================================================ +11:24:00 + + +waiting on router queue for slot.... +11:24:00 Sending to : +11:24:00 ============================================================================ +11:24:00 ============================================================================ +11:24:00 Slot Id : <204> +11:24:00 Transaction Type : RESPONSE +11:24:00 Received From : +11:24:00 ============================================================================ +11:24:00 FNo. Len. Field Value +11:24:00 ============================================================================ +11:24:00 [ 1] [ 4] [0810] +11:24:00 [ 7] [ 10] [0320042307] +11:24:00 [ 11] [ 6] [156081] +11:24:00 [ 39] [ 2] [00] +11:24:00 [ 70] [ 3] [301] +11:24:00 ============================================================================ +11:24:00 Calculate Source COMM Id = 2 +11:24:00 ============================================================================ +11:24:00 + + +waiting on router queue for slot.... +11:24:15 ============================================================================ +11:24:15 Slot Id : <163> +11:24:15 Transaction Type : REQUEST +11:24:15 Received From : +11:24:15 ============================================================================ +11:24:15 FNo. Len. Field Value +11:24:15 ============================================================================ +11:24:15 [ 1] [ 4] [0800] +11:24:15 [ 7] [ 10] [0320042323] +11:24:15 [ 11] [ 6] [156082] +11:24:15 [ 70] [ 3] [301] +11:24:15 ============================================================================ +11:24:15 + + +waiting on router queue for slot.... +11:24:15 Sending to : +11:24:15 ============================================================================ +11:24:15 ============================================================================ +11:24:15 Slot Id : <163> +11:24:15 Transaction Type : RESPONSE +11:24:15 Received From : +11:24:15 ============================================================================ +11:24:15 FNo. Len. Field Value +11:24:15 ============================================================================ +11:24:15 [ 1] [ 4] [0810] +11:24:15 [ 7] [ 10] [0320042323] +11:24:15 [ 11] [ 6] [156082] +11:24:15 [ 39] [ 2] [00] +11:24:15 [ 70] [ 3] [301] +11:24:15 ============================================================================ +11:24:15 Calculate Source COMM Id = 2 +11:24:15 ============================================================================ +11:24:15 + + +waiting on router queue for slot.... +11:24:21 ============================================================================ +11:24:21 Slot Id : <135> +11:24:21 Transaction Type : REQUEST +11:24:21 Received From : +11:24:21 ============================================================================ +11:24:21 FNo. Len. Field Value +11:24:21 ============================================================================ +11:24:21 [ 1] [ 4] [0200] +11:24:21 [ 2] [ 16] [6213545000810238] +11:24:21 [ 3] [ 6] [011000] +11:24:21 [ 4] [ 12] [000030000000] +11:24:21 [ 7] [ 10] [0320113208] +11:24:21 [ 11] [ 6] [079099] +11:24:21 [ 12] [ 6] [113208] +11:24:21 [ 13] [ 4] [0320] +11:24:21 [ 14] [ 4] [4912] +11:24:21 [ 15] [ 4] [0320] +11:24:21 [ 18] [ 4] [6011] +11:24:21 [ 22] [ 3] [900] +11:24:21 [ 25] [ 2] [02] +11:24:21 [ 28] [ 9] [D00002000] +11:24:21 [ 32] [ 6] [220699] +11:24:21 [ 35] [ 32] [6213545000810238=491212011023732] +11:24:21 [ 37] [ 12] [507900132968] +11:24:21 [ 41] [ 8] [03000100] +11:24:21 [ 42] [ 15] [APTRA ] +11:24:21 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:24:21 [ 49] [ 3] [418] +11:24:21 [ 52] [ 16] [F609FF2FC2D414CC] +11:24:21 ============================================================================ +11:24:21 + + +waiting on router queue for slot.... +11:24:21 Sending to : +11:24:21 ============================================================================ +11:24:21 Sending to : +11:24:21 ============================================================================ +11:24:21 ============================================================================ +11:24:21 Slot Id : <135> +11:24:21 Transaction Type : REQUEST +11:24:21 Received From : +11:24:21 ============================================================================ +11:24:21 FNo. Len. Field Value +11:24:21 ============================================================================ +11:24:21 [ 1] [ 4] [0200] +11:24:21 [ 2] [ 16] [6213545000810238] +11:24:21 [ 3] [ 6] [011000] +11:24:21 [ 4] [ 12] [000030000000] +11:24:21 [ 7] [ 10] [0320113208] +11:24:21 [ 11] [ 6] [079099] +11:24:21 [ 12] [ 6] [113208] +11:24:21 [ 13] [ 4] [0320] +11:24:21 [ 14] [ 4] [4912] +11:24:21 [ 15] [ 4] [0320] +11:24:21 [ 18] [ 4] [6011] +11:24:21 [ 22] [ 3] [900] +11:24:21 [ 25] [ 2] [02] +11:24:21 [ 28] [ 9] [D00002000] +11:24:21 [ 32] [ 6] [220699] +11:24:21 [ 35] [ 32] [6213545000810238=491212011023732] +11:24:21 [ 37] [ 12] [507900132968] +11:24:21 [ 41] [ 8] [03000100] +11:24:21 [ 42] [ 15] [APTRA ] +11:24:21 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:24:21 [ 49] [ 3] [418] +11:24:21 [ 52] [ 16] [F609FF2FC2D414CC] +11:24:21 ============================================================================ +11:24:21 + + +waiting on router queue for slot.... +11:24:21 Sending to : +11:24:21 ============================================================================ +11:24:21 ============================================================================ +11:24:21 Slot Id : <135> +11:24:21 Transaction Type : REQUEST +11:24:21 Received From : +11:24:21 ============================================================================ +11:24:21 FNo. Len. Field Value +11:24:21 ============================================================================ +11:24:21 [ 1] [ 4] [0200] +11:24:21 [ 2] [ 16] [6213545000810238] +11:24:21 [ 3] [ 6] [011000] +11:24:21 [ 4] [ 12] [000030000000] +11:24:21 [ 7] [ 10] [0320113208] +11:24:21 [ 11] [ 6] [079099] +11:24:21 [ 12] [ 6] [113208] +11:24:21 [ 13] [ 4] [0320] +11:24:21 [ 14] [ 4] [4912] +11:24:21 [ 15] [ 4] [0320] +11:24:21 [ 18] [ 4] [6011] +11:24:21 [ 22] [ 3] [900] +11:24:21 [ 25] [ 2] [02] +11:24:21 [ 28] [ 9] [D00002000] +11:24:21 [ 32] [ 6] [220699] +11:24:21 [ 35] [ 32] [6213545000810238=491212011023732] +11:24:21 [ 37] [ 12] [507900132968] +11:24:21 [ 41] [ 8] [03000100] +11:24:21 [ 42] [ 15] [APTRA ] +11:24:21 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:24:21 [ 49] [ 3] [418] +11:24:21 [ 52] [ 16] [F354CE20C7CC198B] +11:24:21 ============================================================================ +11:24:21 + + +waiting on router queue for slot.... +11:24:21 Sending to : <0> +11:24:21 ============================================================================ +11:24:22 ============================================================================ +11:24:22 Slot Id : <135> +11:24:22 Transaction Type : RESPONSE +11:24:22 Received From : +11:24:22 ============================================================================ +11:24:22 FNo. Len. Field Value +11:24:22 ============================================================================ +11:24:22 [ 1] [ 4] [0210] +11:24:22 [ 2] [ 16] [6213545000810238] +11:24:22 [ 3] [ 6] [011000] +11:24:22 [ 4] [ 12] [000030000000] +11:24:22 [ 7] [ 10] [0320113208] +11:24:22 [ 11] [ 6] [079099] +11:24:22 [ 12] [ 6] [113208] +11:24:22 [ 13] [ 4] [0320] +11:24:22 [ 15] [ 4] [0320] +11:24:22 [ 18] [ 4] [6011] +11:24:22 [ 32] [ 6] [220699] +11:24:22 [ 35] [ 32] [6213545000810238=491212011023732] +11:24:22 [ 37] [ 12] [507900132968] +11:24:22 [ 38] [ 6] [781365] +11:24:22 [ 39] [ 2] [00] +11:24:22 [ 41] [ 8] [03000100] +11:24:22 [ 49] [ 3] [418] +11:24:22 [ 54] [ 40] [1001418C0010340906631002418C001034090663] +11:24:22 ============================================================================ +11:24:22 Sending to : +11:24:22 ============================================================================ +11:24:22 + + +waiting on router queue for slot.... +11:24:24 ============================================================================ +11:24:24 Slot Id : <135> +11:24:24 Transaction Type : RESPONSE +11:24:24 Received From : +11:24:24 ============================================================================ +11:24:24 FNo. Len. Field Value +11:24:24 ============================================================================ +11:24:24 [ 1] [ 4] [0210] +11:24:24 [ 2] [ 16] [6213545000810238] +11:24:24 [ 3] [ 6] [011000] +11:24:24 [ 4] [ 12] [000030000000] +11:24:24 [ 7] [ 10] [0320113208] +11:24:24 [ 11] [ 6] [079099] +11:24:24 [ 12] [ 6] [113208] +11:24:24 [ 13] [ 4] [0320] +11:24:24 [ 15] [ 4] [0320] +11:24:24 [ 18] [ 4] [6011] +11:24:24 [ 32] [ 6] [220699] +11:24:24 [ 35] [ 32] [6213545000810238=491212011023732] +11:24:24 [ 37] [ 12] [507900132968] +11:24:24 [ 38] [ 6] [781365] +11:24:24 [ 39] [ 2] [00] +11:24:24 [ 41] [ 8] [03000100] +11:24:24 [ 49] [ 3] [418] +11:24:24 [ 54] [ 40] [1001418C0010340906631002418C001034090663] +11:24:24 ============================================================================ +11:24:24 Calculate Source COMM Id = 1 +11:24:24 ============================================================================ +11:24:24 + + +waiting on router queue for slot.... +11:24:30 ============================================================================ +11:24:30 Slot Id : <152> +11:24:30 Transaction Type : REQUEST +11:24:30 Received From : +11:24:30 ============================================================================ +11:24:30 FNo. Len. Field Value +11:24:30 ============================================================================ +11:24:30 [ 1] [ 4] [0800] +11:24:30 [ 7] [ 10] [0320042338] +11:24:30 [ 11] [ 6] [156083] +11:24:30 [ 70] [ 3] [301] +11:24:30 ============================================================================ +11:24:30 + + +waiting on router queue for slot.... +11:24:30 Sending to : +11:24:30 ============================================================================ +11:24:30 ============================================================================ +11:24:30 Slot Id : <152> +11:24:30 Transaction Type : RESPONSE +11:24:30 Received From : +11:24:30 ============================================================================ +11:24:30 FNo. Len. Field Value +11:24:30 ============================================================================ +11:24:30 [ 1] [ 4] [0810] +11:24:30 [ 7] [ 10] [0320042338] +11:24:30 [ 11] [ 6] [156083] +11:24:30 [ 39] [ 2] [00] +11:24:30 [ 70] [ 3] [301] +11:24:30 ============================================================================ +11:24:30 Calculate Source COMM Id = 2 +11:24:30 ============================================================================ +11:24:30 + + +waiting on router queue for slot.... +11:24:42 ============================================================================ +11:24:42 Slot Id : <192> +11:24:42 Transaction Type : REQUEST +11:24:42 Received From : +11:24:42 ============================================================================ +11:24:42 FNo. Len. Field Value +11:24:42 ============================================================================ +11:24:42 [ 1] [ 4] [0800] +11:24:42 [ 7] [ 10] [0320042349] +11:24:42 [ 11] [ 6] [156084] +11:24:42 [ 70] [ 3] [301] +11:24:42 ============================================================================ +11:24:42 + + +waiting on router queue for slot.... +11:24:42 Sending to : +11:24:42 ============================================================================ +11:24:42 ============================================================================ +11:24:42 Slot Id : <192> +11:24:42 Transaction Type : RESPONSE +11:24:42 Received From : +11:24:42 ============================================================================ +11:24:42 FNo. Len. Field Value +11:24:42 ============================================================================ +11:24:42 [ 1] [ 4] [0810] +11:24:42 [ 7] [ 10] [0320042349] +11:24:42 [ 11] [ 6] [156084] +11:24:42 [ 39] [ 2] [00] +11:24:42 [ 70] [ 3] [301] +11:24:42 ============================================================================ +11:24:42 Calculate Source COMM Id = 2 +11:24:42 ============================================================================ +11:24:42 + + +waiting on router queue for slot.... +11:24:42 ============================================================================ +11:24:42 Slot Id : <191> +11:24:42 Transaction Type : REQUEST +11:24:42 Received From : +11:24:42 ============================================================================ +11:24:42 FNo. Len. Field Value +11:24:42 ============================================================================ +11:24:42 [ 1] [ 4] [0800] +11:24:42 [ 2] [ 5] [02531] +11:24:42 [ 3] [ 6] [579118] +11:24:42 [ 7] [ 10] [0320042442] +11:24:42 [ 11] [ 6] [807074] +11:24:42 [ 15] [ 10] [0320042442] +11:24:42 [ 37] [ 11] [57911807074] +11:24:42 [ 70] [ 3] [001] +11:24:42 ============================================================================ +11:24:42 + + +waiting on router queue for slot.... +11:24:42 ============================================================================ +11:24:42 Slot Id : <191> +11:24:42 Transaction Type : RESPONSE +11:24:42 Received From : +11:24:42 ============================================================================ +11:24:42 FNo. Len. Field Value +11:24:42 ============================================================================ +11:24:42 [ 1] [ 4] [0810] +11:24:42 [ 7] [ 10] [0320042442] +11:24:42 [ 11] [ 6] [807074] +11:24:42 [ 15] [ 4] [0320] +11:24:42 [ 37] [ 12] [57911807074] +11:24:42 [ 39] [ 2] [00] +11:24:42 [ 70] [ 3] [001] +11:24:42 ============================================================================ +11:24:42 Sending to : +11:24:42 ============================================================================ +11:24:42 + + +waiting on router queue for slot.... +11:24:53 ============================================================================ +11:24:53 Slot Id : <196> +11:24:53 Transaction Type : REQUEST +11:24:53 Received From : +11:24:53 ============================================================================ +11:24:53 FNo. Len. Field Value +11:24:53 ============================================================================ +11:24:53 [ 1] [ 4] [0200] +11:24:53 [ 2] [ 16] [1808931100007226] +11:24:53 [ 3] [ 6] [011000] +11:24:53 [ 4] [ 12] [000025000000] +11:24:53 [ 7] [ 10] [0320112449] +11:24:53 [ 11] [ 6] [728992] +11:24:53 [ 12] [ 6] [112449] +11:24:53 [ 13] [ 4] [0320] +11:24:53 [ 15] [ 4] [0320] +11:24:53 [ 18] [ 4] [6011] +11:24:53 [ 22] [ 3] [900] +11:24:53 [ 25] [ 2] [02] +11:24:53 [ 28] [ 9] [D00002000] +11:24:53 [ 32] [ 6] [621354] +11:24:53 [ 35] [ 27] [1808931100007226=1803500650] +11:24:53 [ 37] [ 12] [507904341462] +11:24:53 [ 41] [ 8] [03003300] +11:24:53 [ 42] [ 15] [NATIVE ] +11:24:53 [ 43] [ 40] [SVN University KaisonephomvLAO] +11:24:53 [ 49] [ 3] [418] +11:24:53 [ 52] [ 16] [4F555185FF8F7CDC] +11:24:53 ============================================================================ +11:24:53 + + +waiting on router queue for slot.... +11:24:53 Sending to : +11:24:53 ============================================================================ +11:24:53 Sending to : +11:24:53 ============================================================================ +11:24:54 ============================================================================ +11:24:54 Slot Id : <196> +11:24:54 Transaction Type : REQUEST +11:24:54 Received From : +11:24:54 ============================================================================ +11:24:54 FNo. Len. Field Value +11:24:54 ============================================================================ +11:24:54 [ 1] [ 4] [0200] +11:24:54 [ 2] [ 16] [1808931100007226] +11:24:54 [ 3] [ 6] [011000] +11:24:54 [ 4] [ 12] [000025000000] +11:24:54 [ 7] [ 10] [0320112449] +11:24:54 [ 11] [ 6] [728992] +11:24:54 [ 12] [ 6] [112449] +11:24:54 [ 13] [ 4] [0320] +11:24:54 [ 15] [ 4] [0320] +11:24:54 [ 18] [ 4] [6011] +11:24:54 [ 22] [ 3] [900] +11:24:54 [ 25] [ 2] [02] +11:24:54 [ 28] [ 9] [D00002000] +11:24:54 [ 32] [ 6] [621354] +11:24:54 [ 35] [ 27] [1808931100007226=1803500650] +11:24:54 [ 37] [ 12] [507904341462] +11:24:54 [ 41] [ 8] [03003300] +11:24:54 [ 42] [ 15] [NATIVE ] +11:24:54 [ 43] [ 40] [SVN University KaisonephomvLAO] +11:24:54 [ 49] [ 3] [418] +11:24:54 [ 52] [ 16] [4F555185FF8F7CDC] +11:24:54 ============================================================================ +11:24:54 + + +waiting on router queue for slot.... +11:24:54 Sending to : +11:24:54 ============================================================================ +11:24:54 ============================================================================ +11:24:54 Slot Id : <196> +11:24:54 Transaction Type : REQUEST +11:24:54 Received From : +11:24:54 ============================================================================ +11:24:54 FNo. Len. Field Value +11:24:54 ============================================================================ +11:24:54 [ 1] [ 4] [0200] +11:24:54 [ 2] [ 16] [1808931100007226] +11:24:54 [ 3] [ 6] [011000] +11:24:54 [ 4] [ 12] [000025000000] +11:24:54 [ 7] [ 10] [0320112449] +11:24:54 [ 11] [ 6] [728992] +11:24:54 [ 12] [ 6] [112449] +11:24:54 [ 13] [ 4] [0320] +11:24:54 [ 15] [ 4] [0320] +11:24:54 [ 18] [ 4] [6011] +11:24:54 [ 22] [ 3] [900] +11:24:54 [ 25] [ 2] [02] +11:24:54 [ 28] [ 9] [D00002000] +11:24:54 [ 32] [ 6] [621354] +11:24:54 [ 35] [ 27] [1808931100007226=1803500650] +11:24:54 [ 37] [ 12] [507904341462] +11:24:54 [ 41] [ 8] [03003300] +11:24:54 [ 42] [ 15] [NATIVE ] +11:24:54 [ 43] [ 40] [SVN University KaisonephomvLAO] +11:24:54 [ 49] [ 3] [418] +11:24:54 [ 52] [ 16] [5802777DDE5FA7A3] +11:24:54 ============================================================================ +11:24:54 + + +waiting on router queue for slot.... +11:24:54 Sending to : <2> +11:24:54 ============================================================================ +11:24:55 ============================================================================ +11:24:55 Slot Id : <190> +11:24:55 Transaction Type : REQUEST +11:24:55 Received From : +11:24:55 ============================================================================ +11:24:55 FNo. Len. Field Value +11:24:55 ============================================================================ +11:24:55 [ 1] [ 4] [0800] +11:24:55 [ 7] [ 10] [0320043242] +11:24:55 [ 11] [ 6] [002747] +11:24:55 [ 37] [ 12] [57911002747] +11:24:55 [ 70] [ 3] [301] +11:24:55 ============================================================================ +11:24:55 + + +waiting on router queue for slot.... +11:24:55 Sending to : +11:24:55 ============================================================================ +11:24:55 ============================================================================ +11:24:55 Slot Id : <190> +11:24:55 Transaction Type : RESPONSE +11:24:55 Received From : +11:24:55 ============================================================================ +11:24:55 FNo. Len. Field Value +11:24:55 ============================================================================ +11:24:55 [ 1] [ 4] [0810] +11:24:55 [ 7] [ 10] [0320043242] +11:24:55 [ 11] [ 6] [002747] +11:24:55 [ 37] [ 12] [579110027470] +11:24:55 [ 39] [ 2] [00] +11:24:55 [ 70] [ 3] [810] +11:24:55 ============================================================================ +11:24:55 Calculate Source COMM Id = 1 +11:24:55 ============================================================================ +11:24:55 + + +waiting on router queue for slot.... +11:24:59 ============================================================================ +11:24:59 Slot Id : <196> +11:24:59 Transaction Type : RESPONSE +11:24:59 Received From : +11:24:59 ============================================================================ +11:24:59 FNo. Len. Field Value +11:24:59 ============================================================================ +11:24:59 [ 1] [ 4] [0210] +11:24:59 [ 2] [ 16] [1808931100007226] +11:24:59 [ 3] [ 6] [011000] +11:24:59 [ 4] [ 12] [000025000000] +11:24:59 [ 6] [ 12] [000025000000] +11:24:59 [ 7] [ 10] [0320112449] +11:24:59 [ 11] [ 6] [728992] +11:24:59 [ 12] [ 6] [112449] +11:24:59 [ 13] [ 4] [0320] +11:24:59 [ 18] [ 4] [6011] +11:24:59 [ 19] [ 3] [418] +11:24:59 [ 22] [ 3] [021] +11:24:59 [ 32] [ 6] [621354] +11:24:59 [ 35] [ 27] [1808931100007226=1803500650] +11:24:59 [ 37] [ 12] [507904341462] +11:24:59 [ 38] [ 6] [728992] +11:24:59 [ 39] [ 2] [00] +11:24:59 [ 41] [ 8] [03003300] +11:24:59 [ 49] [ 3] [418] +11:24:59 [ 52] [ 16] [5802777DDE5FA7A3] +11:24:59 [ 54] [ 20] [1001418C000004713300] +11:24:59 ============================================================================ +11:24:59 Sending to : +11:24:59 ============================================================================ +11:24:59 + + +waiting on router queue for slot.... +11:25:00 ============================================================================ +11:25:00 Slot Id : <196> +11:25:00 Transaction Type : RESPONSE +11:25:00 Received From : +11:25:00 ============================================================================ +11:25:00 FNo. Len. Field Value +11:25:00 ============================================================================ +11:25:00 [ 1] [ 4] [0210] +11:25:00 [ 2] [ 16] [1808931100007226] +11:25:00 [ 3] [ 6] [011000] +11:25:00 [ 4] [ 12] [000025000000] +11:25:00 [ 6] [ 12] [000025000000] +11:25:00 [ 7] [ 10] [0320112449] +11:25:00 [ 11] [ 6] [728992] +11:25:00 [ 12] [ 6] [112449] +11:25:00 [ 13] [ 4] [0320] +11:25:00 [ 18] [ 4] [6011] +11:25:00 [ 19] [ 3] [418] +11:25:00 [ 22] [ 3] [021] +11:25:00 [ 32] [ 6] [621354] +11:25:00 [ 35] [ 27] [1808931100007226=1803500650] +11:25:00 [ 37] [ 12] [507904341462] +11:25:00 [ 38] [ 6] [728992] +11:25:00 [ 39] [ 2] [00] +11:25:00 [ 41] [ 8] [03003300] +11:25:00 [ 49] [ 3] [418] +11:25:00 [ 52] [ 16] [5802777DDE5FA7A3] +11:25:00 [ 54] [ 20] [1001418C000004713300] +11:25:00 ============================================================================ +11:25:00 Calculate Source COMM Id = 0 +11:25:00 ============================================================================ +11:25:00 + + +waiting on router queue for slot.... +11:25:04 ============================================================================ +11:25:04 Slot Id : <155> +11:25:04 Transaction Type : REQUEST +11:25:04 Received From : +11:25:04 ============================================================================ +11:25:04 FNo. Len. Field Value +11:25:04 ============================================================================ +11:25:04 [ 1] [ 4] [0200] +11:25:04 [ 2] [ 16] [6213541000043318] +11:25:04 [ 3] [ 6] [010000] +11:25:04 [ 4] [ 12] [000050000000] +11:25:04 [ 7] [ 10] [0320042410] +11:25:04 [ 11] [ 6] [268471] +11:25:04 [ 12] [ 6] [112410] +11:25:04 [ 13] [ 4] [0320] +11:25:04 [ 14] [ 4] [4912] +11:25:04 [ 15] [ 4] [0320] +11:25:04 [ 18] [ 4] [6011] +11:25:04 [ 19] [ 3] [418] +11:25:04 [ 22] [ 3] [021] +11:25:04 [ 25] [ 2] [01] +11:25:04 [ 28] [ 9] [D00002000] +11:25:04 [ 32] [ 6] [180893] +11:25:04 [ 35] [ 32] [6213541000043318=491212014331307] +11:25:04 [ 37] [ 12] [507904268471] +11:25:04 [ 41] [ 8] [0529LPBF] +11:25:04 [ 42] [ 15] [999999 ] +11:25:04 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:25:04 [ 49] [ 3] [418] +11:25:04 [ 52] [ 16] [24525ABD38082C73] +11:25:04 ============================================================================ +11:25:04 + + +waiting on router queue for slot.... +11:25:04 Sending to : +11:25:04 ============================================================================ +11:25:04 Sending to : +11:25:04 ============================================================================ +11:25:04 ============================================================================ +11:25:04 Slot Id : <155> +11:25:04 Transaction Type : REQUEST +11:25:04 Received From : +11:25:04 ============================================================================ +11:25:04 FNo. Len. Field Value +11:25:04 ============================================================================ +11:25:04 [ 1] [ 4] [0200] +11:25:04 [ 2] [ 16] [6213541000043318] +11:25:04 [ 3] [ 6] [010000] +11:25:04 [ 4] [ 12] [000050000000] +11:25:04 [ 7] [ 10] [0320042410] +11:25:04 [ 11] [ 6] [268471] +11:25:04 [ 12] [ 6] [112410] +11:25:04 [ 13] [ 4] [0320] +11:25:04 [ 14] [ 4] [4912] +11:25:04 [ 15] [ 4] [0320] +11:25:04 [ 18] [ 4] [6011] +11:25:04 [ 19] [ 3] [418] +11:25:04 [ 22] [ 3] [021] +11:25:04 [ 25] [ 2] [01] +11:25:04 [ 28] [ 9] [D00002000] +11:25:04 [ 32] [ 6] [180893] +11:25:04 [ 35] [ 32] [6213541000043318=491212014331307] +11:25:04 [ 37] [ 12] [507904268471] +11:25:04 [ 41] [ 8] [0529LPBF] +11:25:04 [ 42] [ 15] [999999 ] +11:25:04 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:25:04 [ 49] [ 3] [418] +11:25:04 [ 52] [ 16] [24525ABD38082C73] +11:25:04 ============================================================================ +11:25:04 + + +waiting on router queue for slot.... +11:25:04 Sending to : +11:25:04 ============================================================================ +11:25:04 ============================================================================ +11:25:04 Slot Id : <155> +11:25:04 Transaction Type : REQUEST +11:25:04 Received From : +11:25:04 ============================================================================ +11:25:04 FNo. Len. Field Value +11:25:04 ============================================================================ +11:25:04 [ 1] [ 4] [0200] +11:25:04 [ 2] [ 16] [6213541000043318] +11:25:04 [ 3] [ 6] [010000] +11:25:04 [ 4] [ 12] [000050000000] +11:25:04 [ 7] [ 10] [0320042410] +11:25:04 [ 11] [ 6] [268471] +11:25:04 [ 12] [ 6] [112410] +11:25:04 [ 13] [ 4] [0320] +11:25:04 [ 14] [ 4] [4912] +11:25:04 [ 15] [ 4] [0320] +11:25:04 [ 18] [ 4] [6011] +11:25:04 [ 19] [ 3] [418] +11:25:04 [ 22] [ 3] [021] +11:25:04 [ 25] [ 2] [01] +11:25:04 [ 28] [ 9] [D00002000] +11:25:04 [ 32] [ 6] [180893] +11:25:04 [ 35] [ 32] [6213541000043318=491212014331307] +11:25:04 [ 37] [ 12] [507904268471] +11:25:04 [ 41] [ 8] [0529LPBF] +11:25:04 [ 42] [ 15] [999999 ] +11:25:04 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:25:04 [ 49] [ 3] [418] +11:25:04 [ 52] [ 16] [E483D1EAEF02AC95] +11:25:04 ============================================================================ +11:25:04 + + +waiting on router queue for slot.... +11:25:04 Sending to : <0> +11:25:04 ============================================================================ +11:25:05 ============================================================================ +11:25:05 Slot Id : <155> +11:25:05 Transaction Type : RESPONSE +11:25:05 Received From : +11:25:05 ============================================================================ +11:25:05 FNo. Len. Field Value +11:25:05 ============================================================================ +11:25:05 [ 1] [ 4] [0210] +11:25:05 [ 2] [ 16] [6213541000043318] +11:25:05 [ 3] [ 6] [010000] +11:25:05 [ 4] [ 12] [000050000000] +11:25:05 [ 7] [ 10] [0320042410] +11:25:05 [ 11] [ 6] [268471] +11:25:05 [ 12] [ 6] [112410] +11:25:05 [ 13] [ 4] [0320] +11:25:05 [ 15] [ 4] [0320] +11:25:05 [ 18] [ 4] [6011] +11:25:05 [ 19] [ 3] [418] +11:25:05 [ 32] [ 6] [180893] +11:25:05 [ 35] [ 32] [6213541000043318=491212014331307] +11:25:05 [ 37] [ 12] [507904268471] +11:25:05 [ 38] [ 6] [625798] +11:25:05 [ 39] [ 2] [00] +11:25:05 [ 41] [ 8] [0529LPBF] +11:25:05 [ 49] [ 3] [418] +11:25:05 [ 54] [ 40] [0001418C0000327530740002418C000032753074] +11:25:05 ============================================================================ +11:25:05 Sending to : +11:25:05 ============================================================================ +11:25:05 + + +waiting on router queue for slot.... +11:25:07 ============================================================================ +11:25:07 Slot Id : <155> +11:25:07 Transaction Type : RESPONSE +11:25:07 Received From : +11:25:07 ============================================================================ +11:25:07 FNo. Len. Field Value +11:25:07 ============================================================================ +11:25:07 [ 1] [ 4] [0210] +11:25:07 [ 2] [ 16] [6213541000043318] +11:25:07 [ 3] [ 6] [010000] +11:25:07 [ 4] [ 12] [000050000000] +11:25:07 [ 7] [ 10] [0320042410] +11:25:07 [ 11] [ 6] [268471] +11:25:07 [ 12] [ 6] [112410] +11:25:07 [ 13] [ 4] [0320] +11:25:07 [ 15] [ 4] [0320] +11:25:07 [ 18] [ 4] [6011] +11:25:07 [ 19] [ 3] [418] +11:25:07 [ 32] [ 6] [180893] +11:25:07 [ 35] [ 32] [6213541000043318=491212014331307] +11:25:07 [ 37] [ 12] [507904268471] +11:25:07 [ 38] [ 6] [625798] +11:25:07 [ 39] [ 2] [00] +11:25:07 [ 41] [ 8] [0529LPBF] +11:25:07 [ 49] [ 3] [418] +11:25:07 [ 54] [ 40] [0001418C0000327530740002418C000032753074] +11:25:07 ============================================================================ +11:25:07 Calculate Source COMM Id = 2 +11:25:07 ============================================================================ +11:25:07 + + +waiting on router queue for slot.... +11:25:18 ============================================================================ +11:25:18 Slot Id : <181> +11:25:18 Transaction Type : REQUEST +11:25:18 Received From : +11:25:18 ============================================================================ +11:25:18 FNo. Len. Field Value +11:25:18 ============================================================================ +11:25:18 [ 1] [ 4] [0200] +11:25:18 [ 2] [ 16] [6688990700321704] +11:25:18 [ 3] [ 6] [010000] +11:25:18 [ 4] [ 12] [000050000000] +11:25:18 [ 7] [ 10] [0320042424] +11:25:18 [ 11] [ 6] [268473] +11:25:18 [ 12] [ 6] [112424] +11:25:18 [ 13] [ 4] [0320] +11:25:18 [ 14] [ 4] [4405] +11:25:18 [ 15] [ 4] [0320] +11:25:18 [ 18] [ 4] [6011] +11:25:18 [ 19] [ 3] [418] +11:25:18 [ 22] [ 3] [021] +11:25:18 [ 25] [ 2] [01] +11:25:18 [ 28] [ 9] [D00002000] +11:25:18 [ 32] [ 6] [180893] +11:25:18 [ 35] [ 37] [6688990700321704=44050071170445700000] +11:25:18 [ 37] [ 12] [507904268473] +11:25:18 [ 41] [ 8] [0363CPSH] +11:25:18 [ 42] [ 15] [999999 ] +11:25:18 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:25:18 [ 49] [ 3] [418] +11:25:18 [ 52] [ 16] [7118897F42D9B20C] +11:25:18 ============================================================================ +11:25:18 + + +waiting on router queue for slot.... +11:25:18 Sending to : +11:25:18 ============================================================================ +11:25:18 Sending to : +11:25:18 ============================================================================ +11:25:18 ============================================================================ +11:25:18 Slot Id : <181> +11:25:18 Transaction Type : REQUEST +11:25:18 Received From : +11:25:18 ============================================================================ +11:25:18 FNo. Len. Field Value +11:25:18 ============================================================================ +11:25:18 [ 1] [ 4] [0200] +11:25:18 [ 2] [ 16] [6688990700321704] +11:25:18 [ 3] [ 6] [010000] +11:25:18 [ 4] [ 12] [000050000000] +11:25:18 [ 7] [ 10] [0320042424] +11:25:18 [ 11] [ 6] [268473] +11:25:18 [ 12] [ 6] [112424] +11:25:18 [ 13] [ 4] [0320] +11:25:18 [ 14] [ 4] [4405] +11:25:18 [ 15] [ 4] [0320] +11:25:18 [ 18] [ 4] [6011] +11:25:18 [ 19] [ 3] [418] +11:25:18 [ 22] [ 3] [021] +11:25:18 [ 25] [ 2] [01] +11:25:18 [ 28] [ 9] [D00002000] +11:25:18 [ 32] [ 6] [180893] +11:25:18 [ 35] [ 37] [6688990700321704=44050071170445700000] +11:25:18 [ 37] [ 12] [507904268473] +11:25:18 [ 41] [ 8] [0363CPSH] +11:25:18 [ 42] [ 15] [999999 ] +11:25:18 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:25:18 [ 49] [ 3] [418] +11:25:18 [ 52] [ 16] [7118897F42D9B20C] +11:25:18 ============================================================================ +11:25:18 + + +waiting on router queue for slot.... +11:25:18 Sending to : +11:25:18 ============================================================================ +11:25:18 ============================================================================ +11:25:18 Slot Id : <181> +11:25:18 Transaction Type : REQUEST +11:25:18 Received From : +11:25:18 ============================================================================ +11:25:18 FNo. Len. Field Value +11:25:18 ============================================================================ +11:25:18 [ 1] [ 4] [0200] +11:25:18 [ 2] [ 16] [6688990700321704] +11:25:18 [ 3] [ 6] [010000] +11:25:18 [ 4] [ 12] [000050000000] +11:25:18 [ 7] [ 10] [0320042424] +11:25:18 [ 11] [ 6] [268473] +11:25:18 [ 12] [ 6] [112424] +11:25:18 [ 13] [ 4] [0320] +11:25:18 [ 14] [ 4] [4405] +11:25:18 [ 15] [ 4] [0320] +11:25:18 [ 18] [ 4] [6011] +11:25:18 [ 19] [ 3] [418] +11:25:18 [ 22] [ 3] [021] +11:25:18 [ 25] [ 2] [01] +11:25:18 [ 28] [ 9] [D00002000] +11:25:18 [ 32] [ 6] [180893] +11:25:18 [ 35] [ 37] [6688990700321704=44050071170445700000] +11:25:18 [ 37] [ 12] [507904268473] +11:25:18 [ 41] [ 8] [0363CPSH] +11:25:18 [ 42] [ 15] [999999 ] +11:25:18 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:25:18 [ 49] [ 3] [418] +11:25:18 [ 52] [ 16] [3280785989B0DC01] +11:25:18 ============================================================================ +11:25:18 + + +waiting on router queue for slot.... +11:25:18 Sending to : <0> +11:25:18 ============================================================================ +11:25:18 ============================================================================ +11:25:18 Slot Id : <181> +11:25:18 Transaction Type : RESPONSE +11:25:18 Received From : +11:25:18 ============================================================================ +11:25:18 FNo. Len. Field Value +11:25:18 ============================================================================ +11:25:18 [ 1] [ 4] [0210] +11:25:18 [ 2] [ 16] [6688990700321704] +11:25:18 [ 3] [ 6] [010000] +11:25:18 [ 4] [ 12] [000050000000] +11:25:18 [ 7] [ 10] [0320042424] +11:25:18 [ 11] [ 6] [268473] +11:25:18 [ 12] [ 6] [112424] +11:25:18 [ 13] [ 4] [0320] +11:25:18 [ 15] [ 4] [0320] +11:25:18 [ 18] [ 4] [6011] +11:25:18 [ 19] [ 3] [418] +11:25:18 [ 22] [ 3] [021] +11:25:18 [ 32] [ 6] [180893] +11:25:18 [ 35] [ 37] [6688990700321704=44050071170445700000] +11:25:18 [ 37] [ 12] [507904268473] +11:25:18 [ 39] [ 2] [14] +11:25:18 [ 41] [ 8] [0363CPSH] +11:25:18 [ 49] [ 3] [418] +11:25:18 ============================================================================ +11:25:18 Sending to : +11:25:18 ============================================================================ +11:25:18 + + +waiting on router queue for slot.... +11:25:19 ============================================================================ +11:25:19 Slot Id : <198> +11:25:19 Transaction Type : REQUEST +11:25:19 Received From : +11:25:19 ============================================================================ +11:25:19 FNo. Len. Field Value +11:25:19 ============================================================================ +11:25:19 [ 1] [ 4] [0800] +11:25:19 [ 7] [ 10] [0320042427] +11:25:19 [ 11] [ 6] [156085] +11:25:19 [ 70] [ 3] [301] +11:25:19 ============================================================================ +11:25:19 + + +waiting on router queue for slot.... +11:25:19 Sending to : +11:25:19 ============================================================================ +11:25:19 ============================================================================ +11:25:19 Slot Id : <198> +11:25:19 Transaction Type : RESPONSE +11:25:19 Received From : +11:25:19 ============================================================================ +11:25:19 FNo. Len. Field Value +11:25:19 ============================================================================ +11:25:19 [ 1] [ 4] [0810] +11:25:19 [ 7] [ 10] [0320042427] +11:25:19 [ 11] [ 6] [156085] +11:25:19 [ 39] [ 2] [00] +11:25:19 [ 70] [ 3] [301] +11:25:19 ============================================================================ +11:25:19 Calculate Source COMM Id = 2 +11:25:19 ============================================================================ +11:25:19 + + +waiting on router queue for slot.... +11:25:20 ============================================================================ +11:25:20 Slot Id : <181> +11:25:20 Transaction Type : RESPONSE +11:25:20 Received From : +11:25:20 ============================================================================ +11:25:20 FNo. Len. Field Value +11:25:20 ============================================================================ +11:25:20 [ 1] [ 4] [0210] +11:25:20 [ 2] [ 16] [6688990700321704] +11:25:20 [ 3] [ 6] [010000] +11:25:20 [ 4] [ 12] [000050000000] +11:25:20 [ 7] [ 10] [0320042424] +11:25:20 [ 11] [ 6] [268473] +11:25:20 [ 12] [ 6] [112424] +11:25:20 [ 13] [ 4] [0320] +11:25:20 [ 15] [ 4] [0320] +11:25:20 [ 18] [ 4] [6011] +11:25:20 [ 19] [ 3] [418] +11:25:20 [ 22] [ 3] [021] +11:25:20 [ 32] [ 6] [180893] +11:25:20 [ 35] [ 37] [6688990700321704=44050071170445700000] +11:25:20 [ 37] [ 12] [507904268473] +11:25:20 [ 39] [ 2] [14] +11:25:20 [ 41] [ 8] [0363CPSH] +11:25:20 [ 49] [ 3] [418] +11:25:20 ============================================================================ +11:25:20 Calculate Source COMM Id = 2 +11:25:20 ============================================================================ +11:25:20 + + +waiting on router queue for slot.... +11:25:29 ============================================================================ +11:25:29 Slot Id : <201> +11:25:29 Transaction Type : REQUEST +11:25:29 Received From : +11:25:29 ============================================================================ +11:25:29 FNo. Len. Field Value +11:25:29 ============================================================================ +11:25:29 [ 1] [ 4] [0800] +11:25:29 [ 7] [ 10] [0320112516] +11:25:29 [ 11] [ 6] [042793] +11:25:29 [ 37] [ 12] [507911042793] +11:25:29 [ 70] [ 3] [ ] +11:25:29 ============================================================================ +11:25:29 + + +waiting on router queue for slot.... +11:25:29 Sending to : +11:25:29 ============================================================================ +11:25:29 ============================================================================ +11:25:29 Slot Id : <201> +11:25:29 Transaction Type : RESPONSE +11:25:29 Received From : +11:25:29 ============================================================================ +11:25:29 FNo. Len. Field Value +11:25:29 ============================================================================ +11:25:29 [ 1] [ 4] [0810] +11:25:29 [ 7] [ 10] [0320112516] +11:25:29 [ 11] [ 6] [042793] +11:25:29 [ 37] [ 12] [507911042793] +11:25:29 [ 39] [ 2] [91] +11:25:29 [ 70] [ 3] [ ] +11:25:29 ============================================================================ +11:25:29 Calculate Source COMM Id = 3 +11:25:29 ============================================================================ +11:25:29 + + +waiting on router queue for slot.... +11:25:32 ============================================================================ +11:25:32 Slot Id : <194> +11:25:32 Transaction Type : REQUEST +11:25:32 Received From : +11:25:32 ============================================================================ +11:25:32 FNo. Len. Field Value +11:25:32 ============================================================================ +11:25:32 [ 1] [ 4] [0200] +11:25:32 [ 2] [ 16] [6688990107910109] +11:25:32 [ 3] [ 6] [011000] +11:25:32 [ 4] [ 12] [000004000000] +11:25:32 [ 7] [ 10] [0320113319] +11:25:32 [ 11] [ 6] [223703] +11:25:32 [ 12] [ 6] [113319] +11:25:32 [ 13] [ 4] [0320] +11:25:32 [ 14] [ 4] [4404] +11:25:32 [ 15] [ 4] [0320] +11:25:32 [ 18] [ 4] [6011] +11:25:32 [ 22] [ 3] [900] +11:25:32 [ 25] [ 2] [02] +11:25:32 [ 28] [ 9] [D00002000] +11:25:32 [ 32] [ 6] [220699] +11:25:32 [ 35] [ 37] [6688990107910109=44041231010988100000] +11:25:32 [ 37] [ 12] [507900118747] +11:25:32 [ 41] [ 8] [01001100] +11:25:32 [ 42] [ 15] [APTRA ] +11:25:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:25:32 [ 49] [ 3] [418] +11:25:32 [ 52] [ 16] [76964380ACDC5E39] +11:25:32 ============================================================================ +11:25:32 + + +waiting on router queue for slot.... +11:25:32 Sending to : +11:25:32 ============================================================================ +11:25:32 Sending to : +11:25:32 ============================================================================ +11:25:32 ============================================================================ +11:25:32 Slot Id : <194> +11:25:32 Transaction Type : REQUEST +11:25:32 Received From : +11:25:32 ============================================================================ +11:25:32 FNo. Len. Field Value +11:25:32 ============================================================================ +11:25:32 [ 1] [ 4] [0200] +11:25:32 [ 2] [ 16] [6688990107910109] +11:25:32 [ 3] [ 6] [011000] +11:25:32 [ 4] [ 12] [000004000000] +11:25:32 [ 7] [ 10] [0320113319] +11:25:32 [ 11] [ 6] [223703] +11:25:32 [ 12] [ 6] [113319] +11:25:32 [ 13] [ 4] [0320] +11:25:32 [ 14] [ 4] [4404] +11:25:32 [ 15] [ 4] [0320] +11:25:32 [ 18] [ 4] [6011] +11:25:32 [ 22] [ 3] [900] +11:25:32 [ 25] [ 2] [02] +11:25:32 [ 28] [ 9] [D00002000] +11:25:32 [ 32] [ 6] [220699] +11:25:32 [ 35] [ 37] [6688990107910109=44041231010988100000] +11:25:32 [ 37] [ 12] [507900118747] +11:25:32 [ 41] [ 8] [01001100] +11:25:32 [ 42] [ 15] [APTRA ] +11:25:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:25:32 [ 49] [ 3] [418] +11:25:32 [ 52] [ 16] [76964380ACDC5E39] +11:25:32 ============================================================================ +11:25:32 + + +waiting on router queue for slot.... +11:25:32 Sending to : +11:25:32 ============================================================================ +11:25:32 ============================================================================ +11:25:32 Slot Id : <194> +11:25:32 Transaction Type : REQUEST +11:25:32 Received From : +11:25:32 ============================================================================ +11:25:32 FNo. Len. Field Value +11:25:32 ============================================================================ +11:25:32 [ 1] [ 4] [0200] +11:25:32 [ 2] [ 16] [6688990107910109] +11:25:32 [ 3] [ 6] [011000] +11:25:32 [ 4] [ 12] [000004000000] +11:25:32 [ 7] [ 10] [0320113319] +11:25:32 [ 11] [ 6] [223703] +11:25:32 [ 12] [ 6] [113319] +11:25:32 [ 13] [ 4] [0320] +11:25:32 [ 14] [ 4] [4404] +11:25:32 [ 15] [ 4] [0320] +11:25:32 [ 18] [ 4] [6011] +11:25:32 [ 22] [ 3] [900] +11:25:32 [ 25] [ 2] [02] +11:25:32 [ 28] [ 9] [D00002000] +11:25:32 [ 32] [ 6] [220699] +11:25:32 [ 35] [ 37] [6688990107910109=44041231010988100000] +11:25:32 [ 37] [ 12] [507900118747] +11:25:32 [ 41] [ 8] [01001100] +11:25:32 [ 42] [ 15] [APTRA ] +11:25:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:25:32 [ 49] [ 3] [418] +11:25:32 [ 52] [ 16] [12451265C7C16425] +11:25:32 ============================================================================ +11:25:32 + + +waiting on router queue for slot.... +11:25:32 Sending to : <0> +11:25:32 ============================================================================ +11:25:32 ============================================================================ +11:25:32 Slot Id : <194> +11:25:32 Transaction Type : RESPONSE +11:25:32 Received From : +11:25:32 ============================================================================ +11:25:32 FNo. Len. Field Value +11:25:32 ============================================================================ +11:25:32 [ 1] [ 4] [0210] +11:25:32 [ 2] [ 16] [6688990107910109] +11:25:32 [ 3] [ 6] [011000] +11:25:32 [ 4] [ 12] [000004000000] +11:25:32 [ 7] [ 10] [0320113319] +11:25:32 [ 11] [ 6] [223703] +11:25:32 [ 12] [ 6] [113319] +11:25:32 [ 13] [ 4] [0320] +11:25:32 [ 15] [ 4] [0320] +11:25:32 [ 18] [ 4] [6011] +11:25:32 [ 22] [ 3] [900] +11:25:32 [ 32] [ 6] [220699] +11:25:32 [ 35] [ 37] [6688990107910109=44041231010988100000] +11:25:32 [ 37] [ 12] [507900118747] +11:25:32 [ 39] [ 2] [14] +11:25:32 [ 41] [ 8] [01001100] +11:25:32 [ 49] [ 3] [418] +11:25:32 ============================================================================ +11:25:32 Sending to : +11:25:32 ============================================================================ +11:25:32 + + +waiting on router queue for slot.... +11:25:33 ============================================================================ +11:25:33 Slot Id : <194> +11:25:33 Transaction Type : RESPONSE +11:25:33 Received From : +11:25:33 ============================================================================ +11:25:33 FNo. Len. Field Value +11:25:33 ============================================================================ +11:25:33 [ 1] [ 4] [0210] +11:25:33 [ 2] [ 16] [6688990107910109] +11:25:33 [ 3] [ 6] [011000] +11:25:33 [ 4] [ 12] [000004000000] +11:25:33 [ 7] [ 10] [0320113319] +11:25:33 [ 11] [ 6] [223703] +11:25:33 [ 12] [ 6] [113319] +11:25:33 [ 13] [ 4] [0320] +11:25:33 [ 15] [ 4] [0320] +11:25:33 [ 18] [ 4] [6011] +11:25:33 [ 22] [ 3] [900] +11:25:33 [ 32] [ 6] [220699] +11:25:33 [ 35] [ 37] [6688990107910109=44041231010988100000] +11:25:33 [ 37] [ 12] [507900118747] +11:25:33 [ 39] [ 2] [14] +11:25:33 [ 41] [ 8] [01001100] +11:25:33 [ 49] [ 3] [418] +11:25:33 ============================================================================ +11:25:33 Calculate Source COMM Id = 1 +11:25:33 ============================================================================ +11:25:33 + + +waiting on router queue for slot.... +11:25:35 ============================================================================ +11:25:35 Slot Id : <214> +11:25:35 Transaction Type : REQUEST +11:25:35 Received From : +11:25:35 ============================================================================ +11:25:35 FNo. Len. Field Value +11:25:35 ============================================================================ +11:25:35 [ 1] [ 4] [0800] +11:25:35 [ 7] [ 10] [0320042442] +11:25:35 [ 11] [ 6] [156086] +11:25:35 [ 70] [ 3] [301] +11:25:35 ============================================================================ +11:25:35 + + +waiting on router queue for slot.... +11:25:35 Sending to : +11:25:35 ============================================================================ +11:25:35 ============================================================================ +11:25:35 Slot Id : <214> +11:25:35 Transaction Type : RESPONSE +11:25:35 Received From : +11:25:35 ============================================================================ +11:25:35 FNo. Len. Field Value +11:25:35 ============================================================================ +11:25:35 [ 1] [ 4] [0810] +11:25:35 [ 7] [ 10] [0320042442] +11:25:35 [ 11] [ 6] [156086] +11:25:35 [ 39] [ 2] [00] +11:25:35 [ 70] [ 3] [301] +11:25:35 ============================================================================ +11:25:35 Calculate Source COMM Id = 2 +11:25:35 ============================================================================ +11:25:35 + + +waiting on router queue for slot.... +11:25:41 ============================================================================ +11:25:41 Slot Id : <165> +11:25:41 Transaction Type : REQUEST +11:25:41 Received From : +11:25:41 ============================================================================ +11:25:41 FNo. Len. Field Value +11:25:41 ============================================================================ +11:25:41 [ 1] [ 4] [0200] +11:25:41 [ 2] [ 16] [6213541000119936] +11:25:41 [ 3] [ 6] [010000] +11:25:41 [ 4] [ 12] [000100000000] +11:25:41 [ 7] [ 10] [0320112332] +11:25:41 [ 11] [ 6] [941175] +11:25:41 [ 12] [ 6] [112332] +11:25:41 [ 13] [ 4] [0320] +11:25:41 [ 15] [ 4] [0320] +11:25:41 [ 18] [ 4] [6011] +11:25:41 [ 19] [ 3] [418] +11:25:41 [ 22] [ 3] [021] +11:25:41 [ 25] [ 2] [01] +11:25:41 [ 28] [ 9] [D00002000] +11:25:41 [ 32] [ 6] [668899] +11:25:41 [ 35] [ 32] [6213541000119936=491212011993560] +11:25:41 [ 37] [ 12] [507901963492] +11:25:41 [ 41] [ 8] [03020019] +11:25:41 [ 42] [ 15] [APT ] +11:25:41 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:25:41 [ 49] [ 3] [418] +11:25:41 [ 52] [ 16] [F12E25FDFF2B95EA] +11:25:41 ============================================================================ +11:25:41 + + +waiting on router queue for slot.... +11:25:41 Sending to : +11:25:41 ============================================================================ +11:25:41 Sending to : +11:25:41 ============================================================================ +11:25:41 ============================================================================ +11:25:41 Slot Id : <165> +11:25:41 Transaction Type : REQUEST +11:25:41 Received From : +11:25:41 ============================================================================ +11:25:41 FNo. Len. Field Value +11:25:41 ============================================================================ +11:25:41 [ 1] [ 4] [0200] +11:25:41 [ 2] [ 16] [6213541000119936] +11:25:41 [ 3] [ 6] [010000] +11:25:41 [ 4] [ 12] [000100000000] +11:25:41 [ 7] [ 10] [0320112332] +11:25:41 [ 11] [ 6] [941175] +11:25:41 [ 12] [ 6] [112332] +11:25:41 [ 13] [ 4] [0320] +11:25:41 [ 15] [ 4] [0320] +11:25:41 [ 18] [ 4] [6011] +11:25:41 [ 19] [ 3] [418] +11:25:41 [ 22] [ 3] [021] +11:25:41 [ 25] [ 2] [01] +11:25:41 [ 28] [ 9] [D00002000] +11:25:41 [ 32] [ 6] [668899] +11:25:41 [ 35] [ 32] [6213541000119936=491212011993560] +11:25:41 [ 37] [ 12] [507901963492] +11:25:41 [ 41] [ 8] [03020019] +11:25:41 [ 42] [ 15] [APT ] +11:25:41 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:25:41 [ 49] [ 3] [418] +11:25:41 [ 52] [ 16] [F12E25FDFF2B95EA] +11:25:41 ============================================================================ +11:25:41 + + +waiting on router queue for slot.... +11:25:41 Sending to : +11:25:41 ============================================================================ +11:25:41 ============================================================================ +11:25:41 Slot Id : <165> +11:25:41 Transaction Type : REQUEST +11:25:41 Received From : +11:25:41 ============================================================================ +11:25:41 FNo. Len. Field Value +11:25:41 ============================================================================ +11:25:41 [ 1] [ 4] [0200] +11:25:41 [ 2] [ 16] [6213541000119936] +11:25:41 [ 3] [ 6] [010000] +11:25:41 [ 4] [ 12] [000100000000] +11:25:41 [ 7] [ 10] [0320112332] +11:25:41 [ 11] [ 6] [941175] +11:25:41 [ 12] [ 6] [112332] +11:25:41 [ 13] [ 4] [0320] +11:25:41 [ 15] [ 4] [0320] +11:25:41 [ 18] [ 4] [6011] +11:25:41 [ 19] [ 3] [418] +11:25:41 [ 22] [ 3] [021] +11:25:41 [ 25] [ 2] [01] +11:25:41 [ 28] [ 9] [D00002000] +11:25:41 [ 32] [ 6] [668899] +11:25:41 [ 35] [ 32] [6213541000119936=491212011993560] +11:25:41 [ 37] [ 12] [507901963492] +11:25:41 [ 41] [ 8] [03020019] +11:25:41 [ 42] [ 15] [APT ] +11:25:41 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:25:41 [ 49] [ 3] [418] +11:25:41 [ 52] [ 16] [302E25B293EBF614] +11:25:41 ============================================================================ +11:25:41 + + +waiting on router queue for slot.... +11:25:41 Sending to : <0> +11:25:41 ============================================================================ +11:25:42 ============================================================================ +11:25:42 Slot Id : <165> +11:25:42 Transaction Type : RESPONSE +11:25:42 Received From : +11:25:42 ============================================================================ +11:25:42 FNo. Len. Field Value +11:25:42 ============================================================================ +11:25:42 [ 1] [ 4] [0210] +11:25:42 [ 2] [ 16] [6213541000119936] +11:25:42 [ 3] [ 6] [010000] +11:25:42 [ 4] [ 12] [000100000000] +11:25:42 [ 7] [ 10] [0320112332] +11:25:42 [ 11] [ 6] [941175] +11:25:42 [ 12] [ 6] [112332] +11:25:42 [ 13] [ 4] [0320] +11:25:42 [ 15] [ 4] [0320] +11:25:42 [ 18] [ 4] [6011] +11:25:42 [ 19] [ 3] [418] +11:25:42 [ 32] [ 6] [668899] +11:25:42 [ 35] [ 32] [6213541000119936=491212011993560] +11:25:42 [ 37] [ 12] [507901963492] +11:25:42 [ 38] [ 6] [531080] +11:25:42 [ 39] [ 2] [00] +11:25:42 [ 41] [ 8] [03020019] +11:25:42 [ 49] [ 3] [418] +11:25:42 [ 54] [ 40] [0001418C0002984404610002418C000298440461] +11:25:42 ============================================================================ +11:25:42 Sending to : +11:25:42 ============================================================================ +11:25:42 + + +waiting on router queue for slot.... +11:25:42 ============================================================================ +11:25:42 Slot Id : <209> +11:25:42 Transaction Type : REQUEST +11:25:42 Received From : +11:25:42 ============================================================================ +11:25:42 FNo. Len. Field Value +11:25:42 ============================================================================ +11:25:42 [ 1] [ 4] [0200] +11:25:42 [ 2] [ 16] [6213542000038332] +11:25:42 [ 3] [ 6] [010000] +11:25:42 [ 4] [ 12] [000070000000] +11:25:42 [ 7] [ 10] [0320112333] +11:25:42 [ 11] [ 6] [941176] +11:25:42 [ 12] [ 6] [112333] +11:25:42 [ 13] [ 4] [0320] +11:25:42 [ 15] [ 4] [0320] +11:25:42 [ 18] [ 4] [6011] +11:25:42 [ 19] [ 3] [418] +11:25:42 [ 22] [ 3] [021] +11:25:42 [ 25] [ 2] [01] +11:25:42 [ 28] [ 9] [D00002000] +11:25:42 [ 32] [ 6] [668899] +11:25:42 [ 35] [ 32] [6213542000038332=491212013833814] +11:25:42 [ 37] [ 12] [507902150953] +11:25:42 [ 41] [ 8] [03020025] +11:25:42 [ 42] [ 15] [APT ] +11:25:42 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +11:25:42 [ 49] [ 3] [418] +11:25:42 [ 52] [ 16] [7F55B54611B9F0DA] +11:25:42 ============================================================================ +11:25:42 + + +waiting on router queue for slot.... +11:25:42 Sending to : +11:25:42 ============================================================================ +11:25:42 Sending to : +11:25:42 ============================================================================ +11:25:43 ============================================================================ +11:25:43 Slot Id : <209> +11:25:43 Transaction Type : REQUEST +11:25:43 Received From : +11:25:43 ============================================================================ +11:25:43 FNo. Len. Field Value +11:25:43 ============================================================================ +11:25:43 [ 1] [ 4] [0200] +11:25:43 [ 2] [ 16] [6213542000038332] +11:25:43 [ 3] [ 6] [010000] +11:25:43 [ 4] [ 12] [000070000000] +11:25:43 [ 7] [ 10] [0320112333] +11:25:43 [ 11] [ 6] [941176] +11:25:43 [ 12] [ 6] [112333] +11:25:43 [ 13] [ 4] [0320] +11:25:43 [ 15] [ 4] [0320] +11:25:43 [ 18] [ 4] [6011] +11:25:43 [ 19] [ 3] [418] +11:25:43 [ 22] [ 3] [021] +11:25:43 [ 25] [ 2] [01] +11:25:43 [ 28] [ 9] [D00002000] +11:25:43 [ 32] [ 6] [668899] +11:25:43 [ 35] [ 32] [6213542000038332=491212013833814] +11:25:43 [ 37] [ 12] [507902150953] +11:25:43 [ 41] [ 8] [03020025] +11:25:43 [ 42] [ 15] [APT ] +11:25:43 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +11:25:43 [ 49] [ 3] [418] +11:25:43 [ 52] [ 16] [7F55B54611B9F0DA] +11:25:43 ============================================================================ +11:25:43 + + +waiting on router queue for slot.... +11:25:43 Sending to : +11:25:43 ============================================================================ +11:25:43 ============================================================================ +11:25:43 Slot Id : <209> +11:25:43 Transaction Type : REQUEST +11:25:43 Received From : +11:25:43 ============================================================================ +11:25:43 FNo. Len. Field Value +11:25:43 ============================================================================ +11:25:43 [ 1] [ 4] [0200] +11:25:43 [ 2] [ 16] [6213542000038332] +11:25:43 [ 3] [ 6] [010000] +11:25:43 [ 4] [ 12] [000070000000] +11:25:43 [ 7] [ 10] [0320112333] +11:25:43 [ 11] [ 6] [941176] +11:25:43 [ 12] [ 6] [112333] +11:25:43 [ 13] [ 4] [0320] +11:25:43 [ 15] [ 4] [0320] +11:25:43 [ 18] [ 4] [6011] +11:25:43 [ 19] [ 3] [418] +11:25:43 [ 22] [ 3] [021] +11:25:43 [ 25] [ 2] [01] +11:25:43 [ 28] [ 9] [D00002000] +11:25:43 [ 32] [ 6] [668899] +11:25:43 [ 35] [ 32] [6213542000038332=491212013833814] +11:25:43 [ 37] [ 12] [507902150953] +11:25:43 [ 41] [ 8] [03020025] +11:25:43 [ 42] [ 15] [APT ] +11:25:43 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +11:25:43 [ 49] [ 3] [418] +11:25:43 [ 52] [ 16] [5EF0F5485D2E2CA9] +11:25:43 ============================================================================ +11:25:43 + + +waiting on router queue for slot.... +11:25:43 Sending to : <0> +11:25:43 ============================================================================ +11:25:43 ============================================================================ +11:25:43 Slot Id : <165> +11:25:43 Transaction Type : RESPONSE +11:25:43 Received From : +11:25:43 ============================================================================ +11:25:43 FNo. Len. Field Value +11:25:43 ============================================================================ +11:25:43 [ 1] [ 4] [0210] +11:25:43 [ 2] [ 16] [6213541000119936] +11:25:43 [ 3] [ 6] [010000] +11:25:43 [ 4] [ 12] [000100000000] +11:25:43 [ 7] [ 10] [0320112332] +11:25:43 [ 11] [ 6] [941175] +11:25:43 [ 12] [ 6] [112332] +11:25:43 [ 13] [ 4] [0320] +11:25:43 [ 15] [ 4] [0320] +11:25:43 [ 18] [ 4] [6011] +11:25:43 [ 19] [ 3] [418] +11:25:43 [ 32] [ 6] [668899] +11:25:43 [ 35] [ 32] [6213541000119936=491212011993560] +11:25:43 [ 37] [ 12] [507901963492] +11:25:43 [ 38] [ 6] [531080] +11:25:43 [ 39] [ 2] [00] +11:25:43 [ 41] [ 8] [03020019] +11:25:43 [ 49] [ 3] [418] +11:25:43 [ 54] [ 40] [0001418C0002984404610002418C000298440461] +11:25:43 ============================================================================ +11:25:43 Calculate Source COMM Id = 4 +11:25:43 ============================================================================ +11:25:43 + + +waiting on router queue for slot.... +11:25:43 ============================================================================ +11:25:43 Slot Id : <209> +11:25:43 Transaction Type : RESPONSE +11:25:43 Received From : +11:25:43 ============================================================================ +11:25:43 FNo. Len. Field Value +11:25:43 ============================================================================ +11:25:43 [ 1] [ 4] [0210] +11:25:43 [ 2] [ 16] [6213542000038332] +11:25:43 [ 3] [ 6] [010000] +11:25:43 [ 4] [ 12] [000070000000] +11:25:43 [ 7] [ 10] [0320112333] +11:25:43 [ 11] [ 6] [941176] +11:25:43 [ 12] [ 6] [112333] +11:25:43 [ 13] [ 4] [0320] +11:25:43 [ 15] [ 4] [0320] +11:25:43 [ 18] [ 4] [6011] +11:25:43 [ 19] [ 3] [418] +11:25:43 [ 32] [ 6] [668899] +11:25:43 [ 35] [ 32] [6213542000038332=491212013833814] +11:25:43 [ 37] [ 12] [507902150953] +11:25:43 [ 38] [ 6] [909637] +11:25:43 [ 39] [ 2] [00] +11:25:43 [ 41] [ 8] [03020025] +11:25:43 [ 49] [ 3] [418] +11:25:43 [ 54] [ 40] [0001418C0001096111460002418C000109611146] +11:25:43 ============================================================================ +11:25:43 Sending to : +11:25:43 ============================================================================ +11:25:43 + + +waiting on router queue for slot.... +11:25:44 ============================================================================ +11:25:44 Slot Id : <195> +11:25:44 Transaction Type : REQUEST +11:25:44 Received From : +11:25:44 ============================================================================ +11:25:44 FNo. Len. Field Value +11:25:44 ============================================================================ +11:25:44 [ 1] [ 4] [0800] +11:25:44 [ 2] [ 5] [02531] +11:25:44 [ 3] [ 6] [579118] +11:25:44 [ 7] [ 10] [0320042544] +11:25:44 [ 11] [ 6] [807075] +11:25:44 [ 15] [ 10] [0320042544] +11:25:44 [ 37] [ 11] [57911807075] +11:25:44 [ 70] [ 3] [001] +11:25:44 ============================================================================ +11:25:44 + + +waiting on router queue for slot.... +11:25:44 ============================================================================ +11:25:44 Slot Id : <195> +11:25:44 Transaction Type : RESPONSE +11:25:44 Received From : +11:25:44 ============================================================================ +11:25:44 FNo. Len. Field Value +11:25:44 ============================================================================ +11:25:44 [ 1] [ 4] [0810] +11:25:44 [ 7] [ 10] [0320042544] +11:25:44 [ 11] [ 6] [807075] +11:25:44 [ 15] [ 4] [0320] +11:25:44 [ 37] [ 12] [57911807075] +11:25:44 [ 39] [ 2] [00] +11:25:44 [ 70] [ 3] [001] +11:25:44 ============================================================================ +11:25:44 Sending to : +11:25:44 ============================================================================ +11:25:44 + + +waiting on router queue for slot.... +11:25:45 ============================================================================ +11:25:45 Slot Id : <209> +11:25:45 Transaction Type : RESPONSE +11:25:45 Received From : +11:25:45 ============================================================================ +11:25:45 FNo. Len. Field Value +11:25:45 ============================================================================ +11:25:45 [ 1] [ 4] [0210] +11:25:45 [ 2] [ 16] [6213542000038332] +11:25:45 [ 3] [ 6] [010000] +11:25:45 [ 4] [ 12] [000070000000] +11:25:45 [ 7] [ 10] [0320112333] +11:25:45 [ 11] [ 6] [941176] +11:25:45 [ 12] [ 6] [112333] +11:25:45 [ 13] [ 4] [0320] +11:25:45 [ 15] [ 4] [0320] +11:25:45 [ 18] [ 4] [6011] +11:25:45 [ 19] [ 3] [418] +11:25:45 [ 32] [ 6] [668899] +11:25:45 [ 35] [ 32] [6213542000038332=491212013833814] +11:25:45 [ 37] [ 12] [507902150953] +11:25:45 [ 38] [ 6] [909637] +11:25:45 [ 39] [ 2] [00] +11:25:45 [ 41] [ 8] [03020025] +11:25:45 [ 49] [ 3] [418] +11:25:45 [ 54] [ 40] [0001418C0001096111460002418C000109611146] +11:25:45 ============================================================================ +11:25:45 Calculate Source COMM Id = 4 +11:25:45 ============================================================================ +11:25:45 + + +waiting on router queue for slot.... +11:25:50 ============================================================================ +11:25:50 Slot Id : <184> +11:25:50 Transaction Type : REQUEST +11:25:50 Received From : +11:25:50 ============================================================================ +11:25:50 FNo. Len. Field Value +11:25:50 ============================================================================ +11:25:50 [ 1] [ 4] [0800] +11:25:50 [ 7] [ 10] [0320042458] +11:25:50 [ 11] [ 6] [156087] +11:25:50 [ 70] [ 3] [301] +11:25:50 ============================================================================ +11:25:50 + + +waiting on router queue for slot.... +11:25:50 Sending to : +11:25:50 ============================================================================ +11:25:50 ============================================================================ +11:25:50 Slot Id : <184> +11:25:50 Transaction Type : RESPONSE +11:25:50 Received From : +11:25:50 ============================================================================ +11:25:50 FNo. Len. Field Value +11:25:50 ============================================================================ +11:25:50 [ 1] [ 4] [0810] +11:25:50 [ 7] [ 10] [0320042458] +11:25:50 [ 11] [ 6] [156087] +11:25:50 [ 39] [ 2] [00] +11:25:50 [ 70] [ 3] [301] +11:25:50 ============================================================================ +11:25:50 Calculate Source COMM Id = 2 +11:25:50 ============================================================================ +11:25:50 + + +waiting on router queue for slot.... +11:26:06 ============================================================================ +11:26:06 Slot Id : <178> +11:26:06 Transaction Type : REQUEST +11:26:06 Received From : +11:26:06 ============================================================================ +11:26:06 FNo. Len. Field Value +11:26:06 ============================================================================ +11:26:06 [ 1] [ 4] [0800] +11:26:06 [ 7] [ 10] [0320042514] +11:26:06 [ 11] [ 6] [156088] +11:26:06 [ 70] [ 3] [301] +11:26:06 ============================================================================ +11:26:06 + + +waiting on router queue for slot.... +11:26:06 Sending to : +11:26:06 ============================================================================ +11:26:06 ============================================================================ +11:26:06 Slot Id : <178> +11:26:06 Transaction Type : RESPONSE +11:26:06 Received From : +11:26:06 ============================================================================ +11:26:06 FNo. Len. Field Value +11:26:06 ============================================================================ +11:26:06 [ 1] [ 4] [0810] +11:26:06 [ 7] [ 10] [0320042514] +11:26:06 [ 11] [ 6] [156088] +11:26:06 [ 39] [ 2] [00] +11:26:06 [ 70] [ 3] [301] +11:26:06 ============================================================================ +11:26:06 Calculate Source COMM Id = 2 +11:26:06 ============================================================================ +11:26:06 + + +waiting on router queue for slot.... +11:26:17 ============================================================================ +11:26:17 Slot Id : <213> +11:26:17 Transaction Type : REQUEST +11:26:17 Received From : +11:26:17 ============================================================================ +11:26:17 FNo. Len. Field Value +11:26:17 ============================================================================ +11:26:17 [ 1] [ 4] [0800] +11:26:17 [ 7] [ 10] [0320042524] +11:26:17 [ 11] [ 6] [156089] +11:26:17 [ 70] [ 3] [301] +11:26:17 ============================================================================ +11:26:17 + + +waiting on router queue for slot.... +11:26:17 Sending to : +11:26:17 ============================================================================ +11:26:17 ============================================================================ +11:26:17 Slot Id : <213> +11:26:17 Transaction Type : RESPONSE +11:26:17 Received From : +11:26:17 ============================================================================ +11:26:17 FNo. Len. Field Value +11:26:17 ============================================================================ +11:26:17 [ 1] [ 4] [0810] +11:26:17 [ 7] [ 10] [0320042524] +11:26:17 [ 11] [ 6] [156089] +11:26:17 [ 39] [ 2] [00] +11:26:17 [ 70] [ 3] [301] +11:26:17 ============================================================================ +11:26:17 Calculate Source COMM Id = 2 +11:26:17 ============================================================================ +11:26:17 + + +waiting on router queue for slot.... +11:26:19 ============================================================================ +11:26:19 Slot Id : <193> +11:26:19 Transaction Type : REQUEST +11:26:19 Received From : +11:26:19 ============================================================================ +11:26:19 FNo. Len. Field Value +11:26:19 ============================================================================ +11:26:19 [ 1] [ 4] [0200] +11:26:19 [ 2] [ 16] [6213541000043318] +11:26:19 [ 3] [ 6] [011000] +11:26:19 [ 4] [ 12] [000020000000] +11:26:19 [ 7] [ 10] [0320042527] +11:26:19 [ 11] [ 6] [268483] +11:26:19 [ 12] [ 6] [112527] +11:26:19 [ 13] [ 4] [0320] +11:26:19 [ 14] [ 4] [4912] +11:26:19 [ 15] [ 4] [0320] +11:26:19 [ 18] [ 4] [6011] +11:26:19 [ 19] [ 3] [418] +11:26:19 [ 22] [ 3] [021] +11:26:19 [ 25] [ 2] [01] +11:26:19 [ 28] [ 9] [D00002000] +11:26:19 [ 32] [ 6] [180893] +11:26:19 [ 35] [ 32] [6213541000043318=491212014331307] +11:26:19 [ 37] [ 12] [507904268483] +11:26:19 [ 41] [ 8] [0529LPBF] +11:26:19 [ 42] [ 15] [999999 ] +11:26:19 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:26:19 [ 49] [ 3] [418] +11:26:19 [ 52] [ 16] [24525ABD38082C73] +11:26:19 ============================================================================ +11:26:19 + + +waiting on router queue for slot.... +11:26:19 Sending to : +11:26:19 ============================================================================ +11:26:19 Sending to : +11:26:19 ============================================================================ +11:26:20 ============================================================================ +11:26:20 Slot Id : <193> +11:26:20 Transaction Type : REQUEST +11:26:20 Received From : +11:26:20 ============================================================================ +11:26:20 FNo. Len. Field Value +11:26:20 ============================================================================ +11:26:20 [ 1] [ 4] [0200] +11:26:20 [ 2] [ 16] [6213541000043318] +11:26:20 [ 3] [ 6] [011000] +11:26:20 [ 4] [ 12] [000020000000] +11:26:20 [ 7] [ 10] [0320042527] +11:26:20 [ 11] [ 6] [268483] +11:26:20 [ 12] [ 6] [112527] +11:26:20 [ 13] [ 4] [0320] +11:26:20 [ 14] [ 4] [4912] +11:26:20 [ 15] [ 4] [0320] +11:26:20 [ 18] [ 4] [6011] +11:26:20 [ 19] [ 3] [418] +11:26:20 [ 22] [ 3] [021] +11:26:20 [ 25] [ 2] [01] +11:26:20 [ 28] [ 9] [D00002000] +11:26:20 [ 32] [ 6] [180893] +11:26:20 [ 35] [ 32] [6213541000043318=491212014331307] +11:26:20 [ 37] [ 12] [507904268483] +11:26:20 [ 41] [ 8] [0529LPBF] +11:26:20 [ 42] [ 15] [999999 ] +11:26:20 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:26:20 [ 49] [ 3] [418] +11:26:20 [ 52] [ 16] [24525ABD38082C73] +11:26:20 ============================================================================ +11:26:20 + + +waiting on router queue for slot.... +11:26:20 Sending to : +11:26:20 ============================================================================ +11:26:20 ============================================================================ +11:26:20 Slot Id : <193> +11:26:20 Transaction Type : REQUEST +11:26:20 Received From : +11:26:20 ============================================================================ +11:26:20 FNo. Len. Field Value +11:26:20 ============================================================================ +11:26:20 [ 1] [ 4] [0200] +11:26:20 [ 2] [ 16] [6213541000043318] +11:26:20 [ 3] [ 6] [011000] +11:26:20 [ 4] [ 12] [000020000000] +11:26:20 [ 7] [ 10] [0320042527] +11:26:20 [ 11] [ 6] [268483] +11:26:20 [ 12] [ 6] [112527] +11:26:20 [ 13] [ 4] [0320] +11:26:20 [ 14] [ 4] [4912] +11:26:20 [ 15] [ 4] [0320] +11:26:20 [ 18] [ 4] [6011] +11:26:20 [ 19] [ 3] [418] +11:26:20 [ 22] [ 3] [021] +11:26:20 [ 25] [ 2] [01] +11:26:20 [ 28] [ 9] [D00002000] +11:26:20 [ 32] [ 6] [180893] +11:26:20 [ 35] [ 32] [6213541000043318=491212014331307] +11:26:20 [ 37] [ 12] [507904268483] +11:26:20 [ 41] [ 8] [0529LPBF] +11:26:20 [ 42] [ 15] [999999 ] +11:26:20 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +11:26:20 [ 49] [ 3] [418] +11:26:20 [ 52] [ 16] [E483D1EAEF02AC95] +11:26:20 ============================================================================ +11:26:20 + + +waiting on router queue for slot.... +11:26:20 Sending to : <0> +11:26:20 ============================================================================ +11:26:20 ============================================================================ +11:26:20 Slot Id : <193> +11:26:20 Transaction Type : RESPONSE +11:26:20 Received From : +11:26:20 ============================================================================ +11:26:20 FNo. Len. Field Value +11:26:20 ============================================================================ +11:26:20 [ 1] [ 4] [0210] +11:26:20 [ 2] [ 16] [6213541000043318] +11:26:20 [ 3] [ 6] [011000] +11:26:20 [ 4] [ 12] [000020000000] +11:26:20 [ 7] [ 10] [0320042527] +11:26:20 [ 11] [ 6] [268483] +11:26:20 [ 12] [ 6] [112527] +11:26:20 [ 13] [ 4] [0320] +11:26:20 [ 15] [ 4] [0320] +11:26:20 [ 18] [ 4] [6011] +11:26:20 [ 19] [ 3] [418] +11:26:20 [ 32] [ 6] [180893] +11:26:20 [ 35] [ 32] [6213541000043318=491212014331307] +11:26:20 [ 37] [ 12] [507904268483] +11:26:20 [ 38] [ 6] [071584] +11:26:20 [ 39] [ 2] [00] +11:26:20 [ 41] [ 8] [0529LPBF] +11:26:20 [ 49] [ 3] [418] +11:26:20 [ 54] [ 40] [1001418C0000125530741002418C000012553074] +11:26:20 ============================================================================ +11:26:20 Sending to : +11:26:20 ============================================================================ +11:26:20 + + +waiting on router queue for slot.... +11:26:21 ============================================================================ +11:26:21 Slot Id : <206> +11:26:21 Transaction Type : REQUEST +11:26:21 Received From : +11:26:21 ============================================================================ +11:26:21 FNo. Len. Field Value +11:26:21 ============================================================================ +11:26:21 [ 1] [ 4] [0800] +11:26:21 [ 7] [ 10] [0320042412] +11:26:21 [ 11] [ 6] [030716] +11:26:21 [ 37] [ 12] [57911030716] +11:26:21 [ 70] [ 3] [301] +11:26:21 ============================================================================ +11:26:21 + + +waiting on router queue for slot.... +11:26:21 Sending to : +11:26:21 ============================================================================ +11:26:21 ============================================================================ +11:26:21 Slot Id : <206> +11:26:21 Transaction Type : RESPONSE +11:26:21 Received From : +11:26:21 ============================================================================ +11:26:21 FNo. Len. Field Value +11:26:21 ============================================================================ +11:26:21 [ 1] [ 4] [0810] +11:26:21 [ 7] [ 10] [0320042412] +11:26:21 [ 11] [ 6] [030716] +11:26:21 [ 37] [ 12] [579110307160] +11:26:21 [ 39] [ 2] [00] +11:26:21 [ 70] [ 3] [810] +11:26:21 ============================================================================ +11:26:21 Calculate Source COMM Id = 4 +11:26:21 ============================================================================ +11:26:21 + + +waiting on router queue for slot.... +11:26:22 ============================================================================ +11:26:22 Slot Id : <193> +11:26:22 Transaction Type : RESPONSE +11:26:22 Received From : +11:26:22 ============================================================================ +11:26:22 FNo. Len. Field Value +11:26:22 ============================================================================ +11:26:22 [ 1] [ 4] [0210] +11:26:22 [ 2] [ 16] [6213541000043318] +11:26:22 [ 3] [ 6] [011000] +11:26:22 [ 4] [ 12] [000020000000] +11:26:22 [ 7] [ 10] [0320042527] +11:26:22 [ 11] [ 6] [268483] +11:26:22 [ 12] [ 6] [112527] +11:26:22 [ 13] [ 4] [0320] +11:26:22 [ 15] [ 4] [0320] +11:26:22 [ 18] [ 4] [6011] +11:26:22 [ 19] [ 3] [418] +11:26:22 [ 32] [ 6] [180893] +11:26:22 [ 35] [ 32] [6213541000043318=491212014331307] +11:26:22 [ 37] [ 12] [507904268483] +11:26:22 [ 38] [ 6] [071584] +11:26:22 [ 39] [ 2] [00] +11:26:22 [ 41] [ 8] [0529LPBF] +11:26:22 [ 49] [ 3] [418] +11:26:22 [ 54] [ 40] [1001418C0000125530741002418C000012553074] +11:26:22 ============================================================================ +11:26:22 Calculate Source COMM Id = 2 +11:26:22 ============================================================================ +11:26:22 + + +waiting on router queue for slot.... +11:26:27 ============================================================================ +11:26:27 Slot Id : <221> +11:26:27 Transaction Type : REQUEST +11:26:27 Received From : +11:26:27 ============================================================================ +11:26:27 FNo. Len. Field Value +11:26:27 ============================================================================ +11:26:27 [ 1] [ 4] [0200] +11:26:27 [ 2] [ 16] [6213545000160097] +11:26:27 [ 3] [ 6] [010000] +11:26:27 [ 4] [ 12] [000100000000] +11:26:27 [ 7] [ 10] [0320042534] +11:26:27 [ 11] [ 6] [268486] +11:26:27 [ 12] [ 6] [112534] +11:26:27 [ 13] [ 4] [0320] +11:26:27 [ 14] [ 4] [4912] +11:26:27 [ 15] [ 4] [0320] +11:26:27 [ 18] [ 4] [6011] +11:26:27 [ 19] [ 3] [418] +11:26:27 [ 22] [ 3] [021] +11:26:27 [ 25] [ 2] [01] +11:26:27 [ 28] [ 9] [D00002000] +11:26:27 [ 32] [ 6] [180893] +11:26:27 [ 35] [ 32] [6213545000160097=491212016009477] +11:26:27 [ 37] [ 12] [507904268486] +11:26:27 [ 41] [ 8] [0363CPSH] +11:26:27 [ 42] [ 15] [999999 ] +11:26:27 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:26:27 [ 49] [ 3] [418] +11:26:27 [ 52] [ 16] [BCB0EF806B45516C] +11:26:27 ============================================================================ +11:26:27 + + +waiting on router queue for slot.... +11:26:27 Sending to : +11:26:27 ============================================================================ +11:26:27 Sending to : +11:26:27 ============================================================================ +11:26:27 ============================================================================ +11:26:27 Slot Id : <221> +11:26:27 Transaction Type : REQUEST +11:26:27 Received From : +11:26:27 ============================================================================ +11:26:27 FNo. Len. Field Value +11:26:27 ============================================================================ +11:26:27 [ 1] [ 4] [0200] +11:26:27 [ 2] [ 16] [6213545000160097] +11:26:27 [ 3] [ 6] [010000] +11:26:27 [ 4] [ 12] [000100000000] +11:26:27 [ 7] [ 10] [0320042534] +11:26:27 [ 11] [ 6] [268486] +11:26:27 [ 12] [ 6] [112534] +11:26:27 [ 13] [ 4] [0320] +11:26:27 [ 14] [ 4] [4912] +11:26:27 [ 15] [ 4] [0320] +11:26:27 [ 18] [ 4] [6011] +11:26:27 [ 19] [ 3] [418] +11:26:27 [ 22] [ 3] [021] +11:26:27 [ 25] [ 2] [01] +11:26:27 [ 28] [ 9] [D00002000] +11:26:27 [ 32] [ 6] [180893] +11:26:27 [ 35] [ 32] [6213545000160097=491212016009477] +11:26:27 [ 37] [ 12] [507904268486] +11:26:27 [ 41] [ 8] [0363CPSH] +11:26:27 [ 42] [ 15] [999999 ] +11:26:27 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:26:27 [ 49] [ 3] [418] +11:26:27 [ 52] [ 16] [BCB0EF806B45516C] +11:26:27 ============================================================================ +11:26:27 + + +waiting on router queue for slot.... +11:26:27 Sending to : +11:26:27 ============================================================================ +11:26:27 ============================================================================ +11:26:27 Slot Id : <221> +11:26:27 Transaction Type : REQUEST +11:26:27 Received From : +11:26:27 ============================================================================ +11:26:27 FNo. Len. Field Value +11:26:27 ============================================================================ +11:26:27 [ 1] [ 4] [0200] +11:26:27 [ 2] [ 16] [6213545000160097] +11:26:27 [ 3] [ 6] [010000] +11:26:27 [ 4] [ 12] [000100000000] +11:26:27 [ 7] [ 10] [0320042534] +11:26:27 [ 11] [ 6] [268486] +11:26:27 [ 12] [ 6] [112534] +11:26:27 [ 13] [ 4] [0320] +11:26:27 [ 14] [ 4] [4912] +11:26:27 [ 15] [ 4] [0320] +11:26:27 [ 18] [ 4] [6011] +11:26:27 [ 19] [ 3] [418] +11:26:27 [ 22] [ 3] [021] +11:26:27 [ 25] [ 2] [01] +11:26:27 [ 28] [ 9] [D00002000] +11:26:27 [ 32] [ 6] [180893] +11:26:27 [ 35] [ 32] [6213545000160097=491212016009477] +11:26:27 [ 37] [ 12] [507904268486] +11:26:27 [ 41] [ 8] [0363CPSH] +11:26:27 [ 42] [ 15] [999999 ] +11:26:27 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:26:27 [ 49] [ 3] [418] +11:26:27 [ 52] [ 16] [789A40F2DA3135AB] +11:26:27 ============================================================================ +11:26:27 + + +waiting on router queue for slot.... +11:26:27 Sending to : <0> +11:26:27 ============================================================================ +11:26:28 ============================================================================ +11:26:28 Slot Id : <221> +11:26:28 Transaction Type : RESPONSE +11:26:28 Received From : +11:26:28 ============================================================================ +11:26:28 FNo. Len. Field Value +11:26:28 ============================================================================ +11:26:28 [ 1] [ 4] [0210] +11:26:28 [ 2] [ 16] [6213545000160097] +11:26:28 [ 3] [ 6] [010000] +11:26:28 [ 4] [ 12] [000100000000] +11:26:28 [ 7] [ 10] [0320042534] +11:26:28 [ 11] [ 6] [268486] +11:26:28 [ 12] [ 6] [112534] +11:26:28 [ 13] [ 4] [0320] +11:26:28 [ 15] [ 4] [0320] +11:26:28 [ 18] [ 4] [6011] +11:26:28 [ 19] [ 3] [418] +11:26:28 [ 32] [ 6] [180893] +11:26:28 [ 35] [ 32] [6213545000160097=491212016009477] +11:26:28 [ 37] [ 12] [507904268486] +11:26:28 [ 38] [ 6] [629031] +11:26:28 [ 39] [ 2] [00] +11:26:28 [ 41] [ 8] [0363CPSH] +11:26:28 [ 49] [ 3] [418] +11:26:28 [ 54] [ 40] [0001418C0000461998300002418C000046199830] +11:26:28 ============================================================================ +11:26:28 Sending to : +11:26:28 ============================================================================ +11:26:28 + + +waiting on router queue for slot.... +11:26:29 ============================================================================ +11:26:29 Slot Id : <221> +11:26:29 Transaction Type : RESPONSE +11:26:29 Received From : +11:26:29 ============================================================================ +11:26:29 FNo. Len. Field Value +11:26:29 ============================================================================ +11:26:29 [ 1] [ 4] [0210] +11:26:29 [ 2] [ 16] [6213545000160097] +11:26:29 [ 3] [ 6] [010000] +11:26:29 [ 4] [ 12] [000100000000] +11:26:29 [ 7] [ 10] [0320042534] +11:26:29 [ 11] [ 6] [268486] +11:26:29 [ 12] [ 6] [112534] +11:26:29 [ 13] [ 4] [0320] +11:26:29 [ 15] [ 4] [0320] +11:26:29 [ 18] [ 4] [6011] +11:26:29 [ 19] [ 3] [418] +11:26:29 [ 32] [ 6] [180893] +11:26:29 [ 35] [ 32] [6213545000160097=491212016009477] +11:26:29 [ 37] [ 12] [507904268486] +11:26:29 [ 38] [ 6] [629031] +11:26:29 [ 39] [ 2] [00] +11:26:29 [ 41] [ 8] [0363CPSH] +11:26:29 [ 49] [ 3] [418] +11:26:29 [ 54] [ 40] [0001418C0000461998300002418C000046199830] +11:26:29 ============================================================================ +11:26:29 Calculate Source COMM Id = 2 +11:26:29 ============================================================================ +11:26:29 + + +waiting on router queue for slot.... +11:26:40 ============================================================================ +11:26:40 Slot Id : <207> +11:26:40 Transaction Type : REQUEST +11:26:40 Received From : +11:26:40 ============================================================================ +11:26:40 FNo. Len. Field Value +11:26:40 ============================================================================ +11:26:40 [ 1] [ 4] [0200] +11:26:40 [ 2] [ 16] [6688990107910109] +11:26:40 [ 3] [ 6] [011000] +11:26:40 [ 4] [ 12] [000010000000] +11:26:40 [ 7] [ 10] [0320113426] +11:26:40 [ 11] [ 6] [223706] +11:26:40 [ 12] [ 6] [113426] +11:26:40 [ 13] [ 4] [0320] +11:26:40 [ 14] [ 4] [4404] +11:26:40 [ 15] [ 4] [0320] +11:26:40 [ 18] [ 4] [6011] +11:26:40 [ 22] [ 3] [900] +11:26:40 [ 25] [ 2] [02] +11:26:40 [ 28] [ 9] [D00002000] +11:26:40 [ 32] [ 6] [220699] +11:26:40 [ 35] [ 37] [6688990107910109=44041231010988100000] +11:26:40 [ 37] [ 12] [507900118749] +11:26:40 [ 41] [ 8] [01001100] +11:26:40 [ 42] [ 15] [APTRA ] +11:26:40 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:26:40 [ 49] [ 3] [418] +11:26:40 [ 52] [ 16] [76964380ACDC5E39] +11:26:40 ============================================================================ +11:26:40 + + +waiting on router queue for slot.... +11:26:40 Sending to : +11:26:40 ============================================================================ +11:26:40 Sending to : +11:26:40 ============================================================================ +11:26:40 ============================================================================ +11:26:40 Slot Id : <207> +11:26:40 Transaction Type : REQUEST +11:26:40 Received From : +11:26:40 ============================================================================ +11:26:40 FNo. Len. Field Value +11:26:40 ============================================================================ +11:26:40 [ 1] [ 4] [0200] +11:26:40 [ 2] [ 16] [6688990107910109] +11:26:40 [ 3] [ 6] [011000] +11:26:40 [ 4] [ 12] [000010000000] +11:26:40 [ 7] [ 10] [0320113426] +11:26:40 [ 11] [ 6] [223706] +11:26:40 [ 12] [ 6] [113426] +11:26:40 [ 13] [ 4] [0320] +11:26:40 [ 14] [ 4] [4404] +11:26:40 [ 15] [ 4] [0320] +11:26:40 [ 18] [ 4] [6011] +11:26:40 [ 22] [ 3] [900] +11:26:40 [ 25] [ 2] [02] +11:26:40 [ 28] [ 9] [D00002000] +11:26:40 [ 32] [ 6] [220699] +11:26:40 [ 35] [ 37] [6688990107910109=44041231010988100000] +11:26:40 [ 37] [ 12] [507900118749] +11:26:40 [ 41] [ 8] [01001100] +11:26:40 [ 42] [ 15] [APTRA ] +11:26:40 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:26:40 [ 49] [ 3] [418] +11:26:40 [ 52] [ 16] [76964380ACDC5E39] +11:26:40 ============================================================================ +11:26:40 + + +waiting on router queue for slot.... +11:26:40 Sending to : +11:26:40 ============================================================================ +11:26:40 ============================================================================ +11:26:40 Slot Id : <207> +11:26:40 Transaction Type : REQUEST +11:26:40 Received From : +11:26:40 ============================================================================ +11:26:40 FNo. Len. Field Value +11:26:40 ============================================================================ +11:26:40 [ 1] [ 4] [0200] +11:26:40 [ 2] [ 16] [6688990107910109] +11:26:40 [ 3] [ 6] [011000] +11:26:40 [ 4] [ 12] [000010000000] +11:26:40 [ 7] [ 10] [0320113426] +11:26:40 [ 11] [ 6] [223706] +11:26:40 [ 12] [ 6] [113426] +11:26:40 [ 13] [ 4] [0320] +11:26:40 [ 14] [ 4] [4404] +11:26:40 [ 15] [ 4] [0320] +11:26:40 [ 18] [ 4] [6011] +11:26:40 [ 22] [ 3] [900] +11:26:40 [ 25] [ 2] [02] +11:26:40 [ 28] [ 9] [D00002000] +11:26:40 [ 32] [ 6] [220699] +11:26:40 [ 35] [ 37] [6688990107910109=44041231010988100000] +11:26:40 [ 37] [ 12] [507900118749] +11:26:40 [ 41] [ 8] [01001100] +11:26:40 [ 42] [ 15] [APTRA ] +11:26:40 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:26:40 [ 49] [ 3] [418] +11:26:40 [ 52] [ 16] [12451265C7C16425] +11:26:40 ============================================================================ +11:26:40 + + +waiting on router queue for slot.... +11:26:40 Sending to : <0> +11:26:40 ============================================================================ +11:26:40 ============================================================================ +11:26:40 Slot Id : <207> +11:26:40 Transaction Type : RESPONSE +11:26:40 Received From : +11:26:40 ============================================================================ +11:26:40 FNo. Len. Field Value +11:26:40 ============================================================================ +11:26:40 [ 1] [ 4] [0210] +11:26:40 [ 2] [ 16] [6688990107910109] +11:26:40 [ 3] [ 6] [011000] +11:26:40 [ 4] [ 12] [000010000000] +11:26:40 [ 7] [ 10] [0320113426] +11:26:40 [ 11] [ 6] [223706] +11:26:40 [ 12] [ 6] [113426] +11:26:40 [ 13] [ 4] [0320] +11:26:40 [ 15] [ 4] [0320] +11:26:40 [ 18] [ 4] [6011] +11:26:40 [ 22] [ 3] [900] +11:26:40 [ 32] [ 6] [220699] +11:26:40 [ 35] [ 37] [6688990107910109=44041231010988100000] +11:26:40 [ 37] [ 12] [507900118749] +11:26:40 [ 39] [ 2] [14] +11:26:40 [ 41] [ 8] [01001100] +11:26:40 [ 49] [ 3] [418] +11:26:40 ============================================================================ +11:26:40 Sending to : +11:26:40 ============================================================================ +11:26:40 + + +waiting on router queue for slot.... +11:26:41 ============================================================================ +11:26:41 Slot Id : <207> +11:26:41 Transaction Type : RESPONSE +11:26:41 Received From : +11:26:41 ============================================================================ +11:26:41 FNo. Len. Field Value +11:26:41 ============================================================================ +11:26:41 [ 1] [ 4] [0210] +11:26:41 [ 2] [ 16] [6688990107910109] +11:26:41 [ 3] [ 6] [011000] +11:26:41 [ 4] [ 12] [000010000000] +11:26:41 [ 7] [ 10] [0320113426] +11:26:41 [ 11] [ 6] [223706] +11:26:41 [ 12] [ 6] [113426] +11:26:41 [ 13] [ 4] [0320] +11:26:41 [ 15] [ 4] [0320] +11:26:41 [ 18] [ 4] [6011] +11:26:41 [ 22] [ 3] [900] +11:26:41 [ 32] [ 6] [220699] +11:26:41 [ 35] [ 37] [6688990107910109=44041231010988100000] +11:26:41 [ 37] [ 12] [507900118749] +11:26:41 [ 39] [ 2] [14] +11:26:41 [ 41] [ 8] [01001100] +11:26:41 [ 49] [ 3] [418] +11:26:41 ============================================================================ +11:26:41 Calculate Source COMM Id = 1 +11:26:41 ============================================================================ +11:26:41 + + +waiting on router queue for slot.... +11:26:43 ============================================================================ +11:26:43 Slot Id : <212> +11:26:43 Transaction Type : REQUEST +11:26:43 Received From : +11:26:43 ============================================================================ +11:26:43 FNo. Len. Field Value +11:26:43 ============================================================================ +11:26:43 [ 1] [ 4] [0800] +11:26:43 [ 7] [ 10] [0320042551] +11:26:43 [ 11] [ 6] [156090] +11:26:43 [ 70] [ 3] [301] +11:26:43 ============================================================================ +11:26:43 + + +waiting on router queue for slot.... +11:26:43 Sending to : +11:26:43 ============================================================================ +11:26:43 ============================================================================ +11:26:43 Slot Id : <212> +11:26:43 Transaction Type : RESPONSE +11:26:43 Received From : +11:26:43 ============================================================================ +11:26:43 FNo. Len. Field Value +11:26:43 ============================================================================ +11:26:43 [ 1] [ 4] [0810] +11:26:43 [ 7] [ 10] [0320042551] +11:26:43 [ 11] [ 6] [156090] +11:26:43 [ 39] [ 2] [00] +11:26:43 [ 70] [ 3] [301] +11:26:43 ============================================================================ +11:26:43 Calculate Source COMM Id = 2 +11:26:43 ============================================================================ +11:26:43 + + +waiting on router queue for slot.... +11:26:46 ============================================================================ +11:26:46 Slot Id : <208> +11:26:46 Transaction Type : REQUEST +11:26:46 Received From : +11:26:46 ============================================================================ +11:26:46 FNo. Len. Field Value +11:26:46 ============================================================================ +11:26:46 [ 1] [ 4] [0800] +11:26:46 [ 2] [ 5] [02531] +11:26:46 [ 3] [ 6] [579118] +11:26:46 [ 7] [ 10] [0320042646] +11:26:46 [ 11] [ 6] [807076] +11:26:46 [ 15] [ 10] [0320042646] +11:26:46 [ 37] [ 11] [57911807076] +11:26:46 [ 70] [ 3] [001] +11:26:46 ============================================================================ +11:26:46 + + +waiting on router queue for slot.... +11:26:46 ============================================================================ +11:26:46 Slot Id : <208> +11:26:46 Transaction Type : RESPONSE +11:26:46 Received From : +11:26:46 ============================================================================ +11:26:46 FNo. Len. Field Value +11:26:46 ============================================================================ +11:26:46 [ 1] [ 4] [0810] +11:26:46 [ 7] [ 10] [0320042646] +11:26:46 [ 11] [ 6] [807076] +11:26:46 [ 15] [ 4] [0320] +11:26:46 [ 37] [ 12] [57911807076] +11:26:46 [ 39] [ 2] [00] +11:26:46 [ 70] [ 3] [001] +11:26:46 ============================================================================ +11:26:46 Sending to : +11:26:46 ============================================================================ +11:26:46 + + +waiting on router queue for slot.... +11:26:52 ============================================================================ +11:26:52 Slot Id : <185> +11:26:52 Transaction Type : REQUEST +11:26:52 Received From : +11:26:52 ============================================================================ +11:26:52 FNo. Len. Field Value +11:26:52 ============================================================================ +11:26:52 [ 1] [ 4] [0200] +11:26:52 [ 2] [ 16] [1808931000015436] +11:26:52 [ 3] [ 6] [011000] +11:26:52 [ 4] [ 12] [000050000000] +11:26:52 [ 7] [ 10] [0320112648] +11:26:52 [ 11] [ 6] [729536] +11:26:52 [ 12] [ 6] [112648] +11:26:52 [ 13] [ 4] [0320] +11:26:52 [ 15] [ 4] [0320] +11:26:52 [ 18] [ 4] [6011] +11:26:52 [ 22] [ 3] [900] +11:26:52 [ 25] [ 2] [02] +11:26:52 [ 28] [ 9] [D00002000] +11:26:52 [ 32] [ 6] [621354] +11:26:52 [ 35] [ 27] [1808931000015436=1803500200] +11:26:52 [ 37] [ 12] [507902546511] +11:26:52 [ 41] [ 8] [05003700] +11:26:52 [ 42] [ 15] [NATIVE ] +11:26:52 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +11:26:52 [ 49] [ 3] [418] +11:26:52 [ 52] [ 16] [FCF94080C307FBF0] +11:26:52 ============================================================================ +11:26:52 + + +waiting on router queue for slot.... +11:26:52 Sending to : +11:26:52 ============================================================================ +11:26:52 Sending to : +11:26:52 ============================================================================ +11:26:52 ============================================================================ +11:26:52 Slot Id : <185> +11:26:52 Transaction Type : REQUEST +11:26:52 Received From : +11:26:52 ============================================================================ +11:26:52 FNo. Len. Field Value +11:26:52 ============================================================================ +11:26:52 [ 1] [ 4] [0200] +11:26:52 [ 2] [ 16] [1808931000015436] +11:26:52 [ 3] [ 6] [011000] +11:26:52 [ 4] [ 12] [000050000000] +11:26:52 [ 7] [ 10] [0320112648] +11:26:52 [ 11] [ 6] [729536] +11:26:52 [ 12] [ 6] [112648] +11:26:52 [ 13] [ 4] [0320] +11:26:52 [ 15] [ 4] [0320] +11:26:52 [ 18] [ 4] [6011] +11:26:52 [ 22] [ 3] [900] +11:26:52 [ 25] [ 2] [02] +11:26:52 [ 28] [ 9] [D00002000] +11:26:52 [ 32] [ 6] [621354] +11:26:52 [ 35] [ 27] [1808931000015436=1803500200] +11:26:52 [ 37] [ 12] [507902546511] +11:26:52 [ 41] [ 8] [05003700] +11:26:52 [ 42] [ 15] [NATIVE ] +11:26:52 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +11:26:52 [ 49] [ 3] [418] +11:26:52 [ 52] [ 16] [FCF94080C307FBF0] +11:26:52 ============================================================================ +11:26:52 + + +waiting on router queue for slot.... +11:26:52 Sending to : +11:26:52 ============================================================================ +11:26:52 ============================================================================ +11:26:52 Slot Id : <185> +11:26:52 Transaction Type : REQUEST +11:26:52 Received From : +11:26:52 ============================================================================ +11:26:52 FNo. Len. Field Value +11:26:52 ============================================================================ +11:26:52 [ 1] [ 4] [0200] +11:26:52 [ 2] [ 16] [1808931000015436] +11:26:52 [ 3] [ 6] [011000] +11:26:52 [ 4] [ 12] [000050000000] +11:26:52 [ 7] [ 10] [0320112648] +11:26:52 [ 11] [ 6] [729536] +11:26:52 [ 12] [ 6] [112648] +11:26:52 [ 13] [ 4] [0320] +11:26:52 [ 15] [ 4] [0320] +11:26:52 [ 18] [ 4] [6011] +11:26:52 [ 22] [ 3] [900] +11:26:52 [ 25] [ 2] [02] +11:26:52 [ 28] [ 9] [D00002000] +11:26:52 [ 32] [ 6] [621354] +11:26:52 [ 35] [ 27] [1808931000015436=1803500200] +11:26:52 [ 37] [ 12] [507902546511] +11:26:52 [ 41] [ 8] [05003700] +11:26:52 [ 42] [ 15] [NATIVE ] +11:26:52 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +11:26:52 [ 49] [ 3] [418] +11:26:52 [ 52] [ 16] [F79B9C0260DCFC2A] +11:26:52 ============================================================================ +11:26:52 + + +waiting on router queue for slot.... +11:26:52 Sending to : <2> +11:26:52 ============================================================================ +11:26:59 ============================================================================ +11:26:59 Slot Id : <185> +11:26:59 Transaction Type : RESPONSE +11:26:59 Received From : +11:26:59 ============================================================================ +11:26:59 FNo. Len. Field Value +11:26:59 ============================================================================ +11:26:59 [ 1] [ 4] [0210] +11:26:59 [ 2] [ 16] [1808931000015436] +11:26:59 [ 3] [ 6] [011000] +11:26:59 [ 4] [ 12] [000050000000] +11:26:59 [ 6] [ 12] [000050000000] +11:26:59 [ 7] [ 10] [0320112648] +11:26:59 [ 11] [ 6] [729536] +11:26:59 [ 12] [ 6] [112648] +11:26:59 [ 13] [ 4] [0320] +11:26:59 [ 18] [ 4] [6011] +11:26:59 [ 19] [ 3] [418] +11:26:59 [ 22] [ 3] [021] +11:26:59 [ 32] [ 6] [621354] +11:26:59 [ 35] [ 27] [1808931000015436=1803500200] +11:26:59 [ 37] [ 12] [507902546511] +11:26:59 [ 38] [ 6] [729536] +11:26:59 [ 39] [ 2] [00] +11:26:59 [ 41] [ 8] [05003700] +11:26:59 [ 49] [ 3] [418] +11:26:59 [ 52] [ 16] [F79B9C0260DCFC2A] +11:26:59 [ 54] [ 20] [1001418C000004035500] +11:26:59 ============================================================================ +11:26:59 Sending to : +11:26:59 ============================================================================ +11:26:59 + + +waiting on router queue for slot.... +11:27:01 ============================================================================ +11:27:01 Slot Id : <185> +11:27:01 Transaction Type : RESPONSE +11:27:01 Received From : +11:27:01 ============================================================================ +11:27:01 FNo. Len. Field Value +11:27:01 ============================================================================ +11:27:01 [ 1] [ 4] [0210] +11:27:01 [ 2] [ 16] [1808931000015436] +11:27:01 [ 3] [ 6] [011000] +11:27:01 [ 4] [ 12] [000050000000] +11:27:01 [ 6] [ 12] [000050000000] +11:27:01 [ 7] [ 10] [0320112648] +11:27:01 [ 11] [ 6] [729536] +11:27:01 [ 12] [ 6] [112648] +11:27:01 [ 13] [ 4] [0320] +11:27:01 [ 18] [ 4] [6011] +11:27:01 [ 19] [ 3] [418] +11:27:01 [ 22] [ 3] [021] +11:27:01 [ 32] [ 6] [621354] +11:27:01 [ 35] [ 27] [1808931000015436=1803500200] +11:27:01 [ 37] [ 12] [507902546511] +11:27:01 [ 38] [ 6] [729536] +11:27:01 [ 39] [ 2] [00] +11:27:01 [ 41] [ 8] [05003700] +11:27:01 [ 49] [ 3] [418] +11:27:01 [ 52] [ 16] [F79B9C0260DCFC2A] +11:27:01 [ 54] [ 20] [1001418C000004035500] +11:27:01 ============================================================================ +11:27:01 Calculate Source COMM Id = 0 +11:27:01 ============================================================================ +11:27:01 + + +waiting on router queue for slot.... +11:27:03 ============================================================================ +11:27:03 Slot Id : <183> +11:27:03 Transaction Type : REQUEST +11:27:03 Received From : +11:27:03 ============================================================================ +11:27:03 FNo. Len. Field Value +11:27:03 ============================================================================ +11:27:03 [ 1] [ 4] [0800] +11:27:03 [ 7] [ 10] [0320042611] +11:27:03 [ 11] [ 6] [156091] +11:27:03 [ 70] [ 3] [301] +11:27:03 ============================================================================ +11:27:03 + + +waiting on router queue for slot.... +11:27:03 Sending to : +11:27:03 ============================================================================ +11:27:03 ============================================================================ +11:27:03 Slot Id : <183> +11:27:03 Transaction Type : RESPONSE +11:27:03 Received From : +11:27:03 ============================================================================ +11:27:03 FNo. Len. Field Value +11:27:03 ============================================================================ +11:27:03 [ 1] [ 4] [0810] +11:27:03 [ 7] [ 10] [0320042611] +11:27:03 [ 11] [ 6] [156091] +11:27:03 [ 39] [ 2] [00] +11:27:03 [ 70] [ 3] [301] +11:27:03 ============================================================================ +11:27:03 Calculate Source COMM Id = 2 +11:27:03 ============================================================================ +11:27:03 + + +waiting on router queue for slot.... +11:27:14 ============================================================================ +11:27:14 Slot Id : <211> +11:27:14 Transaction Type : REQUEST +11:27:14 Received From : +11:27:14 ============================================================================ +11:27:14 FNo. Len. Field Value +11:27:14 ============================================================================ +11:27:14 [ 1] [ 4] [0800] +11:27:14 [ 7] [ 10] [0320042622] +11:27:14 [ 11] [ 6] [156092] +11:27:14 [ 70] [ 3] [301] +11:27:14 ============================================================================ +11:27:14 + + +waiting on router queue for slot.... +11:27:14 Sending to : +11:27:14 ============================================================================ +11:27:14 ============================================================================ +11:27:14 Slot Id : <211> +11:27:14 Transaction Type : RESPONSE +11:27:14 Received From : +11:27:14 ============================================================================ +11:27:14 FNo. Len. Field Value +11:27:14 ============================================================================ +11:27:14 [ 1] [ 4] [0810] +11:27:14 [ 7] [ 10] [0320042622] +11:27:14 [ 11] [ 6] [156092] +11:27:14 [ 39] [ 2] [00] +11:27:14 [ 70] [ 3] [301] +11:27:14 ============================================================================ +11:27:14 Calculate Source COMM Id = 2 +11:27:14 ============================================================================ +11:27:14 + + +waiting on router queue for slot.... +11:27:25 ============================================================================ +11:27:25 Slot Id : <230> +11:27:25 Transaction Type : REQUEST +11:27:25 Received From : +11:27:25 ============================================================================ +11:27:25 FNo. Len. Field Value +11:27:25 ============================================================================ +11:27:25 [ 1] [ 4] [0200] +11:27:25 [ 2] [ 16] [6213545000860449] +11:27:25 [ 3] [ 6] [010000] +11:27:25 [ 4] [ 12] [000030000000] +11:27:25 [ 7] [ 10] [0320112516] +11:27:25 [ 11] [ 6] [941257] +11:27:25 [ 12] [ 6] [112516] +11:27:25 [ 13] [ 4] [0320] +11:27:25 [ 15] [ 4] [0320] +11:27:25 [ 18] [ 4] [6011] +11:27:25 [ 19] [ 3] [418] +11:27:25 [ 22] [ 3] [021] +11:27:25 [ 25] [ 2] [01] +11:27:25 [ 28] [ 9] [D00002000] +11:27:25 [ 32] [ 6] [668899] +11:27:25 [ 35] [ 32] [6213545000860449=491212016044168] +11:27:25 [ 37] [ 12] [507902150955] +11:27:25 [ 41] [ 8] [03020025] +11:27:25 [ 42] [ 15] [APT ] +11:27:25 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +11:27:25 [ 49] [ 3] [418] +11:27:25 [ 52] [ 16] [3809217E8A6953C2] +11:27:25 ============================================================================ +11:27:25 + + +waiting on router queue for slot.... +11:27:25 Sending to : +11:27:25 ============================================================================ +11:27:25 Sending to : +11:27:25 ============================================================================ +11:27:25 ============================================================================ +11:27:25 Slot Id : <230> +11:27:25 Transaction Type : REQUEST +11:27:25 Received From : +11:27:25 ============================================================================ +11:27:25 FNo. Len. Field Value +11:27:25 ============================================================================ +11:27:25 [ 1] [ 4] [0200] +11:27:25 [ 2] [ 16] [6213545000860449] +11:27:25 [ 3] [ 6] [010000] +11:27:25 [ 4] [ 12] [000030000000] +11:27:25 [ 7] [ 10] [0320112516] +11:27:25 [ 11] [ 6] [941257] +11:27:25 [ 12] [ 6] [112516] +11:27:25 [ 13] [ 4] [0320] +11:27:25 [ 15] [ 4] [0320] +11:27:25 [ 18] [ 4] [6011] +11:27:25 [ 19] [ 3] [418] +11:27:25 [ 22] [ 3] [021] +11:27:25 [ 25] [ 2] [01] +11:27:25 [ 28] [ 9] [D00002000] +11:27:25 [ 32] [ 6] [668899] +11:27:25 [ 35] [ 32] [6213545000860449=491212016044168] +11:27:25 [ 37] [ 12] [507902150955] +11:27:25 [ 41] [ 8] [03020025] +11:27:25 [ 42] [ 15] [APT ] +11:27:25 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +11:27:25 [ 49] [ 3] [418] +11:27:25 [ 52] [ 16] [3809217E8A6953C2] +11:27:25 ============================================================================ +11:27:25 + + +waiting on router queue for slot.... +11:27:25 Sending to : +11:27:25 ============================================================================ +11:27:25 ============================================================================ +11:27:25 Slot Id : <230> +11:27:25 Transaction Type : REQUEST +11:27:25 Received From : +11:27:25 ============================================================================ +11:27:25 FNo. Len. Field Value +11:27:25 ============================================================================ +11:27:25 [ 1] [ 4] [0200] +11:27:25 [ 2] [ 16] [6213545000860449] +11:27:25 [ 3] [ 6] [010000] +11:27:25 [ 4] [ 12] [000030000000] +11:27:25 [ 7] [ 10] [0320112516] +11:27:25 [ 11] [ 6] [941257] +11:27:25 [ 12] [ 6] [112516] +11:27:25 [ 13] [ 4] [0320] +11:27:25 [ 15] [ 4] [0320] +11:27:25 [ 18] [ 4] [6011] +11:27:25 [ 19] [ 3] [418] +11:27:25 [ 22] [ 3] [021] +11:27:25 [ 25] [ 2] [01] +11:27:25 [ 28] [ 9] [D00002000] +11:27:25 [ 32] [ 6] [668899] +11:27:25 [ 35] [ 32] [6213545000860449=491212016044168] +11:27:25 [ 37] [ 12] [507902150955] +11:27:25 [ 41] [ 8] [03020025] +11:27:25 [ 42] [ 15] [APT ] +11:27:25 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +11:27:25 [ 49] [ 3] [418] +11:27:25 [ 52] [ 16] [E2C90E88DD2F54BA] +11:27:25 ============================================================================ +11:27:25 + + +waiting on router queue for slot.... +11:27:25 Sending to : <0> +11:27:25 ============================================================================ +11:27:26 ============================================================================ +11:27:26 Slot Id : <169> +11:27:26 Transaction Type : REQUEST +11:27:26 Received From : +11:27:26 ============================================================================ +11:27:26 FNo. Len. Field Value +11:27:26 ============================================================================ +11:27:26 [ 1] [ 4] [0800] +11:27:26 [ 7] [ 10] [0320042633] +11:27:26 [ 11] [ 6] [156093] +11:27:26 [ 70] [ 3] [301] +11:27:26 ============================================================================ +11:27:26 + + +waiting on router queue for slot.... +11:27:26 Sending to : +11:27:26 ============================================================================ +11:27:26 ============================================================================ +11:27:26 Slot Id : <169> +11:27:26 Transaction Type : RESPONSE +11:27:26 Received From : +11:27:26 ============================================================================ +11:27:26 FNo. Len. Field Value +11:27:26 ============================================================================ +11:27:26 [ 1] [ 4] [0810] +11:27:26 [ 7] [ 10] [0320042633] +11:27:26 [ 11] [ 6] [156093] +11:27:26 [ 39] [ 2] [00] +11:27:26 [ 70] [ 3] [301] +11:27:26 ============================================================================ +11:27:26 Calculate Source COMM Id = 2 +11:27:26 ============================================================================ +11:27:26 + + +waiting on router queue for slot.... +11:27:26 ============================================================================ +11:27:26 Slot Id : <230> +11:27:26 Transaction Type : RESPONSE +11:27:26 Received From : +11:27:26 ============================================================================ +11:27:26 FNo. Len. Field Value +11:27:26 ============================================================================ +11:27:26 [ 1] [ 4] [0210] +11:27:26 [ 2] [ 16] [6213545000860449] +11:27:26 [ 3] [ 6] [010000] +11:27:26 [ 4] [ 12] [000030000000] +11:27:26 [ 7] [ 10] [0320112516] +11:27:26 [ 11] [ 6] [941257] +11:27:26 [ 12] [ 6] [112516] +11:27:26 [ 13] [ 4] [0320] +11:27:26 [ 15] [ 4] [0320] +11:27:26 [ 18] [ 4] [6011] +11:27:26 [ 19] [ 3] [418] +11:27:26 [ 32] [ 6] [668899] +11:27:26 [ 35] [ 32] [6213545000860449=491212016044168] +11:27:26 [ 37] [ 12] [507902150955] +11:27:26 [ 38] [ 6] [383648] +11:27:26 [ 39] [ 2] [00] +11:27:26 [ 41] [ 8] [03020025] +11:27:26 [ 49] [ 3] [418] +11:27:26 [ 54] [ 40] [0001418C0003013641260002418C000301364126] +11:27:26 ============================================================================ +11:27:26 Sending to : +11:27:26 ============================================================================ +11:27:26 + + +waiting on router queue for slot.... +11:27:27 ============================================================================ +11:27:27 Slot Id : <230> +11:27:27 Transaction Type : RESPONSE +11:27:27 Received From : +11:27:27 ============================================================================ +11:27:27 FNo. Len. Field Value +11:27:27 ============================================================================ +11:27:27 [ 1] [ 4] [0210] +11:27:27 [ 2] [ 16] [6213545000860449] +11:27:27 [ 3] [ 6] [010000] +11:27:27 [ 4] [ 12] [000030000000] +11:27:27 [ 7] [ 10] [0320112516] +11:27:27 [ 11] [ 6] [941257] +11:27:27 [ 12] [ 6] [112516] +11:27:27 [ 13] [ 4] [0320] +11:27:27 [ 15] [ 4] [0320] +11:27:27 [ 18] [ 4] [6011] +11:27:27 [ 19] [ 3] [418] +11:27:27 [ 32] [ 6] [668899] +11:27:27 [ 35] [ 32] [6213545000860449=491212016044168] +11:27:27 [ 37] [ 12] [507902150955] +11:27:27 [ 38] [ 6] [383648] +11:27:27 [ 39] [ 2] [00] +11:27:27 [ 41] [ 8] [03020025] +11:27:27 [ 49] [ 3] [418] +11:27:27 [ 54] [ 40] [0001418C0003013641260002418C000301364126] +11:27:27 ============================================================================ +11:27:27 Calculate Source COMM Id = 4 +11:27:27 ============================================================================ +11:27:27 + + +waiting on router queue for slot.... +11:27:36 ============================================================================ +11:27:36 Slot Id : <189> +11:27:36 Transaction Type : REQUEST +11:27:36 Received From : +11:27:36 ============================================================================ +11:27:36 FNo. Len. Field Value +11:27:36 ============================================================================ +11:27:36 [ 1] [ 4] [0800] +11:27:36 [ 7] [ 10] [0320042644] +11:27:36 [ 11] [ 6] [156094] +11:27:36 [ 70] [ 3] [301] +11:27:36 ============================================================================ +11:27:36 + + +waiting on router queue for slot.... +11:27:36 Sending to : +11:27:36 ============================================================================ +11:27:36 ============================================================================ +11:27:36 Slot Id : <189> +11:27:36 Transaction Type : RESPONSE +11:27:36 Received From : +11:27:36 ============================================================================ +11:27:36 FNo. Len. Field Value +11:27:36 ============================================================================ +11:27:36 [ 1] [ 4] [0810] +11:27:36 [ 7] [ 10] [0320042644] +11:27:36 [ 11] [ 6] [156094] +11:27:36 [ 39] [ 2] [00] +11:27:36 [ 70] [ 3] [301] +11:27:36 ============================================================================ +11:27:36 Calculate Source COMM Id = 2 +11:27:36 ============================================================================ +11:27:36 + + +waiting on router queue for slot.... +11:27:46 ============================================================================ +11:27:46 Slot Id : <149> +11:27:46 Transaction Type : REQUEST +11:27:46 Received From : +11:27:46 ============================================================================ +11:27:46 FNo. Len. Field Value +11:27:46 ============================================================================ +11:27:46 [ 1] [ 4] [0200] +11:27:46 [ 2] [ 16] [6688990040113431] +11:27:46 [ 3] [ 6] [301000] +11:27:46 [ 4] [ 12] [000000000000] +11:27:46 [ 7] [ 10] [0320112742] +11:27:46 [ 11] [ 6] [729784] +11:27:46 [ 12] [ 6] [112742] +11:27:46 [ 13] [ 4] [0320] +11:27:46 [ 15] [ 4] [0320] +11:27:46 [ 18] [ 4] [6011] +11:27:46 [ 22] [ 3] [900] +11:27:46 [ 25] [ 2] [02] +11:27:46 [ 28] [ 9] [D00000000] +11:27:46 [ 32] [ 6] [621354] +11:27:46 [ 35] [ 37] [6688990040113431=98031261881915600000] +11:27:46 [ 37] [ 12] [507902732658] +11:27:46 [ 41] [ 8] [01006700] +11:27:46 [ 42] [ 15] [NATIVE ] +11:27:46 [ 43] [ 40] [WATTAY AIRPORT SikhottabongLAO] +11:27:46 [ 49] [ 3] [418] +11:27:46 [ 52] [ 16] [2890D5489405827B] +11:27:46 ============================================================================ +11:27:46 + + +waiting on router queue for slot.... +11:27:46 Sending to : +11:27:46 ============================================================================ +11:27:46 Sending to : +11:27:46 ============================================================================ +11:27:46 ============================================================================ +11:27:46 Slot Id : <149> +11:27:46 Transaction Type : REQUEST +11:27:46 Received From : +11:27:46 ============================================================================ +11:27:46 FNo. Len. Field Value +11:27:46 ============================================================================ +11:27:46 [ 1] [ 4] [0200] +11:27:46 [ 2] [ 16] [6688990040113431] +11:27:46 [ 3] [ 6] [301000] +11:27:46 [ 4] [ 12] [000000000000] +11:27:46 [ 7] [ 10] [0320112742] +11:27:46 [ 11] [ 6] [729784] +11:27:46 [ 12] [ 6] [112742] +11:27:46 [ 13] [ 4] [0320] +11:27:46 [ 15] [ 4] [0320] +11:27:46 [ 18] [ 4] [6011] +11:27:46 [ 22] [ 3] [900] +11:27:46 [ 25] [ 2] [02] +11:27:46 [ 28] [ 9] [D00000000] +11:27:46 [ 32] [ 6] [621354] +11:27:46 [ 35] [ 37] [6688990040113431=98031261881915600000] +11:27:46 [ 37] [ 12] [507902732658] +11:27:46 [ 41] [ 8] [01006700] +11:27:46 [ 42] [ 15] [NATIVE ] +11:27:46 [ 43] [ 40] [WATTAY AIRPORT SikhottabongLAO] +11:27:46 [ 49] [ 3] [418] +11:27:46 [ 52] [ 16] [2890D5489405827B] +11:27:46 ============================================================================ +11:27:46 + + +waiting on router queue for slot.... +11:27:46 Sending to : +11:27:46 ============================================================================ +11:27:46 ============================================================================ +11:27:46 Slot Id : <149> +11:27:46 Transaction Type : REQUEST +11:27:46 Received From : +11:27:46 ============================================================================ +11:27:46 FNo. Len. Field Value +11:27:46 ============================================================================ +11:27:46 [ 1] [ 4] [0200] +11:27:46 [ 2] [ 16] [6688990040113431] +11:27:46 [ 3] [ 6] [301000] +11:27:46 [ 4] [ 12] [000000000000] +11:27:46 [ 7] [ 10] [0320112742] +11:27:46 [ 11] [ 6] [729784] +11:27:46 [ 12] [ 6] [112742] +11:27:46 [ 13] [ 4] [0320] +11:27:46 [ 15] [ 4] [0320] +11:27:46 [ 18] [ 4] [6011] +11:27:46 [ 22] [ 3] [900] +11:27:46 [ 25] [ 2] [02] +11:27:46 [ 28] [ 9] [D00000000] +11:27:46 [ 32] [ 6] [621354] +11:27:46 [ 35] [ 37] [6688990040113431=98031261881915600000] +11:27:46 [ 37] [ 12] [507902732658] +11:27:46 [ 41] [ 8] [01006700] +11:27:46 [ 42] [ 15] [NATIVE ] +11:27:46 [ 43] [ 40] [WATTAY AIRPORT SikhottabongLAO] +11:27:46 [ 49] [ 3] [418] +11:27:46 [ 52] [ 16] [5BA20EF3CD4C890E] +11:27:46 ============================================================================ +11:27:46 + + +waiting on router queue for slot.... +11:27:46 Sending to : <4> +11:27:46 ============================================================================ +11:27:47 ============================================================================ +11:27:47 Slot Id : <149> +11:27:47 Transaction Type : RESPONSE +11:27:47 Received From : +11:27:47 ============================================================================ +11:27:47 FNo. Len. Field Value +11:27:47 ============================================================================ +11:27:47 [ 1] [ 4] [0210] +11:27:47 [ 2] [ 16] [6688990040113431] +11:27:47 [ 3] [ 6] [301000] +11:27:47 [ 4] [ 12] [000000000000] +11:27:47 [ 11] [ 6] [729784] +11:27:47 [ 12] [ 6] [112742] +11:27:47 [ 15] [ 4] [0320] +11:27:47 [ 18] [ 4] [6011] +11:27:47 [ 32] [ 6] [621354] +11:27:47 [ 35] [ 37] [6688990040113431=98031261881915600000] +11:27:47 [ 37] [ 12] [507902732658] +11:27:47 [ 38] [ 6] [656064] +11:27:47 [ 39] [ 2] [00] +11:27:47 [ 41] [ 8] [01006700] +11:27:47 [ 49] [ 3] [418] +11:27:47 [ 54] [ 20] [1002418C001935906968] +11:27:47 ============================================================================ +11:27:47 Sending to : +11:27:47 ============================================================================ +11:27:47 + + +waiting on router queue for slot.... +11:27:48 ============================================================================ +11:27:48 Slot Id : <205> +11:27:48 Transaction Type : REQUEST +11:27:48 Received From : +11:27:48 ============================================================================ +11:27:48 FNo. Len. Field Value +11:27:48 ============================================================================ +11:27:48 [ 1] [ 4] [0800] +11:27:48 [ 2] [ 5] [02531] +11:27:48 [ 3] [ 6] [579118] +11:27:48 [ 7] [ 10] [0320042748] +11:27:48 [ 11] [ 6] [807077] +11:27:48 [ 15] [ 10] [0320042748] +11:27:48 [ 37] [ 11] [57911807077] +11:27:48 [ 70] [ 3] [001] +11:27:48 ============================================================================ +11:27:48 + + +waiting on router queue for slot.... +11:27:48 ============================================================================ +11:27:48 Slot Id : <205> +11:27:48 Transaction Type : RESPONSE +11:27:48 Received From : +11:27:48 ============================================================================ +11:27:48 FNo. Len. Field Value +11:27:48 ============================================================================ +11:27:48 [ 1] [ 4] [0810] +11:27:48 [ 7] [ 10] [0320042748] +11:27:48 [ 11] [ 6] [807077] +11:27:48 [ 15] [ 4] [0320] +11:27:48 [ 37] [ 12] [57911807077] +11:27:48 [ 39] [ 2] [00] +11:27:48 [ 70] [ 3] [001] +11:27:48 ============================================================================ +11:27:48 Sending to : +11:27:48 ============================================================================ +11:27:48 + + +waiting on router queue for slot.... +11:27:49 ============================================================================ +11:27:49 Slot Id : <149> +11:27:49 Transaction Type : RESPONSE +11:27:49 Received From : +11:27:49 ============================================================================ +11:27:49 FNo. Len. Field Value +11:27:49 ============================================================================ +11:27:49 [ 1] [ 4] [0210] +11:27:49 [ 2] [ 16] [6688990040113431] +11:27:49 [ 3] [ 6] [301000] +11:27:49 [ 4] [ 12] [000000000000] +11:27:49 [ 11] [ 6] [729784] +11:27:49 [ 12] [ 6] [112742] +11:27:49 [ 15] [ 4] [0320] +11:27:49 [ 18] [ 4] [6011] +11:27:49 [ 32] [ 6] [621354] +11:27:49 [ 35] [ 37] [6688990040113431=98031261881915600000] +11:27:49 [ 37] [ 12] [507902732658] +11:27:49 [ 38] [ 6] [656064] +11:27:49 [ 39] [ 2] [00] +11:27:49 [ 41] [ 8] [01006700] +11:27:49 [ 49] [ 3] [418] +11:27:49 [ 54] [ 20] [1002418C001935906968] +11:27:49 ============================================================================ +11:27:49 Calculate Source COMM Id = 0 +11:27:49 ============================================================================ +11:27:49 + + +waiting on router queue for slot.... +11:27:52 ============================================================================ +11:27:52 Slot Id : <232> +11:27:52 Transaction Type : REQUEST +11:27:52 Received From : +11:27:52 ============================================================================ +11:27:52 FNo. Len. Field Value +11:27:52 ============================================================================ +11:27:52 [ 1] [ 4] [0800] +11:27:52 [ 7] [ 10] [0320042659] +11:27:52 [ 11] [ 6] [156095] +11:27:52 [ 70] [ 3] [301] +11:27:52 ============================================================================ +11:27:52 + + +waiting on router queue for slot.... +11:27:52 Sending to : +11:27:52 ============================================================================ +11:27:52 ============================================================================ +11:27:52 Slot Id : <232> +11:27:52 Transaction Type : RESPONSE +11:27:52 Received From : +11:27:52 ============================================================================ +11:27:52 FNo. Len. Field Value +11:27:52 ============================================================================ +11:27:52 [ 1] [ 4] [0810] +11:27:52 [ 7] [ 10] [0320042659] +11:27:52 [ 11] [ 6] [156095] +11:27:52 [ 39] [ 2] [00] +11:27:52 [ 70] [ 3] [301] +11:27:52 ============================================================================ +11:27:52 Calculate Source COMM Id = 2 +11:27:52 ============================================================================ +11:27:52 + + +waiting on router queue for slot.... +11:28:08 ============================================================================ +11:28:08 Slot Id : <180> +11:28:08 Transaction Type : REQUEST +11:28:08 Received From : +11:28:08 ============================================================================ +11:28:08 FNo. Len. Field Value +11:28:08 ============================================================================ +11:28:08 [ 1] [ 4] [0800] +11:28:08 [ 7] [ 10] [0320042715] +11:28:08 [ 11] [ 6] [156096] +11:28:08 [ 70] [ 3] [301] +11:28:08 ============================================================================ +11:28:08 + + +waiting on router queue for slot.... +11:28:08 Sending to : +11:28:08 ============================================================================ +11:28:08 ============================================================================ +11:28:08 Slot Id : <180> +11:28:08 Transaction Type : RESPONSE +11:28:08 Received From : +11:28:08 ============================================================================ +11:28:08 FNo. Len. Field Value +11:28:08 ============================================================================ +11:28:08 [ 1] [ 4] [0810] +11:28:08 [ 7] [ 10] [0320042715] +11:28:08 [ 11] [ 6] [156096] +11:28:08 [ 39] [ 2] [00] +11:28:08 [ 70] [ 3] [301] +11:28:08 ============================================================================ +11:28:08 Calculate Source COMM Id = 2 +11:28:08 ============================================================================ +11:28:08 + + +waiting on router queue for slot.... +11:28:13 ============================================================================ +11:28:13 Slot Id : <168> +11:28:13 Transaction Type : REQUEST +11:28:13 Received From : +11:28:13 ============================================================================ +11:28:13 FNo. Len. Field Value +11:28:13 ============================================================================ +11:28:13 [ 1] [ 4] [0200] +11:28:13 [ 2] [ 16] [6213548000001774] +11:28:13 [ 3] [ 6] [010000] +11:28:13 [ 4] [ 12] [000010000000] +11:28:13 [ 7] [ 10] [0320112604] +11:28:13 [ 11] [ 6] [941286] +11:28:13 [ 12] [ 6] [112604] +11:28:13 [ 13] [ 4] [0320] +11:28:13 [ 15] [ 4] [0320] +11:28:13 [ 18] [ 4] [6011] +11:28:13 [ 19] [ 3] [418] +11:28:13 [ 22] [ 3] [021] +11:28:13 [ 25] [ 2] [01] +11:28:13 [ 28] [ 9] [D00002000] +11:28:13 [ 32] [ 6] [668899] +11:28:13 [ 35] [ 32] [6213548000001774=130312010177559] +11:28:13 [ 37] [ 12] [507902294739] +11:28:13 [ 41] [ 8] [03009006] +11:28:13 [ 42] [ 15] [APT ] +11:28:13 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:28:13 [ 49] [ 3] [418] +11:28:13 [ 52] [ 16] [93509BCE942CCC8B] +11:28:13 ============================================================================ +11:28:13 + + +waiting on router queue for slot.... +11:28:13 Sending to : +11:28:13 ============================================================================ +11:28:13 Sending to : +11:28:13 ============================================================================ +11:28:13 ============================================================================ +11:28:13 Slot Id : <168> +11:28:13 Transaction Type : REQUEST +11:28:13 Received From : +11:28:13 ============================================================================ +11:28:13 FNo. Len. Field Value +11:28:13 ============================================================================ +11:28:13 [ 1] [ 4] [0200] +11:28:13 [ 2] [ 16] [6213548000001774] +11:28:13 [ 3] [ 6] [010000] +11:28:13 [ 4] [ 12] [000010000000] +11:28:13 [ 7] [ 10] [0320112604] +11:28:13 [ 11] [ 6] [941286] +11:28:13 [ 12] [ 6] [112604] +11:28:13 [ 13] [ 4] [0320] +11:28:13 [ 15] [ 4] [0320] +11:28:13 [ 18] [ 4] [6011] +11:28:13 [ 19] [ 3] [418] +11:28:13 [ 22] [ 3] [021] +11:28:13 [ 25] [ 2] [01] +11:28:13 [ 28] [ 9] [D00002000] +11:28:13 [ 32] [ 6] [668899] +11:28:13 [ 35] [ 32] [6213548000001774=130312010177559] +11:28:13 [ 37] [ 12] [507902294739] +11:28:13 [ 41] [ 8] [03009006] +11:28:13 [ 42] [ 15] [APT ] +11:28:13 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:28:13 [ 49] [ 3] [418] +11:28:13 [ 52] [ 16] [93509BCE942CCC8B] +11:28:13 ============================================================================ +11:28:13 + + +waiting on router queue for slot.... +11:28:13 Sending to : +11:28:13 ============================================================================ +11:28:13 ============================================================================ +11:28:13 Slot Id : <168> +11:28:13 Transaction Type : REQUEST +11:28:13 Received From : +11:28:13 ============================================================================ +11:28:13 FNo. Len. Field Value +11:28:13 ============================================================================ +11:28:13 [ 1] [ 4] [0200] +11:28:13 [ 2] [ 16] [6213548000001774] +11:28:13 [ 3] [ 6] [010000] +11:28:13 [ 4] [ 12] [000010000000] +11:28:13 [ 7] [ 10] [0320112604] +11:28:13 [ 11] [ 6] [941286] +11:28:13 [ 12] [ 6] [112604] +11:28:13 [ 13] [ 4] [0320] +11:28:13 [ 15] [ 4] [0320] +11:28:13 [ 18] [ 4] [6011] +11:28:13 [ 19] [ 3] [418] +11:28:13 [ 22] [ 3] [021] +11:28:13 [ 25] [ 2] [01] +11:28:13 [ 28] [ 9] [D00002000] +11:28:13 [ 32] [ 6] [668899] +11:28:13 [ 35] [ 32] [6213548000001774=130312010177559] +11:28:13 [ 37] [ 12] [507902294739] +11:28:13 [ 41] [ 8] [03009006] +11:28:13 [ 42] [ 15] [APT ] +11:28:13 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +11:28:13 [ 49] [ 3] [418] +11:28:13 [ 52] [ 16] [90226D7683DEC1FA] +11:28:13 ============================================================================ +11:28:13 + + +waiting on router queue for slot.... +11:28:13 Sending to : <0> +11:28:13 ============================================================================ +11:28:14 ============================================================================ +11:28:14 Slot Id : <168> +11:28:14 Transaction Type : RESPONSE +11:28:14 Received From : +11:28:14 ============================================================================ +11:28:14 FNo. Len. Field Value +11:28:14 ============================================================================ +11:28:14 [ 1] [ 4] [0210] +11:28:14 [ 2] [ 16] [6213548000001774] +11:28:14 [ 3] [ 6] [010000] +11:28:14 [ 4] [ 12] [000010000000] +11:28:14 [ 7] [ 10] [0320112604] +11:28:14 [ 11] [ 6] [941286] +11:28:14 [ 12] [ 6] [112604] +11:28:14 [ 13] [ 4] [0320] +11:28:14 [ 15] [ 4] [0320] +11:28:14 [ 18] [ 4] [6011] +11:28:14 [ 19] [ 3] [418] +11:28:14 [ 32] [ 6] [668899] +11:28:14 [ 35] [ 32] [6213548000001774=130312010177559] +11:28:14 [ 37] [ 12] [507902294739] +11:28:14 [ 38] [ 6] [561871] +11:28:14 [ 39] [ 2] [00] +11:28:14 [ 41] [ 8] [03009006] +11:28:14 [ 49] [ 3] [418] +11:28:14 [ 54] [ 40] [0001418C0001152746770002418C000115274677] +11:28:14 ============================================================================ +11:28:14 Sending to : +11:28:14 ============================================================================ +11:28:14 + + +waiting on router queue for slot.... +11:28:15 ============================================================================ +11:28:15 Slot Id : <168> +11:28:15 Transaction Type : RESPONSE +11:28:15 Received From : +11:28:15 ============================================================================ +11:28:15 FNo. Len. Field Value +11:28:15 ============================================================================ +11:28:15 [ 1] [ 4] [0210] +11:28:15 [ 2] [ 16] [6213548000001774] +11:28:15 [ 3] [ 6] [010000] +11:28:15 [ 4] [ 12] [000010000000] +11:28:15 [ 7] [ 10] [0320112604] +11:28:15 [ 11] [ 6] [941286] +11:28:15 [ 12] [ 6] [112604] +11:28:15 [ 13] [ 4] [0320] +11:28:15 [ 15] [ 4] [0320] +11:28:15 [ 18] [ 4] [6011] +11:28:15 [ 19] [ 3] [418] +11:28:15 [ 32] [ 6] [668899] +11:28:15 [ 35] [ 32] [6213548000001774=130312010177559] +11:28:15 [ 37] [ 12] [507902294739] +11:28:15 [ 38] [ 6] [561871] +11:28:15 [ 39] [ 2] [00] +11:28:15 [ 41] [ 8] [03009006] +11:28:15 [ 49] [ 3] [418] +11:28:15 [ 54] [ 40] [0001418C0001152746770002418C000115274677] +11:28:15 ============================================================================ +11:28:15 Calculate Source COMM Id = 4 +11:28:15 ============================================================================ +11:28:15 + + +waiting on router queue for slot.... +11:28:23 ============================================================================ +11:28:23 Slot Id : <174> +11:28:23 Transaction Type : REQUEST +11:28:23 Received From : +11:28:23 ============================================================================ +11:28:23 FNo. Len. Field Value +11:28:23 ============================================================================ +11:28:23 [ 1] [ 4] [0800] +11:28:23 [ 7] [ 10] [0320042731] +11:28:23 [ 11] [ 6] [156097] +11:28:23 [ 70] [ 3] [301] +11:28:23 ============================================================================ +11:28:23 + + +waiting on router queue for slot.... +11:28:23 Sending to : +11:28:23 ============================================================================ +11:28:23 ============================================================================ +11:28:23 Slot Id : <174> +11:28:23 Transaction Type : RESPONSE +11:28:23 Received From : +11:28:23 ============================================================================ +11:28:23 FNo. Len. Field Value +11:28:23 ============================================================================ +11:28:23 [ 1] [ 4] [0810] +11:28:23 [ 7] [ 10] [0320042731] +11:28:23 [ 11] [ 6] [156097] +11:28:23 [ 39] [ 2] [00] +11:28:23 [ 70] [ 3] [301] +11:28:23 ============================================================================ +11:28:23 Calculate Source COMM Id = 2 +11:28:23 ============================================================================ +11:28:23 + + +waiting on router queue for slot.... +11:28:28 ============================================================================ +11:28:28 Slot Id : <173> +11:28:28 Transaction Type : REQUEST +11:28:28 Received From : +11:28:28 ============================================================================ +11:28:28 FNo. Len. Field Value +11:28:28 ============================================================================ +11:28:28 [ 1] [ 4] [0200] +11:28:28 [ 2] [ 16] [6213545001025844] +11:28:28 [ 3] [ 6] [010000] +11:28:28 [ 4] [ 12] [000015000000] +11:28:28 [ 7] [ 10] [0320112619] +11:28:28 [ 11] [ 6] [941295] +11:28:28 [ 12] [ 6] [112619] +11:28:28 [ 13] [ 4] [0320] +11:28:28 [ 15] [ 4] [0320] +11:28:28 [ 18] [ 4] [6011] +11:28:28 [ 19] [ 3] [418] +11:28:28 [ 22] [ 3] [021] +11:28:28 [ 25] [ 2] [01] +11:28:28 [ 28] [ 9] [D00002000] +11:28:28 [ 32] [ 6] [668899] +11:28:28 [ 35] [ 32] [6213545001025844=491212012584018] +11:28:28 [ 37] [ 12] [507902150957] +11:28:28 [ 41] [ 8] [03020025] +11:28:28 [ 42] [ 15] [APT ] +11:28:28 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +11:28:28 [ 49] [ 3] [418] +11:28:28 [ 52] [ 16] [067C9F3C60227230] +11:28:28 ============================================================================ +11:28:28 + + +waiting on router queue for slot.... +11:28:28 Sending to : +11:28:28 ============================================================================ +11:28:28 Sending to : +11:28:28 ============================================================================ +11:28:29 ============================================================================ +11:28:29 Slot Id : <173> +11:28:29 Transaction Type : REQUEST +11:28:29 Received From : +11:28:29 ============================================================================ +11:28:29 FNo. Len. Field Value +11:28:29 ============================================================================ +11:28:29 [ 1] [ 4] [0200] +11:28:29 [ 2] [ 16] [6213545001025844] +11:28:29 [ 3] [ 6] [010000] +11:28:29 [ 4] [ 12] [000015000000] +11:28:29 [ 7] [ 10] [0320112619] +11:28:29 [ 11] [ 6] [941295] +11:28:29 [ 12] [ 6] [112619] +11:28:29 [ 13] [ 4] [0320] +11:28:29 [ 15] [ 4] [0320] +11:28:29 [ 18] [ 4] [6011] +11:28:29 [ 19] [ 3] [418] +11:28:29 [ 22] [ 3] [021] +11:28:29 [ 25] [ 2] [01] +11:28:29 [ 28] [ 9] [D00002000] +11:28:29 [ 32] [ 6] [668899] +11:28:29 [ 35] [ 32] [6213545001025844=491212012584018] +11:28:29 [ 37] [ 12] [507902150957] +11:28:29 [ 41] [ 8] [03020025] +11:28:29 [ 42] [ 15] [APT ] +11:28:29 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +11:28:29 [ 49] [ 3] [418] +11:28:29 [ 52] [ 16] [067C9F3C60227230] +11:28:29 ============================================================================ +11:28:29 + + +waiting on router queue for slot.... +11:28:29 Sending to : +11:28:29 ============================================================================ +11:28:29 ============================================================================ +11:28:29 Slot Id : <173> +11:28:29 Transaction Type : REQUEST +11:28:29 Received From : +11:28:29 ============================================================================ +11:28:29 FNo. Len. Field Value +11:28:29 ============================================================================ +11:28:29 [ 1] [ 4] [0200] +11:28:29 [ 2] [ 16] [6213545001025844] +11:28:29 [ 3] [ 6] [010000] +11:28:29 [ 4] [ 12] [000015000000] +11:28:29 [ 7] [ 10] [0320112619] +11:28:29 [ 11] [ 6] [941295] +11:28:29 [ 12] [ 6] [112619] +11:28:29 [ 13] [ 4] [0320] +11:28:29 [ 15] [ 4] [0320] +11:28:29 [ 18] [ 4] [6011] +11:28:29 [ 19] [ 3] [418] +11:28:29 [ 22] [ 3] [021] +11:28:29 [ 25] [ 2] [01] +11:28:29 [ 28] [ 9] [D00002000] +11:28:29 [ 32] [ 6] [668899] +11:28:29 [ 35] [ 32] [6213545001025844=491212012584018] +11:28:29 [ 37] [ 12] [507902150957] +11:28:29 [ 41] [ 8] [03020025] +11:28:29 [ 42] [ 15] [APT ] +11:28:29 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +11:28:29 [ 49] [ 3] [418] +11:28:29 [ 52] [ 16] [A9853BB6164A8F38] +11:28:29 ============================================================================ +11:28:29 + + +waiting on router queue for slot.... +11:28:29 Sending to : <0> +11:28:29 ============================================================================ +11:28:29 ============================================================================ +11:28:29 Slot Id : <173> +11:28:29 Transaction Type : RESPONSE +11:28:29 Received From : +11:28:29 ============================================================================ +11:28:29 FNo. Len. Field Value +11:28:29 ============================================================================ +11:28:29 [ 1] [ 4] [0210] +11:28:29 [ 2] [ 16] [6213545001025844] +11:28:29 [ 3] [ 6] [010000] +11:28:29 [ 4] [ 12] [000015000000] +11:28:29 [ 7] [ 10] [0320112619] +11:28:29 [ 11] [ 6] [941295] +11:28:29 [ 12] [ 6] [112619] +11:28:29 [ 13] [ 4] [0320] +11:28:29 [ 15] [ 4] [0320] +11:28:29 [ 18] [ 4] [6011] +11:28:29 [ 19] [ 3] [418] +11:28:29 [ 32] [ 6] [668899] +11:28:29 [ 35] [ 32] [6213545001025844=491212012584018] +11:28:29 [ 37] [ 12] [507902150957] +11:28:29 [ 38] [ 6] [104451] +11:28:29 [ 39] [ 2] [00] +11:28:29 [ 41] [ 8] [03020025] +11:28:29 [ 49] [ 3] [418] +11:28:29 [ 54] [ 40] [0001418C0000116451510002418C000011645151] +11:28:29 ============================================================================ +11:28:29 Sending to : +11:28:29 ============================================================================ +11:28:29 + + +waiting on router queue for slot.... +11:28:31 ============================================================================ +11:28:31 Slot Id : <173> +11:28:31 Transaction Type : RESPONSE +11:28:31 Received From : +11:28:31 ============================================================================ +11:28:31 FNo. Len. Field Value +11:28:31 ============================================================================ +11:28:31 [ 1] [ 4] [0210] +11:28:31 [ 2] [ 16] [6213545001025844] +11:28:31 [ 3] [ 6] [010000] +11:28:31 [ 4] [ 12] [000015000000] +11:28:31 [ 7] [ 10] [0320112619] +11:28:31 [ 11] [ 6] [941295] +11:28:31 [ 12] [ 6] [112619] +11:28:31 [ 13] [ 4] [0320] +11:28:31 [ 15] [ 4] [0320] +11:28:31 [ 18] [ 4] [6011] +11:28:31 [ 19] [ 3] [418] +11:28:31 [ 32] [ 6] [668899] +11:28:31 [ 35] [ 32] [6213545001025844=491212012584018] +11:28:31 [ 37] [ 12] [507902150957] +11:28:31 [ 38] [ 6] [104451] +11:28:31 [ 39] [ 2] [00] +11:28:31 [ 41] [ 8] [03020025] +11:28:31 [ 49] [ 3] [418] +11:28:31 [ 54] [ 40] [0001418C0000116451510002418C000011645151] +11:28:31 ============================================================================ +11:28:31 Calculate Source COMM Id = 4 +11:28:31 ============================================================================ +11:28:31 + + +waiting on router queue for slot.... +11:28:33 ============================================================================ +11:28:33 Slot Id : <222> +11:28:33 Transaction Type : REQUEST +11:28:33 Received From : +11:28:33 ============================================================================ +11:28:33 FNo. Len. Field Value +11:28:33 ============================================================================ +11:28:33 [ 1] [ 4] [0800] +11:28:33 [ 7] [ 10] [0320042741] +11:28:33 [ 11] [ 6] [156098] +11:28:33 [ 70] [ 3] [301] +11:28:33 ============================================================================ +11:28:33 + + +waiting on router queue for slot.... +11:28:33 Sending to : +11:28:33 ============================================================================ +11:28:33 ============================================================================ +11:28:33 Slot Id : <222> +11:28:33 Transaction Type : RESPONSE +11:28:33 Received From : +11:28:33 ============================================================================ +11:28:33 FNo. Len. Field Value +11:28:33 ============================================================================ +11:28:33 [ 1] [ 4] [0810] +11:28:33 [ 7] [ 10] [0320042741] +11:28:33 [ 11] [ 6] [156098] +11:28:33 [ 39] [ 2] [00] +11:28:33 [ 70] [ 3] [301] +11:28:33 ============================================================================ +11:28:33 Calculate Source COMM Id = 2 +11:28:33 ============================================================================ +11:28:33 + + +waiting on router queue for slot.... +11:28:46 ============================================================================ +11:28:46 Slot Id : <188> +11:28:46 Transaction Type : REQUEST +11:28:46 Received From : +11:28:46 ============================================================================ +11:28:46 FNo. Len. Field Value +11:28:46 ============================================================================ +11:28:46 [ 1] [ 4] [0200] +11:28:46 [ 2] [ 16] [6213544000437118] +11:28:46 [ 3] [ 6] [311000] +11:28:46 [ 4] [ 12] [000000000000] +11:28:46 [ 7] [ 10] [0320113633] +11:28:46 [ 11] [ 6] [013429] +11:28:46 [ 12] [ 6] [113633] +11:28:46 [ 13] [ 4] [0320] +11:28:46 [ 14] [ 4] [4912] +11:28:46 [ 15] [ 4] [0320] +11:28:46 [ 18] [ 4] [6011] +11:28:46 [ 22] [ 3] [900] +11:28:46 [ 25] [ 2] [02] +11:28:46 [ 28] [ 9] [000000000] +11:28:46 [ 32] [ 6] [220699] +11:28:46 [ 35] [ 32] [6213544000437118=491212013711360] +11:28:46 [ 37] [ 12] [507900200957] +11:28:46 [ 41] [ 8] [09000100] +11:28:46 [ 42] [ 15] [APTRA ] +11:28:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:28:46 [ 49] [ 3] [418] +11:28:46 [ 52] [ 16] [3BB1C43F273AC16B] +11:28:46 ============================================================================ +11:28:46 + + +waiting on router queue for slot.... +11:28:46 Sending to : +11:28:46 ============================================================================ +11:28:46 Sending to : +11:28:46 ============================================================================ +11:28:46 ============================================================================ +11:28:46 Slot Id : <188> +11:28:46 Transaction Type : REQUEST +11:28:46 Received From : +11:28:46 ============================================================================ +11:28:46 FNo. Len. Field Value +11:28:46 ============================================================================ +11:28:46 [ 1] [ 4] [0200] +11:28:46 [ 2] [ 16] [6213544000437118] +11:28:46 [ 3] [ 6] [311000] +11:28:46 [ 4] [ 12] [000000000000] +11:28:46 [ 7] [ 10] [0320113633] +11:28:46 [ 11] [ 6] [013429] +11:28:46 [ 12] [ 6] [113633] +11:28:46 [ 13] [ 4] [0320] +11:28:46 [ 14] [ 4] [4912] +11:28:46 [ 15] [ 4] [0320] +11:28:46 [ 18] [ 4] [6011] +11:28:46 [ 22] [ 3] [900] +11:28:46 [ 25] [ 2] [02] +11:28:46 [ 28] [ 9] [000000000] +11:28:46 [ 32] [ 6] [220699] +11:28:46 [ 35] [ 32] [6213544000437118=491212013711360] +11:28:46 [ 37] [ 12] [507900200957] +11:28:46 [ 41] [ 8] [09000100] +11:28:46 [ 42] [ 15] [APTRA ] +11:28:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:28:46 [ 49] [ 3] [418] +11:28:46 [ 52] [ 16] [3BB1C43F273AC16B] +11:28:46 ============================================================================ +11:28:46 + + +waiting on router queue for slot.... +11:28:46 Sending to : +11:28:46 ============================================================================ +11:28:46 ============================================================================ +11:28:46 Slot Id : <188> +11:28:46 Transaction Type : REQUEST +11:28:46 Received From : +11:28:46 ============================================================================ +11:28:46 FNo. Len. Field Value +11:28:46 ============================================================================ +11:28:46 [ 1] [ 4] [0200] +11:28:46 [ 2] [ 16] [6213544000437118] +11:28:46 [ 3] [ 6] [311000] +11:28:46 [ 4] [ 12] [000000000000] +11:28:46 [ 7] [ 10] [0320113633] +11:28:46 [ 11] [ 6] [013429] +11:28:46 [ 12] [ 6] [113633] +11:28:46 [ 13] [ 4] [0320] +11:28:46 [ 14] [ 4] [4912] +11:28:46 [ 15] [ 4] [0320] +11:28:46 [ 18] [ 4] [6011] +11:28:46 [ 22] [ 3] [900] +11:28:46 [ 25] [ 2] [02] +11:28:46 [ 28] [ 9] [000000000] +11:28:46 [ 32] [ 6] [220699] +11:28:46 [ 35] [ 32] [6213544000437118=491212013711360] +11:28:46 [ 37] [ 12] [507900200957] +11:28:46 [ 41] [ 8] [09000100] +11:28:46 [ 42] [ 15] [APTRA ] +11:28:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:28:46 [ 49] [ 3] [418] +11:28:46 [ 52] [ 16] [BAA6B66AA00CD60A] +11:28:46 ============================================================================ +11:28:46 + + +waiting on router queue for slot.... +11:28:46 Sending to : <0> +11:28:46 ============================================================================ +11:28:47 ============================================================================ +11:28:47 Slot Id : <188> +11:28:47 Transaction Type : RESPONSE +11:28:47 Received From : +11:28:47 ============================================================================ +11:28:47 FNo. Len. Field Value +11:28:47 ============================================================================ +11:28:47 [ 1] [ 4] [0210] +11:28:47 [ 2] [ 16] [6213544000437118] +11:28:47 [ 3] [ 6] [311000] +11:28:47 [ 4] [ 12] [000000000000] +11:28:47 [ 7] [ 10] [0320113633] +11:28:47 [ 11] [ 6] [013429] +11:28:47 [ 12] [ 6] [113633] +11:28:47 [ 13] [ 4] [0320] +11:28:47 [ 15] [ 4] [0320] +11:28:47 [ 18] [ 4] [6011] +11:28:47 [ 32] [ 6] [220699] +11:28:47 [ 35] [ 32] [6213544000437118=491212013711360] +11:28:47 [ 37] [ 12] [507900200957] +11:28:47 [ 38] [ 6] [785991] +11:28:47 [ 39] [ 2] [00] +11:28:47 [ 41] [ 8] [09000100] +11:28:47 [ 49] [ 3] [418] +11:28:47 [ 54] [ 40] [1001418C0000052484331002418C000005248433] +11:28:47 ============================================================================ +11:28:47 Sending to : +11:28:47 ============================================================================ +11:28:47 + + +waiting on router queue for slot.... +11:28:48 ============================================================================ +11:28:48 Slot Id : <188> +11:28:48 Transaction Type : RESPONSE +11:28:48 Received From : +11:28:48 ============================================================================ +11:28:48 FNo. Len. Field Value +11:28:48 ============================================================================ +11:28:48 [ 1] [ 4] [0210] +11:28:48 [ 2] [ 16] [6213544000437118] +11:28:48 [ 3] [ 6] [311000] +11:28:48 [ 4] [ 12] [000000000000] +11:28:48 [ 7] [ 10] [0320113633] +11:28:48 [ 11] [ 6] [013429] +11:28:48 [ 12] [ 6] [113633] +11:28:48 [ 13] [ 4] [0320] +11:28:48 [ 15] [ 4] [0320] +11:28:48 [ 18] [ 4] [6011] +11:28:48 [ 32] [ 6] [220699] +11:28:48 [ 35] [ 32] [6213544000437118=491212013711360] +11:28:48 [ 37] [ 12] [507900200957] +11:28:48 [ 38] [ 6] [785991] +11:28:48 [ 39] [ 2] [00] +11:28:48 [ 41] [ 8] [09000100] +11:28:48 [ 49] [ 3] [418] +11:28:48 [ 54] [ 40] [1001418C0000052484331002418C000005248433] +11:28:48 ============================================================================ +11:28:48 Calculate Source COMM Id = 1 +11:28:48 ============================================================================ +11:28:48 + + +waiting on router queue for slot.... +11:28:49 ============================================================================ +11:28:49 Slot Id : <229> +11:28:49 Transaction Type : REQUEST +11:28:49 Received From : +11:28:49 ============================================================================ +11:28:49 FNo. Len. Field Value +11:28:49 ============================================================================ +11:28:49 [ 1] [ 4] [0800] +11:28:49 [ 7] [ 10] [0320042757] +11:28:49 [ 11] [ 6] [156099] +11:28:49 [ 70] [ 3] [301] +11:28:49 ============================================================================ +11:28:49 + + +waiting on router queue for slot.... +11:28:49 Sending to : +11:28:49 ============================================================================ +11:28:49 ============================================================================ +11:28:49 Slot Id : <229> +11:28:49 Transaction Type : RESPONSE +11:28:49 Received From : +11:28:49 ============================================================================ +11:28:49 FNo. Len. Field Value +11:28:49 ============================================================================ +11:28:49 [ 1] [ 4] [0810] +11:28:49 [ 7] [ 10] [0320042757] +11:28:49 [ 11] [ 6] [156099] +11:28:49 [ 39] [ 2] [00] +11:28:49 [ 70] [ 3] [301] +11:28:49 ============================================================================ +11:28:49 Calculate Source COMM Id = 2 +11:28:49 ============================================================================ +11:28:49 + + +waiting on router queue for slot.... +11:28:50 ============================================================================ +11:28:50 Slot Id : <223> +11:28:50 Transaction Type : REQUEST +11:28:50 Received From : +11:28:50 ============================================================================ +11:28:50 FNo. Len. Field Value +11:28:50 ============================================================================ +11:28:50 [ 1] [ 4] [0800] +11:28:50 [ 2] [ 5] [02531] +11:28:50 [ 3] [ 6] [579118] +11:28:50 [ 7] [ 10] [0320042850] +11:28:50 [ 11] [ 6] [807078] +11:28:50 [ 15] [ 10] [0320042850] +11:28:50 [ 37] [ 11] [57911807078] +11:28:50 [ 70] [ 3] [001] +11:28:50 ============================================================================ +11:28:50 + + +waiting on router queue for slot.... +11:28:50 ============================================================================ +11:28:50 Slot Id : <223> +11:28:50 Transaction Type : RESPONSE +11:28:50 Received From : +11:28:50 ============================================================================ +11:28:50 FNo. Len. Field Value +11:28:50 ============================================================================ +11:28:50 [ 1] [ 4] [0810] +11:28:50 [ 7] [ 10] [0320042850] +11:28:50 [ 11] [ 6] [807078] +11:28:50 [ 15] [ 4] [0320] +11:28:50 [ 37] [ 12] [57911807078] +11:28:50 [ 39] [ 2] [00] +11:28:50 [ 70] [ 3] [001] +11:28:50 ============================================================================ +11:28:50 Sending to : +11:28:50 ============================================================================ +11:28:50 + + +waiting on router queue for slot.... +11:29:04 ============================================================================ +11:29:04 Slot Id : <246> +11:29:04 Transaction Type : REQUEST +11:29:04 Received From : +11:29:04 ============================================================================ +11:29:04 FNo. Len. Field Value +11:29:04 ============================================================================ +11:29:04 [ 1] [ 4] [0800] +11:29:04 [ 7] [ 10] [0320042812] +11:29:04 [ 11] [ 6] [156100] +11:29:04 [ 70] [ 3] [301] +11:29:04 ============================================================================ +11:29:04 + + +waiting on router queue for slot.... +11:29:04 Sending to : +11:29:04 ============================================================================ +11:29:04 ============================================================================ +11:29:04 Slot Id : <246> +11:29:04 Transaction Type : RESPONSE +11:29:04 Received From : +11:29:04 ============================================================================ +11:29:04 FNo. Len. Field Value +11:29:04 ============================================================================ +11:29:04 [ 1] [ 4] [0810] +11:29:04 [ 7] [ 10] [0320042812] +11:29:04 [ 11] [ 6] [156100] +11:29:04 [ 39] [ 2] [00] +11:29:04 [ 70] [ 3] [301] +11:29:04 ============================================================================ +11:29:04 Calculate Source COMM Id = 2 +11:29:04 ============================================================================ +11:29:04 + + +waiting on router queue for slot.... +11:29:07 ============================================================================ +11:29:07 Slot Id : <215> +11:29:07 Transaction Type : REQUEST +11:29:07 Received From : +11:29:07 ============================================================================ +11:29:07 FNo. Len. Field Value +11:29:07 ============================================================================ +11:29:07 [ 1] [ 4] [0200] +11:29:07 [ 2] [ 16] [6213545000816185] +11:29:07 [ 3] [ 6] [010000] +11:29:07 [ 4] [ 12] [000010000000] +11:29:07 [ 7] [ 10] [0320042814] +11:29:07 [ 11] [ 6] [268502] +11:29:07 [ 12] [ 6] [112814] +11:29:07 [ 13] [ 4] [0320] +11:29:07 [ 14] [ 4] [4912] +11:29:07 [ 15] [ 4] [0320] +11:29:07 [ 18] [ 4] [6011] +11:29:07 [ 19] [ 3] [418] +11:29:07 [ 22] [ 3] [021] +11:29:07 [ 25] [ 2] [01] +11:29:07 [ 28] [ 9] [D00002000] +11:29:07 [ 32] [ 6] [180893] +11:29:07 [ 35] [ 32] [6213545000816185=491212011618773] +11:29:07 [ 37] [ 12] [507904268502] +11:29:07 [ 41] [ 8] [0262PSLB] +11:29:07 [ 42] [ 15] [999999 ] +11:29:07 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:29:07 [ 49] [ 3] [418] +11:29:07 [ 52] [ 16] [0FF6D950AFDBB668] +11:29:07 ============================================================================ +11:29:07 + + +waiting on router queue for slot.... +11:29:07 Sending to : +11:29:07 ============================================================================ +11:29:07 Sending to : +11:29:07 ============================================================================ +11:29:07 ============================================================================ +11:29:07 Slot Id : <215> +11:29:07 Transaction Type : REQUEST +11:29:07 Received From : +11:29:07 ============================================================================ +11:29:07 FNo. Len. Field Value +11:29:07 ============================================================================ +11:29:07 [ 1] [ 4] [0200] +11:29:07 [ 2] [ 16] [6213545000816185] +11:29:07 [ 3] [ 6] [010000] +11:29:07 [ 4] [ 12] [000010000000] +11:29:07 [ 7] [ 10] [0320042814] +11:29:07 [ 11] [ 6] [268502] +11:29:07 [ 12] [ 6] [112814] +11:29:07 [ 13] [ 4] [0320] +11:29:07 [ 14] [ 4] [4912] +11:29:07 [ 15] [ 4] [0320] +11:29:07 [ 18] [ 4] [6011] +11:29:07 [ 19] [ 3] [418] +11:29:07 [ 22] [ 3] [021] +11:29:07 [ 25] [ 2] [01] +11:29:07 [ 28] [ 9] [D00002000] +11:29:07 [ 32] [ 6] [180893] +11:29:07 [ 35] [ 32] [6213545000816185=491212011618773] +11:29:07 [ 37] [ 12] [507904268502] +11:29:07 [ 41] [ 8] [0262PSLB] +11:29:07 [ 42] [ 15] [999999 ] +11:29:07 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:29:07 [ 49] [ 3] [418] +11:29:07 [ 52] [ 16] [0FF6D950AFDBB668] +11:29:07 ============================================================================ +11:29:07 + + +waiting on router queue for slot.... +11:29:07 Sending to : +11:29:07 ============================================================================ +11:29:07 ============================================================================ +11:29:07 Slot Id : <215> +11:29:07 Transaction Type : REQUEST +11:29:07 Received From : +11:29:07 ============================================================================ +11:29:07 FNo. Len. Field Value +11:29:07 ============================================================================ +11:29:07 [ 1] [ 4] [0200] +11:29:07 [ 2] [ 16] [6213545000816185] +11:29:07 [ 3] [ 6] [010000] +11:29:07 [ 4] [ 12] [000010000000] +11:29:07 [ 7] [ 10] [0320042814] +11:29:07 [ 11] [ 6] [268502] +11:29:07 [ 12] [ 6] [112814] +11:29:07 [ 13] [ 4] [0320] +11:29:07 [ 14] [ 4] [4912] +11:29:07 [ 15] [ 4] [0320] +11:29:07 [ 18] [ 4] [6011] +11:29:07 [ 19] [ 3] [418] +11:29:07 [ 22] [ 3] [021] +11:29:07 [ 25] [ 2] [01] +11:29:07 [ 28] [ 9] [D00002000] +11:29:07 [ 32] [ 6] [180893] +11:29:07 [ 35] [ 32] [6213545000816185=491212011618773] +11:29:07 [ 37] [ 12] [507904268502] +11:29:07 [ 41] [ 8] [0262PSLB] +11:29:07 [ 42] [ 15] [999999 ] +11:29:07 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:29:07 [ 49] [ 3] [418] +11:29:07 [ 52] [ 16] [8D2F2F886E592FCA] +11:29:07 ============================================================================ +11:29:07 + + +waiting on router queue for slot.... +11:29:07 Sending to : <0> +11:29:07 ============================================================================ +11:29:08 ============================================================================ +11:29:08 Slot Id : <215> +11:29:08 Transaction Type : RESPONSE +11:29:08 Received From : +11:29:08 ============================================================================ +11:29:08 FNo. Len. Field Value +11:29:08 ============================================================================ +11:29:08 [ 1] [ 4] [0210] +11:29:08 [ 2] [ 16] [6213545000816185] +11:29:08 [ 3] [ 6] [010000] +11:29:08 [ 4] [ 12] [000010000000] +11:29:08 [ 7] [ 10] [0320042814] +11:29:08 [ 11] [ 6] [268502] +11:29:08 [ 12] [ 6] [112814] +11:29:08 [ 13] [ 4] [0320] +11:29:08 [ 15] [ 4] [0320] +11:29:08 [ 18] [ 4] [6011] +11:29:08 [ 19] [ 3] [418] +11:29:08 [ 32] [ 6] [180893] +11:29:08 [ 35] [ 32] [6213545000816185=491212011618773] +11:29:08 [ 37] [ 12] [507904268502] +11:29:08 [ 38] [ 6] [577191] +11:29:08 [ 39] [ 2] [00] +11:29:08 [ 41] [ 8] [0262PSLB] +11:29:08 [ 49] [ 3] [418] +11:29:08 [ 54] [ 40] [0001418C0002112444200002418C000211244420] +11:29:08 ============================================================================ +11:29:08 Sending to : +11:29:08 ============================================================================ +11:29:08 + + +waiting on router queue for slot.... +11:29:10 ============================================================================ +11:29:10 Slot Id : <215> +11:29:10 Transaction Type : RESPONSE +11:29:10 Received From : +11:29:10 ============================================================================ +11:29:10 FNo. Len. Field Value +11:29:10 ============================================================================ +11:29:10 [ 1] [ 4] [0210] +11:29:10 [ 2] [ 16] [6213545000816185] +11:29:10 [ 3] [ 6] [010000] +11:29:10 [ 4] [ 12] [000010000000] +11:29:10 [ 7] [ 10] [0320042814] +11:29:10 [ 11] [ 6] [268502] +11:29:10 [ 12] [ 6] [112814] +11:29:10 [ 13] [ 4] [0320] +11:29:10 [ 15] [ 4] [0320] +11:29:10 [ 18] [ 4] [6011] +11:29:10 [ 19] [ 3] [418] +11:29:10 [ 32] [ 6] [180893] +11:29:10 [ 35] [ 32] [6213545000816185=491212011618773] +11:29:10 [ 37] [ 12] [507904268502] +11:29:10 [ 38] [ 6] [577191] +11:29:10 [ 39] [ 2] [00] +11:29:10 [ 41] [ 8] [0262PSLB] +11:29:10 [ 49] [ 3] [418] +11:29:10 [ 54] [ 40] [0001418C0002112444200002418C000211244420] +11:29:10 ============================================================================ +11:29:10 Calculate Source COMM Id = 2 +11:29:10 ============================================================================ +11:29:10 + + +waiting on router queue for slot.... +11:29:21 ============================================================================ +11:29:21 Slot Id : <248> +11:29:21 Transaction Type : REQUEST +11:29:21 Received From : +11:29:21 ============================================================================ +11:29:21 FNo. Len. Field Value +11:29:21 ============================================================================ +11:29:21 [ 1] [ 4] [0800] +11:29:21 [ 7] [ 10] [0320042829] +11:29:21 [ 11] [ 6] [156101] +11:29:21 [ 70] [ 3] [301] +11:29:21 ============================================================================ +11:29:21 + + +waiting on router queue for slot.... +11:29:21 Sending to : +11:29:21 ============================================================================ +11:29:21 ============================================================================ +11:29:21 Slot Id : <248> +11:29:21 Transaction Type : RESPONSE +11:29:21 Received From : +11:29:21 ============================================================================ +11:29:21 FNo. Len. Field Value +11:29:21 ============================================================================ +11:29:21 [ 1] [ 4] [0810] +11:29:21 [ 7] [ 10] [0320042829] +11:29:21 [ 11] [ 6] [156101] +11:29:21 [ 39] [ 2] [00] +11:29:21 [ 70] [ 3] [301] +11:29:21 ============================================================================ +11:29:21 Calculate Source COMM Id = 2 +11:29:21 ============================================================================ +11:29:21 + + +waiting on router queue for slot.... +11:29:32 ============================================================================ +11:29:32 Slot Id : <243> +11:29:32 Transaction Type : REQUEST +11:29:32 Received From : +11:29:32 ============================================================================ +11:29:32 FNo. Len. Field Value +11:29:32 ============================================================================ +11:29:32 [ 1] [ 4] [0800] +11:29:32 [ 7] [ 10] [0320042839] +11:29:32 [ 11] [ 6] [156102] +11:29:32 [ 70] [ 3] [301] +11:29:32 ============================================================================ +11:29:32 + + +waiting on router queue for slot.... +11:29:32 Sending to : +11:29:32 ============================================================================ +11:29:32 ============================================================================ +11:29:32 Slot Id : <243> +11:29:32 Transaction Type : RESPONSE +11:29:32 Received From : +11:29:32 ============================================================================ +11:29:32 FNo. Len. Field Value +11:29:32 ============================================================================ +11:29:32 [ 1] [ 4] [0810] +11:29:32 [ 7] [ 10] [0320042839] +11:29:32 [ 11] [ 6] [156102] +11:29:32 [ 39] [ 2] [00] +11:29:32 [ 70] [ 3] [301] +11:29:32 ============================================================================ +11:29:32 Calculate Source COMM Id = 2 +11:29:32 ============================================================================ +11:29:32 + + +waiting on router queue for slot.... +11:29:35 ============================================================================ +11:29:35 Slot Id : <244> +11:29:35 Transaction Type : REQUEST +11:29:35 Received From : +11:29:35 ============================================================================ +11:29:35 FNo. Len. Field Value +11:29:35 ============================================================================ +11:29:35 [ 1] [ 4] [0200] +11:29:35 [ 2] [ 16] [6213541000119936] +11:29:35 [ 3] [ 6] [010000] +11:29:35 [ 4] [ 12] [000100000000] +11:29:35 [ 7] [ 10] [0320112726] +11:29:35 [ 11] [ 6] [941349] +11:29:35 [ 12] [ 6] [112726] +11:29:35 [ 13] [ 4] [0320] +11:29:35 [ 15] [ 4] [0320] +11:29:35 [ 18] [ 4] [6011] +11:29:35 [ 19] [ 3] [418] +11:29:35 [ 22] [ 3] [021] +11:29:35 [ 25] [ 2] [01] +11:29:35 [ 28] [ 9] [D00002000] +11:29:35 [ 32] [ 6] [668899] +11:29:35 [ 35] [ 32] [6213541000119936=491212011993560] +11:29:35 [ 37] [ 12] [507901963497] +11:29:35 [ 41] [ 8] [03020019] +11:29:35 [ 42] [ 15] [APT ] +11:29:35 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:29:35 [ 49] [ 3] [418] +11:29:35 [ 52] [ 16] [F12E25FDFF2B95EA] +11:29:35 ============================================================================ +11:29:35 + + +waiting on router queue for slot.... +11:29:35 Sending to : +11:29:35 ============================================================================ +11:29:35 Sending to : +11:29:35 ============================================================================ +11:29:35 ============================================================================ +11:29:35 Slot Id : <244> +11:29:35 Transaction Type : REQUEST +11:29:35 Received From : +11:29:35 ============================================================================ +11:29:35 FNo. Len. Field Value +11:29:35 ============================================================================ +11:29:35 [ 1] [ 4] [0200] +11:29:35 [ 2] [ 16] [6213541000119936] +11:29:35 [ 3] [ 6] [010000] +11:29:35 [ 4] [ 12] [000100000000] +11:29:35 [ 7] [ 10] [0320112726] +11:29:35 [ 11] [ 6] [941349] +11:29:35 [ 12] [ 6] [112726] +11:29:35 [ 13] [ 4] [0320] +11:29:35 [ 15] [ 4] [0320] +11:29:35 [ 18] [ 4] [6011] +11:29:35 [ 19] [ 3] [418] +11:29:35 [ 22] [ 3] [021] +11:29:35 [ 25] [ 2] [01] +11:29:35 [ 28] [ 9] [D00002000] +11:29:35 [ 32] [ 6] [668899] +11:29:35 [ 35] [ 32] [6213541000119936=491212011993560] +11:29:35 [ 37] [ 12] [507901963497] +11:29:35 [ 41] [ 8] [03020019] +11:29:35 [ 42] [ 15] [APT ] +11:29:35 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:29:35 [ 49] [ 3] [418] +11:29:35 [ 52] [ 16] [F12E25FDFF2B95EA] +11:29:35 ============================================================================ +11:29:35 + + +waiting on router queue for slot.... +11:29:35 Sending to : +11:29:35 ============================================================================ +11:29:35 ============================================================================ +11:29:35 Slot Id : <244> +11:29:35 Transaction Type : REQUEST +11:29:35 Received From : +11:29:35 ============================================================================ +11:29:35 FNo. Len. Field Value +11:29:35 ============================================================================ +11:29:35 [ 1] [ 4] [0200] +11:29:35 [ 2] [ 16] [6213541000119936] +11:29:35 [ 3] [ 6] [010000] +11:29:35 [ 4] [ 12] [000100000000] +11:29:35 [ 7] [ 10] [0320112726] +11:29:35 [ 11] [ 6] [941349] +11:29:35 [ 12] [ 6] [112726] +11:29:35 [ 13] [ 4] [0320] +11:29:35 [ 15] [ 4] [0320] +11:29:35 [ 18] [ 4] [6011] +11:29:35 [ 19] [ 3] [418] +11:29:35 [ 22] [ 3] [021] +11:29:35 [ 25] [ 2] [01] +11:29:35 [ 28] [ 9] [D00002000] +11:29:35 [ 32] [ 6] [668899] +11:29:35 [ 35] [ 32] [6213541000119936=491212011993560] +11:29:35 [ 37] [ 12] [507901963497] +11:29:35 [ 41] [ 8] [03020019] +11:29:35 [ 42] [ 15] [APT ] +11:29:35 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:29:35 [ 49] [ 3] [418] +11:29:35 [ 52] [ 16] [302E25B293EBF614] +11:29:35 ============================================================================ +11:29:35 + + +waiting on router queue for slot.... +11:29:35 Sending to : <0> +11:29:35 ============================================================================ +11:29:36 ============================================================================ +11:29:36 Slot Id : <244> +11:29:36 Transaction Type : RESPONSE +11:29:36 Received From : +11:29:36 ============================================================================ +11:29:36 FNo. Len. Field Value +11:29:36 ============================================================================ +11:29:36 [ 1] [ 4] [0210] +11:29:36 [ 2] [ 16] [6213541000119936] +11:29:36 [ 3] [ 6] [010000] +11:29:36 [ 4] [ 12] [000100000000] +11:29:36 [ 7] [ 10] [0320112726] +11:29:36 [ 11] [ 6] [941349] +11:29:36 [ 12] [ 6] [112726] +11:29:36 [ 13] [ 4] [0320] +11:29:36 [ 15] [ 4] [0320] +11:29:36 [ 18] [ 4] [6011] +11:29:36 [ 19] [ 3] [418] +11:29:36 [ 32] [ 6] [668899] +11:29:36 [ 35] [ 32] [6213541000119936=491212011993560] +11:29:36 [ 37] [ 12] [507901963497] +11:29:36 [ 38] [ 6] [780867] +11:29:36 [ 39] [ 2] [00] +11:29:36 [ 41] [ 8] [03020019] +11:29:36 [ 49] [ 3] [418] +11:29:36 [ 54] [ 40] [0001418C0001982404610002418C000198240461] +11:29:36 ============================================================================ +11:29:36 Sending to : +11:29:36 ============================================================================ +11:29:36 + + +waiting on router queue for slot.... +11:29:38 ============================================================================ +11:29:38 Slot Id : <244> +11:29:38 Transaction Type : RESPONSE +11:29:38 Received From : +11:29:38 ============================================================================ +11:29:38 FNo. Len. Field Value +11:29:38 ============================================================================ +11:29:38 [ 1] [ 4] [0210] +11:29:38 [ 2] [ 16] [6213541000119936] +11:29:38 [ 3] [ 6] [010000] +11:29:38 [ 4] [ 12] [000100000000] +11:29:38 [ 7] [ 10] [0320112726] +11:29:38 [ 11] [ 6] [941349] +11:29:38 [ 12] [ 6] [112726] +11:29:38 [ 13] [ 4] [0320] +11:29:38 [ 15] [ 4] [0320] +11:29:38 [ 18] [ 4] [6011] +11:29:38 [ 19] [ 3] [418] +11:29:38 [ 32] [ 6] [668899] +11:29:38 [ 35] [ 32] [6213541000119936=491212011993560] +11:29:38 [ 37] [ 12] [507901963497] +11:29:38 [ 38] [ 6] [780867] +11:29:38 [ 39] [ 2] [00] +11:29:38 [ 41] [ 8] [03020019] +11:29:38 [ 49] [ 3] [418] +11:29:38 [ 54] [ 40] [0001418C0001982404610002418C000198240461] +11:29:38 ============================================================================ +11:29:38 Calculate Source COMM Id = 4 +11:29:38 ============================================================================ +11:29:38 + + +waiting on router queue for slot.... +11:29:42 ============================================================================ +11:29:42 Slot Id : <227> +11:29:42 Transaction Type : REQUEST +11:29:42 Received From : +11:29:42 ============================================================================ +11:29:42 FNo. Len. Field Value +11:29:42 ============================================================================ +11:29:42 [ 1] [ 4] [0800] +11:29:42 [ 7] [ 10] [0320042850] +11:29:42 [ 11] [ 6] [156103] +11:29:42 [ 70] [ 3] [301] +11:29:42 ============================================================================ +11:29:42 + + +waiting on router queue for slot.... +11:29:42 Sending to : +11:29:42 ============================================================================ +11:29:42 ============================================================================ +11:29:42 Slot Id : <227> +11:29:42 Transaction Type : RESPONSE +11:29:42 Received From : +11:29:42 ============================================================================ +11:29:42 FNo. Len. Field Value +11:29:42 ============================================================================ +11:29:42 [ 1] [ 4] [0810] +11:29:42 [ 7] [ 10] [0320042850] +11:29:42 [ 11] [ 6] [156103] +11:29:42 [ 39] [ 2] [00] +11:29:42 [ 70] [ 3] [301] +11:29:42 ============================================================================ +11:29:42 Calculate Source COMM Id = 2 +11:29:42 ============================================================================ +11:29:42 + + +waiting on router queue for slot.... +11:29:51 ============================================================================ +11:29:51 Slot Id : <177> +11:29:51 Transaction Type : REQUEST +11:29:51 Received From : +11:29:51 ============================================================================ +11:29:51 FNo. Len. Field Value +11:29:51 ============================================================================ +11:29:51 [ 1] [ 4] [0200] +11:29:51 [ 2] [ 16] [6213545000816185] +11:29:51 [ 3] [ 6] [010000] +11:29:51 [ 4] [ 12] [000010000000] +11:29:51 [ 7] [ 10] [0320042857] +11:29:51 [ 11] [ 6] [268511] +11:29:51 [ 12] [ 6] [112857] +11:29:51 [ 13] [ 4] [0320] +11:29:51 [ 14] [ 4] [4912] +11:29:51 [ 15] [ 4] [0320] +11:29:51 [ 18] [ 4] [6011] +11:29:51 [ 19] [ 3] [418] +11:29:51 [ 22] [ 3] [021] +11:29:51 [ 25] [ 2] [01] +11:29:51 [ 28] [ 9] [D00002000] +11:29:51 [ 32] [ 6] [180893] +11:29:51 [ 35] [ 32] [6213545000816185=491212011618773] +11:29:51 [ 37] [ 12] [507904268511] +11:29:51 [ 41] [ 8] [0262PSLB] +11:29:51 [ 42] [ 15] [999999 ] +11:29:51 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:29:51 [ 49] [ 3] [418] +11:29:51 [ 52] [ 16] [0FF6D950AFDBB668] +11:29:51 ============================================================================ +11:29:51 + + +waiting on router queue for slot.... +11:29:51 Sending to : +11:29:51 ============================================================================ +11:29:51 Sending to : +11:29:51 ============================================================================ +11:29:51 ============================================================================ +11:29:51 Slot Id : <177> +11:29:51 Transaction Type : REQUEST +11:29:51 Received From : +11:29:51 ============================================================================ +11:29:51 FNo. Len. Field Value +11:29:51 ============================================================================ +11:29:51 [ 1] [ 4] [0200] +11:29:51 [ 2] [ 16] [6213545000816185] +11:29:51 [ 3] [ 6] [010000] +11:29:51 [ 4] [ 12] [000010000000] +11:29:51 [ 7] [ 10] [0320042857] +11:29:51 [ 11] [ 6] [268511] +11:29:51 [ 12] [ 6] [112857] +11:29:51 [ 13] [ 4] [0320] +11:29:51 [ 14] [ 4] [4912] +11:29:51 [ 15] [ 4] [0320] +11:29:51 [ 18] [ 4] [6011] +11:29:51 [ 19] [ 3] [418] +11:29:51 [ 22] [ 3] [021] +11:29:51 [ 25] [ 2] [01] +11:29:51 [ 28] [ 9] [D00002000] +11:29:51 [ 32] [ 6] [180893] +11:29:51 [ 35] [ 32] [6213545000816185=491212011618773] +11:29:51 [ 37] [ 12] [507904268511] +11:29:51 [ 41] [ 8] [0262PSLB] +11:29:51 [ 42] [ 15] [999999 ] +11:29:51 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:29:51 [ 49] [ 3] [418] +11:29:51 [ 52] [ 16] [0FF6D950AFDBB668] +11:29:51 ============================================================================ +11:29:51 + + +waiting on router queue for slot.... +11:29:51 Sending to : +11:29:51 ============================================================================ +11:29:51 ============================================================================ +11:29:51 Slot Id : <177> +11:29:51 Transaction Type : REQUEST +11:29:51 Received From : +11:29:51 ============================================================================ +11:29:51 FNo. Len. Field Value +11:29:51 ============================================================================ +11:29:51 [ 1] [ 4] [0200] +11:29:51 [ 2] [ 16] [6213545000816185] +11:29:51 [ 3] [ 6] [010000] +11:29:51 [ 4] [ 12] [000010000000] +11:29:51 [ 7] [ 10] [0320042857] +11:29:51 [ 11] [ 6] [268511] +11:29:51 [ 12] [ 6] [112857] +11:29:51 [ 13] [ 4] [0320] +11:29:51 [ 14] [ 4] [4912] +11:29:51 [ 15] [ 4] [0320] +11:29:51 [ 18] [ 4] [6011] +11:29:51 [ 19] [ 3] [418] +11:29:51 [ 22] [ 3] [021] +11:29:51 [ 25] [ 2] [01] +11:29:51 [ 28] [ 9] [D00002000] +11:29:51 [ 32] [ 6] [180893] +11:29:51 [ 35] [ 32] [6213545000816185=491212011618773] +11:29:51 [ 37] [ 12] [507904268511] +11:29:51 [ 41] [ 8] [0262PSLB] +11:29:51 [ 42] [ 15] [999999 ] +11:29:51 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:29:51 [ 49] [ 3] [418] +11:29:51 [ 52] [ 16] [8D2F2F886E592FCA] +11:29:51 ============================================================================ +11:29:51 + + +waiting on router queue for slot.... +11:29:51 Sending to : <0> +11:29:51 ============================================================================ +11:29:52 ============================================================================ +11:29:52 Slot Id : <177> +11:29:52 Transaction Type : RESPONSE +11:29:52 Received From : +11:29:52 ============================================================================ +11:29:52 FNo. Len. Field Value +11:29:52 ============================================================================ +11:29:52 [ 1] [ 4] [0210] +11:29:52 [ 2] [ 16] [6213545000816185] +11:29:52 [ 3] [ 6] [010000] +11:29:52 [ 4] [ 12] [000010000000] +11:29:52 [ 7] [ 10] [0320042857] +11:29:52 [ 11] [ 6] [268511] +11:29:52 [ 12] [ 6] [112857] +11:29:52 [ 13] [ 4] [0320] +11:29:52 [ 15] [ 4] [0320] +11:29:52 [ 18] [ 4] [6011] +11:29:52 [ 19] [ 3] [418] +11:29:52 [ 32] [ 6] [180893] +11:29:52 [ 35] [ 32] [6213545000816185=491212011618773] +11:29:52 [ 37] [ 12] [507904268511] +11:29:52 [ 38] [ 6] [227241] +11:29:52 [ 39] [ 2] [00] +11:29:52 [ 41] [ 8] [0262PSLB] +11:29:52 [ 49] [ 3] [418] +11:29:52 [ 54] [ 40] [0001418C0002010444200002418C000201044420] +11:29:52 ============================================================================ +11:29:52 Sending to : +11:29:52 ============================================================================ +11:29:52 + + +waiting on router queue for slot.... +11:29:52 ============================================================================ +11:29:52 Slot Id : <251> +11:29:52 Transaction Type : REQUEST +11:29:52 Received From : +11:29:52 ============================================================================ +11:29:52 FNo. Len. Field Value +11:29:52 ============================================================================ +11:29:52 [ 1] [ 4] [0800] +11:29:52 [ 2] [ 5] [02531] +11:29:52 [ 3] [ 6] [579118] +11:29:52 [ 7] [ 10] [0320042952] +11:29:52 [ 11] [ 6] [807079] +11:29:52 [ 15] [ 10] [0320042952] +11:29:52 [ 37] [ 11] [57911807079] +11:29:52 [ 70] [ 3] [001] +11:29:52 ============================================================================ +11:29:52 + + +waiting on router queue for slot.... +11:29:52 ============================================================================ +11:29:52 Slot Id : <251> +11:29:52 Transaction Type : RESPONSE +11:29:52 Received From : +11:29:52 ============================================================================ +11:29:52 FNo. Len. Field Value +11:29:52 ============================================================================ +11:29:52 [ 1] [ 4] [0810] +11:29:52 [ 7] [ 10] [0320042952] +11:29:52 [ 11] [ 6] [807079] +11:29:52 [ 15] [ 4] [0320] +11:29:52 [ 37] [ 12] [57911807079] +11:29:52 [ 39] [ 2] [00] +11:29:52 [ 70] [ 3] [001] +11:29:52 ============================================================================ +11:29:52 Sending to : +11:29:52 ============================================================================ +11:29:52 + + +waiting on router queue for slot.... +11:29:52 ============================================================================ +11:29:52 Slot Id : <235> +11:29:52 Transaction Type : REQUEST +11:29:52 Received From : +11:29:52 ============================================================================ +11:29:52 FNo. Len. Field Value +11:29:52 ============================================================================ +11:29:52 [ 1] [ 4] [0800] +11:29:52 [ 7] [ 10] [0320042900] +11:29:52 [ 11] [ 6] [156104] +11:29:52 [ 70] [ 3] [301] +11:29:52 ============================================================================ +11:29:52 + + +waiting on router queue for slot.... +11:29:52 Sending to : +11:29:52 ============================================================================ +11:29:52 ============================================================================ +11:29:52 Slot Id : <235> +11:29:52 Transaction Type : RESPONSE +11:29:52 Received From : +11:29:52 ============================================================================ +11:29:52 FNo. Len. Field Value +11:29:52 ============================================================================ +11:29:52 [ 1] [ 4] [0810] +11:29:52 [ 7] [ 10] [0320042900] +11:29:52 [ 11] [ 6] [156104] +11:29:52 [ 39] [ 2] [00] +11:29:52 [ 70] [ 3] [301] +11:29:52 ============================================================================ +11:29:52 Calculate Source COMM Id = 2 +11:29:52 ============================================================================ +11:29:52 + + +waiting on router queue for slot.... +11:29:53 ============================================================================ +11:29:53 Slot Id : <177> +11:29:53 Transaction Type : RESPONSE +11:29:53 Received From : +11:29:53 ============================================================================ +11:29:53 FNo. Len. Field Value +11:29:53 ============================================================================ +11:29:53 [ 1] [ 4] [0210] +11:29:53 [ 2] [ 16] [6213545000816185] +11:29:53 [ 3] [ 6] [010000] +11:29:53 [ 4] [ 12] [000010000000] +11:29:53 [ 7] [ 10] [0320042857] +11:29:53 [ 11] [ 6] [268511] +11:29:53 [ 12] [ 6] [112857] +11:29:53 [ 13] [ 4] [0320] +11:29:53 [ 15] [ 4] [0320] +11:29:53 [ 18] [ 4] [6011] +11:29:53 [ 19] [ 3] [418] +11:29:53 [ 32] [ 6] [180893] +11:29:53 [ 35] [ 32] [6213545000816185=491212011618773] +11:29:53 [ 37] [ 12] [507904268511] +11:29:53 [ 38] [ 6] [227241] +11:29:53 [ 39] [ 2] [00] +11:29:53 [ 41] [ 8] [0262PSLB] +11:29:53 [ 49] [ 3] [418] +11:29:53 [ 54] [ 40] [0001418C0002010444200002418C000201044420] +11:29:53 ============================================================================ +11:29:53 Calculate Source COMM Id = 2 +11:29:53 ============================================================================ +11:29:53 + + +waiting on router queue for slot.... +11:29:55 ============================================================================ +11:29:55 Slot Id : <250> +11:29:55 Transaction Type : REQUEST +11:29:55 Received From : +11:29:55 ============================================================================ +11:29:55 FNo. Len. Field Value +11:29:55 ============================================================================ +11:29:55 [ 1] [ 4] [0800] +11:29:55 [ 7] [ 10] [0320043742] +11:29:55 [ 11] [ 6] [061837] +11:29:55 [ 37] [ 12] [57911061837] +11:29:55 [ 70] [ 3] [301] +11:29:55 ============================================================================ +11:29:55 + + +waiting on router queue for slot.... +11:29:55 Sending to : +11:29:55 ============================================================================ +11:29:55 ============================================================================ +11:29:55 Slot Id : <250> +11:29:55 Transaction Type : RESPONSE +11:29:55 Received From : +11:29:55 ============================================================================ +11:29:55 FNo. Len. Field Value +11:29:55 ============================================================================ +11:29:55 [ 1] [ 4] [0810] +11:29:55 [ 7] [ 10] [0320043742] +11:29:55 [ 11] [ 6] [061837] +11:29:55 [ 37] [ 12] [579110618370] +11:29:55 [ 39] [ 2] [00] +11:29:55 [ 70] [ 3] [810] +11:29:55 ============================================================================ +11:29:55 Calculate Source COMM Id = 1 +11:29:55 ============================================================================ +11:29:55 + + +waiting on router queue for slot.... +11:30:09 ============================================================================ +11:30:09 Slot Id : <226> +11:30:09 Transaction Type : REQUEST +11:30:09 Received From : +11:30:09 ============================================================================ +11:30:09 FNo. Len. Field Value +11:30:09 ============================================================================ +11:30:09 [ 1] [ 4] [0800] +11:30:09 [ 7] [ 10] [0320042916] +11:30:09 [ 11] [ 6] [156105] +11:30:09 [ 70] [ 3] [301] +11:30:09 ============================================================================ +11:30:09 + + +waiting on router queue for slot.... +11:30:09 Sending to : +11:30:09 ============================================================================ +11:30:09 ============================================================================ +11:30:09 Slot Id : <226> +11:30:09 Transaction Type : RESPONSE +11:30:09 Received From : +11:30:09 ============================================================================ +11:30:09 FNo. Len. Field Value +11:30:09 ============================================================================ +11:30:09 [ 1] [ 4] [0810] +11:30:09 [ 7] [ 10] [0320042916] +11:30:09 [ 11] [ 6] [156105] +11:30:09 [ 39] [ 2] [00] +11:30:09 [ 70] [ 3] [301] +11:30:09 ============================================================================ +11:30:09 Calculate Source COMM Id = 2 +11:30:09 ============================================================================ +11:30:09 + + +waiting on router queue for slot.... +11:30:19 ============================================================================ +11:30:19 Slot Id : <242> +11:30:19 Transaction Type : REQUEST +11:30:19 Received From : +11:30:19 ============================================================================ +11:30:19 FNo. Len. Field Value +11:30:19 ============================================================================ +11:30:19 [ 1] [ 4] [0800] +11:30:19 [ 7] [ 10] [0320042927] +11:30:19 [ 11] [ 6] [156106] +11:30:19 [ 70] [ 3] [301] +11:30:19 ============================================================================ +11:30:19 + + +waiting on router queue for slot.... +11:30:19 Sending to : +11:30:19 ============================================================================ +11:30:19 ============================================================================ +11:30:19 Slot Id : <242> +11:30:19 Transaction Type : RESPONSE +11:30:19 Received From : +11:30:19 ============================================================================ +11:30:19 FNo. Len. Field Value +11:30:19 ============================================================================ +11:30:19 [ 1] [ 4] [0810] +11:30:19 [ 7] [ 10] [0320042927] +11:30:19 [ 11] [ 6] [156106] +11:30:19 [ 39] [ 2] [00] +11:30:19 [ 70] [ 3] [301] +11:30:19 ============================================================================ +11:30:19 Calculate Source COMM Id = 2 +11:30:19 ============================================================================ +11:30:19 + + +waiting on router queue for slot.... +11:30:35 ============================================================================ +11:30:35 Slot Id : <255> +11:30:35 Transaction Type : REQUEST +11:30:35 Received From : +11:30:35 ============================================================================ +11:30:35 FNo. Len. Field Value +11:30:35 ============================================================================ +11:30:35 [ 1] [ 4] [0800] +11:30:35 [ 7] [ 10] [0320042943] +11:30:35 [ 11] [ 6] [156107] +11:30:35 [ 70] [ 3] [301] +11:30:35 ============================================================================ +11:30:35 + + +waiting on router queue for slot.... +11:30:35 Sending to : +11:30:35 ============================================================================ +11:30:35 ============================================================================ +11:30:35 Slot Id : <255> +11:30:35 Transaction Type : RESPONSE +11:30:35 Received From : +11:30:35 ============================================================================ +11:30:35 FNo. Len. Field Value +11:30:35 ============================================================================ +11:30:35 [ 1] [ 4] [0810] +11:30:35 [ 7] [ 10] [0320042943] +11:30:35 [ 11] [ 6] [156107] +11:30:35 [ 39] [ 2] [00] +11:30:35 [ 70] [ 3] [301] +11:30:35 ============================================================================ +11:30:35 Calculate Source COMM Id = 2 +11:30:35 ============================================================================ +11:30:35 + + +waiting on router queue for slot.... +11:30:42 ============================================================================ +11:30:42 Slot Id : <233> +11:30:42 Transaction Type : REQUEST +11:30:42 Received From : +11:30:42 ============================================================================ +11:30:42 FNo. Len. Field Value +11:30:42 ============================================================================ +11:30:42 [ 1] [ 4] [0800] +11:30:42 [ 7] [ 10] [0320043038] +11:30:42 [ 11] [ 6] [031545] +11:30:42 [ 37] [ 12] [507911031545] +11:30:42 [ 70] [ 3] [001] +11:30:42 ============================================================================ +11:30:42 + + +waiting on router queue for slot.... +11:30:42 Sending to : +11:30:42 ============================================================================ +11:30:42 ============================================================================ +11:30:42 Slot Id : <233> +11:30:42 Transaction Type : RESPONSE +11:30:42 Received From : +11:30:42 ============================================================================ +11:30:42 FNo. Len. Field Value +11:30:42 ============================================================================ +11:30:42 [ 1] [ 4] [0810] +11:30:42 [ 7] [ 10] [0320043038] +11:30:42 [ 11] [ 6] [031545] +11:30:42 [ 37] [ 12] [507911031545] +11:30:42 [ 39] [ 2] [00] +11:30:42 [ 70] [ 3] [001] +11:30:42 ============================================================================ +11:30:42 Calculate Source COMM Id = 0 +11:30:42 ============================================================================ +11:30:42 + + +waiting on router queue for slot.... +11:30:47 ============================================================================ +11:30:47 Slot Id : <238> +11:30:47 Transaction Type : REQUEST +11:30:47 Received From : +11:30:47 ============================================================================ +11:30:47 FNo. Len. Field Value +11:30:47 ============================================================================ +11:30:47 [ 1] [ 4] [0800] +11:30:47 [ 7] [ 10] [0320042954] +11:30:47 [ 11] [ 6] [156108] +11:30:47 [ 70] [ 3] [301] +11:30:47 ============================================================================ +11:30:47 + + +waiting on router queue for slot.... +11:30:47 Sending to : +11:30:47 ============================================================================ +11:30:47 ============================================================================ +11:30:47 Slot Id : <238> +11:30:47 Transaction Type : RESPONSE +11:30:47 Received From : +11:30:47 ============================================================================ +11:30:47 FNo. Len. Field Value +11:30:47 ============================================================================ +11:30:47 [ 1] [ 4] [0810] +11:30:47 [ 7] [ 10] [0320042954] +11:30:47 [ 11] [ 6] [156108] +11:30:47 [ 39] [ 2] [00] +11:30:47 [ 70] [ 3] [301] +11:30:47 ============================================================================ +11:30:47 Calculate Source COMM Id = 2 +11:30:47 ============================================================================ +11:30:47 + + +waiting on router queue for slot.... +11:30:54 ============================================================================ +11:30:54 Slot Id : <200> +11:30:54 Transaction Type : REQUEST +11:30:54 Received From : +11:30:54 ============================================================================ +11:30:54 FNo. Len. Field Value +11:30:54 ============================================================================ +11:30:54 [ 1] [ 4] [0800] +11:30:54 [ 2] [ 5] [02531] +11:30:54 [ 3] [ 6] [579118] +11:30:54 [ 7] [ 10] [0320043054] +11:30:54 [ 11] [ 6] [807080] +11:30:54 [ 15] [ 10] [0320043054] +11:30:54 [ 37] [ 11] [57911807080] +11:30:54 [ 70] [ 3] [001] +11:30:54 ============================================================================ +11:30:54 + + +waiting on router queue for slot.... +11:30:54 ============================================================================ +11:30:54 Slot Id : <200> +11:30:54 Transaction Type : RESPONSE +11:30:54 Received From : +11:30:54 ============================================================================ +11:30:54 FNo. Len. Field Value +11:30:54 ============================================================================ +11:30:54 [ 1] [ 4] [0810] +11:30:54 [ 7] [ 10] [0320043054] +11:30:54 [ 11] [ 6] [807080] +11:30:54 [ 15] [ 4] [0320] +11:30:54 [ 37] [ 12] [57911807080] +11:30:54 [ 39] [ 2] [00] +11:30:54 [ 70] [ 3] [001] +11:30:54 ============================================================================ +11:30:54 Sending to : +11:30:54 ============================================================================ +11:30:54 + + +waiting on router queue for slot.... +11:31:02 ============================================================================ +11:31:02 Slot Id : <237> +11:31:02 Transaction Type : REQUEST +11:31:02 Received From : +11:31:02 ============================================================================ +11:31:02 FNo. Len. Field Value +11:31:02 ============================================================================ +11:31:02 [ 1] [ 4] [0800] +11:31:02 [ 7] [ 10] [0320043009] +11:31:02 [ 11] [ 6] [156109] +11:31:02 [ 70] [ 3] [301] +11:31:02 ============================================================================ +11:31:02 + + +waiting on router queue for slot.... +11:31:02 Sending to : +11:31:02 ============================================================================ +11:31:02 ============================================================================ +11:31:02 Slot Id : <237> +11:31:02 Transaction Type : RESPONSE +11:31:02 Received From : +11:31:02 ============================================================================ +11:31:02 FNo. Len. Field Value +11:31:02 ============================================================================ +11:31:02 [ 1] [ 4] [0810] +11:31:02 [ 7] [ 10] [0320043009] +11:31:02 [ 11] [ 6] [156109] +11:31:02 [ 39] [ 2] [00] +11:31:02 [ 70] [ 3] [301] +11:31:02 ============================================================================ +11:31:02 Calculate Source COMM Id = 2 +11:31:02 ============================================================================ +11:31:02 + + +waiting on router queue for slot.... +11:31:06 ============================================================================ +11:31:06 Slot Id : <216> +11:31:06 Transaction Type : REQUEST +11:31:06 Received From : +11:31:06 ============================================================================ +11:31:06 FNo. Len. Field Value +11:31:06 ============================================================================ +11:31:06 [ 1] [ 4] [0200] +11:31:06 [ 2] [ 16] [1808930200011443] +11:31:06 [ 3] [ 6] [011000] +11:31:06 [ 4] [ 12] [000030000000] +11:31:06 [ 7] [ 10] [0320113102] +11:31:06 [ 11] [ 6] [730631] +11:31:06 [ 12] [ 6] [113102] +11:31:06 [ 13] [ 4] [0320] +11:31:06 [ 15] [ 4] [0320] +11:31:06 [ 18] [ 4] [6011] +11:31:06 [ 22] [ 3] [900] +11:31:06 [ 25] [ 2] [02] +11:31:06 [ 28] [ 9] [D00002000] +11:31:06 [ 32] [ 6] [621354] +11:31:06 [ 35] [ 27] [1808930200011443=1803500591] +11:31:06 [ 37] [ 12] [507903848185] +11:31:06 [ 41] [ 8] [01010000] +11:31:06 [ 42] [ 15] [NATIVE ] +11:31:06 [ 43] [ 40] [Lao Itec Sisattanak LAO] +11:31:06 [ 49] [ 3] [418] +11:31:06 [ 52] [ 16] [935CA2FBD8657BEF] +11:31:06 ============================================================================ +11:31:06 + + +waiting on router queue for slot.... +11:31:06 Sending to : +11:31:06 ============================================================================ +11:31:06 Sending to : +11:31:06 ============================================================================ +11:31:06 ============================================================================ +11:31:06 Slot Id : <216> +11:31:06 Transaction Type : REQUEST +11:31:06 Received From : +11:31:06 ============================================================================ +11:31:06 FNo. Len. Field Value +11:31:06 ============================================================================ +11:31:06 [ 1] [ 4] [0200] +11:31:06 [ 2] [ 16] [1808930200011443] +11:31:06 [ 3] [ 6] [011000] +11:31:06 [ 4] [ 12] [000030000000] +11:31:06 [ 7] [ 10] [0320113102] +11:31:06 [ 11] [ 6] [730631] +11:31:06 [ 12] [ 6] [113102] +11:31:06 [ 13] [ 4] [0320] +11:31:06 [ 15] [ 4] [0320] +11:31:06 [ 18] [ 4] [6011] +11:31:06 [ 22] [ 3] [900] +11:31:06 [ 25] [ 2] [02] +11:31:06 [ 28] [ 9] [D00002000] +11:31:06 [ 32] [ 6] [621354] +11:31:06 [ 35] [ 27] [1808930200011443=1803500591] +11:31:06 [ 37] [ 12] [507903848185] +11:31:06 [ 41] [ 8] [01010000] +11:31:06 [ 42] [ 15] [NATIVE ] +11:31:06 [ 43] [ 40] [Lao Itec Sisattanak LAO] +11:31:06 [ 49] [ 3] [418] +11:31:06 [ 52] [ 16] [935CA2FBD8657BEF] +11:31:06 ============================================================================ +11:31:06 + + +waiting on router queue for slot.... +11:31:06 Sending to : +11:31:06 ============================================================================ +11:31:06 ============================================================================ +11:31:06 Slot Id : <216> +11:31:06 Transaction Type : REQUEST +11:31:06 Received From : +11:31:06 ============================================================================ +11:31:06 FNo. Len. Field Value +11:31:06 ============================================================================ +11:31:06 [ 1] [ 4] [0200] +11:31:06 [ 2] [ 16] [1808930200011443] +11:31:06 [ 3] [ 6] [011000] +11:31:06 [ 4] [ 12] [000030000000] +11:31:06 [ 7] [ 10] [0320113102] +11:31:06 [ 11] [ 6] [730631] +11:31:06 [ 12] [ 6] [113102] +11:31:06 [ 13] [ 4] [0320] +11:31:06 [ 15] [ 4] [0320] +11:31:06 [ 18] [ 4] [6011] +11:31:06 [ 22] [ 3] [900] +11:31:06 [ 25] [ 2] [02] +11:31:06 [ 28] [ 9] [D00002000] +11:31:06 [ 32] [ 6] [621354] +11:31:06 [ 35] [ 27] [1808930200011443=1803500591] +11:31:06 [ 37] [ 12] [507903848185] +11:31:06 [ 41] [ 8] [01010000] +11:31:06 [ 42] [ 15] [NATIVE ] +11:31:06 [ 43] [ 40] [Lao Itec Sisattanak LAO] +11:31:06 [ 49] [ 3] [418] +11:31:06 [ 52] [ 16] [AD25434C25365DC3] +11:31:06 ============================================================================ +11:31:06 + + +waiting on router queue for slot.... +11:31:06 Sending to : <2> +11:31:06 ============================================================================ +11:31:13 ============================================================================ +11:31:13 Slot Id : <216> +11:31:13 Transaction Type : RESPONSE +11:31:13 Received From : +11:31:13 ============================================================================ +11:31:13 FNo. Len. Field Value +11:31:13 ============================================================================ +11:31:13 [ 1] [ 4] [0210] +11:31:13 [ 2] [ 16] [1808930200011443] +11:31:13 [ 3] [ 6] [011000] +11:31:13 [ 4] [ 12] [000030000000] +11:31:13 [ 6] [ 12] [000030000000] +11:31:13 [ 7] [ 10] [0320113102] +11:31:13 [ 11] [ 6] [730631] +11:31:13 [ 12] [ 6] [113102] +11:31:13 [ 13] [ 4] [0320] +11:31:13 [ 18] [ 4] [6011] +11:31:13 [ 19] [ 3] [418] +11:31:13 [ 22] [ 3] [021] +11:31:13 [ 32] [ 6] [621354] +11:31:13 [ 35] [ 27] [1808930200011443=1803500591] +11:31:13 [ 37] [ 12] [507903848185] +11:31:13 [ 38] [ 6] [730631] +11:31:13 [ 39] [ 2] [00] +11:31:13 [ 41] [ 8] [01010000] +11:31:13 [ 49] [ 3] [418] +11:31:13 [ 52] [ 16] [AD25434C25365DC3] +11:31:13 [ 54] [ 20] [1001418C000869201600] +11:31:13 ============================================================================ +11:31:13 Sending to : +11:31:13 ============================================================================ +11:31:13 + + +waiting on router queue for slot.... +11:31:15 ============================================================================ +11:31:15 Slot Id : <216> +11:31:15 Transaction Type : RESPONSE +11:31:15 Received From : +11:31:15 ============================================================================ +11:31:15 FNo. Len. Field Value +11:31:15 ============================================================================ +11:31:15 [ 1] [ 4] [0210] +11:31:15 [ 2] [ 16] [1808930200011443] +11:31:15 [ 3] [ 6] [011000] +11:31:15 [ 4] [ 12] [000030000000] +11:31:15 [ 6] [ 12] [000030000000] +11:31:15 [ 7] [ 10] [0320113102] +11:31:15 [ 11] [ 6] [730631] +11:31:15 [ 12] [ 6] [113102] +11:31:15 [ 13] [ 4] [0320] +11:31:15 [ 18] [ 4] [6011] +11:31:15 [ 19] [ 3] [418] +11:31:15 [ 22] [ 3] [021] +11:31:15 [ 32] [ 6] [621354] +11:31:15 [ 35] [ 27] [1808930200011443=1803500591] +11:31:15 [ 37] [ 12] [507903848185] +11:31:15 [ 38] [ 6] [730631] +11:31:15 [ 39] [ 2] [00] +11:31:15 [ 41] [ 8] [01010000] +11:31:15 [ 49] [ 3] [418] +11:31:15 [ 52] [ 16] [AD25434C25365DC3] +11:31:15 [ 54] [ 20] [1001418C000869201600] +11:31:15 ============================================================================ +11:31:15 Calculate Source COMM Id = 0 +11:31:15 ============================================================================ +11:31:15 + + +waiting on router queue for slot.... +11:31:18 ============================================================================ +11:31:18 Slot Id : <234> +11:31:18 Transaction Type : REQUEST +11:31:18 Received From : +11:31:18 ============================================================================ +11:31:18 FNo. Len. Field Value +11:31:18 ============================================================================ +11:31:18 [ 1] [ 4] [0200] +11:31:18 [ 2] [ 16] [6213545000815559] +11:31:18 [ 3] [ 6] [011000] +11:31:18 [ 4] [ 12] [000020000000] +11:31:18 [ 7] [ 10] [0320043024] +11:31:18 [ 11] [ 6] [268524] +11:31:18 [ 12] [ 6] [113024] +11:31:18 [ 13] [ 4] [0320] +11:31:18 [ 14] [ 4] [4912] +11:31:18 [ 15] [ 4] [0320] +11:31:18 [ 18] [ 4] [6011] +11:31:18 [ 19] [ 3] [418] +11:31:18 [ 22] [ 3] [021] +11:31:18 [ 25] [ 2] [01] +11:31:18 [ 28] [ 9] [D00002000] +11:31:18 [ 32] [ 6] [180893] +11:31:18 [ 35] [ 32] [6213545000815559=491212011555799] +11:31:18 [ 37] [ 12] [507904268524] +11:31:18 [ 41] [ 8] [0262PSLB] +11:31:18 [ 42] [ 15] [999999 ] +11:31:18 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:31:18 [ 49] [ 3] [418] +11:31:18 [ 52] [ 16] [C30BF0098360C124] +11:31:18 ============================================================================ +11:31:18 + + +waiting on router queue for slot.... +11:31:18 Sending to : +11:31:18 ============================================================================ +11:31:18 Sending to : +11:31:18 ============================================================================ +11:31:18 ============================================================================ +11:31:18 Slot Id : <249> +11:31:18 Transaction Type : REQUEST +11:31:18 Received From : +11:31:18 ============================================================================ +11:31:18 FNo. Len. Field Value +11:31:18 ============================================================================ +11:31:18 [ 1] [ 4] [0200] +11:31:18 [ 2] [ 16] [6213545000530117] +11:31:18 [ 3] [ 6] [010000] +11:31:18 [ 4] [ 12] [000100000000] +11:31:18 [ 7] [ 10] [0320043024] +11:31:18 [ 11] [ 6] [268525] +11:31:18 [ 12] [ 6] [113024] +11:31:18 [ 13] [ 4] [0320] +11:31:18 [ 14] [ 4] [4912] +11:31:18 [ 15] [ 4] [0320] +11:31:18 [ 18] [ 4] [6011] +11:31:18 [ 19] [ 3] [418] +11:31:18 [ 22] [ 3] [021] +11:31:18 [ 25] [ 2] [01] +11:31:18 [ 28] [ 9] [D00002000] +11:31:18 [ 32] [ 6] [180893] +11:31:18 [ 35] [ 32] [6213545000530117=491212013011433] +11:31:18 [ 37] [ 12] [507904268525] +11:31:18 [ 41] [ 8] [0112CPBR] +11:31:18 [ 42] [ 15] [999999 ] +11:31:18 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:31:18 [ 49] [ 3] [418] +11:31:18 [ 52] [ 16] [90FB882762C2EA77] +11:31:18 ============================================================================ +11:31:18 + + +waiting on router queue for slot.... +11:31:18 Sending to : +11:31:18 ============================================================================ +11:31:18 Sending to : +11:31:18 ============================================================================ +11:31:18 ============================================================================ +11:31:18 Slot Id : <234> +11:31:18 Transaction Type : REQUEST +11:31:18 Received From : +11:31:18 ============================================================================ +11:31:18 FNo. Len. Field Value +11:31:18 ============================================================================ +11:31:18 [ 1] [ 4] [0200] +11:31:18 [ 2] [ 16] [6213545000815559] +11:31:18 [ 3] [ 6] [011000] +11:31:18 [ 4] [ 12] [000020000000] +11:31:18 [ 7] [ 10] [0320043024] +11:31:18 [ 11] [ 6] [268524] +11:31:18 [ 12] [ 6] [113024] +11:31:18 [ 13] [ 4] [0320] +11:31:18 [ 14] [ 4] [4912] +11:31:18 [ 15] [ 4] [0320] +11:31:18 [ 18] [ 4] [6011] +11:31:18 [ 19] [ 3] [418] +11:31:18 [ 22] [ 3] [021] +11:31:18 [ 25] [ 2] [01] +11:31:18 [ 28] [ 9] [D00002000] +11:31:18 [ 32] [ 6] [180893] +11:31:18 [ 35] [ 32] [6213545000815559=491212011555799] +11:31:18 [ 37] [ 12] [507904268524] +11:31:18 [ 41] [ 8] [0262PSLB] +11:31:18 [ 42] [ 15] [999999 ] +11:31:18 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:31:18 [ 49] [ 3] [418] +11:31:18 [ 52] [ 16] [C30BF0098360C124] +11:31:18 ============================================================================ +11:31:18 + + +waiting on router queue for slot.... +11:31:18 Sending to : +11:31:18 ============================================================================ +11:31:18 ============================================================================ +11:31:18 Slot Id : <234> +11:31:18 Transaction Type : REQUEST +11:31:18 Received From : +11:31:18 ============================================================================ +11:31:18 FNo. Len. Field Value +11:31:18 ============================================================================ +11:31:18 [ 1] [ 4] [0200] +11:31:18 [ 2] [ 16] [6213545000815559] +11:31:18 [ 3] [ 6] [011000] +11:31:18 [ 4] [ 12] [000020000000] +11:31:18 [ 7] [ 10] [0320043024] +11:31:18 [ 11] [ 6] [268524] +11:31:18 [ 12] [ 6] [113024] +11:31:18 [ 13] [ 4] [0320] +11:31:18 [ 14] [ 4] [4912] +11:31:18 [ 15] [ 4] [0320] +11:31:18 [ 18] [ 4] [6011] +11:31:18 [ 19] [ 3] [418] +11:31:18 [ 22] [ 3] [021] +11:31:18 [ 25] [ 2] [01] +11:31:18 [ 28] [ 9] [D00002000] +11:31:18 [ 32] [ 6] [180893] +11:31:18 [ 35] [ 32] [6213545000815559=491212011555799] +11:31:18 [ 37] [ 12] [507904268524] +11:31:18 [ 41] [ 8] [0262PSLB] +11:31:18 [ 42] [ 15] [999999 ] +11:31:18 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +11:31:18 [ 49] [ 3] [418] +11:31:18 [ 52] [ 16] [932E46F88F3CF808] +11:31:18 ============================================================================ +11:31:18 + + +waiting on router queue for slot.... +11:31:18 Sending to : <0> +11:31:18 ============================================================================ +11:31:19 ============================================================================ +11:31:19 Slot Id : <249> +11:31:19 Transaction Type : REQUEST +11:31:19 Received From : +11:31:19 ============================================================================ +11:31:19 FNo. Len. Field Value +11:31:19 ============================================================================ +11:31:19 [ 1] [ 4] [0200] +11:31:19 [ 2] [ 16] [6213545000530117] +11:31:19 [ 3] [ 6] [010000] +11:31:19 [ 4] [ 12] [000100000000] +11:31:19 [ 7] [ 10] [0320043024] +11:31:19 [ 11] [ 6] [268525] +11:31:19 [ 12] [ 6] [113024] +11:31:19 [ 13] [ 4] [0320] +11:31:19 [ 14] [ 4] [4912] +11:31:19 [ 15] [ 4] [0320] +11:31:19 [ 18] [ 4] [6011] +11:31:19 [ 19] [ 3] [418] +11:31:19 [ 22] [ 3] [021] +11:31:19 [ 25] [ 2] [01] +11:31:19 [ 28] [ 9] [D00002000] +11:31:19 [ 32] [ 6] [180893] +11:31:19 [ 35] [ 32] [6213545000530117=491212013011433] +11:31:19 [ 37] [ 12] [507904268525] +11:31:19 [ 41] [ 8] [0112CPBR] +11:31:19 [ 42] [ 15] [999999 ] +11:31:19 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:31:19 [ 49] [ 3] [418] +11:31:19 [ 52] [ 16] [90FB882762C2EA77] +11:31:19 ============================================================================ +11:31:19 + + +waiting on router queue for slot.... +11:31:19 Sending to : +11:31:19 ============================================================================ +11:31:19 ============================================================================ +11:31:19 Slot Id : <249> +11:31:19 Transaction Type : REQUEST +11:31:19 Received From : +11:31:19 ============================================================================ +11:31:19 FNo. Len. Field Value +11:31:19 ============================================================================ +11:31:19 [ 1] [ 4] [0200] +11:31:19 [ 2] [ 16] [6213545000530117] +11:31:19 [ 3] [ 6] [010000] +11:31:19 [ 4] [ 12] [000100000000] +11:31:19 [ 7] [ 10] [0320043024] +11:31:19 [ 11] [ 6] [268525] +11:31:19 [ 12] [ 6] [113024] +11:31:19 [ 13] [ 4] [0320] +11:31:19 [ 14] [ 4] [4912] +11:31:19 [ 15] [ 4] [0320] +11:31:19 [ 18] [ 4] [6011] +11:31:19 [ 19] [ 3] [418] +11:31:19 [ 22] [ 3] [021] +11:31:19 [ 25] [ 2] [01] +11:31:19 [ 28] [ 9] [D00002000] +11:31:19 [ 32] [ 6] [180893] +11:31:19 [ 35] [ 32] [6213545000530117=491212013011433] +11:31:19 [ 37] [ 12] [507904268525] +11:31:19 [ 41] [ 8] [0112CPBR] +11:31:19 [ 42] [ 15] [999999 ] +11:31:19 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:31:19 [ 49] [ 3] [418] +11:31:19 [ 52] [ 16] [0E967A080BB9D8A8] +11:31:19 ============================================================================ +11:31:19 + + +waiting on router queue for slot.... +11:31:19 Sending to : <0> +11:31:19 ============================================================================ +11:31:19 ============================================================================ +11:31:19 Slot Id : <253> +11:31:19 Transaction Type : REQUEST +11:31:19 Received From : +11:31:19 ============================================================================ +11:31:19 FNo. Len. Field Value +11:31:19 ============================================================================ +11:31:19 [ 1] [ 4] [0800] +11:31:19 [ 7] [ 10] [0320043026] +11:31:19 [ 11] [ 6] [156110] +11:31:19 [ 70] [ 3] [301] +11:31:19 ============================================================================ +11:31:19 + + +waiting on router queue for slot.... +11:31:19 Sending to : +11:31:19 ============================================================================ +11:31:19 ============================================================================ +11:31:19 Slot Id : <253> +11:31:19 Transaction Type : RESPONSE +11:31:19 Received From : +11:31:19 ============================================================================ +11:31:19 FNo. Len. Field Value +11:31:19 ============================================================================ +11:31:19 [ 1] [ 4] [0810] +11:31:19 [ 7] [ 10] [0320043026] +11:31:19 [ 11] [ 6] [156110] +11:31:19 [ 39] [ 2] [00] +11:31:19 [ 70] [ 3] [301] +11:31:19 ============================================================================ +11:31:19 Calculate Source COMM Id = 2 +11:31:19 ============================================================================ +11:31:19 + + +waiting on router queue for slot.... +11:31:19 ============================================================================ +11:31:19 Slot Id : <234> +11:31:19 Transaction Type : RESPONSE +11:31:19 Received From : +11:31:19 ============================================================================ +11:31:19 FNo. Len. Field Value +11:31:19 ============================================================================ +11:31:19 [ 1] [ 4] [0210] +11:31:19 [ 2] [ 16] [6213545000815559] +11:31:19 [ 3] [ 6] [011000] +11:31:19 [ 4] [ 12] [000020000000] +11:31:19 [ 7] [ 10] [0320043024] +11:31:19 [ 11] [ 6] [268524] +11:31:19 [ 12] [ 6] [113024] +11:31:19 [ 13] [ 4] [0320] +11:31:19 [ 15] [ 4] [0320] +11:31:19 [ 18] [ 4] [6011] +11:31:19 [ 19] [ 3] [418] +11:31:19 [ 32] [ 6] [180893] +11:31:19 [ 35] [ 32] [6213545000815559=491212011555799] +11:31:19 [ 37] [ 12] [507904268524] +11:31:19 [ 38] [ 6] [767780] +11:31:19 [ 39] [ 2] [00] +11:31:19 [ 41] [ 8] [0262PSLB] +11:31:19 [ 49] [ 3] [418] +11:31:19 [ 54] [ 40] [1001418C0001121839161002418C000112183916] +11:31:19 ============================================================================ +11:31:19 Sending to : +11:31:19 ============================================================================ +11:31:19 + + +waiting on router queue for slot.... +11:31:19 ============================================================================ +11:31:19 Slot Id : <249> +11:31:19 Transaction Type : RESPONSE +11:31:19 Received From : +11:31:19 ============================================================================ +11:31:19 FNo. Len. Field Value +11:31:19 ============================================================================ +11:31:19 [ 1] [ 4] [0210] +11:31:19 [ 2] [ 16] [6213545000530117] +11:31:19 [ 3] [ 6] [010000] +11:31:19 [ 4] [ 12] [000100000000] +11:31:19 [ 7] [ 10] [0320043024] +11:31:19 [ 11] [ 6] [268525] +11:31:19 [ 12] [ 6] [113024] +11:31:19 [ 13] [ 4] [0320] +11:31:19 [ 15] [ 4] [0320] +11:31:19 [ 18] [ 4] [6011] +11:31:19 [ 19] [ 3] [418] +11:31:19 [ 32] [ 6] [180893] +11:31:19 [ 35] [ 32] [6213545000530117=491212013011433] +11:31:19 [ 37] [ 12] [507904268525] +11:31:19 [ 38] [ 6] [880190] +11:31:19 [ 39] [ 2] [00] +11:31:19 [ 41] [ 8] [0112CPBR] +11:31:19 [ 49] [ 3] [418] +11:31:19 [ 54] [ 40] [0001418C0001890064240002418C000189006424] +11:31:19 ============================================================================ +11:31:19 Sending to : +11:31:19 ============================================================================ +11:31:19 + + +waiting on router queue for slot.... +11:31:21 ============================================================================ +11:31:21 Slot Id : <234> +11:31:21 Transaction Type : RESPONSE +11:31:21 Received From : +11:31:21 ============================================================================ +11:31:21 FNo. Len. Field Value +11:31:21 ============================================================================ +11:31:21 [ 1] [ 4] [0210] +11:31:21 [ 2] [ 16] [6213545000815559] +11:31:21 [ 3] [ 6] [011000] +11:31:21 [ 4] [ 12] [000020000000] +11:31:21 [ 7] [ 10] [0320043024] +11:31:21 [ 11] [ 6] [268524] +11:31:21 [ 12] [ 6] [113024] +11:31:21 [ 13] [ 4] [0320] +11:31:21 [ 15] [ 4] [0320] +11:31:21 [ 18] [ 4] [6011] +11:31:21 [ 19] [ 3] [418] +11:31:21 [ 32] [ 6] [180893] +11:31:21 [ 35] [ 32] [6213545000815559=491212011555799] +11:31:21 [ 37] [ 12] [507904268524] +11:31:21 [ 38] [ 6] [767780] +11:31:21 [ 39] [ 2] [00] +11:31:21 [ 41] [ 8] [0262PSLB] +11:31:21 [ 49] [ 3] [418] +11:31:21 [ 54] [ 40] [1001418C0001121839161002418C000112183916] +11:31:21 ============================================================================ +11:31:21 Calculate Source COMM Id = 2 +11:31:21 ============================================================================ +11:31:21 + + +waiting on router queue for slot.... +11:31:21 ============================================================================ +11:31:21 Slot Id : <260> +11:31:21 Transaction Type : REQUEST +11:31:21 Received From : +11:31:21 ============================================================================ +11:31:21 FNo. Len. Field Value +11:31:21 ============================================================================ +11:31:21 [ 1] [ 4] [0800] +11:31:21 [ 7] [ 10] [0320042912] +11:31:21 [ 11] [ 6] [011025] +11:31:21 [ 37] [ 12] [57911011025] +11:31:21 [ 70] [ 3] [301] +11:31:21 ============================================================================ +11:31:21 + + +waiting on router queue for slot.... +11:31:21 Sending to : +11:31:21 ============================================================================ +11:31:21 ============================================================================ +11:31:21 Slot Id : <260> +11:31:21 Transaction Type : RESPONSE +11:31:21 Received From : +11:31:21 ============================================================================ +11:31:21 FNo. Len. Field Value +11:31:21 ============================================================================ +11:31:21 [ 1] [ 4] [0810] +11:31:21 [ 7] [ 10] [0320042912] +11:31:21 [ 11] [ 6] [011025] +11:31:21 [ 37] [ 12] [579110110250] +11:31:21 [ 39] [ 2] [00] +11:31:21 [ 70] [ 3] [810] +11:31:21 ============================================================================ +11:31:21 Calculate Source COMM Id = 4 +11:31:21 ============================================================================ +11:31:21 + + +waiting on router queue for slot.... +11:31:23 ============================================================================ +11:31:23 Slot Id : <249> +11:31:23 Transaction Type : RESPONSE +11:31:23 Received From : +11:31:23 ============================================================================ +11:31:23 FNo. Len. Field Value +11:31:23 ============================================================================ +11:31:23 [ 1] [ 4] [0210] +11:31:23 [ 2] [ 16] [6213545000530117] +11:31:23 [ 3] [ 6] [010000] +11:31:23 [ 4] [ 12] [000100000000] +11:31:23 [ 7] [ 10] [0320043024] +11:31:23 [ 11] [ 6] [268525] +11:31:23 [ 12] [ 6] [113024] +11:31:23 [ 13] [ 4] [0320] +11:31:23 [ 15] [ 4] [0320] +11:31:23 [ 18] [ 4] [6011] +11:31:23 [ 19] [ 3] [418] +11:31:23 [ 32] [ 6] [180893] +11:31:23 [ 35] [ 32] [6213545000530117=491212013011433] +11:31:23 [ 37] [ 12] [507904268525] +11:31:23 [ 38] [ 6] [880190] +11:31:23 [ 39] [ 2] [00] +11:31:23 [ 41] [ 8] [0112CPBR] +11:31:23 [ 49] [ 3] [418] +11:31:23 [ 54] [ 40] [0001418C0001890064240002418C000189006424] +11:31:23 ============================================================================ +11:31:23 Calculate Source COMM Id = 2 +11:31:23 ============================================================================ +11:31:23 + + +waiting on router queue for slot.... +11:31:30 ============================================================================ +11:31:30 Slot Id : <210> +11:31:30 Transaction Type : REQUEST +11:31:30 Received From : +11:31:30 ============================================================================ +11:31:30 FNo. Len. Field Value +11:31:30 ============================================================================ +11:31:30 [ 1] [ 4] [0200] +11:31:30 [ 2] [ 16] [6688990040154765] +11:31:30 [ 3] [ 6] [011000] +11:31:30 [ 4] [ 12] [000020000000] +11:31:30 [ 7] [ 10] [0320113126] +11:31:30 [ 11] [ 6] [730696] +11:31:30 [ 12] [ 6] [113126] +11:31:30 [ 13] [ 4] [0320] +11:31:30 [ 15] [ 4] [0320] +11:31:30 [ 18] [ 4] [6011] +11:31:30 [ 22] [ 3] [900] +11:31:30 [ 25] [ 2] [02] +11:31:30 [ 28] [ 9] [D00002000] +11:31:30 [ 32] [ 6] [621354] +11:31:30 [ 35] [ 37] [6688990040154765=98051261937617000000] +11:31:30 [ 37] [ 12] [507902984434] +11:31:30 [ 41] [ 8] [12002100] +11:31:30 [ 42] [ 15] [NATIVE ] +11:31:30 [ 43] [ 40] [HOSPITAL PROVINCESBL Xayabouly LAO] +11:31:30 [ 49] [ 3] [418] +11:31:30 [ 52] [ 16] [E3D800FAF1FCC18F] +11:31:30 ============================================================================ +11:31:30 + + +waiting on router queue for slot.... +11:31:30 Sending to : +11:31:30 ============================================================================ +11:31:30 Sending to : +11:31:30 ============================================================================ +11:31:30 ============================================================================ +11:31:30 Slot Id : <210> +11:31:30 Transaction Type : REQUEST +11:31:30 Received From : +11:31:30 ============================================================================ +11:31:30 FNo. Len. Field Value +11:31:30 ============================================================================ +11:31:30 [ 1] [ 4] [0200] +11:31:30 [ 2] [ 16] [6688990040154765] +11:31:30 [ 3] [ 6] [011000] +11:31:30 [ 4] [ 12] [000020000000] +11:31:30 [ 7] [ 10] [0320113126] +11:31:30 [ 11] [ 6] [730696] +11:31:30 [ 12] [ 6] [113126] +11:31:30 [ 13] [ 4] [0320] +11:31:30 [ 15] [ 4] [0320] +11:31:30 [ 18] [ 4] [6011] +11:31:30 [ 22] [ 3] [900] +11:31:30 [ 25] [ 2] [02] +11:31:30 [ 28] [ 9] [D00002000] +11:31:30 [ 32] [ 6] [621354] +11:31:30 [ 35] [ 37] [6688990040154765=98051261937617000000] +11:31:30 [ 37] [ 12] [507902984434] +11:31:30 [ 41] [ 8] [12002100] +11:31:30 [ 42] [ 15] [NATIVE ] +11:31:30 [ 43] [ 40] [HOSPITAL PROVINCESBL Xayabouly LAO] +11:31:30 [ 49] [ 3] [418] +11:31:30 [ 52] [ 16] [E3D800FAF1FCC18F] +11:31:30 ============================================================================ +11:31:30 + + +waiting on router queue for slot.... +11:31:30 Sending to : +11:31:30 ============================================================================ +11:31:30 ============================================================================ +11:31:30 Slot Id : <210> +11:31:30 Transaction Type : REQUEST +11:31:30 Received From : +11:31:30 ============================================================================ +11:31:30 FNo. Len. Field Value +11:31:30 ============================================================================ +11:31:30 [ 1] [ 4] [0200] +11:31:30 [ 2] [ 16] [6688990040154765] +11:31:30 [ 3] [ 6] [011000] +11:31:30 [ 4] [ 12] [000020000000] +11:31:30 [ 7] [ 10] [0320113126] +11:31:30 [ 11] [ 6] [730696] +11:31:30 [ 12] [ 6] [113126] +11:31:30 [ 13] [ 4] [0320] +11:31:30 [ 15] [ 4] [0320] +11:31:30 [ 18] [ 4] [6011] +11:31:30 [ 22] [ 3] [900] +11:31:30 [ 25] [ 2] [02] +11:31:30 [ 28] [ 9] [D00002000] +11:31:30 [ 32] [ 6] [621354] +11:31:30 [ 35] [ 37] [6688990040154765=98051261937617000000] +11:31:30 [ 37] [ 12] [507902984434] +11:31:30 [ 41] [ 8] [12002100] +11:31:30 [ 42] [ 15] [NATIVE ] +11:31:30 [ 43] [ 40] [HOSPITAL PROVINCESBL Xayabouly LAO] +11:31:30 [ 49] [ 3] [418] +11:31:30 [ 52] [ 16] [C4B3734A18394C3A] +11:31:30 ============================================================================ +11:31:30 + + +waiting on router queue for slot.... +11:31:30 Sending to : <4> +11:31:30 ============================================================================ +11:31:31 ============================================================================ +11:31:31 Slot Id : <210> +11:31:31 Transaction Type : RESPONSE +11:31:31 Received From : +11:31:31 ============================================================================ +11:31:31 FNo. Len. Field Value +11:31:31 ============================================================================ +11:31:31 [ 1] [ 4] [0210] +11:31:31 [ 2] [ 16] [6688990040154765] +11:31:31 [ 3] [ 6] [011000] +11:31:31 [ 4] [ 12] [000020000000] +11:31:31 [ 11] [ 6] [730696] +11:31:31 [ 12] [ 6] [113126] +11:31:31 [ 15] [ 4] [0320] +11:31:31 [ 18] [ 4] [6011] +11:31:31 [ 32] [ 6] [621354] +11:31:31 [ 35] [ 37] [6688990040154765=98051261937617000000] +11:31:31 [ 37] [ 12] [507902984434] +11:31:31 [ 38] [ 6] [354100] +11:31:31 [ 39] [ 2] [00] +11:31:31 [ 41] [ 8] [12002100] +11:31:31 [ 49] [ 3] [418] +11:31:31 [ 54] [ 20] [1002418C000033800000] +11:31:31 ============================================================================ +11:31:31 Sending to : +11:31:31 ============================================================================ +11:31:31 + + +waiting on router queue for slot.... +11:31:33 ============================================================================ +11:31:33 Slot Id : <210> +11:31:33 Transaction Type : RESPONSE +11:31:33 Received From : +11:31:33 ============================================================================ +11:31:33 FNo. Len. Field Value +11:31:33 ============================================================================ +11:31:33 [ 1] [ 4] [0210] +11:31:33 [ 2] [ 16] [6688990040154765] +11:31:33 [ 3] [ 6] [011000] +11:31:33 [ 4] [ 12] [000020000000] +11:31:33 [ 11] [ 6] [730696] +11:31:33 [ 12] [ 6] [113126] +11:31:33 [ 15] [ 4] [0320] +11:31:33 [ 18] [ 4] [6011] +11:31:33 [ 32] [ 6] [621354] +11:31:33 [ 35] [ 37] [6688990040154765=98051261937617000000] +11:31:33 [ 37] [ 12] [507902984434] +11:31:33 [ 38] [ 6] [354100] +11:31:33 [ 39] [ 2] [00] +11:31:33 [ 41] [ 8] [12002100] +11:31:33 [ 49] [ 3] [418] +11:31:33 [ 54] [ 20] [1002418C000033800000] +11:31:33 ============================================================================ +11:31:33 Calculate Source COMM Id = 0 +11:31:33 ============================================================================ +11:31:33 + + +waiting on router queue for slot.... +11:31:34 ============================================================================ +11:31:34 Slot Id : <259> +11:31:34 Transaction Type : REQUEST +11:31:34 Received From : +11:31:34 ============================================================================ +11:31:34 FNo. Len. Field Value +11:31:34 ============================================================================ +11:31:34 [ 1] [ 4] [0800] +11:31:34 [ 7] [ 10] [0320043042] +11:31:34 [ 11] [ 6] [156111] +11:31:34 [ 70] [ 3] [301] +11:31:34 ============================================================================ +11:31:34 + + +waiting on router queue for slot.... +11:31:34 Sending to : +11:31:34 ============================================================================ +11:31:34 ============================================================================ +11:31:34 Slot Id : <259> +11:31:34 Transaction Type : RESPONSE +11:31:34 Received From : +11:31:34 ============================================================================ +11:31:34 FNo. Len. Field Value +11:31:34 ============================================================================ +11:31:34 [ 1] [ 4] [0810] +11:31:34 [ 7] [ 10] [0320043042] +11:31:34 [ 11] [ 6] [156111] +11:31:34 [ 39] [ 2] [00] +11:31:34 [ 70] [ 3] [301] +11:31:34 ============================================================================ +11:31:34 Calculate Source COMM Id = 2 +11:31:34 ============================================================================ +11:31:34 + + +waiting on router queue for slot.... +11:31:45 ============================================================================ +11:31:45 Slot Id : <263> +11:31:45 Transaction Type : REQUEST +11:31:45 Received From : +11:31:45 ============================================================================ +11:31:45 FNo. Len. Field Value +11:31:45 ============================================================================ +11:31:45 [ 1] [ 4] [0800] +11:31:45 [ 7] [ 10] [0320043053] +11:31:45 [ 11] [ 6] [156112] +11:31:45 [ 70] [ 3] [301] +11:31:45 ============================================================================ +11:31:45 + + +waiting on router queue for slot.... +11:31:45 Sending to : +11:31:45 ============================================================================ +11:31:45 ============================================================================ +11:31:45 Slot Id : <263> +11:31:45 Transaction Type : RESPONSE +11:31:45 Received From : +11:31:45 ============================================================================ +11:31:45 FNo. Len. Field Value +11:31:45 ============================================================================ +11:31:45 [ 1] [ 4] [0810] +11:31:45 [ 7] [ 10] [0320043053] +11:31:45 [ 11] [ 6] [156112] +11:31:45 [ 39] [ 2] [00] +11:31:45 [ 70] [ 3] [301] +11:31:45 ============================================================================ +11:31:45 Calculate Source COMM Id = 2 +11:31:45 ============================================================================ +11:31:45 + + +waiting on router queue for slot.... +11:31:46 ============================================================================ +11:31:46 Slot Id : <261> +11:31:46 Transaction Type : REQUEST +11:31:46 Received From : +11:31:46 ============================================================================ +11:31:46 FNo. Len. Field Value +11:31:46 ============================================================================ +11:31:46 [ 1] [ 4] [0420] +11:31:46 [ 2] [ 16] [6213545000810238] +11:31:46 [ 3] [ 6] [011000] +11:31:46 [ 4] [ 12] [000030000000] +11:31:46 [ 7] [ 10] [0320113208] +11:31:46 [ 11] [ 6] [079099] +11:31:46 [ 12] [ 6] [113208] +11:31:46 [ 13] [ 4] [0320] +11:31:46 [ 14] [ 4] [4912] +11:31:46 [ 15] [ 4] [0320] +11:31:46 [ 18] [ 4] [6011] +11:31:46 [ 22] [ 3] [900] +11:31:46 [ 25] [ 2] [02] +11:31:46 [ 28] [ 9] [C00002000] +11:31:46 [ 32] [ 6] [220699] +11:31:46 [ 35] [ 32] [6213545000810238=491212011023732] +11:31:46 [ 37] [ 12] [507900132968] +11:31:46 [ 39] [ 2] [00] +11:31:46 [ 41] [ 8] [03000100] +11:31:46 [ 42] [ 15] [APTRA ] +11:31:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:31:46 [ 49] [ 3] [418] +11:31:46 [ 90] [ 42] [020007909903201132080000022069900000000000] +11:31:46 ============================================================================ +11:31:46 + + +waiting on router queue for slot.... +11:31:46 Sending to : +11:31:46 ============================================================================ +11:31:48 ============================================================================ +11:31:48 Slot Id : <225> +11:31:48 Transaction Type : REQUEST +11:31:48 Received From : +11:31:48 ============================================================================ +11:31:48 FNo. Len. Field Value +11:31:48 ============================================================================ +11:31:48 [ 1] [ 4] [0200] +11:31:48 [ 2] [ 16] [6213541000119936] +11:31:48 [ 3] [ 6] [010000] +11:31:48 [ 4] [ 12] [000100000000] +11:31:48 [ 7] [ 10] [0320112939] +11:31:48 [ 11] [ 6] [941431] +11:31:48 [ 12] [ 6] [112939] +11:31:48 [ 13] [ 4] [0320] +11:31:48 [ 15] [ 4] [0320] +11:31:48 [ 18] [ 4] [6011] +11:31:48 [ 19] [ 3] [418] +11:31:48 [ 22] [ 3] [021] +11:31:48 [ 25] [ 2] [01] +11:31:48 [ 28] [ 9] [D00002000] +11:31:48 [ 32] [ 6] [668899] +11:31:48 [ 35] [ 32] [6213541000119936=491212011993560] +11:31:48 [ 37] [ 12] [507901963499] +11:31:48 [ 41] [ 8] [03020019] +11:31:48 [ 42] [ 15] [APT ] +11:31:48 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:31:48 [ 49] [ 3] [418] +11:31:48 [ 52] [ 16] [F12E25FDFF2B95EA] +11:31:48 ============================================================================ +11:31:48 + + +waiting on router queue for slot.... +11:31:48 Sending to : +11:31:48 ============================================================================ +11:31:48 Sending to : +11:31:48 ============================================================================ +11:31:48 ============================================================================ +11:31:48 Slot Id : <225> +11:31:48 Transaction Type : REQUEST +11:31:48 Received From : +11:31:48 ============================================================================ +11:31:48 FNo. Len. Field Value +11:31:48 ============================================================================ +11:31:48 [ 1] [ 4] [0200] +11:31:48 [ 2] [ 16] [6213541000119936] +11:31:48 [ 3] [ 6] [010000] +11:31:48 [ 4] [ 12] [000100000000] +11:31:48 [ 7] [ 10] [0320112939] +11:31:48 [ 11] [ 6] [941431] +11:31:48 [ 12] [ 6] [112939] +11:31:48 [ 13] [ 4] [0320] +11:31:48 [ 15] [ 4] [0320] +11:31:48 [ 18] [ 4] [6011] +11:31:48 [ 19] [ 3] [418] +11:31:48 [ 22] [ 3] [021] +11:31:48 [ 25] [ 2] [01] +11:31:48 [ 28] [ 9] [D00002000] +11:31:48 [ 32] [ 6] [668899] +11:31:48 [ 35] [ 32] [6213541000119936=491212011993560] +11:31:48 [ 37] [ 12] [507901963499] +11:31:48 [ 41] [ 8] [03020019] +11:31:48 [ 42] [ 15] [APT ] +11:31:48 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:31:48 [ 49] [ 3] [418] +11:31:48 [ 52] [ 16] [F12E25FDFF2B95EA] +11:31:48 ============================================================================ +11:31:48 + + +waiting on router queue for slot.... +11:31:48 Sending to : +11:31:48 ============================================================================ +11:31:48 ============================================================================ +11:31:48 Slot Id : <225> +11:31:48 Transaction Type : REQUEST +11:31:48 Received From : +11:31:48 ============================================================================ +11:31:48 FNo. Len. Field Value +11:31:48 ============================================================================ +11:31:48 [ 1] [ 4] [0200] +11:31:48 [ 2] [ 16] [6213541000119936] +11:31:48 [ 3] [ 6] [010000] +11:31:48 [ 4] [ 12] [000100000000] +11:31:48 [ 7] [ 10] [0320112939] +11:31:48 [ 11] [ 6] [941431] +11:31:48 [ 12] [ 6] [112939] +11:31:48 [ 13] [ 4] [0320] +11:31:48 [ 15] [ 4] [0320] +11:31:48 [ 18] [ 4] [6011] +11:31:48 [ 19] [ 3] [418] +11:31:48 [ 22] [ 3] [021] +11:31:48 [ 25] [ 2] [01] +11:31:48 [ 28] [ 9] [D00002000] +11:31:48 [ 32] [ 6] [668899] +11:31:48 [ 35] [ 32] [6213541000119936=491212011993560] +11:31:48 [ 37] [ 12] [507901963499] +11:31:48 [ 41] [ 8] [03020019] +11:31:48 [ 42] [ 15] [APT ] +11:31:48 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:31:48 [ 49] [ 3] [418] +11:31:48 [ 52] [ 16] [302E25B293EBF614] +11:31:48 ============================================================================ +11:31:48 + + +waiting on router queue for slot.... +11:31:48 Sending to : <0> +11:31:48 ============================================================================ +11:31:49 ============================================================================ +11:31:49 Slot Id : <225> +11:31:49 Transaction Type : RESPONSE +11:31:49 Received From : +11:31:49 ============================================================================ +11:31:49 FNo. Len. Field Value +11:31:49 ============================================================================ +11:31:49 [ 1] [ 4] [0210] +11:31:49 [ 2] [ 16] [6213541000119936] +11:31:49 [ 3] [ 6] [010000] +11:31:49 [ 4] [ 12] [000100000000] +11:31:49 [ 7] [ 10] [0320112939] +11:31:49 [ 11] [ 6] [941431] +11:31:49 [ 12] [ 6] [112939] +11:31:49 [ 13] [ 4] [0320] +11:31:49 [ 15] [ 4] [0320] +11:31:49 [ 18] [ 4] [6011] +11:31:49 [ 19] [ 3] [418] +11:31:49 [ 32] [ 6] [668899] +11:31:49 [ 35] [ 32] [6213541000119936=491212011993560] +11:31:49 [ 37] [ 12] [507901963499] +11:31:49 [ 38] [ 6] [279073] +11:31:49 [ 39] [ 2] [00] +11:31:49 [ 41] [ 8] [03020019] +11:31:49 [ 49] [ 3] [418] +11:31:49 [ 54] [ 40] [0001418C0000980404610002418C000098040461] +11:31:49 ============================================================================ +11:31:49 Sending to : +11:31:49 ============================================================================ +11:31:49 + + +waiting on router queue for slot.... +11:31:51 ============================================================================ +11:31:51 Slot Id : <261> +11:31:51 Transaction Type : RESPONSE +11:31:51 Received From : +11:31:51 ============================================================================ +11:31:51 FNo. Len. Field Value +11:31:51 ============================================================================ +11:31:51 [ 1] [ 4] [0430] +11:31:51 [ 2] [ 16] [6213545000810238] +11:31:51 [ 3] [ 6] [011000] +11:31:51 [ 4] [ 12] [000030000000] +11:31:51 [ 7] [ 10] [0320113208] +11:31:51 [ 11] [ 6] [079099] +11:31:51 [ 12] [ 6] [113208] +11:31:51 [ 13] [ 4] [0320] +11:31:51 [ 14] [ 4] [4912] +11:31:51 [ 15] [ 4] [0320] +11:31:51 [ 18] [ 4] [6011] +11:31:51 [ 22] [ 3] [900] +11:31:51 [ 25] [ 2] [02] +11:31:51 [ 28] [ 9] [C00002000] +11:31:51 [ 32] [ 6] [220699] +11:31:51 [ 35] [ 32] [6213545000810238=491212011023732] +11:31:51 [ 37] [ 12] [507900132968] +11:31:51 [ 39] [ 2] [00] +11:31:51 [ 41] [ 8] [03000100] +11:31:51 [ 42] [ 15] [APTRA ] +11:31:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:31:51 [ 49] [ 3] [418] +11:31:51 [ 90] [ 42] [020007909903201132080000022069900000000000] +11:31:51 ============================================================================ +11:31:51 Calculate Source COMM Id = 1 +11:31:51 ============================================================================ +11:31:51 + + +waiting on router queue for slot.... +11:31:51 ============================================================================ +11:31:51 Slot Id : <225> +11:31:51 Transaction Type : RESPONSE +11:31:51 Received From : +11:31:51 ============================================================================ +11:31:51 FNo. Len. Field Value +11:31:51 ============================================================================ +11:31:51 [ 1] [ 4] [0210] +11:31:51 [ 2] [ 16] [6213541000119936] +11:31:51 [ 3] [ 6] [010000] +11:31:51 [ 4] [ 12] [000100000000] +11:31:51 [ 7] [ 10] [0320112939] +11:31:51 [ 11] [ 6] [941431] +11:31:51 [ 12] [ 6] [112939] +11:31:51 [ 13] [ 4] [0320] +11:31:51 [ 15] [ 4] [0320] +11:31:51 [ 18] [ 4] [6011] +11:31:51 [ 19] [ 3] [418] +11:31:51 [ 32] [ 6] [668899] +11:31:51 [ 35] [ 32] [6213541000119936=491212011993560] +11:31:51 [ 37] [ 12] [507901963499] +11:31:51 [ 38] [ 6] [279073] +11:31:51 [ 39] [ 2] [00] +11:31:51 [ 41] [ 8] [03020019] +11:31:51 [ 49] [ 3] [418] +11:31:51 [ 54] [ 40] [0001418C0000980404610002418C000098040461] +11:31:51 ============================================================================ +11:31:51 Calculate Source COMM Id = 4 +11:31:51 ============================================================================ +11:31:51 + + +waiting on router queue for slot.... +11:31:56 ============================================================================ +11:31:56 Slot Id : <270> +11:31:56 Transaction Type : REQUEST +11:31:56 Received From : +11:31:56 ============================================================================ +11:31:56 FNo. Len. Field Value +11:31:56 ============================================================================ +11:31:56 [ 1] [ 4] [0800] +11:31:56 [ 2] [ 5] [02531] +11:31:56 [ 3] [ 6] [579118] +11:31:56 [ 7] [ 10] [0320043156] +11:31:56 [ 11] [ 6] [807081] +11:31:56 [ 15] [ 10] [0320043156] +11:31:56 [ 37] [ 11] [57911807081] +11:31:56 [ 70] [ 3] [001] +11:31:56 ============================================================================ +11:31:56 + + +waiting on router queue for slot.... +11:31:56 ============================================================================ +11:31:56 Slot Id : <270> +11:31:56 Transaction Type : RESPONSE +11:31:56 Received From : +11:31:56 ============================================================================ +11:31:56 FNo. Len. Field Value +11:31:56 ============================================================================ +11:31:56 [ 1] [ 4] [0810] +11:31:56 [ 7] [ 10] [0320043156] +11:31:56 [ 11] [ 6] [807081] +11:31:56 [ 15] [ 4] [0320] +11:31:56 [ 37] [ 12] [57911807081] +11:31:56 [ 39] [ 2] [00] +11:31:56 [ 70] [ 3] [001] +11:31:56 ============================================================================ +11:31:56 Sending to : +11:31:56 ============================================================================ +11:31:56 + + +waiting on router queue for slot.... +11:31:56 ============================================================================ +11:31:56 Slot Id : <199> +11:31:56 Transaction Type : REQUEST +11:31:56 Received From : +11:31:56 ============================================================================ +11:31:56 FNo. Len. Field Value +11:31:56 ============================================================================ +11:31:56 [ 1] [ 4] [0800] +11:31:56 [ 7] [ 10] [0320043104] +11:31:56 [ 11] [ 6] [156113] +11:31:56 [ 70] [ 3] [301] +11:31:56 ============================================================================ +11:31:56 + + +waiting on router queue for slot.... +11:31:56 Sending to : +11:31:56 ============================================================================ +11:31:56 ============================================================================ +11:31:56 Slot Id : <199> +11:31:56 Transaction Type : RESPONSE +11:31:56 Received From : +11:31:56 ============================================================================ +11:31:56 FNo. Len. Field Value +11:31:56 ============================================================================ +11:31:56 [ 1] [ 4] [0810] +11:31:56 [ 7] [ 10] [0320043104] +11:31:56 [ 11] [ 6] [156113] +11:31:56 [ 39] [ 2] [00] +11:31:56 [ 70] [ 3] [301] +11:31:56 ============================================================================ +11:31:56 Calculate Source COMM Id = 2 +11:31:56 ============================================================================ +11:31:56 + + +waiting on router queue for slot.... +11:31:58 ============================================================================ +11:31:58 Slot Id : <269> +11:31:58 Transaction Type : REQUEST +11:31:58 Received From : +11:31:58 ============================================================================ +11:31:58 FNo. Len. Field Value +11:31:58 ============================================================================ +11:31:58 [ 1] [ 4] [0200] +11:31:58 [ 2] [ 16] [6213541000424518] +11:31:58 [ 3] [ 6] [010000] +11:31:58 [ 4] [ 12] [000100000000] +11:31:58 [ 7] [ 10] [0320112949] +11:31:58 [ 11] [ 6] [941443] +11:31:58 [ 12] [ 6] [112949] +11:31:58 [ 13] [ 4] [0320] +11:31:58 [ 15] [ 4] [0320] +11:31:58 [ 18] [ 4] [6011] +11:31:58 [ 19] [ 3] [418] +11:31:58 [ 22] [ 3] [021] +11:31:58 [ 25] [ 2] [01] +11:31:58 [ 28] [ 9] [D00002000] +11:31:58 [ 32] [ 6] [668899] +11:31:58 [ 35] [ 32] [6213541000424518=491212012451240] +11:31:58 [ 37] [ 12] [507902071176] +11:31:58 [ 41] [ 8] [03006007] +11:31:58 [ 42] [ 15] [APT ] +11:31:58 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +11:31:58 [ 49] [ 3] [418] +11:31:58 [ 52] [ 16] [4DCBF249CFA9B7CE] +11:31:58 ============================================================================ +11:31:58 + + +waiting on router queue for slot.... +11:31:58 Sending to : +11:31:58 ============================================================================ +11:31:58 Sending to : +11:31:58 ============================================================================ +11:31:58 ============================================================================ +11:31:58 Slot Id : <269> +11:31:58 Transaction Type : REQUEST +11:31:58 Received From : +11:31:58 ============================================================================ +11:31:58 FNo. Len. Field Value +11:31:58 ============================================================================ +11:31:58 [ 1] [ 4] [0200] +11:31:58 [ 2] [ 16] [6213541000424518] +11:31:58 [ 3] [ 6] [010000] +11:31:58 [ 4] [ 12] [000100000000] +11:31:58 [ 7] [ 10] [0320112949] +11:31:58 [ 11] [ 6] [941443] +11:31:58 [ 12] [ 6] [112949] +11:31:58 [ 13] [ 4] [0320] +11:31:58 [ 15] [ 4] [0320] +11:31:58 [ 18] [ 4] [6011] +11:31:58 [ 19] [ 3] [418] +11:31:58 [ 22] [ 3] [021] +11:31:58 [ 25] [ 2] [01] +11:31:58 [ 28] [ 9] [D00002000] +11:31:58 [ 32] [ 6] [668899] +11:31:58 [ 35] [ 32] [6213541000424518=491212012451240] +11:31:58 [ 37] [ 12] [507902071176] +11:31:58 [ 41] [ 8] [03006007] +11:31:58 [ 42] [ 15] [APT ] +11:31:58 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +11:31:58 [ 49] [ 3] [418] +11:31:58 [ 52] [ 16] [4DCBF249CFA9B7CE] +11:31:58 ============================================================================ +11:31:58 + + +waiting on router queue for slot.... +11:31:58 Sending to : +11:31:58 ============================================================================ +11:31:58 ============================================================================ +11:31:58 Slot Id : <269> +11:31:58 Transaction Type : REQUEST +11:31:58 Received From : +11:31:58 ============================================================================ +11:31:58 FNo. Len. Field Value +11:31:58 ============================================================================ +11:31:58 [ 1] [ 4] [0200] +11:31:58 [ 2] [ 16] [6213541000424518] +11:31:58 [ 3] [ 6] [010000] +11:31:58 [ 4] [ 12] [000100000000] +11:31:58 [ 7] [ 10] [0320112949] +11:31:58 [ 11] [ 6] [941443] +11:31:58 [ 12] [ 6] [112949] +11:31:58 [ 13] [ 4] [0320] +11:31:58 [ 15] [ 4] [0320] +11:31:58 [ 18] [ 4] [6011] +11:31:58 [ 19] [ 3] [418] +11:31:58 [ 22] [ 3] [021] +11:31:58 [ 25] [ 2] [01] +11:31:58 [ 28] [ 9] [D00002000] +11:31:58 [ 32] [ 6] [668899] +11:31:58 [ 35] [ 32] [6213541000424518=491212012451240] +11:31:58 [ 37] [ 12] [507902071176] +11:31:58 [ 41] [ 8] [03006007] +11:31:58 [ 42] [ 15] [APT ] +11:31:58 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +11:31:58 [ 49] [ 3] [418] +11:31:58 [ 52] [ 16] [7E08B72790396C47] +11:31:58 ============================================================================ +11:31:58 + + +waiting on router queue for slot.... +11:31:58 Sending to : <0> +11:31:58 ============================================================================ +11:31:59 ============================================================================ +11:31:59 Slot Id : <269> +11:31:59 Transaction Type : RESPONSE +11:31:59 Received From : +11:31:59 ============================================================================ +11:31:59 FNo. Len. Field Value +11:31:59 ============================================================================ +11:31:59 [ 1] [ 4] [0210] +11:31:59 [ 2] [ 16] [6213541000424518] +11:31:59 [ 3] [ 6] [010000] +11:31:59 [ 4] [ 12] [000100000000] +11:31:59 [ 7] [ 10] [0320112949] +11:31:59 [ 11] [ 6] [941443] +11:31:59 [ 12] [ 6] [112949] +11:31:59 [ 13] [ 4] [0320] +11:31:59 [ 15] [ 4] [0320] +11:31:59 [ 18] [ 4] [6011] +11:31:59 [ 19] [ 3] [418] +11:31:59 [ 32] [ 6] [668899] +11:31:59 [ 35] [ 32] [6213541000424518=491212012451240] +11:31:59 [ 37] [ 12] [507902071176] +11:31:59 [ 38] [ 6] [474497] +11:31:59 [ 39] [ 2] [00] +11:31:59 [ 41] [ 8] [03006007] +11:31:59 [ 49] [ 3] [418] +11:31:59 [ 54] [ 40] [0001418C0000957359590002418C000095735959] +11:31:59 ============================================================================ +11:31:59 Sending to : +11:31:59 ============================================================================ +11:31:59 + + +waiting on router queue for slot.... +11:32:01 ============================================================================ +11:32:01 Slot Id : <269> +11:32:01 Transaction Type : RESPONSE +11:32:01 Received From : +11:32:01 ============================================================================ +11:32:01 FNo. Len. Field Value +11:32:01 ============================================================================ +11:32:01 [ 1] [ 4] [0210] +11:32:01 [ 2] [ 16] [6213541000424518] +11:32:01 [ 3] [ 6] [010000] +11:32:01 [ 4] [ 12] [000100000000] +11:32:01 [ 7] [ 10] [0320112949] +11:32:01 [ 11] [ 6] [941443] +11:32:01 [ 12] [ 6] [112949] +11:32:01 [ 13] [ 4] [0320] +11:32:01 [ 15] [ 4] [0320] +11:32:01 [ 18] [ 4] [6011] +11:32:01 [ 19] [ 3] [418] +11:32:01 [ 32] [ 6] [668899] +11:32:01 [ 35] [ 32] [6213541000424518=491212012451240] +11:32:01 [ 37] [ 12] [507902071176] +11:32:01 [ 38] [ 6] [474497] +11:32:01 [ 39] [ 2] [00] +11:32:01 [ 41] [ 8] [03006007] +11:32:01 [ 49] [ 3] [418] +11:32:01 [ 54] [ 40] [0001418C0000957359590002418C000095735959] +11:32:01 ============================================================================ +11:32:01 Calculate Source COMM Id = 4 +11:32:01 ============================================================================ +11:32:01 + + +waiting on router queue for slot.... +11:32:02 ============================================================================ +11:32:02 Slot Id : <240> +11:32:02 Transaction Type : REQUEST +11:32:02 Received From : +11:32:02 ============================================================================ +11:32:02 FNo. Len. Field Value +11:32:02 ============================================================================ +11:32:02 [ 1] [ 4] [0200] +11:32:02 [ 2] [ 16] [1808931100012713] +11:32:02 [ 3] [ 6] [010000] +11:32:02 [ 4] [ 12] [000100000000] +11:32:02 [ 7] [ 10] [0320113158] +11:32:02 [ 11] [ 6] [730829] +11:32:02 [ 12] [ 6] [113158] +11:32:02 [ 13] [ 4] [0320] +11:32:02 [ 15] [ 4] [0320] +11:32:02 [ 18] [ 4] [6011] +11:32:02 [ 22] [ 3] [900] +11:32:02 [ 25] [ 2] [02] +11:32:02 [ 28] [ 9] [D00002000] +11:32:02 [ 32] [ 6] [621354] +11:32:02 [ 35] [ 27] [1808931100012713=1803500891] +11:32:02 [ 37] [ 12] [507904524007] +11:32:02 [ 41] [ 8] [02001500] +11:32:02 [ 42] [ 15] [NATIVE ] +11:32:02 [ 43] [ 40] [Nabo School Thakek LAO] +11:32:02 [ 49] [ 3] [418] +11:32:02 [ 52] [ 16] [A345E9893ECD261E] +11:32:02 ============================================================================ +11:32:02 + + +waiting on router queue for slot.... +11:32:02 Sending to : +11:32:02 ============================================================================ +11:32:02 Sending to : +11:32:02 ============================================================================ +11:32:02 ============================================================================ +11:32:02 Slot Id : <240> +11:32:02 Transaction Type : REQUEST +11:32:02 Received From : +11:32:02 ============================================================================ +11:32:02 FNo. Len. Field Value +11:32:02 ============================================================================ +11:32:02 [ 1] [ 4] [0200] +11:32:02 [ 2] [ 16] [1808931100012713] +11:32:02 [ 3] [ 6] [010000] +11:32:02 [ 4] [ 12] [000100000000] +11:32:02 [ 7] [ 10] [0320113158] +11:32:02 [ 11] [ 6] [730829] +11:32:02 [ 12] [ 6] [113158] +11:32:02 [ 13] [ 4] [0320] +11:32:02 [ 15] [ 4] [0320] +11:32:02 [ 18] [ 4] [6011] +11:32:02 [ 22] [ 3] [900] +11:32:02 [ 25] [ 2] [02] +11:32:02 [ 28] [ 9] [D00002000] +11:32:02 [ 32] [ 6] [621354] +11:32:02 [ 35] [ 27] [1808931100012713=1803500891] +11:32:02 [ 37] [ 12] [507904524007] +11:32:02 [ 41] [ 8] [02001500] +11:32:02 [ 42] [ 15] [NATIVE ] +11:32:02 [ 43] [ 40] [Nabo School Thakek LAO] +11:32:02 [ 49] [ 3] [418] +11:32:02 [ 52] [ 16] [A345E9893ECD261E] +11:32:02 ============================================================================ +11:32:02 + + +waiting on router queue for slot.... +11:32:02 Sending to : +11:32:02 ============================================================================ +11:32:02 ============================================================================ +11:32:02 Slot Id : <240> +11:32:02 Transaction Type : REQUEST +11:32:02 Received From : +11:32:02 ============================================================================ +11:32:02 FNo. Len. Field Value +11:32:02 ============================================================================ +11:32:02 [ 1] [ 4] [0200] +11:32:02 [ 2] [ 16] [1808931100012713] +11:32:02 [ 3] [ 6] [010000] +11:32:02 [ 4] [ 12] [000100000000] +11:32:02 [ 7] [ 10] [0320113158] +11:32:02 [ 11] [ 6] [730829] +11:32:02 [ 12] [ 6] [113158] +11:32:02 [ 13] [ 4] [0320] +11:32:02 [ 15] [ 4] [0320] +11:32:02 [ 18] [ 4] [6011] +11:32:02 [ 22] [ 3] [900] +11:32:02 [ 25] [ 2] [02] +11:32:02 [ 28] [ 9] [D00002000] +11:32:02 [ 32] [ 6] [621354] +11:32:02 [ 35] [ 27] [1808931100012713=1803500891] +11:32:02 [ 37] [ 12] [507904524007] +11:32:02 [ 41] [ 8] [02001500] +11:32:02 [ 42] [ 15] [NATIVE ] +11:32:02 [ 43] [ 40] [Nabo School Thakek LAO] +11:32:02 [ 49] [ 3] [418] +11:32:02 [ 52] [ 16] [7A049C28D3FF0DBB] +11:32:02 ============================================================================ +11:32:02 + + +waiting on router queue for slot.... +11:32:02 Sending to : <2> +11:32:02 ============================================================================ +11:32:04 ============================================================================ +11:32:04 Slot Id : <240> +11:32:04 Transaction Type : RESPONSE +11:32:04 Received From : +11:32:04 ============================================================================ +11:32:04 FNo. Len. Field Value +11:32:04 ============================================================================ +11:32:04 [ 1] [ 4] [0210] +11:32:04 [ 2] [ 16] [1808931100012713] +11:32:04 [ 3] [ 6] [010000] +11:32:04 [ 4] [ 12] [000100000000] +11:32:04 [ 6] [ 12] [000100000000] +11:32:04 [ 7] [ 10] [0320113158] +11:32:04 [ 11] [ 6] [730829] +11:32:04 [ 12] [ 6] [113158] +11:32:04 [ 13] [ 4] [0320] +11:32:04 [ 18] [ 4] [6011] +11:32:04 [ 19] [ 3] [418] +11:32:04 [ 22] [ 3] [021] +11:32:04 [ 28] [ 9] [D00002000] +11:32:04 [ 32] [ 6] [621354] +11:32:04 [ 35] [ 27] [1808931100012713=1803500891] +11:32:04 [ 37] [ 12] [507904524007] +11:32:04 [ 39] [ 2] [55] +11:32:04 [ 41] [ 8] [02001500] +11:32:04 [ 49] [ 3] [418] +11:32:04 [ 51] [ 3] [418] +11:32:04 [ 52] [ 16] [7A049C28D3FF0DBB] +11:32:04 ============================================================================ +11:32:04 Sending to : +11:32:04 ============================================================================ +11:32:04 + + +waiting on router queue for slot.... +11:32:05 ============================================================================ +11:32:05 Slot Id : <240> +11:32:05 Transaction Type : RESPONSE +11:32:05 Received From : +11:32:05 ============================================================================ +11:32:05 FNo. Len. Field Value +11:32:05 ============================================================================ +11:32:05 [ 1] [ 4] [0210] +11:32:05 [ 2] [ 16] [1808931100012713] +11:32:05 [ 3] [ 6] [010000] +11:32:05 [ 4] [ 12] [000100000000] +11:32:05 [ 6] [ 12] [000100000000] +11:32:05 [ 7] [ 10] [0320113158] +11:32:05 [ 11] [ 6] [730829] +11:32:05 [ 12] [ 6] [113158] +11:32:05 [ 13] [ 4] [0320] +11:32:05 [ 18] [ 4] [6011] +11:32:05 [ 19] [ 3] [418] +11:32:05 [ 22] [ 3] [021] +11:32:05 [ 28] [ 9] [D00002000] +11:32:05 [ 32] [ 6] [621354] +11:32:05 [ 35] [ 27] [1808931100012713=1803500891] +11:32:05 [ 37] [ 12] [507904524007] +11:32:05 [ 39] [ 2] [55] +11:32:05 [ 41] [ 8] [02001500] +11:32:05 [ 49] [ 3] [418] +11:32:05 [ 51] [ 3] [418] +11:32:05 [ 52] [ 16] [7A049C28D3FF0DBB] +11:32:05 ============================================================================ +11:32:05 Calculate Source COMM Id = 0 +11:32:05 ============================================================================ +11:32:05 + + +waiting on router queue for slot.... +11:32:11 ============================================================================ +11:32:11 Slot Id : <275> +11:32:11 Transaction Type : REQUEST +11:32:11 Received From : +11:32:11 ============================================================================ +11:32:11 FNo. Len. Field Value +11:32:11 ============================================================================ +11:32:11 [ 1] [ 4] [0200] +11:32:11 [ 2] [ 16] [6213541000320542] +11:32:11 [ 3] [ 6] [010000] +11:32:11 [ 4] [ 12] [000100000000] +11:32:11 [ 7] [ 10] [0320043119] +11:32:11 [ 11] [ 6] [268532] +11:32:11 [ 12] [ 6] [113118] +11:32:11 [ 13] [ 4] [0320] +11:32:11 [ 14] [ 4] [4912] +11:32:11 [ 15] [ 4] [0320] +11:32:11 [ 18] [ 4] [6011] +11:32:11 [ 19] [ 3] [418] +11:32:11 [ 22] [ 3] [021] +11:32:11 [ 25] [ 2] [01] +11:32:11 [ 28] [ 9] [D00002000] +11:32:11 [ 32] [ 6] [180893] +11:32:11 [ 35] [ 32] [6213541000320542=491212012054325] +11:32:11 [ 37] [ 12] [507904268532] +11:32:11 [ 41] [ 8] [0324BKDT] +11:32:11 [ 42] [ 15] [999999 ] +11:32:11 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:32:11 [ 49] [ 3] [418] +11:32:11 [ 52] [ 16] [CF8B0EB5B4436A33] +11:32:11 ============================================================================ +11:32:11 + + +waiting on router queue for slot.... +11:32:11 Sending to : +11:32:11 ============================================================================ +11:32:11 Sending to : +11:32:11 ============================================================================ +11:32:12 ============================================================================ +11:32:12 Slot Id : <275> +11:32:12 Transaction Type : REQUEST +11:32:12 Received From : +11:32:12 ============================================================================ +11:32:12 FNo. Len. Field Value +11:32:12 ============================================================================ +11:32:12 [ 1] [ 4] [0200] +11:32:12 [ 2] [ 16] [6213541000320542] +11:32:12 [ 3] [ 6] [010000] +11:32:12 [ 4] [ 12] [000100000000] +11:32:12 [ 7] [ 10] [0320043119] +11:32:12 [ 11] [ 6] [268532] +11:32:12 [ 12] [ 6] [113118] +11:32:12 [ 13] [ 4] [0320] +11:32:12 [ 14] [ 4] [4912] +11:32:12 [ 15] [ 4] [0320] +11:32:12 [ 18] [ 4] [6011] +11:32:12 [ 19] [ 3] [418] +11:32:12 [ 22] [ 3] [021] +11:32:12 [ 25] [ 2] [01] +11:32:12 [ 28] [ 9] [D00002000] +11:32:12 [ 32] [ 6] [180893] +11:32:12 [ 35] [ 32] [6213541000320542=491212012054325] +11:32:12 [ 37] [ 12] [507904268532] +11:32:12 [ 41] [ 8] [0324BKDT] +11:32:12 [ 42] [ 15] [999999 ] +11:32:12 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:32:12 [ 49] [ 3] [418] +11:32:12 [ 52] [ 16] [CF8B0EB5B4436A33] +11:32:12 ============================================================================ +11:32:12 + + +waiting on router queue for slot.... +11:32:12 Sending to : +11:32:12 ============================================================================ +11:32:12 ============================================================================ +11:32:12 Slot Id : <275> +11:32:12 Transaction Type : REQUEST +11:32:12 Received From : +11:32:12 ============================================================================ +11:32:12 FNo. Len. Field Value +11:32:12 ============================================================================ +11:32:12 [ 1] [ 4] [0200] +11:32:12 [ 2] [ 16] [6213541000320542] +11:32:12 [ 3] [ 6] [010000] +11:32:12 [ 4] [ 12] [000100000000] +11:32:12 [ 7] [ 10] [0320043119] +11:32:12 [ 11] [ 6] [268532] +11:32:12 [ 12] [ 6] [113118] +11:32:12 [ 13] [ 4] [0320] +11:32:12 [ 14] [ 4] [4912] +11:32:12 [ 15] [ 4] [0320] +11:32:12 [ 18] [ 4] [6011] +11:32:12 [ 19] [ 3] [418] +11:32:12 [ 22] [ 3] [021] +11:32:12 [ 25] [ 2] [01] +11:32:12 [ 28] [ 9] [D00002000] +11:32:12 [ 32] [ 6] [180893] +11:32:12 [ 35] [ 32] [6213541000320542=491212012054325] +11:32:12 [ 37] [ 12] [507904268532] +11:32:12 [ 41] [ 8] [0324BKDT] +11:32:12 [ 42] [ 15] [999999 ] +11:32:12 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:32:12 [ 49] [ 3] [418] +11:32:12 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:32:12 ============================================================================ +11:32:12 + + +waiting on router queue for slot.... +11:32:12 Sending to : <0> +11:32:12 ============================================================================ +11:32:13 ============================================================================ +11:32:13 Slot Id : <275> +11:32:13 Transaction Type : RESPONSE +11:32:13 Received From : +11:32:13 ============================================================================ +11:32:13 FNo. Len. Field Value +11:32:13 ============================================================================ +11:32:13 [ 1] [ 4] [0210] +11:32:13 [ 2] [ 16] [6213541000320542] +11:32:13 [ 3] [ 6] [010000] +11:32:13 [ 4] [ 12] [000100000000] +11:32:13 [ 7] [ 10] [0320043119] +11:32:13 [ 11] [ 6] [268532] +11:32:13 [ 12] [ 6] [113118] +11:32:13 [ 13] [ 4] [0320] +11:32:13 [ 15] [ 4] [0320] +11:32:13 [ 18] [ 4] [6011] +11:32:13 [ 19] [ 3] [418] +11:32:13 [ 32] [ 6] [180893] +11:32:13 [ 35] [ 32] [6213541000320542=491212012054325] +11:32:13 [ 37] [ 12] [507904268532] +11:32:13 [ 38] [ 6] [077371] +11:32:13 [ 39] [ 2] [00] +11:32:13 [ 41] [ 8] [0324BKDT] +11:32:13 [ 49] [ 3] [418] +11:32:13 [ 54] [ 40] [0001418C0021920349510002418C002192034951] +11:32:13 ============================================================================ +11:32:13 Sending to : +11:32:13 ============================================================================ +11:32:13 + + +waiting on router queue for slot.... +11:32:14 ============================================================================ +11:32:14 Slot Id : <275> +11:32:14 Transaction Type : RESPONSE +11:32:14 Received From : +11:32:14 ============================================================================ +11:32:14 FNo. Len. Field Value +11:32:14 ============================================================================ +11:32:14 [ 1] [ 4] [0210] +11:32:14 [ 2] [ 16] [6213541000320542] +11:32:14 [ 3] [ 6] [010000] +11:32:14 [ 4] [ 12] [000100000000] +11:32:14 [ 7] [ 10] [0320043119] +11:32:14 [ 11] [ 6] [268532] +11:32:14 [ 12] [ 6] [113118] +11:32:14 [ 13] [ 4] [0320] +11:32:14 [ 15] [ 4] [0320] +11:32:14 [ 18] [ 4] [6011] +11:32:14 [ 19] [ 3] [418] +11:32:14 [ 32] [ 6] [180893] +11:32:14 [ 35] [ 32] [6213541000320542=491212012054325] +11:32:14 [ 37] [ 12] [507904268532] +11:32:14 [ 38] [ 6] [077371] +11:32:14 [ 39] [ 2] [00] +11:32:14 [ 41] [ 8] [0324BKDT] +11:32:14 [ 49] [ 3] [418] +11:32:14 [ 54] [ 40] [0001418C0021920349510002418C002192034951] +11:32:14 ============================================================================ +11:32:14 Calculate Source COMM Id = 2 +11:32:14 ============================================================================ +11:32:14 + + +waiting on router queue for slot.... +11:32:28 ============================================================================ +11:32:28 Slot Id : <256> +11:32:28 Transaction Type : REQUEST +11:32:28 Received From : +11:32:28 ============================================================================ +11:32:28 FNo. Len. Field Value +11:32:28 ============================================================================ +11:32:28 [ 1] [ 4] [0200] +11:32:28 [ 2] [ 16] [6213548000187854] +11:32:28 [ 3] [ 6] [010000] +11:32:28 [ 4] [ 12] [000004000000] +11:32:28 [ 7] [ 10] [0320113019] +11:32:28 [ 11] [ 6] [941466] +11:32:28 [ 12] [ 6] [113019] +11:32:28 [ 13] [ 4] [0320] +11:32:28 [ 15] [ 4] [0320] +11:32:28 [ 18] [ 4] [6011] +11:32:28 [ 19] [ 3] [418] +11:32:28 [ 22] [ 3] [021] +11:32:28 [ 25] [ 2] [01] +11:32:28 [ 28] [ 9] [D00002000] +11:32:28 [ 32] [ 6] [668899] +11:32:28 [ 35] [ 32] [6213548000187854=171212018785612] +11:32:28 [ 37] [ 12] [507900297352] +11:32:28 [ 41] [ 8] [03010006] +11:32:28 [ 42] [ 15] [APT ] +11:32:28 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +11:32:28 [ 49] [ 3] [418] +11:32:28 [ 52] [ 16] [1CD7D2D4515F229B] +11:32:28 ============================================================================ +11:32:28 + + +waiting on router queue for slot.... +11:32:28 Sending to : +11:32:28 ============================================================================ +11:32:28 Sending to : +11:32:28 ============================================================================ +11:32:28 ============================================================================ +11:32:28 Slot Id : <256> +11:32:28 Transaction Type : REQUEST +11:32:28 Received From : +11:32:28 ============================================================================ +11:32:28 FNo. Len. Field Value +11:32:28 ============================================================================ +11:32:28 [ 1] [ 4] [0200] +11:32:28 [ 2] [ 16] [6213548000187854] +11:32:28 [ 3] [ 6] [010000] +11:32:28 [ 4] [ 12] [000004000000] +11:32:28 [ 7] [ 10] [0320113019] +11:32:28 [ 11] [ 6] [941466] +11:32:28 [ 12] [ 6] [113019] +11:32:28 [ 13] [ 4] [0320] +11:32:28 [ 15] [ 4] [0320] +11:32:28 [ 18] [ 4] [6011] +11:32:28 [ 19] [ 3] [418] +11:32:28 [ 22] [ 3] [021] +11:32:28 [ 25] [ 2] [01] +11:32:28 [ 28] [ 9] [D00002000] +11:32:28 [ 32] [ 6] [668899] +11:32:28 [ 35] [ 32] [6213548000187854=171212018785612] +11:32:28 [ 37] [ 12] [507900297352] +11:32:28 [ 41] [ 8] [03010006] +11:32:28 [ 42] [ 15] [APT ] +11:32:28 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +11:32:28 [ 49] [ 3] [418] +11:32:28 [ 52] [ 16] [1CD7D2D4515F229B] +11:32:28 ============================================================================ +11:32:28 + + +waiting on router queue for slot.... +11:32:28 Sending to : +11:32:28 ============================================================================ +11:32:28 ============================================================================ +11:32:28 Slot Id : <256> +11:32:28 Transaction Type : REQUEST +11:32:28 Received From : +11:32:28 ============================================================================ +11:32:28 FNo. Len. Field Value +11:32:28 ============================================================================ +11:32:28 [ 1] [ 4] [0200] +11:32:28 [ 2] [ 16] [6213548000187854] +11:32:28 [ 3] [ 6] [010000] +11:32:28 [ 4] [ 12] [000004000000] +11:32:28 [ 7] [ 10] [0320113019] +11:32:28 [ 11] [ 6] [941466] +11:32:28 [ 12] [ 6] [113019] +11:32:28 [ 13] [ 4] [0320] +11:32:28 [ 15] [ 4] [0320] +11:32:28 [ 18] [ 4] [6011] +11:32:28 [ 19] [ 3] [418] +11:32:28 [ 22] [ 3] [021] +11:32:28 [ 25] [ 2] [01] +11:32:28 [ 28] [ 9] [D00002000] +11:32:28 [ 32] [ 6] [668899] +11:32:28 [ 35] [ 32] [6213548000187854=171212018785612] +11:32:28 [ 37] [ 12] [507900297352] +11:32:28 [ 41] [ 8] [03010006] +11:32:28 [ 42] [ 15] [APT ] +11:32:28 [ 43] [ 40] [ TECHNICAL COLLEGE OF VTE ] +11:32:28 [ 49] [ 3] [418] +11:32:28 [ 52] [ 16] [F005A5EA7C2C662A] +11:32:28 ============================================================================ +11:32:28 + + +waiting on router queue for slot.... +11:32:28 Sending to : <0> +11:32:28 ============================================================================ +11:32:29 ============================================================================ +11:32:29 Slot Id : <228> +11:32:29 Transaction Type : REQUEST +11:32:29 Received From : +11:32:29 ============================================================================ +11:32:29 FNo. Len. Field Value +11:32:29 ============================================================================ +11:32:29 [ 1] [ 4] [0800] +11:32:29 [ 7] [ 10] [0320043137] +11:32:29 [ 11] [ 6] [156114] +11:32:29 [ 70] [ 3] [301] +11:32:29 ============================================================================ +11:32:29 + + +waiting on router queue for slot.... +11:32:29 Sending to : +11:32:29 ============================================================================ +11:32:29 ============================================================================ +11:32:29 Slot Id : <228> +11:32:29 Transaction Type : RESPONSE +11:32:29 Received From : +11:32:29 ============================================================================ +11:32:29 FNo. Len. Field Value +11:32:29 ============================================================================ +11:32:29 [ 1] [ 4] [0810] +11:32:29 [ 7] [ 10] [0320043137] +11:32:29 [ 11] [ 6] [156114] +11:32:29 [ 39] [ 2] [00] +11:32:29 [ 70] [ 3] [301] +11:32:29 ============================================================================ +11:32:29 Calculate Source COMM Id = 2 +11:32:29 ============================================================================ +11:32:29 + + +waiting on router queue for slot.... +11:32:29 ============================================================================ +11:32:29 Slot Id : <256> +11:32:29 Transaction Type : RESPONSE +11:32:29 Received From : +11:32:29 ============================================================================ +11:32:29 FNo. Len. Field Value +11:32:29 ============================================================================ +11:32:29 [ 1] [ 4] [0210] +11:32:29 [ 2] [ 16] [6213548000187854] +11:32:29 [ 3] [ 6] [010000] +11:32:29 [ 4] [ 12] [000004000000] +11:32:29 [ 7] [ 10] [0320113019] +11:32:29 [ 11] [ 6] [941466] +11:32:29 [ 12] [ 6] [113019] +11:32:29 [ 13] [ 4] [0320] +11:32:29 [ 15] [ 4] [0320] +11:32:29 [ 18] [ 4] [6011] +11:32:29 [ 19] [ 3] [418] +11:32:29 [ 32] [ 6] [668899] +11:32:29 [ 35] [ 32] [6213548000187854=171212018785612] +11:32:29 [ 37] [ 12] [507900297352] +11:32:29 [ 38] [ 6] [266204] +11:32:29 [ 39] [ 2] [00] +11:32:29 [ 41] [ 8] [03010006] +11:32:29 [ 49] [ 3] [418] +11:32:29 [ 54] [ 40] [0001418C0000204993230002418C000020499323] +11:32:29 ============================================================================ +11:32:29 Sending to : +11:32:29 ============================================================================ +11:32:29 + + +waiting on router queue for slot.... +11:32:31 ============================================================================ +11:32:31 Slot Id : <256> +11:32:31 Transaction Type : RESPONSE +11:32:31 Received From : +11:32:31 ============================================================================ +11:32:31 FNo. Len. Field Value +11:32:31 ============================================================================ +11:32:31 [ 1] [ 4] [0210] +11:32:31 [ 2] [ 16] [6213548000187854] +11:32:31 [ 3] [ 6] [010000] +11:32:31 [ 4] [ 12] [000004000000] +11:32:31 [ 7] [ 10] [0320113019] +11:32:31 [ 11] [ 6] [941466] +11:32:31 [ 12] [ 6] [113019] +11:32:31 [ 13] [ 4] [0320] +11:32:31 [ 15] [ 4] [0320] +11:32:31 [ 18] [ 4] [6011] +11:32:31 [ 19] [ 3] [418] +11:32:31 [ 32] [ 6] [668899] +11:32:31 [ 35] [ 32] [6213548000187854=171212018785612] +11:32:31 [ 37] [ 12] [507900297352] +11:32:31 [ 38] [ 6] [266204] +11:32:31 [ 39] [ 2] [00] +11:32:31 [ 41] [ 8] [03010006] +11:32:31 [ 49] [ 3] [418] +11:32:31 [ 54] [ 40] [0001418C0000204993230002418C000020499323] +11:32:31 ============================================================================ +11:32:31 Calculate Source COMM Id = 4 +11:32:31 ============================================================================ +11:32:31 + + +waiting on router queue for slot.... +11:32:39 ============================================================================ +11:32:39 Slot Id : <197> +11:32:39 Transaction Type : REQUEST +11:32:39 Received From : +11:32:39 ============================================================================ +11:32:39 FNo. Len. Field Value +11:32:39 ============================================================================ +11:32:39 [ 1] [ 4] [0800] +11:32:39 [ 7] [ 10] [0320043147] +11:32:39 [ 11] [ 6] [156115] +11:32:39 [ 70] [ 3] [301] +11:32:39 ============================================================================ +11:32:39 + + +waiting on router queue for slot.... +11:32:39 Sending to : +11:32:39 ============================================================================ +11:32:39 ============================================================================ +11:32:39 Slot Id : <197> +11:32:39 Transaction Type : RESPONSE +11:32:39 Received From : +11:32:39 ============================================================================ +11:32:39 FNo. Len. Field Value +11:32:39 ============================================================================ +11:32:39 [ 1] [ 4] [0810] +11:32:39 [ 7] [ 10] [0320043147] +11:32:39 [ 11] [ 6] [156115] +11:32:39 [ 39] [ 2] [00] +11:32:39 [ 70] [ 3] [301] +11:32:39 ============================================================================ +11:32:39 Calculate Source COMM Id = 2 +11:32:39 ============================================================================ +11:32:39 + + +waiting on router queue for slot.... +11:32:44 ============================================================================ +11:32:44 Slot Id : <265> +11:32:44 Transaction Type : REQUEST +11:32:44 Received From : +11:32:44 ============================================================================ +11:32:44 FNo. Len. Field Value +11:32:44 ============================================================================ +11:32:44 [ 1] [ 4] [0200] +11:32:44 [ 2] [ 16] [6213545000530117] +11:32:44 [ 3] [ 6] [010000] +11:32:44 [ 4] [ 12] [000100000000] +11:32:44 [ 7] [ 10] [0320043151] +11:32:44 [ 11] [ 6] [268538] +11:32:44 [ 12] [ 6] [113151] +11:32:44 [ 13] [ 4] [0320] +11:32:44 [ 14] [ 4] [4912] +11:32:44 [ 15] [ 4] [0320] +11:32:44 [ 18] [ 4] [6011] +11:32:44 [ 19] [ 3] [418] +11:32:44 [ 22] [ 3] [021] +11:32:44 [ 25] [ 2] [01] +11:32:44 [ 28] [ 9] [D00002000] +11:32:44 [ 32] [ 6] [180893] +11:32:44 [ 35] [ 32] [6213545000530117=491212013011433] +11:32:44 [ 37] [ 12] [507904268538] +11:32:44 [ 41] [ 8] [0112CPBR] +11:32:44 [ 42] [ 15] [999999 ] +11:32:44 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:32:44 [ 49] [ 3] [418] +11:32:44 [ 52] [ 16] [90FB882762C2EA77] +11:32:44 ============================================================================ +11:32:44 + + +waiting on router queue for slot.... +11:32:44 Sending to : +11:32:44 ============================================================================ +11:32:44 Sending to : +11:32:44 ============================================================================ +11:32:45 ============================================================================ +11:32:45 Slot Id : <265> +11:32:45 Transaction Type : REQUEST +11:32:45 Received From : +11:32:45 ============================================================================ +11:32:45 FNo. Len. Field Value +11:32:45 ============================================================================ +11:32:45 [ 1] [ 4] [0200] +11:32:45 [ 2] [ 16] [6213545000530117] +11:32:45 [ 3] [ 6] [010000] +11:32:45 [ 4] [ 12] [000100000000] +11:32:45 [ 7] [ 10] [0320043151] +11:32:45 [ 11] [ 6] [268538] +11:32:45 [ 12] [ 6] [113151] +11:32:45 [ 13] [ 4] [0320] +11:32:45 [ 14] [ 4] [4912] +11:32:45 [ 15] [ 4] [0320] +11:32:45 [ 18] [ 4] [6011] +11:32:45 [ 19] [ 3] [418] +11:32:45 [ 22] [ 3] [021] +11:32:45 [ 25] [ 2] [01] +11:32:45 [ 28] [ 9] [D00002000] +11:32:45 [ 32] [ 6] [180893] +11:32:45 [ 35] [ 32] [6213545000530117=491212013011433] +11:32:45 [ 37] [ 12] [507904268538] +11:32:45 [ 41] [ 8] [0112CPBR] +11:32:45 [ 42] [ 15] [999999 ] +11:32:45 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:32:45 [ 49] [ 3] [418] +11:32:45 [ 52] [ 16] [90FB882762C2EA77] +11:32:45 ============================================================================ +11:32:45 + + +waiting on router queue for slot.... +11:32:45 Sending to : +11:32:45 ============================================================================ +11:32:45 ============================================================================ +11:32:45 Slot Id : <265> +11:32:45 Transaction Type : REQUEST +11:32:45 Received From : +11:32:45 ============================================================================ +11:32:45 FNo. Len. Field Value +11:32:45 ============================================================================ +11:32:45 [ 1] [ 4] [0200] +11:32:45 [ 2] [ 16] [6213545000530117] +11:32:45 [ 3] [ 6] [010000] +11:32:45 [ 4] [ 12] [000100000000] +11:32:45 [ 7] [ 10] [0320043151] +11:32:45 [ 11] [ 6] [268538] +11:32:45 [ 12] [ 6] [113151] +11:32:45 [ 13] [ 4] [0320] +11:32:45 [ 14] [ 4] [4912] +11:32:45 [ 15] [ 4] [0320] +11:32:45 [ 18] [ 4] [6011] +11:32:45 [ 19] [ 3] [418] +11:32:45 [ 22] [ 3] [021] +11:32:45 [ 25] [ 2] [01] +11:32:45 [ 28] [ 9] [D00002000] +11:32:45 [ 32] [ 6] [180893] +11:32:45 [ 35] [ 32] [6213545000530117=491212013011433] +11:32:45 [ 37] [ 12] [507904268538] +11:32:45 [ 41] [ 8] [0112CPBR] +11:32:45 [ 42] [ 15] [999999 ] +11:32:45 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:32:45 [ 49] [ 3] [418] +11:32:45 [ 52] [ 16] [0E967A080BB9D8A8] +11:32:45 ============================================================================ +11:32:45 + + +waiting on router queue for slot.... +11:32:45 Sending to : <0> +11:32:45 ============================================================================ +11:32:45 ============================================================================ +11:32:45 Slot Id : <265> +11:32:45 Transaction Type : RESPONSE +11:32:45 Received From : +11:32:45 ============================================================================ +11:32:45 FNo. Len. Field Value +11:32:45 ============================================================================ +11:32:45 [ 1] [ 4] [0210] +11:32:45 [ 2] [ 16] [6213545000530117] +11:32:45 [ 3] [ 6] [010000] +11:32:45 [ 4] [ 12] [000100000000] +11:32:45 [ 7] [ 10] [0320043151] +11:32:45 [ 11] [ 6] [268538] +11:32:45 [ 12] [ 6] [113151] +11:32:45 [ 13] [ 4] [0320] +11:32:45 [ 15] [ 4] [0320] +11:32:45 [ 18] [ 4] [6011] +11:32:45 [ 19] [ 3] [418] +11:32:45 [ 32] [ 6] [180893] +11:32:45 [ 35] [ 32] [6213545000530117=491212013011433] +11:32:45 [ 37] [ 12] [507904268538] +11:32:45 [ 38] [ 6] [918030] +11:32:45 [ 39] [ 2] [00] +11:32:45 [ 41] [ 8] [0112CPBR] +11:32:45 [ 49] [ 3] [418] +11:32:45 [ 54] [ 40] [0001418C0000888064240002418C000088806424] +11:32:45 ============================================================================ +11:32:45 Sending to : +11:32:45 ============================================================================ +11:32:45 + + +waiting on router queue for slot.... +11:32:47 ============================================================================ +11:32:47 Slot Id : <265> +11:32:47 Transaction Type : RESPONSE +11:32:47 Received From : +11:32:47 ============================================================================ +11:32:47 FNo. Len. Field Value +11:32:47 ============================================================================ +11:32:47 [ 1] [ 4] [0210] +11:32:47 [ 2] [ 16] [6213545000530117] +11:32:47 [ 3] [ 6] [010000] +11:32:47 [ 4] [ 12] [000100000000] +11:32:47 [ 7] [ 10] [0320043151] +11:32:47 [ 11] [ 6] [268538] +11:32:47 [ 12] [ 6] [113151] +11:32:47 [ 13] [ 4] [0320] +11:32:47 [ 15] [ 4] [0320] +11:32:47 [ 18] [ 4] [6011] +11:32:47 [ 19] [ 3] [418] +11:32:47 [ 32] [ 6] [180893] +11:32:47 [ 35] [ 32] [6213545000530117=491212013011433] +11:32:47 [ 37] [ 12] [507904268538] +11:32:47 [ 38] [ 6] [918030] +11:32:47 [ 39] [ 2] [00] +11:32:47 [ 41] [ 8] [0112CPBR] +11:32:47 [ 49] [ 3] [418] +11:32:47 [ 54] [ 40] [0001418C0000888064240002418C000088806424] +11:32:47 ============================================================================ +11:32:47 Calculate Source COMM Id = 2 +11:32:47 ============================================================================ +11:32:47 + + +waiting on router queue for slot.... +11:32:58 ============================================================================ +11:32:58 Slot Id : <247> +11:32:58 Transaction Type : REQUEST +11:32:58 Received From : +11:32:58 ============================================================================ +11:32:58 FNo. Len. Field Value +11:32:58 ============================================================================ +11:32:58 [ 1] [ 4] [0800] +11:32:58 [ 2] [ 5] [02531] +11:32:58 [ 3] [ 6] [579118] +11:32:58 [ 7] [ 10] [0320043258] +11:32:58 [ 11] [ 6] [807082] +11:32:58 [ 15] [ 10] [0320043258] +11:32:58 [ 37] [ 11] [57911807082] +11:32:58 [ 70] [ 3] [001] +11:32:58 ============================================================================ +11:32:58 + + +waiting on router queue for slot.... +11:32:58 ============================================================================ +11:32:58 Slot Id : <247> +11:32:58 Transaction Type : RESPONSE +11:32:58 Received From : +11:32:58 ============================================================================ +11:32:58 FNo. Len. Field Value +11:32:58 ============================================================================ +11:32:58 [ 1] [ 4] [0810] +11:32:58 [ 7] [ 10] [0320043258] +11:32:58 [ 11] [ 6] [807082] +11:32:58 [ 15] [ 4] [0320] +11:32:58 [ 37] [ 12] [57911807082] +11:32:58 [ 39] [ 2] [00] +11:32:58 [ 70] [ 3] [001] +11:32:58 ============================================================================ +11:32:58 Sending to : +11:32:58 ============================================================================ +11:32:58 + + +waiting on router queue for slot.... +11:33:02 ============================================================================ +11:33:02 Slot Id : <274> +11:33:02 Transaction Type : REQUEST +11:33:02 Received From : +11:33:02 ============================================================================ +11:33:02 FNo. Len. Field Value +11:33:02 ============================================================================ +11:33:02 [ 1] [ 4] [0800] +11:33:02 [ 7] [ 10] [0320043209] +11:33:02 [ 11] [ 6] [156116] +11:33:02 [ 70] [ 3] [301] +11:33:02 ============================================================================ +11:33:02 + + +waiting on router queue for slot.... +11:33:02 Sending to : +11:33:02 ============================================================================ +11:33:02 ============================================================================ +11:33:02 Slot Id : <274> +11:33:02 Transaction Type : RESPONSE +11:33:02 Received From : +11:33:02 ============================================================================ +11:33:02 FNo. Len. Field Value +11:33:02 ============================================================================ +11:33:02 [ 1] [ 4] [0810] +11:33:02 [ 7] [ 10] [0320043209] +11:33:02 [ 11] [ 6] [156116] +11:33:02 [ 39] [ 2] [00] +11:33:02 [ 70] [ 3] [301] +11:33:02 ============================================================================ +11:33:02 Calculate Source COMM Id = 2 +11:33:02 ============================================================================ +11:33:02 + + +waiting on router queue for slot.... +11:33:03 ============================================================================ +11:33:03 Slot Id : <218> +11:33:03 Transaction Type : REQUEST +11:33:03 Received From : +11:33:03 ============================================================================ +11:33:03 FNo. Len. Field Value +11:33:03 ============================================================================ +11:33:03 [ 0] [ 4] [0420] +11:33:03 [ 1] [ 4] [0420] +11:33:03 [ 2] [ 16] [6213545000810238] +11:33:03 [ 3] [ 6] [011000] +11:33:03 [ 4] [ 12] [000030000000] +11:33:03 [ 6] [ 12] [000030000000] +11:33:03 [ 7] [ 10] [0320113208] +11:33:03 [ 11] [ 6] [079099] +11:33:03 [ 12] [ 6] [113208] +11:33:03 [ 13] [ 4] [0320] +11:33:03 [ 14] [ 4] [4912] +11:33:03 [ 15] [ 4] [0320] +11:33:03 [ 18] [ 4] [6011] +11:33:03 [ 22] [ 3] [900] +11:33:03 [ 25] [ 2] [02] +11:33:03 [ 28] [ 9] [D00002000] +11:33:03 [ 32] [ 6] [220699] +11:33:03 [ 35] [ 32] [6213545000810238=491212011023732] +11:33:03 [ 37] [ 12] [507900132968] +11:33:03 [ 39] [ 2] [00] +11:33:03 [ 41] [ 8] [03000100] +11:33:03 [ 42] [ 15] [APTRA ] +11:33:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:33:03 [ 49] [ 3] [418] +11:33:03 [ 52] [ 16] [F609FF2FC2D414CC] +11:33:03 ============================================================================ +11:33:03 + + +waiting on router queue for slot.... +11:33:03 ============================================================================ +11:33:03 Slot Id : <231> +11:33:03 Transaction Type : REQUEST +11:33:03 Received From : +11:33:03 ============================================================================ +11:33:03 FNo. Len. Field Value +11:33:03 ============================================================================ +11:33:03 [ 1] [ 4] [0200] +11:33:03 [ 2] [ 16] [1808931500008477] +11:33:03 [ 3] [ 6] [010000] +11:33:03 [ 4] [ 12] [000030000000] +11:33:03 [ 7] [ 10] [0320113259] +11:33:03 [ 11] [ 6] [731099] +11:33:03 [ 12] [ 6] [113259] +11:33:03 [ 13] [ 4] [0320] +11:33:03 [ 15] [ 4] [0320] +11:33:03 [ 18] [ 4] [6011] +11:33:03 [ 22] [ 3] [900] +11:33:03 [ 25] [ 2] [02] +11:33:03 [ 28] [ 9] [D00002000] +11:33:03 [ 32] [ 6] [621354] +11:33:03 [ 35] [ 27] [1808931500008477=1803500499] +11:33:03 [ 37] [ 12] [507902776466] +11:33:03 [ 41] [ 8] [01007100] +11:33:03 [ 42] [ 15] [NATIVE ] +11:33:03 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +11:33:03 [ 49] [ 3] [418] +11:33:03 [ 52] [ 16] [D0A4C1ED4BDFE745] +11:33:03 ============================================================================ +11:33:03 + + +waiting on router queue for slot.... +11:33:03 Sending to : +11:33:03 ============================================================================ +11:33:03 Sending to : +11:33:03 ============================================================================ +11:33:03 ============================================================================ +11:33:03 Slot Id : <231> +11:33:03 Transaction Type : REQUEST +11:33:03 Received From : +11:33:03 ============================================================================ +11:33:03 FNo. Len. Field Value +11:33:03 ============================================================================ +11:33:03 [ 1] [ 4] [0200] +11:33:03 [ 2] [ 16] [1808931500008477] +11:33:03 [ 3] [ 6] [010000] +11:33:03 [ 4] [ 12] [000030000000] +11:33:03 [ 7] [ 10] [0320113259] +11:33:03 [ 11] [ 6] [731099] +11:33:03 [ 12] [ 6] [113259] +11:33:03 [ 13] [ 4] [0320] +11:33:03 [ 15] [ 4] [0320] +11:33:03 [ 18] [ 4] [6011] +11:33:03 [ 22] [ 3] [900] +11:33:03 [ 25] [ 2] [02] +11:33:03 [ 28] [ 9] [D00002000] +11:33:03 [ 32] [ 6] [621354] +11:33:03 [ 35] [ 27] [1808931500008477=1803500499] +11:33:03 [ 37] [ 12] [507902776466] +11:33:03 [ 41] [ 8] [01007100] +11:33:03 [ 42] [ 15] [NATIVE ] +11:33:03 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +11:33:03 [ 49] [ 3] [418] +11:33:03 [ 52] [ 16] [D0A4C1ED4BDFE745] +11:33:03 ============================================================================ +11:33:03 + + +waiting on router queue for slot.... +11:33:03 Sending to : +11:33:03 ============================================================================ +11:33:04 ============================================================================ +11:33:04 Slot Id : <231> +11:33:04 Transaction Type : REQUEST +11:33:04 Received From : +11:33:04 ============================================================================ +11:33:04 FNo. Len. Field Value +11:33:04 ============================================================================ +11:33:04 [ 1] [ 4] [0200] +11:33:04 [ 2] [ 16] [1808931500008477] +11:33:04 [ 3] [ 6] [010000] +11:33:04 [ 4] [ 12] [000030000000] +11:33:04 [ 7] [ 10] [0320113259] +11:33:04 [ 11] [ 6] [731099] +11:33:04 [ 12] [ 6] [113259] +11:33:04 [ 13] [ 4] [0320] +11:33:04 [ 15] [ 4] [0320] +11:33:04 [ 18] [ 4] [6011] +11:33:04 [ 22] [ 3] [900] +11:33:04 [ 25] [ 2] [02] +11:33:04 [ 28] [ 9] [D00002000] +11:33:04 [ 32] [ 6] [621354] +11:33:04 [ 35] [ 27] [1808931500008477=1803500499] +11:33:04 [ 37] [ 12] [507902776466] +11:33:04 [ 41] [ 8] [01007100] +11:33:04 [ 42] [ 15] [NATIVE ] +11:33:04 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +11:33:04 [ 49] [ 3] [418] +11:33:04 [ 52] [ 16] [9AEDB0D91D573B31] +11:33:04 ============================================================================ +11:33:04 + + +waiting on router queue for slot.... +11:33:04 Sending to : <2> +11:33:04 ============================================================================ +11:33:04 ============================================================================ +11:33:04 Slot Id : <218> +11:33:04 Transaction Type : RESPONSE +11:33:04 Received From : +11:33:04 ============================================================================ +11:33:04 FNo. Len. Field Value +11:33:04 ============================================================================ +11:33:04 [ 1] [ 4] [0430] +11:33:04 [ 2] [ 16] [6213545000810238] +11:33:04 [ 3] [ 6] [011000] +11:33:04 [ 4] [ 12] [000030000000] +11:33:04 [ 7] [ 10] [0320113208] +11:33:04 [ 11] [ 6] [079099] +11:33:04 [ 32] [ 6] [220699] +11:33:04 [ 35] [ 32] [6213545000810238=491212011023732] +11:33:04 [ 37] [ 12] [507900132968] +11:33:04 [ 39] [ 2] [00] +11:33:04 [ 41] [ 8] [03000100] +11:33:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:33:04 [ 49] [ 3] [418] +11:33:04 [ 90] [ 42] [020007909903201132080000022069900000000000] +11:33:04 ============================================================================ +11:33:04 Successfully send the slot [218] To REVERSAL Process +11:33:04 + + +waiting on router queue for slot.... +11:33:07 ============================================================================ +11:33:07 Slot Id : <279> +11:33:07 Transaction Type : REQUEST +11:33:07 Received From : +11:33:07 ============================================================================ +11:33:07 FNo. Len. Field Value +11:33:07 ============================================================================ +11:33:07 [ 1] [ 4] [0200] +11:33:07 [ 2] [ 16] [6213541000424518] +11:33:07 [ 3] [ 6] [010000] +11:33:07 [ 4] [ 12] [000010000000] +11:33:07 [ 7] [ 10] [0320113058] +11:33:07 [ 11] [ 6] [941491] +11:33:07 [ 12] [ 6] [113058] +11:33:07 [ 13] [ 4] [0320] +11:33:07 [ 15] [ 4] [0320] +11:33:07 [ 18] [ 4] [6011] +11:33:07 [ 19] [ 3] [418] +11:33:07 [ 22] [ 3] [021] +11:33:07 [ 25] [ 2] [01] +11:33:07 [ 28] [ 9] [D00002000] +11:33:07 [ 32] [ 6] [668899] +11:33:07 [ 35] [ 32] [6213541000424518=491212012451240] +11:33:07 [ 37] [ 12] [507902071178] +11:33:07 [ 41] [ 8] [03006007] +11:33:07 [ 42] [ 15] [APT ] +11:33:07 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +11:33:07 [ 49] [ 3] [418] +11:33:07 [ 52] [ 16] [4DCBF249CFA9B7CE] +11:33:07 ============================================================================ +11:33:07 + + +waiting on router queue for slot.... +11:33:07 Sending to : +11:33:07 ============================================================================ +11:33:07 Sending to : +11:33:07 ============================================================================ +11:33:08 ============================================================================ +11:33:08 Slot Id : <279> +11:33:08 Transaction Type : REQUEST +11:33:08 Received From : +11:33:08 ============================================================================ +11:33:08 FNo. Len. Field Value +11:33:08 ============================================================================ +11:33:08 [ 1] [ 4] [0200] +11:33:08 [ 2] [ 16] [6213541000424518] +11:33:08 [ 3] [ 6] [010000] +11:33:08 [ 4] [ 12] [000010000000] +11:33:08 [ 7] [ 10] [0320113058] +11:33:08 [ 11] [ 6] [941491] +11:33:08 [ 12] [ 6] [113058] +11:33:08 [ 13] [ 4] [0320] +11:33:08 [ 15] [ 4] [0320] +11:33:08 [ 18] [ 4] [6011] +11:33:08 [ 19] [ 3] [418] +11:33:08 [ 22] [ 3] [021] +11:33:08 [ 25] [ 2] [01] +11:33:08 [ 28] [ 9] [D00002000] +11:33:08 [ 32] [ 6] [668899] +11:33:08 [ 35] [ 32] [6213541000424518=491212012451240] +11:33:08 [ 37] [ 12] [507902071178] +11:33:08 [ 41] [ 8] [03006007] +11:33:08 [ 42] [ 15] [APT ] +11:33:08 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +11:33:08 [ 49] [ 3] [418] +11:33:08 [ 52] [ 16] [4DCBF249CFA9B7CE] +11:33:08 ============================================================================ +11:33:08 + + +waiting on router queue for slot.... +11:33:08 Sending to : +11:33:08 ============================================================================ +11:33:08 ============================================================================ +11:33:08 Slot Id : <279> +11:33:08 Transaction Type : REQUEST +11:33:08 Received From : +11:33:08 ============================================================================ +11:33:08 FNo. Len. Field Value +11:33:08 ============================================================================ +11:33:08 [ 1] [ 4] [0200] +11:33:08 [ 2] [ 16] [6213541000424518] +11:33:08 [ 3] [ 6] [010000] +11:33:08 [ 4] [ 12] [000010000000] +11:33:08 [ 7] [ 10] [0320113058] +11:33:08 [ 11] [ 6] [941491] +11:33:08 [ 12] [ 6] [113058] +11:33:08 [ 13] [ 4] [0320] +11:33:08 [ 15] [ 4] [0320] +11:33:08 [ 18] [ 4] [6011] +11:33:08 [ 19] [ 3] [418] +11:33:08 [ 22] [ 3] [021] +11:33:08 [ 25] [ 2] [01] +11:33:08 [ 28] [ 9] [D00002000] +11:33:08 [ 32] [ 6] [668899] +11:33:08 [ 35] [ 32] [6213541000424518=491212012451240] +11:33:08 [ 37] [ 12] [507902071178] +11:33:08 [ 41] [ 8] [03006007] +11:33:08 [ 42] [ 15] [APT ] +11:33:08 [ 43] [ 40] [ LUANGPRABANG AIRPORT LUAN] +11:33:08 [ 49] [ 3] [418] +11:33:08 [ 52] [ 16] [7E08B72790396C47] +11:33:08 ============================================================================ +11:33:08 + + +waiting on router queue for slot.... +11:33:08 Sending to : <0> +11:33:08 ============================================================================ +11:33:08 ============================================================================ +11:33:08 Slot Id : <279> +11:33:08 Transaction Type : RESPONSE +11:33:08 Received From : +11:33:08 ============================================================================ +11:33:08 FNo. Len. Field Value +11:33:08 ============================================================================ +11:33:08 [ 1] [ 4] [0210] +11:33:08 [ 2] [ 16] [6213541000424518] +11:33:08 [ 3] [ 6] [010000] +11:33:08 [ 4] [ 12] [000010000000] +11:33:08 [ 7] [ 10] [0320113058] +11:33:08 [ 11] [ 6] [941491] +11:33:08 [ 12] [ 6] [113058] +11:33:08 [ 13] [ 4] [0320] +11:33:08 [ 15] [ 4] [0320] +11:33:08 [ 18] [ 4] [6011] +11:33:08 [ 19] [ 3] [418] +11:33:08 [ 32] [ 6] [668899] +11:33:08 [ 35] [ 32] [6213541000424518=491212012451240] +11:33:08 [ 37] [ 12] [507902071178] +11:33:08 [ 38] [ 6] [157369] +11:33:08 [ 39] [ 2] [00] +11:33:08 [ 41] [ 8] [03006007] +11:33:08 [ 49] [ 3] [418] +11:33:08 [ 54] [ 40] [0001418C0000855359590002418C000085535959] +11:33:08 ============================================================================ +11:33:08 Sending to : +11:33:08 ============================================================================ +11:33:08 + + +waiting on router queue for slot.... +11:33:10 ============================================================================ +11:33:10 Slot Id : <279> +11:33:10 Transaction Type : RESPONSE +11:33:10 Received From : +11:33:10 ============================================================================ +11:33:10 FNo. Len. Field Value +11:33:10 ============================================================================ +11:33:10 [ 1] [ 4] [0210] +11:33:10 [ 2] [ 16] [6213541000424518] +11:33:10 [ 3] [ 6] [010000] +11:33:10 [ 4] [ 12] [000010000000] +11:33:10 [ 7] [ 10] [0320113058] +11:33:10 [ 11] [ 6] [941491] +11:33:10 [ 12] [ 6] [113058] +11:33:10 [ 13] [ 4] [0320] +11:33:10 [ 15] [ 4] [0320] +11:33:10 [ 18] [ 4] [6011] +11:33:10 [ 19] [ 3] [418] +11:33:10 [ 32] [ 6] [668899] +11:33:10 [ 35] [ 32] [6213541000424518=491212012451240] +11:33:10 [ 37] [ 12] [507902071178] +11:33:10 [ 38] [ 6] [157369] +11:33:10 [ 39] [ 2] [00] +11:33:10 [ 41] [ 8] [03006007] +11:33:10 [ 49] [ 3] [418] +11:33:10 [ 54] [ 40] [0001418C0000855359590002418C000085535959] +11:33:10 ============================================================================ +11:33:10 Calculate Source COMM Id = 4 +11:33:10 ============================================================================ +11:33:10 + + +waiting on router queue for slot.... +11:33:10 ============================================================================ +11:33:10 Slot Id : <264> +11:33:10 Transaction Type : REQUEST +11:33:10 Received From : +11:33:10 ============================================================================ +11:33:10 FNo. Len. Field Value +11:33:10 ============================================================================ +11:33:10 [ 1] [ 4] [0200] +11:33:10 [ 2] [ 16] [6213541000320542] +11:33:10 [ 3] [ 6] [010000] +11:33:10 [ 4] [ 12] [000100000000] +11:33:10 [ 7] [ 10] [0320043217] +11:33:10 [ 11] [ 6] [268547] +11:33:10 [ 12] [ 6] [113217] +11:33:10 [ 13] [ 4] [0320] +11:33:10 [ 14] [ 4] [4912] +11:33:10 [ 15] [ 4] [0320] +11:33:10 [ 18] [ 4] [6011] +11:33:10 [ 19] [ 3] [418] +11:33:10 [ 22] [ 3] [021] +11:33:10 [ 25] [ 2] [01] +11:33:10 [ 28] [ 9] [D00002000] +11:33:10 [ 32] [ 6] [180893] +11:33:10 [ 35] [ 32] [6213541000320542=491212012054325] +11:33:10 [ 37] [ 12] [507904268547] +11:33:10 [ 41] [ 8] [0324BKDT] +11:33:10 [ 42] [ 15] [999999 ] +11:33:10 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:33:10 [ 49] [ 3] [418] +11:33:10 [ 52] [ 16] [CF8B0EB5B4436A33] +11:33:10 ============================================================================ +11:33:10 + + +waiting on router queue for slot.... +11:33:10 Sending to : +11:33:10 ============================================================================ +11:33:10 Sending to : +11:33:10 ============================================================================ +11:33:10 ============================================================================ +11:33:10 Slot Id : <231> +11:33:10 Transaction Type : RESPONSE +11:33:10 Received From : +11:33:10 ============================================================================ +11:33:10 FNo. Len. Field Value +11:33:10 ============================================================================ +11:33:10 [ 1] [ 4] [0210] +11:33:10 [ 2] [ 16] [1808931500008477] +11:33:10 [ 3] [ 6] [010000] +11:33:10 [ 4] [ 12] [000030000000] +11:33:10 [ 6] [ 12] [000030000000] +11:33:10 [ 7] [ 10] [0320113259] +11:33:10 [ 11] [ 6] [731099] +11:33:10 [ 12] [ 6] [113259] +11:33:10 [ 13] [ 4] [0320] +11:33:10 [ 18] [ 4] [6011] +11:33:10 [ 19] [ 3] [418] +11:33:10 [ 22] [ 3] [021] +11:33:10 [ 32] [ 6] [621354] +11:33:10 [ 35] [ 27] [1808931500008477=1803500499] +11:33:10 [ 37] [ 12] [507902776466] +11:33:10 [ 38] [ 6] [731099] +11:33:10 [ 39] [ 2] [00] +11:33:10 [ 41] [ 8] [01007100] +11:33:10 [ 49] [ 3] [418] +11:33:10 [ 52] [ 16] [9AEDB0D91D573B31] +11:33:10 [ 54] [ 20] [1001418C000052360700] +11:33:10 ============================================================================ +11:33:10 Sending to : +11:33:10 ============================================================================ +11:33:10 + + +waiting on router queue for slot.... +11:33:11 ============================================================================ +11:33:11 Slot Id : <264> +11:33:11 Transaction Type : REQUEST +11:33:11 Received From : +11:33:11 ============================================================================ +11:33:11 FNo. Len. Field Value +11:33:11 ============================================================================ +11:33:11 [ 1] [ 4] [0200] +11:33:11 [ 2] [ 16] [6213541000320542] +11:33:11 [ 3] [ 6] [010000] +11:33:11 [ 4] [ 12] [000100000000] +11:33:11 [ 7] [ 10] [0320043217] +11:33:11 [ 11] [ 6] [268547] +11:33:11 [ 12] [ 6] [113217] +11:33:11 [ 13] [ 4] [0320] +11:33:11 [ 14] [ 4] [4912] +11:33:11 [ 15] [ 4] [0320] +11:33:11 [ 18] [ 4] [6011] +11:33:11 [ 19] [ 3] [418] +11:33:11 [ 22] [ 3] [021] +11:33:11 [ 25] [ 2] [01] +11:33:11 [ 28] [ 9] [D00002000] +11:33:11 [ 32] [ 6] [180893] +11:33:11 [ 35] [ 32] [6213541000320542=491212012054325] +11:33:11 [ 37] [ 12] [507904268547] +11:33:11 [ 41] [ 8] [0324BKDT] +11:33:11 [ 42] [ 15] [999999 ] +11:33:11 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:33:11 [ 49] [ 3] [418] +11:33:11 [ 52] [ 16] [CF8B0EB5B4436A33] +11:33:11 ============================================================================ +11:33:11 + + +waiting on router queue for slot.... +11:33:11 Sending to : +11:33:11 ============================================================================ +11:33:11 ============================================================================ +11:33:11 Slot Id : <264> +11:33:11 Transaction Type : REQUEST +11:33:11 Received From : +11:33:11 ============================================================================ +11:33:11 FNo. Len. Field Value +11:33:11 ============================================================================ +11:33:11 [ 1] [ 4] [0200] +11:33:11 [ 2] [ 16] [6213541000320542] +11:33:11 [ 3] [ 6] [010000] +11:33:11 [ 4] [ 12] [000100000000] +11:33:11 [ 7] [ 10] [0320043217] +11:33:11 [ 11] [ 6] [268547] +11:33:11 [ 12] [ 6] [113217] +11:33:11 [ 13] [ 4] [0320] +11:33:11 [ 14] [ 4] [4912] +11:33:11 [ 15] [ 4] [0320] +11:33:11 [ 18] [ 4] [6011] +11:33:11 [ 19] [ 3] [418] +11:33:11 [ 22] [ 3] [021] +11:33:11 [ 25] [ 2] [01] +11:33:11 [ 28] [ 9] [D00002000] +11:33:11 [ 32] [ 6] [180893] +11:33:11 [ 35] [ 32] [6213541000320542=491212012054325] +11:33:11 [ 37] [ 12] [507904268547] +11:33:11 [ 41] [ 8] [0324BKDT] +11:33:11 [ 42] [ 15] [999999 ] +11:33:11 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:33:11 [ 49] [ 3] [418] +11:33:11 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:33:11 ============================================================================ +11:33:11 + + +waiting on router queue for slot.... +11:33:11 Sending to : <0> +11:33:11 ============================================================================ +11:33:11 ============================================================================ +11:33:11 Slot Id : <264> +11:33:11 Transaction Type : RESPONSE +11:33:11 Received From : +11:33:11 ============================================================================ +11:33:11 FNo. Len. Field Value +11:33:11 ============================================================================ +11:33:11 [ 1] [ 4] [0210] +11:33:11 [ 2] [ 16] [6213541000320542] +11:33:11 [ 3] [ 6] [010000] +11:33:11 [ 4] [ 12] [000100000000] +11:33:11 [ 7] [ 10] [0320043217] +11:33:11 [ 11] [ 6] [268547] +11:33:11 [ 12] [ 6] [113217] +11:33:11 [ 13] [ 4] [0320] +11:33:11 [ 15] [ 4] [0320] +11:33:11 [ 18] [ 4] [6011] +11:33:11 [ 19] [ 3] [418] +11:33:11 [ 32] [ 6] [180893] +11:33:11 [ 35] [ 32] [6213541000320542=491212012054325] +11:33:11 [ 37] [ 12] [507904268547] +11:33:11 [ 38] [ 6] [887660] +11:33:11 [ 39] [ 2] [00] +11:33:11 [ 41] [ 8] [0324BKDT] +11:33:11 [ 49] [ 3] [418] +11:33:11 [ 54] [ 40] [0001418C0020918349510002418C002091834951] +11:33:11 ============================================================================ +11:33:11 Sending to : +11:33:11 ============================================================================ +11:33:11 + + +waiting on router queue for slot.... +11:33:12 ============================================================================ +11:33:12 Slot Id : <231> +11:33:12 Transaction Type : RESPONSE +11:33:12 Received From : +11:33:12 ============================================================================ +11:33:12 FNo. Len. Field Value +11:33:12 ============================================================================ +11:33:12 [ 1] [ 4] [0210] +11:33:12 [ 2] [ 16] [1808931500008477] +11:33:12 [ 3] [ 6] [010000] +11:33:12 [ 4] [ 12] [000030000000] +11:33:12 [ 6] [ 12] [000030000000] +11:33:12 [ 7] [ 10] [0320113259] +11:33:12 [ 11] [ 6] [731099] +11:33:12 [ 12] [ 6] [113259] +11:33:12 [ 13] [ 4] [0320] +11:33:12 [ 18] [ 4] [6011] +11:33:12 [ 19] [ 3] [418] +11:33:12 [ 22] [ 3] [021] +11:33:12 [ 32] [ 6] [621354] +11:33:12 [ 35] [ 27] [1808931500008477=1803500499] +11:33:12 [ 37] [ 12] [507902776466] +11:33:12 [ 38] [ 6] [731099] +11:33:12 [ 39] [ 2] [00] +11:33:12 [ 41] [ 8] [01007100] +11:33:12 [ 49] [ 3] [418] +11:33:12 [ 52] [ 16] [9AEDB0D91D573B31] +11:33:12 [ 54] [ 20] [1001418C000052360700] +11:33:12 ============================================================================ +11:33:12 Calculate Source COMM Id = 0 +11:33:12 ============================================================================ +11:33:12 + + +waiting on router queue for slot.... +11:33:12 ============================================================================ +11:33:12 Slot Id : <273> +11:33:12 Transaction Type : REQUEST +11:33:12 Received From : +11:33:12 ============================================================================ +11:33:12 FNo. Len. Field Value +11:33:12 ============================================================================ +11:33:12 [ 1] [ 4] [0200] +11:33:12 [ 2] [ 16] [6213545000159669] +11:33:12 [ 3] [ 6] [011000] +11:33:12 [ 4] [ 12] [000020000000] +11:33:12 [ 7] [ 10] [0320043219] +11:33:12 [ 11] [ 6] [268549] +11:33:12 [ 12] [ 6] [113219] +11:33:12 [ 13] [ 4] [0320] +11:33:12 [ 14] [ 4] [4912] +11:33:12 [ 15] [ 4] [0320] +11:33:12 [ 18] [ 4] [6011] +11:33:12 [ 19] [ 3] [418] +11:33:12 [ 22] [ 3] [021] +11:33:12 [ 25] [ 2] [01] +11:33:12 [ 28] [ 9] [D00002000] +11:33:12 [ 32] [ 6] [180893] +11:33:12 [ 35] [ 32] [6213545000159669=491212015966776] +11:33:12 [ 37] [ 12] [507904268549] +11:33:12 [ 41] [ 8] [0363CPSH] +11:33:12 [ 42] [ 15] [999999 ] +11:33:12 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:33:12 [ 49] [ 3] [418] +11:33:12 [ 52] [ 16] [23A6ADBAAFA15786] +11:33:12 ============================================================================ +11:33:12 + + +waiting on router queue for slot.... +11:33:12 Sending to : +11:33:12 ============================================================================ +11:33:12 Sending to : +11:33:12 ============================================================================ +11:33:13 ============================================================================ +11:33:13 Slot Id : <273> +11:33:13 Transaction Type : REQUEST +11:33:13 Received From : +11:33:13 ============================================================================ +11:33:13 FNo. Len. Field Value +11:33:13 ============================================================================ +11:33:13 [ 1] [ 4] [0200] +11:33:13 [ 2] [ 16] [6213545000159669] +11:33:13 [ 3] [ 6] [011000] +11:33:13 [ 4] [ 12] [000020000000] +11:33:13 [ 7] [ 10] [0320043219] +11:33:13 [ 11] [ 6] [268549] +11:33:13 [ 12] [ 6] [113219] +11:33:13 [ 13] [ 4] [0320] +11:33:13 [ 14] [ 4] [4912] +11:33:13 [ 15] [ 4] [0320] +11:33:13 [ 18] [ 4] [6011] +11:33:13 [ 19] [ 3] [418] +11:33:13 [ 22] [ 3] [021] +11:33:13 [ 25] [ 2] [01] +11:33:13 [ 28] [ 9] [D00002000] +11:33:13 [ 32] [ 6] [180893] +11:33:13 [ 35] [ 32] [6213545000159669=491212015966776] +11:33:13 [ 37] [ 12] [507904268549] +11:33:13 [ 41] [ 8] [0363CPSH] +11:33:13 [ 42] [ 15] [999999 ] +11:33:13 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:33:13 [ 49] [ 3] [418] +11:33:13 [ 52] [ 16] [23A6ADBAAFA15786] +11:33:13 ============================================================================ +11:33:13 + + +waiting on router queue for slot.... +11:33:13 Sending to : +11:33:13 ============================================================================ +11:33:13 ============================================================================ +11:33:13 Slot Id : <273> +11:33:13 Transaction Type : REQUEST +11:33:13 Received From : +11:33:13 ============================================================================ +11:33:13 FNo. Len. Field Value +11:33:13 ============================================================================ +11:33:13 [ 1] [ 4] [0200] +11:33:13 [ 2] [ 16] [6213545000159669] +11:33:13 [ 3] [ 6] [011000] +11:33:13 [ 4] [ 12] [000020000000] +11:33:13 [ 7] [ 10] [0320043219] +11:33:13 [ 11] [ 6] [268549] +11:33:13 [ 12] [ 6] [113219] +11:33:13 [ 13] [ 4] [0320] +11:33:13 [ 14] [ 4] [4912] +11:33:13 [ 15] [ 4] [0320] +11:33:13 [ 18] [ 4] [6011] +11:33:13 [ 19] [ 3] [418] +11:33:13 [ 22] [ 3] [021] +11:33:13 [ 25] [ 2] [01] +11:33:13 [ 28] [ 9] [D00002000] +11:33:13 [ 32] [ 6] [180893] +11:33:13 [ 35] [ 32] [6213545000159669=491212015966776] +11:33:13 [ 37] [ 12] [507904268549] +11:33:13 [ 41] [ 8] [0363CPSH] +11:33:13 [ 42] [ 15] [999999 ] +11:33:13 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:33:13 [ 49] [ 3] [418] +11:33:13 [ 52] [ 16] [6D1419D3282B9090] +11:33:13 ============================================================================ +11:33:13 + + +waiting on router queue for slot.... +11:33:13 Sending to : <0> +11:33:13 ============================================================================ +11:33:13 ============================================================================ +11:33:13 Slot Id : <264> +11:33:13 Transaction Type : RESPONSE +11:33:13 Received From : +11:33:13 ============================================================================ +11:33:13 FNo. Len. Field Value +11:33:13 ============================================================================ +11:33:13 [ 1] [ 4] [0210] +11:33:13 [ 2] [ 16] [6213541000320542] +11:33:13 [ 3] [ 6] [010000] +11:33:13 [ 4] [ 12] [000100000000] +11:33:13 [ 7] [ 10] [0320043217] +11:33:13 [ 11] [ 6] [268547] +11:33:13 [ 12] [ 6] [113217] +11:33:13 [ 13] [ 4] [0320] +11:33:13 [ 15] [ 4] [0320] +11:33:13 [ 18] [ 4] [6011] +11:33:13 [ 19] [ 3] [418] +11:33:13 [ 32] [ 6] [180893] +11:33:13 [ 35] [ 32] [6213541000320542=491212012054325] +11:33:13 [ 37] [ 12] [507904268547] +11:33:13 [ 38] [ 6] [887660] +11:33:13 [ 39] [ 2] [00] +11:33:13 [ 41] [ 8] [0324BKDT] +11:33:13 [ 49] [ 3] [418] +11:33:13 [ 54] [ 40] [0001418C0020918349510002418C002091834951] +11:33:13 ============================================================================ +11:33:13 Calculate Source COMM Id = 2 +11:33:13 ============================================================================ +11:33:13 + + +waiting on router queue for slot.... +11:33:14 ============================================================================ +11:33:14 Slot Id : <273> +11:33:14 Transaction Type : RESPONSE +11:33:14 Received From : +11:33:14 ============================================================================ +11:33:14 FNo. Len. Field Value +11:33:14 ============================================================================ +11:33:14 [ 1] [ 4] [0210] +11:33:14 [ 2] [ 16] [6213545000159669] +11:33:14 [ 3] [ 6] [011000] +11:33:14 [ 4] [ 12] [000020000000] +11:33:14 [ 7] [ 10] [0320043219] +11:33:14 [ 11] [ 6] [268549] +11:33:14 [ 12] [ 6] [113219] +11:33:14 [ 13] [ 4] [0320] +11:33:14 [ 15] [ 4] [0320] +11:33:14 [ 18] [ 4] [6011] +11:33:14 [ 19] [ 3] [418] +11:33:14 [ 32] [ 6] [180893] +11:33:14 [ 35] [ 32] [6213545000159669=491212015966776] +11:33:14 [ 37] [ 12] [507904268549] +11:33:14 [ 38] [ 6] [042812] +11:33:14 [ 39] [ 2] [00] +11:33:14 [ 41] [ 8] [0363CPSH] +11:33:14 [ 49] [ 3] [418] +11:33:14 [ 54] [ 40] [1001418C0000734521921002418C000073452192] +11:33:14 ============================================================================ +11:33:14 Sending to : +11:33:14 ============================================================================ +11:33:14 + + +waiting on router queue for slot.... +11:33:16 ============================================================================ +11:33:16 Slot Id : <273> +11:33:16 Transaction Type : RESPONSE +11:33:16 Received From : +11:33:16 ============================================================================ +11:33:16 FNo. Len. Field Value +11:33:16 ============================================================================ +11:33:16 [ 1] [ 4] [0210] +11:33:16 [ 2] [ 16] [6213545000159669] +11:33:16 [ 3] [ 6] [011000] +11:33:16 [ 4] [ 12] [000020000000] +11:33:16 [ 7] [ 10] [0320043219] +11:33:16 [ 11] [ 6] [268549] +11:33:16 [ 12] [ 6] [113219] +11:33:16 [ 13] [ 4] [0320] +11:33:16 [ 15] [ 4] [0320] +11:33:16 [ 18] [ 4] [6011] +11:33:16 [ 19] [ 3] [418] +11:33:16 [ 32] [ 6] [180893] +11:33:16 [ 35] [ 32] [6213545000159669=491212015966776] +11:33:16 [ 37] [ 12] [507904268549] +11:33:16 [ 38] [ 6] [042812] +11:33:16 [ 39] [ 2] [00] +11:33:16 [ 41] [ 8] [0363CPSH] +11:33:16 [ 49] [ 3] [418] +11:33:16 [ 54] [ 40] [1001418C0000734521921002418C000073452192] +11:33:16 ============================================================================ +11:33:16 Calculate Source COMM Id = 2 +11:33:16 ============================================================================ +11:33:16 + + +waiting on router queue for slot.... +11:33:19 ============================================================================ +11:33:19 Slot Id : <220> +11:33:19 Transaction Type : REQUEST +11:33:19 Received From : +11:33:19 ============================================================================ +11:33:19 FNo. Len. Field Value +11:33:19 ============================================================================ +11:33:19 [ 1] [ 4] [0200] +11:33:19 [ 2] [ 16] [1808930200050649] +11:33:19 [ 3] [ 6] [301000] +11:33:19 [ 4] [ 12] [000000000000] +11:33:19 [ 7] [ 10] [0320113315] +11:33:19 [ 11] [ 6] [731183] +11:33:19 [ 12] [ 6] [113315] +11:33:19 [ 13] [ 4] [0320] +11:33:19 [ 15] [ 4] [0320] +11:33:19 [ 18] [ 4] [6011] +11:33:19 [ 22] [ 3] [900] +11:33:19 [ 25] [ 2] [02] +11:33:19 [ 28] [ 9] [D00000000] +11:33:19 [ 32] [ 6] [621354] +11:33:19 [ 35] [ 27] [1808930200050649=1803500800] +11:33:19 [ 37] [ 12] [507904539620] +11:33:19 [ 41] [ 8] [02001600] +11:33:19 [ 42] [ 15] [NATIVE ] +11:33:19 [ 43] [ 40] [Thakek Hospital Thakek LAO] +11:33:19 [ 49] [ 3] [418] +11:33:19 [ 52] [ 16] [77FB3705978E0BED] +11:33:19 ============================================================================ +11:33:19 + + +waiting on router queue for slot.... +11:33:19 Sending to : +11:33:19 ============================================================================ +11:33:19 Sending to : +11:33:19 ============================================================================ +11:33:20 ============================================================================ +11:33:20 Slot Id : <220> +11:33:20 Transaction Type : REQUEST +11:33:20 Received From : +11:33:20 ============================================================================ +11:33:20 FNo. Len. Field Value +11:33:20 ============================================================================ +11:33:20 [ 1] [ 4] [0200] +11:33:20 [ 2] [ 16] [1808930200050649] +11:33:20 [ 3] [ 6] [301000] +11:33:20 [ 4] [ 12] [000000000000] +11:33:20 [ 7] [ 10] [0320113315] +11:33:20 [ 11] [ 6] [731183] +11:33:20 [ 12] [ 6] [113315] +11:33:20 [ 13] [ 4] [0320] +11:33:20 [ 15] [ 4] [0320] +11:33:20 [ 18] [ 4] [6011] +11:33:20 [ 22] [ 3] [900] +11:33:20 [ 25] [ 2] [02] +11:33:20 [ 28] [ 9] [D00000000] +11:33:20 [ 32] [ 6] [621354] +11:33:20 [ 35] [ 27] [1808930200050649=1803500800] +11:33:20 [ 37] [ 12] [507904539620] +11:33:20 [ 41] [ 8] [02001600] +11:33:20 [ 42] [ 15] [NATIVE ] +11:33:20 [ 43] [ 40] [Thakek Hospital Thakek LAO] +11:33:20 [ 49] [ 3] [418] +11:33:20 [ 52] [ 16] [77FB3705978E0BED] +11:33:20 ============================================================================ +11:33:20 + + +waiting on router queue for slot.... +11:33:20 Sending to : +11:33:20 ============================================================================ +11:33:20 ============================================================================ +11:33:20 Slot Id : <220> +11:33:20 Transaction Type : REQUEST +11:33:20 Received From : +11:33:20 ============================================================================ +11:33:20 FNo. Len. Field Value +11:33:20 ============================================================================ +11:33:20 [ 1] [ 4] [0200] +11:33:20 [ 2] [ 16] [1808930200050649] +11:33:20 [ 3] [ 6] [301000] +11:33:20 [ 4] [ 12] [000000000000] +11:33:20 [ 7] [ 10] [0320113315] +11:33:20 [ 11] [ 6] [731183] +11:33:20 [ 12] [ 6] [113315] +11:33:20 [ 13] [ 4] [0320] +11:33:20 [ 15] [ 4] [0320] +11:33:20 [ 18] [ 4] [6011] +11:33:20 [ 22] [ 3] [900] +11:33:20 [ 25] [ 2] [02] +11:33:20 [ 28] [ 9] [D00000000] +11:33:20 [ 32] [ 6] [621354] +11:33:20 [ 35] [ 27] [1808930200050649=1803500800] +11:33:20 [ 37] [ 12] [507904539620] +11:33:20 [ 41] [ 8] [02001600] +11:33:20 [ 42] [ 15] [NATIVE ] +11:33:20 [ 43] [ 40] [Thakek Hospital Thakek LAO] +11:33:20 [ 49] [ 3] [418] +11:33:20 [ 52] [ 16] [CDECED4E3FC2C260] +11:33:20 ============================================================================ +11:33:20 + + +waiting on router queue for slot.... +11:33:20 Sending to : <2> +11:33:20 ============================================================================ +11:33:24 ============================================================================ +11:33:24 Slot Id : <220> +11:33:24 Transaction Type : RESPONSE +11:33:24 Received From : +11:33:24 ============================================================================ +11:33:24 FNo. Len. Field Value +11:33:24 ============================================================================ +11:33:24 [ 1] [ 4] [0210] +11:33:24 [ 2] [ 16] [1808930200050649] +11:33:24 [ 3] [ 6] [301000] +11:33:24 [ 7] [ 10] [0320113315] +11:33:24 [ 11] [ 6] [731183] +11:33:24 [ 12] [ 6] [113315] +11:33:24 [ 13] [ 4] [0320] +11:33:24 [ 14] [ 4] [1803] +11:33:24 [ 19] [ 3] [418] +11:33:24 [ 32] [ 6] [621354] +11:33:24 [ 37] [ 12] [507904539620] +11:33:24 [ 38] [ 6] [731183] +11:33:24 [ 39] [ 2] [00] +11:33:24 [ 41] [ 8] [02001600] +11:33:24 [ 49] [ 3] [418] +11:33:24 [ 52] [ 16] [CDECED4E3FC2C260] +11:33:24 [ 54] [ 20] [1002418C000134778300] +11:33:24 ============================================================================ +11:33:24 Sending to : +11:33:24 ============================================================================ +11:33:24 + + +waiting on router queue for slot.... +11:33:26 ============================================================================ +11:33:26 Slot Id : <220> +11:33:26 Transaction Type : RESPONSE +11:33:26 Received From : +11:33:26 ============================================================================ +11:33:26 FNo. Len. Field Value +11:33:26 ============================================================================ +11:33:26 [ 1] [ 4] [0210] +11:33:26 [ 2] [ 16] [1808930200050649] +11:33:26 [ 3] [ 6] [301000] +11:33:26 [ 7] [ 10] [0320113315] +11:33:26 [ 11] [ 6] [731183] +11:33:26 [ 12] [ 6] [113315] +11:33:26 [ 13] [ 4] [0320] +11:33:26 [ 14] [ 4] [1803] +11:33:26 [ 19] [ 3] [418] +11:33:26 [ 32] [ 6] [621354] +11:33:26 [ 37] [ 12] [507904539620] +11:33:26 [ 38] [ 6] [731183] +11:33:26 [ 39] [ 2] [00] +11:33:26 [ 41] [ 8] [02001600] +11:33:26 [ 49] [ 3] [418] +11:33:26 [ 52] [ 16] [CDECED4E3FC2C260] +11:33:26 [ 54] [ 20] [1002418C000134778300] +11:33:26 ============================================================================ +11:33:26 Calculate Source COMM Id = 0 +11:33:26 ============================================================================ +11:33:26 + + +waiting on router queue for slot.... +11:33:33 ============================================================================ +11:33:33 Slot Id : <254> +11:33:33 Transaction Type : REQUEST +11:33:33 Received From : +11:33:33 ============================================================================ +11:33:33 FNo. Len. Field Value +11:33:33 ============================================================================ +11:33:33 [ 1] [ 4] [0800] +11:33:33 [ 7] [ 10] [0320043241] +11:33:33 [ 11] [ 6] [156117] +11:33:33 [ 70] [ 3] [301] +11:33:33 ============================================================================ +11:33:33 + + +waiting on router queue for slot.... +11:33:33 Sending to : +11:33:33 ============================================================================ +11:33:33 ============================================================================ +11:33:33 Slot Id : <254> +11:33:33 Transaction Type : RESPONSE +11:33:33 Received From : +11:33:33 ============================================================================ +11:33:33 FNo. Len. Field Value +11:33:33 ============================================================================ +11:33:33 [ 1] [ 4] [0810] +11:33:33 [ 7] [ 10] [0320043241] +11:33:33 [ 11] [ 6] [156117] +11:33:33 [ 39] [ 2] [00] +11:33:33 [ 70] [ 3] [301] +11:33:33 ============================================================================ +11:33:33 Calculate Source COMM Id = 2 +11:33:33 ============================================================================ +11:33:33 + + +waiting on router queue for slot.... +11:33:45 ============================================================================ +11:33:45 Slot Id : <282> +11:33:45 Transaction Type : REQUEST +11:33:45 Received From : +11:33:45 ============================================================================ +11:33:45 FNo. Len. Field Value +11:33:45 ============================================================================ +11:33:45 [ 1] [ 4] [0800] +11:33:45 [ 7] [ 10] [0320043253] +11:33:45 [ 11] [ 6] [156118] +11:33:45 [ 70] [ 3] [301] +11:33:45 ============================================================================ +11:33:45 + + +waiting on router queue for slot.... +11:33:45 Sending to : +11:33:45 ============================================================================ +11:33:45 ============================================================================ +11:33:45 Slot Id : <282> +11:33:45 Transaction Type : RESPONSE +11:33:45 Received From : +11:33:45 ============================================================================ +11:33:45 FNo. Len. Field Value +11:33:45 ============================================================================ +11:33:45 [ 1] [ 4] [0810] +11:33:45 [ 7] [ 10] [0320043253] +11:33:45 [ 11] [ 6] [156118] +11:33:45 [ 39] [ 2] [00] +11:33:45 [ 70] [ 3] [301] +11:33:45 ============================================================================ +11:33:45 Calculate Source COMM Id = 2 +11:33:45 ============================================================================ +11:33:45 + + +waiting on router queue for slot.... +11:33:57 ============================================================================ +11:33:57 Slot Id : <239> +11:33:57 Transaction Type : REQUEST +11:33:57 Received From : +11:33:57 ============================================================================ +11:33:57 FNo. Len. Field Value +11:33:57 ============================================================================ +11:33:57 [ 1] [ 4] [0200] +11:33:57 [ 2] [ 16] [6213548000377430] +11:33:57 [ 3] [ 6] [010000] +11:33:57 [ 4] [ 12] [000010000000] +11:33:57 [ 7] [ 10] [0320113148] +11:33:57 [ 11] [ 6] [941536] +11:33:57 [ 12] [ 6] [113148] +11:33:57 [ 13] [ 4] [0320] +11:33:57 [ 15] [ 4] [0320] +11:33:57 [ 18] [ 4] [6011] +11:33:57 [ 19] [ 3] [418] +11:33:57 [ 22] [ 3] [021] +11:33:57 [ 25] [ 2] [01] +11:33:57 [ 28] [ 9] [D00002000] +11:33:57 [ 32] [ 6] [668899] +11:33:57 [ 35] [ 32] [6213548000377430=180512017743314] +11:33:57 [ 37] [ 12] [507901963501] +11:33:57 [ 41] [ 8] [03020019] +11:33:57 [ 42] [ 15] [APT ] +11:33:57 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:33:57 [ 49] [ 3] [418] +11:33:57 [ 52] [ 16] [0EECEDB438534F14] +11:33:57 ============================================================================ +11:33:57 + + +waiting on router queue for slot.... +11:33:57 Sending to : +11:33:57 ============================================================================ +11:33:57 Sending to : +11:33:57 ============================================================================ +11:33:57 ============================================================================ +11:33:57 Slot Id : <272> +11:33:57 Transaction Type : REQUEST +11:33:57 Received From : +11:33:57 ============================================================================ +11:33:57 FNo. Len. Field Value +11:33:57 ============================================================================ +11:33:57 [ 1] [ 4] [0200] +11:33:57 [ 2] [ 16] [6213541000050644] +11:33:57 [ 3] [ 6] [010000] +11:33:57 [ 4] [ 12] [000100000000] +11:33:57 [ 7] [ 10] [0320043304] +11:33:57 [ 11] [ 6] [268561] +11:33:57 [ 12] [ 6] [113304] +11:33:57 [ 13] [ 4] [0320] +11:33:57 [ 14] [ 4] [4912] +11:33:57 [ 15] [ 4] [0320] +11:33:57 [ 18] [ 4] [6011] +11:33:57 [ 19] [ 3] [418] +11:33:57 [ 22] [ 3] [021] +11:33:57 [ 25] [ 2] [01] +11:33:57 [ 28] [ 9] [D00002000] +11:33:57 [ 32] [ 6] [180893] +11:33:57 [ 35] [ 32] [6213541000050644=491212015064205] +11:33:57 [ 37] [ 12] [507904268561] +11:33:57 [ 41] [ 8] [0106NAXA] +11:33:57 [ 42] [ 15] [999999 ] +11:33:57 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +11:33:57 [ 49] [ 3] [418] +11:33:57 [ 52] [ 16] [B871650D3CF79A77] +11:33:57 ============================================================================ +11:33:57 + + +waiting on router queue for slot.... +11:33:57 Sending to : +11:33:57 ============================================================================ +11:33:57 Sending to : +11:33:57 ============================================================================ +11:33:57 ============================================================================ +11:33:57 Slot Id : <239> +11:33:57 Transaction Type : REQUEST +11:33:57 Received From : +11:33:57 ============================================================================ +11:33:57 FNo. Len. Field Value +11:33:57 ============================================================================ +11:33:57 [ 1] [ 4] [0200] +11:33:57 [ 2] [ 16] [6213548000377430] +11:33:57 [ 3] [ 6] [010000] +11:33:57 [ 4] [ 12] [000010000000] +11:33:57 [ 7] [ 10] [0320113148] +11:33:57 [ 11] [ 6] [941536] +11:33:57 [ 12] [ 6] [113148] +11:33:57 [ 13] [ 4] [0320] +11:33:57 [ 15] [ 4] [0320] +11:33:57 [ 18] [ 4] [6011] +11:33:57 [ 19] [ 3] [418] +11:33:57 [ 22] [ 3] [021] +11:33:57 [ 25] [ 2] [01] +11:33:57 [ 28] [ 9] [D00002000] +11:33:57 [ 32] [ 6] [668899] +11:33:57 [ 35] [ 32] [6213548000377430=180512017743314] +11:33:57 [ 37] [ 12] [507901963501] +11:33:57 [ 41] [ 8] [03020019] +11:33:57 [ 42] [ 15] [APT ] +11:33:57 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:33:57 [ 49] [ 3] [418] +11:33:57 [ 52] [ 16] [0EECEDB438534F14] +11:33:57 ============================================================================ +11:33:57 + + +waiting on router queue for slot.... +11:33:57 Sending to : +11:33:57 ============================================================================ +11:33:57 ============================================================================ +11:33:57 Slot Id : <272> +11:33:57 Transaction Type : REQUEST +11:33:57 Received From : +11:33:57 ============================================================================ +11:33:57 FNo. Len. Field Value +11:33:57 ============================================================================ +11:33:57 [ 1] [ 4] [0200] +11:33:57 [ 2] [ 16] [6213541000050644] +11:33:57 [ 3] [ 6] [010000] +11:33:57 [ 4] [ 12] [000100000000] +11:33:57 [ 7] [ 10] [0320043304] +11:33:57 [ 11] [ 6] [268561] +11:33:57 [ 12] [ 6] [113304] +11:33:57 [ 13] [ 4] [0320] +11:33:57 [ 14] [ 4] [4912] +11:33:57 [ 15] [ 4] [0320] +11:33:57 [ 18] [ 4] [6011] +11:33:57 [ 19] [ 3] [418] +11:33:57 [ 22] [ 3] [021] +11:33:57 [ 25] [ 2] [01] +11:33:57 [ 28] [ 9] [D00002000] +11:33:57 [ 32] [ 6] [180893] +11:33:57 [ 35] [ 32] [6213541000050644=491212015064205] +11:33:57 [ 37] [ 12] [507904268561] +11:33:57 [ 41] [ 8] [0106NAXA] +11:33:57 [ 42] [ 15] [999999 ] +11:33:57 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +11:33:57 [ 49] [ 3] [418] +11:33:57 [ 52] [ 16] [B871650D3CF79A77] +11:33:57 ============================================================================ +11:33:57 + + +waiting on router queue for slot.... +11:33:57 ============================================================================ +11:33:57 Slot Id : <239> +11:33:57 Transaction Type : REQUEST +11:33:57 Received From : +11:33:57 ============================================================================ +11:33:57 FNo. Len. Field Value +11:33:57 ============================================================================ +11:33:57 Sending to : +11:33:57 ============================================================================ +11:33:57 [ 1] [ 4] [0200] +11:33:57 [ 2] [ 16] [6213548000377430] +11:33:57 [ 3] [ 6] [010000] +11:33:57 [ 4] [ 12] [000010000000] +11:33:57 [ 7] [ 10] [0320113148] +11:33:57 [ 11] [ 6] [941536] +11:33:57 [ 12] [ 6] [113148] +11:33:57 [ 13] [ 4] [0320] +11:33:57 [ 15] [ 4] [0320] +11:33:57 [ 18] [ 4] [6011] +11:33:57 [ 19] [ 3] [418] +11:33:57 [ 22] [ 3] [021] +11:33:57 [ 25] [ 2] [01] +11:33:57 [ 28] [ 9] [D00002000] +11:33:57 [ 32] [ 6] [668899] +11:33:57 [ 35] [ 32] [6213548000377430=180512017743314] +11:33:57 [ 37] [ 12] [507901963501] +11:33:57 [ 41] [ 8] [03020019] +11:33:57 [ 42] [ 15] [APT ] +11:33:57 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:33:57 [ 49] [ 3] [418] +11:33:57 [ 52] [ 16] [3B9F2C57D9BD421C] +11:33:57 ============================================================================ +11:33:57 + + +waiting on router queue for slot.... +11:33:57 Sending to : <0> +11:33:57 ============================================================================ +11:33:57 ============================================================================ +11:33:57 Slot Id : <272> +11:33:57 Transaction Type : REQUEST +11:33:57 Received From : +11:33:57 ============================================================================ +11:33:57 FNo. Len. Field Value +11:33:57 ============================================================================ +11:33:57 [ 1] [ 4] [0200] +11:33:57 [ 2] [ 16] [6213541000050644] +11:33:57 [ 3] [ 6] [010000] +11:33:57 [ 4] [ 12] [000100000000] +11:33:57 [ 7] [ 10] [0320043304] +11:33:57 [ 11] [ 6] [268561] +11:33:57 [ 12] [ 6] [113304] +11:33:57 [ 13] [ 4] [0320] +11:33:57 [ 14] [ 4] [4912] +11:33:57 [ 15] [ 4] [0320] +11:33:57 [ 18] [ 4] [6011] +11:33:57 [ 19] [ 3] [418] +11:33:57 [ 22] [ 3] [021] +11:33:57 [ 25] [ 2] [01] +11:33:57 [ 28] [ 9] [D00002000] +11:33:57 [ 32] [ 6] [180893] +11:33:57 [ 35] [ 32] [6213541000050644=491212015064205] +11:33:57 [ 37] [ 12] [507904268561] +11:33:57 [ 41] [ 8] [0106NAXA] +11:33:57 [ 42] [ 15] [999999 ] +11:33:57 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +11:33:57 [ 49] [ 3] [418] +11:33:57 [ 52] [ 16] [13202A6C243C38A4] +11:33:57 ============================================================================ +11:33:57 + + +waiting on router queue for slot.... +11:33:57 Sending to : <0> +11:33:57 ============================================================================ +11:33:58 ============================================================================ +11:33:58 Slot Id : <239> +11:33:58 Transaction Type : RESPONSE +11:33:58 Received From : +11:33:58 ============================================================================ +11:33:58 FNo. Len. Field Value +11:33:58 ============================================================================ +11:33:58 [ 1] [ 4] [0210] +11:33:58 [ 2] [ 16] [6213548000377430] +11:33:58 [ 3] [ 6] [010000] +11:33:58 [ 4] [ 12] [000010000000] +11:33:58 [ 7] [ 10] [0320113148] +11:33:58 [ 11] [ 6] [941536] +11:33:58 [ 12] [ 6] [113148] +11:33:58 [ 13] [ 4] [0320] +11:33:58 [ 15] [ 4] [0320] +11:33:58 [ 18] [ 4] [6011] +11:33:58 [ 19] [ 3] [418] +11:33:58 [ 32] [ 6] [668899] +11:33:58 [ 35] [ 32] [6213548000377430=180512017743314] +11:33:58 [ 37] [ 12] [507901963501] +11:33:58 [ 38] [ 6] [621324] +11:33:58 [ 39] [ 2] [00] +11:33:58 [ 41] [ 8] [03020019] +11:33:58 [ 49] [ 3] [418] +11:33:58 [ 54] [ 40] [0001418C0001494798080002418C000149479808] +11:33:58 ============================================================================ +11:33:58 Sending to : +11:33:58 ============================================================================ +11:33:58 + + +waiting on router queue for slot.... +11:33:58 ============================================================================ +11:33:58 Slot Id : <272> +11:33:58 Transaction Type : RESPONSE +11:33:58 Received From : +11:33:58 ============================================================================ +11:33:58 FNo. Len. Field Value +11:33:58 ============================================================================ +11:33:58 [ 1] [ 4] [0210] +11:33:58 [ 2] [ 16] [6213541000050644] +11:33:58 [ 3] [ 6] [010000] +11:33:58 [ 4] [ 12] [000100000000] +11:33:58 [ 7] [ 10] [0320043304] +11:33:58 [ 11] [ 6] [268561] +11:33:58 [ 12] [ 6] [113304] +11:33:58 [ 13] [ 4] [0320] +11:33:58 [ 15] [ 4] [0320] +11:33:58 [ 18] [ 4] [6011] +11:33:58 [ 19] [ 3] [418] +11:33:58 [ 32] [ 6] [180893] +11:33:58 [ 35] [ 32] [6213541000050644=491212015064205] +11:33:58 [ 37] [ 12] [507904268561] +11:33:58 [ 38] [ 6] [745738] +11:33:58 [ 39] [ 2] [00] +11:33:58 [ 41] [ 8] [0106NAXA] +11:33:58 [ 49] [ 3] [418] +11:33:58 [ 54] [ 40] [0001418C0000995073430002418C000099507343] +11:33:58 ============================================================================ +11:33:58 Sending to : +11:33:58 ============================================================================ +11:33:58 + + +waiting on router queue for slot.... +11:34:00 ============================================================================ +11:34:00 Slot Id : <266> +11:34:00 Transaction Type : REQUEST +11:34:00 Received From : +11:34:00 ============================================================================ +11:34:00 FNo. Len. Field Value +11:34:00 ============================================================================ +11:34:00 [ 1] [ 4] [0800] +11:34:00 [ 2] [ 5] [02531] +11:34:00 [ 3] [ 6] [579118] +11:34:00 [ 7] [ 10] [0320043400] +11:34:00 [ 11] [ 6] [807083] +11:34:00 [ 15] [ 10] [0320043400] +11:34:00 [ 37] [ 11] [57911807083] +11:34:00 [ 70] [ 3] [001] +11:34:00 ============================================================================ +11:34:00 + + +waiting on router queue for slot.... +11:34:00 ============================================================================ +11:34:00 Slot Id : <266> +11:34:00 Transaction Type : RESPONSE +11:34:00 Received From : +11:34:00 ============================================================================ +11:34:00 FNo. Len. Field Value +11:34:00 ============================================================================ +11:34:00 [ 1] [ 4] [0810] +11:34:00 [ 7] [ 10] [0320043400] +11:34:00 [ 11] [ 6] [807083] +11:34:00 [ 15] [ 4] [0320] +11:34:00 [ 37] [ 12] [57911807083] +11:34:00 [ 39] [ 2] [00] +11:34:00 [ 70] [ 3] [001] +11:34:00 ============================================================================ +11:34:00 Sending to : +11:34:00 ============================================================================ +11:34:00 + + +waiting on router queue for slot.... +11:34:00 ============================================================================ +11:34:00 Slot Id : <239> +11:34:00 Transaction Type : RESPONSE +11:34:00 Received From : +11:34:00 ============================================================================ +11:34:00 FNo. Len. Field Value +11:34:00 ============================================================================ +11:34:00 [ 1] [ 4] [0210] +11:34:00 [ 2] [ 16] [6213548000377430] +11:34:00 [ 3] [ 6] [010000] +11:34:00 [ 4] [ 12] [000010000000] +11:34:00 [ 7] [ 10] [0320113148] +11:34:00 [ 11] [ 6] [941536] +11:34:00 [ 12] [ 6] [113148] +11:34:00 [ 13] [ 4] [0320] +11:34:00 [ 15] [ 4] [0320] +11:34:00 [ 18] [ 4] [6011] +11:34:00 [ 19] [ 3] [418] +11:34:00 [ 32] [ 6] [668899] +11:34:00 [ 35] [ 32] [6213548000377430=180512017743314] +11:34:00 [ 37] [ 12] [507901963501] +11:34:00 [ 38] [ 6] [621324] +11:34:00 [ 39] [ 2] [00] +11:34:00 [ 41] [ 8] [03020019] +11:34:00 [ 49] [ 3] [418] +11:34:00 [ 54] [ 40] [0001418C0001494798080002418C000149479808] +11:34:00 ============================================================================ +11:34:00 Calculate Source COMM Id = 4 +11:34:00 ============================================================================ +11:34:00 + + +waiting on router queue for slot.... +11:34:00 ============================================================================ +11:34:00 Slot Id : <252> +11:34:00 Transaction Type : REQUEST +11:34:00 Received From : +11:34:00 ============================================================================ +11:34:00 FNo. Len. Field Value +11:34:00 ============================================================================ +11:34:00 [ 1] [ 4] [0200] +11:34:00 [ 2] [ 16] [6213541000320542] +11:34:00 [ 3] [ 6] [010000] +11:34:00 [ 4] [ 12] [000100000000] +11:34:00 [ 7] [ 10] [0320043307] +11:34:00 [ 11] [ 6] [268563] +11:34:00 [ 12] [ 6] [113307] +11:34:00 [ 13] [ 4] [0320] +11:34:00 [ 14] [ 4] [4912] +11:34:00 [ 15] [ 4] [0320] +11:34:00 [ 18] [ 4] [6011] +11:34:00 [ 19] [ 3] [418] +11:34:00 [ 22] [ 3] [021] +11:34:00 [ 25] [ 2] [01] +11:34:00 [ 28] [ 9] [D00002000] +11:34:00 [ 32] [ 6] [180893] +11:34:00 [ 35] [ 32] [6213541000320542=491212012054325] +11:34:00 [ 37] [ 12] [507904268563] +11:34:00 [ 41] [ 8] [0324BKDT] +11:34:00 [ 42] [ 15] [999999 ] +11:34:00 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:34:00 [ 49] [ 3] [418] +11:34:00 [ 52] [ 16] [CF8B0EB5B4436A33] +11:34:00 ============================================================================ +11:34:00 + + +waiting on router queue for slot.... +11:34:00 Sending to : +11:34:00 ============================================================================ +11:34:00 Sending to : +11:34:00 ============================================================================ +11:34:00 ============================================================================ +11:34:00 Slot Id : <276> +11:34:00 Transaction Type : REQUEST +11:34:00 Received From : +11:34:00 ============================================================================ +11:34:00 FNo. Len. Field Value +11:34:00 ============================================================================ +11:34:00 [ 1] [ 4] [0800] +11:34:00 [ 7] [ 10] [0320043308] +11:34:00 [ 11] [ 6] [156119] +11:34:00 [ 70] [ 3] [301] +11:34:00 ============================================================================ +11:34:00 + + +waiting on router queue for slot.... +11:34:00 Sending to : +11:34:00 ============================================================================ +11:34:00 ============================================================================ +11:34:00 Slot Id : <252> +11:34:00 Transaction Type : REQUEST +11:34:00 Received From : +11:34:00 ============================================================================ +11:34:00 FNo. Len. Field Value +11:34:00 ============================================================================ +11:34:00 [ 1] [ 4] [0200] +11:34:00 [ 2] [ 16] [6213541000320542] +11:34:00 [ 3] [ 6] [010000] +11:34:00 [ 4] [ 12] [000100000000] +11:34:00 [ 7] [ 10] [0320043307] +11:34:00 [ 11] [ 6] [268563] +11:34:00 [ 12] [ 6] [113307] +11:34:00 [ 13] [ 4] [0320] +11:34:00 [ 14] [ 4] [4912] +11:34:00 [ 15] [ 4] [0320] +11:34:00 [ 18] [ 4] [6011] +11:34:00 [ 19] [ 3] [418] +11:34:00 [ 22] [ 3] [021] +11:34:00 [ 25] [ 2] [01] +11:34:00 [ 28] [ 9] [D00002000] +11:34:00 [ 32] [ 6] [180893] +11:34:00 [ 35] [ 32] [6213541000320542=491212012054325] +11:34:00 [ 37] [ 12] [507904268563] +11:34:00 [ 41] [ 8] [0324BKDT] +11:34:00 [ 42] [ 15] [999999 ] +11:34:00 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:34:00 [ 49] [ 3] [418] +11:34:00 [ 52] [ 16] [CF8B0EB5B4436A33] +11:34:00 ============================================================================ +11:34:00 + + +waiting on router queue for slot.... +11:34:00 ============================================================================ +11:34:00 Slot Id : <276> +11:34:00 Transaction Type : RESPONSE +11:34:00 Received From : +11:34:00 ============================================================================ +11:34:00 FNo. Len. Field Value +11:34:00 ============================================================================ +11:34:00 [ 1] [ 4] [0810] +11:34:00 [ 7] [ 10] [0320043308] +11:34:00 [ 11] [ 6] [156119] +11:34:00 [ 39] [ 2] [00] +11:34:00 [ 70] [ 3] [301] +11:34:00 ============================================================================ +11:34:00 Calculate Source COMM Id = 2 +11:34:00 ============================================================================ +11:34:00 Sending to : +11:34:00 ============================================================================ +11:34:00 + + +waiting on router queue for slot.... +11:34:00 ============================================================================ +11:34:00 Slot Id : <252> +11:34:00 Transaction Type : REQUEST +11:34:00 Received From : +11:34:00 ============================================================================ +11:34:00 FNo. Len. Field Value +11:34:00 ============================================================================ +11:34:00 [ 1] [ 4] [0200] +11:34:00 [ 2] [ 16] [6213541000320542] +11:34:00 [ 3] [ 6] [010000] +11:34:00 [ 4] [ 12] [000100000000] +11:34:00 [ 7] [ 10] [0320043307] +11:34:00 [ 11] [ 6] [268563] +11:34:00 [ 12] [ 6] [113307] +11:34:00 [ 13] [ 4] [0320] +11:34:00 [ 14] [ 4] [4912] +11:34:00 [ 15] [ 4] [0320] +11:34:00 [ 18] [ 4] [6011] +11:34:00 [ 19] [ 3] [418] +11:34:00 [ 22] [ 3] [021] +11:34:00 [ 25] [ 2] [01] +11:34:00 [ 28] [ 9] [D00002000] +11:34:00 [ 32] [ 6] [180893] +11:34:00 [ 35] [ 32] [6213541000320542=491212012054325] +11:34:00 [ 37] [ 12] [507904268563] +11:34:00 [ 41] [ 8] [0324BKDT] +11:34:00 [ 42] [ 15] [999999 ] +11:34:00 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:34:00 [ 49] [ 3] [418] +11:34:00 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:34:00 ============================================================================ +11:34:00 + + +waiting on router queue for slot.... +11:34:00 Sending to : <0> +11:34:00 ============================================================================ +11:34:01 ============================================================================ +11:34:01 Slot Id : <252> +11:34:01 Transaction Type : RESPONSE +11:34:01 Received From : +11:34:01 ============================================================================ +11:34:01 FNo. Len. Field Value +11:34:01 ============================================================================ +11:34:01 [ 1] [ 4] [0210] +11:34:01 [ 2] [ 16] [6213541000320542] +11:34:01 [ 3] [ 6] [010000] +11:34:01 [ 4] [ 12] [000100000000] +11:34:01 [ 7] [ 10] [0320043307] +11:34:01 [ 11] [ 6] [268563] +11:34:01 [ 12] [ 6] [113307] +11:34:01 [ 13] [ 4] [0320] +11:34:01 [ 15] [ 4] [0320] +11:34:01 [ 18] [ 4] [6011] +11:34:01 [ 19] [ 3] [418] +11:34:01 [ 32] [ 6] [180893] +11:34:01 [ 35] [ 32] [6213541000320542=491212012054325] +11:34:01 [ 37] [ 12] [507904268563] +11:34:01 [ 38] [ 6] [688649] +11:34:01 [ 39] [ 2] [00] +11:34:01 [ 41] [ 8] [0324BKDT] +11:34:01 [ 49] [ 3] [418] +11:34:01 [ 54] [ 40] [0001418C0019916349510002418C001991634951] +11:34:01 ============================================================================ +11:34:01 Sending to : +11:34:01 ============================================================================ +11:34:01 + + +waiting on router queue for slot.... +11:34:01 ============================================================================ +11:34:01 Slot Id : <272> +11:34:01 Transaction Type : RESPONSE +11:34:01 Received From : +11:34:01 ============================================================================ +11:34:01 FNo. Len. Field Value +11:34:01 ============================================================================ +11:34:01 [ 1] [ 4] [0210] +11:34:01 [ 2] [ 16] [6213541000050644] +11:34:01 [ 3] [ 6] [010000] +11:34:01 [ 4] [ 12] [000100000000] +11:34:01 [ 7] [ 10] [0320043304] +11:34:01 [ 11] [ 6] [268561] +11:34:01 [ 12] [ 6] [113304] +11:34:01 [ 13] [ 4] [0320] +11:34:01 [ 15] [ 4] [0320] +11:34:01 [ 18] [ 4] [6011] +11:34:01 [ 19] [ 3] [418] +11:34:01 [ 32] [ 6] [180893] +11:34:01 [ 35] [ 32] [6213541000050644=491212015064205] +11:34:01 [ 37] [ 12] [507904268561] +11:34:01 [ 38] [ 6] [745738] +11:34:01 [ 39] [ 2] [00] +11:34:01 [ 41] [ 8] [0106NAXA] +11:34:01 [ 49] [ 3] [418] +11:34:01 [ 54] [ 40] [0001418C0000995073430002418C000099507343] +11:34:01 ============================================================================ +11:34:01 Calculate Source COMM Id = 2 +11:34:01 ============================================================================ +11:34:01 + + +waiting on router queue for slot.... +11:34:03 ============================================================================ +11:34:03 Slot Id : <252> +11:34:03 Transaction Type : RESPONSE +11:34:03 Received From : +11:34:03 ============================================================================ +11:34:03 FNo. Len. Field Value +11:34:03 ============================================================================ +11:34:03 [ 1] [ 4] [0210] +11:34:03 [ 2] [ 16] [6213541000320542] +11:34:03 [ 3] [ 6] [010000] +11:34:03 [ 4] [ 12] [000100000000] +11:34:03 [ 7] [ 10] [0320043307] +11:34:03 [ 11] [ 6] [268563] +11:34:03 [ 12] [ 6] [113307] +11:34:03 [ 13] [ 4] [0320] +11:34:03 [ 15] [ 4] [0320] +11:34:03 [ 18] [ 4] [6011] +11:34:03 [ 19] [ 3] [418] +11:34:03 [ 32] [ 6] [180893] +11:34:03 [ 35] [ 32] [6213541000320542=491212012054325] +11:34:03 [ 37] [ 12] [507904268563] +11:34:03 [ 38] [ 6] [688649] +11:34:03 [ 39] [ 2] [00] +11:34:03 [ 41] [ 8] [0324BKDT] +11:34:03 [ 49] [ 3] [418] +11:34:03 [ 54] [ 40] [0001418C0019916349510002418C001991634951] +11:34:03 ============================================================================ +11:34:03 Calculate Source COMM Id = 2 +11:34:03 ============================================================================ +11:34:03 + + +waiting on router queue for slot.... +11:34:17 ============================================================================ +11:34:17 Slot Id : <241> +11:34:17 Transaction Type : REQUEST +11:34:17 Received From : +11:34:17 ============================================================================ +11:34:17 FNo. Len. Field Value +11:34:17 ============================================================================ +11:34:17 [ 1] [ 4] [0800] +11:34:17 [ 7] [ 10] [0320043324] +11:34:17 [ 11] [ 6] [156120] +11:34:17 [ 70] [ 3] [301] +11:34:17 ============================================================================ +11:34:17 + + +waiting on router queue for slot.... +11:34:17 Sending to : +11:34:17 ============================================================================ +11:34:17 ============================================================================ +11:34:17 Slot Id : <241> +11:34:17 Transaction Type : RESPONSE +11:34:17 Received From : +11:34:17 ============================================================================ +11:34:17 FNo. Len. Field Value +11:34:17 ============================================================================ +11:34:17 [ 1] [ 4] [0810] +11:34:17 [ 7] [ 10] [0320043324] +11:34:17 [ 11] [ 6] [156120] +11:34:17 [ 39] [ 2] [00] +11:34:17 [ 70] [ 3] [301] +11:34:17 ============================================================================ +11:34:17 Calculate Source COMM Id = 2 +11:34:17 ============================================================================ +11:34:17 + + +waiting on router queue for slot.... +11:34:33 ============================================================================ +11:34:33 Slot Id : <280> +11:34:33 Transaction Type : REQUEST +11:34:33 Received From : +11:34:33 ============================================================================ +11:34:33 FNo. Len. Field Value +11:34:33 ============================================================================ +11:34:33 [ 1] [ 4] [0800] +11:34:33 [ 7] [ 10] [0320043340] +11:34:33 [ 11] [ 6] [156121] +11:34:33 [ 70] [ 3] [301] +11:34:33 ============================================================================ +11:34:33 + + +waiting on router queue for slot.... +11:34:33 Sending to : +11:34:33 ============================================================================ +11:34:33 ============================================================================ +11:34:33 Slot Id : <280> +11:34:33 Transaction Type : RESPONSE +11:34:33 Received From : +11:34:33 ============================================================================ +11:34:33 FNo. Len. Field Value +11:34:33 ============================================================================ +11:34:33 [ 1] [ 4] [0810] +11:34:33 [ 7] [ 10] [0320043340] +11:34:33 [ 11] [ 6] [156121] +11:34:33 [ 39] [ 2] [00] +11:34:33 [ 70] [ 3] [301] +11:34:33 ============================================================================ +11:34:33 Calculate Source COMM Id = 2 +11:34:33 ============================================================================ +11:34:33 + + +waiting on router queue for slot.... +11:34:44 ============================================================================ +11:34:44 Slot Id : <258> +11:34:44 Transaction Type : REQUEST +11:34:44 Received From : +11:34:44 ============================================================================ +11:34:44 FNo. Len. Field Value +11:34:44 ============================================================================ +11:34:44 [ 1] [ 4] [0800] +11:34:44 [ 7] [ 10] [0320043351] +11:34:44 [ 11] [ 6] [156122] +11:34:44 [ 70] [ 3] [301] +11:34:44 ============================================================================ +11:34:44 + + +waiting on router queue for slot.... +11:34:44 Sending to : +11:34:44 ============================================================================ +11:34:44 ============================================================================ +11:34:44 Slot Id : <258> +11:34:44 Transaction Type : RESPONSE +11:34:44 Received From : +11:34:44 ============================================================================ +11:34:44 FNo. Len. Field Value +11:34:44 ============================================================================ +11:34:44 [ 1] [ 4] [0810] +11:34:44 [ 7] [ 10] [0320043351] +11:34:44 [ 11] [ 6] [156122] +11:34:44 [ 39] [ 2] [00] +11:34:44 [ 70] [ 3] [301] +11:34:44 ============================================================================ +11:34:44 Calculate Source COMM Id = 2 +11:34:44 ============================================================================ +11:34:44 + + +waiting on router queue for slot.... +11:34:47 ============================================================================ +11:34:47 Slot Id : <284> +11:34:47 Transaction Type : REQUEST +11:34:47 Received From : +11:34:47 ============================================================================ +11:34:47 FNo. Len. Field Value +11:34:47 ============================================================================ +11:34:47 [ 1] [ 4] [0200] +11:34:47 [ 2] [ 16] [6213541000320542] +11:34:47 [ 3] [ 6] [010000] +11:34:47 [ 4] [ 12] [000100000000] +11:34:47 [ 7] [ 10] [0320043354] +11:34:47 [ 11] [ 6] [268571] +11:34:47 [ 12] [ 6] [113354] +11:34:47 [ 13] [ 4] [0320] +11:34:47 [ 14] [ 4] [4912] +11:34:47 [ 15] [ 4] [0320] +11:34:47 [ 18] [ 4] [6011] +11:34:47 [ 19] [ 3] [418] +11:34:47 [ 22] [ 3] [021] +11:34:47 [ 25] [ 2] [01] +11:34:47 [ 28] [ 9] [D00002000] +11:34:47 [ 32] [ 6] [180893] +11:34:47 [ 35] [ 32] [6213541000320542=491212012054325] +11:34:47 [ 37] [ 12] [507904268571] +11:34:47 [ 41] [ 8] [0324BKDT] +11:34:47 [ 42] [ 15] [999999 ] +11:34:47 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:34:47 [ 49] [ 3] [418] +11:34:47 [ 52] [ 16] [CF8B0EB5B4436A33] +11:34:47 ============================================================================ +11:34:47 + + +waiting on router queue for slot.... +11:34:47 Sending to : +11:34:47 ============================================================================ +11:34:47 Sending to : +11:34:47 ============================================================================ +11:34:47 ============================================================================ +11:34:47 Slot Id : <284> +11:34:47 Transaction Type : REQUEST +11:34:47 Received From : +11:34:47 ============================================================================ +11:34:47 FNo. Len. Field Value +11:34:47 ============================================================================ +11:34:47 [ 1] [ 4] [0200] +11:34:47 [ 2] [ 16] [6213541000320542] +11:34:47 [ 3] [ 6] [010000] +11:34:47 [ 4] [ 12] [000100000000] +11:34:47 [ 7] [ 10] [0320043354] +11:34:47 [ 11] [ 6] [268571] +11:34:47 [ 12] [ 6] [113354] +11:34:47 [ 13] [ 4] [0320] +11:34:47 [ 14] [ 4] [4912] +11:34:47 [ 15] [ 4] [0320] +11:34:47 [ 18] [ 4] [6011] +11:34:47 [ 19] [ 3] [418] +11:34:47 [ 22] [ 3] [021] +11:34:47 [ 25] [ 2] [01] +11:34:47 [ 28] [ 9] [D00002000] +11:34:47 [ 32] [ 6] [180893] +11:34:47 [ 35] [ 32] [6213541000320542=491212012054325] +11:34:47 [ 37] [ 12] [507904268571] +11:34:47 [ 41] [ 8] [0324BKDT] +11:34:47 [ 42] [ 15] [999999 ] +11:34:47 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:34:47 [ 49] [ 3] [418] +11:34:47 [ 52] [ 16] [CF8B0EB5B4436A33] +11:34:47 ============================================================================ +11:34:47 + + +waiting on router queue for slot.... +11:34:47 Sending to : +11:34:47 ============================================================================ +11:34:47 ============================================================================ +11:34:47 Slot Id : <284> +11:34:47 Transaction Type : REQUEST +11:34:47 Received From : +11:34:47 ============================================================================ +11:34:47 FNo. Len. Field Value +11:34:47 ============================================================================ +11:34:47 [ 1] [ 4] [0200] +11:34:47 [ 2] [ 16] [6213541000320542] +11:34:47 [ 3] [ 6] [010000] +11:34:47 [ 4] [ 12] [000100000000] +11:34:47 [ 7] [ 10] [0320043354] +11:34:47 [ 11] [ 6] [268571] +11:34:47 [ 12] [ 6] [113354] +11:34:47 [ 13] [ 4] [0320] +11:34:47 [ 14] [ 4] [4912] +11:34:47 [ 15] [ 4] [0320] +11:34:47 [ 18] [ 4] [6011] +11:34:47 [ 19] [ 3] [418] +11:34:47 [ 22] [ 3] [021] +11:34:47 [ 25] [ 2] [01] +11:34:47 [ 28] [ 9] [D00002000] +11:34:47 [ 32] [ 6] [180893] +11:34:47 [ 35] [ 32] [6213541000320542=491212012054325] +11:34:47 [ 37] [ 12] [507904268571] +11:34:47 [ 41] [ 8] [0324BKDT] +11:34:47 [ 42] [ 15] [999999 ] +11:34:47 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:34:47 [ 49] [ 3] [418] +11:34:47 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:34:47 ============================================================================ +11:34:47 + + +waiting on router queue for slot.... +11:34:47 Sending to : <0> +11:34:47 ============================================================================ +11:34:48 ============================================================================ +11:34:48 Slot Id : <284> +11:34:48 Transaction Type : RESPONSE +11:34:48 Received From : +11:34:48 ============================================================================ +11:34:48 FNo. Len. Field Value +11:34:48 ============================================================================ +11:34:48 [ 1] [ 4] [0210] +11:34:48 [ 2] [ 16] [6213541000320542] +11:34:48 [ 3] [ 6] [010000] +11:34:48 [ 4] [ 12] [000100000000] +11:34:48 [ 7] [ 10] [0320043354] +11:34:48 [ 11] [ 6] [268571] +11:34:48 [ 12] [ 6] [113354] +11:34:48 [ 13] [ 4] [0320] +11:34:48 [ 15] [ 4] [0320] +11:34:48 [ 18] [ 4] [6011] +11:34:48 [ 19] [ 3] [418] +11:34:48 [ 32] [ 6] [180893] +11:34:48 [ 35] [ 32] [6213541000320542=491212012054325] +11:34:48 [ 37] [ 12] [507904268571] +11:34:48 [ 38] [ 6] [780210] +11:34:48 [ 39] [ 2] [00] +11:34:48 [ 41] [ 8] [0324BKDT] +11:34:48 [ 49] [ 3] [418] +11:34:48 [ 54] [ 40] [0001418C0018914349510002418C001891434951] +11:34:48 ============================================================================ +11:34:48 Sending to : +11:34:48 ============================================================================ +11:34:48 + + +waiting on router queue for slot.... +11:34:50 ============================================================================ +11:34:50 Slot Id : <284> +11:34:50 Transaction Type : RESPONSE +11:34:50 Received From : +11:34:50 ============================================================================ +11:34:50 FNo. Len. Field Value +11:34:50 ============================================================================ +11:34:50 [ 1] [ 4] [0210] +11:34:50 [ 2] [ 16] [6213541000320542] +11:34:50 [ 3] [ 6] [010000] +11:34:50 [ 4] [ 12] [000100000000] +11:34:50 [ 7] [ 10] [0320043354] +11:34:50 [ 11] [ 6] [268571] +11:34:50 [ 12] [ 6] [113354] +11:34:50 [ 13] [ 4] [0320] +11:34:50 [ 15] [ 4] [0320] +11:34:50 [ 18] [ 4] [6011] +11:34:50 [ 19] [ 3] [418] +11:34:50 [ 32] [ 6] [180893] +11:34:50 [ 35] [ 32] [6213541000320542=491212012054325] +11:34:50 [ 37] [ 12] [507904268571] +11:34:50 [ 38] [ 6] [780210] +11:34:50 [ 39] [ 2] [00] +11:34:50 [ 41] [ 8] [0324BKDT] +11:34:50 [ 49] [ 3] [418] +11:34:50 [ 54] [ 40] [0001418C0018914349510002418C001891434951] +11:34:50 ============================================================================ +11:34:50 Calculate Source COMM Id = 2 +11:34:50 ============================================================================ +11:34:50 + + +waiting on router queue for slot.... +11:34:55 ============================================================================ +11:34:55 Slot Id : <219> +11:34:55 Transaction Type : REQUEST +11:34:55 Received From : +11:34:55 ============================================================================ +11:34:55 FNo. Len. Field Value +11:34:55 ============================================================================ +11:34:55 [ 1] [ 4] [0800] +11:34:55 [ 7] [ 10] [0320044242] +11:34:55 [ 11] [ 6] [095021] +11:34:55 [ 37] [ 12] [57911095021] +11:34:55 [ 70] [ 3] [301] +11:34:55 ============================================================================ +11:34:55 + + +waiting on router queue for slot.... +11:34:55 Sending to : +11:34:55 ============================================================================ +11:34:55 ============================================================================ +11:34:55 Slot Id : <219> +11:34:55 Transaction Type : RESPONSE +11:34:55 Received From : +11:34:55 ============================================================================ +11:34:55 FNo. Len. Field Value +11:34:55 ============================================================================ +11:34:55 [ 1] [ 4] [0810] +11:34:55 [ 7] [ 10] [0320044242] +11:34:55 [ 11] [ 6] [095021] +11:34:55 [ 37] [ 12] [579110950210] +11:34:55 [ 39] [ 2] [00] +11:34:55 [ 70] [ 3] [810] +11:34:55 ============================================================================ +11:34:55 Calculate Source COMM Id = 1 +11:34:55 ============================================================================ +11:34:55 + + +waiting on router queue for slot.... +11:35:02 ============================================================================ +11:35:02 Slot Id : <245> +11:35:02 Transaction Type : REQUEST +11:35:02 Received From : +11:35:02 ============================================================================ +11:35:02 FNo. Len. Field Value +11:35:02 ============================================================================ +11:35:02 [ 1] [ 4] [0800] +11:35:02 [ 2] [ 5] [02531] +11:35:02 [ 3] [ 6] [579118] +11:35:02 [ 7] [ 10] [0320043502] +11:35:02 [ 11] [ 6] [807084] +11:35:02 [ 15] [ 10] [0320043502] +11:35:02 [ 37] [ 11] [57911807084] +11:35:02 [ 70] [ 3] [001] +11:35:02 ============================================================================ +11:35:02 + + +waiting on router queue for slot.... +11:35:02 ============================================================================ +11:35:02 Slot Id : <245> +11:35:02 Transaction Type : RESPONSE +11:35:02 Received From : +11:35:02 ============================================================================ +11:35:02 FNo. Len. Field Value +11:35:02 ============================================================================ +11:35:02 [ 1] [ 4] [0810] +11:35:02 [ 7] [ 10] [0320043502] +11:35:02 [ 11] [ 6] [807084] +11:35:02 [ 15] [ 4] [0320] +11:35:02 [ 37] [ 12] [57911807084] +11:35:02 [ 39] [ 2] [00] +11:35:02 [ 70] [ 3] [001] +11:35:02 ============================================================================ +11:35:02 Sending to : +11:35:02 ============================================================================ +11:35:02 + + +waiting on router queue for slot.... +11:35:05 ============================================================================ +11:35:05 Slot Id : <224> +11:35:05 Transaction Type : REQUEST +11:35:05 Received From : +11:35:05 ============================================================================ +11:35:05 FNo. Len. Field Value +11:35:05 ============================================================================ +11:35:05 [ 1] [ 4] [0800] +11:35:05 [ 7] [ 10] [0320043413] +11:35:05 [ 11] [ 6] [156123] +11:35:05 [ 70] [ 3] [301] +11:35:05 ============================================================================ +11:35:05 + + +waiting on router queue for slot.... +11:35:05 Sending to : +11:35:05 ============================================================================ +11:35:05 ============================================================================ +11:35:05 Slot Id : <224> +11:35:05 Transaction Type : RESPONSE +11:35:05 Received From : +11:35:05 ============================================================================ +11:35:05 FNo. Len. Field Value +11:35:05 ============================================================================ +11:35:05 [ 1] [ 4] [0810] +11:35:05 [ 7] [ 10] [0320043413] +11:35:05 [ 11] [ 6] [156123] +11:35:05 [ 39] [ 2] [00] +11:35:05 [ 70] [ 3] [301] +11:35:05 ============================================================================ +11:35:05 Calculate Source COMM Id = 2 +11:35:05 ============================================================================ +11:35:05 + + +waiting on router queue for slot.... +11:35:06 ============================================================================ +11:35:06 Slot Id : <287> +11:35:06 Transaction Type : REQUEST +11:35:06 Received From : +11:35:06 ============================================================================ +11:35:06 FNo. Len. Field Value +11:35:06 ============================================================================ +11:35:06 [ 1] [ 4] [0200] +11:35:06 [ 2] [ 16] [6213544001737623] +11:35:06 [ 3] [ 6] [011000] +11:35:06 [ 4] [ 12] [000030000000] +11:35:06 [ 7] [ 10] [0320114254] +11:35:06 [ 11] [ 6] [254852] +11:35:06 [ 12] [ 6] [114254] +11:35:06 [ 13] [ 4] [0320] +11:35:06 [ 14] [ 4] [4912] +11:35:06 [ 15] [ 4] [0320] +11:35:06 [ 18] [ 4] [6011] +11:35:06 [ 22] [ 3] [900] +11:35:06 [ 25] [ 2] [02] +11:35:06 [ 28] [ 9] [D00002000] +11:35:06 [ 32] [ 6] [220699] +11:35:06 [ 35] [ 32] [6213544001737623=491212013762707] +11:35:06 [ 37] [ 12] [507900094420] +11:35:06 [ 41] [ 8] [01000900] +11:35:06 [ 42] [ 15] [APTRA ] +11:35:06 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:35:06 [ 49] [ 3] [418] +11:35:06 [ 52] [ 16] [B745FD9D6E08E95E] +11:35:06 ============================================================================ +11:35:06 + + +waiting on router queue for slot.... +11:35:06 Sending to : +11:35:06 ============================================================================ +11:35:06 Sending to : +11:35:06 ============================================================================ +11:35:07 ============================================================================ +11:35:07 Slot Id : <287> +11:35:07 Transaction Type : REQUEST +11:35:07 Received From : +11:35:07 ============================================================================ +11:35:07 FNo. Len. Field Value +11:35:07 ============================================================================ +11:35:07 [ 1] [ 4] [0200] +11:35:07 [ 2] [ 16] [6213544001737623] +11:35:07 [ 3] [ 6] [011000] +11:35:07 [ 4] [ 12] [000030000000] +11:35:07 [ 7] [ 10] [0320114254] +11:35:07 [ 11] [ 6] [254852] +11:35:07 [ 12] [ 6] [114254] +11:35:07 [ 13] [ 4] [0320] +11:35:07 [ 14] [ 4] [4912] +11:35:07 [ 15] [ 4] [0320] +11:35:07 [ 18] [ 4] [6011] +11:35:07 [ 22] [ 3] [900] +11:35:07 [ 25] [ 2] [02] +11:35:07 [ 28] [ 9] [D00002000] +11:35:07 [ 32] [ 6] [220699] +11:35:07 [ 35] [ 32] [6213544001737623=491212013762707] +11:35:07 [ 37] [ 12] [507900094420] +11:35:07 [ 41] [ 8] [01000900] +11:35:07 [ 42] [ 15] [APTRA ] +11:35:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:35:07 [ 49] [ 3] [418] +11:35:07 [ 52] [ 16] [B745FD9D6E08E95E] +11:35:07 ============================================================================ +11:35:07 + + +waiting on router queue for slot.... +11:35:07 Sending to : +11:35:07 ============================================================================ +11:35:07 ============================================================================ +11:35:07 Slot Id : <287> +11:35:07 Transaction Type : REQUEST +11:35:07 Received From : +11:35:07 ============================================================================ +11:35:07 FNo. Len. Field Value +11:35:07 ============================================================================ +11:35:07 [ 1] [ 4] [0200] +11:35:07 [ 2] [ 16] [6213544001737623] +11:35:07 [ 3] [ 6] [011000] +11:35:07 [ 4] [ 12] [000030000000] +11:35:07 [ 7] [ 10] [0320114254] +11:35:07 [ 11] [ 6] [254852] +11:35:07 [ 12] [ 6] [114254] +11:35:07 [ 13] [ 4] [0320] +11:35:07 [ 14] [ 4] [4912] +11:35:07 [ 15] [ 4] [0320] +11:35:07 [ 18] [ 4] [6011] +11:35:07 [ 22] [ 3] [900] +11:35:07 [ 25] [ 2] [02] +11:35:07 [ 28] [ 9] [D00002000] +11:35:07 [ 32] [ 6] [220699] +11:35:07 [ 35] [ 32] [6213544001737623=491212013762707] +11:35:07 [ 37] [ 12] [507900094420] +11:35:07 [ 41] [ 8] [01000900] +11:35:07 [ 42] [ 15] [APTRA ] +11:35:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:35:07 [ 49] [ 3] [418] +11:35:07 [ 52] [ 16] [F6B7A269EBA7C63F] +11:35:07 ============================================================================ +11:35:07 + + +waiting on router queue for slot.... +11:35:07 Sending to : <0> +11:35:07 ============================================================================ +11:35:07 ============================================================================ +11:35:07 Slot Id : <287> +11:35:07 Transaction Type : RESPONSE +11:35:07 Received From : +11:35:07 ============================================================================ +11:35:07 FNo. Len. Field Value +11:35:07 ============================================================================ +11:35:07 [ 1] [ 4] [0210] +11:35:07 [ 2] [ 16] [6213544001737623] +11:35:07 [ 3] [ 6] [011000] +11:35:07 [ 4] [ 12] [000030000000] +11:35:07 [ 7] [ 10] [0320114254] +11:35:07 [ 11] [ 6] [254852] +11:35:07 [ 12] [ 6] [114254] +11:35:07 [ 13] [ 4] [0320] +11:35:07 [ 15] [ 4] [0320] +11:35:07 [ 18] [ 4] [6011] +11:35:07 [ 32] [ 6] [220699] +11:35:07 [ 35] [ 32] [6213544001737623=491212013762707] +11:35:07 [ 37] [ 12] [507900094420] +11:35:07 [ 38] [ 6] [254852] +11:35:07 [ 39] [ 2] [51] +11:35:07 [ 41] [ 8] [01000900] +11:35:07 [ 49] [ 3] [418] +11:35:07 [ 54] [ 40] [1001418C0000345635211002418C000034563521] +11:35:07 ============================================================================ +11:35:07 Sending to : +11:35:07 ============================================================================ +11:35:07 + + +waiting on router queue for slot.... +11:35:09 ============================================================================ +11:35:09 Slot Id : <287> +11:35:09 Transaction Type : RESPONSE +11:35:09 Received From : +11:35:09 ============================================================================ +11:35:09 FNo. Len. Field Value +11:35:09 ============================================================================ +11:35:09 [ 1] [ 4] [0210] +11:35:09 [ 2] [ 16] [6213544001737623] +11:35:09 [ 3] [ 6] [011000] +11:35:09 [ 4] [ 12] [000030000000] +11:35:09 [ 7] [ 10] [0320114254] +11:35:09 [ 11] [ 6] [254852] +11:35:09 [ 12] [ 6] [114254] +11:35:09 [ 13] [ 4] [0320] +11:35:09 [ 15] [ 4] [0320] +11:35:09 [ 18] [ 4] [6011] +11:35:09 [ 32] [ 6] [220699] +11:35:09 [ 35] [ 32] [6213544001737623=491212013762707] +11:35:09 [ 37] [ 12] [507900094420] +11:35:09 [ 38] [ 6] [254852] +11:35:09 [ 39] [ 2] [51] +11:35:09 [ 41] [ 8] [01000900] +11:35:09 [ 49] [ 3] [418] +11:35:09 [ 54] [ 40] [1001418C0000345635211002418C000034563521] +11:35:09 ============================================================================ +11:35:09 Calculate Source COMM Id = 1 +11:35:09 ============================================================================ +11:35:09 + + +waiting on router queue for slot.... +11:35:11 ============================================================================ +11:35:11 Slot Id : <290> +11:35:11 Transaction Type : REQUEST +11:35:11 Received From : +11:35:11 ============================================================================ +11:35:11 FNo. Len. Field Value +11:35:11 ============================================================================ +11:35:11 [ 1] [ 4] [0200] +11:35:11 [ 2] [ 16] [6688990040013987] +11:35:11 [ 3] [ 6] [011000] +11:35:11 [ 4] [ 12] [000020000000] +11:35:11 [ 7] [ 10] [0320113532] +11:35:11 [ 11] [ 6] [204770] +11:35:11 [ 12] [ 6] [111915] +11:35:11 [ 13] [ 4] [0320] +11:35:11 [ 14] [ 4] [9710] +11:35:11 [ 15] [ 4] [0320] +11:35:11 [ 18] [ 4] [6011] +11:35:11 [ 19] [ 3] [418] +11:35:11 [ 22] [ 3] [021] +11:35:11 [ 25] [ 2] [01] +11:35:11 [ 28] [ 9] [D00002000] +11:35:11 [ 32] [ 6] [198901] +11:35:11 [ 35] [ 37] [6688990040013987=97101261960745300000] +11:35:11 [ 37] [ 12] [507911204770] +11:35:11 [ 41] [ 8] [01529023] +11:35:11 [ 42] [ 15] [000000041529023] +11:35:11 [ 43] [ 40] [JDB ATM LAO TOBACCO VN ] +11:35:11 [ 49] [ 3] [418] +11:35:11 [ 52] [ 16] [73C1A121E43DA427] +11:35:11 ============================================================================ +11:35:11 + + +waiting on router queue for slot.... +11:35:11 Sending to : +11:35:11 ============================================================================ +11:35:11 Sending to : +11:35:11 ============================================================================ +11:35:12 ============================================================================ +11:35:12 Slot Id : <290> +11:35:12 Transaction Type : REQUEST +11:35:12 Received From : +11:35:12 ============================================================================ +11:35:12 FNo. Len. Field Value +11:35:12 ============================================================================ +11:35:12 [ 1] [ 4] [0200] +11:35:12 [ 2] [ 16] [6688990040013987] +11:35:12 [ 3] [ 6] [011000] +11:35:12 [ 4] [ 12] [000020000000] +11:35:12 [ 7] [ 10] [0320113532] +11:35:12 [ 11] [ 6] [204770] +11:35:12 [ 12] [ 6] [111915] +11:35:12 [ 13] [ 4] [0320] +11:35:12 [ 14] [ 4] [9710] +11:35:12 [ 15] [ 4] [0320] +11:35:12 [ 18] [ 4] [6011] +11:35:12 [ 19] [ 3] [418] +11:35:12 [ 22] [ 3] [021] +11:35:12 [ 25] [ 2] [01] +11:35:12 [ 28] [ 9] [D00002000] +11:35:12 [ 32] [ 6] [198901] +11:35:12 [ 35] [ 37] [6688990040013987=97101261960745300000] +11:35:12 [ 37] [ 12] [507911204770] +11:35:12 [ 41] [ 8] [01529023] +11:35:12 [ 42] [ 15] [000000041529023] +11:35:12 [ 43] [ 40] [JDB ATM LAO TOBACCO VN ] +11:35:12 [ 49] [ 3] [418] +11:35:12 [ 52] [ 16] [73C1A121E43DA427] +11:35:12 ============================================================================ +11:35:12 + + +waiting on router queue for slot.... +11:35:12 Sending to : +11:35:12 ============================================================================ +11:35:12 ============================================================================ +11:35:12 Slot Id : <290> +11:35:12 Transaction Type : REQUEST +11:35:12 Received From : +11:35:12 ============================================================================ +11:35:12 FNo. Len. Field Value +11:35:12 ============================================================================ +11:35:12 [ 1] [ 4] [0200] +11:35:12 [ 2] [ 16] [6688990040013987] +11:35:12 [ 3] [ 6] [011000] +11:35:12 [ 4] [ 12] [000020000000] +11:35:12 [ 7] [ 10] [0320113532] +11:35:12 [ 11] [ 6] [204770] +11:35:12 [ 12] [ 6] [111915] +11:35:12 [ 13] [ 4] [0320] +11:35:12 [ 14] [ 4] [9710] +11:35:12 [ 15] [ 4] [0320] +11:35:12 [ 18] [ 4] [6011] +11:35:12 [ 19] [ 3] [418] +11:35:12 [ 22] [ 3] [021] +11:35:12 [ 25] [ 2] [01] +11:35:12 [ 28] [ 9] [D00002000] +11:35:12 [ 32] [ 6] [198901] +11:35:12 [ 35] [ 37] [6688990040013987=97101261960745300000] +11:35:12 [ 37] [ 12] [507911204770] +11:35:12 [ 41] [ 8] [01529023] +11:35:12 [ 42] [ 15] [000000041529023] +11:35:12 [ 43] [ 40] [JDB ATM LAO TOBACCO VN ] +11:35:12 [ 49] [ 3] [418] +11:35:12 [ 52] [ 16] [26B682963DCBC21A] +11:35:12 ============================================================================ +11:35:12 + + +waiting on router queue for slot.... +11:35:12 Sending to : <4> +11:35:12 ============================================================================ +11:35:13 ============================================================================ +11:35:13 Slot Id : <290> +11:35:13 Transaction Type : RESPONSE +11:35:13 Received From : +11:35:13 ============================================================================ +11:35:13 FNo. Len. Field Value +11:35:13 ============================================================================ +11:35:13 [ 1] [ 4] [0210] +11:35:13 [ 2] [ 16] [6688990040013987] +11:35:13 [ 3] [ 6] [011000] +11:35:13 [ 4] [ 12] [000020000000] +11:35:13 [ 11] [ 6] [204770] +11:35:13 [ 12] [ 6] [111915] +11:35:13 [ 15] [ 4] [0320] +11:35:13 [ 18] [ 4] [6011] +11:35:13 [ 32] [ 6] [198901] +11:35:13 [ 35] [ 37] [6688990040013987=97101261960745300000] +11:35:13 [ 37] [ 12] [507911204770] +11:35:13 [ 38] [ 6] [876052] +11:35:13 [ 39] [ 2] [00] +11:35:13 [ 41] [ 8] [01529023] +11:35:13 [ 49] [ 3] [418] +11:35:13 [ 54] [ 20] [1002418C000256476648] +11:35:13 ============================================================================ +11:35:13 Sending to : +11:35:13 ============================================================================ +11:35:13 + + +waiting on router queue for slot.... +11:35:14 ============================================================================ +11:35:14 Slot Id : <290> +11:35:14 Transaction Type : RESPONSE +11:35:14 Received From : +11:35:14 ============================================================================ +11:35:14 FNo. Len. Field Value +11:35:14 ============================================================================ +11:35:14 [ 1] [ 4] [0210] +11:35:14 [ 2] [ 16] [6688990040013987] +11:35:14 [ 3] [ 6] [011000] +11:35:14 [ 4] [ 12] [000020000000] +11:35:14 [ 11] [ 6] [204770] +11:35:14 [ 12] [ 6] [111915] +11:35:14 [ 15] [ 4] [0320] +11:35:14 [ 18] [ 4] [6011] +11:35:14 [ 32] [ 6] [198901] +11:35:14 [ 35] [ 37] [6688990040013987=97101261960745300000] +11:35:14 [ 37] [ 12] [507911204770] +11:35:14 [ 38] [ 6] [876052] +11:35:14 [ 39] [ 2] [00] +11:35:14 [ 41] [ 8] [01529023] +11:35:14 [ 49] [ 3] [418] +11:35:14 [ 54] [ 20] [1002418C000256476648] +11:35:14 ============================================================================ +11:35:14 Calculate Source COMM Id = 5 +11:35:14 ============================================================================ +11:35:14 + + +waiting on router queue for slot.... +11:35:16 ============================================================================ +11:35:16 Slot Id : <277> +11:35:16 Transaction Type : REQUEST +11:35:16 Received From : +11:35:16 ============================================================================ +11:35:16 FNo. Len. Field Value +11:35:16 ============================================================================ +11:35:16 [ 1] [ 4] [0800] +11:35:16 [ 7] [ 10] [0320043424] +11:35:16 [ 11] [ 6] [156124] +11:35:16 [ 70] [ 3] [301] +11:35:16 ============================================================================ +11:35:16 + + +waiting on router queue for slot.... +11:35:16 Sending to : +11:35:16 ============================================================================ +11:35:16 ============================================================================ +11:35:16 Slot Id : <277> +11:35:16 Transaction Type : RESPONSE +11:35:16 Received From : +11:35:16 ============================================================================ +11:35:16 FNo. Len. Field Value +11:35:16 ============================================================================ +11:35:16 [ 1] [ 4] [0810] +11:35:16 [ 7] [ 10] [0320043424] +11:35:16 [ 11] [ 6] [156124] +11:35:16 [ 39] [ 2] [00] +11:35:16 [ 70] [ 3] [301] +11:35:16 ============================================================================ +11:35:16 Calculate Source COMM Id = 2 +11:35:16 ============================================================================ +11:35:16 + + +waiting on router queue for slot.... +11:35:28 ============================================================================ +11:35:28 Slot Id : <267> +11:35:28 Transaction Type : REQUEST +11:35:28 Received From : +11:35:28 ============================================================================ +11:35:28 FNo. Len. Field Value +11:35:28 ============================================================================ +11:35:28 [ 1] [ 4] [0800] +11:35:28 [ 7] [ 10] [0320043436] +11:35:28 [ 11] [ 6] [156125] +11:35:28 [ 70] [ 3] [301] +11:35:28 ============================================================================ +11:35:28 + + +waiting on router queue for slot.... +11:35:28 Sending to : +11:35:28 ============================================================================ +11:35:28 ============================================================================ +11:35:28 Slot Id : <267> +11:35:28 Transaction Type : RESPONSE +11:35:28 Received From : +11:35:28 ============================================================================ +11:35:28 FNo. Len. Field Value +11:35:28 ============================================================================ +11:35:28 [ 1] [ 4] [0810] +11:35:28 [ 7] [ 10] [0320043436] +11:35:28 [ 11] [ 6] [156125] +11:35:28 [ 39] [ 2] [00] +11:35:28 [ 70] [ 3] [301] +11:35:28 ============================================================================ +11:35:28 Calculate Source COMM Id = 2 +11:35:28 ============================================================================ +11:35:28 + + +waiting on router queue for slot.... +11:35:39 ============================================================================ +11:35:39 Slot Id : <271> +11:35:39 Transaction Type : REQUEST +11:35:39 Received From : +11:35:39 ============================================================================ +11:35:39 FNo. Len. Field Value +11:35:39 ============================================================================ +11:35:39 [ 1] [ 4] [0800] +11:35:39 [ 7] [ 10] [0320043447] +11:35:39 [ 11] [ 6] [156126] +11:35:39 [ 70] [ 3] [301] +11:35:39 ============================================================================ +11:35:39 + + +waiting on router queue for slot.... +11:35:39 Sending to : +11:35:39 ============================================================================ +11:35:39 ============================================================================ +11:35:39 Slot Id : <271> +11:35:39 Transaction Type : RESPONSE +11:35:39 Received From : +11:35:39 ============================================================================ +11:35:39 FNo. Len. Field Value +11:35:39 ============================================================================ +11:35:39 [ 1] [ 4] [0810] +11:35:39 [ 7] [ 10] [0320043447] +11:35:39 [ 11] [ 6] [156126] +11:35:39 [ 39] [ 2] [00] +11:35:39 [ 70] [ 3] [301] +11:35:39 ============================================================================ +11:35:39 Calculate Source COMM Id = 2 +11:35:39 ============================================================================ +11:35:39 + + +waiting on router queue for slot.... +11:35:40 ============================================================================ +11:35:40 Slot Id : <294> +11:35:40 Transaction Type : REQUEST +11:35:40 Received From : +11:35:40 ============================================================================ +11:35:40 FNo. Len. Field Value +11:35:40 ============================================================================ +11:35:40 [ 1] [ 4] [0200] +11:35:40 [ 2] [ 16] [6688990040069724] +11:35:40 [ 3] [ 6] [011000] +11:35:40 [ 4] [ 12] [000010000000] +11:35:40 [ 7] [ 10] [0320113536] +11:35:40 [ 11] [ 6] [731859] +11:35:40 [ 12] [ 6] [113536] +11:35:40 [ 13] [ 4] [0320] +11:35:40 [ 15] [ 4] [0320] +11:35:40 [ 18] [ 4] [6011] +11:35:40 [ 22] [ 3] [900] +11:35:40 [ 25] [ 2] [02] +11:35:40 [ 28] [ 9] [D00002000] +11:35:40 [ 32] [ 6] [621354] +11:35:40 [ 35] [ 37] [6688990040069724=98011261746057400000] +11:35:40 [ 37] [ 12] [507905335133] +11:35:40 [ 41] [ 8] [05004700] +11:35:40 [ 42] [ 15] [NATIVE ] +11:35:40 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +11:35:40 [ 49] [ 3] [418] +11:35:40 [ 52] [ 16] [316F2AA5F04E3EA3] +11:35:40 ============================================================================ +11:35:40 + + +waiting on router queue for slot.... +11:35:40 Sending to : +11:35:40 ============================================================================ +11:35:40 Sending to : +11:35:40 ============================================================================ +11:35:41 ============================================================================ +11:35:41 Slot Id : <294> +11:35:41 Transaction Type : REQUEST +11:35:41 Received From : +11:35:41 ============================================================================ +11:35:41 FNo. Len. Field Value +11:35:41 ============================================================================ +11:35:41 [ 1] [ 4] [0200] +11:35:41 [ 2] [ 16] [6688990040069724] +11:35:41 [ 3] [ 6] [011000] +11:35:41 [ 4] [ 12] [000010000000] +11:35:41 [ 7] [ 10] [0320113536] +11:35:41 [ 11] [ 6] [731859] +11:35:41 [ 12] [ 6] [113536] +11:35:41 [ 13] [ 4] [0320] +11:35:41 [ 15] [ 4] [0320] +11:35:41 [ 18] [ 4] [6011] +11:35:41 [ 22] [ 3] [900] +11:35:41 [ 25] [ 2] [02] +11:35:41 [ 28] [ 9] [D00002000] +11:35:41 [ 32] [ 6] [621354] +11:35:41 [ 35] [ 37] [6688990040069724=98011261746057400000] +11:35:41 [ 37] [ 12] [507905335133] +11:35:41 [ 41] [ 8] [05004700] +11:35:41 [ 42] [ 15] [NATIVE ] +11:35:41 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +11:35:41 [ 49] [ 3] [418] +11:35:41 [ 52] [ 16] [316F2AA5F04E3EA3] +11:35:41 ============================================================================ +11:35:41 + + +waiting on router queue for slot.... +11:35:41 Sending to : +11:35:41 ============================================================================ +11:35:41 ============================================================================ +11:35:41 Slot Id : <294> +11:35:41 Transaction Type : REQUEST +11:35:41 Received From : +11:35:41 ============================================================================ +11:35:41 FNo. Len. Field Value +11:35:41 ============================================================================ +11:35:41 [ 1] [ 4] [0200] +11:35:41 [ 2] [ 16] [6688990040069724] +11:35:41 [ 3] [ 6] [011000] +11:35:41 [ 4] [ 12] [000010000000] +11:35:41 [ 7] [ 10] [0320113536] +11:35:41 [ 11] [ 6] [731859] +11:35:41 [ 12] [ 6] [113536] +11:35:41 [ 13] [ 4] [0320] +11:35:41 [ 15] [ 4] [0320] +11:35:41 [ 18] [ 4] [6011] +11:35:41 [ 22] [ 3] [900] +11:35:41 [ 25] [ 2] [02] +11:35:41 [ 28] [ 9] [D00002000] +11:35:41 [ 32] [ 6] [621354] +11:35:41 [ 35] [ 37] [6688990040069724=98011261746057400000] +11:35:41 [ 37] [ 12] [507905335133] +11:35:41 [ 41] [ 8] [05004700] +11:35:41 [ 42] [ 15] [NATIVE ] +11:35:41 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +11:35:41 [ 49] [ 3] [418] +11:35:41 [ 52] [ 16] [BFFA332F6EAC7645] +11:35:41 ============================================================================ +11:35:41 + + +waiting on router queue for slot.... +11:35:41 Sending to : <4> +11:35:41 ============================================================================ +11:35:42 ============================================================================ +11:35:42 Slot Id : <294> +11:35:42 Transaction Type : RESPONSE +11:35:42 Received From : +11:35:42 ============================================================================ +11:35:42 FNo. Len. Field Value +11:35:42 ============================================================================ +11:35:42 [ 1] [ 4] [0210] +11:35:42 [ 2] [ 16] [6688990040069724] +11:35:42 [ 3] [ 6] [011000] +11:35:42 [ 4] [ 12] [000010000000] +11:35:42 [ 11] [ 6] [731859] +11:35:42 [ 12] [ 6] [113536] +11:35:42 [ 15] [ 4] [0320] +11:35:42 [ 18] [ 4] [6011] +11:35:42 [ 32] [ 6] [621354] +11:35:42 [ 35] [ 37] [6688990040069724=98011261746057400000] +11:35:42 [ 37] [ 12] [507905335133] +11:35:42 [ 38] [ 6] [862063] +11:35:42 [ 39] [ 2] [00] +11:35:42 [ 41] [ 8] [05004700] +11:35:42 [ 49] [ 3] [418] +11:35:42 [ 54] [ 20] [1002418C000027673973] +11:35:42 ============================================================================ +11:35:42 Sending to : +11:35:42 ============================================================================ +11:35:42 + + +waiting on router queue for slot.... +11:35:42 ============================================================================ +11:35:42 Slot Id : <236> +11:35:42 Transaction Type : REQUEST +11:35:42 Received From : +11:35:42 ============================================================================ +11:35:42 FNo. Len. Field Value +11:35:42 ============================================================================ +11:35:42 [ 1] [ 4] [0200] +11:35:42 [ 2] [ 16] [6213541000320542] +11:35:42 [ 3] [ 6] [010000] +11:35:42 [ 4] [ 12] [000100000000] +11:35:42 [ 7] [ 10] [0320043450] +11:35:42 [ 11] [ 6] [268579] +11:35:42 [ 12] [ 6] [113450] +11:35:42 [ 13] [ 4] [0320] +11:35:42 [ 14] [ 4] [4912] +11:35:42 [ 15] [ 4] [0320] +11:35:42 [ 18] [ 4] [6011] +11:35:42 [ 19] [ 3] [418] +11:35:42 [ 22] [ 3] [021] +11:35:42 [ 25] [ 2] [01] +11:35:42 [ 28] [ 9] [D00002000] +11:35:42 [ 32] [ 6] [180893] +11:35:42 [ 35] [ 32] [6213541000320542=491212012054325] +11:35:42 [ 37] [ 12] [507904268579] +11:35:42 [ 41] [ 8] [0324BKDT] +11:35:42 [ 42] [ 15] [999999 ] +11:35:42 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:35:42 [ 49] [ 3] [418] +11:35:42 [ 52] [ 16] [CF8B0EB5B4436A33] +11:35:42 ============================================================================ +11:35:42 + + +waiting on router queue for slot.... +11:35:42 Sending to : +11:35:42 ============================================================================ +11:35:42 Sending to : +11:35:42 ============================================================================ +11:35:43 ============================================================================ +11:35:43 Slot Id : <236> +11:35:43 Transaction Type : REQUEST +11:35:43 Received From : +11:35:43 ============================================================================ +11:35:43 FNo. Len. Field Value +11:35:43 ============================================================================ +11:35:43 [ 1] [ 4] [0200] +11:35:43 [ 2] [ 16] [6213541000320542] +11:35:43 [ 3] [ 6] [010000] +11:35:43 [ 4] [ 12] [000100000000] +11:35:43 [ 7] [ 10] [0320043450] +11:35:43 [ 11] [ 6] [268579] +11:35:43 [ 12] [ 6] [113450] +11:35:43 [ 13] [ 4] [0320] +11:35:43 [ 14] [ 4] [4912] +11:35:43 [ 15] [ 4] [0320] +11:35:43 [ 18] [ 4] [6011] +11:35:43 [ 19] [ 3] [418] +11:35:43 [ 22] [ 3] [021] +11:35:43 [ 25] [ 2] [01] +11:35:43 [ 28] [ 9] [D00002000] +11:35:43 [ 32] [ 6] [180893] +11:35:43 [ 35] [ 32] [6213541000320542=491212012054325] +11:35:43 [ 37] [ 12] [507904268579] +11:35:43 [ 41] [ 8] [0324BKDT] +11:35:43 [ 42] [ 15] [999999 ] +11:35:43 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:35:43 [ 49] [ 3] [418] +11:35:43 [ 52] [ 16] [CF8B0EB5B4436A33] +11:35:43 ============================================================================ +11:35:43 + + +waiting on router queue for slot.... +11:35:43 Sending to : +11:35:43 ============================================================================ +11:35:43 ============================================================================ +11:35:43 Slot Id : <236> +11:35:43 Transaction Type : REQUEST +11:35:43 Received From : +11:35:43 ============================================================================ +11:35:43 FNo. Len. Field Value +11:35:43 ============================================================================ +11:35:43 [ 1] [ 4] [0200] +11:35:43 [ 2] [ 16] [6213541000320542] +11:35:43 [ 3] [ 6] [010000] +11:35:43 [ 4] [ 12] [000100000000] +11:35:43 [ 7] [ 10] [0320043450] +11:35:43 [ 11] [ 6] [268579] +11:35:43 [ 12] [ 6] [113450] +11:35:43 [ 13] [ 4] [0320] +11:35:43 [ 14] [ 4] [4912] +11:35:43 [ 15] [ 4] [0320] +11:35:43 [ 18] [ 4] [6011] +11:35:43 [ 19] [ 3] [418] +11:35:43 [ 22] [ 3] [021] +11:35:43 [ 25] [ 2] [01] +11:35:43 [ 28] [ 9] [D00002000] +11:35:43 [ 32] [ 6] [180893] +11:35:43 [ 35] [ 32] [6213541000320542=491212012054325] +11:35:43 [ 37] [ 12] [507904268579] +11:35:43 [ 41] [ 8] [0324BKDT] +11:35:43 [ 42] [ 15] [999999 ] +11:35:43 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:35:43 [ 49] [ 3] [418] +11:35:43 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:35:43 ============================================================================ +11:35:43 + + +waiting on router queue for slot.... +11:35:43 Sending to : <0> +11:35:43 ============================================================================ +11:35:43 ============================================================================ +11:35:43 Slot Id : <294> +11:35:43 Transaction Type : RESPONSE +11:35:43 Received From : +11:35:43 ============================================================================ +11:35:43 FNo. Len. Field Value +11:35:43 ============================================================================ +11:35:43 [ 1] [ 4] [0210] +11:35:43 [ 2] [ 16] [6688990040069724] +11:35:43 [ 3] [ 6] [011000] +11:35:43 [ 4] [ 12] [000010000000] +11:35:43 [ 11] [ 6] [731859] +11:35:43 [ 12] [ 6] [113536] +11:35:43 [ 15] [ 4] [0320] +11:35:43 [ 18] [ 4] [6011] +11:35:43 [ 32] [ 6] [621354] +11:35:43 [ 35] [ 37] [6688990040069724=98011261746057400000] +11:35:43 [ 37] [ 12] [507905335133] +11:35:43 [ 38] [ 6] [862063] +11:35:43 [ 39] [ 2] [00] +11:35:43 [ 41] [ 8] [05004700] +11:35:43 [ 49] [ 3] [418] +11:35:43 [ 54] [ 20] [1002418C000027673973] +11:35:43 ============================================================================ +11:35:43 Calculate Source COMM Id = 0 +11:35:43 ============================================================================ +11:35:43 + + +waiting on router queue for slot.... +11:35:44 ============================================================================ +11:35:44 Slot Id : <236> +11:35:44 Transaction Type : RESPONSE +11:35:44 Received From : +11:35:44 ============================================================================ +11:35:44 FNo. Len. Field Value +11:35:44 ============================================================================ +11:35:44 [ 1] [ 4] [0210] +11:35:44 [ 2] [ 16] [6213541000320542] +11:35:44 [ 3] [ 6] [010000] +11:35:44 [ 4] [ 12] [000100000000] +11:35:44 [ 7] [ 10] [0320043450] +11:35:44 [ 11] [ 6] [268579] +11:35:44 [ 12] [ 6] [113450] +11:35:44 [ 13] [ 4] [0320] +11:35:44 [ 15] [ 4] [0320] +11:35:44 [ 18] [ 4] [6011] +11:35:44 [ 19] [ 3] [418] +11:35:44 [ 32] [ 6] [180893] +11:35:44 [ 35] [ 32] [6213541000320542=491212012054325] +11:35:44 [ 37] [ 12] [507904268579] +11:35:44 [ 38] [ 6] [030162] +11:35:44 [ 39] [ 2] [00] +11:35:44 [ 41] [ 8] [0324BKDT] +11:35:44 [ 49] [ 3] [418] +11:35:44 [ 54] [ 40] [0001418C0017912349510002418C001791234951] +11:35:44 ============================================================================ +11:35:44 Sending to : +11:35:44 ============================================================================ +11:35:44 + + +waiting on router queue for slot.... +11:35:45 ============================================================================ +11:35:45 Slot Id : <236> +11:35:45 Transaction Type : RESPONSE +11:35:45 Received From : +11:35:45 ============================================================================ +11:35:45 FNo. Len. Field Value +11:35:45 ============================================================================ +11:35:45 [ 1] [ 4] [0210] +11:35:45 [ 2] [ 16] [6213541000320542] +11:35:45 [ 3] [ 6] [010000] +11:35:45 [ 4] [ 12] [000100000000] +11:35:45 [ 7] [ 10] [0320043450] +11:35:45 [ 11] [ 6] [268579] +11:35:45 [ 12] [ 6] [113450] +11:35:45 [ 13] [ 4] [0320] +11:35:45 [ 15] [ 4] [0320] +11:35:45 [ 18] [ 4] [6011] +11:35:45 [ 19] [ 3] [418] +11:35:45 [ 32] [ 6] [180893] +11:35:45 [ 35] [ 32] [6213541000320542=491212012054325] +11:35:45 [ 37] [ 12] [507904268579] +11:35:45 [ 38] [ 6] [030162] +11:35:45 [ 39] [ 2] [00] +11:35:45 [ 41] [ 8] [0324BKDT] +11:35:45 [ 49] [ 3] [418] +11:35:45 [ 54] [ 40] [0001418C0017912349510002418C001791234951] +11:35:45 ============================================================================ +11:35:45 Calculate Source COMM Id = 2 +11:35:45 ============================================================================ +11:35:45 + + +waiting on router queue for slot.... +11:35:48 ============================================================================ +11:35:48 Slot Id : <217> +11:35:48 Transaction Type : REQUEST +11:35:48 Received From : +11:35:48 ============================================================================ +11:35:48 FNo. Len. Field Value +11:35:48 ============================================================================ +11:35:48 [ 1] [ 4] [0200] +11:35:48 [ 2] [ 16] [6213545000819734] +11:35:48 [ 3] [ 6] [011000] +11:35:48 [ 4] [ 12] [000030000000] +11:35:48 [ 7] [ 10] [0320114336] +11:35:48 [ 11] [ 6] [251173] +11:35:48 [ 12] [ 6] [114336] +11:35:48 [ 13] [ 4] [0320] +11:35:48 [ 14] [ 4] [4912] +11:35:48 [ 15] [ 4] [0320] +11:35:48 [ 18] [ 4] [6011] +11:35:48 [ 22] [ 3] [900] +11:35:48 [ 25] [ 2] [02] +11:35:48 [ 28] [ 9] [D00002000] +11:35:48 [ 32] [ 6] [220699] +11:35:48 [ 35] [ 32] [6213545000819734=491212011973504] +11:35:48 [ 37] [ 12] [507900336171] +11:35:48 [ 41] [ 8] [01001900] +11:35:48 [ 42] [ 15] [APTRA ] +11:35:48 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:35:48 [ 49] [ 3] [418] +11:35:48 [ 52] [ 16] [2AB2845AB15C633A] +11:35:48 ============================================================================ +11:35:48 + + +waiting on router queue for slot.... +11:35:48 Sending to : +11:35:48 ============================================================================ +11:35:48 Sending to : +11:35:48 ============================================================================ +11:35:49 ============================================================================ +11:35:49 Slot Id : <217> +11:35:49 Transaction Type : REQUEST +11:35:49 Received From : +11:35:49 ============================================================================ +11:35:49 FNo. Len. Field Value +11:35:49 ============================================================================ +11:35:49 [ 1] [ 4] [0200] +11:35:49 [ 2] [ 16] [6213545000819734] +11:35:49 [ 3] [ 6] [011000] +11:35:49 [ 4] [ 12] [000030000000] +11:35:49 [ 7] [ 10] [0320114336] +11:35:49 [ 11] [ 6] [251173] +11:35:49 [ 12] [ 6] [114336] +11:35:49 [ 13] [ 4] [0320] +11:35:49 [ 14] [ 4] [4912] +11:35:49 [ 15] [ 4] [0320] +11:35:49 [ 18] [ 4] [6011] +11:35:49 [ 22] [ 3] [900] +11:35:49 [ 25] [ 2] [02] +11:35:49 [ 28] [ 9] [D00002000] +11:35:49 [ 32] [ 6] [220699] +11:35:49 [ 35] [ 32] [6213545000819734=491212011973504] +11:35:49 [ 37] [ 12] [507900336171] +11:35:49 [ 41] [ 8] [01001900] +11:35:49 [ 42] [ 15] [APTRA ] +11:35:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:35:49 [ 49] [ 3] [418] +11:35:49 [ 52] [ 16] [2AB2845AB15C633A] +11:35:49 ============================================================================ +11:35:49 + + +waiting on router queue for slot.... +11:35:49 Sending to : +11:35:49 ============================================================================ +11:35:49 ============================================================================ +11:35:49 Slot Id : <217> +11:35:49 Transaction Type : REQUEST +11:35:49 Received From : +11:35:49 ============================================================================ +11:35:49 FNo. Len. Field Value +11:35:49 ============================================================================ +11:35:49 [ 1] [ 4] [0200] +11:35:49 [ 2] [ 16] [6213545000819734] +11:35:49 [ 3] [ 6] [011000] +11:35:49 [ 4] [ 12] [000030000000] +11:35:49 [ 7] [ 10] [0320114336] +11:35:49 [ 11] [ 6] [251173] +11:35:49 [ 12] [ 6] [114336] +11:35:49 [ 13] [ 4] [0320] +11:35:49 [ 14] [ 4] [4912] +11:35:49 [ 15] [ 4] [0320] +11:35:49 [ 18] [ 4] [6011] +11:35:49 [ 22] [ 3] [900] +11:35:49 [ 25] [ 2] [02] +11:35:49 [ 28] [ 9] [D00002000] +11:35:49 [ 32] [ 6] [220699] +11:35:49 [ 35] [ 32] [6213545000819734=491212011973504] +11:35:49 [ 37] [ 12] [507900336171] +11:35:49 [ 41] [ 8] [01001900] +11:35:49 [ 42] [ 15] [APTRA ] +11:35:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:35:49 [ 49] [ 3] [418] +11:35:49 [ 52] [ 16] [CF3A45E9EDCE0B8E] +11:35:49 ============================================================================ +11:35:49 + + +waiting on router queue for slot.... +11:35:49 Sending to : <0> +11:35:49 ============================================================================ +11:35:49 ============================================================================ +11:35:49 Slot Id : <217> +11:35:49 Transaction Type : RESPONSE +11:35:49 Received From : +11:35:49 ============================================================================ +11:35:49 FNo. Len. Field Value +11:35:49 ============================================================================ +11:35:49 [ 1] [ 4] [0210] +11:35:49 [ 2] [ 16] [6213545000819734] +11:35:49 [ 3] [ 6] [011000] +11:35:49 [ 4] [ 12] [000030000000] +11:35:49 [ 7] [ 10] [0320114336] +11:35:49 [ 11] [ 6] [251173] +11:35:49 [ 12] [ 6] [114336] +11:35:49 [ 13] [ 4] [0320] +11:35:49 [ 15] [ 4] [0320] +11:35:49 [ 18] [ 4] [6011] +11:35:49 [ 32] [ 6] [220699] +11:35:49 [ 35] [ 32] [6213545000819734=491212011973504] +11:35:49 [ 37] [ 12] [507900336171] +11:35:49 [ 38] [ 6] [149379] +11:35:49 [ 39] [ 2] [00] +11:35:49 [ 41] [ 8] [01001900] +11:35:49 [ 49] [ 3] [418] +11:35:49 [ 54] [ 40] [1001418C0000579464871002418C000057946487] +11:35:49 ============================================================================ +11:35:49 Sending to : +11:35:49 ============================================================================ +11:35:49 + + +waiting on router queue for slot.... +11:35:51 ============================================================================ +11:35:51 Slot Id : <217> +11:35:51 Transaction Type : RESPONSE +11:35:51 Received From : +11:35:51 ============================================================================ +11:35:51 FNo. Len. Field Value +11:35:51 ============================================================================ +11:35:51 [ 1] [ 4] [0210] +11:35:51 [ 2] [ 16] [6213545000819734] +11:35:51 [ 3] [ 6] [011000] +11:35:51 [ 4] [ 12] [000030000000] +11:35:51 [ 7] [ 10] [0320114336] +11:35:51 [ 11] [ 6] [251173] +11:35:51 [ 12] [ 6] [114336] +11:35:51 [ 13] [ 4] [0320] +11:35:51 [ 15] [ 4] [0320] +11:35:51 [ 18] [ 4] [6011] +11:35:51 [ 32] [ 6] [220699] +11:35:51 [ 35] [ 32] [6213545000819734=491212011973504] +11:35:51 [ 37] [ 12] [507900336171] +11:35:51 [ 38] [ 6] [149379] +11:35:51 [ 39] [ 2] [00] +11:35:51 [ 41] [ 8] [01001900] +11:35:51 [ 49] [ 3] [418] +11:35:51 [ 54] [ 40] [1001418C0000579464871002418C000057946487] +11:35:51 ============================================================================ +11:35:51 Calculate Source COMM Id = 1 +11:35:51 ============================================================================ +11:35:51 + + +waiting on router queue for slot.... +11:36:00 ============================================================================ +11:36:00 Slot Id : <293> +11:36:00 Transaction Type : REQUEST +11:36:00 Received From : +11:36:00 ============================================================================ +11:36:00 FNo. Len. Field Value +11:36:00 ============================================================================ +11:36:00 [ 1] [ 4] [0800] +11:36:00 [ 7] [ 10] [0320043507] +11:36:00 [ 11] [ 6] [156127] +11:36:00 [ 70] [ 3] [301] +11:36:00 ============================================================================ +11:36:00 + + +waiting on router queue for slot.... +11:36:00 Sending to : +11:36:00 ============================================================================ +11:36:00 ============================================================================ +11:36:00 Slot Id : <293> +11:36:00 Transaction Type : RESPONSE +11:36:00 Received From : +11:36:00 ============================================================================ +11:36:00 FNo. Len. Field Value +11:36:00 ============================================================================ +11:36:00 [ 1] [ 4] [0810] +11:36:00 [ 7] [ 10] [0320043507] +11:36:00 [ 11] [ 6] [156127] +11:36:00 [ 39] [ 2] [00] +11:36:00 [ 70] [ 3] [301] +11:36:00 ============================================================================ +11:36:00 Calculate Source COMM Id = 2 +11:36:00 ============================================================================ +11:36:00 + + +waiting on router queue for slot.... +11:36:03 ============================================================================ +11:36:03 Slot Id : <278> +11:36:03 Transaction Type : REQUEST +11:36:03 Received From : +11:36:03 ============================================================================ +11:36:03 FNo. Len. Field Value +11:36:03 ============================================================================ +11:36:03 [ 1] [ 4] [0200] +11:36:03 [ 2] [ 16] [6213541000119936] +11:36:03 [ 3] [ 6] [010000] +11:36:03 [ 4] [ 12] [000080000000] +11:36:03 [ 7] [ 10] [0320113354] +11:36:03 [ 11] [ 6] [941653] +11:36:03 [ 12] [ 6] [113354] +11:36:03 [ 13] [ 4] [0320] +11:36:03 [ 15] [ 4] [0320] +11:36:03 [ 18] [ 4] [6011] +11:36:03 [ 19] [ 3] [418] +11:36:03 [ 22] [ 3] [021] +11:36:03 [ 25] [ 2] [01] +11:36:03 [ 28] [ 9] [D00002000] +11:36:03 [ 32] [ 6] [668899] +11:36:03 [ 35] [ 32] [6213541000119936=491212011993560] +11:36:03 [ 37] [ 12] [507901963503] +11:36:03 [ 41] [ 8] [03020019] +11:36:03 [ 42] [ 15] [APT ] +11:36:03 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:36:03 [ 49] [ 3] [418] +11:36:03 [ 52] [ 16] [F12E25FDFF2B95EA] +11:36:03 ============================================================================ +11:36:03 + + +waiting on router queue for slot.... +11:36:03 Sending to : +11:36:03 ============================================================================ +11:36:03 Sending to : +11:36:03 ============================================================================ +11:36:03 ============================================================================ +11:36:03 Slot Id : <278> +11:36:03 Transaction Type : REQUEST +11:36:03 Received From : +11:36:03 ============================================================================ +11:36:03 FNo. Len. Field Value +11:36:03 ============================================================================ +11:36:03 [ 1] [ 4] [0200] +11:36:03 [ 2] [ 16] [6213541000119936] +11:36:03 [ 3] [ 6] [010000] +11:36:03 [ 4] [ 12] [000080000000] +11:36:03 [ 7] [ 10] [0320113354] +11:36:03 [ 11] [ 6] [941653] +11:36:03 [ 12] [ 6] [113354] +11:36:03 [ 13] [ 4] [0320] +11:36:03 [ 15] [ 4] [0320] +11:36:03 [ 18] [ 4] [6011] +11:36:03 [ 19] [ 3] [418] +11:36:03 [ 22] [ 3] [021] +11:36:03 [ 25] [ 2] [01] +11:36:03 [ 28] [ 9] [D00002000] +11:36:03 [ 32] [ 6] [668899] +11:36:03 [ 35] [ 32] [6213541000119936=491212011993560] +11:36:03 [ 37] [ 12] [507901963503] +11:36:03 [ 41] [ 8] [03020019] +11:36:03 [ 42] [ 15] [APT ] +11:36:03 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:36:03 [ 49] [ 3] [418] +11:36:03 [ 52] [ 16] [F12E25FDFF2B95EA] +11:36:03 ============================================================================ +11:36:03 + + +waiting on router queue for slot.... +11:36:03 Sending to : +11:36:03 ============================================================================ +11:36:03 ============================================================================ +11:36:03 Slot Id : <278> +11:36:03 Transaction Type : REQUEST +11:36:03 Received From : +11:36:03 ============================================================================ +11:36:03 FNo. Len. Field Value +11:36:03 ============================================================================ +11:36:03 [ 1] [ 4] [0200] +11:36:03 [ 2] [ 16] [6213541000119936] +11:36:03 [ 3] [ 6] [010000] +11:36:03 [ 4] [ 12] [000080000000] +11:36:03 [ 7] [ 10] [0320113354] +11:36:03 [ 11] [ 6] [941653] +11:36:03 [ 12] [ 6] [113354] +11:36:03 [ 13] [ 4] [0320] +11:36:03 [ 15] [ 4] [0320] +11:36:03 [ 18] [ 4] [6011] +11:36:03 [ 19] [ 3] [418] +11:36:03 [ 22] [ 3] [021] +11:36:03 [ 25] [ 2] [01] +11:36:03 [ 28] [ 9] [D00002000] +11:36:03 [ 32] [ 6] [668899] +11:36:03 [ 35] [ 32] [6213541000119936=491212011993560] +11:36:03 [ 37] [ 12] [507901963503] +11:36:03 [ 41] [ 8] [03020019] +11:36:03 [ 42] [ 15] [APT ] +11:36:03 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:36:03 [ 49] [ 3] [418] +11:36:03 [ 52] [ 16] [302E25B293EBF614] +11:36:03 ============================================================================ +11:36:03 + + +waiting on router queue for slot.... +11:36:03 Sending to : <0> +11:36:03 ============================================================================ +11:36:04 ============================================================================ +11:36:04 Slot Id : <278> +11:36:04 Transaction Type : RESPONSE +11:36:04 Received From : +11:36:04 ============================================================================ +11:36:04 FNo. Len. Field Value +11:36:04 ============================================================================ +11:36:04 [ 1] [ 4] [0210] +11:36:04 [ 2] [ 16] [6213541000119936] +11:36:04 [ 3] [ 6] [010000] +11:36:04 [ 4] [ 12] [000080000000] +11:36:04 [ 7] [ 10] [0320113354] +11:36:04 [ 11] [ 6] [941653] +11:36:04 [ 12] [ 6] [113354] +11:36:04 [ 13] [ 4] [0320] +11:36:04 [ 15] [ 4] [0320] +11:36:04 [ 18] [ 4] [6011] +11:36:04 [ 19] [ 3] [418] +11:36:04 [ 32] [ 6] [668899] +11:36:04 [ 35] [ 32] [6213541000119936=491212011993560] +11:36:04 [ 37] [ 12] [507901963503] +11:36:04 [ 38] [ 6] [382263] +11:36:04 [ 39] [ 2] [00] +11:36:04 [ 41] [ 8] [03020019] +11:36:04 [ 49] [ 3] [418] +11:36:04 [ 54] [ 40] [0001418C0000178404610002418C000017840461] +11:36:04 ============================================================================ +11:36:04 Sending to : +11:36:04 ============================================================================ +11:36:04 + + +waiting on router queue for slot.... +11:36:04 ============================================================================ +11:36:04 Slot Id : <303> +11:36:04 Transaction Type : REQUEST +11:36:04 Received From : +11:36:04 ============================================================================ +11:36:04 FNo. Len. Field Value +11:36:04 ============================================================================ +11:36:04 [ 1] [ 4] [0800] +11:36:04 [ 2] [ 5] [02531] +11:36:04 [ 3] [ 6] [579118] +11:36:04 [ 7] [ 10] [0320043604] +11:36:04 [ 11] [ 6] [807085] +11:36:04 [ 15] [ 10] [0320043604] +11:36:04 [ 37] [ 11] [57911807085] +11:36:04 [ 70] [ 3] [001] +11:36:04 ============================================================================ +11:36:04 + + +waiting on router queue for slot.... +11:36:04 ============================================================================ +11:36:04 Slot Id : <303> +11:36:04 Transaction Type : RESPONSE +11:36:04 Received From : +11:36:04 ============================================================================ +11:36:04 FNo. Len. Field Value +11:36:04 ============================================================================ +11:36:04 [ 1] [ 4] [0810] +11:36:04 [ 7] [ 10] [0320043604] +11:36:04 [ 11] [ 6] [807085] +11:36:04 [ 15] [ 4] [0320] +11:36:04 [ 37] [ 12] [57911807085] +11:36:04 [ 39] [ 2] [00] +11:36:04 [ 70] [ 3] [001] +11:36:04 ============================================================================ +11:36:04 Sending to : +11:36:04 ============================================================================ +11:36:04 + + +waiting on router queue for slot.... +11:36:05 ============================================================================ +11:36:05 Slot Id : <278> +11:36:05 Transaction Type : RESPONSE +11:36:05 Received From : +11:36:05 ============================================================================ +11:36:05 FNo. Len. Field Value +11:36:05 ============================================================================ +11:36:05 [ 1] [ 4] [0210] +11:36:05 [ 2] [ 16] [6213541000119936] +11:36:05 [ 3] [ 6] [010000] +11:36:05 [ 4] [ 12] [000080000000] +11:36:05 [ 7] [ 10] [0320113354] +11:36:05 [ 11] [ 6] [941653] +11:36:05 [ 12] [ 6] [113354] +11:36:05 [ 13] [ 4] [0320] +11:36:05 [ 15] [ 4] [0320] +11:36:05 [ 18] [ 4] [6011] +11:36:05 [ 19] [ 3] [418] +11:36:05 [ 32] [ 6] [668899] +11:36:05 [ 35] [ 32] [6213541000119936=491212011993560] +11:36:05 [ 37] [ 12] [507901963503] +11:36:05 [ 38] [ 6] [382263] +11:36:05 [ 39] [ 2] [00] +11:36:05 [ 41] [ 8] [03020019] +11:36:05 [ 49] [ 3] [418] +11:36:05 [ 54] [ 40] [0001418C0000178404610002418C000017840461] +11:36:05 ============================================================================ +11:36:05 Calculate Source COMM Id = 4 +11:36:05 ============================================================================ +11:36:05 + + +waiting on router queue for slot.... +11:36:15 ============================================================================ +11:36:15 Slot Id : <298> +11:36:15 Transaction Type : REQUEST +11:36:15 Received From : +11:36:15 ============================================================================ +11:36:15 FNo. Len. Field Value +11:36:15 ============================================================================ +11:36:15 [ 1] [ 4] [0800] +11:36:15 [ 7] [ 10] [0320043523] +11:36:15 [ 11] [ 6] [156128] +11:36:15 [ 70] [ 3] [301] +11:36:15 ============================================================================ +11:36:15 + + +waiting on router queue for slot.... +11:36:15 Sending to : +11:36:15 ============================================================================ +11:36:15 ============================================================================ +11:36:15 Slot Id : <298> +11:36:15 Transaction Type : RESPONSE +11:36:15 Received From : +11:36:15 ============================================================================ +11:36:15 FNo. Len. Field Value +11:36:15 ============================================================================ +11:36:15 [ 1] [ 4] [0810] +11:36:15 [ 7] [ 10] [0320043523] +11:36:15 [ 11] [ 6] [156128] +11:36:15 [ 39] [ 2] [00] +11:36:15 [ 70] [ 3] [301] +11:36:15 ============================================================================ +11:36:15 Calculate Source COMM Id = 2 +11:36:15 ============================================================================ +11:36:15 + + +waiting on router queue for slot.... +11:36:15 ============================================================================ +11:36:15 Slot Id : <257> +11:36:15 Transaction Type : REQUEST +11:36:15 Received From : +11:36:15 ============================================================================ +11:36:15 FNo. Len. Field Value +11:36:15 ============================================================================ +11:36:15 [ 1] [ 4] [0800] +11:36:15 [ 7] [ 10] [0320113602] +11:36:15 [ 11] [ 6] [066041] +11:36:15 [ 37] [ 12] [507911066041] +11:36:15 [ 70] [ 3] [ ] +11:36:15 ============================================================================ +11:36:15 + + +waiting on router queue for slot.... +11:36:15 Sending to : +11:36:15 ============================================================================ +11:36:15 ============================================================================ +11:36:15 Slot Id : <257> +11:36:15 Transaction Type : RESPONSE +11:36:15 Received From : +11:36:15 ============================================================================ +11:36:15 FNo. Len. Field Value +11:36:15 ============================================================================ +11:36:15 [ 1] [ 4] [0810] +11:36:15 [ 7] [ 10] [0320113602] +11:36:15 [ 11] [ 6] [066041] +11:36:15 [ 37] [ 12] [507911066041] +11:36:15 [ 39] [ 2] [91] +11:36:15 [ 70] [ 3] [ ] +11:36:15 ============================================================================ +11:36:15 Calculate Source COMM Id = 3 +11:36:15 ============================================================================ +11:36:15 + + +waiting on router queue for slot.... +11:36:21 ============================================================================ +11:36:21 Slot Id : <299> +11:36:21 Transaction Type : REQUEST +11:36:21 Received From : +11:36:21 ============================================================================ +11:36:21 FNo. Len. Field Value +11:36:21 ============================================================================ +11:36:21 [ 1] [ 4] [0800] +11:36:21 [ 7] [ 10] [0320043412] +11:36:21 [ 11] [ 6] [079793] +11:36:21 [ 37] [ 12] [57911079793] +11:36:21 [ 70] [ 3] [301] +11:36:21 ============================================================================ +11:36:21 + + +waiting on router queue for slot.... +11:36:21 Sending to : +11:36:21 ============================================================================ +11:36:21 ============================================================================ +11:36:21 Slot Id : <299> +11:36:21 Transaction Type : RESPONSE +11:36:21 Received From : +11:36:21 ============================================================================ +11:36:21 FNo. Len. Field Value +11:36:21 ============================================================================ +11:36:21 [ 1] [ 4] [0810] +11:36:21 [ 7] [ 10] [0320043412] +11:36:21 [ 11] [ 6] [079793] +11:36:21 [ 37] [ 12] [579110797930] +11:36:21 [ 39] [ 2] [00] +11:36:21 [ 70] [ 3] [810] +11:36:21 ============================================================================ +11:36:21 Calculate Source COMM Id = 4 +11:36:21 ============================================================================ +11:36:21 + + +waiting on router queue for slot.... +11:36:26 ============================================================================ +11:36:26 Slot Id : <300> +11:36:26 Transaction Type : REQUEST +11:36:26 Received From : +11:36:26 ============================================================================ +11:36:26 FNo. Len. Field Value +11:36:26 ============================================================================ +11:36:26 [ 1] [ 4] [0800] +11:36:26 [ 7] [ 10] [0320043534] +11:36:26 [ 11] [ 6] [156129] +11:36:26 [ 70] [ 3] [301] +11:36:26 ============================================================================ +11:36:26 + + +waiting on router queue for slot.... +11:36:26 Sending to : +11:36:26 ============================================================================ +11:36:26 ============================================================================ +11:36:26 Slot Id : <300> +11:36:26 Transaction Type : RESPONSE +11:36:26 Received From : +11:36:26 ============================================================================ +11:36:26 FNo. Len. Field Value +11:36:26 ============================================================================ +11:36:26 [ 1] [ 4] [0810] +11:36:26 [ 7] [ 10] [0320043534] +11:36:26 [ 11] [ 6] [156129] +11:36:26 [ 39] [ 2] [00] +11:36:26 [ 70] [ 3] [301] +11:36:26 ============================================================================ +11:36:26 Calculate Source COMM Id = 2 +11:36:26 ============================================================================ +11:36:26 + + +waiting on router queue for slot.... +11:36:37 ============================================================================ +11:36:37 Slot Id : <295> +11:36:37 Transaction Type : REQUEST +11:36:37 Received From : +11:36:37 ============================================================================ +11:36:37 FNo. Len. Field Value +11:36:37 ============================================================================ +11:36:37 [ 1] [ 4] [0800] +11:36:37 [ 7] [ 10] [0320043545] +11:36:37 [ 11] [ 6] [156130] +11:36:37 [ 70] [ 3] [301] +11:36:37 ============================================================================ +11:36:37 + + +waiting on router queue for slot.... +11:36:37 Sending to : +11:36:37 ============================================================================ +11:36:37 ============================================================================ +11:36:37 Slot Id : <295> +11:36:37 Transaction Type : RESPONSE +11:36:37 Received From : +11:36:37 ============================================================================ +11:36:37 FNo. Len. Field Value +11:36:37 ============================================================================ +11:36:37 [ 1] [ 4] [0810] +11:36:37 [ 7] [ 10] [0320043545] +11:36:37 [ 11] [ 6] [156130] +11:36:37 [ 39] [ 2] [00] +11:36:37 [ 70] [ 3] [301] +11:36:37 ============================================================================ +11:36:37 Calculate Source COMM Id = 2 +11:36:37 ============================================================================ +11:36:37 + + +waiting on router queue for slot.... +11:36:38 ============================================================================ +11:36:38 Slot Id : <281> +11:36:38 Transaction Type : REQUEST +11:36:38 Received From : +11:36:38 ============================================================================ +11:36:38 FNo. Len. Field Value +11:36:38 ============================================================================ +11:36:38 [ 1] [ 4] [0200] +11:36:38 [ 2] [ 16] [6213541000320542] +11:36:38 [ 3] [ 6] [010000] +11:36:38 [ 4] [ 12] [000100000000] +11:36:38 [ 7] [ 10] [0320043546] +11:36:38 [ 11] [ 6] [268588] +11:36:38 [ 12] [ 6] [113546] +11:36:38 [ 13] [ 4] [0320] +11:36:38 [ 14] [ 4] [4912] +11:36:38 [ 15] [ 4] [0320] +11:36:38 [ 18] [ 4] [6011] +11:36:38 [ 19] [ 3] [418] +11:36:38 [ 22] [ 3] [021] +11:36:38 [ 25] [ 2] [01] +11:36:38 [ 28] [ 9] [D00002000] +11:36:38 [ 32] [ 6] [180893] +11:36:38 [ 35] [ 32] [6213541000320542=491212012054325] +11:36:38 [ 37] [ 12] [507904268588] +11:36:38 [ 41] [ 8] [0324BKDT] +11:36:38 [ 42] [ 15] [999999 ] +11:36:38 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:36:38 [ 49] [ 3] [418] +11:36:38 [ 52] [ 16] [CF8B0EB5B4436A33] +11:36:38 ============================================================================ +11:36:38 + + +waiting on router queue for slot.... +11:36:38 Sending to : +11:36:38 ============================================================================ +11:36:38 Sending to : +11:36:38 ============================================================================ +11:36:39 ============================================================================ +11:36:39 Slot Id : <281> +11:36:39 Transaction Type : REQUEST +11:36:39 Received From : +11:36:39 ============================================================================ +11:36:39 FNo. Len. Field Value +11:36:39 ============================================================================ +11:36:39 [ 1] [ 4] [0200] +11:36:39 [ 2] [ 16] [6213541000320542] +11:36:39 [ 3] [ 6] [010000] +11:36:39 [ 4] [ 12] [000100000000] +11:36:39 [ 7] [ 10] [0320043546] +11:36:39 [ 11] [ 6] [268588] +11:36:39 [ 12] [ 6] [113546] +11:36:39 [ 13] [ 4] [0320] +11:36:39 [ 14] [ 4] [4912] +11:36:39 [ 15] [ 4] [0320] +11:36:39 [ 18] [ 4] [6011] +11:36:39 [ 19] [ 3] [418] +11:36:39 [ 22] [ 3] [021] +11:36:39 [ 25] [ 2] [01] +11:36:39 [ 28] [ 9] [D00002000] +11:36:39 [ 32] [ 6] [180893] +11:36:39 [ 35] [ 32] [6213541000320542=491212012054325] +11:36:39 [ 37] [ 12] [507904268588] +11:36:39 [ 41] [ 8] [0324BKDT] +11:36:39 [ 42] [ 15] [999999 ] +11:36:39 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:36:39 [ 49] [ 3] [418] +11:36:39 [ 52] [ 16] [CF8B0EB5B4436A33] +11:36:39 ============================================================================ +11:36:39 + + +waiting on router queue for slot.... +11:36:39 Sending to : +11:36:39 ============================================================================ +11:36:39 ============================================================================ +11:36:39 Slot Id : <281> +11:36:39 Transaction Type : REQUEST +11:36:39 Received From : +11:36:39 ============================================================================ +11:36:39 FNo. Len. Field Value +11:36:39 ============================================================================ +11:36:39 [ 1] [ 4] [0200] +11:36:39 [ 2] [ 16] [6213541000320542] +11:36:39 [ 3] [ 6] [010000] +11:36:39 [ 4] [ 12] [000100000000] +11:36:39 [ 7] [ 10] [0320043546] +11:36:39 [ 11] [ 6] [268588] +11:36:39 [ 12] [ 6] [113546] +11:36:39 [ 13] [ 4] [0320] +11:36:39 [ 14] [ 4] [4912] +11:36:39 [ 15] [ 4] [0320] +11:36:39 [ 18] [ 4] [6011] +11:36:39 [ 19] [ 3] [418] +11:36:39 [ 22] [ 3] [021] +11:36:39 [ 25] [ 2] [01] +11:36:39 [ 28] [ 9] [D00002000] +11:36:39 [ 32] [ 6] [180893] +11:36:39 [ 35] [ 32] [6213541000320542=491212012054325] +11:36:39 [ 37] [ 12] [507904268588] +11:36:39 [ 41] [ 8] [0324BKDT] +11:36:39 [ 42] [ 15] [999999 ] +11:36:39 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:36:39 [ 49] [ 3] [418] +11:36:39 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:36:39 ============================================================================ +11:36:39 + + +waiting on router queue for slot.... +11:36:39 Sending to : <0> +11:36:39 ============================================================================ +11:36:39 ============================================================================ +11:36:39 Slot Id : <281> +11:36:39 Transaction Type : RESPONSE +11:36:39 Received From : +11:36:39 ============================================================================ +11:36:39 FNo. Len. Field Value +11:36:39 ============================================================================ +11:36:39 [ 1] [ 4] [0210] +11:36:39 [ 2] [ 16] [6213541000320542] +11:36:39 [ 3] [ 6] [010000] +11:36:39 [ 4] [ 12] [000100000000] +11:36:39 [ 7] [ 10] [0320043546] +11:36:39 [ 11] [ 6] [268588] +11:36:39 [ 12] [ 6] [113546] +11:36:39 [ 13] [ 4] [0320] +11:36:39 [ 15] [ 4] [0320] +11:36:39 [ 18] [ 4] [6011] +11:36:39 [ 19] [ 3] [418] +11:36:39 [ 32] [ 6] [180893] +11:36:39 [ 35] [ 32] [6213541000320542=491212012054325] +11:36:39 [ 37] [ 12] [507904268588] +11:36:39 [ 38] [ 6] [863774] +11:36:39 [ 39] [ 2] [00] +11:36:39 [ 41] [ 8] [0324BKDT] +11:36:39 [ 49] [ 3] [418] +11:36:39 [ 54] [ 40] [0001418C0016910349510002418C001691034951] +11:36:39 ============================================================================ +11:36:39 Sending to : +11:36:39 ============================================================================ +11:36:39 + + +waiting on router queue for slot.... +11:36:41 ============================================================================ +11:36:41 Slot Id : <281> +11:36:41 Transaction Type : RESPONSE +11:36:41 Received From : +11:36:41 ============================================================================ +11:36:41 FNo. Len. Field Value +11:36:41 ============================================================================ +11:36:41 [ 1] [ 4] [0210] +11:36:41 [ 2] [ 16] [6213541000320542] +11:36:41 [ 3] [ 6] [010000] +11:36:41 [ 4] [ 12] [000100000000] +11:36:41 [ 7] [ 10] [0320043546] +11:36:41 [ 11] [ 6] [268588] +11:36:41 [ 12] [ 6] [113546] +11:36:41 [ 13] [ 4] [0320] +11:36:41 [ 15] [ 4] [0320] +11:36:41 [ 18] [ 4] [6011] +11:36:41 [ 19] [ 3] [418] +11:36:41 [ 32] [ 6] [180893] +11:36:41 [ 35] [ 32] [6213541000320542=491212012054325] +11:36:41 [ 37] [ 12] [507904268588] +11:36:41 [ 38] [ 6] [863774] +11:36:41 [ 39] [ 2] [00] +11:36:41 [ 41] [ 8] [0324BKDT] +11:36:41 [ 49] [ 3] [418] +11:36:41 [ 54] [ 40] [0001418C0016910349510002418C001691034951] +11:36:41 ============================================================================ +11:36:41 Calculate Source COMM Id = 2 +11:36:41 ============================================================================ +11:36:41 + + +waiting on router queue for slot.... +11:36:49 ============================================================================ +11:36:49 Slot Id : <308> +11:36:49 Transaction Type : REQUEST +11:36:49 Received From : +11:36:49 ============================================================================ +11:36:49 FNo. Len. Field Value +11:36:49 ============================================================================ +11:36:49 [ 1] [ 4] [0200] +11:36:49 [ 2] [ 16] [6213544001419057] +11:36:49 [ 3] [ 6] [011000] +11:36:49 [ 4] [ 12] [000010000000] +11:36:49 [ 7] [ 10] [0320113710] +11:36:49 [ 11] [ 6] [204795] +11:36:49 [ 12] [ 6] [233521] +11:36:49 [ 13] [ 4] [0319] +11:36:49 [ 14] [ 4] [4912] +11:36:49 [ 15] [ 4] [0319] +11:36:49 [ 18] [ 4] [6011] +11:36:49 [ 19] [ 3] [418] +11:36:49 [ 22] [ 3] [021] +11:36:49 [ 25] [ 2] [01] +11:36:49 [ 28] [ 9] [D00002000] +11:36:49 [ 32] [ 6] [198901] +11:36:49 [ 35] [ 32] [6213544001419057=491212011905782] +11:36:49 [ 37] [ 12] [507911204795] +11:36:49 [ 41] [ 8] [01529031] +11:36:49 [ 42] [ 15] [000000041529031] +11:36:49 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:36:49 [ 49] [ 3] [418] +11:36:49 [ 52] [ 16] [1857E933247AF8D2] +11:36:49 ============================================================================ +11:36:49 + + +waiting on router queue for slot.... +11:36:49 Sending to : +11:36:49 ============================================================================ +11:36:49 Sending to : +11:36:49 ============================================================================ +11:36:50 ============================================================================ +11:36:50 Slot Id : <308> +11:36:50 Transaction Type : REQUEST +11:36:50 Received From : +11:36:50 ============================================================================ +11:36:50 FNo. Len. Field Value +11:36:50 ============================================================================ +11:36:50 [ 1] [ 4] [0200] +11:36:50 [ 2] [ 16] [6213544001419057] +11:36:50 [ 3] [ 6] [011000] +11:36:50 [ 4] [ 12] [000010000000] +11:36:50 [ 7] [ 10] [0320113710] +11:36:50 [ 11] [ 6] [204795] +11:36:50 [ 12] [ 6] [233521] +11:36:50 [ 13] [ 4] [0319] +11:36:50 [ 14] [ 4] [4912] +11:36:50 [ 15] [ 4] [0319] +11:36:50 [ 18] [ 4] [6011] +11:36:50 [ 19] [ 3] [418] +11:36:50 [ 22] [ 3] [021] +11:36:50 [ 25] [ 2] [01] +11:36:50 [ 28] [ 9] [D00002000] +11:36:50 [ 32] [ 6] [198901] +11:36:50 [ 35] [ 32] [6213544001419057=491212011905782] +11:36:50 [ 37] [ 12] [507911204795] +11:36:50 [ 41] [ 8] [01529031] +11:36:50 [ 42] [ 15] [000000041529031] +11:36:50 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:36:50 [ 49] [ 3] [418] +11:36:50 [ 52] [ 16] [1857E933247AF8D2] +11:36:50 ============================================================================ +11:36:50 + + +waiting on router queue for slot.... +11:36:50 Sending to : +11:36:50 ============================================================================ +11:36:50 ============================================================================ +11:36:50 Slot Id : <308> +11:36:50 Transaction Type : REQUEST +11:36:50 Received From : +11:36:50 ============================================================================ +11:36:50 FNo. Len. Field Value +11:36:50 ============================================================================ +11:36:50 [ 1] [ 4] [0200] +11:36:50 [ 2] [ 16] [6213544001419057] +11:36:50 [ 3] [ 6] [011000] +11:36:50 [ 4] [ 12] [000010000000] +11:36:50 [ 7] [ 10] [0320113710] +11:36:50 [ 11] [ 6] [204795] +11:36:50 [ 12] [ 6] [233521] +11:36:50 [ 13] [ 4] [0319] +11:36:50 [ 14] [ 4] [4912] +11:36:50 [ 15] [ 4] [0319] +11:36:50 [ 18] [ 4] [6011] +11:36:50 [ 19] [ 3] [418] +11:36:50 [ 22] [ 3] [021] +11:36:50 [ 25] [ 2] [01] +11:36:50 [ 28] [ 9] [D00002000] +11:36:50 [ 32] [ 6] [198901] +11:36:50 [ 35] [ 32] [6213544001419057=491212011905782] +11:36:50 [ 37] [ 12] [507911204795] +11:36:50 [ 41] [ 8] [01529031] +11:36:50 [ 42] [ 15] [000000041529031] +11:36:50 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:36:50 [ 49] [ 3] [418] +11:36:50 [ 52] [ 16] [06BFE4702E52C389] +11:36:50 ============================================================================ +11:36:50 + + +waiting on router queue for slot.... +11:36:50 Sending to : <0> +11:36:50 ============================================================================ +11:36:51 ============================================================================ +11:36:51 Slot Id : <308> +11:36:51 Transaction Type : RESPONSE +11:36:51 Received From : +11:36:51 ============================================================================ +11:36:51 FNo. Len. Field Value +11:36:51 ============================================================================ +11:36:51 [ 1] [ 4] [0210] +11:36:51 [ 2] [ 16] [6213544001419057] +11:36:51 [ 3] [ 6] [011000] +11:36:51 [ 4] [ 12] [000010000000] +11:36:51 [ 7] [ 10] [0320113710] +11:36:51 [ 11] [ 6] [204795] +11:36:51 [ 12] [ 6] [233521] +11:36:51 [ 13] [ 4] [0319] +11:36:51 [ 15] [ 4] [0319] +11:36:51 [ 18] [ 4] [6011] +11:36:51 [ 19] [ 3] [418] +11:36:51 [ 32] [ 6] [198901] +11:36:51 [ 35] [ 32] [6213544001419057=491212011905782] +11:36:51 [ 37] [ 12] [507911204795] +11:36:51 [ 38] [ 6] [869232] +11:36:51 [ 39] [ 2] [00] +11:36:51 [ 41] [ 8] [01529031] +11:36:51 [ 49] [ 3] [418] +11:36:51 [ 54] [ 40] [1001418C0000079458861002418C000007945886] +11:36:51 ============================================================================ +11:36:51 Sending to : +11:36:51 ============================================================================ +11:36:51 + + +waiting on router queue for slot.... +11:36:52 ============================================================================ +11:36:52 Slot Id : <296> +11:36:52 Transaction Type : REQUEST +11:36:52 Received From : +11:36:52 ============================================================================ +11:36:52 FNo. Len. Field Value +11:36:52 ============================================================================ +11:36:52 [ 1] [ 4] [0800] +11:36:52 [ 7] [ 10] [0320043600] +11:36:52 [ 11] [ 6] [156131] +11:36:52 [ 70] [ 3] [301] +11:36:52 ============================================================================ +11:36:52 + + +waiting on router queue for slot.... +11:36:52 Sending to : +11:36:52 ============================================================================ +11:36:52 ============================================================================ +11:36:52 Slot Id : <296> +11:36:52 Transaction Type : RESPONSE +11:36:52 Received From : +11:36:52 ============================================================================ +11:36:52 FNo. Len. Field Value +11:36:52 ============================================================================ +11:36:52 [ 1] [ 4] [0810] +11:36:52 [ 7] [ 10] [0320043600] +11:36:52 [ 11] [ 6] [156131] +11:36:52 [ 39] [ 2] [00] +11:36:52 [ 70] [ 3] [301] +11:36:52 ============================================================================ +11:36:52 Calculate Source COMM Id = 2 +11:36:52 ============================================================================ +11:36:52 + + +waiting on router queue for slot.... +11:36:52 ============================================================================ +11:36:52 Slot Id : <308> +11:36:52 Transaction Type : RESPONSE +11:36:52 Received From : +11:36:52 ============================================================================ +11:36:52 FNo. Len. Field Value +11:36:52 ============================================================================ +11:36:52 [ 1] [ 4] [0210] +11:36:52 [ 2] [ 16] [6213544001419057] +11:36:52 [ 3] [ 6] [011000] +11:36:52 [ 4] [ 12] [000010000000] +11:36:52 [ 7] [ 10] [0320113710] +11:36:52 [ 11] [ 6] [204795] +11:36:52 [ 12] [ 6] [233521] +11:36:52 [ 13] [ 4] [0319] +11:36:52 [ 15] [ 4] [0319] +11:36:52 [ 18] [ 4] [6011] +11:36:52 [ 19] [ 3] [418] +11:36:52 [ 32] [ 6] [198901] +11:36:52 [ 35] [ 32] [6213544001419057=491212011905782] +11:36:52 [ 37] [ 12] [507911204795] +11:36:52 [ 38] [ 6] [869232] +11:36:52 [ 39] [ 2] [00] +11:36:52 [ 41] [ 8] [01529031] +11:36:52 [ 49] [ 3] [418] +11:36:52 [ 54] [ 40] [1001418C0000079458861002418C000007945886] +11:36:52 ============================================================================ +11:36:52 Calculate Source COMM Id = 5 +11:36:52 ============================================================================ +11:36:52 + + +waiting on router queue for slot.... +11:37:03 ============================================================================ +11:37:03 Slot Id : <286> +11:37:03 Transaction Type : REQUEST +11:37:03 Received From : +11:37:03 ============================================================================ +11:37:03 FNo. Len. Field Value +11:37:03 ============================================================================ +11:37:03 [ 1] [ 4] [0800] +11:37:03 [ 7] [ 10] [0320043610] +11:37:03 [ 11] [ 6] [156132] +11:37:03 [ 70] [ 3] [301] +11:37:03 ============================================================================ +11:37:03 + + +waiting on router queue for slot.... +11:37:03 Sending to : +11:37:03 ============================================================================ +11:37:03 ============================================================================ +11:37:03 Slot Id : <286> +11:37:03 Transaction Type : RESPONSE +11:37:03 Received From : +11:37:03 ============================================================================ +11:37:03 FNo. Len. Field Value +11:37:03 ============================================================================ +11:37:03 [ 1] [ 4] [0810] +11:37:03 [ 7] [ 10] [0320043610] +11:37:03 [ 11] [ 6] [156132] +11:37:03 [ 39] [ 2] [00] +11:37:03 [ 70] [ 3] [301] +11:37:03 ============================================================================ +11:37:03 Calculate Source COMM Id = 2 +11:37:03 ============================================================================ +11:37:03 + + +waiting on router queue for slot.... +11:37:06 ============================================================================ +11:37:06 Slot Id : <316> +11:37:06 Transaction Type : REQUEST +11:37:06 Received From : +11:37:06 ============================================================================ +11:37:06 FNo. Len. Field Value +11:37:06 ============================================================================ +11:37:06 [ 1] [ 4] [0800] +11:37:06 [ 2] [ 5] [02531] +11:37:06 [ 3] [ 6] [579118] +11:37:06 [ 7] [ 10] [0320043706] +11:37:06 [ 11] [ 6] [807086] +11:37:06 [ 15] [ 10] [0320043706] +11:37:06 [ 37] [ 11] [57911807086] +11:37:06 [ 70] [ 3] [001] +11:37:06 ============================================================================ +11:37:06 + + +waiting on router queue for slot.... +11:37:06 ============================================================================ +11:37:06 Slot Id : <316> +11:37:06 Transaction Type : RESPONSE +11:37:06 Received From : +11:37:06 ============================================================================ +11:37:06 FNo. Len. Field Value +11:37:06 ============================================================================ +11:37:06 [ 1] [ 4] [0810] +11:37:06 [ 7] [ 10] [0320043706] +11:37:06 [ 11] [ 6] [807086] +11:37:06 [ 15] [ 4] [0320] +11:37:06 [ 37] [ 12] [57911807086] +11:37:06 [ 39] [ 2] [00] +11:37:06 [ 70] [ 3] [001] +11:37:06 ============================================================================ +11:37:06 Sending to : +11:37:06 ============================================================================ +11:37:06 + + +waiting on router queue for slot.... +11:37:18 ============================================================================ +11:37:18 Slot Id : <283> +11:37:18 Transaction Type : REQUEST +11:37:18 Received From : +11:37:18 ============================================================================ +11:37:18 FNo. Len. Field Value +11:37:18 ============================================================================ +11:37:18 [ 1] [ 4] [0800] +11:37:18 [ 7] [ 10] [0320043626] +11:37:18 [ 11] [ 6] [156133] +11:37:18 [ 70] [ 3] [301] +11:37:18 ============================================================================ +11:37:18 + + +waiting on router queue for slot.... +11:37:18 Sending to : +11:37:18 ============================================================================ +11:37:18 ============================================================================ +11:37:18 Slot Id : <283> +11:37:18 Transaction Type : RESPONSE +11:37:18 Received From : +11:37:18 ============================================================================ +11:37:18 FNo. Len. Field Value +11:37:18 ============================================================================ +11:37:18 [ 1] [ 4] [0810] +11:37:18 [ 7] [ 10] [0320043626] +11:37:18 [ 11] [ 6] [156133] +11:37:18 [ 39] [ 2] [00] +11:37:18 [ 70] [ 3] [301] +11:37:18 ============================================================================ +11:37:18 Calculate Source COMM Id = 2 +11:37:18 ============================================================================ +11:37:18 + + +waiting on router queue for slot.... +11:37:18 ============================================================================ +11:37:18 Slot Id : <311> +11:37:18 Transaction Type : REQUEST +11:37:18 Received From : +11:37:18 ============================================================================ +11:37:18 FNo. Len. Field Value +11:37:18 ============================================================================ +11:37:18 [ 1] [ 4] [0200] +11:37:18 [ 2] [ 16] [6213548000127223] +11:37:18 [ 3] [ 6] [010000] +11:37:18 [ 4] [ 12] [000010000000] +11:37:18 [ 7] [ 10] [0320043625] +11:37:18 [ 11] [ 6] [268594] +11:37:18 [ 12] [ 6] [113625] +11:37:18 [ 13] [ 4] [0320] +11:37:18 [ 14] [ 4] [1311] +11:37:18 [ 15] [ 4] [0320] +11:37:18 [ 18] [ 4] [6011] +11:37:18 [ 19] [ 3] [418] +11:37:18 [ 22] [ 3] [021] +11:37:18 [ 25] [ 2] [01] +11:37:18 [ 28] [ 9] [D00002000] +11:37:18 [ 32] [ 6] [180893] +11:37:18 [ 35] [ 32] [6213548000127223=131112012722387] +11:37:18 [ 37] [ 12] [507904268594] +11:37:18 [ 41] [ 8] [0401XSBR] +11:37:18 [ 42] [ 15] [999999 ] +11:37:18 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +11:37:18 [ 49] [ 3] [418] +11:37:18 [ 52] [ 16] [887646B373FAE15D] +11:37:18 ============================================================================ +11:37:18 + + +waiting on router queue for slot.... +11:37:18 Sending to : +11:37:18 ============================================================================ +11:37:18 Sending to : +11:37:18 ============================================================================ +11:37:19 ============================================================================ +11:37:19 Slot Id : <311> +11:37:19 Transaction Type : REQUEST +11:37:19 Received From : +11:37:19 ============================================================================ +11:37:19 FNo. Len. Field Value +11:37:19 ============================================================================ +11:37:19 [ 1] [ 4] [0200] +11:37:19 [ 2] [ 16] [6213548000127223] +11:37:19 [ 3] [ 6] [010000] +11:37:19 [ 4] [ 12] [000010000000] +11:37:19 [ 7] [ 10] [0320043625] +11:37:19 [ 11] [ 6] [268594] +11:37:19 [ 12] [ 6] [113625] +11:37:19 [ 13] [ 4] [0320] +11:37:19 [ 14] [ 4] [1311] +11:37:19 [ 15] [ 4] [0320] +11:37:19 [ 18] [ 4] [6011] +11:37:19 [ 19] [ 3] [418] +11:37:19 [ 22] [ 3] [021] +11:37:19 [ 25] [ 2] [01] +11:37:19 [ 28] [ 9] [D00002000] +11:37:19 [ 32] [ 6] [180893] +11:37:19 [ 35] [ 32] [6213548000127223=131112012722387] +11:37:19 [ 37] [ 12] [507904268594] +11:37:19 [ 41] [ 8] [0401XSBR] +11:37:19 [ 42] [ 15] [999999 ] +11:37:19 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +11:37:19 [ 49] [ 3] [418] +11:37:19 [ 52] [ 16] [887646B373FAE15D] +11:37:19 ============================================================================ +11:37:19 + + +waiting on router queue for slot.... +11:37:19 Sending to : +11:37:19 ============================================================================ +11:37:19 ============================================================================ +11:37:19 Slot Id : <311> +11:37:19 Transaction Type : REQUEST +11:37:19 Received From : +11:37:19 ============================================================================ +11:37:19 FNo. Len. Field Value +11:37:19 ============================================================================ +11:37:19 [ 1] [ 4] [0200] +11:37:19 [ 2] [ 16] [6213548000127223] +11:37:19 [ 3] [ 6] [010000] +11:37:19 [ 4] [ 12] [000010000000] +11:37:19 [ 7] [ 10] [0320043625] +11:37:19 [ 11] [ 6] [268594] +11:37:19 [ 12] [ 6] [113625] +11:37:19 [ 13] [ 4] [0320] +11:37:19 [ 14] [ 4] [1311] +11:37:19 [ 15] [ 4] [0320] +11:37:19 [ 18] [ 4] [6011] +11:37:19 [ 19] [ 3] [418] +11:37:19 [ 22] [ 3] [021] +11:37:19 [ 25] [ 2] [01] +11:37:19 [ 28] [ 9] [D00002000] +11:37:19 [ 32] [ 6] [180893] +11:37:19 [ 35] [ 32] [6213548000127223=131112012722387] +11:37:19 [ 37] [ 12] [507904268594] +11:37:19 [ 41] [ 8] [0401XSBR] +11:37:19 [ 42] [ 15] [999999 ] +11:37:19 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +11:37:19 [ 49] [ 3] [418] +11:37:19 [ 52] [ 16] [7FCD6350B555EB15] +11:37:19 ============================================================================ +11:37:19 + + +waiting on router queue for slot.... +11:37:19 Sending to : <0> +11:37:19 ============================================================================ +11:37:19 ============================================================================ +11:37:19 Slot Id : <311> +11:37:19 Transaction Type : RESPONSE +11:37:19 Received From : +11:37:19 ============================================================================ +11:37:19 FNo. Len. Field Value +11:37:19 ============================================================================ +11:37:19 [ 1] [ 4] [0210] +11:37:19 [ 2] [ 16] [6213548000127223] +11:37:19 [ 3] [ 6] [010000] +11:37:19 [ 4] [ 12] [000010000000] +11:37:19 [ 7] [ 10] [0320043625] +11:37:19 [ 11] [ 6] [268594] +11:37:19 [ 12] [ 6] [113625] +11:37:19 [ 13] [ 4] [0320] +11:37:19 [ 15] [ 4] [0320] +11:37:19 [ 18] [ 4] [6011] +11:37:19 [ 19] [ 3] [418] +11:37:19 [ 32] [ 6] [180893] +11:37:19 [ 35] [ 32] [6213548000127223=131112012722387] +11:37:19 [ 37] [ 12] [507904268594] +11:37:19 [ 38] [ 6] [037215] +11:37:19 [ 39] [ 2] [00] +11:37:19 [ 41] [ 8] [0401XSBR] +11:37:19 [ 49] [ 3] [418] +11:37:19 [ 54] [ 40] [0001418C0000450128370002418C000045012837] +11:37:19 ============================================================================ +11:37:19 Sending to : +11:37:19 ============================================================================ +11:37:19 + + +waiting on router queue for slot.... +11:37:21 ============================================================================ +11:37:21 Slot Id : <311> +11:37:21 Transaction Type : RESPONSE +11:37:21 Received From : +11:37:21 ============================================================================ +11:37:21 FNo. Len. Field Value +11:37:21 ============================================================================ +11:37:21 [ 1] [ 4] [0210] +11:37:21 [ 2] [ 16] [6213548000127223] +11:37:21 [ 3] [ 6] [010000] +11:37:21 [ 4] [ 12] [000010000000] +11:37:21 [ 7] [ 10] [0320043625] +11:37:21 [ 11] [ 6] [268594] +11:37:21 [ 12] [ 6] [113625] +11:37:21 [ 13] [ 4] [0320] +11:37:21 [ 15] [ 4] [0320] +11:37:21 [ 18] [ 4] [6011] +11:37:21 [ 19] [ 3] [418] +11:37:21 [ 32] [ 6] [180893] +11:37:21 [ 35] [ 32] [6213548000127223=131112012722387] +11:37:21 [ 37] [ 12] [507904268594] +11:37:21 [ 38] [ 6] [037215] +11:37:21 [ 39] [ 2] [00] +11:37:21 [ 41] [ 8] [0401XSBR] +11:37:21 [ 49] [ 3] [418] +11:37:21 [ 54] [ 40] [0001418C0000450128370002418C000045012837] +11:37:21 ============================================================================ +11:37:21 Calculate Source COMM Id = 2 +11:37:21 ============================================================================ +11:37:21 + + +waiting on router queue for slot.... +11:37:30 ============================================================================ +11:37:30 Slot Id : <312> +11:37:30 Transaction Type : REQUEST +11:37:30 Received From : +11:37:30 ============================================================================ +11:37:30 FNo. Len. Field Value +11:37:30 ============================================================================ +11:37:30 [ 1] [ 4] [0200] +11:37:30 [ 2] [ 16] [6213541000320542] +11:37:30 [ 3] [ 6] [010000] +11:37:30 [ 4] [ 12] [000100000000] +11:37:30 [ 7] [ 10] [0320043635] +11:37:30 [ 11] [ 6] [268598] +11:37:30 [ 12] [ 6] [113635] +11:37:30 [ 13] [ 4] [0320] +11:37:30 [ 14] [ 4] [4912] +11:37:30 [ 15] [ 4] [0320] +11:37:30 [ 18] [ 4] [6011] +11:37:30 [ 19] [ 3] [418] +11:37:30 [ 22] [ 3] [021] +11:37:30 [ 25] [ 2] [01] +11:37:30 [ 28] [ 9] [D00002000] +11:37:30 [ 32] [ 6] [180893] +11:37:30 [ 35] [ 32] [6213541000320542=491212012054325] +11:37:30 [ 37] [ 12] [507904268598] +11:37:30 [ 41] [ 8] [0324BKDT] +11:37:30 [ 42] [ 15] [999999 ] +11:37:30 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:37:30 [ 49] [ 3] [418] +11:37:30 [ 52] [ 16] [CF8B0EB5B4436A33] +11:37:30 ============================================================================ +11:37:30 + + +waiting on router queue for slot.... +11:37:30 Sending to : +11:37:30 ============================================================================ +11:37:30 Sending to : +11:37:30 ============================================================================ +11:37:30 ============================================================================ +11:37:30 Slot Id : <312> +11:37:30 Transaction Type : REQUEST +11:37:30 Received From : +11:37:30 ============================================================================ +11:37:30 FNo. Len. Field Value +11:37:30 ============================================================================ +11:37:30 [ 1] [ 4] [0200] +11:37:30 [ 2] [ 16] [6213541000320542] +11:37:30 [ 3] [ 6] [010000] +11:37:30 [ 4] [ 12] [000100000000] +11:37:30 [ 7] [ 10] [0320043635] +11:37:30 [ 11] [ 6] [268598] +11:37:30 [ 12] [ 6] [113635] +11:37:30 [ 13] [ 4] [0320] +11:37:30 [ 14] [ 4] [4912] +11:37:30 [ 15] [ 4] [0320] +11:37:30 [ 18] [ 4] [6011] +11:37:30 [ 19] [ 3] [418] +11:37:30 [ 22] [ 3] [021] +11:37:30 [ 25] [ 2] [01] +11:37:30 [ 28] [ 9] [D00002000] +11:37:30 [ 32] [ 6] [180893] +11:37:30 [ 35] [ 32] [6213541000320542=491212012054325] +11:37:30 [ 37] [ 12] [507904268598] +11:37:30 [ 41] [ 8] [0324BKDT] +11:37:30 [ 42] [ 15] [999999 ] +11:37:30 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:37:30 [ 49] [ 3] [418] +11:37:30 [ 52] [ 16] [CF8B0EB5B4436A33] +11:37:30 ============================================================================ +11:37:30 + + +waiting on router queue for slot.... +11:37:30 Sending to : +11:37:30 ============================================================================ +11:37:30 ============================================================================ +11:37:30 Slot Id : <312> +11:37:30 Transaction Type : REQUEST +11:37:30 Received From : +11:37:30 ============================================================================ +11:37:30 FNo. Len. Field Value +11:37:30 ============================================================================ +11:37:30 [ 1] [ 4] [0200] +11:37:30 [ 2] [ 16] [6213541000320542] +11:37:30 [ 3] [ 6] [010000] +11:37:30 [ 4] [ 12] [000100000000] +11:37:30 [ 7] [ 10] [0320043635] +11:37:30 [ 11] [ 6] [268598] +11:37:30 [ 12] [ 6] [113635] +11:37:30 [ 13] [ 4] [0320] +11:37:30 [ 14] [ 4] [4912] +11:37:30 [ 15] [ 4] [0320] +11:37:30 [ 18] [ 4] [6011] +11:37:30 [ 19] [ 3] [418] +11:37:30 [ 22] [ 3] [021] +11:37:30 [ 25] [ 2] [01] +11:37:30 [ 28] [ 9] [D00002000] +11:37:30 [ 32] [ 6] [180893] +11:37:30 [ 35] [ 32] [6213541000320542=491212012054325] +11:37:30 [ 37] [ 12] [507904268598] +11:37:30 [ 41] [ 8] [0324BKDT] +11:37:30 [ 42] [ 15] [999999 ] +11:37:30 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:37:30 [ 49] [ 3] [418] +11:37:30 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:37:30 ============================================================================ +11:37:30 + + +waiting on router queue for slot.... +11:37:30 Sending to : <0> +11:37:30 ============================================================================ +11:37:31 ============================================================================ +11:37:31 Slot Id : <312> +11:37:31 Transaction Type : RESPONSE +11:37:31 Received From : +11:37:31 ============================================================================ +11:37:31 FNo. Len. Field Value +11:37:31 ============================================================================ +11:37:31 [ 1] [ 4] [0210] +11:37:31 [ 2] [ 16] [6213541000320542] +11:37:31 [ 3] [ 6] [010000] +11:37:31 [ 4] [ 12] [000100000000] +11:37:31 [ 7] [ 10] [0320043635] +11:37:31 [ 11] [ 6] [268598] +11:37:31 [ 12] [ 6] [113635] +11:37:31 [ 13] [ 4] [0320] +11:37:31 [ 15] [ 4] [0320] +11:37:31 [ 18] [ 4] [6011] +11:37:31 [ 19] [ 3] [418] +11:37:31 [ 32] [ 6] [180893] +11:37:31 [ 35] [ 32] [6213541000320542=491212012054325] +11:37:31 [ 37] [ 12] [507904268598] +11:37:31 [ 38] [ 6] [235953] +11:37:31 [ 39] [ 2] [00] +11:37:31 [ 41] [ 8] [0324BKDT] +11:37:31 [ 49] [ 3] [418] +11:37:31 [ 54] [ 40] [0001418C0015908349510002418C001590834951] +11:37:31 ============================================================================ +11:37:31 Sending to : +11:37:31 ============================================================================ +11:37:31 + + +waiting on router queue for slot.... +11:37:33 ============================================================================ +11:37:33 Slot Id : <312> +11:37:33 Transaction Type : RESPONSE +11:37:33 Received From : +11:37:33 ============================================================================ +11:37:33 FNo. Len. Field Value +11:37:33 ============================================================================ +11:37:33 [ 1] [ 4] [0210] +11:37:33 [ 2] [ 16] [6213541000320542] +11:37:33 [ 3] [ 6] [010000] +11:37:33 [ 4] [ 12] [000100000000] +11:37:33 [ 7] [ 10] [0320043635] +11:37:33 [ 11] [ 6] [268598] +11:37:33 [ 12] [ 6] [113635] +11:37:33 [ 13] [ 4] [0320] +11:37:33 [ 15] [ 4] [0320] +11:37:33 [ 18] [ 4] [6011] +11:37:33 [ 19] [ 3] [418] +11:37:33 [ 32] [ 6] [180893] +11:37:33 [ 35] [ 32] [6213541000320542=491212012054325] +11:37:33 [ 37] [ 12] [507904268598] +11:37:33 [ 38] [ 6] [235953] +11:37:33 [ 39] [ 2] [00] +11:37:33 [ 41] [ 8] [0324BKDT] +11:37:33 [ 49] [ 3] [418] +11:37:33 [ 54] [ 40] [0001418C0015908349510002418C001590834951] +11:37:33 ============================================================================ +11:37:33 Calculate Source COMM Id = 2 +11:37:33 ============================================================================ +11:37:33 + + +waiting on router queue for slot.... +11:37:38 ============================================================================ +11:37:38 Slot Id : <306> +11:37:38 Transaction Type : REQUEST +11:37:38 Received From : +11:37:38 ============================================================================ +11:37:38 FNo. Len. Field Value +11:37:38 ============================================================================ +11:37:38 [ 1] [ 4] [0200] +11:37:38 [ 2] [ 16] [6213548000452035] +11:37:38 [ 3] [ 6] [011000] +11:37:38 [ 4] [ 12] [000050000000] +11:37:38 [ 7] [ 10] [0320113759] +11:37:38 [ 11] [ 6] [204806] +11:37:38 [ 12] [ 6] [233610] +11:37:38 [ 13] [ 4] [0319] +11:37:38 [ 14] [ 4] [1807] +11:37:38 [ 15] [ 4] [0319] +11:37:38 [ 18] [ 4] [6011] +11:37:38 [ 19] [ 3] [418] +11:37:38 [ 22] [ 3] [021] +11:37:38 [ 25] [ 2] [01] +11:37:38 [ 28] [ 9] [D00002000] +11:37:38 [ 32] [ 6] [198901] +11:37:38 [ 35] [ 32] [6213548000452035=180712015203711] +11:37:38 [ 37] [ 12] [507911204806] +11:37:38 [ 41] [ 8] [01529031] +11:37:38 [ 42] [ 15] [000000041529031] +11:37:38 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:37:38 [ 49] [ 3] [418] +11:37:38 [ 52] [ 16] [66F6F7BA02AFEED0] +11:37:38 ============================================================================ +11:37:38 + + +waiting on router queue for slot.... +11:37:38 Sending to : +11:37:38 ============================================================================ +11:37:38 Sending to : +11:37:38 ============================================================================ +11:37:38 ============================================================================ +11:37:38 Slot Id : <306> +11:37:38 Transaction Type : REQUEST +11:37:38 Received From : +11:37:38 ============================================================================ +11:37:38 FNo. Len. Field Value +11:37:38 ============================================================================ +11:37:38 [ 1] [ 4] [0200] +11:37:38 [ 2] [ 16] [6213548000452035] +11:37:38 [ 3] [ 6] [011000] +11:37:38 [ 4] [ 12] [000050000000] +11:37:38 [ 7] [ 10] [0320113759] +11:37:38 [ 11] [ 6] [204806] +11:37:38 [ 12] [ 6] [233610] +11:37:38 [ 13] [ 4] [0319] +11:37:38 [ 14] [ 4] [1807] +11:37:38 [ 15] [ 4] [0319] +11:37:38 [ 18] [ 4] [6011] +11:37:38 [ 19] [ 3] [418] +11:37:38 [ 22] [ 3] [021] +11:37:38 [ 25] [ 2] [01] +11:37:38 [ 28] [ 9] [D00002000] +11:37:38 [ 32] [ 6] [198901] +11:37:38 [ 35] [ 32] [6213548000452035=180712015203711] +11:37:38 [ 37] [ 12] [507911204806] +11:37:38 [ 41] [ 8] [01529031] +11:37:38 [ 42] [ 15] [000000041529031] +11:37:38 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:37:38 [ 49] [ 3] [418] +11:37:38 [ 52] [ 16] [66F6F7BA02AFEED0] +11:37:38 ============================================================================ +11:37:38 + + +waiting on router queue for slot.... +11:37:38 Sending to : +11:37:38 ============================================================================ +11:37:38 ============================================================================ +11:37:38 Slot Id : <306> +11:37:38 Transaction Type : REQUEST +11:37:38 Received From : +11:37:38 ============================================================================ +11:37:38 FNo. Len. Field Value +11:37:38 ============================================================================ +11:37:38 [ 1] [ 4] [0200] +11:37:38 [ 2] [ 16] [6213548000452035] +11:37:38 [ 3] [ 6] [011000] +11:37:38 [ 4] [ 12] [000050000000] +11:37:38 [ 7] [ 10] [0320113759] +11:37:38 [ 11] [ 6] [204806] +11:37:38 [ 12] [ 6] [233610] +11:37:38 [ 13] [ 4] [0319] +11:37:38 [ 14] [ 4] [1807] +11:37:38 [ 15] [ 4] [0319] +11:37:38 [ 18] [ 4] [6011] +11:37:38 [ 19] [ 3] [418] +11:37:38 [ 22] [ 3] [021] +11:37:38 [ 25] [ 2] [01] +11:37:38 [ 28] [ 9] [D00002000] +11:37:38 [ 32] [ 6] [198901] +11:37:38 [ 35] [ 32] [6213548000452035=180712015203711] +11:37:38 [ 37] [ 12] [507911204806] +11:37:38 [ 41] [ 8] [01529031] +11:37:38 [ 42] [ 15] [000000041529031] +11:37:38 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:37:38 [ 49] [ 3] [418] +11:37:38 [ 52] [ 16] [BC5968B87BA36D43] +11:37:38 ============================================================================ +11:37:38 + + +waiting on router queue for slot.... +11:37:38 Sending to : <0> +11:37:38 ============================================================================ +11:37:39 ============================================================================ +11:37:39 Slot Id : <306> +11:37:39 Transaction Type : RESPONSE +11:37:39 Received From : +11:37:39 ============================================================================ +11:37:39 FNo. Len. Field Value +11:37:39 ============================================================================ +11:37:39 [ 1] [ 4] [0210] +11:37:39 [ 2] [ 16] [6213548000452035] +11:37:39 [ 3] [ 6] [011000] +11:37:39 [ 4] [ 12] [000050000000] +11:37:39 [ 7] [ 10] [0320113759] +11:37:39 [ 11] [ 6] [204806] +11:37:39 [ 12] [ 6] [233610] +11:37:39 [ 13] [ 4] [0319] +11:37:39 [ 15] [ 4] [0319] +11:37:39 [ 18] [ 4] [6011] +11:37:39 [ 19] [ 3] [418] +11:37:39 [ 32] [ 6] [198901] +11:37:39 [ 35] [ 32] [6213548000452035=180712015203711] +11:37:39 [ 37] [ 12] [507911204806] +11:37:39 [ 38] [ 6] [614155] +11:37:39 [ 39] [ 2] [00] +11:37:39 [ 41] [ 8] [01529031] +11:37:39 [ 49] [ 3] [418] +11:37:39 [ 54] [ 40] [1001418C0002771042641002418C000277104264] +11:37:39 ============================================================================ +11:37:39 Sending to : +11:37:39 ============================================================================ +11:37:39 + + +waiting on router queue for slot.... +11:37:40 ============================================================================ +11:37:40 Slot Id : <306> +11:37:40 Transaction Type : RESPONSE +11:37:40 Received From : +11:37:40 ============================================================================ +11:37:40 FNo. Len. Field Value +11:37:40 ============================================================================ +11:37:40 [ 1] [ 4] [0210] +11:37:40 [ 2] [ 16] [6213548000452035] +11:37:40 [ 3] [ 6] [011000] +11:37:40 [ 4] [ 12] [000050000000] +11:37:40 [ 7] [ 10] [0320113759] +11:37:40 [ 11] [ 6] [204806] +11:37:40 [ 12] [ 6] [233610] +11:37:40 [ 13] [ 4] [0319] +11:37:40 [ 15] [ 4] [0319] +11:37:40 [ 18] [ 4] [6011] +11:37:40 [ 19] [ 3] [418] +11:37:40 [ 32] [ 6] [198901] +11:37:40 [ 35] [ 32] [6213548000452035=180712015203711] +11:37:40 [ 37] [ 12] [507911204806] +11:37:40 [ 38] [ 6] [614155] +11:37:40 [ 39] [ 2] [00] +11:37:40 [ 41] [ 8] [01529031] +11:37:40 [ 49] [ 3] [418] +11:37:40 [ 54] [ 40] [1001418C0002771042641002418C000277104264] +11:37:40 ============================================================================ +11:37:40 Calculate Source COMM Id = 5 +11:37:40 ============================================================================ +11:37:40 + + +waiting on router queue for slot.... +11:37:44 ============================================================================ +11:37:44 Slot Id : <307> +11:37:44 Transaction Type : REQUEST +11:37:44 Received From : +11:37:44 ============================================================================ +11:37:44 FNo. Len. Field Value +11:37:44 ============================================================================ +11:37:44 [ 1] [ 4] [0800] +11:37:44 [ 7] [ 10] [0320043652] +11:37:44 [ 11] [ 6] [156134] +11:37:44 [ 70] [ 3] [301] +11:37:44 ============================================================================ +11:37:44 + + +waiting on router queue for slot.... +11:37:44 Sending to : +11:37:44 ============================================================================ +11:37:44 ============================================================================ +11:37:44 Slot Id : <307> +11:37:44 Transaction Type : RESPONSE +11:37:44 Received From : +11:37:44 ============================================================================ +11:37:44 FNo. Len. Field Value +11:37:44 ============================================================================ +11:37:44 [ 1] [ 4] [0810] +11:37:44 [ 7] [ 10] [0320043652] +11:37:44 [ 11] [ 6] [156134] +11:37:44 [ 39] [ 2] [00] +11:37:44 [ 70] [ 3] [301] +11:37:44 ============================================================================ +11:37:44 Calculate Source COMM Id = 2 +11:37:44 ============================================================================ +11:37:44 + + +waiting on router queue for slot.... +11:37:49 ============================================================================ +11:37:49 Slot Id : <317> +11:37:49 Transaction Type : REQUEST +11:37:49 Received From : +11:37:49 ============================================================================ +11:37:49 FNo. Len. Field Value +11:37:49 ============================================================================ +11:37:49 [ 1] [ 4] [0200] +11:37:49 [ 2] [ 16] [1808930300000627] +11:37:49 [ 3] [ 6] [010000] +11:37:49 [ 4] [ 12] [000100000000] +11:37:49 [ 7] [ 10] [0320113744] +11:37:49 [ 11] [ 6] [732432] +11:37:49 [ 12] [ 6] [113744] +11:37:49 [ 13] [ 4] [0320] +11:37:49 [ 15] [ 4] [0320] +11:37:49 [ 18] [ 4] [6011] +11:37:49 [ 22] [ 3] [900] +11:37:49 [ 25] [ 2] [02] +11:37:49 [ 28] [ 9] [D00002000] +11:37:49 [ 32] [ 6] [621354] +11:37:49 [ 35] [ 27] [1808930300000627=1803500441] +11:37:49 [ 37] [ 12] [507903505402] +11:37:49 [ 41] [ 8] [09000700] +11:37:49 [ 42] [ 15] [NATIVE ] +11:37:49 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:37:49 [ 49] [ 3] [418] +11:37:49 [ 52] [ 16] [7B4555E2B22445BE] +11:37:49 ============================================================================ +11:37:49 + + +waiting on router queue for slot.... +11:37:49 Sending to : +11:37:49 ============================================================================ +11:37:49 Sending to : +11:37:49 ============================================================================ +11:37:49 ============================================================================ +11:37:49 Slot Id : <317> +11:37:49 Transaction Type : REQUEST +11:37:49 Received From : +11:37:49 ============================================================================ +11:37:49 FNo. Len. Field Value +11:37:49 ============================================================================ +11:37:49 [ 1] [ 4] [0200] +11:37:49 [ 2] [ 16] [1808930300000627] +11:37:49 [ 3] [ 6] [010000] +11:37:49 [ 4] [ 12] [000100000000] +11:37:49 [ 7] [ 10] [0320113744] +11:37:49 [ 11] [ 6] [732432] +11:37:49 [ 12] [ 6] [113744] +11:37:49 [ 13] [ 4] [0320] +11:37:49 [ 15] [ 4] [0320] +11:37:49 [ 18] [ 4] [6011] +11:37:49 [ 22] [ 3] [900] +11:37:49 [ 25] [ 2] [02] +11:37:49 [ 28] [ 9] [D00002000] +11:37:49 [ 32] [ 6] [621354] +11:37:49 [ 35] [ 27] [1808930300000627=1803500441] +11:37:49 [ 37] [ 12] [507903505402] +11:37:49 [ 41] [ 8] [09000700] +11:37:49 [ 42] [ 15] [NATIVE ] +11:37:49 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:37:49 [ 49] [ 3] [418] +11:37:49 [ 52] [ 16] [7B4555E2B22445BE] +11:37:49 ============================================================================ +11:37:49 + + +waiting on router queue for slot.... +11:37:49 Sending to : +11:37:49 ============================================================================ +11:37:49 ============================================================================ +11:37:49 Slot Id : <317> +11:37:49 Transaction Type : REQUEST +11:37:49 Received From : +11:37:49 ============================================================================ +11:37:49 FNo. Len. Field Value +11:37:49 ============================================================================ +11:37:49 [ 1] [ 4] [0200] +11:37:49 [ 2] [ 16] [1808930300000627] +11:37:49 [ 3] [ 6] [010000] +11:37:49 [ 4] [ 12] [000100000000] +11:37:49 [ 7] [ 10] [0320113744] +11:37:49 [ 11] [ 6] [732432] +11:37:49 [ 12] [ 6] [113744] +11:37:49 [ 13] [ 4] [0320] +11:37:49 [ 15] [ 4] [0320] +11:37:49 [ 18] [ 4] [6011] +11:37:49 [ 22] [ 3] [900] +11:37:49 [ 25] [ 2] [02] +11:37:49 [ 28] [ 9] [D00002000] +11:37:49 [ 32] [ 6] [621354] +11:37:49 [ 35] [ 27] [1808930300000627=1803500441] +11:37:49 [ 37] [ 12] [507903505402] +11:37:49 [ 41] [ 8] [09000700] +11:37:49 [ 42] [ 15] [NATIVE ] +11:37:49 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:37:49 [ 49] [ 3] [418] +11:37:49 [ 52] [ 16] [8C05AC738B091252] +11:37:49 ============================================================================ +11:37:49 + + +waiting on router queue for slot.... +11:37:49 Sending to : <2> +11:37:49 ============================================================================ +11:37:52 ============================================================================ +11:37:52 Slot Id : <310> +11:37:52 Transaction Type : REQUEST +11:37:52 Received From : +11:37:52 ============================================================================ +11:37:52 FNo. Len. Field Value +11:37:52 ============================================================================ +11:37:52 [ 1] [ 4] [0200] +11:37:52 [ 2] [ 16] [6213541000119936] +11:37:52 [ 3] [ 6] [010000] +11:37:52 [ 4] [ 12] [000010000000] +11:37:52 [ 7] [ 10] [0320113543] +11:37:52 [ 11] [ 6] [941769] +11:37:52 [ 12] [ 6] [113543] +11:37:52 [ 13] [ 4] [0320] +11:37:52 [ 15] [ 4] [0320] +11:37:52 [ 18] [ 4] [6011] +11:37:52 [ 19] [ 3] [418] +11:37:52 [ 22] [ 3] [021] +11:37:52 [ 25] [ 2] [01] +11:37:52 [ 28] [ 9] [D00002000] +11:37:52 [ 32] [ 6] [668899] +11:37:52 [ 35] [ 32] [6213541000119936=491212011993560] +11:37:52 [ 37] [ 12] [507901963505] +11:37:52 [ 41] [ 8] [03020019] +11:37:52 [ 42] [ 15] [APT ] +11:37:52 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:37:52 [ 49] [ 3] [418] +11:37:52 [ 52] [ 16] [F12E25FDFF2B95EA] +11:37:52 ============================================================================ +11:37:52 + + +waiting on router queue for slot.... +11:37:52 Sending to : +11:37:52 ============================================================================ +11:37:52 Sending to : +11:37:52 ============================================================================ +11:37:52 ============================================================================ +11:37:52 Slot Id : <310> +11:37:52 Transaction Type : REQUEST +11:37:52 Received From : +11:37:52 ============================================================================ +11:37:52 FNo. Len. Field Value +11:37:52 ============================================================================ +11:37:52 [ 1] [ 4] [0200] +11:37:52 [ 2] [ 16] [6213541000119936] +11:37:52 [ 3] [ 6] [010000] +11:37:52 [ 4] [ 12] [000010000000] +11:37:52 [ 7] [ 10] [0320113543] +11:37:52 [ 11] [ 6] [941769] +11:37:52 [ 12] [ 6] [113543] +11:37:52 [ 13] [ 4] [0320] +11:37:52 [ 15] [ 4] [0320] +11:37:52 [ 18] [ 4] [6011] +11:37:52 [ 19] [ 3] [418] +11:37:52 [ 22] [ 3] [021] +11:37:52 [ 25] [ 2] [01] +11:37:52 [ 28] [ 9] [D00002000] +11:37:52 [ 32] [ 6] [668899] +11:37:52 [ 35] [ 32] [6213541000119936=491212011993560] +11:37:52 [ 37] [ 12] [507901963505] +11:37:52 [ 41] [ 8] [03020019] +11:37:52 [ 42] [ 15] [APT ] +11:37:52 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:37:52 [ 49] [ 3] [418] +11:37:52 [ 52] [ 16] [F12E25FDFF2B95EA] +11:37:52 ============================================================================ +11:37:52 + + +waiting on router queue for slot.... +11:37:52 Sending to : +11:37:52 ============================================================================ +11:37:52 ============================================================================ +11:37:52 Slot Id : <310> +11:37:52 Transaction Type : REQUEST +11:37:52 Received From : +11:37:52 ============================================================================ +11:37:52 FNo. Len. Field Value +11:37:52 ============================================================================ +11:37:52 [ 1] [ 4] [0200] +11:37:52 [ 2] [ 16] [6213541000119936] +11:37:52 [ 3] [ 6] [010000] +11:37:52 [ 4] [ 12] [000010000000] +11:37:52 [ 7] [ 10] [0320113543] +11:37:52 [ 11] [ 6] [941769] +11:37:52 [ 12] [ 6] [113543] +11:37:52 [ 13] [ 4] [0320] +11:37:52 [ 15] [ 4] [0320] +11:37:52 [ 18] [ 4] [6011] +11:37:52 [ 19] [ 3] [418] +11:37:52 [ 22] [ 3] [021] +11:37:52 [ 25] [ 2] [01] +11:37:52 [ 28] [ 9] [D00002000] +11:37:52 [ 32] [ 6] [668899] +11:37:52 [ 35] [ 32] [6213541000119936=491212011993560] +11:37:52 [ 37] [ 12] [507901963505] +11:37:52 [ 41] [ 8] [03020019] +11:37:52 [ 42] [ 15] [APT ] +11:37:52 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:37:52 [ 49] [ 3] [418] +11:37:52 [ 52] [ 16] [302E25B293EBF614] +11:37:52 ============================================================================ +11:37:52 + + +waiting on router queue for slot.... +11:37:52 Sending to : <0> +11:37:52 ============================================================================ +11:37:53 ============================================================================ +11:37:53 Slot Id : <310> +11:37:53 Transaction Type : RESPONSE +11:37:53 Received From : +11:37:53 ============================================================================ +11:37:53 FNo. Len. Field Value +11:37:53 ============================================================================ +11:37:53 [ 1] [ 4] [0210] +11:37:53 [ 2] [ 16] [6213541000119936] +11:37:53 [ 3] [ 6] [010000] +11:37:53 [ 4] [ 12] [000010000000] +11:37:53 [ 7] [ 10] [0320113543] +11:37:53 [ 11] [ 6] [941769] +11:37:53 [ 12] [ 6] [113543] +11:37:53 [ 13] [ 4] [0320] +11:37:53 [ 15] [ 4] [0320] +11:37:53 [ 18] [ 4] [6011] +11:37:53 [ 19] [ 3] [418] +11:37:53 [ 32] [ 6] [668899] +11:37:53 [ 35] [ 32] [6213541000119936=491212011993560] +11:37:53 [ 37] [ 12] [507901963505] +11:37:53 [ 38] [ 6] [721213] +11:37:53 [ 39] [ 2] [00] +11:37:53 [ 41] [ 8] [03020019] +11:37:53 [ 49] [ 3] [418] +11:37:53 [ 54] [ 40] [0001418C0000076404610002418C000007640461] +11:37:53 ============================================================================ +11:37:53 Sending to : +11:37:53 ============================================================================ +11:37:53 + + +waiting on router queue for slot.... +11:37:55 ============================================================================ +11:37:55 Slot Id : <310> +11:37:55 Transaction Type : RESPONSE +11:37:55 Received From : +11:37:55 ============================================================================ +11:37:55 FNo. Len. Field Value +11:37:55 ============================================================================ +11:37:55 [ 1] [ 4] [0210] +11:37:55 [ 2] [ 16] [6213541000119936] +11:37:55 [ 3] [ 6] [010000] +11:37:55 [ 4] [ 12] [000010000000] +11:37:55 [ 7] [ 10] [0320113543] +11:37:55 [ 11] [ 6] [941769] +11:37:55 [ 12] [ 6] [113543] +11:37:55 [ 13] [ 4] [0320] +11:37:55 [ 15] [ 4] [0320] +11:37:55 [ 18] [ 4] [6011] +11:37:55 [ 19] [ 3] [418] +11:37:55 [ 32] [ 6] [668899] +11:37:55 [ 35] [ 32] [6213541000119936=491212011993560] +11:37:55 [ 37] [ 12] [507901963505] +11:37:55 [ 38] [ 6] [721213] +11:37:55 [ 39] [ 2] [00] +11:37:55 [ 41] [ 8] [03020019] +11:37:55 [ 49] [ 3] [418] +11:37:55 [ 54] [ 40] [0001418C0000076404610002418C000007640461] +11:37:55 ============================================================================ +11:37:55 Calculate Source COMM Id = 4 +11:37:55 ============================================================================ +11:37:55 + + +waiting on router queue for slot.... +11:37:56 ============================================================================ +11:37:56 Slot Id : <317> +11:37:56 Transaction Type : RESPONSE +11:37:56 Received From : +11:37:56 ============================================================================ +11:37:56 FNo. Len. Field Value +11:37:56 ============================================================================ +11:37:56 [ 1] [ 4] [0210] +11:37:56 [ 2] [ 16] [1808930300000627] +11:37:56 [ 3] [ 6] [010000] +11:37:56 [ 4] [ 12] [000100000000] +11:37:56 [ 6] [ 12] [000100000000] +11:37:56 [ 7] [ 10] [0320113744] +11:37:56 [ 11] [ 6] [732432] +11:37:56 [ 12] [ 6] [113744] +11:37:56 [ 13] [ 4] [0320] +11:37:56 [ 18] [ 4] [6011] +11:37:56 [ 19] [ 3] [418] +11:37:56 [ 22] [ 3] [021] +11:37:56 [ 32] [ 6] [621354] +11:37:56 [ 35] [ 27] [1808930300000627=1803500441] +11:37:56 [ 37] [ 12] [507903505402] +11:37:56 [ 38] [ 6] [732432] +11:37:56 [ 39] [ 2] [00] +11:37:56 [ 41] [ 8] [09000700] +11:37:56 [ 49] [ 3] [418] +11:37:56 [ 52] [ 16] [8C05AC738B091252] +11:37:56 [ 54] [ 20] [1001418C001211673000] +11:37:56 ============================================================================ +11:37:56 Sending to : +11:37:56 ============================================================================ +11:37:56 + + +waiting on router queue for slot.... +11:37:57 ============================================================================ +11:37:57 Slot Id : <317> +11:37:57 Transaction Type : RESPONSE +11:37:57 Received From : +11:37:57 ============================================================================ +11:37:57 FNo. Len. Field Value +11:37:57 ============================================================================ +11:37:57 [ 1] [ 4] [0210] +11:37:57 [ 2] [ 16] [1808930300000627] +11:37:57 [ 3] [ 6] [010000] +11:37:57 [ 4] [ 12] [000100000000] +11:37:57 [ 6] [ 12] [000100000000] +11:37:57 [ 7] [ 10] [0320113744] +11:37:57 [ 11] [ 6] [732432] +11:37:57 [ 12] [ 6] [113744] +11:37:57 [ 13] [ 4] [0320] +11:37:57 [ 18] [ 4] [6011] +11:37:57 [ 19] [ 3] [418] +11:37:57 [ 22] [ 3] [021] +11:37:57 [ 32] [ 6] [621354] +11:37:57 [ 35] [ 27] [1808930300000627=1803500441] +11:37:57 [ 37] [ 12] [507903505402] +11:37:57 [ 38] [ 6] [732432] +11:37:57 [ 39] [ 2] [00] +11:37:57 [ 41] [ 8] [09000700] +11:37:57 [ 49] [ 3] [418] +11:37:57 [ 52] [ 16] [8C05AC738B091252] +11:37:57 [ 54] [ 20] [1001418C001211673000] +11:37:57 ============================================================================ +11:37:57 Calculate Source COMM Id = 0 +11:37:57 ============================================================================ +11:37:57 + + +waiting on router queue for slot.... +11:38:01 ============================================================================ +11:38:01 Slot Id : <288> +11:38:01 Transaction Type : REQUEST +11:38:01 Received From : +11:38:01 ============================================================================ +11:38:01 FNo. Len. Field Value +11:38:01 ============================================================================ +11:38:01 [ 1] [ 4] [0800] +11:38:01 [ 7] [ 10] [0320043708] +11:38:01 [ 11] [ 6] [156135] +11:38:01 [ 70] [ 3] [301] +11:38:01 ============================================================================ +11:38:01 + + +waiting on router queue for slot.... +11:38:01 Sending to : +11:38:01 ============================================================================ +11:38:01 ============================================================================ +11:38:01 Slot Id : <288> +11:38:01 Transaction Type : RESPONSE +11:38:01 Received From : +11:38:01 ============================================================================ +11:38:01 FNo. Len. Field Value +11:38:01 ============================================================================ +11:38:01 [ 1] [ 4] [0810] +11:38:01 [ 7] [ 10] [0320043708] +11:38:01 [ 11] [ 6] [156135] +11:38:01 [ 39] [ 2] [00] +11:38:01 [ 70] [ 3] [301] +11:38:01 ============================================================================ +11:38:01 Calculate Source COMM Id = 2 +11:38:01 ============================================================================ +11:38:01 + + +waiting on router queue for slot.... +11:38:08 ============================================================================ +11:38:08 Slot Id : <318> +11:38:08 Transaction Type : REQUEST +11:38:08 Received From : +11:38:08 ============================================================================ +11:38:08 FNo. Len. Field Value +11:38:08 ============================================================================ +11:38:08 [ 1] [ 4] [0800] +11:38:08 [ 2] [ 5] [02531] +11:38:08 [ 3] [ 6] [579118] +11:38:08 [ 7] [ 10] [0320043808] +11:38:08 [ 11] [ 6] [807087] +11:38:08 [ 15] [ 10] [0320043808] +11:38:08 [ 37] [ 11] [57911807087] +11:38:08 [ 70] [ 3] [001] +11:38:08 ============================================================================ +11:38:08 + + +waiting on router queue for slot.... +11:38:08 ============================================================================ +11:38:08 Slot Id : <318> +11:38:08 Transaction Type : RESPONSE +11:38:08 Received From : +11:38:08 ============================================================================ +11:38:08 FNo. Len. Field Value +11:38:08 ============================================================================ +11:38:08 [ 1] [ 4] [0810] +11:38:08 [ 7] [ 10] [0320043808] +11:38:08 [ 11] [ 6] [807087] +11:38:08 [ 15] [ 4] [0320] +11:38:08 [ 37] [ 12] [57911807087] +11:38:08 [ 39] [ 2] [00] +11:38:08 [ 70] [ 3] [001] +11:38:08 ============================================================================ +11:38:08 Sending to : +11:38:08 ============================================================================ +11:38:08 + + +waiting on router queue for slot.... +11:38:12 ============================================================================ +11:38:12 Slot Id : <322> +11:38:12 Transaction Type : REQUEST +11:38:12 Received From : +11:38:12 ============================================================================ +11:38:12 FNo. Len. Field Value +11:38:12 ============================================================================ +11:38:12 [ 1] [ 4] [0800] +11:38:12 [ 7] [ 10] [0320043719] +11:38:12 [ 11] [ 6] [156136] +11:38:12 [ 70] [ 3] [301] +11:38:12 ============================================================================ +11:38:12 + + +waiting on router queue for slot.... +11:38:12 Sending to : +11:38:12 ============================================================================ +11:38:12 ============================================================================ +11:38:12 Slot Id : <322> +11:38:12 Transaction Type : RESPONSE +11:38:12 Received From : +11:38:12 ============================================================================ +11:38:12 FNo. Len. Field Value +11:38:12 ============================================================================ +11:38:12 [ 1] [ 4] [0810] +11:38:12 [ 7] [ 10] [0320043719] +11:38:12 [ 11] [ 6] [156136] +11:38:12 [ 39] [ 2] [00] +11:38:12 [ 70] [ 3] [301] +11:38:12 ============================================================================ +11:38:12 Calculate Source COMM Id = 2 +11:38:12 ============================================================================ +11:38:12 + + +waiting on router queue for slot.... +11:38:13 ============================================================================ +11:38:13 Slot Id : <315> +11:38:13 Transaction Type : REQUEST +11:38:13 Received From : +11:38:13 ============================================================================ +11:38:13 FNo. Len. Field Value +11:38:13 ============================================================================ +11:38:13 [ 1] [ 4] [0200] +11:38:13 [ 2] [ 16] [6213544001621959] +11:38:13 [ 3] [ 6] [010000] +11:38:13 [ 4] [ 12] [000030000000] +11:38:13 [ 7] [ 10] [0320113604] +11:38:13 [ 11] [ 6] [941793] +11:38:13 [ 12] [ 6] [113604] +11:38:13 [ 13] [ 4] [0320] +11:38:13 [ 15] [ 4] [0320] +11:38:13 [ 18] [ 4] [6011] +11:38:13 [ 19] [ 3] [418] +11:38:13 [ 22] [ 3] [021] +11:38:13 [ 25] [ 2] [01] +11:38:13 [ 28] [ 9] [D00002000] +11:38:13 [ 32] [ 6] [668899] +11:38:13 [ 35] [ 32] [6213544001621959=491212012195983] +11:38:13 [ 37] [ 12] [507900270927] +11:38:13 [ 41] [ 8] [03010004] +11:38:13 [ 42] [ 15] [APT ] +11:38:13 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:38:13 [ 49] [ 3] [418] +11:38:13 [ 52] [ 16] [3E185E491A64F264] +11:38:13 ============================================================================ +11:38:13 + + +waiting on router queue for slot.... +11:38:13 Sending to : +11:38:13 ============================================================================ +11:38:13 Sending to : +11:38:13 ============================================================================ +11:38:13 ============================================================================ +11:38:13 Slot Id : <304> +11:38:13 Transaction Type : REQUEST +11:38:13 Received From : +11:38:13 ============================================================================ +11:38:13 FNo. Len. Field Value +11:38:13 ============================================================================ +11:38:13 [ 1] [ 4] [0200] +11:38:13 [ 2] [ 16] [6213541000320542] +11:38:13 [ 3] [ 6] [010000] +11:38:13 [ 4] [ 12] [000100000000] +11:38:13 [ 7] [ 10] [0320043721] +11:38:13 [ 11] [ 6] [268603] +11:38:13 [ 12] [ 6] [113720] +11:38:13 [ 13] [ 4] [0320] +11:38:13 [ 14] [ 4] [4912] +11:38:13 [ 15] [ 4] [0320] +11:38:13 [ 18] [ 4] [6011] +11:38:13 [ 19] [ 3] [418] +11:38:13 [ 22] [ 3] [021] +11:38:13 [ 25] [ 2] [01] +11:38:13 [ 28] [ 9] [D00002000] +11:38:13 [ 32] [ 6] [180893] +11:38:13 [ 35] [ 32] [6213541000320542=491212012054325] +11:38:13 [ 37] [ 12] [507904268603] +11:38:13 [ 41] [ 8] [0324BKDT] +11:38:13 [ 42] [ 15] [999999 ] +11:38:13 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:38:13 [ 49] [ 3] [418] +11:38:13 [ 52] [ 16] [CF8B0EB5B4436A33] +11:38:13 ============================================================================ +11:38:13 + + +waiting on router queue for slot.... +11:38:13 Sending to : +11:38:13 ============================================================================ +11:38:13 Sending to : +11:38:13 ============================================================================ +11:38:14 ============================================================================ +11:38:14 Slot Id : <315> +11:38:14 Transaction Type : REQUEST +11:38:14 Received From : +11:38:14 ============================================================================ +11:38:14 FNo. Len. Field Value +11:38:14 ============================================================================ +11:38:14 [ 1] [ 4] [0200] +11:38:14 [ 2] [ 16] [6213544001621959] +11:38:14 [ 3] [ 6] [010000] +11:38:14 [ 4] [ 12] [000030000000] +11:38:14 [ 7] [ 10] [0320113604] +11:38:14 [ 11] [ 6] [941793] +11:38:14 [ 12] [ 6] [113604] +11:38:14 [ 13] [ 4] [0320] +11:38:14 [ 15] [ 4] [0320] +11:38:14 [ 18] [ 4] [6011] +11:38:14 [ 19] [ 3] [418] +11:38:14 [ 22] [ 3] [021] +11:38:14 [ 25] [ 2] [01] +11:38:14 [ 28] [ 9] [D00002000] +11:38:14 [ 32] [ 6] [668899] +11:38:14 [ 35] [ 32] [6213544001621959=491212012195983] +11:38:14 [ 37] [ 12] [507900270927] +11:38:14 [ 41] [ 8] [03010004] +11:38:14 [ 42] [ 15] [APT ] +11:38:14 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:38:14 [ 49] [ 3] [418] +11:38:14 [ 52] [ 16] [3E185E491A64F264] +11:38:14 ============================================================================ +11:38:14 + + +waiting on router queue for slot.... +11:38:14 Sending to : +11:38:14 ============================================================================ +11:38:14 ============================================================================ +11:38:14 Slot Id : <315> +11:38:14 Transaction Type : REQUEST +11:38:14 Received From : +11:38:14 ============================================================================ +11:38:14 FNo. Len. Field Value +11:38:14 ============================================================================ +11:38:14 [ 1] [ 4] [0200] +11:38:14 [ 2] [ 16] [6213544001621959] +11:38:14 [ 3] [ 6] [010000] +11:38:14 [ 4] [ 12] [000030000000] +11:38:14 [ 7] [ 10] [0320113604] +11:38:14 [ 11] [ 6] [941793] +11:38:14 [ 12] [ 6] [113604] +11:38:14 [ 13] [ 4] [0320] +11:38:14 [ 15] [ 4] [0320] +11:38:14 [ 18] [ 4] [6011] +11:38:14 [ 19] [ 3] [418] +11:38:14 [ 22] [ 3] [021] +11:38:14 [ 25] [ 2] [01] +11:38:14 [ 28] [ 9] [D00002000] +11:38:14 [ 32] [ 6] [668899] +11:38:14 [ 35] [ 32] [6213544001621959=491212012195983] +11:38:14 [ 37] [ 12] [507900270927] +11:38:14 [ 41] [ 8] [03010004] +11:38:14 [ 42] [ 15] [APT ] +11:38:14 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:38:14 [ 49] [ 3] [418] +11:38:14 [ 52] [ 16] [1B6B83E14D8EC223] +11:38:14 ============================================================================ +11:38:14 + + +waiting on router queue for slot.... +11:38:14 Sending to : <0> +11:38:14 ============================================================================ +11:38:14 ============================================================================ +11:38:14 Slot Id : <304> +11:38:14 Transaction Type : REQUEST +11:38:14 Received From : +11:38:14 ============================================================================ +11:38:14 FNo. Len. Field Value +11:38:14 ============================================================================ +11:38:14 [ 1] [ 4] [0200] +11:38:14 [ 2] [ 16] [6213541000320542] +11:38:14 [ 3] [ 6] [010000] +11:38:14 [ 4] [ 12] [000100000000] +11:38:14 [ 7] [ 10] [0320043721] +11:38:14 [ 11] [ 6] [268603] +11:38:14 [ 12] [ 6] [113720] +11:38:14 [ 13] [ 4] [0320] +11:38:14 [ 14] [ 4] [4912] +11:38:14 [ 15] [ 4] [0320] +11:38:14 [ 18] [ 4] [6011] +11:38:14 [ 19] [ 3] [418] +11:38:14 [ 22] [ 3] [021] +11:38:14 [ 25] [ 2] [01] +11:38:14 [ 28] [ 9] [D00002000] +11:38:14 [ 32] [ 6] [180893] +11:38:14 [ 35] [ 32] [6213541000320542=491212012054325] +11:38:14 [ 37] [ 12] [507904268603] +11:38:14 [ 41] [ 8] [0324BKDT] +11:38:14 [ 42] [ 15] [999999 ] +11:38:14 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:38:14 [ 49] [ 3] [418] +11:38:14 [ 52] [ 16] [CF8B0EB5B4436A33] +11:38:14 ============================================================================ +11:38:14 + + +waiting on router queue for slot.... +11:38:14 Sending to : +11:38:14 ============================================================================ +11:38:14 ============================================================================ +11:38:14 Slot Id : <304> +11:38:14 Transaction Type : REQUEST +11:38:14 Received From : +11:38:14 ============================================================================ +11:38:14 FNo. Len. Field Value +11:38:14 ============================================================================ +11:38:14 [ 1] [ 4] [0200] +11:38:14 [ 2] [ 16] [6213541000320542] +11:38:14 [ 3] [ 6] [010000] +11:38:14 [ 4] [ 12] [000100000000] +11:38:14 [ 7] [ 10] [0320043721] +11:38:14 [ 11] [ 6] [268603] +11:38:14 [ 12] [ 6] [113720] +11:38:14 [ 13] [ 4] [0320] +11:38:14 [ 14] [ 4] [4912] +11:38:14 [ 15] [ 4] [0320] +11:38:14 [ 18] [ 4] [6011] +11:38:14 [ 19] [ 3] [418] +11:38:14 [ 22] [ 3] [021] +11:38:14 [ 25] [ 2] [01] +11:38:14 [ 28] [ 9] [D00002000] +11:38:14 [ 32] [ 6] [180893] +11:38:14 [ 35] [ 32] [6213541000320542=491212012054325] +11:38:14 [ 37] [ 12] [507904268603] +11:38:14 [ 41] [ 8] [0324BKDT] +11:38:14 [ 42] [ 15] [999999 ] +11:38:14 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:38:14 [ 49] [ 3] [418] +11:38:14 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:38:14 ============================================================================ +11:38:14 + + +waiting on router queue for slot.... +11:38:14 Sending to : <0> +11:38:14 ============================================================================ +11:38:14 ============================================================================ +11:38:14 Slot Id : <315> +11:38:14 Transaction Type : RESPONSE +11:38:14 Received From : +11:38:14 ============================================================================ +11:38:14 FNo. Len. Field Value +11:38:14 ============================================================================ +11:38:14 [ 1] [ 4] [0210] +11:38:14 [ 2] [ 16] [6213544001621959] +11:38:14 [ 3] [ 6] [010000] +11:38:14 [ 4] [ 12] [000030000000] +11:38:14 [ 7] [ 10] [0320113604] +11:38:14 [ 11] [ 6] [941793] +11:38:14 [ 12] [ 6] [113604] +11:38:14 [ 13] [ 4] [0320] +11:38:14 [ 15] [ 4] [0320] +11:38:14 [ 18] [ 4] [6011] +11:38:14 [ 19] [ 3] [418] +11:38:14 [ 32] [ 6] [668899] +11:38:14 [ 35] [ 32] [6213544001621959=491212012195983] +11:38:14 [ 37] [ 12] [507900270927] +11:38:14 [ 38] [ 6] [806821] +11:38:14 [ 39] [ 2] [00] +11:38:14 [ 41] [ 8] [03010004] +11:38:14 [ 49] [ 3] [418] +11:38:14 [ 54] [ 40] [0001418C0003779459470002418C000377945947] +11:38:14 ============================================================================ +11:38:14 Sending to : +11:38:14 ============================================================================ +11:38:14 + + +waiting on router queue for slot.... +11:38:15 ============================================================================ +11:38:15 Slot Id : <304> +11:38:15 Transaction Type : RESPONSE +11:38:15 Received From : +11:38:15 ============================================================================ +11:38:15 FNo. Len. Field Value +11:38:15 ============================================================================ +11:38:15 [ 1] [ 4] [0210] +11:38:15 [ 2] [ 16] [6213541000320542] +11:38:15 [ 3] [ 6] [010000] +11:38:15 [ 4] [ 12] [000100000000] +11:38:15 [ 7] [ 10] [0320043721] +11:38:15 [ 11] [ 6] [268603] +11:38:15 [ 12] [ 6] [113720] +11:38:15 [ 13] [ 4] [0320] +11:38:15 [ 15] [ 4] [0320] +11:38:15 [ 18] [ 4] [6011] +11:38:15 [ 19] [ 3] [418] +11:38:15 [ 32] [ 6] [180893] +11:38:15 [ 35] [ 32] [6213541000320542=491212012054325] +11:38:15 [ 37] [ 12] [507904268603] +11:38:15 [ 38] [ 6] [018597] +11:38:15 [ 39] [ 2] [00] +11:38:15 [ 41] [ 8] [0324BKDT] +11:38:15 [ 49] [ 3] [418] +11:38:15 [ 54] [ 40] [0001418C0014906349510002418C001490634951] +11:38:15 ============================================================================ +11:38:15 Sending to : +11:38:15 ============================================================================ +11:38:15 + + +waiting on router queue for slot.... +11:38:16 ============================================================================ +11:38:16 Slot Id : <315> +11:38:16 Transaction Type : RESPONSE +11:38:16 Received From : +11:38:16 ============================================================================ +11:38:16 FNo. Len. Field Value +11:38:16 ============================================================================ +11:38:16 [ 1] [ 4] [0210] +11:38:16 [ 2] [ 16] [6213544001621959] +11:38:16 [ 3] [ 6] [010000] +11:38:16 [ 4] [ 12] [000030000000] +11:38:16 [ 7] [ 10] [0320113604] +11:38:16 [ 11] [ 6] [941793] +11:38:16 [ 12] [ 6] [113604] +11:38:16 [ 13] [ 4] [0320] +11:38:16 [ 15] [ 4] [0320] +11:38:16 [ 18] [ 4] [6011] +11:38:16 [ 19] [ 3] [418] +11:38:16 [ 32] [ 6] [668899] +11:38:16 [ 35] [ 32] [6213544001621959=491212012195983] +11:38:16 [ 37] [ 12] [507900270927] +11:38:16 [ 38] [ 6] [806821] +11:38:16 [ 39] [ 2] [00] +11:38:16 [ 41] [ 8] [03010004] +11:38:16 [ 49] [ 3] [418] +11:38:16 [ 54] [ 40] [0001418C0003779459470002418C000377945947] +11:38:16 ============================================================================ +11:38:16 Calculate Source COMM Id = 4 +11:38:16 ============================================================================ +11:38:16 + + +waiting on router queue for slot.... +11:38:17 ============================================================================ +11:38:17 Slot Id : <325> +11:38:17 Transaction Type : REQUEST +11:38:17 Received From : +11:38:17 ============================================================================ +11:38:17 FNo. Len. Field Value +11:38:17 ============================================================================ +11:38:17 [ 1] [ 4] [0200] +11:38:17 [ 2] [ 16] [1808930200050649] +11:38:17 [ 3] [ 6] [010000] +11:38:17 [ 4] [ 12] [000030000000] +11:38:17 [ 7] [ 10] [0320113813] +11:38:17 [ 11] [ 6] [732576] +11:38:17 [ 12] [ 6] [113813] +11:38:17 [ 13] [ 4] [0320] +11:38:17 [ 15] [ 4] [0320] +11:38:17 [ 18] [ 4] [6011] +11:38:17 [ 22] [ 3] [900] +11:38:17 [ 25] [ 2] [02] +11:38:17 [ 28] [ 9] [D00002000] +11:38:17 [ 32] [ 6] [621354] +11:38:17 [ 35] [ 27] [1808930200050649=1803500800] +11:38:17 [ 37] [ 12] [507904539630] +11:38:17 [ 41] [ 8] [02001600] +11:38:17 [ 42] [ 15] [NATIVE ] +11:38:17 [ 43] [ 40] [Thakek Hospital Thakek LAO] +11:38:17 [ 49] [ 3] [418] +11:38:17 [ 52] [ 16] [59C052819B97DABE] +11:38:17 ============================================================================ +11:38:17 + + +waiting on router queue for slot.... +11:38:17 Sending to : +11:38:17 ============================================================================ +11:38:17 Sending to : +11:38:17 ============================================================================ +11:38:17 ============================================================================ +11:38:17 Slot Id : <325> +11:38:17 Transaction Type : REQUEST +11:38:17 Received From : +11:38:17 ============================================================================ +11:38:17 FNo. Len. Field Value +11:38:17 ============================================================================ +11:38:17 [ 1] [ 4] [0200] +11:38:17 [ 2] [ 16] [1808930200050649] +11:38:17 [ 3] [ 6] [010000] +11:38:17 [ 4] [ 12] [000030000000] +11:38:17 [ 7] [ 10] [0320113813] +11:38:17 [ 11] [ 6] [732576] +11:38:17 [ 12] [ 6] [113813] +11:38:17 [ 13] [ 4] [0320] +11:38:17 [ 15] [ 4] [0320] +11:38:17 [ 18] [ 4] [6011] +11:38:17 [ 22] [ 3] [900] +11:38:17 [ 25] [ 2] [02] +11:38:17 [ 28] [ 9] [D00002000] +11:38:17 [ 32] [ 6] [621354] +11:38:17 [ 35] [ 27] [1808930200050649=1803500800] +11:38:17 [ 37] [ 12] [507904539630] +11:38:17 [ 41] [ 8] [02001600] +11:38:17 [ 42] [ 15] [NATIVE ] +11:38:17 [ 43] [ 40] [Thakek Hospital Thakek LAO] +11:38:17 [ 49] [ 3] [418] +11:38:17 [ 52] [ 16] [59C052819B97DABE] +11:38:17 ============================================================================ +11:38:17 + + +waiting on router queue for slot.... +11:38:17 Sending to : +11:38:17 ============================================================================ +11:38:17 ============================================================================ +11:38:17 Slot Id : <325> +11:38:17 Transaction Type : REQUEST +11:38:17 Received From : +11:38:17 ============================================================================ +11:38:17 FNo. Len. Field Value +11:38:17 ============================================================================ +11:38:17 [ 1] [ 4] [0200] +11:38:17 [ 2] [ 16] [1808930200050649] +11:38:17 [ 3] [ 6] [010000] +11:38:17 [ 4] [ 12] [000030000000] +11:38:17 [ 7] [ 10] [0320113813] +11:38:17 [ 11] [ 6] [732576] +11:38:17 [ 12] [ 6] [113813] +11:38:17 [ 13] [ 4] [0320] +11:38:17 [ 15] [ 4] [0320] +11:38:17 [ 18] [ 4] [6011] +11:38:17 [ 22] [ 3] [900] +11:38:17 [ 25] [ 2] [02] +11:38:17 [ 28] [ 9] [D00002000] +11:38:17 [ 32] [ 6] [621354] +11:38:17 [ 35] [ 27] [1808930200050649=1803500800] +11:38:17 [ 37] [ 12] [507904539630] +11:38:17 [ 41] [ 8] [02001600] +11:38:17 [ 42] [ 15] [NATIVE ] +11:38:17 [ 43] [ 40] [Thakek Hospital Thakek LAO] +11:38:17 [ 49] [ 3] [418] +11:38:17 [ 52] [ 16] [F187EFD45418CE68] +11:38:17 ============================================================================ +11:38:17 + + +waiting on router queue for slot.... +11:38:17 Sending to : <2> +11:38:17 ============================================================================ +11:38:17 ============================================================================ +11:38:17 Slot Id : <304> +11:38:17 Transaction Type : RESPONSE +11:38:17 Received From : +11:38:17 ============================================================================ +11:38:17 FNo. Len. Field Value +11:38:17 ============================================================================ +11:38:17 [ 1] [ 4] [0210] +11:38:17 [ 2] [ 16] [6213541000320542] +11:38:17 [ 3] [ 6] [010000] +11:38:17 [ 4] [ 12] [000100000000] +11:38:17 [ 7] [ 10] [0320043721] +11:38:17 [ 11] [ 6] [268603] +11:38:17 [ 12] [ 6] [113720] +11:38:17 [ 13] [ 4] [0320] +11:38:17 [ 15] [ 4] [0320] +11:38:17 [ 18] [ 4] [6011] +11:38:17 [ 19] [ 3] [418] +11:38:17 [ 32] [ 6] [180893] +11:38:17 [ 35] [ 32] [6213541000320542=491212012054325] +11:38:17 [ 37] [ 12] [507904268603] +11:38:17 [ 38] [ 6] [018597] +11:38:17 [ 39] [ 2] [00] +11:38:17 [ 41] [ 8] [0324BKDT] +11:38:17 [ 49] [ 3] [418] +11:38:17 [ 54] [ 40] [0001418C0014906349510002418C001490634951] +11:38:17 ============================================================================ +11:38:17 Calculate Source COMM Id = 2 +11:38:17 ============================================================================ +11:38:17 + + +waiting on router queue for slot.... +11:38:19 ============================================================================ +11:38:19 Slot Id : <325> +11:38:19 Transaction Type : RESPONSE +11:38:19 Received From : +11:38:19 ============================================================================ +11:38:19 FNo. Len. Field Value +11:38:19 ============================================================================ +11:38:19 [ 1] [ 4] [0210] +11:38:19 [ 2] [ 16] [1808930200050649] +11:38:19 [ 3] [ 6] [010000] +11:38:19 [ 4] [ 12] [000030000000] +11:38:19 [ 6] [ 12] [000030000000] +11:38:19 [ 7] [ 10] [0320113813] +11:38:19 [ 11] [ 6] [732576] +11:38:19 [ 12] [ 6] [113813] +11:38:19 [ 13] [ 4] [0320] +11:38:19 [ 18] [ 4] [6011] +11:38:19 [ 19] [ 3] [418] +11:38:19 [ 22] [ 3] [021] +11:38:19 [ 28] [ 9] [D00002000] +11:38:19 [ 32] [ 6] [621354] +11:38:19 [ 35] [ 27] [1808930200050649=1803500800] +11:38:19 [ 37] [ 12] [507904539630] +11:38:19 [ 39] [ 2] [55] +11:38:19 [ 41] [ 8] [02001600] +11:38:19 [ 49] [ 3] [418] +11:38:19 [ 51] [ 3] [418] +11:38:19 [ 52] [ 16] [F187EFD45418CE68] +11:38:19 ============================================================================ +11:38:19 Sending to : +11:38:19 ============================================================================ +11:38:19 + + +waiting on router queue for slot.... +11:38:20 ============================================================================ +11:38:20 Slot Id : <325> +11:38:20 Transaction Type : RESPONSE +11:38:20 Received From : +11:38:20 ============================================================================ +11:38:20 FNo. Len. Field Value +11:38:20 ============================================================================ +11:38:20 [ 1] [ 4] [0210] +11:38:20 [ 2] [ 16] [1808930200050649] +11:38:20 [ 3] [ 6] [010000] +11:38:20 [ 4] [ 12] [000030000000] +11:38:20 [ 6] [ 12] [000030000000] +11:38:20 [ 7] [ 10] [0320113813] +11:38:20 [ 11] [ 6] [732576] +11:38:20 [ 12] [ 6] [113813] +11:38:20 [ 13] [ 4] [0320] +11:38:20 [ 18] [ 4] [6011] +11:38:20 [ 19] [ 3] [418] +11:38:20 [ 22] [ 3] [021] +11:38:20 [ 28] [ 9] [D00002000] +11:38:20 [ 32] [ 6] [621354] +11:38:20 [ 35] [ 27] [1808930200050649=1803500800] +11:38:20 [ 37] [ 12] [507904539630] +11:38:20 [ 39] [ 2] [55] +11:38:20 [ 41] [ 8] [02001600] +11:38:20 [ 49] [ 3] [418] +11:38:20 [ 51] [ 3] [418] +11:38:20 [ 52] [ 16] [F187EFD45418CE68] +11:38:20 ============================================================================ +11:38:20 Calculate Source COMM Id = 0 +11:38:20 ============================================================================ +11:38:20 + + +waiting on router queue for slot.... +11:38:28 ============================================================================ +11:38:28 Slot Id : <285> +11:38:28 Transaction Type : REQUEST +11:38:28 Received From : +11:38:28 ============================================================================ +11:38:28 FNo. Len. Field Value +11:38:28 ============================================================================ +11:38:28 [ 1] [ 4] [0200] +11:38:28 [ 2] [ 16] [6213541000698939] +11:38:28 [ 3] [ 6] [301000] +11:38:28 [ 7] [ 10] [0320043733] +11:38:28 [ 11] [ 6] [268607] +11:38:28 [ 12] [ 6] [113733] +11:38:28 [ 13] [ 4] [0320] +11:38:28 [ 14] [ 4] [4912] +11:38:28 [ 15] [ 4] [0320] +11:38:28 [ 18] [ 4] [6011] +11:38:28 [ 19] [ 3] [418] +11:38:28 [ 22] [ 3] [021] +11:38:28 [ 25] [ 2] [01] +11:38:28 [ 32] [ 6] [180893] +11:38:28 [ 35] [ 32] [6213541000698939=491212019893882] +11:38:28 [ 37] [ 12] [507904268607] +11:38:28 [ 41] [ 8] [0106NAXA] +11:38:28 [ 42] [ 15] [999999 ] +11:38:28 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +11:38:28 [ 49] [ 3] [418] +11:38:28 [ 52] [ 16] [2A9FE8C1CBF1A61F] +11:38:28 ============================================================================ +11:38:28 + + +waiting on router queue for slot.... +11:38:28 Sending to : +11:38:28 ============================================================================ +11:38:28 Sending to : +11:38:28 ============================================================================ +11:38:28 ============================================================================ +11:38:28 Slot Id : <285> +11:38:28 Transaction Type : REQUEST +11:38:28 Received From : +11:38:28 ============================================================================ +11:38:28 FNo. Len. Field Value +11:38:28 ============================================================================ +11:38:28 [ 1] [ 4] [0200] +11:38:28 [ 2] [ 16] [6213541000698939] +11:38:28 [ 3] [ 6] [301000] +11:38:28 [ 7] [ 10] [0320043733] +11:38:28 [ 11] [ 6] [268607] +11:38:28 [ 12] [ 6] [113733] +11:38:28 [ 13] [ 4] [0320] +11:38:28 [ 14] [ 4] [4912] +11:38:28 [ 15] [ 4] [0320] +11:38:28 [ 18] [ 4] [6011] +11:38:28 [ 19] [ 3] [418] +11:38:28 [ 22] [ 3] [021] +11:38:28 [ 25] [ 2] [01] +11:38:28 [ 32] [ 6] [180893] +11:38:28 [ 35] [ 32] [6213541000698939=491212019893882] +11:38:28 [ 37] [ 12] [507904268607] +11:38:28 [ 41] [ 8] [0106NAXA] +11:38:28 [ 42] [ 15] [999999 ] +11:38:28 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +11:38:28 [ 49] [ 3] [418] +11:38:28 [ 52] [ 16] [2A9FE8C1CBF1A61F] +11:38:28 ============================================================================ +11:38:28 + + +waiting on router queue for slot.... +11:38:28 Sending to : +11:38:28 ============================================================================ +11:38:28 ============================================================================ +11:38:28 Slot Id : <285> +11:38:28 Transaction Type : REQUEST +11:38:28 Received From : +11:38:28 ============================================================================ +11:38:28 FNo. Len. Field Value +11:38:28 ============================================================================ +11:38:28 [ 1] [ 4] [0200] +11:38:28 [ 2] [ 16] [6213541000698939] +11:38:28 [ 3] [ 6] [301000] +11:38:28 [ 7] [ 10] [0320043733] +11:38:28 [ 11] [ 6] [268607] +11:38:28 [ 12] [ 6] [113733] +11:38:28 [ 13] [ 4] [0320] +11:38:28 [ 14] [ 4] [4912] +11:38:28 [ 15] [ 4] [0320] +11:38:28 [ 18] [ 4] [6011] +11:38:28 [ 19] [ 3] [418] +11:38:28 [ 22] [ 3] [021] +11:38:28 [ 25] [ 2] [01] +11:38:28 [ 32] [ 6] [180893] +11:38:28 [ 35] [ 32] [6213541000698939=491212019893882] +11:38:28 [ 37] [ 12] [507904268607] +11:38:28 [ 41] [ 8] [0106NAXA] +11:38:28 [ 42] [ 15] [999999 ] +11:38:28 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +11:38:28 [ 49] [ 3] [418] +11:38:28 [ 52] [ 16] [EA791F877CAFAECB] +11:38:28 ============================================================================ +11:38:28 + + +waiting on router queue for slot.... +11:38:28 Sending to : <0> +11:38:28 ============================================================================ +11:38:28 ============================================================================ +11:38:28 Slot Id : <285> +11:38:28 Transaction Type : RESPONSE +11:38:28 Received From : +11:38:28 ============================================================================ +11:38:28 FNo. Len. Field Value +11:38:28 ============================================================================ +11:38:28 [ 1] [ 4] [0210] +11:38:28 [ 2] [ 16] [6213541000698939] +11:38:28 [ 3] [ 6] [301000] +11:38:28 [ 4] [ 12] [000000000000] +11:38:28 [ 7] [ 10] [0320043733] +11:38:28 [ 11] [ 6] [268607] +11:38:28 [ 12] [ 6] [113733] +11:38:28 [ 13] [ 4] [0320] +11:38:28 [ 15] [ 4] [0320] +11:38:28 [ 18] [ 4] [6011] +11:38:28 [ 19] [ 3] [418] +11:38:28 [ 32] [ 6] [180893] +11:38:28 [ 35] [ 32] [6213541000698939=491212019893882] +11:38:28 [ 37] [ 12] [507904268607] +11:38:28 [ 38] [ 6] [269835] +11:38:28 [ 39] [ 2] [00] +11:38:28 [ 41] [ 8] [0106NAXA] +11:38:28 [ 49] [ 3] [418] +11:38:28 [ 54] [ 40] [1001418C0001385140001002418C000138514000] +11:38:28 ============================================================================ +11:38:28 Sending to : +11:38:28 ============================================================================ +11:38:28 + + +waiting on router queue for slot.... +11:38:30 ============================================================================ +11:38:30 Slot Id : <285> +11:38:30 Transaction Type : RESPONSE +11:38:30 Received From : +11:38:30 ============================================================================ +11:38:30 FNo. Len. Field Value +11:38:30 ============================================================================ +11:38:30 [ 1] [ 4] [0210] +11:38:30 [ 2] [ 16] [6213541000698939] +11:38:30 [ 3] [ 6] [301000] +11:38:30 [ 4] [ 12] [000000000000] +11:38:30 [ 7] [ 10] [0320043733] +11:38:30 [ 11] [ 6] [268607] +11:38:30 [ 12] [ 6] [113733] +11:38:30 [ 13] [ 4] [0320] +11:38:30 [ 15] [ 4] [0320] +11:38:30 [ 18] [ 4] [6011] +11:38:30 [ 19] [ 3] [418] +11:38:30 [ 32] [ 6] [180893] +11:38:30 [ 35] [ 32] [6213541000698939=491212019893882] +11:38:30 [ 37] [ 12] [507904268607] +11:38:30 [ 38] [ 6] [269835] +11:38:30 [ 39] [ 2] [00] +11:38:30 [ 41] [ 8] [0106NAXA] +11:38:30 [ 49] [ 3] [418] +11:38:30 [ 54] [ 40] [1001418C0001385140001002418C000138514000] +11:38:30 ============================================================================ +11:38:30 Calculate Source COMM Id = 2 +11:38:30 ============================================================================ +11:38:30 + + +waiting on router queue for slot.... +11:38:34 ============================================================================ +11:38:34 Slot Id : <289> +11:38:34 Transaction Type : REQUEST +11:38:34 Received From : +11:38:34 ============================================================================ +11:38:34 FNo. Len. Field Value +11:38:34 ============================================================================ +11:38:34 [ 1] [ 4] [0200] +11:38:34 [ 2] [ 16] [6213545001004716] +11:38:34 [ 3] [ 6] [010000] +11:38:34 [ 4] [ 12] [000100000000] +11:38:34 [ 7] [ 10] [0320043742] +11:38:34 [ 11] [ 6] [268610] +11:38:34 [ 12] [ 6] [113742] +11:38:34 [ 13] [ 4] [0320] +11:38:34 [ 14] [ 4] [4912] +11:38:34 [ 15] [ 4] [0320] +11:38:34 [ 18] [ 4] [6011] +11:38:34 [ 19] [ 3] [418] +11:38:34 [ 22] [ 3] [021] +11:38:34 [ 25] [ 2] [01] +11:38:34 [ 28] [ 9] [D00002000] +11:38:34 [ 32] [ 6] [180893] +11:38:34 [ 35] [ 32] [6213545001004716=491212010471062] +11:38:34 [ 37] [ 12] [507904268610] +11:38:34 [ 41] [ 8] [0363CPSH] +11:38:34 [ 42] [ 15] [999999 ] +11:38:34 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:38:34 [ 49] [ 3] [418] +11:38:34 [ 52] [ 16] [880A064C2D33AADB] +11:38:34 ============================================================================ +11:38:34 + + +waiting on router queue for slot.... +11:38:34 Sending to : +11:38:34 ============================================================================ +11:38:34 Sending to : +11:38:34 ============================================================================ +11:38:35 ============================================================================ +11:38:35 Slot Id : <289> +11:38:35 Transaction Type : REQUEST +11:38:35 Received From : +11:38:35 ============================================================================ +11:38:35 FNo. Len. Field Value +11:38:35 ============================================================================ +11:38:35 [ 1] [ 4] [0200] +11:38:35 [ 2] [ 16] [6213545001004716] +11:38:35 [ 3] [ 6] [010000] +11:38:35 [ 4] [ 12] [000100000000] +11:38:35 [ 7] [ 10] [0320043742] +11:38:35 [ 11] [ 6] [268610] +11:38:35 [ 12] [ 6] [113742] +11:38:35 [ 13] [ 4] [0320] +11:38:35 [ 14] [ 4] [4912] +11:38:35 [ 15] [ 4] [0320] +11:38:35 [ 18] [ 4] [6011] +11:38:35 [ 19] [ 3] [418] +11:38:35 [ 22] [ 3] [021] +11:38:35 [ 25] [ 2] [01] +11:38:35 [ 28] [ 9] [D00002000] +11:38:35 [ 32] [ 6] [180893] +11:38:35 [ 35] [ 32] [6213545001004716=491212010471062] +11:38:35 [ 37] [ 12] [507904268610] +11:38:35 [ 41] [ 8] [0363CPSH] +11:38:35 [ 42] [ 15] [999999 ] +11:38:35 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:38:35 [ 49] [ 3] [418] +11:38:35 [ 52] [ 16] [880A064C2D33AADB] +11:38:35 ============================================================================ +11:38:35 + + +waiting on router queue for slot.... +11:38:35 Sending to : +11:38:35 ============================================================================ +11:38:35 ============================================================================ +11:38:35 Slot Id : <289> +11:38:35 Transaction Type : REQUEST +11:38:35 Received From : +11:38:35 ============================================================================ +11:38:35 FNo. Len. Field Value +11:38:35 ============================================================================ +11:38:35 [ 1] [ 4] [0200] +11:38:35 [ 2] [ 16] [6213545001004716] +11:38:35 [ 3] [ 6] [010000] +11:38:35 [ 4] [ 12] [000100000000] +11:38:35 [ 7] [ 10] [0320043742] +11:38:35 [ 11] [ 6] [268610] +11:38:35 [ 12] [ 6] [113742] +11:38:35 [ 13] [ 4] [0320] +11:38:35 [ 14] [ 4] [4912] +11:38:35 [ 15] [ 4] [0320] +11:38:35 [ 18] [ 4] [6011] +11:38:35 [ 19] [ 3] [418] +11:38:35 [ 22] [ 3] [021] +11:38:35 [ 25] [ 2] [01] +11:38:35 [ 28] [ 9] [D00002000] +11:38:35 [ 32] [ 6] [180893] +11:38:35 [ 35] [ 32] [6213545001004716=491212010471062] +11:38:35 [ 37] [ 12] [507904268610] +11:38:35 [ 41] [ 8] [0363CPSH] +11:38:35 [ 42] [ 15] [999999 ] +11:38:35 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +11:38:35 [ 49] [ 3] [418] +11:38:35 [ 52] [ 16] [E9421879D130419E] +11:38:35 ============================================================================ +11:38:35 + + +waiting on router queue for slot.... +11:38:35 Sending to : <0> +11:38:35 ============================================================================ +11:38:35 ============================================================================ +11:38:35 Slot Id : <289> +11:38:35 Transaction Type : RESPONSE +11:38:35 Received From : +11:38:35 ============================================================================ +11:38:35 FNo. Len. Field Value +11:38:35 ============================================================================ +11:38:35 [ 1] [ 4] [0210] +11:38:35 [ 2] [ 16] [6213545001004716] +11:38:35 [ 3] [ 6] [010000] +11:38:35 [ 4] [ 12] [000100000000] +11:38:35 [ 7] [ 10] [0320043742] +11:38:35 [ 11] [ 6] [268610] +11:38:35 [ 12] [ 6] [113742] +11:38:35 [ 13] [ 4] [0320] +11:38:35 [ 15] [ 4] [0320] +11:38:35 [ 18] [ 4] [6011] +11:38:35 [ 19] [ 3] [418] +11:38:35 [ 32] [ 6] [180893] +11:38:35 [ 35] [ 32] [6213545001004716=491212010471062] +11:38:35 [ 37] [ 12] [507904268610] +11:38:35 [ 38] [ 6] [047702] +11:38:35 [ 39] [ 2] [00] +11:38:35 [ 41] [ 8] [0363CPSH] +11:38:35 [ 49] [ 3] [418] +11:38:35 [ 54] [ 40] [0001418C0000077968950002418C000007796895] +11:38:35 ============================================================================ +11:38:35 Sending to : +11:38:35 ============================================================================ +11:38:35 + + +waiting on router queue for slot.... +11:38:37 ============================================================================ +11:38:37 Slot Id : <297> +11:38:37 Transaction Type : REQUEST +11:38:37 Received From : +11:38:37 ============================================================================ +11:38:37 FNo. Len. Field Value +11:38:37 ============================================================================ +11:38:37 [ 1] [ 4] [0200] +11:38:37 [ 2] [ 16] [1808930200050649] +11:38:37 [ 3] [ 6] [010000] +11:38:37 [ 4] [ 12] [000030000000] +11:38:37 [ 7] [ 10] [0320113833] +11:38:37 [ 11] [ 6] [732689] +11:38:37 [ 12] [ 6] [113833] +11:38:37 [ 13] [ 4] [0320] +11:38:37 [ 15] [ 4] [0320] +11:38:37 [ 18] [ 4] [6011] +11:38:37 [ 22] [ 3] [900] +11:38:37 [ 25] [ 2] [02] +11:38:37 [ 28] [ 9] [D00002000] +11:38:37 [ 32] [ 6] [621354] +11:38:37 [ 35] [ 27] [1808930200050649=1803500800] +11:38:37 [ 37] [ 12] [507904539632] +11:38:37 [ 41] [ 8] [02001600] +11:38:37 [ 42] [ 15] [NATIVE ] +11:38:37 [ 43] [ 40] [Thakek Hospital Thakek LAO] +11:38:37 [ 49] [ 3] [418] +11:38:37 [ 52] [ 16] [77FB3705978E0BED] +11:38:37 ============================================================================ +11:38:37 + + +waiting on router queue for slot.... +11:38:37 Sending to : +11:38:37 ============================================================================ +11:38:37 Sending to : +11:38:37 ============================================================================ +11:38:37 ============================================================================ +11:38:37 Slot Id : <289> +11:38:37 Transaction Type : RESPONSE +11:38:37 Received From : +11:38:37 ============================================================================ +11:38:37 FNo. Len. Field Value +11:38:37 ============================================================================ +11:38:37 [ 1] [ 4] [0210] +11:38:37 [ 2] [ 16] [6213545001004716] +11:38:37 [ 3] [ 6] [010000] +11:38:37 [ 4] [ 12] [000100000000] +11:38:37 [ 7] [ 10] [0320043742] +11:38:37 [ 11] [ 6] [268610] +11:38:37 [ 12] [ 6] [113742] +11:38:37 [ 13] [ 4] [0320] +11:38:37 [ 15] [ 4] [0320] +11:38:37 [ 18] [ 4] [6011] +11:38:37 [ 19] [ 3] [418] +11:38:37 [ 32] [ 6] [180893] +11:38:37 [ 35] [ 32] [6213545001004716=491212010471062] +11:38:37 [ 37] [ 12] [507904268610] +11:38:37 [ 38] [ 6] [047702] +11:38:37 [ 39] [ 2] [00] +11:38:37 [ 41] [ 8] [0363CPSH] +11:38:37 [ 49] [ 3] [418] +11:38:37 [ 54] [ 40] [0001418C0000077968950002418C000007796895] +11:38:37 ============================================================================ +11:38:37 Calculate Source COMM Id = 2 +11:38:37 ============================================================================ +11:38:37 + + +waiting on router queue for slot.... +11:38:37 ============================================================================ +11:38:37 Slot Id : <297> +11:38:37 Transaction Type : REQUEST +11:38:37 Received From : +11:38:37 ============================================================================ +11:38:37 FNo. Len. Field Value +11:38:37 ============================================================================ +11:38:37 [ 1] [ 4] [0200] +11:38:37 [ 2] [ 16] [1808930200050649] +11:38:37 [ 3] [ 6] [010000] +11:38:37 [ 4] [ 12] [000030000000] +11:38:37 [ 7] [ 10] [0320113833] +11:38:37 [ 11] [ 6] [732689] +11:38:37 [ 12] [ 6] [113833] +11:38:37 [ 13] [ 4] [0320] +11:38:37 [ 15] [ 4] [0320] +11:38:37 [ 18] [ 4] [6011] +11:38:37 [ 22] [ 3] [900] +11:38:37 [ 25] [ 2] [02] +11:38:37 [ 28] [ 9] [D00002000] +11:38:37 [ 32] [ 6] [621354] +11:38:37 [ 35] [ 27] [1808930200050649=1803500800] +11:38:37 [ 37] [ 12] [507904539632] +11:38:37 [ 41] [ 8] [02001600] +11:38:37 [ 42] [ 15] [NATIVE ] +11:38:37 [ 43] [ 40] [Thakek Hospital Thakek LAO] +11:38:37 [ 49] [ 3] [418] +11:38:37 [ 52] [ 16] [77FB3705978E0BED] +11:38:37 ============================================================================ +11:38:37 + + +waiting on router queue for slot.... +11:38:37 Sending to : +11:38:37 ============================================================================ +11:38:37 ============================================================================ +11:38:37 Slot Id : <297> +11:38:37 Transaction Type : REQUEST +11:38:37 Received From : +11:38:37 ============================================================================ +11:38:37 FNo. Len. Field Value +11:38:37 ============================================================================ +11:38:37 [ 1] [ 4] [0200] +11:38:37 [ 2] [ 16] [1808930200050649] +11:38:37 [ 3] [ 6] [010000] +11:38:37 [ 4] [ 12] [000030000000] +11:38:37 [ 7] [ 10] [0320113833] +11:38:37 [ 11] [ 6] [732689] +11:38:37 [ 12] [ 6] [113833] +11:38:37 [ 13] [ 4] [0320] +11:38:37 [ 15] [ 4] [0320] +11:38:37 [ 18] [ 4] [6011] +11:38:37 [ 22] [ 3] [900] +11:38:37 [ 25] [ 2] [02] +11:38:37 [ 28] [ 9] [D00002000] +11:38:37 [ 32] [ 6] [621354] +11:38:37 [ 35] [ 27] [1808930200050649=1803500800] +11:38:37 [ 37] [ 12] [507904539632] +11:38:37 [ 41] [ 8] [02001600] +11:38:37 [ 42] [ 15] [NATIVE ] +11:38:37 [ 43] [ 40] [Thakek Hospital Thakek LAO] +11:38:37 [ 49] [ 3] [418] +11:38:37 [ 52] [ 16] [CDECED4E3FC2C260] +11:38:37 ============================================================================ +11:38:37 + + +waiting on router queue for slot.... +11:38:37 Sending to : <2> +11:38:37 ============================================================================ +11:38:42 ============================================================================ +11:38:42 Slot Id : <297> +11:38:42 Transaction Type : RESPONSE +11:38:42 Received From : +11:38:42 ============================================================================ +11:38:42 FNo. Len. Field Value +11:38:42 ============================================================================ +11:38:42 [ 1] [ 4] [0210] +11:38:42 [ 2] [ 16] [1808930200050649] +11:38:42 [ 3] [ 6] [010000] +11:38:42 [ 4] [ 12] [000030000000] +11:38:42 [ 6] [ 12] [000030000000] +11:38:42 [ 7] [ 10] [0320113833] +11:38:42 [ 11] [ 6] [732689] +11:38:42 [ 12] [ 6] [113833] +11:38:42 [ 13] [ 4] [0320] +11:38:42 [ 18] [ 4] [6011] +11:38:42 [ 19] [ 3] [418] +11:38:42 [ 22] [ 3] [021] +11:38:42 [ 32] [ 6] [621354] +11:38:42 [ 35] [ 27] [1808930200050649=1803500800] +11:38:42 [ 37] [ 12] [507904539632] +11:38:42 [ 38] [ 6] [732689] +11:38:42 [ 39] [ 2] [00] +11:38:42 [ 41] [ 8] [02001600] +11:38:42 [ 49] [ 3] [418] +11:38:42 [ 52] [ 16] [CDECED4E3FC2C260] +11:38:42 [ 54] [ 20] [1001418C000104578300] +11:38:42 ============================================================================ +11:38:42 Sending to : +11:38:42 ============================================================================ +11:38:42 + + +waiting on router queue for slot.... +11:38:44 ============================================================================ +11:38:44 Slot Id : <297> +11:38:44 Transaction Type : RESPONSE +11:38:44 Received From : +11:38:44 ============================================================================ +11:38:44 FNo. Len. Field Value +11:38:44 ============================================================================ +11:38:44 [ 1] [ 4] [0210] +11:38:44 [ 2] [ 16] [1808930200050649] +11:38:44 [ 3] [ 6] [010000] +11:38:44 [ 4] [ 12] [000030000000] +11:38:44 [ 6] [ 12] [000030000000] +11:38:44 [ 7] [ 10] [0320113833] +11:38:44 [ 11] [ 6] [732689] +11:38:44 [ 12] [ 6] [113833] +11:38:44 [ 13] [ 4] [0320] +11:38:44 [ 18] [ 4] [6011] +11:38:44 [ 19] [ 3] [418] +11:38:44 [ 22] [ 3] [021] +11:38:44 [ 32] [ 6] [621354] +11:38:44 [ 35] [ 27] [1808930200050649=1803500800] +11:38:44 [ 37] [ 12] [507904539632] +11:38:44 [ 38] [ 6] [732689] +11:38:44 [ 39] [ 2] [00] +11:38:44 [ 41] [ 8] [02001600] +11:38:44 [ 49] [ 3] [418] +11:38:44 [ 52] [ 16] [CDECED4E3FC2C260] +11:38:44 [ 54] [ 20] [1001418C000104578300] +11:38:44 ============================================================================ +11:38:44 Calculate Source COMM Id = 0 +11:38:44 ============================================================================ +11:38:44 + + +waiting on router queue for slot.... +11:38:49 ============================================================================ +11:38:49 Slot Id : <291> +11:38:49 Transaction Type : REQUEST +11:38:49 Received From : +11:38:49 ============================================================================ +11:38:49 FNo. Len. Field Value +11:38:49 ============================================================================ +11:38:49 [ 1] [ 4] [0800] +11:38:49 [ 7] [ 10] [0320043757] +11:38:49 [ 11] [ 6] [156137] +11:38:49 [ 70] [ 3] [301] +11:38:49 ============================================================================ +11:38:49 + + +waiting on router queue for slot.... +11:38:49 Sending to : +11:38:49 ============================================================================ +11:38:49 ============================================================================ +11:38:49 Slot Id : <291> +11:38:49 Transaction Type : RESPONSE +11:38:49 Received From : +11:38:49 ============================================================================ +11:38:49 FNo. Len. Field Value +11:38:49 ============================================================================ +11:38:49 [ 1] [ 4] [0810] +11:38:49 [ 7] [ 10] [0320043757] +11:38:49 [ 11] [ 6] [156137] +11:38:49 [ 39] [ 2] [00] +11:38:49 [ 70] [ 3] [301] +11:38:49 ============================================================================ +11:38:49 Calculate Source COMM Id = 2 +11:38:49 ============================================================================ +11:38:49 + + +waiting on router queue for slot.... +11:38:54 ============================================================================ +11:38:54 Slot Id : <326> +11:38:54 Transaction Type : REQUEST +11:38:54 Received From : +11:38:54 ============================================================================ +11:38:54 FNo. Len. Field Value +11:38:54 ============================================================================ +11:38:54 [ 1] [ 4] [0200] +11:38:54 [ 2] [ 16] [6213545000703268] +11:38:54 [ 3] [ 6] [311000] +11:38:54 [ 4] [ 12] [000000000000] +11:38:54 [ 7] [ 10] [0320114641] +11:38:54 [ 11] [ 6] [107215] +11:38:54 [ 12] [ 6] [114641] +11:38:54 [ 13] [ 4] [0320] +11:38:54 [ 14] [ 4] [4912] +11:38:54 [ 15] [ 4] [0320] +11:38:54 [ 18] [ 4] [6011] +11:38:54 [ 22] [ 3] [900] +11:38:54 [ 25] [ 2] [02] +11:38:54 [ 28] [ 9] [000000000] +11:38:54 [ 32] [ 6] [220699] +11:38:54 [ 35] [ 32] [6213545000703268=491212010326840] +11:38:54 [ 37] [ 12] [507900327827] +11:38:54 [ 41] [ 8] [01001800] +11:38:54 [ 42] [ 15] [APTRA ] +11:38:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:38:54 [ 49] [ 3] [418] +11:38:54 [ 52] [ 16] [1502078DF376C490] +11:38:54 ============================================================================ +11:38:54 + + +waiting on router queue for slot.... +11:38:54 Sending to : +11:38:54 ============================================================================ +11:38:54 Sending to : +11:38:54 ============================================================================ +11:38:54 ============================================================================ +11:38:54 Slot Id : <326> +11:38:54 Transaction Type : REQUEST +11:38:54 Received From : +11:38:54 ============================================================================ +11:38:54 FNo. Len. Field Value +11:38:54 ============================================================================ +11:38:54 [ 1] [ 4] [0200] +11:38:54 [ 2] [ 16] [6213545000703268] +11:38:54 [ 3] [ 6] [311000] +11:38:54 [ 4] [ 12] [000000000000] +11:38:54 [ 7] [ 10] [0320114641] +11:38:54 [ 11] [ 6] [107215] +11:38:54 [ 12] [ 6] [114641] +11:38:54 [ 13] [ 4] [0320] +11:38:54 [ 14] [ 4] [4912] +11:38:54 [ 15] [ 4] [0320] +11:38:54 [ 18] [ 4] [6011] +11:38:54 [ 22] [ 3] [900] +11:38:54 [ 25] [ 2] [02] +11:38:54 [ 28] [ 9] [000000000] +11:38:54 [ 32] [ 6] [220699] +11:38:54 [ 35] [ 32] [6213545000703268=491212010326840] +11:38:54 [ 37] [ 12] [507900327827] +11:38:54 [ 41] [ 8] [01001800] +11:38:54 [ 42] [ 15] [APTRA ] +11:38:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:38:54 [ 49] [ 3] [418] +11:38:54 [ 52] [ 16] [1502078DF376C490] +11:38:54 ============================================================================ +11:38:54 + + +waiting on router queue for slot.... +11:38:54 Sending to : +11:38:54 ============================================================================ +11:38:54 ============================================================================ +11:38:54 Slot Id : <326> +11:38:54 Transaction Type : REQUEST +11:38:54 Received From : +11:38:54 ============================================================================ +11:38:54 FNo. Len. Field Value +11:38:54 ============================================================================ +11:38:54 [ 1] [ 4] [0200] +11:38:54 [ 2] [ 16] [6213545000703268] +11:38:54 [ 3] [ 6] [311000] +11:38:54 [ 4] [ 12] [000000000000] +11:38:54 [ 7] [ 10] [0320114641] +11:38:54 [ 11] [ 6] [107215] +11:38:54 [ 12] [ 6] [114641] +11:38:54 [ 13] [ 4] [0320] +11:38:54 [ 14] [ 4] [4912] +11:38:54 [ 15] [ 4] [0320] +11:38:54 [ 18] [ 4] [6011] +11:38:54 [ 22] [ 3] [900] +11:38:54 [ 25] [ 2] [02] +11:38:54 [ 28] [ 9] [000000000] +11:38:54 [ 32] [ 6] [220699] +11:38:54 [ 35] [ 32] [6213545000703268=491212010326840] +11:38:54 [ 37] [ 12] [507900327827] +11:38:54 [ 41] [ 8] [01001800] +11:38:54 [ 42] [ 15] [APTRA ] +11:38:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:38:54 [ 49] [ 3] [418] +11:38:54 [ 52] [ 16] [784EF48DB649BC78] +11:38:54 ============================================================================ +11:38:54 + + +waiting on router queue for slot.... +11:38:54 Sending to : <0> +11:38:54 ============================================================================ +11:38:55 ============================================================================ +11:38:55 Slot Id : <326> +11:38:55 Transaction Type : RESPONSE +11:38:55 Received From : +11:38:55 ============================================================================ +11:38:55 FNo. Len. Field Value +11:38:55 ============================================================================ +11:38:55 [ 1] [ 4] [0210] +11:38:55 [ 2] [ 16] [6213545000703268] +11:38:55 [ 3] [ 6] [311000] +11:38:55 [ 4] [ 12] [000000000000] +11:38:55 [ 7] [ 10] [0320114641] +11:38:55 [ 11] [ 6] [107215] +11:38:55 [ 12] [ 6] [114641] +11:38:55 [ 13] [ 4] [0320] +11:38:55 [ 15] [ 4] [0320] +11:38:55 [ 18] [ 4] [6011] +11:38:55 [ 32] [ 6] [220699] +11:38:55 [ 35] [ 32] [6213545000703268=491212010326840] +11:38:55 [ 37] [ 12] [507900327827] +11:38:55 [ 38] [ 6] [627898] +11:38:55 [ 39] [ 2] [00] +11:38:55 [ 41] [ 8] [01001800] +11:38:55 [ 49] [ 3] [418] +11:38:55 [ 54] [ 40] [1001418C0041524757641002418C004152475764] +11:38:55 ============================================================================ +11:38:55 Sending to : +11:38:55 ============================================================================ +11:38:55 + + +waiting on router queue for slot.... +11:38:56 ============================================================================ +11:38:56 Slot Id : <326> +11:38:56 Transaction Type : RESPONSE +11:38:56 Received From : +11:38:56 ============================================================================ +11:38:56 FNo. Len. Field Value +11:38:56 ============================================================================ +11:38:56 [ 1] [ 4] [0210] +11:38:56 [ 2] [ 16] [6213545000703268] +11:38:56 [ 3] [ 6] [311000] +11:38:56 [ 4] [ 12] [000000000000] +11:38:56 [ 7] [ 10] [0320114641] +11:38:56 [ 11] [ 6] [107215] +11:38:56 [ 12] [ 6] [114641] +11:38:56 [ 13] [ 4] [0320] +11:38:56 [ 15] [ 4] [0320] +11:38:56 [ 18] [ 4] [6011] +11:38:56 [ 32] [ 6] [220699] +11:38:56 [ 35] [ 32] [6213545000703268=491212010326840] +11:38:56 [ 37] [ 12] [507900327827] +11:38:56 [ 38] [ 6] [627898] +11:38:56 [ 39] [ 2] [00] +11:38:56 [ 41] [ 8] [01001800] +11:38:56 [ 49] [ 3] [418] +11:38:56 [ 54] [ 40] [1001418C0041524757641002418C004152475764] +11:38:56 ============================================================================ +11:38:56 Calculate Source COMM Id = 1 +11:38:56 ============================================================================ +11:38:56 + + +waiting on router queue for slot.... +11:39:00 ============================================================================ +11:39:00 Slot Id : <301> +11:39:00 Transaction Type : REQUEST +11:39:00 Received From : +11:39:00 ============================================================================ +11:39:00 FNo. Len. Field Value +11:39:00 ============================================================================ +11:39:00 [ 1] [ 4] [0800] +11:39:00 [ 7] [ 10] [0320043808] +11:39:00 [ 11] [ 6] [156138] +11:39:00 [ 70] [ 3] [301] +11:39:00 ============================================================================ +11:39:00 + + +waiting on router queue for slot.... +11:39:00 Sending to : +11:39:00 ============================================================================ +11:39:00 ============================================================================ +11:39:00 Slot Id : <301> +11:39:00 Transaction Type : RESPONSE +11:39:00 Received From : +11:39:00 ============================================================================ +11:39:00 FNo. Len. Field Value +11:39:00 ============================================================================ +11:39:00 [ 1] [ 4] [0810] +11:39:00 [ 7] [ 10] [0320043808] +11:39:00 [ 11] [ 6] [156138] +11:39:00 [ 39] [ 2] [00] +11:39:00 [ 70] [ 3] [301] +11:39:00 ============================================================================ +11:39:00 Calculate Source COMM Id = 2 +11:39:00 ============================================================================ +11:39:00 + + +waiting on router queue for slot.... +11:39:00 ============================================================================ +11:39:00 Slot Id : <327> +11:39:00 Transaction Type : REQUEST +11:39:00 Received From : +11:39:00 ============================================================================ +11:39:00 FNo. Len. Field Value +11:39:00 ============================================================================ +11:39:00 [ 1] [ 4] [0200] +11:39:00 [ 2] [ 16] [6213541000320542] +11:39:00 [ 3] [ 6] [010000] +11:39:00 [ 4] [ 12] [000100000000] +11:39:00 [ 7] [ 10] [0320043808] +11:39:00 [ 11] [ 6] [268613] +11:39:00 [ 12] [ 6] [113808] +11:39:00 [ 13] [ 4] [0320] +11:39:00 [ 14] [ 4] [4912] +11:39:00 [ 15] [ 4] [0320] +11:39:00 [ 18] [ 4] [6011] +11:39:00 [ 19] [ 3] [418] +11:39:00 [ 22] [ 3] [021] +11:39:00 [ 25] [ 2] [01] +11:39:00 [ 28] [ 9] [D00002000] +11:39:00 [ 32] [ 6] [180893] +11:39:00 [ 35] [ 32] [6213541000320542=491212012054325] +11:39:00 [ 37] [ 12] [507904268613] +11:39:00 [ 41] [ 8] [0324BKDT] +11:39:00 [ 42] [ 15] [999999 ] +11:39:00 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:39:00 [ 49] [ 3] [418] +11:39:00 [ 52] [ 16] [CF8B0EB5B4436A33] +11:39:00 ============================================================================ +11:39:00 + + +waiting on router queue for slot.... +11:39:00 Sending to : +11:39:00 ============================================================================ +11:39:00 Sending to : +11:39:00 ============================================================================ +11:39:01 ============================================================================ +11:39:01 Slot Id : <327> +11:39:01 Transaction Type : REQUEST +11:39:01 Received From : +11:39:01 ============================================================================ +11:39:01 FNo. Len. Field Value +11:39:01 ============================================================================ +11:39:01 [ 1] [ 4] [0200] +11:39:01 [ 2] [ 16] [6213541000320542] +11:39:01 [ 3] [ 6] [010000] +11:39:01 [ 4] [ 12] [000100000000] +11:39:01 [ 7] [ 10] [0320043808] +11:39:01 [ 11] [ 6] [268613] +11:39:01 [ 12] [ 6] [113808] +11:39:01 [ 13] [ 4] [0320] +11:39:01 [ 14] [ 4] [4912] +11:39:01 [ 15] [ 4] [0320] +11:39:01 [ 18] [ 4] [6011] +11:39:01 [ 19] [ 3] [418] +11:39:01 [ 22] [ 3] [021] +11:39:01 [ 25] [ 2] [01] +11:39:01 [ 28] [ 9] [D00002000] +11:39:01 [ 32] [ 6] [180893] +11:39:01 [ 35] [ 32] [6213541000320542=491212012054325] +11:39:01 [ 37] [ 12] [507904268613] +11:39:01 [ 41] [ 8] [0324BKDT] +11:39:01 [ 42] [ 15] [999999 ] +11:39:01 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:39:01 [ 49] [ 3] [418] +11:39:01 [ 52] [ 16] [CF8B0EB5B4436A33] +11:39:01 ============================================================================ +11:39:01 + + +waiting on router queue for slot.... +11:39:01 Sending to : +11:39:01 ============================================================================ +11:39:01 ============================================================================ +11:39:01 Slot Id : <327> +11:39:01 Transaction Type : REQUEST +11:39:01 Received From : +11:39:01 ============================================================================ +11:39:01 FNo. Len. Field Value +11:39:01 ============================================================================ +11:39:01 [ 1] [ 4] [0200] +11:39:01 [ 2] [ 16] [6213541000320542] +11:39:01 [ 3] [ 6] [010000] +11:39:01 [ 4] [ 12] [000100000000] +11:39:01 [ 7] [ 10] [0320043808] +11:39:01 [ 11] [ 6] [268613] +11:39:01 [ 12] [ 6] [113808] +11:39:01 [ 13] [ 4] [0320] +11:39:01 [ 14] [ 4] [4912] +11:39:01 [ 15] [ 4] [0320] +11:39:01 [ 18] [ 4] [6011] +11:39:01 [ 19] [ 3] [418] +11:39:01 [ 22] [ 3] [021] +11:39:01 [ 25] [ 2] [01] +11:39:01 [ 28] [ 9] [D00002000] +11:39:01 [ 32] [ 6] [180893] +11:39:01 [ 35] [ 32] [6213541000320542=491212012054325] +11:39:01 [ 37] [ 12] [507904268613] +11:39:01 [ 41] [ 8] [0324BKDT] +11:39:01 [ 42] [ 15] [999999 ] +11:39:01 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:39:01 [ 49] [ 3] [418] +11:39:01 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:39:01 ============================================================================ +11:39:01 + + +waiting on router queue for slot.... +11:39:01 Sending to : <0> +11:39:01 ============================================================================ +11:39:02 ============================================================================ +11:39:02 Slot Id : <327> +11:39:02 Transaction Type : RESPONSE +11:39:02 Received From : +11:39:02 ============================================================================ +11:39:02 FNo. Len. Field Value +11:39:02 ============================================================================ +11:39:02 [ 1] [ 4] [0210] +11:39:02 [ 2] [ 16] [6213541000320542] +11:39:02 [ 3] [ 6] [010000] +11:39:02 [ 4] [ 12] [000100000000] +11:39:02 [ 7] [ 10] [0320043808] +11:39:02 [ 11] [ 6] [268613] +11:39:02 [ 12] [ 6] [113808] +11:39:02 [ 13] [ 4] [0320] +11:39:02 [ 15] [ 4] [0320] +11:39:02 [ 18] [ 4] [6011] +11:39:02 [ 19] [ 3] [418] +11:39:02 [ 32] [ 6] [180893] +11:39:02 [ 35] [ 32] [6213541000320542=491212012054325] +11:39:02 [ 37] [ 12] [507904268613] +11:39:02 [ 38] [ 6] [030505] +11:39:02 [ 39] [ 2] [00] +11:39:02 [ 41] [ 8] [0324BKDT] +11:39:02 [ 49] [ 3] [418] +11:39:02 [ 54] [ 40] [0001418C0013904349510002418C001390434951] +11:39:02 ============================================================================ +11:39:02 Sending to : +11:39:02 ============================================================================ +11:39:02 + + +waiting on router queue for slot.... +11:39:03 ============================================================================ +11:39:03 Slot Id : <327> +11:39:03 Transaction Type : RESPONSE +11:39:03 Received From : +11:39:03 ============================================================================ +11:39:03 FNo. Len. Field Value +11:39:03 ============================================================================ +11:39:03 [ 1] [ 4] [0210] +11:39:03 [ 2] [ 16] [6213541000320542] +11:39:03 [ 3] [ 6] [010000] +11:39:03 [ 4] [ 12] [000100000000] +11:39:03 [ 7] [ 10] [0320043808] +11:39:03 [ 11] [ 6] [268613] +11:39:03 [ 12] [ 6] [113808] +11:39:03 [ 13] [ 4] [0320] +11:39:03 [ 15] [ 4] [0320] +11:39:03 [ 18] [ 4] [6011] +11:39:03 [ 19] [ 3] [418] +11:39:03 [ 32] [ 6] [180893] +11:39:03 [ 35] [ 32] [6213541000320542=491212012054325] +11:39:03 [ 37] [ 12] [507904268613] +11:39:03 [ 38] [ 6] [030505] +11:39:03 [ 39] [ 2] [00] +11:39:03 [ 41] [ 8] [0324BKDT] +11:39:03 [ 49] [ 3] [418] +11:39:03 [ 54] [ 40] [0001418C0013904349510002418C001390434951] +11:39:03 ============================================================================ +11:39:03 Calculate Source COMM Id = 2 +11:39:03 ============================================================================ +11:39:03 + + +waiting on router queue for slot.... +11:39:10 ============================================================================ +11:39:10 Slot Id : <305> +11:39:10 Transaction Type : REQUEST +11:39:10 Received From : +11:39:10 ============================================================================ +11:39:10 FNo. Len. Field Value +11:39:10 ============================================================================ +11:39:10 [ 1] [ 4] [0800] +11:39:10 [ 2] [ 5] [02531] +11:39:10 [ 3] [ 6] [579118] +11:39:10 [ 7] [ 10] [0320043910] +11:39:10 [ 11] [ 6] [807088] +11:39:10 [ 15] [ 10] [0320043910] +11:39:10 [ 37] [ 11] [57911807088] +11:39:10 [ 70] [ 3] [001] +11:39:10 ============================================================================ +11:39:10 + + +waiting on router queue for slot.... +11:39:10 ============================================================================ +11:39:10 Slot Id : <305> +11:39:10 Transaction Type : RESPONSE +11:39:10 Received From : +11:39:10 ============================================================================ +11:39:10 FNo. Len. Field Value +11:39:10 ============================================================================ +11:39:10 [ 1] [ 4] [0810] +11:39:10 [ 7] [ 10] [0320043910] +11:39:10 [ 11] [ 6] [807088] +11:39:10 [ 15] [ 4] [0320] +11:39:10 [ 37] [ 12] [57911807088] +11:39:10 [ 39] [ 2] [00] +11:39:10 [ 70] [ 3] [001] +11:39:10 ============================================================================ +11:39:10 Sending to : +11:39:10 ============================================================================ +11:39:10 + + +waiting on router queue for slot.... +11:39:10 ============================================================================ +11:39:10 Slot Id : <302> +11:39:10 Transaction Type : REQUEST +11:39:10 Received From : +11:39:10 ============================================================================ +11:39:10 FNo. Len. Field Value +11:39:10 ============================================================================ +11:39:10 [ 1] [ 4] [0200] +11:39:10 [ 2] [ 16] [6213541000489289] +11:39:10 [ 3] [ 6] [010000] +11:39:10 [ 4] [ 12] [000050000000] +11:39:10 [ 7] [ 10] [0320113701] +11:39:10 [ 11] [ 6] [941842] +11:39:10 [ 12] [ 6] [113701] +11:39:10 [ 13] [ 4] [0320] +11:39:10 [ 15] [ 4] [0320] +11:39:10 [ 18] [ 4] [6011] +11:39:10 [ 19] [ 3] [418] +11:39:10 [ 22] [ 3] [021] +11:39:10 [ 25] [ 2] [01] +11:39:10 [ 28] [ 9] [D00002000] +11:39:10 [ 32] [ 6] [668899] +11:39:10 [ 35] [ 32] [6213541000489289=491212018928317] +11:39:10 [ 37] [ 12] [507901691098] +11:39:10 [ 41] [ 8] [03002003] +11:39:10 [ 42] [ 15] [APT ] +11:39:10 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +11:39:10 [ 49] [ 3] [418] +11:39:10 [ 52] [ 16] [E9E6CCB31E0823C6] +11:39:10 ============================================================================ +11:39:10 + + +waiting on router queue for slot.... +11:39:10 Sending to : +11:39:10 ============================================================================ +11:39:10 Sending to : +11:39:10 ============================================================================ +11:39:10 ============================================================================ +11:39:10 Slot Id : <302> +11:39:10 Transaction Type : REQUEST +11:39:10 Received From : +11:39:10 ============================================================================ +11:39:10 FNo. Len. Field Value +11:39:10 ============================================================================ +11:39:10 [ 1] [ 4] [0200] +11:39:10 [ 2] [ 16] [6213541000489289] +11:39:10 [ 3] [ 6] [010000] +11:39:10 [ 4] [ 12] [000050000000] +11:39:10 [ 7] [ 10] [0320113701] +11:39:10 [ 11] [ 6] [941842] +11:39:10 [ 12] [ 6] [113701] +11:39:10 [ 13] [ 4] [0320] +11:39:10 [ 15] [ 4] [0320] +11:39:10 [ 18] [ 4] [6011] +11:39:10 [ 19] [ 3] [418] +11:39:10 [ 22] [ 3] [021] +11:39:10 [ 25] [ 2] [01] +11:39:10 [ 28] [ 9] [D00002000] +11:39:10 [ 32] [ 6] [668899] +11:39:10 [ 35] [ 32] [6213541000489289=491212018928317] +11:39:10 [ 37] [ 12] [507901691098] +11:39:10 [ 41] [ 8] [03002003] +11:39:10 [ 42] [ 15] [APT ] +11:39:10 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +11:39:10 [ 49] [ 3] [418] +11:39:10 [ 52] [ 16] [E9E6CCB31E0823C6] +11:39:10 ============================================================================ +11:39:10 + + +waiting on router queue for slot.... +11:39:10 Sending to : +11:39:10 ============================================================================ +11:39:10 ============================================================================ +11:39:10 Slot Id : <302> +11:39:10 Transaction Type : REQUEST +11:39:10 Received From : +11:39:10 ============================================================================ +11:39:10 FNo. Len. Field Value +11:39:10 ============================================================================ +11:39:10 [ 1] [ 4] [0200] +11:39:10 [ 2] [ 16] [6213541000489289] +11:39:10 [ 3] [ 6] [010000] +11:39:10 [ 4] [ 12] [000050000000] +11:39:10 [ 7] [ 10] [0320113701] +11:39:10 [ 11] [ 6] [941842] +11:39:10 [ 12] [ 6] [113701] +11:39:10 [ 13] [ 4] [0320] +11:39:10 [ 15] [ 4] [0320] +11:39:10 [ 18] [ 4] [6011] +11:39:10 [ 19] [ 3] [418] +11:39:10 [ 22] [ 3] [021] +11:39:10 [ 25] [ 2] [01] +11:39:10 [ 28] [ 9] [D00002000] +11:39:10 [ 32] [ 6] [668899] +11:39:10 [ 35] [ 32] [6213541000489289=491212018928317] +11:39:10 [ 37] [ 12] [507901691098] +11:39:10 [ 41] [ 8] [03002003] +11:39:10 [ 42] [ 15] [APT ] +11:39:10 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +11:39:10 [ 49] [ 3] [418] +11:39:10 [ 52] [ 16] [1EBD01F74E89A4A7] +11:39:10 ============================================================================ +11:39:10 + + +waiting on router queue for slot.... +11:39:10 Sending to : <0> +11:39:10 ============================================================================ +11:39:11 ============================================================================ +11:39:11 Slot Id : <302> +11:39:11 Transaction Type : RESPONSE +11:39:11 Received From : +11:39:11 ============================================================================ +11:39:11 FNo. Len. Field Value +11:39:11 ============================================================================ +11:39:11 [ 1] [ 4] [0210] +11:39:11 [ 2] [ 16] [6213541000489289] +11:39:11 [ 3] [ 6] [010000] +11:39:11 [ 4] [ 12] [000050000000] +11:39:11 [ 7] [ 10] [0320113701] +11:39:11 [ 11] [ 6] [941842] +11:39:11 [ 12] [ 6] [113701] +11:39:11 [ 13] [ 4] [0320] +11:39:11 [ 15] [ 4] [0320] +11:39:11 [ 18] [ 4] [6011] +11:39:11 [ 19] [ 3] [418] +11:39:11 [ 32] [ 6] [668899] +11:39:11 [ 35] [ 32] [6213541000489289=491212018928317] +11:39:11 [ 37] [ 12] [507901691098] +11:39:11 [ 38] [ 6] [740050] +11:39:11 [ 39] [ 2] [00] +11:39:11 [ 41] [ 8] [03002003] +11:39:11 [ 49] [ 3] [418] +11:39:11 [ 54] [ 40] [0001418C0000061792030002418C000006179203] +11:39:11 ============================================================================ +11:39:11 Sending to : +11:39:11 ============================================================================ +11:39:11 + + +waiting on router queue for slot.... +11:39:13 ============================================================================ +11:39:13 Slot Id : <302> +11:39:13 Transaction Type : RESPONSE +11:39:13 Received From : +11:39:13 ============================================================================ +11:39:13 FNo. Len. Field Value +11:39:13 ============================================================================ +11:39:13 [ 1] [ 4] [0210] +11:39:13 [ 2] [ 16] [6213541000489289] +11:39:13 [ 3] [ 6] [010000] +11:39:13 [ 4] [ 12] [000050000000] +11:39:13 [ 7] [ 10] [0320113701] +11:39:13 [ 11] [ 6] [941842] +11:39:13 [ 12] [ 6] [113701] +11:39:13 [ 13] [ 4] [0320] +11:39:13 [ 15] [ 4] [0320] +11:39:13 [ 18] [ 4] [6011] +11:39:13 [ 19] [ 3] [418] +11:39:13 [ 32] [ 6] [668899] +11:39:13 [ 35] [ 32] [6213541000489289=491212018928317] +11:39:13 [ 37] [ 12] [507901691098] +11:39:13 [ 38] [ 6] [740050] +11:39:13 [ 39] [ 2] [00] +11:39:13 [ 41] [ 8] [03002003] +11:39:13 [ 49] [ 3] [418] +11:39:13 [ 54] [ 40] [0001418C0000061792030002418C000006179203] +11:39:13 ============================================================================ +11:39:13 Calculate Source COMM Id = 4 +11:39:13 ============================================================================ +11:39:13 + + +waiting on router queue for slot.... +11:39:14 ============================================================================ +11:39:14 Slot Id : <292> +11:39:14 Transaction Type : REQUEST +11:39:14 Received From : +11:39:14 ============================================================================ +11:39:14 FNo. Len. Field Value +11:39:14 ============================================================================ +11:39:14 [ 1] [ 4] [0200] +11:39:14 [ 2] [ 16] [6213548000127223] +11:39:14 [ 3] [ 6] [010000] +11:39:14 [ 4] [ 12] [000010000000] +11:39:14 [ 7] [ 10] [0320043821] +11:39:14 [ 11] [ 6] [268615] +11:39:14 [ 12] [ 6] [113821] +11:39:14 [ 13] [ 4] [0320] +11:39:14 [ 14] [ 4] [1311] +11:39:14 [ 15] [ 4] [0320] +11:39:14 [ 18] [ 4] [6011] +11:39:14 [ 19] [ 3] [418] +11:39:14 [ 22] [ 3] [021] +11:39:14 [ 25] [ 2] [01] +11:39:14 [ 28] [ 9] [D00002000] +11:39:14 [ 32] [ 6] [180893] +11:39:14 [ 35] [ 32] [6213548000127223=131112012722387] +11:39:14 [ 37] [ 12] [507904268615] +11:39:14 [ 41] [ 8] [0401XSBR] +11:39:14 [ 42] [ 15] [999999 ] +11:39:14 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +11:39:14 [ 49] [ 3] [418] +11:39:14 [ 52] [ 16] [887646B373FAE15D] +11:39:14 ============================================================================ +11:39:14 + + +waiting on router queue for slot.... +11:39:14 Sending to : +11:39:14 ============================================================================ +11:39:14 Sending to : +11:39:14 ============================================================================ +11:39:15 ============================================================================ +11:39:15 Slot Id : <292> +11:39:15 Transaction Type : REQUEST +11:39:15 Received From : +11:39:15 ============================================================================ +11:39:15 FNo. Len. Field Value +11:39:15 ============================================================================ +11:39:15 [ 1] [ 4] [0200] +11:39:15 [ 2] [ 16] [6213548000127223] +11:39:15 [ 3] [ 6] [010000] +11:39:15 [ 4] [ 12] [000010000000] +11:39:15 [ 7] [ 10] [0320043821] +11:39:15 [ 11] [ 6] [268615] +11:39:15 [ 12] [ 6] [113821] +11:39:15 [ 13] [ 4] [0320] +11:39:15 [ 14] [ 4] [1311] +11:39:15 [ 15] [ 4] [0320] +11:39:15 [ 18] [ 4] [6011] +11:39:15 [ 19] [ 3] [418] +11:39:15 [ 22] [ 3] [021] +11:39:15 [ 25] [ 2] [01] +11:39:15 [ 28] [ 9] [D00002000] +11:39:15 [ 32] [ 6] [180893] +11:39:15 [ 35] [ 32] [6213548000127223=131112012722387] +11:39:15 [ 37] [ 12] [507904268615] +11:39:15 [ 41] [ 8] [0401XSBR] +11:39:15 [ 42] [ 15] [999999 ] +11:39:15 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +11:39:15 [ 49] [ 3] [418] +11:39:15 [ 52] [ 16] [887646B373FAE15D] +11:39:15 ============================================================================ +11:39:15 + + +waiting on router queue for slot.... +11:39:15 Sending to : +11:39:15 ============================================================================ +11:39:15 ============================================================================ +11:39:15 Slot Id : <292> +11:39:15 Transaction Type : REQUEST +11:39:15 Received From : +11:39:15 ============================================================================ +11:39:15 FNo. Len. Field Value +11:39:15 ============================================================================ +11:39:15 [ 1] [ 4] [0200] +11:39:15 [ 2] [ 16] [6213548000127223] +11:39:15 [ 3] [ 6] [010000] +11:39:15 [ 4] [ 12] [000010000000] +11:39:15 [ 7] [ 10] [0320043821] +11:39:15 [ 11] [ 6] [268615] +11:39:15 [ 12] [ 6] [113821] +11:39:15 [ 13] [ 4] [0320] +11:39:15 [ 14] [ 4] [1311] +11:39:15 [ 15] [ 4] [0320] +11:39:15 [ 18] [ 4] [6011] +11:39:15 [ 19] [ 3] [418] +11:39:15 [ 22] [ 3] [021] +11:39:15 [ 25] [ 2] [01] +11:39:15 [ 28] [ 9] [D00002000] +11:39:15 [ 32] [ 6] [180893] +11:39:15 [ 35] [ 32] [6213548000127223=131112012722387] +11:39:15 [ 37] [ 12] [507904268615] +11:39:15 [ 41] [ 8] [0401XSBR] +11:39:15 [ 42] [ 15] [999999 ] +11:39:15 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +11:39:15 [ 49] [ 3] [418] +11:39:15 [ 52] [ 16] [7FCD6350B555EB15] +11:39:15 ============================================================================ +11:39:15 + + +waiting on router queue for slot.... +11:39:15 Sending to : <0> +11:39:15 ============================================================================ +11:39:15 ============================================================================ +11:39:15 Slot Id : <314> +11:39:15 Transaction Type : REQUEST +11:39:15 Received From : +11:39:15 ============================================================================ +11:39:15 FNo. Len. Field Value +11:39:15 ============================================================================ +11:39:15 [ 1] [ 4] [0800] +11:39:15 [ 7] [ 10] [0320043823] +11:39:15 [ 11] [ 6] [156139] +11:39:15 [ 70] [ 3] [301] +11:39:15 ============================================================================ +11:39:15 + + +waiting on router queue for slot.... +11:39:15 Sending to : +11:39:15 ============================================================================ +11:39:15 ============================================================================ +11:39:15 Slot Id : <314> +11:39:15 Transaction Type : RESPONSE +11:39:15 Received From : +11:39:15 ============================================================================ +11:39:15 FNo. Len. Field Value +11:39:15 ============================================================================ +11:39:15 [ 1] [ 4] [0810] +11:39:15 [ 7] [ 10] [0320043823] +11:39:15 [ 11] [ 6] [156139] +11:39:15 [ 39] [ 2] [00] +11:39:15 [ 70] [ 3] [301] +11:39:15 ============================================================================ +11:39:15 Calculate Source COMM Id = 2 +11:39:15 ============================================================================ +11:39:15 + + +waiting on router queue for slot.... +11:39:16 ============================================================================ +11:39:16 Slot Id : <292> +11:39:16 Transaction Type : RESPONSE +11:39:16 Received From : +11:39:16 ============================================================================ +11:39:16 FNo. Len. Field Value +11:39:16 ============================================================================ +11:39:16 [ 1] [ 4] [0210] +11:39:16 [ 2] [ 16] [6213548000127223] +11:39:16 [ 3] [ 6] [010000] +11:39:16 [ 4] [ 12] [000010000000] +11:39:16 [ 7] [ 10] [0320043821] +11:39:16 [ 11] [ 6] [268615] +11:39:16 [ 12] [ 6] [113821] +11:39:16 [ 13] [ 4] [0320] +11:39:16 [ 15] [ 4] [0320] +11:39:16 [ 18] [ 4] [6011] +11:39:16 [ 19] [ 3] [418] +11:39:16 [ 32] [ 6] [180893] +11:39:16 [ 35] [ 32] [6213548000127223=131112012722387] +11:39:16 [ 37] [ 12] [507904268615] +11:39:16 [ 38] [ 6] [033115] +11:39:16 [ 39] [ 2] [00] +11:39:16 [ 41] [ 8] [0401XSBR] +11:39:16 [ 49] [ 3] [418] +11:39:16 [ 54] [ 40] [0001418C0000348128370002418C000034812837] +11:39:16 ============================================================================ +11:39:16 Sending to : +11:39:16 ============================================================================ +11:39:16 + + +waiting on router queue for slot.... +11:39:17 ============================================================================ +11:39:17 Slot Id : <292> +11:39:17 Transaction Type : RESPONSE +11:39:17 Received From : +11:39:17 ============================================================================ +11:39:17 FNo. Len. Field Value +11:39:17 ============================================================================ +11:39:17 [ 1] [ 4] [0210] +11:39:17 [ 2] [ 16] [6213548000127223] +11:39:17 [ 3] [ 6] [010000] +11:39:17 [ 4] [ 12] [000010000000] +11:39:17 [ 7] [ 10] [0320043821] +11:39:17 [ 11] [ 6] [268615] +11:39:17 [ 12] [ 6] [113821] +11:39:17 [ 13] [ 4] [0320] +11:39:17 [ 15] [ 4] [0320] +11:39:17 [ 18] [ 4] [6011] +11:39:17 [ 19] [ 3] [418] +11:39:17 [ 32] [ 6] [180893] +11:39:17 [ 35] [ 32] [6213548000127223=131112012722387] +11:39:17 [ 37] [ 12] [507904268615] +11:39:17 [ 38] [ 6] [033115] +11:39:17 [ 39] [ 2] [00] +11:39:17 [ 41] [ 8] [0401XSBR] +11:39:17 [ 49] [ 3] [418] +11:39:17 [ 54] [ 40] [0001418C0000348128370002418C000034812837] +11:39:17 ============================================================================ +11:39:17 Calculate Source COMM Id = 2 +11:39:17 ============================================================================ +11:39:17 + + +waiting on router queue for slot.... +11:39:20 ============================================================================ +11:39:20 Slot Id : <333> +11:39:20 Transaction Type : REQUEST +11:39:20 Received From : +11:39:20 ============================================================================ +11:39:20 FNo. Len. Field Value +11:39:20 ============================================================================ +11:39:20 [ 1] [ 4] [0200] +11:39:20 [ 2] [ 16] [6213544001621959] +11:39:20 [ 3] [ 6] [010000] +11:39:20 [ 4] [ 12] [000070000000] +11:39:20 [ 7] [ 10] [0320113711] +11:39:20 [ 11] [ 6] [941854] +11:39:20 [ 12] [ 6] [113711] +11:39:20 [ 13] [ 4] [0320] +11:39:20 [ 15] [ 4] [0320] +11:39:20 [ 18] [ 4] [6011] +11:39:20 [ 19] [ 3] [418] +11:39:20 [ 22] [ 3] [021] +11:39:20 [ 25] [ 2] [01] +11:39:20 [ 28] [ 9] [D00002000] +11:39:20 [ 32] [ 6] [668899] +11:39:20 [ 35] [ 32] [6213544001621959=491212012195983] +11:39:20 [ 37] [ 12] [507900270929] +11:39:20 [ 41] [ 8] [03010004] +11:39:20 [ 42] [ 15] [APT ] +11:39:20 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:39:20 [ 49] [ 3] [418] +11:39:20 [ 52] [ 16] [3E185E491A64F264] +11:39:20 ============================================================================ +11:39:20 + + +waiting on router queue for slot.... +11:39:20 Sending to : +11:39:20 ============================================================================ +11:39:20 Sending to : +11:39:20 ============================================================================ +11:39:20 ============================================================================ +11:39:20 Slot Id : <331> +11:39:20 Transaction Type : REQUEST +11:39:20 Received From : +11:39:20 ============================================================================ +11:39:20 FNo. Len. Field Value +11:39:20 ============================================================================ +11:39:20 [ 1] [ 4] [0200] +11:39:20 [ 2] [ 16] [1808930300000627] +11:39:20 [ 3] [ 6] [010000] +11:39:20 [ 4] [ 12] [000100000000] +11:39:20 [ 7] [ 10] [0320113916] +11:39:20 [ 11] [ 6] [732879] +11:39:20 [ 12] [ 6] [113916] +11:39:20 [ 13] [ 4] [0320] +11:39:20 [ 15] [ 4] [0320] +11:39:20 [ 18] [ 4] [6011] +11:39:20 [ 22] [ 3] [900] +11:39:20 [ 25] [ 2] [02] +11:39:20 [ 28] [ 9] [D00002000] +11:39:20 [ 32] [ 6] [621354] +11:39:20 [ 35] [ 27] [1808930300000627=1803500441] +11:39:20 [ 37] [ 12] [507903505404] +11:39:20 [ 41] [ 8] [09000700] +11:39:20 [ 42] [ 15] [NATIVE ] +11:39:20 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:39:20 [ 49] [ 3] [418] +11:39:20 [ 52] [ 16] [7B4555E2B22445BE] +11:39:20 ============================================================================ +11:39:20 + + +waiting on router queue for slot.... +11:39:20 Sending to : +11:39:20 ============================================================================ +11:39:20 Sending to : +11:39:20 ============================================================================ +11:39:20 ============================================================================ +11:39:20 Slot Id : <333> +11:39:20 Transaction Type : REQUEST +11:39:20 Received From : +11:39:20 ============================================================================ +11:39:20 FNo. Len. Field Value +11:39:20 ============================================================================ +11:39:20 [ 1] [ 4] [0200] +11:39:20 [ 2] [ 16] [6213544001621959] +11:39:20 [ 3] [ 6] [010000] +11:39:20 [ 4] [ 12] [000070000000] +11:39:20 [ 7] [ 10] [0320113711] +11:39:20 [ 11] [ 6] [941854] +11:39:20 [ 12] [ 6] [113711] +11:39:20 [ 13] [ 4] [0320] +11:39:20 [ 15] [ 4] [0320] +11:39:20 [ 18] [ 4] [6011] +11:39:20 [ 19] [ 3] [418] +11:39:20 [ 22] [ 3] [021] +11:39:20 [ 25] [ 2] [01] +11:39:20 [ 28] [ 9] [D00002000] +11:39:20 [ 32] [ 6] [668899] +11:39:20 [ 35] [ 32] [6213544001621959=491212012195983] +11:39:20 [ 37] [ 12] [507900270929] +11:39:20 [ 41] [ 8] [03010004] +11:39:20 [ 42] [ 15] [APT ] +11:39:20 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:39:20 [ 49] [ 3] [418] +11:39:20 [ 52] [ 16] [3E185E491A64F264] +11:39:20 ============================================================================ +11:39:20 + + +waiting on router queue for slot.... +11:39:20 Sending to : +11:39:20 ============================================================================ +11:39:20 ============================================================================ +11:39:20 Slot Id : <333> +11:39:20 Transaction Type : REQUEST +11:39:20 Received From : +11:39:20 ============================================================================ +11:39:20 FNo. Len. Field Value +11:39:20 ============================================================================ +11:39:20 [ 1] [ 4] [0200] +11:39:20 [ 2] [ 16] [6213544001621959] +11:39:20 [ 3] [ 6] [010000] +11:39:20 [ 4] [ 12] [000070000000] +11:39:20 [ 7] [ 10] [0320113711] +11:39:20 [ 11] [ 6] [941854] +11:39:20 [ 12] [ 6] [113711] +11:39:20 [ 13] [ 4] [0320] +11:39:20 [ 15] [ 4] [0320] +11:39:20 [ 18] [ 4] [6011] +11:39:20 [ 19] [ 3] [418] +11:39:20 [ 22] [ 3] [021] +11:39:20 [ 25] [ 2] [01] +11:39:20 [ 28] [ 9] [D00002000] +11:39:20 [ 32] [ 6] [668899] +11:39:20 [ 35] [ 32] [6213544001621959=491212012195983] +11:39:20 [ 37] [ 12] [507900270929] +11:39:20 [ 41] [ 8] [03010004] +11:39:20 [ 42] [ 15] [APT ] +11:39:20 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:39:20 [ 49] [ 3] [418] +11:39:20 [ 52] [ 16] [1B6B83E14D8EC223] +11:39:20 ============================================================================ +11:39:20 + + +waiting on router queue for slot.... +11:39:20 Sending to : <0> +11:39:20 ============================================================================ +11:39:21 ============================================================================ +11:39:21 Slot Id : <331> +11:39:21 Transaction Type : REQUEST +11:39:21 Received From : +11:39:21 ============================================================================ +11:39:21 FNo. Len. Field Value +11:39:21 ============================================================================ +11:39:21 [ 1] [ 4] [0200] +11:39:21 [ 2] [ 16] [1808930300000627] +11:39:21 [ 3] [ 6] [010000] +11:39:21 [ 4] [ 12] [000100000000] +11:39:21 [ 7] [ 10] [0320113916] +11:39:21 [ 11] [ 6] [732879] +11:39:21 [ 12] [ 6] [113916] +11:39:21 [ 13] [ 4] [0320] +11:39:21 [ 15] [ 4] [0320] +11:39:21 [ 18] [ 4] [6011] +11:39:21 [ 22] [ 3] [900] +11:39:21 [ 25] [ 2] [02] +11:39:21 [ 28] [ 9] [D00002000] +11:39:21 [ 32] [ 6] [621354] +11:39:21 [ 35] [ 27] [1808930300000627=1803500441] +11:39:21 [ 37] [ 12] [507903505404] +11:39:21 [ 41] [ 8] [09000700] +11:39:21 [ 42] [ 15] [NATIVE ] +11:39:21 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:39:21 [ 49] [ 3] [418] +11:39:21 [ 52] [ 16] [7B4555E2B22445BE] +11:39:21 ============================================================================ +11:39:21 + + +waiting on router queue for slot.... +11:39:21 Sending to : +11:39:21 ============================================================================ +11:39:21 ============================================================================ +11:39:21 Slot Id : <331> +11:39:21 Transaction Type : REQUEST +11:39:21 Received From : +11:39:21 ============================================================================ +11:39:21 FNo. Len. Field Value +11:39:21 ============================================================================ +11:39:21 [ 1] [ 4] [0200] +11:39:21 [ 2] [ 16] [1808930300000627] +11:39:21 [ 3] [ 6] [010000] +11:39:21 [ 4] [ 12] [000100000000] +11:39:21 [ 7] [ 10] [0320113916] +11:39:21 [ 11] [ 6] [732879] +11:39:21 [ 12] [ 6] [113916] +11:39:21 [ 13] [ 4] [0320] +11:39:21 [ 15] [ 4] [0320] +11:39:21 [ 18] [ 4] [6011] +11:39:21 [ 22] [ 3] [900] +11:39:21 [ 25] [ 2] [02] +11:39:21 [ 28] [ 9] [D00002000] +11:39:21 [ 32] [ 6] [621354] +11:39:21 [ 35] [ 27] [1808930300000627=1803500441] +11:39:21 [ 37] [ 12] [507903505404] +11:39:21 [ 41] [ 8] [09000700] +11:39:21 [ 42] [ 15] [NATIVE ] +11:39:21 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:39:21 [ 49] [ 3] [418] +11:39:21 [ 52] [ 16] [8C05AC738B091252] +11:39:21 ============================================================================ +11:39:21 + + +waiting on router queue for slot.... +11:39:21 Sending to : <2> +11:39:21 ============================================================================ +11:39:21 ============================================================================ +11:39:21 Slot Id : <333> +11:39:21 Transaction Type : RESPONSE +11:39:21 Received From : +11:39:21 ============================================================================ +11:39:21 FNo. Len. Field Value +11:39:21 ============================================================================ +11:39:21 [ 1] [ 4] [0210] +11:39:21 [ 2] [ 16] [6213544001621959] +11:39:21 [ 3] [ 6] [010000] +11:39:21 [ 4] [ 12] [000070000000] +11:39:21 [ 7] [ 10] [0320113711] +11:39:21 [ 11] [ 6] [941854] +11:39:21 [ 12] [ 6] [113711] +11:39:21 [ 13] [ 4] [0320] +11:39:21 [ 15] [ 4] [0320] +11:39:21 [ 18] [ 4] [6011] +11:39:21 [ 19] [ 3] [418] +11:39:21 [ 32] [ 6] [668899] +11:39:21 [ 35] [ 32] [6213544001621959=491212012195983] +11:39:21 [ 37] [ 12] [507900270929] +11:39:21 [ 38] [ 6] [545492] +11:39:21 [ 39] [ 2] [00] +11:39:21 [ 41] [ 8] [03010004] +11:39:21 [ 49] [ 3] [418] +11:39:21 [ 54] [ 40] [0001418C0003077459470002418C000307745947] +11:39:21 ============================================================================ +11:39:21 Sending to : +11:39:21 ============================================================================ +11:39:21 + + +waiting on router queue for slot.... +11:39:22 ============================================================================ +11:39:22 Slot Id : <333> +11:39:22 Transaction Type : RESPONSE +11:39:22 Received From : +11:39:22 ============================================================================ +11:39:22 FNo. Len. Field Value +11:39:22 ============================================================================ +11:39:22 [ 1] [ 4] [0210] +11:39:22 [ 2] [ 16] [6213544001621959] +11:39:22 [ 3] [ 6] [010000] +11:39:22 [ 4] [ 12] [000070000000] +11:39:22 [ 7] [ 10] [0320113711] +11:39:22 [ 11] [ 6] [941854] +11:39:22 [ 12] [ 6] [113711] +11:39:22 [ 13] [ 4] [0320] +11:39:22 [ 15] [ 4] [0320] +11:39:22 [ 18] [ 4] [6011] +11:39:22 [ 19] [ 3] [418] +11:39:22 [ 32] [ 6] [668899] +11:39:22 [ 35] [ 32] [6213544001621959=491212012195983] +11:39:22 [ 37] [ 12] [507900270929] +11:39:22 [ 38] [ 6] [545492] +11:39:22 [ 39] [ 2] [00] +11:39:22 [ 41] [ 8] [03010004] +11:39:22 [ 49] [ 3] [418] +11:39:22 [ 54] [ 40] [0001418C0003077459470002418C000307745947] +11:39:22 ============================================================================ +11:39:22 Calculate Source COMM Id = 4 +11:39:22 ============================================================================ +11:39:22 + + +waiting on router queue for slot.... +11:39:24 ============================================================================ +11:39:24 Slot Id : <331> +11:39:24 Transaction Type : RESPONSE +11:39:24 Received From : +11:39:24 ============================================================================ +11:39:24 FNo. Len. Field Value +11:39:24 ============================================================================ +11:39:24 [ 1] [ 4] [0210] +11:39:24 [ 2] [ 16] [1808930300000627] +11:39:24 [ 3] [ 6] [010000] +11:39:24 [ 4] [ 12] [000100000000] +11:39:24 [ 6] [ 12] [000100000000] +11:39:24 [ 7] [ 10] [0320113916] +11:39:24 [ 11] [ 6] [732879] +11:39:24 [ 12] [ 6] [113916] +11:39:24 [ 13] [ 4] [0320] +11:39:24 [ 18] [ 4] [6011] +11:39:24 [ 19] [ 3] [418] +11:39:24 [ 22] [ 3] [021] +11:39:24 [ 32] [ 6] [621354] +11:39:24 [ 35] [ 27] [1808930300000627=1803500441] +11:39:24 [ 37] [ 12] [507903505404] +11:39:24 [ 38] [ 6] [732879] +11:39:24 [ 39] [ 2] [00] +11:39:24 [ 41] [ 8] [09000700] +11:39:24 [ 49] [ 3] [418] +11:39:24 [ 52] [ 16] [8C05AC738B091252] +11:39:24 [ 54] [ 20] [1001418C001111473000] +11:39:24 ============================================================================ +11:39:24 Sending to : +11:39:24 ============================================================================ +11:39:24 + + +waiting on router queue for slot.... +11:39:25 ============================================================================ +11:39:25 Slot Id : <262> +11:39:25 Transaction Type : REQUEST +11:39:25 Received From : +11:39:25 ============================================================================ +11:39:25 FNo. Len. Field Value +11:39:25 ============================================================================ +11:39:25 [ 1] [ 4] [0200] +11:39:25 [ 2] [ 16] [6213544000745833] +11:39:25 [ 3] [ 6] [010000] +11:39:25 [ 4] [ 12] [000100000000] +11:39:25 [ 7] [ 10] [0320043832] +11:39:25 [ 11] [ 6] [268619] +11:39:25 [ 12] [ 6] [113832] +11:39:25 [ 13] [ 4] [0320] +11:39:25 [ 14] [ 4] [4912] +11:39:25 [ 15] [ 4] [0320] +11:39:25 [ 18] [ 4] [6011] +11:39:25 [ 19] [ 3] [418] +11:39:25 [ 22] [ 3] [021] +11:39:25 [ 25] [ 2] [01] +11:39:25 [ 28] [ 9] [D00002000] +11:39:25 [ 32] [ 6] [180893] +11:39:25 [ 35] [ 32] [6213544000745833=491212014583016] +11:39:25 [ 37] [ 12] [507904268619] +11:39:25 [ 41] [ 8] [0301LPBX] +11:39:25 [ 42] [ 15] [999999 ] +11:39:25 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +11:39:25 [ 49] [ 3] [418] +11:39:25 [ 52] [ 16] [2A25334BBF422E16] +11:39:25 ============================================================================ +11:39:25 + + +waiting on router queue for slot.... +11:39:25 Sending to : +11:39:25 ============================================================================ +11:39:25 Sending to : +11:39:25 ============================================================================ +11:39:26 ============================================================================ +11:39:26 Slot Id : <262> +11:39:26 Transaction Type : REQUEST +11:39:26 Received From : +11:39:26 ============================================================================ +11:39:26 FNo. Len. Field Value +11:39:26 ============================================================================ +11:39:26 [ 1] [ 4] [0200] +11:39:26 [ 2] [ 16] [6213544000745833] +11:39:26 [ 3] [ 6] [010000] +11:39:26 [ 4] [ 12] [000100000000] +11:39:26 [ 7] [ 10] [0320043832] +11:39:26 [ 11] [ 6] [268619] +11:39:26 [ 12] [ 6] [113832] +11:39:26 [ 13] [ 4] [0320] +11:39:26 [ 14] [ 4] [4912] +11:39:26 [ 15] [ 4] [0320] +11:39:26 [ 18] [ 4] [6011] +11:39:26 [ 19] [ 3] [418] +11:39:26 [ 22] [ 3] [021] +11:39:26 [ 25] [ 2] [01] +11:39:26 [ 28] [ 9] [D00002000] +11:39:26 [ 32] [ 6] [180893] +11:39:26 [ 35] [ 32] [6213544000745833=491212014583016] +11:39:26 [ 37] [ 12] [507904268619] +11:39:26 [ 41] [ 8] [0301LPBX] +11:39:26 [ 42] [ 15] [999999 ] +11:39:26 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +11:39:26 [ 49] [ 3] [418] +11:39:26 [ 52] [ 16] [2A25334BBF422E16] +11:39:26 ============================================================================ +11:39:26 + + +waiting on router queue for slot.... +11:39:26 Sending to : +11:39:26 ============================================================================ +11:39:26 ============================================================================ +11:39:26 Slot Id : <262> +11:39:26 Transaction Type : REQUEST +11:39:26 Received From : +11:39:26 ============================================================================ +11:39:26 FNo. Len. Field Value +11:39:26 ============================================================================ +11:39:26 [ 1] [ 4] [0200] +11:39:26 [ 2] [ 16] [6213544000745833] +11:39:26 [ 3] [ 6] [010000] +11:39:26 [ 4] [ 12] [000100000000] +11:39:26 [ 7] [ 10] [0320043832] +11:39:26 [ 11] [ 6] [268619] +11:39:26 [ 12] [ 6] [113832] +11:39:26 [ 13] [ 4] [0320] +11:39:26 [ 14] [ 4] [4912] +11:39:26 [ 15] [ 4] [0320] +11:39:26 [ 18] [ 4] [6011] +11:39:26 [ 19] [ 3] [418] +11:39:26 [ 22] [ 3] [021] +11:39:26 [ 25] [ 2] [01] +11:39:26 [ 28] [ 9] [D00002000] +11:39:26 [ 32] [ 6] [180893] +11:39:26 [ 35] [ 32] [6213544000745833=491212014583016] +11:39:26 [ 37] [ 12] [507904268619] +11:39:26 [ 41] [ 8] [0301LPBX] +11:39:26 [ 42] [ 15] [999999 ] +11:39:26 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +11:39:26 [ 49] [ 3] [418] +11:39:26 [ 52] [ 16] [84A1043DC46E3582] +11:39:26 ============================================================================ +11:39:26 + + +waiting on router queue for slot.... +11:39:26 Sending to : <0> +11:39:26 ============================================================================ +11:39:26 ============================================================================ +11:39:26 Slot Id : <331> +11:39:26 Transaction Type : RESPONSE +11:39:26 Received From : +11:39:26 ============================================================================ +11:39:26 FNo. Len. Field Value +11:39:26 ============================================================================ +11:39:26 [ 1] [ 4] [0210] +11:39:26 [ 2] [ 16] [1808930300000627] +11:39:26 [ 3] [ 6] [010000] +11:39:26 [ 4] [ 12] [000100000000] +11:39:26 [ 6] [ 12] [000100000000] +11:39:26 [ 7] [ 10] [0320113916] +11:39:26 [ 11] [ 6] [732879] +11:39:26 [ 12] [ 6] [113916] +11:39:26 [ 13] [ 4] [0320] +11:39:26 [ 18] [ 4] [6011] +11:39:26 [ 19] [ 3] [418] +11:39:26 [ 22] [ 3] [021] +11:39:26 [ 32] [ 6] [621354] +11:39:26 [ 35] [ 27] [1808930300000627=1803500441] +11:39:26 [ 37] [ 12] [507903505404] +11:39:26 [ 38] [ 6] [732879] +11:39:26 [ 39] [ 2] [00] +11:39:26 [ 41] [ 8] [09000700] +11:39:26 [ 49] [ 3] [418] +11:39:26 [ 52] [ 16] [8C05AC738B091252] +11:39:26 [ 54] [ 20] [1001418C001111473000] +11:39:26 ============================================================================ +11:39:26 Calculate Source COMM Id = 0 +11:39:26 ============================================================================ +11:39:26 + + +waiting on router queue for slot.... +11:39:26 ============================================================================ +11:39:26 Slot Id : <262> +11:39:26 Transaction Type : RESPONSE +11:39:26 Received From : +11:39:26 ============================================================================ +11:39:26 FNo. Len. Field Value +11:39:26 ============================================================================ +11:39:26 [ 1] [ 4] [0210] +11:39:26 [ 2] [ 16] [6213544000745833] +11:39:26 [ 3] [ 6] [010000] +11:39:26 [ 4] [ 12] [000100000000] +11:39:26 [ 7] [ 10] [0320043832] +11:39:26 [ 11] [ 6] [268619] +11:39:26 [ 12] [ 6] [113832] +11:39:26 [ 13] [ 4] [0320] +11:39:26 [ 15] [ 4] [0320] +11:39:26 [ 18] [ 4] [6011] +11:39:26 [ 19] [ 3] [418] +11:39:26 [ 32] [ 6] [180893] +11:39:26 [ 35] [ 32] [6213544000745833=491212014583016] +11:39:26 [ 37] [ 12] [507904268619] +11:39:26 [ 38] [ 6] [890943] +11:39:26 [ 39] [ 2] [00] +11:39:26 [ 41] [ 8] [0301LPBX] +11:39:26 [ 49] [ 3] [418] +11:39:26 [ 54] [ 40] [0001418C0002854322930002418C000285432293] +11:39:26 ============================================================================ +11:39:26 Sending to : +11:39:26 ============================================================================ +11:39:26 + + +waiting on router queue for slot.... +11:39:28 ============================================================================ +11:39:28 Slot Id : <262> +11:39:28 Transaction Type : RESPONSE +11:39:28 Received From : +11:39:28 ============================================================================ +11:39:28 FNo. Len. Field Value +11:39:28 ============================================================================ +11:39:28 [ 1] [ 4] [0210] +11:39:28 [ 2] [ 16] [6213544000745833] +11:39:28 [ 3] [ 6] [010000] +11:39:28 [ 4] [ 12] [000100000000] +11:39:28 [ 7] [ 10] [0320043832] +11:39:28 [ 11] [ 6] [268619] +11:39:28 [ 12] [ 6] [113832] +11:39:28 [ 13] [ 4] [0320] +11:39:28 [ 15] [ 4] [0320] +11:39:28 [ 18] [ 4] [6011] +11:39:28 [ 19] [ 3] [418] +11:39:28 [ 32] [ 6] [180893] +11:39:28 [ 35] [ 32] [6213544000745833=491212014583016] +11:39:28 [ 37] [ 12] [507904268619] +11:39:28 [ 38] [ 6] [890943] +11:39:28 [ 39] [ 2] [00] +11:39:28 [ 41] [ 8] [0301LPBX] +11:39:28 [ 49] [ 3] [418] +11:39:28 [ 54] [ 40] [0001418C0002854322930002418C000285432293] +11:39:28 ============================================================================ +11:39:28 Calculate Source COMM Id = 2 +11:39:28 ============================================================================ +11:39:28 + + +waiting on router queue for slot.... +11:39:43 ============================================================================ +11:39:43 Slot Id : <321> +11:39:43 Transaction Type : REQUEST +11:39:43 Received From : +11:39:43 ============================================================================ +11:39:43 FNo. Len. Field Value +11:39:43 ============================================================================ +11:39:43 [ 1] [ 4] [0800] +11:39:43 [ 7] [ 10] [0320043850] +11:39:43 [ 11] [ 6] [156140] +11:39:43 [ 70] [ 3] [301] +11:39:43 ============================================================================ +11:39:43 + + +waiting on router queue for slot.... +11:39:43 Sending to : +11:39:43 ============================================================================ +11:39:43 ============================================================================ +11:39:43 Slot Id : <321> +11:39:43 Transaction Type : RESPONSE +11:39:43 Received From : +11:39:43 ============================================================================ +11:39:43 FNo. Len. Field Value +11:39:43 ============================================================================ +11:39:43 [ 1] [ 4] [0810] +11:39:43 [ 7] [ 10] [0320043850] +11:39:43 [ 11] [ 6] [156140] +11:39:43 [ 39] [ 2] [00] +11:39:43 [ 70] [ 3] [301] +11:39:43 ============================================================================ +11:39:43 Calculate Source COMM Id = 2 +11:39:43 ============================================================================ +11:39:43 + + +waiting on router queue for slot.... +11:39:47 ============================================================================ +11:39:47 Slot Id : <334> +11:39:47 Transaction Type : REQUEST +11:39:47 Received From : +11:39:47 ============================================================================ +11:39:47 FNo. Len. Field Value +11:39:47 ============================================================================ +11:39:47 [ 1] [ 4] [0200] +11:39:47 [ 2] [ 16] [6213541000320542] +11:39:47 [ 3] [ 6] [010000] +11:39:47 [ 4] [ 12] [000100000000] +11:39:47 [ 7] [ 10] [0320043854] +11:39:47 [ 11] [ 6] [268624] +11:39:47 [ 12] [ 6] [113854] +11:39:47 [ 13] [ 4] [0320] +11:39:47 [ 14] [ 4] [4912] +11:39:47 [ 15] [ 4] [0320] +11:39:47 [ 18] [ 4] [6011] +11:39:47 [ 19] [ 3] [418] +11:39:47 [ 22] [ 3] [021] +11:39:47 [ 25] [ 2] [01] +11:39:47 [ 28] [ 9] [D00002000] +11:39:47 [ 32] [ 6] [180893] +11:39:47 [ 35] [ 32] [6213541000320542=491212012054325] +11:39:47 [ 37] [ 12] [507904268624] +11:39:47 [ 41] [ 8] [0324BKDT] +11:39:47 [ 42] [ 15] [999999 ] +11:39:47 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:39:47 [ 49] [ 3] [418] +11:39:47 [ 52] [ 16] [CF8B0EB5B4436A33] +11:39:47 ============================================================================ +11:39:47 + + +waiting on router queue for slot.... +11:39:47 Sending to : +11:39:47 ============================================================================ +11:39:47 Sending to : +11:39:47 ============================================================================ +11:39:47 ============================================================================ +11:39:47 Slot Id : <334> +11:39:47 Transaction Type : REQUEST +11:39:47 Received From : +11:39:47 ============================================================================ +11:39:47 FNo. Len. Field Value +11:39:47 ============================================================================ +11:39:47 [ 1] [ 4] [0200] +11:39:47 [ 2] [ 16] [6213541000320542] +11:39:47 [ 3] [ 6] [010000] +11:39:47 [ 4] [ 12] [000100000000] +11:39:47 [ 7] [ 10] [0320043854] +11:39:47 [ 11] [ 6] [268624] +11:39:47 [ 12] [ 6] [113854] +11:39:47 [ 13] [ 4] [0320] +11:39:47 [ 14] [ 4] [4912] +11:39:47 [ 15] [ 4] [0320] +11:39:47 [ 18] [ 4] [6011] +11:39:47 [ 19] [ 3] [418] +11:39:47 [ 22] [ 3] [021] +11:39:47 [ 25] [ 2] [01] +11:39:47 [ 28] [ 9] [D00002000] +11:39:47 [ 32] [ 6] [180893] +11:39:47 [ 35] [ 32] [6213541000320542=491212012054325] +11:39:47 [ 37] [ 12] [507904268624] +11:39:47 [ 41] [ 8] [0324BKDT] +11:39:47 [ 42] [ 15] [999999 ] +11:39:47 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:39:47 [ 49] [ 3] [418] +11:39:47 [ 52] [ 16] [CF8B0EB5B4436A33] +11:39:47 ============================================================================ +11:39:47 + + +waiting on router queue for slot.... +11:39:47 Sending to : +11:39:47 ============================================================================ +11:39:47 ============================================================================ +11:39:47 Slot Id : <334> +11:39:47 Transaction Type : REQUEST +11:39:47 Received From : +11:39:47 ============================================================================ +11:39:47 FNo. Len. Field Value +11:39:47 ============================================================================ +11:39:47 [ 1] [ 4] [0200] +11:39:47 [ 2] [ 16] [6213541000320542] +11:39:47 [ 3] [ 6] [010000] +11:39:47 [ 4] [ 12] [000100000000] +11:39:47 [ 7] [ 10] [0320043854] +11:39:47 [ 11] [ 6] [268624] +11:39:47 [ 12] [ 6] [113854] +11:39:47 [ 13] [ 4] [0320] +11:39:47 [ 14] [ 4] [4912] +11:39:47 [ 15] [ 4] [0320] +11:39:47 [ 18] [ 4] [6011] +11:39:47 [ 19] [ 3] [418] +11:39:47 [ 22] [ 3] [021] +11:39:47 [ 25] [ 2] [01] +11:39:47 [ 28] [ 9] [D00002000] +11:39:47 [ 32] [ 6] [180893] +11:39:47 [ 35] [ 32] [6213541000320542=491212012054325] +11:39:47 [ 37] [ 12] [507904268624] +11:39:47 [ 41] [ 8] [0324BKDT] +11:39:47 [ 42] [ 15] [999999 ] +11:39:47 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:39:47 [ 49] [ 3] [418] +11:39:47 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:39:47 ============================================================================ +11:39:47 + + +waiting on router queue for slot.... +11:39:47 Sending to : <0> +11:39:47 ============================================================================ +11:39:48 ============================================================================ +11:39:48 Slot Id : <334> +11:39:48 Transaction Type : RESPONSE +11:39:48 Received From : +11:39:48 ============================================================================ +11:39:48 FNo. Len. Field Value +11:39:48 ============================================================================ +11:39:48 [ 1] [ 4] [0210] +11:39:48 [ 2] [ 16] [6213541000320542] +11:39:48 [ 3] [ 6] [010000] +11:39:48 [ 4] [ 12] [000100000000] +11:39:48 [ 7] [ 10] [0320043854] +11:39:48 [ 11] [ 6] [268624] +11:39:48 [ 12] [ 6] [113854] +11:39:48 [ 13] [ 4] [0320] +11:39:48 [ 15] [ 4] [0320] +11:39:48 [ 18] [ 4] [6011] +11:39:48 [ 19] [ 3] [418] +11:39:48 [ 32] [ 6] [180893] +11:39:48 [ 35] [ 32] [6213541000320542=491212012054325] +11:39:48 [ 37] [ 12] [507904268624] +11:39:48 [ 38] [ 6] [421320] +11:39:48 [ 39] [ 2] [00] +11:39:48 [ 41] [ 8] [0324BKDT] +11:39:48 [ 49] [ 3] [418] +11:39:48 [ 54] [ 40] [0001418C0012902349510002418C001290234951] +11:39:48 ============================================================================ +11:39:48 Sending to : +11:39:48 ============================================================================ +11:39:48 + + +waiting on router queue for slot.... +11:39:49 ============================================================================ +11:39:49 Slot Id : <334> +11:39:49 Transaction Type : RESPONSE +11:39:49 Received From : +11:39:49 ============================================================================ +11:39:49 FNo. Len. Field Value +11:39:49 ============================================================================ +11:39:49 [ 1] [ 4] [0210] +11:39:49 [ 2] [ 16] [6213541000320542] +11:39:49 [ 3] [ 6] [010000] +11:39:49 [ 4] [ 12] [000100000000] +11:39:49 [ 7] [ 10] [0320043854] +11:39:49 [ 11] [ 6] [268624] +11:39:49 [ 12] [ 6] [113854] +11:39:49 [ 13] [ 4] [0320] +11:39:49 [ 15] [ 4] [0320] +11:39:49 [ 18] [ 4] [6011] +11:39:49 [ 19] [ 3] [418] +11:39:49 [ 32] [ 6] [180893] +11:39:49 [ 35] [ 32] [6213541000320542=491212012054325] +11:39:49 [ 37] [ 12] [507904268624] +11:39:49 [ 38] [ 6] [421320] +11:39:49 [ 39] [ 2] [00] +11:39:49 [ 41] [ 8] [0324BKDT] +11:39:49 [ 49] [ 3] [418] +11:39:49 [ 54] [ 40] [0001418C0012902349510002418C001290234951] +11:39:49 ============================================================================ +11:39:49 Calculate Source COMM Id = 2 +11:39:49 ============================================================================ +11:39:49 + + +waiting on router queue for slot.... +11:39:54 ============================================================================ +11:39:54 Slot Id : <336> +11:39:54 Transaction Type : REQUEST +11:39:54 Received From : +11:39:54 ============================================================================ +11:39:54 FNo. Len. Field Value +11:39:54 ============================================================================ +11:39:54 [ 1] [ 4] [0800] +11:39:54 [ 7] [ 10] [0320044742] +11:39:54 [ 11] [ 6] [061717] +11:39:54 [ 37] [ 12] [57911061717] +11:39:54 [ 70] [ 3] [301] +11:39:54 ============================================================================ +11:39:54 + + +waiting on router queue for slot.... +11:39:54 Sending to : +11:39:54 ============================================================================ +11:39:54 ============================================================================ +11:39:54 Slot Id : <336> +11:39:54 Transaction Type : RESPONSE +11:39:54 Received From : +11:39:54 ============================================================================ +11:39:54 FNo. Len. Field Value +11:39:54 ============================================================================ +11:39:54 [ 1] [ 4] [0810] +11:39:54 [ 7] [ 10] [0320044742] +11:39:54 [ 11] [ 6] [061717] +11:39:54 [ 37] [ 12] [579110617170] +11:39:54 [ 39] [ 2] [00] +11:39:54 [ 70] [ 3] [810] +11:39:54 ============================================================================ +11:39:54 Calculate Source COMM Id = 1 +11:39:54 ============================================================================ +11:39:54 + + +waiting on router queue for slot.... +11:39:55 ============================================================================ +11:39:55 Slot Id : <335> +11:39:55 Transaction Type : REQUEST +11:39:55 Received From : +11:39:55 ============================================================================ +11:39:55 FNo. Len. Field Value +11:39:55 ============================================================================ +11:39:55 [ 1] [ 4] [0200] +11:39:55 [ 2] [ 16] [6213545000703268] +11:39:55 [ 3] [ 6] [311000] +11:39:55 [ 4] [ 12] [000000000000] +11:39:55 [ 7] [ 10] [0320114742] +11:39:55 [ 11] [ 6] [107219] +11:39:55 [ 12] [ 6] [114742] +11:39:55 [ 13] [ 4] [0320] +11:39:55 [ 14] [ 4] [4912] +11:39:55 [ 15] [ 4] [0320] +11:39:55 [ 18] [ 4] [6011] +11:39:55 [ 22] [ 3] [900] +11:39:55 [ 25] [ 2] [02] +11:39:55 [ 28] [ 9] [000000000] +11:39:55 [ 32] [ 6] [220699] +11:39:55 [ 35] [ 32] [6213545000703268=491212010326840] +11:39:55 [ 37] [ 12] [507900327830] +11:39:55 [ 41] [ 8] [01001800] +11:39:55 [ 42] [ 15] [APTRA ] +11:39:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:39:55 [ 49] [ 3] [418] +11:39:55 [ 52] [ 16] [1502078DF376C490] +11:39:55 ============================================================================ +11:39:55 + + +waiting on router queue for slot.... +11:39:55 Sending to : +11:39:55 ============================================================================ +11:39:55 Sending to : +11:39:55 ============================================================================ +11:39:55 ============================================================================ +11:39:55 Slot Id : <335> +11:39:55 Transaction Type : REQUEST +11:39:55 Received From : +11:39:55 ============================================================================ +11:39:55 FNo. Len. Field Value +11:39:55 ============================================================================ +11:39:55 [ 1] [ 4] [0200] +11:39:55 [ 2] [ 16] [6213545000703268] +11:39:55 [ 3] [ 6] [311000] +11:39:55 [ 4] [ 12] [000000000000] +11:39:55 [ 7] [ 10] [0320114742] +11:39:55 [ 11] [ 6] [107219] +11:39:55 [ 12] [ 6] [114742] +11:39:55 [ 13] [ 4] [0320] +11:39:55 [ 14] [ 4] [4912] +11:39:55 [ 15] [ 4] [0320] +11:39:55 [ 18] [ 4] [6011] +11:39:55 [ 22] [ 3] [900] +11:39:55 [ 25] [ 2] [02] +11:39:55 [ 28] [ 9] [000000000] +11:39:55 [ 32] [ 6] [220699] +11:39:55 [ 35] [ 32] [6213545000703268=491212010326840] +11:39:55 [ 37] [ 12] [507900327830] +11:39:55 [ 41] [ 8] [01001800] +11:39:55 [ 42] [ 15] [APTRA ] +11:39:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:39:55 [ 49] [ 3] [418] +11:39:55 [ 52] [ 16] [1502078DF376C490] +11:39:55 ============================================================================ +11:39:55 + + +waiting on router queue for slot.... +11:39:55 Sending to : +11:39:55 ============================================================================ +11:39:55 ============================================================================ +11:39:55 Slot Id : <335> +11:39:55 Transaction Type : REQUEST +11:39:55 Received From : +11:39:55 ============================================================================ +11:39:55 FNo. Len. Field Value +11:39:55 ============================================================================ +11:39:55 [ 1] [ 4] [0200] +11:39:55 [ 2] [ 16] [6213545000703268] +11:39:55 [ 3] [ 6] [311000] +11:39:55 [ 4] [ 12] [000000000000] +11:39:55 [ 7] [ 10] [0320114742] +11:39:55 [ 11] [ 6] [107219] +11:39:55 [ 12] [ 6] [114742] +11:39:55 [ 13] [ 4] [0320] +11:39:55 [ 14] [ 4] [4912] +11:39:55 [ 15] [ 4] [0320] +11:39:55 [ 18] [ 4] [6011] +11:39:55 [ 22] [ 3] [900] +11:39:55 [ 25] [ 2] [02] +11:39:55 [ 28] [ 9] [000000000] +11:39:55 [ 32] [ 6] [220699] +11:39:55 [ 35] [ 32] [6213545000703268=491212010326840] +11:39:55 [ 37] [ 12] [507900327830] +11:39:55 [ 41] [ 8] [01001800] +11:39:55 [ 42] [ 15] [APTRA ] +11:39:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:39:55 [ 49] [ 3] [418] +11:39:55 [ 52] [ 16] [784EF48DB649BC78] +11:39:55 ============================================================================ +11:39:55 + + +waiting on router queue for slot.... +11:39:55 Sending to : <0> +11:39:55 ============================================================================ +11:39:55 ============================================================================ +11:39:55 Slot Id : <335> +11:39:55 Transaction Type : RESPONSE +11:39:55 Received From : +11:39:55 ============================================================================ +11:39:55 FNo. Len. Field Value +11:39:55 ============================================================================ +11:39:55 [ 1] [ 4] [0210] +11:39:55 [ 2] [ 16] [6213545000703268] +11:39:55 [ 3] [ 6] [311000] +11:39:55 [ 4] [ 12] [000000000000] +11:39:55 [ 7] [ 10] [0320114742] +11:39:55 [ 11] [ 6] [107219] +11:39:55 [ 12] [ 6] [114742] +11:39:55 [ 13] [ 4] [0320] +11:39:55 [ 15] [ 4] [0320] +11:39:55 [ 18] [ 4] [6011] +11:39:55 [ 32] [ 6] [220699] +11:39:55 [ 35] [ 32] [6213545000703268=491212010326840] +11:39:55 [ 37] [ 12] [507900327830] +11:39:55 [ 38] [ 6] [205202] +11:39:55 [ 39] [ 2] [00] +11:39:55 [ 41] [ 8] [01001800] +11:39:55 [ 49] [ 3] [418] +11:39:55 [ 54] [ 40] [1001418C0041524757641002418C004152475764] +11:39:55 ============================================================================ +11:39:55 Sending to : +11:39:55 ============================================================================ +11:39:55 + + +waiting on router queue for slot.... +11:39:56 ============================================================================ +11:39:56 Slot Id : <320> +11:39:56 Transaction Type : REQUEST +11:39:56 Received From : +11:39:56 ============================================================================ +11:39:56 FNo. Len. Field Value +11:39:56 ============================================================================ +11:39:56 [ 1] [ 4] [0200] +11:39:56 [ 2] [ 16] [1808930200050649] +11:39:56 [ 3] [ 6] [301000] +11:39:56 [ 4] [ 12] [000000000000] +11:39:56 [ 7] [ 10] [0320113951] +11:39:56 [ 11] [ 6] [733056] +11:39:56 [ 12] [ 6] [113951] +11:39:56 [ 13] [ 4] [0320] +11:39:56 [ 15] [ 4] [0320] +11:39:56 [ 18] [ 4] [6011] +11:39:56 [ 22] [ 3] [900] +11:39:56 [ 25] [ 2] [02] +11:39:56 [ 28] [ 9] [D00000000] +11:39:56 [ 32] [ 6] [621354] +11:39:56 [ 35] [ 27] [1808930200050649=1803500800] +11:39:56 [ 37] [ 12] [507904539633] +11:39:56 [ 41] [ 8] [02001600] +11:39:56 [ 42] [ 15] [NATIVE ] +11:39:56 [ 43] [ 40] [Thakek Hospital Thakek LAO] +11:39:56 [ 49] [ 3] [418] +11:39:56 [ 52] [ 16] [77FB3705978E0BED] +11:39:56 ============================================================================ +11:39:56 + + +waiting on router queue for slot.... +11:39:56 Sending to : +11:39:56 ============================================================================ +11:39:56 Sending to : +11:39:56 ============================================================================ +11:39:56 ============================================================================ +11:39:56 Slot Id : <320> +11:39:56 Transaction Type : REQUEST +11:39:56 Received From : +11:39:56 ============================================================================ +11:39:56 FNo. Len. Field Value +11:39:56 ============================================================================ +11:39:56 [ 1] [ 4] [0200] +11:39:56 [ 2] [ 16] [1808930200050649] +11:39:56 [ 3] [ 6] [301000] +11:39:56 [ 4] [ 12] [000000000000] +11:39:56 [ 7] [ 10] [0320113951] +11:39:56 [ 11] [ 6] [733056] +11:39:56 [ 12] [ 6] [113951] +11:39:56 [ 13] [ 4] [0320] +11:39:56 [ 15] [ 4] [0320] +11:39:56 [ 18] [ 4] [6011] +11:39:56 [ 22] [ 3] [900] +11:39:56 [ 25] [ 2] [02] +11:39:56 [ 28] [ 9] [D00000000] +11:39:56 [ 32] [ 6] [621354] +11:39:56 [ 35] [ 27] [1808930200050649=1803500800] +11:39:56 [ 37] [ 12] [507904539633] +11:39:56 [ 41] [ 8] [02001600] +11:39:56 [ 42] [ 15] [NATIVE ] +11:39:56 [ 43] [ 40] [Thakek Hospital Thakek LAO] +11:39:56 [ 49] [ 3] [418] +11:39:56 [ 52] [ 16] [77FB3705978E0BED] +11:39:56 ============================================================================ +11:39:56 + + +waiting on router queue for slot.... +11:39:56 Sending to : +11:39:56 ============================================================================ +11:39:56 ============================================================================ +11:39:56 Slot Id : <320> +11:39:56 Transaction Type : REQUEST +11:39:56 Received From : +11:39:56 ============================================================================ +11:39:56 FNo. Len. Field Value +11:39:56 ============================================================================ +11:39:56 [ 1] [ 4] [0200] +11:39:56 [ 2] [ 16] [1808930200050649] +11:39:56 [ 3] [ 6] [301000] +11:39:56 [ 4] [ 12] [000000000000] +11:39:56 [ 7] [ 10] [0320113951] +11:39:56 [ 11] [ 6] [733056] +11:39:56 [ 12] [ 6] [113951] +11:39:56 [ 13] [ 4] [0320] +11:39:56 [ 15] [ 4] [0320] +11:39:56 [ 18] [ 4] [6011] +11:39:56 [ 22] [ 3] [900] +11:39:56 [ 25] [ 2] [02] +11:39:56 [ 28] [ 9] [D00000000] +11:39:56 [ 32] [ 6] [621354] +11:39:56 [ 35] [ 27] [1808930200050649=1803500800] +11:39:56 [ 37] [ 12] [507904539633] +11:39:56 [ 41] [ 8] [02001600] +11:39:56 [ 42] [ 15] [NATIVE ] +11:39:56 [ 43] [ 40] [Thakek Hospital Thakek LAO] +11:39:56 [ 49] [ 3] [418] +11:39:56 [ 52] [ 16] [CDECED4E3FC2C260] +11:39:56 ============================================================================ +11:39:56 + + +waiting on router queue for slot.... +11:39:56 Sending to : <2> +11:39:56 ============================================================================ +11:39:57 ============================================================================ +11:39:57 Slot Id : <335> +11:39:57 Transaction Type : RESPONSE +11:39:57 Received From : +11:39:57 ============================================================================ +11:39:57 FNo. Len. Field Value +11:39:57 ============================================================================ +11:39:57 [ 1] [ 4] [0210] +11:39:57 [ 2] [ 16] [6213545000703268] +11:39:57 [ 3] [ 6] [311000] +11:39:57 [ 4] [ 12] [000000000000] +11:39:57 [ 7] [ 10] [0320114742] +11:39:57 [ 11] [ 6] [107219] +11:39:57 [ 12] [ 6] [114742] +11:39:57 [ 13] [ 4] [0320] +11:39:57 [ 15] [ 4] [0320] +11:39:57 [ 18] [ 4] [6011] +11:39:57 [ 32] [ 6] [220699] +11:39:57 [ 35] [ 32] [6213545000703268=491212010326840] +11:39:57 [ 37] [ 12] [507900327830] +11:39:57 [ 38] [ 6] [205202] +11:39:57 [ 39] [ 2] [00] +11:39:57 [ 41] [ 8] [01001800] +11:39:57 [ 49] [ 3] [418] +11:39:57 [ 54] [ 40] [1001418C0041524757641002418C004152475764] +11:39:57 ============================================================================ +11:39:57 Calculate Source COMM Id = 1 +11:39:57 ============================================================================ +11:39:57 + + +waiting on router queue for slot.... +11:39:58 ============================================================================ +11:39:58 Slot Id : <342> +11:39:58 Transaction Type : REQUEST +11:39:58 Received From : +11:39:58 ============================================================================ +11:39:58 FNo. Len. Field Value +11:39:58 ============================================================================ +11:39:58 [ 1] [ 4] [0200] +11:39:58 [ 2] [ 16] [1808930100002955] +11:39:58 [ 3] [ 6] [011000] +11:39:58 [ 4] [ 12] [000100000000] +11:39:58 [ 7] [ 10] [0320113954] +11:39:58 [ 11] [ 6] [733065] +11:39:58 [ 12] [ 6] [113954] +11:39:58 [ 13] [ 4] [0320] +11:39:58 [ 15] [ 4] [0320] +11:39:58 [ 18] [ 4] [6011] +11:39:58 [ 22] [ 3] [900] +11:39:58 [ 25] [ 2] [02] +11:39:58 [ 28] [ 9] [D00002000] +11:39:58 [ 32] [ 6] [621354] +11:39:58 [ 35] [ 27] [1808930100002955=1803500048] +11:39:58 [ 37] [ 12] [507902782983] +11:39:58 [ 41] [ 8] [01007200] +11:39:58 [ 42] [ 15] [NATIVE ] +11:39:58 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +11:39:58 [ 49] [ 3] [418] +11:39:58 [ 52] [ 16] [295E2F198D16A331] +11:39:58 ============================================================================ +11:39:58 + + +waiting on router queue for slot.... +11:39:58 Sending to : +11:39:58 ============================================================================ +11:39:58 Sending to : +11:39:58 ============================================================================ +11:39:58 ============================================================================ +11:39:58 Slot Id : <342> +11:39:58 Transaction Type : REQUEST +11:39:58 Received From : +11:39:58 ============================================================================ +11:39:58 FNo. Len. Field Value +11:39:58 ============================================================================ +11:39:58 [ 1] [ 4] [0200] +11:39:58 [ 2] [ 16] [1808930100002955] +11:39:58 [ 3] [ 6] [011000] +11:39:58 [ 4] [ 12] [000100000000] +11:39:58 [ 7] [ 10] [0320113954] +11:39:58 [ 11] [ 6] [733065] +11:39:58 [ 12] [ 6] [113954] +11:39:58 [ 13] [ 4] [0320] +11:39:58 [ 15] [ 4] [0320] +11:39:58 [ 18] [ 4] [6011] +11:39:58 [ 22] [ 3] [900] +11:39:58 [ 25] [ 2] [02] +11:39:58 [ 28] [ 9] [D00002000] +11:39:58 [ 32] [ 6] [621354] +11:39:58 [ 35] [ 27] [1808930100002955=1803500048] +11:39:58 [ 37] [ 12] [507902782983] +11:39:58 [ 41] [ 8] [01007200] +11:39:58 [ 42] [ 15] [NATIVE ] +11:39:58 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +11:39:58 [ 49] [ 3] [418] +11:39:58 [ 52] [ 16] [295E2F198D16A331] +11:39:58 ============================================================================ +11:39:58 + + +waiting on router queue for slot.... +11:39:58 Sending to : +11:39:58 ============================================================================ +11:39:58 ============================================================================ +11:39:58 Slot Id : <342> +11:39:58 Transaction Type : REQUEST +11:39:58 Received From : +11:39:58 ============================================================================ +11:39:58 FNo. Len. Field Value +11:39:58 ============================================================================ +11:39:58 [ 1] [ 4] [0200] +11:39:58 [ 2] [ 16] [1808930100002955] +11:39:58 [ 3] [ 6] [011000] +11:39:58 [ 4] [ 12] [000100000000] +11:39:58 [ 7] [ 10] [0320113954] +11:39:58 [ 11] [ 6] [733065] +11:39:58 [ 12] [ 6] [113954] +11:39:58 [ 13] [ 4] [0320] +11:39:58 [ 15] [ 4] [0320] +11:39:58 [ 18] [ 4] [6011] +11:39:58 [ 22] [ 3] [900] +11:39:58 [ 25] [ 2] [02] +11:39:58 [ 28] [ 9] [D00002000] +11:39:58 [ 32] [ 6] [621354] +11:39:58 [ 35] [ 27] [1808930100002955=1803500048] +11:39:58 [ 37] [ 12] [507902782983] +11:39:58 [ 41] [ 8] [01007200] +11:39:58 [ 42] [ 15] [NATIVE ] +11:39:58 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +11:39:58 [ 49] [ 3] [418] +11:39:58 [ 52] [ 16] [3DDF29442362855E] +11:39:58 ============================================================================ +11:39:58 + + +waiting on router queue for slot.... +11:39:58 Sending to : <2> +11:39:58 ============================================================================ +11:40:03 ============================================================================ +11:40:03 Slot Id : <320> +11:40:03 Transaction Type : RESPONSE +11:40:03 Received From : +11:40:03 ============================================================================ +11:40:03 FNo. Len. Field Value +11:40:03 ============================================================================ +11:40:03 [ 1] [ 4] [0210] +11:40:03 [ 2] [ 16] [1808930200050649] +11:40:03 [ 3] [ 6] [301000] +11:40:03 [ 7] [ 10] [0320113951] +11:40:03 [ 11] [ 6] [733056] +11:40:03 [ 12] [ 6] [113951] +11:40:03 [ 13] [ 4] [0320] +11:40:03 [ 14] [ 4] [1803] +11:40:03 [ 19] [ 3] [418] +11:40:03 [ 32] [ 6] [621354] +11:40:03 [ 37] [ 12] [507904539633] +11:40:03 [ 38] [ 6] [733056] +11:40:03 [ 39] [ 2] [00] +11:40:03 [ 41] [ 8] [02001600] +11:40:03 [ 49] [ 3] [418] +11:40:03 [ 52] [ 16] [CDECED4E3FC2C260] +11:40:03 [ 54] [ 20] [1002418C000104578300] +11:40:03 ============================================================================ +11:40:03 Sending to : +11:40:03 ============================================================================ +11:40:03 + + +waiting on router queue for slot.... +11:40:05 ============================================================================ +11:40:05 Slot Id : <342> +11:40:05 Transaction Type : RESPONSE +11:40:05 Received From : +11:40:05 ============================================================================ +11:40:05 FNo. Len. Field Value +11:40:05 ============================================================================ +11:40:05 [ 1] [ 4] [0210] +11:40:05 [ 2] [ 16] [1808930100002955] +11:40:05 [ 3] [ 6] [011000] +11:40:05 [ 4] [ 12] [000100000000] +11:40:05 [ 6] [ 12] [000100000000] +11:40:05 [ 7] [ 10] [0320113954] +11:40:05 [ 11] [ 6] [733065] +11:40:05 [ 12] [ 6] [113954] +11:40:05 [ 13] [ 4] [0320] +11:40:05 [ 18] [ 4] [6011] +11:40:05 [ 19] [ 3] [418] +11:40:05 [ 22] [ 3] [021] +11:40:05 [ 32] [ 6] [621354] +11:40:05 [ 35] [ 27] [1808930100002955=1803500048] +11:40:05 [ 37] [ 12] [507902782983] +11:40:05 [ 38] [ 6] [733065] +11:40:05 [ 39] [ 2] [00] +11:40:05 [ 41] [ 8] [01007200] +11:40:05 [ 49] [ 3] [418] +11:40:05 [ 52] [ 16] [3DDF29442362855E] +11:40:05 [ 54] [ 20] [1001418C000208130200] +11:40:05 ============================================================================ +11:40:05 Sending to : +11:40:05 ============================================================================ +11:40:05 + + +waiting on router queue for slot.... +11:40:05 ============================================================================ +11:40:05 Slot Id : <320> +11:40:05 Transaction Type : RESPONSE +11:40:05 Received From : +11:40:05 ============================================================================ +11:40:05 FNo. Len. Field Value +11:40:05 ============================================================================ +11:40:05 [ 1] [ 4] [0210] +11:40:05 [ 2] [ 16] [1808930200050649] +11:40:05 [ 3] [ 6] [301000] +11:40:05 [ 7] [ 10] [0320113951] +11:40:05 [ 11] [ 6] [733056] +11:40:05 [ 12] [ 6] [113951] +11:40:05 [ 13] [ 4] [0320] +11:40:05 [ 14] [ 4] [1803] +11:40:05 [ 19] [ 3] [418] +11:40:05 [ 32] [ 6] [621354] +11:40:05 [ 37] [ 12] [507904539633] +11:40:05 [ 38] [ 6] [733056] +11:40:05 [ 39] [ 2] [00] +11:40:05 [ 41] [ 8] [02001600] +11:40:05 [ 49] [ 3] [418] +11:40:05 [ 52] [ 16] [CDECED4E3FC2C260] +11:40:05 [ 54] [ 20] [1002418C000104578300] +11:40:05 ============================================================================ +11:40:05 Calculate Source COMM Id = 0 +11:40:05 ============================================================================ +11:40:05 + + +waiting on router queue for slot.... +11:40:07 ============================================================================ +11:40:07 Slot Id : <342> +11:40:07 Transaction Type : RESPONSE +11:40:07 Received From : +11:40:07 ============================================================================ +11:40:07 FNo. Len. Field Value +11:40:07 ============================================================================ +11:40:07 [ 1] [ 4] [0210] +11:40:07 [ 2] [ 16] [1808930100002955] +11:40:07 [ 3] [ 6] [011000] +11:40:07 [ 4] [ 12] [000100000000] +11:40:07 [ 6] [ 12] [000100000000] +11:40:07 [ 7] [ 10] [0320113954] +11:40:07 [ 11] [ 6] [733065] +11:40:07 [ 12] [ 6] [113954] +11:40:07 [ 13] [ 4] [0320] +11:40:07 [ 18] [ 4] [6011] +11:40:07 [ 19] [ 3] [418] +11:40:07 [ 22] [ 3] [021] +11:40:07 [ 32] [ 6] [621354] +11:40:07 [ 35] [ 27] [1808930100002955=1803500048] +11:40:07 [ 37] [ 12] [507902782983] +11:40:07 [ 38] [ 6] [733065] +11:40:07 [ 39] [ 2] [00] +11:40:07 [ 41] [ 8] [01007200] +11:40:07 [ 49] [ 3] [418] +11:40:07 [ 52] [ 16] [3DDF29442362855E] +11:40:07 [ 54] [ 20] [1001418C000208130200] +11:40:07 ============================================================================ +11:40:07 Calculate Source COMM Id = 0 +11:40:07 ============================================================================ +11:40:07 + + +waiting on router queue for slot.... +11:40:12 ============================================================================ +11:40:12 Slot Id : <345> +11:40:12 Transaction Type : REQUEST +11:40:12 Received From : +11:40:12 ============================================================================ +11:40:12 FNo. Len. Field Value +11:40:12 ============================================================================ +11:40:12 [ 1] [ 4] [0800] +11:40:12 [ 2] [ 5] [02531] +11:40:12 [ 3] [ 6] [579118] +11:40:12 [ 7] [ 10] [0320044012] +11:40:12 [ 11] [ 6] [807089] +11:40:12 [ 15] [ 10] [0320044012] +11:40:12 [ 37] [ 11] [57911807089] +11:40:12 [ 70] [ 3] [001] +11:40:12 ============================================================================ +11:40:12 + + +waiting on router queue for slot.... +11:40:12 ============================================================================ +11:40:12 Slot Id : <345> +11:40:12 Transaction Type : RESPONSE +11:40:12 Received From : +11:40:12 ============================================================================ +11:40:12 FNo. Len. Field Value +11:40:12 ============================================================================ +11:40:12 [ 1] [ 4] [0810] +11:40:12 [ 7] [ 10] [0320044012] +11:40:12 [ 11] [ 6] [807089] +11:40:12 [ 15] [ 4] [0320] +11:40:12 [ 37] [ 12] [57911807089] +11:40:12 [ 39] [ 2] [00] +11:40:12 [ 70] [ 3] [001] +11:40:12 ============================================================================ +11:40:12 Sending to : +11:40:12 ============================================================================ +11:40:12 + + +waiting on router queue for slot.... +11:40:14 ============================================================================ +11:40:14 Slot Id : <341> +11:40:14 Transaction Type : REQUEST +11:40:14 Received From : +11:40:14 ============================================================================ +11:40:14 FNo. Len. Field Value +11:40:14 ============================================================================ +11:40:14 [ 1] [ 4] [0800] +11:40:14 [ 7] [ 10] [0320043922] +11:40:14 [ 11] [ 6] [156141] +11:40:14 [ 70] [ 3] [301] +11:40:14 ============================================================================ +11:40:14 + + +waiting on router queue for slot.... +11:40:14 Sending to : +11:40:14 ============================================================================ +11:40:14 ============================================================================ +11:40:14 Slot Id : <341> +11:40:14 Transaction Type : RESPONSE +11:40:14 Received From : +11:40:14 ============================================================================ +11:40:14 FNo. Len. Field Value +11:40:14 ============================================================================ +11:40:14 [ 1] [ 4] [0810] +11:40:14 [ 7] [ 10] [0320043922] +11:40:14 [ 11] [ 6] [156141] +11:40:14 [ 39] [ 2] [00] +11:40:14 [ 70] [ 3] [301] +11:40:14 ============================================================================ +11:40:14 Calculate Source COMM Id = 2 +11:40:14 ============================================================================ +11:40:14 + + +waiting on router queue for slot.... +11:40:16 ============================================================================ +11:40:16 Slot Id : <344> +11:40:16 Transaction Type : REQUEST +11:40:16 Received From : +11:40:16 ============================================================================ +11:40:16 FNo. Len. Field Value +11:40:16 ============================================================================ +11:40:16 [ 1] [ 4] [0200] +11:40:16 [ 2] [ 16] [6213545000151369] +11:40:16 [ 3] [ 6] [301000] +11:40:16 [ 7] [ 10] [0320043922] +11:40:16 [ 11] [ 6] [268629] +11:40:16 [ 12] [ 6] [113922] +11:40:16 [ 13] [ 4] [0320] +11:40:16 [ 14] [ 4] [4912] +11:40:16 [ 15] [ 4] [0320] +11:40:16 [ 18] [ 4] [6011] +11:40:16 [ 19] [ 3] [418] +11:40:16 [ 22] [ 3] [021] +11:40:16 [ 25] [ 2] [01] +11:40:16 [ 32] [ 6] [180893] +11:40:16 [ 35] [ 32] [6213545000151369=491212015136228] +11:40:16 [ 37] [ 12] [507904268629] +11:40:16 [ 41] [ 8] [0221XKKM] +11:40:16 [ 42] [ 15] [999999 ] +11:40:16 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:40:16 [ 49] [ 3] [418] +11:40:16 [ 52] [ 16] [E9842753052AC8F6] +11:40:16 ============================================================================ +11:40:16 + + +waiting on router queue for slot.... +11:40:16 Sending to : +11:40:16 ============================================================================ +11:40:16 Sending to : +11:40:16 ============================================================================ +11:40:16 ============================================================================ +11:40:16 Slot Id : <344> +11:40:16 Transaction Type : REQUEST +11:40:16 Received From : +11:40:16 ============================================================================ +11:40:16 FNo. Len. Field Value +11:40:16 ============================================================================ +11:40:16 [ 1] [ 4] [0200] +11:40:16 [ 2] [ 16] [6213545000151369] +11:40:16 [ 3] [ 6] [301000] +11:40:16 [ 7] [ 10] [0320043922] +11:40:16 [ 11] [ 6] [268629] +11:40:16 [ 12] [ 6] [113922] +11:40:16 [ 13] [ 4] [0320] +11:40:16 [ 14] [ 4] [4912] +11:40:16 [ 15] [ 4] [0320] +11:40:16 [ 18] [ 4] [6011] +11:40:16 [ 19] [ 3] [418] +11:40:16 [ 22] [ 3] [021] +11:40:16 [ 25] [ 2] [01] +11:40:16 [ 32] [ 6] [180893] +11:40:16 [ 35] [ 32] [6213545000151369=491212015136228] +11:40:16 [ 37] [ 12] [507904268629] +11:40:16 [ 41] [ 8] [0221XKKM] +11:40:16 [ 42] [ 15] [999999 ] +11:40:16 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:40:16 [ 49] [ 3] [418] +11:40:16 [ 52] [ 16] [E9842753052AC8F6] +11:40:16 ============================================================================ +11:40:16 + + +waiting on router queue for slot.... +11:40:16 Sending to : +11:40:16 ============================================================================ +11:40:16 ============================================================================ +11:40:16 Slot Id : <344> +11:40:16 Transaction Type : REQUEST +11:40:16 Received From : +11:40:16 ============================================================================ +11:40:16 FNo. Len. Field Value +11:40:16 ============================================================================ +11:40:16 [ 1] [ 4] [0200] +11:40:16 [ 2] [ 16] [6213545000151369] +11:40:16 [ 3] [ 6] [301000] +11:40:16 [ 7] [ 10] [0320043922] +11:40:16 [ 11] [ 6] [268629] +11:40:16 [ 12] [ 6] [113922] +11:40:16 [ 13] [ 4] [0320] +11:40:16 [ 14] [ 4] [4912] +11:40:16 [ 15] [ 4] [0320] +11:40:16 [ 18] [ 4] [6011] +11:40:16 [ 19] [ 3] [418] +11:40:16 [ 22] [ 3] [021] +11:40:16 [ 25] [ 2] [01] +11:40:16 [ 32] [ 6] [180893] +11:40:16 [ 35] [ 32] [6213545000151369=491212015136228] +11:40:16 [ 37] [ 12] [507904268629] +11:40:16 [ 41] [ 8] [0221XKKM] +11:40:16 [ 42] [ 15] [999999 ] +11:40:16 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:40:16 [ 49] [ 3] [418] +11:40:16 [ 52] [ 16] [A3DA862E392F7A25] +11:40:16 ============================================================================ +11:40:16 + + +waiting on router queue for slot.... +11:40:16 Sending to : <0> +11:40:16 ============================================================================ +11:40:17 ============================================================================ +11:40:17 Slot Id : <344> +11:40:17 Transaction Type : RESPONSE +11:40:17 Received From : +11:40:17 ============================================================================ +11:40:17 FNo. Len. Field Value +11:40:17 ============================================================================ +11:40:17 [ 1] [ 4] [0210] +11:40:17 [ 2] [ 16] [6213545000151369] +11:40:17 [ 3] [ 6] [301000] +11:40:17 [ 4] [ 12] [000000000000] +11:40:17 [ 7] [ 10] [0320043922] +11:40:17 [ 11] [ 6] [268629] +11:40:17 [ 12] [ 6] [113922] +11:40:17 [ 13] [ 4] [0320] +11:40:17 [ 15] [ 4] [0320] +11:40:17 [ 18] [ 4] [6011] +11:40:17 [ 19] [ 3] [418] +11:40:17 [ 32] [ 6] [180893] +11:40:17 [ 35] [ 32] [6213545000151369=491212015136228] +11:40:17 [ 37] [ 12] [507904268629] +11:40:17 [ 38] [ 6] [582948] +11:40:17 [ 39] [ 2] [00] +11:40:17 [ 41] [ 8] [0221XKKM] +11:40:17 [ 49] [ 3] [418] +11:40:17 [ 54] [ 40] [1001418C0004414553481002418C000441455348] +11:40:17 ============================================================================ +11:40:17 Sending to : +11:40:17 ============================================================================ +11:40:17 + + +waiting on router queue for slot.... +11:40:17 ============================================================================ +11:40:17 Slot Id : <268> +11:40:17 Transaction Type : REQUEST +11:40:17 Received From : +11:40:17 ============================================================================ +11:40:17 FNo. Len. Field Value +11:40:17 ============================================================================ +11:40:17 [ 1] [ 4] [0200] +11:40:17 [ 2] [ 16] [6213544001621959] +11:40:17 [ 3] [ 6] [010000] +11:40:17 [ 4] [ 12] [000100000000] +11:40:17 [ 7] [ 10] [0320113808] +11:40:17 [ 11] [ 6] [941922] +11:40:17 [ 12] [ 6] [113808] +11:40:17 [ 13] [ 4] [0320] +11:40:17 [ 15] [ 4] [0320] +11:40:17 [ 18] [ 4] [6011] +11:40:17 [ 19] [ 3] [418] +11:40:17 [ 22] [ 3] [021] +11:40:17 [ 25] [ 2] [01] +11:40:17 [ 28] [ 9] [D00002000] +11:40:17 [ 32] [ 6] [668899] +11:40:17 [ 35] [ 32] [6213544001621959=491212012195983] +11:40:17 [ 37] [ 12] [507900270931] +11:40:17 [ 41] [ 8] [03010004] +11:40:17 [ 42] [ 15] [APT ] +11:40:17 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:40:17 [ 49] [ 3] [418] +11:40:17 [ 52] [ 16] [3E185E491A64F264] +11:40:17 ============================================================================ +11:40:17 + + +waiting on router queue for slot.... +11:40:17 Sending to : +11:40:17 ============================================================================ +11:40:17 Sending to : +11:40:17 ============================================================================ +11:40:18 ============================================================================ +11:40:18 Slot Id : <268> +11:40:18 Transaction Type : REQUEST +11:40:18 Received From : +11:40:18 ============================================================================ +11:40:18 FNo. Len. Field Value +11:40:18 ============================================================================ +11:40:18 [ 1] [ 4] [0200] +11:40:18 [ 2] [ 16] [6213544001621959] +11:40:18 [ 3] [ 6] [010000] +11:40:18 [ 4] [ 12] [000100000000] +11:40:18 [ 7] [ 10] [0320113808] +11:40:18 [ 11] [ 6] [941922] +11:40:18 [ 12] [ 6] [113808] +11:40:18 [ 13] [ 4] [0320] +11:40:18 [ 15] [ 4] [0320] +11:40:18 [ 18] [ 4] [6011] +11:40:18 [ 19] [ 3] [418] +11:40:18 [ 22] [ 3] [021] +11:40:18 [ 25] [ 2] [01] +11:40:18 [ 28] [ 9] [D00002000] +11:40:18 [ 32] [ 6] [668899] +11:40:18 [ 35] [ 32] [6213544001621959=491212012195983] +11:40:18 [ 37] [ 12] [507900270931] +11:40:18 [ 41] [ 8] [03010004] +11:40:18 [ 42] [ 15] [APT ] +11:40:18 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:40:18 [ 49] [ 3] [418] +11:40:18 [ 52] [ 16] [3E185E491A64F264] +11:40:18 ============================================================================ +11:40:18 + + +waiting on router queue for slot.... +11:40:18 Sending to : +11:40:18 ============================================================================ +11:40:18 ============================================================================ +11:40:18 Slot Id : <268> +11:40:18 Transaction Type : REQUEST +11:40:18 Received From : +11:40:18 ============================================================================ +11:40:18 FNo. Len. Field Value +11:40:18 ============================================================================ +11:40:18 [ 1] [ 4] [0200] +11:40:18 [ 2] [ 16] [6213544001621959] +11:40:18 [ 3] [ 6] [010000] +11:40:18 [ 4] [ 12] [000100000000] +11:40:18 [ 7] [ 10] [0320113808] +11:40:18 [ 11] [ 6] [941922] +11:40:18 [ 12] [ 6] [113808] +11:40:18 [ 13] [ 4] [0320] +11:40:18 [ 15] [ 4] [0320] +11:40:18 [ 18] [ 4] [6011] +11:40:18 [ 19] [ 3] [418] +11:40:18 [ 22] [ 3] [021] +11:40:18 [ 25] [ 2] [01] +11:40:18 [ 28] [ 9] [D00002000] +11:40:18 [ 32] [ 6] [668899] +11:40:18 [ 35] [ 32] [6213544001621959=491212012195983] +11:40:18 [ 37] [ 12] [507900270931] +11:40:18 [ 41] [ 8] [03010004] +11:40:18 [ 42] [ 15] [APT ] +11:40:18 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:40:18 [ 49] [ 3] [418] +11:40:18 [ 52] [ 16] [1B6B83E14D8EC223] +11:40:18 ============================================================================ +11:40:18 + + +waiting on router queue for slot.... +11:40:18 Sending to : <0> +11:40:18 ============================================================================ +11:40:18 ============================================================================ +11:40:18 Slot Id : <268> +11:40:18 Transaction Type : RESPONSE +11:40:18 Received From : +11:40:18 ============================================================================ +11:40:18 FNo. Len. Field Value +11:40:18 ============================================================================ +11:40:18 [ 1] [ 4] [0210] +11:40:18 [ 2] [ 16] [6213544001621959] +11:40:18 [ 3] [ 6] [010000] +11:40:18 [ 4] [ 12] [000100000000] +11:40:18 [ 7] [ 10] [0320113808] +11:40:18 [ 11] [ 6] [941922] +11:40:18 [ 12] [ 6] [113808] +11:40:18 [ 13] [ 4] [0320] +11:40:18 [ 15] [ 4] [0320] +11:40:18 [ 18] [ 4] [6011] +11:40:18 [ 19] [ 3] [418] +11:40:18 [ 32] [ 6] [668899] +11:40:18 [ 35] [ 32] [6213544001621959=491212012195983] +11:40:18 [ 37] [ 12] [507900270931] +11:40:18 [ 38] [ 6] [961283] +11:40:18 [ 39] [ 2] [00] +11:40:18 [ 41] [ 8] [03010004] +11:40:18 [ 49] [ 3] [418] +11:40:18 [ 54] [ 40] [0001418C0002075459470002418C000207545947] +11:40:18 ============================================================================ +11:40:18 Sending to : +11:40:18 ============================================================================ +11:40:18 + + +waiting on router queue for slot.... +11:40:19 ============================================================================ +11:40:19 Slot Id : <344> +11:40:19 Transaction Type : RESPONSE +11:40:19 Received From : +11:40:19 ============================================================================ +11:40:19 FNo. Len. Field Value +11:40:19 ============================================================================ +11:40:19 [ 1] [ 4] [0210] +11:40:19 [ 2] [ 16] [6213545000151369] +11:40:19 [ 3] [ 6] [301000] +11:40:19 [ 4] [ 12] [000000000000] +11:40:19 [ 7] [ 10] [0320043922] +11:40:19 [ 11] [ 6] [268629] +11:40:19 [ 12] [ 6] [113922] +11:40:19 [ 13] [ 4] [0320] +11:40:19 [ 15] [ 4] [0320] +11:40:19 [ 18] [ 4] [6011] +11:40:19 [ 19] [ 3] [418] +11:40:19 [ 32] [ 6] [180893] +11:40:19 [ 35] [ 32] [6213545000151369=491212015136228] +11:40:19 [ 37] [ 12] [507904268629] +11:40:19 [ 38] [ 6] [582948] +11:40:19 [ 39] [ 2] [00] +11:40:19 [ 41] [ 8] [0221XKKM] +11:40:19 [ 49] [ 3] [418] +11:40:19 [ 54] [ 40] [1001418C0004414553481002418C000441455348] +11:40:19 ============================================================================ +11:40:19 Calculate Source COMM Id = 2 +11:40:19 ============================================================================ +11:40:19 + + +waiting on router queue for slot.... +11:40:19 ============================================================================ +11:40:19 Slot Id : <323> +11:40:19 Transaction Type : REQUEST +11:40:19 Received From : +11:40:19 ============================================================================ +11:40:19 FNo. Len. Field Value +11:40:19 ============================================================================ +11:40:19 [ 1] [ 4] [0200] +11:40:19 [ 2] [ 16] [6213545000703268] +11:40:19 [ 3] [ 6] [011000] +11:40:19 [ 4] [ 12] [000100000000] +11:40:19 [ 7] [ 10] [0320114806] +11:40:19 [ 11] [ 6] [107220] +11:40:19 [ 12] [ 6] [114806] +11:40:19 [ 13] [ 4] [0320] +11:40:19 [ 14] [ 4] [4912] +11:40:19 [ 15] [ 4] [0320] +11:40:19 [ 18] [ 4] [6011] +11:40:19 [ 22] [ 3] [900] +11:40:19 [ 25] [ 2] [02] +11:40:19 [ 28] [ 9] [D00002000] +11:40:19 [ 32] [ 6] [220699] +11:40:19 [ 35] [ 32] [6213545000703268=491212010326840] +11:40:19 [ 37] [ 12] [507900327831] +11:40:19 [ 41] [ 8] [01001800] +11:40:19 [ 42] [ 15] [APTRA ] +11:40:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:40:19 [ 49] [ 3] [418] +11:40:19 [ 52] [ 16] [1502078DF376C490] +11:40:19 ============================================================================ +11:40:19 + + +waiting on router queue for slot.... +11:40:19 Sending to : +11:40:19 ============================================================================ +11:40:19 Sending to : +11:40:19 ============================================================================ +11:40:19 ============================================================================ +11:40:19 Slot Id : <323> +11:40:19 Transaction Type : REQUEST +11:40:19 Received From : +11:40:19 ============================================================================ +11:40:19 FNo. Len. Field Value +11:40:19 ============================================================================ +11:40:19 [ 1] [ 4] [0200] +11:40:19 [ 2] [ 16] [6213545000703268] +11:40:19 [ 3] [ 6] [011000] +11:40:19 [ 4] [ 12] [000100000000] +11:40:19 [ 7] [ 10] [0320114806] +11:40:19 [ 11] [ 6] [107220] +11:40:19 [ 12] [ 6] [114806] +11:40:19 [ 13] [ 4] [0320] +11:40:19 [ 14] [ 4] [4912] +11:40:19 [ 15] [ 4] [0320] +11:40:19 [ 18] [ 4] [6011] +11:40:19 [ 22] [ 3] [900] +11:40:19 [ 25] [ 2] [02] +11:40:19 [ 28] [ 9] [D00002000] +11:40:19 [ 32] [ 6] [220699] +11:40:19 [ 35] [ 32] [6213545000703268=491212010326840] +11:40:19 [ 37] [ 12] [507900327831] +11:40:19 [ 41] [ 8] [01001800] +11:40:19 [ 42] [ 15] [APTRA ] +11:40:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:40:19 [ 49] [ 3] [418] +11:40:19 [ 52] [ 16] [1502078DF376C490] +11:40:19 ============================================================================ +11:40:19 + + +waiting on router queue for slot.... +11:40:19 Sending to : +11:40:19 ============================================================================ +11:40:19 ============================================================================ +11:40:19 Slot Id : <323> +11:40:19 Transaction Type : REQUEST +11:40:19 Received From : +11:40:19 ============================================================================ +11:40:19 FNo. Len. Field Value +11:40:19 ============================================================================ +11:40:19 [ 1] [ 4] [0200] +11:40:19 [ 2] [ 16] [6213545000703268] +11:40:19 [ 3] [ 6] [011000] +11:40:19 [ 4] [ 12] [000100000000] +11:40:19 [ 7] [ 10] [0320114806] +11:40:19 [ 11] [ 6] [107220] +11:40:19 [ 12] [ 6] [114806] +11:40:19 [ 13] [ 4] [0320] +11:40:19 [ 14] [ 4] [4912] +11:40:19 [ 15] [ 4] [0320] +11:40:19 [ 18] [ 4] [6011] +11:40:19 [ 22] [ 3] [900] +11:40:19 [ 25] [ 2] [02] +11:40:19 [ 28] [ 9] [D00002000] +11:40:19 [ 32] [ 6] [220699] +11:40:19 [ 35] [ 32] [6213545000703268=491212010326840] +11:40:19 [ 37] [ 12] [507900327831] +11:40:19 [ 41] [ 8] [01001800] +11:40:19 [ 42] [ 15] [APTRA ] +11:40:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:40:19 [ 49] [ 3] [418] +11:40:19 [ 52] [ 16] [784EF48DB649BC78] +11:40:19 ============================================================================ +11:40:19 + + +waiting on router queue for slot.... +11:40:19 Sending to : <0> +11:40:19 ============================================================================ +11:40:20 ============================================================================ +11:40:20 Slot Id : <323> +11:40:20 Transaction Type : RESPONSE +11:40:20 Received From : +11:40:20 ============================================================================ +11:40:20 FNo. Len. Field Value +11:40:20 ============================================================================ +11:40:20 [ 1] [ 4] [0210] +11:40:20 [ 2] [ 16] [6213545000703268] +11:40:20 [ 3] [ 6] [011000] +11:40:20 [ 4] [ 12] [000100000000] +11:40:20 [ 7] [ 10] [0320114806] +11:40:20 [ 11] [ 6] [107220] +11:40:20 [ 12] [ 6] [114806] +11:40:20 [ 13] [ 4] [0320] +11:40:20 [ 15] [ 4] [0320] +11:40:20 [ 18] [ 4] [6011] +11:40:20 [ 32] [ 6] [220699] +11:40:20 [ 35] [ 32] [6213545000703268=491212010326840] +11:40:20 [ 37] [ 12] [507900327831] +11:40:20 [ 38] [ 6] [587494] +11:40:20 [ 39] [ 2] [00] +11:40:20 [ 41] [ 8] [01001800] +11:40:20 [ 49] [ 3] [418] +11:40:20 [ 54] [ 40] [1001418C0040522757641002418C004052275764] +11:40:20 ============================================================================ +11:40:20 Sending to : +11:40:20 ============================================================================ +11:40:20 + + +waiting on router queue for slot.... +11:40:20 ============================================================================ +11:40:20 Slot Id : <268> +11:40:20 Transaction Type : RESPONSE +11:40:20 Received From : +11:40:20 ============================================================================ +11:40:20 FNo. Len. Field Value +11:40:20 ============================================================================ +11:40:20 [ 1] [ 4] [0210] +11:40:20 [ 2] [ 16] [6213544001621959] +11:40:20 [ 3] [ 6] [010000] +11:40:20 [ 4] [ 12] [000100000000] +11:40:20 [ 7] [ 10] [0320113808] +11:40:20 [ 11] [ 6] [941922] +11:40:20 [ 12] [ 6] [113808] +11:40:20 [ 13] [ 4] [0320] +11:40:20 [ 15] [ 4] [0320] +11:40:20 [ 18] [ 4] [6011] +11:40:20 [ 19] [ 3] [418] +11:40:20 [ 32] [ 6] [668899] +11:40:20 [ 35] [ 32] [6213544001621959=491212012195983] +11:40:20 [ 37] [ 12] [507900270931] +11:40:20 [ 38] [ 6] [961283] +11:40:20 [ 39] [ 2] [00] +11:40:20 [ 41] [ 8] [03010004] +11:40:20 [ 49] [ 3] [418] +11:40:20 [ 54] [ 40] [0001418C0002075459470002418C000207545947] +11:40:20 ============================================================================ +11:40:20 Calculate Source COMM Id = 4 +11:40:20 ============================================================================ +11:40:20 + + +waiting on router queue for slot.... +11:40:22 ============================================================================ +11:40:22 Slot Id : <323> +11:40:22 Transaction Type : RESPONSE +11:40:22 Received From : +11:40:22 ============================================================================ +11:40:22 FNo. Len. Field Value +11:40:22 ============================================================================ +11:40:22 [ 1] [ 4] [0210] +11:40:22 [ 2] [ 16] [6213545000703268] +11:40:22 [ 3] [ 6] [011000] +11:40:22 [ 4] [ 12] [000100000000] +11:40:22 [ 7] [ 10] [0320114806] +11:40:22 [ 11] [ 6] [107220] +11:40:22 [ 12] [ 6] [114806] +11:40:22 [ 13] [ 4] [0320] +11:40:22 [ 15] [ 4] [0320] +11:40:22 [ 18] [ 4] [6011] +11:40:22 [ 32] [ 6] [220699] +11:40:22 [ 35] [ 32] [6213545000703268=491212010326840] +11:40:22 [ 37] [ 12] [507900327831] +11:40:22 [ 38] [ 6] [587494] +11:40:22 [ 39] [ 2] [00] +11:40:22 [ 41] [ 8] [01001800] +11:40:22 [ 49] [ 3] [418] +11:40:22 [ 54] [ 40] [1001418C0040522757641002418C004052275764] +11:40:22 ============================================================================ +11:40:22 Calculate Source COMM Id = 1 +11:40:22 ============================================================================ +11:40:22 + + +waiting on router queue for slot.... +11:40:26 ============================================================================ +11:40:26 Slot Id : <339> +11:40:26 Transaction Type : REQUEST +11:40:26 Received From : +11:40:26 ============================================================================ +11:40:26 FNo. Len. Field Value +11:40:26 ============================================================================ +11:40:26 [ 1] [ 4] [0200] +11:40:26 [ 2] [ 16] [6213541000320542] +11:40:26 [ 3] [ 6] [010000] +11:40:26 [ 4] [ 12] [000100000000] +11:40:26 [ 7] [ 10] [0320043932] +11:40:26 [ 11] [ 6] [268632] +11:40:26 [ 12] [ 6] [113932] +11:40:26 [ 13] [ 4] [0320] +11:40:26 [ 14] [ 4] [4912] +11:40:26 [ 15] [ 4] [0320] +11:40:26 [ 18] [ 4] [6011] +11:40:26 [ 19] [ 3] [418] +11:40:26 [ 22] [ 3] [021] +11:40:26 [ 25] [ 2] [01] +11:40:26 [ 28] [ 9] [D00002000] +11:40:26 [ 32] [ 6] [180893] +11:40:26 [ 35] [ 32] [6213541000320542=491212012054325] +11:40:26 [ 37] [ 12] [507904268632] +11:40:26 [ 41] [ 8] [0324BKDT] +11:40:26 [ 42] [ 15] [999999 ] +11:40:26 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:40:26 [ 49] [ 3] [418] +11:40:26 [ 52] [ 16] [CF8B0EB5B4436A33] +11:40:26 ============================================================================ +11:40:26 + + +waiting on router queue for slot.... +11:40:26 Sending to : +11:40:26 ============================================================================ +11:40:26 Sending to : +11:40:26 ============================================================================ +11:40:26 ============================================================================ +11:40:26 Slot Id : <339> +11:40:26 Transaction Type : REQUEST +11:40:26 Received From : +11:40:26 ============================================================================ +11:40:26 FNo. Len. Field Value +11:40:26 ============================================================================ +11:40:26 [ 1] [ 4] [0200] +11:40:26 [ 2] [ 16] [6213541000320542] +11:40:26 [ 3] [ 6] [010000] +11:40:26 [ 4] [ 12] [000100000000] +11:40:26 [ 7] [ 10] [0320043932] +11:40:26 [ 11] [ 6] [268632] +11:40:26 [ 12] [ 6] [113932] +11:40:26 [ 13] [ 4] [0320] +11:40:26 [ 14] [ 4] [4912] +11:40:26 [ 15] [ 4] [0320] +11:40:26 [ 18] [ 4] [6011] +11:40:26 [ 19] [ 3] [418] +11:40:26 [ 22] [ 3] [021] +11:40:26 [ 25] [ 2] [01] +11:40:26 [ 28] [ 9] [D00002000] +11:40:26 [ 32] [ 6] [180893] +11:40:26 [ 35] [ 32] [6213541000320542=491212012054325] +11:40:26 [ 37] [ 12] [507904268632] +11:40:26 [ 41] [ 8] [0324BKDT] +11:40:26 [ 42] [ 15] [999999 ] +11:40:26 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:40:26 [ 49] [ 3] [418] +11:40:26 [ 52] [ 16] [CF8B0EB5B4436A33] +11:40:26 ============================================================================ +11:40:26 + + +waiting on router queue for slot.... +11:40:26 Sending to : +11:40:26 ============================================================================ +11:40:26 ============================================================================ +11:40:26 Slot Id : <339> +11:40:26 Transaction Type : REQUEST +11:40:26 Received From : +11:40:26 ============================================================================ +11:40:26 FNo. Len. Field Value +11:40:26 ============================================================================ +11:40:26 [ 1] [ 4] [0200] +11:40:26 [ 2] [ 16] [6213541000320542] +11:40:26 [ 3] [ 6] [010000] +11:40:26 [ 4] [ 12] [000100000000] +11:40:26 [ 7] [ 10] [0320043932] +11:40:26 [ 11] [ 6] [268632] +11:40:26 [ 12] [ 6] [113932] +11:40:26 [ 13] [ 4] [0320] +11:40:26 [ 14] [ 4] [4912] +11:40:26 [ 15] [ 4] [0320] +11:40:26 [ 18] [ 4] [6011] +11:40:26 [ 19] [ 3] [418] +11:40:26 [ 22] [ 3] [021] +11:40:26 [ 25] [ 2] [01] +11:40:26 [ 28] [ 9] [D00002000] +11:40:26 [ 32] [ 6] [180893] +11:40:26 [ 35] [ 32] [6213541000320542=491212012054325] +11:40:26 [ 37] [ 12] [507904268632] +11:40:26 [ 41] [ 8] [0324BKDT] +11:40:26 [ 42] [ 15] [999999 ] +11:40:26 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:40:26 [ 49] [ 3] [418] +11:40:26 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:40:26 ============================================================================ +11:40:26 + + +waiting on router queue for slot.... +11:40:26 Sending to : <0> +11:40:26 ============================================================================ +11:40:27 ============================================================================ +11:40:27 Slot Id : <339> +11:40:27 Transaction Type : RESPONSE +11:40:27 Received From : +11:40:27 ============================================================================ +11:40:27 FNo. Len. Field Value +11:40:27 ============================================================================ +11:40:27 [ 1] [ 4] [0210] +11:40:27 [ 2] [ 16] [6213541000320542] +11:40:27 [ 3] [ 6] [010000] +11:40:27 [ 4] [ 12] [000100000000] +11:40:27 [ 7] [ 10] [0320043932] +11:40:27 [ 11] [ 6] [268632] +11:40:27 [ 12] [ 6] [113932] +11:40:27 [ 13] [ 4] [0320] +11:40:27 [ 15] [ 4] [0320] +11:40:27 [ 18] [ 4] [6011] +11:40:27 [ 19] [ 3] [418] +11:40:27 [ 32] [ 6] [180893] +11:40:27 [ 35] [ 32] [6213541000320542=491212012054325] +11:40:27 [ 37] [ 12] [507904268632] +11:40:27 [ 38] [ 6] [336551] +11:40:27 [ 39] [ 2] [00] +11:40:27 [ 41] [ 8] [0324BKDT] +11:40:27 [ 49] [ 3] [418] +11:40:27 [ 54] [ 40] [0001418C0011900349510002418C001190034951] +11:40:27 ============================================================================ +11:40:27 Sending to : +11:40:27 ============================================================================ +11:40:27 + + +waiting on router queue for slot.... +11:40:28 ============================================================================ +11:40:28 Slot Id : <339> +11:40:28 Transaction Type : RESPONSE +11:40:28 Received From : +11:40:28 ============================================================================ +11:40:28 FNo. Len. Field Value +11:40:28 ============================================================================ +11:40:28 [ 1] [ 4] [0210] +11:40:28 [ 2] [ 16] [6213541000320542] +11:40:28 [ 3] [ 6] [010000] +11:40:28 [ 4] [ 12] [000100000000] +11:40:28 [ 7] [ 10] [0320043932] +11:40:28 [ 11] [ 6] [268632] +11:40:28 [ 12] [ 6] [113932] +11:40:28 [ 13] [ 4] [0320] +11:40:28 [ 15] [ 4] [0320] +11:40:28 [ 18] [ 4] [6011] +11:40:28 [ 19] [ 3] [418] +11:40:28 [ 32] [ 6] [180893] +11:40:28 [ 35] [ 32] [6213541000320542=491212012054325] +11:40:28 [ 37] [ 12] [507904268632] +11:40:28 [ 38] [ 6] [336551] +11:40:28 [ 39] [ 2] [00] +11:40:28 [ 41] [ 8] [0324BKDT] +11:40:28 [ 49] [ 3] [418] +11:40:28 [ 54] [ 40] [0001418C0011900349510002418C001190034951] +11:40:28 ============================================================================ +11:40:28 Calculate Source COMM Id = 2 +11:40:28 ============================================================================ +11:40:28 + + +waiting on router queue for slot.... +11:40:35 ============================================================================ +11:40:35 Slot Id : <348> +11:40:35 Transaction Type : REQUEST +11:40:35 Received From : +11:40:35 ============================================================================ +11:40:35 FNo. Len. Field Value +11:40:35 ============================================================================ +11:40:35 [ 1] [ 4] [0200] +11:40:35 [ 2] [ 16] [1808930300000627] +11:40:35 [ 3] [ 6] [010000] +11:40:35 [ 4] [ 12] [000100000000] +11:40:35 [ 7] [ 10] [0320114031] +11:40:35 [ 11] [ 6] [733224] +11:40:35 [ 12] [ 6] [114031] +11:40:35 [ 13] [ 4] [0320] +11:40:35 [ 15] [ 4] [0320] +11:40:35 [ 18] [ 4] [6011] +11:40:35 [ 22] [ 3] [900] +11:40:35 [ 25] [ 2] [02] +11:40:35 [ 28] [ 9] [D00002000] +11:40:35 [ 32] [ 6] [621354] +11:40:35 [ 35] [ 27] [1808930300000627=1803500441] +11:40:35 [ 37] [ 12] [507903505406] +11:40:35 [ 41] [ 8] [09000700] +11:40:35 [ 42] [ 15] [NATIVE ] +11:40:35 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:40:35 [ 49] [ 3] [418] +11:40:35 [ 52] [ 16] [7B4555E2B22445BE] +11:40:35 ============================================================================ +11:40:35 + + +waiting on router queue for slot.... +11:40:35 Sending to : +11:40:35 ============================================================================ +11:40:35 Sending to : +11:40:35 ============================================================================ +11:40:35 ============================================================================ +11:40:35 Slot Id : <348> +11:40:35 Transaction Type : REQUEST +11:40:35 Received From : +11:40:35 ============================================================================ +11:40:35 FNo. Len. Field Value +11:40:35 ============================================================================ +11:40:35 [ 1] [ 4] [0200] +11:40:35 [ 2] [ 16] [1808930300000627] +11:40:35 [ 3] [ 6] [010000] +11:40:35 [ 4] [ 12] [000100000000] +11:40:35 [ 7] [ 10] [0320114031] +11:40:35 [ 11] [ 6] [733224] +11:40:35 [ 12] [ 6] [114031] +11:40:35 [ 13] [ 4] [0320] +11:40:35 [ 15] [ 4] [0320] +11:40:35 [ 18] [ 4] [6011] +11:40:35 [ 22] [ 3] [900] +11:40:35 [ 25] [ 2] [02] +11:40:35 [ 28] [ 9] [D00002000] +11:40:35 [ 32] [ 6] [621354] +11:40:35 [ 35] [ 27] [1808930300000627=1803500441] +11:40:35 [ 37] [ 12] [507903505406] +11:40:35 [ 41] [ 8] [09000700] +11:40:35 [ 42] [ 15] [NATIVE ] +11:40:35 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:40:35 [ 49] [ 3] [418] +11:40:35 [ 52] [ 16] [7B4555E2B22445BE] +11:40:35 ============================================================================ +11:40:35 + + +waiting on router queue for slot.... +11:40:35 Sending to : +11:40:35 ============================================================================ +11:40:35 ============================================================================ +11:40:35 Slot Id : <348> +11:40:35 Transaction Type : REQUEST +11:40:35 Received From : +11:40:35 ============================================================================ +11:40:35 FNo. Len. Field Value +11:40:35 ============================================================================ +11:40:35 [ 1] [ 4] [0200] +11:40:35 [ 2] [ 16] [1808930300000627] +11:40:35 [ 3] [ 6] [010000] +11:40:35 [ 4] [ 12] [000100000000] +11:40:35 [ 7] [ 10] [0320114031] +11:40:35 [ 11] [ 6] [733224] +11:40:35 [ 12] [ 6] [114031] +11:40:35 [ 13] [ 4] [0320] +11:40:35 [ 15] [ 4] [0320] +11:40:35 [ 18] [ 4] [6011] +11:40:35 [ 22] [ 3] [900] +11:40:35 [ 25] [ 2] [02] +11:40:35 [ 28] [ 9] [D00002000] +11:40:35 [ 32] [ 6] [621354] +11:40:35 [ 35] [ 27] [1808930300000627=1803500441] +11:40:35 [ 37] [ 12] [507903505406] +11:40:35 [ 41] [ 8] [09000700] +11:40:35 [ 42] [ 15] [NATIVE ] +11:40:35 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:40:35 [ 49] [ 3] [418] +11:40:35 [ 52] [ 16] [8C05AC738B091252] +11:40:35 ============================================================================ +11:40:35 + + +waiting on router queue for slot.... +11:40:35 Sending to : <2> +11:40:35 ============================================================================ +11:40:40 ============================================================================ +11:40:40 Slot Id : <348> +11:40:40 Transaction Type : RESPONSE +11:40:40 Received From : +11:40:40 ============================================================================ +11:40:40 FNo. Len. Field Value +11:40:40 ============================================================================ +11:40:40 [ 1] [ 4] [0210] +11:40:40 [ 2] [ 16] [1808930300000627] +11:40:40 [ 3] [ 6] [010000] +11:40:40 [ 4] [ 12] [000100000000] +11:40:40 [ 6] [ 12] [000100000000] +11:40:40 [ 7] [ 10] [0320114031] +11:40:40 [ 11] [ 6] [733224] +11:40:40 [ 12] [ 6] [114031] +11:40:40 [ 13] [ 4] [0320] +11:40:40 [ 18] [ 4] [6011] +11:40:40 [ 19] [ 3] [418] +11:40:40 [ 22] [ 3] [021] +11:40:40 [ 32] [ 6] [621354] +11:40:40 [ 35] [ 27] [1808930300000627=1803500441] +11:40:40 [ 37] [ 12] [507903505406] +11:40:40 [ 38] [ 6] [733224] +11:40:40 [ 39] [ 2] [00] +11:40:40 [ 41] [ 8] [09000700] +11:40:40 [ 49] [ 3] [418] +11:40:40 [ 52] [ 16] [8C05AC738B091252] +11:40:40 [ 54] [ 20] [1001418C001011273000] +11:40:40 ============================================================================ +11:40:40 Sending to : +11:40:40 ============================================================================ +11:40:40 + + +waiting on router queue for slot.... +11:40:42 ============================================================================ +11:40:42 Slot Id : <348> +11:40:42 Transaction Type : RESPONSE +11:40:42 Received From : +11:40:42 ============================================================================ +11:40:42 FNo. Len. Field Value +11:40:42 ============================================================================ +11:40:42 [ 1] [ 4] [0210] +11:40:42 [ 2] [ 16] [1808930300000627] +11:40:42 [ 3] [ 6] [010000] +11:40:42 [ 4] [ 12] [000100000000] +11:40:42 [ 6] [ 12] [000100000000] +11:40:42 [ 7] [ 10] [0320114031] +11:40:42 [ 11] [ 6] [733224] +11:40:42 [ 12] [ 6] [114031] +11:40:42 [ 13] [ 4] [0320] +11:40:42 [ 18] [ 4] [6011] +11:40:42 [ 19] [ 3] [418] +11:40:42 [ 22] [ 3] [021] +11:40:42 [ 32] [ 6] [621354] +11:40:42 [ 35] [ 27] [1808930300000627=1803500441] +11:40:42 [ 37] [ 12] [507903505406] +11:40:42 [ 38] [ 6] [733224] +11:40:42 [ 39] [ 2] [00] +11:40:42 [ 41] [ 8] [09000700] +11:40:42 [ 49] [ 3] [418] +11:40:42 [ 52] [ 16] [8C05AC738B091252] +11:40:42 [ 54] [ 20] [1001418C001011273000] +11:40:42 ============================================================================ +11:40:42 Calculate Source COMM Id = 0 +11:40:42 ============================================================================ +11:40:42 + + +waiting on router queue for slot.... +11:40:52 ============================================================================ +11:40:52 Slot Id : <329> +11:40:52 Transaction Type : REQUEST +11:40:52 Received From : +11:40:52 ============================================================================ +11:40:52 FNo. Len. Field Value +11:40:52 ============================================================================ +11:40:52 [ 1] [ 4] [0800] +11:40:52 [ 7] [ 10] [0320043959] +11:40:52 [ 11] [ 6] [156142] +11:40:52 [ 70] [ 3] [301] +11:40:52 ============================================================================ +11:40:52 + + +waiting on router queue for slot.... +11:40:52 Sending to : +11:40:52 ============================================================================ +11:40:52 ============================================================================ +11:40:52 Slot Id : <329> +11:40:52 Transaction Type : RESPONSE +11:40:52 Received From : +11:40:52 ============================================================================ +11:40:52 FNo. Len. Field Value +11:40:52 ============================================================================ +11:40:52 [ 1] [ 4] [0810] +11:40:52 [ 7] [ 10] [0320043959] +11:40:52 [ 11] [ 6] [156142] +11:40:52 [ 39] [ 2] [00] +11:40:52 [ 70] [ 3] [301] +11:40:52 ============================================================================ +11:40:52 Calculate Source COMM Id = 2 +11:40:52 ============================================================================ +11:40:52 + + +waiting on router queue for slot.... +11:40:54 ============================================================================ +11:40:54 Slot Id : <352> +11:40:54 Transaction Type : REQUEST +11:40:54 Received From : +11:40:54 ============================================================================ +11:40:54 FNo. Len. Field Value +11:40:54 ============================================================================ +11:40:54 [ 1] [ 4] [0200] +11:40:54 [ 2] [ 16] [6213545000151369] +11:40:54 [ 3] [ 6] [010000] +11:40:54 [ 4] [ 12] [000200000000] +11:40:54 [ 7] [ 10] [0320044001] +11:40:54 [ 11] [ 6] [268637] +11:40:54 [ 12] [ 6] [114001] +11:40:54 [ 13] [ 4] [0320] +11:40:54 [ 14] [ 4] [4912] +11:40:54 [ 15] [ 4] [0320] +11:40:54 [ 18] [ 4] [6011] +11:40:54 [ 19] [ 3] [418] +11:40:54 [ 22] [ 3] [021] +11:40:54 [ 25] [ 2] [01] +11:40:54 [ 28] [ 9] [D00002000] +11:40:54 [ 32] [ 6] [180893] +11:40:54 [ 35] [ 32] [6213545000151369=491212015136228] +11:40:54 [ 37] [ 12] [507904268637] +11:40:54 [ 41] [ 8] [0221XKKM] +11:40:54 [ 42] [ 15] [999999 ] +11:40:54 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:40:54 [ 49] [ 3] [418] +11:40:54 [ 52] [ 16] [E9842753052AC8F6] +11:40:54 ============================================================================ +11:40:54 + + +waiting on router queue for slot.... +11:40:54 Sending to : +11:40:54 ============================================================================ +11:40:54 Sending to : +11:40:54 ============================================================================ +11:40:54 ============================================================================ +11:40:54 Slot Id : <352> +11:40:54 Transaction Type : REQUEST +11:40:54 Received From : +11:40:54 ============================================================================ +11:40:54 FNo. Len. Field Value +11:40:54 ============================================================================ +11:40:54 [ 1] [ 4] [0200] +11:40:54 [ 2] [ 16] [6213545000151369] +11:40:54 [ 3] [ 6] [010000] +11:40:54 [ 4] [ 12] [000200000000] +11:40:54 [ 7] [ 10] [0320044001] +11:40:54 [ 11] [ 6] [268637] +11:40:54 [ 12] [ 6] [114001] +11:40:54 [ 13] [ 4] [0320] +11:40:54 [ 14] [ 4] [4912] +11:40:54 [ 15] [ 4] [0320] +11:40:54 [ 18] [ 4] [6011] +11:40:54 [ 19] [ 3] [418] +11:40:54 [ 22] [ 3] [021] +11:40:54 [ 25] [ 2] [01] +11:40:54 [ 28] [ 9] [D00002000] +11:40:54 [ 32] [ 6] [180893] +11:40:54 [ 35] [ 32] [6213545000151369=491212015136228] +11:40:54 [ 37] [ 12] [507904268637] +11:40:54 [ 41] [ 8] [0221XKKM] +11:40:54 [ 42] [ 15] [999999 ] +11:40:54 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:40:54 [ 49] [ 3] [418] +11:40:54 [ 52] [ 16] [E9842753052AC8F6] +11:40:54 ============================================================================ +11:40:54 + + +waiting on router queue for slot.... +11:40:54 Sending to : +11:40:54 ============================================================================ +11:40:54 ============================================================================ +11:40:54 Slot Id : <352> +11:40:54 Transaction Type : REQUEST +11:40:54 Received From : +11:40:54 ============================================================================ +11:40:54 FNo. Len. Field Value +11:40:54 ============================================================================ +11:40:54 [ 1] [ 4] [0200] +11:40:54 [ 2] [ 16] [6213545000151369] +11:40:54 [ 3] [ 6] [010000] +11:40:54 [ 4] [ 12] [000200000000] +11:40:54 [ 7] [ 10] [0320044001] +11:40:54 [ 11] [ 6] [268637] +11:40:54 [ 12] [ 6] [114001] +11:40:54 [ 13] [ 4] [0320] +11:40:54 [ 14] [ 4] [4912] +11:40:54 [ 15] [ 4] [0320] +11:40:54 [ 18] [ 4] [6011] +11:40:54 [ 19] [ 3] [418] +11:40:54 [ 22] [ 3] [021] +11:40:54 [ 25] [ 2] [01] +11:40:54 [ 28] [ 9] [D00002000] +11:40:54 [ 32] [ 6] [180893] +11:40:54 [ 35] [ 32] [6213545000151369=491212015136228] +11:40:54 [ 37] [ 12] [507904268637] +11:40:54 [ 41] [ 8] [0221XKKM] +11:40:54 [ 42] [ 15] [999999 ] +11:40:54 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:40:54 [ 49] [ 3] [418] +11:40:54 [ 52] [ 16] [A3DA862E392F7A25] +11:40:54 ============================================================================ +11:40:54 + + +waiting on router queue for slot.... +11:40:54 Sending to : <0> +11:40:54 ============================================================================ +11:40:54 ============================================================================ +11:40:54 Slot Id : <352> +11:40:54 Transaction Type : RESPONSE +11:40:54 Received From : +11:40:54 ============================================================================ +11:40:54 FNo. Len. Field Value +11:40:54 ============================================================================ +11:40:54 [ 1] [ 4] [0210] +11:40:54 [ 2] [ 16] [6213545000151369] +11:40:54 [ 3] [ 6] [010000] +11:40:54 [ 4] [ 12] [000200000000] +11:40:54 [ 7] [ 10] [0320044001] +11:40:54 [ 11] [ 6] [268637] +11:40:54 [ 12] [ 6] [114001] +11:40:54 [ 13] [ 4] [0320] +11:40:54 [ 15] [ 4] [0320] +11:40:54 [ 18] [ 4] [6011] +11:40:54 [ 19] [ 3] [418] +11:40:54 [ 22] [ 3] [021] +11:40:54 [ 32] [ 6] [180893] +11:40:54 [ 35] [ 32] [6213545000151369=491212015136228] +11:40:54 [ 37] [ 12] [507904268637] +11:40:54 [ 39] [ 2] [61] +11:40:54 [ 41] [ 8] [0221XKKM] +11:40:54 [ 49] [ 3] [418] +11:40:54 ============================================================================ +11:40:54 Sending to : +11:40:54 ============================================================================ +11:40:54 + + +waiting on router queue for slot.... +11:40:55 ============================================================================ +11:40:55 Slot Id : <309> +11:40:55 Transaction Type : REQUEST +11:40:55 Received From : +11:40:55 ============================================================================ +11:40:55 FNo. Len. Field Value +11:40:55 ============================================================================ +11:40:55 [ 1] [ 4] [0200] +11:40:55 [ 2] [ 16] [6213548000460095] +11:40:55 [ 3] [ 6] [010000] +11:40:55 [ 4] [ 12] [000010000000] +11:40:55 [ 7] [ 10] [0320113846] +11:40:55 [ 11] [ 6] [941950] +11:40:55 [ 12] [ 6] [113846] +11:40:55 [ 13] [ 4] [0320] +11:40:55 [ 15] [ 4] [0320] +11:40:55 [ 18] [ 4] [6011] +11:40:55 [ 19] [ 3] [418] +11:40:55 [ 22] [ 3] [021] +11:40:55 [ 25] [ 2] [01] +11:40:55 [ 28] [ 9] [D00002000] +11:40:55 [ 32] [ 6] [668899] +11:40:55 [ 35] [ 32] [6213548000460095=180712016009461] +11:40:55 [ 37] [ 12] [507901963509] +11:40:55 [ 41] [ 8] [03020019] +11:40:55 [ 42] [ 15] [APT ] +11:40:55 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:40:55 [ 49] [ 3] [418] +11:40:55 [ 52] [ 16] [7493671741B089E5] +11:40:55 ============================================================================ +11:40:55 + + +waiting on router queue for slot.... +11:40:55 Sending to : +11:40:55 ============================================================================ +11:40:55 Sending to : +11:40:55 ============================================================================ +11:40:55 ============================================================================ +11:40:55 Slot Id : <352> +11:40:55 Transaction Type : RESPONSE +11:40:55 Received From : +11:40:55 ============================================================================ +11:40:55 FNo. Len. Field Value +11:40:55 ============================================================================ +11:40:55 [ 1] [ 4] [0210] +11:40:55 [ 2] [ 16] [6213545000151369] +11:40:55 [ 3] [ 6] [010000] +11:40:55 [ 4] [ 12] [000200000000] +11:40:55 [ 7] [ 10] [0320044001] +11:40:55 [ 11] [ 6] [268637] +11:40:55 [ 12] [ 6] [114001] +11:40:55 [ 13] [ 4] [0320] +11:40:55 [ 15] [ 4] [0320] +11:40:55 [ 18] [ 4] [6011] +11:40:55 [ 19] [ 3] [418] +11:40:55 [ 22] [ 3] [021] +11:40:55 [ 32] [ 6] [180893] +11:40:55 [ 35] [ 32] [6213545000151369=491212015136228] +11:40:55 [ 37] [ 12] [507904268637] +11:40:55 [ 39] [ 2] [61] +11:40:55 [ 41] [ 8] [0221XKKM] +11:40:55 [ 49] [ 3] [418] +11:40:55 ============================================================================ +11:40:55 Calculate Source COMM Id = 2 +11:40:55 ============================================================================ +11:40:55 + + +waiting on router queue for slot.... +11:40:56 ============================================================================ +11:40:56 Slot Id : <309> +11:40:56 Transaction Type : REQUEST +11:40:56 Received From : +11:40:56 ============================================================================ +11:40:56 FNo. Len. Field Value +11:40:56 ============================================================================ +11:40:56 [ 1] [ 4] [0200] +11:40:56 [ 2] [ 16] [6213548000460095] +11:40:56 [ 3] [ 6] [010000] +11:40:56 [ 4] [ 12] [000010000000] +11:40:56 [ 7] [ 10] [0320113846] +11:40:56 [ 11] [ 6] [941950] +11:40:56 [ 12] [ 6] [113846] +11:40:56 [ 13] [ 4] [0320] +11:40:56 [ 15] [ 4] [0320] +11:40:56 [ 18] [ 4] [6011] +11:40:56 [ 19] [ 3] [418] +11:40:56 [ 22] [ 3] [021] +11:40:56 [ 25] [ 2] [01] +11:40:56 [ 28] [ 9] [D00002000] +11:40:56 [ 32] [ 6] [668899] +11:40:56 [ 35] [ 32] [6213548000460095=180712016009461] +11:40:56 [ 37] [ 12] [507901963509] +11:40:56 [ 41] [ 8] [03020019] +11:40:56 [ 42] [ 15] [APT ] +11:40:56 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:40:56 [ 49] [ 3] [418] +11:40:56 [ 52] [ 16] [7493671741B089E5] +11:40:56 ============================================================================ +11:40:56 + + +waiting on router queue for slot.... +11:40:56 Sending to : +11:40:56 ============================================================================ +11:40:56 ============================================================================ +11:40:56 Slot Id : <309> +11:40:56 Transaction Type : REQUEST +11:40:56 Received From : +11:40:56 ============================================================================ +11:40:56 FNo. Len. Field Value +11:40:56 ============================================================================ +11:40:56 [ 1] [ 4] [0200] +11:40:56 [ 2] [ 16] [6213548000460095] +11:40:56 [ 3] [ 6] [010000] +11:40:56 [ 4] [ 12] [000010000000] +11:40:56 [ 7] [ 10] [0320113846] +11:40:56 [ 11] [ 6] [941950] +11:40:56 [ 12] [ 6] [113846] +11:40:56 [ 13] [ 4] [0320] +11:40:56 [ 15] [ 4] [0320] +11:40:56 [ 18] [ 4] [6011] +11:40:56 [ 19] [ 3] [418] +11:40:56 [ 22] [ 3] [021] +11:40:56 [ 25] [ 2] [01] +11:40:56 [ 28] [ 9] [D00002000] +11:40:56 [ 32] [ 6] [668899] +11:40:56 [ 35] [ 32] [6213548000460095=180712016009461] +11:40:56 [ 37] [ 12] [507901963509] +11:40:56 [ 41] [ 8] [03020019] +11:40:56 [ 42] [ 15] [APT ] +11:40:56 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:40:56 [ 49] [ 3] [418] +11:40:56 [ 52] [ 16] [64A7701DBFE7AC3F] +11:40:56 ============================================================================ +11:40:56 + + +waiting on router queue for slot.... +11:40:56 Sending to : <0> +11:40:56 ============================================================================ +11:40:56 ============================================================================ +11:40:56 Slot Id : <309> +11:40:56 Transaction Type : RESPONSE +11:40:56 Received From : +11:40:56 ============================================================================ +11:40:56 FNo. Len. Field Value +11:40:56 ============================================================================ +11:40:56 [ 1] [ 4] [0210] +11:40:56 [ 2] [ 16] [6213548000460095] +11:40:56 [ 3] [ 6] [010000] +11:40:56 [ 4] [ 12] [000010000000] +11:40:56 [ 7] [ 10] [0320113846] +11:40:56 [ 11] [ 6] [941950] +11:40:56 [ 12] [ 6] [113846] +11:40:56 [ 13] [ 4] [0320] +11:40:56 [ 15] [ 4] [0320] +11:40:56 [ 18] [ 4] [6011] +11:40:56 [ 19] [ 3] [418] +11:40:56 [ 32] [ 6] [668899] +11:40:56 [ 35] [ 32] [6213548000460095=180712016009461] +11:40:56 [ 37] [ 12] [507901963509] +11:40:56 [ 38] [ 6] [985862] +11:40:56 [ 39] [ 2] [00] +11:40:56 [ 41] [ 8] [03020019] +11:40:56 [ 49] [ 3] [418] +11:40:56 [ 54] [ 40] [0001418C0001163998240002418C000116399824] +11:40:56 ============================================================================ +11:40:56 Sending to : +11:40:56 ============================================================================ +11:40:56 + + +waiting on router queue for slot.... +11:40:57 ============================================================================ +11:40:57 Slot Id : <309> +11:40:57 Transaction Type : RESPONSE +11:40:57 Received From : +11:40:57 ============================================================================ +11:40:57 FNo. Len. Field Value +11:40:57 ============================================================================ +11:40:57 [ 1] [ 4] [0210] +11:40:57 [ 2] [ 16] [6213548000460095] +11:40:57 [ 3] [ 6] [010000] +11:40:57 [ 4] [ 12] [000010000000] +11:40:57 [ 7] [ 10] [0320113846] +11:40:57 [ 11] [ 6] [941950] +11:40:57 [ 12] [ 6] [113846] +11:40:57 [ 13] [ 4] [0320] +11:40:57 [ 15] [ 4] [0320] +11:40:57 [ 18] [ 4] [6011] +11:40:57 [ 19] [ 3] [418] +11:40:57 [ 32] [ 6] [668899] +11:40:57 [ 35] [ 32] [6213548000460095=180712016009461] +11:40:57 [ 37] [ 12] [507901963509] +11:40:57 [ 38] [ 6] [985862] +11:40:57 [ 39] [ 2] [00] +11:40:57 [ 41] [ 8] [03020019] +11:40:57 [ 49] [ 3] [418] +11:40:57 [ 54] [ 40] [0001418C0001163998240002418C000116399824] +11:40:57 ============================================================================ +11:40:57 Calculate Source COMM Id = 4 +11:40:57 ============================================================================ +11:40:57 + + +waiting on router queue for slot.... +11:41:08 ============================================================================ +11:41:08 Slot Id : <337> +11:41:08 Transaction Type : REQUEST +11:41:08 Received From : +11:41:08 ============================================================================ +11:41:08 FNo. Len. Field Value +11:41:08 ============================================================================ +11:41:08 [ 1] [ 4] [0200] +11:41:08 [ 2] [ 16] [6213541000320542] +11:41:08 [ 3] [ 6] [010000] +11:41:08 [ 4] [ 12] [000100000000] +11:41:08 [ 7] [ 10] [0320044015] +11:41:08 [ 11] [ 6] [268641] +11:41:08 [ 12] [ 6] [114015] +11:41:08 [ 13] [ 4] [0320] +11:41:08 [ 14] [ 4] [4912] +11:41:08 [ 15] [ 4] [0320] +11:41:08 [ 18] [ 4] [6011] +11:41:08 [ 19] [ 3] [418] +11:41:08 [ 22] [ 3] [021] +11:41:08 [ 25] [ 2] [01] +11:41:08 [ 28] [ 9] [D00002000] +11:41:08 [ 32] [ 6] [180893] +11:41:08 [ 35] [ 32] [6213541000320542=491212012054325] +11:41:08 [ 37] [ 12] [507904268641] +11:41:08 [ 41] [ 8] [0324BKDT] +11:41:08 [ 42] [ 15] [999999 ] +11:41:08 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:41:08 [ 49] [ 3] [418] +11:41:08 [ 52] [ 16] [CF8B0EB5B4436A33] +11:41:08 ============================================================================ +11:41:08 + + +waiting on router queue for slot.... +11:41:08 Sending to : +11:41:08 ============================================================================ +11:41:08 Sending to : +11:41:08 ============================================================================ +11:41:09 ============================================================================ +11:41:09 Slot Id : <337> +11:41:09 Transaction Type : REQUEST +11:41:09 Received From : +11:41:09 ============================================================================ +11:41:09 FNo. Len. Field Value +11:41:09 ============================================================================ +11:41:09 [ 1] [ 4] [0200] +11:41:09 [ 2] [ 16] [6213541000320542] +11:41:09 [ 3] [ 6] [010000] +11:41:09 [ 4] [ 12] [000100000000] +11:41:09 [ 7] [ 10] [0320044015] +11:41:09 [ 11] [ 6] [268641] +11:41:09 [ 12] [ 6] [114015] +11:41:09 [ 13] [ 4] [0320] +11:41:09 [ 14] [ 4] [4912] +11:41:09 [ 15] [ 4] [0320] +11:41:09 [ 18] [ 4] [6011] +11:41:09 [ 19] [ 3] [418] +11:41:09 [ 22] [ 3] [021] +11:41:09 [ 25] [ 2] [01] +11:41:09 [ 28] [ 9] [D00002000] +11:41:09 [ 32] [ 6] [180893] +11:41:09 [ 35] [ 32] [6213541000320542=491212012054325] +11:41:09 [ 37] [ 12] [507904268641] +11:41:09 [ 41] [ 8] [0324BKDT] +11:41:09 [ 42] [ 15] [999999 ] +11:41:09 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:41:09 [ 49] [ 3] [418] +11:41:09 [ 52] [ 16] [CF8B0EB5B4436A33] +11:41:09 ============================================================================ +11:41:09 + + +waiting on router queue for slot.... +11:41:09 Sending to : +11:41:09 ============================================================================ +11:41:09 ============================================================================ +11:41:09 Slot Id : <337> +11:41:09 Transaction Type : REQUEST +11:41:09 Received From : +11:41:09 ============================================================================ +11:41:09 FNo. Len. Field Value +11:41:09 ============================================================================ +11:41:09 [ 1] [ 4] [0200] +11:41:09 [ 2] [ 16] [6213541000320542] +11:41:09 [ 3] [ 6] [010000] +11:41:09 [ 4] [ 12] [000100000000] +11:41:09 [ 7] [ 10] [0320044015] +11:41:09 [ 11] [ 6] [268641] +11:41:09 [ 12] [ 6] [114015] +11:41:09 [ 13] [ 4] [0320] +11:41:09 [ 14] [ 4] [4912] +11:41:09 [ 15] [ 4] [0320] +11:41:09 [ 18] [ 4] [6011] +11:41:09 [ 19] [ 3] [418] +11:41:09 [ 22] [ 3] [021] +11:41:09 [ 25] [ 2] [01] +11:41:09 [ 28] [ 9] [D00002000] +11:41:09 [ 32] [ 6] [180893] +11:41:09 [ 35] [ 32] [6213541000320542=491212012054325] +11:41:09 [ 37] [ 12] [507904268641] +11:41:09 [ 41] [ 8] [0324BKDT] +11:41:09 [ 42] [ 15] [999999 ] +11:41:09 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:41:09 [ 49] [ 3] [418] +11:41:09 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:41:09 ============================================================================ +11:41:09 + + +waiting on router queue for slot.... +11:41:09 Sending to : <0> +11:41:09 ============================================================================ +11:41:09 ============================================================================ +11:41:09 Slot Id : <337> +11:41:09 Transaction Type : RESPONSE +11:41:09 Received From : +11:41:09 ============================================================================ +11:41:09 FNo. Len. Field Value +11:41:09 ============================================================================ +11:41:09 [ 1] [ 4] [0210] +11:41:09 [ 2] [ 16] [6213541000320542] +11:41:09 [ 3] [ 6] [010000] +11:41:09 [ 4] [ 12] [000100000000] +11:41:09 [ 7] [ 10] [0320044015] +11:41:09 [ 11] [ 6] [268641] +11:41:09 [ 12] [ 6] [114015] +11:41:09 [ 13] [ 4] [0320] +11:41:09 [ 15] [ 4] [0320] +11:41:09 [ 18] [ 4] [6011] +11:41:09 [ 19] [ 3] [418] +11:41:09 [ 32] [ 6] [180893] +11:41:09 [ 35] [ 32] [6213541000320542=491212012054325] +11:41:09 [ 37] [ 12] [507904268641] +11:41:09 [ 38] [ 6] [918546] +11:41:09 [ 39] [ 2] [00] +11:41:09 [ 41] [ 8] [0324BKDT] +11:41:09 [ 49] [ 3] [418] +11:41:09 [ 54] [ 40] [0001418C0010898349510002418C001089834951] +11:41:09 ============================================================================ +11:41:09 Sending to : +11:41:09 ============================================================================ +11:41:09 + + +waiting on router queue for slot.... +11:41:11 ============================================================================ +11:41:11 Slot Id : <337> +11:41:11 Transaction Type : RESPONSE +11:41:11 Received From : +11:41:11 ============================================================================ +11:41:11 FNo. Len. Field Value +11:41:11 ============================================================================ +11:41:11 [ 1] [ 4] [0210] +11:41:11 [ 2] [ 16] [6213541000320542] +11:41:11 [ 3] [ 6] [010000] +11:41:11 [ 4] [ 12] [000100000000] +11:41:11 [ 7] [ 10] [0320044015] +11:41:11 [ 11] [ 6] [268641] +11:41:11 [ 12] [ 6] [114015] +11:41:11 [ 13] [ 4] [0320] +11:41:11 [ 15] [ 4] [0320] +11:41:11 [ 18] [ 4] [6011] +11:41:11 [ 19] [ 3] [418] +11:41:11 [ 32] [ 6] [180893] +11:41:11 [ 35] [ 32] [6213541000320542=491212012054325] +11:41:11 [ 37] [ 12] [507904268641] +11:41:11 [ 38] [ 6] [918546] +11:41:11 [ 39] [ 2] [00] +11:41:11 [ 41] [ 8] [0324BKDT] +11:41:11 [ 49] [ 3] [418] +11:41:11 [ 54] [ 40] [0001418C0010898349510002418C001089834951] +11:41:11 ============================================================================ +11:41:11 Calculate Source COMM Id = 2 +11:41:11 ============================================================================ +11:41:11 + + +waiting on router queue for slot.... +11:41:14 ============================================================================ +11:41:14 Slot Id : <328> +11:41:14 Transaction Type : REQUEST +11:41:14 Received From : +11:41:14 ============================================================================ +11:41:14 FNo. Len. Field Value +11:41:14 ============================================================================ +11:41:14 [ 1] [ 4] [0800] +11:41:14 [ 2] [ 5] [02531] +11:41:14 [ 3] [ 6] [579118] +11:41:14 [ 7] [ 10] [0320044114] +11:41:14 [ 11] [ 6] [807090] +11:41:14 [ 15] [ 10] [0320044114] +11:41:14 [ 37] [ 11] [57911807090] +11:41:14 [ 70] [ 3] [001] +11:41:14 ============================================================================ +11:41:14 + + +waiting on router queue for slot.... +11:41:14 ============================================================================ +11:41:14 Slot Id : <328> +11:41:14 Transaction Type : RESPONSE +11:41:14 Received From : +11:41:14 ============================================================================ +11:41:14 FNo. Len. Field Value +11:41:14 ============================================================================ +11:41:14 [ 1] [ 4] [0810] +11:41:14 [ 7] [ 10] [0320044114] +11:41:14 [ 11] [ 6] [807090] +11:41:14 [ 15] [ 4] [0320] +11:41:14 [ 37] [ 12] [57911807090] +11:41:14 [ 39] [ 2] [00] +11:41:14 [ 70] [ 3] [001] +11:41:14 ============================================================================ +11:41:14 Sending to : +11:41:14 ============================================================================ +11:41:14 + + +waiting on router queue for slot.... +11:41:16 ============================================================================ +11:41:16 Slot Id : <347> +11:41:16 Transaction Type : REQUEST +11:41:16 Received From : +11:41:16 ============================================================================ +11:41:16 FNo. Len. Field Value +11:41:16 ============================================================================ +11:41:16 [ 1] [ 4] [0200] +11:41:16 [ 2] [ 16] [6213541000507940] +11:41:16 [ 3] [ 6] [011000] +11:41:16 [ 4] [ 12] [000020000000] +11:41:16 [ 7] [ 10] [0320114138] +11:41:16 [ 11] [ 6] [204859] +11:41:16 [ 12] [ 6] [233948] +11:41:16 [ 13] [ 4] [0319] +11:41:16 [ 14] [ 4] [4912] +11:41:16 [ 15] [ 4] [0319] +11:41:16 [ 18] [ 4] [6011] +11:41:16 [ 19] [ 3] [418] +11:41:16 [ 22] [ 3] [021] +11:41:16 [ 25] [ 2] [01] +11:41:16 [ 28] [ 9] [D00002000] +11:41:16 [ 32] [ 6] [198901] +11:41:16 [ 35] [ 32] [6213541000507940=491212010794302] +11:41:16 [ 37] [ 12] [507911204859] +11:41:16 [ 41] [ 8] [01529031] +11:41:16 [ 42] [ 15] [000000041529031] +11:41:16 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:41:16 [ 49] [ 3] [418] +11:41:16 [ 52] [ 16] [4CB1611D23B546E9] +11:41:16 ============================================================================ +11:41:16 + + +waiting on router queue for slot.... +11:41:16 Sending to : +11:41:16 ============================================================================ +11:41:16 Sending to : +11:41:16 ============================================================================ +11:41:17 ============================================================================ +11:41:17 Slot Id : <347> +11:41:17 Transaction Type : REQUEST +11:41:17 Received From : +11:41:17 ============================================================================ +11:41:17 FNo. Len. Field Value +11:41:17 ============================================================================ +11:41:17 [ 1] [ 4] [0200] +11:41:17 [ 2] [ 16] [6213541000507940] +11:41:17 [ 3] [ 6] [011000] +11:41:17 [ 4] [ 12] [000020000000] +11:41:17 [ 7] [ 10] [0320114138] +11:41:17 [ 11] [ 6] [204859] +11:41:17 [ 12] [ 6] [233948] +11:41:17 [ 13] [ 4] [0319] +11:41:17 [ 14] [ 4] [4912] +11:41:17 [ 15] [ 4] [0319] +11:41:17 [ 18] [ 4] [6011] +11:41:17 [ 19] [ 3] [418] +11:41:17 [ 22] [ 3] [021] +11:41:17 [ 25] [ 2] [01] +11:41:17 [ 28] [ 9] [D00002000] +11:41:17 [ 32] [ 6] [198901] +11:41:17 [ 35] [ 32] [6213541000507940=491212010794302] +11:41:17 [ 37] [ 12] [507911204859] +11:41:17 [ 41] [ 8] [01529031] +11:41:17 [ 42] [ 15] [000000041529031] +11:41:17 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:41:17 [ 49] [ 3] [418] +11:41:17 [ 52] [ 16] [4CB1611D23B546E9] +11:41:17 ============================================================================ +11:41:17 + + +waiting on router queue for slot.... +11:41:17 Sending to : +11:41:17 ============================================================================ +11:41:17 ============================================================================ +11:41:17 Slot Id : <347> +11:41:17 Transaction Type : REQUEST +11:41:17 Received From : +11:41:17 ============================================================================ +11:41:17 FNo. Len. Field Value +11:41:17 ============================================================================ +11:41:17 [ 1] [ 4] [0200] +11:41:17 [ 2] [ 16] [6213541000507940] +11:41:17 [ 3] [ 6] [011000] +11:41:17 [ 4] [ 12] [000020000000] +11:41:17 [ 7] [ 10] [0320114138] +11:41:17 [ 11] [ 6] [204859] +11:41:17 [ 12] [ 6] [233948] +11:41:17 [ 13] [ 4] [0319] +11:41:17 [ 14] [ 4] [4912] +11:41:17 [ 15] [ 4] [0319] +11:41:17 [ 18] [ 4] [6011] +11:41:17 [ 19] [ 3] [418] +11:41:17 [ 22] [ 3] [021] +11:41:17 [ 25] [ 2] [01] +11:41:17 [ 28] [ 9] [D00002000] +11:41:17 [ 32] [ 6] [198901] +11:41:17 [ 35] [ 32] [6213541000507940=491212010794302] +11:41:17 [ 37] [ 12] [507911204859] +11:41:17 [ 41] [ 8] [01529031] +11:41:17 [ 42] [ 15] [000000041529031] +11:41:17 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:41:17 [ 49] [ 3] [418] +11:41:17 [ 52] [ 16] [520DFE9197C4E8BD] +11:41:17 ============================================================================ +11:41:17 + + +waiting on router queue for slot.... +11:41:17 Sending to : <0> +11:41:17 ============================================================================ +11:41:17 ============================================================================ +11:41:17 Slot Id : <347> +11:41:17 Transaction Type : RESPONSE +11:41:17 Received From : +11:41:17 ============================================================================ +11:41:17 FNo. Len. Field Value +11:41:17 ============================================================================ +11:41:17 [ 1] [ 4] [0210] +11:41:17 [ 2] [ 16] [6213541000507940] +11:41:17 [ 3] [ 6] [011000] +11:41:17 [ 4] [ 12] [000020000000] +11:41:17 [ 7] [ 10] [0320114138] +11:41:17 [ 11] [ 6] [204859] +11:41:17 [ 12] [ 6] [233948] +11:41:17 [ 13] [ 4] [0319] +11:41:17 [ 15] [ 4] [0319] +11:41:17 [ 18] [ 4] [6011] +11:41:17 [ 19] [ 3] [418] +11:41:17 [ 32] [ 6] [198901] +11:41:17 [ 35] [ 32] [6213541000507940=491212010794302] +11:41:17 [ 37] [ 12] [507911204859] +11:41:17 [ 38] [ 6] [165872] +11:41:17 [ 39] [ 2] [00] +11:41:17 [ 41] [ 8] [01529031] +11:41:17 [ 49] [ 3] [418] +11:41:17 [ 54] [ 40] [1001418C0003475143031002418C000347514303] +11:41:17 ============================================================================ +11:41:17 Sending to : +11:41:17 ============================================================================ +11:41:17 + + +waiting on router queue for slot.... +11:41:17 ============================================================================ +11:41:17 Slot Id : <350> +11:41:17 Transaction Type : REQUEST +11:41:17 Received From : +11:41:17 ============================================================================ +11:41:17 FNo. Len. Field Value +11:41:17 ============================================================================ +11:41:17 [ 1] [ 4] [0200] +11:41:17 [ 2] [ 16] [6213545000151369] +11:41:17 [ 3] [ 6] [010000] +11:41:17 [ 4] [ 12] [000100000000] +11:41:17 [ 7] [ 10] [0320044025] +11:41:17 [ 11] [ 6] [268643] +11:41:17 [ 12] [ 6] [114025] +11:41:17 [ 13] [ 4] [0320] +11:41:17 [ 14] [ 4] [4912] +11:41:17 [ 15] [ 4] [0320] +11:41:17 [ 18] [ 4] [6011] +11:41:17 [ 19] [ 3] [418] +11:41:17 [ 22] [ 3] [021] +11:41:17 [ 25] [ 2] [01] +11:41:17 [ 28] [ 9] [D00002000] +11:41:17 [ 32] [ 6] [180893] +11:41:17 [ 35] [ 32] [6213545000151369=491212015136228] +11:41:17 [ 37] [ 12] [507904268643] +11:41:17 [ 41] [ 8] [0221XKKM] +11:41:17 [ 42] [ 15] [999999 ] +11:41:17 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:41:17 [ 49] [ 3] [418] +11:41:17 [ 52] [ 16] [E9842753052AC8F6] +11:41:17 ============================================================================ +11:41:17 + + +waiting on router queue for slot.... +11:41:17 Sending to : +11:41:17 ============================================================================ +11:41:17 Sending to : +11:41:17 ============================================================================ +11:41:18 ============================================================================ +11:41:18 Slot Id : <350> +11:41:18 Transaction Type : REQUEST +11:41:18 Received From : +11:41:18 ============================================================================ +11:41:18 FNo. Len. Field Value +11:41:18 ============================================================================ +11:41:18 [ 1] [ 4] [0200] +11:41:18 [ 2] [ 16] [6213545000151369] +11:41:18 [ 3] [ 6] [010000] +11:41:18 [ 4] [ 12] [000100000000] +11:41:18 [ 7] [ 10] [0320044025] +11:41:18 [ 11] [ 6] [268643] +11:41:18 [ 12] [ 6] [114025] +11:41:18 [ 13] [ 4] [0320] +11:41:18 [ 14] [ 4] [4912] +11:41:18 [ 15] [ 4] [0320] +11:41:18 [ 18] [ 4] [6011] +11:41:18 [ 19] [ 3] [418] +11:41:18 [ 22] [ 3] [021] +11:41:18 [ 25] [ 2] [01] +11:41:18 [ 28] [ 9] [D00002000] +11:41:18 [ 32] [ 6] [180893] +11:41:18 [ 35] [ 32] [6213545000151369=491212015136228] +11:41:18 [ 37] [ 12] [507904268643] +11:41:18 [ 41] [ 8] [0221XKKM] +11:41:18 [ 42] [ 15] [999999 ] +11:41:18 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:41:18 [ 49] [ 3] [418] +11:41:18 [ 52] [ 16] [E9842753052AC8F6] +11:41:18 ============================================================================ +11:41:18 + + +waiting on router queue for slot.... +11:41:18 Sending to : +11:41:18 ============================================================================ +11:41:18 ============================================================================ +11:41:18 Slot Id : <350> +11:41:18 Transaction Type : REQUEST +11:41:18 Received From : +11:41:18 ============================================================================ +11:41:18 FNo. Len. Field Value +11:41:18 ============================================================================ +11:41:18 [ 1] [ 4] [0200] +11:41:18 [ 2] [ 16] [6213545000151369] +11:41:18 [ 3] [ 6] [010000] +11:41:18 [ 4] [ 12] [000100000000] +11:41:18 [ 7] [ 10] [0320044025] +11:41:18 [ 11] [ 6] [268643] +11:41:18 [ 12] [ 6] [114025] +11:41:18 [ 13] [ 4] [0320] +11:41:18 [ 14] [ 4] [4912] +11:41:18 [ 15] [ 4] [0320] +11:41:18 [ 18] [ 4] [6011] +11:41:18 [ 19] [ 3] [418] +11:41:18 [ 22] [ 3] [021] +11:41:18 [ 25] [ 2] [01] +11:41:18 [ 28] [ 9] [D00002000] +11:41:18 [ 32] [ 6] [180893] +11:41:18 [ 35] [ 32] [6213545000151369=491212015136228] +11:41:18 [ 37] [ 12] [507904268643] +11:41:18 [ 41] [ 8] [0221XKKM] +11:41:18 [ 42] [ 15] [999999 ] +11:41:18 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:41:18 [ 49] [ 3] [418] +11:41:18 [ 52] [ 16] [A3DA862E392F7A25] +11:41:18 ============================================================================ +11:41:18 + + +waiting on router queue for slot.... +11:41:18 Sending to : <0> +11:41:18 ============================================================================ +11:41:18 ============================================================================ +11:41:18 Slot Id : <319> +11:41:18 Transaction Type : REQUEST +11:41:18 Received From : +11:41:18 ============================================================================ +11:41:18 FNo. Len. Field Value +11:41:18 ============================================================================ +11:41:18 [ 1] [ 4] [0200] +11:41:18 [ 2] [ 16] [6213544001621959] +11:41:18 [ 3] [ 6] [010000] +11:41:18 [ 4] [ 12] [000100000000] +11:41:18 [ 7] [ 10] [0320113909] +11:41:18 [ 11] [ 6] [941977] +11:41:18 [ 12] [ 6] [113909] +11:41:18 [ 13] [ 4] [0320] +11:41:18 [ 15] [ 4] [0320] +11:41:18 [ 18] [ 4] [6011] +11:41:18 [ 19] [ 3] [418] +11:41:18 [ 22] [ 3] [021] +11:41:18 [ 25] [ 2] [01] +11:41:18 [ 28] [ 9] [D00002000] +11:41:18 [ 32] [ 6] [668899] +11:41:18 [ 35] [ 32] [6213544001621959=491212012195983] +11:41:18 [ 37] [ 12] [507900270933] +11:41:18 [ 41] [ 8] [03010004] +11:41:18 [ 42] [ 15] [APT ] +11:41:18 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:41:18 [ 49] [ 3] [418] +11:41:18 [ 52] [ 16] [3E185E491A64F264] +11:41:18 ============================================================================ +11:41:18 + + +waiting on router queue for slot.... +11:41:18 Sending to : +11:41:18 ============================================================================ +11:41:18 Sending to : +11:41:18 ============================================================================ +11:41:18 ============================================================================ +11:41:18 Slot Id : <319> +11:41:18 Transaction Type : REQUEST +11:41:18 Received From : +11:41:18 ============================================================================ +11:41:18 FNo. Len. Field Value +11:41:18 ============================================================================ +11:41:18 [ 1] [ 4] [0200] +11:41:18 [ 2] [ 16] [6213544001621959] +11:41:18 [ 3] [ 6] [010000] +11:41:18 [ 4] [ 12] [000100000000] +11:41:18 [ 7] [ 10] [0320113909] +11:41:18 [ 11] [ 6] [941977] +11:41:18 [ 12] [ 6] [113909] +11:41:18 [ 13] [ 4] [0320] +11:41:18 [ 15] [ 4] [0320] +11:41:18 [ 18] [ 4] [6011] +11:41:18 [ 19] [ 3] [418] +11:41:18 [ 22] [ 3] [021] +11:41:18 [ 25] [ 2] [01] +11:41:18 [ 28] [ 9] [D00002000] +11:41:18 [ 32] [ 6] [668899] +11:41:18 [ 35] [ 32] [6213544001621959=491212012195983] +11:41:18 [ 37] [ 12] [507900270933] +11:41:18 [ 41] [ 8] [03010004] +11:41:18 [ 42] [ 15] [APT ] +11:41:18 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:41:18 [ 49] [ 3] [418] +11:41:18 [ 52] [ 16] [3E185E491A64F264] +11:41:18 ============================================================================ +11:41:18 + + +waiting on router queue for slot.... +11:41:18 Sending to : +11:41:18 ============================================================================ +11:41:18 ============================================================================ +11:41:18 Slot Id : <319> +11:41:18 Transaction Type : REQUEST +11:41:18 Received From : +11:41:18 ============================================================================ +11:41:18 FNo. Len. Field Value +11:41:18 ============================================================================ +11:41:18 [ 1] [ 4] [0200] +11:41:18 [ 2] [ 16] [6213544001621959] +11:41:18 [ 3] [ 6] [010000] +11:41:18 [ 4] [ 12] [000100000000] +11:41:18 [ 7] [ 10] [0320113909] +11:41:18 [ 11] [ 6] [941977] +11:41:18 [ 12] [ 6] [113909] +11:41:18 [ 13] [ 4] [0320] +11:41:18 [ 15] [ 4] [0320] +11:41:18 [ 18] [ 4] [6011] +11:41:18 [ 19] [ 3] [418] +11:41:18 [ 22] [ 3] [021] +11:41:18 [ 25] [ 2] [01] +11:41:18 [ 28] [ 9] [D00002000] +11:41:18 [ 32] [ 6] [668899] +11:41:18 [ 35] [ 32] [6213544001621959=491212012195983] +11:41:18 [ 37] [ 12] [507900270933] +11:41:18 [ 41] [ 8] [03010004] +11:41:18 [ 42] [ 15] [APT ] +11:41:18 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:41:18 [ 49] [ 3] [418] +11:41:18 [ 52] [ 16] [1B6B83E14D8EC223] +11:41:18 ============================================================================ +11:41:18 + + +waiting on router queue for slot.... +11:41:18 Sending to : <0> +11:41:18 ============================================================================ +11:41:18 ============================================================================ +11:41:18 Slot Id : <350> +11:41:18 Transaction Type : RESPONSE +11:41:18 Received From : +11:41:18 ============================================================================ +11:41:18 FNo. Len. Field Value +11:41:18 ============================================================================ +11:41:18 [ 1] [ 4] [0210] +11:41:18 [ 2] [ 16] [6213545000151369] +11:41:18 [ 3] [ 6] [010000] +11:41:18 [ 4] [ 12] [000100000000] +11:41:18 [ 7] [ 10] [0320044025] +11:41:18 [ 11] [ 6] [268643] +11:41:18 [ 12] [ 6] [114025] +11:41:18 [ 13] [ 4] [0320] +11:41:18 [ 15] [ 4] [0320] +11:41:18 [ 18] [ 4] [6011] +11:41:18 [ 19] [ 3] [418] +11:41:18 [ 32] [ 6] [180893] +11:41:18 [ 35] [ 32] [6213545000151369=491212015136228] +11:41:18 [ 37] [ 12] [507904268643] +11:41:18 [ 38] [ 6] [099743] +11:41:18 [ 39] [ 2] [00] +11:41:18 [ 41] [ 8] [0221XKKM] +11:41:18 [ 49] [ 3] [418] +11:41:18 [ 54] [ 40] [0001418C0003412553480002418C000341255348] +11:41:18 ============================================================================ +11:41:18 Sending to : +11:41:18 ============================================================================ +11:41:18 + + +waiting on router queue for slot.... +11:41:19 ============================================================================ +11:41:19 Slot Id : <347> +11:41:19 Transaction Type : RESPONSE +11:41:19 Received From : +11:41:19 ============================================================================ +11:41:19 FNo. Len. Field Value +11:41:19 ============================================================================ +11:41:19 [ 1] [ 4] [0210] +11:41:19 [ 2] [ 16] [6213541000507940] +11:41:19 [ 3] [ 6] [011000] +11:41:19 [ 4] [ 12] [000020000000] +11:41:19 [ 7] [ 10] [0320114138] +11:41:19 [ 11] [ 6] [204859] +11:41:19 [ 12] [ 6] [233948] +11:41:19 [ 13] [ 4] [0319] +11:41:19 [ 15] [ 4] [0319] +11:41:19 [ 18] [ 4] [6011] +11:41:19 [ 19] [ 3] [418] +11:41:19 [ 32] [ 6] [198901] +11:41:19 [ 35] [ 32] [6213541000507940=491212010794302] +11:41:19 [ 37] [ 12] [507911204859] +11:41:19 [ 38] [ 6] [165872] +11:41:19 [ 39] [ 2] [00] +11:41:19 [ 41] [ 8] [01529031] +11:41:19 [ 49] [ 3] [418] +11:41:19 [ 54] [ 40] [1001418C0003475143031002418C000347514303] +11:41:19 ============================================================================ +11:41:19 Calculate Source COMM Id = 5 +11:41:19 ============================================================================ +11:41:19 + + +waiting on router queue for slot.... +11:41:19 ============================================================================ +11:41:19 Slot Id : <319> +11:41:19 Transaction Type : RESPONSE +11:41:19 Received From : +11:41:19 ============================================================================ +11:41:19 FNo. Len. Field Value +11:41:19 ============================================================================ +11:41:19 [ 1] [ 4] [0210] +11:41:19 [ 2] [ 16] [6213544001621959] +11:41:19 [ 3] [ 6] [010000] +11:41:19 [ 4] [ 12] [000100000000] +11:41:19 [ 7] [ 10] [0320113909] +11:41:19 [ 11] [ 6] [941977] +11:41:19 [ 12] [ 6] [113909] +11:41:19 [ 13] [ 4] [0320] +11:41:19 [ 15] [ 4] [0320] +11:41:19 [ 18] [ 4] [6011] +11:41:19 [ 19] [ 3] [418] +11:41:19 [ 32] [ 6] [668899] +11:41:19 [ 35] [ 32] [6213544001621959=491212012195983] +11:41:19 [ 37] [ 12] [507900270933] +11:41:19 [ 38] [ 6] [623064] +11:41:19 [ 39] [ 2] [00] +11:41:19 [ 41] [ 8] [03010004] +11:41:19 [ 49] [ 3] [418] +11:41:19 [ 54] [ 40] [0001418C0001073459470002418C000107345947] +11:41:19 ============================================================================ +11:41:19 Sending to : +11:41:19 ============================================================================ +11:41:19 + + +waiting on router queue for slot.... +11:41:21 ============================================================================ +11:41:21 Slot Id : <350> +11:41:21 Transaction Type : RESPONSE +11:41:21 Received From : +11:41:21 ============================================================================ +11:41:21 FNo. Len. Field Value +11:41:21 ============================================================================ +11:41:21 [ 1] [ 4] [0210] +11:41:21 [ 2] [ 16] [6213545000151369] +11:41:21 [ 3] [ 6] [010000] +11:41:21 [ 4] [ 12] [000100000000] +11:41:21 [ 7] [ 10] [0320044025] +11:41:21 [ 11] [ 6] [268643] +11:41:21 [ 12] [ 6] [114025] +11:41:21 [ 13] [ 4] [0320] +11:41:21 [ 15] [ 4] [0320] +11:41:21 [ 18] [ 4] [6011] +11:41:21 [ 19] [ 3] [418] +11:41:21 [ 32] [ 6] [180893] +11:41:21 [ 35] [ 32] [6213545000151369=491212015136228] +11:41:21 [ 37] [ 12] [507904268643] +11:41:21 [ 38] [ 6] [099743] +11:41:21 [ 39] [ 2] [00] +11:41:21 [ 41] [ 8] [0221XKKM] +11:41:21 [ 49] [ 3] [418] +11:41:21 [ 54] [ 40] [0001418C0003412553480002418C000341255348] +11:41:21 ============================================================================ +11:41:21 Calculate Source COMM Id = 2 +11:41:21 ============================================================================ +11:41:21 + + +waiting on router queue for slot.... +11:41:21 ============================================================================ +11:41:21 Slot Id : <346> +11:41:21 Transaction Type : REQUEST +11:41:21 Received From : +11:41:21 ============================================================================ +11:41:21 FNo. Len. Field Value +11:41:21 ============================================================================ +11:41:21 [ 1] [ 4] [0800] +11:41:21 [ 7] [ 10] [0320043912] +11:41:21 [ 11] [ 6] [093905] +11:41:21 [ 37] [ 12] [57911093905] +11:41:21 [ 70] [ 3] [301] +11:41:21 ============================================================================ +11:41:21 + + +waiting on router queue for slot.... +11:41:21 Sending to : +11:41:21 ============================================================================ +11:41:21 ============================================================================ +11:41:21 Slot Id : <346> +11:41:21 Transaction Type : RESPONSE +11:41:21 Received From : +11:41:21 ============================================================================ +11:41:21 FNo. Len. Field Value +11:41:21 ============================================================================ +11:41:21 [ 1] [ 4] [0810] +11:41:21 [ 7] [ 10] [0320043912] +11:41:21 [ 11] [ 6] [093905] +11:41:21 [ 37] [ 12] [579110939050] +11:41:21 [ 39] [ 2] [00] +11:41:21 [ 70] [ 3] [810] +11:41:21 ============================================================================ +11:41:21 Calculate Source COMM Id = 4 +11:41:21 ============================================================================ +11:41:21 + + +waiting on router queue for slot.... +11:41:23 ============================================================================ +11:41:23 Slot Id : <319> +11:41:23 Transaction Type : RESPONSE +11:41:23 Received From : +11:41:23 ============================================================================ +11:41:23 FNo. Len. Field Value +11:41:23 ============================================================================ +11:41:23 [ 1] [ 4] [0210] +11:41:23 [ 2] [ 16] [6213544001621959] +11:41:23 [ 3] [ 6] [010000] +11:41:23 [ 4] [ 12] [000100000000] +11:41:23 [ 7] [ 10] [0320113909] +11:41:23 [ 11] [ 6] [941977] +11:41:23 [ 12] [ 6] [113909] +11:41:23 [ 13] [ 4] [0320] +11:41:23 [ 15] [ 4] [0320] +11:41:23 [ 18] [ 4] [6011] +11:41:23 [ 19] [ 3] [418] +11:41:23 [ 32] [ 6] [668899] +11:41:23 [ 35] [ 32] [6213544001621959=491212012195983] +11:41:23 [ 37] [ 12] [507900270933] +11:41:23 [ 38] [ 6] [623064] +11:41:23 [ 39] [ 2] [00] +11:41:23 [ 41] [ 8] [03010004] +11:41:23 [ 49] [ 3] [418] +11:41:23 [ 54] [ 40] [0001418C0001073459470002418C000107345947] +11:41:23 ============================================================================ +11:41:23 Calculate Source COMM Id = 4 +11:41:23 ============================================================================ +11:41:23 + + +waiting on router queue for slot.... +11:41:25 ============================================================================ +11:41:25 Slot Id : <357> +11:41:25 Transaction Type : REQUEST +11:41:25 Received From : +11:41:25 ============================================================================ +11:41:25 FNo. Len. Field Value +11:41:25 ============================================================================ +11:41:25 [ 1] [ 4] [0200] +11:41:25 [ 2] [ 16] [6213545000077457] +11:41:25 [ 3] [ 6] [010000] +11:41:25 [ 4] [ 12] [000100000000] +11:41:25 [ 7] [ 10] [0320044031] +11:41:25 [ 11] [ 6] [268646] +11:41:25 [ 12] [ 6] [114031] +11:41:25 [ 13] [ 4] [0320] +11:41:25 [ 14] [ 4] [4912] +11:41:25 [ 15] [ 4] [0320] +11:41:25 [ 18] [ 4] [6011] +11:41:25 [ 19] [ 3] [418] +11:41:25 [ 22] [ 3] [021] +11:41:25 [ 25] [ 2] [01] +11:41:25 [ 28] [ 9] [D00002000] +11:41:25 [ 32] [ 6] [180893] +11:41:25 [ 35] [ 32] [6213545000077457=491212017745184] +11:41:25 [ 37] [ 12] [507904268646] +11:41:25 [ 41] [ 8] [0112CPBR] +11:41:25 [ 42] [ 15] [999999 ] +11:41:25 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:41:25 [ 49] [ 3] [418] +11:41:25 [ 52] [ 16] [84CE322763A07D80] +11:41:25 ============================================================================ +11:41:25 + + +waiting on router queue for slot.... +11:41:25 Sending to : +11:41:25 ============================================================================ +11:41:25 Sending to : +11:41:25 ============================================================================ +11:41:25 ============================================================================ +11:41:25 Slot Id : <357> +11:41:25 Transaction Type : REQUEST +11:41:25 Received From : +11:41:25 ============================================================================ +11:41:25 FNo. Len. Field Value +11:41:25 ============================================================================ +11:41:25 [ 1] [ 4] [0200] +11:41:25 [ 2] [ 16] [6213545000077457] +11:41:25 [ 3] [ 6] [010000] +11:41:25 [ 4] [ 12] [000100000000] +11:41:25 [ 7] [ 10] [0320044031] +11:41:25 [ 11] [ 6] [268646] +11:41:25 [ 12] [ 6] [114031] +11:41:25 [ 13] [ 4] [0320] +11:41:25 [ 14] [ 4] [4912] +11:41:25 [ 15] [ 4] [0320] +11:41:25 [ 18] [ 4] [6011] +11:41:25 [ 19] [ 3] [418] +11:41:25 [ 22] [ 3] [021] +11:41:25 [ 25] [ 2] [01] +11:41:25 [ 28] [ 9] [D00002000] +11:41:25 [ 32] [ 6] [180893] +11:41:25 [ 35] [ 32] [6213545000077457=491212017745184] +11:41:25 [ 37] [ 12] [507904268646] +11:41:25 [ 41] [ 8] [0112CPBR] +11:41:25 [ 42] [ 15] [999999 ] +11:41:25 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:41:25 [ 49] [ 3] [418] +11:41:25 [ 52] [ 16] [84CE322763A07D80] +11:41:25 ============================================================================ +11:41:25 + + +waiting on router queue for slot.... +11:41:25 Sending to : +11:41:25 ============================================================================ +11:41:25 ============================================================================ +11:41:25 Slot Id : <357> +11:41:25 Transaction Type : REQUEST +11:41:25 Received From : +11:41:25 ============================================================================ +11:41:25 FNo. Len. Field Value +11:41:25 ============================================================================ +11:41:25 [ 1] [ 4] [0200] +11:41:25 [ 2] [ 16] [6213545000077457] +11:41:25 [ 3] [ 6] [010000] +11:41:25 [ 4] [ 12] [000100000000] +11:41:25 [ 7] [ 10] [0320044031] +11:41:25 [ 11] [ 6] [268646] +11:41:25 [ 12] [ 6] [114031] +11:41:25 [ 13] [ 4] [0320] +11:41:25 [ 14] [ 4] [4912] +11:41:25 [ 15] [ 4] [0320] +11:41:25 [ 18] [ 4] [6011] +11:41:25 [ 19] [ 3] [418] +11:41:25 [ 22] [ 3] [021] +11:41:25 [ 25] [ 2] [01] +11:41:25 [ 28] [ 9] [D00002000] +11:41:25 [ 32] [ 6] [180893] +11:41:25 [ 35] [ 32] [6213545000077457=491212017745184] +11:41:25 [ 37] [ 12] [507904268646] +11:41:25 [ 41] [ 8] [0112CPBR] +11:41:25 [ 42] [ 15] [999999 ] +11:41:25 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:41:25 [ 49] [ 3] [418] +11:41:25 [ 52] [ 16] [21D50914E847224B] +11:41:25 ============================================================================ +11:41:25 + + +waiting on router queue for slot.... +11:41:25 Sending to : <0> +11:41:25 ============================================================================ +11:41:26 ============================================================================ +11:41:26 Slot Id : <357> +11:41:26 Transaction Type : RESPONSE +11:41:26 Received From : +11:41:26 ============================================================================ +11:41:26 FNo. Len. Field Value +11:41:26 ============================================================================ +11:41:26 [ 1] [ 4] [0210] +11:41:26 [ 2] [ 16] [6213545000077457] +11:41:26 [ 3] [ 6] [010000] +11:41:26 [ 4] [ 12] [000100000000] +11:41:26 [ 7] [ 10] [0320044031] +11:41:26 [ 11] [ 6] [268646] +11:41:26 [ 12] [ 6] [114031] +11:41:26 [ 13] [ 4] [0320] +11:41:26 [ 15] [ 4] [0320] +11:41:26 [ 18] [ 4] [6011] +11:41:26 [ 19] [ 3] [418] +11:41:26 [ 32] [ 6] [180893] +11:41:26 [ 35] [ 32] [6213545000077457=491212017745184] +11:41:26 [ 37] [ 12] [507904268646] +11:41:26 [ 38] [ 6] [271662] +11:41:26 [ 39] [ 2] [00] +11:41:26 [ 41] [ 8] [0112CPBR] +11:41:26 [ 49] [ 3] [418] +11:41:26 [ 54] [ 40] [0001418C0001202976510002418C000120297651] +11:41:26 ============================================================================ +11:41:26 Sending to : +11:41:26 ============================================================================ +11:41:26 + + +waiting on router queue for slot.... +11:41:27 ============================================================================ +11:41:27 Slot Id : <357> +11:41:27 Transaction Type : RESPONSE +11:41:27 Received From : +11:41:27 ============================================================================ +11:41:27 FNo. Len. Field Value +11:41:27 ============================================================================ +11:41:27 [ 1] [ 4] [0210] +11:41:27 [ 2] [ 16] [6213545000077457] +11:41:27 [ 3] [ 6] [010000] +11:41:27 [ 4] [ 12] [000100000000] +11:41:27 [ 7] [ 10] [0320044031] +11:41:27 [ 11] [ 6] [268646] +11:41:27 [ 12] [ 6] [114031] +11:41:27 [ 13] [ 4] [0320] +11:41:27 [ 15] [ 4] [0320] +11:41:27 [ 18] [ 4] [6011] +11:41:27 [ 19] [ 3] [418] +11:41:27 [ 32] [ 6] [180893] +11:41:27 [ 35] [ 32] [6213545000077457=491212017745184] +11:41:27 [ 37] [ 12] [507904268646] +11:41:27 [ 38] [ 6] [271662] +11:41:27 [ 39] [ 2] [00] +11:41:27 [ 41] [ 8] [0112CPBR] +11:41:27 [ 49] [ 3] [418] +11:41:27 [ 54] [ 40] [0001418C0001202976510002418C000120297651] +11:41:27 ============================================================================ +11:41:27 Calculate Source COMM Id = 2 +11:41:27 ============================================================================ +11:41:27 + + +waiting on router queue for slot.... +11:41:38 ============================================================================ +11:41:38 Slot Id : <330> +11:41:38 Transaction Type : REQUEST +11:41:38 Received From : +11:41:38 ============================================================================ +11:41:38 FNo. Len. Field Value +11:41:38 ============================================================================ +11:41:38 [ 1] [ 4] [0800] +11:41:38 [ 7] [ 10] [0320044046] +11:41:38 [ 11] [ 6] [156143] +11:41:38 [ 70] [ 3] [301] +11:41:38 ============================================================================ +11:41:38 + + +waiting on router queue for slot.... +11:41:38 Sending to : +11:41:38 ============================================================================ +11:41:38 ============================================================================ +11:41:38 Slot Id : <330> +11:41:38 Transaction Type : RESPONSE +11:41:38 Received From : +11:41:38 ============================================================================ +11:41:38 FNo. Len. Field Value +11:41:38 ============================================================================ +11:41:38 [ 1] [ 4] [0810] +11:41:38 [ 7] [ 10] [0320044046] +11:41:38 [ 11] [ 6] [156143] +11:41:38 [ 39] [ 2] [00] +11:41:38 [ 70] [ 3] [301] +11:41:38 ============================================================================ +11:41:38 Calculate Source COMM Id = 2 +11:41:38 ============================================================================ +11:41:38 + + +waiting on router queue for slot.... +11:41:46 ============================================================================ +11:41:46 Slot Id : <332> +11:41:46 Transaction Type : REQUEST +11:41:46 Received From : +11:41:46 ============================================================================ +11:41:46 FNo. Len. Field Value +11:41:46 ============================================================================ +11:41:46 [ 1] [ 4] [0200] +11:41:46 [ 2] [ 16] [6688990108296201] +11:41:46 [ 3] [ 6] [010000] +11:41:46 [ 4] [ 12] [000010000000] +11:41:46 [ 7] [ 10] [0320044053] +11:41:46 [ 11] [ 6] [268652] +11:41:46 [ 12] [ 6] [114053] +11:41:46 [ 13] [ 4] [0320] +11:41:46 [ 14] [ 4] [4405] +11:41:46 [ 15] [ 4] [0320] +11:41:46 [ 18] [ 4] [6011] +11:41:46 [ 19] [ 3] [418] +11:41:46 [ 22] [ 3] [021] +11:41:46 [ 25] [ 2] [01] +11:41:46 [ 28] [ 9] [D00002000] +11:41:46 [ 32] [ 6] [180893] +11:41:46 [ 35] [ 37] [6688990108296201=44051231620180800000] +11:41:46 [ 37] [ 12] [507904268652] +11:41:46 [ 41] [ 8] [0466PSLB] +11:41:46 [ 42] [ 15] [999999 ] +11:41:46 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +11:41:46 [ 49] [ 3] [418] +11:41:46 [ 52] [ 16] [55FA6A99273A941E] +11:41:46 ============================================================================ +11:41:46 + + +waiting on router queue for slot.... +11:41:46 Sending to : +11:41:46 ============================================================================ +11:41:46 Sending to : +11:41:46 ============================================================================ +11:41:46 ============================================================================ +11:41:46 Slot Id : <332> +11:41:46 Transaction Type : REQUEST +11:41:46 Received From : +11:41:46 ============================================================================ +11:41:46 FNo. Len. Field Value +11:41:46 ============================================================================ +11:41:46 [ 1] [ 4] [0200] +11:41:46 [ 2] [ 16] [6688990108296201] +11:41:46 [ 3] [ 6] [010000] +11:41:46 [ 4] [ 12] [000010000000] +11:41:46 [ 7] [ 10] [0320044053] +11:41:46 [ 11] [ 6] [268652] +11:41:46 [ 12] [ 6] [114053] +11:41:46 [ 13] [ 4] [0320] +11:41:46 [ 14] [ 4] [4405] +11:41:46 [ 15] [ 4] [0320] +11:41:46 [ 18] [ 4] [6011] +11:41:46 [ 19] [ 3] [418] +11:41:46 [ 22] [ 3] [021] +11:41:46 [ 25] [ 2] [01] +11:41:46 [ 28] [ 9] [D00002000] +11:41:46 [ 32] [ 6] [180893] +11:41:46 [ 35] [ 37] [6688990108296201=44051231620180800000] +11:41:46 [ 37] [ 12] [507904268652] +11:41:46 [ 41] [ 8] [0466PSLB] +11:41:46 [ 42] [ 15] [999999 ] +11:41:46 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +11:41:46 [ 49] [ 3] [418] +11:41:46 [ 52] [ 16] [55FA6A99273A941E] +11:41:46 ============================================================================ +11:41:46 + + +waiting on router queue for slot.... +11:41:46 Sending to : +11:41:46 ============================================================================ +11:41:46 ============================================================================ +11:41:46 Slot Id : <332> +11:41:46 Transaction Type : REQUEST +11:41:46 Received From : +11:41:46 ============================================================================ +11:41:46 FNo. Len. Field Value +11:41:46 ============================================================================ +11:41:46 [ 1] [ 4] [0200] +11:41:46 [ 2] [ 16] [6688990108296201] +11:41:46 [ 3] [ 6] [010000] +11:41:46 [ 4] [ 12] [000010000000] +11:41:46 [ 7] [ 10] [0320044053] +11:41:46 [ 11] [ 6] [268652] +11:41:46 [ 12] [ 6] [114053] +11:41:46 [ 13] [ 4] [0320] +11:41:46 [ 14] [ 4] [4405] +11:41:46 [ 15] [ 4] [0320] +11:41:46 [ 18] [ 4] [6011] +11:41:46 [ 19] [ 3] [418] +11:41:46 [ 22] [ 3] [021] +11:41:46 [ 25] [ 2] [01] +11:41:46 [ 28] [ 9] [D00002000] +11:41:46 [ 32] [ 6] [180893] +11:41:46 [ 35] [ 37] [6688990108296201=44051231620180800000] +11:41:46 [ 37] [ 12] [507904268652] +11:41:46 [ 41] [ 8] [0466PSLB] +11:41:46 [ 42] [ 15] [999999 ] +11:41:46 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +11:41:46 [ 49] [ 3] [418] +11:41:46 [ 52] [ 16] [D64D10C731BCB7AE] +11:41:46 ============================================================================ +11:41:46 + + +waiting on router queue for slot.... +11:41:46 Sending to : <0> +11:41:46 ============================================================================ +11:41:46 ============================================================================ +11:41:46 Slot Id : <332> +11:41:46 Transaction Type : RESPONSE +11:41:46 Received From : +11:41:46 ============================================================================ +11:41:46 FNo. Len. Field Value +11:41:46 ============================================================================ +11:41:46 [ 1] [ 4] [0210] +11:41:46 [ 2] [ 16] [6688990108296201] +11:41:46 [ 3] [ 6] [010000] +11:41:46 [ 4] [ 12] [000010000000] +11:41:46 [ 7] [ 10] [0320044053] +11:41:46 [ 11] [ 6] [268652] +11:41:46 [ 12] [ 6] [114053] +11:41:46 [ 13] [ 4] [0320] +11:41:46 [ 15] [ 4] [0320] +11:41:46 [ 18] [ 4] [6011] +11:41:46 [ 19] [ 3] [418] +11:41:46 [ 22] [ 3] [021] +11:41:46 [ 32] [ 6] [180893] +11:41:46 [ 35] [ 37] [6688990108296201=44051231620180800000] +11:41:46 [ 37] [ 12] [507904268652] +11:41:46 [ 39] [ 2] [14] +11:41:46 [ 41] [ 8] [0466PSLB] +11:41:46 [ 49] [ 3] [418] +11:41:46 ============================================================================ +11:41:46 Sending to : +11:41:46 ============================================================================ +11:41:46 + + +waiting on router queue for slot.... +11:41:47 ============================================================================ +11:41:47 Slot Id : <365> +11:41:47 Transaction Type : REQUEST +11:41:47 Received From : +11:41:47 ============================================================================ +11:41:47 FNo. Len. Field Value +11:41:47 ============================================================================ +11:41:47 [ 1] [ 4] [0200] +11:41:47 [ 2] [ 16] [1808930300000627] +11:41:47 [ 3] [ 6] [010000] +11:41:47 [ 4] [ 12] [000100000000] +11:41:47 [ 7] [ 10] [0320114143] +11:41:47 [ 11] [ 6] [733551] +11:41:47 [ 12] [ 6] [114143] +11:41:47 [ 13] [ 4] [0320] +11:41:47 [ 15] [ 4] [0320] +11:41:47 [ 18] [ 4] [6011] +11:41:47 [ 22] [ 3] [900] +11:41:47 [ 25] [ 2] [02] +11:41:47 [ 28] [ 9] [D00002000] +11:41:47 [ 32] [ 6] [621354] +11:41:47 [ 35] [ 27] [1808930300000627=1803500441] +11:41:47 [ 37] [ 12] [507903505408] +11:41:47 [ 41] [ 8] [09000700] +11:41:47 [ 42] [ 15] [NATIVE ] +11:41:47 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:41:47 [ 49] [ 3] [418] +11:41:47 [ 52] [ 16] [7B4555E2B22445BE] +11:41:47 ============================================================================ +11:41:47 + + +waiting on router queue for slot.... +11:41:47 Sending to : +11:41:47 ============================================================================ +11:41:47 Sending to : +11:41:47 ============================================================================ +11:41:47 ============================================================================ +11:41:47 Slot Id : <365> +11:41:47 Transaction Type : REQUEST +11:41:47 Received From : +11:41:47 ============================================================================ +11:41:47 FNo. Len. Field Value +11:41:47 ============================================================================ +11:41:47 [ 1] [ 4] [0200] +11:41:47 [ 2] [ 16] [1808930300000627] +11:41:47 [ 3] [ 6] [010000] +11:41:47 [ 4] [ 12] [000100000000] +11:41:47 [ 7] [ 10] [0320114143] +11:41:47 [ 11] [ 6] [733551] +11:41:47 [ 12] [ 6] [114143] +11:41:47 [ 13] [ 4] [0320] +11:41:47 [ 15] [ 4] [0320] +11:41:47 [ 18] [ 4] [6011] +11:41:47 [ 22] [ 3] [900] +11:41:47 [ 25] [ 2] [02] +11:41:47 [ 28] [ 9] [D00002000] +11:41:47 [ 32] [ 6] [621354] +11:41:47 [ 35] [ 27] [1808930300000627=1803500441] +11:41:47 [ 37] [ 12] [507903505408] +11:41:47 [ 41] [ 8] [09000700] +11:41:47 [ 42] [ 15] [NATIVE ] +11:41:47 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:41:47 [ 49] [ 3] [418] +11:41:47 [ 52] [ 16] [7B4555E2B22445BE] +11:41:47 ============================================================================ +11:41:47 + + +waiting on router queue for slot.... +11:41:47 Sending to : +11:41:47 ============================================================================ +11:41:47 ============================================================================ +11:41:47 Slot Id : <365> +11:41:47 Transaction Type : REQUEST +11:41:47 Received From : +11:41:47 ============================================================================ +11:41:47 FNo. Len. Field Value +11:41:47 ============================================================================ +11:41:47 [ 1] [ 4] [0200] +11:41:47 [ 2] [ 16] [1808930300000627] +11:41:47 [ 3] [ 6] [010000] +11:41:47 [ 4] [ 12] [000100000000] +11:41:47 [ 7] [ 10] [0320114143] +11:41:47 [ 11] [ 6] [733551] +11:41:47 [ 12] [ 6] [114143] +11:41:47 [ 13] [ 4] [0320] +11:41:47 [ 15] [ 4] [0320] +11:41:47 [ 18] [ 4] [6011] +11:41:47 [ 22] [ 3] [900] +11:41:47 [ 25] [ 2] [02] +11:41:47 [ 28] [ 9] [D00002000] +11:41:47 [ 32] [ 6] [621354] +11:41:47 [ 35] [ 27] [1808930300000627=1803500441] +11:41:47 [ 37] [ 12] [507903505408] +11:41:47 [ 41] [ 8] [09000700] +11:41:47 [ 42] [ 15] [NATIVE ] +11:41:47 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:41:47 [ 49] [ 3] [418] +11:41:47 [ 52] [ 16] [8C05AC738B091252] +11:41:47 ============================================================================ +11:41:47 + + +waiting on router queue for slot.... +11:41:47 Sending to : <2> +11:41:47 ============================================================================ +11:41:47 ============================================================================ +11:41:47 Slot Id : <332> +11:41:47 Transaction Type : RESPONSE +11:41:47 Received From : +11:41:47 ============================================================================ +11:41:47 FNo. Len. Field Value +11:41:47 ============================================================================ +11:41:47 [ 1] [ 4] [0210] +11:41:47 [ 2] [ 16] [6688990108296201] +11:41:47 [ 3] [ 6] [010000] +11:41:47 [ 4] [ 12] [000010000000] +11:41:47 [ 7] [ 10] [0320044053] +11:41:47 [ 11] [ 6] [268652] +11:41:47 [ 12] [ 6] [114053] +11:41:47 [ 13] [ 4] [0320] +11:41:47 [ 15] [ 4] [0320] +11:41:47 [ 18] [ 4] [6011] +11:41:47 [ 19] [ 3] [418] +11:41:47 [ 22] [ 3] [021] +11:41:47 [ 32] [ 6] [180893] +11:41:47 [ 35] [ 37] [6688990108296201=44051231620180800000] +11:41:47 [ 37] [ 12] [507904268652] +11:41:47 [ 39] [ 2] [14] +11:41:47 [ 41] [ 8] [0466PSLB] +11:41:47 [ 49] [ 3] [418] +11:41:47 ============================================================================ +11:41:47 Calculate Source COMM Id = 2 +11:41:47 ============================================================================ +11:41:47 + + +waiting on router queue for slot.... +11:41:51 ============================================================================ +11:41:51 Slot Id : <356> +11:41:51 Transaction Type : REQUEST +11:41:51 Received From : +11:41:51 ============================================================================ +11:41:51 FNo. Len. Field Value +11:41:51 ============================================================================ +11:41:51 [ 1] [ 4] [0200] +11:41:51 [ 2] [ 16] [6213541000320542] +11:41:51 [ 3] [ 6] [010000] +11:41:51 [ 4] [ 12] [000100000000] +11:41:51 [ 7] [ 10] [0320044056] +11:41:51 [ 11] [ 6] [268654] +11:41:51 [ 12] [ 6] [114056] +11:41:51 [ 13] [ 4] [0320] +11:41:51 [ 14] [ 4] [4912] +11:41:51 [ 15] [ 4] [0320] +11:41:51 [ 18] [ 4] [6011] +11:41:51 [ 19] [ 3] [418] +11:41:51 [ 22] [ 3] [021] +11:41:51 [ 25] [ 2] [01] +11:41:51 [ 28] [ 9] [D00002000] +11:41:51 [ 32] [ 6] [180893] +11:41:51 [ 35] [ 32] [6213541000320542=491212012054325] +11:41:51 [ 37] [ 12] [507904268654] +11:41:51 [ 41] [ 8] [0324BKDT] +11:41:51 [ 42] [ 15] [999999 ] +11:41:51 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:41:51 [ 49] [ 3] [418] +11:41:51 [ 52] [ 16] [CF8B0EB5B4436A33] +11:41:51 ============================================================================ +11:41:51 + + +waiting on router queue for slot.... +11:41:51 Sending to : +11:41:51 ============================================================================ +11:41:51 Sending to : +11:41:51 ============================================================================ +11:41:51 ============================================================================ +11:41:51 Slot Id : <356> +11:41:51 Transaction Type : REQUEST +11:41:51 Received From : +11:41:51 ============================================================================ +11:41:51 FNo. Len. Field Value +11:41:51 ============================================================================ +11:41:51 [ 1] [ 4] [0200] +11:41:51 [ 2] [ 16] [6213541000320542] +11:41:51 [ 3] [ 6] [010000] +11:41:51 [ 4] [ 12] [000100000000] +11:41:51 [ 7] [ 10] [0320044056] +11:41:51 [ 11] [ 6] [268654] +11:41:51 [ 12] [ 6] [114056] +11:41:51 [ 13] [ 4] [0320] +11:41:51 [ 14] [ 4] [4912] +11:41:51 [ 15] [ 4] [0320] +11:41:51 [ 18] [ 4] [6011] +11:41:51 [ 19] [ 3] [418] +11:41:51 [ 22] [ 3] [021] +11:41:51 [ 25] [ 2] [01] +11:41:51 [ 28] [ 9] [D00002000] +11:41:51 [ 32] [ 6] [180893] +11:41:51 [ 35] [ 32] [6213541000320542=491212012054325] +11:41:51 [ 37] [ 12] [507904268654] +11:41:51 [ 41] [ 8] [0324BKDT] +11:41:51 [ 42] [ 15] [999999 ] +11:41:51 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:41:51 [ 49] [ 3] [418] +11:41:51 [ 52] [ 16] [CF8B0EB5B4436A33] +11:41:51 ============================================================================ +11:41:51 + + +waiting on router queue for slot.... +11:41:51 Sending to : +11:41:51 ============================================================================ +11:41:51 ============================================================================ +11:41:51 Slot Id : <356> +11:41:51 Transaction Type : REQUEST +11:41:51 Received From : +11:41:51 ============================================================================ +11:41:51 FNo. Len. Field Value +11:41:51 ============================================================================ +11:41:51 [ 1] [ 4] [0200] +11:41:51 [ 2] [ 16] [6213541000320542] +11:41:51 [ 3] [ 6] [010000] +11:41:51 [ 4] [ 12] [000100000000] +11:41:51 [ 7] [ 10] [0320044056] +11:41:51 [ 11] [ 6] [268654] +11:41:51 [ 12] [ 6] [114056] +11:41:51 [ 13] [ 4] [0320] +11:41:51 [ 14] [ 4] [4912] +11:41:51 [ 15] [ 4] [0320] +11:41:51 [ 18] [ 4] [6011] +11:41:51 [ 19] [ 3] [418] +11:41:51 [ 22] [ 3] [021] +11:41:51 [ 25] [ 2] [01] +11:41:51 [ 28] [ 9] [D00002000] +11:41:51 [ 32] [ 6] [180893] +11:41:51 [ 35] [ 32] [6213541000320542=491212012054325] +11:41:51 [ 37] [ 12] [507904268654] +11:41:51 [ 41] [ 8] [0324BKDT] +11:41:51 [ 42] [ 15] [999999 ] +11:41:51 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:41:51 [ 49] [ 3] [418] +11:41:51 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:41:51 ============================================================================ +11:41:51 + + +waiting on router queue for slot.... +11:41:51 Sending to : <0> +11:41:51 ============================================================================ +11:41:52 ============================================================================ +11:41:52 Slot Id : <356> +11:41:52 Transaction Type : RESPONSE +11:41:52 Received From : +11:41:52 ============================================================================ +11:41:52 FNo. Len. Field Value +11:41:52 ============================================================================ +11:41:52 [ 1] [ 4] [0210] +11:41:52 [ 2] [ 16] [6213541000320542] +11:41:52 [ 3] [ 6] [010000] +11:41:52 [ 4] [ 12] [000100000000] +11:41:52 [ 7] [ 10] [0320044056] +11:41:52 [ 11] [ 6] [268654] +11:41:52 [ 12] [ 6] [114056] +11:41:52 [ 13] [ 4] [0320] +11:41:52 [ 15] [ 4] [0320] +11:41:52 [ 18] [ 4] [6011] +11:41:52 [ 19] [ 3] [418] +11:41:52 [ 32] [ 6] [180893] +11:41:52 [ 35] [ 32] [6213541000320542=491212012054325] +11:41:52 [ 37] [ 12] [507904268654] +11:41:52 [ 38] [ 6] [386550] +11:41:52 [ 39] [ 2] [00] +11:41:52 [ 41] [ 8] [0324BKDT] +11:41:52 [ 49] [ 3] [418] +11:41:52 [ 54] [ 40] [0001418C0009896349510002418C000989634951] +11:41:52 ============================================================================ +11:41:52 Sending to : +11:41:52 ============================================================================ +11:41:52 + + +waiting on router queue for slot.... +11:41:54 ============================================================================ +11:41:54 Slot Id : <356> +11:41:54 Transaction Type : RESPONSE +11:41:54 Received From : +11:41:54 ============================================================================ +11:41:54 FNo. Len. Field Value +11:41:54 ============================================================================ +11:41:54 [ 1] [ 4] [0210] +11:41:54 [ 2] [ 16] [6213541000320542] +11:41:54 [ 3] [ 6] [010000] +11:41:54 [ 4] [ 12] [000100000000] +11:41:54 [ 7] [ 10] [0320044056] +11:41:54 [ 11] [ 6] [268654] +11:41:54 [ 12] [ 6] [114056] +11:41:54 [ 13] [ 4] [0320] +11:41:54 [ 15] [ 4] [0320] +11:41:54 [ 18] [ 4] [6011] +11:41:54 [ 19] [ 3] [418] +11:41:54 [ 32] [ 6] [180893] +11:41:54 [ 35] [ 32] [6213541000320542=491212012054325] +11:41:54 [ 37] [ 12] [507904268654] +11:41:54 [ 38] [ 6] [386550] +11:41:54 [ 39] [ 2] [00] +11:41:54 [ 41] [ 8] [0324BKDT] +11:41:54 [ 49] [ 3] [418] +11:41:54 [ 54] [ 40] [0001418C0009896349510002418C000989634951] +11:41:54 ============================================================================ +11:41:54 Calculate Source COMM Id = 2 +11:41:54 ============================================================================ +11:41:54 + + +waiting on router queue for slot.... +11:41:54 ============================================================================ +11:41:54 Slot Id : <365> +11:41:54 Transaction Type : RESPONSE +11:41:54 Received From : +11:41:54 ============================================================================ +11:41:54 FNo. Len. Field Value +11:41:54 ============================================================================ +11:41:54 [ 1] [ 4] [0210] +11:41:54 [ 2] [ 16] [1808930300000627] +11:41:54 [ 3] [ 6] [010000] +11:41:54 [ 4] [ 12] [000100000000] +11:41:54 [ 6] [ 12] [000100000000] +11:41:54 [ 7] [ 10] [0320114143] +11:41:54 [ 11] [ 6] [733551] +11:41:54 [ 12] [ 6] [114143] +11:41:54 [ 13] [ 4] [0320] +11:41:54 [ 18] [ 4] [6011] +11:41:54 [ 19] [ 3] [418] +11:41:54 [ 22] [ 3] [021] +11:41:54 [ 32] [ 6] [621354] +11:41:54 [ 35] [ 27] [1808930300000627=1803500441] +11:41:54 [ 37] [ 12] [507903505408] +11:41:54 [ 38] [ 6] [733551] +11:41:54 [ 39] [ 2] [00] +11:41:54 [ 41] [ 8] [09000700] +11:41:54 [ 49] [ 3] [418] +11:41:54 [ 52] [ 16] [8C05AC738B091252] +11:41:54 [ 54] [ 20] [1001418C000911073000] +11:41:54 ============================================================================ +11:41:54 Sending to : +11:41:54 ============================================================================ +11:41:54 + + +waiting on router queue for slot.... +11:41:55 ============================================================================ +11:41:55 Slot Id : <365> +11:41:55 Transaction Type : RESPONSE +11:41:55 Received From : +11:41:55 ============================================================================ +11:41:55 FNo. Len. Field Value +11:41:55 ============================================================================ +11:41:55 [ 1] [ 4] [0210] +11:41:55 [ 2] [ 16] [1808930300000627] +11:41:55 [ 3] [ 6] [010000] +11:41:55 [ 4] [ 12] [000100000000] +11:41:55 [ 6] [ 12] [000100000000] +11:41:55 [ 7] [ 10] [0320114143] +11:41:55 [ 11] [ 6] [733551] +11:41:55 [ 12] [ 6] [114143] +11:41:55 [ 13] [ 4] [0320] +11:41:55 [ 18] [ 4] [6011] +11:41:55 [ 19] [ 3] [418] +11:41:55 [ 22] [ 3] [021] +11:41:55 [ 32] [ 6] [621354] +11:41:55 [ 35] [ 27] [1808930300000627=1803500441] +11:41:55 [ 37] [ 12] [507903505408] +11:41:55 [ 38] [ 6] [733551] +11:41:55 [ 39] [ 2] [00] +11:41:55 [ 41] [ 8] [09000700] +11:41:55 [ 49] [ 3] [418] +11:41:55 [ 52] [ 16] [8C05AC738B091252] +11:41:55 [ 54] [ 20] [1001418C000911073000] +11:41:55 ============================================================================ +11:41:55 Calculate Source COMM Id = 0 +11:41:55 ============================================================================ +11:41:55 + + +waiting on router queue for slot.... +11:42:04 ============================================================================ +11:42:04 Slot Id : <343> +11:42:04 Transaction Type : REQUEST +11:42:04 Received From : +11:42:04 ============================================================================ +11:42:04 FNo. Len. Field Value +11:42:04 ============================================================================ +11:42:04 [ 1] [ 4] [0200] +11:42:04 [ 2] [ 16] [6213548000460095] +11:42:04 [ 3] [ 6] [010000] +11:42:04 [ 4] [ 12] [000050000000] +11:42:04 [ 7] [ 10] [0320113955] +11:42:04 [ 11] [ 6] [942022] +11:42:04 [ 12] [ 6] [113955] +11:42:04 [ 13] [ 4] [0320] +11:42:04 [ 15] [ 4] [0320] +11:42:04 [ 18] [ 4] [6011] +11:42:04 [ 19] [ 3] [418] +11:42:04 [ 22] [ 3] [021] +11:42:04 [ 25] [ 2] [01] +11:42:04 [ 28] [ 9] [D00002000] +11:42:04 [ 32] [ 6] [668899] +11:42:04 [ 35] [ 32] [6213548000460095=180712016009461] +11:42:04 [ 37] [ 12] [507901963511] +11:42:04 [ 41] [ 8] [03020019] +11:42:04 [ 42] [ 15] [APT ] +11:42:04 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:42:04 [ 49] [ 3] [418] +11:42:04 [ 52] [ 16] [7493671741B089E5] +11:42:04 ============================================================================ +11:42:04 + + +waiting on router queue for slot.... +11:42:04 Sending to : +11:42:04 ============================================================================ +11:42:04 Sending to : +11:42:04 ============================================================================ +11:42:04 ============================================================================ +11:42:04 Slot Id : <343> +11:42:04 Transaction Type : REQUEST +11:42:04 Received From : +11:42:04 ============================================================================ +11:42:04 FNo. Len. Field Value +11:42:04 ============================================================================ +11:42:04 [ 1] [ 4] [0200] +11:42:04 [ 2] [ 16] [6213548000460095] +11:42:04 [ 3] [ 6] [010000] +11:42:04 [ 4] [ 12] [000050000000] +11:42:04 [ 7] [ 10] [0320113955] +11:42:04 [ 11] [ 6] [942022] +11:42:04 [ 12] [ 6] [113955] +11:42:04 [ 13] [ 4] [0320] +11:42:04 [ 15] [ 4] [0320] +11:42:04 [ 18] [ 4] [6011] +11:42:04 [ 19] [ 3] [418] +11:42:04 [ 22] [ 3] [021] +11:42:04 [ 25] [ 2] [01] +11:42:04 [ 28] [ 9] [D00002000] +11:42:04 [ 32] [ 6] [668899] +11:42:04 [ 35] [ 32] [6213548000460095=180712016009461] +11:42:04 [ 37] [ 12] [507901963511] +11:42:04 [ 41] [ 8] [03020019] +11:42:04 [ 42] [ 15] [APT ] +11:42:04 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:42:04 [ 49] [ 3] [418] +11:42:04 [ 52] [ 16] [7493671741B089E5] +11:42:04 ============================================================================ +11:42:04 + + +waiting on router queue for slot.... +11:42:04 Sending to : +11:42:04 ============================================================================ +11:42:04 ============================================================================ +11:42:04 Slot Id : <343> +11:42:04 Transaction Type : REQUEST +11:42:04 Received From : +11:42:04 ============================================================================ +11:42:04 FNo. Len. Field Value +11:42:04 ============================================================================ +11:42:04 [ 1] [ 4] [0200] +11:42:04 [ 2] [ 16] [6213548000460095] +11:42:04 [ 3] [ 6] [010000] +11:42:04 [ 4] [ 12] [000050000000] +11:42:04 [ 7] [ 10] [0320113955] +11:42:04 [ 11] [ 6] [942022] +11:42:04 [ 12] [ 6] [113955] +11:42:04 [ 13] [ 4] [0320] +11:42:04 [ 15] [ 4] [0320] +11:42:04 [ 18] [ 4] [6011] +11:42:04 [ 19] [ 3] [418] +11:42:04 [ 22] [ 3] [021] +11:42:04 [ 25] [ 2] [01] +11:42:04 [ 28] [ 9] [D00002000] +11:42:04 [ 32] [ 6] [668899] +11:42:04 [ 35] [ 32] [6213548000460095=180712016009461] +11:42:04 [ 37] [ 12] [507901963511] +11:42:04 [ 41] [ 8] [03020019] +11:42:04 [ 42] [ 15] [APT ] +11:42:04 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:42:04 [ 49] [ 3] [418] +11:42:04 [ 52] [ 16] [64A7701DBFE7AC3F] +11:42:04 ============================================================================ +11:42:04 + + +waiting on router queue for slot.... +11:42:04 Sending to : <0> +11:42:04 ============================================================================ +11:42:05 ============================================================================ +11:42:05 Slot Id : <313> +11:42:05 Transaction Type : REQUEST +11:42:05 Received From : +11:42:05 ============================================================================ +11:42:05 FNo. Len. Field Value +11:42:05 ============================================================================ +11:42:05 [ 1] [ 4] [0420] +11:42:05 [ 2] [ 16] [6213544001621959] +11:42:05 [ 3] [ 6] [010000] +11:42:05 [ 4] [ 12] [000100000000] +11:42:05 [ 7] [ 10] [0320113909] +11:42:05 [ 11] [ 6] [941977] +11:42:05 [ 12] [ 6] [113909] +11:42:05 [ 13] [ 4] [0320] +11:42:05 [ 15] [ 4] [0320] +11:42:05 [ 18] [ 4] [6011] +11:42:05 [ 19] [ 3] [418] +11:42:05 [ 22] [ 3] [021] +11:42:05 [ 25] [ 2] [01] +11:42:05 [ 28] [ 9] [C00002000] +11:42:05 [ 32] [ 6] [668899] +11:42:05 [ 35] [ 32] [6213544001621959=491212012195983] +11:42:05 [ 37] [ 12] [507900270933] +11:42:05 [ 39] [ 2] [00] +11:42:05 [ 41] [ 8] [03010004] +11:42:05 [ 42] [ 15] [APT ] +11:42:05 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:42:05 [ 49] [ 3] [418] +11:42:05 [ 51] [ 3] [418] +11:42:05 [ 52] [ 16] [4F67DD0AA5BF5223] +11:42:05 [ 90] [ 42] [020094197703201139090000066889900000000000] +11:42:05 ============================================================================ +11:42:05 + + +waiting on router queue for slot.... +11:42:05 Sending to : +11:42:05 ============================================================================ +11:42:05 ============================================================================ +11:42:05 Slot Id : <343> +11:42:05 Transaction Type : RESPONSE +11:42:05 Received From : +11:42:05 ============================================================================ +11:42:05 FNo. Len. Field Value +11:42:05 ============================================================================ +11:42:05 [ 1] [ 4] [0210] +11:42:05 [ 2] [ 16] [6213548000460095] +11:42:05 [ 3] [ 6] [010000] +11:42:05 [ 4] [ 12] [000050000000] +11:42:05 [ 7] [ 10] [0320113955] +11:42:05 [ 11] [ 6] [942022] +11:42:05 [ 12] [ 6] [113955] +11:42:05 [ 13] [ 4] [0320] +11:42:05 [ 15] [ 4] [0320] +11:42:05 [ 18] [ 4] [6011] +11:42:05 [ 19] [ 3] [418] +11:42:05 [ 32] [ 6] [668899] +11:42:05 [ 35] [ 32] [6213548000460095=180712016009461] +11:42:05 [ 37] [ 12] [507901963511] +11:42:05 [ 38] [ 6] [581846] +11:42:05 [ 39] [ 2] [00] +11:42:05 [ 41] [ 8] [03020019] +11:42:05 [ 49] [ 3] [418] +11:42:05 [ 54] [ 40] [0001418C0000661998240002418C000066199824] +11:42:05 ============================================================================ +11:42:05 Sending to : +11:42:05 ============================================================================ +11:42:05 + + +waiting on router queue for slot.... +11:42:05 ============================================================================ +11:42:05 Slot Id : <366> +11:42:05 Transaction Type : REQUEST +11:42:05 Received From : +11:42:05 ============================================================================ +11:42:05 FNo. Len. Field Value +11:42:05 ============================================================================ +11:42:05 [ 1] [ 4] [0800] +11:42:05 [ 7] [ 10] [0320044112] +11:42:05 [ 11] [ 6] [156144] +11:42:05 [ 70] [ 3] [301] +11:42:05 ============================================================================ +11:42:05 + + +waiting on router queue for slot.... +11:42:05 Sending to : +11:42:05 ============================================================================ +11:42:05 ============================================================================ +11:42:05 Slot Id : <366> +11:42:05 Transaction Type : RESPONSE +11:42:05 Received From : +11:42:05 ============================================================================ +11:42:05 FNo. Len. Field Value +11:42:05 ============================================================================ +11:42:05 [ 1] [ 4] [0810] +11:42:05 [ 7] [ 10] [0320044112] +11:42:05 [ 11] [ 6] [156144] +11:42:05 [ 39] [ 2] [00] +11:42:05 [ 70] [ 3] [301] +11:42:05 ============================================================================ +11:42:05 Calculate Source COMM Id = 2 +11:42:05 ============================================================================ +11:42:05 + + +waiting on router queue for slot.... +11:42:07 ============================================================================ +11:42:07 Slot Id : <371> +11:42:07 Transaction Type : REQUEST +11:42:07 Received From : +11:42:07 ============================================================================ +11:42:07 FNo. Len. Field Value +11:42:07 ============================================================================ +11:42:07 [ 1] [ 4] [0200] +11:42:07 [ 2] [ 16] [6213545000151369] +11:42:07 [ 3] [ 6] [010000] +11:42:07 [ 4] [ 12] [000100000000] +11:42:07 [ 7] [ 10] [0320044113] +11:42:07 [ 11] [ 6] [268659] +11:42:07 [ 12] [ 6] [114113] +11:42:07 [ 13] [ 4] [0320] +11:42:07 [ 14] [ 4] [4912] +11:42:07 [ 15] [ 4] [0320] +11:42:07 [ 18] [ 4] [6011] +11:42:07 [ 19] [ 3] [418] +11:42:07 [ 22] [ 3] [021] +11:42:07 [ 25] [ 2] [01] +11:42:07 [ 28] [ 9] [D00002000] +11:42:07 [ 32] [ 6] [180893] +11:42:07 [ 35] [ 32] [6213545000151369=491212015136228] +11:42:07 [ 37] [ 12] [507904268659] +11:42:07 [ 41] [ 8] [0221XKKM] +11:42:07 [ 42] [ 15] [999999 ] +11:42:07 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:42:07 [ 49] [ 3] [418] +11:42:07 [ 52] [ 16] [E9842753052AC8F6] +11:42:07 ============================================================================ +11:42:07 + + +waiting on router queue for slot.... +11:42:07 Sending to : +11:42:07 ============================================================================ +11:42:07 Sending to : +11:42:07 ============================================================================ +11:42:07 ============================================================================ +11:42:07 Slot Id : <371> +11:42:07 Transaction Type : REQUEST +11:42:07 Received From : +11:42:07 ============================================================================ +11:42:07 FNo. Len. Field Value +11:42:07 ============================================================================ +11:42:07 [ 1] [ 4] [0200] +11:42:07 [ 2] [ 16] [6213545000151369] +11:42:07 [ 3] [ 6] [010000] +11:42:07 [ 4] [ 12] [000100000000] +11:42:07 [ 7] [ 10] [0320044113] +11:42:07 [ 11] [ 6] [268659] +11:42:07 [ 12] [ 6] [114113] +11:42:07 [ 13] [ 4] [0320] +11:42:07 [ 14] [ 4] [4912] +11:42:07 [ 15] [ 4] [0320] +11:42:07 [ 18] [ 4] [6011] +11:42:07 [ 19] [ 3] [418] +11:42:07 [ 22] [ 3] [021] +11:42:07 [ 25] [ 2] [01] +11:42:07 [ 28] [ 9] [D00002000] +11:42:07 [ 32] [ 6] [180893] +11:42:07 [ 35] [ 32] [6213545000151369=491212015136228] +11:42:07 [ 37] [ 12] [507904268659] +11:42:07 [ 41] [ 8] [0221XKKM] +11:42:07 [ 42] [ 15] [999999 ] +11:42:07 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:42:07 [ 49] [ 3] [418] +11:42:07 [ 52] [ 16] [E9842753052AC8F6] +11:42:07 ============================================================================ +11:42:07 + + +waiting on router queue for slot.... +11:42:07 Sending to : +11:42:07 ============================================================================ +11:42:07 ============================================================================ +11:42:07 Slot Id : <371> +11:42:07 Transaction Type : REQUEST +11:42:07 Received From : +11:42:07 ============================================================================ +11:42:07 FNo. Len. Field Value +11:42:07 ============================================================================ +11:42:07 [ 1] [ 4] [0200] +11:42:07 [ 2] [ 16] [6213545000151369] +11:42:07 [ 3] [ 6] [010000] +11:42:07 [ 4] [ 12] [000100000000] +11:42:07 [ 7] [ 10] [0320044113] +11:42:07 [ 11] [ 6] [268659] +11:42:07 [ 12] [ 6] [114113] +11:42:07 [ 13] [ 4] [0320] +11:42:07 [ 14] [ 4] [4912] +11:42:07 [ 15] [ 4] [0320] +11:42:07 [ 18] [ 4] [6011] +11:42:07 [ 19] [ 3] [418] +11:42:07 [ 22] [ 3] [021] +11:42:07 [ 25] [ 2] [01] +11:42:07 [ 28] [ 9] [D00002000] +11:42:07 [ 32] [ 6] [180893] +11:42:07 [ 35] [ 32] [6213545000151369=491212015136228] +11:42:07 [ 37] [ 12] [507904268659] +11:42:07 [ 41] [ 8] [0221XKKM] +11:42:07 [ 42] [ 15] [999999 ] +11:42:07 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:42:07 [ 49] [ 3] [418] +11:42:07 [ 52] [ 16] [A3DA862E392F7A25] +11:42:07 ============================================================================ +11:42:07 + + +waiting on router queue for slot.... +11:42:07 Sending to : <0> +11:42:07 ============================================================================ +11:42:08 ============================================================================ +11:42:08 Slot Id : <371> +11:42:08 Transaction Type : RESPONSE +11:42:08 Received From : +11:42:08 ============================================================================ +11:42:08 FNo. Len. Field Value +11:42:08 ============================================================================ +11:42:08 [ 1] [ 4] [0210] +11:42:08 [ 2] [ 16] [6213545000151369] +11:42:08 [ 3] [ 6] [010000] +11:42:08 [ 4] [ 12] [000100000000] +11:42:08 [ 7] [ 10] [0320044113] +11:42:08 [ 11] [ 6] [268659] +11:42:08 [ 12] [ 6] [114113] +11:42:08 [ 13] [ 4] [0320] +11:42:08 [ 15] [ 4] [0320] +11:42:08 [ 18] [ 4] [6011] +11:42:08 [ 19] [ 3] [418] +11:42:08 [ 32] [ 6] [180893] +11:42:08 [ 35] [ 32] [6213545000151369=491212015136228] +11:42:08 [ 37] [ 12] [507904268659] +11:42:08 [ 38] [ 6] [535088] +11:42:08 [ 39] [ 2] [00] +11:42:08 [ 41] [ 8] [0221XKKM] +11:42:08 [ 49] [ 3] [418] +11:42:08 [ 54] [ 40] [0001418C0002410553480002418C000241055348] +11:42:08 ============================================================================ +11:42:08 Sending to : +11:42:08 ============================================================================ +11:42:08 + + +waiting on router queue for slot.... +11:42:09 ============================================================================ +11:42:09 Slot Id : <313> +11:42:09 Transaction Type : RESPONSE +11:42:09 Received From : +11:42:09 ============================================================================ +11:42:09 FNo. Len. Field Value +11:42:09 ============================================================================ +11:42:09 [ 1] [ 4] [0430] +11:42:09 [ 2] [ 16] [6213544001621959] +11:42:09 [ 3] [ 6] [010000] +11:42:09 [ 4] [ 12] [000100000000] +11:42:09 [ 7] [ 10] [0320113909] +11:42:09 [ 11] [ 6] [941977] +11:42:09 [ 12] [ 6] [113909] +11:42:09 [ 13] [ 4] [0320] +11:42:09 [ 15] [ 4] [0320] +11:42:09 [ 18] [ 4] [6011] +11:42:09 [ 19] [ 3] [418] +11:42:09 [ 22] [ 3] [021] +11:42:09 [ 25] [ 2] [01] +11:42:09 [ 28] [ 9] [C00002000] +11:42:09 [ 32] [ 6] [668899] +11:42:09 [ 35] [ 32] [6213544001621959=491212012195983] +11:42:09 [ 37] [ 12] [507900270933] +11:42:09 [ 39] [ 2] [00] +11:42:09 [ 41] [ 8] [03010004] +11:42:09 [ 42] [ 15] [APT ] +11:42:09 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:42:09 [ 49] [ 3] [418] +11:42:09 [ 51] [ 3] [418] +11:42:09 [ 52] [ 16] [4F67DD0AA5BF5223] +11:42:09 [ 90] [ 42] [020094197703201139090000066889900000000000] +11:42:09 ============================================================================ +11:42:09 Calculate Source COMM Id = 4 +11:42:09 ============================================================================ +11:42:09 + + +waiting on router queue for slot.... +11:42:10 ============================================================================ +11:42:10 Slot Id : <371> +11:42:10 Transaction Type : RESPONSE +11:42:10 Received From : +11:42:10 ============================================================================ +11:42:10 FNo. Len. Field Value +11:42:10 ============================================================================ +11:42:10 [ 1] [ 4] [0210] +11:42:10 [ 2] [ 16] [6213545000151369] +11:42:10 [ 3] [ 6] [010000] +11:42:10 [ 4] [ 12] [000100000000] +11:42:10 [ 7] [ 10] [0320044113] +11:42:10 [ 11] [ 6] [268659] +11:42:10 [ 12] [ 6] [114113] +11:42:10 [ 13] [ 4] [0320] +11:42:10 [ 15] [ 4] [0320] +11:42:10 [ 18] [ 4] [6011] +11:42:10 [ 19] [ 3] [418] +11:42:10 [ 32] [ 6] [180893] +11:42:10 [ 35] [ 32] [6213545000151369=491212015136228] +11:42:10 [ 37] [ 12] [507904268659] +11:42:10 [ 38] [ 6] [535088] +11:42:10 [ 39] [ 2] [00] +11:42:10 [ 41] [ 8] [0221XKKM] +11:42:10 [ 49] [ 3] [418] +11:42:10 [ 54] [ 40] [0001418C0002410553480002418C000241055348] +11:42:10 ============================================================================ +11:42:10 Calculate Source COMM Id = 2 +11:42:10 ============================================================================ +11:42:10 + + +waiting on router queue for slot.... +11:42:11 ============================================================================ +11:42:11 Slot Id : <378> +11:42:11 Transaction Type : REQUEST +11:42:11 Received From : +11:42:11 ============================================================================ +11:42:11 FNo. Len. Field Value +11:42:11 ============================================================================ +11:42:11 [ 1] [ 4] [0200] +11:42:11 [ 2] [ 16] [6213545000077457] +11:42:11 [ 3] [ 6] [010000] +11:42:11 [ 4] [ 12] [000100000000] +11:42:11 [ 7] [ 10] [0320044118] +11:42:11 [ 11] [ 6] [268662] +11:42:11 [ 12] [ 6] [114118] +11:42:11 [ 13] [ 4] [0320] +11:42:11 [ 14] [ 4] [4912] +11:42:11 [ 15] [ 4] [0320] +11:42:11 [ 18] [ 4] [6011] +11:42:11 [ 19] [ 3] [418] +11:42:11 [ 22] [ 3] [021] +11:42:11 [ 25] [ 2] [01] +11:42:11 [ 28] [ 9] [D00002000] +11:42:11 [ 32] [ 6] [180893] +11:42:11 [ 35] [ 32] [6213545000077457=491212017745184] +11:42:11 [ 37] [ 12] [507904268662] +11:42:11 [ 41] [ 8] [0112CPBR] +11:42:11 [ 42] [ 15] [999999 ] +11:42:11 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:42:11 [ 49] [ 3] [418] +11:42:11 [ 52] [ 16] [84CE322763A07D80] +11:42:11 ============================================================================ +11:42:11 + + +waiting on router queue for slot.... +11:42:11 Sending to : +11:42:11 ============================================================================ +11:42:11 Sending to : +11:42:11 ============================================================================ +11:42:12 ============================================================================ +11:42:12 Slot Id : <343> +11:42:12 Transaction Type : RESPONSE +11:42:12 Received From : +11:42:12 ============================================================================ +11:42:12 FNo. Len. Field Value +11:42:12 ============================================================================ +11:42:12 [ 1] [ 4] [0210] +11:42:12 [ 2] [ 16] [6213548000460095] +11:42:12 [ 3] [ 6] [010000] +11:42:12 [ 4] [ 12] [000050000000] +11:42:12 [ 7] [ 10] [0320113955] +11:42:12 [ 11] [ 6] [942022] +11:42:12 [ 12] [ 6] [113955] +11:42:12 [ 13] [ 4] [0320] +11:42:12 [ 15] [ 4] [0320] +11:42:12 [ 18] [ 4] [6011] +11:42:12 [ 19] [ 3] [418] +11:42:12 [ 32] [ 6] [668899] +11:42:12 [ 35] [ 32] [6213548000460095=180712016009461] +11:42:12 [ 37] [ 12] [507901963511] +11:42:12 [ 38] [ 6] [581846] +11:42:12 [ 39] [ 2] [00] +11:42:12 [ 41] [ 8] [03020019] +11:42:12 [ 49] [ 3] [418] +11:42:12 [ 54] [ 40] [0001418C0000661998240002418C000066199824] +11:42:12 ============================================================================ +11:42:12 Calculate Source COMM Id = 4 +11:42:12 ============================================================================ +11:42:12 + + +waiting on router queue for slot.... +11:42:12 ============================================================================ +11:42:12 Slot Id : <378> +11:42:12 Transaction Type : REQUEST +11:42:12 Received From : +11:42:12 ============================================================================ +11:42:12 FNo. Len. Field Value +11:42:12 ============================================================================ +11:42:12 [ 1] [ 4] [0200] +11:42:12 [ 2] [ 16] [6213545000077457] +11:42:12 [ 3] [ 6] [010000] +11:42:12 [ 4] [ 12] [000100000000] +11:42:12 [ 7] [ 10] [0320044118] +11:42:12 [ 11] [ 6] [268662] +11:42:12 [ 12] [ 6] [114118] +11:42:12 [ 13] [ 4] [0320] +11:42:12 [ 14] [ 4] [4912] +11:42:12 [ 15] [ 4] [0320] +11:42:12 [ 18] [ 4] [6011] +11:42:12 [ 19] [ 3] [418] +11:42:12 [ 22] [ 3] [021] +11:42:12 [ 25] [ 2] [01] +11:42:12 [ 28] [ 9] [D00002000] +11:42:12 [ 32] [ 6] [180893] +11:42:12 [ 35] [ 32] [6213545000077457=491212017745184] +11:42:12 [ 37] [ 12] [507904268662] +11:42:12 [ 41] [ 8] [0112CPBR] +11:42:12 [ 42] [ 15] [999999 ] +11:42:12 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:42:12 [ 49] [ 3] [418] +11:42:12 [ 52] [ 16] [84CE322763A07D80] +11:42:12 ============================================================================ +11:42:12 + + +waiting on router queue for slot.... +11:42:12 Sending to : +11:42:12 ============================================================================ +11:42:12 ============================================================================ +11:42:12 Slot Id : <378> +11:42:12 Transaction Type : REQUEST +11:42:12 Received From : +11:42:12 ============================================================================ +11:42:12 FNo. Len. Field Value +11:42:12 ============================================================================ +11:42:12 [ 1] [ 4] [0200] +11:42:12 [ 2] [ 16] [6213545000077457] +11:42:12 [ 3] [ 6] [010000] +11:42:12 [ 4] [ 12] [000100000000] +11:42:12 [ 7] [ 10] [0320044118] +11:42:12 [ 11] [ 6] [268662] +11:42:12 [ 12] [ 6] [114118] +11:42:12 [ 13] [ 4] [0320] +11:42:12 [ 14] [ 4] [4912] +11:42:12 [ 15] [ 4] [0320] +11:42:12 [ 18] [ 4] [6011] +11:42:12 [ 19] [ 3] [418] +11:42:12 [ 22] [ 3] [021] +11:42:12 [ 25] [ 2] [01] +11:42:12 [ 28] [ 9] [D00002000] +11:42:12 [ 32] [ 6] [180893] +11:42:12 [ 35] [ 32] [6213545000077457=491212017745184] +11:42:12 [ 37] [ 12] [507904268662] +11:42:12 [ 41] [ 8] [0112CPBR] +11:42:12 [ 42] [ 15] [999999 ] +11:42:12 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:42:12 [ 49] [ 3] [418] +11:42:12 [ 52] [ 16] [21D50914E847224B] +11:42:12 ============================================================================ +11:42:12 + + +waiting on router queue for slot.... +11:42:12 Sending to : <0> +11:42:12 ============================================================================ +11:42:13 ============================================================================ +11:42:13 Slot Id : <378> +11:42:13 Transaction Type : RESPONSE +11:42:13 Received From : +11:42:13 ============================================================================ +11:42:13 FNo. Len. Field Value +11:42:13 ============================================================================ +11:42:13 [ 1] [ 4] [0210] +11:42:13 [ 2] [ 16] [6213545000077457] +11:42:13 [ 3] [ 6] [010000] +11:42:13 [ 4] [ 12] [000100000000] +11:42:13 [ 7] [ 10] [0320044118] +11:42:13 [ 11] [ 6] [268662] +11:42:13 [ 12] [ 6] [114118] +11:42:13 [ 13] [ 4] [0320] +11:42:13 [ 15] [ 4] [0320] +11:42:13 [ 18] [ 4] [6011] +11:42:13 [ 19] [ 3] [418] +11:42:13 [ 32] [ 6] [180893] +11:42:13 [ 35] [ 32] [6213545000077457=491212017745184] +11:42:13 [ 37] [ 12] [507904268662] +11:42:13 [ 38] [ 6] [056246] +11:42:13 [ 39] [ 2] [00] +11:42:13 [ 41] [ 8] [0112CPBR] +11:42:13 [ 49] [ 3] [418] +11:42:13 [ 54] [ 40] [0001418C0000200976510002418C000020097651] +11:42:13 ============================================================================ +11:42:13 Sending to : +11:42:13 ============================================================================ +11:42:13 + + +waiting on router queue for slot.... +11:42:15 ============================================================================ +11:42:15 Slot Id : <378> +11:42:15 Transaction Type : RESPONSE +11:42:15 Received From : +11:42:15 ============================================================================ +11:42:15 FNo. Len. Field Value +11:42:15 ============================================================================ +11:42:15 [ 1] [ 4] [0210] +11:42:15 [ 2] [ 16] [6213545000077457] +11:42:15 [ 3] [ 6] [010000] +11:42:15 [ 4] [ 12] [000100000000] +11:42:15 [ 7] [ 10] [0320044118] +11:42:15 [ 11] [ 6] [268662] +11:42:15 [ 12] [ 6] [114118] +11:42:15 [ 13] [ 4] [0320] +11:42:15 [ 15] [ 4] [0320] +11:42:15 [ 18] [ 4] [6011] +11:42:15 [ 19] [ 3] [418] +11:42:15 [ 32] [ 6] [180893] +11:42:15 [ 35] [ 32] [6213545000077457=491212017745184] +11:42:15 [ 37] [ 12] [507904268662] +11:42:15 [ 38] [ 6] [056246] +11:42:15 [ 39] [ 2] [00] +11:42:15 [ 41] [ 8] [0112CPBR] +11:42:15 [ 49] [ 3] [418] +11:42:15 [ 54] [ 40] [0001418C0000200976510002418C000020097651] +11:42:15 ============================================================================ +11:42:15 Calculate Source COMM Id = 2 +11:42:15 ============================================================================ +11:42:15 + + +waiting on router queue for slot.... +11:42:16 ============================================================================ +11:42:16 Slot Id : <340> +11:42:16 Transaction Type : REQUEST +11:42:16 Received From : +11:42:16 ============================================================================ +11:42:16 FNo. Len. Field Value +11:42:16 ============================================================================ +11:42:16 [ 1] [ 4] [0800] +11:42:16 [ 2] [ 5] [02531] +11:42:16 [ 3] [ 6] [579118] +11:42:16 [ 7] [ 10] [0320044216] +11:42:16 [ 11] [ 6] [807091] +11:42:16 [ 15] [ 10] [0320044216] +11:42:16 [ 37] [ 11] [57911807091] +11:42:16 [ 70] [ 3] [001] +11:42:16 ============================================================================ +11:42:16 + + +waiting on router queue for slot.... +11:42:16 ============================================================================ +11:42:16 Slot Id : <340> +11:42:16 Transaction Type : RESPONSE +11:42:16 Received From : +11:42:16 ============================================================================ +11:42:16 FNo. Len. Field Value +11:42:16 ============================================================================ +11:42:16 [ 1] [ 4] [0810] +11:42:16 [ 7] [ 10] [0320044216] +11:42:16 [ 11] [ 6] [807091] +11:42:16 [ 15] [ 4] [0320] +11:42:16 [ 37] [ 12] [57911807091] +11:42:16 [ 39] [ 2] [00] +11:42:16 [ 70] [ 3] [001] +11:42:16 ============================================================================ +11:42:16 Sending to : +11:42:16 ============================================================================ +11:42:16 + + +waiting on router queue for slot.... +11:42:27 ============================================================================ +11:42:27 Slot Id : <373> +11:42:27 Transaction Type : REQUEST +11:42:27 Received From : +11:42:27 ============================================================================ +11:42:27 FNo. Len. Field Value +11:42:27 ============================================================================ +11:42:27 [ 1] [ 4] [0800] +11:42:27 [ 7] [ 10] [0320044134] +11:42:27 [ 11] [ 6] [156145] +11:42:27 [ 70] [ 3] [301] +11:42:27 ============================================================================ +11:42:27 + + +waiting on router queue for slot.... +11:42:27 Sending to : +11:42:27 ============================================================================ +11:42:27 ============================================================================ +11:42:27 Slot Id : <373> +11:42:27 Transaction Type : RESPONSE +11:42:27 Received From : +11:42:27 ============================================================================ +11:42:27 FNo. Len. Field Value +11:42:27 ============================================================================ +11:42:27 [ 1] [ 4] [0810] +11:42:27 [ 7] [ 10] [0320044134] +11:42:27 [ 11] [ 6] [156145] +11:42:27 [ 39] [ 2] [00] +11:42:27 [ 70] [ 3] [301] +11:42:27 ============================================================================ +11:42:27 Calculate Source COMM Id = 2 +11:42:27 ============================================================================ +11:42:27 + + +waiting on router queue for slot.... +11:42:31 ============================================================================ +11:42:31 Slot Id : <324> +11:42:31 Transaction Type : REQUEST +11:42:31 Received From : +11:42:31 ============================================================================ +11:42:31 FNo. Len. Field Value +11:42:31 ============================================================================ +11:42:31 [ 1] [ 4] [0200] +11:42:31 [ 2] [ 16] [6213541000320542] +11:42:31 [ 3] [ 6] [010000] +11:42:31 [ 4] [ 12] [000100000000] +11:42:31 [ 7] [ 10] [0320044138] +11:42:31 [ 11] [ 6] [268666] +11:42:31 [ 12] [ 6] [114138] +11:42:31 [ 13] [ 4] [0320] +11:42:31 [ 14] [ 4] [4912] +11:42:31 [ 15] [ 4] [0320] +11:42:31 [ 18] [ 4] [6011] +11:42:31 [ 19] [ 3] [418] +11:42:31 [ 22] [ 3] [021] +11:42:31 [ 25] [ 2] [01] +11:42:31 [ 28] [ 9] [D00002000] +11:42:31 [ 32] [ 6] [180893] +11:42:31 [ 35] [ 32] [6213541000320542=491212012054325] +11:42:31 [ 37] [ 12] [507904268666] +11:42:31 [ 41] [ 8] [0324BKDT] +11:42:31 [ 42] [ 15] [999999 ] +11:42:31 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:42:31 [ 49] [ 3] [418] +11:42:31 [ 52] [ 16] [CF8B0EB5B4436A33] +11:42:31 ============================================================================ +11:42:31 + + +waiting on router queue for slot.... +11:42:31 Sending to : +11:42:31 ============================================================================ +11:42:31 Sending to : +11:42:31 ============================================================================ +11:42:32 ============================================================================ +11:42:32 Slot Id : <324> +11:42:32 Transaction Type : REQUEST +11:42:32 Received From : +11:42:32 ============================================================================ +11:42:32 FNo. Len. Field Value +11:42:32 ============================================================================ +11:42:32 [ 1] [ 4] [0200] +11:42:32 [ 2] [ 16] [6213541000320542] +11:42:32 [ 3] [ 6] [010000] +11:42:32 [ 4] [ 12] [000100000000] +11:42:32 [ 7] [ 10] [0320044138] +11:42:32 [ 11] [ 6] [268666] +11:42:32 [ 12] [ 6] [114138] +11:42:32 [ 13] [ 4] [0320] +11:42:32 [ 14] [ 4] [4912] +11:42:32 [ 15] [ 4] [0320] +11:42:32 [ 18] [ 4] [6011] +11:42:32 [ 19] [ 3] [418] +11:42:32 [ 22] [ 3] [021] +11:42:32 [ 25] [ 2] [01] +11:42:32 [ 28] [ 9] [D00002000] +11:42:32 [ 32] [ 6] [180893] +11:42:32 [ 35] [ 32] [6213541000320542=491212012054325] +11:42:32 [ 37] [ 12] [507904268666] +11:42:32 [ 41] [ 8] [0324BKDT] +11:42:32 [ 42] [ 15] [999999 ] +11:42:32 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:42:32 [ 49] [ 3] [418] +11:42:32 [ 52] [ 16] [CF8B0EB5B4436A33] +11:42:32 ============================================================================ +11:42:32 + + +waiting on router queue for slot.... +11:42:32 Sending to : +11:42:32 ============================================================================ +11:42:32 ============================================================================ +11:42:32 Slot Id : <324> +11:42:32 Transaction Type : REQUEST +11:42:32 Received From : +11:42:32 ============================================================================ +11:42:32 FNo. Len. Field Value +11:42:32 ============================================================================ +11:42:32 [ 1] [ 4] [0200] +11:42:32 [ 2] [ 16] [6213541000320542] +11:42:32 [ 3] [ 6] [010000] +11:42:32 [ 4] [ 12] [000100000000] +11:42:32 [ 7] [ 10] [0320044138] +11:42:32 [ 11] [ 6] [268666] +11:42:32 [ 12] [ 6] [114138] +11:42:32 [ 13] [ 4] [0320] +11:42:32 [ 14] [ 4] [4912] +11:42:32 [ 15] [ 4] [0320] +11:42:32 [ 18] [ 4] [6011] +11:42:32 [ 19] [ 3] [418] +11:42:32 [ 22] [ 3] [021] +11:42:32 [ 25] [ 2] [01] +11:42:32 [ 28] [ 9] [D00002000] +11:42:32 [ 32] [ 6] [180893] +11:42:32 [ 35] [ 32] [6213541000320542=491212012054325] +11:42:32 [ 37] [ 12] [507904268666] +11:42:32 [ 41] [ 8] [0324BKDT] +11:42:32 [ 42] [ 15] [999999 ] +11:42:32 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:42:32 [ 49] [ 3] [418] +11:42:32 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:42:32 ============================================================================ +11:42:32 + + +waiting on router queue for slot.... +11:42:32 Sending to : <0> +11:42:32 ============================================================================ +11:42:32 ============================================================================ +11:42:32 Slot Id : <382> +11:42:32 Transaction Type : REQUEST +11:42:32 Received From : +11:42:32 ============================================================================ +11:42:32 FNo. Len. Field Value +11:42:32 ============================================================================ +11:42:32 [ 1] [ 4] [0200] +11:42:32 [ 2] [ 16] [1808930600019301] +11:42:32 [ 3] [ 6] [011000] +11:42:32 [ 4] [ 12] [000100000000] +11:42:32 [ 7] [ 10] [0320114228] +11:42:32 [ 11] [ 6] [733749] +11:42:32 [ 12] [ 6] [114228] +11:42:32 [ 13] [ 4] [0320] +11:42:32 [ 15] [ 4] [0320] +11:42:32 [ 18] [ 4] [6011] +11:42:32 [ 22] [ 3] [900] +11:42:32 [ 25] [ 2] [02] +11:42:32 [ 28] [ 9] [D00002000] +11:42:32 [ 32] [ 6] [621354] +11:42:32 [ 35] [ 27] [1808930600019301=1803500363] +11:42:32 [ 37] [ 12] [507904334518] +11:42:32 [ 41] [ 8] [03003200] +11:42:32 [ 42] [ 15] [NATIVE ] +11:42:32 [ 43] [ 40] [SVN Technic College KaisonephomvLAO] +11:42:32 [ 49] [ 3] [418] +11:42:32 [ 52] [ 16] [62EA7598C54E92AC] +11:42:32 ============================================================================ +11:42:32 + + +waiting on router queue for slot.... +11:42:32 Sending to : +11:42:32 ============================================================================ +11:42:32 Sending to : +11:42:32 ============================================================================ +11:42:33 ============================================================================ +11:42:33 Slot Id : <382> +11:42:33 Transaction Type : REQUEST +11:42:33 Received From : +11:42:33 ============================================================================ +11:42:33 FNo. Len. Field Value +11:42:33 ============================================================================ +11:42:33 [ 1] [ 4] [0200] +11:42:33 [ 2] [ 16] [1808930600019301] +11:42:33 [ 3] [ 6] [011000] +11:42:33 [ 4] [ 12] [000100000000] +11:42:33 [ 7] [ 10] [0320114228] +11:42:33 [ 11] [ 6] [733749] +11:42:33 [ 12] [ 6] [114228] +11:42:33 [ 13] [ 4] [0320] +11:42:33 [ 15] [ 4] [0320] +11:42:33 [ 18] [ 4] [6011] +11:42:33 [ 22] [ 3] [900] +11:42:33 [ 25] [ 2] [02] +11:42:33 [ 28] [ 9] [D00002000] +11:42:33 [ 32] [ 6] [621354] +11:42:33 [ 35] [ 27] [1808930600019301=1803500363] +11:42:33 [ 37] [ 12] [507904334518] +11:42:33 [ 41] [ 8] [03003200] +11:42:33 [ 42] [ 15] [NATIVE ] +11:42:33 [ 43] [ 40] [SVN Technic College KaisonephomvLAO] +11:42:33 [ 49] [ 3] [418] +11:42:33 [ 52] [ 16] [62EA7598C54E92AC] +11:42:33 ============================================================================ +11:42:33 + + +waiting on router queue for slot.... +11:42:33 Sending to : +11:42:33 ============================================================================ +11:42:33 ============================================================================ +11:42:33 Slot Id : <382> +11:42:33 Transaction Type : REQUEST +11:42:33 Received From : +11:42:33 ============================================================================ +11:42:33 FNo. Len. Field Value +11:42:33 ============================================================================ +11:42:33 [ 1] [ 4] [0200] +11:42:33 [ 2] [ 16] [1808930600019301] +11:42:33 [ 3] [ 6] [011000] +11:42:33 [ 4] [ 12] [000100000000] +11:42:33 [ 7] [ 10] [0320114228] +11:42:33 [ 11] [ 6] [733749] +11:42:33 [ 12] [ 6] [114228] +11:42:33 [ 13] [ 4] [0320] +11:42:33 [ 15] [ 4] [0320] +11:42:33 [ 18] [ 4] [6011] +11:42:33 [ 22] [ 3] [900] +11:42:33 [ 25] [ 2] [02] +11:42:33 [ 28] [ 9] [D00002000] +11:42:33 [ 32] [ 6] [621354] +11:42:33 [ 35] [ 27] [1808930600019301=1803500363] +11:42:33 [ 37] [ 12] [507904334518] +11:42:33 [ 41] [ 8] [03003200] +11:42:33 [ 42] [ 15] [NATIVE ] +11:42:33 [ 43] [ 40] [SVN Technic College KaisonephomvLAO] +11:42:33 [ 49] [ 3] [418] +11:42:33 [ 52] [ 16] [20096A09E255907C] +11:42:33 ============================================================================ +11:42:33 + + +waiting on router queue for slot.... +11:42:33 Sending to : <2> +11:42:33 ============================================================================ +11:42:33 ============================================================================ +11:42:33 Slot Id : <324> +11:42:33 Transaction Type : RESPONSE +11:42:33 Received From : +11:42:33 ============================================================================ +11:42:33 FNo. Len. Field Value +11:42:33 ============================================================================ +11:42:33 [ 1] [ 4] [0210] +11:42:33 [ 2] [ 16] [6213541000320542] +11:42:33 [ 3] [ 6] [010000] +11:42:33 [ 4] [ 12] [000100000000] +11:42:33 [ 7] [ 10] [0320044138] +11:42:33 [ 11] [ 6] [268666] +11:42:33 [ 12] [ 6] [114138] +11:42:33 [ 13] [ 4] [0320] +11:42:33 [ 15] [ 4] [0320] +11:42:33 [ 18] [ 4] [6011] +11:42:33 [ 19] [ 3] [418] +11:42:33 [ 32] [ 6] [180893] +11:42:33 [ 35] [ 32] [6213541000320542=491212012054325] +11:42:33 [ 37] [ 12] [507904268666] +11:42:33 [ 38] [ 6] [123385] +11:42:33 [ 39] [ 2] [00] +11:42:33 [ 41] [ 8] [0324BKDT] +11:42:33 [ 49] [ 3] [418] +11:42:33 [ 54] [ 40] [0001418C0008894349510002418C000889434951] +11:42:33 ============================================================================ +11:42:33 Sending to : +11:42:33 ============================================================================ +11:42:33 + + +waiting on router queue for slot.... +11:42:34 ============================================================================ +11:42:34 Slot Id : <324> +11:42:34 Transaction Type : RESPONSE +11:42:34 Received From : +11:42:34 ============================================================================ +11:42:34 FNo. Len. Field Value +11:42:34 ============================================================================ +11:42:34 [ 1] [ 4] [0210] +11:42:34 [ 2] [ 16] [6213541000320542] +11:42:34 [ 3] [ 6] [010000] +11:42:34 [ 4] [ 12] [000100000000] +11:42:34 [ 7] [ 10] [0320044138] +11:42:34 [ 11] [ 6] [268666] +11:42:34 [ 12] [ 6] [114138] +11:42:34 [ 13] [ 4] [0320] +11:42:34 [ 15] [ 4] [0320] +11:42:34 [ 18] [ 4] [6011] +11:42:34 [ 19] [ 3] [418] +11:42:34 [ 32] [ 6] [180893] +11:42:34 [ 35] [ 32] [6213541000320542=491212012054325] +11:42:34 [ 37] [ 12] [507904268666] +11:42:34 [ 38] [ 6] [123385] +11:42:34 [ 39] [ 2] [00] +11:42:34 [ 41] [ 8] [0324BKDT] +11:42:34 [ 49] [ 3] [418] +11:42:34 [ 54] [ 40] [0001418C0008894349510002418C000889434951] +11:42:34 ============================================================================ +11:42:34 Calculate Source COMM Id = 2 +11:42:34 ============================================================================ +11:42:34 + + +waiting on router queue for slot.... +11:42:40 ============================================================================ +11:42:40 Slot Id : <382> +11:42:40 Transaction Type : RESPONSE +11:42:40 Received From : +11:42:40 ============================================================================ +11:42:40 FNo. Len. Field Value +11:42:40 ============================================================================ +11:42:40 [ 1] [ 4] [0210] +11:42:40 [ 2] [ 16] [1808930600019301] +11:42:40 [ 3] [ 6] [011000] +11:42:40 [ 4] [ 12] [000100000000] +11:42:40 [ 6] [ 12] [000100000000] +11:42:40 [ 7] [ 10] [0320114228] +11:42:40 [ 11] [ 6] [733749] +11:42:40 [ 12] [ 6] [114228] +11:42:40 [ 13] [ 4] [0320] +11:42:40 [ 18] [ 4] [6011] +11:42:40 [ 19] [ 3] [418] +11:42:40 [ 22] [ 3] [021] +11:42:40 [ 32] [ 6] [621354] +11:42:40 [ 35] [ 27] [1808930600019301=1803500363] +11:42:40 [ 37] [ 12] [507904334518] +11:42:40 [ 38] [ 6] [733749] +11:42:40 [ 39] [ 2] [00] +11:42:40 [ 41] [ 8] [03003200] +11:42:40 [ 49] [ 3] [418] +11:42:40 [ 52] [ 16] [20096A09E255907C] +11:42:40 [ 54] [ 20] [1001418C000186929800] +11:42:40 ============================================================================ +11:42:40 Sending to : +11:42:40 ============================================================================ +11:42:40 + + +waiting on router queue for slot.... +11:42:42 ============================================================================ +11:42:42 Slot Id : <382> +11:42:42 Transaction Type : RESPONSE +11:42:42 Received From : +11:42:42 ============================================================================ +11:42:42 FNo. Len. Field Value +11:42:42 ============================================================================ +11:42:42 [ 1] [ 4] [0210] +11:42:42 [ 2] [ 16] [1808930600019301] +11:42:42 [ 3] [ 6] [011000] +11:42:42 [ 4] [ 12] [000100000000] +11:42:42 [ 6] [ 12] [000100000000] +11:42:42 [ 7] [ 10] [0320114228] +11:42:42 [ 11] [ 6] [733749] +11:42:42 [ 12] [ 6] [114228] +11:42:42 [ 13] [ 4] [0320] +11:42:42 [ 18] [ 4] [6011] +11:42:42 [ 19] [ 3] [418] +11:42:42 [ 22] [ 3] [021] +11:42:42 [ 32] [ 6] [621354] +11:42:42 [ 35] [ 27] [1808930600019301=1803500363] +11:42:42 [ 37] [ 12] [507904334518] +11:42:42 [ 38] [ 6] [733749] +11:42:42 [ 39] [ 2] [00] +11:42:42 [ 41] [ 8] [03003200] +11:42:42 [ 49] [ 3] [418] +11:42:42 [ 52] [ 16] [20096A09E255907C] +11:42:42 [ 54] [ 20] [1001418C000186929800] +11:42:42 ============================================================================ +11:42:42 Calculate Source COMM Id = 0 +11:42:42 ============================================================================ +11:42:42 + + +waiting on router queue for slot.... +11:42:45 ============================================================================ +11:42:45 Slot Id : <355> +11:42:45 Transaction Type : REQUEST +11:42:45 Received From : +11:42:45 ============================================================================ +11:42:45 FNo. Len. Field Value +11:42:45 ============================================================================ +11:42:45 [ 1] [ 4] [0200] +11:42:45 [ 2] [ 16] [6688990108296201] +11:42:45 [ 3] [ 6] [010000] +11:42:45 [ 4] [ 12] [000010000000] +11:42:45 [ 7] [ 10] [0320044152] +11:42:45 [ 11] [ 6] [268669] +11:42:45 [ 12] [ 6] [114152] +11:42:45 [ 13] [ 4] [0320] +11:42:45 [ 14] [ 4] [4405] +11:42:45 [ 15] [ 4] [0320] +11:42:45 [ 18] [ 4] [6011] +11:42:45 [ 19] [ 3] [418] +11:42:45 [ 22] [ 3] [021] +11:42:45 [ 25] [ 2] [01] +11:42:45 [ 28] [ 9] [D00002000] +11:42:45 [ 32] [ 6] [180893] +11:42:45 [ 35] [ 37] [6688990108296201=44051231620180800000] +11:42:45 [ 37] [ 12] [507904268669] +11:42:45 [ 41] [ 8] [0466PSLB] +11:42:45 [ 42] [ 15] [999999 ] +11:42:45 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +11:42:45 [ 49] [ 3] [418] +11:42:45 [ 52] [ 16] [55FA6A99273A941E] +11:42:45 ============================================================================ +11:42:45 + + +waiting on router queue for slot.... +11:42:45 Sending to : +11:42:45 ============================================================================ +11:42:45 Sending to : +11:42:45 ============================================================================ +11:42:46 ============================================================================ +11:42:46 Slot Id : <355> +11:42:46 Transaction Type : REQUEST +11:42:46 Received From : +11:42:46 ============================================================================ +11:42:46 FNo. Len. Field Value +11:42:46 ============================================================================ +11:42:46 [ 1] [ 4] [0200] +11:42:46 [ 2] [ 16] [6688990108296201] +11:42:46 [ 3] [ 6] [010000] +11:42:46 [ 4] [ 12] [000010000000] +11:42:46 [ 7] [ 10] [0320044152] +11:42:46 [ 11] [ 6] [268669] +11:42:46 [ 12] [ 6] [114152] +11:42:46 [ 13] [ 4] [0320] +11:42:46 [ 14] [ 4] [4405] +11:42:46 [ 15] [ 4] [0320] +11:42:46 [ 18] [ 4] [6011] +11:42:46 [ 19] [ 3] [418] +11:42:46 [ 22] [ 3] [021] +11:42:46 [ 25] [ 2] [01] +11:42:46 [ 28] [ 9] [D00002000] +11:42:46 [ 32] [ 6] [180893] +11:42:46 [ 35] [ 37] [6688990108296201=44051231620180800000] +11:42:46 [ 37] [ 12] [507904268669] +11:42:46 [ 41] [ 8] [0466PSLB] +11:42:46 [ 42] [ 15] [999999 ] +11:42:46 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +11:42:46 [ 49] [ 3] [418] +11:42:46 [ 52] [ 16] [55FA6A99273A941E] +11:42:46 ============================================================================ +11:42:46 + + +waiting on router queue for slot.... +11:42:46 Sending to : +11:42:46 ============================================================================ +11:42:46 ============================================================================ +11:42:46 Slot Id : <355> +11:42:46 Transaction Type : REQUEST +11:42:46 Received From : +11:42:46 ============================================================================ +11:42:46 FNo. Len. Field Value +11:42:46 ============================================================================ +11:42:46 [ 1] [ 4] [0200] +11:42:46 [ 2] [ 16] [6688990108296201] +11:42:46 [ 3] [ 6] [010000] +11:42:46 [ 4] [ 12] [000010000000] +11:42:46 [ 7] [ 10] [0320044152] +11:42:46 [ 11] [ 6] [268669] +11:42:46 [ 12] [ 6] [114152] +11:42:46 [ 13] [ 4] [0320] +11:42:46 [ 14] [ 4] [4405] +11:42:46 [ 15] [ 4] [0320] +11:42:46 [ 18] [ 4] [6011] +11:42:46 [ 19] [ 3] [418] +11:42:46 [ 22] [ 3] [021] +11:42:46 [ 25] [ 2] [01] +11:42:46 [ 28] [ 9] [D00002000] +11:42:46 [ 32] [ 6] [180893] +11:42:46 [ 35] [ 37] [6688990108296201=44051231620180800000] +11:42:46 [ 37] [ 12] [507904268669] +11:42:46 [ 41] [ 8] [0466PSLB] +11:42:46 [ 42] [ 15] [999999 ] +11:42:46 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +11:42:46 [ 49] [ 3] [418] +11:42:46 [ 52] [ 16] [D64D10C731BCB7AE] +11:42:46 ============================================================================ +11:42:46 + + +waiting on router queue for slot.... +11:42:46 Sending to : <0> +11:42:46 ============================================================================ +11:42:46 ============================================================================ +11:42:46 Slot Id : <355> +11:42:46 Transaction Type : RESPONSE +11:42:46 Received From : +11:42:46 ============================================================================ +11:42:46 FNo. Len. Field Value +11:42:46 ============================================================================ +11:42:46 [ 1] [ 4] [0210] +11:42:46 [ 2] [ 16] [6688990108296201] +11:42:46 [ 3] [ 6] [010000] +11:42:46 [ 4] [ 12] [000010000000] +11:42:46 [ 7] [ 10] [0320044152] +11:42:46 [ 11] [ 6] [268669] +11:42:46 [ 12] [ 6] [114152] +11:42:46 [ 13] [ 4] [0320] +11:42:46 [ 15] [ 4] [0320] +11:42:46 [ 18] [ 4] [6011] +11:42:46 [ 19] [ 3] [418] +11:42:46 [ 22] [ 3] [021] +11:42:46 [ 32] [ 6] [180893] +11:42:46 [ 35] [ 37] [6688990108296201=44051231620180800000] +11:42:46 [ 37] [ 12] [507904268669] +11:42:46 [ 39] [ 2] [14] +11:42:46 [ 41] [ 8] [0466PSLB] +11:42:46 [ 49] [ 3] [418] +11:42:46 ============================================================================ +11:42:46 Sending to : +11:42:46 ============================================================================ +11:42:46 + + +waiting on router queue for slot.... +11:42:47 ============================================================================ +11:42:47 Slot Id : <355> +11:42:47 Transaction Type : RESPONSE +11:42:47 Received From : +11:42:47 ============================================================================ +11:42:47 FNo. Len. Field Value +11:42:47 ============================================================================ +11:42:47 [ 1] [ 4] [0210] +11:42:47 [ 2] [ 16] [6688990108296201] +11:42:47 [ 3] [ 6] [010000] +11:42:47 [ 4] [ 12] [000010000000] +11:42:47 [ 7] [ 10] [0320044152] +11:42:47 [ 11] [ 6] [268669] +11:42:47 [ 12] [ 6] [114152] +11:42:47 [ 13] [ 4] [0320] +11:42:47 [ 15] [ 4] [0320] +11:42:47 [ 18] [ 4] [6011] +11:42:47 [ 19] [ 3] [418] +11:42:47 [ 22] [ 3] [021] +11:42:47 [ 32] [ 6] [180893] +11:42:47 [ 35] [ 37] [6688990108296201=44051231620180800000] +11:42:47 [ 37] [ 12] [507904268669] +11:42:47 [ 39] [ 2] [14] +11:42:47 [ 41] [ 8] [0466PSLB] +11:42:47 [ 49] [ 3] [418] +11:42:47 ============================================================================ +11:42:47 Calculate Source COMM Id = 2 +11:42:47 ============================================================================ +11:42:47 + + +waiting on router queue for slot.... +11:42:48 ============================================================================ +11:42:48 Slot Id : <353> +11:42:48 Transaction Type : REQUEST +11:42:48 Received From : +11:42:48 ============================================================================ +11:42:48 FNo. Len. Field Value +11:42:48 ============================================================================ +11:42:48 [ 1] [ 4] [0200] +11:42:48 [ 2] [ 16] [6213545000151369] +11:42:48 [ 3] [ 6] [010000] +11:42:48 [ 4] [ 12] [000100000000] +11:42:48 [ 7] [ 10] [0320044155] +11:42:48 [ 11] [ 6] [268672] +11:42:48 [ 12] [ 6] [114155] +11:42:48 [ 13] [ 4] [0320] +11:42:48 [ 14] [ 4] [4912] +11:42:48 [ 15] [ 4] [0320] +11:42:48 [ 18] [ 4] [6011] +11:42:48 [ 19] [ 3] [418] +11:42:48 [ 22] [ 3] [021] +11:42:48 [ 25] [ 2] [01] +11:42:48 [ 28] [ 9] [D00002000] +11:42:48 [ 32] [ 6] [180893] +11:42:48 [ 35] [ 32] [6213545000151369=491212015136228] +11:42:48 [ 37] [ 12] [507904268672] +11:42:48 [ 41] [ 8] [0221XKKM] +11:42:48 [ 42] [ 15] [999999 ] +11:42:48 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:42:48 [ 49] [ 3] [418] +11:42:48 [ 52] [ 16] [E9842753052AC8F6] +11:42:48 ============================================================================ +11:42:48 + + +waiting on router queue for slot.... +11:42:48 Sending to : +11:42:48 ============================================================================ +11:42:48 Sending to : +11:42:48 ============================================================================ +11:42:48 ============================================================================ +11:42:48 Slot Id : <353> +11:42:48 Transaction Type : REQUEST +11:42:48 Received From : +11:42:48 ============================================================================ +11:42:48 FNo. Len. Field Value +11:42:48 ============================================================================ +11:42:48 [ 1] [ 4] [0200] +11:42:48 [ 2] [ 16] [6213545000151369] +11:42:48 [ 3] [ 6] [010000] +11:42:48 [ 4] [ 12] [000100000000] +11:42:48 [ 7] [ 10] [0320044155] +11:42:48 [ 11] [ 6] [268672] +11:42:48 [ 12] [ 6] [114155] +11:42:48 [ 13] [ 4] [0320] +11:42:48 [ 14] [ 4] [4912] +11:42:48 [ 15] [ 4] [0320] +11:42:48 [ 18] [ 4] [6011] +11:42:48 [ 19] [ 3] [418] +11:42:48 [ 22] [ 3] [021] +11:42:48 [ 25] [ 2] [01] +11:42:48 [ 28] [ 9] [D00002000] +11:42:48 [ 32] [ 6] [180893] +11:42:48 [ 35] [ 32] [6213545000151369=491212015136228] +11:42:48 [ 37] [ 12] [507904268672] +11:42:48 [ 41] [ 8] [0221XKKM] +11:42:48 [ 42] [ 15] [999999 ] +11:42:48 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:42:48 [ 49] [ 3] [418] +11:42:48 [ 52] [ 16] [E9842753052AC8F6] +11:42:48 ============================================================================ +11:42:48 + + +waiting on router queue for slot.... +11:42:48 Sending to : +11:42:48 ============================================================================ +11:42:48 ============================================================================ +11:42:48 Slot Id : <353> +11:42:48 Transaction Type : REQUEST +11:42:48 Received From : +11:42:48 ============================================================================ +11:42:48 FNo. Len. Field Value +11:42:48 ============================================================================ +11:42:48 [ 1] [ 4] [0200] +11:42:48 [ 2] [ 16] [6213545000151369] +11:42:48 [ 3] [ 6] [010000] +11:42:48 [ 4] [ 12] [000100000000] +11:42:48 [ 7] [ 10] [0320044155] +11:42:48 [ 11] [ 6] [268672] +11:42:48 [ 12] [ 6] [114155] +11:42:48 [ 13] [ 4] [0320] +11:42:48 [ 14] [ 4] [4912] +11:42:48 [ 15] [ 4] [0320] +11:42:48 [ 18] [ 4] [6011] +11:42:48 [ 19] [ 3] [418] +11:42:48 [ 22] [ 3] [021] +11:42:48 [ 25] [ 2] [01] +11:42:48 [ 28] [ 9] [D00002000] +11:42:48 [ 32] [ 6] [180893] +11:42:48 [ 35] [ 32] [6213545000151369=491212015136228] +11:42:48 [ 37] [ 12] [507904268672] +11:42:48 [ 41] [ 8] [0221XKKM] +11:42:48 [ 42] [ 15] [999999 ] +11:42:48 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:42:48 [ 49] [ 3] [418] +11:42:48 [ 52] [ 16] [A3DA862E392F7A25] +11:42:48 ============================================================================ +11:42:48 + + +waiting on router queue for slot.... +11:42:48 Sending to : <0> +11:42:48 ============================================================================ +11:42:49 ============================================================================ +11:42:49 Slot Id : <353> +11:42:49 Transaction Type : RESPONSE +11:42:49 Received From : +11:42:49 ============================================================================ +11:42:49 FNo. Len. Field Value +11:42:49 ============================================================================ +11:42:49 [ 1] [ 4] [0210] +11:42:49 [ 2] [ 16] [6213545000151369] +11:42:49 [ 3] [ 6] [010000] +11:42:49 [ 4] [ 12] [000100000000] +11:42:49 [ 7] [ 10] [0320044155] +11:42:49 [ 11] [ 6] [268672] +11:42:49 [ 12] [ 6] [114155] +11:42:49 [ 13] [ 4] [0320] +11:42:49 [ 15] [ 4] [0320] +11:42:49 [ 18] [ 4] [6011] +11:42:49 [ 19] [ 3] [418] +11:42:49 [ 32] [ 6] [180893] +11:42:49 [ 35] [ 32] [6213545000151369=491212015136228] +11:42:49 [ 37] [ 12] [507904268672] +11:42:49 [ 38] [ 6] [382623] +11:42:49 [ 39] [ 2] [00] +11:42:49 [ 41] [ 8] [0221XKKM] +11:42:49 [ 49] [ 3] [418] +11:42:49 [ 54] [ 40] [0001418C0001408553480002418C000140855348] +11:42:49 ============================================================================ +11:42:49 Sending to : +11:42:49 ============================================================================ +11:42:49 + + +waiting on router queue for slot.... +11:42:50 ============================================================================ +11:42:50 Slot Id : <353> +11:42:50 Transaction Type : RESPONSE +11:42:50 Received From : +11:42:50 ============================================================================ +11:42:50 FNo. Len. Field Value +11:42:50 ============================================================================ +11:42:50 [ 1] [ 4] [0210] +11:42:50 [ 2] [ 16] [6213545000151369] +11:42:50 [ 3] [ 6] [010000] +11:42:50 [ 4] [ 12] [000100000000] +11:42:50 [ 7] [ 10] [0320044155] +11:42:50 [ 11] [ 6] [268672] +11:42:50 [ 12] [ 6] [114155] +11:42:50 [ 13] [ 4] [0320] +11:42:50 [ 15] [ 4] [0320] +11:42:50 [ 18] [ 4] [6011] +11:42:50 [ 19] [ 3] [418] +11:42:50 [ 32] [ 6] [180893] +11:42:50 [ 35] [ 32] [6213545000151369=491212015136228] +11:42:50 [ 37] [ 12] [507904268672] +11:42:50 [ 38] [ 6] [382623] +11:42:50 [ 39] [ 2] [00] +11:42:50 [ 41] [ 8] [0221XKKM] +11:42:50 [ 49] [ 3] [418] +11:42:50 [ 54] [ 40] [0001418C0001408553480002418C000140855348] +11:42:50 ============================================================================ +11:42:50 Calculate Source COMM Id = 2 +11:42:50 ============================================================================ +11:42:50 + + +waiting on router queue for slot.... +11:42:56 ============================================================================ +11:42:56 Slot Id : <358> +11:42:56 Transaction Type : REQUEST +11:42:56 Received From : +11:42:56 ============================================================================ +11:42:56 FNo. Len. Field Value +11:42:56 ============================================================================ +11:42:56 [ 1] [ 4] [0200] +11:42:56 [ 2] [ 16] [1808930300000627] +11:42:56 [ 3] [ 6] [010000] +11:42:56 [ 4] [ 12] [000100000000] +11:42:56 [ 7] [ 10] [0320114252] +11:42:56 [ 11] [ 6] [733839] +11:42:56 [ 12] [ 6] [114252] +11:42:56 [ 13] [ 4] [0320] +11:42:56 [ 15] [ 4] [0320] +11:42:56 [ 18] [ 4] [6011] +11:42:56 [ 22] [ 3] [900] +11:42:56 [ 25] [ 2] [02] +11:42:56 [ 28] [ 9] [D00002000] +11:42:56 [ 32] [ 6] [621354] +11:42:56 [ 35] [ 27] [1808930300000627=1803500441] +11:42:56 [ 37] [ 12] [507903505410] +11:42:56 [ 41] [ 8] [09000700] +11:42:56 [ 42] [ 15] [NATIVE ] +11:42:56 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:42:56 [ 49] [ 3] [418] +11:42:56 [ 52] [ 16] [7B4555E2B22445BE] +11:42:56 ============================================================================ +11:42:56 + + +waiting on router queue for slot.... +11:42:56 Sending to : +11:42:56 ============================================================================ +11:42:56 Sending to : +11:42:56 ============================================================================ +11:42:57 ============================================================================ +11:42:57 Slot Id : <358> +11:42:57 Transaction Type : REQUEST +11:42:57 Received From : +11:42:57 ============================================================================ +11:42:57 FNo. Len. Field Value +11:42:57 ============================================================================ +11:42:57 [ 1] [ 4] [0200] +11:42:57 [ 2] [ 16] [1808930300000627] +11:42:57 [ 3] [ 6] [010000] +11:42:57 [ 4] [ 12] [000100000000] +11:42:57 [ 7] [ 10] [0320114252] +11:42:57 [ 11] [ 6] [733839] +11:42:57 [ 12] [ 6] [114252] +11:42:57 [ 13] [ 4] [0320] +11:42:57 [ 15] [ 4] [0320] +11:42:57 [ 18] [ 4] [6011] +11:42:57 [ 22] [ 3] [900] +11:42:57 [ 25] [ 2] [02] +11:42:57 [ 28] [ 9] [D00002000] +11:42:57 [ 32] [ 6] [621354] +11:42:57 [ 35] [ 27] [1808930300000627=1803500441] +11:42:57 [ 37] [ 12] [507903505410] +11:42:57 [ 41] [ 8] [09000700] +11:42:57 [ 42] [ 15] [NATIVE ] +11:42:57 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:42:57 [ 49] [ 3] [418] +11:42:57 [ 52] [ 16] [7B4555E2B22445BE] +11:42:57 ============================================================================ +11:42:57 + + +waiting on router queue for slot.... +11:42:57 Sending to : +11:42:57 ============================================================================ +11:42:57 ============================================================================ +11:42:57 Slot Id : <358> +11:42:57 Transaction Type : REQUEST +11:42:57 Received From : +11:42:57 ============================================================================ +11:42:57 FNo. Len. Field Value +11:42:57 ============================================================================ +11:42:57 [ 1] [ 4] [0200] +11:42:57 [ 2] [ 16] [1808930300000627] +11:42:57 [ 3] [ 6] [010000] +11:42:57 [ 4] [ 12] [000100000000] +11:42:57 [ 7] [ 10] [0320114252] +11:42:57 [ 11] [ 6] [733839] +11:42:57 [ 12] [ 6] [114252] +11:42:57 [ 13] [ 4] [0320] +11:42:57 [ 15] [ 4] [0320] +11:42:57 [ 18] [ 4] [6011] +11:42:57 [ 22] [ 3] [900] +11:42:57 [ 25] [ 2] [02] +11:42:57 [ 28] [ 9] [D00002000] +11:42:57 [ 32] [ 6] [621354] +11:42:57 [ 35] [ 27] [1808930300000627=1803500441] +11:42:57 [ 37] [ 12] [507903505410] +11:42:57 [ 41] [ 8] [09000700] +11:42:57 [ 42] [ 15] [NATIVE ] +11:42:57 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:42:57 [ 49] [ 3] [418] +11:42:57 [ 52] [ 16] [8C05AC738B091252] +11:42:57 ============================================================================ +11:42:57 + + +waiting on router queue for slot.... +11:42:57 Sending to : <2> +11:42:57 ============================================================================ +11:43:00 ============================================================================ +11:43:00 Slot Id : <363> +11:43:00 Transaction Type : REQUEST +11:43:00 Received From : +11:43:00 ============================================================================ +11:43:00 FNo. Len. Field Value +11:43:00 ============================================================================ +11:43:00 [ 1] [ 4] [0200] +11:43:00 [ 2] [ 16] [6213545000679245] +11:43:00 [ 3] [ 6] [010000] +11:43:00 [ 4] [ 12] [000030000000] +11:43:00 [ 7] [ 10] [0320115047] +11:43:00 [ 11] [ 6] [168918] +11:43:00 [ 12] [ 6] [115047] +11:43:00 [ 13] [ 4] [0320] +11:43:00 [ 14] [ 4] [4912] +11:43:00 [ 15] [ 4] [0320] +11:43:00 [ 18] [ 4] [6011] +11:43:00 [ 22] [ 3] [900] +11:43:00 [ 25] [ 2] [02] +11:43:00 [ 28] [ 9] [D00002000] +11:43:00 [ 32] [ 6] [220699] +11:43:00 [ 35] [ 32] [6213545000679245=491212017924663] +11:43:00 [ 37] [ 12] [507900026334] +11:43:00 [ 41] [ 8] [01000200] +11:43:00 [ 42] [ 15] [APTRA ] +11:43:00 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:43:00 [ 49] [ 3] [418] +11:43:00 [ 52] [ 16] [973445FF80D289A5] +11:43:00 ============================================================================ +11:43:00 + + +waiting on router queue for slot.... +11:43:00 Sending to : +11:43:00 ============================================================================ +11:43:00 Sending to : +11:43:00 ============================================================================ +11:43:00 ============================================================================ +11:43:00 Slot Id : <363> +11:43:00 Transaction Type : REQUEST +11:43:00 Received From : +11:43:00 ============================================================================ +11:43:00 FNo. Len. Field Value +11:43:00 ============================================================================ +11:43:00 [ 1] [ 4] [0200] +11:43:00 [ 2] [ 16] [6213545000679245] +11:43:00 [ 3] [ 6] [010000] +11:43:00 [ 4] [ 12] [000030000000] +11:43:00 [ 7] [ 10] [0320115047] +11:43:00 [ 11] [ 6] [168918] +11:43:00 [ 12] [ 6] [115047] +11:43:00 [ 13] [ 4] [0320] +11:43:00 [ 14] [ 4] [4912] +11:43:00 [ 15] [ 4] [0320] +11:43:00 [ 18] [ 4] [6011] +11:43:00 [ 22] [ 3] [900] +11:43:00 [ 25] [ 2] [02] +11:43:00 [ 28] [ 9] [D00002000] +11:43:00 [ 32] [ 6] [220699] +11:43:00 [ 35] [ 32] [6213545000679245=491212017924663] +11:43:00 [ 37] [ 12] [507900026334] +11:43:00 [ 41] [ 8] [01000200] +11:43:00 [ 42] [ 15] [APTRA ] +11:43:00 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:43:00 [ 49] [ 3] [418] +11:43:00 [ 52] [ 16] [973445FF80D289A5] +11:43:00 ============================================================================ +11:43:00 + + +waiting on router queue for slot.... +11:43:00 Sending to : +11:43:00 ============================================================================ +11:43:00 ============================================================================ +11:43:00 Slot Id : <363> +11:43:00 Transaction Type : REQUEST +11:43:00 Received From : +11:43:00 ============================================================================ +11:43:00 FNo. Len. Field Value +11:43:00 ============================================================================ +11:43:00 [ 1] [ 4] [0200] +11:43:00 [ 2] [ 16] [6213545000679245] +11:43:00 [ 3] [ 6] [010000] +11:43:00 [ 4] [ 12] [000030000000] +11:43:00 [ 7] [ 10] [0320115047] +11:43:00 [ 11] [ 6] [168918] +11:43:00 [ 12] [ 6] [115047] +11:43:00 [ 13] [ 4] [0320] +11:43:00 [ 14] [ 4] [4912] +11:43:00 [ 15] [ 4] [0320] +11:43:00 [ 18] [ 4] [6011] +11:43:00 [ 22] [ 3] [900] +11:43:00 [ 25] [ 2] [02] +11:43:00 [ 28] [ 9] [D00002000] +11:43:00 [ 32] [ 6] [220699] +11:43:00 [ 35] [ 32] [6213545000679245=491212017924663] +11:43:00 [ 37] [ 12] [507900026334] +11:43:00 [ 41] [ 8] [01000200] +11:43:00 [ 42] [ 15] [APTRA ] +11:43:00 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:43:00 [ 49] [ 3] [418] +11:43:00 [ 52] [ 16] [87260C680A6F9939] +11:43:00 ============================================================================ +11:43:00 + + +waiting on router queue for slot.... +11:43:00 Sending to : <0> +11:43:00 ============================================================================ +11:43:01 ============================================================================ +11:43:01 Slot Id : <363> +11:43:01 Transaction Type : RESPONSE +11:43:01 Received From : +11:43:01 ============================================================================ +11:43:01 FNo. Len. Field Value +11:43:01 ============================================================================ +11:43:01 [ 1] [ 4] [0210] +11:43:01 [ 2] [ 16] [6213545000679245] +11:43:01 [ 3] [ 6] [010000] +11:43:01 [ 4] [ 12] [000030000000] +11:43:01 [ 7] [ 10] [0320115047] +11:43:01 [ 11] [ 6] [168918] +11:43:01 [ 12] [ 6] [115047] +11:43:01 [ 13] [ 4] [0320] +11:43:01 [ 15] [ 4] [0320] +11:43:01 [ 18] [ 4] [6011] +11:43:01 [ 32] [ 6] [220699] +11:43:01 [ 35] [ 32] [6213545000679245=491212017924663] +11:43:01 [ 37] [ 12] [507900026334] +11:43:01 [ 38] [ 6] [467853] +11:43:01 [ 39] [ 2] [00] +11:43:01 [ 41] [ 8] [01000200] +11:43:01 [ 49] [ 3] [418] +11:43:01 [ 54] [ 40] [0001418C0000369480600002418C000036948060] +11:43:01 ============================================================================ +11:43:01 Sending to : +11:43:01 ============================================================================ +11:43:01 + + +waiting on router queue for slot.... +11:43:02 ============================================================================ +11:43:02 Slot Id : <358> +11:43:02 Transaction Type : RESPONSE +11:43:02 Received From : +11:43:02 ============================================================================ +11:43:02 FNo. Len. Field Value +11:43:02 ============================================================================ +11:43:02 [ 1] [ 4] [0210] +11:43:02 [ 2] [ 16] [1808930300000627] +11:43:02 [ 3] [ 6] [010000] +11:43:02 [ 4] [ 12] [000100000000] +11:43:02 [ 6] [ 12] [000100000000] +11:43:02 [ 7] [ 10] [0320114252] +11:43:02 [ 11] [ 6] [733839] +11:43:02 [ 12] [ 6] [114252] +11:43:02 [ 13] [ 4] [0320] +11:43:02 [ 18] [ 4] [6011] +11:43:02 [ 19] [ 3] [418] +11:43:02 [ 22] [ 3] [021] +11:43:02 [ 32] [ 6] [621354] +11:43:02 [ 35] [ 27] [1808930300000627=1803500441] +11:43:02 [ 37] [ 12] [507903505410] +11:43:02 [ 38] [ 6] [733839] +11:43:02 [ 39] [ 2] [00] +11:43:02 [ 41] [ 8] [09000700] +11:43:02 [ 49] [ 3] [418] +11:43:02 [ 52] [ 16] [8C05AC738B091252] +11:43:02 [ 54] [ 20] [1001418C000810873000] +11:43:02 ============================================================================ +11:43:02 Sending to : +11:43:02 ============================================================================ +11:43:02 + + +waiting on router queue for slot.... +11:43:02 ============================================================================ +11:43:02 Slot Id : <363> +11:43:02 Transaction Type : RESPONSE +11:43:02 Received From : +11:43:02 ============================================================================ +11:43:02 FNo. Len. Field Value +11:43:02 ============================================================================ +11:43:02 [ 1] [ 4] [0210] +11:43:02 [ 2] [ 16] [6213545000679245] +11:43:02 [ 3] [ 6] [010000] +11:43:02 [ 4] [ 12] [000030000000] +11:43:02 [ 7] [ 10] [0320115047] +11:43:02 [ 11] [ 6] [168918] +11:43:02 [ 12] [ 6] [115047] +11:43:02 [ 13] [ 4] [0320] +11:43:02 [ 15] [ 4] [0320] +11:43:02 [ 18] [ 4] [6011] +11:43:02 [ 32] [ 6] [220699] +11:43:02 [ 35] [ 32] [6213545000679245=491212017924663] +11:43:02 [ 37] [ 12] [507900026334] +11:43:02 [ 38] [ 6] [467853] +11:43:02 [ 39] [ 2] [00] +11:43:02 [ 41] [ 8] [01000200] +11:43:02 [ 49] [ 3] [418] +11:43:02 [ 54] [ 40] [0001418C0000369480600002418C000036948060] +11:43:02 ============================================================================ +11:43:02 Calculate Source COMM Id = 1 +11:43:02 ============================================================================ +11:43:02 + + +waiting on router queue for slot.... +11:43:04 ============================================================================ +11:43:04 Slot Id : <358> +11:43:04 Transaction Type : RESPONSE +11:43:04 Received From : +11:43:04 ============================================================================ +11:43:04 FNo. Len. Field Value +11:43:04 ============================================================================ +11:43:04 [ 1] [ 4] [0210] +11:43:04 [ 2] [ 16] [1808930300000627] +11:43:04 [ 3] [ 6] [010000] +11:43:04 [ 4] [ 12] [000100000000] +11:43:04 [ 6] [ 12] [000100000000] +11:43:04 [ 7] [ 10] [0320114252] +11:43:04 [ 11] [ 6] [733839] +11:43:04 [ 12] [ 6] [114252] +11:43:04 [ 13] [ 4] [0320] +11:43:04 [ 18] [ 4] [6011] +11:43:04 [ 19] [ 3] [418] +11:43:04 [ 22] [ 3] [021] +11:43:04 [ 32] [ 6] [621354] +11:43:04 [ 35] [ 27] [1808930300000627=1803500441] +11:43:04 [ 37] [ 12] [507903505410] +11:43:04 [ 38] [ 6] [733839] +11:43:04 [ 39] [ 2] [00] +11:43:04 [ 41] [ 8] [09000700] +11:43:04 [ 49] [ 3] [418] +11:43:04 [ 52] [ 16] [8C05AC738B091252] +11:43:04 [ 54] [ 20] [1001418C000810873000] +11:43:04 ============================================================================ +11:43:04 Calculate Source COMM Id = 0 +11:43:04 ============================================================================ +11:43:04 + + +waiting on router queue for slot.... +11:43:10 ============================================================================ +11:43:10 Slot Id : <370> +11:43:10 Transaction Type : REQUEST +11:43:10 Received From : +11:43:10 ============================================================================ +11:43:10 FNo. Len. Field Value +11:43:10 ============================================================================ +11:43:10 [ 1] [ 4] [0800] +11:43:10 [ 7] [ 10] [0320044218] +11:43:10 [ 11] [ 6] [156146] +11:43:10 [ 70] [ 3] [301] +11:43:10 ============================================================================ +11:43:10 + + +waiting on router queue for slot.... +11:43:10 Sending to : +11:43:10 ============================================================================ +11:43:10 ============================================================================ +11:43:10 Slot Id : <370> +11:43:10 Transaction Type : RESPONSE +11:43:10 Received From : +11:43:10 ============================================================================ +11:43:10 FNo. Len. Field Value +11:43:10 ============================================================================ +11:43:10 [ 1] [ 4] [0810] +11:43:10 [ 7] [ 10] [0320044218] +11:43:10 [ 11] [ 6] [156146] +11:43:10 [ 39] [ 2] [00] +11:43:10 [ 70] [ 3] [301] +11:43:10 ============================================================================ +11:43:10 Calculate Source COMM Id = 2 +11:43:10 ============================================================================ +11:43:10 + + +waiting on router queue for slot.... +11:43:18 ============================================================================ +11:43:18 Slot Id : <360> +11:43:18 Transaction Type : REQUEST +11:43:18 Received From : +11:43:18 ============================================================================ +11:43:18 FNo. Len. Field Value +11:43:18 ============================================================================ +11:43:18 [ 1] [ 4] [0800] +11:43:18 [ 2] [ 5] [02531] +11:43:18 [ 3] [ 6] [579118] +11:43:18 [ 7] [ 10] [0320044318] +11:43:18 [ 11] [ 6] [807092] +11:43:18 [ 15] [ 10] [0320044318] +11:43:18 [ 37] [ 11] [57911807092] +11:43:18 [ 70] [ 3] [001] +11:43:18 ============================================================================ +11:43:18 + + +waiting on router queue for slot.... +11:43:18 ============================================================================ +11:43:18 Slot Id : <360> +11:43:18 Transaction Type : RESPONSE +11:43:18 Received From : +11:43:18 ============================================================================ +11:43:18 FNo. Len. Field Value +11:43:18 ============================================================================ +11:43:18 [ 1] [ 4] [0810] +11:43:18 [ 7] [ 10] [0320044318] +11:43:18 [ 11] [ 6] [807092] +11:43:18 [ 15] [ 4] [0320] +11:43:18 [ 37] [ 12] [57911807092] +11:43:18 [ 39] [ 2] [00] +11:43:18 [ 70] [ 3] [001] +11:43:18 ============================================================================ +11:43:18 Sending to : +11:43:18 ============================================================================ +11:43:18 + + +waiting on router queue for slot.... +11:43:19 ============================================================================ +11:43:19 Slot Id : <338> +11:43:19 Transaction Type : REQUEST +11:43:19 Received From : +11:43:19 ============================================================================ +11:43:19 FNo. Len. Field Value +11:43:19 ============================================================================ +11:43:19 [ 1] [ 4] [0200] +11:43:19 [ 2] [ 16] [6213545000077457] +11:43:19 [ 3] [ 6] [011000] +11:43:19 [ 4] [ 12] [000015000000] +11:43:19 [ 7] [ 10] [0320044226] +11:43:19 [ 11] [ 6] [268676] +11:43:19 [ 12] [ 6] [114226] +11:43:19 [ 13] [ 4] [0320] +11:43:19 [ 14] [ 4] [4912] +11:43:19 [ 15] [ 4] [0320] +11:43:19 [ 18] [ 4] [6011] +11:43:19 [ 19] [ 3] [418] +11:43:19 [ 22] [ 3] [021] +11:43:19 [ 25] [ 2] [01] +11:43:19 [ 28] [ 9] [D00002000] +11:43:19 [ 32] [ 6] [180893] +11:43:19 [ 35] [ 32] [6213545000077457=491212017745184] +11:43:19 [ 37] [ 12] [507904268676] +11:43:19 [ 41] [ 8] [0112CPBR] +11:43:19 [ 42] [ 15] [999999 ] +11:43:19 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:43:19 [ 49] [ 3] [418] +11:43:19 [ 52] [ 16] [84CE322763A07D80] +11:43:19 ============================================================================ +11:43:19 + + +waiting on router queue for slot.... +11:43:19 Sending to : +11:43:19 ============================================================================ +11:43:19 Sending to : +11:43:19 ============================================================================ +11:43:19 ============================================================================ +11:43:19 Slot Id : <338> +11:43:19 Transaction Type : REQUEST +11:43:19 Received From : +11:43:19 ============================================================================ +11:43:19 FNo. Len. Field Value +11:43:19 ============================================================================ +11:43:19 [ 1] [ 4] [0200] +11:43:19 [ 2] [ 16] [6213545000077457] +11:43:19 [ 3] [ 6] [011000] +11:43:19 [ 4] [ 12] [000015000000] +11:43:19 [ 7] [ 10] [0320044226] +11:43:19 [ 11] [ 6] [268676] +11:43:19 [ 12] [ 6] [114226] +11:43:19 [ 13] [ 4] [0320] +11:43:19 [ 14] [ 4] [4912] +11:43:19 [ 15] [ 4] [0320] +11:43:19 [ 18] [ 4] [6011] +11:43:19 [ 19] [ 3] [418] +11:43:19 [ 22] [ 3] [021] +11:43:19 [ 25] [ 2] [01] +11:43:19 [ 28] [ 9] [D00002000] +11:43:19 [ 32] [ 6] [180893] +11:43:19 [ 35] [ 32] [6213545000077457=491212017745184] +11:43:19 [ 37] [ 12] [507904268676] +11:43:19 [ 41] [ 8] [0112CPBR] +11:43:19 [ 42] [ 15] [999999 ] +11:43:19 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:43:19 [ 49] [ 3] [418] +11:43:19 [ 52] [ 16] [84CE322763A07D80] +11:43:19 ============================================================================ +11:43:19 + + +waiting on router queue for slot.... +11:43:19 Sending to : +11:43:19 ============================================================================ +11:43:19 ============================================================================ +11:43:19 Slot Id : <338> +11:43:19 Transaction Type : REQUEST +11:43:19 Received From : +11:43:19 ============================================================================ +11:43:19 FNo. Len. Field Value +11:43:19 ============================================================================ +11:43:19 [ 1] [ 4] [0200] +11:43:19 [ 2] [ 16] [6213545000077457] +11:43:19 [ 3] [ 6] [011000] +11:43:19 [ 4] [ 12] [000015000000] +11:43:19 [ 7] [ 10] [0320044226] +11:43:19 [ 11] [ 6] [268676] +11:43:19 [ 12] [ 6] [114226] +11:43:19 [ 13] [ 4] [0320] +11:43:19 [ 14] [ 4] [4912] +11:43:19 [ 15] [ 4] [0320] +11:43:19 [ 18] [ 4] [6011] +11:43:19 [ 19] [ 3] [418] +11:43:19 [ 22] [ 3] [021] +11:43:19 [ 25] [ 2] [01] +11:43:19 [ 28] [ 9] [D00002000] +11:43:19 [ 32] [ 6] [180893] +11:43:19 [ 35] [ 32] [6213545000077457=491212017745184] +11:43:19 [ 37] [ 12] [507904268676] +11:43:19 [ 41] [ 8] [0112CPBR] +11:43:19 [ 42] [ 15] [999999 ] +11:43:19 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:43:19 [ 49] [ 3] [418] +11:43:19 [ 52] [ 16] [21D50914E847224B] +11:43:19 ============================================================================ +11:43:19 + + +waiting on router queue for slot.... +11:43:19 Sending to : <0> +11:43:19 ============================================================================ +11:43:19 ============================================================================ +11:43:19 Slot Id : <338> +11:43:19 Transaction Type : RESPONSE +11:43:19 Received From : +11:43:19 ============================================================================ +11:43:19 FNo. Len. Field Value +11:43:19 ============================================================================ +11:43:19 [ 1] [ 4] [0210] +11:43:19 [ 2] [ 16] [6213545000077457] +11:43:19 [ 3] [ 6] [011000] +11:43:19 [ 4] [ 12] [000015000000] +11:43:19 [ 7] [ 10] [0320044226] +11:43:19 [ 11] [ 6] [268676] +11:43:19 [ 12] [ 6] [114226] +11:43:19 [ 13] [ 4] [0320] +11:43:19 [ 15] [ 4] [0320] +11:43:19 [ 18] [ 4] [6011] +11:43:19 [ 19] [ 3] [418] +11:43:19 [ 32] [ 6] [180893] +11:43:19 [ 35] [ 32] [6213545000077457=491212017745184] +11:43:19 [ 37] [ 12] [507904268676] +11:43:19 [ 38] [ 6] [268676] +11:43:19 [ 39] [ 2] [51] +11:43:19 [ 41] [ 8] [0112CPBR] +11:43:19 [ 49] [ 3] [418] +11:43:19 [ 54] [ 40] [1001418C0000200976511002418C000020097651] +11:43:19 ============================================================================ +11:43:19 Sending to : +11:43:19 ============================================================================ +11:43:19 + + +waiting on router queue for slot.... +11:43:20 ============================================================================ +11:43:20 Slot Id : <354> +11:43:20 Transaction Type : REQUEST +11:43:20 Received From : +11:43:20 ============================================================================ +11:43:20 FNo. Len. Field Value +11:43:20 ============================================================================ +11:43:20 [ 1] [ 4] [0200] +11:43:20 [ 2] [ 16] [6213541000320542] +11:43:20 [ 3] [ 6] [010000] +11:43:20 [ 4] [ 12] [000100000000] +11:43:20 [ 7] [ 10] [0320044228] +11:43:20 [ 11] [ 6] [268677] +11:43:20 [ 12] [ 6] [114228] +11:43:20 [ 13] [ 4] [0320] +11:43:20 [ 14] [ 4] [4912] +11:43:20 [ 15] [ 4] [0320] +11:43:20 [ 18] [ 4] [6011] +11:43:20 [ 19] [ 3] [418] +11:43:20 [ 22] [ 3] [021] +11:43:20 [ 25] [ 2] [01] +11:43:20 [ 28] [ 9] [D00002000] +11:43:20 [ 32] [ 6] [180893] +11:43:20 [ 35] [ 32] [6213541000320542=491212012054325] +11:43:20 [ 37] [ 12] [507904268677] +11:43:20 [ 41] [ 8] [0324BKDT] +11:43:20 [ 42] [ 15] [999999 ] +11:43:20 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:43:20 [ 49] [ 3] [418] +11:43:20 [ 52] [ 16] [CF8B0EB5B4436A33] +11:43:20 ============================================================================ +11:43:20 + + +waiting on router queue for slot.... +11:43:20 Sending to : +11:43:20 ============================================================================ +11:43:20 Sending to : +11:43:20 ============================================================================ +11:43:20 ============================================================================ +11:43:20 Slot Id : <379> +11:43:20 Transaction Type : REQUEST +11:43:20 Received From : +11:43:20 ============================================================================ +11:43:20 FNo. Len. Field Value +11:43:20 ============================================================================ +11:43:20 [ 0] [ 4] [0420] +11:43:20 [ 1] [ 4] [0420] +11:43:20 [ 2] [ 16] [6213544001621959] +11:43:20 [ 3] [ 6] [010000] +11:43:20 [ 4] [ 12] [000100000000] +11:43:20 [ 6] [ 12] [000100000000] +11:43:20 [ 7] [ 10] [0320113909] +11:43:20 [ 11] [ 6] [941977] +11:43:20 [ 12] [ 6] [113909] +11:43:20 [ 13] [ 4] [0320] +11:43:20 [ 15] [ 4] [0320] +11:43:20 [ 18] [ 4] [6011] +11:43:20 [ 19] [ 3] [418] +11:43:20 [ 22] [ 3] [021] +11:43:20 [ 25] [ 2] [01] +11:43:20 [ 28] [ 9] [D00002000] +11:43:20 [ 32] [ 6] [668899] +11:43:20 [ 35] [ 32] [6213544001621959=491212012195983] +11:43:20 [ 37] [ 12] [507900270933] +11:43:20 [ 41] [ 8] [03010004] +11:43:20 [ 42] [ 15] [APT ] +11:43:20 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:43:20 [ 49] [ 3] [418] +11:43:20 [ 52] [ 16] [3E185E491A64F264] +11:43:20 ============================================================================ +11:43:20 + + +waiting on router queue for slot.... +11:43:21 ============================================================================ +11:43:21 Slot Id : <354> +11:43:21 Transaction Type : REQUEST +11:43:21 Received From : +11:43:21 ============================================================================ +11:43:21 FNo. Len. Field Value +11:43:21 ============================================================================ +11:43:21 [ 1] [ 4] [0200] +11:43:21 [ 2] [ 16] [6213541000320542] +11:43:21 [ 3] [ 6] [010000] +11:43:21 [ 4] [ 12] [000100000000] +11:43:21 [ 7] [ 10] [0320044228] +11:43:21 [ 11] [ 6] [268677] +11:43:21 [ 12] [ 6] [114228] +11:43:21 [ 13] [ 4] [0320] +11:43:21 [ 14] [ 4] [4912] +11:43:21 [ 15] [ 4] [0320] +11:43:21 [ 18] [ 4] [6011] +11:43:21 [ 19] [ 3] [418] +11:43:21 [ 22] [ 3] [021] +11:43:21 [ 25] [ 2] [01] +11:43:21 [ 28] [ 9] [D00002000] +11:43:21 [ 32] [ 6] [180893] +11:43:21 [ 35] [ 32] [6213541000320542=491212012054325] +11:43:21 [ 37] [ 12] [507904268677] +11:43:21 [ 41] [ 8] [0324BKDT] +11:43:21 [ 42] [ 15] [999999 ] +11:43:21 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:43:21 [ 49] [ 3] [418] +11:43:21 [ 52] [ 16] [CF8B0EB5B4436A33] +11:43:21 ============================================================================ +11:43:21 + + +waiting on router queue for slot.... +11:43:21 Sending to : +11:43:21 ============================================================================ +11:43:21 ============================================================================ +11:43:21 Slot Id : <354> +11:43:21 Transaction Type : REQUEST +11:43:21 Received From : +11:43:21 ============================================================================ +11:43:21 FNo. Len. Field Value +11:43:21 ============================================================================ +11:43:21 [ 1] [ 4] [0200] +11:43:21 [ 2] [ 16] [6213541000320542] +11:43:21 [ 3] [ 6] [010000] +11:43:21 [ 4] [ 12] [000100000000] +11:43:21 [ 7] [ 10] [0320044228] +11:43:21 [ 11] [ 6] [268677] +11:43:21 [ 12] [ 6] [114228] +11:43:21 [ 13] [ 4] [0320] +11:43:21 [ 14] [ 4] [4912] +11:43:21 [ 15] [ 4] [0320] +11:43:21 [ 18] [ 4] [6011] +11:43:21 [ 19] [ 3] [418] +11:43:21 [ 22] [ 3] [021] +11:43:21 [ 25] [ 2] [01] +11:43:21 [ 28] [ 9] [D00002000] +11:43:21 [ 32] [ 6] [180893] +11:43:21 [ 35] [ 32] [6213541000320542=491212012054325] +11:43:21 [ 37] [ 12] [507904268677] +11:43:21 [ 41] [ 8] [0324BKDT] +11:43:21 [ 42] [ 15] [999999 ] +11:43:21 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:43:21 [ 49] [ 3] [418] +11:43:21 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:43:21 ============================================================================ +11:43:21 + + +waiting on router queue for slot.... +11:43:21 Sending to : <0> +11:43:21 ============================================================================ +11:43:21 ============================================================================ +11:43:21 Slot Id : <379> +11:43:21 Transaction Type : RESPONSE +11:43:21 Received From : +11:43:21 ============================================================================ +11:43:21 FNo. Len. Field Value +11:43:21 ============================================================================ +11:43:21 [ 1] [ 4] [0430] +11:43:21 [ 2] [ 16] [6213544001621959] +11:43:21 [ 3] [ 6] [010000] +11:43:21 [ 4] [ 12] [000100000000] +11:43:21 [ 7] [ 10] [0320113909] +11:43:21 [ 11] [ 6] [941977] +11:43:21 [ 19] [ 3] [418] +11:43:21 [ 32] [ 6] [668899] +11:43:21 [ 35] [ 32] [6213544001621959=491212012195983] +11:43:21 [ 37] [ 12] [507900270933] +11:43:21 [ 39] [ 2] [00] +11:43:21 [ 41] [ 8] [03010004] +11:43:21 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:43:21 [ 49] [ 3] [418] +11:43:21 [ 90] [ 42] [020094197703201139090000066889900000000000] +11:43:21 ============================================================================ +11:43:21 Successfully send the slot [379] To REVERSAL Process +11:43:21 + + +waiting on router queue for slot.... +11:43:21 ============================================================================ +11:43:21 Slot Id : <338> +11:43:21 Transaction Type : RESPONSE +11:43:21 Received From : +11:43:21 ============================================================================ +11:43:21 FNo. Len. Field Value +11:43:21 ============================================================================ +11:43:21 [ 1] [ 4] [0210] +11:43:21 [ 2] [ 16] [6213545000077457] +11:43:21 [ 3] [ 6] [011000] +11:43:21 [ 4] [ 12] [000015000000] +11:43:21 [ 7] [ 10] [0320044226] +11:43:21 [ 11] [ 6] [268676] +11:43:21 [ 12] [ 6] [114226] +11:43:21 [ 13] [ 4] [0320] +11:43:21 [ 15] [ 4] [0320] +11:43:21 [ 18] [ 4] [6011] +11:43:21 [ 19] [ 3] [418] +11:43:21 [ 32] [ 6] [180893] +11:43:21 [ 35] [ 32] [6213545000077457=491212017745184] +11:43:21 [ 37] [ 12] [507904268676] +11:43:21 [ 38] [ 6] [268676] +11:43:21 [ 39] [ 2] [51] +11:43:21 [ 41] [ 8] [0112CPBR] +11:43:21 [ 49] [ 3] [418] +11:43:21 [ 54] [ 40] [1001418C0000200976511002418C000020097651] +11:43:21 ============================================================================ +11:43:21 Calculate Source COMM Id = 2 +11:43:21 ============================================================================ +11:43:21 + + +waiting on router queue for slot.... +11:43:21 ============================================================================ +11:43:21 Slot Id : <369> +11:43:21 Transaction Type : REQUEST +11:43:21 Received From : +11:43:21 ============================================================================ +11:43:21 FNo. Len. Field Value +11:43:21 ============================================================================ +11:43:21 [ 1] [ 4] [0800] +11:43:21 [ 7] [ 10] [0320044228] +11:43:21 [ 11] [ 6] [156147] +11:43:21 [ 70] [ 3] [301] +11:43:21 ============================================================================ +11:43:21 + + +waiting on router queue for slot.... +11:43:21 Sending to : +11:43:21 ============================================================================ +11:43:21 ============================================================================ +11:43:21 Slot Id : <369> +11:43:21 Transaction Type : RESPONSE +11:43:21 Received From : +11:43:21 ============================================================================ +11:43:21 FNo. Len. Field Value +11:43:21 ============================================================================ +11:43:21 [ 1] [ 4] [0810] +11:43:21 [ 7] [ 10] [0320044228] +11:43:21 [ 11] [ 6] [156147] +11:43:21 [ 39] [ 2] [00] +11:43:21 [ 70] [ 3] [301] +11:43:21 ============================================================================ +11:43:21 Calculate Source COMM Id = 2 +11:43:21 ============================================================================ +11:43:21 + + +waiting on router queue for slot.... +11:43:21 ============================================================================ +11:43:21 Slot Id : <354> +11:43:21 Transaction Type : RESPONSE +11:43:21 Received From : +11:43:21 ============================================================================ +11:43:21 FNo. Len. Field Value +11:43:21 ============================================================================ +11:43:21 [ 1] [ 4] [0210] +11:43:21 [ 2] [ 16] [6213541000320542] +11:43:21 [ 3] [ 6] [010000] +11:43:21 [ 4] [ 12] [000100000000] +11:43:21 [ 7] [ 10] [0320044228] +11:43:21 [ 11] [ 6] [268677] +11:43:21 [ 12] [ 6] [114228] +11:43:21 [ 13] [ 4] [0320] +11:43:21 [ 15] [ 4] [0320] +11:43:21 [ 18] [ 4] [6011] +11:43:21 [ 19] [ 3] [418] +11:43:21 [ 32] [ 6] [180893] +11:43:21 [ 35] [ 32] [6213541000320542=491212012054325] +11:43:21 [ 37] [ 12] [507904268677] +11:43:21 [ 38] [ 6] [844654] +11:43:21 [ 39] [ 2] [00] +11:43:21 [ 41] [ 8] [0324BKDT] +11:43:21 [ 49] [ 3] [418] +11:43:21 [ 54] [ 40] [0001418C0007892349510002418C000789234951] +11:43:21 ============================================================================ +11:43:21 Sending to : +11:43:21 ============================================================================ +11:43:21 + + +waiting on router queue for slot.... +11:43:23 ============================================================================ +11:43:23 Slot Id : <354> +11:43:23 Transaction Type : RESPONSE +11:43:23 Received From : +11:43:23 ============================================================================ +11:43:23 FNo. Len. Field Value +11:43:23 ============================================================================ +11:43:23 [ 1] [ 4] [0210] +11:43:23 [ 2] [ 16] [6213541000320542] +11:43:23 [ 3] [ 6] [010000] +11:43:23 [ 4] [ 12] [000100000000] +11:43:23 [ 7] [ 10] [0320044228] +11:43:23 [ 11] [ 6] [268677] +11:43:23 [ 12] [ 6] [114228] +11:43:23 [ 13] [ 4] [0320] +11:43:23 [ 15] [ 4] [0320] +11:43:23 [ 18] [ 4] [6011] +11:43:23 [ 19] [ 3] [418] +11:43:23 [ 32] [ 6] [180893] +11:43:23 [ 35] [ 32] [6213541000320542=491212012054325] +11:43:23 [ 37] [ 12] [507904268677] +11:43:23 [ 38] [ 6] [844654] +11:43:23 [ 39] [ 2] [00] +11:43:23 [ 41] [ 8] [0324BKDT] +11:43:23 [ 49] [ 3] [418] +11:43:23 [ 54] [ 40] [0001418C0007892349510002418C000789234951] +11:43:23 ============================================================================ +11:43:23 Calculate Source COMM Id = 2 +11:43:23 ============================================================================ +11:43:23 + + +waiting on router queue for slot.... +11:43:30 ============================================================================ +11:43:30 Slot Id : <396> +11:43:30 Transaction Type : REQUEST +11:43:30 Received From : +11:43:30 ============================================================================ +11:43:30 FNo. Len. Field Value +11:43:30 ============================================================================ +11:43:30 [ 1] [ 4] [0200] +11:43:30 [ 2] [ 16] [6213544002134820] +11:43:30 [ 3] [ 6] [010000] +11:43:30 [ 4] [ 12] [000010000000] +11:43:30 [ 7] [ 10] [0320114121] +11:43:30 [ 11] [ 6] [942092] +11:43:30 [ 12] [ 6] [114121] +11:43:30 [ 13] [ 4] [0320] +11:43:30 [ 15] [ 4] [0320] +11:43:30 [ 18] [ 4] [6011] +11:43:30 [ 19] [ 3] [418] +11:43:30 [ 22] [ 3] [021] +11:43:30 [ 25] [ 2] [01] +11:43:30 [ 28] [ 9] [D00002000] +11:43:30 [ 32] [ 6] [668899] +11:43:30 [ 35] [ 32] [6213544002134820=491212013482702] +11:43:30 [ 37] [ 12] [507902093296] +11:43:30 [ 41] [ 8] [03020021] +11:43:30 [ 42] [ 15] [APT ] +11:43:30 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +11:43:30 [ 49] [ 3] [418] +11:43:30 [ 52] [ 16] [9D5A5C078CC50495] +11:43:30 ============================================================================ +11:43:30 + + +waiting on router queue for slot.... +11:43:30 Sending to : +11:43:30 ============================================================================ +11:43:30 Sending to : +11:43:30 ============================================================================ +11:43:30 ============================================================================ +11:43:30 Slot Id : <396> +11:43:30 Transaction Type : REQUEST +11:43:30 Received From : +11:43:30 ============================================================================ +11:43:30 FNo. Len. Field Value +11:43:30 ============================================================================ +11:43:30 [ 1] [ 4] [0200] +11:43:30 [ 2] [ 16] [6213544002134820] +11:43:30 [ 3] [ 6] [010000] +11:43:30 [ 4] [ 12] [000010000000] +11:43:30 [ 7] [ 10] [0320114121] +11:43:30 [ 11] [ 6] [942092] +11:43:30 [ 12] [ 6] [114121] +11:43:30 [ 13] [ 4] [0320] +11:43:30 [ 15] [ 4] [0320] +11:43:30 [ 18] [ 4] [6011] +11:43:30 [ 19] [ 3] [418] +11:43:30 [ 22] [ 3] [021] +11:43:30 [ 25] [ 2] [01] +11:43:30 [ 28] [ 9] [D00002000] +11:43:30 [ 32] [ 6] [668899] +11:43:30 [ 35] [ 32] [6213544002134820=491212013482702] +11:43:30 [ 37] [ 12] [507902093296] +11:43:30 [ 41] [ 8] [03020021] +11:43:30 [ 42] [ 15] [APT ] +11:43:30 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +11:43:30 [ 49] [ 3] [418] +11:43:30 [ 52] [ 16] [9D5A5C078CC50495] +11:43:30 ============================================================================ +11:43:30 + + +waiting on router queue for slot.... +11:43:30 Sending to : +11:43:30 ============================================================================ +11:43:30 ============================================================================ +11:43:30 Slot Id : <396> +11:43:30 Transaction Type : REQUEST +11:43:30 Received From : +11:43:30 ============================================================================ +11:43:30 FNo. Len. Field Value +11:43:30 ============================================================================ +11:43:30 [ 1] [ 4] [0200] +11:43:30 [ 2] [ 16] [6213544002134820] +11:43:30 [ 3] [ 6] [010000] +11:43:30 [ 4] [ 12] [000010000000] +11:43:30 [ 7] [ 10] [0320114121] +11:43:30 [ 11] [ 6] [942092] +11:43:30 [ 12] [ 6] [114121] +11:43:30 [ 13] [ 4] [0320] +11:43:30 [ 15] [ 4] [0320] +11:43:30 [ 18] [ 4] [6011] +11:43:30 [ 19] [ 3] [418] +11:43:30 [ 22] [ 3] [021] +11:43:30 [ 25] [ 2] [01] +11:43:30 [ 28] [ 9] [D00002000] +11:43:30 [ 32] [ 6] [668899] +11:43:30 [ 35] [ 32] [6213544002134820=491212013482702] +11:43:30 [ 37] [ 12] [507902093296] +11:43:30 [ 41] [ 8] [03020021] +11:43:30 [ 42] [ 15] [APT ] +11:43:30 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +11:43:30 [ 49] [ 3] [418] +11:43:30 [ 52] [ 16] [A66BAFC49E30645E] +11:43:30 ============================================================================ +11:43:30 + + +waiting on router queue for slot.... +11:43:30 Sending to : <0> +11:43:30 ============================================================================ +11:43:31 ============================================================================ +11:43:31 Slot Id : <351> +11:43:31 Transaction Type : REQUEST +11:43:31 Received From : +11:43:31 ============================================================================ +11:43:31 FNo. Len. Field Value +11:43:31 ============================================================================ +11:43:31 [ 1] [ 4] [0200] +11:43:31 [ 2] [ 16] [6213545000151369] +11:43:31 [ 3] [ 6] [010000] +11:43:31 [ 4] [ 12] [000100000000] +11:43:31 [ 7] [ 10] [0320044236] +11:43:31 [ 11] [ 6] [268679] +11:43:31 [ 12] [ 6] [114236] +11:43:31 [ 13] [ 4] [0320] +11:43:31 [ 14] [ 4] [4912] +11:43:31 [ 15] [ 4] [0320] +11:43:31 [ 18] [ 4] [6011] +11:43:31 [ 19] [ 3] [418] +11:43:31 [ 22] [ 3] [021] +11:43:31 [ 25] [ 2] [01] +11:43:31 [ 28] [ 9] [D00002000] +11:43:31 [ 32] [ 6] [180893] +11:43:31 [ 35] [ 32] [6213545000151369=491212015136228] +11:43:31 [ 37] [ 12] [507904268679] +11:43:31 [ 41] [ 8] [0221XKKM] +11:43:31 [ 42] [ 15] [999999 ] +11:43:31 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:43:31 [ 49] [ 3] [418] +11:43:31 [ 52] [ 16] [E9842753052AC8F6] +11:43:31 ============================================================================ +11:43:31 + + +waiting on router queue for slot.... +11:43:31 Sending to : +11:43:31 ============================================================================ +11:43:31 Sending to : +11:43:31 ============================================================================ +11:43:31 ============================================================================ +11:43:31 Slot Id : <396> +11:43:31 Transaction Type : RESPONSE +11:43:31 Received From : +11:43:31 ============================================================================ +11:43:31 FNo. Len. Field Value +11:43:31 ============================================================================ +11:43:31 [ 1] [ 4] [0210] +11:43:31 [ 2] [ 16] [6213544002134820] +11:43:31 [ 3] [ 6] [010000] +11:43:31 [ 4] [ 12] [000010000000] +11:43:31 [ 7] [ 10] [0320114121] +11:43:31 [ 11] [ 6] [942092] +11:43:31 [ 12] [ 6] [114121] +11:43:31 [ 13] [ 4] [0320] +11:43:31 [ 15] [ 4] [0320] +11:43:31 [ 18] [ 4] [6011] +11:43:31 [ 19] [ 3] [418] +11:43:31 [ 32] [ 6] [668899] +11:43:31 [ 35] [ 32] [6213544002134820=491212013482702] +11:43:31 [ 37] [ 12] [507902093296] +11:43:31 [ 38] [ 6] [413667] +11:43:31 [ 39] [ 2] [00] +11:43:31 [ 41] [ 8] [03020021] +11:43:31 [ 49] [ 3] [418] +11:43:31 [ 54] [ 40] [0001418C0000131976500002418C000013197650] +11:43:31 ============================================================================ +11:43:31 Sending to : +11:43:31 ============================================================================ +11:43:31 + + +waiting on router queue for slot.... +11:43:31 ============================================================================ +11:43:31 Slot Id : <351> +11:43:31 Transaction Type : REQUEST +11:43:31 Received From : +11:43:31 ============================================================================ +11:43:31 FNo. Len. Field Value +11:43:31 ============================================================================ +11:43:31 [ 1] [ 4] [0200] +11:43:31 [ 2] [ 16] [6213545000151369] +11:43:31 [ 3] [ 6] [010000] +11:43:31 [ 4] [ 12] [000100000000] +11:43:31 [ 7] [ 10] [0320044236] +11:43:31 [ 11] [ 6] [268679] +11:43:31 [ 12] [ 6] [114236] +11:43:31 [ 13] [ 4] [0320] +11:43:31 [ 14] [ 4] [4912] +11:43:31 [ 15] [ 4] [0320] +11:43:31 [ 18] [ 4] [6011] +11:43:31 [ 19] [ 3] [418] +11:43:31 [ 22] [ 3] [021] +11:43:31 [ 25] [ 2] [01] +11:43:31 [ 28] [ 9] [D00002000] +11:43:31 [ 32] [ 6] [180893] +11:43:31 [ 35] [ 32] [6213545000151369=491212015136228] +11:43:31 [ 37] [ 12] [507904268679] +11:43:31 [ 41] [ 8] [0221XKKM] +11:43:31 [ 42] [ 15] [999999 ] +11:43:31 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:43:31 [ 49] [ 3] [418] +11:43:31 [ 52] [ 16] [E9842753052AC8F6] +11:43:31 ============================================================================ +11:43:31 + + +waiting on router queue for slot.... +11:43:31 Sending to : +11:43:31 ============================================================================ +11:43:31 ============================================================================ +11:43:31 Slot Id : <351> +11:43:31 Transaction Type : REQUEST +11:43:31 Received From : +11:43:31 ============================================================================ +11:43:31 FNo. Len. Field Value +11:43:31 ============================================================================ +11:43:31 [ 1] [ 4] [0200] +11:43:31 [ 2] [ 16] [6213545000151369] +11:43:31 [ 3] [ 6] [010000] +11:43:31 [ 4] [ 12] [000100000000] +11:43:31 [ 7] [ 10] [0320044236] +11:43:31 [ 11] [ 6] [268679] +11:43:31 [ 12] [ 6] [114236] +11:43:31 [ 13] [ 4] [0320] +11:43:31 [ 14] [ 4] [4912] +11:43:31 [ 15] [ 4] [0320] +11:43:31 [ 18] [ 4] [6011] +11:43:31 [ 19] [ 3] [418] +11:43:31 [ 22] [ 3] [021] +11:43:31 [ 25] [ 2] [01] +11:43:31 [ 28] [ 9] [D00002000] +11:43:31 [ 32] [ 6] [180893] +11:43:31 [ 35] [ 32] [6213545000151369=491212015136228] +11:43:31 [ 37] [ 12] [507904268679] +11:43:31 [ 41] [ 8] [0221XKKM] +11:43:31 [ 42] [ 15] [999999 ] +11:43:31 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:43:31 [ 49] [ 3] [418] +11:43:31 [ 52] [ 16] [A3DA862E392F7A25] +11:43:31 ============================================================================ +11:43:31 + + +waiting on router queue for slot.... +11:43:31 Sending to : <0> +11:43:31 ============================================================================ +11:43:32 ============================================================================ +11:43:32 Slot Id : <351> +11:43:32 Transaction Type : RESPONSE +11:43:32 Received From : +11:43:32 ============================================================================ +11:43:32 FNo. Len. Field Value +11:43:32 ============================================================================ +11:43:32 [ 1] [ 4] [0210] +11:43:32 [ 2] [ 16] [6213545000151369] +11:43:32 [ 3] [ 6] [010000] +11:43:32 [ 4] [ 12] [000100000000] +11:43:32 [ 7] [ 10] [0320044236] +11:43:32 [ 11] [ 6] [268679] +11:43:32 [ 12] [ 6] [114236] +11:43:32 [ 13] [ 4] [0320] +11:43:32 [ 15] [ 4] [0320] +11:43:32 [ 18] [ 4] [6011] +11:43:32 [ 19] [ 3] [418] +11:43:32 [ 32] [ 6] [180893] +11:43:32 [ 35] [ 32] [6213545000151369=491212015136228] +11:43:32 [ 37] [ 12] [507904268679] +11:43:32 [ 38] [ 6] [274777] +11:43:32 [ 39] [ 2] [00] +11:43:32 [ 41] [ 8] [0221XKKM] +11:43:32 [ 49] [ 3] [418] +11:43:32 [ 54] [ 40] [0001418C0000406553480002418C000040655348] +11:43:32 ============================================================================ +11:43:32 Sending to : +11:43:32 ============================================================================ +11:43:32 + + +waiting on router queue for slot.... +11:43:32 ============================================================================ +11:43:32 Slot Id : <396> +11:43:32 Transaction Type : RESPONSE +11:43:32 Received From : +11:43:32 ============================================================================ +11:43:32 FNo. Len. Field Value +11:43:32 ============================================================================ +11:43:32 [ 1] [ 4] [0210] +11:43:32 [ 2] [ 16] [6213544002134820] +11:43:32 [ 3] [ 6] [010000] +11:43:32 [ 4] [ 12] [000010000000] +11:43:32 [ 7] [ 10] [0320114121] +11:43:32 [ 11] [ 6] [942092] +11:43:32 [ 12] [ 6] [114121] +11:43:32 [ 13] [ 4] [0320] +11:43:32 [ 15] [ 4] [0320] +11:43:32 [ 18] [ 4] [6011] +11:43:32 [ 19] [ 3] [418] +11:43:32 [ 32] [ 6] [668899] +11:43:32 [ 35] [ 32] [6213544002134820=491212013482702] +11:43:32 [ 37] [ 12] [507902093296] +11:43:32 [ 38] [ 6] [413667] +11:43:32 [ 39] [ 2] [00] +11:43:32 [ 41] [ 8] [03020021] +11:43:32 [ 49] [ 3] [418] +11:43:32 [ 54] [ 40] [0001418C0000131976500002418C000013197650] +11:43:32 ============================================================================ +11:43:32 Calculate Source COMM Id = 4 +11:43:32 ============================================================================ +11:43:32 + + +waiting on router queue for slot.... +11:43:34 ============================================================================ +11:43:34 Slot Id : <351> +11:43:34 Transaction Type : RESPONSE +11:43:34 Received From : +11:43:34 ============================================================================ +11:43:34 FNo. Len. Field Value +11:43:34 ============================================================================ +11:43:34 [ 1] [ 4] [0210] +11:43:34 [ 2] [ 16] [6213545000151369] +11:43:34 [ 3] [ 6] [010000] +11:43:34 [ 4] [ 12] [000100000000] +11:43:34 [ 7] [ 10] [0320044236] +11:43:34 [ 11] [ 6] [268679] +11:43:34 [ 12] [ 6] [114236] +11:43:34 [ 13] [ 4] [0320] +11:43:34 [ 15] [ 4] [0320] +11:43:34 [ 18] [ 4] [6011] +11:43:34 [ 19] [ 3] [418] +11:43:34 [ 32] [ 6] [180893] +11:43:34 [ 35] [ 32] [6213545000151369=491212015136228] +11:43:34 [ 37] [ 12] [507904268679] +11:43:34 [ 38] [ 6] [274777] +11:43:34 [ 39] [ 2] [00] +11:43:34 [ 41] [ 8] [0221XKKM] +11:43:34 [ 49] [ 3] [418] +11:43:34 [ 54] [ 40] [0001418C0000406553480002418C000040655348] +11:43:34 ============================================================================ +11:43:34 Calculate Source COMM Id = 2 +11:43:34 ============================================================================ +11:43:34 + + +waiting on router queue for slot.... +11:43:46 ============================================================================ +11:43:46 Slot Id : <389> +11:43:46 Transaction Type : REQUEST +11:43:46 Received From : +11:43:46 ============================================================================ +11:43:46 FNo. Len. Field Value +11:43:46 ============================================================================ +11:43:46 [ 1] [ 4] [0200] +11:43:46 [ 2] [ 16] [1808930600019301] +11:43:46 [ 3] [ 6] [011000] +11:43:46 [ 4] [ 12] [000100000000] +11:43:46 [ 7] [ 10] [0320114342] +11:43:46 [ 11] [ 6] [734074] +11:43:46 [ 12] [ 6] [114342] +11:43:46 [ 13] [ 4] [0320] +11:43:46 [ 15] [ 4] [0320] +11:43:46 [ 18] [ 4] [6011] +11:43:46 [ 22] [ 3] [900] +11:43:46 [ 25] [ 2] [02] +11:43:46 [ 28] [ 9] [D00002000] +11:43:46 [ 32] [ 6] [621354] +11:43:46 [ 35] [ 27] [1808930600019301=1803500363] +11:43:46 [ 37] [ 12] [507904334520] +11:43:46 [ 41] [ 8] [03003200] +11:43:46 [ 42] [ 15] [NATIVE ] +11:43:46 [ 43] [ 40] [SVN Technic College KaisonephomvLAO] +11:43:46 [ 49] [ 3] [418] +11:43:46 [ 52] [ 16] [62EA7598C54E92AC] +11:43:46 ============================================================================ +11:43:46 + + +waiting on router queue for slot.... +11:43:46 Sending to : +11:43:46 ============================================================================ +11:43:46 Sending to : +11:43:46 ============================================================================ +11:43:47 ============================================================================ +11:43:47 Slot Id : <389> +11:43:47 Transaction Type : REQUEST +11:43:47 Received From : +11:43:47 ============================================================================ +11:43:47 FNo. Len. Field Value +11:43:47 ============================================================================ +11:43:47 [ 1] [ 4] [0200] +11:43:47 [ 2] [ 16] [1808930600019301] +11:43:47 [ 3] [ 6] [011000] +11:43:47 [ 4] [ 12] [000100000000] +11:43:47 [ 7] [ 10] [0320114342] +11:43:47 [ 11] [ 6] [734074] +11:43:47 [ 12] [ 6] [114342] +11:43:47 [ 13] [ 4] [0320] +11:43:47 [ 15] [ 4] [0320] +11:43:47 [ 18] [ 4] [6011] +11:43:47 [ 22] [ 3] [900] +11:43:47 [ 25] [ 2] [02] +11:43:47 [ 28] [ 9] [D00002000] +11:43:47 [ 32] [ 6] [621354] +11:43:47 [ 35] [ 27] [1808930600019301=1803500363] +11:43:47 [ 37] [ 12] [507904334520] +11:43:47 [ 41] [ 8] [03003200] +11:43:47 [ 42] [ 15] [NATIVE ] +11:43:47 [ 43] [ 40] [SVN Technic College KaisonephomvLAO] +11:43:47 [ 49] [ 3] [418] +11:43:47 [ 52] [ 16] [62EA7598C54E92AC] +11:43:47 ============================================================================ +11:43:47 + + +waiting on router queue for slot.... +11:43:47 Sending to : +11:43:47 ============================================================================ +11:43:47 ============================================================================ +11:43:47 Slot Id : <389> +11:43:47 Transaction Type : REQUEST +11:43:47 Received From : +11:43:47 ============================================================================ +11:43:47 FNo. Len. Field Value +11:43:47 ============================================================================ +11:43:47 [ 1] [ 4] [0200] +11:43:47 [ 2] [ 16] [1808930600019301] +11:43:47 [ 3] [ 6] [011000] +11:43:47 [ 4] [ 12] [000100000000] +11:43:47 [ 7] [ 10] [0320114342] +11:43:47 [ 11] [ 6] [734074] +11:43:47 [ 12] [ 6] [114342] +11:43:47 [ 13] [ 4] [0320] +11:43:47 [ 15] [ 4] [0320] +11:43:47 [ 18] [ 4] [6011] +11:43:47 [ 22] [ 3] [900] +11:43:47 [ 25] [ 2] [02] +11:43:47 [ 28] [ 9] [D00002000] +11:43:47 [ 32] [ 6] [621354] +11:43:47 [ 35] [ 27] [1808930600019301=1803500363] +11:43:47 [ 37] [ 12] [507904334520] +11:43:47 [ 41] [ 8] [03003200] +11:43:47 [ 42] [ 15] [NATIVE ] +11:43:47 [ 43] [ 40] [SVN Technic College KaisonephomvLAO] +11:43:47 [ 49] [ 3] [418] +11:43:47 [ 52] [ 16] [20096A09E255907C] +11:43:47 ============================================================================ +11:43:47 + + +waiting on router queue for slot.... +11:43:47 Sending to : <2> +11:43:47 ============================================================================ +11:43:51 ============================================================================ +11:43:51 Slot Id : <389> +11:43:51 Transaction Type : RESPONSE +11:43:51 Received From : +11:43:51 ============================================================================ +11:43:51 FNo. Len. Field Value +11:43:51 ============================================================================ +11:43:51 [ 1] [ 4] [0210] +11:43:51 [ 2] [ 16] [1808930600019301] +11:43:51 [ 3] [ 6] [011000] +11:43:51 [ 4] [ 12] [000100000000] +11:43:51 [ 6] [ 12] [000100000000] +11:43:51 [ 7] [ 10] [0320114342] +11:43:51 [ 11] [ 6] [734074] +11:43:51 [ 12] [ 6] [114342] +11:43:51 [ 13] [ 4] [0320] +11:43:51 [ 18] [ 4] [6011] +11:43:51 [ 19] [ 3] [418] +11:43:51 [ 22] [ 3] [021] +11:43:51 [ 32] [ 6] [621354] +11:43:51 [ 35] [ 27] [1808930600019301=1803500363] +11:43:51 [ 37] [ 12] [507904334520] +11:43:51 [ 38] [ 6] [734074] +11:43:51 [ 39] [ 2] [00] +11:43:51 [ 41] [ 8] [03003200] +11:43:51 [ 49] [ 3] [418] +11:43:51 [ 52] [ 16] [20096A09E255907C] +11:43:51 [ 54] [ 20] [1001418C000086729800] +11:43:51 ============================================================================ +11:43:51 Sending to : +11:43:51 ============================================================================ +11:43:51 + + +waiting on router queue for slot.... +11:43:52 ============================================================================ +11:43:52 Slot Id : <390> +11:43:52 Transaction Type : REQUEST +11:43:52 Received From : +11:43:52 ============================================================================ +11:43:52 FNo. Len. Field Value +11:43:52 ============================================================================ +11:43:52 [ 1] [ 4] [0200] +11:43:52 [ 2] [ 16] [6213544002235056] +11:43:52 [ 3] [ 6] [302000] +11:43:52 [ 7] [ 10] [0320044259] +11:43:52 [ 11] [ 6] [268684] +11:43:52 [ 12] [ 6] [114259] +11:43:52 [ 13] [ 4] [0320] +11:43:52 [ 14] [ 4] [4912] +11:43:52 [ 15] [ 4] [0320] +11:43:52 [ 18] [ 4] [6011] +11:43:52 [ 19] [ 3] [418] +11:43:52 [ 22] [ 3] [021] +11:43:52 [ 25] [ 2] [01] +11:43:52 [ 32] [ 6] [180893] +11:43:52 [ 35] [ 32] [6213544002235056=491212013505625] +11:43:52 [ 37] [ 12] [507904268684] +11:43:52 [ 41] [ 8] [0344SVKV] +11:43:52 [ 42] [ 15] [999999 ] +11:43:52 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +11:43:52 [ 49] [ 3] [418] +11:43:52 [ 52] [ 16] [B17D9BB6769AC1B6] +11:43:52 ============================================================================ +11:43:52 + + +waiting on router queue for slot.... +11:43:52 Sending to : +11:43:52 ============================================================================ +11:43:52 Sending to : +11:43:52 ============================================================================ +11:43:52 ============================================================================ +11:43:52 Slot Id : <390> +11:43:52 Transaction Type : REQUEST +11:43:52 Received From : +11:43:52 ============================================================================ +11:43:52 FNo. Len. Field Value +11:43:52 ============================================================================ +11:43:52 [ 1] [ 4] [0200] +11:43:52 [ 2] [ 16] [6213544002235056] +11:43:52 [ 3] [ 6] [302000] +11:43:52 [ 7] [ 10] [0320044259] +11:43:52 [ 11] [ 6] [268684] +11:43:52 [ 12] [ 6] [114259] +11:43:52 [ 13] [ 4] [0320] +11:43:52 [ 14] [ 4] [4912] +11:43:52 [ 15] [ 4] [0320] +11:43:52 [ 18] [ 4] [6011] +11:43:52 [ 19] [ 3] [418] +11:43:52 [ 22] [ 3] [021] +11:43:52 [ 25] [ 2] [01] +11:43:52 [ 32] [ 6] [180893] +11:43:52 [ 35] [ 32] [6213544002235056=491212013505625] +11:43:52 [ 37] [ 12] [507904268684] +11:43:52 [ 41] [ 8] [0344SVKV] +11:43:52 [ 42] [ 15] [999999 ] +11:43:52 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +11:43:52 [ 49] [ 3] [418] +11:43:52 [ 52] [ 16] [B17D9BB6769AC1B6] +11:43:52 ============================================================================ +11:43:52 + + +waiting on router queue for slot.... +11:43:52 Sending to : +11:43:52 ============================================================================ +11:43:52 ============================================================================ +11:43:52 Slot Id : <390> +11:43:52 Transaction Type : REQUEST +11:43:52 Received From : +11:43:52 ============================================================================ +11:43:52 FNo. Len. Field Value +11:43:52 ============================================================================ +11:43:52 [ 1] [ 4] [0200] +11:43:52 [ 2] [ 16] [6213544002235056] +11:43:52 [ 3] [ 6] [302000] +11:43:52 [ 7] [ 10] [0320044259] +11:43:52 [ 11] [ 6] [268684] +11:43:52 [ 12] [ 6] [114259] +11:43:52 [ 13] [ 4] [0320] +11:43:52 [ 14] [ 4] [4912] +11:43:52 [ 15] [ 4] [0320] +11:43:52 [ 18] [ 4] [6011] +11:43:52 [ 19] [ 3] [418] +11:43:52 [ 22] [ 3] [021] +11:43:52 [ 25] [ 2] [01] +11:43:52 [ 32] [ 6] [180893] +11:43:52 [ 35] [ 32] [6213544002235056=491212013505625] +11:43:52 [ 37] [ 12] [507904268684] +11:43:52 [ 41] [ 8] [0344SVKV] +11:43:52 [ 42] [ 15] [999999 ] +11:43:52 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +11:43:52 [ 49] [ 3] [418] +11:43:52 [ 52] [ 16] [3514B32877D658E0] +11:43:52 ============================================================================ +11:43:52 + + +waiting on router queue for slot.... +11:43:52 Sending to : <0> +11:43:52 ============================================================================ +11:43:52 ============================================================================ +11:43:52 Slot Id : <390> +11:43:52 Transaction Type : RESPONSE +11:43:52 Received From : +11:43:52 ============================================================================ +11:43:52 FNo. Len. Field Value +11:43:52 ============================================================================ +11:43:52 [ 1] [ 4] [0210] +11:43:52 [ 2] [ 16] [6213544002235056] +11:43:52 [ 3] [ 6] [302000] +11:43:52 [ 4] [ 12] [000000000000] +11:43:52 [ 7] [ 10] [0320044259] +11:43:52 [ 11] [ 6] [268684] +11:43:52 [ 12] [ 6] [114259] +11:43:52 [ 13] [ 4] [0320] +11:43:52 [ 15] [ 4] [0320] +11:43:52 [ 18] [ 4] [6011] +11:43:52 [ 19] [ 3] [418] +11:43:52 [ 32] [ 6] [180893] +11:43:52 [ 35] [ 32] [6213544002235056=491212013505625] +11:43:52 [ 37] [ 12] [507904268684] +11:43:52 [ 38] [ 6] [311158] +11:43:52 [ 39] [ 2] [00] +11:43:52 [ 41] [ 8] [0344SVKV] +11:43:52 [ 49] [ 3] [418] +11:43:52 [ 54] [ 40] [2001418C0000050000002002418C000005000000] +11:43:52 ============================================================================ +11:43:52 Sending to : +11:43:52 ============================================================================ +11:43:52 + + +waiting on router queue for slot.... +11:43:52 ============================================================================ +11:43:52 Slot Id : <389> +11:43:52 Transaction Type : RESPONSE +11:43:52 Received From : +11:43:52 ============================================================================ +11:43:52 FNo. Len. Field Value +11:43:52 ============================================================================ +11:43:52 [ 1] [ 4] [0210] +11:43:52 [ 2] [ 16] [1808930600019301] +11:43:52 [ 3] [ 6] [011000] +11:43:52 [ 4] [ 12] [000100000000] +11:43:52 [ 6] [ 12] [000100000000] +11:43:52 [ 7] [ 10] [0320114342] +11:43:52 [ 11] [ 6] [734074] +11:43:52 [ 12] [ 6] [114342] +11:43:52 [ 13] [ 4] [0320] +11:43:52 [ 18] [ 4] [6011] +11:43:52 [ 19] [ 3] [418] +11:43:52 [ 22] [ 3] [021] +11:43:52 [ 32] [ 6] [621354] +11:43:52 [ 35] [ 27] [1808930600019301=1803500363] +11:43:52 [ 37] [ 12] [507904334520] +11:43:52 [ 38] [ 6] [734074] +11:43:52 [ 39] [ 2] [00] +11:43:52 [ 41] [ 8] [03003200] +11:43:52 [ 49] [ 3] [418] +11:43:52 [ 52] [ 16] [20096A09E255907C] +11:43:52 [ 54] [ 20] [1001418C000086729800] +11:43:52 ============================================================================ +11:43:52 Calculate Source COMM Id = 0 +11:43:52 ============================================================================ +11:43:52 + + +waiting on router queue for slot.... +11:43:54 ============================================================================ +11:43:54 Slot Id : <361> +11:43:54 Transaction Type : REQUEST +11:43:54 Received From : +11:43:54 ============================================================================ +11:43:54 FNo. Len. Field Value +11:43:54 ============================================================================ +11:43:54 [ 1] [ 4] [0200] +11:43:54 [ 2] [ 16] [6213544001621959] +11:43:54 [ 3] [ 6] [010000] +11:43:54 [ 4] [ 12] [000100000000] +11:43:54 [ 7] [ 10] [0320114145] +11:43:54 [ 11] [ 6] [942120] +11:43:54 [ 12] [ 6] [114145] +11:43:54 [ 13] [ 4] [0320] +11:43:54 [ 15] [ 4] [0320] +11:43:54 [ 18] [ 4] [6011] +11:43:54 [ 19] [ 3] [418] +11:43:54 [ 22] [ 3] [021] +11:43:54 [ 25] [ 2] [01] +11:43:54 [ 28] [ 9] [D00002000] +11:43:54 [ 32] [ 6] [668899] +11:43:54 [ 35] [ 32] [6213544001621959=491212012195983] +11:43:54 [ 37] [ 12] [507900270935] +11:43:54 [ 41] [ 8] [03010004] +11:43:54 [ 42] [ 15] [APT ] +11:43:54 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:43:54 [ 49] [ 3] [418] +11:43:54 [ 52] [ 16] [3E185E491A64F264] +11:43:54 ============================================================================ +11:43:54 + + +waiting on router queue for slot.... +11:43:54 Sending to : +11:43:54 ============================================================================ +11:43:54 Sending to : +11:43:54 ============================================================================ +11:43:54 ============================================================================ +11:43:54 Slot Id : <390> +11:43:54 Transaction Type : RESPONSE +11:43:54 Received From : +11:43:54 ============================================================================ +11:43:54 FNo. Len. Field Value +11:43:54 ============================================================================ +11:43:54 [ 1] [ 4] [0210] +11:43:54 [ 2] [ 16] [6213544002235056] +11:43:54 [ 3] [ 6] [302000] +11:43:54 [ 4] [ 12] [000000000000] +11:43:54 [ 7] [ 10] [0320044259] +11:43:54 [ 11] [ 6] [268684] +11:43:54 [ 12] [ 6] [114259] +11:43:54 [ 13] [ 4] [0320] +11:43:54 [ 15] [ 4] [0320] +11:43:54 [ 18] [ 4] [6011] +11:43:54 [ 19] [ 3] [418] +11:43:54 [ 32] [ 6] [180893] +11:43:54 [ 35] [ 32] [6213544002235056=491212013505625] +11:43:54 [ 37] [ 12] [507904268684] +11:43:54 [ 38] [ 6] [311158] +11:43:54 [ 39] [ 2] [00] +11:43:54 [ 41] [ 8] [0344SVKV] +11:43:54 [ 49] [ 3] [418] +11:43:54 [ 54] [ 40] [2001418C0000050000002002418C000005000000] +11:43:54 ============================================================================ +11:43:54 Calculate Source COMM Id = 2 +11:43:54 ============================================================================ +11:43:54 + + +waiting on router queue for slot.... +11:43:55 ============================================================================ +11:43:55 Slot Id : <361> +11:43:55 Transaction Type : REQUEST +11:43:55 Received From : +11:43:55 ============================================================================ +11:43:55 FNo. Len. Field Value +11:43:55 ============================================================================ +11:43:55 [ 1] [ 4] [0200] +11:43:55 [ 2] [ 16] [6213544001621959] +11:43:55 [ 3] [ 6] [010000] +11:43:55 [ 4] [ 12] [000100000000] +11:43:55 [ 7] [ 10] [0320114145] +11:43:55 [ 11] [ 6] [942120] +11:43:55 [ 12] [ 6] [114145] +11:43:55 [ 13] [ 4] [0320] +11:43:55 [ 15] [ 4] [0320] +11:43:55 [ 18] [ 4] [6011] +11:43:55 [ 19] [ 3] [418] +11:43:55 [ 22] [ 3] [021] +11:43:55 [ 25] [ 2] [01] +11:43:55 [ 28] [ 9] [D00002000] +11:43:55 [ 32] [ 6] [668899] +11:43:55 [ 35] [ 32] [6213544001621959=491212012195983] +11:43:55 [ 37] [ 12] [507900270935] +11:43:55 [ 41] [ 8] [03010004] +11:43:55 [ 42] [ 15] [APT ] +11:43:55 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:43:55 [ 49] [ 3] [418] +11:43:55 [ 52] [ 16] [3E185E491A64F264] +11:43:55 ============================================================================ +11:43:55 + + +waiting on router queue for slot.... +11:43:55 Sending to : +11:43:55 ============================================================================ +11:43:55 ============================================================================ +11:43:55 Slot Id : <361> +11:43:55 Transaction Type : REQUEST +11:43:55 Received From : +11:43:55 ============================================================================ +11:43:55 FNo. Len. Field Value +11:43:55 ============================================================================ +11:43:55 [ 1] [ 4] [0200] +11:43:55 [ 2] [ 16] [6213544001621959] +11:43:55 [ 3] [ 6] [010000] +11:43:55 [ 4] [ 12] [000100000000] +11:43:55 [ 7] [ 10] [0320114145] +11:43:55 [ 11] [ 6] [942120] +11:43:55 [ 12] [ 6] [114145] +11:43:55 [ 13] [ 4] [0320] +11:43:55 [ 15] [ 4] [0320] +11:43:55 [ 18] [ 4] [6011] +11:43:55 [ 19] [ 3] [418] +11:43:55 [ 22] [ 3] [021] +11:43:55 [ 25] [ 2] [01] +11:43:55 [ 28] [ 9] [D00002000] +11:43:55 [ 32] [ 6] [668899] +11:43:55 [ 35] [ 32] [6213544001621959=491212012195983] +11:43:55 [ 37] [ 12] [507900270935] +11:43:55 [ 41] [ 8] [03010004] +11:43:55 [ 42] [ 15] [APT ] +11:43:55 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:43:55 [ 49] [ 3] [418] +11:43:55 [ 52] [ 16] [1B6B83E14D8EC223] +11:43:55 ============================================================================ +11:43:55 + + +waiting on router queue for slot.... +11:43:55 Sending to : <0> +11:43:55 ============================================================================ +11:43:56 ============================================================================ +11:43:56 Slot Id : <361> +11:43:56 Transaction Type : RESPONSE +11:43:56 Received From : +11:43:56 ============================================================================ +11:43:56 FNo. Len. Field Value +11:43:56 ============================================================================ +11:43:56 [ 1] [ 4] [0210] +11:43:56 [ 2] [ 16] [6213544001621959] +11:43:56 [ 3] [ 6] [010000] +11:43:56 [ 4] [ 12] [000100000000] +11:43:56 [ 7] [ 10] [0320114145] +11:43:56 [ 11] [ 6] [942120] +11:43:56 [ 12] [ 6] [114145] +11:43:56 [ 13] [ 4] [0320] +11:43:56 [ 15] [ 4] [0320] +11:43:56 [ 18] [ 4] [6011] +11:43:56 [ 19] [ 3] [418] +11:43:56 [ 32] [ 6] [668899] +11:43:56 [ 35] [ 32] [6213544001621959=491212012195983] +11:43:56 [ 37] [ 12] [507900270935] +11:43:56 [ 38] [ 6] [852821] +11:43:56 [ 39] [ 2] [00] +11:43:56 [ 41] [ 8] [03010004] +11:43:56 [ 49] [ 3] [418] +11:43:56 [ 54] [ 40] [0001418C0001073459470002418C000107345947] +11:43:56 ============================================================================ +11:43:56 Sending to : +11:43:56 ============================================================================ +11:43:56 + + +waiting on router queue for slot.... +11:43:57 ============================================================================ +11:43:57 Slot Id : <361> +11:43:57 Transaction Type : RESPONSE +11:43:57 Received From : +11:43:57 ============================================================================ +11:43:57 FNo. Len. Field Value +11:43:57 ============================================================================ +11:43:57 [ 1] [ 4] [0210] +11:43:57 [ 2] [ 16] [6213544001621959] +11:43:57 [ 3] [ 6] [010000] +11:43:57 [ 4] [ 12] [000100000000] +11:43:57 [ 7] [ 10] [0320114145] +11:43:57 [ 11] [ 6] [942120] +11:43:57 [ 12] [ 6] [114145] +11:43:57 [ 13] [ 4] [0320] +11:43:57 [ 15] [ 4] [0320] +11:43:57 [ 18] [ 4] [6011] +11:43:57 [ 19] [ 3] [418] +11:43:57 [ 32] [ 6] [668899] +11:43:57 [ 35] [ 32] [6213544001621959=491212012195983] +11:43:57 [ 37] [ 12] [507900270935] +11:43:57 [ 38] [ 6] [852821] +11:43:57 [ 39] [ 2] [00] +11:43:57 [ 41] [ 8] [03010004] +11:43:57 [ 49] [ 3] [418] +11:43:57 [ 54] [ 40] [0001418C0001073459470002418C000107345947] +11:43:57 ============================================================================ +11:43:57 Calculate Source COMM Id = 4 +11:43:57 ============================================================================ +11:43:57 + + +waiting on router queue for slot.... +11:44:05 ============================================================================ +11:44:05 Slot Id : <359> +11:44:05 Transaction Type : REQUEST +11:44:05 Received From : +11:44:05 ============================================================================ +11:44:05 FNo. Len. Field Value +11:44:05 ============================================================================ +11:44:05 [ 1] [ 4] [0800] +11:44:05 [ 7] [ 10] [0320044313] +11:44:05 [ 11] [ 6] [156148] +11:44:05 [ 70] [ 3] [301] +11:44:05 ============================================================================ +11:44:05 + + +waiting on router queue for slot.... +11:44:05 Sending to : +11:44:05 ============================================================================ +11:44:05 ============================================================================ +11:44:05 Slot Id : <359> +11:44:05 Transaction Type : RESPONSE +11:44:05 Received From : +11:44:05 ============================================================================ +11:44:05 FNo. Len. Field Value +11:44:05 ============================================================================ +11:44:05 [ 1] [ 4] [0810] +11:44:05 [ 7] [ 10] [0320044313] +11:44:05 [ 11] [ 6] [156148] +11:44:05 [ 39] [ 2] [00] +11:44:05 [ 70] [ 3] [301] +11:44:05 ============================================================================ +11:44:05 Calculate Source COMM Id = 2 +11:44:05 ============================================================================ +11:44:05 + + +waiting on router queue for slot.... +11:44:05 ============================================================================ +11:44:05 Slot Id : <376> +11:44:05 Transaction Type : REQUEST +11:44:05 Received From : +11:44:05 ============================================================================ +11:44:05 FNo. Len. Field Value +11:44:05 ============================================================================ +11:44:05 [ 1] [ 4] [0200] +11:44:05 [ 2] [ 16] [6213545000077457] +11:44:05 [ 3] [ 6] [011000] +11:44:05 [ 4] [ 12] [000015000000] +11:44:05 [ 7] [ 10] [0320044312] +11:44:05 [ 11] [ 6] [268689] +11:44:05 [ 12] [ 6] [114312] +11:44:05 [ 13] [ 4] [0320] +11:44:05 [ 14] [ 4] [4912] +11:44:05 [ 15] [ 4] [0320] +11:44:05 [ 18] [ 4] [6011] +11:44:05 [ 19] [ 3] [418] +11:44:05 [ 22] [ 3] [021] +11:44:05 [ 25] [ 2] [01] +11:44:05 [ 28] [ 9] [D00002000] +11:44:05 [ 32] [ 6] [180893] +11:44:05 [ 35] [ 32] [6213545000077457=491212017745184] +11:44:05 [ 37] [ 12] [507904268689] +11:44:05 [ 41] [ 8] [0112CPBR] +11:44:05 [ 42] [ 15] [999999 ] +11:44:05 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:44:05 [ 49] [ 3] [418] +11:44:05 [ 52] [ 16] [84CE322763A07D80] +11:44:05 ============================================================================ +11:44:05 + + +waiting on router queue for slot.... +11:44:05 Sending to : +11:44:05 ============================================================================ +11:44:05 Sending to : +11:44:05 ============================================================================ +11:44:06 ============================================================================ +11:44:06 Slot Id : <376> +11:44:06 Transaction Type : REQUEST +11:44:06 Received From : +11:44:06 ============================================================================ +11:44:06 FNo. Len. Field Value +11:44:06 ============================================================================ +11:44:06 [ 1] [ 4] [0200] +11:44:06 [ 2] [ 16] [6213545000077457] +11:44:06 [ 3] [ 6] [011000] +11:44:06 [ 4] [ 12] [000015000000] +11:44:06 [ 7] [ 10] [0320044312] +11:44:06 [ 11] [ 6] [268689] +11:44:06 [ 12] [ 6] [114312] +11:44:06 [ 13] [ 4] [0320] +11:44:06 [ 14] [ 4] [4912] +11:44:06 [ 15] [ 4] [0320] +11:44:06 [ 18] [ 4] [6011] +11:44:06 [ 19] [ 3] [418] +11:44:06 [ 22] [ 3] [021] +11:44:06 [ 25] [ 2] [01] +11:44:06 [ 28] [ 9] [D00002000] +11:44:06 [ 32] [ 6] [180893] +11:44:06 [ 35] [ 32] [6213545000077457=491212017745184] +11:44:06 [ 37] [ 12] [507904268689] +11:44:06 [ 41] [ 8] [0112CPBR] +11:44:06 [ 42] [ 15] [999999 ] +11:44:06 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:44:06 [ 49] [ 3] [418] +11:44:06 [ 52] [ 16] [84CE322763A07D80] +11:44:06 ============================================================================ +11:44:06 + + +waiting on router queue for slot.... +11:44:06 Sending to : +11:44:06 ============================================================================ +11:44:06 ============================================================================ +11:44:06 Slot Id : <376> +11:44:06 Transaction Type : REQUEST +11:44:06 Received From : +11:44:06 ============================================================================ +11:44:06 FNo. Len. Field Value +11:44:06 ============================================================================ +11:44:06 [ 1] [ 4] [0200] +11:44:06 [ 2] [ 16] [6213545000077457] +11:44:06 [ 3] [ 6] [011000] +11:44:06 [ 4] [ 12] [000015000000] +11:44:06 [ 7] [ 10] [0320044312] +11:44:06 [ 11] [ 6] [268689] +11:44:06 [ 12] [ 6] [114312] +11:44:06 [ 13] [ 4] [0320] +11:44:06 [ 14] [ 4] [4912] +11:44:06 [ 15] [ 4] [0320] +11:44:06 [ 18] [ 4] [6011] +11:44:06 [ 19] [ 3] [418] +11:44:06 [ 22] [ 3] [021] +11:44:06 [ 25] [ 2] [01] +11:44:06 [ 28] [ 9] [D00002000] +11:44:06 [ 32] [ 6] [180893] +11:44:06 [ 35] [ 32] [6213545000077457=491212017745184] +11:44:06 [ 37] [ 12] [507904268689] +11:44:06 [ 41] [ 8] [0112CPBR] +11:44:06 [ 42] [ 15] [999999 ] +11:44:06 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:44:06 [ 49] [ 3] [418] +11:44:06 [ 52] [ 16] [21D50914E847224B] +11:44:06 ============================================================================ +11:44:06 + + +waiting on router queue for slot.... +11:44:06 Sending to : <0> +11:44:06 ============================================================================ +11:44:06 ============================================================================ +11:44:06 Slot Id : <376> +11:44:06 Transaction Type : RESPONSE +11:44:06 Received From : +11:44:06 ============================================================================ +11:44:06 FNo. Len. Field Value +11:44:06 ============================================================================ +11:44:06 [ 1] [ 4] [0210] +11:44:06 [ 2] [ 16] [6213545000077457] +11:44:06 [ 3] [ 6] [011000] +11:44:06 [ 4] [ 12] [000015000000] +11:44:06 [ 7] [ 10] [0320044312] +11:44:06 [ 11] [ 6] [268689] +11:44:06 [ 12] [ 6] [114312] +11:44:06 [ 13] [ 4] [0320] +11:44:06 [ 15] [ 4] [0320] +11:44:06 [ 18] [ 4] [6011] +11:44:06 [ 19] [ 3] [418] +11:44:06 [ 32] [ 6] [180893] +11:44:06 [ 35] [ 32] [6213545000077457=491212017745184] +11:44:06 [ 37] [ 12] [507904268689] +11:44:06 [ 38] [ 6] [268689] +11:44:06 [ 39] [ 2] [51] +11:44:06 [ 41] [ 8] [0112CPBR] +11:44:06 [ 49] [ 3] [418] +11:44:06 [ 54] [ 40] [1001418C0000200976511002418C000020097651] +11:44:06 ============================================================================ +11:44:06 Sending to : +11:44:06 ============================================================================ +11:44:06 + + +waiting on router queue for slot.... +11:44:07 ============================================================================ +11:44:07 Slot Id : <376> +11:44:07 Transaction Type : RESPONSE +11:44:07 Received From : +11:44:07 ============================================================================ +11:44:07 FNo. Len. Field Value +11:44:07 ============================================================================ +11:44:07 [ 1] [ 4] [0210] +11:44:07 [ 2] [ 16] [6213545000077457] +11:44:07 [ 3] [ 6] [011000] +11:44:07 [ 4] [ 12] [000015000000] +11:44:07 [ 7] [ 10] [0320044312] +11:44:07 [ 11] [ 6] [268689] +11:44:07 [ 12] [ 6] [114312] +11:44:07 [ 13] [ 4] [0320] +11:44:07 [ 15] [ 4] [0320] +11:44:07 [ 18] [ 4] [6011] +11:44:07 [ 19] [ 3] [418] +11:44:07 [ 32] [ 6] [180893] +11:44:07 [ 35] [ 32] [6213545000077457=491212017745184] +11:44:07 [ 37] [ 12] [507904268689] +11:44:07 [ 38] [ 6] [268689] +11:44:07 [ 39] [ 2] [51] +11:44:07 [ 41] [ 8] [0112CPBR] +11:44:07 [ 49] [ 3] [418] +11:44:07 [ 54] [ 40] [1001418C0000200976511002418C000020097651] +11:44:07 ============================================================================ +11:44:07 Calculate Source COMM Id = 2 +11:44:07 ============================================================================ +11:44:07 + + +waiting on router queue for slot.... +11:44:07 ============================================================================ +11:44:07 Slot Id : <374> +11:44:07 Transaction Type : REQUEST +11:44:07 Received From : +11:44:07 ============================================================================ +11:44:07 FNo. Len. Field Value +11:44:07 ============================================================================ +11:44:07 [ 1] [ 4] [0200] +11:44:07 [ 2] [ 16] [6213541000320542] +11:44:07 [ 3] [ 6] [010000] +11:44:07 [ 4] [ 12] [000100000000] +11:44:07 [ 7] [ 10] [0320044315] +11:44:07 [ 11] [ 6] [268690] +11:44:07 [ 12] [ 6] [114315] +11:44:07 [ 13] [ 4] [0320] +11:44:07 [ 14] [ 4] [4912] +11:44:07 [ 15] [ 4] [0320] +11:44:07 [ 18] [ 4] [6011] +11:44:07 [ 19] [ 3] [418] +11:44:07 [ 22] [ 3] [021] +11:44:07 [ 25] [ 2] [01] +11:44:07 [ 28] [ 9] [D00002000] +11:44:07 [ 32] [ 6] [180893] +11:44:07 [ 35] [ 32] [6213541000320542=491212012054325] +11:44:07 [ 37] [ 12] [507904268690] +11:44:07 [ 41] [ 8] [0324BKDT] +11:44:07 [ 42] [ 15] [999999 ] +11:44:07 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:44:07 [ 49] [ 3] [418] +11:44:07 [ 52] [ 16] [CF8B0EB5B4436A33] +11:44:07 ============================================================================ +11:44:07 + + +waiting on router queue for slot.... +11:44:07 Sending to : +11:44:07 ============================================================================ +11:44:07 Sending to : +11:44:07 ============================================================================ +11:44:08 ============================================================================ +11:44:08 Slot Id : <374> +11:44:08 Transaction Type : REQUEST +11:44:08 Received From : +11:44:08 ============================================================================ +11:44:08 FNo. Len. Field Value +11:44:08 ============================================================================ +11:44:08 [ 1] [ 4] [0200] +11:44:08 [ 2] [ 16] [6213541000320542] +11:44:08 [ 3] [ 6] [010000] +11:44:08 [ 4] [ 12] [000100000000] +11:44:08 [ 7] [ 10] [0320044315] +11:44:08 [ 11] [ 6] [268690] +11:44:08 [ 12] [ 6] [114315] +11:44:08 [ 13] [ 4] [0320] +11:44:08 [ 14] [ 4] [4912] +11:44:08 [ 15] [ 4] [0320] +11:44:08 [ 18] [ 4] [6011] +11:44:08 [ 19] [ 3] [418] +11:44:08 [ 22] [ 3] [021] +11:44:08 [ 25] [ 2] [01] +11:44:08 [ 28] [ 9] [D00002000] +11:44:08 [ 32] [ 6] [180893] +11:44:08 [ 35] [ 32] [6213541000320542=491212012054325] +11:44:08 [ 37] [ 12] [507904268690] +11:44:08 [ 41] [ 8] [0324BKDT] +11:44:08 [ 42] [ 15] [999999 ] +11:44:08 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:44:08 [ 49] [ 3] [418] +11:44:08 [ 52] [ 16] [CF8B0EB5B4436A33] +11:44:08 ============================================================================ +11:44:08 + + +waiting on router queue for slot.... +11:44:08 Sending to : +11:44:08 ============================================================================ +11:44:08 ============================================================================ +11:44:08 Slot Id : <374> +11:44:08 Transaction Type : REQUEST +11:44:08 Received From : +11:44:08 ============================================================================ +11:44:08 FNo. Len. Field Value +11:44:08 ============================================================================ +11:44:08 [ 1] [ 4] [0200] +11:44:08 [ 2] [ 16] [6213541000320542] +11:44:08 [ 3] [ 6] [010000] +11:44:08 [ 4] [ 12] [000100000000] +11:44:08 [ 7] [ 10] [0320044315] +11:44:08 [ 11] [ 6] [268690] +11:44:08 [ 12] [ 6] [114315] +11:44:08 [ 13] [ 4] [0320] +11:44:08 [ 14] [ 4] [4912] +11:44:08 [ 15] [ 4] [0320] +11:44:08 [ 18] [ 4] [6011] +11:44:08 [ 19] [ 3] [418] +11:44:08 [ 22] [ 3] [021] +11:44:08 [ 25] [ 2] [01] +11:44:08 [ 28] [ 9] [D00002000] +11:44:08 [ 32] [ 6] [180893] +11:44:08 [ 35] [ 32] [6213541000320542=491212012054325] +11:44:08 [ 37] [ 12] [507904268690] +11:44:08 [ 41] [ 8] [0324BKDT] +11:44:08 [ 42] [ 15] [999999 ] +11:44:08 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:44:08 [ 49] [ 3] [418] +11:44:08 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:44:08 ============================================================================ +11:44:08 + + +waiting on router queue for slot.... +11:44:08 Sending to : <0> +11:44:08 ============================================================================ +11:44:09 ============================================================================ +11:44:09 Slot Id : <374> +11:44:09 Transaction Type : RESPONSE +11:44:09 Received From : +11:44:09 ============================================================================ +11:44:09 FNo. Len. Field Value +11:44:09 ============================================================================ +11:44:09 [ 1] [ 4] [0210] +11:44:09 [ 2] [ 16] [6213541000320542] +11:44:09 [ 3] [ 6] [010000] +11:44:09 [ 4] [ 12] [000100000000] +11:44:09 [ 7] [ 10] [0320044315] +11:44:09 [ 11] [ 6] [268690] +11:44:09 [ 12] [ 6] [114315] +11:44:09 [ 13] [ 4] [0320] +11:44:09 [ 15] [ 4] [0320] +11:44:09 [ 18] [ 4] [6011] +11:44:09 [ 19] [ 3] [418] +11:44:09 [ 32] [ 6] [180893] +11:44:09 [ 35] [ 32] [6213541000320542=491212012054325] +11:44:09 [ 37] [ 12] [507904268690] +11:44:09 [ 38] [ 6] [145310] +11:44:09 [ 39] [ 2] [00] +11:44:09 [ 41] [ 8] [0324BKDT] +11:44:09 [ 49] [ 3] [418] +11:44:09 [ 54] [ 40] [0001418C0006890349510002418C000689034951] +11:44:09 ============================================================================ +11:44:09 Sending to : +11:44:09 ============================================================================ +11:44:09 + + +waiting on router queue for slot.... +11:44:10 ============================================================================ +11:44:10 Slot Id : <395> +11:44:10 Transaction Type : REQUEST +11:44:10 Received From : +11:44:10 ============================================================================ +11:44:10 FNo. Len. Field Value +11:44:10 ============================================================================ +11:44:10 [ 1] [ 4] [0200] +11:44:10 [ 2] [ 16] [1808930300000627] +11:44:10 [ 3] [ 6] [010000] +11:44:10 [ 4] [ 12] [000100000000] +11:44:10 [ 7] [ 10] [0320114406] +11:44:10 [ 11] [ 6] [734181] +11:44:10 [ 12] [ 6] [114406] +11:44:10 [ 13] [ 4] [0320] +11:44:10 [ 15] [ 4] [0320] +11:44:10 [ 18] [ 4] [6011] +11:44:10 [ 22] [ 3] [900] +11:44:10 [ 25] [ 2] [02] +11:44:10 [ 28] [ 9] [D00002000] +11:44:10 [ 32] [ 6] [621354] +11:44:10 [ 35] [ 27] [1808930300000627=1803500441] +11:44:10 [ 37] [ 12] [507903505412] +11:44:10 [ 41] [ 8] [09000700] +11:44:10 [ 42] [ 15] [NATIVE ] +11:44:10 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:44:10 [ 49] [ 3] [418] +11:44:10 [ 52] [ 16] [7B4555E2B22445BE] +11:44:10 ============================================================================ +11:44:10 + + +waiting on router queue for slot.... +11:44:10 Sending to : +11:44:10 ============================================================================ +11:44:10 Sending to : +11:44:10 ============================================================================ +11:44:10 ============================================================================ +11:44:10 Slot Id : <374> +11:44:10 Transaction Type : RESPONSE +11:44:10 Received From : +11:44:10 ============================================================================ +11:44:10 FNo. Len. Field Value +11:44:10 ============================================================================ +11:44:10 [ 1] [ 4] [0210] +11:44:10 [ 2] [ 16] [6213541000320542] +11:44:10 [ 3] [ 6] [010000] +11:44:10 [ 4] [ 12] [000100000000] +11:44:10 [ 7] [ 10] [0320044315] +11:44:10 [ 11] [ 6] [268690] +11:44:10 [ 12] [ 6] [114315] +11:44:10 [ 13] [ 4] [0320] +11:44:10 [ 15] [ 4] [0320] +11:44:10 [ 18] [ 4] [6011] +11:44:10 [ 19] [ 3] [418] +11:44:10 [ 32] [ 6] [180893] +11:44:10 [ 35] [ 32] [6213541000320542=491212012054325] +11:44:10 [ 37] [ 12] [507904268690] +11:44:10 [ 38] [ 6] [145310] +11:44:10 [ 39] [ 2] [00] +11:44:10 [ 41] [ 8] [0324BKDT] +11:44:10 [ 49] [ 3] [418] +11:44:10 [ 54] [ 40] [0001418C0006890349510002418C000689034951] +11:44:10 ============================================================================ +11:44:10 Calculate Source COMM Id = 2 +11:44:10 ============================================================================ +11:44:10 + + +waiting on router queue for slot.... +11:44:10 ============================================================================ +11:44:10 Slot Id : <395> +11:44:10 Transaction Type : REQUEST +11:44:10 Received From : +11:44:10 ============================================================================ +11:44:10 FNo. Len. Field Value +11:44:10 ============================================================================ +11:44:10 [ 1] [ 4] [0200] +11:44:10 [ 2] [ 16] [1808930300000627] +11:44:10 [ 3] [ 6] [010000] +11:44:10 [ 4] [ 12] [000100000000] +11:44:10 [ 7] [ 10] [0320114406] +11:44:10 [ 11] [ 6] [734181] +11:44:10 [ 12] [ 6] [114406] +11:44:10 [ 13] [ 4] [0320] +11:44:10 [ 15] [ 4] [0320] +11:44:10 [ 18] [ 4] [6011] +11:44:10 [ 22] [ 3] [900] +11:44:10 [ 25] [ 2] [02] +11:44:10 [ 28] [ 9] [D00002000] +11:44:10 [ 32] [ 6] [621354] +11:44:10 [ 35] [ 27] [1808930300000627=1803500441] +11:44:10 [ 37] [ 12] [507903505412] +11:44:10 [ 41] [ 8] [09000700] +11:44:10 [ 42] [ 15] [NATIVE ] +11:44:10 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:44:10 [ 49] [ 3] [418] +11:44:10 [ 52] [ 16] [7B4555E2B22445BE] +11:44:10 ============================================================================ +11:44:10 + + +waiting on router queue for slot.... +11:44:10 Sending to : +11:44:10 ============================================================================ +11:44:10 ============================================================================ +11:44:10 Slot Id : <395> +11:44:10 Transaction Type : REQUEST +11:44:10 Received From : +11:44:10 ============================================================================ +11:44:10 FNo. Len. Field Value +11:44:10 ============================================================================ +11:44:10 [ 1] [ 4] [0200] +11:44:10 [ 2] [ 16] [1808930300000627] +11:44:10 [ 3] [ 6] [010000] +11:44:10 [ 4] [ 12] [000100000000] +11:44:10 [ 7] [ 10] [0320114406] +11:44:10 [ 11] [ 6] [734181] +11:44:10 [ 12] [ 6] [114406] +11:44:10 [ 13] [ 4] [0320] +11:44:10 [ 15] [ 4] [0320] +11:44:10 [ 18] [ 4] [6011] +11:44:10 [ 22] [ 3] [900] +11:44:10 [ 25] [ 2] [02] +11:44:10 [ 28] [ 9] [D00002000] +11:44:10 [ 32] [ 6] [621354] +11:44:10 [ 35] [ 27] [1808930300000627=1803500441] +11:44:10 [ 37] [ 12] [507903505412] +11:44:10 [ 41] [ 8] [09000700] +11:44:10 [ 42] [ 15] [NATIVE ] +11:44:10 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +11:44:10 [ 49] [ 3] [418] +11:44:10 [ 52] [ 16] [8C05AC738B091252] +11:44:10 ============================================================================ +11:44:10 + + +waiting on router queue for slot.... +11:44:10 Sending to : <2> +11:44:10 ============================================================================ +11:44:11 ============================================================================ +11:44:11 Slot Id : <410> +11:44:11 Transaction Type : REQUEST +11:44:11 Received From : +11:44:11 ============================================================================ +11:44:11 FNo. Len. Field Value +11:44:11 ============================================================================ +11:44:11 [ 1] [ 4] [0200] +11:44:11 [ 2] [ 16] [6213544001243937] +11:44:11 [ 3] [ 6] [010000] +11:44:11 [ 4] [ 12] [000010000000] +11:44:11 [ 7] [ 10] [0320114202] +11:44:11 [ 11] [ 6] [942135] +11:44:11 [ 12] [ 6] [114202] +11:44:11 [ 13] [ 4] [0320] +11:44:11 [ 15] [ 4] [0320] +11:44:11 [ 18] [ 4] [6011] +11:44:11 [ 19] [ 3] [418] +11:44:11 [ 22] [ 3] [021] +11:44:11 [ 25] [ 2] [01] +11:44:11 [ 28] [ 9] [D00002000] +11:44:11 [ 32] [ 6] [668899] +11:44:11 [ 35] [ 32] [6213544001243937=491212014393100] +11:44:11 [ 37] [ 12] [507901856371] +11:44:11 [ 41] [ 8] [03311001] +11:44:11 [ 42] [ 15] [APT ] +11:44:11 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:44:11 [ 49] [ 3] [418] +11:44:11 [ 52] [ 16] [DBD4C8494EA6EA8E] +11:44:11 ============================================================================ +11:44:11 + + +waiting on router queue for slot.... +11:44:11 Sending to : +11:44:11 ============================================================================ +11:44:11 Sending to : +11:44:11 ============================================================================ +11:44:11 ============================================================================ +11:44:11 Slot Id : <410> +11:44:11 Transaction Type : REQUEST +11:44:11 Received From : +11:44:11 ============================================================================ +11:44:11 FNo. Len. Field Value +11:44:11 ============================================================================ +11:44:11 [ 1] [ 4] [0200] +11:44:11 [ 2] [ 16] [6213544001243937] +11:44:11 [ 3] [ 6] [010000] +11:44:11 [ 4] [ 12] [000010000000] +11:44:11 [ 7] [ 10] [0320114202] +11:44:11 [ 11] [ 6] [942135] +11:44:11 [ 12] [ 6] [114202] +11:44:11 [ 13] [ 4] [0320] +11:44:11 [ 15] [ 4] [0320] +11:44:11 [ 18] [ 4] [6011] +11:44:11 [ 19] [ 3] [418] +11:44:11 [ 22] [ 3] [021] +11:44:11 [ 25] [ 2] [01] +11:44:11 [ 28] [ 9] [D00002000] +11:44:11 [ 32] [ 6] [668899] +11:44:11 [ 35] [ 32] [6213544001243937=491212014393100] +11:44:11 [ 37] [ 12] [507901856371] +11:44:11 [ 41] [ 8] [03311001] +11:44:11 [ 42] [ 15] [APT ] +11:44:11 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:44:11 [ 49] [ 3] [418] +11:44:11 [ 52] [ 16] [DBD4C8494EA6EA8E] +11:44:11 ============================================================================ +11:44:11 + + +waiting on router queue for slot.... +11:44:11 Sending to : +11:44:11 ============================================================================ +11:44:11 ============================================================================ +11:44:11 Slot Id : <410> +11:44:11 Transaction Type : REQUEST +11:44:11 Received From : +11:44:11 ============================================================================ +11:44:11 FNo. Len. Field Value +11:44:11 ============================================================================ +11:44:11 [ 1] [ 4] [0200] +11:44:11 [ 2] [ 16] [6213544001243937] +11:44:11 [ 3] [ 6] [010000] +11:44:11 [ 4] [ 12] [000010000000] +11:44:11 [ 7] [ 10] [0320114202] +11:44:11 [ 11] [ 6] [942135] +11:44:11 [ 12] [ 6] [114202] +11:44:11 [ 13] [ 4] [0320] +11:44:11 [ 15] [ 4] [0320] +11:44:11 [ 18] [ 4] [6011] +11:44:11 [ 19] [ 3] [418] +11:44:11 [ 22] [ 3] [021] +11:44:11 [ 25] [ 2] [01] +11:44:11 [ 28] [ 9] [D00002000] +11:44:11 [ 32] [ 6] [668899] +11:44:11 [ 35] [ 32] [6213544001243937=491212014393100] +11:44:11 [ 37] [ 12] [507901856371] +11:44:11 [ 41] [ 8] [03311001] +11:44:11 [ 42] [ 15] [APT ] +11:44:11 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:44:11 [ 49] [ 3] [418] +11:44:11 [ 52] [ 16] [C5784CBE7A9E3BD4] +11:44:11 ============================================================================ +11:44:11 + + +waiting on router queue for slot.... +11:44:11 Sending to : <0> +11:44:11 ============================================================================ +11:44:13 ============================================================================ +11:44:13 Slot Id : <410> +11:44:13 Transaction Type : RESPONSE +11:44:13 Received From : +11:44:13 ============================================================================ +11:44:13 FNo. Len. Field Value +11:44:13 ============================================================================ +11:44:13 [ 1] [ 4] [0210] +11:44:13 [ 2] [ 16] [6213544001243937] +11:44:13 [ 3] [ 6] [010000] +11:44:13 [ 4] [ 12] [000010000000] +11:44:13 [ 7] [ 10] [0320114202] +11:44:13 [ 11] [ 6] [942135] +11:44:13 [ 12] [ 6] [114202] +11:44:13 [ 13] [ 4] [0320] +11:44:13 [ 15] [ 4] [0320] +11:44:13 [ 18] [ 4] [6011] +11:44:13 [ 19] [ 3] [418] +11:44:13 [ 32] [ 6] [668899] +11:44:13 [ 35] [ 32] [6213544001243937=491212014393100] +11:44:13 [ 37] [ 12] [507901856371] +11:44:13 [ 38] [ 6] [942135] +11:44:13 [ 39] [ 2] [51] +11:44:13 [ 41] [ 8] [03311001] +11:44:13 [ 49] [ 3] [418] +11:44:13 [ 54] [ 40] [0001418C0000110065900002418C000011006590] +11:44:13 ============================================================================ +11:44:13 Sending to : +11:44:13 ============================================================================ +11:44:13 + + +waiting on router queue for slot.... +11:44:14 ============================================================================ +11:44:14 Slot Id : <410> +11:44:14 Transaction Type : RESPONSE +11:44:14 Received From : +11:44:14 ============================================================================ +11:44:14 FNo. Len. Field Value +11:44:14 ============================================================================ +11:44:14 [ 1] [ 4] [0210] +11:44:14 [ 2] [ 16] [6213544001243937] +11:44:14 [ 3] [ 6] [010000] +11:44:14 [ 4] [ 12] [000010000000] +11:44:14 [ 7] [ 10] [0320114202] +11:44:14 [ 11] [ 6] [942135] +11:44:14 [ 12] [ 6] [114202] +11:44:14 [ 13] [ 4] [0320] +11:44:14 [ 15] [ 4] [0320] +11:44:14 [ 18] [ 4] [6011] +11:44:14 [ 19] [ 3] [418] +11:44:14 [ 32] [ 6] [668899] +11:44:14 [ 35] [ 32] [6213544001243937=491212014393100] +11:44:14 [ 37] [ 12] [507901856371] +11:44:14 [ 38] [ 6] [942135] +11:44:14 [ 39] [ 2] [51] +11:44:14 [ 41] [ 8] [03311001] +11:44:14 [ 49] [ 3] [418] +11:44:14 [ 54] [ 40] [0001418C0000110065900002418C000011006590] +11:44:14 ============================================================================ +11:44:14 Calculate Source COMM Id = 4 +11:44:14 ============================================================================ +11:44:14 + + +waiting on router queue for slot.... +11:44:16 ============================================================================ +11:44:16 Slot Id : <395> +11:44:16 Transaction Type : RESPONSE +11:44:16 Received From : +11:44:16 ============================================================================ +11:44:16 FNo. Len. Field Value +11:44:16 ============================================================================ +11:44:16 [ 1] [ 4] [0210] +11:44:16 [ 2] [ 16] [1808930300000627] +11:44:16 [ 3] [ 6] [010000] +11:44:16 [ 4] [ 12] [000100000000] +11:44:16 [ 6] [ 12] [000100000000] +11:44:16 [ 7] [ 10] [0320114406] +11:44:16 [ 11] [ 6] [734181] +11:44:16 [ 12] [ 6] [114406] +11:44:16 [ 13] [ 4] [0320] +11:44:16 [ 18] [ 4] [6011] +11:44:16 [ 19] [ 3] [418] +11:44:16 [ 22] [ 3] [021] +11:44:16 [ 32] [ 6] [621354] +11:44:16 [ 35] [ 27] [1808930300000627=1803500441] +11:44:16 [ 37] [ 12] [507903505412] +11:44:16 [ 38] [ 6] [734181] +11:44:16 [ 39] [ 2] [00] +11:44:16 [ 41] [ 8] [09000700] +11:44:16 [ 49] [ 3] [418] +11:44:16 [ 52] [ 16] [8C05AC738B091252] +11:44:16 [ 54] [ 20] [1001418C000710673000] +11:44:16 ============================================================================ +11:44:16 Sending to : +11:44:16 ============================================================================ +11:44:16 + + +waiting on router queue for slot.... +11:44:18 ============================================================================ +11:44:18 Slot Id : <395> +11:44:18 Transaction Type : RESPONSE +11:44:18 Received From : +11:44:18 ============================================================================ +11:44:18 FNo. Len. Field Value +11:44:18 ============================================================================ +11:44:18 [ 1] [ 4] [0210] +11:44:18 [ 2] [ 16] [1808930300000627] +11:44:18 [ 3] [ 6] [010000] +11:44:18 [ 4] [ 12] [000100000000] +11:44:18 [ 6] [ 12] [000100000000] +11:44:18 [ 7] [ 10] [0320114406] +11:44:18 [ 11] [ 6] [734181] +11:44:18 [ 12] [ 6] [114406] +11:44:18 [ 13] [ 4] [0320] +11:44:18 [ 18] [ 4] [6011] +11:44:18 [ 19] [ 3] [418] +11:44:18 [ 22] [ 3] [021] +11:44:18 [ 32] [ 6] [621354] +11:44:18 [ 35] [ 27] [1808930300000627=1803500441] +11:44:18 [ 37] [ 12] [507903505412] +11:44:18 [ 38] [ 6] [734181] +11:44:18 [ 39] [ 2] [00] +11:44:18 [ 41] [ 8] [09000700] +11:44:18 [ 49] [ 3] [418] +11:44:18 [ 52] [ 16] [8C05AC738B091252] +11:44:18 [ 54] [ 20] [1001418C000710673000] +11:44:18 ============================================================================ +11:44:18 Calculate Source COMM Id = 0 +11:44:18 ============================================================================ +11:44:18 + + +waiting on router queue for slot.... +11:44:20 ============================================================================ +11:44:20 Slot Id : <393> +11:44:20 Transaction Type : REQUEST +11:44:20 Received From : +11:44:20 ============================================================================ +11:44:20 FNo. Len. Field Value +11:44:20 ============================================================================ +11:44:20 [ 1] [ 4] [0800] +11:44:20 [ 2] [ 5] [02531] +11:44:20 [ 3] [ 6] [579118] +11:44:20 [ 7] [ 10] [0320044420] +11:44:20 [ 11] [ 6] [807093] +11:44:20 [ 15] [ 10] [0320044420] +11:44:20 [ 37] [ 11] [57911807093] +11:44:20 [ 70] [ 3] [001] +11:44:20 ============================================================================ +11:44:20 + + +waiting on router queue for slot.... +11:44:20 ============================================================================ +11:44:20 Slot Id : <393> +11:44:20 Transaction Type : RESPONSE +11:44:20 Received From : +11:44:20 ============================================================================ +11:44:20 FNo. Len. Field Value +11:44:20 ============================================================================ +11:44:20 [ 1] [ 4] [0810] +11:44:20 [ 7] [ 10] [0320044420] +11:44:20 [ 11] [ 6] [807093] +11:44:20 [ 15] [ 4] [0320] +11:44:20 [ 37] [ 12] [57911807093] +11:44:20 [ 39] [ 2] [00] +11:44:20 [ 70] [ 3] [001] +11:44:20 ============================================================================ +11:44:20 Sending to : +11:44:20 ============================================================================ +11:44:20 + + +waiting on router queue for slot.... +11:44:22 ============================================================================ +11:44:22 Slot Id : <383> +11:44:22 Transaction Type : REQUEST +11:44:22 Received From : +11:44:22 ============================================================================ +11:44:22 FNo. Len. Field Value +11:44:22 ============================================================================ +11:44:22 [ 1] [ 4] [0800] +11:44:22 [ 7] [ 10] [0320044329] +11:44:22 [ 11] [ 6] [156149] +11:44:22 [ 70] [ 3] [301] +11:44:22 ============================================================================ +11:44:22 + + +waiting on router queue for slot.... +11:44:22 Sending to : +11:44:22 ============================================================================ +11:44:22 ============================================================================ +11:44:22 Slot Id : <383> +11:44:22 Transaction Type : RESPONSE +11:44:22 Received From : +11:44:22 ============================================================================ +11:44:22 FNo. Len. Field Value +11:44:22 ============================================================================ +11:44:22 [ 1] [ 4] [0810] +11:44:22 [ 7] [ 10] [0320044329] +11:44:22 [ 11] [ 6] [156149] +11:44:22 [ 39] [ 2] [00] +11:44:22 [ 70] [ 3] [301] +11:44:22 ============================================================================ +11:44:22 Calculate Source COMM Id = 2 +11:44:22 ============================================================================ +11:44:22 + + +waiting on router queue for slot.... +11:44:22 ============================================================================ +11:44:22 Slot Id : <400> +11:44:22 Transaction Type : REQUEST +11:44:22 Received From : +11:44:22 ============================================================================ +11:44:22 FNo. Len. Field Value +11:44:22 ============================================================================ +11:44:22 [ 1] [ 4] [0200] +11:44:22 [ 2] [ 16] [6213545000648323] +11:44:22 [ 3] [ 6] [011000] +11:44:22 [ 4] [ 12] [000100000000] +11:44:22 [ 7] [ 10] [0320115209] +11:44:22 [ 11] [ 6] [003073] +11:44:22 [ 12] [ 6] [115209] +11:44:22 [ 13] [ 4] [0320] +11:44:22 [ 14] [ 4] [4912] +11:44:22 [ 15] [ 4] [0320] +11:44:22 [ 18] [ 4] [6011] +11:44:22 [ 22] [ 3] [900] +11:44:22 [ 25] [ 2] [02] +11:44:22 [ 28] [ 9] [D00002000] +11:44:22 [ 32] [ 6] [220699] +11:44:22 [ 35] [ 32] [6213545000648323=491212014832574] +11:44:22 [ 37] [ 12] [507900186735] +11:44:22 [ 41] [ 8] [08000100] +11:44:22 [ 42] [ 15] [APTRA ] +11:44:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:44:22 [ 49] [ 3] [418] +11:44:22 [ 52] [ 16] [E15FF7643202E849] +11:44:22 ============================================================================ +11:44:22 + + +waiting on router queue for slot.... +11:44:22 Sending to : +11:44:22 ============================================================================ +11:44:22 Sending to : +11:44:22 ============================================================================ +11:44:22 ============================================================================ +11:44:22 Slot Id : <400> +11:44:22 Transaction Type : REQUEST +11:44:22 Received From : +11:44:22 ============================================================================ +11:44:22 FNo. Len. Field Value +11:44:22 ============================================================================ +11:44:22 [ 1] [ 4] [0200] +11:44:22 [ 2] [ 16] [6213545000648323] +11:44:22 [ 3] [ 6] [011000] +11:44:22 [ 4] [ 12] [000100000000] +11:44:22 [ 7] [ 10] [0320115209] +11:44:22 [ 11] [ 6] [003073] +11:44:22 [ 12] [ 6] [115209] +11:44:22 [ 13] [ 4] [0320] +11:44:22 [ 14] [ 4] [4912] +11:44:22 [ 15] [ 4] [0320] +11:44:22 [ 18] [ 4] [6011] +11:44:22 [ 22] [ 3] [900] +11:44:22 [ 25] [ 2] [02] +11:44:22 [ 28] [ 9] [D00002000] +11:44:22 [ 32] [ 6] [220699] +11:44:22 [ 35] [ 32] [6213545000648323=491212014832574] +11:44:22 [ 37] [ 12] [507900186735] +11:44:22 [ 41] [ 8] [08000100] +11:44:22 [ 42] [ 15] [APTRA ] +11:44:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:44:22 [ 49] [ 3] [418] +11:44:22 [ 52] [ 16] [E15FF7643202E849] +11:44:22 ============================================================================ +11:44:22 + + +waiting on router queue for slot.... +11:44:22 Sending to : +11:44:22 ============================================================================ +11:44:22 ============================================================================ +11:44:22 Slot Id : <400> +11:44:22 Transaction Type : REQUEST +11:44:22 Received From : +11:44:22 ============================================================================ +11:44:22 FNo. Len. Field Value +11:44:22 ============================================================================ +11:44:22 [ 1] [ 4] [0200] +11:44:22 [ 2] [ 16] [6213545000648323] +11:44:22 [ 3] [ 6] [011000] +11:44:22 [ 4] [ 12] [000100000000] +11:44:22 [ 7] [ 10] [0320115209] +11:44:22 [ 11] [ 6] [003073] +11:44:22 [ 12] [ 6] [115209] +11:44:22 [ 13] [ 4] [0320] +11:44:22 [ 14] [ 4] [4912] +11:44:22 [ 15] [ 4] [0320] +11:44:22 [ 18] [ 4] [6011] +11:44:22 [ 22] [ 3] [900] +11:44:22 [ 25] [ 2] [02] +11:44:22 [ 28] [ 9] [D00002000] +11:44:22 [ 32] [ 6] [220699] +11:44:22 [ 35] [ 32] [6213545000648323=491212014832574] +11:44:22 [ 37] [ 12] [507900186735] +11:44:22 [ 41] [ 8] [08000100] +11:44:22 [ 42] [ 15] [APTRA ] +11:44:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:44:22 [ 49] [ 3] [418] +11:44:22 [ 52] [ 16] [5347701FAFCC927C] +11:44:22 ============================================================================ +11:44:22 + + +waiting on router queue for slot.... +11:44:22 Sending to : <0> +11:44:22 ============================================================================ +11:44:23 ============================================================================ +11:44:23 Slot Id : <413> +11:44:23 Transaction Type : REQUEST +11:44:23 Received From : +11:44:23 ============================================================================ +11:44:23 FNo. Len. Field Value +11:44:23 ============================================================================ +11:44:23 [ 1] [ 4] [0200] +11:44:23 [ 2] [ 16] [6213548000460095] +11:44:23 [ 3] [ 6] [010000] +11:44:23 [ 4] [ 12] [000010000000] +11:44:23 [ 7] [ 10] [0320114214] +11:44:23 [ 11] [ 6] [942144] +11:44:23 [ 12] [ 6] [114214] +11:44:23 [ 13] [ 4] [0320] +11:44:23 [ 15] [ 4] [0320] +11:44:23 [ 18] [ 4] [6011] +11:44:23 [ 19] [ 3] [418] +11:44:23 [ 22] [ 3] [021] +11:44:23 [ 25] [ 2] [01] +11:44:23 [ 28] [ 9] [D00002000] +11:44:23 [ 32] [ 6] [668899] +11:44:23 [ 35] [ 32] [6213548000460095=180712016009461] +11:44:23 [ 37] [ 12] [507901963513] +11:44:23 [ 41] [ 8] [03020019] +11:44:23 [ 42] [ 15] [APT ] +11:44:23 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:44:23 [ 49] [ 3] [418] +11:44:23 [ 52] [ 16] [7493671741B089E5] +11:44:23 ============================================================================ +11:44:23 + + +waiting on router queue for slot.... +11:44:23 Sending to : +11:44:23 ============================================================================ +11:44:23 Sending to : +11:44:23 ============================================================================ +11:44:23 ============================================================================ +11:44:23 Slot Id : <400> +11:44:23 Transaction Type : RESPONSE +11:44:23 Received From : +11:44:23 ============================================================================ +11:44:23 FNo. Len. Field Value +11:44:23 ============================================================================ +11:44:23 [ 1] [ 4] [0210] +11:44:23 [ 2] [ 16] [6213545000648323] +11:44:23 [ 3] [ 6] [011000] +11:44:23 [ 4] [ 12] [000100000000] +11:44:23 [ 7] [ 10] [0320115209] +11:44:23 [ 11] [ 6] [003073] +11:44:23 [ 12] [ 6] [115209] +11:44:23 [ 13] [ 4] [0320] +11:44:23 [ 15] [ 4] [0320] +11:44:23 [ 18] [ 4] [6011] +11:44:23 [ 32] [ 6] [220699] +11:44:23 [ 35] [ 32] [6213545000648323=491212014832574] +11:44:23 [ 37] [ 12] [507900186735] +11:44:23 [ 38] [ 6] [751323] +11:44:23 [ 39] [ 2] [00] +11:44:23 [ 41] [ 8] [08000100] +11:44:23 [ 49] [ 3] [418] +11:44:23 [ 54] [ 40] [1001418C0000793494221002418C000079349422] +11:44:23 ============================================================================ +11:44:23 Sending to : +11:44:23 ============================================================================ +11:44:23 + + +waiting on router queue for slot.... +11:44:23 ============================================================================ +11:44:23 Slot Id : <413> +11:44:23 Transaction Type : REQUEST +11:44:23 Received From : +11:44:23 ============================================================================ +11:44:23 FNo. Len. Field Value +11:44:23 ============================================================================ +11:44:23 [ 1] [ 4] [0200] +11:44:23 [ 2] [ 16] [6213548000460095] +11:44:23 [ 3] [ 6] [010000] +11:44:23 [ 4] [ 12] [000010000000] +11:44:23 [ 7] [ 10] [0320114214] +11:44:23 [ 11] [ 6] [942144] +11:44:23 [ 12] [ 6] [114214] +11:44:23 [ 13] [ 4] [0320] +11:44:23 [ 15] [ 4] [0320] +11:44:23 [ 18] [ 4] [6011] +11:44:23 [ 19] [ 3] [418] +11:44:23 [ 22] [ 3] [021] +11:44:23 [ 25] [ 2] [01] +11:44:23 [ 28] [ 9] [D00002000] +11:44:23 [ 32] [ 6] [668899] +11:44:23 [ 35] [ 32] [6213548000460095=180712016009461] +11:44:23 [ 37] [ 12] [507901963513] +11:44:23 [ 41] [ 8] [03020019] +11:44:23 [ 42] [ 15] [APT ] +11:44:23 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:44:23 [ 49] [ 3] [418] +11:44:23 [ 52] [ 16] [7493671741B089E5] +11:44:23 ============================================================================ +11:44:23 + + +waiting on router queue for slot.... +11:44:23 Sending to : +11:44:23 ============================================================================ +11:44:23 ============================================================================ +11:44:23 Slot Id : <413> +11:44:23 Transaction Type : REQUEST +11:44:23 Received From : +11:44:23 ============================================================================ +11:44:23 FNo. Len. Field Value +11:44:23 ============================================================================ +11:44:23 [ 1] [ 4] [0200] +11:44:23 [ 2] [ 16] [6213548000460095] +11:44:23 [ 3] [ 6] [010000] +11:44:23 [ 4] [ 12] [000010000000] +11:44:23 [ 7] [ 10] [0320114214] +11:44:23 [ 11] [ 6] [942144] +11:44:23 [ 12] [ 6] [114214] +11:44:23 [ 13] [ 4] [0320] +11:44:23 [ 15] [ 4] [0320] +11:44:23 [ 18] [ 4] [6011] +11:44:23 [ 19] [ 3] [418] +11:44:23 [ 22] [ 3] [021] +11:44:23 [ 25] [ 2] [01] +11:44:23 [ 28] [ 9] [D00002000] +11:44:23 [ 32] [ 6] [668899] +11:44:23 [ 35] [ 32] [6213548000460095=180712016009461] +11:44:23 [ 37] [ 12] [507901963513] +11:44:23 [ 41] [ 8] [03020019] +11:44:23 [ 42] [ 15] [APT ] +11:44:23 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:44:23 [ 49] [ 3] [418] +11:44:23 [ 52] [ 16] [64A7701DBFE7AC3F] +11:44:23 ============================================================================ +11:44:23 + + +waiting on router queue for slot.... +11:44:23 Sending to : <0> +11:44:23 ============================================================================ +11:44:24 ============================================================================ +11:44:24 Slot Id : <413> +11:44:24 Transaction Type : RESPONSE +11:44:24 Received From : +11:44:24 ============================================================================ +11:44:24 FNo. Len. Field Value +11:44:24 ============================================================================ +11:44:24 [ 1] [ 4] [0210] +11:44:24 [ 2] [ 16] [6213548000460095] +11:44:24 [ 3] [ 6] [010000] +11:44:24 [ 4] [ 12] [000010000000] +11:44:24 [ 7] [ 10] [0320114214] +11:44:24 [ 11] [ 6] [942144] +11:44:24 [ 12] [ 6] [114214] +11:44:24 [ 13] [ 4] [0320] +11:44:24 [ 15] [ 4] [0320] +11:44:24 [ 18] [ 4] [6011] +11:44:24 [ 19] [ 3] [418] +11:44:24 [ 32] [ 6] [668899] +11:44:24 [ 35] [ 32] [6213548000460095=180712016009461] +11:44:24 [ 37] [ 12] [507901963513] +11:44:24 [ 38] [ 6] [565410] +11:44:24 [ 39] [ 2] [00] +11:44:24 [ 41] [ 8] [03020019] +11:44:24 [ 49] [ 3] [418] +11:44:24 [ 54] [ 40] [0001418C0000559998240002418C000055999824] +11:44:24 ============================================================================ +11:44:24 Sending to : +11:44:24 ============================================================================ +11:44:24 + + +waiting on router queue for slot.... +11:44:25 ============================================================================ +11:44:25 Slot Id : <400> +11:44:25 Transaction Type : RESPONSE +11:44:25 Received From : +11:44:25 ============================================================================ +11:44:25 FNo. Len. Field Value +11:44:25 ============================================================================ +11:44:25 [ 1] [ 4] [0210] +11:44:25 [ 2] [ 16] [6213545000648323] +11:44:25 [ 3] [ 6] [011000] +11:44:25 [ 4] [ 12] [000100000000] +11:44:25 [ 7] [ 10] [0320115209] +11:44:25 [ 11] [ 6] [003073] +11:44:25 [ 12] [ 6] [115209] +11:44:25 [ 13] [ 4] [0320] +11:44:25 [ 15] [ 4] [0320] +11:44:25 [ 18] [ 4] [6011] +11:44:25 [ 32] [ 6] [220699] +11:44:25 [ 35] [ 32] [6213545000648323=491212014832574] +11:44:25 [ 37] [ 12] [507900186735] +11:44:25 [ 38] [ 6] [751323] +11:44:25 [ 39] [ 2] [00] +11:44:25 [ 41] [ 8] [08000100] +11:44:25 [ 49] [ 3] [418] +11:44:25 [ 54] [ 40] [1001418C0000793494221002418C000079349422] +11:44:25 ============================================================================ +11:44:25 Calculate Source COMM Id = 1 +11:44:25 ============================================================================ +11:44:25 + + +waiting on router queue for slot.... +11:44:26 ============================================================================ +11:44:26 Slot Id : <413> +11:44:26 Transaction Type : RESPONSE +11:44:26 Received From : +11:44:26 ============================================================================ +11:44:26 FNo. Len. Field Value +11:44:26 ============================================================================ +11:44:26 [ 1] [ 4] [0210] +11:44:26 [ 2] [ 16] [6213548000460095] +11:44:26 [ 3] [ 6] [010000] +11:44:26 [ 4] [ 12] [000010000000] +11:44:26 [ 7] [ 10] [0320114214] +11:44:26 [ 11] [ 6] [942144] +11:44:26 [ 12] [ 6] [114214] +11:44:26 [ 13] [ 4] [0320] +11:44:26 [ 15] [ 4] [0320] +11:44:26 [ 18] [ 4] [6011] +11:44:26 [ 19] [ 3] [418] +11:44:26 [ 32] [ 6] [668899] +11:44:26 [ 35] [ 32] [6213548000460095=180712016009461] +11:44:26 [ 37] [ 12] [507901963513] +11:44:26 [ 38] [ 6] [565410] +11:44:26 [ 39] [ 2] [00] +11:44:26 [ 41] [ 8] [03020019] +11:44:26 [ 49] [ 3] [418] +11:44:26 [ 54] [ 40] [0001418C0000559998240002418C000055999824] +11:44:26 ============================================================================ +11:44:26 Calculate Source COMM Id = 4 +11:44:26 ============================================================================ +11:44:26 + + +waiting on router queue for slot.... +11:44:32 ============================================================================ +11:44:32 Slot Id : <397> +11:44:32 Transaction Type : REQUEST +11:44:32 Received From : +11:44:32 ============================================================================ +11:44:32 FNo. Len. Field Value +11:44:32 ============================================================================ +11:44:32 [ 1] [ 4] [0200] +11:44:32 [ 2] [ 16] [6213545000151369] +11:44:32 [ 3] [ 6] [011000] +11:44:32 [ 4] [ 12] [000020000000] +11:44:32 [ 7] [ 10] [0320044338] +11:44:32 [ 11] [ 6] [268694] +11:44:32 [ 12] [ 6] [114338] +11:44:32 [ 13] [ 4] [0320] +11:44:32 [ 14] [ 4] [4912] +11:44:32 [ 15] [ 4] [0320] +11:44:32 [ 18] [ 4] [6011] +11:44:32 [ 19] [ 3] [418] +11:44:32 [ 22] [ 3] [021] +11:44:32 [ 25] [ 2] [01] +11:44:32 [ 28] [ 9] [D00002000] +11:44:32 [ 32] [ 6] [180893] +11:44:32 [ 35] [ 32] [6213545000151369=491212015136228] +11:44:32 [ 37] [ 12] [507904268694] +11:44:32 [ 41] [ 8] [0221XKKM] +11:44:32 [ 42] [ 15] [999999 ] +11:44:32 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:44:32 [ 49] [ 3] [418] +11:44:32 [ 52] [ 16] [E9842753052AC8F6] +11:44:32 ============================================================================ +11:44:32 + + +waiting on router queue for slot.... +11:44:32 Sending to : +11:44:32 ============================================================================ +11:44:32 Sending to : +11:44:32 ============================================================================ +11:44:32 ============================================================================ +11:44:32 Slot Id : <397> +11:44:32 Transaction Type : REQUEST +11:44:32 Received From : +11:44:32 ============================================================================ +11:44:32 FNo. Len. Field Value +11:44:32 ============================================================================ +11:44:32 [ 1] [ 4] [0200] +11:44:32 [ 2] [ 16] [6213545000151369] +11:44:32 [ 3] [ 6] [011000] +11:44:32 [ 4] [ 12] [000020000000] +11:44:32 [ 7] [ 10] [0320044338] +11:44:32 [ 11] [ 6] [268694] +11:44:32 [ 12] [ 6] [114338] +11:44:32 [ 13] [ 4] [0320] +11:44:32 [ 14] [ 4] [4912] +11:44:32 [ 15] [ 4] [0320] +11:44:32 [ 18] [ 4] [6011] +11:44:32 [ 19] [ 3] [418] +11:44:32 [ 22] [ 3] [021] +11:44:32 [ 25] [ 2] [01] +11:44:32 [ 28] [ 9] [D00002000] +11:44:32 [ 32] [ 6] [180893] +11:44:32 [ 35] [ 32] [6213545000151369=491212015136228] +11:44:32 [ 37] [ 12] [507904268694] +11:44:32 [ 41] [ 8] [0221XKKM] +11:44:32 [ 42] [ 15] [999999 ] +11:44:32 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:44:32 [ 49] [ 3] [418] +11:44:32 [ 52] [ 16] [E9842753052AC8F6] +11:44:32 ============================================================================ +11:44:32 + + +waiting on router queue for slot.... +11:44:32 Sending to : +11:44:32 ============================================================================ +11:44:32 ============================================================================ +11:44:32 Slot Id : <397> +11:44:32 Transaction Type : REQUEST +11:44:32 Received From : +11:44:32 ============================================================================ +11:44:32 FNo. Len. Field Value +11:44:32 ============================================================================ +11:44:32 [ 1] [ 4] [0200] +11:44:32 [ 2] [ 16] [6213545000151369] +11:44:32 [ 3] [ 6] [011000] +11:44:32 [ 4] [ 12] [000020000000] +11:44:32 [ 7] [ 10] [0320044338] +11:44:32 [ 11] [ 6] [268694] +11:44:32 [ 12] [ 6] [114338] +11:44:32 [ 13] [ 4] [0320] +11:44:32 [ 14] [ 4] [4912] +11:44:32 [ 15] [ 4] [0320] +11:44:32 [ 18] [ 4] [6011] +11:44:32 [ 19] [ 3] [418] +11:44:32 [ 22] [ 3] [021] +11:44:32 [ 25] [ 2] [01] +11:44:32 [ 28] [ 9] [D00002000] +11:44:32 [ 32] [ 6] [180893] +11:44:32 [ 35] [ 32] [6213545000151369=491212015136228] +11:44:32 [ 37] [ 12] [507904268694] +11:44:32 [ 41] [ 8] [0221XKKM] +11:44:32 [ 42] [ 15] [999999 ] +11:44:32 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:44:32 [ 49] [ 3] [418] +11:44:32 [ 52] [ 16] [A3DA862E392F7A25] +11:44:32 ============================================================================ +11:44:32 + + +waiting on router queue for slot.... +11:44:32 Sending to : <0> +11:44:32 ============================================================================ +11:44:33 ============================================================================ +11:44:33 Slot Id : <397> +11:44:33 Transaction Type : RESPONSE +11:44:33 Received From : +11:44:33 ============================================================================ +11:44:33 FNo. Len. Field Value +11:44:33 ============================================================================ +11:44:33 [ 1] [ 4] [0210] +11:44:33 [ 2] [ 16] [6213545000151369] +11:44:33 [ 3] [ 6] [011000] +11:44:33 [ 4] [ 12] [000020000000] +11:44:33 [ 7] [ 10] [0320044338] +11:44:33 [ 11] [ 6] [268694] +11:44:33 [ 12] [ 6] [114338] +11:44:33 [ 13] [ 4] [0320] +11:44:33 [ 15] [ 4] [0320] +11:44:33 [ 18] [ 4] [6011] +11:44:33 [ 19] [ 3] [418] +11:44:33 [ 32] [ 6] [180893] +11:44:33 [ 35] [ 32] [6213545000151369=491212015136228] +11:44:33 [ 37] [ 12] [507904268694] +11:44:33 [ 38] [ 6] [306082] +11:44:33 [ 39] [ 2] [00] +11:44:33 [ 41] [ 8] [0221XKKM] +11:44:33 [ 49] [ 3] [418] +11:44:33 [ 54] [ 40] [1001418C0000204553481002418C000020455348] +11:44:33 ============================================================================ +11:44:33 Sending to : +11:44:33 ============================================================================ +11:44:33 + + +waiting on router queue for slot.... +11:44:34 ============================================================================ +11:44:34 Slot Id : <397> +11:44:34 Transaction Type : RESPONSE +11:44:34 Received From : +11:44:34 ============================================================================ +11:44:34 FNo. Len. Field Value +11:44:34 ============================================================================ +11:44:34 [ 1] [ 4] [0210] +11:44:34 [ 2] [ 16] [6213545000151369] +11:44:34 [ 3] [ 6] [011000] +11:44:34 [ 4] [ 12] [000020000000] +11:44:34 [ 7] [ 10] [0320044338] +11:44:34 [ 11] [ 6] [268694] +11:44:34 [ 12] [ 6] [114338] +11:44:34 [ 13] [ 4] [0320] +11:44:34 [ 15] [ 4] [0320] +11:44:34 [ 18] [ 4] [6011] +11:44:34 [ 19] [ 3] [418] +11:44:34 [ 32] [ 6] [180893] +11:44:34 [ 35] [ 32] [6213545000151369=491212015136228] +11:44:34 [ 37] [ 12] [507904268694] +11:44:34 [ 38] [ 6] [306082] +11:44:34 [ 39] [ 2] [00] +11:44:34 [ 41] [ 8] [0221XKKM] +11:44:34 [ 49] [ 3] [418] +11:44:34 [ 54] [ 40] [1001418C0000204553481002418C000020455348] +11:44:34 ============================================================================ +11:44:34 Calculate Source COMM Id = 2 +11:44:34 ============================================================================ +11:44:34 + + +waiting on router queue for slot.... +11:44:42 ============================================================================ +11:44:42 Slot Id : <349> +11:44:42 Transaction Type : REQUEST +11:44:42 Received From : +11:44:42 ============================================================================ +11:44:42 FNo. Len. Field Value +11:44:42 ============================================================================ +11:44:42 [ 1] [ 4] [0200] +11:44:42 [ 2] [ 16] [6213544001243937] +11:44:42 [ 3] [ 6] [010000] +11:44:42 [ 4] [ 12] [000005000000] +11:44:42 [ 7] [ 10] [0320114233] +11:44:42 [ 11] [ 6] [942169] +11:44:42 [ 12] [ 6] [114233] +11:44:42 [ 13] [ 4] [0320] +11:44:42 [ 15] [ 4] [0320] +11:44:42 [ 18] [ 4] [6011] +11:44:42 [ 19] [ 3] [418] +11:44:42 [ 22] [ 3] [021] +11:44:42 [ 25] [ 2] [01] +11:44:42 [ 28] [ 9] [D00002000] +11:44:42 [ 32] [ 6] [668899] +11:44:42 [ 35] [ 32] [6213544001243937=491212014393100] +11:44:42 [ 37] [ 12] [507901856372] +11:44:42 [ 41] [ 8] [03311001] +11:44:42 [ 42] [ 15] [APT ] +11:44:42 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:44:42 [ 49] [ 3] [418] +11:44:42 [ 52] [ 16] [DBD4C8494EA6EA8E] +11:44:42 ============================================================================ +11:44:42 + + +waiting on router queue for slot.... +11:44:42 Sending to : +11:44:42 ============================================================================ +11:44:42 Sending to : +11:44:42 ============================================================================ +11:44:42 ============================================================================ +11:44:42 Slot Id : <349> +11:44:42 Transaction Type : REQUEST +11:44:42 Received From : +11:44:42 ============================================================================ +11:44:42 FNo. Len. Field Value +11:44:42 ============================================================================ +11:44:42 [ 1] [ 4] [0200] +11:44:42 [ 2] [ 16] [6213544001243937] +11:44:42 [ 3] [ 6] [010000] +11:44:42 [ 4] [ 12] [000005000000] +11:44:42 [ 7] [ 10] [0320114233] +11:44:42 [ 11] [ 6] [942169] +11:44:42 [ 12] [ 6] [114233] +11:44:42 [ 13] [ 4] [0320] +11:44:42 [ 15] [ 4] [0320] +11:44:42 [ 18] [ 4] [6011] +11:44:42 [ 19] [ 3] [418] +11:44:42 [ 22] [ 3] [021] +11:44:42 [ 25] [ 2] [01] +11:44:42 [ 28] [ 9] [D00002000] +11:44:42 [ 32] [ 6] [668899] +11:44:42 [ 35] [ 32] [6213544001243937=491212014393100] +11:44:42 [ 37] [ 12] [507901856372] +11:44:42 [ 41] [ 8] [03311001] +11:44:42 [ 42] [ 15] [APT ] +11:44:42 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:44:42 [ 49] [ 3] [418] +11:44:42 [ 52] [ 16] [DBD4C8494EA6EA8E] +11:44:42 ============================================================================ +11:44:42 + + +waiting on router queue for slot.... +11:44:42 Sending to : +11:44:42 ============================================================================ +11:44:42 ============================================================================ +11:44:42 Slot Id : <349> +11:44:42 Transaction Type : REQUEST +11:44:42 Received From : +11:44:42 ============================================================================ +11:44:42 FNo. Len. Field Value +11:44:42 ============================================================================ +11:44:42 [ 1] [ 4] [0200] +11:44:42 [ 2] [ 16] [6213544001243937] +11:44:42 [ 3] [ 6] [010000] +11:44:42 [ 4] [ 12] [000005000000] +11:44:42 [ 7] [ 10] [0320114233] +11:44:42 [ 11] [ 6] [942169] +11:44:42 [ 12] [ 6] [114233] +11:44:42 [ 13] [ 4] [0320] +11:44:42 [ 15] [ 4] [0320] +11:44:42 [ 18] [ 4] [6011] +11:44:42 [ 19] [ 3] [418] +11:44:42 [ 22] [ 3] [021] +11:44:42 [ 25] [ 2] [01] +11:44:42 [ 28] [ 9] [D00002000] +11:44:42 [ 32] [ 6] [668899] +11:44:42 [ 35] [ 32] [6213544001243937=491212014393100] +11:44:42 [ 37] [ 12] [507901856372] +11:44:42 [ 41] [ 8] [03311001] +11:44:42 [ 42] [ 15] [APT ] +11:44:42 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:44:42 [ 49] [ 3] [418] +11:44:42 [ 52] [ 16] [C5784CBE7A9E3BD4] +11:44:42 ============================================================================ +11:44:42 + + +waiting on router queue for slot.... +11:44:42 Sending to : <0> +11:44:42 ============================================================================ +11:44:43 ============================================================================ +11:44:43 Slot Id : <349> +11:44:43 Transaction Type : RESPONSE +11:44:43 Received From : +11:44:43 ============================================================================ +11:44:43 FNo. Len. Field Value +11:44:43 ============================================================================ +11:44:43 [ 1] [ 4] [0210] +11:44:43 [ 2] [ 16] [6213544001243937] +11:44:43 [ 3] [ 6] [010000] +11:44:43 [ 4] [ 12] [000005000000] +11:44:43 [ 7] [ 10] [0320114233] +11:44:43 [ 11] [ 6] [942169] +11:44:43 [ 12] [ 6] [114233] +11:44:43 [ 13] [ 4] [0320] +11:44:43 [ 15] [ 4] [0320] +11:44:43 [ 18] [ 4] [6011] +11:44:43 [ 19] [ 3] [418] +11:44:43 [ 32] [ 6] [668899] +11:44:43 [ 35] [ 32] [6213544001243937=491212014393100] +11:44:43 [ 37] [ 12] [507901856372] +11:44:43 [ 38] [ 6] [284048] +11:44:43 [ 39] [ 2] [00] +11:44:43 [ 41] [ 8] [03311001] +11:44:43 [ 49] [ 3] [418] +11:44:43 [ 54] [ 40] [0001418C0000058065900002418C000005806590] +11:44:43 ============================================================================ +11:44:43 Sending to : +11:44:43 ============================================================================ +11:44:43 + + +waiting on router queue for slot.... +11:44:44 ============================================================================ +11:44:44 Slot Id : <349> +11:44:44 Transaction Type : RESPONSE +11:44:44 Received From : +11:44:44 ============================================================================ +11:44:44 FNo. Len. Field Value +11:44:44 ============================================================================ +11:44:44 [ 1] [ 4] [0210] +11:44:44 [ 2] [ 16] [6213544001243937] +11:44:44 [ 3] [ 6] [010000] +11:44:44 [ 4] [ 12] [000005000000] +11:44:44 [ 7] [ 10] [0320114233] +11:44:44 [ 11] [ 6] [942169] +11:44:44 [ 12] [ 6] [114233] +11:44:44 [ 13] [ 4] [0320] +11:44:44 [ 15] [ 4] [0320] +11:44:44 [ 18] [ 4] [6011] +11:44:44 [ 19] [ 3] [418] +11:44:44 [ 32] [ 6] [668899] +11:44:44 [ 35] [ 32] [6213544001243937=491212014393100] +11:44:44 [ 37] [ 12] [507901856372] +11:44:44 [ 38] [ 6] [284048] +11:44:44 [ 39] [ 2] [00] +11:44:44 [ 41] [ 8] [03311001] +11:44:44 [ 49] [ 3] [418] +11:44:44 [ 54] [ 40] [0001418C0000058065900002418C000005806590] +11:44:44 ============================================================================ +11:44:44 Calculate Source COMM Id = 4 +11:44:44 ============================================================================ +11:44:44 + + +waiting on router queue for slot.... +11:44:45 ============================================================================ +11:44:45 Slot Id : <414> +11:44:45 Transaction Type : REQUEST +11:44:45 Received From : +11:44:45 ============================================================================ +11:44:45 FNo. Len. Field Value +11:44:45 ============================================================================ +11:44:45 [ 1] [ 4] [0200] +11:44:45 [ 2] [ 16] [6213541000074388] +11:44:45 [ 3] [ 6] [010000] +11:44:45 [ 4] [ 12] [000100000000] +11:44:45 [ 7] [ 10] [0320044353] +11:44:45 [ 11] [ 6] [268696] +11:44:45 [ 12] [ 6] [114353] +11:44:45 [ 13] [ 4] [0320] +11:44:45 [ 14] [ 4] [4912] +11:44:45 [ 15] [ 4] [0320] +11:44:45 [ 18] [ 4] [6011] +11:44:45 [ 19] [ 3] [418] +11:44:45 [ 22] [ 3] [021] +11:44:45 [ 25] [ 2] [01] +11:44:45 [ 28] [ 9] [D00002000] +11:44:45 [ 32] [ 6] [180893] +11:44:45 [ 35] [ 32] [6213541000074388=491212017438734] +11:44:45 [ 37] [ 12] [507904268696] +11:44:45 [ 41] [ 8] [0112CPBR] +11:44:45 [ 42] [ 15] [999999 ] +11:44:45 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:44:45 [ 49] [ 3] [418] +11:44:45 [ 52] [ 16] [C03666298D33B02B] +11:44:45 ============================================================================ +11:44:45 + + +waiting on router queue for slot.... +11:44:45 Sending to : +11:44:45 ============================================================================ +11:44:45 Sending to : +11:44:45 ============================================================================ +11:44:46 ============================================================================ +11:44:46 Slot Id : <414> +11:44:46 Transaction Type : REQUEST +11:44:46 Received From : +11:44:46 ============================================================================ +11:44:46 FNo. Len. Field Value +11:44:46 ============================================================================ +11:44:46 [ 1] [ 4] [0200] +11:44:46 [ 2] [ 16] [6213541000074388] +11:44:46 [ 3] [ 6] [010000] +11:44:46 [ 4] [ 12] [000100000000] +11:44:46 [ 7] [ 10] [0320044353] +11:44:46 [ 11] [ 6] [268696] +11:44:46 [ 12] [ 6] [114353] +11:44:46 [ 13] [ 4] [0320] +11:44:46 [ 14] [ 4] [4912] +11:44:46 [ 15] [ 4] [0320] +11:44:46 [ 18] [ 4] [6011] +11:44:46 [ 19] [ 3] [418] +11:44:46 [ 22] [ 3] [021] +11:44:46 [ 25] [ 2] [01] +11:44:46 [ 28] [ 9] [D00002000] +11:44:46 [ 32] [ 6] [180893] +11:44:46 [ 35] [ 32] [6213541000074388=491212017438734] +11:44:46 [ 37] [ 12] [507904268696] +11:44:46 [ 41] [ 8] [0112CPBR] +11:44:46 [ 42] [ 15] [999999 ] +11:44:46 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:44:46 [ 49] [ 3] [418] +11:44:46 [ 52] [ 16] [C03666298D33B02B] +11:44:46 ============================================================================ +11:44:46 + + +waiting on router queue for slot.... +11:44:46 Sending to : +11:44:46 ============================================================================ +11:44:46 ============================================================================ +11:44:46 Slot Id : <414> +11:44:46 Transaction Type : REQUEST +11:44:46 Received From : +11:44:46 ============================================================================ +11:44:46 FNo. Len. Field Value +11:44:46 ============================================================================ +11:44:46 [ 1] [ 4] [0200] +11:44:46 [ 2] [ 16] [6213541000074388] +11:44:46 [ 3] [ 6] [010000] +11:44:46 [ 4] [ 12] [000100000000] +11:44:46 [ 7] [ 10] [0320044353] +11:44:46 [ 11] [ 6] [268696] +11:44:46 [ 12] [ 6] [114353] +11:44:46 [ 13] [ 4] [0320] +11:44:46 [ 14] [ 4] [4912] +11:44:46 [ 15] [ 4] [0320] +11:44:46 [ 18] [ 4] [6011] +11:44:46 [ 19] [ 3] [418] +11:44:46 [ 22] [ 3] [021] +11:44:46 [ 25] [ 2] [01] +11:44:46 [ 28] [ 9] [D00002000] +11:44:46 [ 32] [ 6] [180893] +11:44:46 [ 35] [ 32] [6213541000074388=491212017438734] +11:44:46 [ 37] [ 12] [507904268696] +11:44:46 [ 41] [ 8] [0112CPBR] +11:44:46 [ 42] [ 15] [999999 ] +11:44:46 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:44:46 [ 49] [ 3] [418] +11:44:46 [ 52] [ 16] [7E6B13CEE2328364] +11:44:46 ============================================================================ +11:44:46 + + +waiting on router queue for slot.... +11:44:46 Sending to : <0> +11:44:46 ============================================================================ +11:44:46 ============================================================================ +11:44:46 Slot Id : <399> +11:44:46 Transaction Type : REQUEST +11:44:46 Received From : +11:44:46 ============================================================================ +11:44:46 FNo. Len. Field Value +11:44:46 ============================================================================ +11:44:46 [ 1] [ 4] [0200] +11:44:46 [ 2] [ 16] [6213544001621959] +11:44:46 [ 3] [ 6] [010000] +11:44:46 [ 4] [ 12] [000100000000] +11:44:46 [ 7] [ 10] [0320114237] +11:44:46 [ 11] [ 6] [942172] +11:44:46 [ 12] [ 6] [114237] +11:44:46 [ 13] [ 4] [0320] +11:44:46 [ 15] [ 4] [0320] +11:44:46 [ 18] [ 4] [6011] +11:44:46 [ 19] [ 3] [418] +11:44:46 [ 22] [ 3] [021] +11:44:46 [ 25] [ 2] [01] +11:44:46 [ 28] [ 9] [D00002000] +11:44:46 [ 32] [ 6] [668899] +11:44:46 [ 35] [ 32] [6213544001621959=491212012195983] +11:44:46 [ 37] [ 12] [507900270937] +11:44:46 [ 41] [ 8] [03010004] +11:44:46 [ 42] [ 15] [APT ] +11:44:46 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:44:46 [ 49] [ 3] [418] +11:44:46 [ 52] [ 16] [3E185E491A64F264] +11:44:46 ============================================================================ +11:44:46 + + +waiting on router queue for slot.... +11:44:46 Sending to : +11:44:46 ============================================================================ +11:44:46 Sending to : +11:44:46 ============================================================================ +11:44:47 ============================================================================ +11:44:47 Slot Id : <414> +11:44:47 Transaction Type : RESPONSE +11:44:47 Received From : +11:44:47 ============================================================================ +11:44:47 FNo. Len. Field Value +11:44:47 ============================================================================ +11:44:47 [ 1] [ 4] [0210] +11:44:47 [ 2] [ 16] [6213541000074388] +11:44:47 [ 3] [ 6] [010000] +11:44:47 [ 4] [ 12] [000100000000] +11:44:47 [ 7] [ 10] [0320044353] +11:44:47 [ 11] [ 6] [268696] +11:44:47 [ 12] [ 6] [114353] +11:44:47 [ 13] [ 4] [0320] +11:44:47 [ 15] [ 4] [0320] +11:44:47 [ 18] [ 4] [6011] +11:44:47 [ 19] [ 3] [418] +11:44:47 [ 22] [ 3] [021] +11:44:47 [ 32] [ 6] [180893] +11:44:47 [ 35] [ 32] [6213541000074388=491212017438734] +11:44:47 [ 37] [ 12] [507904268696] +11:44:47 [ 38] [ 6] [114442] +11:44:47 [ 39] [ 2] [55] +11:44:47 [ 41] [ 8] [0112CPBR] +11:44:47 [ 49] [ 3] [418] +11:44:47 ============================================================================ +11:44:47 Sending to : +11:44:47 ============================================================================ +11:44:47 + + +waiting on router queue for slot.... +11:44:47 ============================================================================ +11:44:47 Slot Id : <399> +11:44:47 Transaction Type : REQUEST +11:44:47 Received From : +11:44:47 ============================================================================ +11:44:47 FNo. Len. Field Value +11:44:47 ============================================================================ +11:44:47 [ 1] [ 4] [0200] +11:44:47 [ 2] [ 16] [6213544001621959] +11:44:47 [ 3] [ 6] [010000] +11:44:47 [ 4] [ 12] [000100000000] +11:44:47 [ 7] [ 10] [0320114237] +11:44:47 [ 11] [ 6] [942172] +11:44:47 [ 12] [ 6] [114237] +11:44:47 [ 13] [ 4] [0320] +11:44:47 [ 15] [ 4] [0320] +11:44:47 [ 18] [ 4] [6011] +11:44:47 [ 19] [ 3] [418] +11:44:47 [ 22] [ 3] [021] +11:44:47 [ 25] [ 2] [01] +11:44:47 [ 28] [ 9] [D00002000] +11:44:47 [ 32] [ 6] [668899] +11:44:47 [ 35] [ 32] [6213544001621959=491212012195983] +11:44:47 [ 37] [ 12] [507900270937] +11:44:47 [ 41] [ 8] [03010004] +11:44:47 [ 42] [ 15] [APT ] +11:44:47 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:44:47 [ 49] [ 3] [418] +11:44:47 [ 52] [ 16] [3E185E491A64F264] +11:44:47 ============================================================================ +11:44:47 + + +waiting on router queue for slot.... +11:44:47 Sending to : +11:44:47 ============================================================================ +11:44:47 ============================================================================ +11:44:47 Slot Id : <399> +11:44:47 Transaction Type : REQUEST +11:44:47 Received From : +11:44:47 ============================================================================ +11:44:47 FNo. Len. Field Value +11:44:47 ============================================================================ +11:44:47 [ 1] [ 4] [0200] +11:44:47 [ 2] [ 16] [6213544001621959] +11:44:47 [ 3] [ 6] [010000] +11:44:47 [ 4] [ 12] [000100000000] +11:44:47 [ 7] [ 10] [0320114237] +11:44:47 [ 11] [ 6] [942172] +11:44:47 [ 12] [ 6] [114237] +11:44:47 [ 13] [ 4] [0320] +11:44:47 [ 15] [ 4] [0320] +11:44:47 [ 18] [ 4] [6011] +11:44:47 [ 19] [ 3] [418] +11:44:47 [ 22] [ 3] [021] +11:44:47 [ 25] [ 2] [01] +11:44:47 [ 28] [ 9] [D00002000] +11:44:47 [ 32] [ 6] [668899] +11:44:47 [ 35] [ 32] [6213544001621959=491212012195983] +11:44:47 [ 37] [ 12] [507900270937] +11:44:47 [ 41] [ 8] [03010004] +11:44:47 [ 42] [ 15] [APT ] +11:44:47 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +11:44:47 [ 49] [ 3] [418] +11:44:47 [ 52] [ 16] [1B6B83E14D8EC223] +11:44:47 ============================================================================ +11:44:47 + + +waiting on router queue for slot.... +11:44:47 Sending to : <0> +11:44:47 ============================================================================ +11:44:47 ============================================================================ +11:44:47 Slot Id : <394> +11:44:47 Transaction Type : REQUEST +11:44:47 Received From : +11:44:47 ============================================================================ +11:44:47 FNo. Len. Field Value +11:44:47 ============================================================================ +11:44:47 [ 1] [ 4] [0800] +11:44:47 [ 7] [ 10] [0320044355] +11:44:47 [ 11] [ 6] [156150] +11:44:47 [ 70] [ 3] [301] +11:44:47 ============================================================================ +11:44:47 + + +waiting on router queue for slot.... +11:44:47 Sending to : +11:44:47 ============================================================================ +11:44:47 ============================================================================ +11:44:47 Slot Id : <394> +11:44:47 Transaction Type : RESPONSE +11:44:47 Received From : +11:44:47 ============================================================================ +11:44:47 FNo. Len. Field Value +11:44:47 ============================================================================ +11:44:47 [ 1] [ 4] [0810] +11:44:47 [ 7] [ 10] [0320044355] +11:44:47 [ 11] [ 6] [156150] +11:44:47 [ 39] [ 2] [00] +11:44:47 [ 70] [ 3] [301] +11:44:47 ============================================================================ +11:44:47 Calculate Source COMM Id = 2 +11:44:47 ============================================================================ +11:44:47 + + +waiting on router queue for slot.... +11:44:48 ============================================================================ +11:44:48 Slot Id : <399> +11:44:48 Transaction Type : RESPONSE +11:44:48 Received From : +11:44:48 ============================================================================ +11:44:48 FNo. Len. Field Value +11:44:48 ============================================================================ +11:44:48 [ 1] [ 4] [0210] +11:44:48 [ 2] [ 16] [6213544001621959] +11:44:48 [ 3] [ 6] [010000] +11:44:48 [ 4] [ 12] [000100000000] +11:44:48 [ 7] [ 10] [0320114237] +11:44:48 [ 11] [ 6] [942172] +11:44:48 [ 12] [ 6] [114237] +11:44:48 [ 13] [ 4] [0320] +11:44:48 [ 15] [ 4] [0320] +11:44:48 [ 18] [ 4] [6011] +11:44:48 [ 19] [ 3] [418] +11:44:48 [ 32] [ 6] [668899] +11:44:48 [ 35] [ 32] [6213544001621959=491212012195983] +11:44:48 [ 37] [ 12] [507900270937] +11:44:48 [ 38] [ 6] [046317] +11:44:48 [ 39] [ 2] [00] +11:44:48 [ 41] [ 8] [03010004] +11:44:48 [ 49] [ 3] [418] +11:44:48 [ 54] [ 40] [0001418C0000071459470002418C000007145947] +11:44:48 ============================================================================ +11:44:48 Sending to : +11:44:48 ============================================================================ +11:44:48 + + +waiting on router queue for slot.... +11:44:49 ============================================================================ +11:44:49 Slot Id : <414> +11:44:49 Transaction Type : RESPONSE +11:44:49 Received From : +11:44:49 ============================================================================ +11:44:49 FNo. Len. Field Value +11:44:49 ============================================================================ +11:44:49 [ 1] [ 4] [0210] +11:44:49 [ 2] [ 16] [6213541000074388] +11:44:49 [ 3] [ 6] [010000] +11:44:49 [ 4] [ 12] [000100000000] +11:44:49 [ 7] [ 10] [0320044353] +11:44:49 [ 11] [ 6] [268696] +11:44:49 [ 12] [ 6] [114353] +11:44:49 [ 13] [ 4] [0320] +11:44:49 [ 15] [ 4] [0320] +11:44:49 [ 18] [ 4] [6011] +11:44:49 [ 19] [ 3] [418] +11:44:49 [ 22] [ 3] [021] +11:44:49 [ 32] [ 6] [180893] +11:44:49 [ 35] [ 32] [6213541000074388=491212017438734] +11:44:49 [ 37] [ 12] [507904268696] +11:44:49 [ 38] [ 6] [114442] +11:44:49 [ 39] [ 2] [55] +11:44:49 [ 41] [ 8] [0112CPBR] +11:44:49 [ 49] [ 3] [418] +11:44:49 ============================================================================ +11:44:49 Calculate Source COMM Id = 2 +11:44:49 ============================================================================ +11:44:49 + + +waiting on router queue for slot.... +11:44:51 ============================================================================ +11:44:51 Slot Id : <399> +11:44:51 Transaction Type : RESPONSE +11:44:51 Received From : +11:44:51 ============================================================================ +11:44:51 FNo. Len. Field Value +11:44:51 ============================================================================ +11:44:51 [ 1] [ 4] [0210] +11:44:51 [ 2] [ 16] [6213544001621959] +11:44:51 [ 3] [ 6] [010000] +11:44:51 [ 4] [ 12] [000100000000] +11:44:51 [ 7] [ 10] [0320114237] +11:44:51 [ 11] [ 6] [942172] +11:44:51 [ 12] [ 6] [114237] +11:44:51 [ 13] [ 4] [0320] +11:44:51 [ 15] [ 4] [0320] +11:44:51 [ 18] [ 4] [6011] +11:44:51 [ 19] [ 3] [418] +11:44:51 [ 32] [ 6] [668899] +11:44:51 [ 35] [ 32] [6213544001621959=491212012195983] +11:44:51 [ 37] [ 12] [507900270937] +11:44:51 [ 38] [ 6] [046317] +11:44:51 [ 39] [ 2] [00] +11:44:51 [ 41] [ 8] [03010004] +11:44:51 [ 49] [ 3] [418] +11:44:51 [ 54] [ 40] [0001418C0000071459470002418C000007145947] +11:44:51 ============================================================================ +11:44:51 Calculate Source COMM Id = 4 +11:44:51 ============================================================================ +11:44:51 + + +waiting on router queue for slot.... +11:44:54 ============================================================================ +11:44:54 Slot Id : <387> +11:44:54 Transaction Type : REQUEST +11:44:54 Received From : +11:44:54 ============================================================================ +11:44:54 FNo. Len. Field Value +11:44:54 ============================================================================ +11:44:54 [ 1] [ 4] [0800] +11:44:54 [ 7] [ 10] [0320045242] +11:44:54 [ 11] [ 6] [064100] +11:44:54 [ 37] [ 12] [57911064100] +11:44:54 [ 70] [ 3] [301] +11:44:54 ============================================================================ +11:44:54 + + +waiting on router queue for slot.... +11:44:54 Sending to : +11:44:54 ============================================================================ +11:44:54 ============================================================================ +11:44:54 Slot Id : <387> +11:44:54 Transaction Type : RESPONSE +11:44:54 Received From : +11:44:54 ============================================================================ +11:44:54 FNo. Len. Field Value +11:44:54 ============================================================================ +11:44:54 [ 1] [ 4] [0810] +11:44:54 [ 7] [ 10] [0320045242] +11:44:54 [ 11] [ 6] [064100] +11:44:54 [ 37] [ 12] [579110641000] +11:44:54 [ 39] [ 2] [00] +11:44:54 [ 70] [ 3] [810] +11:44:54 ============================================================================ +11:44:54 Calculate Source COMM Id = 1 +11:44:54 ============================================================================ +11:44:54 + + +waiting on router queue for slot.... +11:44:55 ============================================================================ +11:44:55 Slot Id : <372> +11:44:55 Transaction Type : REQUEST +11:44:55 Received From : +11:44:55 ============================================================================ +11:44:55 FNo. Len. Field Value +11:44:55 ============================================================================ +11:44:55 [ 1] [ 4] [0200] +11:44:55 [ 2] [ 16] [6213544002235056] +11:44:55 [ 3] [ 6] [012000] +11:44:55 [ 4] [ 12] [000002000000] +11:44:55 [ 7] [ 10] [0320044402] +11:44:55 [ 11] [ 6] [268700] +11:44:55 [ 12] [ 6] [114402] +11:44:55 [ 13] [ 4] [0320] +11:44:55 [ 14] [ 4] [4912] +11:44:55 [ 15] [ 4] [0320] +11:44:55 [ 18] [ 4] [6011] +11:44:55 [ 19] [ 3] [418] +11:44:55 [ 22] [ 3] [021] +11:44:55 [ 25] [ 2] [01] +11:44:55 [ 28] [ 9] [D00002000] +11:44:55 [ 32] [ 6] [180893] +11:44:55 [ 35] [ 32] [6213544002235056=491212013505625] +11:44:55 [ 37] [ 12] [507904268700] +11:44:55 [ 41] [ 8] [0344SVKV] +11:44:55 [ 42] [ 15] [999999 ] +11:44:55 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +11:44:55 [ 49] [ 3] [418] +11:44:55 [ 52] [ 16] [B17D9BB6769AC1B6] +11:44:55 ============================================================================ +11:44:55 + + +waiting on router queue for slot.... +11:44:55 Sending to : +11:44:55 ============================================================================ +11:44:55 Sending to : +11:44:55 ============================================================================ +11:44:55 ============================================================================ +11:44:55 Slot Id : <418> +11:44:55 Transaction Type : REQUEST +11:44:55 Received From : +11:44:55 ============================================================================ +11:44:55 FNo. Len. Field Value +11:44:55 ============================================================================ +11:44:55 [ 1] [ 4] [0200] +11:44:55 [ 2] [ 16] [1808930600019301] +11:44:55 [ 3] [ 6] [011000] +11:44:55 [ 4] [ 12] [000080000000] +11:44:55 [ 7] [ 10] [0320114451] +11:44:55 [ 11] [ 6] [734400] +11:44:55 [ 12] [ 6] [114451] +11:44:55 [ 13] [ 4] [0320] +11:44:55 [ 15] [ 4] [0320] +11:44:55 [ 18] [ 4] [6011] +11:44:55 [ 22] [ 3] [900] +11:44:55 [ 25] [ 2] [02] +11:44:55 [ 28] [ 9] [D00002000] +11:44:55 [ 32] [ 6] [621354] +11:44:55 [ 35] [ 27] [1808930600019301=1803500363] +11:44:55 [ 37] [ 12] [507904334522] +11:44:55 [ 41] [ 8] [03003200] +11:44:55 [ 42] [ 15] [NATIVE ] +11:44:55 [ 43] [ 40] [SVN Technic College KaisonephomvLAO] +11:44:55 [ 49] [ 3] [418] +11:44:55 [ 52] [ 16] [CDE2AB4A48E7FB4A] +11:44:55 ============================================================================ +11:44:55 + + +waiting on router queue for slot.... +11:44:55 Sending to : +11:44:55 ============================================================================ +11:44:55 Sending to : +11:44:55 ============================================================================ +11:44:55 ============================================================================ +11:44:55 Slot Id : <372> +11:44:55 Transaction Type : REQUEST +11:44:55 Received From : +11:44:55 ============================================================================ +11:44:55 FNo. Len. Field Value +11:44:55 ============================================================================ +11:44:55 [ 1] [ 4] [0200] +11:44:55 [ 2] [ 16] [6213544002235056] +11:44:55 [ 3] [ 6] [012000] +11:44:55 [ 4] [ 12] [000002000000] +11:44:55 [ 7] [ 10] [0320044402] +11:44:55 [ 11] [ 6] [268700] +11:44:55 [ 12] [ 6] [114402] +11:44:55 [ 13] [ 4] [0320] +11:44:55 [ 14] [ 4] [4912] +11:44:55 [ 15] [ 4] [0320] +11:44:55 [ 18] [ 4] [6011] +11:44:55 [ 19] [ 3] [418] +11:44:55 [ 22] [ 3] [021] +11:44:55 [ 25] [ 2] [01] +11:44:55 [ 28] [ 9] [D00002000] +11:44:55 [ 32] [ 6] [180893] +11:44:55 [ 35] [ 32] [6213544002235056=491212013505625] +11:44:55 [ 37] [ 12] [507904268700] +11:44:55 [ 41] [ 8] [0344SVKV] +11:44:55 [ 42] [ 15] [999999 ] +11:44:55 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +11:44:55 [ 49] [ 3] [418] +11:44:55 [ 52] [ 16] [B17D9BB6769AC1B6] +11:44:55 ============================================================================ +11:44:55 + + +waiting on router queue for slot.... +11:44:55 Sending to : +11:44:55 ============================================================================ +11:44:55 ============================================================================ +11:44:55 Slot Id : <372> +11:44:55 Transaction Type : REQUEST +11:44:55 Received From : +11:44:55 ============================================================================ +11:44:55 FNo. Len. Field Value +11:44:55 ============================================================================ +11:44:55 [ 1] [ 4] [0200] +11:44:55 [ 2] [ 16] [6213544002235056] +11:44:55 [ 3] [ 6] [012000] +11:44:55 [ 4] [ 12] [000002000000] +11:44:55 [ 7] [ 10] [0320044402] +11:44:55 [ 11] [ 6] [268700] +11:44:55 [ 12] [ 6] [114402] +11:44:55 [ 13] [ 4] [0320] +11:44:55 [ 14] [ 4] [4912] +11:44:55 [ 15] [ 4] [0320] +11:44:55 [ 18] [ 4] [6011] +11:44:55 [ 19] [ 3] [418] +11:44:55 [ 22] [ 3] [021] +11:44:55 [ 25] [ 2] [01] +11:44:55 [ 28] [ 9] [D00002000] +11:44:55 [ 32] [ 6] [180893] +11:44:55 [ 35] [ 32] [6213544002235056=491212013505625] +11:44:55 [ 37] [ 12] [507904268700] +11:44:55 [ 41] [ 8] [0344SVKV] +11:44:55 [ 42] [ 15] [999999 ] +11:44:55 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +11:44:55 [ 49] [ 3] [418] +11:44:55 [ 52] [ 16] [3514B32877D658E0] +11:44:55 ============================================================================ +11:44:55 + + +waiting on router queue for slot.... +11:44:55 Sending to : <0> +11:44:55 ============================================================================ +11:44:56 ============================================================================ +11:44:56 Slot Id : <418> +11:44:56 Transaction Type : REQUEST +11:44:56 Received From : +11:44:56 ============================================================================ +11:44:56 FNo. Len. Field Value +11:44:56 ============================================================================ +11:44:56 [ 1] [ 4] [0200] +11:44:56 [ 2] [ 16] [1808930600019301] +11:44:56 [ 3] [ 6] [011000] +11:44:56 [ 4] [ 12] [000080000000] +11:44:56 [ 7] [ 10] [0320114451] +11:44:56 [ 11] [ 6] [734400] +11:44:56 [ 12] [ 6] [114451] +11:44:56 [ 13] [ 4] [0320] +11:44:56 [ 15] [ 4] [0320] +11:44:56 [ 18] [ 4] [6011] +11:44:56 [ 22] [ 3] [900] +11:44:56 [ 25] [ 2] [02] +11:44:56 [ 28] [ 9] [D00002000] +11:44:56 [ 32] [ 6] [621354] +11:44:56 [ 35] [ 27] [1808930600019301=1803500363] +11:44:56 [ 37] [ 12] [507904334522] +11:44:56 [ 41] [ 8] [03003200] +11:44:56 [ 42] [ 15] [NATIVE ] +11:44:56 [ 43] [ 40] [SVN Technic College KaisonephomvLAO] +11:44:56 [ 49] [ 3] [418] +11:44:56 [ 52] [ 16] [CDE2AB4A48E7FB4A] +11:44:56 ============================================================================ +11:44:56 + + +waiting on router queue for slot.... +11:44:56 Sending to : +11:44:56 ============================================================================ +11:44:56 ============================================================================ +11:44:56 Slot Id : <418> +11:44:56 Transaction Type : REQUEST +11:44:56 Received From : +11:44:56 ============================================================================ +11:44:56 FNo. Len. Field Value +11:44:56 ============================================================================ +11:44:56 [ 1] [ 4] [0200] +11:44:56 [ 2] [ 16] [1808930600019301] +11:44:56 [ 3] [ 6] [011000] +11:44:56 [ 4] [ 12] [000080000000] +11:44:56 [ 7] [ 10] [0320114451] +11:44:56 [ 11] [ 6] [734400] +11:44:56 [ 12] [ 6] [114451] +11:44:56 [ 13] [ 4] [0320] +11:44:56 [ 15] [ 4] [0320] +11:44:56 [ 18] [ 4] [6011] +11:44:56 [ 22] [ 3] [900] +11:44:56 [ 25] [ 2] [02] +11:44:56 [ 28] [ 9] [D00002000] +11:44:56 [ 32] [ 6] [621354] +11:44:56 [ 35] [ 27] [1808930600019301=1803500363] +11:44:56 [ 37] [ 12] [507904334522] +11:44:56 [ 41] [ 8] [03003200] +11:44:56 [ 42] [ 15] [NATIVE ] +11:44:56 [ 43] [ 40] [SVN Technic College KaisonephomvLAO] +11:44:56 [ 49] [ 3] [418] +11:44:56 [ 52] [ 16] [B9CE988A8F95FA56] +11:44:56 ============================================================================ +11:44:56 + + +waiting on router queue for slot.... +11:44:56 Sending to : <2> +11:44:56 ============================================================================ +11:44:56 ============================================================================ +11:44:56 Slot Id : <372> +11:44:56 Transaction Type : RESPONSE +11:44:56 Received From : +11:44:56 ============================================================================ +11:44:56 FNo. Len. Field Value +11:44:56 ============================================================================ +11:44:56 [ 1] [ 4] [0210] +11:44:56 [ 2] [ 16] [6213544002235056] +11:44:56 [ 3] [ 6] [012000] +11:44:56 [ 4] [ 12] [000002000000] +11:44:56 [ 7] [ 10] [0320044402] +11:44:56 [ 11] [ 6] [268700] +11:44:56 [ 12] [ 6] [114402] +11:44:56 [ 13] [ 4] [0320] +11:44:56 [ 15] [ 4] [0320] +11:44:56 [ 18] [ 4] [6011] +11:44:56 [ 19] [ 3] [418] +11:44:56 [ 32] [ 6] [180893] +11:44:56 [ 35] [ 32] [6213544002235056=491212013505625] +11:44:56 [ 37] [ 12] [507904268700] +11:44:56 [ 38] [ 6] [268700] +11:44:56 [ 39] [ 2] [51] +11:44:56 [ 41] [ 8] [0344SVKV] +11:44:56 [ 49] [ 3] [418] +11:44:56 [ 54] [ 40] [2001418C0000050000002002418C000005000000] +11:44:56 ============================================================================ +11:44:56 Sending to : +11:44:56 ============================================================================ +11:44:56 + + +waiting on router queue for slot.... +11:44:57 ============================================================================ +11:44:57 Slot Id : <372> +11:44:57 Transaction Type : RESPONSE +11:44:57 Received From : +11:44:57 ============================================================================ +11:44:57 FNo. Len. Field Value +11:44:57 ============================================================================ +11:44:57 [ 1] [ 4] [0210] +11:44:57 [ 2] [ 16] [6213544002235056] +11:44:57 [ 3] [ 6] [012000] +11:44:57 [ 4] [ 12] [000002000000] +11:44:57 [ 7] [ 10] [0320044402] +11:44:57 [ 11] [ 6] [268700] +11:44:57 [ 12] [ 6] [114402] +11:44:57 [ 13] [ 4] [0320] +11:44:57 [ 15] [ 4] [0320] +11:44:57 [ 18] [ 4] [6011] +11:44:57 [ 19] [ 3] [418] +11:44:57 [ 32] [ 6] [180893] +11:44:57 [ 35] [ 32] [6213544002235056=491212013505625] +11:44:57 [ 37] [ 12] [507904268700] +11:44:57 [ 38] [ 6] [268700] +11:44:57 [ 39] [ 2] [51] +11:44:57 [ 41] [ 8] [0344SVKV] +11:44:57 [ 49] [ 3] [418] +11:44:57 [ 54] [ 40] [2001418C0000050000002002418C000005000000] +11:44:57 ============================================================================ +11:44:57 Calculate Source COMM Id = 2 +11:44:57 ============================================================================ +11:44:57 + + +waiting on router queue for slot.... +11:44:57 ============================================================================ +11:44:57 Slot Id : <418> +11:44:57 Transaction Type : RESPONSE +11:44:57 Received From : +11:44:57 ============================================================================ +11:44:57 FNo. Len. Field Value +11:44:57 ============================================================================ +11:44:57 [ 1] [ 4] [0210] +11:44:57 [ 2] [ 16] [1808930600019301] +11:44:57 [ 3] [ 6] [011000] +11:44:57 [ 4] [ 12] [000080000000] +11:44:57 [ 6] [ 12] [000080000000] +11:44:57 [ 7] [ 10] [0320114451] +11:44:57 [ 11] [ 6] [734400] +11:44:57 [ 12] [ 6] [114451] +11:44:57 [ 13] [ 4] [0320] +11:44:57 [ 18] [ 4] [6011] +11:44:57 [ 19] [ 3] [418] +11:44:57 [ 22] [ 3] [021] +11:44:57 [ 28] [ 9] [D00002000] +11:44:57 [ 32] [ 6] [621354] +11:44:57 [ 35] [ 27] [1808930600019301=1803500363] +11:44:57 [ 37] [ 12] [507904334522] +11:44:57 [ 39] [ 2] [55] +11:44:57 [ 41] [ 8] [03003200] +11:44:57 [ 49] [ 3] [418] +11:44:57 [ 51] [ 3] [418] +11:44:57 [ 52] [ 16] [B9CE988A8F95FA56] +11:44:57 ============================================================================ +11:44:57 Sending to : +11:44:57 ============================================================================ +11:44:57 + + +waiting on router queue for slot.... +11:44:59 ============================================================================ +11:44:59 Slot Id : <418> +11:44:59 Transaction Type : RESPONSE +11:44:59 Received From : +11:44:59 ============================================================================ +11:44:59 FNo. Len. Field Value +11:44:59 ============================================================================ +11:44:59 [ 1] [ 4] [0210] +11:44:59 [ 2] [ 16] [1808930600019301] +11:44:59 [ 3] [ 6] [011000] +11:44:59 [ 4] [ 12] [000080000000] +11:44:59 [ 6] [ 12] [000080000000] +11:44:59 [ 7] [ 10] [0320114451] +11:44:59 [ 11] [ 6] [734400] +11:44:59 [ 12] [ 6] [114451] +11:44:59 [ 13] [ 4] [0320] +11:44:59 [ 18] [ 4] [6011] +11:44:59 [ 19] [ 3] [418] +11:44:59 [ 22] [ 3] [021] +11:44:59 [ 28] [ 9] [D00002000] +11:44:59 [ 32] [ 6] [621354] +11:44:59 [ 35] [ 27] [1808930600019301=1803500363] +11:44:59 [ 37] [ 12] [507904334522] +11:44:59 [ 39] [ 2] [55] +11:44:59 [ 41] [ 8] [03003200] +11:44:59 [ 49] [ 3] [418] +11:44:59 [ 51] [ 3] [418] +11:44:59 [ 52] [ 16] [B9CE988A8F95FA56] +11:44:59 ============================================================================ +11:44:59 Calculate Source COMM Id = 0 +11:44:59 ============================================================================ +11:44:59 + + +waiting on router queue for slot.... +11:44:59 ============================================================================ +11:44:59 Slot Id : <368> +11:44:59 Transaction Type : REQUEST +11:44:59 Received From : +11:44:59 ============================================================================ +11:44:59 FNo. Len. Field Value +11:44:59 ============================================================================ +11:44:59 [ 1] [ 4] [0200] +11:44:59 [ 2] [ 16] [2206990000053801] +11:44:59 [ 3] [ 6] [012000] +11:44:59 [ 4] [ 12] [000010000000] +11:44:59 [ 7] [ 10] [0320114454] +11:44:59 [ 11] [ 6] [734417] +11:44:59 [ 12] [ 6] [114454] +11:44:59 [ 13] [ 4] [0320] +11:44:59 [ 15] [ 4] [0320] +11:44:59 [ 18] [ 4] [6011] +11:44:59 [ 22] [ 3] [900] +11:44:59 [ 25] [ 2] [02] +11:44:59 [ 28] [ 9] [D00002000] +11:44:59 [ 32] [ 6] [621354] +11:44:59 [ 35] [ 32] [2206990000053801=970512616183766] +11:44:59 [ 37] [ 12] [507903324944] +11:44:59 [ 41] [ 8] [13001200] +11:44:59 [ 42] [ 15] [NATIVE ] +11:44:59 [ 43] [ 40] [Mongkot-Laos Hospital Paek LAO] +11:44:59 [ 49] [ 3] [418] +11:44:59 [ 52] [ 16] [FA90BF88A23FB47E] +11:44:59 ============================================================================ +11:44:59 + + +waiting on router queue for slot.... +11:44:59 Sending to : +11:44:59 ============================================================================ +11:44:59 Sending to : +11:44:59 ============================================================================ +11:44:59 ============================================================================ +11:44:59 Slot Id : <368> +11:44:59 Transaction Type : REQUEST +11:44:59 Received From : +11:44:59 ============================================================================ +11:44:59 FNo. Len. Field Value +11:44:59 ============================================================================ +11:44:59 [ 1] [ 4] [0200] +11:44:59 [ 2] [ 16] [2206990000053801] +11:44:59 [ 3] [ 6] [012000] +11:44:59 [ 4] [ 12] [000010000000] +11:44:59 [ 7] [ 10] [0320114454] +11:44:59 [ 11] [ 6] [734417] +11:44:59 [ 12] [ 6] [114454] +11:44:59 [ 13] [ 4] [0320] +11:44:59 [ 15] [ 4] [0320] +11:44:59 [ 18] [ 4] [6011] +11:44:59 [ 22] [ 3] [900] +11:44:59 [ 25] [ 2] [02] +11:44:59 [ 28] [ 9] [D00002000] +11:44:59 [ 32] [ 6] [621354] +11:44:59 [ 35] [ 32] [2206990000053801=970512616183766] +11:44:59 [ 37] [ 12] [507903324944] +11:44:59 [ 41] [ 8] [13001200] +11:44:59 [ 42] [ 15] [NATIVE ] +11:44:59 [ 43] [ 40] [Mongkot-Laos Hospital Paek LAO] +11:44:59 [ 49] [ 3] [418] +11:44:59 [ 52] [ 16] [FA90BF88A23FB47E] +11:44:59 ============================================================================ +11:44:59 + + +waiting on router queue for slot.... +11:44:59 Sending to : +11:44:59 ============================================================================ +11:44:59 ============================================================================ +11:44:59 Slot Id : <368> +11:44:59 Transaction Type : REQUEST +11:44:59 Received From : +11:44:59 ============================================================================ +11:44:59 FNo. Len. Field Value +11:44:59 ============================================================================ +11:44:59 [ 1] [ 4] [0200] +11:44:59 [ 2] [ 16] [2206990000053801] +11:44:59 [ 3] [ 6] [012000] +11:44:59 [ 4] [ 12] [000010000000] +11:44:59 [ 7] [ 10] [0320114454] +11:44:59 [ 11] [ 6] [734417] +11:44:59 [ 12] [ 6] [114454] +11:44:59 [ 13] [ 4] [0320] +11:44:59 [ 15] [ 4] [0320] +11:44:59 [ 18] [ 4] [6011] +11:44:59 [ 22] [ 3] [900] +11:44:59 [ 25] [ 2] [02] +11:44:59 [ 28] [ 9] [D00002000] +11:44:59 [ 32] [ 6] [621354] +11:44:59 [ 35] [ 32] [2206990000053801=970512616183766] +11:44:59 [ 37] [ 12] [507903324944] +11:44:59 [ 41] [ 8] [13001200] +11:44:59 [ 42] [ 15] [NATIVE ] +11:44:59 [ 43] [ 40] [Mongkot-Laos Hospital Paek LAO] +11:44:59 [ 49] [ 3] [418] +11:44:59 [ 52] [ 16] [E0D8576D829378F7] +11:44:59 ============================================================================ +11:44:59 + + +waiting on router queue for slot.... +11:44:59 Sending to : <1> +11:44:59 ============================================================================ +11:45:02 ============================================================================ +11:45:02 Slot Id : <368> +11:45:02 Transaction Type : RESPONSE +11:45:02 Received From : +11:45:02 ============================================================================ +11:45:02 FNo. Len. Field Value +11:45:02 ============================================================================ +11:45:02 [ 1] [ 4] [0210] +11:45:02 [ 2] [ 16] [2206990000053801] +11:45:02 [ 3] [ 6] [012000] +11:45:02 [ 4] [ 12] [000010000000] +11:45:02 [ 7] [ 10] [0320114454] +11:45:02 [ 11] [ 6] [734417] +11:45:02 [ 12] [ 6] [114454] +11:45:02 [ 13] [ 4] [0320] +11:45:02 [ 15] [ 4] [0320] +11:45:02 [ 18] [ 4] [6011] +11:45:02 [ 32] [ 6] [621354] +11:45:02 [ 35] [ 32] [2206990000053801=970512616183766] +11:45:02 [ 37] [ 12] [507903324944] +11:45:02 [ 38] [ 6] [816231] +11:45:02 [ 39] [ 2] [00] +11:45:02 [ 41] [ 8] [13001200] +11:45:02 [ 49] [ 3] [418] +11:45:02 [ 54] [ 40] [2001418C0000157973002002418C000015797300] +11:45:02 ============================================================================ +11:45:02 Sending to : +11:45:02 ============================================================================ +11:45:02 + + +waiting on router queue for slot.... +11:45:03 ============================================================================ +11:45:03 Slot Id : <406> +11:45:03 Transaction Type : REQUEST +11:45:03 Received From : +11:45:03 ============================================================================ +11:45:03 FNo. Len. Field Value +11:45:03 ============================================================================ +11:45:03 [ 1] [ 4] [0200] +11:45:03 [ 2] [ 16] [2206990000051458] +11:45:03 [ 3] [ 6] [012000] +11:45:03 [ 4] [ 12] [000030000000] +11:45:03 [ 7] [ 10] [0320114459] +11:45:03 [ 11] [ 6] [734441] +11:45:03 [ 12] [ 6] [114459] +11:45:03 [ 13] [ 4] [0320] +11:45:03 [ 15] [ 4] [0320] +11:45:03 [ 18] [ 4] [6011] +11:45:03 [ 22] [ 3] [900] +11:45:03 [ 25] [ 2] [02] +11:45:03 [ 28] [ 9] [D00002000] +11:45:03 [ 32] [ 6] [621354] +11:45:03 [ 35] [ 32] [2206990000051458=970412619692451] +11:45:03 [ 37] [ 12] [507902826883] +11:45:03 [ 41] [ 8] [01007600] +11:45:03 [ 42] [ 15] [NATIVE ] +11:45:03 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +11:45:03 [ 49] [ 3] [418] +11:45:03 [ 52] [ 16] [A082128650FF97DE] +11:45:03 ============================================================================ +11:45:03 + + +waiting on router queue for slot.... +11:45:03 Sending to : +11:45:03 ============================================================================ +11:45:03 Sending to : +11:45:03 ============================================================================ +11:45:03 ============================================================================ +11:45:03 Slot Id : <368> +11:45:03 Transaction Type : RESPONSE +11:45:03 Received From : +11:45:03 ============================================================================ +11:45:03 FNo. Len. Field Value +11:45:03 ============================================================================ +11:45:03 [ 1] [ 4] [0210] +11:45:03 [ 2] [ 16] [2206990000053801] +11:45:03 [ 3] [ 6] [012000] +11:45:03 [ 4] [ 12] [000010000000] +11:45:03 [ 7] [ 10] [0320114454] +11:45:03 [ 11] [ 6] [734417] +11:45:03 [ 12] [ 6] [114454] +11:45:03 [ 13] [ 4] [0320] +11:45:03 [ 15] [ 4] [0320] +11:45:03 [ 18] [ 4] [6011] +11:45:03 [ 32] [ 6] [621354] +11:45:03 [ 35] [ 32] [2206990000053801=970512616183766] +11:45:03 [ 37] [ 12] [507903324944] +11:45:03 [ 38] [ 6] [816231] +11:45:03 [ 39] [ 2] [00] +11:45:03 [ 41] [ 8] [13001200] +11:45:03 [ 49] [ 3] [418] +11:45:03 [ 54] [ 40] [2001418C0000157973002002418C000015797300] +11:45:03 ============================================================================ +11:45:03 Calculate Source COMM Id = 0 +11:45:03 ============================================================================ +11:45:03 + + +waiting on router queue for slot.... +11:45:03 ============================================================================ +11:45:03 Slot Id : <419> +11:45:03 Transaction Type : REQUEST +11:45:03 Received From : +11:45:03 ============================================================================ +11:45:03 FNo. Len. Field Value +11:45:03 ============================================================================ +11:45:03 [ 1] [ 4] [0200] +11:45:03 [ 2] [ 16] [6213541000320542] +11:45:03 [ 3] [ 6] [010000] +11:45:03 [ 4] [ 12] [000100000000] +11:45:03 [ 7] [ 10] [0320044411] +11:45:03 [ 11] [ 6] [268703] +11:45:03 [ 12] [ 6] [114411] +11:45:03 [ 13] [ 4] [0320] +11:45:03 [ 14] [ 4] [4912] +11:45:03 [ 15] [ 4] [0320] +11:45:03 [ 18] [ 4] [6011] +11:45:03 [ 19] [ 3] [418] +11:45:03 [ 22] [ 3] [021] +11:45:03 [ 25] [ 2] [01] +11:45:03 [ 28] [ 9] [D00002000] +11:45:03 [ 32] [ 6] [180893] +11:45:03 [ 35] [ 32] [6213541000320542=491212012054325] +11:45:03 [ 37] [ 12] [507904268703] +11:45:03 [ 41] [ 8] [0324BKDT] +11:45:03 [ 42] [ 15] [999999 ] +11:45:03 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:45:03 [ 49] [ 3] [418] +11:45:03 [ 52] [ 16] [CF8B0EB5B4436A33] +11:45:03 ============================================================================ +11:45:03 + + +waiting on router queue for slot.... +11:45:03 Sending to : +11:45:03 ============================================================================ +11:45:03 Sending to : +11:45:03 ============================================================================ +11:45:04 ============================================================================ +11:45:04 Slot Id : <406> +11:45:04 Transaction Type : REQUEST +11:45:04 Received From : +11:45:04 ============================================================================ +11:45:04 FNo. Len. Field Value +11:45:04 ============================================================================ +11:45:04 [ 1] [ 4] [0200] +11:45:04 [ 2] [ 16] [2206990000051458] +11:45:04 [ 3] [ 6] [012000] +11:45:04 [ 4] [ 12] [000030000000] +11:45:04 [ 7] [ 10] [0320114459] +11:45:04 [ 11] [ 6] [734441] +11:45:04 [ 12] [ 6] [114459] +11:45:04 [ 13] [ 4] [0320] +11:45:04 [ 15] [ 4] [0320] +11:45:04 [ 18] [ 4] [6011] +11:45:04 [ 22] [ 3] [900] +11:45:04 [ 25] [ 2] [02] +11:45:04 [ 28] [ 9] [D00002000] +11:45:04 [ 32] [ 6] [621354] +11:45:04 [ 35] [ 32] [2206990000051458=970412619692451] +11:45:04 [ 37] [ 12] [507902826883] +11:45:04 [ 41] [ 8] [01007600] +11:45:04 [ 42] [ 15] [NATIVE ] +11:45:04 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +11:45:04 [ 49] [ 3] [418] +11:45:04 [ 52] [ 16] [A082128650FF97DE] +11:45:04 ============================================================================ +11:45:04 + + +waiting on router queue for slot.... +11:45:04 Sending to : +11:45:04 ============================================================================ +11:45:04 ============================================================================ +11:45:04 Slot Id : <406> +11:45:04 Transaction Type : REQUEST +11:45:04 Received From : +11:45:04 ============================================================================ +11:45:04 FNo. Len. Field Value +11:45:04 ============================================================================ +11:45:04 [ 1] [ 4] [0200] +11:45:04 [ 2] [ 16] [2206990000051458] +11:45:04 [ 3] [ 6] [012000] +11:45:04 [ 4] [ 12] [000030000000] +11:45:04 [ 7] [ 10] [0320114459] +11:45:04 [ 11] [ 6] [734441] +11:45:04 [ 12] [ 6] [114459] +11:45:04 [ 13] [ 4] [0320] +11:45:04 [ 15] [ 4] [0320] +11:45:04 [ 18] [ 4] [6011] +11:45:04 [ 22] [ 3] [900] +11:45:04 [ 25] [ 2] [02] +11:45:04 [ 28] [ 9] [D00002000] +11:45:04 [ 32] [ 6] [621354] +11:45:04 [ 35] [ 32] [2206990000051458=970412619692451] +11:45:04 [ 37] [ 12] [507902826883] +11:45:04 [ 41] [ 8] [01007600] +11:45:04 [ 42] [ 15] [NATIVE ] +11:45:04 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +11:45:04 [ 49] [ 3] [418] +11:45:04 [ 52] [ 16] [7D05A45738F166F8] +11:45:04 ============================================================================ +11:45:04 + + +waiting on router queue for slot.... +11:45:04 Sending to : <1> +11:45:04 ============================================================================ +11:45:04 ============================================================================ +11:45:04 Slot Id : <419> +11:45:04 Transaction Type : REQUEST +11:45:04 Received From : +11:45:04 ============================================================================ +11:45:04 FNo. Len. Field Value +11:45:04 ============================================================================ +11:45:04 [ 1] [ 4] [0200] +11:45:04 [ 2] [ 16] [6213541000320542] +11:45:04 [ 3] [ 6] [010000] +11:45:04 [ 4] [ 12] [000100000000] +11:45:04 [ 7] [ 10] [0320044411] +11:45:04 [ 11] [ 6] [268703] +11:45:04 [ 12] [ 6] [114411] +11:45:04 [ 13] [ 4] [0320] +11:45:04 [ 14] [ 4] [4912] +11:45:04 [ 15] [ 4] [0320] +11:45:04 [ 18] [ 4] [6011] +11:45:04 [ 19] [ 3] [418] +11:45:04 [ 22] [ 3] [021] +11:45:04 [ 25] [ 2] [01] +11:45:04 [ 28] [ 9] [D00002000] +11:45:04 [ 32] [ 6] [180893] +11:45:04 [ 35] [ 32] [6213541000320542=491212012054325] +11:45:04 [ 37] [ 12] [507904268703] +11:45:04 [ 41] [ 8] [0324BKDT] +11:45:04 [ 42] [ 15] [999999 ] +11:45:04 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:45:04 [ 49] [ 3] [418] +11:45:04 [ 52] [ 16] [CF8B0EB5B4436A33] +11:45:04 ============================================================================ +11:45:04 + + +waiting on router queue for slot.... +11:45:04 Sending to : +11:45:04 ============================================================================ +11:45:04 ============================================================================ +11:45:04 Slot Id : <419> +11:45:04 Transaction Type : REQUEST +11:45:04 Received From : +11:45:04 ============================================================================ +11:45:04 FNo. Len. Field Value +11:45:04 ============================================================================ +11:45:04 [ 1] [ 4] [0200] +11:45:04 [ 2] [ 16] [6213541000320542] +11:45:04 [ 3] [ 6] [010000] +11:45:04 [ 4] [ 12] [000100000000] +11:45:04 [ 7] [ 10] [0320044411] +11:45:04 [ 11] [ 6] [268703] +11:45:04 [ 12] [ 6] [114411] +11:45:04 [ 13] [ 4] [0320] +11:45:04 [ 14] [ 4] [4912] +11:45:04 [ 15] [ 4] [0320] +11:45:04 [ 18] [ 4] [6011] +11:45:04 [ 19] [ 3] [418] +11:45:04 [ 22] [ 3] [021] +11:45:04 [ 25] [ 2] [01] +11:45:04 [ 28] [ 9] [D00002000] +11:45:04 [ 32] [ 6] [180893] +11:45:04 [ 35] [ 32] [6213541000320542=491212012054325] +11:45:04 [ 37] [ 12] [507904268703] +11:45:04 [ 41] [ 8] [0324BKDT] +11:45:04 [ 42] [ 15] [999999 ] +11:45:04 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:45:04 [ 49] [ 3] [418] +11:45:04 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:45:04 ============================================================================ +11:45:04 + + +waiting on router queue for slot.... +11:45:04 Sending to : <0> +11:45:04 ============================================================================ +11:45:05 ============================================================================ +11:45:05 Slot Id : <419> +11:45:05 Transaction Type : RESPONSE +11:45:05 Received From : +11:45:05 ============================================================================ +11:45:05 FNo. Len. Field Value +11:45:05 ============================================================================ +11:45:05 [ 1] [ 4] [0210] +11:45:05 [ 2] [ 16] [6213541000320542] +11:45:05 [ 3] [ 6] [010000] +11:45:05 [ 4] [ 12] [000100000000] +11:45:05 [ 7] [ 10] [0320044411] +11:45:05 [ 11] [ 6] [268703] +11:45:05 [ 12] [ 6] [114411] +11:45:05 [ 13] [ 4] [0320] +11:45:05 [ 15] [ 4] [0320] +11:45:05 [ 18] [ 4] [6011] +11:45:05 [ 19] [ 3] [418] +11:45:05 [ 32] [ 6] [180893] +11:45:05 [ 35] [ 32] [6213541000320542=491212012054325] +11:45:05 [ 37] [ 12] [507904268703] +11:45:05 [ 38] [ 6] [077467] +11:45:05 [ 39] [ 2] [00] +11:45:05 [ 41] [ 8] [0324BKDT] +11:45:05 [ 49] [ 3] [418] +11:45:05 [ 54] [ 40] [0001418C0005888349510002418C000588834951] +11:45:05 ============================================================================ +11:45:05 Sending to : +11:45:05 ============================================================================ +11:45:05 + + +waiting on router queue for slot.... +11:45:06 ============================================================================ +11:45:06 Slot Id : <406> +11:45:06 Transaction Type : RESPONSE +11:45:06 Received From : +11:45:06 ============================================================================ +11:45:06 FNo. Len. Field Value +11:45:06 ============================================================================ +11:45:06 [ 1] [ 4] [0210] +11:45:06 [ 2] [ 16] [2206990000051458] +11:45:06 [ 3] [ 6] [012000] +11:45:06 [ 4] [ 12] [000030000000] +11:45:06 [ 7] [ 10] [0320114459] +11:45:06 [ 11] [ 6] [734441] +11:45:06 [ 12] [ 6] [114459] +11:45:06 [ 13] [ 4] [0320] +11:45:06 [ 15] [ 4] [0320] +11:45:06 [ 18] [ 4] [6011] +11:45:06 [ 32] [ 6] [621354] +11:45:06 [ 35] [ 32] [2206990000051458=970412619692451] +11:45:06 [ 37] [ 12] [507902826883] +11:45:06 [ 38] [ 6] [499235] +11:45:06 [ 39] [ 2] [00] +11:45:06 [ 41] [ 8] [01007600] +11:45:06 [ 49] [ 3] [418] +11:45:06 [ 54] [ 40] [2001418C0000264203002002418C000026420300] +11:45:06 ============================================================================ +11:45:06 Sending to : +11:45:06 ============================================================================ +11:45:06 + + +waiting on router queue for slot.... +11:45:06 ============================================================================ +11:45:06 Slot Id : <419> +11:45:06 Transaction Type : RESPONSE +11:45:06 Received From : +11:45:06 ============================================================================ +11:45:06 FNo. Len. Field Value +11:45:06 ============================================================================ +11:45:06 [ 1] [ 4] [0210] +11:45:06 [ 2] [ 16] [6213541000320542] +11:45:06 [ 3] [ 6] [010000] +11:45:06 [ 4] [ 12] [000100000000] +11:45:06 [ 7] [ 10] [0320044411] +11:45:06 [ 11] [ 6] [268703] +11:45:06 [ 12] [ 6] [114411] +11:45:06 [ 13] [ 4] [0320] +11:45:06 [ 15] [ 4] [0320] +11:45:06 [ 18] [ 4] [6011] +11:45:06 [ 19] [ 3] [418] +11:45:06 [ 32] [ 6] [180893] +11:45:06 [ 35] [ 32] [6213541000320542=491212012054325] +11:45:06 [ 37] [ 12] [507904268703] +11:45:06 [ 38] [ 6] [077467] +11:45:06 [ 39] [ 2] [00] +11:45:06 [ 41] [ 8] [0324BKDT] +11:45:06 [ 49] [ 3] [418] +11:45:06 [ 54] [ 40] [0001418C0005888349510002418C000588834951] +11:45:06 ============================================================================ +11:45:06 Calculate Source COMM Id = 2 +11:45:06 ============================================================================ +11:45:06 + + +waiting on router queue for slot.... +11:45:08 ============================================================================ +11:45:08 Slot Id : <406> +11:45:08 Transaction Type : RESPONSE +11:45:08 Received From : +11:45:08 ============================================================================ +11:45:08 FNo. Len. Field Value +11:45:08 ============================================================================ +11:45:08 [ 1] [ 4] [0210] +11:45:08 [ 2] [ 16] [2206990000051458] +11:45:08 [ 3] [ 6] [012000] +11:45:08 [ 4] [ 12] [000030000000] +11:45:08 [ 7] [ 10] [0320114459] +11:45:08 [ 11] [ 6] [734441] +11:45:08 [ 12] [ 6] [114459] +11:45:08 [ 13] [ 4] [0320] +11:45:08 [ 15] [ 4] [0320] +11:45:08 [ 18] [ 4] [6011] +11:45:08 [ 32] [ 6] [621354] +11:45:08 [ 35] [ 32] [2206990000051458=970412619692451] +11:45:08 [ 37] [ 12] [507902826883] +11:45:08 [ 38] [ 6] [499235] +11:45:08 [ 39] [ 2] [00] +11:45:08 [ 41] [ 8] [01007600] +11:45:08 [ 49] [ 3] [418] +11:45:08 [ 54] [ 40] [2001418C0000264203002002418C000026420300] +11:45:08 ============================================================================ +11:45:08 Calculate Source COMM Id = 0 +11:45:08 ============================================================================ +11:45:08 + + +waiting on router queue for slot.... +11:45:16 ============================================================================ +11:45:16 Slot Id : <407> +11:45:16 Transaction Type : REQUEST +11:45:16 Received From : +11:45:16 ============================================================================ +11:45:16 FNo. Len. Field Value +11:45:16 ============================================================================ +11:45:16 [ 1] [ 4] [0200] +11:45:16 [ 2] [ 16] [1808930600019301] +11:45:16 [ 3] [ 6] [011000] +11:45:16 [ 4] [ 12] [000080000000] +11:45:16 [ 7] [ 10] [0320114512] +11:45:16 [ 11] [ 6] [734502] +11:45:16 [ 12] [ 6] [114512] +11:45:16 [ 13] [ 4] [0320] +11:45:16 [ 15] [ 4] [0320] +11:45:16 [ 18] [ 4] [6011] +11:45:16 [ 22] [ 3] [900] +11:45:16 [ 25] [ 2] [02] +11:45:16 [ 28] [ 9] [D00002000] +11:45:16 [ 32] [ 6] [621354] +11:45:16 [ 35] [ 27] [1808930600019301=1803500363] +11:45:16 [ 37] [ 12] [507904334524] +11:45:16 [ 41] [ 8] [03003200] +11:45:16 [ 42] [ 15] [NATIVE ] +11:45:16 [ 43] [ 40] [SVN Technic College KaisonephomvLAO] +11:45:16 [ 49] [ 3] [418] +11:45:16 [ 52] [ 16] [62EA7598C54E92AC] +11:45:16 ============================================================================ +11:45:16 + + +waiting on router queue for slot.... +11:45:16 Sending to : +11:45:16 ============================================================================ +11:45:16 Sending to : +11:45:16 ============================================================================ +11:45:17 ============================================================================ +11:45:17 Slot Id : <407> +11:45:17 Transaction Type : REQUEST +11:45:17 Received From : +11:45:17 ============================================================================ +11:45:17 FNo. Len. Field Value +11:45:17 ============================================================================ +11:45:17 [ 1] [ 4] [0200] +11:45:17 [ 2] [ 16] [1808930600019301] +11:45:17 [ 3] [ 6] [011000] +11:45:17 [ 4] [ 12] [000080000000] +11:45:17 [ 7] [ 10] [0320114512] +11:45:17 [ 11] [ 6] [734502] +11:45:17 [ 12] [ 6] [114512] +11:45:17 [ 13] [ 4] [0320] +11:45:17 [ 15] [ 4] [0320] +11:45:17 [ 18] [ 4] [6011] +11:45:17 [ 22] [ 3] [900] +11:45:17 [ 25] [ 2] [02] +11:45:17 [ 28] [ 9] [D00002000] +11:45:17 [ 32] [ 6] [621354] +11:45:17 [ 35] [ 27] [1808930600019301=1803500363] +11:45:17 [ 37] [ 12] [507904334524] +11:45:17 [ 41] [ 8] [03003200] +11:45:17 [ 42] [ 15] [NATIVE ] +11:45:17 [ 43] [ 40] [SVN Technic College KaisonephomvLAO] +11:45:17 [ 49] [ 3] [418] +11:45:17 [ 52] [ 16] [62EA7598C54E92AC] +11:45:17 ============================================================================ +11:45:17 + + +waiting on router queue for slot.... +11:45:17 Sending to : +11:45:17 ============================================================================ +11:45:17 ============================================================================ +11:45:17 Slot Id : <407> +11:45:17 Transaction Type : REQUEST +11:45:17 Received From : +11:45:17 ============================================================================ +11:45:17 FNo. Len. Field Value +11:45:17 ============================================================================ +11:45:17 [ 1] [ 4] [0200] +11:45:17 [ 2] [ 16] [1808930600019301] +11:45:17 [ 3] [ 6] [011000] +11:45:17 [ 4] [ 12] [000080000000] +11:45:17 [ 7] [ 10] [0320114512] +11:45:17 [ 11] [ 6] [734502] +11:45:17 [ 12] [ 6] [114512] +11:45:17 [ 13] [ 4] [0320] +11:45:17 [ 15] [ 4] [0320] +11:45:17 [ 18] [ 4] [6011] +11:45:17 [ 22] [ 3] [900] +11:45:17 [ 25] [ 2] [02] +11:45:17 [ 28] [ 9] [D00002000] +11:45:17 [ 32] [ 6] [621354] +11:45:17 [ 35] [ 27] [1808930600019301=1803500363] +11:45:17 [ 37] [ 12] [507904334524] +11:45:17 [ 41] [ 8] [03003200] +11:45:17 [ 42] [ 15] [NATIVE ] +11:45:17 [ 43] [ 40] [SVN Technic College KaisonephomvLAO] +11:45:17 [ 49] [ 3] [418] +11:45:17 [ 52] [ 16] [20096A09E255907C] +11:45:17 ============================================================================ +11:45:17 + + +waiting on router queue for slot.... +11:45:17 Sending to : <2> +11:45:17 ============================================================================ +11:45:21 ============================================================================ +11:45:21 Slot Id : <407> +11:45:21 Transaction Type : RESPONSE +11:45:21 Received From : +11:45:21 ============================================================================ +11:45:21 FNo. Len. Field Value +11:45:21 ============================================================================ +11:45:21 [ 1] [ 4] [0210] +11:45:21 [ 2] [ 16] [1808930600019301] +11:45:21 [ 3] [ 6] [011000] +11:45:21 [ 4] [ 12] [000080000000] +11:45:21 [ 6] [ 12] [000080000000] +11:45:21 [ 7] [ 10] [0320114512] +11:45:21 [ 11] [ 6] [734502] +11:45:21 [ 12] [ 6] [114512] +11:45:21 [ 13] [ 4] [0320] +11:45:21 [ 18] [ 4] [6011] +11:45:21 [ 19] [ 3] [418] +11:45:21 [ 22] [ 3] [021] +11:45:21 [ 32] [ 6] [621354] +11:45:21 [ 35] [ 27] [1808930600019301=1803500363] +11:45:21 [ 37] [ 12] [507904334524] +11:45:21 [ 38] [ 6] [734502] +11:45:21 [ 39] [ 2] [00] +11:45:21 [ 41] [ 8] [03003200] +11:45:21 [ 49] [ 3] [418] +11:45:21 [ 52] [ 16] [20096A09E255907C] +11:45:21 [ 54] [ 20] [1001418C000006529800] +11:45:21 ============================================================================ +11:45:21 Sending to : +11:45:21 ============================================================================ +11:45:21 + + +waiting on router queue for slot.... +11:45:22 ============================================================================ +11:45:22 Slot Id : <411> +11:45:22 Transaction Type : REQUEST +11:45:22 Received From : +11:45:22 ============================================================================ +11:45:22 FNo. Len. Field Value +11:45:22 ============================================================================ +11:45:22 [ 1] [ 4] [0800] +11:45:22 [ 2] [ 5] [02531] +11:45:22 [ 3] [ 6] [579118] +11:45:22 [ 7] [ 10] [0320044522] +11:45:22 [ 11] [ 6] [807094] +11:45:22 [ 15] [ 10] [0320044522] +11:45:22 [ 37] [ 11] [57911807094] +11:45:22 [ 70] [ 3] [001] +11:45:22 ============================================================================ +11:45:22 + + +waiting on router queue for slot.... +11:45:22 ============================================================================ +11:45:22 Slot Id : <411> +11:45:22 Transaction Type : RESPONSE +11:45:22 Received From : +11:45:22 ============================================================================ +11:45:22 FNo. Len. Field Value +11:45:22 ============================================================================ +11:45:22 [ 1] [ 4] [0810] +11:45:22 [ 7] [ 10] [0320044522] +11:45:22 [ 11] [ 6] [807094] +11:45:22 [ 15] [ 4] [0320] +11:45:22 [ 37] [ 12] [57911807094] +11:45:22 [ 39] [ 2] [00] +11:45:22 [ 70] [ 3] [001] +11:45:22 ============================================================================ +11:45:22 Sending to : +11:45:22 ============================================================================ +11:45:22 + + +waiting on router queue for slot.... +11:45:23 ============================================================================ +11:45:23 Slot Id : <407> +11:45:23 Transaction Type : RESPONSE +11:45:23 Received From : +11:45:23 ============================================================================ +11:45:23 FNo. Len. Field Value +11:45:23 ============================================================================ +11:45:23 [ 1] [ 4] [0210] +11:45:23 [ 2] [ 16] [1808930600019301] +11:45:23 [ 3] [ 6] [011000] +11:45:23 [ 4] [ 12] [000080000000] +11:45:23 [ 6] [ 12] [000080000000] +11:45:23 [ 7] [ 10] [0320114512] +11:45:23 [ 11] [ 6] [734502] +11:45:23 [ 12] [ 6] [114512] +11:45:23 [ 13] [ 4] [0320] +11:45:23 [ 18] [ 4] [6011] +11:45:23 [ 19] [ 3] [418] +11:45:23 [ 22] [ 3] [021] +11:45:23 [ 32] [ 6] [621354] +11:45:23 [ 35] [ 27] [1808930600019301=1803500363] +11:45:23 [ 37] [ 12] [507904334524] +11:45:23 [ 38] [ 6] [734502] +11:45:23 [ 39] [ 2] [00] +11:45:23 [ 41] [ 8] [03003200] +11:45:23 [ 49] [ 3] [418] +11:45:23 [ 52] [ 16] [20096A09E255907C] +11:45:23 [ 54] [ 20] [1001418C000006529800] +11:45:23 ============================================================================ +11:45:23 Calculate Source COMM Id = 0 +11:45:23 ============================================================================ +11:45:23 + + +waiting on router queue for slot.... +11:45:28 ============================================================================ +11:45:28 Slot Id : <380> +11:45:28 Transaction Type : REQUEST +11:45:28 Received From : +11:45:28 ============================================================================ +11:45:28 FNo. Len. Field Value +11:45:28 ============================================================================ +11:45:28 [ 1] [ 4] [0800] +11:45:28 [ 7] [ 10] [0320044436] +11:45:28 [ 11] [ 6] [156151] +11:45:28 [ 70] [ 3] [301] +11:45:28 ============================================================================ +11:45:28 + + +waiting on router queue for slot.... +11:45:28 Sending to : +11:45:28 ============================================================================ +11:45:28 ============================================================================ +11:45:28 Slot Id : <380> +11:45:28 Transaction Type : RESPONSE +11:45:28 Received From : +11:45:28 ============================================================================ +11:45:28 FNo. Len. Field Value +11:45:28 ============================================================================ +11:45:28 [ 1] [ 4] [0810] +11:45:28 [ 7] [ 10] [0320044436] +11:45:28 [ 11] [ 6] [156151] +11:45:28 [ 39] [ 2] [00] +11:45:28 [ 70] [ 3] [301] +11:45:28 ============================================================================ +11:45:28 Calculate Source COMM Id = 2 +11:45:28 ============================================================================ +11:45:28 + + +waiting on router queue for slot.... +11:45:39 ============================================================================ +11:45:39 Slot Id : <384> +11:45:39 Transaction Type : REQUEST +11:45:39 Received From : +11:45:39 ============================================================================ +11:45:39 FNo. Len. Field Value +11:45:39 ============================================================================ +11:45:39 [ 1] [ 4] [0800] +11:45:39 [ 7] [ 10] [0320044446] +11:45:39 [ 11] [ 6] [156152] +11:45:39 [ 70] [ 3] [301] +11:45:39 ============================================================================ +11:45:39 + + +waiting on router queue for slot.... +11:45:39 Sending to : +11:45:39 ============================================================================ +11:45:39 ============================================================================ +11:45:39 Slot Id : <384> +11:45:39 Transaction Type : RESPONSE +11:45:39 Received From : +11:45:39 ============================================================================ +11:45:39 FNo. Len. Field Value +11:45:39 ============================================================================ +11:45:39 [ 1] [ 4] [0810] +11:45:39 [ 7] [ 10] [0320044446] +11:45:39 [ 11] [ 6] [156152] +11:45:39 [ 39] [ 2] [00] +11:45:39 [ 70] [ 3] [301] +11:45:39 ============================================================================ +11:45:39 Calculate Source COMM Id = 2 +11:45:39 ============================================================================ +11:45:39 + + +waiting on router queue for slot.... +11:45:39 ============================================================================ +11:45:39 Slot Id : <416> +11:45:39 Transaction Type : REQUEST +11:45:39 Received From : +11:45:39 ============================================================================ +11:45:39 FNo. Len. Field Value +11:45:39 ============================================================================ +11:45:39 [ 1] [ 4] [0200] +11:45:39 [ 2] [ 16] [6213544002235056] +11:45:39 [ 3] [ 6] [011000] +11:45:39 [ 4] [ 12] [000002000000] +11:45:39 [ 7] [ 10] [0320044446] +11:45:39 [ 11] [ 6] [268707] +11:45:39 [ 12] [ 6] [114446] +11:45:39 [ 13] [ 4] [0320] +11:45:39 [ 14] [ 4] [4912] +11:45:39 [ 15] [ 4] [0320] +11:45:39 [ 18] [ 4] [6011] +11:45:39 [ 19] [ 3] [418] +11:45:39 [ 22] [ 3] [021] +11:45:39 [ 25] [ 2] [01] +11:45:39 [ 28] [ 9] [D00002000] +11:45:39 [ 32] [ 6] [180893] +11:45:39 [ 35] [ 32] [6213544002235056=491212013505625] +11:45:39 [ 37] [ 12] [507904268707] +11:45:39 [ 41] [ 8] [0344SVKV] +11:45:39 [ 42] [ 15] [999999 ] +11:45:39 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +11:45:39 [ 49] [ 3] [418] +11:45:39 [ 52] [ 16] [B17D9BB6769AC1B6] +11:45:39 ============================================================================ +11:45:39 + + +waiting on router queue for slot.... +11:45:39 Sending to : +11:45:39 ============================================================================ +11:45:39 Sending to : +11:45:39 ============================================================================ +11:45:40 ============================================================================ +11:45:40 Slot Id : <416> +11:45:40 Transaction Type : REQUEST +11:45:40 Received From : +11:45:40 ============================================================================ +11:45:40 FNo. Len. Field Value +11:45:40 ============================================================================ +11:45:40 [ 1] [ 4] [0200] +11:45:40 [ 2] [ 16] [6213544002235056] +11:45:40 [ 3] [ 6] [011000] +11:45:40 [ 4] [ 12] [000002000000] +11:45:40 [ 7] [ 10] [0320044446] +11:45:40 [ 11] [ 6] [268707] +11:45:40 [ 12] [ 6] [114446] +11:45:40 [ 13] [ 4] [0320] +11:45:40 [ 14] [ 4] [4912] +11:45:40 [ 15] [ 4] [0320] +11:45:40 [ 18] [ 4] [6011] +11:45:40 [ 19] [ 3] [418] +11:45:40 [ 22] [ 3] [021] +11:45:40 [ 25] [ 2] [01] +11:45:40 [ 28] [ 9] [D00002000] +11:45:40 [ 32] [ 6] [180893] +11:45:40 [ 35] [ 32] [6213544002235056=491212013505625] +11:45:40 [ 37] [ 12] [507904268707] +11:45:40 [ 41] [ 8] [0344SVKV] +11:45:40 [ 42] [ 15] [999999 ] +11:45:40 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +11:45:40 [ 49] [ 3] [418] +11:45:40 [ 52] [ 16] [B17D9BB6769AC1B6] +11:45:40 ============================================================================ +11:45:40 + + +waiting on router queue for slot.... +11:45:40 Sending to : +11:45:40 ============================================================================ +11:45:40 ============================================================================ +11:45:40 Slot Id : <416> +11:45:40 Transaction Type : REQUEST +11:45:40 Received From : +11:45:40 ============================================================================ +11:45:40 FNo. Len. Field Value +11:45:40 ============================================================================ +11:45:40 [ 1] [ 4] [0200] +11:45:40 [ 2] [ 16] [6213544002235056] +11:45:40 [ 3] [ 6] [011000] +11:45:40 [ 4] [ 12] [000002000000] +11:45:40 [ 7] [ 10] [0320044446] +11:45:40 [ 11] [ 6] [268707] +11:45:40 [ 12] [ 6] [114446] +11:45:40 [ 13] [ 4] [0320] +11:45:40 [ 14] [ 4] [4912] +11:45:40 [ 15] [ 4] [0320] +11:45:40 [ 18] [ 4] [6011] +11:45:40 [ 19] [ 3] [418] +11:45:40 [ 22] [ 3] [021] +11:45:40 [ 25] [ 2] [01] +11:45:40 [ 28] [ 9] [D00002000] +11:45:40 [ 32] [ 6] [180893] +11:45:40 [ 35] [ 32] [6213544002235056=491212013505625] +11:45:40 [ 37] [ 12] [507904268707] +11:45:40 [ 41] [ 8] [0344SVKV] +11:45:40 [ 42] [ 15] [999999 ] +11:45:40 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +11:45:40 [ 49] [ 3] [418] +11:45:40 [ 52] [ 16] [3514B32877D658E0] +11:45:40 ============================================================================ +11:45:40 + + +waiting on router queue for slot.... +11:45:40 Sending to : <0> +11:45:40 ============================================================================ +11:45:40 ============================================================================ +11:45:40 Slot Id : <416> +11:45:40 Transaction Type : RESPONSE +11:45:40 Received From : +11:45:40 ============================================================================ +11:45:40 FNo. Len. Field Value +11:45:40 ============================================================================ +11:45:40 [ 1] [ 4] [0210] +11:45:40 [ 2] [ 16] [6213544002235056] +11:45:40 [ 3] [ 6] [011000] +11:45:40 [ 4] [ 12] [000002000000] +11:45:40 [ 7] [ 10] [0320044446] +11:45:40 [ 11] [ 6] [268707] +11:45:40 [ 12] [ 6] [114446] +11:45:40 [ 13] [ 4] [0320] +11:45:40 [ 15] [ 4] [0320] +11:45:40 [ 18] [ 4] [6011] +11:45:40 [ 19] [ 3] [418] +11:45:40 [ 32] [ 6] [180893] +11:45:40 [ 35] [ 32] [6213544002235056=491212013505625] +11:45:40 [ 37] [ 12] [507904268707] +11:45:40 [ 38] [ 6] [268707] +11:45:40 [ 39] [ 2] [51] +11:45:40 [ 41] [ 8] [0344SVKV] +11:45:40 [ 49] [ 3] [418] +11:45:40 [ 54] [ 40] [1001418C0000050000001002418C000005000000] +11:45:40 ============================================================================ +11:45:40 Sending to : +11:45:40 ============================================================================ +11:45:40 + + +waiting on router queue for slot.... +11:45:41 ============================================================================ +11:45:41 Slot Id : <416> +11:45:41 Transaction Type : RESPONSE +11:45:41 Received From : +11:45:41 ============================================================================ +11:45:41 FNo. Len. Field Value +11:45:41 ============================================================================ +11:45:41 [ 1] [ 4] [0210] +11:45:41 [ 2] [ 16] [6213544002235056] +11:45:41 [ 3] [ 6] [011000] +11:45:41 [ 4] [ 12] [000002000000] +11:45:41 [ 7] [ 10] [0320044446] +11:45:41 [ 11] [ 6] [268707] +11:45:41 [ 12] [ 6] [114446] +11:45:41 [ 13] [ 4] [0320] +11:45:41 [ 15] [ 4] [0320] +11:45:41 [ 18] [ 4] [6011] +11:45:41 [ 19] [ 3] [418] +11:45:41 [ 32] [ 6] [180893] +11:45:41 [ 35] [ 32] [6213544002235056=491212013505625] +11:45:41 [ 37] [ 12] [507904268707] +11:45:41 [ 38] [ 6] [268707] +11:45:41 [ 39] [ 2] [51] +11:45:41 [ 41] [ 8] [0344SVKV] +11:45:41 [ 49] [ 3] [418] +11:45:41 [ 54] [ 40] [1001418C0000050000001002418C000005000000] +11:45:41 ============================================================================ +11:45:41 Calculate Source COMM Id = 2 +11:45:41 ============================================================================ +11:45:41 + + +waiting on router queue for slot.... +11:45:42 ============================================================================ +11:45:42 Slot Id : <420> +11:45:42 Transaction Type : REQUEST +11:45:42 Received From : +11:45:42 ============================================================================ +11:45:42 FNo. Len. Field Value +11:45:42 ============================================================================ +11:45:42 [ 1] [ 4] [0200] +11:45:42 [ 2] [ 16] [6213545000648323] +11:45:42 [ 3] [ 6] [011000] +11:45:42 [ 4] [ 12] [000070000000] +11:45:42 [ 7] [ 10] [0320115330] +11:45:42 [ 11] [ 6] [003076] +11:45:42 [ 12] [ 6] [115330] +11:45:42 [ 13] [ 4] [0320] +11:45:42 [ 14] [ 4] [4912] +11:45:42 [ 15] [ 4] [0320] +11:45:42 [ 18] [ 4] [6011] +11:45:42 [ 22] [ 3] [900] +11:45:42 [ 25] [ 2] [02] +11:45:42 [ 28] [ 9] [D00002000] +11:45:42 [ 32] [ 6] [220699] +11:45:42 [ 35] [ 32] [6213545000648323=491212014832574] +11:45:42 [ 37] [ 12] [507900186737] +11:45:42 [ 41] [ 8] [08000100] +11:45:42 [ 42] [ 15] [APTRA ] +11:45:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:45:42 [ 49] [ 3] [418] +11:45:42 [ 52] [ 16] [E15FF7643202E849] +11:45:42 ============================================================================ +11:45:42 + + +waiting on router queue for slot.... +11:45:42 Sending to : +11:45:42 ============================================================================ +11:45:42 Sending to : +11:45:42 ============================================================================ +11:45:43 ============================================================================ +11:45:43 Slot Id : <420> +11:45:43 Transaction Type : REQUEST +11:45:43 Received From : +11:45:43 ============================================================================ +11:45:43 FNo. Len. Field Value +11:45:43 ============================================================================ +11:45:43 [ 1] [ 4] [0200] +11:45:43 [ 2] [ 16] [6213545000648323] +11:45:43 [ 3] [ 6] [011000] +11:45:43 [ 4] [ 12] [000070000000] +11:45:43 [ 7] [ 10] [0320115330] +11:45:43 [ 11] [ 6] [003076] +11:45:43 [ 12] [ 6] [115330] +11:45:43 [ 13] [ 4] [0320] +11:45:43 [ 14] [ 4] [4912] +11:45:43 [ 15] [ 4] [0320] +11:45:43 [ 18] [ 4] [6011] +11:45:43 [ 22] [ 3] [900] +11:45:43 [ 25] [ 2] [02] +11:45:43 [ 28] [ 9] [D00002000] +11:45:43 [ 32] [ 6] [220699] +11:45:43 [ 35] [ 32] [6213545000648323=491212014832574] +11:45:43 [ 37] [ 12] [507900186737] +11:45:43 [ 41] [ 8] [08000100] +11:45:43 [ 42] [ 15] [APTRA ] +11:45:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:45:43 [ 49] [ 3] [418] +11:45:43 [ 52] [ 16] [E15FF7643202E849] +11:45:43 ============================================================================ +11:45:43 + + +waiting on router queue for slot.... +11:45:43 Sending to : +11:45:43 ============================================================================ +11:45:43 ============================================================================ +11:45:43 Slot Id : <420> +11:45:43 Transaction Type : REQUEST +11:45:43 Received From : +11:45:43 ============================================================================ +11:45:43 FNo. Len. Field Value +11:45:43 ============================================================================ +11:45:43 [ 1] [ 4] [0200] +11:45:43 [ 2] [ 16] [6213545000648323] +11:45:43 [ 3] [ 6] [011000] +11:45:43 [ 4] [ 12] [000070000000] +11:45:43 [ 7] [ 10] [0320115330] +11:45:43 [ 11] [ 6] [003076] +11:45:43 [ 12] [ 6] [115330] +11:45:43 [ 13] [ 4] [0320] +11:45:43 [ 14] [ 4] [4912] +11:45:43 [ 15] [ 4] [0320] +11:45:43 [ 18] [ 4] [6011] +11:45:43 [ 22] [ 3] [900] +11:45:43 [ 25] [ 2] [02] +11:45:43 [ 28] [ 9] [D00002000] +11:45:43 [ 32] [ 6] [220699] +11:45:43 [ 35] [ 32] [6213545000648323=491212014832574] +11:45:43 [ 37] [ 12] [507900186737] +11:45:43 [ 41] [ 8] [08000100] +11:45:43 [ 42] [ 15] [APTRA ] +11:45:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:45:43 [ 49] [ 3] [418] +11:45:43 [ 52] [ 16] [5347701FAFCC927C] +11:45:43 ============================================================================ +11:45:43 + + +waiting on router queue for slot.... +11:45:43 Sending to : <0> +11:45:43 ============================================================================ +11:45:43 ============================================================================ +11:45:43 Slot Id : <381> +11:45:43 Transaction Type : REQUEST +11:45:43 Received From : +11:45:43 ============================================================================ +11:45:43 FNo. Len. Field Value +11:45:43 ============================================================================ +11:45:43 [ 1] [ 4] [0200] +11:45:43 [ 2] [ 16] [6213541000074388] +11:45:43 [ 3] [ 6] [010000] +11:45:43 [ 4] [ 12] [000100000000] +11:45:43 [ 7] [ 10] [0320044450] +11:45:43 [ 11] [ 6] [268710] +11:45:43 [ 12] [ 6] [114450] +11:45:43 [ 13] [ 4] [0320] +11:45:43 [ 14] [ 4] [4912] +11:45:43 [ 15] [ 4] [0320] +11:45:43 [ 18] [ 4] [6011] +11:45:43 [ 19] [ 3] [418] +11:45:43 [ 22] [ 3] [021] +11:45:43 [ 25] [ 2] [01] +11:45:43 [ 28] [ 9] [D00002000] +11:45:43 [ 32] [ 6] [180893] +11:45:43 [ 35] [ 32] [6213541000074388=491212017438734] +11:45:43 [ 37] [ 12] [507904268710] +11:45:43 [ 41] [ 8] [0112CPBR] +11:45:43 [ 42] [ 15] [999999 ] +11:45:43 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:45:43 [ 49] [ 3] [418] +11:45:43 [ 52] [ 16] [21FF12776915DFA5] +11:45:43 ============================================================================ +11:45:43 + + +waiting on router queue for slot.... +11:45:43 Sending to : +11:45:43 ============================================================================ +11:45:43 Sending to : +11:45:43 ============================================================================ +11:45:43 ============================================================================ +11:45:43 Slot Id : <420> +11:45:43 Transaction Type : RESPONSE +11:45:43 Received From : +11:45:43 ============================================================================ +11:45:43 FNo. Len. Field Value +11:45:43 ============================================================================ +11:45:43 [ 1] [ 4] [0210] +11:45:43 [ 2] [ 16] [6213545000648323] +11:45:43 [ 3] [ 6] [011000] +11:45:43 [ 4] [ 12] [000070000000] +11:45:43 [ 7] [ 10] [0320115330] +11:45:43 [ 11] [ 6] [003076] +11:45:43 [ 12] [ 6] [115330] +11:45:43 [ 13] [ 4] [0320] +11:45:43 [ 15] [ 4] [0320] +11:45:43 [ 18] [ 4] [6011] +11:45:43 [ 32] [ 6] [220699] +11:45:43 [ 35] [ 32] [6213545000648323=491212014832574] +11:45:43 [ 37] [ 12] [507900186737] +11:45:43 [ 38] [ 6] [974808] +11:45:43 [ 39] [ 2] [00] +11:45:43 [ 41] [ 8] [08000100] +11:45:43 [ 49] [ 3] [418] +11:45:43 [ 54] [ 40] [1001418C0000091494221002418C000009149422] +11:45:43 ============================================================================ +11:45:43 Sending to : +11:45:43 ============================================================================ +11:45:43 + + +waiting on router queue for slot.... +11:45:43 ============================================================================ +11:45:43 Slot Id : <381> +11:45:43 Transaction Type : REQUEST +11:45:43 Received From : +11:45:43 ============================================================================ +11:45:43 FNo. Len. Field Value +11:45:43 ============================================================================ +11:45:43 [ 1] [ 4] [0200] +11:45:43 [ 2] [ 16] [6213541000074388] +11:45:43 [ 3] [ 6] [010000] +11:45:43 [ 4] [ 12] [000100000000] +11:45:43 [ 7] [ 10] [0320044450] +11:45:43 [ 11] [ 6] [268710] +11:45:43 [ 12] [ 6] [114450] +11:45:43 [ 13] [ 4] [0320] +11:45:43 [ 14] [ 4] [4912] +11:45:43 [ 15] [ 4] [0320] +11:45:43 [ 18] [ 4] [6011] +11:45:43 [ 19] [ 3] [418] +11:45:43 [ 22] [ 3] [021] +11:45:43 [ 25] [ 2] [01] +11:45:43 [ 28] [ 9] [D00002000] +11:45:43 [ 32] [ 6] [180893] +11:45:43 [ 35] [ 32] [6213541000074388=491212017438734] +11:45:43 [ 37] [ 12] [507904268710] +11:45:43 [ 41] [ 8] [0112CPBR] +11:45:43 [ 42] [ 15] [999999 ] +11:45:43 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:45:43 [ 49] [ 3] [418] +11:45:43 [ 52] [ 16] [21FF12776915DFA5] +11:45:43 ============================================================================ +11:45:43 + + +waiting on router queue for slot.... +11:45:43 Sending to : +11:45:43 ============================================================================ +11:45:43 ============================================================================ +11:45:43 Slot Id : <381> +11:45:43 Transaction Type : REQUEST +11:45:43 Received From : +11:45:43 ============================================================================ +11:45:43 FNo. Len. Field Value +11:45:43 ============================================================================ +11:45:43 [ 1] [ 4] [0200] +11:45:43 [ 2] [ 16] [6213541000074388] +11:45:43 [ 3] [ 6] [010000] +11:45:43 [ 4] [ 12] [000100000000] +11:45:43 [ 7] [ 10] [0320044450] +11:45:43 [ 11] [ 6] [268710] +11:45:43 [ 12] [ 6] [114450] +11:45:43 [ 13] [ 4] [0320] +11:45:43 [ 14] [ 4] [4912] +11:45:43 [ 15] [ 4] [0320] +11:45:43 [ 18] [ 4] [6011] +11:45:43 [ 19] [ 3] [418] +11:45:43 [ 22] [ 3] [021] +11:45:43 [ 25] [ 2] [01] +11:45:43 [ 28] [ 9] [D00002000] +11:45:43 [ 32] [ 6] [180893] +11:45:43 [ 35] [ 32] [6213541000074388=491212017438734] +11:45:43 [ 37] [ 12] [507904268710] +11:45:43 [ 41] [ 8] [0112CPBR] +11:45:43 [ 42] [ 15] [999999 ] +11:45:43 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:45:43 [ 49] [ 3] [418] +11:45:43 [ 52] [ 16] [9855D7EB9A6392CD] +11:45:43 ============================================================================ +11:45:43 + + +waiting on router queue for slot.... +11:45:43 Sending to : <0> +11:45:43 ============================================================================ +11:45:45 ============================================================================ +11:45:45 Slot Id : <381> +11:45:45 Transaction Type : RESPONSE +11:45:45 Received From : +11:45:45 ============================================================================ +11:45:45 FNo. Len. Field Value +11:45:45 ============================================================================ +11:45:45 [ 1] [ 4] [0210] +11:45:45 [ 2] [ 16] [6213541000074388] +11:45:45 [ 3] [ 6] [010000] +11:45:45 [ 4] [ 12] [000100000000] +11:45:45 [ 7] [ 10] [0320044450] +11:45:45 [ 11] [ 6] [268710] +11:45:45 [ 12] [ 6] [114450] +11:45:45 [ 13] [ 4] [0320] +11:45:45 [ 15] [ 4] [0320] +11:45:45 [ 18] [ 4] [6011] +11:45:45 [ 19] [ 3] [418] +11:45:45 [ 32] [ 6] [180893] +11:45:45 [ 35] [ 32] [6213541000074388=491212017438734] +11:45:45 [ 37] [ 12] [507904268710] +11:45:45 [ 38] [ 6] [566851] +11:45:45 [ 39] [ 2] [00] +11:45:45 [ 41] [ 8] [0112CPBR] +11:45:45 [ 49] [ 3] [418] +11:45:45 [ 54] [ 40] [0001418C0001089041260002418C000108904126] +11:45:45 ============================================================================ +11:45:45 Sending to : +11:45:45 ============================================================================ +11:45:45 + + +waiting on router queue for slot.... +11:45:45 ============================================================================ +11:45:45 Slot Id : <420> +11:45:45 Transaction Type : RESPONSE +11:45:45 Received From : +11:45:45 ============================================================================ +11:45:45 FNo. Len. Field Value +11:45:45 ============================================================================ +11:45:45 [ 1] [ 4] [0210] +11:45:45 [ 2] [ 16] [6213545000648323] +11:45:45 [ 3] [ 6] [011000] +11:45:45 [ 4] [ 12] [000070000000] +11:45:45 [ 7] [ 10] [0320115330] +11:45:45 [ 11] [ 6] [003076] +11:45:45 [ 12] [ 6] [115330] +11:45:45 [ 13] [ 4] [0320] +11:45:45 [ 15] [ 4] [0320] +11:45:45 [ 18] [ 4] [6011] +11:45:45 [ 32] [ 6] [220699] +11:45:45 [ 35] [ 32] [6213545000648323=491212014832574] +11:45:45 [ 37] [ 12] [507900186737] +11:45:45 [ 38] [ 6] [974808] +11:45:45 [ 39] [ 2] [00] +11:45:45 [ 41] [ 8] [08000100] +11:45:45 [ 49] [ 3] [418] +11:45:45 [ 54] [ 40] [1001418C0000091494221002418C000009149422] +11:45:45 ============================================================================ +11:45:45 Calculate Source COMM Id = 1 +11:45:45 ============================================================================ +11:45:45 + + +waiting on router queue for slot.... +11:45:46 ============================================================================ +11:45:46 Slot Id : <415> +11:45:46 Transaction Type : REQUEST +11:45:46 Received From : +11:45:46 ============================================================================ +11:45:46 FNo. Len. Field Value +11:45:46 ============================================================================ +11:45:46 [ 1] [ 4] [0200] +11:45:46 [ 2] [ 16] [6213541000320542] +11:45:46 [ 3] [ 6] [010000] +11:45:46 [ 4] [ 12] [000100000000] +11:45:46 [ 7] [ 10] [0320044453] +11:45:46 [ 11] [ 6] [268713] +11:45:46 [ 12] [ 6] [114453] +11:45:46 [ 13] [ 4] [0320] +11:45:46 [ 14] [ 4] [4912] +11:45:46 [ 15] [ 4] [0320] +11:45:46 [ 18] [ 4] [6011] +11:45:46 [ 19] [ 3] [418] +11:45:46 [ 22] [ 3] [021] +11:45:46 [ 25] [ 2] [01] +11:45:46 [ 28] [ 9] [D00002000] +11:45:46 [ 32] [ 6] [180893] +11:45:46 [ 35] [ 32] [6213541000320542=491212012054325] +11:45:46 [ 37] [ 12] [507904268713] +11:45:46 [ 41] [ 8] [0324BKDT] +11:45:46 [ 42] [ 15] [999999 ] +11:45:46 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:45:46 [ 49] [ 3] [418] +11:45:46 [ 52] [ 16] [CF8B0EB5B4436A33] +11:45:46 ============================================================================ +11:45:46 + + +waiting on router queue for slot.... +11:45:46 Sending to : +11:45:46 ============================================================================ +11:45:46 Sending to : +11:45:46 ============================================================================ +11:45:46 ============================================================================ +11:45:46 Slot Id : <401> +11:45:46 Transaction Type : REQUEST +11:45:46 Received From : +11:45:46 ============================================================================ +11:45:46 FNo. Len. Field Value +11:45:46 ============================================================================ +11:45:46 [ 1] [ 4] [0200] +11:45:46 [ 2] [ 16] [6213544001683884] +11:45:46 [ 3] [ 6] [010000] +11:45:46 [ 4] [ 12] [000010000000] +11:45:46 [ 7] [ 10] [0320114337] +11:45:46 [ 11] [ 6] [942234] +11:45:46 [ 12] [ 6] [114337] +11:45:46 [ 13] [ 4] [0320] +11:45:46 [ 15] [ 4] [0320] +11:45:46 [ 18] [ 4] [6011] +11:45:46 [ 19] [ 3] [418] +11:45:46 [ 22] [ 3] [021] +11:45:46 [ 25] [ 2] [01] +11:45:46 [ 28] [ 9] [D00002000] +11:45:46 [ 32] [ 6] [668899] +11:45:46 [ 35] [ 32] [6213544001683884=491212018388743] +11:45:46 [ 37] [ 12] [507901963516] +11:45:46 [ 41] [ 8] [03020019] +11:45:46 [ 42] [ 15] [APT ] +11:45:46 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:45:46 [ 49] [ 3] [418] +11:45:46 [ 52] [ 16] [E90B6CAC28F0BD6E] +11:45:46 ============================================================================ +11:45:46 + + +waiting on router queue for slot.... +11:45:46 Sending to : +11:45:46 ============================================================================ +11:45:46 Sending to : +11:45:46 ============================================================================ +11:45:46 ============================================================================ +11:45:46 Slot Id : <381> +11:45:46 Transaction Type : RESPONSE +11:45:46 Received From : +11:45:46 ============================================================================ +11:45:46 FNo. Len. Field Value +11:45:46 ============================================================================ +11:45:46 [ 1] [ 4] [0210] +11:45:46 [ 2] [ 16] [6213541000074388] +11:45:46 [ 3] [ 6] [010000] +11:45:46 [ 4] [ 12] [000100000000] +11:45:46 [ 7] [ 10] [0320044450] +11:45:46 [ 11] [ 6] [268710] +11:45:46 [ 12] [ 6] [114450] +11:45:46 [ 13] [ 4] [0320] +11:45:46 [ 15] [ 4] [0320] +11:45:46 [ 18] [ 4] [6011] +11:45:46 [ 19] [ 3] [418] +11:45:46 [ 32] [ 6] [180893] +11:45:46 [ 35] [ 32] [6213541000074388=491212017438734] +11:45:46 [ 37] [ 12] [507904268710] +11:45:46 [ 38] [ 6] [566851] +11:45:46 [ 39] [ 2] [00] +11:45:46 [ 41] [ 8] [0112CPBR] +11:45:46 [ 49] [ 3] [418] +11:45:46 [ 54] [ 40] [0001418C0001089041260002418C000108904126] +11:45:46 ============================================================================ +11:45:46 Calculate Source COMM Id = 2 +11:45:46 ============================================================================ +11:45:46 + + +waiting on router queue for slot.... +11:45:47 ============================================================================ +11:45:47 Slot Id : <415> +11:45:47 Transaction Type : REQUEST +11:45:47 Received From : +11:45:47 ============================================================================ +11:45:47 FNo. Len. Field Value +11:45:47 ============================================================================ +11:45:47 [ 1] [ 4] [0200] +11:45:47 [ 2] [ 16] [6213541000320542] +11:45:47 [ 3] [ 6] [010000] +11:45:47 [ 4] [ 12] [000100000000] +11:45:47 [ 7] [ 10] [0320044453] +11:45:47 [ 11] [ 6] [268713] +11:45:47 [ 12] [ 6] [114453] +11:45:47 [ 13] [ 4] [0320] +11:45:47 [ 14] [ 4] [4912] +11:45:47 [ 15] [ 4] [0320] +11:45:47 [ 18] [ 4] [6011] +11:45:47 [ 19] [ 3] [418] +11:45:47 [ 22] [ 3] [021] +11:45:47 [ 25] [ 2] [01] +11:45:47 [ 28] [ 9] [D00002000] +11:45:47 [ 32] [ 6] [180893] +11:45:47 [ 35] [ 32] [6213541000320542=491212012054325] +11:45:47 [ 37] [ 12] [507904268713] +11:45:47 [ 41] [ 8] [0324BKDT] +11:45:47 [ 42] [ 15] [999999 ] +11:45:47 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:45:47 [ 49] [ 3] [418] +11:45:47 [ 52] [ 16] [CF8B0EB5B4436A33] +11:45:47 ============================================================================ +11:45:47 + + +waiting on router queue for slot.... +11:45:47 Sending to : +11:45:47 ============================================================================ +11:45:47 ============================================================================ +11:45:47 Slot Id : <415> +11:45:47 Transaction Type : REQUEST +11:45:47 Received From : +11:45:47 ============================================================================ +11:45:47 FNo. Len. Field Value +11:45:47 ============================================================================ +11:45:47 [ 1] [ 4] [0200] +11:45:47 [ 2] [ 16] [6213541000320542] +11:45:47 [ 3] [ 6] [010000] +11:45:47 [ 4] [ 12] [000100000000] +11:45:47 [ 7] [ 10] [0320044453] +11:45:47 [ 11] [ 6] [268713] +11:45:47 [ 12] [ 6] [114453] +11:45:47 [ 13] [ 4] [0320] +11:45:47 [ 14] [ 4] [4912] +11:45:47 [ 15] [ 4] [0320] +11:45:47 [ 18] [ 4] [6011] +11:45:47 [ 19] [ 3] [418] +11:45:47 [ 22] [ 3] [021] +11:45:47 [ 25] [ 2] [01] +11:45:47 [ 28] [ 9] [D00002000] +11:45:47 [ 32] [ 6] [180893] +11:45:47 [ 35] [ 32] [6213541000320542=491212012054325] +11:45:47 [ 37] [ 12] [507904268713] +11:45:47 [ 41] [ 8] [0324BKDT] +11:45:47 [ 42] [ 15] [999999 ] +11:45:47 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:45:47 [ 49] [ 3] [418] +11:45:47 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:45:47 ============================================================================ +11:45:47 + + +waiting on router queue for slot.... +11:45:47 Sending to : <0> +11:45:47 ============================================================================ +11:45:47 ============================================================================ +11:45:47 Slot Id : <401> +11:45:47 Transaction Type : REQUEST +11:45:47 Received From : +11:45:47 ============================================================================ +11:45:47 FNo. Len. Field Value +11:45:47 ============================================================================ +11:45:47 [ 1] [ 4] [0200] +11:45:47 [ 2] [ 16] [6213544001683884] +11:45:47 [ 3] [ 6] [010000] +11:45:47 [ 4] [ 12] [000010000000] +11:45:47 [ 7] [ 10] [0320114337] +11:45:47 [ 11] [ 6] [942234] +11:45:47 [ 12] [ 6] [114337] +11:45:47 [ 13] [ 4] [0320] +11:45:47 [ 15] [ 4] [0320] +11:45:47 [ 18] [ 4] [6011] +11:45:47 [ 19] [ 3] [418] +11:45:47 [ 22] [ 3] [021] +11:45:47 [ 25] [ 2] [01] +11:45:47 [ 28] [ 9] [D00002000] +11:45:47 [ 32] [ 6] [668899] +11:45:47 [ 35] [ 32] [6213544001683884=491212018388743] +11:45:47 [ 37] [ 12] [507901963516] +11:45:47 [ 41] [ 8] [03020019] +11:45:47 [ 42] [ 15] [APT ] +11:45:47 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:45:47 [ 49] [ 3] [418] +11:45:47 [ 52] [ 16] [E90B6CAC28F0BD6E] +11:45:47 ============================================================================ +11:45:47 + + +waiting on router queue for slot.... +11:45:47 Sending to : +11:45:47 ============================================================================ +11:45:47 ============================================================================ +11:45:47 Slot Id : <401> +11:45:47 Transaction Type : REQUEST +11:45:47 Received From : +11:45:47 ============================================================================ +11:45:47 FNo. Len. Field Value +11:45:47 ============================================================================ +11:45:47 [ 1] [ 4] [0200] +11:45:47 [ 2] [ 16] [6213544001683884] +11:45:47 [ 3] [ 6] [010000] +11:45:47 [ 4] [ 12] [000010000000] +11:45:47 [ 7] [ 10] [0320114337] +11:45:47 [ 11] [ 6] [942234] +11:45:47 [ 12] [ 6] [114337] +11:45:47 [ 13] [ 4] [0320] +11:45:47 [ 15] [ 4] [0320] +11:45:47 [ 18] [ 4] [6011] +11:45:47 [ 19] [ 3] [418] +11:45:47 [ 22] [ 3] [021] +11:45:47 [ 25] [ 2] [01] +11:45:47 [ 28] [ 9] [D00002000] +11:45:47 [ 32] [ 6] [668899] +11:45:47 [ 35] [ 32] [6213544001683884=491212018388743] +11:45:47 [ 37] [ 12] [507901963516] +11:45:47 [ 41] [ 8] [03020019] +11:45:47 [ 42] [ 15] [APT ] +11:45:47 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:45:47 [ 49] [ 3] [418] +11:45:47 [ 52] [ 16] [852979AF4F61535F] +11:45:47 ============================================================================ +11:45:47 + + +waiting on router queue for slot.... +11:45:47 Sending to : <0> +11:45:47 ============================================================================ +11:45:47 ============================================================================ +11:45:47 Slot Id : <415> +11:45:47 Transaction Type : RESPONSE +11:45:47 Received From : +11:45:47 ============================================================================ +11:45:47 FNo. Len. Field Value +11:45:47 ============================================================================ +11:45:47 [ 1] [ 4] [0210] +11:45:47 [ 2] [ 16] [6213541000320542] +11:45:47 [ 3] [ 6] [010000] +11:45:47 [ 4] [ 12] [000100000000] +11:45:47 [ 7] [ 10] [0320044453] +11:45:47 [ 11] [ 6] [268713] +11:45:47 [ 12] [ 6] [114453] +11:45:47 [ 13] [ 4] [0320] +11:45:47 [ 15] [ 4] [0320] +11:45:47 [ 18] [ 4] [6011] +11:45:47 [ 19] [ 3] [418] +11:45:47 [ 32] [ 6] [180893] +11:45:47 [ 35] [ 32] [6213541000320542=491212012054325] +11:45:47 [ 37] [ 12] [507904268713] +11:45:47 [ 38] [ 6] [770525] +11:45:47 [ 39] [ 2] [00] +11:45:47 [ 41] [ 8] [0324BKDT] +11:45:47 [ 49] [ 3] [418] +11:45:47 [ 54] [ 40] [0001418C0004886349510002418C000488634951] +11:45:47 ============================================================================ +11:45:47 Sending to : +11:45:47 ============================================================================ +11:45:47 + + +waiting on router queue for slot.... +11:45:48 ============================================================================ +11:45:48 Slot Id : <401> +11:45:48 Transaction Type : RESPONSE +11:45:48 Received From : +11:45:48 ============================================================================ +11:45:48 FNo. Len. Field Value +11:45:48 ============================================================================ +11:45:48 [ 1] [ 4] [0210] +11:45:48 [ 2] [ 16] [6213544001683884] +11:45:48 [ 3] [ 6] [010000] +11:45:48 [ 4] [ 12] [000010000000] +11:45:48 [ 7] [ 10] [0320114337] +11:45:48 [ 11] [ 6] [942234] +11:45:48 [ 12] [ 6] [114337] +11:45:48 [ 13] [ 4] [0320] +11:45:48 [ 15] [ 4] [0320] +11:45:48 [ 18] [ 4] [6011] +11:45:48 [ 19] [ 3] [418] +11:45:48 [ 32] [ 6] [668899] +11:45:48 [ 35] [ 32] [6213544001683884=491212018388743] +11:45:48 [ 37] [ 12] [507901963516] +11:45:48 [ 38] [ 6] [888529] +11:45:48 [ 39] [ 2] [00] +11:45:48 [ 41] [ 8] [03020019] +11:45:48 [ 49] [ 3] [418] +11:45:48 [ 54] [ 40] [0001418C0000102106830002418C000010210683] +11:45:48 ============================================================================ +11:45:48 Sending to : +11:45:48 ============================================================================ +11:45:48 + + +waiting on router queue for slot.... +11:45:49 ============================================================================ +11:45:49 Slot Id : <415> +11:45:49 Transaction Type : RESPONSE +11:45:49 Received From : +11:45:49 ============================================================================ +11:45:49 FNo. Len. Field Value +11:45:49 ============================================================================ +11:45:49 [ 1] [ 4] [0210] +11:45:49 [ 2] [ 16] [6213541000320542] +11:45:49 [ 3] [ 6] [010000] +11:45:49 [ 4] [ 12] [000100000000] +11:45:49 [ 7] [ 10] [0320044453] +11:45:49 [ 11] [ 6] [268713] +11:45:49 [ 12] [ 6] [114453] +11:45:49 [ 13] [ 4] [0320] +11:45:49 [ 15] [ 4] [0320] +11:45:49 [ 18] [ 4] [6011] +11:45:49 [ 19] [ 3] [418] +11:45:49 [ 32] [ 6] [180893] +11:45:49 [ 35] [ 32] [6213541000320542=491212012054325] +11:45:49 [ 37] [ 12] [507904268713] +11:45:49 [ 38] [ 6] [770525] +11:45:49 [ 39] [ 2] [00] +11:45:49 [ 41] [ 8] [0324BKDT] +11:45:49 [ 49] [ 3] [418] +11:45:49 [ 54] [ 40] [0001418C0004886349510002418C000488634951] +11:45:49 ============================================================================ +11:45:49 Calculate Source COMM Id = 2 +11:45:49 ============================================================================ +11:45:49 + + +waiting on router queue for slot.... +11:45:50 ============================================================================ +11:45:50 Slot Id : <401> +11:45:50 Transaction Type : RESPONSE +11:45:50 Received From : +11:45:50 ============================================================================ +11:45:50 FNo. Len. Field Value +11:45:50 ============================================================================ +11:45:50 [ 1] [ 4] [0210] +11:45:50 [ 2] [ 16] [6213544001683884] +11:45:50 [ 3] [ 6] [010000] +11:45:50 [ 4] [ 12] [000010000000] +11:45:50 [ 7] [ 10] [0320114337] +11:45:50 [ 11] [ 6] [942234] +11:45:50 [ 12] [ 6] [114337] +11:45:50 [ 13] [ 4] [0320] +11:45:50 [ 15] [ 4] [0320] +11:45:50 [ 18] [ 4] [6011] +11:45:50 [ 19] [ 3] [418] +11:45:50 [ 32] [ 6] [668899] +11:45:50 [ 35] [ 32] [6213544001683884=491212018388743] +11:45:50 [ 37] [ 12] [507901963516] +11:45:50 [ 38] [ 6] [888529] +11:45:50 [ 39] [ 2] [00] +11:45:50 [ 41] [ 8] [03020019] +11:45:50 [ 49] [ 3] [418] +11:45:50 [ 54] [ 40] [0001418C0000102106830002418C000010210683] +11:45:50 ============================================================================ +11:45:50 Calculate Source COMM Id = 4 +11:45:50 ============================================================================ +11:45:50 + + +waiting on router queue for slot.... +11:45:51 ============================================================================ +11:45:51 Slot Id : <398> +11:45:51 Transaction Type : REQUEST +11:45:51 Received From : +11:45:51 ============================================================================ +11:45:51 FNo. Len. Field Value +11:45:51 ============================================================================ +11:45:51 [ 1] [ 4] [0200] +11:45:51 [ 2] [ 16] [6213548000024107] +11:45:51 [ 3] [ 6] [010000] +11:45:51 [ 4] [ 12] [000002000000] +11:45:51 [ 7] [ 10] [0320114341] +11:45:51 [ 11] [ 6] [942238] +11:45:51 [ 12] [ 6] [114341] +11:45:51 [ 13] [ 4] [0320] +11:45:51 [ 15] [ 4] [0320] +11:45:51 [ 18] [ 4] [6011] +11:45:51 [ 19] [ 3] [418] +11:45:51 [ 22] [ 3] [021] +11:45:51 [ 25] [ 2] [01] +11:45:51 [ 28] [ 9] [D00002000] +11:45:51 [ 32] [ 6] [668899] +11:45:51 [ 35] [ 32] [6213548000024107=130612012410044] +11:45:51 [ 37] [ 12] [507901856374] +11:45:51 [ 41] [ 8] [03311001] +11:45:51 [ 42] [ 15] [APT ] +11:45:51 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:45:51 [ 49] [ 3] [418] +11:45:51 [ 52] [ 16] [4F16B332657145A2] +11:45:51 ============================================================================ +11:45:51 + + +waiting on router queue for slot.... +11:45:51 Sending to : +11:45:51 ============================================================================ +11:45:51 Sending to : +11:45:51 ============================================================================ +11:45:51 ============================================================================ +11:45:51 Slot Id : <398> +11:45:51 Transaction Type : REQUEST +11:45:51 Received From : +11:45:51 ============================================================================ +11:45:51 FNo. Len. Field Value +11:45:51 ============================================================================ +11:45:51 [ 1] [ 4] [0200] +11:45:51 [ 2] [ 16] [6213548000024107] +11:45:51 [ 3] [ 6] [010000] +11:45:51 [ 4] [ 12] [000002000000] +11:45:51 [ 7] [ 10] [0320114341] +11:45:51 [ 11] [ 6] [942238] +11:45:51 [ 12] [ 6] [114341] +11:45:51 [ 13] [ 4] [0320] +11:45:51 [ 15] [ 4] [0320] +11:45:51 [ 18] [ 4] [6011] +11:45:51 [ 19] [ 3] [418] +11:45:51 [ 22] [ 3] [021] +11:45:51 [ 25] [ 2] [01] +11:45:51 [ 28] [ 9] [D00002000] +11:45:51 [ 32] [ 6] [668899] +11:45:51 [ 35] [ 32] [6213548000024107=130612012410044] +11:45:51 [ 37] [ 12] [507901856374] +11:45:51 [ 41] [ 8] [03311001] +11:45:51 [ 42] [ 15] [APT ] +11:45:51 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:45:51 [ 49] [ 3] [418] +11:45:51 [ 52] [ 16] [4F16B332657145A2] +11:45:51 ============================================================================ +11:45:51 + + +waiting on router queue for slot.... +11:45:51 Sending to : +11:45:51 ============================================================================ +11:45:51 ============================================================================ +11:45:51 Slot Id : <398> +11:45:51 Transaction Type : REQUEST +11:45:51 Received From : +11:45:51 ============================================================================ +11:45:51 FNo. Len. Field Value +11:45:51 ============================================================================ +11:45:51 [ 1] [ 4] [0200] +11:45:51 [ 2] [ 16] [6213548000024107] +11:45:51 [ 3] [ 6] [010000] +11:45:51 [ 4] [ 12] [000002000000] +11:45:51 [ 7] [ 10] [0320114341] +11:45:51 [ 11] [ 6] [942238] +11:45:51 [ 12] [ 6] [114341] +11:45:51 [ 13] [ 4] [0320] +11:45:51 [ 15] [ 4] [0320] +11:45:51 [ 18] [ 4] [6011] +11:45:51 [ 19] [ 3] [418] +11:45:51 [ 22] [ 3] [021] +11:45:51 [ 25] [ 2] [01] +11:45:51 [ 28] [ 9] [D00002000] +11:45:51 [ 32] [ 6] [668899] +11:45:51 [ 35] [ 32] [6213548000024107=130612012410044] +11:45:51 [ 37] [ 12] [507901856374] +11:45:51 [ 41] [ 8] [03311001] +11:45:51 [ 42] [ 15] [APT ] +11:45:51 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +11:45:51 [ 49] [ 3] [418] +11:45:51 [ 52] [ 16] [151E170C7E751476] +11:45:51 ============================================================================ +11:45:51 + + +waiting on router queue for slot.... +11:45:51 Sending to : <0> +11:45:51 ============================================================================ +11:45:53 ============================================================================ +11:45:53 Slot Id : <398> +11:45:53 Transaction Type : RESPONSE +11:45:53 Received From : +11:45:53 ============================================================================ +11:45:53 FNo. Len. Field Value +11:45:53 ============================================================================ +11:45:53 [ 1] [ 4] [0210] +11:45:53 [ 2] [ 16] [6213548000024107] +11:45:53 [ 3] [ 6] [010000] +11:45:53 [ 4] [ 12] [000002000000] +11:45:53 [ 7] [ 10] [0320114341] +11:45:53 [ 11] [ 6] [942238] +11:45:53 [ 12] [ 6] [114341] +11:45:53 [ 13] [ 4] [0320] +11:45:53 [ 15] [ 4] [0320] +11:45:53 [ 18] [ 4] [6011] +11:45:53 [ 19] [ 3] [418] +11:45:53 [ 32] [ 6] [668899] +11:45:53 [ 35] [ 32] [6213548000024107=130612012410044] +11:45:53 [ 37] [ 12] [507901856374] +11:45:53 [ 38] [ 6] [238754] +11:45:53 [ 39] [ 2] [00] +11:45:53 [ 41] [ 8] [03311001] +11:45:53 [ 49] [ 3] [418] +11:45:53 [ 54] [ 40] [0001418C0000054828750002418C000005482875] +11:45:53 ============================================================================ +11:45:53 Sending to : +11:45:53 ============================================================================ +11:45:53 + + +waiting on router queue for slot.... +11:45:54 ============================================================================ +11:45:54 Slot Id : <398> +11:45:54 Transaction Type : RESPONSE +11:45:54 Received From : +11:45:54 ============================================================================ +11:45:54 FNo. Len. Field Value +11:45:54 ============================================================================ +11:45:54 [ 1] [ 4] [0210] +11:45:54 [ 2] [ 16] [6213548000024107] +11:45:54 [ 3] [ 6] [010000] +11:45:54 [ 4] [ 12] [000002000000] +11:45:54 [ 7] [ 10] [0320114341] +11:45:54 [ 11] [ 6] [942238] +11:45:54 [ 12] [ 6] [114341] +11:45:54 [ 13] [ 4] [0320] +11:45:54 [ 15] [ 4] [0320] +11:45:54 [ 18] [ 4] [6011] +11:45:54 [ 19] [ 3] [418] +11:45:54 [ 32] [ 6] [668899] +11:45:54 [ 35] [ 32] [6213548000024107=130612012410044] +11:45:54 [ 37] [ 12] [507901856374] +11:45:54 [ 38] [ 6] [238754] +11:45:54 [ 39] [ 2] [00] +11:45:54 [ 41] [ 8] [03311001] +11:45:54 [ 49] [ 3] [418] +11:45:54 [ 54] [ 40] [0001418C0000054828750002418C000005482875] +11:45:54 ============================================================================ +11:45:54 Calculate Source COMM Id = 4 +11:45:54 ============================================================================ +11:45:54 + + +waiting on router queue for slot.... +11:46:01 ============================================================================ +11:46:01 Slot Id : <425> +11:46:01 Transaction Type : REQUEST +11:46:01 Received From : +11:46:01 ============================================================================ +11:46:01 FNo. Len. Field Value +11:46:01 ============================================================================ +11:46:01 [ 1] [ 4] [0200] +11:46:01 [ 2] [ 16] [6213545000845374] +11:46:01 [ 3] [ 6] [010000] +11:46:01 [ 4] [ 12] [000050000000] +11:46:01 [ 7] [ 10] [0320044508] +11:46:01 [ 11] [ 6] [268716] +11:46:01 [ 12] [ 6] [114508] +11:46:01 [ 13] [ 4] [0320] +11:46:01 [ 14] [ 4] [4912] +11:46:01 [ 15] [ 4] [0320] +11:46:01 [ 18] [ 4] [6011] +11:46:01 [ 19] [ 3] [418] +11:46:01 [ 22] [ 3] [021] +11:46:01 [ 25] [ 2] [01] +11:46:01 [ 28] [ 9] [D00002000] +11:46:01 [ 32] [ 6] [180893] +11:46:01 [ 35] [ 32] [6213545000845374=491212014537256] +11:46:01 [ 37] [ 12] [507904268716] +11:46:01 [ 41] [ 8] [0221XKKM] +11:46:01 [ 42] [ 15] [999999 ] +11:46:01 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:46:01 [ 49] [ 3] [418] +11:46:01 [ 52] [ 16] [ED26AE1A76216863] +11:46:01 ============================================================================ +11:46:01 + + +waiting on router queue for slot.... +11:46:01 Sending to : +11:46:01 ============================================================================ +11:46:01 Sending to : +11:46:01 ============================================================================ +11:46:01 ============================================================================ +11:46:01 Slot Id : <425> +11:46:01 Transaction Type : REQUEST +11:46:01 Received From : +11:46:01 ============================================================================ +11:46:01 FNo. Len. Field Value +11:46:01 ============================================================================ +11:46:01 [ 1] [ 4] [0200] +11:46:01 [ 2] [ 16] [6213545000845374] +11:46:01 [ 3] [ 6] [010000] +11:46:01 [ 4] [ 12] [000050000000] +11:46:01 [ 7] [ 10] [0320044508] +11:46:01 [ 11] [ 6] [268716] +11:46:01 [ 12] [ 6] [114508] +11:46:01 [ 13] [ 4] [0320] +11:46:01 [ 14] [ 4] [4912] +11:46:01 [ 15] [ 4] [0320] +11:46:01 [ 18] [ 4] [6011] +11:46:01 [ 19] [ 3] [418] +11:46:01 [ 22] [ 3] [021] +11:46:01 [ 25] [ 2] [01] +11:46:01 [ 28] [ 9] [D00002000] +11:46:01 [ 32] [ 6] [180893] +11:46:01 [ 35] [ 32] [6213545000845374=491212014537256] +11:46:01 [ 37] [ 12] [507904268716] +11:46:01 [ 41] [ 8] [0221XKKM] +11:46:01 [ 42] [ 15] [999999 ] +11:46:01 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:46:01 [ 49] [ 3] [418] +11:46:01 [ 52] [ 16] [ED26AE1A76216863] +11:46:01 ============================================================================ +11:46:01 + + +waiting on router queue for slot.... +11:46:01 Sending to : +11:46:01 ============================================================================ +11:46:01 ============================================================================ +11:46:01 Slot Id : <425> +11:46:01 Transaction Type : REQUEST +11:46:01 Received From : +11:46:01 ============================================================================ +11:46:01 FNo. Len. Field Value +11:46:01 ============================================================================ +11:46:01 [ 1] [ 4] [0200] +11:46:01 [ 2] [ 16] [6213545000845374] +11:46:01 [ 3] [ 6] [010000] +11:46:01 [ 4] [ 12] [000050000000] +11:46:01 [ 7] [ 10] [0320044508] +11:46:01 [ 11] [ 6] [268716] +11:46:01 [ 12] [ 6] [114508] +11:46:01 [ 13] [ 4] [0320] +11:46:01 [ 14] [ 4] [4912] +11:46:01 [ 15] [ 4] [0320] +11:46:01 [ 18] [ 4] [6011] +11:46:01 [ 19] [ 3] [418] +11:46:01 [ 22] [ 3] [021] +11:46:01 [ 25] [ 2] [01] +11:46:01 [ 28] [ 9] [D00002000] +11:46:01 [ 32] [ 6] [180893] +11:46:01 [ 35] [ 32] [6213545000845374=491212014537256] +11:46:01 [ 37] [ 12] [507904268716] +11:46:01 [ 41] [ 8] [0221XKKM] +11:46:01 [ 42] [ 15] [999999 ] +11:46:01 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +11:46:01 [ 49] [ 3] [418] +11:46:01 [ 52] [ 16] [8ED3FB51CD4AB68A] +11:46:01 ============================================================================ +11:46:01 + + +waiting on router queue for slot.... +11:46:01 Sending to : <0> +11:46:01 ============================================================================ +11:46:02 ============================================================================ +11:46:02 Slot Id : <425> +11:46:02 Transaction Type : RESPONSE +11:46:02 Received From : +11:46:02 ============================================================================ +11:46:02 FNo. Len. Field Value +11:46:02 ============================================================================ +11:46:02 [ 1] [ 4] [0210] +11:46:02 [ 2] [ 16] [6213545000845374] +11:46:02 [ 3] [ 6] [010000] +11:46:02 [ 4] [ 12] [000050000000] +11:46:02 [ 7] [ 10] [0320044508] +11:46:02 [ 11] [ 6] [268716] +11:46:02 [ 12] [ 6] [114508] +11:46:02 [ 13] [ 4] [0320] +11:46:02 [ 15] [ 4] [0320] +11:46:02 [ 18] [ 4] [6011] +11:46:02 [ 19] [ 3] [418] +11:46:02 [ 32] [ 6] [180893] +11:46:02 [ 35] [ 32] [6213545000845374=491212014537256] +11:46:02 [ 37] [ 12] [507904268716] +11:46:02 [ 38] [ 6] [519598] +11:46:02 [ 39] [ 2] [00] +11:46:02 [ 41] [ 8] [0221XKKM] +11:46:02 [ 49] [ 3] [418] +11:46:02 [ 54] [ 40] [0001418C0002075391110002418C000207539111] +11:46:02 ============================================================================ +11:46:02 Sending to : +11:46:02 ============================================================================ +11:46:02 + + +waiting on router queue for slot.... +11:46:03 ============================================================================ +11:46:03 Slot Id : <433> +11:46:03 Transaction Type : REQUEST +11:46:03 Received From : +11:46:03 ============================================================================ +11:46:03 FNo. Len. Field Value +11:46:03 ============================================================================ +11:46:03 [ 1] [ 4] [0200] +11:46:03 [ 2] [ 16] [6213544001493342] +11:46:03 [ 3] [ 6] [011000] +11:46:03 [ 4] [ 12] [000004000000] +11:46:03 [ 7] [ 10] [0320044511] +11:46:03 [ 11] [ 6] [268719] +11:46:03 [ 12] [ 6] [114511] +11:46:03 [ 13] [ 4] [0320] +11:46:03 [ 14] [ 4] [4912] +11:46:03 [ 15] [ 4] [0320] +11:46:03 [ 18] [ 4] [6011] +11:46:03 [ 19] [ 3] [418] +11:46:03 [ 22] [ 3] [021] +11:46:03 [ 25] [ 2] [01] +11:46:03 [ 28] [ 9] [D00002000] +11:46:03 [ 32] [ 6] [180893] +11:46:03 [ 35] [ 32] [6213544001493342=491212019334991] +11:46:03 [ 37] [ 12] [507904268719] +11:46:03 [ 41] [ 8] [0102SAPA] +11:46:03 [ 42] [ 15] [999999 ] +11:46:03 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +11:46:03 [ 49] [ 3] [418] +11:46:03 [ 52] [ 16] [4F0F2D57F8C1E456] +11:46:03 ============================================================================ +11:46:03 + + +waiting on router queue for slot.... +11:46:03 Sending to : +11:46:03 ============================================================================ +11:46:03 Sending to : +11:46:03 ============================================================================ +11:46:03 ============================================================================ +11:46:03 Slot Id : <425> +11:46:03 Transaction Type : RESPONSE +11:46:03 Received From : +11:46:03 ============================================================================ +11:46:03 FNo. Len. Field Value +11:46:03 ============================================================================ +11:46:03 [ 1] [ 4] [0210] +11:46:03 [ 2] [ 16] [6213545000845374] +11:46:03 [ 3] [ 6] [010000] +11:46:03 [ 4] [ 12] [000050000000] +11:46:03 [ 7] [ 10] [0320044508] +11:46:03 [ 11] [ 6] [268716] +11:46:03 [ 12] [ 6] [114508] +11:46:03 [ 13] [ 4] [0320] +11:46:03 [ 15] [ 4] [0320] +11:46:03 [ 18] [ 4] [6011] +11:46:03 [ 19] [ 3] [418] +11:46:03 [ 32] [ 6] [180893] +11:46:03 [ 35] [ 32] [6213545000845374=491212014537256] +11:46:03 [ 37] [ 12] [507904268716] +11:46:03 [ 38] [ 6] [519598] +11:46:03 [ 39] [ 2] [00] +11:46:03 [ 41] [ 8] [0221XKKM] +11:46:03 [ 49] [ 3] [418] +11:46:03 [ 54] [ 40] [0001418C0002075391110002418C000207539111] +11:46:03 ============================================================================ +11:46:03 Calculate Source COMM Id = 2 +11:46:03 ============================================================================ +11:46:03 + + +waiting on router queue for slot.... +11:46:04 ============================================================================ +11:46:04 Slot Id : <433> +11:46:04 Transaction Type : REQUEST +11:46:04 Received From : +11:46:04 ============================================================================ +11:46:04 FNo. Len. Field Value +11:46:04 ============================================================================ +11:46:04 [ 1] [ 4] [0200] +11:46:04 [ 2] [ 16] [6213544001493342] +11:46:04 [ 3] [ 6] [011000] +11:46:04 [ 4] [ 12] [000004000000] +11:46:04 [ 7] [ 10] [0320044511] +11:46:04 [ 11] [ 6] [268719] +11:46:04 [ 12] [ 6] [114511] +11:46:04 [ 13] [ 4] [0320] +11:46:04 [ 14] [ 4] [4912] +11:46:04 [ 15] [ 4] [0320] +11:46:04 [ 18] [ 4] [6011] +11:46:04 [ 19] [ 3] [418] +11:46:04 [ 22] [ 3] [021] +11:46:04 [ 25] [ 2] [01] +11:46:04 [ 28] [ 9] [D00002000] +11:46:04 [ 32] [ 6] [180893] +11:46:04 [ 35] [ 32] [6213544001493342=491212019334991] +11:46:04 [ 37] [ 12] [507904268719] +11:46:04 [ 41] [ 8] [0102SAPA] +11:46:04 [ 42] [ 15] [999999 ] +11:46:04 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +11:46:04 [ 49] [ 3] [418] +11:46:04 [ 52] [ 16] [4F0F2D57F8C1E456] +11:46:04 ============================================================================ +11:46:04 + + +waiting on router queue for slot.... +11:46:04 Sending to : +11:46:04 ============================================================================ +11:46:04 ============================================================================ +11:46:04 Slot Id : <433> +11:46:04 Transaction Type : REQUEST +11:46:04 Received From : +11:46:04 ============================================================================ +11:46:04 FNo. Len. Field Value +11:46:04 ============================================================================ +11:46:04 [ 1] [ 4] [0200] +11:46:04 [ 2] [ 16] [6213544001493342] +11:46:04 [ 3] [ 6] [011000] +11:46:04 [ 4] [ 12] [000004000000] +11:46:04 [ 7] [ 10] [0320044511] +11:46:04 [ 11] [ 6] [268719] +11:46:04 [ 12] [ 6] [114511] +11:46:04 [ 13] [ 4] [0320] +11:46:04 [ 14] [ 4] [4912] +11:46:04 [ 15] [ 4] [0320] +11:46:04 [ 18] [ 4] [6011] +11:46:04 [ 19] [ 3] [418] +11:46:04 [ 22] [ 3] [021] +11:46:04 [ 25] [ 2] [01] +11:46:04 [ 28] [ 9] [D00002000] +11:46:04 [ 32] [ 6] [180893] +11:46:04 [ 35] [ 32] [6213544001493342=491212019334991] +11:46:04 [ 37] [ 12] [507904268719] +11:46:04 [ 41] [ 8] [0102SAPA] +11:46:04 [ 42] [ 15] [999999 ] +11:46:04 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +11:46:04 [ 49] [ 3] [418] +11:46:04 [ 52] [ 16] [50800694FD0E3710] +11:46:04 ============================================================================ +11:46:04 + + +waiting on router queue for slot.... +11:46:04 Sending to : <0> +11:46:04 ============================================================================ +11:46:04 ============================================================================ +11:46:04 Slot Id : <433> +11:46:04 Transaction Type : RESPONSE +11:46:04 Received From : +11:46:04 ============================================================================ +11:46:04 FNo. Len. Field Value +11:46:04 ============================================================================ +11:46:04 [ 1] [ 4] [0210] +11:46:04 [ 2] [ 16] [6213544001493342] +11:46:04 [ 3] [ 6] [011000] +11:46:04 [ 4] [ 12] [000004000000] +11:46:04 [ 7] [ 10] [0320044511] +11:46:04 [ 11] [ 6] [268719] +11:46:04 [ 12] [ 6] [114511] +11:46:04 [ 13] [ 4] [0320] +11:46:04 [ 15] [ 4] [0320] +11:46:04 [ 18] [ 4] [6011] +11:46:04 [ 19] [ 3] [418] +11:46:04 [ 32] [ 6] [180893] +11:46:04 [ 35] [ 32] [6213544001493342=491212019334991] +11:46:04 [ 37] [ 12] [507904268719] +11:46:04 [ 38] [ 6] [885414] +11:46:04 [ 39] [ 2] [00] +11:46:04 [ 41] [ 8] [0102SAPA] +11:46:04 [ 49] [ 3] [418] +11:46:04 [ 54] [ 40] [1001418C0000057750361002418C000005775036] +11:46:04 ============================================================================ +11:46:04 Sending to : +11:46:04 ============================================================================ +11:46:04 + + +waiting on router queue for slot.... +11:46:06 ============================================================================ +11:46:06 Slot Id : <433> +11:46:06 Transaction Type : RESPONSE +11:46:06 Received From : +11:46:06 ============================================================================ +11:46:06 FNo. Len. Field Value +11:46:06 ============================================================================ +11:46:06 [ 1] [ 4] [0210] +11:46:06 [ 2] [ 16] [6213544001493342] +11:46:06 [ 3] [ 6] [011000] +11:46:06 [ 4] [ 12] [000004000000] +11:46:06 [ 7] [ 10] [0320044511] +11:46:06 [ 11] [ 6] [268719] +11:46:06 [ 12] [ 6] [114511] +11:46:06 [ 13] [ 4] [0320] +11:46:06 [ 15] [ 4] [0320] +11:46:06 [ 18] [ 4] [6011] +11:46:06 [ 19] [ 3] [418] +11:46:06 [ 32] [ 6] [180893] +11:46:06 [ 35] [ 32] [6213544001493342=491212019334991] +11:46:06 [ 37] [ 12] [507904268719] +11:46:06 [ 38] [ 6] [885414] +11:46:06 [ 39] [ 2] [00] +11:46:06 [ 41] [ 8] [0102SAPA] +11:46:06 [ 49] [ 3] [418] +11:46:06 [ 54] [ 40] [1001418C0000057750361002418C000005775036] +11:46:06 ============================================================================ +11:46:06 Calculate Source COMM Id = 2 +11:46:06 ============================================================================ +11:46:06 + + +waiting on router queue for slot.... +11:46:21 ============================================================================ +11:46:21 Slot Id : <364> +11:46:21 Transaction Type : REQUEST +11:46:21 Received From : +11:46:21 ============================================================================ +11:46:21 FNo. Len. Field Value +11:46:21 ============================================================================ +11:46:21 [ 1] [ 4] [0800] +11:46:21 [ 7] [ 10] [0320044529] +11:46:21 [ 11] [ 6] [156153] +11:46:21 [ 70] [ 3] [301] +11:46:21 ============================================================================ +11:46:21 + + +waiting on router queue for slot.... +11:46:21 Sending to : +11:46:21 ============================================================================ +11:46:21 ============================================================================ +11:46:21 Slot Id : <364> +11:46:21 Transaction Type : RESPONSE +11:46:21 Received From : +11:46:21 ============================================================================ +11:46:21 FNo. Len. Field Value +11:46:21 ============================================================================ +11:46:21 [ 1] [ 4] [0810] +11:46:21 [ 7] [ 10] [0320044529] +11:46:21 [ 11] [ 6] [156153] +11:46:21 [ 39] [ 2] [00] +11:46:21 [ 70] [ 3] [301] +11:46:21 ============================================================================ +11:46:21 Calculate Source COMM Id = 2 +11:46:21 ============================================================================ +11:46:21 + + +waiting on router queue for slot.... +11:46:21 ============================================================================ +11:46:21 Slot Id : <388> +11:46:21 Transaction Type : REQUEST +11:46:21 Received From : +11:46:21 ============================================================================ +11:46:21 FNo. Len. Field Value +11:46:21 ============================================================================ +11:46:21 [ 1] [ 4] [0800] +11:46:21 [ 7] [ 10] [0320044412] +11:46:21 [ 11] [ 6] [092265] +11:46:21 [ 37] [ 12] [57911092265] +11:46:21 [ 70] [ 3] [301] +11:46:21 ============================================================================ +11:46:21 + + +waiting on router queue for slot.... +11:46:21 Sending to : +11:46:21 ============================================================================ +11:46:21 ============================================================================ +11:46:21 Slot Id : <388> +11:46:21 Transaction Type : RESPONSE +11:46:21 Received From : +11:46:21 ============================================================================ +11:46:21 FNo. Len. Field Value +11:46:21 ============================================================================ +11:46:21 [ 1] [ 4] [0810] +11:46:21 [ 7] [ 10] [0320044412] +11:46:21 [ 11] [ 6] [092265] +11:46:21 [ 37] [ 12] [579110922650] +11:46:21 [ 39] [ 2] [00] +11:46:21 [ 70] [ 3] [810] +11:46:21 ============================================================================ +11:46:21 Calculate Source COMM Id = 4 +11:46:21 ============================================================================ +11:46:21 + + +waiting on router queue for slot.... +11:46:24 ============================================================================ +11:46:24 Slot Id : <367> +11:46:24 Transaction Type : REQUEST +11:46:24 Received From : +11:46:24 ============================================================================ +11:46:24 FNo. Len. Field Value +11:46:24 ============================================================================ +11:46:24 [ 1] [ 4] [0800] +11:46:24 [ 2] [ 5] [02531] +11:46:24 [ 3] [ 6] [579118] +11:46:24 [ 7] [ 10] [0320044624] +11:46:24 [ 11] [ 6] [807095] +11:46:24 [ 15] [ 10] [0320044624] +11:46:24 [ 37] [ 11] [57911807095] +11:46:24 [ 70] [ 3] [001] +11:46:24 ============================================================================ +11:46:24 + + +waiting on router queue for slot.... +11:46:24 ============================================================================ +11:46:24 Slot Id : <367> +11:46:24 Transaction Type : RESPONSE +11:46:24 Received From : +11:46:24 ============================================================================ +11:46:24 FNo. Len. Field Value +11:46:24 ============================================================================ +11:46:24 [ 1] [ 4] [0810] +11:46:24 [ 7] [ 10] [0320044624] +11:46:24 [ 11] [ 6] [807095] +11:46:24 [ 15] [ 4] [0320] +11:46:24 [ 37] [ 12] [57911807095] +11:46:24 [ 39] [ 2] [00] +11:46:24 [ 70] [ 3] [001] +11:46:24 ============================================================================ +11:46:24 Sending to : +11:46:24 ============================================================================ +11:46:24 + + +waiting on router queue for slot.... +11:46:30 ============================================================================ +11:46:30 Slot Id : <441> +11:46:30 Transaction Type : REQUEST +11:46:30 Received From : +11:46:30 ============================================================================ +11:46:30 FNo. Len. Field Value +11:46:30 ============================================================================ +11:46:30 [ 1] [ 4] [0200] +11:46:30 [ 2] [ 16] [6213541000320542] +11:46:30 [ 3] [ 6] [010000] +11:46:30 [ 4] [ 12] [000100000000] +11:46:30 [ 7] [ 10] [0320044534] +11:46:30 [ 11] [ 6] [268724] +11:46:30 [ 12] [ 6] [114534] +11:46:30 [ 13] [ 4] [0320] +11:46:30 [ 14] [ 4] [4912] +11:46:30 [ 15] [ 4] [0320] +11:46:30 [ 18] [ 4] [6011] +11:46:30 [ 19] [ 3] [418] +11:46:30 [ 22] [ 3] [021] +11:46:30 [ 25] [ 2] [01] +11:46:30 [ 28] [ 9] [D00002000] +11:46:30 [ 32] [ 6] [180893] +11:46:30 [ 35] [ 32] [6213541000320542=491212012054325] +11:46:30 [ 37] [ 12] [507904268724] +11:46:30 [ 41] [ 8] [0324BKDT] +11:46:30 [ 42] [ 15] [999999 ] +11:46:30 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:46:30 [ 49] [ 3] [418] +11:46:30 [ 52] [ 16] [CF8B0EB5B4436A33] +11:46:30 ============================================================================ +11:46:30 + + +waiting on router queue for slot.... +11:46:30 Sending to : +11:46:30 ============================================================================ +11:46:30 Sending to : +11:46:30 ============================================================================ +11:46:30 ============================================================================ +11:46:30 Slot Id : <430> +11:46:30 Transaction Type : REQUEST +11:46:30 Received From : +11:46:30 ============================================================================ +11:46:30 FNo. Len. Field Value +11:46:30 ============================================================================ +11:46:30 [ 1] [ 4] [0200] +11:46:30 [ 2] [ 16] [6213541000074388] +11:46:30 [ 3] [ 6] [010000] +11:46:30 [ 4] [ 12] [000100000000] +11:46:30 [ 7] [ 10] [0320044535] +11:46:30 [ 11] [ 6] [268725] +11:46:30 [ 12] [ 6] [114534] +11:46:30 [ 13] [ 4] [0320] +11:46:30 [ 14] [ 4] [4912] +11:46:30 [ 15] [ 4] [0320] +11:46:30 [ 18] [ 4] [6011] +11:46:30 [ 19] [ 3] [418] +11:46:30 [ 22] [ 3] [021] +11:46:30 [ 25] [ 2] [01] +11:46:30 [ 28] [ 9] [D00002000] +11:46:30 [ 32] [ 6] [180893] +11:46:30 [ 35] [ 32] [6213541000074388=491212017438734] +11:46:30 [ 37] [ 12] [507904268725] +11:46:30 [ 41] [ 8] [0112CPBR] +11:46:30 [ 42] [ 15] [999999 ] +11:46:30 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:46:30 [ 49] [ 3] [418] +11:46:30 [ 52] [ 16] [21FF12776915DFA5] +11:46:30 ============================================================================ +11:46:30 + + +waiting on router queue for slot.... +11:46:30 Sending to : +11:46:30 ============================================================================ +11:46:30 Sending to : +11:46:30 ============================================================================ +11:46:30 ============================================================================ +11:46:30 Slot Id : <441> +11:46:30 Transaction Type : REQUEST +11:46:30 Received From : +11:46:30 ============================================================================ +11:46:30 FNo. Len. Field Value +11:46:30 ============================================================================ +11:46:30 [ 1] [ 4] [0200] +11:46:30 [ 2] [ 16] [6213541000320542] +11:46:30 [ 3] [ 6] [010000] +11:46:30 [ 4] [ 12] [000100000000] +11:46:30 [ 7] [ 10] [0320044534] +11:46:30 [ 11] [ 6] [268724] +11:46:30 [ 12] [ 6] [114534] +11:46:30 [ 13] [ 4] [0320] +11:46:30 [ 14] [ 4] [4912] +11:46:30 [ 15] [ 4] [0320] +11:46:30 [ 18] [ 4] [6011] +11:46:30 [ 19] [ 3] [418] +11:46:30 [ 22] [ 3] [021] +11:46:30 [ 25] [ 2] [01] +11:46:30 [ 28] [ 9] [D00002000] +11:46:30 [ 32] [ 6] [180893] +11:46:30 [ 35] [ 32] [6213541000320542=491212012054325] +11:46:30 [ 37] [ 12] [507904268724] +11:46:30 [ 41] [ 8] [0324BKDT] +11:46:30 [ 42] [ 15] [999999 ] +11:46:30 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:46:30 [ 49] [ 3] [418] +11:46:30 [ 52] [ 16] [CF8B0EB5B4436A33] +11:46:30 ============================================================================ +11:46:30 + + +waiting on router queue for slot.... +11:46:30 Sending to : +11:46:30 ============================================================================ +11:46:30 ============================================================================ +11:46:30 Slot Id : <441> +11:46:30 Transaction Type : REQUEST +11:46:30 Received From : +11:46:30 ============================================================================ +11:46:30 FNo. Len. Field Value +11:46:30 ============================================================================ +11:46:30 [ 1] [ 4] [0200] +11:46:30 [ 2] [ 16] [6213541000320542] +11:46:30 [ 3] [ 6] [010000] +11:46:30 [ 4] [ 12] [000100000000] +11:46:30 [ 7] [ 10] [0320044534] +11:46:30 [ 11] [ 6] [268724] +11:46:30 [ 12] [ 6] [114534] +11:46:30 [ 13] [ 4] [0320] +11:46:30 [ 14] [ 4] [4912] +11:46:30 [ 15] [ 4] [0320] +11:46:30 [ 18] [ 4] [6011] +11:46:30 [ 19] [ 3] [418] +11:46:30 [ 22] [ 3] [021] +11:46:30 [ 25] [ 2] [01] +11:46:30 [ 28] [ 9] [D00002000] +11:46:30 [ 32] [ 6] [180893] +11:46:30 [ 35] [ 32] [6213541000320542=491212012054325] +11:46:30 [ 37] [ 12] [507904268724] +11:46:30 [ 41] [ 8] [0324BKDT] +11:46:30 [ 42] [ 15] [999999 ] +11:46:30 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:46:30 [ 49] [ 3] [418] +11:46:30 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:46:30 ============================================================================ +11:46:30 + + +waiting on router queue for slot.... +11:46:30 Sending to : <0> +11:46:30 ============================================================================ +11:46:30 ============================================================================ +11:46:30 Slot Id : <430> +11:46:30 Transaction Type : REQUEST +11:46:30 Received From : +11:46:30 ============================================================================ +11:46:30 FNo. Len. Field Value +11:46:30 ============================================================================ +11:46:30 [ 1] [ 4] [0200] +11:46:30 [ 2] [ 16] [6213541000074388] +11:46:30 [ 3] [ 6] [010000] +11:46:30 [ 4] [ 12] [000100000000] +11:46:30 [ 7] [ 10] [0320044535] +11:46:30 [ 11] [ 6] [268725] +11:46:30 [ 12] [ 6] [114534] +11:46:30 [ 13] [ 4] [0320] +11:46:30 [ 14] [ 4] [4912] +11:46:30 [ 15] [ 4] [0320] +11:46:30 [ 18] [ 4] [6011] +11:46:30 [ 19] [ 3] [418] +11:46:30 [ 22] [ 3] [021] +11:46:30 [ 25] [ 2] [01] +11:46:30 [ 28] [ 9] [D00002000] +11:46:30 [ 32] [ 6] [180893] +11:46:30 [ 35] [ 32] [6213541000074388=491212017438734] +11:46:30 [ 37] [ 12] [507904268725] +11:46:30 [ 41] [ 8] [0112CPBR] +11:46:30 [ 42] [ 15] [999999 ] +11:46:30 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:46:30 [ 49] [ 3] [418] +11:46:30 [ 52] [ 16] [21FF12776915DFA5] +11:46:30 ============================================================================ +11:46:30 + + +waiting on router queue for slot.... +11:46:30 Sending to : +11:46:30 ============================================================================ +11:46:30 ============================================================================ +11:46:30 Slot Id : <430> +11:46:30 Transaction Type : REQUEST +11:46:30 Received From : +11:46:30 ============================================================================ +11:46:30 FNo. Len. Field Value +11:46:30 ============================================================================ +11:46:30 [ 1] [ 4] [0200] +11:46:30 [ 2] [ 16] [6213541000074388] +11:46:30 [ 3] [ 6] [010000] +11:46:30 [ 4] [ 12] [000100000000] +11:46:30 [ 7] [ 10] [0320044535] +11:46:30 [ 11] [ 6] [268725] +11:46:30 [ 12] [ 6] [114534] +11:46:30 [ 13] [ 4] [0320] +11:46:30 [ 14] [ 4] [4912] +11:46:30 [ 15] [ 4] [0320] +11:46:30 [ 18] [ 4] [6011] +11:46:30 [ 19] [ 3] [418] +11:46:30 [ 22] [ 3] [021] +11:46:30 [ 25] [ 2] [01] +11:46:30 [ 28] [ 9] [D00002000] +11:46:30 [ 32] [ 6] [180893] +11:46:30 [ 35] [ 32] [6213541000074388=491212017438734] +11:46:30 [ 37] [ 12] [507904268725] +11:46:30 [ 41] [ 8] [0112CPBR] +11:46:30 [ 42] [ 15] [999999 ] +11:46:30 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +11:46:30 [ 49] [ 3] [418] +11:46:30 [ 52] [ 16] [9855D7EB9A6392CD] +11:46:30 ============================================================================ +11:46:30 + + +waiting on router queue for slot.... +11:46:30 Sending to : <0> +11:46:30 ============================================================================ +11:46:31 ============================================================================ +11:46:31 Slot Id : <430> +11:46:31 Transaction Type : RESPONSE +11:46:31 Received From : +11:46:31 ============================================================================ +11:46:31 FNo. Len. Field Value +11:46:31 ============================================================================ +11:46:31 [ 1] [ 4] [0210] +11:46:31 [ 2] [ 16] [6213541000074388] +11:46:31 [ 3] [ 6] [010000] +11:46:31 [ 4] [ 12] [000100000000] +11:46:31 [ 7] [ 10] [0320044535] +11:46:31 [ 11] [ 6] [268725] +11:46:31 [ 12] [ 6] [114534] +11:46:31 [ 13] [ 4] [0320] +11:46:31 [ 15] [ 4] [0320] +11:46:31 [ 18] [ 4] [6011] +11:46:31 [ 19] [ 3] [418] +11:46:31 [ 32] [ 6] [180893] +11:46:31 [ 35] [ 32] [6213541000074388=491212017438734] +11:46:31 [ 37] [ 12] [507904268725] +11:46:31 [ 38] [ 6] [591224] +11:46:31 [ 39] [ 2] [00] +11:46:31 [ 41] [ 8] [0112CPBR] +11:46:31 [ 49] [ 3] [418] +11:46:31 [ 54] [ 40] [0001418C0000087041260002418C000008704126] +11:46:31 ============================================================================ +11:46:31 Sending to : +11:46:31 ============================================================================ +11:46:31 + + +waiting on router queue for slot.... +11:46:31 ============================================================================ +11:46:31 Slot Id : <441> +11:46:31 Transaction Type : RESPONSE +11:46:31 Received From : +11:46:31 ============================================================================ +11:46:31 FNo. Len. Field Value +11:46:31 ============================================================================ +11:46:31 [ 1] [ 4] [0210] +11:46:31 [ 2] [ 16] [6213541000320542] +11:46:31 [ 3] [ 6] [010000] +11:46:31 [ 4] [ 12] [000100000000] +11:46:31 [ 7] [ 10] [0320044534] +11:46:31 [ 11] [ 6] [268724] +11:46:31 [ 12] [ 6] [114534] +11:46:31 [ 13] [ 4] [0320] +11:46:31 [ 15] [ 4] [0320] +11:46:31 [ 18] [ 4] [6011] +11:46:31 [ 19] [ 3] [418] +11:46:31 [ 32] [ 6] [180893] +11:46:31 [ 35] [ 32] [6213541000320542=491212012054325] +11:46:31 [ 37] [ 12] [507904268724] +11:46:31 [ 38] [ 6] [471109] +11:46:31 [ 39] [ 2] [00] +11:46:31 [ 41] [ 8] [0324BKDT] +11:46:31 [ 49] [ 3] [418] +11:46:31 [ 54] [ 40] [0001418C0003884349510002418C000388434951] +11:46:31 ============================================================================ +11:46:31 Sending to : +11:46:31 ============================================================================ +11:46:31 + + +waiting on router queue for slot.... +11:46:33 ============================================================================ +11:46:33 Slot Id : <430> +11:46:33 Transaction Type : RESPONSE +11:46:33 Received From : +11:46:33 ============================================================================ +11:46:33 FNo. Len. Field Value +11:46:33 ============================================================================ +11:46:33 [ 1] [ 4] [0210] +11:46:33 [ 2] [ 16] [6213541000074388] +11:46:33 [ 3] [ 6] [010000] +11:46:33 [ 4] [ 12] [000100000000] +11:46:33 [ 7] [ 10] [0320044535] +11:46:33 [ 11] [ 6] [268725] +11:46:33 [ 12] [ 6] [114534] +11:46:33 [ 13] [ 4] [0320] +11:46:33 [ 15] [ 4] [0320] +11:46:33 [ 18] [ 4] [6011] +11:46:33 [ 19] [ 3] [418] +11:46:33 [ 32] [ 6] [180893] +11:46:33 [ 35] [ 32] [6213541000074388=491212017438734] +11:46:33 [ 37] [ 12] [507904268725] +11:46:33 [ 38] [ 6] [591224] +11:46:33 [ 39] [ 2] [00] +11:46:33 [ 41] [ 8] [0112CPBR] +11:46:33 [ 49] [ 3] [418] +11:46:33 [ 54] [ 40] [0001418C0000087041260002418C000008704126] +11:46:33 ============================================================================ +11:46:33 Calculate Source COMM Id = 2 +11:46:33 ============================================================================ +11:46:33 + + +waiting on router queue for slot.... +11:46:34 ============================================================================ +11:46:34 Slot Id : <441> +11:46:34 Transaction Type : RESPONSE +11:46:34 Received From : +11:46:34 ============================================================================ +11:46:34 FNo. Len. Field Value +11:46:34 ============================================================================ +11:46:34 [ 1] [ 4] [0210] +11:46:34 [ 2] [ 16] [6213541000320542] +11:46:34 [ 3] [ 6] [010000] +11:46:34 [ 4] [ 12] [000100000000] +11:46:34 [ 7] [ 10] [0320044534] +11:46:34 [ 11] [ 6] [268724] +11:46:34 [ 12] [ 6] [114534] +11:46:34 [ 13] [ 4] [0320] +11:46:34 [ 15] [ 4] [0320] +11:46:34 [ 18] [ 4] [6011] +11:46:34 [ 19] [ 3] [418] +11:46:34 [ 32] [ 6] [180893] +11:46:34 [ 35] [ 32] [6213541000320542=491212012054325] +11:46:34 [ 37] [ 12] [507904268724] +11:46:34 [ 38] [ 6] [471109] +11:46:34 [ 39] [ 2] [00] +11:46:34 [ 41] [ 8] [0324BKDT] +11:46:34 [ 49] [ 3] [418] +11:46:34 [ 54] [ 40] [0001418C0003884349510002418C000388434951] +11:46:34 ============================================================================ +11:46:34 Calculate Source COMM Id = 2 +11:46:34 ============================================================================ +11:46:34 + + +waiting on router queue for slot.... +11:46:48 ============================================================================ +11:46:48 Slot Id : <409> +11:46:48 Transaction Type : REQUEST +11:46:48 Received From : +11:46:48 ============================================================================ +11:46:48 FNo. Len. Field Value +11:46:48 ============================================================================ +11:46:48 [ 1] [ 4] [0800] +11:46:48 [ 7] [ 10] [0320044555] +11:46:48 [ 11] [ 6] [156154] +11:46:48 [ 70] [ 3] [301] +11:46:48 ============================================================================ +11:46:48 + + +waiting on router queue for slot.... +11:46:48 Sending to : +11:46:48 ============================================================================ +11:46:48 ============================================================================ +11:46:48 Slot Id : <409> +11:46:48 Transaction Type : RESPONSE +11:46:48 Received From : +11:46:48 ============================================================================ +11:46:48 FNo. Len. Field Value +11:46:48 ============================================================================ +11:46:48 [ 1] [ 4] [0810] +11:46:48 [ 7] [ 10] [0320044555] +11:46:48 [ 11] [ 6] [156154] +11:46:48 [ 39] [ 2] [00] +11:46:48 [ 70] [ 3] [301] +11:46:48 ============================================================================ +11:46:48 Calculate Source COMM Id = 2 +11:46:48 ============================================================================ +11:46:48 + + +waiting on router queue for slot.... +11:46:58 ============================================================================ +11:46:58 Slot Id : <402> +11:46:58 Transaction Type : REQUEST +11:46:58 Received From : +11:46:58 ============================================================================ +11:46:58 FNo. Len. Field Value +11:46:58 ============================================================================ +11:46:58 [ 1] [ 4] [0200] +11:46:58 [ 2] [ 16] [1808930200051522] +11:46:58 [ 3] [ 6] [012000] +11:46:58 [ 4] [ 12] [000020000000] +11:46:58 [ 7] [ 10] [0320114654] +11:46:58 [ 11] [ 6] [734950] +11:46:58 [ 12] [ 6] [114654] +11:46:58 [ 13] [ 4] [0320] +11:46:58 [ 15] [ 4] [0320] +11:46:58 [ 18] [ 4] [6011] +11:46:58 [ 22] [ 3] [900] +11:46:58 [ 25] [ 2] [02] +11:46:58 [ 28] [ 9] [D00002000] +11:46:58 [ 32] [ 6] [621354] +11:46:58 [ 35] [ 27] [1808930200051522=1803500463] +11:46:58 [ 37] [ 12] [507903612256] +11:46:58 [ 41] [ 8] [16001400] +11:46:58 [ 42] [ 15] [NATIVE ] +11:46:58 [ 43] [ 40] [NOUL Xaythany LAO] +11:46:58 [ 49] [ 3] [418] +11:46:58 [ 52] [ 16] [7A85841886121C55] +11:46:58 ============================================================================ +11:46:58 + + +waiting on router queue for slot.... +11:46:58 Sending to : +11:46:58 ============================================================================ +11:46:58 Sending to : +11:46:58 ============================================================================ +11:46:58 ============================================================================ +11:46:58 Slot Id : <402> +11:46:58 Transaction Type : REQUEST +11:46:58 Received From : +11:46:58 ============================================================================ +11:46:58 FNo. Len. Field Value +11:46:58 ============================================================================ +11:46:58 [ 1] [ 4] [0200] +11:46:58 [ 2] [ 16] [1808930200051522] +11:46:58 [ 3] [ 6] [012000] +11:46:58 [ 4] [ 12] [000020000000] +11:46:58 [ 7] [ 10] [0320114654] +11:46:58 [ 11] [ 6] [734950] +11:46:58 [ 12] [ 6] [114654] +11:46:58 [ 13] [ 4] [0320] +11:46:58 [ 15] [ 4] [0320] +11:46:58 [ 18] [ 4] [6011] +11:46:58 [ 22] [ 3] [900] +11:46:58 [ 25] [ 2] [02] +11:46:58 [ 28] [ 9] [D00002000] +11:46:58 [ 32] [ 6] [621354] +11:46:58 [ 35] [ 27] [1808930200051522=1803500463] +11:46:58 [ 37] [ 12] [507903612256] +11:46:58 [ 41] [ 8] [16001400] +11:46:58 [ 42] [ 15] [NATIVE ] +11:46:58 [ 43] [ 40] [NOUL Xaythany LAO] +11:46:58 [ 49] [ 3] [418] +11:46:58 [ 52] [ 16] [7A85841886121C55] +11:46:58 ============================================================================ +11:46:58 + + +waiting on router queue for slot.... +11:46:58 Sending to : +11:46:58 ============================================================================ +11:46:58 ============================================================================ +11:46:58 Slot Id : <402> +11:46:58 Transaction Type : REQUEST +11:46:58 Received From : +11:46:58 ============================================================================ +11:46:58 FNo. Len. Field Value +11:46:58 ============================================================================ +11:46:58 [ 1] [ 4] [0200] +11:46:58 [ 2] [ 16] [1808930200051522] +11:46:58 [ 3] [ 6] [012000] +11:46:58 [ 4] [ 12] [000020000000] +11:46:58 [ 7] [ 10] [0320114654] +11:46:58 [ 11] [ 6] [734950] +11:46:58 [ 12] [ 6] [114654] +11:46:58 [ 13] [ 4] [0320] +11:46:58 [ 15] [ 4] [0320] +11:46:58 [ 18] [ 4] [6011] +11:46:58 [ 22] [ 3] [900] +11:46:58 [ 25] [ 2] [02] +11:46:58 [ 28] [ 9] [D00002000] +11:46:58 [ 32] [ 6] [621354] +11:46:58 [ 35] [ 27] [1808930200051522=1803500463] +11:46:58 [ 37] [ 12] [507903612256] +11:46:58 [ 41] [ 8] [16001400] +11:46:58 [ 42] [ 15] [NATIVE ] +11:46:58 [ 43] [ 40] [NOUL Xaythany LAO] +11:46:58 [ 49] [ 3] [418] +11:46:58 [ 52] [ 16] [AFA874993286A6AF] +11:46:58 ============================================================================ +11:46:58 + + +waiting on router queue for slot.... +11:46:58 Sending to : <2> +11:46:58 ============================================================================ +11:47:00 ============================================================================ +11:47:00 Slot Id : <402> +11:47:00 Transaction Type : RESPONSE +11:47:00 Received From : +11:47:00 ============================================================================ +11:47:00 FNo. Len. Field Value +11:47:00 ============================================================================ +11:47:00 [ 1] [ 4] [0210] +11:47:00 [ 2] [ 16] [1808930200051522] +11:47:00 [ 3] [ 6] [012000] +11:47:00 [ 4] [ 12] [000020000000] +11:47:00 [ 7] [ 10] [0320114654] +11:47:00 [ 11] [ 6] [734950] +11:47:00 [ 12] [ 6] [114654] +11:47:00 [ 13] [ 4] [0320] +11:47:00 [ 18] [ 4] [6011] +11:47:00 [ 19] [ 3] [418] +11:47:00 [ 22] [ 3] [021] +11:47:00 [ 28] [ 9] [D00002000] +11:47:00 [ 32] [ 6] [621354] +11:47:00 [ 35] [ 27] [1808930200051522=1803500463] +11:47:00 [ 37] [ 12] [507903612256] +11:47:00 [ 39] [ 2] [42] +11:47:00 [ 41] [ 8] [16001400] +11:47:00 [ 49] [ 3] [418] +11:47:00 [ 52] [ 16] [AFA874993286A6AF] +11:47:00 ============================================================================ +11:47:00 Sending to : +11:47:00 ============================================================================ +11:47:00 + + +waiting on router queue for slot.... +11:47:01 ============================================================================ +11:47:01 Slot Id : <437> +11:47:01 Transaction Type : REQUEST +11:47:01 Received From : +11:47:01 ============================================================================ +11:47:01 FNo. Len. Field Value +11:47:01 ============================================================================ +11:47:01 [ 1] [ 4] [0800] +11:47:01 [ 7] [ 10] [0320114648] +11:47:01 [ 11] [ 6] [090207] +11:47:01 [ 37] [ 12] [507911090207] +11:47:01 [ 70] [ 3] [ ] +11:47:01 ============================================================================ +11:47:01 + + +waiting on router queue for slot.... +11:47:01 Sending to : +11:47:01 ============================================================================ +11:47:01 ============================================================================ +11:47:01 Slot Id : <437> +11:47:01 Transaction Type : RESPONSE +11:47:01 Received From : +11:47:01 ============================================================================ +11:47:01 FNo. Len. Field Value +11:47:01 ============================================================================ +11:47:01 [ 1] [ 4] [0810] +11:47:01 [ 7] [ 10] [0320114648] +11:47:01 [ 11] [ 6] [090207] +11:47:01 [ 37] [ 12] [507911090207] +11:47:01 [ 39] [ 2] [91] +11:47:01 [ 70] [ 3] [ ] +11:47:01 ============================================================================ +11:47:01 Calculate Source COMM Id = 3 +11:47:01 ============================================================================ +11:47:01 + + +waiting on router queue for slot.... +11:47:02 ============================================================================ +11:47:02 Slot Id : <402> +11:47:02 Transaction Type : RESPONSE +11:47:02 Received From : +11:47:02 ============================================================================ +11:47:02 FNo. Len. Field Value +11:47:02 ============================================================================ +11:47:02 [ 1] [ 4] [0210] +11:47:02 [ 2] [ 16] [1808930200051522] +11:47:02 [ 3] [ 6] [012000] +11:47:02 [ 4] [ 12] [000020000000] +11:47:02 [ 7] [ 10] [0320114654] +11:47:02 [ 11] [ 6] [734950] +11:47:02 [ 12] [ 6] [114654] +11:47:02 [ 13] [ 4] [0320] +11:47:02 [ 18] [ 4] [6011] +11:47:02 [ 19] [ 3] [418] +11:47:02 [ 22] [ 3] [021] +11:47:02 [ 28] [ 9] [D00002000] +11:47:02 [ 32] [ 6] [621354] +11:47:02 [ 35] [ 27] [1808930200051522=1803500463] +11:47:02 [ 37] [ 12] [507903612256] +11:47:02 [ 39] [ 2] [42] +11:47:02 [ 41] [ 8] [16001400] +11:47:02 [ 49] [ 3] [418] +11:47:02 [ 52] [ 16] [AFA874993286A6AF] +11:47:02 ============================================================================ +11:47:02 Calculate Source COMM Id = 0 +11:47:02 ============================================================================ +11:47:02 + + +waiting on router queue for slot.... +11:47:04 ============================================================================ +11:47:04 Slot Id : <403> +11:47:04 Transaction Type : REQUEST +11:47:04 Received From : +11:47:04 ============================================================================ +11:47:04 FNo. Len. Field Value +11:47:04 ============================================================================ +11:47:04 [ 1] [ 4] [0200] +11:47:04 [ 2] [ 16] [1808931800016402] +11:47:04 [ 3] [ 6] [011000] +11:47:04 [ 4] [ 12] [000005000000] +11:47:04 [ 7] [ 10] [0320114700] +11:47:04 [ 11] [ 6] [734982] +11:47:04 [ 12] [ 6] [114700] +11:47:04 [ 13] [ 4] [0320] +11:47:04 [ 15] [ 4] [0320] +11:47:04 [ 18] [ 4] [6011] +11:47:04 [ 22] [ 3] [900] +11:47:04 [ 25] [ 2] [02] +11:47:04 [ 28] [ 9] [D00002000] +11:47:04 [ 32] [ 6] [621354] +11:47:04 [ 35] [ 27] [1808931800016402=1803500243] +11:47:04 [ 37] [ 12] [507904652984] +11:47:04 [ 41] [ 8] [17001000] +11:47:04 [ 42] [ 15] [NATIVE ] +11:47:04 [ 43] [ 40] [Sum Market Samneua LAO] +11:47:04 [ 49] [ 3] [418] +11:47:04 [ 52] [ 16] [77E6A5C84DCE417D] +11:47:04 ============================================================================ +11:47:04 + + +waiting on router queue for slot.... +11:47:04 Sending to : +11:47:04 ============================================================================ +11:47:04 Sending to : +11:47:04 ============================================================================ +11:47:04 ============================================================================ +11:47:04 Slot Id : <403> +11:47:04 Transaction Type : REQUEST +11:47:04 Received From : +11:47:04 ============================================================================ +11:47:04 FNo. Len. Field Value +11:47:04 ============================================================================ +11:47:04 [ 1] [ 4] [0200] +11:47:04 [ 2] [ 16] [1808931800016402] +11:47:04 [ 3] [ 6] [011000] +11:47:04 [ 4] [ 12] [000005000000] +11:47:04 [ 7] [ 10] [0320114700] +11:47:04 [ 11] [ 6] [734982] +11:47:04 [ 12] [ 6] [114700] +11:47:04 [ 13] [ 4] [0320] +11:47:04 [ 15] [ 4] [0320] +11:47:04 [ 18] [ 4] [6011] +11:47:04 [ 22] [ 3] [900] +11:47:04 [ 25] [ 2] [02] +11:47:04 [ 28] [ 9] [D00002000] +11:47:04 [ 32] [ 6] [621354] +11:47:04 [ 35] [ 27] [1808931800016402=1803500243] +11:47:04 [ 37] [ 12] [507904652984] +11:47:04 [ 41] [ 8] [17001000] +11:47:04 [ 42] [ 15] [NATIVE ] +11:47:04 [ 43] [ 40] [Sum Market Samneua LAO] +11:47:04 [ 49] [ 3] [418] +11:47:04 [ 52] [ 16] [77E6A5C84DCE417D] +11:47:04 ============================================================================ +11:47:04 + + +waiting on router queue for slot.... +11:47:04 Sending to : +11:47:04 ============================================================================ +11:47:04 ============================================================================ +11:47:04 Slot Id : <403> +11:47:04 Transaction Type : REQUEST +11:47:04 Received From : +11:47:04 ============================================================================ +11:47:04 FNo. Len. Field Value +11:47:04 ============================================================================ +11:47:04 [ 1] [ 4] [0200] +11:47:04 [ 2] [ 16] [1808931800016402] +11:47:04 [ 3] [ 6] [011000] +11:47:04 [ 4] [ 12] [000005000000] +11:47:04 [ 7] [ 10] [0320114700] +11:47:04 [ 11] [ 6] [734982] +11:47:04 [ 12] [ 6] [114700] +11:47:04 [ 13] [ 4] [0320] +11:47:04 [ 15] [ 4] [0320] +11:47:04 [ 18] [ 4] [6011] +11:47:04 [ 22] [ 3] [900] +11:47:04 [ 25] [ 2] [02] +11:47:04 [ 28] [ 9] [D00002000] +11:47:04 [ 32] [ 6] [621354] +11:47:04 [ 35] [ 27] [1808931800016402=1803500243] +11:47:04 [ 37] [ 12] [507904652984] +11:47:04 [ 41] [ 8] [17001000] +11:47:04 [ 42] [ 15] [NATIVE ] +11:47:04 [ 43] [ 40] [Sum Market Samneua LAO] +11:47:04 [ 49] [ 3] [418] +11:47:04 [ 52] [ 16] [D3027B11E3AF8164] +11:47:04 ============================================================================ +11:47:04 + + +waiting on router queue for slot.... +11:47:04 Sending to : <2> +11:47:04 ============================================================================ +11:47:06 ============================================================================ +11:47:06 Slot Id : <408> +11:47:06 Transaction Type : REQUEST +11:47:06 Received From : +11:47:06 ============================================================================ +11:47:06 FNo. Len. Field Value +11:47:06 ============================================================================ +11:47:06 [ 1] [ 4] [0200] +11:47:06 [ 2] [ 16] [6213543000229624] +11:47:06 [ 3] [ 6] [010000] +11:47:06 [ 4] [ 12] [000200000000] +11:47:06 [ 7] [ 10] [0320044613] +11:47:06 [ 11] [ 6] [268732] +11:47:06 [ 12] [ 6] [114613] +11:47:06 [ 13] [ 4] [0320] +11:47:06 [ 14] [ 4] [4912] +11:47:06 [ 15] [ 4] [0320] +11:47:06 [ 18] [ 4] [6011] +11:47:06 [ 19] [ 3] [418] +11:47:06 [ 22] [ 3] [021] +11:47:06 [ 25] [ 2] [01] +11:47:06 [ 28] [ 9] [D00002000] +11:47:06 [ 32] [ 6] [180893] +11:47:06 [ 35] [ 32] [6213543000229624=491212012962361] +11:47:06 [ 37] [ 12] [507904268732] +11:47:06 [ 41] [ 8] [0368KMMX] +11:47:06 [ 42] [ 15] [999999 ] +11:47:06 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:47:06 [ 49] [ 3] [418] +11:47:06 [ 52] [ 16] [3316DE7DB1280ED8] +11:47:06 ============================================================================ +11:47:06 + + +waiting on router queue for slot.... +11:47:06 Sending to : +11:47:06 ============================================================================ +11:47:06 Sending to : +11:47:06 ============================================================================ +11:47:06 ============================================================================ +11:47:06 Slot Id : <408> +11:47:06 Transaction Type : REQUEST +11:47:06 Received From : +11:47:06 ============================================================================ +11:47:06 FNo. Len. Field Value +11:47:06 ============================================================================ +11:47:06 [ 1] [ 4] [0200] +11:47:06 [ 2] [ 16] [6213543000229624] +11:47:06 [ 3] [ 6] [010000] +11:47:06 [ 4] [ 12] [000200000000] +11:47:06 [ 7] [ 10] [0320044613] +11:47:06 [ 11] [ 6] [268732] +11:47:06 [ 12] [ 6] [114613] +11:47:06 [ 13] [ 4] [0320] +11:47:06 [ 14] [ 4] [4912] +11:47:06 [ 15] [ 4] [0320] +11:47:06 [ 18] [ 4] [6011] +11:47:06 [ 19] [ 3] [418] +11:47:06 [ 22] [ 3] [021] +11:47:06 [ 25] [ 2] [01] +11:47:06 [ 28] [ 9] [D00002000] +11:47:06 [ 32] [ 6] [180893] +11:47:06 [ 35] [ 32] [6213543000229624=491212012962361] +11:47:06 [ 37] [ 12] [507904268732] +11:47:06 [ 41] [ 8] [0368KMMX] +11:47:06 [ 42] [ 15] [999999 ] +11:47:06 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:47:06 [ 49] [ 3] [418] +11:47:06 [ 52] [ 16] [3316DE7DB1280ED8] +11:47:06 ============================================================================ +11:47:06 + + +waiting on router queue for slot.... +11:47:06 Sending to : +11:47:06 ============================================================================ +11:47:06 ============================================================================ +11:47:06 Slot Id : <408> +11:47:06 Transaction Type : REQUEST +11:47:06 Received From : +11:47:06 ============================================================================ +11:47:06 FNo. Len. Field Value +11:47:06 ============================================================================ +11:47:06 [ 1] [ 4] [0200] +11:47:06 [ 2] [ 16] [6213543000229624] +11:47:06 [ 3] [ 6] [010000] +11:47:06 [ 4] [ 12] [000200000000] +11:47:06 [ 7] [ 10] [0320044613] +11:47:06 [ 11] [ 6] [268732] +11:47:06 [ 12] [ 6] [114613] +11:47:06 [ 13] [ 4] [0320] +11:47:06 [ 14] [ 4] [4912] +11:47:06 [ 15] [ 4] [0320] +11:47:06 [ 18] [ 4] [6011] +11:47:06 [ 19] [ 3] [418] +11:47:06 [ 22] [ 3] [021] +11:47:06 [ 25] [ 2] [01] +11:47:06 [ 28] [ 9] [D00002000] +11:47:06 [ 32] [ 6] [180893] +11:47:06 [ 35] [ 32] [6213543000229624=491212012962361] +11:47:06 [ 37] [ 12] [507904268732] +11:47:06 [ 41] [ 8] [0368KMMX] +11:47:06 [ 42] [ 15] [999999 ] +11:47:06 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:47:06 [ 49] [ 3] [418] +11:47:06 [ 52] [ 16] [81D346B25FB4C980] +11:47:06 ============================================================================ +11:47:06 + + +waiting on router queue for slot.... +11:47:06 Sending to : <0> +11:47:06 ============================================================================ +11:47:06 ============================================================================ +11:47:06 Slot Id : <408> +11:47:06 Transaction Type : RESPONSE +11:47:06 Received From : +11:47:06 ============================================================================ +11:47:06 FNo. Len. Field Value +11:47:06 ============================================================================ +11:47:06 [ 1] [ 4] [0210] +11:47:06 [ 2] [ 16] [6213543000229624] +11:47:06 [ 3] [ 6] [010000] +11:47:06 [ 4] [ 12] [000200000000] +11:47:06 [ 7] [ 10] [0320044613] +11:47:06 [ 11] [ 6] [268732] +11:47:06 [ 12] [ 6] [114613] +11:47:06 [ 13] [ 4] [0320] +11:47:06 [ 15] [ 4] [0320] +11:47:06 [ 18] [ 4] [6011] +11:47:06 [ 19] [ 3] [418] +11:47:06 [ 22] [ 3] [021] +11:47:06 [ 32] [ 6] [180893] +11:47:06 [ 35] [ 32] [6213543000229624=491212012962361] +11:47:06 [ 37] [ 12] [507904268732] +11:47:06 [ 39] [ 2] [61] +11:47:06 [ 41] [ 8] [0368KMMX] +11:47:06 [ 49] [ 3] [418] +11:47:06 ============================================================================ +11:47:06 Sending to : +11:47:06 ============================================================================ +11:47:06 + + +waiting on router queue for slot.... +11:47:08 ============================================================================ +11:47:08 Slot Id : <408> +11:47:08 Transaction Type : RESPONSE +11:47:08 Received From : +11:47:08 ============================================================================ +11:47:08 FNo. Len. Field Value +11:47:08 ============================================================================ +11:47:08 [ 1] [ 4] [0210] +11:47:08 [ 2] [ 16] [6213543000229624] +11:47:08 [ 3] [ 6] [010000] +11:47:08 [ 4] [ 12] [000200000000] +11:47:08 [ 7] [ 10] [0320044613] +11:47:08 [ 11] [ 6] [268732] +11:47:08 [ 12] [ 6] [114613] +11:47:08 [ 13] [ 4] [0320] +11:47:08 [ 15] [ 4] [0320] +11:47:08 [ 18] [ 4] [6011] +11:47:08 [ 19] [ 3] [418] +11:47:08 [ 22] [ 3] [021] +11:47:08 [ 32] [ 6] [180893] +11:47:08 [ 35] [ 32] [6213543000229624=491212012962361] +11:47:08 [ 37] [ 12] [507904268732] +11:47:08 [ 39] [ 2] [61] +11:47:08 [ 41] [ 8] [0368KMMX] +11:47:08 [ 49] [ 3] [418] +11:47:08 ============================================================================ +11:47:08 Calculate Source COMM Id = 2 +11:47:08 ============================================================================ +11:47:08 + + +waiting on router queue for slot.... +11:47:11 ============================================================================ +11:47:11 Slot Id : <403> +11:47:11 Transaction Type : RESPONSE +11:47:11 Received From : +11:47:11 ============================================================================ +11:47:11 FNo. Len. Field Value +11:47:11 ============================================================================ +11:47:11 [ 1] [ 4] [0210] +11:47:11 [ 2] [ 16] [1808931800016402] +11:47:11 [ 3] [ 6] [011000] +11:47:11 [ 4] [ 12] [000005000000] +11:47:11 [ 6] [ 12] [000005000000] +11:47:11 [ 7] [ 10] [0320114700] +11:47:11 [ 11] [ 6] [734982] +11:47:11 [ 12] [ 6] [114700] +11:47:11 [ 13] [ 4] [0320] +11:47:11 [ 18] [ 4] [6011] +11:47:11 [ 19] [ 3] [418] +11:47:11 [ 22] [ 3] [021] +11:47:11 [ 32] [ 6] [621354] +11:47:11 [ 35] [ 27] [1808931800016402=1803500243] +11:47:11 [ 37] [ 12] [507904652984] +11:47:11 [ 38] [ 6] [734982] +11:47:11 [ 39] [ 2] [00] +11:47:11 [ 41] [ 8] [17001000] +11:47:11 [ 49] [ 3] [418] +11:47:11 [ 52] [ 16] [D3027B11E3AF8164] +11:47:11 [ 54] [ 20] [1001418C000036321400] +11:47:11 ============================================================================ +11:47:11 Sending to : +11:47:11 ============================================================================ +11:47:11 + + +waiting on router queue for slot.... +11:47:12 ============================================================================ +11:47:12 Slot Id : <403> +11:47:12 Transaction Type : RESPONSE +11:47:12 Received From : +11:47:12 ============================================================================ +11:47:12 FNo. Len. Field Value +11:47:12 ============================================================================ +11:47:12 [ 1] [ 4] [0210] +11:47:12 [ 2] [ 16] [1808931800016402] +11:47:12 [ 3] [ 6] [011000] +11:47:12 [ 4] [ 12] [000005000000] +11:47:12 [ 6] [ 12] [000005000000] +11:47:12 [ 7] [ 10] [0320114700] +11:47:12 [ 11] [ 6] [734982] +11:47:12 [ 12] [ 6] [114700] +11:47:12 [ 13] [ 4] [0320] +11:47:12 [ 18] [ 4] [6011] +11:47:12 [ 19] [ 3] [418] +11:47:12 [ 22] [ 3] [021] +11:47:12 [ 32] [ 6] [621354] +11:47:12 [ 35] [ 27] [1808931800016402=1803500243] +11:47:12 [ 37] [ 12] [507904652984] +11:47:12 [ 38] [ 6] [734982] +11:47:12 [ 39] [ 2] [00] +11:47:12 [ 41] [ 8] [17001000] +11:47:12 [ 49] [ 3] [418] +11:47:12 [ 52] [ 16] [D3027B11E3AF8164] +11:47:12 [ 54] [ 20] [1001418C000036321400] +11:47:12 ============================================================================ +11:47:12 Calculate Source COMM Id = 0 +11:47:12 ============================================================================ +11:47:12 + + +waiting on router queue for slot.... +11:47:13 ============================================================================ +11:47:13 Slot Id : <362> +11:47:13 Transaction Type : REQUEST +11:47:13 Received From : +11:47:13 ============================================================================ +11:47:13 FNo. Len. Field Value +11:47:13 ============================================================================ +11:47:13 [ 1] [ 4] [0200] +11:47:13 [ 2] [ 16] [6213544001993283] +11:47:13 [ 3] [ 6] [302000] +11:47:13 [ 4] [ 12] [000000000000] +11:47:13 [ 7] [ 10] [0320114504] +11:47:13 [ 11] [ 6] [942300] +11:47:13 [ 12] [ 6] [114504] +11:47:13 [ 13] [ 4] [0320] +11:47:13 [ 15] [ 4] [0320] +11:47:13 [ 18] [ 4] [6011] +11:47:13 [ 19] [ 3] [418] +11:47:13 [ 22] [ 3] [021] +11:47:13 [ 25] [ 2] [01] +11:47:13 [ 28] [ 9] [D00000000] +11:47:13 [ 32] [ 6] [668899] +11:47:13 [ 35] [ 32] [6213544001993283=491212019328111] +11:47:13 [ 37] [ 12] [507902678684] +11:47:13 [ 41] [ 8] [03020035] +11:47:13 [ 42] [ 15] [APT ] +11:47:13 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +11:47:13 [ 49] [ 3] [418] +11:47:13 [ 52] [ 16] [F22EE0DA16D56883] +11:47:13 ============================================================================ +11:47:13 + + +waiting on router queue for slot.... +11:47:13 Sending to : +11:47:13 ============================================================================ +11:47:13 Sending to : +11:47:13 ============================================================================ +11:47:13 ============================================================================ +11:47:13 Slot Id : <362> +11:47:13 Transaction Type : REQUEST +11:47:13 Received From : +11:47:13 ============================================================================ +11:47:13 FNo. Len. Field Value +11:47:13 ============================================================================ +11:47:13 [ 1] [ 4] [0200] +11:47:13 [ 2] [ 16] [6213544001993283] +11:47:13 [ 3] [ 6] [302000] +11:47:13 [ 4] [ 12] [000000000000] +11:47:13 [ 7] [ 10] [0320114504] +11:47:13 [ 11] [ 6] [942300] +11:47:13 [ 12] [ 6] [114504] +11:47:13 [ 13] [ 4] [0320] +11:47:13 [ 15] [ 4] [0320] +11:47:13 [ 18] [ 4] [6011] +11:47:13 [ 19] [ 3] [418] +11:47:13 [ 22] [ 3] [021] +11:47:13 [ 25] [ 2] [01] +11:47:13 [ 28] [ 9] [D00000000] +11:47:13 [ 32] [ 6] [668899] +11:47:13 [ 35] [ 32] [6213544001993283=491212019328111] +11:47:13 [ 37] [ 12] [507902678684] +11:47:13 [ 41] [ 8] [03020035] +11:47:13 [ 42] [ 15] [APT ] +11:47:13 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +11:47:13 [ 49] [ 3] [418] +11:47:13 [ 52] [ 16] [F22EE0DA16D56883] +11:47:13 ============================================================================ +11:47:13 + + +waiting on router queue for slot.... +11:47:13 Sending to : +11:47:13 ============================================================================ +11:47:13 ============================================================================ +11:47:13 Slot Id : <362> +11:47:13 Transaction Type : REQUEST +11:47:13 Received From : +11:47:13 ============================================================================ +11:47:13 FNo. Len. Field Value +11:47:13 ============================================================================ +11:47:13 [ 1] [ 4] [0200] +11:47:13 [ 2] [ 16] [6213544001993283] +11:47:13 [ 3] [ 6] [302000] +11:47:13 [ 4] [ 12] [000000000000] +11:47:13 [ 7] [ 10] [0320114504] +11:47:13 [ 11] [ 6] [942300] +11:47:13 [ 12] [ 6] [114504] +11:47:13 [ 13] [ 4] [0320] +11:47:13 [ 15] [ 4] [0320] +11:47:13 [ 18] [ 4] [6011] +11:47:13 [ 19] [ 3] [418] +11:47:13 [ 22] [ 3] [021] +11:47:13 [ 25] [ 2] [01] +11:47:13 [ 28] [ 9] [D00000000] +11:47:13 [ 32] [ 6] [668899] +11:47:13 [ 35] [ 32] [6213544001993283=491212019328111] +11:47:13 [ 37] [ 12] [507902678684] +11:47:13 [ 41] [ 8] [03020035] +11:47:13 [ 42] [ 15] [APT ] +11:47:13 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +11:47:13 [ 49] [ 3] [418] +11:47:13 [ 52] [ 16] [2ECC11AEB7AEEC5D] +11:47:13 ============================================================================ +11:47:13 + + +waiting on router queue for slot.... +11:47:13 Sending to : <0> +11:47:13 ============================================================================ +11:47:15 ============================================================================ +11:47:15 Slot Id : <362> +11:47:15 Transaction Type : RESPONSE +11:47:15 Received From : +11:47:15 ============================================================================ +11:47:15 FNo. Len. Field Value +11:47:15 ============================================================================ +11:47:15 [ 1] [ 4] [0210] +11:47:15 [ 2] [ 16] [6213544001993283] +11:47:15 [ 3] [ 6] [302000] +11:47:15 [ 4] [ 12] [000000000000] +11:47:15 [ 7] [ 10] [0320114504] +11:47:15 [ 11] [ 6] [942300] +11:47:15 [ 12] [ 6] [114504] +11:47:15 [ 13] [ 4] [0320] +11:47:15 [ 15] [ 4] [0320] +11:47:15 [ 18] [ 4] [6011] +11:47:15 [ 19] [ 3] [418] +11:47:15 [ 32] [ 6] [668899] +11:47:15 [ 35] [ 32] [6213544001993283=491212019328111] +11:47:15 [ 37] [ 12] [507902678684] +11:47:15 [ 38] [ 6] [578168] +11:47:15 [ 39] [ 2] [00] +11:47:15 [ 41] [ 8] [03020035] +11:47:15 [ 49] [ 3] [418] +11:47:15 [ 54] [ 40] [2001418C0000098536682002418C000009853668] +11:47:15 ============================================================================ +11:47:15 Sending to : +11:47:15 ============================================================================ +11:47:15 + + +waiting on router queue for slot.... +11:47:16 ============================================================================ +11:47:16 Slot Id : <362> +11:47:16 Transaction Type : RESPONSE +11:47:16 Received From : +11:47:16 ============================================================================ +11:47:16 FNo. Len. Field Value +11:47:16 ============================================================================ +11:47:16 [ 1] [ 4] [0210] +11:47:16 [ 2] [ 16] [6213544001993283] +11:47:16 [ 3] [ 6] [302000] +11:47:16 [ 4] [ 12] [000000000000] +11:47:16 [ 7] [ 10] [0320114504] +11:47:16 [ 11] [ 6] [942300] +11:47:16 [ 12] [ 6] [114504] +11:47:16 [ 13] [ 4] [0320] +11:47:16 [ 15] [ 4] [0320] +11:47:16 [ 18] [ 4] [6011] +11:47:16 [ 19] [ 3] [418] +11:47:16 [ 32] [ 6] [668899] +11:47:16 [ 35] [ 32] [6213544001993283=491212019328111] +11:47:16 [ 37] [ 12] [507902678684] +11:47:16 [ 38] [ 6] [578168] +11:47:16 [ 39] [ 2] [00] +11:47:16 [ 41] [ 8] [03020035] +11:47:16 [ 49] [ 3] [418] +11:47:16 [ 54] [ 40] [2001418C0000098536682002418C000009853668] +11:47:16 ============================================================================ +11:47:16 Calculate Source COMM Id = 4 +11:47:16 ============================================================================ +11:47:16 + + +waiting on router queue for slot.... +11:47:24 ============================================================================ +11:47:24 Slot Id : <375> +11:47:24 Transaction Type : REQUEST +11:47:24 Received From : +11:47:24 ============================================================================ +11:47:24 FNo. Len. Field Value +11:47:24 ============================================================================ +11:47:24 [ 1] [ 4] [0800] +11:47:24 [ 7] [ 10] [0320044720] +11:47:24 [ 11] [ 6] [058029] +11:47:24 [ 37] [ 12] [507911058029] +11:47:24 [ 70] [ 3] [001] +11:47:24 ============================================================================ +11:47:24 + + +waiting on router queue for slot.... +11:47:24 Sending to : +11:47:24 ============================================================================ +11:47:24 ============================================================================ +11:47:24 Slot Id : <375> +11:47:24 Transaction Type : RESPONSE +11:47:24 Received From : +11:47:24 ============================================================================ +11:47:24 FNo. Len. Field Value +11:47:24 ============================================================================ +11:47:24 [ 1] [ 4] [0810] +11:47:24 [ 7] [ 10] [0320044720] +11:47:24 [ 11] [ 6] [058029] +11:47:24 [ 37] [ 12] [507911058029] +11:47:24 [ 39] [ 2] [00] +11:47:24 [ 70] [ 3] [001] +11:47:24 ============================================================================ +11:47:24 Calculate Source COMM Id = 0 +11:47:24 ============================================================================ +11:47:24 + + +waiting on router queue for slot.... +11:47:24 ============================================================================ +11:47:24 Slot Id : <385> +11:47:24 Transaction Type : REQUEST +11:47:24 Received From : +11:47:24 ============================================================================ +11:47:24 FNo. Len. Field Value +11:47:24 ============================================================================ +11:47:24 [ 1] [ 4] [0800] +11:47:24 [ 7] [ 10] [0320044632] +11:47:24 [ 11] [ 6] [156155] +11:47:24 [ 70] [ 3] [301] +11:47:24 ============================================================================ +11:47:24 + + +waiting on router queue for slot.... +11:47:24 Sending to : +11:47:24 ============================================================================ +11:47:24 ============================================================================ +11:47:24 Slot Id : <385> +11:47:24 Transaction Type : RESPONSE +11:47:24 Received From : +11:47:24 ============================================================================ +11:47:24 FNo. Len. Field Value +11:47:24 ============================================================================ +11:47:24 [ 1] [ 4] [0810] +11:47:24 [ 7] [ 10] [0320044632] +11:47:24 [ 11] [ 6] [156155] +11:47:24 [ 39] [ 2] [00] +11:47:24 [ 70] [ 3] [301] +11:47:24 ============================================================================ +11:47:24 Calculate Source COMM Id = 2 +11:47:24 ============================================================================ +11:47:24 + + +waiting on router queue for slot.... +11:47:25 ============================================================================ +11:47:25 Slot Id : <447> +11:47:25 Transaction Type : REQUEST +11:47:25 Received From : +11:47:25 ============================================================================ +11:47:25 FNo. Len. Field Value +11:47:25 ============================================================================ +11:47:25 [ 1] [ 4] [0200] +11:47:25 [ 2] [ 16] [6213541000711898] +11:47:25 [ 3] [ 6] [010000] +11:47:25 [ 4] [ 12] [000010000000] +11:47:25 [ 7] [ 10] [0320115512] +11:47:25 [ 11] [ 6] [251182] +11:47:25 [ 12] [ 6] [115512] +11:47:25 [ 13] [ 4] [0320] +11:47:25 [ 14] [ 4] [4912] +11:47:25 [ 15] [ 4] [0320] +11:47:25 [ 18] [ 4] [6011] +11:47:25 [ 22] [ 3] [900] +11:47:25 [ 25] [ 2] [02] +11:47:25 [ 28] [ 9] [D00002000] +11:47:25 [ 32] [ 6] [220699] +11:47:25 [ 35] [ 32] [6213541000711898=491212011189967] +11:47:25 [ 37] [ 12] [507900336177] +11:47:25 [ 41] [ 8] [01001900] +11:47:25 [ 42] [ 15] [APTRA ] +11:47:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:47:25 [ 49] [ 3] [418] +11:47:25 [ 52] [ 16] [D6276A0B0D68B7C6] +11:47:25 ============================================================================ +11:47:25 + + +waiting on router queue for slot.... +11:47:25 Sending to : +11:47:25 ============================================================================ +11:47:25 Sending to : +11:47:25 ============================================================================ +11:47:25 ============================================================================ +11:47:25 Slot Id : <447> +11:47:25 Transaction Type : REQUEST +11:47:25 Received From : +11:47:25 ============================================================================ +11:47:25 FNo. Len. Field Value +11:47:25 ============================================================================ +11:47:25 [ 1] [ 4] [0200] +11:47:25 [ 2] [ 16] [6213541000711898] +11:47:25 [ 3] [ 6] [010000] +11:47:25 [ 4] [ 12] [000010000000] +11:47:25 [ 7] [ 10] [0320115512] +11:47:25 [ 11] [ 6] [251182] +11:47:25 [ 12] [ 6] [115512] +11:47:25 [ 13] [ 4] [0320] +11:47:25 [ 14] [ 4] [4912] +11:47:25 [ 15] [ 4] [0320] +11:47:25 [ 18] [ 4] [6011] +11:47:25 [ 22] [ 3] [900] +11:47:25 [ 25] [ 2] [02] +11:47:25 [ 28] [ 9] [D00002000] +11:47:25 [ 32] [ 6] [220699] +11:47:25 [ 35] [ 32] [6213541000711898=491212011189967] +11:47:25 [ 37] [ 12] [507900336177] +11:47:25 [ 41] [ 8] [01001900] +11:47:25 [ 42] [ 15] [APTRA ] +11:47:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:47:25 [ 49] [ 3] [418] +11:47:25 [ 52] [ 16] [D6276A0B0D68B7C6] +11:47:25 ============================================================================ +11:47:25 + + +waiting on router queue for slot.... +11:47:25 Sending to : +11:47:25 ============================================================================ +11:47:25 ============================================================================ +11:47:25 Slot Id : <447> +11:47:25 Transaction Type : REQUEST +11:47:25 Received From : +11:47:25 ============================================================================ +11:47:25 FNo. Len. Field Value +11:47:25 ============================================================================ +11:47:25 [ 1] [ 4] [0200] +11:47:25 [ 2] [ 16] [6213541000711898] +11:47:25 [ 3] [ 6] [010000] +11:47:25 [ 4] [ 12] [000010000000] +11:47:25 [ 7] [ 10] [0320115512] +11:47:25 [ 11] [ 6] [251182] +11:47:25 [ 12] [ 6] [115512] +11:47:25 [ 13] [ 4] [0320] +11:47:25 [ 14] [ 4] [4912] +11:47:25 [ 15] [ 4] [0320] +11:47:25 [ 18] [ 4] [6011] +11:47:25 [ 22] [ 3] [900] +11:47:25 [ 25] [ 2] [02] +11:47:25 [ 28] [ 9] [D00002000] +11:47:25 [ 32] [ 6] [220699] +11:47:25 [ 35] [ 32] [6213541000711898=491212011189967] +11:47:25 [ 37] [ 12] [507900336177] +11:47:25 [ 41] [ 8] [01001900] +11:47:25 [ 42] [ 15] [APTRA ] +11:47:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:47:25 [ 49] [ 3] [418] +11:47:25 [ 52] [ 16] [6DECD9ADA9E58839] +11:47:25 ============================================================================ +11:47:25 + + +waiting on router queue for slot.... +11:47:25 Sending to : <0> +11:47:25 ============================================================================ +11:47:25 ============================================================================ +11:47:25 Slot Id : <447> +11:47:25 Transaction Type : RESPONSE +11:47:25 Received From : +11:47:25 ============================================================================ +11:47:25 FNo. Len. Field Value +11:47:25 ============================================================================ +11:47:25 [ 1] [ 4] [0210] +11:47:25 [ 2] [ 16] [6213541000711898] +11:47:25 [ 3] [ 6] [010000] +11:47:25 [ 4] [ 12] [000010000000] +11:47:25 [ 7] [ 10] [0320115512] +11:47:25 [ 11] [ 6] [251182] +11:47:25 [ 12] [ 6] [115512] +11:47:25 [ 13] [ 4] [0320] +11:47:25 [ 15] [ 4] [0320] +11:47:25 [ 18] [ 4] [6011] +11:47:25 [ 32] [ 6] [220699] +11:47:25 [ 35] [ 32] [6213541000711898=491212011189967] +11:47:25 [ 37] [ 12] [507900336177] +11:47:25 [ 38] [ 6] [196684] +11:47:25 [ 39] [ 2] [00] +11:47:25 [ 41] [ 8] [01001900] +11:47:25 [ 49] [ 3] [418] +11:47:25 [ 54] [ 40] [0001418C0000292114270002418C000029211427] +11:47:25 ============================================================================ +11:47:25 Sending to : +11:47:25 ============================================================================ +11:47:25 + + +waiting on router queue for slot.... +11:47:26 ============================================================================ +11:47:26 Slot Id : <412> +11:47:26 Transaction Type : REQUEST +11:47:26 Received From : +11:47:26 ============================================================================ +11:47:26 FNo. Len. Field Value +11:47:26 ============================================================================ +11:47:26 [ 1] [ 4] [0800] +11:47:26 [ 2] [ 5] [02531] +11:47:26 [ 3] [ 6] [579118] +11:47:26 [ 7] [ 10] [0320044726] +11:47:26 [ 11] [ 6] [807096] +11:47:26 [ 15] [ 10] [0320044726] +11:47:26 [ 37] [ 11] [57911807096] +11:47:26 [ 70] [ 3] [001] +11:47:26 ============================================================================ +11:47:26 + + +waiting on router queue for slot.... +11:47:26 ============================================================================ +11:47:26 Slot Id : <412> +11:47:26 Transaction Type : RESPONSE +11:47:26 Received From : +11:47:26 ============================================================================ +11:47:26 FNo. Len. Field Value +11:47:26 ============================================================================ +11:47:26 [ 1] [ 4] [0810] +11:47:26 [ 7] [ 10] [0320044726] +11:47:26 [ 11] [ 6] [807096] +11:47:26 [ 15] [ 4] [0320] +11:47:26 [ 37] [ 12] [57911807096] +11:47:26 [ 39] [ 2] [00] +11:47:26 [ 70] [ 3] [001] +11:47:26 ============================================================================ +11:47:26 Sending to : +11:47:26 ============================================================================ +11:47:26 + + +waiting on router queue for slot.... +11:47:27 ============================================================================ +11:47:27 Slot Id : <447> +11:47:27 Transaction Type : RESPONSE +11:47:27 Received From : +11:47:27 ============================================================================ +11:47:27 FNo. Len. Field Value +11:47:27 ============================================================================ +11:47:27 [ 1] [ 4] [0210] +11:47:27 [ 2] [ 16] [6213541000711898] +11:47:27 [ 3] [ 6] [010000] +11:47:27 [ 4] [ 12] [000010000000] +11:47:27 [ 7] [ 10] [0320115512] +11:47:27 [ 11] [ 6] [251182] +11:47:27 [ 12] [ 6] [115512] +11:47:27 [ 13] [ 4] [0320] +11:47:27 [ 15] [ 4] [0320] +11:47:27 [ 18] [ 4] [6011] +11:47:27 [ 32] [ 6] [220699] +11:47:27 [ 35] [ 32] [6213541000711898=491212011189967] +11:47:27 [ 37] [ 12] [507900336177] +11:47:27 [ 38] [ 6] [196684] +11:47:27 [ 39] [ 2] [00] +11:47:27 [ 41] [ 8] [01001900] +11:47:27 [ 49] [ 3] [418] +11:47:27 [ 54] [ 40] [0001418C0000292114270002418C000029211427] +11:47:27 ============================================================================ +11:47:27 Calculate Source COMM Id = 1 +11:47:27 ============================================================================ +11:47:27 + + +waiting on router queue for slot.... +11:47:35 ============================================================================ +11:47:35 Slot Id : <392> +11:47:35 Transaction Type : REQUEST +11:47:35 Received From : +11:47:35 ============================================================================ +11:47:35 FNo. Len. Field Value +11:47:35 ============================================================================ +11:47:35 [ 1] [ 4] [0800] +11:47:35 [ 7] [ 10] [0320044643] +11:47:35 [ 11] [ 6] [156156] +11:47:35 [ 70] [ 3] [301] +11:47:35 ============================================================================ +11:47:35 + + +waiting on router queue for slot.... +11:47:35 Sending to : +11:47:35 ============================================================================ +11:47:35 ============================================================================ +11:47:35 Slot Id : <392> +11:47:35 Transaction Type : RESPONSE +11:47:35 Received From : +11:47:35 ============================================================================ +11:47:35 FNo. Len. Field Value +11:47:35 ============================================================================ +11:47:35 [ 1] [ 4] [0810] +11:47:35 [ 7] [ 10] [0320044643] +11:47:35 [ 11] [ 6] [156156] +11:47:35 [ 39] [ 2] [00] +11:47:35 [ 70] [ 3] [301] +11:47:35 ============================================================================ +11:47:35 Calculate Source COMM Id = 2 +11:47:35 ============================================================================ +11:47:35 + + +waiting on router queue for slot.... +11:47:35 ============================================================================ +11:47:35 Slot Id : <450> +11:47:35 Transaction Type : REQUEST +11:47:35 Received From : +11:47:35 ============================================================================ +11:47:35 FNo. Len. Field Value +11:47:35 ============================================================================ +11:47:35 [ 1] [ 4] [0200] +11:47:35 [ 2] [ 16] [6213541000320542] +11:47:35 [ 3] [ 6] [010000] +11:47:35 [ 4] [ 12] [000100000000] +11:47:35 [ 7] [ 10] [0320044642] +11:47:35 [ 11] [ 6] [268736] +11:47:35 [ 12] [ 6] [114642] +11:47:35 [ 13] [ 4] [0320] +11:47:35 [ 14] [ 4] [4912] +11:47:35 [ 15] [ 4] [0320] +11:47:35 [ 18] [ 4] [6011] +11:47:35 [ 19] [ 3] [418] +11:47:35 [ 22] [ 3] [021] +11:47:35 [ 25] [ 2] [01] +11:47:35 [ 28] [ 9] [D00002000] +11:47:35 [ 32] [ 6] [180893] +11:47:35 [ 35] [ 32] [6213541000320542=491212012054325] +11:47:35 [ 37] [ 12] [507904268736] +11:47:35 [ 41] [ 8] [0324BKDT] +11:47:35 [ 42] [ 15] [999999 ] +11:47:35 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:47:35 [ 49] [ 3] [418] +11:47:35 [ 52] [ 16] [CF8B0EB5B4436A33] +11:47:35 ============================================================================ +11:47:35 + + +waiting on router queue for slot.... +11:47:35 Sending to : +11:47:35 ============================================================================ +11:47:35 Sending to : +11:47:35 ============================================================================ +11:47:36 ============================================================================ +11:47:36 Slot Id : <450> +11:47:36 Transaction Type : REQUEST +11:47:36 Received From : +11:47:36 ============================================================================ +11:47:36 FNo. Len. Field Value +11:47:36 ============================================================================ +11:47:36 [ 1] [ 4] [0200] +11:47:36 [ 2] [ 16] [6213541000320542] +11:47:36 [ 3] [ 6] [010000] +11:47:36 [ 4] [ 12] [000100000000] +11:47:36 [ 7] [ 10] [0320044642] +11:47:36 [ 11] [ 6] [268736] +11:47:36 [ 12] [ 6] [114642] +11:47:36 [ 13] [ 4] [0320] +11:47:36 [ 14] [ 4] [4912] +11:47:36 [ 15] [ 4] [0320] +11:47:36 [ 18] [ 4] [6011] +11:47:36 [ 19] [ 3] [418] +11:47:36 [ 22] [ 3] [021] +11:47:36 [ 25] [ 2] [01] +11:47:36 [ 28] [ 9] [D00002000] +11:47:36 [ 32] [ 6] [180893] +11:47:36 [ 35] [ 32] [6213541000320542=491212012054325] +11:47:36 [ 37] [ 12] [507904268736] +11:47:36 [ 41] [ 8] [0324BKDT] +11:47:36 [ 42] [ 15] [999999 ] +11:47:36 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:47:36 [ 49] [ 3] [418] +11:47:36 [ 52] [ 16] [CF8B0EB5B4436A33] +11:47:36 ============================================================================ +11:47:36 + + +waiting on router queue for slot.... +11:47:36 Sending to : +11:47:36 ============================================================================ +11:47:36 ============================================================================ +11:47:36 Slot Id : <450> +11:47:36 Transaction Type : REQUEST +11:47:36 Received From : +11:47:36 ============================================================================ +11:47:36 FNo. Len. Field Value +11:47:36 ============================================================================ +11:47:36 [ 1] [ 4] [0200] +11:47:36 [ 2] [ 16] [6213541000320542] +11:47:36 [ 3] [ 6] [010000] +11:47:36 [ 4] [ 12] [000100000000] +11:47:36 [ 7] [ 10] [0320044642] +11:47:36 [ 11] [ 6] [268736] +11:47:36 [ 12] [ 6] [114642] +11:47:36 [ 13] [ 4] [0320] +11:47:36 [ 14] [ 4] [4912] +11:47:36 [ 15] [ 4] [0320] +11:47:36 [ 18] [ 4] [6011] +11:47:36 [ 19] [ 3] [418] +11:47:36 [ 22] [ 3] [021] +11:47:36 [ 25] [ 2] [01] +11:47:36 [ 28] [ 9] [D00002000] +11:47:36 [ 32] [ 6] [180893] +11:47:36 [ 35] [ 32] [6213541000320542=491212012054325] +11:47:36 [ 37] [ 12] [507904268736] +11:47:36 [ 41] [ 8] [0324BKDT] +11:47:36 [ 42] [ 15] [999999 ] +11:47:36 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:47:36 [ 49] [ 3] [418] +11:47:36 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:47:36 ============================================================================ +11:47:36 + + +waiting on router queue for slot.... +11:47:36 Sending to : <0> +11:47:36 ============================================================================ +11:47:37 ============================================================================ +11:47:37 Slot Id : <450> +11:47:37 Transaction Type : RESPONSE +11:47:37 Received From : +11:47:37 ============================================================================ +11:47:37 FNo. Len. Field Value +11:47:37 ============================================================================ +11:47:37 [ 1] [ 4] [0210] +11:47:37 [ 2] [ 16] [6213541000320542] +11:47:37 [ 3] [ 6] [010000] +11:47:37 [ 4] [ 12] [000100000000] +11:47:37 [ 7] [ 10] [0320044642] +11:47:37 [ 11] [ 6] [268736] +11:47:37 [ 12] [ 6] [114642] +11:47:37 [ 13] [ 4] [0320] +11:47:37 [ 15] [ 4] [0320] +11:47:37 [ 18] [ 4] [6011] +11:47:37 [ 19] [ 3] [418] +11:47:37 [ 32] [ 6] [180893] +11:47:37 [ 35] [ 32] [6213541000320542=491212012054325] +11:47:37 [ 37] [ 12] [507904268736] +11:47:37 [ 38] [ 6] [108865] +11:47:37 [ 39] [ 2] [00] +11:47:37 [ 41] [ 8] [0324BKDT] +11:47:37 [ 49] [ 3] [418] +11:47:37 [ 54] [ 40] [0001418C0002882349510002418C000288234951] +11:47:37 ============================================================================ +11:47:37 Sending to : +11:47:37 ============================================================================ +11:47:37 + + +waiting on router queue for slot.... +11:47:39 ============================================================================ +11:47:39 Slot Id : <450> +11:47:39 Transaction Type : RESPONSE +11:47:39 Received From : +11:47:39 ============================================================================ +11:47:39 FNo. Len. Field Value +11:47:39 ============================================================================ +11:47:39 [ 1] [ 4] [0210] +11:47:39 [ 2] [ 16] [6213541000320542] +11:47:39 [ 3] [ 6] [010000] +11:47:39 [ 4] [ 12] [000100000000] +11:47:39 [ 7] [ 10] [0320044642] +11:47:39 [ 11] [ 6] [268736] +11:47:39 [ 12] [ 6] [114642] +11:47:39 [ 13] [ 4] [0320] +11:47:39 [ 15] [ 4] [0320] +11:47:39 [ 18] [ 4] [6011] +11:47:39 [ 19] [ 3] [418] +11:47:39 [ 32] [ 6] [180893] +11:47:39 [ 35] [ 32] [6213541000320542=491212012054325] +11:47:39 [ 37] [ 12] [507904268736] +11:47:39 [ 38] [ 6] [108865] +11:47:39 [ 39] [ 2] [00] +11:47:39 [ 41] [ 8] [0324BKDT] +11:47:39 [ 49] [ 3] [418] +11:47:39 [ 54] [ 40] [0001418C0002882349510002418C000288234951] +11:47:39 ============================================================================ +11:47:39 Calculate Source COMM Id = 2 +11:47:39 ============================================================================ +11:47:39 + + +waiting on router queue for slot.... +11:47:52 ============================================================================ +11:47:52 Slot Id : <417> +11:47:52 Transaction Type : REQUEST +11:47:52 Received From : +11:47:52 ============================================================================ +11:47:52 FNo. Len. Field Value +11:47:52 ============================================================================ +11:47:52 [ 1] [ 4] [0800] +11:47:52 [ 7] [ 10] [0320044659] +11:47:52 [ 11] [ 6] [156157] +11:47:52 [ 70] [ 3] [301] +11:47:52 ============================================================================ +11:47:52 + + +waiting on router queue for slot.... +11:47:52 Sending to : +11:47:52 ============================================================================ +11:47:52 ============================================================================ +11:47:52 Slot Id : <417> +11:47:52 Transaction Type : RESPONSE +11:47:52 Received From : +11:47:52 ============================================================================ +11:47:52 FNo. Len. Field Value +11:47:52 ============================================================================ +11:47:52 [ 1] [ 4] [0810] +11:47:52 [ 7] [ 10] [0320044659] +11:47:52 [ 11] [ 6] [156157] +11:47:52 [ 39] [ 2] [00] +11:47:52 [ 70] [ 3] [301] +11:47:52 ============================================================================ +11:47:52 Calculate Source COMM Id = 2 +11:47:52 ============================================================================ +11:47:52 + + +waiting on router queue for slot.... +11:47:53 ============================================================================ +11:47:53 Slot Id : <391> +11:47:53 Transaction Type : REQUEST +11:47:53 Received From : +11:47:53 ============================================================================ +11:47:53 FNo. Len. Field Value +11:47:53 ============================================================================ +11:47:53 [ 1] [ 4] [0200] +11:47:53 [ 2] [ 16] [2206990000053801] +11:47:53 [ 3] [ 6] [012000] +11:47:53 [ 4] [ 12] [000010000000] +11:47:53 [ 7] [ 10] [0320114748] +11:47:53 [ 11] [ 6] [735200] +11:47:53 [ 12] [ 6] [114748] +11:47:53 [ 13] [ 4] [0320] +11:47:53 [ 15] [ 4] [0320] +11:47:53 [ 18] [ 4] [6011] +11:47:53 [ 22] [ 3] [900] +11:47:53 [ 25] [ 2] [02] +11:47:53 [ 28] [ 9] [D00002000] +11:47:53 [ 32] [ 6] [621354] +11:47:53 [ 35] [ 32] [2206990000053801=970512616183766] +11:47:53 [ 37] [ 12] [507903324956] +11:47:53 [ 41] [ 8] [13001200] +11:47:53 [ 42] [ 15] [NATIVE ] +11:47:53 [ 43] [ 40] [Mongkot-Laos Hospital Paek LAO] +11:47:53 [ 49] [ 3] [418] +11:47:53 [ 52] [ 16] [FA90BF88A23FB47E] +11:47:53 ============================================================================ +11:47:53 + + +waiting on router queue for slot.... +11:47:53 Sending to : +11:47:53 ============================================================================ +11:47:53 Sending to : +11:47:53 ============================================================================ +11:47:53 ============================================================================ +11:47:53 Slot Id : <391> +11:47:53 Transaction Type : REQUEST +11:47:53 Received From : +11:47:53 ============================================================================ +11:47:53 FNo. Len. Field Value +11:47:53 ============================================================================ +11:47:53 [ 1] [ 4] [0200] +11:47:53 [ 2] [ 16] [2206990000053801] +11:47:53 [ 3] [ 6] [012000] +11:47:53 [ 4] [ 12] [000010000000] +11:47:53 [ 7] [ 10] [0320114748] +11:47:53 [ 11] [ 6] [735200] +11:47:53 [ 12] [ 6] [114748] +11:47:53 [ 13] [ 4] [0320] +11:47:53 [ 15] [ 4] [0320] +11:47:53 [ 18] [ 4] [6011] +11:47:53 [ 22] [ 3] [900] +11:47:53 [ 25] [ 2] [02] +11:47:53 [ 28] [ 9] [D00002000] +11:47:53 [ 32] [ 6] [621354] +11:47:53 [ 35] [ 32] [2206990000053801=970512616183766] +11:47:53 [ 37] [ 12] [507903324956] +11:47:53 [ 41] [ 8] [13001200] +11:47:53 [ 42] [ 15] [NATIVE ] +11:47:53 [ 43] [ 40] [Mongkot-Laos Hospital Paek LAO] +11:47:53 [ 49] [ 3] [418] +11:47:53 [ 52] [ 16] [FA90BF88A23FB47E] +11:47:53 ============================================================================ +11:47:53 + + +waiting on router queue for slot.... +11:47:53 Sending to : +11:47:53 ============================================================================ +11:47:53 ============================================================================ +11:47:53 Slot Id : <391> +11:47:53 Transaction Type : REQUEST +11:47:53 Received From : +11:47:53 ============================================================================ +11:47:53 FNo. Len. Field Value +11:47:53 ============================================================================ +11:47:53 [ 1] [ 4] [0200] +11:47:53 [ 2] [ 16] [2206990000053801] +11:47:53 [ 3] [ 6] [012000] +11:47:53 [ 4] [ 12] [000010000000] +11:47:53 [ 7] [ 10] [0320114748] +11:47:53 [ 11] [ 6] [735200] +11:47:53 [ 12] [ 6] [114748] +11:47:53 [ 13] [ 4] [0320] +11:47:53 [ 15] [ 4] [0320] +11:47:53 [ 18] [ 4] [6011] +11:47:53 [ 22] [ 3] [900] +11:47:53 [ 25] [ 2] [02] +11:47:53 [ 28] [ 9] [D00002000] +11:47:53 [ 32] [ 6] [621354] +11:47:53 [ 35] [ 32] [2206990000053801=970512616183766] +11:47:53 [ 37] [ 12] [507903324956] +11:47:53 [ 41] [ 8] [13001200] +11:47:53 [ 42] [ 15] [NATIVE ] +11:47:53 [ 43] [ 40] [Mongkot-Laos Hospital Paek LAO] +11:47:53 [ 49] [ 3] [418] +11:47:53 [ 52] [ 16] [E0D8576D829378F7] +11:47:53 ============================================================================ +11:47:53 + + +waiting on router queue for slot.... +11:47:53 Sending to : <1> +11:47:53 ============================================================================ +11:47:56 ============================================================================ +11:47:56 Slot Id : <391> +11:47:56 Transaction Type : RESPONSE +11:47:56 Received From : +11:47:56 ============================================================================ +11:47:56 FNo. Len. Field Value +11:47:56 ============================================================================ +11:47:56 [ 1] [ 4] [0210] +11:47:56 [ 2] [ 16] [2206990000053801] +11:47:56 [ 3] [ 6] [012000] +11:47:56 [ 4] [ 12] [000010000000] +11:47:56 [ 7] [ 10] [0320114748] +11:47:56 [ 11] [ 6] [735200] +11:47:56 [ 12] [ 6] [114748] +11:47:56 [ 13] [ 4] [0320] +11:47:56 [ 15] [ 4] [0320] +11:47:56 [ 18] [ 4] [6011] +11:47:56 [ 32] [ 6] [621354] +11:47:56 [ 35] [ 32] [2206990000053801=970512616183766] +11:47:56 [ 37] [ 12] [507903324956] +11:47:56 [ 38] [ 6] [762817] +11:47:56 [ 39] [ 2] [00] +11:47:56 [ 41] [ 8] [13001200] +11:47:56 [ 49] [ 3] [418] +11:47:56 [ 54] [ 40] [2001418C0000055973002002418C000005597300] +11:47:56 ============================================================================ +11:47:56 Sending to : +11:47:56 ============================================================================ +11:47:56 + + +waiting on router queue for slot.... +11:47:57 ============================================================================ +11:47:57 Slot Id : <443> +11:47:57 Transaction Type : REQUEST +11:47:57 Received From : +11:47:57 ============================================================================ +11:47:57 FNo. Len. Field Value +11:47:57 ============================================================================ +11:47:57 [ 1] [ 4] [0200] +11:47:57 [ 2] [ 16] [6213543000229624] +11:47:57 [ 3] [ 6] [010000] +11:47:57 [ 4] [ 12] [000150000000] +11:47:57 [ 7] [ 10] [0320044704] +11:47:57 [ 11] [ 6] [268741] +11:47:57 [ 12] [ 6] [114704] +11:47:57 [ 13] [ 4] [0320] +11:47:57 [ 14] [ 4] [4912] +11:47:57 [ 15] [ 4] [0320] +11:47:57 [ 18] [ 4] [6011] +11:47:57 [ 19] [ 3] [418] +11:47:57 [ 22] [ 3] [021] +11:47:57 [ 25] [ 2] [01] +11:47:57 [ 28] [ 9] [D00002000] +11:47:57 [ 32] [ 6] [180893] +11:47:57 [ 35] [ 32] [6213543000229624=491212012962361] +11:47:57 [ 37] [ 12] [507904268741] +11:47:57 [ 41] [ 8] [0368KMMX] +11:47:57 [ 42] [ 15] [999999 ] +11:47:57 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:47:57 [ 49] [ 3] [418] +11:47:57 [ 52] [ 16] [3316DE7DB1280ED8] +11:47:57 ============================================================================ +11:47:57 + + +waiting on router queue for slot.... +11:47:57 Sending to : +11:47:57 ============================================================================ +11:47:57 Sending to : +11:47:57 ============================================================================ +11:47:57 ============================================================================ +11:47:57 Slot Id : <391> +11:47:57 Transaction Type : RESPONSE +11:47:57 Received From : +11:47:57 ============================================================================ +11:47:57 FNo. Len. Field Value +11:47:57 ============================================================================ +11:47:57 [ 1] [ 4] [0210] +11:47:57 [ 2] [ 16] [2206990000053801] +11:47:57 [ 3] [ 6] [012000] +11:47:57 [ 4] [ 12] [000010000000] +11:47:57 [ 7] [ 10] [0320114748] +11:47:57 [ 11] [ 6] [735200] +11:47:57 [ 12] [ 6] [114748] +11:47:57 [ 13] [ 4] [0320] +11:47:57 [ 15] [ 4] [0320] +11:47:57 [ 18] [ 4] [6011] +11:47:57 [ 32] [ 6] [621354] +11:47:57 [ 35] [ 32] [2206990000053801=970512616183766] +11:47:57 [ 37] [ 12] [507903324956] +11:47:57 [ 38] [ 6] [762817] +11:47:57 [ 39] [ 2] [00] +11:47:57 [ 41] [ 8] [13001200] +11:47:57 [ 49] [ 3] [418] +11:47:57 [ 54] [ 40] [2001418C0000055973002002418C000005597300] +11:47:57 ============================================================================ +11:47:57 Calculate Source COMM Id = 0 +11:47:57 ============================================================================ +11:47:57 + + +waiting on router queue for slot.... +11:47:57 ============================================================================ +11:47:57 Slot Id : <443> +11:47:57 Transaction Type : REQUEST +11:47:57 Received From : +11:47:57 ============================================================================ +11:47:57 FNo. Len. Field Value +11:47:57 ============================================================================ +11:47:57 [ 1] [ 4] [0200] +11:47:57 [ 2] [ 16] [6213543000229624] +11:47:57 [ 3] [ 6] [010000] +11:47:57 [ 4] [ 12] [000150000000] +11:47:57 [ 7] [ 10] [0320044704] +11:47:57 [ 11] [ 6] [268741] +11:47:57 [ 12] [ 6] [114704] +11:47:57 [ 13] [ 4] [0320] +11:47:57 [ 14] [ 4] [4912] +11:47:57 [ 15] [ 4] [0320] +11:47:57 [ 18] [ 4] [6011] +11:47:57 [ 19] [ 3] [418] +11:47:57 [ 22] [ 3] [021] +11:47:57 [ 25] [ 2] [01] +11:47:57 [ 28] [ 9] [D00002000] +11:47:57 [ 32] [ 6] [180893] +11:47:57 [ 35] [ 32] [6213543000229624=491212012962361] +11:47:57 [ 37] [ 12] [507904268741] +11:47:57 [ 41] [ 8] [0368KMMX] +11:47:57 [ 42] [ 15] [999999 ] +11:47:57 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:47:57 [ 49] [ 3] [418] +11:47:57 [ 52] [ 16] [3316DE7DB1280ED8] +11:47:57 ============================================================================ +11:47:57 + + +waiting on router queue for slot.... +11:47:57 Sending to : +11:47:57 ============================================================================ +11:47:57 ============================================================================ +11:47:57 Slot Id : <443> +11:47:57 Transaction Type : REQUEST +11:47:57 Received From : +11:47:57 ============================================================================ +11:47:57 FNo. Len. Field Value +11:47:57 ============================================================================ +11:47:57 [ 1] [ 4] [0200] +11:47:57 [ 2] [ 16] [6213543000229624] +11:47:57 [ 3] [ 6] [010000] +11:47:57 [ 4] [ 12] [000150000000] +11:47:57 [ 7] [ 10] [0320044704] +11:47:57 [ 11] [ 6] [268741] +11:47:57 [ 12] [ 6] [114704] +11:47:57 [ 13] [ 4] [0320] +11:47:57 [ 14] [ 4] [4912] +11:47:57 [ 15] [ 4] [0320] +11:47:57 [ 18] [ 4] [6011] +11:47:57 [ 19] [ 3] [418] +11:47:57 [ 22] [ 3] [021] +11:47:57 [ 25] [ 2] [01] +11:47:57 [ 28] [ 9] [D00002000] +11:47:57 [ 32] [ 6] [180893] +11:47:57 [ 35] [ 32] [6213543000229624=491212012962361] +11:47:57 [ 37] [ 12] [507904268741] +11:47:57 [ 41] [ 8] [0368KMMX] +11:47:57 [ 42] [ 15] [999999 ] +11:47:57 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:47:57 [ 49] [ 3] [418] +11:47:57 [ 52] [ 16] [81D346B25FB4C980] +11:47:57 ============================================================================ +11:47:57 + + +waiting on router queue for slot.... +11:47:57 Sending to : <0> +11:47:57 ============================================================================ +11:47:58 ============================================================================ +11:47:58 Slot Id : <443> +11:47:58 Transaction Type : RESPONSE +11:47:58 Received From : +11:47:58 ============================================================================ +11:47:58 FNo. Len. Field Value +11:47:58 ============================================================================ +11:47:58 [ 1] [ 4] [0210] +11:47:58 [ 2] [ 16] [6213543000229624] +11:47:58 [ 3] [ 6] [010000] +11:47:58 [ 4] [ 12] [000150000000] +11:47:58 [ 7] [ 10] [0320044704] +11:47:58 [ 11] [ 6] [268741] +11:47:58 [ 12] [ 6] [114704] +11:47:58 [ 13] [ 4] [0320] +11:47:58 [ 15] [ 4] [0320] +11:47:58 [ 18] [ 4] [6011] +11:47:58 [ 19] [ 3] [418] +11:47:58 [ 22] [ 3] [021] +11:47:58 [ 32] [ 6] [180893] +11:47:58 [ 35] [ 32] [6213543000229624=491212012962361] +11:47:58 [ 37] [ 12] [507904268741] +11:47:58 [ 39] [ 2] [61] +11:47:58 [ 41] [ 8] [0368KMMX] +11:47:58 [ 49] [ 3] [418] +11:47:58 ============================================================================ +11:47:58 Sending to : +11:47:58 ============================================================================ +11:47:58 + + +waiting on router queue for slot.... +11:47:59 ============================================================================ +11:47:59 Slot Id : <443> +11:47:59 Transaction Type : RESPONSE +11:47:59 Received From : +11:47:59 ============================================================================ +11:47:59 FNo. Len. Field Value +11:47:59 ============================================================================ +11:47:59 [ 1] [ 4] [0210] +11:47:59 [ 2] [ 16] [6213543000229624] +11:47:59 [ 3] [ 6] [010000] +11:47:59 [ 4] [ 12] [000150000000] +11:47:59 [ 7] [ 10] [0320044704] +11:47:59 [ 11] [ 6] [268741] +11:47:59 [ 12] [ 6] [114704] +11:47:59 [ 13] [ 4] [0320] +11:47:59 [ 15] [ 4] [0320] +11:47:59 [ 18] [ 4] [6011] +11:47:59 [ 19] [ 3] [418] +11:47:59 [ 22] [ 3] [021] +11:47:59 [ 32] [ 6] [180893] +11:47:59 [ 35] [ 32] [6213543000229624=491212012962361] +11:47:59 [ 37] [ 12] [507904268741] +11:47:59 [ 39] [ 2] [61] +11:47:59 [ 41] [ 8] [0368KMMX] +11:47:59 [ 49] [ 3] [418] +11:47:59 ============================================================================ +11:47:59 Calculate Source COMM Id = 2 +11:47:59 ============================================================================ +11:47:59 + + +waiting on router queue for slot.... +11:48:02 ============================================================================ +11:48:02 Slot Id : <377> +11:48:02 Transaction Type : REQUEST +11:48:02 Received From : +11:48:02 ============================================================================ +11:48:02 FNo. Len. Field Value +11:48:02 ============================================================================ +11:48:02 [ 1] [ 4] [0200] +11:48:02 [ 2] [ 16] [6213545000285696] +11:48:02 [ 3] [ 6] [300000] +11:48:02 [ 4] [ 12] [000000000000] +11:48:02 [ 7] [ 10] [0320114553] +11:48:02 [ 11] [ 6] [942330] +11:48:02 [ 12] [ 6] [114553] +11:48:02 [ 13] [ 4] [0320] +11:48:02 [ 15] [ 4] [0320] +11:48:02 [ 18] [ 4] [6011] +11:48:02 [ 19] [ 3] [418] +11:48:02 [ 22] [ 3] [021] +11:48:02 [ 25] [ 2] [01] +11:48:02 [ 28] [ 9] [D00000000] +11:48:02 [ 32] [ 6] [668899] +11:48:02 [ 35] [ 32] [6213545000285696=491212018569226] +11:48:02 [ 37] [ 12] [507900823521] +11:48:02 [ 41] [ 8] [03015001] +11:48:02 [ 42] [ 15] [APT ] +11:48:02 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +11:48:02 [ 49] [ 3] [418] +11:48:02 [ 52] [ 16] [96AA43939E077878] +11:48:02 ============================================================================ +11:48:02 + + +waiting on router queue for slot.... +11:48:02 Sending to : +11:48:02 ============================================================================ +11:48:02 Sending to : +11:48:02 ============================================================================ +11:48:02 ============================================================================ +11:48:02 Slot Id : <405> +11:48:02 Transaction Type : REQUEST +11:48:02 Received From : +11:48:02 ============================================================================ +11:48:02 FNo. Len. Field Value +11:48:02 ============================================================================ +11:48:02 [ 1] [ 4] [0200] +11:48:02 [ 2] [ 16] [1808930200051522] +11:48:02 [ 3] [ 6] [301000] +11:48:02 [ 4] [ 12] [000000000000] +11:48:02 [ 7] [ 10] [0320114823] +11:48:02 [ 11] [ 6] [204953] +11:48:02 [ 12] [ 6] [234634] +11:48:02 [ 13] [ 4] [0319] +11:48:02 [ 14] [ 4] [1803] +11:48:02 [ 15] [ 4] [0319] +11:48:02 [ 18] [ 4] [6011] +11:48:02 [ 19] [ 3] [418] +11:48:02 [ 22] [ 3] [021] +11:48:02 [ 25] [ 2] [01] +11:48:02 [ 28] [ 9] [D00000000] +11:48:02 [ 32] [ 6] [198901] +11:48:02 [ 35] [ 27] [1808930200051522=1803500463] +11:48:02 [ 37] [ 12] [507911204953] +11:48:02 [ 41] [ 8] [01529031] +11:48:02 [ 42] [ 15] [000000041529031] +11:48:02 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:48:02 [ 49] [ 3] [418] +11:48:02 [ 52] [ 16] [2E153B687E06BAD5] +11:48:02 ============================================================================ +11:48:02 + + +waiting on router queue for slot.... +11:48:02 Sending to : +11:48:02 ============================================================================ +11:48:02 Sending to : +11:48:02 ============================================================================ +11:48:02 ============================================================================ +11:48:02 Slot Id : <377> +11:48:02 Transaction Type : REQUEST +11:48:02 Received From : +11:48:02 ============================================================================ +11:48:02 FNo. Len. Field Value +11:48:02 ============================================================================ +11:48:02 [ 1] [ 4] [0200] +11:48:02 [ 2] [ 16] [6213545000285696] +11:48:02 [ 3] [ 6] [300000] +11:48:02 [ 4] [ 12] [000000000000] +11:48:02 [ 7] [ 10] [0320114553] +11:48:02 [ 11] [ 6] [942330] +11:48:02 [ 12] [ 6] [114553] +11:48:02 [ 13] [ 4] [0320] +11:48:02 [ 15] [ 4] [0320] +11:48:02 [ 18] [ 4] [6011] +11:48:02 [ 19] [ 3] [418] +11:48:02 [ 22] [ 3] [021] +11:48:02 [ 25] [ 2] [01] +11:48:02 [ 28] [ 9] [D00000000] +11:48:02 [ 32] [ 6] [668899] +11:48:02 [ 35] [ 32] [6213545000285696=491212018569226] +11:48:02 [ 37] [ 12] [507900823521] +11:48:02 [ 41] [ 8] [03015001] +11:48:02 [ 42] [ 15] [APT ] +11:48:02 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +11:48:02 [ 49] [ 3] [418] +11:48:02 [ 52] [ 16] [96AA43939E077878] +11:48:02 ============================================================================ +11:48:02 + + +waiting on router queue for slot.... +11:48:02 Sending to : +11:48:02 ============================================================================ +11:48:02 ============================================================================ +11:48:02 Slot Id : <377> +11:48:02 Transaction Type : REQUEST +11:48:02 Received From : +11:48:02 ============================================================================ +11:48:02 FNo. Len. Field Value +11:48:02 ============================================================================ +11:48:02 [ 1] [ 4] [0200] +11:48:02 [ 2] [ 16] [6213545000285696] +11:48:02 [ 3] [ 6] [300000] +11:48:02 [ 4] [ 12] [000000000000] +11:48:02 [ 7] [ 10] [0320114553] +11:48:02 [ 11] [ 6] [942330] +11:48:02 [ 12] [ 6] [114553] +11:48:02 [ 13] [ 4] [0320] +11:48:02 [ 15] [ 4] [0320] +11:48:02 [ 18] [ 4] [6011] +11:48:02 [ 19] [ 3] [418] +11:48:02 [ 22] [ 3] [021] +11:48:02 [ 25] [ 2] [01] +11:48:02 [ 28] [ 9] [D00000000] +11:48:02 [ 32] [ 6] [668899] +11:48:02 [ 35] [ 32] [6213545000285696=491212018569226] +11:48:02 [ 37] [ 12] [507900823521] +11:48:02 [ 41] [ 8] [03015001] +11:48:02 [ 42] [ 15] [APT ] +11:48:02 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +11:48:02 [ 49] [ 3] [418] +11:48:02 [ 52] [ 16] [9F1A0D57877162B1] +11:48:02 ============================================================================ +11:48:02 + + +waiting on router queue for slot.... +11:48:02 Sending to : <0> +11:48:02 ============================================================================ +11:48:02 ============================================================================ +11:48:02 Slot Id : <405> +11:48:02 Transaction Type : REQUEST +11:48:02 Received From : +11:48:02 ============================================================================ +11:48:02 FNo. Len. Field Value +11:48:02 ============================================================================ +11:48:02 [ 1] [ 4] [0200] +11:48:02 [ 2] [ 16] [1808930200051522] +11:48:02 [ 3] [ 6] [301000] +11:48:02 [ 4] [ 12] [000000000000] +11:48:02 [ 7] [ 10] [0320114823] +11:48:02 [ 11] [ 6] [204953] +11:48:02 [ 12] [ 6] [234634] +11:48:02 [ 13] [ 4] [0319] +11:48:02 [ 14] [ 4] [1803] +11:48:02 [ 15] [ 4] [0319] +11:48:02 [ 18] [ 4] [6011] +11:48:02 [ 19] [ 3] [418] +11:48:02 [ 22] [ 3] [021] +11:48:02 [ 25] [ 2] [01] +11:48:02 [ 28] [ 9] [D00000000] +11:48:02 [ 32] [ 6] [198901] +11:48:02 [ 35] [ 27] [1808930200051522=1803500463] +11:48:02 [ 37] [ 12] [507911204953] +11:48:02 [ 41] [ 8] [01529031] +11:48:02 [ 42] [ 15] [000000041529031] +11:48:02 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:48:02 [ 49] [ 3] [418] +11:48:02 [ 52] [ 16] [2E153B687E06BAD5] +11:48:02 ============================================================================ +11:48:02 + + +waiting on router queue for slot.... +11:48:02 Sending to : +11:48:02 ============================================================================ +11:48:02 ============================================================================ +11:48:02 Slot Id : <405> +11:48:02 Transaction Type : REQUEST +11:48:02 Received From : +11:48:02 ============================================================================ +11:48:02 FNo. Len. Field Value +11:48:02 ============================================================================ +11:48:02 [ 1] [ 4] [0200] +11:48:02 [ 2] [ 16] [1808930200051522] +11:48:02 [ 3] [ 6] [301000] +11:48:02 [ 4] [ 12] [000000000000] +11:48:02 [ 7] [ 10] [0320114823] +11:48:02 [ 11] [ 6] [204953] +11:48:02 [ 12] [ 6] [234634] +11:48:02 [ 13] [ 4] [0319] +11:48:02 [ 14] [ 4] [1803] +11:48:02 [ 15] [ 4] [0319] +11:48:02 [ 18] [ 4] [6011] +11:48:02 [ 19] [ 3] [418] +11:48:02 [ 22] [ 3] [021] +11:48:02 [ 25] [ 2] [01] +11:48:02 [ 28] [ 9] [D00000000] +11:48:02 [ 32] [ 6] [198901] +11:48:02 [ 35] [ 27] [1808930200051522=1803500463] +11:48:02 [ 37] [ 12] [507911204953] +11:48:02 [ 41] [ 8] [01529031] +11:48:02 [ 42] [ 15] [000000041529031] +11:48:02 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:48:02 [ 49] [ 3] [418] +11:48:02 [ 52] [ 16] [16A59C89D49AD1A6] +11:48:02 ============================================================================ +11:48:02 + + +waiting on router queue for slot.... +11:48:02 Sending to : <2> +11:48:02 ============================================================================ +11:48:03 ============================================================================ +11:48:03 Slot Id : <377> +11:48:03 Transaction Type : RESPONSE +11:48:03 Received From : +11:48:03 ============================================================================ +11:48:03 FNo. Len. Field Value +11:48:03 ============================================================================ +11:48:03 [ 1] [ 4] [0210] +11:48:03 [ 2] [ 16] [6213545000285696] +11:48:03 [ 3] [ 6] [300000] +11:48:03 [ 4] [ 12] [000000000000] +11:48:03 [ 7] [ 10] [0320114553] +11:48:03 [ 11] [ 6] [942330] +11:48:03 [ 12] [ 6] [114553] +11:48:03 [ 13] [ 4] [0320] +11:48:03 [ 15] [ 4] [0320] +11:48:03 [ 18] [ 4] [6011] +11:48:03 [ 19] [ 3] [418] +11:48:03 [ 32] [ 6] [668899] +11:48:03 [ 35] [ 32] [6213545000285696=491212018569226] +11:48:03 [ 37] [ 12] [507900823521] +11:48:03 [ 38] [ 6] [436813] +11:48:03 [ 39] [ 2] [00] +11:48:03 [ 41] [ 8] [03015001] +11:48:03 [ 49] [ 3] [418] +11:48:03 [ 54] [ 40] [0001418C0004884614510002418C000488461451] +11:48:03 ============================================================================ +11:48:03 Sending to : +11:48:03 ============================================================================ +11:48:03 + + +waiting on router queue for slot.... +11:48:04 ============================================================================ +11:48:04 Slot Id : <377> +11:48:04 Transaction Type : RESPONSE +11:48:04 Received From : +11:48:04 ============================================================================ +11:48:04 FNo. Len. Field Value +11:48:04 ============================================================================ +11:48:04 [ 1] [ 4] [0210] +11:48:04 [ 2] [ 16] [6213545000285696] +11:48:04 [ 3] [ 6] [300000] +11:48:04 [ 4] [ 12] [000000000000] +11:48:04 [ 7] [ 10] [0320114553] +11:48:04 [ 11] [ 6] [942330] +11:48:04 [ 12] [ 6] [114553] +11:48:04 [ 13] [ 4] [0320] +11:48:04 [ 15] [ 4] [0320] +11:48:04 [ 18] [ 4] [6011] +11:48:04 [ 19] [ 3] [418] +11:48:04 [ 32] [ 6] [668899] +11:48:04 [ 35] [ 32] [6213545000285696=491212018569226] +11:48:04 [ 37] [ 12] [507900823521] +11:48:04 [ 38] [ 6] [436813] +11:48:04 [ 39] [ 2] [00] +11:48:04 [ 41] [ 8] [03015001] +11:48:04 [ 49] [ 3] [418] +11:48:04 [ 54] [ 40] [0001418C0004884614510002418C000488461451] +11:48:04 ============================================================================ +11:48:04 Calculate Source COMM Id = 4 +11:48:04 ============================================================================ +11:48:04 + + +waiting on router queue for slot.... +11:48:08 ============================================================================ +11:48:08 Slot Id : <405> +11:48:08 Transaction Type : RESPONSE +11:48:08 Received From : +11:48:08 ============================================================================ +11:48:08 FNo. Len. Field Value +11:48:08 ============================================================================ +11:48:08 [ 1] [ 4] [0210] +11:48:08 [ 2] [ 16] [1808930200051522] +11:48:08 [ 3] [ 6] [301000] +11:48:08 [ 7] [ 10] [0320114823] +11:48:08 [ 11] [ 6] [204953] +11:48:08 [ 12] [ 6] [234634] +11:48:08 [ 13] [ 4] [0320] +11:48:08 [ 14] [ 4] [1803] +11:48:08 [ 19] [ 3] [418] +11:48:08 [ 32] [ 6] [198901] +11:48:08 [ 37] [ 12] [507911204953] +11:48:08 [ 38] [ 6] [204953] +11:48:08 [ 39] [ 2] [00] +11:48:08 [ 41] [ 8] [01529031] +11:48:08 [ 49] [ 3] [418] +11:48:08 [ 52] [ 16] [16A59C89D49AD1A6] +11:48:08 [ 54] [ 20] [1002418C000053013900] +11:48:08 ============================================================================ +11:48:08 Sending to : +11:48:08 ============================================================================ +11:48:08 + + +waiting on router queue for slot.... +11:48:09 ============================================================================ +11:48:09 Slot Id : <405> +11:48:09 Transaction Type : RESPONSE +11:48:09 Received From : +11:48:09 ============================================================================ +11:48:09 FNo. Len. Field Value +11:48:09 ============================================================================ +11:48:09 [ 1] [ 4] [0210] +11:48:09 [ 2] [ 16] [1808930200051522] +11:48:09 [ 3] [ 6] [301000] +11:48:09 [ 7] [ 10] [0320114823] +11:48:09 [ 11] [ 6] [204953] +11:48:09 [ 12] [ 6] [234634] +11:48:09 [ 13] [ 4] [0320] +11:48:09 [ 14] [ 4] [1803] +11:48:09 [ 19] [ 3] [418] +11:48:09 [ 32] [ 6] [198901] +11:48:09 [ 37] [ 12] [507911204953] +11:48:09 [ 38] [ 6] [204953] +11:48:09 [ 39] [ 2] [00] +11:48:09 [ 41] [ 8] [01529031] +11:48:09 [ 49] [ 3] [418] +11:48:09 [ 52] [ 16] [16A59C89D49AD1A6] +11:48:09 [ 54] [ 20] [1002418C000053013900] +11:48:09 ============================================================================ +11:48:09 Calculate Source COMM Id = 5 +11:48:09 ============================================================================ +11:48:09 + + +waiting on router queue for slot.... +11:48:14 ============================================================================ +11:48:14 Slot Id : <386> +11:48:14 Transaction Type : REQUEST +11:48:14 Received From : +11:48:14 ============================================================================ +11:48:14 FNo. Len. Field Value +11:48:14 ============================================================================ +11:48:14 [ 1] [ 4] [0800] +11:48:14 [ 7] [ 10] [0320044721] +11:48:14 [ 11] [ 6] [156158] +11:48:14 [ 70] [ 3] [301] +11:48:14 ============================================================================ +11:48:14 + + +waiting on router queue for slot.... +11:48:14 Sending to : +11:48:14 ============================================================================ +11:48:14 ============================================================================ +11:48:14 Slot Id : <386> +11:48:14 Transaction Type : RESPONSE +11:48:14 Received From : +11:48:14 ============================================================================ +11:48:14 FNo. Len. Field Value +11:48:14 ============================================================================ +11:48:14 [ 1] [ 4] [0810] +11:48:14 [ 7] [ 10] [0320044721] +11:48:14 [ 11] [ 6] [156158] +11:48:14 [ 39] [ 2] [00] +11:48:14 [ 70] [ 3] [301] +11:48:14 ============================================================================ +11:48:14 Calculate Source COMM Id = 2 +11:48:14 ============================================================================ +11:48:14 + + +waiting on router queue for slot.... +11:48:16 ============================================================================ +11:48:16 Slot Id : <446> +11:48:16 Transaction Type : REQUEST +11:48:16 Received From : +11:48:16 ============================================================================ +11:48:16 FNo. Len. Field Value +11:48:16 ============================================================================ +11:48:16 [ 1] [ 4] [0200] +11:48:16 [ 2] [ 16] [6213541000320542] +11:48:16 [ 3] [ 6] [010000] +11:48:16 [ 4] [ 12] [000100000000] +11:48:16 [ 7] [ 10] [0320044722] +11:48:16 [ 11] [ 6] [268744] +11:48:16 [ 12] [ 6] [114722] +11:48:16 [ 13] [ 4] [0320] +11:48:16 [ 14] [ 4] [4912] +11:48:16 [ 15] [ 4] [0320] +11:48:16 [ 18] [ 4] [6011] +11:48:16 [ 19] [ 3] [418] +11:48:16 [ 22] [ 3] [021] +11:48:16 [ 25] [ 2] [01] +11:48:16 [ 28] [ 9] [D00002000] +11:48:16 [ 32] [ 6] [180893] +11:48:16 [ 35] [ 32] [6213541000320542=491212012054325] +11:48:16 [ 37] [ 12] [507904268744] +11:48:16 [ 41] [ 8] [0324BKDT] +11:48:16 [ 42] [ 15] [999999 ] +11:48:16 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:48:16 [ 49] [ 3] [418] +11:48:16 [ 52] [ 16] [CF8B0EB5B4436A33] +11:48:16 ============================================================================ +11:48:16 + + +waiting on router queue for slot.... +11:48:16 Sending to : +11:48:16 ============================================================================ +11:48:16 Sending to : +11:48:16 ============================================================================ +11:48:16 ============================================================================ +11:48:16 Slot Id : <446> +11:48:16 Transaction Type : REQUEST +11:48:16 Received From : +11:48:16 ============================================================================ +11:48:16 FNo. Len. Field Value +11:48:16 ============================================================================ +11:48:16 [ 1] [ 4] [0200] +11:48:16 [ 2] [ 16] [6213541000320542] +11:48:16 [ 3] [ 6] [010000] +11:48:16 [ 4] [ 12] [000100000000] +11:48:16 [ 7] [ 10] [0320044722] +11:48:16 [ 11] [ 6] [268744] +11:48:16 [ 12] [ 6] [114722] +11:48:16 [ 13] [ 4] [0320] +11:48:16 [ 14] [ 4] [4912] +11:48:16 [ 15] [ 4] [0320] +11:48:16 [ 18] [ 4] [6011] +11:48:16 [ 19] [ 3] [418] +11:48:16 [ 22] [ 3] [021] +11:48:16 [ 25] [ 2] [01] +11:48:16 [ 28] [ 9] [D00002000] +11:48:16 [ 32] [ 6] [180893] +11:48:16 [ 35] [ 32] [6213541000320542=491212012054325] +11:48:16 [ 37] [ 12] [507904268744] +11:48:16 [ 41] [ 8] [0324BKDT] +11:48:16 [ 42] [ 15] [999999 ] +11:48:16 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:48:16 [ 49] [ 3] [418] +11:48:16 [ 52] [ 16] [CF8B0EB5B4436A33] +11:48:16 ============================================================================ +11:48:16 + + +waiting on router queue for slot.... +11:48:16 Sending to : +11:48:16 ============================================================================ +11:48:16 ============================================================================ +11:48:16 Slot Id : <446> +11:48:16 Transaction Type : REQUEST +11:48:16 Received From : +11:48:16 ============================================================================ +11:48:16 FNo. Len. Field Value +11:48:16 ============================================================================ +11:48:16 [ 1] [ 4] [0200] +11:48:16 [ 2] [ 16] [6213541000320542] +11:48:16 [ 3] [ 6] [010000] +11:48:16 [ 4] [ 12] [000100000000] +11:48:16 [ 7] [ 10] [0320044722] +11:48:16 [ 11] [ 6] [268744] +11:48:16 [ 12] [ 6] [114722] +11:48:16 [ 13] [ 4] [0320] +11:48:16 [ 14] [ 4] [4912] +11:48:16 [ 15] [ 4] [0320] +11:48:16 [ 18] [ 4] [6011] +11:48:16 [ 19] [ 3] [418] +11:48:16 [ 22] [ 3] [021] +11:48:16 [ 25] [ 2] [01] +11:48:16 [ 28] [ 9] [D00002000] +11:48:16 [ 32] [ 6] [180893] +11:48:16 [ 35] [ 32] [6213541000320542=491212012054325] +11:48:16 [ 37] [ 12] [507904268744] +11:48:16 [ 41] [ 8] [0324BKDT] +11:48:16 [ 42] [ 15] [999999 ] +11:48:16 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +11:48:16 [ 49] [ 3] [418] +11:48:16 [ 52] [ 16] [3DDB6FFDE4D7C597] +11:48:16 ============================================================================ +11:48:16 + + +waiting on router queue for slot.... +11:48:16 Sending to : <0> +11:48:16 ============================================================================ +11:48:17 ============================================================================ +11:48:17 Slot Id : <446> +11:48:17 Transaction Type : RESPONSE +11:48:17 Received From : +11:48:17 ============================================================================ +11:48:17 FNo. Len. Field Value +11:48:17 ============================================================================ +11:48:17 [ 1] [ 4] [0210] +11:48:17 [ 2] [ 16] [6213541000320542] +11:48:17 [ 3] [ 6] [010000] +11:48:17 [ 4] [ 12] [000100000000] +11:48:17 [ 7] [ 10] [0320044722] +11:48:17 [ 11] [ 6] [268744] +11:48:17 [ 12] [ 6] [114722] +11:48:17 [ 13] [ 4] [0320] +11:48:17 [ 15] [ 4] [0320] +11:48:17 [ 18] [ 4] [6011] +11:48:17 [ 19] [ 3] [418] +11:48:17 [ 32] [ 6] [180893] +11:48:17 [ 35] [ 32] [6213541000320542=491212012054325] +11:48:17 [ 37] [ 12] [507904268744] +11:48:17 [ 38] [ 6] [488985] +11:48:17 [ 39] [ 2] [00] +11:48:17 [ 41] [ 8] [0324BKDT] +11:48:17 [ 49] [ 3] [418] +11:48:17 [ 54] [ 40] [0001418C0001880349510002418C000188034951] +11:48:17 ============================================================================ +11:48:17 Sending to : +11:48:17 ============================================================================ +11:48:17 + + +waiting on router queue for slot.... +11:48:19 ============================================================================ +11:48:19 Slot Id : <446> +11:48:19 Transaction Type : RESPONSE +11:48:19 Received From : +11:48:19 ============================================================================ +11:48:19 FNo. Len. Field Value +11:48:19 ============================================================================ +11:48:19 [ 1] [ 4] [0210] +11:48:19 [ 2] [ 16] [6213541000320542] +11:48:19 [ 3] [ 6] [010000] +11:48:19 [ 4] [ 12] [000100000000] +11:48:19 [ 7] [ 10] [0320044722] +11:48:19 [ 11] [ 6] [268744] +11:48:19 [ 12] [ 6] [114722] +11:48:19 [ 13] [ 4] [0320] +11:48:19 [ 15] [ 4] [0320] +11:48:19 [ 18] [ 4] [6011] +11:48:19 [ 19] [ 3] [418] +11:48:19 [ 32] [ 6] [180893] +11:48:19 [ 35] [ 32] [6213541000320542=491212012054325] +11:48:19 [ 37] [ 12] [507904268744] +11:48:19 [ 38] [ 6] [488985] +11:48:19 [ 39] [ 2] [00] +11:48:19 [ 41] [ 8] [0324BKDT] +11:48:19 [ 49] [ 3] [418] +11:48:19 [ 54] [ 40] [0001418C0001880349510002418C000188034951] +11:48:19 ============================================================================ +11:48:19 Calculate Source COMM Id = 2 +11:48:19 ============================================================================ +11:48:19 + + +waiting on router queue for slot.... +11:48:28 ============================================================================ +11:48:28 Slot Id : <456> +11:48:28 Transaction Type : REQUEST +11:48:28 Received From : +11:48:28 ============================================================================ +11:48:28 FNo. Len. Field Value +11:48:28 ============================================================================ +11:48:28 [ 1] [ 4] [0800] +11:48:28 [ 2] [ 5] [02531] +11:48:28 [ 3] [ 6] [579118] +11:48:28 [ 7] [ 10] [0320044828] +11:48:28 [ 11] [ 6] [807097] +11:48:28 [ 15] [ 10] [0320044828] +11:48:28 [ 37] [ 11] [57911807097] +11:48:28 [ 70] [ 3] [001] +11:48:28 ============================================================================ +11:48:28 + + +waiting on router queue for slot.... +11:48:28 ============================================================================ +11:48:28 Slot Id : <456> +11:48:28 Transaction Type : RESPONSE +11:48:28 Received From : +11:48:28 ============================================================================ +11:48:28 FNo. Len. Field Value +11:48:28 ============================================================================ +11:48:28 [ 1] [ 4] [0810] +11:48:28 [ 7] [ 10] [0320044828] +11:48:28 [ 11] [ 6] [807097] +11:48:28 [ 15] [ 4] [0320] +11:48:28 [ 37] [ 12] [57911807097] +11:48:28 [ 39] [ 2] [00] +11:48:28 [ 70] [ 3] [001] +11:48:28 ============================================================================ +11:48:28 Sending to : +11:48:28 ============================================================================ +11:48:28 + + +waiting on router queue for slot.... +11:48:30 ============================================================================ +11:48:30 Slot Id : <429> +11:48:30 Transaction Type : REQUEST +11:48:30 Received From : +11:48:30 ============================================================================ +11:48:30 FNo. Len. Field Value +11:48:30 ============================================================================ +11:48:30 [ 1] [ 4] [0800] +11:48:30 [ 7] [ 10] [0320044737] +11:48:30 [ 11] [ 6] [156159] +11:48:30 [ 70] [ 3] [301] +11:48:30 ============================================================================ +11:48:30 + + +waiting on router queue for slot.... +11:48:30 Sending to : +11:48:30 ============================================================================ +11:48:30 ============================================================================ +11:48:30 Slot Id : <429> +11:48:30 Transaction Type : RESPONSE +11:48:30 Received From : +11:48:30 ============================================================================ +11:48:30 FNo. Len. Field Value +11:48:30 ============================================================================ +11:48:30 [ 1] [ 4] [0810] +11:48:30 [ 7] [ 10] [0320044737] +11:48:30 [ 11] [ 6] [156159] +11:48:30 [ 39] [ 2] [00] +11:48:30 [ 70] [ 3] [301] +11:48:30 ============================================================================ +11:48:30 Calculate Source COMM Id = 2 +11:48:30 ============================================================================ +11:48:30 + + +waiting on router queue for slot.... +11:48:41 ============================================================================ +11:48:41 Slot Id : <404> +11:48:41 Transaction Type : REQUEST +11:48:41 Received From : +11:48:41 ============================================================================ +11:48:41 FNo. Len. Field Value +11:48:41 ============================================================================ +11:48:41 [ 1] [ 4] [0800] +11:48:41 [ 7] [ 10] [0320044749] +11:48:41 [ 11] [ 6] [156160] +11:48:41 [ 70] [ 3] [301] +11:48:41 ============================================================================ +11:48:41 + + +waiting on router queue for slot.... +11:48:41 Sending to : +11:48:41 ============================================================================ +11:48:41 ============================================================================ +11:48:41 Slot Id : <404> +11:48:41 Transaction Type : RESPONSE +11:48:41 Received From : +11:48:41 ============================================================================ +11:48:41 FNo. Len. Field Value +11:48:41 ============================================================================ +11:48:41 [ 1] [ 4] [0810] +11:48:41 [ 7] [ 10] [0320044749] +11:48:41 [ 11] [ 6] [156160] +11:48:41 [ 39] [ 2] [00] +11:48:41 [ 70] [ 3] [301] +11:48:41 ============================================================================ +11:48:41 Calculate Source COMM Id = 2 +11:48:41 ============================================================================ +11:48:41 + + +waiting on router queue for slot.... +11:48:51 ============================================================================ +11:48:51 Slot Id : <445> +11:48:51 Transaction Type : REQUEST +11:48:51 Received From : +11:48:51 ============================================================================ +11:48:51 FNo. Len. Field Value +11:48:51 ============================================================================ +11:48:51 [ 1] [ 4] [0200] +11:48:51 [ 2] [ 16] [6213543000229624] +11:48:51 [ 3] [ 6] [010000] +11:48:51 [ 4] [ 12] [000050000000] +11:48:51 [ 7] [ 10] [0320044758] +11:48:51 [ 11] [ 6] [268752] +11:48:51 [ 12] [ 6] [114758] +11:48:51 [ 13] [ 4] [0320] +11:48:51 [ 14] [ 4] [4912] +11:48:51 [ 15] [ 4] [0320] +11:48:51 [ 18] [ 4] [6011] +11:48:51 [ 19] [ 3] [418] +11:48:51 [ 22] [ 3] [021] +11:48:51 [ 25] [ 2] [01] +11:48:51 [ 28] [ 9] [D00002000] +11:48:51 [ 32] [ 6] [180893] +11:48:51 [ 35] [ 32] [6213543000229624=491212012962361] +11:48:51 [ 37] [ 12] [507904268752] +11:48:51 [ 41] [ 8] [0368KMMX] +11:48:51 [ 42] [ 15] [999999 ] +11:48:51 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:48:51 [ 49] [ 3] [418] +11:48:51 [ 52] [ 16] [3316DE7DB1280ED8] +11:48:51 ============================================================================ +11:48:51 + + +waiting on router queue for slot.... +11:48:51 Sending to : +11:48:51 ============================================================================ +11:48:51 Sending to : +11:48:51 ============================================================================ +11:48:51 ============================================================================ +11:48:51 Slot Id : <445> +11:48:51 Transaction Type : REQUEST +11:48:51 Received From : +11:48:51 ============================================================================ +11:48:51 FNo. Len. Field Value +11:48:51 ============================================================================ +11:48:51 [ 1] [ 4] [0200] +11:48:51 [ 2] [ 16] [6213543000229624] +11:48:51 [ 3] [ 6] [010000] +11:48:51 [ 4] [ 12] [000050000000] +11:48:51 [ 7] [ 10] [0320044758] +11:48:51 [ 11] [ 6] [268752] +11:48:51 [ 12] [ 6] [114758] +11:48:51 [ 13] [ 4] [0320] +11:48:51 [ 14] [ 4] [4912] +11:48:51 [ 15] [ 4] [0320] +11:48:51 [ 18] [ 4] [6011] +11:48:51 [ 19] [ 3] [418] +11:48:51 [ 22] [ 3] [021] +11:48:51 [ 25] [ 2] [01] +11:48:51 [ 28] [ 9] [D00002000] +11:48:51 [ 32] [ 6] [180893] +11:48:51 [ 35] [ 32] [6213543000229624=491212012962361] +11:48:51 [ 37] [ 12] [507904268752] +11:48:51 [ 41] [ 8] [0368KMMX] +11:48:51 [ 42] [ 15] [999999 ] +11:48:51 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:48:51 [ 49] [ 3] [418] +11:48:51 [ 52] [ 16] [3316DE7DB1280ED8] +11:48:51 ============================================================================ +11:48:51 + + +waiting on router queue for slot.... +11:48:51 Sending to : +11:48:51 ============================================================================ +11:48:51 ============================================================================ +11:48:51 Slot Id : <445> +11:48:51 Transaction Type : REQUEST +11:48:51 Received From : +11:48:51 ============================================================================ +11:48:51 FNo. Len. Field Value +11:48:51 ============================================================================ +11:48:51 [ 1] [ 4] [0200] +11:48:51 [ 2] [ 16] [6213543000229624] +11:48:51 [ 3] [ 6] [010000] +11:48:51 [ 4] [ 12] [000050000000] +11:48:51 [ 7] [ 10] [0320044758] +11:48:51 [ 11] [ 6] [268752] +11:48:51 [ 12] [ 6] [114758] +11:48:51 [ 13] [ 4] [0320] +11:48:51 [ 14] [ 4] [4912] +11:48:51 [ 15] [ 4] [0320] +11:48:51 [ 18] [ 4] [6011] +11:48:51 [ 19] [ 3] [418] +11:48:51 [ 22] [ 3] [021] +11:48:51 [ 25] [ 2] [01] +11:48:51 [ 28] [ 9] [D00002000] +11:48:51 [ 32] [ 6] [180893] +11:48:51 [ 35] [ 32] [6213543000229624=491212012962361] +11:48:51 [ 37] [ 12] [507904268752] +11:48:51 [ 41] [ 8] [0368KMMX] +11:48:51 [ 42] [ 15] [999999 ] +11:48:51 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:48:51 [ 49] [ 3] [418] +11:48:51 [ 52] [ 16] [81D346B25FB4C980] +11:48:51 ============================================================================ +11:48:51 + + +waiting on router queue for slot.... +11:48:51 Sending to : <0> +11:48:51 ============================================================================ +11:48:51 ============================================================================ +11:48:51 Slot Id : <424> +11:48:51 Transaction Type : REQUEST +11:48:51 Received From : +11:48:51 ============================================================================ +11:48:51 FNo. Len. Field Value +11:48:51 ============================================================================ +11:48:51 [ 1] [ 4] [0800] +11:48:51 [ 7] [ 10] [0320044759] +11:48:51 [ 11] [ 6] [156161] +11:48:51 [ 70] [ 3] [301] +11:48:51 ============================================================================ +11:48:51 + + +waiting on router queue for slot.... +11:48:51 Sending to : +11:48:51 ============================================================================ +11:48:51 ============================================================================ +11:48:51 Slot Id : <424> +11:48:51 Transaction Type : RESPONSE +11:48:51 Received From : +11:48:51 ============================================================================ +11:48:51 FNo. Len. Field Value +11:48:51 ============================================================================ +11:48:51 [ 1] [ 4] [0810] +11:48:51 [ 7] [ 10] [0320044759] +11:48:51 [ 11] [ 6] [156161] +11:48:51 [ 39] [ 2] [00] +11:48:51 [ 70] [ 3] [301] +11:48:51 ============================================================================ +11:48:51 Calculate Source COMM Id = 2 +11:48:51 ============================================================================ +11:48:51 + + +waiting on router queue for slot.... +11:48:51 ============================================================================ +11:48:51 Slot Id : <445> +11:48:51 Transaction Type : RESPONSE +11:48:51 Received From : +11:48:51 ============================================================================ +11:48:51 FNo. Len. Field Value +11:48:51 ============================================================================ +11:48:51 [ 1] [ 4] [0210] +11:48:51 [ 2] [ 16] [6213543000229624] +11:48:51 [ 3] [ 6] [010000] +11:48:51 [ 4] [ 12] [000050000000] +11:48:51 [ 7] [ 10] [0320044758] +11:48:51 [ 11] [ 6] [268752] +11:48:51 [ 12] [ 6] [114758] +11:48:51 [ 13] [ 4] [0320] +11:48:51 [ 15] [ 4] [0320] +11:48:51 [ 18] [ 4] [6011] +11:48:51 [ 19] [ 3] [418] +11:48:51 [ 32] [ 6] [180893] +11:48:51 [ 35] [ 32] [6213543000229624=491212012962361] +11:48:51 [ 37] [ 12] [507904268752] +11:48:51 [ 38] [ 6] [131986] +11:48:51 [ 39] [ 2] [00] +11:48:51 [ 41] [ 8] [0368KMMX] +11:48:51 [ 49] [ 3] [418] +11:48:51 [ 54] [ 40] [0001418C0001582038360002418C000158203836] +11:48:51 ============================================================================ +11:48:51 Sending to : +11:48:51 ============================================================================ +11:48:51 + + +waiting on router queue for slot.... +11:48:53 ============================================================================ +11:48:53 Slot Id : <445> +11:48:53 Transaction Type : RESPONSE +11:48:53 Received From : +11:48:53 ============================================================================ +11:48:53 FNo. Len. Field Value +11:48:53 ============================================================================ +11:48:53 [ 1] [ 4] [0210] +11:48:53 [ 2] [ 16] [6213543000229624] +11:48:53 [ 3] [ 6] [010000] +11:48:53 [ 4] [ 12] [000050000000] +11:48:53 [ 7] [ 10] [0320044758] +11:48:53 [ 11] [ 6] [268752] +11:48:53 [ 12] [ 6] [114758] +11:48:53 [ 13] [ 4] [0320] +11:48:53 [ 15] [ 4] [0320] +11:48:53 [ 18] [ 4] [6011] +11:48:53 [ 19] [ 3] [418] +11:48:53 [ 32] [ 6] [180893] +11:48:53 [ 35] [ 32] [6213543000229624=491212012962361] +11:48:53 [ 37] [ 12] [507904268752] +11:48:53 [ 38] [ 6] [131986] +11:48:53 [ 39] [ 2] [00] +11:48:53 [ 41] [ 8] [0368KMMX] +11:48:53 [ 49] [ 3] [418] +11:48:53 [ 54] [ 40] [0001418C0001582038360002418C000158203836] +11:48:53 ============================================================================ +11:48:53 Calculate Source COMM Id = 2 +11:48:53 ============================================================================ +11:48:53 + + +waiting on router queue for slot.... +11:49:04 ============================================================================ +11:49:04 Slot Id : <435> +11:49:04 Transaction Type : REQUEST +11:49:04 Received From : +11:49:04 ============================================================================ +11:49:04 FNo. Len. Field Value +11:49:04 ============================================================================ +11:49:04 [ 1] [ 4] [0200] +11:49:04 [ 2] [ 16] [1808930200051522] +11:49:04 [ 3] [ 6] [011000] +11:49:04 [ 4] [ 12] [000020000000] +11:49:04 [ 7] [ 10] [0320114925] +11:49:04 [ 11] [ 6] [204972] +11:49:04 [ 12] [ 6] [234734] +11:49:04 [ 13] [ 4] [0319] +11:49:04 [ 14] [ 4] [1803] +11:49:04 [ 15] [ 4] [0319] +11:49:04 [ 18] [ 4] [6011] +11:49:04 [ 19] [ 3] [418] +11:49:04 [ 22] [ 3] [021] +11:49:04 [ 25] [ 2] [01] +11:49:04 [ 28] [ 9] [D00002000] +11:49:04 [ 32] [ 6] [198901] +11:49:04 [ 35] [ 27] [1808930200051522=1803500463] +11:49:04 [ 37] [ 12] [507911204972] +11:49:04 [ 41] [ 8] [01529031] +11:49:04 [ 42] [ 15] [000000041529031] +11:49:04 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:49:04 [ 49] [ 3] [418] +11:49:04 [ 52] [ 16] [2E153B687E06BAD5] +11:49:04 ============================================================================ +11:49:04 + + +waiting on router queue for slot.... +11:49:04 Sending to : +11:49:04 ============================================================================ +11:49:04 Sending to : +11:49:04 ============================================================================ +11:49:04 ============================================================================ +11:49:04 Slot Id : <435> +11:49:04 Transaction Type : REQUEST +11:49:04 Received From : +11:49:04 ============================================================================ +11:49:04 FNo. Len. Field Value +11:49:04 ============================================================================ +11:49:04 [ 1] [ 4] [0200] +11:49:04 [ 2] [ 16] [1808930200051522] +11:49:04 [ 3] [ 6] [011000] +11:49:04 [ 4] [ 12] [000020000000] +11:49:04 [ 7] [ 10] [0320114925] +11:49:04 [ 11] [ 6] [204972] +11:49:04 [ 12] [ 6] [234734] +11:49:04 [ 13] [ 4] [0319] +11:49:04 [ 14] [ 4] [1803] +11:49:04 [ 15] [ 4] [0319] +11:49:04 [ 18] [ 4] [6011] +11:49:04 [ 19] [ 3] [418] +11:49:04 [ 22] [ 3] [021] +11:49:04 [ 25] [ 2] [01] +11:49:04 [ 28] [ 9] [D00002000] +11:49:04 [ 32] [ 6] [198901] +11:49:04 [ 35] [ 27] [1808930200051522=1803500463] +11:49:04 [ 37] [ 12] [507911204972] +11:49:04 [ 41] [ 8] [01529031] +11:49:04 [ 42] [ 15] [000000041529031] +11:49:04 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:49:04 [ 49] [ 3] [418] +11:49:04 [ 52] [ 16] [2E153B687E06BAD5] +11:49:04 ============================================================================ +11:49:04 + + +waiting on router queue for slot.... +11:49:04 Sending to : +11:49:04 ============================================================================ +11:49:04 ============================================================================ +11:49:04 Slot Id : <435> +11:49:04 Transaction Type : REQUEST +11:49:04 Received From : +11:49:04 ============================================================================ +11:49:04 FNo. Len. Field Value +11:49:04 ============================================================================ +11:49:04 [ 1] [ 4] [0200] +11:49:04 [ 2] [ 16] [1808930200051522] +11:49:04 [ 3] [ 6] [011000] +11:49:04 [ 4] [ 12] [000020000000] +11:49:04 [ 7] [ 10] [0320114925] +11:49:04 [ 11] [ 6] [204972] +11:49:04 [ 12] [ 6] [234734] +11:49:04 [ 13] [ 4] [0319] +11:49:04 [ 14] [ 4] [1803] +11:49:04 [ 15] [ 4] [0319] +11:49:04 [ 18] [ 4] [6011] +11:49:04 [ 19] [ 3] [418] +11:49:04 [ 22] [ 3] [021] +11:49:04 [ 25] [ 2] [01] +11:49:04 [ 28] [ 9] [D00002000] +11:49:04 [ 32] [ 6] [198901] +11:49:04 [ 35] [ 27] [1808930200051522=1803500463] +11:49:04 [ 37] [ 12] [507911204972] +11:49:04 [ 41] [ 8] [01529031] +11:49:04 [ 42] [ 15] [000000041529031] +11:49:04 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:49:04 [ 49] [ 3] [418] +11:49:04 [ 52] [ 16] [16A59C89D49AD1A6] +11:49:04 ============================================================================ +11:49:04 + + +waiting on router queue for slot.... +11:49:04 Sending to : <2> +11:49:04 ============================================================================ +11:49:10 ============================================================================ +11:49:10 Slot Id : <435> +11:49:10 Transaction Type : RESPONSE +11:49:10 Received From : +11:49:10 ============================================================================ +11:49:10 FNo. Len. Field Value +11:49:10 ============================================================================ +11:49:10 [ 1] [ 4] [0210] +11:49:10 [ 2] [ 16] [1808930200051522] +11:49:10 [ 3] [ 6] [011000] +11:49:10 [ 4] [ 12] [000020000000] +11:49:10 [ 6] [ 12] [000020000000] +11:49:10 [ 7] [ 10] [0320114925] +11:49:10 [ 11] [ 6] [204972] +11:49:10 [ 12] [ 6] [234734] +11:49:10 [ 13] [ 4] [0320] +11:49:10 [ 14] [ 4] [1803] +11:49:10 [ 18] [ 4] [6011] +11:49:10 [ 19] [ 3] [418] +11:49:10 [ 22] [ 3] [021] +11:49:10 [ 32] [ 6] [198901] +11:49:10 [ 35] [ 27] [1808930200051522=1803500463] +11:49:10 [ 37] [ 12] [507911204972] +11:49:10 [ 38] [ 6] [204972] +11:49:10 [ 39] [ 2] [00] +11:49:10 [ 41] [ 8] [01529031] +11:49:10 [ 49] [ 3] [418] +11:49:10 [ 52] [ 16] [16A59C89D49AD1A6] +11:49:10 [ 54] [ 20] [1001418C000032813900] +11:49:10 ============================================================================ +11:49:10 Sending to : +11:49:10 ============================================================================ +11:49:10 + + +waiting on router queue for slot.... +11:49:12 ============================================================================ +11:49:12 Slot Id : <435> +11:49:12 Transaction Type : RESPONSE +11:49:12 Received From : +11:49:12 ============================================================================ +11:49:12 FNo. Len. Field Value +11:49:12 ============================================================================ +11:49:12 [ 1] [ 4] [0210] +11:49:12 [ 2] [ 16] [1808930200051522] +11:49:12 [ 3] [ 6] [011000] +11:49:12 [ 4] [ 12] [000020000000] +11:49:12 [ 6] [ 12] [000020000000] +11:49:12 [ 7] [ 10] [0320114925] +11:49:12 [ 11] [ 6] [204972] +11:49:12 [ 12] [ 6] [234734] +11:49:12 [ 13] [ 4] [0320] +11:49:12 [ 14] [ 4] [1803] +11:49:12 [ 18] [ 4] [6011] +11:49:12 [ 19] [ 3] [418] +11:49:12 [ 22] [ 3] [021] +11:49:12 [ 32] [ 6] [198901] +11:49:12 [ 35] [ 27] [1808930200051522=1803500463] +11:49:12 [ 37] [ 12] [507911204972] +11:49:12 [ 38] [ 6] [204972] +11:49:12 [ 39] [ 2] [00] +11:49:12 [ 41] [ 8] [01529031] +11:49:12 [ 49] [ 3] [418] +11:49:12 [ 52] [ 16] [16A59C89D49AD1A6] +11:49:12 [ 54] [ 20] [1001418C000032813900] +11:49:12 ============================================================================ +11:49:12 Calculate Source COMM Id = 5 +11:49:12 ============================================================================ +11:49:12 + + +waiting on router queue for slot.... +11:49:18 ============================================================================ +11:49:18 Slot Id : <438> +11:49:18 Transaction Type : REQUEST +11:49:18 Received From : +11:49:18 ============================================================================ +11:49:18 FNo. Len. Field Value +11:49:18 ============================================================================ +11:49:18 [ 1] [ 4] [0800] +11:49:18 [ 7] [ 10] [0320044825] +11:49:18 [ 11] [ 6] [156162] +11:49:18 [ 70] [ 3] [301] +11:49:18 ============================================================================ +11:49:18 + + +waiting on router queue for slot.... +11:49:18 Sending to : +11:49:18 ============================================================================ +11:49:18 ============================================================================ +11:49:18 Slot Id : <438> +11:49:18 Transaction Type : RESPONSE +11:49:18 Received From : +11:49:18 ============================================================================ +11:49:18 FNo. Len. Field Value +11:49:18 ============================================================================ +11:49:18 [ 1] [ 4] [0810] +11:49:18 [ 7] [ 10] [0320044825] +11:49:18 [ 11] [ 6] [156162] +11:49:18 [ 39] [ 2] [00] +11:49:18 [ 70] [ 3] [301] +11:49:18 ============================================================================ +11:49:18 Calculate Source COMM Id = 2 +11:49:18 ============================================================================ +11:49:18 + + +waiting on router queue for slot.... +11:49:27 ============================================================================ +11:49:27 Slot Id : <442> +11:49:27 Transaction Type : REQUEST +11:49:27 Received From : +11:49:27 ============================================================================ +11:49:27 FNo. Len. Field Value +11:49:27 ============================================================================ +11:49:27 [ 1] [ 4] [0200] +11:49:27 [ 2] [ 16] [6688990040163279] +11:49:27 [ 3] [ 6] [301000] +11:49:27 [ 7] [ 10] [0320044834] +11:49:27 [ 11] [ 6] [268757] +11:49:27 [ 12] [ 6] [114834] +11:49:27 [ 13] [ 4] [0320] +11:49:27 [ 14] [ 4] [9805] +11:49:27 [ 15] [ 4] [0320] +11:49:27 [ 18] [ 4] [6011] +11:49:27 [ 19] [ 3] [418] +11:49:27 [ 22] [ 3] [021] +11:49:27 [ 25] [ 2] [01] +11:49:27 [ 32] [ 6] [180893] +11:49:27 [ 35] [ 37] [6688990040163279=98051261269486400000] +11:49:27 [ 37] [ 12] [507904268757] +11:49:27 [ 41] [ 8] [0531VTHH] +11:49:27 [ 42] [ 15] [999999 ] +11:49:27 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +11:49:27 [ 49] [ 3] [418] +11:49:27 [ 52] [ 16] [8D8922556B92154E] +11:49:27 ============================================================================ +11:49:27 + + +waiting on router queue for slot.... +11:49:27 Sending to : +11:49:27 ============================================================================ +11:49:27 Sending to : +11:49:27 ============================================================================ +11:49:27 ============================================================================ +11:49:27 Slot Id : <442> +11:49:27 Transaction Type : REQUEST +11:49:27 Received From : +11:49:27 ============================================================================ +11:49:27 FNo. Len. Field Value +11:49:27 ============================================================================ +11:49:27 [ 1] [ 4] [0200] +11:49:27 [ 2] [ 16] [6688990040163279] +11:49:27 [ 3] [ 6] [301000] +11:49:27 [ 7] [ 10] [0320044834] +11:49:27 [ 11] [ 6] [268757] +11:49:27 [ 12] [ 6] [114834] +11:49:27 [ 13] [ 4] [0320] +11:49:27 [ 14] [ 4] [9805] +11:49:27 [ 15] [ 4] [0320] +11:49:27 [ 18] [ 4] [6011] +11:49:27 [ 19] [ 3] [418] +11:49:27 [ 22] [ 3] [021] +11:49:27 [ 25] [ 2] [01] +11:49:27 [ 32] [ 6] [180893] +11:49:27 [ 35] [ 37] [6688990040163279=98051261269486400000] +11:49:27 [ 37] [ 12] [507904268757] +11:49:27 [ 41] [ 8] [0531VTHH] +11:49:27 [ 42] [ 15] [999999 ] +11:49:27 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +11:49:27 [ 49] [ 3] [418] +11:49:27 [ 52] [ 16] [8D8922556B92154E] +11:49:27 ============================================================================ +11:49:27 + + +waiting on router queue for slot.... +11:49:27 Sending to : +11:49:27 ============================================================================ +11:49:27 ============================================================================ +11:49:27 Slot Id : <442> +11:49:27 Transaction Type : REQUEST +11:49:27 Received From : +11:49:27 ============================================================================ +11:49:27 FNo. Len. Field Value +11:49:27 ============================================================================ +11:49:27 [ 1] [ 4] [0200] +11:49:27 [ 2] [ 16] [6688990040163279] +11:49:27 [ 3] [ 6] [301000] +11:49:27 [ 7] [ 10] [0320044834] +11:49:27 [ 11] [ 6] [268757] +11:49:27 [ 12] [ 6] [114834] +11:49:27 [ 13] [ 4] [0320] +11:49:27 [ 14] [ 4] [9805] +11:49:27 [ 15] [ 4] [0320] +11:49:27 [ 18] [ 4] [6011] +11:49:27 [ 19] [ 3] [418] +11:49:27 [ 22] [ 3] [021] +11:49:27 [ 25] [ 2] [01] +11:49:27 [ 32] [ 6] [180893] +11:49:27 [ 35] [ 37] [6688990040163279=98051261269486400000] +11:49:27 [ 37] [ 12] [507904268757] +11:49:27 [ 41] [ 8] [0531VTHH] +11:49:27 [ 42] [ 15] [999999 ] +11:49:27 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +11:49:27 [ 49] [ 3] [418] +11:49:27 [ 52] [ 16] [773D0B15DDB74B5B] +11:49:27 ============================================================================ +11:49:27 + + +waiting on router queue for slot.... +11:49:27 Sending to : <0> +11:49:27 ============================================================================ +11:49:27 ============================================================================ +11:49:27 Slot Id : <442> +11:49:27 Transaction Type : RESPONSE +11:49:27 Received From : +11:49:27 ============================================================================ +11:49:27 FNo. Len. Field Value +11:49:27 ============================================================================ +11:49:27 [ 1] [ 4] [0210] +11:49:27 [ 2] [ 16] [6688990040163279] +11:49:27 [ 3] [ 6] [301000] +11:49:27 [ 4] [ 12] [000000000000] +11:49:27 [ 7] [ 10] [0320044834] +11:49:27 [ 11] [ 6] [268757] +11:49:27 [ 12] [ 6] [114834] +11:49:27 [ 13] [ 4] [0320] +11:49:27 [ 15] [ 4] [0320] +11:49:27 [ 18] [ 4] [6011] +11:49:27 [ 19] [ 3] [418] +11:49:27 [ 22] [ 3] [021] +11:49:27 [ 32] [ 6] [180893] +11:49:27 [ 35] [ 37] [6688990040163279=98051261269486400000] +11:49:27 [ 37] [ 12] [507904268757] +11:49:27 [ 39] [ 2] [14] +11:49:27 [ 41] [ 8] [0531VTHH] +11:49:27 [ 49] [ 3] [418] +11:49:27 ============================================================================ +11:49:27 Sending to : +11:49:27 ============================================================================ +11:49:27 + + +waiting on router queue for slot.... +11:49:28 ============================================================================ +11:49:28 Slot Id : <442> +11:49:28 Transaction Type : RESPONSE +11:49:28 Received From : +11:49:28 ============================================================================ +11:49:28 FNo. Len. Field Value +11:49:28 ============================================================================ +11:49:28 [ 1] [ 4] [0210] +11:49:28 [ 2] [ 16] [6688990040163279] +11:49:28 [ 3] [ 6] [301000] +11:49:28 [ 4] [ 12] [000000000000] +11:49:28 [ 7] [ 10] [0320044834] +11:49:28 [ 11] [ 6] [268757] +11:49:28 [ 12] [ 6] [114834] +11:49:28 [ 13] [ 4] [0320] +11:49:28 [ 15] [ 4] [0320] +11:49:28 [ 18] [ 4] [6011] +11:49:28 [ 19] [ 3] [418] +11:49:28 [ 22] [ 3] [021] +11:49:28 [ 32] [ 6] [180893] +11:49:28 [ 35] [ 37] [6688990040163279=98051261269486400000] +11:49:28 [ 37] [ 12] [507904268757] +11:49:28 [ 39] [ 2] [14] +11:49:28 [ 41] [ 8] [0531VTHH] +11:49:28 [ 49] [ 3] [418] +11:49:28 ============================================================================ +11:49:28 Calculate Source COMM Id = 2 +11:49:28 ============================================================================ +11:49:28 + + +waiting on router queue for slot.... +11:49:30 ============================================================================ +11:49:30 Slot Id : <434> +11:49:30 Transaction Type : REQUEST +11:49:30 Received From : +11:49:30 ============================================================================ +11:49:30 FNo. Len. Field Value +11:49:30 ============================================================================ +11:49:30 [ 1] [ 4] [0800] +11:49:30 [ 2] [ 5] [02531] +11:49:30 [ 3] [ 6] [579118] +11:49:30 [ 7] [ 10] [0320044930] +11:49:30 [ 11] [ 6] [807098] +11:49:30 [ 15] [ 10] [0320044930] +11:49:30 [ 37] [ 11] [57911807098] +11:49:30 [ 70] [ 3] [001] +11:49:30 ============================================================================ +11:49:30 + + +waiting on router queue for slot.... +11:49:30 ============================================================================ +11:49:30 Slot Id : <434> +11:49:30 Transaction Type : RESPONSE +11:49:30 Received From : +11:49:30 ============================================================================ +11:49:30 FNo. Len. Field Value +11:49:30 ============================================================================ +11:49:30 [ 1] [ 4] [0810] +11:49:30 [ 7] [ 10] [0320044930] +11:49:30 [ 11] [ 6] [807098] +11:49:30 [ 15] [ 4] [0320] +11:49:30 [ 37] [ 12] [57911807098] +11:49:30 [ 39] [ 2] [00] +11:49:30 [ 70] [ 3] [001] +11:49:30 ============================================================================ +11:49:30 Sending to : +11:49:30 ============================================================================ +11:49:30 + + +waiting on router queue for slot.... +11:49:40 ============================================================================ +11:49:40 Slot Id : <427> +11:49:40 Transaction Type : REQUEST +11:49:40 Received From : +11:49:40 ============================================================================ +11:49:40 FNo. Len. Field Value +11:49:40 ============================================================================ +11:49:40 [ 1] [ 4] [0800] +11:49:40 [ 7] [ 10] [0320044846] +11:49:40 [ 11] [ 6] [156163] +11:49:40 [ 70] [ 3] [301] +11:49:40 ============================================================================ +11:49:40 + + +waiting on router queue for slot.... +11:49:40 Sending to : +11:49:40 ============================================================================ +11:49:40 ============================================================================ +11:49:40 Slot Id : <427> +11:49:40 Transaction Type : RESPONSE +11:49:40 Received From : +11:49:40 ============================================================================ +11:49:40 FNo. Len. Field Value +11:49:40 ============================================================================ +11:49:40 [ 1] [ 4] [0810] +11:49:40 [ 7] [ 10] [0320044846] +11:49:40 [ 11] [ 6] [156163] +11:49:40 [ 39] [ 2] [00] +11:49:40 [ 70] [ 3] [301] +11:49:40 ============================================================================ +11:49:40 Calculate Source COMM Id = 2 +11:49:40 ============================================================================ +11:49:40 + + +waiting on router queue for slot.... +11:49:49 ============================================================================ +11:49:49 Slot Id : <428> +11:49:49 Transaction Type : REQUEST +11:49:49 Received From : +11:49:49 ============================================================================ +11:49:49 FNo. Len. Field Value +11:49:49 ============================================================================ +11:49:49 [ 1] [ 4] [0200] +11:49:49 [ 2] [ 16] [6213543000229624] +11:49:49 [ 3] [ 6] [010000] +11:49:49 [ 4] [ 12] [000050000000] +11:49:49 [ 7] [ 10] [0320044855] +11:49:49 [ 11] [ 6] [268760] +11:49:49 [ 12] [ 6] [114855] +11:49:49 [ 13] [ 4] [0320] +11:49:49 [ 14] [ 4] [4912] +11:49:49 [ 15] [ 4] [0320] +11:49:49 [ 18] [ 4] [6011] +11:49:49 [ 19] [ 3] [418] +11:49:49 [ 22] [ 3] [021] +11:49:49 [ 25] [ 2] [01] +11:49:49 [ 28] [ 9] [D00002000] +11:49:49 [ 32] [ 6] [180893] +11:49:49 [ 35] [ 32] [6213543000229624=491212012962361] +11:49:49 [ 37] [ 12] [507904268760] +11:49:49 [ 41] [ 8] [0368KMMX] +11:49:49 [ 42] [ 15] [999999 ] +11:49:49 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:49:49 [ 49] [ 3] [418] +11:49:49 [ 52] [ 16] [3316DE7DB1280ED8] +11:49:49 ============================================================================ +11:49:49 + + +waiting on router queue for slot.... +11:49:49 Sending to : +11:49:49 ============================================================================ +11:49:49 Sending to : +11:49:49 ============================================================================ +11:49:50 ============================================================================ +11:49:50 Slot Id : <428> +11:49:50 Transaction Type : REQUEST +11:49:50 Received From : +11:49:50 ============================================================================ +11:49:50 FNo. Len. Field Value +11:49:50 ============================================================================ +11:49:50 [ 1] [ 4] [0200] +11:49:50 [ 2] [ 16] [6213543000229624] +11:49:50 [ 3] [ 6] [010000] +11:49:50 [ 4] [ 12] [000050000000] +11:49:50 [ 7] [ 10] [0320044855] +11:49:50 [ 11] [ 6] [268760] +11:49:50 [ 12] [ 6] [114855] +11:49:50 [ 13] [ 4] [0320] +11:49:50 [ 14] [ 4] [4912] +11:49:50 [ 15] [ 4] [0320] +11:49:50 [ 18] [ 4] [6011] +11:49:50 [ 19] [ 3] [418] +11:49:50 [ 22] [ 3] [021] +11:49:50 [ 25] [ 2] [01] +11:49:50 [ 28] [ 9] [D00002000] +11:49:50 [ 32] [ 6] [180893] +11:49:50 [ 35] [ 32] [6213543000229624=491212012962361] +11:49:50 [ 37] [ 12] [507904268760] +11:49:50 [ 41] [ 8] [0368KMMX] +11:49:50 [ 42] [ 15] [999999 ] +11:49:50 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:49:50 [ 49] [ 3] [418] +11:49:50 [ 52] [ 16] [3316DE7DB1280ED8] +11:49:50 ============================================================================ +11:49:50 + + +waiting on router queue for slot.... +11:49:50 Sending to : +11:49:50 ============================================================================ +11:49:50 ============================================================================ +11:49:50 Slot Id : <428> +11:49:50 Transaction Type : REQUEST +11:49:50 Received From : +11:49:50 ============================================================================ +11:49:50 FNo. Len. Field Value +11:49:50 ============================================================================ +11:49:50 [ 1] [ 4] [0200] +11:49:50 [ 2] [ 16] [6213543000229624] +11:49:50 [ 3] [ 6] [010000] +11:49:50 [ 4] [ 12] [000050000000] +11:49:50 [ 7] [ 10] [0320044855] +11:49:50 [ 11] [ 6] [268760] +11:49:50 [ 12] [ 6] [114855] +11:49:50 [ 13] [ 4] [0320] +11:49:50 [ 14] [ 4] [4912] +11:49:50 [ 15] [ 4] [0320] +11:49:50 [ 18] [ 4] [6011] +11:49:50 [ 19] [ 3] [418] +11:49:50 [ 22] [ 3] [021] +11:49:50 [ 25] [ 2] [01] +11:49:50 [ 28] [ 9] [D00002000] +11:49:50 [ 32] [ 6] [180893] +11:49:50 [ 35] [ 32] [6213543000229624=491212012962361] +11:49:50 [ 37] [ 12] [507904268760] +11:49:50 [ 41] [ 8] [0368KMMX] +11:49:50 [ 42] [ 15] [999999 ] +11:49:50 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:49:50 [ 49] [ 3] [418] +11:49:50 [ 52] [ 16] [81D346B25FB4C980] +11:49:50 ============================================================================ +11:49:50 + + +waiting on router queue for slot.... +11:49:50 Sending to : <0> +11:49:50 ============================================================================ +11:49:50 ============================================================================ +11:49:50 Slot Id : <428> +11:49:50 Transaction Type : RESPONSE +11:49:50 Received From : +11:49:50 ============================================================================ +11:49:50 FNo. Len. Field Value +11:49:50 ============================================================================ +11:49:50 [ 1] [ 4] [0210] +11:49:50 [ 2] [ 16] [6213543000229624] +11:49:50 [ 3] [ 6] [010000] +11:49:50 [ 4] [ 12] [000050000000] +11:49:50 [ 7] [ 10] [0320044855] +11:49:50 [ 11] [ 6] [268760] +11:49:50 [ 12] [ 6] [114855] +11:49:50 [ 13] [ 4] [0320] +11:49:50 [ 15] [ 4] [0320] +11:49:50 [ 18] [ 4] [6011] +11:49:50 [ 19] [ 3] [418] +11:49:50 [ 32] [ 6] [180893] +11:49:50 [ 35] [ 32] [6213543000229624=491212012962361] +11:49:50 [ 37] [ 12] [507904268760] +11:49:50 [ 38] [ 6] [870873] +11:49:50 [ 39] [ 2] [00] +11:49:50 [ 41] [ 8] [0368KMMX] +11:49:50 [ 49] [ 3] [418] +11:49:50 [ 54] [ 40] [0001418C0001080038360002418C000108003836] +11:49:50 ============================================================================ +11:49:50 Sending to : +11:49:50 ============================================================================ +11:49:50 + + +waiting on router queue for slot.... +11:49:52 ============================================================================ +11:49:52 Slot Id : <428> +11:49:52 Transaction Type : RESPONSE +11:49:52 Received From : +11:49:52 ============================================================================ +11:49:52 FNo. Len. Field Value +11:49:52 ============================================================================ +11:49:52 [ 1] [ 4] [0210] +11:49:52 [ 2] [ 16] [6213543000229624] +11:49:52 [ 3] [ 6] [010000] +11:49:52 [ 4] [ 12] [000050000000] +11:49:52 [ 7] [ 10] [0320044855] +11:49:52 [ 11] [ 6] [268760] +11:49:52 [ 12] [ 6] [114855] +11:49:52 [ 13] [ 4] [0320] +11:49:52 [ 15] [ 4] [0320] +11:49:52 [ 18] [ 4] [6011] +11:49:52 [ 19] [ 3] [418] +11:49:52 [ 32] [ 6] [180893] +11:49:52 [ 35] [ 32] [6213543000229624=491212012962361] +11:49:52 [ 37] [ 12] [507904268760] +11:49:52 [ 38] [ 6] [870873] +11:49:52 [ 39] [ 2] [00] +11:49:52 [ 41] [ 8] [0368KMMX] +11:49:52 [ 49] [ 3] [418] +11:49:52 [ 54] [ 40] [0001418C0001080038360002418C000108003836] +11:49:52 ============================================================================ +11:49:52 Calculate Source COMM Id = 2 +11:49:52 ============================================================================ +11:49:52 + + +waiting on router queue for slot.... +11:49:54 ============================================================================ +11:49:54 Slot Id : <451> +11:49:54 Transaction Type : REQUEST +11:49:54 Received From : +11:49:54 ============================================================================ +11:49:54 FNo. Len. Field Value +11:49:54 ============================================================================ +11:49:54 [ 1] [ 4] [0800] +11:49:54 [ 7] [ 10] [0320045742] +11:49:54 [ 11] [ 6] [086184] +11:49:54 [ 37] [ 12] [57911086184] +11:49:54 [ 70] [ 3] [301] +11:49:54 ============================================================================ +11:49:54 + + +waiting on router queue for slot.... +11:49:54 Sending to : +11:49:54 ============================================================================ +11:49:54 ============================================================================ +11:49:54 Slot Id : <451> +11:49:54 Transaction Type : RESPONSE +11:49:54 Received From : +11:49:54 ============================================================================ +11:49:54 FNo. Len. Field Value +11:49:54 ============================================================================ +11:49:54 [ 1] [ 4] [0810] +11:49:54 [ 7] [ 10] [0320045742] +11:49:54 [ 11] [ 6] [086184] +11:49:54 [ 37] [ 12] [579110861840] +11:49:54 [ 39] [ 2] [00] +11:49:54 [ 70] [ 3] [810] +11:49:54 ============================================================================ +11:49:54 Calculate Source COMM Id = 1 +11:49:54 ============================================================================ +11:49:54 + + +waiting on router queue for slot.... +11:50:06 ============================================================================ +11:50:06 Slot Id : <462> +11:50:06 Transaction Type : REQUEST +11:50:06 Received From : +11:50:06 ============================================================================ +11:50:06 FNo. Len. Field Value +11:50:06 ============================================================================ +11:50:06 [ 1] [ 4] [0800] +11:50:06 [ 7] [ 10] [0320044913] +11:50:06 [ 11] [ 6] [156164] +11:50:06 [ 70] [ 3] [301] +11:50:06 ============================================================================ +11:50:06 + + +waiting on router queue for slot.... +11:50:06 Sending to : +11:50:06 ============================================================================ +11:50:06 ============================================================================ +11:50:06 Slot Id : <462> +11:50:06 Transaction Type : RESPONSE +11:50:06 Received From : +11:50:06 ============================================================================ +11:50:06 FNo. Len. Field Value +11:50:06 ============================================================================ +11:50:06 [ 1] [ 4] [0810] +11:50:06 [ 7] [ 10] [0320044913] +11:50:06 [ 11] [ 6] [156164] +11:50:06 [ 39] [ 2] [00] +11:50:06 [ 70] [ 3] [301] +11:50:06 ============================================================================ +11:50:06 Calculate Source COMM Id = 2 +11:50:06 ============================================================================ +11:50:06 + + +waiting on router queue for slot.... +11:50:08 ============================================================================ +11:50:08 Slot Id : <431> +11:50:08 Transaction Type : REQUEST +11:50:08 Received From : +11:50:08 ============================================================================ +11:50:08 FNo. Len. Field Value +11:50:08 ============================================================================ +11:50:08 [ 1] [ 4] [0200] +11:50:08 [ 2] [ 16] [6688990040149112] +11:50:08 [ 3] [ 6] [010000] +11:50:08 [ 4] [ 12] [000010000000] +11:50:08 [ 7] [ 10] [0320044915] +11:50:08 [ 11] [ 6] [268764] +11:50:08 [ 12] [ 6] [114915] +11:50:08 [ 13] [ 4] [0320] +11:50:08 [ 14] [ 4] [9805] +11:50:08 [ 15] [ 4] [0320] +11:50:08 [ 18] [ 4] [6011] +11:50:08 [ 19] [ 3] [418] +11:50:08 [ 22] [ 3] [021] +11:50:08 [ 25] [ 2] [01] +11:50:08 [ 28] [ 9] [D00002000] +11:50:08 [ 32] [ 6] [180893] +11:50:08 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:50:08 [ 37] [ 12] [507904268764] +11:50:08 [ 41] [ 8] [0321LNTV] +11:50:08 [ 42] [ 15] [999999 ] +11:50:08 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +11:50:08 [ 49] [ 3] [418] +11:50:08 [ 52] [ 16] [EB9C3674C9D755A8] +11:50:08 ============================================================================ +11:50:08 + + +waiting on router queue for slot.... +11:50:08 Sending to : +11:50:08 ============================================================================ +11:50:08 Sending to : +11:50:08 ============================================================================ +11:50:08 ============================================================================ +11:50:08 Slot Id : <431> +11:50:08 Transaction Type : REQUEST +11:50:08 Received From : +11:50:08 ============================================================================ +11:50:08 FNo. Len. Field Value +11:50:08 ============================================================================ +11:50:08 [ 1] [ 4] [0200] +11:50:08 [ 2] [ 16] [6688990040149112] +11:50:08 [ 3] [ 6] [010000] +11:50:08 [ 4] [ 12] [000010000000] +11:50:08 [ 7] [ 10] [0320044915] +11:50:08 [ 11] [ 6] [268764] +11:50:08 [ 12] [ 6] [114915] +11:50:08 [ 13] [ 4] [0320] +11:50:08 [ 14] [ 4] [9805] +11:50:08 [ 15] [ 4] [0320] +11:50:08 [ 18] [ 4] [6011] +11:50:08 [ 19] [ 3] [418] +11:50:08 [ 22] [ 3] [021] +11:50:08 [ 25] [ 2] [01] +11:50:08 [ 28] [ 9] [D00002000] +11:50:08 [ 32] [ 6] [180893] +11:50:08 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:50:08 [ 37] [ 12] [507904268764] +11:50:08 [ 41] [ 8] [0321LNTV] +11:50:08 [ 42] [ 15] [999999 ] +11:50:08 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +11:50:08 [ 49] [ 3] [418] +11:50:08 [ 52] [ 16] [EB9C3674C9D755A8] +11:50:08 ============================================================================ +11:50:08 + + +waiting on router queue for slot.... +11:50:08 Sending to : +11:50:08 ============================================================================ +11:50:08 ============================================================================ +11:50:08 Slot Id : <431> +11:50:08 Transaction Type : REQUEST +11:50:08 Received From : +11:50:08 ============================================================================ +11:50:08 FNo. Len. Field Value +11:50:08 ============================================================================ +11:50:08 [ 1] [ 4] [0200] +11:50:08 [ 2] [ 16] [6688990040149112] +11:50:08 [ 3] [ 6] [010000] +11:50:08 [ 4] [ 12] [000010000000] +11:50:08 [ 7] [ 10] [0320044915] +11:50:08 [ 11] [ 6] [268764] +11:50:08 [ 12] [ 6] [114915] +11:50:08 [ 13] [ 4] [0320] +11:50:08 [ 14] [ 4] [9805] +11:50:08 [ 15] [ 4] [0320] +11:50:08 [ 18] [ 4] [6011] +11:50:08 [ 19] [ 3] [418] +11:50:08 [ 22] [ 3] [021] +11:50:08 [ 25] [ 2] [01] +11:50:08 [ 28] [ 9] [D00002000] +11:50:08 [ 32] [ 6] [180893] +11:50:08 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:50:08 [ 37] [ 12] [507904268764] +11:50:08 [ 41] [ 8] [0321LNTV] +11:50:08 [ 42] [ 15] [999999 ] +11:50:08 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +11:50:08 [ 49] [ 3] [418] +11:50:08 [ 52] [ 16] [68BD014BA045BC2A] +11:50:08 ============================================================================ +11:50:08 + + +waiting on router queue for slot.... +11:50:08 Sending to : <0> +11:50:08 ============================================================================ +11:50:08 ============================================================================ +11:50:08 Slot Id : <431> +11:50:08 Transaction Type : RESPONSE +11:50:08 Received From : +11:50:08 ============================================================================ +11:50:08 FNo. Len. Field Value +11:50:08 ============================================================================ +11:50:08 [ 1] [ 4] [0210] +11:50:08 [ 2] [ 16] [6688990040149112] +11:50:08 [ 3] [ 6] [010000] +11:50:08 [ 4] [ 12] [000010000000] +11:50:08 [ 7] [ 10] [0320044915] +11:50:08 [ 11] [ 6] [268764] +11:50:08 [ 12] [ 6] [114915] +11:50:08 [ 13] [ 4] [0320] +11:50:08 [ 15] [ 4] [0320] +11:50:08 [ 18] [ 4] [6011] +11:50:08 [ 19] [ 3] [418] +11:50:08 [ 22] [ 3] [021] +11:50:08 [ 32] [ 6] [180893] +11:50:08 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:50:08 [ 37] [ 12] [507904268764] +11:50:08 [ 39] [ 2] [14] +11:50:08 [ 41] [ 8] [0321LNTV] +11:50:08 [ 49] [ 3] [418] +11:50:08 ============================================================================ +11:50:08 Sending to : +11:50:08 ============================================================================ +11:50:08 + + +waiting on router queue for slot.... +11:50:10 ============================================================================ +11:50:10 Slot Id : <431> +11:50:10 Transaction Type : RESPONSE +11:50:10 Received From : +11:50:10 ============================================================================ +11:50:10 FNo. Len. Field Value +11:50:10 ============================================================================ +11:50:10 [ 1] [ 4] [0210] +11:50:10 [ 2] [ 16] [6688990040149112] +11:50:10 [ 3] [ 6] [010000] +11:50:10 [ 4] [ 12] [000010000000] +11:50:10 [ 7] [ 10] [0320044915] +11:50:10 [ 11] [ 6] [268764] +11:50:10 [ 12] [ 6] [114915] +11:50:10 [ 13] [ 4] [0320] +11:50:10 [ 15] [ 4] [0320] +11:50:10 [ 18] [ 4] [6011] +11:50:10 [ 19] [ 3] [418] +11:50:10 [ 22] [ 3] [021] +11:50:10 [ 32] [ 6] [180893] +11:50:10 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:50:10 [ 37] [ 12] [507904268764] +11:50:10 [ 39] [ 2] [14] +11:50:10 [ 41] [ 8] [0321LNTV] +11:50:10 [ 49] [ 3] [418] +11:50:10 ============================================================================ +11:50:10 Calculate Source COMM Id = 2 +11:50:10 ============================================================================ +11:50:10 + + +waiting on router queue for slot.... +11:50:10 ============================================================================ +11:50:10 Slot Id : <457> +11:50:10 Transaction Type : REQUEST +11:50:10 Received From : +11:50:10 ============================================================================ +11:50:10 FNo. Len. Field Value +11:50:10 ============================================================================ +11:50:10 [ 1] [ 4] [0200] +11:50:10 [ 2] [ 16] [6688990040021238] +11:50:10 [ 3] [ 6] [011000] +11:50:10 [ 4] [ 12] [000025000000] +11:50:10 [ 7] [ 10] [0320115005] +11:50:10 [ 11] [ 6] [735790] +11:50:10 [ 12] [ 6] [115005] +11:50:10 [ 13] [ 4] [0320] +11:50:10 [ 15] [ 4] [0320] +11:50:10 [ 18] [ 4] [6011] +11:50:10 [ 22] [ 3] [900] +11:50:10 [ 25] [ 2] [02] +11:50:10 [ 28] [ 9] [D00002000] +11:50:10 [ 32] [ 6] [621354] +11:50:10 [ 35] [ 37] [6688990040021238=97111261447133300000] +11:50:10 [ 37] [ 12] [507905291364] +11:50:10 [ 41] [ 8] [20001400] +11:50:10 [ 42] [ 15] [NATIVE ] +11:50:10 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +11:50:10 [ 49] [ 3] [418] +11:50:10 [ 52] [ 16] [C74B555551005ABB] +11:50:10 ============================================================================ +11:50:10 + + +waiting on router queue for slot.... +11:50:10 Sending to : +11:50:10 ============================================================================ +11:50:10 Sending to : +11:50:10 ============================================================================ +11:50:10 ============================================================================ +11:50:10 Slot Id : <457> +11:50:10 Transaction Type : REQUEST +11:50:10 Received From : +11:50:10 ============================================================================ +11:50:10 FNo. Len. Field Value +11:50:10 ============================================================================ +11:50:10 [ 1] [ 4] [0200] +11:50:10 [ 2] [ 16] [6688990040021238] +11:50:10 [ 3] [ 6] [011000] +11:50:10 [ 4] [ 12] [000025000000] +11:50:10 [ 7] [ 10] [0320115005] +11:50:10 [ 11] [ 6] [735790] +11:50:10 [ 12] [ 6] [115005] +11:50:10 [ 13] [ 4] [0320] +11:50:10 [ 15] [ 4] [0320] +11:50:10 [ 18] [ 4] [6011] +11:50:10 [ 22] [ 3] [900] +11:50:10 [ 25] [ 2] [02] +11:50:10 [ 28] [ 9] [D00002000] +11:50:10 [ 32] [ 6] [621354] +11:50:10 [ 35] [ 37] [6688990040021238=97111261447133300000] +11:50:10 [ 37] [ 12] [507905291364] +11:50:10 [ 41] [ 8] [20001400] +11:50:10 [ 42] [ 15] [NATIVE ] +11:50:10 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +11:50:10 [ 49] [ 3] [418] +11:50:10 [ 52] [ 16] [C74B555551005ABB] +11:50:10 ============================================================================ +11:50:10 + + +waiting on router queue for slot.... +11:50:10 Sending to : +11:50:10 ============================================================================ +11:50:10 ============================================================================ +11:50:10 Slot Id : <457> +11:50:10 Transaction Type : REQUEST +11:50:10 Received From : +11:50:10 ============================================================================ +11:50:10 FNo. Len. Field Value +11:50:10 ============================================================================ +11:50:10 [ 1] [ 4] [0200] +11:50:10 [ 2] [ 16] [6688990040021238] +11:50:10 [ 3] [ 6] [011000] +11:50:10 [ 4] [ 12] [000025000000] +11:50:10 [ 7] [ 10] [0320115005] +11:50:10 [ 11] [ 6] [735790] +11:50:10 [ 12] [ 6] [115005] +11:50:10 [ 13] [ 4] [0320] +11:50:10 [ 15] [ 4] [0320] +11:50:10 [ 18] [ 4] [6011] +11:50:10 [ 22] [ 3] [900] +11:50:10 [ 25] [ 2] [02] +11:50:10 [ 28] [ 9] [D00002000] +11:50:10 [ 32] [ 6] [621354] +11:50:10 [ 35] [ 37] [6688990040021238=97111261447133300000] +11:50:10 [ 37] [ 12] [507905291364] +11:50:10 [ 41] [ 8] [20001400] +11:50:10 [ 42] [ 15] [NATIVE ] +11:50:10 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +11:50:10 [ 49] [ 3] [418] +11:50:10 [ 52] [ 16] [C76C6CE3F3D27E89] +11:50:10 ============================================================================ +11:50:10 + + +waiting on router queue for slot.... +11:50:10 Sending to : <4> +11:50:10 ============================================================================ +11:50:11 ============================================================================ +11:50:11 Slot Id : <457> +11:50:11 Transaction Type : RESPONSE +11:50:11 Received From : +11:50:11 ============================================================================ +11:50:11 FNo. Len. Field Value +11:50:11 ============================================================================ +11:50:11 [ 1] [ 4] [0210] +11:50:11 [ 2] [ 16] [6688990040021238] +11:50:11 [ 3] [ 6] [011000] +11:50:11 [ 4] [ 12] [000025000000] +11:50:11 [ 11] [ 6] [735790] +11:50:11 [ 12] [ 6] [115005] +11:50:11 [ 15] [ 4] [0320] +11:50:11 [ 18] [ 4] [6011] +11:50:11 [ 32] [ 6] [621354] +11:50:11 [ 35] [ 37] [6688990040021238=97111261447133300000] +11:50:11 [ 37] [ 12] [507905291364] +11:50:11 [ 38] [ 6] [299971] +11:50:11 [ 39] [ 2] [00] +11:50:11 [ 41] [ 8] [20001400] +11:50:11 [ 49] [ 3] [418] +11:50:11 [ 54] [ 20] [1002418C000013183045] +11:50:11 ============================================================================ +11:50:11 Sending to : +11:50:11 ============================================================================ +11:50:11 + + +waiting on router queue for slot.... +11:50:12 ============================================================================ +11:50:12 Slot Id : <457> +11:50:12 Transaction Type : RESPONSE +11:50:12 Received From : +11:50:12 ============================================================================ +11:50:12 FNo. Len. Field Value +11:50:12 ============================================================================ +11:50:12 [ 1] [ 4] [0210] +11:50:12 [ 2] [ 16] [6688990040021238] +11:50:12 [ 3] [ 6] [011000] +11:50:12 [ 4] [ 12] [000025000000] +11:50:12 [ 11] [ 6] [735790] +11:50:12 [ 12] [ 6] [115005] +11:50:12 [ 15] [ 4] [0320] +11:50:12 [ 18] [ 4] [6011] +11:50:12 [ 32] [ 6] [621354] +11:50:12 [ 35] [ 37] [6688990040021238=97111261447133300000] +11:50:12 [ 37] [ 12] [507905291364] +11:50:12 [ 38] [ 6] [299971] +11:50:12 [ 39] [ 2] [00] +11:50:12 [ 41] [ 8] [20001400] +11:50:12 [ 49] [ 3] [418] +11:50:12 [ 54] [ 20] [1002418C000013183045] +11:50:12 ============================================================================ +11:50:12 Calculate Source COMM Id = 0 +11:50:12 ============================================================================ +11:50:12 + + +waiting on router queue for slot.... +11:50:18 ============================================================================ +11:50:18 Slot Id : <426> +11:50:18 Transaction Type : REQUEST +11:50:18 Received From : +11:50:18 ============================================================================ +11:50:18 FNo. Len. Field Value +11:50:18 ============================================================================ +11:50:18 [ 1] [ 4] [0200] +11:50:18 [ 2] [ 16] [6213544001622841] +11:50:18 [ 3] [ 6] [010000] +11:50:18 [ 4] [ 12] [000010000000] +11:50:18 [ 7] [ 10] [0320114809] +11:50:18 [ 11] [ 6] [942446] +11:50:18 [ 12] [ 6] [114809] +11:50:18 [ 13] [ 4] [0320] +11:50:18 [ 15] [ 4] [0320] +11:50:18 [ 18] [ 4] [6011] +11:50:18 [ 19] [ 3] [418] +11:50:18 [ 22] [ 3] [021] +11:50:18 [ 25] [ 2] [01] +11:50:18 [ 28] [ 9] [D00002000] +11:50:18 [ 32] [ 6] [668899] +11:50:18 [ 35] [ 32] [6213544001622841=491212012284681] +11:50:18 [ 37] [ 12] [507901541673] +11:50:18 [ 41] [ 8] [03020016] +11:50:18 [ 42] [ 15] [APT ] +11:50:18 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +11:50:18 [ 49] [ 3] [418] +11:50:18 [ 52] [ 16] [72C3FD616A58D08B] +11:50:18 ============================================================================ +11:50:18 + + +waiting on router queue for slot.... +11:50:18 Sending to : +11:50:18 ============================================================================ +11:50:18 Sending to : +11:50:18 ============================================================================ +11:50:19 ============================================================================ +11:50:19 Slot Id : <426> +11:50:19 Transaction Type : REQUEST +11:50:19 Received From : +11:50:19 ============================================================================ +11:50:19 FNo. Len. Field Value +11:50:19 ============================================================================ +11:50:19 [ 1] [ 4] [0200] +11:50:19 [ 2] [ 16] [6213544001622841] +11:50:19 [ 3] [ 6] [010000] +11:50:19 [ 4] [ 12] [000010000000] +11:50:19 [ 7] [ 10] [0320114809] +11:50:19 [ 11] [ 6] [942446] +11:50:19 [ 12] [ 6] [114809] +11:50:19 [ 13] [ 4] [0320] +11:50:19 [ 15] [ 4] [0320] +11:50:19 [ 18] [ 4] [6011] +11:50:19 [ 19] [ 3] [418] +11:50:19 [ 22] [ 3] [021] +11:50:19 [ 25] [ 2] [01] +11:50:19 [ 28] [ 9] [D00002000] +11:50:19 [ 32] [ 6] [668899] +11:50:19 [ 35] [ 32] [6213544001622841=491212012284681] +11:50:19 [ 37] [ 12] [507901541673] +11:50:19 [ 41] [ 8] [03020016] +11:50:19 [ 42] [ 15] [APT ] +11:50:19 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +11:50:19 [ 49] [ 3] [418] +11:50:19 [ 52] [ 16] [72C3FD616A58D08B] +11:50:19 ============================================================================ +11:50:19 + + +waiting on router queue for slot.... +11:50:19 Sending to : +11:50:19 ============================================================================ +11:50:19 ============================================================================ +11:50:19 Slot Id : <426> +11:50:19 Transaction Type : REQUEST +11:50:19 Received From : +11:50:19 ============================================================================ +11:50:19 FNo. Len. Field Value +11:50:19 ============================================================================ +11:50:19 [ 1] [ 4] [0200] +11:50:19 [ 2] [ 16] [6213544001622841] +11:50:19 [ 3] [ 6] [010000] +11:50:19 [ 4] [ 12] [000010000000] +11:50:19 [ 7] [ 10] [0320114809] +11:50:19 [ 11] [ 6] [942446] +11:50:19 [ 12] [ 6] [114809] +11:50:19 [ 13] [ 4] [0320] +11:50:19 [ 15] [ 4] [0320] +11:50:19 [ 18] [ 4] [6011] +11:50:19 [ 19] [ 3] [418] +11:50:19 [ 22] [ 3] [021] +11:50:19 [ 25] [ 2] [01] +11:50:19 [ 28] [ 9] [D00002000] +11:50:19 [ 32] [ 6] [668899] +11:50:19 [ 35] [ 32] [6213544001622841=491212012284681] +11:50:19 [ 37] [ 12] [507901541673] +11:50:19 [ 41] [ 8] [03020016] +11:50:19 [ 42] [ 15] [APT ] +11:50:19 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +11:50:19 [ 49] [ 3] [418] +11:50:19 [ 52] [ 16] [5E3B5644655D875B] +11:50:19 ============================================================================ +11:50:19 + + +waiting on router queue for slot.... +11:50:19 Sending to : <0> +11:50:19 ============================================================================ +11:50:19 ============================================================================ +11:50:19 Slot Id : <426> +11:50:19 Transaction Type : RESPONSE +11:50:19 Received From : +11:50:19 ============================================================================ +11:50:19 FNo. Len. Field Value +11:50:19 ============================================================================ +11:50:19 [ 1] [ 4] [0210] +11:50:19 [ 2] [ 16] [6213544001622841] +11:50:19 [ 3] [ 6] [010000] +11:50:19 [ 4] [ 12] [000010000000] +11:50:19 [ 7] [ 10] [0320114809] +11:50:19 [ 11] [ 6] [942446] +11:50:19 [ 12] [ 6] [114809] +11:50:19 [ 13] [ 4] [0320] +11:50:19 [ 15] [ 4] [0320] +11:50:19 [ 18] [ 4] [6011] +11:50:19 [ 19] [ 3] [418] +11:50:19 [ 32] [ 6] [668899] +11:50:19 [ 35] [ 32] [6213544001622841=491212012284681] +11:50:19 [ 37] [ 12] [507901541673] +11:50:19 [ 38] [ 6] [877186] +11:50:19 [ 39] [ 2] [00] +11:50:19 [ 41] [ 8] [03020016] +11:50:19 [ 49] [ 3] [418] +11:50:19 [ 54] [ 40] [0001418C0009949877180002418C000994987718] +11:50:19 ============================================================================ +11:50:19 Sending to : +11:50:19 ============================================================================ +11:50:19 + + +waiting on router queue for slot.... +11:50:21 ============================================================================ +11:50:21 Slot Id : <426> +11:50:21 Transaction Type : RESPONSE +11:50:21 Received From : +11:50:21 ============================================================================ +11:50:21 FNo. Len. Field Value +11:50:21 ============================================================================ +11:50:21 [ 1] [ 4] [0210] +11:50:21 [ 2] [ 16] [6213544001622841] +11:50:21 [ 3] [ 6] [010000] +11:50:21 [ 4] [ 12] [000010000000] +11:50:21 [ 7] [ 10] [0320114809] +11:50:21 [ 11] [ 6] [942446] +11:50:21 [ 12] [ 6] [114809] +11:50:21 [ 13] [ 4] [0320] +11:50:21 [ 15] [ 4] [0320] +11:50:21 [ 18] [ 4] [6011] +11:50:21 [ 19] [ 3] [418] +11:50:21 [ 32] [ 6] [668899] +11:50:21 [ 35] [ 32] [6213544001622841=491212012284681] +11:50:21 [ 37] [ 12] [507901541673] +11:50:21 [ 38] [ 6] [877186] +11:50:21 [ 39] [ 2] [00] +11:50:21 [ 41] [ 8] [03020016] +11:50:21 [ 49] [ 3] [418] +11:50:21 [ 54] [ 40] [0001418C0009949877180002418C000994987718] +11:50:21 ============================================================================ +11:50:21 Calculate Source COMM Id = 4 +11:50:21 ============================================================================ +11:50:21 + + +waiting on router queue for slot.... +11:50:23 ============================================================================ +11:50:23 Slot Id : <421> +11:50:23 Transaction Type : REQUEST +11:50:23 Received From : +11:50:23 ============================================================================ +11:50:23 FNo. Len. Field Value +11:50:23 ============================================================================ +11:50:23 [ 1] [ 4] [0800] +11:50:23 [ 7] [ 10] [0320044931] +11:50:23 [ 11] [ 6] [156165] +11:50:23 [ 70] [ 3] [301] +11:50:23 ============================================================================ +11:50:23 + + +waiting on router queue for slot.... +11:50:23 Sending to : +11:50:23 ============================================================================ +11:50:23 ============================================================================ +11:50:23 Slot Id : <421> +11:50:23 Transaction Type : RESPONSE +11:50:23 Received From : +11:50:23 ============================================================================ +11:50:23 FNo. Len. Field Value +11:50:23 ============================================================================ +11:50:23 [ 1] [ 4] [0810] +11:50:23 [ 7] [ 10] [0320044931] +11:50:23 [ 11] [ 6] [156165] +11:50:23 [ 39] [ 2] [00] +11:50:23 [ 70] [ 3] [301] +11:50:23 ============================================================================ +11:50:23 Calculate Source COMM Id = 2 +11:50:23 ============================================================================ +11:50:23 + + +waiting on router queue for slot.... +11:50:32 ============================================================================ +11:50:32 Slot Id : <422> +11:50:32 Transaction Type : REQUEST +11:50:32 Received From : +11:50:32 ============================================================================ +11:50:32 FNo. Len. Field Value +11:50:32 ============================================================================ +11:50:32 [ 1] [ 4] [0800] +11:50:32 [ 2] [ 5] [02531] +11:50:32 [ 3] [ 6] [579118] +11:50:32 [ 7] [ 10] [0320045032] +11:50:32 [ 11] [ 6] [807099] +11:50:32 [ 15] [ 10] [0320045032] +11:50:32 [ 37] [ 11] [57911807099] +11:50:32 [ 70] [ 3] [001] +11:50:32 ============================================================================ +11:50:32 + + +waiting on router queue for slot.... +11:50:32 ============================================================================ +11:50:32 Slot Id : <422> +11:50:32 Transaction Type : RESPONSE +11:50:32 Received From : +11:50:32 ============================================================================ +11:50:32 FNo. Len. Field Value +11:50:32 ============================================================================ +11:50:32 [ 1] [ 4] [0810] +11:50:32 [ 7] [ 10] [0320045032] +11:50:32 [ 11] [ 6] [807099] +11:50:32 [ 15] [ 4] [0320] +11:50:32 [ 37] [ 12] [57911807099] +11:50:32 [ 39] [ 2] [00] +11:50:32 [ 70] [ 3] [001] +11:50:32 ============================================================================ +11:50:32 Sending to : +11:50:32 ============================================================================ +11:50:32 + + +waiting on router queue for slot.... +11:50:37 ============================================================================ +11:50:37 Slot Id : <444> +11:50:37 Transaction Type : REQUEST +11:50:37 Received From : +11:50:37 ============================================================================ +11:50:37 FNo. Len. Field Value +11:50:37 ============================================================================ +11:50:37 [ 1] [ 4] [0200] +11:50:37 [ 2] [ 16] [6213543000229624] +11:50:37 [ 3] [ 6] [010000] +11:50:37 [ 4] [ 12] [000050000000] +11:50:37 [ 7] [ 10] [0320044943] +11:50:37 [ 11] [ 6] [268767] +11:50:37 [ 12] [ 6] [114943] +11:50:37 [ 13] [ 4] [0320] +11:50:37 [ 14] [ 4] [4912] +11:50:37 [ 15] [ 4] [0320] +11:50:37 [ 18] [ 4] [6011] +11:50:37 [ 19] [ 3] [418] +11:50:37 [ 22] [ 3] [021] +11:50:37 [ 25] [ 2] [01] +11:50:37 [ 28] [ 9] [D00002000] +11:50:37 [ 32] [ 6] [180893] +11:50:37 [ 35] [ 32] [6213543000229624=491212012962361] +11:50:37 [ 37] [ 12] [507904268767] +11:50:37 [ 41] [ 8] [0368KMMX] +11:50:37 [ 42] [ 15] [999999 ] +11:50:37 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:50:37 [ 49] [ 3] [418] +11:50:37 [ 52] [ 16] [3316DE7DB1280ED8] +11:50:37 ============================================================================ +11:50:37 + + +waiting on router queue for slot.... +11:50:37 Sending to : +11:50:37 ============================================================================ +11:50:37 Sending to : +11:50:37 ============================================================================ +11:50:38 ============================================================================ +11:50:38 Slot Id : <444> +11:50:38 Transaction Type : REQUEST +11:50:38 Received From : +11:50:38 ============================================================================ +11:50:38 FNo. Len. Field Value +11:50:38 ============================================================================ +11:50:38 [ 1] [ 4] [0200] +11:50:38 [ 2] [ 16] [6213543000229624] +11:50:38 [ 3] [ 6] [010000] +11:50:38 [ 4] [ 12] [000050000000] +11:50:38 [ 7] [ 10] [0320044943] +11:50:38 [ 11] [ 6] [268767] +11:50:38 [ 12] [ 6] [114943] +11:50:38 [ 13] [ 4] [0320] +11:50:38 [ 14] [ 4] [4912] +11:50:38 [ 15] [ 4] [0320] +11:50:38 [ 18] [ 4] [6011] +11:50:38 [ 19] [ 3] [418] +11:50:38 [ 22] [ 3] [021] +11:50:38 [ 25] [ 2] [01] +11:50:38 [ 28] [ 9] [D00002000] +11:50:38 [ 32] [ 6] [180893] +11:50:38 [ 35] [ 32] [6213543000229624=491212012962361] +11:50:38 [ 37] [ 12] [507904268767] +11:50:38 [ 41] [ 8] [0368KMMX] +11:50:38 [ 42] [ 15] [999999 ] +11:50:38 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:50:38 [ 49] [ 3] [418] +11:50:38 [ 52] [ 16] [3316DE7DB1280ED8] +11:50:38 ============================================================================ +11:50:38 + + +waiting on router queue for slot.... +11:50:38 Sending to : +11:50:38 ============================================================================ +11:50:38 ============================================================================ +11:50:38 Slot Id : <444> +11:50:38 Transaction Type : REQUEST +11:50:38 Received From : +11:50:38 ============================================================================ +11:50:38 FNo. Len. Field Value +11:50:38 ============================================================================ +11:50:38 [ 1] [ 4] [0200] +11:50:38 [ 2] [ 16] [6213543000229624] +11:50:38 [ 3] [ 6] [010000] +11:50:38 [ 4] [ 12] [000050000000] +11:50:38 [ 7] [ 10] [0320044943] +11:50:38 [ 11] [ 6] [268767] +11:50:38 [ 12] [ 6] [114943] +11:50:38 [ 13] [ 4] [0320] +11:50:38 [ 14] [ 4] [4912] +11:50:38 [ 15] [ 4] [0320] +11:50:38 [ 18] [ 4] [6011] +11:50:38 [ 19] [ 3] [418] +11:50:38 [ 22] [ 3] [021] +11:50:38 [ 25] [ 2] [01] +11:50:38 [ 28] [ 9] [D00002000] +11:50:38 [ 32] [ 6] [180893] +11:50:38 [ 35] [ 32] [6213543000229624=491212012962361] +11:50:38 [ 37] [ 12] [507904268767] +11:50:38 [ 41] [ 8] [0368KMMX] +11:50:38 [ 42] [ 15] [999999 ] +11:50:38 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:50:38 [ 49] [ 3] [418] +11:50:38 [ 52] [ 16] [81D346B25FB4C980] +11:50:38 ============================================================================ +11:50:38 + + +waiting on router queue for slot.... +11:50:38 Sending to : <0> +11:50:38 ============================================================================ +11:50:38 ============================================================================ +11:50:38 Slot Id : <444> +11:50:38 Transaction Type : RESPONSE +11:50:38 Received From : +11:50:38 ============================================================================ +11:50:38 FNo. Len. Field Value +11:50:38 ============================================================================ +11:50:38 [ 1] [ 4] [0210] +11:50:38 [ 2] [ 16] [6213543000229624] +11:50:38 [ 3] [ 6] [010000] +11:50:38 [ 4] [ 12] [000050000000] +11:50:38 [ 7] [ 10] [0320044943] +11:50:38 [ 11] [ 6] [268767] +11:50:38 [ 12] [ 6] [114943] +11:50:38 [ 13] [ 4] [0320] +11:50:38 [ 15] [ 4] [0320] +11:50:38 [ 18] [ 4] [6011] +11:50:38 [ 19] [ 3] [418] +11:50:38 [ 32] [ 6] [180893] +11:50:38 [ 35] [ 32] [6213543000229624=491212012962361] +11:50:38 [ 37] [ 12] [507904268767] +11:50:38 [ 38] [ 6] [970146] +11:50:38 [ 39] [ 2] [00] +11:50:38 [ 41] [ 8] [0368KMMX] +11:50:38 [ 49] [ 3] [418] +11:50:38 [ 54] [ 40] [0001418C0000578038360002418C000057803836] +11:50:38 ============================================================================ +11:50:38 Sending to : +11:50:38 ============================================================================ +11:50:38 + + +waiting on router queue for slot.... +11:50:39 ============================================================================ +11:50:39 Slot Id : <465> +11:50:39 Transaction Type : REQUEST +11:50:39 Received From : +11:50:39 ============================================================================ +11:50:39 FNo. Len. Field Value +11:50:39 ============================================================================ +11:50:39 [ 1] [ 4] [0800] +11:50:39 [ 7] [ 10] [0320044946] +11:50:39 [ 11] [ 6] [156166] +11:50:39 [ 70] [ 3] [301] +11:50:39 ============================================================================ +11:50:39 + + +waiting on router queue for slot.... +11:50:39 Sending to : +11:50:39 ============================================================================ +11:50:39 ============================================================================ +11:50:39 Slot Id : <465> +11:50:39 Transaction Type : RESPONSE +11:50:39 Received From : +11:50:39 ============================================================================ +11:50:39 FNo. Len. Field Value +11:50:39 ============================================================================ +11:50:39 [ 1] [ 4] [0810] +11:50:39 [ 7] [ 10] [0320044946] +11:50:39 [ 11] [ 6] [156166] +11:50:39 [ 39] [ 2] [00] +11:50:39 [ 70] [ 3] [301] +11:50:39 ============================================================================ +11:50:39 Calculate Source COMM Id = 2 +11:50:39 ============================================================================ +11:50:39 + + +waiting on router queue for slot.... +11:50:40 ============================================================================ +11:50:40 Slot Id : <444> +11:50:40 Transaction Type : RESPONSE +11:50:40 Received From : +11:50:40 ============================================================================ +11:50:40 FNo. Len. Field Value +11:50:40 ============================================================================ +11:50:40 [ 1] [ 4] [0210] +11:50:40 [ 2] [ 16] [6213543000229624] +11:50:40 [ 3] [ 6] [010000] +11:50:40 [ 4] [ 12] [000050000000] +11:50:40 [ 7] [ 10] [0320044943] +11:50:40 [ 11] [ 6] [268767] +11:50:40 [ 12] [ 6] [114943] +11:50:40 [ 13] [ 4] [0320] +11:50:40 [ 15] [ 4] [0320] +11:50:40 [ 18] [ 4] [6011] +11:50:40 [ 19] [ 3] [418] +11:50:40 [ 32] [ 6] [180893] +11:50:40 [ 35] [ 32] [6213543000229624=491212012962361] +11:50:40 [ 37] [ 12] [507904268767] +11:50:40 [ 38] [ 6] [970146] +11:50:40 [ 39] [ 2] [00] +11:50:40 [ 41] [ 8] [0368KMMX] +11:50:40 [ 49] [ 3] [418] +11:50:40 [ 54] [ 40] [0001418C0000578038360002418C000057803836] +11:50:40 ============================================================================ +11:50:40 Calculate Source COMM Id = 2 +11:50:40 ============================================================================ +11:50:40 + + +waiting on router queue for slot.... +11:50:43 ============================================================================ +11:50:43 Slot Id : <436> +11:50:43 Transaction Type : REQUEST +11:50:43 Received From : +11:50:43 ============================================================================ +11:50:43 FNo. Len. Field Value +11:50:43 ============================================================================ +11:50:43 [ 1] [ 4] [0200] +11:50:43 [ 2] [ 16] [6213544002188289] +11:50:43 [ 3] [ 6] [010000] +11:50:43 [ 4] [ 12] [000020000000] +11:50:43 [ 7] [ 10] [0320114834] +11:50:43 [ 11] [ 6] [942466] +11:50:43 [ 12] [ 6] [114834] +11:50:43 [ 13] [ 4] [0320] +11:50:43 [ 15] [ 4] [0320] +11:50:43 [ 18] [ 4] [6011] +11:50:43 [ 19] [ 3] [418] +11:50:43 [ 22] [ 3] [021] +11:50:43 [ 25] [ 2] [01] +11:50:43 [ 28] [ 9] [D00002000] +11:50:43 [ 32] [ 6] [668899] +11:50:43 [ 35] [ 32] [6213544002188289=491212018828936] +11:50:43 [ 37] [ 12] [507901963526] +11:50:43 [ 41] [ 8] [03020019] +11:50:43 [ 42] [ 15] [APT ] +11:50:43 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:50:43 [ 49] [ 3] [418] +11:50:43 [ 52] [ 16] [720E0169B91913EB] +11:50:43 ============================================================================ +11:50:43 + + +waiting on router queue for slot.... +11:50:43 Sending to : +11:50:43 ============================================================================ +11:50:43 Sending to : +11:50:43 ============================================================================ +11:50:43 ============================================================================ +11:50:43 Slot Id : <436> +11:50:43 Transaction Type : REQUEST +11:50:43 Received From : +11:50:43 ============================================================================ +11:50:43 FNo. Len. Field Value +11:50:43 ============================================================================ +11:50:43 [ 1] [ 4] [0200] +11:50:43 [ 2] [ 16] [6213544002188289] +11:50:43 [ 3] [ 6] [010000] +11:50:43 [ 4] [ 12] [000020000000] +11:50:43 [ 7] [ 10] [0320114834] +11:50:43 [ 11] [ 6] [942466] +11:50:43 [ 12] [ 6] [114834] +11:50:43 [ 13] [ 4] [0320] +11:50:43 [ 15] [ 4] [0320] +11:50:43 [ 18] [ 4] [6011] +11:50:43 [ 19] [ 3] [418] +11:50:43 [ 22] [ 3] [021] +11:50:43 [ 25] [ 2] [01] +11:50:43 [ 28] [ 9] [D00002000] +11:50:43 [ 32] [ 6] [668899] +11:50:43 [ 35] [ 32] [6213544002188289=491212018828936] +11:50:43 [ 37] [ 12] [507901963526] +11:50:43 [ 41] [ 8] [03020019] +11:50:43 [ 42] [ 15] [APT ] +11:50:43 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:50:43 [ 49] [ 3] [418] +11:50:43 [ 52] [ 16] [720E0169B91913EB] +11:50:43 ============================================================================ +11:50:43 + + +waiting on router queue for slot.... +11:50:43 Sending to : +11:50:43 ============================================================================ +11:50:43 ============================================================================ +11:50:43 Slot Id : <436> +11:50:43 Transaction Type : REQUEST +11:50:43 Received From : +11:50:43 ============================================================================ +11:50:43 FNo. Len. Field Value +11:50:43 ============================================================================ +11:50:43 [ 1] [ 4] [0200] +11:50:43 [ 2] [ 16] [6213544002188289] +11:50:43 [ 3] [ 6] [010000] +11:50:43 [ 4] [ 12] [000020000000] +11:50:43 [ 7] [ 10] [0320114834] +11:50:43 [ 11] [ 6] [942466] +11:50:43 [ 12] [ 6] [114834] +11:50:43 [ 13] [ 4] [0320] +11:50:43 [ 15] [ 4] [0320] +11:50:43 [ 18] [ 4] [6011] +11:50:43 [ 19] [ 3] [418] +11:50:43 [ 22] [ 3] [021] +11:50:43 [ 25] [ 2] [01] +11:50:43 [ 28] [ 9] [D00002000] +11:50:43 [ 32] [ 6] [668899] +11:50:43 [ 35] [ 32] [6213544002188289=491212018828936] +11:50:43 [ 37] [ 12] [507901963526] +11:50:43 [ 41] [ 8] [03020019] +11:50:43 [ 42] [ 15] [APT ] +11:50:43 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:50:43 [ 49] [ 3] [418] +11:50:43 [ 52] [ 16] [B61058E9E11C8C91] +11:50:43 ============================================================================ +11:50:43 + + +waiting on router queue for slot.... +11:50:43 Sending to : <0> +11:50:43 ============================================================================ +11:50:44 ============================================================================ +11:50:44 Slot Id : <436> +11:50:44 Transaction Type : RESPONSE +11:50:44 Received From : +11:50:44 ============================================================================ +11:50:44 FNo. Len. Field Value +11:50:44 ============================================================================ +11:50:44 [ 1] [ 4] [0210] +11:50:44 [ 2] [ 16] [6213544002188289] +11:50:44 [ 3] [ 6] [010000] +11:50:44 [ 4] [ 12] [000020000000] +11:50:44 [ 7] [ 10] [0320114834] +11:50:44 [ 11] [ 6] [942466] +11:50:44 [ 12] [ 6] [114834] +11:50:44 [ 13] [ 4] [0320] +11:50:44 [ 15] [ 4] [0320] +11:50:44 [ 18] [ 4] [6011] +11:50:44 [ 19] [ 3] [418] +11:50:44 [ 32] [ 6] [668899] +11:50:44 [ 35] [ 32] [6213544002188289=491212018828936] +11:50:44 [ 37] [ 12] [507901963526] +11:50:44 [ 38] [ 6] [942466] +11:50:44 [ 39] [ 2] [51] +11:50:44 [ 41] [ 8] [03020019] +11:50:44 [ 49] [ 3] [418] +11:50:44 [ 54] [ 40] [0001418C0000069000000002418C000006900000] +11:50:44 ============================================================================ +11:50:44 Sending to : +11:50:44 ============================================================================ +11:50:44 + + +waiting on router queue for slot.... +11:50:45 ============================================================================ +11:50:45 Slot Id : <436> +11:50:45 Transaction Type : RESPONSE +11:50:45 Received From : +11:50:45 ============================================================================ +11:50:45 FNo. Len. Field Value +11:50:45 ============================================================================ +11:50:45 [ 1] [ 4] [0210] +11:50:45 [ 2] [ 16] [6213544002188289] +11:50:45 [ 3] [ 6] [010000] +11:50:45 [ 4] [ 12] [000020000000] +11:50:45 [ 7] [ 10] [0320114834] +11:50:45 [ 11] [ 6] [942466] +11:50:45 [ 12] [ 6] [114834] +11:50:45 [ 13] [ 4] [0320] +11:50:45 [ 15] [ 4] [0320] +11:50:45 [ 18] [ 4] [6011] +11:50:45 [ 19] [ 3] [418] +11:50:45 [ 32] [ 6] [668899] +11:50:45 [ 35] [ 32] [6213544002188289=491212018828936] +11:50:45 [ 37] [ 12] [507901963526] +11:50:45 [ 38] [ 6] [942466] +11:50:45 [ 39] [ 2] [51] +11:50:45 [ 41] [ 8] [03020019] +11:50:45 [ 49] [ 3] [418] +11:50:45 [ 54] [ 40] [0001418C0000069000000002418C000006900000] +11:50:45 ============================================================================ +11:50:45 Calculate Source COMM Id = 4 +11:50:45 ============================================================================ +11:50:45 + + +waiting on router queue for slot.... +11:50:56 ============================================================================ +11:50:56 Slot Id : <423> +11:50:56 Transaction Type : REQUEST +11:50:56 Received From : +11:50:56 ============================================================================ +11:50:56 FNo. Len. Field Value +11:50:56 ============================================================================ +11:50:56 [ 1] [ 4] [0800] +11:50:56 [ 7] [ 10] [0320045003] +11:50:56 [ 11] [ 6] [156167] +11:50:56 [ 70] [ 3] [301] +11:50:56 ============================================================================ +11:50:56 + + +waiting on router queue for slot.... +11:50:56 Sending to : +11:50:56 ============================================================================ +11:50:56 ============================================================================ +11:50:56 Slot Id : <423> +11:50:56 Transaction Type : RESPONSE +11:50:56 Received From : +11:50:56 ============================================================================ +11:50:56 FNo. Len. Field Value +11:50:56 ============================================================================ +11:50:56 [ 1] [ 4] [0810] +11:50:56 [ 7] [ 10] [0320045003] +11:50:56 [ 11] [ 6] [156167] +11:50:56 [ 39] [ 2] [00] +11:50:56 [ 70] [ 3] [301] +11:50:56 ============================================================================ +11:50:56 Calculate Source COMM Id = 2 +11:50:56 ============================================================================ +11:50:56 + + +waiting on router queue for slot.... +11:51:11 ============================================================================ +11:51:11 Slot Id : <439> +11:51:11 Transaction Type : REQUEST +11:51:11 Received From : +11:51:11 ============================================================================ +11:51:11 FNo. Len. Field Value +11:51:11 ============================================================================ +11:51:11 [ 1] [ 4] [0800] +11:51:11 [ 7] [ 10] [0320045019] +11:51:11 [ 11] [ 6] [156168] +11:51:11 [ 70] [ 3] [301] +11:51:11 ============================================================================ +11:51:11 + + +waiting on router queue for slot.... +11:51:11 Sending to : +11:51:11 ============================================================================ +11:51:11 ============================================================================ +11:51:11 Slot Id : <439> +11:51:11 Transaction Type : RESPONSE +11:51:11 Received From : +11:51:11 ============================================================================ +11:51:11 FNo. Len. Field Value +11:51:11 ============================================================================ +11:51:11 [ 1] [ 4] [0810] +11:51:11 [ 7] [ 10] [0320045019] +11:51:11 [ 11] [ 6] [156168] +11:51:11 [ 39] [ 2] [00] +11:51:11 [ 70] [ 3] [301] +11:51:11 ============================================================================ +11:51:11 Calculate Source COMM Id = 2 +11:51:11 ============================================================================ +11:51:11 + + +waiting on router queue for slot.... +11:51:14 ============================================================================ +11:51:14 Slot Id : <458> +11:51:14 Transaction Type : REQUEST +11:51:14 Received From : +11:51:14 ============================================================================ +11:51:14 FNo. Len. Field Value +11:51:14 ============================================================================ +11:51:14 [ 1] [ 4] [0200] +11:51:14 [ 2] [ 16] [6213544001657367] +11:51:14 [ 3] [ 6] [011000] +11:51:14 [ 4] [ 12] [000030000000] +11:51:14 [ 7] [ 10] [0320115135] +11:51:14 [ 11] [ 6] [205008] +11:51:14 [ 12] [ 6] [114718] +11:51:14 [ 13] [ 4] [0320] +11:51:14 [ 14] [ 4] [4912] +11:51:14 [ 15] [ 4] [0320] +11:51:14 [ 18] [ 4] [6011] +11:51:14 [ 19] [ 3] [418] +11:51:14 [ 22] [ 3] [021] +11:51:14 [ 25] [ 2] [01] +11:51:14 [ 28] [ 9] [D00002000] +11:51:14 [ 32] [ 6] [198901] +11:51:14 [ 35] [ 32] [6213544001657367=491212015736957] +11:51:14 [ 37] [ 12] [507911205008] +11:51:14 [ 41] [ 8] [01529001] +11:51:14 [ 42] [ 15] [000000041529001] +11:51:14 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +11:51:14 [ 49] [ 3] [418] +11:51:14 [ 52] [ 16] [FF286B96E3546F81] +11:51:14 ============================================================================ +11:51:14 + + +waiting on router queue for slot.... +11:51:14 Sending to : +11:51:14 ============================================================================ +11:51:14 Sending to : +11:51:14 ============================================================================ +11:51:14 ============================================================================ +11:51:14 Slot Id : <458> +11:51:14 Transaction Type : REQUEST +11:51:14 Received From : +11:51:14 ============================================================================ +11:51:14 FNo. Len. Field Value +11:51:14 ============================================================================ +11:51:14 [ 1] [ 4] [0200] +11:51:14 [ 2] [ 16] [6213544001657367] +11:51:14 [ 3] [ 6] [011000] +11:51:14 [ 4] [ 12] [000030000000] +11:51:14 [ 7] [ 10] [0320115135] +11:51:14 [ 11] [ 6] [205008] +11:51:14 [ 12] [ 6] [114718] +11:51:14 [ 13] [ 4] [0320] +11:51:14 [ 14] [ 4] [4912] +11:51:14 [ 15] [ 4] [0320] +11:51:14 [ 18] [ 4] [6011] +11:51:14 [ 19] [ 3] [418] +11:51:14 [ 22] [ 3] [021] +11:51:14 [ 25] [ 2] [01] +11:51:14 [ 28] [ 9] [D00002000] +11:51:14 [ 32] [ 6] [198901] +11:51:14 [ 35] [ 32] [6213544001657367=491212015736957] +11:51:14 [ 37] [ 12] [507911205008] +11:51:14 [ 41] [ 8] [01529001] +11:51:14 [ 42] [ 15] [000000041529001] +11:51:14 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +11:51:14 [ 49] [ 3] [418] +11:51:14 [ 52] [ 16] [FF286B96E3546F81] +11:51:14 ============================================================================ +11:51:14 + + +waiting on router queue for slot.... +11:51:14 Sending to : +11:51:14 ============================================================================ +11:51:14 ============================================================================ +11:51:14 Slot Id : <458> +11:51:14 Transaction Type : REQUEST +11:51:14 Received From : +11:51:14 ============================================================================ +11:51:14 FNo. Len. Field Value +11:51:14 ============================================================================ +11:51:14 [ 1] [ 4] [0200] +11:51:14 [ 2] [ 16] [6213544001657367] +11:51:14 [ 3] [ 6] [011000] +11:51:14 [ 4] [ 12] [000030000000] +11:51:14 [ 7] [ 10] [0320115135] +11:51:14 [ 11] [ 6] [205008] +11:51:14 [ 12] [ 6] [114718] +11:51:14 [ 13] [ 4] [0320] +11:51:14 [ 14] [ 4] [4912] +11:51:14 [ 15] [ 4] [0320] +11:51:14 [ 18] [ 4] [6011] +11:51:14 [ 19] [ 3] [418] +11:51:14 [ 22] [ 3] [021] +11:51:14 [ 25] [ 2] [01] +11:51:14 [ 28] [ 9] [D00002000] +11:51:14 [ 32] [ 6] [198901] +11:51:14 [ 35] [ 32] [6213544001657367=491212015736957] +11:51:14 [ 37] [ 12] [507911205008] +11:51:14 [ 41] [ 8] [01529001] +11:51:14 [ 42] [ 15] [000000041529001] +11:51:14 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +11:51:14 [ 49] [ 3] [418] +11:51:14 [ 52] [ 16] [4D7C4C5E02D58190] +11:51:14 ============================================================================ +11:51:14 + + +waiting on router queue for slot.... +11:51:14 Sending to : <0> +11:51:14 ============================================================================ +11:51:14 ============================================================================ +11:51:14 Slot Id : <458> +11:51:14 Transaction Type : RESPONSE +11:51:14 Received From : +11:51:14 ============================================================================ +11:51:14 FNo. Len. Field Value +11:51:14 ============================================================================ +11:51:14 [ 1] [ 4] [0210] +11:51:14 [ 2] [ 16] [6213544001657367] +11:51:14 [ 3] [ 6] [011000] +11:51:14 [ 4] [ 12] [000030000000] +11:51:14 [ 7] [ 10] [0320115135] +11:51:14 [ 11] [ 6] [205008] +11:51:14 [ 12] [ 6] [114718] +11:51:14 [ 13] [ 4] [0320] +11:51:14 [ 15] [ 4] [0320] +11:51:14 [ 18] [ 4] [6011] +11:51:14 [ 19] [ 3] [418] +11:51:14 [ 32] [ 6] [198901] +11:51:14 [ 35] [ 32] [6213544001657367=491212015736957] +11:51:14 [ 37] [ 12] [507911205008] +11:51:14 [ 38] [ 6] [205008] +11:51:14 [ 39] [ 2] [51] +11:51:14 [ 41] [ 8] [01529001] +11:51:14 [ 49] [ 3] [418] +11:51:14 [ 54] [ 40] [1001418C0000341078951002418C000034107895] +11:51:14 ============================================================================ +11:51:14 Sending to : +11:51:14 ============================================================================ +11:51:14 + + +waiting on router queue for slot.... +11:51:15 ============================================================================ +11:51:15 Slot Id : <458> +11:51:15 Transaction Type : RESPONSE +11:51:15 Received From : +11:51:15 ============================================================================ +11:51:15 FNo. Len. Field Value +11:51:15 ============================================================================ +11:51:15 [ 1] [ 4] [0210] +11:51:15 [ 2] [ 16] [6213544001657367] +11:51:15 [ 3] [ 6] [011000] +11:51:15 [ 4] [ 12] [000030000000] +11:51:15 [ 7] [ 10] [0320115135] +11:51:15 [ 11] [ 6] [205008] +11:51:15 [ 12] [ 6] [114718] +11:51:15 [ 13] [ 4] [0320] +11:51:15 [ 15] [ 4] [0320] +11:51:15 [ 18] [ 4] [6011] +11:51:15 [ 19] [ 3] [418] +11:51:15 [ 32] [ 6] [198901] +11:51:15 [ 35] [ 32] [6213544001657367=491212015736957] +11:51:15 [ 37] [ 12] [507911205008] +11:51:15 [ 38] [ 6] [205008] +11:51:15 [ 39] [ 2] [51] +11:51:15 [ 41] [ 8] [01529001] +11:51:15 [ 49] [ 3] [418] +11:51:15 [ 54] [ 40] [1001418C0000341078951002418C000034107895] +11:51:15 ============================================================================ +11:51:15 Calculate Source COMM Id = 5 +11:51:15 ============================================================================ +11:51:15 + + +waiting on router queue for slot.... +11:51:21 ============================================================================ +11:51:21 Slot Id : <459> +11:51:21 Transaction Type : REQUEST +11:51:21 Received From : +11:51:21 ============================================================================ +11:51:21 FNo. Len. Field Value +11:51:21 ============================================================================ +11:51:21 [ 1] [ 4] [0800] +11:51:21 [ 7] [ 10] [0320044912] +11:51:21 [ 11] [ 6] [079307] +11:51:21 [ 37] [ 12] [57911079307] +11:51:21 [ 70] [ 3] [301] +11:51:21 ============================================================================ +11:51:21 + + +waiting on router queue for slot.... +11:51:21 Sending to : +11:51:21 ============================================================================ +11:51:21 ============================================================================ +11:51:21 Slot Id : <459> +11:51:21 Transaction Type : RESPONSE +11:51:21 Received From : +11:51:21 ============================================================================ +11:51:21 FNo. Len. Field Value +11:51:21 ============================================================================ +11:51:21 [ 1] [ 4] [0810] +11:51:21 [ 7] [ 10] [0320044912] +11:51:21 [ 11] [ 6] [079307] +11:51:21 [ 37] [ 12] [579110793070] +11:51:21 [ 39] [ 2] [00] +11:51:21 [ 70] [ 3] [810] +11:51:21 ============================================================================ +11:51:21 Calculate Source COMM Id = 4 +11:51:21 ============================================================================ +11:51:21 + + +waiting on router queue for slot.... +11:51:22 ============================================================================ +11:51:22 Slot Id : <466> +11:51:22 Transaction Type : REQUEST +11:51:22 Received From : +11:51:22 ============================================================================ +11:51:22 FNo. Len. Field Value +11:51:22 ============================================================================ +11:51:22 [ 1] [ 4] [0800] +11:51:22 [ 7] [ 10] [0320045029] +11:51:22 [ 11] [ 6] [156169] +11:51:22 [ 70] [ 3] [301] +11:51:22 ============================================================================ +11:51:22 + + +waiting on router queue for slot.... +11:51:22 Sending to : +11:51:22 ============================================================================ +11:51:22 ============================================================================ +11:51:22 Slot Id : <466> +11:51:22 Transaction Type : RESPONSE +11:51:22 Received From : +11:51:22 ============================================================================ +11:51:22 FNo. Len. Field Value +11:51:22 ============================================================================ +11:51:22 [ 1] [ 4] [0810] +11:51:22 [ 7] [ 10] [0320045029] +11:51:22 [ 11] [ 6] [156169] +11:51:22 [ 39] [ 2] [00] +11:51:22 [ 70] [ 3] [301] +11:51:22 ============================================================================ +11:51:22 Calculate Source COMM Id = 2 +11:51:22 ============================================================================ +11:51:22 + + +waiting on router queue for slot.... +11:51:22 ============================================================================ +11:51:22 Slot Id : <452> +11:51:22 Transaction Type : REQUEST +11:51:22 Received From : +11:51:22 ============================================================================ +11:51:22 FNo. Len. Field Value +11:51:22 ============================================================================ +11:51:22 [ 1] [ 4] [0200] +11:51:22 [ 2] [ 16] [6213543000229624] +11:51:22 [ 3] [ 6] [010000] +11:51:22 [ 4] [ 12] [000050000000] +11:51:22 [ 7] [ 10] [0320045029] +11:51:22 [ 11] [ 6] [268773] +11:51:22 [ 12] [ 6] [115029] +11:51:22 [ 13] [ 4] [0320] +11:51:22 [ 14] [ 4] [4912] +11:51:22 [ 15] [ 4] [0320] +11:51:22 [ 18] [ 4] [6011] +11:51:22 [ 19] [ 3] [418] +11:51:22 [ 22] [ 3] [021] +11:51:22 [ 25] [ 2] [01] +11:51:22 [ 28] [ 9] [D00002000] +11:51:22 [ 32] [ 6] [180893] +11:51:22 [ 35] [ 32] [6213543000229624=491212012962361] +11:51:22 [ 37] [ 12] [507904268773] +11:51:22 [ 41] [ 8] [0368KMMX] +11:51:22 [ 42] [ 15] [999999 ] +11:51:22 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:51:22 [ 49] [ 3] [418] +11:51:22 [ 52] [ 16] [3316DE7DB1280ED8] +11:51:22 ============================================================================ +11:51:22 + + +waiting on router queue for slot.... +11:51:22 Sending to : +11:51:22 ============================================================================ +11:51:22 Sending to : +11:51:22 ============================================================================ +11:51:22 ============================================================================ +11:51:22 Slot Id : <452> +11:51:22 Transaction Type : REQUEST +11:51:22 Received From : +11:51:22 ============================================================================ +11:51:22 FNo. Len. Field Value +11:51:22 ============================================================================ +11:51:22 [ 1] [ 4] [0200] +11:51:22 [ 2] [ 16] [6213543000229624] +11:51:22 [ 3] [ 6] [010000] +11:51:22 [ 4] [ 12] [000050000000] +11:51:22 [ 7] [ 10] [0320045029] +11:51:22 [ 11] [ 6] [268773] +11:51:22 [ 12] [ 6] [115029] +11:51:22 [ 13] [ 4] [0320] +11:51:22 [ 14] [ 4] [4912] +11:51:22 [ 15] [ 4] [0320] +11:51:22 [ 18] [ 4] [6011] +11:51:22 [ 19] [ 3] [418] +11:51:22 [ 22] [ 3] [021] +11:51:22 [ 25] [ 2] [01] +11:51:22 [ 28] [ 9] [D00002000] +11:51:22 [ 32] [ 6] [180893] +11:51:22 [ 35] [ 32] [6213543000229624=491212012962361] +11:51:22 [ 37] [ 12] [507904268773] +11:51:22 [ 41] [ 8] [0368KMMX] +11:51:22 [ 42] [ 15] [999999 ] +11:51:22 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:51:22 [ 49] [ 3] [418] +11:51:22 [ 52] [ 16] [3316DE7DB1280ED8] +11:51:22 ============================================================================ +11:51:22 + + +waiting on router queue for slot.... +11:51:22 Sending to : +11:51:22 ============================================================================ +11:51:22 ============================================================================ +11:51:22 Slot Id : <452> +11:51:22 Transaction Type : REQUEST +11:51:22 Received From : +11:51:22 ============================================================================ +11:51:22 FNo. Len. Field Value +11:51:22 ============================================================================ +11:51:22 [ 1] [ 4] [0200] +11:51:22 [ 2] [ 16] [6213543000229624] +11:51:22 [ 3] [ 6] [010000] +11:51:22 [ 4] [ 12] [000050000000] +11:51:22 [ 7] [ 10] [0320045029] +11:51:22 [ 11] [ 6] [268773] +11:51:22 [ 12] [ 6] [115029] +11:51:22 [ 13] [ 4] [0320] +11:51:22 [ 14] [ 4] [4912] +11:51:22 [ 15] [ 4] [0320] +11:51:22 [ 18] [ 4] [6011] +11:51:22 [ 19] [ 3] [418] +11:51:22 [ 22] [ 3] [021] +11:51:22 [ 25] [ 2] [01] +11:51:22 [ 28] [ 9] [D00002000] +11:51:22 [ 32] [ 6] [180893] +11:51:22 [ 35] [ 32] [6213543000229624=491212012962361] +11:51:22 [ 37] [ 12] [507904268773] +11:51:22 [ 41] [ 8] [0368KMMX] +11:51:22 [ 42] [ 15] [999999 ] +11:51:22 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +11:51:22 [ 49] [ 3] [418] +11:51:22 [ 52] [ 16] [81D346B25FB4C980] +11:51:22 ============================================================================ +11:51:22 + + +waiting on router queue for slot.... +11:51:22 Sending to : <0> +11:51:22 ============================================================================ +11:51:23 ============================================================================ +11:51:23 Slot Id : <452> +11:51:23 Transaction Type : RESPONSE +11:51:23 Received From : +11:51:23 ============================================================================ +11:51:23 FNo. Len. Field Value +11:51:23 ============================================================================ +11:51:23 [ 1] [ 4] [0210] +11:51:23 [ 2] [ 16] [6213543000229624] +11:51:23 [ 3] [ 6] [010000] +11:51:23 [ 4] [ 12] [000050000000] +11:51:23 [ 7] [ 10] [0320045029] +11:51:23 [ 11] [ 6] [268773] +11:51:23 [ 12] [ 6] [115029] +11:51:23 [ 13] [ 4] [0320] +11:51:23 [ 15] [ 4] [0320] +11:51:23 [ 18] [ 4] [6011] +11:51:23 [ 19] [ 3] [418] +11:51:23 [ 32] [ 6] [180893] +11:51:23 [ 35] [ 32] [6213543000229624=491212012962361] +11:51:23 [ 37] [ 12] [507904268773] +11:51:23 [ 38] [ 6] [636623] +11:51:23 [ 39] [ 2] [00] +11:51:23 [ 41] [ 8] [0368KMMX] +11:51:23 [ 49] [ 3] [418] +11:51:23 [ 54] [ 40] [0001418C0000076038360002418C000007603836] +11:51:23 ============================================================================ +11:51:23 Sending to : +11:51:23 ============================================================================ +11:51:23 + + +waiting on router queue for slot.... +11:51:25 ============================================================================ +11:51:25 Slot Id : <452> +11:51:25 Transaction Type : RESPONSE +11:51:25 Received From : +11:51:25 ============================================================================ +11:51:25 FNo. Len. Field Value +11:51:25 ============================================================================ +11:51:25 [ 1] [ 4] [0210] +11:51:25 [ 2] [ 16] [6213543000229624] +11:51:25 [ 3] [ 6] [010000] +11:51:25 [ 4] [ 12] [000050000000] +11:51:25 [ 7] [ 10] [0320045029] +11:51:25 [ 11] [ 6] [268773] +11:51:25 [ 12] [ 6] [115029] +11:51:25 [ 13] [ 4] [0320] +11:51:25 [ 15] [ 4] [0320] +11:51:25 [ 18] [ 4] [6011] +11:51:25 [ 19] [ 3] [418] +11:51:25 [ 32] [ 6] [180893] +11:51:25 [ 35] [ 32] [6213543000229624=491212012962361] +11:51:25 [ 37] [ 12] [507904268773] +11:51:25 [ 38] [ 6] [636623] +11:51:25 [ 39] [ 2] [00] +11:51:25 [ 41] [ 8] [0368KMMX] +11:51:25 [ 49] [ 3] [418] +11:51:25 [ 54] [ 40] [0001418C0000076038360002418C000007603836] +11:51:25 ============================================================================ +11:51:25 Calculate Source COMM Id = 2 +11:51:25 ============================================================================ +11:51:25 + + +waiting on router queue for slot.... +11:51:30 ============================================================================ +11:51:30 Slot Id : <468> +11:51:30 Transaction Type : REQUEST +11:51:30 Received From : +11:51:30 ============================================================================ +11:51:30 FNo. Len. Field Value +11:51:30 ============================================================================ +11:51:30 [ 1] [ 4] [0200] +11:51:30 [ 2] [ 16] [6213544002044862] +11:51:30 [ 3] [ 6] [010000] +11:51:30 [ 4] [ 12] [000100000000] +11:51:30 [ 7] [ 10] [0320114921] +11:51:30 [ 11] [ 6] [942515] +11:51:30 [ 12] [ 6] [114921] +11:51:30 [ 13] [ 4] [0320] +11:51:30 [ 15] [ 4] [0320] +11:51:30 [ 18] [ 4] [6011] +11:51:30 [ 19] [ 3] [418] +11:51:30 [ 22] [ 3] [021] +11:51:30 [ 25] [ 2] [01] +11:51:30 [ 28] [ 9] [D00002000] +11:51:30 [ 32] [ 6] [668899] +11:51:30 [ 35] [ 32] [6213544002044862=491212014486044] +11:51:30 [ 37] [ 12] [507901963528] +11:51:30 [ 41] [ 8] [03020019] +11:51:30 [ 42] [ 15] [APT ] +11:51:30 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:51:30 [ 49] [ 3] [418] +11:51:30 [ 52] [ 16] [784CA651F66F1120] +11:51:30 ============================================================================ +11:51:30 + + +waiting on router queue for slot.... +11:51:30 Sending to : +11:51:30 ============================================================================ +11:51:30 Sending to : +11:51:30 ============================================================================ +11:51:30 ============================================================================ +11:51:30 Slot Id : <468> +11:51:30 Transaction Type : REQUEST +11:51:30 Received From : +11:51:30 ============================================================================ +11:51:30 FNo. Len. Field Value +11:51:30 ============================================================================ +11:51:30 [ 1] [ 4] [0200] +11:51:30 [ 2] [ 16] [6213544002044862] +11:51:30 [ 3] [ 6] [010000] +11:51:30 [ 4] [ 12] [000100000000] +11:51:30 [ 7] [ 10] [0320114921] +11:51:30 [ 11] [ 6] [942515] +11:51:30 [ 12] [ 6] [114921] +11:51:30 [ 13] [ 4] [0320] +11:51:30 [ 15] [ 4] [0320] +11:51:30 [ 18] [ 4] [6011] +11:51:30 [ 19] [ 3] [418] +11:51:30 [ 22] [ 3] [021] +11:51:30 [ 25] [ 2] [01] +11:51:30 [ 28] [ 9] [D00002000] +11:51:30 [ 32] [ 6] [668899] +11:51:30 [ 35] [ 32] [6213544002044862=491212014486044] +11:51:30 [ 37] [ 12] [507901963528] +11:51:30 [ 41] [ 8] [03020019] +11:51:30 [ 42] [ 15] [APT ] +11:51:30 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:51:30 [ 49] [ 3] [418] +11:51:30 [ 52] [ 16] [784CA651F66F1120] +11:51:30 ============================================================================ +11:51:30 + + +waiting on router queue for slot.... +11:51:30 Sending to : +11:51:30 ============================================================================ +11:51:30 ============================================================================ +11:51:30 Slot Id : <468> +11:51:30 Transaction Type : REQUEST +11:51:30 Received From : +11:51:30 ============================================================================ +11:51:30 FNo. Len. Field Value +11:51:30 ============================================================================ +11:51:30 [ 1] [ 4] [0200] +11:51:30 [ 2] [ 16] [6213544002044862] +11:51:30 [ 3] [ 6] [010000] +11:51:30 [ 4] [ 12] [000100000000] +11:51:30 [ 7] [ 10] [0320114921] +11:51:30 [ 11] [ 6] [942515] +11:51:30 [ 12] [ 6] [114921] +11:51:30 [ 13] [ 4] [0320] +11:51:30 [ 15] [ 4] [0320] +11:51:30 [ 18] [ 4] [6011] +11:51:30 [ 19] [ 3] [418] +11:51:30 [ 22] [ 3] [021] +11:51:30 [ 25] [ 2] [01] +11:51:30 [ 28] [ 9] [D00002000] +11:51:30 [ 32] [ 6] [668899] +11:51:30 [ 35] [ 32] [6213544002044862=491212014486044] +11:51:30 [ 37] [ 12] [507901963528] +11:51:30 [ 41] [ 8] [03020019] +11:51:30 [ 42] [ 15] [APT ] +11:51:30 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:51:30 [ 49] [ 3] [418] +11:51:30 [ 52] [ 16] [ABC719F945F636E1] +11:51:30 ============================================================================ +11:51:30 + + +waiting on router queue for slot.... +11:51:30 Sending to : <0> +11:51:30 ============================================================================ +11:51:31 ============================================================================ +11:51:31 Slot Id : <468> +11:51:31 Transaction Type : RESPONSE +11:51:31 Received From : +11:51:31 ============================================================================ +11:51:31 FNo. Len. Field Value +11:51:31 ============================================================================ +11:51:31 [ 1] [ 4] [0210] +11:51:31 [ 2] [ 16] [6213544002044862] +11:51:31 [ 3] [ 6] [010000] +11:51:31 [ 4] [ 12] [000100000000] +11:51:31 [ 7] [ 10] [0320114921] +11:51:31 [ 11] [ 6] [942515] +11:51:31 [ 12] [ 6] [114921] +11:51:31 [ 13] [ 4] [0320] +11:51:31 [ 15] [ 4] [0320] +11:51:31 [ 18] [ 4] [6011] +11:51:31 [ 19] [ 3] [418] +11:51:31 [ 32] [ 6] [668899] +11:51:31 [ 35] [ 32] [6213544002044862=491212014486044] +11:51:31 [ 37] [ 12] [507901963528] +11:51:31 [ 38] [ 6] [311149] +11:51:31 [ 39] [ 2] [00] +11:51:31 [ 41] [ 8] [03020019] +11:51:31 [ 49] [ 3] [418] +11:51:31 [ 54] [ 40] [0001418C0000351734990002418C000035173499] +11:51:31 ============================================================================ +11:51:31 Sending to : +11:51:31 ============================================================================ +11:51:31 + + +waiting on router queue for slot.... +11:51:32 ============================================================================ +11:51:32 Slot Id : <468> +11:51:32 Transaction Type : RESPONSE +11:51:32 Received From : +11:51:32 ============================================================================ +11:51:32 FNo. Len. Field Value +11:51:32 ============================================================================ +11:51:32 [ 1] [ 4] [0210] +11:51:32 [ 2] [ 16] [6213544002044862] +11:51:32 [ 3] [ 6] [010000] +11:51:32 [ 4] [ 12] [000100000000] +11:51:32 [ 7] [ 10] [0320114921] +11:51:32 [ 11] [ 6] [942515] +11:51:32 [ 12] [ 6] [114921] +11:51:32 [ 13] [ 4] [0320] +11:51:32 [ 15] [ 4] [0320] +11:51:32 [ 18] [ 4] [6011] +11:51:32 [ 19] [ 3] [418] +11:51:32 [ 32] [ 6] [668899] +11:51:32 [ 35] [ 32] [6213544002044862=491212014486044] +11:51:32 [ 37] [ 12] [507901963528] +11:51:32 [ 38] [ 6] [311149] +11:51:32 [ 39] [ 2] [00] +11:51:32 [ 41] [ 8] [03020019] +11:51:32 [ 49] [ 3] [418] +11:51:32 [ 54] [ 40] [0001418C0000351734990002418C000035173499] +11:51:32 ============================================================================ +11:51:32 Calculate Source COMM Id = 4 +11:51:32 ============================================================================ +11:51:32 + + +waiting on router queue for slot.... +11:51:34 ============================================================================ +11:51:34 Slot Id : <475> +11:51:34 Transaction Type : REQUEST +11:51:34 Received From : +11:51:34 ============================================================================ +11:51:34 FNo. Len. Field Value +11:51:34 ============================================================================ +11:51:34 [ 1] [ 4] [0800] +11:51:34 [ 2] [ 5] [02531] +11:51:34 [ 3] [ 6] [579118] +11:51:34 [ 7] [ 10] [0320045134] +11:51:34 [ 11] [ 6] [807100] +11:51:34 [ 15] [ 10] [0320045134] +11:51:34 [ 37] [ 11] [57911807100] +11:51:34 [ 70] [ 3] [001] +11:51:34 ============================================================================ +11:51:34 + + +waiting on router queue for slot.... +11:51:34 ============================================================================ +11:51:34 Slot Id : <475> +11:51:34 Transaction Type : RESPONSE +11:51:34 Received From : +11:51:34 ============================================================================ +11:51:34 FNo. Len. Field Value +11:51:34 ============================================================================ +11:51:34 [ 1] [ 4] [0810] +11:51:34 [ 7] [ 10] [0320045134] +11:51:34 [ 11] [ 6] [807100] +11:51:34 [ 15] [ 4] [0320] +11:51:34 [ 37] [ 12] [57911807100] +11:51:34 [ 39] [ 2] [00] +11:51:34 [ 70] [ 3] [001] +11:51:34 ============================================================================ +11:51:34 Sending to : +11:51:34 ============================================================================ +11:51:34 + + +waiting on router queue for slot.... +11:51:38 ============================================================================ +11:51:38 Slot Id : <455> +11:51:38 Transaction Type : REQUEST +11:51:38 Received From : +11:51:38 ============================================================================ +11:51:38 FNo. Len. Field Value +11:51:38 ============================================================================ +11:51:38 [ 1] [ 4] [0800] +11:51:38 [ 7] [ 10] [0320045046] +11:51:38 [ 11] [ 6] [156170] +11:51:38 [ 70] [ 3] [301] +11:51:38 ============================================================================ +11:51:38 + + +waiting on router queue for slot.... +11:51:38 Sending to : +11:51:38 ============================================================================ +11:51:38 ============================================================================ +11:51:38 Slot Id : <455> +11:51:38 Transaction Type : RESPONSE +11:51:38 Received From : +11:51:38 ============================================================================ +11:51:38 FNo. Len. Field Value +11:51:38 ============================================================================ +11:51:38 [ 1] [ 4] [0810] +11:51:38 [ 7] [ 10] [0320045046] +11:51:38 [ 11] [ 6] [156170] +11:51:38 [ 39] [ 2] [00] +11:51:38 [ 70] [ 3] [301] +11:51:38 ============================================================================ +11:51:38 Calculate Source COMM Id = 2 +11:51:38 ============================================================================ +11:51:38 + + +waiting on router queue for slot.... +11:51:41 ============================================================================ +11:51:41 Slot Id : <449> +11:51:41 Transaction Type : REQUEST +11:51:41 Received From : +11:51:41 ============================================================================ +11:51:41 FNo. Len. Field Value +11:51:41 ============================================================================ +11:51:41 [ 1] [ 4] [0200] +11:51:41 [ 2] [ 16] [6688990601994302] +11:51:41 [ 3] [ 6] [011000] +11:51:41 [ 4] [ 12] [000100000000] +11:51:41 [ 7] [ 10] [0320115137] +11:51:41 [ 11] [ 6] [736163] +11:51:41 [ 12] [ 6] [115137] +11:51:41 [ 13] [ 4] [0320] +11:51:41 [ 15] [ 4] [0320] +11:51:41 [ 18] [ 4] [6011] +11:51:41 [ 22] [ 3] [900] +11:51:41 [ 25] [ 2] [02] +11:51:41 [ 28] [ 9] [D00002000] +11:51:41 [ 32] [ 6] [621354] +11:51:41 [ 35] [ 37] [6688990601994302=42070061430267300000] +11:51:41 [ 37] [ 12] [507905291366] +11:51:41 [ 41] [ 8] [20001400] +11:51:41 [ 42] [ 15] [NATIVE ] +11:51:41 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +11:51:41 [ 49] [ 3] [418] +11:51:41 [ 52] [ 16] [1C855CFB404DE93E] +11:51:41 ============================================================================ +11:51:41 + + +waiting on router queue for slot.... +11:51:41 Sending to : +11:51:41 ============================================================================ +11:51:41 Sending to : +11:51:41 ============================================================================ +11:51:41 ============================================================================ +11:51:41 Slot Id : <449> +11:51:41 Transaction Type : REQUEST +11:51:41 Received From : +11:51:41 ============================================================================ +11:51:41 FNo. Len. Field Value +11:51:41 ============================================================================ +11:51:41 [ 1] [ 4] [0200] +11:51:41 [ 2] [ 16] [6688990601994302] +11:51:41 [ 3] [ 6] [011000] +11:51:41 [ 4] [ 12] [000100000000] +11:51:41 [ 7] [ 10] [0320115137] +11:51:41 [ 11] [ 6] [736163] +11:51:41 [ 12] [ 6] [115137] +11:51:41 [ 13] [ 4] [0320] +11:51:41 [ 15] [ 4] [0320] +11:51:41 [ 18] [ 4] [6011] +11:51:41 [ 22] [ 3] [900] +11:51:41 [ 25] [ 2] [02] +11:51:41 [ 28] [ 9] [D00002000] +11:51:41 [ 32] [ 6] [621354] +11:51:41 [ 35] [ 37] [6688990601994302=42070061430267300000] +11:51:41 [ 37] [ 12] [507905291366] +11:51:41 [ 41] [ 8] [20001400] +11:51:41 [ 42] [ 15] [NATIVE ] +11:51:41 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +11:51:41 [ 49] [ 3] [418] +11:51:41 [ 52] [ 16] [1C855CFB404DE93E] +11:51:41 ============================================================================ +11:51:41 + + +waiting on router queue for slot.... +11:51:41 Sending to : +11:51:41 ============================================================================ +11:51:41 ============================================================================ +11:51:41 Slot Id : <449> +11:51:41 Transaction Type : REQUEST +11:51:41 Received From : +11:51:41 ============================================================================ +11:51:41 FNo. Len. Field Value +11:51:41 ============================================================================ +11:51:41 [ 1] [ 4] [0200] +11:51:41 [ 2] [ 16] [6688990601994302] +11:51:41 [ 3] [ 6] [011000] +11:51:41 [ 4] [ 12] [000100000000] +11:51:41 [ 7] [ 10] [0320115137] +11:51:41 [ 11] [ 6] [736163] +11:51:41 [ 12] [ 6] [115137] +11:51:41 [ 13] [ 4] [0320] +11:51:41 [ 15] [ 4] [0320] +11:51:41 [ 18] [ 4] [6011] +11:51:41 [ 22] [ 3] [900] +11:51:41 [ 25] [ 2] [02] +11:51:41 [ 28] [ 9] [D00002000] +11:51:41 [ 32] [ 6] [621354] +11:51:41 [ 35] [ 37] [6688990601994302=42070061430267300000] +11:51:41 [ 37] [ 12] [507905291366] +11:51:41 [ 41] [ 8] [20001400] +11:51:41 [ 42] [ 15] [NATIVE ] +11:51:41 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +11:51:41 [ 49] [ 3] [418] +11:51:41 [ 52] [ 16] [B65ED607FCB818AD] +11:51:41 ============================================================================ +11:51:41 + + +waiting on router queue for slot.... +11:51:41 Sending to : <4> +11:51:41 ============================================================================ +11:51:42 ============================================================================ +11:51:42 Slot Id : <449> +11:51:42 Transaction Type : RESPONSE +11:51:42 Received From : +11:51:42 ============================================================================ +11:51:42 FNo. Len. Field Value +11:51:42 ============================================================================ +11:51:42 [ 1] [ 4] [0210] +11:51:42 [ 2] [ 16] [6688990601994302] +11:51:42 [ 3] [ 6] [011000] +11:51:42 [ 4] [ 12] [000100000000] +11:51:42 [ 11] [ 6] [736163] +11:51:42 [ 12] [ 6] [115137] +11:51:42 [ 15] [ 4] [0320] +11:51:42 [ 18] [ 4] [6011] +11:51:42 [ 32] [ 6] [621354] +11:51:42 [ 35] [ 37] [6688990601994302=42070061430267300000] +11:51:42 [ 37] [ 12] [507905291366] +11:51:42 [ 38] [ 6] [351334] +11:51:42 [ 39] [ 2] [00] +11:51:42 [ 41] [ 8] [20001400] +11:51:42 [ 49] [ 3] [418] +11:51:42 [ 54] [ 20] [1002418C000026306067] +11:51:42 ============================================================================ +11:51:42 Sending to : +11:51:42 ============================================================================ +11:51:42 + + +waiting on router queue for slot.... +11:51:44 ============================================================================ +11:51:44 Slot Id : <449> +11:51:44 Transaction Type : RESPONSE +11:51:44 Received From : +11:51:44 ============================================================================ +11:51:44 FNo. Len. Field Value +11:51:44 ============================================================================ +11:51:44 [ 1] [ 4] [0210] +11:51:44 [ 2] [ 16] [6688990601994302] +11:51:44 [ 3] [ 6] [011000] +11:51:44 [ 4] [ 12] [000100000000] +11:51:44 [ 11] [ 6] [736163] +11:51:44 [ 12] [ 6] [115137] +11:51:44 [ 15] [ 4] [0320] +11:51:44 [ 18] [ 4] [6011] +11:51:44 [ 32] [ 6] [621354] +11:51:44 [ 35] [ 37] [6688990601994302=42070061430267300000] +11:51:44 [ 37] [ 12] [507905291366] +11:51:44 [ 38] [ 6] [351334] +11:51:44 [ 39] [ 2] [00] +11:51:44 [ 41] [ 8] [20001400] +11:51:44 [ 49] [ 3] [418] +11:51:44 [ 54] [ 20] [1002418C000026306067] +11:51:44 ============================================================================ +11:51:44 Calculate Source COMM Id = 0 +11:51:44 ============================================================================ +11:51:44 + + +waiting on router queue for slot.... +11:51:49 ============================================================================ +11:51:49 Slot Id : <440> +11:51:49 Transaction Type : REQUEST +11:51:49 Received From : +11:51:49 ============================================================================ +11:51:49 FNo. Len. Field Value +11:51:49 ============================================================================ +11:51:49 [ 1] [ 4] [0800] +11:51:49 [ 7] [ 10] [0320045057] +11:51:49 [ 11] [ 6] [156171] +11:51:49 [ 70] [ 3] [301] +11:51:49 ============================================================================ +11:51:49 + + +waiting on router queue for slot.... +11:51:49 Sending to : +11:51:49 ============================================================================ +11:51:49 ============================================================================ +11:51:49 Slot Id : <440> +11:51:49 Transaction Type : RESPONSE +11:51:49 Received From : +11:51:49 ============================================================================ +11:51:49 FNo. Len. Field Value +11:51:49 ============================================================================ +11:51:49 [ 1] [ 4] [0810] +11:51:49 [ 7] [ 10] [0320045057] +11:51:49 [ 11] [ 6] [156171] +11:51:49 [ 39] [ 2] [00] +11:51:49 [ 70] [ 3] [301] +11:51:49 ============================================================================ +11:51:49 Calculate Source COMM Id = 2 +11:51:49 ============================================================================ +11:51:49 + + +waiting on router queue for slot.... +11:51:53 ============================================================================ +11:51:53 Slot Id : <460> +11:51:53 Transaction Type : REQUEST +11:51:53 Received From : +11:51:53 ============================================================================ +11:51:53 FNo. Len. Field Value +11:51:53 ============================================================================ +11:51:53 [ 1] [ 4] [0200] +11:51:53 [ 2] [ 16] [6213546000008930] +11:51:53 [ 3] [ 6] [301000] +11:51:53 [ 7] [ 10] [0320045059] +11:51:53 [ 11] [ 6] [268777] +11:51:53 [ 12] [ 6] [115059] +11:51:53 [ 13] [ 4] [0320] +11:51:53 [ 14] [ 4] [4912] +11:51:53 [ 15] [ 4] [0320] +11:51:53 [ 18] [ 4] [6011] +11:51:53 [ 19] [ 3] [418] +11:51:53 [ 22] [ 3] [021] +11:51:53 [ 25] [ 2] [01] +11:51:53 [ 32] [ 6] [180893] +11:51:53 [ 35] [ 32] [6213546000008930=491212010893350] +11:51:53 [ 37] [ 12] [507904268777] +11:51:53 [ 41] [ 8] [0482XKMO] +11:51:53 [ 42] [ 15] [999999 ] +11:51:53 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +11:51:53 [ 49] [ 3] [418] +11:51:53 [ 52] [ 16] [AB24D8073401F68A] +11:51:53 ============================================================================ +11:51:53 + + +waiting on router queue for slot.... +11:51:53 Sending to : +11:51:53 ============================================================================ +11:51:53 Sending to : +11:51:53 ============================================================================ +11:51:53 ============================================================================ +11:51:53 Slot Id : <460> +11:51:53 Transaction Type : REQUEST +11:51:53 Received From : +11:51:53 ============================================================================ +11:51:53 FNo. Len. Field Value +11:51:53 ============================================================================ +11:51:53 [ 1] [ 4] [0200] +11:51:53 [ 2] [ 16] [6213546000008930] +11:51:53 [ 3] [ 6] [301000] +11:51:53 [ 7] [ 10] [0320045059] +11:51:53 [ 11] [ 6] [268777] +11:51:53 [ 12] [ 6] [115059] +11:51:53 [ 13] [ 4] [0320] +11:51:53 [ 14] [ 4] [4912] +11:51:53 [ 15] [ 4] [0320] +11:51:53 [ 18] [ 4] [6011] +11:51:53 [ 19] [ 3] [418] +11:51:53 [ 22] [ 3] [021] +11:51:53 [ 25] [ 2] [01] +11:51:53 [ 32] [ 6] [180893] +11:51:53 [ 35] [ 32] [6213546000008930=491212010893350] +11:51:53 [ 37] [ 12] [507904268777] +11:51:53 [ 41] [ 8] [0482XKMO] +11:51:53 [ 42] [ 15] [999999 ] +11:51:53 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +11:51:53 [ 49] [ 3] [418] +11:51:53 [ 52] [ 16] [AB24D8073401F68A] +11:51:53 ============================================================================ +11:51:53 + + +waiting on router queue for slot.... +11:51:53 Sending to : +11:51:53 ============================================================================ +11:51:53 ============================================================================ +11:51:53 Slot Id : <460> +11:51:53 Transaction Type : REQUEST +11:51:53 Received From : +11:51:53 ============================================================================ +11:51:53 FNo. Len. Field Value +11:51:53 ============================================================================ +11:51:53 [ 1] [ 4] [0200] +11:51:53 [ 2] [ 16] [6213546000008930] +11:51:53 [ 3] [ 6] [301000] +11:51:53 [ 7] [ 10] [0320045059] +11:51:53 [ 11] [ 6] [268777] +11:51:53 [ 12] [ 6] [115059] +11:51:53 [ 13] [ 4] [0320] +11:51:53 [ 14] [ 4] [4912] +11:51:53 [ 15] [ 4] [0320] +11:51:53 [ 18] [ 4] [6011] +11:51:53 [ 19] [ 3] [418] +11:51:53 [ 22] [ 3] [021] +11:51:53 [ 25] [ 2] [01] +11:51:53 [ 32] [ 6] [180893] +11:51:53 [ 35] [ 32] [6213546000008930=491212010893350] +11:51:53 [ 37] [ 12] [507904268777] +11:51:53 [ 41] [ 8] [0482XKMO] +11:51:53 [ 42] [ 15] [999999 ] +11:51:53 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +11:51:53 [ 49] [ 3] [418] +11:51:53 [ 52] [ 16] [790E595376BBC02E] +11:51:53 ============================================================================ +11:51:53 + + +waiting on router queue for slot.... +11:51:53 Sending to : <0> +11:51:53 ============================================================================ +11:51:53 ============================================================================ +11:51:53 Slot Id : <460> +11:51:53 Transaction Type : RESPONSE +11:51:53 Received From : +11:51:53 ============================================================================ +11:51:53 FNo. Len. Field Value +11:51:53 ============================================================================ +11:51:53 [ 1] [ 4] [0210] +11:51:53 [ 2] [ 16] [6213546000008930] +11:51:53 [ 3] [ 6] [301000] +11:51:53 [ 4] [ 12] [000000000000] +11:51:53 [ 7] [ 10] [0320045059] +11:51:53 [ 11] [ 6] [268777] +11:51:53 [ 12] [ 6] [115059] +11:51:53 [ 13] [ 4] [0320] +11:51:53 [ 15] [ 4] [0320] +11:51:53 [ 18] [ 4] [6011] +11:51:53 [ 19] [ 3] [418] +11:51:53 [ 32] [ 6] [180893] +11:51:53 [ 35] [ 32] [6213546000008930=491212010893350] +11:51:53 [ 37] [ 12] [507904268777] +11:51:53 [ 38] [ 6] [335117] +11:51:53 [ 39] [ 2] [00] +11:51:53 [ 41] [ 8] [0482XKMO] +11:51:53 [ 49] [ 3] [418] +11:51:53 [ 54] [ 40] [1001418C0008777766041002418C000877776604] +11:51:53 ============================================================================ +11:51:53 Sending to : +11:51:53 ============================================================================ +11:51:53 + + +waiting on router queue for slot.... +11:51:55 ============================================================================ +11:51:55 Slot Id : <460> +11:51:55 Transaction Type : RESPONSE +11:51:55 Received From : +11:51:55 ============================================================================ +11:51:55 FNo. Len. Field Value +11:51:55 ============================================================================ +11:51:55 [ 1] [ 4] [0210] +11:51:55 [ 2] [ 16] [6213546000008930] +11:51:55 [ 3] [ 6] [301000] +11:51:55 [ 4] [ 12] [000000000000] +11:51:55 [ 7] [ 10] [0320045059] +11:51:55 [ 11] [ 6] [268777] +11:51:55 [ 12] [ 6] [115059] +11:51:55 [ 13] [ 4] [0320] +11:51:55 [ 15] [ 4] [0320] +11:51:55 [ 18] [ 4] [6011] +11:51:55 [ 19] [ 3] [418] +11:51:55 [ 32] [ 6] [180893] +11:51:55 [ 35] [ 32] [6213546000008930=491212010893350] +11:51:55 [ 37] [ 12] [507904268777] +11:51:55 [ 38] [ 6] [335117] +11:51:55 [ 39] [ 2] [00] +11:51:55 [ 41] [ 8] [0482XKMO] +11:51:55 [ 49] [ 3] [418] +11:51:55 [ 54] [ 40] [1001418C0008777766041002418C000877776604] +11:51:55 ============================================================================ +11:51:55 Calculate Source COMM Id = 2 +11:51:55 ============================================================================ +11:51:55 + + +waiting on router queue for slot.... +11:52:06 ============================================================================ +11:52:06 Slot Id : <482> +11:52:06 Transaction Type : REQUEST +11:52:06 Received From : +11:52:06 ============================================================================ +11:52:06 FNo. Len. Field Value +11:52:06 ============================================================================ +11:52:06 [ 1] [ 4] [0200] +11:52:06 [ 2] [ 16] [6213545000654396] +11:52:06 [ 3] [ 6] [010000] +11:52:06 [ 4] [ 12] [000100000000] +11:52:06 [ 7] [ 10] [0320045111] +11:52:06 [ 11] [ 6] [268780] +11:52:06 [ 12] [ 6] [115111] +11:52:06 [ 13] [ 4] [0320] +11:52:06 [ 14] [ 4] [4912] +11:52:06 [ 15] [ 4] [0320] +11:52:06 [ 18] [ 4] [6011] +11:52:06 [ 19] [ 3] [418] +11:52:06 [ 22] [ 3] [021] +11:52:06 [ 25] [ 2] [01] +11:52:06 [ 28] [ 9] [D00002000] +11:52:06 [ 32] [ 6] [180893] +11:52:06 [ 35] [ 32] [6213545000654396=491212015439966] +11:52:06 [ 37] [ 12] [507904268780] +11:52:06 [ 41] [ 8] [0441VT52] +11:52:06 [ 42] [ 15] [999999 ] +11:52:06 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:52:06 [ 49] [ 3] [418] +11:52:06 [ 52] [ 16] [6FF04ACE4DC0DDC7] +11:52:06 ============================================================================ +11:52:06 + + +waiting on router queue for slot.... +11:52:06 Sending to : +11:52:06 ============================================================================ +11:52:06 Sending to : +11:52:06 ============================================================================ +11:52:06 ============================================================================ +11:52:06 Slot Id : <482> +11:52:06 Transaction Type : REQUEST +11:52:06 Received From : +11:52:06 ============================================================================ +11:52:06 FNo. Len. Field Value +11:52:06 ============================================================================ +11:52:06 [ 1] [ 4] [0200] +11:52:06 [ 2] [ 16] [6213545000654396] +11:52:06 [ 3] [ 6] [010000] +11:52:06 [ 4] [ 12] [000100000000] +11:52:06 [ 7] [ 10] [0320045111] +11:52:06 [ 11] [ 6] [268780] +11:52:06 [ 12] [ 6] [115111] +11:52:06 [ 13] [ 4] [0320] +11:52:06 [ 14] [ 4] [4912] +11:52:06 [ 15] [ 4] [0320] +11:52:06 [ 18] [ 4] [6011] +11:52:06 [ 19] [ 3] [418] +11:52:06 [ 22] [ 3] [021] +11:52:06 [ 25] [ 2] [01] +11:52:06 [ 28] [ 9] [D00002000] +11:52:06 [ 32] [ 6] [180893] +11:52:06 [ 35] [ 32] [6213545000654396=491212015439966] +11:52:06 [ 37] [ 12] [507904268780] +11:52:06 [ 41] [ 8] [0441VT52] +11:52:06 [ 42] [ 15] [999999 ] +11:52:06 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:52:06 [ 49] [ 3] [418] +11:52:06 [ 52] [ 16] [6FF04ACE4DC0DDC7] +11:52:06 ============================================================================ +11:52:06 + + +waiting on router queue for slot.... +11:52:06 Sending to : +11:52:06 ============================================================================ +11:52:06 ============================================================================ +11:52:06 Slot Id : <482> +11:52:06 Transaction Type : REQUEST +11:52:06 Received From : +11:52:06 ============================================================================ +11:52:06 FNo. Len. Field Value +11:52:06 ============================================================================ +11:52:06 [ 1] [ 4] [0200] +11:52:06 [ 2] [ 16] [6213545000654396] +11:52:06 [ 3] [ 6] [010000] +11:52:06 [ 4] [ 12] [000100000000] +11:52:06 [ 7] [ 10] [0320045111] +11:52:06 [ 11] [ 6] [268780] +11:52:06 [ 12] [ 6] [115111] +11:52:06 [ 13] [ 4] [0320] +11:52:06 [ 14] [ 4] [4912] +11:52:06 [ 15] [ 4] [0320] +11:52:06 [ 18] [ 4] [6011] +11:52:06 [ 19] [ 3] [418] +11:52:06 [ 22] [ 3] [021] +11:52:06 [ 25] [ 2] [01] +11:52:06 [ 28] [ 9] [D00002000] +11:52:06 [ 32] [ 6] [180893] +11:52:06 [ 35] [ 32] [6213545000654396=491212015439966] +11:52:06 [ 37] [ 12] [507904268780] +11:52:06 [ 41] [ 8] [0441VT52] +11:52:06 [ 42] [ 15] [999999 ] +11:52:06 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:52:06 [ 49] [ 3] [418] +11:52:06 [ 52] [ 16] [3F05FFA2A2394CAC] +11:52:06 ============================================================================ +11:52:06 + + +waiting on router queue for slot.... +11:52:06 Sending to : <0> +11:52:06 ============================================================================ +11:52:07 ============================================================================ +11:52:07 Slot Id : <482> +11:52:07 Transaction Type : RESPONSE +11:52:07 Received From : +11:52:07 ============================================================================ +11:52:07 FNo. Len. Field Value +11:52:07 ============================================================================ +11:52:07 [ 1] [ 4] [0210] +11:52:07 [ 2] [ 16] [6213545000654396] +11:52:07 [ 3] [ 6] [010000] +11:52:07 [ 4] [ 12] [000100000000] +11:52:07 [ 7] [ 10] [0320045111] +11:52:07 [ 11] [ 6] [268780] +11:52:07 [ 12] [ 6] [115111] +11:52:07 [ 13] [ 4] [0320] +11:52:07 [ 15] [ 4] [0320] +11:52:07 [ 18] [ 4] [6011] +11:52:07 [ 19] [ 3] [418] +11:52:07 [ 32] [ 6] [180893] +11:52:07 [ 35] [ 32] [6213545000654396=491212015439966] +11:52:07 [ 37] [ 12] [507904268780] +11:52:07 [ 38] [ 6] [268780] +11:52:07 [ 39] [ 2] [51] +11:52:07 [ 41] [ 8] [0441VT52] +11:52:07 [ 49] [ 3] [418] +11:52:07 [ 54] [ 40] [0001418C0000260613760002418C000026061376] +11:52:07 ============================================================================ +11:52:07 Sending to : +11:52:07 ============================================================================ +11:52:07 + + +waiting on router queue for slot.... +11:52:08 ============================================================================ +11:52:08 Slot Id : <482> +11:52:08 Transaction Type : RESPONSE +11:52:08 Received From : +11:52:08 ============================================================================ +11:52:08 FNo. Len. Field Value +11:52:08 ============================================================================ +11:52:08 [ 1] [ 4] [0210] +11:52:08 [ 2] [ 16] [6213545000654396] +11:52:08 [ 3] [ 6] [010000] +11:52:08 [ 4] [ 12] [000100000000] +11:52:08 [ 7] [ 10] [0320045111] +11:52:08 [ 11] [ 6] [268780] +11:52:08 [ 12] [ 6] [115111] +11:52:08 [ 13] [ 4] [0320] +11:52:08 [ 15] [ 4] [0320] +11:52:08 [ 18] [ 4] [6011] +11:52:08 [ 19] [ 3] [418] +11:52:08 [ 32] [ 6] [180893] +11:52:08 [ 35] [ 32] [6213545000654396=491212015439966] +11:52:08 [ 37] [ 12] [507904268780] +11:52:08 [ 38] [ 6] [268780] +11:52:08 [ 39] [ 2] [51] +11:52:08 [ 41] [ 8] [0441VT52] +11:52:08 [ 49] [ 3] [418] +11:52:08 [ 54] [ 40] [0001418C0000260613760002418C000026061376] +11:52:08 ============================================================================ +11:52:08 Calculate Source COMM Id = 2 +11:52:08 ============================================================================ +11:52:08 + + +waiting on router queue for slot.... +11:52:21 ============================================================================ +11:52:21 Slot Id : <432> +11:52:21 Transaction Type : REQUEST +11:52:21 Received From : +11:52:21 ============================================================================ +11:52:21 FNo. Len. Field Value +11:52:21 ============================================================================ +11:52:21 [ 1] [ 4] [0800] +11:52:21 [ 7] [ 10] [0320045129] +11:52:21 [ 11] [ 6] [156172] +11:52:21 [ 70] [ 3] [301] +11:52:21 ============================================================================ +11:52:21 + + +waiting on router queue for slot.... +11:52:21 Sending to : +11:52:21 ============================================================================ +11:52:21 ============================================================================ +11:52:21 Slot Id : <432> +11:52:21 Transaction Type : RESPONSE +11:52:21 Received From : +11:52:21 ============================================================================ +11:52:21 FNo. Len. Field Value +11:52:21 ============================================================================ +11:52:21 [ 1] [ 4] [0810] +11:52:21 [ 7] [ 10] [0320045129] +11:52:21 [ 11] [ 6] [156172] +11:52:21 [ 39] [ 2] [00] +11:52:21 [ 70] [ 3] [301] +11:52:21 ============================================================================ +11:52:21 Calculate Source COMM Id = 2 +11:52:21 ============================================================================ +11:52:21 + + +waiting on router queue for slot.... +11:52:21 ============================================================================ +11:52:21 Slot Id : <495> +11:52:21 Transaction Type : REQUEST +11:52:21 Received From : +11:52:21 ============================================================================ +11:52:21 FNo. Len. Field Value +11:52:21 ============================================================================ +11:52:21 [ 1] [ 4] [0200] +11:52:21 [ 2] [ 16] [6213548000038065] +11:52:21 [ 3] [ 6] [011000] +11:52:21 [ 4] [ 12] [000050000000] +11:52:21 [ 7] [ 10] [0320115243] +11:52:21 [ 11] [ 6] [205018] +11:52:21 [ 12] [ 6] [235053] +11:52:21 [ 13] [ 4] [0319] +11:52:21 [ 14] [ 4] [1306] +11:52:21 [ 15] [ 4] [0319] +11:52:21 [ 18] [ 4] [6011] +11:52:21 [ 19] [ 3] [418] +11:52:21 [ 22] [ 3] [021] +11:52:21 [ 25] [ 2] [01] +11:52:21 [ 28] [ 9] [D00002000] +11:52:21 [ 32] [ 6] [198901] +11:52:21 [ 35] [ 32] [6213548000038065=130612013806971] +11:52:21 [ 37] [ 12] [507911205018] +11:52:21 [ 41] [ 8] [01529031] +11:52:21 [ 42] [ 15] [000000041529031] +11:52:21 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:52:21 [ 49] [ 3] [418] +11:52:21 [ 52] [ 16] [CBD07E1054BEFC32] +11:52:21 ============================================================================ +11:52:21 + + +waiting on router queue for slot.... +11:52:21 Sending to : +11:52:21 ============================================================================ +11:52:21 Sending to : +11:52:21 ============================================================================ +11:52:22 ============================================================================ +11:52:22 Slot Id : <495> +11:52:22 Transaction Type : REQUEST +11:52:22 Received From : +11:52:22 ============================================================================ +11:52:22 FNo. Len. Field Value +11:52:22 ============================================================================ +11:52:22 [ 1] [ 4] [0200] +11:52:22 [ 2] [ 16] [6213548000038065] +11:52:22 [ 3] [ 6] [011000] +11:52:22 [ 4] [ 12] [000050000000] +11:52:22 [ 7] [ 10] [0320115243] +11:52:22 [ 11] [ 6] [205018] +11:52:22 [ 12] [ 6] [235053] +11:52:22 [ 13] [ 4] [0319] +11:52:22 [ 14] [ 4] [1306] +11:52:22 [ 15] [ 4] [0319] +11:52:22 [ 18] [ 4] [6011] +11:52:22 [ 19] [ 3] [418] +11:52:22 [ 22] [ 3] [021] +11:52:22 [ 25] [ 2] [01] +11:52:22 [ 28] [ 9] [D00002000] +11:52:22 [ 32] [ 6] [198901] +11:52:22 [ 35] [ 32] [6213548000038065=130612013806971] +11:52:22 [ 37] [ 12] [507911205018] +11:52:22 [ 41] [ 8] [01529031] +11:52:22 [ 42] [ 15] [000000041529031] +11:52:22 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:52:22 [ 49] [ 3] [418] +11:52:22 [ 52] [ 16] [CBD07E1054BEFC32] +11:52:22 ============================================================================ +11:52:22 + + +waiting on router queue for slot.... +11:52:22 Sending to : +11:52:22 ============================================================================ +11:52:22 ============================================================================ +11:52:22 Slot Id : <495> +11:52:22 Transaction Type : REQUEST +11:52:22 Received From : +11:52:22 ============================================================================ +11:52:22 FNo. Len. Field Value +11:52:22 ============================================================================ +11:52:22 [ 1] [ 4] [0200] +11:52:22 [ 2] [ 16] [6213548000038065] +11:52:22 [ 3] [ 6] [011000] +11:52:22 [ 4] [ 12] [000050000000] +11:52:22 [ 7] [ 10] [0320115243] +11:52:22 [ 11] [ 6] [205018] +11:52:22 [ 12] [ 6] [235053] +11:52:22 [ 13] [ 4] [0319] +11:52:22 [ 14] [ 4] [1306] +11:52:22 [ 15] [ 4] [0319] +11:52:22 [ 18] [ 4] [6011] +11:52:22 [ 19] [ 3] [418] +11:52:22 [ 22] [ 3] [021] +11:52:22 [ 25] [ 2] [01] +11:52:22 [ 28] [ 9] [D00002000] +11:52:22 [ 32] [ 6] [198901] +11:52:22 [ 35] [ 32] [6213548000038065=130612013806971] +11:52:22 [ 37] [ 12] [507911205018] +11:52:22 [ 41] [ 8] [01529031] +11:52:22 [ 42] [ 15] [000000041529031] +11:52:22 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +11:52:22 [ 49] [ 3] [418] +11:52:22 [ 52] [ 16] [8E8D2960B9065266] +11:52:22 ============================================================================ +11:52:22 + + +waiting on router queue for slot.... +11:52:22 Sending to : <0> +11:52:22 ============================================================================ +11:52:22 ============================================================================ +11:52:22 Slot Id : <495> +11:52:22 Transaction Type : RESPONSE +11:52:22 Received From : +11:52:22 ============================================================================ +11:52:22 FNo. Len. Field Value +11:52:22 ============================================================================ +11:52:22 [ 1] [ 4] [0210] +11:52:22 [ 2] [ 16] [6213548000038065] +11:52:22 [ 3] [ 6] [011000] +11:52:22 [ 4] [ 12] [000050000000] +11:52:22 [ 7] [ 10] [0320115243] +11:52:22 [ 11] [ 6] [205018] +11:52:22 [ 12] [ 6] [235053] +11:52:22 [ 13] [ 4] [0319] +11:52:22 [ 15] [ 4] [0319] +11:52:22 [ 18] [ 4] [6011] +11:52:22 [ 19] [ 3] [418] +11:52:22 [ 32] [ 6] [198901] +11:52:22 [ 35] [ 32] [6213548000038065=130612013806971] +11:52:22 [ 37] [ 12] [507911205018] +11:52:22 [ 38] [ 6] [035744] +11:52:22 [ 39] [ 2] [00] +11:52:22 [ 41] [ 8] [01529031] +11:52:22 [ 49] [ 3] [418] +11:52:22 [ 54] [ 40] [1001418C0000672726111002418C000067272611] +11:52:22 ============================================================================ +11:52:22 Sending to : +11:52:22 ============================================================================ +11:52:22 + + +waiting on router queue for slot.... +11:52:24 ============================================================================ +11:52:24 Slot Id : <495> +11:52:24 Transaction Type : RESPONSE +11:52:24 Received From : +11:52:24 ============================================================================ +11:52:24 FNo. Len. Field Value +11:52:24 ============================================================================ +11:52:24 [ 1] [ 4] [0210] +11:52:24 [ 2] [ 16] [6213548000038065] +11:52:24 [ 3] [ 6] [011000] +11:52:24 [ 4] [ 12] [000050000000] +11:52:24 [ 7] [ 10] [0320115243] +11:52:24 [ 11] [ 6] [205018] +11:52:24 [ 12] [ 6] [235053] +11:52:24 [ 13] [ 4] [0319] +11:52:24 [ 15] [ 4] [0319] +11:52:24 [ 18] [ 4] [6011] +11:52:24 [ 19] [ 3] [418] +11:52:24 [ 32] [ 6] [198901] +11:52:24 [ 35] [ 32] [6213548000038065=130612013806971] +11:52:24 [ 37] [ 12] [507911205018] +11:52:24 [ 38] [ 6] [035744] +11:52:24 [ 39] [ 2] [00] +11:52:24 [ 41] [ 8] [01529031] +11:52:24 [ 49] [ 3] [418] +11:52:24 [ 54] [ 40] [1001418C0000672726111002418C000067272611] +11:52:24 ============================================================================ +11:52:24 Calculate Source COMM Id = 5 +11:52:24 ============================================================================ +11:52:24 + + +waiting on router queue for slot.... +11:52:31 ============================================================================ +11:52:31 Slot Id : <453> +11:52:31 Transaction Type : REQUEST +11:52:31 Received From : +11:52:31 ============================================================================ +11:52:31 FNo. Len. Field Value +11:52:31 ============================================================================ +11:52:31 [ 1] [ 4] [0800] +11:52:31 [ 7] [ 10] [0320045139] +11:52:31 [ 11] [ 6] [156173] +11:52:31 [ 70] [ 3] [301] +11:52:31 ============================================================================ +11:52:31 + + +waiting on router queue for slot.... +11:52:31 Sending to : +11:52:31 ============================================================================ +11:52:31 ============================================================================ +11:52:31 Slot Id : <453> +11:52:31 Transaction Type : RESPONSE +11:52:31 Received From : +11:52:31 ============================================================================ +11:52:31 FNo. Len. Field Value +11:52:31 ============================================================================ +11:52:31 [ 1] [ 4] [0810] +11:52:31 [ 7] [ 10] [0320045139] +11:52:31 [ 11] [ 6] [156173] +11:52:31 [ 39] [ 2] [00] +11:52:31 [ 70] [ 3] [301] +11:52:31 ============================================================================ +11:52:31 Calculate Source COMM Id = 2 +11:52:31 ============================================================================ +11:52:31 + + +waiting on router queue for slot.... +11:52:33 ============================================================================ +11:52:33 Slot Id : <488> +11:52:33 Transaction Type : REQUEST +11:52:33 Received From : +11:52:33 ============================================================================ +11:52:33 FNo. Len. Field Value +11:52:33 ============================================================================ +11:52:33 [ 1] [ 4] [0200] +11:52:33 [ 2] [ 16] [6688990040149112] +11:52:33 [ 3] [ 6] [010000] +11:52:33 [ 4] [ 12] [000010000000] +11:52:33 [ 7] [ 10] [0320045140] +11:52:33 [ 11] [ 6] [268783] +11:52:33 [ 12] [ 6] [115140] +11:52:33 [ 13] [ 4] [0320] +11:52:33 [ 14] [ 4] [9805] +11:52:33 [ 15] [ 4] [0320] +11:52:33 [ 18] [ 4] [6011] +11:52:33 [ 19] [ 3] [418] +11:52:33 [ 22] [ 3] [021] +11:52:33 [ 25] [ 2] [01] +11:52:33 [ 28] [ 9] [D00002000] +11:52:33 [ 32] [ 6] [180893] +11:52:33 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:52:33 [ 37] [ 12] [507904268783] +11:52:33 [ 41] [ 8] [0321LNTV] +11:52:33 [ 42] [ 15] [999999 ] +11:52:33 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +11:52:33 [ 49] [ 3] [418] +11:52:33 [ 52] [ 16] [EB9C3674C9D755A8] +11:52:33 ============================================================================ +11:52:33 + + +waiting on router queue for slot.... +11:52:33 Sending to : +11:52:33 ============================================================================ +11:52:33 Sending to : +11:52:33 ============================================================================ +11:52:33 ============================================================================ +11:52:33 Slot Id : <488> +11:52:33 Transaction Type : REQUEST +11:52:33 Received From : +11:52:33 ============================================================================ +11:52:33 FNo. Len. Field Value +11:52:33 ============================================================================ +11:52:33 [ 1] [ 4] [0200] +11:52:33 [ 2] [ 16] [6688990040149112] +11:52:33 [ 3] [ 6] [010000] +11:52:33 [ 4] [ 12] [000010000000] +11:52:33 [ 7] [ 10] [0320045140] +11:52:33 [ 11] [ 6] [268783] +11:52:33 [ 12] [ 6] [115140] +11:52:33 [ 13] [ 4] [0320] +11:52:33 [ 14] [ 4] [9805] +11:52:33 [ 15] [ 4] [0320] +11:52:33 [ 18] [ 4] [6011] +11:52:33 [ 19] [ 3] [418] +11:52:33 [ 22] [ 3] [021] +11:52:33 [ 25] [ 2] [01] +11:52:33 [ 28] [ 9] [D00002000] +11:52:33 [ 32] [ 6] [180893] +11:52:33 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:52:33 [ 37] [ 12] [507904268783] +11:52:33 [ 41] [ 8] [0321LNTV] +11:52:33 [ 42] [ 15] [999999 ] +11:52:33 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +11:52:33 [ 49] [ 3] [418] +11:52:33 [ 52] [ 16] [EB9C3674C9D755A8] +11:52:33 ============================================================================ +11:52:33 + + +waiting on router queue for slot.... +11:52:33 Sending to : +11:52:33 ============================================================================ +11:52:33 ============================================================================ +11:52:33 Slot Id : <488> +11:52:33 Transaction Type : REQUEST +11:52:33 Received From : +11:52:33 ============================================================================ +11:52:33 FNo. Len. Field Value +11:52:33 ============================================================================ +11:52:33 [ 1] [ 4] [0200] +11:52:33 [ 2] [ 16] [6688990040149112] +11:52:33 [ 3] [ 6] [010000] +11:52:33 [ 4] [ 12] [000010000000] +11:52:33 [ 7] [ 10] [0320045140] +11:52:33 [ 11] [ 6] [268783] +11:52:33 [ 12] [ 6] [115140] +11:52:33 [ 13] [ 4] [0320] +11:52:33 [ 14] [ 4] [9805] +11:52:33 [ 15] [ 4] [0320] +11:52:33 [ 18] [ 4] [6011] +11:52:33 [ 19] [ 3] [418] +11:52:33 [ 22] [ 3] [021] +11:52:33 [ 25] [ 2] [01] +11:52:33 [ 28] [ 9] [D00002000] +11:52:33 [ 32] [ 6] [180893] +11:52:33 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:52:33 [ 37] [ 12] [507904268783] +11:52:33 [ 41] [ 8] [0321LNTV] +11:52:33 [ 42] [ 15] [999999 ] +11:52:33 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +11:52:33 [ 49] [ 3] [418] +11:52:33 [ 52] [ 16] [68BD014BA045BC2A] +11:52:33 ============================================================================ +11:52:33 + + +waiting on router queue for slot.... +11:52:33 Sending to : <0> +11:52:33 ============================================================================ +11:52:33 ============================================================================ +11:52:33 Slot Id : <488> +11:52:33 Transaction Type : RESPONSE +11:52:33 Received From : +11:52:33 ============================================================================ +11:52:33 FNo. Len. Field Value +11:52:33 ============================================================================ +11:52:33 [ 1] [ 4] [0210] +11:52:33 [ 2] [ 16] [6688990040149112] +11:52:33 [ 3] [ 6] [010000] +11:52:33 [ 4] [ 12] [000010000000] +11:52:33 [ 7] [ 10] [0320045140] +11:52:33 [ 11] [ 6] [268783] +11:52:33 [ 12] [ 6] [115140] +11:52:33 [ 13] [ 4] [0320] +11:52:33 [ 15] [ 4] [0320] +11:52:33 [ 18] [ 4] [6011] +11:52:33 [ 19] [ 3] [418] +11:52:33 [ 22] [ 3] [021] +11:52:33 [ 32] [ 6] [180893] +11:52:33 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:52:33 [ 37] [ 12] [507904268783] +11:52:33 [ 39] [ 2] [14] +11:52:33 [ 41] [ 8] [0321LNTV] +11:52:33 [ 49] [ 3] [418] +11:52:33 ============================================================================ +11:52:33 Sending to : +11:52:33 ============================================================================ +11:52:33 + + +waiting on router queue for slot.... +11:52:35 ============================================================================ +11:52:35 Slot Id : <488> +11:52:35 Transaction Type : RESPONSE +11:52:35 Received From : +11:52:35 ============================================================================ +11:52:35 FNo. Len. Field Value +11:52:35 ============================================================================ +11:52:35 [ 1] [ 4] [0210] +11:52:35 [ 2] [ 16] [6688990040149112] +11:52:35 [ 3] [ 6] [010000] +11:52:35 [ 4] [ 12] [000010000000] +11:52:35 [ 7] [ 10] [0320045140] +11:52:35 [ 11] [ 6] [268783] +11:52:35 [ 12] [ 6] [115140] +11:52:35 [ 13] [ 4] [0320] +11:52:35 [ 15] [ 4] [0320] +11:52:35 [ 18] [ 4] [6011] +11:52:35 [ 19] [ 3] [418] +11:52:35 [ 22] [ 3] [021] +11:52:35 [ 32] [ 6] [180893] +11:52:35 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:52:35 [ 37] [ 12] [507904268783] +11:52:35 [ 39] [ 2] [14] +11:52:35 [ 41] [ 8] [0321LNTV] +11:52:35 [ 49] [ 3] [418] +11:52:35 ============================================================================ +11:52:35 Calculate Source COMM Id = 2 +11:52:35 ============================================================================ +11:52:35 + + +waiting on router queue for slot.... +11:52:36 ============================================================================ +11:52:36 Slot Id : <484> +11:52:36 Transaction Type : REQUEST +11:52:36 Received From : +11:52:36 ============================================================================ +11:52:36 FNo. Len. Field Value +11:52:36 ============================================================================ +11:52:36 [ 1] [ 4] [0800] +11:52:36 [ 2] [ 5] [02531] +11:52:36 [ 3] [ 6] [579118] +11:52:36 [ 7] [ 10] [0320045236] +11:52:36 [ 11] [ 6] [807101] +11:52:36 [ 15] [ 10] [0320045236] +11:52:36 [ 37] [ 11] [57911807101] +11:52:36 [ 70] [ 3] [001] +11:52:36 ============================================================================ +11:52:36 + + +waiting on router queue for slot.... +11:52:36 ============================================================================ +11:52:36 Slot Id : <484> +11:52:36 Transaction Type : RESPONSE +11:52:36 Received From : +11:52:36 ============================================================================ +11:52:36 FNo. Len. Field Value +11:52:36 ============================================================================ +11:52:36 [ 1] [ 4] [0810] +11:52:36 [ 7] [ 10] [0320045236] +11:52:36 [ 11] [ 6] [807101] +11:52:36 [ 15] [ 4] [0320] +11:52:36 [ 37] [ 12] [57911807101] +11:52:36 [ 39] [ 2] [00] +11:52:36 [ 70] [ 3] [001] +11:52:36 ============================================================================ +11:52:36 Sending to : +11:52:36 ============================================================================ +11:52:36 + + +waiting on router queue for slot.... +11:52:47 ============================================================================ +11:52:47 Slot Id : <470> +11:52:47 Transaction Type : REQUEST +11:52:47 Received From : +11:52:47 ============================================================================ +11:52:47 FNo. Len. Field Value +11:52:47 ============================================================================ +11:52:47 [ 1] [ 4] [0800] +11:52:47 [ 7] [ 10] [0320045155] +11:52:47 [ 11] [ 6] [156174] +11:52:47 [ 70] [ 3] [301] +11:52:47 ============================================================================ +11:52:47 + + +waiting on router queue for slot.... +11:52:47 Sending to : +11:52:47 ============================================================================ +11:52:47 ============================================================================ +11:52:47 Slot Id : <470> +11:52:47 Transaction Type : RESPONSE +11:52:47 Received From : +11:52:47 ============================================================================ +11:52:47 FNo. Len. Field Value +11:52:47 ============================================================================ +11:52:47 [ 1] [ 4] [0810] +11:52:47 [ 7] [ 10] [0320045155] +11:52:47 [ 11] [ 6] [156174] +11:52:47 [ 39] [ 2] [00] +11:52:47 [ 70] [ 3] [301] +11:52:47 ============================================================================ +11:52:47 Calculate Source COMM Id = 2 +11:52:47 ============================================================================ +11:52:47 + + +waiting on router queue for slot.... +11:52:48 ============================================================================ +11:52:48 Slot Id : <490> +11:52:48 Transaction Type : REQUEST +11:52:48 Received From : +11:52:48 ============================================================================ +11:52:48 FNo. Len. Field Value +11:52:48 ============================================================================ +11:52:48 [ 1] [ 4] [0200] +11:52:48 [ 2] [ 16] [6688990601994302] +11:52:48 [ 3] [ 6] [011000] +11:52:48 [ 4] [ 12] [000020000000] +11:52:48 [ 7] [ 10] [0320115244] +11:52:48 [ 11] [ 6] [736435] +11:52:48 [ 12] [ 6] [115244] +11:52:48 [ 13] [ 4] [0320] +11:52:48 [ 15] [ 4] [0320] +11:52:48 [ 18] [ 4] [6011] +11:52:48 [ 22] [ 3] [900] +11:52:48 [ 25] [ 2] [02] +11:52:48 [ 28] [ 9] [D00002000] +11:52:48 [ 32] [ 6] [621354] +11:52:48 [ 35] [ 37] [6688990601994302=42070061430267300000] +11:52:48 [ 37] [ 12] [507905291368] +11:52:48 [ 41] [ 8] [20001400] +11:52:48 [ 42] [ 15] [NATIVE ] +11:52:48 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +11:52:48 [ 49] [ 3] [418] +11:52:48 [ 52] [ 16] [1C855CFB404DE93E] +11:52:48 ============================================================================ +11:52:48 + + +waiting on router queue for slot.... +11:52:48 Sending to : +11:52:48 ============================================================================ +11:52:48 Sending to : +11:52:48 ============================================================================ +11:52:49 ============================================================================ +11:52:49 Slot Id : <490> +11:52:49 Transaction Type : REQUEST +11:52:49 Received From : +11:52:49 ============================================================================ +11:52:49 FNo. Len. Field Value +11:52:49 ============================================================================ +11:52:49 [ 1] [ 4] [0200] +11:52:49 [ 2] [ 16] [6688990601994302] +11:52:49 [ 3] [ 6] [011000] +11:52:49 [ 4] [ 12] [000020000000] +11:52:49 [ 7] [ 10] [0320115244] +11:52:49 [ 11] [ 6] [736435] +11:52:49 [ 12] [ 6] [115244] +11:52:49 [ 13] [ 4] [0320] +11:52:49 [ 15] [ 4] [0320] +11:52:49 [ 18] [ 4] [6011] +11:52:49 [ 22] [ 3] [900] +11:52:49 [ 25] [ 2] [02] +11:52:49 [ 28] [ 9] [D00002000] +11:52:49 [ 32] [ 6] [621354] +11:52:49 [ 35] [ 37] [6688990601994302=42070061430267300000] +11:52:49 [ 37] [ 12] [507905291368] +11:52:49 [ 41] [ 8] [20001400] +11:52:49 [ 42] [ 15] [NATIVE ] +11:52:49 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +11:52:49 [ 49] [ 3] [418] +11:52:49 [ 52] [ 16] [1C855CFB404DE93E] +11:52:49 ============================================================================ +11:52:49 + + +waiting on router queue for slot.... +11:52:49 Sending to : +11:52:49 ============================================================================ +11:52:49 ============================================================================ +11:52:49 Slot Id : <490> +11:52:49 Transaction Type : REQUEST +11:52:49 Received From : +11:52:49 ============================================================================ +11:52:49 FNo. Len. Field Value +11:52:49 ============================================================================ +11:52:49 [ 1] [ 4] [0200] +11:52:49 [ 2] [ 16] [6688990601994302] +11:52:49 [ 3] [ 6] [011000] +11:52:49 [ 4] [ 12] [000020000000] +11:52:49 [ 7] [ 10] [0320115244] +11:52:49 [ 11] [ 6] [736435] +11:52:49 [ 12] [ 6] [115244] +11:52:49 [ 13] [ 4] [0320] +11:52:49 [ 15] [ 4] [0320] +11:52:49 [ 18] [ 4] [6011] +11:52:49 [ 22] [ 3] [900] +11:52:49 [ 25] [ 2] [02] +11:52:49 [ 28] [ 9] [D00002000] +11:52:49 [ 32] [ 6] [621354] +11:52:49 [ 35] [ 37] [6688990601994302=42070061430267300000] +11:52:49 [ 37] [ 12] [507905291368] +11:52:49 [ 41] [ 8] [20001400] +11:52:49 [ 42] [ 15] [NATIVE ] +11:52:49 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +11:52:49 [ 49] [ 3] [418] +11:52:49 [ 52] [ 16] [B65ED607FCB818AD] +11:52:49 ============================================================================ +11:52:49 + + +waiting on router queue for slot.... +11:52:49 Sending to : <4> +11:52:49 ============================================================================ +11:52:51 ============================================================================ +11:52:51 Slot Id : <490> +11:52:51 Transaction Type : RESPONSE +11:52:51 Received From : +11:52:51 ============================================================================ +11:52:51 FNo. Len. Field Value +11:52:51 ============================================================================ +11:52:51 [ 1] [ 4] [0210] +11:52:51 [ 2] [ 16] [6688990601994302] +11:52:51 [ 3] [ 6] [011000] +11:52:51 [ 4] [ 12] [000020000000] +11:52:51 [ 11] [ 6] [736435] +11:52:51 [ 12] [ 6] [115244] +11:52:51 [ 15] [ 4] [0320] +11:52:51 [ 18] [ 4] [6011] +11:52:51 [ 32] [ 6] [621354] +11:52:51 [ 35] [ 37] [6688990601994302=42070061430267300000] +11:52:51 [ 37] [ 12] [507905291368] +11:52:51 [ 38] [ 6] [854562] +11:52:51 [ 39] [ 2] [00] +11:52:51 [ 41] [ 8] [20001400] +11:52:51 [ 49] [ 3] [418] +11:52:51 [ 54] [ 20] [1002418C000006106067] +11:52:51 ============================================================================ +11:52:51 Sending to : +11:52:51 ============================================================================ +11:52:51 + + +waiting on router queue for slot.... +11:52:52 ============================================================================ +11:52:52 Slot Id : <490> +11:52:52 Transaction Type : RESPONSE +11:52:52 Received From : +11:52:52 ============================================================================ +11:52:52 FNo. Len. Field Value +11:52:52 ============================================================================ +11:52:52 [ 1] [ 4] [0210] +11:52:52 [ 2] [ 16] [6688990601994302] +11:52:52 [ 3] [ 6] [011000] +11:52:52 [ 4] [ 12] [000020000000] +11:52:52 [ 11] [ 6] [736435] +11:52:52 [ 12] [ 6] [115244] +11:52:52 [ 15] [ 4] [0320] +11:52:52 [ 18] [ 4] [6011] +11:52:52 [ 32] [ 6] [621354] +11:52:52 [ 35] [ 37] [6688990601994302=42070061430267300000] +11:52:52 [ 37] [ 12] [507905291368] +11:52:52 [ 38] [ 6] [854562] +11:52:52 [ 39] [ 2] [00] +11:52:52 [ 41] [ 8] [20001400] +11:52:52 [ 49] [ 3] [418] +11:52:52 [ 54] [ 20] [1002418C000006106067] +11:52:52 ============================================================================ +11:52:52 Calculate Source COMM Id = 0 +11:52:52 ============================================================================ +11:52:52 + + +waiting on router queue for slot.... +11:52:59 ============================================================================ +11:52:59 Slot Id : <463> +11:52:59 Transaction Type : REQUEST +11:52:59 Received From : +11:52:59 ============================================================================ +11:52:59 FNo. Len. Field Value +11:52:59 ============================================================================ +11:52:59 [ 1] [ 4] [0800] +11:52:59 [ 7] [ 10] [0320045205] +11:52:59 [ 11] [ 6] [156175] +11:52:59 [ 70] [ 3] [301] +11:52:59 ============================================================================ +11:52:59 + + +waiting on router queue for slot.... +11:52:59 Sending to : +11:52:59 ============================================================================ +11:52:59 ============================================================================ +11:52:59 Slot Id : <463> +11:52:59 Transaction Type : RESPONSE +11:52:59 Received From : +11:52:59 ============================================================================ +11:52:59 FNo. Len. Field Value +11:52:59 ============================================================================ +11:52:59 [ 1] [ 4] [0810] +11:52:59 [ 7] [ 10] [0320045205] +11:52:59 [ 11] [ 6] [156175] +11:52:59 [ 39] [ 2] [00] +11:52:59 [ 70] [ 3] [301] +11:52:59 ============================================================================ +11:52:59 Calculate Source COMM Id = 2 +11:52:59 ============================================================================ +11:52:59 + + +waiting on router queue for slot.... +11:52:59 ============================================================================ +11:52:59 Slot Id : <480> +11:52:59 Transaction Type : REQUEST +11:52:59 Received From : +11:52:59 ============================================================================ +11:52:59 FNo. Len. Field Value +11:52:59 ============================================================================ +11:52:59 [ 1] [ 4] [0200] +11:52:59 [ 2] [ 16] [6213544001657367] +11:52:59 [ 3] [ 6] [011000] +11:52:59 [ 4] [ 12] [000030000000] +11:52:59 [ 7] [ 10] [0320115320] +11:52:59 [ 11] [ 6] [205026] +11:52:59 [ 12] [ 6] [114903] +11:52:59 [ 13] [ 4] [0320] +11:52:59 [ 14] [ 4] [4912] +11:52:59 [ 15] [ 4] [0320] +11:52:59 [ 18] [ 4] [6011] +11:52:59 [ 19] [ 3] [418] +11:52:59 [ 22] [ 3] [021] +11:52:59 [ 25] [ 2] [01] +11:52:59 [ 28] [ 9] [D00002000] +11:52:59 [ 32] [ 6] [198901] +11:52:59 [ 35] [ 32] [6213544001657367=491212015736957] +11:52:59 [ 37] [ 12] [507911205026] +11:52:59 [ 41] [ 8] [01529001] +11:52:59 [ 42] [ 15] [000000041529001] +11:52:59 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +11:52:59 [ 49] [ 3] [418] +11:52:59 [ 52] [ 16] [FF286B96E3546F81] +11:52:59 ============================================================================ +11:52:59 + + +waiting on router queue for slot.... +11:52:59 Sending to : +11:52:59 ============================================================================ +11:52:59 Sending to : +11:52:59 ============================================================================ +11:52:59 ============================================================================ +11:52:59 Slot Id : <480> +11:52:59 Transaction Type : REQUEST +11:52:59 Received From : +11:52:59 ============================================================================ +11:52:59 FNo. Len. Field Value +11:52:59 ============================================================================ +11:52:59 [ 1] [ 4] [0200] +11:52:59 [ 2] [ 16] [6213544001657367] +11:52:59 [ 3] [ 6] [011000] +11:52:59 [ 4] [ 12] [000030000000] +11:52:59 [ 7] [ 10] [0320115320] +11:52:59 [ 11] [ 6] [205026] +11:52:59 [ 12] [ 6] [114903] +11:52:59 [ 13] [ 4] [0320] +11:52:59 [ 14] [ 4] [4912] +11:52:59 [ 15] [ 4] [0320] +11:52:59 [ 18] [ 4] [6011] +11:52:59 [ 19] [ 3] [418] +11:52:59 [ 22] [ 3] [021] +11:52:59 [ 25] [ 2] [01] +11:52:59 [ 28] [ 9] [D00002000] +11:52:59 [ 32] [ 6] [198901] +11:52:59 [ 35] [ 32] [6213544001657367=491212015736957] +11:52:59 [ 37] [ 12] [507911205026] +11:52:59 [ 41] [ 8] [01529001] +11:52:59 [ 42] [ 15] [000000041529001] +11:52:59 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +11:52:59 [ 49] [ 3] [418] +11:52:59 [ 52] [ 16] [FF286B96E3546F81] +11:52:59 ============================================================================ +11:52:59 + + +waiting on router queue for slot.... +11:52:59 Sending to : +11:52:59 ============================================================================ +11:52:59 ============================================================================ +11:52:59 Slot Id : <480> +11:52:59 Transaction Type : REQUEST +11:52:59 Received From : +11:52:59 ============================================================================ +11:52:59 FNo. Len. Field Value +11:52:59 ============================================================================ +11:52:59 [ 1] [ 4] [0200] +11:52:59 [ 2] [ 16] [6213544001657367] +11:52:59 [ 3] [ 6] [011000] +11:52:59 [ 4] [ 12] [000030000000] +11:52:59 [ 7] [ 10] [0320115320] +11:52:59 [ 11] [ 6] [205026] +11:52:59 [ 12] [ 6] [114903] +11:52:59 [ 13] [ 4] [0320] +11:52:59 [ 14] [ 4] [4912] +11:52:59 [ 15] [ 4] [0320] +11:52:59 [ 18] [ 4] [6011] +11:52:59 [ 19] [ 3] [418] +11:52:59 [ 22] [ 3] [021] +11:52:59 [ 25] [ 2] [01] +11:52:59 [ 28] [ 9] [D00002000] +11:52:59 [ 32] [ 6] [198901] +11:52:59 [ 35] [ 32] [6213544001657367=491212015736957] +11:52:59 [ 37] [ 12] [507911205026] +11:52:59 [ 41] [ 8] [01529001] +11:52:59 [ 42] [ 15] [000000041529001] +11:52:59 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +11:52:59 [ 49] [ 3] [418] +11:52:59 [ 52] [ 16] [4D7C4C5E02D58190] +11:52:59 ============================================================================ +11:52:59 + + +waiting on router queue for slot.... +11:52:59 Sending to : <0> +11:52:59 ============================================================================ +11:53:00 ============================================================================ +11:53:00 Slot Id : <448> +11:53:00 Transaction Type : REQUEST +11:53:00 Received From : +11:53:00 ============================================================================ +11:53:00 FNo. Len. Field Value +11:53:00 ============================================================================ +11:53:00 [ 1] [ 4] [0200] +11:53:00 [ 2] [ 16] [6688990040128512] +11:53:00 [ 3] [ 6] [011000] +11:53:00 [ 4] [ 12] [000030000000] +11:53:00 [ 7] [ 10] [0320115255] +11:53:00 [ 11] [ 6] [736503] +11:53:00 [ 12] [ 6] [115255] +11:53:00 [ 13] [ 4] [0320] +11:53:00 [ 15] [ 4] [0320] +11:53:00 [ 18] [ 4] [6011] +11:53:00 [ 22] [ 3] [900] +11:53:00 [ 25] [ 2] [02] +11:53:00 [ 28] [ 9] [D00002000] +11:53:00 [ 32] [ 6] [621354] +11:53:00 [ 35] [ 37] [6688990040128512=98041261166829600000] +11:53:00 [ 37] [ 12] [507902682301] +11:53:00 [ 41] [ 8] [14000700] +11:53:00 [ 42] [ 15] [NATIVE ] +11:53:00 [ 43] [ 40] [CEMENT FACTORY Vangvieng LAO] +11:53:00 [ 49] [ 3] [418] +11:53:00 [ 52] [ 16] [8399A84F1F2C51B2] +11:53:00 ============================================================================ +11:53:00 + + +waiting on router queue for slot.... +11:53:00 Sending to : +11:53:00 ============================================================================ +11:53:00 Sending to : +11:53:00 ============================================================================ +11:53:00 ============================================================================ +11:53:00 Slot Id : <480> +11:53:00 Transaction Type : RESPONSE +11:53:00 Received From : +11:53:00 ============================================================================ +11:53:00 FNo. Len. Field Value +11:53:00 ============================================================================ +11:53:00 [ 1] [ 4] [0210] +11:53:00 [ 2] [ 16] [6213544001657367] +11:53:00 [ 3] [ 6] [011000] +11:53:00 [ 4] [ 12] [000030000000] +11:53:00 [ 7] [ 10] [0320115320] +11:53:00 [ 11] [ 6] [205026] +11:53:00 [ 12] [ 6] [114903] +11:53:00 [ 13] [ 4] [0320] +11:53:00 [ 15] [ 4] [0320] +11:53:00 [ 18] [ 4] [6011] +11:53:00 [ 19] [ 3] [418] +11:53:00 [ 32] [ 6] [198901] +11:53:00 [ 35] [ 32] [6213544001657367=491212015736957] +11:53:00 [ 37] [ 12] [507911205026] +11:53:00 [ 38] [ 6] [205026] +11:53:00 [ 39] [ 2] [51] +11:53:00 [ 41] [ 8] [01529001] +11:53:00 [ 49] [ 3] [418] +11:53:00 [ 54] [ 40] [1001418C0000341078951002418C000034107895] +11:53:00 ============================================================================ +11:53:00 Sending to : +11:53:00 ============================================================================ +11:53:00 + + +waiting on router queue for slot.... +11:53:00 ============================================================================ +11:53:00 Slot Id : <448> +11:53:00 Transaction Type : REQUEST +11:53:00 Received From : +11:53:00 ============================================================================ +11:53:00 FNo. Len. Field Value +11:53:00 ============================================================================ +11:53:00 [ 1] [ 4] [0200] +11:53:00 [ 2] [ 16] [6688990040128512] +11:53:00 [ 3] [ 6] [011000] +11:53:00 [ 4] [ 12] [000030000000] +11:53:00 [ 7] [ 10] [0320115255] +11:53:00 [ 11] [ 6] [736503] +11:53:00 [ 12] [ 6] [115255] +11:53:00 [ 13] [ 4] [0320] +11:53:00 [ 15] [ 4] [0320] +11:53:00 [ 18] [ 4] [6011] +11:53:00 [ 22] [ 3] [900] +11:53:00 [ 25] [ 2] [02] +11:53:00 [ 28] [ 9] [D00002000] +11:53:00 [ 32] [ 6] [621354] +11:53:00 [ 35] [ 37] [6688990040128512=98041261166829600000] +11:53:00 [ 37] [ 12] [507902682301] +11:53:00 [ 41] [ 8] [14000700] +11:53:00 [ 42] [ 15] [NATIVE ] +11:53:00 [ 43] [ 40] [CEMENT FACTORY Vangvieng LAO] +11:53:00 [ 49] [ 3] [418] +11:53:00 [ 52] [ 16] [8399A84F1F2C51B2] +11:53:00 ============================================================================ +11:53:00 + + +waiting on router queue for slot.... +11:53:00 Sending to : +11:53:00 ============================================================================ +11:53:00 ============================================================================ +11:53:00 Slot Id : <448> +11:53:00 Transaction Type : REQUEST +11:53:00 Received From : +11:53:00 ============================================================================ +11:53:00 FNo. Len. Field Value +11:53:00 ============================================================================ +11:53:00 [ 1] [ 4] [0200] +11:53:00 [ 2] [ 16] [6688990040128512] +11:53:00 [ 3] [ 6] [011000] +11:53:00 [ 4] [ 12] [000030000000] +11:53:00 [ 7] [ 10] [0320115255] +11:53:00 [ 11] [ 6] [736503] +11:53:00 [ 12] [ 6] [115255] +11:53:00 [ 13] [ 4] [0320] +11:53:00 [ 15] [ 4] [0320] +11:53:00 [ 18] [ 4] [6011] +11:53:00 [ 22] [ 3] [900] +11:53:00 [ 25] [ 2] [02] +11:53:00 [ 28] [ 9] [D00002000] +11:53:00 [ 32] [ 6] [621354] +11:53:00 [ 35] [ 37] [6688990040128512=98041261166829600000] +11:53:00 [ 37] [ 12] [507902682301] +11:53:00 [ 41] [ 8] [14000700] +11:53:00 [ 42] [ 15] [NATIVE ] +11:53:00 [ 43] [ 40] [CEMENT FACTORY Vangvieng LAO] +11:53:00 [ 49] [ 3] [418] +11:53:00 [ 52] [ 16] [F1B0DBB706456DA9] +11:53:00 ============================================================================ +11:53:00 + + +waiting on router queue for slot.... +11:53:00 Sending to : <4> +11:53:00 ============================================================================ +11:53:00 ============================================================================ +11:53:00 Slot Id : <448> +11:53:00 Transaction Type : RESPONSE +11:53:00 Received From : +11:53:00 ============================================================================ +11:53:00 FNo. Len. Field Value +11:53:00 ============================================================================ +11:53:00 [ 1] [ 4] [0210] +11:53:00 [ 2] [ 16] [6688990040128512] +11:53:00 [ 3] [ 6] [011000] +11:53:00 [ 4] [ 12] [000030000000] +11:53:00 [ 11] [ 6] [736503] +11:53:00 [ 12] [ 6] [115255] +11:53:00 [ 15] [ 4] [0320] +11:53:00 [ 18] [ 4] [6011] +11:53:00 [ 32] [ 6] [621354] +11:53:00 [ 35] [ 37] [6688990040128512=98041261166829600000] +11:53:00 [ 37] [ 12] [507902682301] +11:53:00 [ 39] [ 2] [51] +11:53:00 [ 41] [ 8] [14000700] +11:53:00 [ 49] [ 3] [418] +11:53:00 [ 54] [ 0] [] +11:53:00 ============================================================================ +11:53:00 Sending to : +11:53:00 ============================================================================ +11:53:00 + + +waiting on router queue for slot.... +11:53:01 ============================================================================ +11:53:01 Slot Id : <480> +11:53:01 Transaction Type : RESPONSE +11:53:01 Received From : +11:53:01 ============================================================================ +11:53:01 FNo. Len. Field Value +11:53:01 ============================================================================ +11:53:01 [ 1] [ 4] [0210] +11:53:01 [ 2] [ 16] [6213544001657367] +11:53:01 [ 3] [ 6] [011000] +11:53:01 [ 4] [ 12] [000030000000] +11:53:01 [ 7] [ 10] [0320115320] +11:53:01 [ 11] [ 6] [205026] +11:53:01 [ 12] [ 6] [114903] +11:53:01 [ 13] [ 4] [0320] +11:53:01 [ 15] [ 4] [0320] +11:53:01 [ 18] [ 4] [6011] +11:53:01 [ 19] [ 3] [418] +11:53:01 [ 32] [ 6] [198901] +11:53:01 [ 35] [ 32] [6213544001657367=491212015736957] +11:53:01 [ 37] [ 12] [507911205026] +11:53:01 [ 38] [ 6] [205026] +11:53:01 [ 39] [ 2] [51] +11:53:01 [ 41] [ 8] [01529001] +11:53:01 [ 49] [ 3] [418] +11:53:01 [ 54] [ 40] [1001418C0000341078951002418C000034107895] +11:53:01 ============================================================================ +11:53:01 Calculate Source COMM Id = 5 +11:53:01 ============================================================================ +11:53:01 + + +waiting on router queue for slot.... +11:53:02 ============================================================================ +11:53:02 Slot Id : <448> +11:53:02 Transaction Type : RESPONSE +11:53:02 Received From : +11:53:02 ============================================================================ +11:53:02 FNo. Len. Field Value +11:53:02 ============================================================================ +11:53:02 [ 1] [ 4] [0210] +11:53:02 [ 2] [ 16] [6688990040128512] +11:53:02 [ 3] [ 6] [011000] +11:53:02 [ 4] [ 12] [000030000000] +11:53:02 [ 11] [ 6] [736503] +11:53:02 [ 12] [ 6] [115255] +11:53:02 [ 15] [ 4] [0320] +11:53:02 [ 18] [ 4] [6011] +11:53:02 [ 32] [ 6] [621354] +11:53:02 [ 35] [ 37] [6688990040128512=98041261166829600000] +11:53:02 [ 37] [ 12] [507902682301] +11:53:02 [ 39] [ 2] [51] +11:53:02 [ 41] [ 8] [14000700] +11:53:02 [ 49] [ 3] [418] +11:53:02 [ 54] [ 0] [] +11:53:02 ============================================================================ +11:53:02 Calculate Source COMM Id = 0 +11:53:02 ============================================================================ +11:53:02 + + +waiting on router queue for slot.... +11:53:14 ============================================================================ +11:53:14 Slot Id : <471> +11:53:14 Transaction Type : REQUEST +11:53:14 Received From : +11:53:14 ============================================================================ +11:53:14 FNo. Len. Field Value +11:53:14 ============================================================================ +11:53:14 [ 1] [ 4] [0800] +11:53:14 [ 7] [ 10] [0320045222] +11:53:14 [ 11] [ 6] [156176] +11:53:14 [ 70] [ 3] [301] +11:53:14 ============================================================================ +11:53:14 + + +waiting on router queue for slot.... +11:53:14 Sending to : +11:53:14 ============================================================================ +11:53:14 ============================================================================ +11:53:14 Slot Id : <471> +11:53:14 Transaction Type : RESPONSE +11:53:14 Received From : +11:53:14 ============================================================================ +11:53:14 FNo. Len. Field Value +11:53:14 ============================================================================ +11:53:14 [ 1] [ 4] [0810] +11:53:14 [ 7] [ 10] [0320045222] +11:53:14 [ 11] [ 6] [156176] +11:53:14 [ 39] [ 2] [00] +11:53:14 [ 70] [ 3] [301] +11:53:14 ============================================================================ +11:53:14 Calculate Source COMM Id = 2 +11:53:14 ============================================================================ +11:53:14 + + +waiting on router queue for slot.... +11:53:25 ============================================================================ +11:53:25 Slot Id : <479> +11:53:25 Transaction Type : REQUEST +11:53:25 Received From : +11:53:25 ============================================================================ +11:53:25 FNo. Len. Field Value +11:53:25 ============================================================================ +11:53:25 [ 1] [ 4] [0800] +11:53:25 [ 7] [ 10] [0320045233] +11:53:25 [ 11] [ 6] [156177] +11:53:25 [ 70] [ 3] [301] +11:53:25 ============================================================================ +11:53:25 + + +waiting on router queue for slot.... +11:53:25 Sending to : +11:53:25 ============================================================================ +11:53:25 ============================================================================ +11:53:25 Slot Id : <479> +11:53:25 Transaction Type : RESPONSE +11:53:25 Received From : +11:53:25 ============================================================================ +11:53:25 FNo. Len. Field Value +11:53:25 ============================================================================ +11:53:25 [ 1] [ 4] [0810] +11:53:25 [ 7] [ 10] [0320045233] +11:53:25 [ 11] [ 6] [156177] +11:53:25 [ 39] [ 2] [00] +11:53:25 [ 70] [ 3] [301] +11:53:25 ============================================================================ +11:53:25 Calculate Source COMM Id = 2 +11:53:25 ============================================================================ +11:53:25 + + +waiting on router queue for slot.... +11:53:26 ============================================================================ +11:53:26 Slot Id : <0> +11:53:26 Transaction Type : REQUEST +11:53:26 Received From : +11:53:26 ============================================================================ +11:53:26 FNo. Len. Field Value +11:53:26 ============================================================================ +11:53:26 [ 1] [ 4] [0200] +11:53:26 [ 2] [ 16] [6213545000754220] +11:53:26 [ 3] [ 6] [010000] +11:53:26 [ 4] [ 12] [000100000000] +11:53:26 [ 7] [ 10] [0320115117] +11:53:26 [ 11] [ 6] [942615] +11:53:26 [ 12] [ 6] [115117] +11:53:26 [ 13] [ 4] [0320] +11:53:26 [ 15] [ 4] [0320] +11:53:26 [ 18] [ 4] [6011] +11:53:26 [ 19] [ 3] [418] +11:53:26 [ 22] [ 3] [021] +11:53:26 [ 25] [ 2] [01] +11:53:26 [ 28] [ 9] [D00002000] +11:53:26 [ 32] [ 6] [668899] +11:53:26 [ 35] [ 32] [6213545000754220=491212015422235] +11:53:26 [ 37] [ 12] [507901422776] +11:53:26 [ 41] [ 8] [03314001] +11:53:26 [ 42] [ 15] [APT ] +11:53:26 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:53:26 [ 49] [ 3] [418] +11:53:26 [ 52] [ 16] [575BB4B74DEB053F] +11:53:26 ============================================================================ +11:53:26 + + +waiting on router queue for slot.... +11:53:26 Sending to : +11:53:26 ============================================================================ +11:53:26 Sending to : +11:53:26 ============================================================================ +11:53:26 ============================================================================ +11:53:26 Slot Id : <0> +11:53:26 Transaction Type : REQUEST +11:53:26 Received From : +11:53:26 ============================================================================ +11:53:26 FNo. Len. Field Value +11:53:26 ============================================================================ +11:53:26 [ 1] [ 4] [0200] +11:53:26 [ 2] [ 16] [6213545000754220] +11:53:26 [ 3] [ 6] [010000] +11:53:26 [ 4] [ 12] [000100000000] +11:53:26 [ 7] [ 10] [0320115117] +11:53:26 [ 11] [ 6] [942615] +11:53:26 [ 12] [ 6] [115117] +11:53:26 [ 13] [ 4] [0320] +11:53:26 [ 15] [ 4] [0320] +11:53:26 [ 18] [ 4] [6011] +11:53:26 [ 19] [ 3] [418] +11:53:26 [ 22] [ 3] [021] +11:53:26 [ 25] [ 2] [01] +11:53:26 [ 28] [ 9] [D00002000] +11:53:26 [ 32] [ 6] [668899] +11:53:26 [ 35] [ 32] [6213545000754220=491212015422235] +11:53:26 [ 37] [ 12] [507901422776] +11:53:26 [ 41] [ 8] [03314001] +11:53:26 [ 42] [ 15] [APT ] +11:53:26 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:53:26 [ 49] [ 3] [418] +11:53:26 [ 52] [ 16] [575BB4B74DEB053F] +11:53:26 ============================================================================ +11:53:26 + + +waiting on router queue for slot.... +11:53:26 Sending to : +11:53:26 ============================================================================ +11:53:26 ============================================================================ +11:53:26 Slot Id : <0> +11:53:26 Transaction Type : REQUEST +11:53:26 Received From : +11:53:26 ============================================================================ +11:53:26 FNo. Len. Field Value +11:53:26 ============================================================================ +11:53:26 [ 1] [ 4] [0200] +11:53:26 [ 2] [ 16] [6213545000754220] +11:53:26 [ 3] [ 6] [010000] +11:53:26 [ 4] [ 12] [000100000000] +11:53:26 [ 7] [ 10] [0320115117] +11:53:26 [ 11] [ 6] [942615] +11:53:26 [ 12] [ 6] [115117] +11:53:26 [ 13] [ 4] [0320] +11:53:26 [ 15] [ 4] [0320] +11:53:26 [ 18] [ 4] [6011] +11:53:26 [ 19] [ 3] [418] +11:53:26 [ 22] [ 3] [021] +11:53:26 [ 25] [ 2] [01] +11:53:26 [ 28] [ 9] [D00002000] +11:53:26 [ 32] [ 6] [668899] +11:53:26 [ 35] [ 32] [6213545000754220=491212015422235] +11:53:26 [ 37] [ 12] [507901422776] +11:53:26 [ 41] [ 8] [03314001] +11:53:26 [ 42] [ 15] [APT ] +11:53:26 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:53:26 [ 49] [ 3] [418] +11:53:26 [ 52] [ 16] [6D6789CDC7EB7E96] +11:53:26 ============================================================================ +11:53:26 + + +waiting on router queue for slot.... +11:53:26 Sending to : <0> +11:53:26 ============================================================================ +11:53:27 ============================================================================ +11:53:27 Slot Id : <0> +11:53:27 Transaction Type : RESPONSE +11:53:27 Received From : +11:53:27 ============================================================================ +11:53:27 FNo. Len. Field Value +11:53:27 ============================================================================ +11:53:27 [ 1] [ 4] [0210] +11:53:27 [ 2] [ 16] [6213545000754220] +11:53:27 [ 3] [ 6] [010000] +11:53:27 [ 4] [ 12] [000100000000] +11:53:27 [ 7] [ 10] [0320115117] +11:53:27 [ 11] [ 6] [942615] +11:53:27 [ 12] [ 6] [115117] +11:53:27 [ 13] [ 4] [0320] +11:53:27 [ 15] [ 4] [0320] +11:53:27 [ 18] [ 4] [6011] +11:53:27 [ 19] [ 3] [418] +11:53:27 [ 32] [ 6] [668899] +11:53:27 [ 35] [ 32] [6213545000754220=491212015422235] +11:53:27 [ 37] [ 12] [507901422776] +11:53:27 [ 38] [ 6] [440389] +11:53:27 [ 39] [ 2] [00] +11:53:27 [ 41] [ 8] [03314001] +11:53:27 [ 49] [ 3] [418] +11:53:27 [ 54] [ 40] [0001418C0019507769710002418C001950776971] +11:53:27 ============================================================================ +11:53:27 Sending to : +11:53:27 ============================================================================ +11:53:27 + + +waiting on router queue for slot.... +11:53:28 ============================================================================ +11:53:28 Slot Id : <0> +11:53:28 Transaction Type : RESPONSE +11:53:28 Received From : +11:53:28 ============================================================================ +11:53:28 FNo. Len. Field Value +11:53:28 ============================================================================ +11:53:28 [ 1] [ 4] [0210] +11:53:28 [ 2] [ 16] [6213545000754220] +11:53:28 [ 3] [ 6] [010000] +11:53:28 [ 4] [ 12] [000100000000] +11:53:28 [ 7] [ 10] [0320115117] +11:53:28 [ 11] [ 6] [942615] +11:53:28 [ 12] [ 6] [115117] +11:53:28 [ 13] [ 4] [0320] +11:53:28 [ 15] [ 4] [0320] +11:53:28 [ 18] [ 4] [6011] +11:53:28 [ 19] [ 3] [418] +11:53:28 [ 32] [ 6] [668899] +11:53:28 [ 35] [ 32] [6213545000754220=491212015422235] +11:53:28 [ 37] [ 12] [507901422776] +11:53:28 [ 38] [ 6] [440389] +11:53:28 [ 39] [ 2] [00] +11:53:28 [ 41] [ 8] [03314001] +11:53:28 [ 49] [ 3] [418] +11:53:28 [ 54] [ 40] [0001418C0019507769710002418C001950776971] +11:53:28 ============================================================================ +11:53:28 Calculate Source COMM Id = 4 +11:53:28 ============================================================================ +11:53:28 + + +waiting on router queue for slot.... +11:53:37 ============================================================================ +11:53:37 Slot Id : <1> +11:53:37 Transaction Type : REQUEST +11:53:37 Received From : +11:53:37 ============================================================================ +11:53:37 FNo. Len. Field Value +11:53:37 ============================================================================ +11:53:37 [ 1] [ 4] [0200] +11:53:37 [ 2] [ 16] [6213546000008930] +11:53:37 [ 3] [ 6] [010000] +11:53:37 [ 4] [ 12] [000010000000] +11:53:37 [ 7] [ 10] [0320045243] +11:53:37 [ 11] [ 6] [268789] +11:53:37 [ 12] [ 6] [115243] +11:53:37 [ 13] [ 4] [0320] +11:53:37 [ 14] [ 4] [4912] +11:53:37 [ 15] [ 4] [0320] +11:53:37 [ 18] [ 4] [6011] +11:53:37 [ 19] [ 3] [418] +11:53:37 [ 22] [ 3] [021] +11:53:37 [ 25] [ 2] [01] +11:53:37 [ 28] [ 9] [D00002000] +11:53:37 [ 32] [ 6] [180893] +11:53:37 [ 35] [ 32] [6213546000008930=491212010893350] +11:53:37 [ 37] [ 12] [507904268789] +11:53:37 [ 41] [ 8] [0482XKMO] +11:53:37 [ 42] [ 15] [999999 ] +11:53:37 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +11:53:37 [ 49] [ 3] [418] +11:53:37 [ 52] [ 16] [AB24D8073401F68A] +11:53:37 ============================================================================ +11:53:37 + + +waiting on router queue for slot.... +11:53:37 Sending to : +11:53:37 ============================================================================ +11:53:37 Sending to : +11:53:37 ============================================================================ +11:53:38 ============================================================================ +11:53:38 Slot Id : <1> +11:53:38 Transaction Type : REQUEST +11:53:38 Received From : +11:53:38 ============================================================================ +11:53:38 FNo. Len. Field Value +11:53:38 ============================================================================ +11:53:38 [ 1] [ 4] [0200] +11:53:38 [ 2] [ 16] [6213546000008930] +11:53:38 [ 3] [ 6] [010000] +11:53:38 [ 4] [ 12] [000010000000] +11:53:38 [ 7] [ 10] [0320045243] +11:53:38 [ 11] [ 6] [268789] +11:53:38 [ 12] [ 6] [115243] +11:53:38 [ 13] [ 4] [0320] +11:53:38 [ 14] [ 4] [4912] +11:53:38 [ 15] [ 4] [0320] +11:53:38 [ 18] [ 4] [6011] +11:53:38 [ 19] [ 3] [418] +11:53:38 [ 22] [ 3] [021] +11:53:38 [ 25] [ 2] [01] +11:53:38 [ 28] [ 9] [D00002000] +11:53:38 [ 32] [ 6] [180893] +11:53:38 [ 35] [ 32] [6213546000008930=491212010893350] +11:53:38 [ 37] [ 12] [507904268789] +11:53:38 [ 41] [ 8] [0482XKMO] +11:53:38 [ 42] [ 15] [999999 ] +11:53:38 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +11:53:38 [ 49] [ 3] [418] +11:53:38 [ 52] [ 16] [AB24D8073401F68A] +11:53:38 ============================================================================ +11:53:38 + + +waiting on router queue for slot.... +11:53:38 Sending to : +11:53:38 ============================================================================ +11:53:38 ============================================================================ +11:53:38 Slot Id : <1> +11:53:38 Transaction Type : REQUEST +11:53:38 Received From : +11:53:38 ============================================================================ +11:53:38 FNo. Len. Field Value +11:53:38 ============================================================================ +11:53:38 [ 1] [ 4] [0200] +11:53:38 [ 2] [ 16] [6213546000008930] +11:53:38 [ 3] [ 6] [010000] +11:53:38 [ 4] [ 12] [000010000000] +11:53:38 [ 7] [ 10] [0320045243] +11:53:38 [ 11] [ 6] [268789] +11:53:38 [ 12] [ 6] [115243] +11:53:38 [ 13] [ 4] [0320] +11:53:38 [ 14] [ 4] [4912] +11:53:38 [ 15] [ 4] [0320] +11:53:38 [ 18] [ 4] [6011] +11:53:38 [ 19] [ 3] [418] +11:53:38 [ 22] [ 3] [021] +11:53:38 [ 25] [ 2] [01] +11:53:38 [ 28] [ 9] [D00002000] +11:53:38 [ 32] [ 6] [180893] +11:53:38 [ 35] [ 32] [6213546000008930=491212010893350] +11:53:38 [ 37] [ 12] [507904268789] +11:53:38 [ 41] [ 8] [0482XKMO] +11:53:38 [ 42] [ 15] [999999 ] +11:53:38 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +11:53:38 [ 49] [ 3] [418] +11:53:38 [ 52] [ 16] [790E595376BBC02E] +11:53:38 ============================================================================ +11:53:38 + + +waiting on router queue for slot.... +11:53:38 Sending to : <0> +11:53:38 ============================================================================ +11:53:38 ============================================================================ +11:53:38 Slot Id : <2> +11:53:38 Transaction Type : REQUEST +11:53:38 Received From : +11:53:38 ============================================================================ +11:53:38 FNo. Len. Field Value +11:53:38 ============================================================================ +11:53:38 [ 1] [ 4] [0800] +11:53:38 [ 2] [ 5] [02531] +11:53:38 [ 3] [ 6] [579118] +11:53:38 [ 7] [ 10] [0320045338] +11:53:38 [ 11] [ 6] [807102] +11:53:38 [ 15] [ 10] [0320045338] +11:53:38 [ 37] [ 11] [57911807102] +11:53:38 [ 70] [ 3] [001] +11:53:38 ============================================================================ +11:53:38 + + +waiting on router queue for slot.... +11:53:38 ============================================================================ +11:53:38 Slot Id : <2> +11:53:38 Transaction Type : RESPONSE +11:53:38 Received From : +11:53:38 ============================================================================ +11:53:38 FNo. Len. Field Value +11:53:38 ============================================================================ +11:53:38 [ 1] [ 4] [0810] +11:53:38 [ 7] [ 10] [0320045338] +11:53:38 [ 11] [ 6] [807102] +11:53:38 [ 15] [ 4] [0320] +11:53:38 [ 37] [ 12] [57911807102] +11:53:38 [ 39] [ 2] [00] +11:53:38 [ 70] [ 3] [001] +11:53:38 ============================================================================ +11:53:38 Sending to : +11:53:38 ============================================================================ +11:53:38 + + +waiting on router queue for slot.... +11:53:38 ============================================================================ +11:53:38 Slot Id : <1> +11:53:38 Transaction Type : RESPONSE +11:53:38 Received From : +11:53:38 ============================================================================ +11:53:38 FNo. Len. Field Value +11:53:38 ============================================================================ +11:53:38 [ 1] [ 4] [0210] +11:53:38 [ 2] [ 16] [6213546000008930] +11:53:38 [ 3] [ 6] [010000] +11:53:38 [ 4] [ 12] [000010000000] +11:53:38 [ 7] [ 10] [0320045243] +11:53:38 [ 11] [ 6] [268789] +11:53:38 [ 12] [ 6] [115243] +11:53:38 [ 13] [ 4] [0320] +11:53:38 [ 15] [ 4] [0320] +11:53:38 [ 18] [ 4] [6011] +11:53:38 [ 19] [ 3] [418] +11:53:38 [ 32] [ 6] [180893] +11:53:38 [ 35] [ 32] [6213546000008930=491212010893350] +11:53:38 [ 37] [ 12] [507904268789] +11:53:38 [ 38] [ 6] [791604] +11:53:38 [ 39] [ 2] [00] +11:53:38 [ 41] [ 8] [0482XKMO] +11:53:38 [ 49] [ 3] [418] +11:53:38 [ 54] [ 40] [0001418C0008675766040002418C000867576604] +11:53:38 ============================================================================ +11:53:38 Sending to : +11:53:38 ============================================================================ +11:53:38 + + +waiting on router queue for slot.... +11:53:39 ============================================================================ +11:53:39 Slot Id : <1> +11:53:39 Transaction Type : RESPONSE +11:53:39 Received From : +11:53:39 ============================================================================ +11:53:39 FNo. Len. Field Value +11:53:39 ============================================================================ +11:53:39 [ 1] [ 4] [0210] +11:53:39 [ 2] [ 16] [6213546000008930] +11:53:39 [ 3] [ 6] [010000] +11:53:39 [ 4] [ 12] [000010000000] +11:53:39 [ 7] [ 10] [0320045243] +11:53:39 [ 11] [ 6] [268789] +11:53:39 [ 12] [ 6] [115243] +11:53:39 [ 13] [ 4] [0320] +11:53:39 [ 15] [ 4] [0320] +11:53:39 [ 18] [ 4] [6011] +11:53:39 [ 19] [ 3] [418] +11:53:39 [ 32] [ 6] [180893] +11:53:39 [ 35] [ 32] [6213546000008930=491212010893350] +11:53:39 [ 37] [ 12] [507904268789] +11:53:39 [ 38] [ 6] [791604] +11:53:39 [ 39] [ 2] [00] +11:53:39 [ 41] [ 8] [0482XKMO] +11:53:39 [ 49] [ 3] [418] +11:53:39 [ 54] [ 40] [0001418C0008675766040002418C000867576604] +11:53:39 ============================================================================ +11:53:39 Calculate Source COMM Id = 2 +11:53:39 ============================================================================ +11:53:39 + + +waiting on router queue for slot.... +11:53:41 ============================================================================ +11:53:41 Slot Id : <493> +11:53:41 Transaction Type : REQUEST +11:53:41 Received From : +11:53:41 ============================================================================ +11:53:41 FNo. Len. Field Value +11:53:41 ============================================================================ +11:53:41 [ 1] [ 4] [0800] +11:53:41 [ 7] [ 10] [0320045248] +11:53:41 [ 11] [ 6] [156178] +11:53:41 [ 70] [ 3] [301] +11:53:41 ============================================================================ +11:53:41 + + +waiting on router queue for slot.... +11:53:41 Sending to : +11:53:41 ============================================================================ +11:53:41 ============================================================================ +11:53:41 Slot Id : <493> +11:53:41 Transaction Type : RESPONSE +11:53:41 Received From : +11:53:41 ============================================================================ +11:53:41 FNo. Len. Field Value +11:53:41 ============================================================================ +11:53:41 [ 1] [ 4] [0810] +11:53:41 [ 7] [ 10] [0320045248] +11:53:41 [ 11] [ 6] [156178] +11:53:41 [ 39] [ 2] [00] +11:53:41 [ 70] [ 3] [301] +11:53:41 ============================================================================ +11:53:41 Calculate Source COMM Id = 2 +11:53:41 ============================================================================ +11:53:41 + + +waiting on router queue for slot.... +11:53:44 ============================================================================ +11:53:44 Slot Id : <498> +11:53:44 Transaction Type : REQUEST +11:53:44 Received From : +11:53:44 ============================================================================ +11:53:44 FNo. Len. Field Value +11:53:44 ============================================================================ +11:53:44 [ 1] [ 4] [0200] +11:53:44 [ 2] [ 16] [6213545000654396] +11:53:44 [ 3] [ 6] [302000] +11:53:44 [ 7] [ 10] [0320045251] +11:53:44 [ 11] [ 6] [268791] +11:53:44 [ 12] [ 6] [115251] +11:53:44 [ 13] [ 4] [0320] +11:53:44 [ 14] [ 4] [4912] +11:53:44 [ 15] [ 4] [0320] +11:53:44 [ 18] [ 4] [6011] +11:53:44 [ 19] [ 3] [418] +11:53:44 [ 22] [ 3] [021] +11:53:44 [ 25] [ 2] [01] +11:53:44 [ 32] [ 6] [180893] +11:53:44 [ 35] [ 32] [6213545000654396=491212015439966] +11:53:44 [ 37] [ 12] [507904268791] +11:53:44 [ 41] [ 8] [0441VT52] +11:53:44 [ 42] [ 15] [999999 ] +11:53:44 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:53:44 [ 49] [ 3] [418] +11:53:44 [ 52] [ 16] [6FF04ACE4DC0DDC7] +11:53:44 ============================================================================ +11:53:44 + + +waiting on router queue for slot.... +11:53:44 Sending to : +11:53:44 ============================================================================ +11:53:44 Sending to : +11:53:44 ============================================================================ +11:53:44 ============================================================================ +11:53:44 Slot Id : <498> +11:53:44 Transaction Type : REQUEST +11:53:44 Received From : +11:53:44 ============================================================================ +11:53:44 FNo. Len. Field Value +11:53:44 ============================================================================ +11:53:44 [ 1] [ 4] [0200] +11:53:44 [ 2] [ 16] [6213545000654396] +11:53:44 [ 3] [ 6] [302000] +11:53:44 [ 7] [ 10] [0320045251] +11:53:44 [ 11] [ 6] [268791] +11:53:44 [ 12] [ 6] [115251] +11:53:44 [ 13] [ 4] [0320] +11:53:44 [ 14] [ 4] [4912] +11:53:44 [ 15] [ 4] [0320] +11:53:44 [ 18] [ 4] [6011] +11:53:44 [ 19] [ 3] [418] +11:53:44 [ 22] [ 3] [021] +11:53:44 [ 25] [ 2] [01] +11:53:44 [ 32] [ 6] [180893] +11:53:44 [ 35] [ 32] [6213545000654396=491212015439966] +11:53:44 [ 37] [ 12] [507904268791] +11:53:44 [ 41] [ 8] [0441VT52] +11:53:44 [ 42] [ 15] [999999 ] +11:53:44 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:53:44 [ 49] [ 3] [418] +11:53:44 [ 52] [ 16] [6FF04ACE4DC0DDC7] +11:53:44 ============================================================================ +11:53:44 + + +waiting on router queue for slot.... +11:53:44 Sending to : +11:53:44 ============================================================================ +11:53:44 ============================================================================ +11:53:44 Slot Id : <498> +11:53:44 Transaction Type : REQUEST +11:53:44 Received From : +11:53:44 ============================================================================ +11:53:44 FNo. Len. Field Value +11:53:44 ============================================================================ +11:53:44 [ 1] [ 4] [0200] +11:53:44 [ 2] [ 16] [6213545000654396] +11:53:44 [ 3] [ 6] [302000] +11:53:44 [ 7] [ 10] [0320045251] +11:53:44 [ 11] [ 6] [268791] +11:53:44 [ 12] [ 6] [115251] +11:53:44 [ 13] [ 4] [0320] +11:53:44 [ 14] [ 4] [4912] +11:53:44 [ 15] [ 4] [0320] +11:53:44 [ 18] [ 4] [6011] +11:53:44 [ 19] [ 3] [418] +11:53:44 [ 22] [ 3] [021] +11:53:44 [ 25] [ 2] [01] +11:53:44 [ 32] [ 6] [180893] +11:53:44 [ 35] [ 32] [6213545000654396=491212015439966] +11:53:44 [ 37] [ 12] [507904268791] +11:53:44 [ 41] [ 8] [0441VT52] +11:53:44 [ 42] [ 15] [999999 ] +11:53:44 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:53:44 [ 49] [ 3] [418] +11:53:44 [ 52] [ 16] [3F05FFA2A2394CAC] +11:53:44 ============================================================================ +11:53:44 + + +waiting on router queue for slot.... +11:53:44 Sending to : <0> +11:53:44 ============================================================================ +11:53:44 ============================================================================ +11:53:44 Slot Id : <498> +11:53:44 Transaction Type : RESPONSE +11:53:44 Received From : +11:53:44 ============================================================================ +11:53:44 FNo. Len. Field Value +11:53:44 ============================================================================ +11:53:44 [ 1] [ 4] [0210] +11:53:44 [ 2] [ 16] [6213545000654396] +11:53:44 [ 3] [ 6] [302000] +11:53:44 [ 4] [ 12] [000000000000] +11:53:44 [ 7] [ 10] [0320045251] +11:53:44 [ 11] [ 6] [268791] +11:53:44 [ 12] [ 6] [115251] +11:53:44 [ 13] [ 4] [0320] +11:53:44 [ 15] [ 4] [0320] +11:53:44 [ 18] [ 4] [6011] +11:53:44 [ 19] [ 3] [418] +11:53:44 [ 32] [ 6] [180893] +11:53:44 [ 35] [ 32] [6213545000654396=491212015439966] +11:53:44 [ 37] [ 12] [507904268791] +11:53:44 [ 38] [ 6] [279508] +11:53:44 [ 39] [ 2] [00] +11:53:44 [ 41] [ 8] [0441VT52] +11:53:44 [ 49] [ 3] [418] +11:53:44 [ 54] [ 40] [2001418C0000260613762002418C000026061376] +11:53:44 ============================================================================ +11:53:44 Sending to : +11:53:44 ============================================================================ +11:53:44 + + +waiting on router queue for slot.... +11:53:46 ============================================================================ +11:53:46 Slot Id : <498> +11:53:46 Transaction Type : RESPONSE +11:53:46 Received From : +11:53:46 ============================================================================ +11:53:46 FNo. Len. Field Value +11:53:46 ============================================================================ +11:53:46 [ 1] [ 4] [0210] +11:53:46 [ 2] [ 16] [6213545000654396] +11:53:46 [ 3] [ 6] [302000] +11:53:46 [ 4] [ 12] [000000000000] +11:53:46 [ 7] [ 10] [0320045251] +11:53:46 [ 11] [ 6] [268791] +11:53:46 [ 12] [ 6] [115251] +11:53:46 [ 13] [ 4] [0320] +11:53:46 [ 15] [ 4] [0320] +11:53:46 [ 18] [ 4] [6011] +11:53:46 [ 19] [ 3] [418] +11:53:46 [ 32] [ 6] [180893] +11:53:46 [ 35] [ 32] [6213545000654396=491212015439966] +11:53:46 [ 37] [ 12] [507904268791] +11:53:46 [ 38] [ 6] [279508] +11:53:46 [ 39] [ 2] [00] +11:53:46 [ 41] [ 8] [0441VT52] +11:53:46 [ 49] [ 3] [418] +11:53:46 [ 54] [ 40] [2001418C0000260613762002418C000026061376] +11:53:46 ============================================================================ +11:53:46 Calculate Source COMM Id = 2 +11:53:46 ============================================================================ +11:53:46 + + +waiting on router queue for slot.... +11:53:49 ============================================================================ +11:53:49 Slot Id : <473> +11:53:49 Transaction Type : REQUEST +11:53:49 Received From : +11:53:49 ============================================================================ +11:53:49 FNo. Len. Field Value +11:53:49 ============================================================================ +11:53:49 [ 1] [ 4] [0200] +11:53:49 [ 2] [ 16] [6213544002216395] +11:53:49 [ 3] [ 6] [301000] +11:53:49 [ 4] [ 12] [000000000000] +11:53:49 [ 7] [ 10] [0320115139] +11:53:49 [ 11] [ 6] [942636] +11:53:49 [ 12] [ 6] [115139] +11:53:49 [ 13] [ 4] [0320] +11:53:49 [ 15] [ 4] [0320] +11:53:49 [ 18] [ 4] [6011] +11:53:49 [ 19] [ 3] [418] +11:53:49 [ 22] [ 3] [021] +11:53:49 [ 25] [ 2] [01] +11:53:49 [ 28] [ 9] [D00000000] +11:53:49 [ 32] [ 6] [668899] +11:53:49 [ 35] [ 32] [6213544002216395=491212011639606] +11:53:49 [ 37] [ 12] [507902435627] +11:53:49 [ 41] [ 8] [03020031] +11:53:49 [ 42] [ 15] [APT ] +11:53:49 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:53:49 [ 49] [ 3] [418] +11:53:49 [ 52] [ 16] [A902BE36CA94FB68] +11:53:49 ============================================================================ +11:53:49 + + +waiting on router queue for slot.... +11:53:49 Sending to : +11:53:49 ============================================================================ +11:53:49 Sending to : +11:53:49 ============================================================================ +11:53:49 ============================================================================ +11:53:49 Slot Id : <473> +11:53:49 Transaction Type : REQUEST +11:53:49 Received From : +11:53:49 ============================================================================ +11:53:49 FNo. Len. Field Value +11:53:49 ============================================================================ +11:53:49 [ 1] [ 4] [0200] +11:53:49 [ 2] [ 16] [6213544002216395] +11:53:49 [ 3] [ 6] [301000] +11:53:49 [ 4] [ 12] [000000000000] +11:53:49 [ 7] [ 10] [0320115139] +11:53:49 [ 11] [ 6] [942636] +11:53:49 [ 12] [ 6] [115139] +11:53:49 [ 13] [ 4] [0320] +11:53:49 [ 15] [ 4] [0320] +11:53:49 [ 18] [ 4] [6011] +11:53:49 [ 19] [ 3] [418] +11:53:49 [ 22] [ 3] [021] +11:53:49 [ 25] [ 2] [01] +11:53:49 [ 28] [ 9] [D00000000] +11:53:49 [ 32] [ 6] [668899] +11:53:49 [ 35] [ 32] [6213544002216395=491212011639606] +11:53:49 [ 37] [ 12] [507902435627] +11:53:49 [ 41] [ 8] [03020031] +11:53:49 [ 42] [ 15] [APT ] +11:53:49 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:53:49 [ 49] [ 3] [418] +11:53:49 [ 52] [ 16] [A902BE36CA94FB68] +11:53:49 ============================================================================ +11:53:49 + + +waiting on router queue for slot.... +11:53:49 Sending to : +11:53:49 ============================================================================ +11:53:49 ============================================================================ +11:53:49 Slot Id : <473> +11:53:49 Transaction Type : REQUEST +11:53:49 Received From : +11:53:49 ============================================================================ +11:53:49 FNo. Len. Field Value +11:53:49 ============================================================================ +11:53:49 [ 1] [ 4] [0200] +11:53:49 [ 2] [ 16] [6213544002216395] +11:53:49 [ 3] [ 6] [301000] +11:53:49 [ 4] [ 12] [000000000000] +11:53:49 [ 7] [ 10] [0320115139] +11:53:49 [ 11] [ 6] [942636] +11:53:49 [ 12] [ 6] [115139] +11:53:49 [ 13] [ 4] [0320] +11:53:49 [ 15] [ 4] [0320] +11:53:49 [ 18] [ 4] [6011] +11:53:49 [ 19] [ 3] [418] +11:53:49 [ 22] [ 3] [021] +11:53:49 [ 25] [ 2] [01] +11:53:49 [ 28] [ 9] [D00000000] +11:53:49 [ 32] [ 6] [668899] +11:53:49 [ 35] [ 32] [6213544002216395=491212011639606] +11:53:49 [ 37] [ 12] [507902435627] +11:53:49 [ 41] [ 8] [03020031] +11:53:49 [ 42] [ 15] [APT ] +11:53:49 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:53:49 [ 49] [ 3] [418] +11:53:49 [ 52] [ 16] [3C8731089A02C3A4] +11:53:49 ============================================================================ +11:53:49 + + +waiting on router queue for slot.... +11:53:49 Sending to : <0> +11:53:49 ============================================================================ +11:53:49 ============================================================================ +11:53:49 Slot Id : <473> +11:53:49 Transaction Type : RESPONSE +11:53:49 Received From : +11:53:49 ============================================================================ +11:53:49 FNo. Len. Field Value +11:53:49 ============================================================================ +11:53:49 [ 1] [ 4] [0210] +11:53:49 [ 2] [ 16] [6213544002216395] +11:53:49 [ 3] [ 6] [301000] +11:53:49 [ 4] [ 12] [000000000000] +11:53:49 [ 7] [ 10] [0320115139] +11:53:49 [ 11] [ 6] [942636] +11:53:49 [ 12] [ 6] [115139] +11:53:49 [ 13] [ 4] [0320] +11:53:49 [ 15] [ 4] [0320] +11:53:49 [ 18] [ 4] [6011] +11:53:49 [ 19] [ 3] [418] +11:53:49 [ 32] [ 6] [668899] +11:53:49 [ 35] [ 32] [6213544002216395=491212011639606] +11:53:49 [ 37] [ 12] [507902435627] +11:53:49 [ 38] [ 6] [142827] +11:53:49 [ 39] [ 2] [00] +11:53:49 [ 41] [ 8] [03020031] +11:53:49 [ 49] [ 3] [418] +11:53:49 [ 54] [ 40] [1001418C0007088000001002418C000708800000] +11:53:49 ============================================================================ +11:53:49 Sending to : +11:53:49 ============================================================================ +11:53:49 + + +waiting on router queue for slot.... +11:53:50 ============================================================================ +11:53:50 Slot Id : <473> +11:53:50 Transaction Type : RESPONSE +11:53:50 Received From : +11:53:50 ============================================================================ +11:53:50 FNo. Len. Field Value +11:53:50 ============================================================================ +11:53:50 [ 1] [ 4] [0210] +11:53:50 [ 2] [ 16] [6213544002216395] +11:53:50 [ 3] [ 6] [301000] +11:53:50 [ 4] [ 12] [000000000000] +11:53:50 [ 7] [ 10] [0320115139] +11:53:50 [ 11] [ 6] [942636] +11:53:50 [ 12] [ 6] [115139] +11:53:50 [ 13] [ 4] [0320] +11:53:50 [ 15] [ 4] [0320] +11:53:50 [ 18] [ 4] [6011] +11:53:50 [ 19] [ 3] [418] +11:53:50 [ 32] [ 6] [668899] +11:53:50 [ 35] [ 32] [6213544002216395=491212011639606] +11:53:50 [ 37] [ 12] [507902435627] +11:53:50 [ 38] [ 6] [142827] +11:53:50 [ 39] [ 2] [00] +11:53:50 [ 41] [ 8] [03020031] +11:53:50 [ 49] [ 3] [418] +11:53:50 [ 54] [ 40] [1001418C0007088000001002418C000708800000] +11:53:50 ============================================================================ +11:53:50 Calculate Source COMM Id = 4 +11:53:50 ============================================================================ +11:53:50 + + +waiting on router queue for slot.... +11:53:57 ============================================================================ +11:53:57 Slot Id : <4> +11:53:57 Transaction Type : REQUEST +11:53:57 Received From : +11:53:57 ============================================================================ +11:53:57 FNo. Len. Field Value +11:53:57 ============================================================================ +11:53:57 [ 1] [ 4] [0800] +11:53:57 [ 7] [ 10] [0320045304] +11:53:57 [ 11] [ 6] [156179] +11:53:57 [ 70] [ 3] [301] +11:53:57 ============================================================================ +11:53:57 + + +waiting on router queue for slot.... +11:53:57 Sending to : +11:53:57 ============================================================================ +11:53:57 ============================================================================ +11:53:57 Slot Id : <4> +11:53:57 Transaction Type : RESPONSE +11:53:57 Received From : +11:53:57 ============================================================================ +11:53:57 FNo. Len. Field Value +11:53:57 ============================================================================ +11:53:57 [ 1] [ 4] [0810] +11:53:57 [ 7] [ 10] [0320045304] +11:53:57 [ 11] [ 6] [156179] +11:53:57 [ 39] [ 2] [00] +11:53:57 [ 70] [ 3] [301] +11:53:57 ============================================================================ +11:53:57 Calculate Source COMM Id = 2 +11:53:57 ============================================================================ +11:53:57 + + +waiting on router queue for slot.... +11:54:08 ============================================================================ +11:54:08 Slot Id : <489> +11:54:08 Transaction Type : REQUEST +11:54:08 Received From : +11:54:08 ============================================================================ +11:54:08 FNo. Len. Field Value +11:54:08 ============================================================================ +11:54:08 [ 1] [ 4] [0800] +11:54:08 [ 7] [ 10] [0320045315] +11:54:08 [ 11] [ 6] [156180] +11:54:08 [ 70] [ 3] [301] +11:54:08 ============================================================================ +11:54:08 + + +waiting on router queue for slot.... +11:54:08 Sending to : +11:54:08 ============================================================================ +11:54:08 ============================================================================ +11:54:08 Slot Id : <489> +11:54:08 Transaction Type : RESPONSE +11:54:08 Received From : +11:54:08 ============================================================================ +11:54:08 FNo. Len. Field Value +11:54:08 ============================================================================ +11:54:08 [ 1] [ 4] [0810] +11:54:08 [ 7] [ 10] [0320045315] +11:54:08 [ 11] [ 6] [156180] +11:54:08 [ 39] [ 2] [00] +11:54:08 [ 70] [ 3] [301] +11:54:08 ============================================================================ +11:54:08 Calculate Source COMM Id = 2 +11:54:08 ============================================================================ +11:54:08 + + +waiting on router queue for slot.... +11:54:19 ============================================================================ +11:54:19 Slot Id : <483> +11:54:19 Transaction Type : REQUEST +11:54:19 Received From : +11:54:19 ============================================================================ +11:54:19 FNo. Len. Field Value +11:54:19 ============================================================================ +11:54:19 [ 1] [ 4] [0200] +11:54:19 [ 2] [ 16] [6213541000674757] +11:54:19 [ 3] [ 6] [010000] +11:54:19 [ 4] [ 12] [000100000000] +11:54:19 [ 7] [ 10] [0320115210] +11:54:19 [ 11] [ 6] [942677] +11:54:19 [ 12] [ 6] [115210] +11:54:19 [ 13] [ 4] [0320] +11:54:19 [ 15] [ 4] [0320] +11:54:19 [ 18] [ 4] [6011] +11:54:19 [ 19] [ 3] [418] +11:54:19 [ 22] [ 3] [021] +11:54:19 [ 25] [ 2] [01] +11:54:19 [ 28] [ 9] [D00002000] +11:54:19 [ 32] [ 6] [668899] +11:54:19 [ 35] [ 32] [6213541000674757=491212017475291] +11:54:19 [ 37] [ 12] [507901373666] +11:54:19 [ 41] [ 8] [03209001] +11:54:19 [ 42] [ 15] [APT ] +11:54:19 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +11:54:19 [ 49] [ 3] [418] +11:54:19 [ 52] [ 16] [9CD75D72C6233D72] +11:54:19 ============================================================================ +11:54:19 + + +waiting on router queue for slot.... +11:54:19 Sending to : +11:54:19 ============================================================================ +11:54:19 Sending to : +11:54:19 ============================================================================ +11:54:19 ============================================================================ +11:54:19 Slot Id : <476> +11:54:19 Transaction Type : REQUEST +11:54:19 Received From : +11:54:19 ============================================================================ +11:54:19 FNo. Len. Field Value +11:54:19 ============================================================================ +11:54:19 [ 1] [ 4] [0800] +11:54:19 [ 7] [ 10] [0320045326] +11:54:19 [ 11] [ 6] [156181] +11:54:19 [ 70] [ 3] [301] +11:54:19 ============================================================================ +11:54:19 + + +waiting on router queue for slot.... +11:54:19 Sending to : +11:54:19 ============================================================================ +11:54:19 ============================================================================ +11:54:19 Slot Id : <476> +11:54:19 Transaction Type : RESPONSE +11:54:19 Received From : +11:54:19 ============================================================================ +11:54:19 FNo. Len. Field Value +11:54:19 ============================================================================ +11:54:19 [ 1] [ 4] [0810] +11:54:19 [ 7] [ 10] [0320045326] +11:54:19 [ 11] [ 6] [156181] +11:54:19 [ 39] [ 2] [00] +11:54:19 [ 70] [ 3] [301] +11:54:19 ============================================================================ +11:54:19 Calculate Source COMM Id = 2 +11:54:19 ============================================================================ +11:54:19 + + +waiting on router queue for slot.... +11:54:19 ============================================================================ +11:54:19 Slot Id : <483> +11:54:19 Transaction Type : REQUEST +11:54:19 Received From : +11:54:19 ============================================================================ +11:54:19 FNo. Len. Field Value +11:54:19 ============================================================================ +11:54:19 [ 1] [ 4] [0200] +11:54:19 [ 2] [ 16] [6213541000674757] +11:54:19 [ 3] [ 6] [010000] +11:54:19 [ 4] [ 12] [000100000000] +11:54:19 [ 7] [ 10] [0320115210] +11:54:19 [ 11] [ 6] [942677] +11:54:19 [ 12] [ 6] [115210] +11:54:19 [ 13] [ 4] [0320] +11:54:19 [ 15] [ 4] [0320] +11:54:19 [ 18] [ 4] [6011] +11:54:19 [ 19] [ 3] [418] +11:54:19 [ 22] [ 3] [021] +11:54:19 [ 25] [ 2] [01] +11:54:19 [ 28] [ 9] [D00002000] +11:54:19 [ 32] [ 6] [668899] +11:54:19 [ 35] [ 32] [6213541000674757=491212017475291] +11:54:19 [ 37] [ 12] [507901373666] +11:54:19 [ 41] [ 8] [03209001] +11:54:19 [ 42] [ 15] [APT ] +11:54:19 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +11:54:19 [ 49] [ 3] [418] +11:54:19 [ 52] [ 16] [9CD75D72C6233D72] +11:54:19 ============================================================================ +11:54:19 + + +waiting on router queue for slot.... +11:54:19 Sending to : +11:54:19 ============================================================================ +11:54:19 ============================================================================ +11:54:19 Slot Id : <483> +11:54:19 Transaction Type : REQUEST +11:54:19 Received From : +11:54:19 ============================================================================ +11:54:19 FNo. Len. Field Value +11:54:19 ============================================================================ +11:54:19 [ 1] [ 4] [0200] +11:54:19 [ 2] [ 16] [6213541000674757] +11:54:19 [ 3] [ 6] [010000] +11:54:19 [ 4] [ 12] [000100000000] +11:54:19 [ 7] [ 10] [0320115210] +11:54:19 [ 11] [ 6] [942677] +11:54:19 [ 12] [ 6] [115210] +11:54:19 [ 13] [ 4] [0320] +11:54:19 [ 15] [ 4] [0320] +11:54:19 [ 18] [ 4] [6011] +11:54:19 [ 19] [ 3] [418] +11:54:19 [ 22] [ 3] [021] +11:54:19 [ 25] [ 2] [01] +11:54:19 [ 28] [ 9] [D00002000] +11:54:19 [ 32] [ 6] [668899] +11:54:19 [ 35] [ 32] [6213541000674757=491212017475291] +11:54:19 [ 37] [ 12] [507901373666] +11:54:19 [ 41] [ 8] [03209001] +11:54:19 [ 42] [ 15] [APT ] +11:54:19 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +11:54:19 [ 49] [ 3] [418] +11:54:19 [ 52] [ 16] [7EA4BFAE787ED8E9] +11:54:19 ============================================================================ +11:54:19 + + +waiting on router queue for slot.... +11:54:19 Sending to : <0> +11:54:19 ============================================================================ +11:54:19 ============================================================================ +11:54:19 Slot Id : <483> +11:54:19 Transaction Type : RESPONSE +11:54:19 Received From : +11:54:19 ============================================================================ +11:54:19 FNo. Len. Field Value +11:54:19 ============================================================================ +11:54:19 [ 1] [ 4] [0210] +11:54:19 [ 2] [ 16] [6213541000674757] +11:54:19 [ 3] [ 6] [010000] +11:54:19 [ 4] [ 12] [000100000000] +11:54:19 [ 7] [ 10] [0320115210] +11:54:19 [ 11] [ 6] [942677] +11:54:19 [ 12] [ 6] [115210] +11:54:19 [ 13] [ 4] [0320] +11:54:19 [ 15] [ 4] [0320] +11:54:19 [ 18] [ 4] [6011] +11:54:19 [ 19] [ 3] [418] +11:54:19 [ 22] [ 3] [021] +11:54:19 [ 32] [ 6] [668899] +11:54:19 [ 35] [ 32] [6213541000674757=491212017475291] +11:54:19 [ 37] [ 12] [507901373666] +11:54:19 [ 38] [ 6] [115415] +11:54:19 [ 39] [ 2] [55] +11:54:19 [ 41] [ 8] [03209001] +11:54:19 [ 49] [ 3] [418] +11:54:19 ============================================================================ +11:54:19 Sending to : +11:54:19 ============================================================================ +11:54:19 + + +waiting on router queue for slot.... +11:54:19 ============================================================================ +11:54:19 Slot Id : <486> +11:54:19 Transaction Type : REQUEST +11:54:19 Received From : +11:54:19 ============================================================================ +11:54:19 FNo. Len. Field Value +11:54:19 ============================================================================ +11:54:19 [ 1] [ 4] [0200] +11:54:19 [ 2] [ 16] [6213544002044862] +11:54:19 [ 3] [ 6] [010000] +11:54:19 [ 4] [ 12] [000002000000] +11:54:19 [ 7] [ 10] [0320115210] +11:54:19 [ 11] [ 6] [942678] +11:54:19 [ 12] [ 6] [115210] +11:54:19 [ 13] [ 4] [0320] +11:54:19 [ 15] [ 4] [0320] +11:54:19 [ 18] [ 4] [6011] +11:54:19 [ 19] [ 3] [418] +11:54:19 [ 22] [ 3] [021] +11:54:19 [ 25] [ 2] [01] +11:54:19 [ 28] [ 9] [D00002000] +11:54:19 [ 32] [ 6] [668899] +11:54:19 [ 35] [ 32] [6213544002044862=491212014486044] +11:54:19 [ 37] [ 12] [507901963530] +11:54:19 [ 41] [ 8] [03020019] +11:54:19 [ 42] [ 15] [APT ] +11:54:19 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:54:19 [ 49] [ 3] [418] +11:54:19 [ 52] [ 16] [784CA651F66F1120] +11:54:19 ============================================================================ +11:54:19 + + +waiting on router queue for slot.... +11:54:19 Sending to : +11:54:19 ============================================================================ +11:54:19 Sending to : +11:54:19 ============================================================================ +11:54:20 ============================================================================ +11:54:20 Slot Id : <486> +11:54:20 Transaction Type : REQUEST +11:54:20 Received From : +11:54:20 ============================================================================ +11:54:20 FNo. Len. Field Value +11:54:20 ============================================================================ +11:54:20 [ 1] [ 4] [0200] +11:54:20 [ 2] [ 16] [6213544002044862] +11:54:20 [ 3] [ 6] [010000] +11:54:20 [ 4] [ 12] [000002000000] +11:54:20 [ 7] [ 10] [0320115210] +11:54:20 [ 11] [ 6] [942678] +11:54:20 [ 12] [ 6] [115210] +11:54:20 [ 13] [ 4] [0320] +11:54:20 [ 15] [ 4] [0320] +11:54:20 [ 18] [ 4] [6011] +11:54:20 [ 19] [ 3] [418] +11:54:20 [ 22] [ 3] [021] +11:54:20 [ 25] [ 2] [01] +11:54:20 [ 28] [ 9] [D00002000] +11:54:20 [ 32] [ 6] [668899] +11:54:20 [ 35] [ 32] [6213544002044862=491212014486044] +11:54:20 [ 37] [ 12] [507901963530] +11:54:20 [ 41] [ 8] [03020019] +11:54:20 [ 42] [ 15] [APT ] +11:54:20 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:54:20 [ 49] [ 3] [418] +11:54:20 [ 52] [ 16] [784CA651F66F1120] +11:54:20 ============================================================================ +11:54:20 + + +waiting on router queue for slot.... +11:54:20 Sending to : +11:54:20 ============================================================================ +11:54:20 ============================================================================ +11:54:20 Slot Id : <486> +11:54:20 Transaction Type : REQUEST +11:54:20 Received From : +11:54:20 ============================================================================ +11:54:20 FNo. Len. Field Value +11:54:20 ============================================================================ +11:54:20 [ 1] [ 4] [0200] +11:54:20 [ 2] [ 16] [6213544002044862] +11:54:20 [ 3] [ 6] [010000] +11:54:20 [ 4] [ 12] [000002000000] +11:54:20 [ 7] [ 10] [0320115210] +11:54:20 [ 11] [ 6] [942678] +11:54:20 [ 12] [ 6] [115210] +11:54:20 [ 13] [ 4] [0320] +11:54:20 [ 15] [ 4] [0320] +11:54:20 [ 18] [ 4] [6011] +11:54:20 [ 19] [ 3] [418] +11:54:20 [ 22] [ 3] [021] +11:54:20 [ 25] [ 2] [01] +11:54:20 [ 28] [ 9] [D00002000] +11:54:20 [ 32] [ 6] [668899] +11:54:20 [ 35] [ 32] [6213544002044862=491212014486044] +11:54:20 [ 37] [ 12] [507901963530] +11:54:20 [ 41] [ 8] [03020019] +11:54:20 [ 42] [ 15] [APT ] +11:54:20 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:54:20 [ 49] [ 3] [418] +11:54:20 [ 52] [ 16] [ABC719F945F636E1] +11:54:20 ============================================================================ +11:54:20 + + +waiting on router queue for slot.... +11:54:20 Sending to : <0> +11:54:20 ============================================================================ +11:54:20 ============================================================================ +11:54:20 Slot Id : <486> +11:54:20 Transaction Type : RESPONSE +11:54:20 Received From : +11:54:20 ============================================================================ +11:54:20 FNo. Len. Field Value +11:54:20 ============================================================================ +11:54:20 [ 1] [ 4] [0210] +11:54:20 [ 2] [ 16] [6213544002044862] +11:54:20 [ 3] [ 6] [010000] +11:54:20 [ 4] [ 12] [000002000000] +11:54:20 [ 7] [ 10] [0320115210] +11:54:20 [ 11] [ 6] [942678] +11:54:20 [ 12] [ 6] [115210] +11:54:20 [ 13] [ 4] [0320] +11:54:20 [ 15] [ 4] [0320] +11:54:20 [ 18] [ 4] [6011] +11:54:20 [ 19] [ 3] [418] +11:54:20 [ 32] [ 6] [668899] +11:54:20 [ 35] [ 32] [6213544002044862=491212014486044] +11:54:20 [ 37] [ 12] [507901963530] +11:54:20 [ 38] [ 6] [925588] +11:54:20 [ 39] [ 2] [00] +11:54:20 [ 41] [ 8] [03020019] +11:54:20 [ 49] [ 3] [418] +11:54:20 [ 54] [ 40] [0001418C0000329734990002418C000032973499] +11:54:20 ============================================================================ +11:54:20 Sending to : +11:54:20 ============================================================================ +11:54:20 + + +waiting on router queue for slot.... +11:54:20 ============================================================================ +11:54:20 Slot Id : <483> +11:54:20 Transaction Type : RESPONSE +11:54:20 Received From : +11:54:20 ============================================================================ +11:54:20 FNo. Len. Field Value +11:54:20 ============================================================================ +11:54:20 [ 1] [ 4] [0210] +11:54:20 [ 2] [ 16] [6213541000674757] +11:54:20 [ 3] [ 6] [010000] +11:54:20 [ 4] [ 12] [000100000000] +11:54:20 [ 7] [ 10] [0320115210] +11:54:20 [ 11] [ 6] [942677] +11:54:20 [ 12] [ 6] [115210] +11:54:20 [ 13] [ 4] [0320] +11:54:20 [ 15] [ 4] [0320] +11:54:20 [ 18] [ 4] [6011] +11:54:20 [ 19] [ 3] [418] +11:54:20 [ 22] [ 3] [021] +11:54:20 [ 32] [ 6] [668899] +11:54:20 [ 35] [ 32] [6213541000674757=491212017475291] +11:54:20 [ 37] [ 12] [507901373666] +11:54:20 [ 38] [ 6] [115415] +11:54:20 [ 39] [ 2] [55] +11:54:20 [ 41] [ 8] [03209001] +11:54:20 [ 49] [ 3] [418] +11:54:20 ============================================================================ +11:54:20 Calculate Source COMM Id = 4 +11:54:20 ============================================================================ +11:54:20 + + +waiting on router queue for slot.... +11:54:21 ============================================================================ +11:54:21 Slot Id : <472> +11:54:21 Transaction Type : REQUEST +11:54:21 Received From : +11:54:21 ============================================================================ +11:54:21 FNo. Len. Field Value +11:54:21 ============================================================================ +11:54:21 [ 1] [ 4] [0200] +11:54:21 [ 2] [ 16] [1808930600001135] +11:54:21 [ 3] [ 6] [011000] +11:54:21 [ 4] [ 12] [000030000000] +11:54:21 [ 7] [ 10] [0320120209] +11:54:21 [ 11] [ 6] [010416] +11:54:21 [ 12] [ 6] [120209] +11:54:21 [ 13] [ 4] [0320] +11:54:21 [ 14] [ 4] [1803] +11:54:21 [ 15] [ 4] [0320] +11:54:21 [ 18] [ 4] [6011] +11:54:21 [ 22] [ 3] [900] +11:54:21 [ 25] [ 2] [02] +11:54:21 [ 28] [ 9] [D00002000] +11:54:21 [ 32] [ 6] [220699] +11:54:21 [ 35] [ 27] [1808930600001135=1803500835] +11:54:21 [ 37] [ 12] [507900220650] +11:54:21 [ 41] [ 8] [05000200] +11:54:21 [ 42] [ 15] [APTRA ] +11:54:21 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:54:21 [ 49] [ 3] [418] +11:54:21 [ 52] [ 16] [5E9AD63E8BF12CFF] +11:54:21 ============================================================================ +11:54:21 + + +waiting on router queue for slot.... +11:54:21 Sending to : +11:54:21 ============================================================================ +11:54:21 Sending to : +11:54:21 ============================================================================ +11:54:22 ============================================================================ +11:54:22 Slot Id : <472> +11:54:22 Transaction Type : REQUEST +11:54:22 Received From : +11:54:22 ============================================================================ +11:54:22 FNo. Len. Field Value +11:54:22 ============================================================================ +11:54:22 [ 1] [ 4] [0200] +11:54:22 [ 2] [ 16] [1808930600001135] +11:54:22 [ 3] [ 6] [011000] +11:54:22 [ 4] [ 12] [000030000000] +11:54:22 [ 7] [ 10] [0320120209] +11:54:22 [ 11] [ 6] [010416] +11:54:22 [ 12] [ 6] [120209] +11:54:22 [ 13] [ 4] [0320] +11:54:22 [ 14] [ 4] [1803] +11:54:22 [ 15] [ 4] [0320] +11:54:22 [ 18] [ 4] [6011] +11:54:22 [ 22] [ 3] [900] +11:54:22 [ 25] [ 2] [02] +11:54:22 [ 28] [ 9] [D00002000] +11:54:22 [ 32] [ 6] [220699] +11:54:22 [ 35] [ 27] [1808930600001135=1803500835] +11:54:22 [ 37] [ 12] [507900220650] +11:54:22 [ 41] [ 8] [05000200] +11:54:22 [ 42] [ 15] [APTRA ] +11:54:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:54:22 [ 49] [ 3] [418] +11:54:22 [ 52] [ 16] [5E9AD63E8BF12CFF] +11:54:22 ============================================================================ +11:54:22 + + +waiting on router queue for slot.... +11:54:22 Sending to : +11:54:22 ============================================================================ +11:54:22 ============================================================================ +11:54:22 Slot Id : <472> +11:54:22 Transaction Type : REQUEST +11:54:22 Received From : +11:54:22 ============================================================================ +11:54:22 FNo. Len. Field Value +11:54:22 ============================================================================ +11:54:22 [ 1] [ 4] [0200] +11:54:22 [ 2] [ 16] [1808930600001135] +11:54:22 [ 3] [ 6] [011000] +11:54:22 [ 4] [ 12] [000030000000] +11:54:22 [ 7] [ 10] [0320120209] +11:54:22 [ 11] [ 6] [010416] +11:54:22 [ 12] [ 6] [120209] +11:54:22 [ 13] [ 4] [0320] +11:54:22 [ 14] [ 4] [1803] +11:54:22 [ 15] [ 4] [0320] +11:54:22 [ 18] [ 4] [6011] +11:54:22 [ 22] [ 3] [900] +11:54:22 [ 25] [ 2] [02] +11:54:22 [ 28] [ 9] [D00002000] +11:54:22 [ 32] [ 6] [220699] +11:54:22 [ 35] [ 27] [1808930600001135=1803500835] +11:54:22 [ 37] [ 12] [507900220650] +11:54:22 [ 41] [ 8] [05000200] +11:54:22 [ 42] [ 15] [APTRA ] +11:54:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:54:22 [ 49] [ 3] [418] +11:54:22 [ 52] [ 16] [D08E9FF18286BB4F] +11:54:22 ============================================================================ +11:54:22 + + +waiting on router queue for slot.... +11:54:22 Sending to : <2> +11:54:22 ============================================================================ +11:54:22 ============================================================================ +11:54:22 Slot Id : <486> +11:54:22 Transaction Type : RESPONSE +11:54:22 Received From : +11:54:22 ============================================================================ +11:54:22 FNo. Len. Field Value +11:54:22 ============================================================================ +11:54:22 [ 1] [ 4] [0210] +11:54:22 [ 2] [ 16] [6213544002044862] +11:54:22 [ 3] [ 6] [010000] +11:54:22 [ 4] [ 12] [000002000000] +11:54:22 [ 7] [ 10] [0320115210] +11:54:22 [ 11] [ 6] [942678] +11:54:22 [ 12] [ 6] [115210] +11:54:22 [ 13] [ 4] [0320] +11:54:22 [ 15] [ 4] [0320] +11:54:22 [ 18] [ 4] [6011] +11:54:22 [ 19] [ 3] [418] +11:54:22 [ 32] [ 6] [668899] +11:54:22 [ 35] [ 32] [6213544002044862=491212014486044] +11:54:22 [ 37] [ 12] [507901963530] +11:54:22 [ 38] [ 6] [925588] +11:54:22 [ 39] [ 2] [00] +11:54:22 [ 41] [ 8] [03020019] +11:54:22 [ 49] [ 3] [418] +11:54:22 [ 54] [ 40] [0001418C0000329734990002418C000032973499] +11:54:22 ============================================================================ +11:54:22 Calculate Source COMM Id = 4 +11:54:22 ============================================================================ +11:54:22 + + +waiting on router queue for slot.... +11:54:25 ============================================================================ +11:54:25 Slot Id : <474> +11:54:25 Transaction Type : REQUEST +11:54:25 Received From : +11:54:25 ============================================================================ +11:54:25 FNo. Len. Field Value +11:54:25 ============================================================================ +11:54:25 [ 1] [ 4] [0200] +11:54:25 [ 2] [ 16] [6688990040149112] +11:54:25 [ 3] [ 6] [010000] +11:54:25 [ 4] [ 12] [000010000000] +11:54:25 [ 7] [ 10] [0320045332] +11:54:25 [ 11] [ 6] [268797] +11:54:25 [ 12] [ 6] [115332] +11:54:25 [ 13] [ 4] [0320] +11:54:25 [ 14] [ 4] [9805] +11:54:25 [ 15] [ 4] [0320] +11:54:25 [ 18] [ 4] [6011] +11:54:25 [ 19] [ 3] [418] +11:54:25 [ 22] [ 3] [021] +11:54:25 [ 25] [ 2] [01] +11:54:25 [ 28] [ 9] [D00002000] +11:54:25 [ 32] [ 6] [180893] +11:54:25 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:54:25 [ 37] [ 12] [507904268797] +11:54:25 [ 41] [ 8] [0321LNTV] +11:54:25 [ 42] [ 15] [999999 ] +11:54:25 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +11:54:25 [ 49] [ 3] [418] +11:54:25 [ 52] [ 16] [EB9C3674C9D755A8] +11:54:25 ============================================================================ +11:54:25 + + +waiting on router queue for slot.... +11:54:25 Sending to : +11:54:25 ============================================================================ +11:54:25 Sending to : +11:54:25 ============================================================================ +11:54:25 ============================================================================ +11:54:25 Slot Id : <477> +11:54:25 Transaction Type : REQUEST +11:54:25 Received From : +11:54:25 ============================================================================ +11:54:25 FNo. Len. Field Value +11:54:25 ============================================================================ +11:54:25 [ 1] [ 4] [0200] +11:54:25 [ 2] [ 16] [6688990040128512] +11:54:25 [ 3] [ 6] [011000] +11:54:25 [ 4] [ 12] [000020000000] +11:54:25 [ 7] [ 10] [0320115421] +11:54:25 [ 11] [ 6] [736861] +11:54:25 [ 12] [ 6] [115421] +11:54:25 [ 13] [ 4] [0320] +11:54:25 [ 15] [ 4] [0320] +11:54:25 [ 18] [ 4] [6011] +11:54:25 [ 22] [ 3] [900] +11:54:25 [ 25] [ 2] [02] +11:54:25 [ 28] [ 9] [D00002000] +11:54:25 [ 32] [ 6] [621354] +11:54:25 [ 35] [ 37] [6688990040128512=98041261166829600000] +11:54:25 [ 37] [ 12] [507902682303] +11:54:25 [ 41] [ 8] [14000700] +11:54:25 [ 42] [ 15] [NATIVE ] +11:54:25 [ 43] [ 40] [CEMENT FACTORY Vangvieng LAO] +11:54:25 [ 49] [ 3] [418] +11:54:25 [ 52] [ 16] [8399A84F1F2C51B2] +11:54:25 ============================================================================ +11:54:25 + + +waiting on router queue for slot.... +11:54:25 Sending to : +11:54:25 ============================================================================ +11:54:25 Sending to : +11:54:25 ============================================================================ +11:54:26 ============================================================================ +11:54:26 Slot Id : <474> +11:54:26 Transaction Type : REQUEST +11:54:26 Received From : +11:54:26 ============================================================================ +11:54:26 FNo. Len. Field Value +11:54:26 ============================================================================ +11:54:26 [ 1] [ 4] [0200] +11:54:26 [ 2] [ 16] [6688990040149112] +11:54:26 [ 3] [ 6] [010000] +11:54:26 [ 4] [ 12] [000010000000] +11:54:26 [ 7] [ 10] [0320045332] +11:54:26 [ 11] [ 6] [268797] +11:54:26 [ 12] [ 6] [115332] +11:54:26 [ 13] [ 4] [0320] +11:54:26 [ 14] [ 4] [9805] +11:54:26 [ 15] [ 4] [0320] +11:54:26 [ 18] [ 4] [6011] +11:54:26 [ 19] [ 3] [418] +11:54:26 [ 22] [ 3] [021] +11:54:26 [ 25] [ 2] [01] +11:54:26 [ 28] [ 9] [D00002000] +11:54:26 [ 32] [ 6] [180893] +11:54:26 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:54:26 [ 37] [ 12] [507904268797] +11:54:26 [ 41] [ 8] [0321LNTV] +11:54:26 [ 42] [ 15] [999999 ] +11:54:26 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +11:54:26 [ 49] [ 3] [418] +11:54:26 [ 52] [ 16] [EB9C3674C9D755A8] +11:54:26 ============================================================================ +11:54:26 + + +waiting on router queue for slot.... +11:54:26 Sending to : +11:54:26 ============================================================================ +11:54:26 ============================================================================ +11:54:26 Slot Id : <474> +11:54:26 Transaction Type : REQUEST +11:54:26 Received From : +11:54:26 ============================================================================ +11:54:26 FNo. Len. Field Value +11:54:26 ============================================================================ +11:54:26 [ 1] [ 4] [0200] +11:54:26 [ 2] [ 16] [6688990040149112] +11:54:26 [ 3] [ 6] [010000] +11:54:26 [ 4] [ 12] [000010000000] +11:54:26 [ 7] [ 10] [0320045332] +11:54:26 [ 11] [ 6] [268797] +11:54:26 [ 12] [ 6] [115332] +11:54:26 [ 13] [ 4] [0320] +11:54:26 [ 14] [ 4] [9805] +11:54:26 [ 15] [ 4] [0320] +11:54:26 [ 18] [ 4] [6011] +11:54:26 [ 19] [ 3] [418] +11:54:26 [ 22] [ 3] [021] +11:54:26 [ 25] [ 2] [01] +11:54:26 [ 28] [ 9] [D00002000] +11:54:26 [ 32] [ 6] [180893] +11:54:26 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:54:26 [ 37] [ 12] [507904268797] +11:54:26 [ 41] [ 8] [0321LNTV] +11:54:26 [ 42] [ 15] [999999 ] +11:54:26 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +11:54:26 [ 49] [ 3] [418] +11:54:26 [ 52] [ 16] [68BD014BA045BC2A] +11:54:26 ============================================================================ +11:54:26 + + +waiting on router queue for slot.... +11:54:26 Sending to : <0> +11:54:26 ============================================================================ +11:54:26 ============================================================================ +11:54:26 Slot Id : <474> +11:54:26 Transaction Type : RESPONSE +11:54:26 Received From : +11:54:26 ============================================================================ +11:54:26 FNo. Len. Field Value +11:54:26 ============================================================================ +11:54:26 [ 1] [ 4] [0210] +11:54:26 [ 2] [ 16] [6688990040149112] +11:54:26 [ 3] [ 6] [010000] +11:54:26 [ 4] [ 12] [000010000000] +11:54:26 [ 7] [ 10] [0320045332] +11:54:26 [ 11] [ 6] [268797] +11:54:26 [ 12] [ 6] [115332] +11:54:26 [ 13] [ 4] [0320] +11:54:26 [ 15] [ 4] [0320] +11:54:26 [ 18] [ 4] [6011] +11:54:26 [ 19] [ 3] [418] +11:54:26 [ 22] [ 3] [021] +11:54:26 [ 32] [ 6] [180893] +11:54:26 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:54:26 [ 37] [ 12] [507904268797] +11:54:26 [ 39] [ 2] [14] +11:54:26 [ 41] [ 8] [0321LNTV] +11:54:26 [ 49] [ 3] [418] +11:54:26 ============================================================================ +11:54:26 Sending to : +11:54:26 ============================================================================ +11:54:26 + + +waiting on router queue for slot.... +11:54:26 ============================================================================ +11:54:26 Slot Id : <477> +11:54:26 Transaction Type : REQUEST +11:54:26 Received From : +11:54:26 ============================================================================ +11:54:26 FNo. Len. Field Value +11:54:26 ============================================================================ +11:54:26 [ 1] [ 4] [0200] +11:54:26 [ 2] [ 16] [6688990040128512] +11:54:26 [ 3] [ 6] [011000] +11:54:26 [ 4] [ 12] [000020000000] +11:54:26 [ 7] [ 10] [0320115421] +11:54:26 [ 11] [ 6] [736861] +11:54:26 [ 12] [ 6] [115421] +11:54:26 [ 13] [ 4] [0320] +11:54:26 [ 15] [ 4] [0320] +11:54:26 [ 18] [ 4] [6011] +11:54:26 [ 22] [ 3] [900] +11:54:26 [ 25] [ 2] [02] +11:54:26 [ 28] [ 9] [D00002000] +11:54:26 [ 32] [ 6] [621354] +11:54:26 [ 35] [ 37] [6688990040128512=98041261166829600000] +11:54:26 [ 37] [ 12] [507902682303] +11:54:26 [ 41] [ 8] [14000700] +11:54:26 [ 42] [ 15] [NATIVE ] +11:54:26 [ 43] [ 40] [CEMENT FACTORY Vangvieng LAO] +11:54:26 [ 49] [ 3] [418] +11:54:26 [ 52] [ 16] [8399A84F1F2C51B2] +11:54:26 ============================================================================ +11:54:26 + + +waiting on router queue for slot.... +11:54:26 Sending to : +11:54:26 ============================================================================ +11:54:26 ============================================================================ +11:54:26 Slot Id : <477> +11:54:26 Transaction Type : REQUEST +11:54:26 Received From : +11:54:26 ============================================================================ +11:54:26 FNo. Len. Field Value +11:54:26 ============================================================================ +11:54:26 [ 1] [ 4] [0200] +11:54:26 [ 2] [ 16] [6688990040128512] +11:54:26 [ 3] [ 6] [011000] +11:54:26 [ 4] [ 12] [000020000000] +11:54:26 [ 7] [ 10] [0320115421] +11:54:26 [ 11] [ 6] [736861] +11:54:26 [ 12] [ 6] [115421] +11:54:26 [ 13] [ 4] [0320] +11:54:26 [ 15] [ 4] [0320] +11:54:26 [ 18] [ 4] [6011] +11:54:26 [ 22] [ 3] [900] +11:54:26 [ 25] [ 2] [02] +11:54:26 [ 28] [ 9] [D00002000] +11:54:26 [ 32] [ 6] [621354] +11:54:26 [ 35] [ 37] [6688990040128512=98041261166829600000] +11:54:26 [ 37] [ 12] [507902682303] +11:54:26 [ 41] [ 8] [14000700] +11:54:26 [ 42] [ 15] [NATIVE ] +11:54:26 [ 43] [ 40] [CEMENT FACTORY Vangvieng LAO] +11:54:26 [ 49] [ 3] [418] +11:54:26 [ 52] [ 16] [F1B0DBB706456DA9] +11:54:26 ============================================================================ +11:54:26 + + +waiting on router queue for slot.... +11:54:26 Sending to : <4> +11:54:26 ============================================================================ +11:54:27 ============================================================================ +11:54:27 Slot Id : <477> +11:54:27 Transaction Type : RESPONSE +11:54:27 Received From : +11:54:27 ============================================================================ +11:54:27 FNo. Len. Field Value +11:54:27 ============================================================================ +11:54:27 [ 1] [ 4] [0210] +11:54:27 [ 2] [ 16] [6688990040128512] +11:54:27 [ 3] [ 6] [011000] +11:54:27 [ 4] [ 12] [000020000000] +11:54:27 [ 11] [ 6] [736861] +11:54:27 [ 12] [ 6] [115421] +11:54:27 [ 15] [ 4] [0320] +11:54:27 [ 18] [ 4] [6011] +11:54:27 [ 32] [ 6] [621354] +11:54:27 [ 35] [ 37] [6688990040128512=98041261166829600000] +11:54:27 [ 37] [ 12] [507902682303] +11:54:27 [ 38] [ 6] [866033] +11:54:27 [ 39] [ 2] [00] +11:54:27 [ 41] [ 8] [14000700] +11:54:27 [ 49] [ 3] [418] +11:54:27 [ 54] [ 20] [1002418C000002500000] +11:54:27 ============================================================================ +11:54:27 Sending to : +11:54:27 ============================================================================ +11:54:27 + + +waiting on router queue for slot.... +11:54:27 ============================================================================ +11:54:27 Slot Id : <474> +11:54:27 Transaction Type : RESPONSE +11:54:27 Received From : +11:54:27 ============================================================================ +11:54:27 FNo. Len. Field Value +11:54:27 ============================================================================ +11:54:27 [ 1] [ 4] [0210] +11:54:27 [ 2] [ 16] [6688990040149112] +11:54:27 [ 3] [ 6] [010000] +11:54:27 [ 4] [ 12] [000010000000] +11:54:27 [ 7] [ 10] [0320045332] +11:54:27 [ 11] [ 6] [268797] +11:54:27 [ 12] [ 6] [115332] +11:54:27 [ 13] [ 4] [0320] +11:54:27 [ 15] [ 4] [0320] +11:54:27 [ 18] [ 4] [6011] +11:54:27 [ 19] [ 3] [418] +11:54:27 [ 22] [ 3] [021] +11:54:27 [ 32] [ 6] [180893] +11:54:27 [ 35] [ 37] [6688990040149112=98051261154057100000] +11:54:27 [ 37] [ 12] [507904268797] +11:54:27 [ 39] [ 2] [14] +11:54:27 [ 41] [ 8] [0321LNTV] +11:54:27 [ 49] [ 3] [418] +11:54:27 ============================================================================ +11:54:27 Calculate Source COMM Id = 2 +11:54:27 ============================================================================ +11:54:27 + + +waiting on router queue for slot.... +11:54:28 ============================================================================ +11:54:28 Slot Id : <477> +11:54:28 Transaction Type : RESPONSE +11:54:28 Received From : +11:54:28 ============================================================================ +11:54:28 FNo. Len. Field Value +11:54:28 ============================================================================ +11:54:28 [ 1] [ 4] [0210] +11:54:28 [ 2] [ 16] [6688990040128512] +11:54:28 [ 3] [ 6] [011000] +11:54:28 [ 4] [ 12] [000020000000] +11:54:28 [ 11] [ 6] [736861] +11:54:28 [ 12] [ 6] [115421] +11:54:28 [ 15] [ 4] [0320] +11:54:28 [ 18] [ 4] [6011] +11:54:28 [ 32] [ 6] [621354] +11:54:28 [ 35] [ 37] [6688990040128512=98041261166829600000] +11:54:28 [ 37] [ 12] [507902682303] +11:54:28 [ 38] [ 6] [866033] +11:54:28 [ 39] [ 2] [00] +11:54:28 [ 41] [ 8] [14000700] +11:54:28 [ 49] [ 3] [418] +11:54:28 [ 54] [ 20] [1002418C000002500000] +11:54:28 ============================================================================ +11:54:28 Calculate Source COMM Id = 0 +11:54:28 ============================================================================ +11:54:28 + + +waiting on router queue for slot.... +11:54:28 ============================================================================ +11:54:28 Slot Id : <472> +11:54:28 Transaction Type : RESPONSE +11:54:28 Received From : +11:54:28 ============================================================================ +11:54:28 FNo. Len. Field Value +11:54:28 ============================================================================ +11:54:28 [ 1] [ 4] [0210] +11:54:28 [ 2] [ 16] [1808930600001135] +11:54:28 [ 3] [ 6] [011000] +11:54:28 [ 4] [ 12] [000030000000] +11:54:28 [ 6] [ 12] [000030000000] +11:54:28 [ 7] [ 10] [0320120209] +11:54:28 [ 11] [ 6] [010416] +11:54:28 [ 12] [ 6] [120209] +11:54:28 [ 13] [ 4] [0320] +11:54:28 [ 14] [ 4] [1803] +11:54:28 [ 18] [ 4] [6011] +11:54:28 [ 19] [ 3] [418] +11:54:28 [ 22] [ 3] [021] +11:54:28 [ 32] [ 6] [220699] +11:54:28 [ 35] [ 27] [1808930600001135=1803500835] +11:54:28 [ 37] [ 12] [507900220650] +11:54:28 [ 38] [ 6] [010416] +11:54:28 [ 39] [ 2] [00] +11:54:28 [ 41] [ 8] [05000200] +11:54:28 [ 49] [ 3] [418] +11:54:28 [ 52] [ 16] [D08E9FF18286BB4F] +11:54:28 [ 54] [ 20] [1001418C000011750100] +11:54:28 ============================================================================ +11:54:28 Sending to : +11:54:28 ============================================================================ +11:54:28 + + +waiting on router queue for slot.... +11:54:30 ============================================================================ +11:54:30 Slot Id : <472> +11:54:30 Transaction Type : RESPONSE +11:54:30 Received From : +11:54:30 ============================================================================ +11:54:30 FNo. Len. Field Value +11:54:30 ============================================================================ +11:54:30 [ 1] [ 4] [0210] +11:54:30 [ 2] [ 16] [1808930600001135] +11:54:30 [ 3] [ 6] [011000] +11:54:30 [ 4] [ 12] [000030000000] +11:54:30 [ 6] [ 12] [000030000000] +11:54:30 [ 7] [ 10] [0320120209] +11:54:30 [ 11] [ 6] [010416] +11:54:30 [ 12] [ 6] [120209] +11:54:30 [ 13] [ 4] [0320] +11:54:30 [ 14] [ 4] [1803] +11:54:30 [ 18] [ 4] [6011] +11:54:30 [ 19] [ 3] [418] +11:54:30 [ 22] [ 3] [021] +11:54:30 [ 32] [ 6] [220699] +11:54:30 [ 35] [ 27] [1808930600001135=1803500835] +11:54:30 [ 37] [ 12] [507900220650] +11:54:30 [ 38] [ 6] [010416] +11:54:30 [ 39] [ 2] [00] +11:54:30 [ 41] [ 8] [05000200] +11:54:30 [ 49] [ 3] [418] +11:54:30 [ 52] [ 16] [D08E9FF18286BB4F] +11:54:30 [ 54] [ 20] [1001418C000011750100] +11:54:30 ============================================================================ +11:54:30 Calculate Source COMM Id = 1 +11:54:30 ============================================================================ +11:54:30 + + +waiting on router queue for slot.... +11:54:40 ============================================================================ +11:54:40 Slot Id : <492> +11:54:40 Transaction Type : REQUEST +11:54:40 Received From : +11:54:40 ============================================================================ +11:54:40 FNo. Len. Field Value +11:54:40 ============================================================================ +11:54:40 [ 1] [ 4] [0800] +11:54:40 [ 2] [ 5] [02531] +11:54:40 [ 3] [ 6] [579118] +11:54:40 [ 7] [ 10] [0320045440] +11:54:40 [ 11] [ 6] [807103] +11:54:40 [ 15] [ 10] [0320045440] +11:54:40 [ 37] [ 11] [57911807103] +11:54:40 [ 70] [ 3] [001] +11:54:40 ============================================================================ +11:54:40 + + +waiting on router queue for slot.... +11:54:40 ============================================================================ +11:54:40 Slot Id : <492> +11:54:40 Transaction Type : RESPONSE +11:54:40 Received From : +11:54:40 ============================================================================ +11:54:40 FNo. Len. Field Value +11:54:40 ============================================================================ +11:54:40 [ 1] [ 4] [0810] +11:54:40 [ 7] [ 10] [0320045440] +11:54:40 [ 11] [ 6] [807103] +11:54:40 [ 15] [ 4] [0320] +11:54:40 [ 37] [ 12] [57911807103] +11:54:40 [ 39] [ 2] [00] +11:54:40 [ 70] [ 3] [001] +11:54:40 ============================================================================ +11:54:40 Sending to : +11:54:40 ============================================================================ +11:54:40 + + +waiting on router queue for slot.... +11:54:40 ============================================================================ +11:54:40 Slot Id : <6> +11:54:40 Transaction Type : REQUEST +11:54:40 Received From : +11:54:40 ============================================================================ +11:54:40 FNo. Len. Field Value +11:54:40 ============================================================================ +11:54:40 [ 1] [ 4] [0800] +11:54:40 [ 7] [ 10] [0320045348] +11:54:40 [ 11] [ 6] [156182] +11:54:40 [ 70] [ 3] [301] +11:54:40 ============================================================================ +11:54:40 + + +waiting on router queue for slot.... +11:54:40 Sending to : +11:54:40 ============================================================================ +11:54:40 ============================================================================ +11:54:40 Slot Id : <6> +11:54:40 Transaction Type : RESPONSE +11:54:40 Received From : +11:54:40 ============================================================================ +11:54:40 FNo. Len. Field Value +11:54:40 ============================================================================ +11:54:40 [ 1] [ 4] [0810] +11:54:40 [ 7] [ 10] [0320045348] +11:54:40 [ 11] [ 6] [156182] +11:54:40 [ 39] [ 2] [00] +11:54:40 [ 70] [ 3] [301] +11:54:40 ============================================================================ +11:54:40 Calculate Source COMM Id = 2 +11:54:40 ============================================================================ +11:54:40 + + +waiting on router queue for slot.... +11:54:43 ============================================================================ +11:54:43 Slot Id : <485> +11:54:43 Transaction Type : REQUEST +11:54:43 Received From : +11:54:43 ============================================================================ +11:54:43 FNo. Len. Field Value +11:54:43 ============================================================================ +11:54:43 [ 1] [ 4] [0200] +11:54:43 [ 2] [ 16] [6213545000754220] +11:54:43 [ 3] [ 6] [010000] +11:54:43 [ 4] [ 12] [000100000000] +11:54:43 [ 7] [ 10] [0320115234] +11:54:43 [ 11] [ 6] [942701] +11:54:43 [ 12] [ 6] [115234] +11:54:43 [ 13] [ 4] [0320] +11:54:43 [ 15] [ 4] [0320] +11:54:43 [ 18] [ 4] [6011] +11:54:43 [ 19] [ 3] [418] +11:54:43 [ 22] [ 3] [021] +11:54:43 [ 25] [ 2] [01] +11:54:43 [ 28] [ 9] [D00002000] +11:54:43 [ 32] [ 6] [668899] +11:54:43 [ 35] [ 32] [6213545000754220=491212015422235] +11:54:43 [ 37] [ 12] [507901422778] +11:54:43 [ 41] [ 8] [03314001] +11:54:43 [ 42] [ 15] [APT ] +11:54:43 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:54:43 [ 49] [ 3] [418] +11:54:43 [ 52] [ 16] [575BB4B74DEB053F] +11:54:43 ============================================================================ +11:54:43 + + +waiting on router queue for slot.... +11:54:43 Sending to : +11:54:43 ============================================================================ +11:54:43 Sending to : +11:54:43 ============================================================================ +11:54:44 ============================================================================ +11:54:44 Slot Id : <485> +11:54:44 Transaction Type : REQUEST +11:54:44 Received From : +11:54:44 ============================================================================ +11:54:44 FNo. Len. Field Value +11:54:44 ============================================================================ +11:54:44 [ 1] [ 4] [0200] +11:54:44 [ 2] [ 16] [6213545000754220] +11:54:44 [ 3] [ 6] [010000] +11:54:44 [ 4] [ 12] [000100000000] +11:54:44 [ 7] [ 10] [0320115234] +11:54:44 [ 11] [ 6] [942701] +11:54:44 [ 12] [ 6] [115234] +11:54:44 [ 13] [ 4] [0320] +11:54:44 [ 15] [ 4] [0320] +11:54:44 [ 18] [ 4] [6011] +11:54:44 [ 19] [ 3] [418] +11:54:44 [ 22] [ 3] [021] +11:54:44 [ 25] [ 2] [01] +11:54:44 [ 28] [ 9] [D00002000] +11:54:44 [ 32] [ 6] [668899] +11:54:44 [ 35] [ 32] [6213545000754220=491212015422235] +11:54:44 [ 37] [ 12] [507901422778] +11:54:44 [ 41] [ 8] [03314001] +11:54:44 [ 42] [ 15] [APT ] +11:54:44 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:54:44 [ 49] [ 3] [418] +11:54:44 [ 52] [ 16] [575BB4B74DEB053F] +11:54:44 ============================================================================ +11:54:44 + + +waiting on router queue for slot.... +11:54:44 Sending to : +11:54:44 ============================================================================ +11:54:44 ============================================================================ +11:54:44 Slot Id : <485> +11:54:44 Transaction Type : REQUEST +11:54:44 Received From : +11:54:44 ============================================================================ +11:54:44 FNo. Len. Field Value +11:54:44 ============================================================================ +11:54:44 [ 1] [ 4] [0200] +11:54:44 [ 2] [ 16] [6213545000754220] +11:54:44 [ 3] [ 6] [010000] +11:54:44 [ 4] [ 12] [000100000000] +11:54:44 [ 7] [ 10] [0320115234] +11:54:44 [ 11] [ 6] [942701] +11:54:44 [ 12] [ 6] [115234] +11:54:44 [ 13] [ 4] [0320] +11:54:44 [ 15] [ 4] [0320] +11:54:44 [ 18] [ 4] [6011] +11:54:44 [ 19] [ 3] [418] +11:54:44 [ 22] [ 3] [021] +11:54:44 [ 25] [ 2] [01] +11:54:44 [ 28] [ 9] [D00002000] +11:54:44 [ 32] [ 6] [668899] +11:54:44 [ 35] [ 32] [6213545000754220=491212015422235] +11:54:44 [ 37] [ 12] [507901422778] +11:54:44 [ 41] [ 8] [03314001] +11:54:44 [ 42] [ 15] [APT ] +11:54:44 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:54:44 [ 49] [ 3] [418] +11:54:44 [ 52] [ 16] [6D6789CDC7EB7E96] +11:54:44 ============================================================================ +11:54:44 + + +waiting on router queue for slot.... +11:54:44 Sending to : <0> +11:54:44 ============================================================================ +11:54:44 ============================================================================ +11:54:44 Slot Id : <485> +11:54:44 Transaction Type : RESPONSE +11:54:44 Received From : +11:54:44 ============================================================================ +11:54:44 FNo. Len. Field Value +11:54:44 ============================================================================ +11:54:44 [ 1] [ 4] [0210] +11:54:44 [ 2] [ 16] [6213545000754220] +11:54:44 [ 3] [ 6] [010000] +11:54:44 [ 4] [ 12] [000100000000] +11:54:44 [ 7] [ 10] [0320115234] +11:54:44 [ 11] [ 6] [942701] +11:54:44 [ 12] [ 6] [115234] +11:54:44 [ 13] [ 4] [0320] +11:54:44 [ 15] [ 4] [0320] +11:54:44 [ 18] [ 4] [6011] +11:54:44 [ 19] [ 3] [418] +11:54:44 [ 32] [ 6] [668899] +11:54:44 [ 35] [ 32] [6213545000754220=491212015422235] +11:54:44 [ 37] [ 12] [507901422778] +11:54:44 [ 38] [ 6] [010229] +11:54:44 [ 39] [ 2] [00] +11:54:44 [ 41] [ 8] [03314001] +11:54:44 [ 49] [ 3] [418] +11:54:44 [ 54] [ 40] [0001418C0018505769710002418C001850576971] +11:54:44 ============================================================================ +11:54:44 Sending to : +11:54:44 ============================================================================ +11:54:44 + + +waiting on router queue for slot.... +11:54:46 ============================================================================ +11:54:46 Slot Id : <485> +11:54:46 Transaction Type : RESPONSE +11:54:46 Received From : +11:54:46 ============================================================================ +11:54:46 FNo. Len. Field Value +11:54:46 ============================================================================ +11:54:46 [ 1] [ 4] [0210] +11:54:46 [ 2] [ 16] [6213545000754220] +11:54:46 [ 3] [ 6] [010000] +11:54:46 [ 4] [ 12] [000100000000] +11:54:46 [ 7] [ 10] [0320115234] +11:54:46 [ 11] [ 6] [942701] +11:54:46 [ 12] [ 6] [115234] +11:54:46 [ 13] [ 4] [0320] +11:54:46 [ 15] [ 4] [0320] +11:54:46 [ 18] [ 4] [6011] +11:54:46 [ 19] [ 3] [418] +11:54:46 [ 32] [ 6] [668899] +11:54:46 [ 35] [ 32] [6213545000754220=491212015422235] +11:54:46 [ 37] [ 12] [507901422778] +11:54:46 [ 38] [ 6] [010229] +11:54:46 [ 39] [ 2] [00] +11:54:46 [ 41] [ 8] [03314001] +11:54:46 [ 49] [ 3] [418] +11:54:46 [ 54] [ 40] [0001418C0018505769710002418C001850576971] +11:54:46 ============================================================================ +11:54:46 Calculate Source COMM Id = 4 +11:54:46 ============================================================================ +11:54:46 + + +waiting on router queue for slot.... +11:54:51 ============================================================================ +11:54:51 Slot Id : <14> +11:54:51 Transaction Type : REQUEST +11:54:51 Received From : +11:54:51 ============================================================================ +11:54:51 FNo. Len. Field Value +11:54:51 ============================================================================ +11:54:51 [ 1] [ 4] [0800] +11:54:51 [ 7] [ 10] [0320045359] +11:54:51 [ 11] [ 6] [156183] +11:54:51 [ 70] [ 3] [301] +11:54:51 ============================================================================ +11:54:51 + + +waiting on router queue for slot.... +11:54:51 Sending to : +11:54:51 ============================================================================ +11:54:51 ============================================================================ +11:54:51 Slot Id : <14> +11:54:51 Transaction Type : RESPONSE +11:54:51 Received From : +11:54:51 ============================================================================ +11:54:51 FNo. Len. Field Value +11:54:51 ============================================================================ +11:54:51 [ 1] [ 4] [0810] +11:54:51 [ 7] [ 10] [0320045359] +11:54:51 [ 11] [ 6] [156183] +11:54:51 [ 39] [ 2] [00] +11:54:51 [ 70] [ 3] [301] +11:54:51 ============================================================================ +11:54:51 Calculate Source COMM Id = 2 +11:54:51 ============================================================================ +11:54:51 + + +waiting on router queue for slot.... +11:54:54 ============================================================================ +11:54:54 Slot Id : <454> +11:54:54 Transaction Type : REQUEST +11:54:54 Received From : +11:54:54 ============================================================================ +11:54:54 FNo. Len. Field Value +11:54:54 ============================================================================ +11:54:54 [ 1] [ 4] [0800] +11:54:54 [ 7] [ 10] [0320050242] +11:54:54 [ 11] [ 6] [046038] +11:54:54 [ 37] [ 12] [57912046038] +11:54:54 [ 70] [ 3] [301] +11:54:54 ============================================================================ +11:54:54 + + +waiting on router queue for slot.... +11:54:54 Sending to : +11:54:54 ============================================================================ +11:54:54 ============================================================================ +11:54:54 Slot Id : <454> +11:54:54 Transaction Type : RESPONSE +11:54:54 Received From : +11:54:54 ============================================================================ +11:54:54 FNo. Len. Field Value +11:54:54 ============================================================================ +11:54:54 [ 1] [ 4] [0810] +11:54:54 [ 7] [ 10] [0320050242] +11:54:54 [ 11] [ 6] [046038] +11:54:54 [ 37] [ 12] [579120460380] +11:54:54 [ 39] [ 2] [00] +11:54:54 [ 70] [ 3] [810] +11:54:54 ============================================================================ +11:54:54 Calculate Source COMM Id = 1 +11:54:54 ============================================================================ +11:54:54 + + +waiting on router queue for slot.... +11:55:01 ============================================================================ +11:55:01 Slot Id : <13> +11:55:01 Transaction Type : REQUEST +11:55:01 Received From : +11:55:01 ============================================================================ +11:55:01 FNo. Len. Field Value +11:55:01 ============================================================================ +11:55:01 [ 1] [ 4] [0200] +11:55:01 [ 2] [ 16] [6213544000437118] +11:55:01 [ 3] [ 6] [311000] +11:55:01 [ 4] [ 12] [000000000000] +11:55:01 [ 7] [ 10] [0320120248] +11:55:01 [ 11] [ 6] [013432] +11:55:01 [ 12] [ 6] [120248] +11:55:01 [ 13] [ 4] [0320] +11:55:01 [ 14] [ 4] [4912] +11:55:01 [ 15] [ 4] [0320] +11:55:01 [ 18] [ 4] [6011] +11:55:01 [ 22] [ 3] [900] +11:55:01 [ 25] [ 2] [02] +11:55:01 [ 28] [ 9] [000000000] +11:55:01 [ 32] [ 6] [220699] +11:55:01 [ 35] [ 32] [6213544000437118=491212013711360] +11:55:01 [ 37] [ 12] [507900200959] +11:55:01 [ 41] [ 8] [09000100] +11:55:01 [ 42] [ 15] [APTRA ] +11:55:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:55:01 [ 49] [ 3] [418] +11:55:01 [ 52] [ 16] [3BB1C43F273AC16B] +11:55:01 ============================================================================ +11:55:01 + + +waiting on router queue for slot.... +11:55:01 Sending to : +11:55:01 ============================================================================ +11:55:01 Sending to : +11:55:01 ============================================================================ +11:55:01 ============================================================================ +11:55:01 Slot Id : <16> +11:55:01 Transaction Type : REQUEST +11:55:01 Received From : +11:55:01 ============================================================================ +11:55:01 FNo. Len. Field Value +11:55:01 ============================================================================ +11:55:01 [ 1] [ 4] [0800] +11:55:01 [ 7] [ 10] [0320045409] +11:55:01 [ 11] [ 6] [156184] +11:55:01 [ 70] [ 3] [301] +11:55:01 ============================================================================ +11:55:01 + + +waiting on router queue for slot.... +11:55:01 Sending to : +11:55:01 ============================================================================ +11:55:01 ============================================================================ +11:55:01 Slot Id : <16> +11:55:01 Transaction Type : RESPONSE +11:55:01 Received From : +11:55:01 ============================================================================ +11:55:01 FNo. Len. Field Value +11:55:01 ============================================================================ +11:55:01 [ 1] [ 4] [0810] +11:55:01 [ 7] [ 10] [0320045409] +11:55:01 [ 11] [ 6] [156184] +11:55:01 [ 39] [ 2] [00] +11:55:01 [ 70] [ 3] [301] +11:55:01 ============================================================================ +11:55:01 Calculate Source COMM Id = 2 +11:55:01 ============================================================================ +11:55:01 + + +waiting on router queue for slot.... +11:55:01 ============================================================================ +11:55:01 Slot Id : <13> +11:55:01 Transaction Type : REQUEST +11:55:01 Received From : +11:55:01 ============================================================================ +11:55:01 FNo. Len. Field Value +11:55:01 ============================================================================ +11:55:01 [ 1] [ 4] [0200] +11:55:01 [ 2] [ 16] [6213544000437118] +11:55:01 [ 3] [ 6] [311000] +11:55:01 [ 4] [ 12] [000000000000] +11:55:01 [ 7] [ 10] [0320120248] +11:55:01 [ 11] [ 6] [013432] +11:55:01 [ 12] [ 6] [120248] +11:55:01 [ 13] [ 4] [0320] +11:55:01 [ 14] [ 4] [4912] +11:55:01 [ 15] [ 4] [0320] +11:55:01 [ 18] [ 4] [6011] +11:55:01 [ 22] [ 3] [900] +11:55:01 [ 25] [ 2] [02] +11:55:01 [ 28] [ 9] [000000000] +11:55:01 [ 32] [ 6] [220699] +11:55:01 [ 35] [ 32] [6213544000437118=491212013711360] +11:55:01 [ 37] [ 12] [507900200959] +11:55:01 [ 41] [ 8] [09000100] +11:55:01 [ 42] [ 15] [APTRA ] +11:55:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:55:01 [ 49] [ 3] [418] +11:55:01 [ 52] [ 16] [3BB1C43F273AC16B] +11:55:01 ============================================================================ +11:55:01 + + +waiting on router queue for slot.... +11:55:01 Sending to : +11:55:01 ============================================================================ +11:55:01 ============================================================================ +11:55:01 Slot Id : <13> +11:55:01 Transaction Type : REQUEST +11:55:01 Received From : +11:55:01 ============================================================================ +11:55:01 FNo. Len. Field Value +11:55:01 ============================================================================ +11:55:01 [ 1] [ 4] [0200] +11:55:01 [ 2] [ 16] [6213544000437118] +11:55:01 [ 3] [ 6] [311000] +11:55:01 [ 4] [ 12] [000000000000] +11:55:01 [ 7] [ 10] [0320120248] +11:55:01 [ 11] [ 6] [013432] +11:55:01 [ 12] [ 6] [120248] +11:55:01 [ 13] [ 4] [0320] +11:55:01 [ 14] [ 4] [4912] +11:55:01 [ 15] [ 4] [0320] +11:55:01 [ 18] [ 4] [6011] +11:55:01 [ 22] [ 3] [900] +11:55:01 [ 25] [ 2] [02] +11:55:01 [ 28] [ 9] [000000000] +11:55:01 [ 32] [ 6] [220699] +11:55:01 [ 35] [ 32] [6213544000437118=491212013711360] +11:55:01 [ 37] [ 12] [507900200959] +11:55:01 [ 41] [ 8] [09000100] +11:55:01 [ 42] [ 15] [APTRA ] +11:55:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:55:01 [ 49] [ 3] [418] +11:55:01 [ 52] [ 16] [BAA6B66AA00CD60A] +11:55:01 ============================================================================ +11:55:01 + + +waiting on router queue for slot.... +11:55:01 Sending to : <0> +11:55:01 ============================================================================ +11:55:01 ============================================================================ +11:55:01 Slot Id : <12> +11:55:01 Transaction Type : REQUEST +11:55:01 Received From : +11:55:01 ============================================================================ +11:55:01 FNo. Len. Field Value +11:55:01 ============================================================================ +11:55:01 [ 1] [ 4] [0200] +11:55:01 [ 2] [ 16] [6213541000674757] +11:55:01 [ 3] [ 6] [010000] +11:55:01 [ 4] [ 12] [000100000000] +11:55:01 [ 7] [ 10] [0320115252] +11:55:01 [ 11] [ 6] [942718] +11:55:01 [ 12] [ 6] [115252] +11:55:01 [ 13] [ 4] [0320] +11:55:01 [ 15] [ 4] [0320] +11:55:01 [ 18] [ 4] [6011] +11:55:01 [ 19] [ 3] [418] +11:55:01 [ 22] [ 3] [021] +11:55:01 [ 25] [ 2] [01] +11:55:01 [ 28] [ 9] [D00002000] +11:55:01 [ 32] [ 6] [668899] +11:55:01 [ 35] [ 32] [6213541000674757=491212017475291] +11:55:01 [ 37] [ 12] [507901373668] +11:55:01 [ 41] [ 8] [03209001] +11:55:01 [ 42] [ 15] [APT ] +11:55:01 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +11:55:01 [ 49] [ 3] [418] +11:55:01 [ 52] [ 16] [9CD75D72C6233D72] +11:55:01 ============================================================================ +11:55:01 + + +waiting on router queue for slot.... +11:55:01 Sending to : +11:55:01 ============================================================================ +11:55:01 Sending to : +11:55:01 ============================================================================ +11:55:02 ============================================================================ +11:55:02 Slot Id : <13> +11:55:02 Transaction Type : RESPONSE +11:55:02 Received From : +11:55:02 ============================================================================ +11:55:02 FNo. Len. Field Value +11:55:02 ============================================================================ +11:55:02 [ 1] [ 4] [0210] +11:55:02 [ 2] [ 16] [6213544000437118] +11:55:02 [ 3] [ 6] [311000] +11:55:02 [ 4] [ 12] [000000000000] +11:55:02 [ 7] [ 10] [0320120248] +11:55:02 [ 11] [ 6] [013432] +11:55:02 [ 12] [ 6] [120248] +11:55:02 [ 13] [ 4] [0320] +11:55:02 [ 15] [ 4] [0320] +11:55:02 [ 18] [ 4] [6011] +11:55:02 [ 32] [ 6] [220699] +11:55:02 [ 35] [ 32] [6213544000437118=491212013711360] +11:55:02 [ 37] [ 12] [507900200959] +11:55:02 [ 38] [ 6] [581487] +11:55:02 [ 39] [ 2] [00] +11:55:02 [ 41] [ 8] [09000100] +11:55:02 [ 49] [ 3] [418] +11:55:02 [ 54] [ 40] [1001418C0000052484331002418C000005248433] +11:55:02 ============================================================================ +11:55:02 Sending to : +11:55:02 ============================================================================ +11:55:02 + + +waiting on router queue for slot.... +11:55:02 ============================================================================ +11:55:02 Slot Id : <12> +11:55:02 Transaction Type : REQUEST +11:55:02 Received From : +11:55:02 ============================================================================ +11:55:02 FNo. Len. Field Value +11:55:02 ============================================================================ +11:55:02 [ 1] [ 4] [0200] +11:55:02 [ 2] [ 16] [6213541000674757] +11:55:02 [ 3] [ 6] [010000] +11:55:02 [ 4] [ 12] [000100000000] +11:55:02 [ 7] [ 10] [0320115252] +11:55:02 [ 11] [ 6] [942718] +11:55:02 [ 12] [ 6] [115252] +11:55:02 [ 13] [ 4] [0320] +11:55:02 [ 15] [ 4] [0320] +11:55:02 [ 18] [ 4] [6011] +11:55:02 [ 19] [ 3] [418] +11:55:02 [ 22] [ 3] [021] +11:55:02 [ 25] [ 2] [01] +11:55:02 [ 28] [ 9] [D00002000] +11:55:02 [ 32] [ 6] [668899] +11:55:02 [ 35] [ 32] [6213541000674757=491212017475291] +11:55:02 [ 37] [ 12] [507901373668] +11:55:02 [ 41] [ 8] [03209001] +11:55:02 [ 42] [ 15] [APT ] +11:55:02 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +11:55:02 [ 49] [ 3] [418] +11:55:02 [ 52] [ 16] [9CD75D72C6233D72] +11:55:02 ============================================================================ +11:55:02 + + +waiting on router queue for slot.... +11:55:02 Sending to : +11:55:02 ============================================================================ +11:55:02 ============================================================================ +11:55:02 Slot Id : <12> +11:55:02 Transaction Type : REQUEST +11:55:02 Received From : +11:55:02 ============================================================================ +11:55:02 FNo. Len. Field Value +11:55:02 ============================================================================ +11:55:02 [ 1] [ 4] [0200] +11:55:02 [ 2] [ 16] [6213541000674757] +11:55:02 [ 3] [ 6] [010000] +11:55:02 [ 4] [ 12] [000100000000] +11:55:02 [ 7] [ 10] [0320115252] +11:55:02 [ 11] [ 6] [942718] +11:55:02 [ 12] [ 6] [115252] +11:55:02 [ 13] [ 4] [0320] +11:55:02 [ 15] [ 4] [0320] +11:55:02 [ 18] [ 4] [6011] +11:55:02 [ 19] [ 3] [418] +11:55:02 [ 22] [ 3] [021] +11:55:02 [ 25] [ 2] [01] +11:55:02 [ 28] [ 9] [D00002000] +11:55:02 [ 32] [ 6] [668899] +11:55:02 [ 35] [ 32] [6213541000674757=491212017475291] +11:55:02 [ 37] [ 12] [507901373668] +11:55:02 [ 41] [ 8] [03209001] +11:55:02 [ 42] [ 15] [APT ] +11:55:02 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +11:55:02 [ 49] [ 3] [418] +11:55:02 [ 52] [ 16] [7EA4BFAE787ED8E9] +11:55:02 ============================================================================ +11:55:02 + + +waiting on router queue for slot.... +11:55:02 Sending to : <0> +11:55:02 ============================================================================ +11:55:02 ============================================================================ +11:55:02 Slot Id : <12> +11:55:02 Transaction Type : RESPONSE +11:55:02 Received From : +11:55:02 ============================================================================ +11:55:02 FNo. Len. Field Value +11:55:02 ============================================================================ +11:55:02 [ 1] [ 4] [0210] +11:55:02 [ 2] [ 16] [6213541000674757] +11:55:02 [ 3] [ 6] [010000] +11:55:02 [ 4] [ 12] [000100000000] +11:55:02 [ 7] [ 10] [0320115252] +11:55:02 [ 11] [ 6] [942718] +11:55:02 [ 12] [ 6] [115252] +11:55:02 [ 13] [ 4] [0320] +11:55:02 [ 15] [ 4] [0320] +11:55:02 [ 18] [ 4] [6011] +11:55:02 [ 19] [ 3] [418] +11:55:02 [ 22] [ 3] [021] +11:55:02 [ 32] [ 6] [668899] +11:55:02 [ 35] [ 32] [6213541000674757=491212017475291] +11:55:02 [ 37] [ 12] [507901373668] +11:55:02 [ 38] [ 6] [115458] +11:55:02 [ 39] [ 2] [55] +11:55:02 [ 41] [ 8] [03209001] +11:55:02 [ 49] [ 3] [418] +11:55:02 ============================================================================ +11:55:02 Sending to : +11:55:02 ============================================================================ +11:55:02 + + +waiting on router queue for slot.... +11:55:03 ============================================================================ +11:55:03 Slot Id : <13> +11:55:03 Transaction Type : RESPONSE +11:55:03 Received From : +11:55:03 ============================================================================ +11:55:03 FNo. Len. Field Value +11:55:03 ============================================================================ +11:55:03 [ 1] [ 4] [0210] +11:55:03 [ 2] [ 16] [6213544000437118] +11:55:03 [ 3] [ 6] [311000] +11:55:03 [ 4] [ 12] [000000000000] +11:55:03 [ 7] [ 10] [0320120248] +11:55:03 [ 11] [ 6] [013432] +11:55:03 [ 12] [ 6] [120248] +11:55:03 [ 13] [ 4] [0320] +11:55:03 [ 15] [ 4] [0320] +11:55:03 [ 18] [ 4] [6011] +11:55:03 [ 32] [ 6] [220699] +11:55:03 [ 35] [ 32] [6213544000437118=491212013711360] +11:55:03 [ 37] [ 12] [507900200959] +11:55:03 [ 38] [ 6] [581487] +11:55:03 [ 39] [ 2] [00] +11:55:03 [ 41] [ 8] [09000100] +11:55:03 [ 49] [ 3] [418] +11:55:03 [ 54] [ 40] [1001418C0000052484331002418C000005248433] +11:55:03 ============================================================================ +11:55:03 Calculate Source COMM Id = 1 +11:55:03 ============================================================================ +11:55:03 + + +waiting on router queue for slot.... +11:55:04 ============================================================================ +11:55:04 Slot Id : <12> +11:55:04 Transaction Type : RESPONSE +11:55:04 Received From : +11:55:04 ============================================================================ +11:55:04 FNo. Len. Field Value +11:55:04 ============================================================================ +11:55:04 [ 1] [ 4] [0210] +11:55:04 [ 2] [ 16] [6213541000674757] +11:55:04 [ 3] [ 6] [010000] +11:55:04 [ 4] [ 12] [000100000000] +11:55:04 [ 7] [ 10] [0320115252] +11:55:04 [ 11] [ 6] [942718] +11:55:04 [ 12] [ 6] [115252] +11:55:04 [ 13] [ 4] [0320] +11:55:04 [ 15] [ 4] [0320] +11:55:04 [ 18] [ 4] [6011] +11:55:04 [ 19] [ 3] [418] +11:55:04 [ 22] [ 3] [021] +11:55:04 [ 32] [ 6] [668899] +11:55:04 [ 35] [ 32] [6213541000674757=491212017475291] +11:55:04 [ 37] [ 12] [507901373668] +11:55:04 [ 38] [ 6] [115458] +11:55:04 [ 39] [ 2] [55] +11:55:04 [ 41] [ 8] [03209001] +11:55:04 [ 49] [ 3] [418] +11:55:04 ============================================================================ +11:55:04 Calculate Source COMM Id = 4 +11:55:04 ============================================================================ +11:55:04 + + +waiting on router queue for slot.... +11:55:08 ============================================================================ +11:55:08 Slot Id : <469> +11:55:08 Transaction Type : REQUEST +11:55:08 Received From : +11:55:08 ============================================================================ +11:55:08 FNo. Len. Field Value +11:55:08 ============================================================================ +11:55:08 [ 1] [ 4] [0200] +11:55:08 [ 2] [ 16] [6213545000654396] +11:55:08 [ 3] [ 6] [010000] +11:55:08 [ 4] [ 12] [000010000000] +11:55:08 [ 7] [ 10] [0320045415] +11:55:08 [ 11] [ 6] [268803] +11:55:08 [ 12] [ 6] [115415] +11:55:08 [ 13] [ 4] [0320] +11:55:08 [ 14] [ 4] [4912] +11:55:08 [ 15] [ 4] [0320] +11:55:08 [ 18] [ 4] [6011] +11:55:08 [ 19] [ 3] [418] +11:55:08 [ 22] [ 3] [021] +11:55:08 [ 25] [ 2] [01] +11:55:08 [ 28] [ 9] [D00002000] +11:55:08 [ 32] [ 6] [180893] +11:55:08 [ 35] [ 32] [6213545000654396=491212015439966] +11:55:08 [ 37] [ 12] [507904268803] +11:55:08 [ 41] [ 8] [0441VT52] +11:55:08 [ 42] [ 15] [999999 ] +11:55:08 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:55:08 [ 49] [ 3] [418] +11:55:08 [ 52] [ 16] [6FF04ACE4DC0DDC7] +11:55:08 ============================================================================ +11:55:08 + + +waiting on router queue for slot.... +11:55:08 Sending to : +11:55:08 ============================================================================ +11:55:08 Sending to : +11:55:08 ============================================================================ +11:55:08 ============================================================================ +11:55:08 Slot Id : <469> +11:55:08 Transaction Type : REQUEST +11:55:08 Received From : +11:55:08 ============================================================================ +11:55:08 FNo. Len. Field Value +11:55:08 ============================================================================ +11:55:08 [ 1] [ 4] [0200] +11:55:08 [ 2] [ 16] [6213545000654396] +11:55:08 [ 3] [ 6] [010000] +11:55:08 [ 4] [ 12] [000010000000] +11:55:08 [ 7] [ 10] [0320045415] +11:55:08 [ 11] [ 6] [268803] +11:55:08 [ 12] [ 6] [115415] +11:55:08 [ 13] [ 4] [0320] +11:55:08 [ 14] [ 4] [4912] +11:55:08 [ 15] [ 4] [0320] +11:55:08 [ 18] [ 4] [6011] +11:55:08 [ 19] [ 3] [418] +11:55:08 [ 22] [ 3] [021] +11:55:08 [ 25] [ 2] [01] +11:55:08 [ 28] [ 9] [D00002000] +11:55:08 [ 32] [ 6] [180893] +11:55:08 [ 35] [ 32] [6213545000654396=491212015439966] +11:55:08 [ 37] [ 12] [507904268803] +11:55:08 [ 41] [ 8] [0441VT52] +11:55:08 [ 42] [ 15] [999999 ] +11:55:08 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:55:08 [ 49] [ 3] [418] +11:55:08 [ 52] [ 16] [6FF04ACE4DC0DDC7] +11:55:08 ============================================================================ +11:55:08 + + +waiting on router queue for slot.... +11:55:08 Sending to : +11:55:08 ============================================================================ +11:55:08 ============================================================================ +11:55:08 Slot Id : <469> +11:55:08 Transaction Type : REQUEST +11:55:08 Received From : +11:55:08 ============================================================================ +11:55:08 FNo. Len. Field Value +11:55:08 ============================================================================ +11:55:08 [ 1] [ 4] [0200] +11:55:08 [ 2] [ 16] [6213545000654396] +11:55:08 [ 3] [ 6] [010000] +11:55:08 [ 4] [ 12] [000010000000] +11:55:08 [ 7] [ 10] [0320045415] +11:55:08 [ 11] [ 6] [268803] +11:55:08 [ 12] [ 6] [115415] +11:55:08 [ 13] [ 4] [0320] +11:55:08 [ 14] [ 4] [4912] +11:55:08 [ 15] [ 4] [0320] +11:55:08 [ 18] [ 4] [6011] +11:55:08 [ 19] [ 3] [418] +11:55:08 [ 22] [ 3] [021] +11:55:08 [ 25] [ 2] [01] +11:55:08 [ 28] [ 9] [D00002000] +11:55:08 [ 32] [ 6] [180893] +11:55:08 [ 35] [ 32] [6213545000654396=491212015439966] +11:55:08 [ 37] [ 12] [507904268803] +11:55:08 [ 41] [ 8] [0441VT52] +11:55:08 [ 42] [ 15] [999999 ] +11:55:08 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:55:08 [ 49] [ 3] [418] +11:55:08 [ 52] [ 16] [3F05FFA2A2394CAC] +11:55:08 ============================================================================ +11:55:08 + + +waiting on router queue for slot.... +11:55:08 Sending to : <0> +11:55:08 ============================================================================ +11:55:09 ============================================================================ +11:55:09 Slot Id : <469> +11:55:09 Transaction Type : RESPONSE +11:55:09 Received From : +11:55:09 ============================================================================ +11:55:09 FNo. Len. Field Value +11:55:09 ============================================================================ +11:55:09 [ 1] [ 4] [0210] +11:55:09 [ 2] [ 16] [6213545000654396] +11:55:09 [ 3] [ 6] [010000] +11:55:09 [ 4] [ 12] [000010000000] +11:55:09 [ 7] [ 10] [0320045415] +11:55:09 [ 11] [ 6] [268803] +11:55:09 [ 12] [ 6] [115415] +11:55:09 [ 13] [ 4] [0320] +11:55:09 [ 15] [ 4] [0320] +11:55:09 [ 18] [ 4] [6011] +11:55:09 [ 19] [ 3] [418] +11:55:09 [ 32] [ 6] [180893] +11:55:09 [ 35] [ 32] [6213545000654396=491212015439966] +11:55:09 [ 37] [ 12] [507904268803] +11:55:09 [ 38] [ 6] [502211] +11:55:09 [ 39] [ 2] [00] +11:55:09 [ 41] [ 8] [0441VT52] +11:55:09 [ 49] [ 3] [418] +11:55:09 [ 54] [ 40] [0001418C0000158613760002418C000015861376] +11:55:09 ============================================================================ +11:55:09 Sending to : +11:55:09 ============================================================================ +11:55:09 + + +waiting on router queue for slot.... +11:55:10 ============================================================================ +11:55:10 Slot Id : <469> +11:55:10 Transaction Type : RESPONSE +11:55:10 Received From : +11:55:10 ============================================================================ +11:55:10 FNo. Len. Field Value +11:55:10 ============================================================================ +11:55:10 [ 1] [ 4] [0210] +11:55:10 [ 2] [ 16] [6213545000654396] +11:55:10 [ 3] [ 6] [010000] +11:55:10 [ 4] [ 12] [000010000000] +11:55:10 [ 7] [ 10] [0320045415] +11:55:10 [ 11] [ 6] [268803] +11:55:10 [ 12] [ 6] [115415] +11:55:10 [ 13] [ 4] [0320] +11:55:10 [ 15] [ 4] [0320] +11:55:10 [ 18] [ 4] [6011] +11:55:10 [ 19] [ 3] [418] +11:55:10 [ 32] [ 6] [180893] +11:55:10 [ 35] [ 32] [6213545000654396=491212015439966] +11:55:10 [ 37] [ 12] [507904268803] +11:55:10 [ 38] [ 6] [502211] +11:55:10 [ 39] [ 2] [00] +11:55:10 [ 41] [ 8] [0441VT52] +11:55:10 [ 49] [ 3] [418] +11:55:10 [ 54] [ 40] [0001418C0000158613760002418C000015861376] +11:55:10 ============================================================================ +11:55:10 Calculate Source COMM Id = 2 +11:55:10 ============================================================================ +11:55:10 + + +waiting on router queue for slot.... +11:55:13 ============================================================================ +11:55:13 Slot Id : <22> +11:55:13 Transaction Type : REQUEST +11:55:13 Received From : +11:55:13 ============================================================================ +11:55:13 FNo. Len. Field Value +11:55:13 ============================================================================ +11:55:13 [ 1] [ 4] [0200] +11:55:13 [ 2] [ 16] [6213544002216395] +11:55:13 [ 3] [ 6] [010000] +11:55:13 [ 4] [ 12] [000010000000] +11:55:13 [ 7] [ 10] [0320115303] +11:55:13 [ 11] [ 6] [942726] +11:55:13 [ 12] [ 6] [115303] +11:55:13 [ 13] [ 4] [0320] +11:55:13 [ 15] [ 4] [0320] +11:55:13 [ 18] [ 4] [6011] +11:55:13 [ 19] [ 3] [418] +11:55:13 [ 22] [ 3] [021] +11:55:13 [ 25] [ 2] [01] +11:55:13 [ 28] [ 9] [D00002000] +11:55:13 [ 32] [ 6] [668899] +11:55:13 [ 35] [ 32] [6213544002216395=491212011639606] +11:55:13 [ 37] [ 12] [507902435628] +11:55:13 [ 41] [ 8] [03020031] +11:55:13 [ 42] [ 15] [APT ] +11:55:13 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:55:13 [ 49] [ 3] [418] +11:55:13 [ 52] [ 16] [A902BE36CA94FB68] +11:55:13 ============================================================================ +11:55:13 + + +waiting on router queue for slot.... +11:55:13 Sending to : +11:55:13 ============================================================================ +11:55:13 Sending to : +11:55:13 ============================================================================ +11:55:13 ============================================================================ +11:55:13 Slot Id : <22> +11:55:13 Transaction Type : REQUEST +11:55:13 Received From : +11:55:13 ============================================================================ +11:55:13 FNo. Len. Field Value +11:55:13 ============================================================================ +11:55:13 [ 1] [ 4] [0200] +11:55:13 [ 2] [ 16] [6213544002216395] +11:55:13 [ 3] [ 6] [010000] +11:55:13 [ 4] [ 12] [000010000000] +11:55:13 [ 7] [ 10] [0320115303] +11:55:13 [ 11] [ 6] [942726] +11:55:13 [ 12] [ 6] [115303] +11:55:13 [ 13] [ 4] [0320] +11:55:13 [ 15] [ 4] [0320] +11:55:13 [ 18] [ 4] [6011] +11:55:13 [ 19] [ 3] [418] +11:55:13 [ 22] [ 3] [021] +11:55:13 [ 25] [ 2] [01] +11:55:13 [ 28] [ 9] [D00002000] +11:55:13 [ 32] [ 6] [668899] +11:55:13 [ 35] [ 32] [6213544002216395=491212011639606] +11:55:13 [ 37] [ 12] [507902435628] +11:55:13 [ 41] [ 8] [03020031] +11:55:13 [ 42] [ 15] [APT ] +11:55:13 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:55:13 [ 49] [ 3] [418] +11:55:13 [ 52] [ 16] [A902BE36CA94FB68] +11:55:13 ============================================================================ +11:55:13 + + +waiting on router queue for slot.... +11:55:13 Sending to : +11:55:13 ============================================================================ +11:55:13 ============================================================================ +11:55:13 Slot Id : <22> +11:55:13 Transaction Type : REQUEST +11:55:13 Received From : +11:55:13 ============================================================================ +11:55:13 FNo. Len. Field Value +11:55:13 ============================================================================ +11:55:13 [ 1] [ 4] [0200] +11:55:13 [ 2] [ 16] [6213544002216395] +11:55:13 [ 3] [ 6] [010000] +11:55:13 [ 4] [ 12] [000010000000] +11:55:13 [ 7] [ 10] [0320115303] +11:55:13 [ 11] [ 6] [942726] +11:55:13 [ 12] [ 6] [115303] +11:55:13 [ 13] [ 4] [0320] +11:55:13 [ 15] [ 4] [0320] +11:55:13 [ 18] [ 4] [6011] +11:55:13 [ 19] [ 3] [418] +11:55:13 [ 22] [ 3] [021] +11:55:13 [ 25] [ 2] [01] +11:55:13 [ 28] [ 9] [D00002000] +11:55:13 [ 32] [ 6] [668899] +11:55:13 [ 35] [ 32] [6213544002216395=491212011639606] +11:55:13 [ 37] [ 12] [507902435628] +11:55:13 [ 41] [ 8] [03020031] +11:55:13 [ 42] [ 15] [APT ] +11:55:13 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:55:13 [ 49] [ 3] [418] +11:55:13 [ 52] [ 16] [3C8731089A02C3A4] +11:55:13 ============================================================================ +11:55:13 + + +waiting on router queue for slot.... +11:55:13 Sending to : <0> +11:55:13 ============================================================================ +11:55:13 ============================================================================ +11:55:13 Slot Id : <22> +11:55:13 Transaction Type : RESPONSE +11:55:13 Received From : +11:55:13 ============================================================================ +11:55:13 FNo. Len. Field Value +11:55:13 ============================================================================ +11:55:13 [ 1] [ 4] [0210] +11:55:13 [ 2] [ 16] [6213544002216395] +11:55:13 [ 3] [ 6] [010000] +11:55:13 [ 4] [ 12] [000010000000] +11:55:13 [ 7] [ 10] [0320115303] +11:55:13 [ 11] [ 6] [942726] +11:55:13 [ 12] [ 6] [115303] +11:55:13 [ 13] [ 4] [0320] +11:55:13 [ 15] [ 4] [0320] +11:55:13 [ 18] [ 4] [6011] +11:55:13 [ 19] [ 3] [418] +11:55:13 [ 32] [ 6] [668899] +11:55:13 [ 35] [ 32] [6213544002216395=491212011639606] +11:55:13 [ 37] [ 12] [507902435628] +11:55:13 [ 38] [ 6] [124088] +11:55:13 [ 39] [ 2] [00] +11:55:13 [ 41] [ 8] [03020031] +11:55:13 [ 49] [ 3] [418] +11:55:13 [ 54] [ 40] [0001418C0006986000000002418C000698600000] +11:55:13 ============================================================================ +11:55:13 Sending to : +11:55:13 ============================================================================ +11:55:13 + + +waiting on router queue for slot.... +11:55:15 ============================================================================ +11:55:15 Slot Id : <22> +11:55:15 Transaction Type : RESPONSE +11:55:15 Received From : +11:55:15 ============================================================================ +11:55:15 FNo. Len. Field Value +11:55:15 ============================================================================ +11:55:15 [ 1] [ 4] [0210] +11:55:15 [ 2] [ 16] [6213544002216395] +11:55:15 [ 3] [ 6] [010000] +11:55:15 [ 4] [ 12] [000010000000] +11:55:15 [ 7] [ 10] [0320115303] +11:55:15 [ 11] [ 6] [942726] +11:55:15 [ 12] [ 6] [115303] +11:55:15 [ 13] [ 4] [0320] +11:55:15 [ 15] [ 4] [0320] +11:55:15 [ 18] [ 4] [6011] +11:55:15 [ 19] [ 3] [418] +11:55:15 [ 32] [ 6] [668899] +11:55:15 [ 35] [ 32] [6213544002216395=491212011639606] +11:55:15 [ 37] [ 12] [507902435628] +11:55:15 [ 38] [ 6] [124088] +11:55:15 [ 39] [ 2] [00] +11:55:15 [ 41] [ 8] [03020031] +11:55:15 [ 49] [ 3] [418] +11:55:15 [ 54] [ 40] [0001418C0006986000000002418C000698600000] +11:55:15 ============================================================================ +11:55:15 Calculate Source COMM Id = 4 +11:55:15 ============================================================================ +11:55:15 + + +waiting on router queue for slot.... +11:55:23 ============================================================================ +11:55:23 Slot Id : <494> +11:55:23 Transaction Type : REQUEST +11:55:23 Received From : +11:55:23 ============================================================================ +11:55:23 FNo. Len. Field Value +11:55:23 ============================================================================ +11:55:23 [ 1] [ 4] [0800] +11:55:23 [ 7] [ 10] [0320045431] +11:55:23 [ 11] [ 6] [156185] +11:55:23 [ 70] [ 3] [301] +11:55:23 ============================================================================ +11:55:23 + + +waiting on router queue for slot.... +11:55:23 Sending to : +11:55:23 ============================================================================ +11:55:23 ============================================================================ +11:55:23 Slot Id : <494> +11:55:23 Transaction Type : RESPONSE +11:55:23 Received From : +11:55:23 ============================================================================ +11:55:23 FNo. Len. Field Value +11:55:23 ============================================================================ +11:55:23 [ 1] [ 4] [0810] +11:55:23 [ 7] [ 10] [0320045431] +11:55:23 [ 11] [ 6] [156185] +11:55:23 [ 39] [ 2] [00] +11:55:23 [ 70] [ 3] [301] +11:55:23 ============================================================================ +11:55:23 Calculate Source COMM Id = 2 +11:55:23 ============================================================================ +11:55:23 + + +waiting on router queue for slot.... +11:55:32 ============================================================================ +11:55:32 Slot Id : <491> +11:55:32 Transaction Type : REQUEST +11:55:32 Received From : +11:55:32 ============================================================================ +11:55:32 FNo. Len. Field Value +11:55:32 ============================================================================ +11:55:32 [ 1] [ 4] [0200] +11:55:32 [ 2] [ 16] [1808930600001135] +11:55:32 [ 3] [ 6] [011000] +11:55:32 [ 4] [ 12] [000010000000] +11:55:32 [ 7] [ 10] [0320120320] +11:55:32 [ 11] [ 6] [010419] +11:55:32 [ 12] [ 6] [120320] +11:55:32 [ 13] [ 4] [0320] +11:55:32 [ 14] [ 4] [1803] +11:55:32 [ 15] [ 4] [0320] +11:55:32 [ 18] [ 4] [6011] +11:55:32 [ 22] [ 3] [900] +11:55:32 [ 25] [ 2] [02] +11:55:32 [ 28] [ 9] [D00002000] +11:55:32 [ 32] [ 6] [220699] +11:55:32 [ 35] [ 27] [1808930600001135=1803500835] +11:55:32 [ 37] [ 12] [507900220652] +11:55:32 [ 41] [ 8] [05000200] +11:55:32 [ 42] [ 15] [APTRA ] +11:55:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:55:32 [ 49] [ 3] [418] +11:55:32 [ 52] [ 16] [5E9AD63E8BF12CFF] +11:55:32 ============================================================================ +11:55:32 + + +waiting on router queue for slot.... +11:55:32 Sending to : +11:55:32 ============================================================================ +11:55:32 Sending to : +11:55:32 ============================================================================ +11:55:33 ============================================================================ +11:55:33 Slot Id : <491> +11:55:33 Transaction Type : REQUEST +11:55:33 Received From : +11:55:33 ============================================================================ +11:55:33 FNo. Len. Field Value +11:55:33 ============================================================================ +11:55:33 [ 1] [ 4] [0200] +11:55:33 [ 2] [ 16] [1808930600001135] +11:55:33 [ 3] [ 6] [011000] +11:55:33 [ 4] [ 12] [000010000000] +11:55:33 [ 7] [ 10] [0320120320] +11:55:33 [ 11] [ 6] [010419] +11:55:33 [ 12] [ 6] [120320] +11:55:33 [ 13] [ 4] [0320] +11:55:33 [ 14] [ 4] [1803] +11:55:33 [ 15] [ 4] [0320] +11:55:33 [ 18] [ 4] [6011] +11:55:33 [ 22] [ 3] [900] +11:55:33 [ 25] [ 2] [02] +11:55:33 [ 28] [ 9] [D00002000] +11:55:33 [ 32] [ 6] [220699] +11:55:33 [ 35] [ 27] [1808930600001135=1803500835] +11:55:33 [ 37] [ 12] [507900220652] +11:55:33 [ 41] [ 8] [05000200] +11:55:33 [ 42] [ 15] [APTRA ] +11:55:33 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:55:33 [ 49] [ 3] [418] +11:55:33 [ 52] [ 16] [5E9AD63E8BF12CFF] +11:55:33 ============================================================================ +11:55:33 + + +waiting on router queue for slot.... +11:55:33 Sending to : +11:55:33 ============================================================================ +11:55:33 ============================================================================ +11:55:33 Slot Id : <491> +11:55:33 Transaction Type : REQUEST +11:55:33 Received From : +11:55:33 ============================================================================ +11:55:33 FNo. Len. Field Value +11:55:33 ============================================================================ +11:55:33 [ 1] [ 4] [0200] +11:55:33 [ 2] [ 16] [1808930600001135] +11:55:33 [ 3] [ 6] [011000] +11:55:33 [ 4] [ 12] [000010000000] +11:55:33 [ 7] [ 10] [0320120320] +11:55:33 [ 11] [ 6] [010419] +11:55:33 [ 12] [ 6] [120320] +11:55:33 [ 13] [ 4] [0320] +11:55:33 [ 14] [ 4] [1803] +11:55:33 [ 15] [ 4] [0320] +11:55:33 [ 18] [ 4] [6011] +11:55:33 [ 22] [ 3] [900] +11:55:33 [ 25] [ 2] [02] +11:55:33 [ 28] [ 9] [D00002000] +11:55:33 [ 32] [ 6] [220699] +11:55:33 [ 35] [ 27] [1808930600001135=1803500835] +11:55:33 [ 37] [ 12] [507900220652] +11:55:33 [ 41] [ 8] [05000200] +11:55:33 [ 42] [ 15] [APTRA ] +11:55:33 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:55:33 [ 49] [ 3] [418] +11:55:33 [ 52] [ 16] [D08E9FF18286BB4F] +11:55:33 ============================================================================ +11:55:33 + + +waiting on router queue for slot.... +11:55:33 Sending to : <2> +11:55:33 ============================================================================ +11:55:38 ============================================================================ +11:55:38 Slot Id : <491> +11:55:38 Transaction Type : RESPONSE +11:55:38 Received From : +11:55:38 ============================================================================ +11:55:38 FNo. Len. Field Value +11:55:38 ============================================================================ +11:55:38 [ 1] [ 4] [0210] +11:55:38 [ 2] [ 16] [1808930600001135] +11:55:38 [ 3] [ 6] [011000] +11:55:38 [ 4] [ 12] [000010000000] +11:55:38 [ 6] [ 12] [000010000000] +11:55:38 [ 7] [ 10] [0320120320] +11:55:38 [ 11] [ 6] [010419] +11:55:38 [ 12] [ 6] [120320] +11:55:38 [ 13] [ 4] [0320] +11:55:38 [ 14] [ 4] [1803] +11:55:38 [ 18] [ 4] [6011] +11:55:38 [ 19] [ 3] [418] +11:55:38 [ 22] [ 3] [021] +11:55:38 [ 32] [ 6] [220699] +11:55:38 [ 35] [ 27] [1808930600001135=1803500835] +11:55:38 [ 37] [ 12] [507900220652] +11:55:38 [ 38] [ 6] [010419] +11:55:38 [ 39] [ 2] [51] +11:55:38 [ 41] [ 8] [05000200] +11:55:38 [ 49] [ 3] [418] +11:55:38 [ 52] [ 16] [D08E9FF18286BB4F] +11:55:38 ============================================================================ +11:55:38 Sending to : +11:55:38 ============================================================================ +11:55:38 + + +waiting on router queue for slot.... +11:55:39 ============================================================================ +11:55:39 Slot Id : <491> +11:55:39 Transaction Type : RESPONSE +11:55:39 Received From : +11:55:39 ============================================================================ +11:55:39 FNo. Len. Field Value +11:55:39 ============================================================================ +11:55:39 [ 1] [ 4] [0210] +11:55:39 [ 2] [ 16] [1808930600001135] +11:55:39 [ 3] [ 6] [011000] +11:55:39 [ 4] [ 12] [000010000000] +11:55:39 [ 6] [ 12] [000010000000] +11:55:39 [ 7] [ 10] [0320120320] +11:55:39 [ 11] [ 6] [010419] +11:55:39 [ 12] [ 6] [120320] +11:55:39 [ 13] [ 4] [0320] +11:55:39 [ 14] [ 4] [1803] +11:55:39 [ 18] [ 4] [6011] +11:55:39 [ 19] [ 3] [418] +11:55:39 [ 22] [ 3] [021] +11:55:39 [ 32] [ 6] [220699] +11:55:39 [ 35] [ 27] [1808930600001135=1803500835] +11:55:39 [ 37] [ 12] [507900220652] +11:55:39 [ 38] [ 6] [010419] +11:55:39 [ 39] [ 2] [51] +11:55:39 [ 41] [ 8] [05000200] +11:55:39 [ 49] [ 3] [418] +11:55:39 [ 52] [ 16] [D08E9FF18286BB4F] +11:55:39 ============================================================================ +11:55:39 Calculate Source COMM Id = 1 +11:55:39 ============================================================================ +11:55:39 + + +waiting on router queue for slot.... +11:55:42 ============================================================================ +11:55:42 Slot Id : <499> +11:55:42 Transaction Type : REQUEST +11:55:42 Received From : +11:55:42 ============================================================================ +11:55:42 FNo. Len. Field Value +11:55:42 ============================================================================ +11:55:42 [ 1] [ 4] [0800] +11:55:42 [ 2] [ 5] [02531] +11:55:42 [ 3] [ 6] [579118] +11:55:42 [ 7] [ 10] [0320045542] +11:55:42 [ 11] [ 6] [807104] +11:55:42 [ 15] [ 10] [0320045542] +11:55:42 [ 37] [ 11] [57911807104] +11:55:42 [ 70] [ 3] [001] +11:55:42 ============================================================================ +11:55:42 + + +waiting on router queue for slot.... +11:55:42 ============================================================================ +11:55:42 Slot Id : <499> +11:55:42 Transaction Type : RESPONSE +11:55:42 Received From : +11:55:42 ============================================================================ +11:55:42 FNo. Len. Field Value +11:55:42 ============================================================================ +11:55:42 [ 1] [ 4] [0810] +11:55:42 [ 7] [ 10] [0320045542] +11:55:42 [ 11] [ 6] [807104] +11:55:42 [ 15] [ 4] [0320] +11:55:42 [ 37] [ 12] [57911807104] +11:55:42 [ 39] [ 2] [00] +11:55:42 [ 70] [ 3] [001] +11:55:42 ============================================================================ +11:55:42 Sending to : +11:55:42 ============================================================================ +11:55:42 + + +waiting on router queue for slot.... +11:55:44 ============================================================================ +11:55:44 Slot Id : <17> +11:55:44 Transaction Type : REQUEST +11:55:44 Received From : +11:55:44 ============================================================================ +11:55:44 FNo. Len. Field Value +11:55:44 ============================================================================ +11:55:44 [ 1] [ 4] [0200] +11:55:44 [ 2] [ 16] [6688990040137109] +11:55:44 [ 3] [ 6] [010000] +11:55:44 [ 4] [ 12] [000010000000] +11:55:44 [ 7] [ 10] [0320045451] +11:55:44 [ 11] [ 6] [268808] +11:55:44 [ 12] [ 6] [115451] +11:55:44 [ 13] [ 4] [0320] +11:55:44 [ 14] [ 4] [9804] +11:55:44 [ 15] [ 4] [0320] +11:55:44 [ 18] [ 4] [6011] +11:55:44 [ 19] [ 3] [418] +11:55:44 [ 22] [ 3] [021] +11:55:44 [ 25] [ 2] [01] +11:55:44 [ 28] [ 9] [D00002000] +11:55:44 [ 32] [ 6] [180893] +11:55:44 [ 35] [ 37] [6688990040137109=98041261386140400000] +11:55:44 [ 37] [ 12] [507904268808] +11:55:44 [ 41] [ 8] [0321LNTV] +11:55:44 [ 42] [ 15] [999999 ] +11:55:44 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +11:55:44 [ 49] [ 3] [418] +11:55:44 [ 52] [ 16] [1D5C44CAF7591B94] +11:55:44 ============================================================================ +11:55:44 + + +waiting on router queue for slot.... +11:55:44 Sending to : +11:55:44 ============================================================================ +11:55:44 Sending to : +11:55:44 ============================================================================ +11:55:44 ============================================================================ +11:55:44 Slot Id : <17> +11:55:44 Transaction Type : REQUEST +11:55:44 Received From : +11:55:44 ============================================================================ +11:55:44 FNo. Len. Field Value +11:55:44 ============================================================================ +11:55:44 [ 1] [ 4] [0200] +11:55:44 [ 2] [ 16] [6688990040137109] +11:55:44 [ 3] [ 6] [010000] +11:55:44 [ 4] [ 12] [000010000000] +11:55:44 [ 7] [ 10] [0320045451] +11:55:44 [ 11] [ 6] [268808] +11:55:44 [ 12] [ 6] [115451] +11:55:44 [ 13] [ 4] [0320] +11:55:44 [ 14] [ 4] [9804] +11:55:44 [ 15] [ 4] [0320] +11:55:44 [ 18] [ 4] [6011] +11:55:44 [ 19] [ 3] [418] +11:55:44 [ 22] [ 3] [021] +11:55:44 [ 25] [ 2] [01] +11:55:44 [ 28] [ 9] [D00002000] +11:55:44 [ 32] [ 6] [180893] +11:55:44 [ 35] [ 37] [6688990040137109=98041261386140400000] +11:55:44 [ 37] [ 12] [507904268808] +11:55:44 [ 41] [ 8] [0321LNTV] +11:55:44 [ 42] [ 15] [999999 ] +11:55:44 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +11:55:44 [ 49] [ 3] [418] +11:55:44 [ 52] [ 16] [1D5C44CAF7591B94] +11:55:44 ============================================================================ +11:55:44 + + +waiting on router queue for slot.... +11:55:44 Sending to : +11:55:44 ============================================================================ +11:55:44 ============================================================================ +11:55:44 Slot Id : <17> +11:55:44 Transaction Type : REQUEST +11:55:44 Received From : +11:55:44 ============================================================================ +11:55:44 FNo. Len. Field Value +11:55:44 ============================================================================ +11:55:44 [ 1] [ 4] [0200] +11:55:44 [ 2] [ 16] [6688990040137109] +11:55:44 [ 3] [ 6] [010000] +11:55:44 [ 4] [ 12] [000010000000] +11:55:44 [ 7] [ 10] [0320045451] +11:55:44 [ 11] [ 6] [268808] +11:55:44 [ 12] [ 6] [115451] +11:55:44 [ 13] [ 4] [0320] +11:55:44 [ 14] [ 4] [9804] +11:55:44 [ 15] [ 4] [0320] +11:55:44 [ 18] [ 4] [6011] +11:55:44 [ 19] [ 3] [418] +11:55:44 [ 22] [ 3] [021] +11:55:44 [ 25] [ 2] [01] +11:55:44 [ 28] [ 9] [D00002000] +11:55:44 [ 32] [ 6] [180893] +11:55:44 [ 35] [ 37] [6688990040137109=98041261386140400000] +11:55:44 [ 37] [ 12] [507904268808] +11:55:44 [ 41] [ 8] [0321LNTV] +11:55:44 [ 42] [ 15] [999999 ] +11:55:44 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +11:55:44 [ 49] [ 3] [418] +11:55:44 [ 52] [ 16] [CD4B5A75632B9FD1] +11:55:44 ============================================================================ +11:55:44 + + +waiting on router queue for slot.... +11:55:44 Sending to : <0> +11:55:44 ============================================================================ +11:55:44 ============================================================================ +11:55:44 Slot Id : <17> +11:55:44 Transaction Type : RESPONSE +11:55:44 Received From : +11:55:44 ============================================================================ +11:55:44 FNo. Len. Field Value +11:55:44 ============================================================================ +11:55:44 [ 1] [ 4] [0210] +11:55:44 [ 2] [ 16] [6688990040137109] +11:55:44 [ 3] [ 6] [010000] +11:55:44 [ 4] [ 12] [000010000000] +11:55:44 [ 7] [ 10] [0320045451] +11:55:44 [ 11] [ 6] [268808] +11:55:44 [ 12] [ 6] [115451] +11:55:44 [ 13] [ 4] [0320] +11:55:44 [ 15] [ 4] [0320] +11:55:44 [ 18] [ 4] [6011] +11:55:44 [ 19] [ 3] [418] +11:55:44 [ 22] [ 3] [021] +11:55:44 [ 32] [ 6] [180893] +11:55:44 [ 35] [ 37] [6688990040137109=98041261386140400000] +11:55:44 [ 37] [ 12] [507904268808] +11:55:44 [ 39] [ 2] [14] +11:55:44 [ 41] [ 8] [0321LNTV] +11:55:44 [ 49] [ 3] [418] +11:55:44 ============================================================================ +11:55:44 Sending to : +11:55:44 ============================================================================ +11:55:44 + + +waiting on router queue for slot.... +11:55:45 ============================================================================ +11:55:45 Slot Id : <17> +11:55:45 Transaction Type : RESPONSE +11:55:45 Received From : +11:55:45 ============================================================================ +11:55:45 FNo. Len. Field Value +11:55:45 ============================================================================ +11:55:45 [ 1] [ 4] [0210] +11:55:45 [ 2] [ 16] [6688990040137109] +11:55:45 [ 3] [ 6] [010000] +11:55:45 [ 4] [ 12] [000010000000] +11:55:45 [ 7] [ 10] [0320045451] +11:55:45 [ 11] [ 6] [268808] +11:55:45 [ 12] [ 6] [115451] +11:55:45 [ 13] [ 4] [0320] +11:55:45 [ 15] [ 4] [0320] +11:55:45 [ 18] [ 4] [6011] +11:55:45 [ 19] [ 3] [418] +11:55:45 [ 22] [ 3] [021] +11:55:45 [ 32] [ 6] [180893] +11:55:45 [ 35] [ 37] [6688990040137109=98041261386140400000] +11:55:45 [ 37] [ 12] [507904268808] +11:55:45 [ 39] [ 2] [14] +11:55:45 [ 41] [ 8] [0321LNTV] +11:55:45 [ 49] [ 3] [418] +11:55:45 ============================================================================ +11:55:45 Calculate Source COMM Id = 2 +11:55:45 ============================================================================ +11:55:45 + + +waiting on router queue for slot.... +11:55:51 ============================================================================ +11:55:51 Slot Id : <31> +11:55:51 Transaction Type : REQUEST +11:55:51 Received From : +11:55:51 ============================================================================ +11:55:51 FNo. Len. Field Value +11:55:51 ============================================================================ +11:55:51 [ 1] [ 4] [0200] +11:55:51 [ 2] [ 16] [6213545000754220] +11:55:51 [ 3] [ 6] [010000] +11:55:51 [ 4] [ 12] [000100000000] +11:55:51 [ 7] [ 10] [0320115342] +11:55:51 [ 11] [ 6] [942763] +11:55:51 [ 12] [ 6] [115342] +11:55:51 [ 13] [ 4] [0320] +11:55:51 [ 15] [ 4] [0320] +11:55:51 [ 18] [ 4] [6011] +11:55:51 [ 19] [ 3] [418] +11:55:51 [ 22] [ 3] [021] +11:55:51 [ 25] [ 2] [01] +11:55:51 [ 28] [ 9] [D00002000] +11:55:51 [ 32] [ 6] [668899] +11:55:51 [ 35] [ 32] [6213545000754220=491212015422235] +11:55:51 [ 37] [ 12] [507901422780] +11:55:51 [ 41] [ 8] [03314001] +11:55:51 [ 42] [ 15] [APT ] +11:55:51 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:55:51 [ 49] [ 3] [418] +11:55:51 [ 52] [ 16] [575BB4B74DEB053F] +11:55:51 ============================================================================ +11:55:51 + + +waiting on router queue for slot.... +11:55:51 Sending to : +11:55:51 ============================================================================ +11:55:51 Sending to : +11:55:51 ============================================================================ +11:55:52 ============================================================================ +11:55:52 Slot Id : <31> +11:55:52 Transaction Type : REQUEST +11:55:52 Received From : +11:55:52 ============================================================================ +11:55:52 FNo. Len. Field Value +11:55:52 ============================================================================ +11:55:52 [ 1] [ 4] [0200] +11:55:52 [ 2] [ 16] [6213545000754220] +11:55:52 [ 3] [ 6] [010000] +11:55:52 [ 4] [ 12] [000100000000] +11:55:52 [ 7] [ 10] [0320115342] +11:55:52 [ 11] [ 6] [942763] +11:55:52 [ 12] [ 6] [115342] +11:55:52 [ 13] [ 4] [0320] +11:55:52 [ 15] [ 4] [0320] +11:55:52 [ 18] [ 4] [6011] +11:55:52 [ 19] [ 3] [418] +11:55:52 [ 22] [ 3] [021] +11:55:52 [ 25] [ 2] [01] +11:55:52 [ 28] [ 9] [D00002000] +11:55:52 [ 32] [ 6] [668899] +11:55:52 [ 35] [ 32] [6213545000754220=491212015422235] +11:55:52 [ 37] [ 12] [507901422780] +11:55:52 [ 41] [ 8] [03314001] +11:55:52 [ 42] [ 15] [APT ] +11:55:52 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:55:52 [ 49] [ 3] [418] +11:55:52 [ 52] [ 16] [575BB4B74DEB053F] +11:55:52 ============================================================================ +11:55:52 + + +waiting on router queue for slot.... +11:55:52 Sending to : +11:55:52 ============================================================================ +11:55:52 ============================================================================ +11:55:52 Slot Id : <31> +11:55:52 Transaction Type : REQUEST +11:55:52 Received From : +11:55:52 ============================================================================ +11:55:52 FNo. Len. Field Value +11:55:52 ============================================================================ +11:55:52 [ 1] [ 4] [0200] +11:55:52 [ 2] [ 16] [6213545000754220] +11:55:52 [ 3] [ 6] [010000] +11:55:52 [ 4] [ 12] [000100000000] +11:55:52 [ 7] [ 10] [0320115342] +11:55:52 [ 11] [ 6] [942763] +11:55:52 [ 12] [ 6] [115342] +11:55:52 [ 13] [ 4] [0320] +11:55:52 [ 15] [ 4] [0320] +11:55:52 [ 18] [ 4] [6011] +11:55:52 [ 19] [ 3] [418] +11:55:52 [ 22] [ 3] [021] +11:55:52 [ 25] [ 2] [01] +11:55:52 [ 28] [ 9] [D00002000] +11:55:52 [ 32] [ 6] [668899] +11:55:52 [ 35] [ 32] [6213545000754220=491212015422235] +11:55:52 [ 37] [ 12] [507901422780] +11:55:52 [ 41] [ 8] [03314001] +11:55:52 [ 42] [ 15] [APT ] +11:55:52 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:55:52 [ 49] [ 3] [418] +11:55:52 [ 52] [ 16] [6D6789CDC7EB7E96] +11:55:52 ============================================================================ +11:55:52 + + +waiting on router queue for slot.... +11:55:52 Sending to : <0> +11:55:52 ============================================================================ +11:55:52 ============================================================================ +11:55:52 Slot Id : <31> +11:55:52 Transaction Type : RESPONSE +11:55:52 Received From : +11:55:52 ============================================================================ +11:55:52 FNo. Len. Field Value +11:55:52 ============================================================================ +11:55:52 [ 1] [ 4] [0210] +11:55:52 [ 2] [ 16] [6213545000754220] +11:55:52 [ 3] [ 6] [010000] +11:55:52 [ 4] [ 12] [000100000000] +11:55:52 [ 7] [ 10] [0320115342] +11:55:52 [ 11] [ 6] [942763] +11:55:52 [ 12] [ 6] [115342] +11:55:52 [ 13] [ 4] [0320] +11:55:52 [ 15] [ 4] [0320] +11:55:52 [ 18] [ 4] [6011] +11:55:52 [ 19] [ 3] [418] +11:55:52 [ 32] [ 6] [668899] +11:55:52 [ 35] [ 32] [6213545000754220=491212015422235] +11:55:52 [ 37] [ 12] [507901422780] +11:55:52 [ 38] [ 6] [014808] +11:55:52 [ 39] [ 2] [00] +11:55:52 [ 41] [ 8] [03314001] +11:55:52 [ 49] [ 3] [418] +11:55:52 [ 54] [ 40] [0001418C0017503769710002418C001750376971] +11:55:52 ============================================================================ +11:55:52 Sending to : +11:55:52 ============================================================================ +11:55:52 + + +waiting on router queue for slot.... +11:55:54 ============================================================================ +11:55:54 Slot Id : <31> +11:55:54 Transaction Type : RESPONSE +11:55:54 Received From : +11:55:54 ============================================================================ +11:55:54 FNo. Len. Field Value +11:55:54 ============================================================================ +11:55:54 [ 1] [ 4] [0210] +11:55:54 [ 2] [ 16] [6213545000754220] +11:55:54 [ 3] [ 6] [010000] +11:55:54 [ 4] [ 12] [000100000000] +11:55:54 [ 7] [ 10] [0320115342] +11:55:54 [ 11] [ 6] [942763] +11:55:54 [ 12] [ 6] [115342] +11:55:54 [ 13] [ 4] [0320] +11:55:54 [ 15] [ 4] [0320] +11:55:54 [ 18] [ 4] [6011] +11:55:54 [ 19] [ 3] [418] +11:55:54 [ 32] [ 6] [668899] +11:55:54 [ 35] [ 32] [6213545000754220=491212015422235] +11:55:54 [ 37] [ 12] [507901422780] +11:55:54 [ 38] [ 6] [014808] +11:55:54 [ 39] [ 2] [00] +11:55:54 [ 41] [ 8] [03314001] +11:55:54 [ 49] [ 3] [418] +11:55:54 [ 54] [ 40] [0001418C0017503769710002418C001750376971] +11:55:54 ============================================================================ +11:55:54 Calculate Source COMM Id = 4 +11:55:54 ============================================================================ +11:55:54 + + +waiting on router queue for slot.... +11:55:56 ============================================================================ +11:55:56 Slot Id : <10> +11:55:56 Transaction Type : REQUEST +11:55:56 Received From : +11:55:56 ============================================================================ +11:55:56 FNo. Len. Field Value +11:55:56 ============================================================================ +11:55:56 [ 1] [ 4] [0800] +11:55:56 [ 7] [ 10] [0320045504] +11:55:56 [ 11] [ 6] [156186] +11:55:56 [ 70] [ 3] [301] +11:55:56 ============================================================================ +11:55:56 + + +waiting on router queue for slot.... +11:55:56 Sending to : +11:55:56 ============================================================================ +11:55:56 ============================================================================ +11:55:56 Slot Id : <10> +11:55:56 Transaction Type : RESPONSE +11:55:56 Received From : +11:55:56 ============================================================================ +11:55:56 FNo. Len. Field Value +11:55:56 ============================================================================ +11:55:56 [ 1] [ 4] [0810] +11:55:56 [ 7] [ 10] [0320045504] +11:55:56 [ 11] [ 6] [156186] +11:55:56 [ 39] [ 2] [00] +11:55:56 [ 70] [ 3] [301] +11:55:56 ============================================================================ +11:55:56 Calculate Source COMM Id = 2 +11:55:56 ============================================================================ +11:55:56 + + +waiting on router queue for slot.... +11:56:07 ============================================================================ +11:56:07 Slot Id : <481> +11:56:07 Transaction Type : REQUEST +11:56:07 Received From : +11:56:07 ============================================================================ +11:56:07 FNo. Len. Field Value +11:56:07 ============================================================================ +11:56:07 [ 1] [ 4] [0800] +11:56:07 [ 7] [ 10] [0320045515] +11:56:07 [ 11] [ 6] [156187] +11:56:07 [ 70] [ 3] [301] +11:56:07 ============================================================================ +11:56:07 + + +waiting on router queue for slot.... +11:56:07 Sending to : +11:56:07 ============================================================================ +11:56:07 ============================================================================ +11:56:07 Slot Id : <481> +11:56:07 Transaction Type : RESPONSE +11:56:07 Received From : +11:56:07 ============================================================================ +11:56:07 FNo. Len. Field Value +11:56:07 ============================================================================ +11:56:07 [ 1] [ 4] [0810] +11:56:07 [ 7] [ 10] [0320045515] +11:56:07 [ 11] [ 6] [156187] +11:56:07 [ 39] [ 2] [00] +11:56:07 [ 70] [ 3] [301] +11:56:07 ============================================================================ +11:56:07 Calculate Source COMM Id = 2 +11:56:07 ============================================================================ +11:56:07 + + +waiting on router queue for slot.... +11:56:14 ============================================================================ +11:56:14 Slot Id : <29> +11:56:14 Transaction Type : REQUEST +11:56:14 Received From : +11:56:14 ============================================================================ +11:56:14 FNo. Len. Field Value +11:56:14 ============================================================================ +11:56:14 [ 1] [ 4] [0200] +11:56:14 [ 2] [ 16] [6213545000437743] +11:56:14 [ 3] [ 6] [010000] +11:56:14 [ 4] [ 12] [000100000000] +11:56:14 [ 7] [ 10] [0320045521] +11:56:14 [ 11] [ 6] [268810] +11:56:14 [ 12] [ 6] [115521] +11:56:14 [ 13] [ 4] [0320] +11:56:14 [ 14] [ 4] [4912] +11:56:14 [ 15] [ 4] [0320] +11:56:14 [ 18] [ 4] [6011] +11:56:14 [ 19] [ 3] [418] +11:56:14 [ 22] [ 3] [021] +11:56:14 [ 25] [ 2] [01] +11:56:14 [ 28] [ 9] [D00002000] +11:56:14 [ 32] [ 6] [180893] +11:56:14 [ 35] [ 32] [6213545000437743=491212013774327] +11:56:14 [ 37] [ 12] [507904268810] +11:56:14 [ 41] [ 8] [0441VT52] +11:56:14 [ 42] [ 15] [999999 ] +11:56:14 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:56:14 [ 49] [ 3] [418] +11:56:14 [ 52] [ 16] [BE360230F331D4CB] +11:56:14 ============================================================================ +11:56:14 + + +waiting on router queue for slot.... +11:56:14 Sending to : +11:56:14 ============================================================================ +11:56:14 Sending to : +11:56:14 ============================================================================ +11:56:14 ============================================================================ +11:56:14 Slot Id : <29> +11:56:14 Transaction Type : REQUEST +11:56:14 Received From : +11:56:14 ============================================================================ +11:56:14 FNo. Len. Field Value +11:56:14 ============================================================================ +11:56:14 [ 1] [ 4] [0200] +11:56:14 [ 2] [ 16] [6213545000437743] +11:56:14 [ 3] [ 6] [010000] +11:56:14 [ 4] [ 12] [000100000000] +11:56:14 [ 7] [ 10] [0320045521] +11:56:14 [ 11] [ 6] [268810] +11:56:14 [ 12] [ 6] [115521] +11:56:14 [ 13] [ 4] [0320] +11:56:14 [ 14] [ 4] [4912] +11:56:14 [ 15] [ 4] [0320] +11:56:14 [ 18] [ 4] [6011] +11:56:14 [ 19] [ 3] [418] +11:56:14 [ 22] [ 3] [021] +11:56:14 [ 25] [ 2] [01] +11:56:14 [ 28] [ 9] [D00002000] +11:56:14 [ 32] [ 6] [180893] +11:56:14 [ 35] [ 32] [6213545000437743=491212013774327] +11:56:14 [ 37] [ 12] [507904268810] +11:56:14 [ 41] [ 8] [0441VT52] +11:56:14 [ 42] [ 15] [999999 ] +11:56:14 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:56:14 [ 49] [ 3] [418] +11:56:14 [ 52] [ 16] [BE360230F331D4CB] +11:56:14 ============================================================================ +11:56:14 + + +waiting on router queue for slot.... +11:56:14 Sending to : +11:56:14 ============================================================================ +11:56:14 ============================================================================ +11:56:14 Slot Id : <29> +11:56:14 Transaction Type : REQUEST +11:56:14 Received From : +11:56:14 ============================================================================ +11:56:14 FNo. Len. Field Value +11:56:14 ============================================================================ +11:56:14 [ 1] [ 4] [0200] +11:56:14 [ 2] [ 16] [6213545000437743] +11:56:14 [ 3] [ 6] [010000] +11:56:14 [ 4] [ 12] [000100000000] +11:56:14 [ 7] [ 10] [0320045521] +11:56:14 [ 11] [ 6] [268810] +11:56:14 [ 12] [ 6] [115521] +11:56:14 [ 13] [ 4] [0320] +11:56:14 [ 14] [ 4] [4912] +11:56:14 [ 15] [ 4] [0320] +11:56:14 [ 18] [ 4] [6011] +11:56:14 [ 19] [ 3] [418] +11:56:14 [ 22] [ 3] [021] +11:56:14 [ 25] [ 2] [01] +11:56:14 [ 28] [ 9] [D00002000] +11:56:14 [ 32] [ 6] [180893] +11:56:14 [ 35] [ 32] [6213545000437743=491212013774327] +11:56:14 [ 37] [ 12] [507904268810] +11:56:14 [ 41] [ 8] [0441VT52] +11:56:14 [ 42] [ 15] [999999 ] +11:56:14 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:56:14 [ 49] [ 3] [418] +11:56:14 [ 52] [ 16] [BFA0134D374D633C] +11:56:14 ============================================================================ +11:56:14 + + +waiting on router queue for slot.... +11:56:14 Sending to : <0> +11:56:14 ============================================================================ +11:56:14 ============================================================================ +11:56:14 Slot Id : <29> +11:56:14 Transaction Type : RESPONSE +11:56:14 Received From : +11:56:14 ============================================================================ +11:56:14 FNo. Len. Field Value +11:56:14 ============================================================================ +11:56:14 [ 1] [ 4] [0210] +11:56:14 [ 2] [ 16] [6213545000437743] +11:56:14 [ 3] [ 6] [010000] +11:56:14 [ 4] [ 12] [000100000000] +11:56:14 [ 7] [ 10] [0320045521] +11:56:14 [ 11] [ 6] [268810] +11:56:14 [ 12] [ 6] [115521] +11:56:14 [ 13] [ 4] [0320] +11:56:14 [ 15] [ 4] [0320] +11:56:14 [ 18] [ 4] [6011] +11:56:14 [ 19] [ 3] [418] +11:56:14 [ 32] [ 6] [180893] +11:56:14 [ 35] [ 32] [6213545000437743=491212013774327] +11:56:14 [ 37] [ 12] [507904268810] +11:56:14 [ 38] [ 6] [150914] +11:56:14 [ 39] [ 2] [00] +11:56:14 [ 41] [ 8] [0441VT52] +11:56:14 [ 49] [ 3] [418] +11:56:14 [ 54] [ 40] [0001418C0000750246040002418C000075024604] +11:56:14 ============================================================================ +11:56:14 Sending to : +11:56:14 ============================================================================ +11:56:14 + + +waiting on router queue for slot.... +11:56:16 ============================================================================ +11:56:16 Slot Id : <29> +11:56:16 Transaction Type : RESPONSE +11:56:16 Received From : +11:56:16 ============================================================================ +11:56:16 FNo. Len. Field Value +11:56:16 ============================================================================ +11:56:16 [ 1] [ 4] [0210] +11:56:16 [ 2] [ 16] [6213545000437743] +11:56:16 [ 3] [ 6] [010000] +11:56:16 [ 4] [ 12] [000100000000] +11:56:16 [ 7] [ 10] [0320045521] +11:56:16 [ 11] [ 6] [268810] +11:56:16 [ 12] [ 6] [115521] +11:56:16 [ 13] [ 4] [0320] +11:56:16 [ 15] [ 4] [0320] +11:56:16 [ 18] [ 4] [6011] +11:56:16 [ 19] [ 3] [418] +11:56:16 [ 32] [ 6] [180893] +11:56:16 [ 35] [ 32] [6213545000437743=491212013774327] +11:56:16 [ 37] [ 12] [507904268810] +11:56:16 [ 38] [ 6] [150914] +11:56:16 [ 39] [ 2] [00] +11:56:16 [ 41] [ 8] [0441VT52] +11:56:16 [ 49] [ 3] [418] +11:56:16 [ 54] [ 40] [0001418C0000750246040002418C000075024604] +11:56:16 ============================================================================ +11:56:16 Calculate Source COMM Id = 2 +11:56:16 ============================================================================ +11:56:16 + + +waiting on router queue for slot.... +11:56:17 ============================================================================ +11:56:17 Slot Id : <3> +11:56:17 Transaction Type : REQUEST +11:56:17 Received From : +11:56:17 ============================================================================ +11:56:17 FNo. Len. Field Value +11:56:17 ============================================================================ +11:56:17 [ 1] [ 4] [0200] +11:56:17 [ 2] [ 16] [6688990107058701] +11:56:17 [ 3] [ 6] [011000] +11:56:17 [ 4] [ 12] [000010000000] +11:56:17 [ 7] [ 10] [0320115612] +11:56:17 [ 11] [ 6] [737340] +11:56:17 [ 12] [ 6] [115612] +11:56:17 [ 13] [ 4] [0320] +11:56:17 [ 15] [ 4] [0320] +11:56:17 [ 18] [ 4] [6011] +11:56:17 [ 22] [ 3] [900] +11:56:17 [ 25] [ 2] [02] +11:56:17 [ 28] [ 9] [D00002000] +11:56:17 [ 32] [ 6] [621354] +11:56:17 [ 35] [ 37] [6688990107058701=44011231870143800000] +11:56:17 [ 37] [ 12] [507902682305] +11:56:17 [ 41] [ 8] [14000700] +11:56:17 [ 42] [ 15] [NATIVE ] +11:56:17 [ 43] [ 40] [CEMENT FACTORY Vangvieng LAO] +11:56:17 [ 49] [ 3] [418] +11:56:17 [ 52] [ 16] [A01AE972DBD9A937] +11:56:17 ============================================================================ +11:56:17 + + +waiting on router queue for slot.... +11:56:17 Sending to : +11:56:17 ============================================================================ +11:56:17 Sending to : +11:56:17 ============================================================================ +11:56:17 ============================================================================ +11:56:17 Slot Id : <3> +11:56:17 Transaction Type : REQUEST +11:56:17 Received From : +11:56:17 ============================================================================ +11:56:17 FNo. Len. Field Value +11:56:17 ============================================================================ +11:56:17 [ 1] [ 4] [0200] +11:56:17 [ 2] [ 16] [6688990107058701] +11:56:17 [ 3] [ 6] [011000] +11:56:17 [ 4] [ 12] [000010000000] +11:56:17 [ 7] [ 10] [0320115612] +11:56:17 [ 11] [ 6] [737340] +11:56:17 [ 12] [ 6] [115612] +11:56:17 [ 13] [ 4] [0320] +11:56:17 [ 15] [ 4] [0320] +11:56:17 [ 18] [ 4] [6011] +11:56:17 [ 22] [ 3] [900] +11:56:17 [ 25] [ 2] [02] +11:56:17 [ 28] [ 9] [D00002000] +11:56:17 [ 32] [ 6] [621354] +11:56:17 [ 35] [ 37] [6688990107058701=44011231870143800000] +11:56:17 [ 37] [ 12] [507902682305] +11:56:17 [ 41] [ 8] [14000700] +11:56:17 [ 42] [ 15] [NATIVE ] +11:56:17 [ 43] [ 40] [CEMENT FACTORY Vangvieng LAO] +11:56:17 [ 49] [ 3] [418] +11:56:17 [ 52] [ 16] [A01AE972DBD9A937] +11:56:17 ============================================================================ +11:56:17 + + +waiting on router queue for slot.... +11:56:17 Sending to : +11:56:17 ============================================================================ +11:56:17 ============================================================================ +11:56:17 Slot Id : <3> +11:56:17 Transaction Type : REQUEST +11:56:17 Received From : +11:56:17 ============================================================================ +11:56:17 FNo. Len. Field Value +11:56:17 ============================================================================ +11:56:17 [ 1] [ 4] [0200] +11:56:17 [ 2] [ 16] [6688990107058701] +11:56:17 [ 3] [ 6] [011000] +11:56:17 [ 4] [ 12] [000010000000] +11:56:17 [ 7] [ 10] [0320115612] +11:56:17 [ 11] [ 6] [737340] +11:56:17 [ 12] [ 6] [115612] +11:56:17 [ 13] [ 4] [0320] +11:56:17 [ 15] [ 4] [0320] +11:56:17 [ 18] [ 4] [6011] +11:56:17 [ 22] [ 3] [900] +11:56:17 [ 25] [ 2] [02] +11:56:17 [ 28] [ 9] [D00002000] +11:56:17 [ 32] [ 6] [621354] +11:56:17 [ 35] [ 37] [6688990107058701=44011231870143800000] +11:56:17 [ 37] [ 12] [507902682305] +11:56:17 [ 41] [ 8] [14000700] +11:56:17 [ 42] [ 15] [NATIVE ] +11:56:17 [ 43] [ 40] [CEMENT FACTORY Vangvieng LAO] +11:56:17 [ 49] [ 3] [418] +11:56:17 [ 52] [ 16] [B4210A6FDC044E13] +11:56:17 ============================================================================ +11:56:17 + + +waiting on router queue for slot.... +11:56:17 Sending to : <4> +11:56:17 ============================================================================ +11:56:18 ============================================================================ +11:56:18 Slot Id : <3> +11:56:18 Transaction Type : RESPONSE +11:56:18 Received From : +11:56:18 ============================================================================ +11:56:18 FNo. Len. Field Value +11:56:18 ============================================================================ +11:56:18 [ 1] [ 4] [0210] +11:56:18 [ 2] [ 16] [6688990107058701] +11:56:18 [ 3] [ 6] [011000] +11:56:18 [ 4] [ 12] [000010000000] +11:56:18 [ 11] [ 6] [737340] +11:56:18 [ 12] [ 6] [115612] +11:56:18 [ 15] [ 4] [0320] +11:56:18 [ 18] [ 4] [6011] +11:56:18 [ 32] [ 6] [621354] +11:56:18 [ 35] [ 37] [6688990107058701=44011231870143800000] +11:56:18 [ 37] [ 12] [507902682305] +11:56:18 [ 38] [ 6] [254420] +11:56:18 [ 39] [ 2] [00] +11:56:18 [ 41] [ 8] [14000700] +11:56:18 [ 49] [ 3] [418] +11:56:18 [ 54] [ 20] [1002418C000032237084] +11:56:18 ============================================================================ +11:56:18 Sending to : +11:56:18 ============================================================================ +11:56:18 + + +waiting on router queue for slot.... +11:56:20 ============================================================================ +11:56:20 Slot Id : <3> +11:56:20 Transaction Type : RESPONSE +11:56:20 Received From : +11:56:20 ============================================================================ +11:56:20 FNo. Len. Field Value +11:56:20 ============================================================================ +11:56:20 [ 1] [ 4] [0210] +11:56:20 [ 2] [ 16] [6688990107058701] +11:56:20 [ 3] [ 6] [011000] +11:56:20 [ 4] [ 12] [000010000000] +11:56:20 [ 11] [ 6] [737340] +11:56:20 [ 12] [ 6] [115612] +11:56:20 [ 15] [ 4] [0320] +11:56:20 [ 18] [ 4] [6011] +11:56:20 [ 32] [ 6] [621354] +11:56:20 [ 35] [ 37] [6688990107058701=44011231870143800000] +11:56:20 [ 37] [ 12] [507902682305] +11:56:20 [ 38] [ 6] [254420] +11:56:20 [ 39] [ 2] [00] +11:56:20 [ 41] [ 8] [14000700] +11:56:20 [ 49] [ 3] [418] +11:56:20 [ 54] [ 20] [1002418C000032237084] +11:56:20 ============================================================================ +11:56:20 Calculate Source COMM Id = 0 +11:56:20 ============================================================================ +11:56:20 + + +waiting on router queue for slot.... +11:56:21 ============================================================================ +11:56:21 Slot Id : <23> +11:56:21 Transaction Type : REQUEST +11:56:21 Received From : +11:56:21 ============================================================================ +11:56:21 FNo. Len. Field Value +11:56:21 ============================================================================ +11:56:21 [ 1] [ 4] [0800] +11:56:21 [ 7] [ 10] [0320045412] +11:56:21 [ 11] [ 6] [090816] +11:56:21 [ 37] [ 12] [57911090816] +11:56:21 [ 70] [ 3] [301] +11:56:21 ============================================================================ +11:56:21 + + +waiting on router queue for slot.... +11:56:21 Sending to : +11:56:21 ============================================================================ +11:56:21 ============================================================================ +11:56:21 Slot Id : <23> +11:56:21 Transaction Type : RESPONSE +11:56:21 Received From : +11:56:21 ============================================================================ +11:56:21 FNo. Len. Field Value +11:56:21 ============================================================================ +11:56:21 [ 1] [ 4] [0810] +11:56:21 [ 7] [ 10] [0320045412] +11:56:21 [ 11] [ 6] [090816] +11:56:21 [ 37] [ 12] [579110908160] +11:56:21 [ 39] [ 2] [00] +11:56:21 [ 70] [ 3] [810] +11:56:21 ============================================================================ +11:56:21 Calculate Source COMM Id = 4 +11:56:21 ============================================================================ +11:56:21 + + +waiting on router queue for slot.... +11:56:28 ============================================================================ +11:56:28 Slot Id : <7> +11:56:28 Transaction Type : REQUEST +11:56:28 Received From : +11:56:28 ============================================================================ +11:56:28 FNo. Len. Field Value +11:56:28 ============================================================================ +11:56:28 [ 1] [ 4] [0800] +11:56:28 [ 7] [ 10] [0320045536] +11:56:28 [ 11] [ 6] [156188] +11:56:28 [ 70] [ 3] [301] +11:56:28 ============================================================================ +11:56:28 + + +waiting on router queue for slot.... +11:56:28 Sending to : +11:56:28 ============================================================================ +11:56:28 ============================================================================ +11:56:28 Slot Id : <7> +11:56:28 Transaction Type : RESPONSE +11:56:28 Received From : +11:56:28 ============================================================================ +11:56:28 FNo. Len. Field Value +11:56:28 ============================================================================ +11:56:28 [ 1] [ 4] [0810] +11:56:28 [ 7] [ 10] [0320045536] +11:56:28 [ 11] [ 6] [156188] +11:56:28 [ 39] [ 2] [00] +11:56:28 [ 70] [ 3] [301] +11:56:28 ============================================================================ +11:56:28 Calculate Source COMM Id = 2 +11:56:28 ============================================================================ +11:56:28 + + +waiting on router queue for slot.... +11:56:41 ============================================================================ +11:56:41 Slot Id : <33> +11:56:41 Transaction Type : REQUEST +11:56:41 Received From : +11:56:41 ============================================================================ +11:56:41 FNo. Len. Field Value +11:56:41 ============================================================================ +11:56:41 [ 1] [ 4] [0200] +11:56:41 [ 2] [ 16] [1808930600001135] +11:56:41 [ 3] [ 6] [011000] +11:56:41 [ 4] [ 12] [000009000000] +11:56:41 [ 7] [ 10] [0320120429] +11:56:41 [ 11] [ 6] [010422] +11:56:41 [ 12] [ 6] [120429] +11:56:41 [ 13] [ 4] [0320] +11:56:41 [ 14] [ 4] [1803] +11:56:41 [ 15] [ 4] [0320] +11:56:41 [ 18] [ 4] [6011] +11:56:41 [ 22] [ 3] [900] +11:56:41 [ 25] [ 2] [02] +11:56:41 [ 28] [ 9] [D00002000] +11:56:41 [ 32] [ 6] [220699] +11:56:41 [ 35] [ 27] [1808930600001135=1803500835] +11:56:41 [ 37] [ 12] [507900220654] +11:56:41 [ 41] [ 8] [05000200] +11:56:41 [ 42] [ 15] [APTRA ] +11:56:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:56:41 [ 49] [ 3] [418] +11:56:41 [ 52] [ 16] [5E9AD63E8BF12CFF] +11:56:41 ============================================================================ +11:56:41 + + +waiting on router queue for slot.... +11:56:41 Sending to : +11:56:41 ============================================================================ +11:56:41 Sending to : +11:56:41 ============================================================================ +11:56:42 ============================================================================ +11:56:42 Slot Id : <33> +11:56:42 Transaction Type : REQUEST +11:56:42 Received From : +11:56:42 ============================================================================ +11:56:42 FNo. Len. Field Value +11:56:42 ============================================================================ +11:56:42 [ 1] [ 4] [0200] +11:56:42 [ 2] [ 16] [1808930600001135] +11:56:42 [ 3] [ 6] [011000] +11:56:42 [ 4] [ 12] [000009000000] +11:56:42 [ 7] [ 10] [0320120429] +11:56:42 [ 11] [ 6] [010422] +11:56:42 [ 12] [ 6] [120429] +11:56:42 [ 13] [ 4] [0320] +11:56:42 [ 14] [ 4] [1803] +11:56:42 [ 15] [ 4] [0320] +11:56:42 [ 18] [ 4] [6011] +11:56:42 [ 22] [ 3] [900] +11:56:42 [ 25] [ 2] [02] +11:56:42 [ 28] [ 9] [D00002000] +11:56:42 [ 32] [ 6] [220699] +11:56:42 [ 35] [ 27] [1808930600001135=1803500835] +11:56:42 [ 37] [ 12] [507900220654] +11:56:42 [ 41] [ 8] [05000200] +11:56:42 [ 42] [ 15] [APTRA ] +11:56:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:56:42 [ 49] [ 3] [418] +11:56:42 [ 52] [ 16] [5E9AD63E8BF12CFF] +11:56:42 ============================================================================ +11:56:42 + + +waiting on router queue for slot.... +11:56:42 Sending to : +11:56:42 ============================================================================ +11:56:42 ============================================================================ +11:56:42 Slot Id : <33> +11:56:42 Transaction Type : REQUEST +11:56:42 Received From : +11:56:42 ============================================================================ +11:56:42 FNo. Len. Field Value +11:56:42 ============================================================================ +11:56:42 [ 1] [ 4] [0200] +11:56:42 [ 2] [ 16] [1808930600001135] +11:56:42 [ 3] [ 6] [011000] +11:56:42 [ 4] [ 12] [000009000000] +11:56:42 [ 7] [ 10] [0320120429] +11:56:42 [ 11] [ 6] [010422] +11:56:42 [ 12] [ 6] [120429] +11:56:42 [ 13] [ 4] [0320] +11:56:42 [ 14] [ 4] [1803] +11:56:42 [ 15] [ 4] [0320] +11:56:42 [ 18] [ 4] [6011] +11:56:42 [ 22] [ 3] [900] +11:56:42 [ 25] [ 2] [02] +11:56:42 [ 28] [ 9] [D00002000] +11:56:42 [ 32] [ 6] [220699] +11:56:42 [ 35] [ 27] [1808930600001135=1803500835] +11:56:42 [ 37] [ 12] [507900220654] +11:56:42 [ 41] [ 8] [05000200] +11:56:42 [ 42] [ 15] [APTRA ] +11:56:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +11:56:42 [ 49] [ 3] [418] +11:56:42 [ 52] [ 16] [D08E9FF18286BB4F] +11:56:42 ============================================================================ +11:56:42 + + +waiting on router queue for slot.... +11:56:42 Sending to : <2> +11:56:42 ============================================================================ +11:56:42 ============================================================================ +11:56:42 Slot Id : <21> +11:56:42 Transaction Type : REQUEST +11:56:42 Received From : +11:56:42 ============================================================================ +11:56:42 FNo. Len. Field Value +11:56:42 ============================================================================ +11:56:42 [ 1] [ 4] [0200] +11:56:42 [ 2] [ 16] [6213544002216395] +11:56:42 [ 3] [ 6] [301000] +11:56:42 [ 4] [ 12] [000000000000] +11:56:42 [ 7] [ 10] [0320115433] +11:56:42 [ 11] [ 6] [942802] +11:56:42 [ 12] [ 6] [115433] +11:56:42 [ 13] [ 4] [0320] +11:56:42 [ 15] [ 4] [0320] +11:56:42 [ 18] [ 4] [6011] +11:56:42 [ 19] [ 3] [418] +11:56:42 [ 22] [ 3] [021] +11:56:42 [ 25] [ 2] [01] +11:56:42 [ 28] [ 9] [D00000000] +11:56:42 [ 32] [ 6] [668899] +11:56:42 [ 35] [ 32] [6213544002216395=491212011639606] +11:56:42 [ 37] [ 12] [507902435630] +11:56:42 [ 41] [ 8] [03020031] +11:56:42 [ 42] [ 15] [APT ] +11:56:42 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:56:42 [ 49] [ 3] [418] +11:56:42 [ 52] [ 16] [A902BE36CA94FB68] +11:56:42 ============================================================================ +11:56:42 + + +waiting on router queue for slot.... +11:56:42 Sending to : +11:56:42 ============================================================================ +11:56:42 Sending to : +11:56:42 ============================================================================ +11:56:43 ============================================================================ +11:56:43 Slot Id : <21> +11:56:43 Transaction Type : REQUEST +11:56:43 Received From : +11:56:43 ============================================================================ +11:56:43 FNo. Len. Field Value +11:56:43 ============================================================================ +11:56:43 [ 1] [ 4] [0200] +11:56:43 [ 2] [ 16] [6213544002216395] +11:56:43 [ 3] [ 6] [301000] +11:56:43 [ 4] [ 12] [000000000000] +11:56:43 [ 7] [ 10] [0320115433] +11:56:43 [ 11] [ 6] [942802] +11:56:43 [ 12] [ 6] [115433] +11:56:43 [ 13] [ 4] [0320] +11:56:43 [ 15] [ 4] [0320] +11:56:43 [ 18] [ 4] [6011] +11:56:43 [ 19] [ 3] [418] +11:56:43 [ 22] [ 3] [021] +11:56:43 [ 25] [ 2] [01] +11:56:43 [ 28] [ 9] [D00000000] +11:56:43 [ 32] [ 6] [668899] +11:56:43 [ 35] [ 32] [6213544002216395=491212011639606] +11:56:43 [ 37] [ 12] [507902435630] +11:56:43 [ 41] [ 8] [03020031] +11:56:43 [ 42] [ 15] [APT ] +11:56:43 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:56:43 [ 49] [ 3] [418] +11:56:43 [ 52] [ 16] [A902BE36CA94FB68] +11:56:43 ============================================================================ +11:56:43 + + +waiting on router queue for slot.... +11:56:43 Sending to : +11:56:43 ============================================================================ +11:56:43 ============================================================================ +11:56:43 Slot Id : <21> +11:56:43 Transaction Type : REQUEST +11:56:43 Received From : +11:56:43 ============================================================================ +11:56:43 FNo. Len. Field Value +11:56:43 ============================================================================ +11:56:43 [ 1] [ 4] [0200] +11:56:43 [ 2] [ 16] [6213544002216395] +11:56:43 [ 3] [ 6] [301000] +11:56:43 [ 4] [ 12] [000000000000] +11:56:43 [ 7] [ 10] [0320115433] +11:56:43 [ 11] [ 6] [942802] +11:56:43 [ 12] [ 6] [115433] +11:56:43 [ 13] [ 4] [0320] +11:56:43 [ 15] [ 4] [0320] +11:56:43 [ 18] [ 4] [6011] +11:56:43 [ 19] [ 3] [418] +11:56:43 [ 22] [ 3] [021] +11:56:43 [ 25] [ 2] [01] +11:56:43 [ 28] [ 9] [D00000000] +11:56:43 [ 32] [ 6] [668899] +11:56:43 [ 35] [ 32] [6213544002216395=491212011639606] +11:56:43 [ 37] [ 12] [507902435630] +11:56:43 [ 41] [ 8] [03020031] +11:56:43 [ 42] [ 15] [APT ] +11:56:43 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +11:56:43 [ 49] [ 3] [418] +11:56:43 [ 52] [ 16] [3C8731089A02C3A4] +11:56:43 ============================================================================ +11:56:43 + + +waiting on router queue for slot.... +11:56:43 Sending to : <0> +11:56:43 ============================================================================ +11:56:43 ============================================================================ +11:56:43 Slot Id : <21> +11:56:43 Transaction Type : RESPONSE +11:56:43 Received From : +11:56:43 ============================================================================ +11:56:43 FNo. Len. Field Value +11:56:43 ============================================================================ +11:56:43 [ 1] [ 4] [0210] +11:56:43 [ 2] [ 16] [6213544002216395] +11:56:43 [ 3] [ 6] [301000] +11:56:43 [ 4] [ 12] [000000000000] +11:56:43 [ 7] [ 10] [0320115433] +11:56:43 [ 11] [ 6] [942802] +11:56:43 [ 12] [ 6] [115433] +11:56:43 [ 13] [ 4] [0320] +11:56:43 [ 15] [ 4] [0320] +11:56:43 [ 18] [ 4] [6011] +11:56:43 [ 19] [ 3] [418] +11:56:43 [ 32] [ 6] [668899] +11:56:43 [ 35] [ 32] [6213544002216395=491212011639606] +11:56:43 [ 37] [ 12] [507902435630] +11:56:43 [ 38] [ 6] [752439] +11:56:43 [ 39] [ 2] [00] +11:56:43 [ 41] [ 8] [03020031] +11:56:43 [ 49] [ 3] [418] +11:56:43 [ 54] [ 40] [1001418C0006986000001002418C000698600000] +11:56:43 ============================================================================ +11:56:43 Sending to : +11:56:43 ============================================================================ +11:56:43 + + +waiting on router queue for slot.... +11:56:44 ============================================================================ +11:56:44 Slot Id : <11> +11:56:44 Transaction Type : REQUEST +11:56:44 Received From : +11:56:44 ============================================================================ +11:56:44 FNo. Len. Field Value +11:56:44 ============================================================================ +11:56:44 [ 1] [ 4] [0800] +11:56:44 [ 2] [ 5] [02531] +11:56:44 [ 3] [ 6] [579118] +11:56:44 [ 7] [ 10] [0320045644] +11:56:44 [ 11] [ 6] [807105] +11:56:44 [ 15] [ 10] [0320045644] +11:56:44 [ 37] [ 11] [57911807105] +11:56:44 [ 70] [ 3] [001] +11:56:44 ============================================================================ +11:56:44 + + +waiting on router queue for slot.... +11:56:44 ============================================================================ +11:56:44 Slot Id : <11> +11:56:44 Transaction Type : RESPONSE +11:56:44 Received From : +11:56:44 ============================================================================ +11:56:44 FNo. Len. Field Value +11:56:44 ============================================================================ +11:56:44 [ 1] [ 4] [0810] +11:56:44 [ 7] [ 10] [0320045644] +11:56:44 [ 11] [ 6] [807105] +11:56:44 [ 15] [ 4] [0320] +11:56:44 [ 37] [ 12] [57911807105] +11:56:44 [ 39] [ 2] [00] +11:56:44 [ 70] [ 3] [001] +11:56:44 ============================================================================ +11:56:44 Sending to : +11:56:44 ============================================================================ +11:56:44 + + +waiting on router queue for slot.... +11:56:44 ============================================================================ +11:56:44 Slot Id : <21> +11:56:44 Transaction Type : RESPONSE +11:56:44 Received From : +11:56:44 ============================================================================ +11:56:44 FNo. Len. Field Value +11:56:44 ============================================================================ +11:56:44 [ 1] [ 4] [0210] +11:56:44 [ 2] [ 16] [6213544002216395] +11:56:44 [ 3] [ 6] [301000] +11:56:44 [ 4] [ 12] [000000000000] +11:56:44 [ 7] [ 10] [0320115433] +11:56:44 [ 11] [ 6] [942802] +11:56:44 [ 12] [ 6] [115433] +11:56:44 [ 13] [ 4] [0320] +11:56:44 [ 15] [ 4] [0320] +11:56:44 [ 18] [ 4] [6011] +11:56:44 [ 19] [ 3] [418] +11:56:44 [ 32] [ 6] [668899] +11:56:44 [ 35] [ 32] [6213544002216395=491212011639606] +11:56:44 [ 37] [ 12] [507902435630] +11:56:44 [ 38] [ 6] [752439] +11:56:44 [ 39] [ 2] [00] +11:56:44 [ 41] [ 8] [03020031] +11:56:44 [ 49] [ 3] [418] +11:56:44 [ 54] [ 40] [1001418C0006986000001002418C000698600000] +11:56:44 ============================================================================ +11:56:44 Calculate Source COMM Id = 4 +11:56:44 ============================================================================ +11:56:44 + + +waiting on router queue for slot.... +11:56:49 ============================================================================ +11:56:49 Slot Id : <33> +11:56:49 Transaction Type : RESPONSE +11:56:49 Received From : +11:56:49 ============================================================================ +11:56:49 FNo. Len. Field Value +11:56:49 ============================================================================ +11:56:49 [ 1] [ 4] [0210] +11:56:49 [ 2] [ 16] [1808930600001135] +11:56:49 [ 3] [ 6] [011000] +11:56:49 [ 4] [ 12] [000009000000] +11:56:49 [ 6] [ 12] [000009000000] +11:56:49 [ 7] [ 10] [0320120429] +11:56:49 [ 11] [ 6] [010422] +11:56:49 [ 12] [ 6] [120429] +11:56:49 [ 13] [ 4] [0320] +11:56:49 [ 14] [ 4] [1803] +11:56:49 [ 18] [ 4] [6011] +11:56:49 [ 19] [ 3] [418] +11:56:49 [ 22] [ 3] [021] +11:56:49 [ 32] [ 6] [220699] +11:56:49 [ 35] [ 27] [1808930600001135=1803500835] +11:56:49 [ 37] [ 12] [507900220654] +11:56:49 [ 38] [ 6] [010422] +11:56:49 [ 39] [ 2] [00] +11:56:49 [ 41] [ 8] [05000200] +11:56:49 [ 49] [ 3] [418] +11:56:49 [ 52] [ 16] [D08E9FF18286BB4F] +11:56:49 [ 54] [ 20] [1001418C000002550100] +11:56:49 ============================================================================ +11:56:49 Sending to : +11:56:49 ============================================================================ +11:56:49 + + +waiting on router queue for slot.... +11:56:50 ============================================================================ +11:56:50 Slot Id : <33> +11:56:50 Transaction Type : RESPONSE +11:56:50 Received From : +11:56:50 ============================================================================ +11:56:50 FNo. Len. Field Value +11:56:50 ============================================================================ +11:56:50 [ 1] [ 4] [0210] +11:56:50 [ 2] [ 16] [1808930600001135] +11:56:50 [ 3] [ 6] [011000] +11:56:50 [ 4] [ 12] [000009000000] +11:56:50 [ 6] [ 12] [000009000000] +11:56:50 [ 7] [ 10] [0320120429] +11:56:50 [ 11] [ 6] [010422] +11:56:50 [ 12] [ 6] [120429] +11:56:50 [ 13] [ 4] [0320] +11:56:50 [ 14] [ 4] [1803] +11:56:50 [ 18] [ 4] [6011] +11:56:50 [ 19] [ 3] [418] +11:56:50 [ 22] [ 3] [021] +11:56:50 [ 32] [ 6] [220699] +11:56:50 [ 35] [ 27] [1808930600001135=1803500835] +11:56:50 [ 37] [ 12] [507900220654] +11:56:50 [ 38] [ 6] [010422] +11:56:50 [ 39] [ 2] [00] +11:56:50 [ 41] [ 8] [05000200] +11:56:50 [ 49] [ 3] [418] +11:56:50 [ 52] [ 16] [D08E9FF18286BB4F] +11:56:50 [ 54] [ 20] [1001418C000002550100] +11:56:50 ============================================================================ +11:56:50 Calculate Source COMM Id = 1 +11:56:50 ============================================================================ +11:56:50 + + +waiting on router queue for slot.... +11:56:50 ============================================================================ +11:56:50 Slot Id : <35> +11:56:50 Transaction Type : REQUEST +11:56:50 Received From : +11:56:50 ============================================================================ +11:56:50 FNo. Len. Field Value +11:56:50 ============================================================================ +11:56:50 [ 1] [ 4] [0200] +11:56:50 [ 2] [ 16] [6213545000381701] +11:56:50 [ 3] [ 6] [010000] +11:56:50 [ 4] [ 12] [000100000000] +11:56:50 [ 7] [ 10] [0320115441] +11:56:50 [ 11] [ 6] [942809] +11:56:50 [ 12] [ 6] [115441] +11:56:50 [ 13] [ 4] [0320] +11:56:50 [ 15] [ 4] [0320] +11:56:50 [ 18] [ 4] [6011] +11:56:50 [ 19] [ 3] [418] +11:56:50 [ 22] [ 3] [021] +11:56:50 [ 25] [ 2] [01] +11:56:50 [ 28] [ 9] [D00002000] +11:56:50 [ 32] [ 6] [668899] +11:56:50 [ 35] [ 32] [6213545000381701=491212018170388] +11:56:50 [ 37] [ 12] [507901963532] +11:56:50 [ 41] [ 8] [03020019] +11:56:50 [ 42] [ 15] [APT ] +11:56:50 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:56:50 [ 49] [ 3] [418] +11:56:50 [ 52] [ 16] [CD870D5591797A12] +11:56:50 ============================================================================ +11:56:50 + + +waiting on router queue for slot.... +11:56:50 Sending to : +11:56:50 ============================================================================ +11:56:50 Sending to : +11:56:50 ============================================================================ +11:56:51 ============================================================================ +11:56:51 Slot Id : <35> +11:56:51 Transaction Type : REQUEST +11:56:51 Received From : +11:56:51 ============================================================================ +11:56:51 FNo. Len. Field Value +11:56:51 ============================================================================ +11:56:51 [ 1] [ 4] [0200] +11:56:51 [ 2] [ 16] [6213545000381701] +11:56:51 [ 3] [ 6] [010000] +11:56:51 [ 4] [ 12] [000100000000] +11:56:51 [ 7] [ 10] [0320115441] +11:56:51 [ 11] [ 6] [942809] +11:56:51 [ 12] [ 6] [115441] +11:56:51 [ 13] [ 4] [0320] +11:56:51 [ 15] [ 4] [0320] +11:56:51 [ 18] [ 4] [6011] +11:56:51 [ 19] [ 3] [418] +11:56:51 [ 22] [ 3] [021] +11:56:51 [ 25] [ 2] [01] +11:56:51 [ 28] [ 9] [D00002000] +11:56:51 [ 32] [ 6] [668899] +11:56:51 [ 35] [ 32] [6213545000381701=491212018170388] +11:56:51 [ 37] [ 12] [507901963532] +11:56:51 [ 41] [ 8] [03020019] +11:56:51 [ 42] [ 15] [APT ] +11:56:51 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:56:51 [ 49] [ 3] [418] +11:56:51 [ 52] [ 16] [CD870D5591797A12] +11:56:51 ============================================================================ +11:56:51 + + +waiting on router queue for slot.... +11:56:51 Sending to : +11:56:51 ============================================================================ +11:56:51 ============================================================================ +11:56:51 Slot Id : <35> +11:56:51 Transaction Type : REQUEST +11:56:51 Received From : +11:56:51 ============================================================================ +11:56:51 FNo. Len. Field Value +11:56:51 ============================================================================ +11:56:51 [ 1] [ 4] [0200] +11:56:51 [ 2] [ 16] [6213545000381701] +11:56:51 [ 3] [ 6] [010000] +11:56:51 [ 4] [ 12] [000100000000] +11:56:51 [ 7] [ 10] [0320115441] +11:56:51 [ 11] [ 6] [942809] +11:56:51 [ 12] [ 6] [115441] +11:56:51 [ 13] [ 4] [0320] +11:56:51 [ 15] [ 4] [0320] +11:56:51 [ 18] [ 4] [6011] +11:56:51 [ 19] [ 3] [418] +11:56:51 [ 22] [ 3] [021] +11:56:51 [ 25] [ 2] [01] +11:56:51 [ 28] [ 9] [D00002000] +11:56:51 [ 32] [ 6] [668899] +11:56:51 [ 35] [ 32] [6213545000381701=491212018170388] +11:56:51 [ 37] [ 12] [507901963532] +11:56:51 [ 41] [ 8] [03020019] +11:56:51 [ 42] [ 15] [APT ] +11:56:51 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:56:51 [ 49] [ 3] [418] +11:56:51 [ 52] [ 16] [995027021FEC7209] +11:56:51 ============================================================================ +11:56:51 + + +waiting on router queue for slot.... +11:56:51 Sending to : <0> +11:56:51 ============================================================================ +11:56:51 ============================================================================ +11:56:51 Slot Id : <35> +11:56:51 Transaction Type : RESPONSE +11:56:51 Received From : +11:56:51 ============================================================================ +11:56:51 FNo. Len. Field Value +11:56:51 ============================================================================ +11:56:51 [ 1] [ 4] [0210] +11:56:51 [ 2] [ 16] [6213545000381701] +11:56:51 [ 3] [ 6] [010000] +11:56:51 [ 4] [ 12] [000100000000] +11:56:51 [ 7] [ 10] [0320115441] +11:56:51 [ 11] [ 6] [942809] +11:56:51 [ 12] [ 6] [115441] +11:56:51 [ 13] [ 4] [0320] +11:56:51 [ 15] [ 4] [0320] +11:56:51 [ 18] [ 4] [6011] +11:56:51 [ 19] [ 3] [418] +11:56:51 [ 32] [ 6] [668899] +11:56:51 [ 35] [ 32] [6213545000381701=491212018170388] +11:56:51 [ 37] [ 12] [507901963532] +11:56:51 [ 38] [ 6] [868242] +11:56:51 [ 39] [ 2] [00] +11:56:51 [ 41] [ 8] [03020019] +11:56:51 [ 49] [ 3] [418] +11:56:51 [ 54] [ 40] [0001418C0000673789760002418C000067378976] +11:56:51 ============================================================================ +11:56:51 Sending to : +11:56:51 ============================================================================ +11:56:51 + + +waiting on router queue for slot.... +11:56:53 ============================================================================ +11:56:53 Slot Id : <35> +11:56:53 Transaction Type : RESPONSE +11:56:53 Received From : +11:56:53 ============================================================================ +11:56:53 FNo. Len. Field Value +11:56:53 ============================================================================ +11:56:53 [ 1] [ 4] [0210] +11:56:53 [ 2] [ 16] [6213545000381701] +11:56:53 [ 3] [ 6] [010000] +11:56:53 [ 4] [ 12] [000100000000] +11:56:53 [ 7] [ 10] [0320115441] +11:56:53 [ 11] [ 6] [942809] +11:56:53 [ 12] [ 6] [115441] +11:56:53 [ 13] [ 4] [0320] +11:56:53 [ 15] [ 4] [0320] +11:56:53 [ 18] [ 4] [6011] +11:56:53 [ 19] [ 3] [418] +11:56:53 [ 32] [ 6] [668899] +11:56:53 [ 35] [ 32] [6213545000381701=491212018170388] +11:56:53 [ 37] [ 12] [507901963532] +11:56:53 [ 38] [ 6] [868242] +11:56:53 [ 39] [ 2] [00] +11:56:53 [ 41] [ 8] [03020019] +11:56:53 [ 49] [ 3] [418] +11:56:53 [ 54] [ 40] [0001418C0000673789760002418C000067378976] +11:56:53 ============================================================================ +11:56:53 Calculate Source COMM Id = 4 +11:56:53 ============================================================================ +11:56:53 + + +waiting on router queue for slot.... +11:56:55 ============================================================================ +11:56:55 Slot Id : <496> +11:56:55 Transaction Type : REQUEST +11:56:55 Received From : +11:56:55 ============================================================================ +11:56:55 FNo. Len. Field Value +11:56:55 ============================================================================ +11:56:55 [ 1] [ 4] [0800] +11:56:55 [ 7] [ 10] [0320045602] +11:56:55 [ 11] [ 6] [156189] +11:56:55 [ 70] [ 3] [301] +11:56:55 ============================================================================ +11:56:55 + + +waiting on router queue for slot.... +11:56:55 Sending to : +11:56:55 ============================================================================ +11:56:55 ============================================================================ +11:56:55 Slot Id : <496> +11:56:55 Transaction Type : RESPONSE +11:56:55 Received From : +11:56:55 ============================================================================ +11:56:55 FNo. Len. Field Value +11:56:55 ============================================================================ +11:56:55 [ 1] [ 4] [0810] +11:56:55 [ 7] [ 10] [0320045602] +11:56:55 [ 11] [ 6] [156189] +11:56:55 [ 39] [ 2] [00] +11:56:55 [ 70] [ 3] [301] +11:56:55 ============================================================================ +11:56:55 Calculate Source COMM Id = 2 +11:56:55 ============================================================================ +11:56:55 + + +waiting on router queue for slot.... +11:57:00 ============================================================================ +11:57:00 Slot Id : <461> +11:57:00 Transaction Type : REQUEST +11:57:00 Received From : +11:57:00 ============================================================================ +11:57:00 FNo. Len. Field Value +11:57:00 ============================================================================ +11:57:00 [ 1] [ 4] [0200] +11:57:00 [ 2] [ 16] [6213545000754220] +11:57:00 [ 3] [ 6] [010000] +11:57:00 [ 4] [ 12] [000100000000] +11:57:00 [ 7] [ 10] [0320115451] +11:57:00 [ 11] [ 6] [942817] +11:57:00 [ 12] [ 6] [115451] +11:57:00 [ 13] [ 4] [0320] +11:57:00 [ 15] [ 4] [0320] +11:57:00 [ 18] [ 4] [6011] +11:57:00 [ 19] [ 3] [418] +11:57:00 [ 22] [ 3] [021] +11:57:00 [ 25] [ 2] [01] +11:57:00 [ 28] [ 9] [D00002000] +11:57:00 [ 32] [ 6] [668899] +11:57:00 [ 35] [ 32] [6213545000754220=491212015422235] +11:57:00 [ 37] [ 12] [507901422782] +11:57:00 [ 41] [ 8] [03314001] +11:57:00 [ 42] [ 15] [APT ] +11:57:00 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:57:00 [ 49] [ 3] [418] +11:57:00 [ 52] [ 16] [575BB4B74DEB053F] +11:57:00 ============================================================================ +11:57:00 + + +waiting on router queue for slot.... +11:57:00 Sending to : +11:57:00 ============================================================================ +11:57:00 Sending to : +11:57:00 ============================================================================ +11:57:00 ============================================================================ +11:57:00 Slot Id : <461> +11:57:00 Transaction Type : REQUEST +11:57:00 Received From : +11:57:00 ============================================================================ +11:57:00 FNo. Len. Field Value +11:57:00 ============================================================================ +11:57:00 [ 1] [ 4] [0200] +11:57:00 [ 2] [ 16] [6213545000754220] +11:57:00 [ 3] [ 6] [010000] +11:57:00 [ 4] [ 12] [000100000000] +11:57:00 [ 7] [ 10] [0320115451] +11:57:00 [ 11] [ 6] [942817] +11:57:00 [ 12] [ 6] [115451] +11:57:00 [ 13] [ 4] [0320] +11:57:00 [ 15] [ 4] [0320] +11:57:00 [ 18] [ 4] [6011] +11:57:00 [ 19] [ 3] [418] +11:57:00 [ 22] [ 3] [021] +11:57:00 [ 25] [ 2] [01] +11:57:00 [ 28] [ 9] [D00002000] +11:57:00 [ 32] [ 6] [668899] +11:57:00 [ 35] [ 32] [6213545000754220=491212015422235] +11:57:00 [ 37] [ 12] [507901422782] +11:57:00 [ 41] [ 8] [03314001] +11:57:00 [ 42] [ 15] [APT ] +11:57:00 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:57:00 [ 49] [ 3] [418] +11:57:00 [ 52] [ 16] [575BB4B74DEB053F] +11:57:00 ============================================================================ +11:57:00 + + +waiting on router queue for slot.... +11:57:00 Sending to : +11:57:00 ============================================================================ +11:57:00 ============================================================================ +11:57:00 Slot Id : <461> +11:57:00 Transaction Type : REQUEST +11:57:00 Received From : +11:57:00 ============================================================================ +11:57:00 FNo. Len. Field Value +11:57:00 ============================================================================ +11:57:00 [ 1] [ 4] [0200] +11:57:00 [ 2] [ 16] [6213545000754220] +11:57:00 [ 3] [ 6] [010000] +11:57:00 [ 4] [ 12] [000100000000] +11:57:00 [ 7] [ 10] [0320115451] +11:57:00 [ 11] [ 6] [942817] +11:57:00 [ 12] [ 6] [115451] +11:57:00 [ 13] [ 4] [0320] +11:57:00 [ 15] [ 4] [0320] +11:57:00 [ 18] [ 4] [6011] +11:57:00 [ 19] [ 3] [418] +11:57:00 [ 22] [ 3] [021] +11:57:00 [ 25] [ 2] [01] +11:57:00 [ 28] [ 9] [D00002000] +11:57:00 [ 32] [ 6] [668899] +11:57:00 [ 35] [ 32] [6213545000754220=491212015422235] +11:57:00 [ 37] [ 12] [507901422782] +11:57:00 [ 41] [ 8] [03314001] +11:57:00 [ 42] [ 15] [APT ] +11:57:00 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:57:00 [ 49] [ 3] [418] +11:57:00 [ 52] [ 16] [6D6789CDC7EB7E96] +11:57:00 ============================================================================ +11:57:00 + + +waiting on router queue for slot.... +11:57:00 Sending to : <0> +11:57:00 ============================================================================ +11:57:01 ============================================================================ +11:57:01 Slot Id : <461> +11:57:01 Transaction Type : RESPONSE +11:57:01 Received From : +11:57:01 ============================================================================ +11:57:01 FNo. Len. Field Value +11:57:01 ============================================================================ +11:57:01 [ 1] [ 4] [0210] +11:57:01 [ 2] [ 16] [6213545000754220] +11:57:01 [ 3] [ 6] [010000] +11:57:01 [ 4] [ 12] [000100000000] +11:57:01 [ 7] [ 10] [0320115451] +11:57:01 [ 11] [ 6] [942817] +11:57:01 [ 12] [ 6] [115451] +11:57:01 [ 13] [ 4] [0320] +11:57:01 [ 15] [ 4] [0320] +11:57:01 [ 18] [ 4] [6011] +11:57:01 [ 19] [ 3] [418] +11:57:01 [ 32] [ 6] [668899] +11:57:01 [ 35] [ 32] [6213545000754220=491212015422235] +11:57:01 [ 37] [ 12] [507901422782] +11:57:01 [ 38] [ 6] [210997] +11:57:01 [ 39] [ 2] [00] +11:57:01 [ 41] [ 8] [03314001] +11:57:01 [ 49] [ 3] [418] +11:57:01 [ 54] [ 40] [0001418C0016501769710002418C001650176971] +11:57:01 ============================================================================ +11:57:01 Sending to : +11:57:01 ============================================================================ +11:57:01 + + +waiting on router queue for slot.... +11:57:02 ============================================================================ +11:57:02 Slot Id : <461> +11:57:02 Transaction Type : RESPONSE +11:57:02 Received From : +11:57:02 ============================================================================ +11:57:02 FNo. Len. Field Value +11:57:02 ============================================================================ +11:57:02 [ 1] [ 4] [0210] +11:57:02 [ 2] [ 16] [6213545000754220] +11:57:02 [ 3] [ 6] [010000] +11:57:02 [ 4] [ 12] [000100000000] +11:57:02 [ 7] [ 10] [0320115451] +11:57:02 [ 11] [ 6] [942817] +11:57:02 [ 12] [ 6] [115451] +11:57:02 [ 13] [ 4] [0320] +11:57:02 [ 15] [ 4] [0320] +11:57:02 [ 18] [ 4] [6011] +11:57:02 [ 19] [ 3] [418] +11:57:02 [ 32] [ 6] [668899] +11:57:02 [ 35] [ 32] [6213545000754220=491212015422235] +11:57:02 [ 37] [ 12] [507901422782] +11:57:02 [ 38] [ 6] [210997] +11:57:02 [ 39] [ 2] [00] +11:57:02 [ 41] [ 8] [03314001] +11:57:02 [ 49] [ 3] [418] +11:57:02 [ 54] [ 40] [0001418C0016501769710002418C001650176971] +11:57:02 ============================================================================ +11:57:02 Calculate Source COMM Id = 4 +11:57:02 ============================================================================ +11:57:02 + + +waiting on router queue for slot.... +11:57:07 ============================================================================ +11:57:07 Slot Id : <37> +11:57:07 Transaction Type : REQUEST +11:57:07 Received From : +11:57:07 ============================================================================ +11:57:07 FNo. Len. Field Value +11:57:07 ============================================================================ +11:57:07 [ 1] [ 4] [0800] +11:57:07 [ 7] [ 10] [0320045614] +11:57:07 [ 11] [ 6] [156190] +11:57:07 [ 70] [ 3] [301] +11:57:07 ============================================================================ +11:57:07 + + +waiting on router queue for slot.... +11:57:07 Sending to : +11:57:07 ============================================================================ +11:57:07 ============================================================================ +11:57:07 Slot Id : <37> +11:57:07 Transaction Type : RESPONSE +11:57:07 Received From : +11:57:07 ============================================================================ +11:57:07 FNo. Len. Field Value +11:57:07 ============================================================================ +11:57:07 [ 1] [ 4] [0810] +11:57:07 [ 7] [ 10] [0320045614] +11:57:07 [ 11] [ 6] [156190] +11:57:07 [ 39] [ 2] [00] +11:57:07 [ 70] [ 3] [301] +11:57:07 ============================================================================ +11:57:07 Calculate Source COMM Id = 2 +11:57:07 ============================================================================ +11:57:07 + + +waiting on router queue for slot.... +11:57:10 ============================================================================ +11:57:10 Slot Id : <30> +11:57:10 Transaction Type : REQUEST +11:57:10 Received From : +11:57:10 ============================================================================ +11:57:10 FNo. Len. Field Value +11:57:10 ============================================================================ +11:57:10 [ 1] [ 4] [0200] +11:57:10 [ 2] [ 16] [6213544002019989] +11:57:10 [ 3] [ 6] [302000] +11:57:10 [ 4] [ 12] [000000000000] +11:57:10 [ 7] [ 10] [0320115501] +11:57:10 [ 11] [ 6] [942823] +11:57:10 [ 12] [ 6] [115501] +11:57:10 [ 13] [ 4] [0320] +11:57:10 [ 15] [ 4] [0320] +11:57:10 [ 18] [ 4] [6011] +11:57:10 [ 19] [ 3] [418] +11:57:10 [ 22] [ 3] [021] +11:57:10 [ 25] [ 2] [01] +11:57:10 [ 28] [ 9] [D00000000] +11:57:10 [ 32] [ 6] [668899] +11:57:10 [ 35] [ 32] [6213544002019989=491212011998357] +11:57:10 [ 37] [ 12] [507901373672] +11:57:10 [ 41] [ 8] [03209001] +11:57:10 [ 42] [ 15] [APT ] +11:57:10 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +11:57:10 [ 49] [ 3] [418] +11:57:10 [ 52] [ 16] [B2F8A1F71A7A7B23] +11:57:10 ============================================================================ +11:57:10 + + +waiting on router queue for slot.... +11:57:10 Sending to : +11:57:10 ============================================================================ +11:57:10 Sending to : +11:57:10 ============================================================================ +11:57:10 ============================================================================ +11:57:10 Slot Id : <30> +11:57:10 Transaction Type : REQUEST +11:57:10 Received From : +11:57:10 ============================================================================ +11:57:10 FNo. Len. Field Value +11:57:10 ============================================================================ +11:57:10 [ 1] [ 4] [0200] +11:57:10 [ 2] [ 16] [6213544002019989] +11:57:10 [ 3] [ 6] [302000] +11:57:10 [ 4] [ 12] [000000000000] +11:57:10 [ 7] [ 10] [0320115501] +11:57:10 [ 11] [ 6] [942823] +11:57:10 [ 12] [ 6] [115501] +11:57:10 [ 13] [ 4] [0320] +11:57:10 [ 15] [ 4] [0320] +11:57:10 [ 18] [ 4] [6011] +11:57:10 [ 19] [ 3] [418] +11:57:10 [ 22] [ 3] [021] +11:57:10 [ 25] [ 2] [01] +11:57:10 [ 28] [ 9] [D00000000] +11:57:10 [ 32] [ 6] [668899] +11:57:10 [ 35] [ 32] [6213544002019989=491212011998357] +11:57:10 [ 37] [ 12] [507901373672] +11:57:10 [ 41] [ 8] [03209001] +11:57:10 [ 42] [ 15] [APT ] +11:57:10 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +11:57:10 [ 49] [ 3] [418] +11:57:10 [ 52] [ 16] [B2F8A1F71A7A7B23] +11:57:10 ============================================================================ +11:57:10 + + +waiting on router queue for slot.... +11:57:10 Sending to : +11:57:10 ============================================================================ +11:57:10 ============================================================================ +11:57:10 Slot Id : <30> +11:57:10 Transaction Type : REQUEST +11:57:10 Received From : +11:57:10 ============================================================================ +11:57:10 FNo. Len. Field Value +11:57:10 ============================================================================ +11:57:10 [ 1] [ 4] [0200] +11:57:10 [ 2] [ 16] [6213544002019989] +11:57:10 [ 3] [ 6] [302000] +11:57:10 [ 4] [ 12] [000000000000] +11:57:10 [ 7] [ 10] [0320115501] +11:57:10 [ 11] [ 6] [942823] +11:57:10 [ 12] [ 6] [115501] +11:57:10 [ 13] [ 4] [0320] +11:57:10 [ 15] [ 4] [0320] +11:57:10 [ 18] [ 4] [6011] +11:57:10 [ 19] [ 3] [418] +11:57:10 [ 22] [ 3] [021] +11:57:10 [ 25] [ 2] [01] +11:57:10 [ 28] [ 9] [D00000000] +11:57:10 [ 32] [ 6] [668899] +11:57:10 [ 35] [ 32] [6213544002019989=491212011998357] +11:57:10 [ 37] [ 12] [507901373672] +11:57:10 [ 41] [ 8] [03209001] +11:57:10 [ 42] [ 15] [APT ] +11:57:10 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +11:57:10 [ 49] [ 3] [418] +11:57:10 [ 52] [ 16] [5FCDB1D31205420D] +11:57:10 ============================================================================ +11:57:10 + + +waiting on router queue for slot.... +11:57:10 Sending to : <0> +11:57:10 ============================================================================ +11:57:10 ============================================================================ +11:57:10 Slot Id : <30> +11:57:10 Transaction Type : RESPONSE +11:57:10 Received From : +11:57:10 ============================================================================ +11:57:10 FNo. Len. Field Value +11:57:10 ============================================================================ +11:57:10 [ 1] [ 4] [0210] +11:57:10 [ 2] [ 16] [6213544002019989] +11:57:10 [ 3] [ 6] [302000] +11:57:10 [ 4] [ 12] [000000000000] +11:57:10 [ 7] [ 10] [0320115501] +11:57:10 [ 11] [ 6] [942823] +11:57:10 [ 12] [ 6] [115501] +11:57:10 [ 13] [ 4] [0320] +11:57:10 [ 15] [ 4] [0320] +11:57:10 [ 18] [ 4] [6011] +11:57:10 [ 19] [ 3] [418] +11:57:10 [ 32] [ 6] [668899] +11:57:10 [ 35] [ 32] [6213544002019989=491212011998357] +11:57:10 [ 37] [ 12] [507901373672] +11:57:10 [ 38] [ 6] [333182] +11:57:10 [ 39] [ 2] [00] +11:57:10 [ 41] [ 8] [03209001] +11:57:10 [ 49] [ 3] [418] +11:57:10 [ 54] [ 40] [2001418C0000522592982002418C000052259298] +11:57:10 ============================================================================ +11:57:10 Sending to : +11:57:10 ============================================================================ +11:57:10 + + +waiting on router queue for slot.... +11:57:12 ============================================================================ +11:57:12 Slot Id : <30> +11:57:12 Transaction Type : RESPONSE +11:57:12 Received From : +11:57:12 ============================================================================ +11:57:12 FNo. Len. Field Value +11:57:12 ============================================================================ +11:57:12 [ 1] [ 4] [0210] +11:57:12 [ 2] [ 16] [6213544002019989] +11:57:12 [ 3] [ 6] [302000] +11:57:12 [ 4] [ 12] [000000000000] +11:57:12 [ 7] [ 10] [0320115501] +11:57:12 [ 11] [ 6] [942823] +11:57:12 [ 12] [ 6] [115501] +11:57:12 [ 13] [ 4] [0320] +11:57:12 [ 15] [ 4] [0320] +11:57:12 [ 18] [ 4] [6011] +11:57:12 [ 19] [ 3] [418] +11:57:12 [ 32] [ 6] [668899] +11:57:12 [ 35] [ 32] [6213544002019989=491212011998357] +11:57:12 [ 37] [ 12] [507901373672] +11:57:12 [ 38] [ 6] [333182] +11:57:12 [ 39] [ 2] [00] +11:57:12 [ 41] [ 8] [03209001] +11:57:12 [ 49] [ 3] [418] +11:57:12 [ 54] [ 40] [2001418C0000522592982002418C000052259298] +11:57:12 ============================================================================ +11:57:12 Calculate Source COMM Id = 4 +11:57:12 ============================================================================ +11:57:12 + + +waiting on router queue for slot.... +11:57:22 ============================================================================ +11:57:22 Slot Id : <9> +11:57:22 Transaction Type : REQUEST +11:57:22 Received From : +11:57:22 ============================================================================ +11:57:22 FNo. Len. Field Value +11:57:22 ============================================================================ +11:57:22 [ 1] [ 4] [0800] +11:57:22 [ 7] [ 10] [0320045630] +11:57:22 [ 11] [ 6] [156191] +11:57:22 [ 70] [ 3] [301] +11:57:22 ============================================================================ +11:57:22 + + +waiting on router queue for slot.... +11:57:22 Sending to : +11:57:22 ============================================================================ +11:57:22 ============================================================================ +11:57:22 Slot Id : <9> +11:57:22 Transaction Type : RESPONSE +11:57:22 Received From : +11:57:22 ============================================================================ +11:57:22 FNo. Len. Field Value +11:57:22 ============================================================================ +11:57:22 [ 1] [ 4] [0810] +11:57:22 [ 7] [ 10] [0320045630] +11:57:22 [ 11] [ 6] [156191] +11:57:22 [ 39] [ 2] [00] +11:57:22 [ 70] [ 3] [301] +11:57:22 ============================================================================ +11:57:22 Calculate Source COMM Id = 2 +11:57:22 ============================================================================ +11:57:22 + + +waiting on router queue for slot.... +11:57:22 ============================================================================ +11:57:22 Slot Id : <36> +11:57:22 Transaction Type : REQUEST +11:57:22 Received From : +11:57:22 ============================================================================ +11:57:22 FNo. Len. Field Value +11:57:22 ============================================================================ +11:57:22 [ 1] [ 4] [0200] +11:57:22 [ 2] [ 16] [6213545000437743] +11:57:22 [ 3] [ 6] [011000] +11:57:22 [ 4] [ 12] [000070000000] +11:57:22 [ 7] [ 10] [0320045629] +11:57:22 [ 11] [ 6] [268815] +11:57:22 [ 12] [ 6] [115629] +11:57:22 [ 13] [ 4] [0320] +11:57:22 [ 14] [ 4] [4912] +11:57:22 [ 15] [ 4] [0320] +11:57:22 [ 18] [ 4] [6011] +11:57:22 [ 19] [ 3] [418] +11:57:22 [ 22] [ 3] [021] +11:57:22 [ 25] [ 2] [01] +11:57:22 [ 28] [ 9] [D00002000] +11:57:22 [ 32] [ 6] [180893] +11:57:22 [ 35] [ 32] [6213545000437743=491212013774327] +11:57:22 [ 37] [ 12] [507904268815] +11:57:22 [ 41] [ 8] [0441VT52] +11:57:22 [ 42] [ 15] [999999 ] +11:57:22 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:57:22 [ 49] [ 3] [418] +11:57:22 [ 52] [ 16] [BE360230F331D4CB] +11:57:22 ============================================================================ +11:57:22 + + +waiting on router queue for slot.... +11:57:22 Sending to : +11:57:22 ============================================================================ +11:57:22 Sending to : +11:57:22 ============================================================================ +11:57:23 ============================================================================ +11:57:23 Slot Id : <36> +11:57:23 Transaction Type : REQUEST +11:57:23 Received From : +11:57:23 ============================================================================ +11:57:23 FNo. Len. Field Value +11:57:23 ============================================================================ +11:57:23 [ 1] [ 4] [0200] +11:57:23 [ 2] [ 16] [6213545000437743] +11:57:23 [ 3] [ 6] [011000] +11:57:23 [ 4] [ 12] [000070000000] +11:57:23 [ 7] [ 10] [0320045629] +11:57:23 [ 11] [ 6] [268815] +11:57:23 [ 12] [ 6] [115629] +11:57:23 [ 13] [ 4] [0320] +11:57:23 [ 14] [ 4] [4912] +11:57:23 [ 15] [ 4] [0320] +11:57:23 [ 18] [ 4] [6011] +11:57:23 [ 19] [ 3] [418] +11:57:23 [ 22] [ 3] [021] +11:57:23 [ 25] [ 2] [01] +11:57:23 [ 28] [ 9] [D00002000] +11:57:23 [ 32] [ 6] [180893] +11:57:23 [ 35] [ 32] [6213545000437743=491212013774327] +11:57:23 [ 37] [ 12] [507904268815] +11:57:23 [ 41] [ 8] [0441VT52] +11:57:23 [ 42] [ 15] [999999 ] +11:57:23 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:57:23 [ 49] [ 3] [418] +11:57:23 [ 52] [ 16] [BE360230F331D4CB] +11:57:23 ============================================================================ +11:57:23 + + +waiting on router queue for slot.... +11:57:23 Sending to : +11:57:23 ============================================================================ +11:57:23 ============================================================================ +11:57:23 Slot Id : <36> +11:57:23 Transaction Type : REQUEST +11:57:23 Received From : +11:57:23 ============================================================================ +11:57:23 FNo. Len. Field Value +11:57:23 ============================================================================ +11:57:23 [ 1] [ 4] [0200] +11:57:23 [ 2] [ 16] [6213545000437743] +11:57:23 [ 3] [ 6] [011000] +11:57:23 [ 4] [ 12] [000070000000] +11:57:23 [ 7] [ 10] [0320045629] +11:57:23 [ 11] [ 6] [268815] +11:57:23 [ 12] [ 6] [115629] +11:57:23 [ 13] [ 4] [0320] +11:57:23 [ 14] [ 4] [4912] +11:57:23 [ 15] [ 4] [0320] +11:57:23 [ 18] [ 4] [6011] +11:57:23 [ 19] [ 3] [418] +11:57:23 [ 22] [ 3] [021] +11:57:23 [ 25] [ 2] [01] +11:57:23 [ 28] [ 9] [D00002000] +11:57:23 [ 32] [ 6] [180893] +11:57:23 [ 35] [ 32] [6213545000437743=491212013774327] +11:57:23 [ 37] [ 12] [507904268815] +11:57:23 [ 41] [ 8] [0441VT52] +11:57:23 [ 42] [ 15] [999999 ] +11:57:23 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:57:23 [ 49] [ 3] [418] +11:57:23 [ 52] [ 16] [BFA0134D374D633C] +11:57:23 ============================================================================ +11:57:23 + + +waiting on router queue for slot.... +11:57:23 Sending to : <0> +11:57:23 ============================================================================ +11:57:23 ============================================================================ +11:57:23 Slot Id : <36> +11:57:23 Transaction Type : RESPONSE +11:57:23 Received From : +11:57:23 ============================================================================ +11:57:23 FNo. Len. Field Value +11:57:23 ============================================================================ +11:57:23 [ 1] [ 4] [0210] +11:57:23 [ 2] [ 16] [6213545000437743] +11:57:23 [ 3] [ 6] [011000] +11:57:23 [ 4] [ 12] [000070000000] +11:57:23 [ 7] [ 10] [0320045629] +11:57:23 [ 11] [ 6] [268815] +11:57:23 [ 12] [ 6] [115629] +11:57:23 [ 13] [ 4] [0320] +11:57:23 [ 15] [ 4] [0320] +11:57:23 [ 18] [ 4] [6011] +11:57:23 [ 19] [ 3] [418] +11:57:23 [ 32] [ 6] [180893] +11:57:23 [ 35] [ 32] [6213545000437743=491212013774327] +11:57:23 [ 37] [ 12] [507904268815] +11:57:23 [ 38] [ 6] [268815] +11:57:23 [ 39] [ 2] [51] +11:57:23 [ 41] [ 8] [0441VT52] +11:57:23 [ 49] [ 3] [418] +11:57:23 [ 54] [ 40] [1001418C0000750246041002418C000075024604] +11:57:23 ============================================================================ +11:57:23 Sending to : +11:57:23 ============================================================================ +11:57:23 + + +waiting on router queue for slot.... +11:57:24 ============================================================================ +11:57:24 Slot Id : <36> +11:57:24 Transaction Type : RESPONSE +11:57:24 Received From : +11:57:24 ============================================================================ +11:57:24 FNo. Len. Field Value +11:57:24 ============================================================================ +11:57:24 [ 1] [ 4] [0210] +11:57:24 [ 2] [ 16] [6213545000437743] +11:57:24 [ 3] [ 6] [011000] +11:57:24 [ 4] [ 12] [000070000000] +11:57:24 [ 7] [ 10] [0320045629] +11:57:24 [ 11] [ 6] [268815] +11:57:24 [ 12] [ 6] [115629] +11:57:24 [ 13] [ 4] [0320] +11:57:24 [ 15] [ 4] [0320] +11:57:24 [ 18] [ 4] [6011] +11:57:24 [ 19] [ 3] [418] +11:57:24 [ 32] [ 6] [180893] +11:57:24 [ 35] [ 32] [6213545000437743=491212013774327] +11:57:24 [ 37] [ 12] [507904268815] +11:57:24 [ 38] [ 6] [268815] +11:57:24 [ 39] [ 2] [51] +11:57:24 [ 41] [ 8] [0441VT52] +11:57:24 [ 49] [ 3] [418] +11:57:24 [ 54] [ 40] [1001418C0000750246041002418C000075024604] +11:57:24 ============================================================================ +11:57:24 Calculate Source COMM Id = 2 +11:57:24 ============================================================================ +11:57:24 + + +waiting on router queue for slot.... +11:57:38 ============================================================================ +11:57:38 Slot Id : <45> +11:57:38 Transaction Type : REQUEST +11:57:38 Received From : +11:57:38 ============================================================================ +11:57:38 FNo. Len. Field Value +11:57:38 ============================================================================ +11:57:38 [ 1] [ 4] [0800] +11:57:38 [ 7] [ 10] [0320045646] +11:57:38 [ 11] [ 6] [156192] +11:57:38 [ 70] [ 3] [301] +11:57:38 ============================================================================ +11:57:38 + + +waiting on router queue for slot.... +11:57:38 Sending to : +11:57:38 ============================================================================ +11:57:38 ============================================================================ +11:57:38 Slot Id : <45> +11:57:38 Transaction Type : RESPONSE +11:57:38 Received From : +11:57:38 ============================================================================ +11:57:38 FNo. Len. Field Value +11:57:38 ============================================================================ +11:57:38 [ 1] [ 4] [0810] +11:57:38 [ 7] [ 10] [0320045646] +11:57:38 [ 11] [ 6] [156192] +11:57:38 [ 39] [ 2] [00] +11:57:38 [ 70] [ 3] [301] +11:57:38 ============================================================================ +11:57:38 Calculate Source COMM Id = 2 +11:57:38 ============================================================================ +11:57:38 + + +waiting on router queue for slot.... +11:57:46 ============================================================================ +11:57:46 Slot Id : <18> +11:57:46 Transaction Type : REQUEST +11:57:46 Received From : +11:57:46 ============================================================================ +11:57:46 FNo. Len. Field Value +11:57:46 ============================================================================ +11:57:46 [ 1] [ 4] [0800] +11:57:46 [ 2] [ 5] [02531] +11:57:46 [ 3] [ 6] [579118] +11:57:46 [ 7] [ 10] [0320045746] +11:57:46 [ 11] [ 6] [807106] +11:57:46 [ 15] [ 10] [0320045746] +11:57:46 [ 37] [ 11] [57911807106] +11:57:46 [ 70] [ 3] [001] +11:57:46 ============================================================================ +11:57:46 + + +waiting on router queue for slot.... +11:57:46 ============================================================================ +11:57:46 Slot Id : <18> +11:57:46 Transaction Type : RESPONSE +11:57:46 Received From : +11:57:46 ============================================================================ +11:57:46 FNo. Len. Field Value +11:57:46 ============================================================================ +11:57:46 [ 1] [ 4] [0810] +11:57:46 [ 7] [ 10] [0320045746] +11:57:46 [ 11] [ 6] [807106] +11:57:46 [ 15] [ 4] [0320] +11:57:46 [ 37] [ 12] [57911807106] +11:57:46 [ 39] [ 2] [00] +11:57:46 [ 70] [ 3] [001] +11:57:46 ============================================================================ +11:57:46 Sending to : +11:57:46 ============================================================================ +11:57:46 + + +waiting on router queue for slot.... +11:57:47 ============================================================================ +11:57:47 Slot Id : <497> +11:57:47 Transaction Type : REQUEST +11:57:47 Received From : +11:57:47 ============================================================================ +11:57:47 FNo. Len. Field Value +11:57:47 ============================================================================ +11:57:47 [ 1] [ 4] [0800] +11:57:47 [ 7] [ 10] [0320115734] +11:57:47 [ 11] [ 6] [016234] +11:57:47 [ 37] [ 12] [507911016234] +11:57:47 [ 70] [ 3] [ ] +11:57:47 ============================================================================ +11:57:47 + + +waiting on router queue for slot.... +11:57:47 Sending to : +11:57:47 ============================================================================ +11:57:47 ============================================================================ +11:57:47 Slot Id : <497> +11:57:47 Transaction Type : RESPONSE +11:57:47 Received From : +11:57:47 ============================================================================ +11:57:47 FNo. Len. Field Value +11:57:47 ============================================================================ +11:57:47 [ 1] [ 4] [0810] +11:57:47 [ 7] [ 10] [0320115734] +11:57:47 [ 11] [ 6] [016234] +11:57:47 [ 37] [ 12] [507911016234] +11:57:47 [ 39] [ 2] [91] +11:57:47 [ 70] [ 3] [ ] +11:57:47 ============================================================================ +11:57:47 Calculate Source COMM Id = 3 +11:57:47 ============================================================================ +11:57:47 + + +waiting on router queue for slot.... +11:57:49 ============================================================================ +11:57:49 Slot Id : <40> +11:57:49 Transaction Type : REQUEST +11:57:49 Received From : +11:57:49 ============================================================================ +11:57:49 FNo. Len. Field Value +11:57:49 ============================================================================ +11:57:49 [ 1] [ 4] [0800] +11:57:49 [ 7] [ 10] [0320045657] +11:57:49 [ 11] [ 6] [156193] +11:57:49 [ 70] [ 3] [301] +11:57:49 ============================================================================ +11:57:49 + + +waiting on router queue for slot.... +11:57:49 Sending to : +11:57:49 ============================================================================ +11:57:49 ============================================================================ +11:57:49 Slot Id : <40> +11:57:49 Transaction Type : RESPONSE +11:57:49 Received From : +11:57:49 ============================================================================ +11:57:49 FNo. Len. Field Value +11:57:49 ============================================================================ +11:57:49 [ 1] [ 4] [0810] +11:57:49 [ 7] [ 10] [0320045657] +11:57:49 [ 11] [ 6] [156193] +11:57:49 [ 39] [ 2] [00] +11:57:49 [ 70] [ 3] [301] +11:57:49 ============================================================================ +11:57:49 Calculate Source COMM Id = 2 +11:57:49 ============================================================================ +11:57:49 + + +waiting on router queue for slot.... +11:57:50 ============================================================================ +11:57:50 Slot Id : <467> +11:57:50 Transaction Type : REQUEST +11:57:50 Received From : +11:57:50 ============================================================================ +11:57:50 FNo. Len. Field Value +11:57:50 ============================================================================ +11:57:50 [ 1] [ 4] [0200] +11:57:50 [ 2] [ 16] [6213545000437743] +11:57:50 [ 3] [ 6] [301000] +11:57:50 [ 7] [ 10] [0320045657] +11:57:50 [ 11] [ 6] [268817] +11:57:50 [ 12] [ 6] [115657] +11:57:50 [ 13] [ 4] [0320] +11:57:50 [ 14] [ 4] [4912] +11:57:50 [ 15] [ 4] [0320] +11:57:50 [ 18] [ 4] [6011] +11:57:50 [ 19] [ 3] [418] +11:57:50 [ 22] [ 3] [021] +11:57:50 [ 25] [ 2] [01] +11:57:50 [ 32] [ 6] [180893] +11:57:50 [ 35] [ 32] [6213545000437743=491212013774327] +11:57:50 [ 37] [ 12] [507904268817] +11:57:50 [ 41] [ 8] [0441VT52] +11:57:50 [ 42] [ 15] [999999 ] +11:57:50 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:57:50 [ 49] [ 3] [418] +11:57:50 [ 52] [ 16] [BE360230F331D4CB] +11:57:50 ============================================================================ +11:57:50 + + +waiting on router queue for slot.... +11:57:50 Sending to : +11:57:50 ============================================================================ +11:57:50 Sending to : +11:57:50 ============================================================================ +11:57:51 ============================================================================ +11:57:51 Slot Id : <467> +11:57:51 Transaction Type : REQUEST +11:57:51 Received From : +11:57:51 ============================================================================ +11:57:51 FNo. Len. Field Value +11:57:51 ============================================================================ +11:57:51 [ 1] [ 4] [0200] +11:57:51 [ 2] [ 16] [6213545000437743] +11:57:51 [ 3] [ 6] [301000] +11:57:51 [ 7] [ 10] [0320045657] +11:57:51 [ 11] [ 6] [268817] +11:57:51 [ 12] [ 6] [115657] +11:57:51 [ 13] [ 4] [0320] +11:57:51 [ 14] [ 4] [4912] +11:57:51 [ 15] [ 4] [0320] +11:57:51 [ 18] [ 4] [6011] +11:57:51 [ 19] [ 3] [418] +11:57:51 [ 22] [ 3] [021] +11:57:51 [ 25] [ 2] [01] +11:57:51 [ 32] [ 6] [180893] +11:57:51 [ 35] [ 32] [6213545000437743=491212013774327] +11:57:51 [ 37] [ 12] [507904268817] +11:57:51 [ 41] [ 8] [0441VT52] +11:57:51 [ 42] [ 15] [999999 ] +11:57:51 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:57:51 [ 49] [ 3] [418] +11:57:51 [ 52] [ 16] [BE360230F331D4CB] +11:57:51 ============================================================================ +11:57:51 + + +waiting on router queue for slot.... +11:57:51 Sending to : +11:57:51 ============================================================================ +11:57:51 ============================================================================ +11:57:51 Slot Id : <467> +11:57:51 Transaction Type : REQUEST +11:57:51 Received From : +11:57:51 ============================================================================ +11:57:51 FNo. Len. Field Value +11:57:51 ============================================================================ +11:57:51 [ 1] [ 4] [0200] +11:57:51 [ 2] [ 16] [6213545000437743] +11:57:51 [ 3] [ 6] [301000] +11:57:51 [ 7] [ 10] [0320045657] +11:57:51 [ 11] [ 6] [268817] +11:57:51 [ 12] [ 6] [115657] +11:57:51 [ 13] [ 4] [0320] +11:57:51 [ 14] [ 4] [4912] +11:57:51 [ 15] [ 4] [0320] +11:57:51 [ 18] [ 4] [6011] +11:57:51 [ 19] [ 3] [418] +11:57:51 [ 22] [ 3] [021] +11:57:51 [ 25] [ 2] [01] +11:57:51 [ 32] [ 6] [180893] +11:57:51 [ 35] [ 32] [6213545000437743=491212013774327] +11:57:51 [ 37] [ 12] [507904268817] +11:57:51 [ 41] [ 8] [0441VT52] +11:57:51 [ 42] [ 15] [999999 ] +11:57:51 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:57:51 [ 49] [ 3] [418] +11:57:51 [ 52] [ 16] [BFA0134D374D633C] +11:57:51 ============================================================================ +11:57:51 + + +waiting on router queue for slot.... +11:57:51 Sending to : <0> +11:57:51 ============================================================================ +11:57:51 ============================================================================ +11:57:51 Slot Id : <467> +11:57:51 Transaction Type : RESPONSE +11:57:51 Received From : +11:57:51 ============================================================================ +11:57:51 FNo. Len. Field Value +11:57:51 ============================================================================ +11:57:51 [ 1] [ 4] [0210] +11:57:51 [ 2] [ 16] [6213545000437743] +11:57:51 [ 3] [ 6] [301000] +11:57:51 [ 4] [ 12] [000000000000] +11:57:51 [ 7] [ 10] [0320045657] +11:57:51 [ 11] [ 6] [268817] +11:57:51 [ 12] [ 6] [115657] +11:57:51 [ 13] [ 4] [0320] +11:57:51 [ 15] [ 4] [0320] +11:57:51 [ 18] [ 4] [6011] +11:57:51 [ 19] [ 3] [418] +11:57:51 [ 32] [ 6] [180893] +11:57:51 [ 35] [ 32] [6213545000437743=491212013774327] +11:57:51 [ 37] [ 12] [507904268817] +11:57:51 [ 38] [ 6] [031462] +11:57:51 [ 39] [ 2] [00] +11:57:51 [ 41] [ 8] [0441VT52] +11:57:51 [ 49] [ 3] [418] +11:57:51 [ 54] [ 40] [1001418C0000750246041002418C000075024604] +11:57:51 ============================================================================ +11:57:51 Sending to : +11:57:51 ============================================================================ +11:57:51 + + +waiting on router queue for slot.... +11:57:53 ============================================================================ +11:57:53 Slot Id : <467> +11:57:53 Transaction Type : RESPONSE +11:57:53 Received From : +11:57:53 ============================================================================ +11:57:53 FNo. Len. Field Value +11:57:53 ============================================================================ +11:57:53 [ 1] [ 4] [0210] +11:57:53 [ 2] [ 16] [6213545000437743] +11:57:53 [ 3] [ 6] [301000] +11:57:53 [ 4] [ 12] [000000000000] +11:57:53 [ 7] [ 10] [0320045657] +11:57:53 [ 11] [ 6] [268817] +11:57:53 [ 12] [ 6] [115657] +11:57:53 [ 13] [ 4] [0320] +11:57:53 [ 15] [ 4] [0320] +11:57:53 [ 18] [ 4] [6011] +11:57:53 [ 19] [ 3] [418] +11:57:53 [ 32] [ 6] [180893] +11:57:53 [ 35] [ 32] [6213545000437743=491212013774327] +11:57:53 [ 37] [ 12] [507904268817] +11:57:53 [ 38] [ 6] [031462] +11:57:53 [ 39] [ 2] [00] +11:57:53 [ 41] [ 8] [0441VT52] +11:57:53 [ 49] [ 3] [418] +11:57:53 [ 54] [ 40] [1001418C0000750246041002418C000075024604] +11:57:53 ============================================================================ +11:57:53 Calculate Source COMM Id = 2 +11:57:53 ============================================================================ +11:57:53 + + +waiting on router queue for slot.... +11:57:54 ============================================================================ +11:57:54 Slot Id : <28> +11:57:54 Transaction Type : REQUEST +11:57:54 Received From : +11:57:54 ============================================================================ +11:57:54 FNo. Len. Field Value +11:57:54 ============================================================================ +11:57:54 [ 1] [ 4] [0200] +11:57:54 [ 2] [ 16] [6688990107058701] +11:57:54 [ 3] [ 6] [301000] +11:57:54 [ 4] [ 12] [000000000000] +11:57:54 [ 7] [ 10] [0320115750] +11:57:54 [ 11] [ 6] [737788] +11:57:54 [ 12] [ 6] [115750] +11:57:54 [ 13] [ 4] [0320] +11:57:54 [ 15] [ 4] [0320] +11:57:54 [ 18] [ 4] [6011] +11:57:54 [ 22] [ 3] [900] +11:57:54 [ 25] [ 2] [02] +11:57:54 [ 28] [ 9] [D00000000] +11:57:54 [ 32] [ 6] [621354] +11:57:54 [ 35] [ 37] [6688990107058701=44011231870143800000] +11:57:54 [ 37] [ 12] [507902682306] +11:57:54 [ 41] [ 8] [14000700] +11:57:54 [ 42] [ 15] [NATIVE ] +11:57:54 [ 43] [ 40] [CEMENT FACTORY Vangvieng LAO] +11:57:54 [ 49] [ 3] [418] +11:57:54 [ 52] [ 16] [A01AE972DBD9A937] +11:57:54 ============================================================================ +11:57:54 + + +waiting on router queue for slot.... +11:57:54 Sending to : +11:57:54 ============================================================================ +11:57:54 Sending to : +11:57:54 ============================================================================ +11:57:55 ============================================================================ +11:57:55 Slot Id : <28> +11:57:55 Transaction Type : REQUEST +11:57:55 Received From : +11:57:55 ============================================================================ +11:57:55 FNo. Len. Field Value +11:57:55 ============================================================================ +11:57:55 [ 1] [ 4] [0200] +11:57:55 [ 2] [ 16] [6688990107058701] +11:57:55 [ 3] [ 6] [301000] +11:57:55 [ 4] [ 12] [000000000000] +11:57:55 [ 7] [ 10] [0320115750] +11:57:55 [ 11] [ 6] [737788] +11:57:55 [ 12] [ 6] [115750] +11:57:55 [ 13] [ 4] [0320] +11:57:55 [ 15] [ 4] [0320] +11:57:55 [ 18] [ 4] [6011] +11:57:55 [ 22] [ 3] [900] +11:57:55 [ 25] [ 2] [02] +11:57:55 [ 28] [ 9] [D00000000] +11:57:55 [ 32] [ 6] [621354] +11:57:55 [ 35] [ 37] [6688990107058701=44011231870143800000] +11:57:55 [ 37] [ 12] [507902682306] +11:57:55 [ 41] [ 8] [14000700] +11:57:55 [ 42] [ 15] [NATIVE ] +11:57:55 [ 43] [ 40] [CEMENT FACTORY Vangvieng LAO] +11:57:55 [ 49] [ 3] [418] +11:57:55 [ 52] [ 16] [A01AE972DBD9A937] +11:57:55 ============================================================================ +11:57:55 + + +waiting on router queue for slot.... +11:57:55 Sending to : +11:57:55 ============================================================================ +11:57:55 ============================================================================ +11:57:55 Slot Id : <28> +11:57:55 Transaction Type : REQUEST +11:57:55 Received From : +11:57:55 ============================================================================ +11:57:55 FNo. Len. Field Value +11:57:55 ============================================================================ +11:57:55 [ 1] [ 4] [0200] +11:57:55 [ 2] [ 16] [6688990107058701] +11:57:55 [ 3] [ 6] [301000] +11:57:55 [ 4] [ 12] [000000000000] +11:57:55 [ 7] [ 10] [0320115750] +11:57:55 [ 11] [ 6] [737788] +11:57:55 [ 12] [ 6] [115750] +11:57:55 [ 13] [ 4] [0320] +11:57:55 [ 15] [ 4] [0320] +11:57:55 [ 18] [ 4] [6011] +11:57:55 [ 22] [ 3] [900] +11:57:55 [ 25] [ 2] [02] +11:57:55 [ 28] [ 9] [D00000000] +11:57:55 [ 32] [ 6] [621354] +11:57:55 [ 35] [ 37] [6688990107058701=44011231870143800000] +11:57:55 [ 37] [ 12] [507902682306] +11:57:55 [ 41] [ 8] [14000700] +11:57:55 [ 42] [ 15] [NATIVE ] +11:57:55 [ 43] [ 40] [CEMENT FACTORY Vangvieng LAO] +11:57:55 [ 49] [ 3] [418] +11:57:55 [ 52] [ 16] [B4210A6FDC044E13] +11:57:55 ============================================================================ +11:57:55 + + +waiting on router queue for slot.... +11:57:55 Sending to : <4> +11:57:55 ============================================================================ +11:57:56 ============================================================================ +11:57:56 Slot Id : <28> +11:57:56 Transaction Type : RESPONSE +11:57:56 Received From : +11:57:56 ============================================================================ +11:57:56 FNo. Len. Field Value +11:57:56 ============================================================================ +11:57:56 [ 1] [ 4] [0210] +11:57:56 [ 2] [ 16] [6688990107058701] +11:57:56 [ 3] [ 6] [301000] +11:57:56 [ 4] [ 12] [000000000000] +11:57:56 [ 11] [ 6] [737788] +11:57:56 [ 12] [ 6] [115750] +11:57:56 [ 15] [ 4] [0320] +11:57:56 [ 18] [ 4] [6011] +11:57:56 [ 32] [ 6] [621354] +11:57:56 [ 35] [ 37] [6688990107058701=44011231870143800000] +11:57:56 [ 37] [ 12] [507902682306] +11:57:56 [ 38] [ 6] [975774] +11:57:56 [ 39] [ 2] [00] +11:57:56 [ 41] [ 8] [14000700] +11:57:56 [ 49] [ 3] [418] +11:57:56 [ 54] [ 20] [1002418C000032237084] +11:57:56 ============================================================================ +11:57:56 Sending to : +11:57:56 ============================================================================ +11:57:56 + + +waiting on router queue for slot.... +11:57:57 ============================================================================ +11:57:57 Slot Id : <28> +11:57:57 Transaction Type : RESPONSE +11:57:57 Received From : +11:57:57 ============================================================================ +11:57:57 FNo. Len. Field Value +11:57:57 ============================================================================ +11:57:57 [ 1] [ 4] [0210] +11:57:57 [ 2] [ 16] [6688990107058701] +11:57:57 [ 3] [ 6] [301000] +11:57:57 [ 4] [ 12] [000000000000] +11:57:57 [ 11] [ 6] [737788] +11:57:57 [ 12] [ 6] [115750] +11:57:57 [ 15] [ 4] [0320] +11:57:57 [ 18] [ 4] [6011] +11:57:57 [ 32] [ 6] [621354] +11:57:57 [ 35] [ 37] [6688990107058701=44011231870143800000] +11:57:57 [ 37] [ 12] [507902682306] +11:57:57 [ 38] [ 6] [975774] +11:57:57 [ 39] [ 2] [00] +11:57:57 [ 41] [ 8] [14000700] +11:57:57 [ 49] [ 3] [418] +11:57:57 [ 54] [ 20] [1002418C000032237084] +11:57:57 ============================================================================ +11:57:57 Calculate Source COMM Id = 0 +11:57:57 ============================================================================ +11:57:57 + + +waiting on router queue for slot.... +11:58:04 ============================================================================ +11:58:04 Slot Id : <43> +11:58:04 Transaction Type : REQUEST +11:58:04 Received From : +11:58:04 ============================================================================ +11:58:04 FNo. Len. Field Value +11:58:04 ============================================================================ +11:58:04 [ 1] [ 4] [0200] +11:58:04 [ 2] [ 16] [6213544000749009] +11:58:04 [ 3] [ 6] [011000] +11:58:04 [ 4] [ 12] [000005000000] +11:58:04 [ 7] [ 10] [0320045710] +11:58:04 [ 11] [ 6] [268821] +11:58:04 [ 12] [ 6] [115710] +11:58:04 [ 13] [ 4] [0320] +11:58:04 [ 14] [ 4] [4912] +11:58:04 [ 15] [ 4] [0320] +11:58:04 [ 18] [ 4] [6011] +11:58:04 [ 19] [ 3] [418] +11:58:04 [ 22] [ 3] [021] +11:58:04 [ 25] [ 2] [01] +11:58:04 [ 28] [ 9] [D00002000] +11:58:04 [ 32] [ 6] [180893] +11:58:04 [ 35] [ 32] [6213544000749009=491212014900148] +11:58:04 [ 37] [ 12] [507904268821] +11:58:04 [ 41] [ 8] [0114XKBR] +11:58:04 [ 42] [ 15] [999999 ] +11:58:04 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +11:58:04 [ 49] [ 3] [418] +11:58:04 [ 52] [ 16] [5E75E21D643DB14C] +11:58:04 ============================================================================ +11:58:04 + + +waiting on router queue for slot.... +11:58:04 Sending to : +11:58:04 ============================================================================ +11:58:04 Sending to : +11:58:04 ============================================================================ +11:58:04 ============================================================================ +11:58:04 Slot Id : <43> +11:58:04 Transaction Type : REQUEST +11:58:04 Received From : +11:58:04 ============================================================================ +11:58:04 FNo. Len. Field Value +11:58:04 ============================================================================ +11:58:04 [ 1] [ 4] [0200] +11:58:04 [ 2] [ 16] [6213544000749009] +11:58:04 [ 3] [ 6] [011000] +11:58:04 [ 4] [ 12] [000005000000] +11:58:04 [ 7] [ 10] [0320045710] +11:58:04 [ 11] [ 6] [268821] +11:58:04 [ 12] [ 6] [115710] +11:58:04 [ 13] [ 4] [0320] +11:58:04 [ 14] [ 4] [4912] +11:58:04 [ 15] [ 4] [0320] +11:58:04 [ 18] [ 4] [6011] +11:58:04 [ 19] [ 3] [418] +11:58:04 [ 22] [ 3] [021] +11:58:04 [ 25] [ 2] [01] +11:58:04 [ 28] [ 9] [D00002000] +11:58:04 [ 32] [ 6] [180893] +11:58:04 [ 35] [ 32] [6213544000749009=491212014900148] +11:58:04 [ 37] [ 12] [507904268821] +11:58:04 [ 41] [ 8] [0114XKBR] +11:58:04 [ 42] [ 15] [999999 ] +11:58:04 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +11:58:04 [ 49] [ 3] [418] +11:58:04 [ 52] [ 16] [5E75E21D643DB14C] +11:58:04 ============================================================================ +11:58:04 + + +waiting on router queue for slot.... +11:58:04 Sending to : +11:58:04 ============================================================================ +11:58:04 ============================================================================ +11:58:04 Slot Id : <43> +11:58:04 Transaction Type : REQUEST +11:58:04 Received From : +11:58:04 ============================================================================ +11:58:04 FNo. Len. Field Value +11:58:04 ============================================================================ +11:58:04 [ 1] [ 4] [0200] +11:58:04 [ 2] [ 16] [6213544000749009] +11:58:04 [ 3] [ 6] [011000] +11:58:04 [ 4] [ 12] [000005000000] +11:58:04 [ 7] [ 10] [0320045710] +11:58:04 [ 11] [ 6] [268821] +11:58:04 [ 12] [ 6] [115710] +11:58:04 [ 13] [ 4] [0320] +11:58:04 [ 14] [ 4] [4912] +11:58:04 [ 15] [ 4] [0320] +11:58:04 [ 18] [ 4] [6011] +11:58:04 [ 19] [ 3] [418] +11:58:04 [ 22] [ 3] [021] +11:58:04 [ 25] [ 2] [01] +11:58:04 [ 28] [ 9] [D00002000] +11:58:04 [ 32] [ 6] [180893] +11:58:04 [ 35] [ 32] [6213544000749009=491212014900148] +11:58:04 [ 37] [ 12] [507904268821] +11:58:04 [ 41] [ 8] [0114XKBR] +11:58:04 [ 42] [ 15] [999999 ] +11:58:04 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +11:58:04 [ 49] [ 3] [418] +11:58:04 [ 52] [ 16] [79D58E8BA7B1E81A] +11:58:04 ============================================================================ +11:58:04 + + +waiting on router queue for slot.... +11:58:04 Sending to : <0> +11:58:04 ============================================================================ +11:58:05 ============================================================================ +11:58:05 Slot Id : <43> +11:58:05 Transaction Type : RESPONSE +11:58:05 Received From : +11:58:05 ============================================================================ +11:58:05 FNo. Len. Field Value +11:58:05 ============================================================================ +11:58:05 [ 1] [ 4] [0210] +11:58:05 [ 2] [ 16] [6213544000749009] +11:58:05 [ 3] [ 6] [011000] +11:58:05 [ 4] [ 12] [000005000000] +11:58:05 [ 7] [ 10] [0320045710] +11:58:05 [ 11] [ 6] [268821] +11:58:05 [ 12] [ 6] [115710] +11:58:05 [ 13] [ 4] [0320] +11:58:05 [ 15] [ 4] [0320] +11:58:05 [ 18] [ 4] [6011] +11:58:05 [ 19] [ 3] [418] +11:58:05 [ 32] [ 6] [180893] +11:58:05 [ 35] [ 32] [6213544000749009=491212014900148] +11:58:05 [ 37] [ 12] [507904268821] +11:58:05 [ 38] [ 6] [255018] +11:58:05 [ 39] [ 2] [00] +11:58:05 [ 41] [ 8] [0114XKBR] +11:58:05 [ 49] [ 3] [418] +11:58:05 [ 54] [ 40] [1001418C0000200657431002418C000020065743] +11:58:05 ============================================================================ +11:58:05 Sending to : +11:58:05 ============================================================================ +11:58:05 + + +waiting on router queue for slot.... +11:58:06 ============================================================================ +11:58:06 Slot Id : <8> +11:58:06 Transaction Type : REQUEST +11:58:06 Received From : +11:58:06 ============================================================================ +11:58:06 FNo. Len. Field Value +11:58:06 ============================================================================ +11:58:06 [ 1] [ 4] [0800] +11:58:06 [ 7] [ 10] [0320045713] +11:58:06 [ 11] [ 6] [156194] +11:58:06 [ 70] [ 3] [301] +11:58:06 ============================================================================ +11:58:06 + + +waiting on router queue for slot.... +11:58:06 Sending to : +11:58:06 ============================================================================ +11:58:06 ============================================================================ +11:58:06 Slot Id : <8> +11:58:06 Transaction Type : RESPONSE +11:58:06 Received From : +11:58:06 ============================================================================ +11:58:06 FNo. Len. Field Value +11:58:06 ============================================================================ +11:58:06 [ 1] [ 4] [0810] +11:58:06 [ 7] [ 10] [0320045713] +11:58:06 [ 11] [ 6] [156194] +11:58:06 [ 39] [ 2] [00] +11:58:06 [ 70] [ 3] [301] +11:58:06 ============================================================================ +11:58:06 Calculate Source COMM Id = 2 +11:58:06 ============================================================================ +11:58:06 + + +waiting on router queue for slot.... +11:58:06 ============================================================================ +11:58:06 Slot Id : <43> +11:58:06 Transaction Type : RESPONSE +11:58:06 Received From : +11:58:06 ============================================================================ +11:58:06 FNo. Len. Field Value +11:58:06 ============================================================================ +11:58:06 [ 1] [ 4] [0210] +11:58:06 [ 2] [ 16] [6213544000749009] +11:58:06 [ 3] [ 6] [011000] +11:58:06 [ 4] [ 12] [000005000000] +11:58:06 [ 7] [ 10] [0320045710] +11:58:06 [ 11] [ 6] [268821] +11:58:06 [ 12] [ 6] [115710] +11:58:06 [ 13] [ 4] [0320] +11:58:06 [ 15] [ 4] [0320] +11:58:06 [ 18] [ 4] [6011] +11:58:06 [ 19] [ 3] [418] +11:58:06 [ 32] [ 6] [180893] +11:58:06 [ 35] [ 32] [6213544000749009=491212014900148] +11:58:06 [ 37] [ 12] [507904268821] +11:58:06 [ 38] [ 6] [255018] +11:58:06 [ 39] [ 2] [00] +11:58:06 [ 41] [ 8] [0114XKBR] +11:58:06 [ 49] [ 3] [418] +11:58:06 [ 54] [ 40] [1001418C0000200657431002418C000020065743] +11:58:06 ============================================================================ +11:58:06 Calculate Source COMM Id = 2 +11:58:06 ============================================================================ +11:58:06 + + +waiting on router queue for slot.... +11:58:20 ============================================================================ +11:58:20 Slot Id : <50> +11:58:20 Transaction Type : REQUEST +11:58:20 Received From : +11:58:20 ============================================================================ +11:58:20 FNo. Len. Field Value +11:58:20 ============================================================================ +11:58:20 [ 1] [ 4] [0200] +11:58:20 [ 2] [ 16] [6213545000754220] +11:58:20 [ 3] [ 6] [010000] +11:58:20 [ 4] [ 12] [000100000000] +11:58:20 [ 7] [ 10] [0320115611] +11:58:20 [ 11] [ 6] [942869] +11:58:20 [ 12] [ 6] [115611] +11:58:20 [ 13] [ 4] [0320] +11:58:20 [ 15] [ 4] [0320] +11:58:20 [ 18] [ 4] [6011] +11:58:20 [ 19] [ 3] [418] +11:58:20 [ 22] [ 3] [021] +11:58:20 [ 25] [ 2] [01] +11:58:20 [ 28] [ 9] [D00002000] +11:58:20 [ 32] [ 6] [668899] +11:58:20 [ 35] [ 32] [6213545000754220=491212015422235] +11:58:20 [ 37] [ 12] [507901422784] +11:58:20 [ 41] [ 8] [03314001] +11:58:20 [ 42] [ 15] [APT ] +11:58:20 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:58:20 [ 49] [ 3] [418] +11:58:20 [ 52] [ 16] [575BB4B74DEB053F] +11:58:20 ============================================================================ +11:58:20 + + +waiting on router queue for slot.... +11:58:20 Sending to : +11:58:20 ============================================================================ +11:58:20 Sending to : +11:58:20 ============================================================================ +11:58:20 ============================================================================ +11:58:20 Slot Id : <50> +11:58:20 Transaction Type : REQUEST +11:58:20 Received From : +11:58:20 ============================================================================ +11:58:20 FNo. Len. Field Value +11:58:20 ============================================================================ +11:58:20 [ 1] [ 4] [0200] +11:58:20 [ 2] [ 16] [6213545000754220] +11:58:20 [ 3] [ 6] [010000] +11:58:20 [ 4] [ 12] [000100000000] +11:58:20 [ 7] [ 10] [0320115611] +11:58:20 [ 11] [ 6] [942869] +11:58:20 [ 12] [ 6] [115611] +11:58:20 [ 13] [ 4] [0320] +11:58:20 [ 15] [ 4] [0320] +11:58:20 [ 18] [ 4] [6011] +11:58:20 [ 19] [ 3] [418] +11:58:20 [ 22] [ 3] [021] +11:58:20 [ 25] [ 2] [01] +11:58:20 [ 28] [ 9] [D00002000] +11:58:20 [ 32] [ 6] [668899] +11:58:20 [ 35] [ 32] [6213545000754220=491212015422235] +11:58:20 [ 37] [ 12] [507901422784] +11:58:20 [ 41] [ 8] [03314001] +11:58:20 [ 42] [ 15] [APT ] +11:58:20 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:58:20 [ 49] [ 3] [418] +11:58:20 [ 52] [ 16] [575BB4B74DEB053F] +11:58:20 ============================================================================ +11:58:20 + + +waiting on router queue for slot.... +11:58:20 Sending to : +11:58:20 ============================================================================ +11:58:20 ============================================================================ +11:58:20 Slot Id : <50> +11:58:20 Transaction Type : REQUEST +11:58:20 Received From : +11:58:20 ============================================================================ +11:58:20 FNo. Len. Field Value +11:58:20 ============================================================================ +11:58:20 [ 1] [ 4] [0200] +11:58:20 [ 2] [ 16] [6213545000754220] +11:58:20 [ 3] [ 6] [010000] +11:58:20 [ 4] [ 12] [000100000000] +11:58:20 [ 7] [ 10] [0320115611] +11:58:20 [ 11] [ 6] [942869] +11:58:20 [ 12] [ 6] [115611] +11:58:20 [ 13] [ 4] [0320] +11:58:20 [ 15] [ 4] [0320] +11:58:20 [ 18] [ 4] [6011] +11:58:20 [ 19] [ 3] [418] +11:58:20 [ 22] [ 3] [021] +11:58:20 [ 25] [ 2] [01] +11:58:20 [ 28] [ 9] [D00002000] +11:58:20 [ 32] [ 6] [668899] +11:58:20 [ 35] [ 32] [6213545000754220=491212015422235] +11:58:20 [ 37] [ 12] [507901422784] +11:58:20 [ 41] [ 8] [03314001] +11:58:20 [ 42] [ 15] [APT ] +11:58:20 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +11:58:20 [ 49] [ 3] [418] +11:58:20 [ 52] [ 16] [6D6789CDC7EB7E96] +11:58:20 ============================================================================ +11:58:20 + + +waiting on router queue for slot.... +11:58:20 Sending to : <0> +11:58:20 ============================================================================ +11:58:21 ============================================================================ +11:58:21 Slot Id : <50> +11:58:21 Transaction Type : RESPONSE +11:58:21 Received From : +11:58:21 ============================================================================ +11:58:21 FNo. Len. Field Value +11:58:21 ============================================================================ +11:58:21 [ 1] [ 4] [0210] +11:58:21 [ 2] [ 16] [6213545000754220] +11:58:21 [ 3] [ 6] [010000] +11:58:21 [ 4] [ 12] [000100000000] +11:58:21 [ 7] [ 10] [0320115611] +11:58:21 [ 11] [ 6] [942869] +11:58:21 [ 12] [ 6] [115611] +11:58:21 [ 13] [ 4] [0320] +11:58:21 [ 15] [ 4] [0320] +11:58:21 [ 18] [ 4] [6011] +11:58:21 [ 19] [ 3] [418] +11:58:21 [ 32] [ 6] [668899] +11:58:21 [ 35] [ 32] [6213545000754220=491212015422235] +11:58:21 [ 37] [ 12] [507901422784] +11:58:21 [ 38] [ 6] [331947] +11:58:21 [ 39] [ 2] [00] +11:58:21 [ 41] [ 8] [03314001] +11:58:21 [ 49] [ 3] [418] +11:58:21 [ 54] [ 40] [0001418C0015499769710002418C001549976971] +11:58:21 ============================================================================ +11:58:21 Sending to : +11:58:21 ============================================================================ +11:58:21 + + +waiting on router queue for slot.... +11:58:22 ============================================================================ +11:58:22 Slot Id : <50> +11:58:22 Transaction Type : RESPONSE +11:58:22 Received From : +11:58:22 ============================================================================ +11:58:22 FNo. Len. Field Value +11:58:22 ============================================================================ +11:58:22 [ 1] [ 4] [0210] +11:58:22 [ 2] [ 16] [6213545000754220] +11:58:22 [ 3] [ 6] [010000] +11:58:22 [ 4] [ 12] [000100000000] +11:58:22 [ 7] [ 10] [0320115611] +11:58:22 [ 11] [ 6] [942869] +11:58:22 [ 12] [ 6] [115611] +11:58:22 [ 13] [ 4] [0320] +11:58:22 [ 15] [ 4] [0320] +11:58:22 [ 18] [ 4] [6011] +11:58:22 [ 19] [ 3] [418] +11:58:22 [ 32] [ 6] [668899] +11:58:22 [ 35] [ 32] [6213545000754220=491212015422235] +11:58:22 [ 37] [ 12] [507901422784] +11:58:22 [ 38] [ 6] [331947] +11:58:22 [ 39] [ 2] [00] +11:58:22 [ 41] [ 8] [03314001] +11:58:22 [ 49] [ 3] [418] +11:58:22 [ 54] [ 40] [0001418C0015499769710002418C001549976971] +11:58:22 ============================================================================ +11:58:22 Calculate Source COMM Id = 4 +11:58:22 ============================================================================ +11:58:22 + + +waiting on router queue for slot.... +11:58:22 ============================================================================ +11:58:22 Slot Id : <52> +11:58:22 Transaction Type : REQUEST +11:58:22 Received From : +11:58:22 ============================================================================ +11:58:22 FNo. Len. Field Value +11:58:22 ============================================================================ +11:58:22 [ 1] [ 4] [0800] +11:58:22 [ 7] [ 10] [0320045730] +11:58:22 [ 11] [ 6] [156195] +11:58:22 [ 70] [ 3] [301] +11:58:22 ============================================================================ +11:58:22 + + +waiting on router queue for slot.... +11:58:22 Sending to : +11:58:22 ============================================================================ +11:58:22 ============================================================================ +11:58:22 Slot Id : <52> +11:58:22 Transaction Type : RESPONSE +11:58:22 Received From : +11:58:22 ============================================================================ +11:58:22 FNo. Len. Field Value +11:58:22 ============================================================================ +11:58:22 [ 1] [ 4] [0810] +11:58:22 [ 7] [ 10] [0320045730] +11:58:22 [ 11] [ 6] [156195] +11:58:22 [ 39] [ 2] [00] +11:58:22 [ 70] [ 3] [301] +11:58:22 ============================================================================ +11:58:22 Calculate Source COMM Id = 2 +11:58:22 ============================================================================ +11:58:22 + + +waiting on router queue for slot.... +11:58:33 ============================================================================ +11:58:33 Slot Id : <25> +11:58:33 Transaction Type : REQUEST +11:58:33 Received From : +11:58:33 ============================================================================ +11:58:33 FNo. Len. Field Value +11:58:33 ============================================================================ +11:58:33 [ 1] [ 4] [0200] +11:58:33 [ 2] [ 16] [6213545000437743] +11:58:33 [ 3] [ 6] [011000] +11:58:33 [ 4] [ 12] [000070000000] +11:58:33 [ 7] [ 10] [0320045740] +11:58:33 [ 11] [ 6] [268826] +11:58:33 [ 12] [ 6] [115740] +11:58:33 [ 13] [ 4] [0320] +11:58:33 [ 14] [ 4] [4912] +11:58:33 [ 15] [ 4] [0320] +11:58:33 [ 18] [ 4] [6011] +11:58:33 [ 19] [ 3] [418] +11:58:33 [ 22] [ 3] [021] +11:58:33 [ 25] [ 2] [01] +11:58:33 [ 28] [ 9] [D00002000] +11:58:33 [ 32] [ 6] [180893] +11:58:33 [ 35] [ 32] [6213545000437743=491212013774327] +11:58:33 [ 37] [ 12] [507904268826] +11:58:33 [ 41] [ 8] [0441VT52] +11:58:33 [ 42] [ 15] [999999 ] +11:58:33 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:58:33 [ 49] [ 3] [418] +11:58:33 [ 52] [ 16] [BE360230F331D4CB] +11:58:33 ============================================================================ +11:58:33 + + +waiting on router queue for slot.... +11:58:33 Sending to : +11:58:33 ============================================================================ +11:58:33 Sending to : +11:58:33 ============================================================================ +11:58:33 ============================================================================ +11:58:33 Slot Id : <25> +11:58:33 Transaction Type : REQUEST +11:58:33 Received From : +11:58:33 ============================================================================ +11:58:33 FNo. Len. Field Value +11:58:33 ============================================================================ +11:58:33 [ 1] [ 4] [0200] +11:58:33 [ 2] [ 16] [6213545000437743] +11:58:33 [ 3] [ 6] [011000] +11:58:33 [ 4] [ 12] [000070000000] +11:58:33 [ 7] [ 10] [0320045740] +11:58:33 [ 11] [ 6] [268826] +11:58:33 [ 12] [ 6] [115740] +11:58:33 [ 13] [ 4] [0320] +11:58:33 [ 14] [ 4] [4912] +11:58:33 [ 15] [ 4] [0320] +11:58:33 [ 18] [ 4] [6011] +11:58:33 [ 19] [ 3] [418] +11:58:33 [ 22] [ 3] [021] +11:58:33 [ 25] [ 2] [01] +11:58:33 [ 28] [ 9] [D00002000] +11:58:33 [ 32] [ 6] [180893] +11:58:33 [ 35] [ 32] [6213545000437743=491212013774327] +11:58:33 [ 37] [ 12] [507904268826] +11:58:33 [ 41] [ 8] [0441VT52] +11:58:33 [ 42] [ 15] [999999 ] +11:58:33 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:58:33 [ 49] [ 3] [418] +11:58:33 [ 52] [ 16] [BE360230F331D4CB] +11:58:33 ============================================================================ +11:58:33 + + +waiting on router queue for slot.... +11:58:33 Sending to : +11:58:33 ============================================================================ +11:58:33 ============================================================================ +11:58:33 Slot Id : <25> +11:58:33 Transaction Type : REQUEST +11:58:33 Received From : +11:58:33 ============================================================================ +11:58:33 FNo. Len. Field Value +11:58:33 ============================================================================ +11:58:33 [ 1] [ 4] [0200] +11:58:33 [ 2] [ 16] [6213545000437743] +11:58:33 [ 3] [ 6] [011000] +11:58:33 [ 4] [ 12] [000070000000] +11:58:33 [ 7] [ 10] [0320045740] +11:58:33 [ 11] [ 6] [268826] +11:58:33 [ 12] [ 6] [115740] +11:58:33 [ 13] [ 4] [0320] +11:58:33 [ 14] [ 4] [4912] +11:58:33 [ 15] [ 4] [0320] +11:58:33 [ 18] [ 4] [6011] +11:58:33 [ 19] [ 3] [418] +11:58:33 [ 22] [ 3] [021] +11:58:33 [ 25] [ 2] [01] +11:58:33 [ 28] [ 9] [D00002000] +11:58:33 [ 32] [ 6] [180893] +11:58:33 [ 35] [ 32] [6213545000437743=491212013774327] +11:58:33 [ 37] [ 12] [507904268826] +11:58:33 [ 41] [ 8] [0441VT52] +11:58:33 [ 42] [ 15] [999999 ] +11:58:33 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:58:33 [ 49] [ 3] [418] +11:58:33 [ 52] [ 16] [BFA0134D374D633C] +11:58:33 ============================================================================ +11:58:33 + + +waiting on router queue for slot.... +11:58:33 Sending to : <0> +11:58:33 ============================================================================ +11:58:34 ============================================================================ +11:58:34 Slot Id : <25> +11:58:34 Transaction Type : RESPONSE +11:58:34 Received From : +11:58:34 ============================================================================ +11:58:34 FNo. Len. Field Value +11:58:34 ============================================================================ +11:58:34 [ 1] [ 4] [0210] +11:58:34 [ 2] [ 16] [6213545000437743] +11:58:34 [ 3] [ 6] [011000] +11:58:34 [ 4] [ 12] [000070000000] +11:58:34 [ 7] [ 10] [0320045740] +11:58:34 [ 11] [ 6] [268826] +11:58:34 [ 12] [ 6] [115740] +11:58:34 [ 13] [ 4] [0320] +11:58:34 [ 15] [ 4] [0320] +11:58:34 [ 18] [ 4] [6011] +11:58:34 [ 19] [ 3] [418] +11:58:34 [ 32] [ 6] [180893] +11:58:34 [ 35] [ 32] [6213545000437743=491212013774327] +11:58:34 [ 37] [ 12] [507904268826] +11:58:34 [ 38] [ 6] [268826] +11:58:34 [ 39] [ 2] [51] +11:58:34 [ 41] [ 8] [0441VT52] +11:58:34 [ 49] [ 3] [418] +11:58:34 [ 54] [ 40] [1001418C0000750246041002418C000075024604] +11:58:34 ============================================================================ +11:58:34 Sending to : +11:58:34 ============================================================================ +11:58:34 + + +waiting on router queue for slot.... +11:58:35 ============================================================================ +11:58:35 Slot Id : <25> +11:58:35 Transaction Type : RESPONSE +11:58:35 Received From : +11:58:35 ============================================================================ +11:58:35 FNo. Len. Field Value +11:58:35 ============================================================================ +11:58:35 [ 1] [ 4] [0210] +11:58:35 [ 2] [ 16] [6213545000437743] +11:58:35 [ 3] [ 6] [011000] +11:58:35 [ 4] [ 12] [000070000000] +11:58:35 [ 7] [ 10] [0320045740] +11:58:35 [ 11] [ 6] [268826] +11:58:35 [ 12] [ 6] [115740] +11:58:35 [ 13] [ 4] [0320] +11:58:35 [ 15] [ 4] [0320] +11:58:35 [ 18] [ 4] [6011] +11:58:35 [ 19] [ 3] [418] +11:58:35 [ 32] [ 6] [180893] +11:58:35 [ 35] [ 32] [6213545000437743=491212013774327] +11:58:35 [ 37] [ 12] [507904268826] +11:58:35 [ 38] [ 6] [268826] +11:58:35 [ 39] [ 2] [51] +11:58:35 [ 41] [ 8] [0441VT52] +11:58:35 [ 49] [ 3] [418] +11:58:35 [ 54] [ 40] [1001418C0000750246041002418C000075024604] +11:58:35 ============================================================================ +11:58:35 Calculate Source COMM Id = 2 +11:58:35 ============================================================================ +11:58:35 + + +waiting on router queue for slot.... +11:58:48 ============================================================================ +11:58:48 Slot Id : <44> +11:58:48 Transaction Type : REQUEST +11:58:48 Received From : +11:58:48 ============================================================================ +11:58:48 FNo. Len. Field Value +11:58:48 ============================================================================ +11:58:48 [ 1] [ 4] [0800] +11:58:48 [ 2] [ 5] [02531] +11:58:48 [ 3] [ 6] [579118] +11:58:48 [ 7] [ 10] [0320045848] +11:58:48 [ 11] [ 6] [807107] +11:58:48 [ 15] [ 10] [0320045848] +11:58:48 [ 37] [ 11] [57911807107] +11:58:48 [ 70] [ 3] [001] +11:58:48 ============================================================================ +11:58:48 + + +waiting on router queue for slot.... +11:58:48 ============================================================================ +11:58:48 Slot Id : <44> +11:58:48 Transaction Type : RESPONSE +11:58:48 Received From : +11:58:48 ============================================================================ +11:58:48 FNo. Len. Field Value +11:58:48 ============================================================================ +11:58:48 [ 1] [ 4] [0810] +11:58:48 [ 7] [ 10] [0320045848] +11:58:48 [ 11] [ 6] [807107] +11:58:48 [ 15] [ 4] [0320] +11:58:48 [ 37] [ 12] [57911807107] +11:58:48 [ 39] [ 2] [00] +11:58:48 [ 70] [ 3] [001] +11:58:48 ============================================================================ +11:58:48 Sending to : +11:58:48 ============================================================================ +11:58:48 + + +waiting on router queue for slot.... +11:58:49 ============================================================================ +11:58:49 Slot Id : <61> +11:58:49 Transaction Type : REQUEST +11:58:49 Received From : +11:58:49 ============================================================================ +11:58:49 FNo. Len. Field Value +11:58:49 ============================================================================ +11:58:49 [ 1] [ 4] [0800] +11:58:49 [ 7] [ 10] [0320045757] +11:58:49 [ 11] [ 6] [156196] +11:58:49 [ 70] [ 3] [301] +11:58:49 ============================================================================ +11:58:49 + + +waiting on router queue for slot.... +11:58:49 Sending to : +11:58:49 ============================================================================ +11:58:49 ============================================================================ +11:58:49 Slot Id : <61> +11:58:49 Transaction Type : RESPONSE +11:58:49 Received From : +11:58:49 ============================================================================ +11:58:49 FNo. Len. Field Value +11:58:49 ============================================================================ +11:58:49 [ 1] [ 4] [0810] +11:58:49 [ 7] [ 10] [0320045757] +11:58:49 [ 11] [ 6] [156196] +11:58:49 [ 39] [ 2] [00] +11:58:49 [ 70] [ 3] [301] +11:58:49 ============================================================================ +11:58:49 Calculate Source COMM Id = 2 +11:58:49 ============================================================================ +11:58:49 + + +waiting on router queue for slot.... +11:59:05 ============================================================================ +11:59:05 Slot Id : <15> +11:59:05 Transaction Type : REQUEST +11:59:05 Received From : +11:59:05 ============================================================================ +11:59:05 FNo. Len. Field Value +11:59:05 ============================================================================ +11:59:05 [ 1] [ 4] [0800] +11:59:05 [ 7] [ 10] [0320045813] +11:59:05 [ 11] [ 6] [156197] +11:59:05 [ 70] [ 3] [301] +11:59:05 ============================================================================ +11:59:05 + + +waiting on router queue for slot.... +11:59:05 Sending to : +11:59:05 ============================================================================ +11:59:05 ============================================================================ +11:59:05 Slot Id : <15> +11:59:05 Transaction Type : RESPONSE +11:59:05 Received From : +11:59:05 ============================================================================ +11:59:05 FNo. Len. Field Value +11:59:05 ============================================================================ +11:59:05 [ 1] [ 4] [0810] +11:59:05 [ 7] [ 10] [0320045813] +11:59:05 [ 11] [ 6] [156197] +11:59:05 [ 39] [ 2] [00] +11:59:05 [ 70] [ 3] [301] +11:59:05 ============================================================================ +11:59:05 Calculate Source COMM Id = 2 +11:59:05 ============================================================================ +11:59:05 + + +waiting on router queue for slot.... +11:59:10 ============================================================================ +11:59:10 Slot Id : <55> +11:59:10 Transaction Type : REQUEST +11:59:10 Received From : +11:59:10 ============================================================================ +11:59:10 FNo. Len. Field Value +11:59:10 ============================================================================ +11:59:10 [ 1] [ 4] [0200] +11:59:10 [ 2] [ 16] [6213544001940524] +11:59:10 [ 3] [ 6] [010000] +11:59:10 [ 4] [ 12] [000010000000] +11:59:10 [ 7] [ 10] [0320115701] +11:59:10 [ 11] [ 6] [942898] +11:59:10 [ 12] [ 6] [115701] +11:59:10 [ 13] [ 4] [0320] +11:59:10 [ 15] [ 4] [0320] +11:59:10 [ 18] [ 4] [6011] +11:59:10 [ 19] [ 3] [418] +11:59:10 [ 22] [ 3] [021] +11:59:10 [ 25] [ 2] [01] +11:59:10 [ 28] [ 9] [D00002000] +11:59:10 [ 32] [ 6] [668899] +11:59:10 [ 35] [ 32] [6213544001940524=491212014052752] +11:59:10 [ 37] [ 12] [507901963534] +11:59:10 [ 41] [ 8] [03020019] +11:59:10 [ 42] [ 15] [APT ] +11:59:10 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:59:10 [ 49] [ 3] [418] +11:59:10 [ 52] [ 16] [9C739DD27C9E21CD] +11:59:10 ============================================================================ +11:59:10 + + +waiting on router queue for slot.... +11:59:10 Sending to : +11:59:10 ============================================================================ +11:59:10 Sending to : +11:59:10 ============================================================================ +11:59:11 ============================================================================ +11:59:11 Slot Id : <55> +11:59:11 Transaction Type : REQUEST +11:59:11 Received From : +11:59:11 ============================================================================ +11:59:11 FNo. Len. Field Value +11:59:11 ============================================================================ +11:59:11 [ 1] [ 4] [0200] +11:59:11 [ 2] [ 16] [6213544001940524] +11:59:11 [ 3] [ 6] [010000] +11:59:11 [ 4] [ 12] [000010000000] +11:59:11 [ 7] [ 10] [0320115701] +11:59:11 [ 11] [ 6] [942898] +11:59:11 [ 12] [ 6] [115701] +11:59:11 [ 13] [ 4] [0320] +11:59:11 [ 15] [ 4] [0320] +11:59:11 [ 18] [ 4] [6011] +11:59:11 [ 19] [ 3] [418] +11:59:11 [ 22] [ 3] [021] +11:59:11 [ 25] [ 2] [01] +11:59:11 [ 28] [ 9] [D00002000] +11:59:11 [ 32] [ 6] [668899] +11:59:11 [ 35] [ 32] [6213544001940524=491212014052752] +11:59:11 [ 37] [ 12] [507901963534] +11:59:11 [ 41] [ 8] [03020019] +11:59:11 [ 42] [ 15] [APT ] +11:59:11 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:59:11 [ 49] [ 3] [418] +11:59:11 [ 52] [ 16] [9C739DD27C9E21CD] +11:59:11 ============================================================================ +11:59:11 + + +waiting on router queue for slot.... +11:59:11 Sending to : +11:59:11 ============================================================================ +11:59:11 ============================================================================ +11:59:11 Slot Id : <55> +11:59:11 Transaction Type : REQUEST +11:59:11 Received From : +11:59:11 ============================================================================ +11:59:11 FNo. Len. Field Value +11:59:11 ============================================================================ +11:59:11 [ 1] [ 4] [0200] +11:59:11 [ 2] [ 16] [6213544001940524] +11:59:11 [ 3] [ 6] [010000] +11:59:11 [ 4] [ 12] [000010000000] +11:59:11 [ 7] [ 10] [0320115701] +11:59:11 [ 11] [ 6] [942898] +11:59:11 [ 12] [ 6] [115701] +11:59:11 [ 13] [ 4] [0320] +11:59:11 [ 15] [ 4] [0320] +11:59:11 [ 18] [ 4] [6011] +11:59:11 [ 19] [ 3] [418] +11:59:11 [ 22] [ 3] [021] +11:59:11 [ 25] [ 2] [01] +11:59:11 [ 28] [ 9] [D00002000] +11:59:11 [ 32] [ 6] [668899] +11:59:11 [ 35] [ 32] [6213544001940524=491212014052752] +11:59:11 [ 37] [ 12] [507901963534] +11:59:11 [ 41] [ 8] [03020019] +11:59:11 [ 42] [ 15] [APT ] +11:59:11 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +11:59:11 [ 49] [ 3] [418] +11:59:11 [ 52] [ 16] [3E7909409C480B97] +11:59:11 ============================================================================ +11:59:11 + + +waiting on router queue for slot.... +11:59:11 Sending to : <0> +11:59:11 ============================================================================ +11:59:11 ============================================================================ +11:59:11 Slot Id : <55> +11:59:11 Transaction Type : RESPONSE +11:59:11 Received From : +11:59:11 ============================================================================ +11:59:11 FNo. Len. Field Value +11:59:11 ============================================================================ +11:59:11 [ 1] [ 4] [0210] +11:59:11 [ 2] [ 16] [6213544001940524] +11:59:11 [ 3] [ 6] [010000] +11:59:11 [ 4] [ 12] [000010000000] +11:59:11 [ 7] [ 10] [0320115701] +11:59:11 [ 11] [ 6] [942898] +11:59:11 [ 12] [ 6] [115701] +11:59:11 [ 13] [ 4] [0320] +11:59:11 [ 15] [ 4] [0320] +11:59:11 [ 18] [ 4] [6011] +11:59:11 [ 19] [ 3] [418] +11:59:11 [ 32] [ 6] [668899] +11:59:11 [ 35] [ 32] [6213544001940524=491212014052752] +11:59:11 [ 37] [ 12] [507901963534] +11:59:11 [ 38] [ 6] [998046] +11:59:11 [ 39] [ 2] [00] +11:59:11 [ 41] [ 8] [03020019] +11:59:11 [ 49] [ 3] [418] +11:59:11 [ 54] [ 40] [0001418C0000371074870002418C000037107487] +11:59:11 ============================================================================ +11:59:11 Sending to : +11:59:11 ============================================================================ +11:59:11 + + +waiting on router queue for slot.... +11:59:13 ============================================================================ +11:59:13 Slot Id : <55> +11:59:13 Transaction Type : RESPONSE +11:59:13 Received From : +11:59:13 ============================================================================ +11:59:13 FNo. Len. Field Value +11:59:13 ============================================================================ +11:59:13 [ 1] [ 4] [0210] +11:59:13 [ 2] [ 16] [6213544001940524] +11:59:13 [ 3] [ 6] [010000] +11:59:13 [ 4] [ 12] [000010000000] +11:59:13 [ 7] [ 10] [0320115701] +11:59:13 [ 11] [ 6] [942898] +11:59:13 [ 12] [ 6] [115701] +11:59:13 [ 13] [ 4] [0320] +11:59:13 [ 15] [ 4] [0320] +11:59:13 [ 18] [ 4] [6011] +11:59:13 [ 19] [ 3] [418] +11:59:13 [ 32] [ 6] [668899] +11:59:13 [ 35] [ 32] [6213544001940524=491212014052752] +11:59:13 [ 37] [ 12] [507901963534] +11:59:13 [ 38] [ 6] [998046] +11:59:13 [ 39] [ 2] [00] +11:59:13 [ 41] [ 8] [03020019] +11:59:13 [ 49] [ 3] [418] +11:59:13 [ 54] [ 40] [0001418C0000371074870002418C000037107487] +11:59:13 ============================================================================ +11:59:13 Calculate Source COMM Id = 4 +11:59:13 ============================================================================ +11:59:13 + + +waiting on router queue for slot.... +11:59:14 ============================================================================ +11:59:14 Slot Id : <478> +11:59:14 Transaction Type : REQUEST +11:59:14 Received From : +11:59:14 ============================================================================ +11:59:14 FNo. Len. Field Value +11:59:14 ============================================================================ +11:59:14 [ 1] [ 4] [0200] +11:59:14 [ 2] [ 16] [6213545000437743] +11:59:14 [ 3] [ 6] [010000] +11:59:14 [ 4] [ 12] [000050000000] +11:59:14 [ 7] [ 10] [0320045819] +11:59:14 [ 11] [ 6] [268830] +11:59:14 [ 12] [ 6] [115819] +11:59:14 [ 13] [ 4] [0320] +11:59:14 [ 14] [ 4] [4912] +11:59:14 [ 15] [ 4] [0320] +11:59:14 [ 18] [ 4] [6011] +11:59:14 [ 19] [ 3] [418] +11:59:14 [ 22] [ 3] [021] +11:59:14 [ 25] [ 2] [01] +11:59:14 [ 28] [ 9] [D00002000] +11:59:14 [ 32] [ 6] [180893] +11:59:14 [ 35] [ 32] [6213545000437743=491212013774327] +11:59:14 [ 37] [ 12] [507904268830] +11:59:14 [ 41] [ 8] [0441VT52] +11:59:14 [ 42] [ 15] [999999 ] +11:59:14 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:59:14 [ 49] [ 3] [418] +11:59:14 [ 52] [ 16] [BE360230F331D4CB] +11:59:14 ============================================================================ +11:59:14 + + +waiting on router queue for slot.... +11:59:14 Sending to : +11:59:14 ============================================================================ +11:59:14 Sending to : +11:59:14 ============================================================================ +11:59:14 ============================================================================ +11:59:14 Slot Id : <478> +11:59:14 Transaction Type : REQUEST +11:59:14 Received From : +11:59:14 ============================================================================ +11:59:14 FNo. Len. Field Value +11:59:14 ============================================================================ +11:59:14 [ 1] [ 4] [0200] +11:59:14 [ 2] [ 16] [6213545000437743] +11:59:14 [ 3] [ 6] [010000] +11:59:14 [ 4] [ 12] [000050000000] +11:59:14 [ 7] [ 10] [0320045819] +11:59:14 [ 11] [ 6] [268830] +11:59:14 [ 12] [ 6] [115819] +11:59:14 [ 13] [ 4] [0320] +11:59:14 [ 14] [ 4] [4912] +11:59:14 [ 15] [ 4] [0320] +11:59:14 [ 18] [ 4] [6011] +11:59:14 [ 19] [ 3] [418] +11:59:14 [ 22] [ 3] [021] +11:59:14 [ 25] [ 2] [01] +11:59:14 [ 28] [ 9] [D00002000] +11:59:14 [ 32] [ 6] [180893] +11:59:14 [ 35] [ 32] [6213545000437743=491212013774327] +11:59:14 [ 37] [ 12] [507904268830] +11:59:14 [ 41] [ 8] [0441VT52] +11:59:14 [ 42] [ 15] [999999 ] +11:59:14 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:59:14 [ 49] [ 3] [418] +11:59:14 [ 52] [ 16] [BE360230F331D4CB] +11:59:14 ============================================================================ +11:59:14 + + +waiting on router queue for slot.... +11:59:14 Sending to : +11:59:14 ============================================================================ +11:59:14 ============================================================================ +11:59:14 Slot Id : <478> +11:59:14 Transaction Type : REQUEST +11:59:14 Received From : +11:59:14 ============================================================================ +11:59:14 FNo. Len. Field Value +11:59:14 ============================================================================ +11:59:14 [ 1] [ 4] [0200] +11:59:14 [ 2] [ 16] [6213545000437743] +11:59:14 [ 3] [ 6] [010000] +11:59:14 [ 4] [ 12] [000050000000] +11:59:14 [ 7] [ 10] [0320045819] +11:59:14 [ 11] [ 6] [268830] +11:59:14 [ 12] [ 6] [115819] +11:59:14 [ 13] [ 4] [0320] +11:59:14 [ 14] [ 4] [4912] +11:59:14 [ 15] [ 4] [0320] +11:59:14 [ 18] [ 4] [6011] +11:59:14 [ 19] [ 3] [418] +11:59:14 [ 22] [ 3] [021] +11:59:14 [ 25] [ 2] [01] +11:59:14 [ 28] [ 9] [D00002000] +11:59:14 [ 32] [ 6] [180893] +11:59:14 [ 35] [ 32] [6213545000437743=491212013774327] +11:59:14 [ 37] [ 12] [507904268830] +11:59:14 [ 41] [ 8] [0441VT52] +11:59:14 [ 42] [ 15] [999999 ] +11:59:14 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:59:14 [ 49] [ 3] [418] +11:59:14 [ 52] [ 16] [BFA0134D374D633C] +11:59:14 ============================================================================ +11:59:14 + + +waiting on router queue for slot.... +11:59:14 Sending to : <0> +11:59:14 ============================================================================ +11:59:14 ============================================================================ +11:59:14 Slot Id : <478> +11:59:14 Transaction Type : RESPONSE +11:59:14 Received From : +11:59:14 ============================================================================ +11:59:14 FNo. Len. Field Value +11:59:14 ============================================================================ +11:59:14 [ 1] [ 4] [0210] +11:59:14 [ 2] [ 16] [6213545000437743] +11:59:14 [ 3] [ 6] [010000] +11:59:14 [ 4] [ 12] [000050000000] +11:59:14 [ 7] [ 10] [0320045819] +11:59:14 [ 11] [ 6] [268830] +11:59:14 [ 12] [ 6] [115819] +11:59:14 [ 13] [ 4] [0320] +11:59:14 [ 15] [ 4] [0320] +11:59:14 [ 18] [ 4] [6011] +11:59:14 [ 19] [ 3] [418] +11:59:14 [ 32] [ 6] [180893] +11:59:14 [ 35] [ 32] [6213545000437743=491212013774327] +11:59:14 [ 37] [ 12] [507904268830] +11:59:14 [ 38] [ 6] [101793] +11:59:14 [ 39] [ 2] [00] +11:59:14 [ 41] [ 8] [0441VT52] +11:59:14 [ 49] [ 3] [418] +11:59:14 [ 54] [ 40] [0001418C0000248246040002418C000024824604] +11:59:14 ============================================================================ +11:59:14 Sending to : +11:59:14 ============================================================================ +11:59:14 + + +waiting on router queue for slot.... +11:59:16 ============================================================================ +11:59:16 Slot Id : <478> +11:59:16 Transaction Type : RESPONSE +11:59:16 Received From : +11:59:16 ============================================================================ +11:59:16 FNo. Len. Field Value +11:59:16 ============================================================================ +11:59:16 [ 1] [ 4] [0210] +11:59:16 [ 2] [ 16] [6213545000437743] +11:59:16 [ 3] [ 6] [010000] +11:59:16 [ 4] [ 12] [000050000000] +11:59:16 [ 7] [ 10] [0320045819] +11:59:16 [ 11] [ 6] [268830] +11:59:16 [ 12] [ 6] [115819] +11:59:16 [ 13] [ 4] [0320] +11:59:16 [ 15] [ 4] [0320] +11:59:16 [ 18] [ 4] [6011] +11:59:16 [ 19] [ 3] [418] +11:59:16 [ 32] [ 6] [180893] +11:59:16 [ 35] [ 32] [6213545000437743=491212013774327] +11:59:16 [ 37] [ 12] [507904268830] +11:59:16 [ 38] [ 6] [101793] +11:59:16 [ 39] [ 2] [00] +11:59:16 [ 41] [ 8] [0441VT52] +11:59:16 [ 49] [ 3] [418] +11:59:16 [ 54] [ 40] [0001418C0000248246040002418C000024824604] +11:59:16 ============================================================================ +11:59:16 Calculate Source COMM Id = 2 +11:59:16 ============================================================================ +11:59:16 + + +waiting on router queue for slot.... +11:59:24 ============================================================================ +11:59:24 Slot Id : <60> +11:59:24 Transaction Type : REQUEST +11:59:24 Received From : +11:59:24 ============================================================================ +11:59:24 FNo. Len. Field Value +11:59:24 ============================================================================ +11:59:24 [ 1] [ 4] [0200] +11:59:24 [ 2] [ 16] [6213545000746184] +11:59:24 [ 3] [ 6] [011000] +11:59:24 [ 4] [ 12] [000010000000] +11:59:24 [ 7] [ 10] [0320045830] +11:59:24 [ 11] [ 6] [268832] +11:59:24 [ 12] [ 6] [115830] +11:59:24 [ 13] [ 4] [0320] +11:59:24 [ 14] [ 4] [4912] +11:59:24 [ 15] [ 4] [0320] +11:59:24 [ 18] [ 4] [6011] +11:59:24 [ 19] [ 3] [418] +11:59:24 [ 22] [ 3] [021] +11:59:24 [ 25] [ 2] [01] +11:59:24 [ 28] [ 9] [D00002000] +11:59:24 [ 32] [ 6] [180893] +11:59:24 [ 35] [ 32] [6213545000746184=491212014618038] +11:59:24 [ 37] [ 12] [507904268832] +11:59:24 [ 41] [ 8] [0401XSBR] +11:59:24 [ 42] [ 15] [999999 ] +11:59:24 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +11:59:24 [ 49] [ 3] [418] +11:59:24 [ 52] [ 16] [D9B692A7644AC5EC] +11:59:24 ============================================================================ +11:59:24 + + +waiting on router queue for slot.... +11:59:24 Sending to : +11:59:24 ============================================================================ +11:59:24 Sending to : +11:59:24 ============================================================================ +11:59:25 ============================================================================ +11:59:25 Slot Id : <60> +11:59:25 Transaction Type : REQUEST +11:59:25 Received From : +11:59:25 ============================================================================ +11:59:25 FNo. Len. Field Value +11:59:25 ============================================================================ +11:59:25 [ 1] [ 4] [0200] +11:59:25 [ 2] [ 16] [6213545000746184] +11:59:25 [ 3] [ 6] [011000] +11:59:25 [ 4] [ 12] [000010000000] +11:59:25 [ 7] [ 10] [0320045830] +11:59:25 [ 11] [ 6] [268832] +11:59:25 [ 12] [ 6] [115830] +11:59:25 [ 13] [ 4] [0320] +11:59:25 [ 14] [ 4] [4912] +11:59:25 [ 15] [ 4] [0320] +11:59:25 [ 18] [ 4] [6011] +11:59:25 [ 19] [ 3] [418] +11:59:25 [ 22] [ 3] [021] +11:59:25 [ 25] [ 2] [01] +11:59:25 [ 28] [ 9] [D00002000] +11:59:25 [ 32] [ 6] [180893] +11:59:25 [ 35] [ 32] [6213545000746184=491212014618038] +11:59:25 [ 37] [ 12] [507904268832] +11:59:25 [ 41] [ 8] [0401XSBR] +11:59:25 [ 42] [ 15] [999999 ] +11:59:25 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +11:59:25 [ 49] [ 3] [418] +11:59:25 [ 52] [ 16] [D9B692A7644AC5EC] +11:59:25 ============================================================================ +11:59:25 + + +waiting on router queue for slot.... +11:59:25 Sending to : +11:59:25 ============================================================================ +11:59:25 ============================================================================ +11:59:25 Slot Id : <60> +11:59:25 Transaction Type : REQUEST +11:59:25 Received From : +11:59:25 ============================================================================ +11:59:25 FNo. Len. Field Value +11:59:25 ============================================================================ +11:59:25 [ 1] [ 4] [0200] +11:59:25 [ 2] [ 16] [6213545000746184] +11:59:25 [ 3] [ 6] [011000] +11:59:25 [ 4] [ 12] [000010000000] +11:59:25 [ 7] [ 10] [0320045830] +11:59:25 [ 11] [ 6] [268832] +11:59:25 [ 12] [ 6] [115830] +11:59:25 [ 13] [ 4] [0320] +11:59:25 [ 14] [ 4] [4912] +11:59:25 [ 15] [ 4] [0320] +11:59:25 [ 18] [ 4] [6011] +11:59:25 [ 19] [ 3] [418] +11:59:25 [ 22] [ 3] [021] +11:59:25 [ 25] [ 2] [01] +11:59:25 [ 28] [ 9] [D00002000] +11:59:25 [ 32] [ 6] [180893] +11:59:25 [ 35] [ 32] [6213545000746184=491212014618038] +11:59:25 [ 37] [ 12] [507904268832] +11:59:25 [ 41] [ 8] [0401XSBR] +11:59:25 [ 42] [ 15] [999999 ] +11:59:25 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +11:59:25 [ 49] [ 3] [418] +11:59:25 [ 52] [ 16] [4DCCFE97CFDFAE5B] +11:59:25 ============================================================================ +11:59:25 + + +waiting on router queue for slot.... +11:59:25 Sending to : <0> +11:59:25 ============================================================================ +11:59:25 ============================================================================ +11:59:25 Slot Id : <60> +11:59:25 Transaction Type : RESPONSE +11:59:25 Received From : +11:59:25 ============================================================================ +11:59:25 FNo. Len. Field Value +11:59:25 ============================================================================ +11:59:25 [ 1] [ 4] [0210] +11:59:25 [ 2] [ 16] [6213545000746184] +11:59:25 [ 3] [ 6] [011000] +11:59:25 [ 4] [ 12] [000010000000] +11:59:25 [ 7] [ 10] [0320045830] +11:59:25 [ 11] [ 6] [268832] +11:59:25 [ 12] [ 6] [115830] +11:59:25 [ 13] [ 4] [0320] +11:59:25 [ 15] [ 4] [0320] +11:59:25 [ 18] [ 4] [6011] +11:59:25 [ 19] [ 3] [418] +11:59:25 [ 32] [ 6] [180893] +11:59:25 [ 35] [ 32] [6213545000746184=491212014618038] +11:59:25 [ 37] [ 12] [507904268832] +11:59:25 [ 38] [ 6] [031837] +11:59:25 [ 39] [ 2] [00] +11:59:25 [ 41] [ 8] [0401XSBR] +11:59:25 [ 49] [ 3] [418] +11:59:25 [ 54] [ 40] [1001418C0002346495271002418C000234649527] +11:59:25 ============================================================================ +11:59:25 Sending to : +11:59:25 ============================================================================ +11:59:25 + + +waiting on router queue for slot.... +11:59:27 ============================================================================ +11:59:27 Slot Id : <60> +11:59:27 Transaction Type : RESPONSE +11:59:27 Received From : +11:59:27 ============================================================================ +11:59:27 FNo. Len. Field Value +11:59:27 ============================================================================ +11:59:27 [ 1] [ 4] [0210] +11:59:27 [ 2] [ 16] [6213545000746184] +11:59:27 [ 3] [ 6] [011000] +11:59:27 [ 4] [ 12] [000010000000] +11:59:27 [ 7] [ 10] [0320045830] +11:59:27 [ 11] [ 6] [268832] +11:59:27 [ 12] [ 6] [115830] +11:59:27 [ 13] [ 4] [0320] +11:59:27 [ 15] [ 4] [0320] +11:59:27 [ 18] [ 4] [6011] +11:59:27 [ 19] [ 3] [418] +11:59:27 [ 32] [ 6] [180893] +11:59:27 [ 35] [ 32] [6213545000746184=491212014618038] +11:59:27 [ 37] [ 12] [507904268832] +11:59:27 [ 38] [ 6] [031837] +11:59:27 [ 39] [ 2] [00] +11:59:27 [ 41] [ 8] [0401XSBR] +11:59:27 [ 49] [ 3] [418] +11:59:27 [ 54] [ 40] [1001418C0002346495271002418C000234649527] +11:59:27 ============================================================================ +11:59:27 Calculate Source COMM Id = 2 +11:59:27 ============================================================================ +11:59:27 + + +waiting on router queue for slot.... +11:59:40 ============================================================================ +11:59:40 Slot Id : <68> +11:59:40 Transaction Type : REQUEST +11:59:40 Received From : +11:59:40 ============================================================================ +11:59:40 FNo. Len. Field Value +11:59:40 ============================================================================ +11:59:40 [ 1] [ 4] [0200] +11:59:40 [ 2] [ 16] [6213545000859839] +11:59:40 [ 3] [ 6] [010000] +11:59:40 [ 4] [ 12] [000200000000] +11:59:40 [ 7] [ 10] [0320045845] +11:59:40 [ 11] [ 6] [268835] +11:59:40 [ 12] [ 6] [115845] +11:59:40 [ 13] [ 4] [0320] +11:59:40 [ 14] [ 4] [4912] +11:59:40 [ 15] [ 4] [0320] +11:59:40 [ 18] [ 4] [6011] +11:59:40 [ 19] [ 3] [418] +11:59:40 [ 22] [ 3] [021] +11:59:40 [ 25] [ 2] [01] +11:59:40 [ 28] [ 9] [D00002000] +11:59:40 [ 32] [ 6] [180893] +11:59:40 [ 35] [ 32] [6213545000859839=491212015983678] +11:59:40 [ 37] [ 12] [507904268835] +11:59:40 [ 41] [ 8] [0465UDNM] +11:59:40 [ 42] [ 15] [999999 ] +11:59:40 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +11:59:40 [ 49] [ 3] [418] +11:59:40 [ 52] [ 16] [F3CEFF7767FB9B11] +11:59:40 ============================================================================ +11:59:40 + + +waiting on router queue for slot.... +11:59:40 Sending to : +11:59:40 ============================================================================ +11:59:40 Sending to : +11:59:40 ============================================================================ +11:59:40 ============================================================================ +11:59:40 Slot Id : <68> +11:59:40 Transaction Type : REQUEST +11:59:40 Received From : +11:59:40 ============================================================================ +11:59:40 FNo. Len. Field Value +11:59:40 ============================================================================ +11:59:40 [ 1] [ 4] [0200] +11:59:40 [ 2] [ 16] [6213545000859839] +11:59:40 [ 3] [ 6] [010000] +11:59:40 [ 4] [ 12] [000200000000] +11:59:40 [ 7] [ 10] [0320045845] +11:59:40 [ 11] [ 6] [268835] +11:59:40 [ 12] [ 6] [115845] +11:59:40 [ 13] [ 4] [0320] +11:59:40 [ 14] [ 4] [4912] +11:59:40 [ 15] [ 4] [0320] +11:59:40 [ 18] [ 4] [6011] +11:59:40 [ 19] [ 3] [418] +11:59:40 [ 22] [ 3] [021] +11:59:40 [ 25] [ 2] [01] +11:59:40 [ 28] [ 9] [D00002000] +11:59:40 [ 32] [ 6] [180893] +11:59:40 [ 35] [ 32] [6213545000859839=491212015983678] +11:59:40 [ 37] [ 12] [507904268835] +11:59:40 [ 41] [ 8] [0465UDNM] +11:59:40 [ 42] [ 15] [999999 ] +11:59:40 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +11:59:40 [ 49] [ 3] [418] +11:59:40 [ 52] [ 16] [F3CEFF7767FB9B11] +11:59:40 ============================================================================ +11:59:40 + + +waiting on router queue for slot.... +11:59:40 Sending to : +11:59:40 ============================================================================ +11:59:40 ============================================================================ +11:59:40 Slot Id : <68> +11:59:40 Transaction Type : REQUEST +11:59:40 Received From : +11:59:40 ============================================================================ +11:59:40 FNo. Len. Field Value +11:59:40 ============================================================================ +11:59:40 [ 1] [ 4] [0200] +11:59:40 [ 2] [ 16] [6213545000859839] +11:59:40 [ 3] [ 6] [010000] +11:59:40 [ 4] [ 12] [000200000000] +11:59:40 [ 7] [ 10] [0320045845] +11:59:40 [ 11] [ 6] [268835] +11:59:40 [ 12] [ 6] [115845] +11:59:40 [ 13] [ 4] [0320] +11:59:40 [ 14] [ 4] [4912] +11:59:40 [ 15] [ 4] [0320] +11:59:40 [ 18] [ 4] [6011] +11:59:40 [ 19] [ 3] [418] +11:59:40 [ 22] [ 3] [021] +11:59:40 [ 25] [ 2] [01] +11:59:40 [ 28] [ 9] [D00002000] +11:59:40 [ 32] [ 6] [180893] +11:59:40 [ 35] [ 32] [6213545000859839=491212015983678] +11:59:40 [ 37] [ 12] [507904268835] +11:59:40 [ 41] [ 8] [0465UDNM] +11:59:40 [ 42] [ 15] [999999 ] +11:59:40 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +11:59:40 [ 49] [ 3] [418] +11:59:40 [ 52] [ 16] [D02FA1C03A5C18B6] +11:59:40 ============================================================================ +11:59:40 + + +waiting on router queue for slot.... +11:59:40 Sending to : <0> +11:59:40 ============================================================================ +11:59:40 ============================================================================ +11:59:40 Slot Id : <68> +11:59:40 Transaction Type : RESPONSE +11:59:40 Received From : +11:59:40 ============================================================================ +11:59:40 FNo. Len. Field Value +11:59:40 ============================================================================ +11:59:40 [ 1] [ 4] [0210] +11:59:40 [ 2] [ 16] [6213545000859839] +11:59:40 [ 3] [ 6] [010000] +11:59:40 [ 4] [ 12] [000200000000] +11:59:40 [ 7] [ 10] [0320045845] +11:59:40 [ 11] [ 6] [268835] +11:59:40 [ 12] [ 6] [115845] +11:59:40 [ 13] [ 4] [0320] +11:59:40 [ 15] [ 4] [0320] +11:59:40 [ 18] [ 4] [6011] +11:59:40 [ 19] [ 3] [418] +11:59:40 [ 22] [ 3] [021] +11:59:40 [ 32] [ 6] [180893] +11:59:40 [ 35] [ 32] [6213545000859839=491212015983678] +11:59:40 [ 37] [ 12] [507904268835] +11:59:40 [ 39] [ 2] [61] +11:59:40 [ 41] [ 8] [0465UDNM] +11:59:40 [ 49] [ 3] [418] +11:59:40 ============================================================================ +11:59:40 Sending to : +11:59:40 ============================================================================ +11:59:40 + + +waiting on router queue for slot.... +11:59:41 ============================================================================ +11:59:41 Slot Id : <68> +11:59:41 Transaction Type : RESPONSE +11:59:41 Received From : +11:59:41 ============================================================================ +11:59:41 FNo. Len. Field Value +11:59:41 ============================================================================ +11:59:41 [ 1] [ 4] [0210] +11:59:41 [ 2] [ 16] [6213545000859839] +11:59:41 [ 3] [ 6] [010000] +11:59:41 [ 4] [ 12] [000200000000] +11:59:41 [ 7] [ 10] [0320045845] +11:59:41 [ 11] [ 6] [268835] +11:59:41 [ 12] [ 6] [115845] +11:59:41 [ 13] [ 4] [0320] +11:59:41 [ 15] [ 4] [0320] +11:59:41 [ 18] [ 4] [6011] +11:59:41 [ 19] [ 3] [418] +11:59:41 [ 22] [ 3] [021] +11:59:41 [ 32] [ 6] [180893] +11:59:41 [ 35] [ 32] [6213545000859839=491212015983678] +11:59:41 [ 37] [ 12] [507904268835] +11:59:41 [ 39] [ 2] [61] +11:59:41 [ 41] [ 8] [0465UDNM] +11:59:41 [ 49] [ 3] [418] +11:59:41 ============================================================================ +11:59:41 Calculate Source COMM Id = 2 +11:59:41 ============================================================================ +11:59:41 + + +waiting on router queue for slot.... +11:59:50 ============================================================================ +11:59:50 Slot Id : <63> +11:59:50 Transaction Type : REQUEST +11:59:50 Received From : +11:59:50 ============================================================================ +11:59:50 FNo. Len. Field Value +11:59:50 ============================================================================ +11:59:50 [ 1] [ 4] [0800] +11:59:50 [ 2] [ 5] [02531] +11:59:50 [ 3] [ 6] [579118] +11:59:50 [ 7] [ 10] [0320045950] +11:59:50 [ 11] [ 6] [807108] +11:59:50 [ 15] [ 10] [0320045950] +11:59:50 [ 37] [ 11] [57911807108] +11:59:50 [ 70] [ 3] [001] +11:59:50 ============================================================================ +11:59:50 + + +waiting on router queue for slot.... +11:59:50 ============================================================================ +11:59:50 Slot Id : <63> +11:59:50 Transaction Type : RESPONSE +11:59:50 Received From : +11:59:50 ============================================================================ +11:59:50 FNo. Len. Field Value +11:59:50 ============================================================================ +11:59:50 [ 1] [ 4] [0810] +11:59:50 [ 7] [ 10] [0320045950] +11:59:50 [ 11] [ 6] [807108] +11:59:50 [ 15] [ 4] [0320] +11:59:50 [ 37] [ 12] [57911807108] +11:59:50 [ 39] [ 2] [00] +11:59:50 [ 70] [ 3] [001] +11:59:50 ============================================================================ +11:59:50 Sending to : +11:59:50 ============================================================================ +11:59:50 + + +waiting on router queue for slot.... +11:59:50 ============================================================================ +11:59:50 Slot Id : <41> +11:59:50 Transaction Type : REQUEST +11:59:50 Received From : +11:59:50 ============================================================================ +11:59:50 FNo. Len. Field Value +11:59:50 ============================================================================ +11:59:50 [ 1] [ 4] [0200] +11:59:50 [ 2] [ 16] [6688990103635809] +11:59:50 [ 3] [ 6] [010000] +11:59:50 [ 4] [ 12] [000030000000] +11:59:50 [ 7] [ 10] [0320115946] +11:59:50 [ 11] [ 6] [738237] +11:59:50 [ 12] [ 6] [115946] +11:59:50 [ 13] [ 4] [0320] +11:59:50 [ 15] [ 4] [0320] +11:59:50 [ 18] [ 4] [6011] +11:59:50 [ 22] [ 3] [900] +11:59:50 [ 25] [ 2] [02] +11:59:50 [ 28] [ 9] [D00002000] +11:59:50 [ 32] [ 6] [621354] +11:59:50 [ 35] [ 37] [6688990103635809=43011231580909300000] +11:59:50 [ 37] [ 12] [507903499470] +11:59:50 [ 41] [ 8] [06002200] +11:59:50 [ 42] [ 15] [NATIVE ] +11:59:50 [ 43] [ 40] [Beng Market Beng LAO] +11:59:50 [ 49] [ 3] [418] +11:59:50 [ 52] [ 16] [15C5CDC4D1CED724] +11:59:50 ============================================================================ +11:59:50 + + +waiting on router queue for slot.... +11:59:50 Sending to : +11:59:50 ============================================================================ +11:59:50 Sending to : +11:59:50 ============================================================================ +11:59:51 ============================================================================ +11:59:51 Slot Id : <41> +11:59:51 Transaction Type : REQUEST +11:59:51 Received From : +11:59:51 ============================================================================ +11:59:51 FNo. Len. Field Value +11:59:51 ============================================================================ +11:59:51 [ 1] [ 4] [0200] +11:59:51 [ 2] [ 16] [6688990103635809] +11:59:51 [ 3] [ 6] [010000] +11:59:51 [ 4] [ 12] [000030000000] +11:59:51 [ 7] [ 10] [0320115946] +11:59:51 [ 11] [ 6] [738237] +11:59:51 [ 12] [ 6] [115946] +11:59:51 [ 13] [ 4] [0320] +11:59:51 [ 15] [ 4] [0320] +11:59:51 [ 18] [ 4] [6011] +11:59:51 [ 22] [ 3] [900] +11:59:51 [ 25] [ 2] [02] +11:59:51 [ 28] [ 9] [D00002000] +11:59:51 [ 32] [ 6] [621354] +11:59:51 [ 35] [ 37] [6688990103635809=43011231580909300000] +11:59:51 [ 37] [ 12] [507903499470] +11:59:51 [ 41] [ 8] [06002200] +11:59:51 [ 42] [ 15] [NATIVE ] +11:59:51 [ 43] [ 40] [Beng Market Beng LAO] +11:59:51 [ 49] [ 3] [418] +11:59:51 [ 52] [ 16] [15C5CDC4D1CED724] +11:59:51 ============================================================================ +11:59:51 + + +waiting on router queue for slot.... +11:59:51 Sending to : +11:59:51 ============================================================================ +11:59:51 ============================================================================ +11:59:51 Slot Id : <41> +11:59:51 Transaction Type : REQUEST +11:59:51 Received From : +11:59:51 ============================================================================ +11:59:51 FNo. Len. Field Value +11:59:51 ============================================================================ +11:59:51 [ 1] [ 4] [0200] +11:59:51 [ 2] [ 16] [6688990103635809] +11:59:51 [ 3] [ 6] [010000] +11:59:51 [ 4] [ 12] [000030000000] +11:59:51 [ 7] [ 10] [0320115946] +11:59:51 [ 11] [ 6] [738237] +11:59:51 [ 12] [ 6] [115946] +11:59:51 [ 13] [ 4] [0320] +11:59:51 [ 15] [ 4] [0320] +11:59:51 [ 18] [ 4] [6011] +11:59:51 [ 22] [ 3] [900] +11:59:51 [ 25] [ 2] [02] +11:59:51 [ 28] [ 9] [D00002000] +11:59:51 [ 32] [ 6] [621354] +11:59:51 [ 35] [ 37] [6688990103635809=43011231580909300000] +11:59:51 [ 37] [ 12] [507903499470] +11:59:51 [ 41] [ 8] [06002200] +11:59:51 [ 42] [ 15] [NATIVE ] +11:59:51 [ 43] [ 40] [Beng Market Beng LAO] +11:59:51 [ 49] [ 3] [418] +11:59:51 [ 52] [ 16] [040C04A6E5944418] +11:59:51 ============================================================================ +11:59:51 + + +waiting on router queue for slot.... +11:59:51 Sending to : <4> +11:59:51 ============================================================================ +11:59:52 ============================================================================ +11:59:52 Slot Id : <41> +11:59:52 Transaction Type : RESPONSE +11:59:52 Received From : +11:59:52 ============================================================================ +11:59:52 FNo. Len. Field Value +11:59:52 ============================================================================ +11:59:52 [ 1] [ 4] [0210] +11:59:52 [ 2] [ 16] [6688990103635809] +11:59:52 [ 3] [ 6] [010000] +11:59:52 [ 4] [ 12] [000030000000] +11:59:52 [ 11] [ 6] [738237] +11:59:52 [ 12] [ 6] [115946] +11:59:52 [ 15] [ 4] [0320] +11:59:52 [ 18] [ 4] [6011] +11:59:52 [ 32] [ 6] [621354] +11:59:52 [ 35] [ 37] [6688990103635809=43011231580909300000] +11:59:52 [ 37] [ 12] [507903499470] +11:59:52 [ 38] [ 6] [852106] +11:59:52 [ 39] [ 2] [00] +11:59:52 [ 41] [ 8] [06002200] +11:59:52 [ 49] [ 3] [418] +11:59:52 [ 54] [ 20] [0002418C000089536118] +11:59:52 ============================================================================ +11:59:52 Sending to : +11:59:52 ============================================================================ +11:59:52 + + +waiting on router queue for slot.... +11:59:53 ============================================================================ +11:59:53 Slot Id : <41> +11:59:53 Transaction Type : RESPONSE +11:59:53 Received From : +11:59:53 ============================================================================ +11:59:53 FNo. Len. Field Value +11:59:53 ============================================================================ +11:59:53 [ 1] [ 4] [0210] +11:59:53 [ 2] [ 16] [6688990103635809] +11:59:53 [ 3] [ 6] [010000] +11:59:53 [ 4] [ 12] [000030000000] +11:59:53 [ 11] [ 6] [738237] +11:59:53 [ 12] [ 6] [115946] +11:59:53 [ 15] [ 4] [0320] +11:59:53 [ 18] [ 4] [6011] +11:59:53 [ 32] [ 6] [621354] +11:59:53 [ 35] [ 37] [6688990103635809=43011231580909300000] +11:59:53 [ 37] [ 12] [507903499470] +11:59:53 [ 38] [ 6] [852106] +11:59:53 [ 39] [ 2] [00] +11:59:53 [ 41] [ 8] [06002200] +11:59:53 [ 49] [ 3] [418] +11:59:53 [ 54] [ 20] [0002418C000089536118] +11:59:53 ============================================================================ +11:59:53 Calculate Source COMM Id = 0 +11:59:53 ============================================================================ +11:59:53 + + +waiting on router queue for slot.... +11:59:54 ============================================================================ +11:59:54 Slot Id : <73> +11:59:54 Transaction Type : REQUEST +11:59:54 Received From : +11:59:54 ============================================================================ +11:59:54 FNo. Len. Field Value +11:59:54 ============================================================================ +11:59:54 [ 1] [ 4] [0800] +11:59:54 [ 7] [ 10] [0320045902] +11:59:54 [ 11] [ 6] [156198] +11:59:54 [ 70] [ 3] [301] +11:59:54 ============================================================================ +11:59:54 + + +waiting on router queue for slot.... +11:59:54 Sending to : +11:59:54 ============================================================================ +11:59:54 ============================================================================ +11:59:54 Slot Id : <73> +11:59:54 Transaction Type : RESPONSE +11:59:54 Received From : +11:59:54 ============================================================================ +11:59:54 FNo. Len. Field Value +11:59:54 ============================================================================ +11:59:54 [ 1] [ 4] [0810] +11:59:54 [ 7] [ 10] [0320045902] +11:59:54 [ 11] [ 6] [156198] +11:59:54 [ 39] [ 2] [00] +11:59:54 [ 70] [ 3] [301] +11:59:54 ============================================================================ +11:59:54 Calculate Source COMM Id = 2 +11:59:54 ============================================================================ +11:59:54 + + +waiting on router queue for slot.... +11:59:54 ============================================================================ +11:59:54 Slot Id : <38> +11:59:54 Transaction Type : REQUEST +11:59:54 Received From : +11:59:54 ============================================================================ +11:59:54 FNo. Len. Field Value +11:59:54 ============================================================================ +11:59:54 [ 1] [ 4] [0800] +11:59:54 [ 7] [ 10] [0320050742] +11:59:54 [ 11] [ 6] [074995] +11:59:54 [ 37] [ 12] [57912074995] +11:59:54 [ 70] [ 3] [301] +11:59:54 ============================================================================ +11:59:54 + + +waiting on router queue for slot.... +11:59:54 Sending to : +11:59:54 ============================================================================ +11:59:54 ============================================================================ +11:59:54 Slot Id : <38> +11:59:54 Transaction Type : RESPONSE +11:59:54 Received From : +11:59:54 ============================================================================ +11:59:54 FNo. Len. Field Value +11:59:54 ============================================================================ +11:59:54 [ 1] [ 4] [0810] +11:59:54 [ 7] [ 10] [0320050742] +11:59:54 [ 11] [ 6] [074995] +11:59:54 [ 37] [ 12] [579120749950] +11:59:54 [ 39] [ 2] [00] +11:59:54 [ 70] [ 3] [810] +11:59:54 ============================================================================ +11:59:54 Calculate Source COMM Id = 1 +11:59:54 ============================================================================ +11:59:54 + + +waiting on router queue for slot.... +11:59:59 ============================================================================ +11:59:59 Slot Id : <464> +11:59:59 Transaction Type : REQUEST +11:59:59 Received From : +11:59:59 ============================================================================ +11:59:59 FNo. Len. Field Value +11:59:59 ============================================================================ +11:59:59 [ 1] [ 4] [0200] +11:59:59 [ 2] [ 16] [6213545000437743] +11:59:59 [ 3] [ 6] [010000] +11:59:59 [ 4] [ 12] [000010000000] +11:59:59 [ 7] [ 10] [0320045907] +11:59:59 [ 11] [ 6] [268840] +11:59:59 [ 12] [ 6] [115907] +11:59:59 [ 13] [ 4] [0320] +11:59:59 [ 14] [ 4] [4912] +11:59:59 [ 15] [ 4] [0320] +11:59:59 [ 18] [ 4] [6011] +11:59:59 [ 19] [ 3] [418] +11:59:59 [ 22] [ 3] [021] +11:59:59 [ 25] [ 2] [01] +11:59:59 [ 28] [ 9] [D00002000] +11:59:59 [ 32] [ 6] [180893] +11:59:59 [ 35] [ 32] [6213545000437743=491212013774327] +11:59:59 [ 37] [ 12] [507904268840] +11:59:59 [ 41] [ 8] [0441VT52] +11:59:59 [ 42] [ 15] [999999 ] +11:59:59 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +11:59:59 [ 49] [ 3] [418] +11:59:59 [ 52] [ 16] [BE360230F331D4CB] +11:59:59 ============================================================================ +11:59:59 + + +waiting on router queue for slot.... +11:59:59 Sending to : +11:59:59 ============================================================================ +11:59:59 Sending to : +11:59:59 ============================================================================ +12:00:00 ============================================================================ +12:00:00 Slot Id : <464> +12:00:00 Transaction Type : REQUEST +12:00:00 Received From : +12:00:00 ============================================================================ +12:00:00 FNo. Len. Field Value +12:00:00 ============================================================================ +12:00:00 [ 1] [ 4] [0200] +12:00:00 [ 2] [ 16] [6213545000437743] +12:00:00 [ 3] [ 6] [010000] +12:00:00 [ 4] [ 12] [000010000000] +12:00:00 [ 7] [ 10] [0320045907] +12:00:00 [ 11] [ 6] [268840] +12:00:00 [ 12] [ 6] [115907] +12:00:00 [ 13] [ 4] [0320] +12:00:00 [ 14] [ 4] [4912] +12:00:00 [ 15] [ 4] [0320] +12:00:00 [ 18] [ 4] [6011] +12:00:00 [ 19] [ 3] [418] +12:00:00 [ 22] [ 3] [021] +12:00:00 [ 25] [ 2] [01] +12:00:00 [ 28] [ 9] [D00002000] +12:00:00 [ 32] [ 6] [180893] +12:00:00 [ 35] [ 32] [6213545000437743=491212013774327] +12:00:00 [ 37] [ 12] [507904268840] +12:00:00 [ 41] [ 8] [0441VT52] +12:00:00 [ 42] [ 15] [999999 ] +12:00:00 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +12:00:00 [ 49] [ 3] [418] +12:00:00 [ 52] [ 16] [BE360230F331D4CB] +12:00:00 ============================================================================ +12:00:00 + + +waiting on router queue for slot.... +12:00:00 Sending to : +12:00:00 ============================================================================ +12:00:00 ============================================================================ +12:00:00 Slot Id : <464> +12:00:00 Transaction Type : REQUEST +12:00:00 Received From : +12:00:00 ============================================================================ +12:00:00 FNo. Len. Field Value +12:00:00 ============================================================================ +12:00:00 [ 1] [ 4] [0200] +12:00:00 [ 2] [ 16] [6213545000437743] +12:00:00 [ 3] [ 6] [010000] +12:00:00 [ 4] [ 12] [000010000000] +12:00:00 [ 7] [ 10] [0320045907] +12:00:00 [ 11] [ 6] [268840] +12:00:00 [ 12] [ 6] [115907] +12:00:00 [ 13] [ 4] [0320] +12:00:00 [ 14] [ 4] [4912] +12:00:00 [ 15] [ 4] [0320] +12:00:00 [ 18] [ 4] [6011] +12:00:00 [ 19] [ 3] [418] +12:00:00 [ 22] [ 3] [021] +12:00:00 [ 25] [ 2] [01] +12:00:00 [ 28] [ 9] [D00002000] +12:00:00 [ 32] [ 6] [180893] +12:00:00 [ 35] [ 32] [6213545000437743=491212013774327] +12:00:00 [ 37] [ 12] [507904268840] +12:00:00 [ 41] [ 8] [0441VT52] +12:00:00 [ 42] [ 15] [999999 ] +12:00:00 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +12:00:00 [ 49] [ 3] [418] +12:00:00 [ 52] [ 16] [BFA0134D374D633C] +12:00:00 ============================================================================ +12:00:00 + + +waiting on router queue for slot.... +12:00:00 Sending to : <0> +12:00:00 ============================================================================ +12:00:00 ============================================================================ +12:00:00 Slot Id : <464> +12:00:00 Transaction Type : RESPONSE +12:00:00 Received From : +12:00:00 ============================================================================ +12:00:00 FNo. Len. Field Value +12:00:00 ============================================================================ +12:00:00 [ 1] [ 4] [0210] +12:00:00 [ 2] [ 16] [6213545000437743] +12:00:00 [ 3] [ 6] [010000] +12:00:00 [ 4] [ 12] [000010000000] +12:00:00 [ 7] [ 10] [0320045907] +12:00:00 [ 11] [ 6] [268840] +12:00:00 [ 12] [ 6] [115907] +12:00:00 [ 13] [ 4] [0320] +12:00:00 [ 15] [ 4] [0320] +12:00:00 [ 18] [ 4] [6011] +12:00:00 [ 19] [ 3] [418] +12:00:00 [ 32] [ 6] [180893] +12:00:00 [ 35] [ 32] [6213545000437743=491212013774327] +12:00:00 [ 37] [ 12] [507904268840] +12:00:00 [ 38] [ 6] [887616] +12:00:00 [ 39] [ 2] [00] +12:00:00 [ 41] [ 8] [0441VT52] +12:00:00 [ 49] [ 3] [418] +12:00:00 [ 54] [ 40] [0001418C0000146246040002418C000014624604] +12:00:00 ============================================================================ +12:00:00 Sending to : +12:00:00 ============================================================================ +12:00:00 + + +waiting on router queue for slot.... +12:00:01 ============================================================================ +12:00:01 Slot Id : <32> +12:00:01 Transaction Type : REQUEST +12:00:01 Received From : +12:00:01 ============================================================================ +12:00:01 FNo. Len. Field Value +12:00:01 ============================================================================ +12:00:01 [ 1] [ 4] [0200] +12:00:01 [ 2] [ 16] [6213541000134521] +12:00:01 [ 3] [ 6] [010000] +12:00:01 [ 4] [ 12] [000050000000] +12:00:01 [ 7] [ 10] [0320045908] +12:00:01 [ 11] [ 6] [268841] +12:00:01 [ 12] [ 6] [115908] +12:00:01 [ 13] [ 4] [0320] +12:00:01 [ 14] [ 4] [4912] +12:00:01 [ 15] [ 4] [0320] +12:00:01 [ 18] [ 4] [6011] +12:00:01 [ 19] [ 3] [418] +12:00:01 [ 22] [ 3] [021] +12:00:01 [ 25] [ 2] [01] +12:00:01 [ 28] [ 9] [D00002000] +12:00:01 [ 32] [ 6] [180893] +12:00:01 [ 35] [ 32] [6213541000134521=491212013452579] +12:00:01 [ 37] [ 12] [507904268841] +12:00:01 [ 41] [ 8] [0108THNG] +12:00:01 [ 42] [ 15] [999999 ] +12:00:01 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +12:00:01 [ 49] [ 3] [418] +12:00:01 [ 52] [ 16] [94AF23C7C24C0A17] +12:00:01 ============================================================================ +12:00:01 + + +waiting on router queue for slot.... +12:00:01 Sending to : +12:00:01 ============================================================================ +12:00:01 Sending to : +12:00:01 ============================================================================ +12:00:02 ============================================================================ +12:00:02 Slot Id : <32> +12:00:02 Transaction Type : REQUEST +12:00:02 Received From : +12:00:02 ============================================================================ +12:00:02 FNo. Len. Field Value +12:00:02 ============================================================================ +12:00:02 [ 1] [ 4] [0200] +12:00:02 [ 2] [ 16] [6213541000134521] +12:00:02 [ 3] [ 6] [010000] +12:00:02 [ 4] [ 12] [000050000000] +12:00:02 [ 7] [ 10] [0320045908] +12:00:02 [ 11] [ 6] [268841] +12:00:02 [ 12] [ 6] [115908] +12:00:02 [ 13] [ 4] [0320] +12:00:02 [ 14] [ 4] [4912] +12:00:02 [ 15] [ 4] [0320] +12:00:02 [ 18] [ 4] [6011] +12:00:02 [ 19] [ 3] [418] +12:00:02 [ 22] [ 3] [021] +12:00:02 [ 25] [ 2] [01] +12:00:02 [ 28] [ 9] [D00002000] +12:00:02 [ 32] [ 6] [180893] +12:00:02 [ 35] [ 32] [6213541000134521=491212013452579] +12:00:02 [ 37] [ 12] [507904268841] +12:00:02 [ 41] [ 8] [0108THNG] +12:00:02 [ 42] [ 15] [999999 ] +12:00:02 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +12:00:02 [ 49] [ 3] [418] +12:00:02 [ 52] [ 16] [94AF23C7C24C0A17] +12:00:02 ============================================================================ +12:00:02 + + +waiting on router queue for slot.... +12:00:02 Sending to : +12:00:02 ============================================================================ +12:00:02 ============================================================================ +12:00:02 Slot Id : <32> +12:00:02 Transaction Type : REQUEST +12:00:02 Received From : +12:00:02 ============================================================================ +12:00:02 FNo. Len. Field Value +12:00:02 ============================================================================ +12:00:02 [ 1] [ 4] [0200] +12:00:02 [ 2] [ 16] [6213541000134521] +12:00:02 [ 3] [ 6] [010000] +12:00:02 [ 4] [ 12] [000050000000] +12:00:02 [ 7] [ 10] [0320045908] +12:00:02 [ 11] [ 6] [268841] +12:00:02 [ 12] [ 6] [115908] +12:00:02 [ 13] [ 4] [0320] +12:00:02 [ 14] [ 4] [4912] +12:00:02 [ 15] [ 4] [0320] +12:00:02 [ 18] [ 4] [6011] +12:00:02 [ 19] [ 3] [418] +12:00:02 [ 22] [ 3] [021] +12:00:02 [ 25] [ 2] [01] +12:00:02 [ 28] [ 9] [D00002000] +12:00:02 [ 32] [ 6] [180893] +12:00:02 [ 35] [ 32] [6213541000134521=491212013452579] +12:00:02 [ 37] [ 12] [507904268841] +12:00:02 [ 41] [ 8] [0108THNG] +12:00:02 [ 42] [ 15] [999999 ] +12:00:02 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +12:00:02 [ 49] [ 3] [418] +12:00:02 [ 52] [ 16] [ED444957C505671C] +12:00:02 ============================================================================ +12:00:02 + + +waiting on router queue for slot.... +12:00:02 Sending to : <0> +12:00:02 ============================================================================ +12:00:02 ============================================================================ +12:00:02 Slot Id : <464> +12:00:02 Transaction Type : RESPONSE +12:00:02 Received From : +12:00:02 ============================================================================ +12:00:02 FNo. Len. Field Value +12:00:02 ============================================================================ +12:00:02 [ 1] [ 4] [0210] +12:00:02 [ 2] [ 16] [6213545000437743] +12:00:02 [ 3] [ 6] [010000] +12:00:02 [ 4] [ 12] [000010000000] +12:00:02 [ 7] [ 10] [0320045907] +12:00:02 [ 11] [ 6] [268840] +12:00:02 [ 12] [ 6] [115907] +12:00:02 [ 13] [ 4] [0320] +12:00:02 [ 15] [ 4] [0320] +12:00:02 [ 18] [ 4] [6011] +12:00:02 [ 19] [ 3] [418] +12:00:02 [ 32] [ 6] [180893] +12:00:02 [ 35] [ 32] [6213545000437743=491212013774327] +12:00:02 [ 37] [ 12] [507904268840] +12:00:02 [ 38] [ 6] [887616] +12:00:02 [ 39] [ 2] [00] +12:00:02 [ 41] [ 8] [0441VT52] +12:00:02 [ 49] [ 3] [418] +12:00:02 [ 54] [ 40] [0001418C0000146246040002418C000014624604] +12:00:02 ============================================================================ +12:00:02 Calculate Source COMM Id = 2 +12:00:02 ============================================================================ +12:00:02 + + +waiting on router queue for slot.... +12:00:02 ============================================================================ +12:00:02 Slot Id : <32> +12:00:02 Transaction Type : RESPONSE +12:00:02 Received From : +12:00:02 ============================================================================ +12:00:02 FNo. Len. Field Value +12:00:02 ============================================================================ +12:00:02 [ 1] [ 4] [0210] +12:00:02 [ 2] [ 16] [6213541000134521] +12:00:02 [ 3] [ 6] [010000] +12:00:02 [ 4] [ 12] [000050000000] +12:00:02 [ 7] [ 10] [0320045908] +12:00:02 [ 11] [ 6] [268841] +12:00:02 [ 12] [ 6] [115908] +12:00:02 [ 13] [ 4] [0320] +12:00:02 [ 15] [ 4] [0320] +12:00:02 [ 18] [ 4] [6011] +12:00:02 [ 19] [ 3] [418] +12:00:02 [ 32] [ 6] [180893] +12:00:02 [ 35] [ 32] [6213541000134521=491212013452579] +12:00:02 [ 37] [ 12] [507904268841] +12:00:02 [ 38] [ 6] [823180] +12:00:02 [ 39] [ 2] [00] +12:00:02 [ 41] [ 8] [0108THNG] +12:00:02 [ 49] [ 3] [418] +12:00:02 [ 54] [ 40] [0001418C0001030847350002418C000103084735] +12:00:02 ============================================================================ +12:00:02 Sending to : +12:00:02 ============================================================================ +12:00:02 + + +waiting on router queue for slot.... +12:00:04 ============================================================================ +12:00:04 Slot Id : <32> +12:00:04 Transaction Type : RESPONSE +12:00:04 Received From : +12:00:04 ============================================================================ +12:00:04 FNo. Len. Field Value +12:00:04 ============================================================================ +12:00:04 [ 1] [ 4] [0210] +12:00:04 [ 2] [ 16] [6213541000134521] +12:00:04 [ 3] [ 6] [010000] +12:00:04 [ 4] [ 12] [000050000000] +12:00:04 [ 7] [ 10] [0320045908] +12:00:04 [ 11] [ 6] [268841] +12:00:04 [ 12] [ 6] [115908] +12:00:04 [ 13] [ 4] [0320] +12:00:04 [ 15] [ 4] [0320] +12:00:04 [ 18] [ 4] [6011] +12:00:04 [ 19] [ 3] [418] +12:00:04 [ 32] [ 6] [180893] +12:00:04 [ 35] [ 32] [6213541000134521=491212013452579] +12:00:04 [ 37] [ 12] [507904268841] +12:00:04 [ 38] [ 6] [823180] +12:00:04 [ 39] [ 2] [00] +12:00:04 [ 41] [ 8] [0108THNG] +12:00:04 [ 49] [ 3] [418] +12:00:04 [ 54] [ 40] [0001418C0001030847350002418C000103084735] +12:00:04 ============================================================================ +12:00:04 Calculate Source COMM Id = 2 +12:00:04 ============================================================================ +12:00:04 + + +waiting on router queue for slot.... +12:00:16 ============================================================================ +12:00:16 Slot Id : <487> +12:00:16 Transaction Type : REQUEST +12:00:16 Received From : +12:00:16 ============================================================================ +12:00:16 FNo. Len. Field Value +12:00:16 ============================================================================ +12:00:16 [ 1] [ 4] [0800] +12:00:16 [ 7] [ 10] [0320045923] +12:00:16 [ 11] [ 6] [156199] +12:00:16 [ 70] [ 3] [301] +12:00:16 ============================================================================ +12:00:16 + + +waiting on router queue for slot.... +12:00:16 Sending to : +12:00:16 ============================================================================ +12:00:16 ============================================================================ +12:00:16 Slot Id : <487> +12:00:16 Transaction Type : RESPONSE +12:00:16 Received From : +12:00:16 ============================================================================ +12:00:16 FNo. Len. Field Value +12:00:16 ============================================================================ +12:00:16 [ 1] [ 4] [0810] +12:00:16 [ 7] [ 10] [0320045923] +12:00:16 [ 11] [ 6] [156199] +12:00:16 [ 39] [ 2] [00] +12:00:16 [ 70] [ 3] [301] +12:00:16 ============================================================================ +12:00:16 Calculate Source COMM Id = 2 +12:00:16 ============================================================================ +12:00:16 + + +waiting on router queue for slot.... +12:00:23 ============================================================================ +12:00:23 Slot Id : <27> +12:00:23 Transaction Type : REQUEST +12:00:23 Received From : +12:00:23 ============================================================================ +12:00:23 FNo. Len. Field Value +12:00:23 ============================================================================ +12:00:23 [ 1] [ 4] [0200] +12:00:23 [ 2] [ 16] [6213548000213544] +12:00:23 [ 3] [ 6] [010000] +12:00:23 [ 4] [ 12] [000010000000] +12:00:23 [ 7] [ 10] [0320115814] +12:00:23 [ 11] [ 6] [942952] +12:00:23 [ 12] [ 6] [115814] +12:00:23 [ 13] [ 4] [0320] +12:00:23 [ 15] [ 4] [0320] +12:00:23 [ 18] [ 4] [6011] +12:00:23 [ 19] [ 3] [418] +12:00:23 [ 22] [ 3] [021] +12:00:23 [ 25] [ 2] [01] +12:00:23 [ 28] [ 9] [D00002000] +12:00:23 [ 32] [ 6] [668899] +12:00:23 [ 35] [ 32] [6213548000213544=180112011354021] +12:00:23 [ 37] [ 12] [507901963536] +12:00:23 [ 41] [ 8] [03020019] +12:00:23 [ 42] [ 15] [APT ] +12:00:23 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:00:23 [ 49] [ 3] [418] +12:00:23 [ 52] [ 16] [346163AB82B0E445] +12:00:23 ============================================================================ +12:00:23 + + +waiting on router queue for slot.... +12:00:23 Sending to : +12:00:23 ============================================================================ +12:00:23 Sending to : +12:00:23 ============================================================================ +12:00:23 ============================================================================ +12:00:23 Slot Id : <27> +12:00:23 Transaction Type : REQUEST +12:00:23 Received From : +12:00:23 ============================================================================ +12:00:23 FNo. Len. Field Value +12:00:23 ============================================================================ +12:00:23 [ 1] [ 4] [0200] +12:00:23 [ 2] [ 16] [6213548000213544] +12:00:23 [ 3] [ 6] [010000] +12:00:23 [ 4] [ 12] [000010000000] +12:00:23 [ 7] [ 10] [0320115814] +12:00:23 [ 11] [ 6] [942952] +12:00:23 [ 12] [ 6] [115814] +12:00:23 [ 13] [ 4] [0320] +12:00:23 [ 15] [ 4] [0320] +12:00:23 [ 18] [ 4] [6011] +12:00:23 [ 19] [ 3] [418] +12:00:23 [ 22] [ 3] [021] +12:00:23 [ 25] [ 2] [01] +12:00:23 [ 28] [ 9] [D00002000] +12:00:23 [ 32] [ 6] [668899] +12:00:23 [ 35] [ 32] [6213548000213544=180112011354021] +12:00:23 [ 37] [ 12] [507901963536] +12:00:23 [ 41] [ 8] [03020019] +12:00:23 [ 42] [ 15] [APT ] +12:00:23 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:00:23 [ 49] [ 3] [418] +12:00:23 [ 52] [ 16] [346163AB82B0E445] +12:00:23 ============================================================================ +12:00:23 + + +waiting on router queue for slot.... +12:00:23 Sending to : +12:00:23 ============================================================================ +12:00:23 ============================================================================ +12:00:23 Slot Id : <27> +12:00:23 Transaction Type : REQUEST +12:00:23 Received From : +12:00:23 ============================================================================ +12:00:23 FNo. Len. Field Value +12:00:23 ============================================================================ +12:00:23 [ 1] [ 4] [0200] +12:00:23 [ 2] [ 16] [6213548000213544] +12:00:23 [ 3] [ 6] [010000] +12:00:23 [ 4] [ 12] [000010000000] +12:00:23 [ 7] [ 10] [0320115814] +12:00:23 [ 11] [ 6] [942952] +12:00:23 [ 12] [ 6] [115814] +12:00:23 [ 13] [ 4] [0320] +12:00:23 [ 15] [ 4] [0320] +12:00:23 [ 18] [ 4] [6011] +12:00:23 [ 19] [ 3] [418] +12:00:23 [ 22] [ 3] [021] +12:00:23 [ 25] [ 2] [01] +12:00:23 [ 28] [ 9] [D00002000] +12:00:23 [ 32] [ 6] [668899] +12:00:23 [ 35] [ 32] [6213548000213544=180112011354021] +12:00:23 [ 37] [ 12] [507901963536] +12:00:23 [ 41] [ 8] [03020019] +12:00:23 [ 42] [ 15] [APT ] +12:00:23 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:00:23 [ 49] [ 3] [418] +12:00:23 [ 52] [ 16] [DB7B62B6F94D905C] +12:00:23 ============================================================================ +12:00:23 + + +waiting on router queue for slot.... +12:00:23 Sending to : <0> +12:00:23 ============================================================================ +12:00:24 ============================================================================ +12:00:24 Slot Id : <27> +12:00:24 Transaction Type : RESPONSE +12:00:24 Received From : +12:00:24 ============================================================================ +12:00:24 FNo. Len. Field Value +12:00:24 ============================================================================ +12:00:24 [ 1] [ 4] [0210] +12:00:24 [ 2] [ 16] [6213548000213544] +12:00:24 [ 3] [ 6] [010000] +12:00:24 [ 4] [ 12] [000010000000] +12:00:24 [ 7] [ 10] [0320115814] +12:00:24 [ 11] [ 6] [942952] +12:00:24 [ 12] [ 6] [115814] +12:00:24 [ 13] [ 4] [0320] +12:00:24 [ 15] [ 4] [0320] +12:00:24 [ 18] [ 4] [6011] +12:00:24 [ 19] [ 3] [418] +12:00:24 [ 32] [ 6] [668899] +12:00:24 [ 35] [ 32] [6213548000213544=180112011354021] +12:00:24 [ 37] [ 12] [507901963536] +12:00:24 [ 38] [ 6] [361170] +12:00:24 [ 39] [ 2] [00] +12:00:24 [ 41] [ 8] [03020019] +12:00:24 [ 49] [ 3] [418] +12:00:24 [ 54] [ 40] [0001418C0000501713490002418C000050171349] +12:00:24 ============================================================================ +12:00:24 Sending to : +12:00:24 ============================================================================ +12:00:24 + + +waiting on router queue for slot.... +12:00:25 ============================================================================ +12:00:25 Slot Id : <27> +12:00:25 Transaction Type : RESPONSE +12:00:25 Received From : +12:00:25 ============================================================================ +12:00:25 FNo. Len. Field Value +12:00:25 ============================================================================ +12:00:25 [ 1] [ 4] [0210] +12:00:25 [ 2] [ 16] [6213548000213544] +12:00:25 [ 3] [ 6] [010000] +12:00:25 [ 4] [ 12] [000010000000] +12:00:25 [ 7] [ 10] [0320115814] +12:00:25 [ 11] [ 6] [942952] +12:00:25 [ 12] [ 6] [115814] +12:00:25 [ 13] [ 4] [0320] +12:00:25 [ 15] [ 4] [0320] +12:00:25 [ 18] [ 4] [6011] +12:00:25 [ 19] [ 3] [418] +12:00:25 [ 32] [ 6] [668899] +12:00:25 [ 35] [ 32] [6213548000213544=180112011354021] +12:00:25 [ 37] [ 12] [507901963536] +12:00:25 [ 38] [ 6] [361170] +12:00:25 [ 39] [ 2] [00] +12:00:25 [ 41] [ 8] [03020019] +12:00:25 [ 49] [ 3] [418] +12:00:25 [ 54] [ 40] [0001418C0000501713490002418C000050171349] +12:00:25 ============================================================================ +12:00:25 Calculate Source COMM Id = 4 +12:00:25 ============================================================================ +12:00:25 + + +waiting on router queue for slot.... +12:00:32 ============================================================================ +12:00:32 Slot Id : <26> +12:00:32 Transaction Type : REQUEST +12:00:32 Received From : +12:00:32 ============================================================================ +12:00:32 FNo. Len. Field Value +12:00:32 ============================================================================ +12:00:32 [ 1] [ 4] [0800] +12:00:32 [ 7] [ 10] [0320045940] +12:00:32 [ 11] [ 6] [156200] +12:00:32 [ 70] [ 3] [301] +12:00:32 ============================================================================ +12:00:32 + + +waiting on router queue for slot.... +12:00:32 Sending to : +12:00:32 ============================================================================ +12:00:32 ============================================================================ +12:00:32 Slot Id : <26> +12:00:32 Transaction Type : RESPONSE +12:00:32 Received From : +12:00:32 ============================================================================ +12:00:32 FNo. Len. Field Value +12:00:32 ============================================================================ +12:00:32 [ 1] [ 4] [0810] +12:00:32 [ 7] [ 10] [0320045940] +12:00:32 [ 11] [ 6] [156200] +12:00:32 [ 39] [ 2] [00] +12:00:32 [ 70] [ 3] [301] +12:00:32 ============================================================================ +12:00:32 Calculate Source COMM Id = 2 +12:00:32 ============================================================================ +12:00:32 + + +waiting on router queue for slot.... +12:00:37 ============================================================================ +12:00:37 Slot Id : <20> +12:00:37 Transaction Type : REQUEST +12:00:37 Received From : +12:00:37 ============================================================================ +12:00:37 FNo. Len. Field Value +12:00:37 ============================================================================ +12:00:37 [ 1] [ 4] [0200] +12:00:37 [ 2] [ 16] [6213548000216919] +12:00:37 [ 3] [ 6] [012000] +12:00:37 [ 4] [ 12] [000010000000] +12:00:37 [ 7] [ 10] [0320045943] +12:00:37 [ 11] [ 6] [268846] +12:00:37 [ 12] [ 6] [115943] +12:00:37 [ 13] [ 4] [0320] +12:00:37 [ 14] [ 4] [1801] +12:00:37 [ 15] [ 4] [0320] +12:00:37 [ 18] [ 4] [6011] +12:00:37 [ 19] [ 3] [418] +12:00:37 [ 22] [ 3] [021] +12:00:37 [ 25] [ 2] [01] +12:00:37 [ 28] [ 9] [D00002000] +12:00:37 [ 32] [ 6] [180893] +12:00:37 [ 35] [ 32] [6213548000216919=180112011691782] +12:00:37 [ 37] [ 12] [507904268846] +12:00:37 [ 41] [ 8] [0523XYNG] +12:00:37 [ 42] [ 15] [999999 ] +12:00:37 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +12:00:37 [ 49] [ 3] [418] +12:00:37 [ 52] [ 16] [05E7E60BB0EB7840] +12:00:37 ============================================================================ +12:00:37 + + +waiting on router queue for slot.... +12:00:37 Sending to : +12:00:37 ============================================================================ +12:00:37 Sending to : +12:00:37 ============================================================================ +12:00:37 ============================================================================ +12:00:37 Slot Id : <20> +12:00:37 Transaction Type : REQUEST +12:00:37 Received From : +12:00:37 ============================================================================ +12:00:37 FNo. Len. Field Value +12:00:37 ============================================================================ +12:00:37 [ 1] [ 4] [0200] +12:00:37 [ 2] [ 16] [6213548000216919] +12:00:37 [ 3] [ 6] [012000] +12:00:37 [ 4] [ 12] [000010000000] +12:00:37 [ 7] [ 10] [0320045943] +12:00:37 [ 11] [ 6] [268846] +12:00:37 [ 12] [ 6] [115943] +12:00:37 [ 13] [ 4] [0320] +12:00:37 [ 14] [ 4] [1801] +12:00:37 [ 15] [ 4] [0320] +12:00:37 [ 18] [ 4] [6011] +12:00:37 [ 19] [ 3] [418] +12:00:37 [ 22] [ 3] [021] +12:00:37 [ 25] [ 2] [01] +12:00:37 [ 28] [ 9] [D00002000] +12:00:37 [ 32] [ 6] [180893] +12:00:37 [ 35] [ 32] [6213548000216919=180112011691782] +12:00:37 [ 37] [ 12] [507904268846] +12:00:37 [ 41] [ 8] [0523XYNG] +12:00:37 [ 42] [ 15] [999999 ] +12:00:37 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +12:00:37 [ 49] [ 3] [418] +12:00:37 [ 52] [ 16] [05E7E60BB0EB7840] +12:00:37 ============================================================================ +12:00:37 + + +waiting on router queue for slot.... +12:00:37 Sending to : +12:00:37 ============================================================================ +12:00:37 ============================================================================ +12:00:37 Slot Id : <20> +12:00:37 Transaction Type : REQUEST +12:00:37 Received From : +12:00:37 ============================================================================ +12:00:37 FNo. Len. Field Value +12:00:37 ============================================================================ +12:00:37 [ 1] [ 4] [0200] +12:00:37 [ 2] [ 16] [6213548000216919] +12:00:37 [ 3] [ 6] [012000] +12:00:37 [ 4] [ 12] [000010000000] +12:00:37 [ 7] [ 10] [0320045943] +12:00:37 [ 11] [ 6] [268846] +12:00:37 [ 12] [ 6] [115943] +12:00:37 [ 13] [ 4] [0320] +12:00:37 [ 14] [ 4] [1801] +12:00:37 [ 15] [ 4] [0320] +12:00:37 [ 18] [ 4] [6011] +12:00:37 [ 19] [ 3] [418] +12:00:37 [ 22] [ 3] [021] +12:00:37 [ 25] [ 2] [01] +12:00:37 [ 28] [ 9] [D00002000] +12:00:37 [ 32] [ 6] [180893] +12:00:37 [ 35] [ 32] [6213548000216919=180112011691782] +12:00:37 [ 37] [ 12] [507904268846] +12:00:37 [ 41] [ 8] [0523XYNG] +12:00:37 [ 42] [ 15] [999999 ] +12:00:37 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +12:00:37 [ 49] [ 3] [418] +12:00:37 [ 52] [ 16] [9BBE00076F4C3CD8] +12:00:37 ============================================================================ +12:00:37 + + +waiting on router queue for slot.... +12:00:37 Sending to : <0> +12:00:37 ============================================================================ +12:00:38 ============================================================================ +12:00:38 Slot Id : <20> +12:00:38 Transaction Type : RESPONSE +12:00:38 Received From : +12:00:38 ============================================================================ +12:00:38 FNo. Len. Field Value +12:00:38 ============================================================================ +12:00:38 [ 1] [ 4] [0210] +12:00:38 [ 2] [ 16] [6213548000216919] +12:00:38 [ 3] [ 6] [012000] +12:00:38 [ 4] [ 12] [000010000000] +12:00:38 [ 7] [ 10] [0320045943] +12:00:38 [ 11] [ 6] [268846] +12:00:38 [ 12] [ 6] [115943] +12:00:38 [ 13] [ 4] [0320] +12:00:38 [ 15] [ 4] [0320] +12:00:38 [ 18] [ 4] [6011] +12:00:38 [ 19] [ 3] [418] +12:00:38 [ 32] [ 6] [180893] +12:00:38 [ 35] [ 32] [6213548000216919=180112011691782] +12:00:38 [ 37] [ 12] [507904268846] +12:00:38 [ 38] [ 6] [268846] +12:00:38 [ 39] [ 2] [51] +12:00:38 [ 41] [ 8] [0523XYNG] +12:00:38 [ 49] [ 3] [418] +12:00:38 [ 54] [ 40] [2001418C0000113442302002418C000011344230] +12:00:38 ============================================================================ +12:00:38 Sending to : +12:00:38 ============================================================================ +12:00:38 + + +waiting on router queue for slot.... +12:00:39 ============================================================================ +12:00:39 Slot Id : <20> +12:00:39 Transaction Type : RESPONSE +12:00:39 Received From : +12:00:39 ============================================================================ +12:00:39 FNo. Len. Field Value +12:00:39 ============================================================================ +12:00:39 [ 1] [ 4] [0210] +12:00:39 [ 2] [ 16] [6213548000216919] +12:00:39 [ 3] [ 6] [012000] +12:00:39 [ 4] [ 12] [000010000000] +12:00:39 [ 7] [ 10] [0320045943] +12:00:39 [ 11] [ 6] [268846] +12:00:39 [ 12] [ 6] [115943] +12:00:39 [ 13] [ 4] [0320] +12:00:39 [ 15] [ 4] [0320] +12:00:39 [ 18] [ 4] [6011] +12:00:39 [ 19] [ 3] [418] +12:00:39 [ 32] [ 6] [180893] +12:00:39 [ 35] [ 32] [6213548000216919=180112011691782] +12:00:39 [ 37] [ 12] [507904268846] +12:00:39 [ 38] [ 6] [268846] +12:00:39 [ 39] [ 2] [51] +12:00:39 [ 41] [ 8] [0523XYNG] +12:00:39 [ 49] [ 3] [418] +12:00:39 [ 54] [ 40] [2001418C0000113442302002418C000011344230] +12:00:39 ============================================================================ +12:00:39 Calculate Source COMM Id = 2 +12:00:39 ============================================================================ +12:00:39 + + +waiting on router queue for slot.... +12:00:46 ============================================================================ +12:00:46 Slot Id : <48> +12:00:46 Transaction Type : REQUEST +12:00:46 Received From : +12:00:46 ============================================================================ +12:00:46 FNo. Len. Field Value +12:00:46 ============================================================================ +12:00:46 [ 1] [ 4] [0200] +12:00:46 [ 2] [ 16] [6213545000437743] +12:00:46 [ 3] [ 6] [010000] +12:00:46 [ 4] [ 12] [000010000000] +12:00:46 [ 7] [ 10] [0320045952] +12:00:46 [ 11] [ 6] [268848] +12:00:46 [ 12] [ 6] [115952] +12:00:46 [ 13] [ 4] [0320] +12:00:46 [ 14] [ 4] [4912] +12:00:46 [ 15] [ 4] [0320] +12:00:46 [ 18] [ 4] [6011] +12:00:46 [ 19] [ 3] [418] +12:00:46 [ 22] [ 3] [021] +12:00:46 [ 25] [ 2] [01] +12:00:46 [ 28] [ 9] [D00002000] +12:00:46 [ 32] [ 6] [180893] +12:00:46 [ 35] [ 32] [6213545000437743=491212013774327] +12:00:46 [ 37] [ 12] [507904268848] +12:00:46 [ 41] [ 8] [0441VT52] +12:00:46 [ 42] [ 15] [999999 ] +12:00:46 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +12:00:46 [ 49] [ 3] [418] +12:00:46 [ 52] [ 16] [BE360230F331D4CB] +12:00:46 ============================================================================ +12:00:46 + + +waiting on router queue for slot.... +12:00:46 Sending to : +12:00:46 ============================================================================ +12:00:46 Sending to : +12:00:46 ============================================================================ +12:00:47 ============================================================================ +12:00:47 Slot Id : <48> +12:00:47 Transaction Type : REQUEST +12:00:47 Received From : +12:00:47 ============================================================================ +12:00:47 FNo. Len. Field Value +12:00:47 ============================================================================ +12:00:47 [ 1] [ 4] [0200] +12:00:47 [ 2] [ 16] [6213545000437743] +12:00:47 [ 3] [ 6] [010000] +12:00:47 [ 4] [ 12] [000010000000] +12:00:47 [ 7] [ 10] [0320045952] +12:00:47 [ 11] [ 6] [268848] +12:00:47 [ 12] [ 6] [115952] +12:00:47 [ 13] [ 4] [0320] +12:00:47 [ 14] [ 4] [4912] +12:00:47 [ 15] [ 4] [0320] +12:00:47 [ 18] [ 4] [6011] +12:00:47 [ 19] [ 3] [418] +12:00:47 [ 22] [ 3] [021] +12:00:47 [ 25] [ 2] [01] +12:00:47 [ 28] [ 9] [D00002000] +12:00:47 [ 32] [ 6] [180893] +12:00:47 [ 35] [ 32] [6213545000437743=491212013774327] +12:00:47 [ 37] [ 12] [507904268848] +12:00:47 [ 41] [ 8] [0441VT52] +12:00:47 [ 42] [ 15] [999999 ] +12:00:47 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +12:00:47 [ 49] [ 3] [418] +12:00:47 [ 52] [ 16] [BE360230F331D4CB] +12:00:47 ============================================================================ +12:00:47 + + +waiting on router queue for slot.... +12:00:47 Sending to : +12:00:47 ============================================================================ +12:00:47 ============================================================================ +12:00:47 Slot Id : <48> +12:00:47 Transaction Type : REQUEST +12:00:47 Received From : +12:00:47 ============================================================================ +12:00:47 FNo. Len. Field Value +12:00:47 ============================================================================ +12:00:47 [ 1] [ 4] [0200] +12:00:47 [ 2] [ 16] [6213545000437743] +12:00:47 [ 3] [ 6] [010000] +12:00:47 [ 4] [ 12] [000010000000] +12:00:47 [ 7] [ 10] [0320045952] +12:00:47 [ 11] [ 6] [268848] +12:00:47 [ 12] [ 6] [115952] +12:00:47 [ 13] [ 4] [0320] +12:00:47 [ 14] [ 4] [4912] +12:00:47 [ 15] [ 4] [0320] +12:00:47 [ 18] [ 4] [6011] +12:00:47 [ 19] [ 3] [418] +12:00:47 [ 22] [ 3] [021] +12:00:47 [ 25] [ 2] [01] +12:00:47 [ 28] [ 9] [D00002000] +12:00:47 [ 32] [ 6] [180893] +12:00:47 [ 35] [ 32] [6213545000437743=491212013774327] +12:00:47 [ 37] [ 12] [507904268848] +12:00:47 [ 41] [ 8] [0441VT52] +12:00:47 [ 42] [ 15] [999999 ] +12:00:47 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +12:00:47 [ 49] [ 3] [418] +12:00:47 [ 52] [ 16] [BFA0134D374D633C] +12:00:47 ============================================================================ +12:00:47 + + +waiting on router queue for slot.... +12:00:47 Sending to : <0> +12:00:47 ============================================================================ +12:00:47 ============================================================================ +12:00:47 Slot Id : <48> +12:00:47 Transaction Type : RESPONSE +12:00:47 Received From : +12:00:47 ============================================================================ +12:00:47 FNo. Len. Field Value +12:00:47 ============================================================================ +12:00:47 [ 1] [ 4] [0210] +12:00:47 [ 2] [ 16] [6213545000437743] +12:00:47 [ 3] [ 6] [010000] +12:00:47 [ 4] [ 12] [000010000000] +12:00:47 [ 7] [ 10] [0320045952] +12:00:47 [ 11] [ 6] [268848] +12:00:47 [ 12] [ 6] [115952] +12:00:47 [ 13] [ 4] [0320] +12:00:47 [ 15] [ 4] [0320] +12:00:47 [ 18] [ 4] [6011] +12:00:47 [ 19] [ 3] [418] +12:00:47 [ 32] [ 6] [180893] +12:00:47 [ 35] [ 32] [6213545000437743=491212013774327] +12:00:47 [ 37] [ 12] [507904268848] +12:00:47 [ 38] [ 6] [268848] +12:00:47 [ 39] [ 2] [51] +12:00:47 [ 41] [ 8] [0441VT52] +12:00:47 [ 49] [ 3] [418] +12:00:47 [ 54] [ 40] [0001418C0000146246040002418C000014624604] +12:00:47 ============================================================================ +12:00:47 Sending to : +12:00:47 ============================================================================ +12:00:47 + + +waiting on router queue for slot.... +12:00:49 ============================================================================ +12:00:49 Slot Id : <48> +12:00:49 Transaction Type : RESPONSE +12:00:49 Received From : +12:00:49 ============================================================================ +12:00:49 FNo. Len. Field Value +12:00:49 ============================================================================ +12:00:49 [ 1] [ 4] [0210] +12:00:49 [ 2] [ 16] [6213545000437743] +12:00:49 [ 3] [ 6] [010000] +12:00:49 [ 4] [ 12] [000010000000] +12:00:49 [ 7] [ 10] [0320045952] +12:00:49 [ 11] [ 6] [268848] +12:00:49 [ 12] [ 6] [115952] +12:00:49 [ 13] [ 4] [0320] +12:00:49 [ 15] [ 4] [0320] +12:00:49 [ 18] [ 4] [6011] +12:00:49 [ 19] [ 3] [418] +12:00:49 [ 32] [ 6] [180893] +12:00:49 [ 35] [ 32] [6213545000437743=491212013774327] +12:00:49 [ 37] [ 12] [507904268848] +12:00:49 [ 38] [ 6] [268848] +12:00:49 [ 39] [ 2] [51] +12:00:49 [ 41] [ 8] [0441VT52] +12:00:49 [ 49] [ 3] [418] +12:00:49 [ 54] [ 40] [0001418C0000146246040002418C000014624604] +12:00:49 ============================================================================ +12:00:49 Calculate Source COMM Id = 2 +12:00:49 ============================================================================ +12:00:49 + + +waiting on router queue for slot.... +12:00:52 ============================================================================ +12:00:52 Slot Id : <46> +12:00:52 Transaction Type : REQUEST +12:00:52 Received From : +12:00:52 ============================================================================ +12:00:52 FNo. Len. Field Value +12:00:52 ============================================================================ +12:00:52 [ 1] [ 4] [0800] +12:00:52 [ 2] [ 5] [02531] +12:00:52 [ 3] [ 6] [579128] +12:00:52 [ 7] [ 10] [0320050052] +12:00:52 [ 11] [ 6] [807109] +12:00:52 [ 15] [ 10] [0320050052] +12:00:52 [ 37] [ 11] [57912807109] +12:00:52 [ 70] [ 3] [001] +12:00:52 ============================================================================ +12:00:52 + + +waiting on router queue for slot.... +12:00:52 ============================================================================ +12:00:52 Slot Id : <46> +12:00:52 Transaction Type : RESPONSE +12:00:52 Received From : +12:00:52 ============================================================================ +12:00:52 FNo. Len. Field Value +12:00:52 ============================================================================ +12:00:52 [ 1] [ 4] [0810] +12:00:52 [ 7] [ 10] [0320050052] +12:00:52 [ 11] [ 6] [807109] +12:00:52 [ 15] [ 4] [0320] +12:00:52 [ 37] [ 12] [57912807109] +12:00:52 [ 39] [ 2] [00] +12:00:52 [ 70] [ 3] [001] +12:00:52 ============================================================================ +12:00:52 Sending to : +12:00:52 ============================================================================ +12:00:52 + + +waiting on router queue for slot.... +12:01:03 ============================================================================ +12:01:03 Slot Id : <19> +12:01:03 Transaction Type : REQUEST +12:01:03 Received From : +12:01:03 ============================================================================ +12:01:03 FNo. Len. Field Value +12:01:03 ============================================================================ +12:01:03 [ 1] [ 4] [0200] +12:01:03 [ 2] [ 16] [6213544001043030] +12:01:03 [ 3] [ 6] [301000] +12:01:03 [ 4] [ 12] [000000000000] +12:01:03 [ 7] [ 10] [0320115854] +12:01:03 [ 11] [ 6] [942980] +12:01:03 [ 12] [ 6] [115854] +12:01:03 [ 13] [ 4] [0320] +12:01:03 [ 15] [ 4] [0320] +12:01:03 [ 18] [ 4] [6011] +12:01:03 [ 19] [ 3] [418] +12:01:03 [ 22] [ 3] [021] +12:01:03 [ 25] [ 2] [01] +12:01:03 [ 28] [ 9] [D00000000] +12:01:03 [ 32] [ 6] [668899] +12:01:03 [ 35] [ 32] [6213544001043030=491212014303039] +12:01:03 [ 37] [ 12] [507900123283] +12:01:03 [ 41] [ 8] [03020003] +12:01:03 [ 42] [ 15] [APT ] +12:01:03 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:01:03 [ 49] [ 3] [418] +12:01:03 [ 52] [ 16] [2781737B41F2BBC2] +12:01:03 ============================================================================ +12:01:03 + + +waiting on router queue for slot.... +12:01:03 Sending to : +12:01:03 ============================================================================ +12:01:03 Sending to : +12:01:03 ============================================================================ +12:01:03 ============================================================================ +12:01:03 Slot Id : <19> +12:01:03 Transaction Type : REQUEST +12:01:03 Received From : +12:01:03 ============================================================================ +12:01:03 FNo. Len. Field Value +12:01:03 ============================================================================ +12:01:03 [ 1] [ 4] [0200] +12:01:03 [ 2] [ 16] [6213544001043030] +12:01:03 [ 3] [ 6] [301000] +12:01:03 [ 4] [ 12] [000000000000] +12:01:03 [ 7] [ 10] [0320115854] +12:01:03 [ 11] [ 6] [942980] +12:01:03 [ 12] [ 6] [115854] +12:01:03 [ 13] [ 4] [0320] +12:01:03 [ 15] [ 4] [0320] +12:01:03 [ 18] [ 4] [6011] +12:01:03 [ 19] [ 3] [418] +12:01:03 [ 22] [ 3] [021] +12:01:03 [ 25] [ 2] [01] +12:01:03 [ 28] [ 9] [D00000000] +12:01:03 [ 32] [ 6] [668899] +12:01:03 [ 35] [ 32] [6213544001043030=491212014303039] +12:01:03 [ 37] [ 12] [507900123283] +12:01:03 [ 41] [ 8] [03020003] +12:01:03 [ 42] [ 15] [APT ] +12:01:03 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:01:03 [ 49] [ 3] [418] +12:01:03 [ 52] [ 16] [2781737B41F2BBC2] +12:01:03 ============================================================================ +12:01:03 + + +waiting on router queue for slot.... +12:01:03 Sending to : +12:01:03 ============================================================================ +12:01:03 ============================================================================ +12:01:03 Slot Id : <19> +12:01:03 Transaction Type : REQUEST +12:01:03 Received From : +12:01:03 ============================================================================ +12:01:03 FNo. Len. Field Value +12:01:03 ============================================================================ +12:01:03 [ 1] [ 4] [0200] +12:01:03 [ 2] [ 16] [6213544001043030] +12:01:03 [ 3] [ 6] [301000] +12:01:03 [ 4] [ 12] [000000000000] +12:01:03 [ 7] [ 10] [0320115854] +12:01:03 [ 11] [ 6] [942980] +12:01:03 [ 12] [ 6] [115854] +12:01:03 [ 13] [ 4] [0320] +12:01:03 [ 15] [ 4] [0320] +12:01:03 [ 18] [ 4] [6011] +12:01:03 [ 19] [ 3] [418] +12:01:03 [ 22] [ 3] [021] +12:01:03 [ 25] [ 2] [01] +12:01:03 [ 28] [ 9] [D00000000] +12:01:03 [ 32] [ 6] [668899] +12:01:03 [ 35] [ 32] [6213544001043030=491212014303039] +12:01:03 [ 37] [ 12] [507900123283] +12:01:03 [ 41] [ 8] [03020003] +12:01:03 [ 42] [ 15] [APT ] +12:01:03 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:01:03 [ 49] [ 3] [418] +12:01:03 [ 52] [ 16] [38AB53DFB6B34369] +12:01:03 ============================================================================ +12:01:03 + + +waiting on router queue for slot.... +12:01:03 Sending to : <0> +12:01:03 ============================================================================ +12:01:04 ============================================================================ +12:01:04 Slot Id : <58> +12:01:04 Transaction Type : REQUEST +12:01:04 Received From : +12:01:04 ============================================================================ +12:01:04 FNo. Len. Field Value +12:01:04 ============================================================================ +12:01:04 [ 1] [ 4] [0800] +12:01:04 [ 7] [ 10] [0320050011] +12:01:04 [ 11] [ 6] [156201] +12:01:04 [ 70] [ 3] [301] +12:01:04 ============================================================================ +12:01:04 + + +waiting on router queue for slot.... +12:01:04 Sending to : +12:01:04 ============================================================================ +12:01:04 ============================================================================ +12:01:04 Slot Id : <58> +12:01:04 Transaction Type : RESPONSE +12:01:04 Received From : +12:01:04 ============================================================================ +12:01:04 FNo. Len. Field Value +12:01:04 ============================================================================ +12:01:04 [ 1] [ 4] [0810] +12:01:04 [ 7] [ 10] [0320050011] +12:01:04 [ 11] [ 6] [156201] +12:01:04 [ 39] [ 2] [00] +12:01:04 [ 70] [ 3] [301] +12:01:04 ============================================================================ +12:01:04 Calculate Source COMM Id = 2 +12:01:04 ============================================================================ +12:01:04 + + +waiting on router queue for slot.... +12:01:04 ============================================================================ +12:01:04 Slot Id : <19> +12:01:04 Transaction Type : RESPONSE +12:01:04 Received From : +12:01:04 ============================================================================ +12:01:04 FNo. Len. Field Value +12:01:04 ============================================================================ +12:01:04 [ 1] [ 4] [0210] +12:01:04 [ 2] [ 16] [6213544001043030] +12:01:04 [ 3] [ 6] [301000] +12:01:04 [ 4] [ 12] [000000000000] +12:01:04 [ 7] [ 10] [0320115854] +12:01:04 [ 11] [ 6] [942980] +12:01:04 [ 12] [ 6] [115854] +12:01:04 [ 13] [ 4] [0320] +12:01:04 [ 15] [ 4] [0320] +12:01:04 [ 18] [ 4] [6011] +12:01:04 [ 19] [ 3] [418] +12:01:04 [ 32] [ 6] [668899] +12:01:04 [ 35] [ 32] [6213544001043030=491212014303039] +12:01:04 [ 37] [ 12] [507900123283] +12:01:04 [ 38] [ 6] [630902] +12:01:04 [ 39] [ 2] [00] +12:01:04 [ 41] [ 8] [03020003] +12:01:04 [ 49] [ 3] [418] +12:01:04 [ 54] [ 40] [1001418C0000054084681002418C000005408468] +12:01:04 ============================================================================ +12:01:04 Sending to : +12:01:04 ============================================================================ +12:01:04 + + +waiting on router queue for slot.... +12:01:05 ============================================================================ +12:01:05 Slot Id : <19> +12:01:05 Transaction Type : RESPONSE +12:01:05 Received From : +12:01:05 ============================================================================ +12:01:05 FNo. Len. Field Value +12:01:05 ============================================================================ +12:01:05 [ 1] [ 4] [0210] +12:01:05 [ 2] [ 16] [6213544001043030] +12:01:05 [ 3] [ 6] [301000] +12:01:05 [ 4] [ 12] [000000000000] +12:01:05 [ 7] [ 10] [0320115854] +12:01:05 [ 11] [ 6] [942980] +12:01:05 [ 12] [ 6] [115854] +12:01:05 [ 13] [ 4] [0320] +12:01:05 [ 15] [ 4] [0320] +12:01:05 [ 18] [ 4] [6011] +12:01:05 [ 19] [ 3] [418] +12:01:05 [ 32] [ 6] [668899] +12:01:05 [ 35] [ 32] [6213544001043030=491212014303039] +12:01:05 [ 37] [ 12] [507900123283] +12:01:05 [ 38] [ 6] [630902] +12:01:05 [ 39] [ 2] [00] +12:01:05 [ 41] [ 8] [03020003] +12:01:05 [ 49] [ 3] [418] +12:01:05 [ 54] [ 40] [1001418C0000054084681002418C000005408468] +12:01:05 ============================================================================ +12:01:05 Calculate Source COMM Id = 4 +12:01:05 ============================================================================ +12:01:05 + + +waiting on router queue for slot.... +12:01:14 ============================================================================ +12:01:14 Slot Id : <69> +12:01:14 Transaction Type : REQUEST +12:01:14 Received From : +12:01:14 ============================================================================ +12:01:14 FNo. Len. Field Value +12:01:14 ============================================================================ +12:01:14 [ 1] [ 4] [0800] +12:01:14 [ 7] [ 10] [0320050022] +12:01:14 [ 11] [ 6] [156202] +12:01:14 [ 70] [ 3] [301] +12:01:14 ============================================================================ +12:01:14 + + +waiting on router queue for slot.... +12:01:14 Sending to : +12:01:14 ============================================================================ +12:01:14 ============================================================================ +12:01:14 Slot Id : <69> +12:01:14 Transaction Type : RESPONSE +12:01:14 Received From : +12:01:14 ============================================================================ +12:01:14 FNo. Len. Field Value +12:01:14 ============================================================================ +12:01:14 [ 1] [ 4] [0810] +12:01:14 [ 7] [ 10] [0320050022] +12:01:14 [ 11] [ 6] [156202] +12:01:14 [ 39] [ 2] [00] +12:01:14 [ 70] [ 3] [301] +12:01:14 ============================================================================ +12:01:14 Calculate Source COMM Id = 2 +12:01:14 ============================================================================ +12:01:14 + + +waiting on router queue for slot.... +12:01:21 ============================================================================ +12:01:21 Slot Id : <78> +12:01:21 Transaction Type : REQUEST +12:01:21 Received From : +12:01:21 ============================================================================ +12:01:21 FNo. Len. Field Value +12:01:21 ============================================================================ +12:01:21 [ 1] [ 4] [0200] +12:01:21 [ 2] [ 16] [6213545000859839] +12:01:21 [ 3] [ 6] [010000] +12:01:21 [ 4] [ 12] [000100000000] +12:01:21 [ 7] [ 10] [0320050027] +12:01:21 [ 11] [ 6] [268852] +12:01:21 [ 12] [ 6] [120027] +12:01:21 [ 13] [ 4] [0320] +12:01:21 [ 14] [ 4] [4912] +12:01:21 [ 15] [ 4] [0320] +12:01:21 [ 18] [ 4] [6011] +12:01:21 [ 19] [ 3] [418] +12:01:21 [ 22] [ 3] [021] +12:01:21 [ 25] [ 2] [01] +12:01:21 [ 28] [ 9] [D00002000] +12:01:21 [ 32] [ 6] [180893] +12:01:21 [ 35] [ 32] [6213545000859839=491212015983678] +12:01:21 [ 37] [ 12] [507905268852] +12:01:21 [ 41] [ 8] [0465UDNM] +12:01:21 [ 42] [ 15] [999999 ] +12:01:21 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:01:21 [ 49] [ 3] [418] +12:01:21 [ 52] [ 16] [F3CEFF7767FB9B11] +12:01:21 ============================================================================ +12:01:21 + + +waiting on router queue for slot.... +12:01:21 Sending to : +12:01:21 ============================================================================ +12:01:21 Sending to : +12:01:21 ============================================================================ +12:01:21 ============================================================================ +12:01:21 Slot Id : <47> +12:01:21 Transaction Type : REQUEST +12:01:21 Received From : +12:01:21 ============================================================================ +12:01:21 FNo. Len. Field Value +12:01:21 ============================================================================ +12:01:21 [ 1] [ 4] [0800] +12:01:21 [ 7] [ 10] [0320045912] +12:01:21 [ 11] [ 6] [065296] +12:01:21 [ 37] [ 12] [57911065296] +12:01:21 [ 70] [ 3] [301] +12:01:21 ============================================================================ +12:01:21 + + +waiting on router queue for slot.... +12:01:21 Sending to : +12:01:21 ============================================================================ +12:01:21 ============================================================================ +12:01:21 Slot Id : <47> +12:01:21 Transaction Type : RESPONSE +12:01:21 Received From : +12:01:21 ============================================================================ +12:01:21 FNo. Len. Field Value +12:01:21 ============================================================================ +12:01:21 [ 1] [ 4] [0810] +12:01:21 [ 7] [ 10] [0320045912] +12:01:21 [ 11] [ 6] [065296] +12:01:21 [ 37] [ 12] [579110652960] +12:01:21 [ 39] [ 2] [00] +12:01:21 [ 70] [ 3] [810] +12:01:21 ============================================================================ +12:01:21 Calculate Source COMM Id = 4 +12:01:21 ============================================================================ +12:01:21 + + +waiting on router queue for slot.... +12:01:21 ============================================================================ +12:01:21 Slot Id : <78> +12:01:21 Transaction Type : REQUEST +12:01:21 Received From : +12:01:21 ============================================================================ +12:01:21 FNo. Len. Field Value +12:01:21 ============================================================================ +12:01:21 [ 1] [ 4] [0200] +12:01:21 [ 2] [ 16] [6213545000859839] +12:01:21 [ 3] [ 6] [010000] +12:01:21 [ 4] [ 12] [000100000000] +12:01:21 [ 7] [ 10] [0320050027] +12:01:21 [ 11] [ 6] [268852] +12:01:21 [ 12] [ 6] [120027] +12:01:21 [ 13] [ 4] [0320] +12:01:21 [ 14] [ 4] [4912] +12:01:21 [ 15] [ 4] [0320] +12:01:21 [ 18] [ 4] [6011] +12:01:21 [ 19] [ 3] [418] +12:01:21 [ 22] [ 3] [021] +12:01:21 [ 25] [ 2] [01] +12:01:21 [ 28] [ 9] [D00002000] +12:01:21 [ 32] [ 6] [180893] +12:01:21 [ 35] [ 32] [6213545000859839=491212015983678] +12:01:21 [ 37] [ 12] [507905268852] +12:01:21 [ 41] [ 8] [0465UDNM] +12:01:21 [ 42] [ 15] [999999 ] +12:01:21 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:01:21 [ 49] [ 3] [418] +12:01:21 [ 52] [ 16] [F3CEFF7767FB9B11] +12:01:21 ============================================================================ +12:01:21 + + +waiting on router queue for slot.... +12:01:21 Sending to : +12:01:21 ============================================================================ +12:01:21 ============================================================================ +12:01:21 Slot Id : <78> +12:01:21 Transaction Type : REQUEST +12:01:21 Received From : +12:01:21 ============================================================================ +12:01:21 FNo. Len. Field Value +12:01:21 ============================================================================ +12:01:21 [ 1] [ 4] [0200] +12:01:21 [ 2] [ 16] [6213545000859839] +12:01:21 [ 3] [ 6] [010000] +12:01:21 [ 4] [ 12] [000100000000] +12:01:21 [ 7] [ 10] [0320050027] +12:01:21 [ 11] [ 6] [268852] +12:01:21 [ 12] [ 6] [120027] +12:01:21 [ 13] [ 4] [0320] +12:01:21 [ 14] [ 4] [4912] +12:01:21 [ 15] [ 4] [0320] +12:01:21 [ 18] [ 4] [6011] +12:01:21 [ 19] [ 3] [418] +12:01:21 [ 22] [ 3] [021] +12:01:21 [ 25] [ 2] [01] +12:01:21 [ 28] [ 9] [D00002000] +12:01:21 [ 32] [ 6] [180893] +12:01:21 [ 35] [ 32] [6213545000859839=491212015983678] +12:01:21 [ 37] [ 12] [507905268852] +12:01:21 [ 41] [ 8] [0465UDNM] +12:01:21 [ 42] [ 15] [999999 ] +12:01:21 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:01:21 [ 49] [ 3] [418] +12:01:21 [ 52] [ 16] [D02FA1C03A5C18B6] +12:01:21 ============================================================================ +12:01:21 + + +waiting on router queue for slot.... +12:01:21 Sending to : <0> +12:01:21 ============================================================================ +12:01:22 ============================================================================ +12:01:22 Slot Id : <78> +12:01:22 Transaction Type : RESPONSE +12:01:22 Received From : +12:01:22 ============================================================================ +12:01:22 FNo. Len. Field Value +12:01:22 ============================================================================ +12:01:22 [ 1] [ 4] [0210] +12:01:22 [ 2] [ 16] [6213545000859839] +12:01:22 [ 3] [ 6] [010000] +12:01:22 [ 4] [ 12] [000100000000] +12:01:22 [ 7] [ 10] [0320050027] +12:01:22 [ 11] [ 6] [268852] +12:01:22 [ 12] [ 6] [120027] +12:01:22 [ 13] [ 4] [0320] +12:01:22 [ 15] [ 4] [0320] +12:01:22 [ 18] [ 4] [6011] +12:01:22 [ 19] [ 3] [418] +12:01:22 [ 32] [ 6] [180893] +12:01:22 [ 35] [ 32] [6213545000859839=491212015983678] +12:01:22 [ 37] [ 12] [507905268852] +12:01:22 [ 38] [ 6] [707320] +12:01:22 [ 39] [ 2] [00] +12:01:22 [ 41] [ 8] [0465UDNM] +12:01:22 [ 49] [ 3] [418] +12:01:22 [ 54] [ 40] [0001418C0003584284750002418C000358428475] +12:01:22 ============================================================================ +12:01:22 Sending to : +12:01:22 ============================================================================ +12:01:22 + + +waiting on router queue for slot.... +12:01:24 ============================================================================ +12:01:24 Slot Id : <78> +12:01:24 Transaction Type : RESPONSE +12:01:24 Received From : +12:01:24 ============================================================================ +12:01:24 FNo. Len. Field Value +12:01:24 ============================================================================ +12:01:24 [ 1] [ 4] [0210] +12:01:24 [ 2] [ 16] [6213545000859839] +12:01:24 [ 3] [ 6] [010000] +12:01:24 [ 4] [ 12] [000100000000] +12:01:24 [ 7] [ 10] [0320050027] +12:01:24 [ 11] [ 6] [268852] +12:01:24 [ 12] [ 6] [120027] +12:01:24 [ 13] [ 4] [0320] +12:01:24 [ 15] [ 4] [0320] +12:01:24 [ 18] [ 4] [6011] +12:01:24 [ 19] [ 3] [418] +12:01:24 [ 32] [ 6] [180893] +12:01:24 [ 35] [ 32] [6213545000859839=491212015983678] +12:01:24 [ 37] [ 12] [507905268852] +12:01:24 [ 38] [ 6] [707320] +12:01:24 [ 39] [ 2] [00] +12:01:24 [ 41] [ 8] [0465UDNM] +12:01:24 [ 49] [ 3] [418] +12:01:24 [ 54] [ 40] [0001418C0003584284750002418C000358428475] +12:01:24 ============================================================================ +12:01:24 Calculate Source COMM Id = 2 +12:01:24 ============================================================================ +12:01:24 + + +waiting on router queue for slot.... +12:01:24 ============================================================================ +12:01:24 Slot Id : <81> +12:01:24 Transaction Type : REQUEST +12:01:24 Received From : +12:01:24 ============================================================================ +12:01:24 FNo. Len. Field Value +12:01:24 ============================================================================ +12:01:24 [ 1] [ 4] [0200] +12:01:24 [ 2] [ 16] [6213548000216919] +12:01:24 [ 3] [ 6] [012000] +12:01:24 [ 4] [ 12] [000005000000] +12:01:24 [ 7] [ 10] [0320050030] +12:01:24 [ 11] [ 6] [268855] +12:01:24 [ 12] [ 6] [120030] +12:01:24 [ 13] [ 4] [0320] +12:01:24 [ 14] [ 4] [1801] +12:01:24 [ 15] [ 4] [0320] +12:01:24 [ 18] [ 4] [6011] +12:01:24 [ 19] [ 3] [418] +12:01:24 [ 22] [ 3] [021] +12:01:24 [ 25] [ 2] [01] +12:01:24 [ 28] [ 9] [D00002000] +12:01:24 [ 32] [ 6] [180893] +12:01:24 [ 35] [ 32] [6213548000216919=180112011691782] +12:01:24 [ 37] [ 12] [507905268855] +12:01:24 [ 41] [ 8] [0523XYNG] +12:01:24 [ 42] [ 15] [999999 ] +12:01:24 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +12:01:24 [ 49] [ 3] [418] +12:01:24 [ 52] [ 16] [05E7E60BB0EB7840] +12:01:24 ============================================================================ +12:01:24 + + +waiting on router queue for slot.... +12:01:24 Sending to : +12:01:24 ============================================================================ +12:01:24 Sending to : +12:01:24 ============================================================================ +12:01:25 ============================================================================ +12:01:25 Slot Id : <81> +12:01:25 Transaction Type : REQUEST +12:01:25 Received From : +12:01:25 ============================================================================ +12:01:25 FNo. Len. Field Value +12:01:25 ============================================================================ +12:01:25 [ 1] [ 4] [0200] +12:01:25 [ 2] [ 16] [6213548000216919] +12:01:25 [ 3] [ 6] [012000] +12:01:25 [ 4] [ 12] [000005000000] +12:01:25 [ 7] [ 10] [0320050030] +12:01:25 [ 11] [ 6] [268855] +12:01:25 [ 12] [ 6] [120030] +12:01:25 [ 13] [ 4] [0320] +12:01:25 [ 14] [ 4] [1801] +12:01:25 [ 15] [ 4] [0320] +12:01:25 [ 18] [ 4] [6011] +12:01:25 [ 19] [ 3] [418] +12:01:25 [ 22] [ 3] [021] +12:01:25 [ 25] [ 2] [01] +12:01:25 [ 28] [ 9] [D00002000] +12:01:25 [ 32] [ 6] [180893] +12:01:25 [ 35] [ 32] [6213548000216919=180112011691782] +12:01:25 [ 37] [ 12] [507905268855] +12:01:25 [ 41] [ 8] [0523XYNG] +12:01:25 [ 42] [ 15] [999999 ] +12:01:25 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +12:01:25 [ 49] [ 3] [418] +12:01:25 [ 52] [ 16] [05E7E60BB0EB7840] +12:01:25 ============================================================================ +12:01:25 + + +waiting on router queue for slot.... +12:01:25 Sending to : +12:01:25 ============================================================================ +12:01:25 ============================================================================ +12:01:25 Slot Id : <81> +12:01:25 Transaction Type : REQUEST +12:01:25 Received From : +12:01:25 ============================================================================ +12:01:25 FNo. Len. Field Value +12:01:25 ============================================================================ +12:01:25 [ 1] [ 4] [0200] +12:01:25 [ 2] [ 16] [6213548000216919] +12:01:25 [ 3] [ 6] [012000] +12:01:25 [ 4] [ 12] [000005000000] +12:01:25 [ 7] [ 10] [0320050030] +12:01:25 [ 11] [ 6] [268855] +12:01:25 [ 12] [ 6] [120030] +12:01:25 [ 13] [ 4] [0320] +12:01:25 [ 14] [ 4] [1801] +12:01:25 [ 15] [ 4] [0320] +12:01:25 [ 18] [ 4] [6011] +12:01:25 [ 19] [ 3] [418] +12:01:25 [ 22] [ 3] [021] +12:01:25 [ 25] [ 2] [01] +12:01:25 [ 28] [ 9] [D00002000] +12:01:25 [ 32] [ 6] [180893] +12:01:25 [ 35] [ 32] [6213548000216919=180112011691782] +12:01:25 [ 37] [ 12] [507905268855] +12:01:25 [ 41] [ 8] [0523XYNG] +12:01:25 [ 42] [ 15] [999999 ] +12:01:25 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +12:01:25 [ 49] [ 3] [418] +12:01:25 [ 52] [ 16] [9BBE00076F4C3CD8] +12:01:25 ============================================================================ +12:01:25 + + +waiting on router queue for slot.... +12:01:25 Sending to : <0> +12:01:25 ============================================================================ +12:01:25 ============================================================================ +12:01:25 Slot Id : <81> +12:01:25 Transaction Type : RESPONSE +12:01:25 Received From : +12:01:25 ============================================================================ +12:01:25 FNo. Len. Field Value +12:01:25 ============================================================================ +12:01:25 [ 1] [ 4] [0210] +12:01:25 [ 2] [ 16] [6213548000216919] +12:01:25 [ 3] [ 6] [012000] +12:01:25 [ 4] [ 12] [000005000000] +12:01:25 [ 7] [ 10] [0320050030] +12:01:25 [ 11] [ 6] [268855] +12:01:25 [ 12] [ 6] [120030] +12:01:25 [ 13] [ 4] [0320] +12:01:25 [ 15] [ 4] [0320] +12:01:25 [ 18] [ 4] [6011] +12:01:25 [ 19] [ 3] [418] +12:01:25 [ 32] [ 6] [180893] +12:01:25 [ 35] [ 32] [6213548000216919=180112011691782] +12:01:25 [ 37] [ 12] [507905268855] +12:01:25 [ 38] [ 6] [025573] +12:01:25 [ 39] [ 2] [00] +12:01:25 [ 41] [ 8] [0523XYNG] +12:01:25 [ 49] [ 3] [418] +12:01:25 [ 54] [ 40] [2001418C0000061442302002418C000006144230] +12:01:25 ============================================================================ +12:01:25 Sending to : +12:01:25 ============================================================================ +12:01:25 + + +waiting on router queue for slot.... +12:01:27 ============================================================================ +12:01:27 Slot Id : <81> +12:01:27 Transaction Type : RESPONSE +12:01:27 Received From : +12:01:27 ============================================================================ +12:01:27 FNo. Len. Field Value +12:01:27 ============================================================================ +12:01:27 [ 1] [ 4] [0210] +12:01:27 [ 2] [ 16] [6213548000216919] +12:01:27 [ 3] [ 6] [012000] +12:01:27 [ 4] [ 12] [000005000000] +12:01:27 [ 7] [ 10] [0320050030] +12:01:27 [ 11] [ 6] [268855] +12:01:27 [ 12] [ 6] [120030] +12:01:27 [ 13] [ 4] [0320] +12:01:27 [ 15] [ 4] [0320] +12:01:27 [ 18] [ 4] [6011] +12:01:27 [ 19] [ 3] [418] +12:01:27 [ 32] [ 6] [180893] +12:01:27 [ 35] [ 32] [6213548000216919=180112011691782] +12:01:27 [ 37] [ 12] [507905268855] +12:01:27 [ 38] [ 6] [025573] +12:01:27 [ 39] [ 2] [00] +12:01:27 [ 41] [ 8] [0523XYNG] +12:01:27 [ 49] [ 3] [418] +12:01:27 [ 54] [ 40] [2001418C0000061442302002418C000006144230] +12:01:27 ============================================================================ +12:01:27 Calculate Source COMM Id = 2 +12:01:27 ============================================================================ +12:01:27 + + +waiting on router queue for slot.... +12:01:42 ============================================================================ +12:01:42 Slot Id : <54> +12:01:42 Transaction Type : REQUEST +12:01:42 Received From : +12:01:42 ============================================================================ +12:01:42 FNo. Len. Field Value +12:01:42 ============================================================================ +12:01:42 [ 1] [ 4] [0800] +12:01:42 [ 7] [ 10] [0320050049] +12:01:42 [ 11] [ 6] [156203] +12:01:42 [ 70] [ 3] [301] +12:01:42 ============================================================================ +12:01:42 + + +waiting on router queue for slot.... +12:01:42 Sending to : +12:01:42 ============================================================================ +12:01:42 ============================================================================ +12:01:42 Slot Id : <54> +12:01:42 Transaction Type : RESPONSE +12:01:42 Received From : +12:01:42 ============================================================================ +12:01:42 FNo. Len. Field Value +12:01:42 ============================================================================ +12:01:42 [ 1] [ 4] [0810] +12:01:42 [ 7] [ 10] [0320050049] +12:01:42 [ 11] [ 6] [156203] +12:01:42 [ 39] [ 2] [00] +12:01:42 [ 70] [ 3] [301] +12:01:42 ============================================================================ +12:01:42 Calculate Source COMM Id = 2 +12:01:42 ============================================================================ +12:01:42 + + +waiting on router queue for slot.... +12:01:52 ============================================================================ +12:01:52 Slot Id : <57> +12:01:52 Transaction Type : REQUEST +12:01:52 Received From : +12:01:52 ============================================================================ +12:01:52 FNo. Len. Field Value +12:01:52 ============================================================================ +12:01:52 [ 1] [ 4] [0200] +12:01:52 [ 2] [ 16] [6213544000992708] +12:01:52 [ 3] [ 6] [010000] +12:01:52 [ 4] [ 12] [000010000000] +12:01:52 [ 7] [ 10] [0320115943] +12:01:52 [ 11] [ 6] [943012] +12:01:52 [ 12] [ 6] [115943] +12:01:52 [ 13] [ 4] [0320] +12:01:52 [ 15] [ 4] [0320] +12:01:52 [ 18] [ 4] [6011] +12:01:52 [ 19] [ 3] [418] +12:01:52 [ 22] [ 3] [021] +12:01:52 [ 25] [ 2] [01] +12:01:52 [ 28] [ 9] [D00002000] +12:01:52 [ 32] [ 6] [668899] +12:01:52 [ 35] [ 32] [6213544000992708=491212019270310] +12:01:52 [ 37] [ 12] [507901262001] +12:01:52 [ 41] [ 8] [03206001] +12:01:52 [ 42] [ 15] [APT ] +12:01:52 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +12:01:52 [ 49] [ 3] [418] +12:01:52 [ 52] [ 16] [0C843A32FA975E38] +12:01:52 ============================================================================ +12:01:52 + + +waiting on router queue for slot.... +12:01:52 Sending to : +12:01:52 ============================================================================ +12:01:52 Sending to : +12:01:52 ============================================================================ +12:01:52 ============================================================================ +12:01:52 Slot Id : <57> +12:01:52 Transaction Type : REQUEST +12:01:52 Received From : +12:01:52 ============================================================================ +12:01:52 FNo. Len. Field Value +12:01:52 ============================================================================ +12:01:52 [ 1] [ 4] [0200] +12:01:52 [ 2] [ 16] [6213544000992708] +12:01:52 [ 3] [ 6] [010000] +12:01:52 [ 4] [ 12] [000010000000] +12:01:52 [ 7] [ 10] [0320115943] +12:01:52 [ 11] [ 6] [943012] +12:01:52 [ 12] [ 6] [115943] +12:01:52 [ 13] [ 4] [0320] +12:01:52 [ 15] [ 4] [0320] +12:01:52 [ 18] [ 4] [6011] +12:01:52 [ 19] [ 3] [418] +12:01:52 [ 22] [ 3] [021] +12:01:52 [ 25] [ 2] [01] +12:01:52 [ 28] [ 9] [D00002000] +12:01:52 [ 32] [ 6] [668899] +12:01:52 [ 35] [ 32] [6213544000992708=491212019270310] +12:01:52 [ 37] [ 12] [507901262001] +12:01:52 [ 41] [ 8] [03206001] +12:01:52 [ 42] [ 15] [APT ] +12:01:52 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +12:01:52 [ 49] [ 3] [418] +12:01:52 [ 52] [ 16] [0C843A32FA975E38] +12:01:52 ============================================================================ +12:01:52 + + +waiting on router queue for slot.... +12:01:52 Sending to : +12:01:52 ============================================================================ +12:01:52 ============================================================================ +12:01:52 Slot Id : <57> +12:01:52 Transaction Type : REQUEST +12:01:52 Received From : +12:01:52 ============================================================================ +12:01:52 FNo. Len. Field Value +12:01:52 ============================================================================ +12:01:52 [ 1] [ 4] [0200] +12:01:52 [ 2] [ 16] [6213544000992708] +12:01:52 [ 3] [ 6] [010000] +12:01:52 [ 4] [ 12] [000010000000] +12:01:52 [ 7] [ 10] [0320115943] +12:01:52 [ 11] [ 6] [943012] +12:01:52 [ 12] [ 6] [115943] +12:01:52 [ 13] [ 4] [0320] +12:01:52 [ 15] [ 4] [0320] +12:01:52 [ 18] [ 4] [6011] +12:01:52 [ 19] [ 3] [418] +12:01:52 [ 22] [ 3] [021] +12:01:52 [ 25] [ 2] [01] +12:01:52 [ 28] [ 9] [D00002000] +12:01:52 [ 32] [ 6] [668899] +12:01:52 [ 35] [ 32] [6213544000992708=491212019270310] +12:01:52 [ 37] [ 12] [507901262001] +12:01:52 [ 41] [ 8] [03206001] +12:01:52 [ 42] [ 15] [APT ] +12:01:52 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +12:01:52 [ 49] [ 3] [418] +12:01:52 [ 52] [ 16] [4101611A6AE8B3FA] +12:01:52 ============================================================================ +12:01:52 + + +waiting on router queue for slot.... +12:01:52 Sending to : <0> +12:01:52 ============================================================================ +12:01:53 ============================================================================ +12:01:53 Slot Id : <24> +12:01:53 Transaction Type : REQUEST +12:01:53 Received From : +12:01:53 ============================================================================ +12:01:53 FNo. Len. Field Value +12:01:53 ============================================================================ +12:01:53 [ 1] [ 4] [0800] +12:01:53 [ 7] [ 10] [0320050100] +12:01:53 [ 11] [ 6] [156204] +12:01:53 [ 70] [ 3] [301] +12:01:53 ============================================================================ +12:01:53 + + +waiting on router queue for slot.... +12:01:53 Sending to : +12:01:53 ============================================================================ +12:01:53 ============================================================================ +12:01:53 Slot Id : <24> +12:01:53 Transaction Type : RESPONSE +12:01:53 Received From : +12:01:53 ============================================================================ +12:01:53 FNo. Len. Field Value +12:01:53 ============================================================================ +12:01:53 [ 1] [ 4] [0810] +12:01:53 [ 7] [ 10] [0320050100] +12:01:53 [ 11] [ 6] [156204] +12:01:53 [ 39] [ 2] [00] +12:01:53 [ 70] [ 3] [301] +12:01:53 ============================================================================ +12:01:53 Calculate Source COMM Id = 2 +12:01:53 ============================================================================ +12:01:53 + + +waiting on router queue for slot.... +12:01:53 ============================================================================ +12:01:53 Slot Id : <57> +12:01:53 Transaction Type : RESPONSE +12:01:53 Received From : +12:01:53 ============================================================================ +12:01:53 FNo. Len. Field Value +12:01:53 ============================================================================ +12:01:53 [ 1] [ 4] [0210] +12:01:53 [ 2] [ 16] [6213544000992708] +12:01:53 [ 3] [ 6] [010000] +12:01:53 [ 4] [ 12] [000010000000] +12:01:53 [ 7] [ 10] [0320115943] +12:01:53 [ 11] [ 6] [943012] +12:01:53 [ 12] [ 6] [115943] +12:01:53 [ 13] [ 4] [0320] +12:01:53 [ 15] [ 4] [0320] +12:01:53 [ 18] [ 4] [6011] +12:01:53 [ 19] [ 3] [418] +12:01:53 [ 32] [ 6] [668899] +12:01:53 [ 35] [ 32] [6213544000992708=491212019270310] +12:01:53 [ 37] [ 12] [507901262001] +12:01:53 [ 38] [ 6] [475797] +12:01:53 [ 39] [ 2] [00] +12:01:53 [ 41] [ 8] [03206001] +12:01:53 [ 49] [ 3] [418] +12:01:53 [ 54] [ 40] [0001418C0000064185520002418C000006418552] +12:01:53 ============================================================================ +12:01:53 Sending to : +12:01:53 ============================================================================ +12:01:53 + + +waiting on router queue for slot.... +12:01:54 ============================================================================ +12:01:54 Slot Id : <42> +12:01:54 Transaction Type : REQUEST +12:01:54 Received From : +12:01:54 ============================================================================ +12:01:54 FNo. Len. Field Value +12:01:54 ============================================================================ +12:01:54 [ 1] [ 4] [0800] +12:01:54 [ 2] [ 5] [02531] +12:01:54 [ 3] [ 6] [579128] +12:01:54 [ 7] [ 10] [0320050154] +12:01:54 [ 11] [ 6] [807110] +12:01:54 [ 15] [ 10] [0320050154] +12:01:54 [ 37] [ 11] [57912807110] +12:01:54 [ 70] [ 3] [001] +12:01:54 ============================================================================ +12:01:54 + + +waiting on router queue for slot.... +12:01:54 ============================================================================ +12:01:54 Slot Id : <42> +12:01:54 Transaction Type : RESPONSE +12:01:54 Received From : +12:01:54 ============================================================================ +12:01:54 FNo. Len. Field Value +12:01:54 ============================================================================ +12:01:54 [ 1] [ 4] [0810] +12:01:54 [ 7] [ 10] [0320050154] +12:01:54 [ 11] [ 6] [807110] +12:01:54 [ 15] [ 4] [0320] +12:01:54 [ 37] [ 12] [57912807110] +12:01:54 [ 39] [ 2] [00] +12:01:54 [ 70] [ 3] [001] +12:01:54 ============================================================================ +12:01:54 Sending to : +12:01:54 ============================================================================ +12:01:54 + + +waiting on router queue for slot.... +12:01:55 ============================================================================ +12:01:55 Slot Id : <57> +12:01:55 Transaction Type : RESPONSE +12:01:55 Received From : +12:01:55 ============================================================================ +12:01:55 FNo. Len. Field Value +12:01:55 ============================================================================ +12:01:55 [ 1] [ 4] [0210] +12:01:55 [ 2] [ 16] [6213544000992708] +12:01:55 [ 3] [ 6] [010000] +12:01:55 [ 4] [ 12] [000010000000] +12:01:55 [ 7] [ 10] [0320115943] +12:01:55 [ 11] [ 6] [943012] +12:01:55 [ 12] [ 6] [115943] +12:01:55 [ 13] [ 4] [0320] +12:01:55 [ 15] [ 4] [0320] +12:01:55 [ 18] [ 4] [6011] +12:01:55 [ 19] [ 3] [418] +12:01:55 [ 32] [ 6] [668899] +12:01:55 [ 35] [ 32] [6213544000992708=491212019270310] +12:01:55 [ 37] [ 12] [507901262001] +12:01:55 [ 38] [ 6] [475797] +12:01:55 [ 39] [ 2] [00] +12:01:55 [ 41] [ 8] [03206001] +12:01:55 [ 49] [ 3] [418] +12:01:55 [ 54] [ 40] [0001418C0000064185520002418C000006418552] +12:01:55 ============================================================================ +12:01:55 Calculate Source COMM Id = 4 +12:01:55 ============================================================================ +12:01:55 + + +waiting on router queue for slot.... +12:02:04 ============================================================================ +12:02:04 Slot Id : <34> +12:02:04 Transaction Type : REQUEST +12:02:04 Received From : +12:02:04 ============================================================================ +12:02:04 FNo. Len. Field Value +12:02:04 ============================================================================ +12:02:04 [ 1] [ 4] [0800] +12:02:04 [ 7] [ 10] [0320050111] +12:02:04 [ 11] [ 6] [156205] +12:02:04 [ 70] [ 3] [301] +12:02:04 ============================================================================ +12:02:04 + + +waiting on router queue for slot.... +12:02:04 Sending to : +12:02:04 ============================================================================ +12:02:04 ============================================================================ +12:02:04 Slot Id : <34> +12:02:04 Transaction Type : RESPONSE +12:02:04 Received From : +12:02:04 ============================================================================ +12:02:04 FNo. Len. Field Value +12:02:04 ============================================================================ +12:02:04 [ 1] [ 4] [0810] +12:02:04 [ 7] [ 10] [0320050111] +12:02:04 [ 11] [ 6] [156205] +12:02:04 [ 39] [ 2] [00] +12:02:04 [ 70] [ 3] [301] +12:02:04 ============================================================================ +12:02:04 Calculate Source COMM Id = 2 +12:02:04 ============================================================================ +12:02:04 + + +waiting on router queue for slot.... +12:02:11 ============================================================================ +12:02:11 Slot Id : <49> +12:02:11 Transaction Type : REQUEST +12:02:11 Received From : +12:02:11 ============================================================================ +12:02:11 FNo. Len. Field Value +12:02:11 ============================================================================ +12:02:11 [ 1] [ 4] [0200] +12:02:11 [ 2] [ 16] [6213548000216919] +12:02:11 [ 3] [ 6] [012000] +12:02:11 [ 4] [ 12] [000005000000] +12:02:11 [ 7] [ 10] [0320050118] +12:02:11 [ 11] [ 6] [268861] +12:02:11 [ 12] [ 6] [120118] +12:02:11 [ 13] [ 4] [0320] +12:02:11 [ 14] [ 4] [1801] +12:02:11 [ 15] [ 4] [0320] +12:02:11 [ 18] [ 4] [6011] +12:02:11 [ 19] [ 3] [418] +12:02:11 [ 22] [ 3] [021] +12:02:11 [ 25] [ 2] [01] +12:02:11 [ 28] [ 9] [D00002000] +12:02:11 [ 32] [ 6] [180893] +12:02:11 [ 35] [ 32] [6213548000216919=180112011691782] +12:02:11 [ 37] [ 12] [507905268861] +12:02:11 [ 41] [ 8] [0523XYNG] +12:02:11 [ 42] [ 15] [999999 ] +12:02:11 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +12:02:11 [ 49] [ 3] [418] +12:02:11 [ 52] [ 16] [05E7E60BB0EB7840] +12:02:11 ============================================================================ +12:02:11 + + +waiting on router queue for slot.... +12:02:11 Sending to : +12:02:11 ============================================================================ +12:02:11 Sending to : +12:02:11 ============================================================================ +12:02:12 ============================================================================ +12:02:12 Slot Id : <49> +12:02:12 Transaction Type : REQUEST +12:02:12 Received From : +12:02:12 ============================================================================ +12:02:12 FNo. Len. Field Value +12:02:12 ============================================================================ +12:02:12 [ 1] [ 4] [0200] +12:02:12 [ 2] [ 16] [6213548000216919] +12:02:12 [ 3] [ 6] [012000] +12:02:12 [ 4] [ 12] [000005000000] +12:02:12 [ 7] [ 10] [0320050118] +12:02:12 [ 11] [ 6] [268861] +12:02:12 [ 12] [ 6] [120118] +12:02:12 [ 13] [ 4] [0320] +12:02:12 [ 14] [ 4] [1801] +12:02:12 [ 15] [ 4] [0320] +12:02:12 [ 18] [ 4] [6011] +12:02:12 [ 19] [ 3] [418] +12:02:12 [ 22] [ 3] [021] +12:02:12 [ 25] [ 2] [01] +12:02:12 [ 28] [ 9] [D00002000] +12:02:12 [ 32] [ 6] [180893] +12:02:12 [ 35] [ 32] [6213548000216919=180112011691782] +12:02:12 [ 37] [ 12] [507905268861] +12:02:12 [ 41] [ 8] [0523XYNG] +12:02:12 [ 42] [ 15] [999999 ] +12:02:12 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +12:02:12 [ 49] [ 3] [418] +12:02:12 [ 52] [ 16] [05E7E60BB0EB7840] +12:02:12 ============================================================================ +12:02:12 + + +waiting on router queue for slot.... +12:02:12 Sending to : +12:02:12 ============================================================================ +12:02:12 ============================================================================ +12:02:12 Slot Id : <49> +12:02:12 Transaction Type : REQUEST +12:02:12 Received From : +12:02:12 ============================================================================ +12:02:12 FNo. Len. Field Value +12:02:12 ============================================================================ +12:02:12 [ 1] [ 4] [0200] +12:02:12 [ 2] [ 16] [6213548000216919] +12:02:12 [ 3] [ 6] [012000] +12:02:12 [ 4] [ 12] [000005000000] +12:02:12 [ 7] [ 10] [0320050118] +12:02:12 [ 11] [ 6] [268861] +12:02:12 [ 12] [ 6] [120118] +12:02:12 [ 13] [ 4] [0320] +12:02:12 [ 14] [ 4] [1801] +12:02:12 [ 15] [ 4] [0320] +12:02:12 [ 18] [ 4] [6011] +12:02:12 [ 19] [ 3] [418] +12:02:12 [ 22] [ 3] [021] +12:02:12 [ 25] [ 2] [01] +12:02:12 [ 28] [ 9] [D00002000] +12:02:12 [ 32] [ 6] [180893] +12:02:12 [ 35] [ 32] [6213548000216919=180112011691782] +12:02:12 [ 37] [ 12] [507905268861] +12:02:12 [ 41] [ 8] [0523XYNG] +12:02:12 [ 42] [ 15] [999999 ] +12:02:12 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +12:02:12 [ 49] [ 3] [418] +12:02:12 [ 52] [ 16] [9BBE00076F4C3CD8] +12:02:12 ============================================================================ +12:02:12 + + +waiting on router queue for slot.... +12:02:12 Sending to : <0> +12:02:12 ============================================================================ +12:02:12 ============================================================================ +12:02:12 Slot Id : <49> +12:02:12 Transaction Type : RESPONSE +12:02:12 Received From : +12:02:12 ============================================================================ +12:02:12 FNo. Len. Field Value +12:02:12 ============================================================================ +12:02:12 [ 1] [ 4] [0210] +12:02:12 [ 2] [ 16] [6213548000216919] +12:02:12 [ 3] [ 6] [012000] +12:02:12 [ 4] [ 12] [000005000000] +12:02:12 [ 7] [ 10] [0320050118] +12:02:12 [ 11] [ 6] [268861] +12:02:12 [ 12] [ 6] [120118] +12:02:12 [ 13] [ 4] [0320] +12:02:12 [ 15] [ 4] [0320] +12:02:12 [ 18] [ 4] [6011] +12:02:12 [ 19] [ 3] [418] +12:02:12 [ 32] [ 6] [180893] +12:02:12 [ 35] [ 32] [6213548000216919=180112011691782] +12:02:12 [ 37] [ 12] [507905268861] +12:02:12 [ 38] [ 6] [268861] +12:02:12 [ 39] [ 2] [51] +12:02:12 [ 41] [ 8] [0523XYNG] +12:02:12 [ 49] [ 3] [418] +12:02:12 [ 54] [ 40] [2001418C0000061442302002418C000006144230] +12:02:12 ============================================================================ +12:02:12 Sending to : +12:02:12 ============================================================================ +12:02:12 + + +waiting on router queue for slot.... +12:02:13 ============================================================================ +12:02:13 Slot Id : <49> +12:02:13 Transaction Type : RESPONSE +12:02:13 Received From : +12:02:13 ============================================================================ +12:02:13 FNo. Len. Field Value +12:02:13 ============================================================================ +12:02:13 [ 1] [ 4] [0210] +12:02:13 [ 2] [ 16] [6213548000216919] +12:02:13 [ 3] [ 6] [012000] +12:02:13 [ 4] [ 12] [000005000000] +12:02:13 [ 7] [ 10] [0320050118] +12:02:13 [ 11] [ 6] [268861] +12:02:13 [ 12] [ 6] [120118] +12:02:13 [ 13] [ 4] [0320] +12:02:13 [ 15] [ 4] [0320] +12:02:13 [ 18] [ 4] [6011] +12:02:13 [ 19] [ 3] [418] +12:02:13 [ 32] [ 6] [180893] +12:02:13 [ 35] [ 32] [6213548000216919=180112011691782] +12:02:13 [ 37] [ 12] [507905268861] +12:02:13 [ 38] [ 6] [268861] +12:02:13 [ 39] [ 2] [51] +12:02:13 [ 41] [ 8] [0523XYNG] +12:02:13 [ 49] [ 3] [418] +12:02:13 [ 54] [ 40] [2001418C0000061442302002418C000006144230] +12:02:13 ============================================================================ +12:02:13 Calculate Source COMM Id = 2 +12:02:13 ============================================================================ +12:02:13 + + +waiting on router queue for slot.... +12:02:24 ============================================================================ +12:02:24 Slot Id : <86> +12:02:24 Transaction Type : REQUEST +12:02:24 Received From : +12:02:24 ============================================================================ +12:02:24 FNo. Len. Field Value +12:02:24 ============================================================================ +12:02:24 [ 1] [ 4] [0800] +12:02:24 [ 7] [ 10] [0320050132] +12:02:24 [ 11] [ 6] [156206] +12:02:24 [ 70] [ 3] [301] +12:02:24 ============================================================================ +12:02:24 + + +waiting on router queue for slot.... +12:02:24 Sending to : +12:02:24 ============================================================================ +12:02:24 ============================================================================ +12:02:24 Slot Id : <86> +12:02:24 Transaction Type : RESPONSE +12:02:24 Received From : +12:02:24 ============================================================================ +12:02:24 FNo. Len. Field Value +12:02:24 ============================================================================ +12:02:24 [ 1] [ 4] [0810] +12:02:24 [ 7] [ 10] [0320050132] +12:02:24 [ 11] [ 6] [156206] +12:02:24 [ 39] [ 2] [00] +12:02:24 [ 70] [ 3] [301] +12:02:24 ============================================================================ +12:02:24 Calculate Source COMM Id = 2 +12:02:24 ============================================================================ +12:02:24 + + +waiting on router queue for slot.... +12:02:40 ============================================================================ +12:02:40 Slot Id : <89> +12:02:40 Transaction Type : REQUEST +12:02:40 Received From : +12:02:40 ============================================================================ +12:02:40 FNo. Len. Field Value +12:02:40 ============================================================================ +12:02:40 [ 1] [ 4] [0800] +12:02:40 [ 7] [ 10] [0320050147] +12:02:40 [ 11] [ 6] [156207] +12:02:40 [ 70] [ 3] [301] +12:02:40 ============================================================================ +12:02:40 + + +waiting on router queue for slot.... +12:02:40 Sending to : +12:02:40 ============================================================================ +12:02:40 ============================================================================ +12:02:40 Slot Id : <89> +12:02:40 Transaction Type : RESPONSE +12:02:40 Received From : +12:02:40 ============================================================================ +12:02:40 FNo. Len. Field Value +12:02:40 ============================================================================ +12:02:40 [ 1] [ 4] [0810] +12:02:40 [ 7] [ 10] [0320050147] +12:02:40 [ 11] [ 6] [156207] +12:02:40 [ 39] [ 2] [00] +12:02:40 [ 70] [ 3] [301] +12:02:40 ============================================================================ +12:02:40 Calculate Source COMM Id = 2 +12:02:40 ============================================================================ +12:02:40 + + +waiting on router queue for slot.... +12:02:50 ============================================================================ +12:02:50 Slot Id : <88> +12:02:50 Transaction Type : REQUEST +12:02:50 Received From : +12:02:50 ============================================================================ +12:02:50 FNo. Len. Field Value +12:02:50 ============================================================================ +12:02:50 [ 1] [ 4] [0800] +12:02:50 [ 7] [ 10] [0320050158] +12:02:50 [ 11] [ 6] [156208] +12:02:50 [ 70] [ 3] [301] +12:02:50 ============================================================================ +12:02:50 + + +waiting on router queue for slot.... +12:02:50 Sending to : +12:02:50 ============================================================================ +12:02:50 ============================================================================ +12:02:50 Slot Id : <88> +12:02:50 Transaction Type : RESPONSE +12:02:50 Received From : +12:02:50 ============================================================================ +12:02:50 FNo. Len. Field Value +12:02:50 ============================================================================ +12:02:50 [ 1] [ 4] [0810] +12:02:50 [ 7] [ 10] [0320050158] +12:02:50 [ 11] [ 6] [156208] +12:02:50 [ 39] [ 2] [00] +12:02:50 [ 70] [ 3] [301] +12:02:50 ============================================================================ +12:02:50 Calculate Source COMM Id = 2 +12:02:50 ============================================================================ +12:02:50 + + +waiting on router queue for slot.... +12:02:51 ============================================================================ +12:02:51 Slot Id : <59> +12:02:51 Transaction Type : REQUEST +12:02:51 Received From : +12:02:51 ============================================================================ +12:02:51 FNo. Len. Field Value +12:02:51 ============================================================================ +12:02:51 [ 1] [ 4] [0200] +12:02:51 [ 2] [ 16] [6213545000859839] +12:02:51 [ 3] [ 6] [301000] +12:02:51 [ 7] [ 10] [0320050158] +12:02:51 [ 11] [ 6] [268862] +12:02:51 [ 12] [ 6] [120158] +12:02:51 [ 13] [ 4] [0320] +12:02:51 [ 14] [ 4] [4912] +12:02:51 [ 15] [ 4] [0320] +12:02:51 [ 18] [ 4] [6011] +12:02:51 [ 19] [ 3] [418] +12:02:51 [ 22] [ 3] [021] +12:02:51 [ 25] [ 2] [01] +12:02:51 [ 32] [ 6] [180893] +12:02:51 [ 35] [ 32] [6213545000859839=491212015983678] +12:02:51 [ 37] [ 12] [507905268862] +12:02:51 [ 41] [ 8] [0465UDNM] +12:02:51 [ 42] [ 15] [999999 ] +12:02:51 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:02:51 [ 49] [ 3] [418] +12:02:51 [ 52] [ 16] [F3CEFF7767FB9B11] +12:02:51 ============================================================================ +12:02:51 + + +waiting on router queue for slot.... +12:02:51 Sending to : +12:02:51 ============================================================================ +12:02:51 Sending to : +12:02:51 ============================================================================ +12:02:51 ============================================================================ +12:02:51 Slot Id : <59> +12:02:51 Transaction Type : REQUEST +12:02:51 Received From : +12:02:51 ============================================================================ +12:02:51 FNo. Len. Field Value +12:02:51 ============================================================================ +12:02:51 [ 1] [ 4] [0200] +12:02:51 [ 2] [ 16] [6213545000859839] +12:02:51 [ 3] [ 6] [301000] +12:02:51 [ 7] [ 10] [0320050158] +12:02:51 [ 11] [ 6] [268862] +12:02:51 [ 12] [ 6] [120158] +12:02:51 [ 13] [ 4] [0320] +12:02:51 [ 14] [ 4] [4912] +12:02:51 [ 15] [ 4] [0320] +12:02:51 [ 18] [ 4] [6011] +12:02:51 [ 19] [ 3] [418] +12:02:51 [ 22] [ 3] [021] +12:02:51 [ 25] [ 2] [01] +12:02:51 [ 32] [ 6] [180893] +12:02:51 [ 35] [ 32] [6213545000859839=491212015983678] +12:02:51 [ 37] [ 12] [507905268862] +12:02:51 [ 41] [ 8] [0465UDNM] +12:02:51 [ 42] [ 15] [999999 ] +12:02:51 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:02:51 [ 49] [ 3] [418] +12:02:51 [ 52] [ 16] [F3CEFF7767FB9B11] +12:02:51 ============================================================================ +12:02:51 + + +waiting on router queue for slot.... +12:02:51 Sending to : +12:02:51 ============================================================================ +12:02:51 ============================================================================ +12:02:51 Slot Id : <59> +12:02:51 Transaction Type : REQUEST +12:02:51 Received From : +12:02:51 ============================================================================ +12:02:51 FNo. Len. Field Value +12:02:51 ============================================================================ +12:02:51 [ 1] [ 4] [0200] +12:02:51 [ 2] [ 16] [6213545000859839] +12:02:51 [ 3] [ 6] [301000] +12:02:51 [ 7] [ 10] [0320050158] +12:02:51 [ 11] [ 6] [268862] +12:02:51 [ 12] [ 6] [120158] +12:02:51 [ 13] [ 4] [0320] +12:02:51 [ 14] [ 4] [4912] +12:02:51 [ 15] [ 4] [0320] +12:02:51 [ 18] [ 4] [6011] +12:02:51 [ 19] [ 3] [418] +12:02:51 [ 22] [ 3] [021] +12:02:51 [ 25] [ 2] [01] +12:02:51 [ 32] [ 6] [180893] +12:02:51 [ 35] [ 32] [6213545000859839=491212015983678] +12:02:51 [ 37] [ 12] [507905268862] +12:02:51 [ 41] [ 8] [0465UDNM] +12:02:51 [ 42] [ 15] [999999 ] +12:02:51 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:02:51 [ 49] [ 3] [418] +12:02:51 [ 52] [ 16] [D02FA1C03A5C18B6] +12:02:51 ============================================================================ +12:02:51 + + +waiting on router queue for slot.... +12:02:51 Sending to : <0> +12:02:51 ============================================================================ +12:02:51 ============================================================================ +12:02:51 Slot Id : <59> +12:02:51 Transaction Type : RESPONSE +12:02:51 Received From : +12:02:51 ============================================================================ +12:02:51 FNo. Len. Field Value +12:02:51 ============================================================================ +12:02:51 [ 1] [ 4] [0210] +12:02:51 [ 2] [ 16] [6213545000859839] +12:02:51 [ 3] [ 6] [301000] +12:02:51 [ 4] [ 12] [000000000000] +12:02:51 [ 7] [ 10] [0320050158] +12:02:51 [ 11] [ 6] [268862] +12:02:51 [ 12] [ 6] [120158] +12:02:51 [ 13] [ 4] [0320] +12:02:51 [ 15] [ 4] [0320] +12:02:51 [ 18] [ 4] [6011] +12:02:51 [ 19] [ 3] [418] +12:02:51 [ 32] [ 6] [180893] +12:02:51 [ 35] [ 32] [6213545000859839=491212015983678] +12:02:51 [ 37] [ 12] [507905268862] +12:02:51 [ 38] [ 6] [270080] +12:02:51 [ 39] [ 2] [00] +12:02:51 [ 41] [ 8] [0465UDNM] +12:02:51 [ 49] [ 3] [418] +12:02:51 [ 54] [ 40] [1001418C0003584284751002418C000358428475] +12:02:51 ============================================================================ +12:02:51 Sending to : +12:02:51 ============================================================================ +12:02:51 + + +waiting on router queue for slot.... +12:02:53 ============================================================================ +12:02:53 Slot Id : <59> +12:02:53 Transaction Type : RESPONSE +12:02:53 Received From : +12:02:53 ============================================================================ +12:02:53 FNo. Len. Field Value +12:02:53 ============================================================================ +12:02:53 [ 1] [ 4] [0210] +12:02:53 [ 2] [ 16] [6213545000859839] +12:02:53 [ 3] [ 6] [301000] +12:02:53 [ 4] [ 12] [000000000000] +12:02:53 [ 7] [ 10] [0320050158] +12:02:53 [ 11] [ 6] [268862] +12:02:53 [ 12] [ 6] [120158] +12:02:53 [ 13] [ 4] [0320] +12:02:53 [ 15] [ 4] [0320] +12:02:53 [ 18] [ 4] [6011] +12:02:53 [ 19] [ 3] [418] +12:02:53 [ 32] [ 6] [180893] +12:02:53 [ 35] [ 32] [6213545000859839=491212015983678] +12:02:53 [ 37] [ 12] [507905268862] +12:02:53 [ 38] [ 6] [270080] +12:02:53 [ 39] [ 2] [00] +12:02:53 [ 41] [ 8] [0465UDNM] +12:02:53 [ 49] [ 3] [418] +12:02:53 [ 54] [ 40] [1001418C0003584284751002418C000358428475] +12:02:53 ============================================================================ +12:02:53 Calculate Source COMM Id = 2 +12:02:53 ============================================================================ +12:02:53 + + +waiting on router queue for slot.... +12:02:56 ============================================================================ +12:02:56 Slot Id : <79> +12:02:56 Transaction Type : REQUEST +12:02:56 Received From : +12:02:56 ============================================================================ +12:02:56 FNo. Len. Field Value +12:02:56 ============================================================================ +12:02:56 [ 1] [ 4] [0800] +12:02:56 [ 2] [ 5] [02531] +12:02:56 [ 3] [ 6] [579128] +12:02:56 [ 7] [ 10] [0320050256] +12:02:56 [ 11] [ 6] [807111] +12:02:56 [ 15] [ 10] [0320050256] +12:02:56 [ 37] [ 11] [57912807111] +12:02:56 [ 70] [ 3] [001] +12:02:56 ============================================================================ +12:02:56 + + +waiting on router queue for slot.... +12:02:56 ============================================================================ +12:02:56 Slot Id : <79> +12:02:56 Transaction Type : RESPONSE +12:02:56 Received From : +12:02:56 ============================================================================ +12:02:56 FNo. Len. Field Value +12:02:56 ============================================================================ +12:02:56 [ 1] [ 4] [0810] +12:02:56 [ 7] [ 10] [0320050256] +12:02:56 [ 11] [ 6] [807111] +12:02:56 [ 15] [ 4] [0320] +12:02:56 [ 37] [ 12] [57912807111] +12:02:56 [ 39] [ 2] [00] +12:02:56 [ 70] [ 3] [001] +12:02:56 ============================================================================ +12:02:56 Sending to : +12:02:56 ============================================================================ +12:02:56 + + +waiting on router queue for slot.... +12:03:07 ============================================================================ +12:03:07 Slot Id : <5> +12:03:07 Transaction Type : REQUEST +12:03:07 Received From : +12:03:07 ============================================================================ +12:03:07 FNo. Len. Field Value +12:03:07 ============================================================================ +12:03:07 [ 1] [ 4] [0800] +12:03:07 [ 7] [ 10] [0320050214] +12:03:07 [ 11] [ 6] [156209] +12:03:07 [ 70] [ 3] [301] +12:03:07 ============================================================================ +12:03:07 + + +waiting on router queue for slot.... +12:03:07 Sending to : +12:03:07 ============================================================================ +12:03:07 ============================================================================ +12:03:07 Slot Id : <5> +12:03:07 Transaction Type : RESPONSE +12:03:07 Received From : +12:03:07 ============================================================================ +12:03:07 FNo. Len. Field Value +12:03:07 ============================================================================ +12:03:07 [ 1] [ 4] [0810] +12:03:07 [ 7] [ 10] [0320050214] +12:03:07 [ 11] [ 6] [156209] +12:03:07 [ 39] [ 2] [00] +12:03:07 [ 70] [ 3] [301] +12:03:07 ============================================================================ +12:03:07 Calculate Source COMM Id = 2 +12:03:07 ============================================================================ +12:03:07 + + +waiting on router queue for slot.... +12:03:19 ============================================================================ +12:03:19 Slot Id : <84> +12:03:19 Transaction Type : REQUEST +12:03:19 Received From : +12:03:19 ============================================================================ +12:03:19 FNo. Len. Field Value +12:03:19 ============================================================================ +12:03:19 [ 1] [ 4] [0800] +12:03:19 [ 7] [ 10] [0320050225] +12:03:19 [ 11] [ 6] [156210] +12:03:19 [ 70] [ 3] [301] +12:03:19 ============================================================================ +12:03:19 + + +waiting on router queue for slot.... +12:03:19 ============================================================================ +12:03:19 Slot Id : <67> +12:03:19 Transaction Type : REQUEST +12:03:19 Received From : +12:03:19 ============================================================================ +12:03:19 FNo. Len. Field Value +12:03:19 ============================================================================ +12:03:19 [ 1] [ 4] [0200] +12:03:19 [ 2] [ 16] [6213544001256111] +12:03:19 [ 3] [ 6] [010000] +12:03:19 [ 4] [ 12] [000030000000] +12:03:19 [ 7] [ 10] [0320120110] +12:03:19 [ 11] [ 6] [943090] +12:03:19 [ 12] [ 6] [120110] +12:03:19 [ 13] [ 4] [0320] +12:03:19 [ 15] [ 4] [0320] +12:03:19 [ 18] [ 4] [6011] +12:03:19 [ 19] [ 3] [418] +12:03:19 [ 22] [ 3] [021] +12:03:19 [ 25] [ 2] [01] +12:03:19 [ 28] [ 9] [D00002000] +12:03:19 [ 32] [ 6] [668899] +12:03:19 [ 35] [ 32] [6213544001256111=491212015611944] +12:03:19 Sending to : +12:03:19 [ 37] [ 12] [507901506358] +12:03:19 ============================================================================ +12:03:19 [ 41] [ 8] [03614001] +12:03:19 [ 42] [ 15] [APT ] +12:03:19 [ 43] [ 40] [ LAOVIET SHARE BORDER UNIT] +12:03:19 [ 49] [ 3] [418] +12:03:19 [ 52] [ 16] [A4DA63A71B83E51A] +12:03:19 ============================================================================ +12:03:19 + + +waiting on router queue for slot.... +12:03:19 ============================================================================ +12:03:19 Slot Id : <84> +12:03:19 Transaction Type : RESPONSE +12:03:19 Received From : +12:03:19 ============================================================================ +12:03:19 FNo. Len. Field Value +12:03:19 ============================================================================ +12:03:19 [ 1] [ 4] [0810] +12:03:19 [ 7] [ 10] [0320050225] +12:03:19 [ 11] [ 6] [156210] +12:03:19 [ 39] [ 2] [00] +12:03:19 [ 70] [ 3] [301] +12:03:19 ============================================================================ +12:03:19 Calculate Source COMM Id = 2 +12:03:19 ============================================================================ +12:03:19 Sending to : +12:03:19 ============================================================================ +12:03:19 + + +waiting on router queue for slot.... +12:03:19 Sending to : +12:03:19 ============================================================================ +12:03:20 ============================================================================ +12:03:20 Slot Id : <67> +12:03:20 Transaction Type : REQUEST +12:03:20 Received From : +12:03:20 ============================================================================ +12:03:20 FNo. Len. Field Value +12:03:20 ============================================================================ +12:03:20 [ 1] [ 4] [0200] +12:03:20 [ 2] [ 16] [6213544001256111] +12:03:20 [ 3] [ 6] [010000] +12:03:20 [ 4] [ 12] [000030000000] +12:03:20 [ 7] [ 10] [0320120110] +12:03:20 [ 11] [ 6] [943090] +12:03:20 [ 12] [ 6] [120110] +12:03:20 [ 13] [ 4] [0320] +12:03:20 [ 15] [ 4] [0320] +12:03:20 [ 18] [ 4] [6011] +12:03:20 [ 19] [ 3] [418] +12:03:20 [ 22] [ 3] [021] +12:03:20 [ 25] [ 2] [01] +12:03:20 [ 28] [ 9] [D00002000] +12:03:20 [ 32] [ 6] [668899] +12:03:20 [ 35] [ 32] [6213544001256111=491212015611944] +12:03:20 [ 37] [ 12] [507901506358] +12:03:20 [ 41] [ 8] [03614001] +12:03:20 [ 42] [ 15] [APT ] +12:03:20 [ 43] [ 40] [ LAOVIET SHARE BORDER UNIT] +12:03:20 [ 49] [ 3] [418] +12:03:20 [ 52] [ 16] [A4DA63A71B83E51A] +12:03:20 ============================================================================ +12:03:20 + + +waiting on router queue for slot.... +12:03:20 Sending to : +12:03:20 ============================================================================ +12:03:20 ============================================================================ +12:03:20 Slot Id : <67> +12:03:20 Transaction Type : REQUEST +12:03:20 Received From : +12:03:20 ============================================================================ +12:03:20 FNo. Len. Field Value +12:03:20 ============================================================================ +12:03:20 [ 1] [ 4] [0200] +12:03:20 [ 2] [ 16] [6213544001256111] +12:03:20 [ 3] [ 6] [010000] +12:03:20 [ 4] [ 12] [000030000000] +12:03:20 [ 7] [ 10] [0320120110] +12:03:20 [ 11] [ 6] [943090] +12:03:20 [ 12] [ 6] [120110] +12:03:20 [ 13] [ 4] [0320] +12:03:20 [ 15] [ 4] [0320] +12:03:20 [ 18] [ 4] [6011] +12:03:20 [ 19] [ 3] [418] +12:03:20 [ 22] [ 3] [021] +12:03:20 [ 25] [ 2] [01] +12:03:20 [ 28] [ 9] [D00002000] +12:03:20 [ 32] [ 6] [668899] +12:03:20 [ 35] [ 32] [6213544001256111=491212015611944] +12:03:20 [ 37] [ 12] [507901506358] +12:03:20 [ 41] [ 8] [03614001] +12:03:20 [ 42] [ 15] [APT ] +12:03:20 [ 43] [ 40] [ LAOVIET SHARE BORDER UNIT] +12:03:20 [ 49] [ 3] [418] +12:03:20 [ 52] [ 16] [DEA40E3759748664] +12:03:20 ============================================================================ +12:03:20 + + +waiting on router queue for slot.... +12:03:20 Sending to : <0> +12:03:20 ============================================================================ +12:03:20 ============================================================================ +12:03:20 Slot Id : <67> +12:03:20 Transaction Type : RESPONSE +12:03:20 Received From : +12:03:20 ============================================================================ +12:03:20 FNo. Len. Field Value +12:03:20 ============================================================================ +12:03:20 [ 1] [ 4] [0210] +12:03:20 [ 2] [ 16] [6213544001256111] +12:03:20 [ 3] [ 6] [010000] +12:03:20 [ 4] [ 12] [000030000000] +12:03:20 [ 7] [ 10] [0320120110] +12:03:20 [ 11] [ 6] [943090] +12:03:20 [ 12] [ 6] [120110] +12:03:20 [ 13] [ 4] [0320] +12:03:20 [ 15] [ 4] [0320] +12:03:20 [ 18] [ 4] [6011] +12:03:20 [ 19] [ 3] [418] +12:03:20 [ 32] [ 6] [668899] +12:03:20 [ 35] [ 32] [6213544001256111=491212015611944] +12:03:20 [ 37] [ 12] [507901506358] +12:03:20 [ 38] [ 6] [988641] +12:03:20 [ 39] [ 2] [00] +12:03:20 [ 41] [ 8] [03614001] +12:03:20 [ 49] [ 3] [418] +12:03:20 [ 54] [ 40] [0001418C0000061927140002418C000006192714] +12:03:20 ============================================================================ +12:03:20 Sending to : +12:03:20 ============================================================================ +12:03:20 + + +waiting on router queue for slot.... +12:03:22 ============================================================================ +12:03:22 Slot Id : <67> +12:03:22 Transaction Type : RESPONSE +12:03:22 Received From : +12:03:22 ============================================================================ +12:03:22 FNo. Len. Field Value +12:03:22 ============================================================================ +12:03:22 [ 1] [ 4] [0210] +12:03:22 [ 2] [ 16] [6213544001256111] +12:03:22 [ 3] [ 6] [010000] +12:03:22 [ 4] [ 12] [000030000000] +12:03:22 [ 7] [ 10] [0320120110] +12:03:22 [ 11] [ 6] [943090] +12:03:22 [ 12] [ 6] [120110] +12:03:22 [ 13] [ 4] [0320] +12:03:22 [ 15] [ 4] [0320] +12:03:22 [ 18] [ 4] [6011] +12:03:22 [ 19] [ 3] [418] +12:03:22 [ 32] [ 6] [668899] +12:03:22 [ 35] [ 32] [6213544001256111=491212015611944] +12:03:22 [ 37] [ 12] [507901506358] +12:03:22 [ 38] [ 6] [988641] +12:03:22 [ 39] [ 2] [00] +12:03:22 [ 41] [ 8] [03614001] +12:03:22 [ 49] [ 3] [418] +12:03:22 [ 54] [ 40] [0001418C0000061927140002418C000006192714] +12:03:22 ============================================================================ +12:03:22 Calculate Source COMM Id = 4 +12:03:22 ============================================================================ +12:03:22 + + +waiting on router queue for slot.... +12:03:22 ============================================================================ +12:03:22 Slot Id : <62> +12:03:22 Transaction Type : REQUEST +12:03:22 Received From : +12:03:22 ============================================================================ +12:03:22 FNo. Len. Field Value +12:03:22 ============================================================================ +12:03:22 [ 1] [ 4] [0200] +12:03:22 [ 2] [ 16] [6213545000958524] +12:03:22 [ 3] [ 6] [011000] +12:03:22 [ 4] [ 12] [000030000000] +12:03:22 [ 7] [ 10] [0320050228] +12:03:22 [ 11] [ 6] [268866] +12:03:22 [ 12] [ 6] [120228] +12:03:22 [ 13] [ 4] [0320] +12:03:22 [ 14] [ 4] [4912] +12:03:22 [ 15] [ 4] [0320] +12:03:22 [ 18] [ 4] [6011] +12:03:22 [ 19] [ 3] [418] +12:03:22 [ 22] [ 3] [021] +12:03:22 [ 25] [ 2] [01] +12:03:22 [ 28] [ 9] [D00002000] +12:03:22 [ 32] [ 6] [180893] +12:03:22 [ 35] [ 32] [6213545000958524=491212015852412] +12:03:22 [ 37] [ 12] [507905268866] +12:03:22 [ 41] [ 8] [0112CPBR] +12:03:22 [ 42] [ 15] [999999 ] +12:03:22 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +12:03:22 [ 49] [ 3] [418] +12:03:22 [ 52] [ 16] [AD1AA531DF7F3820] +12:03:22 ============================================================================ +12:03:22 + + +waiting on router queue for slot.... +12:03:22 Sending to : +12:03:22 ============================================================================ +12:03:22 Sending to : +12:03:22 ============================================================================ +12:03:23 ============================================================================ +12:03:23 Slot Id : <62> +12:03:23 Transaction Type : REQUEST +12:03:23 Received From : +12:03:23 ============================================================================ +12:03:23 FNo. Len. Field Value +12:03:23 ============================================================================ +12:03:23 [ 1] [ 4] [0200] +12:03:23 [ 2] [ 16] [6213545000958524] +12:03:23 [ 3] [ 6] [011000] +12:03:23 [ 4] [ 12] [000030000000] +12:03:23 [ 7] [ 10] [0320050228] +12:03:23 [ 11] [ 6] [268866] +12:03:23 [ 12] [ 6] [120228] +12:03:23 [ 13] [ 4] [0320] +12:03:23 [ 14] [ 4] [4912] +12:03:23 [ 15] [ 4] [0320] +12:03:23 [ 18] [ 4] [6011] +12:03:23 [ 19] [ 3] [418] +12:03:23 [ 22] [ 3] [021] +12:03:23 [ 25] [ 2] [01] +12:03:23 [ 28] [ 9] [D00002000] +12:03:23 [ 32] [ 6] [180893] +12:03:23 [ 35] [ 32] [6213545000958524=491212015852412] +12:03:23 [ 37] [ 12] [507905268866] +12:03:23 [ 41] [ 8] [0112CPBR] +12:03:23 [ 42] [ 15] [999999 ] +12:03:23 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +12:03:23 [ 49] [ 3] [418] +12:03:23 [ 52] [ 16] [AD1AA531DF7F3820] +12:03:23 ============================================================================ +12:03:23 + + +waiting on router queue for slot.... +12:03:23 Sending to : +12:03:23 ============================================================================ +12:03:23 ============================================================================ +12:03:23 Slot Id : <62> +12:03:23 Transaction Type : REQUEST +12:03:23 Received From : +12:03:23 ============================================================================ +12:03:23 FNo. Len. Field Value +12:03:23 ============================================================================ +12:03:23 [ 1] [ 4] [0200] +12:03:23 [ 2] [ 16] [6213545000958524] +12:03:23 [ 3] [ 6] [011000] +12:03:23 [ 4] [ 12] [000030000000] +12:03:23 [ 7] [ 10] [0320050228] +12:03:23 [ 11] [ 6] [268866] +12:03:23 [ 12] [ 6] [120228] +12:03:23 [ 13] [ 4] [0320] +12:03:23 [ 14] [ 4] [4912] +12:03:23 [ 15] [ 4] [0320] +12:03:23 [ 18] [ 4] [6011] +12:03:23 [ 19] [ 3] [418] +12:03:23 [ 22] [ 3] [021] +12:03:23 [ 25] [ 2] [01] +12:03:23 [ 28] [ 9] [D00002000] +12:03:23 [ 32] [ 6] [180893] +12:03:23 [ 35] [ 32] [6213545000958524=491212015852412] +12:03:23 [ 37] [ 12] [507905268866] +12:03:23 [ 41] [ 8] [0112CPBR] +12:03:23 [ 42] [ 15] [999999 ] +12:03:23 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +12:03:23 [ 49] [ 3] [418] +12:03:23 [ 52] [ 16] [079A2E90B5DC3003] +12:03:23 ============================================================================ +12:03:23 + + +waiting on router queue for slot.... +12:03:23 Sending to : <0> +12:03:23 ============================================================================ +12:03:23 ============================================================================ +12:03:23 Slot Id : <39> +12:03:23 Transaction Type : REQUEST +12:03:23 Received From : +12:03:23 ============================================================================ +12:03:23 FNo. Len. Field Value +12:03:23 ============================================================================ +12:03:23 [ 1] [ 4] [0200] +12:03:23 [ 2] [ 16] [6213544001904520] +12:03:23 [ 3] [ 6] [010000] +12:03:23 [ 4] [ 12] [000020000000] +12:03:23 [ 7] [ 10] [0320120114] +12:03:23 [ 11] [ 6] [943097] +12:03:23 [ 12] [ 6] [120114] +12:03:23 [ 13] [ 4] [0320] +12:03:23 [ 15] [ 4] [0320] +12:03:23 [ 18] [ 4] [6011] +12:03:23 [ 19] [ 3] [418] +12:03:23 [ 22] [ 3] [021] +12:03:23 [ 25] [ 2] [01] +12:03:23 [ 28] [ 9] [D00002000] +12:03:23 [ 32] [ 6] [668899] +12:03:23 [ 35] [ 32] [6213544001904520=491212010452233] +12:03:23 [ 37] [ 12] [507901972489] +12:03:23 [ 41] [ 8] [03012003] +12:03:23 [ 42] [ 15] [APT ] +12:03:23 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +12:03:23 [ 49] [ 3] [418] +12:03:23 [ 52] [ 16] [DF4A27FF5B25A199] +12:03:23 ============================================================================ +12:03:23 + + +waiting on router queue for slot.... +12:03:23 Sending to : +12:03:23 ============================================================================ +12:03:23 Sending to : +12:03:23 ============================================================================ +12:03:23 ============================================================================ +12:03:23 Slot Id : <62> +12:03:23 Transaction Type : RESPONSE +12:03:23 Received From : +12:03:23 ============================================================================ +12:03:23 FNo. Len. Field Value +12:03:23 ============================================================================ +12:03:23 [ 1] [ 4] [0210] +12:03:23 [ 2] [ 16] [6213545000958524] +12:03:23 [ 3] [ 6] [011000] +12:03:23 [ 4] [ 12] [000030000000] +12:03:23 [ 7] [ 10] [0320050228] +12:03:23 [ 11] [ 6] [268866] +12:03:23 [ 12] [ 6] [120228] +12:03:23 [ 13] [ 4] [0320] +12:03:23 [ 15] [ 4] [0320] +12:03:23 [ 18] [ 4] [6011] +12:03:23 [ 19] [ 3] [418] +12:03:23 [ 32] [ 6] [180893] +12:03:23 [ 35] [ 32] [6213545000958524=491212015852412] +12:03:23 [ 37] [ 12] [507905268866] +12:03:23 [ 38] [ 6] [812994] +12:03:23 [ 39] [ 2] [00] +12:03:23 [ 41] [ 8] [0112CPBR] +12:03:23 [ 49] [ 3] [418] +12:03:23 [ 54] [ 40] [1001418C0003062985481002418C000306298548] +12:03:23 ============================================================================ +12:03:23 Sending to : +12:03:23 ============================================================================ +12:03:23 + + +waiting on router queue for slot.... +12:03:24 ============================================================================ +12:03:24 Slot Id : <39> +12:03:24 Transaction Type : REQUEST +12:03:24 Received From : +12:03:24 ============================================================================ +12:03:24 FNo. Len. Field Value +12:03:24 ============================================================================ +12:03:24 [ 1] [ 4] [0200] +12:03:24 [ 2] [ 16] [6213544001904520] +12:03:24 [ 3] [ 6] [010000] +12:03:24 [ 4] [ 12] [000020000000] +12:03:24 [ 7] [ 10] [0320120114] +12:03:24 [ 11] [ 6] [943097] +12:03:24 [ 12] [ 6] [120114] +12:03:24 [ 13] [ 4] [0320] +12:03:24 [ 15] [ 4] [0320] +12:03:24 [ 18] [ 4] [6011] +12:03:24 [ 19] [ 3] [418] +12:03:24 [ 22] [ 3] [021] +12:03:24 [ 25] [ 2] [01] +12:03:24 [ 28] [ 9] [D00002000] +12:03:24 [ 32] [ 6] [668899] +12:03:24 [ 35] [ 32] [6213544001904520=491212010452233] +12:03:24 [ 37] [ 12] [507901972489] +12:03:24 [ 41] [ 8] [03012003] +12:03:24 [ 42] [ 15] [APT ] +12:03:24 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +12:03:24 [ 49] [ 3] [418] +12:03:24 [ 52] [ 16] [DF4A27FF5B25A199] +12:03:24 ============================================================================ +12:03:24 + + +waiting on router queue for slot.... +12:03:24 Sending to : +12:03:24 ============================================================================ +12:03:24 ============================================================================ +12:03:24 Slot Id : <39> +12:03:24 Transaction Type : REQUEST +12:03:24 Received From : +12:03:24 ============================================================================ +12:03:24 FNo. Len. Field Value +12:03:24 ============================================================================ +12:03:24 [ 1] [ 4] [0200] +12:03:24 [ 2] [ 16] [6213544001904520] +12:03:24 [ 3] [ 6] [010000] +12:03:24 [ 4] [ 12] [000020000000] +12:03:24 [ 7] [ 10] [0320120114] +12:03:24 [ 11] [ 6] [943097] +12:03:24 [ 12] [ 6] [120114] +12:03:24 [ 13] [ 4] [0320] +12:03:24 [ 15] [ 4] [0320] +12:03:24 [ 18] [ 4] [6011] +12:03:24 [ 19] [ 3] [418] +12:03:24 [ 22] [ 3] [021] +12:03:24 [ 25] [ 2] [01] +12:03:24 [ 28] [ 9] [D00002000] +12:03:24 [ 32] [ 6] [668899] +12:03:24 [ 35] [ 32] [6213544001904520=491212010452233] +12:03:24 [ 37] [ 12] [507901972489] +12:03:24 [ 41] [ 8] [03012003] +12:03:24 [ 42] [ 15] [APT ] +12:03:24 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +12:03:24 [ 49] [ 3] [418] +12:03:24 [ 52] [ 16] [C6061180B1813278] +12:03:24 ============================================================================ +12:03:24 + + +waiting on router queue for slot.... +12:03:24 Sending to : <0> +12:03:24 ============================================================================ +12:03:25 ============================================================================ +12:03:25 Slot Id : <39> +12:03:25 Transaction Type : RESPONSE +12:03:25 Received From : +12:03:25 ============================================================================ +12:03:25 FNo. Len. Field Value +12:03:25 ============================================================================ +12:03:25 [ 1] [ 4] [0210] +12:03:25 [ 2] [ 16] [6213544001904520] +12:03:25 [ 3] [ 6] [010000] +12:03:25 [ 4] [ 12] [000020000000] +12:03:25 [ 7] [ 10] [0320120114] +12:03:25 [ 11] [ 6] [943097] +12:03:25 [ 12] [ 6] [120114] +12:03:25 [ 13] [ 4] [0320] +12:03:25 [ 15] [ 4] [0320] +12:03:25 [ 18] [ 4] [6011] +12:03:25 [ 19] [ 3] [418] +12:03:25 [ 32] [ 6] [668899] +12:03:25 [ 35] [ 32] [6213544001904520=491212010452233] +12:03:25 [ 37] [ 12] [507901972489] +12:03:25 [ 38] [ 6] [759249] +12:03:25 [ 39] [ 2] [00] +12:03:25 [ 41] [ 8] [03012003] +12:03:25 [ 49] [ 3] [418] +12:03:25 [ 54] [ 40] [0001418C0000055259660002418C000005525966] +12:03:25 ============================================================================ +12:03:25 Sending to : +12:03:25 ============================================================================ +12:03:25 + + +waiting on router queue for slot.... +12:03:25 ============================================================================ +12:03:25 Slot Id : <62> +12:03:25 Transaction Type : RESPONSE +12:03:25 Received From : +12:03:25 ============================================================================ +12:03:25 FNo. Len. Field Value +12:03:25 ============================================================================ +12:03:25 [ 1] [ 4] [0210] +12:03:25 [ 2] [ 16] [6213545000958524] +12:03:25 [ 3] [ 6] [011000] +12:03:25 [ 4] [ 12] [000030000000] +12:03:25 [ 7] [ 10] [0320050228] +12:03:25 [ 11] [ 6] [268866] +12:03:25 [ 12] [ 6] [120228] +12:03:25 [ 13] [ 4] [0320] +12:03:25 [ 15] [ 4] [0320] +12:03:25 [ 18] [ 4] [6011] +12:03:25 [ 19] [ 3] [418] +12:03:25 [ 32] [ 6] [180893] +12:03:25 [ 35] [ 32] [6213545000958524=491212015852412] +12:03:25 [ 37] [ 12] [507905268866] +12:03:25 [ 38] [ 6] [812994] +12:03:25 [ 39] [ 2] [00] +12:03:25 [ 41] [ 8] [0112CPBR] +12:03:25 [ 49] [ 3] [418] +12:03:25 [ 54] [ 40] [1001418C0003062985481002418C000306298548] +12:03:25 ============================================================================ +12:03:25 Calculate Source COMM Id = 2 +12:03:25 ============================================================================ +12:03:25 + + +waiting on router queue for slot.... +12:03:27 ============================================================================ +12:03:27 Slot Id : <39> +12:03:27 Transaction Type : RESPONSE +12:03:27 Received From : +12:03:27 ============================================================================ +12:03:27 FNo. Len. Field Value +12:03:27 ============================================================================ +12:03:27 [ 1] [ 4] [0210] +12:03:27 [ 2] [ 16] [6213544001904520] +12:03:27 [ 3] [ 6] [010000] +12:03:27 [ 4] [ 12] [000020000000] +12:03:27 [ 7] [ 10] [0320120114] +12:03:27 [ 11] [ 6] [943097] +12:03:27 [ 12] [ 6] [120114] +12:03:27 [ 13] [ 4] [0320] +12:03:27 [ 15] [ 4] [0320] +12:03:27 [ 18] [ 4] [6011] +12:03:27 [ 19] [ 3] [418] +12:03:27 [ 32] [ 6] [668899] +12:03:27 [ 35] [ 32] [6213544001904520=491212010452233] +12:03:27 [ 37] [ 12] [507901972489] +12:03:27 [ 38] [ 6] [759249] +12:03:27 [ 39] [ 2] [00] +12:03:27 [ 41] [ 8] [03012003] +12:03:27 [ 49] [ 3] [418] +12:03:27 [ 54] [ 40] [0001418C0000055259660002418C000005525966] +12:03:27 ============================================================================ +12:03:27 Calculate Source COMM Id = 4 +12:03:27 ============================================================================ +12:03:27 + + +waiting on router queue for slot.... +12:03:35 ============================================================================ +12:03:35 Slot Id : <51> +12:03:35 Transaction Type : REQUEST +12:03:35 Received From : +12:03:35 ============================================================================ +12:03:35 FNo. Len. Field Value +12:03:35 ============================================================================ +12:03:35 [ 1] [ 4] [0200] +12:03:35 [ 2] [ 16] [6213541000679236] +12:03:35 [ 3] [ 6] [301000] +12:03:35 [ 4] [ 12] [000000000000] +12:03:35 [ 7] [ 10] [0320120126] +12:03:35 [ 11] [ 6] [943110] +12:03:35 [ 12] [ 6] [120126] +12:03:35 [ 13] [ 4] [0320] +12:03:35 [ 15] [ 4] [0320] +12:03:35 [ 18] [ 4] [6011] +12:03:35 [ 19] [ 3] [418] +12:03:35 [ 22] [ 3] [021] +12:03:35 [ 25] [ 2] [01] +12:03:35 [ 28] [ 9] [D00000000] +12:03:35 [ 32] [ 6] [668899] +12:03:35 [ 35] [ 32] [6213541000679236=491212017923835] +12:03:35 [ 37] [ 12] [507900996162] +12:03:35 [ 41] [ 8] [03304001] +12:03:35 [ 42] [ 15] [APT ] +12:03:35 [ 43] [ 40] [ TONEPHEUNG UNIT TONEPHEUN] +12:03:35 [ 49] [ 3] [418] +12:03:35 [ 52] [ 16] [381AD545EA03A6B0] +12:03:35 ============================================================================ +12:03:35 + + +waiting on router queue for slot.... +12:03:35 Sending to : +12:03:35 ============================================================================ +12:03:35 Sending to : +12:03:35 ============================================================================ +12:03:35 ============================================================================ +12:03:35 Slot Id : <51> +12:03:35 Transaction Type : REQUEST +12:03:35 Received From : +12:03:35 ============================================================================ +12:03:35 FNo. Len. Field Value +12:03:35 ============================================================================ +12:03:35 [ 1] [ 4] [0200] +12:03:35 [ 2] [ 16] [6213541000679236] +12:03:35 [ 3] [ 6] [301000] +12:03:35 [ 4] [ 12] [000000000000] +12:03:35 [ 7] [ 10] [0320120126] +12:03:35 [ 11] [ 6] [943110] +12:03:35 [ 12] [ 6] [120126] +12:03:35 [ 13] [ 4] [0320] +12:03:35 [ 15] [ 4] [0320] +12:03:35 [ 18] [ 4] [6011] +12:03:35 [ 19] [ 3] [418] +12:03:35 [ 22] [ 3] [021] +12:03:35 [ 25] [ 2] [01] +12:03:35 [ 28] [ 9] [D00000000] +12:03:35 [ 32] [ 6] [668899] +12:03:35 [ 35] [ 32] [6213541000679236=491212017923835] +12:03:35 [ 37] [ 12] [507900996162] +12:03:35 [ 41] [ 8] [03304001] +12:03:35 [ 42] [ 15] [APT ] +12:03:35 [ 43] [ 40] [ TONEPHEUNG UNIT TONEPHEUN] +12:03:35 [ 49] [ 3] [418] +12:03:35 [ 52] [ 16] [381AD545EA03A6B0] +12:03:35 ============================================================================ +12:03:35 + + +waiting on router queue for slot.... +12:03:35 Sending to : +12:03:35 ============================================================================ +12:03:35 ============================================================================ +12:03:35 Slot Id : <51> +12:03:35 Transaction Type : REQUEST +12:03:35 Received From : +12:03:35 ============================================================================ +12:03:35 FNo. Len. Field Value +12:03:35 ============================================================================ +12:03:35 [ 1] [ 4] [0200] +12:03:35 [ 2] [ 16] [6213541000679236] +12:03:35 [ 3] [ 6] [301000] +12:03:35 [ 4] [ 12] [000000000000] +12:03:35 [ 7] [ 10] [0320120126] +12:03:35 [ 11] [ 6] [943110] +12:03:35 [ 12] [ 6] [120126] +12:03:35 [ 13] [ 4] [0320] +12:03:35 [ 15] [ 4] [0320] +12:03:35 [ 18] [ 4] [6011] +12:03:35 [ 19] [ 3] [418] +12:03:35 [ 22] [ 3] [021] +12:03:35 [ 25] [ 2] [01] +12:03:35 [ 28] [ 9] [D00000000] +12:03:35 [ 32] [ 6] [668899] +12:03:35 [ 35] [ 32] [6213541000679236=491212017923835] +12:03:35 [ 37] [ 12] [507900996162] +12:03:35 [ 41] [ 8] [03304001] +12:03:35 [ 42] [ 15] [APT ] +12:03:35 [ 43] [ 40] [ TONEPHEUNG UNIT TONEPHEUN] +12:03:35 [ 49] [ 3] [418] +12:03:35 [ 52] [ 16] [653B8D2F13AECD0B] +12:03:35 ============================================================================ +12:03:35 + + +waiting on router queue for slot.... +12:03:35 Sending to : <0> +12:03:35 ============================================================================ +12:03:36 ============================================================================ +12:03:36 Slot Id : <51> +12:03:36 Transaction Type : RESPONSE +12:03:36 Received From : +12:03:36 ============================================================================ +12:03:36 FNo. Len. Field Value +12:03:36 ============================================================================ +12:03:36 [ 1] [ 4] [0210] +12:03:36 [ 2] [ 16] [6213541000679236] +12:03:36 [ 3] [ 6] [301000] +12:03:36 [ 4] [ 12] [000000000000] +12:03:36 [ 7] [ 10] [0320120126] +12:03:36 [ 11] [ 6] [943110] +12:03:36 [ 12] [ 6] [120126] +12:03:36 [ 13] [ 4] [0320] +12:03:36 [ 15] [ 4] [0320] +12:03:36 [ 18] [ 4] [6011] +12:03:36 [ 19] [ 3] [418] +12:03:36 [ 32] [ 6] [668899] +12:03:36 [ 35] [ 32] [6213541000679236=491212017923835] +12:03:36 [ 37] [ 12] [507900996162] +12:03:36 [ 38] [ 6] [377212] +12:03:36 [ 39] [ 2] [00] +12:03:36 [ 41] [ 8] [03304001] +12:03:36 [ 49] [ 3] [418] +12:03:36 [ 54] [ 40] [1001418C0000959657791002418C000095965779] +12:03:36 ============================================================================ +12:03:36 Sending to : +12:03:36 ============================================================================ +12:03:36 + + +waiting on router queue for slot.... +12:03:37 ============================================================================ +12:03:37 Slot Id : <51> +12:03:37 Transaction Type : RESPONSE +12:03:37 Received From : +12:03:37 ============================================================================ +12:03:37 FNo. Len. Field Value +12:03:37 ============================================================================ +12:03:37 [ 1] [ 4] [0210] +12:03:37 [ 2] [ 16] [6213541000679236] +12:03:37 [ 3] [ 6] [301000] +12:03:37 [ 4] [ 12] [000000000000] +12:03:37 [ 7] [ 10] [0320120126] +12:03:37 [ 11] [ 6] [943110] +12:03:37 [ 12] [ 6] [120126] +12:03:37 [ 13] [ 4] [0320] +12:03:37 [ 15] [ 4] [0320] +12:03:37 [ 18] [ 4] [6011] +12:03:37 [ 19] [ 3] [418] +12:03:37 [ 32] [ 6] [668899] +12:03:37 [ 35] [ 32] [6213541000679236=491212017923835] +12:03:37 [ 37] [ 12] [507900996162] +12:03:37 [ 38] [ 6] [377212] +12:03:37 [ 39] [ 2] [00] +12:03:37 [ 41] [ 8] [03304001] +12:03:37 [ 49] [ 3] [418] +12:03:37 [ 54] [ 40] [1001418C0000959657791002418C000095965779] +12:03:37 ============================================================================ +12:03:37 Calculate Source COMM Id = 4 +12:03:37 ============================================================================ +12:03:37 + + +waiting on router queue for slot.... +12:03:42 ============================================================================ +12:03:42 Slot Id : <99> +12:03:42 Transaction Type : REQUEST +12:03:42 Received From : +12:03:42 ============================================================================ +12:03:42 FNo. Len. Field Value +12:03:42 ============================================================================ +12:03:42 [ 1] [ 4] [0800] +12:03:42 [ 7] [ 10] [0320050249] +12:03:42 [ 11] [ 6] [156211] +12:03:42 [ 70] [ 3] [301] +12:03:42 ============================================================================ +12:03:42 + + +waiting on router queue for slot.... +12:03:42 Sending to : +12:03:42 ============================================================================ +12:03:42 ============================================================================ +12:03:42 Slot Id : <99> +12:03:42 Transaction Type : RESPONSE +12:03:42 Received From : +12:03:42 ============================================================================ +12:03:42 FNo. Len. Field Value +12:03:42 ============================================================================ +12:03:42 [ 1] [ 4] [0810] +12:03:42 [ 7] [ 10] [0320050249] +12:03:42 [ 11] [ 6] [156211] +12:03:42 [ 39] [ 2] [00] +12:03:42 [ 70] [ 3] [301] +12:03:42 ============================================================================ +12:03:42 Calculate Source COMM Id = 2 +12:03:42 ============================================================================ +12:03:42 + + +waiting on router queue for slot.... +12:03:57 ============================================================================ +12:03:57 Slot Id : <82> +12:03:57 Transaction Type : REQUEST +12:03:57 Received From : +12:03:57 ============================================================================ +12:03:57 FNo. Len. Field Value +12:03:57 ============================================================================ +12:03:57 [ 1] [ 4] [0200] +12:03:57 [ 2] [ 16] [6213545000905970] +12:03:57 [ 3] [ 6] [010000] +12:03:57 [ 4] [ 12] [000050000000] +12:03:57 [ 7] [ 10] [0320050304] +12:03:57 [ 11] [ 6] [268871] +12:03:57 [ 12] [ 6] [120304] +12:03:57 [ 13] [ 4] [0320] +12:03:57 [ 14] [ 4] [4912] +12:03:57 [ 15] [ 4] [0320] +12:03:57 [ 18] [ 4] [6011] +12:03:57 [ 19] [ 3] [418] +12:03:57 [ 22] [ 3] [021] +12:03:57 [ 25] [ 2] [01] +12:03:57 [ 28] [ 9] [D00002000] +12:03:57 [ 32] [ 6] [180893] +12:03:57 [ 35] [ 32] [6213545000905970=491212010597902] +12:03:57 [ 37] [ 12] [507905268871] +12:03:57 [ 41] [ 8] [0465UDNM] +12:03:57 [ 42] [ 15] [999999 ] +12:03:57 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:03:57 [ 49] [ 3] [418] +12:03:57 [ 52] [ 16] [5C765385F311A3E4] +12:03:57 ============================================================================ +12:03:57 + + +waiting on router queue for slot.... +12:03:57 Sending to : +12:03:57 ============================================================================ +12:03:57 Sending to : +12:03:57 ============================================================================ +12:03:57 ============================================================================ +12:03:57 Slot Id : <64> +12:03:57 Transaction Type : REQUEST +12:03:57 Received From : +12:03:57 ============================================================================ +12:03:57 FNo. Len. Field Value +12:03:57 ============================================================================ +12:03:57 [ 1] [ 4] [0800] +12:03:57 [ 7] [ 10] [0320050305] +12:03:57 [ 11] [ 6] [156212] +12:03:57 [ 70] [ 3] [301] +12:03:57 ============================================================================ +12:03:57 + + +waiting on router queue for slot.... +12:03:57 Sending to : +12:03:57 ============================================================================ +12:03:57 ============================================================================ +12:03:57 Slot Id : <64> +12:03:57 Transaction Type : RESPONSE +12:03:57 Received From : +12:03:57 ============================================================================ +12:03:57 FNo. Len. Field Value +12:03:57 ============================================================================ +12:03:57 [ 1] [ 4] [0810] +12:03:57 [ 7] [ 10] [0320050305] +12:03:57 [ 11] [ 6] [156212] +12:03:57 [ 39] [ 2] [00] +12:03:57 [ 70] [ 3] [301] +12:03:57 ============================================================================ +12:03:57 Calculate Source COMM Id = 2 +12:03:57 ============================================================================ +12:03:57 + + +waiting on router queue for slot.... +12:03:57 ============================================================================ +12:03:57 Slot Id : <82> +12:03:57 Transaction Type : REQUEST +12:03:57 Received From : +12:03:57 ============================================================================ +12:03:57 FNo. Len. Field Value +12:03:57 ============================================================================ +12:03:57 [ 1] [ 4] [0200] +12:03:57 [ 2] [ 16] [6213545000905970] +12:03:57 [ 3] [ 6] [010000] +12:03:57 [ 4] [ 12] [000050000000] +12:03:57 [ 7] [ 10] [0320050304] +12:03:57 [ 11] [ 6] [268871] +12:03:57 [ 12] [ 6] [120304] +12:03:57 [ 13] [ 4] [0320] +12:03:57 [ 14] [ 4] [4912] +12:03:57 [ 15] [ 4] [0320] +12:03:57 [ 18] [ 4] [6011] +12:03:57 [ 19] [ 3] [418] +12:03:57 [ 22] [ 3] [021] +12:03:57 [ 25] [ 2] [01] +12:03:57 [ 28] [ 9] [D00002000] +12:03:57 [ 32] [ 6] [180893] +12:03:57 [ 35] [ 32] [6213545000905970=491212010597902] +12:03:57 [ 37] [ 12] [507905268871] +12:03:57 [ 41] [ 8] [0465UDNM] +12:03:57 [ 42] [ 15] [999999 ] +12:03:57 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:03:57 [ 49] [ 3] [418] +12:03:57 [ 52] [ 16] [5C765385F311A3E4] +12:03:57 ============================================================================ +12:03:57 + + +waiting on router queue for slot.... +12:03:57 Sending to : +12:03:57 ============================================================================ +12:03:57 ============================================================================ +12:03:57 Slot Id : <82> +12:03:57 Transaction Type : REQUEST +12:03:57 Received From : +12:03:57 ============================================================================ +12:03:57 FNo. Len. Field Value +12:03:57 ============================================================================ +12:03:57 [ 1] [ 4] [0200] +12:03:57 [ 2] [ 16] [6213545000905970] +12:03:57 [ 3] [ 6] [010000] +12:03:57 [ 4] [ 12] [000050000000] +12:03:57 [ 7] [ 10] [0320050304] +12:03:57 [ 11] [ 6] [268871] +12:03:57 [ 12] [ 6] [120304] +12:03:57 [ 13] [ 4] [0320] +12:03:57 [ 14] [ 4] [4912] +12:03:57 [ 15] [ 4] [0320] +12:03:57 [ 18] [ 4] [6011] +12:03:57 [ 19] [ 3] [418] +12:03:57 [ 22] [ 3] [021] +12:03:57 [ 25] [ 2] [01] +12:03:57 [ 28] [ 9] [D00002000] +12:03:57 [ 32] [ 6] [180893] +12:03:57 [ 35] [ 32] [6213545000905970=491212010597902] +12:03:57 [ 37] [ 12] [507905268871] +12:03:57 [ 41] [ 8] [0465UDNM] +12:03:57 [ 42] [ 15] [999999 ] +12:03:57 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:03:57 [ 49] [ 3] [418] +12:03:57 [ 52] [ 16] [DB79E1282DB1B974] +12:03:57 ============================================================================ +12:03:57 + + +waiting on router queue for slot.... +12:03:57 Sending to : <0> +12:03:57 ============================================================================ +12:03:58 ============================================================================ +12:03:58 Slot Id : <82> +12:03:58 Transaction Type : RESPONSE +12:03:58 Received From : +12:03:58 ============================================================================ +12:03:58 FNo. Len. Field Value +12:03:58 ============================================================================ +12:03:58 [ 1] [ 4] [0210] +12:03:58 [ 2] [ 16] [6213545000905970] +12:03:58 [ 3] [ 6] [010000] +12:03:58 [ 4] [ 12] [000050000000] +12:03:58 [ 7] [ 10] [0320050304] +12:03:58 [ 11] [ 6] [268871] +12:03:58 [ 12] [ 6] [120304] +12:03:58 [ 13] [ 4] [0320] +12:03:58 [ 15] [ 4] [0320] +12:03:58 [ 18] [ 4] [6011] +12:03:58 [ 19] [ 3] [418] +12:03:58 [ 32] [ 6] [180893] +12:03:58 [ 35] [ 32] [6213545000905970=491212010597902] +12:03:58 [ 37] [ 12] [507905268871] +12:03:58 [ 38] [ 6] [232611] +12:03:58 [ 39] [ 2] [00] +12:03:58 [ 41] [ 8] [0465UDNM] +12:03:58 [ 49] [ 3] [418] +12:03:58 [ 54] [ 40] [0001418C0004949558220002418C000494955822] +12:03:58 ============================================================================ +12:03:58 Sending to : +12:03:58 ============================================================================ +12:03:58 + + +waiting on router queue for slot.... +12:03:58 ============================================================================ +12:03:58 Slot Id : <56> +12:03:58 Transaction Type : REQUEST +12:03:58 Received From : +12:03:58 ============================================================================ +12:03:58 FNo. Len. Field Value +12:03:58 ============================================================================ +12:03:58 [ 1] [ 4] [0800] +12:03:58 [ 2] [ 5] [02531] +12:03:58 [ 3] [ 6] [579128] +12:03:58 [ 7] [ 10] [0320050358] +12:03:58 [ 11] [ 6] [807112] +12:03:58 [ 15] [ 10] [0320050358] +12:03:58 [ 37] [ 11] [57912807112] +12:03:58 [ 70] [ 3] [001] +12:03:58 ============================================================================ +12:03:58 + + +waiting on router queue for slot.... +12:03:58 ============================================================================ +12:03:58 Slot Id : <56> +12:03:58 Transaction Type : RESPONSE +12:03:58 Received From : +12:03:58 ============================================================================ +12:03:58 FNo. Len. Field Value +12:03:58 ============================================================================ +12:03:58 [ 1] [ 4] [0810] +12:03:58 [ 7] [ 10] [0320050358] +12:03:58 [ 11] [ 6] [807112] +12:03:58 [ 15] [ 4] [0320] +12:03:58 [ 37] [ 12] [57912807112] +12:03:58 [ 39] [ 2] [00] +12:03:58 [ 70] [ 3] [001] +12:03:58 ============================================================================ +12:03:58 Sending to : +12:03:58 ============================================================================ +12:03:58 + + +waiting on router queue for slot.... +12:03:59 ============================================================================ +12:03:59 Slot Id : <82> +12:03:59 Transaction Type : RESPONSE +12:03:59 Received From : +12:03:59 ============================================================================ +12:03:59 FNo. Len. Field Value +12:03:59 ============================================================================ +12:03:59 [ 1] [ 4] [0210] +12:03:59 [ 2] [ 16] [6213545000905970] +12:03:59 [ 3] [ 6] [010000] +12:03:59 [ 4] [ 12] [000050000000] +12:03:59 [ 7] [ 10] [0320050304] +12:03:59 [ 11] [ 6] [268871] +12:03:59 [ 12] [ 6] [120304] +12:03:59 [ 13] [ 4] [0320] +12:03:59 [ 15] [ 4] [0320] +12:03:59 [ 18] [ 4] [6011] +12:03:59 [ 19] [ 3] [418] +12:03:59 [ 32] [ 6] [180893] +12:03:59 [ 35] [ 32] [6213545000905970=491212010597902] +12:03:59 [ 37] [ 12] [507905268871] +12:03:59 [ 38] [ 6] [232611] +12:03:59 [ 39] [ 2] [00] +12:03:59 [ 41] [ 8] [0465UDNM] +12:03:59 [ 49] [ 3] [418] +12:03:59 [ 54] [ 40] [0001418C0004949558220002418C000494955822] +12:03:59 ============================================================================ +12:03:59 Calculate Source COMM Id = 2 +12:03:59 ============================================================================ +12:03:59 + + +waiting on router queue for slot.... +12:04:06 ============================================================================ +12:04:06 Slot Id : <93> +12:04:06 Transaction Type : REQUEST +12:04:06 Received From : +12:04:06 ============================================================================ +12:04:06 FNo. Len. Field Value +12:04:06 ============================================================================ +12:04:06 [ 1] [ 4] [0800] +12:04:06 [ 7] [ 10] [0320050402] +12:04:06 [ 11] [ 6] [061223] +12:04:06 [ 37] [ 12] [507912061223] +12:04:06 [ 70] [ 3] [001] +12:04:06 ============================================================================ +12:04:06 + + +waiting on router queue for slot.... +12:04:06 Sending to : +12:04:06 ============================================================================ +12:04:06 ============================================================================ +12:04:06 Slot Id : <93> +12:04:06 Transaction Type : RESPONSE +12:04:06 Received From : +12:04:06 ============================================================================ +12:04:06 FNo. Len. Field Value +12:04:06 ============================================================================ +12:04:06 [ 1] [ 4] [0810] +12:04:06 [ 7] [ 10] [0320050402] +12:04:06 [ 11] [ 6] [061223] +12:04:06 [ 37] [ 12] [507912061223] +12:04:06 [ 39] [ 2] [00] +12:04:06 [ 70] [ 3] [001] +12:04:06 ============================================================================ +12:04:06 Calculate Source COMM Id = 0 +12:04:06 ============================================================================ +12:04:06 + + +waiting on router queue for slot.... +12:04:13 ============================================================================ +12:04:13 Slot Id : <100> +12:04:13 Transaction Type : REQUEST +12:04:13 Received From : +12:04:13 ============================================================================ +12:04:13 FNo. Len. Field Value +12:04:13 ============================================================================ +12:04:13 [ 1] [ 4] [0800] +12:04:13 [ 7] [ 10] [0320050321] +12:04:13 [ 11] [ 6] [156213] +12:04:13 [ 70] [ 3] [301] +12:04:13 ============================================================================ +12:04:13 + + +waiting on router queue for slot.... +12:04:13 Sending to : +12:04:13 ============================================================================ +12:04:13 ============================================================================ +12:04:13 Slot Id : <100> +12:04:13 Transaction Type : RESPONSE +12:04:13 Received From : +12:04:13 ============================================================================ +12:04:13 FNo. Len. Field Value +12:04:13 ============================================================================ +12:04:13 [ 1] [ 4] [0810] +12:04:13 [ 7] [ 10] [0320050321] +12:04:13 [ 11] [ 6] [156213] +12:04:13 [ 39] [ 2] [00] +12:04:13 [ 70] [ 3] [301] +12:04:13 ============================================================================ +12:04:13 Calculate Source COMM Id = 2 +12:04:13 ============================================================================ +12:04:13 + + +waiting on router queue for slot.... +12:04:23 ============================================================================ +12:04:23 Slot Id : <91> +12:04:23 Transaction Type : REQUEST +12:04:23 Received From : +12:04:23 ============================================================================ +12:04:23 FNo. Len. Field Value +12:04:23 ============================================================================ +12:04:23 [ 1] [ 4] [0800] +12:04:23 [ 7] [ 10] [0320050331] +12:04:23 [ 11] [ 6] [156214] +12:04:23 [ 70] [ 3] [301] +12:04:23 ============================================================================ +12:04:23 + + +waiting on router queue for slot.... +12:04:23 Sending to : +12:04:23 ============================================================================ +12:04:23 ============================================================================ +12:04:23 Slot Id : <91> +12:04:23 Transaction Type : RESPONSE +12:04:23 Received From : +12:04:23 ============================================================================ +12:04:23 FNo. Len. Field Value +12:04:23 ============================================================================ +12:04:23 [ 1] [ 4] [0810] +12:04:23 [ 7] [ 10] [0320050331] +12:04:23 [ 11] [ 6] [156214] +12:04:23 [ 39] [ 2] [00] +12:04:23 [ 70] [ 3] [301] +12:04:23 ============================================================================ +12:04:23 Calculate Source COMM Id = 2 +12:04:23 ============================================================================ +12:04:23 + + +waiting on router queue for slot.... +12:04:23 ============================================================================ +12:04:23 Slot Id : <65> +12:04:23 Transaction Type : REQUEST +12:04:23 Received From : +12:04:23 ============================================================================ +12:04:23 FNo. Len. Field Value +12:04:23 ============================================================================ +12:04:23 [ 1] [ 4] [0200] +12:04:23 [ 2] [ 16] [6213544002210422] +12:04:23 [ 3] [ 6] [311000] +12:04:23 [ 4] [ 12] [000000000000] +12:04:23 [ 7] [ 10] [0320121211] +12:04:23 [ 11] [ 6] [274741] +12:04:23 [ 12] [ 6] [121211] +12:04:23 [ 13] [ 4] [0320] +12:04:23 [ 14] [ 4] [4912] +12:04:23 [ 15] [ 4] [0320] +12:04:23 [ 18] [ 4] [6011] +12:04:23 [ 22] [ 3] [900] +12:04:23 [ 25] [ 2] [02] +12:04:23 [ 28] [ 9] [000000000] +12:04:23 [ 32] [ 6] [220699] +12:04:23 [ 35] [ 32] [6213544002210422=491212011042640] +12:04:23 [ 37] [ 12] [507900057259] +12:04:23 [ 41] [ 8] [01000500] +12:04:23 [ 42] [ 15] [APTRA ] +12:04:23 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:04:23 [ 49] [ 3] [418] +12:04:23 [ 52] [ 16] [8A638619069BCE40] +12:04:23 ============================================================================ +12:04:23 + + +waiting on router queue for slot.... +12:04:23 Sending to : +12:04:23 ============================================================================ +12:04:23 Sending to : +12:04:23 ============================================================================ +12:04:24 ============================================================================ +12:04:24 Slot Id : <65> +12:04:24 Transaction Type : REQUEST +12:04:24 Received From : +12:04:24 ============================================================================ +12:04:24 FNo. Len. Field Value +12:04:24 ============================================================================ +12:04:24 [ 1] [ 4] [0200] +12:04:24 [ 2] [ 16] [6213544002210422] +12:04:24 [ 3] [ 6] [311000] +12:04:24 [ 4] [ 12] [000000000000] +12:04:24 [ 7] [ 10] [0320121211] +12:04:24 [ 11] [ 6] [274741] +12:04:24 [ 12] [ 6] [121211] +12:04:24 [ 13] [ 4] [0320] +12:04:24 [ 14] [ 4] [4912] +12:04:24 [ 15] [ 4] [0320] +12:04:24 [ 18] [ 4] [6011] +12:04:24 [ 22] [ 3] [900] +12:04:24 [ 25] [ 2] [02] +12:04:24 [ 28] [ 9] [000000000] +12:04:24 [ 32] [ 6] [220699] +12:04:24 [ 35] [ 32] [6213544002210422=491212011042640] +12:04:24 [ 37] [ 12] [507900057259] +12:04:24 [ 41] [ 8] [01000500] +12:04:24 [ 42] [ 15] [APTRA ] +12:04:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:04:24 [ 49] [ 3] [418] +12:04:24 [ 52] [ 16] [8A638619069BCE40] +12:04:24 ============================================================================ +12:04:24 + + +waiting on router queue for slot.... +12:04:24 Sending to : +12:04:24 ============================================================================ +12:04:24 ============================================================================ +12:04:24 Slot Id : <65> +12:04:24 Transaction Type : REQUEST +12:04:24 Received From : +12:04:24 ============================================================================ +12:04:24 FNo. Len. Field Value +12:04:24 ============================================================================ +12:04:24 [ 1] [ 4] [0200] +12:04:24 [ 2] [ 16] [6213544002210422] +12:04:24 [ 3] [ 6] [311000] +12:04:24 [ 4] [ 12] [000000000000] +12:04:24 [ 7] [ 10] [0320121211] +12:04:24 [ 11] [ 6] [274741] +12:04:24 [ 12] [ 6] [121211] +12:04:24 [ 13] [ 4] [0320] +12:04:24 [ 14] [ 4] [4912] +12:04:24 [ 15] [ 4] [0320] +12:04:24 [ 18] [ 4] [6011] +12:04:24 [ 22] [ 3] [900] +12:04:24 [ 25] [ 2] [02] +12:04:24 [ 28] [ 9] [000000000] +12:04:24 [ 32] [ 6] [220699] +12:04:24 [ 35] [ 32] [6213544002210422=491212011042640] +12:04:24 [ 37] [ 12] [507900057259] +12:04:24 [ 41] [ 8] [01000500] +12:04:24 [ 42] [ 15] [APTRA ] +12:04:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:04:24 [ 49] [ 3] [418] +12:04:24 [ 52] [ 16] [912D892D146BE759] +12:04:24 ============================================================================ +12:04:24 + + +waiting on router queue for slot.... +12:04:24 Sending to : <0> +12:04:24 ============================================================================ +12:04:24 ============================================================================ +12:04:24 Slot Id : <65> +12:04:24 Transaction Type : RESPONSE +12:04:24 Received From : +12:04:24 ============================================================================ +12:04:24 FNo. Len. Field Value +12:04:24 ============================================================================ +12:04:24 [ 1] [ 4] [0210] +12:04:24 [ 2] [ 16] [6213544002210422] +12:04:24 [ 3] [ 6] [311000] +12:04:24 [ 4] [ 12] [000000000000] +12:04:24 [ 7] [ 10] [0320121211] +12:04:24 [ 11] [ 6] [274741] +12:04:24 [ 12] [ 6] [121211] +12:04:24 [ 13] [ 4] [0320] +12:04:24 [ 15] [ 4] [0320] +12:04:24 [ 18] [ 4] [6011] +12:04:24 [ 32] [ 6] [220699] +12:04:24 [ 35] [ 32] [6213544002210422=491212011042640] +12:04:24 [ 37] [ 12] [507900057259] +12:04:24 [ 38] [ 6] [991058] +12:04:24 [ 39] [ 2] [00] +12:04:24 [ 41] [ 8] [01000500] +12:04:24 [ 49] [ 3] [418] +12:04:24 [ 54] [ 40] [1001418C0000256000001002418C000025600000] +12:04:24 ============================================================================ +12:04:24 Sending to : +12:04:24 ============================================================================ +12:04:24 + + +waiting on router queue for slot.... +12:04:26 ============================================================================ +12:04:26 Slot Id : <65> +12:04:26 Transaction Type : RESPONSE +12:04:26 Received From : +12:04:26 ============================================================================ +12:04:26 FNo. Len. Field Value +12:04:26 ============================================================================ +12:04:26 [ 1] [ 4] [0210] +12:04:26 [ 2] [ 16] [6213544002210422] +12:04:26 [ 3] [ 6] [311000] +12:04:26 [ 4] [ 12] [000000000000] +12:04:26 [ 7] [ 10] [0320121211] +12:04:26 [ 11] [ 6] [274741] +12:04:26 [ 12] [ 6] [121211] +12:04:26 [ 13] [ 4] [0320] +12:04:26 [ 15] [ 4] [0320] +12:04:26 [ 18] [ 4] [6011] +12:04:26 [ 32] [ 6] [220699] +12:04:26 [ 35] [ 32] [6213544002210422=491212011042640] +12:04:26 [ 37] [ 12] [507900057259] +12:04:26 [ 38] [ 6] [991058] +12:04:26 [ 39] [ 2] [00] +12:04:26 [ 41] [ 8] [01000500] +12:04:26 [ 49] [ 3] [418] +12:04:26 [ 54] [ 40] [1001418C0000256000001002418C000025600000] +12:04:26 ============================================================================ +12:04:26 Calculate Source COMM Id = 1 +12:04:26 ============================================================================ +12:04:26 + + +waiting on router queue for slot.... +12:04:35 ============================================================================ +12:04:35 Slot Id : <72> +12:04:35 Transaction Type : REQUEST +12:04:35 Received From : +12:04:35 ============================================================================ +12:04:35 FNo. Len. Field Value +12:04:35 ============================================================================ +12:04:35 [ 1] [ 4] [0800] +12:04:35 [ 7] [ 10] [0320050342] +12:04:35 [ 11] [ 6] [156215] +12:04:35 [ 70] [ 3] [301] +12:04:35 ============================================================================ +12:04:35 + + +waiting on router queue for slot.... +12:04:35 Sending to : +12:04:35 ============================================================================ +12:04:35 ============================================================================ +12:04:35 Slot Id : <72> +12:04:35 Transaction Type : RESPONSE +12:04:35 Received From : +12:04:35 ============================================================================ +12:04:35 FNo. Len. Field Value +12:04:35 ============================================================================ +12:04:35 [ 1] [ 4] [0810] +12:04:35 [ 7] [ 10] [0320050342] +12:04:35 [ 11] [ 6] [156215] +12:04:35 [ 39] [ 2] [00] +12:04:35 [ 70] [ 3] [301] +12:04:35 ============================================================================ +12:04:35 Calculate Source COMM Id = 2 +12:04:35 ============================================================================ +12:04:35 + + +waiting on router queue for slot.... +12:04:38 ============================================================================ +12:04:38 Slot Id : <106> +12:04:38 Transaction Type : REQUEST +12:04:38 Received From : +12:04:38 ============================================================================ +12:04:38 FNo. Len. Field Value +12:04:38 ============================================================================ +12:04:38 [ 1] [ 4] [0200] +12:04:38 [ 2] [ 16] [6213544001866836] +12:04:38 [ 3] [ 6] [010000] +12:04:38 [ 4] [ 12] [000050000000] +12:04:38 [ 7] [ 10] [0320120229] +12:04:38 [ 11] [ 6] [943160] +12:04:38 [ 12] [ 6] [120229] +12:04:38 [ 13] [ 4] [0320] +12:04:38 [ 15] [ 4] [0320] +12:04:38 [ 18] [ 4] [6011] +12:04:38 [ 19] [ 3] [418] +12:04:38 [ 22] [ 3] [021] +12:04:38 [ 25] [ 2] [01] +12:04:38 [ 28] [ 9] [D00002000] +12:04:38 [ 32] [ 6] [668899] +12:04:38 [ 35] [ 32] [6213544001866836=491212016683878] +12:04:38 [ 37] [ 12] [507901541677] +12:04:38 [ 41] [ 8] [03020016] +12:04:38 [ 42] [ 15] [APT ] +12:04:38 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +12:04:38 [ 49] [ 3] [418] +12:04:38 [ 52] [ 16] [69C0413CABD9EBA0] +12:04:38 ============================================================================ +12:04:38 + + +waiting on router queue for slot.... +12:04:38 Sending to : +12:04:38 ============================================================================ +12:04:38 Sending to : +12:04:38 ============================================================================ +12:04:38 ============================================================================ +12:04:38 Slot Id : <106> +12:04:38 Transaction Type : REQUEST +12:04:38 Received From : +12:04:38 ============================================================================ +12:04:38 FNo. Len. Field Value +12:04:38 ============================================================================ +12:04:38 [ 1] [ 4] [0200] +12:04:38 [ 2] [ 16] [6213544001866836] +12:04:38 [ 3] [ 6] [010000] +12:04:38 [ 4] [ 12] [000050000000] +12:04:38 [ 7] [ 10] [0320120229] +12:04:38 [ 11] [ 6] [943160] +12:04:38 [ 12] [ 6] [120229] +12:04:38 [ 13] [ 4] [0320] +12:04:38 [ 15] [ 4] [0320] +12:04:38 [ 18] [ 4] [6011] +12:04:38 [ 19] [ 3] [418] +12:04:38 [ 22] [ 3] [021] +12:04:38 [ 25] [ 2] [01] +12:04:38 [ 28] [ 9] [D00002000] +12:04:38 [ 32] [ 6] [668899] +12:04:38 [ 35] [ 32] [6213544001866836=491212016683878] +12:04:38 [ 37] [ 12] [507901541677] +12:04:38 [ 41] [ 8] [03020016] +12:04:38 [ 42] [ 15] [APT ] +12:04:38 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +12:04:38 [ 49] [ 3] [418] +12:04:38 [ 52] [ 16] [69C0413CABD9EBA0] +12:04:38 ============================================================================ +12:04:38 + + +waiting on router queue for slot.... +12:04:38 Sending to : +12:04:38 ============================================================================ +12:04:38 ============================================================================ +12:04:38 Slot Id : <106> +12:04:38 Transaction Type : REQUEST +12:04:38 Received From : +12:04:38 ============================================================================ +12:04:38 FNo. Len. Field Value +12:04:38 ============================================================================ +12:04:38 [ 1] [ 4] [0200] +12:04:38 [ 2] [ 16] [6213544001866836] +12:04:38 [ 3] [ 6] [010000] +12:04:38 [ 4] [ 12] [000050000000] +12:04:38 [ 7] [ 10] [0320120229] +12:04:38 [ 11] [ 6] [943160] +12:04:38 [ 12] [ 6] [120229] +12:04:38 [ 13] [ 4] [0320] +12:04:38 [ 15] [ 4] [0320] +12:04:38 [ 18] [ 4] [6011] +12:04:38 [ 19] [ 3] [418] +12:04:38 [ 22] [ 3] [021] +12:04:38 [ 25] [ 2] [01] +12:04:38 [ 28] [ 9] [D00002000] +12:04:38 [ 32] [ 6] [668899] +12:04:38 [ 35] [ 32] [6213544001866836=491212016683878] +12:04:38 [ 37] [ 12] [507901541677] +12:04:38 [ 41] [ 8] [03020016] +12:04:38 [ 42] [ 15] [APT ] +12:04:38 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +12:04:38 [ 49] [ 3] [418] +12:04:38 [ 52] [ 16] [50C4DD22E14D4B0B] +12:04:38 ============================================================================ +12:04:38 + + +waiting on router queue for slot.... +12:04:38 Sending to : <0> +12:04:38 ============================================================================ +12:04:38 ============================================================================ +12:04:38 Slot Id : <106> +12:04:38 Transaction Type : RESPONSE +12:04:38 Received From : +12:04:38 ============================================================================ +12:04:38 FNo. Len. Field Value +12:04:38 ============================================================================ +12:04:38 [ 1] [ 4] [0210] +12:04:38 [ 2] [ 16] [6213544001866836] +12:04:38 [ 3] [ 6] [010000] +12:04:38 [ 4] [ 12] [000050000000] +12:04:38 [ 7] [ 10] [0320120229] +12:04:38 [ 11] [ 6] [943160] +12:04:38 [ 12] [ 6] [120229] +12:04:38 [ 13] [ 4] [0320] +12:04:38 [ 15] [ 4] [0320] +12:04:38 [ 18] [ 4] [6011] +12:04:38 [ 19] [ 3] [418] +12:04:38 [ 22] [ 3] [021] +12:04:38 [ 32] [ 6] [668899] +12:04:38 [ 35] [ 32] [6213544001866836=491212016683878] +12:04:38 [ 37] [ 12] [507901541677] +12:04:38 [ 38] [ 6] [120434] +12:04:38 [ 39] [ 2] [75] +12:04:38 [ 41] [ 8] [03020016] +12:04:38 [ 49] [ 3] [418] +12:04:38 ============================================================================ +12:04:38 Sending to : +12:04:38 ============================================================================ +12:04:38 + + +waiting on router queue for slot.... +12:04:39 ============================================================================ +12:04:39 Slot Id : <106> +12:04:39 Transaction Type : RESPONSE +12:04:39 Received From : +12:04:39 ============================================================================ +12:04:39 FNo. Len. Field Value +12:04:39 ============================================================================ +12:04:39 [ 1] [ 4] [0210] +12:04:39 [ 2] [ 16] [6213544001866836] +12:04:39 [ 3] [ 6] [010000] +12:04:39 [ 4] [ 12] [000050000000] +12:04:39 [ 7] [ 10] [0320120229] +12:04:39 [ 11] [ 6] [943160] +12:04:39 [ 12] [ 6] [120229] +12:04:39 [ 13] [ 4] [0320] +12:04:39 [ 15] [ 4] [0320] +12:04:39 [ 18] [ 4] [6011] +12:04:39 [ 19] [ 3] [418] +12:04:39 [ 22] [ 3] [021] +12:04:39 [ 32] [ 6] [668899] +12:04:39 [ 35] [ 32] [6213544001866836=491212016683878] +12:04:39 [ 37] [ 12] [507901541677] +12:04:39 [ 38] [ 6] [120434] +12:04:39 [ 39] [ 2] [75] +12:04:39 [ 41] [ 8] [03020016] +12:04:39 [ 49] [ 3] [418] +12:04:39 ============================================================================ +12:04:39 Calculate Source COMM Id = 4 +12:04:39 ============================================================================ +12:04:39 + + +waiting on router queue for slot.... +12:04:46 ============================================================================ +12:04:46 Slot Id : <76> +12:04:46 Transaction Type : REQUEST +12:04:46 Received From : +12:04:46 ============================================================================ +12:04:46 FNo. Len. Field Value +12:04:46 ============================================================================ +12:04:46 [ 1] [ 4] [0200] +12:04:46 [ 2] [ 16] [6213541000679236] +12:04:46 [ 3] [ 6] [010000] +12:04:46 [ 4] [ 12] [000020000000] +12:04:46 [ 7] [ 10] [0320120237] +12:04:46 [ 11] [ 6] [943167] +12:04:46 [ 12] [ 6] [120237] +12:04:46 [ 13] [ 4] [0320] +12:04:46 [ 15] [ 4] [0320] +12:04:46 [ 18] [ 4] [6011] +12:04:46 [ 19] [ 3] [418] +12:04:46 [ 22] [ 3] [021] +12:04:46 [ 25] [ 2] [01] +12:04:46 [ 28] [ 9] [D00002000] +12:04:46 [ 32] [ 6] [668899] +12:04:46 [ 35] [ 32] [6213541000679236=491212017923835] +12:04:46 [ 37] [ 12] [507900996163] +12:04:46 [ 41] [ 8] [03304001] +12:04:46 [ 42] [ 15] [APT ] +12:04:46 [ 43] [ 40] [ TONEPHEUNG UNIT TONEPHEUN] +12:04:46 [ 49] [ 3] [418] +12:04:46 [ 52] [ 16] [381AD545EA03A6B0] +12:04:46 ============================================================================ +12:04:46 + + +waiting on router queue for slot.... +12:04:46 Sending to : +12:04:46 ============================================================================ +12:04:46 Sending to : +12:04:46 ============================================================================ +12:04:46 ============================================================================ +12:04:46 Slot Id : <76> +12:04:46 Transaction Type : REQUEST +12:04:46 Received From : +12:04:46 ============================================================================ +12:04:46 FNo. Len. Field Value +12:04:46 ============================================================================ +12:04:46 [ 1] [ 4] [0200] +12:04:46 [ 2] [ 16] [6213541000679236] +12:04:46 [ 3] [ 6] [010000] +12:04:46 [ 4] [ 12] [000020000000] +12:04:46 [ 7] [ 10] [0320120237] +12:04:46 [ 11] [ 6] [943167] +12:04:46 [ 12] [ 6] [120237] +12:04:46 [ 13] [ 4] [0320] +12:04:46 [ 15] [ 4] [0320] +12:04:46 [ 18] [ 4] [6011] +12:04:46 [ 19] [ 3] [418] +12:04:46 [ 22] [ 3] [021] +12:04:46 [ 25] [ 2] [01] +12:04:46 [ 28] [ 9] [D00002000] +12:04:46 [ 32] [ 6] [668899] +12:04:46 [ 35] [ 32] [6213541000679236=491212017923835] +12:04:46 [ 37] [ 12] [507900996163] +12:04:46 [ 41] [ 8] [03304001] +12:04:46 [ 42] [ 15] [APT ] +12:04:46 [ 43] [ 40] [ TONEPHEUNG UNIT TONEPHEUN] +12:04:46 [ 49] [ 3] [418] +12:04:46 [ 52] [ 16] [381AD545EA03A6B0] +12:04:46 ============================================================================ +12:04:46 + + +waiting on router queue for slot.... +12:04:46 Sending to : +12:04:46 ============================================================================ +12:04:46 ============================================================================ +12:04:46 Slot Id : <76> +12:04:46 Transaction Type : REQUEST +12:04:46 Received From : +12:04:46 ============================================================================ +12:04:46 FNo. Len. Field Value +12:04:46 ============================================================================ +12:04:46 [ 1] [ 4] [0200] +12:04:46 [ 2] [ 16] [6213541000679236] +12:04:46 [ 3] [ 6] [010000] +12:04:46 [ 4] [ 12] [000020000000] +12:04:46 [ 7] [ 10] [0320120237] +12:04:46 [ 11] [ 6] [943167] +12:04:46 [ 12] [ 6] [120237] +12:04:46 [ 13] [ 4] [0320] +12:04:46 [ 15] [ 4] [0320] +12:04:46 [ 18] [ 4] [6011] +12:04:46 [ 19] [ 3] [418] +12:04:46 [ 22] [ 3] [021] +12:04:46 [ 25] [ 2] [01] +12:04:46 [ 28] [ 9] [D00002000] +12:04:46 [ 32] [ 6] [668899] +12:04:46 [ 35] [ 32] [6213541000679236=491212017923835] +12:04:46 [ 37] [ 12] [507900996163] +12:04:46 [ 41] [ 8] [03304001] +12:04:46 [ 42] [ 15] [APT ] +12:04:46 [ 43] [ 40] [ TONEPHEUNG UNIT TONEPHEUN] +12:04:46 [ 49] [ 3] [418] +12:04:46 [ 52] [ 16] [653B8D2F13AECD0B] +12:04:46 ============================================================================ +12:04:46 + + +waiting on router queue for slot.... +12:04:46 Sending to : <0> +12:04:46 ============================================================================ +12:04:47 ============================================================================ +12:04:47 Slot Id : <76> +12:04:47 Transaction Type : RESPONSE +12:04:47 Received From : +12:04:47 ============================================================================ +12:04:47 FNo. Len. Field Value +12:04:47 ============================================================================ +12:04:47 [ 1] [ 4] [0210] +12:04:47 [ 2] [ 16] [6213541000679236] +12:04:47 [ 3] [ 6] [010000] +12:04:47 [ 4] [ 12] [000020000000] +12:04:47 [ 7] [ 10] [0320120237] +12:04:47 [ 11] [ 6] [943167] +12:04:47 [ 12] [ 6] [120237] +12:04:47 [ 13] [ 4] [0320] +12:04:47 [ 15] [ 4] [0320] +12:04:47 [ 18] [ 4] [6011] +12:04:47 [ 19] [ 3] [418] +12:04:47 [ 32] [ 6] [668899] +12:04:47 [ 35] [ 32] [6213541000679236=491212017923835] +12:04:47 [ 37] [ 12] [507900996163] +12:04:47 [ 38] [ 6] [284881] +12:04:47 [ 39] [ 2] [00] +12:04:47 [ 41] [ 8] [03304001] +12:04:47 [ 49] [ 3] [418] +12:04:47 [ 54] [ 40] [0001418C0000757657790002418C000075765779] +12:04:47 ============================================================================ +12:04:47 Sending to : +12:04:47 ============================================================================ +12:04:47 + + +waiting on router queue for slot.... +12:04:48 ============================================================================ +12:04:48 Slot Id : <76> +12:04:48 Transaction Type : RESPONSE +12:04:48 Received From : +12:04:48 ============================================================================ +12:04:48 FNo. Len. Field Value +12:04:48 ============================================================================ +12:04:48 [ 1] [ 4] [0210] +12:04:48 [ 2] [ 16] [6213541000679236] +12:04:48 [ 3] [ 6] [010000] +12:04:48 [ 4] [ 12] [000020000000] +12:04:48 [ 7] [ 10] [0320120237] +12:04:48 [ 11] [ 6] [943167] +12:04:48 [ 12] [ 6] [120237] +12:04:48 [ 13] [ 4] [0320] +12:04:48 [ 15] [ 4] [0320] +12:04:48 [ 18] [ 4] [6011] +12:04:48 [ 19] [ 3] [418] +12:04:48 [ 32] [ 6] [668899] +12:04:48 [ 35] [ 32] [6213541000679236=491212017923835] +12:04:48 [ 37] [ 12] [507900996163] +12:04:48 [ 38] [ 6] [284881] +12:04:48 [ 39] [ 2] [00] +12:04:48 [ 41] [ 8] [03304001] +12:04:48 [ 49] [ 3] [418] +12:04:48 [ 54] [ 40] [0001418C0000757657790002418C000075765779] +12:04:48 ============================================================================ +12:04:48 Calculate Source COMM Id = 4 +12:04:48 ============================================================================ +12:04:48 + + +waiting on router queue for slot.... +12:04:50 ============================================================================ +12:04:50 Slot Id : <66> +12:04:50 Transaction Type : REQUEST +12:04:50 Received From : +12:04:50 ============================================================================ +12:04:50 FNo. Len. Field Value +12:04:50 ============================================================================ +12:04:50 [ 1] [ 4] [0800] +12:04:50 [ 7] [ 10] [0320050358] +12:04:50 [ 11] [ 6] [156216] +12:04:50 [ 70] [ 3] [301] +12:04:50 ============================================================================ +12:04:50 + + +waiting on router queue for slot.... +12:04:50 Sending to : +12:04:50 ============================================================================ +12:04:50 ============================================================================ +12:04:50 Slot Id : <66> +12:04:50 Transaction Type : RESPONSE +12:04:50 Received From : +12:04:50 ============================================================================ +12:04:50 FNo. Len. Field Value +12:04:50 ============================================================================ +12:04:50 [ 1] [ 4] [0810] +12:04:50 [ 7] [ 10] [0320050358] +12:04:50 [ 11] [ 6] [156216] +12:04:50 [ 39] [ 2] [00] +12:04:50 [ 70] [ 3] [301] +12:04:50 ============================================================================ +12:04:50 Calculate Source COMM Id = 2 +12:04:50 ============================================================================ +12:04:50 + + +waiting on router queue for slot.... +12:04:54 ============================================================================ +12:04:54 Slot Id : <90> +12:04:54 Transaction Type : REQUEST +12:04:54 Received From : +12:04:54 ============================================================================ +12:04:54 FNo. Len. Field Value +12:04:54 ============================================================================ +12:04:54 [ 1] [ 4] [0800] +12:04:54 [ 7] [ 10] [0320051242] +12:04:54 [ 11] [ 6] [003351] +12:04:54 [ 37] [ 12] [57912003351] +12:04:54 [ 70] [ 3] [301] +12:04:54 ============================================================================ +12:04:54 + + +waiting on router queue for slot.... +12:04:54 Sending to : +12:04:54 ============================================================================ +12:04:54 ============================================================================ +12:04:54 Slot Id : <90> +12:04:54 Transaction Type : RESPONSE +12:04:54 Received From : +12:04:54 ============================================================================ +12:04:54 FNo. Len. Field Value +12:04:54 ============================================================================ +12:04:54 [ 1] [ 4] [0810] +12:04:54 [ 7] [ 10] [0320051242] +12:04:54 [ 11] [ 6] [003351] +12:04:54 [ 37] [ 12] [579120033510] +12:04:54 [ 39] [ 2] [00] +12:04:54 [ 70] [ 3] [810] +12:04:54 ============================================================================ +12:04:54 Calculate Source COMM Id = 1 +12:04:54 ============================================================================ +12:04:54 + + +waiting on router queue for slot.... +12:05:00 ============================================================================ +12:05:00 Slot Id : <83> +12:05:00 Transaction Type : REQUEST +12:05:00 Received From : +12:05:00 ============================================================================ +12:05:00 FNo. Len. Field Value +12:05:00 ============================================================================ +12:05:00 [ 1] [ 4] [0800] +12:05:00 [ 2] [ 5] [02531] +12:05:00 [ 3] [ 6] [579128] +12:05:00 [ 7] [ 10] [0320050500] +12:05:00 [ 11] [ 6] [807113] +12:05:00 [ 15] [ 10] [0320050500] +12:05:00 [ 37] [ 11] [57912807113] +12:05:00 [ 70] [ 3] [001] +12:05:00 ============================================================================ +12:05:00 + + +waiting on router queue for slot.... +12:05:00 ============================================================================ +12:05:00 Slot Id : <83> +12:05:00 Transaction Type : RESPONSE +12:05:00 Received From : +12:05:00 ============================================================================ +12:05:00 FNo. Len. Field Value +12:05:00 ============================================================================ +12:05:00 [ 1] [ 4] [0810] +12:05:00 [ 7] [ 10] [0320050500] +12:05:00 [ 11] [ 6] [807113] +12:05:00 [ 15] [ 4] [0320] +12:05:00 [ 37] [ 12] [57912807113] +12:05:00 [ 39] [ 2] [00] +12:05:00 [ 70] [ 3] [001] +12:05:00 ============================================================================ +12:05:00 Sending to : +12:05:00 ============================================================================ +12:05:00 + + +waiting on router queue for slot.... +12:05:02 ============================================================================ +12:05:02 Slot Id : <114> +12:05:02 Transaction Type : REQUEST +12:05:02 Received From : +12:05:02 ============================================================================ +12:05:02 FNo. Len. Field Value +12:05:02 ============================================================================ +12:05:02 [ 1] [ 4] [0800] +12:05:02 [ 7] [ 10] [0320050409] +12:05:02 [ 11] [ 6] [156217] +12:05:02 [ 70] [ 3] [301] +12:05:02 ============================================================================ +12:05:02 + + +waiting on router queue for slot.... +12:05:02 Sending to : +12:05:02 ============================================================================ +12:05:02 ============================================================================ +12:05:02 Slot Id : <114> +12:05:02 Transaction Type : RESPONSE +12:05:02 Received From : +12:05:02 ============================================================================ +12:05:02 FNo. Len. Field Value +12:05:02 ============================================================================ +12:05:02 [ 1] [ 4] [0810] +12:05:02 [ 7] [ 10] [0320050409] +12:05:02 [ 11] [ 6] [156217] +12:05:02 [ 39] [ 2] [00] +12:05:02 [ 70] [ 3] [301] +12:05:02 ============================================================================ +12:05:02 Calculate Source COMM Id = 2 +12:05:02 ============================================================================ +12:05:02 + + +waiting on router queue for slot.... +12:05:08 ============================================================================ +12:05:08 Slot Id : <118> +12:05:08 Transaction Type : REQUEST +12:05:08 Received From : +12:05:08 ============================================================================ +12:05:08 FNo. Len. Field Value +12:05:08 ============================================================================ +12:05:08 [ 1] [ 4] [0200] +12:05:08 [ 2] [ 16] [6213545000912851] +12:05:08 [ 3] [ 6] [010000] +12:05:08 [ 4] [ 12] [000100000000] +12:05:08 [ 7] [ 10] [0320050415] +12:05:08 [ 11] [ 6] [268881] +12:05:08 [ 12] [ 6] [120415] +12:05:08 [ 13] [ 4] [0320] +12:05:08 [ 14] [ 4] [4912] +12:05:08 [ 15] [ 4] [0320] +12:05:08 [ 18] [ 4] [6011] +12:05:08 [ 19] [ 3] [418] +12:05:08 [ 22] [ 3] [021] +12:05:08 [ 25] [ 2] [01] +12:05:08 [ 28] [ 9] [D00002000] +12:05:08 [ 32] [ 6] [180893] +12:05:08 [ 35] [ 32] [6213545000912851=491212011285457] +12:05:08 [ 37] [ 12] [507905268881] +12:05:08 [ 41] [ 8] [0465UDNM] +12:05:08 [ 42] [ 15] [999999 ] +12:05:08 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:05:08 [ 49] [ 3] [418] +12:05:08 [ 52] [ 16] [37DE6EA1E4868702] +12:05:08 ============================================================================ +12:05:08 + + +waiting on router queue for slot.... +12:05:08 Sending to : +12:05:08 ============================================================================ +12:05:08 Sending to : +12:05:08 ============================================================================ +12:05:08 ============================================================================ +12:05:08 Slot Id : <118> +12:05:08 Transaction Type : REQUEST +12:05:08 Received From : +12:05:08 ============================================================================ +12:05:08 FNo. Len. Field Value +12:05:08 ============================================================================ +12:05:08 [ 1] [ 4] [0200] +12:05:08 [ 2] [ 16] [6213545000912851] +12:05:08 [ 3] [ 6] [010000] +12:05:08 [ 4] [ 12] [000100000000] +12:05:08 [ 7] [ 10] [0320050415] +12:05:08 [ 11] [ 6] [268881] +12:05:08 [ 12] [ 6] [120415] +12:05:08 [ 13] [ 4] [0320] +12:05:08 [ 14] [ 4] [4912] +12:05:08 [ 15] [ 4] [0320] +12:05:08 [ 18] [ 4] [6011] +12:05:08 [ 19] [ 3] [418] +12:05:08 [ 22] [ 3] [021] +12:05:08 [ 25] [ 2] [01] +12:05:08 [ 28] [ 9] [D00002000] +12:05:08 [ 32] [ 6] [180893] +12:05:08 [ 35] [ 32] [6213545000912851=491212011285457] +12:05:08 [ 37] [ 12] [507905268881] +12:05:08 [ 41] [ 8] [0465UDNM] +12:05:08 [ 42] [ 15] [999999 ] +12:05:08 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:05:08 [ 49] [ 3] [418] +12:05:08 [ 52] [ 16] [37DE6EA1E4868702] +12:05:08 ============================================================================ +12:05:08 + + +waiting on router queue for slot.... +12:05:08 Sending to : +12:05:08 ============================================================================ +12:05:08 ============================================================================ +12:05:08 Slot Id : <118> +12:05:08 Transaction Type : REQUEST +12:05:08 Received From : +12:05:08 ============================================================================ +12:05:08 FNo. Len. Field Value +12:05:08 ============================================================================ +12:05:08 [ 1] [ 4] [0200] +12:05:08 [ 2] [ 16] [6213545000912851] +12:05:08 [ 3] [ 6] [010000] +12:05:08 [ 4] [ 12] [000100000000] +12:05:08 [ 7] [ 10] [0320050415] +12:05:08 [ 11] [ 6] [268881] +12:05:08 [ 12] [ 6] [120415] +12:05:08 [ 13] [ 4] [0320] +12:05:08 [ 14] [ 4] [4912] +12:05:08 [ 15] [ 4] [0320] +12:05:08 [ 18] [ 4] [6011] +12:05:08 [ 19] [ 3] [418] +12:05:08 [ 22] [ 3] [021] +12:05:08 [ 25] [ 2] [01] +12:05:08 [ 28] [ 9] [D00002000] +12:05:08 [ 32] [ 6] [180893] +12:05:08 [ 35] [ 32] [6213545000912851=491212011285457] +12:05:08 [ 37] [ 12] [507905268881] +12:05:08 [ 41] [ 8] [0465UDNM] +12:05:08 [ 42] [ 15] [999999 ] +12:05:08 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:05:08 [ 49] [ 3] [418] +12:05:08 [ 52] [ 16] [DABBF45152737B74] +12:05:08 ============================================================================ +12:05:08 + + +waiting on router queue for slot.... +12:05:08 Sending to : <0> +12:05:08 ============================================================================ +12:05:09 ============================================================================ +12:05:09 Slot Id : <118> +12:05:09 Transaction Type : RESPONSE +12:05:09 Received From : +12:05:09 ============================================================================ +12:05:09 FNo. Len. Field Value +12:05:09 ============================================================================ +12:05:09 [ 1] [ 4] [0210] +12:05:09 [ 2] [ 16] [6213545000912851] +12:05:09 [ 3] [ 6] [010000] +12:05:09 [ 4] [ 12] [000100000000] +12:05:09 [ 7] [ 10] [0320050415] +12:05:09 [ 11] [ 6] [268881] +12:05:09 [ 12] [ 6] [120415] +12:05:09 [ 13] [ 4] [0320] +12:05:09 [ 15] [ 4] [0320] +12:05:09 [ 18] [ 4] [6011] +12:05:09 [ 19] [ 3] [418] +12:05:09 [ 32] [ 6] [180893] +12:05:09 [ 35] [ 32] [6213545000912851=491212011285457] +12:05:09 [ 37] [ 12] [507905268881] +12:05:09 [ 38] [ 6] [513927] +12:05:09 [ 39] [ 2] [00] +12:05:09 [ 41] [ 8] [0465UDNM] +12:05:09 [ 49] [ 3] [418] +12:05:09 [ 54] [ 40] [0001418C0003449965240002418C000344996524] +12:05:09 ============================================================================ +12:05:09 Sending to : +12:05:09 ============================================================================ +12:05:09 + + +waiting on router queue for slot.... +12:05:10 ============================================================================ +12:05:10 Slot Id : <118> +12:05:10 Transaction Type : RESPONSE +12:05:10 Received From : +12:05:10 ============================================================================ +12:05:10 FNo. Len. Field Value +12:05:10 ============================================================================ +12:05:10 [ 1] [ 4] [0210] +12:05:10 [ 2] [ 16] [6213545000912851] +12:05:10 [ 3] [ 6] [010000] +12:05:10 [ 4] [ 12] [000100000000] +12:05:10 [ 7] [ 10] [0320050415] +12:05:10 [ 11] [ 6] [268881] +12:05:10 [ 12] [ 6] [120415] +12:05:10 [ 13] [ 4] [0320] +12:05:10 [ 15] [ 4] [0320] +12:05:10 [ 18] [ 4] [6011] +12:05:10 [ 19] [ 3] [418] +12:05:10 [ 32] [ 6] [180893] +12:05:10 [ 35] [ 32] [6213545000912851=491212011285457] +12:05:10 [ 37] [ 12] [507905268881] +12:05:10 [ 38] [ 6] [513927] +12:05:10 [ 39] [ 2] [00] +12:05:10 [ 41] [ 8] [0465UDNM] +12:05:10 [ 49] [ 3] [418] +12:05:10 [ 54] [ 40] [0001418C0003449965240002418C000344996524] +12:05:10 ============================================================================ +12:05:10 Calculate Source COMM Id = 2 +12:05:10 ============================================================================ +12:05:10 + + +waiting on router queue for slot.... +12:05:23 ============================================================================ +12:05:23 Slot Id : <74> +12:05:23 Transaction Type : REQUEST +12:05:23 Received From : +12:05:23 ============================================================================ +12:05:23 FNo. Len. Field Value +12:05:23 ============================================================================ +12:05:23 [ 1] [ 4] [0800] +12:05:23 [ 7] [ 10] [0320050431] +12:05:23 [ 11] [ 6] [156218] +12:05:23 [ 70] [ 3] [301] +12:05:23 ============================================================================ +12:05:23 + + +waiting on router queue for slot.... +12:05:23 Sending to : +12:05:23 ============================================================================ +12:05:23 ============================================================================ +12:05:23 Slot Id : <74> +12:05:23 Transaction Type : RESPONSE +12:05:23 Received From : +12:05:23 ============================================================================ +12:05:23 FNo. Len. Field Value +12:05:23 ============================================================================ +12:05:23 [ 1] [ 4] [0810] +12:05:23 [ 7] [ 10] [0320050431] +12:05:23 [ 11] [ 6] [156218] +12:05:23 [ 39] [ 2] [00] +12:05:23 [ 70] [ 3] [301] +12:05:23 ============================================================================ +12:05:23 Calculate Source COMM Id = 2 +12:05:23 ============================================================================ +12:05:23 + + +waiting on router queue for slot.... +12:05:34 ============================================================================ +12:05:34 Slot Id : <121> +12:05:34 Transaction Type : REQUEST +12:05:34 Received From : +12:05:34 ============================================================================ +12:05:34 FNo. Len. Field Value +12:05:34 ============================================================================ +12:05:34 [ 1] [ 4] [0800] +12:05:34 [ 7] [ 10] [0320050441] +12:05:34 [ 11] [ 6] [156219] +12:05:34 [ 70] [ 3] [301] +12:05:34 ============================================================================ +12:05:34 + + +waiting on router queue for slot.... +12:05:34 Sending to : +12:05:34 ============================================================================ +12:05:34 ============================================================================ +12:05:34 Slot Id : <121> +12:05:34 Transaction Type : RESPONSE +12:05:34 Received From : +12:05:34 ============================================================================ +12:05:34 FNo. Len. Field Value +12:05:34 ============================================================================ +12:05:34 [ 1] [ 4] [0810] +12:05:34 [ 7] [ 10] [0320050441] +12:05:34 [ 11] [ 6] [156219] +12:05:34 [ 39] [ 2] [00] +12:05:34 [ 70] [ 3] [301] +12:05:34 ============================================================================ +12:05:34 Calculate Source COMM Id = 2 +12:05:34 ============================================================================ +12:05:34 + + +waiting on router queue for slot.... +12:05:44 ============================================================================ +12:05:44 Slot Id : <107> +12:05:44 Transaction Type : REQUEST +12:05:44 Received From : +12:05:44 ============================================================================ +12:05:44 FNo. Len. Field Value +12:05:44 ============================================================================ +12:05:44 [ 1] [ 4] [0800] +12:05:44 [ 7] [ 10] [0320050452] +12:05:44 [ 11] [ 6] [156220] +12:05:44 [ 70] [ 3] [301] +12:05:44 ============================================================================ +12:05:44 + + +waiting on router queue for slot.... +12:05:44 Sending to : +12:05:44 ============================================================================ +12:05:44 ============================================================================ +12:05:44 Slot Id : <107> +12:05:44 Transaction Type : RESPONSE +12:05:44 Received From : +12:05:44 ============================================================================ +12:05:44 FNo. Len. Field Value +12:05:44 ============================================================================ +12:05:44 [ 1] [ 4] [0810] +12:05:44 [ 7] [ 10] [0320050452] +12:05:44 [ 11] [ 6] [156220] +12:05:44 [ 39] [ 2] [00] +12:05:44 [ 70] [ 3] [301] +12:05:44 ============================================================================ +12:05:44 Calculate Source COMM Id = 2 +12:05:44 ============================================================================ +12:05:44 + + +waiting on router queue for slot.... +12:05:55 ============================================================================ +12:05:55 Slot Id : <115> +12:05:55 Transaction Type : REQUEST +12:05:55 Received From : +12:05:55 ============================================================================ +12:05:55 FNo. Len. Field Value +12:05:55 ============================================================================ +12:05:55 [ 1] [ 4] [0800] +12:05:55 [ 7] [ 10] [0320050503] +12:05:55 [ 11] [ 6] [156221] +12:05:55 [ 70] [ 3] [301] +12:05:55 ============================================================================ +12:05:55 + + +waiting on router queue for slot.... +12:05:55 Sending to : +12:05:55 ============================================================================ +12:05:55 ============================================================================ +12:05:55 Slot Id : <115> +12:05:55 Transaction Type : RESPONSE +12:05:55 Received From : +12:05:55 ============================================================================ +12:05:55 FNo. Len. Field Value +12:05:55 ============================================================================ +12:05:55 [ 1] [ 4] [0810] +12:05:55 [ 7] [ 10] [0320050503] +12:05:55 [ 11] [ 6] [156221] +12:05:55 [ 39] [ 2] [00] +12:05:55 [ 70] [ 3] [301] +12:05:55 ============================================================================ +12:05:55 Calculate Source COMM Id = 2 +12:05:55 ============================================================================ +12:05:55 + + +waiting on router queue for slot.... +12:06:02 ============================================================================ +12:06:02 Slot Id : <92> +12:06:02 Transaction Type : REQUEST +12:06:02 Received From : +12:06:02 ============================================================================ +12:06:02 FNo. Len. Field Value +12:06:02 ============================================================================ +12:06:02 [ 1] [ 4] [0800] +12:06:02 [ 2] [ 5] [02531] +12:06:02 [ 3] [ 6] [579128] +12:06:02 [ 7] [ 10] [0320050602] +12:06:02 [ 11] [ 6] [807114] +12:06:02 [ 15] [ 10] [0320050602] +12:06:02 [ 37] [ 11] [57912807114] +12:06:02 [ 70] [ 3] [001] +12:06:02 ============================================================================ +12:06:02 + + +waiting on router queue for slot.... +12:06:02 ============================================================================ +12:06:02 Slot Id : <92> +12:06:02 Transaction Type : RESPONSE +12:06:02 Received From : +12:06:02 ============================================================================ +12:06:02 FNo. Len. Field Value +12:06:02 ============================================================================ +12:06:02 [ 1] [ 4] [0810] +12:06:02 [ 7] [ 10] [0320050602] +12:06:02 [ 11] [ 6] [807114] +12:06:02 [ 15] [ 4] [0320] +12:06:02 [ 37] [ 12] [57912807114] +12:06:02 [ 39] [ 2] [00] +12:06:02 [ 70] [ 3] [001] +12:06:02 ============================================================================ +12:06:02 Sending to : +12:06:02 ============================================================================ +12:06:02 + + +waiting on router queue for slot.... +12:06:05 ============================================================================ +12:06:05 Slot Id : <108> +12:06:05 Transaction Type : REQUEST +12:06:05 Received From : +12:06:05 ============================================================================ +12:06:05 FNo. Len. Field Value +12:06:05 ============================================================================ +12:06:05 [ 1] [ 4] [0800] +12:06:05 [ 7] [ 10] [0320050513] +12:06:05 [ 11] [ 6] [156222] +12:06:05 [ 70] [ 3] [301] +12:06:05 ============================================================================ +12:06:05 + + +waiting on router queue for slot.... +12:06:05 Sending to : +12:06:05 ============================================================================ +12:06:05 ============================================================================ +12:06:05 Slot Id : <108> +12:06:05 Transaction Type : RESPONSE +12:06:05 Received From : +12:06:05 ============================================================================ +12:06:05 FNo. Len. Field Value +12:06:05 ============================================================================ +12:06:05 [ 1] [ 4] [0810] +12:06:05 [ 7] [ 10] [0320050513] +12:06:05 [ 11] [ 6] [156222] +12:06:05 [ 39] [ 2] [00] +12:06:05 [ 70] [ 3] [301] +12:06:05 ============================================================================ +12:06:05 Calculate Source COMM Id = 2 +12:06:05 ============================================================================ +12:06:05 + + +waiting on router queue for slot.... +12:06:15 ============================================================================ +12:06:15 Slot Id : <94> +12:06:15 Transaction Type : REQUEST +12:06:15 Received From : +12:06:15 ============================================================================ +12:06:15 FNo. Len. Field Value +12:06:15 ============================================================================ +12:06:15 [ 1] [ 4] [0200] +12:06:15 [ 2] [ 16] [6213545000912851] +12:06:15 [ 3] [ 6] [010000] +12:06:15 [ 4] [ 12] [000100000000] +12:06:15 [ 7] [ 10] [0320050522] +12:06:15 [ 11] [ 6] [268891] +12:06:15 [ 12] [ 6] [120522] +12:06:15 [ 13] [ 4] [0320] +12:06:15 [ 14] [ 4] [4912] +12:06:15 [ 15] [ 4] [0320] +12:06:15 [ 18] [ 4] [6011] +12:06:15 [ 19] [ 3] [418] +12:06:15 [ 22] [ 3] [021] +12:06:15 [ 25] [ 2] [01] +12:06:15 [ 28] [ 9] [D00002000] +12:06:15 [ 32] [ 6] [180893] +12:06:15 [ 35] [ 32] [6213545000912851=491212011285457] +12:06:15 [ 37] [ 12] [507905268891] +12:06:15 [ 41] [ 8] [0465UDNM] +12:06:15 [ 42] [ 15] [999999 ] +12:06:15 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:06:15 [ 49] [ 3] [418] +12:06:15 [ 52] [ 16] [37DE6EA1E4868702] +12:06:15 ============================================================================ +12:06:15 + + +waiting on router queue for slot.... +12:06:15 Sending to : +12:06:15 ============================================================================ +12:06:15 Sending to : +12:06:15 ============================================================================ +12:06:15 ============================================================================ +12:06:15 Slot Id : <94> +12:06:15 Transaction Type : REQUEST +12:06:15 Received From : +12:06:15 ============================================================================ +12:06:15 FNo. Len. Field Value +12:06:15 ============================================================================ +12:06:15 [ 1] [ 4] [0200] +12:06:15 [ 2] [ 16] [6213545000912851] +12:06:15 [ 3] [ 6] [010000] +12:06:15 [ 4] [ 12] [000100000000] +12:06:15 [ 7] [ 10] [0320050522] +12:06:15 [ 11] [ 6] [268891] +12:06:15 [ 12] [ 6] [120522] +12:06:15 [ 13] [ 4] [0320] +12:06:15 [ 14] [ 4] [4912] +12:06:15 [ 15] [ 4] [0320] +12:06:15 [ 18] [ 4] [6011] +12:06:15 [ 19] [ 3] [418] +12:06:15 [ 22] [ 3] [021] +12:06:15 [ 25] [ 2] [01] +12:06:15 [ 28] [ 9] [D00002000] +12:06:15 [ 32] [ 6] [180893] +12:06:15 [ 35] [ 32] [6213545000912851=491212011285457] +12:06:15 [ 37] [ 12] [507905268891] +12:06:15 [ 41] [ 8] [0465UDNM] +12:06:15 [ 42] [ 15] [999999 ] +12:06:15 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:06:15 [ 49] [ 3] [418] +12:06:15 [ 52] [ 16] [37DE6EA1E4868702] +12:06:15 ============================================================================ +12:06:15 + + +waiting on router queue for slot.... +12:06:15 Sending to : +12:06:15 ============================================================================ +12:06:15 ============================================================================ +12:06:15 Slot Id : <94> +12:06:15 Transaction Type : REQUEST +12:06:15 Received From : +12:06:15 ============================================================================ +12:06:15 FNo. Len. Field Value +12:06:15 ============================================================================ +12:06:15 [ 1] [ 4] [0200] +12:06:15 [ 2] [ 16] [6213545000912851] +12:06:15 [ 3] [ 6] [010000] +12:06:15 [ 4] [ 12] [000100000000] +12:06:15 [ 7] [ 10] [0320050522] +12:06:15 [ 11] [ 6] [268891] +12:06:15 [ 12] [ 6] [120522] +12:06:15 [ 13] [ 4] [0320] +12:06:15 [ 14] [ 4] [4912] +12:06:15 [ 15] [ 4] [0320] +12:06:15 [ 18] [ 4] [6011] +12:06:15 [ 19] [ 3] [418] +12:06:15 [ 22] [ 3] [021] +12:06:15 [ 25] [ 2] [01] +12:06:15 [ 28] [ 9] [D00002000] +12:06:15 [ 32] [ 6] [180893] +12:06:15 [ 35] [ 32] [6213545000912851=491212011285457] +12:06:15 [ 37] [ 12] [507905268891] +12:06:15 [ 41] [ 8] [0465UDNM] +12:06:15 [ 42] [ 15] [999999 ] +12:06:15 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:06:15 [ 49] [ 3] [418] +12:06:15 [ 52] [ 16] [DABBF45152737B74] +12:06:15 ============================================================================ +12:06:15 + + +waiting on router queue for slot.... +12:06:15 Sending to : <0> +12:06:15 ============================================================================ +12:06:15 ============================================================================ +12:06:15 Slot Id : <127> +12:06:15 Transaction Type : REQUEST +12:06:15 Received From : +12:06:15 ============================================================================ +12:06:15 FNo. Len. Field Value +12:06:15 ============================================================================ +12:06:15 [ 1] [ 4] [0200] +12:06:15 [ 2] [ 16] [6213544001117818] +12:06:15 [ 3] [ 6] [010000] +12:06:15 [ 4] [ 12] [000030000000] +12:06:15 [ 7] [ 10] [0320120406] +12:06:15 [ 11] [ 6] [943234] +12:06:15 [ 12] [ 6] [120406] +12:06:15 [ 13] [ 4] [0320] +12:06:15 [ 15] [ 4] [0320] +12:06:15 [ 18] [ 4] [6011] +12:06:15 [ 19] [ 3] [418] +12:06:15 [ 22] [ 3] [021] +12:06:15 [ 25] [ 2] [01] +12:06:15 [ 28] [ 9] [D00002000] +12:06:15 [ 32] [ 6] [668899] +12:06:15 [ 35] [ 32] [6213544001117818=491212011781366] +12:06:15 [ 37] [ 12] [507900123287] +12:06:15 [ 41] [ 8] [03020003] +12:06:15 [ 42] [ 15] [APT ] +12:06:15 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:06:15 [ 49] [ 3] [418] +12:06:15 [ 52] [ 16] [AA1DDBD3C10C6ED9] +12:06:15 ============================================================================ +12:06:15 + + +waiting on router queue for slot.... +12:06:15 Sending to : +12:06:15 ============================================================================ +12:06:15 Sending to : +12:06:15 ============================================================================ +12:06:16 ============================================================================ +12:06:16 Slot Id : <127> +12:06:16 Transaction Type : REQUEST +12:06:16 Received From : +12:06:16 ============================================================================ +12:06:16 FNo. Len. Field Value +12:06:16 ============================================================================ +12:06:16 [ 1] [ 4] [0200] +12:06:16 [ 2] [ 16] [6213544001117818] +12:06:16 [ 3] [ 6] [010000] +12:06:16 [ 4] [ 12] [000030000000] +12:06:16 [ 7] [ 10] [0320120406] +12:06:16 [ 11] [ 6] [943234] +12:06:16 [ 12] [ 6] [120406] +12:06:16 [ 13] [ 4] [0320] +12:06:16 [ 15] [ 4] [0320] +12:06:16 [ 18] [ 4] [6011] +12:06:16 [ 19] [ 3] [418] +12:06:16 [ 22] [ 3] [021] +12:06:16 [ 25] [ 2] [01] +12:06:16 [ 28] [ 9] [D00002000] +12:06:16 [ 32] [ 6] [668899] +12:06:16 [ 35] [ 32] [6213544001117818=491212011781366] +12:06:16 [ 37] [ 12] [507900123287] +12:06:16 [ 41] [ 8] [03020003] +12:06:16 [ 42] [ 15] [APT ] +12:06:16 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:06:16 [ 49] [ 3] [418] +12:06:16 [ 52] [ 16] [AA1DDBD3C10C6ED9] +12:06:16 ============================================================================ +12:06:16 + + +waiting on router queue for slot.... +12:06:16 Sending to : +12:06:16 ============================================================================ +12:06:16 ============================================================================ +12:06:16 Slot Id : <127> +12:06:16 Transaction Type : REQUEST +12:06:16 Received From : +12:06:16 ============================================================================ +12:06:16 FNo. Len. Field Value +12:06:16 ============================================================================ +12:06:16 [ 1] [ 4] [0200] +12:06:16 [ 2] [ 16] [6213544001117818] +12:06:16 [ 3] [ 6] [010000] +12:06:16 [ 4] [ 12] [000030000000] +12:06:16 [ 7] [ 10] [0320120406] +12:06:16 [ 11] [ 6] [943234] +12:06:16 [ 12] [ 6] [120406] +12:06:16 [ 13] [ 4] [0320] +12:06:16 [ 15] [ 4] [0320] +12:06:16 [ 18] [ 4] [6011] +12:06:16 [ 19] [ 3] [418] +12:06:16 [ 22] [ 3] [021] +12:06:16 [ 25] [ 2] [01] +12:06:16 [ 28] [ 9] [D00002000] +12:06:16 [ 32] [ 6] [668899] +12:06:16 [ 35] [ 32] [6213544001117818=491212011781366] +12:06:16 [ 37] [ 12] [507900123287] +12:06:16 [ 41] [ 8] [03020003] +12:06:16 [ 42] [ 15] [APT ] +12:06:16 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:06:16 [ 49] [ 3] [418] +12:06:16 [ 52] [ 16] [B4CE41BD1275750D] +12:06:16 ============================================================================ +12:06:16 + + +waiting on router queue for slot.... +12:06:16 Sending to : <0> +12:06:16 ============================================================================ +12:06:16 ============================================================================ +12:06:16 Slot Id : <94> +12:06:16 Transaction Type : RESPONSE +12:06:16 Received From : +12:06:16 ============================================================================ +12:06:16 FNo. Len. Field Value +12:06:16 ============================================================================ +12:06:16 [ 1] [ 4] [0210] +12:06:16 [ 2] [ 16] [6213545000912851] +12:06:16 [ 3] [ 6] [010000] +12:06:16 [ 4] [ 12] [000100000000] +12:06:16 [ 7] [ 10] [0320050522] +12:06:16 [ 11] [ 6] [268891] +12:06:16 [ 12] [ 6] [120522] +12:06:16 [ 13] [ 4] [0320] +12:06:16 [ 15] [ 4] [0320] +12:06:16 [ 18] [ 4] [6011] +12:06:16 [ 19] [ 3] [418] +12:06:16 [ 32] [ 6] [180893] +12:06:16 [ 35] [ 32] [6213545000912851=491212011285457] +12:06:16 [ 37] [ 12] [507905268891] +12:06:16 [ 38] [ 6] [197342] +12:06:16 [ 39] [ 2] [00] +12:06:16 [ 41] [ 8] [0465UDNM] +12:06:16 [ 49] [ 3] [418] +12:06:16 [ 54] [ 40] [0001418C0002447965240002418C000244796524] +12:06:16 ============================================================================ +12:06:16 Sending to : +12:06:16 ============================================================================ +12:06:16 + + +waiting on router queue for slot.... +12:06:16 ============================================================================ +12:06:16 Slot Id : <113> +12:06:16 Transaction Type : REQUEST +12:06:16 Received From : +12:06:16 ============================================================================ +12:06:16 FNo. Len. Field Value +12:06:16 ============================================================================ +12:06:16 [ 1] [ 4] [0800] +12:06:16 [ 7] [ 10] [0320050523] +12:06:16 [ 11] [ 6] [156223] +12:06:16 [ 70] [ 3] [301] +12:06:16 ============================================================================ +12:06:16 + + +waiting on router queue for slot.... +12:06:16 Sending to : +12:06:16 ============================================================================ +12:06:16 ============================================================================ +12:06:16 Slot Id : <113> +12:06:16 Transaction Type : RESPONSE +12:06:16 Received From : +12:06:16 ============================================================================ +12:06:16 FNo. Len. Field Value +12:06:16 ============================================================================ +12:06:16 [ 1] [ 4] [0810] +12:06:16 [ 7] [ 10] [0320050523] +12:06:16 [ 11] [ 6] [156223] +12:06:16 [ 39] [ 2] [00] +12:06:16 [ 70] [ 3] [301] +12:06:16 ============================================================================ +12:06:16 Calculate Source COMM Id = 2 +12:06:16 ============================================================================ +12:06:16 + + +waiting on router queue for slot.... +12:06:16 ============================================================================ +12:06:16 Slot Id : <127> +12:06:16 Transaction Type : RESPONSE +12:06:16 Received From : +12:06:16 ============================================================================ +12:06:16 FNo. Len. Field Value +12:06:16 ============================================================================ +12:06:16 [ 1] [ 4] [0210] +12:06:16 [ 2] [ 16] [6213544001117818] +12:06:16 [ 3] [ 6] [010000] +12:06:16 [ 4] [ 12] [000030000000] +12:06:16 [ 7] [ 10] [0320120406] +12:06:16 [ 11] [ 6] [943234] +12:06:16 [ 12] [ 6] [120406] +12:06:16 [ 13] [ 4] [0320] +12:06:16 [ 15] [ 4] [0320] +12:06:16 [ 18] [ 4] [6011] +12:06:16 [ 19] [ 3] [418] +12:06:16 [ 32] [ 6] [668899] +12:06:16 [ 35] [ 32] [6213544001117818=491212011781366] +12:06:16 [ 37] [ 12] [507900123287] +12:06:16 [ 38] [ 6] [756745] +12:06:16 [ 39] [ 2] [00] +12:06:16 [ 41] [ 8] [03020003] +12:06:16 [ 49] [ 3] [418] +12:06:16 [ 54] [ 40] [0001418C0000356135060002418C000035613506] +12:06:16 ============================================================================ +12:06:16 Sending to : +12:06:16 ============================================================================ +12:06:16 + + +waiting on router queue for slot.... +12:06:17 ============================================================================ +12:06:17 Slot Id : <94> +12:06:17 Transaction Type : RESPONSE +12:06:17 Received From : +12:06:17 ============================================================================ +12:06:17 FNo. Len. Field Value +12:06:17 ============================================================================ +12:06:17 [ 1] [ 4] [0210] +12:06:17 [ 2] [ 16] [6213545000912851] +12:06:17 [ 3] [ 6] [010000] +12:06:17 [ 4] [ 12] [000100000000] +12:06:17 [ 7] [ 10] [0320050522] +12:06:17 [ 11] [ 6] [268891] +12:06:17 [ 12] [ 6] [120522] +12:06:17 [ 13] [ 4] [0320] +12:06:17 [ 15] [ 4] [0320] +12:06:17 [ 18] [ 4] [6011] +12:06:17 [ 19] [ 3] [418] +12:06:17 [ 32] [ 6] [180893] +12:06:17 [ 35] [ 32] [6213545000912851=491212011285457] +12:06:17 [ 37] [ 12] [507905268891] +12:06:17 [ 38] [ 6] [197342] +12:06:17 [ 39] [ 2] [00] +12:06:17 [ 41] [ 8] [0465UDNM] +12:06:17 [ 49] [ 3] [418] +12:06:17 [ 54] [ 40] [0001418C0002447965240002418C000244796524] +12:06:17 ============================================================================ +12:06:17 Calculate Source COMM Id = 2 +12:06:17 ============================================================================ +12:06:17 + + +waiting on router queue for slot.... +12:06:19 ============================================================================ +12:06:19 Slot Id : <127> +12:06:19 Transaction Type : RESPONSE +12:06:19 Received From : +12:06:19 ============================================================================ +12:06:19 FNo. Len. Field Value +12:06:19 ============================================================================ +12:06:19 [ 1] [ 4] [0210] +12:06:19 [ 2] [ 16] [6213544001117818] +12:06:19 [ 3] [ 6] [010000] +12:06:19 [ 4] [ 12] [000030000000] +12:06:19 [ 7] [ 10] [0320120406] +12:06:19 [ 11] [ 6] [943234] +12:06:19 [ 12] [ 6] [120406] +12:06:19 [ 13] [ 4] [0320] +12:06:19 [ 15] [ 4] [0320] +12:06:19 [ 18] [ 4] [6011] +12:06:19 [ 19] [ 3] [418] +12:06:19 [ 32] [ 6] [668899] +12:06:19 [ 35] [ 32] [6213544001117818=491212011781366] +12:06:19 [ 37] [ 12] [507900123287] +12:06:19 [ 38] [ 6] [756745] +12:06:19 [ 39] [ 2] [00] +12:06:19 [ 41] [ 8] [03020003] +12:06:19 [ 49] [ 3] [418] +12:06:19 [ 54] [ 40] [0001418C0000356135060002418C000035613506] +12:06:19 ============================================================================ +12:06:19 Calculate Source COMM Id = 4 +12:06:19 ============================================================================ +12:06:19 + + +waiting on router queue for slot.... +12:06:21 ============================================================================ +12:06:21 Slot Id : <75> +12:06:21 Transaction Type : REQUEST +12:06:21 Received From : +12:06:21 ============================================================================ +12:06:21 FNo. Len. Field Value +12:06:21 ============================================================================ +12:06:21 [ 1] [ 4] [0800] +12:06:21 [ 7] [ 10] [0320050412] +12:06:21 [ 11] [ 6] [015351] +12:06:21 [ 37] [ 12] [57912015351] +12:06:21 [ 70] [ 3] [301] +12:06:21 ============================================================================ +12:06:21 + + +waiting on router queue for slot.... +12:06:21 Sending to : +12:06:21 ============================================================================ +12:06:21 ============================================================================ +12:06:21 Slot Id : <75> +12:06:21 Transaction Type : RESPONSE +12:06:21 Received From : +12:06:21 ============================================================================ +12:06:21 FNo. Len. Field Value +12:06:21 ============================================================================ +12:06:21 [ 1] [ 4] [0810] +12:06:21 [ 7] [ 10] [0320050412] +12:06:21 [ 11] [ 6] [015351] +12:06:21 [ 37] [ 12] [579120153510] +12:06:21 [ 39] [ 2] [00] +12:06:21 [ 70] [ 3] [810] +12:06:21 ============================================================================ +12:06:21 Calculate Source COMM Id = 4 +12:06:21 ============================================================================ +12:06:21 + + +waiting on router queue for slot.... +12:06:28 ============================================================================ +12:06:28 Slot Id : <125> +12:06:28 Transaction Type : REQUEST +12:06:28 Received From : +12:06:28 ============================================================================ +12:06:28 FNo. Len. Field Value +12:06:28 ============================================================================ +12:06:28 [ 1] [ 4] [0200] +12:06:28 [ 2] [ 16] [2206990000121269] +12:06:28 [ 3] [ 6] [010000] +12:06:28 [ 4] [ 12] [000050000000] +12:06:28 [ 7] [ 10] [0320120419] +12:06:28 [ 11] [ 6] [943251] +12:06:28 [ 12] [ 6] [120419] +12:06:28 [ 13] [ 4] [0320] +12:06:28 [ 15] [ 4] [0320] +12:06:28 [ 18] [ 4] [6011] +12:06:28 [ 19] [ 3] [418] +12:06:28 [ 22] [ 3] [021] +12:06:28 [ 25] [ 2] [01] +12:06:28 [ 28] [ 9] [D00002000] +12:06:28 [ 32] [ 6] [668899] +12:06:28 [ 35] [ 32] [2206990000121269=980212615591339] +12:06:28 [ 37] [ 12] [507902031653] +12:06:28 [ 41] [ 8] [03018003] +12:06:28 [ 42] [ 15] [APT ] +12:06:28 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:06:28 [ 49] [ 3] [418] +12:06:28 [ 52] [ 16] [BCEA1A0CC25B6BF6] +12:06:28 ============================================================================ +12:06:28 + + +waiting on router queue for slot.... +12:06:28 Sending to : +12:06:28 ============================================================================ +12:06:28 Sending to : +12:06:28 ============================================================================ +12:06:28 ============================================================================ +12:06:28 Slot Id : <125> +12:06:28 Transaction Type : REQUEST +12:06:28 Received From : +12:06:28 ============================================================================ +12:06:28 FNo. Len. Field Value +12:06:28 ============================================================================ +12:06:28 [ 1] [ 4] [0200] +12:06:28 [ 2] [ 16] [2206990000121269] +12:06:28 [ 3] [ 6] [010000] +12:06:28 [ 4] [ 12] [000050000000] +12:06:28 [ 7] [ 10] [0320120419] +12:06:28 [ 11] [ 6] [943251] +12:06:28 [ 12] [ 6] [120419] +12:06:28 [ 13] [ 4] [0320] +12:06:28 [ 15] [ 4] [0320] +12:06:28 [ 18] [ 4] [6011] +12:06:28 [ 19] [ 3] [418] +12:06:28 [ 22] [ 3] [021] +12:06:28 [ 25] [ 2] [01] +12:06:28 [ 28] [ 9] [D00002000] +12:06:28 [ 32] [ 6] [668899] +12:06:28 [ 35] [ 32] [2206990000121269=980212615591339] +12:06:28 [ 37] [ 12] [507902031653] +12:06:28 [ 41] [ 8] [03018003] +12:06:28 [ 42] [ 15] [APT ] +12:06:28 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:06:28 [ 49] [ 3] [418] +12:06:28 [ 52] [ 16] [BCEA1A0CC25B6BF6] +12:06:28 ============================================================================ +12:06:28 + + +waiting on router queue for slot.... +12:06:28 Sending to : +12:06:28 ============================================================================ +12:06:28 ============================================================================ +12:06:28 Slot Id : <125> +12:06:28 Transaction Type : REQUEST +12:06:28 Received From : +12:06:28 ============================================================================ +12:06:28 FNo. Len. Field Value +12:06:28 ============================================================================ +12:06:28 [ 1] [ 4] [0200] +12:06:28 [ 2] [ 16] [2206990000121269] +12:06:28 [ 3] [ 6] [010000] +12:06:28 [ 4] [ 12] [000050000000] +12:06:28 [ 7] [ 10] [0320120419] +12:06:28 [ 11] [ 6] [943251] +12:06:28 [ 12] [ 6] [120419] +12:06:28 [ 13] [ 4] [0320] +12:06:28 [ 15] [ 4] [0320] +12:06:28 [ 18] [ 4] [6011] +12:06:28 [ 19] [ 3] [418] +12:06:28 [ 22] [ 3] [021] +12:06:28 [ 25] [ 2] [01] +12:06:28 [ 28] [ 9] [D00002000] +12:06:28 [ 32] [ 6] [668899] +12:06:28 [ 35] [ 32] [2206990000121269=980212615591339] +12:06:28 [ 37] [ 12] [507902031653] +12:06:28 [ 41] [ 8] [03018003] +12:06:28 [ 42] [ 15] [APT ] +12:06:28 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:06:28 [ 49] [ 3] [418] +12:06:28 [ 52] [ 16] [EE1B4D3967DFCEEF] +12:06:28 ============================================================================ +12:06:28 + + +waiting on router queue for slot.... +12:06:28 Sending to : <1> +12:06:28 ============================================================================ +12:06:29 ============================================================================ +12:06:29 Slot Id : <95> +12:06:29 Transaction Type : REQUEST +12:06:29 Received From : +12:06:29 ============================================================================ +12:06:29 FNo. Len. Field Value +12:06:29 ============================================================================ +12:06:29 [ 1] [ 4] [0200] +12:06:29 [ 2] [ 16] [6213545000662084] +12:06:29 [ 3] [ 6] [010000] +12:06:29 [ 4] [ 12] [000100000000] +12:06:29 [ 7] [ 10] [0320050535] +12:06:29 [ 11] [ 6] [268895] +12:06:29 [ 12] [ 6] [120535] +12:06:29 [ 13] [ 4] [0320] +12:06:29 [ 14] [ 4] [4912] +12:06:29 [ 15] [ 4] [0320] +12:06:29 [ 18] [ 4] [6011] +12:06:29 [ 19] [ 3] [418] +12:06:29 [ 22] [ 3] [021] +12:06:29 [ 25] [ 2] [01] +12:06:29 [ 28] [ 9] [D00002000] +12:06:29 [ 32] [ 6] [180893] +12:06:29 [ 35] [ 32] [6213545000662084=491212016208631] +12:06:29 [ 37] [ 12] [507905268895] +12:06:29 [ 41] [ 8] [0363CPSH] +12:06:29 [ 42] [ 15] [999999 ] +12:06:29 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:06:29 [ 49] [ 3] [418] +12:06:29 [ 52] [ 16] [CFC3843E80C85556] +12:06:29 ============================================================================ +12:06:29 + + +waiting on router queue for slot.... +12:06:29 Sending to : +12:06:29 ============================================================================ +12:06:29 Sending to : +12:06:29 ============================================================================ +12:06:29 ============================================================================ +12:06:29 Slot Id : <95> +12:06:29 Transaction Type : REQUEST +12:06:29 Received From : +12:06:29 ============================================================================ +12:06:29 FNo. Len. Field Value +12:06:29 ============================================================================ +12:06:29 [ 1] [ 4] [0200] +12:06:29 [ 2] [ 16] [6213545000662084] +12:06:29 [ 3] [ 6] [010000] +12:06:29 [ 4] [ 12] [000100000000] +12:06:29 [ 7] [ 10] [0320050535] +12:06:29 [ 11] [ 6] [268895] +12:06:29 [ 12] [ 6] [120535] +12:06:29 [ 13] [ 4] [0320] +12:06:29 [ 14] [ 4] [4912] +12:06:29 [ 15] [ 4] [0320] +12:06:29 [ 18] [ 4] [6011] +12:06:29 [ 19] [ 3] [418] +12:06:29 [ 22] [ 3] [021] +12:06:29 [ 25] [ 2] [01] +12:06:29 [ 28] [ 9] [D00002000] +12:06:29 [ 32] [ 6] [180893] +12:06:29 [ 35] [ 32] [6213545000662084=491212016208631] +12:06:29 [ 37] [ 12] [507905268895] +12:06:29 [ 41] [ 8] [0363CPSH] +12:06:29 [ 42] [ 15] [999999 ] +12:06:29 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:06:29 [ 49] [ 3] [418] +12:06:29 [ 52] [ 16] [CFC3843E80C85556] +12:06:29 ============================================================================ +12:06:29 + + +waiting on router queue for slot.... +12:06:29 Sending to : +12:06:29 ============================================================================ +12:06:29 ============================================================================ +12:06:29 Slot Id : <95> +12:06:29 Transaction Type : REQUEST +12:06:29 Received From : +12:06:29 ============================================================================ +12:06:29 FNo. Len. Field Value +12:06:29 ============================================================================ +12:06:29 [ 1] [ 4] [0200] +12:06:29 [ 2] [ 16] [6213545000662084] +12:06:29 [ 3] [ 6] [010000] +12:06:29 [ 4] [ 12] [000100000000] +12:06:29 [ 7] [ 10] [0320050535] +12:06:29 [ 11] [ 6] [268895] +12:06:29 [ 12] [ 6] [120535] +12:06:29 [ 13] [ 4] [0320] +12:06:29 [ 14] [ 4] [4912] +12:06:29 [ 15] [ 4] [0320] +12:06:29 [ 18] [ 4] [6011] +12:06:29 [ 19] [ 3] [418] +12:06:29 [ 22] [ 3] [021] +12:06:29 [ 25] [ 2] [01] +12:06:29 [ 28] [ 9] [D00002000] +12:06:29 [ 32] [ 6] [180893] +12:06:29 [ 35] [ 32] [6213545000662084=491212016208631] +12:06:29 [ 37] [ 12] [507905268895] +12:06:29 [ 41] [ 8] [0363CPSH] +12:06:29 [ 42] [ 15] [999999 ] +12:06:29 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:06:29 [ 49] [ 3] [418] +12:06:29 [ 52] [ 16] [48E4752AFAEC61B3] +12:06:29 ============================================================================ +12:06:29 + + +waiting on router queue for slot.... +12:06:29 Sending to : <0> +12:06:29 ============================================================================ +12:06:30 ============================================================================ +12:06:30 Slot Id : <95> +12:06:30 Transaction Type : RESPONSE +12:06:30 Received From : +12:06:30 ============================================================================ +12:06:30 FNo. Len. Field Value +12:06:30 ============================================================================ +12:06:30 [ 1] [ 4] [0210] +12:06:30 [ 2] [ 16] [6213545000662084] +12:06:30 [ 3] [ 6] [010000] +12:06:30 [ 4] [ 12] [000100000000] +12:06:30 [ 7] [ 10] [0320050535] +12:06:30 [ 11] [ 6] [268895] +12:06:30 [ 12] [ 6] [120535] +12:06:30 [ 13] [ 4] [0320] +12:06:30 [ 15] [ 4] [0320] +12:06:30 [ 18] [ 4] [6011] +12:06:30 [ 19] [ 3] [418] +12:06:30 [ 32] [ 6] [180893] +12:06:30 [ 35] [ 32] [6213545000662084=491212016208631] +12:06:30 [ 37] [ 12] [507905268895] +12:06:30 [ 38] [ 6] [424901] +12:06:30 [ 39] [ 2] [00] +12:06:30 [ 41] [ 8] [0363CPSH] +12:06:30 [ 49] [ 3] [418] +12:06:30 [ 54] [ 40] [0001418C0000722655500002418C000072265550] +12:06:30 ============================================================================ +12:06:30 Sending to : +12:06:30 ============================================================================ +12:06:30 + + +waiting on router queue for slot.... +12:06:30 ============================================================================ +12:06:30 Slot Id : <125> +12:06:30 Transaction Type : RESPONSE +12:06:30 Received From : +12:06:30 ============================================================================ +12:06:30 FNo. Len. Field Value +12:06:30 ============================================================================ +12:06:30 [ 1] [ 4] [0210] +12:06:30 [ 2] [ 16] [2206990000121269] +12:06:30 [ 3] [ 6] [010000] +12:06:30 [ 4] [ 12] [000050000000] +12:06:30 [ 7] [ 10] [0320120419] +12:06:30 [ 11] [ 6] [943251] +12:06:30 [ 12] [ 6] [120419] +12:06:30 [ 13] [ 4] [0320] +12:06:30 [ 15] [ 4] [0320] +12:06:30 [ 18] [ 4] [6011] +12:06:30 [ 32] [ 6] [668899] +12:06:30 [ 35] [ 32] [2206990000121269=980212615591339] +12:06:30 [ 37] [ 12] [507902031653] +12:06:30 [ 38] [ 6] [991253] +12:06:30 [ 39] [ 2] [00] +12:06:30 [ 41] [ 8] [03018003] +12:06:30 [ 49] [ 3] [418] +12:06:30 [ 54] [ 40] [0001418C0002337720000002418C000233772000] +12:06:30 ============================================================================ +12:06:30 Sending to : +12:06:30 ============================================================================ +12:06:30 + + +waiting on router queue for slot.... +12:06:31 ============================================================================ +12:06:31 Slot Id : <95> +12:06:31 Transaction Type : RESPONSE +12:06:31 Received From : +12:06:31 ============================================================================ +12:06:31 FNo. Len. Field Value +12:06:31 ============================================================================ +12:06:31 [ 1] [ 4] [0210] +12:06:31 [ 2] [ 16] [6213545000662084] +12:06:31 [ 3] [ 6] [010000] +12:06:31 [ 4] [ 12] [000100000000] +12:06:31 [ 7] [ 10] [0320050535] +12:06:31 [ 11] [ 6] [268895] +12:06:31 [ 12] [ 6] [120535] +12:06:31 [ 13] [ 4] [0320] +12:06:31 [ 15] [ 4] [0320] +12:06:31 [ 18] [ 4] [6011] +12:06:31 [ 19] [ 3] [418] +12:06:31 [ 32] [ 6] [180893] +12:06:31 [ 35] [ 32] [6213545000662084=491212016208631] +12:06:31 [ 37] [ 12] [507905268895] +12:06:31 [ 38] [ 6] [424901] +12:06:31 [ 39] [ 2] [00] +12:06:31 [ 41] [ 8] [0363CPSH] +12:06:31 [ 49] [ 3] [418] +12:06:31 [ 54] [ 40] [0001418C0000722655500002418C000072265550] +12:06:31 ============================================================================ +12:06:31 Calculate Source COMM Id = 2 +12:06:31 ============================================================================ +12:06:31 + + +waiting on router queue for slot.... +12:06:32 ============================================================================ +12:06:32 Slot Id : <53> +12:06:32 Transaction Type : REQUEST +12:06:32 Received From : +12:06:32 ============================================================================ +12:06:32 FNo. Len. Field Value +12:06:32 ============================================================================ +12:06:32 [ 1] [ 4] [0800] +12:06:32 [ 7] [ 10] [0320050540] +12:06:32 [ 11] [ 6] [156224] +12:06:32 [ 70] [ 3] [301] +12:06:32 ============================================================================ +12:06:32 + + +waiting on router queue for slot.... +12:06:32 Sending to : +12:06:32 ============================================================================ +12:06:32 ============================================================================ +12:06:32 Slot Id : <53> +12:06:32 Transaction Type : RESPONSE +12:06:32 Received From : +12:06:32 ============================================================================ +12:06:32 FNo. Len. Field Value +12:06:32 ============================================================================ +12:06:32 [ 1] [ 4] [0810] +12:06:32 [ 7] [ 10] [0320050540] +12:06:32 [ 11] [ 6] [156224] +12:06:32 [ 39] [ 2] [00] +12:06:32 [ 70] [ 3] [301] +12:06:32 ============================================================================ +12:06:32 Calculate Source COMM Id = 2 +12:06:32 ============================================================================ +12:06:32 + + +waiting on router queue for slot.... +12:06:33 ============================================================================ +12:06:33 Slot Id : <98> +12:06:33 Transaction Type : REQUEST +12:06:33 Received From : +12:06:33 ============================================================================ +12:06:33 FNo. Len. Field Value +12:06:33 ============================================================================ +12:06:33 [ 1] [ 4] [0200] +12:06:33 [ 2] [ 16] [6213544001772299] +12:06:33 [ 3] [ 6] [010000] +12:06:33 [ 4] [ 12] [000020000000] +12:06:33 [ 7] [ 10] [0320121420] +12:06:33 [ 11] [ 6] [168920] +12:06:33 [ 12] [ 6] [121420] +12:06:33 [ 13] [ 4] [0320] +12:06:33 [ 14] [ 4] [4912] +12:06:33 [ 15] [ 4] [0320] +12:06:33 [ 18] [ 4] [6011] +12:06:33 [ 22] [ 3] [900] +12:06:33 [ 25] [ 2] [02] +12:06:33 [ 28] [ 9] [D00002000] +12:06:33 [ 32] [ 6] [220699] +12:06:33 [ 35] [ 32] [6213544001772299=491212017229872] +12:06:33 [ 37] [ 12] [507900026336] +12:06:33 [ 41] [ 8] [01000200] +12:06:33 [ 42] [ 15] [APTRA ] +12:06:33 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:06:33 [ 49] [ 3] [418] +12:06:33 [ 52] [ 16] [C4963A6DB8A430B5] +12:06:33 ============================================================================ +12:06:33 + + +waiting on router queue for slot.... +12:06:33 Sending to : +12:06:33 ============================================================================ +12:06:33 Sending to : +12:06:33 ============================================================================ +12:06:33 ============================================================================ +12:06:33 Slot Id : <98> +12:06:33 Transaction Type : REQUEST +12:06:33 Received From : +12:06:33 ============================================================================ +12:06:33 FNo. Len. Field Value +12:06:33 ============================================================================ +12:06:33 [ 1] [ 4] [0200] +12:06:33 [ 2] [ 16] [6213544001772299] +12:06:33 [ 3] [ 6] [010000] +12:06:33 [ 4] [ 12] [000020000000] +12:06:33 [ 7] [ 10] [0320121420] +12:06:33 [ 11] [ 6] [168920] +12:06:33 [ 12] [ 6] [121420] +12:06:33 [ 13] [ 4] [0320] +12:06:33 [ 14] [ 4] [4912] +12:06:33 [ 15] [ 4] [0320] +12:06:33 [ 18] [ 4] [6011] +12:06:33 [ 22] [ 3] [900] +12:06:33 [ 25] [ 2] [02] +12:06:33 [ 28] [ 9] [D00002000] +12:06:33 [ 32] [ 6] [220699] +12:06:33 [ 35] [ 32] [6213544001772299=491212017229872] +12:06:33 [ 37] [ 12] [507900026336] +12:06:33 [ 41] [ 8] [01000200] +12:06:33 [ 42] [ 15] [APTRA ] +12:06:33 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:06:33 [ 49] [ 3] [418] +12:06:33 [ 52] [ 16] [C4963A6DB8A430B5] +12:06:33 ============================================================================ +12:06:33 + + +waiting on router queue for slot.... +12:06:33 Sending to : +12:06:33 ============================================================================ +12:06:33 ============================================================================ +12:06:33 Slot Id : <98> +12:06:33 Transaction Type : REQUEST +12:06:33 Received From : +12:06:33 ============================================================================ +12:06:33 FNo. Len. Field Value +12:06:33 ============================================================================ +12:06:33 [ 1] [ 4] [0200] +12:06:33 [ 2] [ 16] [6213544001772299] +12:06:33 [ 3] [ 6] [010000] +12:06:33 [ 4] [ 12] [000020000000] +12:06:33 [ 7] [ 10] [0320121420] +12:06:33 [ 11] [ 6] [168920] +12:06:33 [ 12] [ 6] [121420] +12:06:33 [ 13] [ 4] [0320] +12:06:33 [ 14] [ 4] [4912] +12:06:33 [ 15] [ 4] [0320] +12:06:33 [ 18] [ 4] [6011] +12:06:33 [ 22] [ 3] [900] +12:06:33 [ 25] [ 2] [02] +12:06:33 [ 28] [ 9] [D00002000] +12:06:33 [ 32] [ 6] [220699] +12:06:33 [ 35] [ 32] [6213544001772299=491212017229872] +12:06:33 [ 37] [ 12] [507900026336] +12:06:33 [ 41] [ 8] [01000200] +12:06:33 [ 42] [ 15] [APTRA ] +12:06:33 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:06:33 [ 49] [ 3] [418] +12:06:33 [ 52] [ 16] [C5C0FF274A428688] +12:06:33 ============================================================================ +12:06:33 + + +waiting on router queue for slot.... +12:06:33 Sending to : <0> +12:06:33 ============================================================================ +12:06:33 ============================================================================ +12:06:33 Slot Id : <125> +12:06:33 Transaction Type : RESPONSE +12:06:33 Received From : +12:06:33 ============================================================================ +12:06:33 FNo. Len. Field Value +12:06:33 ============================================================================ +12:06:33 [ 1] [ 4] [0210] +12:06:33 [ 2] [ 16] [2206990000121269] +12:06:33 [ 3] [ 6] [010000] +12:06:33 [ 4] [ 12] [000050000000] +12:06:33 [ 7] [ 10] [0320120419] +12:06:33 [ 11] [ 6] [943251] +12:06:33 [ 12] [ 6] [120419] +12:06:33 [ 13] [ 4] [0320] +12:06:33 [ 15] [ 4] [0320] +12:06:33 [ 18] [ 4] [6011] +12:06:33 [ 32] [ 6] [668899] +12:06:33 [ 35] [ 32] [2206990000121269=980212615591339] +12:06:33 [ 37] [ 12] [507902031653] +12:06:33 [ 38] [ 6] [991253] +12:06:33 [ 39] [ 2] [00] +12:06:33 [ 41] [ 8] [03018003] +12:06:33 [ 49] [ 3] [418] +12:06:33 [ 54] [ 40] [0001418C0002337720000002418C000233772000] +12:06:33 ============================================================================ +12:06:33 Calculate Source COMM Id = 4 +12:06:33 ============================================================================ +12:06:33 + + +waiting on router queue for slot.... +12:06:34 ============================================================================ +12:06:34 Slot Id : <98> +12:06:34 Transaction Type : RESPONSE +12:06:34 Received From : +12:06:34 ============================================================================ +12:06:34 FNo. Len. Field Value +12:06:34 ============================================================================ +12:06:34 [ 1] [ 4] [0210] +12:06:34 [ 2] [ 16] [6213544001772299] +12:06:34 [ 3] [ 6] [010000] +12:06:34 [ 4] [ 12] [000020000000] +12:06:34 [ 7] [ 10] [0320121420] +12:06:34 [ 11] [ 6] [168920] +12:06:34 [ 12] [ 6] [121420] +12:06:34 [ 13] [ 4] [0320] +12:06:34 [ 15] [ 4] [0320] +12:06:34 [ 18] [ 4] [6011] +12:06:34 [ 22] [ 3] [900] +12:06:34 [ 32] [ 6] [220699] +12:06:34 [ 35] [ 32] [6213544001772299=491212017229872] +12:06:34 [ 37] [ 12] [507900026336] +12:06:34 [ 38] [ 6] [120629] +12:06:34 [ 39] [ 2] [55] +12:06:34 [ 41] [ 8] [01000200] +12:06:34 [ 49] [ 3] [418] +12:06:34 ============================================================================ +12:06:34 Sending to : +12:06:34 ============================================================================ +12:06:34 + + +waiting on router queue for slot.... +12:06:36 ============================================================================ +12:06:36 Slot Id : <98> +12:06:36 Transaction Type : RESPONSE +12:06:36 Received From : +12:06:36 ============================================================================ +12:06:36 FNo. Len. Field Value +12:06:36 ============================================================================ +12:06:36 [ 1] [ 4] [0210] +12:06:36 [ 2] [ 16] [6213544001772299] +12:06:36 [ 3] [ 6] [010000] +12:06:36 [ 4] [ 12] [000020000000] +12:06:36 [ 7] [ 10] [0320121420] +12:06:36 [ 11] [ 6] [168920] +12:06:36 [ 12] [ 6] [121420] +12:06:36 [ 13] [ 4] [0320] +12:06:36 [ 15] [ 4] [0320] +12:06:36 [ 18] [ 4] [6011] +12:06:36 [ 22] [ 3] [900] +12:06:36 [ 32] [ 6] [220699] +12:06:36 [ 35] [ 32] [6213544001772299=491212017229872] +12:06:36 [ 37] [ 12] [507900026336] +12:06:36 [ 38] [ 6] [120629] +12:06:36 [ 39] [ 2] [55] +12:06:36 [ 41] [ 8] [01000200] +12:06:36 [ 49] [ 3] [418] +12:06:36 ============================================================================ +12:06:36 Calculate Source COMM Id = 1 +12:06:36 ============================================================================ +12:06:36 + + +waiting on router queue for slot.... +12:06:48 ============================================================================ +12:06:48 Slot Id : <134> +12:06:48 Transaction Type : REQUEST +12:06:48 Received From : +12:06:48 ============================================================================ +12:06:48 FNo. Len. Field Value +12:06:48 ============================================================================ +12:06:48 [ 1] [ 4] [0800] +12:06:48 [ 7] [ 10] [0320050556] +12:06:48 [ 11] [ 6] [156225] +12:06:48 [ 70] [ 3] [301] +12:06:48 ============================================================================ +12:06:48 + + +waiting on router queue for slot.... +12:06:48 Sending to : +12:06:48 ============================================================================ +12:06:48 ============================================================================ +12:06:48 Slot Id : <134> +12:06:48 Transaction Type : RESPONSE +12:06:48 Received From : +12:06:48 ============================================================================ +12:06:48 FNo. Len. Field Value +12:06:48 ============================================================================ +12:06:48 [ 1] [ 4] [0810] +12:06:48 [ 7] [ 10] [0320050556] +12:06:48 [ 11] [ 6] [156225] +12:06:48 [ 39] [ 2] [00] +12:06:48 [ 70] [ 3] [301] +12:06:48 ============================================================================ +12:06:48 Calculate Source COMM Id = 2 +12:06:48 ============================================================================ +12:06:48 + + +waiting on router queue for slot.... +12:06:50 ============================================================================ +12:06:50 Slot Id : <103> +12:06:50 Transaction Type : REQUEST +12:06:50 Received From : +12:06:50 ============================================================================ +12:06:50 FNo. Len. Field Value +12:06:50 ============================================================================ +12:06:50 [ 1] [ 4] [0200] +12:06:50 [ 2] [ 16] [6213544002135223] +12:06:50 [ 3] [ 6] [301000] +12:06:50 [ 4] [ 12] [000000000000] +12:06:50 [ 7] [ 10] [0320120711] +12:06:50 [ 11] [ 6] [205229] +12:06:50 [ 12] [ 6] [120854] +12:06:50 [ 13] [ 4] [0320] +12:06:50 [ 14] [ 4] [4912] +12:06:50 [ 15] [ 4] [0320] +12:06:50 [ 18] [ 4] [6011] +12:06:50 [ 19] [ 3] [418] +12:06:50 [ 22] [ 3] [021] +12:06:50 [ 25] [ 2] [01] +12:06:50 [ 28] [ 9] [D00000000] +12:06:50 [ 32] [ 6] [198901] +12:06:50 [ 35] [ 32] [6213544002135223=491212013522973] +12:06:50 [ 37] [ 12] [507912205229] +12:06:50 [ 41] [ 8] [00002222] +12:06:50 [ 42] [ 15] [000000041002222] +12:06:50 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:06:50 [ 49] [ 3] [418] +12:06:50 [ 52] [ 16] [2066AD453DCA8C0D] +12:06:50 ============================================================================ +12:06:50 + + +waiting on router queue for slot.... +12:06:50 Sending to : +12:06:50 ============================================================================ +12:06:50 Sending to : +12:06:50 ============================================================================ +12:06:50 ============================================================================ +12:06:50 Slot Id : <103> +12:06:50 Transaction Type : REQUEST +12:06:50 Received From : +12:06:50 ============================================================================ +12:06:50 FNo. Len. Field Value +12:06:50 ============================================================================ +12:06:50 [ 1] [ 4] [0200] +12:06:50 [ 2] [ 16] [6213544002135223] +12:06:50 [ 3] [ 6] [301000] +12:06:50 [ 4] [ 12] [000000000000] +12:06:50 [ 7] [ 10] [0320120711] +12:06:50 [ 11] [ 6] [205229] +12:06:50 [ 12] [ 6] [120854] +12:06:50 [ 13] [ 4] [0320] +12:06:50 [ 14] [ 4] [4912] +12:06:50 [ 15] [ 4] [0320] +12:06:50 [ 18] [ 4] [6011] +12:06:50 [ 19] [ 3] [418] +12:06:50 [ 22] [ 3] [021] +12:06:50 [ 25] [ 2] [01] +12:06:50 [ 28] [ 9] [D00000000] +12:06:50 [ 32] [ 6] [198901] +12:06:50 [ 35] [ 32] [6213544002135223=491212013522973] +12:06:50 [ 37] [ 12] [507912205229] +12:06:50 [ 41] [ 8] [00002222] +12:06:50 [ 42] [ 15] [000000041002222] +12:06:50 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:06:50 [ 49] [ 3] [418] +12:06:50 [ 52] [ 16] [2066AD453DCA8C0D] +12:06:50 ============================================================================ +12:06:50 + + +waiting on router queue for slot.... +12:06:50 Sending to : +12:06:50 ============================================================================ +12:06:50 ============================================================================ +12:06:50 Slot Id : <103> +12:06:50 Transaction Type : REQUEST +12:06:50 Received From : +12:06:50 ============================================================================ +12:06:50 FNo. Len. Field Value +12:06:50 ============================================================================ +12:06:50 [ 1] [ 4] [0200] +12:06:50 [ 2] [ 16] [6213544002135223] +12:06:50 [ 3] [ 6] [301000] +12:06:50 [ 4] [ 12] [000000000000] +12:06:50 [ 7] [ 10] [0320120711] +12:06:50 [ 11] [ 6] [205229] +12:06:50 [ 12] [ 6] [120854] +12:06:50 [ 13] [ 4] [0320] +12:06:50 [ 14] [ 4] [4912] +12:06:50 [ 15] [ 4] [0320] +12:06:50 [ 18] [ 4] [6011] +12:06:50 [ 19] [ 3] [418] +12:06:50 [ 22] [ 3] [021] +12:06:50 [ 25] [ 2] [01] +12:06:50 [ 28] [ 9] [D00000000] +12:06:50 [ 32] [ 6] [198901] +12:06:50 [ 35] [ 32] [6213544002135223=491212013522973] +12:06:50 [ 37] [ 12] [507912205229] +12:06:50 [ 41] [ 8] [00002222] +12:06:50 [ 42] [ 15] [000000041002222] +12:06:50 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:06:50 [ 49] [ 3] [418] +12:06:50 [ 52] [ 16] [070430F8D90C9785] +12:06:50 ============================================================================ +12:06:50 + + +waiting on router queue for slot.... +12:06:50 Sending to : <0> +12:06:50 ============================================================================ +12:06:50 ============================================================================ +12:06:50 Slot Id : <103> +12:06:50 Transaction Type : RESPONSE +12:06:50 Received From : +12:06:50 ============================================================================ +12:06:50 FNo. Len. Field Value +12:06:50 ============================================================================ +12:06:50 [ 1] [ 4] [0210] +12:06:50 [ 2] [ 16] [6213544002135223] +12:06:50 [ 3] [ 6] [301000] +12:06:50 [ 4] [ 12] [000000000000] +12:06:50 [ 7] [ 10] [0320120711] +12:06:50 [ 11] [ 6] [205229] +12:06:50 [ 12] [ 6] [120854] +12:06:50 [ 13] [ 4] [0320] +12:06:50 [ 15] [ 4] [0320] +12:06:50 [ 18] [ 4] [6011] +12:06:50 [ 19] [ 3] [418] +12:06:50 [ 32] [ 6] [198901] +12:06:50 [ 35] [ 32] [6213544002135223=491212013522973] +12:06:50 [ 37] [ 12] [507912205229] +12:06:50 [ 38] [ 6] [354189] +12:06:50 [ 39] [ 2] [00] +12:06:50 [ 41] [ 8] [00002222] +12:06:50 [ 49] [ 3] [418] +12:06:50 [ 54] [ 40] [1001418C0000079613821002418C000007961382] +12:06:50 ============================================================================ +12:06:50 Sending to : +12:06:50 ============================================================================ +12:06:50 + + +waiting on router queue for slot.... +12:06:52 ============================================================================ +12:06:52 Slot Id : <103> +12:06:52 Transaction Type : RESPONSE +12:06:52 Received From : +12:06:52 ============================================================================ +12:06:52 FNo. Len. Field Value +12:06:52 ============================================================================ +12:06:52 [ 1] [ 4] [0210] +12:06:52 [ 2] [ 16] [6213544002135223] +12:06:52 [ 3] [ 6] [301000] +12:06:52 [ 4] [ 12] [000000000000] +12:06:52 [ 7] [ 10] [0320120711] +12:06:52 [ 11] [ 6] [205229] +12:06:52 [ 12] [ 6] [120854] +12:06:52 [ 13] [ 4] [0320] +12:06:52 [ 15] [ 4] [0320] +12:06:52 [ 18] [ 4] [6011] +12:06:52 [ 19] [ 3] [418] +12:06:52 [ 32] [ 6] [198901] +12:06:52 [ 35] [ 32] [6213544002135223=491212013522973] +12:06:52 [ 37] [ 12] [507912205229] +12:06:52 [ 38] [ 6] [354189] +12:06:52 [ 39] [ 2] [00] +12:06:52 [ 41] [ 8] [00002222] +12:06:52 [ 49] [ 3] [418] +12:06:52 [ 54] [ 40] [1001418C0000079613821002418C000007961382] +12:06:52 ============================================================================ +12:06:52 Calculate Source COMM Id = 5 +12:06:52 ============================================================================ +12:06:52 + + +waiting on router queue for slot.... +12:07:01 ============================================================================ +12:07:01 Slot Id : <77> +12:07:01 Transaction Type : REQUEST +12:07:01 Received From : +12:07:01 ============================================================================ +12:07:01 FNo. Len. Field Value +12:07:01 ============================================================================ +12:07:01 [ 1] [ 4] [0200] +12:07:01 [ 2] [ 16] [6213544002210422] +12:07:01 [ 3] [ 6] [011000] +12:07:01 [ 4] [ 12] [000005000000] +12:07:01 [ 7] [ 10] [0320121448] +12:07:01 [ 11] [ 6] [274746] +12:07:01 [ 12] [ 6] [121448] +12:07:01 [ 13] [ 4] [0320] +12:07:01 [ 14] [ 4] [4912] +12:07:01 [ 15] [ 4] [0320] +12:07:01 [ 18] [ 4] [6011] +12:07:01 [ 22] [ 3] [900] +12:07:01 [ 25] [ 2] [02] +12:07:01 [ 28] [ 9] [D00002000] +12:07:01 [ 32] [ 6] [220699] +12:07:01 [ 35] [ 32] [6213544002210422=491212011042640] +12:07:01 [ 37] [ 12] [507900057262] +12:07:01 [ 41] [ 8] [01000500] +12:07:01 [ 42] [ 15] [APTRA ] +12:07:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:01 [ 49] [ 3] [418] +12:07:01 [ 52] [ 16] [8A638619069BCE40] +12:07:01 ============================================================================ +12:07:01 + + +waiting on router queue for slot.... +12:07:01 Sending to : +12:07:01 ============================================================================ +12:07:01 Sending to : +12:07:01 ============================================================================ +12:07:01 ============================================================================ +12:07:01 Slot Id : <77> +12:07:01 Transaction Type : REQUEST +12:07:01 Received From : +12:07:01 ============================================================================ +12:07:01 FNo. Len. Field Value +12:07:01 ============================================================================ +12:07:01 [ 1] [ 4] [0200] +12:07:01 [ 2] [ 16] [6213544002210422] +12:07:01 [ 3] [ 6] [011000] +12:07:01 [ 4] [ 12] [000005000000] +12:07:01 [ 7] [ 10] [0320121448] +12:07:01 [ 11] [ 6] [274746] +12:07:01 [ 12] [ 6] [121448] +12:07:01 [ 13] [ 4] [0320] +12:07:01 [ 14] [ 4] [4912] +12:07:01 [ 15] [ 4] [0320] +12:07:01 [ 18] [ 4] [6011] +12:07:01 [ 22] [ 3] [900] +12:07:01 [ 25] [ 2] [02] +12:07:01 [ 28] [ 9] [D00002000] +12:07:01 [ 32] [ 6] [220699] +12:07:01 [ 35] [ 32] [6213544002210422=491212011042640] +12:07:01 [ 37] [ 12] [507900057262] +12:07:01 [ 41] [ 8] [01000500] +12:07:01 [ 42] [ 15] [APTRA ] +12:07:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:01 [ 49] [ 3] [418] +12:07:01 [ 52] [ 16] [8A638619069BCE40] +12:07:01 ============================================================================ +12:07:01 + + +waiting on router queue for slot.... +12:07:01 Sending to : +12:07:01 ============================================================================ +12:07:01 ============================================================================ +12:07:01 Slot Id : <77> +12:07:01 Transaction Type : REQUEST +12:07:01 Received From : +12:07:01 ============================================================================ +12:07:01 FNo. Len. Field Value +12:07:01 ============================================================================ +12:07:01 [ 1] [ 4] [0200] +12:07:01 [ 2] [ 16] [6213544002210422] +12:07:01 [ 3] [ 6] [011000] +12:07:01 [ 4] [ 12] [000005000000] +12:07:01 [ 7] [ 10] [0320121448] +12:07:01 [ 11] [ 6] [274746] +12:07:01 [ 12] [ 6] [121448] +12:07:01 [ 13] [ 4] [0320] +12:07:01 [ 14] [ 4] [4912] +12:07:01 [ 15] [ 4] [0320] +12:07:01 [ 18] [ 4] [6011] +12:07:01 [ 22] [ 3] [900] +12:07:01 [ 25] [ 2] [02] +12:07:01 [ 28] [ 9] [D00002000] +12:07:01 [ 32] [ 6] [220699] +12:07:01 [ 35] [ 32] [6213544002210422=491212011042640] +12:07:01 [ 37] [ 12] [507900057262] +12:07:01 [ 41] [ 8] [01000500] +12:07:01 [ 42] [ 15] [APTRA ] +12:07:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:01 [ 49] [ 3] [418] +12:07:01 [ 52] [ 16] [912D892D146BE759] +12:07:01 ============================================================================ +12:07:01 + + +waiting on router queue for slot.... +12:07:01 Sending to : <0> +12:07:01 ============================================================================ +12:07:02 ============================================================================ +12:07:02 Slot Id : <71> +12:07:02 Transaction Type : REQUEST +12:07:02 Received From : +12:07:02 ============================================================================ +12:07:02 FNo. Len. Field Value +12:07:02 ============================================================================ +12:07:02 [ 1] [ 4] [0200] +12:07:02 [ 2] [ 16] [6213548000499853] +12:07:02 [ 3] [ 6] [310000] +12:07:02 [ 4] [ 12] [000000000000] +12:07:02 [ 7] [ 10] [0320121449] +12:07:02 [ 11] [ 6] [223709] +12:07:02 [ 12] [ 6] [121449] +12:07:02 [ 13] [ 4] [0320] +12:07:02 [ 14] [ 4] [1809] +12:07:02 [ 15] [ 4] [0320] +12:07:02 [ 18] [ 4] [6011] +12:07:02 [ 22] [ 3] [900] +12:07:02 [ 25] [ 2] [02] +12:07:02 [ 28] [ 9] [000000000] +12:07:02 [ 32] [ 6] [220699] +12:07:02 [ 35] [ 32] [6213548000499853=180912019985176] +12:07:02 [ 37] [ 12] [507900118751] +12:07:02 [ 41] [ 8] [01001100] +12:07:02 [ 42] [ 15] [APTRA ] +12:07:02 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:02 [ 49] [ 3] [418] +12:07:02 [ 52] [ 16] [8EF91DDE0D70B559] +12:07:02 ============================================================================ +12:07:02 + + +waiting on router queue for slot.... +12:07:02 Sending to : +12:07:02 ============================================================================ +12:07:02 Sending to : +12:07:02 ============================================================================ +12:07:02 ============================================================================ +12:07:02 Slot Id : <77> +12:07:02 Transaction Type : RESPONSE +12:07:02 Received From : +12:07:02 ============================================================================ +12:07:02 FNo. Len. Field Value +12:07:02 ============================================================================ +12:07:02 [ 1] [ 4] [0210] +12:07:02 [ 2] [ 16] [6213544002210422] +12:07:02 [ 3] [ 6] [011000] +12:07:02 [ 4] [ 12] [000005000000] +12:07:02 [ 7] [ 10] [0320121448] +12:07:02 [ 11] [ 6] [274746] +12:07:02 [ 12] [ 6] [121448] +12:07:02 [ 13] [ 4] [0320] +12:07:02 [ 15] [ 4] [0320] +12:07:02 [ 18] [ 4] [6011] +12:07:02 [ 32] [ 6] [220699] +12:07:02 [ 35] [ 32] [6213544002210422=491212011042640] +12:07:02 [ 37] [ 12] [507900057262] +12:07:02 [ 38] [ 6] [409235] +12:07:02 [ 39] [ 2] [00] +12:07:02 [ 41] [ 8] [01000500] +12:07:02 [ 49] [ 3] [418] +12:07:02 [ 54] [ 40] [1001418C0000204000001002418C000020400000] +12:07:02 ============================================================================ +12:07:02 Sending to : +12:07:02 ============================================================================ +12:07:02 + + +waiting on router queue for slot.... +12:07:02 ============================================================================ +12:07:02 Slot Id : <71> +12:07:02 Transaction Type : REQUEST +12:07:02 Received From : +12:07:02 ============================================================================ +12:07:02 FNo. Len. Field Value +12:07:02 ============================================================================ +12:07:02 [ 1] [ 4] [0200] +12:07:02 [ 2] [ 16] [6213548000499853] +12:07:02 [ 3] [ 6] [310000] +12:07:02 [ 4] [ 12] [000000000000] +12:07:02 [ 7] [ 10] [0320121449] +12:07:02 [ 11] [ 6] [223709] +12:07:02 [ 12] [ 6] [121449] +12:07:02 [ 13] [ 4] [0320] +12:07:02 [ 14] [ 4] [1809] +12:07:02 [ 15] [ 4] [0320] +12:07:02 [ 18] [ 4] [6011] +12:07:02 [ 22] [ 3] [900] +12:07:02 [ 25] [ 2] [02] +12:07:02 [ 28] [ 9] [000000000] +12:07:02 [ 32] [ 6] [220699] +12:07:02 [ 35] [ 32] [6213548000499853=180912019985176] +12:07:02 [ 37] [ 12] [507900118751] +12:07:02 [ 41] [ 8] [01001100] +12:07:02 [ 42] [ 15] [APTRA ] +12:07:02 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:02 [ 49] [ 3] [418] +12:07:02 [ 52] [ 16] [8EF91DDE0D70B559] +12:07:02 ============================================================================ +12:07:02 + + +waiting on router queue for slot.... +12:07:02 Sending to : +12:07:02 ============================================================================ +12:07:02 ============================================================================ +12:07:02 Slot Id : <71> +12:07:02 Transaction Type : REQUEST +12:07:02 Received From : +12:07:02 ============================================================================ +12:07:02 FNo. Len. Field Value +12:07:02 ============================================================================ +12:07:02 [ 1] [ 4] [0200] +12:07:02 [ 2] [ 16] [6213548000499853] +12:07:02 [ 3] [ 6] [310000] +12:07:02 [ 4] [ 12] [000000000000] +12:07:02 [ 7] [ 10] [0320121449] +12:07:02 [ 11] [ 6] [223709] +12:07:02 [ 12] [ 6] [121449] +12:07:02 [ 13] [ 4] [0320] +12:07:02 [ 14] [ 4] [1809] +12:07:02 [ 15] [ 4] [0320] +12:07:02 [ 18] [ 4] [6011] +12:07:02 [ 22] [ 3] [900] +12:07:02 [ 25] [ 2] [02] +12:07:02 [ 28] [ 9] [000000000] +12:07:02 [ 32] [ 6] [220699] +12:07:02 [ 35] [ 32] [6213548000499853=180912019985176] +12:07:02 [ 37] [ 12] [507900118751] +12:07:02 [ 41] [ 8] [01001100] +12:07:02 [ 42] [ 15] [APTRA ] +12:07:02 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:02 [ 49] [ 3] [418] +12:07:02 [ 52] [ 16] [D6CFDEDF09684ED8] +12:07:02 ============================================================================ +12:07:02 + + +waiting on router queue for slot.... +12:07:02 Sending to : <0> +12:07:02 ============================================================================ +12:07:02 ============================================================================ +12:07:02 Slot Id : <71> +12:07:02 Transaction Type : RESPONSE +12:07:02 Received From : +12:07:02 ============================================================================ +12:07:02 FNo. Len. Field Value +12:07:02 ============================================================================ +12:07:02 [ 1] [ 4] [0210] +12:07:02 [ 2] [ 16] [6213548000499853] +12:07:02 [ 3] [ 6] [310000] +12:07:02 [ 4] [ 12] [000000000000] +12:07:02 [ 7] [ 10] [0320121449] +12:07:02 [ 11] [ 6] [223709] +12:07:02 [ 12] [ 6] [121449] +12:07:02 [ 13] [ 4] [0320] +12:07:02 [ 15] [ 4] [0320] +12:07:02 [ 18] [ 4] [6011] +12:07:02 [ 32] [ 6] [220699] +12:07:02 [ 35] [ 32] [6213548000499853=180912019985176] +12:07:02 [ 37] [ 12] [507900118751] +12:07:02 [ 38] [ 6] [396705] +12:07:02 [ 39] [ 2] [00] +12:07:02 [ 41] [ 8] [01001100] +12:07:02 [ 49] [ 3] [418] +12:07:02 [ 54] [ 40] [0001418C0001666394680002418C000166639468] +12:07:02 ============================================================================ +12:07:02 Sending to : +12:07:02 ============================================================================ +12:07:02 + + +waiting on router queue for slot.... +12:07:03 ============================================================================ +12:07:03 Slot Id : <77> +12:07:03 Transaction Type : RESPONSE +12:07:03 Received From : +12:07:03 ============================================================================ +12:07:03 FNo. Len. Field Value +12:07:03 ============================================================================ +12:07:03 [ 1] [ 4] [0210] +12:07:03 [ 2] [ 16] [6213544002210422] +12:07:03 [ 3] [ 6] [011000] +12:07:03 [ 4] [ 12] [000005000000] +12:07:03 [ 7] [ 10] [0320121448] +12:07:03 [ 11] [ 6] [274746] +12:07:03 [ 12] [ 6] [121448] +12:07:03 [ 13] [ 4] [0320] +12:07:03 [ 15] [ 4] [0320] +12:07:03 [ 18] [ 4] [6011] +12:07:03 [ 32] [ 6] [220699] +12:07:03 [ 35] [ 32] [6213544002210422=491212011042640] +12:07:03 [ 37] [ 12] [507900057262] +12:07:03 [ 38] [ 6] [409235] +12:07:03 [ 39] [ 2] [00] +12:07:03 [ 41] [ 8] [01000500] +12:07:03 [ 49] [ 3] [418] +12:07:03 [ 54] [ 40] [1001418C0000204000001002418C000020400000] +12:07:03 ============================================================================ +12:07:03 Calculate Source COMM Id = 1 +12:07:03 ============================================================================ +12:07:03 + + +waiting on router queue for slot.... +12:07:03 ============================================================================ +12:07:03 Slot Id : <101> +12:07:03 Transaction Type : REQUEST +12:07:03 Received From : +12:07:03 ============================================================================ +12:07:03 FNo. Len. Field Value +12:07:03 ============================================================================ +12:07:03 [ 1] [ 4] [0800] +12:07:03 [ 7] [ 10] [0320050611] +12:07:03 [ 11] [ 6] [156226] +12:07:03 [ 70] [ 3] [301] +12:07:03 ============================================================================ +12:07:03 + + +waiting on router queue for slot.... +12:07:03 Sending to : +12:07:03 ============================================================================ +12:07:03 ============================================================================ +12:07:03 Slot Id : <101> +12:07:03 Transaction Type : RESPONSE +12:07:03 Received From : +12:07:03 ============================================================================ +12:07:03 FNo. Len. Field Value +12:07:03 ============================================================================ +12:07:03 [ 1] [ 4] [0810] +12:07:03 [ 7] [ 10] [0320050611] +12:07:03 [ 11] [ 6] [156226] +12:07:03 [ 39] [ 2] [00] +12:07:03 [ 70] [ 3] [301] +12:07:03 ============================================================================ +12:07:03 Calculate Source COMM Id = 2 +12:07:03 ============================================================================ +12:07:03 + + +waiting on router queue for slot.... +12:07:04 ============================================================================ +12:07:04 Slot Id : <96> +12:07:04 Transaction Type : REQUEST +12:07:04 Received From : +12:07:04 ============================================================================ +12:07:04 FNo. Len. Field Value +12:07:04 ============================================================================ +12:07:04 [ 1] [ 4] [0800] +12:07:04 [ 2] [ 5] [02531] +12:07:04 [ 3] [ 6] [579128] +12:07:04 [ 7] [ 10] [0320050704] +12:07:04 [ 11] [ 6] [807115] +12:07:04 [ 15] [ 10] [0320050704] +12:07:04 [ 37] [ 11] [57912807115] +12:07:04 [ 70] [ 3] [001] +12:07:04 ============================================================================ +12:07:04 + + +waiting on router queue for slot.... +12:07:04 ============================================================================ +12:07:04 Slot Id : <96> +12:07:04 Transaction Type : RESPONSE +12:07:04 Received From : +12:07:04 ============================================================================ +12:07:04 FNo. Len. Field Value +12:07:04 ============================================================================ +12:07:04 [ 1] [ 4] [0810] +12:07:04 [ 7] [ 10] [0320050704] +12:07:04 [ 11] [ 6] [807115] +12:07:04 [ 15] [ 4] [0320] +12:07:04 [ 37] [ 12] [57912807115] +12:07:04 [ 39] [ 2] [00] +12:07:04 [ 70] [ 3] [001] +12:07:04 ============================================================================ +12:07:04 Sending to : +12:07:04 ============================================================================ +12:07:04 + + +waiting on router queue for slot.... +12:07:05 ============================================================================ +12:07:05 Slot Id : <71> +12:07:05 Transaction Type : RESPONSE +12:07:05 Received From : +12:07:05 ============================================================================ +12:07:05 FNo. Len. Field Value +12:07:05 ============================================================================ +12:07:05 [ 1] [ 4] [0210] +12:07:05 [ 2] [ 16] [6213548000499853] +12:07:05 [ 3] [ 6] [310000] +12:07:05 [ 4] [ 12] [000000000000] +12:07:05 [ 7] [ 10] [0320121449] +12:07:05 [ 11] [ 6] [223709] +12:07:05 [ 12] [ 6] [121449] +12:07:05 [ 13] [ 4] [0320] +12:07:05 [ 15] [ 4] [0320] +12:07:05 [ 18] [ 4] [6011] +12:07:05 [ 32] [ 6] [220699] +12:07:05 [ 35] [ 32] [6213548000499853=180912019985176] +12:07:05 [ 37] [ 12] [507900118751] +12:07:05 [ 38] [ 6] [396705] +12:07:05 [ 39] [ 2] [00] +12:07:05 [ 41] [ 8] [01001100] +12:07:05 [ 49] [ 3] [418] +12:07:05 [ 54] [ 40] [0001418C0001666394680002418C000166639468] +12:07:05 ============================================================================ +12:07:05 Calculate Source COMM Id = 1 +12:07:05 ============================================================================ +12:07:05 + + +waiting on router queue for slot.... +12:07:06 ============================================================================ +12:07:06 Slot Id : <70> +12:07:06 Transaction Type : REQUEST +12:07:06 Received From : +12:07:06 ============================================================================ +12:07:06 FNo. Len. Field Value +12:07:06 ============================================================================ +12:07:06 [ 1] [ 4] [0200] +12:07:06 [ 2] [ 16] [1808930600050355] +12:07:06 [ 3] [ 6] [011000] +12:07:06 [ 4] [ 12] [000005000000] +12:07:06 [ 7] [ 10] [0320120701] +12:07:06 [ 11] [ 6] [740043] +12:07:06 [ 12] [ 6] [120701] +12:07:06 [ 13] [ 4] [0320] +12:07:06 [ 15] [ 4] [0320] +12:07:06 [ 18] [ 4] [6011] +12:07:06 [ 22] [ 3] [900] +12:07:06 [ 25] [ 2] [02] +12:07:06 [ 28] [ 9] [D00002000] +12:07:06 [ 32] [ 6] [621354] +12:07:06 [ 35] [ 27] [1808930600050355=1803500549] +12:07:06 [ 37] [ 12] [507904269541] +12:07:06 [ 41] [ 8] [03002500] +12:07:06 [ 42] [ 15] [NATIVE ] +12:07:06 [ 43] [ 40] [Sanhkhou KM7 KaisonephomvLAO] +12:07:06 [ 49] [ 3] [418] +12:07:06 [ 52] [ 16] [71D28C07AC7F3EB2] +12:07:06 ============================================================================ +12:07:06 + + +waiting on router queue for slot.... +12:07:06 Sending to : +12:07:06 ============================================================================ +12:07:06 Sending to : +12:07:06 ============================================================================ +12:07:06 ============================================================================ +12:07:06 Slot Id : <70> +12:07:06 Transaction Type : REQUEST +12:07:06 Received From : +12:07:06 ============================================================================ +12:07:06 FNo. Len. Field Value +12:07:06 ============================================================================ +12:07:06 [ 1] [ 4] [0200] +12:07:06 [ 2] [ 16] [1808930600050355] +12:07:06 [ 3] [ 6] [011000] +12:07:06 [ 4] [ 12] [000005000000] +12:07:06 [ 7] [ 10] [0320120701] +12:07:06 [ 11] [ 6] [740043] +12:07:06 [ 12] [ 6] [120701] +12:07:06 [ 13] [ 4] [0320] +12:07:06 [ 15] [ 4] [0320] +12:07:06 [ 18] [ 4] [6011] +12:07:06 [ 22] [ 3] [900] +12:07:06 [ 25] [ 2] [02] +12:07:06 [ 28] [ 9] [D00002000] +12:07:06 [ 32] [ 6] [621354] +12:07:06 [ 35] [ 27] [1808930600050355=1803500549] +12:07:06 [ 37] [ 12] [507904269541] +12:07:06 [ 41] [ 8] [03002500] +12:07:06 [ 42] [ 15] [NATIVE ] +12:07:06 [ 43] [ 40] [Sanhkhou KM7 KaisonephomvLAO] +12:07:06 [ 49] [ 3] [418] +12:07:06 [ 52] [ 16] [71D28C07AC7F3EB2] +12:07:06 ============================================================================ +12:07:06 + + +waiting on router queue for slot.... +12:07:06 Sending to : +12:07:06 ============================================================================ +12:07:06 ============================================================================ +12:07:06 Slot Id : <70> +12:07:06 Transaction Type : REQUEST +12:07:06 Received From : +12:07:06 ============================================================================ +12:07:06 FNo. Len. Field Value +12:07:06 ============================================================================ +12:07:06 [ 1] [ 4] [0200] +12:07:06 [ 2] [ 16] [1808930600050355] +12:07:06 [ 3] [ 6] [011000] +12:07:06 [ 4] [ 12] [000005000000] +12:07:06 [ 7] [ 10] [0320120701] +12:07:06 [ 11] [ 6] [740043] +12:07:06 [ 12] [ 6] [120701] +12:07:06 [ 13] [ 4] [0320] +12:07:06 [ 15] [ 4] [0320] +12:07:06 [ 18] [ 4] [6011] +12:07:06 [ 22] [ 3] [900] +12:07:06 [ 25] [ 2] [02] +12:07:06 [ 28] [ 9] [D00002000] +12:07:06 [ 32] [ 6] [621354] +12:07:06 [ 35] [ 27] [1808930600050355=1803500549] +12:07:06 [ 37] [ 12] [507904269541] +12:07:06 [ 41] [ 8] [03002500] +12:07:06 [ 42] [ 15] [NATIVE ] +12:07:06 [ 43] [ 40] [Sanhkhou KM7 KaisonephomvLAO] +12:07:06 [ 49] [ 3] [418] +12:07:06 [ 52] [ 16] [F8D99723E33D44C5] +12:07:06 ============================================================================ +12:07:06 + + +waiting on router queue for slot.... +12:07:06 Sending to : <2> +12:07:06 ============================================================================ +12:07:09 ============================================================================ +12:07:09 Slot Id : <70> +12:07:09 Transaction Type : RESPONSE +12:07:09 Received From : +12:07:09 ============================================================================ +12:07:09 FNo. Len. Field Value +12:07:09 ============================================================================ +12:07:09 [ 1] [ 4] [0210] +12:07:09 [ 2] [ 16] [1808930600050355] +12:07:09 [ 3] [ 6] [011000] +12:07:09 [ 4] [ 12] [000005000000] +12:07:09 [ 6] [ 12] [000005000000] +12:07:09 [ 7] [ 10] [0320120701] +12:07:09 [ 11] [ 6] [740043] +12:07:09 [ 12] [ 6] [120701] +12:07:09 [ 13] [ 4] [0320] +12:07:09 [ 18] [ 4] [6011] +12:07:09 [ 19] [ 3] [418] +12:07:09 [ 22] [ 3] [021] +12:07:09 [ 32] [ 6] [621354] +12:07:09 [ 35] [ 27] [1808930600050355=1803500549] +12:07:09 [ 37] [ 12] [507904269541] +12:07:09 [ 38] [ 6] [740043] +12:07:09 [ 39] [ 2] [00] +12:07:09 [ 41] [ 8] [03002500] +12:07:09 [ 49] [ 3] [418] +12:07:09 [ 52] [ 16] [F8D99723E33D44C5] +12:07:09 [ 54] [ 20] [1001418C000098800000] +12:07:09 ============================================================================ +12:07:09 Sending to : +12:07:09 ============================================================================ +12:07:09 + + +waiting on router queue for slot.... +12:07:11 ============================================================================ +12:07:11 Slot Id : <70> +12:07:11 Transaction Type : RESPONSE +12:07:11 Received From : +12:07:11 ============================================================================ +12:07:11 FNo. Len. Field Value +12:07:11 ============================================================================ +12:07:11 [ 1] [ 4] [0210] +12:07:11 [ 2] [ 16] [1808930600050355] +12:07:11 [ 3] [ 6] [011000] +12:07:11 [ 4] [ 12] [000005000000] +12:07:11 [ 6] [ 12] [000005000000] +12:07:11 [ 7] [ 10] [0320120701] +12:07:11 [ 11] [ 6] [740043] +12:07:11 [ 12] [ 6] [120701] +12:07:11 [ 13] [ 4] [0320] +12:07:11 [ 18] [ 4] [6011] +12:07:11 [ 19] [ 3] [418] +12:07:11 [ 22] [ 3] [021] +12:07:11 [ 32] [ 6] [621354] +12:07:11 [ 35] [ 27] [1808930600050355=1803500549] +12:07:11 [ 37] [ 12] [507904269541] +12:07:11 [ 38] [ 6] [740043] +12:07:11 [ 39] [ 2] [00] +12:07:11 [ 41] [ 8] [03002500] +12:07:11 [ 49] [ 3] [418] +12:07:11 [ 52] [ 16] [F8D99723E33D44C5] +12:07:11 [ 54] [ 20] [1001418C000098800000] +12:07:11 ============================================================================ +12:07:11 Calculate Source COMM Id = 0 +12:07:11 ============================================================================ +12:07:11 + + +waiting on router queue for slot.... +12:07:12 ============================================================================ +12:07:12 Slot Id : <109> +12:07:12 Transaction Type : REQUEST +12:07:12 Received From : +12:07:12 ============================================================================ +12:07:12 FNo. Len. Field Value +12:07:12 ============================================================================ +12:07:12 [ 1] [ 4] [0200] +12:07:12 [ 2] [ 16] [6213541000679236] +12:07:12 [ 3] [ 6] [010000] +12:07:12 [ 4] [ 12] [000010000000] +12:07:12 [ 7] [ 10] [0320120503] +12:07:12 [ 11] [ 6] [943284] +12:07:12 [ 12] [ 6] [120503] +12:07:12 [ 13] [ 4] [0320] +12:07:12 [ 15] [ 4] [0320] +12:07:12 [ 18] [ 4] [6011] +12:07:12 [ 19] [ 3] [418] +12:07:12 [ 22] [ 3] [021] +12:07:12 [ 25] [ 2] [01] +12:07:12 [ 28] [ 9] [D00002000] +12:07:12 [ 32] [ 6] [668899] +12:07:12 [ 35] [ 32] [6213541000679236=491212017923835] +12:07:12 [ 37] [ 12] [507900996166] +12:07:12 [ 41] [ 8] [03304001] +12:07:12 [ 42] [ 15] [APT ] +12:07:12 [ 43] [ 40] [ TONEPHEUNG UNIT TONEPHEUN] +12:07:12 [ 49] [ 3] [418] +12:07:12 [ 52] [ 16] [381AD545EA03A6B0] +12:07:12 ============================================================================ +12:07:12 + + +waiting on router queue for slot.... +12:07:12 Sending to : +12:07:12 ============================================================================ +12:07:12 Sending to : +12:07:12 ============================================================================ +12:07:12 ============================================================================ +12:07:12 Slot Id : <109> +12:07:12 Transaction Type : REQUEST +12:07:12 Received From : +12:07:12 ============================================================================ +12:07:12 FNo. Len. Field Value +12:07:12 ============================================================================ +12:07:12 [ 1] [ 4] [0200] +12:07:12 [ 2] [ 16] [6213541000679236] +12:07:12 [ 3] [ 6] [010000] +12:07:12 [ 4] [ 12] [000010000000] +12:07:12 [ 7] [ 10] [0320120503] +12:07:12 [ 11] [ 6] [943284] +12:07:12 [ 12] [ 6] [120503] +12:07:12 [ 13] [ 4] [0320] +12:07:12 [ 15] [ 4] [0320] +12:07:12 [ 18] [ 4] [6011] +12:07:12 [ 19] [ 3] [418] +12:07:12 [ 22] [ 3] [021] +12:07:12 [ 25] [ 2] [01] +12:07:12 [ 28] [ 9] [D00002000] +12:07:12 [ 32] [ 6] [668899] +12:07:12 [ 35] [ 32] [6213541000679236=491212017923835] +12:07:12 [ 37] [ 12] [507900996166] +12:07:12 [ 41] [ 8] [03304001] +12:07:12 [ 42] [ 15] [APT ] +12:07:12 [ 43] [ 40] [ TONEPHEUNG UNIT TONEPHEUN] +12:07:12 [ 49] [ 3] [418] +12:07:12 [ 52] [ 16] [381AD545EA03A6B0] +12:07:12 ============================================================================ +12:07:12 + + +waiting on router queue for slot.... +12:07:12 Sending to : +12:07:12 ============================================================================ +12:07:12 ============================================================================ +12:07:12 Slot Id : <109> +12:07:12 Transaction Type : REQUEST +12:07:12 Received From : +12:07:12 ============================================================================ +12:07:12 FNo. Len. Field Value +12:07:12 ============================================================================ +12:07:12 [ 1] [ 4] [0200] +12:07:12 [ 2] [ 16] [6213541000679236] +12:07:12 [ 3] [ 6] [010000] +12:07:12 [ 4] [ 12] [000010000000] +12:07:12 [ 7] [ 10] [0320120503] +12:07:12 [ 11] [ 6] [943284] +12:07:12 [ 12] [ 6] [120503] +12:07:12 [ 13] [ 4] [0320] +12:07:12 [ 15] [ 4] [0320] +12:07:12 [ 18] [ 4] [6011] +12:07:12 [ 19] [ 3] [418] +12:07:12 [ 22] [ 3] [021] +12:07:12 [ 25] [ 2] [01] +12:07:12 [ 28] [ 9] [D00002000] +12:07:12 [ 32] [ 6] [668899] +12:07:12 [ 35] [ 32] [6213541000679236=491212017923835] +12:07:12 [ 37] [ 12] [507900996166] +12:07:12 [ 41] [ 8] [03304001] +12:07:12 [ 42] [ 15] [APT ] +12:07:12 [ 43] [ 40] [ TONEPHEUNG UNIT TONEPHEUN] +12:07:12 [ 49] [ 3] [418] +12:07:12 [ 52] [ 16] [653B8D2F13AECD0B] +12:07:12 ============================================================================ +12:07:12 + + +waiting on router queue for slot.... +12:07:12 Sending to : <0> +12:07:12 ============================================================================ +12:07:14 ============================================================================ +12:07:14 Slot Id : <109> +12:07:14 Transaction Type : RESPONSE +12:07:14 Received From : +12:07:14 ============================================================================ +12:07:14 FNo. Len. Field Value +12:07:14 ============================================================================ +12:07:14 [ 1] [ 4] [0210] +12:07:14 [ 2] [ 16] [6213541000679236] +12:07:14 [ 3] [ 6] [010000] +12:07:14 [ 4] [ 12] [000010000000] +12:07:14 [ 7] [ 10] [0320120503] +12:07:14 [ 11] [ 6] [943284] +12:07:14 [ 12] [ 6] [120503] +12:07:14 [ 13] [ 4] [0320] +12:07:14 [ 15] [ 4] [0320] +12:07:14 [ 18] [ 4] [6011] +12:07:14 [ 19] [ 3] [418] +12:07:14 [ 32] [ 6] [668899] +12:07:14 [ 35] [ 32] [6213541000679236=491212017923835] +12:07:14 [ 37] [ 12] [507900996166] +12:07:14 [ 38] [ 6] [548854] +12:07:14 [ 39] [ 2] [00] +12:07:14 [ 41] [ 8] [03304001] +12:07:14 [ 49] [ 3] [418] +12:07:14 [ 54] [ 40] [0001418C0000655657790002418C000065565779] +12:07:14 ============================================================================ +12:07:14 Sending to : +12:07:14 ============================================================================ +12:07:14 + + +waiting on router queue for slot.... +12:07:16 ============================================================================ +12:07:16 Slot Id : <109> +12:07:16 Transaction Type : RESPONSE +12:07:16 Received From : +12:07:16 ============================================================================ +12:07:16 FNo. Len. Field Value +12:07:16 ============================================================================ +12:07:16 [ 1] [ 4] [0210] +12:07:16 [ 2] [ 16] [6213541000679236] +12:07:16 [ 3] [ 6] [010000] +12:07:16 [ 4] [ 12] [000010000000] +12:07:16 [ 7] [ 10] [0320120503] +12:07:16 [ 11] [ 6] [943284] +12:07:16 [ 12] [ 6] [120503] +12:07:16 [ 13] [ 4] [0320] +12:07:16 [ 15] [ 4] [0320] +12:07:16 [ 18] [ 4] [6011] +12:07:16 [ 19] [ 3] [418] +12:07:16 [ 32] [ 6] [668899] +12:07:16 [ 35] [ 32] [6213541000679236=491212017923835] +12:07:16 [ 37] [ 12] [507900996166] +12:07:16 [ 38] [ 6] [548854] +12:07:16 [ 39] [ 2] [00] +12:07:16 [ 41] [ 8] [03304001] +12:07:16 [ 49] [ 3] [418] +12:07:16 [ 54] [ 40] [0001418C0000655657790002418C000065565779] +12:07:16 ============================================================================ +12:07:16 Calculate Source COMM Id = 4 +12:07:16 ============================================================================ +12:07:16 + + +waiting on router queue for slot.... +12:07:19 ============================================================================ +12:07:19 Slot Id : <102> +12:07:19 Transaction Type : REQUEST +12:07:19 Received From : +12:07:19 ============================================================================ +12:07:19 FNo. Len. Field Value +12:07:19 ============================================================================ +12:07:19 [ 1] [ 4] [0800] +12:07:19 [ 7] [ 10] [0320050627] +12:07:19 [ 11] [ 6] [156227] +12:07:19 [ 70] [ 3] [301] +12:07:19 ============================================================================ +12:07:19 + + +waiting on router queue for slot.... +12:07:19 Sending to : +12:07:19 ============================================================================ +12:07:19 ============================================================================ +12:07:19 Slot Id : <102> +12:07:19 Transaction Type : RESPONSE +12:07:19 Received From : +12:07:19 ============================================================================ +12:07:19 FNo. Len. Field Value +12:07:19 ============================================================================ +12:07:19 [ 1] [ 4] [0810] +12:07:19 [ 7] [ 10] [0320050627] +12:07:19 [ 11] [ 6] [156227] +12:07:19 [ 39] [ 2] [00] +12:07:19 [ 70] [ 3] [301] +12:07:19 ============================================================================ +12:07:19 Calculate Source COMM Id = 2 +12:07:19 ============================================================================ +12:07:19 + + +waiting on router queue for slot.... +12:07:28 ============================================================================ +12:07:28 Slot Id : <85> +12:07:28 Transaction Type : REQUEST +12:07:28 Received From : +12:07:28 ============================================================================ +12:07:28 FNo. Len. Field Value +12:07:28 ============================================================================ +12:07:28 [ 1] [ 4] [0200] +12:07:28 [ 2] [ 16] [6213548000499853] +12:07:28 [ 3] [ 6] [010000] +12:07:28 [ 4] [ 12] [000030000000] +12:07:28 [ 7] [ 10] [0320121515] +12:07:28 [ 11] [ 6] [223710] +12:07:28 [ 12] [ 6] [121515] +12:07:28 [ 13] [ 4] [0320] +12:07:28 [ 14] [ 4] [1809] +12:07:28 [ 15] [ 4] [0320] +12:07:28 [ 18] [ 4] [6011] +12:07:28 [ 22] [ 3] [900] +12:07:28 [ 25] [ 2] [02] +12:07:28 [ 28] [ 9] [D00002000] +12:07:28 [ 32] [ 6] [220699] +12:07:28 [ 35] [ 32] [6213548000499853=180912019985176] +12:07:28 [ 37] [ 12] [507900118752] +12:07:28 [ 41] [ 8] [01001100] +12:07:28 [ 42] [ 15] [APTRA ] +12:07:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:28 [ 49] [ 3] [418] +12:07:28 [ 52] [ 16] [8EF91DDE0D70B559] +12:07:28 ============================================================================ +12:07:28 + + +waiting on router queue for slot.... +12:07:28 Sending to : +12:07:28 ============================================================================ +12:07:28 Sending to : +12:07:28 ============================================================================ +12:07:28 ============================================================================ +12:07:28 Slot Id : <85> +12:07:28 Transaction Type : REQUEST +12:07:28 Received From : +12:07:28 ============================================================================ +12:07:28 FNo. Len. Field Value +12:07:28 ============================================================================ +12:07:28 [ 1] [ 4] [0200] +12:07:28 [ 2] [ 16] [6213548000499853] +12:07:28 [ 3] [ 6] [010000] +12:07:28 [ 4] [ 12] [000030000000] +12:07:28 [ 7] [ 10] [0320121515] +12:07:28 [ 11] [ 6] [223710] +12:07:28 [ 12] [ 6] [121515] +12:07:28 [ 13] [ 4] [0320] +12:07:28 [ 14] [ 4] [1809] +12:07:28 [ 15] [ 4] [0320] +12:07:28 [ 18] [ 4] [6011] +12:07:28 [ 22] [ 3] [900] +12:07:28 [ 25] [ 2] [02] +12:07:28 [ 28] [ 9] [D00002000] +12:07:28 [ 32] [ 6] [220699] +12:07:28 [ 35] [ 32] [6213548000499853=180912019985176] +12:07:28 [ 37] [ 12] [507900118752] +12:07:28 [ 41] [ 8] [01001100] +12:07:28 [ 42] [ 15] [APTRA ] +12:07:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:28 [ 49] [ 3] [418] +12:07:28 [ 52] [ 16] [8EF91DDE0D70B559] +12:07:28 ============================================================================ +12:07:28 + + +waiting on router queue for slot.... +12:07:28 Sending to : +12:07:28 ============================================================================ +12:07:28 ============================================================================ +12:07:28 Slot Id : <85> +12:07:28 Transaction Type : REQUEST +12:07:28 Received From : +12:07:28 ============================================================================ +12:07:28 FNo. Len. Field Value +12:07:28 ============================================================================ +12:07:28 [ 1] [ 4] [0200] +12:07:28 [ 2] [ 16] [6213548000499853] +12:07:28 [ 3] [ 6] [010000] +12:07:28 [ 4] [ 12] [000030000000] +12:07:28 [ 7] [ 10] [0320121515] +12:07:28 [ 11] [ 6] [223710] +12:07:28 [ 12] [ 6] [121515] +12:07:28 [ 13] [ 4] [0320] +12:07:28 [ 14] [ 4] [1809] +12:07:28 [ 15] [ 4] [0320] +12:07:28 [ 18] [ 4] [6011] +12:07:28 [ 22] [ 3] [900] +12:07:28 [ 25] [ 2] [02] +12:07:28 [ 28] [ 9] [D00002000] +12:07:28 [ 32] [ 6] [220699] +12:07:28 [ 35] [ 32] [6213548000499853=180912019985176] +12:07:28 [ 37] [ 12] [507900118752] +12:07:28 [ 41] [ 8] [01001100] +12:07:28 [ 42] [ 15] [APTRA ] +12:07:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:28 [ 49] [ 3] [418] +12:07:28 [ 52] [ 16] [D6CFDEDF09684ED8] +12:07:28 ============================================================================ +12:07:28 + + +waiting on router queue for slot.... +12:07:28 Sending to : <0> +12:07:28 ============================================================================ +12:07:29 ============================================================================ +12:07:29 Slot Id : <85> +12:07:29 Transaction Type : RESPONSE +12:07:29 Received From : +12:07:29 ============================================================================ +12:07:29 FNo. Len. Field Value +12:07:29 ============================================================================ +12:07:29 [ 1] [ 4] [0210] +12:07:29 [ 2] [ 16] [6213548000499853] +12:07:29 [ 3] [ 6] [010000] +12:07:29 [ 4] [ 12] [000030000000] +12:07:29 [ 7] [ 10] [0320121515] +12:07:29 [ 11] [ 6] [223710] +12:07:29 [ 12] [ 6] [121515] +12:07:29 [ 13] [ 4] [0320] +12:07:29 [ 15] [ 4] [0320] +12:07:29 [ 18] [ 4] [6011] +12:07:29 [ 32] [ 6] [220699] +12:07:29 [ 35] [ 32] [6213548000499853=180912019985176] +12:07:29 [ 37] [ 12] [507900118752] +12:07:29 [ 38] [ 6] [459165] +12:07:29 [ 39] [ 2] [00] +12:07:29 [ 41] [ 8] [01001100] +12:07:29 [ 49] [ 3] [418] +12:07:29 [ 54] [ 40] [0001418C0001364394680002418C000136439468] +12:07:29 ============================================================================ +12:07:29 Sending to : +12:07:29 ============================================================================ +12:07:29 + + +waiting on router queue for slot.... +12:07:30 ============================================================================ +12:07:30 Slot Id : <136> +12:07:30 Transaction Type : REQUEST +12:07:30 Received From : +12:07:30 ============================================================================ +12:07:30 FNo. Len. Field Value +12:07:30 ============================================================================ +12:07:30 [ 1] [ 4] [0200] +12:07:30 [ 2] [ 16] [6213545000912851] +12:07:30 [ 3] [ 6] [010000] +12:07:30 [ 4] [ 12] [000100000000] +12:07:30 [ 7] [ 10] [0320050637] +12:07:30 [ 11] [ 6] [268903] +12:07:30 [ 12] [ 6] [120637] +12:07:30 [ 13] [ 4] [0320] +12:07:30 [ 14] [ 4] [4912] +12:07:30 [ 15] [ 4] [0320] +12:07:30 [ 18] [ 4] [6011] +12:07:30 [ 19] [ 3] [418] +12:07:30 [ 22] [ 3] [021] +12:07:30 [ 25] [ 2] [01] +12:07:30 [ 28] [ 9] [D00002000] +12:07:30 [ 32] [ 6] [180893] +12:07:30 [ 35] [ 32] [6213545000912851=491212011285457] +12:07:30 [ 37] [ 12] [507905268903] +12:07:30 [ 41] [ 8] [0465UDNM] +12:07:30 [ 42] [ 15] [999999 ] +12:07:30 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:07:30 [ 49] [ 3] [418] +12:07:30 [ 52] [ 16] [37DE6EA1E4868702] +12:07:30 ============================================================================ +12:07:30 + + +waiting on router queue for slot.... +12:07:30 Sending to : +12:07:30 ============================================================================ +12:07:30 Sending to : +12:07:30 ============================================================================ +12:07:30 ============================================================================ +12:07:30 Slot Id : <85> +12:07:30 Transaction Type : RESPONSE +12:07:30 Received From : +12:07:30 ============================================================================ +12:07:30 FNo. Len. Field Value +12:07:30 ============================================================================ +12:07:30 [ 1] [ 4] [0210] +12:07:30 [ 2] [ 16] [6213548000499853] +12:07:30 [ 3] [ 6] [010000] +12:07:30 [ 4] [ 12] [000030000000] +12:07:30 [ 7] [ 10] [0320121515] +12:07:30 [ 11] [ 6] [223710] +12:07:30 [ 12] [ 6] [121515] +12:07:30 [ 13] [ 4] [0320] +12:07:30 [ 15] [ 4] [0320] +12:07:30 [ 18] [ 4] [6011] +12:07:30 [ 32] [ 6] [220699] +12:07:30 [ 35] [ 32] [6213548000499853=180912019985176] +12:07:30 [ 37] [ 12] [507900118752] +12:07:30 [ 38] [ 6] [459165] +12:07:30 [ 39] [ 2] [00] +12:07:30 [ 41] [ 8] [01001100] +12:07:30 [ 49] [ 3] [418] +12:07:30 [ 54] [ 40] [0001418C0001364394680002418C000136439468] +12:07:30 ============================================================================ +12:07:30 Calculate Source COMM Id = 1 +12:07:30 ============================================================================ +12:07:30 + + +waiting on router queue for slot.... +12:07:30 ============================================================================ +12:07:30 Slot Id : <136> +12:07:30 Transaction Type : REQUEST +12:07:30 Received From : +12:07:30 ============================================================================ +12:07:30 FNo. Len. Field Value +12:07:30 ============================================================================ +12:07:30 [ 1] [ 4] [0200] +12:07:30 [ 2] [ 16] [6213545000912851] +12:07:30 [ 3] [ 6] [010000] +12:07:30 [ 4] [ 12] [000100000000] +12:07:30 [ 7] [ 10] [0320050637] +12:07:30 [ 11] [ 6] [268903] +12:07:30 [ 12] [ 6] [120637] +12:07:30 [ 13] [ 4] [0320] +12:07:30 [ 14] [ 4] [4912] +12:07:30 [ 15] [ 4] [0320] +12:07:30 [ 18] [ 4] [6011] +12:07:30 [ 19] [ 3] [418] +12:07:30 [ 22] [ 3] [021] +12:07:30 [ 25] [ 2] [01] +12:07:30 [ 28] [ 9] [D00002000] +12:07:30 [ 32] [ 6] [180893] +12:07:30 [ 35] [ 32] [6213545000912851=491212011285457] +12:07:30 [ 37] [ 12] [507905268903] +12:07:30 [ 41] [ 8] [0465UDNM] +12:07:30 [ 42] [ 15] [999999 ] +12:07:30 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:07:30 [ 49] [ 3] [418] +12:07:30 [ 52] [ 16] [37DE6EA1E4868702] +12:07:30 ============================================================================ +12:07:30 + + +waiting on router queue for slot.... +12:07:30 Sending to : +12:07:30 ============================================================================ +12:07:30 ============================================================================ +12:07:30 Slot Id : <136> +12:07:30 Transaction Type : REQUEST +12:07:30 Received From : +12:07:30 ============================================================================ +12:07:30 FNo. Len. Field Value +12:07:30 ============================================================================ +12:07:30 [ 1] [ 4] [0200] +12:07:30 [ 2] [ 16] [6213545000912851] +12:07:30 [ 3] [ 6] [010000] +12:07:30 [ 4] [ 12] [000100000000] +12:07:30 [ 7] [ 10] [0320050637] +12:07:30 [ 11] [ 6] [268903] +12:07:30 [ 12] [ 6] [120637] +12:07:30 [ 13] [ 4] [0320] +12:07:30 [ 14] [ 4] [4912] +12:07:30 [ 15] [ 4] [0320] +12:07:30 [ 18] [ 4] [6011] +12:07:30 [ 19] [ 3] [418] +12:07:30 [ 22] [ 3] [021] +12:07:30 [ 25] [ 2] [01] +12:07:30 [ 28] [ 9] [D00002000] +12:07:30 [ 32] [ 6] [180893] +12:07:30 [ 35] [ 32] [6213545000912851=491212011285457] +12:07:30 [ 37] [ 12] [507905268903] +12:07:30 [ 41] [ 8] [0465UDNM] +12:07:30 [ 42] [ 15] [999999 ] +12:07:30 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:07:30 [ 49] [ 3] [418] +12:07:30 [ 52] [ 16] [DABBF45152737B74] +12:07:30 ============================================================================ +12:07:30 + + +waiting on router queue for slot.... +12:07:30 Sending to : <0> +12:07:30 ============================================================================ +12:07:31 ============================================================================ +12:07:31 Slot Id : <129> +12:07:31 Transaction Type : REQUEST +12:07:31 Received From : +12:07:31 ============================================================================ +12:07:31 FNo. Len. Field Value +12:07:31 ============================================================================ +12:07:31 [ 1] [ 4] [0200] +12:07:31 [ 2] [ 16] [6213548000206142] +12:07:31 [ 3] [ 6] [010000] +12:07:31 [ 4] [ 12] [000030000000] +12:07:31 [ 7] [ 10] [0320120522] +12:07:31 [ 11] [ 6] [943295] +12:07:31 [ 12] [ 6] [120522] +12:07:31 [ 13] [ 4] [0320] +12:07:31 [ 15] [ 4] [0320] +12:07:31 [ 18] [ 4] [6011] +12:07:31 [ 19] [ 3] [418] +12:07:31 [ 22] [ 3] [021] +12:07:31 [ 25] [ 2] [01] +12:07:31 [ 28] [ 9] [D00002000] +12:07:31 [ 32] [ 6] [668899] +12:07:31 [ 35] [ 32] [6213548000206142=171212010614712] +12:07:31 [ 37] [ 12] [507900977518] +12:07:31 [ 41] [ 8] [03407002] +12:07:31 [ 42] [ 15] [APT ] +12:07:31 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +12:07:31 [ 49] [ 3] [418] +12:07:31 [ 52] [ 16] [D386739ED860E04B] +12:07:31 ============================================================================ +12:07:31 + + +waiting on router queue for slot.... +12:07:31 Sending to : +12:07:31 ============================================================================ +12:07:31 Sending to : +12:07:31 ============================================================================ +12:07:31 ============================================================================ +12:07:31 Slot Id : <136> +12:07:31 Transaction Type : RESPONSE +12:07:31 Received From : +12:07:31 ============================================================================ +12:07:31 FNo. Len. Field Value +12:07:31 ============================================================================ +12:07:31 [ 1] [ 4] [0210] +12:07:31 [ 2] [ 16] [6213545000912851] +12:07:31 [ 3] [ 6] [010000] +12:07:31 [ 4] [ 12] [000100000000] +12:07:31 [ 7] [ 10] [0320050637] +12:07:31 [ 11] [ 6] [268903] +12:07:31 [ 12] [ 6] [120637] +12:07:31 [ 13] [ 4] [0320] +12:07:31 [ 15] [ 4] [0320] +12:07:31 [ 18] [ 4] [6011] +12:07:31 [ 19] [ 3] [418] +12:07:31 [ 32] [ 6] [180893] +12:07:31 [ 35] [ 32] [6213545000912851=491212011285457] +12:07:31 [ 37] [ 12] [507905268903] +12:07:31 [ 38] [ 6] [616612] +12:07:31 [ 39] [ 2] [00] +12:07:31 [ 41] [ 8] [0465UDNM] +12:07:31 [ 49] [ 3] [418] +12:07:31 [ 54] [ 40] [0001418C0001445965240002418C000144596524] +12:07:31 ============================================================================ +12:07:31 Sending to : +12:07:31 ============================================================================ +12:07:31 + + +waiting on router queue for slot.... +12:07:31 ============================================================================ +12:07:31 Slot Id : <129> +12:07:31 Transaction Type : REQUEST +12:07:31 Received From : +12:07:31 ============================================================================ +12:07:31 FNo. Len. Field Value +12:07:31 ============================================================================ +12:07:31 [ 1] [ 4] [0200] +12:07:31 [ 2] [ 16] [6213548000206142] +12:07:31 [ 3] [ 6] [010000] +12:07:31 [ 4] [ 12] [000030000000] +12:07:31 [ 7] [ 10] [0320120522] +12:07:31 [ 11] [ 6] [943295] +12:07:31 [ 12] [ 6] [120522] +12:07:31 [ 13] [ 4] [0320] +12:07:31 [ 15] [ 4] [0320] +12:07:31 [ 18] [ 4] [6011] +12:07:31 [ 19] [ 3] [418] +12:07:31 [ 22] [ 3] [021] +12:07:31 [ 25] [ 2] [01] +12:07:31 [ 28] [ 9] [D00002000] +12:07:31 [ 32] [ 6] [668899] +12:07:31 [ 35] [ 32] [6213548000206142=171212010614712] +12:07:31 [ 37] [ 12] [507900977518] +12:07:31 [ 41] [ 8] [03407002] +12:07:31 [ 42] [ 15] [APT ] +12:07:31 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +12:07:31 [ 49] [ 3] [418] +12:07:31 [ 52] [ 16] [D386739ED860E04B] +12:07:31 ============================================================================ +12:07:31 + + +waiting on router queue for slot.... +12:07:31 Sending to : +12:07:31 ============================================================================ +12:07:31 ============================================================================ +12:07:31 Slot Id : <129> +12:07:31 Transaction Type : REQUEST +12:07:31 Received From : +12:07:31 ============================================================================ +12:07:31 FNo. Len. Field Value +12:07:31 ============================================================================ +12:07:31 [ 1] [ 4] [0200] +12:07:31 [ 2] [ 16] [6213548000206142] +12:07:31 [ 3] [ 6] [010000] +12:07:31 [ 4] [ 12] [000030000000] +12:07:31 [ 7] [ 10] [0320120522] +12:07:31 [ 11] [ 6] [943295] +12:07:31 [ 12] [ 6] [120522] +12:07:31 [ 13] [ 4] [0320] +12:07:31 [ 15] [ 4] [0320] +12:07:31 [ 18] [ 4] [6011] +12:07:31 [ 19] [ 3] [418] +12:07:31 [ 22] [ 3] [021] +12:07:31 [ 25] [ 2] [01] +12:07:31 [ 28] [ 9] [D00002000] +12:07:31 [ 32] [ 6] [668899] +12:07:31 [ 35] [ 32] [6213548000206142=171212010614712] +12:07:31 [ 37] [ 12] [507900977518] +12:07:31 [ 41] [ 8] [03407002] +12:07:31 [ 42] [ 15] [APT ] +12:07:31 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +12:07:31 [ 49] [ 3] [418] +12:07:31 [ 52] [ 16] [42D9530BCBFD3D0B] +12:07:31 ============================================================================ +12:07:31 + + +waiting on router queue for slot.... +12:07:31 Sending to : <0> +12:07:31 ============================================================================ +12:07:32 ============================================================================ +12:07:32 Slot Id : <129> +12:07:32 Transaction Type : RESPONSE +12:07:32 Received From : +12:07:32 ============================================================================ +12:07:32 FNo. Len. Field Value +12:07:32 ============================================================================ +12:07:32 [ 1] [ 4] [0210] +12:07:32 [ 2] [ 16] [6213548000206142] +12:07:32 [ 3] [ 6] [010000] +12:07:32 [ 4] [ 12] [000030000000] +12:07:32 [ 7] [ 10] [0320120522] +12:07:32 [ 11] [ 6] [943295] +12:07:32 [ 12] [ 6] [120522] +12:07:32 [ 13] [ 4] [0320] +12:07:32 [ 15] [ 4] [0320] +12:07:32 [ 18] [ 4] [6011] +12:07:32 [ 19] [ 3] [418] +12:07:32 [ 32] [ 6] [668899] +12:07:32 [ 35] [ 32] [6213548000206142=171212010614712] +12:07:32 [ 37] [ 12] [507900977518] +12:07:32 [ 38] [ 6] [943295] +12:07:32 [ 39] [ 2] [51] +12:07:32 [ 41] [ 8] [03407002] +12:07:32 [ 49] [ 3] [418] +12:07:32 [ 54] [ 40] [0001418C0000351297960002418C000035129796] +12:07:32 ============================================================================ +12:07:32 Sending to : +12:07:32 ============================================================================ +12:07:32 + + +waiting on router queue for slot.... +12:07:32 ============================================================================ +12:07:32 Slot Id : <136> +12:07:32 Transaction Type : RESPONSE +12:07:32 Received From : +12:07:32 ============================================================================ +12:07:32 FNo. Len. Field Value +12:07:32 ============================================================================ +12:07:32 [ 1] [ 4] [0210] +12:07:32 [ 2] [ 16] [6213545000912851] +12:07:32 [ 3] [ 6] [010000] +12:07:32 [ 4] [ 12] [000100000000] +12:07:32 [ 7] [ 10] [0320050637] +12:07:32 [ 11] [ 6] [268903] +12:07:32 [ 12] [ 6] [120637] +12:07:32 [ 13] [ 4] [0320] +12:07:32 [ 15] [ 4] [0320] +12:07:32 [ 18] [ 4] [6011] +12:07:32 [ 19] [ 3] [418] +12:07:32 [ 32] [ 6] [180893] +12:07:32 [ 35] [ 32] [6213545000912851=491212011285457] +12:07:32 [ 37] [ 12] [507905268903] +12:07:32 [ 38] [ 6] [616612] +12:07:32 [ 39] [ 2] [00] +12:07:32 [ 41] [ 8] [0465UDNM] +12:07:32 [ 49] [ 3] [418] +12:07:32 [ 54] [ 40] [0001418C0001445965240002418C000144596524] +12:07:32 ============================================================================ +12:07:32 Calculate Source COMM Id = 2 +12:07:32 ============================================================================ +12:07:32 + + +waiting on router queue for slot.... +12:07:33 ============================================================================ +12:07:33 Slot Id : <129> +12:07:33 Transaction Type : RESPONSE +12:07:33 Received From : +12:07:33 ============================================================================ +12:07:33 FNo. Len. Field Value +12:07:33 ============================================================================ +12:07:33 [ 1] [ 4] [0210] +12:07:33 [ 2] [ 16] [6213548000206142] +12:07:33 [ 3] [ 6] [010000] +12:07:33 [ 4] [ 12] [000030000000] +12:07:33 [ 7] [ 10] [0320120522] +12:07:33 [ 11] [ 6] [943295] +12:07:33 [ 12] [ 6] [120522] +12:07:33 [ 13] [ 4] [0320] +12:07:33 [ 15] [ 4] [0320] +12:07:33 [ 18] [ 4] [6011] +12:07:33 [ 19] [ 3] [418] +12:07:33 [ 32] [ 6] [668899] +12:07:33 [ 35] [ 32] [6213548000206142=171212010614712] +12:07:33 [ 37] [ 12] [507900977518] +12:07:33 [ 38] [ 6] [943295] +12:07:33 [ 39] [ 2] [51] +12:07:33 [ 41] [ 8] [03407002] +12:07:33 [ 49] [ 3] [418] +12:07:33 [ 54] [ 40] [0001418C0000351297960002418C000035129796] +12:07:33 ============================================================================ +12:07:33 Calculate Source COMM Id = 4 +12:07:33 ============================================================================ +12:07:33 + + +waiting on router queue for slot.... +12:07:43 ============================================================================ +12:07:43 Slot Id : <131> +12:07:43 Transaction Type : REQUEST +12:07:43 Received From : +12:07:43 ============================================================================ +12:07:43 FNo. Len. Field Value +12:07:43 ============================================================================ +12:07:43 [ 1] [ 4] [0200] +12:07:43 [ 2] [ 16] [6213544002115563] +12:07:43 [ 3] [ 6] [311000] +12:07:43 [ 4] [ 12] [000000000000] +12:07:43 [ 7] [ 10] [0320121530] +12:07:43 [ 11] [ 6] [259209] +12:07:43 [ 12] [ 6] [121530] +12:07:43 [ 13] [ 4] [0320] +12:07:43 [ 14] [ 4] [4912] +12:07:43 [ 15] [ 4] [0320] +12:07:43 [ 18] [ 4] [6011] +12:07:43 [ 22] [ 3] [900] +12:07:43 [ 25] [ 2] [02] +12:07:43 [ 28] [ 9] [000000000] +12:07:43 [ 32] [ 6] [220699] +12:07:43 [ 35] [ 32] [6213544002115563=491212011556926] +12:07:43 [ 37] [ 12] [507900040569] +12:07:43 [ 41] [ 8] [01000400] +12:07:43 [ 42] [ 15] [APTRA ] +12:07:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:43 [ 49] [ 3] [418] +12:07:43 [ 52] [ 16] [5EC553A39EC2914E] +12:07:43 ============================================================================ +12:07:43 + + +waiting on router queue for slot.... +12:07:43 Sending to : +12:07:43 ============================================================================ +12:07:43 Sending to : +12:07:43 ============================================================================ +12:07:43 ============================================================================ +12:07:43 Slot Id : <131> +12:07:43 Transaction Type : REQUEST +12:07:43 Received From : +12:07:43 ============================================================================ +12:07:43 FNo. Len. Field Value +12:07:43 ============================================================================ +12:07:43 [ 1] [ 4] [0200] +12:07:43 [ 2] [ 16] [6213544002115563] +12:07:43 [ 3] [ 6] [311000] +12:07:43 [ 4] [ 12] [000000000000] +12:07:43 [ 7] [ 10] [0320121530] +12:07:43 [ 11] [ 6] [259209] +12:07:43 [ 12] [ 6] [121530] +12:07:43 [ 13] [ 4] [0320] +12:07:43 [ 14] [ 4] [4912] +12:07:43 [ 15] [ 4] [0320] +12:07:43 [ 18] [ 4] [6011] +12:07:43 [ 22] [ 3] [900] +12:07:43 [ 25] [ 2] [02] +12:07:43 [ 28] [ 9] [000000000] +12:07:43 [ 32] [ 6] [220699] +12:07:43 [ 35] [ 32] [6213544002115563=491212011556926] +12:07:43 [ 37] [ 12] [507900040569] +12:07:43 [ 41] [ 8] [01000400] +12:07:43 [ 42] [ 15] [APTRA ] +12:07:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:43 [ 49] [ 3] [418] +12:07:43 [ 52] [ 16] [5EC553A39EC2914E] +12:07:43 ============================================================================ +12:07:43 + + +waiting on router queue for slot.... +12:07:43 Sending to : +12:07:43 ============================================================================ +12:07:43 ============================================================================ +12:07:43 Slot Id : <131> +12:07:43 Transaction Type : REQUEST +12:07:43 Received From : +12:07:43 ============================================================================ +12:07:43 FNo. Len. Field Value +12:07:43 ============================================================================ +12:07:43 [ 1] [ 4] [0200] +12:07:43 [ 2] [ 16] [6213544002115563] +12:07:43 [ 3] [ 6] [311000] +12:07:43 [ 4] [ 12] [000000000000] +12:07:43 [ 7] [ 10] [0320121530] +12:07:43 [ 11] [ 6] [259209] +12:07:43 [ 12] [ 6] [121530] +12:07:43 [ 13] [ 4] [0320] +12:07:43 [ 14] [ 4] [4912] +12:07:43 [ 15] [ 4] [0320] +12:07:43 [ 18] [ 4] [6011] +12:07:43 [ 22] [ 3] [900] +12:07:43 [ 25] [ 2] [02] +12:07:43 [ 28] [ 9] [000000000] +12:07:43 [ 32] [ 6] [220699] +12:07:43 [ 35] [ 32] [6213544002115563=491212011556926] +12:07:43 [ 37] [ 12] [507900040569] +12:07:43 [ 41] [ 8] [01000400] +12:07:43 [ 42] [ 15] [APTRA ] +12:07:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:43 [ 49] [ 3] [418] +12:07:43 [ 52] [ 16] [F77FDDE1B8650518] +12:07:43 ============================================================================ +12:07:43 + + +waiting on router queue for slot.... +12:07:43 Sending to : <0> +12:07:43 ============================================================================ +12:07:44 ============================================================================ +12:07:44 Slot Id : <131> +12:07:44 Transaction Type : RESPONSE +12:07:44 Received From : +12:07:44 ============================================================================ +12:07:44 FNo. Len. Field Value +12:07:44 ============================================================================ +12:07:44 [ 1] [ 4] [0210] +12:07:44 [ 2] [ 16] [6213544002115563] +12:07:44 [ 3] [ 6] [311000] +12:07:44 [ 4] [ 12] [000000000000] +12:07:44 [ 7] [ 10] [0320121530] +12:07:44 [ 11] [ 6] [259209] +12:07:44 [ 12] [ 6] [121530] +12:07:44 [ 13] [ 4] [0320] +12:07:44 [ 15] [ 4] [0320] +12:07:44 [ 18] [ 4] [6011] +12:07:44 [ 32] [ 6] [220699] +12:07:44 [ 35] [ 32] [6213544002115563=491212011556926] +12:07:44 [ 37] [ 12] [507900040569] +12:07:44 [ 38] [ 6] [661453] +12:07:44 [ 39] [ 2] [00] +12:07:44 [ 41] [ 8] [01000400] +12:07:44 [ 49] [ 3] [418] +12:07:44 [ 54] [ 40] [1001418C0001459342321002418C000145934232] +12:07:44 ============================================================================ +12:07:44 Sending to : +12:07:44 ============================================================================ +12:07:44 + + +waiting on router queue for slot.... +12:07:45 ============================================================================ +12:07:45 Slot Id : <131> +12:07:45 Transaction Type : RESPONSE +12:07:45 Received From : +12:07:45 ============================================================================ +12:07:45 FNo. Len. Field Value +12:07:45 ============================================================================ +12:07:45 [ 1] [ 4] [0210] +12:07:45 [ 2] [ 16] [6213544002115563] +12:07:45 [ 3] [ 6] [311000] +12:07:45 [ 4] [ 12] [000000000000] +12:07:45 [ 7] [ 10] [0320121530] +12:07:45 [ 11] [ 6] [259209] +12:07:45 [ 12] [ 6] [121530] +12:07:45 [ 13] [ 4] [0320] +12:07:45 [ 15] [ 4] [0320] +12:07:45 [ 18] [ 4] [6011] +12:07:45 [ 32] [ 6] [220699] +12:07:45 [ 35] [ 32] [6213544002115563=491212011556926] +12:07:45 [ 37] [ 12] [507900040569] +12:07:45 [ 38] [ 6] [661453] +12:07:45 [ 39] [ 2] [00] +12:07:45 [ 41] [ 8] [01000400] +12:07:45 [ 49] [ 3] [418] +12:07:45 [ 54] [ 40] [1001418C0001459342321002418C000145934232] +12:07:45 ============================================================================ +12:07:45 Calculate Source COMM Id = 1 +12:07:45 ============================================================================ +12:07:45 + + +waiting on router queue for slot.... +12:07:46 ============================================================================ +12:07:46 Slot Id : <105> +12:07:46 Transaction Type : REQUEST +12:07:46 Received From : +12:07:46 ============================================================================ +12:07:46 FNo. Len. Field Value +12:07:46 ============================================================================ +12:07:46 [ 1] [ 4] [0200] +12:07:46 [ 2] [ 16] [6213544002135223] +12:07:46 [ 3] [ 6] [011000] +12:07:46 [ 4] [ 12] [000020000000] +12:07:46 [ 7] [ 10] [0320120807] +12:07:46 [ 11] [ 6] [205244] +12:07:46 [ 12] [ 6] [120950] +12:07:46 [ 13] [ 4] [0320] +12:07:46 [ 14] [ 4] [4912] +12:07:46 [ 15] [ 4] [0320] +12:07:46 [ 18] [ 4] [6011] +12:07:46 [ 19] [ 3] [418] +12:07:46 [ 22] [ 3] [021] +12:07:46 [ 25] [ 2] [01] +12:07:46 [ 28] [ 9] [D00002000] +12:07:46 [ 32] [ 6] [198901] +12:07:46 [ 35] [ 32] [6213544002135223=491212013522973] +12:07:46 [ 37] [ 12] [507912205244] +12:07:46 [ 41] [ 8] [00002222] +12:07:46 [ 42] [ 15] [000000041002222] +12:07:46 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:07:46 [ 49] [ 3] [418] +12:07:46 [ 52] [ 16] [2066AD453DCA8C0D] +12:07:46 ============================================================================ +12:07:46 + + +waiting on router queue for slot.... +12:07:46 Sending to : +12:07:46 ============================================================================ +12:07:46 Sending to : +12:07:46 ============================================================================ +12:07:46 ============================================================================ +12:07:46 Slot Id : <105> +12:07:46 Transaction Type : REQUEST +12:07:46 Received From : +12:07:46 ============================================================================ +12:07:46 FNo. Len. Field Value +12:07:46 ============================================================================ +12:07:46 [ 1] [ 4] [0200] +12:07:46 [ 2] [ 16] [6213544002135223] +12:07:46 [ 3] [ 6] [011000] +12:07:46 [ 4] [ 12] [000020000000] +12:07:46 [ 7] [ 10] [0320120807] +12:07:46 [ 11] [ 6] [205244] +12:07:46 [ 12] [ 6] [120950] +12:07:46 [ 13] [ 4] [0320] +12:07:46 [ 14] [ 4] [4912] +12:07:46 [ 15] [ 4] [0320] +12:07:46 [ 18] [ 4] [6011] +12:07:46 [ 19] [ 3] [418] +12:07:46 [ 22] [ 3] [021] +12:07:46 [ 25] [ 2] [01] +12:07:46 [ 28] [ 9] [D00002000] +12:07:46 [ 32] [ 6] [198901] +12:07:46 [ 35] [ 32] [6213544002135223=491212013522973] +12:07:46 [ 37] [ 12] [507912205244] +12:07:46 [ 41] [ 8] [00002222] +12:07:46 [ 42] [ 15] [000000041002222] +12:07:46 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:07:46 [ 49] [ 3] [418] +12:07:46 [ 52] [ 16] [2066AD453DCA8C0D] +12:07:46 ============================================================================ +12:07:46 + + +waiting on router queue for slot.... +12:07:46 Sending to : +12:07:46 ============================================================================ +12:07:46 ============================================================================ +12:07:46 Slot Id : <105> +12:07:46 Transaction Type : REQUEST +12:07:46 Received From : +12:07:46 ============================================================================ +12:07:46 FNo. Len. Field Value +12:07:46 ============================================================================ +12:07:46 [ 1] [ 4] [0200] +12:07:46 [ 2] [ 16] [6213544002135223] +12:07:46 [ 3] [ 6] [011000] +12:07:46 [ 4] [ 12] [000020000000] +12:07:46 [ 7] [ 10] [0320120807] +12:07:46 [ 11] [ 6] [205244] +12:07:46 [ 12] [ 6] [120950] +12:07:46 [ 13] [ 4] [0320] +12:07:46 [ 14] [ 4] [4912] +12:07:46 [ 15] [ 4] [0320] +12:07:46 [ 18] [ 4] [6011] +12:07:46 [ 19] [ 3] [418] +12:07:46 [ 22] [ 3] [021] +12:07:46 [ 25] [ 2] [01] +12:07:46 [ 28] [ 9] [D00002000] +12:07:46 [ 32] [ 6] [198901] +12:07:46 [ 35] [ 32] [6213544002135223=491212013522973] +12:07:46 [ 37] [ 12] [507912205244] +12:07:46 [ 41] [ 8] [00002222] +12:07:46 [ 42] [ 15] [000000041002222] +12:07:46 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:07:46 [ 49] [ 3] [418] +12:07:46 [ 52] [ 16] [070430F8D90C9785] +12:07:46 ============================================================================ +12:07:46 + + +waiting on router queue for slot.... +12:07:46 Sending to : <0> +12:07:46 ============================================================================ +12:07:46 ============================================================================ +12:07:46 Slot Id : <87> +12:07:46 Transaction Type : REQUEST +12:07:46 Received From : +12:07:46 ============================================================================ +12:07:46 FNo. Len. Field Value +12:07:46 ============================================================================ +12:07:46 [ 1] [ 4] [0800] +12:07:46 [ 7] [ 10] [0320050654] +12:07:46 [ 11] [ 6] [156228] +12:07:46 [ 70] [ 3] [301] +12:07:46 ============================================================================ +12:07:46 + + +waiting on router queue for slot.... +12:07:46 Sending to : +12:07:46 ============================================================================ +12:07:46 ============================================================================ +12:07:46 Slot Id : <87> +12:07:46 Transaction Type : RESPONSE +12:07:46 Received From : +12:07:46 ============================================================================ +12:07:46 FNo. Len. Field Value +12:07:46 ============================================================================ +12:07:46 [ 1] [ 4] [0810] +12:07:46 [ 7] [ 10] [0320050654] +12:07:46 [ 11] [ 6] [156228] +12:07:46 [ 39] [ 2] [00] +12:07:46 [ 70] [ 3] [301] +12:07:46 ============================================================================ +12:07:46 Calculate Source COMM Id = 2 +12:07:46 ============================================================================ +12:07:46 + + +waiting on router queue for slot.... +12:07:47 ============================================================================ +12:07:47 Slot Id : <105> +12:07:47 Transaction Type : RESPONSE +12:07:47 Received From : +12:07:47 ============================================================================ +12:07:47 FNo. Len. Field Value +12:07:47 ============================================================================ +12:07:47 [ 1] [ 4] [0210] +12:07:47 [ 2] [ 16] [6213544002135223] +12:07:47 [ 3] [ 6] [011000] +12:07:47 [ 4] [ 12] [000020000000] +12:07:47 [ 7] [ 10] [0320120807] +12:07:47 [ 11] [ 6] [205244] +12:07:47 [ 12] [ 6] [120950] +12:07:47 [ 13] [ 4] [0320] +12:07:47 [ 15] [ 4] [0320] +12:07:47 [ 18] [ 4] [6011] +12:07:47 [ 19] [ 3] [418] +12:07:47 [ 32] [ 6] [198901] +12:07:47 [ 35] [ 32] [6213544002135223=491212013522973] +12:07:47 [ 37] [ 12] [507912205244] +12:07:47 [ 38] [ 6] [205244] +12:07:47 [ 39] [ 2] [51] +12:07:47 [ 41] [ 8] [00002222] +12:07:47 [ 49] [ 3] [418] +12:07:47 [ 54] [ 40] [1001418C0000079613821002418C000007961382] +12:07:47 ============================================================================ +12:07:47 Sending to : +12:07:47 ============================================================================ +12:07:47 + + +waiting on router queue for slot.... +12:07:48 ============================================================================ +12:07:48 Slot Id : <105> +12:07:48 Transaction Type : RESPONSE +12:07:48 Received From : +12:07:48 ============================================================================ +12:07:48 FNo. Len. Field Value +12:07:48 ============================================================================ +12:07:48 [ 1] [ 4] [0210] +12:07:48 [ 2] [ 16] [6213544002135223] +12:07:48 [ 3] [ 6] [011000] +12:07:48 [ 4] [ 12] [000020000000] +12:07:48 [ 7] [ 10] [0320120807] +12:07:48 [ 11] [ 6] [205244] +12:07:48 [ 12] [ 6] [120950] +12:07:48 [ 13] [ 4] [0320] +12:07:48 [ 15] [ 4] [0320] +12:07:48 [ 18] [ 4] [6011] +12:07:48 [ 19] [ 3] [418] +12:07:48 [ 32] [ 6] [198901] +12:07:48 [ 35] [ 32] [6213544002135223=491212013522973] +12:07:48 [ 37] [ 12] [507912205244] +12:07:48 [ 38] [ 6] [205244] +12:07:48 [ 39] [ 2] [51] +12:07:48 [ 41] [ 8] [00002222] +12:07:48 [ 49] [ 3] [418] +12:07:48 [ 54] [ 40] [1001418C0000079613821002418C000007961382] +12:07:48 ============================================================================ +12:07:48 Calculate Source COMM Id = 5 +12:07:48 ============================================================================ +12:07:48 + + +waiting on router queue for slot.... +12:07:49 ============================================================================ +12:07:49 Slot Id : <104> +12:07:49 Transaction Type : REQUEST +12:07:49 Received From : +12:07:49 ============================================================================ +12:07:49 FNo. Len. Field Value +12:07:49 ============================================================================ +12:07:49 [ 1] [ 4] [0200] +12:07:49 [ 2] [ 16] [6213544001772299] +12:07:49 [ 3] [ 6] [010000] +12:07:49 [ 4] [ 12] [000020000000] +12:07:49 [ 7] [ 10] [0320121536] +12:07:49 [ 11] [ 6] [168922] +12:07:49 [ 12] [ 6] [121536] +12:07:49 [ 13] [ 4] [0320] +12:07:49 [ 14] [ 4] [4912] +12:07:49 [ 15] [ 4] [0320] +12:07:49 [ 18] [ 4] [6011] +12:07:49 [ 22] [ 3] [900] +12:07:49 [ 25] [ 2] [02] +12:07:49 [ 28] [ 9] [D00002000] +12:07:49 [ 32] [ 6] [220699] +12:07:49 [ 35] [ 32] [6213544001772299=491212017229872] +12:07:49 [ 37] [ 12] [507900026338] +12:07:49 [ 41] [ 8] [01000200] +12:07:49 [ 42] [ 15] [APTRA ] +12:07:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:49 [ 49] [ 3] [418] +12:07:49 [ 52] [ 16] [FBCC9DDB2D834E1A] +12:07:49 ============================================================================ +12:07:49 + + +waiting on router queue for slot.... +12:07:49 Sending to : +12:07:49 ============================================================================ +12:07:49 Sending to : +12:07:49 ============================================================================ +12:07:49 ============================================================================ +12:07:49 Slot Id : <104> +12:07:49 Transaction Type : REQUEST +12:07:49 Received From : +12:07:49 ============================================================================ +12:07:49 FNo. Len. Field Value +12:07:49 ============================================================================ +12:07:49 [ 1] [ 4] [0200] +12:07:49 [ 2] [ 16] [6213544001772299] +12:07:49 [ 3] [ 6] [010000] +12:07:49 [ 4] [ 12] [000020000000] +12:07:49 [ 7] [ 10] [0320121536] +12:07:49 [ 11] [ 6] [168922] +12:07:49 [ 12] [ 6] [121536] +12:07:49 [ 13] [ 4] [0320] +12:07:49 [ 14] [ 4] [4912] +12:07:49 [ 15] [ 4] [0320] +12:07:49 [ 18] [ 4] [6011] +12:07:49 [ 22] [ 3] [900] +12:07:49 [ 25] [ 2] [02] +12:07:49 [ 28] [ 9] [D00002000] +12:07:49 [ 32] [ 6] [220699] +12:07:49 [ 35] [ 32] [6213544001772299=491212017229872] +12:07:49 [ 37] [ 12] [507900026338] +12:07:49 [ 41] [ 8] [01000200] +12:07:49 [ 42] [ 15] [APTRA ] +12:07:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:49 [ 49] [ 3] [418] +12:07:49 [ 52] [ 16] [FBCC9DDB2D834E1A] +12:07:49 ============================================================================ +12:07:49 + + +waiting on router queue for slot.... +12:07:49 Sending to : +12:07:49 ============================================================================ +12:07:49 ============================================================================ +12:07:49 Slot Id : <104> +12:07:49 Transaction Type : REQUEST +12:07:49 Received From : +12:07:49 ============================================================================ +12:07:49 FNo. Len. Field Value +12:07:49 ============================================================================ +12:07:49 [ 1] [ 4] [0200] +12:07:49 [ 2] [ 16] [6213544001772299] +12:07:49 [ 3] [ 6] [010000] +12:07:49 [ 4] [ 12] [000020000000] +12:07:49 [ 7] [ 10] [0320121536] +12:07:49 [ 11] [ 6] [168922] +12:07:49 [ 12] [ 6] [121536] +12:07:49 [ 13] [ 4] [0320] +12:07:49 [ 14] [ 4] [4912] +12:07:49 [ 15] [ 4] [0320] +12:07:49 [ 18] [ 4] [6011] +12:07:49 [ 22] [ 3] [900] +12:07:49 [ 25] [ 2] [02] +12:07:49 [ 28] [ 9] [D00002000] +12:07:49 [ 32] [ 6] [220699] +12:07:49 [ 35] [ 32] [6213544001772299=491212017229872] +12:07:49 [ 37] [ 12] [507900026338] +12:07:49 [ 41] [ 8] [01000200] +12:07:49 [ 42] [ 15] [APTRA ] +12:07:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:07:49 [ 49] [ 3] [418] +12:07:49 [ 52] [ 16] [120CA0BCD9C36E5B] +12:07:49 ============================================================================ +12:07:49 + + +waiting on router queue for slot.... +12:07:49 Sending to : <0> +12:07:49 ============================================================================ +12:07:50 ============================================================================ +12:07:50 Slot Id : <104> +12:07:50 Transaction Type : RESPONSE +12:07:50 Received From : +12:07:50 ============================================================================ +12:07:50 FNo. Len. Field Value +12:07:50 ============================================================================ +12:07:50 [ 1] [ 4] [0210] +12:07:50 [ 2] [ 16] [6213544001772299] +12:07:50 [ 3] [ 6] [010000] +12:07:50 [ 4] [ 12] [000020000000] +12:07:50 [ 7] [ 10] [0320121536] +12:07:50 [ 11] [ 6] [168922] +12:07:50 [ 12] [ 6] [121536] +12:07:50 [ 13] [ 4] [0320] +12:07:50 [ 15] [ 4] [0320] +12:07:50 [ 18] [ 4] [6011] +12:07:50 [ 22] [ 3] [900] +12:07:50 [ 32] [ 6] [220699] +12:07:50 [ 35] [ 32] [6213544001772299=491212017229872] +12:07:50 [ 37] [ 12] [507900026338] +12:07:50 [ 38] [ 6] [120745] +12:07:50 [ 39] [ 2] [55] +12:07:50 [ 41] [ 8] [01000200] +12:07:50 [ 49] [ 3] [418] +12:07:50 ============================================================================ +12:07:50 Sending to : +12:07:50 ============================================================================ +12:07:50 + + +waiting on router queue for slot.... +12:07:52 ============================================================================ +12:07:52 Slot Id : <104> +12:07:52 Transaction Type : RESPONSE +12:07:52 Received From : +12:07:52 ============================================================================ +12:07:52 FNo. Len. Field Value +12:07:52 ============================================================================ +12:07:52 [ 1] [ 4] [0210] +12:07:52 [ 2] [ 16] [6213544001772299] +12:07:52 [ 3] [ 6] [010000] +12:07:52 [ 4] [ 12] [000020000000] +12:07:52 [ 7] [ 10] [0320121536] +12:07:52 [ 11] [ 6] [168922] +12:07:52 [ 12] [ 6] [121536] +12:07:52 [ 13] [ 4] [0320] +12:07:52 [ 15] [ 4] [0320] +12:07:52 [ 18] [ 4] [6011] +12:07:52 [ 22] [ 3] [900] +12:07:52 [ 32] [ 6] [220699] +12:07:52 [ 35] [ 32] [6213544001772299=491212017229872] +12:07:52 [ 37] [ 12] [507900026338] +12:07:52 [ 38] [ 6] [120745] +12:07:52 [ 39] [ 2] [55] +12:07:52 [ 41] [ 8] [01000200] +12:07:52 [ 49] [ 3] [418] +12:07:52 ============================================================================ +12:07:52 Calculate Source COMM Id = 1 +12:07:52 ============================================================================ +12:07:52 + + +waiting on router queue for slot.... +12:07:57 ============================================================================ +12:07:57 Slot Id : <138> +12:07:57 Transaction Type : REQUEST +12:07:57 Received From : +12:07:57 ============================================================================ +12:07:57 FNo. Len. Field Value +12:07:57 ============================================================================ +12:07:57 [ 1] [ 4] [0800] +12:07:57 [ 7] [ 10] [0320050704] +12:07:57 [ 11] [ 6] [156229] +12:07:57 [ 70] [ 3] [301] +12:07:57 ============================================================================ +12:07:57 + + +waiting on router queue for slot.... +12:07:57 Sending to : +12:07:57 ============================================================================ +12:07:57 ============================================================================ +12:07:57 Slot Id : <138> +12:07:57 Transaction Type : RESPONSE +12:07:57 Received From : +12:07:57 ============================================================================ +12:07:57 FNo. Len. Field Value +12:07:57 ============================================================================ +12:07:57 [ 1] [ 4] [0810] +12:07:57 [ 7] [ 10] [0320050704] +12:07:57 [ 11] [ 6] [156229] +12:07:57 [ 39] [ 2] [00] +12:07:57 [ 70] [ 3] [301] +12:07:57 ============================================================================ +12:07:57 Calculate Source COMM Id = 2 +12:07:57 ============================================================================ +12:07:57 + + +waiting on router queue for slot.... +12:08:01 ============================================================================ +12:08:01 Slot Id : <112> +12:08:01 Transaction Type : REQUEST +12:08:01 Received From : +12:08:01 ============================================================================ +12:08:01 FNo. Len. Field Value +12:08:01 ============================================================================ +12:08:01 [ 1] [ 4] [0200] +12:08:01 [ 2] [ 16] [6213548000206142] +12:08:01 [ 3] [ 6] [010000] +12:08:01 [ 4] [ 12] [000020000000] +12:08:01 [ 7] [ 10] [0320120552] +12:08:01 [ 11] [ 6] [943320] +12:08:01 [ 12] [ 6] [120552] +12:08:01 [ 13] [ 4] [0320] +12:08:01 [ 15] [ 4] [0320] +12:08:01 [ 18] [ 4] [6011] +12:08:01 [ 19] [ 3] [418] +12:08:01 [ 22] [ 3] [021] +12:08:01 [ 25] [ 2] [01] +12:08:01 [ 28] [ 9] [D00002000] +12:08:01 [ 32] [ 6] [668899] +12:08:01 [ 35] [ 32] [6213548000206142=171212010614712] +12:08:01 [ 37] [ 12] [507900977519] +12:08:01 [ 41] [ 8] [03407002] +12:08:01 [ 42] [ 15] [APT ] +12:08:01 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +12:08:01 [ 49] [ 3] [418] +12:08:01 [ 52] [ 16] [D386739ED860E04B] +12:08:01 ============================================================================ +12:08:01 + + +waiting on router queue for slot.... +12:08:01 Sending to : +12:08:01 ============================================================================ +12:08:01 Sending to : +12:08:01 ============================================================================ +12:08:01 ============================================================================ +12:08:01 Slot Id : <112> +12:08:01 Transaction Type : REQUEST +12:08:01 Received From : +12:08:01 ============================================================================ +12:08:01 FNo. Len. Field Value +12:08:01 ============================================================================ +12:08:01 [ 1] [ 4] [0200] +12:08:01 [ 2] [ 16] [6213548000206142] +12:08:01 [ 3] [ 6] [010000] +12:08:01 [ 4] [ 12] [000020000000] +12:08:01 [ 7] [ 10] [0320120552] +12:08:01 [ 11] [ 6] [943320] +12:08:01 [ 12] [ 6] [120552] +12:08:01 [ 13] [ 4] [0320] +12:08:01 [ 15] [ 4] [0320] +12:08:01 [ 18] [ 4] [6011] +12:08:01 [ 19] [ 3] [418] +12:08:01 [ 22] [ 3] [021] +12:08:01 [ 25] [ 2] [01] +12:08:01 [ 28] [ 9] [D00002000] +12:08:01 [ 32] [ 6] [668899] +12:08:01 [ 35] [ 32] [6213548000206142=171212010614712] +12:08:01 [ 37] [ 12] [507900977519] +12:08:01 [ 41] [ 8] [03407002] +12:08:01 [ 42] [ 15] [APT ] +12:08:01 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +12:08:01 [ 49] [ 3] [418] +12:08:01 [ 52] [ 16] [D386739ED860E04B] +12:08:01 ============================================================================ +12:08:01 + + +waiting on router queue for slot.... +12:08:01 Sending to : +12:08:01 ============================================================================ +12:08:01 ============================================================================ +12:08:01 Slot Id : <112> +12:08:01 Transaction Type : REQUEST +12:08:01 Received From : +12:08:01 ============================================================================ +12:08:01 FNo. Len. Field Value +12:08:01 ============================================================================ +12:08:01 [ 1] [ 4] [0200] +12:08:01 [ 2] [ 16] [6213548000206142] +12:08:01 [ 3] [ 6] [010000] +12:08:01 [ 4] [ 12] [000020000000] +12:08:01 [ 7] [ 10] [0320120552] +12:08:01 [ 11] [ 6] [943320] +12:08:01 [ 12] [ 6] [120552] +12:08:01 [ 13] [ 4] [0320] +12:08:01 [ 15] [ 4] [0320] +12:08:01 [ 18] [ 4] [6011] +12:08:01 [ 19] [ 3] [418] +12:08:01 [ 22] [ 3] [021] +12:08:01 [ 25] [ 2] [01] +12:08:01 [ 28] [ 9] [D00002000] +12:08:01 [ 32] [ 6] [668899] +12:08:01 [ 35] [ 32] [6213548000206142=171212010614712] +12:08:01 [ 37] [ 12] [507900977519] +12:08:01 [ 41] [ 8] [03407002] +12:08:01 [ 42] [ 15] [APT ] +12:08:01 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +12:08:01 [ 49] [ 3] [418] +12:08:01 [ 52] [ 16] [42D9530BCBFD3D0B] +12:08:01 ============================================================================ +12:08:01 + + +waiting on router queue for slot.... +12:08:01 Sending to : <0> +12:08:01 ============================================================================ +12:08:02 ============================================================================ +12:08:02 Slot Id : <112> +12:08:02 Transaction Type : RESPONSE +12:08:02 Received From : +12:08:02 ============================================================================ +12:08:02 FNo. Len. Field Value +12:08:02 ============================================================================ +12:08:02 [ 1] [ 4] [0210] +12:08:02 [ 2] [ 16] [6213548000206142] +12:08:02 [ 3] [ 6] [010000] +12:08:02 [ 4] [ 12] [000020000000] +12:08:02 [ 7] [ 10] [0320120552] +12:08:02 [ 11] [ 6] [943320] +12:08:02 [ 12] [ 6] [120552] +12:08:02 [ 13] [ 4] [0320] +12:08:02 [ 15] [ 4] [0320] +12:08:02 [ 18] [ 4] [6011] +12:08:02 [ 19] [ 3] [418] +12:08:02 [ 32] [ 6] [668899] +12:08:02 [ 35] [ 32] [6213548000206142=171212010614712] +12:08:02 [ 37] [ 12] [507900977519] +12:08:02 [ 38] [ 6] [463298] +12:08:02 [ 39] [ 2] [00] +12:08:02 [ 41] [ 8] [03407002] +12:08:02 [ 49] [ 3] [418] +12:08:02 [ 54] [ 40] [0001418C0000149297960002418C000014929796] +12:08:02 ============================================================================ +12:08:02 Sending to : +12:08:02 ============================================================================ +12:08:02 + + +waiting on router queue for slot.... +12:08:03 ============================================================================ +12:08:03 Slot Id : <112> +12:08:03 Transaction Type : RESPONSE +12:08:03 Received From : +12:08:03 ============================================================================ +12:08:03 FNo. Len. Field Value +12:08:03 ============================================================================ +12:08:03 [ 1] [ 4] [0210] +12:08:03 [ 2] [ 16] [6213548000206142] +12:08:03 [ 3] [ 6] [010000] +12:08:03 [ 4] [ 12] [000020000000] +12:08:03 [ 7] [ 10] [0320120552] +12:08:03 [ 11] [ 6] [943320] +12:08:03 [ 12] [ 6] [120552] +12:08:03 [ 13] [ 4] [0320] +12:08:03 [ 15] [ 4] [0320] +12:08:03 [ 18] [ 4] [6011] +12:08:03 [ 19] [ 3] [418] +12:08:03 [ 32] [ 6] [668899] +12:08:03 [ 35] [ 32] [6213548000206142=171212010614712] +12:08:03 [ 37] [ 12] [507900977519] +12:08:03 [ 38] [ 6] [463298] +12:08:03 [ 39] [ 2] [00] +12:08:03 [ 41] [ 8] [03407002] +12:08:03 [ 49] [ 3] [418] +12:08:03 [ 54] [ 40] [0001418C0000149297960002418C000014929796] +12:08:03 ============================================================================ +12:08:03 Calculate Source COMM Id = 4 +12:08:03 ============================================================================ +12:08:03 + + +waiting on router queue for slot.... +12:08:05 ============================================================================ +12:08:05 Slot Id : <117> +12:08:05 Transaction Type : REQUEST +12:08:05 Received From : +12:08:05 ============================================================================ +12:08:05 FNo. Len. Field Value +12:08:05 ============================================================================ +12:08:05 [ 1] [ 4] [0200] +12:08:05 [ 2] [ 16] [2206990000121269] +12:08:05 [ 3] [ 6] [010000] +12:08:05 [ 4] [ 12] [000070000000] +12:08:05 [ 7] [ 10] [0320120556] +12:08:05 [ 11] [ 6] [943325] +12:08:05 [ 12] [ 6] [120556] +12:08:05 [ 13] [ 4] [0320] +12:08:05 [ 15] [ 4] [0320] +12:08:05 [ 18] [ 4] [6011] +12:08:05 [ 19] [ 3] [418] +12:08:05 [ 22] [ 3] [021] +12:08:05 [ 25] [ 2] [01] +12:08:05 [ 28] [ 9] [D00002000] +12:08:05 [ 32] [ 6] [668899] +12:08:05 [ 35] [ 32] [2206990000121269=980212615591339] +12:08:05 [ 37] [ 12] [507902031655] +12:08:05 [ 41] [ 8] [03018003] +12:08:05 [ 42] [ 15] [APT ] +12:08:05 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:08:05 [ 49] [ 3] [418] +12:08:05 [ 52] [ 16] [BCEA1A0CC25B6BF6] +12:08:05 ============================================================================ +12:08:05 + + +waiting on router queue for slot.... +12:08:05 Sending to : +12:08:05 ============================================================================ +12:08:05 Sending to : +12:08:05 ============================================================================ +12:08:06 ============================================================================ +12:08:06 Slot Id : <117> +12:08:06 Transaction Type : REQUEST +12:08:06 Received From : +12:08:06 ============================================================================ +12:08:06 FNo. Len. Field Value +12:08:06 ============================================================================ +12:08:06 [ 1] [ 4] [0200] +12:08:06 [ 2] [ 16] [2206990000121269] +12:08:06 [ 3] [ 6] [010000] +12:08:06 [ 4] [ 12] [000070000000] +12:08:06 [ 7] [ 10] [0320120556] +12:08:06 [ 11] [ 6] [943325] +12:08:06 [ 12] [ 6] [120556] +12:08:06 [ 13] [ 4] [0320] +12:08:06 [ 15] [ 4] [0320] +12:08:06 [ 18] [ 4] [6011] +12:08:06 [ 19] [ 3] [418] +12:08:06 [ 22] [ 3] [021] +12:08:06 [ 25] [ 2] [01] +12:08:06 [ 28] [ 9] [D00002000] +12:08:06 [ 32] [ 6] [668899] +12:08:06 [ 35] [ 32] [2206990000121269=980212615591339] +12:08:06 [ 37] [ 12] [507902031655] +12:08:06 [ 41] [ 8] [03018003] +12:08:06 [ 42] [ 15] [APT ] +12:08:06 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:08:06 [ 49] [ 3] [418] +12:08:06 [ 52] [ 16] [BCEA1A0CC25B6BF6] +12:08:06 ============================================================================ +12:08:06 + + +waiting on router queue for slot.... +12:08:06 Sending to : +12:08:06 ============================================================================ +12:08:06 ============================================================================ +12:08:06 Slot Id : <117> +12:08:06 Transaction Type : REQUEST +12:08:06 Received From : +12:08:06 ============================================================================ +12:08:06 FNo. Len. Field Value +12:08:06 ============================================================================ +12:08:06 [ 1] [ 4] [0200] +12:08:06 [ 2] [ 16] [2206990000121269] +12:08:06 [ 3] [ 6] [010000] +12:08:06 [ 4] [ 12] [000070000000] +12:08:06 [ 7] [ 10] [0320120556] +12:08:06 [ 11] [ 6] [943325] +12:08:06 [ 12] [ 6] [120556] +12:08:06 [ 13] [ 4] [0320] +12:08:06 [ 15] [ 4] [0320] +12:08:06 [ 18] [ 4] [6011] +12:08:06 [ 19] [ 3] [418] +12:08:06 [ 22] [ 3] [021] +12:08:06 [ 25] [ 2] [01] +12:08:06 [ 28] [ 9] [D00002000] +12:08:06 [ 32] [ 6] [668899] +12:08:06 [ 35] [ 32] [2206990000121269=980212615591339] +12:08:06 [ 37] [ 12] [507902031655] +12:08:06 [ 41] [ 8] [03018003] +12:08:06 [ 42] [ 15] [APT ] +12:08:06 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:08:06 [ 49] [ 3] [418] +12:08:06 [ 52] [ 16] [EE1B4D3967DFCEEF] +12:08:06 ============================================================================ +12:08:06 + + +waiting on router queue for slot.... +12:08:06 Sending to : <1> +12:08:06 ============================================================================ +12:08:06 ============================================================================ +12:08:06 Slot Id : <140> +12:08:06 Transaction Type : REQUEST +12:08:06 Received From : +12:08:06 ============================================================================ +12:08:06 FNo. Len. Field Value +12:08:06 ============================================================================ +12:08:06 [ 1] [ 4] [0800] +12:08:06 [ 2] [ 5] [02531] +12:08:06 [ 3] [ 6] [579128] +12:08:06 [ 7] [ 10] [0320050806] +12:08:06 [ 11] [ 6] [807116] +12:08:06 [ 15] [ 10] [0320050806] +12:08:06 [ 37] [ 11] [57912807116] +12:08:06 [ 70] [ 3] [001] +12:08:06 ============================================================================ +12:08:06 + + +waiting on router queue for slot.... +12:08:06 ============================================================================ +12:08:06 Slot Id : <140> +12:08:06 Transaction Type : RESPONSE +12:08:06 Received From : +12:08:06 ============================================================================ +12:08:06 FNo. Len. Field Value +12:08:06 ============================================================================ +12:08:06 [ 1] [ 4] [0810] +12:08:06 [ 7] [ 10] [0320050806] +12:08:06 [ 11] [ 6] [807116] +12:08:06 [ 15] [ 4] [0320] +12:08:06 [ 37] [ 12] [57912807116] +12:08:06 [ 39] [ 2] [00] +12:08:06 [ 70] [ 3] [001] +12:08:06 ============================================================================ +12:08:06 Sending to : +12:08:06 ============================================================================ +12:08:06 + + +waiting on router queue for slot.... +12:08:07 ============================================================================ +12:08:07 Slot Id : <116> +12:08:07 Transaction Type : REQUEST +12:08:07 Received From : +12:08:07 ============================================================================ +12:08:07 FNo. Len. Field Value +12:08:07 ============================================================================ +12:08:07 [ 1] [ 4] [0800] +12:08:07 [ 7] [ 10] [0320050715] +12:08:07 [ 11] [ 6] [156230] +12:08:07 [ 70] [ 3] [301] +12:08:07 ============================================================================ +12:08:07 + + +waiting on router queue for slot.... +12:08:07 Sending to : +12:08:07 ============================================================================ +12:08:07 ============================================================================ +12:08:07 Slot Id : <116> +12:08:07 Transaction Type : RESPONSE +12:08:07 Received From : +12:08:07 ============================================================================ +12:08:07 FNo. Len. Field Value +12:08:07 ============================================================================ +12:08:07 [ 1] [ 4] [0810] +12:08:07 [ 7] [ 10] [0320050715] +12:08:07 [ 11] [ 6] [156230] +12:08:07 [ 39] [ 2] [00] +12:08:07 [ 70] [ 3] [301] +12:08:07 ============================================================================ +12:08:07 Calculate Source COMM Id = 2 +12:08:07 ============================================================================ +12:08:07 + + +waiting on router queue for slot.... +12:08:08 ============================================================================ +12:08:08 Slot Id : <97> +12:08:08 Transaction Type : REQUEST +12:08:08 Received From : +12:08:08 ============================================================================ +12:08:08 FNo. Len. Field Value +12:08:08 ============================================================================ +12:08:08 [ 1] [ 4] [0200] +12:08:08 [ 2] [ 16] [6213545000137616] +12:08:08 [ 3] [ 6] [010000] +12:08:08 [ 4] [ 12] [000050000000] +12:08:08 [ 7] [ 10] [0320050716] +12:08:08 [ 11] [ 6] [268908] +12:08:08 [ 12] [ 6] [120716] +12:08:08 [ 13] [ 4] [0320] +12:08:08 [ 14] [ 4] [4912] +12:08:08 [ 15] [ 4] [0320] +12:08:08 [ 18] [ 4] [6011] +12:08:08 [ 19] [ 3] [418] +12:08:08 [ 22] [ 3] [021] +12:08:08 [ 25] [ 2] [01] +12:08:08 [ 28] [ 9] [D00002000] +12:08:08 [ 32] [ 6] [180893] +12:08:08 [ 35] [ 32] [6213545000137616=491212013761318] +12:08:08 [ 37] [ 12] [507905268908] +12:08:08 [ 41] [ 8] [0363CPSH] +12:08:08 [ 42] [ 15] [999999 ] +12:08:08 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:08:08 [ 49] [ 3] [418] +12:08:08 [ 52] [ 16] [2FCEBC05A5EECCDA] +12:08:08 ============================================================================ +12:08:08 + + +waiting on router queue for slot.... +12:08:08 Sending to : +12:08:08 ============================================================================ +12:08:08 Sending to : +12:08:08 ============================================================================ +12:08:09 ============================================================================ +12:08:09 Slot Id : <97> +12:08:09 Transaction Type : REQUEST +12:08:09 Received From : +12:08:09 ============================================================================ +12:08:09 FNo. Len. Field Value +12:08:09 ============================================================================ +12:08:09 [ 1] [ 4] [0200] +12:08:09 [ 2] [ 16] [6213545000137616] +12:08:09 [ 3] [ 6] [010000] +12:08:09 [ 4] [ 12] [000050000000] +12:08:09 [ 7] [ 10] [0320050716] +12:08:09 [ 11] [ 6] [268908] +12:08:09 [ 12] [ 6] [120716] +12:08:09 [ 13] [ 4] [0320] +12:08:09 [ 14] [ 4] [4912] +12:08:09 [ 15] [ 4] [0320] +12:08:09 [ 18] [ 4] [6011] +12:08:09 [ 19] [ 3] [418] +12:08:09 [ 22] [ 3] [021] +12:08:09 [ 25] [ 2] [01] +12:08:09 [ 28] [ 9] [D00002000] +12:08:09 [ 32] [ 6] [180893] +12:08:09 [ 35] [ 32] [6213545000137616=491212013761318] +12:08:09 [ 37] [ 12] [507905268908] +12:08:09 [ 41] [ 8] [0363CPSH] +12:08:09 [ 42] [ 15] [999999 ] +12:08:09 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:08:09 [ 49] [ 3] [418] +12:08:09 [ 52] [ 16] [2FCEBC05A5EECCDA] +12:08:09 ============================================================================ +12:08:09 + + +waiting on router queue for slot.... +12:08:09 Sending to : +12:08:09 ============================================================================ +12:08:09 ============================================================================ +12:08:09 Slot Id : <97> +12:08:09 Transaction Type : REQUEST +12:08:09 Received From : +12:08:09 ============================================================================ +12:08:09 FNo. Len. Field Value +12:08:09 ============================================================================ +12:08:09 [ 1] [ 4] [0200] +12:08:09 [ 2] [ 16] [6213545000137616] +12:08:09 [ 3] [ 6] [010000] +12:08:09 [ 4] [ 12] [000050000000] +12:08:09 [ 7] [ 10] [0320050716] +12:08:09 [ 11] [ 6] [268908] +12:08:09 [ 12] [ 6] [120716] +12:08:09 [ 13] [ 4] [0320] +12:08:09 [ 14] [ 4] [4912] +12:08:09 [ 15] [ 4] [0320] +12:08:09 [ 18] [ 4] [6011] +12:08:09 [ 19] [ 3] [418] +12:08:09 [ 22] [ 3] [021] +12:08:09 [ 25] [ 2] [01] +12:08:09 [ 28] [ 9] [D00002000] +12:08:09 [ 32] [ 6] [180893] +12:08:09 [ 35] [ 32] [6213545000137616=491212013761318] +12:08:09 [ 37] [ 12] [507905268908] +12:08:09 [ 41] [ 8] [0363CPSH] +12:08:09 [ 42] [ 15] [999999 ] +12:08:09 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:08:09 [ 49] [ 3] [418] +12:08:09 [ 52] [ 16] [98CB274D36E91B68] +12:08:09 ============================================================================ +12:08:09 + + +waiting on router queue for slot.... +12:08:09 Sending to : <0> +12:08:09 ============================================================================ +12:08:09 ============================================================================ +12:08:09 Slot Id : <117> +12:08:09 Transaction Type : RESPONSE +12:08:09 Received From : +12:08:09 ============================================================================ +12:08:09 FNo. Len. Field Value +12:08:09 ============================================================================ +12:08:09 [ 1] [ 4] [0210] +12:08:09 [ 2] [ 16] [2206990000121269] +12:08:09 [ 3] [ 6] [010000] +12:08:09 [ 4] [ 12] [000070000000] +12:08:09 [ 7] [ 10] [0320120556] +12:08:09 [ 11] [ 6] [943325] +12:08:09 [ 12] [ 6] [120556] +12:08:09 [ 13] [ 4] [0320] +12:08:09 [ 15] [ 4] [0320] +12:08:09 [ 18] [ 4] [6011] +12:08:09 [ 32] [ 6] [668899] +12:08:09 [ 35] [ 32] [2206990000121269=980212615591339] +12:08:09 [ 37] [ 12] [507902031655] +12:08:09 [ 38] [ 6] [523733] +12:08:09 [ 39] [ 2] [00] +12:08:09 [ 41] [ 8] [03018003] +12:08:09 [ 49] [ 3] [418] +12:08:09 [ 54] [ 40] [0001418C0001635720000002418C000163572000] +12:08:09 ============================================================================ +12:08:09 Sending to : +12:08:09 ============================================================================ +12:08:09 + + +waiting on router queue for slot.... +12:08:09 ============================================================================ +12:08:09 Slot Id : <97> +12:08:09 Transaction Type : RESPONSE +12:08:09 Received From : +12:08:09 ============================================================================ +12:08:09 FNo. Len. Field Value +12:08:09 ============================================================================ +12:08:09 [ 1] [ 4] [0210] +12:08:09 [ 2] [ 16] [6213545000137616] +12:08:09 [ 3] [ 6] [010000] +12:08:09 [ 4] [ 12] [000050000000] +12:08:09 [ 7] [ 10] [0320050716] +12:08:09 [ 11] [ 6] [268908] +12:08:09 [ 12] [ 6] [120716] +12:08:09 [ 13] [ 4] [0320] +12:08:09 [ 15] [ 4] [0320] +12:08:09 [ 18] [ 4] [6011] +12:08:09 [ 19] [ 3] [418] +12:08:09 [ 22] [ 3] [021] +12:08:09 [ 32] [ 6] [180893] +12:08:09 [ 35] [ 32] [6213545000137616=491212013761318] +12:08:09 [ 37] [ 12] [507905268908] +12:08:09 [ 38] [ 6] [120805] +12:08:09 [ 39] [ 2] [55] +12:08:09 [ 41] [ 8] [0363CPSH] +12:08:09 [ 49] [ 3] [418] +12:08:09 ============================================================================ +12:08:09 Sending to : +12:08:09 ============================================================================ +12:08:09 + + +waiting on router queue for slot.... +12:08:09 ============================================================================ +12:08:09 Slot Id : <124> +12:08:09 Transaction Type : REQUEST +12:08:09 Received From : +12:08:09 ============================================================================ +12:08:09 FNo. Len. Field Value +12:08:09 ============================================================================ +12:08:09 [ 1] [ 4] [0200] +12:08:09 [ 2] [ 16] [2206990000133751] +12:08:09 [ 3] [ 6] [300000] +12:08:09 [ 4] [ 12] [000000000000] +12:08:09 [ 7] [ 10] [0320120805] +12:08:09 [ 11] [ 6] [740319] +12:08:09 [ 12] [ 6] [120805] +12:08:09 [ 13] [ 4] [0320] +12:08:09 [ 15] [ 4] [0320] +12:08:09 [ 18] [ 4] [6011] +12:08:09 [ 22] [ 3] [900] +12:08:09 [ 25] [ 2] [02] +12:08:09 [ 28] [ 9] [D00000000] +12:08:09 [ 32] [ 6] [621354] +12:08:09 [ 35] [ 32] [2206990000133751=980512618503588] +12:08:09 [ 37] [ 12] [507903478265] +12:08:09 [ 41] [ 8] [06002000] +12:08:09 [ 42] [ 15] [NATIVE ] +12:08:09 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:08:09 [ 49] [ 3] [418] +12:08:09 [ 52] [ 16] [54666B8BAE520944] +12:08:09 ============================================================================ +12:08:09 + + +waiting on router queue for slot.... +12:08:09 Sending to : +12:08:09 ============================================================================ +12:08:09 Sending to : +12:08:09 ============================================================================ +12:08:09 ============================================================================ +12:08:09 Slot Id : <124> +12:08:09 Transaction Type : REQUEST +12:08:09 Received From : +12:08:09 ============================================================================ +12:08:09 FNo. Len. Field Value +12:08:09 ============================================================================ +12:08:09 [ 1] [ 4] [0200] +12:08:09 [ 2] [ 16] [2206990000133751] +12:08:09 [ 3] [ 6] [300000] +12:08:09 [ 4] [ 12] [000000000000] +12:08:09 [ 7] [ 10] [0320120805] +12:08:09 [ 11] [ 6] [740319] +12:08:09 [ 12] [ 6] [120805] +12:08:09 [ 13] [ 4] [0320] +12:08:09 [ 15] [ 4] [0320] +12:08:09 [ 18] [ 4] [6011] +12:08:09 [ 22] [ 3] [900] +12:08:09 [ 25] [ 2] [02] +12:08:09 [ 28] [ 9] [D00000000] +12:08:09 [ 32] [ 6] [621354] +12:08:09 [ 35] [ 32] [2206990000133751=980512618503588] +12:08:09 [ 37] [ 12] [507903478265] +12:08:09 [ 41] [ 8] [06002000] +12:08:09 [ 42] [ 15] [NATIVE ] +12:08:09 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:08:09 [ 49] [ 3] [418] +12:08:09 [ 52] [ 16] [54666B8BAE520944] +12:08:09 ============================================================================ +12:08:09 + + +waiting on router queue for slot.... +12:08:09 Sending to : +12:08:09 ============================================================================ +12:08:09 ============================================================================ +12:08:09 Slot Id : <124> +12:08:09 Transaction Type : REQUEST +12:08:09 Received From : +12:08:09 ============================================================================ +12:08:09 FNo. Len. Field Value +12:08:09 ============================================================================ +12:08:09 [ 1] [ 4] [0200] +12:08:09 [ 2] [ 16] [2206990000133751] +12:08:09 [ 3] [ 6] [300000] +12:08:09 [ 4] [ 12] [000000000000] +12:08:09 [ 7] [ 10] [0320120805] +12:08:09 [ 11] [ 6] [740319] +12:08:09 [ 12] [ 6] [120805] +12:08:09 [ 13] [ 4] [0320] +12:08:09 [ 15] [ 4] [0320] +12:08:09 [ 18] [ 4] [6011] +12:08:09 [ 22] [ 3] [900] +12:08:09 [ 25] [ 2] [02] +12:08:09 [ 28] [ 9] [D00000000] +12:08:09 [ 32] [ 6] [621354] +12:08:09 [ 35] [ 32] [2206990000133751=980512618503588] +12:08:09 [ 37] [ 12] [507903478265] +12:08:09 [ 41] [ 8] [06002000] +12:08:09 [ 42] [ 15] [NATIVE ] +12:08:09 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:08:09 [ 49] [ 3] [418] +12:08:09 [ 52] [ 16] [FB5F201144966A71] +12:08:09 ============================================================================ +12:08:09 + + +waiting on router queue for slot.... +12:08:09 Sending to : <1> +12:08:09 ============================================================================ +12:08:10 ============================================================================ +12:08:10 Slot Id : <117> +12:08:10 Transaction Type : RESPONSE +12:08:10 Received From : +12:08:10 ============================================================================ +12:08:10 FNo. Len. Field Value +12:08:10 ============================================================================ +12:08:10 [ 1] [ 4] [0210] +12:08:10 [ 2] [ 16] [2206990000121269] +12:08:10 [ 3] [ 6] [010000] +12:08:10 [ 4] [ 12] [000070000000] +12:08:10 [ 7] [ 10] [0320120556] +12:08:10 [ 11] [ 6] [943325] +12:08:10 [ 12] [ 6] [120556] +12:08:10 [ 13] [ 4] [0320] +12:08:10 [ 15] [ 4] [0320] +12:08:10 [ 18] [ 4] [6011] +12:08:10 [ 32] [ 6] [668899] +12:08:10 [ 35] [ 32] [2206990000121269=980212615591339] +12:08:10 [ 37] [ 12] [507902031655] +12:08:10 [ 38] [ 6] [523733] +12:08:10 [ 39] [ 2] [00] +12:08:10 [ 41] [ 8] [03018003] +12:08:10 [ 49] [ 3] [418] +12:08:10 [ 54] [ 40] [0001418C0001635720000002418C000163572000] +12:08:10 ============================================================================ +12:08:10 Calculate Source COMM Id = 4 +12:08:10 ============================================================================ +12:08:10 + + +waiting on router queue for slot.... +12:08:11 ============================================================================ +12:08:11 Slot Id : <124> +12:08:11 Transaction Type : RESPONSE +12:08:11 Received From : +12:08:11 ============================================================================ +12:08:11 FNo. Len. Field Value +12:08:11 ============================================================================ +12:08:11 [ 1] [ 4] [0210] +12:08:11 [ 2] [ 16] [2206990000133751] +12:08:11 [ 3] [ 6] [300000] +12:08:11 [ 4] [ 12] [000000000000] +12:08:11 [ 7] [ 10] [0320120805] +12:08:11 [ 11] [ 6] [740319] +12:08:11 [ 12] [ 6] [120805] +12:08:11 [ 13] [ 4] [0320] +12:08:11 [ 15] [ 4] [0320] +12:08:11 [ 18] [ 4] [6011] +12:08:11 [ 32] [ 6] [621354] +12:08:11 [ 35] [ 32] [2206990000133751=980512618503588] +12:08:11 [ 37] [ 12] [507903478265] +12:08:11 [ 38] [ 6] [113337] +12:08:11 [ 39] [ 2] [00] +12:08:11 [ 41] [ 8] [06002000] +12:08:11 [ 49] [ 3] [418] +12:08:11 [ 54] [ 40] [0001418C0000250000000002418C000025000000] +12:08:11 ============================================================================ +12:08:11 Sending to : +12:08:11 ============================================================================ +12:08:11 + + +waiting on router queue for slot.... +12:08:12 ============================================================================ +12:08:12 Slot Id : <97> +12:08:12 Transaction Type : RESPONSE +12:08:12 Received From : +12:08:12 ============================================================================ +12:08:12 FNo. Len. Field Value +12:08:12 ============================================================================ +12:08:12 [ 1] [ 4] [0210] +12:08:12 [ 2] [ 16] [6213545000137616] +12:08:12 [ 3] [ 6] [010000] +12:08:12 [ 4] [ 12] [000050000000] +12:08:12 [ 7] [ 10] [0320050716] +12:08:12 [ 11] [ 6] [268908] +12:08:12 [ 12] [ 6] [120716] +12:08:12 [ 13] [ 4] [0320] +12:08:12 [ 15] [ 4] [0320] +12:08:12 [ 18] [ 4] [6011] +12:08:12 [ 19] [ 3] [418] +12:08:12 [ 22] [ 3] [021] +12:08:12 [ 32] [ 6] [180893] +12:08:12 [ 35] [ 32] [6213545000137616=491212013761318] +12:08:12 [ 37] [ 12] [507905268908] +12:08:12 [ 38] [ 6] [120805] +12:08:12 [ 39] [ 2] [55] +12:08:12 [ 41] [ 8] [0363CPSH] +12:08:12 [ 49] [ 3] [418] +12:08:12 ============================================================================ +12:08:12 Calculate Source COMM Id = 2 +12:08:12 ============================================================================ +12:08:12 + + +waiting on router queue for slot.... +12:08:13 ============================================================================ +12:08:13 Slot Id : <124> +12:08:13 Transaction Type : RESPONSE +12:08:13 Received From : +12:08:13 ============================================================================ +12:08:13 FNo. Len. Field Value +12:08:13 ============================================================================ +12:08:13 [ 1] [ 4] [0210] +12:08:13 [ 2] [ 16] [2206990000133751] +12:08:13 [ 3] [ 6] [300000] +12:08:13 [ 4] [ 12] [000000000000] +12:08:13 [ 7] [ 10] [0320120805] +12:08:13 [ 11] [ 6] [740319] +12:08:13 [ 12] [ 6] [120805] +12:08:13 [ 13] [ 4] [0320] +12:08:13 [ 15] [ 4] [0320] +12:08:13 [ 18] [ 4] [6011] +12:08:13 [ 32] [ 6] [621354] +12:08:13 [ 35] [ 32] [2206990000133751=980512618503588] +12:08:13 [ 37] [ 12] [507903478265] +12:08:13 [ 38] [ 6] [113337] +12:08:13 [ 39] [ 2] [00] +12:08:13 [ 41] [ 8] [06002000] +12:08:13 [ 49] [ 3] [418] +12:08:13 [ 54] [ 40] [0001418C0000250000000002418C000025000000] +12:08:13 ============================================================================ +12:08:13 Calculate Source COMM Id = 0 +12:08:13 ============================================================================ +12:08:13 + + +waiting on router queue for slot.... +12:08:24 ============================================================================ +12:08:24 Slot Id : <111> +12:08:24 Transaction Type : REQUEST +12:08:24 Received From : +12:08:24 ============================================================================ +12:08:24 FNo. Len. Field Value +12:08:24 ============================================================================ +12:08:24 [ 1] [ 4] [0800] +12:08:24 [ 7] [ 10] [0320050731] +12:08:24 [ 11] [ 6] [156231] +12:08:24 [ 70] [ 3] [301] +12:08:24 ============================================================================ +12:08:24 + + +waiting on router queue for slot.... +12:08:24 Sending to : +12:08:24 ============================================================================ +12:08:24 ============================================================================ +12:08:24 Slot Id : <111> +12:08:24 Transaction Type : RESPONSE +12:08:24 Received From : +12:08:24 ============================================================================ +12:08:24 FNo. Len. Field Value +12:08:24 ============================================================================ +12:08:24 [ 1] [ 4] [0810] +12:08:24 [ 7] [ 10] [0320050731] +12:08:24 [ 11] [ 6] [156231] +12:08:24 [ 39] [ 2] [00] +12:08:24 [ 70] [ 3] [301] +12:08:24 ============================================================================ +12:08:24 Calculate Source COMM Id = 2 +12:08:24 ============================================================================ +12:08:24 + + +waiting on router queue for slot.... +12:08:26 ============================================================================ +12:08:26 Slot Id : <161> +12:08:26 Transaction Type : REQUEST +12:08:26 Received From : +12:08:26 ============================================================================ +12:08:26 FNo. Len. Field Value +12:08:26 ============================================================================ +12:08:26 [ 1] [ 4] [0200] +12:08:26 [ 2] [ 16] [6213546000009821] +12:08:26 [ 3] [ 6] [011000] +12:08:26 [ 4] [ 12] [000070000000] +12:08:26 [ 7] [ 10] [0320121613] +12:08:26 [ 11] [ 6] [021160] +12:08:26 [ 12] [ 6] [121613] +12:08:26 [ 13] [ 4] [0320] +12:08:26 [ 14] [ 4] [4912] +12:08:26 [ 15] [ 4] [0320] +12:08:26 [ 18] [ 4] [6011] +12:08:26 [ 22] [ 3] [900] +12:08:26 [ 25] [ 2] [02] +12:08:26 [ 28] [ 9] [D00002000] +12:08:26 [ 32] [ 6] [220699] +12:08:26 [ 35] [ 32] [6213546000009821=491212010982934] +12:08:26 [ 37] [ 12] [507900263111] +12:08:26 [ 41] [ 8] [01001400] +12:08:26 [ 42] [ 15] [APTRA ] +12:08:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:08:26 [ 49] [ 3] [418] +12:08:26 [ 52] [ 16] [D74E36B49CCBFDFF] +12:08:26 ============================================================================ +12:08:26 + + +waiting on router queue for slot.... +12:08:26 Sending to : +12:08:26 ============================================================================ +12:08:26 Sending to : +12:08:26 ============================================================================ +12:08:26 ============================================================================ +12:08:26 Slot Id : <80> +12:08:26 Transaction Type : REQUEST +12:08:26 Received From : +12:08:26 ============================================================================ +12:08:26 FNo. Len. Field Value +12:08:26 ============================================================================ +12:08:26 [ 1] [ 4] [0200] +12:08:26 [ 2] [ 16] [6213544002115563] +12:08:26 [ 3] [ 6] [011000] +12:08:26 [ 4] [ 12] [000040000000] +12:08:26 [ 7] [ 10] [0320121613] +12:08:26 [ 11] [ 6] [259210] +12:08:26 [ 12] [ 6] [121613] +12:08:26 [ 13] [ 4] [0320] +12:08:26 [ 14] [ 4] [4912] +12:08:26 [ 15] [ 4] [0320] +12:08:26 [ 18] [ 4] [6011] +12:08:26 [ 22] [ 3] [900] +12:08:26 [ 25] [ 2] [02] +12:08:26 [ 28] [ 9] [D00002000] +12:08:26 [ 32] [ 6] [220699] +12:08:26 [ 35] [ 32] [6213544002115563=491212011556926] +12:08:26 [ 37] [ 12] [507900040570] +12:08:26 [ 41] [ 8] [01000400] +12:08:26 [ 42] [ 15] [APTRA ] +12:08:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:08:26 [ 49] [ 3] [418] +12:08:26 [ 52] [ 16] [5EC553A39EC2914E] +12:08:26 ============================================================================ +12:08:26 + + +waiting on router queue for slot.... +12:08:26 Sending to : +12:08:26 ============================================================================ +12:08:26 Sending to : +12:08:26 ============================================================================ +12:08:26 ============================================================================ +12:08:26 Slot Id : <161> +12:08:26 Transaction Type : REQUEST +12:08:26 Received From : +12:08:26 ============================================================================ +12:08:26 FNo. Len. Field Value +12:08:26 ============================================================================ +12:08:26 [ 1] [ 4] [0200] +12:08:26 [ 2] [ 16] [6213546000009821] +12:08:26 [ 3] [ 6] [011000] +12:08:26 [ 4] [ 12] [000070000000] +12:08:26 [ 7] [ 10] [0320121613] +12:08:26 [ 11] [ 6] [021160] +12:08:26 [ 12] [ 6] [121613] +12:08:26 [ 13] [ 4] [0320] +12:08:26 [ 14] [ 4] [4912] +12:08:26 [ 15] [ 4] [0320] +12:08:26 [ 18] [ 4] [6011] +12:08:26 [ 22] [ 3] [900] +12:08:26 [ 25] [ 2] [02] +12:08:26 [ 28] [ 9] [D00002000] +12:08:26 [ 32] [ 6] [220699] +12:08:26 [ 35] [ 32] [6213546000009821=491212010982934] +12:08:26 [ 37] [ 12] [507900263111] +12:08:26 [ 41] [ 8] [01001400] +12:08:26 [ 42] [ 15] [APTRA ] +12:08:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:08:26 [ 49] [ 3] [418] +12:08:26 [ 52] [ 16] [D74E36B49CCBFDFF] +12:08:26 ============================================================================ +12:08:26 + + +waiting on router queue for slot.... +12:08:26 Sending to : +12:08:26 ============================================================================ +12:08:26 ============================================================================ +12:08:26 Slot Id : <161> +12:08:26 Transaction Type : REQUEST +12:08:26 Received From : +12:08:26 ============================================================================ +12:08:26 FNo. Len. Field Value +12:08:26 ============================================================================ +12:08:26 [ 1] [ 4] [0200] +12:08:26 [ 2] [ 16] [6213546000009821] +12:08:26 [ 3] [ 6] [011000] +12:08:26 [ 4] [ 12] [000070000000] +12:08:26 [ 7] [ 10] [0320121613] +12:08:26 [ 11] [ 6] [021160] +12:08:26 [ 12] [ 6] [121613] +12:08:26 [ 13] [ 4] [0320] +12:08:26 [ 14] [ 4] [4912] +12:08:26 [ 15] [ 4] [0320] +12:08:26 [ 18] [ 4] [6011] +12:08:26 [ 22] [ 3] [900] +12:08:26 [ 25] [ 2] [02] +12:08:26 [ 28] [ 9] [D00002000] +12:08:26 [ 32] [ 6] [220699] +12:08:26 [ 35] [ 32] [6213546000009821=491212010982934] +12:08:26 [ 37] [ 12] [507900263111] +12:08:26 [ 41] [ 8] [01001400] +12:08:26 [ 42] [ 15] [APTRA ] +12:08:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:08:26 [ 49] [ 3] [418] +12:08:26 [ 52] [ 16] [68B616FFFF22E3E8] +12:08:26 ============================================================================ +12:08:26 + + +waiting on router queue for slot.... +12:08:26 Sending to : <0> +12:08:26 ============================================================================ +12:08:27 ============================================================================ +12:08:27 Slot Id : <80> +12:08:27 Transaction Type : REQUEST +12:08:27 Received From : +12:08:27 ============================================================================ +12:08:27 FNo. Len. Field Value +12:08:27 ============================================================================ +12:08:27 [ 1] [ 4] [0200] +12:08:27 [ 2] [ 16] [6213544002115563] +12:08:27 [ 3] [ 6] [011000] +12:08:27 [ 4] [ 12] [000040000000] +12:08:27 [ 7] [ 10] [0320121613] +12:08:27 [ 11] [ 6] [259210] +12:08:27 [ 12] [ 6] [121613] +12:08:27 [ 13] [ 4] [0320] +12:08:27 [ 14] [ 4] [4912] +12:08:27 [ 15] [ 4] [0320] +12:08:27 [ 18] [ 4] [6011] +12:08:27 [ 22] [ 3] [900] +12:08:27 [ 25] [ 2] [02] +12:08:27 [ 28] [ 9] [D00002000] +12:08:27 [ 32] [ 6] [220699] +12:08:27 [ 35] [ 32] [6213544002115563=491212011556926] +12:08:27 [ 37] [ 12] [507900040570] +12:08:27 [ 41] [ 8] [01000400] +12:08:27 [ 42] [ 15] [APTRA ] +12:08:27 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:08:27 [ 49] [ 3] [418] +12:08:27 [ 52] [ 16] [5EC553A39EC2914E] +12:08:27 ============================================================================ +12:08:27 + + +waiting on router queue for slot.... +12:08:27 Sending to : +12:08:27 ============================================================================ +12:08:27 ============================================================================ +12:08:27 Slot Id : <80> +12:08:27 Transaction Type : REQUEST +12:08:27 Received From : +12:08:27 ============================================================================ +12:08:27 FNo. Len. Field Value +12:08:27 ============================================================================ +12:08:27 [ 1] [ 4] [0200] +12:08:27 [ 2] [ 16] [6213544002115563] +12:08:27 [ 3] [ 6] [011000] +12:08:27 [ 4] [ 12] [000040000000] +12:08:27 [ 7] [ 10] [0320121613] +12:08:27 [ 11] [ 6] [259210] +12:08:27 [ 12] [ 6] [121613] +12:08:27 [ 13] [ 4] [0320] +12:08:27 [ 14] [ 4] [4912] +12:08:27 [ 15] [ 4] [0320] +12:08:27 [ 18] [ 4] [6011] +12:08:27 [ 22] [ 3] [900] +12:08:27 [ 25] [ 2] [02] +12:08:27 [ 28] [ 9] [D00002000] +12:08:27 [ 32] [ 6] [220699] +12:08:27 [ 35] [ 32] [6213544002115563=491212011556926] +12:08:27 [ 37] [ 12] [507900040570] +12:08:27 [ 41] [ 8] [01000400] +12:08:27 [ 42] [ 15] [APTRA ] +12:08:27 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:08:27 [ 49] [ 3] [418] +12:08:27 [ 52] [ 16] [F77FDDE1B8650518] +12:08:27 ============================================================================ +12:08:27 + + +waiting on router queue for slot.... +12:08:27 Sending to : <0> +12:08:27 ============================================================================ +12:08:27 ============================================================================ +12:08:27 Slot Id : <161> +12:08:27 Transaction Type : RESPONSE +12:08:27 Received From : +12:08:27 ============================================================================ +12:08:27 FNo. Len. Field Value +12:08:27 ============================================================================ +12:08:27 [ 1] [ 4] [0210] +12:08:27 [ 2] [ 16] [6213546000009821] +12:08:27 [ 3] [ 6] [011000] +12:08:27 [ 4] [ 12] [000070000000] +12:08:27 [ 7] [ 10] [0320121613] +12:08:27 [ 11] [ 6] [021160] +12:08:27 [ 12] [ 6] [121613] +12:08:27 [ 13] [ 4] [0320] +12:08:27 [ 15] [ 4] [0320] +12:08:27 [ 18] [ 4] [6011] +12:08:27 [ 32] [ 6] [220699] +12:08:27 [ 35] [ 32] [6213546000009821=491212010982934] +12:08:27 [ 37] [ 12] [507900263111] +12:08:27 [ 38] [ 6] [393125] +12:08:27 [ 39] [ 2] [00] +12:08:27 [ 41] [ 8] [01001400] +12:08:27 [ 49] [ 3] [418] +12:08:27 [ 54] [ 40] [1001418C0000293413971002418C000029341397] +12:08:27 ============================================================================ +12:08:27 Sending to : +12:08:27 ============================================================================ +12:08:27 + + +waiting on router queue for slot.... +12:08:27 ============================================================================ +12:08:27 Slot Id : <80> +12:08:27 Transaction Type : RESPONSE +12:08:27 Received From : +12:08:27 ============================================================================ +12:08:27 FNo. Len. Field Value +12:08:27 ============================================================================ +12:08:27 [ 1] [ 4] [0210] +12:08:27 [ 2] [ 16] [6213544002115563] +12:08:27 [ 3] [ 6] [011000] +12:08:27 [ 4] [ 12] [000040000000] +12:08:27 [ 7] [ 10] [0320121613] +12:08:27 [ 11] [ 6] [259210] +12:08:27 [ 12] [ 6] [121613] +12:08:27 [ 13] [ 4] [0320] +12:08:27 [ 15] [ 4] [0320] +12:08:27 [ 18] [ 4] [6011] +12:08:27 [ 32] [ 6] [220699] +12:08:27 [ 35] [ 32] [6213544002115563=491212011556926] +12:08:27 [ 37] [ 12] [507900040570] +12:08:27 [ 38] [ 6] [719812] +12:08:27 [ 39] [ 2] [00] +12:08:27 [ 41] [ 8] [01000400] +12:08:27 [ 49] [ 3] [418] +12:08:27 [ 54] [ 40] [1001418C0001057342321002418C000105734232] +12:08:27 ============================================================================ +12:08:27 Sending to : +12:08:27 ============================================================================ +12:08:27 + + +waiting on router queue for slot.... +12:08:28 ============================================================================ +12:08:28 Slot Id : <161> +12:08:28 Transaction Type : RESPONSE +12:08:28 Received From : +12:08:28 ============================================================================ +12:08:28 FNo. Len. Field Value +12:08:28 ============================================================================ +12:08:28 [ 1] [ 4] [0210] +12:08:28 [ 2] [ 16] [6213546000009821] +12:08:28 [ 3] [ 6] [011000] +12:08:28 [ 4] [ 12] [000070000000] +12:08:28 [ 7] [ 10] [0320121613] +12:08:28 [ 11] [ 6] [021160] +12:08:28 [ 12] [ 6] [121613] +12:08:28 [ 13] [ 4] [0320] +12:08:28 [ 15] [ 4] [0320] +12:08:28 [ 18] [ 4] [6011] +12:08:28 [ 32] [ 6] [220699] +12:08:28 [ 35] [ 32] [6213546000009821=491212010982934] +12:08:28 [ 37] [ 12] [507900263111] +12:08:28 [ 38] [ 6] [393125] +12:08:28 [ 39] [ 2] [00] +12:08:28 [ 41] [ 8] [01001400] +12:08:28 [ 49] [ 3] [418] +12:08:28 [ 54] [ 40] [1001418C0000293413971002418C000029341397] +12:08:28 ============================================================================ +12:08:28 Calculate Source COMM Id = 1 +12:08:28 ============================================================================ +12:08:28 + + +waiting on router queue for slot.... +12:08:30 ============================================================================ +12:08:30 Slot Id : <80> +12:08:30 Transaction Type : RESPONSE +12:08:30 Received From : +12:08:30 ============================================================================ +12:08:30 FNo. Len. Field Value +12:08:30 ============================================================================ +12:08:30 [ 1] [ 4] [0210] +12:08:30 [ 2] [ 16] [6213544002115563] +12:08:30 [ 3] [ 6] [011000] +12:08:30 [ 4] [ 12] [000040000000] +12:08:30 [ 7] [ 10] [0320121613] +12:08:30 [ 11] [ 6] [259210] +12:08:30 [ 12] [ 6] [121613] +12:08:30 [ 13] [ 4] [0320] +12:08:30 [ 15] [ 4] [0320] +12:08:30 [ 18] [ 4] [6011] +12:08:30 [ 32] [ 6] [220699] +12:08:30 [ 35] [ 32] [6213544002115563=491212011556926] +12:08:30 [ 37] [ 12] [507900040570] +12:08:30 [ 38] [ 6] [719812] +12:08:30 [ 39] [ 2] [00] +12:08:30 [ 41] [ 8] [01000400] +12:08:30 [ 49] [ 3] [418] +12:08:30 [ 54] [ 40] [1001418C0001057342321002418C000105734232] +12:08:30 ============================================================================ +12:08:30 Calculate Source COMM Id = 1 +12:08:30 ============================================================================ +12:08:30 + + +waiting on router queue for slot.... +12:08:33 ============================================================================ +12:08:33 Slot Id : <147> +12:08:33 Transaction Type : REQUEST +12:08:33 Received From : +12:08:33 ============================================================================ +12:08:33 FNo. Len. Field Value +12:08:33 ============================================================================ +12:08:33 [ 1] [ 4] [0800] +12:08:33 [ 7] [ 10] [0320120820] +12:08:33 [ 11] [ 6] [045500] +12:08:33 [ 37] [ 12] [507912045500] +12:08:33 [ 70] [ 3] [ ] +12:08:33 ============================================================================ +12:08:33 + + +waiting on router queue for slot.... +12:08:33 Sending to : +12:08:33 ============================================================================ +12:08:33 ============================================================================ +12:08:33 Slot Id : <147> +12:08:33 Transaction Type : RESPONSE +12:08:33 Received From : +12:08:33 ============================================================================ +12:08:33 FNo. Len. Field Value +12:08:33 ============================================================================ +12:08:33 [ 1] [ 4] [0810] +12:08:33 [ 7] [ 10] [0320120820] +12:08:33 [ 11] [ 6] [045500] +12:08:33 [ 37] [ 12] [507912045500] +12:08:33 [ 39] [ 2] [91] +12:08:33 [ 70] [ 3] [ ] +12:08:33 ============================================================================ +12:08:33 Calculate Source COMM Id = 3 +12:08:33 ============================================================================ +12:08:33 + + +waiting on router queue for slot.... +12:08:34 ============================================================================ +12:08:34 Slot Id : <123> +12:08:34 Transaction Type : REQUEST +12:08:34 Received From : +12:08:34 ============================================================================ +12:08:34 FNo. Len. Field Value +12:08:34 ============================================================================ +12:08:34 [ 1] [ 4] [0800] +12:08:34 [ 7] [ 10] [0320050742] +12:08:34 [ 11] [ 6] [156232] +12:08:34 [ 70] [ 3] [301] +12:08:34 ============================================================================ +12:08:34 + + +waiting on router queue for slot.... +12:08:34 Sending to : +12:08:34 ============================================================================ +12:08:34 ============================================================================ +12:08:34 Slot Id : <123> +12:08:34 Transaction Type : RESPONSE +12:08:34 Received From : +12:08:34 ============================================================================ +12:08:34 FNo. Len. Field Value +12:08:34 ============================================================================ +12:08:34 [ 1] [ 4] [0810] +12:08:34 [ 7] [ 10] [0320050742] +12:08:34 [ 11] [ 6] [156232] +12:08:34 [ 39] [ 2] [00] +12:08:34 [ 70] [ 3] [301] +12:08:34 ============================================================================ +12:08:34 Calculate Source COMM Id = 2 +12:08:34 ============================================================================ +12:08:34 + + +waiting on router queue for slot.... +12:08:38 ============================================================================ +12:08:38 Slot Id : <122> +12:08:38 Transaction Type : REQUEST +12:08:38 Received From : +12:08:38 ============================================================================ +12:08:38 FNo. Len. Field Value +12:08:38 ============================================================================ +12:08:38 [ 1] [ 4] [0200] +12:08:38 [ 2] [ 16] [6213545000912851] +12:08:38 [ 3] [ 6] [010000] +12:08:38 [ 4] [ 12] [000100000000] +12:08:38 [ 7] [ 10] [0320050745] +12:08:38 [ 11] [ 6] [268911] +12:08:38 [ 12] [ 6] [120745] +12:08:38 [ 13] [ 4] [0320] +12:08:38 [ 14] [ 4] [4912] +12:08:38 [ 15] [ 4] [0320] +12:08:38 [ 18] [ 4] [6011] +12:08:38 [ 19] [ 3] [418] +12:08:38 [ 22] [ 3] [021] +12:08:38 [ 25] [ 2] [01] +12:08:38 [ 28] [ 9] [D00002000] +12:08:38 [ 32] [ 6] [180893] +12:08:38 [ 35] [ 32] [6213545000912851=491212011285457] +12:08:38 [ 37] [ 12] [507905268911] +12:08:38 [ 41] [ 8] [0465UDNM] +12:08:38 [ 42] [ 15] [999999 ] +12:08:38 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:08:38 [ 49] [ 3] [418] +12:08:38 [ 52] [ 16] [37DE6EA1E4868702] +12:08:38 ============================================================================ +12:08:38 + + +waiting on router queue for slot.... +12:08:38 Sending to : +12:08:38 ============================================================================ +12:08:38 Sending to : +12:08:38 ============================================================================ +12:08:38 ============================================================================ +12:08:38 Slot Id : <122> +12:08:38 Transaction Type : REQUEST +12:08:38 Received From : +12:08:38 ============================================================================ +12:08:38 FNo. Len. Field Value +12:08:38 ============================================================================ +12:08:38 [ 1] [ 4] [0200] +12:08:38 [ 2] [ 16] [6213545000912851] +12:08:38 [ 3] [ 6] [010000] +12:08:38 [ 4] [ 12] [000100000000] +12:08:38 [ 7] [ 10] [0320050745] +12:08:38 [ 11] [ 6] [268911] +12:08:38 [ 12] [ 6] [120745] +12:08:38 [ 13] [ 4] [0320] +12:08:38 [ 14] [ 4] [4912] +12:08:38 [ 15] [ 4] [0320] +12:08:38 [ 18] [ 4] [6011] +12:08:38 [ 19] [ 3] [418] +12:08:38 [ 22] [ 3] [021] +12:08:38 [ 25] [ 2] [01] +12:08:38 [ 28] [ 9] [D00002000] +12:08:38 [ 32] [ 6] [180893] +12:08:38 [ 35] [ 32] [6213545000912851=491212011285457] +12:08:38 [ 37] [ 12] [507905268911] +12:08:38 [ 41] [ 8] [0465UDNM] +12:08:38 [ 42] [ 15] [999999 ] +12:08:38 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:08:38 [ 49] [ 3] [418] +12:08:38 [ 52] [ 16] [37DE6EA1E4868702] +12:08:38 ============================================================================ +12:08:38 + + +waiting on router queue for slot.... +12:08:38 Sending to : +12:08:38 ============================================================================ +12:08:38 ============================================================================ +12:08:38 Slot Id : <122> +12:08:38 Transaction Type : REQUEST +12:08:38 Received From : +12:08:38 ============================================================================ +12:08:38 FNo. Len. Field Value +12:08:38 ============================================================================ +12:08:38 [ 1] [ 4] [0200] +12:08:38 [ 2] [ 16] [6213545000912851] +12:08:38 [ 3] [ 6] [010000] +12:08:38 [ 4] [ 12] [000100000000] +12:08:38 [ 7] [ 10] [0320050745] +12:08:38 [ 11] [ 6] [268911] +12:08:38 [ 12] [ 6] [120745] +12:08:38 [ 13] [ 4] [0320] +12:08:38 [ 14] [ 4] [4912] +12:08:38 [ 15] [ 4] [0320] +12:08:38 [ 18] [ 4] [6011] +12:08:38 [ 19] [ 3] [418] +12:08:38 [ 22] [ 3] [021] +12:08:38 [ 25] [ 2] [01] +12:08:38 [ 28] [ 9] [D00002000] +12:08:38 [ 32] [ 6] [180893] +12:08:38 [ 35] [ 32] [6213545000912851=491212011285457] +12:08:38 [ 37] [ 12] [507905268911] +12:08:38 [ 41] [ 8] [0465UDNM] +12:08:38 [ 42] [ 15] [999999 ] +12:08:38 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:08:38 [ 49] [ 3] [418] +12:08:38 [ 52] [ 16] [DABBF45152737B74] +12:08:38 ============================================================================ +12:08:38 + + +waiting on router queue for slot.... +12:08:38 Sending to : <0> +12:08:38 ============================================================================ +12:08:39 ============================================================================ +12:08:39 Slot Id : <122> +12:08:39 Transaction Type : RESPONSE +12:08:39 Received From : +12:08:39 ============================================================================ +12:08:39 FNo. Len. Field Value +12:08:39 ============================================================================ +12:08:39 [ 1] [ 4] [0210] +12:08:39 [ 2] [ 16] [6213545000912851] +12:08:39 [ 3] [ 6] [010000] +12:08:39 [ 4] [ 12] [000100000000] +12:08:39 [ 7] [ 10] [0320050745] +12:08:39 [ 11] [ 6] [268911] +12:08:39 [ 12] [ 6] [120745] +12:08:39 [ 13] [ 4] [0320] +12:08:39 [ 15] [ 4] [0320] +12:08:39 [ 18] [ 4] [6011] +12:08:39 [ 19] [ 3] [418] +12:08:39 [ 32] [ 6] [180893] +12:08:39 [ 35] [ 32] [6213545000912851=491212011285457] +12:08:39 [ 37] [ 12] [507905268911] +12:08:39 [ 38] [ 6] [422340] +12:08:39 [ 39] [ 2] [00] +12:08:39 [ 41] [ 8] [0465UDNM] +12:08:39 [ 49] [ 3] [418] +12:08:39 [ 54] [ 40] [0001418C0000443965240002418C000044396524] +12:08:39 ============================================================================ +12:08:39 Sending to : +12:08:39 ============================================================================ +12:08:39 + + +waiting on router queue for slot.... +12:08:40 ============================================================================ +12:08:40 Slot Id : <122> +12:08:40 Transaction Type : RESPONSE +12:08:40 Received From : +12:08:40 ============================================================================ +12:08:40 FNo. Len. Field Value +12:08:40 ============================================================================ +12:08:40 [ 1] [ 4] [0210] +12:08:40 [ 2] [ 16] [6213545000912851] +12:08:40 [ 3] [ 6] [010000] +12:08:40 [ 4] [ 12] [000100000000] +12:08:40 [ 7] [ 10] [0320050745] +12:08:40 [ 11] [ 6] [268911] +12:08:40 [ 12] [ 6] [120745] +12:08:40 [ 13] [ 4] [0320] +12:08:40 [ 15] [ 4] [0320] +12:08:40 [ 18] [ 4] [6011] +12:08:40 [ 19] [ 3] [418] +12:08:40 [ 32] [ 6] [180893] +12:08:40 [ 35] [ 32] [6213545000912851=491212011285457] +12:08:40 [ 37] [ 12] [507905268911] +12:08:40 [ 38] [ 6] [422340] +12:08:40 [ 39] [ 2] [00] +12:08:40 [ 41] [ 8] [0465UDNM] +12:08:40 [ 49] [ 3] [418] +12:08:40 [ 54] [ 40] [0001418C0000443965240002418C000044396524] +12:08:40 ============================================================================ +12:08:40 Calculate Source COMM Id = 2 +12:08:40 ============================================================================ +12:08:40 + + +waiting on router queue for slot.... +12:08:41 ============================================================================ +12:08:41 Slot Id : <132> +12:08:41 Transaction Type : REQUEST +12:08:41 Received From : +12:08:41 ============================================================================ +12:08:41 FNo. Len. Field Value +12:08:41 ============================================================================ +12:08:41 [ 1] [ 4] [0200] +12:08:41 [ 2] [ 16] [6213548000479681] +12:08:41 [ 3] [ 6] [010000] +12:08:41 [ 4] [ 12] [000010000000] +12:08:41 [ 7] [ 10] [0320120632] +12:08:41 [ 11] [ 6] [943351] +12:08:41 [ 12] [ 6] [120632] +12:08:41 [ 13] [ 4] [0320] +12:08:41 [ 15] [ 4] [0320] +12:08:41 [ 18] [ 4] [6011] +12:08:41 [ 19] [ 3] [418] +12:08:41 [ 22] [ 3] [021] +12:08:41 [ 25] [ 2] [01] +12:08:41 [ 28] [ 9] [D00002000] +12:08:41 [ 32] [ 6] [668899] +12:08:41 [ 35] [ 32] [6213548000479681=180712017968791] +12:08:41 [ 37] [ 12] [507901963541] +12:08:41 [ 41] [ 8] [03020019] +12:08:41 [ 42] [ 15] [APT ] +12:08:41 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:08:41 [ 49] [ 3] [418] +12:08:41 [ 52] [ 16] [E6FB701B4B07026A] +12:08:41 ============================================================================ +12:08:41 + + +waiting on router queue for slot.... +12:08:41 Sending to : +12:08:41 ============================================================================ +12:08:41 Sending to : +12:08:41 ============================================================================ +12:08:42 ============================================================================ +12:08:42 Slot Id : <132> +12:08:42 Transaction Type : REQUEST +12:08:42 Received From : +12:08:42 ============================================================================ +12:08:42 FNo. Len. Field Value +12:08:42 ============================================================================ +12:08:42 [ 1] [ 4] [0200] +12:08:42 [ 2] [ 16] [6213548000479681] +12:08:42 [ 3] [ 6] [010000] +12:08:42 [ 4] [ 12] [000010000000] +12:08:42 [ 7] [ 10] [0320120632] +12:08:42 [ 11] [ 6] [943351] +12:08:42 [ 12] [ 6] [120632] +12:08:42 [ 13] [ 4] [0320] +12:08:42 [ 15] [ 4] [0320] +12:08:42 [ 18] [ 4] [6011] +12:08:42 [ 19] [ 3] [418] +12:08:42 [ 22] [ 3] [021] +12:08:42 [ 25] [ 2] [01] +12:08:42 [ 28] [ 9] [D00002000] +12:08:42 [ 32] [ 6] [668899] +12:08:42 [ 35] [ 32] [6213548000479681=180712017968791] +12:08:42 [ 37] [ 12] [507901963541] +12:08:42 [ 41] [ 8] [03020019] +12:08:42 [ 42] [ 15] [APT ] +12:08:42 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:08:42 [ 49] [ 3] [418] +12:08:42 [ 52] [ 16] [E6FB701B4B07026A] +12:08:42 ============================================================================ +12:08:42 + + +waiting on router queue for slot.... +12:08:42 Sending to : +12:08:42 ============================================================================ +12:08:42 ============================================================================ +12:08:42 Slot Id : <132> +12:08:42 Transaction Type : REQUEST +12:08:42 Received From : +12:08:42 ============================================================================ +12:08:42 FNo. Len. Field Value +12:08:42 ============================================================================ +12:08:42 [ 1] [ 4] [0200] +12:08:42 [ 2] [ 16] [6213548000479681] +12:08:42 [ 3] [ 6] [010000] +12:08:42 [ 4] [ 12] [000010000000] +12:08:42 [ 7] [ 10] [0320120632] +12:08:42 [ 11] [ 6] [943351] +12:08:42 [ 12] [ 6] [120632] +12:08:42 [ 13] [ 4] [0320] +12:08:42 [ 15] [ 4] [0320] +12:08:42 [ 18] [ 4] [6011] +12:08:42 [ 19] [ 3] [418] +12:08:42 [ 22] [ 3] [021] +12:08:42 [ 25] [ 2] [01] +12:08:42 [ 28] [ 9] [D00002000] +12:08:42 [ 32] [ 6] [668899] +12:08:42 [ 35] [ 32] [6213548000479681=180712017968791] +12:08:42 [ 37] [ 12] [507901963541] +12:08:42 [ 41] [ 8] [03020019] +12:08:42 [ 42] [ 15] [APT ] +12:08:42 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:08:42 [ 49] [ 3] [418] +12:08:42 [ 52] [ 16] [BFC84E68480C2B6C] +12:08:42 ============================================================================ +12:08:42 + + +waiting on router queue for slot.... +12:08:42 Sending to : <0> +12:08:42 ============================================================================ +12:08:43 ============================================================================ +12:08:43 Slot Id : <132> +12:08:43 Transaction Type : RESPONSE +12:08:43 Received From : +12:08:43 ============================================================================ +12:08:43 FNo. Len. Field Value +12:08:43 ============================================================================ +12:08:43 [ 1] [ 4] [0210] +12:08:43 [ 2] [ 16] [6213548000479681] +12:08:43 [ 3] [ 6] [010000] +12:08:43 [ 4] [ 12] [000010000000] +12:08:43 [ 7] [ 10] [0320120632] +12:08:43 [ 11] [ 6] [943351] +12:08:43 [ 12] [ 6] [120632] +12:08:43 [ 13] [ 4] [0320] +12:08:43 [ 15] [ 4] [0320] +12:08:43 [ 18] [ 4] [6011] +12:08:43 [ 19] [ 3] [418] +12:08:43 [ 32] [ 6] [668899] +12:08:43 [ 35] [ 32] [6213548000479681=180712017968791] +12:08:43 [ 37] [ 12] [507901963541] +12:08:43 [ 38] [ 6] [009783] +12:08:43 [ 39] [ 2] [00] +12:08:43 [ 41] [ 8] [03020019] +12:08:43 [ 49] [ 3] [418] +12:08:43 [ 54] [ 40] [0001418C0000496918710002418C000049691871] +12:08:43 ============================================================================ +12:08:43 Sending to : +12:08:43 ============================================================================ +12:08:43 + + +waiting on router queue for slot.... +12:08:45 ============================================================================ +12:08:45 Slot Id : <132> +12:08:45 Transaction Type : RESPONSE +12:08:45 Received From : +12:08:45 ============================================================================ +12:08:45 FNo. Len. Field Value +12:08:45 ============================================================================ +12:08:45 [ 1] [ 4] [0210] +12:08:45 [ 2] [ 16] [6213548000479681] +12:08:45 [ 3] [ 6] [010000] +12:08:45 [ 4] [ 12] [000010000000] +12:08:45 [ 7] [ 10] [0320120632] +12:08:45 [ 11] [ 6] [943351] +12:08:45 [ 12] [ 6] [120632] +12:08:45 [ 13] [ 4] [0320] +12:08:45 [ 15] [ 4] [0320] +12:08:45 [ 18] [ 4] [6011] +12:08:45 [ 19] [ 3] [418] +12:08:45 [ 32] [ 6] [668899] +12:08:45 [ 35] [ 32] [6213548000479681=180712017968791] +12:08:45 [ 37] [ 12] [507901963541] +12:08:45 [ 38] [ 6] [009783] +12:08:45 [ 39] [ 2] [00] +12:08:45 [ 41] [ 8] [03020019] +12:08:45 [ 49] [ 3] [418] +12:08:45 [ 54] [ 40] [0001418C0000496918710002418C000049691871] +12:08:45 ============================================================================ +12:08:45 Calculate Source COMM Id = 4 +12:08:45 ============================================================================ +12:08:45 + + +waiting on router queue for slot.... +12:08:51 ============================================================================ +12:08:51 Slot Id : <162> +12:08:51 Transaction Type : REQUEST +12:08:51 Received From : +12:08:51 ============================================================================ +12:08:51 FNo. Len. Field Value +12:08:51 ============================================================================ +12:08:51 [ 1] [ 4] [0200] +12:08:51 [ 2] [ 16] [6213545000137616] +12:08:51 [ 3] [ 6] [010000] +12:08:51 [ 4] [ 12] [000050000000] +12:08:51 [ 7] [ 10] [0320050757] +12:08:51 [ 11] [ 6] [268913] +12:08:51 [ 12] [ 6] [120757] +12:08:51 [ 13] [ 4] [0320] +12:08:51 [ 14] [ 4] [4912] +12:08:51 [ 15] [ 4] [0320] +12:08:51 [ 18] [ 4] [6011] +12:08:51 [ 19] [ 3] [418] +12:08:51 [ 22] [ 3] [021] +12:08:51 [ 25] [ 2] [01] +12:08:51 [ 28] [ 9] [D00002000] +12:08:51 [ 32] [ 6] [180893] +12:08:51 [ 35] [ 32] [6213545000137616=491212013761318] +12:08:51 [ 37] [ 12] [507905268913] +12:08:51 [ 41] [ 8] [0363CPSH] +12:08:51 [ 42] [ 15] [999999 ] +12:08:51 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:08:51 [ 49] [ 3] [418] +12:08:51 [ 52] [ 16] [52F446769FA4AA34] +12:08:51 ============================================================================ +12:08:51 + + +waiting on router queue for slot.... +12:08:51 Sending to : +12:08:51 ============================================================================ +12:08:51 Sending to : +12:08:51 ============================================================================ +12:08:51 ============================================================================ +12:08:51 Slot Id : <162> +12:08:51 Transaction Type : REQUEST +12:08:51 Received From : +12:08:51 ============================================================================ +12:08:51 FNo. Len. Field Value +12:08:51 ============================================================================ +12:08:51 [ 1] [ 4] [0200] +12:08:51 [ 2] [ 16] [6213545000137616] +12:08:51 [ 3] [ 6] [010000] +12:08:51 [ 4] [ 12] [000050000000] +12:08:51 [ 7] [ 10] [0320050757] +12:08:51 [ 11] [ 6] [268913] +12:08:51 [ 12] [ 6] [120757] +12:08:51 [ 13] [ 4] [0320] +12:08:51 [ 14] [ 4] [4912] +12:08:51 [ 15] [ 4] [0320] +12:08:51 [ 18] [ 4] [6011] +12:08:51 [ 19] [ 3] [418] +12:08:51 [ 22] [ 3] [021] +12:08:51 [ 25] [ 2] [01] +12:08:51 [ 28] [ 9] [D00002000] +12:08:51 [ 32] [ 6] [180893] +12:08:51 [ 35] [ 32] [6213545000137616=491212013761318] +12:08:51 [ 37] [ 12] [507905268913] +12:08:51 [ 41] [ 8] [0363CPSH] +12:08:51 [ 42] [ 15] [999999 ] +12:08:51 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:08:51 [ 49] [ 3] [418] +12:08:51 [ 52] [ 16] [52F446769FA4AA34] +12:08:51 ============================================================================ +12:08:51 + + +waiting on router queue for slot.... +12:08:51 Sending to : +12:08:51 ============================================================================ +12:08:51 ============================================================================ +12:08:51 Slot Id : <162> +12:08:51 Transaction Type : REQUEST +12:08:51 Received From : +12:08:51 ============================================================================ +12:08:51 FNo. Len. Field Value +12:08:51 ============================================================================ +12:08:51 [ 1] [ 4] [0200] +12:08:51 [ 2] [ 16] [6213545000137616] +12:08:51 [ 3] [ 6] [010000] +12:08:51 [ 4] [ 12] [000050000000] +12:08:51 [ 7] [ 10] [0320050757] +12:08:51 [ 11] [ 6] [268913] +12:08:51 [ 12] [ 6] [120757] +12:08:51 [ 13] [ 4] [0320] +12:08:51 [ 14] [ 4] [4912] +12:08:51 [ 15] [ 4] [0320] +12:08:51 [ 18] [ 4] [6011] +12:08:51 [ 19] [ 3] [418] +12:08:51 [ 22] [ 3] [021] +12:08:51 [ 25] [ 2] [01] +12:08:51 [ 28] [ 9] [D00002000] +12:08:51 [ 32] [ 6] [180893] +12:08:51 [ 35] [ 32] [6213545000137616=491212013761318] +12:08:51 [ 37] [ 12] [507905268913] +12:08:51 [ 41] [ 8] [0363CPSH] +12:08:51 [ 42] [ 15] [999999 ] +12:08:51 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:08:51 [ 49] [ 3] [418] +12:08:51 [ 52] [ 16] [DBD86624E4C1FE08] +12:08:51 ============================================================================ +12:08:51 + + +waiting on router queue for slot.... +12:08:51 Sending to : <0> +12:08:51 ============================================================================ +12:08:52 ============================================================================ +12:08:52 Slot Id : <162> +12:08:52 Transaction Type : RESPONSE +12:08:52 Received From : +12:08:52 ============================================================================ +12:08:52 FNo. Len. Field Value +12:08:52 ============================================================================ +12:08:52 [ 1] [ 4] [0210] +12:08:52 [ 2] [ 16] [6213545000137616] +12:08:52 [ 3] [ 6] [010000] +12:08:52 [ 4] [ 12] [000050000000] +12:08:52 [ 7] [ 10] [0320050757] +12:08:52 [ 11] [ 6] [268913] +12:08:52 [ 12] [ 6] [120757] +12:08:52 [ 13] [ 4] [0320] +12:08:52 [ 15] [ 4] [0320] +12:08:52 [ 18] [ 4] [6011] +12:08:52 [ 19] [ 3] [418] +12:08:52 [ 32] [ 6] [180893] +12:08:52 [ 35] [ 32] [6213545000137616=491212013761318] +12:08:52 [ 37] [ 12] [507905268913] +12:08:52 [ 38] [ 6] [231276] +12:08:52 [ 39] [ 2] [00] +12:08:52 [ 41] [ 8] [0363CPSH] +12:08:52 [ 49] [ 3] [418] +12:08:52 [ 54] [ 40] [0001418C0001361674410002418C000136167441] +12:08:52 ============================================================================ +12:08:52 Sending to : +12:08:52 ============================================================================ +12:08:52 + + +waiting on router queue for slot.... +12:08:53 ============================================================================ +12:08:53 Slot Id : <162> +12:08:53 Transaction Type : RESPONSE +12:08:53 Received From : +12:08:53 ============================================================================ +12:08:53 FNo. Len. Field Value +12:08:53 ============================================================================ +12:08:53 [ 1] [ 4] [0210] +12:08:53 [ 2] [ 16] [6213545000137616] +12:08:53 [ 3] [ 6] [010000] +12:08:53 [ 4] [ 12] [000050000000] +12:08:53 [ 7] [ 10] [0320050757] +12:08:53 [ 11] [ 6] [268913] +12:08:53 [ 12] [ 6] [120757] +12:08:53 [ 13] [ 4] [0320] +12:08:53 [ 15] [ 4] [0320] +12:08:53 [ 18] [ 4] [6011] +12:08:53 [ 19] [ 3] [418] +12:08:53 [ 32] [ 6] [180893] +12:08:53 [ 35] [ 32] [6213545000137616=491212013761318] +12:08:53 [ 37] [ 12] [507905268913] +12:08:53 [ 38] [ 6] [231276] +12:08:53 [ 39] [ 2] [00] +12:08:53 [ 41] [ 8] [0363CPSH] +12:08:53 [ 49] [ 3] [418] +12:08:53 [ 54] [ 40] [0001418C0001361674410002418C000136167441] +12:08:53 ============================================================================ +12:08:53 Calculate Source COMM Id = 2 +12:08:53 ============================================================================ +12:08:53 + + +waiting on router queue for slot.... +12:09:06 ============================================================================ +12:09:06 Slot Id : <145> +12:09:06 Transaction Type : REQUEST +12:09:06 Received From : +12:09:06 ============================================================================ +12:09:06 FNo. Len. Field Value +12:09:06 ============================================================================ +12:09:06 [ 1] [ 4] [0800] +12:09:06 [ 7] [ 10] [0320050814] +12:09:06 [ 11] [ 6] [156233] +12:09:06 [ 70] [ 3] [301] +12:09:06 ============================================================================ +12:09:06 + + +waiting on router queue for slot.... +12:09:06 Sending to : +12:09:06 ============================================================================ +12:09:06 ============================================================================ +12:09:06 Slot Id : <145> +12:09:06 Transaction Type : RESPONSE +12:09:06 Received From : +12:09:06 ============================================================================ +12:09:06 FNo. Len. Field Value +12:09:06 ============================================================================ +12:09:06 [ 1] [ 4] [0810] +12:09:06 [ 7] [ 10] [0320050814] +12:09:06 [ 11] [ 6] [156233] +12:09:06 [ 39] [ 2] [00] +12:09:06 [ 70] [ 3] [301] +12:09:06 ============================================================================ +12:09:06 Calculate Source COMM Id = 2 +12:09:06 ============================================================================ +12:09:06 + + +waiting on router queue for slot.... +12:09:08 ============================================================================ +12:09:08 Slot Id : <154> +12:09:08 Transaction Type : REQUEST +12:09:08 Received From : +12:09:08 ============================================================================ +12:09:08 FNo. Len. Field Value +12:09:08 ============================================================================ +12:09:08 [ 1] [ 4] [0800] +12:09:08 [ 2] [ 5] [02531] +12:09:08 [ 3] [ 6] [579128] +12:09:08 [ 7] [ 10] [0320050908] +12:09:08 [ 11] [ 6] [807117] +12:09:08 [ 15] [ 10] [0320050908] +12:09:08 [ 37] [ 11] [57912807117] +12:09:08 [ 70] [ 3] [001] +12:09:08 ============================================================================ +12:09:08 + + +waiting on router queue for slot.... +12:09:08 ============================================================================ +12:09:08 Slot Id : <154> +12:09:08 Transaction Type : RESPONSE +12:09:08 Received From : +12:09:08 ============================================================================ +12:09:08 FNo. Len. Field Value +12:09:08 ============================================================================ +12:09:08 [ 1] [ 4] [0810] +12:09:08 [ 7] [ 10] [0320050908] +12:09:08 [ 11] [ 6] [807117] +12:09:08 [ 15] [ 4] [0320] +12:09:08 [ 37] [ 12] [57912807117] +12:09:08 [ 39] [ 2] [00] +12:09:08 [ 70] [ 3] [001] +12:09:08 ============================================================================ +12:09:08 Sending to : +12:09:08 ============================================================================ +12:09:08 + + +waiting on router queue for slot.... +12:09:17 ============================================================================ +12:09:17 Slot Id : <158> +12:09:17 Transaction Type : REQUEST +12:09:17 Received From : +12:09:17 ============================================================================ +12:09:17 FNo. Len. Field Value +12:09:17 ============================================================================ +12:09:17 [ 1] [ 4] [0800] +12:09:17 [ 7] [ 10] [0320050824] +12:09:17 [ 11] [ 6] [156234] +12:09:17 [ 70] [ 3] [301] +12:09:17 ============================================================================ +12:09:17 + + +waiting on router queue for slot.... +12:09:17 Sending to : +12:09:17 ============================================================================ +12:09:17 ============================================================================ +12:09:17 Slot Id : <158> +12:09:17 Transaction Type : RESPONSE +12:09:17 Received From : +12:09:17 ============================================================================ +12:09:17 FNo. Len. Field Value +12:09:17 ============================================================================ +12:09:17 [ 1] [ 4] [0810] +12:09:17 [ 7] [ 10] [0320050824] +12:09:17 [ 11] [ 6] [156234] +12:09:17 [ 39] [ 2] [00] +12:09:17 [ 70] [ 3] [301] +12:09:17 ============================================================================ +12:09:17 Calculate Source COMM Id = 2 +12:09:17 ============================================================================ +12:09:17 + + +waiting on router queue for slot.... +12:09:28 ============================================================================ +12:09:28 Slot Id : <143> +12:09:28 Transaction Type : REQUEST +12:09:28 Received From : +12:09:28 ============================================================================ +12:09:28 FNo. Len. Field Value +12:09:28 ============================================================================ +12:09:28 [ 1] [ 4] [0800] +12:09:28 [ 7] [ 10] [0320050836] +12:09:28 [ 11] [ 6] [156235] +12:09:28 [ 70] [ 3] [301] +12:09:28 ============================================================================ +12:09:28 + + +waiting on router queue for slot.... +12:09:28 Sending to : +12:09:28 ============================================================================ +12:09:28 ============================================================================ +12:09:28 Slot Id : <143> +12:09:28 Transaction Type : RESPONSE +12:09:28 Received From : +12:09:28 ============================================================================ +12:09:28 FNo. Len. Field Value +12:09:28 ============================================================================ +12:09:28 [ 1] [ 4] [0810] +12:09:28 [ 7] [ 10] [0320050836] +12:09:28 [ 11] [ 6] [156235] +12:09:28 [ 39] [ 2] [00] +12:09:28 [ 70] [ 3] [301] +12:09:28 ============================================================================ +12:09:28 Calculate Source COMM Id = 2 +12:09:28 ============================================================================ +12:09:28 + + +waiting on router queue for slot.... +12:09:29 ============================================================================ +12:09:29 Slot Id : <166> +12:09:29 Transaction Type : REQUEST +12:09:29 Received From : +12:09:29 ============================================================================ +12:09:29 FNo. Len. Field Value +12:09:29 ============================================================================ +12:09:29 [ 1] [ 4] [0200] +12:09:29 [ 2] [ 16] [6213545000995864] +12:09:29 [ 3] [ 6] [311000] +12:09:29 [ 4] [ 12] [000000000000] +12:09:29 [ 7] [ 10] [0320121716] +12:09:29 [ 11] [ 6] [021163] +12:09:29 [ 12] [ 6] [121716] +12:09:29 [ 13] [ 4] [0320] +12:09:29 [ 14] [ 4] [4912] +12:09:29 [ 15] [ 4] [0320] +12:09:29 [ 18] [ 4] [6011] +12:09:29 [ 22] [ 3] [900] +12:09:29 [ 25] [ 2] [02] +12:09:29 [ 28] [ 9] [000000000] +12:09:29 [ 32] [ 6] [220699] +12:09:29 [ 35] [ 32] [6213545000995864=491212019586446] +12:09:29 [ 37] [ 12] [507900263113] +12:09:29 [ 41] [ 8] [01001400] +12:09:29 [ 42] [ 15] [APTRA ] +12:09:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:09:29 [ 49] [ 3] [418] +12:09:29 [ 52] [ 16] [62155D2BD386372F] +12:09:29 ============================================================================ +12:09:29 + + +waiting on router queue for slot.... +12:09:29 Sending to : +12:09:29 ============================================================================ +12:09:29 Sending to : +12:09:29 ============================================================================ +12:09:29 ============================================================================ +12:09:29 Slot Id : <166> +12:09:29 Transaction Type : REQUEST +12:09:29 Received From : +12:09:29 ============================================================================ +12:09:29 FNo. Len. Field Value +12:09:29 ============================================================================ +12:09:29 [ 1] [ 4] [0200] +12:09:29 [ 2] [ 16] [6213545000995864] +12:09:29 [ 3] [ 6] [311000] +12:09:29 [ 4] [ 12] [000000000000] +12:09:29 [ 7] [ 10] [0320121716] +12:09:29 [ 11] [ 6] [021163] +12:09:29 [ 12] [ 6] [121716] +12:09:29 [ 13] [ 4] [0320] +12:09:29 [ 14] [ 4] [4912] +12:09:29 [ 15] [ 4] [0320] +12:09:29 [ 18] [ 4] [6011] +12:09:29 [ 22] [ 3] [900] +12:09:29 [ 25] [ 2] [02] +12:09:29 [ 28] [ 9] [000000000] +12:09:29 [ 32] [ 6] [220699] +12:09:29 [ 35] [ 32] [6213545000995864=491212019586446] +12:09:29 [ 37] [ 12] [507900263113] +12:09:29 [ 41] [ 8] [01001400] +12:09:29 [ 42] [ 15] [APTRA ] +12:09:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:09:29 [ 49] [ 3] [418] +12:09:29 [ 52] [ 16] [62155D2BD386372F] +12:09:29 ============================================================================ +12:09:29 + + +waiting on router queue for slot.... +12:09:29 Sending to : +12:09:29 ============================================================================ +12:09:29 ============================================================================ +12:09:29 Slot Id : <166> +12:09:29 Transaction Type : REQUEST +12:09:29 Received From : +12:09:29 ============================================================================ +12:09:29 FNo. Len. Field Value +12:09:29 ============================================================================ +12:09:29 [ 1] [ 4] [0200] +12:09:29 [ 2] [ 16] [6213545000995864] +12:09:29 [ 3] [ 6] [311000] +12:09:29 [ 4] [ 12] [000000000000] +12:09:29 [ 7] [ 10] [0320121716] +12:09:29 [ 11] [ 6] [021163] +12:09:29 [ 12] [ 6] [121716] +12:09:29 [ 13] [ 4] [0320] +12:09:29 [ 14] [ 4] [4912] +12:09:29 [ 15] [ 4] [0320] +12:09:29 [ 18] [ 4] [6011] +12:09:29 [ 22] [ 3] [900] +12:09:29 [ 25] [ 2] [02] +12:09:29 [ 28] [ 9] [000000000] +12:09:29 [ 32] [ 6] [220699] +12:09:29 [ 35] [ 32] [6213545000995864=491212019586446] +12:09:29 [ 37] [ 12] [507900263113] +12:09:29 [ 41] [ 8] [01001400] +12:09:29 [ 42] [ 15] [APTRA ] +12:09:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:09:29 [ 49] [ 3] [418] +12:09:29 [ 52] [ 16] [276A1305BAEDCAB8] +12:09:29 ============================================================================ +12:09:29 + + +waiting on router queue for slot.... +12:09:29 Sending to : <0> +12:09:29 ============================================================================ +12:09:29 ============================================================================ +12:09:29 Slot Id : <166> +12:09:29 Transaction Type : RESPONSE +12:09:29 Received From : +12:09:29 ============================================================================ +12:09:29 FNo. Len. Field Value +12:09:29 ============================================================================ +12:09:29 [ 1] [ 4] [0210] +12:09:29 [ 2] [ 16] [6213545000995864] +12:09:29 [ 3] [ 6] [311000] +12:09:29 [ 4] [ 12] [000000000000] +12:09:29 [ 7] [ 10] [0320121716] +12:09:29 [ 11] [ 6] [021163] +12:09:29 [ 12] [ 6] [121716] +12:09:29 [ 13] [ 4] [0320] +12:09:29 [ 15] [ 4] [0320] +12:09:29 [ 18] [ 4] [6011] +12:09:29 [ 32] [ 6] [220699] +12:09:29 [ 35] [ 32] [6213545000995864=491212019586446] +12:09:29 [ 37] [ 12] [507900263113] +12:09:29 [ 38] [ 6] [137390] +12:09:29 [ 39] [ 2] [00] +12:09:29 [ 41] [ 8] [01001400] +12:09:29 [ 49] [ 3] [418] +12:09:29 [ 54] [ 40] [1001418C0000051362051002418C000005136205] +12:09:29 ============================================================================ +12:09:29 Sending to : +12:09:29 ============================================================================ +12:09:29 + + +waiting on router queue for slot.... +12:09:31 ============================================================================ +12:09:31 Slot Id : <166> +12:09:31 Transaction Type : RESPONSE +12:09:31 Received From : +12:09:31 ============================================================================ +12:09:31 FNo. Len. Field Value +12:09:31 ============================================================================ +12:09:31 [ 1] [ 4] [0210] +12:09:31 [ 2] [ 16] [6213545000995864] +12:09:31 [ 3] [ 6] [311000] +12:09:31 [ 4] [ 12] [000000000000] +12:09:31 [ 7] [ 10] [0320121716] +12:09:31 [ 11] [ 6] [021163] +12:09:31 [ 12] [ 6] [121716] +12:09:31 [ 13] [ 4] [0320] +12:09:31 [ 15] [ 4] [0320] +12:09:31 [ 18] [ 4] [6011] +12:09:31 [ 32] [ 6] [220699] +12:09:31 [ 35] [ 32] [6213545000995864=491212019586446] +12:09:31 [ 37] [ 12] [507900263113] +12:09:31 [ 38] [ 6] [137390] +12:09:31 [ 39] [ 2] [00] +12:09:31 [ 41] [ 8] [01001400] +12:09:31 [ 49] [ 3] [418] +12:09:31 [ 54] [ 40] [1001418C0000051362051002418C000005136205] +12:09:31 ============================================================================ +12:09:31 Calculate Source COMM Id = 1 +12:09:31 ============================================================================ +12:09:31 + + +waiting on router queue for slot.... +12:09:31 ============================================================================ +12:09:31 Slot Id : <120> +12:09:31 Transaction Type : REQUEST +12:09:31 Received From : +12:09:31 ============================================================================ +12:09:31 FNo. Len. Field Value +12:09:31 ============================================================================ +12:09:31 [ 1] [ 4] [0200] +12:09:31 [ 2] [ 16] [6213545000912851] +12:09:31 [ 3] [ 6] [010000] +12:09:31 [ 4] [ 12] [000050000000] +12:09:31 [ 7] [ 10] [0320050839] +12:09:31 [ 11] [ 6] [268920] +12:09:31 [ 12] [ 6] [120839] +12:09:31 [ 13] [ 4] [0320] +12:09:31 [ 14] [ 4] [4912] +12:09:31 [ 15] [ 4] [0320] +12:09:31 [ 18] [ 4] [6011] +12:09:31 [ 19] [ 3] [418] +12:09:31 [ 22] [ 3] [021] +12:09:31 [ 25] [ 2] [01] +12:09:31 [ 28] [ 9] [D00002000] +12:09:31 [ 32] [ 6] [180893] +12:09:31 [ 35] [ 32] [6213545000912851=491212011285457] +12:09:31 [ 37] [ 12] [507905268920] +12:09:31 [ 41] [ 8] [0465UDNM] +12:09:31 [ 42] [ 15] [999999 ] +12:09:31 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:09:31 [ 49] [ 3] [418] +12:09:31 [ 52] [ 16] [37DE6EA1E4868702] +12:09:31 ============================================================================ +12:09:31 + + +waiting on router queue for slot.... +12:09:31 Sending to : +12:09:31 ============================================================================ +12:09:31 Sending to : +12:09:31 ============================================================================ +12:09:32 ============================================================================ +12:09:32 Slot Id : <120> +12:09:32 Transaction Type : REQUEST +12:09:32 Received From : +12:09:32 ============================================================================ +12:09:32 FNo. Len. Field Value +12:09:32 ============================================================================ +12:09:32 [ 1] [ 4] [0200] +12:09:32 [ 2] [ 16] [6213545000912851] +12:09:32 [ 3] [ 6] [010000] +12:09:32 [ 4] [ 12] [000050000000] +12:09:32 [ 7] [ 10] [0320050839] +12:09:32 [ 11] [ 6] [268920] +12:09:32 [ 12] [ 6] [120839] +12:09:32 [ 13] [ 4] [0320] +12:09:32 [ 14] [ 4] [4912] +12:09:32 [ 15] [ 4] [0320] +12:09:32 [ 18] [ 4] [6011] +12:09:32 [ 19] [ 3] [418] +12:09:32 [ 22] [ 3] [021] +12:09:32 [ 25] [ 2] [01] +12:09:32 [ 28] [ 9] [D00002000] +12:09:32 [ 32] [ 6] [180893] +12:09:32 [ 35] [ 32] [6213545000912851=491212011285457] +12:09:32 [ 37] [ 12] [507905268920] +12:09:32 [ 41] [ 8] [0465UDNM] +12:09:32 [ 42] [ 15] [999999 ] +12:09:32 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:09:32 [ 49] [ 3] [418] +12:09:32 [ 52] [ 16] [37DE6EA1E4868702] +12:09:32 ============================================================================ +12:09:32 + + +waiting on router queue for slot.... +12:09:32 Sending to : +12:09:32 ============================================================================ +12:09:32 ============================================================================ +12:09:32 Slot Id : <120> +12:09:32 Transaction Type : REQUEST +12:09:32 Received From : +12:09:32 ============================================================================ +12:09:32 FNo. Len. Field Value +12:09:32 ============================================================================ +12:09:32 [ 1] [ 4] [0200] +12:09:32 [ 2] [ 16] [6213545000912851] +12:09:32 [ 3] [ 6] [010000] +12:09:32 [ 4] [ 12] [000050000000] +12:09:32 [ 7] [ 10] [0320050839] +12:09:32 [ 11] [ 6] [268920] +12:09:32 [ 12] [ 6] [120839] +12:09:32 [ 13] [ 4] [0320] +12:09:32 [ 14] [ 4] [4912] +12:09:32 [ 15] [ 4] [0320] +12:09:32 [ 18] [ 4] [6011] +12:09:32 [ 19] [ 3] [418] +12:09:32 [ 22] [ 3] [021] +12:09:32 [ 25] [ 2] [01] +12:09:32 [ 28] [ 9] [D00002000] +12:09:32 [ 32] [ 6] [180893] +12:09:32 [ 35] [ 32] [6213545000912851=491212011285457] +12:09:32 [ 37] [ 12] [507905268920] +12:09:32 [ 41] [ 8] [0465UDNM] +12:09:32 [ 42] [ 15] [999999 ] +12:09:32 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:09:32 [ 49] [ 3] [418] +12:09:32 [ 52] [ 16] [DABBF45152737B74] +12:09:32 ============================================================================ +12:09:32 + + +waiting on router queue for slot.... +12:09:32 Sending to : <0> +12:09:32 ============================================================================ +12:09:32 ============================================================================ +12:09:32 Slot Id : <120> +12:09:32 Transaction Type : RESPONSE +12:09:32 Received From : +12:09:32 ============================================================================ +12:09:32 FNo. Len. Field Value +12:09:32 ============================================================================ +12:09:32 [ 1] [ 4] [0210] +12:09:32 [ 2] [ 16] [6213545000912851] +12:09:32 [ 3] [ 6] [010000] +12:09:32 [ 4] [ 12] [000050000000] +12:09:32 [ 7] [ 10] [0320050839] +12:09:32 [ 11] [ 6] [268920] +12:09:32 [ 12] [ 6] [120839] +12:09:32 [ 13] [ 4] [0320] +12:09:32 [ 15] [ 4] [0320] +12:09:32 [ 18] [ 4] [6011] +12:09:32 [ 19] [ 3] [418] +12:09:32 [ 32] [ 6] [180893] +12:09:32 [ 35] [ 32] [6213545000912851=491212011285457] +12:09:32 [ 37] [ 12] [507905268920] +12:09:32 [ 38] [ 6] [268920] +12:09:32 [ 39] [ 2] [51] +12:09:32 [ 41] [ 8] [0465UDNM] +12:09:32 [ 49] [ 3] [418] +12:09:32 [ 54] [ 40] [0001418C0000443965240002418C000044396524] +12:09:32 ============================================================================ +12:09:32 Sending to : +12:09:32 ============================================================================ +12:09:32 + + +waiting on router queue for slot.... +12:09:33 ============================================================================ +12:09:33 Slot Id : <120> +12:09:33 Transaction Type : RESPONSE +12:09:33 Received From : +12:09:33 ============================================================================ +12:09:33 FNo. Len. Field Value +12:09:33 ============================================================================ +12:09:33 [ 1] [ 4] [0210] +12:09:33 [ 2] [ 16] [6213545000912851] +12:09:33 [ 3] [ 6] [010000] +12:09:33 [ 4] [ 12] [000050000000] +12:09:33 [ 7] [ 10] [0320050839] +12:09:33 [ 11] [ 6] [268920] +12:09:33 [ 12] [ 6] [120839] +12:09:33 [ 13] [ 4] [0320] +12:09:33 [ 15] [ 4] [0320] +12:09:33 [ 18] [ 4] [6011] +12:09:33 [ 19] [ 3] [418] +12:09:33 [ 32] [ 6] [180893] +12:09:33 [ 35] [ 32] [6213545000912851=491212011285457] +12:09:33 [ 37] [ 12] [507905268920] +12:09:33 [ 38] [ 6] [268920] +12:09:33 [ 39] [ 2] [51] +12:09:33 [ 41] [ 8] [0465UDNM] +12:09:33 [ 49] [ 3] [418] +12:09:33 [ 54] [ 40] [0001418C0000443965240002418C000044396524] +12:09:33 ============================================================================ +12:09:33 Calculate Source COMM Id = 2 +12:09:33 ============================================================================ +12:09:33 + + +waiting on router queue for slot.... +12:09:45 ============================================================================ +12:09:45 Slot Id : <133> +12:09:45 Transaction Type : REQUEST +12:09:45 Received From : +12:09:45 ============================================================================ +12:09:45 FNo. Len. Field Value +12:09:45 ============================================================================ +12:09:45 [ 1] [ 4] [0800] +12:09:45 [ 7] [ 10] [0320050852] +12:09:45 [ 11] [ 6] [156236] +12:09:45 [ 70] [ 3] [301] +12:09:45 ============================================================================ +12:09:45 + + +waiting on router queue for slot.... +12:09:45 Sending to : +12:09:45 ============================================================================ +12:09:45 ============================================================================ +12:09:45 Slot Id : <133> +12:09:45 Transaction Type : RESPONSE +12:09:45 Received From : +12:09:45 ============================================================================ +12:09:45 FNo. Len. Field Value +12:09:45 ============================================================================ +12:09:45 [ 1] [ 4] [0810] +12:09:45 [ 7] [ 10] [0320050852] +12:09:45 [ 11] [ 6] [156236] +12:09:45 [ 39] [ 2] [00] +12:09:45 [ 70] [ 3] [301] +12:09:45 ============================================================================ +12:09:45 Calculate Source COMM Id = 2 +12:09:45 ============================================================================ +12:09:45 + + +waiting on router queue for slot.... +12:09:51 ============================================================================ +12:09:51 Slot Id : <150> +12:09:51 Transaction Type : REQUEST +12:09:51 Received From : +12:09:51 ============================================================================ +12:09:51 FNo. Len. Field Value +12:09:51 ============================================================================ +12:09:51 [ 1] [ 4] [0200] +12:09:51 [ 2] [ 16] [6213544002135223] +12:09:51 [ 3] [ 6] [011000] +12:09:51 [ 4] [ 12] [000010000000] +12:09:51 [ 7] [ 10] [0320121012] +12:09:51 [ 11] [ 6] [205278] +12:09:51 [ 12] [ 6] [121156] +12:09:51 [ 13] [ 4] [0320] +12:09:51 [ 14] [ 4] [4912] +12:09:51 [ 15] [ 4] [0320] +12:09:51 [ 18] [ 4] [6011] +12:09:51 [ 19] [ 3] [418] +12:09:51 [ 22] [ 3] [021] +12:09:51 [ 25] [ 2] [01] +12:09:51 [ 28] [ 9] [D00002000] +12:09:51 [ 32] [ 6] [198901] +12:09:51 [ 35] [ 32] [6213544002135223=491212013522973] +12:09:51 [ 37] [ 12] [507912205278] +12:09:51 [ 41] [ 8] [00002222] +12:09:51 [ 42] [ 15] [000000041002222] +12:09:51 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:09:51 [ 49] [ 3] [418] +12:09:51 [ 52] [ 16] [2066AD453DCA8C0D] +12:09:51 ============================================================================ +12:09:51 + + +waiting on router queue for slot.... +12:09:51 Sending to : +12:09:51 ============================================================================ +12:09:51 Sending to : +12:09:51 ============================================================================ +12:09:52 ============================================================================ +12:09:52 Slot Id : <150> +12:09:52 Transaction Type : REQUEST +12:09:52 Received From : +12:09:52 ============================================================================ +12:09:52 FNo. Len. Field Value +12:09:52 ============================================================================ +12:09:52 [ 1] [ 4] [0200] +12:09:52 [ 2] [ 16] [6213544002135223] +12:09:52 [ 3] [ 6] [011000] +12:09:52 [ 4] [ 12] [000010000000] +12:09:52 [ 7] [ 10] [0320121012] +12:09:52 [ 11] [ 6] [205278] +12:09:52 [ 12] [ 6] [121156] +12:09:52 [ 13] [ 4] [0320] +12:09:52 [ 14] [ 4] [4912] +12:09:52 [ 15] [ 4] [0320] +12:09:52 [ 18] [ 4] [6011] +12:09:52 [ 19] [ 3] [418] +12:09:52 [ 22] [ 3] [021] +12:09:52 [ 25] [ 2] [01] +12:09:52 [ 28] [ 9] [D00002000] +12:09:52 [ 32] [ 6] [198901] +12:09:52 [ 35] [ 32] [6213544002135223=491212013522973] +12:09:52 [ 37] [ 12] [507912205278] +12:09:52 [ 41] [ 8] [00002222] +12:09:52 [ 42] [ 15] [000000041002222] +12:09:52 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:09:52 [ 49] [ 3] [418] +12:09:52 [ 52] [ 16] [2066AD453DCA8C0D] +12:09:52 ============================================================================ +12:09:52 + + +waiting on router queue for slot.... +12:09:52 Sending to : +12:09:52 ============================================================================ +12:09:52 ============================================================================ +12:09:52 Slot Id : <150> +12:09:52 Transaction Type : REQUEST +12:09:52 Received From : +12:09:52 ============================================================================ +12:09:52 FNo. Len. Field Value +12:09:52 ============================================================================ +12:09:52 [ 1] [ 4] [0200] +12:09:52 [ 2] [ 16] [6213544002135223] +12:09:52 [ 3] [ 6] [011000] +12:09:52 [ 4] [ 12] [000010000000] +12:09:52 [ 7] [ 10] [0320121012] +12:09:52 [ 11] [ 6] [205278] +12:09:52 [ 12] [ 6] [121156] +12:09:52 [ 13] [ 4] [0320] +12:09:52 [ 14] [ 4] [4912] +12:09:52 [ 15] [ 4] [0320] +12:09:52 [ 18] [ 4] [6011] +12:09:52 [ 19] [ 3] [418] +12:09:52 [ 22] [ 3] [021] +12:09:52 [ 25] [ 2] [01] +12:09:52 [ 28] [ 9] [D00002000] +12:09:52 [ 32] [ 6] [198901] +12:09:52 [ 35] [ 32] [6213544002135223=491212013522973] +12:09:52 [ 37] [ 12] [507912205278] +12:09:52 [ 41] [ 8] [00002222] +12:09:52 [ 42] [ 15] [000000041002222] +12:09:52 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:09:52 [ 49] [ 3] [418] +12:09:52 [ 52] [ 16] [070430F8D90C9785] +12:09:52 ============================================================================ +12:09:52 + + +waiting on router queue for slot.... +12:09:52 Sending to : <0> +12:09:52 ============================================================================ +12:09:52 ============================================================================ +12:09:52 Slot Id : <150> +12:09:52 Transaction Type : RESPONSE +12:09:52 Received From : +12:09:52 ============================================================================ +12:09:52 FNo. Len. Field Value +12:09:52 ============================================================================ +12:09:52 [ 1] [ 4] [0210] +12:09:52 [ 2] [ 16] [6213544002135223] +12:09:52 [ 3] [ 6] [011000] +12:09:52 [ 4] [ 12] [000010000000] +12:09:52 [ 7] [ 10] [0320121012] +12:09:52 [ 11] [ 6] [205278] +12:09:52 [ 12] [ 6] [121156] +12:09:52 [ 13] [ 4] [0320] +12:09:52 [ 15] [ 4] [0320] +12:09:52 [ 18] [ 4] [6011] +12:09:52 [ 19] [ 3] [418] +12:09:52 [ 32] [ 6] [198901] +12:09:52 [ 35] [ 32] [6213544002135223=491212013522973] +12:09:52 [ 37] [ 12] [507912205278] +12:09:52 [ 38] [ 6] [205278] +12:09:52 [ 39] [ 2] [51] +12:09:52 [ 41] [ 8] [00002222] +12:09:52 [ 49] [ 3] [418] +12:09:52 [ 54] [ 40] [1001418C0000079613821002418C000007961382] +12:09:52 ============================================================================ +12:09:52 Sending to : +12:09:52 ============================================================================ +12:09:52 + + +waiting on router queue for slot.... +12:09:53 ============================================================================ +12:09:53 Slot Id : <150> +12:09:53 Transaction Type : RESPONSE +12:09:53 Received From : +12:09:53 ============================================================================ +12:09:53 FNo. Len. Field Value +12:09:53 ============================================================================ +12:09:53 [ 1] [ 4] [0210] +12:09:53 [ 2] [ 16] [6213544002135223] +12:09:53 [ 3] [ 6] [011000] +12:09:53 [ 4] [ 12] [000010000000] +12:09:53 [ 7] [ 10] [0320121012] +12:09:53 [ 11] [ 6] [205278] +12:09:53 [ 12] [ 6] [121156] +12:09:53 [ 13] [ 4] [0320] +12:09:53 [ 15] [ 4] [0320] +12:09:53 [ 18] [ 4] [6011] +12:09:53 [ 19] [ 3] [418] +12:09:53 [ 32] [ 6] [198901] +12:09:53 [ 35] [ 32] [6213544002135223=491212013522973] +12:09:53 [ 37] [ 12] [507912205278] +12:09:53 [ 38] [ 6] [205278] +12:09:53 [ 39] [ 2] [51] +12:09:53 [ 41] [ 8] [00002222] +12:09:53 [ 49] [ 3] [418] +12:09:53 [ 54] [ 40] [1001418C0000079613821002418C000007961382] +12:09:53 ============================================================================ +12:09:53 Calculate Source COMM Id = 5 +12:09:53 ============================================================================ +12:09:53 + + +waiting on router queue for slot.... +12:09:54 ============================================================================ +12:09:54 Slot Id : <153> +12:09:54 Transaction Type : REQUEST +12:09:54 Received From : +12:09:54 ============================================================================ +12:09:54 FNo. Len. Field Value +12:09:54 ============================================================================ +12:09:54 [ 1] [ 4] [0800] +12:09:54 [ 7] [ 10] [0320051742] +12:09:54 [ 11] [ 6] [032593] +12:09:54 [ 37] [ 12] [57912032593] +12:09:54 [ 70] [ 3] [301] +12:09:54 ============================================================================ +12:09:54 + + +waiting on router queue for slot.... +12:09:54 Sending to : +12:09:54 ============================================================================ +12:09:54 ============================================================================ +12:09:54 Slot Id : <153> +12:09:54 Transaction Type : RESPONSE +12:09:54 Received From : +12:09:54 ============================================================================ +12:09:54 FNo. Len. Field Value +12:09:54 ============================================================================ +12:09:54 [ 1] [ 4] [0810] +12:09:54 [ 7] [ 10] [0320051742] +12:09:54 [ 11] [ 6] [032593] +12:09:54 [ 37] [ 12] [579120325930] +12:09:54 [ 39] [ 2] [00] +12:09:54 [ 70] [ 3] [810] +12:09:54 ============================================================================ +12:09:54 Calculate Source COMM Id = 1 +12:09:54 ============================================================================ +12:09:54 + + +waiting on router queue for slot.... +12:09:57 ============================================================================ +12:09:57 Slot Id : <130> +12:09:57 Transaction Type : REQUEST +12:09:57 Received From : +12:09:57 ============================================================================ +12:09:57 FNo. Len. Field Value +12:09:57 ============================================================================ +12:09:57 [ 1] [ 4] [0800] +12:09:57 [ 7] [ 10] [0320050904] +12:09:57 [ 11] [ 6] [156237] +12:09:57 [ 70] [ 3] [301] +12:09:57 ============================================================================ +12:09:57 + + +waiting on router queue for slot.... +12:09:57 Sending to : +12:09:57 ============================================================================ +12:09:57 ============================================================================ +12:09:57 Slot Id : <130> +12:09:57 Transaction Type : RESPONSE +12:09:57 Received From : +12:09:57 ============================================================================ +12:09:57 FNo. Len. Field Value +12:09:57 ============================================================================ +12:09:57 [ 1] [ 4] [0810] +12:09:57 [ 7] [ 10] [0320050904] +12:09:57 [ 11] [ 6] [156237] +12:09:57 [ 39] [ 2] [00] +12:09:57 [ 70] [ 3] [301] +12:09:57 ============================================================================ +12:09:57 Calculate Source COMM Id = 2 +12:09:57 ============================================================================ +12:09:57 + + +waiting on router queue for slot.... +12:09:58 ============================================================================ +12:09:58 Slot Id : <110> +12:09:58 Transaction Type : REQUEST +12:09:58 Received From : +12:09:58 ============================================================================ +12:09:58 FNo. Len. Field Value +12:09:58 ============================================================================ +12:09:58 [ 1] [ 4] [0200] +12:09:58 [ 2] [ 16] [6213541000086259] +12:09:58 [ 3] [ 6] [010000] +12:09:58 [ 4] [ 12] [000100000000] +12:09:58 [ 7] [ 10] [0320120749] +12:09:58 [ 11] [ 6] [943418] +12:09:58 [ 12] [ 6] [120749] +12:09:58 [ 13] [ 4] [0320] +12:09:58 [ 15] [ 4] [0320] +12:09:58 [ 18] [ 4] [6011] +12:09:58 [ 19] [ 3] [418] +12:09:58 [ 22] [ 3] [021] +12:09:58 [ 25] [ 2] [01] +12:09:58 [ 28] [ 9] [D00002000] +12:09:58 [ 32] [ 6] [668899] +12:09:58 [ 35] [ 32] [6213541000086259=491212018625093] +12:09:58 [ 37] [ 12] [507900123289] +12:09:58 [ 41] [ 8] [03020003] +12:09:58 [ 42] [ 15] [APT ] +12:09:58 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:09:58 [ 49] [ 3] [418] +12:09:58 [ 52] [ 16] [958CDC12D00DBEEA] +12:09:58 ============================================================================ +12:09:58 + + +waiting on router queue for slot.... +12:09:58 Sending to : +12:09:58 ============================================================================ +12:09:58 Sending to : +12:09:58 ============================================================================ +12:09:59 ============================================================================ +12:09:59 Slot Id : <110> +12:09:59 Transaction Type : REQUEST +12:09:59 Received From : +12:09:59 ============================================================================ +12:09:59 FNo. Len. Field Value +12:09:59 ============================================================================ +12:09:59 [ 1] [ 4] [0200] +12:09:59 [ 2] [ 16] [6213541000086259] +12:09:59 [ 3] [ 6] [010000] +12:09:59 [ 4] [ 12] [000100000000] +12:09:59 [ 7] [ 10] [0320120749] +12:09:59 [ 11] [ 6] [943418] +12:09:59 [ 12] [ 6] [120749] +12:09:59 [ 13] [ 4] [0320] +12:09:59 [ 15] [ 4] [0320] +12:09:59 [ 18] [ 4] [6011] +12:09:59 [ 19] [ 3] [418] +12:09:59 [ 22] [ 3] [021] +12:09:59 [ 25] [ 2] [01] +12:09:59 [ 28] [ 9] [D00002000] +12:09:59 [ 32] [ 6] [668899] +12:09:59 [ 35] [ 32] [6213541000086259=491212018625093] +12:09:59 [ 37] [ 12] [507900123289] +12:09:59 [ 41] [ 8] [03020003] +12:09:59 [ 42] [ 15] [APT ] +12:09:59 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:09:59 [ 49] [ 3] [418] +12:09:59 [ 52] [ 16] [958CDC12D00DBEEA] +12:09:59 ============================================================================ +12:09:59 + + +waiting on router queue for slot.... +12:09:59 Sending to : +12:09:59 ============================================================================ +12:09:59 ============================================================================ +12:09:59 Slot Id : <110> +12:09:59 Transaction Type : REQUEST +12:09:59 Received From : +12:09:59 ============================================================================ +12:09:59 FNo. Len. Field Value +12:09:59 ============================================================================ +12:09:59 [ 1] [ 4] [0200] +12:09:59 [ 2] [ 16] [6213541000086259] +12:09:59 [ 3] [ 6] [010000] +12:09:59 [ 4] [ 12] [000100000000] +12:09:59 [ 7] [ 10] [0320120749] +12:09:59 [ 11] [ 6] [943418] +12:09:59 [ 12] [ 6] [120749] +12:09:59 [ 13] [ 4] [0320] +12:09:59 [ 15] [ 4] [0320] +12:09:59 [ 18] [ 4] [6011] +12:09:59 [ 19] [ 3] [418] +12:09:59 [ 22] [ 3] [021] +12:09:59 [ 25] [ 2] [01] +12:09:59 [ 28] [ 9] [D00002000] +12:09:59 [ 32] [ 6] [668899] +12:09:59 [ 35] [ 32] [6213541000086259=491212018625093] +12:09:59 [ 37] [ 12] [507900123289] +12:09:59 [ 41] [ 8] [03020003] +12:09:59 [ 42] [ 15] [APT ] +12:09:59 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:09:59 [ 49] [ 3] [418] +12:09:59 [ 52] [ 16] [7FA5F1ED4F1FED5E] +12:09:59 ============================================================================ +12:09:59 + + +waiting on router queue for slot.... +12:09:59 Sending to : <0> +12:09:59 ============================================================================ +12:10:01 ============================================================================ +12:10:01 Slot Id : <110> +12:10:01 Transaction Type : RESPONSE +12:10:01 Received From : +12:10:01 ============================================================================ +12:10:01 FNo. Len. Field Value +12:10:01 ============================================================================ +12:10:01 [ 1] [ 4] [0210] +12:10:01 [ 2] [ 16] [6213541000086259] +12:10:01 [ 3] [ 6] [010000] +12:10:01 [ 4] [ 12] [000100000000] +12:10:01 [ 7] [ 10] [0320120749] +12:10:01 [ 11] [ 6] [943418] +12:10:01 [ 12] [ 6] [120749] +12:10:01 [ 13] [ 4] [0320] +12:10:01 [ 15] [ 4] [0320] +12:10:01 [ 18] [ 4] [6011] +12:10:01 [ 19] [ 3] [418] +12:10:01 [ 32] [ 6] [668899] +12:10:01 [ 35] [ 32] [6213541000086259=491212018625093] +12:10:01 [ 37] [ 12] [507900123289] +12:10:01 [ 38] [ 6] [020982] +12:10:01 [ 39] [ 2] [00] +12:10:01 [ 41] [ 8] [03020003] +12:10:01 [ 49] [ 3] [418] +12:10:01 [ 54] [ 40] [0001418C0003445021140002418C000344502114] +12:10:01 ============================================================================ +12:10:01 Sending to : +12:10:01 ============================================================================ +12:10:01 + + +waiting on router queue for slot.... +12:10:02 ============================================================================ +12:10:02 Slot Id : <110> +12:10:02 Transaction Type : RESPONSE +12:10:02 Received From : +12:10:02 ============================================================================ +12:10:02 FNo. Len. Field Value +12:10:02 ============================================================================ +12:10:02 [ 1] [ 4] [0210] +12:10:02 [ 2] [ 16] [6213541000086259] +12:10:02 [ 3] [ 6] [010000] +12:10:02 [ 4] [ 12] [000100000000] +12:10:02 [ 7] [ 10] [0320120749] +12:10:02 [ 11] [ 6] [943418] +12:10:02 [ 12] [ 6] [120749] +12:10:02 [ 13] [ 4] [0320] +12:10:02 [ 15] [ 4] [0320] +12:10:02 [ 18] [ 4] [6011] +12:10:02 [ 19] [ 3] [418] +12:10:02 [ 32] [ 6] [668899] +12:10:02 [ 35] [ 32] [6213541000086259=491212018625093] +12:10:02 [ 37] [ 12] [507900123289] +12:10:02 [ 38] [ 6] [020982] +12:10:02 [ 39] [ 2] [00] +12:10:02 [ 41] [ 8] [03020003] +12:10:02 [ 49] [ 3] [418] +12:10:02 [ 54] [ 40] [0001418C0003445021140002418C000344502114] +12:10:02 ============================================================================ +12:10:02 Calculate Source COMM Id = 4 +12:10:02 ============================================================================ +12:10:02 + + +waiting on router queue for slot.... +12:10:10 ============================================================================ +12:10:10 Slot Id : <142> +12:10:10 Transaction Type : REQUEST +12:10:10 Received From : +12:10:10 ============================================================================ +12:10:10 FNo. Len. Field Value +12:10:10 ============================================================================ +12:10:10 [ 1] [ 4] [0800] +12:10:10 [ 2] [ 5] [02531] +12:10:10 [ 3] [ 6] [579128] +12:10:10 [ 7] [ 10] [0320051010] +12:10:10 [ 11] [ 6] [807118] +12:10:10 [ 15] [ 10] [0320051010] +12:10:10 [ 37] [ 11] [57912807118] +12:10:10 [ 70] [ 3] [001] +12:10:10 ============================================================================ +12:10:10 + + +waiting on router queue for slot.... +12:10:10 ============================================================================ +12:10:10 Slot Id : <142> +12:10:10 Transaction Type : RESPONSE +12:10:10 Received From : +12:10:10 ============================================================================ +12:10:10 FNo. Len. Field Value +12:10:10 ============================================================================ +12:10:10 [ 1] [ 4] [0810] +12:10:10 [ 7] [ 10] [0320051010] +12:10:10 [ 11] [ 6] [807118] +12:10:10 [ 15] [ 4] [0320] +12:10:10 [ 37] [ 12] [57912807118] +12:10:10 [ 39] [ 2] [00] +12:10:10 [ 70] [ 3] [001] +12:10:10 ============================================================================ +12:10:10 Sending to : +12:10:10 ============================================================================ +12:10:10 + + +waiting on router queue for slot.... +12:10:12 ============================================================================ +12:10:12 Slot Id : <167> +12:10:12 Transaction Type : REQUEST +12:10:12 Received From : +12:10:12 ============================================================================ +12:10:12 FNo. Len. Field Value +12:10:12 ============================================================================ +12:10:12 [ 1] [ 4] [0800] +12:10:12 [ 7] [ 10] [0320050920] +12:10:12 [ 11] [ 6] [156238] +12:10:12 [ 70] [ 3] [301] +12:10:12 ============================================================================ +12:10:12 + + +waiting on router queue for slot.... +12:10:12 Sending to : +12:10:12 ============================================================================ +12:10:12 ============================================================================ +12:10:12 Slot Id : <167> +12:10:12 Transaction Type : RESPONSE +12:10:12 Received From : +12:10:12 ============================================================================ +12:10:12 FNo. Len. Field Value +12:10:12 ============================================================================ +12:10:12 [ 1] [ 4] [0810] +12:10:12 [ 7] [ 10] [0320050920] +12:10:12 [ 11] [ 6] [156238] +12:10:12 [ 39] [ 2] [00] +12:10:12 [ 70] [ 3] [301] +12:10:12 ============================================================================ +12:10:12 Calculate Source COMM Id = 2 +12:10:12 ============================================================================ +12:10:12 + + +waiting on router queue for slot.... +12:10:24 ============================================================================ +12:10:24 Slot Id : <159> +12:10:24 Transaction Type : REQUEST +12:10:24 Received From : +12:10:24 ============================================================================ +12:10:24 FNo. Len. Field Value +12:10:24 ============================================================================ +12:10:24 [ 1] [ 4] [0800] +12:10:24 [ 7] [ 10] [0320050931] +12:10:24 [ 11] [ 6] [156239] +12:10:24 [ 70] [ 3] [301] +12:10:24 ============================================================================ +12:10:24 + + +waiting on router queue for slot.... +12:10:24 Sending to : +12:10:24 ============================================================================ +12:10:24 ============================================================================ +12:10:24 Slot Id : <159> +12:10:24 Transaction Type : RESPONSE +12:10:24 Received From : +12:10:24 ============================================================================ +12:10:24 FNo. Len. Field Value +12:10:24 ============================================================================ +12:10:24 [ 1] [ 4] [0810] +12:10:24 [ 7] [ 10] [0320050931] +12:10:24 [ 11] [ 6] [156239] +12:10:24 [ 39] [ 2] [00] +12:10:24 [ 70] [ 3] [301] +12:10:24 ============================================================================ +12:10:24 Calculate Source COMM Id = 2 +12:10:24 ============================================================================ +12:10:24 + + +waiting on router queue for slot.... +12:10:30 ============================================================================ +12:10:30 Slot Id : <137> +12:10:30 Transaction Type : REQUEST +12:10:30 Received From : +12:10:30 ============================================================================ +12:10:30 FNo. Len. Field Value +12:10:30 ============================================================================ +12:10:30 [ 1] [ 4] [0200] +12:10:30 [ 2] [ 16] [6213548000206142] +12:10:30 [ 3] [ 6] [010000] +12:10:30 [ 4] [ 12] [000010000000] +12:10:30 [ 7] [ 10] [0320120821] +12:10:30 [ 11] [ 6] [943442] +12:10:30 [ 12] [ 6] [120821] +12:10:30 [ 13] [ 4] [0320] +12:10:30 [ 15] [ 4] [0320] +12:10:30 [ 18] [ 4] [6011] +12:10:30 [ 19] [ 3] [418] +12:10:30 [ 22] [ 3] [021] +12:10:30 [ 25] [ 2] [01] +12:10:30 [ 28] [ 9] [D00002000] +12:10:30 [ 32] [ 6] [668899] +12:10:30 [ 35] [ 32] [6213548000206142=171212010614712] +12:10:30 [ 37] [ 12] [507900977521] +12:10:30 [ 41] [ 8] [03407002] +12:10:30 [ 42] [ 15] [APT ] +12:10:30 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +12:10:30 [ 49] [ 3] [418] +12:10:30 [ 52] [ 16] [D386739ED860E04B] +12:10:30 ============================================================================ +12:10:30 + + +waiting on router queue for slot.... +12:10:30 Sending to : +12:10:30 ============================================================================ +12:10:30 Sending to : +12:10:30 ============================================================================ +12:10:30 ============================================================================ +12:10:30 Slot Id : <137> +12:10:30 Transaction Type : REQUEST +12:10:30 Received From : +12:10:30 ============================================================================ +12:10:30 FNo. Len. Field Value +12:10:30 ============================================================================ +12:10:30 [ 1] [ 4] [0200] +12:10:30 [ 2] [ 16] [6213548000206142] +12:10:30 [ 3] [ 6] [010000] +12:10:30 [ 4] [ 12] [000010000000] +12:10:30 [ 7] [ 10] [0320120821] +12:10:30 [ 11] [ 6] [943442] +12:10:30 [ 12] [ 6] [120821] +12:10:30 [ 13] [ 4] [0320] +12:10:30 [ 15] [ 4] [0320] +12:10:30 [ 18] [ 4] [6011] +12:10:30 [ 19] [ 3] [418] +12:10:30 [ 22] [ 3] [021] +12:10:30 [ 25] [ 2] [01] +12:10:30 [ 28] [ 9] [D00002000] +12:10:30 [ 32] [ 6] [668899] +12:10:30 [ 35] [ 32] [6213548000206142=171212010614712] +12:10:30 [ 37] [ 12] [507900977521] +12:10:30 [ 41] [ 8] [03407002] +12:10:30 [ 42] [ 15] [APT ] +12:10:30 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +12:10:30 [ 49] [ 3] [418] +12:10:30 [ 52] [ 16] [D386739ED860E04B] +12:10:30 ============================================================================ +12:10:30 + + +waiting on router queue for slot.... +12:10:30 Sending to : +12:10:30 ============================================================================ +12:10:30 ============================================================================ +12:10:30 Slot Id : <137> +12:10:30 Transaction Type : REQUEST +12:10:30 Received From : +12:10:30 ============================================================================ +12:10:30 FNo. Len. Field Value +12:10:30 ============================================================================ +12:10:30 [ 1] [ 4] [0200] +12:10:30 [ 2] [ 16] [6213548000206142] +12:10:30 [ 3] [ 6] [010000] +12:10:30 [ 4] [ 12] [000010000000] +12:10:30 [ 7] [ 10] [0320120821] +12:10:30 [ 11] [ 6] [943442] +12:10:30 [ 12] [ 6] [120821] +12:10:30 [ 13] [ 4] [0320] +12:10:30 [ 15] [ 4] [0320] +12:10:30 [ 18] [ 4] [6011] +12:10:30 [ 19] [ 3] [418] +12:10:30 [ 22] [ 3] [021] +12:10:30 [ 25] [ 2] [01] +12:10:30 [ 28] [ 9] [D00002000] +12:10:30 [ 32] [ 6] [668899] +12:10:30 [ 35] [ 32] [6213548000206142=171212010614712] +12:10:30 [ 37] [ 12] [507900977521] +12:10:30 [ 41] [ 8] [03407002] +12:10:30 [ 42] [ 15] [APT ] +12:10:30 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +12:10:30 [ 49] [ 3] [418] +12:10:30 [ 52] [ 16] [42D9530BCBFD3D0B] +12:10:30 ============================================================================ +12:10:30 + + +waiting on router queue for slot.... +12:10:30 Sending to : <0> +12:10:30 ============================================================================ +12:10:31 ============================================================================ +12:10:31 Slot Id : <137> +12:10:31 Transaction Type : RESPONSE +12:10:31 Received From : +12:10:31 ============================================================================ +12:10:31 FNo. Len. Field Value +12:10:31 ============================================================================ +12:10:31 [ 1] [ 4] [0210] +12:10:31 [ 2] [ 16] [6213548000206142] +12:10:31 [ 3] [ 6] [010000] +12:10:31 [ 4] [ 12] [000010000000] +12:10:31 [ 7] [ 10] [0320120821] +12:10:31 [ 11] [ 6] [943442] +12:10:31 [ 12] [ 6] [120821] +12:10:31 [ 13] [ 4] [0320] +12:10:31 [ 15] [ 4] [0320] +12:10:31 [ 18] [ 4] [6011] +12:10:31 [ 19] [ 3] [418] +12:10:31 [ 32] [ 6] [668899] +12:10:31 [ 35] [ 32] [6213548000206142=171212010614712] +12:10:31 [ 37] [ 12] [507900977521] +12:10:31 [ 38] [ 6] [943442] +12:10:31 [ 39] [ 2] [51] +12:10:31 [ 41] [ 8] [03407002] +12:10:31 [ 49] [ 3] [418] +12:10:31 [ 54] [ 40] [0001418C0000149297960002418C000014929796] +12:10:31 ============================================================================ +12:10:31 Sending to : +12:10:31 ============================================================================ +12:10:31 + + +waiting on router queue for slot.... +12:10:32 ============================================================================ +12:10:32 Slot Id : <137> +12:10:32 Transaction Type : RESPONSE +12:10:32 Received From : +12:10:32 ============================================================================ +12:10:32 FNo. Len. Field Value +12:10:32 ============================================================================ +12:10:32 [ 1] [ 4] [0210] +12:10:32 [ 2] [ 16] [6213548000206142] +12:10:32 [ 3] [ 6] [010000] +12:10:32 [ 4] [ 12] [000010000000] +12:10:32 [ 7] [ 10] [0320120821] +12:10:32 [ 11] [ 6] [943442] +12:10:32 [ 12] [ 6] [120821] +12:10:32 [ 13] [ 4] [0320] +12:10:32 [ 15] [ 4] [0320] +12:10:32 [ 18] [ 4] [6011] +12:10:32 [ 19] [ 3] [418] +12:10:32 [ 32] [ 6] [668899] +12:10:32 [ 35] [ 32] [6213548000206142=171212010614712] +12:10:32 [ 37] [ 12] [507900977521] +12:10:32 [ 38] [ 6] [943442] +12:10:32 [ 39] [ 2] [51] +12:10:32 [ 41] [ 8] [03407002] +12:10:32 [ 49] [ 3] [418] +12:10:32 [ 54] [ 40] [0001418C0000149297960002418C000014929796] +12:10:32 ============================================================================ +12:10:32 Calculate Source COMM Id = 4 +12:10:32 ============================================================================ +12:10:32 + + +waiting on router queue for slot.... +12:10:40 ============================================================================ +12:10:40 Slot Id : <175> +12:10:40 Transaction Type : REQUEST +12:10:40 Received From : +12:10:40 ============================================================================ +12:10:40 FNo. Len. Field Value +12:10:40 ============================================================================ +12:10:40 [ 1] [ 4] [0800] +12:10:40 [ 7] [ 10] [0320050948] +12:10:40 [ 11] [ 6] [156240] +12:10:40 [ 70] [ 3] [301] +12:10:40 ============================================================================ +12:10:40 + + +waiting on router queue for slot.... +12:10:40 Sending to : +12:10:40 ============================================================================ +12:10:40 ============================================================================ +12:10:40 Slot Id : <175> +12:10:40 Transaction Type : RESPONSE +12:10:40 Received From : +12:10:40 ============================================================================ +12:10:40 FNo. Len. Field Value +12:10:40 ============================================================================ +12:10:40 [ 1] [ 4] [0810] +12:10:40 [ 7] [ 10] [0320050948] +12:10:40 [ 11] [ 6] [156240] +12:10:40 [ 39] [ 2] [00] +12:10:40 [ 70] [ 3] [301] +12:10:40 ============================================================================ +12:10:40 Calculate Source COMM Id = 2 +12:10:40 ============================================================================ +12:10:40 + + +waiting on router queue for slot.... +12:10:44 ============================================================================ +12:10:44 Slot Id : <128> +12:10:44 Transaction Type : REQUEST +12:10:44 Received From : +12:10:44 ============================================================================ +12:10:44 FNo. Len. Field Value +12:10:44 ============================================================================ +12:10:44 [ 1] [ 4] [0200] +12:10:44 [ 2] [ 16] [6213544000182177] +12:10:44 [ 3] [ 6] [010000] +12:10:44 [ 4] [ 12] [000020000000] +12:10:44 [ 7] [ 10] [0320120835] +12:10:44 [ 11] [ 6] [943450] +12:10:44 [ 12] [ 6] [120835] +12:10:44 [ 13] [ 4] [0320] +12:10:44 [ 15] [ 4] [0320] +12:10:44 [ 18] [ 4] [6011] +12:10:44 [ 19] [ 3] [418] +12:10:44 [ 22] [ 3] [021] +12:10:44 [ 25] [ 2] [01] +12:10:44 [ 28] [ 9] [D00002000] +12:10:44 [ 32] [ 6] [668899] +12:10:44 [ 35] [ 32] [6213544000182177=491212018217710] +12:10:44 [ 37] [ 12] [507901963543] +12:10:44 [ 41] [ 8] [03020019] +12:10:44 [ 42] [ 15] [APT ] +12:10:44 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:10:44 [ 49] [ 3] [418] +12:10:44 [ 52] [ 16] [36CEA84A58488E1D] +12:10:44 ============================================================================ +12:10:44 + + +waiting on router queue for slot.... +12:10:44 Sending to : +12:10:44 ============================================================================ +12:10:44 Sending to : +12:10:44 ============================================================================ +12:10:44 ============================================================================ +12:10:44 Slot Id : <128> +12:10:44 Transaction Type : REQUEST +12:10:44 Received From : +12:10:44 ============================================================================ +12:10:44 FNo. Len. Field Value +12:10:44 ============================================================================ +12:10:44 [ 1] [ 4] [0200] +12:10:44 [ 2] [ 16] [6213544000182177] +12:10:44 [ 3] [ 6] [010000] +12:10:44 [ 4] [ 12] [000020000000] +12:10:44 [ 7] [ 10] [0320120835] +12:10:44 [ 11] [ 6] [943450] +12:10:44 [ 12] [ 6] [120835] +12:10:44 [ 13] [ 4] [0320] +12:10:44 [ 15] [ 4] [0320] +12:10:44 [ 18] [ 4] [6011] +12:10:44 [ 19] [ 3] [418] +12:10:44 [ 22] [ 3] [021] +12:10:44 [ 25] [ 2] [01] +12:10:44 [ 28] [ 9] [D00002000] +12:10:44 [ 32] [ 6] [668899] +12:10:44 [ 35] [ 32] [6213544000182177=491212018217710] +12:10:44 [ 37] [ 12] [507901963543] +12:10:44 [ 41] [ 8] [03020019] +12:10:44 [ 42] [ 15] [APT ] +12:10:44 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:10:44 [ 49] [ 3] [418] +12:10:44 [ 52] [ 16] [36CEA84A58488E1D] +12:10:44 ============================================================================ +12:10:44 + + +waiting on router queue for slot.... +12:10:44 Sending to : +12:10:44 ============================================================================ +12:10:44 ============================================================================ +12:10:44 Slot Id : <128> +12:10:44 Transaction Type : REQUEST +12:10:44 Received From : +12:10:44 ============================================================================ +12:10:44 FNo. Len. Field Value +12:10:44 ============================================================================ +12:10:44 [ 1] [ 4] [0200] +12:10:44 [ 2] [ 16] [6213544000182177] +12:10:44 [ 3] [ 6] [010000] +12:10:44 [ 4] [ 12] [000020000000] +12:10:44 [ 7] [ 10] [0320120835] +12:10:44 [ 11] [ 6] [943450] +12:10:44 [ 12] [ 6] [120835] +12:10:44 [ 13] [ 4] [0320] +12:10:44 [ 15] [ 4] [0320] +12:10:44 [ 18] [ 4] [6011] +12:10:44 [ 19] [ 3] [418] +12:10:44 [ 22] [ 3] [021] +12:10:44 [ 25] [ 2] [01] +12:10:44 [ 28] [ 9] [D00002000] +12:10:44 [ 32] [ 6] [668899] +12:10:44 [ 35] [ 32] [6213544000182177=491212018217710] +12:10:44 [ 37] [ 12] [507901963543] +12:10:44 [ 41] [ 8] [03020019] +12:10:44 [ 42] [ 15] [APT ] +12:10:44 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:10:44 [ 49] [ 3] [418] +12:10:44 [ 52] [ 16] [F7444473B0B6D6EC] +12:10:44 ============================================================================ +12:10:44 + + +waiting on router queue for slot.... +12:10:44 Sending to : <0> +12:10:44 ============================================================================ +12:10:45 ============================================================================ +12:10:45 Slot Id : <128> +12:10:45 Transaction Type : RESPONSE +12:10:45 Received From : +12:10:45 ============================================================================ +12:10:45 FNo. Len. Field Value +12:10:45 ============================================================================ +12:10:45 [ 1] [ 4] [0210] +12:10:45 [ 2] [ 16] [6213544000182177] +12:10:45 [ 3] [ 6] [010000] +12:10:45 [ 4] [ 12] [000020000000] +12:10:45 [ 7] [ 10] [0320120835] +12:10:45 [ 11] [ 6] [943450] +12:10:45 [ 12] [ 6] [120835] +12:10:45 [ 13] [ 4] [0320] +12:10:45 [ 15] [ 4] [0320] +12:10:45 [ 18] [ 4] [6011] +12:10:45 [ 19] [ 3] [418] +12:10:45 [ 32] [ 6] [668899] +12:10:45 [ 35] [ 32] [6213544000182177=491212018217710] +12:10:45 [ 37] [ 12] [507901963543] +12:10:45 [ 38] [ 6] [451805] +12:10:45 [ 39] [ 2] [00] +12:10:45 [ 41] [ 8] [03020019] +12:10:45 [ 49] [ 3] [418] +12:10:45 [ 54] [ 40] [0001418C0000100392310002418C000010039231] +12:10:45 ============================================================================ +12:10:45 Sending to : +12:10:45 ============================================================================ +12:10:45 + + +waiting on router queue for slot.... +12:10:46 ============================================================================ +12:10:46 Slot Id : <128> +12:10:46 Transaction Type : RESPONSE +12:10:46 Received From : +12:10:46 ============================================================================ +12:10:46 FNo. Len. Field Value +12:10:46 ============================================================================ +12:10:46 [ 1] [ 4] [0210] +12:10:46 [ 2] [ 16] [6213544000182177] +12:10:46 [ 3] [ 6] [010000] +12:10:46 [ 4] [ 12] [000020000000] +12:10:46 [ 7] [ 10] [0320120835] +12:10:46 [ 11] [ 6] [943450] +12:10:46 [ 12] [ 6] [120835] +12:10:46 [ 13] [ 4] [0320] +12:10:46 [ 15] [ 4] [0320] +12:10:46 [ 18] [ 4] [6011] +12:10:46 [ 19] [ 3] [418] +12:10:46 [ 32] [ 6] [668899] +12:10:46 [ 35] [ 32] [6213544000182177=491212018217710] +12:10:46 [ 37] [ 12] [507901963543] +12:10:46 [ 38] [ 6] [451805] +12:10:46 [ 39] [ 2] [00] +12:10:46 [ 41] [ 8] [03020019] +12:10:46 [ 49] [ 3] [418] +12:10:46 [ 54] [ 40] [0001418C0000100392310002418C000010039231] +12:10:46 ============================================================================ +12:10:46 Calculate Source COMM Id = 4 +12:10:46 ============================================================================ +12:10:46 + + +waiting on router queue for slot.... +12:10:51 ============================================================================ +12:10:51 Slot Id : <146> +12:10:51 Transaction Type : REQUEST +12:10:51 Received From : +12:10:51 ============================================================================ +12:10:51 FNo. Len. Field Value +12:10:51 ============================================================================ +12:10:51 [ 1] [ 4] [0800] +12:10:51 [ 7] [ 10] [0320050959] +12:10:51 [ 11] [ 6] [156241] +12:10:51 [ 70] [ 3] [301] +12:10:51 ============================================================================ +12:10:51 + + +waiting on router queue for slot.... +12:10:51 Sending to : +12:10:51 ============================================================================ +12:10:51 ============================================================================ +12:10:51 Slot Id : <146> +12:10:51 Transaction Type : RESPONSE +12:10:51 Received From : +12:10:51 ============================================================================ +12:10:51 FNo. Len. Field Value +12:10:51 ============================================================================ +12:10:51 [ 1] [ 4] [0810] +12:10:51 [ 7] [ 10] [0320050959] +12:10:51 [ 11] [ 6] [156241] +12:10:51 [ 39] [ 2] [00] +12:10:51 [ 70] [ 3] [301] +12:10:51 ============================================================================ +12:10:51 Calculate Source COMM Id = 2 +12:10:51 ============================================================================ +12:10:51 + + +waiting on router queue for slot.... +12:10:51 ============================================================================ +12:10:51 Slot Id : <141> +12:10:51 Transaction Type : REQUEST +12:10:51 Received From : +12:10:51 ============================================================================ +12:10:51 FNo. Len. Field Value +12:10:51 ============================================================================ +12:10:51 [ 1] [ 4] [0200] +12:10:51 [ 2] [ 16] [6213548000206142] +12:10:51 [ 3] [ 6] [302000] +12:10:51 [ 4] [ 12] [000000000000] +12:10:51 [ 7] [ 10] [0320120842] +12:10:51 [ 11] [ 6] [943459] +12:10:51 [ 12] [ 6] [120842] +12:10:51 [ 13] [ 4] [0320] +12:10:51 [ 15] [ 4] [0320] +12:10:51 [ 18] [ 4] [6011] +12:10:51 [ 19] [ 3] [418] +12:10:51 [ 22] [ 3] [021] +12:10:51 [ 25] [ 2] [01] +12:10:51 [ 28] [ 9] [D00000000] +12:10:51 [ 32] [ 6] [668899] +12:10:51 [ 35] [ 32] [6213548000206142=171212010614712] +12:10:51 [ 37] [ 12] [507900977522] +12:10:51 [ 41] [ 8] [03407002] +12:10:51 [ 42] [ 15] [APT ] +12:10:51 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +12:10:51 [ 49] [ 3] [418] +12:10:51 [ 52] [ 16] [D386739ED860E04B] +12:10:51 ============================================================================ +12:10:51 + + +waiting on router queue for slot.... +12:10:51 Sending to : +12:10:51 ============================================================================ +12:10:51 Sending to : +12:10:51 ============================================================================ +12:10:52 ============================================================================ +12:10:52 Slot Id : <141> +12:10:52 Transaction Type : REQUEST +12:10:52 Received From : +12:10:52 ============================================================================ +12:10:52 FNo. Len. Field Value +12:10:52 ============================================================================ +12:10:52 [ 1] [ 4] [0200] +12:10:52 [ 2] [ 16] [6213548000206142] +12:10:52 [ 3] [ 6] [302000] +12:10:52 [ 4] [ 12] [000000000000] +12:10:52 [ 7] [ 10] [0320120842] +12:10:52 [ 11] [ 6] [943459] +12:10:52 [ 12] [ 6] [120842] +12:10:52 [ 13] [ 4] [0320] +12:10:52 [ 15] [ 4] [0320] +12:10:52 [ 18] [ 4] [6011] +12:10:52 [ 19] [ 3] [418] +12:10:52 [ 22] [ 3] [021] +12:10:52 [ 25] [ 2] [01] +12:10:52 [ 28] [ 9] [D00000000] +12:10:52 [ 32] [ 6] [668899] +12:10:52 [ 35] [ 32] [6213548000206142=171212010614712] +12:10:52 [ 37] [ 12] [507900977522] +12:10:52 [ 41] [ 8] [03407002] +12:10:52 [ 42] [ 15] [APT ] +12:10:52 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +12:10:52 [ 49] [ 3] [418] +12:10:52 [ 52] [ 16] [D386739ED860E04B] +12:10:52 ============================================================================ +12:10:52 + + +waiting on router queue for slot.... +12:10:52 Sending to : +12:10:52 ============================================================================ +12:10:52 ============================================================================ +12:10:52 Slot Id : <141> +12:10:52 Transaction Type : REQUEST +12:10:52 Received From : +12:10:52 ============================================================================ +12:10:52 FNo. Len. Field Value +12:10:52 ============================================================================ +12:10:52 [ 1] [ 4] [0200] +12:10:52 [ 2] [ 16] [6213548000206142] +12:10:52 [ 3] [ 6] [302000] +12:10:52 [ 4] [ 12] [000000000000] +12:10:52 [ 7] [ 10] [0320120842] +12:10:52 [ 11] [ 6] [943459] +12:10:52 [ 12] [ 6] [120842] +12:10:52 [ 13] [ 4] [0320] +12:10:52 [ 15] [ 4] [0320] +12:10:52 [ 18] [ 4] [6011] +12:10:52 [ 19] [ 3] [418] +12:10:52 [ 22] [ 3] [021] +12:10:52 [ 25] [ 2] [01] +12:10:52 [ 28] [ 9] [D00000000] +12:10:52 [ 32] [ 6] [668899] +12:10:52 [ 35] [ 32] [6213548000206142=171212010614712] +12:10:52 [ 37] [ 12] [507900977522] +12:10:52 [ 41] [ 8] [03407002] +12:10:52 [ 42] [ 15] [APT ] +12:10:52 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +12:10:52 [ 49] [ 3] [418] +12:10:52 [ 52] [ 16] [42D9530BCBFD3D0B] +12:10:52 ============================================================================ +12:10:52 + + +waiting on router queue for slot.... +12:10:52 Sending to : <0> +12:10:52 ============================================================================ +12:10:52 ============================================================================ +12:10:52 Slot Id : <141> +12:10:52 Transaction Type : RESPONSE +12:10:52 Received From : +12:10:52 ============================================================================ +12:10:52 FNo. Len. Field Value +12:10:52 ============================================================================ +12:10:52 [ 1] [ 4] [0210] +12:10:52 [ 2] [ 16] [6213548000206142] +12:10:52 [ 3] [ 6] [302000] +12:10:52 [ 4] [ 12] [000000000000] +12:10:52 [ 7] [ 10] [0320120842] +12:10:52 [ 11] [ 6] [943459] +12:10:52 [ 12] [ 6] [120842] +12:10:52 [ 13] [ 4] [0320] +12:10:52 [ 15] [ 4] [0320] +12:10:52 [ 18] [ 4] [6011] +12:10:52 [ 19] [ 3] [418] +12:10:52 [ 32] [ 6] [668899] +12:10:52 [ 35] [ 32] [6213548000206142=171212010614712] +12:10:52 [ 37] [ 12] [507900977522] +12:10:52 [ 38] [ 6] [013907] +12:10:52 [ 39] [ 2] [00] +12:10:52 [ 41] [ 8] [03407002] +12:10:52 [ 49] [ 3] [418] +12:10:52 [ 54] [ 40] [2001418C0000149297962002418C000014929796] +12:10:52 ============================================================================ +12:10:52 Sending to : +12:10:52 ============================================================================ +12:10:52 + + +waiting on router queue for slot.... +12:10:54 ============================================================================ +12:10:54 Slot Id : <141> +12:10:54 Transaction Type : RESPONSE +12:10:54 Received From : +12:10:54 ============================================================================ +12:10:54 FNo. Len. Field Value +12:10:54 ============================================================================ +12:10:54 [ 1] [ 4] [0210] +12:10:54 [ 2] [ 16] [6213548000206142] +12:10:54 [ 3] [ 6] [302000] +12:10:54 [ 4] [ 12] [000000000000] +12:10:54 [ 7] [ 10] [0320120842] +12:10:54 [ 11] [ 6] [943459] +12:10:54 [ 12] [ 6] [120842] +12:10:54 [ 13] [ 4] [0320] +12:10:54 [ 15] [ 4] [0320] +12:10:54 [ 18] [ 4] [6011] +12:10:54 [ 19] [ 3] [418] +12:10:54 [ 32] [ 6] [668899] +12:10:54 [ 35] [ 32] [6213548000206142=171212010614712] +12:10:54 [ 37] [ 12] [507900977522] +12:10:54 [ 38] [ 6] [013907] +12:10:54 [ 39] [ 2] [00] +12:10:54 [ 41] [ 8] [03407002] +12:10:54 [ 49] [ 3] [418] +12:10:54 [ 54] [ 40] [2001418C0000149297962002418C000014929796] +12:10:54 ============================================================================ +12:10:54 Calculate Source COMM Id = 4 +12:10:54 ============================================================================ +12:10:54 + + +waiting on router queue for slot.... +12:10:55 ============================================================================ +12:10:55 Slot Id : <170> +12:10:55 Transaction Type : REQUEST +12:10:55 Received From : +12:10:55 ============================================================================ +12:10:55 FNo. Len. Field Value +12:10:55 ============================================================================ +12:10:55 [ 1] [ 4] [0200] +12:10:55 [ 2] [ 16] [2206990000121269] +12:10:55 [ 3] [ 6] [010000] +12:10:55 [ 4] [ 12] [000070000000] +12:10:55 [ 7] [ 10] [0320120846] +12:10:55 [ 11] [ 6] [943463] +12:10:55 [ 12] [ 6] [120846] +12:10:55 [ 13] [ 4] [0320] +12:10:55 [ 15] [ 4] [0320] +12:10:55 [ 18] [ 4] [6011] +12:10:55 [ 19] [ 3] [418] +12:10:55 [ 22] [ 3] [021] +12:10:55 [ 25] [ 2] [01] +12:10:55 [ 28] [ 9] [D00002000] +12:10:55 [ 32] [ 6] [668899] +12:10:55 [ 35] [ 32] [2206990000121269=980212615591339] +12:10:55 [ 37] [ 12] [507902031657] +12:10:55 [ 41] [ 8] [03018003] +12:10:55 [ 42] [ 15] [APT ] +12:10:55 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:10:55 [ 49] [ 3] [418] +12:10:55 [ 52] [ 16] [BCEA1A0CC25B6BF6] +12:10:55 ============================================================================ +12:10:55 + + +waiting on router queue for slot.... +12:10:55 Sending to : +12:10:55 ============================================================================ +12:10:55 Sending to : +12:10:55 ============================================================================ +12:10:55 ============================================================================ +12:10:55 Slot Id : <170> +12:10:55 Transaction Type : REQUEST +12:10:55 Received From : +12:10:55 ============================================================================ +12:10:55 FNo. Len. Field Value +12:10:55 ============================================================================ +12:10:55 [ 1] [ 4] [0200] +12:10:55 [ 2] [ 16] [2206990000121269] +12:10:55 [ 3] [ 6] [010000] +12:10:55 [ 4] [ 12] [000070000000] +12:10:55 [ 7] [ 10] [0320120846] +12:10:55 [ 11] [ 6] [943463] +12:10:55 [ 12] [ 6] [120846] +12:10:55 [ 13] [ 4] [0320] +12:10:55 [ 15] [ 4] [0320] +12:10:55 [ 18] [ 4] [6011] +12:10:55 [ 19] [ 3] [418] +12:10:55 [ 22] [ 3] [021] +12:10:55 [ 25] [ 2] [01] +12:10:55 [ 28] [ 9] [D00002000] +12:10:55 [ 32] [ 6] [668899] +12:10:55 [ 35] [ 32] [2206990000121269=980212615591339] +12:10:55 [ 37] [ 12] [507902031657] +12:10:55 [ 41] [ 8] [03018003] +12:10:55 [ 42] [ 15] [APT ] +12:10:55 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:10:55 [ 49] [ 3] [418] +12:10:55 [ 52] [ 16] [BCEA1A0CC25B6BF6] +12:10:55 ============================================================================ +12:10:55 + + +waiting on router queue for slot.... +12:10:55 Sending to : +12:10:55 ============================================================================ +12:10:55 ============================================================================ +12:10:55 Slot Id : <170> +12:10:55 Transaction Type : REQUEST +12:10:55 Received From : +12:10:55 ============================================================================ +12:10:55 FNo. Len. Field Value +12:10:55 ============================================================================ +12:10:55 [ 1] [ 4] [0200] +12:10:55 [ 2] [ 16] [2206990000121269] +12:10:55 [ 3] [ 6] [010000] +12:10:55 [ 4] [ 12] [000070000000] +12:10:55 [ 7] [ 10] [0320120846] +12:10:55 [ 11] [ 6] [943463] +12:10:55 [ 12] [ 6] [120846] +12:10:55 [ 13] [ 4] [0320] +12:10:55 [ 15] [ 4] [0320] +12:10:55 [ 18] [ 4] [6011] +12:10:55 [ 19] [ 3] [418] +12:10:55 [ 22] [ 3] [021] +12:10:55 [ 25] [ 2] [01] +12:10:55 [ 28] [ 9] [D00002000] +12:10:55 [ 32] [ 6] [668899] +12:10:55 [ 35] [ 32] [2206990000121269=980212615591339] +12:10:55 [ 37] [ 12] [507902031657] +12:10:55 [ 41] [ 8] [03018003] +12:10:55 [ 42] [ 15] [APT ] +12:10:55 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:10:55 [ 49] [ 3] [418] +12:10:55 [ 52] [ 16] [EE1B4D3967DFCEEF] +12:10:55 ============================================================================ +12:10:55 + + +waiting on router queue for slot.... +12:10:55 Sending to : <1> +12:10:55 ============================================================================ +12:10:58 ============================================================================ +12:10:58 Slot Id : <170> +12:10:58 Transaction Type : RESPONSE +12:10:58 Received From : +12:10:58 ============================================================================ +12:10:58 FNo. Len. Field Value +12:10:58 ============================================================================ +12:10:58 [ 1] [ 4] [0210] +12:10:58 [ 2] [ 16] [2206990000121269] +12:10:58 [ 3] [ 6] [010000] +12:10:58 [ 4] [ 12] [000070000000] +12:10:58 [ 7] [ 10] [0320120846] +12:10:58 [ 11] [ 6] [943463] +12:10:58 [ 12] [ 6] [120846] +12:10:58 [ 13] [ 4] [0320] +12:10:58 [ 15] [ 4] [0320] +12:10:58 [ 18] [ 4] [6011] +12:10:58 [ 32] [ 6] [668899] +12:10:58 [ 35] [ 32] [2206990000121269=980212615591339] +12:10:58 [ 37] [ 12] [507902031657] +12:10:58 [ 38] [ 6] [077355] +12:10:58 [ 39] [ 2] [00] +12:10:58 [ 41] [ 8] [03018003] +12:10:58 [ 49] [ 3] [418] +12:10:58 [ 54] [ 40] [0001418C0000933720000002418C000093372000] +12:10:58 ============================================================================ +12:10:58 Sending to : +12:10:58 ============================================================================ +12:10:58 + + +waiting on router queue for slot.... +12:10:59 ============================================================================ +12:10:59 Slot Id : <170> +12:10:59 Transaction Type : RESPONSE +12:10:59 Received From : +12:10:59 ============================================================================ +12:10:59 FNo. Len. Field Value +12:10:59 ============================================================================ +12:10:59 [ 1] [ 4] [0210] +12:10:59 [ 2] [ 16] [2206990000121269] +12:10:59 [ 3] [ 6] [010000] +12:10:59 [ 4] [ 12] [000070000000] +12:10:59 [ 7] [ 10] [0320120846] +12:10:59 [ 11] [ 6] [943463] +12:10:59 [ 12] [ 6] [120846] +12:10:59 [ 13] [ 4] [0320] +12:10:59 [ 15] [ 4] [0320] +12:10:59 [ 18] [ 4] [6011] +12:10:59 [ 32] [ 6] [668899] +12:10:59 [ 35] [ 32] [2206990000121269=980212615591339] +12:10:59 [ 37] [ 12] [507902031657] +12:10:59 [ 38] [ 6] [077355] +12:10:59 [ 39] [ 2] [00] +12:10:59 [ 41] [ 8] [03018003] +12:10:59 [ 49] [ 3] [418] +12:10:59 [ 54] [ 40] [0001418C0000933720000002418C000093372000] +12:10:59 ============================================================================ +12:10:59 Calculate Source COMM Id = 4 +12:10:59 ============================================================================ +12:10:59 + + +waiting on router queue for slot.... +12:11:02 ============================================================================ +12:11:02 Slot Id : <157> +12:11:02 Transaction Type : REQUEST +12:11:02 Received From : +12:11:02 ============================================================================ +12:11:02 FNo. Len. Field Value +12:11:02 ============================================================================ +12:11:02 [ 1] [ 4] [0800] +12:11:02 [ 7] [ 10] [0320051010] +12:11:02 [ 11] [ 6] [156242] +12:11:02 [ 70] [ 3] [301] +12:11:02 ============================================================================ +12:11:02 + + +waiting on router queue for slot.... +12:11:02 Sending to : +12:11:02 ============================================================================ +12:11:02 ============================================================================ +12:11:02 Slot Id : <157> +12:11:02 Transaction Type : RESPONSE +12:11:02 Received From : +12:11:02 ============================================================================ +12:11:02 FNo. Len. Field Value +12:11:02 ============================================================================ +12:11:02 [ 1] [ 4] [0810] +12:11:02 [ 7] [ 10] [0320051010] +12:11:02 [ 11] [ 6] [156242] +12:11:02 [ 39] [ 2] [00] +12:11:02 [ 70] [ 3] [301] +12:11:02 ============================================================================ +12:11:02 Calculate Source COMM Id = 2 +12:11:02 ============================================================================ +12:11:02 + + +waiting on router queue for slot.... +12:11:12 ============================================================================ +12:11:12 Slot Id : <151> +12:11:12 Transaction Type : REQUEST +12:11:12 Received From : +12:11:12 ============================================================================ +12:11:12 FNo. Len. Field Value +12:11:12 ============================================================================ +12:11:12 [ 1] [ 4] [0800] +12:11:12 [ 2] [ 5] [02531] +12:11:12 [ 3] [ 6] [579128] +12:11:12 [ 7] [ 10] [0320051112] +12:11:12 [ 11] [ 6] [807119] +12:11:12 [ 15] [ 10] [0320051112] +12:11:12 [ 37] [ 11] [57912807119] +12:11:12 [ 70] [ 3] [001] +12:11:12 ============================================================================ +12:11:12 + + +waiting on router queue for slot.... +12:11:12 ============================================================================ +12:11:12 Slot Id : <151> +12:11:12 Transaction Type : RESPONSE +12:11:12 Received From : +12:11:12 ============================================================================ +12:11:12 FNo. Len. Field Value +12:11:12 ============================================================================ +12:11:12 [ 1] [ 4] [0810] +12:11:12 [ 7] [ 10] [0320051112] +12:11:12 [ 11] [ 6] [807119] +12:11:12 [ 15] [ 4] [0320] +12:11:12 [ 37] [ 12] [57912807119] +12:11:12 [ 39] [ 2] [00] +12:11:12 [ 70] [ 3] [001] +12:11:12 ============================================================================ +12:11:12 Sending to : +12:11:12 ============================================================================ +12:11:12 + + +waiting on router queue for slot.... +12:11:13 ============================================================================ +12:11:13 Slot Id : <172> +12:11:13 Transaction Type : REQUEST +12:11:13 Received From : +12:11:13 ============================================================================ +12:11:13 FNo. Len. Field Value +12:11:13 ============================================================================ +12:11:13 [ 1] [ 4] [0800] +12:11:13 [ 7] [ 10] [0320051020] +12:11:13 [ 11] [ 6] [156243] +12:11:13 [ 70] [ 3] [301] +12:11:13 ============================================================================ +12:11:13 + + +waiting on router queue for slot.... +12:11:13 Sending to : +12:11:13 ============================================================================ +12:11:13 ============================================================================ +12:11:13 Slot Id : <172> +12:11:13 Transaction Type : RESPONSE +12:11:13 Received From : +12:11:13 ============================================================================ +12:11:13 FNo. Len. Field Value +12:11:13 ============================================================================ +12:11:13 [ 1] [ 4] [0810] +12:11:13 [ 7] [ 10] [0320051020] +12:11:13 [ 11] [ 6] [156243] +12:11:13 [ 39] [ 2] [00] +12:11:13 [ 70] [ 3] [301] +12:11:13 ============================================================================ +12:11:13 Calculate Source COMM Id = 2 +12:11:13 ============================================================================ +12:11:13 + + +waiting on router queue for slot.... +12:11:22 ============================================================================ +12:11:22 Slot Id : <164> +12:11:22 Transaction Type : REQUEST +12:11:22 Received From : +12:11:22 ============================================================================ +12:11:22 FNo. Len. Field Value +12:11:22 ============================================================================ +12:11:22 [ 1] [ 4] [0800] +12:11:22 [ 7] [ 10] [0320050912] +12:11:22 [ 11] [ 6] [037509] +12:11:22 [ 37] [ 12] [57912037509] +12:11:22 [ 70] [ 3] [301] +12:11:22 ============================================================================ +12:11:22 + + +waiting on router queue for slot.... +12:11:22 Sending to : +12:11:22 ============================================================================ +12:11:22 ============================================================================ +12:11:22 Slot Id : <164> +12:11:22 Transaction Type : RESPONSE +12:11:22 Received From : +12:11:22 ============================================================================ +12:11:22 FNo. Len. Field Value +12:11:22 ============================================================================ +12:11:22 [ 1] [ 4] [0810] +12:11:22 [ 7] [ 10] [0320050912] +12:11:22 [ 11] [ 6] [037509] +12:11:22 [ 37] [ 12] [579120375090] +12:11:22 [ 39] [ 2] [00] +12:11:22 [ 70] [ 3] [810] +12:11:22 ============================================================================ +12:11:22 Calculate Source COMM Id = 4 +12:11:22 ============================================================================ +12:11:22 + + +waiting on router queue for slot.... +12:11:25 ============================================================================ +12:11:25 Slot Id : <186> +12:11:25 Transaction Type : REQUEST +12:11:25 Received From : +12:11:25 ============================================================================ +12:11:25 FNo. Len. Field Value +12:11:25 ============================================================================ +12:11:25 [ 1] [ 4] [0800] +12:11:25 [ 7] [ 10] [0320051033] +12:11:25 [ 11] [ 6] [156244] +12:11:25 [ 70] [ 3] [301] +12:11:25 ============================================================================ +12:11:25 + + +waiting on router queue for slot.... +12:11:25 Sending to : +12:11:25 ============================================================================ +12:11:25 ============================================================================ +12:11:25 Slot Id : <186> +12:11:25 Transaction Type : RESPONSE +12:11:25 Received From : +12:11:25 ============================================================================ +12:11:25 FNo. Len. Field Value +12:11:25 ============================================================================ +12:11:25 [ 1] [ 4] [0810] +12:11:25 [ 7] [ 10] [0320051033] +12:11:25 [ 11] [ 6] [156244] +12:11:25 [ 39] [ 2] [00] +12:11:25 [ 70] [ 3] [301] +12:11:25 ============================================================================ +12:11:25 Calculate Source COMM Id = 2 +12:11:25 ============================================================================ +12:11:25 + + +waiting on router queue for slot.... +12:11:41 ============================================================================ +12:11:41 Slot Id : <148> +12:11:41 Transaction Type : REQUEST +12:11:41 Received From : +12:11:41 ============================================================================ +12:11:41 FNo. Len. Field Value +12:11:41 ============================================================================ +12:11:41 [ 1] [ 4] [0800] +12:11:41 [ 7] [ 10] [0320051049] +12:11:41 [ 11] [ 6] [156245] +12:11:41 [ 70] [ 3] [301] +12:11:41 ============================================================================ +12:11:41 + + +waiting on router queue for slot.... +12:11:41 Sending to : +12:11:41 ============================================================================ +12:11:41 ============================================================================ +12:11:41 Slot Id : <148> +12:11:41 Transaction Type : RESPONSE +12:11:41 Received From : +12:11:41 ============================================================================ +12:11:41 FNo. Len. Field Value +12:11:41 ============================================================================ +12:11:41 [ 1] [ 4] [0810] +12:11:41 [ 7] [ 10] [0320051049] +12:11:41 [ 11] [ 6] [156245] +12:11:41 [ 39] [ 2] [00] +12:11:41 [ 70] [ 3] [301] +12:11:41 ============================================================================ +12:11:41 Calculate Source COMM Id = 2 +12:11:41 ============================================================================ +12:11:41 + + +waiting on router queue for slot.... +12:11:53 ============================================================================ +12:11:53 Slot Id : <126> +12:11:53 Transaction Type : REQUEST +12:11:53 Received From : +12:11:53 ============================================================================ +12:11:53 FNo. Len. Field Value +12:11:53 ============================================================================ +12:11:53 [ 1] [ 4] [0800] +12:11:53 [ 7] [ 10] [0320051100] +12:11:53 [ 11] [ 6] [156246] +12:11:53 [ 70] [ 3] [301] +12:11:53 ============================================================================ +12:11:53 + + +waiting on router queue for slot.... +12:11:53 Sending to : +12:11:53 ============================================================================ +12:11:53 ============================================================================ +12:11:53 Slot Id : <126> +12:11:53 Transaction Type : RESPONSE +12:11:53 Received From : +12:11:53 ============================================================================ +12:11:53 FNo. Len. Field Value +12:11:53 ============================================================================ +12:11:53 [ 1] [ 4] [0810] +12:11:53 [ 7] [ 10] [0320051100] +12:11:53 [ 11] [ 6] [156246] +12:11:53 [ 39] [ 2] [00] +12:11:53 [ 70] [ 3] [301] +12:11:53 ============================================================================ +12:11:53 Calculate Source COMM Id = 2 +12:11:53 ============================================================================ +12:11:53 + + +waiting on router queue for slot.... +12:12:06 ============================================================================ +12:12:06 Slot Id : <171> +12:12:06 Transaction Type : REQUEST +12:12:06 Received From : +12:12:06 ============================================================================ +12:12:06 FNo. Len. Field Value +12:12:06 ============================================================================ +12:12:06 [ 1] [ 4] [0800] +12:12:06 [ 7] [ 10] [0320051112] +12:12:06 [ 11] [ 6] [156247] +12:12:06 [ 70] [ 3] [301] +12:12:06 ============================================================================ +12:12:06 + + +waiting on router queue for slot.... +12:12:06 Sending to : +12:12:06 ============================================================================ +12:12:06 ============================================================================ +12:12:06 Slot Id : <171> +12:12:06 Transaction Type : RESPONSE +12:12:06 Received From : +12:12:06 ============================================================================ +12:12:06 FNo. Len. Field Value +12:12:06 ============================================================================ +12:12:06 [ 1] [ 4] [0810] +12:12:06 [ 7] [ 10] [0320051112] +12:12:06 [ 11] [ 6] [156247] +12:12:06 [ 39] [ 2] [00] +12:12:06 [ 70] [ 3] [301] +12:12:06 ============================================================================ +12:12:06 Calculate Source COMM Id = 2 +12:12:06 ============================================================================ +12:12:06 + + +waiting on router queue for slot.... +12:12:14 ============================================================================ +12:12:14 Slot Id : <119> +12:12:14 Transaction Type : REQUEST +12:12:14 Received From : +12:12:14 ============================================================================ +12:12:14 FNo. Len. Field Value +12:12:14 ============================================================================ +12:12:14 [ 1] [ 4] [0800] +12:12:14 [ 2] [ 5] [02531] +12:12:14 [ 3] [ 6] [579128] +12:12:14 [ 7] [ 10] [0320051214] +12:12:14 [ 11] [ 6] [807120] +12:12:14 [ 15] [ 10] [0320051214] +12:12:14 [ 37] [ 11] [57912807120] +12:12:14 [ 70] [ 3] [001] +12:12:14 ============================================================================ +12:12:14 + + +waiting on router queue for slot.... +12:12:14 ============================================================================ +12:12:14 Slot Id : <119> +12:12:14 Transaction Type : RESPONSE +12:12:14 Received From : +12:12:14 ============================================================================ +12:12:14 FNo. Len. Field Value +12:12:14 ============================================================================ +12:12:14 [ 1] [ 4] [0810] +12:12:14 [ 7] [ 10] [0320051214] +12:12:14 [ 11] [ 6] [807120] +12:12:14 [ 15] [ 4] [0320] +12:12:14 [ 37] [ 12] [57912807120] +12:12:14 [ 39] [ 2] [00] +12:12:14 [ 70] [ 3] [001] +12:12:14 ============================================================================ +12:12:14 Sending to : +12:12:14 ============================================================================ +12:12:14 + + +waiting on router queue for slot.... +12:12:19 ============================================================================ +12:12:19 Slot Id : <182> +12:12:19 Transaction Type : REQUEST +12:12:19 Received From : +12:12:19 ============================================================================ +12:12:19 FNo. Len. Field Value +12:12:19 ============================================================================ +12:12:19 [ 1] [ 4] [0200] +12:12:19 [ 2] [ 16] [6213545000950745] +12:12:19 [ 3] [ 6] [010000] +12:12:19 [ 4] [ 12] [000200000000] +12:12:19 [ 7] [ 10] [0320051125] +12:12:19 [ 11] [ 6] [268937] +12:12:19 [ 12] [ 6] [121125] +12:12:19 [ 13] [ 4] [0320] +12:12:19 [ 14] [ 4] [4912] +12:12:19 [ 15] [ 4] [0320] +12:12:19 [ 18] [ 4] [6011] +12:12:19 [ 19] [ 3] [418] +12:12:19 [ 22] [ 3] [021] +12:12:19 [ 25] [ 2] [01] +12:12:19 [ 28] [ 9] [D00002000] +12:12:19 [ 32] [ 6] [180893] +12:12:19 [ 35] [ 32] [6213545000950745=491212015074849] +12:12:19 [ 37] [ 12] [507905268937] +12:12:19 [ 41] [ 8] [0465UDNM] +12:12:19 [ 42] [ 15] [999999 ] +12:12:19 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:12:19 [ 49] [ 3] [418] +12:12:19 [ 52] [ 16] [A89650BA5F6ADBD8] +12:12:19 ============================================================================ +12:12:19 + + +waiting on router queue for slot.... +12:12:19 Sending to : +12:12:19 ============================================================================ +12:12:19 Sending to : +12:12:19 ============================================================================ +12:12:19 ============================================================================ +12:12:19 Slot Id : <182> +12:12:19 Transaction Type : REQUEST +12:12:19 Received From : +12:12:19 ============================================================================ +12:12:19 FNo. Len. Field Value +12:12:19 ============================================================================ +12:12:19 [ 1] [ 4] [0200] +12:12:19 [ 2] [ 16] [6213545000950745] +12:12:19 [ 3] [ 6] [010000] +12:12:19 [ 4] [ 12] [000200000000] +12:12:19 [ 7] [ 10] [0320051125] +12:12:19 [ 11] [ 6] [268937] +12:12:19 [ 12] [ 6] [121125] +12:12:19 [ 13] [ 4] [0320] +12:12:19 [ 14] [ 4] [4912] +12:12:19 [ 15] [ 4] [0320] +12:12:19 [ 18] [ 4] [6011] +12:12:19 [ 19] [ 3] [418] +12:12:19 [ 22] [ 3] [021] +12:12:19 [ 25] [ 2] [01] +12:12:19 [ 28] [ 9] [D00002000] +12:12:19 [ 32] [ 6] [180893] +12:12:19 [ 35] [ 32] [6213545000950745=491212015074849] +12:12:19 [ 37] [ 12] [507905268937] +12:12:19 [ 41] [ 8] [0465UDNM] +12:12:19 [ 42] [ 15] [999999 ] +12:12:19 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:12:19 [ 49] [ 3] [418] +12:12:19 [ 52] [ 16] [A89650BA5F6ADBD8] +12:12:19 ============================================================================ +12:12:19 + + +waiting on router queue for slot.... +12:12:19 Sending to : +12:12:19 ============================================================================ +12:12:19 ============================================================================ +12:12:19 Slot Id : <182> +12:12:19 Transaction Type : REQUEST +12:12:19 Received From : +12:12:19 ============================================================================ +12:12:19 FNo. Len. Field Value +12:12:19 ============================================================================ +12:12:19 [ 1] [ 4] [0200] +12:12:19 [ 2] [ 16] [6213545000950745] +12:12:19 [ 3] [ 6] [010000] +12:12:19 [ 4] [ 12] [000200000000] +12:12:19 [ 7] [ 10] [0320051125] +12:12:19 [ 11] [ 6] [268937] +12:12:19 [ 12] [ 6] [121125] +12:12:19 [ 13] [ 4] [0320] +12:12:19 [ 14] [ 4] [4912] +12:12:19 [ 15] [ 4] [0320] +12:12:19 [ 18] [ 4] [6011] +12:12:19 [ 19] [ 3] [418] +12:12:19 [ 22] [ 3] [021] +12:12:19 [ 25] [ 2] [01] +12:12:19 [ 28] [ 9] [D00002000] +12:12:19 [ 32] [ 6] [180893] +12:12:19 [ 35] [ 32] [6213545000950745=491212015074849] +12:12:19 [ 37] [ 12] [507905268937] +12:12:19 [ 41] [ 8] [0465UDNM] +12:12:19 [ 42] [ 15] [999999 ] +12:12:19 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:12:19 [ 49] [ 3] [418] +12:12:19 [ 52] [ 16] [BD535019FC6ADF7F] +12:12:19 ============================================================================ +12:12:19 + + +waiting on router queue for slot.... +12:12:19 Sending to : <0> +12:12:19 ============================================================================ +12:12:19 ============================================================================ +12:12:19 Slot Id : <182> +12:12:19 Transaction Type : RESPONSE +12:12:19 Received From : +12:12:19 ============================================================================ +12:12:19 FNo. Len. Field Value +12:12:19 ============================================================================ +12:12:19 [ 1] [ 4] [0210] +12:12:19 [ 2] [ 16] [6213545000950745] +12:12:19 [ 3] [ 6] [010000] +12:12:19 [ 4] [ 12] [000200000000] +12:12:19 [ 7] [ 10] [0320051125] +12:12:19 [ 11] [ 6] [268937] +12:12:19 [ 12] [ 6] [121125] +12:12:19 [ 13] [ 4] [0320] +12:12:19 [ 15] [ 4] [0320] +12:12:19 [ 18] [ 4] [6011] +12:12:19 [ 19] [ 3] [418] +12:12:19 [ 22] [ 3] [021] +12:12:19 [ 32] [ 6] [180893] +12:12:19 [ 35] [ 32] [6213545000950745=491212015074849] +12:12:19 [ 37] [ 12] [507905268937] +12:12:19 [ 39] [ 2] [61] +12:12:19 [ 41] [ 8] [0465UDNM] +12:12:19 [ 49] [ 3] [418] +12:12:19 ============================================================================ +12:12:19 Sending to : +12:12:19 ============================================================================ +12:12:19 + + +waiting on router queue for slot.... +12:12:20 ============================================================================ +12:12:20 Slot Id : <182> +12:12:20 Transaction Type : RESPONSE +12:12:20 Received From : +12:12:20 ============================================================================ +12:12:20 FNo. Len. Field Value +12:12:20 ============================================================================ +12:12:20 [ 1] [ 4] [0210] +12:12:20 [ 2] [ 16] [6213545000950745] +12:12:20 [ 3] [ 6] [010000] +12:12:20 [ 4] [ 12] [000200000000] +12:12:20 [ 7] [ 10] [0320051125] +12:12:20 [ 11] [ 6] [268937] +12:12:20 [ 12] [ 6] [121125] +12:12:20 [ 13] [ 4] [0320] +12:12:20 [ 15] [ 4] [0320] +12:12:20 [ 18] [ 4] [6011] +12:12:20 [ 19] [ 3] [418] +12:12:20 [ 22] [ 3] [021] +12:12:20 [ 32] [ 6] [180893] +12:12:20 [ 35] [ 32] [6213545000950745=491212015074849] +12:12:20 [ 37] [ 12] [507905268937] +12:12:20 [ 39] [ 2] [61] +12:12:20 [ 41] [ 8] [0465UDNM] +12:12:20 [ 49] [ 3] [418] +12:12:20 ============================================================================ +12:12:20 Calculate Source COMM Id = 2 +12:12:20 ============================================================================ +12:12:20 + + +waiting on router queue for slot.... +12:12:21 ============================================================================ +12:12:21 Slot Id : <139> +12:12:21 Transaction Type : REQUEST +12:12:21 Received From : +12:12:21 ============================================================================ +12:12:21 FNo. Len. Field Value +12:12:21 ============================================================================ +12:12:21 [ 1] [ 4] [0800] +12:12:21 [ 7] [ 10] [0320051128] +12:12:21 [ 11] [ 6] [156248] +12:12:21 [ 70] [ 3] [301] +12:12:21 ============================================================================ +12:12:21 + + +waiting on router queue for slot.... +12:12:21 Sending to : +12:12:21 ============================================================================ +12:12:21 ============================================================================ +12:12:21 Slot Id : <139> +12:12:21 Transaction Type : RESPONSE +12:12:21 Received From : +12:12:21 ============================================================================ +12:12:21 FNo. Len. Field Value +12:12:21 ============================================================================ +12:12:21 [ 1] [ 4] [0810] +12:12:21 [ 7] [ 10] [0320051128] +12:12:21 [ 11] [ 6] [156248] +12:12:21 [ 39] [ 2] [00] +12:12:21 [ 70] [ 3] [301] +12:12:21 ============================================================================ +12:12:21 Calculate Source COMM Id = 2 +12:12:21 ============================================================================ +12:12:21 + + +waiting on router queue for slot.... +12:12:22 ============================================================================ +12:12:22 Slot Id : <176> +12:12:22 Transaction Type : REQUEST +12:12:22 Received From : +12:12:22 ============================================================================ +12:12:22 FNo. Len. Field Value +12:12:22 ============================================================================ +12:12:22 [ 1] [ 4] [0200] +12:12:22 [ 2] [ 16] [6213545000986426] +12:12:22 [ 3] [ 6] [010000] +12:12:22 [ 4] [ 12] [000100000000] +12:12:22 [ 7] [ 10] [0320051128] +12:12:22 [ 11] [ 6] [268939] +12:12:22 [ 12] [ 6] [121128] +12:12:22 [ 13] [ 4] [0320] +12:12:22 [ 14] [ 4] [4912] +12:12:22 [ 15] [ 4] [0320] +12:12:22 [ 18] [ 4] [6011] +12:12:22 [ 19] [ 3] [418] +12:12:22 [ 22] [ 3] [021] +12:12:22 [ 25] [ 2] [01] +12:12:22 [ 28] [ 9] [D00002000] +12:12:22 [ 32] [ 6] [180893] +12:12:22 [ 35] [ 32] [6213545000986426=491212018642279] +12:12:22 [ 37] [ 12] [507905268939] +12:12:22 [ 41] [ 8] [0363CPSH] +12:12:22 [ 42] [ 15] [999999 ] +12:12:22 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:12:22 [ 49] [ 3] [418] +12:12:22 [ 52] [ 16] [B5F7120581C4CD31] +12:12:22 ============================================================================ +12:12:22 + + +waiting on router queue for slot.... +12:12:22 Sending to : +12:12:22 ============================================================================ +12:12:22 Sending to : +12:12:22 ============================================================================ +12:12:22 ============================================================================ +12:12:22 Slot Id : <176> +12:12:22 Transaction Type : REQUEST +12:12:22 Received From : +12:12:22 ============================================================================ +12:12:22 FNo. Len. Field Value +12:12:22 ============================================================================ +12:12:22 [ 1] [ 4] [0200] +12:12:22 [ 2] [ 16] [6213545000986426] +12:12:22 [ 3] [ 6] [010000] +12:12:22 [ 4] [ 12] [000100000000] +12:12:22 [ 7] [ 10] [0320051128] +12:12:22 [ 11] [ 6] [268939] +12:12:22 [ 12] [ 6] [121128] +12:12:22 [ 13] [ 4] [0320] +12:12:22 [ 14] [ 4] [4912] +12:12:22 [ 15] [ 4] [0320] +12:12:22 [ 18] [ 4] [6011] +12:12:22 [ 19] [ 3] [418] +12:12:22 [ 22] [ 3] [021] +12:12:22 [ 25] [ 2] [01] +12:12:22 [ 28] [ 9] [D00002000] +12:12:22 [ 32] [ 6] [180893] +12:12:22 [ 35] [ 32] [6213545000986426=491212018642279] +12:12:22 [ 37] [ 12] [507905268939] +12:12:22 [ 41] [ 8] [0363CPSH] +12:12:22 [ 42] [ 15] [999999 ] +12:12:22 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:12:22 [ 49] [ 3] [418] +12:12:22 [ 52] [ 16] [B5F7120581C4CD31] +12:12:22 ============================================================================ +12:12:22 + + +waiting on router queue for slot.... +12:12:22 Sending to : +12:12:22 ============================================================================ +12:12:22 ============================================================================ +12:12:22 Slot Id : <176> +12:12:22 Transaction Type : REQUEST +12:12:22 Received From : +12:12:22 ============================================================================ +12:12:22 FNo. Len. Field Value +12:12:22 ============================================================================ +12:12:22 [ 1] [ 4] [0200] +12:12:22 [ 2] [ 16] [6213545000986426] +12:12:22 [ 3] [ 6] [010000] +12:12:22 [ 4] [ 12] [000100000000] +12:12:22 [ 7] [ 10] [0320051128] +12:12:22 [ 11] [ 6] [268939] +12:12:22 [ 12] [ 6] [121128] +12:12:22 [ 13] [ 4] [0320] +12:12:22 [ 14] [ 4] [4912] +12:12:22 [ 15] [ 4] [0320] +12:12:22 [ 18] [ 4] [6011] +12:12:22 [ 19] [ 3] [418] +12:12:22 [ 22] [ 3] [021] +12:12:22 [ 25] [ 2] [01] +12:12:22 [ 28] [ 9] [D00002000] +12:12:22 [ 32] [ 6] [180893] +12:12:22 [ 35] [ 32] [6213545000986426=491212018642279] +12:12:22 [ 37] [ 12] [507905268939] +12:12:22 [ 41] [ 8] [0363CPSH] +12:12:22 [ 42] [ 15] [999999 ] +12:12:22 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:12:22 [ 49] [ 3] [418] +12:12:22 [ 52] [ 16] [8DA474A0A7261DF8] +12:12:22 ============================================================================ +12:12:22 + + +waiting on router queue for slot.... +12:12:22 Sending to : <0> +12:12:22 ============================================================================ +12:12:24 ============================================================================ +12:12:24 Slot Id : <176> +12:12:24 Transaction Type : RESPONSE +12:12:24 Received From : +12:12:24 ============================================================================ +12:12:24 FNo. Len. Field Value +12:12:24 ============================================================================ +12:12:24 [ 1] [ 4] [0210] +12:12:24 [ 2] [ 16] [6213545000986426] +12:12:24 [ 3] [ 6] [010000] +12:12:24 [ 4] [ 12] [000100000000] +12:12:24 [ 7] [ 10] [0320051128] +12:12:24 [ 11] [ 6] [268939] +12:12:24 [ 12] [ 6] [121128] +12:12:24 [ 13] [ 4] [0320] +12:12:24 [ 15] [ 4] [0320] +12:12:24 [ 18] [ 4] [6011] +12:12:24 [ 19] [ 3] [418] +12:12:24 [ 32] [ 6] [180893] +12:12:24 [ 35] [ 32] [6213545000986426=491212018642279] +12:12:24 [ 37] [ 12] [507905268939] +12:12:24 [ 38] [ 6] [503837] +12:12:24 [ 39] [ 2] [00] +12:12:24 [ 41] [ 8] [0363CPSH] +12:12:24 [ 49] [ 3] [418] +12:12:24 [ 54] [ 40] [0001418C0000561672450002418C000056167245] +12:12:24 ============================================================================ +12:12:24 Sending to : +12:12:24 ============================================================================ +12:12:24 + + +waiting on router queue for slot.... +12:12:25 ============================================================================ +12:12:25 Slot Id : <176> +12:12:25 Transaction Type : RESPONSE +12:12:25 Received From : +12:12:25 ============================================================================ +12:12:25 FNo. Len. Field Value +12:12:25 ============================================================================ +12:12:25 [ 1] [ 4] [0210] +12:12:25 [ 2] [ 16] [6213545000986426] +12:12:25 [ 3] [ 6] [010000] +12:12:25 [ 4] [ 12] [000100000000] +12:12:25 [ 7] [ 10] [0320051128] +12:12:25 [ 11] [ 6] [268939] +12:12:25 [ 12] [ 6] [121128] +12:12:25 [ 13] [ 4] [0320] +12:12:25 [ 15] [ 4] [0320] +12:12:25 [ 18] [ 4] [6011] +12:12:25 [ 19] [ 3] [418] +12:12:25 [ 32] [ 6] [180893] +12:12:25 [ 35] [ 32] [6213545000986426=491212018642279] +12:12:25 [ 37] [ 12] [507905268939] +12:12:25 [ 38] [ 6] [503837] +12:12:25 [ 39] [ 2] [00] +12:12:25 [ 41] [ 8] [0363CPSH] +12:12:25 [ 49] [ 3] [418] +12:12:25 [ 54] [ 40] [0001418C0000561672450002418C000056167245] +12:12:25 ============================================================================ +12:12:25 Calculate Source COMM Id = 2 +12:12:25 ============================================================================ +12:12:25 + + +waiting on router queue for slot.... +12:12:37 ============================================================================ +12:12:37 Slot Id : <202> +12:12:37 Transaction Type : REQUEST +12:12:37 Received From : +12:12:37 ============================================================================ +12:12:37 FNo. Len. Field Value +12:12:37 ============================================================================ +12:12:37 [ 1] [ 4] [0800] +12:12:37 [ 7] [ 10] [0320051145] +12:12:37 [ 11] [ 6] [156249] +12:12:37 [ 70] [ 3] [301] +12:12:37 ============================================================================ +12:12:37 + + +waiting on router queue for slot.... +12:12:37 Sending to : +12:12:37 ============================================================================ +12:12:37 ============================================================================ +12:12:37 Slot Id : <202> +12:12:37 Transaction Type : RESPONSE +12:12:37 Received From : +12:12:37 ============================================================================ +12:12:37 FNo. Len. Field Value +12:12:37 ============================================================================ +12:12:37 [ 1] [ 4] [0810] +12:12:37 [ 7] [ 10] [0320051145] +12:12:37 [ 11] [ 6] [156249] +12:12:37 [ 39] [ 2] [00] +12:12:37 [ 70] [ 3] [301] +12:12:37 ============================================================================ +12:12:37 Calculate Source COMM Id = 2 +12:12:37 ============================================================================ +12:12:37 + + +waiting on router queue for slot.... +12:12:45 ============================================================================ +12:12:45 Slot Id : <160> +12:12:45 Transaction Type : REQUEST +12:12:45 Received From : +12:12:45 ============================================================================ +12:12:45 FNo. Len. Field Value +12:12:45 ============================================================================ +12:12:45 [ 1] [ 4] [0200] +12:12:45 [ 2] [ 16] [2206990000121269] +12:12:45 [ 3] [ 6] [010000] +12:12:45 [ 4] [ 12] [000070000000] +12:12:45 [ 7] [ 10] [0320121036] +12:12:45 [ 11] [ 6] [943545] +12:12:45 [ 12] [ 6] [121036] +12:12:45 [ 13] [ 4] [0320] +12:12:45 [ 15] [ 4] [0320] +12:12:45 [ 18] [ 4] [6011] +12:12:45 [ 19] [ 3] [418] +12:12:45 [ 22] [ 3] [021] +12:12:45 [ 25] [ 2] [01] +12:12:45 [ 28] [ 9] [D00002000] +12:12:45 [ 32] [ 6] [668899] +12:12:45 [ 35] [ 32] [2206990000121269=980212615591339] +12:12:45 [ 37] [ 12] [507902031659] +12:12:45 [ 41] [ 8] [03018003] +12:12:45 [ 42] [ 15] [APT ] +12:12:45 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:12:45 [ 49] [ 3] [418] +12:12:45 [ 52] [ 16] [BCEA1A0CC25B6BF6] +12:12:45 ============================================================================ +12:12:45 + + +waiting on router queue for slot.... +12:12:45 Sending to : +12:12:45 ============================================================================ +12:12:45 Sending to : +12:12:45 ============================================================================ +12:12:45 ============================================================================ +12:12:45 Slot Id : <160> +12:12:45 Transaction Type : REQUEST +12:12:45 Received From : +12:12:45 ============================================================================ +12:12:45 FNo. Len. Field Value +12:12:45 ============================================================================ +12:12:45 [ 1] [ 4] [0200] +12:12:45 [ 2] [ 16] [2206990000121269] +12:12:45 [ 3] [ 6] [010000] +12:12:45 [ 4] [ 12] [000070000000] +12:12:45 [ 7] [ 10] [0320121036] +12:12:45 [ 11] [ 6] [943545] +12:12:45 [ 12] [ 6] [121036] +12:12:45 [ 13] [ 4] [0320] +12:12:45 [ 15] [ 4] [0320] +12:12:45 [ 18] [ 4] [6011] +12:12:45 [ 19] [ 3] [418] +12:12:45 [ 22] [ 3] [021] +12:12:45 [ 25] [ 2] [01] +12:12:45 [ 28] [ 9] [D00002000] +12:12:45 [ 32] [ 6] [668899] +12:12:45 [ 35] [ 32] [2206990000121269=980212615591339] +12:12:45 [ 37] [ 12] [507902031659] +12:12:45 [ 41] [ 8] [03018003] +12:12:45 [ 42] [ 15] [APT ] +12:12:45 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:12:45 [ 49] [ 3] [418] +12:12:45 [ 52] [ 16] [BCEA1A0CC25B6BF6] +12:12:45 ============================================================================ +12:12:45 + + +waiting on router queue for slot.... +12:12:45 Sending to : +12:12:45 ============================================================================ +12:12:45 ============================================================================ +12:12:45 Slot Id : <160> +12:12:45 Transaction Type : REQUEST +12:12:45 Received From : +12:12:45 ============================================================================ +12:12:45 FNo. Len. Field Value +12:12:45 ============================================================================ +12:12:45 [ 1] [ 4] [0200] +12:12:45 [ 2] [ 16] [2206990000121269] +12:12:45 [ 3] [ 6] [010000] +12:12:45 [ 4] [ 12] [000070000000] +12:12:45 [ 7] [ 10] [0320121036] +12:12:45 [ 11] [ 6] [943545] +12:12:45 [ 12] [ 6] [121036] +12:12:45 [ 13] [ 4] [0320] +12:12:45 [ 15] [ 4] [0320] +12:12:45 [ 18] [ 4] [6011] +12:12:45 [ 19] [ 3] [418] +12:12:45 [ 22] [ 3] [021] +12:12:45 [ 25] [ 2] [01] +12:12:45 [ 28] [ 9] [D00002000] +12:12:45 [ 32] [ 6] [668899] +12:12:45 [ 35] [ 32] [2206990000121269=980212615591339] +12:12:45 [ 37] [ 12] [507902031659] +12:12:45 [ 41] [ 8] [03018003] +12:12:45 [ 42] [ 15] [APT ] +12:12:45 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:12:45 [ 49] [ 3] [418] +12:12:45 [ 52] [ 16] [EE1B4D3967DFCEEF] +12:12:45 ============================================================================ +12:12:45 + + +waiting on router queue for slot.... +12:12:45 Sending to : <1> +12:12:45 ============================================================================ +12:12:48 ============================================================================ +12:12:48 Slot Id : <160> +12:12:48 Transaction Type : RESPONSE +12:12:48 Received From : +12:12:48 ============================================================================ +12:12:48 FNo. Len. Field Value +12:12:48 ============================================================================ +12:12:48 [ 1] [ 4] [0210] +12:12:48 [ 2] [ 16] [2206990000121269] +12:12:48 [ 3] [ 6] [010000] +12:12:48 [ 4] [ 12] [000070000000] +12:12:48 [ 7] [ 10] [0320121036] +12:12:48 [ 11] [ 6] [943545] +12:12:48 [ 12] [ 6] [121036] +12:12:48 [ 13] [ 4] [0320] +12:12:48 [ 15] [ 4] [0320] +12:12:48 [ 18] [ 4] [6011] +12:12:48 [ 32] [ 6] [668899] +12:12:48 [ 35] [ 32] [2206990000121269=980212615591339] +12:12:48 [ 37] [ 12] [507902031659] +12:12:48 [ 38] [ 6] [934194] +12:12:48 [ 39] [ 2] [00] +12:12:48 [ 41] [ 8] [03018003] +12:12:48 [ 49] [ 3] [418] +12:12:48 [ 54] [ 40] [0001418C0000231720000002418C000023172000] +12:12:48 ============================================================================ +12:12:48 Sending to : +12:12:48 ============================================================================ +12:12:48 + + +waiting on router queue for slot.... +12:12:48 ============================================================================ +12:12:48 Slot Id : <187> +12:12:48 Transaction Type : REQUEST +12:12:48 Received From : +12:12:48 ============================================================================ +12:12:48 FNo. Len. Field Value +12:12:48 ============================================================================ +12:12:48 [ 1] [ 4] [0800] +12:12:48 [ 7] [ 10] [0320051156] +12:12:48 [ 11] [ 6] [156250] +12:12:48 [ 70] [ 3] [301] +12:12:48 ============================================================================ +12:12:48 + + +waiting on router queue for slot.... +12:12:48 Sending to : +12:12:48 ============================================================================ +12:12:48 ============================================================================ +12:12:48 Slot Id : <187> +12:12:48 Transaction Type : RESPONSE +12:12:48 Received From : +12:12:48 ============================================================================ +12:12:48 FNo. Len. Field Value +12:12:48 ============================================================================ +12:12:48 [ 1] [ 4] [0810] +12:12:48 [ 7] [ 10] [0320051156] +12:12:48 [ 11] [ 6] [156250] +12:12:48 [ 39] [ 2] [00] +12:12:48 [ 70] [ 3] [301] +12:12:48 ============================================================================ +12:12:48 Calculate Source COMM Id = 2 +12:12:48 ============================================================================ +12:12:48 + + +waiting on router queue for slot.... +12:12:49 ============================================================================ +12:12:49 Slot Id : <160> +12:12:49 Transaction Type : RESPONSE +12:12:49 Received From : +12:12:49 ============================================================================ +12:12:49 FNo. Len. Field Value +12:12:49 ============================================================================ +12:12:49 [ 1] [ 4] [0210] +12:12:49 [ 2] [ 16] [2206990000121269] +12:12:49 [ 3] [ 6] [010000] +12:12:49 [ 4] [ 12] [000070000000] +12:12:49 [ 7] [ 10] [0320121036] +12:12:49 [ 11] [ 6] [943545] +12:12:49 [ 12] [ 6] [121036] +12:12:49 [ 13] [ 4] [0320] +12:12:49 [ 15] [ 4] [0320] +12:12:49 [ 18] [ 4] [6011] +12:12:49 [ 32] [ 6] [668899] +12:12:49 [ 35] [ 32] [2206990000121269=980212615591339] +12:12:49 [ 37] [ 12] [507902031659] +12:12:49 [ 38] [ 6] [934194] +12:12:49 [ 39] [ 2] [00] +12:12:49 [ 41] [ 8] [03018003] +12:12:49 [ 49] [ 3] [418] +12:12:49 [ 54] [ 40] [0001418C0000231720000002418C000023172000] +12:12:49 ============================================================================ +12:12:49 Calculate Source COMM Id = 4 +12:12:49 ============================================================================ +12:12:49 + + +waiting on router queue for slot.... +12:12:59 ============================================================================ +12:12:59 Slot Id : <156> +12:12:59 Transaction Type : REQUEST +12:12:59 Received From : +12:12:59 ============================================================================ +12:12:59 FNo. Len. Field Value +12:12:59 ============================================================================ +12:12:59 [ 1] [ 4] [0800] +12:12:59 [ 7] [ 10] [0320051207] +12:12:59 [ 11] [ 6] [156251] +12:12:59 [ 70] [ 3] [301] +12:12:59 ============================================================================ +12:12:59 + + +waiting on router queue for slot.... +12:12:59 Sending to : +12:12:59 ============================================================================ +12:12:59 ============================================================================ +12:12:59 Slot Id : <156> +12:12:59 Transaction Type : RESPONSE +12:12:59 Received From : +12:12:59 ============================================================================ +12:12:59 FNo. Len. Field Value +12:12:59 ============================================================================ +12:12:59 [ 1] [ 4] [0810] +12:12:59 [ 7] [ 10] [0320051207] +12:12:59 [ 11] [ 6] [156251] +12:12:59 [ 39] [ 2] [00] +12:12:59 [ 70] [ 3] [301] +12:12:59 ============================================================================ +12:12:59 Calculate Source COMM Id = 2 +12:12:59 ============================================================================ +12:12:59 + + +waiting on router queue for slot.... +12:13:10 ============================================================================ +12:13:10 Slot Id : <144> +12:13:10 Transaction Type : REQUEST +12:13:10 Received From : +12:13:10 ============================================================================ +12:13:10 FNo. Len. Field Value +12:13:10 ============================================================================ +12:13:10 [ 1] [ 4] [0800] +12:13:10 [ 7] [ 10] [0320051218] +12:13:10 [ 11] [ 6] [156252] +12:13:10 [ 70] [ 3] [301] +12:13:10 ============================================================================ +12:13:10 + + +waiting on router queue for slot.... +12:13:10 Sending to : +12:13:10 ============================================================================ +12:13:10 ============================================================================ +12:13:10 Slot Id : <144> +12:13:10 Transaction Type : RESPONSE +12:13:10 Received From : +12:13:10 ============================================================================ +12:13:10 FNo. Len. Field Value +12:13:10 ============================================================================ +12:13:10 [ 1] [ 4] [0810] +12:13:10 [ 7] [ 10] [0320051218] +12:13:10 [ 11] [ 6] [156252] +12:13:10 [ 39] [ 2] [00] +12:13:10 [ 70] [ 3] [301] +12:13:10 ============================================================================ +12:13:10 Calculate Source COMM Id = 2 +12:13:10 ============================================================================ +12:13:10 + + +waiting on router queue for slot.... +12:13:11 ============================================================================ +12:13:11 Slot Id : <203> +12:13:11 Transaction Type : REQUEST +12:13:11 Received From : +12:13:11 ============================================================================ +12:13:11 FNo. Len. Field Value +12:13:11 ============================================================================ +12:13:11 [ 1] [ 4] [0200] +12:13:11 [ 2] [ 16] [6213545000986426] +12:13:11 [ 3] [ 6] [010000] +12:13:11 [ 4] [ 12] [000050000000] +12:13:11 [ 7] [ 10] [0320051217] +12:13:11 [ 11] [ 6] [268947] +12:13:11 [ 12] [ 6] [121217] +12:13:11 [ 13] [ 4] [0320] +12:13:11 [ 14] [ 4] [4912] +12:13:11 [ 15] [ 4] [0320] +12:13:11 [ 18] [ 4] [6011] +12:13:11 [ 19] [ 3] [418] +12:13:11 [ 22] [ 3] [021] +12:13:11 [ 25] [ 2] [01] +12:13:11 [ 28] [ 9] [D00002000] +12:13:11 [ 32] [ 6] [180893] +12:13:11 [ 35] [ 32] [6213545000986426=491212018642279] +12:13:11 [ 37] [ 12] [507905268947] +12:13:11 [ 41] [ 8] [0363CPSH] +12:13:11 [ 42] [ 15] [999999 ] +12:13:11 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:13:11 [ 49] [ 3] [418] +12:13:11 [ 52] [ 16] [B5F7120581C4CD31] +12:13:11 ============================================================================ +12:13:11 + + +waiting on router queue for slot.... +12:13:11 Sending to : +12:13:11 ============================================================================ +12:13:11 Sending to : +12:13:11 ============================================================================ +12:13:11 ============================================================================ +12:13:11 Slot Id : <203> +12:13:11 Transaction Type : REQUEST +12:13:11 Received From : +12:13:11 ============================================================================ +12:13:11 FNo. Len. Field Value +12:13:11 ============================================================================ +12:13:11 [ 1] [ 4] [0200] +12:13:11 [ 2] [ 16] [6213545000986426] +12:13:11 [ 3] [ 6] [010000] +12:13:11 [ 4] [ 12] [000050000000] +12:13:11 [ 7] [ 10] [0320051217] +12:13:11 [ 11] [ 6] [268947] +12:13:11 [ 12] [ 6] [121217] +12:13:11 [ 13] [ 4] [0320] +12:13:11 [ 14] [ 4] [4912] +12:13:11 [ 15] [ 4] [0320] +12:13:11 [ 18] [ 4] [6011] +12:13:11 [ 19] [ 3] [418] +12:13:11 [ 22] [ 3] [021] +12:13:11 [ 25] [ 2] [01] +12:13:11 [ 28] [ 9] [D00002000] +12:13:11 [ 32] [ 6] [180893] +12:13:11 [ 35] [ 32] [6213545000986426=491212018642279] +12:13:11 [ 37] [ 12] [507905268947] +12:13:11 [ 41] [ 8] [0363CPSH] +12:13:11 [ 42] [ 15] [999999 ] +12:13:11 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:13:11 [ 49] [ 3] [418] +12:13:11 [ 52] [ 16] [B5F7120581C4CD31] +12:13:11 ============================================================================ +12:13:11 + + +waiting on router queue for slot.... +12:13:11 Sending to : +12:13:11 ============================================================================ +12:13:11 ============================================================================ +12:13:11 Slot Id : <203> +12:13:11 Transaction Type : REQUEST +12:13:11 Received From : +12:13:11 ============================================================================ +12:13:11 FNo. Len. Field Value +12:13:11 ============================================================================ +12:13:11 [ 1] [ 4] [0200] +12:13:11 [ 2] [ 16] [6213545000986426] +12:13:11 [ 3] [ 6] [010000] +12:13:11 [ 4] [ 12] [000050000000] +12:13:11 [ 7] [ 10] [0320051217] +12:13:11 [ 11] [ 6] [268947] +12:13:11 [ 12] [ 6] [121217] +12:13:11 [ 13] [ 4] [0320] +12:13:11 [ 14] [ 4] [4912] +12:13:11 [ 15] [ 4] [0320] +12:13:11 [ 18] [ 4] [6011] +12:13:11 [ 19] [ 3] [418] +12:13:11 [ 22] [ 3] [021] +12:13:11 [ 25] [ 2] [01] +12:13:11 [ 28] [ 9] [D00002000] +12:13:11 [ 32] [ 6] [180893] +12:13:11 [ 35] [ 32] [6213545000986426=491212018642279] +12:13:11 [ 37] [ 12] [507905268947] +12:13:11 [ 41] [ 8] [0363CPSH] +12:13:11 [ 42] [ 15] [999999 ] +12:13:11 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:13:11 [ 49] [ 3] [418] +12:13:11 [ 52] [ 16] [8DA474A0A7261DF8] +12:13:11 ============================================================================ +12:13:11 + + +waiting on router queue for slot.... +12:13:11 Sending to : <0> +12:13:11 ============================================================================ +12:13:12 ============================================================================ +12:13:12 Slot Id : <203> +12:13:12 Transaction Type : RESPONSE +12:13:12 Received From : +12:13:12 ============================================================================ +12:13:12 FNo. Len. Field Value +12:13:12 ============================================================================ +12:13:12 [ 1] [ 4] [0210] +12:13:12 [ 2] [ 16] [6213545000986426] +12:13:12 [ 3] [ 6] [010000] +12:13:12 [ 4] [ 12] [000050000000] +12:13:12 [ 7] [ 10] [0320051217] +12:13:12 [ 11] [ 6] [268947] +12:13:12 [ 12] [ 6] [121217] +12:13:12 [ 13] [ 4] [0320] +12:13:12 [ 15] [ 4] [0320] +12:13:12 [ 18] [ 4] [6011] +12:13:12 [ 19] [ 3] [418] +12:13:12 [ 32] [ 6] [180893] +12:13:12 [ 35] [ 32] [6213545000986426=491212018642279] +12:13:12 [ 37] [ 12] [507905268947] +12:13:12 [ 38] [ 6] [638585] +12:13:12 [ 39] [ 2] [00] +12:13:12 [ 41] [ 8] [0363CPSH] +12:13:12 [ 49] [ 3] [418] +12:13:12 [ 54] [ 40] [0001418C0000059672450002418C000005967245] +12:13:12 ============================================================================ +12:13:12 Sending to : +12:13:12 ============================================================================ +12:13:12 + + +waiting on router queue for slot.... +12:13:13 ============================================================================ +12:13:13 Slot Id : <203> +12:13:13 Transaction Type : RESPONSE +12:13:13 Received From : +12:13:13 ============================================================================ +12:13:13 FNo. Len. Field Value +12:13:13 ============================================================================ +12:13:13 [ 1] [ 4] [0210] +12:13:13 [ 2] [ 16] [6213545000986426] +12:13:13 [ 3] [ 6] [010000] +12:13:13 [ 4] [ 12] [000050000000] +12:13:13 [ 7] [ 10] [0320051217] +12:13:13 [ 11] [ 6] [268947] +12:13:13 [ 12] [ 6] [121217] +12:13:13 [ 13] [ 4] [0320] +12:13:13 [ 15] [ 4] [0320] +12:13:13 [ 18] [ 4] [6011] +12:13:13 [ 19] [ 3] [418] +12:13:13 [ 32] [ 6] [180893] +12:13:13 [ 35] [ 32] [6213545000986426=491212018642279] +12:13:13 [ 37] [ 12] [507905268947] +12:13:13 [ 38] [ 6] [638585] +12:13:13 [ 39] [ 2] [00] +12:13:13 [ 41] [ 8] [0363CPSH] +12:13:13 [ 49] [ 3] [418] +12:13:13 [ 54] [ 40] [0001418C0000059672450002418C000005967245] +12:13:13 ============================================================================ +12:13:13 Calculate Source COMM Id = 2 +12:13:13 ============================================================================ +12:13:13 + + +waiting on router queue for slot.... +12:13:16 ============================================================================ +12:13:16 Slot Id : <179> +12:13:16 Transaction Type : REQUEST +12:13:16 Received From : +12:13:16 ============================================================================ +12:13:16 FNo. Len. Field Value +12:13:16 ============================================================================ +12:13:16 [ 1] [ 4] [0800] +12:13:16 [ 2] [ 5] [02531] +12:13:16 [ 3] [ 6] [579128] +12:13:16 [ 7] [ 10] [0320051316] +12:13:16 [ 11] [ 6] [807121] +12:13:16 [ 15] [ 10] [0320051316] +12:13:16 [ 37] [ 11] [57912807121] +12:13:16 [ 70] [ 3] [001] +12:13:16 ============================================================================ +12:13:16 + + +waiting on router queue for slot.... +12:13:16 ============================================================================ +12:13:16 Slot Id : <179> +12:13:16 Transaction Type : RESPONSE +12:13:16 Received From : +12:13:16 ============================================================================ +12:13:16 FNo. Len. Field Value +12:13:16 ============================================================================ +12:13:16 [ 1] [ 4] [0810] +12:13:16 [ 7] [ 10] [0320051316] +12:13:16 [ 11] [ 6] [807121] +12:13:16 [ 15] [ 4] [0320] +12:13:16 [ 37] [ 12] [57912807121] +12:13:16 [ 39] [ 2] [00] +12:13:16 [ 70] [ 3] [001] +12:13:16 ============================================================================ +12:13:16 Sending to : +12:13:16 ============================================================================ +12:13:16 + + +waiting on router queue for slot.... +12:13:22 ============================================================================ +12:13:22 Slot Id : <204> +12:13:22 Transaction Type : REQUEST +12:13:22 Received From : +12:13:22 ============================================================================ +12:13:22 FNo. Len. Field Value +12:13:22 ============================================================================ +12:13:22 [ 1] [ 4] [0200] +12:13:22 [ 2] [ 16] [6213544002135223] +12:13:22 [ 3] [ 6] [301000] +12:13:22 [ 4] [ 12] [000000000000] +12:13:22 [ 7] [ 10] [0320121343] +12:13:22 [ 11] [ 6] [205329] +12:13:22 [ 12] [ 6] [121527] +12:13:22 [ 13] [ 4] [0320] +12:13:22 [ 14] [ 4] [4912] +12:13:22 [ 15] [ 4] [0320] +12:13:22 [ 18] [ 4] [6011] +12:13:22 [ 19] [ 3] [418] +12:13:22 [ 22] [ 3] [021] +12:13:22 [ 25] [ 2] [01] +12:13:22 [ 28] [ 9] [D00000000] +12:13:22 [ 32] [ 6] [198901] +12:13:22 [ 35] [ 32] [6213544002135223=491212013522973] +12:13:22 [ 37] [ 12] [507912205329] +12:13:22 [ 41] [ 8] [00002222] +12:13:22 [ 42] [ 15] [000000041002222] +12:13:22 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:13:22 [ 49] [ 3] [418] +12:13:22 [ 52] [ 16] [2066AD453DCA8C0D] +12:13:22 ============================================================================ +12:13:22 + + +waiting on router queue for slot.... +12:13:22 Sending to : +12:13:22 ============================================================================ +12:13:22 Sending to : +12:13:22 ============================================================================ +12:13:23 ============================================================================ +12:13:23 Slot Id : <204> +12:13:23 Transaction Type : REQUEST +12:13:23 Received From : +12:13:23 ============================================================================ +12:13:23 FNo. Len. Field Value +12:13:23 ============================================================================ +12:13:23 [ 1] [ 4] [0200] +12:13:23 [ 2] [ 16] [6213544002135223] +12:13:23 [ 3] [ 6] [301000] +12:13:23 [ 4] [ 12] [000000000000] +12:13:23 [ 7] [ 10] [0320121343] +12:13:23 [ 11] [ 6] [205329] +12:13:23 [ 12] [ 6] [121527] +12:13:23 [ 13] [ 4] [0320] +12:13:23 [ 14] [ 4] [4912] +12:13:23 [ 15] [ 4] [0320] +12:13:23 [ 18] [ 4] [6011] +12:13:23 [ 19] [ 3] [418] +12:13:23 [ 22] [ 3] [021] +12:13:23 [ 25] [ 2] [01] +12:13:23 [ 28] [ 9] [D00000000] +12:13:23 [ 32] [ 6] [198901] +12:13:23 [ 35] [ 32] [6213544002135223=491212013522973] +12:13:23 [ 37] [ 12] [507912205329] +12:13:23 [ 41] [ 8] [00002222] +12:13:23 [ 42] [ 15] [000000041002222] +12:13:23 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:13:23 [ 49] [ 3] [418] +12:13:23 [ 52] [ 16] [2066AD453DCA8C0D] +12:13:23 ============================================================================ +12:13:23 + + +waiting on router queue for slot.... +12:13:23 Sending to : +12:13:23 ============================================================================ +12:13:23 ============================================================================ +12:13:23 Slot Id : <204> +12:13:23 Transaction Type : REQUEST +12:13:23 Received From : +12:13:23 ============================================================================ +12:13:23 FNo. Len. Field Value +12:13:23 ============================================================================ +12:13:23 [ 1] [ 4] [0200] +12:13:23 [ 2] [ 16] [6213544002135223] +12:13:23 [ 3] [ 6] [301000] +12:13:23 [ 4] [ 12] [000000000000] +12:13:23 [ 7] [ 10] [0320121343] +12:13:23 [ 11] [ 6] [205329] +12:13:23 [ 12] [ 6] [121527] +12:13:23 [ 13] [ 4] [0320] +12:13:23 [ 14] [ 4] [4912] +12:13:23 [ 15] [ 4] [0320] +12:13:23 [ 18] [ 4] [6011] +12:13:23 [ 19] [ 3] [418] +12:13:23 [ 22] [ 3] [021] +12:13:23 [ 25] [ 2] [01] +12:13:23 [ 28] [ 9] [D00000000] +12:13:23 [ 32] [ 6] [198901] +12:13:23 [ 35] [ 32] [6213544002135223=491212013522973] +12:13:23 [ 37] [ 12] [507912205329] +12:13:23 [ 41] [ 8] [00002222] +12:13:23 [ 42] [ 15] [000000041002222] +12:13:23 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:13:23 [ 49] [ 3] [418] +12:13:23 [ 52] [ 16] [070430F8D90C9785] +12:13:23 ============================================================================ +12:13:23 + + +waiting on router queue for slot.... +12:13:23 Sending to : <0> +12:13:23 ============================================================================ +12:13:23 ============================================================================ +12:13:23 Slot Id : <204> +12:13:23 Transaction Type : RESPONSE +12:13:23 Received From : +12:13:23 ============================================================================ +12:13:23 FNo. Len. Field Value +12:13:23 ============================================================================ +12:13:23 [ 1] [ 4] [0210] +12:13:23 [ 2] [ 16] [6213544002135223] +12:13:23 [ 3] [ 6] [301000] +12:13:23 [ 4] [ 12] [000000000000] +12:13:23 [ 7] [ 10] [0320121343] +12:13:23 [ 11] [ 6] [205329] +12:13:23 [ 12] [ 6] [121527] +12:13:23 [ 13] [ 4] [0320] +12:13:23 [ 15] [ 4] [0320] +12:13:23 [ 18] [ 4] [6011] +12:13:23 [ 19] [ 3] [418] +12:13:23 [ 32] [ 6] [198901] +12:13:23 [ 35] [ 32] [6213544002135223=491212013522973] +12:13:23 [ 37] [ 12] [507912205329] +12:13:23 [ 38] [ 6] [833945] +12:13:23 [ 39] [ 2] [00] +12:13:23 [ 41] [ 8] [00002222] +12:13:23 [ 49] [ 3] [418] +12:13:23 [ 54] [ 40] [1001418C0000079613821002418C000007961382] +12:13:23 ============================================================================ +12:13:23 Sending to : +12:13:23 ============================================================================ +12:13:23 + + +waiting on router queue for slot.... +12:13:25 ============================================================================ +12:13:25 Slot Id : <204> +12:13:25 Transaction Type : RESPONSE +12:13:25 Received From : +12:13:25 ============================================================================ +12:13:25 FNo. Len. Field Value +12:13:25 ============================================================================ +12:13:25 [ 1] [ 4] [0210] +12:13:25 [ 2] [ 16] [6213544002135223] +12:13:25 [ 3] [ 6] [301000] +12:13:25 [ 4] [ 12] [000000000000] +12:13:25 [ 7] [ 10] [0320121343] +12:13:25 [ 11] [ 6] [205329] +12:13:25 [ 12] [ 6] [121527] +12:13:25 [ 13] [ 4] [0320] +12:13:25 [ 15] [ 4] [0320] +12:13:25 [ 18] [ 4] [6011] +12:13:25 [ 19] [ 3] [418] +12:13:25 [ 32] [ 6] [198901] +12:13:25 [ 35] [ 32] [6213544002135223=491212013522973] +12:13:25 [ 37] [ 12] [507912205329] +12:13:25 [ 38] [ 6] [833945] +12:13:25 [ 39] [ 2] [00] +12:13:25 [ 41] [ 8] [00002222] +12:13:25 [ 49] [ 3] [418] +12:13:25 [ 54] [ 40] [1001418C0000079613821002418C000007961382] +12:13:25 ============================================================================ +12:13:25 Calculate Source COMM Id = 5 +12:13:25 ============================================================================ +12:13:25 + + +waiting on router queue for slot.... +12:13:25 ============================================================================ +12:13:25 Slot Id : <163> +12:13:25 Transaction Type : REQUEST +12:13:25 Received From : +12:13:25 ============================================================================ +12:13:25 FNo. Len. Field Value +12:13:25 ============================================================================ +12:13:25 [ 1] [ 4] [0800] +12:13:25 [ 7] [ 10] [0320051233] +12:13:25 [ 11] [ 6] [156253] +12:13:25 [ 70] [ 3] [301] +12:13:25 ============================================================================ +12:13:25 + + +waiting on router queue for slot.... +12:13:25 Sending to : +12:13:25 ============================================================================ +12:13:25 ============================================================================ +12:13:25 Slot Id : <163> +12:13:25 Transaction Type : RESPONSE +12:13:25 Received From : +12:13:25 ============================================================================ +12:13:25 FNo. Len. Field Value +12:13:25 ============================================================================ +12:13:25 [ 1] [ 4] [0810] +12:13:25 [ 7] [ 10] [0320051233] +12:13:25 [ 11] [ 6] [156253] +12:13:25 [ 39] [ 2] [00] +12:13:25 [ 70] [ 3] [301] +12:13:25 ============================================================================ +12:13:25 Calculate Source COMM Id = 2 +12:13:25 ============================================================================ +12:13:25 + + +waiting on router queue for slot.... +12:13:37 ============================================================================ +12:13:37 Slot Id : <135> +12:13:37 Transaction Type : REQUEST +12:13:37 Received From : +12:13:37 ============================================================================ +12:13:37 FNo. Len. Field Value +12:13:37 ============================================================================ +12:13:37 [ 1] [ 4] [0800] +12:13:37 [ 7] [ 10] [0320051245] +12:13:37 [ 11] [ 6] [156254] +12:13:37 [ 70] [ 3] [301] +12:13:37 ============================================================================ +12:13:37 + + +waiting on router queue for slot.... +12:13:37 Sending to : +12:13:37 ============================================================================ +12:13:37 ============================================================================ +12:13:37 Slot Id : <135> +12:13:37 Transaction Type : RESPONSE +12:13:37 Received From : +12:13:37 ============================================================================ +12:13:37 FNo. Len. Field Value +12:13:37 ============================================================================ +12:13:37 [ 1] [ 4] [0810] +12:13:37 [ 7] [ 10] [0320051245] +12:13:37 [ 11] [ 6] [156254] +12:13:37 [ 39] [ 2] [00] +12:13:37 [ 70] [ 3] [301] +12:13:37 ============================================================================ +12:13:37 Calculate Source COMM Id = 2 +12:13:37 ============================================================================ +12:13:37 + + +waiting on router queue for slot.... +12:13:47 ============================================================================ +12:13:47 Slot Id : <152> +12:13:47 Transaction Type : REQUEST +12:13:47 Received From : +12:13:47 ============================================================================ +12:13:47 FNo. Len. Field Value +12:13:47 ============================================================================ +12:13:47 [ 1] [ 4] [0200] +12:13:47 [ 2] [ 16] [6213544002135223] +12:13:47 [ 3] [ 6] [011000] +12:13:47 [ 4] [ 12] [000002000000] +12:13:47 [ 7] [ 10] [0320121408] +12:13:47 [ 11] [ 6] [205338] +12:13:47 [ 12] [ 6] [121551] +12:13:47 [ 13] [ 4] [0320] +12:13:47 [ 14] [ 4] [4912] +12:13:47 [ 15] [ 4] [0320] +12:13:47 [ 18] [ 4] [6011] +12:13:47 [ 19] [ 3] [418] +12:13:47 [ 22] [ 3] [021] +12:13:47 [ 25] [ 2] [01] +12:13:47 [ 28] [ 9] [D00002000] +12:13:47 [ 32] [ 6] [198901] +12:13:47 [ 35] [ 32] [6213544002135223=491212013522973] +12:13:47 [ 37] [ 12] [507912205338] +12:13:47 [ 41] [ 8] [00002222] +12:13:47 [ 42] [ 15] [000000041002222] +12:13:47 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:13:47 [ 49] [ 3] [418] +12:13:47 [ 52] [ 16] [2066AD453DCA8C0D] +12:13:47 ============================================================================ +12:13:47 + + +waiting on router queue for slot.... +12:13:47 Sending to : +12:13:47 ============================================================================ +12:13:47 Sending to : +12:13:47 ============================================================================ +12:13:47 ============================================================================ +12:13:47 Slot Id : <152> +12:13:47 Transaction Type : REQUEST +12:13:47 Received From : +12:13:47 ============================================================================ +12:13:47 FNo. Len. Field Value +12:13:47 ============================================================================ +12:13:47 [ 1] [ 4] [0200] +12:13:47 [ 2] [ 16] [6213544002135223] +12:13:47 [ 3] [ 6] [011000] +12:13:47 [ 4] [ 12] [000002000000] +12:13:47 [ 7] [ 10] [0320121408] +12:13:47 [ 11] [ 6] [205338] +12:13:47 [ 12] [ 6] [121551] +12:13:47 [ 13] [ 4] [0320] +12:13:47 [ 14] [ 4] [4912] +12:13:47 [ 15] [ 4] [0320] +12:13:47 [ 18] [ 4] [6011] +12:13:47 [ 19] [ 3] [418] +12:13:47 [ 22] [ 3] [021] +12:13:47 [ 25] [ 2] [01] +12:13:47 [ 28] [ 9] [D00002000] +12:13:47 [ 32] [ 6] [198901] +12:13:47 [ 35] [ 32] [6213544002135223=491212013522973] +12:13:47 [ 37] [ 12] [507912205338] +12:13:47 [ 41] [ 8] [00002222] +12:13:47 [ 42] [ 15] [000000041002222] +12:13:47 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:13:47 [ 49] [ 3] [418] +12:13:47 [ 52] [ 16] [2066AD453DCA8C0D] +12:13:47 ============================================================================ +12:13:47 + + +waiting on router queue for slot.... +12:13:47 Sending to : +12:13:47 ============================================================================ +12:13:47 ============================================================================ +12:13:47 Slot Id : <152> +12:13:47 Transaction Type : REQUEST +12:13:47 Received From : +12:13:47 ============================================================================ +12:13:47 FNo. Len. Field Value +12:13:47 ============================================================================ +12:13:47 [ 1] [ 4] [0200] +12:13:47 [ 2] [ 16] [6213544002135223] +12:13:47 [ 3] [ 6] [011000] +12:13:47 [ 4] [ 12] [000002000000] +12:13:47 [ 7] [ 10] [0320121408] +12:13:47 [ 11] [ 6] [205338] +12:13:47 [ 12] [ 6] [121551] +12:13:47 [ 13] [ 4] [0320] +12:13:47 [ 14] [ 4] [4912] +12:13:47 [ 15] [ 4] [0320] +12:13:47 [ 18] [ 4] [6011] +12:13:47 [ 19] [ 3] [418] +12:13:47 [ 22] [ 3] [021] +12:13:47 [ 25] [ 2] [01] +12:13:47 [ 28] [ 9] [D00002000] +12:13:47 [ 32] [ 6] [198901] +12:13:47 [ 35] [ 32] [6213544002135223=491212013522973] +12:13:47 [ 37] [ 12] [507912205338] +12:13:47 [ 41] [ 8] [00002222] +12:13:47 [ 42] [ 15] [000000041002222] +12:13:47 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:13:47 [ 49] [ 3] [418] +12:13:47 [ 52] [ 16] [070430F8D90C9785] +12:13:47 ============================================================================ +12:13:47 + + +waiting on router queue for slot.... +12:13:47 Sending to : <0> +12:13:47 ============================================================================ +12:13:48 ============================================================================ +12:13:48 Slot Id : <152> +12:13:48 Transaction Type : RESPONSE +12:13:48 Received From : +12:13:48 ============================================================================ +12:13:48 FNo. Len. Field Value +12:13:48 ============================================================================ +12:13:48 [ 1] [ 4] [0210] +12:13:48 [ 2] [ 16] [6213544002135223] +12:13:48 [ 3] [ 6] [011000] +12:13:48 [ 4] [ 12] [000002000000] +12:13:48 [ 7] [ 10] [0320121408] +12:13:48 [ 11] [ 6] [205338] +12:13:48 [ 12] [ 6] [121551] +12:13:48 [ 13] [ 4] [0320] +12:13:48 [ 15] [ 4] [0320] +12:13:48 [ 18] [ 4] [6011] +12:13:48 [ 19] [ 3] [418] +12:13:48 [ 32] [ 6] [198901] +12:13:48 [ 35] [ 32] [6213544002135223=491212013522973] +12:13:48 [ 37] [ 12] [507912205338] +12:13:48 [ 38] [ 6] [491192] +12:13:48 [ 39] [ 2] [00] +12:13:48 [ 41] [ 8] [00002222] +12:13:48 [ 49] [ 3] [418] +12:13:48 [ 54] [ 40] [1001418C0000057613821002418C000005761382] +12:13:48 ============================================================================ +12:13:48 Sending to : +12:13:48 ============================================================================ +12:13:48 + + +waiting on router queue for slot.... +12:13:49 ============================================================================ +12:13:49 Slot Id : <152> +12:13:49 Transaction Type : RESPONSE +12:13:49 Received From : +12:13:49 ============================================================================ +12:13:49 FNo. Len. Field Value +12:13:49 ============================================================================ +12:13:49 [ 1] [ 4] [0210] +12:13:49 [ 2] [ 16] [6213544002135223] +12:13:49 [ 3] [ 6] [011000] +12:13:49 [ 4] [ 12] [000002000000] +12:13:49 [ 7] [ 10] [0320121408] +12:13:49 [ 11] [ 6] [205338] +12:13:49 [ 12] [ 6] [121551] +12:13:49 [ 13] [ 4] [0320] +12:13:49 [ 15] [ 4] [0320] +12:13:49 [ 18] [ 4] [6011] +12:13:49 [ 19] [ 3] [418] +12:13:49 [ 32] [ 6] [198901] +12:13:49 [ 35] [ 32] [6213544002135223=491212013522973] +12:13:49 [ 37] [ 12] [507912205338] +12:13:49 [ 38] [ 6] [491192] +12:13:49 [ 39] [ 2] [00] +12:13:49 [ 41] [ 8] [00002222] +12:13:49 [ 49] [ 3] [418] +12:13:49 [ 54] [ 40] [1001418C0000057613821002418C000005761382] +12:13:49 ============================================================================ +12:13:49 Calculate Source COMM Id = 5 +12:13:49 ============================================================================ +12:13:49 + + +waiting on router queue for slot.... +12:13:52 ============================================================================ +12:13:52 Slot Id : <192> +12:13:52 Transaction Type : REQUEST +12:13:52 Received From : +12:13:52 ============================================================================ +12:13:52 FNo. Len. Field Value +12:13:52 ============================================================================ +12:13:52 [ 1] [ 4] [0800] +12:13:52 [ 7] [ 10] [0320051300] +12:13:52 [ 11] [ 6] [156255] +12:13:52 [ 70] [ 3] [301] +12:13:52 ============================================================================ +12:13:52 + + +waiting on router queue for slot.... +12:13:52 Sending to : +12:13:52 ============================================================================ +12:13:52 ============================================================================ +12:13:52 Slot Id : <192> +12:13:52 Transaction Type : RESPONSE +12:13:52 Received From : +12:13:52 ============================================================================ +12:13:52 FNo. Len. Field Value +12:13:52 ============================================================================ +12:13:52 [ 1] [ 4] [0810] +12:13:52 [ 7] [ 10] [0320051300] +12:13:52 [ 11] [ 6] [156255] +12:13:52 [ 39] [ 2] [00] +12:13:52 [ 70] [ 3] [301] +12:13:52 ============================================================================ +12:13:52 Calculate Source COMM Id = 2 +12:13:52 ============================================================================ +12:13:52 + + +waiting on router queue for slot.... +12:14:00 ============================================================================ +12:14:00 Slot Id : <191> +12:14:00 Transaction Type : REQUEST +12:14:00 Received From : +12:14:00 ============================================================================ +12:14:00 FNo. Len. Field Value +12:14:00 ============================================================================ +12:14:00 [ 1] [ 4] [0200] +12:14:00 [ 2] [ 16] [6213545000990295] +12:14:00 [ 3] [ 6] [010000] +12:14:00 [ 4] [ 12] [000200000000] +12:14:00 [ 7] [ 10] [0320051307] +12:14:00 [ 11] [ 6] [268955] +12:14:00 [ 12] [ 6] [121307] +12:14:00 [ 13] [ 4] [0320] +12:14:00 [ 14] [ 4] [4912] +12:14:00 [ 15] [ 4] [0320] +12:14:00 [ 18] [ 4] [6011] +12:14:00 [ 19] [ 3] [418] +12:14:00 [ 22] [ 3] [021] +12:14:00 [ 25] [ 2] [01] +12:14:00 [ 28] [ 9] [D00002000] +12:14:00 [ 32] [ 6] [180893] +12:14:00 [ 35] [ 32] [6213545000990295=491212019029226] +12:14:00 [ 37] [ 12] [507905268955] +12:14:00 [ 41] [ 8] [0366SKTT] +12:14:00 [ 42] [ 15] [999999 ] +12:14:00 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:14:00 [ 49] [ 3] [418] +12:14:00 [ 52] [ 16] [949A5A4FEA7909C4] +12:14:00 ============================================================================ +12:14:00 + + +waiting on router queue for slot.... +12:14:00 Sending to : +12:14:00 ============================================================================ +12:14:00 Sending to : +12:14:00 ============================================================================ +12:14:01 ============================================================================ +12:14:01 Slot Id : <191> +12:14:01 Transaction Type : REQUEST +12:14:01 Received From : +12:14:01 ============================================================================ +12:14:01 FNo. Len. Field Value +12:14:01 ============================================================================ +12:14:01 [ 1] [ 4] [0200] +12:14:01 [ 2] [ 16] [6213545000990295] +12:14:01 [ 3] [ 6] [010000] +12:14:01 [ 4] [ 12] [000200000000] +12:14:01 [ 7] [ 10] [0320051307] +12:14:01 [ 11] [ 6] [268955] +12:14:01 [ 12] [ 6] [121307] +12:14:01 [ 13] [ 4] [0320] +12:14:01 [ 14] [ 4] [4912] +12:14:01 [ 15] [ 4] [0320] +12:14:01 [ 18] [ 4] [6011] +12:14:01 [ 19] [ 3] [418] +12:14:01 [ 22] [ 3] [021] +12:14:01 [ 25] [ 2] [01] +12:14:01 [ 28] [ 9] [D00002000] +12:14:01 [ 32] [ 6] [180893] +12:14:01 [ 35] [ 32] [6213545000990295=491212019029226] +12:14:01 [ 37] [ 12] [507905268955] +12:14:01 [ 41] [ 8] [0366SKTT] +12:14:01 [ 42] [ 15] [999999 ] +12:14:01 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:14:01 [ 49] [ 3] [418] +12:14:01 [ 52] [ 16] [949A5A4FEA7909C4] +12:14:01 ============================================================================ +12:14:01 + + +waiting on router queue for slot.... +12:14:01 Sending to : +12:14:01 ============================================================================ +12:14:01 ============================================================================ +12:14:01 Slot Id : <191> +12:14:01 Transaction Type : REQUEST +12:14:01 Received From : +12:14:01 ============================================================================ +12:14:01 FNo. Len. Field Value +12:14:01 ============================================================================ +12:14:01 [ 1] [ 4] [0200] +12:14:01 [ 2] [ 16] [6213545000990295] +12:14:01 [ 3] [ 6] [010000] +12:14:01 [ 4] [ 12] [000200000000] +12:14:01 [ 7] [ 10] [0320051307] +12:14:01 [ 11] [ 6] [268955] +12:14:01 [ 12] [ 6] [121307] +12:14:01 [ 13] [ 4] [0320] +12:14:01 [ 14] [ 4] [4912] +12:14:01 [ 15] [ 4] [0320] +12:14:01 [ 18] [ 4] [6011] +12:14:01 [ 19] [ 3] [418] +12:14:01 [ 22] [ 3] [021] +12:14:01 [ 25] [ 2] [01] +12:14:01 [ 28] [ 9] [D00002000] +12:14:01 [ 32] [ 6] [180893] +12:14:01 [ 35] [ 32] [6213545000990295=491212019029226] +12:14:01 [ 37] [ 12] [507905268955] +12:14:01 [ 41] [ 8] [0366SKTT] +12:14:01 [ 42] [ 15] [999999 ] +12:14:01 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:14:01 [ 49] [ 3] [418] +12:14:01 [ 52] [ 16] [282B16CC3E06E935] +12:14:01 ============================================================================ +12:14:01 + + +waiting on router queue for slot.... +12:14:01 Sending to : <0> +12:14:01 ============================================================================ +12:14:01 ============================================================================ +12:14:01 Slot Id : <191> +12:14:01 Transaction Type : RESPONSE +12:14:01 Received From : +12:14:01 ============================================================================ +12:14:01 FNo. Len. Field Value +12:14:01 ============================================================================ +12:14:01 [ 1] [ 4] [0210] +12:14:01 [ 2] [ 16] [6213545000990295] +12:14:01 [ 3] [ 6] [010000] +12:14:01 [ 4] [ 12] [000200000000] +12:14:01 [ 7] [ 10] [0320051307] +12:14:01 [ 11] [ 6] [268955] +12:14:01 [ 12] [ 6] [121307] +12:14:01 [ 13] [ 4] [0320] +12:14:01 [ 15] [ 4] [0320] +12:14:01 [ 18] [ 4] [6011] +12:14:01 [ 19] [ 3] [418] +12:14:01 [ 22] [ 3] [021] +12:14:01 [ 32] [ 6] [180893] +12:14:01 [ 35] [ 32] [6213545000990295=491212019029226] +12:14:01 [ 37] [ 12] [507905268955] +12:14:01 [ 39] [ 2] [61] +12:14:01 [ 41] [ 8] [0366SKTT] +12:14:01 [ 49] [ 3] [418] +12:14:01 ============================================================================ +12:14:01 Sending to : +12:14:01 ============================================================================ +12:14:01 + + +waiting on router queue for slot.... +12:14:02 ============================================================================ +12:14:02 Slot Id : <191> +12:14:02 Transaction Type : RESPONSE +12:14:02 Received From : +12:14:02 ============================================================================ +12:14:02 FNo. Len. Field Value +12:14:02 ============================================================================ +12:14:02 [ 1] [ 4] [0210] +12:14:02 [ 2] [ 16] [6213545000990295] +12:14:02 [ 3] [ 6] [010000] +12:14:02 [ 4] [ 12] [000200000000] +12:14:02 [ 7] [ 10] [0320051307] +12:14:02 [ 11] [ 6] [268955] +12:14:02 [ 12] [ 6] [121307] +12:14:02 [ 13] [ 4] [0320] +12:14:02 [ 15] [ 4] [0320] +12:14:02 [ 18] [ 4] [6011] +12:14:02 [ 19] [ 3] [418] +12:14:02 [ 22] [ 3] [021] +12:14:02 [ 32] [ 6] [180893] +12:14:02 [ 35] [ 32] [6213545000990295=491212019029226] +12:14:02 [ 37] [ 12] [507905268955] +12:14:02 [ 39] [ 2] [61] +12:14:02 [ 41] [ 8] [0366SKTT] +12:14:02 [ 49] [ 3] [418] +12:14:02 ============================================================================ +12:14:02 Calculate Source COMM Id = 2 +12:14:02 ============================================================================ +12:14:02 + + +waiting on router queue for slot.... +12:14:13 ============================================================================ +12:14:13 Slot Id : <190> +12:14:13 Transaction Type : REQUEST +12:14:13 Received From : +12:14:13 ============================================================================ +12:14:13 FNo. Len. Field Value +12:14:13 ============================================================================ +12:14:13 [ 1] [ 4] [0800] +12:14:13 [ 7] [ 10] [0320051321] +12:14:13 [ 11] [ 6] [156256] +12:14:13 [ 70] [ 3] [301] +12:14:13 ============================================================================ +12:14:13 + + +waiting on router queue for slot.... +12:14:13 Sending to : +12:14:13 ============================================================================ +12:14:13 ============================================================================ +12:14:13 Slot Id : <190> +12:14:13 Transaction Type : RESPONSE +12:14:13 Received From : +12:14:13 ============================================================================ +12:14:13 FNo. Len. Field Value +12:14:13 ============================================================================ +12:14:13 [ 1] [ 4] [0810] +12:14:13 [ 7] [ 10] [0320051321] +12:14:13 [ 11] [ 6] [156256] +12:14:13 [ 39] [ 2] [00] +12:14:13 [ 70] [ 3] [301] +12:14:13 ============================================================================ +12:14:13 Calculate Source COMM Id = 2 +12:14:13 ============================================================================ +12:14:13 + + +waiting on router queue for slot.... +12:14:18 ============================================================================ +12:14:18 Slot Id : <196> +12:14:18 Transaction Type : REQUEST +12:14:18 Received From : +12:14:18 ============================================================================ +12:14:18 FNo. Len. Field Value +12:14:18 ============================================================================ +12:14:18 [ 1] [ 4] [0800] +12:14:18 [ 2] [ 5] [02531] +12:14:18 [ 3] [ 6] [579128] +12:14:18 [ 7] [ 10] [0320051418] +12:14:18 [ 11] [ 6] [807122] +12:14:18 [ 15] [ 10] [0320051418] +12:14:18 [ 37] [ 11] [57912807122] +12:14:18 [ 70] [ 3] [001] +12:14:18 ============================================================================ +12:14:18 + + +waiting on router queue for slot.... +12:14:18 ============================================================================ +12:14:18 Slot Id : <196> +12:14:18 Transaction Type : RESPONSE +12:14:18 Received From : +12:14:18 ============================================================================ +12:14:18 FNo. Len. Field Value +12:14:18 ============================================================================ +12:14:18 [ 1] [ 4] [0810] +12:14:18 [ 7] [ 10] [0320051418] +12:14:18 [ 11] [ 6] [807122] +12:14:18 [ 15] [ 4] [0320] +12:14:18 [ 37] [ 12] [57912807122] +12:14:18 [ 39] [ 2] [00] +12:14:18 [ 70] [ 3] [001] +12:14:18 ============================================================================ +12:14:18 Sending to : +12:14:18 ============================================================================ +12:14:18 + + +waiting on router queue for slot.... +12:14:24 ============================================================================ +12:14:24 Slot Id : <155> +12:14:24 Transaction Type : REQUEST +12:14:24 Received From : +12:14:24 ============================================================================ +12:14:24 FNo. Len. Field Value +12:14:24 ============================================================================ +12:14:24 [ 1] [ 4] [0800] +12:14:24 [ 7] [ 10] [0320051332] +12:14:24 [ 11] [ 6] [156257] +12:14:24 [ 70] [ 3] [301] +12:14:24 ============================================================================ +12:14:24 + + +waiting on router queue for slot.... +12:14:24 Sending to : +12:14:24 ============================================================================ +12:14:24 ============================================================================ +12:14:24 Slot Id : <155> +12:14:24 Transaction Type : RESPONSE +12:14:24 Received From : +12:14:24 ============================================================================ +12:14:24 FNo. Len. Field Value +12:14:24 ============================================================================ +12:14:24 [ 1] [ 4] [0810] +12:14:24 [ 7] [ 10] [0320051332] +12:14:24 [ 11] [ 6] [156257] +12:14:24 [ 39] [ 2] [00] +12:14:24 [ 70] [ 3] [301] +12:14:24 ============================================================================ +12:14:24 Calculate Source COMM Id = 2 +12:14:24 ============================================================================ +12:14:24 + + +waiting on router queue for slot.... +12:14:28 ============================================================================ +12:14:28 Slot Id : <198> +12:14:28 Transaction Type : REQUEST +12:14:28 Received From : +12:14:28 ============================================================================ +12:14:28 FNo. Len. Field Value +12:14:28 ============================================================================ +12:14:28 [ 1] [ 4] [0200] +12:14:28 [ 2] [ 16] [2206990000121269] +12:14:28 [ 3] [ 6] [010000] +12:14:28 [ 4] [ 12] [000020000000] +12:14:28 [ 7] [ 10] [0320121219] +12:14:28 [ 11] [ 6] [943637] +12:14:28 [ 12] [ 6] [121219] +12:14:28 [ 13] [ 4] [0320] +12:14:28 [ 15] [ 4] [0320] +12:14:28 [ 18] [ 4] [6011] +12:14:28 [ 19] [ 3] [418] +12:14:28 [ 22] [ 3] [021] +12:14:28 [ 25] [ 2] [01] +12:14:28 [ 28] [ 9] [D00002000] +12:14:28 [ 32] [ 6] [668899] +12:14:28 [ 35] [ 32] [2206990000121269=980212615591339] +12:14:28 [ 37] [ 12] [507902031661] +12:14:28 [ 41] [ 8] [03018003] +12:14:28 [ 42] [ 15] [APT ] +12:14:28 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:14:28 [ 49] [ 3] [418] +12:14:28 [ 52] [ 16] [A918B48657D48BD1] +12:14:28 ============================================================================ +12:14:28 + + +waiting on router queue for slot.... +12:14:28 Sending to : +12:14:28 ============================================================================ +12:14:28 Sending to : +12:14:28 ============================================================================ +12:14:29 ============================================================================ +12:14:29 Slot Id : <198> +12:14:29 Transaction Type : REQUEST +12:14:29 Received From : +12:14:29 ============================================================================ +12:14:29 FNo. Len. Field Value +12:14:29 ============================================================================ +12:14:29 [ 1] [ 4] [0200] +12:14:29 [ 2] [ 16] [2206990000121269] +12:14:29 [ 3] [ 6] [010000] +12:14:29 [ 4] [ 12] [000020000000] +12:14:29 [ 7] [ 10] [0320121219] +12:14:29 [ 11] [ 6] [943637] +12:14:29 [ 12] [ 6] [121219] +12:14:29 [ 13] [ 4] [0320] +12:14:29 [ 15] [ 4] [0320] +12:14:29 [ 18] [ 4] [6011] +12:14:29 [ 19] [ 3] [418] +12:14:29 [ 22] [ 3] [021] +12:14:29 [ 25] [ 2] [01] +12:14:29 [ 28] [ 9] [D00002000] +12:14:29 [ 32] [ 6] [668899] +12:14:29 [ 35] [ 32] [2206990000121269=980212615591339] +12:14:29 [ 37] [ 12] [507902031661] +12:14:29 [ 41] [ 8] [03018003] +12:14:29 [ 42] [ 15] [APT ] +12:14:29 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:14:29 [ 49] [ 3] [418] +12:14:29 [ 52] [ 16] [A918B48657D48BD1] +12:14:29 ============================================================================ +12:14:29 + + +waiting on router queue for slot.... +12:14:29 Sending to : +12:14:29 ============================================================================ +12:14:29 ============================================================================ +12:14:29 Slot Id : <198> +12:14:29 Transaction Type : REQUEST +12:14:29 Received From : +12:14:29 ============================================================================ +12:14:29 FNo. Len. Field Value +12:14:29 ============================================================================ +12:14:29 [ 1] [ 4] [0200] +12:14:29 [ 2] [ 16] [2206990000121269] +12:14:29 [ 3] [ 6] [010000] +12:14:29 [ 4] [ 12] [000020000000] +12:14:29 [ 7] [ 10] [0320121219] +12:14:29 [ 11] [ 6] [943637] +12:14:29 [ 12] [ 6] [121219] +12:14:29 [ 13] [ 4] [0320] +12:14:29 [ 15] [ 4] [0320] +12:14:29 [ 18] [ 4] [6011] +12:14:29 [ 19] [ 3] [418] +12:14:29 [ 22] [ 3] [021] +12:14:29 [ 25] [ 2] [01] +12:14:29 [ 28] [ 9] [D00002000] +12:14:29 [ 32] [ 6] [668899] +12:14:29 [ 35] [ 32] [2206990000121269=980212615591339] +12:14:29 [ 37] [ 12] [507902031661] +12:14:29 [ 41] [ 8] [03018003] +12:14:29 [ 42] [ 15] [APT ] +12:14:29 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:14:29 [ 49] [ 3] [418] +12:14:29 [ 52] [ 16] [EB390A2CD32ABEDC] +12:14:29 ============================================================================ +12:14:29 + + +waiting on router queue for slot.... +12:14:29 Sending to : <1> +12:14:29 ============================================================================ +12:14:29 ============================================================================ +12:14:29 Slot Id : <198> +12:14:29 Transaction Type : RESPONSE +12:14:29 Received From : +12:14:29 ============================================================================ +12:14:29 FNo. Len. Field Value +12:14:29 ============================================================================ +12:14:29 [ 1] [ 4] [0210] +12:14:29 [ 2] [ 16] [2206990000121269] +12:14:29 [ 3] [ 6] [010000] +12:14:29 [ 4] [ 12] [000020000000] +12:14:29 [ 7] [ 10] [0320121219] +12:14:29 [ 11] [ 6] [943637] +12:14:29 [ 12] [ 6] [121219] +12:14:29 [ 13] [ 4] [0320] +12:14:29 [ 15] [ 4] [0320] +12:14:29 [ 18] [ 4] [6011] +12:14:29 [ 22] [ 3] [021] +12:14:29 [ 32] [ 6] [668899] +12:14:29 [ 35] [ 32] [2206990000121269=980212615591339] +12:14:29 [ 37] [ 12] [507902031661] +12:14:29 [ 38] [ 6] [122217] +12:14:29 [ 39] [ 2] [55] +12:14:29 [ 41] [ 8] [03018003] +12:14:29 [ 49] [ 3] [418] +12:14:29 ============================================================================ +12:14:29 Sending to : +12:14:29 ============================================================================ +12:14:29 + + +waiting on router queue for slot.... +12:14:30 ============================================================================ +12:14:30 Slot Id : <198> +12:14:30 Transaction Type : RESPONSE +12:14:30 Received From : +12:14:30 ============================================================================ +12:14:30 FNo. Len. Field Value +12:14:30 ============================================================================ +12:14:30 [ 1] [ 4] [0210] +12:14:30 [ 2] [ 16] [2206990000121269] +12:14:30 [ 3] [ 6] [010000] +12:14:30 [ 4] [ 12] [000020000000] +12:14:30 [ 7] [ 10] [0320121219] +12:14:30 [ 11] [ 6] [943637] +12:14:30 [ 12] [ 6] [121219] +12:14:30 [ 13] [ 4] [0320] +12:14:30 [ 15] [ 4] [0320] +12:14:30 [ 18] [ 4] [6011] +12:14:30 [ 22] [ 3] [021] +12:14:30 [ 32] [ 6] [668899] +12:14:30 [ 35] [ 32] [2206990000121269=980212615591339] +12:14:30 [ 37] [ 12] [507902031661] +12:14:30 [ 38] [ 6] [122217] +12:14:30 [ 39] [ 2] [55] +12:14:30 [ 41] [ 8] [03018003] +12:14:30 [ 49] [ 3] [418] +12:14:30 ============================================================================ +12:14:30 Calculate Source COMM Id = 4 +12:14:30 ============================================================================ +12:14:30 + + +waiting on router queue for slot.... +12:14:35 ============================================================================ +12:14:35 Slot Id : <181> +12:14:35 Transaction Type : REQUEST +12:14:35 Received From : +12:14:35 ============================================================================ +12:14:35 FNo. Len. Field Value +12:14:35 ============================================================================ +12:14:35 [ 1] [ 4] [0800] +12:14:35 [ 7] [ 10] [0320051343] +12:14:35 [ 11] [ 6] [156258] +12:14:35 [ 70] [ 3] [301] +12:14:35 ============================================================================ +12:14:35 + + +waiting on router queue for slot.... +12:14:35 Sending to : +12:14:35 ============================================================================ +12:14:35 ============================================================================ +12:14:35 Slot Id : <181> +12:14:35 Transaction Type : RESPONSE +12:14:35 Received From : +12:14:35 ============================================================================ +12:14:35 FNo. Len. Field Value +12:14:35 ============================================================================ +12:14:35 [ 1] [ 4] [0810] +12:14:35 [ 7] [ 10] [0320051343] +12:14:35 [ 11] [ 6] [156258] +12:14:35 [ 39] [ 2] [00] +12:14:35 [ 70] [ 3] [301] +12:14:35 ============================================================================ +12:14:35 Calculate Source COMM Id = 2 +12:14:35 ============================================================================ +12:14:35 + + +waiting on router queue for slot.... +12:14:38 ============================================================================ +12:14:38 Slot Id : <201> +12:14:38 Transaction Type : REQUEST +12:14:38 Received From : +12:14:38 ============================================================================ +12:14:38 FNo. Len. Field Value +12:14:38 ============================================================================ +12:14:38 [ 1] [ 4] [0200] +12:14:38 [ 2] [ 16] [6213544002135223] +12:14:38 [ 3] [ 6] [301000] +12:14:38 [ 4] [ 12] [000000000000] +12:14:38 [ 7] [ 10] [0320121459] +12:14:38 [ 11] [ 6] [205347] +12:14:38 [ 12] [ 6] [121643] +12:14:38 [ 13] [ 4] [0320] +12:14:38 [ 14] [ 4] [4912] +12:14:38 [ 15] [ 4] [0320] +12:14:38 [ 18] [ 4] [6011] +12:14:38 [ 19] [ 3] [418] +12:14:38 [ 22] [ 3] [021] +12:14:38 [ 25] [ 2] [01] +12:14:38 [ 28] [ 9] [D00000000] +12:14:38 [ 32] [ 6] [198901] +12:14:38 [ 35] [ 32] [6213544002135223=491212013522973] +12:14:38 [ 37] [ 12] [507912205347] +12:14:38 [ 41] [ 8] [00002222] +12:14:38 [ 42] [ 15] [000000041002222] +12:14:38 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:14:38 [ 49] [ 3] [418] +12:14:38 [ 52] [ 16] [2066AD453DCA8C0D] +12:14:38 ============================================================================ +12:14:38 + + +waiting on router queue for slot.... +12:14:38 Sending to : +12:14:38 ============================================================================ +12:14:38 Sending to : +12:14:38 ============================================================================ +12:14:38 ============================================================================ +12:14:38 Slot Id : <201> +12:14:38 Transaction Type : REQUEST +12:14:38 Received From : +12:14:38 ============================================================================ +12:14:38 FNo. Len. Field Value +12:14:38 ============================================================================ +12:14:38 [ 1] [ 4] [0200] +12:14:38 [ 2] [ 16] [6213544002135223] +12:14:38 [ 3] [ 6] [301000] +12:14:38 [ 4] [ 12] [000000000000] +12:14:38 [ 7] [ 10] [0320121459] +12:14:38 [ 11] [ 6] [205347] +12:14:38 [ 12] [ 6] [121643] +12:14:38 [ 13] [ 4] [0320] +12:14:38 [ 14] [ 4] [4912] +12:14:38 [ 15] [ 4] [0320] +12:14:38 [ 18] [ 4] [6011] +12:14:38 [ 19] [ 3] [418] +12:14:38 [ 22] [ 3] [021] +12:14:38 [ 25] [ 2] [01] +12:14:38 [ 28] [ 9] [D00000000] +12:14:38 [ 32] [ 6] [198901] +12:14:38 [ 35] [ 32] [6213544002135223=491212013522973] +12:14:38 [ 37] [ 12] [507912205347] +12:14:38 [ 41] [ 8] [00002222] +12:14:38 [ 42] [ 15] [000000041002222] +12:14:38 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:14:38 [ 49] [ 3] [418] +12:14:38 [ 52] [ 16] [2066AD453DCA8C0D] +12:14:38 ============================================================================ +12:14:38 + + +waiting on router queue for slot.... +12:14:38 Sending to : +12:14:38 ============================================================================ +12:14:38 ============================================================================ +12:14:38 Slot Id : <201> +12:14:38 Transaction Type : REQUEST +12:14:38 Received From : +12:14:38 ============================================================================ +12:14:38 FNo. Len. Field Value +12:14:38 ============================================================================ +12:14:38 [ 1] [ 4] [0200] +12:14:38 [ 2] [ 16] [6213544002135223] +12:14:38 [ 3] [ 6] [301000] +12:14:38 [ 4] [ 12] [000000000000] +12:14:38 [ 7] [ 10] [0320121459] +12:14:38 [ 11] [ 6] [205347] +12:14:38 [ 12] [ 6] [121643] +12:14:38 [ 13] [ 4] [0320] +12:14:38 [ 14] [ 4] [4912] +12:14:38 [ 15] [ 4] [0320] +12:14:38 [ 18] [ 4] [6011] +12:14:38 [ 19] [ 3] [418] +12:14:38 [ 22] [ 3] [021] +12:14:38 [ 25] [ 2] [01] +12:14:38 [ 28] [ 9] [D00000000] +12:14:38 [ 32] [ 6] [198901] +12:14:38 [ 35] [ 32] [6213544002135223=491212013522973] +12:14:38 [ 37] [ 12] [507912205347] +12:14:38 [ 41] [ 8] [00002222] +12:14:38 [ 42] [ 15] [000000041002222] +12:14:38 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:14:38 [ 49] [ 3] [418] +12:14:38 [ 52] [ 16] [070430F8D90C9785] +12:14:38 ============================================================================ +12:14:38 + + +waiting on router queue for slot.... +12:14:38 Sending to : <0> +12:14:38 ============================================================================ +12:14:39 ============================================================================ +12:14:39 Slot Id : <201> +12:14:39 Transaction Type : RESPONSE +12:14:39 Received From : +12:14:39 ============================================================================ +12:14:39 FNo. Len. Field Value +12:14:39 ============================================================================ +12:14:39 [ 1] [ 4] [0210] +12:14:39 [ 2] [ 16] [6213544002135223] +12:14:39 [ 3] [ 6] [301000] +12:14:39 [ 4] [ 12] [000000000000] +12:14:39 [ 7] [ 10] [0320121459] +12:14:39 [ 11] [ 6] [205347] +12:14:39 [ 12] [ 6] [121643] +12:14:39 [ 13] [ 4] [0320] +12:14:39 [ 15] [ 4] [0320] +12:14:39 [ 18] [ 4] [6011] +12:14:39 [ 19] [ 3] [418] +12:14:39 [ 32] [ 6] [198901] +12:14:39 [ 35] [ 32] [6213544002135223=491212013522973] +12:14:39 [ 37] [ 12] [507912205347] +12:14:39 [ 38] [ 6] [568377] +12:14:39 [ 39] [ 2] [00] +12:14:39 [ 41] [ 8] [00002222] +12:14:39 [ 49] [ 3] [418] +12:14:39 [ 54] [ 40] [1001418C0000057613821002418C000005761382] +12:14:39 ============================================================================ +12:14:39 Sending to : +12:14:39 ============================================================================ +12:14:39 + + +waiting on router queue for slot.... +12:14:40 ============================================================================ +12:14:40 Slot Id : <201> +12:14:40 Transaction Type : RESPONSE +12:14:40 Received From : +12:14:40 ============================================================================ +12:14:40 FNo. Len. Field Value +12:14:40 ============================================================================ +12:14:40 [ 1] [ 4] [0210] +12:14:40 [ 2] [ 16] [6213544002135223] +12:14:40 [ 3] [ 6] [301000] +12:14:40 [ 4] [ 12] [000000000000] +12:14:40 [ 7] [ 10] [0320121459] +12:14:40 [ 11] [ 6] [205347] +12:14:40 [ 12] [ 6] [121643] +12:14:40 [ 13] [ 4] [0320] +12:14:40 [ 15] [ 4] [0320] +12:14:40 [ 18] [ 4] [6011] +12:14:40 [ 19] [ 3] [418] +12:14:40 [ 32] [ 6] [198901] +12:14:40 [ 35] [ 32] [6213544002135223=491212013522973] +12:14:40 [ 37] [ 12] [507912205347] +12:14:40 [ 38] [ 6] [568377] +12:14:40 [ 39] [ 2] [00] +12:14:40 [ 41] [ 8] [00002222] +12:14:40 [ 49] [ 3] [418] +12:14:40 [ 54] [ 40] [1001418C0000057613821002418C000005761382] +12:14:40 ============================================================================ +12:14:40 Calculate Source COMM Id = 5 +12:14:40 ============================================================================ +12:14:40 + + +waiting on router queue for slot.... +12:14:47 ============================================================================ +12:14:47 Slot Id : <214> +12:14:47 Transaction Type : REQUEST +12:14:47 Received From : +12:14:47 ============================================================================ +12:14:47 FNo. Len. Field Value +12:14:47 ============================================================================ +12:14:47 [ 1] [ 4] [0800] +12:14:47 [ 7] [ 10] [0320051355] +12:14:47 [ 11] [ 6] [156259] +12:14:47 [ 70] [ 3] [301] +12:14:47 ============================================================================ +12:14:47 + + +waiting on router queue for slot.... +12:14:47 Sending to : +12:14:47 ============================================================================ +12:14:47 ============================================================================ +12:14:47 Slot Id : <214> +12:14:47 Transaction Type : RESPONSE +12:14:47 Received From : +12:14:47 ============================================================================ +12:14:47 FNo. Len. Field Value +12:14:47 ============================================================================ +12:14:47 [ 1] [ 4] [0810] +12:14:47 [ 7] [ 10] [0320051355] +12:14:47 [ 11] [ 6] [156259] +12:14:47 [ 39] [ 2] [00] +12:14:47 [ 70] [ 3] [301] +12:14:47 ============================================================================ +12:14:47 Calculate Source COMM Id = 2 +12:14:47 ============================================================================ +12:14:47 + + +waiting on router queue for slot.... +12:14:54 ============================================================================ +12:14:54 Slot Id : <194> +12:14:54 Transaction Type : REQUEST +12:14:54 Received From : +12:14:54 ============================================================================ +12:14:54 FNo. Len. Field Value +12:14:54 ============================================================================ +12:14:54 [ 1] [ 4] [0800] +12:14:54 [ 7] [ 10] [0320052242] +12:14:54 [ 11] [ 6] [023890] +12:14:54 [ 37] [ 12] [57912023890] +12:14:54 [ 70] [ 3] [301] +12:14:54 ============================================================================ +12:14:54 + + +waiting on router queue for slot.... +12:14:54 Sending to : +12:14:54 ============================================================================ +12:14:54 ============================================================================ +12:14:54 Slot Id : <194> +12:14:54 Transaction Type : RESPONSE +12:14:54 Received From : +12:14:54 ============================================================================ +12:14:54 FNo. Len. Field Value +12:14:54 ============================================================================ +12:14:54 [ 1] [ 4] [0810] +12:14:54 [ 7] [ 10] [0320052242] +12:14:54 [ 11] [ 6] [023890] +12:14:54 [ 37] [ 12] [579120238900] +12:14:54 [ 39] [ 2] [00] +12:14:54 [ 70] [ 3] [810] +12:14:54 ============================================================================ +12:14:54 Calculate Source COMM Id = 1 +12:14:54 ============================================================================ +12:14:54 + + +waiting on router queue for slot.... +12:14:58 ============================================================================ +12:14:58 Slot Id : <165> +12:14:58 Transaction Type : REQUEST +12:14:58 Received From : +12:14:58 ============================================================================ +12:14:58 FNo. Len. Field Value +12:14:58 ============================================================================ +12:14:58 [ 1] [ 4] [0800] +12:14:58 [ 7] [ 10] [0320051406] +12:14:58 [ 11] [ 6] [156260] +12:14:58 [ 70] [ 3] [301] +12:14:58 ============================================================================ +12:14:58 + + +waiting on router queue for slot.... +12:14:58 Sending to : +12:14:58 ============================================================================ +12:14:58 ============================================================================ +12:14:58 Slot Id : <165> +12:14:58 Transaction Type : RESPONSE +12:14:58 Received From : +12:14:58 ============================================================================ +12:14:58 FNo. Len. Field Value +12:14:58 ============================================================================ +12:14:58 [ 1] [ 4] [0810] +12:14:58 [ 7] [ 10] [0320051406] +12:14:58 [ 11] [ 6] [156260] +12:14:58 [ 39] [ 2] [00] +12:14:58 [ 70] [ 3] [301] +12:14:58 ============================================================================ +12:14:58 Calculate Source COMM Id = 2 +12:14:58 ============================================================================ +12:14:58 + + +waiting on router queue for slot.... +12:15:00 ============================================================================ +12:15:00 Slot Id : <195> +12:15:00 Transaction Type : REQUEST +12:15:00 Received From : +12:15:00 ============================================================================ +12:15:00 FNo. Len. Field Value +12:15:00 ============================================================================ +12:15:00 [ 1] [ 4] [0200] +12:15:00 [ 2] [ 16] [6213544002135223] +12:15:00 [ 3] [ 6] [011000] +12:15:00 [ 4] [ 12] [000005000000] +12:15:00 [ 7] [ 10] [0320121521] +12:15:00 [ 11] [ 6] [205354] +12:15:00 [ 12] [ 6] [121704] +12:15:00 [ 13] [ 4] [0320] +12:15:00 [ 14] [ 4] [4912] +12:15:00 [ 15] [ 4] [0320] +12:15:00 [ 18] [ 4] [6011] +12:15:00 [ 19] [ 3] [418] +12:15:00 [ 22] [ 3] [021] +12:15:00 [ 25] [ 2] [01] +12:15:00 [ 28] [ 9] [D00002000] +12:15:00 [ 32] [ 6] [198901] +12:15:00 [ 35] [ 32] [6213544002135223=491212013522973] +12:15:00 [ 37] [ 12] [507912205354] +12:15:00 [ 41] [ 8] [00002222] +12:15:00 [ 42] [ 15] [000000041002222] +12:15:00 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:15:00 [ 49] [ 3] [418] +12:15:00 [ 52] [ 16] [2066AD453DCA8C0D] +12:15:00 ============================================================================ +12:15:00 + + +waiting on router queue for slot.... +12:15:00 Sending to : +12:15:00 ============================================================================ +12:15:00 Sending to : +12:15:00 ============================================================================ +12:15:00 ============================================================================ +12:15:00 Slot Id : <195> +12:15:00 Transaction Type : REQUEST +12:15:00 Received From : +12:15:00 ============================================================================ +12:15:00 FNo. Len. Field Value +12:15:00 ============================================================================ +12:15:00 [ 1] [ 4] [0200] +12:15:00 [ 2] [ 16] [6213544002135223] +12:15:00 [ 3] [ 6] [011000] +12:15:00 [ 4] [ 12] [000005000000] +12:15:00 [ 7] [ 10] [0320121521] +12:15:00 [ 11] [ 6] [205354] +12:15:00 [ 12] [ 6] [121704] +12:15:00 [ 13] [ 4] [0320] +12:15:00 [ 14] [ 4] [4912] +12:15:00 [ 15] [ 4] [0320] +12:15:00 [ 18] [ 4] [6011] +12:15:00 [ 19] [ 3] [418] +12:15:00 [ 22] [ 3] [021] +12:15:00 [ 25] [ 2] [01] +12:15:00 [ 28] [ 9] [D00002000] +12:15:00 [ 32] [ 6] [198901] +12:15:00 [ 35] [ 32] [6213544002135223=491212013522973] +12:15:00 [ 37] [ 12] [507912205354] +12:15:00 [ 41] [ 8] [00002222] +12:15:00 [ 42] [ 15] [000000041002222] +12:15:00 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:15:00 [ 49] [ 3] [418] +12:15:00 [ 52] [ 16] [2066AD453DCA8C0D] +12:15:00 ============================================================================ +12:15:00 + + +waiting on router queue for slot.... +12:15:00 Sending to : +12:15:00 ============================================================================ +12:15:00 ============================================================================ +12:15:00 Slot Id : <195> +12:15:00 Transaction Type : REQUEST +12:15:00 Received From : +12:15:00 ============================================================================ +12:15:00 FNo. Len. Field Value +12:15:00 ============================================================================ +12:15:00 [ 1] [ 4] [0200] +12:15:00 [ 2] [ 16] [6213544002135223] +12:15:00 [ 3] [ 6] [011000] +12:15:00 [ 4] [ 12] [000005000000] +12:15:00 [ 7] [ 10] [0320121521] +12:15:00 [ 11] [ 6] [205354] +12:15:00 [ 12] [ 6] [121704] +12:15:00 [ 13] [ 4] [0320] +12:15:00 [ 14] [ 4] [4912] +12:15:00 [ 15] [ 4] [0320] +12:15:00 [ 18] [ 4] [6011] +12:15:00 [ 19] [ 3] [418] +12:15:00 [ 22] [ 3] [021] +12:15:00 [ 25] [ 2] [01] +12:15:00 [ 28] [ 9] [D00002000] +12:15:00 [ 32] [ 6] [198901] +12:15:00 [ 35] [ 32] [6213544002135223=491212013522973] +12:15:00 [ 37] [ 12] [507912205354] +12:15:00 [ 41] [ 8] [00002222] +12:15:00 [ 42] [ 15] [000000041002222] +12:15:00 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:15:00 [ 49] [ 3] [418] +12:15:00 [ 52] [ 16] [070430F8D90C9785] +12:15:00 ============================================================================ +12:15:00 + + +waiting on router queue for slot.... +12:15:00 Sending to : <0> +12:15:00 ============================================================================ +12:15:01 ============================================================================ +12:15:01 Slot Id : <195> +12:15:01 Transaction Type : RESPONSE +12:15:01 Received From : +12:15:01 ============================================================================ +12:15:01 FNo. Len. Field Value +12:15:01 ============================================================================ +12:15:01 [ 1] [ 4] [0210] +12:15:01 [ 2] [ 16] [6213544002135223] +12:15:01 [ 3] [ 6] [011000] +12:15:01 [ 4] [ 12] [000005000000] +12:15:01 [ 7] [ 10] [0320121521] +12:15:01 [ 11] [ 6] [205354] +12:15:01 [ 12] [ 6] [121704] +12:15:01 [ 13] [ 4] [0320] +12:15:01 [ 15] [ 4] [0320] +12:15:01 [ 18] [ 4] [6011] +12:15:01 [ 19] [ 3] [418] +12:15:01 [ 32] [ 6] [198901] +12:15:01 [ 35] [ 32] [6213544002135223=491212013522973] +12:15:01 [ 37] [ 12] [507912205354] +12:15:01 [ 38] [ 6] [205354] +12:15:01 [ 39] [ 2] [51] +12:15:01 [ 41] [ 8] [00002222] +12:15:01 [ 49] [ 3] [418] +12:15:01 [ 54] [ 40] [1001418C0000057613821002418C000005761382] +12:15:01 ============================================================================ +12:15:01 Sending to : +12:15:01 ============================================================================ +12:15:01 + + +waiting on router queue for slot.... +12:15:02 ============================================================================ +12:15:02 Slot Id : <195> +12:15:02 Transaction Type : RESPONSE +12:15:02 Received From : +12:15:02 ============================================================================ +12:15:02 FNo. Len. Field Value +12:15:02 ============================================================================ +12:15:02 [ 1] [ 4] [0210] +12:15:02 [ 2] [ 16] [6213544002135223] +12:15:02 [ 3] [ 6] [011000] +12:15:02 [ 4] [ 12] [000005000000] +12:15:02 [ 7] [ 10] [0320121521] +12:15:02 [ 11] [ 6] [205354] +12:15:02 [ 12] [ 6] [121704] +12:15:02 [ 13] [ 4] [0320] +12:15:02 [ 15] [ 4] [0320] +12:15:02 [ 18] [ 4] [6011] +12:15:02 [ 19] [ 3] [418] +12:15:02 [ 32] [ 6] [198901] +12:15:02 [ 35] [ 32] [6213544002135223=491212013522973] +12:15:02 [ 37] [ 12] [507912205354] +12:15:02 [ 38] [ 6] [205354] +12:15:02 [ 39] [ 2] [51] +12:15:02 [ 41] [ 8] [00002222] +12:15:02 [ 49] [ 3] [418] +12:15:02 [ 54] [ 40] [1001418C0000057613821002418C000005761382] +12:15:02 ============================================================================ +12:15:02 Calculate Source COMM Id = 5 +12:15:02 ============================================================================ +12:15:02 + + +waiting on router queue for slot.... +12:15:02 ============================================================================ +12:15:02 Slot Id : <209> +12:15:02 Transaction Type : REQUEST +12:15:02 Received From : +12:15:02 ============================================================================ +12:15:02 FNo. Len. Field Value +12:15:02 ============================================================================ +12:15:02 [ 1] [ 4] [0200] +12:15:02 [ 2] [ 16] [2206990000046482] +12:15:02 [ 3] [ 6] [011000] +12:15:02 [ 4] [ 12] [000100000000] +12:15:02 [ 7] [ 10] [0320121458] +12:15:02 [ 11] [ 6] [741975] +12:15:02 [ 12] [ 6] [121458] +12:15:02 [ 13] [ 4] [0320] +12:15:02 [ 15] [ 4] [0320] +12:15:02 [ 18] [ 4] [6011] +12:15:02 [ 22] [ 3] [900] +12:15:02 [ 25] [ 2] [02] +12:15:02 [ 28] [ 9] [D00002000] +12:15:02 [ 32] [ 6] [621354] +12:15:02 [ 35] [ 32] [2206990000046482=970212610863764] +12:15:02 [ 37] [ 12] [507903863258] +12:15:02 [ 41] [ 8] [01010200] +12:15:02 [ 42] [ 15] [NATIVE ] +12:15:02 [ 43] [ 40] [Thangone Market Xaythany LAO] +12:15:02 [ 49] [ 3] [418] +12:15:02 [ 52] [ 16] [A5A0520A568D6B56] +12:15:02 ============================================================================ +12:15:02 + + +waiting on router queue for slot.... +12:15:02 Sending to : +12:15:02 ============================================================================ +12:15:02 Sending to : +12:15:02 ============================================================================ +12:15:03 ============================================================================ +12:15:03 Slot Id : <209> +12:15:03 Transaction Type : REQUEST +12:15:03 Received From : +12:15:03 ============================================================================ +12:15:03 FNo. Len. Field Value +12:15:03 ============================================================================ +12:15:03 [ 1] [ 4] [0200] +12:15:03 [ 2] [ 16] [2206990000046482] +12:15:03 [ 3] [ 6] [011000] +12:15:03 [ 4] [ 12] [000100000000] +12:15:03 [ 7] [ 10] [0320121458] +12:15:03 [ 11] [ 6] [741975] +12:15:03 [ 12] [ 6] [121458] +12:15:03 [ 13] [ 4] [0320] +12:15:03 [ 15] [ 4] [0320] +12:15:03 [ 18] [ 4] [6011] +12:15:03 [ 22] [ 3] [900] +12:15:03 [ 25] [ 2] [02] +12:15:03 [ 28] [ 9] [D00002000] +12:15:03 [ 32] [ 6] [621354] +12:15:03 [ 35] [ 32] [2206990000046482=970212610863764] +12:15:03 [ 37] [ 12] [507903863258] +12:15:03 [ 41] [ 8] [01010200] +12:15:03 [ 42] [ 15] [NATIVE ] +12:15:03 [ 43] [ 40] [Thangone Market Xaythany LAO] +12:15:03 [ 49] [ 3] [418] +12:15:03 [ 52] [ 16] [A5A0520A568D6B56] +12:15:03 ============================================================================ +12:15:03 + + +waiting on router queue for slot.... +12:15:03 Sending to : +12:15:03 ============================================================================ +12:15:03 ============================================================================ +12:15:03 Slot Id : <209> +12:15:03 Transaction Type : REQUEST +12:15:03 Received From : +12:15:03 ============================================================================ +12:15:03 FNo. Len. Field Value +12:15:03 ============================================================================ +12:15:03 [ 1] [ 4] [0200] +12:15:03 [ 2] [ 16] [2206990000046482] +12:15:03 [ 3] [ 6] [011000] +12:15:03 [ 4] [ 12] [000100000000] +12:15:03 [ 7] [ 10] [0320121458] +12:15:03 [ 11] [ 6] [741975] +12:15:03 [ 12] [ 6] [121458] +12:15:03 [ 13] [ 4] [0320] +12:15:03 [ 15] [ 4] [0320] +12:15:03 [ 18] [ 4] [6011] +12:15:03 [ 22] [ 3] [900] +12:15:03 [ 25] [ 2] [02] +12:15:03 [ 28] [ 9] [D00002000] +12:15:03 [ 32] [ 6] [621354] +12:15:03 [ 35] [ 32] [2206990000046482=970212610863764] +12:15:03 [ 37] [ 12] [507903863258] +12:15:03 [ 41] [ 8] [01010200] +12:15:03 [ 42] [ 15] [NATIVE ] +12:15:03 [ 43] [ 40] [Thangone Market Xaythany LAO] +12:15:03 [ 49] [ 3] [418] +12:15:03 [ 52] [ 16] [B4B67F09C6EEEE63] +12:15:03 ============================================================================ +12:15:03 + + +waiting on router queue for slot.... +12:15:03 Sending to : <1> +12:15:03 ============================================================================ +12:15:05 ============================================================================ +12:15:05 Slot Id : <209> +12:15:05 Transaction Type : RESPONSE +12:15:05 Received From : +12:15:05 ============================================================================ +12:15:05 FNo. Len. Field Value +12:15:05 ============================================================================ +12:15:05 [ 1] [ 4] [0210] +12:15:05 [ 2] [ 16] [2206990000046482] +12:15:05 [ 3] [ 6] [011000] +12:15:05 [ 4] [ 12] [000100000000] +12:15:05 [ 7] [ 10] [0320121458] +12:15:05 [ 11] [ 6] [741975] +12:15:05 [ 12] [ 6] [121458] +12:15:05 [ 13] [ 4] [0320] +12:15:05 [ 15] [ 4] [0320] +12:15:05 [ 18] [ 4] [6011] +12:15:05 [ 32] [ 6] [621354] +12:15:05 [ 35] [ 32] [2206990000046482=970212610863764] +12:15:05 [ 37] [ 12] [507903863258] +12:15:05 [ 38] [ 6] [289036] +12:15:05 [ 39] [ 2] [00] +12:15:05 [ 41] [ 8] [01010200] +12:15:05 [ 49] [ 3] [418] +12:15:05 [ 54] [ 40] [1001418C0024208750001002418C002420875000] +12:15:05 ============================================================================ +12:15:05 Sending to : +12:15:05 ============================================================================ +12:15:05 + + +waiting on router queue for slot.... +12:15:06 ============================================================================ +12:15:06 Slot Id : <209> +12:15:06 Transaction Type : RESPONSE +12:15:06 Received From : +12:15:06 ============================================================================ +12:15:06 FNo. Len. Field Value +12:15:06 ============================================================================ +12:15:06 [ 1] [ 4] [0210] +12:15:06 [ 2] [ 16] [2206990000046482] +12:15:06 [ 3] [ 6] [011000] +12:15:06 [ 4] [ 12] [000100000000] +12:15:06 [ 7] [ 10] [0320121458] +12:15:06 [ 11] [ 6] [741975] +12:15:06 [ 12] [ 6] [121458] +12:15:06 [ 13] [ 4] [0320] +12:15:06 [ 15] [ 4] [0320] +12:15:06 [ 18] [ 4] [6011] +12:15:06 [ 32] [ 6] [621354] +12:15:06 [ 35] [ 32] [2206990000046482=970212610863764] +12:15:06 [ 37] [ 12] [507903863258] +12:15:06 [ 38] [ 6] [289036] +12:15:06 [ 39] [ 2] [00] +12:15:06 [ 41] [ 8] [01010200] +12:15:06 [ 49] [ 3] [418] +12:15:06 [ 54] [ 40] [1001418C0024208750001002418C002420875000] +12:15:06 ============================================================================ +12:15:06 Calculate Source COMM Id = 0 +12:15:06 ============================================================================ +12:15:06 + + +waiting on router queue for slot.... +12:15:09 ============================================================================ +12:15:09 Slot Id : <184> +12:15:09 Transaction Type : REQUEST +12:15:09 Received From : +12:15:09 ============================================================================ +12:15:09 FNo. Len. Field Value +12:15:09 ============================================================================ +12:15:09 [ 1] [ 4] [0200] +12:15:09 [ 2] [ 16] [2206990000121269] +12:15:09 [ 3] [ 6] [010000] +12:15:09 [ 4] [ 12] [000020000000] +12:15:09 [ 7] [ 10] [0320121259] +12:15:09 [ 11] [ 6] [943668] +12:15:09 [ 12] [ 6] [121259] +12:15:09 [ 13] [ 4] [0320] +12:15:09 [ 15] [ 4] [0320] +12:15:09 [ 18] [ 4] [6011] +12:15:09 [ 19] [ 3] [418] +12:15:09 [ 22] [ 3] [021] +12:15:09 [ 25] [ 2] [01] +12:15:09 [ 28] [ 9] [D00002000] +12:15:09 [ 32] [ 6] [668899] +12:15:09 [ 35] [ 32] [2206990000121269=980212615591339] +12:15:09 [ 37] [ 12] [507902031663] +12:15:09 [ 41] [ 8] [03018003] +12:15:09 [ 42] [ 15] [APT ] +12:15:09 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:15:09 [ 49] [ 3] [418] +12:15:09 [ 52] [ 16] [BCEA1A0CC25B6BF6] +12:15:09 ============================================================================ +12:15:09 + + +waiting on router queue for slot.... +12:15:09 Sending to : +12:15:09 ============================================================================ +12:15:09 Sending to : +12:15:09 ============================================================================ +12:15:09 ============================================================================ +12:15:09 Slot Id : <184> +12:15:09 Transaction Type : REQUEST +12:15:09 Received From : +12:15:09 ============================================================================ +12:15:09 FNo. Len. Field Value +12:15:09 ============================================================================ +12:15:09 [ 1] [ 4] [0200] +12:15:09 [ 2] [ 16] [2206990000121269] +12:15:09 [ 3] [ 6] [010000] +12:15:09 [ 4] [ 12] [000020000000] +12:15:09 [ 7] [ 10] [0320121259] +12:15:09 [ 11] [ 6] [943668] +12:15:09 [ 12] [ 6] [121259] +12:15:09 [ 13] [ 4] [0320] +12:15:09 [ 15] [ 4] [0320] +12:15:09 [ 18] [ 4] [6011] +12:15:09 [ 19] [ 3] [418] +12:15:09 [ 22] [ 3] [021] +12:15:09 [ 25] [ 2] [01] +12:15:09 [ 28] [ 9] [D00002000] +12:15:09 [ 32] [ 6] [668899] +12:15:09 [ 35] [ 32] [2206990000121269=980212615591339] +12:15:09 [ 37] [ 12] [507902031663] +12:15:09 [ 41] [ 8] [03018003] +12:15:09 [ 42] [ 15] [APT ] +12:15:09 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:15:09 [ 49] [ 3] [418] +12:15:09 [ 52] [ 16] [BCEA1A0CC25B6BF6] +12:15:09 ============================================================================ +12:15:09 + + +waiting on router queue for slot.... +12:15:09 Sending to : +12:15:09 ============================================================================ +12:15:09 ============================================================================ +12:15:09 Slot Id : <184> +12:15:09 Transaction Type : REQUEST +12:15:09 Received From : +12:15:09 ============================================================================ +12:15:09 FNo. Len. Field Value +12:15:09 ============================================================================ +12:15:09 [ 1] [ 4] [0200] +12:15:09 [ 2] [ 16] [2206990000121269] +12:15:09 [ 3] [ 6] [010000] +12:15:09 [ 4] [ 12] [000020000000] +12:15:09 [ 7] [ 10] [0320121259] +12:15:09 [ 11] [ 6] [943668] +12:15:09 [ 12] [ 6] [121259] +12:15:09 [ 13] [ 4] [0320] +12:15:09 [ 15] [ 4] [0320] +12:15:09 [ 18] [ 4] [6011] +12:15:09 [ 19] [ 3] [418] +12:15:09 [ 22] [ 3] [021] +12:15:09 [ 25] [ 2] [01] +12:15:09 [ 28] [ 9] [D00002000] +12:15:09 [ 32] [ 6] [668899] +12:15:09 [ 35] [ 32] [2206990000121269=980212615591339] +12:15:09 [ 37] [ 12] [507902031663] +12:15:09 [ 41] [ 8] [03018003] +12:15:09 [ 42] [ 15] [APT ] +12:15:09 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:15:09 [ 49] [ 3] [418] +12:15:09 [ 52] [ 16] [EE1B4D3967DFCEEF] +12:15:09 ============================================================================ +12:15:09 + + +waiting on router queue for slot.... +12:15:09 Sending to : <1> +12:15:09 ============================================================================ +12:15:10 ============================================================================ +12:15:10 Slot Id : <178> +12:15:10 Transaction Type : REQUEST +12:15:10 Received From : +12:15:10 ============================================================================ +12:15:10 FNo. Len. Field Value +12:15:10 ============================================================================ +12:15:10 [ 1] [ 4] [0800] +12:15:10 [ 7] [ 10] [0320051418] +12:15:10 [ 11] [ 6] [156261] +12:15:10 [ 70] [ 3] [301] +12:15:10 ============================================================================ +12:15:10 + + +waiting on router queue for slot.... +12:15:10 Sending to : +12:15:10 ============================================================================ +12:15:10 ============================================================================ +12:15:10 Slot Id : <178> +12:15:10 Transaction Type : RESPONSE +12:15:10 Received From : +12:15:10 ============================================================================ +12:15:10 FNo. Len. Field Value +12:15:10 ============================================================================ +12:15:10 [ 1] [ 4] [0810] +12:15:10 [ 7] [ 10] [0320051418] +12:15:10 [ 11] [ 6] [156261] +12:15:10 [ 39] [ 2] [00] +12:15:10 [ 70] [ 3] [301] +12:15:10 ============================================================================ +12:15:10 Calculate Source COMM Id = 2 +12:15:10 ============================================================================ +12:15:10 + + +waiting on router queue for slot.... +12:15:11 ============================================================================ +12:15:11 Slot Id : <184> +12:15:11 Transaction Type : RESPONSE +12:15:11 Received From : +12:15:11 ============================================================================ +12:15:11 FNo. Len. Field Value +12:15:11 ============================================================================ +12:15:11 [ 1] [ 4] [0210] +12:15:11 [ 2] [ 16] [2206990000121269] +12:15:11 [ 3] [ 6] [010000] +12:15:11 [ 4] [ 12] [000020000000] +12:15:11 [ 7] [ 10] [0320121259] +12:15:11 [ 11] [ 6] [943668] +12:15:11 [ 12] [ 6] [121259] +12:15:11 [ 13] [ 4] [0320] +12:15:11 [ 15] [ 4] [0320] +12:15:11 [ 18] [ 4] [6011] +12:15:11 [ 32] [ 6] [668899] +12:15:11 [ 35] [ 32] [2206990000121269=980212615591339] +12:15:11 [ 37] [ 12] [507902031663] +12:15:11 [ 38] [ 6] [] +12:15:11 [ 39] [ 2] [51] +12:15:11 [ 41] [ 8] [03018003] +12:15:11 [ 49] [ 3] [418] +12:15:11 ============================================================================ +12:15:11 Sending to : +12:15:11 ============================================================================ +12:15:11 + + +waiting on router queue for slot.... +12:15:12 ============================================================================ +12:15:12 Slot Id : <184> +12:15:12 Transaction Type : RESPONSE +12:15:12 Received From : +12:15:12 ============================================================================ +12:15:12 FNo. Len. Field Value +12:15:12 ============================================================================ +12:15:12 [ 1] [ 4] [0210] +12:15:12 [ 2] [ 16] [2206990000121269] +12:15:12 [ 3] [ 6] [010000] +12:15:12 [ 4] [ 12] [000020000000] +12:15:12 [ 7] [ 10] [0320121259] +12:15:12 [ 11] [ 6] [943668] +12:15:12 [ 12] [ 6] [121259] +12:15:12 [ 13] [ 4] [0320] +12:15:12 [ 15] [ 4] [0320] +12:15:12 [ 18] [ 4] [6011] +12:15:12 [ 32] [ 6] [668899] +12:15:12 [ 35] [ 32] [2206990000121269=980212615591339] +12:15:12 [ 37] [ 12] [507902031663] +12:15:12 [ 38] [ 6] [] +12:15:12 [ 39] [ 2] [51] +12:15:12 [ 41] [ 8] [03018003] +12:15:12 [ 49] [ 3] [418] +12:15:12 ============================================================================ +12:15:12 Calculate Source COMM Id = 4 +12:15:12 ============================================================================ +12:15:12 + + +waiting on router queue for slot.... +12:15:19 ============================================================================ +12:15:19 Slot Id : <213> +12:15:19 Transaction Type : REQUEST +12:15:19 Received From : +12:15:19 ============================================================================ +12:15:19 FNo. Len. Field Value +12:15:19 ============================================================================ +12:15:19 [ 1] [ 4] [0200] +12:15:19 [ 2] [ 16] [1808930200021590] +12:15:19 [ 3] [ 6] [011000] +12:15:19 [ 4] [ 12] [000020000000] +12:15:19 [ 7] [ 10] [0320121515] +12:15:19 [ 11] [ 6] [742042] +12:15:19 [ 12] [ 6] [121515] +12:15:19 [ 13] [ 4] [0320] +12:15:19 [ 15] [ 4] [0320] +12:15:19 [ 18] [ 4] [6011] +12:15:19 [ 22] [ 3] [900] +12:15:19 [ 25] [ 2] [02] +12:15:19 [ 28] [ 9] [D00002000] +12:15:19 [ 32] [ 6] [621354] +12:15:19 [ 35] [ 27] [1808930200021590=1803500348] +12:15:19 [ 37] [ 12] [507902381798] +12:15:19 [ 41] [ 8] [01006300] +12:15:19 [ 42] [ 15] [NATIVE ] +12:15:19 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +12:15:19 [ 49] [ 3] [418] +12:15:19 [ 52] [ 16] [39CCB237794B163D] +12:15:19 ============================================================================ +12:15:19 + + +waiting on router queue for slot.... +12:15:19 Sending to : +12:15:19 ============================================================================ +12:15:19 Sending to : +12:15:19 ============================================================================ +12:15:20 ============================================================================ +12:15:20 Slot Id : <213> +12:15:20 Transaction Type : REQUEST +12:15:20 Received From : +12:15:20 ============================================================================ +12:15:20 FNo. Len. Field Value +12:15:20 ============================================================================ +12:15:20 [ 1] [ 4] [0200] +12:15:20 [ 2] [ 16] [1808930200021590] +12:15:20 [ 3] [ 6] [011000] +12:15:20 [ 4] [ 12] [000020000000] +12:15:20 [ 7] [ 10] [0320121515] +12:15:20 [ 11] [ 6] [742042] +12:15:20 [ 12] [ 6] [121515] +12:15:20 [ 13] [ 4] [0320] +12:15:20 [ 15] [ 4] [0320] +12:15:20 [ 18] [ 4] [6011] +12:15:20 [ 22] [ 3] [900] +12:15:20 [ 25] [ 2] [02] +12:15:20 [ 28] [ 9] [D00002000] +12:15:20 [ 32] [ 6] [621354] +12:15:20 [ 35] [ 27] [1808930200021590=1803500348] +12:15:20 [ 37] [ 12] [507902381798] +12:15:20 [ 41] [ 8] [01006300] +12:15:20 [ 42] [ 15] [NATIVE ] +12:15:20 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +12:15:20 [ 49] [ 3] [418] +12:15:20 [ 52] [ 16] [39CCB237794B163D] +12:15:20 ============================================================================ +12:15:20 + + +waiting on router queue for slot.... +12:15:20 Sending to : +12:15:20 ============================================================================ +12:15:20 ============================================================================ +12:15:20 Slot Id : <213> +12:15:20 Transaction Type : REQUEST +12:15:20 Received From : +12:15:20 ============================================================================ +12:15:20 FNo. Len. Field Value +12:15:20 ============================================================================ +12:15:20 [ 1] [ 4] [0200] +12:15:20 [ 2] [ 16] [1808930200021590] +12:15:20 [ 3] [ 6] [011000] +12:15:20 [ 4] [ 12] [000020000000] +12:15:20 [ 7] [ 10] [0320121515] +12:15:20 [ 11] [ 6] [742042] +12:15:20 [ 12] [ 6] [121515] +12:15:20 [ 13] [ 4] [0320] +12:15:20 [ 15] [ 4] [0320] +12:15:20 [ 18] [ 4] [6011] +12:15:20 [ 22] [ 3] [900] +12:15:20 [ 25] [ 2] [02] +12:15:20 [ 28] [ 9] [D00002000] +12:15:20 [ 32] [ 6] [621354] +12:15:20 [ 35] [ 27] [1808930200021590=1803500348] +12:15:20 [ 37] [ 12] [507902381798] +12:15:20 [ 41] [ 8] [01006300] +12:15:20 [ 42] [ 15] [NATIVE ] +12:15:20 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +12:15:20 [ 49] [ 3] [418] +12:15:20 [ 52] [ 16] [C17066D41B507F83] +12:15:20 ============================================================================ +12:15:20 + + +waiting on router queue for slot.... +12:15:20 Sending to : <2> +12:15:20 ============================================================================ +12:15:20 ============================================================================ +12:15:20 Slot Id : <206> +12:15:20 Transaction Type : REQUEST +12:15:20 Received From : +12:15:20 ============================================================================ +12:15:20 FNo. Len. Field Value +12:15:20 ============================================================================ +12:15:20 [ 1] [ 4] [0800] +12:15:20 [ 2] [ 5] [02531] +12:15:20 [ 3] [ 6] [579128] +12:15:20 [ 7] [ 10] [0320051520] +12:15:20 [ 11] [ 6] [807123] +12:15:20 [ 15] [ 10] [0320051520] +12:15:20 [ 37] [ 11] [57912807123] +12:15:20 [ 70] [ 3] [001] +12:15:20 ============================================================================ +12:15:20 + + +waiting on router queue for slot.... +12:15:20 ============================================================================ +12:15:20 Slot Id : <206> +12:15:20 Transaction Type : RESPONSE +12:15:20 Received From : +12:15:20 ============================================================================ +12:15:20 FNo. Len. Field Value +12:15:20 ============================================================================ +12:15:20 [ 1] [ 4] [0810] +12:15:20 [ 7] [ 10] [0320051520] +12:15:20 [ 11] [ 6] [807123] +12:15:20 [ 15] [ 4] [0320] +12:15:20 [ 37] [ 12] [57912807123] +12:15:20 [ 39] [ 2] [00] +12:15:20 [ 70] [ 3] [001] +12:15:20 ============================================================================ +12:15:20 Sending to : +12:15:20 ============================================================================ +12:15:20 + + +waiting on router queue for slot.... +12:15:23 ============================================================================ +12:15:23 Slot Id : <213> +12:15:23 Transaction Type : RESPONSE +12:15:23 Received From : +12:15:23 ============================================================================ +12:15:23 FNo. Len. Field Value +12:15:23 ============================================================================ +12:15:23 [ 1] [ 4] [0210] +12:15:23 [ 2] [ 16] [1808930200021590] +12:15:23 [ 3] [ 6] [011000] +12:15:23 [ 4] [ 12] [000020000000] +12:15:23 [ 6] [ 12] [000020000000] +12:15:23 [ 7] [ 10] [0320121515] +12:15:23 [ 11] [ 6] [742042] +12:15:23 [ 12] [ 6] [121515] +12:15:23 [ 13] [ 4] [0320] +12:15:23 [ 18] [ 4] [6011] +12:15:23 [ 19] [ 3] [418] +12:15:23 [ 22] [ 3] [021] +12:15:23 [ 32] [ 6] [621354] +12:15:23 [ 35] [ 27] [1808930200021590=1803500348] +12:15:23 [ 37] [ 12] [507902381798] +12:15:23 [ 38] [ 6] [742042] +12:15:23 [ 39] [ 2] [00] +12:15:23 [ 41] [ 8] [01006300] +12:15:23 [ 49] [ 3] [418] +12:15:23 [ 52] [ 16] [C17066D41B507F83] +12:15:23 [ 54] [ 20] [1001418C000103957400] +12:15:23 ============================================================================ +12:15:23 Sending to : +12:15:23 ============================================================================ +12:15:23 + + +waiting on router queue for slot.... +12:15:23 ============================================================================ +12:15:23 Slot Id : <193> +12:15:23 Transaction Type : REQUEST +12:15:23 Received From : +12:15:23 ============================================================================ +12:15:23 FNo. Len. Field Value +12:15:23 ============================================================================ +12:15:23 [ 1] [ 4] [0200] +12:15:23 [ 2] [ 16] [6213545000990295] +12:15:23 [ 3] [ 6] [010000] +12:15:23 [ 4] [ 12] [000100000000] +12:15:23 [ 7] [ 10] [0320051430] +12:15:23 [ 11] [ 6] [268962] +12:15:23 [ 12] [ 6] [121430] +12:15:23 [ 13] [ 4] [0320] +12:15:23 [ 14] [ 4] [4912] +12:15:23 [ 15] [ 4] [0320] +12:15:23 [ 18] [ 4] [6011] +12:15:23 [ 19] [ 3] [418] +12:15:23 [ 22] [ 3] [021] +12:15:23 [ 25] [ 2] [01] +12:15:23 [ 28] [ 9] [D00002000] +12:15:23 [ 32] [ 6] [180893] +12:15:23 [ 35] [ 32] [6213545000990295=491212019029226] +12:15:23 [ 37] [ 12] [507905268962] +12:15:23 [ 41] [ 8] [0366SKTT] +12:15:23 [ 42] [ 15] [999999 ] +12:15:23 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:15:23 [ 49] [ 3] [418] +12:15:23 [ 52] [ 16] [949A5A4FEA7909C4] +12:15:23 ============================================================================ +12:15:23 + + +waiting on router queue for slot.... +12:15:23 Sending to : +12:15:23 ============================================================================ +12:15:23 Sending to : +12:15:23 ============================================================================ +12:15:23 ============================================================================ +12:15:23 Slot Id : <193> +12:15:23 Transaction Type : REQUEST +12:15:23 Received From : +12:15:23 ============================================================================ +12:15:23 FNo. Len. Field Value +12:15:23 ============================================================================ +12:15:23 [ 1] [ 4] [0200] +12:15:23 [ 2] [ 16] [6213545000990295] +12:15:23 [ 3] [ 6] [010000] +12:15:23 [ 4] [ 12] [000100000000] +12:15:23 [ 7] [ 10] [0320051430] +12:15:23 [ 11] [ 6] [268962] +12:15:23 [ 12] [ 6] [121430] +12:15:23 [ 13] [ 4] [0320] +12:15:23 [ 14] [ 4] [4912] +12:15:23 [ 15] [ 4] [0320] +12:15:23 [ 18] [ 4] [6011] +12:15:23 [ 19] [ 3] [418] +12:15:23 [ 22] [ 3] [021] +12:15:23 [ 25] [ 2] [01] +12:15:23 [ 28] [ 9] [D00002000] +12:15:23 [ 32] [ 6] [180893] +12:15:23 [ 35] [ 32] [6213545000990295=491212019029226] +12:15:23 [ 37] [ 12] [507905268962] +12:15:23 [ 41] [ 8] [0366SKTT] +12:15:23 [ 42] [ 15] [999999 ] +12:15:23 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:15:23 [ 49] [ 3] [418] +12:15:23 [ 52] [ 16] [949A5A4FEA7909C4] +12:15:23 ============================================================================ +12:15:23 + + +waiting on router queue for slot.... +12:15:23 Sending to : +12:15:23 ============================================================================ +12:15:23 ============================================================================ +12:15:23 Slot Id : <193> +12:15:23 Transaction Type : REQUEST +12:15:23 Received From : +12:15:23 ============================================================================ +12:15:23 FNo. Len. Field Value +12:15:23 ============================================================================ +12:15:23 [ 1] [ 4] [0200] +12:15:23 [ 2] [ 16] [6213545000990295] +12:15:23 [ 3] [ 6] [010000] +12:15:23 [ 4] [ 12] [000100000000] +12:15:23 [ 7] [ 10] [0320051430] +12:15:23 [ 11] [ 6] [268962] +12:15:23 [ 12] [ 6] [121430] +12:15:23 [ 13] [ 4] [0320] +12:15:23 [ 14] [ 4] [4912] +12:15:23 [ 15] [ 4] [0320] +12:15:23 [ 18] [ 4] [6011] +12:15:23 [ 19] [ 3] [418] +12:15:23 [ 22] [ 3] [021] +12:15:23 [ 25] [ 2] [01] +12:15:23 [ 28] [ 9] [D00002000] +12:15:23 [ 32] [ 6] [180893] +12:15:23 [ 35] [ 32] [6213545000990295=491212019029226] +12:15:23 [ 37] [ 12] [507905268962] +12:15:23 [ 41] [ 8] [0366SKTT] +12:15:23 [ 42] [ 15] [999999 ] +12:15:23 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:15:23 [ 49] [ 3] [418] +12:15:23 [ 52] [ 16] [282B16CC3E06E935] +12:15:23 ============================================================================ +12:15:23 + + +waiting on router queue for slot.... +12:15:23 Sending to : <0> +12:15:23 ============================================================================ +12:15:24 ============================================================================ +12:15:24 Slot Id : <193> +12:15:24 Transaction Type : RESPONSE +12:15:24 Received From : +12:15:24 ============================================================================ +12:15:24 FNo. Len. Field Value +12:15:24 ============================================================================ +12:15:24 [ 1] [ 4] [0210] +12:15:24 [ 2] [ 16] [6213545000990295] +12:15:24 [ 3] [ 6] [010000] +12:15:24 [ 4] [ 12] [000100000000] +12:15:24 [ 7] [ 10] [0320051430] +12:15:24 [ 11] [ 6] [268962] +12:15:24 [ 12] [ 6] [121430] +12:15:24 [ 13] [ 4] [0320] +12:15:24 [ 15] [ 4] [0320] +12:15:24 [ 18] [ 4] [6011] +12:15:24 [ 19] [ 3] [418] +12:15:24 [ 32] [ 6] [180893] +12:15:24 [ 35] [ 32] [6213545000990295=491212019029226] +12:15:24 [ 37] [ 12] [507905268962] +12:15:24 [ 38] [ 6] [668869] +12:15:24 [ 39] [ 2] [00] +12:15:24 [ 41] [ 8] [0366SKTT] +12:15:24 [ 49] [ 3] [418] +12:15:24 [ 54] [ 40] [0001418C0001780814740002418C000178081474] +12:15:24 ============================================================================ +12:15:24 Sending to : +12:15:24 ============================================================================ +12:15:24 + + +waiting on router queue for slot.... +12:15:24 ============================================================================ +12:15:24 Slot Id : <213> +12:15:24 Transaction Type : RESPONSE +12:15:24 Received From : +12:15:24 ============================================================================ +12:15:24 FNo. Len. Field Value +12:15:24 ============================================================================ +12:15:24 [ 1] [ 4] [0210] +12:15:24 [ 2] [ 16] [1808930200021590] +12:15:24 [ 3] [ 6] [011000] +12:15:24 [ 4] [ 12] [000020000000] +12:15:24 [ 6] [ 12] [000020000000] +12:15:24 [ 7] [ 10] [0320121515] +12:15:24 [ 11] [ 6] [742042] +12:15:24 [ 12] [ 6] [121515] +12:15:24 [ 13] [ 4] [0320] +12:15:24 [ 18] [ 4] [6011] +12:15:24 [ 19] [ 3] [418] +12:15:24 [ 22] [ 3] [021] +12:15:24 [ 32] [ 6] [621354] +12:15:24 [ 35] [ 27] [1808930200021590=1803500348] +12:15:24 [ 37] [ 12] [507902381798] +12:15:24 [ 38] [ 6] [742042] +12:15:24 [ 39] [ 2] [00] +12:15:24 [ 41] [ 8] [01006300] +12:15:24 [ 49] [ 3] [418] +12:15:24 [ 52] [ 16] [C17066D41B507F83] +12:15:24 [ 54] [ 20] [1001418C000103957400] +12:15:24 ============================================================================ +12:15:24 Calculate Source COMM Id = 0 +12:15:24 ============================================================================ +12:15:24 + + +waiting on router queue for slot.... +12:15:26 ============================================================================ +12:15:26 Slot Id : <193> +12:15:26 Transaction Type : RESPONSE +12:15:26 Received From : +12:15:26 ============================================================================ +12:15:26 FNo. Len. Field Value +12:15:26 ============================================================================ +12:15:26 [ 1] [ 4] [0210] +12:15:26 [ 2] [ 16] [6213545000990295] +12:15:26 [ 3] [ 6] [010000] +12:15:26 [ 4] [ 12] [000100000000] +12:15:26 [ 7] [ 10] [0320051430] +12:15:26 [ 11] [ 6] [268962] +12:15:26 [ 12] [ 6] [121430] +12:15:26 [ 13] [ 4] [0320] +12:15:26 [ 15] [ 4] [0320] +12:15:26 [ 18] [ 4] [6011] +12:15:26 [ 19] [ 3] [418] +12:15:26 [ 32] [ 6] [180893] +12:15:26 [ 35] [ 32] [6213545000990295=491212019029226] +12:15:26 [ 37] [ 12] [507905268962] +12:15:26 [ 38] [ 6] [668869] +12:15:26 [ 39] [ 2] [00] +12:15:26 [ 41] [ 8] [0366SKTT] +12:15:26 [ 49] [ 3] [418] +12:15:26 [ 54] [ 40] [0001418C0001780814740002418C000178081474] +12:15:26 ============================================================================ +12:15:26 Calculate Source COMM Id = 2 +12:15:26 ============================================================================ +12:15:26 + + +waiting on router queue for slot.... +12:15:28 ============================================================================ +12:15:28 Slot Id : <221> +12:15:28 Transaction Type : REQUEST +12:15:28 Received From : +12:15:28 ============================================================================ +12:15:28 FNo. Len. Field Value +12:15:28 ============================================================================ +12:15:28 [ 1] [ 4] [0200] +12:15:28 [ 2] [ 16] [1808931800002998] +12:15:28 [ 3] [ 6] [301000] +12:15:28 [ 4] [ 12] [000000000000] +12:15:28 [ 7] [ 10] [0320121524] +12:15:28 [ 11] [ 6] [742078] +12:15:28 [ 12] [ 6] [121524] +12:15:28 [ 13] [ 4] [0320] +12:15:28 [ 15] [ 4] [0320] +12:15:28 [ 18] [ 4] [6011] +12:15:28 [ 22] [ 3] [900] +12:15:28 [ 25] [ 2] [02] +12:15:28 [ 28] [ 9] [D00000000] +12:15:28 [ 32] [ 6] [621354] +12:15:28 [ 35] [ 27] [1808931800002998=1803500364] +12:15:28 [ 37] [ 12] [507903649217] +12:15:28 [ 41] [ 8] [16001700] +12:15:28 [ 42] [ 15] [NATIVE ] +12:15:28 [ 43] [ 40] [NOUL Unit Xaythany LAO] +12:15:28 [ 49] [ 3] [418] +12:15:28 [ 52] [ 16] [E10FB08AC22B2824] +12:15:28 ============================================================================ +12:15:28 + + +waiting on router queue for slot.... +12:15:28 Sending to : +12:15:28 ============================================================================ +12:15:28 Sending to : +12:15:28 ============================================================================ +12:15:28 ============================================================================ +12:15:28 Slot Id : <221> +12:15:28 Transaction Type : REQUEST +12:15:28 Received From : +12:15:28 ============================================================================ +12:15:28 FNo. Len. Field Value +12:15:28 ============================================================================ +12:15:28 [ 1] [ 4] [0200] +12:15:28 [ 2] [ 16] [1808931800002998] +12:15:28 [ 3] [ 6] [301000] +12:15:28 [ 4] [ 12] [000000000000] +12:15:28 [ 7] [ 10] [0320121524] +12:15:28 [ 11] [ 6] [742078] +12:15:28 [ 12] [ 6] [121524] +12:15:28 [ 13] [ 4] [0320] +12:15:28 [ 15] [ 4] [0320] +12:15:28 [ 18] [ 4] [6011] +12:15:28 [ 22] [ 3] [900] +12:15:28 [ 25] [ 2] [02] +12:15:28 [ 28] [ 9] [D00000000] +12:15:28 [ 32] [ 6] [621354] +12:15:28 [ 35] [ 27] [1808931800002998=1803500364] +12:15:28 [ 37] [ 12] [507903649217] +12:15:28 [ 41] [ 8] [16001700] +12:15:28 [ 42] [ 15] [NATIVE ] +12:15:28 [ 43] [ 40] [NOUL Unit Xaythany LAO] +12:15:28 [ 49] [ 3] [418] +12:15:28 [ 52] [ 16] [E10FB08AC22B2824] +12:15:28 ============================================================================ +12:15:28 + + +waiting on router queue for slot.... +12:15:28 Sending to : +12:15:28 ============================================================================ +12:15:28 ============================================================================ +12:15:28 Slot Id : <221> +12:15:28 Transaction Type : REQUEST +12:15:28 Received From : +12:15:28 ============================================================================ +12:15:28 FNo. Len. Field Value +12:15:28 ============================================================================ +12:15:28 [ 1] [ 4] [0200] +12:15:28 [ 2] [ 16] [1808931800002998] +12:15:28 [ 3] [ 6] [301000] +12:15:28 [ 4] [ 12] [000000000000] +12:15:28 [ 7] [ 10] [0320121524] +12:15:28 [ 11] [ 6] [742078] +12:15:28 [ 12] [ 6] [121524] +12:15:28 [ 13] [ 4] [0320] +12:15:28 [ 15] [ 4] [0320] +12:15:28 [ 18] [ 4] [6011] +12:15:28 [ 22] [ 3] [900] +12:15:28 [ 25] [ 2] [02] +12:15:28 [ 28] [ 9] [D00000000] +12:15:28 [ 32] [ 6] [621354] +12:15:28 [ 35] [ 27] [1808931800002998=1803500364] +12:15:28 [ 37] [ 12] [507903649217] +12:15:28 [ 41] [ 8] [16001700] +12:15:28 [ 42] [ 15] [NATIVE ] +12:15:28 [ 43] [ 40] [NOUL Unit Xaythany LAO] +12:15:28 [ 49] [ 3] [418] +12:15:28 [ 52] [ 16] [B1938C0EBACC16B6] +12:15:28 ============================================================================ +12:15:28 + + +waiting on router queue for slot.... +12:15:28 Sending to : <2> +12:15:28 ============================================================================ +12:15:32 ============================================================================ +12:15:32 Slot Id : <221> +12:15:32 Transaction Type : RESPONSE +12:15:32 Received From : +12:15:32 ============================================================================ +12:15:32 FNo. Len. Field Value +12:15:32 ============================================================================ +12:15:32 [ 1] [ 4] [0210] +12:15:32 [ 2] [ 16] [1808931800002998] +12:15:32 [ 3] [ 6] [301000] +12:15:32 [ 7] [ 10] [0320121524] +12:15:32 [ 11] [ 6] [742078] +12:15:32 [ 12] [ 6] [121524] +12:15:32 [ 13] [ 4] [0320] +12:15:32 [ 14] [ 4] [1803] +12:15:32 [ 19] [ 3] [418] +12:15:32 [ 32] [ 6] [621354] +12:15:32 [ 37] [ 12] [507903649217] +12:15:32 [ 38] [ 6] [742078] +12:15:32 [ 39] [ 2] [00] +12:15:32 [ 41] [ 8] [16001700] +12:15:32 [ 49] [ 3] [418] +12:15:32 [ 52] [ 16] [B1938C0EBACC16B6] +12:15:32 [ 54] [ 20] [1002418C000007997300] +12:15:32 ============================================================================ +12:15:32 Sending to : +12:15:32 ============================================================================ +12:15:32 + + +waiting on router queue for slot.... +12:15:33 ============================================================================ +12:15:33 Slot Id : <221> +12:15:33 Transaction Type : RESPONSE +12:15:33 Received From : +12:15:33 ============================================================================ +12:15:33 FNo. Len. Field Value +12:15:33 ============================================================================ +12:15:33 [ 1] [ 4] [0210] +12:15:33 [ 2] [ 16] [1808931800002998] +12:15:33 [ 3] [ 6] [301000] +12:15:33 [ 7] [ 10] [0320121524] +12:15:33 [ 11] [ 6] [742078] +12:15:33 [ 12] [ 6] [121524] +12:15:33 [ 13] [ 4] [0320] +12:15:33 [ 14] [ 4] [1803] +12:15:33 [ 19] [ 3] [418] +12:15:33 [ 32] [ 6] [621354] +12:15:33 [ 37] [ 12] [507903649217] +12:15:33 [ 38] [ 6] [742078] +12:15:33 [ 39] [ 2] [00] +12:15:33 [ 41] [ 8] [16001700] +12:15:33 [ 49] [ 3] [418] +12:15:33 [ 52] [ 16] [B1938C0EBACC16B6] +12:15:33 [ 54] [ 20] [1002418C000007997300] +12:15:33 ============================================================================ +12:15:33 Calculate Source COMM Id = 0 +12:15:33 ============================================================================ +12:15:33 + + +waiting on router queue for slot.... +12:15:35 ============================================================================ +12:15:35 Slot Id : <212> +12:15:35 Transaction Type : REQUEST +12:15:35 Received From : +12:15:35 ============================================================================ +12:15:35 FNo. Len. Field Value +12:15:35 ============================================================================ +12:15:35 [ 1] [ 4] [0200] +12:15:35 [ 2] [ 16] [6213544002135223] +12:15:35 [ 3] [ 6] [301000] +12:15:35 [ 4] [ 12] [000000000000] +12:15:35 [ 7] [ 10] [0320121556] +12:15:35 [ 11] [ 6] [205364] +12:15:35 [ 12] [ 6] [121739] +12:15:35 [ 13] [ 4] [0320] +12:15:35 [ 14] [ 4] [4912] +12:15:35 [ 15] [ 4] [0320] +12:15:35 [ 18] [ 4] [6011] +12:15:35 [ 19] [ 3] [418] +12:15:35 [ 22] [ 3] [021] +12:15:35 [ 25] [ 2] [01] +12:15:35 [ 28] [ 9] [D00000000] +12:15:35 [ 32] [ 6] [198901] +12:15:35 [ 35] [ 32] [6213544002135223=491212013522973] +12:15:35 [ 37] [ 12] [507912205364] +12:15:35 [ 41] [ 8] [00002222] +12:15:35 [ 42] [ 15] [000000041002222] +12:15:35 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:15:35 [ 49] [ 3] [418] +12:15:35 [ 52] [ 16] [2066AD453DCA8C0D] +12:15:35 ============================================================================ +12:15:35 + + +waiting on router queue for slot.... +12:15:35 Sending to : +12:15:35 ============================================================================ +12:15:35 Sending to : +12:15:35 ============================================================================ +12:15:35 ============================================================================ +12:15:35 Slot Id : <212> +12:15:35 Transaction Type : REQUEST +12:15:35 Received From : +12:15:35 ============================================================================ +12:15:35 FNo. Len. Field Value +12:15:35 ============================================================================ +12:15:35 [ 1] [ 4] [0200] +12:15:35 [ 2] [ 16] [6213544002135223] +12:15:35 [ 3] [ 6] [301000] +12:15:35 [ 4] [ 12] [000000000000] +12:15:35 [ 7] [ 10] [0320121556] +12:15:35 [ 11] [ 6] [205364] +12:15:35 [ 12] [ 6] [121739] +12:15:35 [ 13] [ 4] [0320] +12:15:35 [ 14] [ 4] [4912] +12:15:35 [ 15] [ 4] [0320] +12:15:35 [ 18] [ 4] [6011] +12:15:35 [ 19] [ 3] [418] +12:15:35 [ 22] [ 3] [021] +12:15:35 [ 25] [ 2] [01] +12:15:35 [ 28] [ 9] [D00000000] +12:15:35 [ 32] [ 6] [198901] +12:15:35 [ 35] [ 32] [6213544002135223=491212013522973] +12:15:35 [ 37] [ 12] [507912205364] +12:15:35 [ 41] [ 8] [00002222] +12:15:35 [ 42] [ 15] [000000041002222] +12:15:35 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:15:35 [ 49] [ 3] [418] +12:15:35 [ 52] [ 16] [2066AD453DCA8C0D] +12:15:35 ============================================================================ +12:15:35 + + +waiting on router queue for slot.... +12:15:35 Sending to : +12:15:35 ============================================================================ +12:15:35 ============================================================================ +12:15:35 Slot Id : <212> +12:15:35 Transaction Type : REQUEST +12:15:35 Received From : +12:15:35 ============================================================================ +12:15:35 FNo. Len. Field Value +12:15:35 ============================================================================ +12:15:35 [ 1] [ 4] [0200] +12:15:35 [ 2] [ 16] [6213544002135223] +12:15:35 [ 3] [ 6] [301000] +12:15:35 [ 4] [ 12] [000000000000] +12:15:35 [ 7] [ 10] [0320121556] +12:15:35 [ 11] [ 6] [205364] +12:15:35 [ 12] [ 6] [121739] +12:15:35 [ 13] [ 4] [0320] +12:15:35 [ 14] [ 4] [4912] +12:15:35 [ 15] [ 4] [0320] +12:15:35 [ 18] [ 4] [6011] +12:15:35 [ 19] [ 3] [418] +12:15:35 [ 22] [ 3] [021] +12:15:35 [ 25] [ 2] [01] +12:15:35 [ 28] [ 9] [D00000000] +12:15:35 [ 32] [ 6] [198901] +12:15:35 [ 35] [ 32] [6213544002135223=491212013522973] +12:15:35 [ 37] [ 12] [507912205364] +12:15:35 [ 41] [ 8] [00002222] +12:15:35 [ 42] [ 15] [000000041002222] +12:15:35 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +12:15:35 [ 49] [ 3] [418] +12:15:35 [ 52] [ 16] [070430F8D90C9785] +12:15:35 ============================================================================ +12:15:35 + + +waiting on router queue for slot.... +12:15:35 Sending to : <0> +12:15:35 ============================================================================ +12:15:36 ============================================================================ +12:15:36 Slot Id : <212> +12:15:36 Transaction Type : RESPONSE +12:15:36 Received From : +12:15:36 ============================================================================ +12:15:36 FNo. Len. Field Value +12:15:36 ============================================================================ +12:15:36 [ 1] [ 4] [0210] +12:15:36 [ 2] [ 16] [6213544002135223] +12:15:36 [ 3] [ 6] [301000] +12:15:36 [ 4] [ 12] [000000000000] +12:15:36 [ 7] [ 10] [0320121556] +12:15:36 [ 11] [ 6] [205364] +12:15:36 [ 12] [ 6] [121739] +12:15:36 [ 13] [ 4] [0320] +12:15:36 [ 15] [ 4] [0320] +12:15:36 [ 18] [ 4] [6011] +12:15:36 [ 19] [ 3] [418] +12:15:36 [ 32] [ 6] [198901] +12:15:36 [ 35] [ 32] [6213544002135223=491212013522973] +12:15:36 [ 37] [ 12] [507912205364] +12:15:36 [ 38] [ 6] [085181] +12:15:36 [ 39] [ 2] [00] +12:15:36 [ 41] [ 8] [00002222] +12:15:36 [ 49] [ 3] [418] +12:15:36 [ 54] [ 40] [1001418C0000057613821002418C000005761382] +12:15:36 ============================================================================ +12:15:36 Sending to : +12:15:36 ============================================================================ +12:15:36 + + +waiting on router queue for slot.... +12:15:38 ============================================================================ +12:15:38 Slot Id : <212> +12:15:38 Transaction Type : RESPONSE +12:15:38 Received From : +12:15:38 ============================================================================ +12:15:38 FNo. Len. Field Value +12:15:38 ============================================================================ +12:15:38 [ 1] [ 4] [0210] +12:15:38 [ 2] [ 16] [6213544002135223] +12:15:38 [ 3] [ 6] [301000] +12:15:38 [ 4] [ 12] [000000000000] +12:15:38 [ 7] [ 10] [0320121556] +12:15:38 [ 11] [ 6] [205364] +12:15:38 [ 12] [ 6] [121739] +12:15:38 [ 13] [ 4] [0320] +12:15:38 [ 15] [ 4] [0320] +12:15:38 [ 18] [ 4] [6011] +12:15:38 [ 19] [ 3] [418] +12:15:38 [ 32] [ 6] [198901] +12:15:38 [ 35] [ 32] [6213544002135223=491212013522973] +12:15:38 [ 37] [ 12] [507912205364] +12:15:38 [ 38] [ 6] [085181] +12:15:38 [ 39] [ 2] [00] +12:15:38 [ 41] [ 8] [00002222] +12:15:38 [ 49] [ 3] [418] +12:15:38 [ 54] [ 40] [1001418C0000057613821002418C000005761382] +12:15:38 ============================================================================ +12:15:38 Calculate Source COMM Id = 5 +12:15:38 ============================================================================ +12:15:38 + + +waiting on router queue for slot.... +12:15:43 ============================================================================ +12:15:43 Slot Id : <207> +12:15:43 Transaction Type : REQUEST +12:15:43 Received From : +12:15:43 ============================================================================ +12:15:43 FNo. Len. Field Value +12:15:43 ============================================================================ +12:15:43 [ 1] [ 4] [0800] +12:15:43 [ 7] [ 10] [0320051451] +12:15:43 [ 11] [ 6] [156262] +12:15:43 [ 70] [ 3] [301] +12:15:43 ============================================================================ +12:15:43 + + +waiting on router queue for slot.... +12:15:43 Sending to : +12:15:43 ============================================================================ +12:15:43 ============================================================================ +12:15:43 Slot Id : <207> +12:15:43 Transaction Type : RESPONSE +12:15:43 Received From : +12:15:43 ============================================================================ +12:15:43 FNo. Len. Field Value +12:15:43 ============================================================================ +12:15:43 [ 1] [ 4] [0810] +12:15:43 [ 7] [ 10] [0320051451] +12:15:43 [ 11] [ 6] [156262] +12:15:43 [ 39] [ 2] [00] +12:15:43 [ 70] [ 3] [301] +12:15:43 ============================================================================ +12:15:43 Calculate Source COMM Id = 2 +12:15:43 ============================================================================ +12:15:43 + + +waiting on router queue for slot.... +12:15:54 ============================================================================ +12:15:54 Slot Id : <208> +12:15:54 Transaction Type : REQUEST +12:15:54 Received From : +12:15:54 ============================================================================ +12:15:54 FNo. Len. Field Value +12:15:54 ============================================================================ +12:15:54 [ 1] [ 4] [0800] +12:15:54 [ 7] [ 10] [0320051502] +12:15:54 [ 11] [ 6] [156263] +12:15:54 [ 70] [ 3] [301] +12:15:54 ============================================================================ +12:15:54 + + +waiting on router queue for slot.... +12:15:54 Sending to : +12:15:54 ============================================================================ +12:15:54 ============================================================================ +12:15:54 Slot Id : <208> +12:15:54 Transaction Type : RESPONSE +12:15:54 Received From : +12:15:54 ============================================================================ +12:15:54 FNo. Len. Field Value +12:15:54 ============================================================================ +12:15:54 [ 1] [ 4] [0810] +12:15:54 [ 7] [ 10] [0320051502] +12:15:54 [ 11] [ 6] [156263] +12:15:54 [ 39] [ 2] [00] +12:15:54 [ 70] [ 3] [301] +12:15:54 ============================================================================ +12:15:54 Calculate Source COMM Id = 2 +12:15:54 ============================================================================ +12:15:54 + + +waiting on router queue for slot.... +12:16:10 ============================================================================ +12:16:10 Slot Id : <185> +12:16:10 Transaction Type : REQUEST +12:16:10 Received From : +12:16:10 ============================================================================ +12:16:10 FNo. Len. Field Value +12:16:10 ============================================================================ +12:16:10 [ 1] [ 4] [0200] +12:16:10 [ 2] [ 16] [1888880000030866] +12:16:10 [ 3] [ 6] [011000] +12:16:10 [ 4] [ 12] [000015000000] +12:16:10 [ 7] [ 10] [0320121606] +12:16:10 [ 11] [ 6] [742257] +12:16:10 [ 12] [ 6] [121606] +12:16:10 [ 13] [ 4] [0320] +12:16:10 [ 15] [ 4] [0320] +12:16:10 [ 18] [ 4] [6011] +12:16:10 [ 22] [ 3] [900] +12:16:10 [ 25] [ 2] [02] +12:16:10 [ 28] [ 9] [D00002000] +12:16:10 [ 32] [ 6] [621354] +12:16:10 [ 35] [ 32] [1888880000030866=000010100000730] +12:16:10 [ 37] [ 12] [507904769442] +12:16:10 [ 41] [ 8] [07001200] +12:16:10 [ 42] [ 15] [NATIVE ] +12:16:10 [ 43] [ 40] [Sangkhou College LNT Namtar LAO] +12:16:10 [ 49] [ 3] [418] +12:16:10 [ 52] [ 16] [EBBCD30F57D92C74] +12:16:10 ============================================================================ +12:16:10 + + +waiting on router queue for slot.... +12:16:10 Sending to : +12:16:10 ============================================================================ +12:16:10 Sending to : +12:16:10 ============================================================================ +12:16:11 ============================================================================ +12:16:11 Slot Id : <183> +12:16:11 Transaction Type : REQUEST +12:16:11 Received From : +12:16:11 ============================================================================ +12:16:11 FNo. Len. Field Value +12:16:11 ============================================================================ +12:16:11 [ 1] [ 4] [0800] +12:16:11 [ 7] [ 10] [0320051518] +12:16:11 [ 11] [ 6] [156264] +12:16:11 [ 70] [ 3] [301] +12:16:11 ============================================================================ +12:16:11 + + +waiting on router queue for slot.... +12:16:11 Sending to : +12:16:11 ============================================================================ +12:16:11 ============================================================================ +12:16:11 Slot Id : <183> +12:16:11 Transaction Type : RESPONSE +12:16:11 Received From : +12:16:11 ============================================================================ +12:16:11 FNo. Len. Field Value +12:16:11 ============================================================================ +12:16:11 [ 1] [ 4] [0810] +12:16:11 [ 7] [ 10] [0320051518] +12:16:11 [ 11] [ 6] [156264] +12:16:11 [ 39] [ 2] [00] +12:16:11 [ 70] [ 3] [301] +12:16:11 ============================================================================ +12:16:11 Calculate Source COMM Id = 2 +12:16:11 ============================================================================ +12:16:11 + + +waiting on router queue for slot.... +12:16:11 ============================================================================ +12:16:11 Slot Id : <185> +12:16:11 Transaction Type : REQUEST +12:16:11 Received From : +12:16:11 ============================================================================ +12:16:11 FNo. Len. Field Value +12:16:11 ============================================================================ +12:16:11 [ 1] [ 4] [0200] +12:16:11 [ 2] [ 16] [1888880000030866] +12:16:11 [ 3] [ 6] [011000] +12:16:11 [ 4] [ 12] [000015000000] +12:16:11 [ 7] [ 10] [0320121606] +12:16:11 [ 11] [ 6] [742257] +12:16:11 [ 12] [ 6] [121606] +12:16:11 [ 13] [ 4] [0320] +12:16:11 [ 15] [ 4] [0320] +12:16:11 [ 18] [ 4] [6011] +12:16:11 [ 22] [ 3] [900] +12:16:11 [ 25] [ 2] [02] +12:16:11 [ 28] [ 9] [D00002000] +12:16:11 [ 32] [ 6] [621354] +12:16:11 [ 35] [ 32] [1888880000030866=000010100000730] +12:16:11 [ 37] [ 12] [507904769442] +12:16:11 [ 41] [ 8] [07001200] +12:16:11 [ 42] [ 15] [NATIVE ] +12:16:11 [ 43] [ 40] [Sangkhou College LNT Namtar LAO] +12:16:11 [ 49] [ 3] [418] +12:16:11 [ 52] [ 16] [EBBCD30F57D92C74] +12:16:11 ============================================================================ +12:16:11 + + +waiting on router queue for slot.... +12:16:11 Sending to : +12:16:11 ============================================================================ +12:16:11 ============================================================================ +12:16:11 Slot Id : <185> +12:16:11 Transaction Type : REQUEST +12:16:11 Received From : +12:16:11 ============================================================================ +12:16:11 FNo. Len. Field Value +12:16:11 ============================================================================ +12:16:11 [ 1] [ 4] [0200] +12:16:11 [ 2] [ 16] [1888880000030866] +12:16:11 [ 3] [ 6] [011000] +12:16:11 [ 4] [ 12] [000015000000] +12:16:11 [ 7] [ 10] [0320121606] +12:16:11 [ 11] [ 6] [742257] +12:16:11 [ 12] [ 6] [121606] +12:16:11 [ 13] [ 4] [0320] +12:16:11 [ 15] [ 4] [0320] +12:16:11 [ 18] [ 4] [6011] +12:16:11 [ 22] [ 3] [900] +12:16:11 [ 25] [ 2] [02] +12:16:11 [ 28] [ 9] [D00002000] +12:16:11 [ 32] [ 6] [621354] +12:16:11 [ 35] [ 32] [1888880000030866=000010100000730] +12:16:11 [ 37] [ 12] [507904769442] +12:16:11 [ 41] [ 8] [07001200] +12:16:11 [ 42] [ 15] [NATIVE ] +12:16:11 [ 43] [ 40] [Sangkhou College LNT Namtar LAO] +12:16:11 [ 49] [ 3] [418] +12:16:11 [ 52] [ 16] [39036BAB16E707B0] +12:16:11 ============================================================================ +12:16:11 + + +waiting on router queue for slot.... +12:16:11 Sending to : <5> +12:16:11 ============================================================================ +12:16:15 ============================================================================ +12:16:15 Slot Id : <211> +12:16:15 Transaction Type : REQUEST +12:16:15 Received From : +12:16:15 ============================================================================ +12:16:15 FNo. Len. Field Value +12:16:15 ============================================================================ +12:16:15 [ 1] [ 4] [0420] +12:16:15 [ 2] [ 16] [2206990000121269] +12:16:15 [ 3] [ 6] [010000] +12:16:15 [ 4] [ 12] [000020000000] +12:16:15 [ 7] [ 10] [0320121259] +12:16:15 [ 11] [ 6] [943668] +12:16:15 [ 12] [ 6] [121259] +12:16:15 [ 13] [ 4] [0320] +12:16:15 [ 15] [ 4] [0320] +12:16:15 [ 18] [ 4] [6011] +12:16:15 [ 19] [ 3] [418] +12:16:15 [ 22] [ 3] [021] +12:16:15 [ 25] [ 2] [01] +12:16:15 [ 28] [ 9] [C00002000] +12:16:15 [ 32] [ 6] [668899] +12:16:15 [ 35] [ 32] [2206990000121269=980212615591339] +12:16:15 [ 37] [ 12] [507902031663] +12:16:15 [ 39] [ 2] [00] +12:16:15 [ 41] [ 8] [03018003] +12:16:15 [ 42] [ 15] [APT ] +12:16:15 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:16:15 [ 49] [ 3] [418] +12:16:15 [ 51] [ 3] [418] +12:16:15 [ 52] [ 16] [4B3319089BAE187D] +12:16:15 [ 90] [ 42] [020094366803201212590000066889900000000000] +12:16:15 ============================================================================ +12:16:15 + + +waiting on router queue for slot.... +12:16:15 Sending to : +12:16:15 ============================================================================ +12:16:17 ============================================================================ +12:16:17 Slot Id : <211> +12:16:17 Transaction Type : RESPONSE +12:16:17 Received From : +12:16:17 ============================================================================ +12:16:17 FNo. Len. Field Value +12:16:17 ============================================================================ +12:16:17 [ 1] [ 4] [0430] +12:16:17 [ 2] [ 16] [2206990000121269] +12:16:17 [ 3] [ 6] [010000] +12:16:17 [ 4] [ 12] [000020000000] +12:16:17 [ 7] [ 10] [0320121259] +12:16:17 [ 11] [ 6] [943668] +12:16:17 [ 12] [ 6] [121259] +12:16:17 [ 13] [ 4] [0320] +12:16:17 [ 15] [ 4] [0320] +12:16:17 [ 18] [ 4] [6011] +12:16:17 [ 19] [ 3] [418] +12:16:17 [ 22] [ 3] [021] +12:16:17 [ 25] [ 2] [01] +12:16:17 [ 28] [ 9] [C00002000] +12:16:17 [ 32] [ 6] [668899] +12:16:17 [ 35] [ 32] [2206990000121269=980212615591339] +12:16:17 [ 37] [ 12] [507902031663] +12:16:17 [ 39] [ 2] [00] +12:16:17 [ 41] [ 8] [03018003] +12:16:17 [ 42] [ 15] [APT ] +12:16:17 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:16:17 [ 49] [ 3] [418] +12:16:17 [ 51] [ 3] [418] +12:16:17 [ 52] [ 16] [4B3319089BAE187D] +12:16:17 [ 90] [ 42] [020094366803201212590000066889900000000000] +12:16:17 ============================================================================ +12:16:17 Calculate Source COMM Id = 4 +12:16:17 ============================================================================ +12:16:17 + + +waiting on router queue for slot.... +12:16:19 ============================================================================ +12:16:19 Slot Id : <185> +12:16:19 Transaction Type : RESPONSE +12:16:19 Received From : +12:16:19 ============================================================================ +12:16:19 FNo. Len. Field Value +12:16:19 ============================================================================ +12:16:19 [ 1] [ 4] [0210] +12:16:19 [ 2] [ 16] [1888880000030866] +12:16:19 [ 3] [ 6] [011000] +12:16:19 [ 4] [ 12] [000015000000] +12:16:19 [ 7] [ 10] [0320121606] +12:16:19 [ 11] [ 6] [742257] +12:16:19 [ 12] [ 6] [121606] +12:16:19 [ 13] [ 4] [0320] +12:16:19 [ 15] [ 4] [0320] +12:16:19 [ 18] [ 4] [6011] +12:16:19 [ 19] [ 3] [418] +12:16:19 [ 32] [ 6] [621354] +12:16:19 [ 37] [ 12] [507904769442] +12:16:19 [ 38] [ 6] [284521] +12:16:19 [ 39] [ 2] [00] +12:16:19 [ 41] [ 8] [07001200] +12:16:19 [ 49] [ 3] [418] +12:16:19 [ 54] [ 0] [] +12:16:19 ============================================================================ +12:16:19 Sending to : +12:16:19 ============================================================================ +12:16:19 + + +waiting on router queue for slot.... +12:16:20 ============================================================================ +12:16:20 Slot Id : <185> +12:16:20 Transaction Type : RESPONSE +12:16:20 Received From : +12:16:20 ============================================================================ +12:16:20 FNo. Len. Field Value +12:16:20 ============================================================================ +12:16:20 [ 1] [ 4] [0210] +12:16:20 [ 2] [ 16] [1888880000030866] +12:16:20 [ 3] [ 6] [011000] +12:16:20 [ 4] [ 12] [000015000000] +12:16:20 [ 7] [ 10] [0320121606] +12:16:20 [ 11] [ 6] [742257] +12:16:20 [ 12] [ 6] [121606] +12:16:20 [ 13] [ 4] [0320] +12:16:20 [ 15] [ 4] [0320] +12:16:20 [ 18] [ 4] [6011] +12:16:20 [ 19] [ 3] [418] +12:16:20 [ 32] [ 6] [621354] +12:16:20 [ 37] [ 12] [507904769442] +12:16:20 [ 38] [ 6] [284521] +12:16:20 [ 39] [ 2] [00] +12:16:20 [ 41] [ 8] [07001200] +12:16:20 [ 49] [ 3] [418] +12:16:20 [ 54] [ 0] [] +12:16:20 ============================================================================ +12:16:20 Calculate Source COMM Id = 0 +12:16:20 ============================================================================ +12:16:20 + + +waiting on router queue for slot.... +12:16:22 ============================================================================ +12:16:22 Slot Id : <169> +12:16:22 Transaction Type : REQUEST +12:16:22 Received From : +12:16:22 ============================================================================ +12:16:22 FNo. Len. Field Value +12:16:22 ============================================================================ +12:16:22 [ 1] [ 4] [0800] +12:16:22 [ 7] [ 10] [0320051529] +12:16:22 [ 11] [ 6] [156265] +12:16:22 [ 70] [ 3] [301] +12:16:22 ============================================================================ +12:16:22 + + +waiting on router queue for slot.... +12:16:22 Sending to : +12:16:22 ============================================================================ +12:16:22 ============================================================================ +12:16:22 Slot Id : <169> +12:16:22 Transaction Type : RESPONSE +12:16:22 Received From : +12:16:22 ============================================================================ +12:16:22 FNo. Len. Field Value +12:16:22 ============================================================================ +12:16:22 [ 1] [ 4] [0810] +12:16:22 [ 7] [ 10] [0320051529] +12:16:22 [ 11] [ 6] [156265] +12:16:22 [ 39] [ 2] [00] +12:16:22 [ 70] [ 3] [301] +12:16:22 ============================================================================ +12:16:22 Calculate Source COMM Id = 2 +12:16:22 ============================================================================ +12:16:22 + + +waiting on router queue for slot.... +12:16:22 ============================================================================ +12:16:22 Slot Id : <230> +12:16:22 Transaction Type : REQUEST +12:16:22 Received From : +12:16:22 ============================================================================ +12:16:22 FNo. Len. Field Value +12:16:22 ============================================================================ +12:16:22 [ 1] [ 4] [0800] +12:16:22 [ 7] [ 10] [0320051412] +12:16:22 [ 11] [ 6] [029088] +12:16:22 [ 37] [ 12] [57912029088] +12:16:22 [ 70] [ 3] [301] +12:16:22 ============================================================================ +12:16:22 + + +waiting on router queue for slot.... +12:16:22 Sending to : +12:16:22 ============================================================================ +12:16:22 ============================================================================ +12:16:22 Slot Id : <230> +12:16:22 Transaction Type : RESPONSE +12:16:22 Received From : +12:16:22 ============================================================================ +12:16:22 FNo. Len. Field Value +12:16:22 ============================================================================ +12:16:22 [ 1] [ 4] [0810] +12:16:22 [ 7] [ 10] [0320051412] +12:16:22 [ 11] [ 6] [029088] +12:16:22 [ 37] [ 12] [579120290880] +12:16:22 [ 39] [ 2] [00] +12:16:22 [ 70] [ 3] [810] +12:16:22 ============================================================================ +12:16:22 Calculate Source COMM Id = 4 +12:16:22 ============================================================================ +12:16:22 + + +waiting on router queue for slot.... +12:16:22 ============================================================================ +12:16:22 Slot Id : <189> +12:16:22 Transaction Type : REQUEST +12:16:22 Received From : +12:16:22 ============================================================================ +12:16:22 FNo. Len. Field Value +12:16:22 ============================================================================ +12:16:22 [ 1] [ 4] [0800] +12:16:22 [ 2] [ 5] [02531] +12:16:22 [ 3] [ 6] [579128] +12:16:22 [ 7] [ 10] [0320051622] +12:16:22 [ 11] [ 6] [807124] +12:16:22 [ 15] [ 10] [0320051622] +12:16:22 [ 37] [ 11] [57912807124] +12:16:22 [ 70] [ 3] [001] +12:16:22 ============================================================================ +12:16:22 + + +waiting on router queue for slot.... +12:16:22 ============================================================================ +12:16:22 Slot Id : <189> +12:16:22 Transaction Type : RESPONSE +12:16:22 Received From : +12:16:22 ============================================================================ +12:16:22 FNo. Len. Field Value +12:16:22 ============================================================================ +12:16:22 [ 1] [ 4] [0810] +12:16:22 [ 7] [ 10] [0320051622] +12:16:22 [ 11] [ 6] [807124] +12:16:22 [ 15] [ 4] [0320] +12:16:22 [ 37] [ 12] [57912807124] +12:16:22 [ 39] [ 2] [00] +12:16:22 [ 70] [ 3] [001] +12:16:22 ============================================================================ +12:16:22 Sending to : +12:16:22 ============================================================================ +12:16:22 + + +waiting on router queue for slot.... +12:16:23 ============================================================================ +12:16:23 Slot Id : <205> +12:16:23 Transaction Type : REQUEST +12:16:23 Received From : +12:16:23 ============================================================================ +12:16:23 FNo. Len. Field Value +12:16:23 ============================================================================ +12:16:23 [ 1] [ 4] [0200] +12:16:23 [ 2] [ 16] [6213544001693891] +12:16:23 [ 3] [ 6] [301000] +12:16:23 [ 7] [ 10] [0320051530] +12:16:23 [ 11] [ 6] [268968] +12:16:23 [ 12] [ 6] [121530] +12:16:23 [ 13] [ 4] [0320] +12:16:23 [ 14] [ 4] [4912] +12:16:23 [ 15] [ 4] [0320] +12:16:23 [ 18] [ 4] [6011] +12:16:23 [ 19] [ 3] [418] +12:16:23 [ 22] [ 3] [021] +12:16:23 [ 25] [ 2] [01] +12:16:23 [ 32] [ 6] [180893] +12:16:23 [ 35] [ 32] [6213544001693891=491212019389181] +12:16:23 [ 37] [ 12] [507905268968] +12:16:23 [ 41] [ 8] [0106NAXA] +12:16:23 [ 42] [ 15] [999999 ] +12:16:23 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +12:16:23 [ 49] [ 3] [418] +12:16:23 [ 52] [ 16] [2C317B3AC840A80E] +12:16:23 ============================================================================ +12:16:23 + + +waiting on router queue for slot.... +12:16:23 Sending to : +12:16:23 ============================================================================ +12:16:23 Sending to : +12:16:23 ============================================================================ +12:16:23 ============================================================================ +12:16:23 Slot Id : <205> +12:16:23 Transaction Type : REQUEST +12:16:23 Received From : +12:16:23 ============================================================================ +12:16:23 FNo. Len. Field Value +12:16:23 ============================================================================ +12:16:23 [ 1] [ 4] [0200] +12:16:23 [ 2] [ 16] [6213544001693891] +12:16:23 [ 3] [ 6] [301000] +12:16:23 [ 7] [ 10] [0320051530] +12:16:23 [ 11] [ 6] [268968] +12:16:23 [ 12] [ 6] [121530] +12:16:23 [ 13] [ 4] [0320] +12:16:23 [ 14] [ 4] [4912] +12:16:23 [ 15] [ 4] [0320] +12:16:23 [ 18] [ 4] [6011] +12:16:23 [ 19] [ 3] [418] +12:16:23 [ 22] [ 3] [021] +12:16:23 [ 25] [ 2] [01] +12:16:23 [ 32] [ 6] [180893] +12:16:23 [ 35] [ 32] [6213544001693891=491212019389181] +12:16:23 [ 37] [ 12] [507905268968] +12:16:23 [ 41] [ 8] [0106NAXA] +12:16:23 [ 42] [ 15] [999999 ] +12:16:23 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +12:16:23 [ 49] [ 3] [418] +12:16:23 [ 52] [ 16] [2C317B3AC840A80E] +12:16:23 ============================================================================ +12:16:23 + + +waiting on router queue for slot.... +12:16:23 Sending to : +12:16:23 ============================================================================ +12:16:23 ============================================================================ +12:16:23 Slot Id : <205> +12:16:23 Transaction Type : REQUEST +12:16:23 Received From : +12:16:23 ============================================================================ +12:16:23 FNo. Len. Field Value +12:16:23 ============================================================================ +12:16:23 [ 1] [ 4] [0200] +12:16:23 [ 2] [ 16] [6213544001693891] +12:16:23 [ 3] [ 6] [301000] +12:16:23 [ 7] [ 10] [0320051530] +12:16:23 [ 11] [ 6] [268968] +12:16:23 [ 12] [ 6] [121530] +12:16:23 [ 13] [ 4] [0320] +12:16:23 [ 14] [ 4] [4912] +12:16:23 [ 15] [ 4] [0320] +12:16:23 [ 18] [ 4] [6011] +12:16:23 [ 19] [ 3] [418] +12:16:23 [ 22] [ 3] [021] +12:16:23 [ 25] [ 2] [01] +12:16:23 [ 32] [ 6] [180893] +12:16:23 [ 35] [ 32] [6213544001693891=491212019389181] +12:16:23 [ 37] [ 12] [507905268968] +12:16:23 [ 41] [ 8] [0106NAXA] +12:16:23 [ 42] [ 15] [999999 ] +12:16:23 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +12:16:23 [ 49] [ 3] [418] +12:16:23 [ 52] [ 16] [38C4778105263855] +12:16:23 ============================================================================ +12:16:23 + + +waiting on router queue for slot.... +12:16:23 Sending to : <0> +12:16:23 ============================================================================ +12:16:23 ============================================================================ +12:16:23 Slot Id : <205> +12:16:23 Transaction Type : RESPONSE +12:16:23 Received From : +12:16:23 ============================================================================ +12:16:23 FNo. Len. Field Value +12:16:23 ============================================================================ +12:16:23 [ 1] [ 4] [0210] +12:16:23 [ 2] [ 16] [6213544001693891] +12:16:23 [ 3] [ 6] [301000] +12:16:23 [ 4] [ 12] [000000000000] +12:16:23 [ 7] [ 10] [0320051530] +12:16:23 [ 11] [ 6] [268968] +12:16:23 [ 12] [ 6] [121530] +12:16:23 [ 13] [ 4] [0320] +12:16:23 [ 15] [ 4] [0320] +12:16:23 [ 18] [ 4] [6011] +12:16:23 [ 19] [ 3] [418] +12:16:23 [ 32] [ 6] [180893] +12:16:23 [ 35] [ 32] [6213544001693891=491212019389181] +12:16:23 [ 37] [ 12] [507905268968] +12:16:23 [ 38] [ 6] [310000] +12:16:23 [ 39] [ 2] [00] +12:16:23 [ 41] [ 8] [0106NAXA] +12:16:23 [ 49] [ 3] [418] +12:16:23 [ 54] [ 40] [1001418C0000095901901002418C000009590190] +12:16:23 ============================================================================ +12:16:23 Sending to : +12:16:23 ============================================================================ +12:16:23 + + +waiting on router queue for slot.... +12:16:25 ============================================================================ +12:16:25 Slot Id : <205> +12:16:25 Transaction Type : RESPONSE +12:16:25 Received From : +12:16:25 ============================================================================ +12:16:25 FNo. Len. Field Value +12:16:25 ============================================================================ +12:16:25 [ 1] [ 4] [0210] +12:16:25 [ 2] [ 16] [6213544001693891] +12:16:25 [ 3] [ 6] [301000] +12:16:25 [ 4] [ 12] [000000000000] +12:16:25 [ 7] [ 10] [0320051530] +12:16:25 [ 11] [ 6] [268968] +12:16:25 [ 12] [ 6] [121530] +12:16:25 [ 13] [ 4] [0320] +12:16:25 [ 15] [ 4] [0320] +12:16:25 [ 18] [ 4] [6011] +12:16:25 [ 19] [ 3] [418] +12:16:25 [ 32] [ 6] [180893] +12:16:25 [ 35] [ 32] [6213544001693891=491212019389181] +12:16:25 [ 37] [ 12] [507905268968] +12:16:25 [ 38] [ 6] [310000] +12:16:25 [ 39] [ 2] [00] +12:16:25 [ 41] [ 8] [0106NAXA] +12:16:25 [ 49] [ 3] [418] +12:16:25 [ 54] [ 40] [1001418C0000095901901002418C000009590190] +12:16:25 ============================================================================ +12:16:25 Calculate Source COMM Id = 2 +12:16:25 ============================================================================ +12:16:25 + + +waiting on router queue for slot.... +12:16:26 ============================================================================ +12:16:26 Slot Id : <149> +12:16:26 Transaction Type : REQUEST +12:16:26 Received From : +12:16:26 ============================================================================ +12:16:26 FNo. Len. Field Value +12:16:26 ============================================================================ +12:16:26 [ 1] [ 4] [0200] +12:16:26 [ 2] [ 16] [6213545000990295] +12:16:26 [ 3] [ 6] [010000] +12:16:26 [ 4] [ 12] [000100000000] +12:16:26 [ 7] [ 10] [0320051533] +12:16:26 [ 11] [ 6] [268970] +12:16:26 [ 12] [ 6] [121533] +12:16:26 [ 13] [ 4] [0320] +12:16:26 [ 14] [ 4] [4912] +12:16:26 [ 15] [ 4] [0320] +12:16:26 [ 18] [ 4] [6011] +12:16:26 [ 19] [ 3] [418] +12:16:26 [ 22] [ 3] [021] +12:16:26 [ 25] [ 2] [01] +12:16:26 [ 28] [ 9] [D00002000] +12:16:26 [ 32] [ 6] [180893] +12:16:26 [ 35] [ 32] [6213545000990295=491212019029226] +12:16:26 [ 37] [ 12] [507905268970] +12:16:26 [ 41] [ 8] [0366SKTT] +12:16:26 [ 42] [ 15] [999999 ] +12:16:26 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:16:26 [ 49] [ 3] [418] +12:16:26 [ 52] [ 16] [949A5A4FEA7909C4] +12:16:26 ============================================================================ +12:16:26 + + +waiting on router queue for slot.... +12:16:26 Sending to : +12:16:26 ============================================================================ +12:16:26 Sending to : +12:16:26 ============================================================================ +12:16:26 ============================================================================ +12:16:26 Slot Id : <149> +12:16:26 Transaction Type : REQUEST +12:16:26 Received From : +12:16:26 ============================================================================ +12:16:26 FNo. Len. Field Value +12:16:26 ============================================================================ +12:16:26 [ 1] [ 4] [0200] +12:16:26 [ 2] [ 16] [6213545000990295] +12:16:26 [ 3] [ 6] [010000] +12:16:26 [ 4] [ 12] [000100000000] +12:16:26 [ 7] [ 10] [0320051533] +12:16:26 [ 11] [ 6] [268970] +12:16:26 [ 12] [ 6] [121533] +12:16:26 [ 13] [ 4] [0320] +12:16:26 [ 14] [ 4] [4912] +12:16:26 [ 15] [ 4] [0320] +12:16:26 [ 18] [ 4] [6011] +12:16:26 [ 19] [ 3] [418] +12:16:26 [ 22] [ 3] [021] +12:16:26 [ 25] [ 2] [01] +12:16:26 [ 28] [ 9] [D00002000] +12:16:26 [ 32] [ 6] [180893] +12:16:26 [ 35] [ 32] [6213545000990295=491212019029226] +12:16:26 [ 37] [ 12] [507905268970] +12:16:26 [ 41] [ 8] [0366SKTT] +12:16:26 [ 42] [ 15] [999999 ] +12:16:26 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:16:26 [ 49] [ 3] [418] +12:16:26 [ 52] [ 16] [949A5A4FEA7909C4] +12:16:26 ============================================================================ +12:16:26 + + +waiting on router queue for slot.... +12:16:26 Sending to : +12:16:26 ============================================================================ +12:16:26 ============================================================================ +12:16:26 Slot Id : <149> +12:16:26 Transaction Type : REQUEST +12:16:26 Received From : +12:16:26 ============================================================================ +12:16:26 FNo. Len. Field Value +12:16:26 ============================================================================ +12:16:26 [ 1] [ 4] [0200] +12:16:26 [ 2] [ 16] [6213545000990295] +12:16:26 [ 3] [ 6] [010000] +12:16:26 [ 4] [ 12] [000100000000] +12:16:26 [ 7] [ 10] [0320051533] +12:16:26 [ 11] [ 6] [268970] +12:16:26 [ 12] [ 6] [121533] +12:16:26 [ 13] [ 4] [0320] +12:16:26 [ 14] [ 4] [4912] +12:16:26 [ 15] [ 4] [0320] +12:16:26 [ 18] [ 4] [6011] +12:16:26 [ 19] [ 3] [418] +12:16:26 [ 22] [ 3] [021] +12:16:26 [ 25] [ 2] [01] +12:16:26 [ 28] [ 9] [D00002000] +12:16:26 [ 32] [ 6] [180893] +12:16:26 [ 35] [ 32] [6213545000990295=491212019029226] +12:16:26 [ 37] [ 12] [507905268970] +12:16:26 [ 41] [ 8] [0366SKTT] +12:16:26 [ 42] [ 15] [999999 ] +12:16:26 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:16:26 [ 49] [ 3] [418] +12:16:26 [ 52] [ 16] [282B16CC3E06E935] +12:16:26 ============================================================================ +12:16:26 + + +waiting on router queue for slot.... +12:16:26 Sending to : <0> +12:16:26 ============================================================================ +12:16:27 ============================================================================ +12:16:27 Slot Id : <149> +12:16:27 Transaction Type : RESPONSE +12:16:27 Received From : +12:16:27 ============================================================================ +12:16:27 FNo. Len. Field Value +12:16:27 ============================================================================ +12:16:27 [ 1] [ 4] [0210] +12:16:27 [ 2] [ 16] [6213545000990295] +12:16:27 [ 3] [ 6] [010000] +12:16:27 [ 4] [ 12] [000100000000] +12:16:27 [ 7] [ 10] [0320051533] +12:16:27 [ 11] [ 6] [268970] +12:16:27 [ 12] [ 6] [121533] +12:16:27 [ 13] [ 4] [0320] +12:16:27 [ 15] [ 4] [0320] +12:16:27 [ 18] [ 4] [6011] +12:16:27 [ 19] [ 3] [418] +12:16:27 [ 32] [ 6] [180893] +12:16:27 [ 35] [ 32] [6213545000990295=491212019029226] +12:16:27 [ 37] [ 12] [507905268970] +12:16:27 [ 38] [ 6] [316296] +12:16:27 [ 39] [ 2] [00] +12:16:27 [ 41] [ 8] [0366SKTT] +12:16:27 [ 49] [ 3] [418] +12:16:27 [ 54] [ 40] [0001418C0000778814740002418C000077881474] +12:16:27 ============================================================================ +12:16:27 Sending to : +12:16:27 ============================================================================ +12:16:27 + + +waiting on router queue for slot.... +12:16:28 ============================================================================ +12:16:28 Slot Id : <149> +12:16:28 Transaction Type : RESPONSE +12:16:28 Received From : +12:16:28 ============================================================================ +12:16:28 FNo. Len. Field Value +12:16:28 ============================================================================ +12:16:28 [ 1] [ 4] [0210] +12:16:28 [ 2] [ 16] [6213545000990295] +12:16:28 [ 3] [ 6] [010000] +12:16:28 [ 4] [ 12] [000100000000] +12:16:28 [ 7] [ 10] [0320051533] +12:16:28 [ 11] [ 6] [268970] +12:16:28 [ 12] [ 6] [121533] +12:16:28 [ 13] [ 4] [0320] +12:16:28 [ 15] [ 4] [0320] +12:16:28 [ 18] [ 4] [6011] +12:16:28 [ 19] [ 3] [418] +12:16:28 [ 32] [ 6] [180893] +12:16:28 [ 35] [ 32] [6213545000990295=491212019029226] +12:16:28 [ 37] [ 12] [507905268970] +12:16:28 [ 38] [ 6] [316296] +12:16:28 [ 39] [ 2] [00] +12:16:28 [ 41] [ 8] [0366SKTT] +12:16:28 [ 49] [ 3] [418] +12:16:28 [ 54] [ 40] [0001418C0000778814740002418C000077881474] +12:16:28 ============================================================================ +12:16:28 Calculate Source COMM Id = 2 +12:16:28 ============================================================================ +12:16:28 + + +waiting on router queue for slot.... +12:16:34 ============================================================================ +12:16:34 Slot Id : <232> +12:16:34 Transaction Type : REQUEST +12:16:34 Received From : +12:16:34 ============================================================================ +12:16:34 FNo. Len. Field Value +12:16:34 ============================================================================ +12:16:34 [ 1] [ 4] [0200] +12:16:34 [ 2] [ 16] [2206990000121269] +12:16:34 [ 3] [ 6] [010000] +12:16:34 [ 4] [ 12] [000010000000] +12:16:34 [ 7] [ 10] [0320121424] +12:16:34 [ 11] [ 6] [943744] +12:16:34 [ 12] [ 6] [121424] +12:16:34 [ 13] [ 4] [0320] +12:16:34 [ 15] [ 4] [0320] +12:16:34 [ 18] [ 4] [6011] +12:16:34 [ 19] [ 3] [418] +12:16:34 [ 22] [ 3] [021] +12:16:34 [ 25] [ 2] [01] +12:16:34 [ 28] [ 9] [D00002000] +12:16:34 [ 32] [ 6] [668899] +12:16:34 [ 35] [ 32] [2206990000121269=980212615591339] +12:16:34 [ 37] [ 12] [507902031665] +12:16:34 [ 41] [ 8] [03018003] +12:16:34 [ 42] [ 15] [APT ] +12:16:34 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:16:34 [ 49] [ 3] [418] +12:16:34 [ 52] [ 16] [BCEA1A0CC25B6BF6] +12:16:34 ============================================================================ +12:16:34 + + +waiting on router queue for slot.... +12:16:34 Sending to : +12:16:34 ============================================================================ +12:16:34 Sending to : +12:16:34 ============================================================================ +12:16:34 ============================================================================ +12:16:34 Slot Id : <232> +12:16:34 Transaction Type : REQUEST +12:16:34 Received From : +12:16:34 ============================================================================ +12:16:34 FNo. Len. Field Value +12:16:34 ============================================================================ +12:16:34 [ 1] [ 4] [0200] +12:16:34 [ 2] [ 16] [2206990000121269] +12:16:34 [ 3] [ 6] [010000] +12:16:34 [ 4] [ 12] [000010000000] +12:16:34 [ 7] [ 10] [0320121424] +12:16:34 [ 11] [ 6] [943744] +12:16:34 [ 12] [ 6] [121424] +12:16:34 [ 13] [ 4] [0320] +12:16:34 [ 15] [ 4] [0320] +12:16:34 [ 18] [ 4] [6011] +12:16:34 [ 19] [ 3] [418] +12:16:34 [ 22] [ 3] [021] +12:16:34 [ 25] [ 2] [01] +12:16:34 [ 28] [ 9] [D00002000] +12:16:34 [ 32] [ 6] [668899] +12:16:34 [ 35] [ 32] [2206990000121269=980212615591339] +12:16:34 [ 37] [ 12] [507902031665] +12:16:34 [ 41] [ 8] [03018003] +12:16:34 [ 42] [ 15] [APT ] +12:16:34 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:16:34 [ 49] [ 3] [418] +12:16:34 [ 52] [ 16] [BCEA1A0CC25B6BF6] +12:16:34 ============================================================================ +12:16:34 + + +waiting on router queue for slot.... +12:16:34 Sending to : +12:16:34 ============================================================================ +12:16:34 ============================================================================ +12:16:34 Slot Id : <232> +12:16:34 Transaction Type : REQUEST +12:16:34 Received From : +12:16:34 ============================================================================ +12:16:34 FNo. Len. Field Value +12:16:34 ============================================================================ +12:16:34 [ 1] [ 4] [0200] +12:16:34 [ 2] [ 16] [2206990000121269] +12:16:34 [ 3] [ 6] [010000] +12:16:34 [ 4] [ 12] [000010000000] +12:16:34 [ 7] [ 10] [0320121424] +12:16:34 [ 11] [ 6] [943744] +12:16:34 [ 12] [ 6] [121424] +12:16:34 [ 13] [ 4] [0320] +12:16:34 [ 15] [ 4] [0320] +12:16:34 [ 18] [ 4] [6011] +12:16:34 [ 19] [ 3] [418] +12:16:34 [ 22] [ 3] [021] +12:16:34 [ 25] [ 2] [01] +12:16:34 [ 28] [ 9] [D00002000] +12:16:34 [ 32] [ 6] [668899] +12:16:34 [ 35] [ 32] [2206990000121269=980212615591339] +12:16:34 [ 37] [ 12] [507902031665] +12:16:34 [ 41] [ 8] [03018003] +12:16:34 [ 42] [ 15] [APT ] +12:16:34 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:16:34 [ 49] [ 3] [418] +12:16:34 [ 52] [ 16] [EE1B4D3967DFCEEF] +12:16:34 ============================================================================ +12:16:34 + + +waiting on router queue for slot.... +12:16:34 Sending to : <1> +12:16:34 ============================================================================ +12:16:37 ============================================================================ +12:16:37 Slot Id : <232> +12:16:37 Transaction Type : RESPONSE +12:16:37 Received From : +12:16:37 ============================================================================ +12:16:37 FNo. Len. Field Value +12:16:37 ============================================================================ +12:16:37 [ 1] [ 4] [0210] +12:16:37 [ 2] [ 16] [2206990000121269] +12:16:37 [ 3] [ 6] [010000] +12:16:37 [ 4] [ 12] [000010000000] +12:16:37 [ 7] [ 10] [0320121424] +12:16:37 [ 11] [ 6] [943744] +12:16:37 [ 12] [ 6] [121424] +12:16:37 [ 13] [ 4] [0320] +12:16:37 [ 15] [ 4] [0320] +12:16:37 [ 18] [ 4] [6011] +12:16:37 [ 32] [ 6] [668899] +12:16:37 [ 35] [ 32] [2206990000121269=980212615591339] +12:16:37 [ 37] [ 12] [507902031665] +12:16:37 [ 38] [ 6] [783219] +12:16:37 [ 39] [ 2] [00] +12:16:37 [ 41] [ 8] [03018003] +12:16:37 [ 49] [ 3] [418] +12:16:37 [ 54] [ 40] [0001418C0000129720000002418C000012972000] +12:16:37 ============================================================================ +12:16:37 Sending to : +12:16:37 ============================================================================ +12:16:37 + + +waiting on router queue for slot.... +12:16:38 ============================================================================ +12:16:38 Slot Id : <232> +12:16:38 Transaction Type : RESPONSE +12:16:38 Received From : +12:16:38 ============================================================================ +12:16:38 FNo. Len. Field Value +12:16:38 ============================================================================ +12:16:38 [ 1] [ 4] [0210] +12:16:38 [ 2] [ 16] [2206990000121269] +12:16:38 [ 3] [ 6] [010000] +12:16:38 [ 4] [ 12] [000010000000] +12:16:38 [ 7] [ 10] [0320121424] +12:16:38 [ 11] [ 6] [943744] +12:16:38 [ 12] [ 6] [121424] +12:16:38 [ 13] [ 4] [0320] +12:16:38 [ 15] [ 4] [0320] +12:16:38 [ 18] [ 4] [6011] +12:16:38 [ 32] [ 6] [668899] +12:16:38 [ 35] [ 32] [2206990000121269=980212615591339] +12:16:38 [ 37] [ 12] [507902031665] +12:16:38 [ 38] [ 6] [783219] +12:16:38 [ 39] [ 2] [00] +12:16:38 [ 41] [ 8] [03018003] +12:16:38 [ 49] [ 3] [418] +12:16:38 [ 54] [ 40] [0001418C0000129720000002418C000012972000] +12:16:38 ============================================================================ +12:16:38 Calculate Source COMM Id = 4 +12:16:38 ============================================================================ +12:16:38 + + +waiting on router queue for slot.... +12:16:39 ============================================================================ +12:16:39 Slot Id : <180> +12:16:39 Transaction Type : REQUEST +12:16:39 Received From : +12:16:39 ============================================================================ +12:16:39 FNo. Len. Field Value +12:16:39 ============================================================================ +12:16:39 [ 1] [ 4] [0200] +12:16:39 [ 2] [ 16] [6688990040130492] +12:16:39 [ 3] [ 6] [300000] +12:16:39 [ 4] [ 12] [000000000000] +12:16:39 [ 7] [ 10] [0320121635] +12:16:39 [ 11] [ 6] [742389] +12:16:39 [ 12] [ 6] [121635] +12:16:39 [ 13] [ 4] [0320] +12:16:39 [ 15] [ 4] [0320] +12:16:39 [ 18] [ 4] [6011] +12:16:39 [ 22] [ 3] [900] +12:16:39 [ 25] [ 2] [02] +12:16:39 [ 28] [ 9] [D00000000] +12:16:39 [ 32] [ 6] [621354] +12:16:39 [ 35] [ 37] [6688990040130492=98041261822372700000] +12:16:39 [ 37] [ 12] [507904609841] +12:16:39 [ 41] [ 8] [02002300] +12:16:39 [ 42] [ 15] [NATIVE ] +12:16:39 [ 43] [ 40] [Meuang Mahaxay Mahaxay LAO] +12:16:39 [ 49] [ 3] [418] +12:16:39 [ 52] [ 16] [33F475BAFF8E10F8] +12:16:39 ============================================================================ +12:16:39 + + +waiting on router queue for slot.... +12:16:39 Sending to : +12:16:39 ============================================================================ +12:16:39 Sending to : +12:16:39 ============================================================================ +12:16:40 ============================================================================ +12:16:40 Slot Id : <180> +12:16:40 Transaction Type : REQUEST +12:16:40 Received From : +12:16:40 ============================================================================ +12:16:40 FNo. Len. Field Value +12:16:40 ============================================================================ +12:16:40 [ 1] [ 4] [0200] +12:16:40 [ 2] [ 16] [6688990040130492] +12:16:40 [ 3] [ 6] [300000] +12:16:40 [ 4] [ 12] [000000000000] +12:16:40 [ 7] [ 10] [0320121635] +12:16:40 [ 11] [ 6] [742389] +12:16:40 [ 12] [ 6] [121635] +12:16:40 [ 13] [ 4] [0320] +12:16:40 [ 15] [ 4] [0320] +12:16:40 [ 18] [ 4] [6011] +12:16:40 [ 22] [ 3] [900] +12:16:40 [ 25] [ 2] [02] +12:16:40 [ 28] [ 9] [D00000000] +12:16:40 [ 32] [ 6] [621354] +12:16:40 [ 35] [ 37] [6688990040130492=98041261822372700000] +12:16:40 [ 37] [ 12] [507904609841] +12:16:40 [ 41] [ 8] [02002300] +12:16:40 [ 42] [ 15] [NATIVE ] +12:16:40 [ 43] [ 40] [Meuang Mahaxay Mahaxay LAO] +12:16:40 [ 49] [ 3] [418] +12:16:40 [ 52] [ 16] [33F475BAFF8E10F8] +12:16:40 ============================================================================ +12:16:40 + + +waiting on router queue for slot.... +12:16:40 Sending to : +12:16:40 ============================================================================ +12:16:40 ============================================================================ +12:16:40 Slot Id : <180> +12:16:40 Transaction Type : REQUEST +12:16:40 Received From : +12:16:40 ============================================================================ +12:16:40 FNo. Len. Field Value +12:16:40 ============================================================================ +12:16:40 [ 1] [ 4] [0200] +12:16:40 [ 2] [ 16] [6688990040130492] +12:16:40 [ 3] [ 6] [300000] +12:16:40 [ 4] [ 12] [000000000000] +12:16:40 [ 7] [ 10] [0320121635] +12:16:40 [ 11] [ 6] [742389] +12:16:40 [ 12] [ 6] [121635] +12:16:40 [ 13] [ 4] [0320] +12:16:40 [ 15] [ 4] [0320] +12:16:40 [ 18] [ 4] [6011] +12:16:40 [ 22] [ 3] [900] +12:16:40 [ 25] [ 2] [02] +12:16:40 [ 28] [ 9] [D00000000] +12:16:40 [ 32] [ 6] [621354] +12:16:40 [ 35] [ 37] [6688990040130492=98041261822372700000] +12:16:40 [ 37] [ 12] [507904609841] +12:16:40 [ 41] [ 8] [02002300] +12:16:40 [ 42] [ 15] [NATIVE ] +12:16:40 [ 43] [ 40] [Meuang Mahaxay Mahaxay LAO] +12:16:40 [ 49] [ 3] [418] +12:16:40 [ 52] [ 16] [1E2B36277761E285] +12:16:40 ============================================================================ +12:16:40 + + +waiting on router queue for slot.... +12:16:40 Sending to : <4> +12:16:40 ============================================================================ +12:16:41 ============================================================================ +12:16:41 Slot Id : <180> +12:16:41 Transaction Type : RESPONSE +12:16:41 Received From : +12:16:41 ============================================================================ +12:16:41 FNo. Len. Field Value +12:16:41 ============================================================================ +12:16:41 [ 1] [ 4] [0210] +12:16:41 [ 2] [ 16] [6688990040130492] +12:16:41 [ 3] [ 6] [300000] +12:16:41 [ 4] [ 12] [000000000000] +12:16:41 [ 11] [ 6] [742389] +12:16:41 [ 12] [ 6] [121635] +12:16:41 [ 15] [ 4] [0320] +12:16:41 [ 18] [ 4] [6011] +12:16:41 [ 32] [ 6] [621354] +12:16:41 [ 35] [ 37] [6688990040130492=98041261822372700000] +12:16:41 [ 37] [ 12] [507904609841] +12:16:41 [ 38] [ 6] [724660] +12:16:41 [ 39] [ 2] [00] +12:16:41 [ 41] [ 8] [02002300] +12:16:41 [ 49] [ 3] [418] +12:16:41 [ 54] [ 20] [0002418C000409500000] +12:16:41 ============================================================================ +12:16:41 Sending to : +12:16:41 ============================================================================ +12:16:41 + + +waiting on router queue for slot.... +12:16:42 ============================================================================ +12:16:42 Slot Id : <180> +12:16:42 Transaction Type : RESPONSE +12:16:42 Received From : +12:16:42 ============================================================================ +12:16:42 FNo. Len. Field Value +12:16:42 ============================================================================ +12:16:42 [ 1] [ 4] [0210] +12:16:42 [ 2] [ 16] [6688990040130492] +12:16:42 [ 3] [ 6] [300000] +12:16:42 [ 4] [ 12] [000000000000] +12:16:42 [ 11] [ 6] [742389] +12:16:42 [ 12] [ 6] [121635] +12:16:42 [ 15] [ 4] [0320] +12:16:42 [ 18] [ 4] [6011] +12:16:42 [ 32] [ 6] [621354] +12:16:42 [ 35] [ 37] [6688990040130492=98041261822372700000] +12:16:42 [ 37] [ 12] [507904609841] +12:16:42 [ 38] [ 6] [724660] +12:16:42 [ 39] [ 2] [00] +12:16:42 [ 41] [ 8] [02002300] +12:16:42 [ 49] [ 3] [418] +12:16:42 [ 54] [ 20] [0002418C000409500000] +12:16:42 ============================================================================ +12:16:42 Calculate Source COMM Id = 0 +12:16:42 ============================================================================ +12:16:42 + + +waiting on router queue for slot.... +12:16:43 ============================================================================ +12:16:43 Slot Id : <168> +12:16:43 Transaction Type : REQUEST +12:16:43 Received From : +12:16:43 ============================================================================ +12:16:43 FNo. Len. Field Value +12:16:43 ============================================================================ +12:16:43 [ 1] [ 4] [0800] +12:16:43 [ 7] [ 10] [0320051551] +12:16:43 [ 11] [ 6] [156266] +12:16:43 [ 70] [ 3] [301] +12:16:43 ============================================================================ +12:16:43 + + +waiting on router queue for slot.... +12:16:43 Sending to : +12:16:43 ============================================================================ +12:16:43 ============================================================================ +12:16:43 Slot Id : <168> +12:16:43 Transaction Type : RESPONSE +12:16:43 Received From : +12:16:43 ============================================================================ +12:16:43 FNo. Len. Field Value +12:16:43 ============================================================================ +12:16:43 [ 1] [ 4] [0810] +12:16:43 [ 7] [ 10] [0320051551] +12:16:43 [ 11] [ 6] [156266] +12:16:43 [ 39] [ 2] [00] +12:16:43 [ 70] [ 3] [301] +12:16:43 ============================================================================ +12:16:43 Calculate Source COMM Id = 2 +12:16:43 ============================================================================ +12:16:43 + + +waiting on router queue for slot.... +12:16:49 ============================================================================ +12:16:49 Slot Id : <174> +12:16:49 Transaction Type : REQUEST +12:16:49 Received From : +12:16:49 ============================================================================ +12:16:49 FNo. Len. Field Value +12:16:49 ============================================================================ +12:16:49 [ 1] [ 4] [0200] +12:16:49 [ 2] [ 16] [1808930600022354] +12:16:49 [ 3] [ 6] [301000] +12:16:49 [ 4] [ 12] [000000000000] +12:16:49 [ 7] [ 10] [0320121645] +12:16:49 [ 11] [ 6] [742430] +12:16:49 [ 12] [ 6] [121645] +12:16:49 [ 13] [ 4] [0320] +12:16:49 [ 15] [ 4] [0320] +12:16:49 [ 18] [ 4] [6011] +12:16:49 [ 22] [ 3] [900] +12:16:49 [ 25] [ 2] [02] +12:16:49 [ 28] [ 9] [D00000000] +12:16:49 [ 32] [ 6] [621354] +12:16:49 [ 35] [ 27] [1808930600022354=1803500118] +12:16:49 [ 37] [ 12] [507905187486] +12:16:49 [ 41] [ 8] [03004400] +12:16:49 [ 42] [ 15] [NATIVE ] +12:16:49 [ 43] [ 40] [Savanhpark Company Savannakhet LAO] +12:16:49 [ 49] [ 3] [418] +12:16:49 [ 52] [ 16] [44FBA9D1B19D1C2E] +12:16:49 ============================================================================ +12:16:49 + + +waiting on router queue for slot.... +12:16:49 Sending to : +12:16:49 ============================================================================ +12:16:49 Sending to : +12:16:49 ============================================================================ +12:16:50 ============================================================================ +12:16:50 Slot Id : <174> +12:16:50 Transaction Type : REQUEST +12:16:50 Received From : +12:16:50 ============================================================================ +12:16:50 FNo. Len. Field Value +12:16:50 ============================================================================ +12:16:50 [ 1] [ 4] [0200] +12:16:50 [ 2] [ 16] [1808930600022354] +12:16:50 [ 3] [ 6] [301000] +12:16:50 [ 4] [ 12] [000000000000] +12:16:50 [ 7] [ 10] [0320121645] +12:16:50 [ 11] [ 6] [742430] +12:16:50 [ 12] [ 6] [121645] +12:16:50 [ 13] [ 4] [0320] +12:16:50 [ 15] [ 4] [0320] +12:16:50 [ 18] [ 4] [6011] +12:16:50 [ 22] [ 3] [900] +12:16:50 [ 25] [ 2] [02] +12:16:50 [ 28] [ 9] [D00000000] +12:16:50 [ 32] [ 6] [621354] +12:16:50 [ 35] [ 27] [1808930600022354=1803500118] +12:16:50 [ 37] [ 12] [507905187486] +12:16:50 [ 41] [ 8] [03004400] +12:16:50 [ 42] [ 15] [NATIVE ] +12:16:50 [ 43] [ 40] [Savanhpark Company Savannakhet LAO] +12:16:50 [ 49] [ 3] [418] +12:16:50 [ 52] [ 16] [44FBA9D1B19D1C2E] +12:16:50 ============================================================================ +12:16:50 + + +waiting on router queue for slot.... +12:16:50 Sending to : +12:16:50 ============================================================================ +12:16:50 ============================================================================ +12:16:50 Slot Id : <174> +12:16:50 Transaction Type : REQUEST +12:16:50 Received From : +12:16:50 ============================================================================ +12:16:50 FNo. Len. Field Value +12:16:50 ============================================================================ +12:16:50 [ 1] [ 4] [0200] +12:16:50 [ 2] [ 16] [1808930600022354] +12:16:50 [ 3] [ 6] [301000] +12:16:50 [ 4] [ 12] [000000000000] +12:16:50 [ 7] [ 10] [0320121645] +12:16:50 [ 11] [ 6] [742430] +12:16:50 [ 12] [ 6] [121645] +12:16:50 [ 13] [ 4] [0320] +12:16:50 [ 15] [ 4] [0320] +12:16:50 [ 18] [ 4] [6011] +12:16:50 [ 22] [ 3] [900] +12:16:50 [ 25] [ 2] [02] +12:16:50 [ 28] [ 9] [D00000000] +12:16:50 [ 32] [ 6] [621354] +12:16:50 [ 35] [ 27] [1808930600022354=1803500118] +12:16:50 [ 37] [ 12] [507905187486] +12:16:50 [ 41] [ 8] [03004400] +12:16:50 [ 42] [ 15] [NATIVE ] +12:16:50 [ 43] [ 40] [Savanhpark Company Savannakhet LAO] +12:16:50 [ 49] [ 3] [418] +12:16:50 [ 52] [ 16] [E48B9148855C3DC8] +12:16:50 ============================================================================ +12:16:50 + + +waiting on router queue for slot.... +12:16:50 Sending to : <2> +12:16:50 ============================================================================ +12:16:53 ============================================================================ +12:16:53 Slot Id : <174> +12:16:53 Transaction Type : RESPONSE +12:16:53 Received From : +12:16:53 ============================================================================ +12:16:53 FNo. Len. Field Value +12:16:53 ============================================================================ +12:16:53 [ 1] [ 4] [0210] +12:16:53 [ 2] [ 16] [1808930600022354] +12:16:53 [ 3] [ 6] [301000] +12:16:53 [ 7] [ 10] [0320121645] +12:16:53 [ 11] [ 6] [742430] +12:16:53 [ 12] [ 6] [121645] +12:16:53 [ 13] [ 4] [0320] +12:16:53 [ 14] [ 4] [1803] +12:16:53 [ 19] [ 3] [418] +12:16:53 [ 32] [ 6] [621354] +12:16:53 [ 37] [ 12] [507905187486] +12:16:53 [ 38] [ 6] [742430] +12:16:53 [ 39] [ 2] [00] +12:16:53 [ 41] [ 8] [03004400] +12:16:53 [ 49] [ 3] [418] +12:16:53 [ 52] [ 16] [E48B9148855C3DC8] +12:16:53 [ 54] [ 20] [1002418C000011842700] +12:16:53 ============================================================================ +12:16:53 Sending to : +12:16:53 ============================================================================ +12:16:53 + + +waiting on router queue for slot.... +12:16:55 ============================================================================ +12:16:55 Slot Id : <174> +12:16:55 Transaction Type : RESPONSE +12:16:55 Received From : +12:16:55 ============================================================================ +12:16:55 FNo. Len. Field Value +12:16:55 ============================================================================ +12:16:55 [ 1] [ 4] [0210] +12:16:55 [ 2] [ 16] [1808930600022354] +12:16:55 [ 3] [ 6] [301000] +12:16:55 [ 7] [ 10] [0320121645] +12:16:55 [ 11] [ 6] [742430] +12:16:55 [ 12] [ 6] [121645] +12:16:55 [ 13] [ 4] [0320] +12:16:55 [ 14] [ 4] [1803] +12:16:55 [ 19] [ 3] [418] +12:16:55 [ 32] [ 6] [621354] +12:16:55 [ 37] [ 12] [507905187486] +12:16:55 [ 38] [ 6] [742430] +12:16:55 [ 39] [ 2] [00] +12:16:55 [ 41] [ 8] [03004400] +12:16:55 [ 49] [ 3] [418] +12:16:55 [ 52] [ 16] [E48B9148855C3DC8] +12:16:55 [ 54] [ 20] [1002418C000011842700] +12:16:55 ============================================================================ +12:16:55 Calculate Source COMM Id = 0 +12:16:55 ============================================================================ +12:16:55 + + +waiting on router queue for slot.... +12:17:05 ============================================================================ +12:17:05 Slot Id : <222> +12:17:05 Transaction Type : REQUEST +12:17:05 Received From : +12:17:05 ============================================================================ +12:17:05 FNo. Len. Field Value +12:17:05 ============================================================================ +12:17:05 [ 1] [ 4] [0800] +12:17:05 [ 7] [ 10] [0320051613] +12:17:05 [ 11] [ 6] [156267] +12:17:05 [ 70] [ 3] [301] +12:17:05 ============================================================================ +12:17:05 + + +waiting on router queue for slot.... +12:17:05 Sending to : +12:17:05 ============================================================================ +12:17:05 ============================================================================ +12:17:05 Slot Id : <222> +12:17:05 Transaction Type : RESPONSE +12:17:05 Received From : +12:17:05 ============================================================================ +12:17:05 FNo. Len. Field Value +12:17:05 ============================================================================ +12:17:05 [ 1] [ 4] [0810] +12:17:05 [ 7] [ 10] [0320051613] +12:17:05 [ 11] [ 6] [156267] +12:17:05 [ 39] [ 2] [00] +12:17:05 [ 70] [ 3] [301] +12:17:05 ============================================================================ +12:17:05 Calculate Source COMM Id = 2 +12:17:05 ============================================================================ +12:17:05 + + +waiting on router queue for slot.... +12:17:21 ============================================================================ +12:17:21 Slot Id : <173> +12:17:21 Transaction Type : REQUEST +12:17:21 Received From : +12:17:21 ============================================================================ +12:17:21 FNo. Len. Field Value +12:17:21 ============================================================================ +12:17:21 [ 1] [ 4] [0800] +12:17:21 [ 7] [ 10] [0320051628] +12:17:21 [ 11] [ 6] [156268] +12:17:21 [ 70] [ 3] [301] +12:17:21 ============================================================================ +12:17:21 + + +waiting on router queue for slot.... +12:17:21 Sending to : +12:17:21 ============================================================================ +12:17:21 ============================================================================ +12:17:21 Slot Id : <173> +12:17:21 Transaction Type : RESPONSE +12:17:21 Received From : +12:17:21 ============================================================================ +12:17:21 FNo. Len. Field Value +12:17:21 ============================================================================ +12:17:21 [ 1] [ 4] [0810] +12:17:21 [ 7] [ 10] [0320051628] +12:17:21 [ 11] [ 6] [156268] +12:17:21 [ 39] [ 2] [00] +12:17:21 [ 70] [ 3] [301] +12:17:21 ============================================================================ +12:17:21 Calculate Source COMM Id = 2 +12:17:21 ============================================================================ +12:17:21 + + +waiting on router queue for slot.... +12:17:24 ============================================================================ +12:17:24 Slot Id : <229> +12:17:24 Transaction Type : REQUEST +12:17:24 Received From : +12:17:24 ============================================================================ +12:17:24 FNo. Len. Field Value +12:17:24 ============================================================================ +12:17:24 [ 1] [ 4] [0800] +12:17:24 [ 2] [ 5] [02531] +12:17:24 [ 3] [ 6] [579128] +12:17:24 [ 7] [ 10] [0320051724] +12:17:24 [ 11] [ 6] [807125] +12:17:24 [ 15] [ 10] [0320051724] +12:17:24 [ 37] [ 11] [57912807125] +12:17:24 [ 70] [ 3] [001] +12:17:24 ============================================================================ +12:17:24 + + +waiting on router queue for slot.... +12:17:24 ============================================================================ +12:17:24 Slot Id : <229> +12:17:24 Transaction Type : RESPONSE +12:17:24 Received From : +12:17:24 ============================================================================ +12:17:24 FNo. Len. Field Value +12:17:24 ============================================================================ +12:17:24 [ 1] [ 4] [0810] +12:17:24 [ 7] [ 10] [0320051724] +12:17:24 [ 11] [ 6] [807125] +12:17:24 [ 15] [ 4] [0320] +12:17:24 [ 37] [ 12] [57912807125] +12:17:24 [ 39] [ 2] [00] +12:17:24 [ 70] [ 3] [001] +12:17:24 ============================================================================ +12:17:24 Sending to : +12:17:24 ============================================================================ +12:17:24 + + +waiting on router queue for slot.... +12:17:28 ============================================================================ +12:17:28 Slot Id : <188> +12:17:28 Transaction Type : REQUEST +12:17:28 Received From : +12:17:28 ============================================================================ +12:17:28 FNo. Len. Field Value +12:17:28 ============================================================================ +12:17:28 [ 1] [ 4] [0200] +12:17:28 [ 2] [ 16] [6213545000990295] +12:17:28 [ 3] [ 6] [010000] +12:17:28 [ 4] [ 12] [000050000000] +12:17:28 [ 7] [ 10] [0320051635] +12:17:28 [ 11] [ 6] [268976] +12:17:28 [ 12] [ 6] [121635] +12:17:28 [ 13] [ 4] [0320] +12:17:28 [ 14] [ 4] [4912] +12:17:28 [ 15] [ 4] [0320] +12:17:28 [ 18] [ 4] [6011] +12:17:28 [ 19] [ 3] [418] +12:17:28 [ 22] [ 3] [021] +12:17:28 [ 25] [ 2] [01] +12:17:28 [ 28] [ 9] [D00002000] +12:17:28 [ 32] [ 6] [180893] +12:17:28 [ 35] [ 32] [6213545000990295=491212019029226] +12:17:28 [ 37] [ 12] [507905268976] +12:17:28 [ 41] [ 8] [0366SKTT] +12:17:28 [ 42] [ 15] [999999 ] +12:17:28 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:17:28 [ 49] [ 3] [418] +12:17:28 [ 52] [ 16] [949A5A4FEA7909C4] +12:17:28 ============================================================================ +12:17:28 + + +waiting on router queue for slot.... +12:17:28 Sending to : +12:17:28 ============================================================================ +12:17:28 Sending to : +12:17:28 ============================================================================ +12:17:28 ============================================================================ +12:17:28 Slot Id : <188> +12:17:28 Transaction Type : REQUEST +12:17:28 Received From : +12:17:28 ============================================================================ +12:17:28 FNo. Len. Field Value +12:17:28 ============================================================================ +12:17:28 [ 1] [ 4] [0200] +12:17:28 [ 2] [ 16] [6213545000990295] +12:17:28 [ 3] [ 6] [010000] +12:17:28 [ 4] [ 12] [000050000000] +12:17:28 [ 7] [ 10] [0320051635] +12:17:28 [ 11] [ 6] [268976] +12:17:28 [ 12] [ 6] [121635] +12:17:28 [ 13] [ 4] [0320] +12:17:28 [ 14] [ 4] [4912] +12:17:28 [ 15] [ 4] [0320] +12:17:28 [ 18] [ 4] [6011] +12:17:28 [ 19] [ 3] [418] +12:17:28 [ 22] [ 3] [021] +12:17:28 [ 25] [ 2] [01] +12:17:28 [ 28] [ 9] [D00002000] +12:17:28 [ 32] [ 6] [180893] +12:17:28 [ 35] [ 32] [6213545000990295=491212019029226] +12:17:28 [ 37] [ 12] [507905268976] +12:17:28 [ 41] [ 8] [0366SKTT] +12:17:28 [ 42] [ 15] [999999 ] +12:17:28 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:17:28 [ 49] [ 3] [418] +12:17:28 [ 52] [ 16] [949A5A4FEA7909C4] +12:17:28 ============================================================================ +12:17:28 + + +waiting on router queue for slot.... +12:17:28 Sending to : +12:17:28 ============================================================================ +12:17:28 ============================================================================ +12:17:28 Slot Id : <188> +12:17:28 Transaction Type : REQUEST +12:17:28 Received From : +12:17:28 ============================================================================ +12:17:28 FNo. Len. Field Value +12:17:28 ============================================================================ +12:17:28 [ 1] [ 4] [0200] +12:17:28 [ 2] [ 16] [6213545000990295] +12:17:28 [ 3] [ 6] [010000] +12:17:28 [ 4] [ 12] [000050000000] +12:17:28 [ 7] [ 10] [0320051635] +12:17:28 [ 11] [ 6] [268976] +12:17:28 [ 12] [ 6] [121635] +12:17:28 [ 13] [ 4] [0320] +12:17:28 [ 14] [ 4] [4912] +12:17:28 [ 15] [ 4] [0320] +12:17:28 [ 18] [ 4] [6011] +12:17:28 [ 19] [ 3] [418] +12:17:28 [ 22] [ 3] [021] +12:17:28 [ 25] [ 2] [01] +12:17:28 [ 28] [ 9] [D00002000] +12:17:28 [ 32] [ 6] [180893] +12:17:28 [ 35] [ 32] [6213545000990295=491212019029226] +12:17:28 [ 37] [ 12] [507905268976] +12:17:28 [ 41] [ 8] [0366SKTT] +12:17:28 [ 42] [ 15] [999999 ] +12:17:28 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:17:28 [ 49] [ 3] [418] +12:17:28 [ 52] [ 16] [282B16CC3E06E935] +12:17:28 ============================================================================ +12:17:28 + + +waiting on router queue for slot.... +12:17:28 Sending to : <0> +12:17:28 ============================================================================ +12:17:29 ============================================================================ +12:17:29 Slot Id : <188> +12:17:29 Transaction Type : RESPONSE +12:17:29 Received From : +12:17:29 ============================================================================ +12:17:29 FNo. Len. Field Value +12:17:29 ============================================================================ +12:17:29 [ 1] [ 4] [0210] +12:17:29 [ 2] [ 16] [6213545000990295] +12:17:29 [ 3] [ 6] [010000] +12:17:29 [ 4] [ 12] [000050000000] +12:17:29 [ 7] [ 10] [0320051635] +12:17:29 [ 11] [ 6] [268976] +12:17:29 [ 12] [ 6] [121635] +12:17:29 [ 13] [ 4] [0320] +12:17:29 [ 15] [ 4] [0320] +12:17:29 [ 18] [ 4] [6011] +12:17:29 [ 19] [ 3] [418] +12:17:29 [ 32] [ 6] [180893] +12:17:29 [ 35] [ 32] [6213545000990295=491212019029226] +12:17:29 [ 37] [ 12] [507905268976] +12:17:29 [ 38] [ 6] [236113] +12:17:29 [ 39] [ 2] [00] +12:17:29 [ 41] [ 8] [0366SKTT] +12:17:29 [ 49] [ 3] [418] +12:17:29 [ 54] [ 40] [0001418C0000276814740002418C000027681474] +12:17:29 ============================================================================ +12:17:29 Sending to : +12:17:29 ============================================================================ +12:17:29 + + +waiting on router queue for slot.... +12:17:30 ============================================================================ +12:17:30 Slot Id : <188> +12:17:30 Transaction Type : RESPONSE +12:17:30 Received From : +12:17:30 ============================================================================ +12:17:30 FNo. Len. Field Value +12:17:30 ============================================================================ +12:17:30 [ 1] [ 4] [0210] +12:17:30 [ 2] [ 16] [6213545000990295] +12:17:30 [ 3] [ 6] [010000] +12:17:30 [ 4] [ 12] [000050000000] +12:17:30 [ 7] [ 10] [0320051635] +12:17:30 [ 11] [ 6] [268976] +12:17:30 [ 12] [ 6] [121635] +12:17:30 [ 13] [ 4] [0320] +12:17:30 [ 15] [ 4] [0320] +12:17:30 [ 18] [ 4] [6011] +12:17:30 [ 19] [ 3] [418] +12:17:30 [ 32] [ 6] [180893] +12:17:30 [ 35] [ 32] [6213545000990295=491212019029226] +12:17:30 [ 37] [ 12] [507905268976] +12:17:30 [ 38] [ 6] [236113] +12:17:30 [ 39] [ 2] [00] +12:17:30 [ 41] [ 8] [0366SKTT] +12:17:30 [ 49] [ 3] [418] +12:17:30 [ 54] [ 40] [0001418C0000276814740002418C000027681474] +12:17:30 ============================================================================ +12:17:30 Calculate Source COMM Id = 2 +12:17:30 ============================================================================ +12:17:30 + + +waiting on router queue for slot.... +12:17:42 ============================================================================ +12:17:42 Slot Id : <223> +12:17:42 Transaction Type : REQUEST +12:17:42 Received From : +12:17:42 ============================================================================ +12:17:42 FNo. Len. Field Value +12:17:42 ============================================================================ +12:17:42 [ 1] [ 4] [0800] +12:17:42 [ 7] [ 10] [0320051650] +12:17:42 [ 11] [ 6] [156269] +12:17:42 [ 70] [ 3] [301] +12:17:42 ============================================================================ +12:17:42 + + +waiting on router queue for slot.... +12:17:42 Sending to : +12:17:42 ============================================================================ +12:17:42 ============================================================================ +12:17:42 Slot Id : <223> +12:17:42 Transaction Type : RESPONSE +12:17:42 Received From : +12:17:42 ============================================================================ +12:17:42 FNo. Len. Field Value +12:17:42 ============================================================================ +12:17:42 [ 1] [ 4] [0810] +12:17:42 [ 7] [ 10] [0320051650] +12:17:42 [ 11] [ 6] [156269] +12:17:42 [ 39] [ 2] [00] +12:17:42 [ 70] [ 3] [301] +12:17:42 ============================================================================ +12:17:42 Calculate Source COMM Id = 2 +12:17:42 ============================================================================ +12:17:42 + + +waiting on router queue for slot.... +12:17:46 ============================================================================ +12:17:46 Slot Id : <246> +12:17:46 Transaction Type : REQUEST +12:17:46 Received From : +12:17:46 ============================================================================ +12:17:46 FNo. Len. Field Value +12:17:46 ============================================================================ +12:17:46 [ 1] [ 4] [0200] +12:17:46 [ 2] [ 16] [1808930600022354] +12:17:46 [ 3] [ 6] [011000] +12:17:46 [ 4] [ 12] [000006000000] +12:17:46 [ 7] [ 10] [0320121741] +12:17:46 [ 11] [ 6] [742639] +12:17:46 [ 12] [ 6] [121741] +12:17:46 [ 13] [ 4] [0320] +12:17:46 [ 15] [ 4] [0320] +12:17:46 [ 18] [ 4] [6011] +12:17:46 [ 22] [ 3] [900] +12:17:46 [ 25] [ 2] [02] +12:17:46 [ 28] [ 9] [D00002000] +12:17:46 [ 32] [ 6] [621354] +12:17:46 [ 35] [ 27] [1808930600022354=1803500118] +12:17:46 [ 37] [ 12] [507905187488] +12:17:46 [ 41] [ 8] [03004400] +12:17:46 [ 42] [ 15] [NATIVE ] +12:17:46 [ 43] [ 40] [Savanhpark Company Savannakhet LAO] +12:17:46 [ 49] [ 3] [418] +12:17:46 [ 52] [ 16] [44FBA9D1B19D1C2E] +12:17:46 ============================================================================ +12:17:46 + + +waiting on router queue for slot.... +12:17:46 Sending to : +12:17:46 ============================================================================ +12:17:46 Sending to : +12:17:46 ============================================================================ +12:17:46 ============================================================================ +12:17:46 Slot Id : <246> +12:17:46 Transaction Type : REQUEST +12:17:46 Received From : +12:17:46 ============================================================================ +12:17:46 FNo. Len. Field Value +12:17:46 ============================================================================ +12:17:46 [ 1] [ 4] [0200] +12:17:46 [ 2] [ 16] [1808930600022354] +12:17:46 [ 3] [ 6] [011000] +12:17:46 [ 4] [ 12] [000006000000] +12:17:46 [ 7] [ 10] [0320121741] +12:17:46 [ 11] [ 6] [742639] +12:17:46 [ 12] [ 6] [121741] +12:17:46 [ 13] [ 4] [0320] +12:17:46 [ 15] [ 4] [0320] +12:17:46 [ 18] [ 4] [6011] +12:17:46 [ 22] [ 3] [900] +12:17:46 [ 25] [ 2] [02] +12:17:46 [ 28] [ 9] [D00002000] +12:17:46 [ 32] [ 6] [621354] +12:17:46 [ 35] [ 27] [1808930600022354=1803500118] +12:17:46 [ 37] [ 12] [507905187488] +12:17:46 [ 41] [ 8] [03004400] +12:17:46 [ 42] [ 15] [NATIVE ] +12:17:46 [ 43] [ 40] [Savanhpark Company Savannakhet LAO] +12:17:46 [ 49] [ 3] [418] +12:17:46 [ 52] [ 16] [44FBA9D1B19D1C2E] +12:17:46 ============================================================================ +12:17:46 + + +waiting on router queue for slot.... +12:17:46 Sending to : +12:17:46 ============================================================================ +12:17:46 ============================================================================ +12:17:46 Slot Id : <246> +12:17:46 Transaction Type : REQUEST +12:17:46 Received From : +12:17:46 ============================================================================ +12:17:46 FNo. Len. Field Value +12:17:46 ============================================================================ +12:17:46 [ 1] [ 4] [0200] +12:17:46 [ 2] [ 16] [1808930600022354] +12:17:46 [ 3] [ 6] [011000] +12:17:46 [ 4] [ 12] [000006000000] +12:17:46 [ 7] [ 10] [0320121741] +12:17:46 [ 11] [ 6] [742639] +12:17:46 [ 12] [ 6] [121741] +12:17:46 [ 13] [ 4] [0320] +12:17:46 [ 15] [ 4] [0320] +12:17:46 [ 18] [ 4] [6011] +12:17:46 [ 22] [ 3] [900] +12:17:46 [ 25] [ 2] [02] +12:17:46 [ 28] [ 9] [D00002000] +12:17:46 [ 32] [ 6] [621354] +12:17:46 [ 35] [ 27] [1808930600022354=1803500118] +12:17:46 [ 37] [ 12] [507905187488] +12:17:46 [ 41] [ 8] [03004400] +12:17:46 [ 42] [ 15] [NATIVE ] +12:17:46 [ 43] [ 40] [Savanhpark Company Savannakhet LAO] +12:17:46 [ 49] [ 3] [418] +12:17:46 [ 52] [ 16] [E48B9148855C3DC8] +12:17:46 ============================================================================ +12:17:46 + + +waiting on router queue for slot.... +12:17:46 Sending to : <2> +12:17:46 ============================================================================ +12:17:52 ============================================================================ +12:17:52 Slot Id : <246> +12:17:52 Transaction Type : RESPONSE +12:17:52 Received From : +12:17:52 ============================================================================ +12:17:52 FNo. Len. Field Value +12:17:52 ============================================================================ +12:17:52 [ 1] [ 4] [0210] +12:17:52 [ 2] [ 16] [1808930600022354] +12:17:52 [ 3] [ 6] [011000] +12:17:52 [ 4] [ 12] [000006000000] +12:17:52 [ 6] [ 12] [000006000000] +12:17:52 [ 7] [ 10] [0320121741] +12:17:52 [ 11] [ 6] [742639] +12:17:52 [ 12] [ 6] [121741] +12:17:52 [ 13] [ 4] [0320] +12:17:52 [ 18] [ 4] [6011] +12:17:52 [ 19] [ 3] [418] +12:17:52 [ 22] [ 3] [021] +12:17:52 [ 32] [ 6] [621354] +12:17:52 [ 35] [ 27] [1808930600022354=1803500118] +12:17:52 [ 37] [ 12] [507905187488] +12:17:52 [ 38] [ 6] [742639] +12:17:52 [ 39] [ 2] [00] +12:17:52 [ 41] [ 8] [03004400] +12:17:52 [ 49] [ 3] [418] +12:17:52 [ 52] [ 16] [E48B9148855C3DC8] +12:17:52 [ 54] [ 20] [1001418C000005642700] +12:17:52 ============================================================================ +12:17:52 Sending to : +12:17:52 ============================================================================ +12:17:52 + + +waiting on router queue for slot.... +12:17:54 ============================================================================ +12:17:54 Slot Id : <246> +12:17:54 Transaction Type : RESPONSE +12:17:54 Received From : +12:17:54 ============================================================================ +12:17:54 FNo. Len. Field Value +12:17:54 ============================================================================ +12:17:54 [ 1] [ 4] [0210] +12:17:54 [ 2] [ 16] [1808930600022354] +12:17:54 [ 3] [ 6] [011000] +12:17:54 [ 4] [ 12] [000006000000] +12:17:54 [ 6] [ 12] [000006000000] +12:17:54 [ 7] [ 10] [0320121741] +12:17:54 [ 11] [ 6] [742639] +12:17:54 [ 12] [ 6] [121741] +12:17:54 [ 13] [ 4] [0320] +12:17:54 [ 18] [ 4] [6011] +12:17:54 [ 19] [ 3] [418] +12:17:54 [ 22] [ 3] [021] +12:17:54 [ 32] [ 6] [621354] +12:17:54 [ 35] [ 27] [1808930600022354=1803500118] +12:17:54 [ 37] [ 12] [507905187488] +12:17:54 [ 38] [ 6] [742639] +12:17:54 [ 39] [ 2] [00] +12:17:54 [ 41] [ 8] [03004400] +12:17:54 [ 49] [ 3] [418] +12:17:54 [ 52] [ 16] [E48B9148855C3DC8] +12:17:54 [ 54] [ 20] [1001418C000005642700] +12:17:54 ============================================================================ +12:17:54 Calculate Source COMM Id = 0 +12:17:54 ============================================================================ +12:17:54 + + +waiting on router queue for slot.... +12:17:57 ============================================================================ +12:17:57 Slot Id : <215> +12:17:57 Transaction Type : REQUEST +12:17:57 Received From : +12:17:57 ============================================================================ +12:17:57 FNo. Len. Field Value +12:17:57 ============================================================================ +12:17:57 [ 1] [ 4] [0200] +12:17:57 [ 2] [ 16] [6213544001693891] +12:17:57 [ 3] [ 6] [011000] +12:17:57 [ 4] [ 12] [000005000000] +12:17:57 [ 7] [ 10] [0320051703] +12:17:57 [ 11] [ 6] [268981] +12:17:57 [ 12] [ 6] [121703] +12:17:57 [ 13] [ 4] [0320] +12:17:57 [ 14] [ 4] [4912] +12:17:57 [ 15] [ 4] [0320] +12:17:57 [ 18] [ 4] [6011] +12:17:57 [ 19] [ 3] [418] +12:17:57 [ 22] [ 3] [021] +12:17:57 [ 25] [ 2] [01] +12:17:57 [ 28] [ 9] [D00002000] +12:17:57 [ 32] [ 6] [180893] +12:17:57 [ 35] [ 32] [6213544001693891=491212019389181] +12:17:57 [ 37] [ 12] [507905268981] +12:17:57 [ 41] [ 8] [0106NAXA] +12:17:57 [ 42] [ 15] [999999 ] +12:17:57 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +12:17:57 [ 49] [ 3] [418] +12:17:57 [ 52] [ 16] [2C317B3AC840A80E] +12:17:57 ============================================================================ +12:17:57 + + +waiting on router queue for slot.... +12:17:57 Sending to : +12:17:57 ============================================================================ +12:17:57 Sending to : +12:17:57 ============================================================================ +12:17:57 ============================================================================ +12:17:57 Slot Id : <215> +12:17:57 Transaction Type : REQUEST +12:17:57 Received From : +12:17:57 ============================================================================ +12:17:57 FNo. Len. Field Value +12:17:57 ============================================================================ +12:17:57 [ 1] [ 4] [0200] +12:17:57 [ 2] [ 16] [6213544001693891] +12:17:57 [ 3] [ 6] [011000] +12:17:57 [ 4] [ 12] [000005000000] +12:17:57 [ 7] [ 10] [0320051703] +12:17:57 [ 11] [ 6] [268981] +12:17:57 [ 12] [ 6] [121703] +12:17:57 [ 13] [ 4] [0320] +12:17:57 [ 14] [ 4] [4912] +12:17:57 [ 15] [ 4] [0320] +12:17:57 [ 18] [ 4] [6011] +12:17:57 [ 19] [ 3] [418] +12:17:57 [ 22] [ 3] [021] +12:17:57 [ 25] [ 2] [01] +12:17:57 [ 28] [ 9] [D00002000] +12:17:57 [ 32] [ 6] [180893] +12:17:57 [ 35] [ 32] [6213544001693891=491212019389181] +12:17:57 [ 37] [ 12] [507905268981] +12:17:57 [ 41] [ 8] [0106NAXA] +12:17:57 [ 42] [ 15] [999999 ] +12:17:57 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +12:17:57 [ 49] [ 3] [418] +12:17:57 [ 52] [ 16] [2C317B3AC840A80E] +12:17:57 ============================================================================ +12:17:57 + + +waiting on router queue for slot.... +12:17:57 Sending to : +12:17:57 ============================================================================ +12:17:57 ============================================================================ +12:17:57 Slot Id : <215> +12:17:57 Transaction Type : REQUEST +12:17:57 Received From : +12:17:57 ============================================================================ +12:17:57 FNo. Len. Field Value +12:17:57 ============================================================================ +12:17:57 [ 1] [ 4] [0200] +12:17:57 [ 2] [ 16] [6213544001693891] +12:17:57 [ 3] [ 6] [011000] +12:17:57 [ 4] [ 12] [000005000000] +12:17:57 [ 7] [ 10] [0320051703] +12:17:57 [ 11] [ 6] [268981] +12:17:57 [ 12] [ 6] [121703] +12:17:57 [ 13] [ 4] [0320] +12:17:57 [ 14] [ 4] [4912] +12:17:57 [ 15] [ 4] [0320] +12:17:57 [ 18] [ 4] [6011] +12:17:57 [ 19] [ 3] [418] +12:17:57 [ 22] [ 3] [021] +12:17:57 [ 25] [ 2] [01] +12:17:57 [ 28] [ 9] [D00002000] +12:17:57 [ 32] [ 6] [180893] +12:17:57 [ 35] [ 32] [6213544001693891=491212019389181] +12:17:57 [ 37] [ 12] [507905268981] +12:17:57 [ 41] [ 8] [0106NAXA] +12:17:57 [ 42] [ 15] [999999 ] +12:17:57 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +12:17:57 [ 49] [ 3] [418] +12:17:57 [ 52] [ 16] [38C4778105263855] +12:17:57 ============================================================================ +12:17:57 + + +waiting on router queue for slot.... +12:17:57 Sending to : <0> +12:17:57 ============================================================================ +12:17:59 ============================================================================ +12:17:59 Slot Id : <248> +12:17:59 Transaction Type : REQUEST +12:17:59 Received From : +12:17:59 ============================================================================ +12:17:59 FNo. Len. Field Value +12:17:59 ============================================================================ +12:17:59 [ 1] [ 4] [0800] +12:17:59 [ 7] [ 10] [0320051706] +12:17:59 [ 11] [ 6] [156270] +12:17:59 [ 70] [ 3] [301] +12:17:59 ============================================================================ +12:17:59 + + +waiting on router queue for slot.... +12:17:59 Sending to : +12:17:59 ============================================================================ +12:17:59 ============================================================================ +12:17:59 Slot Id : <248> +12:17:59 Transaction Type : RESPONSE +12:17:59 Received From : +12:17:59 ============================================================================ +12:17:59 FNo. Len. Field Value +12:17:59 ============================================================================ +12:17:59 [ 1] [ 4] [0810] +12:17:59 [ 7] [ 10] [0320051706] +12:17:59 [ 11] [ 6] [156270] +12:17:59 [ 39] [ 2] [00] +12:17:59 [ 70] [ 3] [301] +12:17:59 ============================================================================ +12:17:59 Calculate Source COMM Id = 2 +12:17:59 ============================================================================ +12:17:59 + + +waiting on router queue for slot.... +12:17:59 ============================================================================ +12:17:59 Slot Id : <215> +12:17:59 Transaction Type : RESPONSE +12:17:59 Received From : +12:17:59 ============================================================================ +12:17:59 FNo. Len. Field Value +12:17:59 ============================================================================ +12:17:59 [ 1] [ 4] [0210] +12:17:59 [ 2] [ 16] [6213544001693891] +12:17:59 [ 3] [ 6] [011000] +12:17:59 [ 4] [ 12] [000005000000] +12:17:59 [ 7] [ 10] [0320051703] +12:17:59 [ 11] [ 6] [268981] +12:17:59 [ 12] [ 6] [121703] +12:17:59 [ 13] [ 4] [0320] +12:17:59 [ 15] [ 4] [0320] +12:17:59 [ 18] [ 4] [6011] +12:17:59 [ 19] [ 3] [418] +12:17:59 [ 32] [ 6] [180893] +12:17:59 [ 35] [ 32] [6213544001693891=491212019389181] +12:17:59 [ 37] [ 12] [507905268981] +12:17:59 [ 38] [ 6] [268981] +12:17:59 [ 39] [ 2] [51] +12:17:59 [ 41] [ 8] [0106NAXA] +12:17:59 [ 49] [ 3] [418] +12:17:59 [ 54] [ 40] [1001418C0000095901901002418C000009590190] +12:17:59 ============================================================================ +12:17:59 Sending to : +12:17:59 ============================================================================ +12:17:59 + + +waiting on router queue for slot.... +12:18:00 ============================================================================ +12:18:00 Slot Id : <215> +12:18:00 Transaction Type : RESPONSE +12:18:00 Received From : +12:18:00 ============================================================================ +12:18:00 FNo. Len. Field Value +12:18:00 ============================================================================ +12:18:00 [ 1] [ 4] [0210] +12:18:00 [ 2] [ 16] [6213544001693891] +12:18:00 [ 3] [ 6] [011000] +12:18:00 [ 4] [ 12] [000005000000] +12:18:00 [ 7] [ 10] [0320051703] +12:18:00 [ 11] [ 6] [268981] +12:18:00 [ 12] [ 6] [121703] +12:18:00 [ 13] [ 4] [0320] +12:18:00 [ 15] [ 4] [0320] +12:18:00 [ 18] [ 4] [6011] +12:18:00 [ 19] [ 3] [418] +12:18:00 [ 32] [ 6] [180893] +12:18:00 [ 35] [ 32] [6213544001693891=491212019389181] +12:18:00 [ 37] [ 12] [507905268981] +12:18:00 [ 38] [ 6] [268981] +12:18:00 [ 39] [ 2] [51] +12:18:00 [ 41] [ 8] [0106NAXA] +12:18:00 [ 49] [ 3] [418] +12:18:00 [ 54] [ 40] [1001418C0000095901901002418C000009590190] +12:18:00 ============================================================================ +12:18:00 Calculate Source COMM Id = 2 +12:18:00 ============================================================================ +12:18:00 + + +waiting on router queue for slot.... +12:18:15 ============================================================================ +12:18:15 Slot Id : <243> +12:18:15 Transaction Type : REQUEST +12:18:15 Received From : +12:18:15 ============================================================================ +12:18:15 FNo. Len. Field Value +12:18:15 ============================================================================ +12:18:15 [ 1] [ 4] [0800] +12:18:15 [ 7] [ 10] [0320051722] +12:18:15 [ 11] [ 6] [156271] +12:18:15 [ 70] [ 3] [301] +12:18:15 ============================================================================ +12:18:15 + + +waiting on router queue for slot.... +12:18:15 Sending to : +12:18:15 ============================================================================ +12:18:15 ============================================================================ +12:18:15 Slot Id : <243> +12:18:15 Transaction Type : RESPONSE +12:18:15 Received From : +12:18:15 ============================================================================ +12:18:15 FNo. Len. Field Value +12:18:15 ============================================================================ +12:18:15 [ 1] [ 4] [0810] +12:18:15 [ 7] [ 10] [0320051722] +12:18:15 [ 11] [ 6] [156271] +12:18:15 [ 39] [ 2] [00] +12:18:15 [ 70] [ 3] [301] +12:18:15 ============================================================================ +12:18:15 Calculate Source COMM Id = 2 +12:18:15 ============================================================================ +12:18:15 + + +waiting on router queue for slot.... +12:18:26 ============================================================================ +12:18:26 Slot Id : <244> +12:18:26 Transaction Type : REQUEST +12:18:26 Received From : +12:18:26 ============================================================================ +12:18:26 FNo. Len. Field Value +12:18:26 ============================================================================ +12:18:26 [ 1] [ 4] [0800] +12:18:26 [ 2] [ 5] [02531] +12:18:26 [ 3] [ 6] [579128] +12:18:26 [ 7] [ 10] [0320051826] +12:18:26 [ 11] [ 6] [807126] +12:18:26 [ 15] [ 10] [0320051826] +12:18:26 [ 37] [ 11] [57912807126] +12:18:26 [ 70] [ 3] [001] +12:18:26 ============================================================================ +12:18:26 + + +waiting on router queue for slot.... +12:18:26 ============================================================================ +12:18:26 Slot Id : <244> +12:18:26 Transaction Type : RESPONSE +12:18:26 Received From : +12:18:26 ============================================================================ +12:18:26 FNo. Len. Field Value +12:18:26 ============================================================================ +12:18:26 [ 1] [ 4] [0810] +12:18:26 [ 7] [ 10] [0320051826] +12:18:26 [ 11] [ 6] [807126] +12:18:26 [ 15] [ 4] [0320] +12:18:26 [ 37] [ 12] [57912807126] +12:18:26 [ 39] [ 2] [00] +12:18:26 [ 70] [ 3] [001] +12:18:26 ============================================================================ +12:18:26 Sending to : +12:18:26 ============================================================================ +12:18:26 + + +waiting on router queue for slot.... +12:18:30 ============================================================================ +12:18:30 Slot Id : <227> +12:18:30 Transaction Type : REQUEST +12:18:30 Received From : +12:18:30 ============================================================================ +12:18:30 FNo. Len. Field Value +12:18:30 ============================================================================ +12:18:30 [ 1] [ 4] [0800] +12:18:30 [ 7] [ 10] [0320051737] +12:18:30 [ 11] [ 6] [156272] +12:18:30 [ 70] [ 3] [301] +12:18:30 ============================================================================ +12:18:30 + + +waiting on router queue for slot.... +12:18:30 Sending to : +12:18:30 ============================================================================ +12:18:30 ============================================================================ +12:18:30 Slot Id : <227> +12:18:30 Transaction Type : RESPONSE +12:18:30 Received From : +12:18:30 ============================================================================ +12:18:30 FNo. Len. Field Value +12:18:30 ============================================================================ +12:18:30 [ 1] [ 4] [0810] +12:18:30 [ 7] [ 10] [0320051737] +12:18:30 [ 11] [ 6] [156272] +12:18:30 [ 39] [ 2] [00] +12:18:30 [ 70] [ 3] [301] +12:18:30 ============================================================================ +12:18:30 Calculate Source COMM Id = 2 +12:18:30 ============================================================================ +12:18:30 + + +waiting on router queue for slot.... +12:18:41 ============================================================================ +12:18:41 Slot Id : <235> +12:18:41 Transaction Type : REQUEST +12:18:41 Received From : +12:18:41 ============================================================================ +12:18:41 FNo. Len. Field Value +12:18:41 ============================================================================ +12:18:41 [ 1] [ 4] [0800] +12:18:41 [ 7] [ 10] [0320051748] +12:18:41 [ 11] [ 6] [156273] +12:18:41 [ 70] [ 3] [301] +12:18:41 ============================================================================ +12:18:41 + + +waiting on router queue for slot.... +12:18:41 Sending to : +12:18:41 ============================================================================ +12:18:41 ============================================================================ +12:18:41 Slot Id : <235> +12:18:41 Transaction Type : RESPONSE +12:18:41 Received From : +12:18:41 ============================================================================ +12:18:41 FNo. Len. Field Value +12:18:41 ============================================================================ +12:18:41 [ 1] [ 4] [0810] +12:18:41 [ 7] [ 10] [0320051748] +12:18:41 [ 11] [ 6] [156273] +12:18:41 [ 39] [ 2] [00] +12:18:41 [ 70] [ 3] [301] +12:18:41 ============================================================================ +12:18:41 Calculate Source COMM Id = 2 +12:18:41 ============================================================================ +12:18:41 + + +waiting on router queue for slot.... +12:18:44 ============================================================================ +12:18:44 Slot Id : <251> +12:18:44 Transaction Type : REQUEST +12:18:44 Received From : +12:18:44 ============================================================================ +12:18:44 FNo. Len. Field Value +12:18:44 ============================================================================ +12:18:44 [ 1] [ 4] [0200] +12:18:44 [ 2] [ 16] [6213544001693891] +12:18:44 [ 3] [ 6] [011000] +12:18:44 [ 4] [ 12] [000004000000] +12:18:44 [ 7] [ 10] [0320051750] +12:18:44 [ 11] [ 6] [268984] +12:18:44 [ 12] [ 6] [121750] +12:18:44 [ 13] [ 4] [0320] +12:18:44 [ 14] [ 4] [4912] +12:18:44 [ 15] [ 4] [0320] +12:18:44 [ 18] [ 4] [6011] +12:18:44 [ 19] [ 3] [418] +12:18:44 [ 22] [ 3] [021] +12:18:44 [ 25] [ 2] [01] +12:18:44 [ 28] [ 9] [D00002000] +12:18:44 [ 32] [ 6] [180893] +12:18:44 [ 35] [ 32] [6213544001693891=491212019389181] +12:18:44 [ 37] [ 12] [507905268984] +12:18:44 [ 41] [ 8] [0106NAXA] +12:18:44 [ 42] [ 15] [999999 ] +12:18:44 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +12:18:44 [ 49] [ 3] [418] +12:18:44 [ 52] [ 16] [2C317B3AC840A80E] +12:18:44 ============================================================================ +12:18:44 + + +waiting on router queue for slot.... +12:18:44 Sending to : +12:18:44 ============================================================================ +12:18:44 Sending to : +12:18:44 ============================================================================ +12:18:44 ============================================================================ +12:18:44 Slot Id : <251> +12:18:44 Transaction Type : REQUEST +12:18:44 Received From : +12:18:44 ============================================================================ +12:18:44 FNo. Len. Field Value +12:18:44 ============================================================================ +12:18:44 [ 1] [ 4] [0200] +12:18:44 [ 2] [ 16] [6213544001693891] +12:18:44 [ 3] [ 6] [011000] +12:18:44 [ 4] [ 12] [000004000000] +12:18:44 [ 7] [ 10] [0320051750] +12:18:44 [ 11] [ 6] [268984] +12:18:44 [ 12] [ 6] [121750] +12:18:44 [ 13] [ 4] [0320] +12:18:44 [ 14] [ 4] [4912] +12:18:44 [ 15] [ 4] [0320] +12:18:44 [ 18] [ 4] [6011] +12:18:44 [ 19] [ 3] [418] +12:18:44 [ 22] [ 3] [021] +12:18:44 [ 25] [ 2] [01] +12:18:44 [ 28] [ 9] [D00002000] +12:18:44 [ 32] [ 6] [180893] +12:18:44 [ 35] [ 32] [6213544001693891=491212019389181] +12:18:44 [ 37] [ 12] [507905268984] +12:18:44 [ 41] [ 8] [0106NAXA] +12:18:44 [ 42] [ 15] [999999 ] +12:18:44 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +12:18:44 [ 49] [ 3] [418] +12:18:44 [ 52] [ 16] [2C317B3AC840A80E] +12:18:44 ============================================================================ +12:18:44 + + +waiting on router queue for slot.... +12:18:44 Sending to : +12:18:44 ============================================================================ +12:18:44 ============================================================================ +12:18:44 Slot Id : <251> +12:18:44 Transaction Type : REQUEST +12:18:44 Received From : +12:18:44 ============================================================================ +12:18:44 FNo. Len. Field Value +12:18:44 ============================================================================ +12:18:44 [ 1] [ 4] [0200] +12:18:44 [ 2] [ 16] [6213544001693891] +12:18:44 [ 3] [ 6] [011000] +12:18:44 [ 4] [ 12] [000004000000] +12:18:44 [ 7] [ 10] [0320051750] +12:18:44 [ 11] [ 6] [268984] +12:18:44 [ 12] [ 6] [121750] +12:18:44 [ 13] [ 4] [0320] +12:18:44 [ 14] [ 4] [4912] +12:18:44 [ 15] [ 4] [0320] +12:18:44 [ 18] [ 4] [6011] +12:18:44 [ 19] [ 3] [418] +12:18:44 [ 22] [ 3] [021] +12:18:44 [ 25] [ 2] [01] +12:18:44 [ 28] [ 9] [D00002000] +12:18:44 [ 32] [ 6] [180893] +12:18:44 [ 35] [ 32] [6213544001693891=491212019389181] +12:18:44 [ 37] [ 12] [507905268984] +12:18:44 [ 41] [ 8] [0106NAXA] +12:18:44 [ 42] [ 15] [999999 ] +12:18:44 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +12:18:44 [ 49] [ 3] [418] +12:18:44 [ 52] [ 16] [38C4778105263855] +12:18:44 ============================================================================ +12:18:44 + + +waiting on router queue for slot.... +12:18:44 Sending to : <0> +12:18:44 ============================================================================ +12:18:45 ============================================================================ +12:18:45 Slot Id : <251> +12:18:45 Transaction Type : RESPONSE +12:18:45 Received From : +12:18:45 ============================================================================ +12:18:45 FNo. Len. Field Value +12:18:45 ============================================================================ +12:18:45 [ 1] [ 4] [0210] +12:18:45 [ 2] [ 16] [6213544001693891] +12:18:45 [ 3] [ 6] [011000] +12:18:45 [ 4] [ 12] [000004000000] +12:18:45 [ 7] [ 10] [0320051750] +12:18:45 [ 11] [ 6] [268984] +12:18:45 [ 12] [ 6] [121750] +12:18:45 [ 13] [ 4] [0320] +12:18:45 [ 15] [ 4] [0320] +12:18:45 [ 18] [ 4] [6011] +12:18:45 [ 19] [ 3] [418] +12:18:45 [ 32] [ 6] [180893] +12:18:45 [ 35] [ 32] [6213544001693891=491212019389181] +12:18:45 [ 37] [ 12] [507905268984] +12:18:45 [ 38] [ 6] [292602] +12:18:45 [ 39] [ 2] [00] +12:18:45 [ 41] [ 8] [0106NAXA] +12:18:45 [ 49] [ 3] [418] +12:18:45 [ 54] [ 40] [1001418C0000053901901002418C000005390190] +12:18:45 ============================================================================ +12:18:45 Sending to : +12:18:45 ============================================================================ +12:18:45 + + +waiting on router queue for slot.... +12:18:46 ============================================================================ +12:18:46 Slot Id : <251> +12:18:46 Transaction Type : RESPONSE +12:18:46 Received From : +12:18:46 ============================================================================ +12:18:46 FNo. Len. Field Value +12:18:46 ============================================================================ +12:18:46 [ 1] [ 4] [0210] +12:18:46 [ 2] [ 16] [6213544001693891] +12:18:46 [ 3] [ 6] [011000] +12:18:46 [ 4] [ 12] [000004000000] +12:18:46 [ 7] [ 10] [0320051750] +12:18:46 [ 11] [ 6] [268984] +12:18:46 [ 12] [ 6] [121750] +12:18:46 [ 13] [ 4] [0320] +12:18:46 [ 15] [ 4] [0320] +12:18:46 [ 18] [ 4] [6011] +12:18:46 [ 19] [ 3] [418] +12:18:46 [ 32] [ 6] [180893] +12:18:46 [ 35] [ 32] [6213544001693891=491212019389181] +12:18:46 [ 37] [ 12] [507905268984] +12:18:46 [ 38] [ 6] [292602] +12:18:46 [ 39] [ 2] [00] +12:18:46 [ 41] [ 8] [0106NAXA] +12:18:46 [ 49] [ 3] [418] +12:18:46 [ 54] [ 40] [1001418C0000053901901002418C000005390190] +12:18:46 ============================================================================ +12:18:46 Calculate Source COMM Id = 2 +12:18:46 ============================================================================ +12:18:46 + + +waiting on router queue for slot.... +12:18:58 ============================================================================ +12:18:58 Slot Id : <250> +12:18:58 Transaction Type : REQUEST +12:18:58 Received From : +12:18:58 ============================================================================ +12:18:58 FNo. Len. Field Value +12:18:58 ============================================================================ +12:18:58 [ 1] [ 4] [0800] +12:18:58 [ 7] [ 10] [0320051805] +12:18:58 [ 11] [ 6] [156274] +12:18:58 [ 70] [ 3] [301] +12:18:58 ============================================================================ +12:18:58 + + +waiting on router queue for slot.... +12:18:58 Sending to : +12:18:58 ============================================================================ +12:18:58 ============================================================================ +12:18:58 Slot Id : <250> +12:18:58 Transaction Type : RESPONSE +12:18:58 Received From : +12:18:58 ============================================================================ +12:18:58 FNo. Len. Field Value +12:18:58 ============================================================================ +12:18:58 [ 1] [ 4] [0810] +12:18:58 [ 7] [ 10] [0320051805] +12:18:58 [ 11] [ 6] [156274] +12:18:58 [ 39] [ 2] [00] +12:18:58 [ 70] [ 3] [301] +12:18:58 ============================================================================ +12:18:58 Calculate Source COMM Id = 2 +12:18:58 ============================================================================ +12:18:58 + + +waiting on router queue for slot.... +12:19:13 ============================================================================ +12:19:13 Slot Id : <177> +12:19:13 Transaction Type : REQUEST +12:19:13 Received From : +12:19:13 ============================================================================ +12:19:13 FNo. Len. Field Value +12:19:13 ============================================================================ +12:19:13 [ 1] [ 4] [0800] +12:19:13 [ 7] [ 10] [0320051821] +12:19:13 [ 11] [ 6] [156275] +12:19:13 [ 70] [ 3] [301] +12:19:13 ============================================================================ +12:19:13 + + +waiting on router queue for slot.... +12:19:13 Sending to : +12:19:13 ============================================================================ +12:19:13 ============================================================================ +12:19:13 Slot Id : <177> +12:19:13 Transaction Type : RESPONSE +12:19:13 Received From : +12:19:13 ============================================================================ +12:19:13 FNo. Len. Field Value +12:19:13 ============================================================================ +12:19:13 [ 1] [ 4] [0810] +12:19:13 [ 7] [ 10] [0320051821] +12:19:13 [ 11] [ 6] [156275] +12:19:13 [ 39] [ 2] [00] +12:19:13 [ 70] [ 3] [301] +12:19:13 ============================================================================ +12:19:13 Calculate Source COMM Id = 2 +12:19:13 ============================================================================ +12:19:13 + + +waiting on router queue for slot.... +12:19:19 ============================================================================ +12:19:19 Slot Id : <226> +12:19:19 Transaction Type : REQUEST +12:19:19 Received From : +12:19:19 ============================================================================ +12:19:19 FNo. Len. Field Value +12:19:19 ============================================================================ +12:19:19 [ 1] [ 4] [0800] +12:19:19 [ 7] [ 10] [0320121906] +12:19:19 [ 11] [ 6] [075453] +12:19:19 [ 37] [ 12] [507912075453] +12:19:19 [ 70] [ 3] [ ] +12:19:19 ============================================================================ +12:19:19 + + +waiting on router queue for slot.... +12:19:19 Sending to : +12:19:19 ============================================================================ +12:19:19 ============================================================================ +12:19:19 Slot Id : <226> +12:19:19 Transaction Type : RESPONSE +12:19:19 Received From : +12:19:19 ============================================================================ +12:19:19 FNo. Len. Field Value +12:19:19 ============================================================================ +12:19:19 [ 1] [ 4] [0810] +12:19:19 [ 7] [ 10] [0320121906] +12:19:19 [ 11] [ 6] [075453] +12:19:19 [ 37] [ 12] [507912075453] +12:19:19 [ 39] [ 2] [91] +12:19:19 [ 70] [ 3] [ ] +12:19:19 ============================================================================ +12:19:19 Calculate Source COMM Id = 3 +12:19:19 ============================================================================ +12:19:19 + + +waiting on router queue for slot.... +12:19:27 ============================================================================ +12:19:27 Slot Id : <242> +12:19:27 Transaction Type : REQUEST +12:19:27 Received From : +12:19:27 ============================================================================ +12:19:27 FNo. Len. Field Value +12:19:27 ============================================================================ +12:19:27 [ 1] [ 4] [0800] +12:19:27 [ 7] [ 10] [0320051832] +12:19:27 [ 11] [ 6] [156276] +12:19:27 [ 70] [ 3] [301] +12:19:27 ============================================================================ +12:19:27 + + +waiting on router queue for slot.... +12:19:27 Sending to : +12:19:27 ============================================================================ +12:19:27 ============================================================================ +12:19:27 Slot Id : <242> +12:19:27 Transaction Type : RESPONSE +12:19:27 Received From : +12:19:27 ============================================================================ +12:19:27 FNo. Len. Field Value +12:19:27 ============================================================================ +12:19:27 [ 1] [ 4] [0810] +12:19:27 [ 7] [ 10] [0320051832] +12:19:27 [ 11] [ 6] [156276] +12:19:27 [ 39] [ 2] [00] +12:19:27 [ 70] [ 3] [301] +12:19:27 ============================================================================ +12:19:27 Calculate Source COMM Id = 2 +12:19:27 ============================================================================ +12:19:27 + + +waiting on router queue for slot.... +12:19:28 ============================================================================ +12:19:28 Slot Id : <255> +12:19:28 Transaction Type : REQUEST +12:19:28 Received From : +12:19:28 ============================================================================ +12:19:28 FNo. Len. Field Value +12:19:28 ============================================================================ +12:19:28 [ 1] [ 4] [0800] +12:19:28 [ 2] [ 5] [02531] +12:19:28 [ 3] [ 6] [579128] +12:19:28 [ 7] [ 10] [0320051928] +12:19:28 [ 11] [ 6] [807127] +12:19:28 [ 15] [ 10] [0320051928] +12:19:28 [ 37] [ 11] [57912807127] +12:19:28 [ 70] [ 3] [001] +12:19:28 ============================================================================ +12:19:28 + + +waiting on router queue for slot.... +12:19:28 ============================================================================ +12:19:28 Slot Id : <255> +12:19:28 Transaction Type : RESPONSE +12:19:28 Received From : +12:19:28 ============================================================================ +12:19:28 FNo. Len. Field Value +12:19:28 ============================================================================ +12:19:28 [ 1] [ 4] [0810] +12:19:28 [ 7] [ 10] [0320051928] +12:19:28 [ 11] [ 6] [807127] +12:19:28 [ 15] [ 4] [0320] +12:19:28 [ 37] [ 12] [57912807127] +12:19:28 [ 39] [ 2] [00] +12:19:28 [ 70] [ 3] [001] +12:19:28 ============================================================================ +12:19:28 Sending to : +12:19:28 ============================================================================ +12:19:28 + + +waiting on router queue for slot.... +12:19:40 ============================================================================ +12:19:40 Slot Id : <233> +12:19:40 Transaction Type : REQUEST +12:19:40 Received From : +12:19:40 ============================================================================ +12:19:40 FNo. Len. Field Value +12:19:40 ============================================================================ +12:19:40 [ 1] [ 4] [0800] +12:19:40 [ 7] [ 10] [0320051848] +12:19:40 [ 11] [ 6] [156277] +12:19:40 [ 70] [ 3] [301] +12:19:40 ============================================================================ +12:19:40 + + +waiting on router queue for slot.... +12:19:40 Sending to : +12:19:40 ============================================================================ +12:19:40 ============================================================================ +12:19:40 Slot Id : <233> +12:19:40 Transaction Type : RESPONSE +12:19:40 Received From : +12:19:40 ============================================================================ +12:19:40 FNo. Len. Field Value +12:19:40 ============================================================================ +12:19:40 [ 1] [ 4] [0810] +12:19:40 [ 7] [ 10] [0320051848] +12:19:40 [ 11] [ 6] [156277] +12:19:40 [ 39] [ 2] [00] +12:19:40 [ 70] [ 3] [301] +12:19:40 ============================================================================ +12:19:40 Calculate Source COMM Id = 2 +12:19:40 ============================================================================ +12:19:40 + + +waiting on router queue for slot.... +12:19:47 ============================================================================ +12:19:47 Slot Id : <238> +12:19:47 Transaction Type : REQUEST +12:19:47 Received From : +12:19:47 ============================================================================ +12:19:47 FNo. Len. Field Value +12:19:47 ============================================================================ +12:19:47 [ 1] [ 4] [0200] +12:19:47 [ 2] [ 16] [6688990040130492] +12:19:47 [ 3] [ 6] [010000] +12:19:47 [ 4] [ 12] [000025000000] +12:19:47 [ 7] [ 10] [0320121943] +12:19:47 [ 11] [ 6] [743078] +12:19:47 [ 12] [ 6] [121943] +12:19:47 [ 13] [ 4] [0320] +12:19:47 [ 15] [ 4] [0320] +12:19:47 [ 18] [ 4] [6011] +12:19:47 [ 22] [ 3] [900] +12:19:47 [ 25] [ 2] [02] +12:19:47 [ 28] [ 9] [D00002000] +12:19:47 [ 32] [ 6] [621354] +12:19:47 [ 35] [ 37] [6688990040130492=98041261822372700000] +12:19:47 [ 37] [ 12] [507904609845] +12:19:47 [ 41] [ 8] [02002300] +12:19:47 [ 42] [ 15] [NATIVE ] +12:19:47 [ 43] [ 40] [Meuang Mahaxay Mahaxay LAO] +12:19:47 [ 49] [ 3] [418] +12:19:47 [ 52] [ 16] [33F475BAFF8E10F8] +12:19:47 ============================================================================ +12:19:47 + + +waiting on router queue for slot.... +12:19:47 Sending to : +12:19:47 ============================================================================ +12:19:47 Sending to : +12:19:47 ============================================================================ +12:19:47 ============================================================================ +12:19:47 Slot Id : <238> +12:19:47 Transaction Type : REQUEST +12:19:47 Received From : +12:19:47 ============================================================================ +12:19:47 FNo. Len. Field Value +12:19:47 ============================================================================ +12:19:47 [ 1] [ 4] [0200] +12:19:47 [ 2] [ 16] [6688990040130492] +12:19:47 [ 3] [ 6] [010000] +12:19:47 [ 4] [ 12] [000025000000] +12:19:47 [ 7] [ 10] [0320121943] +12:19:47 [ 11] [ 6] [743078] +12:19:47 [ 12] [ 6] [121943] +12:19:47 [ 13] [ 4] [0320] +12:19:47 [ 15] [ 4] [0320] +12:19:47 [ 18] [ 4] [6011] +12:19:47 [ 22] [ 3] [900] +12:19:47 [ 25] [ 2] [02] +12:19:47 [ 28] [ 9] [D00002000] +12:19:47 [ 32] [ 6] [621354] +12:19:47 [ 35] [ 37] [6688990040130492=98041261822372700000] +12:19:47 [ 37] [ 12] [507904609845] +12:19:47 [ 41] [ 8] [02002300] +12:19:47 [ 42] [ 15] [NATIVE ] +12:19:47 [ 43] [ 40] [Meuang Mahaxay Mahaxay LAO] +12:19:47 [ 49] [ 3] [418] +12:19:47 [ 52] [ 16] [33F475BAFF8E10F8] +12:19:47 ============================================================================ +12:19:47 + + +waiting on router queue for slot.... +12:19:47 Sending to : +12:19:47 ============================================================================ +12:19:47 ============================================================================ +12:19:47 Slot Id : <238> +12:19:47 Transaction Type : REQUEST +12:19:47 Received From : +12:19:47 ============================================================================ +12:19:47 FNo. Len. Field Value +12:19:47 ============================================================================ +12:19:47 [ 1] [ 4] [0200] +12:19:47 [ 2] [ 16] [6688990040130492] +12:19:47 [ 3] [ 6] [010000] +12:19:47 [ 4] [ 12] [000025000000] +12:19:47 [ 7] [ 10] [0320121943] +12:19:47 [ 11] [ 6] [743078] +12:19:47 [ 12] [ 6] [121943] +12:19:47 [ 13] [ 4] [0320] +12:19:47 [ 15] [ 4] [0320] +12:19:47 [ 18] [ 4] [6011] +12:19:47 [ 22] [ 3] [900] +12:19:47 [ 25] [ 2] [02] +12:19:47 [ 28] [ 9] [D00002000] +12:19:47 [ 32] [ 6] [621354] +12:19:47 [ 35] [ 37] [6688990040130492=98041261822372700000] +12:19:47 [ 37] [ 12] [507904609845] +12:19:47 [ 41] [ 8] [02002300] +12:19:47 [ 42] [ 15] [NATIVE ] +12:19:47 [ 43] [ 40] [Meuang Mahaxay Mahaxay LAO] +12:19:47 [ 49] [ 3] [418] +12:19:47 [ 52] [ 16] [1E2B36277761E285] +12:19:47 ============================================================================ +12:19:47 + + +waiting on router queue for slot.... +12:19:47 Sending to : <4> +12:19:47 ============================================================================ +12:19:48 ============================================================================ +12:19:48 Slot Id : <238> +12:19:48 Transaction Type : RESPONSE +12:19:48 Received From : +12:19:48 ============================================================================ +12:19:48 FNo. Len. Field Value +12:19:48 ============================================================================ +12:19:48 [ 1] [ 4] [0210] +12:19:48 [ 2] [ 16] [6688990040130492] +12:19:48 [ 3] [ 6] [010000] +12:19:48 [ 4] [ 12] [000025000000] +12:19:48 [ 11] [ 6] [743078] +12:19:48 [ 12] [ 6] [121943] +12:19:48 [ 15] [ 4] [0320] +12:19:48 [ 18] [ 4] [6011] +12:19:48 [ 32] [ 6] [621354] +12:19:48 [ 35] [ 37] [6688990040130492=98041261822372700000] +12:19:48 [ 37] [ 12] [507904609845] +12:19:48 [ 38] [ 6] [385613] +12:19:48 [ 39] [ 2] [00] +12:19:48 [ 41] [ 8] [02002300] +12:19:48 [ 49] [ 3] [418] +12:19:48 [ 54] [ 20] [0002418C000384300000] +12:19:48 ============================================================================ +12:19:48 Sending to : +12:19:48 ============================================================================ +12:19:48 + + +waiting on router queue for slot.... +12:19:50 ============================================================================ +12:19:50 Slot Id : <238> +12:19:50 Transaction Type : RESPONSE +12:19:50 Received From : +12:19:50 ============================================================================ +12:19:50 FNo. Len. Field Value +12:19:50 ============================================================================ +12:19:50 [ 1] [ 4] [0210] +12:19:50 [ 2] [ 16] [6688990040130492] +12:19:50 [ 3] [ 6] [010000] +12:19:50 [ 4] [ 12] [000025000000] +12:19:50 [ 11] [ 6] [743078] +12:19:50 [ 12] [ 6] [121943] +12:19:50 [ 15] [ 4] [0320] +12:19:50 [ 18] [ 4] [6011] +12:19:50 [ 32] [ 6] [621354] +12:19:50 [ 35] [ 37] [6688990040130492=98041261822372700000] +12:19:50 [ 37] [ 12] [507904609845] +12:19:50 [ 38] [ 6] [385613] +12:19:50 [ 39] [ 2] [00] +12:19:50 [ 41] [ 8] [02002300] +12:19:50 [ 49] [ 3] [418] +12:19:50 [ 54] [ 20] [0002418C000384300000] +12:19:50 ============================================================================ +12:19:50 Calculate Source COMM Id = 0 +12:19:50 ============================================================================ +12:19:50 + + +waiting on router queue for slot.... +12:19:51 ============================================================================ +12:19:51 Slot Id : <200> +12:19:51 Transaction Type : REQUEST +12:19:51 Received From : +12:19:51 ============================================================================ +12:19:51 FNo. Len. Field Value +12:19:51 ============================================================================ +12:19:51 [ 1] [ 4] [0800] +12:19:51 [ 7] [ 10] [0320051859] +12:19:51 [ 11] [ 6] [156278] +12:19:51 [ 70] [ 3] [301] +12:19:51 ============================================================================ +12:19:51 + + +waiting on router queue for slot.... +12:19:51 Sending to : +12:19:51 ============================================================================ +12:19:51 ============================================================================ +12:19:51 Slot Id : <200> +12:19:51 Transaction Type : RESPONSE +12:19:51 Received From : +12:19:51 ============================================================================ +12:19:51 FNo. Len. Field Value +12:19:51 ============================================================================ +12:19:51 [ 1] [ 4] [0810] +12:19:51 [ 7] [ 10] [0320051859] +12:19:51 [ 11] [ 6] [156278] +12:19:51 [ 39] [ 2] [00] +12:19:51 [ 70] [ 3] [301] +12:19:51 ============================================================================ +12:19:51 Calculate Source COMM Id = 2 +12:19:51 ============================================================================ +12:19:51 + + +waiting on router queue for slot.... +12:19:55 ============================================================================ +12:19:55 Slot Id : <237> +12:19:55 Transaction Type : REQUEST +12:19:55 Received From : +12:19:55 ============================================================================ +12:19:55 FNo. Len. Field Value +12:19:55 ============================================================================ +12:19:55 [ 1] [ 4] [0800] +12:19:55 [ 7] [ 10] [0320052742] +12:19:55 [ 11] [ 6] [083089] +12:19:55 [ 37] [ 12] [57912083089] +12:19:55 [ 70] [ 3] [301] +12:19:55 ============================================================================ +12:19:55 + + +waiting on router queue for slot.... +12:19:55 Sending to : +12:19:55 ============================================================================ +12:19:55 ============================================================================ +12:19:55 Slot Id : <237> +12:19:55 Transaction Type : RESPONSE +12:19:55 Received From : +12:19:55 ============================================================================ +12:19:55 FNo. Len. Field Value +12:19:55 ============================================================================ +12:19:55 [ 1] [ 4] [0810] +12:19:55 [ 7] [ 10] [0320052742] +12:19:55 [ 11] [ 6] [083089] +12:19:55 [ 37] [ 12] [579120830890] +12:19:55 [ 39] [ 2] [00] +12:19:55 [ 70] [ 3] [810] +12:19:55 ============================================================================ +12:19:55 Calculate Source COMM Id = 1 +12:19:55 ============================================================================ +12:19:55 + + +waiting on router queue for slot.... +12:20:02 ============================================================================ +12:20:02 Slot Id : <216> +12:20:02 Transaction Type : REQUEST +12:20:02 Received From : +12:20:02 ============================================================================ +12:20:02 FNo. Len. Field Value +12:20:02 ============================================================================ +12:20:02 [ 1] [ 4] [0800] +12:20:02 [ 7] [ 10] [0320051909] +12:20:02 [ 11] [ 6] [156279] +12:20:02 [ 70] [ 3] [301] +12:20:02 ============================================================================ +12:20:02 + + +waiting on router queue for slot.... +12:20:02 Sending to : +12:20:02 ============================================================================ +12:20:02 ============================================================================ +12:20:02 Slot Id : <216> +12:20:02 Transaction Type : RESPONSE +12:20:02 Received From : +12:20:02 ============================================================================ +12:20:02 FNo. Len. Field Value +12:20:02 ============================================================================ +12:20:02 [ 1] [ 4] [0810] +12:20:02 [ 7] [ 10] [0320051909] +12:20:02 [ 11] [ 6] [156279] +12:20:02 [ 39] [ 2] [00] +12:20:02 [ 70] [ 3] [301] +12:20:02 ============================================================================ +12:20:02 Calculate Source COMM Id = 2 +12:20:02 ============================================================================ +12:20:02 + + +waiting on router queue for slot.... +12:20:13 ============================================================================ +12:20:13 Slot Id : <253> +12:20:13 Transaction Type : REQUEST +12:20:13 Received From : +12:20:13 ============================================================================ +12:20:13 FNo. Len. Field Value +12:20:13 ============================================================================ +12:20:13 [ 1] [ 4] [0800] +12:20:13 [ 7] [ 10] [0320051920] +12:20:13 [ 11] [ 6] [156280] +12:20:13 [ 70] [ 3] [301] +12:20:13 ============================================================================ +12:20:13 + + +waiting on router queue for slot.... +12:20:13 Sending to : +12:20:13 ============================================================================ +12:20:13 ============================================================================ +12:20:13 Slot Id : <253> +12:20:13 Transaction Type : RESPONSE +12:20:13 Received From : +12:20:13 ============================================================================ +12:20:13 FNo. Len. Field Value +12:20:13 ============================================================================ +12:20:13 [ 1] [ 4] [0810] +12:20:13 [ 7] [ 10] [0320051920] +12:20:13 [ 11] [ 6] [156280] +12:20:13 [ 39] [ 2] [00] +12:20:13 [ 70] [ 3] [301] +12:20:13 ============================================================================ +12:20:13 Calculate Source COMM Id = 2 +12:20:13 ============================================================================ +12:20:13 + + +waiting on router queue for slot.... +12:20:17 ============================================================================ +12:20:17 Slot Id : <260> +12:20:17 Transaction Type : REQUEST +12:20:17 Received From : +12:20:17 ============================================================================ +12:20:17 FNo. Len. Field Value +12:20:17 ============================================================================ +12:20:17 [ 1] [ 4] [0200] +12:20:17 [ 2] [ 16] [6213544001693891] +12:20:17 [ 3] [ 6] [011000] +12:20:17 [ 4] [ 12] [000002000000] +12:20:17 [ 7] [ 10] [0320051925] +12:20:17 [ 11] [ 6] [268989] +12:20:17 [ 12] [ 6] [121925] +12:20:17 [ 13] [ 4] [0320] +12:20:17 [ 14] [ 4] [4912] +12:20:17 [ 15] [ 4] [0320] +12:20:17 [ 18] [ 4] [6011] +12:20:17 [ 19] [ 3] [418] +12:20:17 [ 22] [ 3] [021] +12:20:17 [ 25] [ 2] [01] +12:20:17 [ 28] [ 9] [D00002000] +12:20:17 [ 32] [ 6] [180893] +12:20:17 [ 35] [ 32] [6213544001693891=491212019389181] +12:20:17 [ 37] [ 12] [507905268989] +12:20:17 [ 41] [ 8] [0106NAXA] +12:20:17 [ 42] [ 15] [999999 ] +12:20:17 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +12:20:17 [ 49] [ 3] [418] +12:20:17 [ 52] [ 16] [2C317B3AC840A80E] +12:20:17 ============================================================================ +12:20:17 + + +waiting on router queue for slot.... +12:20:17 Sending to : +12:20:17 ============================================================================ +12:20:17 Sending to : +12:20:17 ============================================================================ +12:20:18 ============================================================================ +12:20:18 Slot Id : <260> +12:20:18 Transaction Type : REQUEST +12:20:18 Received From : +12:20:18 ============================================================================ +12:20:18 FNo. Len. Field Value +12:20:18 ============================================================================ +12:20:18 [ 1] [ 4] [0200] +12:20:18 [ 2] [ 16] [6213544001693891] +12:20:18 [ 3] [ 6] [011000] +12:20:18 [ 4] [ 12] [000002000000] +12:20:18 [ 7] [ 10] [0320051925] +12:20:18 [ 11] [ 6] [268989] +12:20:18 [ 12] [ 6] [121925] +12:20:18 [ 13] [ 4] [0320] +12:20:18 [ 14] [ 4] [4912] +12:20:18 [ 15] [ 4] [0320] +12:20:18 [ 18] [ 4] [6011] +12:20:18 [ 19] [ 3] [418] +12:20:18 [ 22] [ 3] [021] +12:20:18 [ 25] [ 2] [01] +12:20:18 [ 28] [ 9] [D00002000] +12:20:18 [ 32] [ 6] [180893] +12:20:18 [ 35] [ 32] [6213544001693891=491212019389181] +12:20:18 [ 37] [ 12] [507905268989] +12:20:18 [ 41] [ 8] [0106NAXA] +12:20:18 [ 42] [ 15] [999999 ] +12:20:18 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +12:20:18 [ 49] [ 3] [418] +12:20:18 [ 52] [ 16] [2C317B3AC840A80E] +12:20:18 ============================================================================ +12:20:18 + + +waiting on router queue for slot.... +12:20:18 Sending to : +12:20:18 ============================================================================ +12:20:18 ============================================================================ +12:20:18 Slot Id : <260> +12:20:18 Transaction Type : REQUEST +12:20:18 Received From : +12:20:18 ============================================================================ +12:20:18 FNo. Len. Field Value +12:20:18 ============================================================================ +12:20:18 [ 1] [ 4] [0200] +12:20:18 [ 2] [ 16] [6213544001693891] +12:20:18 [ 3] [ 6] [011000] +12:20:18 [ 4] [ 12] [000002000000] +12:20:18 [ 7] [ 10] [0320051925] +12:20:18 [ 11] [ 6] [268989] +12:20:18 [ 12] [ 6] [121925] +12:20:18 [ 13] [ 4] [0320] +12:20:18 [ 14] [ 4] [4912] +12:20:18 [ 15] [ 4] [0320] +12:20:18 [ 18] [ 4] [6011] +12:20:18 [ 19] [ 3] [418] +12:20:18 [ 22] [ 3] [021] +12:20:18 [ 25] [ 2] [01] +12:20:18 [ 28] [ 9] [D00002000] +12:20:18 [ 32] [ 6] [180893] +12:20:18 [ 35] [ 32] [6213544001693891=491212019389181] +12:20:18 [ 37] [ 12] [507905268989] +12:20:18 [ 41] [ 8] [0106NAXA] +12:20:18 [ 42] [ 15] [999999 ] +12:20:18 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +12:20:18 [ 49] [ 3] [418] +12:20:18 [ 52] [ 16] [38C4778105263855] +12:20:18 ============================================================================ +12:20:18 + + +waiting on router queue for slot.... +12:20:18 Sending to : <0> +12:20:18 ============================================================================ +12:20:18 ============================================================================ +12:20:18 Slot Id : <260> +12:20:18 Transaction Type : RESPONSE +12:20:18 Received From : +12:20:18 ============================================================================ +12:20:18 FNo. Len. Field Value +12:20:18 ============================================================================ +12:20:18 [ 1] [ 4] [0210] +12:20:18 [ 2] [ 16] [6213544001693891] +12:20:18 [ 3] [ 6] [011000] +12:20:18 [ 4] [ 12] [000002000000] +12:20:18 [ 7] [ 10] [0320051925] +12:20:18 [ 11] [ 6] [268989] +12:20:18 [ 12] [ 6] [121925] +12:20:18 [ 13] [ 4] [0320] +12:20:18 [ 15] [ 4] [0320] +12:20:18 [ 18] [ 4] [6011] +12:20:18 [ 19] [ 3] [418] +12:20:18 [ 32] [ 6] [180893] +12:20:18 [ 35] [ 32] [6213544001693891=491212019389181] +12:20:18 [ 37] [ 12] [507905268989] +12:20:18 [ 38] [ 6] [268989] +12:20:18 [ 39] [ 2] [51] +12:20:18 [ 41] [ 8] [0106NAXA] +12:20:18 [ 49] [ 3] [418] +12:20:18 [ 54] [ 40] [1001418C0000053901901002418C000005390190] +12:20:18 ============================================================================ +12:20:18 Sending to : +12:20:18 ============================================================================ +12:20:18 + + +waiting on router queue for slot.... +12:20:19 ============================================================================ +12:20:19 Slot Id : <260> +12:20:19 Transaction Type : RESPONSE +12:20:19 Received From : +12:20:19 ============================================================================ +12:20:19 FNo. Len. Field Value +12:20:19 ============================================================================ +12:20:19 [ 1] [ 4] [0210] +12:20:19 [ 2] [ 16] [6213544001693891] +12:20:19 [ 3] [ 6] [011000] +12:20:19 [ 4] [ 12] [000002000000] +12:20:19 [ 7] [ 10] [0320051925] +12:20:19 [ 11] [ 6] [268989] +12:20:19 [ 12] [ 6] [121925] +12:20:19 [ 13] [ 4] [0320] +12:20:19 [ 15] [ 4] [0320] +12:20:19 [ 18] [ 4] [6011] +12:20:19 [ 19] [ 3] [418] +12:20:19 [ 32] [ 6] [180893] +12:20:19 [ 35] [ 32] [6213544001693891=491212019389181] +12:20:19 [ 37] [ 12] [507905268989] +12:20:19 [ 38] [ 6] [268989] +12:20:19 [ 39] [ 2] [51] +12:20:19 [ 41] [ 8] [0106NAXA] +12:20:19 [ 49] [ 3] [418] +12:20:19 [ 54] [ 40] [1001418C0000053901901002418C000005390190] +12:20:19 ============================================================================ +12:20:19 Calculate Source COMM Id = 2 +12:20:19 ============================================================================ +12:20:19 + + +waiting on router queue for slot.... +12:20:26 ============================================================================ +12:20:26 Slot Id : <234> +12:20:26 Transaction Type : REQUEST +12:20:26 Received From : +12:20:26 ============================================================================ +12:20:26 FNo. Len. Field Value +12:20:26 ============================================================================ +12:20:26 [ 1] [ 4] [0200] +12:20:26 [ 2] [ 16] [1808930200040533] +12:20:26 [ 3] [ 6] [010000] +12:20:26 [ 4] [ 12] [000040000000] +12:20:26 [ 7] [ 10] [0320122022] +12:20:26 [ 11] [ 6] [743213] +12:20:26 [ 12] [ 6] [122022] +12:20:26 [ 13] [ 4] [0320] +12:20:26 [ 15] [ 4] [0320] +12:20:26 [ 18] [ 4] [6011] +12:20:26 [ 22] [ 3] [900] +12:20:26 [ 25] [ 2] [02] +12:20:26 [ 28] [ 9] [D00002000] +12:20:26 [ 32] [ 6] [621354] +12:20:26 [ 35] [ 27] [1808930200040533=1803500902] +12:20:26 [ 37] [ 12] [507903975321] +12:20:26 [ 41] [ 8] [01011300] +12:20:26 [ 42] [ 15] [NATIVE ] +12:20:26 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +12:20:26 [ 49] [ 3] [418] +12:20:26 [ 52] [ 16] [1724C658D25AB6BB] +12:20:26 ============================================================================ +12:20:26 + + +waiting on router queue for slot.... +12:20:26 Sending to : +12:20:26 ============================================================================ +12:20:26 Sending to : +12:20:26 ============================================================================ +12:20:26 ============================================================================ +12:20:26 Slot Id : <234> +12:20:26 Transaction Type : REQUEST +12:20:26 Received From : +12:20:26 ============================================================================ +12:20:26 FNo. Len. Field Value +12:20:26 ============================================================================ +12:20:26 [ 1] [ 4] [0200] +12:20:26 [ 2] [ 16] [1808930200040533] +12:20:26 [ 3] [ 6] [010000] +12:20:26 [ 4] [ 12] [000040000000] +12:20:26 [ 7] [ 10] [0320122022] +12:20:26 [ 11] [ 6] [743213] +12:20:26 [ 12] [ 6] [122022] +12:20:26 [ 13] [ 4] [0320] +12:20:26 [ 15] [ 4] [0320] +12:20:26 [ 18] [ 4] [6011] +12:20:26 [ 22] [ 3] [900] +12:20:26 [ 25] [ 2] [02] +12:20:26 [ 28] [ 9] [D00002000] +12:20:26 [ 32] [ 6] [621354] +12:20:26 [ 35] [ 27] [1808930200040533=1803500902] +12:20:26 [ 37] [ 12] [507903975321] +12:20:26 [ 41] [ 8] [01011300] +12:20:26 [ 42] [ 15] [NATIVE ] +12:20:26 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +12:20:26 [ 49] [ 3] [418] +12:20:26 [ 52] [ 16] [1724C658D25AB6BB] +12:20:26 ============================================================================ +12:20:26 + + +waiting on router queue for slot.... +12:20:26 Sending to : +12:20:26 ============================================================================ +12:20:26 ============================================================================ +12:20:26 Slot Id : <234> +12:20:26 Transaction Type : REQUEST +12:20:26 Received From : +12:20:26 ============================================================================ +12:20:26 FNo. Len. Field Value +12:20:26 ============================================================================ +12:20:26 [ 1] [ 4] [0200] +12:20:26 [ 2] [ 16] [1808930200040533] +12:20:26 [ 3] [ 6] [010000] +12:20:26 [ 4] [ 12] [000040000000] +12:20:26 [ 7] [ 10] [0320122022] +12:20:26 [ 11] [ 6] [743213] +12:20:26 [ 12] [ 6] [122022] +12:20:26 [ 13] [ 4] [0320] +12:20:26 [ 15] [ 4] [0320] +12:20:26 [ 18] [ 4] [6011] +12:20:26 [ 22] [ 3] [900] +12:20:26 [ 25] [ 2] [02] +12:20:26 [ 28] [ 9] [D00002000] +12:20:26 [ 32] [ 6] [621354] +12:20:26 [ 35] [ 27] [1808930200040533=1803500902] +12:20:26 [ 37] [ 12] [507903975321] +12:20:26 [ 41] [ 8] [01011300] +12:20:26 [ 42] [ 15] [NATIVE ] +12:20:26 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +12:20:26 [ 49] [ 3] [418] +12:20:26 [ 52] [ 16] [844F465A0F086B65] +12:20:26 ============================================================================ +12:20:26 + + +waiting on router queue for slot.... +12:20:26 Sending to : <2> +12:20:26 ============================================================================ +12:20:28 ============================================================================ +12:20:28 Slot Id : <234> +12:20:28 Transaction Type : RESPONSE +12:20:28 Received From : +12:20:28 ============================================================================ +12:20:28 FNo. Len. Field Value +12:20:28 ============================================================================ +12:20:28 [ 1] [ 4] [0210] +12:20:28 [ 2] [ 16] [1808930200040533] +12:20:28 [ 3] [ 6] [010000] +12:20:28 [ 4] [ 12] [000040000000] +12:20:28 [ 6] [ 12] [000040000000] +12:20:28 [ 7] [ 10] [0320122022] +12:20:28 [ 11] [ 6] [743213] +12:20:28 [ 12] [ 6] [122022] +12:20:28 [ 13] [ 4] [0320] +12:20:28 [ 18] [ 4] [6011] +12:20:28 [ 19] [ 3] [418] +12:20:28 [ 22] [ 3] [021] +12:20:28 [ 28] [ 9] [D00002000] +12:20:28 [ 32] [ 6] [621354] +12:20:28 [ 35] [ 27] [1808930200040533=1803500902] +12:20:28 [ 37] [ 12] [507903975321] +12:20:28 [ 39] [ 2] [55] +12:20:28 [ 41] [ 8] [01011300] +12:20:28 [ 49] [ 3] [418] +12:20:28 [ 51] [ 3] [418] +12:20:28 [ 52] [ 16] [844F465A0F086B65] +12:20:28 ============================================================================ +12:20:28 Sending to : +12:20:28 ============================================================================ +12:20:28 + + +waiting on router queue for slot.... +12:20:29 ============================================================================ +12:20:29 Slot Id : <234> +12:20:29 Transaction Type : RESPONSE +12:20:29 Received From : +12:20:29 ============================================================================ +12:20:29 FNo. Len. Field Value +12:20:29 ============================================================================ +12:20:29 [ 1] [ 4] [0210] +12:20:29 [ 2] [ 16] [1808930200040533] +12:20:29 [ 3] [ 6] [010000] +12:20:29 [ 4] [ 12] [000040000000] +12:20:29 [ 6] [ 12] [000040000000] +12:20:29 [ 7] [ 10] [0320122022] +12:20:29 [ 11] [ 6] [743213] +12:20:29 [ 12] [ 6] [122022] +12:20:29 [ 13] [ 4] [0320] +12:20:29 [ 18] [ 4] [6011] +12:20:29 [ 19] [ 3] [418] +12:20:29 [ 22] [ 3] [021] +12:20:29 [ 28] [ 9] [D00002000] +12:20:29 [ 32] [ 6] [621354] +12:20:29 [ 35] [ 27] [1808930200040533=1803500902] +12:20:29 [ 37] [ 12] [507903975321] +12:20:29 [ 39] [ 2] [55] +12:20:29 [ 41] [ 8] [01011300] +12:20:29 [ 49] [ 3] [418] +12:20:29 [ 51] [ 3] [418] +12:20:29 [ 52] [ 16] [844F465A0F086B65] +12:20:29 ============================================================================ +12:20:29 Calculate Source COMM Id = 0 +12:20:29 ============================================================================ +12:20:29 + + +waiting on router queue for slot.... +12:20:30 ============================================================================ +12:20:30 Slot Id : <249> +12:20:30 Transaction Type : REQUEST +12:20:30 Received From : +12:20:30 ============================================================================ +12:20:30 FNo. Len. Field Value +12:20:30 ============================================================================ +12:20:30 [ 1] [ 4] [0800] +12:20:30 [ 2] [ 5] [02531] +12:20:30 [ 3] [ 6] [579128] +12:20:30 [ 7] [ 10] [0320052030] +12:20:30 [ 11] [ 6] [807128] +12:20:30 [ 15] [ 10] [0320052030] +12:20:30 [ 37] [ 11] [57912807128] +12:20:30 [ 70] [ 3] [001] +12:20:30 ============================================================================ +12:20:30 + + +waiting on router queue for slot.... +12:20:30 ============================================================================ +12:20:30 Slot Id : <249> +12:20:30 Transaction Type : RESPONSE +12:20:30 Received From : +12:20:30 ============================================================================ +12:20:30 FNo. Len. Field Value +12:20:30 ============================================================================ +12:20:30 [ 1] [ 4] [0810] +12:20:30 [ 7] [ 10] [0320052030] +12:20:30 [ 11] [ 6] [807128] +12:20:30 [ 15] [ 4] [0320] +12:20:30 [ 37] [ 12] [57912807128] +12:20:30 [ 39] [ 2] [00] +12:20:30 [ 70] [ 3] [001] +12:20:30 ============================================================================ +12:20:30 Sending to : +12:20:30 ============================================================================ +12:20:30 + + +waiting on router queue for slot.... +12:20:36 ============================================================================ +12:20:36 Slot Id : <259> +12:20:36 Transaction Type : REQUEST +12:20:36 Received From : +12:20:36 ============================================================================ +12:20:36 FNo. Len. Field Value +12:20:36 ============================================================================ +12:20:36 [ 1] [ 4] [0200] +12:20:36 [ 2] [ 16] [6213544001043030] +12:20:36 [ 3] [ 6] [301000] +12:20:36 [ 4] [ 12] [000000000000] +12:20:36 [ 7] [ 10] [0320121827] +12:20:36 [ 11] [ 6] [943895] +12:20:36 [ 12] [ 6] [121827] +12:20:36 [ 13] [ 4] [0320] +12:20:36 [ 15] [ 4] [0320] +12:20:36 [ 18] [ 4] [6011] +12:20:36 [ 19] [ 3] [418] +12:20:36 [ 22] [ 3] [021] +12:20:36 [ 25] [ 2] [01] +12:20:36 [ 28] [ 9] [D00000000] +12:20:36 [ 32] [ 6] [668899] +12:20:36 [ 35] [ 32] [6213544001043030=491212014303039] +12:20:36 [ 37] [ 12] [507900123295] +12:20:36 [ 41] [ 8] [03020003] +12:20:36 [ 42] [ 15] [APT ] +12:20:36 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:20:36 [ 49] [ 3] [418] +12:20:36 [ 52] [ 16] [2781737B41F2BBC2] +12:20:36 ============================================================================ +12:20:36 + + +waiting on router queue for slot.... +12:20:36 Sending to : +12:20:36 ============================================================================ +12:20:36 Sending to : +12:20:36 ============================================================================ +12:20:37 ============================================================================ +12:20:37 Slot Id : <259> +12:20:37 Transaction Type : REQUEST +12:20:37 Received From : +12:20:37 ============================================================================ +12:20:37 FNo. Len. Field Value +12:20:37 ============================================================================ +12:20:37 [ 1] [ 4] [0200] +12:20:37 [ 2] [ 16] [6213544001043030] +12:20:37 [ 3] [ 6] [301000] +12:20:37 [ 4] [ 12] [000000000000] +12:20:37 [ 7] [ 10] [0320121827] +12:20:37 [ 11] [ 6] [943895] +12:20:37 [ 12] [ 6] [121827] +12:20:37 [ 13] [ 4] [0320] +12:20:37 [ 15] [ 4] [0320] +12:20:37 [ 18] [ 4] [6011] +12:20:37 [ 19] [ 3] [418] +12:20:37 [ 22] [ 3] [021] +12:20:37 [ 25] [ 2] [01] +12:20:37 [ 28] [ 9] [D00000000] +12:20:37 [ 32] [ 6] [668899] +12:20:37 [ 35] [ 32] [6213544001043030=491212014303039] +12:20:37 [ 37] [ 12] [507900123295] +12:20:37 [ 41] [ 8] [03020003] +12:20:37 [ 42] [ 15] [APT ] +12:20:37 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:20:37 [ 49] [ 3] [418] +12:20:37 [ 52] [ 16] [2781737B41F2BBC2] +12:20:37 ============================================================================ +12:20:37 + + +waiting on router queue for slot.... +12:20:37 Sending to : +12:20:37 ============================================================================ +12:20:37 ============================================================================ +12:20:37 Slot Id : <259> +12:20:37 Transaction Type : REQUEST +12:20:37 Received From : +12:20:37 ============================================================================ +12:20:37 FNo. Len. Field Value +12:20:37 ============================================================================ +12:20:37 [ 1] [ 4] [0200] +12:20:37 [ 2] [ 16] [6213544001043030] +12:20:37 [ 3] [ 6] [301000] +12:20:37 [ 4] [ 12] [000000000000] +12:20:37 [ 7] [ 10] [0320121827] +12:20:37 [ 11] [ 6] [943895] +12:20:37 [ 12] [ 6] [121827] +12:20:37 [ 13] [ 4] [0320] +12:20:37 [ 15] [ 4] [0320] +12:20:37 [ 18] [ 4] [6011] +12:20:37 [ 19] [ 3] [418] +12:20:37 [ 22] [ 3] [021] +12:20:37 [ 25] [ 2] [01] +12:20:37 [ 28] [ 9] [D00000000] +12:20:37 [ 32] [ 6] [668899] +12:20:37 [ 35] [ 32] [6213544001043030=491212014303039] +12:20:37 [ 37] [ 12] [507900123295] +12:20:37 [ 41] [ 8] [03020003] +12:20:37 [ 42] [ 15] [APT ] +12:20:37 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:20:37 [ 49] [ 3] [418] +12:20:37 [ 52] [ 16] [38AB53DFB6B34369] +12:20:37 ============================================================================ +12:20:37 + + +waiting on router queue for slot.... +12:20:37 Sending to : <0> +12:20:37 ============================================================================ +12:20:37 ============================================================================ +12:20:37 Slot Id : <259> +12:20:37 Transaction Type : RESPONSE +12:20:37 Received From : +12:20:37 ============================================================================ +12:20:37 FNo. Len. Field Value +12:20:37 ============================================================================ +12:20:37 [ 1] [ 4] [0210] +12:20:37 [ 2] [ 16] [6213544001043030] +12:20:37 [ 3] [ 6] [301000] +12:20:37 [ 4] [ 12] [000000000000] +12:20:37 [ 7] [ 10] [0320121827] +12:20:37 [ 11] [ 6] [943895] +12:20:37 [ 12] [ 6] [121827] +12:20:37 [ 13] [ 4] [0320] +12:20:37 [ 15] [ 4] [0320] +12:20:37 [ 18] [ 4] [6011] +12:20:37 [ 19] [ 3] [418] +12:20:37 [ 32] [ 6] [668899] +12:20:37 [ 35] [ 32] [6213544001043030=491212014303039] +12:20:37 [ 37] [ 12] [507900123295] +12:20:37 [ 38] [ 6] [888612] +12:20:37 [ 39] [ 2] [00] +12:20:37 [ 41] [ 8] [03020003] +12:20:37 [ 49] [ 3] [418] +12:20:37 [ 54] [ 40] [1001418C0000054084681002418C000005408468] +12:20:37 ============================================================================ +12:20:37 Sending to : +12:20:37 ============================================================================ +12:20:37 + + +waiting on router queue for slot.... +12:20:39 ============================================================================ +12:20:39 Slot Id : <259> +12:20:39 Transaction Type : RESPONSE +12:20:39 Received From : +12:20:39 ============================================================================ +12:20:39 FNo. Len. Field Value +12:20:39 ============================================================================ +12:20:39 [ 1] [ 4] [0210] +12:20:39 [ 2] [ 16] [6213544001043030] +12:20:39 [ 3] [ 6] [301000] +12:20:39 [ 4] [ 12] [000000000000] +12:20:39 [ 7] [ 10] [0320121827] +12:20:39 [ 11] [ 6] [943895] +12:20:39 [ 12] [ 6] [121827] +12:20:39 [ 13] [ 4] [0320] +12:20:39 [ 15] [ 4] [0320] +12:20:39 [ 18] [ 4] [6011] +12:20:39 [ 19] [ 3] [418] +12:20:39 [ 32] [ 6] [668899] +12:20:39 [ 35] [ 32] [6213544001043030=491212014303039] +12:20:39 [ 37] [ 12] [507900123295] +12:20:39 [ 38] [ 6] [888612] +12:20:39 [ 39] [ 2] [00] +12:20:39 [ 41] [ 8] [03020003] +12:20:39 [ 49] [ 3] [418] +12:20:39 [ 54] [ 40] [1001418C0000054084681002418C000005408468] +12:20:39 ============================================================================ +12:20:39 Calculate Source COMM Id = 4 +12:20:39 ============================================================================ +12:20:39 + + +waiting on router queue for slot.... +12:20:39 ============================================================================ +12:20:39 Slot Id : <210> +12:20:39 Transaction Type : REQUEST +12:20:39 Received From : +12:20:39 ============================================================================ +12:20:39 FNo. Len. Field Value +12:20:39 ============================================================================ +12:20:39 [ 1] [ 4] [0800] +12:20:39 [ 7] [ 10] [0320051946] +12:20:39 [ 11] [ 6] [156281] +12:20:39 [ 70] [ 3] [301] +12:20:39 ============================================================================ +12:20:39 + + +waiting on router queue for slot.... +12:20:39 Sending to : +12:20:39 ============================================================================ +12:20:39 ============================================================================ +12:20:39 Slot Id : <210> +12:20:39 Transaction Type : RESPONSE +12:20:39 Received From : +12:20:39 ============================================================================ +12:20:39 FNo. Len. Field Value +12:20:39 ============================================================================ +12:20:39 [ 1] [ 4] [0810] +12:20:39 [ 7] [ 10] [0320051946] +12:20:39 [ 11] [ 6] [156281] +12:20:39 [ 39] [ 2] [00] +12:20:39 [ 70] [ 3] [301] +12:20:39 ============================================================================ +12:20:39 Calculate Source COMM Id = 2 +12:20:39 ============================================================================ +12:20:39 + + +waiting on router queue for slot.... +12:20:46 ============================================================================ +12:20:46 Slot Id : <263> +12:20:46 Transaction Type : REQUEST +12:20:46 Received From : +12:20:46 ============================================================================ +12:20:46 FNo. Len. Field Value +12:20:46 ============================================================================ +12:20:46 [ 1] [ 4] [0200] +12:20:46 [ 2] [ 16] [1808930200040533] +12:20:46 [ 3] [ 6] [010000] +12:20:46 [ 4] [ 12] [000040000000] +12:20:46 [ 7] [ 10] [0320122042] +12:20:46 [ 11] [ 6] [743277] +12:20:46 [ 12] [ 6] [122042] +12:20:46 [ 13] [ 4] [0320] +12:20:46 [ 15] [ 4] [0320] +12:20:46 [ 18] [ 4] [6011] +12:20:46 [ 22] [ 3] [900] +12:20:46 [ 25] [ 2] [02] +12:20:46 [ 28] [ 9] [D00002000] +12:20:46 [ 32] [ 6] [621354] +12:20:46 [ 35] [ 27] [1808930200040533=1803500902] +12:20:46 [ 37] [ 12] [507903975323] +12:20:46 [ 41] [ 8] [01011300] +12:20:46 [ 42] [ 15] [NATIVE ] +12:20:46 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +12:20:46 [ 49] [ 3] [418] +12:20:46 [ 52] [ 16] [1724C658D25AB6BB] +12:20:46 ============================================================================ +12:20:46 + + +waiting on router queue for slot.... +12:20:46 Sending to : +12:20:46 ============================================================================ +12:20:46 Sending to : +12:20:46 ============================================================================ +12:20:47 ============================================================================ +12:20:47 Slot Id : <263> +12:20:47 Transaction Type : REQUEST +12:20:47 Received From : +12:20:47 ============================================================================ +12:20:47 FNo. Len. Field Value +12:20:47 ============================================================================ +12:20:47 [ 1] [ 4] [0200] +12:20:47 [ 2] [ 16] [1808930200040533] +12:20:47 [ 3] [ 6] [010000] +12:20:47 [ 4] [ 12] [000040000000] +12:20:47 [ 7] [ 10] [0320122042] +12:20:47 [ 11] [ 6] [743277] +12:20:47 [ 12] [ 6] [122042] +12:20:47 [ 13] [ 4] [0320] +12:20:47 [ 15] [ 4] [0320] +12:20:47 [ 18] [ 4] [6011] +12:20:47 [ 22] [ 3] [900] +12:20:47 [ 25] [ 2] [02] +12:20:47 [ 28] [ 9] [D00002000] +12:20:47 [ 32] [ 6] [621354] +12:20:47 [ 35] [ 27] [1808930200040533=1803500902] +12:20:47 [ 37] [ 12] [507903975323] +12:20:47 [ 41] [ 8] [01011300] +12:20:47 [ 42] [ 15] [NATIVE ] +12:20:47 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +12:20:47 [ 49] [ 3] [418] +12:20:47 [ 52] [ 16] [1724C658D25AB6BB] +12:20:47 ============================================================================ +12:20:47 + + +waiting on router queue for slot.... +12:20:47 Sending to : +12:20:47 ============================================================================ +12:20:47 ============================================================================ +12:20:47 Slot Id : <263> +12:20:47 Transaction Type : REQUEST +12:20:47 Received From : +12:20:47 ============================================================================ +12:20:47 FNo. Len. Field Value +12:20:47 ============================================================================ +12:20:47 [ 1] [ 4] [0200] +12:20:47 [ 2] [ 16] [1808930200040533] +12:20:47 [ 3] [ 6] [010000] +12:20:47 [ 4] [ 12] [000040000000] +12:20:47 [ 7] [ 10] [0320122042] +12:20:47 [ 11] [ 6] [743277] +12:20:47 [ 12] [ 6] [122042] +12:20:47 [ 13] [ 4] [0320] +12:20:47 [ 15] [ 4] [0320] +12:20:47 [ 18] [ 4] [6011] +12:20:47 [ 22] [ 3] [900] +12:20:47 [ 25] [ 2] [02] +12:20:47 [ 28] [ 9] [D00002000] +12:20:47 [ 32] [ 6] [621354] +12:20:47 [ 35] [ 27] [1808930200040533=1803500902] +12:20:47 [ 37] [ 12] [507903975323] +12:20:47 [ 41] [ 8] [01011300] +12:20:47 [ 42] [ 15] [NATIVE ] +12:20:47 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +12:20:47 [ 49] [ 3] [418] +12:20:47 [ 52] [ 16] [844F465A0F086B65] +12:20:47 ============================================================================ +12:20:47 + + +waiting on router queue for slot.... +12:20:47 Sending to : <2> +12:20:47 ============================================================================ +12:20:48 ============================================================================ +12:20:48 Slot Id : <261> +12:20:48 Transaction Type : REQUEST +12:20:48 Received From : +12:20:48 ============================================================================ +12:20:48 FNo. Len. Field Value +12:20:48 ============================================================================ +12:20:48 [ 1] [ 4] [0800] +12:20:48 [ 7] [ 10] [0320052044] +12:20:48 [ 11] [ 6] [052693] +12:20:48 [ 37] [ 12] [507912052693] +12:20:48 [ 70] [ 3] [001] +12:20:48 ============================================================================ +12:20:48 + + +waiting on router queue for slot.... +12:20:48 Sending to : +12:20:48 ============================================================================ +12:20:48 ============================================================================ +12:20:48 Slot Id : <261> +12:20:48 Transaction Type : RESPONSE +12:20:48 Received From : +12:20:48 ============================================================================ +12:20:48 FNo. Len. Field Value +12:20:48 ============================================================================ +12:20:48 [ 1] [ 4] [0810] +12:20:48 [ 7] [ 10] [0320052044] +12:20:48 [ 11] [ 6] [052693] +12:20:48 [ 37] [ 12] [507912052693] +12:20:48 [ 39] [ 2] [00] +12:20:48 [ 70] [ 3] [001] +12:20:48 ============================================================================ +12:20:48 Calculate Source COMM Id = 0 +12:20:48 ============================================================================ +12:20:48 + + +waiting on router queue for slot.... +12:20:49 ============================================================================ +12:20:49 Slot Id : <263> +12:20:49 Transaction Type : RESPONSE +12:20:49 Received From : +12:20:49 ============================================================================ +12:20:49 FNo. Len. Field Value +12:20:49 ============================================================================ +12:20:49 [ 1] [ 4] [0210] +12:20:49 [ 2] [ 16] [1808930200040533] +12:20:49 [ 3] [ 6] [010000] +12:20:49 [ 4] [ 12] [000040000000] +12:20:49 [ 6] [ 12] [000040000000] +12:20:49 [ 7] [ 10] [0320122042] +12:20:49 [ 11] [ 6] [743277] +12:20:49 [ 12] [ 6] [122042] +12:20:49 [ 13] [ 4] [0320] +12:20:49 [ 18] [ 4] [6011] +12:20:49 [ 19] [ 3] [418] +12:20:49 [ 22] [ 3] [021] +12:20:49 [ 28] [ 9] [D00002000] +12:20:49 [ 32] [ 6] [621354] +12:20:49 [ 35] [ 27] [1808930200040533=1803500902] +12:20:49 [ 37] [ 12] [507903975323] +12:20:49 [ 39] [ 2] [55] +12:20:49 [ 41] [ 8] [01011300] +12:20:49 [ 49] [ 3] [418] +12:20:49 [ 51] [ 3] [418] +12:20:49 [ 52] [ 16] [844F465A0F086B65] +12:20:49 ============================================================================ +12:20:49 Sending to : +12:20:49 ============================================================================ +12:20:49 + + +waiting on router queue for slot.... +12:20:50 ============================================================================ +12:20:50 Slot Id : <263> +12:20:50 Transaction Type : RESPONSE +12:20:50 Received From : +12:20:50 ============================================================================ +12:20:50 FNo. Len. Field Value +12:20:50 ============================================================================ +12:20:50 [ 1] [ 4] [0210] +12:20:50 [ 2] [ 16] [1808930200040533] +12:20:50 [ 3] [ 6] [010000] +12:20:50 [ 4] [ 12] [000040000000] +12:20:50 [ 6] [ 12] [000040000000] +12:20:50 [ 7] [ 10] [0320122042] +12:20:50 [ 11] [ 6] [743277] +12:20:50 [ 12] [ 6] [122042] +12:20:50 [ 13] [ 4] [0320] +12:20:50 [ 18] [ 4] [6011] +12:20:50 [ 19] [ 3] [418] +12:20:50 [ 22] [ 3] [021] +12:20:50 [ 28] [ 9] [D00002000] +12:20:50 [ 32] [ 6] [621354] +12:20:50 [ 35] [ 27] [1808930200040533=1803500902] +12:20:50 [ 37] [ 12] [507903975323] +12:20:50 [ 39] [ 2] [55] +12:20:50 [ 41] [ 8] [01011300] +12:20:50 [ 49] [ 3] [418] +12:20:50 [ 51] [ 3] [418] +12:20:50 [ 52] [ 16] [844F465A0F086B65] +12:20:50 ============================================================================ +12:20:50 Calculate Source COMM Id = 0 +12:20:50 ============================================================================ +12:20:50 + + +waiting on router queue for slot.... +12:21:01 ============================================================================ +12:21:01 Slot Id : <225> +12:21:01 Transaction Type : REQUEST +12:21:01 Received From : +12:21:01 ============================================================================ +12:21:01 FNo. Len. Field Value +12:21:01 ============================================================================ +12:21:01 [ 1] [ 4] [0800] +12:21:01 [ 7] [ 10] [0320052008] +12:21:01 [ 11] [ 6] [156282] +12:21:01 [ 70] [ 3] [301] +12:21:01 ============================================================================ +12:21:01 + + +waiting on router queue for slot.... +12:21:01 Sending to : +12:21:01 ============================================================================ +12:21:01 ============================================================================ +12:21:01 Slot Id : <225> +12:21:01 Transaction Type : RESPONSE +12:21:01 Received From : +12:21:01 ============================================================================ +12:21:01 FNo. Len. Field Value +12:21:01 ============================================================================ +12:21:01 [ 1] [ 4] [0810] +12:21:01 [ 7] [ 10] [0320052008] +12:21:01 [ 11] [ 6] [156282] +12:21:01 [ 39] [ 2] [00] +12:21:01 [ 70] [ 3] [301] +12:21:01 ============================================================================ +12:21:01 Calculate Source COMM Id = 2 +12:21:01 ============================================================================ +12:21:01 + + +waiting on router queue for slot.... +12:21:11 ============================================================================ +12:21:11 Slot Id : <199> +12:21:11 Transaction Type : REQUEST +12:21:11 Received From : +12:21:11 ============================================================================ +12:21:11 FNo. Len. Field Value +12:21:11 ============================================================================ +12:21:11 [ 1] [ 4] [0800] +12:21:11 [ 7] [ 10] [0320052019] +12:21:11 [ 11] [ 6] [156283] +12:21:11 [ 70] [ 3] [301] +12:21:11 ============================================================================ +12:21:11 + + +waiting on router queue for slot.... +12:21:11 Sending to : +12:21:11 ============================================================================ +12:21:11 ============================================================================ +12:21:11 Slot Id : <199> +12:21:11 Transaction Type : RESPONSE +12:21:11 Received From : +12:21:11 ============================================================================ +12:21:11 FNo. Len. Field Value +12:21:11 ============================================================================ +12:21:11 [ 1] [ 4] [0810] +12:21:11 [ 7] [ 10] [0320052019] +12:21:11 [ 11] [ 6] [156283] +12:21:11 [ 39] [ 2] [00] +12:21:11 [ 70] [ 3] [301] +12:21:11 ============================================================================ +12:21:11 Calculate Source COMM Id = 2 +12:21:11 ============================================================================ +12:21:11 + + +waiting on router queue for slot.... +12:21:21 ============================================================================ +12:21:21 Slot Id : <270> +12:21:21 Transaction Type : REQUEST +12:21:21 Received From : +12:21:21 ============================================================================ +12:21:21 FNo. Len. Field Value +12:21:21 ============================================================================ +12:21:21 [ 1] [ 4] [0800] +12:21:21 [ 7] [ 10] [0320051912] +12:21:21 [ 11] [ 6] [018319] +12:21:21 [ 37] [ 12] [57912018319] +12:21:21 [ 70] [ 3] [301] +12:21:21 ============================================================================ +12:21:21 + + +waiting on router queue for slot.... +12:21:21 Sending to : +12:21:21 ============================================================================ +12:21:21 ============================================================================ +12:21:21 Slot Id : <270> +12:21:21 Transaction Type : RESPONSE +12:21:21 Received From : +12:21:21 ============================================================================ +12:21:21 FNo. Len. Field Value +12:21:21 ============================================================================ +12:21:21 [ 1] [ 4] [0810] +12:21:21 [ 7] [ 10] [0320051912] +12:21:21 [ 11] [ 6] [018319] +12:21:21 [ 37] [ 12] [579120183190] +12:21:21 [ 39] [ 2] [00] +12:21:21 [ 70] [ 3] [810] +12:21:21 ============================================================================ +12:21:21 Calculate Source COMM Id = 4 +12:21:21 ============================================================================ +12:21:21 + + +waiting on router queue for slot.... +12:21:22 ============================================================================ +12:21:22 Slot Id : <269> +12:21:22 Transaction Type : REQUEST +12:21:22 Received From : +12:21:22 ============================================================================ +12:21:22 FNo. Len. Field Value +12:21:22 ============================================================================ +12:21:22 [ 1] [ 4] [0800] +12:21:22 [ 7] [ 10] [0320052030] +12:21:22 [ 11] [ 6] [156284] +12:21:22 [ 70] [ 3] [301] +12:21:22 ============================================================================ +12:21:23 + + +waiting on router queue for slot.... +12:21:23 Sending to : +12:21:23 ============================================================================ +12:21:23 ============================================================================ +12:21:23 Slot Id : <269> +12:21:23 Transaction Type : RESPONSE +12:21:23 Received From : +12:21:23 ============================================================================ +12:21:23 FNo. Len. Field Value +12:21:23 ============================================================================ +12:21:23 [ 1] [ 4] [0810] +12:21:23 [ 7] [ 10] [0320052030] +12:21:23 [ 11] [ 6] [156284] +12:21:23 [ 39] [ 2] [00] +12:21:23 [ 70] [ 3] [301] +12:21:23 ============================================================================ +12:21:23 Calculate Source COMM Id = 2 +12:21:23 ============================================================================ +12:21:23 + + +waiting on router queue for slot.... +12:21:23 ============================================================================ +12:21:23 Slot Id : <240> +12:21:23 Transaction Type : REQUEST +12:21:23 Received From : +12:21:23 ============================================================================ +12:21:23 FNo. Len. Field Value +12:21:23 ============================================================================ +12:21:23 [ 1] [ 4] [0200] +12:21:23 [ 2] [ 16] [1808930600034060] +12:21:23 [ 3] [ 6] [011000] +12:21:23 [ 4] [ 12] [000010000000] +12:21:23 [ 7] [ 10] [0320122119] +12:21:23 [ 11] [ 6] [743387] +12:21:23 [ 12] [ 6] [122119] +12:21:23 [ 13] [ 4] [0320] +12:21:23 [ 15] [ 4] [0320] +12:21:23 [ 18] [ 4] [6011] +12:21:23 [ 22] [ 3] [900] +12:21:23 [ 25] [ 2] [02] +12:21:23 [ 28] [ 9] [D00002000] +12:21:23 [ 32] [ 6] [621354] +12:21:23 [ 35] [ 27] [1808930600034060=1803500228] +12:21:23 [ 37] [ 12] [507905035316] +12:21:23 [ 41] [ 8] [02002600] +12:21:23 [ 42] [ 15] [NATIVE ] +12:21:23 [ 43] [ 40] [Sebangfai Distric SEBANGFAI LAO] +12:21:23 [ 49] [ 3] [418] +12:21:23 [ 52] [ 16] [C96A940748B81216] +12:21:23 ============================================================================ +12:21:23 + + +waiting on router queue for slot.... +12:21:23 Sending to : +12:21:23 ============================================================================ +12:21:23 Sending to : +12:21:23 ============================================================================ +12:21:24 ============================================================================ +12:21:24 Slot Id : <240> +12:21:24 Transaction Type : REQUEST +12:21:24 Received From : +12:21:24 ============================================================================ +12:21:24 FNo. Len. Field Value +12:21:24 ============================================================================ +12:21:24 [ 1] [ 4] [0200] +12:21:24 [ 2] [ 16] [1808930600034060] +12:21:24 [ 3] [ 6] [011000] +12:21:24 [ 4] [ 12] [000010000000] +12:21:24 [ 7] [ 10] [0320122119] +12:21:24 [ 11] [ 6] [743387] +12:21:24 [ 12] [ 6] [122119] +12:21:24 [ 13] [ 4] [0320] +12:21:24 [ 15] [ 4] [0320] +12:21:24 [ 18] [ 4] [6011] +12:21:24 [ 22] [ 3] [900] +12:21:24 [ 25] [ 2] [02] +12:21:24 [ 28] [ 9] [D00002000] +12:21:24 [ 32] [ 6] [621354] +12:21:24 [ 35] [ 27] [1808930600034060=1803500228] +12:21:24 [ 37] [ 12] [507905035316] +12:21:24 [ 41] [ 8] [02002600] +12:21:24 [ 42] [ 15] [NATIVE ] +12:21:24 [ 43] [ 40] [Sebangfai Distric SEBANGFAI LAO] +12:21:24 [ 49] [ 3] [418] +12:21:24 [ 52] [ 16] [C96A940748B81216] +12:21:24 ============================================================================ +12:21:24 + + +waiting on router queue for slot.... +12:21:24 Sending to : +12:21:24 ============================================================================ +12:21:24 ============================================================================ +12:21:24 Slot Id : <240> +12:21:24 Transaction Type : REQUEST +12:21:24 Received From : +12:21:24 ============================================================================ +12:21:24 FNo. Len. Field Value +12:21:24 ============================================================================ +12:21:24 [ 1] [ 4] [0200] +12:21:24 [ 2] [ 16] [1808930600034060] +12:21:24 [ 3] [ 6] [011000] +12:21:24 [ 4] [ 12] [000010000000] +12:21:24 [ 7] [ 10] [0320122119] +12:21:24 [ 11] [ 6] [743387] +12:21:24 [ 12] [ 6] [122119] +12:21:24 [ 13] [ 4] [0320] +12:21:24 [ 15] [ 4] [0320] +12:21:24 [ 18] [ 4] [6011] +12:21:24 [ 22] [ 3] [900] +12:21:24 [ 25] [ 2] [02] +12:21:24 [ 28] [ 9] [D00002000] +12:21:24 [ 32] [ 6] [621354] +12:21:24 [ 35] [ 27] [1808930600034060=1803500228] +12:21:24 [ 37] [ 12] [507905035316] +12:21:24 [ 41] [ 8] [02002600] +12:21:24 [ 42] [ 15] [NATIVE ] +12:21:24 [ 43] [ 40] [Sebangfai Distric SEBANGFAI LAO] +12:21:24 [ 49] [ 3] [418] +12:21:24 [ 52] [ 16] [7342C03371BD2FF4] +12:21:24 ============================================================================ +12:21:24 + + +waiting on router queue for slot.... +12:21:24 Sending to : <2> +12:21:24 ============================================================================ +12:21:32 ============================================================================ +12:21:32 Slot Id : <275> +12:21:32 Transaction Type : REQUEST +12:21:32 Received From : +12:21:32 ============================================================================ +12:21:32 FNo. Len. Field Value +12:21:32 ============================================================================ +12:21:32 [ 1] [ 4] [0800] +12:21:32 [ 2] [ 5] [02531] +12:21:32 [ 3] [ 6] [579128] +12:21:32 [ 7] [ 10] [0320052132] +12:21:32 [ 11] [ 6] [807129] +12:21:32 [ 15] [ 10] [0320052132] +12:21:32 [ 37] [ 11] [57912807129] +12:21:32 [ 70] [ 3] [001] +12:21:32 ============================================================================ +12:21:32 + + +waiting on router queue for slot.... +12:21:32 ============================================================================ +12:21:32 Slot Id : <275> +12:21:32 Transaction Type : RESPONSE +12:21:32 Received From : +12:21:32 ============================================================================ +12:21:32 FNo. Len. Field Value +12:21:32 ============================================================================ +12:21:32 [ 1] [ 4] [0810] +12:21:32 [ 7] [ 10] [0320052132] +12:21:32 [ 11] [ 6] [807129] +12:21:32 [ 15] [ 4] [0320] +12:21:32 [ 37] [ 12] [57912807129] +12:21:32 [ 39] [ 2] [00] +12:21:32 [ 70] [ 3] [001] +12:21:32 ============================================================================ +12:21:32 Sending to : +12:21:32 ============================================================================ +12:21:32 + + +waiting on router queue for slot.... +12:21:33 ============================================================================ +12:21:33 Slot Id : <240> +12:21:33 Transaction Type : RESPONSE +12:21:33 Received From : +12:21:33 ============================================================================ +12:21:33 FNo. Len. Field Value +12:21:33 ============================================================================ +12:21:33 [ 1] [ 4] [0210] +12:21:33 [ 2] [ 16] [1808930600034060] +12:21:33 [ 3] [ 6] [011000] +12:21:33 [ 4] [ 12] [000010000000] +12:21:33 [ 6] [ 12] [000010000000] +12:21:33 [ 7] [ 10] [0320122119] +12:21:33 [ 11] [ 6] [743387] +12:21:33 [ 12] [ 6] [122119] +12:21:33 [ 13] [ 4] [0320] +12:21:33 [ 18] [ 4] [6011] +12:21:33 [ 19] [ 3] [418] +12:21:33 [ 22] [ 3] [021] +12:21:33 [ 32] [ 6] [621354] +12:21:33 [ 35] [ 27] [1808930600034060=1803500228] +12:21:33 [ 37] [ 12] [507905035316] +12:21:33 [ 38] [ 6] [743387] +12:21:33 [ 39] [ 2] [00] +12:21:33 [ 41] [ 8] [02002600] +12:21:33 [ 49] [ 3] [418] +12:21:33 [ 52] [ 16] [7342C03371BD2FF4] +12:21:33 [ 54] [ 20] [1001764C000001151306] +12:21:33 ============================================================================ +12:21:33 Sending to : +12:21:33 ============================================================================ +12:21:33 + + +waiting on router queue for slot.... +12:21:34 ============================================================================ +12:21:34 Slot Id : <240> +12:21:34 Transaction Type : RESPONSE +12:21:34 Received From : +12:21:34 ============================================================================ +12:21:34 FNo. Len. Field Value +12:21:34 ============================================================================ +12:21:34 [ 1] [ 4] [0210] +12:21:34 [ 2] [ 16] [1808930600034060] +12:21:34 [ 3] [ 6] [011000] +12:21:34 [ 4] [ 12] [000010000000] +12:21:34 [ 6] [ 12] [000010000000] +12:21:34 [ 7] [ 10] [0320122119] +12:21:34 [ 11] [ 6] [743387] +12:21:34 [ 12] [ 6] [122119] +12:21:34 [ 13] [ 4] [0320] +12:21:34 [ 18] [ 4] [6011] +12:21:34 [ 19] [ 3] [418] +12:21:34 [ 22] [ 3] [021] +12:21:34 [ 32] [ 6] [621354] +12:21:34 [ 35] [ 27] [1808930600034060=1803500228] +12:21:34 [ 37] [ 12] [507905035316] +12:21:34 [ 38] [ 6] [743387] +12:21:34 [ 39] [ 2] [00] +12:21:34 [ 41] [ 8] [02002600] +12:21:34 [ 49] [ 3] [418] +12:21:34 [ 52] [ 16] [7342C03371BD2FF4] +12:21:34 [ 54] [ 20] [1001764C000001151306] +12:21:34 ============================================================================ +12:21:34 Calculate Source COMM Id = 0 +12:21:34 ============================================================================ +12:21:34 + + +waiting on router queue for slot.... +12:21:39 ============================================================================ +12:21:39 Slot Id : <228> +12:21:39 Transaction Type : REQUEST +12:21:39 Received From : +12:21:39 ============================================================================ +12:21:39 FNo. Len. Field Value +12:21:39 ============================================================================ +12:21:39 [ 1] [ 4] [0800] +12:21:39 [ 7] [ 10] [0320052047] +12:21:39 [ 11] [ 6] [156285] +12:21:39 [ 70] [ 3] [301] +12:21:39 ============================================================================ +12:21:39 + + +waiting on router queue for slot.... +12:21:39 Sending to : +12:21:39 ============================================================================ +12:21:39 ============================================================================ +12:21:39 Slot Id : <228> +12:21:39 Transaction Type : RESPONSE +12:21:39 Received From : +12:21:39 ============================================================================ +12:21:39 FNo. Len. Field Value +12:21:39 ============================================================================ +12:21:39 [ 1] [ 4] [0810] +12:21:39 [ 7] [ 10] [0320052047] +12:21:39 [ 11] [ 6] [156285] +12:21:39 [ 39] [ 2] [00] +12:21:39 [ 70] [ 3] [301] +12:21:39 ============================================================================ +12:21:39 Calculate Source COMM Id = 2 +12:21:39 ============================================================================ +12:21:39 + + +waiting on router queue for slot.... +12:21:55 ============================================================================ +12:21:55 Slot Id : <256> +12:21:55 Transaction Type : REQUEST +12:21:55 Received From : +12:21:55 ============================================================================ +12:21:55 FNo. Len. Field Value +12:21:55 ============================================================================ +12:21:55 [ 1] [ 4] [0800] +12:21:55 [ 7] [ 10] [0320052102] +12:21:55 [ 11] [ 6] [156286] +12:21:55 [ 70] [ 3] [301] +12:21:55 ============================================================================ +12:21:55 + + +waiting on router queue for slot.... +12:21:55 Sending to : +12:21:55 ============================================================================ +12:21:55 ============================================================================ +12:21:55 Slot Id : <256> +12:21:55 Transaction Type : RESPONSE +12:21:55 Received From : +12:21:55 ============================================================================ +12:21:55 FNo. Len. Field Value +12:21:55 ============================================================================ +12:21:55 [ 1] [ 4] [0810] +12:21:55 [ 7] [ 10] [0320052102] +12:21:55 [ 11] [ 6] [156286] +12:21:55 [ 39] [ 2] [00] +12:21:55 [ 70] [ 3] [301] +12:21:55 ============================================================================ +12:21:55 Calculate Source COMM Id = 2 +12:21:55 ============================================================================ +12:21:55 + + +waiting on router queue for slot.... +12:22:10 ============================================================================ +12:22:10 Slot Id : <197> +12:22:10 Transaction Type : REQUEST +12:22:10 Received From : +12:22:10 ============================================================================ +12:22:10 FNo. Len. Field Value +12:22:10 ============================================================================ +12:22:10 [ 1] [ 4] [0800] +12:22:10 [ 7] [ 10] [0320052118] +12:22:10 [ 11] [ 6] [156287] +12:22:10 [ 70] [ 3] [301] +12:22:10 ============================================================================ +12:22:10 + + +waiting on router queue for slot.... +12:22:10 Sending to : +12:22:10 ============================================================================ +12:22:10 ============================================================================ +12:22:10 Slot Id : <197> +12:22:10 Transaction Type : RESPONSE +12:22:10 Received From : +12:22:10 ============================================================================ +12:22:10 FNo. Len. Field Value +12:22:10 ============================================================================ +12:22:10 [ 1] [ 4] [0810] +12:22:10 [ 7] [ 10] [0320052118] +12:22:10 [ 11] [ 6] [156287] +12:22:10 [ 39] [ 2] [00] +12:22:10 [ 70] [ 3] [301] +12:22:10 ============================================================================ +12:22:10 Calculate Source COMM Id = 2 +12:22:10 ============================================================================ +12:22:10 + + +waiting on router queue for slot.... +12:22:26 ============================================================================ +12:22:26 Slot Id : <265> +12:22:26 Transaction Type : REQUEST +12:22:26 Received From : +12:22:26 ============================================================================ +12:22:26 FNo. Len. Field Value +12:22:26 ============================================================================ +12:22:26 [ 1] [ 4] [0800] +12:22:26 [ 7] [ 10] [0320052133] +12:22:26 [ 11] [ 6] [156288] +12:22:26 [ 70] [ 3] [301] +12:22:26 ============================================================================ +12:22:26 + + +waiting on router queue for slot.... +12:22:26 Sending to : +12:22:26 ============================================================================ +12:22:26 ============================================================================ +12:22:26 Slot Id : <265> +12:22:26 Transaction Type : RESPONSE +12:22:26 Received From : +12:22:26 ============================================================================ +12:22:26 FNo. Len. Field Value +12:22:26 ============================================================================ +12:22:26 [ 1] [ 4] [0810] +12:22:26 [ 7] [ 10] [0320052133] +12:22:26 [ 11] [ 6] [156288] +12:22:26 [ 39] [ 2] [00] +12:22:26 [ 70] [ 3] [301] +12:22:26 ============================================================================ +12:22:26 Calculate Source COMM Id = 2 +12:22:26 ============================================================================ +12:22:26 + + +waiting on router queue for slot.... +12:22:32 ============================================================================ +12:22:32 Slot Id : <247> +12:22:32 Transaction Type : REQUEST +12:22:32 Received From : +12:22:32 ============================================================================ +12:22:32 FNo. Len. Field Value +12:22:32 ============================================================================ +12:22:32 [ 1] [ 4] [0200] +12:22:32 [ 2] [ 16] [1808930600034060] +12:22:32 [ 3] [ 6] [011000] +12:22:32 [ 4] [ 12] [000100000000] +12:22:32 [ 7] [ 10] [0320122228] +12:22:32 [ 11] [ 6] [743607] +12:22:32 [ 12] [ 6] [122228] +12:22:32 [ 13] [ 4] [0320] +12:22:32 [ 15] [ 4] [0320] +12:22:32 [ 18] [ 4] [6011] +12:22:32 [ 22] [ 3] [900] +12:22:32 [ 25] [ 2] [02] +12:22:32 [ 28] [ 9] [D00002000] +12:22:32 [ 32] [ 6] [621354] +12:22:32 [ 35] [ 27] [1808930600034060=1803500228] +12:22:32 [ 37] [ 12] [507905035318] +12:22:32 [ 41] [ 8] [02002600] +12:22:32 [ 42] [ 15] [NATIVE ] +12:22:32 [ 43] [ 40] [Sebangfai Distric SEBANGFAI LAO] +12:22:32 [ 49] [ 3] [418] +12:22:32 [ 52] [ 16] [C96A940748B81216] +12:22:32 ============================================================================ +12:22:32 + + +waiting on router queue for slot.... +12:22:32 Sending to : +12:22:32 ============================================================================ +12:22:32 Sending to : +12:22:32 ============================================================================ +12:22:32 ============================================================================ +12:22:32 Slot Id : <247> +12:22:32 Transaction Type : REQUEST +12:22:32 Received From : +12:22:32 ============================================================================ +12:22:32 FNo. Len. Field Value +12:22:32 ============================================================================ +12:22:32 [ 1] [ 4] [0200] +12:22:32 [ 2] [ 16] [1808930600034060] +12:22:32 [ 3] [ 6] [011000] +12:22:32 [ 4] [ 12] [000100000000] +12:22:32 [ 7] [ 10] [0320122228] +12:22:32 [ 11] [ 6] [743607] +12:22:32 [ 12] [ 6] [122228] +12:22:32 [ 13] [ 4] [0320] +12:22:32 [ 15] [ 4] [0320] +12:22:32 [ 18] [ 4] [6011] +12:22:32 [ 22] [ 3] [900] +12:22:32 [ 25] [ 2] [02] +12:22:32 [ 28] [ 9] [D00002000] +12:22:32 [ 32] [ 6] [621354] +12:22:32 [ 35] [ 27] [1808930600034060=1803500228] +12:22:32 [ 37] [ 12] [507905035318] +12:22:32 [ 41] [ 8] [02002600] +12:22:32 [ 42] [ 15] [NATIVE ] +12:22:32 [ 43] [ 40] [Sebangfai Distric SEBANGFAI LAO] +12:22:32 [ 49] [ 3] [418] +12:22:32 [ 52] [ 16] [C96A940748B81216] +12:22:32 ============================================================================ +12:22:32 + + +waiting on router queue for slot.... +12:22:32 Sending to : +12:22:32 ============================================================================ +12:22:32 ============================================================================ +12:22:32 Slot Id : <247> +12:22:32 Transaction Type : REQUEST +12:22:32 Received From : +12:22:32 ============================================================================ +12:22:32 FNo. Len. Field Value +12:22:32 ============================================================================ +12:22:32 [ 1] [ 4] [0200] +12:22:32 [ 2] [ 16] [1808930600034060] +12:22:32 [ 3] [ 6] [011000] +12:22:32 [ 4] [ 12] [000100000000] +12:22:32 [ 7] [ 10] [0320122228] +12:22:32 [ 11] [ 6] [743607] +12:22:32 [ 12] [ 6] [122228] +12:22:32 [ 13] [ 4] [0320] +12:22:32 [ 15] [ 4] [0320] +12:22:32 [ 18] [ 4] [6011] +12:22:32 [ 22] [ 3] [900] +12:22:32 [ 25] [ 2] [02] +12:22:32 [ 28] [ 9] [D00002000] +12:22:32 [ 32] [ 6] [621354] +12:22:32 [ 35] [ 27] [1808930600034060=1803500228] +12:22:32 [ 37] [ 12] [507905035318] +12:22:32 [ 41] [ 8] [02002600] +12:22:32 [ 42] [ 15] [NATIVE ] +12:22:32 [ 43] [ 40] [Sebangfai Distric SEBANGFAI LAO] +12:22:32 [ 49] [ 3] [418] +12:22:32 [ 52] [ 16] [7342C03371BD2FF4] +12:22:32 ============================================================================ +12:22:32 + + +waiting on router queue for slot.... +12:22:32 Sending to : <2> +12:22:32 ============================================================================ +12:22:33 ============================================================================ +12:22:33 Slot Id : <274> +12:22:33 Transaction Type : REQUEST +12:22:33 Received From : +12:22:33 ============================================================================ +12:22:33 FNo. Len. Field Value +12:22:33 ============================================================================ +12:22:33 [ 1] [ 4] [0200] +12:22:33 [ 2] [ 16] [6213545000970115] +12:22:33 [ 3] [ 6] [301000] +12:22:33 [ 4] [ 12] [000000000000] +12:22:33 [ 7] [ 10] [0320122023] +12:22:33 [ 11] [ 6] [943990] +12:22:33 [ 12] [ 6] [122023] +12:22:33 [ 13] [ 4] [0320] +12:22:33 [ 15] [ 4] [0320] +12:22:33 [ 18] [ 4] [6011] +12:22:33 [ 19] [ 3] [418] +12:22:33 [ 22] [ 3] [021] +12:22:33 [ 25] [ 2] [01] +12:22:33 [ 28] [ 9] [D00000000] +12:22:33 [ 32] [ 6] [668899] +12:22:33 [ 35] [ 32] [6213545000970115=491212017011395] +12:22:33 [ 37] [ 12] [507900123297] +12:22:33 [ 41] [ 8] [03020003] +12:22:33 [ 42] [ 15] [APT ] +12:22:33 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:22:33 [ 49] [ 3] [418] +12:22:33 [ 52] [ 16] [3B70B5F55EEBA13A] +12:22:33 ============================================================================ +12:22:33 + + +waiting on router queue for slot.... +12:22:33 Sending to : +12:22:33 ============================================================================ +12:22:33 Sending to : +12:22:33 ============================================================================ +12:22:33 ============================================================================ +12:22:33 Slot Id : <274> +12:22:33 Transaction Type : REQUEST +12:22:33 Received From : +12:22:33 ============================================================================ +12:22:33 FNo. Len. Field Value +12:22:33 ============================================================================ +12:22:33 [ 1] [ 4] [0200] +12:22:33 [ 2] [ 16] [6213545000970115] +12:22:33 [ 3] [ 6] [301000] +12:22:33 [ 4] [ 12] [000000000000] +12:22:33 [ 7] [ 10] [0320122023] +12:22:33 [ 11] [ 6] [943990] +12:22:33 [ 12] [ 6] [122023] +12:22:33 [ 13] [ 4] [0320] +12:22:33 [ 15] [ 4] [0320] +12:22:33 [ 18] [ 4] [6011] +12:22:33 [ 19] [ 3] [418] +12:22:33 [ 22] [ 3] [021] +12:22:33 [ 25] [ 2] [01] +12:22:33 [ 28] [ 9] [D00000000] +12:22:33 [ 32] [ 6] [668899] +12:22:33 [ 35] [ 32] [6213545000970115=491212017011395] +12:22:33 [ 37] [ 12] [507900123297] +12:22:33 [ 41] [ 8] [03020003] +12:22:33 [ 42] [ 15] [APT ] +12:22:33 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:22:33 [ 49] [ 3] [418] +12:22:33 [ 52] [ 16] [3B70B5F55EEBA13A] +12:22:33 ============================================================================ +12:22:33 + + +waiting on router queue for slot.... +12:22:33 Sending to : +12:22:33 ============================================================================ +12:22:33 ============================================================================ +12:22:33 Slot Id : <274> +12:22:33 Transaction Type : REQUEST +12:22:33 Received From : +12:22:33 ============================================================================ +12:22:33 FNo. Len. Field Value +12:22:33 ============================================================================ +12:22:33 [ 1] [ 4] [0200] +12:22:33 [ 2] [ 16] [6213545000970115] +12:22:33 [ 3] [ 6] [301000] +12:22:33 [ 4] [ 12] [000000000000] +12:22:33 [ 7] [ 10] [0320122023] +12:22:33 [ 11] [ 6] [943990] +12:22:33 [ 12] [ 6] [122023] +12:22:33 [ 13] [ 4] [0320] +12:22:33 [ 15] [ 4] [0320] +12:22:33 [ 18] [ 4] [6011] +12:22:33 [ 19] [ 3] [418] +12:22:33 [ 22] [ 3] [021] +12:22:33 [ 25] [ 2] [01] +12:22:33 [ 28] [ 9] [D00000000] +12:22:33 [ 32] [ 6] [668899] +12:22:33 [ 35] [ 32] [6213545000970115=491212017011395] +12:22:33 [ 37] [ 12] [507900123297] +12:22:33 [ 41] [ 8] [03020003] +12:22:33 [ 42] [ 15] [APT ] +12:22:33 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:22:33 [ 49] [ 3] [418] +12:22:33 [ 52] [ 16] [BE059BE018784AA9] +12:22:33 ============================================================================ +12:22:33 + + +waiting on router queue for slot.... +12:22:33 Sending to : <0> +12:22:33 ============================================================================ +12:22:33 ============================================================================ +12:22:33 Slot Id : <274> +12:22:33 Transaction Type : RESPONSE +12:22:33 Received From : +12:22:33 ============================================================================ +12:22:33 FNo. Len. Field Value +12:22:33 ============================================================================ +12:22:33 [ 1] [ 4] [0210] +12:22:33 [ 2] [ 16] [6213545000970115] +12:22:33 [ 3] [ 6] [301000] +12:22:33 [ 4] [ 12] [000000000000] +12:22:33 [ 7] [ 10] [0320122023] +12:22:33 [ 11] [ 6] [943990] +12:22:33 [ 12] [ 6] [122023] +12:22:33 [ 13] [ 4] [0320] +12:22:33 [ 15] [ 4] [0320] +12:22:33 [ 18] [ 4] [6011] +12:22:33 [ 19] [ 3] [418] +12:22:33 [ 32] [ 6] [668899] +12:22:33 [ 35] [ 32] [6213545000970115=491212017011395] +12:22:33 [ 37] [ 12] [507900123297] +12:22:33 [ 38] [ 6] [223263] +12:22:33 [ 39] [ 2] [00] +12:22:33 [ 41] [ 8] [03020003] +12:22:33 [ 49] [ 3] [418] +12:22:33 [ 54] [ 40] [1001418C0004217077081002418C000421707708] +12:22:33 ============================================================================ +12:22:33 Sending to : +12:22:33 ============================================================================ +12:22:33 + + +waiting on router queue for slot.... +12:22:34 ============================================================================ +12:22:34 Slot Id : <218> +12:22:34 Transaction Type : REQUEST +12:22:34 Received From : +12:22:34 ============================================================================ +12:22:34 FNo. Len. Field Value +12:22:34 ============================================================================ +12:22:34 [ 1] [ 4] [0800] +12:22:34 [ 2] [ 5] [02531] +12:22:34 [ 3] [ 6] [579128] +12:22:34 [ 7] [ 10] [0320052234] +12:22:34 [ 11] [ 6] [807130] +12:22:34 [ 15] [ 10] [0320052234] +12:22:34 [ 37] [ 11] [57912807130] +12:22:34 [ 70] [ 3] [001] +12:22:34 ============================================================================ +12:22:34 + + +waiting on router queue for slot.... +12:22:34 ============================================================================ +12:22:34 Slot Id : <218> +12:22:34 Transaction Type : RESPONSE +12:22:34 Received From : +12:22:34 ============================================================================ +12:22:34 FNo. Len. Field Value +12:22:34 ============================================================================ +12:22:34 [ 1] [ 4] [0810] +12:22:34 [ 7] [ 10] [0320052234] +12:22:34 [ 11] [ 6] [807130] +12:22:34 [ 15] [ 4] [0320] +12:22:34 [ 37] [ 12] [57912807130] +12:22:34 [ 39] [ 2] [00] +12:22:34 [ 70] [ 3] [001] +12:22:34 ============================================================================ +12:22:34 Sending to : +12:22:34 ============================================================================ +12:22:34 + + +waiting on router queue for slot.... +12:22:35 ============================================================================ +12:22:35 Slot Id : <274> +12:22:35 Transaction Type : RESPONSE +12:22:35 Received From : +12:22:35 ============================================================================ +12:22:35 FNo. Len. Field Value +12:22:35 ============================================================================ +12:22:35 [ 1] [ 4] [0210] +12:22:35 [ 2] [ 16] [6213545000970115] +12:22:35 [ 3] [ 6] [301000] +12:22:35 [ 4] [ 12] [000000000000] +12:22:35 [ 7] [ 10] [0320122023] +12:22:35 [ 11] [ 6] [943990] +12:22:35 [ 12] [ 6] [122023] +12:22:35 [ 13] [ 4] [0320] +12:22:35 [ 15] [ 4] [0320] +12:22:35 [ 18] [ 4] [6011] +12:22:35 [ 19] [ 3] [418] +12:22:35 [ 32] [ 6] [668899] +12:22:35 [ 35] [ 32] [6213545000970115=491212017011395] +12:22:35 [ 37] [ 12] [507900123297] +12:22:35 [ 38] [ 6] [223263] +12:22:35 [ 39] [ 2] [00] +12:22:35 [ 41] [ 8] [03020003] +12:22:35 [ 49] [ 3] [418] +12:22:35 [ 54] [ 40] [1001418C0004217077081002418C000421707708] +12:22:35 ============================================================================ +12:22:35 Calculate Source COMM Id = 4 +12:22:35 ============================================================================ +12:22:35 + + +waiting on router queue for slot.... +12:22:37 ============================================================================ +12:22:37 Slot Id : <247> +12:22:37 Transaction Type : RESPONSE +12:22:37 Received From : +12:22:37 ============================================================================ +12:22:37 FNo. Len. Field Value +12:22:37 ============================================================================ +12:22:37 [ 1] [ 4] [0210] +12:22:37 [ 2] [ 16] [1808930600034060] +12:22:37 [ 3] [ 6] [011000] +12:22:37 [ 4] [ 12] [000100000000] +12:22:37 [ 6] [ 12] [000100000000] +12:22:37 [ 7] [ 10] [0320122228] +12:22:37 [ 11] [ 6] [743607] +12:22:37 [ 12] [ 6] [122228] +12:22:37 [ 13] [ 4] [0320] +12:22:37 [ 18] [ 4] [6011] +12:22:37 [ 19] [ 3] [418] +12:22:37 [ 22] [ 3] [021] +12:22:37 [ 32] [ 6] [621354] +12:22:37 [ 35] [ 27] [1808930600034060=1803500228] +12:22:37 [ 37] [ 12] [507905035318] +12:22:37 [ 38] [ 6] [743607] +12:22:37 [ 39] [ 2] [00] +12:22:37 [ 41] [ 8] [02002600] +12:22:37 [ 49] [ 3] [418] +12:22:37 [ 52] [ 16] [7342C03371BD2FF4] +12:22:37 [ 54] [ 20] [1001764C000000749349] +12:22:37 ============================================================================ +12:22:37 Sending to : +12:22:37 ============================================================================ +12:22:37 + + +waiting on router queue for slot.... +12:22:39 ============================================================================ +12:22:39 Slot Id : <247> +12:22:39 Transaction Type : RESPONSE +12:22:39 Received From : +12:22:39 ============================================================================ +12:22:39 FNo. Len. Field Value +12:22:39 ============================================================================ +12:22:39 [ 1] [ 4] [0210] +12:22:39 [ 2] [ 16] [1808930600034060] +12:22:39 [ 3] [ 6] [011000] +12:22:39 [ 4] [ 12] [000100000000] +12:22:39 [ 6] [ 12] [000100000000] +12:22:39 [ 7] [ 10] [0320122228] +12:22:39 [ 11] [ 6] [743607] +12:22:39 [ 12] [ 6] [122228] +12:22:39 [ 13] [ 4] [0320] +12:22:39 [ 18] [ 4] [6011] +12:22:39 [ 19] [ 3] [418] +12:22:39 [ 22] [ 3] [021] +12:22:39 [ 32] [ 6] [621354] +12:22:39 [ 35] [ 27] [1808930600034060=1803500228] +12:22:39 [ 37] [ 12] [507905035318] +12:22:39 [ 38] [ 6] [743607] +12:22:39 [ 39] [ 2] [00] +12:22:39 [ 41] [ 8] [02002600] +12:22:39 [ 49] [ 3] [418] +12:22:39 [ 52] [ 16] [7342C03371BD2FF4] +12:22:39 [ 54] [ 20] [1001764C000000749349] +12:22:39 ============================================================================ +12:22:39 Calculate Source COMM Id = 0 +12:22:39 ============================================================================ +12:22:39 + + +waiting on router queue for slot.... +12:22:47 ============================================================================ +12:22:47 Slot Id : <279> +12:22:47 Transaction Type : REQUEST +12:22:47 Received From : +12:22:47 ============================================================================ +12:22:47 FNo. Len. Field Value +12:22:47 ============================================================================ +12:22:47 [ 1] [ 4] [0800] +12:22:47 [ 7] [ 10] [0320052155] +12:22:47 [ 11] [ 6] [156289] +12:22:47 [ 70] [ 3] [301] +12:22:47 ============================================================================ +12:22:47 + + +waiting on router queue for slot.... +12:22:47 Sending to : +12:22:47 ============================================================================ +12:22:47 ============================================================================ +12:22:47 Slot Id : <279> +12:22:47 Transaction Type : RESPONSE +12:22:47 Received From : +12:22:47 ============================================================================ +12:22:47 FNo. Len. Field Value +12:22:47 ============================================================================ +12:22:47 [ 1] [ 4] [0810] +12:22:47 [ 7] [ 10] [0320052155] +12:22:47 [ 11] [ 6] [156289] +12:22:47 [ 39] [ 2] [00] +12:22:47 [ 70] [ 3] [301] +12:22:47 ============================================================================ +12:22:47 Calculate Source COMM Id = 2 +12:22:47 ============================================================================ +12:22:47 + + +waiting on router queue for slot.... +12:22:49 ============================================================================ +12:22:49 Slot Id : <231> +12:22:49 Transaction Type : REQUEST +12:22:49 Received From : +12:22:49 ============================================================================ +12:22:49 FNo. Len. Field Value +12:22:49 ============================================================================ +12:22:49 [ 1] [ 4] [0200] +12:22:49 [ 2] [ 16] [6688990030016826] +12:22:49 [ 3] [ 6] [010000] +12:22:49 [ 4] [ 12] [000100000000] +12:22:49 [ 7] [ 10] [0320052157] +12:22:49 [ 11] [ 6] [268998] +12:22:49 [ 12] [ 6] [122157] +12:22:49 [ 13] [ 4] [0320] +12:22:49 [ 14] [ 4] [9804] +12:22:49 [ 15] [ 4] [0320] +12:22:49 [ 18] [ 4] [6011] +12:22:49 [ 19] [ 3] [418] +12:22:49 [ 22] [ 3] [021] +12:22:49 [ 25] [ 2] [01] +12:22:49 [ 28] [ 9] [D00002000] +12:22:49 [ 32] [ 6] [180893] +12:22:49 [ 35] [ 37] [6688990030016826=98041261765824500000] +12:22:49 [ 37] [ 12] [507905268998] +12:22:49 [ 41] [ 8] [0528LPBP] +12:22:49 [ 42] [ 15] [999999 ] +12:22:49 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +12:22:49 [ 49] [ 3] [418] +12:22:49 [ 52] [ 16] [97DAF74D98BEDF49] +12:22:49 ============================================================================ +12:22:49 + + +waiting on router queue for slot.... +12:22:49 Sending to : +12:22:49 ============================================================================ +12:22:49 Sending to : +12:22:49 ============================================================================ +12:22:50 ============================================================================ +12:22:50 Slot Id : <231> +12:22:50 Transaction Type : REQUEST +12:22:50 Received From : +12:22:50 ============================================================================ +12:22:50 FNo. Len. Field Value +12:22:50 ============================================================================ +12:22:50 [ 1] [ 4] [0200] +12:22:50 [ 2] [ 16] [6688990030016826] +12:22:50 [ 3] [ 6] [010000] +12:22:50 [ 4] [ 12] [000100000000] +12:22:50 [ 7] [ 10] [0320052157] +12:22:50 [ 11] [ 6] [268998] +12:22:50 [ 12] [ 6] [122157] +12:22:50 [ 13] [ 4] [0320] +12:22:50 [ 14] [ 4] [9804] +12:22:50 [ 15] [ 4] [0320] +12:22:50 [ 18] [ 4] [6011] +12:22:50 [ 19] [ 3] [418] +12:22:50 [ 22] [ 3] [021] +12:22:50 [ 25] [ 2] [01] +12:22:50 [ 28] [ 9] [D00002000] +12:22:50 [ 32] [ 6] [180893] +12:22:50 [ 35] [ 37] [6688990030016826=98041261765824500000] +12:22:50 [ 37] [ 12] [507905268998] +12:22:50 [ 41] [ 8] [0528LPBP] +12:22:50 [ 42] [ 15] [999999 ] +12:22:50 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +12:22:50 [ 49] [ 3] [418] +12:22:50 [ 52] [ 16] [97DAF74D98BEDF49] +12:22:50 ============================================================================ +12:22:50 + + +waiting on router queue for slot.... +12:22:50 Sending to : +12:22:50 ============================================================================ +12:22:50 ============================================================================ +12:22:50 Slot Id : <231> +12:22:50 Transaction Type : REQUEST +12:22:50 Received From : +12:22:50 ============================================================================ +12:22:50 FNo. Len. Field Value +12:22:50 ============================================================================ +12:22:50 [ 1] [ 4] [0200] +12:22:50 [ 2] [ 16] [6688990030016826] +12:22:50 [ 3] [ 6] [010000] +12:22:50 [ 4] [ 12] [000100000000] +12:22:50 [ 7] [ 10] [0320052157] +12:22:50 [ 11] [ 6] [268998] +12:22:50 [ 12] [ 6] [122157] +12:22:50 [ 13] [ 4] [0320] +12:22:50 [ 14] [ 4] [9804] +12:22:50 [ 15] [ 4] [0320] +12:22:50 [ 18] [ 4] [6011] +12:22:50 [ 19] [ 3] [418] +12:22:50 [ 22] [ 3] [021] +12:22:50 [ 25] [ 2] [01] +12:22:50 [ 28] [ 9] [D00002000] +12:22:50 [ 32] [ 6] [180893] +12:22:50 [ 35] [ 37] [6688990030016826=98041261765824500000] +12:22:50 [ 37] [ 12] [507905268998] +12:22:50 [ 41] [ 8] [0528LPBP] +12:22:50 [ 42] [ 15] [999999 ] +12:22:50 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +12:22:50 [ 49] [ 3] [418] +12:22:50 [ 52] [ 16] [5DFD6335D713D08E] +12:22:50 ============================================================================ +12:22:50 + + +waiting on router queue for slot.... +12:22:50 Sending to : <0> +12:22:50 ============================================================================ +12:22:50 ============================================================================ +12:22:50 Slot Id : <231> +12:22:50 Transaction Type : RESPONSE +12:22:50 Received From : +12:22:50 ============================================================================ +12:22:50 FNo. Len. Field Value +12:22:50 ============================================================================ +12:22:50 [ 1] [ 4] [0210] +12:22:50 [ 2] [ 16] [6688990030016826] +12:22:50 [ 3] [ 6] [010000] +12:22:50 [ 4] [ 12] [000100000000] +12:22:50 [ 7] [ 10] [0320052157] +12:22:50 [ 11] [ 6] [268998] +12:22:50 [ 12] [ 6] [122157] +12:22:50 [ 13] [ 4] [0320] +12:22:50 [ 15] [ 4] [0320] +12:22:50 [ 18] [ 4] [6011] +12:22:50 [ 19] [ 3] [418] +12:22:50 [ 22] [ 3] [021] +12:22:50 [ 32] [ 6] [180893] +12:22:50 [ 35] [ 37] [6688990030016826=98041261765824500000] +12:22:50 [ 37] [ 12] [507905268998] +12:22:50 [ 39] [ 2] [14] +12:22:50 [ 41] [ 8] [0528LPBP] +12:22:50 [ 49] [ 3] [418] +12:22:50 ============================================================================ +12:22:50 Sending to : +12:22:50 ============================================================================ +12:22:50 + + +waiting on router queue for slot.... +12:22:50 ============================================================================ +12:22:50 Slot Id : <264> +12:22:50 Transaction Type : REQUEST +12:22:50 Received From : +12:22:50 ============================================================================ +12:22:50 FNo. Len. Field Value +12:22:50 ============================================================================ +12:22:50 [ 1] [ 4] [0200] +12:22:50 [ 2] [ 16] [6213545000324842] +12:22:50 [ 3] [ 6] [010000] +12:22:50 [ 4] [ 12] [000200000000] +12:22:50 [ 7] [ 10] [0320052157] +12:22:50 [ 11] [ 6] [268999] +12:22:50 [ 12] [ 6] [122157] +12:22:50 [ 13] [ 4] [0320] +12:22:50 [ 14] [ 4] [4912] +12:22:50 [ 15] [ 4] [0320] +12:22:50 [ 18] [ 4] [6011] +12:22:50 [ 19] [ 3] [418] +12:22:50 [ 22] [ 3] [021] +12:22:50 [ 25] [ 2] [01] +12:22:50 [ 28] [ 9] [D00002000] +12:22:50 [ 32] [ 6] [180893] +12:22:50 [ 35] [ 32] [6213545000324842=491212012484468] +12:22:50 [ 37] [ 12] [507905268999] +12:22:50 [ 41] [ 8] [0366SKTT] +12:22:50 [ 42] [ 15] [999999 ] +12:22:50 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:22:50 [ 49] [ 3] [418] +12:22:50 [ 52] [ 16] [ECF25C6F842534B7] +12:22:50 ============================================================================ +12:22:50 + + +waiting on router queue for slot.... +12:22:50 Sending to : +12:22:50 ============================================================================ +12:22:50 Sending to : +12:22:50 ============================================================================ +12:22:51 ============================================================================ +12:22:51 Slot Id : <264> +12:22:51 Transaction Type : REQUEST +12:22:51 Received From : +12:22:51 ============================================================================ +12:22:51 FNo. Len. Field Value +12:22:51 ============================================================================ +12:22:51 [ 1] [ 4] [0200] +12:22:51 [ 2] [ 16] [6213545000324842] +12:22:51 [ 3] [ 6] [010000] +12:22:51 [ 4] [ 12] [000200000000] +12:22:51 [ 7] [ 10] [0320052157] +12:22:51 [ 11] [ 6] [268999] +12:22:51 [ 12] [ 6] [122157] +12:22:51 [ 13] [ 4] [0320] +12:22:51 [ 14] [ 4] [4912] +12:22:51 [ 15] [ 4] [0320] +12:22:51 [ 18] [ 4] [6011] +12:22:51 [ 19] [ 3] [418] +12:22:51 [ 22] [ 3] [021] +12:22:51 [ 25] [ 2] [01] +12:22:51 [ 28] [ 9] [D00002000] +12:22:51 [ 32] [ 6] [180893] +12:22:51 [ 35] [ 32] [6213545000324842=491212012484468] +12:22:51 [ 37] [ 12] [507905268999] +12:22:51 [ 41] [ 8] [0366SKTT] +12:22:51 [ 42] [ 15] [999999 ] +12:22:51 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:22:51 [ 49] [ 3] [418] +12:22:51 [ 52] [ 16] [ECF25C6F842534B7] +12:22:51 ============================================================================ +12:22:51 + + +waiting on router queue for slot.... +12:22:51 Sending to : +12:22:51 ============================================================================ +12:22:51 ============================================================================ +12:22:51 Slot Id : <264> +12:22:51 Transaction Type : REQUEST +12:22:51 Received From : +12:22:51 ============================================================================ +12:22:51 FNo. Len. Field Value +12:22:51 ============================================================================ +12:22:51 [ 1] [ 4] [0200] +12:22:51 [ 2] [ 16] [6213545000324842] +12:22:51 [ 3] [ 6] [010000] +12:22:51 [ 4] [ 12] [000200000000] +12:22:51 [ 7] [ 10] [0320052157] +12:22:51 [ 11] [ 6] [268999] +12:22:51 [ 12] [ 6] [122157] +12:22:51 [ 13] [ 4] [0320] +12:22:51 [ 14] [ 4] [4912] +12:22:51 [ 15] [ 4] [0320] +12:22:51 [ 18] [ 4] [6011] +12:22:51 [ 19] [ 3] [418] +12:22:51 [ 22] [ 3] [021] +12:22:51 [ 25] [ 2] [01] +12:22:51 [ 28] [ 9] [D00002000] +12:22:51 [ 32] [ 6] [180893] +12:22:51 [ 35] [ 32] [6213545000324842=491212012484468] +12:22:51 [ 37] [ 12] [507905268999] +12:22:51 [ 41] [ 8] [0366SKTT] +12:22:51 [ 42] [ 15] [999999 ] +12:22:51 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:22:51 [ 49] [ 3] [418] +12:22:51 [ 52] [ 16] [6B0C9954AF568579] +12:22:51 ============================================================================ +12:22:51 + + +waiting on router queue for slot.... +12:22:51 Sending to : <0> +12:22:51 ============================================================================ +12:22:51 ============================================================================ +12:22:51 Slot Id : <264> +12:22:51 Transaction Type : RESPONSE +12:22:51 Received From : +12:22:51 ============================================================================ +12:22:51 FNo. Len. Field Value +12:22:51 ============================================================================ +12:22:51 [ 1] [ 4] [0210] +12:22:51 [ 2] [ 16] [6213545000324842] +12:22:51 [ 3] [ 6] [010000] +12:22:51 [ 4] [ 12] [000200000000] +12:22:51 [ 7] [ 10] [0320052157] +12:22:51 [ 11] [ 6] [268999] +12:22:51 [ 12] [ 6] [122157] +12:22:51 [ 13] [ 4] [0320] +12:22:51 [ 15] [ 4] [0320] +12:22:51 [ 18] [ 4] [6011] +12:22:51 [ 19] [ 3] [418] +12:22:51 [ 22] [ 3] [021] +12:22:51 [ 32] [ 6] [180893] +12:22:51 [ 35] [ 32] [6213545000324842=491212012484468] +12:22:51 [ 37] [ 12] [507905268999] +12:22:51 [ 39] [ 2] [61] +12:22:51 [ 41] [ 8] [0366SKTT] +12:22:51 [ 49] [ 3] [418] +12:22:51 ============================================================================ +12:22:51 Sending to : +12:22:51 ============================================================================ +12:22:51 + + +waiting on router queue for slot.... +12:22:51 ============================================================================ +12:22:51 Slot Id : <231> +12:22:51 Transaction Type : RESPONSE +12:22:51 Received From : +12:22:51 ============================================================================ +12:22:51 FNo. Len. Field Value +12:22:51 ============================================================================ +12:22:51 [ 1] [ 4] [0210] +12:22:51 [ 2] [ 16] [6688990030016826] +12:22:51 [ 3] [ 6] [010000] +12:22:51 [ 4] [ 12] [000100000000] +12:22:51 [ 7] [ 10] [0320052157] +12:22:51 [ 11] [ 6] [268998] +12:22:51 [ 12] [ 6] [122157] +12:22:51 [ 13] [ 4] [0320] +12:22:51 [ 15] [ 4] [0320] +12:22:51 [ 18] [ 4] [6011] +12:22:51 [ 19] [ 3] [418] +12:22:51 [ 22] [ 3] [021] +12:22:51 [ 32] [ 6] [180893] +12:22:51 [ 35] [ 37] [6688990030016826=98041261765824500000] +12:22:51 [ 37] [ 12] [507905268998] +12:22:51 [ 39] [ 2] [14] +12:22:51 [ 41] [ 8] [0528LPBP] +12:22:51 [ 49] [ 3] [418] +12:22:51 ============================================================================ +12:22:51 Calculate Source COMM Id = 2 +12:22:51 ============================================================================ +12:22:51 + + +waiting on router queue for slot.... +12:22:52 ============================================================================ +12:22:52 Slot Id : <264> +12:22:52 Transaction Type : RESPONSE +12:22:52 Received From : +12:22:52 ============================================================================ +12:22:52 FNo. Len. Field Value +12:22:52 ============================================================================ +12:22:52 [ 1] [ 4] [0210] +12:22:52 [ 2] [ 16] [6213545000324842] +12:22:52 [ 3] [ 6] [010000] +12:22:52 [ 4] [ 12] [000200000000] +12:22:52 [ 7] [ 10] [0320052157] +12:22:52 [ 11] [ 6] [268999] +12:22:52 [ 12] [ 6] [122157] +12:22:52 [ 13] [ 4] [0320] +12:22:52 [ 15] [ 4] [0320] +12:22:52 [ 18] [ 4] [6011] +12:22:52 [ 19] [ 3] [418] +12:22:52 [ 22] [ 3] [021] +12:22:52 [ 32] [ 6] [180893] +12:22:52 [ 35] [ 32] [6213545000324842=491212012484468] +12:22:52 [ 37] [ 12] [507905268999] +12:22:52 [ 39] [ 2] [61] +12:22:52 [ 41] [ 8] [0366SKTT] +12:22:52 [ 49] [ 3] [418] +12:22:52 ============================================================================ +12:22:52 Calculate Source COMM Id = 2 +12:22:52 ============================================================================ +12:22:52 + + +waiting on router queue for slot.... +12:22:59 ============================================================================ +12:22:59 Slot Id : <273> +12:22:59 Transaction Type : REQUEST +12:22:59 Received From : +12:22:59 ============================================================================ +12:22:59 FNo. Len. Field Value +12:22:59 ============================================================================ +12:22:59 [ 1] [ 4] [0200] +12:22:59 [ 2] [ 16] [6213545000970115] +12:22:59 [ 3] [ 6] [302000] +12:22:59 [ 4] [ 12] [000000000000] +12:22:59 [ 7] [ 10] [0320122050] +12:22:59 [ 11] [ 6] [944015] +12:22:59 [ 12] [ 6] [122050] +12:22:59 [ 13] [ 4] [0320] +12:22:59 [ 15] [ 4] [0320] +12:22:59 [ 18] [ 4] [6011] +12:22:59 [ 19] [ 3] [418] +12:22:59 [ 22] [ 3] [021] +12:22:59 [ 25] [ 2] [01] +12:22:59 [ 28] [ 9] [D00000000] +12:22:59 [ 32] [ 6] [668899] +12:22:59 [ 35] [ 32] [6213545000970115=491212017011395] +12:22:59 [ 37] [ 12] [507900123298] +12:22:59 [ 41] [ 8] [03020003] +12:22:59 [ 42] [ 15] [APT ] +12:22:59 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:22:59 [ 49] [ 3] [418] +12:22:59 [ 52] [ 16] [3B70B5F55EEBA13A] +12:22:59 ============================================================================ +12:22:59 + + +waiting on router queue for slot.... +12:22:59 Sending to : +12:22:59 ============================================================================ +12:22:59 Sending to : +12:22:59 ============================================================================ +12:22:59 ============================================================================ +12:22:59 Slot Id : <273> +12:22:59 Transaction Type : REQUEST +12:22:59 Received From : +12:22:59 ============================================================================ +12:22:59 FNo. Len. Field Value +12:22:59 ============================================================================ +12:22:59 [ 1] [ 4] [0200] +12:22:59 [ 2] [ 16] [6213545000970115] +12:22:59 [ 3] [ 6] [302000] +12:22:59 [ 4] [ 12] [000000000000] +12:22:59 [ 7] [ 10] [0320122050] +12:22:59 [ 11] [ 6] [944015] +12:22:59 [ 12] [ 6] [122050] +12:22:59 [ 13] [ 4] [0320] +12:22:59 [ 15] [ 4] [0320] +12:22:59 [ 18] [ 4] [6011] +12:22:59 [ 19] [ 3] [418] +12:22:59 [ 22] [ 3] [021] +12:22:59 [ 25] [ 2] [01] +12:22:59 [ 28] [ 9] [D00000000] +12:22:59 [ 32] [ 6] [668899] +12:22:59 [ 35] [ 32] [6213545000970115=491212017011395] +12:22:59 [ 37] [ 12] [507900123298] +12:22:59 [ 41] [ 8] [03020003] +12:22:59 [ 42] [ 15] [APT ] +12:22:59 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:22:59 [ 49] [ 3] [418] +12:22:59 [ 52] [ 16] [3B70B5F55EEBA13A] +12:22:59 ============================================================================ +12:22:59 + + +waiting on router queue for slot.... +12:22:59 Sending to : +12:22:59 ============================================================================ +12:22:59 ============================================================================ +12:22:59 Slot Id : <273> +12:22:59 Transaction Type : REQUEST +12:22:59 Received From : +12:22:59 ============================================================================ +12:22:59 FNo. Len. Field Value +12:22:59 ============================================================================ +12:22:59 [ 1] [ 4] [0200] +12:22:59 [ 2] [ 16] [6213545000970115] +12:22:59 [ 3] [ 6] [302000] +12:22:59 [ 4] [ 12] [000000000000] +12:22:59 [ 7] [ 10] [0320122050] +12:22:59 [ 11] [ 6] [944015] +12:22:59 [ 12] [ 6] [122050] +12:22:59 [ 13] [ 4] [0320] +12:22:59 [ 15] [ 4] [0320] +12:22:59 [ 18] [ 4] [6011] +12:22:59 [ 19] [ 3] [418] +12:22:59 [ 22] [ 3] [021] +12:22:59 [ 25] [ 2] [01] +12:22:59 [ 28] [ 9] [D00000000] +12:22:59 [ 32] [ 6] [668899] +12:22:59 [ 35] [ 32] [6213545000970115=491212017011395] +12:22:59 [ 37] [ 12] [507900123298] +12:22:59 [ 41] [ 8] [03020003] +12:22:59 [ 42] [ 15] [APT ] +12:22:59 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:22:59 [ 49] [ 3] [418] +12:22:59 [ 52] [ 16] [BE059BE018784AA9] +12:22:59 ============================================================================ +12:22:59 + + +waiting on router queue for slot.... +12:22:59 Sending to : <0> +12:22:59 ============================================================================ +12:23:00 ============================================================================ +12:23:00 Slot Id : <273> +12:23:00 Transaction Type : RESPONSE +12:23:00 Received From : +12:23:00 ============================================================================ +12:23:00 FNo. Len. Field Value +12:23:00 ============================================================================ +12:23:00 [ 1] [ 4] [0210] +12:23:00 [ 2] [ 16] [6213545000970115] +12:23:00 [ 3] [ 6] [302000] +12:23:00 [ 4] [ 12] [000000000000] +12:23:00 [ 7] [ 10] [0320122050] +12:23:00 [ 11] [ 6] [944015] +12:23:00 [ 12] [ 6] [122050] +12:23:00 [ 13] [ 4] [0320] +12:23:00 [ 15] [ 4] [0320] +12:23:00 [ 18] [ 4] [6011] +12:23:00 [ 19] [ 3] [418] +12:23:00 [ 32] [ 6] [668899] +12:23:00 [ 35] [ 32] [6213545000970115=491212017011395] +12:23:00 [ 37] [ 12] [507900123298] +12:23:00 [ 38] [ 6] [390418] +12:23:00 [ 39] [ 2] [00] +12:23:00 [ 41] [ 8] [03020003] +12:23:00 [ 49] [ 3] [418] +12:23:00 [ 54] [ 40] [2001418C0004217077082002418C000421707708] +12:23:00 ============================================================================ +12:23:00 Sending to : +12:23:00 ============================================================================ +12:23:00 + + +waiting on router queue for slot.... +12:23:01 ============================================================================ +12:23:01 Slot Id : <273> +12:23:01 Transaction Type : RESPONSE +12:23:01 Received From : +12:23:01 ============================================================================ +12:23:01 FNo. Len. Field Value +12:23:01 ============================================================================ +12:23:01 [ 1] [ 4] [0210] +12:23:01 [ 2] [ 16] [6213545000970115] +12:23:01 [ 3] [ 6] [302000] +12:23:01 [ 4] [ 12] [000000000000] +12:23:01 [ 7] [ 10] [0320122050] +12:23:01 [ 11] [ 6] [944015] +12:23:01 [ 12] [ 6] [122050] +12:23:01 [ 13] [ 4] [0320] +12:23:01 [ 15] [ 4] [0320] +12:23:01 [ 18] [ 4] [6011] +12:23:01 [ 19] [ 3] [418] +12:23:01 [ 32] [ 6] [668899] +12:23:01 [ 35] [ 32] [6213545000970115=491212017011395] +12:23:01 [ 37] [ 12] [507900123298] +12:23:01 [ 38] [ 6] [390418] +12:23:01 [ 39] [ 2] [00] +12:23:01 [ 41] [ 8] [03020003] +12:23:01 [ 49] [ 3] [418] +12:23:01 [ 54] [ 40] [2001418C0004217077082002418C000421707708] +12:23:01 ============================================================================ +12:23:01 Calculate Source COMM Id = 4 +12:23:01 ============================================================================ +12:23:01 + + +waiting on router queue for slot.... +12:23:08 ============================================================================ +12:23:08 Slot Id : <220> +12:23:08 Transaction Type : REQUEST +12:23:08 Received From : +12:23:08 ============================================================================ +12:23:08 FNo. Len. Field Value +12:23:08 ============================================================================ +12:23:08 [ 1] [ 4] [0800] +12:23:08 [ 7] [ 10] [0320052216] +12:23:08 [ 11] [ 6] [156290] +12:23:08 [ 70] [ 3] [301] +12:23:08 ============================================================================ +12:23:08 + + +waiting on router queue for slot.... +12:23:08 Sending to : +12:23:08 ============================================================================ +12:23:08 ============================================================================ +12:23:08 Slot Id : <220> +12:23:08 Transaction Type : RESPONSE +12:23:08 Received From : +12:23:08 ============================================================================ +12:23:08 FNo. Len. Field Value +12:23:08 ============================================================================ +12:23:08 [ 1] [ 4] [0810] +12:23:08 [ 7] [ 10] [0320052216] +12:23:08 [ 11] [ 6] [156290] +12:23:08 [ 39] [ 2] [00] +12:23:08 [ 70] [ 3] [301] +12:23:08 ============================================================================ +12:23:08 Calculate Source COMM Id = 2 +12:23:08 ============================================================================ +12:23:08 + + +waiting on router queue for slot.... +12:23:19 ============================================================================ +12:23:19 Slot Id : <254> +12:23:19 Transaction Type : REQUEST +12:23:19 Received From : +12:23:19 ============================================================================ +12:23:19 FNo. Len. Field Value +12:23:19 ============================================================================ +12:23:19 [ 1] [ 4] [0800] +12:23:19 [ 7] [ 10] [0320052227] +12:23:19 [ 11] [ 6] [156291] +12:23:19 [ 70] [ 3] [301] +12:23:19 ============================================================================ +12:23:19 + + +waiting on router queue for slot.... +12:23:19 Sending to : +12:23:19 ============================================================================ +12:23:19 ============================================================================ +12:23:19 Slot Id : <254> +12:23:19 Transaction Type : RESPONSE +12:23:19 Received From : +12:23:19 ============================================================================ +12:23:19 FNo. Len. Field Value +12:23:19 ============================================================================ +12:23:19 [ 1] [ 4] [0810] +12:23:19 [ 7] [ 10] [0320052227] +12:23:19 [ 11] [ 6] [156291] +12:23:19 [ 39] [ 2] [00] +12:23:19 [ 70] [ 3] [301] +12:23:19 ============================================================================ +12:23:19 Calculate Source COMM Id = 2 +12:23:19 ============================================================================ +12:23:19 + + +waiting on router queue for slot.... +12:23:21 ============================================================================ +12:23:21 Slot Id : <282> +12:23:21 Transaction Type : REQUEST +12:23:21 Received From : +12:23:21 ============================================================================ +12:23:21 FNo. Len. Field Value +12:23:21 ============================================================================ +12:23:21 [ 1] [ 4] [0200] +12:23:21 [ 2] [ 16] [6213545000324842] +12:23:21 [ 3] [ 6] [010000] +12:23:21 [ 4] [ 12] [000100000000] +12:23:21 [ 7] [ 10] [0320052228] +12:23:21 [ 11] [ 6] [269002] +12:23:21 [ 12] [ 6] [122228] +12:23:21 [ 13] [ 4] [0320] +12:23:21 [ 14] [ 4] [4912] +12:23:21 [ 15] [ 4] [0320] +12:23:21 [ 18] [ 4] [6011] +12:23:21 [ 19] [ 3] [418] +12:23:21 [ 22] [ 3] [021] +12:23:21 [ 25] [ 2] [01] +12:23:21 [ 28] [ 9] [D00002000] +12:23:21 [ 32] [ 6] [180893] +12:23:21 [ 35] [ 32] [6213545000324842=491212012484468] +12:23:21 [ 37] [ 12] [507905269002] +12:23:21 [ 41] [ 8] [0366SKTT] +12:23:21 [ 42] [ 15] [999999 ] +12:23:21 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:23:21 [ 49] [ 3] [418] +12:23:21 [ 52] [ 16] [ECF25C6F842534B7] +12:23:21 ============================================================================ +12:23:21 + + +waiting on router queue for slot.... +12:23:21 Sending to : +12:23:21 ============================================================================ +12:23:21 Sending to : +12:23:21 ============================================================================ +12:23:21 ============================================================================ +12:23:21 Slot Id : <282> +12:23:21 Transaction Type : REQUEST +12:23:21 Received From : +12:23:21 ============================================================================ +12:23:21 FNo. Len. Field Value +12:23:21 ============================================================================ +12:23:21 [ 1] [ 4] [0200] +12:23:21 [ 2] [ 16] [6213545000324842] +12:23:21 [ 3] [ 6] [010000] +12:23:21 [ 4] [ 12] [000100000000] +12:23:21 [ 7] [ 10] [0320052228] +12:23:21 [ 11] [ 6] [269002] +12:23:21 [ 12] [ 6] [122228] +12:23:21 [ 13] [ 4] [0320] +12:23:21 [ 14] [ 4] [4912] +12:23:21 [ 15] [ 4] [0320] +12:23:21 [ 18] [ 4] [6011] +12:23:21 [ 19] [ 3] [418] +12:23:21 [ 22] [ 3] [021] +12:23:21 [ 25] [ 2] [01] +12:23:21 [ 28] [ 9] [D00002000] +12:23:21 [ 32] [ 6] [180893] +12:23:21 [ 35] [ 32] [6213545000324842=491212012484468] +12:23:21 [ 37] [ 12] [507905269002] +12:23:21 [ 41] [ 8] [0366SKTT] +12:23:21 [ 42] [ 15] [999999 ] +12:23:21 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:23:21 [ 49] [ 3] [418] +12:23:21 [ 52] [ 16] [ECF25C6F842534B7] +12:23:21 ============================================================================ +12:23:21 + + +waiting on router queue for slot.... +12:23:21 Sending to : +12:23:21 ============================================================================ +12:23:21 ============================================================================ +12:23:21 Slot Id : <282> +12:23:21 Transaction Type : REQUEST +12:23:21 Received From : +12:23:21 ============================================================================ +12:23:21 FNo. Len. Field Value +12:23:21 ============================================================================ +12:23:21 [ 1] [ 4] [0200] +12:23:21 [ 2] [ 16] [6213545000324842] +12:23:21 [ 3] [ 6] [010000] +12:23:21 [ 4] [ 12] [000100000000] +12:23:21 [ 7] [ 10] [0320052228] +12:23:21 [ 11] [ 6] [269002] +12:23:21 [ 12] [ 6] [122228] +12:23:21 [ 13] [ 4] [0320] +12:23:21 [ 14] [ 4] [4912] +12:23:21 [ 15] [ 4] [0320] +12:23:21 [ 18] [ 4] [6011] +12:23:21 [ 19] [ 3] [418] +12:23:21 [ 22] [ 3] [021] +12:23:21 [ 25] [ 2] [01] +12:23:21 [ 28] [ 9] [D00002000] +12:23:21 [ 32] [ 6] [180893] +12:23:21 [ 35] [ 32] [6213545000324842=491212012484468] +12:23:21 [ 37] [ 12] [507905269002] +12:23:21 [ 41] [ 8] [0366SKTT] +12:23:21 [ 42] [ 15] [999999 ] +12:23:21 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:23:21 [ 49] [ 3] [418] +12:23:21 [ 52] [ 16] [6B0C9954AF568579] +12:23:21 ============================================================================ +12:23:21 + + +waiting on router queue for slot.... +12:23:21 Sending to : <0> +12:23:21 ============================================================================ +12:23:22 ============================================================================ +12:23:22 Slot Id : <282> +12:23:22 Transaction Type : RESPONSE +12:23:22 Received From : +12:23:22 ============================================================================ +12:23:22 FNo. Len. Field Value +12:23:22 ============================================================================ +12:23:22 [ 1] [ 4] [0210] +12:23:22 [ 2] [ 16] [6213545000324842] +12:23:22 [ 3] [ 6] [010000] +12:23:22 [ 4] [ 12] [000100000000] +12:23:22 [ 7] [ 10] [0320052228] +12:23:22 [ 11] [ 6] [269002] +12:23:22 [ 12] [ 6] [122228] +12:23:22 [ 13] [ 4] [0320] +12:23:22 [ 15] [ 4] [0320] +12:23:22 [ 18] [ 4] [6011] +12:23:22 [ 19] [ 3] [418] +12:23:22 [ 32] [ 6] [180893] +12:23:22 [ 35] [ 32] [6213545000324842=491212012484468] +12:23:22 [ 37] [ 12] [507905269002] +12:23:22 [ 38] [ 6] [071867] +12:23:22 [ 39] [ 2] [00] +12:23:22 [ 41] [ 8] [0366SKTT] +12:23:22 [ 49] [ 3] [418] +12:23:22 [ 54] [ 40] [0001418C0002066641490002418C000206664149] +12:23:22 ============================================================================ +12:23:22 Sending to : +12:23:22 ============================================================================ +12:23:22 + + +waiting on router queue for slot.... +12:23:23 ============================================================================ +12:23:23 Slot Id : <282> +12:23:23 Transaction Type : RESPONSE +12:23:23 Received From : +12:23:23 ============================================================================ +12:23:23 FNo. Len. Field Value +12:23:23 ============================================================================ +12:23:23 [ 1] [ 4] [0210] +12:23:23 [ 2] [ 16] [6213545000324842] +12:23:23 [ 3] [ 6] [010000] +12:23:23 [ 4] [ 12] [000100000000] +12:23:23 [ 7] [ 10] [0320052228] +12:23:23 [ 11] [ 6] [269002] +12:23:23 [ 12] [ 6] [122228] +12:23:23 [ 13] [ 4] [0320] +12:23:23 [ 15] [ 4] [0320] +12:23:23 [ 18] [ 4] [6011] +12:23:23 [ 19] [ 3] [418] +12:23:23 [ 32] [ 6] [180893] +12:23:23 [ 35] [ 32] [6213545000324842=491212012484468] +12:23:23 [ 37] [ 12] [507905269002] +12:23:23 [ 38] [ 6] [071867] +12:23:23 [ 39] [ 2] [00] +12:23:23 [ 41] [ 8] [0366SKTT] +12:23:23 [ 49] [ 3] [418] +12:23:23 [ 54] [ 40] [0001418C0002066641490002418C000206664149] +12:23:23 ============================================================================ +12:23:23 Calculate Source COMM Id = 2 +12:23:23 ============================================================================ +12:23:23 + + +waiting on router queue for slot.... +12:23:30 ============================================================================ +12:23:30 Slot Id : <276> +12:23:30 Transaction Type : REQUEST +12:23:30 Received From : +12:23:30 ============================================================================ +12:23:30 FNo. Len. Field Value +12:23:30 ============================================================================ +12:23:30 [ 1] [ 4] [0200] +12:23:30 [ 2] [ 16] [2206990000052076] +12:23:30 [ 3] [ 6] [301000] +12:23:30 [ 4] [ 12] [000000000000] +12:23:30 [ 7] [ 10] [0320122326] +12:23:30 [ 11] [ 6] [743825] +12:23:30 [ 12] [ 6] [122326] +12:23:30 [ 13] [ 4] [0320] +12:23:30 [ 15] [ 4] [0320] +12:23:30 [ 18] [ 4] [6011] +12:23:30 [ 22] [ 3] [900] +12:23:30 [ 25] [ 2] [02] +12:23:30 [ 28] [ 9] [D00000000] +12:23:30 [ 32] [ 6] [621354] +12:23:30 [ 35] [ 32] [2206990000052076=970412612750471] +12:23:30 [ 37] [ 12] [507904627417] +12:23:30 [ 41] [ 8] [17000700] +12:23:30 [ 42] [ 15] [NATIVE ] +12:23:30 [ 43] [ 40] [Ban Phanxay Samneua LAO] +12:23:30 [ 49] [ 3] [418] +12:23:30 [ 52] [ 16] [F5732B74EB032874] +12:23:30 ============================================================================ +12:23:30 + + +waiting on router queue for slot.... +12:23:30 Sending to : +12:23:30 ============================================================================ +12:23:30 Sending to : +12:23:30 ============================================================================ +12:23:30 ============================================================================ +12:23:30 Slot Id : <276> +12:23:30 Transaction Type : REQUEST +12:23:30 Received From : +12:23:30 ============================================================================ +12:23:30 FNo. Len. Field Value +12:23:30 ============================================================================ +12:23:30 [ 1] [ 4] [0200] +12:23:30 [ 2] [ 16] [2206990000052076] +12:23:30 [ 3] [ 6] [301000] +12:23:30 [ 4] [ 12] [000000000000] +12:23:30 [ 7] [ 10] [0320122326] +12:23:30 [ 11] [ 6] [743825] +12:23:30 [ 12] [ 6] [122326] +12:23:30 [ 13] [ 4] [0320] +12:23:30 [ 15] [ 4] [0320] +12:23:30 [ 18] [ 4] [6011] +12:23:30 [ 22] [ 3] [900] +12:23:30 [ 25] [ 2] [02] +12:23:30 [ 28] [ 9] [D00000000] +12:23:30 [ 32] [ 6] [621354] +12:23:30 [ 35] [ 32] [2206990000052076=970412612750471] +12:23:30 [ 37] [ 12] [507904627417] +12:23:30 [ 41] [ 8] [17000700] +12:23:30 [ 42] [ 15] [NATIVE ] +12:23:30 [ 43] [ 40] [Ban Phanxay Samneua LAO] +12:23:30 [ 49] [ 3] [418] +12:23:30 [ 52] [ 16] [F5732B74EB032874] +12:23:30 ============================================================================ +12:23:30 + + +waiting on router queue for slot.... +12:23:30 Sending to : +12:23:30 ============================================================================ +12:23:30 ============================================================================ +12:23:30 Slot Id : <276> +12:23:30 Transaction Type : REQUEST +12:23:30 Received From : +12:23:30 ============================================================================ +12:23:30 FNo. Len. Field Value +12:23:30 ============================================================================ +12:23:30 [ 1] [ 4] [0200] +12:23:30 [ 2] [ 16] [2206990000052076] +12:23:30 [ 3] [ 6] [301000] +12:23:30 [ 4] [ 12] [000000000000] +12:23:30 [ 7] [ 10] [0320122326] +12:23:30 [ 11] [ 6] [743825] +12:23:30 [ 12] [ 6] [122326] +12:23:30 [ 13] [ 4] [0320] +12:23:30 [ 15] [ 4] [0320] +12:23:30 [ 18] [ 4] [6011] +12:23:30 [ 22] [ 3] [900] +12:23:30 [ 25] [ 2] [02] +12:23:30 [ 28] [ 9] [D00000000] +12:23:30 [ 32] [ 6] [621354] +12:23:30 [ 35] [ 32] [2206990000052076=970412612750471] +12:23:30 [ 37] [ 12] [507904627417] +12:23:30 [ 41] [ 8] [17000700] +12:23:30 [ 42] [ 15] [NATIVE ] +12:23:30 [ 43] [ 40] [Ban Phanxay Samneua LAO] +12:23:30 [ 49] [ 3] [418] +12:23:30 [ 52] [ 16] [C78CBC350F0ADB13] +12:23:30 ============================================================================ +12:23:30 + + +waiting on router queue for slot.... +12:23:30 Sending to : <1> +12:23:30 ============================================================================ +12:23:32 ============================================================================ +12:23:32 Slot Id : <276> +12:23:32 Transaction Type : RESPONSE +12:23:32 Received From : +12:23:32 ============================================================================ +12:23:32 FNo. Len. Field Value +12:23:32 ============================================================================ +12:23:32 [ 1] [ 4] [0210] +12:23:32 [ 2] [ 16] [2206990000052076] +12:23:32 [ 3] [ 6] [301000] +12:23:32 [ 4] [ 12] [000000000000] +12:23:32 [ 7] [ 10] [0320122326] +12:23:32 [ 11] [ 6] [743825] +12:23:32 [ 12] [ 6] [122326] +12:23:32 [ 13] [ 4] [0320] +12:23:32 [ 15] [ 4] [0320] +12:23:32 [ 18] [ 4] [6011] +12:23:32 [ 32] [ 6] [621354] +12:23:32 [ 35] [ 32] [2206990000052076=970412612750471] +12:23:32 [ 37] [ 12] [507904627417] +12:23:32 [ 38] [ 6] [928410] +12:23:32 [ 39] [ 2] [00] +12:23:32 [ 41] [ 8] [17000700] +12:23:32 [ 49] [ 3] [418] +12:23:32 [ 54] [ 40] [1001418C0000552229001002418C000055222900] +12:23:32 ============================================================================ +12:23:32 Sending to : +12:23:32 ============================================================================ +12:23:32 + + +waiting on router queue for slot.... +12:23:33 ============================================================================ +12:23:33 Slot Id : <276> +12:23:33 Transaction Type : RESPONSE +12:23:33 Received From : +12:23:33 ============================================================================ +12:23:33 FNo. Len. Field Value +12:23:33 ============================================================================ +12:23:33 [ 1] [ 4] [0210] +12:23:33 [ 2] [ 16] [2206990000052076] +12:23:33 [ 3] [ 6] [301000] +12:23:33 [ 4] [ 12] [000000000000] +12:23:33 [ 7] [ 10] [0320122326] +12:23:33 [ 11] [ 6] [743825] +12:23:33 [ 12] [ 6] [122326] +12:23:33 [ 13] [ 4] [0320] +12:23:33 [ 15] [ 4] [0320] +12:23:33 [ 18] [ 4] [6011] +12:23:33 [ 32] [ 6] [621354] +12:23:33 [ 35] [ 32] [2206990000052076=970412612750471] +12:23:33 [ 37] [ 12] [507904627417] +12:23:33 [ 38] [ 6] [928410] +12:23:33 [ 39] [ 2] [00] +12:23:33 [ 41] [ 8] [17000700] +12:23:33 [ 49] [ 3] [418] +12:23:33 [ 54] [ 40] [1001418C0000552229001002418C000055222900] +12:23:33 ============================================================================ +12:23:33 Calculate Source COMM Id = 0 +12:23:33 ============================================================================ +12:23:33 + + +waiting on router queue for slot.... +12:23:34 ============================================================================ +12:23:34 Slot Id : <266> +12:23:34 Transaction Type : REQUEST +12:23:34 Received From : +12:23:34 ============================================================================ +12:23:34 FNo. Len. Field Value +12:23:34 ============================================================================ +12:23:34 [ 1] [ 4] [0200] +12:23:34 [ 2] [ 16] [6213545000970115] +12:23:34 [ 3] [ 6] [010000] +12:23:34 [ 4] [ 12] [000100000000] +12:23:34 [ 7] [ 10] [0320122125] +12:23:34 [ 11] [ 6] [944060] +12:23:34 [ 12] [ 6] [122125] +12:23:34 [ 13] [ 4] [0320] +12:23:34 [ 15] [ 4] [0320] +12:23:34 [ 18] [ 4] [6011] +12:23:34 [ 19] [ 3] [418] +12:23:34 [ 22] [ 3] [021] +12:23:34 [ 25] [ 2] [01] +12:23:34 [ 28] [ 9] [D00002000] +12:23:34 [ 32] [ 6] [668899] +12:23:34 [ 35] [ 32] [6213545000970115=491212017011395] +12:23:34 [ 37] [ 12] [507900123299] +12:23:34 [ 41] [ 8] [03020003] +12:23:34 [ 42] [ 15] [APT ] +12:23:34 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:23:34 [ 49] [ 3] [418] +12:23:34 [ 52] [ 16] [3B70B5F55EEBA13A] +12:23:34 ============================================================================ +12:23:34 + + +waiting on router queue for slot.... +12:23:34 Sending to : +12:23:34 ============================================================================ +12:23:34 Sending to : +12:23:34 ============================================================================ +12:23:35 ============================================================================ +12:23:35 Slot Id : <266> +12:23:35 Transaction Type : REQUEST +12:23:35 Received From : +12:23:35 ============================================================================ +12:23:35 FNo. Len. Field Value +12:23:35 ============================================================================ +12:23:35 [ 1] [ 4] [0200] +12:23:35 [ 2] [ 16] [6213545000970115] +12:23:35 [ 3] [ 6] [010000] +12:23:35 [ 4] [ 12] [000100000000] +12:23:35 [ 7] [ 10] [0320122125] +12:23:35 [ 11] [ 6] [944060] +12:23:35 [ 12] [ 6] [122125] +12:23:35 [ 13] [ 4] [0320] +12:23:35 [ 15] [ 4] [0320] +12:23:35 [ 18] [ 4] [6011] +12:23:35 [ 19] [ 3] [418] +12:23:35 [ 22] [ 3] [021] +12:23:35 [ 25] [ 2] [01] +12:23:35 [ 28] [ 9] [D00002000] +12:23:35 [ 32] [ 6] [668899] +12:23:35 [ 35] [ 32] [6213545000970115=491212017011395] +12:23:35 [ 37] [ 12] [507900123299] +12:23:35 [ 41] [ 8] [03020003] +12:23:35 [ 42] [ 15] [APT ] +12:23:35 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:23:35 [ 49] [ 3] [418] +12:23:35 [ 52] [ 16] [3B70B5F55EEBA13A] +12:23:35 ============================================================================ +12:23:35 + + +waiting on router queue for slot.... +12:23:35 Sending to : +12:23:35 ============================================================================ +12:23:35 ============================================================================ +12:23:35 Slot Id : <266> +12:23:35 Transaction Type : REQUEST +12:23:35 Received From : +12:23:35 ============================================================================ +12:23:35 FNo. Len. Field Value +12:23:35 ============================================================================ +12:23:35 [ 1] [ 4] [0200] +12:23:35 [ 2] [ 16] [6213545000970115] +12:23:35 [ 3] [ 6] [010000] +12:23:35 [ 4] [ 12] [000100000000] +12:23:35 [ 7] [ 10] [0320122125] +12:23:35 [ 11] [ 6] [944060] +12:23:35 [ 12] [ 6] [122125] +12:23:35 [ 13] [ 4] [0320] +12:23:35 [ 15] [ 4] [0320] +12:23:35 [ 18] [ 4] [6011] +12:23:35 [ 19] [ 3] [418] +12:23:35 [ 22] [ 3] [021] +12:23:35 [ 25] [ 2] [01] +12:23:35 [ 28] [ 9] [D00002000] +12:23:35 [ 32] [ 6] [668899] +12:23:35 [ 35] [ 32] [6213545000970115=491212017011395] +12:23:35 [ 37] [ 12] [507900123299] +12:23:35 [ 41] [ 8] [03020003] +12:23:35 [ 42] [ 15] [APT ] +12:23:35 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:23:35 [ 49] [ 3] [418] +12:23:35 [ 52] [ 16] [BE059BE018784AA9] +12:23:35 ============================================================================ +12:23:35 + + +waiting on router queue for slot.... +12:23:35 Sending to : <0> +12:23:35 ============================================================================ +12:23:35 ============================================================================ +12:23:35 Slot Id : <239> +12:23:35 Transaction Type : REQUEST +12:23:35 Received From : +12:23:35 ============================================================================ +12:23:35 FNo. Len. Field Value +12:23:35 ============================================================================ +12:23:35 [ 1] [ 4] [0800] +12:23:35 [ 7] [ 10] [0320052243] +12:23:35 [ 11] [ 6] [156292] +12:23:35 [ 70] [ 3] [301] +12:23:35 ============================================================================ +12:23:35 + + +waiting on router queue for slot.... +12:23:35 Sending to : +12:23:35 ============================================================================ +12:23:35 ============================================================================ +12:23:35 Slot Id : <239> +12:23:35 Transaction Type : RESPONSE +12:23:35 Received From : +12:23:35 ============================================================================ +12:23:35 FNo. Len. Field Value +12:23:35 ============================================================================ +12:23:35 [ 1] [ 4] [0810] +12:23:35 [ 7] [ 10] [0320052243] +12:23:35 [ 11] [ 6] [156292] +12:23:35 [ 39] [ 2] [00] +12:23:35 [ 70] [ 3] [301] +12:23:35 ============================================================================ +12:23:35 Calculate Source COMM Id = 2 +12:23:35 ============================================================================ +12:23:35 + + +waiting on router queue for slot.... +12:23:35 ============================================================================ +12:23:35 Slot Id : <266> +12:23:35 Transaction Type : RESPONSE +12:23:35 Received From : +12:23:35 ============================================================================ +12:23:35 FNo. Len. Field Value +12:23:35 ============================================================================ +12:23:35 [ 1] [ 4] [0210] +12:23:35 [ 2] [ 16] [6213545000970115] +12:23:35 [ 3] [ 6] [010000] +12:23:35 [ 4] [ 12] [000100000000] +12:23:35 [ 7] [ 10] [0320122125] +12:23:35 [ 11] [ 6] [944060] +12:23:35 [ 12] [ 6] [122125] +12:23:35 [ 13] [ 4] [0320] +12:23:35 [ 15] [ 4] [0320] +12:23:35 [ 18] [ 4] [6011] +12:23:35 [ 19] [ 3] [418] +12:23:35 [ 32] [ 6] [668899] +12:23:35 [ 35] [ 32] [6213545000970115=491212017011395] +12:23:35 [ 37] [ 12] [507900123299] +12:23:35 [ 38] [ 6] [798676] +12:23:35 [ 39] [ 2] [00] +12:23:35 [ 41] [ 8] [03020003] +12:23:35 [ 49] [ 3] [418] +12:23:35 [ 54] [ 40] [0001418C0003215077080002418C000321507708] +12:23:35 ============================================================================ +12:23:35 Sending to : +12:23:35 ============================================================================ +12:23:35 + + +waiting on router queue for slot.... +12:23:36 ============================================================================ +12:23:36 Slot Id : <272> +12:23:36 Transaction Type : REQUEST +12:23:36 Received From : +12:23:36 ============================================================================ +12:23:36 FNo. Len. Field Value +12:23:36 ============================================================================ +12:23:36 [ 1] [ 4] [0800] +12:23:36 [ 2] [ 5] [02531] +12:23:36 [ 3] [ 6] [579128] +12:23:36 [ 7] [ 10] [0320052336] +12:23:36 [ 11] [ 6] [807131] +12:23:36 [ 15] [ 10] [0320052336] +12:23:36 [ 37] [ 11] [57912807131] +12:23:36 [ 70] [ 3] [001] +12:23:36 ============================================================================ +12:23:36 + + +waiting on router queue for slot.... +12:23:36 ============================================================================ +12:23:36 Slot Id : <272> +12:23:36 Transaction Type : RESPONSE +12:23:36 Received From : +12:23:36 ============================================================================ +12:23:36 FNo. Len. Field Value +12:23:36 ============================================================================ +12:23:36 [ 1] [ 4] [0810] +12:23:36 [ 7] [ 10] [0320052336] +12:23:36 [ 11] [ 6] [807131] +12:23:36 [ 15] [ 4] [0320] +12:23:36 [ 37] [ 12] [57912807131] +12:23:36 [ 39] [ 2] [00] +12:23:36 [ 70] [ 3] [001] +12:23:36 ============================================================================ +12:23:36 Sending to : +12:23:36 ============================================================================ +12:23:36 + + +waiting on router queue for slot.... +12:23:37 ============================================================================ +12:23:37 Slot Id : <266> +12:23:37 Transaction Type : RESPONSE +12:23:37 Received From : +12:23:37 ============================================================================ +12:23:37 FNo. Len. Field Value +12:23:37 ============================================================================ +12:23:37 [ 1] [ 4] [0210] +12:23:37 [ 2] [ 16] [6213545000970115] +12:23:37 [ 3] [ 6] [010000] +12:23:37 [ 4] [ 12] [000100000000] +12:23:37 [ 7] [ 10] [0320122125] +12:23:37 [ 11] [ 6] [944060] +12:23:37 [ 12] [ 6] [122125] +12:23:37 [ 13] [ 4] [0320] +12:23:37 [ 15] [ 4] [0320] +12:23:37 [ 18] [ 4] [6011] +12:23:37 [ 19] [ 3] [418] +12:23:37 [ 32] [ 6] [668899] +12:23:37 [ 35] [ 32] [6213545000970115=491212017011395] +12:23:37 [ 37] [ 12] [507900123299] +12:23:37 [ 38] [ 6] [798676] +12:23:37 [ 39] [ 2] [00] +12:23:37 [ 41] [ 8] [03020003] +12:23:37 [ 49] [ 3] [418] +12:23:37 [ 54] [ 40] [0001418C0003215077080002418C000321507708] +12:23:37 ============================================================================ +12:23:37 Calculate Source COMM Id = 4 +12:23:37 ============================================================================ +12:23:37 + + +waiting on router queue for slot.... +12:23:51 ============================================================================ +12:23:51 Slot Id : <252> +12:23:51 Transaction Type : REQUEST +12:23:51 Received From : +12:23:51 ============================================================================ +12:23:51 FNo. Len. Field Value +12:23:51 ============================================================================ +12:23:51 [ 1] [ 4] [0800] +12:23:51 [ 7] [ 10] [0320052258] +12:23:51 [ 11] [ 6] [156293] +12:23:51 [ 70] [ 3] [301] +12:23:51 ============================================================================ +12:23:51 + + +waiting on router queue for slot.... +12:23:51 Sending to : +12:23:51 ============================================================================ +12:23:51 ============================================================================ +12:23:51 Slot Id : <252> +12:23:51 Transaction Type : RESPONSE +12:23:51 Received From : +12:23:51 ============================================================================ +12:23:51 FNo. Len. Field Value +12:23:51 ============================================================================ +12:23:51 [ 1] [ 4] [0810] +12:23:51 [ 7] [ 10] [0320052258] +12:23:51 [ 11] [ 6] [156293] +12:23:51 [ 39] [ 2] [00] +12:23:51 [ 70] [ 3] [301] +12:23:51 ============================================================================ +12:23:51 Calculate Source COMM Id = 2 +12:23:51 ============================================================================ +12:23:51 + + +waiting on router queue for slot.... +12:24:02 ============================================================================ +12:24:02 Slot Id : <241> +12:24:02 Transaction Type : REQUEST +12:24:02 Received From : +12:24:02 ============================================================================ +12:24:02 FNo. Len. Field Value +12:24:02 ============================================================================ +12:24:02 [ 1] [ 4] [0800] +12:24:02 [ 7] [ 10] [0320052309] +12:24:02 [ 11] [ 6] [156294] +12:24:02 [ 70] [ 3] [301] +12:24:02 ============================================================================ +12:24:02 + + +waiting on router queue for slot.... +12:24:02 Sending to : +12:24:02 ============================================================================ +12:24:02 ============================================================================ +12:24:02 Slot Id : <241> +12:24:02 Transaction Type : RESPONSE +12:24:02 Received From : +12:24:02 ============================================================================ +12:24:02 FNo. Len. Field Value +12:24:02 ============================================================================ +12:24:02 [ 1] [ 4] [0810] +12:24:02 [ 7] [ 10] [0320052309] +12:24:02 [ 11] [ 6] [156294] +12:24:02 [ 39] [ 2] [00] +12:24:02 [ 70] [ 3] [301] +12:24:02 ============================================================================ +12:24:02 Calculate Source COMM Id = 2 +12:24:02 ============================================================================ +12:24:02 + + +waiting on router queue for slot.... +12:24:12 ============================================================================ +12:24:12 Slot Id : <280> +12:24:12 Transaction Type : REQUEST +12:24:12 Received From : +12:24:12 ============================================================================ +12:24:12 FNo. Len. Field Value +12:24:12 ============================================================================ +12:24:12 [ 1] [ 4] [0800] +12:24:12 [ 7] [ 10] [0320052320] +12:24:12 [ 11] [ 6] [156295] +12:24:12 [ 70] [ 3] [301] +12:24:12 ============================================================================ +12:24:12 + + +waiting on router queue for slot.... +12:24:12 Sending to : +12:24:12 ============================================================================ +12:24:12 ============================================================================ +12:24:12 Slot Id : <280> +12:24:12 Transaction Type : RESPONSE +12:24:12 Received From : +12:24:12 ============================================================================ +12:24:12 FNo. Len. Field Value +12:24:12 ============================================================================ +12:24:12 [ 1] [ 4] [0810] +12:24:12 [ 7] [ 10] [0320052320] +12:24:12 [ 11] [ 6] [156295] +12:24:12 [ 39] [ 2] [00] +12:24:12 [ 70] [ 3] [301] +12:24:12 ============================================================================ +12:24:12 Calculate Source COMM Id = 2 +12:24:12 ============================================================================ +12:24:12 + + +waiting on router queue for slot.... +12:24:16 ============================================================================ +12:24:16 Slot Id : <258> +12:24:16 Transaction Type : REQUEST +12:24:16 Received From : +12:24:16 ============================================================================ +12:24:16 FNo. Len. Field Value +12:24:16 ============================================================================ +12:24:16 [ 1] [ 4] [0200] +12:24:16 [ 2] [ 16] [6213545000324842] +12:24:16 [ 3] [ 6] [010000] +12:24:16 [ 4] [ 12] [000100000000] +12:24:16 [ 7] [ 10] [0320052322] +12:24:16 [ 11] [ 6] [269005] +12:24:16 [ 12] [ 6] [122322] +12:24:16 [ 13] [ 4] [0320] +12:24:16 [ 14] [ 4] [4912] +12:24:16 [ 15] [ 4] [0320] +12:24:16 [ 18] [ 4] [6011] +12:24:16 [ 19] [ 3] [418] +12:24:16 [ 22] [ 3] [021] +12:24:16 [ 25] [ 2] [01] +12:24:16 [ 28] [ 9] [D00002000] +12:24:16 [ 32] [ 6] [180893] +12:24:16 [ 35] [ 32] [6213545000324842=491212012484468] +12:24:16 [ 37] [ 12] [507905269005] +12:24:16 [ 41] [ 8] [0366SKTT] +12:24:16 [ 42] [ 15] [999999 ] +12:24:16 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:24:16 [ 49] [ 3] [418] +12:24:16 [ 52] [ 16] [ECF25C6F842534B7] +12:24:16 ============================================================================ +12:24:16 + + +waiting on router queue for slot.... +12:24:16 Sending to : +12:24:16 ============================================================================ +12:24:16 Sending to : +12:24:16 ============================================================================ +12:24:16 ============================================================================ +12:24:16 Slot Id : <258> +12:24:16 Transaction Type : REQUEST +12:24:16 Received From : +12:24:16 ============================================================================ +12:24:16 FNo. Len. Field Value +12:24:16 ============================================================================ +12:24:16 [ 1] [ 4] [0200] +12:24:16 [ 2] [ 16] [6213545000324842] +12:24:16 [ 3] [ 6] [010000] +12:24:16 [ 4] [ 12] [000100000000] +12:24:16 [ 7] [ 10] [0320052322] +12:24:16 [ 11] [ 6] [269005] +12:24:16 [ 12] [ 6] [122322] +12:24:16 [ 13] [ 4] [0320] +12:24:16 [ 14] [ 4] [4912] +12:24:16 [ 15] [ 4] [0320] +12:24:16 [ 18] [ 4] [6011] +12:24:16 [ 19] [ 3] [418] +12:24:16 [ 22] [ 3] [021] +12:24:16 [ 25] [ 2] [01] +12:24:16 [ 28] [ 9] [D00002000] +12:24:16 [ 32] [ 6] [180893] +12:24:16 [ 35] [ 32] [6213545000324842=491212012484468] +12:24:16 [ 37] [ 12] [507905269005] +12:24:16 [ 41] [ 8] [0366SKTT] +12:24:16 [ 42] [ 15] [999999 ] +12:24:16 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:24:16 [ 49] [ 3] [418] +12:24:16 [ 52] [ 16] [ECF25C6F842534B7] +12:24:16 ============================================================================ +12:24:16 + + +waiting on router queue for slot.... +12:24:16 Sending to : +12:24:16 ============================================================================ +12:24:16 ============================================================================ +12:24:16 Slot Id : <258> +12:24:16 Transaction Type : REQUEST +12:24:16 Received From : +12:24:16 ============================================================================ +12:24:16 FNo. Len. Field Value +12:24:16 ============================================================================ +12:24:16 [ 1] [ 4] [0200] +12:24:16 [ 2] [ 16] [6213545000324842] +12:24:16 [ 3] [ 6] [010000] +12:24:16 [ 4] [ 12] [000100000000] +12:24:16 [ 7] [ 10] [0320052322] +12:24:16 [ 11] [ 6] [269005] +12:24:16 [ 12] [ 6] [122322] +12:24:16 [ 13] [ 4] [0320] +12:24:16 [ 14] [ 4] [4912] +12:24:16 [ 15] [ 4] [0320] +12:24:16 [ 18] [ 4] [6011] +12:24:16 [ 19] [ 3] [418] +12:24:16 [ 22] [ 3] [021] +12:24:16 [ 25] [ 2] [01] +12:24:16 [ 28] [ 9] [D00002000] +12:24:16 [ 32] [ 6] [180893] +12:24:16 [ 35] [ 32] [6213545000324842=491212012484468] +12:24:16 [ 37] [ 12] [507905269005] +12:24:16 [ 41] [ 8] [0366SKTT] +12:24:16 [ 42] [ 15] [999999 ] +12:24:16 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:24:16 [ 49] [ 3] [418] +12:24:16 [ 52] [ 16] [6B0C9954AF568579] +12:24:16 ============================================================================ +12:24:16 + + +waiting on router queue for slot.... +12:24:16 Sending to : <0> +12:24:16 ============================================================================ +12:24:17 ============================================================================ +12:24:17 Slot Id : <258> +12:24:17 Transaction Type : RESPONSE +12:24:17 Received From : +12:24:17 ============================================================================ +12:24:17 FNo. Len. Field Value +12:24:17 ============================================================================ +12:24:17 [ 1] [ 4] [0210] +12:24:17 [ 2] [ 16] [6213545000324842] +12:24:17 [ 3] [ 6] [010000] +12:24:17 [ 4] [ 12] [000100000000] +12:24:17 [ 7] [ 10] [0320052322] +12:24:17 [ 11] [ 6] [269005] +12:24:17 [ 12] [ 6] [122322] +12:24:17 [ 13] [ 4] [0320] +12:24:17 [ 15] [ 4] [0320] +12:24:17 [ 18] [ 4] [6011] +12:24:17 [ 19] [ 3] [418] +12:24:17 [ 32] [ 6] [180893] +12:24:17 [ 35] [ 32] [6213545000324842=491212012484468] +12:24:17 [ 37] [ 12] [507905269005] +12:24:17 [ 38] [ 6] [166968] +12:24:17 [ 39] [ 2] [00] +12:24:17 [ 41] [ 8] [0366SKTT] +12:24:17 [ 49] [ 3] [418] +12:24:17 [ 54] [ 40] [0001418C0001064641490002418C000106464149] +12:24:17 ============================================================================ +12:24:17 Sending to : +12:24:17 ============================================================================ +12:24:17 + + +waiting on router queue for slot.... +12:24:18 ============================================================================ +12:24:18 Slot Id : <258> +12:24:18 Transaction Type : RESPONSE +12:24:18 Received From : +12:24:18 ============================================================================ +12:24:18 FNo. Len. Field Value +12:24:18 ============================================================================ +12:24:18 [ 1] [ 4] [0210] +12:24:18 [ 2] [ 16] [6213545000324842] +12:24:18 [ 3] [ 6] [010000] +12:24:18 [ 4] [ 12] [000100000000] +12:24:18 [ 7] [ 10] [0320052322] +12:24:18 [ 11] [ 6] [269005] +12:24:18 [ 12] [ 6] [122322] +12:24:18 [ 13] [ 4] [0320] +12:24:18 [ 15] [ 4] [0320] +12:24:18 [ 18] [ 4] [6011] +12:24:18 [ 19] [ 3] [418] +12:24:18 [ 32] [ 6] [180893] +12:24:18 [ 35] [ 32] [6213545000324842=491212012484468] +12:24:18 [ 37] [ 12] [507905269005] +12:24:18 [ 38] [ 6] [166968] +12:24:18 [ 39] [ 2] [00] +12:24:18 [ 41] [ 8] [0366SKTT] +12:24:18 [ 49] [ 3] [418] +12:24:18 [ 54] [ 40] [0001418C0001064641490002418C000106464149] +12:24:18 ============================================================================ +12:24:18 Calculate Source COMM Id = 2 +12:24:18 ============================================================================ +12:24:18 + + +waiting on router queue for slot.... +12:24:29 ============================================================================ +12:24:29 Slot Id : <284> +12:24:29 Transaction Type : REQUEST +12:24:29 Received From : +12:24:29 ============================================================================ +12:24:29 FNo. Len. Field Value +12:24:29 ============================================================================ +12:24:29 [ 1] [ 4] [0800] +12:24:29 [ 7] [ 10] [0320052336] +12:24:29 [ 11] [ 6] [156296] +12:24:29 [ 70] [ 3] [301] +12:24:29 ============================================================================ +12:24:29 + + +waiting on router queue for slot.... +12:24:29 Sending to : +12:24:29 ============================================================================ +12:24:29 ============================================================================ +12:24:29 Slot Id : <284> +12:24:29 Transaction Type : RESPONSE +12:24:29 Received From : +12:24:29 ============================================================================ +12:24:29 FNo. Len. Field Value +12:24:29 ============================================================================ +12:24:29 [ 1] [ 4] [0810] +12:24:29 [ 7] [ 10] [0320052336] +12:24:29 [ 11] [ 6] [156296] +12:24:29 [ 39] [ 2] [00] +12:24:29 [ 70] [ 3] [301] +12:24:29 ============================================================================ +12:24:29 Calculate Source COMM Id = 2 +12:24:29 ============================================================================ +12:24:29 + + +waiting on router queue for slot.... +12:24:38 ============================================================================ +12:24:38 Slot Id : <219> +12:24:38 Transaction Type : REQUEST +12:24:38 Received From : +12:24:38 ============================================================================ +12:24:38 FNo. Len. Field Value +12:24:38 ============================================================================ +12:24:38 [ 1] [ 4] [0800] +12:24:38 [ 2] [ 5] [02531] +12:24:38 [ 3] [ 6] [579128] +12:24:38 [ 7] [ 10] [0320052438] +12:24:38 [ 11] [ 6] [807132] +12:24:38 [ 15] [ 10] [0320052438] +12:24:38 [ 37] [ 11] [57912807132] +12:24:38 [ 70] [ 3] [001] +12:24:38 ============================================================================ +12:24:38 + + +waiting on router queue for slot.... +12:24:38 ============================================================================ +12:24:38 Slot Id : <219> +12:24:38 Transaction Type : RESPONSE +12:24:38 Received From : +12:24:38 ============================================================================ +12:24:38 FNo. Len. Field Value +12:24:38 ============================================================================ +12:24:38 [ 1] [ 4] [0810] +12:24:38 [ 7] [ 10] [0320052438] +12:24:38 [ 11] [ 6] [807132] +12:24:38 [ 15] [ 4] [0320] +12:24:38 [ 37] [ 12] [57912807132] +12:24:38 [ 39] [ 2] [00] +12:24:38 [ 70] [ 3] [001] +12:24:38 ============================================================================ +12:24:38 Sending to : +12:24:38 ============================================================================ +12:24:38 + + +waiting on router queue for slot.... +12:24:41 ============================================================================ +12:24:41 Slot Id : <245> +12:24:41 Transaction Type : REQUEST +12:24:41 Received From : +12:24:41 ============================================================================ +12:24:41 FNo. Len. Field Value +12:24:41 ============================================================================ +12:24:41 [ 1] [ 4] [0800] +12:24:41 [ 7] [ 10] [0320052347] +12:24:41 [ 11] [ 6] [156297] +12:24:41 [ 70] [ 3] [301] +12:24:41 ============================================================================ +12:24:41 + + +waiting on router queue for slot.... +12:24:41 Sending to : +12:24:41 ============================================================================ +12:24:41 ============================================================================ +12:24:41 Slot Id : <245> +12:24:41 Transaction Type : RESPONSE +12:24:41 Received From : +12:24:41 ============================================================================ +12:24:41 FNo. Len. Field Value +12:24:41 ============================================================================ +12:24:41 [ 1] [ 4] [0810] +12:24:41 [ 7] [ 10] [0320052347] +12:24:41 [ 11] [ 6] [156297] +12:24:41 [ 39] [ 2] [00] +12:24:41 [ 70] [ 3] [301] +12:24:41 ============================================================================ +12:24:41 Calculate Source COMM Id = 2 +12:24:41 ============================================================================ +12:24:41 + + +waiting on router queue for slot.... +12:24:50 ============================================================================ +12:24:50 Slot Id : <224> +12:24:50 Transaction Type : REQUEST +12:24:50 Received From : +12:24:50 ============================================================================ +12:24:50 FNo. Len. Field Value +12:24:50 ============================================================================ +12:24:50 [ 1] [ 4] [0200] +12:24:50 [ 2] [ 16] [6213545000970115] +12:24:50 [ 3] [ 6] [010000] +12:24:50 [ 4] [ 12] [000100000000] +12:24:50 [ 7] [ 10] [0320122241] +12:24:50 [ 11] [ 6] [944120] +12:24:50 [ 12] [ 6] [122241] +12:24:50 [ 13] [ 4] [0320] +12:24:50 [ 15] [ 4] [0320] +12:24:50 [ 18] [ 4] [6011] +12:24:50 [ 19] [ 3] [418] +12:24:50 [ 22] [ 3] [021] +12:24:50 [ 25] [ 2] [01] +12:24:50 [ 28] [ 9] [D00002000] +12:24:50 [ 32] [ 6] [668899] +12:24:50 [ 35] [ 32] [6213545000970115=491212017011395] +12:24:50 [ 37] [ 12] [507900123301] +12:24:50 [ 41] [ 8] [03020003] +12:24:50 [ 42] [ 15] [APT ] +12:24:50 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:24:50 [ 49] [ 3] [418] +12:24:50 [ 52] [ 16] [3B70B5F55EEBA13A] +12:24:50 ============================================================================ +12:24:50 + + +waiting on router queue for slot.... +12:24:50 Sending to : +12:24:50 ============================================================================ +12:24:50 Sending to : +12:24:50 ============================================================================ +12:24:50 ============================================================================ +12:24:50 Slot Id : <224> +12:24:50 Transaction Type : REQUEST +12:24:50 Received From : +12:24:50 ============================================================================ +12:24:50 FNo. Len. Field Value +12:24:50 ============================================================================ +12:24:50 [ 1] [ 4] [0200] +12:24:50 [ 2] [ 16] [6213545000970115] +12:24:50 [ 3] [ 6] [010000] +12:24:50 [ 4] [ 12] [000100000000] +12:24:50 [ 7] [ 10] [0320122241] +12:24:50 [ 11] [ 6] [944120] +12:24:50 [ 12] [ 6] [122241] +12:24:50 [ 13] [ 4] [0320] +12:24:50 [ 15] [ 4] [0320] +12:24:50 [ 18] [ 4] [6011] +12:24:50 [ 19] [ 3] [418] +12:24:50 [ 22] [ 3] [021] +12:24:50 [ 25] [ 2] [01] +12:24:50 [ 28] [ 9] [D00002000] +12:24:50 [ 32] [ 6] [668899] +12:24:50 [ 35] [ 32] [6213545000970115=491212017011395] +12:24:50 [ 37] [ 12] [507900123301] +12:24:50 [ 41] [ 8] [03020003] +12:24:50 [ 42] [ 15] [APT ] +12:24:50 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:24:50 [ 49] [ 3] [418] +12:24:50 [ 52] [ 16] [3B70B5F55EEBA13A] +12:24:50 ============================================================================ +12:24:50 + + +waiting on router queue for slot.... +12:24:50 Sending to : +12:24:50 ============================================================================ +12:24:50 ============================================================================ +12:24:50 Slot Id : <224> +12:24:50 Transaction Type : REQUEST +12:24:50 Received From : +12:24:50 ============================================================================ +12:24:50 FNo. Len. Field Value +12:24:50 ============================================================================ +12:24:50 [ 1] [ 4] [0200] +12:24:50 [ 2] [ 16] [6213545000970115] +12:24:50 [ 3] [ 6] [010000] +12:24:50 [ 4] [ 12] [000100000000] +12:24:50 [ 7] [ 10] [0320122241] +12:24:50 [ 11] [ 6] [944120] +12:24:50 [ 12] [ 6] [122241] +12:24:50 [ 13] [ 4] [0320] +12:24:50 [ 15] [ 4] [0320] +12:24:50 [ 18] [ 4] [6011] +12:24:50 [ 19] [ 3] [418] +12:24:50 [ 22] [ 3] [021] +12:24:50 [ 25] [ 2] [01] +12:24:50 [ 28] [ 9] [D00002000] +12:24:50 [ 32] [ 6] [668899] +12:24:50 [ 35] [ 32] [6213545000970115=491212017011395] +12:24:50 [ 37] [ 12] [507900123301] +12:24:50 [ 41] [ 8] [03020003] +12:24:50 [ 42] [ 15] [APT ] +12:24:50 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:24:50 [ 49] [ 3] [418] +12:24:50 [ 52] [ 16] [BE059BE018784AA9] +12:24:50 ============================================================================ +12:24:50 + + +waiting on router queue for slot.... +12:24:50 Sending to : <0> +12:24:50 ============================================================================ +12:24:51 ============================================================================ +12:24:51 Slot Id : <224> +12:24:51 Transaction Type : RESPONSE +12:24:51 Received From : +12:24:51 ============================================================================ +12:24:51 FNo. Len. Field Value +12:24:51 ============================================================================ +12:24:51 [ 1] [ 4] [0210] +12:24:51 [ 2] [ 16] [6213545000970115] +12:24:51 [ 3] [ 6] [010000] +12:24:51 [ 4] [ 12] [000100000000] +12:24:51 [ 7] [ 10] [0320122241] +12:24:51 [ 11] [ 6] [944120] +12:24:51 [ 12] [ 6] [122241] +12:24:51 [ 13] [ 4] [0320] +12:24:51 [ 15] [ 4] [0320] +12:24:51 [ 18] [ 4] [6011] +12:24:51 [ 19] [ 3] [418] +12:24:51 [ 32] [ 6] [668899] +12:24:51 [ 35] [ 32] [6213545000970115=491212017011395] +12:24:51 [ 37] [ 12] [507900123301] +12:24:51 [ 38] [ 6] [303743] +12:24:51 [ 39] [ 2] [00] +12:24:51 [ 41] [ 8] [03020003] +12:24:51 [ 49] [ 3] [418] +12:24:51 [ 54] [ 40] [0001418C0002213077080002418C000221307708] +12:24:51 ============================================================================ +12:24:51 Sending to : +12:24:51 ============================================================================ +12:24:51 + + +waiting on router queue for slot.... +12:24:52 ============================================================================ +12:24:52 Slot Id : <224> +12:24:52 Transaction Type : RESPONSE +12:24:52 Received From : +12:24:52 ============================================================================ +12:24:52 FNo. Len. Field Value +12:24:52 ============================================================================ +12:24:52 [ 1] [ 4] [0210] +12:24:52 [ 2] [ 16] [6213545000970115] +12:24:52 [ 3] [ 6] [010000] +12:24:52 [ 4] [ 12] [000100000000] +12:24:52 [ 7] [ 10] [0320122241] +12:24:52 [ 11] [ 6] [944120] +12:24:52 [ 12] [ 6] [122241] +12:24:52 [ 13] [ 4] [0320] +12:24:52 [ 15] [ 4] [0320] +12:24:52 [ 18] [ 4] [6011] +12:24:52 [ 19] [ 3] [418] +12:24:52 [ 32] [ 6] [668899] +12:24:52 [ 35] [ 32] [6213545000970115=491212017011395] +12:24:52 [ 37] [ 12] [507900123301] +12:24:52 [ 38] [ 6] [303743] +12:24:52 [ 39] [ 2] [00] +12:24:52 [ 41] [ 8] [03020003] +12:24:52 [ 49] [ 3] [418] +12:24:52 [ 54] [ 40] [0001418C0002213077080002418C000221307708] +12:24:52 ============================================================================ +12:24:52 Calculate Source COMM Id = 4 +12:24:52 ============================================================================ +12:24:52 + + +waiting on router queue for slot.... +12:24:55 ============================================================================ +12:24:55 Slot Id : <287> +12:24:55 Transaction Type : REQUEST +12:24:55 Received From : +12:24:55 ============================================================================ +12:24:55 FNo. Len. Field Value +12:24:55 ============================================================================ +12:24:55 [ 1] [ 4] [0800] +12:24:55 [ 7] [ 10] [0320053242] +12:24:55 [ 11] [ 6] [011626] +12:24:55 [ 37] [ 12] [57912011626] +12:24:55 [ 70] [ 3] [301] +12:24:55 ============================================================================ +12:24:55 + + +waiting on router queue for slot.... +12:24:55 Sending to : +12:24:55 ============================================================================ +12:24:55 ============================================================================ +12:24:55 Slot Id : <287> +12:24:55 Transaction Type : RESPONSE +12:24:55 Received From : +12:24:55 ============================================================================ +12:24:55 FNo. Len. Field Value +12:24:55 ============================================================================ +12:24:55 [ 1] [ 4] [0810] +12:24:55 [ 7] [ 10] [0320053242] +12:24:55 [ 11] [ 6] [011626] +12:24:55 [ 37] [ 12] [579120116260] +12:24:55 [ 39] [ 2] [00] +12:24:55 [ 70] [ 3] [810] +12:24:55 ============================================================================ +12:24:55 Calculate Source COMM Id = 1 +12:24:55 ============================================================================ +12:24:55 + + +waiting on router queue for slot.... +12:24:56 ============================================================================ +12:24:56 Slot Id : <277> +12:24:56 Transaction Type : REQUEST +12:24:56 Received From : +12:24:56 ============================================================================ +12:24:56 FNo. Len. Field Value +12:24:56 ============================================================================ +12:24:56 [ 1] [ 4] [0800] +12:24:56 [ 7] [ 10] [0320052404] +12:24:56 [ 11] [ 6] [156298] +12:24:56 [ 70] [ 3] [301] +12:24:56 ============================================================================ +12:24:56 + + +waiting on router queue for slot.... +12:24:56 Sending to : +12:24:56 ============================================================================ +12:24:56 ============================================================================ +12:24:56 Slot Id : <277> +12:24:56 Transaction Type : RESPONSE +12:24:56 Received From : +12:24:56 ============================================================================ +12:24:56 FNo. Len. Field Value +12:24:56 ============================================================================ +12:24:56 [ 1] [ 4] [0810] +12:24:56 [ 7] [ 10] [0320052404] +12:24:56 [ 11] [ 6] [156298] +12:24:56 [ 39] [ 2] [00] +12:24:56 [ 70] [ 3] [301] +12:24:56 ============================================================================ +12:24:56 Calculate Source COMM Id = 2 +12:24:56 ============================================================================ +12:24:56 + + +waiting on router queue for slot.... +12:25:01 ============================================================================ +12:25:01 Slot Id : <290> +12:25:01 Transaction Type : REQUEST +12:25:01 Received From : +12:25:01 ============================================================================ +12:25:01 FNo. Len. Field Value +12:25:01 ============================================================================ +12:25:01 [ 1] [ 4] [0200] +12:25:01 [ 2] [ 16] [6213545000324842] +12:25:01 [ 3] [ 6] [010000] +12:25:01 [ 4] [ 12] [000100000000] +12:25:01 [ 7] [ 10] [0320052408] +12:25:01 [ 11] [ 6] [269010] +12:25:01 [ 12] [ 6] [122408] +12:25:01 [ 13] [ 4] [0320] +12:25:01 [ 14] [ 4] [4912] +12:25:01 [ 15] [ 4] [0320] +12:25:01 [ 18] [ 4] [6011] +12:25:01 [ 19] [ 3] [418] +12:25:01 [ 22] [ 3] [021] +12:25:01 [ 25] [ 2] [01] +12:25:01 [ 28] [ 9] [D00002000] +12:25:01 [ 32] [ 6] [180893] +12:25:01 [ 35] [ 32] [6213545000324842=491212012484468] +12:25:01 [ 37] [ 12] [507905269010] +12:25:01 [ 41] [ 8] [0366SKTT] +12:25:01 [ 42] [ 15] [999999 ] +12:25:01 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:25:01 [ 49] [ 3] [418] +12:25:01 [ 52] [ 16] [ECF25C6F842534B7] +12:25:01 ============================================================================ +12:25:01 + + +waiting on router queue for slot.... +12:25:01 Sending to : +12:25:01 ============================================================================ +12:25:01 Sending to : +12:25:01 ============================================================================ +12:25:01 ============================================================================ +12:25:01 Slot Id : <290> +12:25:01 Transaction Type : REQUEST +12:25:01 Received From : +12:25:01 ============================================================================ +12:25:01 FNo. Len. Field Value +12:25:01 ============================================================================ +12:25:01 [ 1] [ 4] [0200] +12:25:01 [ 2] [ 16] [6213545000324842] +12:25:01 [ 3] [ 6] [010000] +12:25:01 [ 4] [ 12] [000100000000] +12:25:01 [ 7] [ 10] [0320052408] +12:25:01 [ 11] [ 6] [269010] +12:25:01 [ 12] [ 6] [122408] +12:25:01 [ 13] [ 4] [0320] +12:25:01 [ 14] [ 4] [4912] +12:25:01 [ 15] [ 4] [0320] +12:25:01 [ 18] [ 4] [6011] +12:25:01 [ 19] [ 3] [418] +12:25:01 [ 22] [ 3] [021] +12:25:01 [ 25] [ 2] [01] +12:25:01 [ 28] [ 9] [D00002000] +12:25:01 [ 32] [ 6] [180893] +12:25:01 [ 35] [ 32] [6213545000324842=491212012484468] +12:25:01 [ 37] [ 12] [507905269010] +12:25:01 [ 41] [ 8] [0366SKTT] +12:25:01 [ 42] [ 15] [999999 ] +12:25:01 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:25:01 [ 49] [ 3] [418] +12:25:01 [ 52] [ 16] [ECF25C6F842534B7] +12:25:01 ============================================================================ +12:25:01 + + +waiting on router queue for slot.... +12:25:01 Sending to : +12:25:01 ============================================================================ +12:25:01 ============================================================================ +12:25:01 Slot Id : <290> +12:25:01 Transaction Type : REQUEST +12:25:01 Received From : +12:25:01 ============================================================================ +12:25:01 FNo. Len. Field Value +12:25:01 ============================================================================ +12:25:01 [ 1] [ 4] [0200] +12:25:01 [ 2] [ 16] [6213545000324842] +12:25:01 [ 3] [ 6] [010000] +12:25:01 [ 4] [ 12] [000100000000] +12:25:01 [ 7] [ 10] [0320052408] +12:25:01 [ 11] [ 6] [269010] +12:25:01 [ 12] [ 6] [122408] +12:25:01 [ 13] [ 4] [0320] +12:25:01 [ 14] [ 4] [4912] +12:25:01 [ 15] [ 4] [0320] +12:25:01 [ 18] [ 4] [6011] +12:25:01 [ 19] [ 3] [418] +12:25:01 [ 22] [ 3] [021] +12:25:01 [ 25] [ 2] [01] +12:25:01 [ 28] [ 9] [D00002000] +12:25:01 [ 32] [ 6] [180893] +12:25:01 [ 35] [ 32] [6213545000324842=491212012484468] +12:25:01 [ 37] [ 12] [507905269010] +12:25:01 [ 41] [ 8] [0366SKTT] +12:25:01 [ 42] [ 15] [999999 ] +12:25:01 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:25:01 [ 49] [ 3] [418] +12:25:01 [ 52] [ 16] [6B0C9954AF568579] +12:25:01 ============================================================================ +12:25:01 + + +waiting on router queue for slot.... +12:25:01 Sending to : <0> +12:25:01 ============================================================================ +12:25:02 ============================================================================ +12:25:02 Slot Id : <290> +12:25:02 Transaction Type : RESPONSE +12:25:02 Received From : +12:25:02 ============================================================================ +12:25:02 FNo. Len. Field Value +12:25:02 ============================================================================ +12:25:02 [ 1] [ 4] [0210] +12:25:02 [ 2] [ 16] [6213545000324842] +12:25:02 [ 3] [ 6] [010000] +12:25:02 [ 4] [ 12] [000100000000] +12:25:02 [ 7] [ 10] [0320052408] +12:25:02 [ 11] [ 6] [269010] +12:25:02 [ 12] [ 6] [122408] +12:25:02 [ 13] [ 4] [0320] +12:25:02 [ 15] [ 4] [0320] +12:25:02 [ 18] [ 4] [6011] +12:25:02 [ 19] [ 3] [418] +12:25:02 [ 32] [ 6] [180893] +12:25:02 [ 35] [ 32] [6213545000324842=491212012484468] +12:25:02 [ 37] [ 12] [507905269010] +12:25:02 [ 38] [ 6] [656473] +12:25:02 [ 39] [ 2] [00] +12:25:02 [ 41] [ 8] [0366SKTT] +12:25:02 [ 49] [ 3] [418] +12:25:02 [ 54] [ 40] [0001418C0000062641490002418C000006264149] +12:25:02 ============================================================================ +12:25:02 Sending to : +12:25:02 ============================================================================ +12:25:02 + + +waiting on router queue for slot.... +12:25:04 ============================================================================ +12:25:04 Slot Id : <290> +12:25:04 Transaction Type : RESPONSE +12:25:04 Received From : +12:25:04 ============================================================================ +12:25:04 FNo. Len. Field Value +12:25:04 ============================================================================ +12:25:04 [ 1] [ 4] [0210] +12:25:04 [ 2] [ 16] [6213545000324842] +12:25:04 [ 3] [ 6] [010000] +12:25:04 [ 4] [ 12] [000100000000] +12:25:04 [ 7] [ 10] [0320052408] +12:25:04 [ 11] [ 6] [269010] +12:25:04 [ 12] [ 6] [122408] +12:25:04 [ 13] [ 4] [0320] +12:25:04 [ 15] [ 4] [0320] +12:25:04 [ 18] [ 4] [6011] +12:25:04 [ 19] [ 3] [418] +12:25:04 [ 32] [ 6] [180893] +12:25:04 [ 35] [ 32] [6213545000324842=491212012484468] +12:25:04 [ 37] [ 12] [507905269010] +12:25:04 [ 38] [ 6] [656473] +12:25:04 [ 39] [ 2] [00] +12:25:04 [ 41] [ 8] [0366SKTT] +12:25:04 [ 49] [ 3] [418] +12:25:04 [ 54] [ 40] [0001418C0000062641490002418C000006264149] +12:25:04 ============================================================================ +12:25:04 Calculate Source COMM Id = 2 +12:25:04 ============================================================================ +12:25:04 + + +waiting on router queue for slot.... +12:25:09 ============================================================================ +12:25:09 Slot Id : <267> +12:25:09 Transaction Type : REQUEST +12:25:09 Received From : +12:25:09 ============================================================================ +12:25:09 FNo. Len. Field Value +12:25:09 ============================================================================ +12:25:09 [ 1] [ 4] [0200] +12:25:09 [ 2] [ 16] [6688990040113928] +12:25:09 [ 3] [ 6] [011000] +12:25:09 [ 4] [ 12] [000010000000] +12:25:09 [ 7] [ 10] [0320122505] +12:25:09 [ 11] [ 6] [744154] +12:25:09 [ 12] [ 6] [122505] +12:25:09 [ 13] [ 4] [0320] +12:25:09 [ 15] [ 4] [0320] +12:25:09 [ 18] [ 4] [6011] +12:25:09 [ 22] [ 3] [900] +12:25:09 [ 25] [ 2] [02] +12:25:09 [ 28] [ 9] [D00002000] +12:25:09 [ 32] [ 6] [621354] +12:25:09 [ 35] [ 37] [6688990040113928=98031261689215500000] +12:25:09 [ 37] [ 12] [507904459956] +12:25:09 [ 41] [ 8] [15000700] +12:25:09 [ 42] [ 15] [NATIVE ] +12:25:09 [ 43] [ 40] [Bolikhamxay Branch02 Pakson LAO] +12:25:09 [ 49] [ 3] [418] +12:25:09 [ 52] [ 16] [5538BE3D56DA73D0] +12:25:09 ============================================================================ +12:25:09 + + +waiting on router queue for slot.... +12:25:09 Sending to : +12:25:09 ============================================================================ +12:25:09 Sending to : +12:25:09 ============================================================================ +12:25:09 ============================================================================ +12:25:09 Slot Id : <267> +12:25:09 Transaction Type : REQUEST +12:25:09 Received From : +12:25:09 ============================================================================ +12:25:09 FNo. Len. Field Value +12:25:09 ============================================================================ +12:25:09 [ 1] [ 4] [0200] +12:25:09 [ 2] [ 16] [6688990040113928] +12:25:09 [ 3] [ 6] [011000] +12:25:09 [ 4] [ 12] [000010000000] +12:25:09 [ 7] [ 10] [0320122505] +12:25:09 [ 11] [ 6] [744154] +12:25:09 [ 12] [ 6] [122505] +12:25:09 [ 13] [ 4] [0320] +12:25:09 [ 15] [ 4] [0320] +12:25:09 [ 18] [ 4] [6011] +12:25:09 [ 22] [ 3] [900] +12:25:09 [ 25] [ 2] [02] +12:25:09 [ 28] [ 9] [D00002000] +12:25:09 [ 32] [ 6] [621354] +12:25:09 [ 35] [ 37] [6688990040113928=98031261689215500000] +12:25:09 [ 37] [ 12] [507904459956] +12:25:09 [ 41] [ 8] [15000700] +12:25:09 [ 42] [ 15] [NATIVE ] +12:25:09 [ 43] [ 40] [Bolikhamxay Branch02 Pakson LAO] +12:25:09 [ 49] [ 3] [418] +12:25:09 [ 52] [ 16] [5538BE3D56DA73D0] +12:25:09 ============================================================================ +12:25:09 + + +waiting on router queue for slot.... +12:25:09 Sending to : +12:25:09 ============================================================================ +12:25:09 ============================================================================ +12:25:09 Slot Id : <267> +12:25:09 Transaction Type : REQUEST +12:25:09 Received From : +12:25:09 ============================================================================ +12:25:09 FNo. Len. Field Value +12:25:09 ============================================================================ +12:25:09 [ 1] [ 4] [0200] +12:25:09 [ 2] [ 16] [6688990040113928] +12:25:09 [ 3] [ 6] [011000] +12:25:09 [ 4] [ 12] [000010000000] +12:25:09 [ 7] [ 10] [0320122505] +12:25:09 [ 11] [ 6] [744154] +12:25:09 [ 12] [ 6] [122505] +12:25:09 [ 13] [ 4] [0320] +12:25:09 [ 15] [ 4] [0320] +12:25:09 [ 18] [ 4] [6011] +12:25:09 [ 22] [ 3] [900] +12:25:09 [ 25] [ 2] [02] +12:25:09 [ 28] [ 9] [D00002000] +12:25:09 [ 32] [ 6] [621354] +12:25:09 [ 35] [ 37] [6688990040113928=98031261689215500000] +12:25:09 [ 37] [ 12] [507904459956] +12:25:09 [ 41] [ 8] [15000700] +12:25:09 [ 42] [ 15] [NATIVE ] +12:25:09 [ 43] [ 40] [Bolikhamxay Branch02 Pakson LAO] +12:25:09 [ 49] [ 3] [418] +12:25:09 [ 52] [ 16] [D7C5C1BC175C08A2] +12:25:09 ============================================================================ +12:25:09 + + +waiting on router queue for slot.... +12:25:09 Sending to : <4> +12:25:09 ============================================================================ +12:25:10 ============================================================================ +12:25:10 Slot Id : <267> +12:25:10 Transaction Type : RESPONSE +12:25:10 Received From : +12:25:10 ============================================================================ +12:25:10 FNo. Len. Field Value +12:25:10 ============================================================================ +12:25:10 [ 1] [ 4] [0210] +12:25:10 [ 2] [ 16] [6688990040113928] +12:25:10 [ 3] [ 6] [011000] +12:25:10 [ 4] [ 12] [000010000000] +12:25:10 [ 11] [ 6] [744154] +12:25:10 [ 12] [ 6] [122505] +12:25:10 [ 15] [ 4] [0320] +12:25:10 [ 18] [ 4] [6011] +12:25:10 [ 32] [ 6] [621354] +12:25:10 [ 35] [ 37] [6688990040113928=98031261689215500000] +12:25:10 [ 37] [ 12] [507904459956] +12:25:10 [ 38] [ 6] [345223] +12:25:10 [ 39] [ 2] [00] +12:25:10 [ 41] [ 8] [15000700] +12:25:10 [ 49] [ 3] [418] +12:25:10 [ 54] [ 20] [1002418C000033816438] +12:25:10 ============================================================================ +12:25:10 Sending to : +12:25:10 ============================================================================ +12:25:10 + + +waiting on router queue for slot.... +12:25:12 ============================================================================ +12:25:12 Slot Id : <267> +12:25:12 Transaction Type : RESPONSE +12:25:12 Received From : +12:25:12 ============================================================================ +12:25:12 FNo. Len. Field Value +12:25:12 ============================================================================ +12:25:12 [ 1] [ 4] [0210] +12:25:12 [ 2] [ 16] [6688990040113928] +12:25:12 [ 3] [ 6] [011000] +12:25:12 [ 4] [ 12] [000010000000] +12:25:12 [ 11] [ 6] [744154] +12:25:12 [ 12] [ 6] [122505] +12:25:12 [ 15] [ 4] [0320] +12:25:12 [ 18] [ 4] [6011] +12:25:12 [ 32] [ 6] [621354] +12:25:12 [ 35] [ 37] [6688990040113928=98031261689215500000] +12:25:12 [ 37] [ 12] [507904459956] +12:25:12 [ 38] [ 6] [345223] +12:25:12 [ 39] [ 2] [00] +12:25:12 [ 41] [ 8] [15000700] +12:25:12 [ 49] [ 3] [418] +12:25:12 [ 54] [ 20] [1002418C000033816438] +12:25:12 ============================================================================ +12:25:12 Calculate Source COMM Id = 0 +12:25:12 ============================================================================ +12:25:12 + + +waiting on router queue for slot.... +12:25:17 ============================================================================ +12:25:17 Slot Id : <271> +12:25:17 Transaction Type : REQUEST +12:25:17 Received From : +12:25:17 ============================================================================ +12:25:17 FNo. Len. Field Value +12:25:17 ============================================================================ +12:25:17 [ 1] [ 4] [0200] +12:25:17 [ 2] [ 16] [6213545000801831] +12:25:17 [ 3] [ 6] [301000] +12:25:17 [ 4] [ 12] [000000000000] +12:25:17 [ 7] [ 10] [0320122308] +12:25:17 [ 11] [ 6] [944144] +12:25:17 [ 12] [ 6] [122308] +12:25:17 [ 13] [ 4] [0320] +12:25:17 [ 15] [ 4] [0320] +12:25:17 [ 18] [ 4] [6011] +12:25:17 [ 19] [ 3] [418] +12:25:17 [ 22] [ 3] [021] +12:25:17 [ 25] [ 2] [01] +12:25:17 [ 28] [ 9] [D00000000] +12:25:17 [ 32] [ 6] [668899] +12:25:17 [ 35] [ 32] [6213545000801831=491212010183523] +12:25:17 [ 37] [ 12] [507900168579] +12:25:17 [ 41] [ 8] [03020007] +12:25:17 [ 42] [ 15] [APT ] +12:25:17 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +12:25:17 [ 49] [ 3] [418] +12:25:17 [ 52] [ 16] [C10B05BC15568738] +12:25:17 ============================================================================ +12:25:17 + + +waiting on router queue for slot.... +12:25:17 Sending to : +12:25:17 ============================================================================ +12:25:17 Sending to : +12:25:17 ============================================================================ +12:25:17 ============================================================================ +12:25:17 Slot Id : <271> +12:25:17 Transaction Type : REQUEST +12:25:17 Received From : +12:25:17 ============================================================================ +12:25:17 FNo. Len. Field Value +12:25:17 ============================================================================ +12:25:17 [ 1] [ 4] [0200] +12:25:17 [ 2] [ 16] [6213545000801831] +12:25:17 [ 3] [ 6] [301000] +12:25:17 [ 4] [ 12] [000000000000] +12:25:17 [ 7] [ 10] [0320122308] +12:25:17 [ 11] [ 6] [944144] +12:25:17 [ 12] [ 6] [122308] +12:25:17 [ 13] [ 4] [0320] +12:25:17 [ 15] [ 4] [0320] +12:25:17 [ 18] [ 4] [6011] +12:25:17 [ 19] [ 3] [418] +12:25:17 [ 22] [ 3] [021] +12:25:17 [ 25] [ 2] [01] +12:25:17 [ 28] [ 9] [D00000000] +12:25:17 [ 32] [ 6] [668899] +12:25:17 [ 35] [ 32] [6213545000801831=491212010183523] +12:25:17 [ 37] [ 12] [507900168579] +12:25:17 [ 41] [ 8] [03020007] +12:25:17 [ 42] [ 15] [APT ] +12:25:17 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +12:25:17 [ 49] [ 3] [418] +12:25:17 [ 52] [ 16] [C10B05BC15568738] +12:25:17 ============================================================================ +12:25:17 + + +waiting on router queue for slot.... +12:25:17 Sending to : +12:25:17 ============================================================================ +12:25:17 ============================================================================ +12:25:17 Slot Id : <271> +12:25:17 Transaction Type : REQUEST +12:25:17 Received From : +12:25:17 ============================================================================ +12:25:17 FNo. Len. Field Value +12:25:17 ============================================================================ +12:25:17 [ 1] [ 4] [0200] +12:25:17 [ 2] [ 16] [6213545000801831] +12:25:17 [ 3] [ 6] [301000] +12:25:17 [ 4] [ 12] [000000000000] +12:25:17 [ 7] [ 10] [0320122308] +12:25:17 [ 11] [ 6] [944144] +12:25:17 [ 12] [ 6] [122308] +12:25:17 [ 13] [ 4] [0320] +12:25:17 [ 15] [ 4] [0320] +12:25:17 [ 18] [ 4] [6011] +12:25:17 [ 19] [ 3] [418] +12:25:17 [ 22] [ 3] [021] +12:25:17 [ 25] [ 2] [01] +12:25:17 [ 28] [ 9] [D00000000] +12:25:17 [ 32] [ 6] [668899] +12:25:17 [ 35] [ 32] [6213545000801831=491212010183523] +12:25:17 [ 37] [ 12] [507900168579] +12:25:17 [ 41] [ 8] [03020007] +12:25:17 [ 42] [ 15] [APT ] +12:25:17 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +12:25:17 [ 49] [ 3] [418] +12:25:17 [ 52] [ 16] [1A7B24DD2712005D] +12:25:17 ============================================================================ +12:25:17 + + +waiting on router queue for slot.... +12:25:17 Sending to : <0> +12:25:17 ============================================================================ +12:25:18 ============================================================================ +12:25:18 Slot Id : <271> +12:25:18 Transaction Type : RESPONSE +12:25:18 Received From : +12:25:18 ============================================================================ +12:25:18 FNo. Len. Field Value +12:25:18 ============================================================================ +12:25:18 [ 1] [ 4] [0210] +12:25:18 [ 2] [ 16] [6213545000801831] +12:25:18 [ 3] [ 6] [301000] +12:25:18 [ 4] [ 12] [000000000000] +12:25:18 [ 7] [ 10] [0320122308] +12:25:18 [ 11] [ 6] [944144] +12:25:18 [ 12] [ 6] [122308] +12:25:18 [ 13] [ 4] [0320] +12:25:18 [ 15] [ 4] [0320] +12:25:18 [ 18] [ 4] [6011] +12:25:18 [ 19] [ 3] [418] +12:25:18 [ 32] [ 6] [668899] +12:25:18 [ 35] [ 32] [6213545000801831=491212010183523] +12:25:18 [ 37] [ 12] [507900168579] +12:25:18 [ 38] [ 6] [599262] +12:25:18 [ 39] [ 2] [00] +12:25:18 [ 41] [ 8] [03020007] +12:25:18 [ 49] [ 3] [418] +12:25:18 [ 54] [ 40] [1001418C0014817252941002418C001481725294] +12:25:18 ============================================================================ +12:25:18 Sending to : +12:25:18 ============================================================================ +12:25:18 + + +waiting on router queue for slot.... +12:25:18 ============================================================================ +12:25:18 Slot Id : <294> +12:25:18 Transaction Type : REQUEST +12:25:18 Received From : +12:25:18 ============================================================================ +12:25:18 FNo. Len. Field Value +12:25:18 ============================================================================ +12:25:18 [ 1] [ 4] [0800] +12:25:18 [ 7] [ 10] [0320052426] +12:25:18 [ 11] [ 6] [156299] +12:25:18 [ 70] [ 3] [301] +12:25:18 ============================================================================ +12:25:18 + + +waiting on router queue for slot.... +12:25:18 Sending to : +12:25:18 ============================================================================ +12:25:18 ============================================================================ +12:25:18 Slot Id : <294> +12:25:18 Transaction Type : RESPONSE +12:25:18 Received From : +12:25:18 ============================================================================ +12:25:18 FNo. Len. Field Value +12:25:18 ============================================================================ +12:25:18 [ 1] [ 4] [0810] +12:25:18 [ 7] [ 10] [0320052426] +12:25:18 [ 11] [ 6] [156299] +12:25:18 [ 39] [ 2] [00] +12:25:18 [ 70] [ 3] [301] +12:25:18 ============================================================================ +12:25:18 Calculate Source COMM Id = 2 +12:25:18 ============================================================================ +12:25:18 + + +waiting on router queue for slot.... +12:25:19 ============================================================================ +12:25:19 Slot Id : <271> +12:25:19 Transaction Type : RESPONSE +12:25:19 Received From : +12:25:19 ============================================================================ +12:25:19 FNo. Len. Field Value +12:25:19 ============================================================================ +12:25:19 [ 1] [ 4] [0210] +12:25:19 [ 2] [ 16] [6213545000801831] +12:25:19 [ 3] [ 6] [301000] +12:25:19 [ 4] [ 12] [000000000000] +12:25:19 [ 7] [ 10] [0320122308] +12:25:19 [ 11] [ 6] [944144] +12:25:19 [ 12] [ 6] [122308] +12:25:19 [ 13] [ 4] [0320] +12:25:19 [ 15] [ 4] [0320] +12:25:19 [ 18] [ 4] [6011] +12:25:19 [ 19] [ 3] [418] +12:25:19 [ 32] [ 6] [668899] +12:25:19 [ 35] [ 32] [6213545000801831=491212010183523] +12:25:19 [ 37] [ 12] [507900168579] +12:25:19 [ 38] [ 6] [599262] +12:25:19 [ 39] [ 2] [00] +12:25:19 [ 41] [ 8] [03020007] +12:25:19 [ 49] [ 3] [418] +12:25:19 [ 54] [ 40] [1001418C0014817252941002418C001481725294] +12:25:19 ============================================================================ +12:25:19 Calculate Source COMM Id = 4 +12:25:19 ============================================================================ +12:25:19 + + +waiting on router queue for slot.... +12:25:29 ============================================================================ +12:25:29 Slot Id : <236> +12:25:29 Transaction Type : REQUEST +12:25:29 Received From : +12:25:29 ============================================================================ +12:25:29 FNo. Len. Field Value +12:25:29 ============================================================================ +12:25:29 [ 1] [ 4] [0800] +12:25:29 [ 7] [ 10] [0320052437] +12:25:29 [ 11] [ 6] [156300] +12:25:29 [ 70] [ 3] [301] +12:25:29 ============================================================================ +12:25:29 + + +waiting on router queue for slot.... +12:25:29 Sending to : +12:25:29 ============================================================================ +12:25:29 ============================================================================ +12:25:29 Slot Id : <236> +12:25:29 Transaction Type : RESPONSE +12:25:29 Received From : +12:25:29 ============================================================================ +12:25:29 FNo. Len. Field Value +12:25:29 ============================================================================ +12:25:29 [ 1] [ 4] [0810] +12:25:29 [ 7] [ 10] [0320052437] +12:25:29 [ 11] [ 6] [156300] +12:25:29 [ 39] [ 2] [00] +12:25:29 [ 70] [ 3] [301] +12:25:29 ============================================================================ +12:25:29 Calculate Source COMM Id = 2 +12:25:29 ============================================================================ +12:25:29 + + +waiting on router queue for slot.... +12:25:35 ============================================================================ +12:25:35 Slot Id : <217> +12:25:35 Transaction Type : REQUEST +12:25:35 Received From : +12:25:35 ============================================================================ +12:25:35 FNo. Len. Field Value +12:25:35 ============================================================================ +12:25:35 [ 1] [ 4] [0200] +12:25:35 [ 2] [ 16] [6213543000179878] +12:25:35 [ 3] [ 6] [010000] +12:25:35 [ 4] [ 12] [000100000000] +12:25:35 [ 7] [ 10] [0320122326] +12:25:35 [ 11] [ 6] [944159] +12:25:35 [ 12] [ 6] [122326] +12:25:35 [ 13] [ 4] [0320] +12:25:35 [ 15] [ 4] [0320] +12:25:35 [ 18] [ 4] [6011] +12:25:35 [ 19] [ 3] [418] +12:25:35 [ 22] [ 3] [021] +12:25:35 [ 25] [ 2] [01] +12:25:35 [ 28] [ 9] [D00002000] +12:25:35 [ 32] [ 6] [668899] +12:25:35 [ 35] [ 32] [6213543000179878=491212017987066] +12:25:35 [ 37] [ 12] [507902150968] +12:25:35 [ 41] [ 8] [03020025] +12:25:35 [ 42] [ 15] [APT ] +12:25:35 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:25:35 [ 49] [ 3] [418] +12:25:35 [ 52] [ 16] [453732D310E520DC] +12:25:35 ============================================================================ +12:25:35 + + +waiting on router queue for slot.... +12:25:35 Sending to : +12:25:35 ============================================================================ +12:25:35 Sending to : +12:25:35 ============================================================================ +12:25:35 ============================================================================ +12:25:35 Slot Id : <217> +12:25:35 Transaction Type : REQUEST +12:25:35 Received From : +12:25:35 ============================================================================ +12:25:35 FNo. Len. Field Value +12:25:35 ============================================================================ +12:25:35 [ 1] [ 4] [0200] +12:25:35 [ 2] [ 16] [6213543000179878] +12:25:35 [ 3] [ 6] [010000] +12:25:35 [ 4] [ 12] [000100000000] +12:25:35 [ 7] [ 10] [0320122326] +12:25:35 [ 11] [ 6] [944159] +12:25:35 [ 12] [ 6] [122326] +12:25:35 [ 13] [ 4] [0320] +12:25:35 [ 15] [ 4] [0320] +12:25:35 [ 18] [ 4] [6011] +12:25:35 [ 19] [ 3] [418] +12:25:35 [ 22] [ 3] [021] +12:25:35 [ 25] [ 2] [01] +12:25:35 [ 28] [ 9] [D00002000] +12:25:35 [ 32] [ 6] [668899] +12:25:35 [ 35] [ 32] [6213543000179878=491212017987066] +12:25:35 [ 37] [ 12] [507902150968] +12:25:35 [ 41] [ 8] [03020025] +12:25:35 [ 42] [ 15] [APT ] +12:25:35 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:25:35 [ 49] [ 3] [418] +12:25:35 [ 52] [ 16] [453732D310E520DC] +12:25:35 ============================================================================ +12:25:35 + + +waiting on router queue for slot.... +12:25:35 Sending to : +12:25:35 ============================================================================ +12:25:35 ============================================================================ +12:25:35 Slot Id : <217> +12:25:35 Transaction Type : REQUEST +12:25:35 Received From : +12:25:35 ============================================================================ +12:25:35 FNo. Len. Field Value +12:25:35 ============================================================================ +12:25:35 [ 1] [ 4] [0200] +12:25:35 [ 2] [ 16] [6213543000179878] +12:25:35 [ 3] [ 6] [010000] +12:25:35 [ 4] [ 12] [000100000000] +12:25:35 [ 7] [ 10] [0320122326] +12:25:35 [ 11] [ 6] [944159] +12:25:35 [ 12] [ 6] [122326] +12:25:35 [ 13] [ 4] [0320] +12:25:35 [ 15] [ 4] [0320] +12:25:35 [ 18] [ 4] [6011] +12:25:35 [ 19] [ 3] [418] +12:25:35 [ 22] [ 3] [021] +12:25:35 [ 25] [ 2] [01] +12:25:35 [ 28] [ 9] [D00002000] +12:25:35 [ 32] [ 6] [668899] +12:25:35 [ 35] [ 32] [6213543000179878=491212017987066] +12:25:35 [ 37] [ 12] [507902150968] +12:25:35 [ 41] [ 8] [03020025] +12:25:35 [ 42] [ 15] [APT ] +12:25:35 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:25:35 [ 49] [ 3] [418] +12:25:35 [ 52] [ 16] [8AEE07F27C6D3926] +12:25:35 ============================================================================ +12:25:35 + + +waiting on router queue for slot.... +12:25:35 Sending to : <0> +12:25:35 ============================================================================ +12:25:36 ============================================================================ +12:25:36 Slot Id : <217> +12:25:36 Transaction Type : RESPONSE +12:25:36 Received From : +12:25:36 ============================================================================ +12:25:36 FNo. Len. Field Value +12:25:36 ============================================================================ +12:25:36 [ 1] [ 4] [0210] +12:25:36 [ 2] [ 16] [6213543000179878] +12:25:36 [ 3] [ 6] [010000] +12:25:36 [ 4] [ 12] [000100000000] +12:25:36 [ 7] [ 10] [0320122326] +12:25:36 [ 11] [ 6] [944159] +12:25:36 [ 12] [ 6] [122326] +12:25:36 [ 13] [ 4] [0320] +12:25:36 [ 15] [ 4] [0320] +12:25:36 [ 18] [ 4] [6011] +12:25:36 [ 19] [ 3] [418] +12:25:36 [ 32] [ 6] [668899] +12:25:36 [ 35] [ 32] [6213543000179878=491212017987066] +12:25:36 [ 37] [ 12] [507902150968] +12:25:36 [ 38] [ 6] [550355] +12:25:36 [ 39] [ 2] [00] +12:25:36 [ 41] [ 8] [03020025] +12:25:36 [ 49] [ 3] [418] +12:25:36 [ 54] [ 40] [0001418C0008318568850002418C000831856885] +12:25:36 ============================================================================ +12:25:36 Sending to : +12:25:36 ============================================================================ +12:25:36 + + +waiting on router queue for slot.... +12:25:38 ============================================================================ +12:25:38 Slot Id : <217> +12:25:38 Transaction Type : RESPONSE +12:25:38 Received From : +12:25:38 ============================================================================ +12:25:38 FNo. Len. Field Value +12:25:38 ============================================================================ +12:25:38 [ 1] [ 4] [0210] +12:25:38 [ 2] [ 16] [6213543000179878] +12:25:38 [ 3] [ 6] [010000] +12:25:38 [ 4] [ 12] [000100000000] +12:25:38 [ 7] [ 10] [0320122326] +12:25:38 [ 11] [ 6] [944159] +12:25:38 [ 12] [ 6] [122326] +12:25:38 [ 13] [ 4] [0320] +12:25:38 [ 15] [ 4] [0320] +12:25:38 [ 18] [ 4] [6011] +12:25:38 [ 19] [ 3] [418] +12:25:38 [ 32] [ 6] [668899] +12:25:38 [ 35] [ 32] [6213543000179878=491212017987066] +12:25:38 [ 37] [ 12] [507902150968] +12:25:38 [ 38] [ 6] [550355] +12:25:38 [ 39] [ 2] [00] +12:25:38 [ 41] [ 8] [03020025] +12:25:38 [ 49] [ 3] [418] +12:25:38 [ 54] [ 40] [0001418C0008318568850002418C000831856885] +12:25:38 ============================================================================ +12:25:38 Calculate Source COMM Id = 4 +12:25:38 ============================================================================ +12:25:38 + + +waiting on router queue for slot.... +12:25:40 ============================================================================ +12:25:40 Slot Id : <293> +12:25:40 Transaction Type : REQUEST +12:25:40 Received From : +12:25:40 ============================================================================ +12:25:40 FNo. Len. Field Value +12:25:40 ============================================================================ +12:25:40 [ 1] [ 4] [0800] +12:25:40 [ 2] [ 5] [02531] +12:25:40 [ 3] [ 6] [579128] +12:25:40 [ 7] [ 10] [0320052540] +12:25:40 [ 11] [ 6] [807133] +12:25:40 [ 15] [ 10] [0320052540] +12:25:40 [ 37] [ 11] [57912807133] +12:25:40 [ 70] [ 3] [001] +12:25:40 ============================================================================ +12:25:40 + + +waiting on router queue for slot.... +12:25:40 ============================================================================ +12:25:40 Slot Id : <293> +12:25:40 Transaction Type : RESPONSE +12:25:40 Received From : +12:25:40 ============================================================================ +12:25:40 FNo. Len. Field Value +12:25:40 ============================================================================ +12:25:40 [ 1] [ 4] [0810] +12:25:40 [ 7] [ 10] [0320052540] +12:25:40 [ 11] [ 6] [807133] +12:25:40 [ 15] [ 4] [0320] +12:25:40 [ 37] [ 12] [57912807133] +12:25:40 [ 39] [ 2] [00] +12:25:40 [ 70] [ 3] [001] +12:25:40 ============================================================================ +12:25:40 Sending to : +12:25:40 ============================================================================ +12:25:40 + + +waiting on router queue for slot.... +12:25:40 ============================================================================ +12:25:40 Slot Id : <303> +12:25:40 Transaction Type : REQUEST +12:25:40 Received From : +12:25:40 ============================================================================ +12:25:40 FNo. Len. Field Value +12:25:40 ============================================================================ +12:25:40 [ 1] [ 4] [0800] +12:25:40 [ 7] [ 10] [0320052447] +12:25:40 [ 11] [ 6] [156301] +12:25:40 [ 70] [ 3] [301] +12:25:40 ============================================================================ +12:25:40 + + +waiting on router queue for slot.... +12:25:40 Sending to : +12:25:40 ============================================================================ +12:25:40 ============================================================================ +12:25:40 Slot Id : <303> +12:25:40 Transaction Type : RESPONSE +12:25:40 Received From : +12:25:40 ============================================================================ +12:25:40 FNo. Len. Field Value +12:25:40 ============================================================================ +12:25:40 [ 1] [ 4] [0810] +12:25:40 [ 7] [ 10] [0320052447] +12:25:40 [ 11] [ 6] [156301] +12:25:40 [ 39] [ 2] [00] +12:25:40 [ 70] [ 3] [301] +12:25:40 ============================================================================ +12:25:40 Calculate Source COMM Id = 2 +12:25:40 ============================================================================ +12:25:40 + + +waiting on router queue for slot.... +12:25:55 ============================================================================ +12:25:55 Slot Id : <278> +12:25:55 Transaction Type : REQUEST +12:25:55 Received From : +12:25:55 ============================================================================ +12:25:55 FNo. Len. Field Value +12:25:55 ============================================================================ +12:25:55 [ 1] [ 4] [0200] +12:25:55 [ 2] [ 16] [6213545000801831] +12:25:55 [ 3] [ 6] [302000] +12:25:55 [ 4] [ 12] [000000000000] +12:25:55 [ 7] [ 10] [0320122346] +12:25:55 [ 11] [ 6] [944183] +12:25:55 [ 12] [ 6] [122346] +12:25:55 [ 13] [ 4] [0320] +12:25:55 [ 15] [ 4] [0320] +12:25:55 [ 18] [ 4] [6011] +12:25:55 [ 19] [ 3] [418] +12:25:55 [ 22] [ 3] [021] +12:25:55 [ 25] [ 2] [01] +12:25:55 [ 28] [ 9] [D00000000] +12:25:55 [ 32] [ 6] [668899] +12:25:55 [ 35] [ 32] [6213545000801831=491212010183523] +12:25:55 [ 37] [ 12] [507900168580] +12:25:55 [ 41] [ 8] [03020007] +12:25:55 [ 42] [ 15] [APT ] +12:25:55 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +12:25:55 [ 49] [ 3] [418] +12:25:55 [ 52] [ 16] [C10B05BC15568738] +12:25:55 ============================================================================ +12:25:55 + + +waiting on router queue for slot.... +12:25:55 Sending to : +12:25:55 ============================================================================ +12:25:55 Sending to : +12:25:55 ============================================================================ +12:25:56 ============================================================================ +12:25:56 Slot Id : <278> +12:25:56 Transaction Type : REQUEST +12:25:56 Received From : +12:25:56 ============================================================================ +12:25:56 FNo. Len. Field Value +12:25:56 ============================================================================ +12:25:56 [ 1] [ 4] [0200] +12:25:56 [ 2] [ 16] [6213545000801831] +12:25:56 [ 3] [ 6] [302000] +12:25:56 [ 4] [ 12] [000000000000] +12:25:56 [ 7] [ 10] [0320122346] +12:25:56 [ 11] [ 6] [944183] +12:25:56 [ 12] [ 6] [122346] +12:25:56 [ 13] [ 4] [0320] +12:25:56 [ 15] [ 4] [0320] +12:25:56 [ 18] [ 4] [6011] +12:25:56 [ 19] [ 3] [418] +12:25:56 [ 22] [ 3] [021] +12:25:56 [ 25] [ 2] [01] +12:25:56 [ 28] [ 9] [D00000000] +12:25:56 [ 32] [ 6] [668899] +12:25:56 [ 35] [ 32] [6213545000801831=491212010183523] +12:25:56 [ 37] [ 12] [507900168580] +12:25:56 [ 41] [ 8] [03020007] +12:25:56 [ 42] [ 15] [APT ] +12:25:56 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +12:25:56 [ 49] [ 3] [418] +12:25:56 [ 52] [ 16] [C10B05BC15568738] +12:25:56 ============================================================================ +12:25:56 + + +waiting on router queue for slot.... +12:25:56 Sending to : +12:25:56 ============================================================================ +12:25:56 ============================================================================ +12:25:56 Slot Id : <278> +12:25:56 Transaction Type : REQUEST +12:25:56 Received From : +12:25:56 ============================================================================ +12:25:56 FNo. Len. Field Value +12:25:56 ============================================================================ +12:25:56 [ 1] [ 4] [0200] +12:25:56 [ 2] [ 16] [6213545000801831] +12:25:56 [ 3] [ 6] [302000] +12:25:56 [ 4] [ 12] [000000000000] +12:25:56 [ 7] [ 10] [0320122346] +12:25:56 [ 11] [ 6] [944183] +12:25:56 [ 12] [ 6] [122346] +12:25:56 [ 13] [ 4] [0320] +12:25:56 [ 15] [ 4] [0320] +12:25:56 [ 18] [ 4] [6011] +12:25:56 [ 19] [ 3] [418] +12:25:56 [ 22] [ 3] [021] +12:25:56 [ 25] [ 2] [01] +12:25:56 [ 28] [ 9] [D00000000] +12:25:56 [ 32] [ 6] [668899] +12:25:56 [ 35] [ 32] [6213545000801831=491212010183523] +12:25:56 [ 37] [ 12] [507900168580] +12:25:56 [ 41] [ 8] [03020007] +12:25:56 [ 42] [ 15] [APT ] +12:25:56 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +12:25:56 [ 49] [ 3] [418] +12:25:56 [ 52] [ 16] [1A7B24DD2712005D] +12:25:56 ============================================================================ +12:25:56 + + +waiting on router queue for slot.... +12:25:56 Sending to : <0> +12:25:56 ============================================================================ +12:25:56 ============================================================================ +12:25:56 Slot Id : <278> +12:25:56 Transaction Type : RESPONSE +12:25:56 Received From : +12:25:56 ============================================================================ +12:25:56 FNo. Len. Field Value +12:25:56 ============================================================================ +12:25:56 [ 1] [ 4] [0210] +12:25:56 [ 2] [ 16] [6213545000801831] +12:25:56 [ 3] [ 6] [302000] +12:25:56 [ 4] [ 12] [000000000000] +12:25:56 [ 7] [ 10] [0320122346] +12:25:56 [ 11] [ 6] [944183] +12:25:56 [ 12] [ 6] [122346] +12:25:56 [ 13] [ 4] [0320] +12:25:56 [ 15] [ 4] [0320] +12:25:56 [ 18] [ 4] [6011] +12:25:56 [ 19] [ 3] [418] +12:25:56 [ 32] [ 6] [668899] +12:25:56 [ 35] [ 32] [6213545000801831=491212010183523] +12:25:56 [ 37] [ 12] [507900168580] +12:25:56 [ 38] [ 6] [756797] +12:25:56 [ 39] [ 2] [00] +12:25:56 [ 41] [ 8] [03020007] +12:25:56 [ 49] [ 3] [418] +12:25:56 [ 54] [ 40] [2001418C0014817252942002418C001481725294] +12:25:56 ============================================================================ +12:25:56 Sending to : +12:25:56 ============================================================================ +12:25:56 + + +waiting on router queue for slot.... +12:25:56 ============================================================================ +12:25:56 Slot Id : <298> +12:25:56 Transaction Type : REQUEST +12:25:56 Received From : +12:25:56 ============================================================================ +12:25:56 FNo. Len. Field Value +12:25:56 ============================================================================ +12:25:56 [ 1] [ 4] [0800] +12:25:56 [ 7] [ 10] [0320052504] +12:25:56 [ 11] [ 6] [156302] +12:25:56 [ 70] [ 3] [301] +12:25:56 ============================================================================ +12:25:56 + + +waiting on router queue for slot.... +12:25:56 Sending to : +12:25:56 ============================================================================ +12:25:56 ============================================================================ +12:25:56 Slot Id : <298> +12:25:56 Transaction Type : RESPONSE +12:25:56 Received From : +12:25:56 ============================================================================ +12:25:56 FNo. Len. Field Value +12:25:56 ============================================================================ +12:25:56 [ 1] [ 4] [0810] +12:25:56 [ 7] [ 10] [0320052504] +12:25:56 [ 11] [ 6] [156302] +12:25:56 [ 39] [ 2] [00] +12:25:56 [ 70] [ 3] [301] +12:25:56 ============================================================================ +12:25:56 Calculate Source COMM Id = 2 +12:25:56 ============================================================================ +12:25:56 + + +waiting on router queue for slot.... +12:25:57 ============================================================================ +12:25:57 Slot Id : <278> +12:25:57 Transaction Type : RESPONSE +12:25:57 Received From : +12:25:57 ============================================================================ +12:25:57 FNo. Len. Field Value +12:25:57 ============================================================================ +12:25:57 [ 1] [ 4] [0210] +12:25:57 [ 2] [ 16] [6213545000801831] +12:25:57 [ 3] [ 6] [302000] +12:25:57 [ 4] [ 12] [000000000000] +12:25:57 [ 7] [ 10] [0320122346] +12:25:57 [ 11] [ 6] [944183] +12:25:57 [ 12] [ 6] [122346] +12:25:57 [ 13] [ 4] [0320] +12:25:57 [ 15] [ 4] [0320] +12:25:57 [ 18] [ 4] [6011] +12:25:57 [ 19] [ 3] [418] +12:25:57 [ 32] [ 6] [668899] +12:25:57 [ 35] [ 32] [6213545000801831=491212010183523] +12:25:57 [ 37] [ 12] [507900168580] +12:25:57 [ 38] [ 6] [756797] +12:25:57 [ 39] [ 2] [00] +12:25:57 [ 41] [ 8] [03020007] +12:25:57 [ 49] [ 3] [418] +12:25:57 [ 54] [ 40] [2001418C0014817252942002418C001481725294] +12:25:57 ============================================================================ +12:25:57 Calculate Source COMM Id = 4 +12:25:57 ============================================================================ +12:25:57 + + +waiting on router queue for slot.... +12:25:59 ============================================================================ +12:25:59 Slot Id : <257> +12:25:59 Transaction Type : REQUEST +12:25:59 Received From : +12:25:59 ============================================================================ +12:25:59 FNo. Len. Field Value +12:25:59 ============================================================================ +12:25:59 [ 1] [ 4] [0200] +12:25:59 [ 2] [ 16] [6213545000970115] +12:25:59 [ 3] [ 6] [010000] +12:25:59 [ 4] [ 12] [000100000000] +12:25:59 [ 7] [ 10] [0320122349] +12:25:59 [ 11] [ 6] [944185] +12:25:59 [ 12] [ 6] [122349] +12:25:59 [ 13] [ 4] [0320] +12:25:59 [ 15] [ 4] [0320] +12:25:59 [ 18] [ 4] [6011] +12:25:59 [ 19] [ 3] [418] +12:25:59 [ 22] [ 3] [021] +12:25:59 [ 25] [ 2] [01] +12:25:59 [ 28] [ 9] [D00002000] +12:25:59 [ 32] [ 6] [668899] +12:25:59 [ 35] [ 32] [6213545000970115=491212017011395] +12:25:59 [ 37] [ 12] [507900123303] +12:25:59 [ 41] [ 8] [03020003] +12:25:59 [ 42] [ 15] [APT ] +12:25:59 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:25:59 [ 49] [ 3] [418] +12:25:59 [ 52] [ 16] [3B70B5F55EEBA13A] +12:25:59 ============================================================================ +12:25:59 + + +waiting on router queue for slot.... +12:25:59 Sending to : +12:25:59 ============================================================================ +12:25:59 Sending to : +12:25:59 ============================================================================ +12:25:59 ============================================================================ +12:25:59 Slot Id : <257> +12:25:59 Transaction Type : REQUEST +12:25:59 Received From : +12:25:59 ============================================================================ +12:25:59 FNo. Len. Field Value +12:25:59 ============================================================================ +12:25:59 [ 1] [ 4] [0200] +12:25:59 [ 2] [ 16] [6213545000970115] +12:25:59 [ 3] [ 6] [010000] +12:25:59 [ 4] [ 12] [000100000000] +12:25:59 [ 7] [ 10] [0320122349] +12:25:59 [ 11] [ 6] [944185] +12:25:59 [ 12] [ 6] [122349] +12:25:59 [ 13] [ 4] [0320] +12:25:59 [ 15] [ 4] [0320] +12:25:59 [ 18] [ 4] [6011] +12:25:59 [ 19] [ 3] [418] +12:25:59 [ 22] [ 3] [021] +12:25:59 [ 25] [ 2] [01] +12:25:59 [ 28] [ 9] [D00002000] +12:25:59 [ 32] [ 6] [668899] +12:25:59 [ 35] [ 32] [6213545000970115=491212017011395] +12:25:59 [ 37] [ 12] [507900123303] +12:25:59 [ 41] [ 8] [03020003] +12:25:59 [ 42] [ 15] [APT ] +12:25:59 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:25:59 [ 49] [ 3] [418] +12:25:59 [ 52] [ 16] [3B70B5F55EEBA13A] +12:25:59 ============================================================================ +12:25:59 + + +waiting on router queue for slot.... +12:25:59 Sending to : +12:25:59 ============================================================================ +12:25:59 ============================================================================ +12:25:59 Slot Id : <257> +12:25:59 Transaction Type : REQUEST +12:25:59 Received From : +12:25:59 ============================================================================ +12:25:59 FNo. Len. Field Value +12:25:59 ============================================================================ +12:25:59 [ 1] [ 4] [0200] +12:25:59 [ 2] [ 16] [6213545000970115] +12:25:59 [ 3] [ 6] [010000] +12:25:59 [ 4] [ 12] [000100000000] +12:25:59 [ 7] [ 10] [0320122349] +12:25:59 [ 11] [ 6] [944185] +12:25:59 [ 12] [ 6] [122349] +12:25:59 [ 13] [ 4] [0320] +12:25:59 [ 15] [ 4] [0320] +12:25:59 [ 18] [ 4] [6011] +12:25:59 [ 19] [ 3] [418] +12:25:59 [ 22] [ 3] [021] +12:25:59 [ 25] [ 2] [01] +12:25:59 [ 28] [ 9] [D00002000] +12:25:59 [ 32] [ 6] [668899] +12:25:59 [ 35] [ 32] [6213545000970115=491212017011395] +12:25:59 [ 37] [ 12] [507900123303] +12:25:59 [ 41] [ 8] [03020003] +12:25:59 [ 42] [ 15] [APT ] +12:25:59 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:25:59 [ 49] [ 3] [418] +12:25:59 [ 52] [ 16] [BE059BE018784AA9] +12:25:59 ============================================================================ +12:25:59 + + +waiting on router queue for slot.... +12:25:59 Sending to : <0> +12:25:59 ============================================================================ +12:26:01 ============================================================================ +12:26:01 Slot Id : <257> +12:26:01 Transaction Type : RESPONSE +12:26:01 Received From : +12:26:01 ============================================================================ +12:26:01 FNo. Len. Field Value +12:26:01 ============================================================================ +12:26:01 [ 1] [ 4] [0210] +12:26:01 [ 2] [ 16] [6213545000970115] +12:26:01 [ 3] [ 6] [010000] +12:26:01 [ 4] [ 12] [000100000000] +12:26:01 [ 7] [ 10] [0320122349] +12:26:01 [ 11] [ 6] [944185] +12:26:01 [ 12] [ 6] [122349] +12:26:01 [ 13] [ 4] [0320] +12:26:01 [ 15] [ 4] [0320] +12:26:01 [ 18] [ 4] [6011] +12:26:01 [ 19] [ 3] [418] +12:26:01 [ 32] [ 6] [668899] +12:26:01 [ 35] [ 32] [6213545000970115=491212017011395] +12:26:01 [ 37] [ 12] [507900123303] +12:26:01 [ 38] [ 6] [263630] +12:26:01 [ 39] [ 2] [00] +12:26:01 [ 41] [ 8] [03020003] +12:26:01 [ 49] [ 3] [418] +12:26:01 [ 54] [ 40] [0001418C0001211077080002418C000121107708] +12:26:01 ============================================================================ +12:26:01 Sending to : +12:26:01 ============================================================================ +12:26:01 + + +waiting on router queue for slot.... +12:26:02 ============================================================================ +12:26:02 Slot Id : <257> +12:26:02 Transaction Type : RESPONSE +12:26:02 Received From : +12:26:02 ============================================================================ +12:26:02 FNo. Len. Field Value +12:26:02 ============================================================================ +12:26:02 [ 1] [ 4] [0210] +12:26:02 [ 2] [ 16] [6213545000970115] +12:26:02 [ 3] [ 6] [010000] +12:26:02 [ 4] [ 12] [000100000000] +12:26:02 [ 7] [ 10] [0320122349] +12:26:02 [ 11] [ 6] [944185] +12:26:02 [ 12] [ 6] [122349] +12:26:02 [ 13] [ 4] [0320] +12:26:02 [ 15] [ 4] [0320] +12:26:02 [ 18] [ 4] [6011] +12:26:02 [ 19] [ 3] [418] +12:26:02 [ 32] [ 6] [668899] +12:26:02 [ 35] [ 32] [6213545000970115=491212017011395] +12:26:02 [ 37] [ 12] [507900123303] +12:26:02 [ 38] [ 6] [263630] +12:26:02 [ 39] [ 2] [00] +12:26:02 [ 41] [ 8] [03020003] +12:26:02 [ 49] [ 3] [418] +12:26:02 [ 54] [ 40] [0001418C0001211077080002418C000121107708] +12:26:02 ============================================================================ +12:26:02 Calculate Source COMM Id = 4 +12:26:02 ============================================================================ +12:26:02 + + +waiting on router queue for slot.... +12:26:03 ============================================================================ +12:26:03 Slot Id : <299> +12:26:03 Transaction Type : REQUEST +12:26:03 Received From : +12:26:03 ============================================================================ +12:26:03 FNo. Len. Field Value +12:26:03 ============================================================================ +12:26:03 [ 1] [ 4] [0200] +12:26:03 [ 2] [ 16] [6213545000005599] +12:26:03 [ 3] [ 6] [010000] +12:26:03 [ 4] [ 12] [000100000000] +12:26:03 [ 7] [ 10] [0320052509] +12:26:03 [ 11] [ 6] [269017] +12:26:03 [ 12] [ 6] [122509] +12:26:03 [ 13] [ 4] [0320] +12:26:03 [ 14] [ 4] [4912] +12:26:03 [ 15] [ 4] [0320] +12:26:03 [ 18] [ 4] [6011] +12:26:03 [ 19] [ 3] [418] +12:26:03 [ 22] [ 3] [021] +12:26:03 [ 25] [ 2] [01] +12:26:03 [ 28] [ 9] [D00002000] +12:26:03 [ 32] [ 6] [180893] +12:26:03 [ 35] [ 32] [6213545000005599=491212010559047] +12:26:03 [ 37] [ 12] [507905269017] +12:26:03 [ 41] [ 8] [0366SKTT] +12:26:03 [ 42] [ 15] [999999 ] +12:26:03 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:26:03 [ 49] [ 3] [418] +12:26:03 [ 52] [ 16] [F519B47F7DD24759] +12:26:03 ============================================================================ +12:26:03 + + +waiting on router queue for slot.... +12:26:03 Sending to : +12:26:03 ============================================================================ +12:26:03 Sending to : +12:26:03 ============================================================================ +12:26:03 ============================================================================ +12:26:03 Slot Id : <299> +12:26:03 Transaction Type : REQUEST +12:26:03 Received From : +12:26:03 ============================================================================ +12:26:03 FNo. Len. Field Value +12:26:03 ============================================================================ +12:26:03 [ 1] [ 4] [0200] +12:26:03 [ 2] [ 16] [6213545000005599] +12:26:03 [ 3] [ 6] [010000] +12:26:03 [ 4] [ 12] [000100000000] +12:26:03 [ 7] [ 10] [0320052509] +12:26:03 [ 11] [ 6] [269017] +12:26:03 [ 12] [ 6] [122509] +12:26:03 [ 13] [ 4] [0320] +12:26:03 [ 14] [ 4] [4912] +12:26:03 [ 15] [ 4] [0320] +12:26:03 [ 18] [ 4] [6011] +12:26:03 [ 19] [ 3] [418] +12:26:03 [ 22] [ 3] [021] +12:26:03 [ 25] [ 2] [01] +12:26:03 [ 28] [ 9] [D00002000] +12:26:03 [ 32] [ 6] [180893] +12:26:03 [ 35] [ 32] [6213545000005599=491212010559047] +12:26:03 [ 37] [ 12] [507905269017] +12:26:03 [ 41] [ 8] [0366SKTT] +12:26:03 [ 42] [ 15] [999999 ] +12:26:03 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:26:03 [ 49] [ 3] [418] +12:26:03 [ 52] [ 16] [F519B47F7DD24759] +12:26:03 ============================================================================ +12:26:03 + + +waiting on router queue for slot.... +12:26:03 Sending to : +12:26:03 ============================================================================ +12:26:03 ============================================================================ +12:26:03 Slot Id : <299> +12:26:03 Transaction Type : REQUEST +12:26:03 Received From : +12:26:03 ============================================================================ +12:26:03 FNo. Len. Field Value +12:26:03 ============================================================================ +12:26:03 [ 1] [ 4] [0200] +12:26:03 [ 2] [ 16] [6213545000005599] +12:26:03 [ 3] [ 6] [010000] +12:26:03 [ 4] [ 12] [000100000000] +12:26:03 [ 7] [ 10] [0320052509] +12:26:03 [ 11] [ 6] [269017] +12:26:03 [ 12] [ 6] [122509] +12:26:03 [ 13] [ 4] [0320] +12:26:03 [ 14] [ 4] [4912] +12:26:03 [ 15] [ 4] [0320] +12:26:03 [ 18] [ 4] [6011] +12:26:03 [ 19] [ 3] [418] +12:26:03 [ 22] [ 3] [021] +12:26:03 [ 25] [ 2] [01] +12:26:03 [ 28] [ 9] [D00002000] +12:26:03 [ 32] [ 6] [180893] +12:26:03 [ 35] [ 32] [6213545000005599=491212010559047] +12:26:03 [ 37] [ 12] [507905269017] +12:26:03 [ 41] [ 8] [0366SKTT] +12:26:03 [ 42] [ 15] [999999 ] +12:26:03 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:26:03 [ 49] [ 3] [418] +12:26:03 [ 52] [ 16] [4D3AD36F44BAE28F] +12:26:03 ============================================================================ +12:26:03 + + +waiting on router queue for slot.... +12:26:03 Sending to : <0> +12:26:03 ============================================================================ +12:26:04 ============================================================================ +12:26:04 Slot Id : <299> +12:26:04 Transaction Type : RESPONSE +12:26:04 Received From : +12:26:04 ============================================================================ +12:26:04 FNo. Len. Field Value +12:26:04 ============================================================================ +12:26:04 [ 1] [ 4] [0210] +12:26:04 [ 2] [ 16] [6213545000005599] +12:26:04 [ 3] [ 6] [010000] +12:26:04 [ 4] [ 12] [000100000000] +12:26:04 [ 7] [ 10] [0320052509] +12:26:04 [ 11] [ 6] [269017] +12:26:04 [ 12] [ 6] [122509] +12:26:04 [ 13] [ 4] [0320] +12:26:04 [ 15] [ 4] [0320] +12:26:04 [ 18] [ 4] [6011] +12:26:04 [ 19] [ 3] [418] +12:26:04 [ 32] [ 6] [180893] +12:26:04 [ 35] [ 32] [6213545000005599=491212010559047] +12:26:04 [ 37] [ 12] [507905269017] +12:26:04 [ 38] [ 6] [294481] +12:26:04 [ 39] [ 2] [00] +12:26:04 [ 41] [ 8] [0366SKTT] +12:26:04 [ 49] [ 3] [418] +12:26:04 [ 54] [ 40] [0001418C0003165868210002418C000316586821] +12:26:04 ============================================================================ +12:26:04 Sending to : +12:26:04 ============================================================================ +12:26:04 + + +waiting on router queue for slot.... +12:26:05 ============================================================================ +12:26:05 Slot Id : <299> +12:26:05 Transaction Type : RESPONSE +12:26:05 Received From : +12:26:05 ============================================================================ +12:26:05 FNo. Len. Field Value +12:26:05 ============================================================================ +12:26:05 [ 1] [ 4] [0210] +12:26:05 [ 2] [ 16] [6213545000005599] +12:26:05 [ 3] [ 6] [010000] +12:26:05 [ 4] [ 12] [000100000000] +12:26:05 [ 7] [ 10] [0320052509] +12:26:05 [ 11] [ 6] [269017] +12:26:05 [ 12] [ 6] [122509] +12:26:05 [ 13] [ 4] [0320] +12:26:05 [ 15] [ 4] [0320] +12:26:05 [ 18] [ 4] [6011] +12:26:05 [ 19] [ 3] [418] +12:26:05 [ 32] [ 6] [180893] +12:26:05 [ 35] [ 32] [6213545000005599=491212010559047] +12:26:05 [ 37] [ 12] [507905269017] +12:26:05 [ 38] [ 6] [294481] +12:26:05 [ 39] [ 2] [00] +12:26:05 [ 41] [ 8] [0366SKTT] +12:26:05 [ 49] [ 3] [418] +12:26:05 [ 54] [ 40] [0001418C0003165868210002418C000316586821] +12:26:05 ============================================================================ +12:26:05 Calculate Source COMM Id = 2 +12:26:05 ============================================================================ +12:26:05 + + +waiting on router queue for slot.... +12:26:17 ============================================================================ +12:26:17 Slot Id : <300> +12:26:17 Transaction Type : REQUEST +12:26:17 Received From : +12:26:17 ============================================================================ +12:26:17 FNo. Len. Field Value +12:26:17 ============================================================================ +12:26:17 [ 1] [ 4] [0800] +12:26:17 [ 7] [ 10] [0320052524] +12:26:17 [ 11] [ 6] [156303] +12:26:17 [ 70] [ 3] [301] +12:26:17 ============================================================================ +12:26:17 + + +waiting on router queue for slot.... +12:26:17 Sending to : +12:26:17 ============================================================================ +12:26:17 ============================================================================ +12:26:17 Slot Id : <300> +12:26:17 Transaction Type : RESPONSE +12:26:17 Received From : +12:26:17 ============================================================================ +12:26:17 FNo. Len. Field Value +12:26:17 ============================================================================ +12:26:17 [ 1] [ 4] [0810] +12:26:17 [ 7] [ 10] [0320052524] +12:26:17 [ 11] [ 6] [156303] +12:26:17 [ 39] [ 2] [00] +12:26:17 [ 70] [ 3] [301] +12:26:17 ============================================================================ +12:26:17 Calculate Source COMM Id = 2 +12:26:17 ============================================================================ +12:26:17 + + +waiting on router queue for slot.... +12:26:21 ============================================================================ +12:26:21 Slot Id : <295> +12:26:21 Transaction Type : REQUEST +12:26:21 Received From : +12:26:21 ============================================================================ +12:26:21 FNo. Len. Field Value +12:26:21 ============================================================================ +12:26:21 [ 1] [ 4] [0800] +12:26:21 [ 7] [ 10] [0320052412] +12:26:21 [ 11] [ 6] [021392] +12:26:21 [ 37] [ 12] [57912021392] +12:26:21 [ 70] [ 3] [301] +12:26:21 ============================================================================ +12:26:21 + + +waiting on router queue for slot.... +12:26:21 Sending to : +12:26:21 ============================================================================ +12:26:21 ============================================================================ +12:26:21 Slot Id : <295> +12:26:21 Transaction Type : RESPONSE +12:26:21 Received From : +12:26:21 ============================================================================ +12:26:21 FNo. Len. Field Value +12:26:21 ============================================================================ +12:26:21 [ 1] [ 4] [0810] +12:26:21 [ 7] [ 10] [0320052412] +12:26:21 [ 11] [ 6] [021392] +12:26:21 [ 37] [ 12] [579120213920] +12:26:21 [ 39] [ 2] [00] +12:26:21 [ 70] [ 3] [810] +12:26:21 ============================================================================ +12:26:21 Calculate Source COMM Id = 4 +12:26:21 ============================================================================ +12:26:21 + + +waiting on router queue for slot.... +12:26:27 ============================================================================ +12:26:27 Slot Id : <281> +12:26:27 Transaction Type : REQUEST +12:26:27 Received From : +12:26:27 ============================================================================ +12:26:27 FNo. Len. Field Value +12:26:27 ============================================================================ +12:26:27 [ 1] [ 4] [0200] +12:26:27 [ 2] [ 16] [6213543000179878] +12:26:27 [ 3] [ 6] [010000] +12:26:27 [ 4] [ 12] [000100000000] +12:26:27 [ 7] [ 10] [0320122417] +12:26:27 [ 11] [ 6] [944211] +12:26:27 [ 12] [ 6] [122417] +12:26:27 [ 13] [ 4] [0320] +12:26:27 [ 15] [ 4] [0320] +12:26:27 [ 18] [ 4] [6011] +12:26:27 [ 19] [ 3] [418] +12:26:27 [ 22] [ 3] [021] +12:26:27 [ 25] [ 2] [01] +12:26:27 [ 28] [ 9] [D00002000] +12:26:27 [ 32] [ 6] [668899] +12:26:27 [ 35] [ 32] [6213543000179878=491212017987066] +12:26:27 [ 37] [ 12] [507902150970] +12:26:27 [ 41] [ 8] [03020025] +12:26:27 [ 42] [ 15] [APT ] +12:26:27 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:26:27 [ 49] [ 3] [418] +12:26:27 [ 52] [ 16] [453732D310E520DC] +12:26:27 ============================================================================ +12:26:27 + + +waiting on router queue for slot.... +12:26:27 Sending to : +12:26:27 ============================================================================ +12:26:27 Sending to : +12:26:27 ============================================================================ +12:26:27 ============================================================================ +12:26:27 Slot Id : <281> +12:26:27 Transaction Type : REQUEST +12:26:27 Received From : +12:26:27 ============================================================================ +12:26:27 FNo. Len. Field Value +12:26:27 ============================================================================ +12:26:27 [ 1] [ 4] [0200] +12:26:27 [ 2] [ 16] [6213543000179878] +12:26:27 [ 3] [ 6] [010000] +12:26:27 [ 4] [ 12] [000100000000] +12:26:27 [ 7] [ 10] [0320122417] +12:26:27 [ 11] [ 6] [944211] +12:26:27 [ 12] [ 6] [122417] +12:26:27 [ 13] [ 4] [0320] +12:26:27 [ 15] [ 4] [0320] +12:26:27 [ 18] [ 4] [6011] +12:26:27 [ 19] [ 3] [418] +12:26:27 [ 22] [ 3] [021] +12:26:27 [ 25] [ 2] [01] +12:26:27 [ 28] [ 9] [D00002000] +12:26:27 [ 32] [ 6] [668899] +12:26:27 [ 35] [ 32] [6213543000179878=491212017987066] +12:26:27 [ 37] [ 12] [507902150970] +12:26:27 [ 41] [ 8] [03020025] +12:26:27 [ 42] [ 15] [APT ] +12:26:27 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:26:27 [ 49] [ 3] [418] +12:26:27 [ 52] [ 16] [453732D310E520DC] +12:26:27 ============================================================================ +12:26:27 + + +waiting on router queue for slot.... +12:26:27 Sending to : +12:26:27 ============================================================================ +12:26:27 ============================================================================ +12:26:27 Slot Id : <281> +12:26:27 Transaction Type : REQUEST +12:26:27 Received From : +12:26:27 ============================================================================ +12:26:27 FNo. Len. Field Value +12:26:27 ============================================================================ +12:26:27 [ 1] [ 4] [0200] +12:26:27 [ 2] [ 16] [6213543000179878] +12:26:27 [ 3] [ 6] [010000] +12:26:27 [ 4] [ 12] [000100000000] +12:26:27 [ 7] [ 10] [0320122417] +12:26:27 [ 11] [ 6] [944211] +12:26:27 [ 12] [ 6] [122417] +12:26:27 [ 13] [ 4] [0320] +12:26:27 [ 15] [ 4] [0320] +12:26:27 [ 18] [ 4] [6011] +12:26:27 [ 19] [ 3] [418] +12:26:27 [ 22] [ 3] [021] +12:26:27 [ 25] [ 2] [01] +12:26:27 [ 28] [ 9] [D00002000] +12:26:27 [ 32] [ 6] [668899] +12:26:27 [ 35] [ 32] [6213543000179878=491212017987066] +12:26:27 [ 37] [ 12] [507902150970] +12:26:27 [ 41] [ 8] [03020025] +12:26:27 [ 42] [ 15] [APT ] +12:26:27 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:26:27 [ 49] [ 3] [418] +12:26:27 [ 52] [ 16] [8AEE07F27C6D3926] +12:26:27 ============================================================================ +12:26:27 + + +waiting on router queue for slot.... +12:26:27 Sending to : <0> +12:26:27 ============================================================================ +12:26:28 ============================================================================ +12:26:28 Slot Id : <281> +12:26:28 Transaction Type : RESPONSE +12:26:28 Received From : +12:26:28 ============================================================================ +12:26:28 FNo. Len. Field Value +12:26:28 ============================================================================ +12:26:28 [ 1] [ 4] [0210] +12:26:28 [ 2] [ 16] [6213543000179878] +12:26:28 [ 3] [ 6] [010000] +12:26:28 [ 4] [ 12] [000100000000] +12:26:28 [ 7] [ 10] [0320122417] +12:26:28 [ 11] [ 6] [944211] +12:26:28 [ 12] [ 6] [122417] +12:26:28 [ 13] [ 4] [0320] +12:26:28 [ 15] [ 4] [0320] +12:26:28 [ 18] [ 4] [6011] +12:26:28 [ 19] [ 3] [418] +12:26:28 [ 32] [ 6] [668899] +12:26:28 [ 35] [ 32] [6213543000179878=491212017987066] +12:26:28 [ 37] [ 12] [507902150970] +12:26:28 [ 38] [ 6] [217672] +12:26:28 [ 39] [ 2] [00] +12:26:28 [ 41] [ 8] [03020025] +12:26:28 [ 49] [ 3] [418] +12:26:28 [ 54] [ 40] [0001418C0007316568850002418C000731656885] +12:26:28 ============================================================================ +12:26:28 Sending to : +12:26:28 ============================================================================ +12:26:28 + + +waiting on router queue for slot.... +12:26:29 ============================================================================ +12:26:29 Slot Id : <281> +12:26:29 Transaction Type : RESPONSE +12:26:29 Received From : +12:26:29 ============================================================================ +12:26:29 FNo. Len. Field Value +12:26:29 ============================================================================ +12:26:29 [ 1] [ 4] [0210] +12:26:29 [ 2] [ 16] [6213543000179878] +12:26:29 [ 3] [ 6] [010000] +12:26:29 [ 4] [ 12] [000100000000] +12:26:29 [ 7] [ 10] [0320122417] +12:26:29 [ 11] [ 6] [944211] +12:26:29 [ 12] [ 6] [122417] +12:26:29 [ 13] [ 4] [0320] +12:26:29 [ 15] [ 4] [0320] +12:26:29 [ 18] [ 4] [6011] +12:26:29 [ 19] [ 3] [418] +12:26:29 [ 32] [ 6] [668899] +12:26:29 [ 35] [ 32] [6213543000179878=491212017987066] +12:26:29 [ 37] [ 12] [507902150970] +12:26:29 [ 38] [ 6] [217672] +12:26:29 [ 39] [ 2] [00] +12:26:29 [ 41] [ 8] [03020025] +12:26:29 [ 49] [ 3] [418] +12:26:29 [ 54] [ 40] [0001418C0007316568850002418C000731656885] +12:26:29 ============================================================================ +12:26:29 Calculate Source COMM Id = 4 +12:26:29 ============================================================================ +12:26:29 + + +waiting on router queue for slot.... +12:26:32 ============================================================================ +12:26:32 Slot Id : <296> +12:26:32 Transaction Type : REQUEST +12:26:32 Received From : +12:26:32 ============================================================================ +12:26:32 FNo. Len. Field Value +12:26:32 ============================================================================ +12:26:32 [ 1] [ 4] [0800] +12:26:32 [ 7] [ 10] [0320052540] +12:26:32 [ 11] [ 6] [156304] +12:26:32 [ 70] [ 3] [301] +12:26:32 ============================================================================ +12:26:32 + + +waiting on router queue for slot.... +12:26:32 Sending to : +12:26:32 ============================================================================ +12:26:32 ============================================================================ +12:26:32 Slot Id : <296> +12:26:32 Transaction Type : RESPONSE +12:26:32 Received From : +12:26:32 ============================================================================ +12:26:32 FNo. Len. Field Value +12:26:32 ============================================================================ +12:26:32 [ 1] [ 4] [0810] +12:26:32 [ 7] [ 10] [0320052540] +12:26:32 [ 11] [ 6] [156304] +12:26:32 [ 39] [ 2] [00] +12:26:32 [ 70] [ 3] [301] +12:26:32 ============================================================================ +12:26:32 Calculate Source COMM Id = 2 +12:26:32 ============================================================================ +12:26:32 + + +waiting on router queue for slot.... +12:26:33 ============================================================================ +12:26:33 Slot Id : <308> +12:26:33 Transaction Type : REQUEST +12:26:33 Received From : +12:26:33 ============================================================================ +12:26:33 FNo. Len. Field Value +12:26:33 ============================================================================ +12:26:33 [ 1] [ 4] [0200] +12:26:33 [ 2] [ 16] [6213545000801831] +12:26:33 [ 3] [ 6] [010000] +12:26:33 [ 4] [ 12] [000010000000] +12:26:33 [ 7] [ 10] [0320122424] +12:26:33 [ 11] [ 6] [944218] +12:26:33 [ 12] [ 6] [122424] +12:26:33 [ 13] [ 4] [0320] +12:26:33 [ 15] [ 4] [0320] +12:26:33 [ 18] [ 4] [6011] +12:26:33 [ 19] [ 3] [418] +12:26:33 [ 22] [ 3] [021] +12:26:33 [ 25] [ 2] [01] +12:26:33 [ 28] [ 9] [D00002000] +12:26:33 [ 32] [ 6] [668899] +12:26:33 [ 35] [ 32] [6213545000801831=491212010183523] +12:26:33 [ 37] [ 12] [507900168581] +12:26:33 [ 41] [ 8] [03020007] +12:26:33 [ 42] [ 15] [APT ] +12:26:33 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +12:26:33 [ 49] [ 3] [418] +12:26:33 [ 52] [ 16] [C10B05BC15568738] +12:26:33 ============================================================================ +12:26:33 + + +waiting on router queue for slot.... +12:26:33 Sending to : +12:26:33 ============================================================================ +12:26:33 Sending to : +12:26:33 ============================================================================ +12:26:34 ============================================================================ +12:26:34 Slot Id : <308> +12:26:34 Transaction Type : REQUEST +12:26:34 Received From : +12:26:34 ============================================================================ +12:26:34 FNo. Len. Field Value +12:26:34 ============================================================================ +12:26:34 [ 1] [ 4] [0200] +12:26:34 [ 2] [ 16] [6213545000801831] +12:26:34 [ 3] [ 6] [010000] +12:26:34 [ 4] [ 12] [000010000000] +12:26:34 [ 7] [ 10] [0320122424] +12:26:34 [ 11] [ 6] [944218] +12:26:34 [ 12] [ 6] [122424] +12:26:34 [ 13] [ 4] [0320] +12:26:34 [ 15] [ 4] [0320] +12:26:34 [ 18] [ 4] [6011] +12:26:34 [ 19] [ 3] [418] +12:26:34 [ 22] [ 3] [021] +12:26:34 [ 25] [ 2] [01] +12:26:34 [ 28] [ 9] [D00002000] +12:26:34 [ 32] [ 6] [668899] +12:26:34 [ 35] [ 32] [6213545000801831=491212010183523] +12:26:34 [ 37] [ 12] [507900168581] +12:26:34 [ 41] [ 8] [03020007] +12:26:34 [ 42] [ 15] [APT ] +12:26:34 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +12:26:34 [ 49] [ 3] [418] +12:26:34 [ 52] [ 16] [C10B05BC15568738] +12:26:34 ============================================================================ +12:26:34 + + +waiting on router queue for slot.... +12:26:34 Sending to : +12:26:34 ============================================================================ +12:26:34 ============================================================================ +12:26:34 Slot Id : <308> +12:26:34 Transaction Type : REQUEST +12:26:34 Received From : +12:26:34 ============================================================================ +12:26:34 FNo. Len. Field Value +12:26:34 ============================================================================ +12:26:34 [ 1] [ 4] [0200] +12:26:34 [ 2] [ 16] [6213545000801831] +12:26:34 [ 3] [ 6] [010000] +12:26:34 [ 4] [ 12] [000010000000] +12:26:34 [ 7] [ 10] [0320122424] +12:26:34 [ 11] [ 6] [944218] +12:26:34 [ 12] [ 6] [122424] +12:26:34 [ 13] [ 4] [0320] +12:26:34 [ 15] [ 4] [0320] +12:26:34 [ 18] [ 4] [6011] +12:26:34 [ 19] [ 3] [418] +12:26:34 [ 22] [ 3] [021] +12:26:34 [ 25] [ 2] [01] +12:26:34 [ 28] [ 9] [D00002000] +12:26:34 [ 32] [ 6] [668899] +12:26:34 [ 35] [ 32] [6213545000801831=491212010183523] +12:26:34 [ 37] [ 12] [507900168581] +12:26:34 [ 41] [ 8] [03020007] +12:26:34 [ 42] [ 15] [APT ] +12:26:34 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +12:26:34 [ 49] [ 3] [418] +12:26:34 [ 52] [ 16] [1A7B24DD2712005D] +12:26:34 ============================================================================ +12:26:34 + + +waiting on router queue for slot.... +12:26:34 Sending to : <0> +12:26:34 ============================================================================ +12:26:34 ============================================================================ +12:26:34 Slot Id : <308> +12:26:34 Transaction Type : RESPONSE +12:26:34 Received From : +12:26:34 ============================================================================ +12:26:34 FNo. Len. Field Value +12:26:34 ============================================================================ +12:26:34 [ 1] [ 4] [0210] +12:26:34 [ 2] [ 16] [6213545000801831] +12:26:34 [ 3] [ 6] [010000] +12:26:34 [ 4] [ 12] [000010000000] +12:26:34 [ 7] [ 10] [0320122424] +12:26:34 [ 11] [ 6] [944218] +12:26:34 [ 12] [ 6] [122424] +12:26:34 [ 13] [ 4] [0320] +12:26:34 [ 15] [ 4] [0320] +12:26:34 [ 18] [ 4] [6011] +12:26:34 [ 19] [ 3] [418] +12:26:34 [ 32] [ 6] [668899] +12:26:34 [ 35] [ 32] [6213545000801831=491212010183523] +12:26:34 [ 37] [ 12] [507900168581] +12:26:34 [ 38] [ 6] [865515] +12:26:34 [ 39] [ 2] [00] +12:26:34 [ 41] [ 8] [03020007] +12:26:34 [ 49] [ 3] [418] +12:26:34 [ 54] [ 40] [0001418C0014715252940002418C001471525294] +12:26:34 ============================================================================ +12:26:34 Sending to : +12:26:34 ============================================================================ +12:26:34 + + +waiting on router queue for slot.... +12:26:36 ============================================================================ +12:26:36 Slot Id : <308> +12:26:36 Transaction Type : RESPONSE +12:26:36 Received From : +12:26:36 ============================================================================ +12:26:36 FNo. Len. Field Value +12:26:36 ============================================================================ +12:26:36 [ 1] [ 4] [0210] +12:26:36 [ 2] [ 16] [6213545000801831] +12:26:36 [ 3] [ 6] [010000] +12:26:36 [ 4] [ 12] [000010000000] +12:26:36 [ 7] [ 10] [0320122424] +12:26:36 [ 11] [ 6] [944218] +12:26:36 [ 12] [ 6] [122424] +12:26:36 [ 13] [ 4] [0320] +12:26:36 [ 15] [ 4] [0320] +12:26:36 [ 18] [ 4] [6011] +12:26:36 [ 19] [ 3] [418] +12:26:36 [ 32] [ 6] [668899] +12:26:36 [ 35] [ 32] [6213545000801831=491212010183523] +12:26:36 [ 37] [ 12] [507900168581] +12:26:36 [ 38] [ 6] [865515] +12:26:36 [ 39] [ 2] [00] +12:26:36 [ 41] [ 8] [03020007] +12:26:36 [ 49] [ 3] [418] +12:26:36 [ 54] [ 40] [0001418C0014715252940002418C001471525294] +12:26:36 ============================================================================ +12:26:36 Calculate Source COMM Id = 4 +12:26:36 ============================================================================ +12:26:36 + + +waiting on router queue for slot.... +12:26:42 ============================================================================ +12:26:42 Slot Id : <286> +12:26:42 Transaction Type : REQUEST +12:26:42 Received From : +12:26:42 ============================================================================ +12:26:42 FNo. Len. Field Value +12:26:42 ============================================================================ +12:26:42 [ 1] [ 4] [0800] +12:26:42 [ 2] [ 5] [02531] +12:26:42 [ 3] [ 6] [579128] +12:26:42 [ 7] [ 10] [0320052642] +12:26:42 [ 11] [ 6] [807134] +12:26:42 [ 15] [ 10] [0320052642] +12:26:42 [ 37] [ 11] [57912807134] +12:26:42 [ 70] [ 3] [001] +12:26:42 ============================================================================ +12:26:42 + + +waiting on router queue for slot.... +12:26:42 ============================================================================ +12:26:42 Slot Id : <286> +12:26:42 Transaction Type : RESPONSE +12:26:42 Received From : +12:26:42 ============================================================================ +12:26:42 FNo. Len. Field Value +12:26:42 ============================================================================ +12:26:42 [ 1] [ 4] [0810] +12:26:42 [ 7] [ 10] [0320052642] +12:26:42 [ 11] [ 6] [807134] +12:26:42 [ 15] [ 4] [0320] +12:26:42 [ 37] [ 12] [57912807134] +12:26:42 [ 39] [ 2] [00] +12:26:42 [ 70] [ 3] [001] +12:26:42 ============================================================================ +12:26:42 Sending to : +12:26:42 ============================================================================ +12:26:42 + + +waiting on router queue for slot.... +12:26:44 ============================================================================ +12:26:44 Slot Id : <316> +12:26:44 Transaction Type : REQUEST +12:26:44 Received From : +12:26:44 ============================================================================ +12:26:44 FNo. Len. Field Value +12:26:44 ============================================================================ +12:26:44 [ 1] [ 4] [0800] +12:26:44 [ 7] [ 10] [0320052552] +12:26:44 [ 11] [ 6] [156305] +12:26:44 [ 70] [ 3] [301] +12:26:44 ============================================================================ +12:26:44 + + +waiting on router queue for slot.... +12:26:44 Sending to : +12:26:44 ============================================================================ +12:26:44 ============================================================================ +12:26:44 Slot Id : <316> +12:26:44 Transaction Type : RESPONSE +12:26:44 Received From : +12:26:44 ============================================================================ +12:26:44 FNo. Len. Field Value +12:26:44 ============================================================================ +12:26:44 [ 1] [ 4] [0810] +12:26:44 [ 7] [ 10] [0320052552] +12:26:44 [ 11] [ 6] [156305] +12:26:44 [ 39] [ 2] [00] +12:26:44 [ 70] [ 3] [301] +12:26:44 ============================================================================ +12:26:44 Calculate Source COMM Id = 2 +12:26:44 ============================================================================ +12:26:44 + + +waiting on router queue for slot.... +12:26:46 ============================================================================ +12:26:46 Slot Id : <283> +12:26:46 Transaction Type : REQUEST +12:26:46 Received From : +12:26:46 ============================================================================ +12:26:46 FNo. Len. Field Value +12:26:46 ============================================================================ +12:26:46 [ 1] [ 4] [0200] +12:26:46 [ 2] [ 16] [6213545000005599] +12:26:46 [ 3] [ 6] [010000] +12:26:46 [ 4] [ 12] [000100000000] +12:26:46 [ 7] [ 10] [0320052552] +12:26:46 [ 11] [ 6] [269024] +12:26:46 [ 12] [ 6] [122552] +12:26:46 [ 13] [ 4] [0320] +12:26:46 [ 14] [ 4] [4912] +12:26:46 [ 15] [ 4] [0320] +12:26:46 [ 18] [ 4] [6011] +12:26:46 [ 19] [ 3] [418] +12:26:46 [ 22] [ 3] [021] +12:26:46 [ 25] [ 2] [01] +12:26:46 [ 28] [ 9] [D00002000] +12:26:46 [ 32] [ 6] [180893] +12:26:46 [ 35] [ 32] [6213545000005599=491212010559047] +12:26:46 [ 37] [ 12] [507905269024] +12:26:46 [ 41] [ 8] [0366SKTT] +12:26:46 [ 42] [ 15] [999999 ] +12:26:46 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:26:46 [ 49] [ 3] [418] +12:26:46 [ 52] [ 16] [F519B47F7DD24759] +12:26:46 ============================================================================ +12:26:46 + + +waiting on router queue for slot.... +12:26:46 Sending to : +12:26:46 ============================================================================ +12:26:46 Sending to : +12:26:46 ============================================================================ +12:26:46 ============================================================================ +12:26:46 Slot Id : <283> +12:26:46 Transaction Type : REQUEST +12:26:46 Received From : +12:26:46 ============================================================================ +12:26:46 FNo. Len. Field Value +12:26:46 ============================================================================ +12:26:46 [ 1] [ 4] [0200] +12:26:46 [ 2] [ 16] [6213545000005599] +12:26:46 [ 3] [ 6] [010000] +12:26:46 [ 4] [ 12] [000100000000] +12:26:46 [ 7] [ 10] [0320052552] +12:26:46 [ 11] [ 6] [269024] +12:26:46 [ 12] [ 6] [122552] +12:26:46 [ 13] [ 4] [0320] +12:26:46 [ 14] [ 4] [4912] +12:26:46 [ 15] [ 4] [0320] +12:26:46 [ 18] [ 4] [6011] +12:26:46 [ 19] [ 3] [418] +12:26:46 [ 22] [ 3] [021] +12:26:46 [ 25] [ 2] [01] +12:26:46 [ 28] [ 9] [D00002000] +12:26:46 [ 32] [ 6] [180893] +12:26:46 [ 35] [ 32] [6213545000005599=491212010559047] +12:26:46 [ 37] [ 12] [507905269024] +12:26:46 [ 41] [ 8] [0366SKTT] +12:26:46 [ 42] [ 15] [999999 ] +12:26:46 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:26:46 [ 49] [ 3] [418] +12:26:46 [ 52] [ 16] [F519B47F7DD24759] +12:26:46 ============================================================================ +12:26:46 + + +waiting on router queue for slot.... +12:26:46 Sending to : +12:26:46 ============================================================================ +12:26:46 ============================================================================ +12:26:46 Slot Id : <283> +12:26:46 Transaction Type : REQUEST +12:26:46 Received From : +12:26:46 ============================================================================ +12:26:46 FNo. Len. Field Value +12:26:46 ============================================================================ +12:26:46 [ 1] [ 4] [0200] +12:26:46 [ 2] [ 16] [6213545000005599] +12:26:46 [ 3] [ 6] [010000] +12:26:46 [ 4] [ 12] [000100000000] +12:26:46 [ 7] [ 10] [0320052552] +12:26:46 [ 11] [ 6] [269024] +12:26:46 [ 12] [ 6] [122552] +12:26:46 [ 13] [ 4] [0320] +12:26:46 [ 14] [ 4] [4912] +12:26:46 [ 15] [ 4] [0320] +12:26:46 [ 18] [ 4] [6011] +12:26:46 [ 19] [ 3] [418] +12:26:46 [ 22] [ 3] [021] +12:26:46 [ 25] [ 2] [01] +12:26:46 [ 28] [ 9] [D00002000] +12:26:46 [ 32] [ 6] [180893] +12:26:46 [ 35] [ 32] [6213545000005599=491212010559047] +12:26:46 [ 37] [ 12] [507905269024] +12:26:46 [ 41] [ 8] [0366SKTT] +12:26:46 [ 42] [ 15] [999999 ] +12:26:46 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +12:26:46 [ 49] [ 3] [418] +12:26:46 [ 52] [ 16] [4D3AD36F44BAE28F] +12:26:46 ============================================================================ +12:26:46 + + +waiting on router queue for slot.... +12:26:46 Sending to : <0> +12:26:46 ============================================================================ +12:26:47 ============================================================================ +12:26:47 Slot Id : <283> +12:26:47 Transaction Type : RESPONSE +12:26:47 Received From : +12:26:47 ============================================================================ +12:26:47 FNo. Len. Field Value +12:26:47 ============================================================================ +12:26:47 [ 1] [ 4] [0210] +12:26:47 [ 2] [ 16] [6213545000005599] +12:26:47 [ 3] [ 6] [010000] +12:26:47 [ 4] [ 12] [000100000000] +12:26:47 [ 7] [ 10] [0320052552] +12:26:47 [ 11] [ 6] [269024] +12:26:47 [ 12] [ 6] [122552] +12:26:47 [ 13] [ 4] [0320] +12:26:47 [ 15] [ 4] [0320] +12:26:47 [ 18] [ 4] [6011] +12:26:47 [ 19] [ 3] [418] +12:26:47 [ 32] [ 6] [180893] +12:26:47 [ 35] [ 32] [6213545000005599=491212010559047] +12:26:47 [ 37] [ 12] [507905269024] +12:26:47 [ 38] [ 6] [146729] +12:26:47 [ 39] [ 2] [00] +12:26:47 [ 41] [ 8] [0366SKTT] +12:26:47 [ 49] [ 3] [418] +12:26:47 [ 54] [ 40] [0001418C0002163868210002418C000216386821] +12:26:47 ============================================================================ +12:26:47 Sending to : +12:26:47 ============================================================================ +12:26:47 + + +waiting on router queue for slot.... +12:26:48 ============================================================================ +12:26:48 Slot Id : <283> +12:26:48 Transaction Type : RESPONSE +12:26:48 Received From : +12:26:48 ============================================================================ +12:26:48 FNo. Len. Field Value +12:26:48 ============================================================================ +12:26:48 [ 1] [ 4] [0210] +12:26:48 [ 2] [ 16] [6213545000005599] +12:26:48 [ 3] [ 6] [010000] +12:26:48 [ 4] [ 12] [000100000000] +12:26:48 [ 7] [ 10] [0320052552] +12:26:48 [ 11] [ 6] [269024] +12:26:48 [ 12] [ 6] [122552] +12:26:48 [ 13] [ 4] [0320] +12:26:48 [ 15] [ 4] [0320] +12:26:48 [ 18] [ 4] [6011] +12:26:48 [ 19] [ 3] [418] +12:26:48 [ 32] [ 6] [180893] +12:26:48 [ 35] [ 32] [6213545000005599=491212010559047] +12:26:48 [ 37] [ 12] [507905269024] +12:26:48 [ 38] [ 6] [146729] +12:26:48 [ 39] [ 2] [00] +12:26:48 [ 41] [ 8] [0366SKTT] +12:26:48 [ 49] [ 3] [418] +12:26:48 [ 54] [ 40] [0001418C0002163868210002418C000216386821] +12:26:48 ============================================================================ +12:26:48 Calculate Source COMM Id = 2 +12:26:48 ============================================================================ +12:26:48 + + +waiting on router queue for slot.... +12:27:01 ============================================================================ +12:27:01 Slot Id : <311> +12:27:01 Transaction Type : REQUEST +12:27:01 Received From : +12:27:01 ============================================================================ +12:27:01 FNo. Len. Field Value +12:27:01 ============================================================================ +12:27:01 [ 1] [ 4] [0800] +12:27:01 [ 7] [ 10] [0320052608] +12:27:01 [ 11] [ 6] [156306] +12:27:01 [ 70] [ 3] [301] +12:27:01 ============================================================================ +12:27:01 + + +waiting on router queue for slot.... +12:27:01 Sending to : +12:27:01 ============================================================================ +12:27:01 ============================================================================ +12:27:01 Slot Id : <311> +12:27:01 Transaction Type : RESPONSE +12:27:01 Received From : +12:27:01 ============================================================================ +12:27:01 FNo. Len. Field Value +12:27:01 ============================================================================ +12:27:01 [ 1] [ 4] [0810] +12:27:01 [ 7] [ 10] [0320052608] +12:27:01 [ 11] [ 6] [156306] +12:27:01 [ 39] [ 2] [00] +12:27:01 [ 70] [ 3] [301] +12:27:01 ============================================================================ +12:27:01 Calculate Source COMM Id = 2 +12:27:01 ============================================================================ +12:27:01 + + +waiting on router queue for slot.... +12:27:04 ============================================================================ +12:27:04 Slot Id : <312> +12:27:04 Transaction Type : REQUEST +12:27:04 Received From : +12:27:04 ============================================================================ +12:27:04 FNo. Len. Field Value +12:27:04 ============================================================================ +12:27:04 [ 1] [ 4] [0200] +12:27:04 [ 2] [ 16] [6688990040163469] +12:27:04 [ 3] [ 6] [010000] +12:27:04 [ 4] [ 12] [000010000000] +12:27:04 [ 7] [ 10] [0320052610] +12:27:04 [ 11] [ 6] [269026] +12:27:04 [ 12] [ 6] [122610] +12:27:04 [ 13] [ 4] [0320] +12:27:04 [ 14] [ 4] [9805] +12:27:04 [ 15] [ 4] [0320] +12:27:04 [ 18] [ 4] [6011] +12:27:04 [ 19] [ 3] [418] +12:27:04 [ 22] [ 3] [021] +12:27:04 [ 25] [ 2] [01] +12:27:04 [ 28] [ 9] [D00002000] +12:27:04 [ 32] [ 6] [180893] +12:27:04 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:27:04 [ 37] [ 12] [507905269026] +12:27:04 [ 41] [ 8] [0466PSLB] +12:27:04 [ 42] [ 15] [999999 ] +12:27:04 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +12:27:04 [ 49] [ 3] [418] +12:27:04 [ 52] [ 16] [9A3DC646B97D905A] +12:27:04 ============================================================================ +12:27:04 + + +waiting on router queue for slot.... +12:27:04 Sending to : +12:27:04 ============================================================================ +12:27:04 Sending to : +12:27:04 ============================================================================ +12:27:04 ============================================================================ +12:27:04 Slot Id : <312> +12:27:04 Transaction Type : REQUEST +12:27:04 Received From : +12:27:04 ============================================================================ +12:27:04 FNo. Len. Field Value +12:27:04 ============================================================================ +12:27:04 [ 1] [ 4] [0200] +12:27:04 [ 2] [ 16] [6688990040163469] +12:27:04 [ 3] [ 6] [010000] +12:27:04 [ 4] [ 12] [000010000000] +12:27:04 [ 7] [ 10] [0320052610] +12:27:04 [ 11] [ 6] [269026] +12:27:04 [ 12] [ 6] [122610] +12:27:04 [ 13] [ 4] [0320] +12:27:04 [ 14] [ 4] [9805] +12:27:04 [ 15] [ 4] [0320] +12:27:04 [ 18] [ 4] [6011] +12:27:04 [ 19] [ 3] [418] +12:27:04 [ 22] [ 3] [021] +12:27:04 [ 25] [ 2] [01] +12:27:04 [ 28] [ 9] [D00002000] +12:27:04 [ 32] [ 6] [180893] +12:27:04 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:27:04 [ 37] [ 12] [507905269026] +12:27:04 [ 41] [ 8] [0466PSLB] +12:27:04 [ 42] [ 15] [999999 ] +12:27:04 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +12:27:04 [ 49] [ 3] [418] +12:27:04 [ 52] [ 16] [9A3DC646B97D905A] +12:27:04 ============================================================================ +12:27:04 + + +waiting on router queue for slot.... +12:27:04 Sending to : +12:27:04 ============================================================================ +12:27:04 ============================================================================ +12:27:04 Slot Id : <312> +12:27:04 Transaction Type : REQUEST +12:27:04 Received From : +12:27:04 ============================================================================ +12:27:04 FNo. Len. Field Value +12:27:04 ============================================================================ +12:27:04 [ 1] [ 4] [0200] +12:27:04 [ 2] [ 16] [6688990040163469] +12:27:04 [ 3] [ 6] [010000] +12:27:04 [ 4] [ 12] [000010000000] +12:27:04 [ 7] [ 10] [0320052610] +12:27:04 [ 11] [ 6] [269026] +12:27:04 [ 12] [ 6] [122610] +12:27:04 [ 13] [ 4] [0320] +12:27:04 [ 14] [ 4] [9805] +12:27:04 [ 15] [ 4] [0320] +12:27:04 [ 18] [ 4] [6011] +12:27:04 [ 19] [ 3] [418] +12:27:04 [ 22] [ 3] [021] +12:27:04 [ 25] [ 2] [01] +12:27:04 [ 28] [ 9] [D00002000] +12:27:04 [ 32] [ 6] [180893] +12:27:04 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:27:04 [ 37] [ 12] [507905269026] +12:27:04 [ 41] [ 8] [0466PSLB] +12:27:04 [ 42] [ 15] [999999 ] +12:27:04 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +12:27:04 [ 49] [ 3] [418] +12:27:04 [ 52] [ 16] [0230B5288F9B27CC] +12:27:04 ============================================================================ +12:27:04 + + +waiting on router queue for slot.... +12:27:04 Sending to : <0> +12:27:04 ============================================================================ +12:27:04 ============================================================================ +12:27:04 Slot Id : <312> +12:27:04 Transaction Type : RESPONSE +12:27:04 Received From : +12:27:04 ============================================================================ +12:27:04 FNo. Len. Field Value +12:27:04 ============================================================================ +12:27:04 [ 1] [ 4] [0210] +12:27:04 [ 2] [ 16] [6688990040163469] +12:27:04 [ 3] [ 6] [010000] +12:27:04 [ 4] [ 12] [000010000000] +12:27:04 [ 7] [ 10] [0320052610] +12:27:04 [ 11] [ 6] [269026] +12:27:04 [ 12] [ 6] [122610] +12:27:04 [ 13] [ 4] [0320] +12:27:04 [ 15] [ 4] [0320] +12:27:04 [ 18] [ 4] [6011] +12:27:04 [ 19] [ 3] [418] +12:27:04 [ 22] [ 3] [021] +12:27:04 [ 32] [ 6] [180893] +12:27:04 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:27:04 [ 37] [ 12] [507905269026] +12:27:04 [ 39] [ 2] [14] +12:27:04 [ 41] [ 8] [0466PSLB] +12:27:04 [ 49] [ 3] [418] +12:27:04 ============================================================================ +12:27:04 Sending to : +12:27:04 ============================================================================ +12:27:04 + + +waiting on router queue for slot.... +12:27:06 ============================================================================ +12:27:06 Slot Id : <312> +12:27:06 Transaction Type : RESPONSE +12:27:06 Received From : +12:27:06 ============================================================================ +12:27:06 FNo. Len. Field Value +12:27:06 ============================================================================ +12:27:06 [ 1] [ 4] [0210] +12:27:06 [ 2] [ 16] [6688990040163469] +12:27:06 [ 3] [ 6] [010000] +12:27:06 [ 4] [ 12] [000010000000] +12:27:06 [ 7] [ 10] [0320052610] +12:27:06 [ 11] [ 6] [269026] +12:27:06 [ 12] [ 6] [122610] +12:27:06 [ 13] [ 4] [0320] +12:27:06 [ 15] [ 4] [0320] +12:27:06 [ 18] [ 4] [6011] +12:27:06 [ 19] [ 3] [418] +12:27:06 [ 22] [ 3] [021] +12:27:06 [ 32] [ 6] [180893] +12:27:06 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:27:06 [ 37] [ 12] [507905269026] +12:27:06 [ 39] [ 2] [14] +12:27:06 [ 41] [ 8] [0466PSLB] +12:27:06 [ 49] [ 3] [418] +12:27:06 ============================================================================ +12:27:06 Calculate Source COMM Id = 2 +12:27:06 ============================================================================ +12:27:06 + + +waiting on router queue for slot.... +12:27:17 ============================================================================ +12:27:17 Slot Id : <306> +12:27:17 Transaction Type : REQUEST +12:27:17 Received From : +12:27:17 ============================================================================ +12:27:17 FNo. Len. Field Value +12:27:17 ============================================================================ +12:27:17 [ 1] [ 4] [0800] +12:27:17 [ 7] [ 10] [0320052624] +12:27:17 [ 11] [ 6] [156307] +12:27:17 [ 70] [ 3] [301] +12:27:17 ============================================================================ +12:27:17 + + +waiting on router queue for slot.... +12:27:17 Sending to : +12:27:17 ============================================================================ +12:27:17 ============================================================================ +12:27:17 Slot Id : <306> +12:27:17 Transaction Type : RESPONSE +12:27:17 Received From : +12:27:17 ============================================================================ +12:27:17 FNo. Len. Field Value +12:27:17 ============================================================================ +12:27:17 [ 1] [ 4] [0810] +12:27:17 [ 7] [ 10] [0320052624] +12:27:17 [ 11] [ 6] [156307] +12:27:17 [ 39] [ 2] [00] +12:27:17 [ 70] [ 3] [301] +12:27:17 ============================================================================ +12:27:17 Calculate Source COMM Id = 2 +12:27:17 ============================================================================ +12:27:17 + + +waiting on router queue for slot.... +12:27:24 ============================================================================ +12:27:24 Slot Id : <307> +12:27:24 Transaction Type : REQUEST +12:27:24 Received From : +12:27:24 ============================================================================ +12:27:24 FNo. Len. Field Value +12:27:24 ============================================================================ +12:27:24 [ 1] [ 4] [0200] +12:27:24 [ 2] [ 16] [2206990000119594] +12:27:24 [ 3] [ 6] [010000] +12:27:24 [ 4] [ 12] [000002000000] +12:27:24 [ 7] [ 10] [0320122515] +12:27:24 [ 11] [ 6] [944258] +12:27:24 [ 12] [ 6] [122515] +12:27:24 [ 13] [ 4] [0320] +12:27:24 [ 15] [ 4] [0320] +12:27:24 [ 18] [ 4] [6011] +12:27:24 [ 19] [ 3] [418] +12:27:24 [ 22] [ 3] [021] +12:27:24 [ 25] [ 2] [01] +12:27:24 [ 28] [ 9] [D00002000] +12:27:24 [ 32] [ 6] [668899] +12:27:24 [ 35] [ 32] [2206990000119594=980212615586612] +12:27:24 [ 37] [ 12] [507902031669] +12:27:24 [ 41] [ 8] [03018003] +12:27:24 [ 42] [ 15] [APT ] +12:27:24 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:27:24 [ 49] [ 3] [418] +12:27:24 [ 52] [ 16] [41AA6DBDF3D3736B] +12:27:24 ============================================================================ +12:27:24 + + +waiting on router queue for slot.... +12:27:24 Sending to : +12:27:24 ============================================================================ +12:27:24 Sending to : +12:27:24 ============================================================================ +12:27:25 ============================================================================ +12:27:25 Slot Id : <307> +12:27:25 Transaction Type : REQUEST +12:27:25 Received From : +12:27:25 ============================================================================ +12:27:25 FNo. Len. Field Value +12:27:25 ============================================================================ +12:27:25 [ 1] [ 4] [0200] +12:27:25 [ 2] [ 16] [2206990000119594] +12:27:25 [ 3] [ 6] [010000] +12:27:25 [ 4] [ 12] [000002000000] +12:27:25 [ 7] [ 10] [0320122515] +12:27:25 [ 11] [ 6] [944258] +12:27:25 [ 12] [ 6] [122515] +12:27:25 [ 13] [ 4] [0320] +12:27:25 [ 15] [ 4] [0320] +12:27:25 [ 18] [ 4] [6011] +12:27:25 [ 19] [ 3] [418] +12:27:25 [ 22] [ 3] [021] +12:27:25 [ 25] [ 2] [01] +12:27:25 [ 28] [ 9] [D00002000] +12:27:25 [ 32] [ 6] [668899] +12:27:25 [ 35] [ 32] [2206990000119594=980212615586612] +12:27:25 [ 37] [ 12] [507902031669] +12:27:25 [ 41] [ 8] [03018003] +12:27:25 [ 42] [ 15] [APT ] +12:27:25 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:27:25 [ 49] [ 3] [418] +12:27:25 [ 52] [ 16] [41AA6DBDF3D3736B] +12:27:25 ============================================================================ +12:27:25 + + +waiting on router queue for slot.... +12:27:25 Sending to : +12:27:25 ============================================================================ +12:27:25 ============================================================================ +12:27:25 Slot Id : <307> +12:27:25 Transaction Type : REQUEST +12:27:25 Received From : +12:27:25 ============================================================================ +12:27:25 FNo. Len. Field Value +12:27:25 ============================================================================ +12:27:25 [ 1] [ 4] [0200] +12:27:25 [ 2] [ 16] [2206990000119594] +12:27:25 [ 3] [ 6] [010000] +12:27:25 [ 4] [ 12] [000002000000] +12:27:25 [ 7] [ 10] [0320122515] +12:27:25 [ 11] [ 6] [944258] +12:27:25 [ 12] [ 6] [122515] +12:27:25 [ 13] [ 4] [0320] +12:27:25 [ 15] [ 4] [0320] +12:27:25 [ 18] [ 4] [6011] +12:27:25 [ 19] [ 3] [418] +12:27:25 [ 22] [ 3] [021] +12:27:25 [ 25] [ 2] [01] +12:27:25 [ 28] [ 9] [D00002000] +12:27:25 [ 32] [ 6] [668899] +12:27:25 [ 35] [ 32] [2206990000119594=980212615586612] +12:27:25 [ 37] [ 12] [507902031669] +12:27:25 [ 41] [ 8] [03018003] +12:27:25 [ 42] [ 15] [APT ] +12:27:25 [ 43] [ 40] [ OLD MARKET UNIT SAYSETTHA] +12:27:25 [ 49] [ 3] [418] +12:27:25 [ 52] [ 16] [7EC2CF0B95351AB2] +12:27:25 ============================================================================ +12:27:25 + + +waiting on router queue for slot.... +12:27:25 Sending to : <1> +12:27:25 ============================================================================ +12:27:27 ============================================================================ +12:27:27 Slot Id : <307> +12:27:27 Transaction Type : RESPONSE +12:27:27 Received From : +12:27:27 ============================================================================ +12:27:27 FNo. Len. Field Value +12:27:27 ============================================================================ +12:27:27 [ 1] [ 4] [0210] +12:27:27 [ 2] [ 16] [2206990000119594] +12:27:27 [ 3] [ 6] [010000] +12:27:27 [ 4] [ 12] [000002000000] +12:27:27 [ 7] [ 10] [0320122515] +12:27:27 [ 11] [ 6] [944258] +12:27:27 [ 12] [ 6] [122515] +12:27:27 [ 13] [ 4] [0320] +12:27:27 [ 15] [ 4] [0320] +12:27:27 [ 18] [ 4] [6011] +12:27:27 [ 32] [ 6] [668899] +12:27:27 [ 35] [ 32] [2206990000119594=980212615586612] +12:27:27 [ 37] [ 12] [507902031669] +12:27:27 [ 38] [ 6] [602656] +12:27:27 [ 39] [ 2] [00] +12:27:27 [ 41] [ 8] [03018003] +12:27:27 [ 49] [ 3] [418] +12:27:27 [ 54] [ 40] [0001418C0000057959000002418C000005795900] +12:27:27 ============================================================================ +12:27:27 Sending to : +12:27:27 ============================================================================ +12:27:27 + + +waiting on router queue for slot.... +12:27:28 ============================================================================ +12:27:28 Slot Id : <310> +12:27:28 Transaction Type : REQUEST +12:27:28 Received From : +12:27:28 ============================================================================ +12:27:28 FNo. Len. Field Value +12:27:28 ============================================================================ +12:27:28 [ 1] [ 4] [0800] +12:27:28 [ 7] [ 10] [0320052635] +12:27:28 [ 11] [ 6] [156308] +12:27:28 [ 70] [ 3] [301] +12:27:28 ============================================================================ +12:27:28 + + +waiting on router queue for slot.... +12:27:28 Sending to : +12:27:28 ============================================================================ +12:27:28 ============================================================================ +12:27:28 Slot Id : <310> +12:27:28 Transaction Type : RESPONSE +12:27:28 Received From : +12:27:28 ============================================================================ +12:27:28 FNo. Len. Field Value +12:27:28 ============================================================================ +12:27:28 [ 1] [ 4] [0810] +12:27:28 [ 7] [ 10] [0320052635] +12:27:28 [ 11] [ 6] [156308] +12:27:28 [ 39] [ 2] [00] +12:27:28 [ 70] [ 3] [301] +12:27:28 ============================================================================ +12:27:28 Calculate Source COMM Id = 2 +12:27:28 ============================================================================ +12:27:28 + + +waiting on router queue for slot.... +12:27:29 ============================================================================ +12:27:29 Slot Id : <307> +12:27:29 Transaction Type : RESPONSE +12:27:29 Received From : +12:27:29 ============================================================================ +12:27:29 FNo. Len. Field Value +12:27:29 ============================================================================ +12:27:29 [ 1] [ 4] [0210] +12:27:29 [ 2] [ 16] [2206990000119594] +12:27:29 [ 3] [ 6] [010000] +12:27:29 [ 4] [ 12] [000002000000] +12:27:29 [ 7] [ 10] [0320122515] +12:27:29 [ 11] [ 6] [944258] +12:27:29 [ 12] [ 6] [122515] +12:27:29 [ 13] [ 4] [0320] +12:27:29 [ 15] [ 4] [0320] +12:27:29 [ 18] [ 4] [6011] +12:27:29 [ 32] [ 6] [668899] +12:27:29 [ 35] [ 32] [2206990000119594=980212615586612] +12:27:29 [ 37] [ 12] [507902031669] +12:27:29 [ 38] [ 6] [602656] +12:27:29 [ 39] [ 2] [00] +12:27:29 [ 41] [ 8] [03018003] +12:27:29 [ 49] [ 3] [418] +12:27:29 [ 54] [ 40] [0001418C0000057959000002418C000005795900] +12:27:29 ============================================================================ +12:27:29 Calculate Source COMM Id = 4 +12:27:29 ============================================================================ +12:27:29 + + +waiting on router queue for slot.... +12:27:33 ============================================================================ +12:27:33 Slot Id : <317> +12:27:33 Transaction Type : REQUEST +12:27:33 Received From : +12:27:33 ============================================================================ +12:27:33 FNo. Len. Field Value +12:27:33 ============================================================================ +12:27:33 [ 1] [ 4] [0200] +12:27:33 [ 2] [ 16] [6213542000038126] +12:27:33 [ 3] [ 6] [010000] +12:27:33 [ 4] [ 12] [000050000000] +12:27:33 [ 7] [ 10] [0320052640] +12:27:33 [ 11] [ 6] [269030] +12:27:33 [ 12] [ 6] [122640] +12:27:33 [ 13] [ 4] [0320] +12:27:33 [ 14] [ 4] [4912] +12:27:33 [ 15] [ 4] [0320] +12:27:33 [ 18] [ 4] [6011] +12:27:33 [ 19] [ 3] [418] +12:27:33 [ 22] [ 3] [021] +12:27:33 [ 25] [ 2] [01] +12:27:33 [ 28] [ 9] [D00002000] +12:27:33 [ 32] [ 6] [180893] +12:27:33 [ 35] [ 32] [6213542000038126=491212013812675] +12:27:33 [ 37] [ 12] [507905269030] +12:27:33 [ 41] [ 8] [0221XKKM] +12:27:33 [ 42] [ 15] [999999 ] +12:27:33 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +12:27:33 [ 49] [ 3] [418] +12:27:33 [ 52] [ 16] [FD08206D77925F5F] +12:27:33 ============================================================================ +12:27:33 + + +waiting on router queue for slot.... +12:27:33 Sending to : +12:27:33 ============================================================================ +12:27:33 Sending to : +12:27:33 ============================================================================ +12:27:34 ============================================================================ +12:27:34 Slot Id : <317> +12:27:34 Transaction Type : REQUEST +12:27:34 Received From : +12:27:34 ============================================================================ +12:27:34 FNo. Len. Field Value +12:27:34 ============================================================================ +12:27:34 [ 1] [ 4] [0200] +12:27:34 [ 2] [ 16] [6213542000038126] +12:27:34 [ 3] [ 6] [010000] +12:27:34 [ 4] [ 12] [000050000000] +12:27:34 [ 7] [ 10] [0320052640] +12:27:34 [ 11] [ 6] [269030] +12:27:34 [ 12] [ 6] [122640] +12:27:34 [ 13] [ 4] [0320] +12:27:34 [ 14] [ 4] [4912] +12:27:34 [ 15] [ 4] [0320] +12:27:34 [ 18] [ 4] [6011] +12:27:34 [ 19] [ 3] [418] +12:27:34 [ 22] [ 3] [021] +12:27:34 [ 25] [ 2] [01] +12:27:34 [ 28] [ 9] [D00002000] +12:27:34 [ 32] [ 6] [180893] +12:27:34 [ 35] [ 32] [6213542000038126=491212013812675] +12:27:34 [ 37] [ 12] [507905269030] +12:27:34 [ 41] [ 8] [0221XKKM] +12:27:34 [ 42] [ 15] [999999 ] +12:27:34 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +12:27:34 [ 49] [ 3] [418] +12:27:34 [ 52] [ 16] [FD08206D77925F5F] +12:27:34 ============================================================================ +12:27:34 + + +waiting on router queue for slot.... +12:27:34 Sending to : +12:27:34 ============================================================================ +12:27:34 ============================================================================ +12:27:34 Slot Id : <317> +12:27:34 Transaction Type : REQUEST +12:27:34 Received From : +12:27:34 ============================================================================ +12:27:34 FNo. Len. Field Value +12:27:34 ============================================================================ +12:27:34 [ 1] [ 4] [0200] +12:27:34 [ 2] [ 16] [6213542000038126] +12:27:34 [ 3] [ 6] [010000] +12:27:34 [ 4] [ 12] [000050000000] +12:27:34 [ 7] [ 10] [0320052640] +12:27:34 [ 11] [ 6] [269030] +12:27:34 [ 12] [ 6] [122640] +12:27:34 [ 13] [ 4] [0320] +12:27:34 [ 14] [ 4] [4912] +12:27:34 [ 15] [ 4] [0320] +12:27:34 [ 18] [ 4] [6011] +12:27:34 [ 19] [ 3] [418] +12:27:34 [ 22] [ 3] [021] +12:27:34 [ 25] [ 2] [01] +12:27:34 [ 28] [ 9] [D00002000] +12:27:34 [ 32] [ 6] [180893] +12:27:34 [ 35] [ 32] [6213542000038126=491212013812675] +12:27:34 [ 37] [ 12] [507905269030] +12:27:34 [ 41] [ 8] [0221XKKM] +12:27:34 [ 42] [ 15] [999999 ] +12:27:34 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +12:27:34 [ 49] [ 3] [418] +12:27:34 [ 52] [ 16] [8C1B057C927BC70B] +12:27:34 ============================================================================ +12:27:34 + + +waiting on router queue for slot.... +12:27:34 Sending to : <0> +12:27:34 ============================================================================ +12:27:34 ============================================================================ +12:27:34 Slot Id : <317> +12:27:34 Transaction Type : RESPONSE +12:27:34 Received From : +12:27:34 ============================================================================ +12:27:34 FNo. Len. Field Value +12:27:34 ============================================================================ +12:27:34 [ 1] [ 4] [0210] +12:27:34 [ 2] [ 16] [6213542000038126] +12:27:34 [ 3] [ 6] [010000] +12:27:34 [ 4] [ 12] [000050000000] +12:27:34 [ 7] [ 10] [0320052640] +12:27:34 [ 11] [ 6] [269030] +12:27:34 [ 12] [ 6] [122640] +12:27:34 [ 13] [ 4] [0320] +12:27:34 [ 15] [ 4] [0320] +12:27:34 [ 18] [ 4] [6011] +12:27:34 [ 19] [ 3] [418] +12:27:34 [ 32] [ 6] [180893] +12:27:34 [ 35] [ 32] [6213542000038126=491212013812675] +12:27:34 [ 37] [ 12] [507905269030] +12:27:34 [ 38] [ 6] [879448] +12:27:34 [ 39] [ 2] [00] +12:27:34 [ 41] [ 8] [0221XKKM] +12:27:34 [ 49] [ 3] [418] +12:27:34 [ 54] [ 40] [0001418C0000155507260002418C000015550726] +12:27:34 ============================================================================ +12:27:34 Sending to : +12:27:34 ============================================================================ +12:27:34 + + +waiting on router queue for slot.... +12:27:36 ============================================================================ +12:27:36 Slot Id : <317> +12:27:36 Transaction Type : RESPONSE +12:27:36 Received From : +12:27:36 ============================================================================ +12:27:36 FNo. Len. Field Value +12:27:36 ============================================================================ +12:27:36 [ 1] [ 4] [0210] +12:27:36 [ 2] [ 16] [6213542000038126] +12:27:36 [ 3] [ 6] [010000] +12:27:36 [ 4] [ 12] [000050000000] +12:27:36 [ 7] [ 10] [0320052640] +12:27:36 [ 11] [ 6] [269030] +12:27:36 [ 12] [ 6] [122640] +12:27:36 [ 13] [ 4] [0320] +12:27:36 [ 15] [ 4] [0320] +12:27:36 [ 18] [ 4] [6011] +12:27:36 [ 19] [ 3] [418] +12:27:36 [ 32] [ 6] [180893] +12:27:36 [ 35] [ 32] [6213542000038126=491212013812675] +12:27:36 [ 37] [ 12] [507905269030] +12:27:36 [ 38] [ 6] [879448] +12:27:36 [ 39] [ 2] [00] +12:27:36 [ 41] [ 8] [0221XKKM] +12:27:36 [ 49] [ 3] [418] +12:27:36 [ 54] [ 40] [0001418C0000155507260002418C000015550726] +12:27:36 ============================================================================ +12:27:36 Calculate Source COMM Id = 2 +12:27:36 ============================================================================ +12:27:36 + + +waiting on router queue for slot.... +12:27:38 ============================================================================ +12:27:38 Slot Id : <288> +12:27:38 Transaction Type : REQUEST +12:27:38 Received From : +12:27:38 ============================================================================ +12:27:38 FNo. Len. Field Value +12:27:38 ============================================================================ +12:27:38 [ 1] [ 4] [0200] +12:27:38 [ 2] [ 16] [6688990040054502] +12:27:38 [ 3] [ 6] [010000] +12:27:38 [ 4] [ 12] [000040000000] +12:27:38 [ 7] [ 10] [0320122734] +12:27:38 [ 11] [ 6] [744726] +12:27:38 [ 12] [ 6] [122734] +12:27:38 [ 13] [ 4] [0320] +12:27:38 [ 15] [ 4] [0320] +12:27:38 [ 18] [ 4] [6011] +12:27:38 [ 22] [ 3] [900] +12:27:38 [ 25] [ 2] [02] +12:27:38 [ 28] [ 9] [D00002000] +12:27:38 [ 32] [ 6] [621354] +12:27:38 [ 35] [ 37] [6688990040054502=97121261672372300000] +12:27:38 [ 37] [ 12] [507904099970] +12:27:38 [ 41] [ 8] [08000600] +12:27:38 [ 42] [ 15] [NATIVE ] +12:27:38 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +12:27:38 [ 49] [ 3] [418] +12:27:38 [ 52] [ 16] [EF656ECE3884773E] +12:27:38 ============================================================================ +12:27:38 + + +waiting on router queue for slot.... +12:27:38 Sending to : +12:27:38 ============================================================================ +12:27:38 Sending to : +12:27:38 ============================================================================ +12:27:39 ============================================================================ +12:27:39 Slot Id : <288> +12:27:39 Transaction Type : REQUEST +12:27:39 Received From : +12:27:39 ============================================================================ +12:27:39 FNo. Len. Field Value +12:27:39 ============================================================================ +12:27:39 [ 1] [ 4] [0200] +12:27:39 [ 2] [ 16] [6688990040054502] +12:27:39 [ 3] [ 6] [010000] +12:27:39 [ 4] [ 12] [000040000000] +12:27:39 [ 7] [ 10] [0320122734] +12:27:39 [ 11] [ 6] [744726] +12:27:39 [ 12] [ 6] [122734] +12:27:39 [ 13] [ 4] [0320] +12:27:39 [ 15] [ 4] [0320] +12:27:39 [ 18] [ 4] [6011] +12:27:39 [ 22] [ 3] [900] +12:27:39 [ 25] [ 2] [02] +12:27:39 [ 28] [ 9] [D00002000] +12:27:39 [ 32] [ 6] [621354] +12:27:39 [ 35] [ 37] [6688990040054502=97121261672372300000] +12:27:39 [ 37] [ 12] [507904099970] +12:27:39 [ 41] [ 8] [08000600] +12:27:39 [ 42] [ 15] [NATIVE ] +12:27:39 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +12:27:39 [ 49] [ 3] [418] +12:27:39 [ 52] [ 16] [EF656ECE3884773E] +12:27:39 ============================================================================ +12:27:39 + + +waiting on router queue for slot.... +12:27:39 Sending to : +12:27:39 ============================================================================ +12:27:39 ============================================================================ +12:27:39 Slot Id : <288> +12:27:39 Transaction Type : REQUEST +12:27:39 Received From : +12:27:39 ============================================================================ +12:27:39 FNo. Len. Field Value +12:27:39 ============================================================================ +12:27:39 [ 1] [ 4] [0200] +12:27:39 [ 2] [ 16] [6688990040054502] +12:27:39 [ 3] [ 6] [010000] +12:27:39 [ 4] [ 12] [000040000000] +12:27:39 [ 7] [ 10] [0320122734] +12:27:39 [ 11] [ 6] [744726] +12:27:39 [ 12] [ 6] [122734] +12:27:39 [ 13] [ 4] [0320] +12:27:39 [ 15] [ 4] [0320] +12:27:39 [ 18] [ 4] [6011] +12:27:39 [ 22] [ 3] [900] +12:27:39 [ 25] [ 2] [02] +12:27:39 [ 28] [ 9] [D00002000] +12:27:39 [ 32] [ 6] [621354] +12:27:39 [ 35] [ 37] [6688990040054502=97121261672372300000] +12:27:39 [ 37] [ 12] [507904099970] +12:27:39 [ 41] [ 8] [08000600] +12:27:39 [ 42] [ 15] [NATIVE ] +12:27:39 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +12:27:39 [ 49] [ 3] [418] +12:27:39 [ 52] [ 16] [9CC4815D139A4903] +12:27:39 ============================================================================ +12:27:39 + + +waiting on router queue for slot.... +12:27:39 Sending to : <4> +12:27:39 ============================================================================ +12:27:40 ============================================================================ +12:27:40 Slot Id : <288> +12:27:40 Transaction Type : RESPONSE +12:27:40 Received From : +12:27:40 ============================================================================ +12:27:40 FNo. Len. Field Value +12:27:40 ============================================================================ +12:27:40 [ 1] [ 4] [0210] +12:27:40 [ 2] [ 16] [6688990040054502] +12:27:40 [ 3] [ 6] [010000] +12:27:40 [ 4] [ 12] [000040000000] +12:27:40 [ 7] [ 10] [0320122734] +12:27:40 [ 11] [ 6] [744726] +12:27:40 [ 12] [ 6] [122734] +12:27:40 [ 13] [ 4] [0320] +12:27:40 [ 15] [ 4] [0320] +12:27:40 [ 18] [ 4] [6011] +12:27:40 [ 22] [ 3] [021] +12:27:40 [ 32] [ 6] [621354] +12:27:40 [ 35] [ 37] [6688990040054502=97121261672372300000] +12:27:40 [ 37] [ 12] [507904099970] +12:27:40 [ 38] [ 6] [122530] +12:27:40 [ 39] [ 2] [55] +12:27:40 [ 41] [ 8] [08000600] +12:27:40 [ 49] [ 3] [418] +12:27:40 ============================================================================ +12:27:40 Sending to : +12:27:40 ============================================================================ +12:27:40 + + +waiting on router queue for slot.... +12:27:41 ============================================================================ +12:27:41 Slot Id : <288> +12:27:41 Transaction Type : RESPONSE +12:27:41 Received From : +12:27:41 ============================================================================ +12:27:41 FNo. Len. Field Value +12:27:41 ============================================================================ +12:27:41 [ 1] [ 4] [0210] +12:27:41 [ 2] [ 16] [6688990040054502] +12:27:41 [ 3] [ 6] [010000] +12:27:41 [ 4] [ 12] [000040000000] +12:27:41 [ 7] [ 10] [0320122734] +12:27:41 [ 11] [ 6] [744726] +12:27:41 [ 12] [ 6] [122734] +12:27:41 [ 13] [ 4] [0320] +12:27:41 [ 15] [ 4] [0320] +12:27:41 [ 18] [ 4] [6011] +12:27:41 [ 22] [ 3] [021] +12:27:41 [ 32] [ 6] [621354] +12:27:41 [ 35] [ 37] [6688990040054502=97121261672372300000] +12:27:41 [ 37] [ 12] [507904099970] +12:27:41 [ 38] [ 6] [122530] +12:27:41 [ 39] [ 2] [55] +12:27:41 [ 41] [ 8] [08000600] +12:27:41 [ 49] [ 3] [418] +12:27:41 ============================================================================ +12:27:41 Calculate Source COMM Id = 0 +12:27:41 ============================================================================ +12:27:41 + + +waiting on router queue for slot.... +12:27:44 ============================================================================ +12:27:44 Slot Id : <318> +12:27:44 Transaction Type : REQUEST +12:27:44 Received From : +12:27:44 ============================================================================ +12:27:44 FNo. Len. Field Value +12:27:44 ============================================================================ +12:27:44 [ 1] [ 4] [0800] +12:27:44 [ 2] [ 5] [02531] +12:27:44 [ 3] [ 6] [579128] +12:27:44 [ 7] [ 10] [0320052744] +12:27:44 [ 11] [ 6] [807135] +12:27:44 [ 15] [ 10] [0320052744] +12:27:44 [ 37] [ 11] [57912807135] +12:27:44 [ 70] [ 3] [001] +12:27:44 ============================================================================ +12:27:44 + + +waiting on router queue for slot.... +12:27:44 ============================================================================ +12:27:44 Slot Id : <318> +12:27:44 Transaction Type : RESPONSE +12:27:44 Received From : +12:27:44 ============================================================================ +12:27:44 FNo. Len. Field Value +12:27:44 ============================================================================ +12:27:44 [ 1] [ 4] [0810] +12:27:44 [ 7] [ 10] [0320052744] +12:27:44 [ 11] [ 6] [807135] +12:27:44 [ 15] [ 4] [0320] +12:27:44 [ 37] [ 12] [57912807135] +12:27:44 [ 39] [ 2] [00] +12:27:44 [ 70] [ 3] [001] +12:27:44 ============================================================================ +12:27:44 Sending to : +12:27:44 ============================================================================ +12:27:44 + + +waiting on router queue for slot.... +12:27:51 ============================================================================ +12:27:51 Slot Id : <322> +12:27:51 Transaction Type : REQUEST +12:27:51 Received From : +12:27:51 ============================================================================ +12:27:51 FNo. Len. Field Value +12:27:51 ============================================================================ +12:27:51 [ 1] [ 4] [0800] +12:27:51 [ 7] [ 10] [0320052657] +12:27:51 [ 11] [ 6] [156309] +12:27:51 [ 70] [ 3] [301] +12:27:51 ============================================================================ +12:27:51 + + +waiting on router queue for slot.... +12:27:51 Sending to : +12:27:51 ============================================================================ +12:27:51 ============================================================================ +12:27:51 Slot Id : <322> +12:27:51 Transaction Type : RESPONSE +12:27:51 Received From : +12:27:51 ============================================================================ +12:27:51 FNo. Len. Field Value +12:27:51 ============================================================================ +12:27:51 [ 1] [ 4] [0810] +12:27:51 [ 7] [ 10] [0320052657] +12:27:51 [ 11] [ 6] [156309] +12:27:51 [ 39] [ 2] [00] +12:27:51 [ 70] [ 3] [301] +12:27:51 ============================================================================ +12:27:51 Calculate Source COMM Id = 2 +12:27:51 ============================================================================ +12:27:51 + + +waiting on router queue for slot.... +12:27:58 ============================================================================ +12:27:58 Slot Id : <315> +12:27:58 Transaction Type : REQUEST +12:27:58 Received From : +12:27:58 ============================================================================ +12:27:58 FNo. Len. Field Value +12:27:58 ============================================================================ +12:27:58 [ 1] [ 4] [0200] +12:27:58 [ 2] [ 16] [6213544000850203] +12:27:58 [ 3] [ 6] [012000] +12:27:58 [ 4] [ 12] [000010000000] +12:27:58 [ 7] [ 10] [0320123546] +12:27:58 [ 11] [ 6] [223713] +12:27:58 [ 12] [ 6] [123546] +12:27:58 [ 13] [ 4] [0320] +12:27:58 [ 14] [ 4] [4912] +12:27:58 [ 15] [ 4] [0320] +12:27:58 [ 18] [ 4] [6011] +12:27:58 [ 22] [ 3] [900] +12:27:58 [ 25] [ 2] [02] +12:27:58 [ 28] [ 9] [D00002000] +12:27:58 [ 32] [ 6] [220699] +12:27:58 [ 35] [ 32] [6213544000850203=491212015020481] +12:27:58 [ 37] [ 12] [507900118754] +12:27:58 [ 41] [ 8] [01001100] +12:27:58 [ 42] [ 15] [APTRA ] +12:27:58 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:27:58 [ 49] [ 3] [418] +12:27:58 [ 52] [ 16] [51E2996902E14056] +12:27:58 ============================================================================ +12:27:58 + + +waiting on router queue for slot.... +12:27:58 Sending to : +12:27:58 ============================================================================ +12:27:58 Sending to : +12:27:58 ============================================================================ +12:27:59 ============================================================================ +12:27:59 Slot Id : <315> +12:27:59 Transaction Type : REQUEST +12:27:59 Received From : +12:27:59 ============================================================================ +12:27:59 FNo. Len. Field Value +12:27:59 ============================================================================ +12:27:59 [ 1] [ 4] [0200] +12:27:59 [ 2] [ 16] [6213544000850203] +12:27:59 [ 3] [ 6] [012000] +12:27:59 [ 4] [ 12] [000010000000] +12:27:59 [ 7] [ 10] [0320123546] +12:27:59 [ 11] [ 6] [223713] +12:27:59 [ 12] [ 6] [123546] +12:27:59 [ 13] [ 4] [0320] +12:27:59 [ 14] [ 4] [4912] +12:27:59 [ 15] [ 4] [0320] +12:27:59 [ 18] [ 4] [6011] +12:27:59 [ 22] [ 3] [900] +12:27:59 [ 25] [ 2] [02] +12:27:59 [ 28] [ 9] [D00002000] +12:27:59 [ 32] [ 6] [220699] +12:27:59 [ 35] [ 32] [6213544000850203=491212015020481] +12:27:59 [ 37] [ 12] [507900118754] +12:27:59 [ 41] [ 8] [01001100] +12:27:59 [ 42] [ 15] [APTRA ] +12:27:59 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:27:59 [ 49] [ 3] [418] +12:27:59 [ 52] [ 16] [51E2996902E14056] +12:27:59 ============================================================================ +12:27:59 + + +waiting on router queue for slot.... +12:27:59 Sending to : +12:27:59 ============================================================================ +12:27:59 ============================================================================ +12:27:59 Slot Id : <315> +12:27:59 Transaction Type : REQUEST +12:27:59 Received From : +12:27:59 ============================================================================ +12:27:59 FNo. Len. Field Value +12:27:59 ============================================================================ +12:27:59 [ 1] [ 4] [0200] +12:27:59 [ 2] [ 16] [6213544000850203] +12:27:59 [ 3] [ 6] [012000] +12:27:59 [ 4] [ 12] [000010000000] +12:27:59 [ 7] [ 10] [0320123546] +12:27:59 [ 11] [ 6] [223713] +12:27:59 [ 12] [ 6] [123546] +12:27:59 [ 13] [ 4] [0320] +12:27:59 [ 14] [ 4] [4912] +12:27:59 [ 15] [ 4] [0320] +12:27:59 [ 18] [ 4] [6011] +12:27:59 [ 22] [ 3] [900] +12:27:59 [ 25] [ 2] [02] +12:27:59 [ 28] [ 9] [D00002000] +12:27:59 [ 32] [ 6] [220699] +12:27:59 [ 35] [ 32] [6213544000850203=491212015020481] +12:27:59 [ 37] [ 12] [507900118754] +12:27:59 [ 41] [ 8] [01001100] +12:27:59 [ 42] [ 15] [APTRA ] +12:27:59 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:27:59 [ 49] [ 3] [418] +12:27:59 [ 52] [ 16] [5199BB7856897718] +12:27:59 ============================================================================ +12:27:59 + + +waiting on router queue for slot.... +12:27:59 Sending to : <0> +12:27:59 ============================================================================ +12:28:00 ============================================================================ +12:28:00 Slot Id : <315> +12:28:00 Transaction Type : RESPONSE +12:28:00 Received From : +12:28:00 ============================================================================ +12:28:00 FNo. Len. Field Value +12:28:00 ============================================================================ +12:28:00 [ 1] [ 4] [0210] +12:28:00 [ 2] [ 16] [6213544000850203] +12:28:00 [ 3] [ 6] [012000] +12:28:00 [ 4] [ 12] [000010000000] +12:28:00 [ 7] [ 10] [0320123546] +12:28:00 [ 11] [ 6] [223713] +12:28:00 [ 12] [ 6] [123546] +12:28:00 [ 13] [ 4] [0320] +12:28:00 [ 15] [ 4] [0320] +12:28:00 [ 18] [ 4] [6011] +12:28:00 [ 32] [ 6] [220699] +12:28:00 [ 35] [ 32] [6213544000850203=491212015020481] +12:28:00 [ 37] [ 12] [507900118754] +12:28:00 [ 38] [ 6] [895785] +12:28:00 [ 39] [ 2] [00] +12:28:00 [ 41] [ 8] [01001100] +12:28:00 [ 49] [ 3] [418] +12:28:00 [ 54] [ 40] [2001418C0000190727912002418C000019072791] +12:28:00 ============================================================================ +12:28:00 Sending to : +12:28:00 ============================================================================ +12:28:00 + + +waiting on router queue for slot.... +12:28:01 ============================================================================ +12:28:01 Slot Id : <315> +12:28:01 Transaction Type : RESPONSE +12:28:01 Received From : +12:28:01 ============================================================================ +12:28:01 FNo. Len. Field Value +12:28:01 ============================================================================ +12:28:01 [ 1] [ 4] [0210] +12:28:01 [ 2] [ 16] [6213544000850203] +12:28:01 [ 3] [ 6] [012000] +12:28:01 [ 4] [ 12] [000010000000] +12:28:01 [ 7] [ 10] [0320123546] +12:28:01 [ 11] [ 6] [223713] +12:28:01 [ 12] [ 6] [123546] +12:28:01 [ 13] [ 4] [0320] +12:28:01 [ 15] [ 4] [0320] +12:28:01 [ 18] [ 4] [6011] +12:28:01 [ 32] [ 6] [220699] +12:28:01 [ 35] [ 32] [6213544000850203=491212015020481] +12:28:01 [ 37] [ 12] [507900118754] +12:28:01 [ 38] [ 6] [895785] +12:28:01 [ 39] [ 2] [00] +12:28:01 [ 41] [ 8] [01001100] +12:28:01 [ 49] [ 3] [418] +12:28:01 [ 54] [ 40] [2001418C0000190727912002418C000019072791] +12:28:01 ============================================================================ +12:28:01 Calculate Source COMM Id = 1 +12:28:01 ============================================================================ +12:28:01 + + +waiting on router queue for slot.... +12:28:05 ============================================================================ +12:28:05 Slot Id : <304> +12:28:05 Transaction Type : REQUEST +12:28:05 Received From : +12:28:05 ============================================================================ +12:28:05 FNo. Len. Field Value +12:28:05 ============================================================================ +12:28:05 [ 1] [ 4] [0800] +12:28:05 [ 7] [ 10] [0320052713] +12:28:05 [ 11] [ 6] [156310] +12:28:05 [ 70] [ 3] [301] +12:28:05 ============================================================================ +12:28:05 + + +waiting on router queue for slot.... +12:28:05 Sending to : +12:28:05 ============================================================================ +12:28:05 ============================================================================ +12:28:05 Slot Id : <304> +12:28:05 Transaction Type : RESPONSE +12:28:05 Received From : +12:28:05 ============================================================================ +12:28:05 FNo. Len. Field Value +12:28:05 ============================================================================ +12:28:05 [ 1] [ 4] [0810] +12:28:05 [ 7] [ 10] [0320052713] +12:28:05 [ 11] [ 6] [156310] +12:28:05 [ 39] [ 2] [00] +12:28:05 [ 70] [ 3] [301] +12:28:05 ============================================================================ +12:28:05 Calculate Source COMM Id = 2 +12:28:05 ============================================================================ +12:28:05 + + +waiting on router queue for slot.... +12:28:15 ============================================================================ +12:28:15 Slot Id : <325> +12:28:15 Transaction Type : REQUEST +12:28:15 Received From : +12:28:15 ============================================================================ +12:28:15 FNo. Len. Field Value +12:28:15 ============================================================================ +12:28:15 [ 1] [ 4] [0800] +12:28:15 [ 7] [ 10] [0320052723] +12:28:15 [ 11] [ 6] [156311] +12:28:15 [ 70] [ 3] [301] +12:28:15 ============================================================================ +12:28:15 + + +waiting on router queue for slot.... +12:28:15 Sending to : +12:28:15 ============================================================================ +12:28:15 ============================================================================ +12:28:15 Slot Id : <325> +12:28:15 Transaction Type : RESPONSE +12:28:15 Received From : +12:28:15 ============================================================================ +12:28:15 FNo. Len. Field Value +12:28:15 ============================================================================ +12:28:15 [ 1] [ 4] [0810] +12:28:15 [ 7] [ 10] [0320052723] +12:28:15 [ 11] [ 6] [156311] +12:28:15 [ 39] [ 2] [00] +12:28:15 [ 70] [ 3] [301] +12:28:15 ============================================================================ +12:28:15 Calculate Source COMM Id = 2 +12:28:15 ============================================================================ +12:28:15 + + +waiting on router queue for slot.... +12:28:26 ============================================================================ +12:28:26 Slot Id : <285> +12:28:26 Transaction Type : REQUEST +12:28:26 Received From : +12:28:26 ============================================================================ +12:28:26 FNo. Len. Field Value +12:28:26 ============================================================================ +12:28:26 [ 1] [ 4] [0800] +12:28:26 [ 7] [ 10] [0320052734] +12:28:26 [ 11] [ 6] [156312] +12:28:26 [ 70] [ 3] [301] +12:28:26 ============================================================================ +12:28:26 + + +waiting on router queue for slot.... +12:28:26 Sending to : +12:28:26 ============================================================================ +12:28:26 ============================================================================ +12:28:26 Slot Id : <285> +12:28:26 Transaction Type : RESPONSE +12:28:26 Received From : +12:28:26 ============================================================================ +12:28:26 FNo. Len. Field Value +12:28:26 ============================================================================ +12:28:26 [ 1] [ 4] [0810] +12:28:26 [ 7] [ 10] [0320052734] +12:28:26 [ 11] [ 6] [156312] +12:28:26 [ 39] [ 2] [00] +12:28:26 [ 70] [ 3] [301] +12:28:26 ============================================================================ +12:28:26 Calculate Source COMM Id = 2 +12:28:26 ============================================================================ +12:28:26 + + +waiting on router queue for slot.... +12:28:31 ============================================================================ +12:28:31 Slot Id : <289> +12:28:31 Transaction Type : REQUEST +12:28:31 Received From : +12:28:31 ============================================================================ +12:28:31 FNo. Len. Field Value +12:28:31 ============================================================================ +12:28:31 [ 1] [ 4] [0200] +12:28:31 [ 2] [ 16] [6688990040054502] +12:28:31 [ 3] [ 6] [010000] +12:28:31 [ 4] [ 12] [000040000000] +12:28:31 [ 7] [ 10] [0320122827] +12:28:31 [ 11] [ 6] [744894] +12:28:31 [ 12] [ 6] [122827] +12:28:31 [ 13] [ 4] [0320] +12:28:31 [ 15] [ 4] [0320] +12:28:31 [ 18] [ 4] [6011] +12:28:31 [ 22] [ 3] [900] +12:28:31 [ 25] [ 2] [02] +12:28:31 [ 28] [ 9] [D00002000] +12:28:31 [ 32] [ 6] [621354] +12:28:31 [ 35] [ 37] [6688990040054502=97121261672372300000] +12:28:31 [ 37] [ 12] [507904099972] +12:28:31 [ 41] [ 8] [08000600] +12:28:31 [ 42] [ 15] [NATIVE ] +12:28:31 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +12:28:31 [ 49] [ 3] [418] +12:28:31 [ 52] [ 16] [073961E88F97FAEF] +12:28:31 ============================================================================ +12:28:31 + + +waiting on router queue for slot.... +12:28:31 Sending to : +12:28:31 ============================================================================ +12:28:31 Sending to : +12:28:31 ============================================================================ +12:28:31 ============================================================================ +12:28:31 Slot Id : <289> +12:28:31 Transaction Type : REQUEST +12:28:31 Received From : +12:28:31 ============================================================================ +12:28:31 FNo. Len. Field Value +12:28:31 ============================================================================ +12:28:31 [ 1] [ 4] [0200] +12:28:31 [ 2] [ 16] [6688990040054502] +12:28:31 [ 3] [ 6] [010000] +12:28:31 [ 4] [ 12] [000040000000] +12:28:31 [ 7] [ 10] [0320122827] +12:28:31 [ 11] [ 6] [744894] +12:28:31 [ 12] [ 6] [122827] +12:28:31 [ 13] [ 4] [0320] +12:28:31 [ 15] [ 4] [0320] +12:28:31 [ 18] [ 4] [6011] +12:28:31 [ 22] [ 3] [900] +12:28:31 [ 25] [ 2] [02] +12:28:31 [ 28] [ 9] [D00002000] +12:28:31 [ 32] [ 6] [621354] +12:28:31 [ 35] [ 37] [6688990040054502=97121261672372300000] +12:28:31 [ 37] [ 12] [507904099972] +12:28:31 [ 41] [ 8] [08000600] +12:28:31 [ 42] [ 15] [NATIVE ] +12:28:31 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +12:28:31 [ 49] [ 3] [418] +12:28:31 [ 52] [ 16] [073961E88F97FAEF] +12:28:31 ============================================================================ +12:28:31 + + +waiting on router queue for slot.... +12:28:31 Sending to : +12:28:31 ============================================================================ +12:28:31 ============================================================================ +12:28:31 Slot Id : <289> +12:28:31 Transaction Type : REQUEST +12:28:31 Received From : +12:28:31 ============================================================================ +12:28:31 FNo. Len. Field Value +12:28:31 ============================================================================ +12:28:31 [ 1] [ 4] [0200] +12:28:31 [ 2] [ 16] [6688990040054502] +12:28:31 [ 3] [ 6] [010000] +12:28:31 [ 4] [ 12] [000040000000] +12:28:31 [ 7] [ 10] [0320122827] +12:28:31 [ 11] [ 6] [744894] +12:28:31 [ 12] [ 6] [122827] +12:28:31 [ 13] [ 4] [0320] +12:28:31 [ 15] [ 4] [0320] +12:28:31 [ 18] [ 4] [6011] +12:28:31 [ 22] [ 3] [900] +12:28:31 [ 25] [ 2] [02] +12:28:31 [ 28] [ 9] [D00002000] +12:28:31 [ 32] [ 6] [621354] +12:28:31 [ 35] [ 37] [6688990040054502=97121261672372300000] +12:28:31 [ 37] [ 12] [507904099972] +12:28:31 [ 41] [ 8] [08000600] +12:28:31 [ 42] [ 15] [NATIVE ] +12:28:31 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +12:28:31 [ 49] [ 3] [418] +12:28:31 [ 52] [ 16] [835726FC08EB0993] +12:28:31 ============================================================================ +12:28:31 + + +waiting on router queue for slot.... +12:28:31 Sending to : <4> +12:28:31 ============================================================================ +12:28:33 ============================================================================ +12:28:33 Slot Id : <289> +12:28:33 Transaction Type : RESPONSE +12:28:33 Received From : +12:28:33 ============================================================================ +12:28:33 FNo. Len. Field Value +12:28:33 ============================================================================ +12:28:33 [ 1] [ 4] [0210] +12:28:33 [ 2] [ 16] [6688990040054502] +12:28:33 [ 3] [ 6] [010000] +12:28:33 [ 4] [ 12] [000040000000] +12:28:33 [ 11] [ 6] [744894] +12:28:33 [ 12] [ 6] [122827] +12:28:33 [ 15] [ 4] [0320] +12:28:33 [ 18] [ 4] [6011] +12:28:33 [ 32] [ 6] [621354] +12:28:33 [ 35] [ 37] [6688990040054502=97121261672372300000] +12:28:33 [ 37] [ 12] [507904099972] +12:28:33 [ 38] [ 6] [507186] +12:28:33 [ 39] [ 2] [00] +12:28:33 [ 41] [ 8] [08000600] +12:28:33 [ 49] [ 3] [418] +12:28:33 [ 54] [ 20] [0002418C000002879028] +12:28:33 ============================================================================ +12:28:33 Sending to : +12:28:33 ============================================================================ +12:28:33 + + +waiting on router queue for slot.... +12:28:34 ============================================================================ +12:28:34 Slot Id : <289> +12:28:34 Transaction Type : RESPONSE +12:28:34 Received From : +12:28:34 ============================================================================ +12:28:34 FNo. Len. Field Value +12:28:34 ============================================================================ +12:28:34 [ 1] [ 4] [0210] +12:28:34 [ 2] [ 16] [6688990040054502] +12:28:34 [ 3] [ 6] [010000] +12:28:34 [ 4] [ 12] [000040000000] +12:28:34 [ 11] [ 6] [744894] +12:28:34 [ 12] [ 6] [122827] +12:28:34 [ 15] [ 4] [0320] +12:28:34 [ 18] [ 4] [6011] +12:28:34 [ 32] [ 6] [621354] +12:28:34 [ 35] [ 37] [6688990040054502=97121261672372300000] +12:28:34 [ 37] [ 12] [507904099972] +12:28:34 [ 38] [ 6] [507186] +12:28:34 [ 39] [ 2] [00] +12:28:34 [ 41] [ 8] [08000600] +12:28:34 [ 49] [ 3] [418] +12:28:34 [ 54] [ 20] [0002418C000002879028] +12:28:34 ============================================================================ +12:28:34 Calculate Source COMM Id = 0 +12:28:34 ============================================================================ +12:28:34 + + +waiting on router queue for slot.... +12:28:39 ============================================================================ +12:28:39 Slot Id : <297> +12:28:39 Transaction Type : REQUEST +12:28:39 Received From : +12:28:39 ============================================================================ +12:28:39 FNo. Len. Field Value +12:28:39 ============================================================================ +12:28:39 [ 1] [ 4] [0800] +12:28:39 [ 7] [ 10] [0320052747] +12:28:39 [ 11] [ 6] [156313] +12:28:39 [ 70] [ 3] [301] +12:28:39 ============================================================================ +12:28:39 + + +waiting on router queue for slot.... +12:28:39 Sending to : +12:28:39 ============================================================================ +12:28:40 ============================================================================ +12:28:40 Slot Id : <297> +12:28:40 Transaction Type : RESPONSE +12:28:40 Received From : +12:28:40 ============================================================================ +12:28:40 FNo. Len. Field Value +12:28:40 ============================================================================ +12:28:40 [ 1] [ 4] [0810] +12:28:40 [ 7] [ 10] [0320052747] +12:28:40 [ 11] [ 6] [156313] +12:28:40 [ 39] [ 2] [00] +12:28:40 [ 70] [ 3] [301] +12:28:40 ============================================================================ +12:28:40 Calculate Source COMM Id = 2 +12:28:40 ============================================================================ +12:28:40 + + +waiting on router queue for slot.... +12:28:46 ============================================================================ +12:28:46 Slot Id : <291> +12:28:46 Transaction Type : REQUEST +12:28:46 Received From : +12:28:46 ============================================================================ +12:28:46 FNo. Len. Field Value +12:28:46 ============================================================================ +12:28:46 [ 1] [ 4] [0800] +12:28:46 [ 2] [ 5] [02531] +12:28:46 [ 3] [ 6] [579128] +12:28:46 [ 7] [ 10] [0320052846] +12:28:46 [ 11] [ 6] [807136] +12:28:46 [ 15] [ 10] [0320052846] +12:28:46 [ 37] [ 11] [57912807136] +12:28:46 [ 70] [ 3] [001] +12:28:46 ============================================================================ +12:28:46 + + +waiting on router queue for slot.... +12:28:46 ============================================================================ +12:28:46 Slot Id : <291> +12:28:46 Transaction Type : RESPONSE +12:28:46 Received From : +12:28:46 ============================================================================ +12:28:46 FNo. Len. Field Value +12:28:46 ============================================================================ +12:28:46 [ 1] [ 4] [0810] +12:28:46 [ 7] [ 10] [0320052846] +12:28:46 [ 11] [ 6] [807136] +12:28:46 [ 15] [ 4] [0320] +12:28:46 [ 37] [ 12] [57912807136] +12:28:46 [ 39] [ 2] [00] +12:28:46 [ 70] [ 3] [001] +12:28:46 ============================================================================ +12:28:46 Sending to : +12:28:46 ============================================================================ +12:28:46 + + +waiting on router queue for slot.... +12:28:50 ============================================================================ +12:28:50 Slot Id : <326> +12:28:50 Transaction Type : REQUEST +12:28:50 Received From : +12:28:50 ============================================================================ +12:28:50 FNo. Len. Field Value +12:28:50 ============================================================================ +12:28:50 [ 1] [ 4] [0800] +12:28:50 [ 7] [ 10] [0320052758] +12:28:50 [ 11] [ 6] [156314] +12:28:50 [ 70] [ 3] [301] +12:28:50 ============================================================================ +12:28:50 + + +waiting on router queue for slot.... +12:28:50 Sending to : +12:28:50 ============================================================================ +12:28:50 ============================================================================ +12:28:50 Slot Id : <326> +12:28:50 Transaction Type : RESPONSE +12:28:50 Received From : +12:28:50 ============================================================================ +12:28:50 FNo. Len. Field Value +12:28:50 ============================================================================ +12:28:50 [ 1] [ 4] [0810] +12:28:50 [ 7] [ 10] [0320052758] +12:28:50 [ 11] [ 6] [156314] +12:28:50 [ 39] [ 2] [00] +12:28:50 [ 70] [ 3] [301] +12:28:50 ============================================================================ +12:28:50 Calculate Source COMM Id = 2 +12:28:50 ============================================================================ +12:28:50 + + +waiting on router queue for slot.... +12:28:58 ============================================================================ +12:28:58 Slot Id : <301> +12:28:58 Transaction Type : REQUEST +12:28:58 Received From : +12:28:58 ============================================================================ +12:28:58 FNo. Len. Field Value +12:28:58 ============================================================================ +12:28:58 [ 1] [ 4] [0200] +12:28:58 [ 2] [ 16] [6213544002017363] +12:28:58 [ 3] [ 6] [012000] +12:28:58 [ 4] [ 12] [000030000000] +12:28:58 [ 7] [ 10] [0320052805] +12:28:58 [ 11] [ 6] [269035] +12:28:58 [ 12] [ 6] [122805] +12:28:58 [ 13] [ 4] [0320] +12:28:58 [ 14] [ 4] [4912] +12:28:58 [ 15] [ 4] [0320] +12:28:58 [ 18] [ 4] [6011] +12:28:58 [ 19] [ 3] [418] +12:28:58 [ 22] [ 3] [021] +12:28:58 [ 25] [ 2] [01] +12:28:58 [ 28] [ 9] [D00002000] +12:28:58 [ 32] [ 6] [180893] +12:28:58 [ 35] [ 32] [6213544002017363=491212011736049] +12:28:58 [ 37] [ 12] [507905269035] +12:28:58 [ 41] [ 8] [0421BKPH] +12:28:58 [ 42] [ 15] [999999 ] +12:28:58 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +12:28:58 [ 49] [ 3] [418] +12:28:58 [ 52] [ 16] [AA9626B3664417B2] +12:28:58 ============================================================================ +12:28:58 + + +waiting on router queue for slot.... +12:28:58 Sending to : +12:28:58 ============================================================================ +12:28:58 Sending to : +12:28:58 ============================================================================ +12:28:58 ============================================================================ +12:28:58 Slot Id : <301> +12:28:58 Transaction Type : REQUEST +12:28:58 Received From : +12:28:58 ============================================================================ +12:28:58 FNo. Len. Field Value +12:28:58 ============================================================================ +12:28:58 [ 1] [ 4] [0200] +12:28:58 [ 2] [ 16] [6213544002017363] +12:28:58 [ 3] [ 6] [012000] +12:28:58 [ 4] [ 12] [000030000000] +12:28:58 [ 7] [ 10] [0320052805] +12:28:58 [ 11] [ 6] [269035] +12:28:58 [ 12] [ 6] [122805] +12:28:58 [ 13] [ 4] [0320] +12:28:58 [ 14] [ 4] [4912] +12:28:58 [ 15] [ 4] [0320] +12:28:58 [ 18] [ 4] [6011] +12:28:58 [ 19] [ 3] [418] +12:28:58 [ 22] [ 3] [021] +12:28:58 [ 25] [ 2] [01] +12:28:58 [ 28] [ 9] [D00002000] +12:28:58 [ 32] [ 6] [180893] +12:28:58 [ 35] [ 32] [6213544002017363=491212011736049] +12:28:58 [ 37] [ 12] [507905269035] +12:28:58 [ 41] [ 8] [0421BKPH] +12:28:58 [ 42] [ 15] [999999 ] +12:28:58 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +12:28:58 [ 49] [ 3] [418] +12:28:58 [ 52] [ 16] [AA9626B3664417B2] +12:28:58 ============================================================================ +12:28:58 + + +waiting on router queue for slot.... +12:28:58 Sending to : +12:28:58 ============================================================================ +12:28:58 ============================================================================ +12:28:58 Slot Id : <301> +12:28:58 Transaction Type : REQUEST +12:28:58 Received From : +12:28:58 ============================================================================ +12:28:58 FNo. Len. Field Value +12:28:58 ============================================================================ +12:28:58 [ 1] [ 4] [0200] +12:28:58 [ 2] [ 16] [6213544002017363] +12:28:58 [ 3] [ 6] [012000] +12:28:58 [ 4] [ 12] [000030000000] +12:28:58 [ 7] [ 10] [0320052805] +12:28:58 [ 11] [ 6] [269035] +12:28:58 [ 12] [ 6] [122805] +12:28:58 [ 13] [ 4] [0320] +12:28:58 [ 14] [ 4] [4912] +12:28:58 [ 15] [ 4] [0320] +12:28:58 [ 18] [ 4] [6011] +12:28:58 [ 19] [ 3] [418] +12:28:58 [ 22] [ 3] [021] +12:28:58 [ 25] [ 2] [01] +12:28:58 [ 28] [ 9] [D00002000] +12:28:58 [ 32] [ 6] [180893] +12:28:58 [ 35] [ 32] [6213544002017363=491212011736049] +12:28:58 [ 37] [ 12] [507905269035] +12:28:58 [ 41] [ 8] [0421BKPH] +12:28:58 [ 42] [ 15] [999999 ] +12:28:58 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +12:28:58 [ 49] [ 3] [418] +12:28:58 [ 52] [ 16] [136ABC7C158B2BE0] +12:28:58 ============================================================================ +12:28:58 + + +waiting on router queue for slot.... +12:28:58 Sending to : <0> +12:28:58 ============================================================================ +12:28:59 ============================================================================ +12:28:59 Slot Id : <301> +12:28:59 Transaction Type : RESPONSE +12:28:59 Received From : +12:28:59 ============================================================================ +12:28:59 FNo. Len. Field Value +12:28:59 ============================================================================ +12:28:59 [ 1] [ 4] [0210] +12:28:59 [ 2] [ 16] [6213544002017363] +12:28:59 [ 3] [ 6] [012000] +12:28:59 [ 4] [ 12] [000030000000] +12:28:59 [ 7] [ 10] [0320052805] +12:28:59 [ 11] [ 6] [269035] +12:28:59 [ 12] [ 6] [122805] +12:28:59 [ 13] [ 4] [0320] +12:28:59 [ 15] [ 4] [0320] +12:28:59 [ 18] [ 4] [6011] +12:28:59 [ 19] [ 3] [418] +12:28:59 [ 32] [ 6] [180893] +12:28:59 [ 35] [ 32] [6213544002017363=491212011736049] +12:28:59 [ 37] [ 12] [507905269035] +12:28:59 [ 38] [ 6] [485177] +12:28:59 [ 39] [ 2] [00] +12:28:59 [ 41] [ 8] [0421BKPH] +12:28:59 [ 49] [ 3] [418] +12:28:59 [ 54] [ 40] [2001418C0000066406242002418C000006640624] +12:28:59 ============================================================================ +12:28:59 Sending to : +12:28:59 ============================================================================ +12:28:59 + + +waiting on router queue for slot.... +12:29:00 ============================================================================ +12:29:00 Slot Id : <301> +12:29:00 Transaction Type : RESPONSE +12:29:00 Received From : +12:29:00 ============================================================================ +12:29:00 FNo. Len. Field Value +12:29:00 ============================================================================ +12:29:00 [ 1] [ 4] [0210] +12:29:00 [ 2] [ 16] [6213544002017363] +12:29:00 [ 3] [ 6] [012000] +12:29:00 [ 4] [ 12] [000030000000] +12:29:00 [ 7] [ 10] [0320052805] +12:29:00 [ 11] [ 6] [269035] +12:29:00 [ 12] [ 6] [122805] +12:29:00 [ 13] [ 4] [0320] +12:29:00 [ 15] [ 4] [0320] +12:29:00 [ 18] [ 4] [6011] +12:29:00 [ 19] [ 3] [418] +12:29:00 [ 32] [ 6] [180893] +12:29:00 [ 35] [ 32] [6213544002017363=491212011736049] +12:29:00 [ 37] [ 12] [507905269035] +12:29:00 [ 38] [ 6] [485177] +12:29:00 [ 39] [ 2] [00] +12:29:00 [ 41] [ 8] [0421BKPH] +12:29:00 [ 49] [ 3] [418] +12:29:00 [ 54] [ 40] [2001418C0000066406242002418C000006640624] +12:29:00 ============================================================================ +12:29:00 Calculate Source COMM Id = 2 +12:29:00 ============================================================================ +12:29:00 + + +waiting on router queue for slot.... +12:29:06 ============================================================================ +12:29:06 Slot Id : <327> +12:29:06 Transaction Type : REQUEST +12:29:06 Received From : +12:29:06 ============================================================================ +12:29:06 FNo. Len. Field Value +12:29:06 ============================================================================ +12:29:06 [ 1] [ 4] [0200] +12:29:06 [ 2] [ 16] [6688990040163469] +12:29:06 [ 3] [ 6] [011000] +12:29:06 [ 4] [ 12] [000020000000] +12:29:06 [ 7] [ 10] [0320052812] +12:29:06 [ 11] [ 6] [269037] +12:29:06 [ 12] [ 6] [122812] +12:29:06 [ 13] [ 4] [0320] +12:29:06 [ 14] [ 4] [9805] +12:29:06 [ 15] [ 4] [0320] +12:29:06 [ 18] [ 4] [6011] +12:29:06 [ 19] [ 3] [418] +12:29:06 [ 22] [ 3] [021] +12:29:06 [ 25] [ 2] [01] +12:29:06 [ 28] [ 9] [D00002000] +12:29:06 [ 32] [ 6] [180893] +12:29:06 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:29:06 [ 37] [ 12] [507905269037] +12:29:06 [ 41] [ 8] [0466PSLB] +12:29:06 [ 42] [ 15] [999999 ] +12:29:06 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +12:29:06 [ 49] [ 3] [418] +12:29:06 [ 52] [ 16] [9A3DC646B97D905A] +12:29:06 ============================================================================ +12:29:06 + + +waiting on router queue for slot.... +12:29:06 Sending to : +12:29:06 ============================================================================ +12:29:06 Sending to : +12:29:06 ============================================================================ +12:29:06 ============================================================================ +12:29:06 Slot Id : <327> +12:29:06 Transaction Type : REQUEST +12:29:06 Received From : +12:29:06 ============================================================================ +12:29:06 FNo. Len. Field Value +12:29:06 ============================================================================ +12:29:06 [ 1] [ 4] [0200] +12:29:06 [ 2] [ 16] [6688990040163469] +12:29:06 [ 3] [ 6] [011000] +12:29:06 [ 4] [ 12] [000020000000] +12:29:06 [ 7] [ 10] [0320052812] +12:29:06 [ 11] [ 6] [269037] +12:29:06 [ 12] [ 6] [122812] +12:29:06 [ 13] [ 4] [0320] +12:29:06 [ 14] [ 4] [9805] +12:29:06 [ 15] [ 4] [0320] +12:29:06 [ 18] [ 4] [6011] +12:29:06 [ 19] [ 3] [418] +12:29:06 [ 22] [ 3] [021] +12:29:06 [ 25] [ 2] [01] +12:29:06 [ 28] [ 9] [D00002000] +12:29:06 [ 32] [ 6] [180893] +12:29:06 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:29:06 [ 37] [ 12] [507905269037] +12:29:06 [ 41] [ 8] [0466PSLB] +12:29:06 [ 42] [ 15] [999999 ] +12:29:06 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +12:29:06 [ 49] [ 3] [418] +12:29:06 [ 52] [ 16] [9A3DC646B97D905A] +12:29:06 ============================================================================ +12:29:06 + + +waiting on router queue for slot.... +12:29:06 Sending to : +12:29:06 ============================================================================ +12:29:06 ============================================================================ +12:29:06 Slot Id : <327> +12:29:06 Transaction Type : REQUEST +12:29:06 Received From : +12:29:06 ============================================================================ +12:29:06 FNo. Len. Field Value +12:29:06 ============================================================================ +12:29:06 [ 1] [ 4] [0200] +12:29:06 [ 2] [ 16] [6688990040163469] +12:29:06 [ 3] [ 6] [011000] +12:29:06 [ 4] [ 12] [000020000000] +12:29:06 [ 7] [ 10] [0320052812] +12:29:06 [ 11] [ 6] [269037] +12:29:06 [ 12] [ 6] [122812] +12:29:06 [ 13] [ 4] [0320] +12:29:06 [ 14] [ 4] [9805] +12:29:06 [ 15] [ 4] [0320] +12:29:06 [ 18] [ 4] [6011] +12:29:06 [ 19] [ 3] [418] +12:29:06 [ 22] [ 3] [021] +12:29:06 [ 25] [ 2] [01] +12:29:06 [ 28] [ 9] [D00002000] +12:29:06 [ 32] [ 6] [180893] +12:29:06 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:29:06 [ 37] [ 12] [507905269037] +12:29:06 [ 41] [ 8] [0466PSLB] +12:29:06 [ 42] [ 15] [999999 ] +12:29:06 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +12:29:06 [ 49] [ 3] [418] +12:29:06 [ 52] [ 16] [0230B5288F9B27CC] +12:29:06 ============================================================================ +12:29:06 + + +waiting on router queue for slot.... +12:29:06 Sending to : <0> +12:29:06 ============================================================================ +12:29:06 ============================================================================ +12:29:06 Slot Id : <327> +12:29:06 Transaction Type : RESPONSE +12:29:06 Received From : +12:29:06 ============================================================================ +12:29:06 FNo. Len. Field Value +12:29:06 ============================================================================ +12:29:06 [ 1] [ 4] [0210] +12:29:06 [ 2] [ 16] [6688990040163469] +12:29:06 [ 3] [ 6] [011000] +12:29:06 [ 4] [ 12] [000020000000] +12:29:06 [ 7] [ 10] [0320052812] +12:29:06 [ 11] [ 6] [269037] +12:29:06 [ 12] [ 6] [122812] +12:29:06 [ 13] [ 4] [0320] +12:29:06 [ 15] [ 4] [0320] +12:29:06 [ 18] [ 4] [6011] +12:29:06 [ 19] [ 3] [418] +12:29:06 [ 22] [ 3] [021] +12:29:06 [ 32] [ 6] [180893] +12:29:06 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:29:06 [ 37] [ 12] [507905269037] +12:29:06 [ 39] [ 2] [14] +12:29:06 [ 41] [ 8] [0466PSLB] +12:29:06 [ 49] [ 3] [418] +12:29:06 ============================================================================ +12:29:06 Sending to : +12:29:06 ============================================================================ +12:29:06 + + +waiting on router queue for slot.... +12:29:07 ============================================================================ +12:29:07 Slot Id : <327> +12:29:07 Transaction Type : RESPONSE +12:29:07 Received From : +12:29:07 ============================================================================ +12:29:07 FNo. Len. Field Value +12:29:07 ============================================================================ +12:29:07 [ 1] [ 4] [0210] +12:29:07 [ 2] [ 16] [6688990040163469] +12:29:07 [ 3] [ 6] [011000] +12:29:07 [ 4] [ 12] [000020000000] +12:29:07 [ 7] [ 10] [0320052812] +12:29:07 [ 11] [ 6] [269037] +12:29:07 [ 12] [ 6] [122812] +12:29:07 [ 13] [ 4] [0320] +12:29:07 [ 15] [ 4] [0320] +12:29:07 [ 18] [ 4] [6011] +12:29:07 [ 19] [ 3] [418] +12:29:07 [ 22] [ 3] [021] +12:29:07 [ 32] [ 6] [180893] +12:29:07 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:29:07 [ 37] [ 12] [507905269037] +12:29:07 [ 39] [ 2] [14] +12:29:07 [ 41] [ 8] [0466PSLB] +12:29:07 [ 49] [ 3] [418] +12:29:07 ============================================================================ +12:29:07 Calculate Source COMM Id = 2 +12:29:07 ============================================================================ +12:29:07 + + +waiting on router queue for slot.... +12:29:22 ============================================================================ +12:29:22 Slot Id : <305> +12:29:22 Transaction Type : REQUEST +12:29:22 Received From : +12:29:22 ============================================================================ +12:29:22 FNo. Len. Field Value +12:29:22 ============================================================================ +12:29:22 [ 1] [ 4] [0800] +12:29:22 [ 7] [ 10] [0320052829] +12:29:22 [ 11] [ 6] [156315] +12:29:22 [ 70] [ 3] [301] +12:29:22 ============================================================================ +12:29:22 + + +waiting on router queue for slot.... +12:29:22 Sending to : +12:29:22 ============================================================================ +12:29:22 ============================================================================ +12:29:22 Slot Id : <305> +12:29:22 Transaction Type : RESPONSE +12:29:22 Received From : +12:29:22 ============================================================================ +12:29:22 FNo. Len. Field Value +12:29:22 ============================================================================ +12:29:22 [ 1] [ 4] [0810] +12:29:22 [ 7] [ 10] [0320052829] +12:29:22 [ 11] [ 6] [156315] +12:29:22 [ 39] [ 2] [00] +12:29:22 [ 70] [ 3] [301] +12:29:22 ============================================================================ +12:29:22 Calculate Source COMM Id = 2 +12:29:22 ============================================================================ +12:29:22 + + +waiting on router queue for slot.... +12:29:24 ============================================================================ +12:29:24 Slot Id : <314> +12:29:24 Transaction Type : REQUEST +12:29:24 Received From : +12:29:24 ============================================================================ +12:29:24 FNo. Len. Field Value +12:29:24 ============================================================================ +12:29:24 [ 1] [ 4] [0200] +12:29:24 [ 2] [ 16] [6213545000969000] +12:29:24 [ 3] [ 6] [010000] +12:29:24 [ 4] [ 12] [000010000000] +12:29:24 [ 7] [ 10] [0320052830] +12:29:24 [ 11] [ 6] [269042] +12:29:24 [ 12] [ 6] [122830] +12:29:24 [ 13] [ 4] [0320] +12:29:24 [ 14] [ 4] [4912] +12:29:24 [ 15] [ 4] [0320] +12:29:24 [ 18] [ 4] [6011] +12:29:24 [ 19] [ 3] [418] +12:29:24 [ 22] [ 3] [021] +12:29:24 [ 25] [ 2] [01] +12:29:24 [ 28] [ 9] [D00002000] +12:29:24 [ 32] [ 6] [180893] +12:29:24 [ 35] [ 32] [6213545000969000=491212016900811] +12:29:24 [ 37] [ 12] [507905269042] +12:29:24 [ 41] [ 8] [0104NUOL] +12:29:24 [ 42] [ 15] [999999 ] +12:29:24 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +12:29:24 [ 49] [ 3] [418] +12:29:24 [ 52] [ 16] [33D36EFF6800E547] +12:29:24 ============================================================================ +12:29:24 + + +waiting on router queue for slot.... +12:29:24 Sending to : +12:29:24 ============================================================================ +12:29:24 Sending to : +12:29:24 ============================================================================ +12:29:24 ============================================================================ +12:29:24 Slot Id : <314> +12:29:24 Transaction Type : REQUEST +12:29:24 Received From : +12:29:24 ============================================================================ +12:29:24 FNo. Len. Field Value +12:29:24 ============================================================================ +12:29:24 [ 1] [ 4] [0200] +12:29:24 [ 2] [ 16] [6213545000969000] +12:29:24 [ 3] [ 6] [010000] +12:29:24 [ 4] [ 12] [000010000000] +12:29:24 [ 7] [ 10] [0320052830] +12:29:24 [ 11] [ 6] [269042] +12:29:24 [ 12] [ 6] [122830] +12:29:24 [ 13] [ 4] [0320] +12:29:24 [ 14] [ 4] [4912] +12:29:24 [ 15] [ 4] [0320] +12:29:24 [ 18] [ 4] [6011] +12:29:24 [ 19] [ 3] [418] +12:29:24 [ 22] [ 3] [021] +12:29:24 [ 25] [ 2] [01] +12:29:24 [ 28] [ 9] [D00002000] +12:29:24 [ 32] [ 6] [180893] +12:29:24 [ 35] [ 32] [6213545000969000=491212016900811] +12:29:24 [ 37] [ 12] [507905269042] +12:29:24 [ 41] [ 8] [0104NUOL] +12:29:24 [ 42] [ 15] [999999 ] +12:29:24 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +12:29:24 [ 49] [ 3] [418] +12:29:24 [ 52] [ 16] [33D36EFF6800E547] +12:29:24 ============================================================================ +12:29:24 + + +waiting on router queue for slot.... +12:29:24 Sending to : +12:29:24 ============================================================================ +12:29:24 ============================================================================ +12:29:24 Slot Id : <314> +12:29:24 Transaction Type : REQUEST +12:29:24 Received From : +12:29:24 ============================================================================ +12:29:24 FNo. Len. Field Value +12:29:24 ============================================================================ +12:29:24 [ 1] [ 4] [0200] +12:29:24 [ 2] [ 16] [6213545000969000] +12:29:24 [ 3] [ 6] [010000] +12:29:24 [ 4] [ 12] [000010000000] +12:29:24 [ 7] [ 10] [0320052830] +12:29:24 [ 11] [ 6] [269042] +12:29:24 [ 12] [ 6] [122830] +12:29:24 [ 13] [ 4] [0320] +12:29:24 [ 14] [ 4] [4912] +12:29:24 [ 15] [ 4] [0320] +12:29:24 [ 18] [ 4] [6011] +12:29:24 [ 19] [ 3] [418] +12:29:24 [ 22] [ 3] [021] +12:29:24 [ 25] [ 2] [01] +12:29:24 [ 28] [ 9] [D00002000] +12:29:24 [ 32] [ 6] [180893] +12:29:24 [ 35] [ 32] [6213545000969000=491212016900811] +12:29:24 [ 37] [ 12] [507905269042] +12:29:24 [ 41] [ 8] [0104NUOL] +12:29:24 [ 42] [ 15] [999999 ] +12:29:24 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +12:29:24 [ 49] [ 3] [418] +12:29:24 [ 52] [ 16] [78C14775D9102F93] +12:29:24 ============================================================================ +12:29:24 + + +waiting on router queue for slot.... +12:29:24 Sending to : <0> +12:29:24 ============================================================================ +12:29:25 ============================================================================ +12:29:25 Slot Id : <314> +12:29:25 Transaction Type : RESPONSE +12:29:25 Received From : +12:29:25 ============================================================================ +12:29:25 FNo. Len. Field Value +12:29:25 ============================================================================ +12:29:25 [ 1] [ 4] [0210] +12:29:25 [ 2] [ 16] [6213545000969000] +12:29:25 [ 3] [ 6] [010000] +12:29:25 [ 4] [ 12] [000010000000] +12:29:25 [ 7] [ 10] [0320052830] +12:29:25 [ 11] [ 6] [269042] +12:29:25 [ 12] [ 6] [122830] +12:29:25 [ 13] [ 4] [0320] +12:29:25 [ 15] [ 4] [0320] +12:29:25 [ 18] [ 4] [6011] +12:29:25 [ 19] [ 3] [418] +12:29:25 [ 32] [ 6] [180893] +12:29:25 [ 35] [ 32] [6213545000969000=491212016900811] +12:29:25 [ 37] [ 12] [507905269042] +12:29:25 [ 38] [ 6] [631487] +12:29:25 [ 39] [ 2] [00] +12:29:25 [ 41] [ 8] [0104NUOL] +12:29:25 [ 49] [ 3] [418] +12:29:25 [ 54] [ 40] [0001418C0001178189510002418C000117818951] +12:29:25 ============================================================================ +12:29:25 Sending to : +12:29:25 ============================================================================ +12:29:25 + + +waiting on router queue for slot.... +12:29:27 ============================================================================ +12:29:27 Slot Id : <314> +12:29:27 Transaction Type : RESPONSE +12:29:27 Received From : +12:29:27 ============================================================================ +12:29:27 FNo. Len. Field Value +12:29:27 ============================================================================ +12:29:27 [ 1] [ 4] [0210] +12:29:27 [ 2] [ 16] [6213545000969000] +12:29:27 [ 3] [ 6] [010000] +12:29:27 [ 4] [ 12] [000010000000] +12:29:27 [ 7] [ 10] [0320052830] +12:29:27 [ 11] [ 6] [269042] +12:29:27 [ 12] [ 6] [122830] +12:29:27 [ 13] [ 4] [0320] +12:29:27 [ 15] [ 4] [0320] +12:29:27 [ 18] [ 4] [6011] +12:29:27 [ 19] [ 3] [418] +12:29:27 [ 32] [ 6] [180893] +12:29:27 [ 35] [ 32] [6213545000969000=491212016900811] +12:29:27 [ 37] [ 12] [507905269042] +12:29:27 [ 38] [ 6] [631487] +12:29:27 [ 39] [ 2] [00] +12:29:27 [ 41] [ 8] [0104NUOL] +12:29:27 [ 49] [ 3] [418] +12:29:27 [ 54] [ 40] [0001418C0001178189510002418C000117818951] +12:29:27 ============================================================================ +12:29:27 Calculate Source COMM Id = 2 +12:29:27 ============================================================================ +12:29:27 + + +waiting on router queue for slot.... +12:29:35 ============================================================================ +12:29:35 Slot Id : <302> +12:29:35 Transaction Type : REQUEST +12:29:35 Received From : +12:29:35 ============================================================================ +12:29:35 FNo. Len. Field Value +12:29:35 ============================================================================ +12:29:35 [ 1] [ 4] [0200] +12:29:35 [ 2] [ 16] [1808931700022575] +12:29:35 [ 3] [ 6] [011000] +12:29:35 [ 4] [ 12] [000080000000] +12:29:35 [ 7] [ 10] [0320122930] +12:29:35 [ 11] [ 6] [745107] +12:29:35 [ 12] [ 6] [122930] +12:29:35 [ 13] [ 4] [0320] +12:29:35 [ 15] [ 4] [0320] +12:29:35 [ 18] [ 4] [6011] +12:29:35 [ 22] [ 3] [900] +12:29:35 [ 25] [ 2] [02] +12:29:35 [ 28] [ 9] [D00002000] +12:29:35 [ 32] [ 6] [621354] +12:29:35 [ 35] [ 27] [1808931700022575=1803500938] +12:29:35 [ 37] [ 12] [507903799291] +12:29:35 [ 41] [ 8] [01009500] +12:29:35 [ 42] [ 15] [NATIVE ] +12:29:35 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +12:29:35 [ 49] [ 3] [418] +12:29:35 [ 52] [ 16] [5FDC9B8819B5B69B] +12:29:35 ============================================================================ +12:29:35 + + +waiting on router queue for slot.... +12:29:35 Sending to : +12:29:35 ============================================================================ +12:29:35 Sending to : +12:29:35 ============================================================================ +12:29:35 ============================================================================ +12:29:35 Slot Id : <302> +12:29:35 Transaction Type : REQUEST +12:29:35 Received From : +12:29:35 ============================================================================ +12:29:35 FNo. Len. Field Value +12:29:35 ============================================================================ +12:29:35 [ 1] [ 4] [0200] +12:29:35 [ 2] [ 16] [1808931700022575] +12:29:35 [ 3] [ 6] [011000] +12:29:35 [ 4] [ 12] [000080000000] +12:29:35 [ 7] [ 10] [0320122930] +12:29:35 [ 11] [ 6] [745107] +12:29:35 [ 12] [ 6] [122930] +12:29:35 [ 13] [ 4] [0320] +12:29:35 [ 15] [ 4] [0320] +12:29:35 [ 18] [ 4] [6011] +12:29:35 [ 22] [ 3] [900] +12:29:35 [ 25] [ 2] [02] +12:29:35 [ 28] [ 9] [D00002000] +12:29:35 [ 32] [ 6] [621354] +12:29:35 [ 35] [ 27] [1808931700022575=1803500938] +12:29:35 [ 37] [ 12] [507903799291] +12:29:35 [ 41] [ 8] [01009500] +12:29:35 [ 42] [ 15] [NATIVE ] +12:29:35 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +12:29:35 [ 49] [ 3] [418] +12:29:35 [ 52] [ 16] [5FDC9B8819B5B69B] +12:29:35 ============================================================================ +12:29:35 + + +waiting on router queue for slot.... +12:29:35 Sending to : +12:29:35 ============================================================================ +12:29:35 ============================================================================ +12:29:35 Slot Id : <302> +12:29:35 Transaction Type : REQUEST +12:29:35 Received From : +12:29:35 ============================================================================ +12:29:35 FNo. Len. Field Value +12:29:35 ============================================================================ +12:29:35 [ 1] [ 4] [0200] +12:29:35 [ 2] [ 16] [1808931700022575] +12:29:35 [ 3] [ 6] [011000] +12:29:35 [ 4] [ 12] [000080000000] +12:29:35 [ 7] [ 10] [0320122930] +12:29:35 [ 11] [ 6] [745107] +12:29:35 [ 12] [ 6] [122930] +12:29:35 [ 13] [ 4] [0320] +12:29:35 [ 15] [ 4] [0320] +12:29:35 [ 18] [ 4] [6011] +12:29:35 [ 22] [ 3] [900] +12:29:35 [ 25] [ 2] [02] +12:29:35 [ 28] [ 9] [D00002000] +12:29:35 [ 32] [ 6] [621354] +12:29:35 [ 35] [ 27] [1808931700022575=1803500938] +12:29:35 [ 37] [ 12] [507903799291] +12:29:35 [ 41] [ 8] [01009500] +12:29:35 [ 42] [ 15] [NATIVE ] +12:29:35 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +12:29:35 [ 49] [ 3] [418] +12:29:35 [ 52] [ 16] [3E974A0B20886932] +12:29:35 ============================================================================ +12:29:35 + + +waiting on router queue for slot.... +12:29:35 Sending to : <2> +12:29:35 ============================================================================ +12:29:39 ============================================================================ +12:29:39 Slot Id : <302> +12:29:39 Transaction Type : RESPONSE +12:29:39 Received From : +12:29:39 ============================================================================ +12:29:39 FNo. Len. Field Value +12:29:39 ============================================================================ +12:29:39 [ 1] [ 4] [0210] +12:29:39 [ 2] [ 16] [1808931700022575] +12:29:39 [ 3] [ 6] [011000] +12:29:39 [ 4] [ 12] [000080000000] +12:29:39 [ 6] [ 12] [000080000000] +12:29:39 [ 7] [ 10] [0320122930] +12:29:39 [ 11] [ 6] [745107] +12:29:39 [ 12] [ 6] [122930] +12:29:39 [ 13] [ 4] [0320] +12:29:39 [ 18] [ 4] [6011] +12:29:39 [ 19] [ 3] [418] +12:29:39 [ 22] [ 3] [021] +12:29:39 [ 32] [ 6] [621354] +12:29:39 [ 35] [ 27] [1808931700022575=1803500938] +12:29:39 [ 37] [ 12] [507903799291] +12:29:39 [ 38] [ 6] [745107] +12:29:39 [ 39] [ 2] [00] +12:29:39 [ 41] [ 8] [01009500] +12:29:39 [ 49] [ 3] [418] +12:29:39 [ 52] [ 16] [3E974A0B20886932] +12:29:39 [ 54] [ 20] [1001418C000023741900] +12:29:39 ============================================================================ +12:29:39 Sending to : +12:29:39 ============================================================================ +12:29:39 + + +waiting on router queue for slot.... +12:29:40 ============================================================================ +12:29:40 Slot Id : <302> +12:29:40 Transaction Type : RESPONSE +12:29:40 Received From : +12:29:40 ============================================================================ +12:29:40 FNo. Len. Field Value +12:29:40 ============================================================================ +12:29:40 [ 1] [ 4] [0210] +12:29:40 [ 2] [ 16] [1808931700022575] +12:29:40 [ 3] [ 6] [011000] +12:29:40 [ 4] [ 12] [000080000000] +12:29:40 [ 6] [ 12] [000080000000] +12:29:40 [ 7] [ 10] [0320122930] +12:29:40 [ 11] [ 6] [745107] +12:29:40 [ 12] [ 6] [122930] +12:29:40 [ 13] [ 4] [0320] +12:29:40 [ 18] [ 4] [6011] +12:29:40 [ 19] [ 3] [418] +12:29:40 [ 22] [ 3] [021] +12:29:40 [ 32] [ 6] [621354] +12:29:40 [ 35] [ 27] [1808931700022575=1803500938] +12:29:40 [ 37] [ 12] [507903799291] +12:29:40 [ 38] [ 6] [745107] +12:29:40 [ 39] [ 2] [00] +12:29:40 [ 41] [ 8] [01009500] +12:29:40 [ 49] [ 3] [418] +12:29:40 [ 52] [ 16] [3E974A0B20886932] +12:29:40 [ 54] [ 20] [1001418C000023741900] +12:29:40 ============================================================================ +12:29:40 Calculate Source COMM Id = 0 +12:29:40 ============================================================================ +12:29:40 + + +waiting on router queue for slot.... +12:29:42 ============================================================================ +12:29:42 Slot Id : <292> +12:29:42 Transaction Type : REQUEST +12:29:42 Received From : +12:29:42 ============================================================================ +12:29:42 FNo. Len. Field Value +12:29:42 ============================================================================ +12:29:42 [ 1] [ 4] [0200] +12:29:42 [ 2] [ 16] [6213544001393815] +12:29:42 [ 3] [ 6] [011000] +12:29:42 [ 4] [ 12] [000004000000] +12:29:42 [ 7] [ 10] [0320123729] +12:29:42 [ 11] [ 6] [223716] +12:29:42 [ 12] [ 6] [123729] +12:29:42 [ 13] [ 4] [0320] +12:29:42 [ 14] [ 4] [4912] +12:29:42 [ 15] [ 4] [0320] +12:29:42 [ 18] [ 4] [6011] +12:29:42 [ 22] [ 3] [900] +12:29:42 [ 25] [ 2] [02] +12:29:42 [ 28] [ 9] [D00002000] +12:29:42 [ 32] [ 6] [220699] +12:29:42 [ 35] [ 32] [6213544001393815=491212019381396] +12:29:42 [ 37] [ 12] [507900118756] +12:29:42 [ 41] [ 8] [01001100] +12:29:42 [ 42] [ 15] [APTRA ] +12:29:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:29:42 [ 49] [ 3] [418] +12:29:42 [ 52] [ 16] [38997AB37C63B710] +12:29:42 ============================================================================ +12:29:42 + + +waiting on router queue for slot.... +12:29:42 Sending to : +12:29:42 ============================================================================ +12:29:42 Sending to : +12:29:42 ============================================================================ +12:29:42 ============================================================================ +12:29:42 Slot Id : <292> +12:29:42 Transaction Type : REQUEST +12:29:42 Received From : +12:29:42 ============================================================================ +12:29:42 FNo. Len. Field Value +12:29:42 ============================================================================ +12:29:42 [ 1] [ 4] [0200] +12:29:42 [ 2] [ 16] [6213544001393815] +12:29:42 [ 3] [ 6] [011000] +12:29:42 [ 4] [ 12] [000004000000] +12:29:42 [ 7] [ 10] [0320123729] +12:29:42 [ 11] [ 6] [223716] +12:29:42 [ 12] [ 6] [123729] +12:29:42 [ 13] [ 4] [0320] +12:29:42 [ 14] [ 4] [4912] +12:29:42 [ 15] [ 4] [0320] +12:29:42 [ 18] [ 4] [6011] +12:29:42 [ 22] [ 3] [900] +12:29:42 [ 25] [ 2] [02] +12:29:42 [ 28] [ 9] [D00002000] +12:29:42 [ 32] [ 6] [220699] +12:29:42 [ 35] [ 32] [6213544001393815=491212019381396] +12:29:42 [ 37] [ 12] [507900118756] +12:29:42 [ 41] [ 8] [01001100] +12:29:42 [ 42] [ 15] [APTRA ] +12:29:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:29:42 [ 49] [ 3] [418] +12:29:42 [ 52] [ 16] [38997AB37C63B710] +12:29:42 ============================================================================ +12:29:42 + + +waiting on router queue for slot.... +12:29:42 Sending to : +12:29:42 ============================================================================ +12:29:42 ============================================================================ +12:29:42 Slot Id : <292> +12:29:42 Transaction Type : REQUEST +12:29:42 Received From : +12:29:42 ============================================================================ +12:29:42 FNo. Len. Field Value +12:29:42 ============================================================================ +12:29:42 [ 1] [ 4] [0200] +12:29:42 [ 2] [ 16] [6213544001393815] +12:29:42 [ 3] [ 6] [011000] +12:29:42 [ 4] [ 12] [000004000000] +12:29:42 [ 7] [ 10] [0320123729] +12:29:42 [ 11] [ 6] [223716] +12:29:42 [ 12] [ 6] [123729] +12:29:42 [ 13] [ 4] [0320] +12:29:42 [ 14] [ 4] [4912] +12:29:42 [ 15] [ 4] [0320] +12:29:42 [ 18] [ 4] [6011] +12:29:42 [ 22] [ 3] [900] +12:29:42 [ 25] [ 2] [02] +12:29:42 [ 28] [ 9] [D00002000] +12:29:42 [ 32] [ 6] [220699] +12:29:42 [ 35] [ 32] [6213544001393815=491212019381396] +12:29:42 [ 37] [ 12] [507900118756] +12:29:42 [ 41] [ 8] [01001100] +12:29:42 [ 42] [ 15] [APTRA ] +12:29:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:29:42 [ 49] [ 3] [418] +12:29:42 [ 52] [ 16] [97262F4DB06A2113] +12:29:42 ============================================================================ +12:29:42 + + +waiting on router queue for slot.... +12:29:42 Sending to : <0> +12:29:42 ============================================================================ +12:29:44 ============================================================================ +12:29:44 Slot Id : <292> +12:29:44 Transaction Type : RESPONSE +12:29:44 Received From : +12:29:44 ============================================================================ +12:29:44 FNo. Len. Field Value +12:29:44 ============================================================================ +12:29:44 [ 1] [ 4] [0210] +12:29:44 [ 2] [ 16] [6213544001393815] +12:29:44 [ 3] [ 6] [011000] +12:29:44 [ 4] [ 12] [000004000000] +12:29:44 [ 7] [ 10] [0320123729] +12:29:44 [ 11] [ 6] [223716] +12:29:44 [ 12] [ 6] [123729] +12:29:44 [ 13] [ 4] [0320] +12:29:44 [ 15] [ 4] [0320] +12:29:44 [ 18] [ 4] [6011] +12:29:44 [ 32] [ 6] [220699] +12:29:44 [ 35] [ 32] [6213544001393815=491212019381396] +12:29:44 [ 37] [ 12] [507900118756] +12:29:44 [ 38] [ 6] [086788] +12:29:44 [ 39] [ 2] [00] +12:29:44 [ 41] [ 8] [01001100] +12:29:44 [ 49] [ 3] [418] +12:29:44 [ 54] [ 40] [1001418C0000054243761002418C000005424376] +12:29:44 ============================================================================ +12:29:44 Sending to : +12:29:44 ============================================================================ +12:29:44 + + +waiting on router queue for slot.... +12:29:45 ============================================================================ +12:29:45 Slot Id : <292> +12:29:45 Transaction Type : RESPONSE +12:29:45 Received From : +12:29:45 ============================================================================ +12:29:45 FNo. Len. Field Value +12:29:45 ============================================================================ +12:29:45 [ 1] [ 4] [0210] +12:29:45 [ 2] [ 16] [6213544001393815] +12:29:45 [ 3] [ 6] [011000] +12:29:45 [ 4] [ 12] [000004000000] +12:29:45 [ 7] [ 10] [0320123729] +12:29:45 [ 11] [ 6] [223716] +12:29:45 [ 12] [ 6] [123729] +12:29:45 [ 13] [ 4] [0320] +12:29:45 [ 15] [ 4] [0320] +12:29:45 [ 18] [ 4] [6011] +12:29:45 [ 32] [ 6] [220699] +12:29:45 [ 35] [ 32] [6213544001393815=491212019381396] +12:29:45 [ 37] [ 12] [507900118756] +12:29:45 [ 38] [ 6] [086788] +12:29:45 [ 39] [ 2] [00] +12:29:45 [ 41] [ 8] [01001100] +12:29:45 [ 49] [ 3] [418] +12:29:45 [ 54] [ 40] [1001418C0000054243761002418C000005424376] +12:29:45 ============================================================================ +12:29:45 Calculate Source COMM Id = 1 +12:29:45 ============================================================================ +12:29:45 + + +waiting on router queue for slot.... +12:29:48 ============================================================================ +12:29:48 Slot Id : <333> +12:29:48 Transaction Type : REQUEST +12:29:48 Received From : +12:29:48 ============================================================================ +12:29:48 FNo. Len. Field Value +12:29:48 ============================================================================ +12:29:48 [ 1] [ 4] [0800] +12:29:48 [ 2] [ 5] [02531] +12:29:48 [ 3] [ 6] [579128] +12:29:48 [ 7] [ 10] [0320052948] +12:29:48 [ 11] [ 6] [807137] +12:29:48 [ 15] [ 10] [0320052948] +12:29:48 [ 37] [ 11] [57912807137] +12:29:48 [ 70] [ 3] [001] +12:29:48 ============================================================================ +12:29:48 + + +waiting on router queue for slot.... +12:29:48 ============================================================================ +12:29:48 Slot Id : <333> +12:29:48 Transaction Type : RESPONSE +12:29:48 Received From : +12:29:48 ============================================================================ +12:29:48 FNo. Len. Field Value +12:29:48 ============================================================================ +12:29:48 [ 1] [ 4] [0810] +12:29:48 [ 7] [ 10] [0320052948] +12:29:48 [ 11] [ 6] [807137] +12:29:48 [ 15] [ 4] [0320] +12:29:48 [ 37] [ 12] [57912807137] +12:29:48 [ 39] [ 2] [00] +12:29:48 [ 70] [ 3] [001] +12:29:48 ============================================================================ +12:29:48 Sending to : +12:29:48 ============================================================================ +12:29:48 + + +waiting on router queue for slot.... +12:29:48 ============================================================================ +12:29:48 Slot Id : <331> +12:29:48 Transaction Type : REQUEST +12:29:48 Received From : +12:29:48 ============================================================================ +12:29:48 FNo. Len. Field Value +12:29:48 ============================================================================ +12:29:48 [ 1] [ 4] [0800] +12:29:48 [ 7] [ 10] [0320052856] +12:29:48 [ 11] [ 6] [156316] +12:29:48 [ 70] [ 3] [301] +12:29:48 ============================================================================ +12:29:48 + + +waiting on router queue for slot.... +12:29:48 Sending to : +12:29:48 ============================================================================ +12:29:48 ============================================================================ +12:29:48 Slot Id : <331> +12:29:48 Transaction Type : RESPONSE +12:29:48 Received From : +12:29:48 ============================================================================ +12:29:48 FNo. Len. Field Value +12:29:48 ============================================================================ +12:29:48 [ 1] [ 4] [0810] +12:29:48 [ 7] [ 10] [0320052856] +12:29:48 [ 11] [ 6] [156316] +12:29:48 [ 39] [ 2] [00] +12:29:48 [ 70] [ 3] [301] +12:29:48 ============================================================================ +12:29:48 Calculate Source COMM Id = 2 +12:29:48 ============================================================================ +12:29:48 + + +waiting on router queue for slot.... +12:29:55 ============================================================================ +12:29:55 Slot Id : <262> +12:29:55 Transaction Type : REQUEST +12:29:55 Received From : +12:29:55 ============================================================================ +12:29:55 FNo. Len. Field Value +12:29:55 ============================================================================ +12:29:55 [ 1] [ 4] [0800] +12:29:55 [ 7] [ 10] [0320053742] +12:29:55 [ 11] [ 6] [097615] +12:29:55 [ 37] [ 12] [57912097615] +12:29:55 [ 70] [ 3] [301] +12:29:55 ============================================================================ +12:29:55 + + +waiting on router queue for slot.... +12:29:55 Sending to : +12:29:55 ============================================================================ +12:29:55 ============================================================================ +12:29:55 Slot Id : <262> +12:29:55 Transaction Type : RESPONSE +12:29:55 Received From : +12:29:55 ============================================================================ +12:29:55 FNo. Len. Field Value +12:29:55 ============================================================================ +12:29:55 [ 1] [ 4] [0810] +12:29:55 [ 7] [ 10] [0320053742] +12:29:55 [ 11] [ 6] [097615] +12:29:55 [ 37] [ 12] [579120976150] +12:29:55 [ 39] [ 2] [00] +12:29:55 [ 70] [ 3] [810] +12:29:55 ============================================================================ +12:29:55 Calculate Source COMM Id = 1 +12:29:55 ============================================================================ +12:29:55 + + +waiting on router queue for slot.... +12:29:56 ============================================================================ +12:29:56 Slot Id : <321> +12:29:56 Transaction Type : REQUEST +12:29:56 Received From : +12:29:56 ============================================================================ +12:29:56 FNo. Len. Field Value +12:29:56 ============================================================================ +12:29:56 [ 1] [ 4] [0200] +12:29:56 [ 2] [ 16] [6688990107495002] +12:29:56 [ 3] [ 6] [010000] +12:29:56 [ 4] [ 12] [000100000000] +12:29:56 [ 7] [ 10] [0320122951] +12:29:56 [ 11] [ 6] [745179] +12:29:56 [ 12] [ 6] [122951] +12:29:56 [ 13] [ 4] [0320] +12:29:56 [ 15] [ 4] [0320] +12:29:56 [ 18] [ 4] [6011] +12:29:56 [ 22] [ 3] [900] +12:29:56 [ 25] [ 2] [02] +12:29:56 [ 28] [ 9] [D00002000] +12:29:56 [ 32] [ 6] [621354] +12:29:56 [ 35] [ 37] [6688990107495002=44031231500225900000] +12:29:56 [ 37] [ 12] [507904965669] +12:29:56 [ 41] [ 8] [15001100] +12:29:56 [ 42] [ 15] [NATIVE ] +12:29:56 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +12:29:56 [ 49] [ 3] [418] +12:29:56 [ 52] [ 16] [8F1D032BF63C0F04] +12:29:56 ============================================================================ +12:29:56 + + +waiting on router queue for slot.... +12:29:56 Sending to : +12:29:56 ============================================================================ +12:29:56 Sending to : +12:29:56 ============================================================================ +12:29:56 ============================================================================ +12:29:56 Slot Id : <334> +12:29:56 Transaction Type : REQUEST +12:29:56 Received From : +12:29:56 ============================================================================ +12:29:56 FNo. Len. Field Value +12:29:56 ============================================================================ +12:29:56 [ 1] [ 4] [0200] +12:29:56 [ 2] [ 16] [6213548000550960] +12:29:56 [ 3] [ 6] [010000] +12:29:56 [ 4] [ 12] [000010000000] +12:29:56 [ 7] [ 10] [0320122746] +12:29:56 [ 11] [ 6] [944381] +12:29:56 [ 12] [ 6] [122746] +12:29:56 [ 13] [ 4] [0320] +12:29:56 [ 15] [ 4] [0320] +12:29:56 [ 18] [ 4] [6011] +12:29:56 [ 19] [ 3] [418] +12:29:56 [ 22] [ 3] [021] +12:29:56 [ 25] [ 2] [01] +12:29:56 [ 28] [ 9] [D00002000] +12:29:56 [ 32] [ 6] [668899] +12:29:56 [ 35] [ 32] [6213548000550960=190112015096584] +12:29:56 [ 37] [ 12] [507901262009] +12:29:56 [ 41] [ 8] [03206001] +12:29:56 [ 42] [ 15] [APT ] +12:29:56 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +12:29:56 [ 49] [ 3] [418] +12:29:56 [ 52] [ 16] [2FCD8C276CD8E072] +12:29:56 ============================================================================ +12:29:56 + + +waiting on router queue for slot.... +12:29:56 Sending to : +12:29:56 ============================================================================ +12:29:56 Sending to : +12:29:56 ============================================================================ +12:29:56 ============================================================================ +12:29:56 Slot Id : <321> +12:29:56 Transaction Type : REQUEST +12:29:56 Received From : +12:29:56 ============================================================================ +12:29:56 FNo. Len. Field Value +12:29:56 ============================================================================ +12:29:56 [ 1] [ 4] [0200] +12:29:56 [ 2] [ 16] [6688990107495002] +12:29:56 [ 3] [ 6] [010000] +12:29:56 [ 4] [ 12] [000100000000] +12:29:56 [ 7] [ 10] [0320122951] +12:29:56 [ 11] [ 6] [745179] +12:29:56 [ 12] [ 6] [122951] +12:29:56 [ 13] [ 4] [0320] +12:29:56 [ 15] [ 4] [0320] +12:29:56 [ 18] [ 4] [6011] +12:29:56 [ 22] [ 3] [900] +12:29:56 [ 25] [ 2] [02] +12:29:56 [ 28] [ 9] [D00002000] +12:29:56 [ 32] [ 6] [621354] +12:29:56 [ 35] [ 37] [6688990107495002=44031231500225900000] +12:29:56 [ 37] [ 12] [507904965669] +12:29:56 [ 41] [ 8] [15001100] +12:29:56 [ 42] [ 15] [NATIVE ] +12:29:56 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +12:29:56 [ 49] [ 3] [418] +12:29:56 [ 52] [ 16] [8F1D032BF63C0F04] +12:29:56 ============================================================================ +12:29:56 + + +waiting on router queue for slot.... +12:29:56 Sending to : +12:29:56 ============================================================================ +12:29:56 ============================================================================ +12:29:56 Slot Id : <321> +12:29:56 Transaction Type : REQUEST +12:29:56 Received From : +12:29:56 ============================================================================ +12:29:56 FNo. Len. Field Value +12:29:56 ============================================================================ +12:29:56 [ 1] [ 4] [0200] +12:29:56 [ 2] [ 16] [6688990107495002] +12:29:56 [ 3] [ 6] [010000] +12:29:56 [ 4] [ 12] [000100000000] +12:29:56 [ 7] [ 10] [0320122951] +12:29:56 [ 11] [ 6] [745179] +12:29:56 [ 12] [ 6] [122951] +12:29:56 [ 13] [ 4] [0320] +12:29:56 [ 15] [ 4] [0320] +12:29:56 [ 18] [ 4] [6011] +12:29:56 [ 22] [ 3] [900] +12:29:56 [ 25] [ 2] [02] +12:29:56 [ 28] [ 9] [D00002000] +12:29:56 [ 32] [ 6] [621354] +12:29:56 [ 35] [ 37] [6688990107495002=44031231500225900000] +12:29:56 [ 37] [ 12] [507904965669] +12:29:56 [ 41] [ 8] [15001100] +12:29:56 [ 42] [ 15] [NATIVE ] +12:29:56 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +12:29:56 [ 49] [ 3] [418] +12:29:56 [ 52] [ 16] [D089A88DBB3662BB] +12:29:56 ============================================================================ +12:29:56 + + +waiting on router queue for slot.... +12:29:56 Sending to : <4> +12:29:56 ============================================================================ +12:29:56 ============================================================================ +12:29:56 Slot Id : <334> +12:29:56 Transaction Type : REQUEST +12:29:56 Received From : +12:29:56 ============================================================================ +12:29:56 FNo. Len. Field Value +12:29:56 ============================================================================ +12:29:56 [ 1] [ 4] [0200] +12:29:56 [ 2] [ 16] [6213548000550960] +12:29:56 [ 3] [ 6] [010000] +12:29:56 [ 4] [ 12] [000010000000] +12:29:56 [ 7] [ 10] [0320122746] +12:29:56 [ 11] [ 6] [944381] +12:29:56 [ 12] [ 6] [122746] +12:29:56 [ 13] [ 4] [0320] +12:29:56 [ 15] [ 4] [0320] +12:29:56 [ 18] [ 4] [6011] +12:29:56 [ 19] [ 3] [418] +12:29:56 [ 22] [ 3] [021] +12:29:56 [ 25] [ 2] [01] +12:29:56 [ 28] [ 9] [D00002000] +12:29:56 [ 32] [ 6] [668899] +12:29:56 [ 35] [ 32] [6213548000550960=190112015096584] +12:29:56 [ 37] [ 12] [507901262009] +12:29:56 [ 41] [ 8] [03206001] +12:29:56 [ 42] [ 15] [APT ] +12:29:56 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +12:29:56 [ 49] [ 3] [418] +12:29:56 [ 52] [ 16] [2FCD8C276CD8E072] +12:29:56 ============================================================================ +12:29:56 + + +waiting on router queue for slot.... +12:29:56 Sending to : +12:29:56 ============================================================================ +12:29:56 ============================================================================ +12:29:56 Slot Id : <334> +12:29:56 Transaction Type : REQUEST +12:29:56 Received From : +12:29:56 ============================================================================ +12:29:56 FNo. Len. Field Value +12:29:56 ============================================================================ +12:29:56 [ 1] [ 4] [0200] +12:29:56 [ 2] [ 16] [6213548000550960] +12:29:56 [ 3] [ 6] [010000] +12:29:56 [ 4] [ 12] [000010000000] +12:29:56 [ 7] [ 10] [0320122746] +12:29:56 [ 11] [ 6] [944381] +12:29:56 [ 12] [ 6] [122746] +12:29:56 [ 13] [ 4] [0320] +12:29:56 [ 15] [ 4] [0320] +12:29:56 [ 18] [ 4] [6011] +12:29:56 [ 19] [ 3] [418] +12:29:56 [ 22] [ 3] [021] +12:29:56 [ 25] [ 2] [01] +12:29:56 [ 28] [ 9] [D00002000] +12:29:56 [ 32] [ 6] [668899] +12:29:56 [ 35] [ 32] [6213548000550960=190112015096584] +12:29:56 [ 37] [ 12] [507901262009] +12:29:56 [ 41] [ 8] [03206001] +12:29:56 [ 42] [ 15] [APT ] +12:29:56 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +12:29:56 [ 49] [ 3] [418] +12:29:56 [ 52] [ 16] [719162310475031F] +12:29:56 ============================================================================ +12:29:56 + + +waiting on router queue for slot.... +12:29:56 Sending to : <0> +12:29:56 ============================================================================ +12:29:56 ============================================================================ +12:29:56 Slot Id : <334> +12:29:56 Transaction Type : RESPONSE +12:29:56 Received From : +12:29:56 ============================================================================ +12:29:56 FNo. Len. Field Value +12:29:56 ============================================================================ +12:29:56 [ 1] [ 4] [0210] +12:29:56 [ 2] [ 16] [6213548000550960] +12:29:56 [ 3] [ 6] [010000] +12:29:56 [ 4] [ 12] [000010000000] +12:29:56 [ 7] [ 10] [0320122746] +12:29:56 [ 11] [ 6] [944381] +12:29:56 [ 12] [ 6] [122746] +12:29:56 [ 13] [ 4] [0320] +12:29:56 [ 15] [ 4] [0320] +12:29:56 [ 18] [ 4] [6011] +12:29:56 [ 19] [ 3] [418] +12:29:56 [ 32] [ 6] [668899] +12:29:56 [ 35] [ 32] [6213548000550960=190112015096584] +12:29:56 [ 37] [ 12] [507901262009] +12:29:56 [ 38] [ 6] [131169] +12:29:56 [ 39] [ 2] [00] +12:29:56 [ 41] [ 8] [03206001] +12:29:56 [ 49] [ 3] [418] +12:29:56 [ 54] [ 40] [0001418C0000593031450002418C000059303145] +12:29:56 ============================================================================ +12:29:56 Sending to : +12:29:56 ============================================================================ +12:29:56 + + +waiting on router queue for slot.... +12:29:57 ============================================================================ +12:29:57 Slot Id : <321> +12:29:57 Transaction Type : RESPONSE +12:29:57 Received From : +12:29:57 ============================================================================ +12:29:57 FNo. Len. Field Value +12:29:57 ============================================================================ +12:29:57 [ 1] [ 4] [0210] +12:29:57 [ 2] [ 16] [6688990107495002] +12:29:57 [ 3] [ 6] [010000] +12:29:57 [ 4] [ 12] [000100000000] +12:29:57 [ 11] [ 6] [745179] +12:29:57 [ 12] [ 6] [122951] +12:29:57 [ 15] [ 4] [0320] +12:29:57 [ 18] [ 4] [6011] +12:29:57 [ 32] [ 6] [621354] +12:29:57 [ 35] [ 37] [6688990107495002=44031231500225900000] +12:29:57 [ 37] [ 12] [507904965669] +12:29:57 [ 38] [ 6] [031096] +12:29:57 [ 39] [ 2] [00] +12:29:57 [ 41] [ 8] [15001100] +12:29:57 [ 49] [ 3] [418] +12:29:57 [ 54] [ 20] [0002418C000044497019] +12:29:57 ============================================================================ +12:29:57 Sending to : +12:29:57 ============================================================================ +12:29:57 + + +waiting on router queue for slot.... +12:29:58 ============================================================================ +12:29:58 Slot Id : <334> +12:29:58 Transaction Type : RESPONSE +12:29:58 Received From : +12:29:58 ============================================================================ +12:29:58 FNo. Len. Field Value +12:29:58 ============================================================================ +12:29:58 [ 1] [ 4] [0210] +12:29:58 [ 2] [ 16] [6213548000550960] +12:29:58 [ 3] [ 6] [010000] +12:29:58 [ 4] [ 12] [000010000000] +12:29:58 [ 7] [ 10] [0320122746] +12:29:58 [ 11] [ 6] [944381] +12:29:58 [ 12] [ 6] [122746] +12:29:58 [ 13] [ 4] [0320] +12:29:58 [ 15] [ 4] [0320] +12:29:58 [ 18] [ 4] [6011] +12:29:58 [ 19] [ 3] [418] +12:29:58 [ 32] [ 6] [668899] +12:29:58 [ 35] [ 32] [6213548000550960=190112015096584] +12:29:58 [ 37] [ 12] [507901262009] +12:29:58 [ 38] [ 6] [131169] +12:29:58 [ 39] [ 2] [00] +12:29:58 [ 41] [ 8] [03206001] +12:29:58 [ 49] [ 3] [418] +12:29:58 [ 54] [ 40] [0001418C0000593031450002418C000059303145] +12:29:58 ============================================================================ +12:29:58 Calculate Source COMM Id = 4 +12:29:58 ============================================================================ +12:29:58 + + +waiting on router queue for slot.... +12:29:59 ============================================================================ +12:29:59 Slot Id : <336> +12:29:59 Transaction Type : REQUEST +12:29:59 Received From : +12:29:59 ============================================================================ +12:29:59 FNo. Len. Field Value +12:29:59 ============================================================================ +12:29:59 [ 1] [ 4] [0200] +12:29:59 [ 2] [ 16] [6213544001232872] +12:29:59 [ 3] [ 6] [302000] +12:29:59 [ 4] [ 12] [000000000000] +12:29:59 [ 7] [ 10] [0320122749] +12:29:59 [ 11] [ 6] [944382] +12:29:59 [ 12] [ 6] [122749] +12:29:59 [ 13] [ 4] [0320] +12:29:59 [ 15] [ 4] [0320] +12:29:59 [ 18] [ 4] [6011] +12:29:59 [ 19] [ 3] [418] +12:29:59 [ 22] [ 3] [021] +12:29:59 [ 25] [ 2] [01] +12:29:59 [ 28] [ 9] [D00000000] +12:29:59 [ 32] [ 6] [668899] +12:29:59 [ 35] [ 32] [6213544001232872=491212013287204] +12:29:59 [ 37] [ 12] [507902294776] +12:29:59 [ 41] [ 8] [03009006] +12:29:59 [ 42] [ 15] [APT ] +12:29:59 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +12:29:59 [ 49] [ 3] [418] +12:29:59 [ 52] [ 16] [FDF1F99D03B3B044] +12:29:59 ============================================================================ +12:29:59 + + +waiting on router queue for slot.... +12:29:59 Sending to : +12:29:59 ============================================================================ +12:29:59 Sending to : +12:29:59 ============================================================================ +12:29:59 ============================================================================ +12:29:59 Slot Id : <336> +12:29:59 Transaction Type : REQUEST +12:29:59 Received From : +12:29:59 ============================================================================ +12:29:59 FNo. Len. Field Value +12:29:59 ============================================================================ +12:29:59 [ 1] [ 4] [0200] +12:29:59 [ 2] [ 16] [6213544001232872] +12:29:59 [ 3] [ 6] [302000] +12:29:59 [ 4] [ 12] [000000000000] +12:29:59 [ 7] [ 10] [0320122749] +12:29:59 [ 11] [ 6] [944382] +12:29:59 [ 12] [ 6] [122749] +12:29:59 [ 13] [ 4] [0320] +12:29:59 [ 15] [ 4] [0320] +12:29:59 [ 18] [ 4] [6011] +12:29:59 [ 19] [ 3] [418] +12:29:59 [ 22] [ 3] [021] +12:29:59 [ 25] [ 2] [01] +12:29:59 [ 28] [ 9] [D00000000] +12:29:59 [ 32] [ 6] [668899] +12:29:59 [ 35] [ 32] [6213544001232872=491212013287204] +12:29:59 [ 37] [ 12] [507902294776] +12:29:59 [ 41] [ 8] [03009006] +12:29:59 [ 42] [ 15] [APT ] +12:29:59 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +12:29:59 [ 49] [ 3] [418] +12:29:59 [ 52] [ 16] [FDF1F99D03B3B044] +12:29:59 ============================================================================ +12:29:59 + + +waiting on router queue for slot.... +12:29:59 Sending to : +12:29:59 ============================================================================ +12:29:59 ============================================================================ +12:29:59 Slot Id : <336> +12:29:59 Transaction Type : REQUEST +12:29:59 Received From : +12:29:59 ============================================================================ +12:29:59 FNo. Len. Field Value +12:29:59 ============================================================================ +12:29:59 [ 1] [ 4] [0200] +12:29:59 [ 2] [ 16] [6213544001232872] +12:29:59 [ 3] [ 6] [302000] +12:29:59 [ 4] [ 12] [000000000000] +12:29:59 [ 7] [ 10] [0320122749] +12:29:59 [ 11] [ 6] [944382] +12:29:59 [ 12] [ 6] [122749] +12:29:59 [ 13] [ 4] [0320] +12:29:59 [ 15] [ 4] [0320] +12:29:59 [ 18] [ 4] [6011] +12:29:59 [ 19] [ 3] [418] +12:29:59 [ 22] [ 3] [021] +12:29:59 [ 25] [ 2] [01] +12:29:59 [ 28] [ 9] [D00000000] +12:29:59 [ 32] [ 6] [668899] +12:29:59 [ 35] [ 32] [6213544001232872=491212013287204] +12:29:59 [ 37] [ 12] [507902294776] +12:29:59 [ 41] [ 8] [03009006] +12:29:59 [ 42] [ 15] [APT ] +12:29:59 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +12:29:59 [ 49] [ 3] [418] +12:29:59 [ 52] [ 16] [14618697A696D4B3] +12:29:59 ============================================================================ +12:29:59 + + +waiting on router queue for slot.... +12:29:59 Sending to : <0> +12:29:59 ============================================================================ +12:29:59 ============================================================================ +12:29:59 Slot Id : <335> +12:29:59 Transaction Type : REQUEST +12:29:59 Received From : +12:29:59 ============================================================================ +12:29:59 FNo. Len. Field Value +12:29:59 ============================================================================ +12:29:59 [ 1] [ 4] [0800] +12:29:59 [ 7] [ 10] [0320052906] +12:29:59 [ 11] [ 6] [156317] +12:29:59 [ 70] [ 3] [301] +12:29:59 ============================================================================ +12:29:59 + + +waiting on router queue for slot.... +12:29:59 Sending to : +12:29:59 ============================================================================ +12:29:59 ============================================================================ +12:29:59 Slot Id : <335> +12:29:59 Transaction Type : RESPONSE +12:29:59 Received From : +12:29:59 ============================================================================ +12:29:59 FNo. Len. Field Value +12:29:59 ============================================================================ +12:29:59 [ 1] [ 4] [0810] +12:29:59 [ 7] [ 10] [0320052906] +12:29:59 [ 11] [ 6] [156317] +12:29:59 [ 39] [ 2] [00] +12:29:59 [ 70] [ 3] [301] +12:29:59 ============================================================================ +12:29:59 Calculate Source COMM Id = 2 +12:29:59 ============================================================================ +12:29:59 + + +waiting on router queue for slot.... +12:30:00 ============================================================================ +12:30:00 Slot Id : <336> +12:30:00 Transaction Type : RESPONSE +12:30:00 Received From : +12:30:00 ============================================================================ +12:30:00 FNo. Len. Field Value +12:30:00 ============================================================================ +12:30:00 [ 1] [ 4] [0210] +12:30:00 [ 2] [ 16] [6213544001232872] +12:30:00 [ 3] [ 6] [302000] +12:30:00 [ 4] [ 12] [000000000000] +12:30:00 [ 7] [ 10] [0320122749] +12:30:00 [ 11] [ 6] [944382] +12:30:00 [ 12] [ 6] [122749] +12:30:00 [ 13] [ 4] [0320] +12:30:00 [ 15] [ 4] [0320] +12:30:00 [ 18] [ 4] [6011] +12:30:00 [ 19] [ 3] [418] +12:30:00 [ 32] [ 6] [668899] +12:30:00 [ 35] [ 32] [6213544001232872=491212013287204] +12:30:00 [ 37] [ 12] [507902294776] +12:30:00 [ 38] [ 6] [207353] +12:30:00 [ 39] [ 2] [00] +12:30:00 [ 41] [ 8] [03009006] +12:30:00 [ 49] [ 3] [418] +12:30:00 [ 54] [ 40] [2001418C0011222412942002418C001122241294] +12:30:00 ============================================================================ +12:30:00 Sending to : +12:30:00 ============================================================================ +12:30:00 + + +waiting on router queue for slot.... +12:30:00 ============================================================================ +12:30:00 Slot Id : <321> +12:30:00 Transaction Type : RESPONSE +12:30:00 Received From : +12:30:00 ============================================================================ +12:30:00 FNo. Len. Field Value +12:30:00 ============================================================================ +12:30:00 [ 1] [ 4] [0210] +12:30:00 [ 2] [ 16] [6688990107495002] +12:30:00 [ 3] [ 6] [010000] +12:30:00 [ 4] [ 12] [000100000000] +12:30:00 [ 11] [ 6] [745179] +12:30:00 [ 12] [ 6] [122951] +12:30:00 [ 15] [ 4] [0320] +12:30:00 [ 18] [ 4] [6011] +12:30:00 [ 32] [ 6] [621354] +12:30:00 [ 35] [ 37] [6688990107495002=44031231500225900000] +12:30:00 [ 37] [ 12] [507904965669] +12:30:00 [ 38] [ 6] [031096] +12:30:00 [ 39] [ 2] [00] +12:30:00 [ 41] [ 8] [15001100] +12:30:00 [ 49] [ 3] [418] +12:30:00 [ 54] [ 20] [0002418C000044497019] +12:30:00 ============================================================================ +12:30:00 Calculate Source COMM Id = 0 +12:30:00 ============================================================================ +12:30:00 + + +waiting on router queue for slot.... +12:30:02 ============================================================================ +12:30:02 Slot Id : <336> +12:30:02 Transaction Type : RESPONSE +12:30:02 Received From : +12:30:02 ============================================================================ +12:30:02 FNo. Len. Field Value +12:30:02 ============================================================================ +12:30:02 [ 1] [ 4] [0210] +12:30:02 [ 2] [ 16] [6213544001232872] +12:30:02 [ 3] [ 6] [302000] +12:30:02 [ 4] [ 12] [000000000000] +12:30:02 [ 7] [ 10] [0320122749] +12:30:02 [ 11] [ 6] [944382] +12:30:02 [ 12] [ 6] [122749] +12:30:02 [ 13] [ 4] [0320] +12:30:02 [ 15] [ 4] [0320] +12:30:02 [ 18] [ 4] [6011] +12:30:02 [ 19] [ 3] [418] +12:30:02 [ 32] [ 6] [668899] +12:30:02 [ 35] [ 32] [6213544001232872=491212013287204] +12:30:02 [ 37] [ 12] [507902294776] +12:30:02 [ 38] [ 6] [207353] +12:30:02 [ 39] [ 2] [00] +12:30:02 [ 41] [ 8] [03009006] +12:30:02 [ 49] [ 3] [418] +12:30:02 [ 54] [ 40] [2001418C0011222412942002418C001122241294] +12:30:02 ============================================================================ +12:30:02 Calculate Source COMM Id = 4 +12:30:02 ============================================================================ +12:30:02 + + +waiting on router queue for slot.... +12:30:03 ============================================================================ +12:30:03 Slot Id : <320> +12:30:03 Transaction Type : REQUEST +12:30:03 Received From : +12:30:03 ============================================================================ +12:30:03 FNo. Len. Field Value +12:30:03 ============================================================================ +12:30:03 [ 1] [ 4] [0200] +12:30:03 [ 2] [ 16] [6688990040163469] +12:30:03 [ 3] [ 6] [012000] +12:30:03 [ 4] [ 12] [000020000000] +12:30:03 [ 7] [ 10] [0320052910] +12:30:03 [ 11] [ 6] [269046] +12:30:03 [ 12] [ 6] [122910] +12:30:03 [ 13] [ 4] [0320] +12:30:03 [ 14] [ 4] [9805] +12:30:03 [ 15] [ 4] [0320] +12:30:03 [ 18] [ 4] [6011] +12:30:03 [ 19] [ 3] [418] +12:30:03 [ 22] [ 3] [021] +12:30:03 [ 25] [ 2] [01] +12:30:03 [ 28] [ 9] [D00002000] +12:30:03 [ 32] [ 6] [180893] +12:30:03 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:30:03 [ 37] [ 12] [507905269046] +12:30:03 [ 41] [ 8] [0466PSLB] +12:30:03 [ 42] [ 15] [999999 ] +12:30:03 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +12:30:03 [ 49] [ 3] [418] +12:30:03 [ 52] [ 16] [9A3DC646B97D905A] +12:30:03 ============================================================================ +12:30:03 + + +waiting on router queue for slot.... +12:30:03 Sending to : +12:30:03 ============================================================================ +12:30:03 Sending to : +12:30:03 ============================================================================ +12:30:03 ============================================================================ +12:30:03 Slot Id : <320> +12:30:03 Transaction Type : REQUEST +12:30:03 Received From : +12:30:03 ============================================================================ +12:30:03 FNo. Len. Field Value +12:30:03 ============================================================================ +12:30:03 [ 1] [ 4] [0200] +12:30:03 [ 2] [ 16] [6688990040163469] +12:30:03 [ 3] [ 6] [012000] +12:30:03 [ 4] [ 12] [000020000000] +12:30:03 [ 7] [ 10] [0320052910] +12:30:03 [ 11] [ 6] [269046] +12:30:03 [ 12] [ 6] [122910] +12:30:03 [ 13] [ 4] [0320] +12:30:03 [ 14] [ 4] [9805] +12:30:03 [ 15] [ 4] [0320] +12:30:03 [ 18] [ 4] [6011] +12:30:03 [ 19] [ 3] [418] +12:30:03 [ 22] [ 3] [021] +12:30:03 [ 25] [ 2] [01] +12:30:03 [ 28] [ 9] [D00002000] +12:30:03 [ 32] [ 6] [180893] +12:30:03 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:30:03 [ 37] [ 12] [507905269046] +12:30:03 [ 41] [ 8] [0466PSLB] +12:30:03 [ 42] [ 15] [999999 ] +12:30:03 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +12:30:03 [ 49] [ 3] [418] +12:30:03 [ 52] [ 16] [9A3DC646B97D905A] +12:30:03 ============================================================================ +12:30:03 + + +waiting on router queue for slot.... +12:30:03 Sending to : +12:30:03 ============================================================================ +12:30:03 ============================================================================ +12:30:03 Slot Id : <320> +12:30:03 Transaction Type : REQUEST +12:30:03 Received From : +12:30:03 ============================================================================ +12:30:03 FNo. Len. Field Value +12:30:03 ============================================================================ +12:30:03 [ 1] [ 4] [0200] +12:30:03 [ 2] [ 16] [6688990040163469] +12:30:03 [ 3] [ 6] [012000] +12:30:03 [ 4] [ 12] [000020000000] +12:30:03 [ 7] [ 10] [0320052910] +12:30:03 [ 11] [ 6] [269046] +12:30:03 [ 12] [ 6] [122910] +12:30:03 [ 13] [ 4] [0320] +12:30:03 [ 14] [ 4] [9805] +12:30:03 [ 15] [ 4] [0320] +12:30:03 [ 18] [ 4] [6011] +12:30:03 [ 19] [ 3] [418] +12:30:03 [ 22] [ 3] [021] +12:30:03 [ 25] [ 2] [01] +12:30:03 [ 28] [ 9] [D00002000] +12:30:03 [ 32] [ 6] [180893] +12:30:03 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:30:03 [ 37] [ 12] [507905269046] +12:30:03 [ 41] [ 8] [0466PSLB] +12:30:03 [ 42] [ 15] [999999 ] +12:30:03 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +12:30:03 [ 49] [ 3] [418] +12:30:03 [ 52] [ 16] [0230B5288F9B27CC] +12:30:03 ============================================================================ +12:30:03 + + +waiting on router queue for slot.... +12:30:03 Sending to : <0> +12:30:03 ============================================================================ +12:30:03 ============================================================================ +12:30:03 Slot Id : <342> +12:30:03 Transaction Type : REQUEST +12:30:03 Received From : +12:30:03 ============================================================================ +12:30:03 FNo. Len. Field Value +12:30:03 ============================================================================ +12:30:03 [ 1] [ 4] [0200] +12:30:03 [ 2] [ 16] [6213544001670584] +12:30:03 [ 3] [ 6] [311000] +12:30:03 [ 4] [ 12] [000000000000] +12:30:03 [ 7] [ 10] [0320123750] +12:30:03 [ 11] [ 6] [274763] +12:30:03 [ 12] [ 6] [123750] +12:30:03 [ 13] [ 4] [0320] +12:30:03 [ 14] [ 4] [4912] +12:30:03 [ 15] [ 4] [0320] +12:30:03 [ 18] [ 4] [6011] +12:30:03 [ 22] [ 3] [900] +12:30:03 [ 25] [ 2] [02] +12:30:03 [ 28] [ 9] [000000000] +12:30:03 [ 32] [ 6] [220699] +12:30:03 [ 35] [ 32] [6213544001670584=491212017058836] +12:30:03 [ 37] [ 12] [507900057274] +12:30:03 [ 41] [ 8] [01000500] +12:30:03 [ 42] [ 15] [APTRA ] +12:30:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:30:03 [ 49] [ 3] [418] +12:30:03 [ 52] [ 16] [905FA5B20D31F1BF] +12:30:03 ============================================================================ +12:30:03 + + +waiting on router queue for slot.... +12:30:03 Sending to : +12:30:03 ============================================================================ +12:30:03 Sending to : +12:30:03 ============================================================================ +12:30:03 ============================================================================ +12:30:03 Slot Id : <342> +12:30:03 Transaction Type : REQUEST +12:30:03 Received From : +12:30:03 ============================================================================ +12:30:03 FNo. Len. Field Value +12:30:03 ============================================================================ +12:30:03 [ 1] [ 4] [0200] +12:30:03 [ 2] [ 16] [6213544001670584] +12:30:03 [ 3] [ 6] [311000] +12:30:03 [ 4] [ 12] [000000000000] +12:30:03 [ 7] [ 10] [0320123750] +12:30:03 [ 11] [ 6] [274763] +12:30:03 [ 12] [ 6] [123750] +12:30:03 [ 13] [ 4] [0320] +12:30:03 [ 14] [ 4] [4912] +12:30:03 [ 15] [ 4] [0320] +12:30:03 [ 18] [ 4] [6011] +12:30:03 [ 22] [ 3] [900] +12:30:03 [ 25] [ 2] [02] +12:30:03 [ 28] [ 9] [000000000] +12:30:03 [ 32] [ 6] [220699] +12:30:03 [ 35] [ 32] [6213544001670584=491212017058836] +12:30:03 [ 37] [ 12] [507900057274] +12:30:03 [ 41] [ 8] [01000500] +12:30:03 [ 42] [ 15] [APTRA ] +12:30:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:30:03 [ 49] [ 3] [418] +12:30:03 [ 52] [ 16] [905FA5B20D31F1BF] +12:30:03 ============================================================================ +12:30:03 + + +waiting on router queue for slot.... +12:30:03 Sending to : +12:30:03 ============================================================================ +12:30:03 ============================================================================ +12:30:03 Slot Id : <342> +12:30:03 Transaction Type : REQUEST +12:30:03 Received From : +12:30:03 ============================================================================ +12:30:03 FNo. Len. Field Value +12:30:03 ============================================================================ +12:30:03 [ 1] [ 4] [0200] +12:30:03 [ 2] [ 16] [6213544001670584] +12:30:03 [ 3] [ 6] [311000] +12:30:03 [ 4] [ 12] [000000000000] +12:30:03 [ 7] [ 10] [0320123750] +12:30:03 [ 11] [ 6] [274763] +12:30:03 [ 12] [ 6] [123750] +12:30:03 [ 13] [ 4] [0320] +12:30:03 [ 14] [ 4] [4912] +12:30:03 [ 15] [ 4] [0320] +12:30:03 [ 18] [ 4] [6011] +12:30:03 [ 22] [ 3] [900] +12:30:03 [ 25] [ 2] [02] +12:30:03 [ 28] [ 9] [000000000] +12:30:03 [ 32] [ 6] [220699] +12:30:03 [ 35] [ 32] [6213544001670584=491212017058836] +12:30:03 [ 37] [ 12] [507900057274] +12:30:03 [ 41] [ 8] [01000500] +12:30:03 [ 42] [ 15] [APTRA ] +12:30:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:30:03 [ 49] [ 3] [418] +12:30:03 [ 52] [ 16] [28E15FF1F9A95212] +12:30:03 ============================================================================ +12:30:03 + + +waiting on router queue for slot.... +12:30:03 Sending to : <0> +12:30:03 ============================================================================ +12:30:04 ============================================================================ +12:30:04 Slot Id : <320> +12:30:04 Transaction Type : RESPONSE +12:30:04 Received From : +12:30:04 ============================================================================ +12:30:04 FNo. Len. Field Value +12:30:04 ============================================================================ +12:30:04 [ 1] [ 4] [0210] +12:30:04 [ 2] [ 16] [6688990040163469] +12:30:04 [ 3] [ 6] [012000] +12:30:04 [ 4] [ 12] [000020000000] +12:30:04 [ 7] [ 10] [0320052910] +12:30:04 [ 11] [ 6] [269046] +12:30:04 [ 12] [ 6] [122910] +12:30:04 [ 13] [ 4] [0320] +12:30:04 [ 15] [ 4] [0320] +12:30:04 [ 18] [ 4] [6011] +12:30:04 [ 19] [ 3] [418] +12:30:04 [ 22] [ 3] [021] +12:30:04 [ 32] [ 6] [180893] +12:30:04 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:30:04 [ 37] [ 12] [507905269046] +12:30:04 [ 39] [ 2] [14] +12:30:04 [ 41] [ 8] [0466PSLB] +12:30:04 [ 49] [ 3] [418] +12:30:04 ============================================================================ +12:30:04 Sending to : +12:30:04 ============================================================================ +12:30:04 + + +waiting on router queue for slot.... +12:30:05 ============================================================================ +12:30:05 Slot Id : <320> +12:30:05 Transaction Type : RESPONSE +12:30:05 Received From : +12:30:05 ============================================================================ +12:30:05 FNo. Len. Field Value +12:30:05 ============================================================================ +12:30:05 [ 1] [ 4] [0210] +12:30:05 [ 2] [ 16] [6688990040163469] +12:30:05 [ 3] [ 6] [012000] +12:30:05 [ 4] [ 12] [000020000000] +12:30:05 [ 7] [ 10] [0320052910] +12:30:05 [ 11] [ 6] [269046] +12:30:05 [ 12] [ 6] [122910] +12:30:05 [ 13] [ 4] [0320] +12:30:05 [ 15] [ 4] [0320] +12:30:05 [ 18] [ 4] [6011] +12:30:05 [ 19] [ 3] [418] +12:30:05 [ 22] [ 3] [021] +12:30:05 [ 32] [ 6] [180893] +12:30:05 [ 35] [ 37] [6688990040163469=98051261131272100000] +12:30:05 [ 37] [ 12] [507905269046] +12:30:05 [ 39] [ 2] [14] +12:30:05 [ 41] [ 8] [0466PSLB] +12:30:05 [ 49] [ 3] [418] +12:30:05 ============================================================================ +12:30:05 Calculate Source COMM Id = 2 +12:30:05 ============================================================================ +12:30:05 + + +waiting on router queue for slot.... +12:30:05 ============================================================================ +12:30:05 Slot Id : <342> +12:30:05 Transaction Type : RESPONSE +12:30:05 Received From : +12:30:05 ============================================================================ +12:30:05 FNo. Len. Field Value +12:30:05 ============================================================================ +12:30:05 [ 1] [ 4] [0210] +12:30:05 [ 2] [ 16] [6213544001670584] +12:30:05 [ 3] [ 6] [311000] +12:30:05 [ 4] [ 12] [000000000000] +12:30:05 [ 7] [ 10] [0320123750] +12:30:05 [ 11] [ 6] [274763] +12:30:05 [ 12] [ 6] [123750] +12:30:05 [ 13] [ 4] [0320] +12:30:05 [ 15] [ 4] [0320] +12:30:05 [ 18] [ 4] [6011] +12:30:05 [ 32] [ 6] [220699] +12:30:05 [ 35] [ 32] [6213544001670584=491212017058836] +12:30:05 [ 37] [ 12] [507900057274] +12:30:05 [ 38] [ 6] [639694] +12:30:05 [ 39] [ 2] [00] +12:30:05 [ 41] [ 8] [01000500] +12:30:05 [ 49] [ 3] [418] +12:30:05 [ 54] [ 40] [1001418C0000492847091002418C000049284709] +12:30:05 ============================================================================ +12:30:05 Sending to : +12:30:05 ============================================================================ +12:30:05 + + +waiting on router queue for slot.... +12:30:05 ============================================================================ +12:30:05 Slot Id : <345> +12:30:05 Transaction Type : REQUEST +12:30:05 Received From : +12:30:05 ============================================================================ +12:30:05 FNo. Len. Field Value +12:30:05 ============================================================================ +12:30:05 [ 1] [ 4] [0800] +12:30:05 [ 7] [ 10] [0320122952] +12:30:05 [ 11] [ 6] [004305] +12:30:05 [ 37] [ 12] [507912004305] +12:30:05 [ 70] [ 3] [ ] +12:30:05 ============================================================================ +12:30:05 + + +waiting on router queue for slot.... +12:30:05 Sending to : +12:30:05 ============================================================================ +12:30:05 ============================================================================ +12:30:05 Slot Id : <345> +12:30:05 Transaction Type : RESPONSE +12:30:05 Received From : +12:30:05 ============================================================================ +12:30:05 FNo. Len. Field Value +12:30:05 ============================================================================ +12:30:05 [ 1] [ 4] [0810] +12:30:05 [ 7] [ 10] [0320122952] +12:30:05 [ 11] [ 6] [004305] +12:30:05 [ 37] [ 12] [507912004305] +12:30:05 [ 39] [ 2] [91] +12:30:05 [ 70] [ 3] [ ] +12:30:05 ============================================================================ +12:30:05 Calculate Source COMM Id = 3 +12:30:05 ============================================================================ +12:30:05 + + +waiting on router queue for slot.... +12:30:07 ============================================================================ +12:30:07 Slot Id : <342> +12:30:07 Transaction Type : RESPONSE +12:30:07 Received From : +12:30:07 ============================================================================ +12:30:07 FNo. Len. Field Value +12:30:07 ============================================================================ +12:30:07 [ 1] [ 4] [0210] +12:30:07 [ 2] [ 16] [6213544001670584] +12:30:07 [ 3] [ 6] [311000] +12:30:07 [ 4] [ 12] [000000000000] +12:30:07 [ 7] [ 10] [0320123750] +12:30:07 [ 11] [ 6] [274763] +12:30:07 [ 12] [ 6] [123750] +12:30:07 [ 13] [ 4] [0320] +12:30:07 [ 15] [ 4] [0320] +12:30:07 [ 18] [ 4] [6011] +12:30:07 [ 32] [ 6] [220699] +12:30:07 [ 35] [ 32] [6213544001670584=491212017058836] +12:30:07 [ 37] [ 12] [507900057274] +12:30:07 [ 38] [ 6] [639694] +12:30:07 [ 39] [ 2] [00] +12:30:07 [ 41] [ 8] [01000500] +12:30:07 [ 49] [ 3] [418] +12:30:07 [ 54] [ 40] [1001418C0000492847091002418C000049284709] +12:30:07 ============================================================================ +12:30:07 Calculate Source COMM Id = 1 +12:30:07 ============================================================================ +12:30:07 + + +waiting on router queue for slot.... +12:30:21 ============================================================================ +12:30:21 Slot Id : <341> +12:30:21 Transaction Type : REQUEST +12:30:21 Received From : +12:30:21 ============================================================================ +12:30:21 FNo. Len. Field Value +12:30:21 ============================================================================ +12:30:21 [ 1] [ 4] [0800] +12:30:21 [ 7] [ 10] [0320052927] +12:30:21 [ 11] [ 6] [156318] +12:30:21 [ 70] [ 3] [301] +12:30:21 ============================================================================ +12:30:21 + + +waiting on router queue for slot.... +12:30:21 Sending to : +12:30:21 ============================================================================ +12:30:21 ============================================================================ +12:30:21 Slot Id : <341> +12:30:21 Transaction Type : RESPONSE +12:30:21 Received From : +12:30:21 ============================================================================ +12:30:21 FNo. Len. Field Value +12:30:21 ============================================================================ +12:30:21 [ 1] [ 4] [0810] +12:30:21 [ 7] [ 10] [0320052927] +12:30:21 [ 11] [ 6] [156318] +12:30:21 [ 39] [ 2] [00] +12:30:21 [ 70] [ 3] [301] +12:30:21 ============================================================================ +12:30:21 Calculate Source COMM Id = 2 +12:30:21 ============================================================================ +12:30:21 + + +waiting on router queue for slot.... +12:30:35 ============================================================================ +12:30:35 Slot Id : <344> +12:30:35 Transaction Type : REQUEST +12:30:35 Received From : +12:30:35 ============================================================================ +12:30:35 FNo. Len. Field Value +12:30:35 ============================================================================ +12:30:35 [ 1] [ 4] [0800] +12:30:35 [ 7] [ 10] [0320052943] +12:30:35 [ 11] [ 6] [156319] +12:30:35 [ 70] [ 3] [301] +12:30:35 ============================================================================ +12:30:35 + + +waiting on router queue for slot.... +12:30:35 Sending to : +12:30:35 ============================================================================ +12:30:35 ============================================================================ +12:30:35 Slot Id : <344> +12:30:35 Transaction Type : RESPONSE +12:30:35 Received From : +12:30:35 ============================================================================ +12:30:35 FNo. Len. Field Value +12:30:35 ============================================================================ +12:30:35 [ 1] [ 4] [0810] +12:30:35 [ 7] [ 10] [0320052943] +12:30:35 [ 11] [ 6] [156319] +12:30:35 [ 39] [ 2] [00] +12:30:35 [ 70] [ 3] [301] +12:30:35 ============================================================================ +12:30:35 Calculate Source COMM Id = 2 +12:30:35 ============================================================================ +12:30:35 + + +waiting on router queue for slot.... +12:30:41 ============================================================================ +12:30:41 Slot Id : <268> +12:30:41 Transaction Type : REQUEST +12:30:41 Received From : +12:30:41 ============================================================================ +12:30:41 FNo. Len. Field Value +12:30:41 ============================================================================ +12:30:41 [ 1] [ 4] [0200] +12:30:41 [ 2] [ 16] [6213544001670584] +12:30:41 [ 3] [ 6] [011000] +12:30:41 [ 4] [ 12] [000040000000] +12:30:41 [ 7] [ 10] [0320123828] +12:30:41 [ 11] [ 6] [274764] +12:30:41 [ 12] [ 6] [123828] +12:30:41 [ 13] [ 4] [0320] +12:30:41 [ 14] [ 4] [4912] +12:30:41 [ 15] [ 4] [0320] +12:30:41 [ 18] [ 4] [6011] +12:30:41 [ 22] [ 3] [900] +12:30:41 [ 25] [ 2] [02] +12:30:41 [ 28] [ 9] [D00002000] +12:30:41 [ 32] [ 6] [220699] +12:30:41 [ 35] [ 32] [6213544001670584=491212017058836] +12:30:41 [ 37] [ 12] [507900057275] +12:30:41 [ 41] [ 8] [01000500] +12:30:41 [ 42] [ 15] [APTRA ] +12:30:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:30:41 [ 49] [ 3] [418] +12:30:41 [ 52] [ 16] [905FA5B20D31F1BF] +12:30:41 ============================================================================ +12:30:41 + + +waiting on router queue for slot.... +12:30:41 Sending to : +12:30:41 ============================================================================ +12:30:41 Sending to : +12:30:41 ============================================================================ +12:30:41 ============================================================================ +12:30:41 Slot Id : <268> +12:30:41 Transaction Type : REQUEST +12:30:41 Received From : +12:30:41 ============================================================================ +12:30:41 FNo. Len. Field Value +12:30:41 ============================================================================ +12:30:41 [ 1] [ 4] [0200] +12:30:41 [ 2] [ 16] [6213544001670584] +12:30:41 [ 3] [ 6] [011000] +12:30:41 [ 4] [ 12] [000040000000] +12:30:41 [ 7] [ 10] [0320123828] +12:30:41 [ 11] [ 6] [274764] +12:30:41 [ 12] [ 6] [123828] +12:30:41 [ 13] [ 4] [0320] +12:30:41 [ 14] [ 4] [4912] +12:30:41 [ 15] [ 4] [0320] +12:30:41 [ 18] [ 4] [6011] +12:30:41 [ 22] [ 3] [900] +12:30:41 [ 25] [ 2] [02] +12:30:41 [ 28] [ 9] [D00002000] +12:30:41 [ 32] [ 6] [220699] +12:30:41 [ 35] [ 32] [6213544001670584=491212017058836] +12:30:41 [ 37] [ 12] [507900057275] +12:30:41 [ 41] [ 8] [01000500] +12:30:41 [ 42] [ 15] [APTRA ] +12:30:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:30:41 [ 49] [ 3] [418] +12:30:41 [ 52] [ 16] [905FA5B20D31F1BF] +12:30:41 ============================================================================ +12:30:41 + + +waiting on router queue for slot.... +12:30:41 Sending to : +12:30:41 ============================================================================ +12:30:41 ============================================================================ +12:30:41 Slot Id : <268> +12:30:41 Transaction Type : REQUEST +12:30:41 Received From : +12:30:41 ============================================================================ +12:30:41 FNo. Len. Field Value +12:30:41 ============================================================================ +12:30:41 [ 1] [ 4] [0200] +12:30:41 [ 2] [ 16] [6213544001670584] +12:30:41 [ 3] [ 6] [011000] +12:30:41 [ 4] [ 12] [000040000000] +12:30:41 [ 7] [ 10] [0320123828] +12:30:41 [ 11] [ 6] [274764] +12:30:41 [ 12] [ 6] [123828] +12:30:41 [ 13] [ 4] [0320] +12:30:41 [ 14] [ 4] [4912] +12:30:41 [ 15] [ 4] [0320] +12:30:41 [ 18] [ 4] [6011] +12:30:41 [ 22] [ 3] [900] +12:30:41 [ 25] [ 2] [02] +12:30:41 [ 28] [ 9] [D00002000] +12:30:41 [ 32] [ 6] [220699] +12:30:41 [ 35] [ 32] [6213544001670584=491212017058836] +12:30:41 [ 37] [ 12] [507900057275] +12:30:41 [ 41] [ 8] [01000500] +12:30:41 [ 42] [ 15] [APTRA ] +12:30:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:30:41 [ 49] [ 3] [418] +12:30:41 [ 52] [ 16] [28E15FF1F9A95212] +12:30:41 ============================================================================ +12:30:41 + + +waiting on router queue for slot.... +12:30:41 Sending to : <0> +12:30:41 ============================================================================ +12:30:42 ============================================================================ +12:30:42 Slot Id : <323> +12:30:42 Transaction Type : REQUEST +12:30:42 Received From : +12:30:42 ============================================================================ +12:30:42 FNo. Len. Field Value +12:30:42 ============================================================================ +12:30:42 [ 1] [ 4] [0200] +12:30:42 [ 2] [ 16] [6213541000686033] +12:30:42 [ 3] [ 6] [010000] +12:30:42 [ 4] [ 12] [000100000000] +12:30:42 [ 7] [ 10] [0320052949] +12:30:42 [ 11] [ 6] [269050] +12:30:42 [ 12] [ 6] [122949] +12:30:42 [ 13] [ 4] [0320] +12:30:42 [ 14] [ 4] [4912] +12:30:42 [ 15] [ 4] [0320] +12:30:42 [ 18] [ 4] [6011] +12:30:42 [ 19] [ 3] [418] +12:30:42 [ 22] [ 3] [021] +12:30:42 [ 25] [ 2] [01] +12:30:42 [ 28] [ 9] [D00002000] +12:30:42 [ 32] [ 6] [180893] +12:30:42 [ 35] [ 32] [6213541000686033=491212018603392] +12:30:42 [ 37] [ 12] [507905269050] +12:30:42 [ 41] [ 8] [0114XKBR] +12:30:42 [ 42] [ 15] [999999 ] +12:30:42 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +12:30:42 [ 49] [ 3] [418] +12:30:42 [ 52] [ 16] [8D682E6D96719B1E] +12:30:42 ============================================================================ +12:30:42 + + +waiting on router queue for slot.... +12:30:42 Sending to : +12:30:42 ============================================================================ +12:30:42 Sending to : +12:30:42 ============================================================================ +12:30:42 ============================================================================ +12:30:42 Slot Id : <268> +12:30:42 Transaction Type : RESPONSE +12:30:42 Received From : +12:30:42 ============================================================================ +12:30:42 FNo. Len. Field Value +12:30:42 ============================================================================ +12:30:42 [ 1] [ 4] [0210] +12:30:42 [ 2] [ 16] [6213544001670584] +12:30:42 [ 3] [ 6] [011000] +12:30:42 [ 4] [ 12] [000040000000] +12:30:42 [ 7] [ 10] [0320123828] +12:30:42 [ 11] [ 6] [274764] +12:30:42 [ 12] [ 6] [123828] +12:30:42 [ 13] [ 4] [0320] +12:30:42 [ 15] [ 4] [0320] +12:30:42 [ 18] [ 4] [6011] +12:30:42 [ 32] [ 6] [220699] +12:30:42 [ 35] [ 32] [6213544001670584=491212017058836] +12:30:42 [ 37] [ 12] [507900057275] +12:30:42 [ 38] [ 6] [578982] +12:30:42 [ 39] [ 2] [00] +12:30:42 [ 41] [ 8] [01000500] +12:30:42 [ 49] [ 3] [418] +12:30:42 [ 54] [ 40] [1001418C0000090847091002418C000009084709] +12:30:42 ============================================================================ +12:30:42 Sending to : +12:30:42 ============================================================================ +12:30:42 + + +waiting on router queue for slot.... +12:30:42 ============================================================================ +12:30:42 Slot Id : <323> +12:30:42 Transaction Type : REQUEST +12:30:42 Received From : +12:30:42 ============================================================================ +12:30:42 FNo. Len. Field Value +12:30:42 ============================================================================ +12:30:42 [ 1] [ 4] [0200] +12:30:42 [ 2] [ 16] [6213541000686033] +12:30:42 [ 3] [ 6] [010000] +12:30:42 [ 4] [ 12] [000100000000] +12:30:42 [ 7] [ 10] [0320052949] +12:30:42 [ 11] [ 6] [269050] +12:30:42 [ 12] [ 6] [122949] +12:30:42 [ 13] [ 4] [0320] +12:30:42 [ 14] [ 4] [4912] +12:30:42 [ 15] [ 4] [0320] +12:30:42 [ 18] [ 4] [6011] +12:30:42 [ 19] [ 3] [418] +12:30:42 [ 22] [ 3] [021] +12:30:42 [ 25] [ 2] [01] +12:30:42 [ 28] [ 9] [D00002000] +12:30:42 [ 32] [ 6] [180893] +12:30:42 [ 35] [ 32] [6213541000686033=491212018603392] +12:30:42 [ 37] [ 12] [507905269050] +12:30:42 [ 41] [ 8] [0114XKBR] +12:30:42 [ 42] [ 15] [999999 ] +12:30:42 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +12:30:42 [ 49] [ 3] [418] +12:30:42 [ 52] [ 16] [8D682E6D96719B1E] +12:30:42 ============================================================================ +12:30:42 + + +waiting on router queue for slot.... +12:30:42 Sending to : +12:30:42 ============================================================================ +12:30:42 ============================================================================ +12:30:42 Slot Id : <323> +12:30:42 Transaction Type : REQUEST +12:30:42 Received From : +12:30:42 ============================================================================ +12:30:42 FNo. Len. Field Value +12:30:42 ============================================================================ +12:30:42 [ 1] [ 4] [0200] +12:30:42 [ 2] [ 16] [6213541000686033] +12:30:42 [ 3] [ 6] [010000] +12:30:42 [ 4] [ 12] [000100000000] +12:30:42 [ 7] [ 10] [0320052949] +12:30:42 [ 11] [ 6] [269050] +12:30:42 [ 12] [ 6] [122949] +12:30:42 [ 13] [ 4] [0320] +12:30:42 [ 14] [ 4] [4912] +12:30:42 [ 15] [ 4] [0320] +12:30:42 [ 18] [ 4] [6011] +12:30:42 [ 19] [ 3] [418] +12:30:42 [ 22] [ 3] [021] +12:30:42 [ 25] [ 2] [01] +12:30:42 [ 28] [ 9] [D00002000] +12:30:42 [ 32] [ 6] [180893] +12:30:42 [ 35] [ 32] [6213541000686033=491212018603392] +12:30:42 [ 37] [ 12] [507905269050] +12:30:42 [ 41] [ 8] [0114XKBR] +12:30:42 [ 42] [ 15] [999999 ] +12:30:42 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +12:30:42 [ 49] [ 3] [418] +12:30:42 [ 52] [ 16] [E4131F966A359C9F] +12:30:42 ============================================================================ +12:30:42 + + +waiting on router queue for slot.... +12:30:42 Sending to : <0> +12:30:42 ============================================================================ +12:30:43 ============================================================================ +12:30:43 Slot Id : <323> +12:30:43 Transaction Type : RESPONSE +12:30:43 Received From : +12:30:43 ============================================================================ +12:30:43 FNo. Len. Field Value +12:30:43 ============================================================================ +12:30:43 [ 1] [ 4] [0210] +12:30:43 [ 2] [ 16] [6213541000686033] +12:30:43 [ 3] [ 6] [010000] +12:30:43 [ 4] [ 12] [000100000000] +12:30:43 [ 7] [ 10] [0320052949] +12:30:43 [ 11] [ 6] [269050] +12:30:43 [ 12] [ 6] [122949] +12:30:43 [ 13] [ 4] [0320] +12:30:43 [ 15] [ 4] [0320] +12:30:43 [ 18] [ 4] [6011] +12:30:43 [ 19] [ 3] [418] +12:30:43 [ 32] [ 6] [180893] +12:30:43 [ 35] [ 32] [6213541000686033=491212018603392] +12:30:43 [ 37] [ 12] [507905269050] +12:30:43 [ 38] [ 6] [203821] +12:30:43 [ 39] [ 2] [00] +12:30:43 [ 41] [ 8] [0114XKBR] +12:30:43 [ 49] [ 3] [418] +12:30:43 [ 54] [ 40] [0001840C0000001127410002840C000000112741] +12:30:43 ============================================================================ +12:30:43 Sending to : +12:30:43 ============================================================================ +12:30:43 + + +waiting on router queue for slot.... +12:30:43 ============================================================================ +12:30:43 Slot Id : <268> +12:30:43 Transaction Type : RESPONSE +12:30:43 Received From : +12:30:43 ============================================================================ +12:30:43 FNo. Len. Field Value +12:30:43 ============================================================================ +12:30:43 [ 1] [ 4] [0210] +12:30:43 [ 2] [ 16] [6213544001670584] +12:30:43 [ 3] [ 6] [011000] +12:30:43 [ 4] [ 12] [000040000000] +12:30:43 [ 7] [ 10] [0320123828] +12:30:43 [ 11] [ 6] [274764] +12:30:43 [ 12] [ 6] [123828] +12:30:43 [ 13] [ 4] [0320] +12:30:43 [ 15] [ 4] [0320] +12:30:43 [ 18] [ 4] [6011] +12:30:43 [ 32] [ 6] [220699] +12:30:43 [ 35] [ 32] [6213544001670584=491212017058836] +12:30:43 [ 37] [ 12] [507900057275] +12:30:43 [ 38] [ 6] [578982] +12:30:43 [ 39] [ 2] [00] +12:30:43 [ 41] [ 8] [01000500] +12:30:43 [ 49] [ 3] [418] +12:30:43 [ 54] [ 40] [1001418C0000090847091002418C000009084709] +12:30:43 ============================================================================ +12:30:43 Calculate Source COMM Id = 1 +12:30:43 ============================================================================ +12:30:43 + + +waiting on router queue for slot.... +12:30:45 ============================================================================ +12:30:45 Slot Id : <323> +12:30:45 Transaction Type : RESPONSE +12:30:45 Received From : +12:30:45 ============================================================================ +12:30:45 FNo. Len. Field Value +12:30:45 ============================================================================ +12:30:45 [ 1] [ 4] [0210] +12:30:45 [ 2] [ 16] [6213541000686033] +12:30:45 [ 3] [ 6] [010000] +12:30:45 [ 4] [ 12] [000100000000] +12:30:45 [ 7] [ 10] [0320052949] +12:30:45 [ 11] [ 6] [269050] +12:30:45 [ 12] [ 6] [122949] +12:30:45 [ 13] [ 4] [0320] +12:30:45 [ 15] [ 4] [0320] +12:30:45 [ 18] [ 4] [6011] +12:30:45 [ 19] [ 3] [418] +12:30:45 [ 32] [ 6] [180893] +12:30:45 [ 35] [ 32] [6213541000686033=491212018603392] +12:30:45 [ 37] [ 12] [507905269050] +12:30:45 [ 38] [ 6] [203821] +12:30:45 [ 39] [ 2] [00] +12:30:45 [ 41] [ 8] [0114XKBR] +12:30:45 [ 49] [ 3] [418] +12:30:45 [ 54] [ 40] [0001840C0000001127410002840C000000112741] +12:30:45 ============================================================================ +12:30:45 Calculate Source COMM Id = 2 +12:30:45 ============================================================================ +12:30:45 + + +waiting on router queue for slot.... +12:30:50 ============================================================================ +12:30:50 Slot Id : <339> +12:30:50 Transaction Type : REQUEST +12:30:50 Received From : +12:30:50 ============================================================================ +12:30:50 FNo. Len. Field Value +12:30:50 ============================================================================ +12:30:50 [ 1] [ 4] [0800] +12:30:50 [ 2] [ 5] [02531] +12:30:50 [ 3] [ 6] [579128] +12:30:50 [ 7] [ 10] [0320053050] +12:30:50 [ 11] [ 6] [807138] +12:30:50 [ 15] [ 10] [0320053050] +12:30:50 [ 37] [ 11] [57912807138] +12:30:50 [ 70] [ 3] [001] +12:30:50 ============================================================================ +12:30:50 + + +waiting on router queue for slot.... +12:30:50 ============================================================================ +12:30:50 Slot Id : <339> +12:30:50 Transaction Type : RESPONSE +12:30:50 Received From : +12:30:50 ============================================================================ +12:30:50 FNo. Len. Field Value +12:30:50 ============================================================================ +12:30:50 [ 1] [ 4] [0810] +12:30:50 [ 7] [ 10] [0320053050] +12:30:50 [ 11] [ 6] [807138] +12:30:50 [ 15] [ 4] [0320] +12:30:50 [ 37] [ 12] [57912807138] +12:30:50 [ 39] [ 2] [00] +12:30:50 [ 70] [ 3] [001] +12:30:50 ============================================================================ +12:30:50 Sending to : +12:30:50 ============================================================================ +12:30:50 + + +waiting on router queue for slot.... +12:30:56 ============================================================================ +12:30:56 Slot Id : <348> +12:30:56 Transaction Type : REQUEST +12:30:56 Received From : +12:30:56 ============================================================================ +12:30:56 FNo. Len. Field Value +12:30:56 ============================================================================ +12:30:56 [ 1] [ 4] [0800] +12:30:56 [ 7] [ 10] [0320053003] +12:30:56 [ 11] [ 6] [156320] +12:30:56 [ 70] [ 3] [301] +12:30:56 ============================================================================ +12:30:56 + + +waiting on router queue for slot.... +12:30:56 Sending to : +12:30:56 ============================================================================ +12:30:56 ============================================================================ +12:30:56 Slot Id : <348> +12:30:56 Transaction Type : RESPONSE +12:30:56 Received From : +12:30:56 ============================================================================ +12:30:56 FNo. Len. Field Value +12:30:56 ============================================================================ +12:30:56 [ 1] [ 4] [0810] +12:30:56 [ 7] [ 10] [0320053003] +12:30:56 [ 11] [ 6] [156320] +12:30:56 [ 39] [ 2] [00] +12:30:56 [ 70] [ 3] [301] +12:30:56 ============================================================================ +12:30:56 Calculate Source COMM Id = 2 +12:30:56 ============================================================================ +12:30:56 + + +waiting on router queue for slot.... +12:31:06 ============================================================================ +12:31:06 Slot Id : <329> +12:31:06 Transaction Type : REQUEST +12:31:06 Received From : +12:31:06 ============================================================================ +12:31:06 FNo. Len. Field Value +12:31:06 ============================================================================ +12:31:06 [ 1] [ 4] [0800] +12:31:06 [ 7] [ 10] [0320053014] +12:31:06 [ 11] [ 6] [156321] +12:31:06 [ 70] [ 3] [301] +12:31:06 ============================================================================ +12:31:06 + + +waiting on router queue for slot.... +12:31:06 Sending to : +12:31:06 ============================================================================ +12:31:06 ============================================================================ +12:31:06 Slot Id : <329> +12:31:06 Transaction Type : RESPONSE +12:31:06 Received From : +12:31:06 ============================================================================ +12:31:06 FNo. Len. Field Value +12:31:06 ============================================================================ +12:31:06 [ 1] [ 4] [0810] +12:31:06 [ 7] [ 10] [0320053014] +12:31:06 [ 11] [ 6] [156321] +12:31:06 [ 39] [ 2] [00] +12:31:06 [ 70] [ 3] [301] +12:31:06 ============================================================================ +12:31:06 Calculate Source COMM Id = 2 +12:31:06 ============================================================================ +12:31:06 + + +waiting on router queue for slot.... +12:31:07 ============================================================================ +12:31:07 Slot Id : <352> +12:31:07 Transaction Type : REQUEST +12:31:07 Received From : +12:31:07 ============================================================================ +12:31:07 FNo. Len. Field Value +12:31:07 ============================================================================ +12:31:07 [ 1] [ 4] [0200] +12:31:07 [ 2] [ 16] [6213548000292233] +12:31:07 [ 3] [ 6] [011000] +12:31:07 [ 4] [ 12] [000002000000] +12:31:07 [ 7] [ 10] [0320123855] +12:31:07 [ 11] [ 6] [223719] +12:31:07 [ 12] [ 6] [123855] +12:31:07 [ 13] [ 4] [0320] +12:31:07 [ 14] [ 4] [1803] +12:31:07 [ 15] [ 4] [0320] +12:31:07 [ 18] [ 4] [6011] +12:31:07 [ 22] [ 3] [900] +12:31:07 [ 25] [ 2] [02] +12:31:07 [ 28] [ 9] [D00002000] +12:31:07 [ 32] [ 6] [220699] +12:31:07 [ 35] [ 32] [6213548000292233=180312019223980] +12:31:07 [ 37] [ 12] [507900118758] +12:31:07 [ 41] [ 8] [01001100] +12:31:07 [ 42] [ 15] [APTRA ] +12:31:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:31:07 [ 49] [ 3] [418] +12:31:07 [ 52] [ 16] [D988415D3BBD6688] +12:31:07 ============================================================================ +12:31:07 + + +waiting on router queue for slot.... +12:31:07 Sending to : +12:31:07 ============================================================================ +12:31:07 Sending to : +12:31:07 ============================================================================ +12:31:08 ============================================================================ +12:31:08 Slot Id : <352> +12:31:08 Transaction Type : REQUEST +12:31:08 Received From : +12:31:08 ============================================================================ +12:31:08 FNo. Len. Field Value +12:31:08 ============================================================================ +12:31:08 [ 1] [ 4] [0200] +12:31:08 [ 2] [ 16] [6213548000292233] +12:31:08 [ 3] [ 6] [011000] +12:31:08 [ 4] [ 12] [000002000000] +12:31:08 [ 7] [ 10] [0320123855] +12:31:08 [ 11] [ 6] [223719] +12:31:08 [ 12] [ 6] [123855] +12:31:08 [ 13] [ 4] [0320] +12:31:08 [ 14] [ 4] [1803] +12:31:08 [ 15] [ 4] [0320] +12:31:08 [ 18] [ 4] [6011] +12:31:08 [ 22] [ 3] [900] +12:31:08 [ 25] [ 2] [02] +12:31:08 [ 28] [ 9] [D00002000] +12:31:08 [ 32] [ 6] [220699] +12:31:08 [ 35] [ 32] [6213548000292233=180312019223980] +12:31:08 [ 37] [ 12] [507900118758] +12:31:08 [ 41] [ 8] [01001100] +12:31:08 [ 42] [ 15] [APTRA ] +12:31:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:31:08 [ 49] [ 3] [418] +12:31:08 [ 52] [ 16] [D988415D3BBD6688] +12:31:08 ============================================================================ +12:31:08 + + +waiting on router queue for slot.... +12:31:08 Sending to : +12:31:08 ============================================================================ +12:31:08 ============================================================================ +12:31:08 Slot Id : <352> +12:31:08 Transaction Type : REQUEST +12:31:08 Received From : +12:31:08 ============================================================================ +12:31:08 FNo. Len. Field Value +12:31:08 ============================================================================ +12:31:08 [ 1] [ 4] [0200] +12:31:08 [ 2] [ 16] [6213548000292233] +12:31:08 [ 3] [ 6] [011000] +12:31:08 [ 4] [ 12] [000002000000] +12:31:08 [ 7] [ 10] [0320123855] +12:31:08 [ 11] [ 6] [223719] +12:31:08 [ 12] [ 6] [123855] +12:31:08 [ 13] [ 4] [0320] +12:31:08 [ 14] [ 4] [1803] +12:31:08 [ 15] [ 4] [0320] +12:31:08 [ 18] [ 4] [6011] +12:31:08 [ 22] [ 3] [900] +12:31:08 [ 25] [ 2] [02] +12:31:08 [ 28] [ 9] [D00002000] +12:31:08 [ 32] [ 6] [220699] +12:31:08 [ 35] [ 32] [6213548000292233=180312019223980] +12:31:08 [ 37] [ 12] [507900118758] +12:31:08 [ 41] [ 8] [01001100] +12:31:08 [ 42] [ 15] [APTRA ] +12:31:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:31:08 [ 49] [ 3] [418] +12:31:08 [ 52] [ 16] [18CB70593EB51B43] +12:31:08 ============================================================================ +12:31:08 + + +waiting on router queue for slot.... +12:31:08 Sending to : <0> +12:31:08 ============================================================================ +12:31:08 ============================================================================ +12:31:08 Slot Id : <352> +12:31:08 Transaction Type : RESPONSE +12:31:08 Received From : +12:31:08 ============================================================================ +12:31:08 FNo. Len. Field Value +12:31:08 ============================================================================ +12:31:08 [ 1] [ 4] [0210] +12:31:08 [ 2] [ 16] [6213548000292233] +12:31:08 [ 3] [ 6] [011000] +12:31:08 [ 4] [ 12] [000002000000] +12:31:08 [ 7] [ 10] [0320123855] +12:31:08 [ 11] [ 6] [223719] +12:31:08 [ 12] [ 6] [123855] +12:31:08 [ 13] [ 4] [0320] +12:31:08 [ 15] [ 4] [0320] +12:31:08 [ 18] [ 4] [6011] +12:31:08 [ 32] [ 6] [220699] +12:31:08 [ 35] [ 32] [6213548000292233=180312019223980] +12:31:08 [ 37] [ 12] [507900118758] +12:31:08 [ 38] [ 6] [223719] +12:31:08 [ 39] [ 2] [51] +12:31:08 [ 41] [ 8] [01001100] +12:31:08 [ 49] [ 3] [418] +12:31:08 [ 54] [ 40] [1001418C0000067386151002418C000006738615] +12:31:08 ============================================================================ +12:31:08 Sending to : +12:31:08 ============================================================================ +12:31:08 + + +waiting on router queue for slot.... +12:31:09 ============================================================================ +12:31:09 Slot Id : <352> +12:31:09 Transaction Type : RESPONSE +12:31:09 Received From : +12:31:09 ============================================================================ +12:31:09 FNo. Len. Field Value +12:31:09 ============================================================================ +12:31:09 [ 1] [ 4] [0210] +12:31:09 [ 2] [ 16] [6213548000292233] +12:31:09 [ 3] [ 6] [011000] +12:31:09 [ 4] [ 12] [000002000000] +12:31:09 [ 7] [ 10] [0320123855] +12:31:09 [ 11] [ 6] [223719] +12:31:09 [ 12] [ 6] [123855] +12:31:09 [ 13] [ 4] [0320] +12:31:09 [ 15] [ 4] [0320] +12:31:09 [ 18] [ 4] [6011] +12:31:09 [ 32] [ 6] [220699] +12:31:09 [ 35] [ 32] [6213548000292233=180312019223980] +12:31:09 [ 37] [ 12] [507900118758] +12:31:09 [ 38] [ 6] [223719] +12:31:09 [ 39] [ 2] [51] +12:31:09 [ 41] [ 8] [01001100] +12:31:09 [ 49] [ 3] [418] +12:31:09 [ 54] [ 40] [1001418C0000067386151002418C000006738615] +12:31:09 ============================================================================ +12:31:09 Calculate Source COMM Id = 1 +12:31:09 ============================================================================ +12:31:09 + + +waiting on router queue for slot.... +12:31:16 ============================================================================ +12:31:16 Slot Id : <309> +12:31:16 Transaction Type : REQUEST +12:31:16 Received From : +12:31:16 ============================================================================ +12:31:16 FNo. Len. Field Value +12:31:16 ============================================================================ +12:31:16 [ 1] [ 4] [0200] +12:31:16 [ 2] [ 16] [6688990030016826] +12:31:16 [ 3] [ 6] [011000] +12:31:16 [ 4] [ 12] [000050000000] +12:31:16 [ 7] [ 10] [0320123112] +12:31:16 [ 11] [ 6] [745452] +12:31:16 [ 12] [ 6] [123112] +12:31:16 [ 13] [ 4] [0320] +12:31:16 [ 15] [ 4] [0320] +12:31:16 [ 18] [ 4] [6011] +12:31:16 [ 22] [ 3] [900] +12:31:16 [ 25] [ 2] [02] +12:31:16 [ 28] [ 9] [D00002000] +12:31:16 [ 32] [ 6] [621354] +12:31:16 [ 35] [ 37] [6688990030016826=98041261765824500000] +12:31:16 [ 37] [ 12] [507902585219] +12:31:16 [ 41] [ 8] [05004100] +12:31:16 [ 42] [ 15] [NATIVE ] +12:31:16 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +12:31:16 [ 49] [ 3] [418] +12:31:16 [ 52] [ 16] [5DFD6335D713D08E] +12:31:16 ============================================================================ +12:31:16 + + +waiting on router queue for slot.... +12:31:16 Sending to : +12:31:16 ============================================================================ +12:31:16 Sending to : +12:31:16 ============================================================================ +12:31:16 ============================================================================ +12:31:16 Slot Id : <337> +12:31:16 Transaction Type : REQUEST +12:31:16 Received From : +12:31:16 ============================================================================ +12:31:16 FNo. Len. Field Value +12:31:16 ============================================================================ +12:31:16 [ 1] [ 4] [0800] +12:31:16 [ 7] [ 10] [0320053024] +12:31:16 [ 11] [ 6] [156322] +12:31:16 [ 70] [ 3] [301] +12:31:16 ============================================================================ +12:31:16 + + +waiting on router queue for slot.... +12:31:16 Sending to : +12:31:16 ============================================================================ +12:31:16 ============================================================================ +12:31:16 Slot Id : <337> +12:31:16 Transaction Type : RESPONSE +12:31:16 Received From : +12:31:16 ============================================================================ +12:31:16 FNo. Len. Field Value +12:31:16 ============================================================================ +12:31:16 [ 1] [ 4] [0810] +12:31:16 [ 7] [ 10] [0320053024] +12:31:16 [ 11] [ 6] [156322] +12:31:16 [ 39] [ 2] [00] +12:31:16 [ 70] [ 3] [301] +12:31:16 ============================================================================ +12:31:16 Calculate Source COMM Id = 2 +12:31:16 ============================================================================ +12:31:16 + + +waiting on router queue for slot.... +12:31:17 ============================================================================ +12:31:17 Slot Id : <309> +12:31:17 Transaction Type : REQUEST +12:31:17 Received From : +12:31:17 ============================================================================ +12:31:17 FNo. Len. Field Value +12:31:17 ============================================================================ +12:31:17 [ 1] [ 4] [0200] +12:31:17 [ 2] [ 16] [6688990030016826] +12:31:17 [ 3] [ 6] [011000] +12:31:17 [ 4] [ 12] [000050000000] +12:31:17 [ 7] [ 10] [0320123112] +12:31:17 [ 11] [ 6] [745452] +12:31:17 [ 12] [ 6] [123112] +12:31:17 [ 13] [ 4] [0320] +12:31:17 [ 15] [ 4] [0320] +12:31:17 [ 18] [ 4] [6011] +12:31:17 [ 22] [ 3] [900] +12:31:17 [ 25] [ 2] [02] +12:31:17 [ 28] [ 9] [D00002000] +12:31:17 [ 32] [ 6] [621354] +12:31:17 [ 35] [ 37] [6688990030016826=98041261765824500000] +12:31:17 [ 37] [ 12] [507902585219] +12:31:17 [ 41] [ 8] [05004100] +12:31:17 [ 42] [ 15] [NATIVE ] +12:31:17 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +12:31:17 [ 49] [ 3] [418] +12:31:17 [ 52] [ 16] [5DFD6335D713D08E] +12:31:17 ============================================================================ +12:31:17 + + +waiting on router queue for slot.... +12:31:17 Sending to : +12:31:17 ============================================================================ +12:31:17 ============================================================================ +12:31:17 Slot Id : <309> +12:31:17 Transaction Type : REQUEST +12:31:17 Received From : +12:31:17 ============================================================================ +12:31:17 FNo. Len. Field Value +12:31:17 ============================================================================ +12:31:17 [ 1] [ 4] [0200] +12:31:17 [ 2] [ 16] [6688990030016826] +12:31:17 [ 3] [ 6] [011000] +12:31:17 [ 4] [ 12] [000050000000] +12:31:17 [ 7] [ 10] [0320123112] +12:31:17 [ 11] [ 6] [745452] +12:31:17 [ 12] [ 6] [123112] +12:31:17 [ 13] [ 4] [0320] +12:31:17 [ 15] [ 4] [0320] +12:31:17 [ 18] [ 4] [6011] +12:31:17 [ 22] [ 3] [900] +12:31:17 [ 25] [ 2] [02] +12:31:17 [ 28] [ 9] [D00002000] +12:31:17 [ 32] [ 6] [621354] +12:31:17 [ 35] [ 37] [6688990030016826=98041261765824500000] +12:31:17 [ 37] [ 12] [507902585219] +12:31:17 [ 41] [ 8] [05004100] +12:31:17 [ 42] [ 15] [NATIVE ] +12:31:17 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +12:31:17 [ 49] [ 3] [418] +12:31:17 [ 52] [ 16] [2906773AD92463A4] +12:31:17 ============================================================================ +12:31:17 + + +waiting on router queue for slot.... +12:31:17 Sending to : <4> +12:31:17 ============================================================================ +12:31:18 ============================================================================ +12:31:18 Slot Id : <309> +12:31:18 Transaction Type : RESPONSE +12:31:18 Received From : +12:31:18 ============================================================================ +12:31:18 FNo. Len. Field Value +12:31:18 ============================================================================ +12:31:18 [ 1] [ 4] [0210] +12:31:18 [ 2] [ 16] [6688990030016826] +12:31:18 [ 3] [ 6] [011000] +12:31:18 [ 4] [ 12] [000050000000] +12:31:18 [ 11] [ 6] [745452] +12:31:18 [ 12] [ 6] [123112] +12:31:18 [ 15] [ 4] [0320] +12:31:18 [ 18] [ 4] [6011] +12:31:18 [ 32] [ 6] [621354] +12:31:18 [ 35] [ 37] [6688990030016826=98041261765824500000] +12:31:18 [ 37] [ 12] [507902585219] +12:31:18 [ 38] [ 6] [804152] +12:31:18 [ 39] [ 2] [00] +12:31:18 [ 41] [ 8] [05004100] +12:31:18 [ 49] [ 3] [418] +12:31:18 [ 54] [ 20] [1002418C001289400000] +12:31:18 ============================================================================ +12:31:18 Sending to : +12:31:18 ============================================================================ +12:31:18 + + +waiting on router queue for slot.... +12:31:19 ============================================================================ +12:31:19 Slot Id : <309> +12:31:19 Transaction Type : RESPONSE +12:31:19 Received From : +12:31:19 ============================================================================ +12:31:19 FNo. Len. Field Value +12:31:19 ============================================================================ +12:31:19 [ 1] [ 4] [0210] +12:31:19 [ 2] [ 16] [6688990030016826] +12:31:19 [ 3] [ 6] [011000] +12:31:19 [ 4] [ 12] [000050000000] +12:31:19 [ 11] [ 6] [745452] +12:31:19 [ 12] [ 6] [123112] +12:31:19 [ 15] [ 4] [0320] +12:31:19 [ 18] [ 4] [6011] +12:31:19 [ 32] [ 6] [621354] +12:31:19 [ 35] [ 37] [6688990030016826=98041261765824500000] +12:31:19 [ 37] [ 12] [507902585219] +12:31:19 [ 38] [ 6] [804152] +12:31:19 [ 39] [ 2] [00] +12:31:19 [ 41] [ 8] [05004100] +12:31:19 [ 49] [ 3] [418] +12:31:19 [ 54] [ 20] [1002418C001289400000] +12:31:19 ============================================================================ +12:31:19 Calculate Source COMM Id = 0 +12:31:19 ============================================================================ +12:31:19 + + +waiting on router queue for slot.... +12:31:21 ============================================================================ +12:31:21 Slot Id : <328> +12:31:21 Transaction Type : REQUEST +12:31:21 Received From : +12:31:21 ============================================================================ +12:31:21 FNo. Len. Field Value +12:31:21 ============================================================================ +12:31:21 [ 1] [ 4] [0800] +12:31:21 [ 7] [ 10] [0320052912] +12:31:21 [ 11] [ 6] [044953] +12:31:21 [ 37] [ 12] [57912044953] +12:31:21 [ 70] [ 3] [301] +12:31:21 ============================================================================ +12:31:21 + + +waiting on router queue for slot.... +12:31:21 Sending to : +12:31:21 ============================================================================ +12:31:21 ============================================================================ +12:31:21 Slot Id : <328> +12:31:21 Transaction Type : RESPONSE +12:31:21 Received From : +12:31:21 ============================================================================ +12:31:21 FNo. Len. Field Value +12:31:21 ============================================================================ +12:31:21 [ 1] [ 4] [0810] +12:31:21 [ 7] [ 10] [0320052912] +12:31:21 [ 11] [ 6] [044953] +12:31:21 [ 37] [ 12] [579120449530] +12:31:21 [ 39] [ 2] [00] +12:31:21 [ 70] [ 3] [810] +12:31:21 ============================================================================ +12:31:21 Calculate Source COMM Id = 4 +12:31:21 ============================================================================ +12:31:21 + + +waiting on router queue for slot.... +12:31:23 ============================================================================ +12:31:23 Slot Id : <346> +12:31:23 Transaction Type : REQUEST +12:31:23 Received From : +12:31:23 ============================================================================ +12:31:23 FNo. Len. Field Value +12:31:23 ============================================================================ +12:31:23 [ 1] [ 4] [0200] +12:31:23 [ 2] [ 16] [6213545000801831] +12:31:23 [ 3] [ 6] [010000] +12:31:23 [ 4] [ 12] [000010000000] +12:31:23 [ 7] [ 10] [0320122913] +12:31:23 [ 11] [ 6] [944425] +12:31:23 [ 12] [ 6] [122913] +12:31:23 [ 13] [ 4] [0320] +12:31:23 [ 15] [ 4] [0320] +12:31:23 [ 18] [ 4] [6011] +12:31:23 [ 19] [ 3] [418] +12:31:23 [ 22] [ 3] [021] +12:31:23 [ 25] [ 2] [01] +12:31:23 [ 28] [ 9] [D00002000] +12:31:23 [ 32] [ 6] [668899] +12:31:23 [ 35] [ 32] [6213545000801831=491212010183523] +12:31:23 [ 37] [ 12] [507900168583] +12:31:23 [ 41] [ 8] [03020007] +12:31:23 [ 42] [ 15] [APT ] +12:31:23 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +12:31:23 [ 49] [ 3] [418] +12:31:23 [ 52] [ 16] [C10B05BC15568738] +12:31:23 ============================================================================ +12:31:23 + + +waiting on router queue for slot.... +12:31:23 Sending to : +12:31:23 ============================================================================ +12:31:23 Sending to : +12:31:23 ============================================================================ +12:31:23 ============================================================================ +12:31:23 Slot Id : <346> +12:31:23 Transaction Type : REQUEST +12:31:23 Received From : +12:31:23 ============================================================================ +12:31:23 FNo. Len. Field Value +12:31:23 ============================================================================ +12:31:23 [ 1] [ 4] [0200] +12:31:23 [ 2] [ 16] [6213545000801831] +12:31:23 [ 3] [ 6] [010000] +12:31:23 [ 4] [ 12] [000010000000] +12:31:23 [ 7] [ 10] [0320122913] +12:31:23 [ 11] [ 6] [944425] +12:31:23 [ 12] [ 6] [122913] +12:31:23 [ 13] [ 4] [0320] +12:31:23 [ 15] [ 4] [0320] +12:31:23 [ 18] [ 4] [6011] +12:31:23 [ 19] [ 3] [418] +12:31:23 [ 22] [ 3] [021] +12:31:23 [ 25] [ 2] [01] +12:31:23 [ 28] [ 9] [D00002000] +12:31:23 [ 32] [ 6] [668899] +12:31:23 [ 35] [ 32] [6213545000801831=491212010183523] +12:31:23 [ 37] [ 12] [507900168583] +12:31:23 [ 41] [ 8] [03020007] +12:31:23 [ 42] [ 15] [APT ] +12:31:23 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +12:31:23 [ 49] [ 3] [418] +12:31:23 [ 52] [ 16] [C10B05BC15568738] +12:31:23 ============================================================================ +12:31:23 + + +waiting on router queue for slot.... +12:31:23 Sending to : +12:31:23 ============================================================================ +12:31:23 ============================================================================ +12:31:23 Slot Id : <346> +12:31:23 Transaction Type : REQUEST +12:31:23 Received From : +12:31:23 ============================================================================ +12:31:23 FNo. Len. Field Value +12:31:23 ============================================================================ +12:31:23 [ 1] [ 4] [0200] +12:31:23 [ 2] [ 16] [6213545000801831] +12:31:23 [ 3] [ 6] [010000] +12:31:23 [ 4] [ 12] [000010000000] +12:31:23 [ 7] [ 10] [0320122913] +12:31:23 [ 11] [ 6] [944425] +12:31:23 [ 12] [ 6] [122913] +12:31:23 [ 13] [ 4] [0320] +12:31:23 [ 15] [ 4] [0320] +12:31:23 [ 18] [ 4] [6011] +12:31:23 [ 19] [ 3] [418] +12:31:23 [ 22] [ 3] [021] +12:31:23 [ 25] [ 2] [01] +12:31:23 [ 28] [ 9] [D00002000] +12:31:23 [ 32] [ 6] [668899] +12:31:23 [ 35] [ 32] [6213545000801831=491212010183523] +12:31:23 [ 37] [ 12] [507900168583] +12:31:23 [ 41] [ 8] [03020007] +12:31:23 [ 42] [ 15] [APT ] +12:31:23 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +12:31:23 [ 49] [ 3] [418] +12:31:23 [ 52] [ 16] [1A7B24DD2712005D] +12:31:23 ============================================================================ +12:31:23 + + +waiting on router queue for slot.... +12:31:23 Sending to : <0> +12:31:23 ============================================================================ +12:31:24 ============================================================================ +12:31:24 Slot Id : <346> +12:31:24 Transaction Type : RESPONSE +12:31:24 Received From : +12:31:24 ============================================================================ +12:31:24 FNo. Len. Field Value +12:31:24 ============================================================================ +12:31:24 [ 1] [ 4] [0210] +12:31:24 [ 2] [ 16] [6213545000801831] +12:31:24 [ 3] [ 6] [010000] +12:31:24 [ 4] [ 12] [000010000000] +12:31:24 [ 7] [ 10] [0320122913] +12:31:24 [ 11] [ 6] [944425] +12:31:24 [ 12] [ 6] [122913] +12:31:24 [ 13] [ 4] [0320] +12:31:24 [ 15] [ 4] [0320] +12:31:24 [ 18] [ 4] [6011] +12:31:24 [ 19] [ 3] [418] +12:31:24 [ 32] [ 6] [668899] +12:31:24 [ 35] [ 32] [6213545000801831=491212010183523] +12:31:24 [ 37] [ 12] [507900168583] +12:31:24 [ 38] [ 6] [202472] +12:31:24 [ 39] [ 2] [00] +12:31:24 [ 41] [ 8] [03020007] +12:31:24 [ 49] [ 3] [418] +12:31:24 [ 54] [ 40] [0001418C0014613252940002418C001461325294] +12:31:24 ============================================================================ +12:31:24 Sending to : +12:31:24 ============================================================================ +12:31:24 + + +waiting on router queue for slot.... +12:31:25 ============================================================================ +12:31:25 Slot Id : <346> +12:31:25 Transaction Type : RESPONSE +12:31:25 Received From : +12:31:25 ============================================================================ +12:31:25 FNo. Len. Field Value +12:31:25 ============================================================================ +12:31:25 [ 1] [ 4] [0210] +12:31:25 [ 2] [ 16] [6213545000801831] +12:31:25 [ 3] [ 6] [010000] +12:31:25 [ 4] [ 12] [000010000000] +12:31:25 [ 7] [ 10] [0320122913] +12:31:25 [ 11] [ 6] [944425] +12:31:25 [ 12] [ 6] [122913] +12:31:25 [ 13] [ 4] [0320] +12:31:25 [ 15] [ 4] [0320] +12:31:25 [ 18] [ 4] [6011] +12:31:25 [ 19] [ 3] [418] +12:31:25 [ 32] [ 6] [668899] +12:31:25 [ 35] [ 32] [6213545000801831=491212010183523] +12:31:25 [ 37] [ 12] [507900168583] +12:31:25 [ 38] [ 6] [202472] +12:31:25 [ 39] [ 2] [00] +12:31:25 [ 41] [ 8] [03020007] +12:31:25 [ 49] [ 3] [418] +12:31:25 [ 54] [ 40] [0001418C0014613252940002418C001461325294] +12:31:25 ============================================================================ +12:31:25 Calculate Source COMM Id = 4 +12:31:25 ============================================================================ +12:31:25 + + +waiting on router queue for slot.... +12:31:27 ============================================================================ +12:31:27 Slot Id : <347> +12:31:27 Transaction Type : REQUEST +12:31:27 Received From : +12:31:27 ============================================================================ +12:31:27 FNo. Len. Field Value +12:31:27 ============================================================================ +12:31:27 [ 1] [ 4] [0800] +12:31:27 [ 7] [ 10] [0320053034] +12:31:27 [ 11] [ 6] [156323] +12:31:27 [ 70] [ 3] [301] +12:31:27 ============================================================================ +12:31:27 + + +waiting on router queue for slot.... +12:31:27 Sending to : +12:31:27 ============================================================================ +12:31:27 ============================================================================ +12:31:27 Slot Id : <347> +12:31:27 Transaction Type : RESPONSE +12:31:27 Received From : +12:31:27 ============================================================================ +12:31:27 FNo. Len. Field Value +12:31:27 ============================================================================ +12:31:27 [ 1] [ 4] [0810] +12:31:27 [ 7] [ 10] [0320053034] +12:31:27 [ 11] [ 6] [156323] +12:31:27 [ 39] [ 2] [00] +12:31:27 [ 70] [ 3] [301] +12:31:27 ============================================================================ +12:31:27 Calculate Source COMM Id = 2 +12:31:27 ============================================================================ +12:31:27 + + +waiting on router queue for slot.... +12:31:31 ============================================================================ +12:31:31 Slot Id : <350> +12:31:31 Transaction Type : REQUEST +12:31:31 Received From : +12:31:31 ============================================================================ +12:31:31 FNo. Len. Field Value +12:31:31 ============================================================================ +12:31:31 [ 1] [ 4] [0200] +12:31:31 [ 2] [ 16] [6213541000686033] +12:31:31 [ 3] [ 6] [010000] +12:31:31 [ 4] [ 12] [000100000000] +12:31:31 [ 7] [ 10] [0320053038] +12:31:31 [ 11] [ 6] [269055] +12:31:31 [ 12] [ 6] [123037] +12:31:31 [ 13] [ 4] [0320] +12:31:31 [ 14] [ 4] [4912] +12:31:31 [ 15] [ 4] [0320] +12:31:31 [ 18] [ 4] [6011] +12:31:31 [ 19] [ 3] [418] +12:31:31 [ 22] [ 3] [021] +12:31:31 [ 25] [ 2] [01] +12:31:31 [ 28] [ 9] [D00002000] +12:31:31 [ 32] [ 6] [180893] +12:31:31 [ 35] [ 32] [6213541000686033=491212018603392] +12:31:31 [ 37] [ 12] [507905269055] +12:31:31 [ 41] [ 8] [0114XKBR] +12:31:31 [ 42] [ 15] [999999 ] +12:31:31 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +12:31:31 [ 49] [ 3] [418] +12:31:31 [ 52] [ 16] [8D682E6D96719B1E] +12:31:31 ============================================================================ +12:31:31 + + +waiting on router queue for slot.... +12:31:31 Sending to : +12:31:31 ============================================================================ +12:31:31 Sending to : +12:31:31 ============================================================================ +12:31:31 ============================================================================ +12:31:31 Slot Id : <350> +12:31:31 Transaction Type : REQUEST +12:31:31 Received From : +12:31:31 ============================================================================ +12:31:31 FNo. Len. Field Value +12:31:31 ============================================================================ +12:31:31 [ 1] [ 4] [0200] +12:31:31 [ 2] [ 16] [6213541000686033] +12:31:31 [ 3] [ 6] [010000] +12:31:31 [ 4] [ 12] [000100000000] +12:31:31 [ 7] [ 10] [0320053038] +12:31:31 [ 11] [ 6] [269055] +12:31:31 [ 12] [ 6] [123037] +12:31:31 [ 13] [ 4] [0320] +12:31:31 [ 14] [ 4] [4912] +12:31:31 [ 15] [ 4] [0320] +12:31:31 [ 18] [ 4] [6011] +12:31:31 [ 19] [ 3] [418] +12:31:31 [ 22] [ 3] [021] +12:31:31 [ 25] [ 2] [01] +12:31:31 [ 28] [ 9] [D00002000] +12:31:31 [ 32] [ 6] [180893] +12:31:31 [ 35] [ 32] [6213541000686033=491212018603392] +12:31:31 [ 37] [ 12] [507905269055] +12:31:31 [ 41] [ 8] [0114XKBR] +12:31:31 [ 42] [ 15] [999999 ] +12:31:31 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +12:31:31 [ 49] [ 3] [418] +12:31:31 [ 52] [ 16] [8D682E6D96719B1E] +12:31:31 ============================================================================ +12:31:31 + + +waiting on router queue for slot.... +12:31:31 Sending to : +12:31:31 ============================================================================ +12:31:31 ============================================================================ +12:31:31 Slot Id : <350> +12:31:31 Transaction Type : REQUEST +12:31:31 Received From : +12:31:31 ============================================================================ +12:31:31 FNo. Len. Field Value +12:31:31 ============================================================================ +12:31:31 [ 1] [ 4] [0200] +12:31:31 [ 2] [ 16] [6213541000686033] +12:31:31 [ 3] [ 6] [010000] +12:31:31 [ 4] [ 12] [000100000000] +12:31:31 [ 7] [ 10] [0320053038] +12:31:31 [ 11] [ 6] [269055] +12:31:31 [ 12] [ 6] [123037] +12:31:31 [ 13] [ 4] [0320] +12:31:31 [ 14] [ 4] [4912] +12:31:31 [ 15] [ 4] [0320] +12:31:31 [ 18] [ 4] [6011] +12:31:31 [ 19] [ 3] [418] +12:31:31 [ 22] [ 3] [021] +12:31:31 [ 25] [ 2] [01] +12:31:31 [ 28] [ 9] [D00002000] +12:31:31 [ 32] [ 6] [180893] +12:31:31 [ 35] [ 32] [6213541000686033=491212018603392] +12:31:31 [ 37] [ 12] [507905269055] +12:31:31 [ 41] [ 8] [0114XKBR] +12:31:31 [ 42] [ 15] [999999 ] +12:31:31 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +12:31:31 [ 49] [ 3] [418] +12:31:31 [ 52] [ 16] [E4131F966A359C9F] +12:31:31 ============================================================================ +12:31:31 + + +waiting on router queue for slot.... +12:31:31 Sending to : <0> +12:31:31 ============================================================================ +12:31:32 ============================================================================ +12:31:32 Slot Id : <350> +12:31:32 Transaction Type : RESPONSE +12:31:32 Received From : +12:31:32 ============================================================================ +12:31:32 FNo. Len. Field Value +12:31:32 ============================================================================ +12:31:32 [ 1] [ 4] [0210] +12:31:32 [ 2] [ 16] [6213541000686033] +12:31:32 [ 3] [ 6] [010000] +12:31:32 [ 4] [ 12] [000100000000] +12:31:32 [ 7] [ 10] [0320053038] +12:31:32 [ 11] [ 6] [269055] +12:31:32 [ 12] [ 6] [123037] +12:31:32 [ 13] [ 4] [0320] +12:31:32 [ 15] [ 4] [0320] +12:31:32 [ 18] [ 4] [6011] +12:31:32 [ 19] [ 3] [418] +12:31:32 [ 32] [ 6] [180893] +12:31:32 [ 35] [ 32] [6213541000686033=491212018603392] +12:31:32 [ 37] [ 12] [507905269055] +12:31:32 [ 38] [ 6] [287349] +12:31:32 [ 39] [ 2] [00] +12:31:32 [ 41] [ 8] [0114XKBR] +12:31:32 [ 49] [ 3] [418] +12:31:32 [ 54] [ 40] [0001840C0000001003720002840C000000100372] +12:31:32 ============================================================================ +12:31:32 Sending to : +12:31:32 ============================================================================ +12:31:32 + + +waiting on router queue for slot.... +12:31:33 ============================================================================ +12:31:33 Slot Id : <350> +12:31:33 Transaction Type : RESPONSE +12:31:33 Received From : +12:31:33 ============================================================================ +12:31:33 FNo. Len. Field Value +12:31:33 ============================================================================ +12:31:33 [ 1] [ 4] [0210] +12:31:33 [ 2] [ 16] [6213541000686033] +12:31:33 [ 3] [ 6] [010000] +12:31:33 [ 4] [ 12] [000100000000] +12:31:33 [ 7] [ 10] [0320053038] +12:31:33 [ 11] [ 6] [269055] +12:31:33 [ 12] [ 6] [123037] +12:31:33 [ 13] [ 4] [0320] +12:31:33 [ 15] [ 4] [0320] +12:31:33 [ 18] [ 4] [6011] +12:31:33 [ 19] [ 3] [418] +12:31:33 [ 32] [ 6] [180893] +12:31:33 [ 35] [ 32] [6213541000686033=491212018603392] +12:31:33 [ 37] [ 12] [507905269055] +12:31:33 [ 38] [ 6] [287349] +12:31:33 [ 39] [ 2] [00] +12:31:33 [ 41] [ 8] [0114XKBR] +12:31:33 [ 49] [ 3] [418] +12:31:33 [ 54] [ 40] [0001840C0000001003720002840C000000100372] +12:31:33 ============================================================================ +12:31:33 Calculate Source COMM Id = 2 +12:31:33 ============================================================================ +12:31:33 + + +waiting on router queue for slot.... +12:31:48 ============================================================================ +12:31:48 Slot Id : <319> +12:31:48 Transaction Type : REQUEST +12:31:48 Received From : +12:31:48 ============================================================================ +12:31:48 FNo. Len. Field Value +12:31:48 ============================================================================ +12:31:48 [ 1] [ 4] [0800] +12:31:48 [ 7] [ 10] [0320053055] +12:31:48 [ 11] [ 6] [156324] +12:31:48 [ 70] [ 3] [301] +12:31:48 ============================================================================ +12:31:48 + + +waiting on router queue for slot.... +12:31:48 Sending to : +12:31:48 ============================================================================ +12:31:48 ============================================================================ +12:31:48 Slot Id : <319> +12:31:48 Transaction Type : RESPONSE +12:31:48 Received From : +12:31:48 ============================================================================ +12:31:48 FNo. Len. Field Value +12:31:48 ============================================================================ +12:31:48 [ 1] [ 4] [0810] +12:31:48 [ 7] [ 10] [0320053055] +12:31:48 [ 11] [ 6] [156324] +12:31:48 [ 39] [ 2] [00] +12:31:48 [ 70] [ 3] [301] +12:31:48 ============================================================================ +12:31:48 Calculate Source COMM Id = 2 +12:31:48 ============================================================================ +12:31:48 + + +waiting on router queue for slot.... +12:31:52 ============================================================================ +12:31:52 Slot Id : <357> +12:31:52 Transaction Type : REQUEST +12:31:52 Received From : +12:31:52 ============================================================================ +12:31:52 FNo. Len. Field Value +12:31:52 ============================================================================ +12:31:52 [ 1] [ 4] [0800] +12:31:52 [ 2] [ 5] [02531] +12:31:52 [ 3] [ 6] [579128] +12:31:52 [ 7] [ 10] [0320053152] +12:31:52 [ 11] [ 6] [807139] +12:31:52 [ 15] [ 10] [0320053152] +12:31:52 [ 37] [ 11] [57912807139] +12:31:52 [ 70] [ 3] [001] +12:31:52 ============================================================================ +12:31:52 + + +waiting on router queue for slot.... +12:31:52 ============================================================================ +12:31:52 Slot Id : <357> +12:31:52 Transaction Type : RESPONSE +12:31:52 Received From : +12:31:52 ============================================================================ +12:31:52 FNo. Len. Field Value +12:31:52 ============================================================================ +12:31:52 [ 1] [ 4] [0810] +12:31:52 [ 7] [ 10] [0320053152] +12:31:52 [ 11] [ 6] [807139] +12:31:52 [ 15] [ 4] [0320] +12:31:52 [ 37] [ 12] [57912807139] +12:31:52 [ 39] [ 2] [00] +12:31:52 [ 70] [ 3] [001] +12:31:52 ============================================================================ +12:31:52 Sending to : +12:31:52 ============================================================================ +12:31:52 + + +waiting on router queue for slot.... +12:31:54 ============================================================================ +12:31:54 Slot Id : <330> +12:31:54 Transaction Type : REQUEST +12:31:54 Received From : +12:31:54 ============================================================================ +12:31:54 FNo. Len. Field Value +12:31:54 ============================================================================ +12:31:54 [ 1] [ 4] [0200] +12:31:54 [ 2] [ 16] [6213548000292233] +12:31:54 [ 3] [ 6] [011000] +12:31:54 [ 4] [ 12] [000001000000] +12:31:54 [ 7] [ 10] [0320123941] +12:31:54 [ 11] [ 6] [223722] +12:31:54 [ 12] [ 6] [123941] +12:31:54 [ 13] [ 4] [0320] +12:31:54 [ 14] [ 4] [1803] +12:31:54 [ 15] [ 4] [0320] +12:31:54 [ 18] [ 4] [6011] +12:31:54 [ 22] [ 3] [900] +12:31:54 [ 25] [ 2] [02] +12:31:54 [ 28] [ 9] [D00002000] +12:31:54 [ 32] [ 6] [220699] +12:31:54 [ 35] [ 32] [6213548000292233=180312019223980] +12:31:54 [ 37] [ 12] [507900118760] +12:31:54 [ 41] [ 8] [01001100] +12:31:54 [ 42] [ 15] [APTRA ] +12:31:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:31:54 [ 49] [ 3] [418] +12:31:54 [ 52] [ 16] [D988415D3BBD6688] +12:31:54 ============================================================================ +12:31:54 + + +waiting on router queue for slot.... +12:31:54 Sending to : +12:31:54 ============================================================================ +12:31:54 Sending to : +12:31:54 ============================================================================ +12:31:54 ============================================================================ +12:31:54 Slot Id : <330> +12:31:54 Transaction Type : REQUEST +12:31:54 Received From : +12:31:54 ============================================================================ +12:31:54 FNo. Len. Field Value +12:31:54 ============================================================================ +12:31:54 [ 1] [ 4] [0200] +12:31:54 [ 2] [ 16] [6213548000292233] +12:31:54 [ 3] [ 6] [011000] +12:31:54 [ 4] [ 12] [000001000000] +12:31:54 [ 7] [ 10] [0320123941] +12:31:54 [ 11] [ 6] [223722] +12:31:54 [ 12] [ 6] [123941] +12:31:54 [ 13] [ 4] [0320] +12:31:54 [ 14] [ 4] [1803] +12:31:54 [ 15] [ 4] [0320] +12:31:54 [ 18] [ 4] [6011] +12:31:54 [ 22] [ 3] [900] +12:31:54 [ 25] [ 2] [02] +12:31:54 [ 28] [ 9] [D00002000] +12:31:54 [ 32] [ 6] [220699] +12:31:54 [ 35] [ 32] [6213548000292233=180312019223980] +12:31:54 [ 37] [ 12] [507900118760] +12:31:54 [ 41] [ 8] [01001100] +12:31:54 [ 42] [ 15] [APTRA ] +12:31:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:31:54 [ 49] [ 3] [418] +12:31:54 [ 52] [ 16] [D988415D3BBD6688] +12:31:54 ============================================================================ +12:31:54 + + +waiting on router queue for slot.... +12:31:54 Sending to : +12:31:54 ============================================================================ +12:31:54 ============================================================================ +12:31:54 Slot Id : <330> +12:31:54 Transaction Type : REQUEST +12:31:54 Received From : +12:31:54 ============================================================================ +12:31:54 FNo. Len. Field Value +12:31:54 ============================================================================ +12:31:54 [ 1] [ 4] [0200] +12:31:54 [ 2] [ 16] [6213548000292233] +12:31:54 [ 3] [ 6] [011000] +12:31:54 [ 4] [ 12] [000001000000] +12:31:54 [ 7] [ 10] [0320123941] +12:31:54 [ 11] [ 6] [223722] +12:31:54 [ 12] [ 6] [123941] +12:31:54 [ 13] [ 4] [0320] +12:31:54 [ 14] [ 4] [1803] +12:31:54 [ 15] [ 4] [0320] +12:31:54 [ 18] [ 4] [6011] +12:31:54 [ 22] [ 3] [900] +12:31:54 [ 25] [ 2] [02] +12:31:54 [ 28] [ 9] [D00002000] +12:31:54 [ 32] [ 6] [220699] +12:31:54 [ 35] [ 32] [6213548000292233=180312019223980] +12:31:54 [ 37] [ 12] [507900118760] +12:31:54 [ 41] [ 8] [01001100] +12:31:54 [ 42] [ 15] [APTRA ] +12:31:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:31:54 [ 49] [ 3] [418] +12:31:54 [ 52] [ 16] [18CB70593EB51B43] +12:31:54 ============================================================================ +12:31:54 + + +waiting on router queue for slot.... +12:31:54 Sending to : <0> +12:31:54 ============================================================================ +12:31:55 ============================================================================ +12:31:55 Slot Id : <330> +12:31:55 Transaction Type : RESPONSE +12:31:55 Received From : +12:31:55 ============================================================================ +12:31:55 FNo. Len. Field Value +12:31:55 ============================================================================ +12:31:55 [ 1] [ 4] [0210] +12:31:55 [ 2] [ 16] [6213548000292233] +12:31:55 [ 3] [ 6] [011000] +12:31:55 [ 4] [ 12] [000001000000] +12:31:55 [ 7] [ 10] [0320123941] +12:31:55 [ 11] [ 6] [223722] +12:31:55 [ 12] [ 6] [123941] +12:31:55 [ 13] [ 4] [0320] +12:31:55 [ 15] [ 4] [0320] +12:31:55 [ 18] [ 4] [6011] +12:31:55 [ 32] [ 6] [220699] +12:31:55 [ 35] [ 32] [6213548000292233=180312019223980] +12:31:55 [ 37] [ 12] [507900118760] +12:31:55 [ 38] [ 6] [316609] +12:31:55 [ 39] [ 2] [00] +12:31:55 [ 41] [ 8] [01001100] +12:31:55 [ 49] [ 3] [418] +12:31:55 [ 54] [ 40] [1001418C0000055386151002418C000005538615] +12:31:55 ============================================================================ +12:31:55 Sending to : +12:31:55 ============================================================================ +12:31:55 + + +waiting on router queue for slot.... +12:31:55 ============================================================================ +12:31:55 Slot Id : <332> +12:31:55 Transaction Type : REQUEST +12:31:55 Received From : +12:31:55 ============================================================================ +12:31:55 FNo. Len. Field Value +12:31:55 ============================================================================ +12:31:55 [ 1] [ 4] [0200] +12:31:55 [ 2] [ 16] [6213544001498101] +12:31:55 [ 3] [ 6] [010000] +12:31:55 [ 4] [ 12] [000060000000] +12:31:55 [ 7] [ 10] [0320122946] +12:31:55 [ 11] [ 6] [944437] +12:31:55 [ 12] [ 6] [122946] +12:31:55 [ 13] [ 4] [0320] +12:31:55 [ 15] [ 4] [0320] +12:31:55 [ 18] [ 4] [6011] +12:31:55 [ 19] [ 3] [418] +12:31:55 [ 22] [ 3] [021] +12:31:55 [ 25] [ 2] [01] +12:31:55 [ 28] [ 9] [D00002000] +12:31:55 [ 32] [ 6] [668899] +12:31:55 [ 35] [ 32] [6213544001498101=491212019810950] +12:31:55 [ 37] [ 12] [507901963547] +12:31:55 [ 41] [ 8] [03020019] +12:31:55 [ 42] [ 15] [APT ] +12:31:55 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:31:55 [ 49] [ 3] [418] +12:31:55 [ 52] [ 16] [DACF6A2E5364E797] +12:31:55 ============================================================================ +12:31:55 + + +waiting on router queue for slot.... +12:31:55 Sending to : +12:31:55 ============================================================================ +12:31:55 Sending to : +12:31:55 ============================================================================ +12:31:55 ============================================================================ +12:31:55 Slot Id : <332> +12:31:55 Transaction Type : REQUEST +12:31:55 Received From : +12:31:55 ============================================================================ +12:31:55 FNo. Len. Field Value +12:31:55 ============================================================================ +12:31:55 [ 1] [ 4] [0200] +12:31:55 [ 2] [ 16] [6213544001498101] +12:31:55 [ 3] [ 6] [010000] +12:31:55 [ 4] [ 12] [000060000000] +12:31:55 [ 7] [ 10] [0320122946] +12:31:55 [ 11] [ 6] [944437] +12:31:55 [ 12] [ 6] [122946] +12:31:55 [ 13] [ 4] [0320] +12:31:55 [ 15] [ 4] [0320] +12:31:55 [ 18] [ 4] [6011] +12:31:55 [ 19] [ 3] [418] +12:31:55 [ 22] [ 3] [021] +12:31:55 [ 25] [ 2] [01] +12:31:55 [ 28] [ 9] [D00002000] +12:31:55 [ 32] [ 6] [668899] +12:31:55 [ 35] [ 32] [6213544001498101=491212019810950] +12:31:55 [ 37] [ 12] [507901963547] +12:31:55 [ 41] [ 8] [03020019] +12:31:55 [ 42] [ 15] [APT ] +12:31:55 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:31:55 [ 49] [ 3] [418] +12:31:55 [ 52] [ 16] [DACF6A2E5364E797] +12:31:55 ============================================================================ +12:31:55 + + +waiting on router queue for slot.... +12:31:55 Sending to : +12:31:55 ============================================================================ +12:31:55 ============================================================================ +12:31:55 Slot Id : <332> +12:31:55 Transaction Type : REQUEST +12:31:55 Received From : +12:31:55 ============================================================================ +12:31:55 FNo. Len. Field Value +12:31:55 ============================================================================ +12:31:55 [ 1] [ 4] [0200] +12:31:55 [ 2] [ 16] [6213544001498101] +12:31:55 [ 3] [ 6] [010000] +12:31:55 [ 4] [ 12] [000060000000] +12:31:55 [ 7] [ 10] [0320122946] +12:31:55 [ 11] [ 6] [944437] +12:31:55 [ 12] [ 6] [122946] +12:31:55 [ 13] [ 4] [0320] +12:31:55 [ 15] [ 4] [0320] +12:31:55 [ 18] [ 4] [6011] +12:31:55 [ 19] [ 3] [418] +12:31:55 [ 22] [ 3] [021] +12:31:55 [ 25] [ 2] [01] +12:31:55 [ 28] [ 9] [D00002000] +12:31:55 [ 32] [ 6] [668899] +12:31:55 [ 35] [ 32] [6213544001498101=491212019810950] +12:31:55 [ 37] [ 12] [507901963547] +12:31:55 [ 41] [ 8] [03020019] +12:31:55 [ 42] [ 15] [APT ] +12:31:55 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:31:55 [ 49] [ 3] [418] +12:31:55 [ 52] [ 16] [A9330FBDFDD32785] +12:31:55 ============================================================================ +12:31:55 + + +waiting on router queue for slot.... +12:31:55 Sending to : <0> +12:31:55 ============================================================================ +12:31:56 ============================================================================ +12:31:56 Slot Id : <332> +12:31:56 Transaction Type : RESPONSE +12:31:56 Received From : +12:31:56 ============================================================================ +12:31:56 FNo. Len. Field Value +12:31:56 ============================================================================ +12:31:56 [ 1] [ 4] [0210] +12:31:56 [ 2] [ 16] [6213544001498101] +12:31:56 [ 3] [ 6] [010000] +12:31:56 [ 4] [ 12] [000060000000] +12:31:56 [ 7] [ 10] [0320122946] +12:31:56 [ 11] [ 6] [944437] +12:31:56 [ 12] [ 6] [122946] +12:31:56 [ 13] [ 4] [0320] +12:31:56 [ 15] [ 4] [0320] +12:31:56 [ 18] [ 4] [6011] +12:31:56 [ 19] [ 3] [418] +12:31:56 [ 32] [ 6] [668899] +12:31:56 [ 35] [ 32] [6213544001498101=491212019810950] +12:31:56 [ 37] [ 12] [507901963547] +12:31:56 [ 38] [ 6] [472480] +12:31:56 [ 39] [ 2] [00] +12:31:56 [ 41] [ 8] [03020019] +12:31:56 [ 49] [ 3] [418] +12:31:56 [ 54] [ 40] [0001418C0000145174890002418C000014517489] +12:31:56 ============================================================================ +12:31:56 Sending to : +12:31:56 ============================================================================ +12:31:56 + + +waiting on router queue for slot.... +12:31:56 ============================================================================ +12:31:56 Slot Id : <330> +12:31:56 Transaction Type : RESPONSE +12:31:56 Received From : +12:31:56 ============================================================================ +12:31:56 FNo. Len. Field Value +12:31:56 ============================================================================ +12:31:56 [ 1] [ 4] [0210] +12:31:56 [ 2] [ 16] [6213548000292233] +12:31:56 [ 3] [ 6] [011000] +12:31:56 [ 4] [ 12] [000001000000] +12:31:56 [ 7] [ 10] [0320123941] +12:31:56 [ 11] [ 6] [223722] +12:31:56 [ 12] [ 6] [123941] +12:31:56 [ 13] [ 4] [0320] +12:31:56 [ 15] [ 4] [0320] +12:31:56 [ 18] [ 4] [6011] +12:31:56 [ 32] [ 6] [220699] +12:31:56 [ 35] [ 32] [6213548000292233=180312019223980] +12:31:56 [ 37] [ 12] [507900118760] +12:31:56 [ 38] [ 6] [316609] +12:31:56 [ 39] [ 2] [00] +12:31:56 [ 41] [ 8] [01001100] +12:31:56 [ 49] [ 3] [418] +12:31:56 [ 54] [ 40] [1001418C0000055386151002418C000005538615] +12:31:56 ============================================================================ +12:31:56 Calculate Source COMM Id = 1 +12:31:56 ============================================================================ +12:31:56 + + +waiting on router queue for slot.... +12:31:57 ============================================================================ +12:31:57 Slot Id : <332> +12:31:57 Transaction Type : RESPONSE +12:31:57 Received From : +12:31:57 ============================================================================ +12:31:57 FNo. Len. Field Value +12:31:57 ============================================================================ +12:31:57 [ 1] [ 4] [0210] +12:31:57 [ 2] [ 16] [6213544001498101] +12:31:57 [ 3] [ 6] [010000] +12:31:57 [ 4] [ 12] [000060000000] +12:31:57 [ 7] [ 10] [0320122946] +12:31:57 [ 11] [ 6] [944437] +12:31:57 [ 12] [ 6] [122946] +12:31:57 [ 13] [ 4] [0320] +12:31:57 [ 15] [ 4] [0320] +12:31:57 [ 18] [ 4] [6011] +12:31:57 [ 19] [ 3] [418] +12:31:57 [ 32] [ 6] [668899] +12:31:57 [ 35] [ 32] [6213544001498101=491212019810950] +12:31:57 [ 37] [ 12] [507901963547] +12:31:57 [ 38] [ 6] [472480] +12:31:57 [ 39] [ 2] [00] +12:31:57 [ 41] [ 8] [03020019] +12:31:57 [ 49] [ 3] [418] +12:31:57 [ 54] [ 40] [0001418C0000145174890002418C000014517489] +12:31:57 ============================================================================ +12:31:57 Calculate Source COMM Id = 4 +12:31:57 ============================================================================ +12:31:57 + + +waiting on router queue for slot.... +12:31:58 ============================================================================ +12:31:58 Slot Id : <356> +12:31:58 Transaction Type : REQUEST +12:31:58 Received From : +12:31:58 ============================================================================ +12:31:58 FNo. Len. Field Value +12:31:58 ============================================================================ +12:31:58 [ 1] [ 4] [0800] +12:31:58 [ 7] [ 10] [0320053105] +12:31:58 [ 11] [ 6] [156325] +12:31:58 [ 70] [ 3] [301] +12:31:58 ============================================================================ +12:31:58 + + +waiting on router queue for slot.... +12:31:58 Sending to : +12:31:58 ============================================================================ +12:31:58 ============================================================================ +12:31:58 Slot Id : <356> +12:31:58 Transaction Type : RESPONSE +12:31:58 Received From : +12:31:58 ============================================================================ +12:31:58 FNo. Len. Field Value +12:31:58 ============================================================================ +12:31:58 [ 1] [ 4] [0810] +12:31:58 [ 7] [ 10] [0320053105] +12:31:58 [ 11] [ 6] [156325] +12:31:58 [ 39] [ 2] [00] +12:31:58 [ 70] [ 3] [301] +12:31:58 ============================================================================ +12:31:58 Calculate Source COMM Id = 2 +12:31:58 ============================================================================ +12:31:58 + + +waiting on router queue for slot.... +12:32:08 ============================================================================ +12:32:08 Slot Id : <365> +12:32:08 Transaction Type : REQUEST +12:32:08 Received From : +12:32:08 ============================================================================ +12:32:08 FNo. Len. Field Value +12:32:08 ============================================================================ +12:32:08 [ 1] [ 4] [0800] +12:32:08 [ 7] [ 10] [0320053116] +12:32:08 [ 11] [ 6] [156326] +12:32:08 [ 70] [ 3] [301] +12:32:08 ============================================================================ +12:32:08 + + +waiting on router queue for slot.... +12:32:08 Sending to : +12:32:08 ============================================================================ +12:32:08 ============================================================================ +12:32:08 Slot Id : <365> +12:32:08 Transaction Type : RESPONSE +12:32:08 Received From : +12:32:08 ============================================================================ +12:32:08 FNo. Len. Field Value +12:32:08 ============================================================================ +12:32:08 [ 1] [ 4] [0810] +12:32:08 [ 7] [ 10] [0320053116] +12:32:08 [ 11] [ 6] [156326] +12:32:08 [ 39] [ 2] [00] +12:32:08 [ 70] [ 3] [301] +12:32:08 ============================================================================ +12:32:08 Calculate Source COMM Id = 2 +12:32:08 ============================================================================ +12:32:08 + + +waiting on router queue for slot.... +12:32:15 ============================================================================ +12:32:15 Slot Id : <366> +12:32:15 Transaction Type : REQUEST +12:32:15 Received From : +12:32:15 ============================================================================ +12:32:15 FNo. Len. Field Value +12:32:15 ============================================================================ +12:32:15 [ 1] [ 4] [0200] +12:32:15 [ 2] [ 16] [6688990107495002] +12:32:15 [ 3] [ 6] [010000] +12:32:15 [ 4] [ 12] [000040000000] +12:32:15 [ 7] [ 10] [0320123210] +12:32:15 [ 11] [ 6] [745682] +12:32:15 [ 12] [ 6] [123210] +12:32:15 [ 13] [ 4] [0320] +12:32:15 [ 15] [ 4] [0320] +12:32:15 [ 18] [ 4] [6011] +12:32:15 [ 22] [ 3] [900] +12:32:15 [ 25] [ 2] [02] +12:32:15 [ 28] [ 9] [D00002000] +12:32:15 [ 32] [ 6] [621354] +12:32:15 [ 35] [ 37] [6688990107495002=44031231500225900000] +12:32:15 [ 37] [ 12] [507904965671] +12:32:15 [ 41] [ 8] [15001100] +12:32:15 [ 42] [ 15] [NATIVE ] +12:32:15 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +12:32:15 [ 49] [ 3] [418] +12:32:15 [ 52] [ 16] [8F1D032BF63C0F04] +12:32:15 ============================================================================ +12:32:15 + + +waiting on router queue for slot.... +12:32:15 Sending to : +12:32:15 ============================================================================ +12:32:15 Sending to : +12:32:15 ============================================================================ +12:32:15 ============================================================================ +12:32:15 Slot Id : <366> +12:32:15 Transaction Type : REQUEST +12:32:15 Received From : +12:32:15 ============================================================================ +12:32:15 FNo. Len. Field Value +12:32:15 ============================================================================ +12:32:15 [ 1] [ 4] [0200] +12:32:15 [ 2] [ 16] [6688990107495002] +12:32:15 [ 3] [ 6] [010000] +12:32:15 [ 4] [ 12] [000040000000] +12:32:15 [ 7] [ 10] [0320123210] +12:32:15 [ 11] [ 6] [745682] +12:32:15 [ 12] [ 6] [123210] +12:32:15 [ 13] [ 4] [0320] +12:32:15 [ 15] [ 4] [0320] +12:32:15 [ 18] [ 4] [6011] +12:32:15 [ 22] [ 3] [900] +12:32:15 [ 25] [ 2] [02] +12:32:15 [ 28] [ 9] [D00002000] +12:32:15 [ 32] [ 6] [621354] +12:32:15 [ 35] [ 37] [6688990107495002=44031231500225900000] +12:32:15 [ 37] [ 12] [507904965671] +12:32:15 [ 41] [ 8] [15001100] +12:32:15 [ 42] [ 15] [NATIVE ] +12:32:15 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +12:32:15 [ 49] [ 3] [418] +12:32:15 [ 52] [ 16] [8F1D032BF63C0F04] +12:32:15 ============================================================================ +12:32:15 + + +waiting on router queue for slot.... +12:32:15 Sending to : +12:32:15 ============================================================================ +12:32:15 ============================================================================ +12:32:15 Slot Id : <366> +12:32:15 Transaction Type : REQUEST +12:32:15 Received From : +12:32:15 ============================================================================ +12:32:15 FNo. Len. Field Value +12:32:15 ============================================================================ +12:32:15 [ 1] [ 4] [0200] +12:32:15 [ 2] [ 16] [6688990107495002] +12:32:15 [ 3] [ 6] [010000] +12:32:15 [ 4] [ 12] [000040000000] +12:32:15 [ 7] [ 10] [0320123210] +12:32:15 [ 11] [ 6] [745682] +12:32:15 [ 12] [ 6] [123210] +12:32:15 [ 13] [ 4] [0320] +12:32:15 [ 15] [ 4] [0320] +12:32:15 [ 18] [ 4] [6011] +12:32:15 [ 22] [ 3] [900] +12:32:15 [ 25] [ 2] [02] +12:32:15 [ 28] [ 9] [D00002000] +12:32:15 [ 32] [ 6] [621354] +12:32:15 [ 35] [ 37] [6688990107495002=44031231500225900000] +12:32:15 [ 37] [ 12] [507904965671] +12:32:15 [ 41] [ 8] [15001100] +12:32:15 [ 42] [ 15] [NATIVE ] +12:32:15 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +12:32:15 [ 49] [ 3] [418] +12:32:15 [ 52] [ 16] [D089A88DBB3662BB] +12:32:15 ============================================================================ +12:32:15 + + +waiting on router queue for slot.... +12:32:15 Sending to : <4> +12:32:15 ============================================================================ +12:32:16 ============================================================================ +12:32:16 Slot Id : <366> +12:32:16 Transaction Type : RESPONSE +12:32:16 Received From : +12:32:16 ============================================================================ +12:32:16 FNo. Len. Field Value +12:32:16 ============================================================================ +12:32:16 [ 1] [ 4] [0210] +12:32:16 [ 2] [ 16] [6688990107495002] +12:32:16 [ 3] [ 6] [010000] +12:32:16 [ 4] [ 12] [000040000000] +12:32:16 [ 11] [ 6] [745682] +12:32:16 [ 12] [ 6] [123210] +12:32:16 [ 15] [ 4] [0320] +12:32:16 [ 18] [ 4] [6011] +12:32:16 [ 32] [ 6] [621354] +12:32:16 [ 35] [ 37] [6688990107495002=44031231500225900000] +12:32:16 [ 37] [ 12] [507904965671] +12:32:16 [ 38] [ 6] [241600] +12:32:16 [ 39] [ 2] [00] +12:32:16 [ 41] [ 8] [15001100] +12:32:16 [ 49] [ 3] [418] +12:32:16 [ 54] [ 20] [0002418C000004297019] +12:32:16 ============================================================================ +12:32:16 Sending to : +12:32:16 ============================================================================ +12:32:16 + + +waiting on router queue for slot.... +12:32:17 ============================================================================ +12:32:17 Slot Id : <366> +12:32:17 Transaction Type : RESPONSE +12:32:17 Received From : +12:32:17 ============================================================================ +12:32:17 FNo. Len. Field Value +12:32:17 ============================================================================ +12:32:17 [ 1] [ 4] [0210] +12:32:17 [ 2] [ 16] [6688990107495002] +12:32:17 [ 3] [ 6] [010000] +12:32:17 [ 4] [ 12] [000040000000] +12:32:17 [ 11] [ 6] [745682] +12:32:17 [ 12] [ 6] [123210] +12:32:17 [ 15] [ 4] [0320] +12:32:17 [ 18] [ 4] [6011] +12:32:17 [ 32] [ 6] [621354] +12:32:17 [ 35] [ 37] [6688990107495002=44031231500225900000] +12:32:17 [ 37] [ 12] [507904965671] +12:32:17 [ 38] [ 6] [241600] +12:32:17 [ 39] [ 2] [00] +12:32:17 [ 41] [ 8] [15001100] +12:32:17 [ 49] [ 3] [418] +12:32:17 [ 54] [ 20] [0002418C000004297019] +12:32:17 ============================================================================ +12:32:17 Calculate Source COMM Id = 0 +12:32:17 ============================================================================ +12:32:17 + + +waiting on router queue for slot.... +12:32:23 ============================================================================ +12:32:23 Slot Id : <313> +12:32:23 Transaction Type : REQUEST +12:32:23 Received From : +12:32:23 ============================================================================ +12:32:23 FNo. Len. Field Value +12:32:23 ============================================================================ +12:32:23 [ 1] [ 4] [0200] +12:32:23 [ 2] [ 16] [1808931300011069] +12:32:23 [ 3] [ 6] [011000] +12:32:23 [ 4] [ 12] [000010000000] +12:32:23 [ 7] [ 10] [0320123219] +12:32:23 [ 11] [ 6] [745719] +12:32:23 [ 12] [ 6] [123219] +12:32:23 [ 13] [ 4] [0320] +12:32:23 [ 15] [ 4] [0320] +12:32:23 [ 18] [ 4] [6011] +12:32:23 [ 22] [ 3] [900] +12:32:23 [ 25] [ 2] [02] +12:32:23 [ 28] [ 9] [D00002000] +12:32:23 [ 32] [ 6] [621354] +12:32:23 [ 35] [ 27] [1808931300011069=1803500820] +12:32:23 [ 37] [ 12] [507904228962] +12:32:23 [ 41] [ 8] [05004600] +12:32:23 [ 42] [ 15] [NATIVE ] +12:32:23 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +12:32:23 [ 49] [ 3] [418] +12:32:23 [ 52] [ 16] [391A05F7D0713E99] +12:32:23 ============================================================================ +12:32:23 + + +waiting on router queue for slot.... +12:32:23 Sending to : +12:32:23 ============================================================================ +12:32:23 Sending to : +12:32:23 ============================================================================ +12:32:23 ============================================================================ +12:32:23 Slot Id : <313> +12:32:23 Transaction Type : REQUEST +12:32:23 Received From : +12:32:23 ============================================================================ +12:32:23 FNo. Len. Field Value +12:32:23 ============================================================================ +12:32:23 [ 1] [ 4] [0200] +12:32:23 [ 2] [ 16] [1808931300011069] +12:32:23 [ 3] [ 6] [011000] +12:32:23 [ 4] [ 12] [000010000000] +12:32:23 [ 7] [ 10] [0320123219] +12:32:23 [ 11] [ 6] [745719] +12:32:23 [ 12] [ 6] [123219] +12:32:23 [ 13] [ 4] [0320] +12:32:23 [ 15] [ 4] [0320] +12:32:23 [ 18] [ 4] [6011] +12:32:23 [ 22] [ 3] [900] +12:32:23 [ 25] [ 2] [02] +12:32:23 [ 28] [ 9] [D00002000] +12:32:23 [ 32] [ 6] [621354] +12:32:23 [ 35] [ 27] [1808931300011069=1803500820] +12:32:23 [ 37] [ 12] [507904228962] +12:32:23 [ 41] [ 8] [05004600] +12:32:23 [ 42] [ 15] [NATIVE ] +12:32:23 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +12:32:23 [ 49] [ 3] [418] +12:32:23 [ 52] [ 16] [391A05F7D0713E99] +12:32:23 ============================================================================ +12:32:23 + + +waiting on router queue for slot.... +12:32:23 Sending to : +12:32:23 ============================================================================ +12:32:23 ============================================================================ +12:32:23 Slot Id : <313> +12:32:23 Transaction Type : REQUEST +12:32:23 Received From : +12:32:23 ============================================================================ +12:32:23 FNo. Len. Field Value +12:32:23 ============================================================================ +12:32:23 [ 1] [ 4] [0200] +12:32:23 [ 2] [ 16] [1808931300011069] +12:32:23 [ 3] [ 6] [011000] +12:32:23 [ 4] [ 12] [000010000000] +12:32:23 [ 7] [ 10] [0320123219] +12:32:23 [ 11] [ 6] [745719] +12:32:23 [ 12] [ 6] [123219] +12:32:23 [ 13] [ 4] [0320] +12:32:23 [ 15] [ 4] [0320] +12:32:23 [ 18] [ 4] [6011] +12:32:23 [ 22] [ 3] [900] +12:32:23 [ 25] [ 2] [02] +12:32:23 [ 28] [ 9] [D00002000] +12:32:23 [ 32] [ 6] [621354] +12:32:23 [ 35] [ 27] [1808931300011069=1803500820] +12:32:23 [ 37] [ 12] [507904228962] +12:32:23 [ 41] [ 8] [05004600] +12:32:23 [ 42] [ 15] [NATIVE ] +12:32:23 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +12:32:23 [ 49] [ 3] [418] +12:32:23 [ 52] [ 16] [60E78FAC5EA6FE48] +12:32:23 ============================================================================ +12:32:23 + + +waiting on router queue for slot.... +12:32:23 Sending to : <2> +12:32:23 ============================================================================ +12:32:24 ============================================================================ +12:32:24 Slot Id : <371> +12:32:24 Transaction Type : REQUEST +12:32:24 Received From : +12:32:24 ============================================================================ +12:32:24 FNo. Len. Field Value +12:32:24 ============================================================================ +12:32:24 [ 1] [ 4] [0800] +12:32:24 [ 7] [ 10] [0320053132] +12:32:24 [ 11] [ 6] [156327] +12:32:24 [ 70] [ 3] [301] +12:32:24 ============================================================================ +12:32:24 + + +waiting on router queue for slot.... +12:32:24 Sending to : +12:32:24 ============================================================================ +12:32:24 ============================================================================ +12:32:24 Slot Id : <371> +12:32:24 Transaction Type : RESPONSE +12:32:24 Received From : +12:32:24 ============================================================================ +12:32:24 FNo. Len. Field Value +12:32:24 ============================================================================ +12:32:24 [ 1] [ 4] [0810] +12:32:24 [ 7] [ 10] [0320053132] +12:32:24 [ 11] [ 6] [156327] +12:32:24 [ 39] [ 2] [00] +12:32:24 [ 70] [ 3] [301] +12:32:24 ============================================================================ +12:32:24 Calculate Source COMM Id = 2 +12:32:24 ============================================================================ +12:32:24 + + +waiting on router queue for slot.... +12:32:29 ============================================================================ +12:32:29 Slot Id : <313> +12:32:29 Transaction Type : RESPONSE +12:32:29 Received From : +12:32:29 ============================================================================ +12:32:29 FNo. Len. Field Value +12:32:29 ============================================================================ +12:32:29 [ 1] [ 4] [0210] +12:32:29 [ 2] [ 16] [1808931300011069] +12:32:29 [ 3] [ 6] [011000] +12:32:29 [ 4] [ 12] [000010000000] +12:32:29 [ 6] [ 12] [000010000000] +12:32:29 [ 7] [ 10] [0320123219] +12:32:29 [ 11] [ 6] [745719] +12:32:29 [ 12] [ 6] [123219] +12:32:29 [ 13] [ 4] [0320] +12:32:29 [ 18] [ 4] [6011] +12:32:29 [ 19] [ 3] [418] +12:32:29 [ 22] [ 3] [021] +12:32:29 [ 32] [ 6] [621354] +12:32:29 [ 35] [ 27] [1808931300011069=1803500820] +12:32:29 [ 37] [ 12] [507904228962] +12:32:29 [ 38] [ 6] [745719] +12:32:29 [ 39] [ 2] [00] +12:32:29 [ 41] [ 8] [05004600] +12:32:29 [ 49] [ 3] [418] +12:32:29 [ 52] [ 16] [60E78FAC5EA6FE48] +12:32:29 [ 54] [ 20] [1001418C000025709500] +12:32:29 ============================================================================ +12:32:29 Sending to : +12:32:29 ============================================================================ +12:32:29 + + +waiting on router queue for slot.... +12:32:30 ============================================================================ +12:32:30 Slot Id : <313> +12:32:30 Transaction Type : RESPONSE +12:32:30 Received From : +12:32:30 ============================================================================ +12:32:30 FNo. Len. Field Value +12:32:30 ============================================================================ +12:32:30 [ 1] [ 4] [0210] +12:32:30 [ 2] [ 16] [1808931300011069] +12:32:30 [ 3] [ 6] [011000] +12:32:30 [ 4] [ 12] [000010000000] +12:32:30 [ 6] [ 12] [000010000000] +12:32:30 [ 7] [ 10] [0320123219] +12:32:30 [ 11] [ 6] [745719] +12:32:30 [ 12] [ 6] [123219] +12:32:30 [ 13] [ 4] [0320] +12:32:30 [ 18] [ 4] [6011] +12:32:30 [ 19] [ 3] [418] +12:32:30 [ 22] [ 3] [021] +12:32:30 [ 32] [ 6] [621354] +12:32:30 [ 35] [ 27] [1808931300011069=1803500820] +12:32:30 [ 37] [ 12] [507904228962] +12:32:30 [ 38] [ 6] [745719] +12:32:30 [ 39] [ 2] [00] +12:32:30 [ 41] [ 8] [05004600] +12:32:30 [ 49] [ 3] [418] +12:32:30 [ 52] [ 16] [60E78FAC5EA6FE48] +12:32:30 [ 54] [ 20] [1001418C000025709500] +12:32:30 ============================================================================ +12:32:30 Calculate Source COMM Id = 0 +12:32:30 ============================================================================ +12:32:30 + + +waiting on router queue for slot.... +12:32:36 ============================================================================ +12:32:36 Slot Id : <343> +12:32:36 Transaction Type : REQUEST +12:32:36 Received From : +12:32:36 ============================================================================ +12:32:36 FNo. Len. Field Value +12:32:36 ============================================================================ +12:32:36 [ 1] [ 4] [0800] +12:32:36 [ 7] [ 10] [0320053143] +12:32:36 [ 11] [ 6] [156328] +12:32:36 [ 70] [ 3] [301] +12:32:36 ============================================================================ +12:32:36 + + +waiting on router queue for slot.... +12:32:36 Sending to : +12:32:36 ============================================================================ +12:32:36 ============================================================================ +12:32:36 Slot Id : <343> +12:32:36 Transaction Type : RESPONSE +12:32:36 Received From : +12:32:36 ============================================================================ +12:32:36 FNo. Len. Field Value +12:32:36 ============================================================================ +12:32:36 [ 1] [ 4] [0810] +12:32:36 [ 7] [ 10] [0320053143] +12:32:36 [ 11] [ 6] [156328] +12:32:36 [ 39] [ 2] [00] +12:32:36 [ 70] [ 3] [301] +12:32:36 ============================================================================ +12:32:36 Calculate Source COMM Id = 2 +12:32:36 ============================================================================ +12:32:36 + + +waiting on router queue for slot.... +12:32:45 ============================================================================ +12:32:45 Slot Id : <378> +12:32:45 Transaction Type : REQUEST +12:32:45 Received From : +12:32:45 ============================================================================ +12:32:45 FNo. Len. Field Value +12:32:45 ============================================================================ +12:32:45 [ 1] [ 4] [0200] +12:32:45 [ 2] [ 16] [6213545000905814] +12:32:45 [ 3] [ 6] [010000] +12:32:45 [ 4] [ 12] [000100000000] +12:32:45 [ 7] [ 10] [0320053152] +12:32:45 [ 11] [ 6] [269061] +12:32:45 [ 12] [ 6] [123152] +12:32:45 [ 13] [ 4] [0320] +12:32:45 [ 14] [ 4] [4912] +12:32:45 [ 15] [ 4] [0320] +12:32:45 [ 18] [ 4] [6011] +12:32:45 [ 19] [ 3] [418] +12:32:45 [ 22] [ 3] [021] +12:32:45 [ 25] [ 2] [01] +12:32:45 [ 28] [ 9] [D00002000] +12:32:45 [ 32] [ 6] [180893] +12:32:45 [ 35] [ 32] [6213545000905814=491212010581278] +12:32:45 [ 37] [ 12] [507905269061] +12:32:45 [ 41] [ 8] [0465UDNM] +12:32:45 [ 42] [ 15] [999999 ] +12:32:45 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:32:45 [ 49] [ 3] [418] +12:32:45 [ 52] [ 16] [8F30AF516D1676F3] +12:32:45 ============================================================================ +12:32:45 + + +waiting on router queue for slot.... +12:32:45 Sending to : +12:32:45 ============================================================================ +12:32:45 Sending to : +12:32:45 ============================================================================ +12:32:45 ============================================================================ +12:32:45 Slot Id : <378> +12:32:45 Transaction Type : REQUEST +12:32:45 Received From : +12:32:45 ============================================================================ +12:32:45 FNo. Len. Field Value +12:32:45 ============================================================================ +12:32:45 [ 1] [ 4] [0200] +12:32:45 [ 2] [ 16] [6213545000905814] +12:32:45 [ 3] [ 6] [010000] +12:32:45 [ 4] [ 12] [000100000000] +12:32:45 [ 7] [ 10] [0320053152] +12:32:45 [ 11] [ 6] [269061] +12:32:45 [ 12] [ 6] [123152] +12:32:45 [ 13] [ 4] [0320] +12:32:45 [ 14] [ 4] [4912] +12:32:45 [ 15] [ 4] [0320] +12:32:45 [ 18] [ 4] [6011] +12:32:45 [ 19] [ 3] [418] +12:32:45 [ 22] [ 3] [021] +12:32:45 [ 25] [ 2] [01] +12:32:45 [ 28] [ 9] [D00002000] +12:32:45 [ 32] [ 6] [180893] +12:32:45 [ 35] [ 32] [6213545000905814=491212010581278] +12:32:45 [ 37] [ 12] [507905269061] +12:32:45 [ 41] [ 8] [0465UDNM] +12:32:45 [ 42] [ 15] [999999 ] +12:32:45 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:32:45 [ 49] [ 3] [418] +12:32:45 [ 52] [ 16] [8F30AF516D1676F3] +12:32:45 ============================================================================ +12:32:45 + + +waiting on router queue for slot.... +12:32:45 Sending to : +12:32:45 ============================================================================ +12:32:45 ============================================================================ +12:32:45 Slot Id : <378> +12:32:45 Transaction Type : REQUEST +12:32:45 Received From : +12:32:45 ============================================================================ +12:32:45 FNo. Len. Field Value +12:32:45 ============================================================================ +12:32:45 [ 1] [ 4] [0200] +12:32:45 [ 2] [ 16] [6213545000905814] +12:32:45 [ 3] [ 6] [010000] +12:32:45 [ 4] [ 12] [000100000000] +12:32:45 [ 7] [ 10] [0320053152] +12:32:45 [ 11] [ 6] [269061] +12:32:45 [ 12] [ 6] [123152] +12:32:45 [ 13] [ 4] [0320] +12:32:45 [ 14] [ 4] [4912] +12:32:45 [ 15] [ 4] [0320] +12:32:45 [ 18] [ 4] [6011] +12:32:45 [ 19] [ 3] [418] +12:32:45 [ 22] [ 3] [021] +12:32:45 [ 25] [ 2] [01] +12:32:45 [ 28] [ 9] [D00002000] +12:32:45 [ 32] [ 6] [180893] +12:32:45 [ 35] [ 32] [6213545000905814=491212010581278] +12:32:45 [ 37] [ 12] [507905269061] +12:32:45 [ 41] [ 8] [0465UDNM] +12:32:45 [ 42] [ 15] [999999 ] +12:32:45 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +12:32:45 [ 49] [ 3] [418] +12:32:45 [ 52] [ 16] [88CF48FB4F670E46] +12:32:45 ============================================================================ +12:32:45 + + +waiting on router queue for slot.... +12:32:45 Sending to : <0> +12:32:45 ============================================================================ +12:32:45 ============================================================================ +12:32:45 Slot Id : <378> +12:32:45 Transaction Type : RESPONSE +12:32:45 Received From : +12:32:45 ============================================================================ +12:32:45 FNo. Len. Field Value +12:32:45 ============================================================================ +12:32:45 [ 1] [ 4] [0210] +12:32:45 [ 2] [ 16] [6213545000905814] +12:32:45 [ 3] [ 6] [010000] +12:32:45 [ 4] [ 12] [000100000000] +12:32:45 [ 7] [ 10] [0320053152] +12:32:45 [ 11] [ 6] [269061] +12:32:45 [ 12] [ 6] [123152] +12:32:45 [ 13] [ 4] [0320] +12:32:45 [ 15] [ 4] [0320] +12:32:45 [ 18] [ 4] [6011] +12:32:45 [ 19] [ 3] [418] +12:32:45 [ 32] [ 6] [180893] +12:32:45 [ 35] [ 32] [6213545000905814=491212010581278] +12:32:45 [ 37] [ 12] [507905269061] +12:32:45 [ 38] [ 6] [004434] +12:32:45 [ 39] [ 2] [00] +12:32:45 [ 41] [ 8] [0465UDNM] +12:32:45 [ 49] [ 3] [418] +12:32:45 [ 54] [ 40] [0001418C0003209925740002418C000320992574] +12:32:45 ============================================================================ +12:32:45 Sending to : +12:32:45 ============================================================================ +12:32:45 + + +waiting on router queue for slot.... +12:32:47 ============================================================================ +12:32:47 Slot Id : <378> +12:32:47 Transaction Type : RESPONSE +12:32:47 Received From : +12:32:47 ============================================================================ +12:32:47 FNo. Len. Field Value +12:32:47 ============================================================================ +12:32:47 [ 1] [ 4] [0210] +12:32:47 [ 2] [ 16] [6213545000905814] +12:32:47 [ 3] [ 6] [010000] +12:32:47 [ 4] [ 12] [000100000000] +12:32:47 [ 7] [ 10] [0320053152] +12:32:47 [ 11] [ 6] [269061] +12:32:47 [ 12] [ 6] [123152] +12:32:47 [ 13] [ 4] [0320] +12:32:47 [ 15] [ 4] [0320] +12:32:47 [ 18] [ 4] [6011] +12:32:47 [ 19] [ 3] [418] +12:32:47 [ 32] [ 6] [180893] +12:32:47 [ 35] [ 32] [6213545000905814=491212010581278] +12:32:47 [ 37] [ 12] [507905269061] +12:32:47 [ 38] [ 6] [004434] +12:32:47 [ 39] [ 2] [00] +12:32:47 [ 41] [ 8] [0465UDNM] +12:32:47 [ 49] [ 3] [418] +12:32:47 [ 54] [ 40] [0001418C0003209925740002418C000320992574] +12:32:47 ============================================================================ +12:32:47 Calculate Source COMM Id = 2 +12:32:47 ============================================================================ +12:32:47 + + +waiting on router queue for slot.... +12:32:54 ============================================================================ +12:32:54 Slot Id : <340> +12:32:54 Transaction Type : REQUEST +12:32:54 Received From : +12:32:54 ============================================================================ +12:32:54 FNo. Len. Field Value +12:32:54 ============================================================================ +12:32:54 [ 1] [ 4] [0800] +12:32:54 [ 2] [ 5] [02531] +12:32:54 [ 3] [ 6] [579128] +12:32:54 [ 7] [ 10] [0320053254] +12:32:54 [ 11] [ 6] [807140] +12:32:54 [ 15] [ 10] [0320053254] +12:32:54 [ 37] [ 11] [57912807140] +12:32:54 [ 70] [ 3] [001] +12:32:54 ============================================================================ +12:32:54 + + +waiting on router queue for slot.... +12:32:54 ============================================================================ +12:32:54 Slot Id : <340> +12:32:54 Transaction Type : RESPONSE +12:32:54 Received From : +12:32:54 ============================================================================ +12:32:54 FNo. Len. Field Value +12:32:54 ============================================================================ +12:32:54 [ 1] [ 4] [0810] +12:32:54 [ 7] [ 10] [0320053254] +12:32:54 [ 11] [ 6] [807140] +12:32:54 [ 15] [ 4] [0320] +12:32:54 [ 37] [ 12] [57912807140] +12:32:54 [ 39] [ 2] [00] +12:32:54 [ 70] [ 3] [001] +12:32:54 ============================================================================ +12:32:54 Sending to : +12:32:54 ============================================================================ +12:32:54 + + +waiting on router queue for slot.... +12:33:05 ============================================================================ +12:33:05 Slot Id : <373> +12:33:05 Transaction Type : REQUEST +12:33:05 Received From : +12:33:05 ============================================================================ +12:33:05 FNo. Len. Field Value +12:33:05 ============================================================================ +12:33:05 [ 1] [ 4] [0800] +12:33:05 [ 7] [ 10] [0320053211] +12:33:05 [ 11] [ 6] [156329] +12:33:05 [ 70] [ 3] [301] +12:33:05 ============================================================================ +12:33:05 + + +waiting on router queue for slot.... +12:33:05 Sending to : +12:33:05 ============================================================================ +12:33:05 ============================================================================ +12:33:05 Slot Id : <373> +12:33:05 Transaction Type : RESPONSE +12:33:05 Received From : +12:33:05 ============================================================================ +12:33:05 FNo. Len. Field Value +12:33:05 ============================================================================ +12:33:05 [ 1] [ 4] [0810] +12:33:05 [ 7] [ 10] [0320053211] +12:33:05 [ 11] [ 6] [156329] +12:33:05 [ 39] [ 2] [00] +12:33:05 [ 70] [ 3] [301] +12:33:05 ============================================================================ +12:33:05 Calculate Source COMM Id = 2 +12:33:05 ============================================================================ +12:33:05 + + +waiting on router queue for slot.... +12:33:10 ============================================================================ +12:33:10 Slot Id : <324> +12:33:10 Transaction Type : REQUEST +12:33:10 Received From : +12:33:10 ============================================================================ +12:33:10 FNo. Len. Field Value +12:33:10 ============================================================================ +12:33:10 [ 1] [ 4] [0200] +12:33:10 [ 2] [ 16] [6213548000335404] +12:33:10 [ 3] [ 6] [011000] +12:33:10 [ 4] [ 12] [000002000000] +12:33:10 [ 7] [ 10] [0320124057] +12:33:10 [ 11] [ 6] [223725] +12:33:10 [ 12] [ 6] [124057] +12:33:10 [ 13] [ 4] [0320] +12:33:10 [ 14] [ 4] [1803] +12:33:10 [ 15] [ 4] [0320] +12:33:10 [ 18] [ 4] [6011] +12:33:10 [ 22] [ 3] [900] +12:33:10 [ 25] [ 2] [02] +12:33:10 [ 28] [ 9] [D00002000] +12:33:10 [ 32] [ 6] [220699] +12:33:10 [ 35] [ 32] [6213548000335404=180312013540492] +12:33:10 [ 37] [ 12] [507900118762] +12:33:10 [ 41] [ 8] [01001100] +12:33:10 [ 42] [ 15] [APTRA ] +12:33:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:33:10 [ 49] [ 3] [418] +12:33:10 [ 52] [ 16] [EE054691ED9E5F53] +12:33:10 ============================================================================ +12:33:10 + + +waiting on router queue for slot.... +12:33:10 Sending to : +12:33:10 ============================================================================ +12:33:10 Sending to : +12:33:10 ============================================================================ +12:33:10 ============================================================================ +12:33:10 Slot Id : <324> +12:33:10 Transaction Type : REQUEST +12:33:10 Received From : +12:33:10 ============================================================================ +12:33:10 FNo. Len. Field Value +12:33:10 ============================================================================ +12:33:10 [ 1] [ 4] [0200] +12:33:10 [ 2] [ 16] [6213548000335404] +12:33:10 [ 3] [ 6] [011000] +12:33:10 [ 4] [ 12] [000002000000] +12:33:10 [ 7] [ 10] [0320124057] +12:33:10 [ 11] [ 6] [223725] +12:33:10 [ 12] [ 6] [124057] +12:33:10 [ 13] [ 4] [0320] +12:33:10 [ 14] [ 4] [1803] +12:33:10 [ 15] [ 4] [0320] +12:33:10 [ 18] [ 4] [6011] +12:33:10 [ 22] [ 3] [900] +12:33:10 [ 25] [ 2] [02] +12:33:10 [ 28] [ 9] [D00002000] +12:33:10 [ 32] [ 6] [220699] +12:33:10 [ 35] [ 32] [6213548000335404=180312013540492] +12:33:10 [ 37] [ 12] [507900118762] +12:33:10 [ 41] [ 8] [01001100] +12:33:10 [ 42] [ 15] [APTRA ] +12:33:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:33:10 [ 49] [ 3] [418] +12:33:10 [ 52] [ 16] [EE054691ED9E5F53] +12:33:10 ============================================================================ +12:33:10 + + +waiting on router queue for slot.... +12:33:10 Sending to : +12:33:10 ============================================================================ +12:33:10 ============================================================================ +12:33:10 Slot Id : <324> +12:33:10 Transaction Type : REQUEST +12:33:10 Received From : +12:33:10 ============================================================================ +12:33:10 FNo. Len. Field Value +12:33:10 ============================================================================ +12:33:10 [ 1] [ 4] [0200] +12:33:10 [ 2] [ 16] [6213548000335404] +12:33:10 [ 3] [ 6] [011000] +12:33:10 [ 4] [ 12] [000002000000] +12:33:10 [ 7] [ 10] [0320124057] +12:33:10 [ 11] [ 6] [223725] +12:33:10 [ 12] [ 6] [124057] +12:33:10 [ 13] [ 4] [0320] +12:33:10 [ 14] [ 4] [1803] +12:33:10 [ 15] [ 4] [0320] +12:33:10 [ 18] [ 4] [6011] +12:33:10 [ 22] [ 3] [900] +12:33:10 [ 25] [ 2] [02] +12:33:10 [ 28] [ 9] [D00002000] +12:33:10 [ 32] [ 6] [220699] +12:33:10 [ 35] [ 32] [6213548000335404=180312013540492] +12:33:10 [ 37] [ 12] [507900118762] +12:33:10 [ 41] [ 8] [01001100] +12:33:10 [ 42] [ 15] [APTRA ] +12:33:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:33:10 [ 49] [ 3] [418] +12:33:10 [ 52] [ 16] [B9C52A35B862E959] +12:33:10 ============================================================================ +12:33:10 + + +waiting on router queue for slot.... +12:33:10 Sending to : <0> +12:33:10 ============================================================================ +12:33:11 ============================================================================ +12:33:11 Slot Id : <324> +12:33:11 Transaction Type : RESPONSE +12:33:11 Received From : +12:33:11 ============================================================================ +12:33:11 FNo. Len. Field Value +12:33:11 ============================================================================ +12:33:11 [ 1] [ 4] [0210] +12:33:11 [ 2] [ 16] [6213548000335404] +12:33:11 [ 3] [ 6] [011000] +12:33:11 [ 4] [ 12] [000002000000] +12:33:11 [ 7] [ 10] [0320124057] +12:33:11 [ 11] [ 6] [223725] +12:33:11 [ 12] [ 6] [124057] +12:33:11 [ 13] [ 4] [0320] +12:33:11 [ 15] [ 4] [0320] +12:33:11 [ 18] [ 4] [6011] +12:33:11 [ 32] [ 6] [220699] +12:33:11 [ 35] [ 32] [6213548000335404=180312013540492] +12:33:11 [ 37] [ 12] [507900118762] +12:33:11 [ 38] [ 6] [223725] +12:33:11 [ 39] [ 2] [51] +12:33:11 [ 41] [ 8] [01001100] +12:33:11 [ 49] [ 3] [418] +12:33:11 [ 54] [ 40] [1001418C0000068533321002418C000006853332] +12:33:11 ============================================================================ +12:33:11 Sending to : +12:33:11 ============================================================================ +12:33:11 + + +waiting on router queue for slot.... +12:33:12 ============================================================================ +12:33:12 Slot Id : <324> +12:33:12 Transaction Type : RESPONSE +12:33:12 Received From : +12:33:12 ============================================================================ +12:33:12 FNo. Len. Field Value +12:33:12 ============================================================================ +12:33:12 [ 1] [ 4] [0210] +12:33:12 [ 2] [ 16] [6213548000335404] +12:33:12 [ 3] [ 6] [011000] +12:33:12 [ 4] [ 12] [000002000000] +12:33:12 [ 7] [ 10] [0320124057] +12:33:12 [ 11] [ 6] [223725] +12:33:12 [ 12] [ 6] [124057] +12:33:12 [ 13] [ 4] [0320] +12:33:12 [ 15] [ 4] [0320] +12:33:12 [ 18] [ 4] [6011] +12:33:12 [ 32] [ 6] [220699] +12:33:12 [ 35] [ 32] [6213548000335404=180312013540492] +12:33:12 [ 37] [ 12] [507900118762] +12:33:12 [ 38] [ 6] [223725] +12:33:12 [ 39] [ 2] [51] +12:33:12 [ 41] [ 8] [01001100] +12:33:12 [ 49] [ 3] [418] +12:33:12 [ 54] [ 40] [1001418C0000068533321002418C000006853332] +12:33:12 ============================================================================ +12:33:12 Calculate Source COMM Id = 1 +12:33:12 ============================================================================ +12:33:12 + + +waiting on router queue for slot.... +12:33:20 ============================================================================ +12:33:20 Slot Id : <382> +12:33:20 Transaction Type : REQUEST +12:33:20 Received From : +12:33:20 ============================================================================ +12:33:20 FNo. Len. Field Value +12:33:20 ============================================================================ +12:33:20 [ 1] [ 4] [0800] +12:33:20 [ 7] [ 10] [0320053227] +12:33:20 [ 11] [ 6] [156330] +12:33:20 [ 70] [ 3] [301] +12:33:20 ============================================================================ +12:33:20 + + +waiting on router queue for slot.... +12:33:20 Sending to : +12:33:20 ============================================================================ +12:33:20 ============================================================================ +12:33:20 Slot Id : <382> +12:33:20 Transaction Type : RESPONSE +12:33:20 Received From : +12:33:20 ============================================================================ +12:33:20 FNo. Len. Field Value +12:33:20 ============================================================================ +12:33:20 [ 1] [ 4] [0810] +12:33:20 [ 7] [ 10] [0320053227] +12:33:20 [ 11] [ 6] [156330] +12:33:20 [ 39] [ 2] [00] +12:33:20 [ 70] [ 3] [301] +12:33:20 ============================================================================ +12:33:20 Calculate Source COMM Id = 2 +12:33:20 ============================================================================ +12:33:20 + + +waiting on router queue for slot.... +12:33:30 ============================================================================ +12:33:30 Slot Id : <355> +12:33:30 Transaction Type : REQUEST +12:33:30 Received From : +12:33:30 ============================================================================ +12:33:30 FNo. Len. Field Value +12:33:30 ============================================================================ +12:33:30 [ 1] [ 4] [0800] +12:33:30 [ 7] [ 10] [0320053237] +12:33:30 [ 11] [ 6] [156331] +12:33:30 [ 70] [ 3] [301] +12:33:30 ============================================================================ +12:33:30 + + +waiting on router queue for slot.... +12:33:30 Sending to : +12:33:30 ============================================================================ +12:33:30 ============================================================================ +12:33:30 Slot Id : <355> +12:33:30 Transaction Type : RESPONSE +12:33:30 Received From : +12:33:30 ============================================================================ +12:33:30 FNo. Len. Field Value +12:33:30 ============================================================================ +12:33:30 [ 1] [ 4] [0810] +12:33:30 [ 7] [ 10] [0320053237] +12:33:30 [ 11] [ 6] [156331] +12:33:30 [ 39] [ 2] [00] +12:33:30 [ 70] [ 3] [301] +12:33:30 ============================================================================ +12:33:30 Calculate Source COMM Id = 2 +12:33:30 ============================================================================ +12:33:30 + + +waiting on router queue for slot.... +12:33:46 ============================================================================ +12:33:46 Slot Id : <353> +12:33:46 Transaction Type : REQUEST +12:33:46 Received From : +12:33:46 ============================================================================ +12:33:46 FNo. Len. Field Value +12:33:46 ============================================================================ +12:33:46 [ 1] [ 4] [0800] +12:33:46 [ 7] [ 10] [0320053253] +12:33:46 [ 11] [ 6] [156332] +12:33:46 [ 70] [ 3] [301] +12:33:46 ============================================================================ +12:33:46 + + +waiting on router queue for slot.... +12:33:46 Sending to : +12:33:46 ============================================================================ +12:33:46 ============================================================================ +12:33:46 Slot Id : <353> +12:33:46 Transaction Type : RESPONSE +12:33:46 Received From : +12:33:46 ============================================================================ +12:33:46 FNo. Len. Field Value +12:33:46 ============================================================================ +12:33:46 [ 1] [ 4] [0810] +12:33:46 [ 7] [ 10] [0320053253] +12:33:46 [ 11] [ 6] [156332] +12:33:46 [ 39] [ 2] [00] +12:33:46 [ 70] [ 3] [301] +12:33:46 ============================================================================ +12:33:46 Calculate Source COMM Id = 2 +12:33:46 ============================================================================ +12:33:46 + + +waiting on router queue for slot.... +12:33:56 ============================================================================ +12:33:56 Slot Id : <363> +12:33:56 Transaction Type : REQUEST +12:33:56 Received From : +12:33:56 ============================================================================ +12:33:56 FNo. Len. Field Value +12:33:56 ============================================================================ +12:33:56 [ 1] [ 4] [0800] +12:33:56 [ 2] [ 5] [02531] +12:33:56 [ 3] [ 6] [579128] +12:33:56 [ 7] [ 10] [0320053356] +12:33:56 [ 11] [ 6] [807141] +12:33:56 [ 15] [ 10] [0320053356] +12:33:56 [ 37] [ 11] [57912807141] +12:33:56 [ 70] [ 3] [001] +12:33:56 ============================================================================ +12:33:56 + + +waiting on router queue for slot.... +12:33:56 ============================================================================ +12:33:56 Slot Id : <363> +12:33:56 Transaction Type : RESPONSE +12:33:56 Received From : +12:33:56 ============================================================================ +12:33:56 FNo. Len. Field Value +12:33:56 ============================================================================ +12:33:56 [ 1] [ 4] [0810] +12:33:56 [ 7] [ 10] [0320053356] +12:33:56 [ 11] [ 6] [807141] +12:33:56 [ 15] [ 4] [0320] +12:33:56 [ 37] [ 12] [57912807141] +12:33:56 [ 39] [ 2] [00] +12:33:56 [ 70] [ 3] [001] +12:33:56 ============================================================================ +12:33:56 Sending to : +12:33:56 ============================================================================ +12:33:56 + + +waiting on router queue for slot.... +12:33:57 ============================================================================ +12:33:57 Slot Id : <358> +12:33:57 Transaction Type : REQUEST +12:33:57 Received From : +12:33:57 ============================================================================ +12:33:57 FNo. Len. Field Value +12:33:57 ============================================================================ +12:33:57 [ 1] [ 4] [0200] +12:33:57 [ 2] [ 16] [6213548000335404] +12:33:57 [ 3] [ 6] [011000] +12:33:57 [ 4] [ 12] [000001000000] +12:33:57 [ 7] [ 10] [0320124144] +12:33:57 [ 11] [ 6] [223728] +12:33:57 [ 12] [ 6] [124144] +12:33:57 [ 13] [ 4] [0320] +12:33:57 [ 14] [ 4] [1803] +12:33:57 [ 15] [ 4] [0320] +12:33:57 [ 18] [ 4] [6011] +12:33:57 [ 22] [ 3] [900] +12:33:57 [ 25] [ 2] [02] +12:33:57 [ 28] [ 9] [D00002000] +12:33:57 [ 32] [ 6] [220699] +12:33:57 [ 35] [ 32] [6213548000335404=180312013540492] +12:33:57 [ 37] [ 12] [507900118764] +12:33:57 [ 41] [ 8] [01001100] +12:33:57 [ 42] [ 15] [APTRA ] +12:33:57 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:33:57 [ 49] [ 3] [418] +12:33:57 [ 52] [ 16] [EE054691ED9E5F53] +12:33:57 ============================================================================ +12:33:57 + + +waiting on router queue for slot.... +12:33:57 Sending to : +12:33:57 ============================================================================ +12:33:57 Sending to : +12:33:57 ============================================================================ +12:33:57 ============================================================================ +12:33:57 Slot Id : <358> +12:33:57 Transaction Type : REQUEST +12:33:57 Received From : +12:33:57 ============================================================================ +12:33:57 FNo. Len. Field Value +12:33:57 ============================================================================ +12:33:57 [ 1] [ 4] [0200] +12:33:57 [ 2] [ 16] [6213548000335404] +12:33:57 [ 3] [ 6] [011000] +12:33:57 [ 4] [ 12] [000001000000] +12:33:57 [ 7] [ 10] [0320124144] +12:33:57 [ 11] [ 6] [223728] +12:33:57 [ 12] [ 6] [124144] +12:33:57 [ 13] [ 4] [0320] +12:33:57 [ 14] [ 4] [1803] +12:33:57 [ 15] [ 4] [0320] +12:33:57 [ 18] [ 4] [6011] +12:33:57 [ 22] [ 3] [900] +12:33:57 [ 25] [ 2] [02] +12:33:57 [ 28] [ 9] [D00002000] +12:33:57 [ 32] [ 6] [220699] +12:33:57 [ 35] [ 32] [6213548000335404=180312013540492] +12:33:57 [ 37] [ 12] [507900118764] +12:33:57 [ 41] [ 8] [01001100] +12:33:57 [ 42] [ 15] [APTRA ] +12:33:57 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:33:57 [ 49] [ 3] [418] +12:33:57 [ 52] [ 16] [EE054691ED9E5F53] +12:33:57 ============================================================================ +12:33:57 + + +waiting on router queue for slot.... +12:33:57 Sending to : +12:33:57 ============================================================================ +12:33:57 ============================================================================ +12:33:57 Slot Id : <358> +12:33:57 Transaction Type : REQUEST +12:33:57 Received From : +12:33:57 ============================================================================ +12:33:57 FNo. Len. Field Value +12:33:57 ============================================================================ +12:33:57 [ 1] [ 4] [0200] +12:33:57 [ 2] [ 16] [6213548000335404] +12:33:57 [ 3] [ 6] [011000] +12:33:57 [ 4] [ 12] [000001000000] +12:33:57 [ 7] [ 10] [0320124144] +12:33:57 [ 11] [ 6] [223728] +12:33:57 [ 12] [ 6] [124144] +12:33:57 [ 13] [ 4] [0320] +12:33:57 [ 14] [ 4] [1803] +12:33:57 [ 15] [ 4] [0320] +12:33:57 [ 18] [ 4] [6011] +12:33:57 [ 22] [ 3] [900] +12:33:57 [ 25] [ 2] [02] +12:33:57 [ 28] [ 9] [D00002000] +12:33:57 [ 32] [ 6] [220699] +12:33:57 [ 35] [ 32] [6213548000335404=180312013540492] +12:33:57 [ 37] [ 12] [507900118764] +12:33:57 [ 41] [ 8] [01001100] +12:33:57 [ 42] [ 15] [APTRA ] +12:33:57 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:33:57 [ 49] [ 3] [418] +12:33:57 [ 52] [ 16] [B9C52A35B862E959] +12:33:57 ============================================================================ +12:33:57 + + +waiting on router queue for slot.... +12:33:57 Sending to : <0> +12:33:57 ============================================================================ +12:33:58 ============================================================================ +12:33:58 Slot Id : <358> +12:33:58 Transaction Type : RESPONSE +12:33:58 Received From : +12:33:58 ============================================================================ +12:33:58 FNo. Len. Field Value +12:33:58 ============================================================================ +12:33:58 [ 1] [ 4] [0210] +12:33:58 [ 2] [ 16] [6213548000335404] +12:33:58 [ 3] [ 6] [011000] +12:33:58 [ 4] [ 12] [000001000000] +12:33:58 [ 7] [ 10] [0320124144] +12:33:58 [ 11] [ 6] [223728] +12:33:58 [ 12] [ 6] [124144] +12:33:58 [ 13] [ 4] [0320] +12:33:58 [ 15] [ 4] [0320] +12:33:58 [ 18] [ 4] [6011] +12:33:58 [ 32] [ 6] [220699] +12:33:58 [ 35] [ 32] [6213548000335404=180312013540492] +12:33:58 [ 37] [ 12] [507900118764] +12:33:58 [ 38] [ 6] [147179] +12:33:58 [ 39] [ 2] [00] +12:33:58 [ 41] [ 8] [01001100] +12:33:58 [ 49] [ 3] [418] +12:33:58 [ 54] [ 40] [1001418C0000056533321002418C000005653332] +12:33:58 ============================================================================ +12:33:58 Sending to : +12:33:58 ============================================================================ +12:33:58 + + +waiting on router queue for slot.... +12:33:59 ============================================================================ +12:33:59 Slot Id : <358> +12:33:59 Transaction Type : RESPONSE +12:33:59 Received From : +12:33:59 ============================================================================ +12:33:59 FNo. Len. Field Value +12:33:59 ============================================================================ +12:33:59 [ 1] [ 4] [0210] +12:33:59 [ 2] [ 16] [6213548000335404] +12:33:59 [ 3] [ 6] [011000] +12:33:59 [ 4] [ 12] [000001000000] +12:33:59 [ 7] [ 10] [0320124144] +12:33:59 [ 11] [ 6] [223728] +12:33:59 [ 12] [ 6] [124144] +12:33:59 [ 13] [ 4] [0320] +12:33:59 [ 15] [ 4] [0320] +12:33:59 [ 18] [ 4] [6011] +12:33:59 [ 32] [ 6] [220699] +12:33:59 [ 35] [ 32] [6213548000335404=180312013540492] +12:33:59 [ 37] [ 12] [507900118764] +12:33:59 [ 38] [ 6] [147179] +12:33:59 [ 39] [ 2] [00] +12:33:59 [ 41] [ 8] [01001100] +12:33:59 [ 49] [ 3] [418] +12:33:59 [ 54] [ 40] [1001418C0000056533321002418C000005653332] +12:33:59 ============================================================================ +12:33:59 Calculate Source COMM Id = 1 +12:33:59 ============================================================================ +12:33:59 + + +waiting on router queue for slot.... +12:34:01 ============================================================================ +12:34:01 Slot Id : <370> +12:34:01 Transaction Type : REQUEST +12:34:01 Received From : +12:34:01 ============================================================================ +12:34:01 FNo. Len. Field Value +12:34:01 ============================================================================ +12:34:01 [ 1] [ 4] [0800] +12:34:01 [ 7] [ 10] [0320053308] +12:34:01 [ 11] [ 6] [156333] +12:34:01 [ 70] [ 3] [301] +12:34:01 ============================================================================ +12:34:01 + + +waiting on router queue for slot.... +12:34:01 Sending to : +12:34:01 ============================================================================ +12:34:01 ============================================================================ +12:34:01 Slot Id : <370> +12:34:01 Transaction Type : RESPONSE +12:34:01 Received From : +12:34:01 ============================================================================ +12:34:01 FNo. Len. Field Value +12:34:01 ============================================================================ +12:34:01 [ 1] [ 4] [0810] +12:34:01 [ 7] [ 10] [0320053308] +12:34:01 [ 11] [ 6] [156333] +12:34:01 [ 39] [ 2] [00] +12:34:01 [ 70] [ 3] [301] +12:34:01 ============================================================================ +12:34:01 Calculate Source COMM Id = 2 +12:34:01 ============================================================================ +12:34:01 + + +waiting on router queue for slot.... +12:34:05 ============================================================================ +12:34:05 Slot Id : <360> +12:34:05 Transaction Type : REQUEST +12:34:05 Received From : +12:34:05 ============================================================================ +12:34:05 FNo. Len. Field Value +12:34:05 ============================================================================ +12:34:05 [ 1] [ 4] [0200] +12:34:05 [ 2] [ 16] [6213544001973418] +12:34:05 [ 3] [ 6] [302000] +12:34:05 [ 7] [ 10] [0320053312] +12:34:05 [ 11] [ 6] [269068] +12:34:05 [ 12] [ 6] [123312] +12:34:05 [ 13] [ 4] [0320] +12:34:05 [ 14] [ 4] [4912] +12:34:05 [ 15] [ 4] [0320] +12:34:05 [ 18] [ 4] [6011] +12:34:05 [ 19] [ 3] [418] +12:34:05 [ 22] [ 3] [021] +12:34:05 [ 25] [ 2] [01] +12:34:05 [ 32] [ 6] [180893] +12:34:05 [ 35] [ 32] [6213544001973418=491212017341444] +12:34:05 [ 37] [ 12] [507905269068] +12:34:05 [ 41] [ 8] [0483XKNH] +12:34:05 [ 42] [ 15] [999999 ] +12:34:05 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +12:34:05 [ 49] [ 3] [418] +12:34:05 [ 52] [ 16] [EBC1228A1318DB1E] +12:34:05 ============================================================================ +12:34:05 + + +waiting on router queue for slot.... +12:34:05 Sending to : +12:34:05 ============================================================================ +12:34:05 Sending to : +12:34:05 ============================================================================ +12:34:05 ============================================================================ +12:34:05 Slot Id : <360> +12:34:05 Transaction Type : REQUEST +12:34:05 Received From : +12:34:05 ============================================================================ +12:34:05 FNo. Len. Field Value +12:34:05 ============================================================================ +12:34:05 [ 1] [ 4] [0200] +12:34:05 [ 2] [ 16] [6213544001973418] +12:34:05 [ 3] [ 6] [302000] +12:34:05 [ 7] [ 10] [0320053312] +12:34:05 [ 11] [ 6] [269068] +12:34:05 [ 12] [ 6] [123312] +12:34:05 [ 13] [ 4] [0320] +12:34:05 [ 14] [ 4] [4912] +12:34:05 [ 15] [ 4] [0320] +12:34:05 [ 18] [ 4] [6011] +12:34:05 [ 19] [ 3] [418] +12:34:05 [ 22] [ 3] [021] +12:34:05 [ 25] [ 2] [01] +12:34:05 [ 32] [ 6] [180893] +12:34:05 [ 35] [ 32] [6213544001973418=491212017341444] +12:34:05 [ 37] [ 12] [507905269068] +12:34:05 [ 41] [ 8] [0483XKNH] +12:34:05 [ 42] [ 15] [999999 ] +12:34:05 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +12:34:05 [ 49] [ 3] [418] +12:34:05 [ 52] [ 16] [EBC1228A1318DB1E] +12:34:05 ============================================================================ +12:34:05 + + +waiting on router queue for slot.... +12:34:05 Sending to : +12:34:05 ============================================================================ +12:34:05 ============================================================================ +12:34:05 Slot Id : <360> +12:34:05 Transaction Type : REQUEST +12:34:05 Received From : +12:34:05 ============================================================================ +12:34:05 FNo. Len. Field Value +12:34:05 ============================================================================ +12:34:05 [ 1] [ 4] [0200] +12:34:05 [ 2] [ 16] [6213544001973418] +12:34:05 [ 3] [ 6] [302000] +12:34:05 [ 7] [ 10] [0320053312] +12:34:05 [ 11] [ 6] [269068] +12:34:05 [ 12] [ 6] [123312] +12:34:05 [ 13] [ 4] [0320] +12:34:05 [ 14] [ 4] [4912] +12:34:05 [ 15] [ 4] [0320] +12:34:05 [ 18] [ 4] [6011] +12:34:05 [ 19] [ 3] [418] +12:34:05 [ 22] [ 3] [021] +12:34:05 [ 25] [ 2] [01] +12:34:05 [ 32] [ 6] [180893] +12:34:05 [ 35] [ 32] [6213544001973418=491212017341444] +12:34:05 [ 37] [ 12] [507905269068] +12:34:05 [ 41] [ 8] [0483XKNH] +12:34:05 [ 42] [ 15] [999999 ] +12:34:05 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +12:34:05 [ 49] [ 3] [418] +12:34:05 [ 52] [ 16] [7135AF40CFD0E56E] +12:34:05 ============================================================================ +12:34:05 + + +waiting on router queue for slot.... +12:34:05 Sending to : <0> +12:34:05 ============================================================================ +12:34:05 ============================================================================ +12:34:05 Slot Id : <360> +12:34:05 Transaction Type : RESPONSE +12:34:05 Received From : +12:34:05 ============================================================================ +12:34:05 FNo. Len. Field Value +12:34:05 ============================================================================ +12:34:05 [ 1] [ 4] [0210] +12:34:05 [ 2] [ 16] [6213544001973418] +12:34:05 [ 3] [ 6] [302000] +12:34:05 [ 4] [ 12] [000000000000] +12:34:05 [ 7] [ 10] [0320053312] +12:34:05 [ 11] [ 6] [269068] +12:34:05 [ 12] [ 6] [123312] +12:34:05 [ 13] [ 4] [0320] +12:34:05 [ 15] [ 4] [0320] +12:34:05 [ 18] [ 4] [6011] +12:34:05 [ 19] [ 3] [418] +12:34:05 [ 32] [ 6] [180893] +12:34:05 [ 35] [ 32] [6213544001973418=491212017341444] +12:34:05 [ 37] [ 12] [507905269068] +12:34:05 [ 38] [ 6] [123468] +12:34:05 [ 39] [ 2] [00] +12:34:05 [ 41] [ 8] [0483XKNH] +12:34:05 [ 49] [ 3] [418] +12:34:05 [ 54] [ 40] [2001418C0008789622372002418C000878962237] +12:34:05 ============================================================================ +12:34:05 Sending to : +12:34:05 ============================================================================ +12:34:05 + + +waiting on router queue for slot.... +12:34:07 ============================================================================ +12:34:07 Slot Id : <360> +12:34:07 Transaction Type : RESPONSE +12:34:07 Received From : +12:34:07 ============================================================================ +12:34:07 FNo. Len. Field Value +12:34:07 ============================================================================ +12:34:07 [ 1] [ 4] [0210] +12:34:07 [ 2] [ 16] [6213544001973418] +12:34:07 [ 3] [ 6] [302000] +12:34:07 [ 4] [ 12] [000000000000] +12:34:07 [ 7] [ 10] [0320053312] +12:34:07 [ 11] [ 6] [269068] +12:34:07 [ 12] [ 6] [123312] +12:34:07 [ 13] [ 4] [0320] +12:34:07 [ 15] [ 4] [0320] +12:34:07 [ 18] [ 4] [6011] +12:34:07 [ 19] [ 3] [418] +12:34:07 [ 32] [ 6] [180893] +12:34:07 [ 35] [ 32] [6213544001973418=491212017341444] +12:34:07 [ 37] [ 12] [507905269068] +12:34:07 [ 38] [ 6] [123468] +12:34:07 [ 39] [ 2] [00] +12:34:07 [ 41] [ 8] [0483XKNH] +12:34:07 [ 49] [ 3] [418] +12:34:07 [ 54] [ 40] [2001418C0008789622372002418C000878962237] +12:34:07 ============================================================================ +12:34:07 Calculate Source COMM Id = 2 +12:34:07 ============================================================================ +12:34:07 + + +waiting on router queue for slot.... +12:34:22 ============================================================================ +12:34:22 Slot Id : <369> +12:34:22 Transaction Type : REQUEST +12:34:22 Received From : +12:34:22 ============================================================================ +12:34:22 FNo. Len. Field Value +12:34:22 ============================================================================ +12:34:22 [ 1] [ 4] [0800] +12:34:22 [ 7] [ 10] [0320053329] +12:34:22 [ 11] [ 6] [156334] +12:34:22 [ 70] [ 3] [301] +12:34:22 ============================================================================ +12:34:22 + + +waiting on router queue for slot.... +12:34:22 Sending to : +12:34:22 ============================================================================ +12:34:22 ============================================================================ +12:34:22 Slot Id : <369> +12:34:22 Transaction Type : RESPONSE +12:34:22 Received From : +12:34:22 ============================================================================ +12:34:22 FNo. Len. Field Value +12:34:22 ============================================================================ +12:34:22 [ 1] [ 4] [0810] +12:34:22 [ 7] [ 10] [0320053329] +12:34:22 [ 11] [ 6] [156334] +12:34:22 [ 39] [ 2] [00] +12:34:22 [ 70] [ 3] [301] +12:34:22 ============================================================================ +12:34:22 Calculate Source COMM Id = 2 +12:34:22 ============================================================================ +12:34:22 + + +waiting on router queue for slot.... +12:34:30 ============================================================================ +12:34:30 Slot Id : <379> +12:34:30 Transaction Type : REQUEST +12:34:30 Received From : +12:34:30 ============================================================================ +12:34:30 FNo. Len. Field Value +12:34:30 ============================================================================ +12:34:30 [ 1] [ 4] [0200] +12:34:30 [ 2] [ 16] [1808930900012998] +12:34:30 [ 3] [ 6] [300000] +12:34:30 [ 4] [ 12] [000000000000] +12:34:30 [ 7] [ 10] [0320123426] +12:34:30 [ 11] [ 6] [746192] +12:34:30 [ 12] [ 6] [123426] +12:34:30 [ 13] [ 4] [0320] +12:34:30 [ 15] [ 4] [0320] +12:34:30 [ 18] [ 4] [6011] +12:34:30 [ 22] [ 3] [900] +12:34:30 [ 25] [ 2] [02] +12:34:30 [ 28] [ 9] [D00000000] +12:34:30 [ 32] [ 6] [621354] +12:34:30 [ 35] [ 27] [1808930900012998=1803500624] +12:34:30 [ 37] [ 12] [507904228969] +12:34:30 [ 41] [ 8] [05004600] +12:34:30 [ 42] [ 15] [NATIVE ] +12:34:30 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +12:34:30 [ 49] [ 3] [418] +12:34:30 [ 52] [ 16] [0239BCF5C838B4DC] +12:34:30 ============================================================================ +12:34:30 + + +waiting on router queue for slot.... +12:34:30 Sending to : +12:34:30 ============================================================================ +12:34:30 Sending to : +12:34:30 ============================================================================ +12:34:31 ============================================================================ +12:34:31 Slot Id : <379> +12:34:31 Transaction Type : REQUEST +12:34:31 Received From : +12:34:31 ============================================================================ +12:34:31 FNo. Len. Field Value +12:34:31 ============================================================================ +12:34:31 [ 1] [ 4] [0200] +12:34:31 [ 2] [ 16] [1808930900012998] +12:34:31 [ 3] [ 6] [300000] +12:34:31 [ 4] [ 12] [000000000000] +12:34:31 [ 7] [ 10] [0320123426] +12:34:31 [ 11] [ 6] [746192] +12:34:31 [ 12] [ 6] [123426] +12:34:31 [ 13] [ 4] [0320] +12:34:31 [ 15] [ 4] [0320] +12:34:31 [ 18] [ 4] [6011] +12:34:31 [ 22] [ 3] [900] +12:34:31 [ 25] [ 2] [02] +12:34:31 [ 28] [ 9] [D00000000] +12:34:31 [ 32] [ 6] [621354] +12:34:31 [ 35] [ 27] [1808930900012998=1803500624] +12:34:31 [ 37] [ 12] [507904228969] +12:34:31 [ 41] [ 8] [05004600] +12:34:31 [ 42] [ 15] [NATIVE ] +12:34:31 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +12:34:31 [ 49] [ 3] [418] +12:34:31 [ 52] [ 16] [0239BCF5C838B4DC] +12:34:31 ============================================================================ +12:34:31 + + +waiting on router queue for slot.... +12:34:31 Sending to : +12:34:31 ============================================================================ +12:34:31 ============================================================================ +12:34:31 Slot Id : <379> +12:34:31 Transaction Type : REQUEST +12:34:31 Received From : +12:34:31 ============================================================================ +12:34:31 FNo. Len. Field Value +12:34:31 ============================================================================ +12:34:31 [ 1] [ 4] [0200] +12:34:31 [ 2] [ 16] [1808930900012998] +12:34:31 [ 3] [ 6] [300000] +12:34:31 [ 4] [ 12] [000000000000] +12:34:31 [ 7] [ 10] [0320123426] +12:34:31 [ 11] [ 6] [746192] +12:34:31 [ 12] [ 6] [123426] +12:34:31 [ 13] [ 4] [0320] +12:34:31 [ 15] [ 4] [0320] +12:34:31 [ 18] [ 4] [6011] +12:34:31 [ 22] [ 3] [900] +12:34:31 [ 25] [ 2] [02] +12:34:31 [ 28] [ 9] [D00000000] +12:34:31 [ 32] [ 6] [621354] +12:34:31 [ 35] [ 27] [1808930900012998=1803500624] +12:34:31 [ 37] [ 12] [507904228969] +12:34:31 [ 41] [ 8] [05004600] +12:34:31 [ 42] [ 15] [NATIVE ] +12:34:31 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +12:34:31 [ 49] [ 3] [418] +12:34:31 [ 52] [ 16] [589DD43ACD615F6F] +12:34:31 ============================================================================ +12:34:31 + + +waiting on router queue for slot.... +12:34:31 Sending to : <2> +12:34:31 ============================================================================ +12:34:34 ============================================================================ +12:34:34 Slot Id : <338> +12:34:34 Transaction Type : REQUEST +12:34:34 Received From : +12:34:34 ============================================================================ +12:34:34 FNo. Len. Field Value +12:34:34 ============================================================================ +12:34:34 [ 1] [ 4] [0200] +12:34:34 [ 2] [ 16] [6213548000415040] +12:34:34 [ 3] [ 6] [011000] +12:34:34 [ 4] [ 12] [000020000000] +12:34:34 [ 7] [ 10] [0320123455] +12:34:34 [ 11] [ 6] [205657] +12:34:34 [ 12] [ 6] [003305] +12:34:34 [ 13] [ 4] [0320] +12:34:34 [ 14] [ 4] [1806] +12:34:34 [ 15] [ 4] [0320] +12:34:34 [ 18] [ 4] [6011] +12:34:34 [ 19] [ 3] [418] +12:34:34 [ 22] [ 3] [021] +12:34:34 [ 25] [ 2] [01] +12:34:34 [ 28] [ 9] [D00002000] +12:34:34 [ 32] [ 6] [198901] +12:34:34 [ 35] [ 32] [6213548000415040=180612011504377] +12:34:34 [ 37] [ 12] [507912205657] +12:34:34 [ 41] [ 8] [01529031] +12:34:34 [ 42] [ 15] [000000041529031] +12:34:34 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +12:34:34 [ 49] [ 3] [418] +12:34:34 [ 52] [ 16] [B81B43CCF963216D] +12:34:34 ============================================================================ +12:34:34 + + +waiting on router queue for slot.... +12:34:34 Sending to : +12:34:34 ============================================================================ +12:34:34 Sending to : +12:34:34 ============================================================================ +12:34:34 ============================================================================ +12:34:34 Slot Id : <379> +12:34:34 Transaction Type : RESPONSE +12:34:34 Received From : +12:34:34 ============================================================================ +12:34:34 FNo. Len. Field Value +12:34:34 ============================================================================ +12:34:34 [ 1] [ 4] [0210] +12:34:34 [ 2] [ 16] [1808930900012998] +12:34:34 [ 3] [ 6] [300000] +12:34:34 [ 7] [ 10] [0320123426] +12:34:34 [ 11] [ 6] [746192] +12:34:34 [ 12] [ 6] [123426] +12:34:34 [ 13] [ 4] [0320] +12:34:34 [ 14] [ 4] [1803] +12:34:34 [ 19] [ 3] [418] +12:34:34 [ 32] [ 6] [621354] +12:34:34 [ 37] [ 12] [507904228969] +12:34:34 [ 38] [ 6] [746192] +12:34:34 [ 39] [ 2] [00] +12:34:34 [ 41] [ 8] [05004600] +12:34:34 [ 49] [ 3] [418] +12:34:34 [ 52] [ 16] [589DD43ACD615F6F] +12:34:34 [ 54] [ 20] [0002418C000124653000] +12:34:34 ============================================================================ +12:34:34 Sending to : +12:34:34 ============================================================================ +12:34:34 + + +waiting on router queue for slot.... +12:34:34 ============================================================================ +12:34:34 Slot Id : <338> +12:34:34 Transaction Type : REQUEST +12:34:34 Received From : +12:34:34 ============================================================================ +12:34:34 FNo. Len. Field Value +12:34:34 ============================================================================ +12:34:34 [ 1] [ 4] [0200] +12:34:34 [ 2] [ 16] [6213548000415040] +12:34:34 [ 3] [ 6] [011000] +12:34:34 [ 4] [ 12] [000020000000] +12:34:34 [ 7] [ 10] [0320123455] +12:34:34 [ 11] [ 6] [205657] +12:34:34 [ 12] [ 6] [003305] +12:34:34 [ 13] [ 4] [0320] +12:34:34 [ 14] [ 4] [1806] +12:34:34 [ 15] [ 4] [0320] +12:34:34 [ 18] [ 4] [6011] +12:34:34 [ 19] [ 3] [418] +12:34:34 [ 22] [ 3] [021] +12:34:34 [ 25] [ 2] [01] +12:34:34 [ 28] [ 9] [D00002000] +12:34:34 [ 32] [ 6] [198901] +12:34:34 [ 35] [ 32] [6213548000415040=180612011504377] +12:34:34 [ 37] [ 12] [507912205657] +12:34:34 [ 41] [ 8] [01529031] +12:34:34 [ 42] [ 15] [000000041529031] +12:34:34 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +12:34:34 [ 49] [ 3] [418] +12:34:34 [ 52] [ 16] [B81B43CCF963216D] +12:34:34 ============================================================================ +12:34:34 + + +waiting on router queue for slot.... +12:34:34 Sending to : +12:34:34 ============================================================================ +12:34:34 ============================================================================ +12:34:34 Slot Id : <338> +12:34:34 Transaction Type : REQUEST +12:34:34 Received From : +12:34:34 ============================================================================ +12:34:34 FNo. Len. Field Value +12:34:34 ============================================================================ +12:34:34 [ 1] [ 4] [0200] +12:34:34 [ 2] [ 16] [6213548000415040] +12:34:34 [ 3] [ 6] [011000] +12:34:34 [ 4] [ 12] [000020000000] +12:34:34 [ 7] [ 10] [0320123455] +12:34:34 [ 11] [ 6] [205657] +12:34:34 [ 12] [ 6] [003305] +12:34:34 [ 13] [ 4] [0320] +12:34:34 [ 14] [ 4] [1806] +12:34:34 [ 15] [ 4] [0320] +12:34:34 [ 18] [ 4] [6011] +12:34:34 [ 19] [ 3] [418] +12:34:34 [ 22] [ 3] [021] +12:34:34 [ 25] [ 2] [01] +12:34:34 [ 28] [ 9] [D00002000] +12:34:34 [ 32] [ 6] [198901] +12:34:34 [ 35] [ 32] [6213548000415040=180612011504377] +12:34:34 [ 37] [ 12] [507912205657] +12:34:34 [ 41] [ 8] [01529031] +12:34:34 [ 42] [ 15] [000000041529031] +12:34:34 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +12:34:34 [ 49] [ 3] [418] +12:34:34 [ 52] [ 16] [AEF758F317085B10] +12:34:34 ============================================================================ +12:34:34 + + +waiting on router queue for slot.... +12:34:34 Sending to : <0> +12:34:34 ============================================================================ +12:34:35 ============================================================================ +12:34:35 Slot Id : <338> +12:34:35 Transaction Type : RESPONSE +12:34:35 Received From : +12:34:35 ============================================================================ +12:34:35 FNo. Len. Field Value +12:34:35 ============================================================================ +12:34:35 [ 1] [ 4] [0210] +12:34:35 [ 2] [ 16] [6213548000415040] +12:34:35 [ 3] [ 6] [011000] +12:34:35 [ 4] [ 12] [000020000000] +12:34:35 [ 7] [ 10] [0320123455] +12:34:35 [ 11] [ 6] [205657] +12:34:35 [ 12] [ 6] [003305] +12:34:35 [ 13] [ 4] [0320] +12:34:35 [ 15] [ 4] [0320] +12:34:35 [ 18] [ 4] [6011] +12:34:35 [ 19] [ 3] [418] +12:34:35 [ 32] [ 6] [198901] +12:34:35 [ 35] [ 32] [6213548000415040=180612011504377] +12:34:35 [ 37] [ 12] [507912205657] +12:34:35 [ 38] [ 6] [324602] +12:34:35 [ 39] [ 2] [00] +12:34:35 [ 41] [ 8] [01529031] +12:34:35 [ 49] [ 3] [418] +12:34:35 [ 54] [ 40] [1001418C0000359736111002418C000035973611] +12:34:35 ============================================================================ +12:34:35 Sending to : +12:34:35 ============================================================================ +12:34:35 + + +waiting on router queue for slot.... +12:34:36 ============================================================================ +12:34:36 Slot Id : <379> +12:34:36 Transaction Type : RESPONSE +12:34:36 Received From : +12:34:36 ============================================================================ +12:34:36 FNo. Len. Field Value +12:34:36 ============================================================================ +12:34:36 [ 1] [ 4] [0210] +12:34:36 [ 2] [ 16] [1808930900012998] +12:34:36 [ 3] [ 6] [300000] +12:34:36 [ 7] [ 10] [0320123426] +12:34:36 [ 11] [ 6] [746192] +12:34:36 [ 12] [ 6] [123426] +12:34:36 [ 13] [ 4] [0320] +12:34:36 [ 14] [ 4] [1803] +12:34:36 [ 19] [ 3] [418] +12:34:36 [ 32] [ 6] [621354] +12:34:36 [ 37] [ 12] [507904228969] +12:34:36 [ 38] [ 6] [746192] +12:34:36 [ 39] [ 2] [00] +12:34:36 [ 41] [ 8] [05004600] +12:34:36 [ 49] [ 3] [418] +12:34:36 [ 52] [ 16] [589DD43ACD615F6F] +12:34:36 [ 54] [ 20] [0002418C000124653000] +12:34:36 ============================================================================ +12:34:36 Calculate Source COMM Id = 0 +12:34:36 ============================================================================ +12:34:36 + + +waiting on router queue for slot.... +12:34:37 ============================================================================ +12:34:37 Slot Id : <338> +12:34:37 Transaction Type : RESPONSE +12:34:37 Received From : +12:34:37 ============================================================================ +12:34:37 FNo. Len. Field Value +12:34:37 ============================================================================ +12:34:37 [ 1] [ 4] [0210] +12:34:37 [ 2] [ 16] [6213548000415040] +12:34:37 [ 3] [ 6] [011000] +12:34:37 [ 4] [ 12] [000020000000] +12:34:37 [ 7] [ 10] [0320123455] +12:34:37 [ 11] [ 6] [205657] +12:34:37 [ 12] [ 6] [003305] +12:34:37 [ 13] [ 4] [0320] +12:34:37 [ 15] [ 4] [0320] +12:34:37 [ 18] [ 4] [6011] +12:34:37 [ 19] [ 3] [418] +12:34:37 [ 32] [ 6] [198901] +12:34:37 [ 35] [ 32] [6213548000415040=180612011504377] +12:34:37 [ 37] [ 12] [507912205657] +12:34:37 [ 38] [ 6] [324602] +12:34:37 [ 39] [ 2] [00] +12:34:37 [ 41] [ 8] [01529031] +12:34:37 [ 49] [ 3] [418] +12:34:37 [ 54] [ 40] [1001418C0000359736111002418C000035973611] +12:34:37 ============================================================================ +12:34:37 Calculate Source COMM Id = 5 +12:34:37 ============================================================================ +12:34:37 + + +waiting on router queue for slot.... +12:34:43 ============================================================================ +12:34:43 Slot Id : <354> +12:34:43 Transaction Type : REQUEST +12:34:43 Received From : +12:34:43 ============================================================================ +12:34:43 FNo. Len. Field Value +12:34:43 ============================================================================ +12:34:43 [ 1] [ 4] [0800] +12:34:43 [ 7] [ 10] [0320053350] +12:34:43 [ 11] [ 6] [156335] +12:34:43 [ 70] [ 3] [301] +12:34:43 ============================================================================ +12:34:43 + + +waiting on router queue for slot.... +12:34:43 Sending to : +12:34:43 ============================================================================ +12:34:43 ============================================================================ +12:34:43 Slot Id : <354> +12:34:43 Transaction Type : RESPONSE +12:34:43 Received From : +12:34:43 ============================================================================ +12:34:43 FNo. Len. Field Value +12:34:43 ============================================================================ +12:34:43 [ 1] [ 4] [0810] +12:34:43 [ 7] [ 10] [0320053350] +12:34:43 [ 11] [ 6] [156335] +12:34:43 [ 39] [ 2] [00] +12:34:43 [ 70] [ 3] [301] +12:34:43 ============================================================================ +12:34:43 Calculate Source COMM Id = 2 +12:34:43 ============================================================================ +12:34:43 + + +waiting on router queue for slot.... +12:34:53 ============================================================================ +12:34:53 Slot Id : <396> +12:34:53 Transaction Type : REQUEST +12:34:53 Received From : +12:34:53 ============================================================================ +12:34:53 FNo. Len. Field Value +12:34:53 ============================================================================ +12:34:53 [ 1] [ 4] [0800] +12:34:53 [ 7] [ 10] [0320053400] +12:34:53 [ 11] [ 6] [156336] +12:34:53 [ 70] [ 3] [301] +12:34:53 ============================================================================ +12:34:53 + + +waiting on router queue for slot.... +12:34:53 Sending to : +12:34:53 ============================================================================ +12:34:53 ============================================================================ +12:34:53 Slot Id : <396> +12:34:53 Transaction Type : RESPONSE +12:34:53 Received From : +12:34:53 ============================================================================ +12:34:53 FNo. Len. Field Value +12:34:53 ============================================================================ +12:34:53 [ 1] [ 4] [0810] +12:34:53 [ 7] [ 10] [0320053400] +12:34:53 [ 11] [ 6] [156336] +12:34:53 [ 39] [ 2] [00] +12:34:53 [ 70] [ 3] [301] +12:34:53 ============================================================================ +12:34:53 Calculate Source COMM Id = 2 +12:34:53 ============================================================================ +12:34:53 + + +waiting on router queue for slot.... +12:34:55 ============================================================================ +12:34:55 Slot Id : <351> +12:34:55 Transaction Type : REQUEST +12:34:55 Received From : +12:34:55 ============================================================================ +12:34:55 FNo. Len. Field Value +12:34:55 ============================================================================ +12:34:55 [ 1] [ 4] [0800] +12:34:55 [ 7] [ 10] [0320054242] +12:34:55 [ 11] [ 6] [049270] +12:34:55 [ 37] [ 12] [57912049270] +12:34:55 [ 70] [ 3] [301] +12:34:55 ============================================================================ +12:34:55 + + +waiting on router queue for slot.... +12:34:55 Sending to : +12:34:55 ============================================================================ +12:34:55 ============================================================================ +12:34:55 Slot Id : <351> +12:34:55 Transaction Type : RESPONSE +12:34:55 Received From : +12:34:55 ============================================================================ +12:34:55 FNo. Len. Field Value +12:34:55 ============================================================================ +12:34:55 [ 1] [ 4] [0810] +12:34:55 [ 7] [ 10] [0320054242] +12:34:55 [ 11] [ 6] [049270] +12:34:55 [ 37] [ 12] [579120492700] +12:34:55 [ 39] [ 2] [00] +12:34:55 [ 70] [ 3] [810] +12:34:55 ============================================================================ +12:34:55 Calculate Source COMM Id = 1 +12:34:55 ============================================================================ +12:34:55 + + +waiting on router queue for slot.... +12:34:58 ============================================================================ +12:34:58 Slot Id : <389> +12:34:58 Transaction Type : REQUEST +12:34:58 Received From : +12:34:58 ============================================================================ +12:34:58 FNo. Len. Field Value +12:34:58 ============================================================================ +12:34:58 [ 1] [ 4] [0800] +12:34:58 [ 2] [ 5] [02531] +12:34:58 [ 3] [ 6] [579128] +12:34:58 [ 7] [ 10] [0320053458] +12:34:58 [ 11] [ 6] [807142] +12:34:58 [ 15] [ 10] [0320053458] +12:34:58 [ 37] [ 11] [57912807142] +12:34:58 [ 70] [ 3] [001] +12:34:58 ============================================================================ +12:34:58 + + +waiting on router queue for slot.... +12:34:58 ============================================================================ +12:34:58 Slot Id : <389> +12:34:58 Transaction Type : RESPONSE +12:34:58 Received From : +12:34:58 ============================================================================ +12:34:58 FNo. Len. Field Value +12:34:58 ============================================================================ +12:34:58 [ 1] [ 4] [0810] +12:34:58 [ 7] [ 10] [0320053458] +12:34:58 [ 11] [ 6] [807142] +12:34:58 [ 15] [ 4] [0320] +12:34:58 [ 37] [ 12] [57912807142] +12:34:58 [ 39] [ 2] [00] +12:34:58 [ 70] [ 3] [001] +12:34:58 ============================================================================ +12:34:58 Sending to : +12:34:58 ============================================================================ +12:34:58 + + +waiting on router queue for slot.... +12:35:04 ============================================================================ +12:35:04 Slot Id : <390> +12:35:04 Transaction Type : REQUEST +12:35:04 Received From : +12:35:04 ============================================================================ +12:35:04 FNo. Len. Field Value +12:35:04 ============================================================================ +12:35:04 [ 1] [ 4] [0800] +12:35:04 [ 7] [ 10] [0320053411] +12:35:04 [ 11] [ 6] [156337] +12:35:04 [ 70] [ 3] [301] +12:35:04 ============================================================================ +12:35:04 + + +waiting on router queue for slot.... +12:35:04 Sending to : +12:35:04 ============================================================================ +12:35:04 ============================================================================ +12:35:04 Slot Id : <390> +12:35:04 Transaction Type : RESPONSE +12:35:04 Received From : +12:35:04 ============================================================================ +12:35:04 FNo. Len. Field Value +12:35:04 ============================================================================ +12:35:04 [ 1] [ 4] [0810] +12:35:04 [ 7] [ 10] [0320053411] +12:35:04 [ 11] [ 6] [156337] +12:35:04 [ 39] [ 2] [00] +12:35:04 [ 70] [ 3] [301] +12:35:04 ============================================================================ +12:35:04 Calculate Source COMM Id = 2 +12:35:04 ============================================================================ +12:35:04 + + +waiting on router queue for slot.... +12:35:15 ============================================================================ +12:35:15 Slot Id : <361> +12:35:15 Transaction Type : REQUEST +12:35:15 Received From : +12:35:15 ============================================================================ +12:35:15 FNo. Len. Field Value +12:35:15 ============================================================================ +12:35:15 [ 1] [ 4] [0800] +12:35:15 [ 7] [ 10] [0320053422] +12:35:15 [ 11] [ 6] [156338] +12:35:15 [ 70] [ 3] [301] +12:35:15 ============================================================================ +12:35:15 + + +waiting on router queue for slot.... +12:35:15 Sending to : +12:35:15 ============================================================================ +12:35:15 ============================================================================ +12:35:15 Slot Id : <361> +12:35:15 Transaction Type : RESPONSE +12:35:15 Received From : +12:35:15 ============================================================================ +12:35:15 FNo. Len. Field Value +12:35:15 ============================================================================ +12:35:15 [ 1] [ 4] [0810] +12:35:15 [ 7] [ 10] [0320053422] +12:35:15 [ 11] [ 6] [156338] +12:35:15 [ 39] [ 2] [00] +12:35:15 [ 70] [ 3] [301] +12:35:15 ============================================================================ +12:35:15 Calculate Source COMM Id = 2 +12:35:15 ============================================================================ +12:35:15 + + +waiting on router queue for slot.... +12:35:24 ============================================================================ +12:35:24 Slot Id : <359> +12:35:24 Transaction Type : REQUEST +12:35:24 Received From : +12:35:24 ============================================================================ +12:35:24 FNo. Len. Field Value +12:35:24 ============================================================================ +12:35:24 [ 1] [ 4] [0200] +12:35:24 [ 2] [ 16] [6213548000415040] +12:35:24 [ 3] [ 6] [011000] +12:35:24 [ 4] [ 12] [000010000000] +12:35:24 [ 7] [ 10] [0320123545] +12:35:24 [ 11] [ 6] [205670] +12:35:24 [ 12] [ 6] [003356] +12:35:24 [ 13] [ 4] [0320] +12:35:24 [ 14] [ 4] [1806] +12:35:24 [ 15] [ 4] [0320] +12:35:24 [ 18] [ 4] [6011] +12:35:24 [ 19] [ 3] [418] +12:35:24 [ 22] [ 3] [021] +12:35:24 [ 25] [ 2] [01] +12:35:24 [ 28] [ 9] [D00002000] +12:35:24 [ 32] [ 6] [198901] +12:35:24 [ 35] [ 32] [6213548000415040=180612011504377] +12:35:24 [ 37] [ 12] [507912205670] +12:35:24 [ 41] [ 8] [01529031] +12:35:24 [ 42] [ 15] [000000041529031] +12:35:24 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +12:35:24 [ 49] [ 3] [418] +12:35:24 [ 52] [ 16] [B81B43CCF963216D] +12:35:24 ============================================================================ +12:35:24 + + +waiting on router queue for slot.... +12:35:24 Sending to : +12:35:24 ============================================================================ +12:35:24 Sending to : +12:35:24 ============================================================================ +12:35:24 ============================================================================ +12:35:24 Slot Id : <359> +12:35:24 Transaction Type : REQUEST +12:35:24 Received From : +12:35:24 ============================================================================ +12:35:24 FNo. Len. Field Value +12:35:24 ============================================================================ +12:35:24 [ 1] [ 4] [0200] +12:35:24 [ 2] [ 16] [6213548000415040] +12:35:24 [ 3] [ 6] [011000] +12:35:24 [ 4] [ 12] [000010000000] +12:35:24 [ 7] [ 10] [0320123545] +12:35:24 [ 11] [ 6] [205670] +12:35:24 [ 12] [ 6] [003356] +12:35:24 [ 13] [ 4] [0320] +12:35:24 [ 14] [ 4] [1806] +12:35:24 [ 15] [ 4] [0320] +12:35:24 [ 18] [ 4] [6011] +12:35:24 [ 19] [ 3] [418] +12:35:24 [ 22] [ 3] [021] +12:35:24 [ 25] [ 2] [01] +12:35:24 [ 28] [ 9] [D00002000] +12:35:24 [ 32] [ 6] [198901] +12:35:24 [ 35] [ 32] [6213548000415040=180612011504377] +12:35:24 [ 37] [ 12] [507912205670] +12:35:24 [ 41] [ 8] [01529031] +12:35:24 [ 42] [ 15] [000000041529031] +12:35:24 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +12:35:24 [ 49] [ 3] [418] +12:35:24 [ 52] [ 16] [B81B43CCF963216D] +12:35:24 ============================================================================ +12:35:24 + + +waiting on router queue for slot.... +12:35:24 Sending to : +12:35:24 ============================================================================ +12:35:24 ============================================================================ +12:35:24 Slot Id : <359> +12:35:24 Transaction Type : REQUEST +12:35:24 Received From : +12:35:24 ============================================================================ +12:35:24 FNo. Len. Field Value +12:35:24 ============================================================================ +12:35:24 [ 1] [ 4] [0200] +12:35:24 [ 2] [ 16] [6213548000415040] +12:35:24 [ 3] [ 6] [011000] +12:35:24 [ 4] [ 12] [000010000000] +12:35:24 [ 7] [ 10] [0320123545] +12:35:24 [ 11] [ 6] [205670] +12:35:24 [ 12] [ 6] [003356] +12:35:24 [ 13] [ 4] [0320] +12:35:24 [ 14] [ 4] [1806] +12:35:24 [ 15] [ 4] [0320] +12:35:24 [ 18] [ 4] [6011] +12:35:24 [ 19] [ 3] [418] +12:35:24 [ 22] [ 3] [021] +12:35:24 [ 25] [ 2] [01] +12:35:24 [ 28] [ 9] [D00002000] +12:35:24 [ 32] [ 6] [198901] +12:35:24 [ 35] [ 32] [6213548000415040=180612011504377] +12:35:24 [ 37] [ 12] [507912205670] +12:35:24 [ 41] [ 8] [01529031] +12:35:24 [ 42] [ 15] [000000041529031] +12:35:24 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +12:35:24 [ 49] [ 3] [418] +12:35:24 [ 52] [ 16] [AEF758F317085B10] +12:35:24 ============================================================================ +12:35:24 + + +waiting on router queue for slot.... +12:35:24 Sending to : <0> +12:35:24 ============================================================================ +12:35:25 ============================================================================ +12:35:25 Slot Id : <359> +12:35:25 Transaction Type : RESPONSE +12:35:25 Received From : +12:35:25 ============================================================================ +12:35:25 FNo. Len. Field Value +12:35:25 ============================================================================ +12:35:25 [ 1] [ 4] [0210] +12:35:25 [ 2] [ 16] [6213548000415040] +12:35:25 [ 3] [ 6] [011000] +12:35:25 [ 4] [ 12] [000010000000] +12:35:25 [ 7] [ 10] [0320123545] +12:35:25 [ 11] [ 6] [205670] +12:35:25 [ 12] [ 6] [003356] +12:35:25 [ 13] [ 4] [0320] +12:35:25 [ 15] [ 4] [0320] +12:35:25 [ 18] [ 4] [6011] +12:35:25 [ 19] [ 3] [418] +12:35:25 [ 32] [ 6] [198901] +12:35:25 [ 35] [ 32] [6213548000415040=180612011504377] +12:35:25 [ 37] [ 12] [507912205670] +12:35:25 [ 38] [ 6] [403604] +12:35:25 [ 39] [ 2] [00] +12:35:25 [ 41] [ 8] [01529031] +12:35:25 [ 49] [ 3] [418] +12:35:25 [ 54] [ 40] [1001418C0000257736111002418C000025773611] +12:35:25 ============================================================================ +12:35:25 Sending to : +12:35:25 ============================================================================ +12:35:25 + + +waiting on router queue for slot.... +12:35:25 ============================================================================ +12:35:25 Slot Id : <376> +12:35:25 Transaction Type : REQUEST +12:35:25 Received From : +12:35:25 ============================================================================ +12:35:25 FNo. Len. Field Value +12:35:25 ============================================================================ +12:35:25 [ 1] [ 4] [0800] +12:35:25 [ 7] [ 10] [0320053433] +12:35:25 [ 11] [ 6] [156339] +12:35:25 [ 70] [ 3] [301] +12:35:25 ============================================================================ +12:35:25 + + +waiting on router queue for slot.... +12:35:25 Sending to : +12:35:25 ============================================================================ +12:35:25 ============================================================================ +12:35:25 Slot Id : <376> +12:35:25 Transaction Type : RESPONSE +12:35:25 Received From : +12:35:25 ============================================================================ +12:35:25 FNo. Len. Field Value +12:35:25 ============================================================================ +12:35:25 [ 1] [ 4] [0810] +12:35:25 [ 7] [ 10] [0320053433] +12:35:25 [ 11] [ 6] [156339] +12:35:25 [ 39] [ 2] [00] +12:35:25 [ 70] [ 3] [301] +12:35:25 ============================================================================ +12:35:25 Calculate Source COMM Id = 2 +12:35:25 ============================================================================ +12:35:25 + + +waiting on router queue for slot.... +12:35:26 ============================================================================ +12:35:26 Slot Id : <359> +12:35:26 Transaction Type : RESPONSE +12:35:26 Received From : +12:35:26 ============================================================================ +12:35:26 FNo. Len. Field Value +12:35:26 ============================================================================ +12:35:26 [ 1] [ 4] [0210] +12:35:26 [ 2] [ 16] [6213548000415040] +12:35:26 [ 3] [ 6] [011000] +12:35:26 [ 4] [ 12] [000010000000] +12:35:26 [ 7] [ 10] [0320123545] +12:35:26 [ 11] [ 6] [205670] +12:35:26 [ 12] [ 6] [003356] +12:35:26 [ 13] [ 4] [0320] +12:35:26 [ 15] [ 4] [0320] +12:35:26 [ 18] [ 4] [6011] +12:35:26 [ 19] [ 3] [418] +12:35:26 [ 32] [ 6] [198901] +12:35:26 [ 35] [ 32] [6213548000415040=180612011504377] +12:35:26 [ 37] [ 12] [507912205670] +12:35:26 [ 38] [ 6] [403604] +12:35:26 [ 39] [ 2] [00] +12:35:26 [ 41] [ 8] [01529031] +12:35:26 [ 49] [ 3] [418] +12:35:26 [ 54] [ 40] [1001418C0000257736111002418C000025773611] +12:35:26 ============================================================================ +12:35:26 Calculate Source COMM Id = 5 +12:35:26 ============================================================================ +12:35:26 + + +waiting on router queue for slot.... +12:35:33 ============================================================================ +12:35:33 Slot Id : <374> +12:35:33 Transaction Type : REQUEST +12:35:33 Received From : +12:35:33 ============================================================================ +12:35:33 FNo. Len. Field Value +12:35:33 ============================================================================ +12:35:33 [ 1] [ 4] [0200] +12:35:33 [ 2] [ 16] [1808930900012998] +12:35:33 [ 3] [ 6] [010000] +12:35:33 [ 4] [ 12] [000100000000] +12:35:33 [ 7] [ 10] [0320123529] +12:35:33 [ 11] [ 6] [746463] +12:35:33 [ 12] [ 6] [123529] +12:35:33 [ 13] [ 4] [0320] +12:35:33 [ 15] [ 4] [0320] +12:35:33 [ 18] [ 4] [6011] +12:35:33 [ 22] [ 3] [900] +12:35:33 [ 25] [ 2] [02] +12:35:33 [ 28] [ 9] [D00002000] +12:35:33 [ 32] [ 6] [621354] +12:35:33 [ 35] [ 27] [1808930900012998=1803500624] +12:35:33 [ 37] [ 12] [507904228971] +12:35:33 [ 41] [ 8] [05004600] +12:35:33 [ 42] [ 15] [NATIVE ] +12:35:33 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +12:35:33 [ 49] [ 3] [418] +12:35:33 [ 52] [ 16] [0239BCF5C838B4DC] +12:35:33 ============================================================================ +12:35:33 + + +waiting on router queue for slot.... +12:35:33 Sending to : +12:35:33 ============================================================================ +12:35:33 Sending to : +12:35:33 ============================================================================ +12:35:34 ============================================================================ +12:35:34 Slot Id : <374> +12:35:34 Transaction Type : REQUEST +12:35:34 Received From : +12:35:34 ============================================================================ +12:35:34 FNo. Len. Field Value +12:35:34 ============================================================================ +12:35:34 [ 1] [ 4] [0200] +12:35:34 [ 2] [ 16] [1808930900012998] +12:35:34 [ 3] [ 6] [010000] +12:35:34 [ 4] [ 12] [000100000000] +12:35:34 [ 7] [ 10] [0320123529] +12:35:34 [ 11] [ 6] [746463] +12:35:34 [ 12] [ 6] [123529] +12:35:34 [ 13] [ 4] [0320] +12:35:34 [ 15] [ 4] [0320] +12:35:34 [ 18] [ 4] [6011] +12:35:34 [ 22] [ 3] [900] +12:35:34 [ 25] [ 2] [02] +12:35:34 [ 28] [ 9] [D00002000] +12:35:34 [ 32] [ 6] [621354] +12:35:34 [ 35] [ 27] [1808930900012998=1803500624] +12:35:34 [ 37] [ 12] [507904228971] +12:35:34 [ 41] [ 8] [05004600] +12:35:34 [ 42] [ 15] [NATIVE ] +12:35:34 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +12:35:34 [ 49] [ 3] [418] +12:35:34 [ 52] [ 16] [0239BCF5C838B4DC] +12:35:34 ============================================================================ +12:35:34 + + +waiting on router queue for slot.... +12:35:34 Sending to : +12:35:34 ============================================================================ +12:35:34 ============================================================================ +12:35:34 Slot Id : <374> +12:35:34 Transaction Type : REQUEST +12:35:34 Received From : +12:35:34 ============================================================================ +12:35:34 FNo. Len. Field Value +12:35:34 ============================================================================ +12:35:34 [ 1] [ 4] [0200] +12:35:34 [ 2] [ 16] [1808930900012998] +12:35:34 [ 3] [ 6] [010000] +12:35:34 [ 4] [ 12] [000100000000] +12:35:34 [ 7] [ 10] [0320123529] +12:35:34 [ 11] [ 6] [746463] +12:35:34 [ 12] [ 6] [123529] +12:35:34 [ 13] [ 4] [0320] +12:35:34 [ 15] [ 4] [0320] +12:35:34 [ 18] [ 4] [6011] +12:35:34 [ 22] [ 3] [900] +12:35:34 [ 25] [ 2] [02] +12:35:34 [ 28] [ 9] [D00002000] +12:35:34 [ 32] [ 6] [621354] +12:35:34 [ 35] [ 27] [1808930900012998=1803500624] +12:35:34 [ 37] [ 12] [507904228971] +12:35:34 [ 41] [ 8] [05004600] +12:35:34 [ 42] [ 15] [NATIVE ] +12:35:34 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +12:35:34 [ 49] [ 3] [418] +12:35:34 [ 52] [ 16] [589DD43ACD615F6F] +12:35:34 ============================================================================ +12:35:34 + + +waiting on router queue for slot.... +12:35:34 Sending to : <2> +12:35:34 ============================================================================ +12:35:39 ============================================================================ +12:35:39 Slot Id : <374> +12:35:39 Transaction Type : RESPONSE +12:35:39 Received From : +12:35:39 ============================================================================ +12:35:39 FNo. Len. Field Value +12:35:39 ============================================================================ +12:35:39 [ 1] [ 4] [0210] +12:35:39 [ 2] [ 16] [1808930900012998] +12:35:39 [ 3] [ 6] [010000] +12:35:39 [ 4] [ 12] [000100000000] +12:35:39 [ 6] [ 12] [000100000000] +12:35:39 [ 7] [ 10] [0320123529] +12:35:39 [ 11] [ 6] [746463] +12:35:39 [ 12] [ 6] [123529] +12:35:39 [ 13] [ 4] [0320] +12:35:39 [ 18] [ 4] [6011] +12:35:39 [ 19] [ 3] [418] +12:35:39 [ 22] [ 3] [021] +12:35:39 [ 32] [ 6] [621354] +12:35:39 [ 35] [ 27] [1808930900012998=1803500624] +12:35:39 [ 37] [ 12] [507904228971] +12:35:39 [ 38] [ 6] [746463] +12:35:39 [ 39] [ 2] [00] +12:35:39 [ 41] [ 8] [05004600] +12:35:39 [ 49] [ 3] [418] +12:35:39 [ 52] [ 16] [589DD43ACD615F6F] +12:35:39 [ 54] [ 20] [1001418C000024453000] +12:35:39 ============================================================================ +12:35:39 Sending to : +12:35:39 ============================================================================ +12:35:39 + + +waiting on router queue for slot.... +12:35:40 ============================================================================ +12:35:40 Slot Id : <374> +12:35:40 Transaction Type : RESPONSE +12:35:40 Received From : +12:35:40 ============================================================================ +12:35:40 FNo. Len. Field Value +12:35:40 ============================================================================ +12:35:40 [ 1] [ 4] [0210] +12:35:40 [ 2] [ 16] [1808930900012998] +12:35:40 [ 3] [ 6] [010000] +12:35:40 [ 4] [ 12] [000100000000] +12:35:40 [ 6] [ 12] [000100000000] +12:35:40 [ 7] [ 10] [0320123529] +12:35:40 [ 11] [ 6] [746463] +12:35:40 [ 12] [ 6] [123529] +12:35:40 [ 13] [ 4] [0320] +12:35:40 [ 18] [ 4] [6011] +12:35:40 [ 19] [ 3] [418] +12:35:40 [ 22] [ 3] [021] +12:35:40 [ 32] [ 6] [621354] +12:35:40 [ 35] [ 27] [1808930900012998=1803500624] +12:35:40 [ 37] [ 12] [507904228971] +12:35:40 [ 38] [ 6] [746463] +12:35:40 [ 39] [ 2] [00] +12:35:40 [ 41] [ 8] [05004600] +12:35:40 [ 49] [ 3] [418] +12:35:40 [ 52] [ 16] [589DD43ACD615F6F] +12:35:40 [ 54] [ 20] [1001418C000024453000] +12:35:40 ============================================================================ +12:35:40 Calculate Source COMM Id = 0 +12:35:40 ============================================================================ +12:35:40 + + +waiting on router queue for slot.... +12:35:42 ============================================================================ +12:35:42 Slot Id : <410> +12:35:42 Transaction Type : REQUEST +12:35:42 Received From : +12:35:42 ============================================================================ +12:35:42 FNo. Len. Field Value +12:35:42 ============================================================================ +12:35:42 [ 1] [ 4] [0200] +12:35:42 [ 2] [ 16] [6213544000238532] +12:35:42 [ 3] [ 6] [010000] +12:35:42 [ 4] [ 12] [000100000000] +12:35:42 [ 7] [ 10] [0320123332] +12:35:42 [ 11] [ 6] [944532] +12:35:42 [ 12] [ 6] [123332] +12:35:42 [ 13] [ 4] [0320] +12:35:42 [ 15] [ 4] [0320] +12:35:42 [ 18] [ 4] [6011] +12:35:42 [ 19] [ 3] [418] +12:35:42 [ 22] [ 3] [021] +12:35:42 [ 25] [ 2] [01] +12:35:42 [ 28] [ 9] [D00002000] +12:35:42 [ 32] [ 6] [668899] +12:35:42 [ 35] [ 32] [6213544000238532=491212013853295] +12:35:42 [ 37] [ 12] [507900123309] +12:35:42 [ 41] [ 8] [03020003] +12:35:42 [ 42] [ 15] [APT ] +12:35:42 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:35:42 [ 49] [ 3] [418] +12:35:42 [ 52] [ 16] [22E18A96DA090C82] +12:35:42 ============================================================================ +12:35:42 + + +waiting on router queue for slot.... +12:35:42 Sending to : +12:35:42 ============================================================================ +12:35:42 Sending to : +12:35:42 ============================================================================ +12:35:42 ============================================================================ +12:35:42 Slot Id : <410> +12:35:42 Transaction Type : REQUEST +12:35:42 Received From : +12:35:42 ============================================================================ +12:35:42 FNo. Len. Field Value +12:35:42 ============================================================================ +12:35:42 [ 1] [ 4] [0200] +12:35:42 [ 2] [ 16] [6213544000238532] +12:35:42 [ 3] [ 6] [010000] +12:35:42 [ 4] [ 12] [000100000000] +12:35:42 [ 7] [ 10] [0320123332] +12:35:42 [ 11] [ 6] [944532] +12:35:42 [ 12] [ 6] [123332] +12:35:42 [ 13] [ 4] [0320] +12:35:42 [ 15] [ 4] [0320] +12:35:42 [ 18] [ 4] [6011] +12:35:42 [ 19] [ 3] [418] +12:35:42 [ 22] [ 3] [021] +12:35:42 [ 25] [ 2] [01] +12:35:42 [ 28] [ 9] [D00002000] +12:35:42 [ 32] [ 6] [668899] +12:35:42 [ 35] [ 32] [6213544000238532=491212013853295] +12:35:42 [ 37] [ 12] [507900123309] +12:35:42 [ 41] [ 8] [03020003] +12:35:42 [ 42] [ 15] [APT ] +12:35:42 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:35:42 [ 49] [ 3] [418] +12:35:42 [ 52] [ 16] [22E18A96DA090C82] +12:35:42 ============================================================================ +12:35:42 + + +waiting on router queue for slot.... +12:35:42 Sending to : +12:35:42 ============================================================================ +12:35:42 ============================================================================ +12:35:42 Slot Id : <410> +12:35:42 Transaction Type : REQUEST +12:35:42 Received From : +12:35:42 ============================================================================ +12:35:42 FNo. Len. Field Value +12:35:42 ============================================================================ +12:35:42 [ 1] [ 4] [0200] +12:35:42 [ 2] [ 16] [6213544000238532] +12:35:42 [ 3] [ 6] [010000] +12:35:42 [ 4] [ 12] [000100000000] +12:35:42 [ 7] [ 10] [0320123332] +12:35:42 [ 11] [ 6] [944532] +12:35:42 [ 12] [ 6] [123332] +12:35:42 [ 13] [ 4] [0320] +12:35:42 [ 15] [ 4] [0320] +12:35:42 [ 18] [ 4] [6011] +12:35:42 [ 19] [ 3] [418] +12:35:42 [ 22] [ 3] [021] +12:35:42 [ 25] [ 2] [01] +12:35:42 [ 28] [ 9] [D00002000] +12:35:42 [ 32] [ 6] [668899] +12:35:42 [ 35] [ 32] [6213544000238532=491212013853295] +12:35:42 [ 37] [ 12] [507900123309] +12:35:42 [ 41] [ 8] [03020003] +12:35:42 [ 42] [ 15] [APT ] +12:35:42 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:35:42 [ 49] [ 3] [418] +12:35:42 [ 52] [ 16] [F0D3388834810BB9] +12:35:42 ============================================================================ +12:35:42 + + +waiting on router queue for slot.... +12:35:42 Sending to : <0> +12:35:42 ============================================================================ +12:35:43 ============================================================================ +12:35:43 Slot Id : <410> +12:35:43 Transaction Type : RESPONSE +12:35:43 Received From : +12:35:43 ============================================================================ +12:35:43 FNo. Len. Field Value +12:35:43 ============================================================================ +12:35:43 [ 1] [ 4] [0210] +12:35:43 [ 2] [ 16] [6213544000238532] +12:35:43 [ 3] [ 6] [010000] +12:35:43 [ 4] [ 12] [000100000000] +12:35:43 [ 7] [ 10] [0320123332] +12:35:43 [ 11] [ 6] [944532] +12:35:43 [ 12] [ 6] [123332] +12:35:43 [ 13] [ 4] [0320] +12:35:43 [ 15] [ 4] [0320] +12:35:43 [ 18] [ 4] [6011] +12:35:43 [ 19] [ 3] [418] +12:35:43 [ 32] [ 6] [668899] +12:35:43 [ 35] [ 32] [6213544000238532=491212013853295] +12:35:43 [ 37] [ 12] [507900123309] +12:35:43 [ 38] [ 6] [074120] +12:35:43 [ 39] [ 2] [00] +12:35:43 [ 41] [ 8] [03020003] +12:35:43 [ 49] [ 3] [418] +12:35:43 [ 54] [ 40] [0001418C0093586885160002418C009358688516] +12:35:43 ============================================================================ +12:35:43 Sending to : +12:35:43 ============================================================================ +12:35:43 + + +waiting on router queue for slot.... +12:35:45 ============================================================================ +12:35:45 Slot Id : <410> +12:35:45 Transaction Type : RESPONSE +12:35:45 Received From : +12:35:45 ============================================================================ +12:35:45 FNo. Len. Field Value +12:35:45 ============================================================================ +12:35:45 [ 1] [ 4] [0210] +12:35:45 [ 2] [ 16] [6213544000238532] +12:35:45 [ 3] [ 6] [010000] +12:35:45 [ 4] [ 12] [000100000000] +12:35:45 [ 7] [ 10] [0320123332] +12:35:45 [ 11] [ 6] [944532] +12:35:45 [ 12] [ 6] [123332] +12:35:45 [ 13] [ 4] [0320] +12:35:45 [ 15] [ 4] [0320] +12:35:45 [ 18] [ 4] [6011] +12:35:45 [ 19] [ 3] [418] +12:35:45 [ 32] [ 6] [668899] +12:35:45 [ 35] [ 32] [6213544000238532=491212013853295] +12:35:45 [ 37] [ 12] [507900123309] +12:35:45 [ 38] [ 6] [074120] +12:35:45 [ 39] [ 2] [00] +12:35:45 [ 41] [ 8] [03020003] +12:35:45 [ 49] [ 3] [418] +12:35:45 [ 54] [ 40] [0001418C0093586885160002418C009358688516] +12:35:45 ============================================================================ +12:35:45 Calculate Source COMM Id = 4 +12:35:45 ============================================================================ +12:35:45 + + +waiting on router queue for slot.... +12:35:47 ============================================================================ +12:35:47 Slot Id : <395> +12:35:47 Transaction Type : REQUEST +12:35:47 Received From : +12:35:47 ============================================================================ +12:35:47 FNo. Len. Field Value +12:35:47 ============================================================================ +12:35:47 [ 1] [ 4] [0800] +12:35:47 [ 7] [ 10] [0320053455] +12:35:47 [ 11] [ 6] [156340] +12:35:47 [ 70] [ 3] [301] +12:35:47 ============================================================================ +12:35:47 + + +waiting on router queue for slot.... +12:35:47 Sending to : +12:35:47 ============================================================================ +12:35:47 ============================================================================ +12:35:47 Slot Id : <395> +12:35:47 Transaction Type : RESPONSE +12:35:47 Received From : +12:35:47 ============================================================================ +12:35:47 FNo. Len. Field Value +12:35:47 ============================================================================ +12:35:47 [ 1] [ 4] [0810] +12:35:47 [ 7] [ 10] [0320053455] +12:35:47 [ 11] [ 6] [156340] +12:35:47 [ 39] [ 2] [00] +12:35:47 [ 70] [ 3] [301] +12:35:47 ============================================================================ +12:35:47 Calculate Source COMM Id = 2 +12:35:47 ============================================================================ +12:35:47 + + +waiting on router queue for slot.... +12:35:51 ============================================================================ +12:35:51 Slot Id : <383> +12:35:51 Transaction Type : REQUEST +12:35:51 Received From : +12:35:51 ============================================================================ +12:35:51 FNo. Len. Field Value +12:35:51 ============================================================================ +12:35:51 [ 1] [ 4] [0200] +12:35:51 [ 2] [ 16] [6213544002222088] +12:35:51 [ 3] [ 6] [010000] +12:35:51 [ 4] [ 12] [000010000000] +12:35:51 [ 7] [ 10] [0320053458] +12:35:51 [ 11] [ 6] [269074] +12:35:51 [ 12] [ 6] [123458] +12:35:51 [ 13] [ 4] [0320] +12:35:51 [ 14] [ 4] [4912] +12:35:51 [ 15] [ 4] [0320] +12:35:51 [ 18] [ 4] [6011] +12:35:51 [ 19] [ 3] [418] +12:35:51 [ 22] [ 3] [021] +12:35:51 [ 25] [ 2] [01] +12:35:51 [ 28] [ 9] [D00002000] +12:35:51 [ 32] [ 6] [180893] +12:35:51 [ 35] [ 32] [6213544002222088=491212012208886] +12:35:51 [ 37] [ 12] [507905269074] +12:35:51 [ 41] [ 8] [0543VLSC] +12:35:51 [ 42] [ 15] [999999 ] +12:35:51 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +12:35:51 [ 49] [ 3] [418] +12:35:51 [ 52] [ 16] [51B1C996ABE7AE74] +12:35:51 ============================================================================ +12:35:51 + + +waiting on router queue for slot.... +12:35:51 Sending to : +12:35:51 ============================================================================ +12:35:51 Sending to : +12:35:51 ============================================================================ +12:35:51 ============================================================================ +12:35:51 Slot Id : <383> +12:35:51 Transaction Type : REQUEST +12:35:51 Received From : +12:35:51 ============================================================================ +12:35:51 FNo. Len. Field Value +12:35:51 ============================================================================ +12:35:51 [ 1] [ 4] [0200] +12:35:51 [ 2] [ 16] [6213544002222088] +12:35:51 [ 3] [ 6] [010000] +12:35:51 [ 4] [ 12] [000010000000] +12:35:51 [ 7] [ 10] [0320053458] +12:35:51 [ 11] [ 6] [269074] +12:35:51 [ 12] [ 6] [123458] +12:35:51 [ 13] [ 4] [0320] +12:35:51 [ 14] [ 4] [4912] +12:35:51 [ 15] [ 4] [0320] +12:35:51 [ 18] [ 4] [6011] +12:35:51 [ 19] [ 3] [418] +12:35:51 [ 22] [ 3] [021] +12:35:51 [ 25] [ 2] [01] +12:35:51 [ 28] [ 9] [D00002000] +12:35:51 [ 32] [ 6] [180893] +12:35:51 [ 35] [ 32] [6213544002222088=491212012208886] +12:35:51 [ 37] [ 12] [507905269074] +12:35:51 [ 41] [ 8] [0543VLSC] +12:35:51 [ 42] [ 15] [999999 ] +12:35:51 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +12:35:51 [ 49] [ 3] [418] +12:35:51 [ 52] [ 16] [51B1C996ABE7AE74] +12:35:51 ============================================================================ +12:35:51 + + +waiting on router queue for slot.... +12:35:51 Sending to : +12:35:51 ============================================================================ +12:35:51 ============================================================================ +12:35:51 Slot Id : <383> +12:35:51 Transaction Type : REQUEST +12:35:51 Received From : +12:35:51 ============================================================================ +12:35:51 FNo. Len. Field Value +12:35:51 ============================================================================ +12:35:51 [ 1] [ 4] [0200] +12:35:51 [ 2] [ 16] [6213544002222088] +12:35:51 [ 3] [ 6] [010000] +12:35:51 [ 4] [ 12] [000010000000] +12:35:51 [ 7] [ 10] [0320053458] +12:35:51 [ 11] [ 6] [269074] +12:35:51 [ 12] [ 6] [123458] +12:35:51 [ 13] [ 4] [0320] +12:35:51 [ 14] [ 4] [4912] +12:35:51 [ 15] [ 4] [0320] +12:35:51 [ 18] [ 4] [6011] +12:35:51 [ 19] [ 3] [418] +12:35:51 [ 22] [ 3] [021] +12:35:51 [ 25] [ 2] [01] +12:35:51 [ 28] [ 9] [D00002000] +12:35:51 [ 32] [ 6] [180893] +12:35:51 [ 35] [ 32] [6213544002222088=491212012208886] +12:35:51 [ 37] [ 12] [507905269074] +12:35:51 [ 41] [ 8] [0543VLSC] +12:35:51 [ 42] [ 15] [999999 ] +12:35:51 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +12:35:51 [ 49] [ 3] [418] +12:35:51 [ 52] [ 16] [C0EEBF4065E9ED9C] +12:35:51 ============================================================================ +12:35:51 + + +waiting on router queue for slot.... +12:35:51 Sending to : <0> +12:35:51 ============================================================================ +12:35:52 ============================================================================ +12:35:52 Slot Id : <383> +12:35:52 Transaction Type : RESPONSE +12:35:52 Received From : +12:35:52 ============================================================================ +12:35:52 FNo. Len. Field Value +12:35:52 ============================================================================ +12:35:52 [ 1] [ 4] [0210] +12:35:52 [ 2] [ 16] [6213544002222088] +12:35:52 [ 3] [ 6] [010000] +12:35:52 [ 4] [ 12] [000010000000] +12:35:52 [ 7] [ 10] [0320053458] +12:35:52 [ 11] [ 6] [269074] +12:35:52 [ 12] [ 6] [123458] +12:35:52 [ 13] [ 4] [0320] +12:35:52 [ 15] [ 4] [0320] +12:35:52 [ 18] [ 4] [6011] +12:35:52 [ 19] [ 3] [418] +12:35:52 [ 32] [ 6] [180893] +12:35:52 [ 35] [ 32] [6213544002222088=491212012208886] +12:35:52 [ 37] [ 12] [507905269074] +12:35:52 [ 38] [ 6] [255714] +12:35:52 [ 39] [ 2] [00] +12:35:52 [ 41] [ 8] [0543VLSC] +12:35:52 [ 49] [ 3] [418] +12:35:52 [ 54] [ 40] [0001418C0000296001040002418C000029600104] +12:35:52 ============================================================================ +12:35:52 Sending to : +12:35:52 ============================================================================ +12:35:52 + + +waiting on router queue for slot.... +12:35:53 ============================================================================ +12:35:53 Slot Id : <383> +12:35:53 Transaction Type : RESPONSE +12:35:53 Received From : +12:35:53 ============================================================================ +12:35:53 FNo. Len. Field Value +12:35:53 ============================================================================ +12:35:53 [ 1] [ 4] [0210] +12:35:53 [ 2] [ 16] [6213544002222088] +12:35:53 [ 3] [ 6] [010000] +12:35:53 [ 4] [ 12] [000010000000] +12:35:53 [ 7] [ 10] [0320053458] +12:35:53 [ 11] [ 6] [269074] +12:35:53 [ 12] [ 6] [123458] +12:35:53 [ 13] [ 4] [0320] +12:35:53 [ 15] [ 4] [0320] +12:35:53 [ 18] [ 4] [6011] +12:35:53 [ 19] [ 3] [418] +12:35:53 [ 32] [ 6] [180893] +12:35:53 [ 35] [ 32] [6213544002222088=491212012208886] +12:35:53 [ 37] [ 12] [507905269074] +12:35:53 [ 38] [ 6] [255714] +12:35:53 [ 39] [ 2] [00] +12:35:53 [ 41] [ 8] [0543VLSC] +12:35:53 [ 49] [ 3] [418] +12:35:53 [ 54] [ 40] [0001418C0000296001040002418C000029600104] +12:35:53 ============================================================================ +12:35:53 Calculate Source COMM Id = 2 +12:35:53 ============================================================================ +12:35:53 + + +waiting on router queue for slot.... +12:36:00 ============================================================================ +12:36:00 Slot Id : <393> +12:36:00 Transaction Type : REQUEST +12:36:00 Received From : +12:36:00 ============================================================================ +12:36:00 FNo. Len. Field Value +12:36:00 ============================================================================ +12:36:00 [ 1] [ 4] [0800] +12:36:00 [ 2] [ 5] [02531] +12:36:00 [ 3] [ 6] [579128] +12:36:00 [ 7] [ 10] [0320053600] +12:36:00 [ 11] [ 6] [807143] +12:36:00 [ 15] [ 10] [0320053600] +12:36:00 [ 37] [ 11] [57912807143] +12:36:00 [ 70] [ 3] [001] +12:36:00 ============================================================================ +12:36:00 + + +waiting on router queue for slot.... +12:36:00 ============================================================================ +12:36:00 Slot Id : <393> +12:36:00 Transaction Type : RESPONSE +12:36:00 Received From : +12:36:00 ============================================================================ +12:36:00 FNo. Len. Field Value +12:36:00 ============================================================================ +12:36:00 [ 1] [ 4] [0810] +12:36:00 [ 7] [ 10] [0320053600] +12:36:00 [ 11] [ 6] [807143] +12:36:00 [ 15] [ 4] [0320] +12:36:00 [ 37] [ 12] [57912807143] +12:36:00 [ 39] [ 2] [00] +12:36:00 [ 70] [ 3] [001] +12:36:00 ============================================================================ +12:36:00 Sending to : +12:36:00 ============================================================================ +12:36:00 + + +waiting on router queue for slot.... +12:36:09 ============================================================================ +12:36:09 Slot Id : <400> +12:36:09 Transaction Type : REQUEST +12:36:09 Received From : +12:36:09 ============================================================================ +12:36:09 FNo. Len. Field Value +12:36:09 ============================================================================ +12:36:09 [ 1] [ 4] [0800] +12:36:09 [ 7] [ 10] [0320053517] +12:36:09 [ 11] [ 6] [156341] +12:36:09 [ 70] [ 3] [301] +12:36:09 ============================================================================ +12:36:09 + + +waiting on router queue for slot.... +12:36:09 Sending to : +12:36:09 ============================================================================ +12:36:09 ============================================================================ +12:36:09 Slot Id : <400> +12:36:09 Transaction Type : RESPONSE +12:36:09 Received From : +12:36:09 ============================================================================ +12:36:09 FNo. Len. Field Value +12:36:09 ============================================================================ +12:36:09 [ 1] [ 4] [0810] +12:36:09 [ 7] [ 10] [0320053517] +12:36:09 [ 11] [ 6] [156341] +12:36:09 [ 39] [ 2] [00] +12:36:09 [ 70] [ 3] [301] +12:36:09 ============================================================================ +12:36:09 Calculate Source COMM Id = 2 +12:36:09 ============================================================================ +12:36:09 + + +waiting on router queue for slot.... +12:36:15 ============================================================================ +12:36:15 Slot Id : <413> +12:36:15 Transaction Type : REQUEST +12:36:15 Received From : +12:36:15 ============================================================================ +12:36:15 FNo. Len. Field Value +12:36:15 ============================================================================ +12:36:15 [ 1] [ 4] [0200] +12:36:15 [ 2] [ 16] [1808930300006749] +12:36:15 [ 3] [ 6] [011000] +12:36:15 [ 4] [ 12] [000020000000] +12:36:15 [ 7] [ 10] [0320123611] +12:36:15 [ 11] [ 6] [746645] +12:36:15 [ 12] [ 6] [123611] +12:36:15 [ 13] [ 4] [0320] +12:36:15 [ 15] [ 4] [0320] +12:36:15 [ 18] [ 4] [6011] +12:36:15 [ 22] [ 3] [900] +12:36:15 [ 25] [ 2] [02] +12:36:15 [ 28] [ 9] [D00002000] +12:36:15 [ 32] [ 6] [621354] +12:36:15 [ 35] [ 27] [1808930300006749=1803500228] +12:36:15 [ 37] [ 12] [507902835277] +12:36:15 [ 41] [ 8] [01007700] +12:36:15 [ 42] [ 15] [NATIVE ] +12:36:15 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +12:36:15 [ 49] [ 3] [418] +12:36:15 [ 52] [ 16] [8A84C603608AB326] +12:36:15 ============================================================================ +12:36:15 + + +waiting on router queue for slot.... +12:36:15 Sending to : +12:36:15 ============================================================================ +12:36:15 Sending to : +12:36:15 ============================================================================ +12:36:16 ============================================================================ +12:36:16 Slot Id : <413> +12:36:16 Transaction Type : REQUEST +12:36:16 Received From : +12:36:16 ============================================================================ +12:36:16 FNo. Len. Field Value +12:36:16 ============================================================================ +12:36:16 [ 1] [ 4] [0200] +12:36:16 [ 2] [ 16] [1808930300006749] +12:36:16 [ 3] [ 6] [011000] +12:36:16 [ 4] [ 12] [000020000000] +12:36:16 [ 7] [ 10] [0320123611] +12:36:16 [ 11] [ 6] [746645] +12:36:16 [ 12] [ 6] [123611] +12:36:16 [ 13] [ 4] [0320] +12:36:16 [ 15] [ 4] [0320] +12:36:16 [ 18] [ 4] [6011] +12:36:16 [ 22] [ 3] [900] +12:36:16 [ 25] [ 2] [02] +12:36:16 [ 28] [ 9] [D00002000] +12:36:16 [ 32] [ 6] [621354] +12:36:16 [ 35] [ 27] [1808930300006749=1803500228] +12:36:16 [ 37] [ 12] [507902835277] +12:36:16 [ 41] [ 8] [01007700] +12:36:16 [ 42] [ 15] [NATIVE ] +12:36:16 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +12:36:16 [ 49] [ 3] [418] +12:36:16 [ 52] [ 16] [8A84C603608AB326] +12:36:16 ============================================================================ +12:36:16 + + +waiting on router queue for slot.... +12:36:16 Sending to : +12:36:16 ============================================================================ +12:36:16 ============================================================================ +12:36:16 Slot Id : <413> +12:36:16 Transaction Type : REQUEST +12:36:16 Received From : +12:36:16 ============================================================================ +12:36:16 FNo. Len. Field Value +12:36:16 ============================================================================ +12:36:16 [ 1] [ 4] [0200] +12:36:16 [ 2] [ 16] [1808930300006749] +12:36:16 [ 3] [ 6] [011000] +12:36:16 [ 4] [ 12] [000020000000] +12:36:16 [ 7] [ 10] [0320123611] +12:36:16 [ 11] [ 6] [746645] +12:36:16 [ 12] [ 6] [123611] +12:36:16 [ 13] [ 4] [0320] +12:36:16 [ 15] [ 4] [0320] +12:36:16 [ 18] [ 4] [6011] +12:36:16 [ 22] [ 3] [900] +12:36:16 [ 25] [ 2] [02] +12:36:16 [ 28] [ 9] [D00002000] +12:36:16 [ 32] [ 6] [621354] +12:36:16 [ 35] [ 27] [1808930300006749=1803500228] +12:36:16 [ 37] [ 12] [507902835277] +12:36:16 [ 41] [ 8] [01007700] +12:36:16 [ 42] [ 15] [NATIVE ] +12:36:16 [ 43] [ 40] [Thalad Bridge Keooudom LAO] +12:36:16 [ 49] [ 3] [418] +12:36:16 [ 52] [ 16] [667CAAB44B60CB1F] +12:36:16 ============================================================================ +12:36:16 + + +waiting on router queue for slot.... +12:36:16 Sending to : <2> +12:36:16 ============================================================================ +12:36:19 ============================================================================ +12:36:19 Slot Id : <413> +12:36:19 Transaction Type : RESPONSE +12:36:19 Received From : +12:36:19 ============================================================================ +12:36:19 FNo. Len. Field Value +12:36:19 ============================================================================ +12:36:19 [ 1] [ 4] [0210] +12:36:19 [ 2] [ 16] [1808930300006749] +12:36:19 [ 3] [ 6] [011000] +12:36:19 [ 4] [ 12] [000020000000] +12:36:19 [ 6] [ 12] [000020000000] +12:36:19 [ 7] [ 10] [0320123611] +12:36:19 [ 11] [ 6] [746645] +12:36:19 [ 12] [ 6] [123611] +12:36:19 [ 13] [ 4] [0320] +12:36:19 [ 18] [ 4] [6011] +12:36:19 [ 19] [ 3] [418] +12:36:19 [ 22] [ 3] [021] +12:36:19 [ 32] [ 6] [621354] +12:36:19 [ 35] [ 27] [1808930300006749=1803500228] +12:36:19 [ 37] [ 12] [507902835277] +12:36:19 [ 38] [ 6] [746645] +12:36:19 [ 39] [ 2] [00] +12:36:19 [ 41] [ 8] [01007700] +12:36:19 [ 49] [ 3] [418] +12:36:19 [ 52] [ 16] [667CAAB44B60CB1F] +12:36:19 [ 54] [ 20] [1001418C000053577000] +12:36:19 ============================================================================ +12:36:19 Sending to : +12:36:19 ============================================================================ +12:36:19 + + +waiting on router queue for slot.... +12:36:21 ============================================================================ +12:36:21 Slot Id : <413> +12:36:21 Transaction Type : RESPONSE +12:36:21 Received From : +12:36:21 ============================================================================ +12:36:21 FNo. Len. Field Value +12:36:21 ============================================================================ +12:36:21 [ 1] [ 4] [0210] +12:36:21 [ 2] [ 16] [1808930300006749] +12:36:21 [ 3] [ 6] [011000] +12:36:21 [ 4] [ 12] [000020000000] +12:36:21 [ 6] [ 12] [000020000000] +12:36:21 [ 7] [ 10] [0320123611] +12:36:21 [ 11] [ 6] [746645] +12:36:21 [ 12] [ 6] [123611] +12:36:21 [ 13] [ 4] [0320] +12:36:21 [ 18] [ 4] [6011] +12:36:21 [ 19] [ 3] [418] +12:36:21 [ 22] [ 3] [021] +12:36:21 [ 32] [ 6] [621354] +12:36:21 [ 35] [ 27] [1808930300006749=1803500228] +12:36:21 [ 37] [ 12] [507902835277] +12:36:21 [ 38] [ 6] [746645] +12:36:21 [ 39] [ 2] [00] +12:36:21 [ 41] [ 8] [01007700] +12:36:21 [ 49] [ 3] [418] +12:36:21 [ 52] [ 16] [667CAAB44B60CB1F] +12:36:21 [ 54] [ 20] [1001418C000053577000] +12:36:21 ============================================================================ +12:36:21 Calculate Source COMM Id = 0 +12:36:21 ============================================================================ +12:36:21 + + +waiting on router queue for slot.... +12:36:21 ============================================================================ +12:36:21 Slot Id : <397> +12:36:21 Transaction Type : REQUEST +12:36:21 Received From : +12:36:21 ============================================================================ +12:36:21 FNo. Len. Field Value +12:36:21 ============================================================================ +12:36:21 [ 1] [ 4] [0800] +12:36:21 [ 7] [ 10] [0320053412] +12:36:21 [ 11] [ 6] [042972] +12:36:21 [ 37] [ 12] [57912042972] +12:36:21 [ 70] [ 3] [301] +12:36:21 ============================================================================ +12:36:21 + + +waiting on router queue for slot.... +12:36:21 Sending to : +12:36:21 ============================================================================ +12:36:21 ============================================================================ +12:36:21 Slot Id : <397> +12:36:21 Transaction Type : RESPONSE +12:36:21 Received From : +12:36:21 ============================================================================ +12:36:21 FNo. Len. Field Value +12:36:21 ============================================================================ +12:36:21 [ 1] [ 4] [0810] +12:36:21 [ 7] [ 10] [0320053412] +12:36:21 [ 11] [ 6] [042972] +12:36:21 [ 37] [ 12] [579120429720] +12:36:21 [ 39] [ 2] [00] +12:36:21 [ 70] [ 3] [810] +12:36:21 ============================================================================ +12:36:21 Calculate Source COMM Id = 4 +12:36:21 ============================================================================ +12:36:21 + + +waiting on router queue for slot.... +12:36:30 ============================================================================ +12:36:30 Slot Id : <349> +12:36:30 Transaction Type : REQUEST +12:36:30 Received From : +12:36:30 ============================================================================ +12:36:30 FNo. Len. Field Value +12:36:30 ============================================================================ +12:36:30 [ 1] [ 4] [0800] +12:36:30 [ 7] [ 10] [0320053538] +12:36:30 [ 11] [ 6] [156342] +12:36:30 [ 70] [ 3] [301] +12:36:30 ============================================================================ +12:36:30 + + +waiting on router queue for slot.... +12:36:30 Sending to : +12:36:30 ============================================================================ +12:36:30 ============================================================================ +12:36:30 Slot Id : <349> +12:36:30 Transaction Type : RESPONSE +12:36:30 Received From : +12:36:30 ============================================================================ +12:36:30 FNo. Len. Field Value +12:36:30 ============================================================================ +12:36:30 [ 1] [ 4] [0810] +12:36:30 [ 7] [ 10] [0320053538] +12:36:30 [ 11] [ 6] [156342] +12:36:30 [ 39] [ 2] [00] +12:36:30 [ 70] [ 3] [301] +12:36:30 ============================================================================ +12:36:30 Calculate Source COMM Id = 2 +12:36:30 ============================================================================ +12:36:30 + + +waiting on router queue for slot.... +12:36:41 ============================================================================ +12:36:41 Slot Id : <394> +12:36:41 Transaction Type : REQUEST +12:36:41 Received From : +12:36:41 ============================================================================ +12:36:41 FNo. Len. Field Value +12:36:41 ============================================================================ +12:36:41 [ 1] [ 4] [0800] +12:36:41 [ 7] [ 10] [0320053548] +12:36:41 [ 11] [ 6] [156343] +12:36:41 [ 70] [ 3] [301] +12:36:41 ============================================================================ +12:36:41 + + +waiting on router queue for slot.... +12:36:41 Sending to : +12:36:41 ============================================================================ +12:36:41 ============================================================================ +12:36:41 Slot Id : <394> +12:36:41 Transaction Type : RESPONSE +12:36:41 Received From : +12:36:41 ============================================================================ +12:36:41 FNo. Len. Field Value +12:36:41 ============================================================================ +12:36:41 [ 1] [ 4] [0810] +12:36:41 [ 7] [ 10] [0320053548] +12:36:41 [ 11] [ 6] [156343] +12:36:41 [ 39] [ 2] [00] +12:36:41 [ 70] [ 3] [301] +12:36:41 ============================================================================ +12:36:41 Calculate Source COMM Id = 2 +12:36:41 ============================================================================ +12:36:41 + + +waiting on router queue for slot.... +12:36:53 ============================================================================ +12:36:53 Slot Id : <414> +12:36:53 Transaction Type : REQUEST +12:36:53 Received From : +12:36:53 ============================================================================ +12:36:53 FNo. Len. Field Value +12:36:53 ============================================================================ +12:36:53 [ 1] [ 4] [0800] +12:36:53 [ 7] [ 10] [0320053559] +12:36:53 [ 11] [ 6] [156344] +12:36:53 [ 70] [ 3] [301] +12:36:53 ============================================================================ +12:36:53 + + +waiting on router queue for slot.... +12:36:53 Sending to : +12:36:53 ============================================================================ +12:36:53 ============================================================================ +12:36:53 Slot Id : <414> +12:36:53 Transaction Type : RESPONSE +12:36:53 Received From : +12:36:53 ============================================================================ +12:36:53 FNo. Len. Field Value +12:36:53 ============================================================================ +12:36:53 [ 1] [ 4] [0810] +12:36:53 [ 7] [ 10] [0320053559] +12:36:53 [ 11] [ 6] [156344] +12:36:53 [ 39] [ 2] [00] +12:36:53 [ 70] [ 3] [301] +12:36:53 ============================================================================ +12:36:53 Calculate Source COMM Id = 2 +12:36:53 ============================================================================ +12:36:53 + + +waiting on router queue for slot.... +12:36:54 ============================================================================ +12:36:54 Slot Id : <399> +12:36:54 Transaction Type : REQUEST +12:36:54 Received From : +12:36:54 ============================================================================ +12:36:54 FNo. Len. Field Value +12:36:54 ============================================================================ +12:36:54 [ 1] [ 4] [0200] +12:36:54 [ 2] [ 16] [6213545000354070] +12:36:54 [ 3] [ 6] [300000] +12:36:54 [ 4] [ 12] [000000000000] +12:36:54 [ 7] [ 10] [0320123445] +12:36:54 [ 11] [ 6] [944573] +12:36:54 [ 12] [ 6] [123445] +12:36:54 [ 13] [ 4] [0320] +12:36:54 [ 15] [ 4] [0320] +12:36:54 [ 18] [ 4] [6011] +12:36:54 [ 19] [ 3] [418] +12:36:54 [ 22] [ 3] [021] +12:36:54 [ 25] [ 2] [01] +12:36:54 [ 28] [ 9] [D00000000] +12:36:54 [ 32] [ 6] [668899] +12:36:54 [ 35] [ 32] [6213545000354070=491212015407860] +12:36:54 [ 37] [ 12] [507900823529] +12:36:54 [ 41] [ 8] [03015001] +12:36:54 [ 42] [ 15] [APT ] +12:36:54 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +12:36:54 [ 49] [ 3] [418] +12:36:54 [ 52] [ 16] [0CEB0FBBD3C44012] +12:36:54 ============================================================================ +12:36:54 + + +waiting on router queue for slot.... +12:36:54 Sending to : +12:36:54 ============================================================================ +12:36:54 Sending to : +12:36:54 ============================================================================ +12:36:55 ============================================================================ +12:36:55 Slot Id : <399> +12:36:55 Transaction Type : REQUEST +12:36:55 Received From : +12:36:55 ============================================================================ +12:36:55 FNo. Len. Field Value +12:36:55 ============================================================================ +12:36:55 [ 1] [ 4] [0200] +12:36:55 [ 2] [ 16] [6213545000354070] +12:36:55 [ 3] [ 6] [300000] +12:36:55 [ 4] [ 12] [000000000000] +12:36:55 [ 7] [ 10] [0320123445] +12:36:55 [ 11] [ 6] [944573] +12:36:55 [ 12] [ 6] [123445] +12:36:55 [ 13] [ 4] [0320] +12:36:55 [ 15] [ 4] [0320] +12:36:55 [ 18] [ 4] [6011] +12:36:55 [ 19] [ 3] [418] +12:36:55 [ 22] [ 3] [021] +12:36:55 [ 25] [ 2] [01] +12:36:55 [ 28] [ 9] [D00000000] +12:36:55 [ 32] [ 6] [668899] +12:36:55 [ 35] [ 32] [6213545000354070=491212015407860] +12:36:55 [ 37] [ 12] [507900823529] +12:36:55 [ 41] [ 8] [03015001] +12:36:55 [ 42] [ 15] [APT ] +12:36:55 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +12:36:55 [ 49] [ 3] [418] +12:36:55 [ 52] [ 16] [0CEB0FBBD3C44012] +12:36:55 ============================================================================ +12:36:55 + + +waiting on router queue for slot.... +12:36:55 Sending to : +12:36:55 ============================================================================ +12:36:55 ============================================================================ +12:36:55 Slot Id : <399> +12:36:55 Transaction Type : REQUEST +12:36:55 Received From : +12:36:55 ============================================================================ +12:36:55 FNo. Len. Field Value +12:36:55 ============================================================================ +12:36:55 [ 1] [ 4] [0200] +12:36:55 [ 2] [ 16] [6213545000354070] +12:36:55 [ 3] [ 6] [300000] +12:36:55 [ 4] [ 12] [000000000000] +12:36:55 [ 7] [ 10] [0320123445] +12:36:55 [ 11] [ 6] [944573] +12:36:55 [ 12] [ 6] [123445] +12:36:55 [ 13] [ 4] [0320] +12:36:55 [ 15] [ 4] [0320] +12:36:55 [ 18] [ 4] [6011] +12:36:55 [ 19] [ 3] [418] +12:36:55 [ 22] [ 3] [021] +12:36:55 [ 25] [ 2] [01] +12:36:55 [ 28] [ 9] [D00000000] +12:36:55 [ 32] [ 6] [668899] +12:36:55 [ 35] [ 32] [6213545000354070=491212015407860] +12:36:55 [ 37] [ 12] [507900823529] +12:36:55 [ 41] [ 8] [03015001] +12:36:55 [ 42] [ 15] [APT ] +12:36:55 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +12:36:55 [ 49] [ 3] [418] +12:36:55 [ 52] [ 16] [1CB33F62D56469A0] +12:36:55 ============================================================================ +12:36:55 + + +waiting on router queue for slot.... +12:36:55 Sending to : <0> +12:36:55 ============================================================================ +12:36:55 ============================================================================ +12:36:55 Slot Id : <399> +12:36:55 Transaction Type : RESPONSE +12:36:55 Received From : +12:36:55 ============================================================================ +12:36:55 FNo. Len. Field Value +12:36:55 ============================================================================ +12:36:55 [ 1] [ 4] [0210] +12:36:55 [ 2] [ 16] [6213545000354070] +12:36:55 [ 3] [ 6] [300000] +12:36:55 [ 4] [ 12] [000000000000] +12:36:55 [ 7] [ 10] [0320123445] +12:36:55 [ 11] [ 6] [944573] +12:36:55 [ 12] [ 6] [123445] +12:36:55 [ 13] [ 4] [0320] +12:36:55 [ 15] [ 4] [0320] +12:36:55 [ 18] [ 4] [6011] +12:36:55 [ 19] [ 3] [418] +12:36:55 [ 32] [ 6] [668899] +12:36:55 [ 35] [ 32] [6213545000354070=491212015407860] +12:36:55 [ 37] [ 12] [507900823529] +12:36:55 [ 38] [ 6] [771026] +12:36:55 [ 39] [ 2] [00] +12:36:55 [ 41] [ 8] [03015001] +12:36:55 [ 49] [ 3] [418] +12:36:55 [ 54] [ 40] [0001418C0000068061790002418C000006806179] +12:36:55 ============================================================================ +12:36:55 Sending to : +12:36:55 ============================================================================ +12:36:55 + + +waiting on router queue for slot.... +12:36:56 ============================================================================ +12:36:56 Slot Id : <387> +12:36:56 Transaction Type : REQUEST +12:36:56 Received From : +12:36:56 ============================================================================ +12:36:56 FNo. Len. Field Value +12:36:56 ============================================================================ +12:36:56 [ 1] [ 4] [0200] +12:36:56 [ 2] [ 16] [6688990103345904] +12:36:56 [ 3] [ 6] [300000] +12:36:56 [ 4] [ 12] [000000000000] +12:36:56 [ 7] [ 10] [0320123651] +12:36:56 [ 11] [ 6] [746790] +12:36:56 [ 12] [ 6] [123651] +12:36:56 [ 13] [ 4] [0320] +12:36:56 [ 15] [ 4] [0320] +12:36:56 [ 18] [ 4] [6011] +12:36:56 [ 22] [ 3] [900] +12:36:56 [ 25] [ 2] [02] +12:36:56 [ 28] [ 9] [D00002000] +12:36:56 [ 32] [ 6] [621354] +12:36:56 [ 35] [ 37] [6688990103345904=43011231590473400000] +12:36:56 [ 37] [ 12] [507903961165] +12:36:56 [ 41] [ 8] [01011200] +12:36:56 [ 42] [ 15] [NATIVE ] +12:36:56 [ 43] [ 40] [Dongkhamxang Hatxaifong LAO] +12:36:56 [ 49] [ 3] [418] +12:36:56 [ 52] [ 16] [353B1F6EB9809918] +12:36:56 ============================================================================ +12:36:56 + + +waiting on router queue for slot.... +12:36:56 Sending to : +12:36:56 ============================================================================ +12:36:56 Sending to : +12:36:56 ============================================================================ +12:36:56 ============================================================================ +12:36:56 Slot Id : <387> +12:36:56 Transaction Type : REQUEST +12:36:56 Received From : +12:36:56 ============================================================================ +12:36:56 FNo. Len. Field Value +12:36:56 ============================================================================ +12:36:56 [ 1] [ 4] [0200] +12:36:56 [ 2] [ 16] [6688990103345904] +12:36:56 [ 3] [ 6] [300000] +12:36:56 [ 4] [ 12] [000000000000] +12:36:56 [ 7] [ 10] [0320123651] +12:36:56 [ 11] [ 6] [746790] +12:36:56 [ 12] [ 6] [123651] +12:36:56 [ 13] [ 4] [0320] +12:36:56 [ 15] [ 4] [0320] +12:36:56 [ 18] [ 4] [6011] +12:36:56 [ 22] [ 3] [900] +12:36:56 [ 25] [ 2] [02] +12:36:56 [ 28] [ 9] [D00002000] +12:36:56 [ 32] [ 6] [621354] +12:36:56 [ 35] [ 37] [6688990103345904=43011231590473400000] +12:36:56 [ 37] [ 12] [507903961165] +12:36:56 [ 41] [ 8] [01011200] +12:36:56 [ 42] [ 15] [NATIVE ] +12:36:56 [ 43] [ 40] [Dongkhamxang Hatxaifong LAO] +12:36:56 [ 49] [ 3] [418] +12:36:56 [ 52] [ 16] [353B1F6EB9809918] +12:36:56 ============================================================================ +12:36:56 + + +waiting on router queue for slot.... +12:36:56 Sending to : +12:36:56 ============================================================================ +12:36:56 ============================================================================ +12:36:56 Slot Id : <387> +12:36:56 Transaction Type : REQUEST +12:36:56 Received From : +12:36:56 ============================================================================ +12:36:56 FNo. Len. Field Value +12:36:56 ============================================================================ +12:36:56 [ 1] [ 4] [0200] +12:36:56 [ 2] [ 16] [6688990103345904] +12:36:56 [ 3] [ 6] [300000] +12:36:56 [ 4] [ 12] [000000000000] +12:36:56 [ 7] [ 10] [0320123651] +12:36:56 [ 11] [ 6] [746790] +12:36:56 [ 12] [ 6] [123651] +12:36:56 [ 13] [ 4] [0320] +12:36:56 [ 15] [ 4] [0320] +12:36:56 [ 18] [ 4] [6011] +12:36:56 [ 22] [ 3] [900] +12:36:56 [ 25] [ 2] [02] +12:36:56 [ 28] [ 9] [D00002000] +12:36:56 [ 32] [ 6] [621354] +12:36:56 [ 35] [ 37] [6688990103345904=43011231590473400000] +12:36:56 [ 37] [ 12] [507903961165] +12:36:56 [ 41] [ 8] [01011200] +12:36:56 [ 42] [ 15] [NATIVE ] +12:36:56 [ 43] [ 40] [Dongkhamxang Hatxaifong LAO] +12:36:56 [ 49] [ 3] [418] +12:36:56 [ 52] [ 16] [558F93D563AB6844] +12:36:56 ============================================================================ +12:36:56 + + +waiting on router queue for slot.... +12:36:56 Sending to : <4> +12:36:56 ============================================================================ +12:36:56 ============================================================================ +12:36:56 Slot Id : <399> +12:36:56 Transaction Type : RESPONSE +12:36:56 Received From : +12:36:56 ============================================================================ +12:36:56 FNo. Len. Field Value +12:36:56 ============================================================================ +12:36:56 [ 1] [ 4] [0210] +12:36:56 [ 2] [ 16] [6213545000354070] +12:36:56 [ 3] [ 6] [300000] +12:36:56 [ 4] [ 12] [000000000000] +12:36:56 [ 7] [ 10] [0320123445] +12:36:56 [ 11] [ 6] [944573] +12:36:56 [ 12] [ 6] [123445] +12:36:56 [ 13] [ 4] [0320] +12:36:56 [ 15] [ 4] [0320] +12:36:56 [ 18] [ 4] [6011] +12:36:56 [ 19] [ 3] [418] +12:36:56 [ 32] [ 6] [668899] +12:36:56 [ 35] [ 32] [6213545000354070=491212015407860] +12:36:56 [ 37] [ 12] [507900823529] +12:36:56 [ 38] [ 6] [771026] +12:36:56 [ 39] [ 2] [00] +12:36:56 [ 41] [ 8] [03015001] +12:36:56 [ 49] [ 3] [418] +12:36:56 [ 54] [ 40] [0001418C0000068061790002418C000006806179] +12:36:56 ============================================================================ +12:36:56 Calculate Source COMM Id = 4 +12:36:56 ============================================================================ +12:36:56 + + +waiting on router queue for slot.... +12:36:57 ============================================================================ +12:36:57 Slot Id : <387> +12:36:57 Transaction Type : RESPONSE +12:36:57 Received From : +12:36:57 ============================================================================ +12:36:57 FNo. Len. Field Value +12:36:57 ============================================================================ +12:36:57 [ 1] [ 4] [0210] +12:36:57 [ 2] [ 16] [6688990103345904] +12:36:57 [ 3] [ 6] [300000] +12:36:57 [ 4] [ 12] [000000000000] +12:36:57 [ 11] [ 6] [746790] +12:36:57 [ 12] [ 6] [123651] +12:36:57 [ 15] [ 4] [0320] +12:36:57 [ 18] [ 4] [6011] +12:36:57 [ 32] [ 6] [621354] +12:36:57 [ 35] [ 37] [6688990103345904=43011231590473400000] +12:36:57 [ 37] [ 12] [507903961165] +12:36:57 [ 38] [ 6] [194935] +12:36:57 [ 39] [ 2] [00] +12:36:57 [ 41] [ 8] [01011200] +12:36:57 [ 49] [ 3] [418] +12:36:57 [ 54] [ 20] [0002418C000048503154] +12:36:57 ============================================================================ +12:36:57 Sending to : +12:36:57 ============================================================================ +12:36:57 + + +waiting on router queue for slot.... +12:36:58 ============================================================================ +12:36:58 Slot Id : <387> +12:36:58 Transaction Type : RESPONSE +12:36:58 Received From : +12:36:58 ============================================================================ +12:36:58 FNo. Len. Field Value +12:36:58 ============================================================================ +12:36:58 [ 1] [ 4] [0210] +12:36:58 [ 2] [ 16] [6688990103345904] +12:36:58 [ 3] [ 6] [300000] +12:36:58 [ 4] [ 12] [000000000000] +12:36:58 [ 11] [ 6] [746790] +12:36:58 [ 12] [ 6] [123651] +12:36:58 [ 15] [ 4] [0320] +12:36:58 [ 18] [ 4] [6011] +12:36:58 [ 32] [ 6] [621354] +12:36:58 [ 35] [ 37] [6688990103345904=43011231590473400000] +12:36:58 [ 37] [ 12] [507903961165] +12:36:58 [ 38] [ 6] [194935] +12:36:58 [ 39] [ 2] [00] +12:36:58 [ 41] [ 8] [01011200] +12:36:58 [ 49] [ 3] [418] +12:36:58 [ 54] [ 20] [0002418C000048503154] +12:36:58 ============================================================================ +12:36:58 Calculate Source COMM Id = 0 +12:36:58 ============================================================================ +12:36:58 + + +waiting on router queue for slot.... +12:37:02 ============================================================================ +12:37:02 Slot Id : <372> +12:37:02 Transaction Type : REQUEST +12:37:02 Received From : +12:37:02 ============================================================================ +12:37:02 FNo. Len. Field Value +12:37:02 ============================================================================ +12:37:02 [ 1] [ 4] [0800] +12:37:02 [ 2] [ 5] [02531] +12:37:02 [ 3] [ 6] [579128] +12:37:02 [ 7] [ 10] [0320053702] +12:37:02 [ 11] [ 6] [807144] +12:37:02 [ 15] [ 10] [0320053702] +12:37:02 [ 37] [ 11] [57912807144] +12:37:02 [ 70] [ 3] [001] +12:37:02 ============================================================================ +12:37:02 + + +waiting on router queue for slot.... +12:37:02 ============================================================================ +12:37:02 Slot Id : <372> +12:37:02 Transaction Type : RESPONSE +12:37:02 Received From : +12:37:02 ============================================================================ +12:37:02 FNo. Len. Field Value +12:37:02 ============================================================================ +12:37:02 [ 1] [ 4] [0810] +12:37:02 [ 7] [ 10] [0320053702] +12:37:02 [ 11] [ 6] [807144] +12:37:02 [ 15] [ 4] [0320] +12:37:02 [ 37] [ 12] [57912807144] +12:37:02 [ 39] [ 2] [00] +12:37:02 [ 70] [ 3] [001] +12:37:02 ============================================================================ +12:37:02 Sending to : +12:37:02 ============================================================================ +12:37:02 + + +waiting on router queue for slot.... +12:37:05 ============================================================================ +12:37:05 Slot Id : <418> +12:37:05 Transaction Type : REQUEST +12:37:05 Received From : +12:37:05 ============================================================================ +12:37:05 FNo. Len. Field Value +12:37:05 ============================================================================ +12:37:05 [ 1] [ 4] [0800] +12:37:05 [ 7] [ 10] [0320053612] +12:37:05 [ 11] [ 6] [156345] +12:37:05 [ 70] [ 3] [301] +12:37:05 ============================================================================ +12:37:05 + + +waiting on router queue for slot.... +12:37:05 Sending to : +12:37:05 ============================================================================ +12:37:05 ============================================================================ +12:37:05 Slot Id : <418> +12:37:05 Transaction Type : RESPONSE +12:37:05 Received From : +12:37:05 ============================================================================ +12:37:05 FNo. Len. Field Value +12:37:05 ============================================================================ +12:37:05 [ 1] [ 4] [0810] +12:37:05 [ 7] [ 10] [0320053612] +12:37:05 [ 11] [ 6] [156345] +12:37:05 [ 39] [ 2] [00] +12:37:05 [ 70] [ 3] [301] +12:37:05 ============================================================================ +12:37:05 Calculate Source COMM Id = 2 +12:37:05 ============================================================================ +12:37:05 + + +waiting on router queue for slot.... +12:37:20 ============================================================================ +12:37:20 Slot Id : <368> +12:37:20 Transaction Type : REQUEST +12:37:20 Received From : +12:37:20 ============================================================================ +12:37:20 FNo. Len. Field Value +12:37:20 ============================================================================ +12:37:20 [ 1] [ 4] [0800] +12:37:20 [ 7] [ 10] [0320053628] +12:37:20 [ 11] [ 6] [156346] +12:37:20 [ 70] [ 3] [301] +12:37:20 ============================================================================ +12:37:20 + + +waiting on router queue for slot.... +12:37:20 Sending to : +12:37:20 ============================================================================ +12:37:20 ============================================================================ +12:37:20 Slot Id : <368> +12:37:20 Transaction Type : RESPONSE +12:37:20 Received From : +12:37:20 ============================================================================ +12:37:20 FNo. Len. Field Value +12:37:20 ============================================================================ +12:37:20 [ 1] [ 4] [0810] +12:37:20 [ 7] [ 10] [0320053628] +12:37:20 [ 11] [ 6] [156346] +12:37:20 [ 39] [ 2] [00] +12:37:20 [ 70] [ 3] [301] +12:37:20 ============================================================================ +12:37:20 Calculate Source COMM Id = 2 +12:37:20 ============================================================================ +12:37:20 + + +waiting on router queue for slot.... +12:37:30 ============================================================================ +12:37:30 Slot Id : <419> +12:37:30 Transaction Type : REQUEST +12:37:30 Received From : +12:37:30 ============================================================================ +12:37:30 FNo. Len. Field Value +12:37:30 ============================================================================ +12:37:30 [ 1] [ 4] [0800] +12:37:30 [ 7] [ 10] [0320053726] +12:37:30 [ 11] [ 6] [069877] +12:37:30 [ 37] [ 12] [507912069877] +12:37:30 [ 70] [ 3] [001] +12:37:30 ============================================================================ +12:37:30 + + +waiting on router queue for slot.... +12:37:30 Sending to : +12:37:30 ============================================================================ +12:37:30 ============================================================================ +12:37:30 Slot Id : <419> +12:37:30 Transaction Type : RESPONSE +12:37:30 Received From : +12:37:30 ============================================================================ +12:37:30 FNo. Len. Field Value +12:37:30 ============================================================================ +12:37:30 [ 1] [ 4] [0810] +12:37:30 [ 7] [ 10] [0320053726] +12:37:30 [ 11] [ 6] [069877] +12:37:30 [ 37] [ 12] [507912069877] +12:37:30 [ 39] [ 2] [00] +12:37:30 [ 70] [ 3] [001] +12:37:30 ============================================================================ +12:37:30 Calculate Source COMM Id = 0 +12:37:30 ============================================================================ +12:37:30 + + +waiting on router queue for slot.... +12:37:31 ============================================================================ +12:37:31 Slot Id : <406> +12:37:31 Transaction Type : REQUEST +12:37:31 Received From : +12:37:31 ============================================================================ +12:37:31 FNo. Len. Field Value +12:37:31 ============================================================================ +12:37:31 [ 1] [ 4] [0800] +12:37:31 [ 7] [ 10] [0320053639] +12:37:31 [ 11] [ 6] [156347] +12:37:31 [ 70] [ 3] [301] +12:37:31 ============================================================================ +12:37:31 + + +waiting on router queue for slot.... +12:37:31 Sending to : +12:37:31 ============================================================================ +12:37:31 ============================================================================ +12:37:31 Slot Id : <406> +12:37:31 Transaction Type : RESPONSE +12:37:31 Received From : +12:37:31 ============================================================================ +12:37:31 FNo. Len. Field Value +12:37:31 ============================================================================ +12:37:31 [ 1] [ 4] [0810] +12:37:31 [ 7] [ 10] [0320053639] +12:37:31 [ 11] [ 6] [156347] +12:37:31 [ 39] [ 2] [00] +12:37:31 [ 70] [ 3] [301] +12:37:31 ============================================================================ +12:37:31 Calculate Source COMM Id = 2 +12:37:31 ============================================================================ +12:37:31 + + +waiting on router queue for slot.... +12:37:48 ============================================================================ +12:37:48 Slot Id : <411> +12:37:48 Transaction Type : REQUEST +12:37:48 Received From : +12:37:48 ============================================================================ +12:37:48 FNo. Len. Field Value +12:37:48 ============================================================================ +12:37:48 [ 1] [ 4] [0800] +12:37:48 [ 7] [ 10] [0320053655] +12:37:48 [ 11] [ 6] [156348] +12:37:48 [ 70] [ 3] [301] +12:37:48 ============================================================================ +12:37:48 + + +waiting on router queue for slot.... +12:37:48 Sending to : +12:37:48 ============================================================================ +12:37:48 ============================================================================ +12:37:48 Slot Id : <411> +12:37:48 Transaction Type : RESPONSE +12:37:48 Received From : +12:37:48 ============================================================================ +12:37:48 FNo. Len. Field Value +12:37:48 ============================================================================ +12:37:48 [ 1] [ 4] [0810] +12:37:48 [ 7] [ 10] [0320053655] +12:37:48 [ 11] [ 6] [156348] +12:37:48 [ 39] [ 2] [00] +12:37:48 [ 70] [ 3] [301] +12:37:48 ============================================================================ +12:37:48 Calculate Source COMM Id = 2 +12:37:48 ============================================================================ +12:37:48 + + +waiting on router queue for slot.... +12:38:01 ============================================================================ +12:38:01 Slot Id : <407> +12:38:01 Transaction Type : REQUEST +12:38:01 Received From : +12:38:01 ============================================================================ +12:38:01 FNo. Len. Field Value +12:38:01 ============================================================================ +12:38:01 [ 1] [ 4] [0800] +12:38:01 [ 7] [ 10] [0320053707] +12:38:01 [ 11] [ 6] [156349] +12:38:01 [ 70] [ 3] [301] +12:38:01 ============================================================================ +12:38:01 + + +waiting on router queue for slot.... +12:38:01 Sending to : +12:38:01 ============================================================================ +12:38:01 ============================================================================ +12:38:01 Slot Id : <407> +12:38:01 Transaction Type : RESPONSE +12:38:01 Received From : +12:38:01 ============================================================================ +12:38:01 FNo. Len. Field Value +12:38:01 ============================================================================ +12:38:01 [ 1] [ 4] [0810] +12:38:01 [ 7] [ 10] [0320053707] +12:38:01 [ 11] [ 6] [156349] +12:38:01 [ 39] [ 2] [00] +12:38:01 [ 70] [ 3] [301] +12:38:01 ============================================================================ +12:38:01 Calculate Source COMM Id = 2 +12:38:01 ============================================================================ +12:38:01 + + +waiting on router queue for slot.... +12:38:03 ============================================================================ +12:38:03 Slot Id : <380> +12:38:03 Transaction Type : REQUEST +12:38:03 Received From : +12:38:03 ============================================================================ +12:38:03 FNo. Len. Field Value +12:38:03 ============================================================================ +12:38:03 [ 1] [ 4] [0200] +12:38:03 [ 2] [ 16] [6213545000887566] +12:38:03 [ 3] [ 6] [310000] +12:38:03 [ 4] [ 12] [000000000000] +12:38:03 [ 7] [ 10] [0320124550] +12:38:03 [ 11] [ 6] [379635] +12:38:03 [ 12] [ 6] [124550] +12:38:03 [ 13] [ 4] [0320] +12:38:03 [ 14] [ 4] [4912] +12:38:03 [ 15] [ 4] [0320] +12:38:03 [ 18] [ 4] [6011] +12:38:03 [ 22] [ 3] [900] +12:38:03 [ 25] [ 2] [02] +12:38:03 [ 28] [ 9] [000000000] +12:38:03 [ 32] [ 6] [220699] +12:38:03 [ 35] [ 32] [6213545000887566=491212018756298] +12:38:03 [ 37] [ 12] [507900165764] +12:38:03 [ 41] [ 8] [06000100] +12:38:03 [ 42] [ 15] [APTRA ] +12:38:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:38:03 [ 49] [ 3] [418] +12:38:03 [ 52] [ 16] [91F45BC5106AB84F] +12:38:03 ============================================================================ +12:38:03 + + +waiting on router queue for slot.... +12:38:03 Sending to : +12:38:03 ============================================================================ +12:38:03 Sending to : +12:38:03 ============================================================================ +12:38:03 ============================================================================ +12:38:03 Slot Id : <380> +12:38:03 Transaction Type : REQUEST +12:38:03 Received From : +12:38:03 ============================================================================ +12:38:03 FNo. Len. Field Value +12:38:03 ============================================================================ +12:38:03 [ 1] [ 4] [0200] +12:38:03 [ 2] [ 16] [6213545000887566] +12:38:03 [ 3] [ 6] [310000] +12:38:03 [ 4] [ 12] [000000000000] +12:38:03 [ 7] [ 10] [0320124550] +12:38:03 [ 11] [ 6] [379635] +12:38:03 [ 12] [ 6] [124550] +12:38:03 [ 13] [ 4] [0320] +12:38:03 [ 14] [ 4] [4912] +12:38:03 [ 15] [ 4] [0320] +12:38:03 [ 18] [ 4] [6011] +12:38:03 [ 22] [ 3] [900] +12:38:03 [ 25] [ 2] [02] +12:38:03 [ 28] [ 9] [000000000] +12:38:03 [ 32] [ 6] [220699] +12:38:03 [ 35] [ 32] [6213545000887566=491212018756298] +12:38:03 [ 37] [ 12] [507900165764] +12:38:03 [ 41] [ 8] [06000100] +12:38:03 [ 42] [ 15] [APTRA ] +12:38:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:38:03 [ 49] [ 3] [418] +12:38:03 [ 52] [ 16] [91F45BC5106AB84F] +12:38:03 ============================================================================ +12:38:03 + + +waiting on router queue for slot.... +12:38:03 Sending to : +12:38:03 ============================================================================ +12:38:03 ============================================================================ +12:38:03 Slot Id : <380> +12:38:03 Transaction Type : REQUEST +12:38:03 Received From : +12:38:03 ============================================================================ +12:38:03 FNo. Len. Field Value +12:38:03 ============================================================================ +12:38:03 [ 1] [ 4] [0200] +12:38:03 [ 2] [ 16] [6213545000887566] +12:38:03 [ 3] [ 6] [310000] +12:38:03 [ 4] [ 12] [000000000000] +12:38:03 [ 7] [ 10] [0320124550] +12:38:03 [ 11] [ 6] [379635] +12:38:03 [ 12] [ 6] [124550] +12:38:03 [ 13] [ 4] [0320] +12:38:03 [ 14] [ 4] [4912] +12:38:03 [ 15] [ 4] [0320] +12:38:03 [ 18] [ 4] [6011] +12:38:03 [ 22] [ 3] [900] +12:38:03 [ 25] [ 2] [02] +12:38:03 [ 28] [ 9] [000000000] +12:38:03 [ 32] [ 6] [220699] +12:38:03 [ 35] [ 32] [6213545000887566=491212018756298] +12:38:03 [ 37] [ 12] [507900165764] +12:38:03 [ 41] [ 8] [06000100] +12:38:03 [ 42] [ 15] [APTRA ] +12:38:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:38:03 [ 49] [ 3] [418] +12:38:03 [ 52] [ 16] [3F9A21ECE8C8C475] +12:38:03 ============================================================================ +12:38:03 + + +waiting on router queue for slot.... +12:38:03 Sending to : <0> +12:38:03 ============================================================================ +12:38:03 ============================================================================ +12:38:03 Slot Id : <384> +12:38:03 Transaction Type : REQUEST +12:38:03 Received From : +12:38:03 ============================================================================ +12:38:03 FNo. Len. Field Value +12:38:03 ============================================================================ +12:38:03 [ 1] [ 4] [0200] +12:38:03 [ 2] [ 16] [6213545000452478] +12:38:03 [ 3] [ 6] [311000] +12:38:03 [ 4] [ 12] [000000000000] +12:38:03 [ 7] [ 10] [0320124551] +12:38:03 [ 11] [ 6] [168937] +12:38:03 [ 12] [ 6] [124551] +12:38:03 [ 13] [ 4] [0320] +12:38:03 [ 14] [ 4] [4912] +12:38:03 [ 15] [ 4] [0320] +12:38:03 [ 18] [ 4] [6011] +12:38:03 [ 22] [ 3] [900] +12:38:03 [ 25] [ 2] [02] +12:38:03 [ 28] [ 9] [000000000] +12:38:03 [ 32] [ 6] [220699] +12:38:03 [ 35] [ 32] [6213545000452478=491212015247506] +12:38:03 [ 37] [ 12] [507900026352] +12:38:03 [ 41] [ 8] [01000200] +12:38:03 [ 42] [ 15] [APTRA ] +12:38:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:38:03 [ 49] [ 3] [418] +12:38:03 [ 52] [ 16] [B601FE65978DFE2A] +12:38:03 ============================================================================ +12:38:03 + + +waiting on router queue for slot.... +12:38:03 Sending to : +12:38:03 ============================================================================ +12:38:03 Sending to : +12:38:03 ============================================================================ +12:38:03 ============================================================================ +12:38:03 Slot Id : <380> +12:38:03 Transaction Type : RESPONSE +12:38:03 Received From : +12:38:03 ============================================================================ +12:38:03 FNo. Len. Field Value +12:38:03 ============================================================================ +12:38:03 [ 1] [ 4] [0210] +12:38:03 [ 2] [ 16] [6213545000887566] +12:38:03 [ 3] [ 6] [310000] +12:38:03 [ 4] [ 12] [000000000000] +12:38:03 [ 7] [ 10] [0320124550] +12:38:03 [ 11] [ 6] [379635] +12:38:03 [ 12] [ 6] [124550] +12:38:03 [ 13] [ 4] [0320] +12:38:03 [ 15] [ 4] [0320] +12:38:03 [ 18] [ 4] [6011] +12:38:03 [ 32] [ 6] [220699] +12:38:03 [ 35] [ 32] [6213545000887566=491212018756298] +12:38:03 [ 37] [ 12] [507900165764] +12:38:03 [ 38] [ 6] [352560] +12:38:03 [ 39] [ 2] [00] +12:38:03 [ 41] [ 8] [06000100] +12:38:03 [ 49] [ 3] [418] +12:38:03 [ 54] [ 40] [0001418C0001883170710002418C000188317071] +12:38:03 ============================================================================ +12:38:03 Sending to : +12:38:03 ============================================================================ +12:38:03 + + +waiting on router queue for slot.... +12:38:04 ============================================================================ +12:38:04 Slot Id : <384> +12:38:04 Transaction Type : REQUEST +12:38:04 Received From : +12:38:04 ============================================================================ +12:38:04 FNo. Len. Field Value +12:38:04 ============================================================================ +12:38:04 [ 1] [ 4] [0200] +12:38:04 [ 2] [ 16] [6213545000452478] +12:38:04 [ 3] [ 6] [311000] +12:38:04 [ 4] [ 12] [000000000000] +12:38:04 [ 7] [ 10] [0320124551] +12:38:04 [ 11] [ 6] [168937] +12:38:04 [ 12] [ 6] [124551] +12:38:04 [ 13] [ 4] [0320] +12:38:04 [ 14] [ 4] [4912] +12:38:04 [ 15] [ 4] [0320] +12:38:04 [ 18] [ 4] [6011] +12:38:04 [ 22] [ 3] [900] +12:38:04 [ 25] [ 2] [02] +12:38:04 [ 28] [ 9] [000000000] +12:38:04 [ 32] [ 6] [220699] +12:38:04 [ 35] [ 32] [6213545000452478=491212015247506] +12:38:04 [ 37] [ 12] [507900026352] +12:38:04 [ 41] [ 8] [01000200] +12:38:04 [ 42] [ 15] [APTRA ] +12:38:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:38:04 [ 49] [ 3] [418] +12:38:04 [ 52] [ 16] [B601FE65978DFE2A] +12:38:04 ============================================================================ +12:38:04 + + +waiting on router queue for slot.... +12:38:04 Sending to : +12:38:04 ============================================================================ +12:38:04 ============================================================================ +12:38:04 Slot Id : <384> +12:38:04 Transaction Type : REQUEST +12:38:04 Received From : +12:38:04 ============================================================================ +12:38:04 FNo. Len. Field Value +12:38:04 ============================================================================ +12:38:04 [ 1] [ 4] [0200] +12:38:04 [ 2] [ 16] [6213545000452478] +12:38:04 [ 3] [ 6] [311000] +12:38:04 [ 4] [ 12] [000000000000] +12:38:04 [ 7] [ 10] [0320124551] +12:38:04 [ 11] [ 6] [168937] +12:38:04 [ 12] [ 6] [124551] +12:38:04 [ 13] [ 4] [0320] +12:38:04 [ 14] [ 4] [4912] +12:38:04 [ 15] [ 4] [0320] +12:38:04 [ 18] [ 4] [6011] +12:38:04 [ 22] [ 3] [900] +12:38:04 [ 25] [ 2] [02] +12:38:04 [ 28] [ 9] [000000000] +12:38:04 [ 32] [ 6] [220699] +12:38:04 [ 35] [ 32] [6213545000452478=491212015247506] +12:38:04 [ 37] [ 12] [507900026352] +12:38:04 [ 41] [ 8] [01000200] +12:38:04 [ 42] [ 15] [APTRA ] +12:38:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:38:04 [ 49] [ 3] [418] +12:38:04 [ 52] [ 16] [03BEBEFF154D05E2] +12:38:04 ============================================================================ +12:38:04 + + +waiting on router queue for slot.... +12:38:04 Sending to : <0> +12:38:04 ============================================================================ +12:38:04 ============================================================================ +12:38:04 Slot Id : <384> +12:38:04 Transaction Type : RESPONSE +12:38:04 Received From : +12:38:04 ============================================================================ +12:38:04 FNo. Len. Field Value +12:38:04 ============================================================================ +12:38:04 [ 1] [ 4] [0210] +12:38:04 [ 2] [ 16] [6213545000452478] +12:38:04 [ 3] [ 6] [311000] +12:38:04 [ 4] [ 12] [000000000000] +12:38:04 [ 7] [ 10] [0320124551] +12:38:04 [ 11] [ 6] [168937] +12:38:04 [ 12] [ 6] [124551] +12:38:04 [ 13] [ 4] [0320] +12:38:04 [ 15] [ 4] [0320] +12:38:04 [ 18] [ 4] [6011] +12:38:04 [ 32] [ 6] [220699] +12:38:04 [ 35] [ 32] [6213545000452478=491212015247506] +12:38:04 [ 37] [ 12] [507900026352] +12:38:04 [ 38] [ 6] [763944] +12:38:04 [ 39] [ 2] [00] +12:38:04 [ 41] [ 8] [01000200] +12:38:04 [ 49] [ 3] [418] +12:38:04 [ 54] [ 40] [1001418C0001056522391002418C000105652239] +12:38:04 ============================================================================ +12:38:04 Sending to : +12:38:04 ============================================================================ +12:38:04 + + +waiting on router queue for slot.... +12:38:04 ============================================================================ +12:38:04 Slot Id : <416> +12:38:04 Transaction Type : REQUEST +12:38:04 Received From : +12:38:04 ============================================================================ +12:38:04 FNo. Len. Field Value +12:38:04 ============================================================================ +12:38:04 [ 1] [ 4] [0800] +12:38:04 [ 2] [ 5] [02531] +12:38:04 [ 3] [ 6] [579128] +12:38:04 [ 7] [ 10] [0320053804] +12:38:04 [ 11] [ 6] [807145] +12:38:04 [ 15] [ 10] [0320053804] +12:38:04 [ 37] [ 11] [57912807145] +12:38:04 [ 70] [ 3] [001] +12:38:04 ============================================================================ +12:38:04 + + +waiting on router queue for slot.... +12:38:04 ============================================================================ +12:38:04 Slot Id : <416> +12:38:04 Transaction Type : RESPONSE +12:38:04 Received From : +12:38:04 ============================================================================ +12:38:04 FNo. Len. Field Value +12:38:04 ============================================================================ +12:38:04 [ 1] [ 4] [0810] +12:38:04 [ 7] [ 10] [0320053804] +12:38:04 [ 11] [ 6] [807145] +12:38:04 [ 15] [ 4] [0320] +12:38:04 [ 37] [ 12] [57912807145] +12:38:04 [ 39] [ 2] [00] +12:38:04 [ 70] [ 3] [001] +12:38:04 ============================================================================ +12:38:04 Sending to : +12:38:04 ============================================================================ +12:38:04 + + +waiting on router queue for slot.... +12:38:05 ============================================================================ +12:38:05 Slot Id : <380> +12:38:05 Transaction Type : RESPONSE +12:38:05 Received From : +12:38:05 ============================================================================ +12:38:05 FNo. Len. Field Value +12:38:05 ============================================================================ +12:38:05 [ 1] [ 4] [0210] +12:38:05 [ 2] [ 16] [6213545000887566] +12:38:05 [ 3] [ 6] [310000] +12:38:05 [ 4] [ 12] [000000000000] +12:38:05 [ 7] [ 10] [0320124550] +12:38:05 [ 11] [ 6] [379635] +12:38:05 [ 12] [ 6] [124550] +12:38:05 [ 13] [ 4] [0320] +12:38:05 [ 15] [ 4] [0320] +12:38:05 [ 18] [ 4] [6011] +12:38:05 [ 32] [ 6] [220699] +12:38:05 [ 35] [ 32] [6213545000887566=491212018756298] +12:38:05 [ 37] [ 12] [507900165764] +12:38:05 [ 38] [ 6] [352560] +12:38:05 [ 39] [ 2] [00] +12:38:05 [ 41] [ 8] [06000100] +12:38:05 [ 49] [ 3] [418] +12:38:05 [ 54] [ 40] [0001418C0001883170710002418C000188317071] +12:38:05 ============================================================================ +12:38:05 Calculate Source COMM Id = 1 +12:38:05 ============================================================================ +12:38:05 + + +waiting on router queue for slot.... +12:38:07 ============================================================================ +12:38:07 Slot Id : <384> +12:38:07 Transaction Type : RESPONSE +12:38:07 Received From : +12:38:07 ============================================================================ +12:38:07 FNo. Len. Field Value +12:38:07 ============================================================================ +12:38:07 [ 1] [ 4] [0210] +12:38:07 [ 2] [ 16] [6213545000452478] +12:38:07 [ 3] [ 6] [311000] +12:38:07 [ 4] [ 12] [000000000000] +12:38:07 [ 7] [ 10] [0320124551] +12:38:07 [ 11] [ 6] [168937] +12:38:07 [ 12] [ 6] [124551] +12:38:07 [ 13] [ 4] [0320] +12:38:07 [ 15] [ 4] [0320] +12:38:07 [ 18] [ 4] [6011] +12:38:07 [ 32] [ 6] [220699] +12:38:07 [ 35] [ 32] [6213545000452478=491212015247506] +12:38:07 [ 37] [ 12] [507900026352] +12:38:07 [ 38] [ 6] [763944] +12:38:07 [ 39] [ 2] [00] +12:38:07 [ 41] [ 8] [01000200] +12:38:07 [ 49] [ 3] [418] +12:38:07 [ 54] [ 40] [1001418C0001056522391002418C000105652239] +12:38:07 ============================================================================ +12:38:07 Calculate Source COMM Id = 1 +12:38:07 ============================================================================ +12:38:07 + + +waiting on router queue for slot.... +12:38:07 ============================================================================ +12:38:07 Slot Id : <420> +12:38:07 Transaction Type : REQUEST +12:38:07 Received From : +12:38:07 ============================================================================ +12:38:07 FNo. Len. Field Value +12:38:07 ============================================================================ +12:38:07 [ 1] [ 4] [0200] +12:38:07 [ 2] [ 16] [6213548000299006] +12:38:07 [ 3] [ 6] [010000] +12:38:07 [ 4] [ 12] [000004000000] +12:38:07 [ 7] [ 10] [0320124554] +12:38:07 [ 11] [ 6] [254857] +12:38:07 [ 12] [ 6] [124554] +12:38:07 [ 13] [ 4] [0320] +12:38:07 [ 14] [ 4] [1803] +12:38:07 [ 15] [ 4] [0320] +12:38:07 [ 18] [ 4] [6011] +12:38:07 [ 22] [ 3] [900] +12:38:07 [ 25] [ 2] [02] +12:38:07 [ 28] [ 9] [D00002000] +12:38:07 [ 32] [ 6] [220699] +12:38:07 [ 35] [ 32] [6213548000299006=180312019900802] +12:38:07 [ 37] [ 12] [507900094422] +12:38:07 [ 41] [ 8] [01000900] +12:38:07 [ 42] [ 15] [APTRA ] +12:38:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:38:07 [ 49] [ 3] [418] +12:38:07 [ 52] [ 16] [22835D72EE81FF68] +12:38:07 ============================================================================ +12:38:07 + + +waiting on router queue for slot.... +12:38:07 Sending to : +12:38:07 ============================================================================ +12:38:07 Sending to : +12:38:07 ============================================================================ +12:38:07 ============================================================================ +12:38:07 Slot Id : <420> +12:38:07 Transaction Type : REQUEST +12:38:07 Received From : +12:38:07 ============================================================================ +12:38:07 FNo. Len. Field Value +12:38:07 ============================================================================ +12:38:07 [ 1] [ 4] [0200] +12:38:07 [ 2] [ 16] [6213548000299006] +12:38:07 [ 3] [ 6] [010000] +12:38:07 [ 4] [ 12] [000004000000] +12:38:07 [ 7] [ 10] [0320124554] +12:38:07 [ 11] [ 6] [254857] +12:38:07 [ 12] [ 6] [124554] +12:38:07 [ 13] [ 4] [0320] +12:38:07 [ 14] [ 4] [1803] +12:38:07 [ 15] [ 4] [0320] +12:38:07 [ 18] [ 4] [6011] +12:38:07 [ 22] [ 3] [900] +12:38:07 [ 25] [ 2] [02] +12:38:07 [ 28] [ 9] [D00002000] +12:38:07 [ 32] [ 6] [220699] +12:38:07 [ 35] [ 32] [6213548000299006=180312019900802] +12:38:07 [ 37] [ 12] [507900094422] +12:38:07 [ 41] [ 8] [01000900] +12:38:07 [ 42] [ 15] [APTRA ] +12:38:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:38:07 [ 49] [ 3] [418] +12:38:07 [ 52] [ 16] [22835D72EE81FF68] +12:38:07 ============================================================================ +12:38:07 + + +waiting on router queue for slot.... +12:38:07 Sending to : +12:38:07 ============================================================================ +12:38:07 ============================================================================ +12:38:07 Slot Id : <420> +12:38:07 Transaction Type : REQUEST +12:38:07 Received From : +12:38:07 ============================================================================ +12:38:07 FNo. Len. Field Value +12:38:07 ============================================================================ +12:38:07 [ 1] [ 4] [0200] +12:38:07 [ 2] [ 16] [6213548000299006] +12:38:07 [ 3] [ 6] [010000] +12:38:07 [ 4] [ 12] [000004000000] +12:38:07 [ 7] [ 10] [0320124554] +12:38:07 [ 11] [ 6] [254857] +12:38:07 [ 12] [ 6] [124554] +12:38:07 [ 13] [ 4] [0320] +12:38:07 [ 14] [ 4] [1803] +12:38:07 [ 15] [ 4] [0320] +12:38:07 [ 18] [ 4] [6011] +12:38:07 [ 22] [ 3] [900] +12:38:07 [ 25] [ 2] [02] +12:38:07 [ 28] [ 9] [D00002000] +12:38:07 [ 32] [ 6] [220699] +12:38:07 [ 35] [ 32] [6213548000299006=180312019900802] +12:38:07 [ 37] [ 12] [507900094422] +12:38:07 [ 41] [ 8] [01000900] +12:38:07 [ 42] [ 15] [APTRA ] +12:38:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:38:07 [ 49] [ 3] [418] +12:38:07 [ 52] [ 16] [591DE44F4A8510CA] +12:38:07 ============================================================================ +12:38:07 + + +waiting on router queue for slot.... +12:38:07 Sending to : <0> +12:38:07 ============================================================================ +12:38:09 ============================================================================ +12:38:09 Slot Id : <420> +12:38:09 Transaction Type : RESPONSE +12:38:09 Received From : +12:38:09 ============================================================================ +12:38:09 FNo. Len. Field Value +12:38:09 ============================================================================ +12:38:09 [ 1] [ 4] [0210] +12:38:09 [ 2] [ 16] [6213548000299006] +12:38:09 [ 3] [ 6] [010000] +12:38:09 [ 4] [ 12] [000004000000] +12:38:09 [ 7] [ 10] [0320124554] +12:38:09 [ 11] [ 6] [254857] +12:38:09 [ 12] [ 6] [124554] +12:38:09 [ 13] [ 4] [0320] +12:38:09 [ 15] [ 4] [0320] +12:38:09 [ 18] [ 4] [6011] +12:38:09 [ 32] [ 6] [220699] +12:38:09 [ 35] [ 32] [6213548000299006=180312019900802] +12:38:09 [ 37] [ 12] [507900094422] +12:38:09 [ 38] [ 6] [264022] +12:38:09 [ 39] [ 2] [00] +12:38:09 [ 41] [ 8] [01000900] +12:38:09 [ 49] [ 3] [418] +12:38:09 [ 54] [ 40] [0001418C0000056065980002418C000005606598] +12:38:09 ============================================================================ +12:38:09 Sending to : +12:38:09 ============================================================================ +12:38:09 + + +waiting on router queue for slot.... +12:38:11 ============================================================================ +12:38:11 Slot Id : <420> +12:38:11 Transaction Type : RESPONSE +12:38:11 Received From : +12:38:11 ============================================================================ +12:38:11 FNo. Len. Field Value +12:38:11 ============================================================================ +12:38:11 [ 1] [ 4] [0210] +12:38:11 [ 2] [ 16] [6213548000299006] +12:38:11 [ 3] [ 6] [010000] +12:38:11 [ 4] [ 12] [000004000000] +12:38:11 [ 7] [ 10] [0320124554] +12:38:11 [ 11] [ 6] [254857] +12:38:11 [ 12] [ 6] [124554] +12:38:11 [ 13] [ 4] [0320] +12:38:11 [ 15] [ 4] [0320] +12:38:11 [ 18] [ 4] [6011] +12:38:11 [ 32] [ 6] [220699] +12:38:11 [ 35] [ 32] [6213548000299006=180312019900802] +12:38:11 [ 37] [ 12] [507900094422] +12:38:11 [ 38] [ 6] [264022] +12:38:11 [ 39] [ 2] [00] +12:38:11 [ 41] [ 8] [01000900] +12:38:11 [ 49] [ 3] [418] +12:38:11 [ 54] [ 40] [0001418C0000056065980002418C000005606598] +12:38:11 ============================================================================ +12:38:11 Calculate Source COMM Id = 1 +12:38:11 ============================================================================ +12:38:11 + + +waiting on router queue for slot.... +12:38:15 ============================================================================ +12:38:15 Slot Id : <381> +12:38:15 Transaction Type : REQUEST +12:38:15 Received From : +12:38:15 ============================================================================ +12:38:15 FNo. Len. Field Value +12:38:15 ============================================================================ +12:38:15 [ 1] [ 4] [0800] +12:38:15 [ 7] [ 10] [0320053723] +12:38:15 [ 11] [ 6] [156350] +12:38:15 [ 70] [ 3] [301] +12:38:15 ============================================================================ +12:38:15 + + +waiting on router queue for slot.... +12:38:15 Sending to : +12:38:15 ============================================================================ +12:38:15 ============================================================================ +12:38:15 Slot Id : <381> +12:38:15 Transaction Type : RESPONSE +12:38:15 Received From : +12:38:15 ============================================================================ +12:38:15 FNo. Len. Field Value +12:38:15 ============================================================================ +12:38:15 [ 1] [ 4] [0810] +12:38:15 [ 7] [ 10] [0320053723] +12:38:15 [ 11] [ 6] [156350] +12:38:15 [ 39] [ 2] [00] +12:38:15 [ 70] [ 3] [301] +12:38:15 ============================================================================ +12:38:15 Calculate Source COMM Id = 2 +12:38:15 ============================================================================ +12:38:15 + + +waiting on router queue for slot.... +12:38:26 ============================================================================ +12:38:26 Slot Id : <415> +12:38:26 Transaction Type : REQUEST +12:38:26 Received From : +12:38:26 ============================================================================ +12:38:26 FNo. Len. Field Value +12:38:26 ============================================================================ +12:38:26 [ 1] [ 4] [0200] +12:38:26 [ 2] [ 16] [6213545000354070] +12:38:26 [ 3] [ 6] [010000] +12:38:26 [ 4] [ 12] [000010000000] +12:38:26 [ 7] [ 10] [0320123617] +12:38:26 [ 11] [ 6] [944618] +12:38:26 [ 12] [ 6] [123617] +12:38:26 [ 13] [ 4] [0320] +12:38:26 [ 15] [ 4] [0320] +12:38:26 [ 18] [ 4] [6011] +12:38:26 [ 19] [ 3] [418] +12:38:26 [ 22] [ 3] [021] +12:38:26 [ 25] [ 2] [01] +12:38:26 [ 28] [ 9] [D00002000] +12:38:26 [ 32] [ 6] [668899] +12:38:26 [ 35] [ 32] [6213545000354070=491212015407860] +12:38:26 [ 37] [ 12] [507900823531] +12:38:26 [ 41] [ 8] [03015001] +12:38:26 [ 42] [ 15] [APT ] +12:38:26 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +12:38:26 [ 49] [ 3] [418] +12:38:26 [ 52] [ 16] [0CEB0FBBD3C44012] +12:38:26 ============================================================================ +12:38:26 + + +waiting on router queue for slot.... +12:38:26 Sending to : +12:38:26 ============================================================================ +12:38:26 Sending to : +12:38:26 ============================================================================ +12:38:26 ============================================================================ +12:38:26 Slot Id : <401> +12:38:26 Transaction Type : REQUEST +12:38:26 Received From : +12:38:26 ============================================================================ +12:38:26 FNo. Len. Field Value +12:38:26 ============================================================================ +12:38:26 [ 1] [ 4] [0800] +12:38:26 [ 7] [ 10] [0320053734] +12:38:26 [ 11] [ 6] [156351] +12:38:26 [ 70] [ 3] [301] +12:38:26 ============================================================================ +12:38:26 + + +waiting on router queue for slot.... +12:38:26 Sending to : +12:38:26 ============================================================================ +12:38:26 ============================================================================ +12:38:26 Slot Id : <401> +12:38:26 Transaction Type : RESPONSE +12:38:26 Received From : +12:38:26 ============================================================================ +12:38:26 FNo. Len. Field Value +12:38:26 ============================================================================ +12:38:26 [ 1] [ 4] [0810] +12:38:26 [ 7] [ 10] [0320053734] +12:38:26 [ 11] [ 6] [156351] +12:38:26 [ 39] [ 2] [00] +12:38:26 [ 70] [ 3] [301] +12:38:26 ============================================================================ +12:38:26 Calculate Source COMM Id = 2 +12:38:26 ============================================================================ +12:38:26 + + +waiting on router queue for slot.... +12:38:26 ============================================================================ +12:38:26 Slot Id : <415> +12:38:26 Transaction Type : REQUEST +12:38:26 Received From : +12:38:26 ============================================================================ +12:38:26 FNo. Len. Field Value +12:38:26 ============================================================================ +12:38:26 [ 1] [ 4] [0200] +12:38:26 [ 2] [ 16] [6213545000354070] +12:38:26 [ 3] [ 6] [010000] +12:38:26 [ 4] [ 12] [000010000000] +12:38:26 [ 7] [ 10] [0320123617] +12:38:26 [ 11] [ 6] [944618] +12:38:26 [ 12] [ 6] [123617] +12:38:26 [ 13] [ 4] [0320] +12:38:26 [ 15] [ 4] [0320] +12:38:26 [ 18] [ 4] [6011] +12:38:26 [ 19] [ 3] [418] +12:38:26 [ 22] [ 3] [021] +12:38:26 [ 25] [ 2] [01] +12:38:26 [ 28] [ 9] [D00002000] +12:38:26 [ 32] [ 6] [668899] +12:38:26 [ 35] [ 32] [6213545000354070=491212015407860] +12:38:26 [ 37] [ 12] [507900823531] +12:38:26 [ 41] [ 8] [03015001] +12:38:26 [ 42] [ 15] [APT ] +12:38:26 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +12:38:26 [ 49] [ 3] [418] +12:38:26 [ 52] [ 16] [0CEB0FBBD3C44012] +12:38:26 ============================================================================ +12:38:26 + + +waiting on router queue for slot.... +12:38:26 Sending to : +12:38:26 ============================================================================ +12:38:26 ============================================================================ +12:38:26 Slot Id : <415> +12:38:26 Transaction Type : REQUEST +12:38:26 Received From : +12:38:26 ============================================================================ +12:38:26 FNo. Len. Field Value +12:38:26 ============================================================================ +12:38:26 [ 1] [ 4] [0200] +12:38:26 [ 2] [ 16] [6213545000354070] +12:38:26 [ 3] [ 6] [010000] +12:38:26 [ 4] [ 12] [000010000000] +12:38:26 [ 7] [ 10] [0320123617] +12:38:26 [ 11] [ 6] [944618] +12:38:26 [ 12] [ 6] [123617] +12:38:26 [ 13] [ 4] [0320] +12:38:26 [ 15] [ 4] [0320] +12:38:26 [ 18] [ 4] [6011] +12:38:26 [ 19] [ 3] [418] +12:38:26 [ 22] [ 3] [021] +12:38:26 [ 25] [ 2] [01] +12:38:26 [ 28] [ 9] [D00002000] +12:38:26 [ 32] [ 6] [668899] +12:38:26 [ 35] [ 32] [6213545000354070=491212015407860] +12:38:26 [ 37] [ 12] [507900823531] +12:38:26 [ 41] [ 8] [03015001] +12:38:26 [ 42] [ 15] [APT ] +12:38:26 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +12:38:26 [ 49] [ 3] [418] +12:38:26 [ 52] [ 16] [1CB33F62D56469A0] +12:38:26 ============================================================================ +12:38:26 + + +waiting on router queue for slot.... +12:38:26 Sending to : <0> +12:38:26 ============================================================================ +12:38:27 ============================================================================ +12:38:27 Slot Id : <415> +12:38:27 Transaction Type : RESPONSE +12:38:27 Received From : +12:38:27 ============================================================================ +12:38:27 FNo. Len. Field Value +12:38:27 ============================================================================ +12:38:27 [ 1] [ 4] [0210] +12:38:27 [ 2] [ 16] [6213545000354070] +12:38:27 [ 3] [ 6] [010000] +12:38:27 [ 4] [ 12] [000010000000] +12:38:27 [ 7] [ 10] [0320123617] +12:38:27 [ 11] [ 6] [944618] +12:38:27 [ 12] [ 6] [123617] +12:38:27 [ 13] [ 4] [0320] +12:38:27 [ 15] [ 4] [0320] +12:38:27 [ 18] [ 4] [6011] +12:38:27 [ 19] [ 3] [418] +12:38:27 [ 32] [ 6] [668899] +12:38:27 [ 35] [ 32] [6213545000354070=491212015407860] +12:38:27 [ 37] [ 12] [507900823531] +12:38:27 [ 38] [ 6] [944618] +12:38:27 [ 39] [ 2] [51] +12:38:27 [ 41] [ 8] [03015001] +12:38:27 [ 49] [ 3] [418] +12:38:27 [ 54] [ 40] [0001418C0000068061790002418C000006806179] +12:38:27 ============================================================================ +12:38:27 Sending to : +12:38:27 ============================================================================ +12:38:27 + + +waiting on router queue for slot.... +12:38:28 ============================================================================ +12:38:28 Slot Id : <415> +12:38:28 Transaction Type : RESPONSE +12:38:28 Received From : +12:38:28 ============================================================================ +12:38:28 FNo. Len. Field Value +12:38:28 ============================================================================ +12:38:28 [ 1] [ 4] [0210] +12:38:28 [ 2] [ 16] [6213545000354070] +12:38:28 [ 3] [ 6] [010000] +12:38:28 [ 4] [ 12] [000010000000] +12:38:28 [ 7] [ 10] [0320123617] +12:38:28 [ 11] [ 6] [944618] +12:38:28 [ 12] [ 6] [123617] +12:38:28 [ 13] [ 4] [0320] +12:38:28 [ 15] [ 4] [0320] +12:38:28 [ 18] [ 4] [6011] +12:38:28 [ 19] [ 3] [418] +12:38:28 [ 32] [ 6] [668899] +12:38:28 [ 35] [ 32] [6213545000354070=491212015407860] +12:38:28 [ 37] [ 12] [507900823531] +12:38:28 [ 38] [ 6] [944618] +12:38:28 [ 39] [ 2] [51] +12:38:28 [ 41] [ 8] [03015001] +12:38:28 [ 49] [ 3] [418] +12:38:28 [ 54] [ 40] [0001418C0000068061790002418C000006806179] +12:38:28 ============================================================================ +12:38:28 Calculate Source COMM Id = 4 +12:38:28 ============================================================================ +12:38:28 + + +waiting on router queue for slot.... +12:38:38 ============================================================================ +12:38:38 Slot Id : <398> +12:38:38 Transaction Type : REQUEST +12:38:38 Received From : +12:38:38 ============================================================================ +12:38:38 FNo. Len. Field Value +12:38:38 ============================================================================ +12:38:38 [ 1] [ 4] [0200] +12:38:38 [ 2] [ 16] [6213545000452478] +12:38:38 [ 3] [ 6] [011000] +12:38:38 [ 4] [ 12] [000100000000] +12:38:38 [ 7] [ 10] [0320124625] +12:38:38 [ 11] [ 6] [168938] +12:38:38 [ 12] [ 6] [124625] +12:38:38 [ 13] [ 4] [0320] +12:38:38 [ 14] [ 4] [4912] +12:38:38 [ 15] [ 4] [0320] +12:38:38 [ 18] [ 4] [6011] +12:38:38 [ 22] [ 3] [900] +12:38:38 [ 25] [ 2] [02] +12:38:38 [ 28] [ 9] [D00002000] +12:38:38 [ 32] [ 6] [220699] +12:38:38 [ 35] [ 32] [6213545000452478=491212015247506] +12:38:38 [ 37] [ 12] [507900026353] +12:38:38 [ 41] [ 8] [01000200] +12:38:38 [ 42] [ 15] [APTRA ] +12:38:38 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:38:38 [ 49] [ 3] [418] +12:38:38 [ 52] [ 16] [B601FE65978DFE2A] +12:38:38 ============================================================================ +12:38:38 + + +waiting on router queue for slot.... +12:38:38 Sending to : +12:38:38 ============================================================================ +12:38:38 Sending to : +12:38:38 ============================================================================ +12:38:39 ============================================================================ +12:38:39 Slot Id : <398> +12:38:39 Transaction Type : REQUEST +12:38:39 Received From : +12:38:39 ============================================================================ +12:38:39 FNo. Len. Field Value +12:38:39 ============================================================================ +12:38:39 [ 1] [ 4] [0200] +12:38:39 [ 2] [ 16] [6213545000452478] +12:38:39 [ 3] [ 6] [011000] +12:38:39 [ 4] [ 12] [000100000000] +12:38:39 [ 7] [ 10] [0320124625] +12:38:39 [ 11] [ 6] [168938] +12:38:39 [ 12] [ 6] [124625] +12:38:39 [ 13] [ 4] [0320] +12:38:39 [ 14] [ 4] [4912] +12:38:39 [ 15] [ 4] [0320] +12:38:39 [ 18] [ 4] [6011] +12:38:39 [ 22] [ 3] [900] +12:38:39 [ 25] [ 2] [02] +12:38:39 [ 28] [ 9] [D00002000] +12:38:39 [ 32] [ 6] [220699] +12:38:39 [ 35] [ 32] [6213545000452478=491212015247506] +12:38:39 [ 37] [ 12] [507900026353] +12:38:39 [ 41] [ 8] [01000200] +12:38:39 [ 42] [ 15] [APTRA ] +12:38:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:38:39 [ 49] [ 3] [418] +12:38:39 [ 52] [ 16] [B601FE65978DFE2A] +12:38:39 ============================================================================ +12:38:39 + + +waiting on router queue for slot.... +12:38:39 Sending to : +12:38:39 ============================================================================ +12:38:39 ============================================================================ +12:38:39 Slot Id : <398> +12:38:39 Transaction Type : REQUEST +12:38:39 Received From : +12:38:39 ============================================================================ +12:38:39 FNo. Len. Field Value +12:38:39 ============================================================================ +12:38:39 [ 1] [ 4] [0200] +12:38:39 [ 2] [ 16] [6213545000452478] +12:38:39 [ 3] [ 6] [011000] +12:38:39 [ 4] [ 12] [000100000000] +12:38:39 [ 7] [ 10] [0320124625] +12:38:39 [ 11] [ 6] [168938] +12:38:39 [ 12] [ 6] [124625] +12:38:39 [ 13] [ 4] [0320] +12:38:39 [ 14] [ 4] [4912] +12:38:39 [ 15] [ 4] [0320] +12:38:39 [ 18] [ 4] [6011] +12:38:39 [ 22] [ 3] [900] +12:38:39 [ 25] [ 2] [02] +12:38:39 [ 28] [ 9] [D00002000] +12:38:39 [ 32] [ 6] [220699] +12:38:39 [ 35] [ 32] [6213545000452478=491212015247506] +12:38:39 [ 37] [ 12] [507900026353] +12:38:39 [ 41] [ 8] [01000200] +12:38:39 [ 42] [ 15] [APTRA ] +12:38:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:38:39 [ 49] [ 3] [418] +12:38:39 [ 52] [ 16] [03BEBEFF154D05E2] +12:38:39 ============================================================================ +12:38:39 + + +waiting on router queue for slot.... +12:38:39 Sending to : <0> +12:38:39 ============================================================================ +12:38:39 ============================================================================ +12:38:39 Slot Id : <398> +12:38:39 Transaction Type : RESPONSE +12:38:39 Received From : +12:38:39 ============================================================================ +12:38:39 FNo. Len. Field Value +12:38:39 ============================================================================ +12:38:39 [ 1] [ 4] [0210] +12:38:39 [ 2] [ 16] [6213545000452478] +12:38:39 [ 3] [ 6] [011000] +12:38:39 [ 4] [ 12] [000100000000] +12:38:39 [ 7] [ 10] [0320124625] +12:38:39 [ 11] [ 6] [168938] +12:38:39 [ 12] [ 6] [124625] +12:38:39 [ 13] [ 4] [0320] +12:38:39 [ 15] [ 4] [0320] +12:38:39 [ 18] [ 4] [6011] +12:38:39 [ 32] [ 6] [220699] +12:38:39 [ 35] [ 32] [6213545000452478=491212015247506] +12:38:39 [ 37] [ 12] [507900026353] +12:38:39 [ 38] [ 6] [690775] +12:38:39 [ 39] [ 2] [00] +12:38:39 [ 41] [ 8] [01000200] +12:38:39 [ 49] [ 3] [418] +12:38:39 [ 54] [ 40] [1001418C0000054522391002418C000005452239] +12:38:39 ============================================================================ +12:38:39 Sending to : +12:38:39 ============================================================================ +12:38:39 + + +waiting on router queue for slot.... +12:38:41 ============================================================================ +12:38:41 Slot Id : <398> +12:38:41 Transaction Type : RESPONSE +12:38:41 Received From : +12:38:41 ============================================================================ +12:38:41 FNo. Len. Field Value +12:38:41 ============================================================================ +12:38:41 [ 1] [ 4] [0210] +12:38:41 [ 2] [ 16] [6213545000452478] +12:38:41 [ 3] [ 6] [011000] +12:38:41 [ 4] [ 12] [000100000000] +12:38:41 [ 7] [ 10] [0320124625] +12:38:41 [ 11] [ 6] [168938] +12:38:41 [ 12] [ 6] [124625] +12:38:41 [ 13] [ 4] [0320] +12:38:41 [ 15] [ 4] [0320] +12:38:41 [ 18] [ 4] [6011] +12:38:41 [ 32] [ 6] [220699] +12:38:41 [ 35] [ 32] [6213545000452478=491212015247506] +12:38:41 [ 37] [ 12] [507900026353] +12:38:41 [ 38] [ 6] [690775] +12:38:41 [ 39] [ 2] [00] +12:38:41 [ 41] [ 8] [01000200] +12:38:41 [ 49] [ 3] [418] +12:38:41 [ 54] [ 40] [1001418C0000054522391002418C000005452239] +12:38:41 ============================================================================ +12:38:41 Calculate Source COMM Id = 1 +12:38:41 ============================================================================ +12:38:41 + + +waiting on router queue for slot.... +12:38:41 ============================================================================ +12:38:41 Slot Id : <425> +12:38:41 Transaction Type : REQUEST +12:38:41 Received From : +12:38:41 ============================================================================ +12:38:41 FNo. Len. Field Value +12:38:41 ============================================================================ +12:38:41 [ 1] [ 4] [0800] +12:38:41 [ 7] [ 10] [0320053749] +12:38:41 [ 11] [ 6] [156352] +12:38:41 [ 70] [ 3] [301] +12:38:41 ============================================================================ +12:38:41 + + +waiting on router queue for slot.... +12:38:41 Sending to : +12:38:41 ============================================================================ +12:38:41 ============================================================================ +12:38:41 Slot Id : <425> +12:38:41 Transaction Type : RESPONSE +12:38:41 Received From : +12:38:41 ============================================================================ +12:38:41 FNo. Len. Field Value +12:38:41 ============================================================================ +12:38:41 [ 1] [ 4] [0810] +12:38:41 [ 7] [ 10] [0320053749] +12:38:41 [ 11] [ 6] [156352] +12:38:41 [ 39] [ 2] [00] +12:38:41 [ 70] [ 3] [301] +12:38:41 ============================================================================ +12:38:41 Calculate Source COMM Id = 2 +12:38:41 ============================================================================ +12:38:41 + + +waiting on router queue for slot.... +12:38:53 ============================================================================ +12:38:53 Slot Id : <433> +12:38:53 Transaction Type : REQUEST +12:38:53 Received From : +12:38:53 ============================================================================ +12:38:53 FNo. Len. Field Value +12:38:53 ============================================================================ +12:38:53 [ 1] [ 4] [0800] +12:38:53 [ 7] [ 10] [0320053759] +12:38:53 [ 11] [ 6] [156353] +12:38:53 [ 70] [ 3] [301] +12:38:53 ============================================================================ +12:38:53 + + +waiting on router queue for slot.... +12:38:53 Sending to : +12:38:53 ============================================================================ +12:38:53 ============================================================================ +12:38:53 Slot Id : <433> +12:38:53 Transaction Type : RESPONSE +12:38:53 Received From : +12:38:53 ============================================================================ +12:38:53 FNo. Len. Field Value +12:38:53 ============================================================================ +12:38:53 [ 1] [ 4] [0810] +12:38:53 [ 7] [ 10] [0320053759] +12:38:53 [ 11] [ 6] [156353] +12:38:53 [ 39] [ 2] [00] +12:38:53 [ 70] [ 3] [301] +12:38:53 ============================================================================ +12:38:53 Calculate Source COMM Id = 2 +12:38:53 ============================================================================ +12:38:53 + + +waiting on router queue for slot.... +12:39:06 ============================================================================ +12:39:06 Slot Id : <364> +12:39:06 Transaction Type : REQUEST +12:39:06 Received From : +12:39:06 ============================================================================ +12:39:06 FNo. Len. Field Value +12:39:06 ============================================================================ +12:39:06 [ 1] [ 4] [0800] +12:39:06 [ 2] [ 5] [02531] +12:39:06 [ 3] [ 6] [579128] +12:39:06 [ 7] [ 10] [0320053906] +12:39:06 [ 11] [ 6] [807146] +12:39:06 [ 15] [ 10] [0320053906] +12:39:06 [ 37] [ 11] [57912807146] +12:39:06 [ 70] [ 3] [001] +12:39:06 ============================================================================ +12:39:06 + + +waiting on router queue for slot.... +12:39:06 ============================================================================ +12:39:06 Slot Id : <364> +12:39:06 Transaction Type : RESPONSE +12:39:06 Received From : +12:39:06 ============================================================================ +12:39:06 FNo. Len. Field Value +12:39:06 ============================================================================ +12:39:06 [ 1] [ 4] [0810] +12:39:06 [ 7] [ 10] [0320053906] +12:39:06 [ 11] [ 6] [807146] +12:39:06 [ 15] [ 4] [0320] +12:39:06 [ 37] [ 12] [57912807146] +12:39:06 [ 39] [ 2] [00] +12:39:06 [ 70] [ 3] [001] +12:39:06 ============================================================================ +12:39:06 Sending to : +12:39:06 ============================================================================ +12:39:06 + + +waiting on router queue for slot.... +12:39:06 ============================================================================ +12:39:06 Slot Id : <388> +12:39:06 Transaction Type : REQUEST +12:39:06 Received From : +12:39:06 ============================================================================ +12:39:06 FNo. Len. Field Value +12:39:06 ============================================================================ +12:39:06 [ 1] [ 4] [0800] +12:39:06 [ 7] [ 10] [0320053814] +12:39:06 [ 11] [ 6] [156354] +12:39:06 [ 70] [ 3] [301] +12:39:06 ============================================================================ +12:39:06 + + +waiting on router queue for slot.... +12:39:06 Sending to : +12:39:06 ============================================================================ +12:39:06 ============================================================================ +12:39:06 Slot Id : <388> +12:39:06 Transaction Type : RESPONSE +12:39:06 Received From : +12:39:06 ============================================================================ +12:39:06 FNo. Len. Field Value +12:39:06 ============================================================================ +12:39:06 [ 1] [ 4] [0810] +12:39:06 [ 7] [ 10] [0320053814] +12:39:06 [ 11] [ 6] [156354] +12:39:06 [ 39] [ 2] [00] +12:39:06 [ 70] [ 3] [301] +12:39:06 ============================================================================ +12:39:06 Calculate Source COMM Id = 2 +12:39:06 ============================================================================ +12:39:06 + + +waiting on router queue for slot.... +12:39:21 ============================================================================ +12:39:21 Slot Id : <367> +12:39:21 Transaction Type : REQUEST +12:39:21 Received From : +12:39:21 ============================================================================ +12:39:21 FNo. Len. Field Value +12:39:21 ============================================================================ +12:39:21 [ 1] [ 4] [0800] +12:39:21 [ 7] [ 10] [0320053829] +12:39:21 [ 11] [ 6] [156355] +12:39:21 [ 70] [ 3] [301] +12:39:21 ============================================================================ +12:39:21 + + +waiting on router queue for slot.... +12:39:21 Sending to : +12:39:21 ============================================================================ +12:39:21 ============================================================================ +12:39:21 Slot Id : <367> +12:39:21 Transaction Type : RESPONSE +12:39:21 Received From : +12:39:21 ============================================================================ +12:39:21 FNo. Len. Field Value +12:39:21 ============================================================================ +12:39:21 [ 1] [ 4] [0810] +12:39:21 [ 7] [ 10] [0320053829] +12:39:21 [ 11] [ 6] [156355] +12:39:21 [ 39] [ 2] [00] +12:39:21 [ 70] [ 3] [301] +12:39:21 ============================================================================ +12:39:21 Calculate Source COMM Id = 2 +12:39:21 ============================================================================ +12:39:21 + + +waiting on router queue for slot.... +12:39:34 ============================================================================ +12:39:34 Slot Id : <430> +12:39:34 Transaction Type : REQUEST +12:39:34 Received From : +12:39:34 ============================================================================ +12:39:34 FNo. Len. Field Value +12:39:34 ============================================================================ +12:39:34 [ 1] [ 4] [0800] +12:39:34 [ 7] [ 10] [0320053841] +12:39:34 [ 11] [ 6] [156356] +12:39:34 [ 70] [ 3] [301] +12:39:34 ============================================================================ +12:39:34 + + +waiting on router queue for slot.... +12:39:34 Sending to : +12:39:34 ============================================================================ +12:39:34 ============================================================================ +12:39:34 Slot Id : <430> +12:39:34 Transaction Type : RESPONSE +12:39:34 Received From : +12:39:34 ============================================================================ +12:39:34 FNo. Len. Field Value +12:39:34 ============================================================================ +12:39:34 [ 1] [ 4] [0810] +12:39:34 [ 7] [ 10] [0320053841] +12:39:34 [ 11] [ 6] [156356] +12:39:34 [ 39] [ 2] [00] +12:39:34 [ 70] [ 3] [301] +12:39:34 ============================================================================ +12:39:34 Calculate Source COMM Id = 2 +12:39:34 ============================================================================ +12:39:34 + + +waiting on router queue for slot.... +12:39:45 ============================================================================ +12:39:45 Slot Id : <441> +12:39:45 Transaction Type : REQUEST +12:39:45 Received From : +12:39:45 ============================================================================ +12:39:45 FNo. Len. Field Value +12:39:45 ============================================================================ +12:39:45 [ 1] [ 4] [0800] +12:39:45 [ 7] [ 10] [0320053852] +12:39:45 [ 11] [ 6] [156357] +12:39:45 [ 70] [ 3] [301] +12:39:45 ============================================================================ +12:39:45 + + +waiting on router queue for slot.... +12:39:45 Sending to : +12:39:45 ============================================================================ +12:39:45 ============================================================================ +12:39:45 Slot Id : <441> +12:39:45 Transaction Type : RESPONSE +12:39:45 Received From : +12:39:45 ============================================================================ +12:39:45 FNo. Len. Field Value +12:39:45 ============================================================================ +12:39:45 [ 1] [ 4] [0810] +12:39:45 [ 7] [ 10] [0320053852] +12:39:45 [ 11] [ 6] [156357] +12:39:45 [ 39] [ 2] [00] +12:39:45 [ 70] [ 3] [301] +12:39:45 ============================================================================ +12:39:45 Calculate Source COMM Id = 2 +12:39:45 ============================================================================ +12:39:45 + + +waiting on router queue for slot.... +12:39:48 ============================================================================ +12:39:48 Slot Id : <409> +12:39:48 Transaction Type : REQUEST +12:39:48 Received From : +12:39:48 ============================================================================ +12:39:48 FNo. Len. Field Value +12:39:48 ============================================================================ +12:39:48 [ 1] [ 4] [0200] +12:39:48 [ 2] [ 16] [6688990040137844] +12:39:48 [ 3] [ 6] [010000] +12:39:48 [ 4] [ 12] [000100000000] +12:39:48 [ 7] [ 10] [0320123944] +12:39:48 [ 11] [ 6] [747409] +12:39:48 [ 12] [ 6] [123944] +12:39:48 [ 13] [ 4] [0320] +12:39:48 [ 15] [ 4] [0320] +12:39:48 [ 18] [ 4] [6011] +12:39:48 [ 22] [ 3] [900] +12:39:48 [ 25] [ 2] [02] +12:39:48 [ 28] [ 9] [D00002000] +12:39:48 [ 32] [ 6] [621354] +12:39:48 [ 35] [ 37] [6688990040137844=98041261955936700000] +12:39:48 [ 37] [ 12] [507903587021] +12:39:48 [ 41] [ 8] [09001500] +12:39:48 [ 42] [ 15] [NATIVE ] +12:39:48 [ 43] [ 40] [Friendship Bridge Xaythany LAO] +12:39:48 [ 49] [ 3] [418] +12:39:48 [ 52] [ 16] [C47F32354F970CFE] +12:39:48 ============================================================================ +12:39:48 + + +waiting on router queue for slot.... +12:39:48 Sending to : +12:39:48 ============================================================================ +12:39:48 Sending to : +12:39:48 ============================================================================ +12:39:48 ============================================================================ +12:39:48 Slot Id : <409> +12:39:48 Transaction Type : REQUEST +12:39:48 Received From : +12:39:48 ============================================================================ +12:39:48 FNo. Len. Field Value +12:39:48 ============================================================================ +12:39:48 [ 1] [ 4] [0200] +12:39:48 [ 2] [ 16] [6688990040137844] +12:39:48 [ 3] [ 6] [010000] +12:39:48 [ 4] [ 12] [000100000000] +12:39:48 [ 7] [ 10] [0320123944] +12:39:48 [ 11] [ 6] [747409] +12:39:48 [ 12] [ 6] [123944] +12:39:48 [ 13] [ 4] [0320] +12:39:48 [ 15] [ 4] [0320] +12:39:48 [ 18] [ 4] [6011] +12:39:48 [ 22] [ 3] [900] +12:39:48 [ 25] [ 2] [02] +12:39:48 [ 28] [ 9] [D00002000] +12:39:48 [ 32] [ 6] [621354] +12:39:48 [ 35] [ 37] [6688990040137844=98041261955936700000] +12:39:48 [ 37] [ 12] [507903587021] +12:39:48 [ 41] [ 8] [09001500] +12:39:48 [ 42] [ 15] [NATIVE ] +12:39:48 [ 43] [ 40] [Friendship Bridge Xaythany LAO] +12:39:48 [ 49] [ 3] [418] +12:39:48 [ 52] [ 16] [C47F32354F970CFE] +12:39:48 ============================================================================ +12:39:48 + + +waiting on router queue for slot.... +12:39:48 Sending to : +12:39:48 ============================================================================ +12:39:48 ============================================================================ +12:39:48 Slot Id : <409> +12:39:48 Transaction Type : REQUEST +12:39:48 Received From : +12:39:48 ============================================================================ +12:39:48 FNo. Len. Field Value +12:39:48 ============================================================================ +12:39:48 [ 1] [ 4] [0200] +12:39:48 [ 2] [ 16] [6688990040137844] +12:39:48 [ 3] [ 6] [010000] +12:39:48 [ 4] [ 12] [000100000000] +12:39:48 [ 7] [ 10] [0320123944] +12:39:48 [ 11] [ 6] [747409] +12:39:48 [ 12] [ 6] [123944] +12:39:48 [ 13] [ 4] [0320] +12:39:48 [ 15] [ 4] [0320] +12:39:48 [ 18] [ 4] [6011] +12:39:48 [ 22] [ 3] [900] +12:39:48 [ 25] [ 2] [02] +12:39:48 [ 28] [ 9] [D00002000] +12:39:48 [ 32] [ 6] [621354] +12:39:48 [ 35] [ 37] [6688990040137844=98041261955936700000] +12:39:48 [ 37] [ 12] [507903587021] +12:39:48 [ 41] [ 8] [09001500] +12:39:48 [ 42] [ 15] [NATIVE ] +12:39:48 [ 43] [ 40] [Friendship Bridge Xaythany LAO] +12:39:48 [ 49] [ 3] [418] +12:39:48 [ 52] [ 16] [6B471A3AE8EB7229] +12:39:48 ============================================================================ +12:39:48 + + +waiting on router queue for slot.... +12:39:48 Sending to : <4> +12:39:48 ============================================================================ +12:39:49 ============================================================================ +12:39:49 Slot Id : <409> +12:39:49 Transaction Type : RESPONSE +12:39:49 Received From : +12:39:49 ============================================================================ +12:39:49 FNo. Len. Field Value +12:39:49 ============================================================================ +12:39:49 [ 1] [ 4] [0210] +12:39:49 [ 2] [ 16] [6688990040137844] +12:39:49 [ 3] [ 6] [010000] +12:39:49 [ 4] [ 12] [000100000000] +12:39:49 [ 11] [ 6] [747409] +12:39:49 [ 12] [ 6] [123944] +12:39:49 [ 15] [ 4] [0320] +12:39:49 [ 18] [ 4] [6011] +12:39:49 [ 32] [ 6] [621354] +12:39:49 [ 35] [ 37] [6688990040137844=98041261955936700000] +12:39:49 [ 37] [ 12] [507903587021] +12:39:49 [ 38] [ 6] [390285] +12:39:49 [ 39] [ 2] [00] +12:39:49 [ 41] [ 8] [09001500] +12:39:49 [ 49] [ 3] [418] +12:39:49 [ 54] [ 20] [0002840C000000054149] +12:39:49 ============================================================================ +12:39:49 Sending to : +12:39:49 ============================================================================ +12:39:49 + + +waiting on router queue for slot.... +12:39:51 ============================================================================ +12:39:51 Slot Id : <409> +12:39:51 Transaction Type : RESPONSE +12:39:51 Received From : +12:39:51 ============================================================================ +12:39:51 FNo. Len. Field Value +12:39:51 ============================================================================ +12:39:51 [ 1] [ 4] [0210] +12:39:51 [ 2] [ 16] [6688990040137844] +12:39:51 [ 3] [ 6] [010000] +12:39:51 [ 4] [ 12] [000100000000] +12:39:51 [ 11] [ 6] [747409] +12:39:51 [ 12] [ 6] [123944] +12:39:51 [ 15] [ 4] [0320] +12:39:51 [ 18] [ 4] [6011] +12:39:51 [ 32] [ 6] [621354] +12:39:51 [ 35] [ 37] [6688990040137844=98041261955936700000] +12:39:51 [ 37] [ 12] [507903587021] +12:39:51 [ 38] [ 6] [390285] +12:39:51 [ 39] [ 2] [00] +12:39:51 [ 41] [ 8] [09001500] +12:39:51 [ 49] [ 3] [418] +12:39:51 [ 54] [ 20] [0002840C000000054149] +12:39:51 ============================================================================ +12:39:51 Calculate Source COMM Id = 0 +12:39:51 ============================================================================ +12:39:51 + + +waiting on router queue for slot.... +12:39:55 ============================================================================ +12:39:55 Slot Id : <437> +12:39:55 Transaction Type : REQUEST +12:39:55 Received From : +12:39:55 ============================================================================ +12:39:55 FNo. Len. Field Value +12:39:55 ============================================================================ +12:39:55 [ 1] [ 4] [0800] +12:39:55 [ 7] [ 10] [0320054742] +12:39:55 [ 11] [ 6] [094811] +12:39:55 [ 37] [ 12] [57912094811] +12:39:55 [ 70] [ 3] [301] +12:39:55 ============================================================================ +12:39:55 + + +waiting on router queue for slot.... +12:39:55 Sending to : +12:39:55 ============================================================================ +12:39:55 ============================================================================ +12:39:55 Slot Id : <437> +12:39:55 Transaction Type : RESPONSE +12:39:55 Received From : +12:39:55 ============================================================================ +12:39:55 FNo. Len. Field Value +12:39:55 ============================================================================ +12:39:55 [ 1] [ 4] [0810] +12:39:55 [ 7] [ 10] [0320054742] +12:39:55 [ 11] [ 6] [094811] +12:39:55 [ 37] [ 12] [579120948110] +12:39:55 [ 39] [ 2] [00] +12:39:55 [ 70] [ 3] [810] +12:39:55 ============================================================================ +12:39:55 Calculate Source COMM Id = 1 +12:39:55 ============================================================================ +12:39:55 + + +waiting on router queue for slot.... +12:39:57 ============================================================================ +12:39:57 Slot Id : <402> +12:39:57 Transaction Type : REQUEST +12:39:57 Received From : +12:39:57 ============================================================================ +12:39:57 FNo. Len. Field Value +12:39:57 ============================================================================ +12:39:57 [ 1] [ 4] [0800] +12:39:57 [ 7] [ 10] [0320053904] +12:39:57 [ 11] [ 6] [156358] +12:39:57 [ 70] [ 3] [301] +12:39:57 ============================================================================ +12:39:57 + + +waiting on router queue for slot.... +12:39:57 Sending to : +12:39:57 ============================================================================ +12:39:57 ============================================================================ +12:39:57 Slot Id : <402> +12:39:57 Transaction Type : RESPONSE +12:39:57 Received From : +12:39:57 ============================================================================ +12:39:57 FNo. Len. Field Value +12:39:57 ============================================================================ +12:39:57 [ 1] [ 4] [0810] +12:39:57 [ 7] [ 10] [0320053904] +12:39:57 [ 11] [ 6] [156358] +12:39:57 [ 39] [ 2] [00] +12:39:57 [ 70] [ 3] [301] +12:39:57 ============================================================================ +12:39:57 Calculate Source COMM Id = 2 +12:39:57 ============================================================================ +12:39:57 + + +waiting on router queue for slot.... +12:40:07 ============================================================================ +12:40:07 Slot Id : <408> +12:40:07 Transaction Type : REQUEST +12:40:07 Received From : +12:40:07 ============================================================================ +12:40:07 FNo. Len. Field Value +12:40:07 ============================================================================ +12:40:07 [ 1] [ 4] [0800] +12:40:07 [ 7] [ 10] [0320053915] +12:40:07 [ 11] [ 6] [156359] +12:40:07 [ 70] [ 3] [301] +12:40:07 ============================================================================ +12:40:07 + + +waiting on router queue for slot.... +12:40:07 Sending to : +12:40:07 ============================================================================ +12:40:07 ============================================================================ +12:40:07 Slot Id : <408> +12:40:07 Transaction Type : RESPONSE +12:40:07 Received From : +12:40:07 ============================================================================ +12:40:07 FNo. Len. Field Value +12:40:07 ============================================================================ +12:40:07 [ 1] [ 4] [0810] +12:40:07 [ 7] [ 10] [0320053915] +12:40:07 [ 11] [ 6] [156359] +12:40:07 [ 39] [ 2] [00] +12:40:07 [ 70] [ 3] [301] +12:40:07 ============================================================================ +12:40:07 Calculate Source COMM Id = 2 +12:40:07 ============================================================================ +12:40:07 + + +waiting on router queue for slot.... +12:40:08 ============================================================================ +12:40:08 Slot Id : <403> +12:40:08 Transaction Type : REQUEST +12:40:08 Received From : +12:40:08 ============================================================================ +12:40:08 FNo. Len. Field Value +12:40:08 ============================================================================ +12:40:08 [ 1] [ 4] [0800] +12:40:08 [ 2] [ 5] [02531] +12:40:08 [ 3] [ 6] [579128] +12:40:08 [ 7] [ 10] [0320054008] +12:40:08 [ 11] [ 6] [807147] +12:40:08 [ 15] [ 10] [0320054008] +12:40:08 [ 37] [ 11] [57912807147] +12:40:08 [ 70] [ 3] [001] +12:40:08 ============================================================================ +12:40:08 + + +waiting on router queue for slot.... +12:40:08 ============================================================================ +12:40:08 Slot Id : <403> +12:40:08 Transaction Type : RESPONSE +12:40:08 Received From : +12:40:08 ============================================================================ +12:40:08 FNo. Len. Field Value +12:40:08 ============================================================================ +12:40:08 [ 1] [ 4] [0810] +12:40:08 [ 7] [ 10] [0320054008] +12:40:08 [ 11] [ 6] [807147] +12:40:08 [ 15] [ 4] [0320] +12:40:08 [ 37] [ 12] [57912807147] +12:40:08 [ 39] [ 2] [00] +12:40:08 [ 70] [ 3] [001] +12:40:08 ============================================================================ +12:40:08 Sending to : +12:40:08 ============================================================================ +12:40:08 + + +waiting on router queue for slot.... +12:40:18 ============================================================================ +12:40:18 Slot Id : <362> +12:40:18 Transaction Type : REQUEST +12:40:18 Received From : +12:40:18 ============================================================================ +12:40:18 FNo. Len. Field Value +12:40:18 ============================================================================ +12:40:18 [ 1] [ 4] [0200] +12:40:18 [ 2] [ 16] [6213544001043030] +12:40:18 [ 3] [ 6] [301000] +12:40:18 [ 4] [ 12] [000000000000] +12:40:18 [ 7] [ 10] [0320123809] +12:40:18 [ 11] [ 6] [944677] +12:40:18 [ 12] [ 6] [123809] +12:40:18 [ 13] [ 4] [0320] +12:40:18 [ 15] [ 4] [0320] +12:40:18 [ 18] [ 4] [6011] +12:40:18 [ 19] [ 3] [418] +12:40:18 [ 22] [ 3] [021] +12:40:18 [ 25] [ 2] [01] +12:40:18 [ 28] [ 9] [D00000000] +12:40:18 [ 32] [ 6] [668899] +12:40:18 [ 35] [ 32] [6213544001043030=491212014303039] +12:40:18 [ 37] [ 12] [507900123311] +12:40:18 [ 41] [ 8] [03020003] +12:40:18 [ 42] [ 15] [APT ] +12:40:18 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:40:18 [ 49] [ 3] [418] +12:40:18 [ 52] [ 16] [2781737B41F2BBC2] +12:40:18 ============================================================================ +12:40:18 + + +waiting on router queue for slot.... +12:40:18 Sending to : +12:40:18 ============================================================================ +12:40:18 Sending to : +12:40:18 ============================================================================ +12:40:19 ============================================================================ +12:40:19 Slot Id : <362> +12:40:19 Transaction Type : REQUEST +12:40:19 Received From : +12:40:19 ============================================================================ +12:40:19 FNo. Len. Field Value +12:40:19 ============================================================================ +12:40:19 [ 1] [ 4] [0200] +12:40:19 [ 2] [ 16] [6213544001043030] +12:40:19 [ 3] [ 6] [301000] +12:40:19 [ 4] [ 12] [000000000000] +12:40:19 [ 7] [ 10] [0320123809] +12:40:19 [ 11] [ 6] [944677] +12:40:19 [ 12] [ 6] [123809] +12:40:19 [ 13] [ 4] [0320] +12:40:19 [ 15] [ 4] [0320] +12:40:19 [ 18] [ 4] [6011] +12:40:19 [ 19] [ 3] [418] +12:40:19 [ 22] [ 3] [021] +12:40:19 [ 25] [ 2] [01] +12:40:19 [ 28] [ 9] [D00000000] +12:40:19 [ 32] [ 6] [668899] +12:40:19 [ 35] [ 32] [6213544001043030=491212014303039] +12:40:19 [ 37] [ 12] [507900123311] +12:40:19 [ 41] [ 8] [03020003] +12:40:19 [ 42] [ 15] [APT ] +12:40:19 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:40:19 [ 49] [ 3] [418] +12:40:19 [ 52] [ 16] [2781737B41F2BBC2] +12:40:19 ============================================================================ +12:40:19 + + +waiting on router queue for slot.... +12:40:19 Sending to : +12:40:19 ============================================================================ +12:40:19 ============================================================================ +12:40:19 Slot Id : <362> +12:40:19 Transaction Type : REQUEST +12:40:19 Received From : +12:40:19 ============================================================================ +12:40:19 FNo. Len. Field Value +12:40:19 ============================================================================ +12:40:19 [ 1] [ 4] [0200] +12:40:19 [ 2] [ 16] [6213544001043030] +12:40:19 [ 3] [ 6] [301000] +12:40:19 [ 4] [ 12] [000000000000] +12:40:19 [ 7] [ 10] [0320123809] +12:40:19 [ 11] [ 6] [944677] +12:40:19 [ 12] [ 6] [123809] +12:40:19 [ 13] [ 4] [0320] +12:40:19 [ 15] [ 4] [0320] +12:40:19 [ 18] [ 4] [6011] +12:40:19 [ 19] [ 3] [418] +12:40:19 [ 22] [ 3] [021] +12:40:19 [ 25] [ 2] [01] +12:40:19 [ 28] [ 9] [D00000000] +12:40:19 [ 32] [ 6] [668899] +12:40:19 [ 35] [ 32] [6213544001043030=491212014303039] +12:40:19 [ 37] [ 12] [507900123311] +12:40:19 [ 41] [ 8] [03020003] +12:40:19 [ 42] [ 15] [APT ] +12:40:19 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:40:19 [ 49] [ 3] [418] +12:40:19 [ 52] [ 16] [38AB53DFB6B34369] +12:40:19 ============================================================================ +12:40:19 + + +waiting on router queue for slot.... +12:40:19 Sending to : <0> +12:40:19 ============================================================================ +12:40:19 ============================================================================ +12:40:19 Slot Id : <362> +12:40:19 Transaction Type : RESPONSE +12:40:19 Received From : +12:40:19 ============================================================================ +12:40:19 FNo. Len. Field Value +12:40:19 ============================================================================ +12:40:19 [ 1] [ 4] [0210] +12:40:19 [ 2] [ 16] [6213544001043030] +12:40:19 [ 3] [ 6] [301000] +12:40:19 [ 4] [ 12] [000000000000] +12:40:19 [ 7] [ 10] [0320123809] +12:40:19 [ 11] [ 6] [944677] +12:40:19 [ 12] [ 6] [123809] +12:40:19 [ 13] [ 4] [0320] +12:40:19 [ 15] [ 4] [0320] +12:40:19 [ 18] [ 4] [6011] +12:40:19 [ 19] [ 3] [418] +12:40:19 [ 32] [ 6] [668899] +12:40:19 [ 35] [ 32] [6213544001043030=491212014303039] +12:40:19 [ 37] [ 12] [507900123311] +12:40:19 [ 38] [ 6] [764756] +12:40:19 [ 39] [ 2] [00] +12:40:19 [ 41] [ 8] [03020003] +12:40:19 [ 49] [ 3] [418] +12:40:19 [ 54] [ 40] [1001418C0000054084681002418C000005408468] +12:40:19 ============================================================================ +12:40:19 Sending to : +12:40:19 ============================================================================ +12:40:19 + + +waiting on router queue for slot.... +12:40:20 ============================================================================ +12:40:20 Slot Id : <362> +12:40:20 Transaction Type : RESPONSE +12:40:20 Received From : +12:40:20 ============================================================================ +12:40:20 FNo. Len. Field Value +12:40:20 ============================================================================ +12:40:20 [ 1] [ 4] [0210] +12:40:20 [ 2] [ 16] [6213544001043030] +12:40:20 [ 3] [ 6] [301000] +12:40:20 [ 4] [ 12] [000000000000] +12:40:20 [ 7] [ 10] [0320123809] +12:40:20 [ 11] [ 6] [944677] +12:40:20 [ 12] [ 6] [123809] +12:40:20 [ 13] [ 4] [0320] +12:40:20 [ 15] [ 4] [0320] +12:40:20 [ 18] [ 4] [6011] +12:40:20 [ 19] [ 3] [418] +12:40:20 [ 32] [ 6] [668899] +12:40:20 [ 35] [ 32] [6213544001043030=491212014303039] +12:40:20 [ 37] [ 12] [507900123311] +12:40:20 [ 38] [ 6] [764756] +12:40:20 [ 39] [ 2] [00] +12:40:20 [ 41] [ 8] [03020003] +12:40:20 [ 49] [ 3] [418] +12:40:20 [ 54] [ 40] [1001418C0000054084681002418C000005408468] +12:40:20 ============================================================================ +12:40:20 Calculate Source COMM Id = 4 +12:40:20 ============================================================================ +12:40:20 + + +waiting on router queue for slot.... +12:40:24 ============================================================================ +12:40:24 Slot Id : <375> +12:40:24 Transaction Type : REQUEST +12:40:24 Received From : +12:40:24 ============================================================================ +12:40:24 FNo. Len. Field Value +12:40:24 ============================================================================ +12:40:24 [ 1] [ 4] [0800] +12:40:24 [ 7] [ 10] [0320053931] +12:40:24 [ 11] [ 6] [156360] +12:40:24 [ 70] [ 3] [301] +12:40:24 ============================================================================ +12:40:24 + + +waiting on router queue for slot.... +12:40:24 Sending to : +12:40:24 ============================================================================ +12:40:24 ============================================================================ +12:40:24 Slot Id : <375> +12:40:24 Transaction Type : RESPONSE +12:40:24 Received From : +12:40:24 ============================================================================ +12:40:24 FNo. Len. Field Value +12:40:24 ============================================================================ +12:40:24 [ 1] [ 4] [0810] +12:40:24 [ 7] [ 10] [0320053931] +12:40:24 [ 11] [ 6] [156360] +12:40:24 [ 39] [ 2] [00] +12:40:24 [ 70] [ 3] [301] +12:40:24 ============================================================================ +12:40:24 Calculate Source COMM Id = 2 +12:40:24 ============================================================================ +12:40:24 + + +waiting on router queue for slot.... +12:40:30 ============================================================================ +12:40:30 Slot Id : <385> +12:40:30 Transaction Type : REQUEST +12:40:30 Received From : +12:40:30 ============================================================================ +12:40:30 FNo. Len. Field Value +12:40:30 ============================================================================ +12:40:30 [ 1] [ 4] [0200] +12:40:30 [ 2] [ 16] [6213544000608593] +12:40:30 [ 3] [ 6] [010000] +12:40:30 [ 4] [ 12] [000070000000] +12:40:30 [ 7] [ 10] [0320123821] +12:40:30 [ 11] [ 6] [944684] +12:40:30 [ 12] [ 6] [123821] +12:40:30 [ 13] [ 4] [0320] +12:40:30 [ 15] [ 4] [0320] +12:40:30 [ 18] [ 4] [6011] +12:40:30 [ 19] [ 3] [418] +12:40:30 [ 22] [ 3] [021] +12:40:30 [ 25] [ 2] [01] +12:40:30 [ 28] [ 9] [D00002000] +12:40:30 [ 32] [ 6] [668899] +12:40:30 [ 35] [ 32] [6213544000608593=491212010859420] +12:40:30 [ 37] [ 12] [507901373725] +12:40:30 [ 41] [ 8] [03209001] +12:40:30 [ 42] [ 15] [APT ] +12:40:30 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +12:40:30 [ 49] [ 3] [418] +12:40:30 [ 52] [ 16] [0B9FC0227F0DEF7A] +12:40:30 ============================================================================ +12:40:30 + + +waiting on router queue for slot.... +12:40:30 Sending to : +12:40:30 ============================================================================ +12:40:30 Sending to : +12:40:30 ============================================================================ +12:40:31 ============================================================================ +12:40:31 Slot Id : <385> +12:40:31 Transaction Type : REQUEST +12:40:31 Received From : +12:40:31 ============================================================================ +12:40:31 FNo. Len. Field Value +12:40:31 ============================================================================ +12:40:31 [ 1] [ 4] [0200] +12:40:31 [ 2] [ 16] [6213544000608593] +12:40:31 [ 3] [ 6] [010000] +12:40:31 [ 4] [ 12] [000070000000] +12:40:31 [ 7] [ 10] [0320123821] +12:40:31 [ 11] [ 6] [944684] +12:40:31 [ 12] [ 6] [123821] +12:40:31 [ 13] [ 4] [0320] +12:40:31 [ 15] [ 4] [0320] +12:40:31 [ 18] [ 4] [6011] +12:40:31 [ 19] [ 3] [418] +12:40:31 [ 22] [ 3] [021] +12:40:31 [ 25] [ 2] [01] +12:40:31 [ 28] [ 9] [D00002000] +12:40:31 [ 32] [ 6] [668899] +12:40:31 [ 35] [ 32] [6213544000608593=491212010859420] +12:40:31 [ 37] [ 12] [507901373725] +12:40:31 [ 41] [ 8] [03209001] +12:40:31 [ 42] [ 15] [APT ] +12:40:31 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +12:40:31 [ 49] [ 3] [418] +12:40:31 [ 52] [ 16] [0B9FC0227F0DEF7A] +12:40:31 ============================================================================ +12:40:31 + + +waiting on router queue for slot.... +12:40:31 Sending to : +12:40:31 ============================================================================ +12:40:31 ============================================================================ +12:40:31 Slot Id : <385> +12:40:31 Transaction Type : REQUEST +12:40:31 Received From : +12:40:31 ============================================================================ +12:40:31 FNo. Len. Field Value +12:40:31 ============================================================================ +12:40:31 [ 1] [ 4] [0200] +12:40:31 [ 2] [ 16] [6213544000608593] +12:40:31 [ 3] [ 6] [010000] +12:40:31 [ 4] [ 12] [000070000000] +12:40:31 [ 7] [ 10] [0320123821] +12:40:31 [ 11] [ 6] [944684] +12:40:31 [ 12] [ 6] [123821] +12:40:31 [ 13] [ 4] [0320] +12:40:31 [ 15] [ 4] [0320] +12:40:31 [ 18] [ 4] [6011] +12:40:31 [ 19] [ 3] [418] +12:40:31 [ 22] [ 3] [021] +12:40:31 [ 25] [ 2] [01] +12:40:31 [ 28] [ 9] [D00002000] +12:40:31 [ 32] [ 6] [668899] +12:40:31 [ 35] [ 32] [6213544000608593=491212010859420] +12:40:31 [ 37] [ 12] [507901373725] +12:40:31 [ 41] [ 8] [03209001] +12:40:31 [ 42] [ 15] [APT ] +12:40:31 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +12:40:31 [ 49] [ 3] [418] +12:40:31 [ 52] [ 16] [4F5C59EB1FEBB6DA] +12:40:31 ============================================================================ +12:40:31 + + +waiting on router queue for slot.... +12:40:31 Sending to : <0> +12:40:31 ============================================================================ +12:40:31 ============================================================================ +12:40:31 Slot Id : <385> +12:40:31 Transaction Type : RESPONSE +12:40:31 Received From : +12:40:31 ============================================================================ +12:40:31 FNo. Len. Field Value +12:40:31 ============================================================================ +12:40:31 [ 1] [ 4] [0210] +12:40:31 [ 2] [ 16] [6213544000608593] +12:40:31 [ 3] [ 6] [010000] +12:40:31 [ 4] [ 12] [000070000000] +12:40:31 [ 7] [ 10] [0320123821] +12:40:31 [ 11] [ 6] [944684] +12:40:31 [ 12] [ 6] [123821] +12:40:31 [ 13] [ 4] [0320] +12:40:31 [ 15] [ 4] [0320] +12:40:31 [ 18] [ 4] [6011] +12:40:31 [ 19] [ 3] [418] +12:40:31 [ 32] [ 6] [668899] +12:40:31 [ 35] [ 32] [6213544000608593=491212010859420] +12:40:31 [ 37] [ 12] [507901373725] +12:40:31 [ 38] [ 6] [764251] +12:40:31 [ 39] [ 2] [00] +12:40:31 [ 41] [ 8] [03209001] +12:40:31 [ 49] [ 3] [418] +12:40:31 [ 54] [ 40] [0001418C0002780334570002418C000278033457] +12:40:31 ============================================================================ +12:40:31 Sending to : +12:40:31 ============================================================================ +12:40:31 + + +waiting on router queue for slot.... +12:40:33 ============================================================================ +12:40:33 Slot Id : <385> +12:40:33 Transaction Type : RESPONSE +12:40:33 Received From : +12:40:33 ============================================================================ +12:40:33 FNo. Len. Field Value +12:40:33 ============================================================================ +12:40:33 [ 1] [ 4] [0210] +12:40:33 [ 2] [ 16] [6213544000608593] +12:40:33 [ 3] [ 6] [010000] +12:40:33 [ 4] [ 12] [000070000000] +12:40:33 [ 7] [ 10] [0320123821] +12:40:33 [ 11] [ 6] [944684] +12:40:33 [ 12] [ 6] [123821] +12:40:33 [ 13] [ 4] [0320] +12:40:33 [ 15] [ 4] [0320] +12:40:33 [ 18] [ 4] [6011] +12:40:33 [ 19] [ 3] [418] +12:40:33 [ 32] [ 6] [668899] +12:40:33 [ 35] [ 32] [6213544000608593=491212010859420] +12:40:33 [ 37] [ 12] [507901373725] +12:40:33 [ 38] [ 6] [764251] +12:40:33 [ 39] [ 2] [00] +12:40:33 [ 41] [ 8] [03209001] +12:40:33 [ 49] [ 3] [418] +12:40:33 [ 54] [ 40] [0001418C0002780334570002418C000278033457] +12:40:33 ============================================================================ +12:40:33 Calculate Source COMM Id = 4 +12:40:33 ============================================================================ +12:40:33 + + +waiting on router queue for slot.... +12:40:39 ============================================================================ +12:40:39 Slot Id : <412> +12:40:39 Transaction Type : REQUEST +12:40:39 Received From : +12:40:39 ============================================================================ +12:40:39 FNo. Len. Field Value +12:40:39 ============================================================================ +12:40:39 [ 1] [ 4] [0800] +12:40:39 [ 7] [ 10] [0320053946] +12:40:39 [ 11] [ 6] [156361] +12:40:39 [ 70] [ 3] [301] +12:40:39 ============================================================================ +12:40:39 + + +waiting on router queue for slot.... +12:40:39 Sending to : +12:40:39 ============================================================================ +12:40:39 ============================================================================ +12:40:39 Slot Id : <412> +12:40:39 Transaction Type : RESPONSE +12:40:39 Received From : +12:40:39 ============================================================================ +12:40:39 FNo. Len. Field Value +12:40:39 ============================================================================ +12:40:39 [ 1] [ 4] [0810] +12:40:39 [ 7] [ 10] [0320053946] +12:40:39 [ 11] [ 6] [156361] +12:40:39 [ 39] [ 2] [00] +12:40:39 [ 70] [ 3] [301] +12:40:39 ============================================================================ +12:40:39 Calculate Source COMM Id = 2 +12:40:39 ============================================================================ +12:40:39 + + +waiting on router queue for slot.... +12:40:45 ============================================================================ +12:40:45 Slot Id : <447> +12:40:45 Transaction Type : REQUEST +12:40:45 Received From : +12:40:45 ============================================================================ +12:40:45 FNo. Len. Field Value +12:40:45 ============================================================================ +12:40:45 [ 1] [ 4] [0200] +12:40:45 [ 2] [ 16] [6688990040137844] +12:40:45 [ 3] [ 6] [010000] +12:40:45 [ 4] [ 12] [000100000000] +12:40:45 [ 7] [ 10] [0320124041] +12:40:45 [ 11] [ 6] [747608] +12:40:45 [ 12] [ 6] [124041] +12:40:45 [ 13] [ 4] [0320] +12:40:45 [ 15] [ 4] [0320] +12:40:45 [ 18] [ 4] [6011] +12:40:45 [ 22] [ 3] [900] +12:40:45 [ 25] [ 2] [02] +12:40:45 [ 28] [ 9] [D00002000] +12:40:45 [ 32] [ 6] [621354] +12:40:45 [ 35] [ 37] [6688990040137844=98041261955936700000] +12:40:45 [ 37] [ 12] [507903587023] +12:40:45 [ 41] [ 8] [09001500] +12:40:45 [ 42] [ 15] [NATIVE ] +12:40:45 [ 43] [ 40] [Friendship Bridge Xaythany LAO] +12:40:45 [ 49] [ 3] [418] +12:40:45 [ 52] [ 16] [C47F32354F970CFE] +12:40:45 ============================================================================ +12:40:45 + + +waiting on router queue for slot.... +12:40:45 Sending to : +12:40:45 ============================================================================ +12:40:45 Sending to : +12:40:45 ============================================================================ +12:40:45 ============================================================================ +12:40:45 Slot Id : <447> +12:40:45 Transaction Type : REQUEST +12:40:45 Received From : +12:40:45 ============================================================================ +12:40:45 FNo. Len. Field Value +12:40:45 ============================================================================ +12:40:45 [ 1] [ 4] [0200] +12:40:45 [ 2] [ 16] [6688990040137844] +12:40:45 [ 3] [ 6] [010000] +12:40:45 [ 4] [ 12] [000100000000] +12:40:45 [ 7] [ 10] [0320124041] +12:40:45 [ 11] [ 6] [747608] +12:40:45 [ 12] [ 6] [124041] +12:40:45 [ 13] [ 4] [0320] +12:40:45 [ 15] [ 4] [0320] +12:40:45 [ 18] [ 4] [6011] +12:40:45 [ 22] [ 3] [900] +12:40:45 [ 25] [ 2] [02] +12:40:45 [ 28] [ 9] [D00002000] +12:40:45 [ 32] [ 6] [621354] +12:40:45 [ 35] [ 37] [6688990040137844=98041261955936700000] +12:40:45 [ 37] [ 12] [507903587023] +12:40:45 [ 41] [ 8] [09001500] +12:40:45 [ 42] [ 15] [NATIVE ] +12:40:45 [ 43] [ 40] [Friendship Bridge Xaythany LAO] +12:40:45 [ 49] [ 3] [418] +12:40:45 [ 52] [ 16] [C47F32354F970CFE] +12:40:45 ============================================================================ +12:40:45 + + +waiting on router queue for slot.... +12:40:45 Sending to : +12:40:45 ============================================================================ +12:40:46 ============================================================================ +12:40:46 Slot Id : <447> +12:40:46 Transaction Type : REQUEST +12:40:46 Received From : +12:40:46 ============================================================================ +12:40:46 FNo. Len. Field Value +12:40:46 ============================================================================ +12:40:46 [ 1] [ 4] [0200] +12:40:46 [ 2] [ 16] [6688990040137844] +12:40:46 [ 3] [ 6] [010000] +12:40:46 [ 4] [ 12] [000100000000] +12:40:46 [ 7] [ 10] [0320124041] +12:40:46 [ 11] [ 6] [747608] +12:40:46 [ 12] [ 6] [124041] +12:40:46 [ 13] [ 4] [0320] +12:40:46 [ 15] [ 4] [0320] +12:40:46 [ 18] [ 4] [6011] +12:40:46 [ 22] [ 3] [900] +12:40:46 [ 25] [ 2] [02] +12:40:46 [ 28] [ 9] [D00002000] +12:40:46 [ 32] [ 6] [621354] +12:40:46 [ 35] [ 37] [6688990040137844=98041261955936700000] +12:40:46 [ 37] [ 12] [507903587023] +12:40:46 [ 41] [ 8] [09001500] +12:40:46 [ 42] [ 15] [NATIVE ] +12:40:46 [ 43] [ 40] [Friendship Bridge Xaythany LAO] +12:40:46 [ 49] [ 3] [418] +12:40:46 [ 52] [ 16] [6B471A3AE8EB7229] +12:40:46 ============================================================================ +12:40:46 + + +waiting on router queue for slot.... +12:40:46 Sending to : <4> +12:40:46 ============================================================================ +12:40:47 ============================================================================ +12:40:47 Slot Id : <447> +12:40:47 Transaction Type : RESPONSE +12:40:47 Received From : +12:40:47 ============================================================================ +12:40:47 FNo. Len. Field Value +12:40:47 ============================================================================ +12:40:47 [ 1] [ 4] [0210] +12:40:47 [ 2] [ 16] [6688990040137844] +12:40:47 [ 3] [ 6] [010000] +12:40:47 [ 4] [ 12] [000100000000] +12:40:47 [ 11] [ 6] [747608] +12:40:47 [ 12] [ 6] [124041] +12:40:47 [ 15] [ 4] [0320] +12:40:47 [ 18] [ 4] [6011] +12:40:47 [ 32] [ 6] [621354] +12:40:47 [ 35] [ 37] [6688990040137844=98041261955936700000] +12:40:47 [ 37] [ 12] [507903587023] +12:40:47 [ 38] [ 6] [614962] +12:40:47 [ 39] [ 2] [00] +12:40:47 [ 41] [ 8] [09001500] +12:40:47 [ 49] [ 3] [418] +12:40:47 [ 54] [ 20] [0002840C000000041777] +12:40:47 ============================================================================ +12:40:47 Sending to : +12:40:47 ============================================================================ +12:40:47 + + +waiting on router queue for slot.... +12:40:48 ============================================================================ +12:40:48 Slot Id : <447> +12:40:48 Transaction Type : RESPONSE +12:40:48 Received From : +12:40:48 ============================================================================ +12:40:48 FNo. Len. Field Value +12:40:48 ============================================================================ +12:40:48 [ 1] [ 4] [0210] +12:40:48 [ 2] [ 16] [6688990040137844] +12:40:48 [ 3] [ 6] [010000] +12:40:48 [ 4] [ 12] [000100000000] +12:40:48 [ 11] [ 6] [747608] +12:40:48 [ 12] [ 6] [124041] +12:40:48 [ 15] [ 4] [0320] +12:40:48 [ 18] [ 4] [6011] +12:40:48 [ 32] [ 6] [621354] +12:40:48 [ 35] [ 37] [6688990040137844=98041261955936700000] +12:40:48 [ 37] [ 12] [507903587023] +12:40:48 [ 38] [ 6] [614962] +12:40:48 [ 39] [ 2] [00] +12:40:48 [ 41] [ 8] [09001500] +12:40:48 [ 49] [ 3] [418] +12:40:48 [ 54] [ 20] [0002840C000000041777] +12:40:48 ============================================================================ +12:40:48 Calculate Source COMM Id = 0 +12:40:48 ============================================================================ +12:40:48 + + +waiting on router queue for slot.... +12:40:50 ============================================================================ +12:40:50 Slot Id : <392> +12:40:50 Transaction Type : REQUEST +12:40:50 Received From : +12:40:50 ============================================================================ +12:40:50 FNo. Len. Field Value +12:40:50 ============================================================================ +12:40:50 [ 1] [ 4] [0800] +12:40:50 [ 7] [ 10] [0320124037] +12:40:50 [ 11] [ 6] [032292] +12:40:50 [ 37] [ 12] [507912032292] +12:40:50 [ 70] [ 3] [ ] +12:40:50 ============================================================================ +12:40:50 + + +waiting on router queue for slot.... +12:40:50 Sending to : +12:40:50 ============================================================================ +12:40:50 ============================================================================ +12:40:50 Slot Id : <392> +12:40:50 Transaction Type : RESPONSE +12:40:50 Received From : +12:40:50 ============================================================================ +12:40:50 FNo. Len. Field Value +12:40:50 ============================================================================ +12:40:50 [ 1] [ 4] [0810] +12:40:50 [ 7] [ 10] [0320124037] +12:40:50 [ 11] [ 6] [032292] +12:40:50 [ 37] [ 12] [507912032292] +12:40:50 [ 39] [ 2] [91] +12:40:50 [ 70] [ 3] [ ] +12:40:50 ============================================================================ +12:40:50 Calculate Source COMM Id = 3 +12:40:50 ============================================================================ +12:40:50 + + +waiting on router queue for slot.... +12:40:54 ============================================================================ +12:40:54 Slot Id : <450> +12:40:54 Transaction Type : REQUEST +12:40:54 Received From : +12:40:54 ============================================================================ +12:40:54 FNo. Len. Field Value +12:40:54 ============================================================================ +12:40:54 [ 1] [ 4] [0800] +12:40:54 [ 7] [ 10] [0320054002] +12:40:54 [ 11] [ 6] [156362] +12:40:54 [ 70] [ 3] [301] +12:40:54 ============================================================================ +12:40:54 + + +waiting on router queue for slot.... +12:40:54 Sending to : +12:40:54 ============================================================================ +12:40:54 ============================================================================ +12:40:54 Slot Id : <450> +12:40:54 Transaction Type : RESPONSE +12:40:54 Received From : +12:40:54 ============================================================================ +12:40:54 FNo. Len. Field Value +12:40:54 ============================================================================ +12:40:54 [ 1] [ 4] [0810] +12:40:54 [ 7] [ 10] [0320054002] +12:40:54 [ 11] [ 6] [156362] +12:40:54 [ 39] [ 2] [00] +12:40:54 [ 70] [ 3] [301] +12:40:54 ============================================================================ +12:40:54 Calculate Source COMM Id = 2 +12:40:54 ============================================================================ +12:40:54 + + +waiting on router queue for slot.... +12:41:07 ============================================================================ +12:41:07 Slot Id : <417> +12:41:07 Transaction Type : REQUEST +12:41:07 Received From : +12:41:07 ============================================================================ +12:41:07 FNo. Len. Field Value +12:41:07 ============================================================================ +12:41:07 [ 1] [ 4] [0800] +12:41:07 [ 7] [ 10] [0320054014] +12:41:07 [ 11] [ 6] [156363] +12:41:07 [ 70] [ 3] [301] +12:41:07 ============================================================================ +12:41:07 + + +waiting on router queue for slot.... +12:41:07 Sending to : +12:41:07 ============================================================================ +12:41:07 ============================================================================ +12:41:07 Slot Id : <417> +12:41:07 Transaction Type : RESPONSE +12:41:07 Received From : +12:41:07 ============================================================================ +12:41:07 FNo. Len. Field Value +12:41:07 ============================================================================ +12:41:07 [ 1] [ 4] [0810] +12:41:07 [ 7] [ 10] [0320054014] +12:41:07 [ 11] [ 6] [156363] +12:41:07 [ 39] [ 2] [00] +12:41:07 [ 70] [ 3] [301] +12:41:07 ============================================================================ +12:41:07 Calculate Source COMM Id = 2 +12:41:07 ============================================================================ +12:41:07 + + +waiting on router queue for slot.... +12:41:10 ============================================================================ +12:41:10 Slot Id : <391> +12:41:10 Transaction Type : REQUEST +12:41:10 Received From : +12:41:10 ============================================================================ +12:41:10 FNo. Len. Field Value +12:41:10 ============================================================================ +12:41:10 [ 1] [ 4] [0800] +12:41:10 [ 2] [ 5] [02531] +12:41:10 [ 3] [ 6] [579128] +12:41:10 [ 7] [ 10] [0320054110] +12:41:10 [ 11] [ 6] [807148] +12:41:10 [ 15] [ 10] [0320054110] +12:41:10 [ 37] [ 11] [57912807148] +12:41:10 [ 70] [ 3] [001] +12:41:10 ============================================================================ +12:41:10 + + +waiting on router queue for slot.... +12:41:10 ============================================================================ +12:41:10 Slot Id : <391> +12:41:10 Transaction Type : RESPONSE +12:41:10 Received From : +12:41:10 ============================================================================ +12:41:10 FNo. Len. Field Value +12:41:10 ============================================================================ +12:41:10 [ 1] [ 4] [0810] +12:41:10 [ 7] [ 10] [0320054110] +12:41:10 [ 11] [ 6] [807148] +12:41:10 [ 15] [ 4] [0320] +12:41:10 [ 37] [ 12] [57912807148] +12:41:10 [ 39] [ 2] [00] +12:41:10 [ 70] [ 3] [001] +12:41:10 ============================================================================ +12:41:10 Sending to : +12:41:10 ============================================================================ +12:41:10 + + +waiting on router queue for slot.... +12:41:21 ============================================================================ +12:41:21 Slot Id : <443> +12:41:21 Transaction Type : REQUEST +12:41:21 Received From : +12:41:21 ============================================================================ +12:41:21 FNo. Len. Field Value +12:41:21 ============================================================================ +12:41:21 [ 1] [ 4] [0800] +12:41:21 [ 7] [ 10] [0320053912] +12:41:21 [ 11] [ 6] [010810] +12:41:21 [ 37] [ 12] [57912010810] +12:41:21 [ 70] [ 3] [301] +12:41:21 ============================================================================ +12:41:21 + + +waiting on router queue for slot.... +12:41:21 Sending to : +12:41:21 ============================================================================ +12:41:21 ============================================================================ +12:41:21 Slot Id : <443> +12:41:21 Transaction Type : RESPONSE +12:41:21 Received From : +12:41:21 ============================================================================ +12:41:21 FNo. Len. Field Value +12:41:21 ============================================================================ +12:41:21 [ 1] [ 4] [0810] +12:41:21 [ 7] [ 10] [0320053912] +12:41:21 [ 11] [ 6] [010810] +12:41:21 [ 37] [ 12] [579120108100] +12:41:21 [ 39] [ 2] [00] +12:41:21 [ 70] [ 3] [810] +12:41:21 ============================================================================ +12:41:21 Calculate Source COMM Id = 4 +12:41:21 ============================================================================ +12:41:21 + + +waiting on router queue for slot.... +12:41:23 ============================================================================ +12:41:23 Slot Id : <377> +12:41:23 Transaction Type : REQUEST +12:41:23 Received From : +12:41:23 ============================================================================ +12:41:23 FNo. Len. Field Value +12:41:23 ============================================================================ +12:41:23 [ 1] [ 4] [0800] +12:41:23 [ 7] [ 10] [0320054030] +12:41:23 [ 11] [ 6] [156364] +12:41:23 [ 70] [ 3] [301] +12:41:23 ============================================================================ +12:41:23 + + +waiting on router queue for slot.... +12:41:23 Sending to : +12:41:23 ============================================================================ +12:41:23 ============================================================================ +12:41:23 Slot Id : <377> +12:41:23 Transaction Type : RESPONSE +12:41:23 Received From : +12:41:23 ============================================================================ +12:41:23 FNo. Len. Field Value +12:41:23 ============================================================================ +12:41:23 [ 1] [ 4] [0810] +12:41:23 [ 7] [ 10] [0320054030] +12:41:23 [ 11] [ 6] [156364] +12:41:23 [ 39] [ 2] [00] +12:41:23 [ 70] [ 3] [301] +12:41:23 ============================================================================ +12:41:23 Calculate Source COMM Id = 2 +12:41:23 ============================================================================ +12:41:23 + + +waiting on router queue for slot.... +12:41:32 ============================================================================ +12:41:32 Slot Id : <405> +12:41:32 Transaction Type : REQUEST +12:41:32 Received From : +12:41:32 ============================================================================ +12:41:32 FNo. Len. Field Value +12:41:32 ============================================================================ +12:41:32 [ 1] [ 4] [0200] +12:41:32 [ 2] [ 16] [6688990108612605] +12:41:32 [ 3] [ 6] [011000] +12:41:32 [ 4] [ 12] [000010000000] +12:41:32 [ 7] [ 10] [0320124919] +12:41:32 [ 11] [ 6] [107235] +12:41:32 [ 12] [ 6] [124919] +12:41:32 [ 13] [ 4] [0320] +12:41:32 [ 14] [ 4] [4406] +12:41:32 [ 15] [ 4] [0320] +12:41:32 [ 18] [ 4] [6011] +12:41:32 [ 22] [ 3] [900] +12:41:32 [ 25] [ 2] [02] +12:41:32 [ 28] [ 9] [D00002000] +12:41:32 [ 32] [ 6] [220699] +12:41:32 [ 35] [ 37] [6688990108612605=44061231260555200000] +12:41:32 [ 37] [ 12] [507900327841] +12:41:32 [ 41] [ 8] [01001800] +12:41:32 [ 42] [ 15] [APTRA ] +12:41:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:41:32 [ 49] [ 3] [418] +12:41:32 [ 52] [ 16] [4C082D785F74B031] +12:41:32 ============================================================================ +12:41:32 + + +waiting on router queue for slot.... +12:41:32 Sending to : +12:41:32 ============================================================================ +12:41:32 Sending to : +12:41:32 ============================================================================ +12:41:32 ============================================================================ +12:41:32 Slot Id : <405> +12:41:32 Transaction Type : REQUEST +12:41:32 Received From : +12:41:32 ============================================================================ +12:41:32 FNo. Len. Field Value +12:41:32 ============================================================================ +12:41:32 [ 1] [ 4] [0200] +12:41:32 [ 2] [ 16] [6688990108612605] +12:41:32 [ 3] [ 6] [011000] +12:41:32 [ 4] [ 12] [000010000000] +12:41:32 [ 7] [ 10] [0320124919] +12:41:32 [ 11] [ 6] [107235] +12:41:32 [ 12] [ 6] [124919] +12:41:32 [ 13] [ 4] [0320] +12:41:32 [ 14] [ 4] [4406] +12:41:32 [ 15] [ 4] [0320] +12:41:32 [ 18] [ 4] [6011] +12:41:32 [ 22] [ 3] [900] +12:41:32 [ 25] [ 2] [02] +12:41:32 [ 28] [ 9] [D00002000] +12:41:32 [ 32] [ 6] [220699] +12:41:32 [ 35] [ 37] [6688990108612605=44061231260555200000] +12:41:32 [ 37] [ 12] [507900327841] +12:41:32 [ 41] [ 8] [01001800] +12:41:32 [ 42] [ 15] [APTRA ] +12:41:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:41:32 [ 49] [ 3] [418] +12:41:32 [ 52] [ 16] [4C082D785F74B031] +12:41:32 ============================================================================ +12:41:32 + + +waiting on router queue for slot.... +12:41:32 Sending to : +12:41:32 ============================================================================ +12:41:32 ============================================================================ +12:41:32 Slot Id : <405> +12:41:32 Transaction Type : REQUEST +12:41:32 Received From : +12:41:32 ============================================================================ +12:41:32 FNo. Len. Field Value +12:41:32 ============================================================================ +12:41:32 [ 1] [ 4] [0200] +12:41:32 [ 2] [ 16] [6688990108612605] +12:41:32 [ 3] [ 6] [011000] +12:41:32 [ 4] [ 12] [000010000000] +12:41:32 [ 7] [ 10] [0320124919] +12:41:32 [ 11] [ 6] [107235] +12:41:32 [ 12] [ 6] [124919] +12:41:32 [ 13] [ 4] [0320] +12:41:32 [ 14] [ 4] [4406] +12:41:32 [ 15] [ 4] [0320] +12:41:32 [ 18] [ 4] [6011] +12:41:32 [ 22] [ 3] [900] +12:41:32 [ 25] [ 2] [02] +12:41:32 [ 28] [ 9] [D00002000] +12:41:32 [ 32] [ 6] [220699] +12:41:32 [ 35] [ 37] [6688990108612605=44061231260555200000] +12:41:32 [ 37] [ 12] [507900327841] +12:41:32 [ 41] [ 8] [01001800] +12:41:32 [ 42] [ 15] [APTRA ] +12:41:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:41:32 [ 49] [ 3] [418] +12:41:32 [ 52] [ 16] [A63EBEA7602BD316] +12:41:32 ============================================================================ +12:41:32 + + +waiting on router queue for slot.... +12:41:32 Sending to : <0> +12:41:32 ============================================================================ +12:41:32 ============================================================================ +12:41:32 Slot Id : <405> +12:41:32 Transaction Type : RESPONSE +12:41:32 Received From : +12:41:32 ============================================================================ +12:41:32 FNo. Len. Field Value +12:41:32 ============================================================================ +12:41:32 [ 1] [ 4] [0210] +12:41:32 [ 2] [ 16] [6688990108612605] +12:41:32 [ 3] [ 6] [011000] +12:41:32 [ 4] [ 12] [000010000000] +12:41:32 [ 7] [ 10] [0320124919] +12:41:32 [ 11] [ 6] [107235] +12:41:32 [ 12] [ 6] [124919] +12:41:32 [ 13] [ 4] [0320] +12:41:32 [ 15] [ 4] [0320] +12:41:32 [ 18] [ 4] [6011] +12:41:32 [ 22] [ 3] [900] +12:41:32 [ 32] [ 6] [220699] +12:41:32 [ 35] [ 37] [6688990108612605=44061231260555200000] +12:41:32 [ 37] [ 12] [507900327841] +12:41:32 [ 39] [ 2] [14] +12:41:32 [ 41] [ 8] [01001800] +12:41:32 [ 49] [ 3] [418] +12:41:32 ============================================================================ +12:41:32 Sending to : +12:41:32 ============================================================================ +12:41:32 + + +waiting on router queue for slot.... +12:41:33 ============================================================================ +12:41:33 Slot Id : <386> +12:41:33 Transaction Type : REQUEST +12:41:33 Received From : +12:41:33 ============================================================================ +12:41:33 FNo. Len. Field Value +12:41:33 ============================================================================ +12:41:33 [ 1] [ 4] [0200] +12:41:33 [ 2] [ 16] [1808930200055119] +12:41:33 [ 3] [ 6] [011000] +12:41:33 [ 4] [ 12] [000100000000] +12:41:33 [ 7] [ 10] [0320124128] +12:41:33 [ 11] [ 6] [747767] +12:41:33 [ 12] [ 6] [124128] +12:41:33 [ 13] [ 4] [0320] +12:41:33 [ 15] [ 4] [0320] +12:41:33 [ 18] [ 4] [6011] +12:41:33 [ 22] [ 3] [900] +12:41:33 [ 25] [ 2] [02] +12:41:33 [ 28] [ 9] [D00002000] +12:41:33 [ 32] [ 6] [621354] +12:41:33 [ 35] [ 27] [1808930200055119=1803500785] +12:41:33 [ 37] [ 12] [507903803431] +12:41:33 [ 41] [ 8] [01009600] +12:41:33 [ 42] [ 15] [NATIVE ] +12:41:33 [ 43] [ 40] [Prime Minister Office ChanthaboulyLAO] +12:41:33 [ 49] [ 3] [418] +12:41:33 [ 52] [ 16] [62AA85DC94ED456A] +12:41:33 ============================================================================ +12:41:33 + + +waiting on router queue for slot.... +12:41:33 Sending to : +12:41:33 ============================================================================ +12:41:33 Sending to : +12:41:33 ============================================================================ +12:41:33 ============================================================================ +12:41:33 Slot Id : <386> +12:41:33 Transaction Type : REQUEST +12:41:33 Received From : +12:41:33 ============================================================================ +12:41:33 FNo. Len. Field Value +12:41:33 ============================================================================ +12:41:33 [ 1] [ 4] [0200] +12:41:33 [ 2] [ 16] [1808930200055119] +12:41:33 [ 3] [ 6] [011000] +12:41:33 [ 4] [ 12] [000100000000] +12:41:33 [ 7] [ 10] [0320124128] +12:41:33 [ 11] [ 6] [747767] +12:41:33 [ 12] [ 6] [124128] +12:41:33 [ 13] [ 4] [0320] +12:41:33 [ 15] [ 4] [0320] +12:41:33 [ 18] [ 4] [6011] +12:41:33 [ 22] [ 3] [900] +12:41:33 [ 25] [ 2] [02] +12:41:33 [ 28] [ 9] [D00002000] +12:41:33 [ 32] [ 6] [621354] +12:41:33 [ 35] [ 27] [1808930200055119=1803500785] +12:41:33 [ 37] [ 12] [507903803431] +12:41:33 [ 41] [ 8] [01009600] +12:41:33 [ 42] [ 15] [NATIVE ] +12:41:33 [ 43] [ 40] [Prime Minister Office ChanthaboulyLAO] +12:41:33 [ 49] [ 3] [418] +12:41:33 [ 52] [ 16] [62AA85DC94ED456A] +12:41:33 ============================================================================ +12:41:33 + + +waiting on router queue for slot.... +12:41:33 Sending to : +12:41:33 ============================================================================ +12:41:33 ============================================================================ +12:41:33 Slot Id : <386> +12:41:33 Transaction Type : REQUEST +12:41:33 Received From : +12:41:33 ============================================================================ +12:41:33 FNo. Len. Field Value +12:41:33 ============================================================================ +12:41:33 [ 1] [ 4] [0200] +12:41:33 [ 2] [ 16] [1808930200055119] +12:41:33 [ 3] [ 6] [011000] +12:41:33 [ 4] [ 12] [000100000000] +12:41:33 [ 7] [ 10] [0320124128] +12:41:33 [ 11] [ 6] [747767] +12:41:33 [ 12] [ 6] [124128] +12:41:33 [ 13] [ 4] [0320] +12:41:33 [ 15] [ 4] [0320] +12:41:33 [ 18] [ 4] [6011] +12:41:33 [ 22] [ 3] [900] +12:41:33 [ 25] [ 2] [02] +12:41:33 [ 28] [ 9] [D00002000] +12:41:33 [ 32] [ 6] [621354] +12:41:33 [ 35] [ 27] [1808930200055119=1803500785] +12:41:33 [ 37] [ 12] [507903803431] +12:41:33 [ 41] [ 8] [01009600] +12:41:33 [ 42] [ 15] [NATIVE ] +12:41:33 [ 43] [ 40] [Prime Minister Office ChanthaboulyLAO] +12:41:33 [ 49] [ 3] [418] +12:41:33 [ 52] [ 16] [CA5AB41B36B69325] +12:41:33 ============================================================================ +12:41:33 + + +waiting on router queue for slot.... +12:41:33 Sending to : <2> +12:41:33 ============================================================================ +12:41:33 ============================================================================ +12:41:33 Slot Id : <405> +12:41:33 Transaction Type : RESPONSE +12:41:33 Received From : +12:41:33 ============================================================================ +12:41:33 FNo. Len. Field Value +12:41:33 ============================================================================ +12:41:33 [ 1] [ 4] [0210] +12:41:33 [ 2] [ 16] [6688990108612605] +12:41:33 [ 3] [ 6] [011000] +12:41:33 [ 4] [ 12] [000010000000] +12:41:33 [ 7] [ 10] [0320124919] +12:41:33 [ 11] [ 6] [107235] +12:41:33 [ 12] [ 6] [124919] +12:41:33 [ 13] [ 4] [0320] +12:41:33 [ 15] [ 4] [0320] +12:41:33 [ 18] [ 4] [6011] +12:41:33 [ 22] [ 3] [900] +12:41:33 [ 32] [ 6] [220699] +12:41:33 [ 35] [ 37] [6688990108612605=44061231260555200000] +12:41:33 [ 37] [ 12] [507900327841] +12:41:33 [ 39] [ 2] [14] +12:41:33 [ 41] [ 8] [01001800] +12:41:33 [ 49] [ 3] [418] +12:41:33 ============================================================================ +12:41:33 Calculate Source COMM Id = 1 +12:41:33 ============================================================================ +12:41:33 + + +waiting on router queue for slot.... +12:41:37 ============================================================================ +12:41:37 Slot Id : <386> +12:41:37 Transaction Type : RESPONSE +12:41:37 Received From : +12:41:37 ============================================================================ +12:41:37 FNo. Len. Field Value +12:41:37 ============================================================================ +12:41:37 [ 1] [ 4] [0210] +12:41:37 [ 2] [ 16] [1808930200055119] +12:41:37 [ 3] [ 6] [011000] +12:41:37 [ 4] [ 12] [000100000000] +12:41:37 [ 6] [ 12] [000100000000] +12:41:37 [ 7] [ 10] [0320124128] +12:41:37 [ 11] [ 6] [747767] +12:41:37 [ 12] [ 6] [124128] +12:41:37 [ 13] [ 4] [0320] +12:41:37 [ 18] [ 4] [6011] +12:41:37 [ 19] [ 3] [418] +12:41:37 [ 22] [ 3] [021] +12:41:37 [ 32] [ 6] [621354] +12:41:37 [ 35] [ 27] [1808930200055119=1803500785] +12:41:37 [ 37] [ 12] [507903803431] +12:41:37 [ 38] [ 6] [747767] +12:41:37 [ 39] [ 2] [00] +12:41:37 [ 41] [ 8] [01009600] +12:41:37 [ 49] [ 3] [418] +12:41:37 [ 52] [ 16] [CA5AB41B36B69325] +12:41:37 [ 54] [ 20] [1001418C000297200000] +12:41:37 ============================================================================ +12:41:37 Sending to : +12:41:37 ============================================================================ +12:41:37 + + +waiting on router queue for slot.... +12:41:38 ============================================================================ +12:41:38 Slot Id : <386> +12:41:38 Transaction Type : RESPONSE +12:41:38 Received From : +12:41:38 ============================================================================ +12:41:38 FNo. Len. Field Value +12:41:38 ============================================================================ +12:41:38 [ 1] [ 4] [0210] +12:41:38 [ 2] [ 16] [1808930200055119] +12:41:38 [ 3] [ 6] [011000] +12:41:38 [ 4] [ 12] [000100000000] +12:41:38 [ 6] [ 12] [000100000000] +12:41:38 [ 7] [ 10] [0320124128] +12:41:38 [ 11] [ 6] [747767] +12:41:38 [ 12] [ 6] [124128] +12:41:38 [ 13] [ 4] [0320] +12:41:38 [ 18] [ 4] [6011] +12:41:38 [ 19] [ 3] [418] +12:41:38 [ 22] [ 3] [021] +12:41:38 [ 32] [ 6] [621354] +12:41:38 [ 35] [ 27] [1808930200055119=1803500785] +12:41:38 [ 37] [ 12] [507903803431] +12:41:38 [ 38] [ 6] [747767] +12:41:38 [ 39] [ 2] [00] +12:41:38 [ 41] [ 8] [01009600] +12:41:38 [ 49] [ 3] [418] +12:41:38 [ 52] [ 16] [CA5AB41B36B69325] +12:41:38 [ 54] [ 20] [1001418C000297200000] +12:41:38 ============================================================================ +12:41:38 Calculate Source COMM Id = 0 +12:41:38 ============================================================================ +12:41:38 + + +waiting on router queue for slot.... +12:41:43 ============================================================================ +12:41:43 Slot Id : <446> +12:41:43 Transaction Type : REQUEST +12:41:43 Received From : +12:41:43 ============================================================================ +12:41:43 FNo. Len. Field Value +12:41:43 ============================================================================ +12:41:43 [ 1] [ 4] [0200] +12:41:43 [ 2] [ 16] [6688990040163865] +12:41:43 [ 3] [ 6] [301000] +12:41:43 [ 4] [ 12] [000000000000] +12:41:43 [ 7] [ 10] [0320124139] +12:41:43 [ 11] [ 6] [747805] +12:41:43 [ 12] [ 6] [124139] +12:41:43 [ 13] [ 4] [0320] +12:41:43 [ 15] [ 4] [0320] +12:41:43 [ 18] [ 4] [6011] +12:41:43 [ 22] [ 3] [900] +12:41:43 [ 25] [ 2] [02] +12:41:43 [ 28] [ 9] [D00000000] +12:41:43 [ 32] [ 6] [621354] +12:41:43 [ 35] [ 37] [6688990040163865=98051261560907500000] +12:41:43 [ 37] [ 12] [507905170008] +12:41:43 [ 41] [ 8] [01012900] +12:41:43 [ 42] [ 15] [NATIVE ] +12:41:43 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +12:41:43 [ 49] [ 3] [418] +12:41:43 [ 52] [ 16] [DE1DA1D035102C15] +12:41:43 ============================================================================ +12:41:43 + + +waiting on router queue for slot.... +12:41:43 Sending to : +12:41:43 ============================================================================ +12:41:43 Sending to : +12:41:43 ============================================================================ +12:41:43 ============================================================================ +12:41:43 Slot Id : <446> +12:41:43 Transaction Type : REQUEST +12:41:43 Received From : +12:41:43 ============================================================================ +12:41:43 FNo. Len. Field Value +12:41:43 ============================================================================ +12:41:43 [ 1] [ 4] [0200] +12:41:43 [ 2] [ 16] [6688990040163865] +12:41:43 [ 3] [ 6] [301000] +12:41:43 [ 4] [ 12] [000000000000] +12:41:43 [ 7] [ 10] [0320124139] +12:41:43 [ 11] [ 6] [747805] +12:41:43 [ 12] [ 6] [124139] +12:41:43 [ 13] [ 4] [0320] +12:41:43 [ 15] [ 4] [0320] +12:41:43 [ 18] [ 4] [6011] +12:41:43 [ 22] [ 3] [900] +12:41:43 [ 25] [ 2] [02] +12:41:43 [ 28] [ 9] [D00000000] +12:41:43 [ 32] [ 6] [621354] +12:41:43 [ 35] [ 37] [6688990040163865=98051261560907500000] +12:41:43 [ 37] [ 12] [507905170008] +12:41:43 [ 41] [ 8] [01012900] +12:41:43 [ 42] [ 15] [NATIVE ] +12:41:43 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +12:41:43 [ 49] [ 3] [418] +12:41:43 [ 52] [ 16] [DE1DA1D035102C15] +12:41:43 ============================================================================ +12:41:43 + + +waiting on router queue for slot.... +12:41:43 Sending to : +12:41:43 ============================================================================ +12:41:43 ============================================================================ +12:41:43 Slot Id : <446> +12:41:43 Transaction Type : REQUEST +12:41:43 Received From : +12:41:43 ============================================================================ +12:41:43 FNo. Len. Field Value +12:41:43 ============================================================================ +12:41:43 [ 1] [ 4] [0200] +12:41:43 [ 2] [ 16] [6688990040163865] +12:41:43 [ 3] [ 6] [301000] +12:41:43 [ 4] [ 12] [000000000000] +12:41:43 [ 7] [ 10] [0320124139] +12:41:43 [ 11] [ 6] [747805] +12:41:43 [ 12] [ 6] [124139] +12:41:43 [ 13] [ 4] [0320] +12:41:43 [ 15] [ 4] [0320] +12:41:43 [ 18] [ 4] [6011] +12:41:43 [ 22] [ 3] [900] +12:41:43 [ 25] [ 2] [02] +12:41:43 [ 28] [ 9] [D00000000] +12:41:43 [ 32] [ 6] [621354] +12:41:43 [ 35] [ 37] [6688990040163865=98051261560907500000] +12:41:43 [ 37] [ 12] [507905170008] +12:41:43 [ 41] [ 8] [01012900] +12:41:43 [ 42] [ 15] [NATIVE ] +12:41:43 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +12:41:43 [ 49] [ 3] [418] +12:41:43 [ 52] [ 16] [57E6ABFD4DAEC8F3] +12:41:43 ============================================================================ +12:41:43 + + +waiting on router queue for slot.... +12:41:43 Sending to : <4> +12:41:43 ============================================================================ +12:41:44 ============================================================================ +12:41:44 Slot Id : <446> +12:41:44 Transaction Type : RESPONSE +12:41:44 Received From : +12:41:44 ============================================================================ +12:41:44 FNo. Len. Field Value +12:41:44 ============================================================================ +12:41:44 [ 1] [ 4] [0210] +12:41:44 [ 2] [ 16] [6688990040163865] +12:41:44 [ 3] [ 6] [301000] +12:41:44 [ 4] [ 12] [000000000000] +12:41:44 [ 11] [ 6] [747805] +12:41:44 [ 12] [ 6] [124139] +12:41:44 [ 15] [ 4] [0320] +12:41:44 [ 18] [ 4] [6011] +12:41:44 [ 32] [ 6] [621354] +12:41:44 [ 35] [ 37] [6688990040163865=98051261560907500000] +12:41:44 [ 37] [ 12] [507905170008] +12:41:44 [ 38] [ 6] [493743] +12:41:44 [ 39] [ 2] [00] +12:41:44 [ 41] [ 8] [01012900] +12:41:44 [ 49] [ 3] [418] +12:41:44 [ 54] [ 20] [1002764C000000100000] +12:41:44 ============================================================================ +12:41:44 Sending to : +12:41:44 ============================================================================ +12:41:44 + + +waiting on router queue for slot.... +12:41:46 ============================================================================ +12:41:46 Slot Id : <429> +12:41:46 Transaction Type : REQUEST +12:41:46 Received From : +12:41:46 ============================================================================ +12:41:46 FNo. Len. Field Value +12:41:46 ============================================================================ +12:41:46 [ 1] [ 4] [0800] +12:41:46 [ 7] [ 10] [0320054053] +12:41:46 [ 11] [ 6] [156365] +12:41:46 [ 70] [ 3] [301] +12:41:46 ============================================================================ +12:41:46 + + +waiting on router queue for slot.... +12:41:46 Sending to : +12:41:46 ============================================================================ +12:41:46 ============================================================================ +12:41:46 Slot Id : <429> +12:41:46 Transaction Type : RESPONSE +12:41:46 Received From : +12:41:46 ============================================================================ +12:41:46 FNo. Len. Field Value +12:41:46 ============================================================================ +12:41:46 [ 1] [ 4] [0810] +12:41:46 [ 7] [ 10] [0320054053] +12:41:46 [ 11] [ 6] [156365] +12:41:46 [ 39] [ 2] [00] +12:41:46 [ 70] [ 3] [301] +12:41:46 ============================================================================ +12:41:46 Calculate Source COMM Id = 2 +12:41:46 ============================================================================ +12:41:46 + + +waiting on router queue for slot.... +12:41:46 ============================================================================ +12:41:46 Slot Id : <446> +12:41:46 Transaction Type : RESPONSE +12:41:46 Received From : +12:41:46 ============================================================================ +12:41:46 FNo. Len. Field Value +12:41:46 ============================================================================ +12:41:46 [ 1] [ 4] [0210] +12:41:46 [ 2] [ 16] [6688990040163865] +12:41:46 [ 3] [ 6] [301000] +12:41:46 [ 4] [ 12] [000000000000] +12:41:46 [ 11] [ 6] [747805] +12:41:46 [ 12] [ 6] [124139] +12:41:46 [ 15] [ 4] [0320] +12:41:46 [ 18] [ 4] [6011] +12:41:46 [ 32] [ 6] [621354] +12:41:46 [ 35] [ 37] [6688990040163865=98051261560907500000] +12:41:46 [ 37] [ 12] [507905170008] +12:41:46 [ 38] [ 6] [493743] +12:41:46 [ 39] [ 2] [00] +12:41:46 [ 41] [ 8] [01012900] +12:41:46 [ 49] [ 3] [418] +12:41:46 [ 54] [ 20] [1002764C000000100000] +12:41:46 ============================================================================ +12:41:46 Calculate Source COMM Id = 0 +12:41:46 ============================================================================ +12:41:46 + + +waiting on router queue for slot.... +12:41:49 ============================================================================ +12:41:49 Slot Id : <456> +12:41:49 Transaction Type : REQUEST +12:41:49 Received From : +12:41:49 ============================================================================ +12:41:49 FNo. Len. Field Value +12:41:49 ============================================================================ +12:41:49 [ 1] [ 4] [0200] +12:41:49 [ 2] [ 16] [6213544001860805] +12:41:49 [ 3] [ 6] [010000] +12:41:49 [ 4] [ 12] [000004000000] +12:41:49 [ 7] [ 10] [0320123940] +12:41:49 [ 11] [ 6] [944719] +12:41:49 [ 12] [ 6] [123940] +12:41:49 [ 13] [ 4] [0320] +12:41:49 [ 15] [ 4] [0320] +12:41:49 [ 18] [ 4] [6011] +12:41:49 [ 19] [ 3] [418] +12:41:49 [ 22] [ 3] [021] +12:41:49 [ 25] [ 2] [01] +12:41:49 [ 28] [ 9] [D00002000] +12:41:49 [ 32] [ 6] [668899] +12:41:49 [ 35] [ 32] [6213544001860805=491212016080359] +12:41:49 [ 37] [ 12] [507901972496] +12:41:49 [ 41] [ 8] [03012003] +12:41:49 [ 42] [ 15] [APT ] +12:41:49 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +12:41:49 [ 49] [ 3] [418] +12:41:49 [ 52] [ 16] [418A40566DCBDC09] +12:41:49 ============================================================================ +12:41:49 + + +waiting on router queue for slot.... +12:41:49 Sending to : +12:41:49 ============================================================================ +12:41:49 Sending to : +12:41:49 ============================================================================ +12:41:50 ============================================================================ +12:41:50 Slot Id : <456> +12:41:50 Transaction Type : REQUEST +12:41:50 Received From : +12:41:50 ============================================================================ +12:41:50 FNo. Len. Field Value +12:41:50 ============================================================================ +12:41:50 [ 1] [ 4] [0200] +12:41:50 [ 2] [ 16] [6213544001860805] +12:41:50 [ 3] [ 6] [010000] +12:41:50 [ 4] [ 12] [000004000000] +12:41:50 [ 7] [ 10] [0320123940] +12:41:50 [ 11] [ 6] [944719] +12:41:50 [ 12] [ 6] [123940] +12:41:50 [ 13] [ 4] [0320] +12:41:50 [ 15] [ 4] [0320] +12:41:50 [ 18] [ 4] [6011] +12:41:50 [ 19] [ 3] [418] +12:41:50 [ 22] [ 3] [021] +12:41:50 [ 25] [ 2] [01] +12:41:50 [ 28] [ 9] [D00002000] +12:41:50 [ 32] [ 6] [668899] +12:41:50 [ 35] [ 32] [6213544001860805=491212016080359] +12:41:50 [ 37] [ 12] [507901972496] +12:41:50 [ 41] [ 8] [03012003] +12:41:50 [ 42] [ 15] [APT ] +12:41:50 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +12:41:50 [ 49] [ 3] [418] +12:41:50 [ 52] [ 16] [418A40566DCBDC09] +12:41:50 ============================================================================ +12:41:50 + + +waiting on router queue for slot.... +12:41:50 Sending to : +12:41:50 ============================================================================ +12:41:50 ============================================================================ +12:41:50 Slot Id : <456> +12:41:50 Transaction Type : REQUEST +12:41:50 Received From : +12:41:50 ============================================================================ +12:41:50 FNo. Len. Field Value +12:41:50 ============================================================================ +12:41:50 [ 1] [ 4] [0200] +12:41:50 [ 2] [ 16] [6213544001860805] +12:41:50 [ 3] [ 6] [010000] +12:41:50 [ 4] [ 12] [000004000000] +12:41:50 [ 7] [ 10] [0320123940] +12:41:50 [ 11] [ 6] [944719] +12:41:50 [ 12] [ 6] [123940] +12:41:50 [ 13] [ 4] [0320] +12:41:50 [ 15] [ 4] [0320] +12:41:50 [ 18] [ 4] [6011] +12:41:50 [ 19] [ 3] [418] +12:41:50 [ 22] [ 3] [021] +12:41:50 [ 25] [ 2] [01] +12:41:50 [ 28] [ 9] [D00002000] +12:41:50 [ 32] [ 6] [668899] +12:41:50 [ 35] [ 32] [6213544001860805=491212016080359] +12:41:50 [ 37] [ 12] [507901972496] +12:41:50 [ 41] [ 8] [03012003] +12:41:50 [ 42] [ 15] [APT ] +12:41:50 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +12:41:50 [ 49] [ 3] [418] +12:41:50 [ 52] [ 16] [C0810D12001A02C7] +12:41:50 ============================================================================ +12:41:50 + + +waiting on router queue for slot.... +12:41:50 Sending to : <0> +12:41:50 ============================================================================ +12:41:51 ============================================================================ +12:41:51 Slot Id : <456> +12:41:51 Transaction Type : RESPONSE +12:41:51 Received From : +12:41:51 ============================================================================ +12:41:51 FNo. Len. Field Value +12:41:51 ============================================================================ +12:41:51 [ 1] [ 4] [0210] +12:41:51 [ 2] [ 16] [6213544001860805] +12:41:51 [ 3] [ 6] [010000] +12:41:51 [ 4] [ 12] [000004000000] +12:41:51 [ 7] [ 10] [0320123940] +12:41:51 [ 11] [ 6] [944719] +12:41:51 [ 12] [ 6] [123940] +12:41:51 [ 13] [ 4] [0320] +12:41:51 [ 15] [ 4] [0320] +12:41:51 [ 18] [ 4] [6011] +12:41:51 [ 19] [ 3] [418] +12:41:51 [ 32] [ 6] [668899] +12:41:51 [ 35] [ 32] [6213544001860805=491212016080359] +12:41:51 [ 37] [ 12] [507901972496] +12:41:51 [ 38] [ 6] [960495] +12:41:51 [ 39] [ 2] [00] +12:41:51 [ 41] [ 8] [03012003] +12:41:51 [ 49] [ 3] [418] +12:41:51 [ 54] [ 40] [0001418C0000113399870002418C000011339987] +12:41:51 ============================================================================ +12:41:51 Sending to : +12:41:51 ============================================================================ +12:41:51 + + +waiting on router queue for slot.... +12:41:52 ============================================================================ +12:41:52 Slot Id : <456> +12:41:52 Transaction Type : RESPONSE +12:41:52 Received From : +12:41:52 ============================================================================ +12:41:52 FNo. Len. Field Value +12:41:52 ============================================================================ +12:41:52 [ 1] [ 4] [0210] +12:41:52 [ 2] [ 16] [6213544001860805] +12:41:52 [ 3] [ 6] [010000] +12:41:52 [ 4] [ 12] [000004000000] +12:41:52 [ 7] [ 10] [0320123940] +12:41:52 [ 11] [ 6] [944719] +12:41:52 [ 12] [ 6] [123940] +12:41:52 [ 13] [ 4] [0320] +12:41:52 [ 15] [ 4] [0320] +12:41:52 [ 18] [ 4] [6011] +12:41:52 [ 19] [ 3] [418] +12:41:52 [ 32] [ 6] [668899] +12:41:52 [ 35] [ 32] [6213544001860805=491212016080359] +12:41:52 [ 37] [ 12] [507901972496] +12:41:52 [ 38] [ 6] [960495] +12:41:52 [ 39] [ 2] [00] +12:41:52 [ 41] [ 8] [03012003] +12:41:52 [ 49] [ 3] [418] +12:41:52 [ 54] [ 40] [0001418C0000113399870002418C000011339987] +12:41:52 ============================================================================ +12:41:52 Calculate Source COMM Id = 4 +12:41:52 ============================================================================ +12:41:52 + + +waiting on router queue for slot.... +12:41:56 ============================================================================ +12:41:56 Slot Id : <404> +12:41:56 Transaction Type : REQUEST +12:41:56 Received From : +12:41:56 ============================================================================ +12:41:56 FNo. Len. Field Value +12:41:56 ============================================================================ +12:41:56 [ 1] [ 4] [0800] +12:41:56 [ 7] [ 10] [0320054104] +12:41:56 [ 11] [ 6] [156366] +12:41:56 [ 70] [ 3] [301] +12:41:56 ============================================================================ +12:41:56 + + +waiting on router queue for slot.... +12:41:56 Sending to : +12:41:56 ============================================================================ +12:41:56 ============================================================================ +12:41:56 Slot Id : <404> +12:41:56 Transaction Type : RESPONSE +12:41:56 Received From : +12:41:56 ============================================================================ +12:41:56 FNo. Len. Field Value +12:41:56 ============================================================================ +12:41:56 [ 1] [ 4] [0810] +12:41:56 [ 7] [ 10] [0320054104] +12:41:56 [ 11] [ 6] [156366] +12:41:56 [ 39] [ 2] [00] +12:41:56 [ 70] [ 3] [301] +12:41:56 ============================================================================ +12:41:56 Calculate Source COMM Id = 2 +12:41:56 ============================================================================ +12:41:56 + + +waiting on router queue for slot.... +12:42:00 ============================================================================ +12:42:00 Slot Id : <424> +12:42:00 Transaction Type : REQUEST +12:42:00 Received From : +12:42:00 ============================================================================ +12:42:00 FNo. Len. Field Value +12:42:00 ============================================================================ +12:42:00 [ 1] [ 4] [0200] +12:42:00 [ 2] [ 16] [6213545000814743] +12:42:00 [ 3] [ 6] [010000] +12:42:00 [ 4] [ 12] [000070000000] +12:42:00 [ 7] [ 10] [0320124948] +12:42:00 [ 11] [ 6] [251216] +12:42:00 [ 12] [ 6] [124948] +12:42:00 [ 13] [ 4] [0320] +12:42:00 [ 14] [ 4] [4912] +12:42:00 [ 15] [ 4] [0320] +12:42:00 [ 18] [ 4] [6011] +12:42:00 [ 22] [ 3] [900] +12:42:00 [ 25] [ 2] [02] +12:42:00 [ 28] [ 9] [D00002000] +12:42:00 [ 32] [ 6] [220699] +12:42:00 [ 35] [ 32] [6213545000814743=491212011474258] +12:42:00 [ 37] [ 12] [507900336199] +12:42:00 [ 41] [ 8] [01001900] +12:42:00 [ 42] [ 15] [APTRA ] +12:42:00 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:42:00 [ 49] [ 3] [418] +12:42:00 [ 52] [ 16] [54CD08F97CD9A956] +12:42:00 ============================================================================ +12:42:00 + + +waiting on router queue for slot.... +12:42:00 Sending to : +12:42:00 ============================================================================ +12:42:00 Sending to : +12:42:00 ============================================================================ +12:42:01 ============================================================================ +12:42:01 Slot Id : <424> +12:42:01 Transaction Type : REQUEST +12:42:01 Received From : +12:42:01 ============================================================================ +12:42:01 FNo. Len. Field Value +12:42:01 ============================================================================ +12:42:01 [ 1] [ 4] [0200] +12:42:01 [ 2] [ 16] [6213545000814743] +12:42:01 [ 3] [ 6] [010000] +12:42:01 [ 4] [ 12] [000070000000] +12:42:01 [ 7] [ 10] [0320124948] +12:42:01 [ 11] [ 6] [251216] +12:42:01 [ 12] [ 6] [124948] +12:42:01 [ 13] [ 4] [0320] +12:42:01 [ 14] [ 4] [4912] +12:42:01 [ 15] [ 4] [0320] +12:42:01 [ 18] [ 4] [6011] +12:42:01 [ 22] [ 3] [900] +12:42:01 [ 25] [ 2] [02] +12:42:01 [ 28] [ 9] [D00002000] +12:42:01 [ 32] [ 6] [220699] +12:42:01 [ 35] [ 32] [6213545000814743=491212011474258] +12:42:01 [ 37] [ 12] [507900336199] +12:42:01 [ 41] [ 8] [01001900] +12:42:01 [ 42] [ 15] [APTRA ] +12:42:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:42:01 [ 49] [ 3] [418] +12:42:01 [ 52] [ 16] [54CD08F97CD9A956] +12:42:01 ============================================================================ +12:42:01 + + +waiting on router queue for slot.... +12:42:01 Sending to : +12:42:01 ============================================================================ +12:42:01 ============================================================================ +12:42:01 Slot Id : <424> +12:42:01 Transaction Type : REQUEST +12:42:01 Received From : +12:42:01 ============================================================================ +12:42:01 FNo. Len. Field Value +12:42:01 ============================================================================ +12:42:01 [ 1] [ 4] [0200] +12:42:01 [ 2] [ 16] [6213545000814743] +12:42:01 [ 3] [ 6] [010000] +12:42:01 [ 4] [ 12] [000070000000] +12:42:01 [ 7] [ 10] [0320124948] +12:42:01 [ 11] [ 6] [251216] +12:42:01 [ 12] [ 6] [124948] +12:42:01 [ 13] [ 4] [0320] +12:42:01 [ 14] [ 4] [4912] +12:42:01 [ 15] [ 4] [0320] +12:42:01 [ 18] [ 4] [6011] +12:42:01 [ 22] [ 3] [900] +12:42:01 [ 25] [ 2] [02] +12:42:01 [ 28] [ 9] [D00002000] +12:42:01 [ 32] [ 6] [220699] +12:42:01 [ 35] [ 32] [6213545000814743=491212011474258] +12:42:01 [ 37] [ 12] [507900336199] +12:42:01 [ 41] [ 8] [01001900] +12:42:01 [ 42] [ 15] [APTRA ] +12:42:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:42:01 [ 49] [ 3] [418] +12:42:01 [ 52] [ 16] [BCF6F4C1F0A113D5] +12:42:01 ============================================================================ +12:42:01 + + +waiting on router queue for slot.... +12:42:01 Sending to : <0> +12:42:01 ============================================================================ +12:42:02 ============================================================================ +12:42:02 Slot Id : <424> +12:42:02 Transaction Type : RESPONSE +12:42:02 Received From : +12:42:02 ============================================================================ +12:42:02 FNo. Len. Field Value +12:42:02 ============================================================================ +12:42:02 [ 1] [ 4] [0210] +12:42:02 [ 2] [ 16] [6213545000814743] +12:42:02 [ 3] [ 6] [010000] +12:42:02 [ 4] [ 12] [000070000000] +12:42:02 [ 7] [ 10] [0320124948] +12:42:02 [ 11] [ 6] [251216] +12:42:02 [ 12] [ 6] [124948] +12:42:02 [ 13] [ 4] [0320] +12:42:02 [ 15] [ 4] [0320] +12:42:02 [ 18] [ 4] [6011] +12:42:02 [ 32] [ 6] [220699] +12:42:02 [ 35] [ 32] [6213545000814743=491212011474258] +12:42:02 [ 37] [ 12] [507900336199] +12:42:02 [ 38] [ 6] [938639] +12:42:02 [ 39] [ 2] [00] +12:42:02 [ 41] [ 8] [01001900] +12:42:02 [ 49] [ 3] [418] +12:42:02 [ 54] [ 40] [0001418C0000886184540002418C000088618454] +12:42:02 ============================================================================ +12:42:02 Sending to : +12:42:02 ============================================================================ +12:42:02 + + +waiting on router queue for slot.... +12:42:03 ============================================================================ +12:42:03 Slot Id : <424> +12:42:03 Transaction Type : RESPONSE +12:42:03 Received From : +12:42:03 ============================================================================ +12:42:03 FNo. Len. Field Value +12:42:03 ============================================================================ +12:42:03 [ 1] [ 4] [0210] +12:42:03 [ 2] [ 16] [6213545000814743] +12:42:03 [ 3] [ 6] [010000] +12:42:03 [ 4] [ 12] [000070000000] +12:42:03 [ 7] [ 10] [0320124948] +12:42:03 [ 11] [ 6] [251216] +12:42:03 [ 12] [ 6] [124948] +12:42:03 [ 13] [ 4] [0320] +12:42:03 [ 15] [ 4] [0320] +12:42:03 [ 18] [ 4] [6011] +12:42:03 [ 32] [ 6] [220699] +12:42:03 [ 35] [ 32] [6213545000814743=491212011474258] +12:42:03 [ 37] [ 12] [507900336199] +12:42:03 [ 38] [ 6] [938639] +12:42:03 [ 39] [ 2] [00] +12:42:03 [ 41] [ 8] [01001900] +12:42:03 [ 49] [ 3] [418] +12:42:03 [ 54] [ 40] [0001418C0000886184540002418C000088618454] +12:42:03 ============================================================================ +12:42:03 Calculate Source COMM Id = 1 +12:42:03 ============================================================================ +12:42:03 + + +waiting on router queue for slot.... +12:42:08 ============================================================================ +12:42:08 Slot Id : <445> +12:42:08 Transaction Type : REQUEST +12:42:08 Received From : +12:42:08 ============================================================================ +12:42:08 FNo. Len. Field Value +12:42:08 ============================================================================ +12:42:08 [ 1] [ 4] [0800] +12:42:08 [ 7] [ 10] [0320054115] +12:42:08 [ 11] [ 6] [156367] +12:42:08 [ 70] [ 3] [301] +12:42:08 ============================================================================ +12:42:08 + + +waiting on router queue for slot.... +12:42:08 Sending to : +12:42:08 ============================================================================ +12:42:08 ============================================================================ +12:42:08 Slot Id : <445> +12:42:08 Transaction Type : RESPONSE +12:42:08 Received From : +12:42:08 ============================================================================ +12:42:08 FNo. Len. Field Value +12:42:08 ============================================================================ +12:42:08 [ 1] [ 4] [0810] +12:42:08 [ 7] [ 10] [0320054115] +12:42:08 [ 11] [ 6] [156367] +12:42:08 [ 39] [ 2] [00] +12:42:08 [ 70] [ 3] [301] +12:42:08 ============================================================================ +12:42:08 Calculate Source COMM Id = 2 +12:42:08 ============================================================================ +12:42:08 + + +waiting on router queue for slot.... +12:42:12 ============================================================================ +12:42:12 Slot Id : <435> +12:42:12 Transaction Type : REQUEST +12:42:12 Received From : +12:42:12 ============================================================================ +12:42:12 FNo. Len. Field Value +12:42:12 ============================================================================ +12:42:12 [ 1] [ 4] [0800] +12:42:12 [ 2] [ 5] [02531] +12:42:12 [ 3] [ 6] [579128] +12:42:12 [ 7] [ 10] [0320054212] +12:42:12 [ 11] [ 6] [807149] +12:42:12 [ 15] [ 10] [0320054212] +12:42:12 [ 37] [ 11] [57912807149] +12:42:12 [ 70] [ 3] [001] +12:42:12 ============================================================================ +12:42:12 + + +waiting on router queue for slot.... +12:42:12 ============================================================================ +12:42:12 Slot Id : <435> +12:42:12 Transaction Type : RESPONSE +12:42:12 Received From : +12:42:12 ============================================================================ +12:42:12 FNo. Len. Field Value +12:42:12 ============================================================================ +12:42:12 [ 1] [ 4] [0810] +12:42:12 [ 7] [ 10] [0320054212] +12:42:12 [ 11] [ 6] [807149] +12:42:12 [ 15] [ 4] [0320] +12:42:12 [ 37] [ 12] [57912807149] +12:42:12 [ 39] [ 2] [00] +12:42:12 [ 70] [ 3] [001] +12:42:12 ============================================================================ +12:42:12 Sending to : +12:42:12 ============================================================================ +12:42:12 + + +waiting on router queue for slot.... +12:42:15 ============================================================================ +12:42:15 Slot Id : <438> +12:42:15 Transaction Type : REQUEST +12:42:15 Received From : +12:42:15 ============================================================================ +12:42:15 FNo. Len. Field Value +12:42:15 ============================================================================ +12:42:15 [ 1] [ 4] [0200] +12:42:15 [ 2] [ 16] [6688990060012984] +12:42:15 [ 3] [ 6] [301000] +12:42:15 [ 4] [ 12] [000000000000] +12:42:15 [ 7] [ 10] [0320124211] +12:42:15 [ 11] [ 6] [747919] +12:42:15 [ 12] [ 6] [124211] +12:42:15 [ 13] [ 4] [0320] +12:42:15 [ 15] [ 4] [0320] +12:42:15 [ 18] [ 4] [6011] +12:42:15 [ 22] [ 3] [900] +12:42:15 [ 25] [ 2] [02] +12:42:15 [ 28] [ 9] [D00000000] +12:42:15 [ 32] [ 6] [621354] +12:42:15 [ 35] [ 37] [6688990060012984=97121261679189400000] +12:42:15 [ 37] [ 12] [507904140796] +12:42:15 [ 41] [ 8] [20000900] +12:42:15 [ 42] [ 15] [NATIVE ] +12:42:15 [ 43] [ 40] [Saravane Branch03 Saravane LAO] +12:42:15 [ 49] [ 3] [418] +12:42:15 [ 52] [ 16] [9EBB3B2B2D00AEB7] +12:42:15 ============================================================================ +12:42:15 + + +waiting on router queue for slot.... +12:42:15 Sending to : +12:42:15 ============================================================================ +12:42:15 Sending to : +12:42:15 ============================================================================ +12:42:15 ============================================================================ +12:42:15 Slot Id : <438> +12:42:15 Transaction Type : REQUEST +12:42:15 Received From : +12:42:15 ============================================================================ +12:42:15 FNo. Len. Field Value +12:42:15 ============================================================================ +12:42:15 [ 1] [ 4] [0200] +12:42:15 [ 2] [ 16] [6688990060012984] +12:42:15 [ 3] [ 6] [301000] +12:42:15 [ 4] [ 12] [000000000000] +12:42:15 [ 7] [ 10] [0320124211] +12:42:15 [ 11] [ 6] [747919] +12:42:15 [ 12] [ 6] [124211] +12:42:15 [ 13] [ 4] [0320] +12:42:15 [ 15] [ 4] [0320] +12:42:15 [ 18] [ 4] [6011] +12:42:15 [ 22] [ 3] [900] +12:42:15 [ 25] [ 2] [02] +12:42:15 [ 28] [ 9] [D00000000] +12:42:15 [ 32] [ 6] [621354] +12:42:15 [ 35] [ 37] [6688990060012984=97121261679189400000] +12:42:15 [ 37] [ 12] [507904140796] +12:42:15 [ 41] [ 8] [20000900] +12:42:15 [ 42] [ 15] [NATIVE ] +12:42:15 [ 43] [ 40] [Saravane Branch03 Saravane LAO] +12:42:15 [ 49] [ 3] [418] +12:42:15 [ 52] [ 16] [9EBB3B2B2D00AEB7] +12:42:15 ============================================================================ +12:42:15 + + +waiting on router queue for slot.... +12:42:15 Sending to : +12:42:15 ============================================================================ +12:42:15 ============================================================================ +12:42:15 Slot Id : <438> +12:42:15 Transaction Type : REQUEST +12:42:15 Received From : +12:42:15 ============================================================================ +12:42:15 FNo. Len. Field Value +12:42:15 ============================================================================ +12:42:15 [ 1] [ 4] [0200] +12:42:15 [ 2] [ 16] [6688990060012984] +12:42:15 [ 3] [ 6] [301000] +12:42:15 [ 4] [ 12] [000000000000] +12:42:15 [ 7] [ 10] [0320124211] +12:42:15 [ 11] [ 6] [747919] +12:42:15 [ 12] [ 6] [124211] +12:42:15 [ 13] [ 4] [0320] +12:42:15 [ 15] [ 4] [0320] +12:42:15 [ 18] [ 4] [6011] +12:42:15 [ 22] [ 3] [900] +12:42:15 [ 25] [ 2] [02] +12:42:15 [ 28] [ 9] [D00000000] +12:42:15 [ 32] [ 6] [621354] +12:42:15 [ 35] [ 37] [6688990060012984=97121261679189400000] +12:42:15 [ 37] [ 12] [507904140796] +12:42:15 [ 41] [ 8] [20000900] +12:42:15 [ 42] [ 15] [NATIVE ] +12:42:15 [ 43] [ 40] [Saravane Branch03 Saravane LAO] +12:42:15 [ 49] [ 3] [418] +12:42:15 [ 52] [ 16] [C0C600928AAC9D03] +12:42:15 ============================================================================ +12:42:15 + + +waiting on router queue for slot.... +12:42:15 Sending to : <4> +12:42:15 ============================================================================ +12:42:16 ============================================================================ +12:42:16 Slot Id : <438> +12:42:16 Transaction Type : RESPONSE +12:42:16 Received From : +12:42:16 ============================================================================ +12:42:16 FNo. Len. Field Value +12:42:16 ============================================================================ +12:42:16 [ 1] [ 4] [0210] +12:42:16 [ 2] [ 16] [6688990060012984] +12:42:16 [ 3] [ 6] [301000] +12:42:16 [ 4] [ 12] [000000000000] +12:42:16 [ 11] [ 6] [747919] +12:42:16 [ 12] [ 6] [124211] +12:42:16 [ 15] [ 4] [0320] +12:42:16 [ 18] [ 4] [6011] +12:42:16 [ 32] [ 6] [621354] +12:42:16 [ 35] [ 37] [6688990060012984=97121261679189400000] +12:42:16 [ 37] [ 12] [507904140796] +12:42:16 [ 38] [ 6] [308237] +12:42:16 [ 39] [ 2] [00] +12:42:16 [ 41] [ 8] [20000900] +12:42:16 [ 49] [ 3] [418] +12:42:16 [ 54] [ 20] [1002418C000002097864] +12:42:16 ============================================================================ +12:42:16 Sending to : +12:42:16 ============================================================================ +12:42:16 + + +waiting on router queue for slot.... +12:42:17 ============================================================================ +12:42:17 Slot Id : <438> +12:42:17 Transaction Type : RESPONSE +12:42:17 Received From : +12:42:17 ============================================================================ +12:42:17 FNo. Len. Field Value +12:42:17 ============================================================================ +12:42:17 [ 1] [ 4] [0210] +12:42:17 [ 2] [ 16] [6688990060012984] +12:42:17 [ 3] [ 6] [301000] +12:42:17 [ 4] [ 12] [000000000000] +12:42:17 [ 11] [ 6] [747919] +12:42:17 [ 12] [ 6] [124211] +12:42:17 [ 15] [ 4] [0320] +12:42:17 [ 18] [ 4] [6011] +12:42:17 [ 32] [ 6] [621354] +12:42:17 [ 35] [ 37] [6688990060012984=97121261679189400000] +12:42:17 [ 37] [ 12] [507904140796] +12:42:17 [ 38] [ 6] [308237] +12:42:17 [ 39] [ 2] [00] +12:42:17 [ 41] [ 8] [20000900] +12:42:17 [ 49] [ 3] [418] +12:42:17 [ 54] [ 20] [1002418C000002097864] +12:42:17 ============================================================================ +12:42:17 Calculate Source COMM Id = 0 +12:42:17 ============================================================================ +12:42:17 + + +waiting on router queue for slot.... +12:42:24 ============================================================================ +12:42:24 Slot Id : <442> +12:42:24 Transaction Type : REQUEST +12:42:24 Received From : +12:42:24 ============================================================================ +12:42:24 FNo. Len. Field Value +12:42:24 ============================================================================ +12:42:24 [ 1] [ 4] [0800] +12:42:24 [ 7] [ 10] [0320054131] +12:42:24 [ 11] [ 6] [156368] +12:42:24 [ 70] [ 3] [301] +12:42:24 ============================================================================ +12:42:24 + + +waiting on router queue for slot.... +12:42:24 Sending to : +12:42:24 ============================================================================ +12:42:24 ============================================================================ +12:42:24 Slot Id : <442> +12:42:24 Transaction Type : RESPONSE +12:42:24 Received From : +12:42:24 ============================================================================ +12:42:24 FNo. Len. Field Value +12:42:24 ============================================================================ +12:42:24 [ 1] [ 4] [0810] +12:42:24 [ 7] [ 10] [0320054131] +12:42:24 [ 11] [ 6] [156368] +12:42:24 [ 39] [ 2] [00] +12:42:24 [ 70] [ 3] [301] +12:42:24 ============================================================================ +12:42:24 Calculate Source COMM Id = 2 +12:42:24 ============================================================================ +12:42:24 + + +waiting on router queue for slot.... +12:42:25 ============================================================================ +12:42:25 Slot Id : <434> +12:42:25 Transaction Type : REQUEST +12:42:25 Received From : +12:42:25 ============================================================================ +12:42:25 FNo. Len. Field Value +12:42:25 ============================================================================ +12:42:25 [ 1] [ 4] [0200] +12:42:25 [ 2] [ 16] [6688990108612605] +12:42:25 [ 3] [ 6] [010000] +12:42:25 [ 4] [ 12] [000005000000] +12:42:25 [ 7] [ 10] [0320125012] +12:42:25 [ 11] [ 6] [107238] +12:42:25 [ 12] [ 6] [125012] +12:42:25 [ 13] [ 4] [0320] +12:42:25 [ 14] [ 4] [4406] +12:42:25 [ 15] [ 4] [0320] +12:42:25 [ 18] [ 4] [6011] +12:42:25 [ 22] [ 3] [900] +12:42:25 [ 25] [ 2] [02] +12:42:25 [ 28] [ 9] [D00002000] +12:42:25 [ 32] [ 6] [220699] +12:42:25 [ 35] [ 37] [6688990108612605=44061231260555200000] +12:42:25 [ 37] [ 12] [507900327843] +12:42:25 [ 41] [ 8] [01001800] +12:42:25 [ 42] [ 15] [APTRA ] +12:42:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:42:25 [ 49] [ 3] [418] +12:42:25 [ 52] [ 16] [4C082D785F74B031] +12:42:25 ============================================================================ +12:42:25 + + +waiting on router queue for slot.... +12:42:25 Sending to : +12:42:25 ============================================================================ +12:42:25 Sending to : +12:42:25 ============================================================================ +12:42:26 ============================================================================ +12:42:26 Slot Id : <434> +12:42:26 Transaction Type : REQUEST +12:42:26 Received From : +12:42:26 ============================================================================ +12:42:26 FNo. Len. Field Value +12:42:26 ============================================================================ +12:42:26 [ 1] [ 4] [0200] +12:42:26 [ 2] [ 16] [6688990108612605] +12:42:26 [ 3] [ 6] [010000] +12:42:26 [ 4] [ 12] [000005000000] +12:42:26 [ 7] [ 10] [0320125012] +12:42:26 [ 11] [ 6] [107238] +12:42:26 [ 12] [ 6] [125012] +12:42:26 [ 13] [ 4] [0320] +12:42:26 [ 14] [ 4] [4406] +12:42:26 [ 15] [ 4] [0320] +12:42:26 [ 18] [ 4] [6011] +12:42:26 [ 22] [ 3] [900] +12:42:26 [ 25] [ 2] [02] +12:42:26 [ 28] [ 9] [D00002000] +12:42:26 [ 32] [ 6] [220699] +12:42:26 [ 35] [ 37] [6688990108612605=44061231260555200000] +12:42:26 [ 37] [ 12] [507900327843] +12:42:26 [ 41] [ 8] [01001800] +12:42:26 [ 42] [ 15] [APTRA ] +12:42:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:42:26 [ 49] [ 3] [418] +12:42:26 [ 52] [ 16] [4C082D785F74B031] +12:42:26 ============================================================================ +12:42:26 + + +waiting on router queue for slot.... +12:42:26 Sending to : +12:42:26 ============================================================================ +12:42:26 ============================================================================ +12:42:26 Slot Id : <434> +12:42:26 Transaction Type : REQUEST +12:42:26 Received From : +12:42:26 ============================================================================ +12:42:26 FNo. Len. Field Value +12:42:26 ============================================================================ +12:42:26 [ 1] [ 4] [0200] +12:42:26 [ 2] [ 16] [6688990108612605] +12:42:26 [ 3] [ 6] [010000] +12:42:26 [ 4] [ 12] [000005000000] +12:42:26 [ 7] [ 10] [0320125012] +12:42:26 [ 11] [ 6] [107238] +12:42:26 [ 12] [ 6] [125012] +12:42:26 [ 13] [ 4] [0320] +12:42:26 [ 14] [ 4] [4406] +12:42:26 [ 15] [ 4] [0320] +12:42:26 [ 18] [ 4] [6011] +12:42:26 [ 22] [ 3] [900] +12:42:26 [ 25] [ 2] [02] +12:42:26 [ 28] [ 9] [D00002000] +12:42:26 [ 32] [ 6] [220699] +12:42:26 [ 35] [ 37] [6688990108612605=44061231260555200000] +12:42:26 [ 37] [ 12] [507900327843] +12:42:26 [ 41] [ 8] [01001800] +12:42:26 [ 42] [ 15] [APTRA ] +12:42:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:42:26 [ 49] [ 3] [418] +12:42:26 [ 52] [ 16] [A63EBEA7602BD316] +12:42:26 ============================================================================ +12:42:26 + + +waiting on router queue for slot.... +12:42:26 Sending to : <0> +12:42:26 ============================================================================ +12:42:26 ============================================================================ +12:42:26 Slot Id : <434> +12:42:26 Transaction Type : RESPONSE +12:42:26 Received From : +12:42:26 ============================================================================ +12:42:26 FNo. Len. Field Value +12:42:26 ============================================================================ +12:42:26 [ 1] [ 4] [0210] +12:42:26 [ 2] [ 16] [6688990108612605] +12:42:26 [ 3] [ 6] [010000] +12:42:26 [ 4] [ 12] [000005000000] +12:42:26 [ 7] [ 10] [0320125012] +12:42:26 [ 11] [ 6] [107238] +12:42:26 [ 12] [ 6] [125012] +12:42:26 [ 13] [ 4] [0320] +12:42:26 [ 15] [ 4] [0320] +12:42:26 [ 18] [ 4] [6011] +12:42:26 [ 22] [ 3] [900] +12:42:26 [ 32] [ 6] [220699] +12:42:26 [ 35] [ 37] [6688990108612605=44061231260555200000] +12:42:26 [ 37] [ 12] [507900327843] +12:42:26 [ 39] [ 2] [14] +12:42:26 [ 41] [ 8] [01001800] +12:42:26 [ 49] [ 3] [418] +12:42:26 ============================================================================ +12:42:26 Sending to : +12:42:26 ============================================================================ +12:42:26 + + +waiting on router queue for slot.... +12:42:27 ============================================================================ +12:42:27 Slot Id : <434> +12:42:27 Transaction Type : RESPONSE +12:42:27 Received From : +12:42:27 ============================================================================ +12:42:27 FNo. Len. Field Value +12:42:27 ============================================================================ +12:42:27 [ 1] [ 4] [0210] +12:42:27 [ 2] [ 16] [6688990108612605] +12:42:27 [ 3] [ 6] [010000] +12:42:27 [ 4] [ 12] [000005000000] +12:42:27 [ 7] [ 10] [0320125012] +12:42:27 [ 11] [ 6] [107238] +12:42:27 [ 12] [ 6] [125012] +12:42:27 [ 13] [ 4] [0320] +12:42:27 [ 15] [ 4] [0320] +12:42:27 [ 18] [ 4] [6011] +12:42:27 [ 22] [ 3] [900] +12:42:27 [ 32] [ 6] [220699] +12:42:27 [ 35] [ 37] [6688990108612605=44061231260555200000] +12:42:27 [ 37] [ 12] [507900327843] +12:42:27 [ 39] [ 2] [14] +12:42:27 [ 41] [ 8] [01001800] +12:42:27 [ 49] [ 3] [418] +12:42:27 ============================================================================ +12:42:27 Calculate Source COMM Id = 1 +12:42:27 ============================================================================ +12:42:27 + + +waiting on router queue for slot.... +12:42:35 ============================================================================ +12:42:35 Slot Id : <427> +12:42:35 Transaction Type : REQUEST +12:42:35 Received From : +12:42:35 ============================================================================ +12:42:35 FNo. Len. Field Value +12:42:35 ============================================================================ +12:42:35 [ 1] [ 4] [0800] +12:42:35 [ 7] [ 10] [0320054143] +12:42:35 [ 11] [ 6] [156369] +12:42:35 [ 70] [ 3] [301] +12:42:35 ============================================================================ +12:42:35 + + +waiting on router queue for slot.... +12:42:35 Sending to : +12:42:35 ============================================================================ +12:42:35 ============================================================================ +12:42:35 Slot Id : <427> +12:42:35 Transaction Type : RESPONSE +12:42:35 Received From : +12:42:35 ============================================================================ +12:42:35 FNo. Len. Field Value +12:42:35 ============================================================================ +12:42:35 [ 1] [ 4] [0810] +12:42:35 [ 7] [ 10] [0320054143] +12:42:35 [ 11] [ 6] [156369] +12:42:35 [ 39] [ 2] [00] +12:42:35 [ 70] [ 3] [301] +12:42:35 ============================================================================ +12:42:35 Calculate Source COMM Id = 2 +12:42:35 ============================================================================ +12:42:35 + + +waiting on router queue for slot.... +12:42:46 ============================================================================ +12:42:46 Slot Id : <451> +12:42:46 Transaction Type : REQUEST +12:42:46 Received From : +12:42:46 ============================================================================ +12:42:46 FNo. Len. Field Value +12:42:46 ============================================================================ +12:42:46 [ 1] [ 4] [0800] +12:42:46 [ 7] [ 10] [0320054153] +12:42:46 [ 11] [ 6] [156370] +12:42:46 [ 70] [ 3] [301] +12:42:46 ============================================================================ +12:42:46 + + +waiting on router queue for slot.... +12:42:46 Sending to : +12:42:46 ============================================================================ +12:42:46 ============================================================================ +12:42:46 Slot Id : <451> +12:42:46 Transaction Type : RESPONSE +12:42:46 Received From : +12:42:46 ============================================================================ +12:42:46 FNo. Len. Field Value +12:42:46 ============================================================================ +12:42:46 [ 1] [ 4] [0810] +12:42:46 [ 7] [ 10] [0320054153] +12:42:46 [ 11] [ 6] [156370] +12:42:46 [ 39] [ 2] [00] +12:42:46 [ 70] [ 3] [301] +12:42:46 ============================================================================ +12:42:46 Calculate Source COMM Id = 2 +12:42:46 ============================================================================ +12:42:46 + + +waiting on router queue for slot.... +12:42:57 ============================================================================ +12:42:57 Slot Id : <428> +12:42:57 Transaction Type : REQUEST +12:42:57 Received From : +12:42:57 ============================================================================ +12:42:57 FNo. Len. Field Value +12:42:57 ============================================================================ +12:42:57 [ 1] [ 4] [0800] +12:42:57 [ 7] [ 10] [0320054204] +12:42:57 [ 11] [ 6] [156371] +12:42:57 [ 70] [ 3] [301] +12:42:57 ============================================================================ +12:42:57 + + +waiting on router queue for slot.... +12:42:57 Sending to : +12:42:57 ============================================================================ +12:42:57 ============================================================================ +12:42:57 Slot Id : <428> +12:42:57 Transaction Type : RESPONSE +12:42:57 Received From : +12:42:57 ============================================================================ +12:42:57 FNo. Len. Field Value +12:42:57 ============================================================================ +12:42:57 [ 1] [ 4] [0810] +12:42:57 [ 7] [ 10] [0320054204] +12:42:57 [ 11] [ 6] [156371] +12:42:57 [ 39] [ 2] [00] +12:42:57 [ 70] [ 3] [301] +12:42:57 ============================================================================ +12:42:57 Calculate Source COMM Id = 2 +12:42:57 ============================================================================ +12:42:57 + + +waiting on router queue for slot.... +12:43:09 ============================================================================ +12:43:09 Slot Id : <462> +12:43:09 Transaction Type : REQUEST +12:43:09 Received From : +12:43:09 ============================================================================ +12:43:09 FNo. Len. Field Value +12:43:09 ============================================================================ +12:43:09 [ 1] [ 4] [0800] +12:43:09 [ 7] [ 10] [0320054217] +12:43:09 [ 11] [ 6] [156372] +12:43:09 [ 70] [ 3] [301] +12:43:09 ============================================================================ +12:43:09 + + +waiting on router queue for slot.... +12:43:09 Sending to : +12:43:09 ============================================================================ +12:43:09 ============================================================================ +12:43:09 Slot Id : <462> +12:43:09 Transaction Type : RESPONSE +12:43:09 Received From : +12:43:09 ============================================================================ +12:43:09 FNo. Len. Field Value +12:43:09 ============================================================================ +12:43:09 [ 1] [ 4] [0810] +12:43:09 [ 7] [ 10] [0320054217] +12:43:09 [ 11] [ 6] [156372] +12:43:09 [ 39] [ 2] [00] +12:43:09 [ 70] [ 3] [301] +12:43:09 ============================================================================ +12:43:09 Calculate Source COMM Id = 2 +12:43:09 ============================================================================ +12:43:09 + + +waiting on router queue for slot.... +12:43:14 ============================================================================ +12:43:14 Slot Id : <431> +12:43:14 Transaction Type : REQUEST +12:43:14 Received From : +12:43:14 ============================================================================ +12:43:14 FNo. Len. Field Value +12:43:14 ============================================================================ +12:43:14 [ 1] [ 4] [0800] +12:43:14 [ 2] [ 5] [02531] +12:43:14 [ 3] [ 6] [579128] +12:43:14 [ 7] [ 10] [0320054314] +12:43:14 [ 11] [ 6] [807150] +12:43:14 [ 15] [ 10] [0320054314] +12:43:14 [ 37] [ 11] [57912807150] +12:43:14 [ 70] [ 3] [001] +12:43:14 ============================================================================ +12:43:14 + + +waiting on router queue for slot.... +12:43:14 ============================================================================ +12:43:14 Slot Id : <431> +12:43:14 Transaction Type : RESPONSE +12:43:14 Received From : +12:43:14 ============================================================================ +12:43:14 FNo. Len. Field Value +12:43:14 ============================================================================ +12:43:14 [ 1] [ 4] [0810] +12:43:14 [ 7] [ 10] [0320054314] +12:43:14 [ 11] [ 6] [807150] +12:43:14 [ 15] [ 4] [0320] +12:43:14 [ 37] [ 12] [57912807150] +12:43:14 [ 39] [ 2] [00] +12:43:14 [ 70] [ 3] [001] +12:43:14 ============================================================================ +12:43:14 Sending to : +12:43:14 ============================================================================ +12:43:14 + + +waiting on router queue for slot.... +12:43:25 ============================================================================ +12:43:25 Slot Id : <457> +12:43:25 Transaction Type : REQUEST +12:43:25 Received From : +12:43:25 ============================================================================ +12:43:25 FNo. Len. Field Value +12:43:25 ============================================================================ +12:43:25 [ 1] [ 4] [0800] +12:43:25 [ 7] [ 10] [0320054233] +12:43:25 [ 11] [ 6] [156373] +12:43:25 [ 70] [ 3] [301] +12:43:25 ============================================================================ +12:43:25 + + +waiting on router queue for slot.... +12:43:25 Sending to : +12:43:25 ============================================================================ +12:43:25 ============================================================================ +12:43:25 Slot Id : <457> +12:43:25 Transaction Type : RESPONSE +12:43:25 Received From : +12:43:25 ============================================================================ +12:43:25 FNo. Len. Field Value +12:43:25 ============================================================================ +12:43:25 [ 1] [ 4] [0810] +12:43:25 [ 7] [ 10] [0320054233] +12:43:25 [ 11] [ 6] [156373] +12:43:25 [ 39] [ 2] [00] +12:43:25 [ 70] [ 3] [301] +12:43:25 ============================================================================ +12:43:25 Calculate Source COMM Id = 2 +12:43:25 ============================================================================ +12:43:25 + + +waiting on router queue for slot.... +12:43:26 ============================================================================ +12:43:26 Slot Id : <421> +12:43:26 Transaction Type : REQUEST +12:43:26 Received From : +12:43:26 ============================================================================ +12:43:26 FNo. Len. Field Value +12:43:26 ============================================================================ +12:43:26 [ 1] [ 4] [0200] +12:43:26 [ 2] [ 16] [6213545000354070] +12:43:26 [ 3] [ 6] [010000] +12:43:26 [ 4] [ 12] [000010000000] +12:43:26 [ 7] [ 10] [0320054234] +12:43:26 [ 11] [ 6] [269100] +12:43:26 [ 12] [ 6] [124234] +12:43:26 [ 13] [ 4] [0320] +12:43:26 [ 14] [ 4] [4912] +12:43:26 [ 15] [ 4] [0320] +12:43:26 [ 18] [ 4] [6011] +12:43:26 [ 19] [ 3] [418] +12:43:26 [ 22] [ 3] [021] +12:43:26 [ 25] [ 2] [01] +12:43:26 [ 28] [ 9] [D00002000] +12:43:26 [ 32] [ 6] [180893] +12:43:26 [ 35] [ 32] [6213545000354070=491212015407860] +12:43:26 [ 37] [ 12] [507905269100] +12:43:26 [ 41] [ 8] [0363CPSH] +12:43:26 [ 42] [ 15] [999999 ] +12:43:26 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:43:26 [ 49] [ 3] [418] +12:43:26 [ 52] [ 16] [36F018CD045E6174] +12:43:26 ============================================================================ +12:43:26 + + +waiting on router queue for slot.... +12:43:26 Sending to : +12:43:26 ============================================================================ +12:43:26 Sending to : +12:43:26 ============================================================================ +12:43:27 ============================================================================ +12:43:27 Slot Id : <421> +12:43:27 Transaction Type : REQUEST +12:43:27 Received From : +12:43:27 ============================================================================ +12:43:27 FNo. Len. Field Value +12:43:27 ============================================================================ +12:43:27 [ 1] [ 4] [0200] +12:43:27 [ 2] [ 16] [6213545000354070] +12:43:27 [ 3] [ 6] [010000] +12:43:27 [ 4] [ 12] [000010000000] +12:43:27 [ 7] [ 10] [0320054234] +12:43:27 [ 11] [ 6] [269100] +12:43:27 [ 12] [ 6] [124234] +12:43:27 [ 13] [ 4] [0320] +12:43:27 [ 14] [ 4] [4912] +12:43:27 [ 15] [ 4] [0320] +12:43:27 [ 18] [ 4] [6011] +12:43:27 [ 19] [ 3] [418] +12:43:27 [ 22] [ 3] [021] +12:43:27 [ 25] [ 2] [01] +12:43:27 [ 28] [ 9] [D00002000] +12:43:27 [ 32] [ 6] [180893] +12:43:27 [ 35] [ 32] [6213545000354070=491212015407860] +12:43:27 [ 37] [ 12] [507905269100] +12:43:27 [ 41] [ 8] [0363CPSH] +12:43:27 [ 42] [ 15] [999999 ] +12:43:27 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:43:27 [ 49] [ 3] [418] +12:43:27 [ 52] [ 16] [36F018CD045E6174] +12:43:27 ============================================================================ +12:43:27 + + +waiting on router queue for slot.... +12:43:27 Sending to : +12:43:27 ============================================================================ +12:43:27 ============================================================================ +12:43:27 Slot Id : <421> +12:43:27 Transaction Type : REQUEST +12:43:27 Received From : +12:43:27 ============================================================================ +12:43:27 FNo. Len. Field Value +12:43:27 ============================================================================ +12:43:27 [ 1] [ 4] [0200] +12:43:27 [ 2] [ 16] [6213545000354070] +12:43:27 [ 3] [ 6] [010000] +12:43:27 [ 4] [ 12] [000010000000] +12:43:27 [ 7] [ 10] [0320054234] +12:43:27 [ 11] [ 6] [269100] +12:43:27 [ 12] [ 6] [124234] +12:43:27 [ 13] [ 4] [0320] +12:43:27 [ 14] [ 4] [4912] +12:43:27 [ 15] [ 4] [0320] +12:43:27 [ 18] [ 4] [6011] +12:43:27 [ 19] [ 3] [418] +12:43:27 [ 22] [ 3] [021] +12:43:27 [ 25] [ 2] [01] +12:43:27 [ 28] [ 9] [D00002000] +12:43:27 [ 32] [ 6] [180893] +12:43:27 [ 35] [ 32] [6213545000354070=491212015407860] +12:43:27 [ 37] [ 12] [507905269100] +12:43:27 [ 41] [ 8] [0363CPSH] +12:43:27 [ 42] [ 15] [999999 ] +12:43:27 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +12:43:27 [ 49] [ 3] [418] +12:43:27 [ 52] [ 16] [1CB33F62D56469A0] +12:43:27 ============================================================================ +12:43:27 + + +waiting on router queue for slot.... +12:43:27 Sending to : <0> +12:43:27 ============================================================================ +12:43:27 ============================================================================ +12:43:27 Slot Id : <421> +12:43:27 Transaction Type : RESPONSE +12:43:27 Received From : +12:43:27 ============================================================================ +12:43:27 FNo. Len. Field Value +12:43:27 ============================================================================ +12:43:27 [ 1] [ 4] [0210] +12:43:27 [ 2] [ 16] [6213545000354070] +12:43:27 [ 3] [ 6] [010000] +12:43:27 [ 4] [ 12] [000010000000] +12:43:27 [ 7] [ 10] [0320054234] +12:43:27 [ 11] [ 6] [269100] +12:43:27 [ 12] [ 6] [124234] +12:43:27 [ 13] [ 4] [0320] +12:43:27 [ 15] [ 4] [0320] +12:43:27 [ 18] [ 4] [6011] +12:43:27 [ 19] [ 3] [418] +12:43:27 [ 32] [ 6] [180893] +12:43:27 [ 35] [ 32] [6213545000354070=491212015407860] +12:43:27 [ 37] [ 12] [507905269100] +12:43:27 [ 38] [ 6] [269100] +12:43:27 [ 39] [ 2] [51] +12:43:27 [ 41] [ 8] [0363CPSH] +12:43:27 [ 49] [ 3] [418] +12:43:27 [ 54] [ 40] [0001418C0000068061790002418C000006806179] +12:43:27 ============================================================================ +12:43:27 Sending to : +12:43:27 ============================================================================ +12:43:27 + + +waiting on router queue for slot.... +12:43:28 ============================================================================ +12:43:28 Slot Id : <421> +12:43:28 Transaction Type : RESPONSE +12:43:28 Received From : +12:43:28 ============================================================================ +12:43:28 FNo. Len. Field Value +12:43:28 ============================================================================ +12:43:28 [ 1] [ 4] [0210] +12:43:28 [ 2] [ 16] [6213545000354070] +12:43:28 [ 3] [ 6] [010000] +12:43:28 [ 4] [ 12] [000010000000] +12:43:28 [ 7] [ 10] [0320054234] +12:43:28 [ 11] [ 6] [269100] +12:43:28 [ 12] [ 6] [124234] +12:43:28 [ 13] [ 4] [0320] +12:43:28 [ 15] [ 4] [0320] +12:43:28 [ 18] [ 4] [6011] +12:43:28 [ 19] [ 3] [418] +12:43:28 [ 32] [ 6] [180893] +12:43:28 [ 35] [ 32] [6213545000354070=491212015407860] +12:43:28 [ 37] [ 12] [507905269100] +12:43:28 [ 38] [ 6] [269100] +12:43:28 [ 39] [ 2] [51] +12:43:28 [ 41] [ 8] [0363CPSH] +12:43:28 [ 49] [ 3] [418] +12:43:28 [ 54] [ 40] [0001418C0000068061790002418C000006806179] +12:43:28 ============================================================================ +12:43:28 Calculate Source COMM Id = 2 +12:43:28 ============================================================================ +12:43:28 + + +waiting on router queue for slot.... +12:43:39 ============================================================================ +12:43:39 Slot Id : <426> +12:43:39 Transaction Type : REQUEST +12:43:39 Received From : +12:43:39 ============================================================================ +12:43:39 FNo. Len. Field Value +12:43:39 ============================================================================ +12:43:39 [ 1] [ 4] [0200] +12:43:39 [ 2] [ 16] [6213545000837587] +12:43:39 [ 3] [ 6] [311000] +12:43:39 [ 4] [ 12] [000000000000] +12:43:39 [ 7] [ 10] [0320125127] +12:43:39 [ 11] [ 6] [021166] +12:43:39 [ 12] [ 6] [125127] +12:43:39 [ 13] [ 4] [0320] +12:43:39 [ 14] [ 4] [4912] +12:43:39 [ 15] [ 4] [0320] +12:43:39 [ 18] [ 4] [6011] +12:43:39 [ 22] [ 3] [900] +12:43:39 [ 25] [ 2] [02] +12:43:39 [ 28] [ 9] [000000000] +12:43:39 [ 32] [ 6] [220699] +12:43:39 [ 35] [ 32] [6213545000837587=491212013758437] +12:43:39 [ 37] [ 12] [507900263115] +12:43:39 [ 41] [ 8] [01001400] +12:43:39 [ 42] [ 15] [APTRA ] +12:43:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:43:39 [ 49] [ 3] [418] +12:43:39 [ 52] [ 16] [2C819D9DD9EF3873] +12:43:39 ============================================================================ +12:43:39 + + +waiting on router queue for slot.... +12:43:39 Sending to : +12:43:39 ============================================================================ +12:43:39 Sending to : +12:43:39 ============================================================================ +12:43:40 ============================================================================ +12:43:40 Slot Id : <426> +12:43:40 Transaction Type : REQUEST +12:43:40 Received From : +12:43:40 ============================================================================ +12:43:40 FNo. Len. Field Value +12:43:40 ============================================================================ +12:43:40 [ 1] [ 4] [0200] +12:43:40 [ 2] [ 16] [6213545000837587] +12:43:40 [ 3] [ 6] [311000] +12:43:40 [ 4] [ 12] [000000000000] +12:43:40 [ 7] [ 10] [0320125127] +12:43:40 [ 11] [ 6] [021166] +12:43:40 [ 12] [ 6] [125127] +12:43:40 [ 13] [ 4] [0320] +12:43:40 [ 14] [ 4] [4912] +12:43:40 [ 15] [ 4] [0320] +12:43:40 [ 18] [ 4] [6011] +12:43:40 [ 22] [ 3] [900] +12:43:40 [ 25] [ 2] [02] +12:43:40 [ 28] [ 9] [000000000] +12:43:40 [ 32] [ 6] [220699] +12:43:40 [ 35] [ 32] [6213545000837587=491212013758437] +12:43:40 [ 37] [ 12] [507900263115] +12:43:40 [ 41] [ 8] [01001400] +12:43:40 [ 42] [ 15] [APTRA ] +12:43:40 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:43:40 [ 49] [ 3] [418] +12:43:40 [ 52] [ 16] [2C819D9DD9EF3873] +12:43:40 ============================================================================ +12:43:40 + + +waiting on router queue for slot.... +12:43:40 Sending to : +12:43:40 ============================================================================ +12:43:40 ============================================================================ +12:43:40 Slot Id : <426> +12:43:40 Transaction Type : REQUEST +12:43:40 Received From : +12:43:40 ============================================================================ +12:43:40 FNo. Len. Field Value +12:43:40 ============================================================================ +12:43:40 [ 1] [ 4] [0200] +12:43:40 [ 2] [ 16] [6213545000837587] +12:43:40 [ 3] [ 6] [311000] +12:43:40 [ 4] [ 12] [000000000000] +12:43:40 [ 7] [ 10] [0320125127] +12:43:40 [ 11] [ 6] [021166] +12:43:40 [ 12] [ 6] [125127] +12:43:40 [ 13] [ 4] [0320] +12:43:40 [ 14] [ 4] [4912] +12:43:40 [ 15] [ 4] [0320] +12:43:40 [ 18] [ 4] [6011] +12:43:40 [ 22] [ 3] [900] +12:43:40 [ 25] [ 2] [02] +12:43:40 [ 28] [ 9] [000000000] +12:43:40 [ 32] [ 6] [220699] +12:43:40 [ 35] [ 32] [6213545000837587=491212013758437] +12:43:40 [ 37] [ 12] [507900263115] +12:43:40 [ 41] [ 8] [01001400] +12:43:40 [ 42] [ 15] [APTRA ] +12:43:40 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:43:40 [ 49] [ 3] [418] +12:43:40 [ 52] [ 16] [4D0595FBF80CC8FD] +12:43:40 ============================================================================ +12:43:40 + + +waiting on router queue for slot.... +12:43:40 Sending to : <0> +12:43:40 ============================================================================ +12:43:40 ============================================================================ +12:43:40 Slot Id : <426> +12:43:40 Transaction Type : RESPONSE +12:43:40 Received From : +12:43:40 ============================================================================ +12:43:40 FNo. Len. Field Value +12:43:40 ============================================================================ +12:43:40 [ 1] [ 4] [0210] +12:43:40 [ 2] [ 16] [6213545000837587] +12:43:40 [ 3] [ 6] [311000] +12:43:40 [ 4] [ 12] [000000000000] +12:43:40 [ 7] [ 10] [0320125127] +12:43:40 [ 11] [ 6] [021166] +12:43:40 [ 12] [ 6] [125127] +12:43:40 [ 13] [ 4] [0320] +12:43:40 [ 15] [ 4] [0320] +12:43:40 [ 18] [ 4] [6011] +12:43:40 [ 32] [ 6] [220699] +12:43:40 [ 35] [ 32] [6213545000837587=491212013758437] +12:43:40 [ 37] [ 12] [507900263115] +12:43:40 [ 38] [ 6] [697335] +12:43:40 [ 39] [ 2] [00] +12:43:40 [ 41] [ 8] [01001400] +12:43:40 [ 49] [ 3] [418] +12:43:40 [ 54] [ 40] [1001418C0003018544901002418C000301854490] +12:43:40 ============================================================================ +12:43:40 Sending to : +12:43:40 ============================================================================ +12:43:40 + + +waiting on router queue for slot.... +12:43:41 ============================================================================ +12:43:41 Slot Id : <426> +12:43:41 Transaction Type : RESPONSE +12:43:41 Received From : +12:43:41 ============================================================================ +12:43:41 FNo. Len. Field Value +12:43:41 ============================================================================ +12:43:41 [ 1] [ 4] [0210] +12:43:41 [ 2] [ 16] [6213545000837587] +12:43:41 [ 3] [ 6] [311000] +12:43:41 [ 4] [ 12] [000000000000] +12:43:41 [ 7] [ 10] [0320125127] +12:43:41 [ 11] [ 6] [021166] +12:43:41 [ 12] [ 6] [125127] +12:43:41 [ 13] [ 4] [0320] +12:43:41 [ 15] [ 4] [0320] +12:43:41 [ 18] [ 4] [6011] +12:43:41 [ 32] [ 6] [220699] +12:43:41 [ 35] [ 32] [6213545000837587=491212013758437] +12:43:41 [ 37] [ 12] [507900263115] +12:43:41 [ 38] [ 6] [697335] +12:43:41 [ 39] [ 2] [00] +12:43:41 [ 41] [ 8] [01001400] +12:43:41 [ 49] [ 3] [418] +12:43:41 [ 54] [ 40] [1001418C0003018544901002418C000301854490] +12:43:41 ============================================================================ +12:43:41 Calculate Source COMM Id = 1 +12:43:41 ============================================================================ +12:43:41 + + +waiting on router queue for slot.... +12:43:43 ============================================================================ +12:43:43 Slot Id : <422> +12:43:43 Transaction Type : REQUEST +12:43:43 Received From : +12:43:43 ============================================================================ +12:43:43 FNo. Len. Field Value +12:43:43 ============================================================================ +12:43:43 [ 1] [ 4] [0800] +12:43:43 [ 7] [ 10] [0320054250] +12:43:43 [ 11] [ 6] [156374] +12:43:43 [ 70] [ 3] [301] +12:43:43 ============================================================================ +12:43:43 + + +waiting on router queue for slot.... +12:43:43 Sending to : +12:43:43 ============================================================================ +12:43:43 ============================================================================ +12:43:43 Slot Id : <422> +12:43:43 Transaction Type : RESPONSE +12:43:43 Received From : +12:43:43 ============================================================================ +12:43:43 FNo. Len. Field Value +12:43:43 ============================================================================ +12:43:43 [ 1] [ 4] [0810] +12:43:43 [ 7] [ 10] [0320054250] +12:43:43 [ 11] [ 6] [156374] +12:43:43 [ 39] [ 2] [00] +12:43:43 [ 70] [ 3] [301] +12:43:43 ============================================================================ +12:43:43 Calculate Source COMM Id = 2 +12:43:43 ============================================================================ +12:43:43 + + +waiting on router queue for slot.... +12:43:58 ============================================================================ +12:43:58 Slot Id : <465> +12:43:58 Transaction Type : REQUEST +12:43:58 Received From : +12:43:58 ============================================================================ +12:43:58 FNo. Len. Field Value +12:43:58 ============================================================================ +12:43:58 [ 1] [ 4] [0800] +12:43:58 [ 7] [ 10] [0320054305] +12:43:58 [ 11] [ 6] [156375] +12:43:58 [ 70] [ 3] [301] +12:43:58 ============================================================================ +12:43:58 + + +waiting on router queue for slot.... +12:43:58 Sending to : +12:43:58 ============================================================================ +12:43:58 ============================================================================ +12:43:58 Slot Id : <465> +12:43:58 Transaction Type : RESPONSE +12:43:58 Received From : +12:43:58 ============================================================================ +12:43:58 FNo. Len. Field Value +12:43:58 ============================================================================ +12:43:58 [ 1] [ 4] [0810] +12:43:58 [ 7] [ 10] [0320054305] +12:43:58 [ 11] [ 6] [156375] +12:43:58 [ 39] [ 2] [00] +12:43:58 [ 70] [ 3] [301] +12:43:58 ============================================================================ +12:43:58 Calculate Source COMM Id = 2 +12:43:58 ============================================================================ +12:43:58 + + +waiting on router queue for slot.... +12:44:09 ============================================================================ +12:44:09 Slot Id : <444> +12:44:09 Transaction Type : REQUEST +12:44:09 Received From : +12:44:09 ============================================================================ +12:44:09 FNo. Len. Field Value +12:44:09 ============================================================================ +12:44:09 [ 1] [ 4] [0800] +12:44:09 [ 7] [ 10] [0320054316] +12:44:09 [ 11] [ 6] [156376] +12:44:09 [ 70] [ 3] [301] +12:44:09 ============================================================================ +12:44:09 + + +waiting on router queue for slot.... +12:44:09 Sending to : +12:44:09 ============================================================================ +12:44:09 ============================================================================ +12:44:09 Slot Id : <444> +12:44:09 Transaction Type : RESPONSE +12:44:09 Received From : +12:44:09 ============================================================================ +12:44:09 FNo. Len. Field Value +12:44:09 ============================================================================ +12:44:09 [ 1] [ 4] [0810] +12:44:09 [ 7] [ 10] [0320054316] +12:44:09 [ 11] [ 6] [156376] +12:44:09 [ 39] [ 2] [00] +12:44:09 [ 70] [ 3] [301] +12:44:09 ============================================================================ +12:44:09 Calculate Source COMM Id = 2 +12:44:09 ============================================================================ +12:44:09 + + +waiting on router queue for slot.... +12:44:16 ============================================================================ +12:44:16 Slot Id : <436> +12:44:16 Transaction Type : REQUEST +12:44:16 Received From : +12:44:16 ============================================================================ +12:44:16 FNo. Len. Field Value +12:44:16 ============================================================================ +12:44:16 [ 1] [ 4] [0800] +12:44:16 [ 2] [ 5] [02531] +12:44:16 [ 3] [ 6] [579128] +12:44:16 [ 7] [ 10] [0320054416] +12:44:16 [ 11] [ 6] [807151] +12:44:16 [ 15] [ 10] [0320054416] +12:44:16 [ 37] [ 11] [57912807151] +12:44:16 [ 70] [ 3] [001] +12:44:16 ============================================================================ +12:44:16 + + +waiting on router queue for slot.... +12:44:16 ============================================================================ +12:44:16 Slot Id : <436> +12:44:16 Transaction Type : RESPONSE +12:44:16 Received From : +12:44:16 ============================================================================ +12:44:16 FNo. Len. Field Value +12:44:16 ============================================================================ +12:44:16 [ 1] [ 4] [0810] +12:44:16 [ 7] [ 10] [0320054416] +12:44:16 [ 11] [ 6] [807151] +12:44:16 [ 15] [ 4] [0320] +12:44:16 [ 37] [ 12] [57912807151] +12:44:16 [ 39] [ 2] [00] +12:44:16 [ 70] [ 3] [001] +12:44:16 ============================================================================ +12:44:16 Sending to : +12:44:16 ============================================================================ +12:44:16 + + +waiting on router queue for slot.... +12:44:21 ============================================================================ +12:44:21 Slot Id : <423> +12:44:21 Transaction Type : REQUEST +12:44:21 Received From : +12:44:21 ============================================================================ +12:44:21 FNo. Len. Field Value +12:44:21 ============================================================================ +12:44:21 [ 1] [ 4] [0200] +12:44:21 [ 2] [ 16] [6213545000837587] +12:44:21 [ 3] [ 6] [011000] +12:44:21 [ 4] [ 12] [000030000000] +12:44:21 [ 7] [ 10] [0320125208] +12:44:21 [ 11] [ 6] [021167] +12:44:21 [ 12] [ 6] [125208] +12:44:21 [ 13] [ 4] [0320] +12:44:21 [ 14] [ 4] [4912] +12:44:21 [ 15] [ 4] [0320] +12:44:21 [ 18] [ 4] [6011] +12:44:21 [ 22] [ 3] [900] +12:44:21 [ 25] [ 2] [02] +12:44:21 [ 28] [ 9] [D00002000] +12:44:21 [ 32] [ 6] [220699] +12:44:21 [ 35] [ 32] [6213545000837587=491212013758437] +12:44:21 [ 37] [ 12] [507900263116] +12:44:21 [ 41] [ 8] [01001400] +12:44:21 [ 42] [ 15] [APTRA ] +12:44:21 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:44:21 [ 49] [ 3] [418] +12:44:21 [ 52] [ 16] [2C819D9DD9EF3873] +12:44:21 ============================================================================ +12:44:21 + + +waiting on router queue for slot.... +12:44:21 Sending to : +12:44:21 ============================================================================ +12:44:21 Sending to : +12:44:21 ============================================================================ +12:44:21 ============================================================================ +12:44:21 Slot Id : <423> +12:44:21 Transaction Type : REQUEST +12:44:21 Received From : +12:44:21 ============================================================================ +12:44:21 FNo. Len. Field Value +12:44:21 ============================================================================ +12:44:21 [ 1] [ 4] [0200] +12:44:21 [ 2] [ 16] [6213545000837587] +12:44:21 [ 3] [ 6] [011000] +12:44:21 [ 4] [ 12] [000030000000] +12:44:21 [ 7] [ 10] [0320125208] +12:44:21 [ 11] [ 6] [021167] +12:44:21 [ 12] [ 6] [125208] +12:44:21 [ 13] [ 4] [0320] +12:44:21 [ 14] [ 4] [4912] +12:44:21 [ 15] [ 4] [0320] +12:44:21 [ 18] [ 4] [6011] +12:44:21 [ 22] [ 3] [900] +12:44:21 [ 25] [ 2] [02] +12:44:21 [ 28] [ 9] [D00002000] +12:44:21 [ 32] [ 6] [220699] +12:44:21 [ 35] [ 32] [6213545000837587=491212013758437] +12:44:21 [ 37] [ 12] [507900263116] +12:44:21 [ 41] [ 8] [01001400] +12:44:21 [ 42] [ 15] [APTRA ] +12:44:21 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:44:21 [ 49] [ 3] [418] +12:44:21 [ 52] [ 16] [2C819D9DD9EF3873] +12:44:21 ============================================================================ +12:44:21 + + +waiting on router queue for slot.... +12:44:21 Sending to : +12:44:21 ============================================================================ +12:44:21 ============================================================================ +12:44:21 Slot Id : <423> +12:44:21 Transaction Type : REQUEST +12:44:21 Received From : +12:44:21 ============================================================================ +12:44:21 FNo. Len. Field Value +12:44:21 ============================================================================ +12:44:21 [ 1] [ 4] [0200] +12:44:21 [ 2] [ 16] [6213545000837587] +12:44:21 [ 3] [ 6] [011000] +12:44:21 [ 4] [ 12] [000030000000] +12:44:21 [ 7] [ 10] [0320125208] +12:44:21 [ 11] [ 6] [021167] +12:44:21 [ 12] [ 6] [125208] +12:44:21 [ 13] [ 4] [0320] +12:44:21 [ 14] [ 4] [4912] +12:44:21 [ 15] [ 4] [0320] +12:44:21 [ 18] [ 4] [6011] +12:44:21 [ 22] [ 3] [900] +12:44:21 [ 25] [ 2] [02] +12:44:21 [ 28] [ 9] [D00002000] +12:44:21 [ 32] [ 6] [220699] +12:44:21 [ 35] [ 32] [6213545000837587=491212013758437] +12:44:21 [ 37] [ 12] [507900263116] +12:44:21 [ 41] [ 8] [01001400] +12:44:21 [ 42] [ 15] [APTRA ] +12:44:21 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:44:21 [ 49] [ 3] [418] +12:44:21 [ 52] [ 16] [4D0595FBF80CC8FD] +12:44:21 ============================================================================ +12:44:21 + + +waiting on router queue for slot.... +12:44:21 Sending to : <0> +12:44:21 ============================================================================ +12:44:21 ============================================================================ +12:44:21 Slot Id : <439> +12:44:21 Transaction Type : REQUEST +12:44:21 Received From : +12:44:21 ============================================================================ +12:44:21 FNo. Len. Field Value +12:44:21 ============================================================================ +12:44:21 [ 1] [ 4] [0800] +12:44:21 [ 7] [ 10] [0320054328] +12:44:21 [ 11] [ 6] [156377] +12:44:21 [ 70] [ 3] [301] +12:44:21 ============================================================================ +12:44:21 + + +waiting on router queue for slot.... +12:44:21 Sending to : +12:44:21 ============================================================================ +12:44:21 ============================================================================ +12:44:21 Slot Id : <439> +12:44:21 Transaction Type : RESPONSE +12:44:21 Received From : +12:44:21 ============================================================================ +12:44:21 FNo. Len. Field Value +12:44:21 ============================================================================ +12:44:21 [ 1] [ 4] [0810] +12:44:21 [ 7] [ 10] [0320054328] +12:44:21 [ 11] [ 6] [156377] +12:44:21 [ 39] [ 2] [00] +12:44:21 [ 70] [ 3] [301] +12:44:21 ============================================================================ +12:44:21 Calculate Source COMM Id = 2 +12:44:21 ============================================================================ +12:44:21 + + +waiting on router queue for slot.... +12:44:21 ============================================================================ +12:44:21 Slot Id : <423> +12:44:21 Transaction Type : RESPONSE +12:44:21 Received From : +12:44:21 ============================================================================ +12:44:21 FNo. Len. Field Value +12:44:21 ============================================================================ +12:44:21 [ 1] [ 4] [0210] +12:44:21 [ 2] [ 16] [6213545000837587] +12:44:21 [ 3] [ 6] [011000] +12:44:21 [ 4] [ 12] [000030000000] +12:44:21 [ 7] [ 10] [0320125208] +12:44:21 [ 11] [ 6] [021167] +12:44:21 [ 12] [ 6] [125208] +12:44:21 [ 13] [ 4] [0320] +12:44:21 [ 15] [ 4] [0320] +12:44:21 [ 18] [ 4] [6011] +12:44:21 [ 32] [ 6] [220699] +12:44:21 [ 35] [ 32] [6213545000837587=491212013758437] +12:44:21 [ 37] [ 12] [507900263116] +12:44:21 [ 38] [ 6] [023635] +12:44:21 [ 39] [ 2] [00] +12:44:21 [ 41] [ 8] [01001400] +12:44:21 [ 49] [ 3] [418] +12:44:21 [ 54] [ 40] [1001418C0002716544901002418C000271654490] +12:44:21 ============================================================================ +12:44:21 Sending to : +12:44:21 ============================================================================ +12:44:21 + + +waiting on router queue for slot.... +12:44:23 ============================================================================ +12:44:23 Slot Id : <423> +12:44:23 Transaction Type : RESPONSE +12:44:23 Received From : +12:44:23 ============================================================================ +12:44:23 FNo. Len. Field Value +12:44:23 ============================================================================ +12:44:23 [ 1] [ 4] [0210] +12:44:23 [ 2] [ 16] [6213545000837587] +12:44:23 [ 3] [ 6] [011000] +12:44:23 [ 4] [ 12] [000030000000] +12:44:23 [ 7] [ 10] [0320125208] +12:44:23 [ 11] [ 6] [021167] +12:44:23 [ 12] [ 6] [125208] +12:44:23 [ 13] [ 4] [0320] +12:44:23 [ 15] [ 4] [0320] +12:44:23 [ 18] [ 4] [6011] +12:44:23 [ 32] [ 6] [220699] +12:44:23 [ 35] [ 32] [6213545000837587=491212013758437] +12:44:23 [ 37] [ 12] [507900263116] +12:44:23 [ 38] [ 6] [023635] +12:44:23 [ 39] [ 2] [00] +12:44:23 [ 41] [ 8] [01001400] +12:44:23 [ 49] [ 3] [418] +12:44:23 [ 54] [ 40] [1001418C0002716544901002418C000271654490] +12:44:23 ============================================================================ +12:44:23 Calculate Source COMM Id = 1 +12:44:23 ============================================================================ +12:44:23 + + +waiting on router queue for slot.... +12:44:36 ============================================================================ +12:44:36 Slot Id : <458> +12:44:36 Transaction Type : REQUEST +12:44:36 Received From : +12:44:36 ============================================================================ +12:44:36 FNo. Len. Field Value +12:44:36 ============================================================================ +12:44:36 [ 1] [ 4] [0800] +12:44:36 [ 7] [ 10] [0320054344] +12:44:36 [ 11] [ 6] [156378] +12:44:36 [ 70] [ 3] [301] +12:44:36 ============================================================================ +12:44:36 + + +waiting on router queue for slot.... +12:44:36 Sending to : +12:44:36 ============================================================================ +12:44:36 ============================================================================ +12:44:36 Slot Id : <458> +12:44:36 Transaction Type : RESPONSE +12:44:36 Received From : +12:44:36 ============================================================================ +12:44:36 FNo. Len. Field Value +12:44:36 ============================================================================ +12:44:36 [ 1] [ 4] [0810] +12:44:36 [ 7] [ 10] [0320054344] +12:44:36 [ 11] [ 6] [156378] +12:44:36 [ 39] [ 2] [00] +12:44:36 [ 70] [ 3] [301] +12:44:36 ============================================================================ +12:44:36 Calculate Source COMM Id = 2 +12:44:36 ============================================================================ +12:44:36 + + +waiting on router queue for slot.... +12:44:47 ============================================================================ +12:44:47 Slot Id : <459> +12:44:47 Transaction Type : REQUEST +12:44:47 Received From : +12:44:47 ============================================================================ +12:44:47 FNo. Len. Field Value +12:44:47 ============================================================================ +12:44:47 [ 1] [ 4] [0800] +12:44:47 [ 7] [ 10] [0320054354] +12:44:47 [ 11] [ 6] [156379] +12:44:47 [ 70] [ 3] [301] +12:44:47 ============================================================================ +12:44:47 + + +waiting on router queue for slot.... +12:44:47 Sending to : +12:44:47 ============================================================================ +12:44:47 ============================================================================ +12:44:47 Slot Id : <459> +12:44:47 Transaction Type : RESPONSE +12:44:47 Received From : +12:44:47 ============================================================================ +12:44:47 FNo. Len. Field Value +12:44:47 ============================================================================ +12:44:47 [ 1] [ 4] [0810] +12:44:47 [ 7] [ 10] [0320054354] +12:44:47 [ 11] [ 6] [156379] +12:44:47 [ 39] [ 2] [00] +12:44:47 [ 70] [ 3] [301] +12:44:47 ============================================================================ +12:44:47 Calculate Source COMM Id = 2 +12:44:47 ============================================================================ +12:44:47 + + +waiting on router queue for slot.... +12:44:55 ============================================================================ +12:44:55 Slot Id : <466> +12:44:55 Transaction Type : REQUEST +12:44:55 Received From : +12:44:55 ============================================================================ +12:44:55 FNo. Len. Field Value +12:44:55 ============================================================================ +12:44:55 [ 1] [ 4] [0800] +12:44:55 [ 7] [ 10] [0320055242] +12:44:55 [ 11] [ 6] [069808] +12:44:55 [ 37] [ 12] [57912069808] +12:44:55 [ 70] [ 3] [301] +12:44:55 ============================================================================ +12:44:55 + + +waiting on router queue for slot.... +12:44:55 Sending to : +12:44:55 ============================================================================ +12:44:55 ============================================================================ +12:44:55 Slot Id : <466> +12:44:55 Transaction Type : RESPONSE +12:44:55 Received From : +12:44:55 ============================================================================ +12:44:55 FNo. Len. Field Value +12:44:55 ============================================================================ +12:44:55 [ 1] [ 4] [0810] +12:44:55 [ 7] [ 10] [0320055242] +12:44:55 [ 11] [ 6] [069808] +12:44:55 [ 37] [ 12] [579120698080] +12:44:55 [ 39] [ 2] [00] +12:44:55 [ 70] [ 3] [810] +12:44:55 ============================================================================ +12:44:55 Calculate Source COMM Id = 1 +12:44:55 ============================================================================ +12:44:55 + + +waiting on router queue for slot.... +12:45:03 ============================================================================ +12:45:03 Slot Id : <452> +12:45:03 Transaction Type : REQUEST +12:45:03 Received From : +12:45:03 ============================================================================ +12:45:03 FNo. Len. Field Value +12:45:03 ============================================================================ +12:45:03 [ 1] [ 4] [0800] +12:45:03 [ 7] [ 10] [0320054410] +12:45:03 [ 11] [ 6] [156380] +12:45:03 [ 70] [ 3] [301] +12:45:03 ============================================================================ +12:45:03 + + +waiting on router queue for slot.... +12:45:03 Sending to : +12:45:03 ============================================================================ +12:45:03 ============================================================================ +12:45:03 Slot Id : <452> +12:45:03 Transaction Type : RESPONSE +12:45:03 Received From : +12:45:03 ============================================================================ +12:45:03 FNo. Len. Field Value +12:45:03 ============================================================================ +12:45:03 [ 1] [ 4] [0810] +12:45:03 [ 7] [ 10] [0320054410] +12:45:03 [ 11] [ 6] [156380] +12:45:03 [ 39] [ 2] [00] +12:45:03 [ 70] [ 3] [301] +12:45:03 ============================================================================ +12:45:03 Calculate Source COMM Id = 2 +12:45:03 ============================================================================ +12:45:03 + + +waiting on router queue for slot.... +12:45:14 ============================================================================ +12:45:14 Slot Id : <468> +12:45:14 Transaction Type : REQUEST +12:45:14 Received From : +12:45:14 ============================================================================ +12:45:14 FNo. Len. Field Value +12:45:14 ============================================================================ +12:45:14 [ 1] [ 4] [0800] +12:45:14 [ 7] [ 10] [0320054421] +12:45:14 [ 11] [ 6] [156381] +12:45:14 [ 70] [ 3] [301] +12:45:14 ============================================================================ +12:45:14 + + +waiting on router queue for slot.... +12:45:14 Sending to : +12:45:14 ============================================================================ +12:45:14 ============================================================================ +12:45:14 Slot Id : <468> +12:45:14 Transaction Type : RESPONSE +12:45:14 Received From : +12:45:14 ============================================================================ +12:45:14 FNo. Len. Field Value +12:45:14 ============================================================================ +12:45:14 [ 1] [ 4] [0810] +12:45:14 [ 7] [ 10] [0320054421] +12:45:14 [ 11] [ 6] [156381] +12:45:14 [ 39] [ 2] [00] +12:45:14 [ 70] [ 3] [301] +12:45:14 ============================================================================ +12:45:14 Calculate Source COMM Id = 2 +12:45:14 ============================================================================ +12:45:14 + + +waiting on router queue for slot.... +12:45:18 ============================================================================ +12:45:18 Slot Id : <475> +12:45:18 Transaction Type : REQUEST +12:45:18 Received From : +12:45:18 ============================================================================ +12:45:18 FNo. Len. Field Value +12:45:18 ============================================================================ +12:45:18 [ 1] [ 4] [0800] +12:45:18 [ 2] [ 5] [02531] +12:45:18 [ 3] [ 6] [579128] +12:45:18 [ 7] [ 10] [0320054518] +12:45:18 [ 11] [ 6] [807152] +12:45:18 [ 15] [ 10] [0320054518] +12:45:18 [ 37] [ 11] [57912807152] +12:45:18 [ 70] [ 3] [001] +12:45:18 ============================================================================ +12:45:18 + + +waiting on router queue for slot.... +12:45:18 ============================================================================ +12:45:18 Slot Id : <475> +12:45:18 Transaction Type : RESPONSE +12:45:18 Received From : +12:45:18 ============================================================================ +12:45:18 FNo. Len. Field Value +12:45:18 ============================================================================ +12:45:18 [ 1] [ 4] [0810] +12:45:18 [ 7] [ 10] [0320054518] +12:45:18 [ 11] [ 6] [807152] +12:45:18 [ 15] [ 4] [0320] +12:45:18 [ 37] [ 12] [57912807152] +12:45:18 [ 39] [ 2] [00] +12:45:18 [ 70] [ 3] [001] +12:45:18 ============================================================================ +12:45:18 Sending to : +12:45:18 ============================================================================ +12:45:18 + + +waiting on router queue for slot.... +12:45:24 ============================================================================ +12:45:24 Slot Id : <455> +12:45:24 Transaction Type : REQUEST +12:45:24 Received From : +12:45:24 ============================================================================ +12:45:24 FNo. Len. Field Value +12:45:24 ============================================================================ +12:45:24 [ 1] [ 4] [0800] +12:45:24 [ 7] [ 10] [0320054432] +12:45:24 [ 11] [ 6] [156382] +12:45:24 [ 70] [ 3] [301] +12:45:24 ============================================================================ +12:45:24 + + +waiting on router queue for slot.... +12:45:24 Sending to : +12:45:24 ============================================================================ +12:45:24 ============================================================================ +12:45:24 Slot Id : <455> +12:45:24 Transaction Type : RESPONSE +12:45:24 Received From : +12:45:24 ============================================================================ +12:45:24 FNo. Len. Field Value +12:45:24 ============================================================================ +12:45:24 [ 1] [ 4] [0810] +12:45:24 [ 7] [ 10] [0320054432] +12:45:24 [ 11] [ 6] [156382] +12:45:24 [ 39] [ 2] [00] +12:45:24 [ 70] [ 3] [301] +12:45:24 ============================================================================ +12:45:24 Calculate Source COMM Id = 2 +12:45:24 ============================================================================ +12:45:24 + + +waiting on router queue for slot.... +12:45:30 ============================================================================ +12:45:30 Slot Id : <449> +12:45:30 Transaction Type : REQUEST +12:45:30 Received From : +12:45:30 ============================================================================ +12:45:30 FNo. Len. Field Value +12:45:30 ============================================================================ +12:45:30 [ 1] [ 4] [0200] +12:45:30 [ 2] [ 16] [6688990106522301] +12:45:30 [ 3] [ 6] [301000] +12:45:30 [ 4] [ 12] [000000000000] +12:45:30 [ 7] [ 10] [0320124526] +12:45:30 [ 11] [ 6] [748516] +12:45:30 [ 12] [ 6] [124526] +12:45:30 [ 13] [ 4] [0320] +12:45:30 [ 15] [ 4] [0320] +12:45:30 [ 18] [ 4] [6011] +12:45:30 [ 22] [ 3] [900] +12:45:30 [ 25] [ 2] [02] +12:45:30 [ 28] [ 9] [D00000000] +12:45:30 [ 32] [ 6] [621354] +12:45:30 [ 35] [ 37] [6688990106522301=43121231230132200000] +12:45:30 [ 37] [ 12] [507902783116] +12:45:30 [ 41] [ 8] [01007200] +12:45:30 [ 42] [ 15] [NATIVE ] +12:45:30 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +12:45:30 [ 49] [ 3] [418] +12:45:30 [ 52] [ 16] [6409F9B1346863AA] +12:45:30 ============================================================================ +12:45:30 + + +waiting on router queue for slot.... +12:45:30 Sending to : +12:45:30 ============================================================================ +12:45:30 Sending to : +12:45:30 ============================================================================ +12:45:31 ============================================================================ +12:45:31 Slot Id : <449> +12:45:31 Transaction Type : REQUEST +12:45:31 Received From : +12:45:31 ============================================================================ +12:45:31 FNo. Len. Field Value +12:45:31 ============================================================================ +12:45:31 [ 1] [ 4] [0200] +12:45:31 [ 2] [ 16] [6688990106522301] +12:45:31 [ 3] [ 6] [301000] +12:45:31 [ 4] [ 12] [000000000000] +12:45:31 [ 7] [ 10] [0320124526] +12:45:31 [ 11] [ 6] [748516] +12:45:31 [ 12] [ 6] [124526] +12:45:31 [ 13] [ 4] [0320] +12:45:31 [ 15] [ 4] [0320] +12:45:31 [ 18] [ 4] [6011] +12:45:31 [ 22] [ 3] [900] +12:45:31 [ 25] [ 2] [02] +12:45:31 [ 28] [ 9] [D00000000] +12:45:31 [ 32] [ 6] [621354] +12:45:31 [ 35] [ 37] [6688990106522301=43121231230132200000] +12:45:31 [ 37] [ 12] [507902783116] +12:45:31 [ 41] [ 8] [01007200] +12:45:31 [ 42] [ 15] [NATIVE ] +12:45:31 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +12:45:31 [ 49] [ 3] [418] +12:45:31 [ 52] [ 16] [6409F9B1346863AA] +12:45:31 ============================================================================ +12:45:31 + + +waiting on router queue for slot.... +12:45:31 Sending to : +12:45:31 ============================================================================ +12:45:31 ============================================================================ +12:45:31 Slot Id : <449> +12:45:31 Transaction Type : REQUEST +12:45:31 Received From : +12:45:31 ============================================================================ +12:45:31 FNo. Len. Field Value +12:45:31 ============================================================================ +12:45:31 [ 1] [ 4] [0200] +12:45:31 [ 2] [ 16] [6688990106522301] +12:45:31 [ 3] [ 6] [301000] +12:45:31 [ 4] [ 12] [000000000000] +12:45:31 [ 7] [ 10] [0320124526] +12:45:31 [ 11] [ 6] [748516] +12:45:31 [ 12] [ 6] [124526] +12:45:31 [ 13] [ 4] [0320] +12:45:31 [ 15] [ 4] [0320] +12:45:31 [ 18] [ 4] [6011] +12:45:31 [ 22] [ 3] [900] +12:45:31 [ 25] [ 2] [02] +12:45:31 [ 28] [ 9] [D00000000] +12:45:31 [ 32] [ 6] [621354] +12:45:31 [ 35] [ 37] [6688990106522301=43121231230132200000] +12:45:31 [ 37] [ 12] [507902783116] +12:45:31 [ 41] [ 8] [01007200] +12:45:31 [ 42] [ 15] [NATIVE ] +12:45:31 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +12:45:31 [ 49] [ 3] [418] +12:45:31 [ 52] [ 16] [A16DB51EE1456E95] +12:45:31 ============================================================================ +12:45:31 + + +waiting on router queue for slot.... +12:45:31 Sending to : <4> +12:45:31 ============================================================================ +12:45:32 ============================================================================ +12:45:32 Slot Id : <449> +12:45:32 Transaction Type : RESPONSE +12:45:32 Received From : +12:45:32 ============================================================================ +12:45:32 FNo. Len. Field Value +12:45:32 ============================================================================ +12:45:32 [ 1] [ 4] [0210] +12:45:32 [ 2] [ 16] [6688990106522301] +12:45:32 [ 3] [ 6] [301000] +12:45:32 [ 4] [ 12] [000000000000] +12:45:32 [ 11] [ 6] [748516] +12:45:32 [ 12] [ 6] [124526] +12:45:32 [ 15] [ 4] [0320] +12:45:32 [ 18] [ 4] [6011] +12:45:32 [ 32] [ 6] [621354] +12:45:32 [ 35] [ 37] [6688990106522301=43121231230132200000] +12:45:32 [ 37] [ 12] [507902783116] +12:45:32 [ 38] [ 6] [937188] +12:45:32 [ 39] [ 2] [00] +12:45:32 [ 41] [ 8] [01007200] +12:45:32 [ 49] [ 3] [418] +12:45:32 [ 54] [ 20] [1002418C000157438961] +12:45:32 ============================================================================ +12:45:32 Sending to : +12:45:32 ============================================================================ +12:45:32 + + +waiting on router queue for slot.... +12:45:33 ============================================================================ +12:45:33 Slot Id : <449> +12:45:33 Transaction Type : RESPONSE +12:45:33 Received From : +12:45:33 ============================================================================ +12:45:33 FNo. Len. Field Value +12:45:33 ============================================================================ +12:45:33 [ 1] [ 4] [0210] +12:45:33 [ 2] [ 16] [6688990106522301] +12:45:33 [ 3] [ 6] [301000] +12:45:33 [ 4] [ 12] [000000000000] +12:45:33 [ 11] [ 6] [748516] +12:45:33 [ 12] [ 6] [124526] +12:45:33 [ 15] [ 4] [0320] +12:45:33 [ 18] [ 4] [6011] +12:45:33 [ 32] [ 6] [621354] +12:45:33 [ 35] [ 37] [6688990106522301=43121231230132200000] +12:45:33 [ 37] [ 12] [507902783116] +12:45:33 [ 38] [ 6] [937188] +12:45:33 [ 39] [ 2] [00] +12:45:33 [ 41] [ 8] [01007200] +12:45:33 [ 49] [ 3] [418] +12:45:33 [ 54] [ 20] [1002418C000157438961] +12:45:33 ============================================================================ +12:45:33 Calculate Source COMM Id = 0 +12:45:33 ============================================================================ +12:45:33 + + +waiting on router queue for slot.... +12:45:35 ============================================================================ +12:45:35 Slot Id : <440> +12:45:35 Transaction Type : REQUEST +12:45:35 Received From : +12:45:35 ============================================================================ +12:45:35 FNo. Len. Field Value +12:45:35 ============================================================================ +12:45:35 [ 1] [ 4] [0800] +12:45:35 [ 7] [ 10] [0320054442] +12:45:35 [ 11] [ 6] [156383] +12:45:35 [ 70] [ 3] [301] +12:45:35 ============================================================================ +12:45:35 + + +waiting on router queue for slot.... +12:45:35 Sending to : +12:45:35 ============================================================================ +12:45:35 ============================================================================ +12:45:35 Slot Id : <440> +12:45:35 Transaction Type : RESPONSE +12:45:35 Received From : +12:45:35 ============================================================================ +12:45:35 FNo. Len. Field Value +12:45:35 ============================================================================ +12:45:35 [ 1] [ 4] [0810] +12:45:35 [ 7] [ 10] [0320054442] +12:45:35 [ 11] [ 6] [156383] +12:45:35 [ 39] [ 2] [00] +12:45:35 [ 70] [ 3] [301] +12:45:35 ============================================================================ +12:45:35 Calculate Source COMM Id = 2 +12:45:35 ============================================================================ +12:45:35 + + +waiting on router queue for slot.... +12:45:45 ============================================================================ +12:45:45 Slot Id : <460> +12:45:45 Transaction Type : REQUEST +12:45:45 Received From : +12:45:45 ============================================================================ +12:45:45 FNo. Len. Field Value +12:45:45 ============================================================================ +12:45:45 [ 1] [ 4] [0800] +12:45:45 [ 7] [ 10] [0320054453] +12:45:45 [ 11] [ 6] [156384] +12:45:45 [ 70] [ 3] [301] +12:45:45 ============================================================================ +12:45:45 + + +waiting on router queue for slot.... +12:45:45 Sending to : +12:45:45 ============================================================================ +12:45:45 ============================================================================ +12:45:45 Slot Id : <460> +12:45:45 Transaction Type : RESPONSE +12:45:45 Received From : +12:45:45 ============================================================================ +12:45:45 FNo. Len. Field Value +12:45:45 ============================================================================ +12:45:45 [ 1] [ 4] [0810] +12:45:45 [ 7] [ 10] [0320054453] +12:45:45 [ 11] [ 6] [156384] +12:45:45 [ 39] [ 2] [00] +12:45:45 [ 70] [ 3] [301] +12:45:45 ============================================================================ +12:45:45 Calculate Source COMM Id = 2 +12:45:45 ============================================================================ +12:45:45 + + +waiting on router queue for slot.... +12:45:50 ============================================================================ +12:45:50 Slot Id : <482> +12:45:50 Transaction Type : REQUEST +12:45:50 Received From : +12:45:50 ============================================================================ +12:45:50 FNo. Len. Field Value +12:45:50 ============================================================================ +12:45:50 [ 1] [ 4] [0200] +12:45:50 [ 2] [ 16] [6213544001763934] +12:45:50 [ 3] [ 6] [010000] +12:45:50 [ 4] [ 12] [000070000000] +12:45:50 [ 7] [ 10] [0320124341] +12:45:50 [ 11] [ 6] [944895] +12:45:50 [ 12] [ 6] [124341] +12:45:50 [ 13] [ 4] [0320] +12:45:50 [ 15] [ 4] [0320] +12:45:50 [ 18] [ 4] [6011] +12:45:50 [ 19] [ 3] [418] +12:45:50 [ 22] [ 3] [021] +12:45:50 [ 25] [ 2] [01] +12:45:50 [ 28] [ 9] [D00002000] +12:45:50 [ 32] [ 6] [668899] +12:45:50 [ 35] [ 32] [6213544001763934=491212016393596] +12:45:50 [ 37] [ 12] [507902093318] +12:45:50 [ 41] [ 8] [03020021] +12:45:50 [ 42] [ 15] [APT ] +12:45:50 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +12:45:50 [ 49] [ 3] [418] +12:45:50 [ 52] [ 16] [8FB2AA63AAE18DF9] +12:45:50 ============================================================================ +12:45:50 + + +waiting on router queue for slot.... +12:45:50 Sending to : +12:45:50 ============================================================================ +12:45:50 Sending to : +12:45:50 ============================================================================ +12:45:50 ============================================================================ +12:45:50 Slot Id : <482> +12:45:50 Transaction Type : REQUEST +12:45:50 Received From : +12:45:50 ============================================================================ +12:45:50 FNo. Len. Field Value +12:45:50 ============================================================================ +12:45:50 [ 1] [ 4] [0200] +12:45:50 [ 2] [ 16] [6213544001763934] +12:45:50 [ 3] [ 6] [010000] +12:45:50 [ 4] [ 12] [000070000000] +12:45:50 [ 7] [ 10] [0320124341] +12:45:50 [ 11] [ 6] [944895] +12:45:50 [ 12] [ 6] [124341] +12:45:50 [ 13] [ 4] [0320] +12:45:50 [ 15] [ 4] [0320] +12:45:50 [ 18] [ 4] [6011] +12:45:50 [ 19] [ 3] [418] +12:45:50 [ 22] [ 3] [021] +12:45:50 [ 25] [ 2] [01] +12:45:50 [ 28] [ 9] [D00002000] +12:45:50 [ 32] [ 6] [668899] +12:45:50 [ 35] [ 32] [6213544001763934=491212016393596] +12:45:50 [ 37] [ 12] [507902093318] +12:45:50 [ 41] [ 8] [03020021] +12:45:50 [ 42] [ 15] [APT ] +12:45:50 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +12:45:50 [ 49] [ 3] [418] +12:45:50 [ 52] [ 16] [8FB2AA63AAE18DF9] +12:45:50 ============================================================================ +12:45:50 + + +waiting on router queue for slot.... +12:45:50 Sending to : +12:45:50 ============================================================================ +12:45:50 ============================================================================ +12:45:50 Slot Id : <482> +12:45:50 Transaction Type : REQUEST +12:45:50 Received From : +12:45:50 ============================================================================ +12:45:50 FNo. Len. Field Value +12:45:50 ============================================================================ +12:45:50 [ 1] [ 4] [0200] +12:45:50 [ 2] [ 16] [6213544001763934] +12:45:50 [ 3] [ 6] [010000] +12:45:50 [ 4] [ 12] [000070000000] +12:45:50 [ 7] [ 10] [0320124341] +12:45:50 [ 11] [ 6] [944895] +12:45:50 [ 12] [ 6] [124341] +12:45:50 [ 13] [ 4] [0320] +12:45:50 [ 15] [ 4] [0320] +12:45:50 [ 18] [ 4] [6011] +12:45:50 [ 19] [ 3] [418] +12:45:50 [ 22] [ 3] [021] +12:45:50 [ 25] [ 2] [01] +12:45:50 [ 28] [ 9] [D00002000] +12:45:50 [ 32] [ 6] [668899] +12:45:50 [ 35] [ 32] [6213544001763934=491212016393596] +12:45:50 [ 37] [ 12] [507902093318] +12:45:50 [ 41] [ 8] [03020021] +12:45:50 [ 42] [ 15] [APT ] +12:45:50 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +12:45:50 [ 49] [ 3] [418] +12:45:50 [ 52] [ 16] [DDBCA135B60E9A71] +12:45:50 ============================================================================ +12:45:50 + + +waiting on router queue for slot.... +12:45:50 Sending to : <0> +12:45:50 ============================================================================ +12:45:51 ============================================================================ +12:45:51 Slot Id : <482> +12:45:51 Transaction Type : RESPONSE +12:45:51 Received From : +12:45:51 ============================================================================ +12:45:51 FNo. Len. Field Value +12:45:51 ============================================================================ +12:45:51 [ 1] [ 4] [0210] +12:45:51 [ 2] [ 16] [6213544001763934] +12:45:51 [ 3] [ 6] [010000] +12:45:51 [ 4] [ 12] [000070000000] +12:45:51 [ 7] [ 10] [0320124341] +12:45:51 [ 11] [ 6] [944895] +12:45:51 [ 12] [ 6] [124341] +12:45:51 [ 13] [ 4] [0320] +12:45:51 [ 15] [ 4] [0320] +12:45:51 [ 18] [ 4] [6011] +12:45:51 [ 19] [ 3] [418] +12:45:51 [ 32] [ 6] [668899] +12:45:51 [ 35] [ 32] [6213544001763934=491212016393596] +12:45:51 [ 37] [ 12] [507902093318] +12:45:51 [ 38] [ 6] [944895] +12:45:51 [ 39] [ 2] [51] +12:45:51 [ 41] [ 8] [03020021] +12:45:51 [ 49] [ 3] [418] +12:45:51 [ 54] [ 40] [0001418C0000088288830002418C000008828883] +12:45:51 ============================================================================ +12:45:51 Sending to : +12:45:51 ============================================================================ +12:45:51 + + +waiting on router queue for slot.... +12:45:52 ============================================================================ +12:45:52 Slot Id : <482> +12:45:52 Transaction Type : RESPONSE +12:45:52 Received From : +12:45:52 ============================================================================ +12:45:52 FNo. Len. Field Value +12:45:52 ============================================================================ +12:45:52 [ 1] [ 4] [0210] +12:45:52 [ 2] [ 16] [6213544001763934] +12:45:52 [ 3] [ 6] [010000] +12:45:52 [ 4] [ 12] [000070000000] +12:45:52 [ 7] [ 10] [0320124341] +12:45:52 [ 11] [ 6] [944895] +12:45:52 [ 12] [ 6] [124341] +12:45:52 [ 13] [ 4] [0320] +12:45:52 [ 15] [ 4] [0320] +12:45:52 [ 18] [ 4] [6011] +12:45:52 [ 19] [ 3] [418] +12:45:52 [ 32] [ 6] [668899] +12:45:52 [ 35] [ 32] [6213544001763934=491212016393596] +12:45:52 [ 37] [ 12] [507902093318] +12:45:52 [ 38] [ 6] [944895] +12:45:52 [ 39] [ 2] [51] +12:45:52 [ 41] [ 8] [03020021] +12:45:52 [ 49] [ 3] [418] +12:45:52 [ 54] [ 40] [0001418C0000088288830002418C000008828883] +12:45:52 ============================================================================ +12:45:52 Calculate Source COMM Id = 4 +12:45:52 ============================================================================ +12:45:52 + + +waiting on router queue for slot.... +12:45:54 ============================================================================ +12:45:54 Slot Id : <432> +12:45:54 Transaction Type : REQUEST +12:45:54 Received From : +12:45:54 ============================================================================ +12:45:54 FNo. Len. Field Value +12:45:54 ============================================================================ +12:45:54 [ 1] [ 4] [0200] +12:45:54 [ 2] [ 16] [6213544000936523] +12:45:54 [ 3] [ 6] [010000] +12:45:54 [ 4] [ 12] [000020000000] +12:45:54 [ 7] [ 10] [0320124345] +12:45:54 [ 11] [ 6] [944899] +12:45:54 [ 12] [ 6] [124345] +12:45:54 [ 13] [ 4] [0320] +12:45:54 [ 15] [ 4] [0320] +12:45:54 [ 18] [ 4] [6011] +12:45:54 [ 19] [ 3] [418] +12:45:54 [ 22] [ 3] [021] +12:45:54 [ 25] [ 2] [01] +12:45:54 [ 28] [ 9] [D00002000] +12:45:54 [ 32] [ 6] [668899] +12:45:54 [ 35] [ 32] [6213544000936523=491212013652395] +12:45:54 [ 37] [ 12] [507901856436] +12:45:54 [ 41] [ 8] [03311001] +12:45:54 [ 42] [ 15] [APT ] +12:45:54 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +12:45:54 [ 49] [ 3] [418] +12:45:54 [ 52] [ 16] [8EC223E07F517A80] +12:45:54 ============================================================================ +12:45:54 + + +waiting on router queue for slot.... +12:45:54 Sending to : +12:45:54 ============================================================================ +12:45:54 Sending to : +12:45:54 ============================================================================ +12:45:55 ============================================================================ +12:45:55 Slot Id : <432> +12:45:55 Transaction Type : REQUEST +12:45:55 Received From : +12:45:55 ============================================================================ +12:45:55 FNo. Len. Field Value +12:45:55 ============================================================================ +12:45:55 [ 1] [ 4] [0200] +12:45:55 [ 2] [ 16] [6213544000936523] +12:45:55 [ 3] [ 6] [010000] +12:45:55 [ 4] [ 12] [000020000000] +12:45:55 [ 7] [ 10] [0320124345] +12:45:55 [ 11] [ 6] [944899] +12:45:55 [ 12] [ 6] [124345] +12:45:55 [ 13] [ 4] [0320] +12:45:55 [ 15] [ 4] [0320] +12:45:55 [ 18] [ 4] [6011] +12:45:55 [ 19] [ 3] [418] +12:45:55 [ 22] [ 3] [021] +12:45:55 [ 25] [ 2] [01] +12:45:55 [ 28] [ 9] [D00002000] +12:45:55 [ 32] [ 6] [668899] +12:45:55 [ 35] [ 32] [6213544000936523=491212013652395] +12:45:55 [ 37] [ 12] [507901856436] +12:45:55 [ 41] [ 8] [03311001] +12:45:55 [ 42] [ 15] [APT ] +12:45:55 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +12:45:55 [ 49] [ 3] [418] +12:45:55 [ 52] [ 16] [8EC223E07F517A80] +12:45:55 ============================================================================ +12:45:55 + + +waiting on router queue for slot.... +12:45:55 Sending to : +12:45:55 ============================================================================ +12:45:55 ============================================================================ +12:45:55 Slot Id : <432> +12:45:55 Transaction Type : REQUEST +12:45:55 Received From : +12:45:55 ============================================================================ +12:45:55 FNo. Len. Field Value +12:45:55 ============================================================================ +12:45:55 [ 1] [ 4] [0200] +12:45:55 [ 2] [ 16] [6213544000936523] +12:45:55 [ 3] [ 6] [010000] +12:45:55 [ 4] [ 12] [000020000000] +12:45:55 [ 7] [ 10] [0320124345] +12:45:55 [ 11] [ 6] [944899] +12:45:55 [ 12] [ 6] [124345] +12:45:55 [ 13] [ 4] [0320] +12:45:55 [ 15] [ 4] [0320] +12:45:55 [ 18] [ 4] [6011] +12:45:55 [ 19] [ 3] [418] +12:45:55 [ 22] [ 3] [021] +12:45:55 [ 25] [ 2] [01] +12:45:55 [ 28] [ 9] [D00002000] +12:45:55 [ 32] [ 6] [668899] +12:45:55 [ 35] [ 32] [6213544000936523=491212013652395] +12:45:55 [ 37] [ 12] [507901856436] +12:45:55 [ 41] [ 8] [03311001] +12:45:55 [ 42] [ 15] [APT ] +12:45:55 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +12:45:55 [ 49] [ 3] [418] +12:45:55 [ 52] [ 16] [EBB001C301C630E4] +12:45:55 ============================================================================ +12:45:55 + + +waiting on router queue for slot.... +12:45:55 Sending to : <0> +12:45:55 ============================================================================ +12:45:55 ============================================================================ +12:45:55 Slot Id : <432> +12:45:55 Transaction Type : RESPONSE +12:45:55 Received From : +12:45:55 ============================================================================ +12:45:55 FNo. Len. Field Value +12:45:55 ============================================================================ +12:45:55 [ 1] [ 4] [0210] +12:45:55 [ 2] [ 16] [6213544000936523] +12:45:55 [ 3] [ 6] [010000] +12:45:55 [ 4] [ 12] [000020000000] +12:45:55 [ 7] [ 10] [0320124345] +12:45:55 [ 11] [ 6] [944899] +12:45:55 [ 12] [ 6] [124345] +12:45:55 [ 13] [ 4] [0320] +12:45:55 [ 15] [ 4] [0320] +12:45:55 [ 18] [ 4] [6011] +12:45:55 [ 19] [ 3] [418] +12:45:55 [ 32] [ 6] [668899] +12:45:55 [ 35] [ 32] [6213544000936523=491212013652395] +12:45:55 [ 37] [ 12] [507901856436] +12:45:55 [ 38] [ 6] [742478] +12:45:55 [ 39] [ 2] [00] +12:45:55 [ 41] [ 8] [03311001] +12:45:55 [ 49] [ 3] [418] +12:45:55 [ 54] [ 40] [0001418C0000147901760002418C000014790176] +12:45:55 ============================================================================ +12:45:55 Sending to : +12:45:55 ============================================================================ +12:45:55 + + +waiting on router queue for slot.... +12:45:57 ============================================================================ +12:45:57 Slot Id : <432> +12:45:57 Transaction Type : RESPONSE +12:45:57 Received From : +12:45:57 ============================================================================ +12:45:57 FNo. Len. Field Value +12:45:57 ============================================================================ +12:45:57 [ 1] [ 4] [0210] +12:45:57 [ 2] [ 16] [6213544000936523] +12:45:57 [ 3] [ 6] [010000] +12:45:57 [ 4] [ 12] [000020000000] +12:45:57 [ 7] [ 10] [0320124345] +12:45:57 [ 11] [ 6] [944899] +12:45:57 [ 12] [ 6] [124345] +12:45:57 [ 13] [ 4] [0320] +12:45:57 [ 15] [ 4] [0320] +12:45:57 [ 18] [ 4] [6011] +12:45:57 [ 19] [ 3] [418] +12:45:57 [ 32] [ 6] [668899] +12:45:57 [ 35] [ 32] [6213544000936523=491212013652395] +12:45:57 [ 37] [ 12] [507901856436] +12:45:57 [ 38] [ 6] [742478] +12:45:57 [ 39] [ 2] [00] +12:45:57 [ 41] [ 8] [03311001] +12:45:57 [ 49] [ 3] [418] +12:45:57 [ 54] [ 40] [0001418C0000147901760002418C000014790176] +12:45:57 ============================================================================ +12:45:57 Calculate Source COMM Id = 4 +12:45:57 ============================================================================ +12:45:57 + + +waiting on router queue for slot.... +12:46:02 ============================================================================ +12:46:02 Slot Id : <495> +12:46:02 Transaction Type : REQUEST +12:46:02 Received From : +12:46:02 ============================================================================ +12:46:02 FNo. Len. Field Value +12:46:02 ============================================================================ +12:46:02 [ 1] [ 4] [0800] +12:46:02 [ 7] [ 10] [0320054509] +12:46:02 [ 11] [ 6] [156385] +12:46:02 [ 70] [ 3] [301] +12:46:02 ============================================================================ +12:46:02 + + +waiting on router queue for slot.... +12:46:02 Sending to : +12:46:02 ============================================================================ +12:46:02 ============================================================================ +12:46:02 Slot Id : <495> +12:46:02 Transaction Type : RESPONSE +12:46:02 Received From : +12:46:02 ============================================================================ +12:46:02 FNo. Len. Field Value +12:46:02 ============================================================================ +12:46:02 [ 1] [ 4] [0810] +12:46:02 [ 7] [ 10] [0320054509] +12:46:02 [ 11] [ 6] [156385] +12:46:02 [ 39] [ 2] [00] +12:46:02 [ 70] [ 3] [301] +12:46:02 ============================================================================ +12:46:02 Calculate Source COMM Id = 2 +12:46:02 ============================================================================ +12:46:02 + + +waiting on router queue for slot.... +12:46:07 ============================================================================ +12:46:07 Slot Id : <453> +12:46:07 Transaction Type : REQUEST +12:46:07 Received From : +12:46:07 ============================================================================ +12:46:07 FNo. Len. Field Value +12:46:07 ============================================================================ +12:46:07 [ 1] [ 4] [0200] +12:46:07 [ 2] [ 16] [1808931300002902] +12:46:07 [ 3] [ 6] [302000] +12:46:07 [ 4] [ 12] [000000000000] +12:46:07 [ 7] [ 10] [0320124603] +12:46:07 [ 11] [ 6] [748650] +12:46:07 [ 12] [ 6] [124603] +12:46:07 [ 13] [ 4] [0320] +12:46:07 [ 15] [ 4] [0320] +12:46:07 [ 18] [ 4] [6011] +12:46:07 [ 22] [ 3] [900] +12:46:07 [ 25] [ 2] [02] +12:46:07 [ 28] [ 9] [D00000000] +12:46:07 [ 32] [ 6] [621354] +12:46:07 [ 35] [ 27] [1808931300002902=1803500749] +12:46:07 [ 37] [ 12] [507903478308] +12:46:07 [ 41] [ 8] [06002000] +12:46:07 [ 42] [ 15] [NATIVE ] +12:46:07 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:46:07 [ 49] [ 3] [418] +12:46:07 [ 52] [ 16] [4743C7384AC6707B] +12:46:07 ============================================================================ +12:46:07 + + +waiting on router queue for slot.... +12:46:07 Sending to : +12:46:07 ============================================================================ +12:46:07 Sending to : +12:46:07 ============================================================================ +12:46:07 ============================================================================ +12:46:07 Slot Id : <453> +12:46:07 Transaction Type : REQUEST +12:46:07 Received From : +12:46:07 ============================================================================ +12:46:07 FNo. Len. Field Value +12:46:07 ============================================================================ +12:46:07 [ 1] [ 4] [0200] +12:46:07 [ 2] [ 16] [1808931300002902] +12:46:07 [ 3] [ 6] [302000] +12:46:07 [ 4] [ 12] [000000000000] +12:46:07 [ 7] [ 10] [0320124603] +12:46:07 [ 11] [ 6] [748650] +12:46:07 [ 12] [ 6] [124603] +12:46:07 [ 13] [ 4] [0320] +12:46:07 [ 15] [ 4] [0320] +12:46:07 [ 18] [ 4] [6011] +12:46:07 [ 22] [ 3] [900] +12:46:07 [ 25] [ 2] [02] +12:46:07 [ 28] [ 9] [D00000000] +12:46:07 [ 32] [ 6] [621354] +12:46:07 [ 35] [ 27] [1808931300002902=1803500749] +12:46:07 [ 37] [ 12] [507903478308] +12:46:07 [ 41] [ 8] [06002000] +12:46:07 [ 42] [ 15] [NATIVE ] +12:46:07 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:46:07 [ 49] [ 3] [418] +12:46:07 [ 52] [ 16] [4743C7384AC6707B] +12:46:07 ============================================================================ +12:46:07 + + +waiting on router queue for slot.... +12:46:07 Sending to : +12:46:07 ============================================================================ +12:46:07 ============================================================================ +12:46:07 Slot Id : <453> +12:46:07 Transaction Type : REQUEST +12:46:07 Received From : +12:46:07 ============================================================================ +12:46:07 FNo. Len. Field Value +12:46:07 ============================================================================ +12:46:07 [ 1] [ 4] [0200] +12:46:07 [ 2] [ 16] [1808931300002902] +12:46:07 [ 3] [ 6] [302000] +12:46:07 [ 4] [ 12] [000000000000] +12:46:07 [ 7] [ 10] [0320124603] +12:46:07 [ 11] [ 6] [748650] +12:46:07 [ 12] [ 6] [124603] +12:46:07 [ 13] [ 4] [0320] +12:46:07 [ 15] [ 4] [0320] +12:46:07 [ 18] [ 4] [6011] +12:46:07 [ 22] [ 3] [900] +12:46:07 [ 25] [ 2] [02] +12:46:07 [ 28] [ 9] [D00000000] +12:46:07 [ 32] [ 6] [621354] +12:46:07 [ 35] [ 27] [1808931300002902=1803500749] +12:46:07 [ 37] [ 12] [507903478308] +12:46:07 [ 41] [ 8] [06002000] +12:46:07 [ 42] [ 15] [NATIVE ] +12:46:07 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:46:07 [ 49] [ 3] [418] +12:46:07 [ 52] [ 16] [C1FF36543C22B505] +12:46:07 ============================================================================ +12:46:07 + + +waiting on router queue for slot.... +12:46:07 Sending to : <2> +12:46:07 ============================================================================ +12:46:08 ============================================================================ +12:46:08 Slot Id : <453> +12:46:08 Transaction Type : RESPONSE +12:46:08 Received From : +12:46:08 ============================================================================ +12:46:08 FNo. Len. Field Value +12:46:08 ============================================================================ +12:46:08 [ 1] [ 4] [0210] +12:46:08 [ 2] [ 16] [1808931300002902] +12:46:08 [ 3] [ 6] [302000] +12:46:08 [ 7] [ 10] [0320124603] +12:46:08 [ 11] [ 6] [748650] +12:46:08 [ 12] [ 6] [124603] +12:46:08 [ 13] [ 4] [0320] +12:46:08 [ 14] [ 4] [1803] +12:46:08 [ 19] [ 3] [418] +12:46:08 [ 32] [ 6] [621354] +12:46:08 [ 37] [ 12] [507903478308] +12:46:08 [ 39] [ 2] [42] +12:46:08 [ 41] [ 8] [06002000] +12:46:08 [ 49] [ 3] [418] +12:46:08 [ 52] [ 16] [C1FF36543C22B505] +12:46:08 ============================================================================ +12:46:08 Sending to : +12:46:08 ============================================================================ +12:46:08 + + +waiting on router queue for slot.... +12:46:10 ============================================================================ +12:46:10 Slot Id : <453> +12:46:10 Transaction Type : RESPONSE +12:46:10 Received From : +12:46:10 ============================================================================ +12:46:10 FNo. Len. Field Value +12:46:10 ============================================================================ +12:46:10 [ 1] [ 4] [0210] +12:46:10 [ 2] [ 16] [1808931300002902] +12:46:10 [ 3] [ 6] [302000] +12:46:10 [ 7] [ 10] [0320124603] +12:46:10 [ 11] [ 6] [748650] +12:46:10 [ 12] [ 6] [124603] +12:46:10 [ 13] [ 4] [0320] +12:46:10 [ 14] [ 4] [1803] +12:46:10 [ 19] [ 3] [418] +12:46:10 [ 32] [ 6] [621354] +12:46:10 [ 37] [ 12] [507903478308] +12:46:10 [ 39] [ 2] [42] +12:46:10 [ 41] [ 8] [06002000] +12:46:10 [ 49] [ 3] [418] +12:46:10 [ 52] [ 16] [C1FF36543C22B505] +12:46:10 ============================================================================ +12:46:10 Calculate Source COMM Id = 0 +12:46:10 ============================================================================ +12:46:10 + + +waiting on router queue for slot.... +12:46:19 ============================================================================ +12:46:19 Slot Id : <488> +12:46:19 Transaction Type : REQUEST +12:46:19 Received From : +12:46:19 ============================================================================ +12:46:19 FNo. Len. Field Value +12:46:19 ============================================================================ +12:46:19 [ 1] [ 4] [0800] +12:46:19 [ 7] [ 10] [0320054526] +12:46:19 [ 11] [ 6] [156386] +12:46:19 [ 70] [ 3] [301] +12:46:19 ============================================================================ +12:46:19 + + +waiting on router queue for slot.... +12:46:19 Sending to : +12:46:19 ============================================================================ +12:46:19 ============================================================================ +12:46:19 Slot Id : <488> +12:46:19 Transaction Type : RESPONSE +12:46:19 Received From : +12:46:19 ============================================================================ +12:46:19 FNo. Len. Field Value +12:46:19 ============================================================================ +12:46:19 [ 1] [ 4] [0810] +12:46:19 [ 7] [ 10] [0320054526] +12:46:19 [ 11] [ 6] [156386] +12:46:19 [ 39] [ 2] [00] +12:46:19 [ 70] [ 3] [301] +12:46:19 ============================================================================ +12:46:19 Calculate Source COMM Id = 2 +12:46:19 ============================================================================ +12:46:19 + + +waiting on router queue for slot.... +12:46:20 ============================================================================ +12:46:20 Slot Id : <484> +12:46:20 Transaction Type : REQUEST +12:46:20 Received From : +12:46:20 ============================================================================ +12:46:20 FNo. Len. Field Value +12:46:20 ============================================================================ +12:46:20 [ 1] [ 4] [0800] +12:46:20 [ 2] [ 5] [02531] +12:46:20 [ 3] [ 6] [579128] +12:46:20 [ 7] [ 10] [0320054620] +12:46:20 [ 11] [ 6] [807153] +12:46:20 [ 15] [ 10] [0320054620] +12:46:20 [ 37] [ 11] [57912807153] +12:46:20 [ 70] [ 3] [001] +12:46:20 ============================================================================ +12:46:20 + + +waiting on router queue for slot.... +12:46:20 ============================================================================ +12:46:20 Slot Id : <484> +12:46:20 Transaction Type : RESPONSE +12:46:20 Received From : +12:46:20 ============================================================================ +12:46:20 FNo. Len. Field Value +12:46:20 ============================================================================ +12:46:20 [ 1] [ 4] [0810] +12:46:20 [ 7] [ 10] [0320054620] +12:46:20 [ 11] [ 6] [807153] +12:46:20 [ 15] [ 4] [0320] +12:46:20 [ 37] [ 12] [57912807153] +12:46:20 [ 39] [ 2] [00] +12:46:20 [ 70] [ 3] [001] +12:46:20 ============================================================================ +12:46:20 Sending to : +12:46:20 ============================================================================ +12:46:20 + + +waiting on router queue for slot.... +12:46:21 ============================================================================ +12:46:21 Slot Id : <470> +12:46:21 Transaction Type : REQUEST +12:46:21 Received From : +12:46:21 ============================================================================ +12:46:21 FNo. Len. Field Value +12:46:21 ============================================================================ +12:46:21 [ 1] [ 4] [0800] +12:46:21 [ 7] [ 10] [0320054412] +12:46:21 [ 11] [ 6] [036349] +12:46:21 [ 37] [ 12] [57912036349] +12:46:21 [ 70] [ 3] [301] +12:46:21 ============================================================================ +12:46:21 + + +waiting on router queue for slot.... +12:46:21 Sending to : +12:46:21 ============================================================================ +12:46:21 ============================================================================ +12:46:21 Slot Id : <470> +12:46:21 Transaction Type : RESPONSE +12:46:21 Received From : +12:46:21 ============================================================================ +12:46:21 FNo. Len. Field Value +12:46:21 ============================================================================ +12:46:21 [ 1] [ 4] [0810] +12:46:21 [ 7] [ 10] [0320054412] +12:46:21 [ 11] [ 6] [036349] +12:46:21 [ 37] [ 12] [579120363490] +12:46:21 [ 39] [ 2] [00] +12:46:21 [ 70] [ 3] [810] +12:46:21 ============================================================================ +12:46:21 Calculate Source COMM Id = 4 +12:46:21 ============================================================================ +12:46:21 + + +waiting on router queue for slot.... +12:46:34 ============================================================================ +12:46:34 Slot Id : <490> +12:46:34 Transaction Type : REQUEST +12:46:34 Received From : +12:46:34 ============================================================================ +12:46:34 FNo. Len. Field Value +12:46:34 ============================================================================ +12:46:34 [ 1] [ 4] [0800] +12:46:34 [ 7] [ 10] [0320054542] +12:46:34 [ 11] [ 6] [156387] +12:46:34 [ 70] [ 3] [301] +12:46:34 ============================================================================ +12:46:34 + + +waiting on router queue for slot.... +12:46:34 Sending to : +12:46:34 ============================================================================ +12:46:34 ============================================================================ +12:46:34 Slot Id : <490> +12:46:34 Transaction Type : RESPONSE +12:46:34 Received From : +12:46:34 ============================================================================ +12:46:34 FNo. Len. Field Value +12:46:34 ============================================================================ +12:46:34 [ 1] [ 4] [0810] +12:46:34 [ 7] [ 10] [0320054542] +12:46:34 [ 11] [ 6] [156387] +12:46:34 [ 39] [ 2] [00] +12:46:34 [ 70] [ 3] [301] +12:46:34 ============================================================================ +12:46:34 Calculate Source COMM Id = 2 +12:46:34 ============================================================================ +12:46:34 + + +waiting on router queue for slot.... +12:46:36 ============================================================================ +12:46:36 Slot Id : <463> +12:46:36 Transaction Type : REQUEST +12:46:36 Received From : +12:46:36 ============================================================================ +12:46:36 FNo. Len. Field Value +12:46:36 ============================================================================ +12:46:36 [ 1] [ 4] [0200] +12:46:36 [ 2] [ 16] [6688990106522301] +12:46:36 [ 3] [ 6] [011000] +12:46:36 [ 4] [ 12] [000050000000] +12:46:36 [ 7] [ 10] [0320124632] +12:46:36 [ 11] [ 6] [748755] +12:46:36 [ 12] [ 6] [124632] +12:46:36 [ 13] [ 4] [0320] +12:46:36 [ 15] [ 4] [0320] +12:46:36 [ 18] [ 4] [6011] +12:46:36 [ 22] [ 3] [900] +12:46:36 [ 25] [ 2] [02] +12:46:36 [ 28] [ 9] [D00002000] +12:46:36 [ 32] [ 6] [621354] +12:46:36 [ 35] [ 37] [6688990106522301=43121231230132200000] +12:46:36 [ 37] [ 12] [507902783118] +12:46:36 [ 41] [ 8] [01007200] +12:46:36 [ 42] [ 15] [NATIVE ] +12:46:36 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +12:46:36 [ 49] [ 3] [418] +12:46:36 [ 52] [ 16] [6409F9B1346863AA] +12:46:36 ============================================================================ +12:46:36 + + +waiting on router queue for slot.... +12:46:36 Sending to : +12:46:36 ============================================================================ +12:46:36 Sending to : +12:46:36 ============================================================================ +12:46:36 ============================================================================ +12:46:36 Slot Id : <463> +12:46:36 Transaction Type : REQUEST +12:46:36 Received From : +12:46:36 ============================================================================ +12:46:36 FNo. Len. Field Value +12:46:36 ============================================================================ +12:46:36 [ 1] [ 4] [0200] +12:46:36 [ 2] [ 16] [6688990106522301] +12:46:36 [ 3] [ 6] [011000] +12:46:36 [ 4] [ 12] [000050000000] +12:46:36 [ 7] [ 10] [0320124632] +12:46:36 [ 11] [ 6] [748755] +12:46:36 [ 12] [ 6] [124632] +12:46:36 [ 13] [ 4] [0320] +12:46:36 [ 15] [ 4] [0320] +12:46:36 [ 18] [ 4] [6011] +12:46:36 [ 22] [ 3] [900] +12:46:36 [ 25] [ 2] [02] +12:46:36 [ 28] [ 9] [D00002000] +12:46:36 [ 32] [ 6] [621354] +12:46:36 [ 35] [ 37] [6688990106522301=43121231230132200000] +12:46:36 [ 37] [ 12] [507902783118] +12:46:36 [ 41] [ 8] [01007200] +12:46:36 [ 42] [ 15] [NATIVE ] +12:46:36 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +12:46:36 [ 49] [ 3] [418] +12:46:36 [ 52] [ 16] [6409F9B1346863AA] +12:46:36 ============================================================================ +12:46:36 + + +waiting on router queue for slot.... +12:46:36 Sending to : +12:46:36 ============================================================================ +12:46:36 ============================================================================ +12:46:36 Slot Id : <463> +12:46:36 Transaction Type : REQUEST +12:46:36 Received From : +12:46:36 ============================================================================ +12:46:36 FNo. Len. Field Value +12:46:36 ============================================================================ +12:46:36 [ 1] [ 4] [0200] +12:46:36 [ 2] [ 16] [6688990106522301] +12:46:36 [ 3] [ 6] [011000] +12:46:36 [ 4] [ 12] [000050000000] +12:46:36 [ 7] [ 10] [0320124632] +12:46:36 [ 11] [ 6] [748755] +12:46:36 [ 12] [ 6] [124632] +12:46:36 [ 13] [ 4] [0320] +12:46:36 [ 15] [ 4] [0320] +12:46:36 [ 18] [ 4] [6011] +12:46:36 [ 22] [ 3] [900] +12:46:36 [ 25] [ 2] [02] +12:46:36 [ 28] [ 9] [D00002000] +12:46:36 [ 32] [ 6] [621354] +12:46:36 [ 35] [ 37] [6688990106522301=43121231230132200000] +12:46:36 [ 37] [ 12] [507902783118] +12:46:36 [ 41] [ 8] [01007200] +12:46:36 [ 42] [ 15] [NATIVE ] +12:46:36 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +12:46:36 [ 49] [ 3] [418] +12:46:36 [ 52] [ 16] [A16DB51EE1456E95] +12:46:36 ============================================================================ +12:46:36 + + +waiting on router queue for slot.... +12:46:36 Sending to : <4> +12:46:36 ============================================================================ +12:46:37 ============================================================================ +12:46:37 Slot Id : <463> +12:46:37 Transaction Type : RESPONSE +12:46:37 Received From : +12:46:37 ============================================================================ +12:46:37 FNo. Len. Field Value +12:46:37 ============================================================================ +12:46:37 [ 1] [ 4] [0210] +12:46:37 [ 2] [ 16] [6688990106522301] +12:46:37 [ 3] [ 6] [011000] +12:46:37 [ 4] [ 12] [000050000000] +12:46:37 [ 11] [ 6] [748755] +12:46:37 [ 12] [ 6] [124632] +12:46:37 [ 15] [ 4] [0320] +12:46:37 [ 18] [ 4] [6011] +12:46:37 [ 32] [ 6] [621354] +12:46:37 [ 35] [ 37] [6688990106522301=43121231230132200000] +12:46:37 [ 37] [ 12] [507902783118] +12:46:37 [ 38] [ 6] [349792] +12:46:37 [ 39] [ 2] [00] +12:46:37 [ 41] [ 8] [01007200] +12:46:37 [ 49] [ 3] [418] +12:46:37 [ 54] [ 20] [1002418C000107238961] +12:46:37 ============================================================================ +12:46:37 Sending to : +12:46:37 ============================================================================ +12:46:37 + + +waiting on router queue for slot.... +12:46:39 ============================================================================ +12:46:39 Slot Id : <463> +12:46:39 Transaction Type : RESPONSE +12:46:39 Received From : +12:46:39 ============================================================================ +12:46:39 FNo. Len. Field Value +12:46:39 ============================================================================ +12:46:39 [ 1] [ 4] [0210] +12:46:39 [ 2] [ 16] [6688990106522301] +12:46:39 [ 3] [ 6] [011000] +12:46:39 [ 4] [ 12] [000050000000] +12:46:39 [ 11] [ 6] [748755] +12:46:39 [ 12] [ 6] [124632] +12:46:39 [ 15] [ 4] [0320] +12:46:39 [ 18] [ 4] [6011] +12:46:39 [ 32] [ 6] [621354] +12:46:39 [ 35] [ 37] [6688990106522301=43121231230132200000] +12:46:39 [ 37] [ 12] [507902783118] +12:46:39 [ 38] [ 6] [349792] +12:46:39 [ 39] [ 2] [00] +12:46:39 [ 41] [ 8] [01007200] +12:46:39 [ 49] [ 3] [418] +12:46:39 [ 54] [ 20] [1002418C000107238961] +12:46:39 ============================================================================ +12:46:39 Calculate Source COMM Id = 0 +12:46:39 ============================================================================ +12:46:39 + + +waiting on router queue for slot.... +12:46:40 ============================================================================ +12:46:40 Slot Id : <480> +12:46:40 Transaction Type : REQUEST +12:46:40 Received From : +12:46:40 ============================================================================ +12:46:40 FNo. Len. Field Value +12:46:40 ============================================================================ +12:46:40 [ 1] [ 4] [0200] +12:46:40 [ 2] [ 16] [6688990105029506] +12:46:40 [ 3] [ 6] [010000] +12:46:40 [ 4] [ 12] [000030000000] +12:46:40 [ 7] [ 10] [0320124636] +12:46:40 [ 11] [ 6] [748772] +12:46:40 [ 12] [ 6] [124636] +12:46:40 [ 13] [ 4] [0320] +12:46:40 [ 15] [ 4] [0320] +12:46:40 [ 18] [ 4] [6011] +12:46:40 [ 22] [ 3] [900] +12:46:40 [ 25] [ 2] [02] +12:46:40 [ 28] [ 9] [D00002000] +12:46:40 [ 32] [ 6] [621354] +12:46:40 [ 35] [ 37] [6688990105029506=43071231950674300000] +12:46:40 [ 37] [ 12] [507902546600] +12:46:40 [ 41] [ 8] [05003700] +12:46:40 [ 42] [ 15] [NATIVE ] +12:46:40 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +12:46:40 [ 49] [ 3] [418] +12:46:40 [ 52] [ 16] [EF849B4720336F3C] +12:46:40 ============================================================================ +12:46:40 + + +waiting on router queue for slot.... +12:46:40 Sending to : +12:46:40 ============================================================================ +12:46:40 Sending to : +12:46:40 ============================================================================ +12:46:40 ============================================================================ +12:46:40 Slot Id : <480> +12:46:40 Transaction Type : REQUEST +12:46:40 Received From : +12:46:40 ============================================================================ +12:46:40 FNo. Len. Field Value +12:46:40 ============================================================================ +12:46:40 [ 1] [ 4] [0200] +12:46:40 [ 2] [ 16] [6688990105029506] +12:46:40 [ 3] [ 6] [010000] +12:46:40 [ 4] [ 12] [000030000000] +12:46:40 [ 7] [ 10] [0320124636] +12:46:40 [ 11] [ 6] [748772] +12:46:40 [ 12] [ 6] [124636] +12:46:40 [ 13] [ 4] [0320] +12:46:40 [ 15] [ 4] [0320] +12:46:40 [ 18] [ 4] [6011] +12:46:40 [ 22] [ 3] [900] +12:46:40 [ 25] [ 2] [02] +12:46:40 [ 28] [ 9] [D00002000] +12:46:40 [ 32] [ 6] [621354] +12:46:40 [ 35] [ 37] [6688990105029506=43071231950674300000] +12:46:40 [ 37] [ 12] [507902546600] +12:46:40 [ 41] [ 8] [05003700] +12:46:40 [ 42] [ 15] [NATIVE ] +12:46:40 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +12:46:40 [ 49] [ 3] [418] +12:46:40 [ 52] [ 16] [EF849B4720336F3C] +12:46:40 ============================================================================ +12:46:40 + + +waiting on router queue for slot.... +12:46:40 Sending to : +12:46:40 ============================================================================ +12:46:40 ============================================================================ +12:46:40 Slot Id : <480> +12:46:40 Transaction Type : REQUEST +12:46:40 Received From : +12:46:40 ============================================================================ +12:46:40 FNo. Len. Field Value +12:46:40 ============================================================================ +12:46:40 [ 1] [ 4] [0200] +12:46:40 [ 2] [ 16] [6688990105029506] +12:46:40 [ 3] [ 6] [010000] +12:46:40 [ 4] [ 12] [000030000000] +12:46:40 [ 7] [ 10] [0320124636] +12:46:40 [ 11] [ 6] [748772] +12:46:40 [ 12] [ 6] [124636] +12:46:40 [ 13] [ 4] [0320] +12:46:40 [ 15] [ 4] [0320] +12:46:40 [ 18] [ 4] [6011] +12:46:40 [ 22] [ 3] [900] +12:46:40 [ 25] [ 2] [02] +12:46:40 [ 28] [ 9] [D00002000] +12:46:40 [ 32] [ 6] [621354] +12:46:40 [ 35] [ 37] [6688990105029506=43071231950674300000] +12:46:40 [ 37] [ 12] [507902546600] +12:46:40 [ 41] [ 8] [05003700] +12:46:40 [ 42] [ 15] [NATIVE ] +12:46:40 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +12:46:40 [ 49] [ 3] [418] +12:46:40 [ 52] [ 16] [7D18B5BE0DBE3DDF] +12:46:40 ============================================================================ +12:46:40 + + +waiting on router queue for slot.... +12:46:40 Sending to : <4> +12:46:40 ============================================================================ +12:46:42 ============================================================================ +12:46:42 Slot Id : <480> +12:46:42 Transaction Type : RESPONSE +12:46:42 Received From : +12:46:42 ============================================================================ +12:46:42 FNo. Len. Field Value +12:46:42 ============================================================================ +12:46:42 [ 1] [ 4] [0210] +12:46:42 [ 2] [ 16] [6688990105029506] +12:46:42 [ 3] [ 6] [010000] +12:46:42 [ 4] [ 12] [000030000000] +12:46:42 [ 11] [ 6] [748772] +12:46:42 [ 12] [ 6] [124636] +12:46:42 [ 15] [ 4] [0320] +12:46:42 [ 18] [ 4] [6011] +12:46:42 [ 32] [ 6] [621354] +12:46:42 [ 35] [ 37] [6688990105029506=43071231950674300000] +12:46:42 [ 37] [ 12] [507902546600] +12:46:42 [ 38] [ 6] [263609] +12:46:42 [ 39] [ 2] [00] +12:46:42 [ 41] [ 8] [05003700] +12:46:42 [ 49] [ 3] [418] +12:46:42 [ 54] [ 20] [0002418C000007052562] +12:46:42 ============================================================================ +12:46:42 Sending to : +12:46:42 ============================================================================ +12:46:42 + + +waiting on router queue for slot.... +12:46:43 ============================================================================ +12:46:43 Slot Id : <480> +12:46:43 Transaction Type : RESPONSE +12:46:43 Received From : +12:46:43 ============================================================================ +12:46:43 FNo. Len. Field Value +12:46:43 ============================================================================ +12:46:43 [ 1] [ 4] [0210] +12:46:43 [ 2] [ 16] [6688990105029506] +12:46:43 [ 3] [ 6] [010000] +12:46:43 [ 4] [ 12] [000030000000] +12:46:43 [ 11] [ 6] [748772] +12:46:43 [ 12] [ 6] [124636] +12:46:43 [ 15] [ 4] [0320] +12:46:43 [ 18] [ 4] [6011] +12:46:43 [ 32] [ 6] [621354] +12:46:43 [ 35] [ 37] [6688990105029506=43071231950674300000] +12:46:43 [ 37] [ 12] [507902546600] +12:46:43 [ 38] [ 6] [263609] +12:46:43 [ 39] [ 2] [00] +12:46:43 [ 41] [ 8] [05003700] +12:46:43 [ 49] [ 3] [418] +12:46:43 [ 54] [ 20] [0002418C000007052562] +12:46:43 ============================================================================ +12:46:43 Calculate Source COMM Id = 0 +12:46:43 ============================================================================ +12:46:43 + + +waiting on router queue for slot.... +12:46:48 ============================================================================ +12:46:48 Slot Id : <448> +12:46:48 Transaction Type : REQUEST +12:46:48 Received From : +12:46:48 ============================================================================ +12:46:48 FNo. Len. Field Value +12:46:48 ============================================================================ +12:46:48 [ 1] [ 4] [0200] +12:46:48 [ 2] [ 16] [1808931300002902] +12:46:48 [ 3] [ 6] [010000] +12:46:48 [ 4] [ 12] [000100000000] +12:46:48 [ 7] [ 10] [0320124644] +12:46:48 [ 11] [ 6] [748826] +12:46:48 [ 12] [ 6] [124644] +12:46:48 [ 13] [ 4] [0320] +12:46:48 [ 15] [ 4] [0320] +12:46:48 [ 18] [ 4] [6011] +12:46:48 [ 22] [ 3] [900] +12:46:48 [ 25] [ 2] [02] +12:46:48 [ 28] [ 9] [D00002000] +12:46:48 [ 32] [ 6] [621354] +12:46:48 [ 35] [ 27] [1808931300002902=1803500749] +12:46:48 [ 37] [ 12] [507903478310] +12:46:48 [ 41] [ 8] [06002000] +12:46:48 [ 42] [ 15] [NATIVE ] +12:46:48 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:46:48 [ 49] [ 3] [418] +12:46:48 [ 52] [ 16] [4743C7384AC6707B] +12:46:48 ============================================================================ +12:46:48 + + +waiting on router queue for slot.... +12:46:48 Sending to : +12:46:48 ============================================================================ +12:46:48 Sending to : +12:46:48 ============================================================================ +12:46:48 ============================================================================ +12:46:48 Slot Id : <448> +12:46:48 Transaction Type : REQUEST +12:46:48 Received From : +12:46:48 ============================================================================ +12:46:48 FNo. Len. Field Value +12:46:48 ============================================================================ +12:46:48 [ 1] [ 4] [0200] +12:46:48 [ 2] [ 16] [1808931300002902] +12:46:48 [ 3] [ 6] [010000] +12:46:48 [ 4] [ 12] [000100000000] +12:46:48 [ 7] [ 10] [0320124644] +12:46:48 [ 11] [ 6] [748826] +12:46:48 [ 12] [ 6] [124644] +12:46:48 [ 13] [ 4] [0320] +12:46:48 [ 15] [ 4] [0320] +12:46:48 [ 18] [ 4] [6011] +12:46:48 [ 22] [ 3] [900] +12:46:48 [ 25] [ 2] [02] +12:46:48 [ 28] [ 9] [D00002000] +12:46:48 [ 32] [ 6] [621354] +12:46:48 [ 35] [ 27] [1808931300002902=1803500749] +12:46:48 [ 37] [ 12] [507903478310] +12:46:48 [ 41] [ 8] [06002000] +12:46:48 [ 42] [ 15] [NATIVE ] +12:46:48 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:46:48 [ 49] [ 3] [418] +12:46:48 [ 52] [ 16] [4743C7384AC6707B] +12:46:48 ============================================================================ +12:46:48 + + +waiting on router queue for slot.... +12:46:49 Sending to : +12:46:49 ============================================================================ +12:46:49 ============================================================================ +12:46:49 Slot Id : <448> +12:46:49 Transaction Type : REQUEST +12:46:49 Received From : +12:46:49 ============================================================================ +12:46:49 FNo. Len. Field Value +12:46:49 ============================================================================ +12:46:49 [ 1] [ 4] [0200] +12:46:49 [ 2] [ 16] [1808931300002902] +12:46:49 [ 3] [ 6] [010000] +12:46:49 [ 4] [ 12] [000100000000] +12:46:49 [ 7] [ 10] [0320124644] +12:46:49 [ 11] [ 6] [748826] +12:46:49 [ 12] [ 6] [124644] +12:46:49 [ 13] [ 4] [0320] +12:46:49 [ 15] [ 4] [0320] +12:46:49 [ 18] [ 4] [6011] +12:46:49 [ 22] [ 3] [900] +12:46:49 [ 25] [ 2] [02] +12:46:49 [ 28] [ 9] [D00002000] +12:46:49 [ 32] [ 6] [621354] +12:46:49 [ 35] [ 27] [1808931300002902=1803500749] +12:46:49 [ 37] [ 12] [507903478310] +12:46:49 [ 41] [ 8] [06002000] +12:46:49 [ 42] [ 15] [NATIVE ] +12:46:49 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:46:49 [ 49] [ 3] [418] +12:46:49 [ 52] [ 16] [C1FF36543C22B505] +12:46:49 ============================================================================ +12:46:49 + + +waiting on router queue for slot.... +12:46:49 Sending to : <2> +12:46:49 ============================================================================ +12:46:52 ============================================================================ +12:46:52 Slot Id : <448> +12:46:52 Transaction Type : RESPONSE +12:46:52 Received From : +12:46:52 ============================================================================ +12:46:52 FNo. Len. Field Value +12:46:52 ============================================================================ +12:46:52 [ 1] [ 4] [0210] +12:46:52 [ 2] [ 16] [1808931300002902] +12:46:52 [ 3] [ 6] [010000] +12:46:52 [ 4] [ 12] [000100000000] +12:46:52 [ 6] [ 12] [000100000000] +12:46:52 [ 7] [ 10] [0320124644] +12:46:52 [ 11] [ 6] [748826] +12:46:52 [ 12] [ 6] [124644] +12:46:52 [ 13] [ 4] [0320] +12:46:52 [ 18] [ 4] [6011] +12:46:52 [ 19] [ 3] [418] +12:46:52 [ 22] [ 3] [021] +12:46:52 [ 32] [ 6] [621354] +12:46:52 [ 35] [ 27] [1808931300002902=1803500749] +12:46:52 [ 37] [ 12] [507903478310] +12:46:52 [ 38] [ 6] [748826] +12:46:52 [ 39] [ 2] [00] +12:46:52 [ 41] [ 8] [06002000] +12:46:52 [ 49] [ 3] [418] +12:46:52 [ 52] [ 16] [C1FF36543C22B505] +12:46:52 [ 54] [ 20] [1001418C000443619600] +12:46:52 ============================================================================ +12:46:52 Sending to : +12:46:52 ============================================================================ +12:46:52 + + +waiting on router queue for slot.... +12:46:53 ============================================================================ +12:46:53 Slot Id : <448> +12:46:53 Transaction Type : RESPONSE +12:46:53 Received From : +12:46:53 ============================================================================ +12:46:53 FNo. Len. Field Value +12:46:53 ============================================================================ +12:46:53 [ 1] [ 4] [0210] +12:46:53 [ 2] [ 16] [1808931300002902] +12:46:53 [ 3] [ 6] [010000] +12:46:53 [ 4] [ 12] [000100000000] +12:46:53 [ 6] [ 12] [000100000000] +12:46:53 [ 7] [ 10] [0320124644] +12:46:53 [ 11] [ 6] [748826] +12:46:53 [ 12] [ 6] [124644] +12:46:53 [ 13] [ 4] [0320] +12:46:53 [ 18] [ 4] [6011] +12:46:53 [ 19] [ 3] [418] +12:46:53 [ 22] [ 3] [021] +12:46:53 [ 32] [ 6] [621354] +12:46:53 [ 35] [ 27] [1808931300002902=1803500749] +12:46:53 [ 37] [ 12] [507903478310] +12:46:53 [ 38] [ 6] [748826] +12:46:53 [ 39] [ 2] [00] +12:46:53 [ 41] [ 8] [06002000] +12:46:53 [ 49] [ 3] [418] +12:46:53 [ 52] [ 16] [C1FF36543C22B505] +12:46:53 [ 54] [ 20] [1001418C000443619600] +12:46:53 ============================================================================ +12:46:53 Calculate Source COMM Id = 0 +12:46:53 ============================================================================ +12:46:53 + + +waiting on router queue for slot.... +12:47:01 ============================================================================ +12:47:01 Slot Id : <471> +12:47:01 Transaction Type : REQUEST +12:47:01 Received From : +12:47:01 ============================================================================ +12:47:01 FNo. Len. Field Value +12:47:01 ============================================================================ +12:47:01 [ 1] [ 4] [0800] +12:47:01 [ 7] [ 10] [0320054608] +12:47:01 [ 11] [ 6] [156388] +12:47:01 [ 70] [ 3] [301] +12:47:01 ============================================================================ +12:47:01 + + +waiting on router queue for slot.... +12:47:01 Sending to : +12:47:01 ============================================================================ +12:47:01 ============================================================================ +12:47:01 Slot Id : <471> +12:47:01 Transaction Type : RESPONSE +12:47:01 Received From : +12:47:01 ============================================================================ +12:47:01 FNo. Len. Field Value +12:47:01 ============================================================================ +12:47:01 [ 1] [ 4] [0810] +12:47:01 [ 7] [ 10] [0320054608] +12:47:01 [ 11] [ 6] [156388] +12:47:01 [ 39] [ 2] [00] +12:47:01 [ 70] [ 3] [301] +12:47:01 ============================================================================ +12:47:01 Calculate Source COMM Id = 2 +12:47:01 ============================================================================ +12:47:01 + + +waiting on router queue for slot.... +12:47:15 ============================================================================ +12:47:15 Slot Id : <479> +12:47:15 Transaction Type : REQUEST +12:47:15 Received From : +12:47:15 ============================================================================ +12:47:15 FNo. Len. Field Value +12:47:15 ============================================================================ +12:47:15 [ 1] [ 4] [0200] +12:47:15 [ 2] [ 16] [6213548000524742] +12:47:15 [ 3] [ 6] [010000] +12:47:15 [ 4] [ 12] [000050000000] +12:47:15 [ 7] [ 10] [0320124505] +12:47:15 [ 11] [ 6] [944947] +12:47:15 [ 12] [ 6] [124505] +12:47:15 [ 13] [ 4] [0320] +12:47:15 [ 15] [ 4] [0320] +12:47:15 [ 18] [ 4] [6011] +12:47:15 [ 19] [ 3] [418] +12:47:15 [ 22] [ 3] [021] +12:47:15 [ 25] [ 2] [01] +12:47:15 [ 28] [ 9] [D00002000] +12:47:15 [ 32] [ 6] [668899] +12:47:15 [ 35] [ 32] [6213548000524742=181212012474845] +12:47:15 [ 37] [ 12] [507901856438] +12:47:15 [ 41] [ 8] [03311001] +12:47:15 [ 42] [ 15] [APT ] +12:47:15 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +12:47:15 [ 49] [ 3] [418] +12:47:15 [ 52] [ 16] [9117229F21861464] +12:47:15 ============================================================================ +12:47:15 + + +waiting on router queue for slot.... +12:47:15 Sending to : +12:47:15 ============================================================================ +12:47:15 Sending to : +12:47:15 ============================================================================ +12:47:15 ============================================================================ +12:47:15 Slot Id : <479> +12:47:15 Transaction Type : REQUEST +12:47:15 Received From : +12:47:15 ============================================================================ +12:47:15 FNo. Len. Field Value +12:47:15 ============================================================================ +12:47:15 [ 1] [ 4] [0200] +12:47:15 [ 2] [ 16] [6213548000524742] +12:47:15 [ 3] [ 6] [010000] +12:47:15 [ 4] [ 12] [000050000000] +12:47:15 [ 7] [ 10] [0320124505] +12:47:15 [ 11] [ 6] [944947] +12:47:15 [ 12] [ 6] [124505] +12:47:15 [ 13] [ 4] [0320] +12:47:15 [ 15] [ 4] [0320] +12:47:15 [ 18] [ 4] [6011] +12:47:15 [ 19] [ 3] [418] +12:47:15 [ 22] [ 3] [021] +12:47:15 [ 25] [ 2] [01] +12:47:15 [ 28] [ 9] [D00002000] +12:47:15 [ 32] [ 6] [668899] +12:47:15 [ 35] [ 32] [6213548000524742=181212012474845] +12:47:15 [ 37] [ 12] [507901856438] +12:47:15 [ 41] [ 8] [03311001] +12:47:15 [ 42] [ 15] [APT ] +12:47:15 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +12:47:15 [ 49] [ 3] [418] +12:47:15 [ 52] [ 16] [9117229F21861464] +12:47:15 ============================================================================ +12:47:15 + + +waiting on router queue for slot.... +12:47:15 Sending to : +12:47:15 ============================================================================ +12:47:15 ============================================================================ +12:47:15 Slot Id : <479> +12:47:15 Transaction Type : REQUEST +12:47:15 Received From : +12:47:15 ============================================================================ +12:47:15 FNo. Len. Field Value +12:47:15 ============================================================================ +12:47:15 [ 1] [ 4] [0200] +12:47:15 [ 2] [ 16] [6213548000524742] +12:47:15 [ 3] [ 6] [010000] +12:47:15 [ 4] [ 12] [000050000000] +12:47:15 [ 7] [ 10] [0320124505] +12:47:15 [ 11] [ 6] [944947] +12:47:15 [ 12] [ 6] [124505] +12:47:15 [ 13] [ 4] [0320] +12:47:15 [ 15] [ 4] [0320] +12:47:15 [ 18] [ 4] [6011] +12:47:15 [ 19] [ 3] [418] +12:47:15 [ 22] [ 3] [021] +12:47:15 [ 25] [ 2] [01] +12:47:15 [ 28] [ 9] [D00002000] +12:47:15 [ 32] [ 6] [668899] +12:47:15 [ 35] [ 32] [6213548000524742=181212012474845] +12:47:15 [ 37] [ 12] [507901856438] +12:47:15 [ 41] [ 8] [03311001] +12:47:15 [ 42] [ 15] [APT ] +12:47:15 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +12:47:15 [ 49] [ 3] [418] +12:47:15 [ 52] [ 16] [A221D49D0A222649] +12:47:15 ============================================================================ +12:47:15 + + +waiting on router queue for slot.... +12:47:15 Sending to : <0> +12:47:15 ============================================================================ +12:47:15 ============================================================================ +12:47:15 Slot Id : <479> +12:47:15 Transaction Type : RESPONSE +12:47:15 Received From : +12:47:15 ============================================================================ +12:47:15 FNo. Len. Field Value +12:47:15 ============================================================================ +12:47:15 [ 1] [ 4] [0210] +12:47:15 [ 2] [ 16] [6213548000524742] +12:47:15 [ 3] [ 6] [010000] +12:47:15 [ 4] [ 12] [000050000000] +12:47:15 [ 7] [ 10] [0320124505] +12:47:15 [ 11] [ 6] [944947] +12:47:15 [ 12] [ 6] [124505] +12:47:15 [ 13] [ 4] [0320] +12:47:15 [ 15] [ 4] [0320] +12:47:15 [ 18] [ 4] [6011] +12:47:15 [ 19] [ 3] [418] +12:47:15 [ 22] [ 3] [021] +12:47:15 [ 32] [ 6] [668899] +12:47:15 [ 35] [ 32] [6213548000524742=181212012474845] +12:47:15 [ 37] [ 12] [507901856438] +12:47:15 [ 38] [ 6] [124711] +12:47:15 [ 39] [ 2] [55] +12:47:15 [ 41] [ 8] [03311001] +12:47:15 [ 49] [ 3] [418] +12:47:15 ============================================================================ +12:47:15 Sending to : +12:47:15 ============================================================================ +12:47:15 + + +waiting on router queue for slot.... +12:47:16 ============================================================================ +12:47:16 Slot Id : <0> +12:47:16 Transaction Type : REQUEST +12:47:16 Received From : +12:47:16 ============================================================================ +12:47:16 FNo. Len. Field Value +12:47:16 ============================================================================ +12:47:16 [ 1] [ 4] [0800] +12:47:16 [ 7] [ 10] [0320054623] +12:47:16 [ 11] [ 6] [156389] +12:47:16 [ 70] [ 3] [301] +12:47:16 ============================================================================ +12:47:16 + + +waiting on router queue for slot.... +12:47:16 Sending to : +12:47:16 ============================================================================ +12:47:16 ============================================================================ +12:47:16 Slot Id : <0> +12:47:16 Transaction Type : RESPONSE +12:47:16 Received From : +12:47:16 ============================================================================ +12:47:16 FNo. Len. Field Value +12:47:16 ============================================================================ +12:47:16 [ 1] [ 4] [0810] +12:47:16 [ 7] [ 10] [0320054623] +12:47:16 [ 11] [ 6] [156389] +12:47:16 [ 39] [ 2] [00] +12:47:16 [ 70] [ 3] [301] +12:47:16 ============================================================================ +12:47:16 Calculate Source COMM Id = 2 +12:47:16 ============================================================================ +12:47:16 + + +waiting on router queue for slot.... +12:47:16 ============================================================================ +12:47:16 Slot Id : <479> +12:47:16 Transaction Type : RESPONSE +12:47:16 Received From : +12:47:16 ============================================================================ +12:47:16 FNo. Len. Field Value +12:47:16 ============================================================================ +12:47:16 [ 1] [ 4] [0210] +12:47:16 [ 2] [ 16] [6213548000524742] +12:47:16 [ 3] [ 6] [010000] +12:47:16 [ 4] [ 12] [000050000000] +12:47:16 [ 7] [ 10] [0320124505] +12:47:16 [ 11] [ 6] [944947] +12:47:16 [ 12] [ 6] [124505] +12:47:16 [ 13] [ 4] [0320] +12:47:16 [ 15] [ 4] [0320] +12:47:16 [ 18] [ 4] [6011] +12:47:16 [ 19] [ 3] [418] +12:47:16 [ 22] [ 3] [021] +12:47:16 [ 32] [ 6] [668899] +12:47:16 [ 35] [ 32] [6213548000524742=181212012474845] +12:47:16 [ 37] [ 12] [507901856438] +12:47:16 [ 38] [ 6] [124711] +12:47:16 [ 39] [ 2] [55] +12:47:16 [ 41] [ 8] [03311001] +12:47:16 [ 49] [ 3] [418] +12:47:16 ============================================================================ +12:47:16 Calculate Source COMM Id = 4 +12:47:16 ============================================================================ +12:47:16 + + +waiting on router queue for slot.... +12:47:17 ============================================================================ +12:47:17 Slot Id : <2> +12:47:17 Transaction Type : REQUEST +12:47:17 Received From : +12:47:17 ============================================================================ +12:47:17 FNo. Len. Field Value +12:47:17 ============================================================================ +12:47:17 [ 1] [ 4] [0200] +12:47:17 [ 2] [ 16] [6213544002109749] +12:47:17 [ 3] [ 6] [300000] +12:47:17 [ 4] [ 12] [000000000000] +12:47:17 [ 7] [ 10] [0320124508] +12:47:17 [ 11] [ 6] [944948] +12:47:17 [ 12] [ 6] [124508] +12:47:17 [ 13] [ 4] [0320] +12:47:17 [ 15] [ 4] [0320] +12:47:17 [ 18] [ 4] [6011] +12:47:17 [ 19] [ 3] [418] +12:47:17 [ 22] [ 3] [021] +12:47:17 [ 25] [ 2] [01] +12:47:17 [ 28] [ 9] [D00000000] +12:47:17 [ 32] [ 6] [668899] +12:47:17 [ 35] [ 32] [6213544002109749=491212010974171] +12:47:17 [ 37] [ 12] [507901373727] +12:47:17 [ 41] [ 8] [03209001] +12:47:17 [ 42] [ 15] [APT ] +12:47:17 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +12:47:17 [ 49] [ 3] [418] +12:47:17 [ 52] [ 16] [0DC4C8DF0A1B4FC2] +12:47:17 ============================================================================ +12:47:17 + + +waiting on router queue for slot.... +12:47:17 Sending to : +12:47:17 ============================================================================ +12:47:17 Sending to : +12:47:17 ============================================================================ +12:47:18 ============================================================================ +12:47:18 Slot Id : <2> +12:47:18 Transaction Type : REQUEST +12:47:18 Received From : +12:47:18 ============================================================================ +12:47:18 FNo. Len. Field Value +12:47:18 ============================================================================ +12:47:18 [ 1] [ 4] [0200] +12:47:18 [ 2] [ 16] [6213544002109749] +12:47:18 [ 3] [ 6] [300000] +12:47:18 [ 4] [ 12] [000000000000] +12:47:18 [ 7] [ 10] [0320124508] +12:47:18 [ 11] [ 6] [944948] +12:47:18 [ 12] [ 6] [124508] +12:47:18 [ 13] [ 4] [0320] +12:47:18 [ 15] [ 4] [0320] +12:47:18 [ 18] [ 4] [6011] +12:47:18 [ 19] [ 3] [418] +12:47:18 [ 22] [ 3] [021] +12:47:18 [ 25] [ 2] [01] +12:47:18 [ 28] [ 9] [D00000000] +12:47:18 [ 32] [ 6] [668899] +12:47:18 [ 35] [ 32] [6213544002109749=491212010974171] +12:47:18 [ 37] [ 12] [507901373727] +12:47:18 [ 41] [ 8] [03209001] +12:47:18 [ 42] [ 15] [APT ] +12:47:18 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +12:47:18 [ 49] [ 3] [418] +12:47:18 [ 52] [ 16] [0DC4C8DF0A1B4FC2] +12:47:18 ============================================================================ +12:47:18 + + +waiting on router queue for slot.... +12:47:18 Sending to : +12:47:18 ============================================================================ +12:47:18 ============================================================================ +12:47:18 Slot Id : <2> +12:47:18 Transaction Type : REQUEST +12:47:18 Received From : +12:47:18 ============================================================================ +12:47:18 FNo. Len. Field Value +12:47:18 ============================================================================ +12:47:18 [ 1] [ 4] [0200] +12:47:18 [ 2] [ 16] [6213544002109749] +12:47:18 [ 3] [ 6] [300000] +12:47:18 [ 4] [ 12] [000000000000] +12:47:18 [ 7] [ 10] [0320124508] +12:47:18 [ 11] [ 6] [944948] +12:47:18 [ 12] [ 6] [124508] +12:47:18 [ 13] [ 4] [0320] +12:47:18 [ 15] [ 4] [0320] +12:47:18 [ 18] [ 4] [6011] +12:47:18 [ 19] [ 3] [418] +12:47:18 [ 22] [ 3] [021] +12:47:18 [ 25] [ 2] [01] +12:47:18 [ 28] [ 9] [D00000000] +12:47:18 [ 32] [ 6] [668899] +12:47:18 [ 35] [ 32] [6213544002109749=491212010974171] +12:47:18 [ 37] [ 12] [507901373727] +12:47:18 [ 41] [ 8] [03209001] +12:47:18 [ 42] [ 15] [APT ] +12:47:18 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +12:47:18 [ 49] [ 3] [418] +12:47:18 [ 52] [ 16] [F56FCBC2D7FCBAD3] +12:47:18 ============================================================================ +12:47:18 + + +waiting on router queue for slot.... +12:47:18 Sending to : <0> +12:47:18 ============================================================================ +12:47:19 ============================================================================ +12:47:19 Slot Id : <2> +12:47:19 Transaction Type : RESPONSE +12:47:19 Received From : +12:47:19 ============================================================================ +12:47:19 FNo. Len. Field Value +12:47:19 ============================================================================ +12:47:19 [ 1] [ 4] [0210] +12:47:19 [ 2] [ 16] [6213544002109749] +12:47:19 [ 3] [ 6] [300000] +12:47:19 [ 4] [ 12] [000000000000] +12:47:19 [ 7] [ 10] [0320124508] +12:47:19 [ 11] [ 6] [944948] +12:47:19 [ 12] [ 6] [124508] +12:47:19 [ 13] [ 4] [0320] +12:47:19 [ 15] [ 4] [0320] +12:47:19 [ 18] [ 4] [6011] +12:47:19 [ 19] [ 3] [418] +12:47:19 [ 32] [ 6] [668899] +12:47:19 [ 35] [ 32] [6213544002109749=491212010974171] +12:47:19 [ 37] [ 12] [507901373727] +12:47:19 [ 38] [ 6] [862442] +12:47:19 [ 39] [ 2] [00] +12:47:19 [ 41] [ 8] [03209001] +12:47:19 [ 49] [ 3] [418] +12:47:19 [ 54] [ 40] [0001418C0005704315070002418C000570431507] +12:47:19 ============================================================================ +12:47:19 Sending to : +12:47:19 ============================================================================ +12:47:19 + + +waiting on router queue for slot.... +12:47:21 ============================================================================ +12:47:21 Slot Id : <2> +12:47:21 Transaction Type : RESPONSE +12:47:21 Received From : +12:47:21 ============================================================================ +12:47:21 FNo. Len. Field Value +12:47:21 ============================================================================ +12:47:21 [ 1] [ 4] [0210] +12:47:21 [ 2] [ 16] [6213544002109749] +12:47:21 [ 3] [ 6] [300000] +12:47:21 [ 4] [ 12] [000000000000] +12:47:21 [ 7] [ 10] [0320124508] +12:47:21 [ 11] [ 6] [944948] +12:47:21 [ 12] [ 6] [124508] +12:47:21 [ 13] [ 4] [0320] +12:47:21 [ 15] [ 4] [0320] +12:47:21 [ 18] [ 4] [6011] +12:47:21 [ 19] [ 3] [418] +12:47:21 [ 32] [ 6] [668899] +12:47:21 [ 35] [ 32] [6213544002109749=491212010974171] +12:47:21 [ 37] [ 12] [507901373727] +12:47:21 [ 38] [ 6] [862442] +12:47:21 [ 39] [ 2] [00] +12:47:21 [ 41] [ 8] [03209001] +12:47:21 [ 49] [ 3] [418] +12:47:21 [ 54] [ 40] [0001418C0005704315070002418C000570431507] +12:47:21 ============================================================================ +12:47:21 Calculate Source COMM Id = 4 +12:47:21 ============================================================================ +12:47:21 + + +waiting on router queue for slot.... +12:47:22 ============================================================================ +12:47:22 Slot Id : <493> +12:47:22 Transaction Type : REQUEST +12:47:22 Received From : +12:47:22 ============================================================================ +12:47:22 FNo. Len. Field Value +12:47:22 ============================================================================ +12:47:22 [ 1] [ 4] [0800] +12:47:22 [ 2] [ 5] [02531] +12:47:22 [ 3] [ 6] [579128] +12:47:22 [ 7] [ 10] [0320054722] +12:47:22 [ 11] [ 6] [807154] +12:47:22 [ 15] [ 10] [0320054722] +12:47:22 [ 37] [ 11] [57912807154] +12:47:22 [ 70] [ 3] [001] +12:47:22 ============================================================================ +12:47:22 + + +waiting on router queue for slot.... +12:47:22 ============================================================================ +12:47:22 Slot Id : <493> +12:47:22 Transaction Type : RESPONSE +12:47:22 Received From : +12:47:22 ============================================================================ +12:47:22 FNo. Len. Field Value +12:47:22 ============================================================================ +12:47:22 [ 1] [ 4] [0810] +12:47:22 [ 7] [ 10] [0320054722] +12:47:22 [ 11] [ 6] [807154] +12:47:22 [ 15] [ 4] [0320] +12:47:22 [ 37] [ 12] [57912807154] +12:47:22 [ 39] [ 2] [00] +12:47:22 [ 70] [ 3] [001] +12:47:22 ============================================================================ +12:47:22 Sending to : +12:47:22 ============================================================================ +12:47:22 + + +waiting on router queue for slot.... +12:47:31 ============================================================================ +12:47:31 Slot Id : <1> +12:47:31 Transaction Type : REQUEST +12:47:31 Received From : +12:47:31 ============================================================================ +12:47:31 FNo. Len. Field Value +12:47:31 ============================================================================ +12:47:31 [ 1] [ 4] [0800] +12:47:31 [ 7] [ 10] [0320054638] +12:47:31 [ 11] [ 6] [156390] +12:47:31 [ 70] [ 3] [301] +12:47:31 ============================================================================ +12:47:31 + + +waiting on router queue for slot.... +12:47:31 Sending to : +12:47:31 ============================================================================ +12:47:31 ============================================================================ +12:47:31 Slot Id : <1> +12:47:31 Transaction Type : RESPONSE +12:47:31 Received From : +12:47:31 ============================================================================ +12:47:31 FNo. Len. Field Value +12:47:31 ============================================================================ +12:47:31 [ 1] [ 4] [0810] +12:47:31 [ 7] [ 10] [0320054638] +12:47:31 [ 11] [ 6] [156390] +12:47:31 [ 39] [ 2] [00] +12:47:31 [ 70] [ 3] [301] +12:47:31 ============================================================================ +12:47:31 Calculate Source COMM Id = 2 +12:47:31 ============================================================================ +12:47:31 + + +waiting on router queue for slot.... +12:47:36 ============================================================================ +12:47:36 Slot Id : <498> +12:47:36 Transaction Type : REQUEST +12:47:36 Received From : +12:47:36 ============================================================================ +12:47:36 FNo. Len. Field Value +12:47:36 ============================================================================ +12:47:36 [ 1] [ 4] [0200] +12:47:36 [ 2] [ 16] [6213544002042122] +12:47:36 [ 3] [ 6] [311000] +12:47:36 [ 4] [ 12] [000000000000] +12:47:36 [ 7] [ 10] [0320125523] +12:47:36 [ 11] [ 6] [168940] +12:47:36 [ 12] [ 6] [125523] +12:47:36 [ 13] [ 4] [0320] +12:47:36 [ 14] [ 4] [4912] +12:47:36 [ 15] [ 4] [0320] +12:47:36 [ 18] [ 4] [6011] +12:47:36 [ 22] [ 3] [900] +12:47:36 [ 25] [ 2] [02] +12:47:36 [ 28] [ 9] [000000000] +12:47:36 [ 32] [ 6] [220699] +12:47:36 [ 35] [ 32] [6213544002042122=491212014212410] +12:47:36 [ 37] [ 12] [507900026355] +12:47:36 [ 41] [ 8] [01000200] +12:47:36 [ 42] [ 15] [APTRA ] +12:47:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:47:36 [ 49] [ 3] [418] +12:47:36 [ 52] [ 16] [0CF1135AADE79159] +12:47:36 ============================================================================ +12:47:36 + + +waiting on router queue for slot.... +12:47:36 Sending to : +12:47:36 ============================================================================ +12:47:36 Sending to : +12:47:36 ============================================================================ +12:47:36 ============================================================================ +12:47:36 Slot Id : <498> +12:47:36 Transaction Type : REQUEST +12:47:36 Received From : +12:47:36 ============================================================================ +12:47:36 FNo. Len. Field Value +12:47:36 ============================================================================ +12:47:36 [ 1] [ 4] [0200] +12:47:36 [ 2] [ 16] [6213544002042122] +12:47:36 [ 3] [ 6] [311000] +12:47:36 [ 4] [ 12] [000000000000] +12:47:36 [ 7] [ 10] [0320125523] +12:47:36 [ 11] [ 6] [168940] +12:47:36 [ 12] [ 6] [125523] +12:47:36 [ 13] [ 4] [0320] +12:47:36 [ 14] [ 4] [4912] +12:47:36 [ 15] [ 4] [0320] +12:47:36 [ 18] [ 4] [6011] +12:47:36 [ 22] [ 3] [900] +12:47:36 [ 25] [ 2] [02] +12:47:36 [ 28] [ 9] [000000000] +12:47:36 [ 32] [ 6] [220699] +12:47:36 [ 35] [ 32] [6213544002042122=491212014212410] +12:47:36 [ 37] [ 12] [507900026355] +12:47:36 [ 41] [ 8] [01000200] +12:47:36 [ 42] [ 15] [APTRA ] +12:47:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:47:36 [ 49] [ 3] [418] +12:47:36 [ 52] [ 16] [0CF1135AADE79159] +12:47:36 ============================================================================ +12:47:36 + + +waiting on router queue for slot.... +12:47:36 Sending to : +12:47:36 ============================================================================ +12:47:36 ============================================================================ +12:47:36 Slot Id : <498> +12:47:36 Transaction Type : REQUEST +12:47:36 Received From : +12:47:36 ============================================================================ +12:47:36 FNo. Len. Field Value +12:47:36 ============================================================================ +12:47:36 [ 1] [ 4] [0200] +12:47:36 [ 2] [ 16] [6213544002042122] +12:47:36 [ 3] [ 6] [311000] +12:47:36 [ 4] [ 12] [000000000000] +12:47:36 [ 7] [ 10] [0320125523] +12:47:36 [ 11] [ 6] [168940] +12:47:36 [ 12] [ 6] [125523] +12:47:36 [ 13] [ 4] [0320] +12:47:36 [ 14] [ 4] [4912] +12:47:36 [ 15] [ 4] [0320] +12:47:36 [ 18] [ 4] [6011] +12:47:36 [ 22] [ 3] [900] +12:47:36 [ 25] [ 2] [02] +12:47:36 [ 28] [ 9] [000000000] +12:47:36 [ 32] [ 6] [220699] +12:47:36 [ 35] [ 32] [6213544002042122=491212014212410] +12:47:36 [ 37] [ 12] [507900026355] +12:47:36 [ 41] [ 8] [01000200] +12:47:36 [ 42] [ 15] [APTRA ] +12:47:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:47:36 [ 49] [ 3] [418] +12:47:36 [ 52] [ 16] [0B68D5B9237365B7] +12:47:36 ============================================================================ +12:47:36 + + +waiting on router queue for slot.... +12:47:36 Sending to : <0> +12:47:36 ============================================================================ +12:47:36 ============================================================================ +12:47:36 Slot Id : <498> +12:47:36 Transaction Type : RESPONSE +12:47:36 Received From : +12:47:36 ============================================================================ +12:47:36 FNo. Len. Field Value +12:47:36 ============================================================================ +12:47:36 [ 1] [ 4] [0210] +12:47:36 [ 2] [ 16] [6213544002042122] +12:47:36 [ 3] [ 6] [311000] +12:47:36 [ 4] [ 12] [000000000000] +12:47:36 [ 7] [ 10] [0320125523] +12:47:36 [ 11] [ 6] [168940] +12:47:36 [ 12] [ 6] [125523] +12:47:36 [ 13] [ 4] [0320] +12:47:36 [ 15] [ 4] [0320] +12:47:36 [ 18] [ 4] [6011] +12:47:36 [ 32] [ 6] [220699] +12:47:36 [ 35] [ 32] [6213544002042122=491212014212410] +12:47:36 [ 37] [ 12] [507900026355] +12:47:36 [ 38] [ 6] [070279] +12:47:36 [ 39] [ 2] [00] +12:47:36 [ 41] [ 8] [01000200] +12:47:36 [ 49] [ 3] [418] +12:47:36 [ 54] [ 40] [1001418C0269396206231002418C026939620623] +12:47:36 ============================================================================ +12:47:36 Sending to : +12:47:36 ============================================================================ +12:47:36 + + +waiting on router queue for slot.... +12:47:38 ============================================================================ +12:47:38 Slot Id : <498> +12:47:38 Transaction Type : RESPONSE +12:47:38 Received From : +12:47:38 ============================================================================ +12:47:38 FNo. Len. Field Value +12:47:38 ============================================================================ +12:47:38 [ 1] [ 4] [0210] +12:47:38 [ 2] [ 16] [6213544002042122] +12:47:38 [ 3] [ 6] [311000] +12:47:38 [ 4] [ 12] [000000000000] +12:47:38 [ 7] [ 10] [0320125523] +12:47:38 [ 11] [ 6] [168940] +12:47:38 [ 12] [ 6] [125523] +12:47:38 [ 13] [ 4] [0320] +12:47:38 [ 15] [ 4] [0320] +12:47:38 [ 18] [ 4] [6011] +12:47:38 [ 32] [ 6] [220699] +12:47:38 [ 35] [ 32] [6213544002042122=491212014212410] +12:47:38 [ 37] [ 12] [507900026355] +12:47:38 [ 38] [ 6] [070279] +12:47:38 [ 39] [ 2] [00] +12:47:38 [ 41] [ 8] [01000200] +12:47:38 [ 49] [ 3] [418] +12:47:38 [ 54] [ 40] [1001418C0269396206231002418C026939620623] +12:47:38 ============================================================================ +12:47:38 Calculate Source COMM Id = 1 +12:47:38 ============================================================================ +12:47:38 + + +waiting on router queue for slot.... +12:47:39 ============================================================================ +12:47:39 Slot Id : <473> +12:47:39 Transaction Type : REQUEST +12:47:39 Received From : +12:47:39 ============================================================================ +12:47:39 FNo. Len. Field Value +12:47:39 ============================================================================ +12:47:39 [ 1] [ 4] [0200] +12:47:39 [ 2] [ 16] [2206990000130492] +12:47:39 [ 3] [ 6] [301000] +12:47:39 [ 4] [ 12] [000000000000] +12:47:39 [ 7] [ 10] [0320124734] +12:47:39 [ 11] [ 6] [749004] +12:47:39 [ 12] [ 6] [124734] +12:47:39 [ 13] [ 4] [0320] +12:47:39 [ 15] [ 4] [0320] +12:47:39 [ 18] [ 4] [6011] +12:47:39 [ 22] [ 3] [900] +12:47:39 [ 25] [ 2] [02] +12:47:39 [ 28] [ 9] [D00000000] +12:47:39 [ 32] [ 6] [621354] +12:47:39 [ 35] [ 32] [2206990000130492=980412615557557] +12:47:39 [ 37] [ 12] [507904119867] +12:47:39 [ 41] [ 8] [08000800] +12:47:39 [ 42] [ 15] [NATIVE ] +12:47:39 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:47:39 [ 49] [ 3] [418] +12:47:39 [ 52] [ 16] [E7B2D1D111BD8F7B] +12:47:39 ============================================================================ +12:47:39 + + +waiting on router queue for slot.... +12:47:39 Sending to : +12:47:39 ============================================================================ +12:47:39 Sending to : +12:47:39 ============================================================================ +12:47:39 ============================================================================ +12:47:39 Slot Id : <473> +12:47:39 Transaction Type : REQUEST +12:47:39 Received From : +12:47:39 ============================================================================ +12:47:39 FNo. Len. Field Value +12:47:39 ============================================================================ +12:47:39 [ 1] [ 4] [0200] +12:47:39 [ 2] [ 16] [2206990000130492] +12:47:39 [ 3] [ 6] [301000] +12:47:39 [ 4] [ 12] [000000000000] +12:47:39 [ 7] [ 10] [0320124734] +12:47:39 [ 11] [ 6] [749004] +12:47:39 [ 12] [ 6] [124734] +12:47:39 [ 13] [ 4] [0320] +12:47:39 [ 15] [ 4] [0320] +12:47:39 [ 18] [ 4] [6011] +12:47:39 [ 22] [ 3] [900] +12:47:39 [ 25] [ 2] [02] +12:47:39 [ 28] [ 9] [D00000000] +12:47:39 [ 32] [ 6] [621354] +12:47:39 [ 35] [ 32] [2206990000130492=980412615557557] +12:47:39 [ 37] [ 12] [507904119867] +12:47:39 [ 41] [ 8] [08000800] +12:47:39 [ 42] [ 15] [NATIVE ] +12:47:39 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:47:39 [ 49] [ 3] [418] +12:47:39 [ 52] [ 16] [E7B2D1D111BD8F7B] +12:47:39 ============================================================================ +12:47:39 + + +waiting on router queue for slot.... +12:47:39 Sending to : +12:47:39 ============================================================================ +12:47:39 ============================================================================ +12:47:39 Slot Id : <473> +12:47:39 Transaction Type : REQUEST +12:47:39 Received From : +12:47:39 ============================================================================ +12:47:39 FNo. Len. Field Value +12:47:39 ============================================================================ +12:47:39 [ 1] [ 4] [0200] +12:47:39 [ 2] [ 16] [2206990000130492] +12:47:39 [ 3] [ 6] [301000] +12:47:39 [ 4] [ 12] [000000000000] +12:47:39 [ 7] [ 10] [0320124734] +12:47:39 [ 11] [ 6] [749004] +12:47:39 [ 12] [ 6] [124734] +12:47:39 [ 13] [ 4] [0320] +12:47:39 [ 15] [ 4] [0320] +12:47:39 [ 18] [ 4] [6011] +12:47:39 [ 22] [ 3] [900] +12:47:39 [ 25] [ 2] [02] +12:47:39 [ 28] [ 9] [D00000000] +12:47:39 [ 32] [ 6] [621354] +12:47:39 [ 35] [ 32] [2206990000130492=980412615557557] +12:47:39 [ 37] [ 12] [507904119867] +12:47:39 [ 41] [ 8] [08000800] +12:47:39 [ 42] [ 15] [NATIVE ] +12:47:39 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:47:39 [ 49] [ 3] [418] +12:47:39 [ 52] [ 16] [3660020603AFBE64] +12:47:39 ============================================================================ +12:47:39 + + +waiting on router queue for slot.... +12:47:39 Sending to : <1> +12:47:39 ============================================================================ +12:47:40 ============================================================================ +12:47:40 Slot Id : <473> +12:47:40 Transaction Type : RESPONSE +12:47:40 Received From : +12:47:40 ============================================================================ +12:47:40 FNo. Len. Field Value +12:47:40 ============================================================================ +12:47:40 [ 1] [ 4] [0210] +12:47:40 [ 2] [ 16] [2206990000130492] +12:47:40 [ 3] [ 6] [301000] +12:47:40 [ 4] [ 12] [000000000000] +12:47:40 [ 7] [ 10] [0320124734] +12:47:40 [ 11] [ 6] [749004] +12:47:40 [ 12] [ 6] [124734] +12:47:40 [ 13] [ 4] [0320] +12:47:40 [ 15] [ 4] [0320] +12:47:40 [ 18] [ 4] [6011] +12:47:40 [ 32] [ 6] [621354] +12:47:40 [ 35] [ 32] [2206990000130492=980412615557557] +12:47:40 [ 37] [ 12] [507904119867] +12:47:40 [ 38] [ 6] [594122] +12:47:40 [ 39] [ 2] [00] +12:47:40 [ 41] [ 8] [08000800] +12:47:40 [ 49] [ 3] [418] +12:47:40 [ 54] [ 40] [1001418C0000350000001002418C000035000000] +12:47:40 ============================================================================ +12:47:40 Sending to : +12:47:40 ============================================================================ +12:47:40 + + +waiting on router queue for slot.... +12:47:42 ============================================================================ +12:47:42 Slot Id : <473> +12:47:42 Transaction Type : RESPONSE +12:47:42 Received From : +12:47:42 ============================================================================ +12:47:42 FNo. Len. Field Value +12:47:42 ============================================================================ +12:47:42 [ 1] [ 4] [0210] +12:47:42 [ 2] [ 16] [2206990000130492] +12:47:42 [ 3] [ 6] [301000] +12:47:42 [ 4] [ 12] [000000000000] +12:47:42 [ 7] [ 10] [0320124734] +12:47:42 [ 11] [ 6] [749004] +12:47:42 [ 12] [ 6] [124734] +12:47:42 [ 13] [ 4] [0320] +12:47:42 [ 15] [ 4] [0320] +12:47:42 [ 18] [ 4] [6011] +12:47:42 [ 32] [ 6] [621354] +12:47:42 [ 35] [ 32] [2206990000130492=980412615557557] +12:47:42 [ 37] [ 12] [507904119867] +12:47:42 [ 38] [ 6] [594122] +12:47:42 [ 39] [ 2] [00] +12:47:42 [ 41] [ 8] [08000800] +12:47:42 [ 49] [ 3] [418] +12:47:42 [ 54] [ 40] [1001418C0000350000001002418C000035000000] +12:47:42 ============================================================================ +12:47:42 Calculate Source COMM Id = 0 +12:47:42 ============================================================================ +12:47:42 + + +waiting on router queue for slot.... +12:47:42 ============================================================================ +12:47:42 Slot Id : <4> +12:47:42 Transaction Type : REQUEST +12:47:42 Received From : +12:47:42 ============================================================================ +12:47:42 FNo. Len. Field Value +12:47:42 ============================================================================ +12:47:42 [ 1] [ 4] [0800] +12:47:42 [ 7] [ 10] [0320054650] +12:47:42 [ 11] [ 6] [156391] +12:47:42 [ 70] [ 3] [301] +12:47:42 ============================================================================ +12:47:42 + + +waiting on router queue for slot.... +12:47:42 Sending to : +12:47:42 ============================================================================ +12:47:42 ============================================================================ +12:47:42 Slot Id : <4> +12:47:42 Transaction Type : RESPONSE +12:47:42 Received From : +12:47:42 ============================================================================ +12:47:42 FNo. Len. Field Value +12:47:42 ============================================================================ +12:47:42 [ 1] [ 4] [0810] +12:47:42 [ 7] [ 10] [0320054650] +12:47:42 [ 11] [ 6] [156391] +12:47:42 [ 39] [ 2] [00] +12:47:42 [ 70] [ 3] [301] +12:47:42 ============================================================================ +12:47:42 Calculate Source COMM Id = 2 +12:47:42 ============================================================================ +12:47:42 + + +waiting on router queue for slot.... +12:47:47 ============================================================================ +12:47:47 Slot Id : <489> +12:47:47 Transaction Type : REQUEST +12:47:47 Received From : +12:47:47 ============================================================================ +12:47:47 FNo. Len. Field Value +12:47:47 ============================================================================ +12:47:47 [ 1] [ 4] [0200] +12:47:47 [ 2] [ 16] [6213544002109749] +12:47:47 [ 3] [ 6] [300000] +12:47:47 [ 4] [ 12] [000000000000] +12:47:47 [ 7] [ 10] [0320124538] +12:47:47 [ 11] [ 6] [944961] +12:47:47 [ 12] [ 6] [124538] +12:47:47 [ 13] [ 4] [0320] +12:47:47 [ 15] [ 4] [0320] +12:47:47 [ 18] [ 4] [6011] +12:47:47 [ 19] [ 3] [418] +12:47:47 [ 22] [ 3] [021] +12:47:47 [ 25] [ 2] [01] +12:47:47 [ 28] [ 9] [D00000000] +12:47:47 [ 32] [ 6] [668899] +12:47:47 [ 35] [ 32] [6213544002109749=491212010974171] +12:47:47 [ 37] [ 12] [507901373728] +12:47:47 [ 41] [ 8] [03209001] +12:47:47 [ 42] [ 15] [APT ] +12:47:47 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +12:47:47 [ 49] [ 3] [418] +12:47:47 [ 52] [ 16] [0DC4C8DF0A1B4FC2] +12:47:47 ============================================================================ +12:47:47 + + +waiting on router queue for slot.... +12:47:47 Sending to : +12:47:47 ============================================================================ +12:47:47 Sending to : +12:47:47 ============================================================================ +12:47:47 ============================================================================ +12:47:47 Slot Id : <489> +12:47:47 Transaction Type : REQUEST +12:47:47 Received From : +12:47:47 ============================================================================ +12:47:47 FNo. Len. Field Value +12:47:47 ============================================================================ +12:47:47 [ 1] [ 4] [0200] +12:47:47 [ 2] [ 16] [6213544002109749] +12:47:47 [ 3] [ 6] [300000] +12:47:47 [ 4] [ 12] [000000000000] +12:47:47 [ 7] [ 10] [0320124538] +12:47:47 [ 11] [ 6] [944961] +12:47:47 [ 12] [ 6] [124538] +12:47:47 [ 13] [ 4] [0320] +12:47:47 [ 15] [ 4] [0320] +12:47:47 [ 18] [ 4] [6011] +12:47:47 [ 19] [ 3] [418] +12:47:47 [ 22] [ 3] [021] +12:47:47 [ 25] [ 2] [01] +12:47:47 [ 28] [ 9] [D00000000] +12:47:47 [ 32] [ 6] [668899] +12:47:47 [ 35] [ 32] [6213544002109749=491212010974171] +12:47:47 [ 37] [ 12] [507901373728] +12:47:47 [ 41] [ 8] [03209001] +12:47:47 [ 42] [ 15] [APT ] +12:47:47 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +12:47:47 [ 49] [ 3] [418] +12:47:47 [ 52] [ 16] [0DC4C8DF0A1B4FC2] +12:47:47 ============================================================================ +12:47:47 + + +waiting on router queue for slot.... +12:47:47 Sending to : +12:47:47 ============================================================================ +12:47:47 ============================================================================ +12:47:47 Slot Id : <489> +12:47:47 Transaction Type : REQUEST +12:47:47 Received From : +12:47:47 ============================================================================ +12:47:47 FNo. Len. Field Value +12:47:47 ============================================================================ +12:47:47 [ 1] [ 4] [0200] +12:47:47 [ 2] [ 16] [6213544002109749] +12:47:47 [ 3] [ 6] [300000] +12:47:47 [ 4] [ 12] [000000000000] +12:47:47 [ 7] [ 10] [0320124538] +12:47:47 [ 11] [ 6] [944961] +12:47:47 [ 12] [ 6] [124538] +12:47:47 [ 13] [ 4] [0320] +12:47:47 [ 15] [ 4] [0320] +12:47:47 [ 18] [ 4] [6011] +12:47:47 [ 19] [ 3] [418] +12:47:47 [ 22] [ 3] [021] +12:47:47 [ 25] [ 2] [01] +12:47:47 [ 28] [ 9] [D00000000] +12:47:47 [ 32] [ 6] [668899] +12:47:47 [ 35] [ 32] [6213544002109749=491212010974171] +12:47:47 [ 37] [ 12] [507901373728] +12:47:47 [ 41] [ 8] [03209001] +12:47:47 [ 42] [ 15] [APT ] +12:47:47 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +12:47:47 [ 49] [ 3] [418] +12:47:47 [ 52] [ 16] [F56FCBC2D7FCBAD3] +12:47:47 ============================================================================ +12:47:47 + + +waiting on router queue for slot.... +12:47:47 Sending to : <0> +12:47:47 ============================================================================ +12:47:48 ============================================================================ +12:47:48 Slot Id : <489> +12:47:48 Transaction Type : RESPONSE +12:47:48 Received From : +12:47:48 ============================================================================ +12:47:48 FNo. Len. Field Value +12:47:48 ============================================================================ +12:47:48 [ 1] [ 4] [0210] +12:47:48 [ 2] [ 16] [6213544002109749] +12:47:48 [ 3] [ 6] [300000] +12:47:48 [ 4] [ 12] [000000000000] +12:47:48 [ 7] [ 10] [0320124538] +12:47:48 [ 11] [ 6] [944961] +12:47:48 [ 12] [ 6] [124538] +12:47:48 [ 13] [ 4] [0320] +12:47:48 [ 15] [ 4] [0320] +12:47:48 [ 18] [ 4] [6011] +12:47:48 [ 19] [ 3] [418] +12:47:48 [ 32] [ 6] [668899] +12:47:48 [ 35] [ 32] [6213544002109749=491212010974171] +12:47:48 [ 37] [ 12] [507901373728] +12:47:48 [ 38] [ 6] [588235] +12:47:48 [ 39] [ 2] [00] +12:47:48 [ 41] [ 8] [03209001] +12:47:48 [ 49] [ 3] [418] +12:47:48 [ 54] [ 40] [0001418C0005704315070002418C000570431507] +12:47:48 ============================================================================ +12:47:48 Sending to : +12:47:48 ============================================================================ +12:47:48 + + +waiting on router queue for slot.... +12:47:49 ============================================================================ +12:47:49 Slot Id : <489> +12:47:49 Transaction Type : RESPONSE +12:47:49 Received From : +12:47:49 ============================================================================ +12:47:49 FNo. Len. Field Value +12:47:49 ============================================================================ +12:47:49 [ 1] [ 4] [0210] +12:47:49 [ 2] [ 16] [6213544002109749] +12:47:49 [ 3] [ 6] [300000] +12:47:49 [ 4] [ 12] [000000000000] +12:47:49 [ 7] [ 10] [0320124538] +12:47:49 [ 11] [ 6] [944961] +12:47:49 [ 12] [ 6] [124538] +12:47:49 [ 13] [ 4] [0320] +12:47:49 [ 15] [ 4] [0320] +12:47:49 [ 18] [ 4] [6011] +12:47:49 [ 19] [ 3] [418] +12:47:49 [ 32] [ 6] [668899] +12:47:49 [ 35] [ 32] [6213544002109749=491212010974171] +12:47:49 [ 37] [ 12] [507901373728] +12:47:49 [ 38] [ 6] [588235] +12:47:49 [ 39] [ 2] [00] +12:47:49 [ 41] [ 8] [03209001] +12:47:49 [ 49] [ 3] [418] +12:47:49 [ 54] [ 40] [0001418C0005704315070002418C000570431507] +12:47:49 ============================================================================ +12:47:49 Calculate Source COMM Id = 4 +12:47:49 ============================================================================ +12:47:49 + + +waiting on router queue for slot.... +12:47:54 ============================================================================ +12:47:54 Slot Id : <476> +12:47:54 Transaction Type : REQUEST +12:47:54 Received From : +12:47:54 ============================================================================ +12:47:54 FNo. Len. Field Value +12:47:54 ============================================================================ +12:47:54 [ 1] [ 4] [0800] +12:47:54 [ 7] [ 10] [0320054701] +12:47:54 [ 11] [ 6] [156392] +12:47:54 [ 70] [ 3] [301] +12:47:54 ============================================================================ +12:47:54 + + +waiting on router queue for slot.... +12:47:54 Sending to : +12:47:54 ============================================================================ +12:47:54 ============================================================================ +12:47:54 Slot Id : <476> +12:47:54 Transaction Type : RESPONSE +12:47:54 Received From : +12:47:54 ============================================================================ +12:47:54 FNo. Len. Field Value +12:47:54 ============================================================================ +12:47:54 [ 1] [ 4] [0810] +12:47:54 [ 7] [ 10] [0320054701] +12:47:54 [ 11] [ 6] [156392] +12:47:54 [ 39] [ 2] [00] +12:47:54 [ 70] [ 3] [301] +12:47:54 ============================================================================ +12:47:54 Calculate Source COMM Id = 2 +12:47:54 ============================================================================ +12:47:54 + + +waiting on router queue for slot.... +12:48:01 ============================================================================ +12:48:01 Slot Id : <483> +12:48:01 Transaction Type : REQUEST +12:48:01 Received From : +12:48:01 ============================================================================ +12:48:01 FNo. Len. Field Value +12:48:01 ============================================================================ +12:48:01 [ 1] [ 4] [0200] +12:48:01 [ 2] [ 16] [1808931300002902] +12:48:01 [ 3] [ 6] [010000] +12:48:01 [ 4] [ 12] [000100000000] +12:48:01 [ 7] [ 10] [0320124757] +12:48:01 [ 11] [ 6] [749085] +12:48:01 [ 12] [ 6] [124757] +12:48:01 [ 13] [ 4] [0320] +12:48:01 [ 15] [ 4] [0320] +12:48:01 [ 18] [ 4] [6011] +12:48:01 [ 22] [ 3] [900] +12:48:01 [ 25] [ 2] [02] +12:48:01 [ 28] [ 9] [D00002000] +12:48:01 [ 32] [ 6] [621354] +12:48:01 [ 35] [ 27] [1808931300002902=1803500749] +12:48:01 [ 37] [ 12] [507903478312] +12:48:01 [ 41] [ 8] [06002000] +12:48:01 [ 42] [ 15] [NATIVE ] +12:48:01 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:48:01 [ 49] [ 3] [418] +12:48:01 [ 52] [ 16] [4743C7384AC6707B] +12:48:01 ============================================================================ +12:48:01 + + +waiting on router queue for slot.... +12:48:01 Sending to : +12:48:01 ============================================================================ +12:48:01 Sending to : +12:48:01 ============================================================================ +12:48:02 ============================================================================ +12:48:02 Slot Id : <483> +12:48:02 Transaction Type : REQUEST +12:48:02 Received From : +12:48:02 ============================================================================ +12:48:02 FNo. Len. Field Value +12:48:02 ============================================================================ +12:48:02 [ 1] [ 4] [0200] +12:48:02 [ 2] [ 16] [1808931300002902] +12:48:02 [ 3] [ 6] [010000] +12:48:02 [ 4] [ 12] [000100000000] +12:48:02 [ 7] [ 10] [0320124757] +12:48:02 [ 11] [ 6] [749085] +12:48:02 [ 12] [ 6] [124757] +12:48:02 [ 13] [ 4] [0320] +12:48:02 [ 15] [ 4] [0320] +12:48:02 [ 18] [ 4] [6011] +12:48:02 [ 22] [ 3] [900] +12:48:02 [ 25] [ 2] [02] +12:48:02 [ 28] [ 9] [D00002000] +12:48:02 [ 32] [ 6] [621354] +12:48:02 [ 35] [ 27] [1808931300002902=1803500749] +12:48:02 [ 37] [ 12] [507903478312] +12:48:02 [ 41] [ 8] [06002000] +12:48:02 [ 42] [ 15] [NATIVE ] +12:48:02 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:48:02 [ 49] [ 3] [418] +12:48:02 [ 52] [ 16] [4743C7384AC6707B] +12:48:02 ============================================================================ +12:48:02 + + +waiting on router queue for slot.... +12:48:02 Sending to : +12:48:02 ============================================================================ +12:48:02 ============================================================================ +12:48:02 Slot Id : <483> +12:48:02 Transaction Type : REQUEST +12:48:02 Received From : +12:48:02 ============================================================================ +12:48:02 FNo. Len. Field Value +12:48:02 ============================================================================ +12:48:02 [ 1] [ 4] [0200] +12:48:02 [ 2] [ 16] [1808931300002902] +12:48:02 [ 3] [ 6] [010000] +12:48:02 [ 4] [ 12] [000100000000] +12:48:02 [ 7] [ 10] [0320124757] +12:48:02 [ 11] [ 6] [749085] +12:48:02 [ 12] [ 6] [124757] +12:48:02 [ 13] [ 4] [0320] +12:48:02 [ 15] [ 4] [0320] +12:48:02 [ 18] [ 4] [6011] +12:48:02 [ 22] [ 3] [900] +12:48:02 [ 25] [ 2] [02] +12:48:02 [ 28] [ 9] [D00002000] +12:48:02 [ 32] [ 6] [621354] +12:48:02 [ 35] [ 27] [1808931300002902=1803500749] +12:48:02 [ 37] [ 12] [507903478312] +12:48:02 [ 41] [ 8] [06002000] +12:48:02 [ 42] [ 15] [NATIVE ] +12:48:02 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:48:02 [ 49] [ 3] [418] +12:48:02 [ 52] [ 16] [C1FF36543C22B505] +12:48:02 ============================================================================ +12:48:02 + + +waiting on router queue for slot.... +12:48:02 Sending to : <2> +12:48:02 ============================================================================ +12:48:11 ============================================================================ +12:48:11 Slot Id : <483> +12:48:11 Transaction Type : RESPONSE +12:48:11 Received From : +12:48:11 ============================================================================ +12:48:11 FNo. Len. Field Value +12:48:11 ============================================================================ +12:48:11 [ 1] [ 4] [0210] +12:48:11 [ 2] [ 16] [1808931300002902] +12:48:11 [ 3] [ 6] [010000] +12:48:11 [ 4] [ 12] [000100000000] +12:48:11 [ 6] [ 12] [000100000000] +12:48:11 [ 7] [ 10] [0320124757] +12:48:11 [ 11] [ 6] [749085] +12:48:11 [ 12] [ 6] [124757] +12:48:11 [ 13] [ 4] [0320] +12:48:11 [ 18] [ 4] [6011] +12:48:11 [ 19] [ 3] [418] +12:48:11 [ 22] [ 3] [021] +12:48:11 [ 32] [ 6] [621354] +12:48:11 [ 35] [ 27] [1808931300002902=1803500749] +12:48:11 [ 37] [ 12] [507903478312] +12:48:11 [ 38] [ 6] [749085] +12:48:11 [ 39] [ 2] [00] +12:48:11 [ 41] [ 8] [06002000] +12:48:11 [ 49] [ 3] [418] +12:48:11 [ 52] [ 16] [C1FF36543C22B505] +12:48:11 [ 54] [ 20] [1001418C000343419600] +12:48:11 ============================================================================ +12:48:11 Sending to : +12:48:11 ============================================================================ +12:48:11 + + +waiting on router queue for slot.... +12:48:12 ============================================================================ +12:48:12 Slot Id : <483> +12:48:12 Transaction Type : RESPONSE +12:48:12 Received From : +12:48:12 ============================================================================ +12:48:12 FNo. Len. Field Value +12:48:12 ============================================================================ +12:48:12 [ 1] [ 4] [0210] +12:48:12 [ 2] [ 16] [1808931300002902] +12:48:12 [ 3] [ 6] [010000] +12:48:12 [ 4] [ 12] [000100000000] +12:48:12 [ 6] [ 12] [000100000000] +12:48:12 [ 7] [ 10] [0320124757] +12:48:12 [ 11] [ 6] [749085] +12:48:12 [ 12] [ 6] [124757] +12:48:12 [ 13] [ 4] [0320] +12:48:12 [ 18] [ 4] [6011] +12:48:12 [ 19] [ 3] [418] +12:48:12 [ 22] [ 3] [021] +12:48:12 [ 32] [ 6] [621354] +12:48:12 [ 35] [ 27] [1808931300002902=1803500749] +12:48:12 [ 37] [ 12] [507903478312] +12:48:12 [ 38] [ 6] [749085] +12:48:12 [ 39] [ 2] [00] +12:48:12 [ 41] [ 8] [06002000] +12:48:12 [ 49] [ 3] [418] +12:48:12 [ 52] [ 16] [C1FF36543C22B505] +12:48:12 [ 54] [ 20] [1001418C000343419600] +12:48:12 ============================================================================ +12:48:12 Calculate Source COMM Id = 0 +12:48:12 ============================================================================ +12:48:12 + + +waiting on router queue for slot.... +12:48:15 ============================================================================ +12:48:15 Slot Id : <486> +12:48:15 Transaction Type : REQUEST +12:48:15 Received From : +12:48:15 ============================================================================ +12:48:15 FNo. Len. Field Value +12:48:15 ============================================================================ +12:48:15 [ 1] [ 4] [0800] +12:48:15 [ 7] [ 10] [0320054723] +12:48:15 [ 11] [ 6] [156393] +12:48:15 [ 70] [ 3] [301] +12:48:15 ============================================================================ +12:48:15 + + +waiting on router queue for slot.... +12:48:15 Sending to : +12:48:15 ============================================================================ +12:48:15 ============================================================================ +12:48:15 Slot Id : <486> +12:48:15 Transaction Type : RESPONSE +12:48:15 Received From : +12:48:15 ============================================================================ +12:48:15 FNo. Len. Field Value +12:48:15 ============================================================================ +12:48:15 [ 1] [ 4] [0810] +12:48:15 [ 7] [ 10] [0320054723] +12:48:15 [ 11] [ 6] [156393] +12:48:15 [ 39] [ 2] [00] +12:48:15 [ 70] [ 3] [301] +12:48:15 ============================================================================ +12:48:15 Calculate Source COMM Id = 2 +12:48:15 ============================================================================ +12:48:15 + + +waiting on router queue for slot.... +12:48:24 ============================================================================ +12:48:24 Slot Id : <474> +12:48:24 Transaction Type : REQUEST +12:48:24 Received From : +12:48:24 ============================================================================ +12:48:24 FNo. Len. Field Value +12:48:24 ============================================================================ +12:48:24 [ 1] [ 4] [0800] +12:48:24 [ 2] [ 5] [02531] +12:48:24 [ 3] [ 6] [579128] +12:48:24 [ 7] [ 10] [0320054824] +12:48:24 [ 11] [ 6] [807155] +12:48:24 [ 15] [ 10] [0320054824] +12:48:24 [ 37] [ 11] [57912807155] +12:48:24 [ 70] [ 3] [001] +12:48:24 ============================================================================ +12:48:24 + + +waiting on router queue for slot.... +12:48:24 ============================================================================ +12:48:24 Slot Id : <474> +12:48:24 Transaction Type : RESPONSE +12:48:24 Received From : +12:48:24 ============================================================================ +12:48:24 FNo. Len. Field Value +12:48:24 ============================================================================ +12:48:24 [ 1] [ 4] [0810] +12:48:24 [ 7] [ 10] [0320054824] +12:48:24 [ 11] [ 6] [807155] +12:48:24 [ 15] [ 4] [0320] +12:48:24 [ 37] [ 12] [57912807155] +12:48:24 [ 39] [ 2] [00] +12:48:24 [ 70] [ 3] [001] +12:48:24 ============================================================================ +12:48:24 Sending to : +12:48:24 ============================================================================ +12:48:24 + + +waiting on router queue for slot.... +12:48:26 ============================================================================ +12:48:26 Slot Id : <477> +12:48:26 Transaction Type : REQUEST +12:48:26 Received From : +12:48:26 ============================================================================ +12:48:26 FNo. Len. Field Value +12:48:26 ============================================================================ +12:48:26 [ 1] [ 4] [0800] +12:48:26 [ 7] [ 10] [0320054733] +12:48:26 [ 11] [ 6] [156394] +12:48:26 [ 70] [ 3] [301] +12:48:26 ============================================================================ +12:48:26 + + +waiting on router queue for slot.... +12:48:26 Sending to : +12:48:26 ============================================================================ +12:48:26 ============================================================================ +12:48:26 Slot Id : <477> +12:48:26 Transaction Type : RESPONSE +12:48:26 Received From : +12:48:26 ============================================================================ +12:48:26 FNo. Len. Field Value +12:48:26 ============================================================================ +12:48:26 [ 1] [ 4] [0810] +12:48:26 [ 7] [ 10] [0320054733] +12:48:26 [ 11] [ 6] [156394] +12:48:26 [ 39] [ 2] [00] +12:48:26 [ 70] [ 3] [301] +12:48:26 ============================================================================ +12:48:26 Calculate Source COMM Id = 2 +12:48:26 ============================================================================ +12:48:26 + + +waiting on router queue for slot.... +12:48:27 ============================================================================ +12:48:27 Slot Id : <472> +12:48:27 Transaction Type : REQUEST +12:48:27 Received From : +12:48:27 ============================================================================ +12:48:27 FNo. Len. Field Value +12:48:27 ============================================================================ +12:48:27 [ 1] [ 4] [0200] +12:48:27 [ 2] [ 16] [6213548000524742] +12:48:27 [ 3] [ 6] [010000] +12:48:27 [ 4] [ 12] [000050000000] +12:48:27 [ 7] [ 10] [0320124618] +12:48:27 [ 11] [ 6] [944985] +12:48:27 [ 12] [ 6] [124618] +12:48:27 [ 13] [ 4] [0320] +12:48:27 [ 15] [ 4] [0320] +12:48:27 [ 18] [ 4] [6011] +12:48:27 [ 19] [ 3] [418] +12:48:27 [ 22] [ 3] [021] +12:48:27 [ 25] [ 2] [01] +12:48:27 [ 28] [ 9] [D00002000] +12:48:27 [ 32] [ 6] [668899] +12:48:27 [ 35] [ 32] [6213548000524742=181212012474845] +12:48:27 [ 37] [ 12] [507901856440] +12:48:27 [ 41] [ 8] [03311001] +12:48:27 [ 42] [ 15] [APT ] +12:48:27 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +12:48:27 [ 49] [ 3] [418] +12:48:27 [ 52] [ 16] [54DBB05D1EBCA1CA] +12:48:27 ============================================================================ +12:48:27 + + +waiting on router queue for slot.... +12:48:27 Sending to : +12:48:27 ============================================================================ +12:48:27 Sending to : +12:48:27 ============================================================================ +12:48:27 ============================================================================ +12:48:27 Slot Id : <472> +12:48:27 Transaction Type : REQUEST +12:48:27 Received From : +12:48:27 ============================================================================ +12:48:27 FNo. Len. Field Value +12:48:27 ============================================================================ +12:48:27 [ 1] [ 4] [0200] +12:48:27 [ 2] [ 16] [6213548000524742] +12:48:27 [ 3] [ 6] [010000] +12:48:27 [ 4] [ 12] [000050000000] +12:48:27 [ 7] [ 10] [0320124618] +12:48:27 [ 11] [ 6] [944985] +12:48:27 [ 12] [ 6] [124618] +12:48:27 [ 13] [ 4] [0320] +12:48:27 [ 15] [ 4] [0320] +12:48:27 [ 18] [ 4] [6011] +12:48:27 [ 19] [ 3] [418] +12:48:27 [ 22] [ 3] [021] +12:48:27 [ 25] [ 2] [01] +12:48:27 [ 28] [ 9] [D00002000] +12:48:27 [ 32] [ 6] [668899] +12:48:27 [ 35] [ 32] [6213548000524742=181212012474845] +12:48:27 [ 37] [ 12] [507901856440] +12:48:27 [ 41] [ 8] [03311001] +12:48:27 [ 42] [ 15] [APT ] +12:48:27 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +12:48:27 [ 49] [ 3] [418] +12:48:27 [ 52] [ 16] [54DBB05D1EBCA1CA] +12:48:27 ============================================================================ +12:48:27 + + +waiting on router queue for slot.... +12:48:27 Sending to : +12:48:27 ============================================================================ +12:48:27 ============================================================================ +12:48:27 Slot Id : <472> +12:48:27 Transaction Type : REQUEST +12:48:27 Received From : +12:48:27 ============================================================================ +12:48:27 FNo. Len. Field Value +12:48:27 ============================================================================ +12:48:27 [ 1] [ 4] [0200] +12:48:27 [ 2] [ 16] [6213548000524742] +12:48:27 [ 3] [ 6] [010000] +12:48:27 [ 4] [ 12] [000050000000] +12:48:27 [ 7] [ 10] [0320124618] +12:48:27 [ 11] [ 6] [944985] +12:48:27 [ 12] [ 6] [124618] +12:48:27 [ 13] [ 4] [0320] +12:48:27 [ 15] [ 4] [0320] +12:48:27 [ 18] [ 4] [6011] +12:48:27 [ 19] [ 3] [418] +12:48:27 [ 22] [ 3] [021] +12:48:27 [ 25] [ 2] [01] +12:48:27 [ 28] [ 9] [D00002000] +12:48:27 [ 32] [ 6] [668899] +12:48:27 [ 35] [ 32] [6213548000524742=181212012474845] +12:48:27 [ 37] [ 12] [507901856440] +12:48:27 [ 41] [ 8] [03311001] +12:48:27 [ 42] [ 15] [APT ] +12:48:27 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +12:48:27 [ 49] [ 3] [418] +12:48:27 [ 52] [ 16] [42AA1F184531EE6B] +12:48:27 ============================================================================ +12:48:27 + + +waiting on router queue for slot.... +12:48:27 Sending to : <0> +12:48:27 ============================================================================ +12:48:28 ============================================================================ +12:48:28 Slot Id : <472> +12:48:28 Transaction Type : RESPONSE +12:48:28 Received From : +12:48:28 ============================================================================ +12:48:28 FNo. Len. Field Value +12:48:28 ============================================================================ +12:48:28 [ 1] [ 4] [0210] +12:48:28 [ 2] [ 16] [6213548000524742] +12:48:28 [ 3] [ 6] [010000] +12:48:28 [ 4] [ 12] [000050000000] +12:48:28 [ 7] [ 10] [0320124618] +12:48:28 [ 11] [ 6] [944985] +12:48:28 [ 12] [ 6] [124618] +12:48:28 [ 13] [ 4] [0320] +12:48:28 [ 15] [ 4] [0320] +12:48:28 [ 18] [ 4] [6011] +12:48:28 [ 19] [ 3] [418] +12:48:28 [ 22] [ 3] [021] +12:48:28 [ 32] [ 6] [668899] +12:48:28 [ 35] [ 32] [6213548000524742=181212012474845] +12:48:28 [ 37] [ 12] [507901856440] +12:48:28 [ 38] [ 6] [124823] +12:48:28 [ 39] [ 2] [55] +12:48:28 [ 41] [ 8] [03311001] +12:48:28 [ 49] [ 3] [418] +12:48:28 ============================================================================ +12:48:28 Sending to : +12:48:28 ============================================================================ +12:48:28 + + +waiting on router queue for slot.... +12:48:29 ============================================================================ +12:48:29 Slot Id : <472> +12:48:29 Transaction Type : RESPONSE +12:48:29 Received From : +12:48:29 ============================================================================ +12:48:29 FNo. Len. Field Value +12:48:29 ============================================================================ +12:48:29 [ 1] [ 4] [0210] +12:48:29 [ 2] [ 16] [6213548000524742] +12:48:29 [ 3] [ 6] [010000] +12:48:29 [ 4] [ 12] [000050000000] +12:48:29 [ 7] [ 10] [0320124618] +12:48:29 [ 11] [ 6] [944985] +12:48:29 [ 12] [ 6] [124618] +12:48:29 [ 13] [ 4] [0320] +12:48:29 [ 15] [ 4] [0320] +12:48:29 [ 18] [ 4] [6011] +12:48:29 [ 19] [ 3] [418] +12:48:29 [ 22] [ 3] [021] +12:48:29 [ 32] [ 6] [668899] +12:48:29 [ 35] [ 32] [6213548000524742=181212012474845] +12:48:29 [ 37] [ 12] [507901856440] +12:48:29 [ 38] [ 6] [124823] +12:48:29 [ 39] [ 2] [55] +12:48:29 [ 41] [ 8] [03311001] +12:48:29 [ 49] [ 3] [418] +12:48:29 ============================================================================ +12:48:29 Calculate Source COMM Id = 4 +12:48:29 ============================================================================ +12:48:29 + + +waiting on router queue for slot.... +12:48:37 ============================================================================ +12:48:37 Slot Id : <6> +12:48:37 Transaction Type : REQUEST +12:48:37 Received From : +12:48:37 ============================================================================ +12:48:37 FNo. Len. Field Value +12:48:37 ============================================================================ +12:48:37 [ 1] [ 4] [0800] +12:48:37 [ 7] [ 10] [0320054744] +12:48:37 [ 11] [ 6] [156395] +12:48:37 [ 70] [ 3] [301] +12:48:37 ============================================================================ +12:48:37 + + +waiting on router queue for slot.... +12:48:37 Sending to : +12:48:37 ============================================================================ +12:48:37 ============================================================================ +12:48:37 Slot Id : <6> +12:48:37 Transaction Type : RESPONSE +12:48:37 Received From : +12:48:37 ============================================================================ +12:48:37 FNo. Len. Field Value +12:48:37 ============================================================================ +12:48:37 [ 1] [ 4] [0810] +12:48:37 [ 7] [ 10] [0320054744] +12:48:37 [ 11] [ 6] [156395] +12:48:37 [ 39] [ 2] [00] +12:48:37 [ 70] [ 3] [301] +12:48:37 ============================================================================ +12:48:37 Calculate Source COMM Id = 2 +12:48:37 ============================================================================ +12:48:37 + + +waiting on router queue for slot.... +12:48:46 ============================================================================ +12:48:46 Slot Id : <492> +12:48:46 Transaction Type : REQUEST +12:48:46 Received From : +12:48:46 ============================================================================ +12:48:46 FNo. Len. Field Value +12:48:46 ============================================================================ +12:48:46 [ 1] [ 4] [0200] +12:48:46 [ 2] [ 16] [1808930900013103] +12:48:46 [ 3] [ 6] [301000] +12:48:46 [ 4] [ 12] [000000000000] +12:48:46 [ 7] [ 10] [0320124841] +12:48:46 [ 11] [ 6] [749250] +12:48:46 [ 12] [ 6] [124841] +12:48:46 [ 13] [ 4] [0320] +12:48:46 [ 15] [ 4] [0320] +12:48:46 [ 18] [ 4] [6011] +12:48:46 [ 22] [ 3] [900] +12:48:46 [ 25] [ 2] [02] +12:48:46 [ 28] [ 9] [D00000000] +12:48:46 [ 32] [ 6] [621354] +12:48:46 [ 35] [ 27] [1808930900013103=1803500215] +12:48:46 [ 37] [ 12] [507902546601] +12:48:46 [ 41] [ 8] [05003700] +12:48:46 [ 42] [ 15] [NATIVE ] +12:48:46 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +12:48:46 [ 49] [ 3] [418] +12:48:46 [ 52] [ 16] [77D73331613B0BDE] +12:48:46 ============================================================================ +12:48:46 + + +waiting on router queue for slot.... +12:48:46 Sending to : +12:48:46 ============================================================================ +12:48:46 Sending to : +12:48:46 ============================================================================ +12:48:46 ============================================================================ +12:48:46 Slot Id : <485> +12:48:46 Transaction Type : REQUEST +12:48:46 Received From : +12:48:46 ============================================================================ +12:48:46 FNo. Len. Field Value +12:48:46 ============================================================================ +12:48:46 [ 1] [ 4] [0200] +12:48:46 [ 2] [ 16] [2206990000130492] +12:48:46 [ 3] [ 6] [011000] +12:48:46 [ 4] [ 12] [000030000000] +12:48:46 [ 7] [ 10] [0320124841] +12:48:46 [ 11] [ 6] [749251] +12:48:46 [ 12] [ 6] [124841] +12:48:46 [ 13] [ 4] [0320] +12:48:46 [ 15] [ 4] [0320] +12:48:46 [ 18] [ 4] [6011] +12:48:46 [ 22] [ 3] [900] +12:48:46 [ 25] [ 2] [02] +12:48:46 [ 28] [ 9] [D00002000] +12:48:46 [ 32] [ 6] [621354] +12:48:46 [ 35] [ 32] [2206990000130492=980412615557557] +12:48:46 [ 37] [ 12] [507904119869] +12:48:46 [ 41] [ 8] [08000800] +12:48:46 [ 42] [ 15] [NATIVE ] +12:48:46 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:48:46 [ 49] [ 3] [418] +12:48:46 [ 52] [ 16] [E7B2D1D111BD8F7B] +12:48:46 ============================================================================ +12:48:46 + + +waiting on router queue for slot.... +12:48:46 Sending to : +12:48:46 ============================================================================ +12:48:46 Sending to : +12:48:46 ============================================================================ +12:48:46 ============================================================================ +12:48:46 Slot Id : <492> +12:48:46 Transaction Type : REQUEST +12:48:46 Received From : +12:48:46 ============================================================================ +12:48:46 FNo. Len. Field Value +12:48:46 ============================================================================ +12:48:46 [ 1] [ 4] [0200] +12:48:46 [ 2] [ 16] [1808930900013103] +12:48:46 [ 3] [ 6] [301000] +12:48:46 [ 4] [ 12] [000000000000] +12:48:46 [ 7] [ 10] [0320124841] +12:48:46 [ 11] [ 6] [749250] +12:48:46 [ 12] [ 6] [124841] +12:48:46 [ 13] [ 4] [0320] +12:48:46 [ 15] [ 4] [0320] +12:48:46 [ 18] [ 4] [6011] +12:48:46 [ 22] [ 3] [900] +12:48:46 [ 25] [ 2] [02] +12:48:46 [ 28] [ 9] [D00000000] +12:48:46 [ 32] [ 6] [621354] +12:48:46 [ 35] [ 27] [1808930900013103=1803500215] +12:48:46 [ 37] [ 12] [507902546601] +12:48:46 [ 41] [ 8] [05003700] +12:48:46 [ 42] [ 15] [NATIVE ] +12:48:46 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +12:48:46 [ 49] [ 3] [418] +12:48:46 [ 52] [ 16] [77D73331613B0BDE] +12:48:46 ============================================================================ +12:48:46 + + +waiting on router queue for slot.... +12:48:46 Sending to : +12:48:46 ============================================================================ +12:48:46 ============================================================================ +12:48:46 Slot Id : <492> +12:48:46 Transaction Type : REQUEST +12:48:46 Received From : +12:48:46 ============================================================================ +12:48:46 FNo. Len. Field Value +12:48:46 ============================================================================ +12:48:46 [ 1] [ 4] [0200] +12:48:46 [ 2] [ 16] [1808930900013103] +12:48:46 [ 3] [ 6] [301000] +12:48:46 [ 4] [ 12] [000000000000] +12:48:46 [ 7] [ 10] [0320124841] +12:48:46 [ 11] [ 6] [749250] +12:48:46 [ 12] [ 6] [124841] +12:48:46 [ 13] [ 4] [0320] +12:48:46 [ 15] [ 4] [0320] +12:48:46 [ 18] [ 4] [6011] +12:48:46 [ 22] [ 3] [900] +12:48:46 [ 25] [ 2] [02] +12:48:46 [ 28] [ 9] [D00000000] +12:48:46 [ 32] [ 6] [621354] +12:48:46 [ 35] [ 27] [1808930900013103=1803500215] +12:48:46 [ 37] [ 12] [507902546601] +12:48:46 [ 41] [ 8] [05003700] +12:48:46 [ 42] [ 15] [NATIVE ] +12:48:46 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +12:48:46 [ 49] [ 3] [418] +12:48:46 [ 52] [ 16] [EE01F9FF7C3F192E] +12:48:46 ============================================================================ +12:48:46 + + +waiting on router queue for slot.... +12:48:46 Sending to : <2> +12:48:46 ============================================================================ +12:48:46 ============================================================================ +12:48:46 Slot Id : <485> +12:48:46 Transaction Type : REQUEST +12:48:46 Received From : +12:48:46 ============================================================================ +12:48:46 FNo. Len. Field Value +12:48:46 ============================================================================ +12:48:46 [ 1] [ 4] [0200] +12:48:46 [ 2] [ 16] [2206990000130492] +12:48:46 [ 3] [ 6] [011000] +12:48:46 [ 4] [ 12] [000030000000] +12:48:46 [ 7] [ 10] [0320124841] +12:48:46 [ 11] [ 6] [749251] +12:48:46 [ 12] [ 6] [124841] +12:48:46 [ 13] [ 4] [0320] +12:48:46 [ 15] [ 4] [0320] +12:48:46 [ 18] [ 4] [6011] +12:48:46 [ 22] [ 3] [900] +12:48:46 [ 25] [ 2] [02] +12:48:46 [ 28] [ 9] [D00002000] +12:48:46 [ 32] [ 6] [621354] +12:48:46 [ 35] [ 32] [2206990000130492=980412615557557] +12:48:46 [ 37] [ 12] [507904119869] +12:48:46 [ 41] [ 8] [08000800] +12:48:46 [ 42] [ 15] [NATIVE ] +12:48:46 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:48:46 [ 49] [ 3] [418] +12:48:46 [ 52] [ 16] [E7B2D1D111BD8F7B] +12:48:46 ============================================================================ +12:48:46 + + +waiting on router queue for slot.... +12:48:46 Sending to : +12:48:46 ============================================================================ +12:48:46 ============================================================================ +12:48:46 Slot Id : <485> +12:48:46 Transaction Type : REQUEST +12:48:46 Received From : +12:48:46 ============================================================================ +12:48:46 FNo. Len. Field Value +12:48:46 ============================================================================ +12:48:46 [ 1] [ 4] [0200] +12:48:46 [ 2] [ 16] [2206990000130492] +12:48:46 [ 3] [ 6] [011000] +12:48:46 [ 4] [ 12] [000030000000] +12:48:46 [ 7] [ 10] [0320124841] +12:48:46 [ 11] [ 6] [749251] +12:48:46 [ 12] [ 6] [124841] +12:48:46 [ 13] [ 4] [0320] +12:48:46 [ 15] [ 4] [0320] +12:48:46 [ 18] [ 4] [6011] +12:48:46 [ 22] [ 3] [900] +12:48:46 [ 25] [ 2] [02] +12:48:46 [ 28] [ 9] [D00002000] +12:48:46 [ 32] [ 6] [621354] +12:48:46 [ 35] [ 32] [2206990000130492=980412615557557] +12:48:46 [ 37] [ 12] [507904119869] +12:48:46 [ 41] [ 8] [08000800] +12:48:46 [ 42] [ 15] [NATIVE ] +12:48:46 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:48:46 [ 49] [ 3] [418] +12:48:46 [ 52] [ 16] [3660020603AFBE64] +12:48:46 ============================================================================ +12:48:46 + + +waiting on router queue for slot.... +12:48:46 Sending to : <1> +12:48:46 ============================================================================ +12:48:48 ============================================================================ +12:48:48 Slot Id : <485> +12:48:48 Transaction Type : RESPONSE +12:48:48 Received From : +12:48:48 ============================================================================ +12:48:48 FNo. Len. Field Value +12:48:48 ============================================================================ +12:48:48 [ 1] [ 4] [0210] +12:48:48 [ 2] [ 16] [2206990000130492] +12:48:48 [ 3] [ 6] [011000] +12:48:48 [ 4] [ 12] [000030000000] +12:48:48 [ 7] [ 10] [0320124841] +12:48:48 [ 11] [ 6] [749251] +12:48:48 [ 12] [ 6] [124841] +12:48:48 [ 13] [ 4] [0320] +12:48:48 [ 15] [ 4] [0320] +12:48:48 [ 18] [ 4] [6011] +12:48:48 [ 32] [ 6] [621354] +12:48:48 [ 35] [ 32] [2206990000130492=980412615557557] +12:48:48 [ 37] [ 12] [507904119869] +12:48:48 [ 38] [ 6] [] +12:48:48 [ 39] [ 2] [51] +12:48:48 [ 41] [ 8] [08000800] +12:48:48 [ 49] [ 3] [418] +12:48:48 ============================================================================ +12:48:48 Sending to : +12:48:48 ============================================================================ +12:48:48 + + +waiting on router queue for slot.... +12:48:49 ============================================================================ +12:48:49 Slot Id : <485> +12:48:49 Transaction Type : RESPONSE +12:48:49 Received From : +12:48:49 ============================================================================ +12:48:49 FNo. Len. Field Value +12:48:49 ============================================================================ +12:48:49 [ 1] [ 4] [0210] +12:48:49 [ 2] [ 16] [2206990000130492] +12:48:49 [ 3] [ 6] [011000] +12:48:49 [ 4] [ 12] [000030000000] +12:48:49 [ 7] [ 10] [0320124841] +12:48:49 [ 11] [ 6] [749251] +12:48:49 [ 12] [ 6] [124841] +12:48:49 [ 13] [ 4] [0320] +12:48:49 [ 15] [ 4] [0320] +12:48:49 [ 18] [ 4] [6011] +12:48:49 [ 32] [ 6] [621354] +12:48:49 [ 35] [ 32] [2206990000130492=980412615557557] +12:48:49 [ 37] [ 12] [507904119869] +12:48:49 [ 38] [ 6] [] +12:48:49 [ 39] [ 2] [51] +12:48:49 [ 41] [ 8] [08000800] +12:48:49 [ 49] [ 3] [418] +12:48:49 ============================================================================ +12:48:49 Calculate Source COMM Id = 0 +12:48:49 ============================================================================ +12:48:49 + + +waiting on router queue for slot.... +12:48:49 ============================================================================ +12:48:49 Slot Id : <492> +12:48:49 Transaction Type : RESPONSE +12:48:49 Received From : +12:48:49 ============================================================================ +12:48:49 FNo. Len. Field Value +12:48:49 ============================================================================ +12:48:49 [ 1] [ 4] [0210] +12:48:49 [ 2] [ 16] [1808930900013103] +12:48:49 [ 3] [ 6] [301000] +12:48:49 [ 7] [ 10] [0320124841] +12:48:49 [ 11] [ 6] [749250] +12:48:49 [ 12] [ 6] [124841] +12:48:49 [ 13] [ 4] [0320] +12:48:49 [ 14] [ 4] [1803] +12:48:49 [ 19] [ 3] [418] +12:48:49 [ 32] [ 6] [621354] +12:48:49 [ 37] [ 12] [507902546601] +12:48:49 [ 38] [ 6] [749250] +12:48:49 [ 39] [ 2] [00] +12:48:49 [ 41] [ 8] [05003700] +12:48:49 [ 49] [ 3] [418] +12:48:49 [ 52] [ 16] [EE01F9FF7C3F192E] +12:48:49 [ 54] [ 20] [1002418C005711762900] +12:48:49 ============================================================================ +12:48:49 Sending to : +12:48:49 ============================================================================ +12:48:49 + + +waiting on router queue for slot.... +12:48:51 ============================================================================ +12:48:51 Slot Id : <492> +12:48:51 Transaction Type : RESPONSE +12:48:51 Received From : +12:48:51 ============================================================================ +12:48:51 FNo. Len. Field Value +12:48:51 ============================================================================ +12:48:51 [ 1] [ 4] [0210] +12:48:51 [ 2] [ 16] [1808930900013103] +12:48:51 [ 3] [ 6] [301000] +12:48:51 [ 7] [ 10] [0320124841] +12:48:51 [ 11] [ 6] [749250] +12:48:51 [ 12] [ 6] [124841] +12:48:51 [ 13] [ 4] [0320] +12:48:51 [ 14] [ 4] [1803] +12:48:51 [ 19] [ 3] [418] +12:48:51 [ 32] [ 6] [621354] +12:48:51 [ 37] [ 12] [507902546601] +12:48:51 [ 38] [ 6] [749250] +12:48:51 [ 39] [ 2] [00] +12:48:51 [ 41] [ 8] [05003700] +12:48:51 [ 49] [ 3] [418] +12:48:51 [ 52] [ 16] [EE01F9FF7C3F192E] +12:48:51 [ 54] [ 20] [1002418C005711762900] +12:48:51 ============================================================================ +12:48:51 Calculate Source COMM Id = 0 +12:48:51 ============================================================================ +12:48:51 + + +waiting on router queue for slot.... +12:48:59 ============================================================================ +12:48:59 Slot Id : <14> +12:48:59 Transaction Type : REQUEST +12:48:59 Received From : +12:48:59 ============================================================================ +12:48:59 FNo. Len. Field Value +12:48:59 ============================================================================ +12:48:59 [ 1] [ 4] [0800] +12:48:59 [ 7] [ 10] [0320054806] +12:48:59 [ 11] [ 6] [156396] +12:48:59 [ 70] [ 3] [301] +12:48:59 ============================================================================ +12:48:59 + + +waiting on router queue for slot.... +12:48:59 Sending to : +12:48:59 ============================================================================ +12:48:59 ============================================================================ +12:48:59 Slot Id : <14> +12:48:59 Transaction Type : RESPONSE +12:48:59 Received From : +12:48:59 ============================================================================ +12:48:59 FNo. Len. Field Value +12:48:59 ============================================================================ +12:48:59 [ 1] [ 4] [0810] +12:48:59 [ 7] [ 10] [0320054806] +12:48:59 [ 11] [ 6] [156396] +12:48:59 [ 39] [ 2] [00] +12:48:59 [ 70] [ 3] [301] +12:48:59 ============================================================================ +12:48:59 Calculate Source COMM Id = 2 +12:48:59 ============================================================================ +12:48:59 + + +waiting on router queue for slot.... +12:49:00 ============================================================================ +12:49:00 Slot Id : <454> +12:49:00 Transaction Type : REQUEST +12:49:00 Received From : +12:49:00 ============================================================================ +12:49:00 FNo. Len. Field Value +12:49:00 ============================================================================ +12:49:00 [ 1] [ 4] [0200] +12:49:00 [ 2] [ 16] [1808931300002902] +12:49:00 [ 3] [ 6] [010000] +12:49:00 [ 4] [ 12] [000100000000] +12:49:00 [ 7] [ 10] [0320124856] +12:49:00 [ 11] [ 6] [749310] +12:49:00 [ 12] [ 6] [124856] +12:49:00 [ 13] [ 4] [0320] +12:49:00 [ 15] [ 4] [0320] +12:49:00 [ 18] [ 4] [6011] +12:49:00 [ 22] [ 3] [900] +12:49:00 [ 25] [ 2] [02] +12:49:00 [ 28] [ 9] [D00002000] +12:49:00 [ 32] [ 6] [621354] +12:49:00 [ 35] [ 27] [1808931300002902=1803500749] +12:49:00 [ 37] [ 12] [507903478314] +12:49:00 [ 41] [ 8] [06002000] +12:49:00 [ 42] [ 15] [NATIVE ] +12:49:00 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:49:00 [ 49] [ 3] [418] +12:49:00 [ 52] [ 16] [4743C7384AC6707B] +12:49:00 ============================================================================ +12:49:00 + + +waiting on router queue for slot.... +12:49:00 Sending to : +12:49:00 ============================================================================ +12:49:00 Sending to : +12:49:00 ============================================================================ +12:49:00 ============================================================================ +12:49:00 Slot Id : <454> +12:49:00 Transaction Type : REQUEST +12:49:00 Received From : +12:49:00 ============================================================================ +12:49:00 FNo. Len. Field Value +12:49:00 ============================================================================ +12:49:00 [ 1] [ 4] [0200] +12:49:00 [ 2] [ 16] [1808931300002902] +12:49:00 [ 3] [ 6] [010000] +12:49:00 [ 4] [ 12] [000100000000] +12:49:00 [ 7] [ 10] [0320124856] +12:49:00 [ 11] [ 6] [749310] +12:49:00 [ 12] [ 6] [124856] +12:49:00 [ 13] [ 4] [0320] +12:49:00 [ 15] [ 4] [0320] +12:49:00 [ 18] [ 4] [6011] +12:49:00 [ 22] [ 3] [900] +12:49:00 [ 25] [ 2] [02] +12:49:00 [ 28] [ 9] [D00002000] +12:49:00 [ 32] [ 6] [621354] +12:49:00 [ 35] [ 27] [1808931300002902=1803500749] +12:49:00 [ 37] [ 12] [507903478314] +12:49:00 [ 41] [ 8] [06002000] +12:49:00 [ 42] [ 15] [NATIVE ] +12:49:00 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:49:00 [ 49] [ 3] [418] +12:49:00 [ 52] [ 16] [4743C7384AC6707B] +12:49:00 ============================================================================ +12:49:00 + + +waiting on router queue for slot.... +12:49:00 Sending to : +12:49:00 ============================================================================ +12:49:00 ============================================================================ +12:49:00 Slot Id : <454> +12:49:00 Transaction Type : REQUEST +12:49:00 Received From : +12:49:00 ============================================================================ +12:49:00 FNo. Len. Field Value +12:49:00 ============================================================================ +12:49:00 [ 1] [ 4] [0200] +12:49:00 [ 2] [ 16] [1808931300002902] +12:49:00 [ 3] [ 6] [010000] +12:49:00 [ 4] [ 12] [000100000000] +12:49:00 [ 7] [ 10] [0320124856] +12:49:00 [ 11] [ 6] [749310] +12:49:00 [ 12] [ 6] [124856] +12:49:00 [ 13] [ 4] [0320] +12:49:00 [ 15] [ 4] [0320] +12:49:00 [ 18] [ 4] [6011] +12:49:00 [ 22] [ 3] [900] +12:49:00 [ 25] [ 2] [02] +12:49:00 [ 28] [ 9] [D00002000] +12:49:00 [ 32] [ 6] [621354] +12:49:00 [ 35] [ 27] [1808931300002902=1803500749] +12:49:00 [ 37] [ 12] [507903478314] +12:49:00 [ 41] [ 8] [06002000] +12:49:00 [ 42] [ 15] [NATIVE ] +12:49:00 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:49:00 [ 49] [ 3] [418] +12:49:00 [ 52] [ 16] [C1FF36543C22B505] +12:49:00 ============================================================================ +12:49:00 + + +waiting on router queue for slot.... +12:49:00 Sending to : <2> +12:49:00 ============================================================================ +12:49:01 ============================================================================ +12:49:01 Slot Id : <16> +12:49:01 Transaction Type : REQUEST +12:49:01 Received From : +12:49:01 ============================================================================ +12:49:01 FNo. Len. Field Value +12:49:01 ============================================================================ +12:49:01 [ 1] [ 4] [0200] +12:49:01 [ 2] [ 16] [6213548000524742] +12:49:01 [ 3] [ 6] [010000] +12:49:01 [ 4] [ 12] [000050000000] +12:49:01 [ 7] [ 10] [0320124652] +12:49:01 [ 11] [ 6] [945006] +12:49:01 [ 12] [ 6] [124652] +12:49:01 [ 13] [ 4] [0320] +12:49:01 [ 15] [ 4] [0320] +12:49:01 [ 18] [ 4] [6011] +12:49:01 [ 19] [ 3] [418] +12:49:01 [ 22] [ 3] [021] +12:49:01 [ 25] [ 2] [01] +12:49:01 [ 28] [ 9] [D00002000] +12:49:01 [ 32] [ 6] [668899] +12:49:01 [ 35] [ 32] [6213548000524742=181212012474845] +12:49:01 [ 37] [ 12] [507901856442] +12:49:01 [ 41] [ 8] [03311001] +12:49:01 [ 42] [ 15] [APT ] +12:49:01 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +12:49:01 [ 49] [ 3] [418] +12:49:01 [ 52] [ 16] [C0F5E289003F6284] +12:49:01 ============================================================================ +12:49:01 + + +waiting on router queue for slot.... +12:49:01 Sending to : +12:49:01 ============================================================================ +12:49:01 Sending to : +12:49:01 ============================================================================ +12:49:02 ============================================================================ +12:49:02 Slot Id : <16> +12:49:02 Transaction Type : REQUEST +12:49:02 Received From : +12:49:02 ============================================================================ +12:49:02 FNo. Len. Field Value +12:49:02 ============================================================================ +12:49:02 [ 1] [ 4] [0200] +12:49:02 [ 2] [ 16] [6213548000524742] +12:49:02 [ 3] [ 6] [010000] +12:49:02 [ 4] [ 12] [000050000000] +12:49:02 [ 7] [ 10] [0320124652] +12:49:02 [ 11] [ 6] [945006] +12:49:02 [ 12] [ 6] [124652] +12:49:02 [ 13] [ 4] [0320] +12:49:02 [ 15] [ 4] [0320] +12:49:02 [ 18] [ 4] [6011] +12:49:02 [ 19] [ 3] [418] +12:49:02 [ 22] [ 3] [021] +12:49:02 [ 25] [ 2] [01] +12:49:02 [ 28] [ 9] [D00002000] +12:49:02 [ 32] [ 6] [668899] +12:49:02 [ 35] [ 32] [6213548000524742=181212012474845] +12:49:02 [ 37] [ 12] [507901856442] +12:49:02 [ 41] [ 8] [03311001] +12:49:02 [ 42] [ 15] [APT ] +12:49:02 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +12:49:02 [ 49] [ 3] [418] +12:49:02 [ 52] [ 16] [C0F5E289003F6284] +12:49:02 ============================================================================ +12:49:02 + + +waiting on router queue for slot.... +12:49:02 Sending to : +12:49:02 ============================================================================ +12:49:02 ============================================================================ +12:49:02 Slot Id : <16> +12:49:02 Transaction Type : REQUEST +12:49:02 Received From : +12:49:02 ============================================================================ +12:49:02 FNo. Len. Field Value +12:49:02 ============================================================================ +12:49:02 [ 1] [ 4] [0200] +12:49:02 [ 2] [ 16] [6213548000524742] +12:49:02 [ 3] [ 6] [010000] +12:49:02 [ 4] [ 12] [000050000000] +12:49:02 [ 7] [ 10] [0320124652] +12:49:02 [ 11] [ 6] [945006] +12:49:02 [ 12] [ 6] [124652] +12:49:02 [ 13] [ 4] [0320] +12:49:02 [ 15] [ 4] [0320] +12:49:02 [ 18] [ 4] [6011] +12:49:02 [ 19] [ 3] [418] +12:49:02 [ 22] [ 3] [021] +12:49:02 [ 25] [ 2] [01] +12:49:02 [ 28] [ 9] [D00002000] +12:49:02 [ 32] [ 6] [668899] +12:49:02 [ 35] [ 32] [6213548000524742=181212012474845] +12:49:02 [ 37] [ 12] [507901856442] +12:49:02 [ 41] [ 8] [03311001] +12:49:02 [ 42] [ 15] [APT ] +12:49:02 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +12:49:02 [ 49] [ 3] [418] +12:49:02 [ 52] [ 16] [A11EDC0BC782A7D3] +12:49:02 ============================================================================ +12:49:02 + + +waiting on router queue for slot.... +12:49:02 Sending to : <0> +12:49:02 ============================================================================ +12:49:02 ============================================================================ +12:49:02 Slot Id : <16> +12:49:02 Transaction Type : RESPONSE +12:49:02 Received From : +12:49:02 ============================================================================ +12:49:02 FNo. Len. Field Value +12:49:02 ============================================================================ +12:49:02 [ 1] [ 4] [0210] +12:49:02 [ 2] [ 16] [6213548000524742] +12:49:02 [ 3] [ 6] [010000] +12:49:02 [ 4] [ 12] [000050000000] +12:49:02 [ 7] [ 10] [0320124652] +12:49:02 [ 11] [ 6] [945006] +12:49:02 [ 12] [ 6] [124652] +12:49:02 [ 13] [ 4] [0320] +12:49:02 [ 15] [ 4] [0320] +12:49:02 [ 18] [ 4] [6011] +12:49:02 [ 19] [ 3] [418] +12:49:02 [ 32] [ 6] [668899] +12:49:02 [ 35] [ 32] [6213548000524742=181212012474845] +12:49:02 [ 37] [ 12] [507901856442] +12:49:02 [ 38] [ 6] [686629] +12:49:02 [ 39] [ 2] [00] +12:49:02 [ 41] [ 8] [03311001] +12:49:02 [ 49] [ 3] [418] +12:49:02 [ 54] [ 40] [0001418C0000119169370002418C000011916937] +12:49:02 ============================================================================ +12:49:02 Sending to : +12:49:02 ============================================================================ +12:49:02 + + +waiting on router queue for slot.... +12:49:04 ============================================================================ +12:49:04 Slot Id : <16> +12:49:04 Transaction Type : RESPONSE +12:49:04 Received From : +12:49:04 ============================================================================ +12:49:04 FNo. Len. Field Value +12:49:04 ============================================================================ +12:49:04 [ 1] [ 4] [0210] +12:49:04 [ 2] [ 16] [6213548000524742] +12:49:04 [ 3] [ 6] [010000] +12:49:04 [ 4] [ 12] [000050000000] +12:49:04 [ 7] [ 10] [0320124652] +12:49:04 [ 11] [ 6] [945006] +12:49:04 [ 12] [ 6] [124652] +12:49:04 [ 13] [ 4] [0320] +12:49:04 [ 15] [ 4] [0320] +12:49:04 [ 18] [ 4] [6011] +12:49:04 [ 19] [ 3] [418] +12:49:04 [ 32] [ 6] [668899] +12:49:04 [ 35] [ 32] [6213548000524742=181212012474845] +12:49:04 [ 37] [ 12] [507901856442] +12:49:04 [ 38] [ 6] [686629] +12:49:04 [ 39] [ 2] [00] +12:49:04 [ 41] [ 8] [03311001] +12:49:04 [ 49] [ 3] [418] +12:49:04 [ 54] [ 40] [0001418C0000119169370002418C000011916937] +12:49:04 ============================================================================ +12:49:04 Calculate Source COMM Id = 4 +12:49:04 ============================================================================ +12:49:04 + + +waiting on router queue for slot.... +12:49:08 ============================================================================ +12:49:08 Slot Id : <454> +12:49:08 Transaction Type : RESPONSE +12:49:08 Received From : +12:49:08 ============================================================================ +12:49:08 FNo. Len. Field Value +12:49:08 ============================================================================ +12:49:08 [ 1] [ 4] [0210] +12:49:08 [ 2] [ 16] [1808931300002902] +12:49:08 [ 3] [ 6] [010000] +12:49:08 [ 4] [ 12] [000100000000] +12:49:08 [ 6] [ 12] [000100000000] +12:49:08 [ 7] [ 10] [0320124856] +12:49:08 [ 11] [ 6] [749310] +12:49:08 [ 12] [ 6] [124856] +12:49:08 [ 13] [ 4] [0320] +12:49:08 [ 18] [ 4] [6011] +12:49:08 [ 19] [ 3] [418] +12:49:08 [ 22] [ 3] [021] +12:49:08 [ 32] [ 6] [621354] +12:49:08 [ 35] [ 27] [1808931300002902=1803500749] +12:49:08 [ 37] [ 12] [507903478314] +12:49:08 [ 38] [ 6] [749310] +12:49:08 [ 39] [ 2] [00] +12:49:08 [ 41] [ 8] [06002000] +12:49:08 [ 49] [ 3] [418] +12:49:08 [ 52] [ 16] [C1FF36543C22B505] +12:49:08 [ 54] [ 20] [1001418C000243219600] +12:49:08 ============================================================================ +12:49:08 Sending to : +12:49:08 ============================================================================ +12:49:08 + + +waiting on router queue for slot.... +12:49:09 ============================================================================ +12:49:09 Slot Id : <454> +12:49:09 Transaction Type : RESPONSE +12:49:09 Received From : +12:49:09 ============================================================================ +12:49:09 FNo. Len. Field Value +12:49:09 ============================================================================ +12:49:09 [ 1] [ 4] [0210] +12:49:09 [ 2] [ 16] [1808931300002902] +12:49:09 [ 3] [ 6] [010000] +12:49:09 [ 4] [ 12] [000100000000] +12:49:09 [ 6] [ 12] [000100000000] +12:49:09 [ 7] [ 10] [0320124856] +12:49:09 [ 11] [ 6] [749310] +12:49:09 [ 12] [ 6] [124856] +12:49:09 [ 13] [ 4] [0320] +12:49:09 [ 18] [ 4] [6011] +12:49:09 [ 19] [ 3] [418] +12:49:09 [ 22] [ 3] [021] +12:49:09 [ 32] [ 6] [621354] +12:49:09 [ 35] [ 27] [1808931300002902=1803500749] +12:49:09 [ 37] [ 12] [507903478314] +12:49:09 [ 38] [ 6] [749310] +12:49:09 [ 39] [ 2] [00] +12:49:09 [ 41] [ 8] [06002000] +12:49:09 [ 49] [ 3] [418] +12:49:09 [ 52] [ 16] [C1FF36543C22B505] +12:49:09 [ 54] [ 20] [1001418C000243219600] +12:49:09 ============================================================================ +12:49:09 Calculate Source COMM Id = 0 +12:49:09 ============================================================================ +12:49:09 + + +waiting on router queue for slot.... +12:49:09 ============================================================================ +12:49:09 Slot Id : <13> +12:49:09 Transaction Type : REQUEST +12:49:09 Received From : +12:49:09 ============================================================================ +12:49:09 FNo. Len. Field Value +12:49:09 ============================================================================ +12:49:09 [ 1] [ 4] [0200] +12:49:09 [ 2] [ 16] [6213541000670540] +12:49:09 [ 3] [ 6] [010000] +12:49:09 [ 4] [ 12] [000100000000] +12:49:09 [ 7] [ 10] [0320124700] +12:49:09 [ 11] [ 6] [945015] +12:49:09 [ 12] [ 6] [124700] +12:49:09 [ 13] [ 4] [0320] +12:49:09 [ 15] [ 4] [0320] +12:49:09 [ 18] [ 4] [6011] +12:49:09 [ 19] [ 3] [418] +12:49:09 [ 22] [ 3] [021] +12:49:09 [ 25] [ 2] [01] +12:49:09 [ 28] [ 9] [D00002000] +12:49:09 [ 32] [ 6] [668899] +12:49:09 [ 35] [ 32] [6213541000670540=491212017054599] +12:49:09 [ 37] [ 12] [507901963563] +12:49:09 [ 41] [ 8] [03020019] +12:49:09 [ 42] [ 15] [APT ] +12:49:09 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:49:09 [ 49] [ 3] [418] +12:49:09 [ 52] [ 16] [84DB6E3C37FB8527] +12:49:09 ============================================================================ +12:49:09 + + +waiting on router queue for slot.... +12:49:09 Sending to : +12:49:09 ============================================================================ +12:49:09 Sending to : +12:49:09 ============================================================================ +12:49:10 ============================================================================ +12:49:10 Slot Id : <13> +12:49:10 Transaction Type : REQUEST +12:49:10 Received From : +12:49:10 ============================================================================ +12:49:10 FNo. Len. Field Value +12:49:10 ============================================================================ +12:49:10 [ 1] [ 4] [0200] +12:49:10 [ 2] [ 16] [6213541000670540] +12:49:10 [ 3] [ 6] [010000] +12:49:10 [ 4] [ 12] [000100000000] +12:49:10 [ 7] [ 10] [0320124700] +12:49:10 [ 11] [ 6] [945015] +12:49:10 [ 12] [ 6] [124700] +12:49:10 [ 13] [ 4] [0320] +12:49:10 [ 15] [ 4] [0320] +12:49:10 [ 18] [ 4] [6011] +12:49:10 [ 19] [ 3] [418] +12:49:10 [ 22] [ 3] [021] +12:49:10 [ 25] [ 2] [01] +12:49:10 [ 28] [ 9] [D00002000] +12:49:10 [ 32] [ 6] [668899] +12:49:10 [ 35] [ 32] [6213541000670540=491212017054599] +12:49:10 [ 37] [ 12] [507901963563] +12:49:10 [ 41] [ 8] [03020019] +12:49:10 [ 42] [ 15] [APT ] +12:49:10 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:49:10 [ 49] [ 3] [418] +12:49:10 [ 52] [ 16] [84DB6E3C37FB8527] +12:49:10 ============================================================================ +12:49:10 + + +waiting on router queue for slot.... +12:49:10 Sending to : +12:49:10 ============================================================================ +12:49:10 ============================================================================ +12:49:10 Slot Id : <13> +12:49:10 Transaction Type : REQUEST +12:49:10 Received From : +12:49:10 ============================================================================ +12:49:10 FNo. Len. Field Value +12:49:10 ============================================================================ +12:49:10 [ 1] [ 4] [0200] +12:49:10 [ 2] [ 16] [6213541000670540] +12:49:10 [ 3] [ 6] [010000] +12:49:10 [ 4] [ 12] [000100000000] +12:49:10 [ 7] [ 10] [0320124700] +12:49:10 [ 11] [ 6] [945015] +12:49:10 [ 12] [ 6] [124700] +12:49:10 [ 13] [ 4] [0320] +12:49:10 [ 15] [ 4] [0320] +12:49:10 [ 18] [ 4] [6011] +12:49:10 [ 19] [ 3] [418] +12:49:10 [ 22] [ 3] [021] +12:49:10 [ 25] [ 2] [01] +12:49:10 [ 28] [ 9] [D00002000] +12:49:10 [ 32] [ 6] [668899] +12:49:10 [ 35] [ 32] [6213541000670540=491212017054599] +12:49:10 [ 37] [ 12] [507901963563] +12:49:10 [ 41] [ 8] [03020019] +12:49:10 [ 42] [ 15] [APT ] +12:49:10 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +12:49:10 [ 49] [ 3] [418] +12:49:10 [ 52] [ 16] [EDB3EAA115FD130C] +12:49:10 ============================================================================ +12:49:10 + + +waiting on router queue for slot.... +12:49:10 Sending to : <0> +12:49:10 ============================================================================ +12:49:10 ============================================================================ +12:49:10 Slot Id : <13> +12:49:10 Transaction Type : RESPONSE +12:49:10 Received From : +12:49:10 ============================================================================ +12:49:10 FNo. Len. Field Value +12:49:10 ============================================================================ +12:49:10 [ 1] [ 4] [0210] +12:49:10 [ 2] [ 16] [6213541000670540] +12:49:10 [ 3] [ 6] [010000] +12:49:10 [ 4] [ 12] [000100000000] +12:49:10 [ 7] [ 10] [0320124700] +12:49:10 [ 11] [ 6] [945015] +12:49:10 [ 12] [ 6] [124700] +12:49:10 [ 13] [ 4] [0320] +12:49:10 [ 15] [ 4] [0320] +12:49:10 [ 18] [ 4] [6011] +12:49:10 [ 19] [ 3] [418] +12:49:10 [ 32] [ 6] [668899] +12:49:10 [ 35] [ 32] [6213541000670540=491212017054599] +12:49:10 [ 37] [ 12] [507901963563] +12:49:10 [ 38] [ 6] [945015] +12:49:10 [ 39] [ 2] [51] +12:49:10 [ 41] [ 8] [03020019] +12:49:10 [ 49] [ 3] [418] +12:49:10 [ 54] [ 40] [0001418C0000275944050002418C000027594405] +12:49:10 ============================================================================ +12:49:10 Sending to : +12:49:10 ============================================================================ +12:49:10 + + +waiting on router queue for slot.... +12:49:12 ============================================================================ +12:49:12 Slot Id : <13> +12:49:12 Transaction Type : RESPONSE +12:49:12 Received From : +12:49:12 ============================================================================ +12:49:12 FNo. Len. Field Value +12:49:12 ============================================================================ +12:49:12 [ 1] [ 4] [0210] +12:49:12 [ 2] [ 16] [6213541000670540] +12:49:12 [ 3] [ 6] [010000] +12:49:12 [ 4] [ 12] [000100000000] +12:49:12 [ 7] [ 10] [0320124700] +12:49:12 [ 11] [ 6] [945015] +12:49:12 [ 12] [ 6] [124700] +12:49:12 [ 13] [ 4] [0320] +12:49:12 [ 15] [ 4] [0320] +12:49:12 [ 18] [ 4] [6011] +12:49:12 [ 19] [ 3] [418] +12:49:12 [ 32] [ 6] [668899] +12:49:12 [ 35] [ 32] [6213541000670540=491212017054599] +12:49:12 [ 37] [ 12] [507901963563] +12:49:12 [ 38] [ 6] [945015] +12:49:12 [ 39] [ 2] [51] +12:49:12 [ 41] [ 8] [03020019] +12:49:12 [ 49] [ 3] [418] +12:49:12 [ 54] [ 40] [0001418C0000275944050002418C000027594405] +12:49:12 ============================================================================ +12:49:12 Calculate Source COMM Id = 4 +12:49:12 ============================================================================ +12:49:12 + + +waiting on router queue for slot.... +12:49:14 ============================================================================ +12:49:14 Slot Id : <12> +12:49:14 Transaction Type : REQUEST +12:49:14 Received From : +12:49:14 ============================================================================ +12:49:14 FNo. Len. Field Value +12:49:14 ============================================================================ +12:49:14 [ 1] [ 4] [0800] +12:49:14 [ 7] [ 10] [0320054822] +12:49:14 [ 11] [ 6] [156397] +12:49:14 [ 70] [ 3] [301] +12:49:14 ============================================================================ +12:49:14 + + +waiting on router queue for slot.... +12:49:14 Sending to : +12:49:14 ============================================================================ +12:49:14 ============================================================================ +12:49:14 Slot Id : <12> +12:49:14 Transaction Type : RESPONSE +12:49:14 Received From : +12:49:14 ============================================================================ +12:49:14 FNo. Len. Field Value +12:49:14 ============================================================================ +12:49:14 [ 1] [ 4] [0810] +12:49:14 [ 7] [ 10] [0320054822] +12:49:14 [ 11] [ 6] [156397] +12:49:14 [ 39] [ 2] [00] +12:49:14 [ 70] [ 3] [301] +12:49:14 ============================================================================ +12:49:14 Calculate Source COMM Id = 2 +12:49:14 ============================================================================ +12:49:14 + + +waiting on router queue for slot.... +12:49:25 ============================================================================ +12:49:25 Slot Id : <469> +12:49:25 Transaction Type : REQUEST +12:49:25 Received From : +12:49:25 ============================================================================ +12:49:25 FNo. Len. Field Value +12:49:25 ============================================================================ +12:49:25 [ 1] [ 4] [0800] +12:49:25 [ 7] [ 10] [0320054833] +12:49:25 [ 11] [ 6] [156398] +12:49:25 [ 70] [ 3] [301] +12:49:25 ============================================================================ +12:49:25 + + +waiting on router queue for slot.... +12:49:25 Sending to : +12:49:25 ============================================================================ +12:49:25 ============================================================================ +12:49:25 Slot Id : <469> +12:49:25 Transaction Type : RESPONSE +12:49:25 Received From : +12:49:25 ============================================================================ +12:49:25 FNo. Len. Field Value +12:49:25 ============================================================================ +12:49:25 [ 1] [ 4] [0810] +12:49:25 [ 7] [ 10] [0320054833] +12:49:25 [ 11] [ 6] [156398] +12:49:25 [ 39] [ 2] [00] +12:49:25 [ 70] [ 3] [301] +12:49:25 ============================================================================ +12:49:25 Calculate Source COMM Id = 2 +12:49:25 ============================================================================ +12:49:25 + + +waiting on router queue for slot.... +12:49:26 ============================================================================ +12:49:26 Slot Id : <22> +12:49:26 Transaction Type : REQUEST +12:49:26 Received From : +12:49:26 ============================================================================ +12:49:26 FNo. Len. Field Value +12:49:26 ============================================================================ +12:49:26 [ 1] [ 4] [0800] +12:49:26 [ 2] [ 5] [02531] +12:49:26 [ 3] [ 6] [579128] +12:49:26 [ 7] [ 10] [0320054926] +12:49:26 [ 11] [ 6] [807156] +12:49:26 [ 15] [ 10] [0320054926] +12:49:26 [ 37] [ 11] [57912807156] +12:49:26 [ 70] [ 3] [001] +12:49:26 ============================================================================ +12:49:26 + + +waiting on router queue for slot.... +12:49:26 ============================================================================ +12:49:26 Slot Id : <22> +12:49:26 Transaction Type : RESPONSE +12:49:26 Received From : +12:49:26 ============================================================================ +12:49:26 FNo. Len. Field Value +12:49:26 ============================================================================ +12:49:26 [ 1] [ 4] [0810] +12:49:26 [ 7] [ 10] [0320054926] +12:49:26 [ 11] [ 6] [807156] +12:49:26 [ 15] [ 4] [0320] +12:49:26 [ 37] [ 12] [57912807156] +12:49:26 [ 39] [ 2] [00] +12:49:26 [ 70] [ 3] [001] +12:49:26 ============================================================================ +12:49:26 Sending to : +12:49:26 ============================================================================ +12:49:26 + + +waiting on router queue for slot.... +12:49:41 ============================================================================ +12:49:41 Slot Id : <494> +12:49:41 Transaction Type : REQUEST +12:49:41 Received From : +12:49:41 ============================================================================ +12:49:41 FNo. Len. Field Value +12:49:41 ============================================================================ +12:49:41 [ 1] [ 4] [0800] +12:49:41 [ 7] [ 10] [0320054849] +12:49:41 [ 11] [ 6] [156399] +12:49:41 [ 70] [ 3] [301] +12:49:41 ============================================================================ +12:49:41 + + +waiting on router queue for slot.... +12:49:41 Sending to : +12:49:41 ============================================================================ +12:49:41 ============================================================================ +12:49:41 Slot Id : <494> +12:49:41 Transaction Type : RESPONSE +12:49:41 Received From : +12:49:41 ============================================================================ +12:49:41 FNo. Len. Field Value +12:49:41 ============================================================================ +12:49:41 [ 1] [ 4] [0810] +12:49:41 [ 7] [ 10] [0320054849] +12:49:41 [ 11] [ 6] [156399] +12:49:41 [ 39] [ 2] [00] +12:49:41 [ 70] [ 3] [301] +12:49:41 ============================================================================ +12:49:41 Calculate Source COMM Id = 2 +12:49:41 ============================================================================ +12:49:41 + + +waiting on router queue for slot.... +12:49:45 ============================================================================ +12:49:45 Slot Id : <491> +12:49:45 Transaction Type : REQUEST +12:49:45 Received From : +12:49:45 ============================================================================ +12:49:45 FNo. Len. Field Value +12:49:45 ============================================================================ +12:49:45 [ 1] [ 4] [0200] +12:49:45 [ 2] [ 16] [2206990000130492] +12:49:45 [ 3] [ 6] [011000] +12:49:45 [ 4] [ 12] [000020000000] +12:49:45 [ 7] [ 10] [0320124941] +12:49:45 [ 11] [ 6] [749455] +12:49:45 [ 12] [ 6] [124941] +12:49:45 [ 13] [ 4] [0320] +12:49:45 [ 15] [ 4] [0320] +12:49:45 [ 18] [ 4] [6011] +12:49:45 [ 22] [ 3] [900] +12:49:45 [ 25] [ 2] [02] +12:49:45 [ 28] [ 9] [D00002000] +12:49:45 [ 32] [ 6] [621354] +12:49:45 [ 35] [ 32] [2206990000130492=980412615557557] +12:49:45 [ 37] [ 12] [507904119871] +12:49:45 [ 41] [ 8] [08000800] +12:49:45 [ 42] [ 15] [NATIVE ] +12:49:45 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:49:45 [ 49] [ 3] [418] +12:49:45 [ 52] [ 16] [E7B2D1D111BD8F7B] +12:49:45 ============================================================================ +12:49:45 + + +waiting on router queue for slot.... +12:49:45 Sending to : +12:49:45 ============================================================================ +12:49:45 Sending to : +12:49:45 ============================================================================ +12:49:46 ============================================================================ +12:49:46 Slot Id : <491> +12:49:46 Transaction Type : REQUEST +12:49:46 Received From : +12:49:46 ============================================================================ +12:49:46 FNo. Len. Field Value +12:49:46 ============================================================================ +12:49:46 [ 1] [ 4] [0200] +12:49:46 [ 2] [ 16] [2206990000130492] +12:49:46 [ 3] [ 6] [011000] +12:49:46 [ 4] [ 12] [000020000000] +12:49:46 [ 7] [ 10] [0320124941] +12:49:46 [ 11] [ 6] [749455] +12:49:46 [ 12] [ 6] [124941] +12:49:46 [ 13] [ 4] [0320] +12:49:46 [ 15] [ 4] [0320] +12:49:46 [ 18] [ 4] [6011] +12:49:46 [ 22] [ 3] [900] +12:49:46 [ 25] [ 2] [02] +12:49:46 [ 28] [ 9] [D00002000] +12:49:46 [ 32] [ 6] [621354] +12:49:46 [ 35] [ 32] [2206990000130492=980412615557557] +12:49:46 [ 37] [ 12] [507904119871] +12:49:46 [ 41] [ 8] [08000800] +12:49:46 [ 42] [ 15] [NATIVE ] +12:49:46 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:49:46 [ 49] [ 3] [418] +12:49:46 [ 52] [ 16] [E7B2D1D111BD8F7B] +12:49:46 ============================================================================ +12:49:46 + + +waiting on router queue for slot.... +12:49:46 Sending to : +12:49:46 ============================================================================ +12:49:46 ============================================================================ +12:49:46 Slot Id : <491> +12:49:46 Transaction Type : REQUEST +12:49:46 Received From : +12:49:46 ============================================================================ +12:49:46 FNo. Len. Field Value +12:49:46 ============================================================================ +12:49:46 [ 1] [ 4] [0200] +12:49:46 [ 2] [ 16] [2206990000130492] +12:49:46 [ 3] [ 6] [011000] +12:49:46 [ 4] [ 12] [000020000000] +12:49:46 [ 7] [ 10] [0320124941] +12:49:46 [ 11] [ 6] [749455] +12:49:46 [ 12] [ 6] [124941] +12:49:46 [ 13] [ 4] [0320] +12:49:46 [ 15] [ 4] [0320] +12:49:46 [ 18] [ 4] [6011] +12:49:46 [ 22] [ 3] [900] +12:49:46 [ 25] [ 2] [02] +12:49:46 [ 28] [ 9] [D00002000] +12:49:46 [ 32] [ 6] [621354] +12:49:46 [ 35] [ 32] [2206990000130492=980412615557557] +12:49:46 [ 37] [ 12] [507904119871] +12:49:46 [ 41] [ 8] [08000800] +12:49:46 [ 42] [ 15] [NATIVE ] +12:49:46 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:49:46 [ 49] [ 3] [418] +12:49:46 [ 52] [ 16] [3660020603AFBE64] +12:49:46 ============================================================================ +12:49:46 + + +waiting on router queue for slot.... +12:49:46 Sending to : <1> +12:49:46 ============================================================================ +12:49:48 ============================================================================ +12:49:48 Slot Id : <491> +12:49:48 Transaction Type : RESPONSE +12:49:48 Received From : +12:49:48 ============================================================================ +12:49:48 FNo. Len. Field Value +12:49:48 ============================================================================ +12:49:48 [ 1] [ 4] [0210] +12:49:48 [ 2] [ 16] [2206990000130492] +12:49:48 [ 3] [ 6] [011000] +12:49:48 [ 4] [ 12] [000020000000] +12:49:48 [ 7] [ 10] [0320124941] +12:49:48 [ 11] [ 6] [749455] +12:49:48 [ 12] [ 6] [124941] +12:49:48 [ 13] [ 4] [0320] +12:49:48 [ 15] [ 4] [0320] +12:49:48 [ 18] [ 4] [6011] +12:49:48 [ 32] [ 6] [621354] +12:49:48 [ 35] [ 32] [2206990000130492=980412615557557] +12:49:48 [ 37] [ 12] [507904119871] +12:49:48 [ 38] [ 6] [346424] +12:49:48 [ 39] [ 2] [00] +12:49:48 [ 41] [ 8] [08000800] +12:49:48 [ 49] [ 3] [418] +12:49:48 [ 54] [ 40] [1001418C0000148000001002418C000014800000] +12:49:48 ============================================================================ +12:49:48 Sending to : +12:49:48 ============================================================================ +12:49:48 + + +waiting on router queue for slot.... +12:49:49 ============================================================================ +12:49:49 Slot Id : <491> +12:49:49 Transaction Type : RESPONSE +12:49:49 Received From : +12:49:49 ============================================================================ +12:49:49 FNo. Len. Field Value +12:49:49 ============================================================================ +12:49:49 [ 1] [ 4] [0210] +12:49:49 [ 2] [ 16] [2206990000130492] +12:49:49 [ 3] [ 6] [011000] +12:49:49 [ 4] [ 12] [000020000000] +12:49:49 [ 7] [ 10] [0320124941] +12:49:49 [ 11] [ 6] [749455] +12:49:49 [ 12] [ 6] [124941] +12:49:49 [ 13] [ 4] [0320] +12:49:49 [ 15] [ 4] [0320] +12:49:49 [ 18] [ 4] [6011] +12:49:49 [ 32] [ 6] [621354] +12:49:49 [ 35] [ 32] [2206990000130492=980412615557557] +12:49:49 [ 37] [ 12] [507904119871] +12:49:49 [ 38] [ 6] [346424] +12:49:49 [ 39] [ 2] [00] +12:49:49 [ 41] [ 8] [08000800] +12:49:49 [ 49] [ 3] [418] +12:49:49 [ 54] [ 40] [1001418C0000148000001002418C000014800000] +12:49:49 ============================================================================ +12:49:49 Calculate Source COMM Id = 0 +12:49:49 ============================================================================ +12:49:49 + + +waiting on router queue for slot.... +12:49:51 ============================================================================ +12:49:51 Slot Id : <499> +12:49:51 Transaction Type : REQUEST +12:49:51 Received From : +12:49:51 ============================================================================ +12:49:51 FNo. Len. Field Value +12:49:51 ============================================================================ +12:49:51 [ 1] [ 4] [0200] +12:49:51 [ 2] [ 16] [6213542000025685] +12:49:51 [ 3] [ 6] [010000] +12:49:51 [ 4] [ 12] [000100000000] +12:49:51 [ 7] [ 10] [0320125738] +12:49:51 [ 11] [ 6] [107243] +12:49:51 [ 12] [ 6] [125738] +12:49:51 [ 13] [ 4] [0320] +12:49:51 [ 14] [ 4] [4912] +12:49:51 [ 15] [ 4] [0320] +12:49:51 [ 18] [ 4] [6011] +12:49:51 [ 22] [ 3] [900] +12:49:51 [ 25] [ 2] [02] +12:49:51 [ 28] [ 9] [D00002000] +12:49:51 [ 32] [ 6] [220699] +12:49:51 [ 35] [ 32] [6213542000025685=491212012568356] +12:49:51 [ 37] [ 12] [507900327846] +12:49:51 [ 41] [ 8] [01001800] +12:49:51 [ 42] [ 15] [APTRA ] +12:49:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:49:51 [ 49] [ 3] [418] +12:49:51 [ 52] [ 16] [4C05BE3C10D8CF7C] +12:49:51 ============================================================================ +12:49:51 + + +waiting on router queue for slot.... +12:49:51 Sending to : +12:49:51 ============================================================================ +12:49:51 Sending to : +12:49:51 ============================================================================ +12:49:51 ============================================================================ +12:49:51 Slot Id : <499> +12:49:51 Transaction Type : REQUEST +12:49:51 Received From : +12:49:51 ============================================================================ +12:49:51 FNo. Len. Field Value +12:49:51 ============================================================================ +12:49:51 [ 1] [ 4] [0200] +12:49:51 [ 2] [ 16] [6213542000025685] +12:49:51 [ 3] [ 6] [010000] +12:49:51 [ 4] [ 12] [000100000000] +12:49:51 [ 7] [ 10] [0320125738] +12:49:51 [ 11] [ 6] [107243] +12:49:51 [ 12] [ 6] [125738] +12:49:51 [ 13] [ 4] [0320] +12:49:51 [ 14] [ 4] [4912] +12:49:51 [ 15] [ 4] [0320] +12:49:51 [ 18] [ 4] [6011] +12:49:51 [ 22] [ 3] [900] +12:49:51 [ 25] [ 2] [02] +12:49:51 [ 28] [ 9] [D00002000] +12:49:51 [ 32] [ 6] [220699] +12:49:51 [ 35] [ 32] [6213542000025685=491212012568356] +12:49:51 [ 37] [ 12] [507900327846] +12:49:51 [ 41] [ 8] [01001800] +12:49:51 [ 42] [ 15] [APTRA ] +12:49:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:49:51 [ 49] [ 3] [418] +12:49:51 [ 52] [ 16] [4C05BE3C10D8CF7C] +12:49:51 ============================================================================ +12:49:51 + + +waiting on router queue for slot.... +12:49:51 Sending to : +12:49:51 ============================================================================ +12:49:52 ============================================================================ +12:49:52 Slot Id : <499> +12:49:52 Transaction Type : REQUEST +12:49:52 Received From : +12:49:52 ============================================================================ +12:49:52 FNo. Len. Field Value +12:49:52 ============================================================================ +12:49:52 [ 1] [ 4] [0200] +12:49:52 [ 2] [ 16] [6213542000025685] +12:49:52 [ 3] [ 6] [010000] +12:49:52 [ 4] [ 12] [000100000000] +12:49:52 [ 7] [ 10] [0320125738] +12:49:52 [ 11] [ 6] [107243] +12:49:52 [ 12] [ 6] [125738] +12:49:52 [ 13] [ 4] [0320] +12:49:52 [ 14] [ 4] [4912] +12:49:52 [ 15] [ 4] [0320] +12:49:52 [ 18] [ 4] [6011] +12:49:52 [ 22] [ 3] [900] +12:49:52 [ 25] [ 2] [02] +12:49:52 [ 28] [ 9] [D00002000] +12:49:52 [ 32] [ 6] [220699] +12:49:52 [ 35] [ 32] [6213542000025685=491212012568356] +12:49:52 [ 37] [ 12] [507900327846] +12:49:52 [ 41] [ 8] [01001800] +12:49:52 [ 42] [ 15] [APTRA ] +12:49:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:49:52 [ 49] [ 3] [418] +12:49:52 [ 52] [ 16] [2EFFB110CF107890] +12:49:52 ============================================================================ +12:49:52 + + +waiting on router queue for slot.... +12:49:52 Sending to : <0> +12:49:52 ============================================================================ +12:49:53 ============================================================================ +12:49:53 Slot Id : <499> +12:49:53 Transaction Type : RESPONSE +12:49:53 Received From : +12:49:53 ============================================================================ +12:49:53 FNo. Len. Field Value +12:49:53 ============================================================================ +12:49:53 [ 1] [ 4] [0210] +12:49:53 [ 2] [ 16] [6213542000025685] +12:49:53 [ 3] [ 6] [010000] +12:49:53 [ 4] [ 12] [000100000000] +12:49:53 [ 7] [ 10] [0320125738] +12:49:53 [ 11] [ 6] [107243] +12:49:53 [ 12] [ 6] [125738] +12:49:53 [ 13] [ 4] [0320] +12:49:53 [ 15] [ 4] [0320] +12:49:53 [ 18] [ 4] [6011] +12:49:53 [ 22] [ 3] [900] +12:49:53 [ 32] [ 6] [220699] +12:49:53 [ 35] [ 32] [6213542000025685=491212012568356] +12:49:53 [ 37] [ 12] [507900327846] +12:49:53 [ 39] [ 2] [05] +12:49:53 [ 41] [ 8] [01001800] +12:49:53 [ 49] [ 3] [418] +12:49:53 ============================================================================ +12:49:53 Sending to : +12:49:53 ============================================================================ +12:49:53 + + +waiting on router queue for slot.... +12:49:53 ============================================================================ +12:49:53 Slot Id : <499> +12:49:53 Transaction Type : RESPONSE +12:49:53 Received From : +12:49:53 ============================================================================ +12:49:53 FNo. Len. Field Value +12:49:53 ============================================================================ +12:49:53 [ 1] [ 4] [0210] +12:49:53 [ 2] [ 16] [6213542000025685] +12:49:53 [ 3] [ 6] [010000] +12:49:53 [ 4] [ 12] [000100000000] +12:49:53 [ 7] [ 10] [0320125738] +12:49:53 [ 11] [ 6] [107243] +12:49:53 [ 12] [ 6] [125738] +12:49:53 [ 13] [ 4] [0320] +12:49:53 [ 15] [ 4] [0320] +12:49:53 [ 18] [ 4] [6011] +12:49:53 [ 22] [ 3] [900] +12:49:53 [ 32] [ 6] [220699] +12:49:53 [ 35] [ 32] [6213542000025685=491212012568356] +12:49:53 [ 37] [ 12] [507900327846] +12:49:53 [ 39] [ 2] [05] +12:49:53 [ 41] [ 8] [01001800] +12:49:53 [ 49] [ 3] [418] +12:49:53 ============================================================================ +12:49:53 Calculate Source COMM Id = 1 +12:49:53 ============================================================================ +12:49:53 + + +waiting on router queue for slot.... +12:49:55 ============================================================================ +12:49:55 Slot Id : <17> +12:49:55 Transaction Type : REQUEST +12:49:55 Received From : +12:49:55 ============================================================================ +12:49:55 FNo. Len. Field Value +12:49:55 ============================================================================ +12:49:55 [ 1] [ 4] [0800] +12:49:55 [ 7] [ 10] [0320055742] +12:49:55 [ 11] [ 6] [039501] +12:49:55 [ 37] [ 12] [57912039501] +12:49:55 [ 70] [ 3] [301] +12:49:55 ============================================================================ +12:49:55 + + +waiting on router queue for slot.... +12:49:55 Sending to : +12:49:55 ============================================================================ +12:49:55 ============================================================================ +12:49:55 Slot Id : <17> +12:49:55 Transaction Type : RESPONSE +12:49:55 Received From : +12:49:55 ============================================================================ +12:49:55 FNo. Len. Field Value +12:49:55 ============================================================================ +12:49:55 [ 1] [ 4] [0810] +12:49:55 [ 7] [ 10] [0320055742] +12:49:55 [ 11] [ 6] [039501] +12:49:55 [ 37] [ 12] [579120395010] +12:49:55 [ 39] [ 2] [00] +12:49:55 [ 70] [ 3] [810] +12:49:55 ============================================================================ +12:49:55 Calculate Source COMM Id = 1 +12:49:55 ============================================================================ +12:49:55 + + +waiting on router queue for slot.... +12:49:55 ============================================================================ +12:49:55 Slot Id : <10> +12:49:55 Transaction Type : REQUEST +12:49:55 Received From : +12:49:55 ============================================================================ +12:49:55 FNo. Len. Field Value +12:49:55 ============================================================================ +12:49:55 [ 1] [ 4] [0200] +12:49:55 [ 2] [ 16] [1808931300002902] +12:49:55 [ 3] [ 6] [010000] +12:49:55 [ 4] [ 12] [000100000000] +12:49:55 [ 7] [ 10] [0320124950] +12:49:55 [ 11] [ 6] [749503] +12:49:55 [ 12] [ 6] [124950] +12:49:55 [ 13] [ 4] [0320] +12:49:55 [ 15] [ 4] [0320] +12:49:55 [ 18] [ 4] [6011] +12:49:55 [ 22] [ 3] [900] +12:49:55 [ 25] [ 2] [02] +12:49:55 [ 28] [ 9] [D00002000] +12:49:55 [ 32] [ 6] [621354] +12:49:55 [ 35] [ 27] [1808931300002902=1803500749] +12:49:55 [ 37] [ 12] [507903478316] +12:49:55 [ 41] [ 8] [06002000] +12:49:55 [ 42] [ 15] [NATIVE ] +12:49:55 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:49:55 [ 49] [ 3] [418] +12:49:55 [ 52] [ 16] [4743C7384AC6707B] +12:49:55 ============================================================================ +12:49:55 + + +waiting on router queue for slot.... +12:49:55 Sending to : +12:49:55 ============================================================================ +12:49:55 Sending to : +12:49:55 ============================================================================ +12:49:55 ============================================================================ +12:49:55 Slot Id : <10> +12:49:55 Transaction Type : REQUEST +12:49:55 Received From : +12:49:55 ============================================================================ +12:49:55 FNo. Len. Field Value +12:49:55 ============================================================================ +12:49:55 [ 1] [ 4] [0200] +12:49:55 [ 2] [ 16] [1808931300002902] +12:49:55 [ 3] [ 6] [010000] +12:49:55 [ 4] [ 12] [000100000000] +12:49:55 [ 7] [ 10] [0320124950] +12:49:55 [ 11] [ 6] [749503] +12:49:55 [ 12] [ 6] [124950] +12:49:55 [ 13] [ 4] [0320] +12:49:55 [ 15] [ 4] [0320] +12:49:55 [ 18] [ 4] [6011] +12:49:55 [ 22] [ 3] [900] +12:49:55 [ 25] [ 2] [02] +12:49:55 [ 28] [ 9] [D00002000] +12:49:55 [ 32] [ 6] [621354] +12:49:55 [ 35] [ 27] [1808931300002902=1803500749] +12:49:55 [ 37] [ 12] [507903478316] +12:49:55 [ 41] [ 8] [06002000] +12:49:55 [ 42] [ 15] [NATIVE ] +12:49:55 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:49:55 [ 49] [ 3] [418] +12:49:55 [ 52] [ 16] [4743C7384AC6707B] +12:49:55 ============================================================================ +12:49:55 + + +waiting on router queue for slot.... +12:49:55 Sending to : +12:49:55 ============================================================================ +12:49:55 ============================================================================ +12:49:55 Slot Id : <10> +12:49:55 Transaction Type : REQUEST +12:49:55 Received From : +12:49:55 ============================================================================ +12:49:55 FNo. Len. Field Value +12:49:55 ============================================================================ +12:49:55 [ 1] [ 4] [0200] +12:49:55 [ 2] [ 16] [1808931300002902] +12:49:55 [ 3] [ 6] [010000] +12:49:55 [ 4] [ 12] [000100000000] +12:49:55 [ 7] [ 10] [0320124950] +12:49:55 [ 11] [ 6] [749503] +12:49:55 [ 12] [ 6] [124950] +12:49:55 [ 13] [ 4] [0320] +12:49:55 [ 15] [ 4] [0320] +12:49:55 [ 18] [ 4] [6011] +12:49:55 [ 22] [ 3] [900] +12:49:55 [ 25] [ 2] [02] +12:49:55 [ 28] [ 9] [D00002000] +12:49:55 [ 32] [ 6] [621354] +12:49:55 [ 35] [ 27] [1808931300002902=1803500749] +12:49:55 [ 37] [ 12] [507903478316] +12:49:55 [ 41] [ 8] [06002000] +12:49:55 [ 42] [ 15] [NATIVE ] +12:49:55 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:49:55 [ 49] [ 3] [418] +12:49:55 [ 52] [ 16] [C1FF36543C22B505] +12:49:55 ============================================================================ +12:49:55 + + +waiting on router queue for slot.... +12:49:55 Sending to : <2> +12:49:55 ============================================================================ +12:49:58 ============================================================================ +12:49:58 Slot Id : <10> +12:49:58 Transaction Type : RESPONSE +12:49:58 Received From : +12:49:58 ============================================================================ +12:49:58 FNo. Len. Field Value +12:49:58 ============================================================================ +12:49:58 [ 1] [ 4] [0210] +12:49:58 [ 2] [ 16] [1808931300002902] +12:49:58 [ 3] [ 6] [010000] +12:49:58 [ 4] [ 12] [000100000000] +12:49:58 [ 6] [ 12] [000100000000] +12:49:58 [ 7] [ 10] [0320124950] +12:49:58 [ 11] [ 6] [749503] +12:49:58 [ 12] [ 6] [124950] +12:49:58 [ 13] [ 4] [0320] +12:49:58 [ 18] [ 4] [6011] +12:49:58 [ 19] [ 3] [418] +12:49:58 [ 22] [ 3] [021] +12:49:58 [ 32] [ 6] [621354] +12:49:58 [ 35] [ 27] [1808931300002902=1803500749] +12:49:58 [ 37] [ 12] [507903478316] +12:49:58 [ 38] [ 6] [749503] +12:49:58 [ 39] [ 2] [00] +12:49:58 [ 41] [ 8] [06002000] +12:49:58 [ 49] [ 3] [418] +12:49:58 [ 52] [ 16] [C1FF36543C22B505] +12:49:58 [ 54] [ 20] [1001418C000143019600] +12:49:58 ============================================================================ +12:49:58 Sending to : +12:49:58 ============================================================================ +12:49:58 + + +waiting on router queue for slot.... +12:50:00 ============================================================================ +12:50:00 Slot Id : <10> +12:50:00 Transaction Type : RESPONSE +12:50:00 Received From : +12:50:00 ============================================================================ +12:50:00 FNo. Len. Field Value +12:50:00 ============================================================================ +12:50:00 [ 1] [ 4] [0210] +12:50:00 [ 2] [ 16] [1808931300002902] +12:50:00 [ 3] [ 6] [010000] +12:50:00 [ 4] [ 12] [000100000000] +12:50:00 [ 6] [ 12] [000100000000] +12:50:00 [ 7] [ 10] [0320124950] +12:50:00 [ 11] [ 6] [749503] +12:50:00 [ 12] [ 6] [124950] +12:50:00 [ 13] [ 4] [0320] +12:50:00 [ 18] [ 4] [6011] +12:50:00 [ 19] [ 3] [418] +12:50:00 [ 22] [ 3] [021] +12:50:00 [ 32] [ 6] [621354] +12:50:00 [ 35] [ 27] [1808931300002902=1803500749] +12:50:00 [ 37] [ 12] [507903478316] +12:50:00 [ 38] [ 6] [749503] +12:50:00 [ 39] [ 2] [00] +12:50:00 [ 41] [ 8] [06002000] +12:50:00 [ 49] [ 3] [418] +12:50:00 [ 52] [ 16] [C1FF36543C22B505] +12:50:00 [ 54] [ 20] [1001418C000143019600] +12:50:00 ============================================================================ +12:50:00 Calculate Source COMM Id = 0 +12:50:00 ============================================================================ +12:50:00 + + +waiting on router queue for slot.... +12:50:06 ============================================================================ +12:50:06 Slot Id : <31> +12:50:06 Transaction Type : REQUEST +12:50:06 Received From : +12:50:06 ============================================================================ +12:50:06 FNo. Len. Field Value +12:50:06 ============================================================================ +12:50:06 [ 1] [ 4] [0200] +12:50:06 [ 2] [ 16] [6213544000670692] +12:50:06 [ 3] [ 6] [010000] +12:50:06 [ 4] [ 12] [000050000000] +12:50:06 [ 7] [ 10] [0320054913] +12:50:06 [ 11] [ 6] [269139] +12:50:06 [ 12] [ 6] [124913] +12:50:06 [ 13] [ 4] [0320] +12:50:06 [ 14] [ 4] [4912] +12:50:06 [ 15] [ 4] [0320] +12:50:06 [ 18] [ 4] [6011] +12:50:06 [ 19] [ 3] [418] +12:50:06 [ 22] [ 3] [021] +12:50:06 [ 25] [ 2] [01] +12:50:06 [ 28] [ 9] [D00002000] +12:50:06 [ 32] [ 6] [180893] +12:50:06 [ 35] [ 32] [6213544000670692=491212017069854] +12:50:06 [ 37] [ 12] [507905269139] +12:50:06 [ 41] [ 8] [0221XKKM] +12:50:06 [ 42] [ 15] [999999 ] +12:50:06 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +12:50:06 [ 49] [ 3] [418] +12:50:06 [ 52] [ 16] [2C9B451318BA58B8] +12:50:06 ============================================================================ +12:50:06 + + +waiting on router queue for slot.... +12:50:06 Sending to : +12:50:06 ============================================================================ +12:50:06 Sending to : +12:50:06 ============================================================================ +12:50:06 ============================================================================ +12:50:06 Slot Id : <31> +12:50:06 Transaction Type : REQUEST +12:50:06 Received From : +12:50:06 ============================================================================ +12:50:06 FNo. Len. Field Value +12:50:06 ============================================================================ +12:50:06 [ 1] [ 4] [0200] +12:50:06 [ 2] [ 16] [6213544000670692] +12:50:06 [ 3] [ 6] [010000] +12:50:06 [ 4] [ 12] [000050000000] +12:50:06 [ 7] [ 10] [0320054913] +12:50:06 [ 11] [ 6] [269139] +12:50:06 [ 12] [ 6] [124913] +12:50:06 [ 13] [ 4] [0320] +12:50:06 [ 14] [ 4] [4912] +12:50:06 [ 15] [ 4] [0320] +12:50:06 [ 18] [ 4] [6011] +12:50:06 [ 19] [ 3] [418] +12:50:06 [ 22] [ 3] [021] +12:50:06 [ 25] [ 2] [01] +12:50:06 [ 28] [ 9] [D00002000] +12:50:06 [ 32] [ 6] [180893] +12:50:06 [ 35] [ 32] [6213544000670692=491212017069854] +12:50:06 [ 37] [ 12] [507905269139] +12:50:06 [ 41] [ 8] [0221XKKM] +12:50:06 [ 42] [ 15] [999999 ] +12:50:06 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +12:50:06 [ 49] [ 3] [418] +12:50:06 [ 52] [ 16] [2C9B451318BA58B8] +12:50:06 ============================================================================ +12:50:06 + + +waiting on router queue for slot.... +12:50:06 Sending to : +12:50:06 ============================================================================ +12:50:06 ============================================================================ +12:50:06 Slot Id : <31> +12:50:06 Transaction Type : REQUEST +12:50:06 Received From : +12:50:06 ============================================================================ +12:50:06 FNo. Len. Field Value +12:50:06 ============================================================================ +12:50:06 [ 1] [ 4] [0200] +12:50:06 [ 2] [ 16] [6213544000670692] +12:50:06 [ 3] [ 6] [010000] +12:50:06 [ 4] [ 12] [000050000000] +12:50:06 [ 7] [ 10] [0320054913] +12:50:06 [ 11] [ 6] [269139] +12:50:06 [ 12] [ 6] [124913] +12:50:06 [ 13] [ 4] [0320] +12:50:06 [ 14] [ 4] [4912] +12:50:06 [ 15] [ 4] [0320] +12:50:06 [ 18] [ 4] [6011] +12:50:06 [ 19] [ 3] [418] +12:50:06 [ 22] [ 3] [021] +12:50:06 [ 25] [ 2] [01] +12:50:06 [ 28] [ 9] [D00002000] +12:50:06 [ 32] [ 6] [180893] +12:50:06 [ 35] [ 32] [6213544000670692=491212017069854] +12:50:06 [ 37] [ 12] [507905269139] +12:50:06 [ 41] [ 8] [0221XKKM] +12:50:06 [ 42] [ 15] [999999 ] +12:50:06 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +12:50:06 [ 49] [ 3] [418] +12:50:06 [ 52] [ 16] [413E11D5BDD8809F] +12:50:06 ============================================================================ +12:50:06 + + +waiting on router queue for slot.... +12:50:06 Sending to : <0> +12:50:06 ============================================================================ +12:50:07 ============================================================================ +12:50:07 Slot Id : <31> +12:50:07 Transaction Type : RESPONSE +12:50:07 Received From : +12:50:07 ============================================================================ +12:50:07 FNo. Len. Field Value +12:50:07 ============================================================================ +12:50:07 [ 1] [ 4] [0210] +12:50:07 [ 2] [ 16] [6213544000670692] +12:50:07 [ 3] [ 6] [010000] +12:50:07 [ 4] [ 12] [000050000000] +12:50:07 [ 7] [ 10] [0320054913] +12:50:07 [ 11] [ 6] [269139] +12:50:07 [ 12] [ 6] [124913] +12:50:07 [ 13] [ 4] [0320] +12:50:07 [ 15] [ 4] [0320] +12:50:07 [ 18] [ 4] [6011] +12:50:07 [ 19] [ 3] [418] +12:50:07 [ 32] [ 6] [180893] +12:50:07 [ 35] [ 32] [6213544000670692=491212017069854] +12:50:07 [ 37] [ 12] [507905269139] +12:50:07 [ 38] [ 6] [023465] +12:50:07 [ 39] [ 2] [00] +12:50:07 [ 41] [ 8] [0221XKKM] +12:50:07 [ 49] [ 3] [418] +12:50:07 [ 54] [ 40] [0001418C0000351738450002418C000035173845] +12:50:07 ============================================================================ +12:50:07 Sending to : +12:50:07 ============================================================================ +12:50:07 + + +waiting on router queue for slot.... +12:50:08 ============================================================================ +12:50:08 Slot Id : <481> +12:50:08 Transaction Type : REQUEST +12:50:08 Received From : +12:50:08 ============================================================================ +12:50:08 FNo. Len. Field Value +12:50:08 ============================================================================ +12:50:08 [ 1] [ 4] [0800] +12:50:08 [ 7] [ 10] [0320054915] +12:50:08 [ 11] [ 6] [156400] +12:50:08 [ 70] [ 3] [301] +12:50:08 ============================================================================ +12:50:08 + + +waiting on router queue for slot.... +12:50:08 Sending to : +12:50:08 ============================================================================ +12:50:08 ============================================================================ +12:50:08 Slot Id : <481> +12:50:08 Transaction Type : RESPONSE +12:50:08 Received From : +12:50:08 ============================================================================ +12:50:08 FNo. Len. Field Value +12:50:08 ============================================================================ +12:50:08 [ 1] [ 4] [0810] +12:50:08 [ 7] [ 10] [0320054915] +12:50:08 [ 11] [ 6] [156400] +12:50:08 [ 39] [ 2] [00] +12:50:08 [ 70] [ 3] [301] +12:50:08 ============================================================================ +12:50:08 Calculate Source COMM Id = 2 +12:50:08 ============================================================================ +12:50:08 + + +waiting on router queue for slot.... +12:50:08 ============================================================================ +12:50:08 Slot Id : <31> +12:50:08 Transaction Type : RESPONSE +12:50:08 Received From : +12:50:08 ============================================================================ +12:50:08 FNo. Len. Field Value +12:50:08 ============================================================================ +12:50:08 [ 1] [ 4] [0210] +12:50:08 [ 2] [ 16] [6213544000670692] +12:50:08 [ 3] [ 6] [010000] +12:50:08 [ 4] [ 12] [000050000000] +12:50:08 [ 7] [ 10] [0320054913] +12:50:08 [ 11] [ 6] [269139] +12:50:08 [ 12] [ 6] [124913] +12:50:08 [ 13] [ 4] [0320] +12:50:08 [ 15] [ 4] [0320] +12:50:08 [ 18] [ 4] [6011] +12:50:08 [ 19] [ 3] [418] +12:50:08 [ 32] [ 6] [180893] +12:50:08 [ 35] [ 32] [6213544000670692=491212017069854] +12:50:08 [ 37] [ 12] [507905269139] +12:50:08 [ 38] [ 6] [023465] +12:50:08 [ 39] [ 2] [00] +12:50:08 [ 41] [ 8] [0221XKKM] +12:50:08 [ 49] [ 3] [418] +12:50:08 [ 54] [ 40] [0001418C0000351738450002418C000035173845] +12:50:08 ============================================================================ +12:50:08 Calculate Source COMM Id = 2 +12:50:08 ============================================================================ +12:50:08 + + +waiting on router queue for slot.... +12:50:20 ============================================================================ +12:50:20 Slot Id : <29> +12:50:20 Transaction Type : REQUEST +12:50:20 Received From : +12:50:20 ============================================================================ +12:50:20 FNo. Len. Field Value +12:50:20 ============================================================================ +12:50:20 [ 1] [ 4] [0800] +12:50:20 [ 7] [ 10] [0320054927] +12:50:20 [ 11] [ 6] [156401] +12:50:20 [ 70] [ 3] [301] +12:50:20 ============================================================================ +12:50:20 + + +waiting on router queue for slot.... +12:50:20 Sending to : +12:50:20 ============================================================================ +12:50:20 ============================================================================ +12:50:20 Slot Id : <29> +12:50:20 Transaction Type : RESPONSE +12:50:20 Received From : +12:50:20 ============================================================================ +12:50:20 FNo. Len. Field Value +12:50:20 ============================================================================ +12:50:20 [ 1] [ 4] [0810] +12:50:20 [ 7] [ 10] [0320054927] +12:50:20 [ 11] [ 6] [156401] +12:50:20 [ 39] [ 2] [00] +12:50:20 [ 70] [ 3] [301] +12:50:20 ============================================================================ +12:50:20 Calculate Source COMM Id = 2 +12:50:20 ============================================================================ +12:50:20 + + +waiting on router queue for slot.... +12:50:28 ============================================================================ +12:50:28 Slot Id : <23> +12:50:28 Transaction Type : REQUEST +12:50:28 Received From : +12:50:28 ============================================================================ +12:50:28 FNo. Len. Field Value +12:50:28 ============================================================================ +12:50:28 [ 1] [ 4] [0800] +12:50:28 [ 2] [ 5] [02531] +12:50:28 [ 3] [ 6] [579128] +12:50:28 [ 7] [ 10] [0320055028] +12:50:28 [ 11] [ 6] [807157] +12:50:28 [ 15] [ 10] [0320055028] +12:50:28 [ 37] [ 11] [57912807157] +12:50:28 [ 70] [ 3] [001] +12:50:28 ============================================================================ +12:50:28 + + +waiting on router queue for slot.... +12:50:28 ============================================================================ +12:50:28 Slot Id : <23> +12:50:28 Transaction Type : RESPONSE +12:50:28 Received From : +12:50:28 ============================================================================ +12:50:28 FNo. Len. Field Value +12:50:28 ============================================================================ +12:50:28 [ 1] [ 4] [0810] +12:50:28 [ 7] [ 10] [0320055028] +12:50:28 [ 11] [ 6] [807157] +12:50:28 [ 15] [ 4] [0320] +12:50:28 [ 37] [ 12] [57912807157] +12:50:28 [ 39] [ 2] [00] +12:50:28 [ 70] [ 3] [001] +12:50:28 ============================================================================ +12:50:28 Sending to : +12:50:28 ============================================================================ +12:50:28 + + +waiting on router queue for slot.... +12:50:35 ============================================================================ +12:50:35 Slot Id : <3> +12:50:35 Transaction Type : REQUEST +12:50:35 Received From : +12:50:35 ============================================================================ +12:50:35 FNo. Len. Field Value +12:50:35 ============================================================================ +12:50:35 [ 1] [ 4] [0800] +12:50:35 [ 7] [ 10] [0320054942] +12:50:35 [ 11] [ 6] [156402] +12:50:35 [ 70] [ 3] [301] +12:50:35 ============================================================================ +12:50:35 + + +waiting on router queue for slot.... +12:50:35 Sending to : +12:50:35 ============================================================================ +12:50:35 ============================================================================ +12:50:35 Slot Id : <3> +12:50:35 Transaction Type : RESPONSE +12:50:35 Received From : +12:50:35 ============================================================================ +12:50:35 FNo. Len. Field Value +12:50:35 ============================================================================ +12:50:35 [ 1] [ 4] [0810] +12:50:35 [ 7] [ 10] [0320054942] +12:50:35 [ 11] [ 6] [156402] +12:50:35 [ 39] [ 2] [00] +12:50:35 [ 70] [ 3] [301] +12:50:35 ============================================================================ +12:50:35 Calculate Source COMM Id = 2 +12:50:35 ============================================================================ +12:50:35 + + +waiting on router queue for slot.... +12:50:39 ============================================================================ +12:50:39 Slot Id : <7> +12:50:39 Transaction Type : REQUEST +12:50:39 Received From : +12:50:39 ============================================================================ +12:50:39 FNo. Len. Field Value +12:50:39 ============================================================================ +12:50:39 [ 1] [ 4] [0200] +12:50:39 [ 2] [ 16] [1234010100084169] +12:50:39 [ 3] [ 6] [301000] +12:50:39 [ 4] [ 12] [000000000000] +12:50:39 [ 7] [ 10] [0320125034] +12:50:39 [ 11] [ 6] [749648] +12:50:39 [ 12] [ 6] [125034] +12:50:39 [ 13] [ 4] [0320] +12:50:39 [ 15] [ 4] [0320] +12:50:39 [ 18] [ 4] [6011] +12:50:39 [ 22] [ 3] [900] +12:50:39 [ 25] [ 2] [02] +12:50:39 [ 28] [ 9] [D00000000] +12:50:39 [ 32] [ 6] [621354] +12:50:39 [ 35] [ 32] [1234010100084169=140500018416000] +12:50:39 [ 37] [ 12] [507903040037] +12:50:39 [ 41] [ 8] [01008400] +12:50:39 [ 42] [ 15] [NATIVE ] +12:50:39 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +12:50:39 [ 49] [ 3] [418] +12:50:39 [ 52] [ 16] [A3118023597C6A09] +12:50:39 ============================================================================ +12:50:39 + + +waiting on router queue for slot.... +12:50:39 Sending to : +12:50:39 ============================================================================ +12:50:39 Sending to : +12:50:39 ============================================================================ +12:50:39 ============================================================================ +12:50:39 Slot Id : <7> +12:50:39 Transaction Type : REQUEST +12:50:39 Received From : +12:50:39 ============================================================================ +12:50:39 FNo. Len. Field Value +12:50:39 ============================================================================ +12:50:39 [ 1] [ 4] [0200] +12:50:39 [ 2] [ 16] [1234010100084169] +12:50:39 [ 3] [ 6] [301000] +12:50:39 [ 4] [ 12] [000000000000] +12:50:39 [ 7] [ 10] [0320125034] +12:50:39 [ 11] [ 6] [749648] +12:50:39 [ 12] [ 6] [125034] +12:50:39 [ 13] [ 4] [0320] +12:50:39 [ 15] [ 4] [0320] +12:50:39 [ 18] [ 4] [6011] +12:50:39 [ 22] [ 3] [900] +12:50:39 [ 25] [ 2] [02] +12:50:39 [ 28] [ 9] [D00000000] +12:50:39 [ 32] [ 6] [621354] +12:50:39 [ 35] [ 32] [1234010100084169=140500018416000] +12:50:39 [ 37] [ 12] [507903040037] +12:50:39 [ 41] [ 8] [01008400] +12:50:39 [ 42] [ 15] [NATIVE ] +12:50:39 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +12:50:39 [ 49] [ 3] [418] +12:50:39 [ 52] [ 16] [A3118023597C6A09] +12:50:39 ============================================================================ +12:50:39 + + +waiting on router queue for slot.... +12:50:39 Sending to : +12:50:39 ============================================================================ +12:50:39 ============================================================================ +12:50:39 Slot Id : <7> +12:50:39 Transaction Type : REQUEST +12:50:39 Received From : +12:50:39 ============================================================================ +12:50:39 FNo. Len. Field Value +12:50:39 ============================================================================ +12:50:39 [ 1] [ 4] [0200] +12:50:39 [ 2] [ 16] [1234010100084169] +12:50:39 [ 3] [ 6] [301000] +12:50:39 [ 4] [ 12] [000000000000] +12:50:39 [ 7] [ 10] [0320125034] +12:50:39 [ 11] [ 6] [749648] +12:50:39 [ 12] [ 6] [125034] +12:50:39 [ 13] [ 4] [0320] +12:50:39 [ 15] [ 4] [0320] +12:50:39 [ 18] [ 4] [6011] +12:50:39 [ 22] [ 3] [900] +12:50:39 [ 25] [ 2] [02] +12:50:39 [ 28] [ 9] [D00000000] +12:50:39 [ 32] [ 6] [621354] +12:50:39 [ 35] [ 32] [1234010100084169=140500018416000] +12:50:39 [ 37] [ 12] [507903040037] +12:50:39 [ 41] [ 8] [01008400] +12:50:39 [ 42] [ 15] [NATIVE ] +12:50:39 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +12:50:39 [ 49] [ 3] [418] +12:50:39 [ 52] [ 16] [9008467313F8C6B2] +12:50:39 ============================================================================ +12:50:39 + + +waiting on router queue for slot.... +12:50:39 ONUS/OFFUS CARD status [0] +12:50:39 ============================================================================ +12:50:50 ============================================================================ +12:50:50 Slot Id : <11> +12:50:50 Transaction Type : REQUEST +12:50:50 Received From : +12:50:50 ============================================================================ +12:50:50 FNo. Len. Field Value +12:50:50 ============================================================================ +12:50:50 [ 1] [ 4] [0800] +12:50:50 [ 7] [ 10] [0320054957] +12:50:50 [ 11] [ 6] [156403] +12:50:50 [ 70] [ 3] [301] +12:50:50 ============================================================================ +12:50:50 + + +waiting on router queue for slot.... +12:50:50 Sending to : +12:50:50 ============================================================================ +12:50:50 ============================================================================ +12:50:50 Slot Id : <11> +12:50:50 Transaction Type : RESPONSE +12:50:50 Received From : +12:50:50 ============================================================================ +12:50:50 FNo. Len. Field Value +12:50:50 ============================================================================ +12:50:50 [ 1] [ 4] [0810] +12:50:50 [ 7] [ 10] [0320054957] +12:50:50 [ 11] [ 6] [156403] +12:50:50 [ 39] [ 2] [00] +12:50:50 [ 70] [ 3] [301] +12:50:50 ============================================================================ +12:50:50 Calculate Source COMM Id = 2 +12:50:50 ============================================================================ +12:50:50 + + +waiting on router queue for slot.... +12:50:50 ============================================================================ +12:50:50 Slot Id : <21> +12:50:50 Transaction Type : REQUEST +12:50:50 Received From : +12:50:50 ============================================================================ +12:50:50 FNo. Len. Field Value +12:50:50 ============================================================================ +12:50:50 [ 1] [ 4] [0200] +12:50:50 [ 2] [ 16] [1808931300002902] +12:50:50 [ 3] [ 6] [010000] +12:50:50 [ 4] [ 12] [000100000000] +12:50:50 [ 7] [ 10] [0320125046] +12:50:50 [ 11] [ 6] [749677] +12:50:50 [ 12] [ 6] [125046] +12:50:50 [ 13] [ 4] [0320] +12:50:50 [ 15] [ 4] [0320] +12:50:50 [ 18] [ 4] [6011] +12:50:50 [ 22] [ 3] [900] +12:50:50 [ 25] [ 2] [02] +12:50:50 [ 28] [ 9] [D00002000] +12:50:50 [ 32] [ 6] [621354] +12:50:50 [ 35] [ 27] [1808931300002902=1803500749] +12:50:50 [ 37] [ 12] [507903478318] +12:50:50 [ 41] [ 8] [06002000] +12:50:50 [ 42] [ 15] [NATIVE ] +12:50:50 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:50:50 [ 49] [ 3] [418] +12:50:50 [ 52] [ 16] [4743C7384AC6707B] +12:50:50 ============================================================================ +12:50:50 + + +waiting on router queue for slot.... +12:50:50 Sending to : +12:50:50 ============================================================================ +12:50:50 Sending to : +12:50:50 ============================================================================ +12:50:51 ============================================================================ +12:50:51 Slot Id : <21> +12:50:51 Transaction Type : REQUEST +12:50:51 Received From : +12:50:51 ============================================================================ +12:50:51 FNo. Len. Field Value +12:50:51 ============================================================================ +12:50:51 [ 1] [ 4] [0200] +12:50:51 [ 2] [ 16] [1808931300002902] +12:50:51 [ 3] [ 6] [010000] +12:50:51 [ 4] [ 12] [000100000000] +12:50:51 [ 7] [ 10] [0320125046] +12:50:51 [ 11] [ 6] [749677] +12:50:51 [ 12] [ 6] [125046] +12:50:51 [ 13] [ 4] [0320] +12:50:51 [ 15] [ 4] [0320] +12:50:51 [ 18] [ 4] [6011] +12:50:51 [ 22] [ 3] [900] +12:50:51 [ 25] [ 2] [02] +12:50:51 [ 28] [ 9] [D00002000] +12:50:51 [ 32] [ 6] [621354] +12:50:51 [ 35] [ 27] [1808931300002902=1803500749] +12:50:51 [ 37] [ 12] [507903478318] +12:50:51 [ 41] [ 8] [06002000] +12:50:51 [ 42] [ 15] [NATIVE ] +12:50:51 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:50:51 [ 49] [ 3] [418] +12:50:51 [ 52] [ 16] [4743C7384AC6707B] +12:50:51 ============================================================================ +12:50:51 + + +waiting on router queue for slot.... +12:50:51 Sending to : +12:50:51 ============================================================================ +12:50:51 ============================================================================ +12:50:51 Slot Id : <21> +12:50:51 Transaction Type : REQUEST +12:50:51 Received From : +12:50:51 ============================================================================ +12:50:51 FNo. Len. Field Value +12:50:51 ============================================================================ +12:50:51 [ 1] [ 4] [0200] +12:50:51 [ 2] [ 16] [1808931300002902] +12:50:51 [ 3] [ 6] [010000] +12:50:51 [ 4] [ 12] [000100000000] +12:50:51 [ 7] [ 10] [0320125046] +12:50:51 [ 11] [ 6] [749677] +12:50:51 [ 12] [ 6] [125046] +12:50:51 [ 13] [ 4] [0320] +12:50:51 [ 15] [ 4] [0320] +12:50:51 [ 18] [ 4] [6011] +12:50:51 [ 22] [ 3] [900] +12:50:51 [ 25] [ 2] [02] +12:50:51 [ 28] [ 9] [D00002000] +12:50:51 [ 32] [ 6] [621354] +12:50:51 [ 35] [ 27] [1808931300002902=1803500749] +12:50:51 [ 37] [ 12] [507903478318] +12:50:51 [ 41] [ 8] [06002000] +12:50:51 [ 42] [ 15] [NATIVE ] +12:50:51 [ 43] [ 40] [Oudomxay Branch 04 Xay LAO] +12:50:51 [ 49] [ 3] [418] +12:50:51 [ 52] [ 16] [C1FF36543C22B505] +12:50:51 ============================================================================ +12:50:51 + + +waiting on router queue for slot.... +12:50:51 Sending to : <2> +12:50:51 ============================================================================ +12:50:54 ============================================================================ +12:50:54 Slot Id : <21> +12:50:54 Transaction Type : RESPONSE +12:50:54 Received From : +12:50:54 ============================================================================ +12:50:54 FNo. Len. Field Value +12:50:54 ============================================================================ +12:50:54 [ 1] [ 4] [0210] +12:50:54 [ 2] [ 16] [1808931300002902] +12:50:54 [ 3] [ 6] [010000] +12:50:54 [ 4] [ 12] [000100000000] +12:50:54 [ 6] [ 12] [000100000000] +12:50:54 [ 7] [ 10] [0320125046] +12:50:54 [ 11] [ 6] [749677] +12:50:54 [ 12] [ 6] [125046] +12:50:54 [ 13] [ 4] [0320] +12:50:54 [ 18] [ 4] [6011] +12:50:54 [ 19] [ 3] [418] +12:50:54 [ 22] [ 3] [021] +12:50:54 [ 32] [ 6] [621354] +12:50:54 [ 35] [ 27] [1808931300002902=1803500749] +12:50:54 [ 37] [ 12] [507903478318] +12:50:54 [ 38] [ 6] [749677] +12:50:54 [ 39] [ 2] [00] +12:50:54 [ 41] [ 8] [06002000] +12:50:54 [ 49] [ 3] [418] +12:50:54 [ 52] [ 16] [C1FF36543C22B505] +12:50:54 [ 54] [ 20] [1001418C000042819600] +12:50:54 ============================================================================ +12:50:54 Sending to : +12:50:54 ============================================================================ +12:50:54 + + +waiting on router queue for slot.... +12:50:56 ============================================================================ +12:50:56 Slot Id : <21> +12:50:56 Transaction Type : RESPONSE +12:50:56 Received From : +12:50:56 ============================================================================ +12:50:56 FNo. Len. Field Value +12:50:56 ============================================================================ +12:50:56 [ 1] [ 4] [0210] +12:50:56 [ 2] [ 16] [1808931300002902] +12:50:56 [ 3] [ 6] [010000] +12:50:56 [ 4] [ 12] [000100000000] +12:50:56 [ 6] [ 12] [000100000000] +12:50:56 [ 7] [ 10] [0320125046] +12:50:56 [ 11] [ 6] [749677] +12:50:56 [ 12] [ 6] [125046] +12:50:56 [ 13] [ 4] [0320] +12:50:56 [ 18] [ 4] [6011] +12:50:56 [ 19] [ 3] [418] +12:50:56 [ 22] [ 3] [021] +12:50:56 [ 32] [ 6] [621354] +12:50:56 [ 35] [ 27] [1808931300002902=1803500749] +12:50:56 [ 37] [ 12] [507903478318] +12:50:56 [ 38] [ 6] [749677] +12:50:56 [ 39] [ 2] [00] +12:50:56 [ 41] [ 8] [06002000] +12:50:56 [ 49] [ 3] [418] +12:50:56 [ 52] [ 16] [C1FF36543C22B505] +12:50:56 [ 54] [ 20] [1001418C000042819600] +12:50:56 ============================================================================ +12:50:56 Calculate Source COMM Id = 0 +12:50:56 ============================================================================ +12:50:56 + + +waiting on router queue for slot.... +12:51:05 ============================================================================ +12:51:05 Slot Id : <33> +12:51:05 Transaction Type : REQUEST +12:51:05 Received From : +12:51:05 ============================================================================ +12:51:05 FNo. Len. Field Value +12:51:05 ============================================================================ +12:51:05 [ 1] [ 4] [0800] +12:51:05 [ 7] [ 10] [0320055013] +12:51:05 [ 11] [ 6] [156404] +12:51:05 [ 70] [ 3] [301] +12:51:05 ============================================================================ +12:51:05 + + +waiting on router queue for slot.... +12:51:05 Sending to : +12:51:05 ============================================================================ +12:51:05 ============================================================================ +12:51:05 Slot Id : <33> +12:51:05 Transaction Type : RESPONSE +12:51:05 Received From : +12:51:05 ============================================================================ +12:51:05 FNo. Len. Field Value +12:51:05 ============================================================================ +12:51:05 [ 1] [ 4] [0810] +12:51:05 [ 7] [ 10] [0320055013] +12:51:05 [ 11] [ 6] [156404] +12:51:05 [ 39] [ 2] [00] +12:51:05 [ 70] [ 3] [301] +12:51:05 ============================================================================ +12:51:05 Calculate Source COMM Id = 2 +12:51:05 ============================================================================ +12:51:05 + + +waiting on router queue for slot.... +12:51:13 ============================================================================ +12:51:13 Slot Id : <35> +12:51:13 Transaction Type : REQUEST +12:51:13 Received From : +12:51:13 ============================================================================ +12:51:13 FNo. Len. Field Value +12:51:13 ============================================================================ +12:51:13 [ 1] [ 4] [0200] +12:51:13 [ 2] [ 16] [6213544002109749] +12:51:13 [ 3] [ 6] [010000] +12:51:13 [ 4] [ 12] [000030000000] +12:51:13 [ 7] [ 10] [0320124904] +12:51:13 [ 11] [ 6] [945093] +12:51:13 [ 12] [ 6] [124904] +12:51:13 [ 13] [ 4] [0320] +12:51:13 [ 15] [ 4] [0320] +12:51:13 [ 18] [ 4] [6011] +12:51:13 [ 19] [ 3] [418] +12:51:13 [ 22] [ 3] [021] +12:51:13 [ 25] [ 2] [01] +12:51:13 [ 28] [ 9] [D00002000] +12:51:13 [ 32] [ 6] [668899] +12:51:13 [ 35] [ 32] [6213544002109749=491212010974171] +12:51:13 [ 37] [ 12] [507901373731] +12:51:13 [ 41] [ 8] [03209001] +12:51:13 [ 42] [ 15] [APT ] +12:51:13 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +12:51:13 [ 49] [ 3] [418] +12:51:13 [ 52] [ 16] [0DC4C8DF0A1B4FC2] +12:51:13 ============================================================================ +12:51:13 + + +waiting on router queue for slot.... +12:51:13 Sending to : +12:51:13 ============================================================================ +12:51:13 Sending to : +12:51:13 ============================================================================ +12:51:14 ============================================================================ +12:51:14 Slot Id : <35> +12:51:14 Transaction Type : REQUEST +12:51:14 Received From : +12:51:14 ============================================================================ +12:51:14 FNo. Len. Field Value +12:51:14 ============================================================================ +12:51:14 [ 1] [ 4] [0200] +12:51:14 [ 2] [ 16] [6213544002109749] +12:51:14 [ 3] [ 6] [010000] +12:51:14 [ 4] [ 12] [000030000000] +12:51:14 [ 7] [ 10] [0320124904] +12:51:14 [ 11] [ 6] [945093] +12:51:14 [ 12] [ 6] [124904] +12:51:14 [ 13] [ 4] [0320] +12:51:14 [ 15] [ 4] [0320] +12:51:14 [ 18] [ 4] [6011] +12:51:14 [ 19] [ 3] [418] +12:51:14 [ 22] [ 3] [021] +12:51:14 [ 25] [ 2] [01] +12:51:14 [ 28] [ 9] [D00002000] +12:51:14 [ 32] [ 6] [668899] +12:51:14 [ 35] [ 32] [6213544002109749=491212010974171] +12:51:14 [ 37] [ 12] [507901373731] +12:51:14 [ 41] [ 8] [03209001] +12:51:14 [ 42] [ 15] [APT ] +12:51:14 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +12:51:14 [ 49] [ 3] [418] +12:51:14 [ 52] [ 16] [0DC4C8DF0A1B4FC2] +12:51:14 ============================================================================ +12:51:14 + + +waiting on router queue for slot.... +12:51:14 Sending to : +12:51:14 ============================================================================ +12:51:14 ============================================================================ +12:51:14 Slot Id : <35> +12:51:14 Transaction Type : REQUEST +12:51:14 Received From : +12:51:14 ============================================================================ +12:51:14 FNo. Len. Field Value +12:51:14 ============================================================================ +12:51:14 [ 1] [ 4] [0200] +12:51:14 [ 2] [ 16] [6213544002109749] +12:51:14 [ 3] [ 6] [010000] +12:51:14 [ 4] [ 12] [000030000000] +12:51:14 [ 7] [ 10] [0320124904] +12:51:14 [ 11] [ 6] [945093] +12:51:14 [ 12] [ 6] [124904] +12:51:14 [ 13] [ 4] [0320] +12:51:14 [ 15] [ 4] [0320] +12:51:14 [ 18] [ 4] [6011] +12:51:14 [ 19] [ 3] [418] +12:51:14 [ 22] [ 3] [021] +12:51:14 [ 25] [ 2] [01] +12:51:14 [ 28] [ 9] [D00002000] +12:51:14 [ 32] [ 6] [668899] +12:51:14 [ 35] [ 32] [6213544002109749=491212010974171] +12:51:14 [ 37] [ 12] [507901373731] +12:51:14 [ 41] [ 8] [03209001] +12:51:14 [ 42] [ 15] [APT ] +12:51:14 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +12:51:14 [ 49] [ 3] [418] +12:51:14 [ 52] [ 16] [F56FCBC2D7FCBAD3] +12:51:14 ============================================================================ +12:51:14 + + +waiting on router queue for slot.... +12:51:14 Sending to : <0> +12:51:14 ============================================================================ +12:51:14 ============================================================================ +12:51:14 Slot Id : <35> +12:51:14 Transaction Type : RESPONSE +12:51:14 Received From : +12:51:14 ============================================================================ +12:51:14 FNo. Len. Field Value +12:51:14 ============================================================================ +12:51:14 [ 1] [ 4] [0210] +12:51:14 [ 2] [ 16] [6213544002109749] +12:51:14 [ 3] [ 6] [010000] +12:51:14 [ 4] [ 12] [000030000000] +12:51:14 [ 7] [ 10] [0320124904] +12:51:14 [ 11] [ 6] [945093] +12:51:14 [ 12] [ 6] [124904] +12:51:14 [ 13] [ 4] [0320] +12:51:14 [ 15] [ 4] [0320] +12:51:14 [ 18] [ 4] [6011] +12:51:14 [ 19] [ 3] [418] +12:51:14 [ 32] [ 6] [668899] +12:51:14 [ 35] [ 32] [6213544002109749=491212010974171] +12:51:14 [ 37] [ 12] [507901373731] +12:51:14 [ 38] [ 6] [792048] +12:51:14 [ 39] [ 2] [00] +12:51:14 [ 41] [ 8] [03209001] +12:51:14 [ 49] [ 3] [418] +12:51:14 [ 54] [ 40] [0001418C0005402315070002418C000540231507] +12:51:14 ============================================================================ +12:51:14 Sending to : +12:51:14 ============================================================================ +12:51:14 + + +waiting on router queue for slot.... +12:51:16 ============================================================================ +12:51:16 Slot Id : <35> +12:51:16 Transaction Type : RESPONSE +12:51:16 Received From : +12:51:16 ============================================================================ +12:51:16 FNo. Len. Field Value +12:51:16 ============================================================================ +12:51:16 [ 1] [ 4] [0210] +12:51:16 [ 2] [ 16] [6213544002109749] +12:51:16 [ 3] [ 6] [010000] +12:51:16 [ 4] [ 12] [000030000000] +12:51:16 [ 7] [ 10] [0320124904] +12:51:16 [ 11] [ 6] [945093] +12:51:16 [ 12] [ 6] [124904] +12:51:16 [ 13] [ 4] [0320] +12:51:16 [ 15] [ 4] [0320] +12:51:16 [ 18] [ 4] [6011] +12:51:16 [ 19] [ 3] [418] +12:51:16 [ 32] [ 6] [668899] +12:51:16 [ 35] [ 32] [6213544002109749=491212010974171] +12:51:16 [ 37] [ 12] [507901373731] +12:51:16 [ 38] [ 6] [792048] +12:51:16 [ 39] [ 2] [00] +12:51:16 [ 41] [ 8] [03209001] +12:51:16 [ 49] [ 3] [418] +12:51:16 [ 54] [ 40] [0001418C0005402315070002418C000540231507] +12:51:16 ============================================================================ +12:51:16 Calculate Source COMM Id = 4 +12:51:16 ============================================================================ +12:51:16 + + +waiting on router queue for slot.... +12:51:19 ============================================================================ +12:51:19 Slot Id : <496> +12:51:19 Transaction Type : REQUEST +12:51:19 Received From : +12:51:19 ============================================================================ +12:51:19 FNo. Len. Field Value +12:51:19 ============================================================================ +12:51:19 [ 1] [ 4] [0800] +12:51:19 [ 7] [ 10] [0320055023] +12:51:19 [ 11] [ 6] [156405] +12:51:19 [ 70] [ 3] [301] +12:51:19 ============================================================================ +12:51:19 + + +waiting on router queue for slot.... +12:51:19 Sending to : +12:51:19 ============================================================================ +12:51:19 ============================================================================ +12:51:19 Slot Id : <496> +12:51:19 Transaction Type : RESPONSE +12:51:19 Received From : +12:51:19 ============================================================================ +12:51:19 FNo. Len. Field Value +12:51:19 ============================================================================ +12:51:19 [ 1] [ 4] [0810] +12:51:19 [ 7] [ 10] [0320055023] +12:51:19 [ 11] [ 6] [156405] +12:51:19 [ 39] [ 2] [00] +12:51:19 [ 70] [ 3] [301] +12:51:19 ============================================================================ +12:51:19 Calculate Source COMM Id = 2 +12:51:19 ============================================================================ +12:51:19 + + +waiting on router queue for slot.... +12:51:21 ============================================================================ +12:51:21 Slot Id : <461> +12:51:21 Transaction Type : REQUEST +12:51:21 Received From : +12:51:21 ============================================================================ +12:51:21 FNo. Len. Field Value +12:51:21 ============================================================================ +12:51:21 [ 1] [ 4] [0800] +12:51:21 [ 7] [ 10] [0320054912] +12:51:21 [ 11] [ 6] [064685] +12:51:21 [ 37] [ 12] [57912064685] +12:51:21 [ 70] [ 3] [301] +12:51:21 ============================================================================ +12:51:21 + + +waiting on router queue for slot.... +12:51:21 Sending to : +12:51:21 ============================================================================ +12:51:21 ============================================================================ +12:51:21 Slot Id : <461> +12:51:21 Transaction Type : RESPONSE +12:51:21 Received From : +12:51:21 ============================================================================ +12:51:21 FNo. Len. Field Value +12:51:21 ============================================================================ +12:51:21 [ 1] [ 4] [0810] +12:51:21 [ 7] [ 10] [0320054912] +12:51:21 [ 11] [ 6] [064685] +12:51:21 [ 37] [ 12] [579120646850] +12:51:21 [ 39] [ 2] [00] +12:51:21 [ 70] [ 3] [810] +12:51:21 ============================================================================ +12:51:21 Calculate Source COMM Id = 4 +12:51:21 ============================================================================ +12:51:21 + + +waiting on router queue for slot.... +12:51:30 ============================================================================ +12:51:30 Slot Id : <37> +12:51:30 Transaction Type : REQUEST +12:51:30 Received From : +12:51:30 ============================================================================ +12:51:30 FNo. Len. Field Value +12:51:30 ============================================================================ +12:51:30 [ 1] [ 4] [0800] +12:51:30 [ 2] [ 5] [02531] +12:51:30 [ 3] [ 6] [579128] +12:51:30 [ 7] [ 10] [0320055130] +12:51:30 [ 11] [ 6] [807158] +12:51:30 [ 15] [ 10] [0320055130] +12:51:30 [ 37] [ 11] [57912807158] +12:51:30 [ 70] [ 3] [001] +12:51:30 ============================================================================ +12:51:30 + + +waiting on router queue for slot.... +12:51:30 ============================================================================ +12:51:30 Slot Id : <37> +12:51:30 Transaction Type : RESPONSE +12:51:30 Received From : +12:51:30 ============================================================================ +12:51:30 FNo. Len. Field Value +12:51:30 ============================================================================ +12:51:30 [ 1] [ 4] [0810] +12:51:30 [ 7] [ 10] [0320055130] +12:51:30 [ 11] [ 6] [807158] +12:51:30 [ 15] [ 4] [0320] +12:51:30 [ 37] [ 12] [57912807158] +12:51:30 [ 39] [ 2] [00] +12:51:30 [ 70] [ 3] [001] +12:51:30 ============================================================================ +12:51:30 Sending to : +12:51:30 ============================================================================ +12:51:30 + + +waiting on router queue for slot.... +12:51:33 ============================================================================ +12:51:33 Slot Id : <30> +12:51:33 Transaction Type : REQUEST +12:51:33 Received From : +12:51:33 ============================================================================ +12:51:33 FNo. Len. Field Value +12:51:33 ============================================================================ +12:51:33 [ 1] [ 4] [0800] +12:51:33 [ 7] [ 10] [0320055041] +12:51:33 [ 11] [ 6] [156406] +12:51:33 [ 70] [ 3] [301] +12:51:33 ============================================================================ +12:51:33 + + +waiting on router queue for slot.... +12:51:33 Sending to : +12:51:33 ============================================================================ +12:51:33 ============================================================================ +12:51:33 Slot Id : <30> +12:51:33 Transaction Type : RESPONSE +12:51:33 Received From : +12:51:33 ============================================================================ +12:51:33 FNo. Len. Field Value +12:51:33 ============================================================================ +12:51:33 [ 1] [ 4] [0810] +12:51:33 [ 7] [ 10] [0320055041] +12:51:33 [ 11] [ 6] [156406] +12:51:33 [ 39] [ 2] [00] +12:51:33 [ 70] [ 3] [301] +12:51:33 ============================================================================ +12:51:33 Calculate Source COMM Id = 2 +12:51:33 ============================================================================ +12:51:33 + + +waiting on router queue for slot.... +12:51:36 ============================================================================ +12:51:36 Slot Id : <9> +12:51:36 Transaction Type : REQUEST +12:51:36 Received From : +12:51:36 ============================================================================ +12:51:36 FNo. Len. Field Value +12:51:36 ============================================================================ +12:51:36 [ 1] [ 4] [0800] +12:51:36 [ 7] [ 10] [0320125123] +12:51:36 [ 11] [ 6] [058755] +12:51:36 [ 37] [ 12] [507912058755] +12:51:36 [ 70] [ 3] [ ] +12:51:36 ============================================================================ +12:51:36 + + +waiting on router queue for slot.... +12:51:36 Sending to : +12:51:36 ============================================================================ +12:51:36 ============================================================================ +12:51:36 Slot Id : <9> +12:51:36 Transaction Type : RESPONSE +12:51:36 Received From : +12:51:36 ============================================================================ +12:51:36 FNo. Len. Field Value +12:51:36 ============================================================================ +12:51:36 [ 1] [ 4] [0810] +12:51:36 [ 7] [ 10] [0320125123] +12:51:36 [ 11] [ 6] [058755] +12:51:36 [ 37] [ 12] [507912058755] +12:51:36 [ 39] [ 2] [91] +12:51:36 [ 70] [ 3] [ ] +12:51:36 ============================================================================ +12:51:36 Calculate Source COMM Id = 3 +12:51:36 ============================================================================ +12:51:36 + + +waiting on router queue for slot.... +12:51:46 ============================================================================ +12:51:46 Slot Id : <36> +12:51:46 Transaction Type : REQUEST +12:51:46 Received From : +12:51:46 ============================================================================ +12:51:46 FNo. Len. Field Value +12:51:46 ============================================================================ +12:51:46 [ 1] [ 4] [0200] +12:51:46 [ 2] [ 16] [2206990000113787] +12:51:46 [ 3] [ 6] [011000] +12:51:46 [ 4] [ 12] [000010000000] +12:51:46 [ 7] [ 10] [0320125141] +12:51:46 [ 11] [ 6] [749874] +12:51:46 [ 12] [ 6] [125141] +12:51:46 [ 13] [ 4] [0320] +12:51:46 [ 15] [ 4] [0320] +12:51:46 [ 18] [ 4] [6011] +12:51:46 [ 22] [ 3] [900] +12:51:46 [ 25] [ 2] [02] +12:51:46 [ 28] [ 9] [D00002000] +12:51:46 [ 32] [ 6] [621354] +12:51:46 [ 35] [ 32] [2206990000113787=980112617899345] +12:51:46 [ 37] [ 12] [507904119873] +12:51:46 [ 41] [ 8] [08000800] +12:51:46 [ 42] [ 15] [NATIVE ] +12:51:46 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:51:46 [ 49] [ 3] [418] +12:51:46 [ 52] [ 16] [196ABF66FAC24C0A] +12:51:46 ============================================================================ +12:51:46 + + +waiting on router queue for slot.... +12:51:46 Sending to : +12:51:46 ============================================================================ +12:51:46 Sending to : +12:51:46 ============================================================================ +12:51:46 ============================================================================ +12:51:46 Slot Id : <36> +12:51:46 Transaction Type : REQUEST +12:51:46 Received From : +12:51:46 ============================================================================ +12:51:46 FNo. Len. Field Value +12:51:46 ============================================================================ +12:51:46 [ 1] [ 4] [0200] +12:51:46 [ 2] [ 16] [2206990000113787] +12:51:46 [ 3] [ 6] [011000] +12:51:46 [ 4] [ 12] [000010000000] +12:51:46 [ 7] [ 10] [0320125141] +12:51:46 [ 11] [ 6] [749874] +12:51:46 [ 12] [ 6] [125141] +12:51:46 [ 13] [ 4] [0320] +12:51:46 [ 15] [ 4] [0320] +12:51:46 [ 18] [ 4] [6011] +12:51:46 [ 22] [ 3] [900] +12:51:46 [ 25] [ 2] [02] +12:51:46 [ 28] [ 9] [D00002000] +12:51:46 [ 32] [ 6] [621354] +12:51:46 [ 35] [ 32] [2206990000113787=980112617899345] +12:51:46 [ 37] [ 12] [507904119873] +12:51:46 [ 41] [ 8] [08000800] +12:51:46 [ 42] [ 15] [NATIVE ] +12:51:46 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:51:46 [ 49] [ 3] [418] +12:51:46 [ 52] [ 16] [196ABF66FAC24C0A] +12:51:46 ============================================================================ +12:51:46 + + +waiting on router queue for slot.... +12:51:46 Sending to : +12:51:46 ============================================================================ +12:51:46 ============================================================================ +12:51:46 Slot Id : <36> +12:51:46 Transaction Type : REQUEST +12:51:46 Received From : +12:51:46 ============================================================================ +12:51:46 FNo. Len. Field Value +12:51:46 ============================================================================ +12:51:46 [ 1] [ 4] [0200] +12:51:46 [ 2] [ 16] [2206990000113787] +12:51:46 [ 3] [ 6] [011000] +12:51:46 [ 4] [ 12] [000010000000] +12:51:46 [ 7] [ 10] [0320125141] +12:51:46 [ 11] [ 6] [749874] +12:51:46 [ 12] [ 6] [125141] +12:51:46 [ 13] [ 4] [0320] +12:51:46 [ 15] [ 4] [0320] +12:51:46 [ 18] [ 4] [6011] +12:51:46 [ 22] [ 3] [900] +12:51:46 [ 25] [ 2] [02] +12:51:46 [ 28] [ 9] [D00002000] +12:51:46 [ 32] [ 6] [621354] +12:51:46 [ 35] [ 32] [2206990000113787=980112617899345] +12:51:46 [ 37] [ 12] [507904119873] +12:51:46 [ 41] [ 8] [08000800] +12:51:46 [ 42] [ 15] [NATIVE ] +12:51:46 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:51:46 [ 49] [ 3] [418] +12:51:46 [ 52] [ 16] [DCBA0A5EA3FC2BEF] +12:51:46 ============================================================================ +12:51:46 + + +waiting on router queue for slot.... +12:51:46 Sending to : <1> +12:51:46 ============================================================================ +12:51:46 ============================================================================ +12:51:46 Slot Id : <45> +12:51:46 Transaction Type : REQUEST +12:51:46 Received From : +12:51:46 ============================================================================ +12:51:46 FNo. Len. Field Value +12:51:46 ============================================================================ +12:51:46 [ 1] [ 4] [0800] +12:51:46 [ 7] [ 10] [0320055054] +12:51:46 [ 11] [ 6] [156407] +12:51:46 [ 70] [ 3] [301] +12:51:46 ============================================================================ +12:51:46 + + +waiting on router queue for slot.... +12:51:46 Sending to : +12:51:46 ============================================================================ +12:51:46 ============================================================================ +12:51:46 Slot Id : <45> +12:51:46 Transaction Type : RESPONSE +12:51:46 Received From : +12:51:46 ============================================================================ +12:51:46 FNo. Len. Field Value +12:51:46 ============================================================================ +12:51:46 [ 1] [ 4] [0810] +12:51:46 [ 7] [ 10] [0320055054] +12:51:46 [ 11] [ 6] [156407] +12:51:46 [ 39] [ 2] [00] +12:51:46 [ 70] [ 3] [301] +12:51:46 ============================================================================ +12:51:46 Calculate Source COMM Id = 2 +12:51:46 ============================================================================ +12:51:46 + + +waiting on router queue for slot.... +12:51:48 ============================================================================ +12:51:48 Slot Id : <36> +12:51:48 Transaction Type : RESPONSE +12:51:48 Received From : +12:51:48 ============================================================================ +12:51:48 FNo. Len. Field Value +12:51:48 ============================================================================ +12:51:48 [ 1] [ 4] [0210] +12:51:48 [ 2] [ 16] [2206990000113787] +12:51:48 [ 3] [ 6] [011000] +12:51:48 [ 4] [ 12] [000010000000] +12:51:48 [ 7] [ 10] [0320125141] +12:51:48 [ 11] [ 6] [749874] +12:51:48 [ 12] [ 6] [125141] +12:51:48 [ 13] [ 4] [0320] +12:51:48 [ 15] [ 4] [0320] +12:51:48 [ 18] [ 4] [6011] +12:51:48 [ 32] [ 6] [621354] +12:51:48 [ 35] [ 32] [2206990000113787=980112617899345] +12:51:48 [ 37] [ 12] [507904119873] +12:51:48 [ 38] [ 6] [607510] +12:51:48 [ 39] [ 2] [00] +12:51:48 [ 41] [ 8] [08000800] +12:51:48 [ 49] [ 3] [418] +12:51:48 [ 54] [ 40] [1001418C0001233616001002418C000123361600] +12:51:48 ============================================================================ +12:51:48 Sending to : +12:51:48 ============================================================================ +12:51:48 + + +waiting on router queue for slot.... +12:51:50 ============================================================================ +12:51:50 Slot Id : <36> +12:51:50 Transaction Type : RESPONSE +12:51:50 Received From : +12:51:50 ============================================================================ +12:51:50 FNo. Len. Field Value +12:51:50 ============================================================================ +12:51:50 [ 1] [ 4] [0210] +12:51:50 [ 2] [ 16] [2206990000113787] +12:51:50 [ 3] [ 6] [011000] +12:51:50 [ 4] [ 12] [000010000000] +12:51:50 [ 7] [ 10] [0320125141] +12:51:50 [ 11] [ 6] [749874] +12:51:50 [ 12] [ 6] [125141] +12:51:50 [ 13] [ 4] [0320] +12:51:50 [ 15] [ 4] [0320] +12:51:50 [ 18] [ 4] [6011] +12:51:50 [ 32] [ 6] [621354] +12:51:50 [ 35] [ 32] [2206990000113787=980112617899345] +12:51:50 [ 37] [ 12] [507904119873] +12:51:50 [ 38] [ 6] [607510] +12:51:50 [ 39] [ 2] [00] +12:51:50 [ 41] [ 8] [08000800] +12:51:50 [ 49] [ 3] [418] +12:51:50 [ 54] [ 40] [1001418C0001233616001002418C000123361600] +12:51:50 ============================================================================ +12:51:50 Calculate Source COMM Id = 0 +12:51:50 ============================================================================ +12:51:50 + + +waiting on router queue for slot.... +12:51:57 ============================================================================ +12:51:57 Slot Id : <497> +12:51:57 Transaction Type : REQUEST +12:51:57 Received From : +12:51:57 ============================================================================ +12:51:57 FNo. Len. Field Value +12:51:57 ============================================================================ +12:51:57 [ 1] [ 4] [0800] +12:51:57 [ 7] [ 10] [0320055104] +12:51:57 [ 11] [ 6] [156408] +12:51:57 [ 70] [ 3] [301] +12:51:57 ============================================================================ +12:51:57 + + +waiting on router queue for slot.... +12:51:57 Sending to : +12:51:57 ============================================================================ +12:51:57 ============================================================================ +12:51:57 Slot Id : <497> +12:51:57 Transaction Type : RESPONSE +12:51:57 Received From : +12:51:57 ============================================================================ +12:51:57 FNo. Len. Field Value +12:51:57 ============================================================================ +12:51:57 [ 1] [ 4] [0810] +12:51:57 [ 7] [ 10] [0320055104] +12:51:57 [ 11] [ 6] [156408] +12:51:57 [ 39] [ 2] [00] +12:51:57 [ 70] [ 3] [301] +12:51:57 ============================================================================ +12:51:57 Calculate Source COMM Id = 2 +12:51:57 ============================================================================ +12:51:57 + + +waiting on router queue for slot.... +12:52:12 ============================================================================ +12:52:12 Slot Id : <18> +12:52:12 Transaction Type : REQUEST +12:52:12 Received From : +12:52:12 ============================================================================ +12:52:12 FNo. Len. Field Value +12:52:12 ============================================================================ +12:52:12 [ 1] [ 4] [0800] +12:52:12 [ 7] [ 10] [0320055120] +12:52:12 [ 11] [ 6] [156409] +12:52:12 [ 70] [ 3] [301] +12:52:12 ============================================================================ +12:52:12 + + +waiting on router queue for slot.... +12:52:12 Sending to : +12:52:12 ============================================================================ +12:52:12 ============================================================================ +12:52:12 Slot Id : <18> +12:52:12 Transaction Type : RESPONSE +12:52:12 Received From : +12:52:12 ============================================================================ +12:52:12 FNo. Len. Field Value +12:52:12 ============================================================================ +12:52:12 [ 1] [ 4] [0810] +12:52:12 [ 7] [ 10] [0320055120] +12:52:12 [ 11] [ 6] [156409] +12:52:12 [ 39] [ 2] [00] +12:52:12 [ 70] [ 3] [301] +12:52:12 ============================================================================ +12:52:12 Calculate Source COMM Id = 2 +12:52:12 ============================================================================ +12:52:12 + + +waiting on router queue for slot.... +12:52:24 ============================================================================ +12:52:24 Slot Id : <40> +12:52:24 Transaction Type : REQUEST +12:52:24 Received From : +12:52:24 ============================================================================ +12:52:24 FNo. Len. Field Value +12:52:24 ============================================================================ +12:52:24 [ 1] [ 4] [0800] +12:52:24 [ 7] [ 10] [0320055131] +12:52:24 [ 11] [ 6] [156410] +12:52:24 [ 70] [ 3] [301] +12:52:24 ============================================================================ +12:52:24 + + +waiting on router queue for slot.... +12:52:24 Sending to : +12:52:24 ============================================================================ +12:52:24 ============================================================================ +12:52:24 Slot Id : <40> +12:52:24 Transaction Type : RESPONSE +12:52:24 Received From : +12:52:24 ============================================================================ +12:52:24 FNo. Len. Field Value +12:52:24 ============================================================================ +12:52:24 [ 1] [ 4] [0810] +12:52:24 [ 7] [ 10] [0320055131] +12:52:24 [ 11] [ 6] [156410] +12:52:24 [ 39] [ 2] [00] +12:52:24 [ 70] [ 3] [301] +12:52:24 ============================================================================ +12:52:24 Calculate Source COMM Id = 2 +12:52:24 ============================================================================ +12:52:24 + + +waiting on router queue for slot.... +12:52:32 ============================================================================ +12:52:32 Slot Id : <467> +12:52:32 Transaction Type : REQUEST +12:52:32 Received From : +12:52:32 ============================================================================ +12:52:32 FNo. Len. Field Value +12:52:32 ============================================================================ +12:52:32 [ 1] [ 4] [0800] +12:52:32 [ 2] [ 5] [02531] +12:52:32 [ 3] [ 6] [579128] +12:52:32 [ 7] [ 10] [0320055232] +12:52:32 [ 11] [ 6] [807159] +12:52:32 [ 15] [ 10] [0320055232] +12:52:32 [ 37] [ 11] [57912807159] +12:52:32 [ 70] [ 3] [001] +12:52:32 ============================================================================ +12:52:32 + + +waiting on router queue for slot.... +12:52:32 ============================================================================ +12:52:32 Slot Id : <467> +12:52:32 Transaction Type : RESPONSE +12:52:32 Received From : +12:52:32 ============================================================================ +12:52:32 FNo. Len. Field Value +12:52:32 ============================================================================ +12:52:32 [ 1] [ 4] [0810] +12:52:32 [ 7] [ 10] [0320055232] +12:52:32 [ 11] [ 6] [807159] +12:52:32 [ 15] [ 4] [0320] +12:52:32 [ 37] [ 12] [57912807159] +12:52:32 [ 39] [ 2] [00] +12:52:32 [ 70] [ 3] [001] +12:52:32 ============================================================================ +12:52:32 Sending to : +12:52:32 ============================================================================ +12:52:32 + + +waiting on router queue for slot.... +12:52:34 ============================================================================ +12:52:34 Slot Id : <28> +12:52:34 Transaction Type : REQUEST +12:52:34 Received From : +12:52:34 ============================================================================ +12:52:34 FNo. Len. Field Value +12:52:34 ============================================================================ +12:52:34 [ 1] [ 4] [0200] +12:52:34 [ 2] [ 16] [6213543000028240] +12:52:34 [ 3] [ 6] [011000] +12:52:34 [ 4] [ 12] [000050000000] +12:52:34 [ 7] [ 10] [0320130021] +12:52:34 [ 11] [ 6] [177356] +12:52:34 [ 12] [ 6] [130021] +12:52:34 [ 13] [ 4] [0320] +12:52:34 [ 14] [ 4] [4912] +12:52:34 [ 15] [ 4] [0320] +12:52:34 [ 18] [ 4] [6011] +12:52:34 [ 22] [ 3] [900] +12:52:34 [ 25] [ 2] [02] +12:52:34 [ 28] [ 9] [D00002000] +12:52:34 [ 32] [ 6] [220699] +12:52:34 [ 35] [ 32] [6213543000028240=491212012824368] +12:52:34 [ 37] [ 12] [507900010231] +12:52:34 [ 41] [ 8] [01000100] +12:52:34 [ 42] [ 15] [APTRA ] +12:52:34 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:52:34 [ 49] [ 3] [418] +12:52:34 [ 52] [ 16] [2F7AB03DE44C0C45] +12:52:34 ============================================================================ +12:52:34 + + +waiting on router queue for slot.... +12:52:34 Sending to : +12:52:34 ============================================================================ +12:52:34 Sending to : +12:52:34 ============================================================================ +12:52:34 ============================================================================ +12:52:34 Slot Id : <28> +12:52:34 Transaction Type : REQUEST +12:52:34 Received From : +12:52:34 ============================================================================ +12:52:34 FNo. Len. Field Value +12:52:34 ============================================================================ +12:52:34 [ 1] [ 4] [0200] +12:52:34 [ 2] [ 16] [6213543000028240] +12:52:34 [ 3] [ 6] [011000] +12:52:34 [ 4] [ 12] [000050000000] +12:52:34 [ 7] [ 10] [0320130021] +12:52:34 [ 11] [ 6] [177356] +12:52:34 [ 12] [ 6] [130021] +12:52:34 [ 13] [ 4] [0320] +12:52:34 [ 14] [ 4] [4912] +12:52:34 [ 15] [ 4] [0320] +12:52:34 [ 18] [ 4] [6011] +12:52:34 [ 22] [ 3] [900] +12:52:34 [ 25] [ 2] [02] +12:52:34 [ 28] [ 9] [D00002000] +12:52:34 [ 32] [ 6] [220699] +12:52:34 [ 35] [ 32] [6213543000028240=491212012824368] +12:52:34 [ 37] [ 12] [507900010231] +12:52:34 [ 41] [ 8] [01000100] +12:52:34 [ 42] [ 15] [APTRA ] +12:52:34 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:52:34 [ 49] [ 3] [418] +12:52:34 [ 52] [ 16] [2F7AB03DE44C0C45] +12:52:34 ============================================================================ +12:52:34 + + +waiting on router queue for slot.... +12:52:34 Sending to : +12:52:34 ============================================================================ +12:52:34 ============================================================================ +12:52:34 Slot Id : <28> +12:52:34 Transaction Type : REQUEST +12:52:34 Received From : +12:52:34 ============================================================================ +12:52:34 FNo. Len. Field Value +12:52:34 ============================================================================ +12:52:34 [ 1] [ 4] [0200] +12:52:34 [ 2] [ 16] [6213543000028240] +12:52:34 [ 3] [ 6] [011000] +12:52:34 [ 4] [ 12] [000050000000] +12:52:34 [ 7] [ 10] [0320130021] +12:52:34 [ 11] [ 6] [177356] +12:52:34 [ 12] [ 6] [130021] +12:52:34 [ 13] [ 4] [0320] +12:52:34 [ 14] [ 4] [4912] +12:52:34 [ 15] [ 4] [0320] +12:52:34 [ 18] [ 4] [6011] +12:52:34 [ 22] [ 3] [900] +12:52:34 [ 25] [ 2] [02] +12:52:34 [ 28] [ 9] [D00002000] +12:52:34 [ 32] [ 6] [220699] +12:52:34 [ 35] [ 32] [6213543000028240=491212012824368] +12:52:34 [ 37] [ 12] [507900010231] +12:52:34 [ 41] [ 8] [01000100] +12:52:34 [ 42] [ 15] [APTRA ] +12:52:34 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:52:34 [ 49] [ 3] [418] +12:52:34 [ 52] [ 16] [B0E8F09724B29D30] +12:52:34 ============================================================================ +12:52:34 + + +waiting on router queue for slot.... +12:52:34 Sending to : <0> +12:52:34 ============================================================================ +12:52:35 ============================================================================ +12:52:35 Slot Id : <28> +12:52:35 Transaction Type : RESPONSE +12:52:35 Received From : +12:52:35 ============================================================================ +12:52:35 FNo. Len. Field Value +12:52:35 ============================================================================ +12:52:35 [ 1] [ 4] [0210] +12:52:35 [ 2] [ 16] [6213543000028240] +12:52:35 [ 3] [ 6] [011000] +12:52:35 [ 4] [ 12] [000050000000] +12:52:35 [ 7] [ 10] [0320130021] +12:52:35 [ 11] [ 6] [177356] +12:52:35 [ 12] [ 6] [130021] +12:52:35 [ 13] [ 4] [0320] +12:52:35 [ 15] [ 4] [0320] +12:52:35 [ 18] [ 4] [6011] +12:52:35 [ 32] [ 6] [220699] +12:52:35 [ 35] [ 32] [6213543000028240=491212012824368] +12:52:35 [ 37] [ 12] [507900010231] +12:52:35 [ 38] [ 6] [070487] +12:52:35 [ 39] [ 2] [00] +12:52:35 [ 41] [ 8] [01000100] +12:52:35 [ 49] [ 3] [418] +12:52:35 [ 54] [ 40] [1001418C0001628459311002418C000162845931] +12:52:35 ============================================================================ +12:52:35 Sending to : +12:52:35 ============================================================================ +12:52:35 + + +waiting on router queue for slot.... +12:52:35 ============================================================================ +12:52:35 Slot Id : <8> +12:52:35 Transaction Type : REQUEST +12:52:35 Received From : +12:52:35 ============================================================================ +12:52:35 FNo. Len. Field Value +12:52:35 ============================================================================ +12:52:35 [ 1] [ 4] [0800] +12:52:35 [ 7] [ 10] [0320055143] +12:52:35 [ 11] [ 6] [156411] +12:52:35 [ 70] [ 3] [301] +12:52:35 ============================================================================ +12:52:35 + + +waiting on router queue for slot.... +12:52:35 Sending to : +12:52:35 ============================================================================ +12:52:35 ============================================================================ +12:52:35 Slot Id : <8> +12:52:35 Transaction Type : RESPONSE +12:52:35 Received From : +12:52:35 ============================================================================ +12:52:35 FNo. Len. Field Value +12:52:35 ============================================================================ +12:52:35 [ 1] [ 4] [0810] +12:52:35 [ 7] [ 10] [0320055143] +12:52:35 [ 11] [ 6] [156411] +12:52:35 [ 39] [ 2] [00] +12:52:35 [ 70] [ 3] [301] +12:52:35 ============================================================================ +12:52:35 Calculate Source COMM Id = 2 +12:52:35 ============================================================================ +12:52:35 + + +waiting on router queue for slot.... +12:52:36 ============================================================================ +12:52:36 Slot Id : <28> +12:52:36 Transaction Type : RESPONSE +12:52:36 Received From : +12:52:36 ============================================================================ +12:52:36 FNo. Len. Field Value +12:52:36 ============================================================================ +12:52:36 [ 1] [ 4] [0210] +12:52:36 [ 2] [ 16] [6213543000028240] +12:52:36 [ 3] [ 6] [011000] +12:52:36 [ 4] [ 12] [000050000000] +12:52:36 [ 7] [ 10] [0320130021] +12:52:36 [ 11] [ 6] [177356] +12:52:36 [ 12] [ 6] [130021] +12:52:36 [ 13] [ 4] [0320] +12:52:36 [ 15] [ 4] [0320] +12:52:36 [ 18] [ 4] [6011] +12:52:36 [ 32] [ 6] [220699] +12:52:36 [ 35] [ 32] [6213543000028240=491212012824368] +12:52:36 [ 37] [ 12] [507900010231] +12:52:36 [ 38] [ 6] [070487] +12:52:36 [ 39] [ 2] [00] +12:52:36 [ 41] [ 8] [01000100] +12:52:36 [ 49] [ 3] [418] +12:52:36 [ 54] [ 40] [1001418C0001628459311002418C000162845931] +12:52:36 ============================================================================ +12:52:36 Calculate Source COMM Id = 1 +12:52:36 ============================================================================ +12:52:36 + + +waiting on router queue for slot.... +12:52:42 ============================================================================ +12:52:42 Slot Id : <43> +12:52:42 Transaction Type : REQUEST +12:52:42 Received From : +12:52:42 ============================================================================ +12:52:42 FNo. Len. Field Value +12:52:42 ============================================================================ +12:52:42 [ 1] [ 4] [0200] +12:52:42 [ 2] [ 16] [6213544001951166] +12:52:42 [ 3] [ 6] [301000] +12:52:42 [ 4] [ 12] [000000000000] +12:52:42 [ 7] [ 10] [0320125303] +12:52:42 [ 11] [ 6] [205903] +12:52:42 [ 12] [ 6] [124847] +12:52:42 [ 13] [ 4] [0320] +12:52:42 [ 14] [ 4] [4912] +12:52:42 [ 15] [ 4] [0320] +12:52:42 [ 18] [ 4] [6011] +12:52:42 [ 19] [ 3] [418] +12:52:42 [ 22] [ 3] [021] +12:52:42 [ 25] [ 2] [01] +12:52:42 [ 28] [ 9] [D00000000] +12:52:42 [ 32] [ 6] [198901] +12:52:42 [ 35] [ 32] [6213544001951166=491212015116001] +12:52:42 [ 37] [ 12] [507912205903] +12:52:42 [ 41] [ 8] [01529001] +12:52:42 [ 42] [ 15] [000000041529001] +12:52:42 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +12:52:42 [ 49] [ 3] [418] +12:52:42 [ 52] [ 16] [2AAC8A411485C499] +12:52:42 ============================================================================ +12:52:42 + + +waiting on router queue for slot.... +12:52:42 Sending to : +12:52:42 ============================================================================ +12:52:42 Sending to : +12:52:42 ============================================================================ +12:52:43 ============================================================================ +12:52:43 Slot Id : <43> +12:52:43 Transaction Type : REQUEST +12:52:43 Received From : +12:52:43 ============================================================================ +12:52:43 FNo. Len. Field Value +12:52:43 ============================================================================ +12:52:43 [ 1] [ 4] [0200] +12:52:43 [ 2] [ 16] [6213544001951166] +12:52:43 [ 3] [ 6] [301000] +12:52:43 [ 4] [ 12] [000000000000] +12:52:43 [ 7] [ 10] [0320125303] +12:52:43 [ 11] [ 6] [205903] +12:52:43 [ 12] [ 6] [124847] +12:52:43 [ 13] [ 4] [0320] +12:52:43 [ 14] [ 4] [4912] +12:52:43 [ 15] [ 4] [0320] +12:52:43 [ 18] [ 4] [6011] +12:52:43 [ 19] [ 3] [418] +12:52:43 [ 22] [ 3] [021] +12:52:43 [ 25] [ 2] [01] +12:52:43 [ 28] [ 9] [D00000000] +12:52:43 [ 32] [ 6] [198901] +12:52:43 [ 35] [ 32] [6213544001951166=491212015116001] +12:52:43 [ 37] [ 12] [507912205903] +12:52:43 [ 41] [ 8] [01529001] +12:52:43 [ 42] [ 15] [000000041529001] +12:52:43 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +12:52:43 [ 49] [ 3] [418] +12:52:43 [ 52] [ 16] [2AAC8A411485C499] +12:52:43 ============================================================================ +12:52:43 + + +waiting on router queue for slot.... +12:52:43 Sending to : +12:52:43 ============================================================================ +12:52:43 ============================================================================ +12:52:43 Slot Id : <43> +12:52:43 Transaction Type : REQUEST +12:52:43 Received From : +12:52:43 ============================================================================ +12:52:43 FNo. Len. Field Value +12:52:43 ============================================================================ +12:52:43 [ 1] [ 4] [0200] +12:52:43 [ 2] [ 16] [6213544001951166] +12:52:43 [ 3] [ 6] [301000] +12:52:43 [ 4] [ 12] [000000000000] +12:52:43 [ 7] [ 10] [0320125303] +12:52:43 [ 11] [ 6] [205903] +12:52:43 [ 12] [ 6] [124847] +12:52:43 [ 13] [ 4] [0320] +12:52:43 [ 14] [ 4] [4912] +12:52:43 [ 15] [ 4] [0320] +12:52:43 [ 18] [ 4] [6011] +12:52:43 [ 19] [ 3] [418] +12:52:43 [ 22] [ 3] [021] +12:52:43 [ 25] [ 2] [01] +12:52:43 [ 28] [ 9] [D00000000] +12:52:43 [ 32] [ 6] [198901] +12:52:43 [ 35] [ 32] [6213544001951166=491212015116001] +12:52:43 [ 37] [ 12] [507912205903] +12:52:43 [ 41] [ 8] [01529001] +12:52:43 [ 42] [ 15] [000000041529001] +12:52:43 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +12:52:43 [ 49] [ 3] [418] +12:52:43 [ 52] [ 16] [3BF7B287B273E2BA] +12:52:43 ============================================================================ +12:52:43 + + +waiting on router queue for slot.... +12:52:43 Sending to : <0> +12:52:43 ============================================================================ +12:52:43 ============================================================================ +12:52:43 Slot Id : <43> +12:52:43 Transaction Type : RESPONSE +12:52:43 Received From : +12:52:43 ============================================================================ +12:52:43 FNo. Len. Field Value +12:52:43 ============================================================================ +12:52:43 [ 1] [ 4] [0210] +12:52:43 [ 2] [ 16] [6213544001951166] +12:52:43 [ 3] [ 6] [301000] +12:52:43 [ 4] [ 12] [000000000000] +12:52:43 [ 7] [ 10] [0320125303] +12:52:43 [ 11] [ 6] [205903] +12:52:43 [ 12] [ 6] [124847] +12:52:43 [ 13] [ 4] [0320] +12:52:43 [ 15] [ 4] [0320] +12:52:43 [ 18] [ 4] [6011] +12:52:43 [ 19] [ 3] [418] +12:52:43 [ 22] [ 3] [021] +12:52:43 [ 32] [ 6] [198901] +12:52:43 [ 35] [ 32] [6213544001951166=491212015116001] +12:52:43 [ 37] [ 12] [507912205903] +12:52:43 [ 38] [ 6] [125239] +12:52:43 [ 39] [ 2] [55] +12:52:43 [ 41] [ 8] [01529001] +12:52:43 [ 49] [ 3] [418] +12:52:43 ============================================================================ +12:52:43 Sending to : +12:52:43 ============================================================================ +12:52:43 + + +waiting on router queue for slot.... +12:52:44 ============================================================================ +12:52:44 Slot Id : <43> +12:52:44 Transaction Type : RESPONSE +12:52:44 Received From : +12:52:44 ============================================================================ +12:52:44 FNo. Len. Field Value +12:52:44 ============================================================================ +12:52:44 [ 1] [ 4] [0210] +12:52:44 [ 2] [ 16] [6213544001951166] +12:52:44 [ 3] [ 6] [301000] +12:52:44 [ 4] [ 12] [000000000000] +12:52:44 [ 7] [ 10] [0320125303] +12:52:44 [ 11] [ 6] [205903] +12:52:44 [ 12] [ 6] [124847] +12:52:44 [ 13] [ 4] [0320] +12:52:44 [ 15] [ 4] [0320] +12:52:44 [ 18] [ 4] [6011] +12:52:44 [ 19] [ 3] [418] +12:52:44 [ 22] [ 3] [021] +12:52:44 [ 32] [ 6] [198901] +12:52:44 [ 35] [ 32] [6213544001951166=491212015116001] +12:52:44 [ 37] [ 12] [507912205903] +12:52:44 [ 38] [ 6] [125239] +12:52:44 [ 39] [ 2] [55] +12:52:44 [ 41] [ 8] [01529001] +12:52:44 [ 49] [ 3] [418] +12:52:44 ============================================================================ +12:52:44 Calculate Source COMM Id = 5 +12:52:44 ============================================================================ +12:52:44 + + +waiting on router queue for slot.... +12:52:51 ============================================================================ +12:52:51 Slot Id : <52> +12:52:51 Transaction Type : REQUEST +12:52:51 Received From : +12:52:51 ============================================================================ +12:52:51 FNo. Len. Field Value +12:52:51 ============================================================================ +12:52:51 [ 1] [ 4] [0800] +12:52:51 [ 7] [ 10] [0320055158] +12:52:51 [ 11] [ 6] [156412] +12:52:51 [ 70] [ 3] [301] +12:52:51 ============================================================================ +12:52:51 + + +waiting on router queue for slot.... +12:52:51 Sending to : +12:52:51 ============================================================================ +12:52:51 ============================================================================ +12:52:51 Slot Id : <52> +12:52:51 Transaction Type : RESPONSE +12:52:51 Received From : +12:52:51 ============================================================================ +12:52:51 FNo. Len. Field Value +12:52:51 ============================================================================ +12:52:51 [ 1] [ 4] [0810] +12:52:51 [ 7] [ 10] [0320055158] +12:52:51 [ 11] [ 6] [156412] +12:52:51 [ 39] [ 2] [00] +12:52:51 [ 70] [ 3] [301] +12:52:51 ============================================================================ +12:52:51 Calculate Source COMM Id = 2 +12:52:51 ============================================================================ +12:52:51 + + +waiting on router queue for slot.... +12:53:05 ============================================================================ +12:53:05 Slot Id : <50> +12:53:05 Transaction Type : REQUEST +12:53:05 Received From : +12:53:05 ============================================================================ +12:53:05 FNo. Len. Field Value +12:53:05 ============================================================================ +12:53:05 [ 1] [ 4] [0800] +12:53:05 [ 7] [ 10] [0320055213] +12:53:05 [ 11] [ 6] [156413] +12:53:05 [ 70] [ 3] [301] +12:53:05 ============================================================================ +12:53:05 + + +waiting on router queue for slot.... +12:53:05 Sending to : +12:53:05 ============================================================================ +12:53:05 ============================================================================ +12:53:05 Slot Id : <50> +12:53:05 Transaction Type : RESPONSE +12:53:05 Received From : +12:53:05 ============================================================================ +12:53:05 FNo. Len. Field Value +12:53:05 ============================================================================ +12:53:05 [ 1] [ 4] [0810] +12:53:05 [ 7] [ 10] [0320055213] +12:53:05 [ 11] [ 6] [156413] +12:53:05 [ 39] [ 2] [00] +12:53:05 [ 70] [ 3] [301] +12:53:05 ============================================================================ +12:53:05 Calculate Source COMM Id = 2 +12:53:05 ============================================================================ +12:53:05 + + +waiting on router queue for slot.... +12:53:16 ============================================================================ +12:53:16 Slot Id : <25> +12:53:16 Transaction Type : REQUEST +12:53:16 Received From : +12:53:16 ============================================================================ +12:53:16 FNo. Len. Field Value +12:53:16 ============================================================================ +12:53:16 [ 1] [ 4] [0800] +12:53:16 [ 7] [ 10] [0320055223] +12:53:16 [ 11] [ 6] [156414] +12:53:16 [ 70] [ 3] [301] +12:53:16 ============================================================================ +12:53:16 + + +waiting on router queue for slot.... +12:53:16 Sending to : +12:53:16 ============================================================================ +12:53:16 ============================================================================ +12:53:16 Slot Id : <25> +12:53:16 Transaction Type : RESPONSE +12:53:16 Received From : +12:53:16 ============================================================================ +12:53:16 FNo. Len. Field Value +12:53:16 ============================================================================ +12:53:16 [ 1] [ 4] [0810] +12:53:16 [ 7] [ 10] [0320055223] +12:53:16 [ 11] [ 6] [156414] +12:53:16 [ 39] [ 2] [00] +12:53:16 [ 70] [ 3] [301] +12:53:16 ============================================================================ +12:53:16 Calculate Source COMM Id = 2 +12:53:16 ============================================================================ +12:53:16 + + +waiting on router queue for slot.... +12:53:18 ============================================================================ +12:53:18 Slot Id : <61> +12:53:18 Transaction Type : REQUEST +12:53:18 Received From : +12:53:18 ============================================================================ +12:53:18 FNo. Len. Field Value +12:53:18 ============================================================================ +12:53:18 [ 1] [ 4] [0200] +12:53:18 [ 2] [ 16] [6213548000308658] +12:53:18 [ 3] [ 6] [010000] +12:53:18 [ 4] [ 12] [000010000000] +12:53:18 [ 7] [ 10] [0320125109] +12:53:18 [ 11] [ 6] [945162] +12:53:18 [ 12] [ 6] [125109] +12:53:18 [ 13] [ 4] [0320] +12:53:18 [ 15] [ 4] [0320] +12:53:18 [ 18] [ 4] [6011] +12:53:18 [ 19] [ 3] [418] +12:53:18 [ 22] [ 3] [021] +12:53:18 [ 25] [ 2] [01] +12:53:18 [ 28] [ 9] [D00002000] +12:53:18 [ 32] [ 6] [668899] +12:53:18 [ 35] [ 32] [6213548000308658=180312010865401] +12:53:18 [ 37] [ 12] [507901262012] +12:53:18 [ 41] [ 8] [03206001] +12:53:18 [ 42] [ 15] [APT ] +12:53:18 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +12:53:18 [ 49] [ 3] [418] +12:53:18 [ 52] [ 16] [AE0591E2DDE202E9] +12:53:18 ============================================================================ +12:53:18 + + +waiting on router queue for slot.... +12:53:18 Sending to : +12:53:18 ============================================================================ +12:53:18 Sending to : +12:53:18 ============================================================================ +12:53:18 ============================================================================ +12:53:18 Slot Id : <61> +12:53:18 Transaction Type : REQUEST +12:53:18 Received From : +12:53:18 ============================================================================ +12:53:18 FNo. Len. Field Value +12:53:18 ============================================================================ +12:53:18 [ 1] [ 4] [0200] +12:53:18 [ 2] [ 16] [6213548000308658] +12:53:18 [ 3] [ 6] [010000] +12:53:18 [ 4] [ 12] [000010000000] +12:53:18 [ 7] [ 10] [0320125109] +12:53:18 [ 11] [ 6] [945162] +12:53:18 [ 12] [ 6] [125109] +12:53:18 [ 13] [ 4] [0320] +12:53:18 [ 15] [ 4] [0320] +12:53:18 [ 18] [ 4] [6011] +12:53:18 [ 19] [ 3] [418] +12:53:18 [ 22] [ 3] [021] +12:53:18 [ 25] [ 2] [01] +12:53:18 [ 28] [ 9] [D00002000] +12:53:18 [ 32] [ 6] [668899] +12:53:18 [ 35] [ 32] [6213548000308658=180312010865401] +12:53:18 [ 37] [ 12] [507901262012] +12:53:18 [ 41] [ 8] [03206001] +12:53:18 [ 42] [ 15] [APT ] +12:53:18 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +12:53:18 [ 49] [ 3] [418] +12:53:18 [ 52] [ 16] [AE0591E2DDE202E9] +12:53:18 ============================================================================ +12:53:18 + + +waiting on router queue for slot.... +12:53:18 Sending to : +12:53:18 ============================================================================ +12:53:18 ============================================================================ +12:53:18 Slot Id : <61> +12:53:18 Transaction Type : REQUEST +12:53:18 Received From : +12:53:18 ============================================================================ +12:53:18 FNo. Len. Field Value +12:53:18 ============================================================================ +12:53:18 [ 1] [ 4] [0200] +12:53:18 [ 2] [ 16] [6213548000308658] +12:53:18 [ 3] [ 6] [010000] +12:53:18 [ 4] [ 12] [000010000000] +12:53:18 [ 7] [ 10] [0320125109] +12:53:18 [ 11] [ 6] [945162] +12:53:18 [ 12] [ 6] [125109] +12:53:18 [ 13] [ 4] [0320] +12:53:18 [ 15] [ 4] [0320] +12:53:18 [ 18] [ 4] [6011] +12:53:18 [ 19] [ 3] [418] +12:53:18 [ 22] [ 3] [021] +12:53:18 [ 25] [ 2] [01] +12:53:18 [ 28] [ 9] [D00002000] +12:53:18 [ 32] [ 6] [668899] +12:53:18 [ 35] [ 32] [6213548000308658=180312010865401] +12:53:18 [ 37] [ 12] [507901262012] +12:53:18 [ 41] [ 8] [03206001] +12:53:18 [ 42] [ 15] [APT ] +12:53:18 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +12:53:18 [ 49] [ 3] [418] +12:53:18 [ 52] [ 16] [B4F348F3F6DCBBDE] +12:53:18 ============================================================================ +12:53:18 + + +waiting on router queue for slot.... +12:53:18 Sending to : <0> +12:53:18 ============================================================================ +12:53:19 ============================================================================ +12:53:19 Slot Id : <61> +12:53:19 Transaction Type : RESPONSE +12:53:19 Received From : +12:53:19 ============================================================================ +12:53:19 FNo. Len. Field Value +12:53:19 ============================================================================ +12:53:19 [ 1] [ 4] [0210] +12:53:19 [ 2] [ 16] [6213548000308658] +12:53:19 [ 3] [ 6] [010000] +12:53:19 [ 4] [ 12] [000010000000] +12:53:19 [ 7] [ 10] [0320125109] +12:53:19 [ 11] [ 6] [945162] +12:53:19 [ 12] [ 6] [125109] +12:53:19 [ 13] [ 4] [0320] +12:53:19 [ 15] [ 4] [0320] +12:53:19 [ 18] [ 4] [6011] +12:53:19 [ 19] [ 3] [418] +12:53:19 [ 32] [ 6] [668899] +12:53:19 [ 35] [ 32] [6213548000308658=180312010865401] +12:53:19 [ 37] [ 12] [507901262012] +12:53:19 [ 38] [ 6] [577675] +12:53:19 [ 39] [ 2] [00] +12:53:19 [ 41] [ 8] [03206001] +12:53:19 [ 49] [ 3] [418] +12:53:19 [ 54] [ 40] [0001418C0000107741650002418C000010774165] +12:53:19 ============================================================================ +12:53:19 Sending to : +12:53:19 ============================================================================ +12:53:19 + + +waiting on router queue for slot.... +12:53:20 ============================================================================ +12:53:20 Slot Id : <44> +12:53:20 Transaction Type : REQUEST +12:53:20 Received From : +12:53:20 ============================================================================ +12:53:20 FNo. Len. Field Value +12:53:20 ============================================================================ +12:53:20 [ 1] [ 4] [0200] +12:53:20 [ 2] [ 16] [6688990700182502] +12:53:20 [ 3] [ 6] [011000] +12:53:20 [ 4] [ 12] [000100000000] +12:53:20 [ 7] [ 10] [0320125316] +12:53:20 [ 11] [ 6] [750177] +12:53:20 [ 12] [ 6] [125316] +12:53:20 [ 13] [ 4] [0320] +12:53:20 [ 15] [ 4] [0320] +12:53:20 [ 18] [ 4] [6011] +12:53:20 [ 22] [ 3] [900] +12:53:20 [ 25] [ 2] [02] +12:53:20 [ 28] [ 9] [D00002000] +12:53:20 [ 32] [ 6] [621354] +12:53:20 [ 35] [ 37] [6688990700182502=43050071250217500000] +12:53:20 [ 37] [ 12] [507903177350] +12:53:20 [ 41] [ 8] [04002700] +12:53:20 [ 42] [ 15] [NATIVE ] +12:53:20 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +12:53:20 [ 49] [ 3] [418] +12:53:20 [ 52] [ 16] [F60CF5A81A349DFA] +12:53:20 ============================================================================ +12:53:20 + + +waiting on router queue for slot.... +12:53:20 Sending to : +12:53:20 ============================================================================ +12:53:20 Sending to : +12:53:20 ============================================================================ +12:53:20 ============================================================================ +12:53:20 Slot Id : <44> +12:53:20 Transaction Type : REQUEST +12:53:20 Received From : +12:53:20 ============================================================================ +12:53:20 FNo. Len. Field Value +12:53:20 ============================================================================ +12:53:20 [ 1] [ 4] [0200] +12:53:20 [ 2] [ 16] [6688990700182502] +12:53:20 [ 3] [ 6] [011000] +12:53:20 [ 4] [ 12] [000100000000] +12:53:20 [ 7] [ 10] [0320125316] +12:53:20 [ 11] [ 6] [750177] +12:53:20 [ 12] [ 6] [125316] +12:53:20 [ 13] [ 4] [0320] +12:53:20 [ 15] [ 4] [0320] +12:53:20 [ 18] [ 4] [6011] +12:53:20 [ 22] [ 3] [900] +12:53:20 [ 25] [ 2] [02] +12:53:20 [ 28] [ 9] [D00002000] +12:53:20 [ 32] [ 6] [621354] +12:53:20 [ 35] [ 37] [6688990700182502=43050071250217500000] +12:53:20 [ 37] [ 12] [507903177350] +12:53:20 [ 41] [ 8] [04002700] +12:53:20 [ 42] [ 15] [NATIVE ] +12:53:20 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +12:53:20 [ 49] [ 3] [418] +12:53:20 [ 52] [ 16] [F60CF5A81A349DFA] +12:53:20 ============================================================================ +12:53:20 + + +waiting on router queue for slot.... +12:53:20 Sending to : +12:53:20 ============================================================================ +12:53:20 ============================================================================ +12:53:20 Slot Id : <44> +12:53:20 Transaction Type : REQUEST +12:53:20 Received From : +12:53:20 ============================================================================ +12:53:20 FNo. Len. Field Value +12:53:20 ============================================================================ +12:53:20 [ 1] [ 4] [0200] +12:53:20 [ 2] [ 16] [6688990700182502] +12:53:20 [ 3] [ 6] [011000] +12:53:20 [ 4] [ 12] [000100000000] +12:53:20 [ 7] [ 10] [0320125316] +12:53:20 [ 11] [ 6] [750177] +12:53:20 [ 12] [ 6] [125316] +12:53:20 [ 13] [ 4] [0320] +12:53:20 [ 15] [ 4] [0320] +12:53:20 [ 18] [ 4] [6011] +12:53:20 [ 22] [ 3] [900] +12:53:20 [ 25] [ 2] [02] +12:53:20 [ 28] [ 9] [D00002000] +12:53:20 [ 32] [ 6] [621354] +12:53:20 [ 35] [ 37] [6688990700182502=43050071250217500000] +12:53:20 [ 37] [ 12] [507903177350] +12:53:20 [ 41] [ 8] [04002700] +12:53:20 [ 42] [ 15] [NATIVE ] +12:53:20 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +12:53:20 [ 49] [ 3] [418] +12:53:20 [ 52] [ 16] [2D01E3B74EF5E870] +12:53:20 ============================================================================ +12:53:20 + + +waiting on router queue for slot.... +12:53:20 Sending to : <4> +12:53:20 ============================================================================ +12:53:20 ============================================================================ +12:53:20 Slot Id : <44> +12:53:20 Transaction Type : RESPONSE +12:53:20 Received From : +12:53:20 ============================================================================ +12:53:20 FNo. Len. Field Value +12:53:20 ============================================================================ +12:53:20 [ 1] [ 4] [0210] +12:53:20 [ 2] [ 16] [6688990700182502] +12:53:20 [ 3] [ 6] [011000] +12:53:20 [ 4] [ 12] [000100000000] +12:53:20 [ 7] [ 10] [0320125316] +12:53:20 [ 11] [ 6] [750177] +12:53:20 [ 12] [ 6] [125316] +12:53:20 [ 13] [ 4] [0320] +12:53:20 [ 15] [ 4] [0320] +12:53:20 [ 18] [ 4] [6011] +12:53:20 [ 22] [ 3] [021] +12:53:20 [ 32] [ 6] [621354] +12:53:20 [ 35] [ 37] [6688990700182502=43050071250217500000] +12:53:20 [ 37] [ 12] [507903177350] +12:53:20 [ 39] [ 2] [65] +12:53:20 [ 41] [ 8] [04002700] +12:53:20 [ 49] [ 3] [418] +12:53:20 ============================================================================ +12:53:20 Sending to : +12:53:20 ============================================================================ +12:53:20 + + +waiting on router queue for slot.... +12:53:20 ============================================================================ +12:53:20 Slot Id : <61> +12:53:20 Transaction Type : RESPONSE +12:53:20 Received From : +12:53:20 ============================================================================ +12:53:20 FNo. Len. Field Value +12:53:20 ============================================================================ +12:53:20 [ 1] [ 4] [0210] +12:53:20 [ 2] [ 16] [6213548000308658] +12:53:20 [ 3] [ 6] [010000] +12:53:20 [ 4] [ 12] [000010000000] +12:53:20 [ 7] [ 10] [0320125109] +12:53:20 [ 11] [ 6] [945162] +12:53:20 [ 12] [ 6] [125109] +12:53:20 [ 13] [ 4] [0320] +12:53:20 [ 15] [ 4] [0320] +12:53:20 [ 18] [ 4] [6011] +12:53:20 [ 19] [ 3] [418] +12:53:20 [ 32] [ 6] [668899] +12:53:20 [ 35] [ 32] [6213548000308658=180312010865401] +12:53:20 [ 37] [ 12] [507901262012] +12:53:20 [ 38] [ 6] [577675] +12:53:20 [ 39] [ 2] [00] +12:53:20 [ 41] [ 8] [03206001] +12:53:20 [ 49] [ 3] [418] +12:53:20 [ 54] [ 40] [0001418C0000107741650002418C000010774165] +12:53:20 ============================================================================ +12:53:20 Calculate Source COMM Id = 4 +12:53:20 ============================================================================ +12:53:20 + + +waiting on router queue for slot.... +12:53:22 ============================================================================ +12:53:22 Slot Id : <44> +12:53:22 Transaction Type : RESPONSE +12:53:22 Received From : +12:53:22 ============================================================================ +12:53:22 FNo. Len. Field Value +12:53:22 ============================================================================ +12:53:22 [ 1] [ 4] [0210] +12:53:22 [ 2] [ 16] [6688990700182502] +12:53:22 [ 3] [ 6] [011000] +12:53:22 [ 4] [ 12] [000100000000] +12:53:22 [ 7] [ 10] [0320125316] +12:53:22 [ 11] [ 6] [750177] +12:53:22 [ 12] [ 6] [125316] +12:53:22 [ 13] [ 4] [0320] +12:53:22 [ 15] [ 4] [0320] +12:53:22 [ 18] [ 4] [6011] +12:53:22 [ 22] [ 3] [021] +12:53:22 [ 32] [ 6] [621354] +12:53:22 [ 35] [ 37] [6688990700182502=43050071250217500000] +12:53:22 [ 37] [ 12] [507903177350] +12:53:22 [ 39] [ 2] [65] +12:53:22 [ 41] [ 8] [04002700] +12:53:22 [ 49] [ 3] [418] +12:53:22 ============================================================================ +12:53:22 Calculate Source COMM Id = 0 +12:53:22 ============================================================================ +12:53:22 + + +waiting on router queue for slot.... +12:53:26 ============================================================================ +12:53:26 Slot Id : <15> +12:53:26 Transaction Type : REQUEST +12:53:26 Received From : +12:53:26 ============================================================================ +12:53:26 FNo. Len. Field Value +12:53:26 ============================================================================ +12:53:26 [ 1] [ 4] [0200] +12:53:26 [ 2] [ 16] [2206990000113787] +12:53:26 [ 3] [ 6] [012000] +12:53:26 [ 4] [ 12] [000100000000] +12:53:26 [ 7] [ 10] [0320125322] +12:53:26 [ 11] [ 6] [750204] +12:53:26 [ 12] [ 6] [125322] +12:53:26 [ 13] [ 4] [0320] +12:53:26 [ 15] [ 4] [0320] +12:53:26 [ 18] [ 4] [6011] +12:53:26 [ 22] [ 3] [900] +12:53:26 [ 25] [ 2] [02] +12:53:26 [ 28] [ 9] [D00002000] +12:53:26 [ 32] [ 6] [621354] +12:53:26 [ 35] [ 32] [2206990000113787=980112617899345] +12:53:26 [ 37] [ 12] [507904119876] +12:53:26 [ 41] [ 8] [08000800] +12:53:26 [ 42] [ 15] [NATIVE ] +12:53:26 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:53:26 [ 49] [ 3] [418] +12:53:26 [ 52] [ 16] [196ABF66FAC24C0A] +12:53:26 ============================================================================ +12:53:26 + + +waiting on router queue for slot.... +12:53:26 Sending to : +12:53:26 ============================================================================ +12:53:26 Sending to : +12:53:26 ============================================================================ +12:53:27 ============================================================================ +12:53:27 Slot Id : <15> +12:53:27 Transaction Type : REQUEST +12:53:27 Received From : +12:53:27 ============================================================================ +12:53:27 FNo. Len. Field Value +12:53:27 ============================================================================ +12:53:27 [ 1] [ 4] [0200] +12:53:27 [ 2] [ 16] [2206990000113787] +12:53:27 [ 3] [ 6] [012000] +12:53:27 [ 4] [ 12] [000100000000] +12:53:27 [ 7] [ 10] [0320125322] +12:53:27 [ 11] [ 6] [750204] +12:53:27 [ 12] [ 6] [125322] +12:53:27 [ 13] [ 4] [0320] +12:53:27 [ 15] [ 4] [0320] +12:53:27 [ 18] [ 4] [6011] +12:53:27 [ 22] [ 3] [900] +12:53:27 [ 25] [ 2] [02] +12:53:27 [ 28] [ 9] [D00002000] +12:53:27 [ 32] [ 6] [621354] +12:53:27 [ 35] [ 32] [2206990000113787=980112617899345] +12:53:27 [ 37] [ 12] [507904119876] +12:53:27 [ 41] [ 8] [08000800] +12:53:27 [ 42] [ 15] [NATIVE ] +12:53:27 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:53:27 [ 49] [ 3] [418] +12:53:27 [ 52] [ 16] [196ABF66FAC24C0A] +12:53:27 ============================================================================ +12:53:27 + + +waiting on router queue for slot.... +12:53:27 Sending to : +12:53:27 ============================================================================ +12:53:27 ============================================================================ +12:53:27 Slot Id : <15> +12:53:27 Transaction Type : REQUEST +12:53:27 Received From : +12:53:27 ============================================================================ +12:53:27 FNo. Len. Field Value +12:53:27 ============================================================================ +12:53:27 [ 1] [ 4] [0200] +12:53:27 [ 2] [ 16] [2206990000113787] +12:53:27 [ 3] [ 6] [012000] +12:53:27 [ 4] [ 12] [000100000000] +12:53:27 [ 7] [ 10] [0320125322] +12:53:27 [ 11] [ 6] [750204] +12:53:27 [ 12] [ 6] [125322] +12:53:27 [ 13] [ 4] [0320] +12:53:27 [ 15] [ 4] [0320] +12:53:27 [ 18] [ 4] [6011] +12:53:27 [ 22] [ 3] [900] +12:53:27 [ 25] [ 2] [02] +12:53:27 [ 28] [ 9] [D00002000] +12:53:27 [ 32] [ 6] [621354] +12:53:27 [ 35] [ 32] [2206990000113787=980112617899345] +12:53:27 [ 37] [ 12] [507904119876] +12:53:27 [ 41] [ 8] [08000800] +12:53:27 [ 42] [ 15] [NATIVE ] +12:53:27 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:53:27 [ 49] [ 3] [418] +12:53:27 [ 52] [ 16] [DCBA0A5EA3FC2BEF] +12:53:27 ============================================================================ +12:53:27 + + +waiting on router queue for slot.... +12:53:27 Sending to : <1> +12:53:27 ============================================================================ +12:53:27 ============================================================================ +12:53:27 Slot Id : <55> +12:53:27 Transaction Type : REQUEST +12:53:27 Received From : +12:53:27 ============================================================================ +12:53:27 FNo. Len. Field Value +12:53:27 ============================================================================ +12:53:27 [ 1] [ 4] [0800] +12:53:27 [ 7] [ 10] [0320055234] +12:53:27 [ 11] [ 6] [156415] +12:53:27 [ 70] [ 3] [301] +12:53:27 ============================================================================ +12:53:27 + + +waiting on router queue for slot.... +12:53:27 Sending to : +12:53:27 ============================================================================ +12:53:27 ============================================================================ +12:53:27 Slot Id : <55> +12:53:27 Transaction Type : RESPONSE +12:53:27 Received From : +12:53:27 ============================================================================ +12:53:27 FNo. Len. Field Value +12:53:27 ============================================================================ +12:53:27 [ 1] [ 4] [0810] +12:53:27 [ 7] [ 10] [0320055234] +12:53:27 [ 11] [ 6] [156415] +12:53:27 [ 39] [ 2] [00] +12:53:27 [ 70] [ 3] [301] +12:53:27 ============================================================================ +12:53:27 Calculate Source COMM Id = 2 +12:53:27 ============================================================================ +12:53:27 + + +waiting on router queue for slot.... +12:53:28 ============================================================================ +12:53:28 Slot Id : <478> +12:53:28 Transaction Type : REQUEST +12:53:28 Received From : +12:53:28 ============================================================================ +12:53:28 FNo. Len. Field Value +12:53:28 ============================================================================ +12:53:28 [ 1] [ 4] [0200] +12:53:28 [ 2] [ 16] [6213545000528426] +12:53:28 [ 3] [ 6] [300000] +12:53:28 [ 4] [ 12] [000000000000] +12:53:28 [ 7] [ 10] [0320125119] +12:53:28 [ 11] [ 6] [945168] +12:53:28 [ 12] [ 6] [125119] +12:53:28 [ 13] [ 4] [0320] +12:53:28 [ 15] [ 4] [0320] +12:53:28 [ 18] [ 4] [6011] +12:53:28 [ 19] [ 3] [418] +12:53:28 [ 22] [ 3] [021] +12:53:28 [ 25] [ 2] [01] +12:53:28 [ 28] [ 9] [D00000000] +12:53:28 [ 32] [ 6] [668899] +12:53:28 [ 35] [ 32] [6213545000528426=491212012842493] +12:53:28 [ 37] [ 12] [507902150972] +12:53:28 [ 41] [ 8] [03020025] +12:53:28 [ 42] [ 15] [APT ] +12:53:28 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:53:28 [ 49] [ 3] [418] +12:53:28 [ 52] [ 16] [8A583985E3B4CB24] +12:53:28 ============================================================================ +12:53:28 + + +waiting on router queue for slot.... +12:53:28 Sending to : +12:53:28 ============================================================================ +12:53:28 Sending to : +12:53:28 ============================================================================ +12:53:29 ============================================================================ +12:53:29 Slot Id : <15> +12:53:29 Transaction Type : RESPONSE +12:53:29 Received From : +12:53:29 ============================================================================ +12:53:29 FNo. Len. Field Value +12:53:29 ============================================================================ +12:53:29 [ 1] [ 4] [0210] +12:53:29 [ 2] [ 16] [2206990000113787] +12:53:29 [ 3] [ 6] [012000] +12:53:29 [ 4] [ 12] [000100000000] +12:53:29 [ 7] [ 10] [0320125322] +12:53:29 [ 11] [ 6] [750204] +12:53:29 [ 12] [ 6] [125322] +12:53:29 [ 13] [ 4] [0320] +12:53:29 [ 15] [ 4] [0320] +12:53:29 [ 18] [ 4] [6011] +12:53:29 [ 32] [ 6] [621354] +12:53:29 [ 35] [ 32] [2206990000113787=980112617899345] +12:53:29 [ 37] [ 12] [507904119876] +12:53:29 [ 38] [ 6] [284876] +12:53:29 [ 39] [ 2] [00] +12:53:29 [ 41] [ 8] [08000800] +12:53:29 [ 49] [ 3] [418] +12:53:29 [ 54] [ 40] [2001418C0000231616002002418C000023161600] +12:53:29 ============================================================================ +12:53:29 Sending to : +12:53:29 ============================================================================ +12:53:29 + + +waiting on router queue for slot.... +12:53:29 ============================================================================ +12:53:29 Slot Id : <478> +12:53:29 Transaction Type : REQUEST +12:53:29 Received From : +12:53:29 ============================================================================ +12:53:29 FNo. Len. Field Value +12:53:29 ============================================================================ +12:53:29 [ 1] [ 4] [0200] +12:53:29 [ 2] [ 16] [6213545000528426] +12:53:29 [ 3] [ 6] [300000] +12:53:29 [ 4] [ 12] [000000000000] +12:53:29 [ 7] [ 10] [0320125119] +12:53:29 [ 11] [ 6] [945168] +12:53:29 [ 12] [ 6] [125119] +12:53:29 [ 13] [ 4] [0320] +12:53:29 [ 15] [ 4] [0320] +12:53:29 [ 18] [ 4] [6011] +12:53:29 [ 19] [ 3] [418] +12:53:29 [ 22] [ 3] [021] +12:53:29 [ 25] [ 2] [01] +12:53:29 [ 28] [ 9] [D00000000] +12:53:29 [ 32] [ 6] [668899] +12:53:29 [ 35] [ 32] [6213545000528426=491212012842493] +12:53:29 [ 37] [ 12] [507902150972] +12:53:29 [ 41] [ 8] [03020025] +12:53:29 [ 42] [ 15] [APT ] +12:53:29 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:53:29 [ 49] [ 3] [418] +12:53:29 [ 52] [ 16] [8A583985E3B4CB24] +12:53:29 ============================================================================ +12:53:29 + + +waiting on router queue for slot.... +12:53:29 Sending to : +12:53:29 ============================================================================ +12:53:29 ============================================================================ +12:53:29 Slot Id : <478> +12:53:29 Transaction Type : REQUEST +12:53:29 Received From : +12:53:29 ============================================================================ +12:53:29 FNo. Len. Field Value +12:53:29 ============================================================================ +12:53:29 [ 1] [ 4] [0200] +12:53:29 [ 2] [ 16] [6213545000528426] +12:53:29 [ 3] [ 6] [300000] +12:53:29 [ 4] [ 12] [000000000000] +12:53:29 [ 7] [ 10] [0320125119] +12:53:29 [ 11] [ 6] [945168] +12:53:29 [ 12] [ 6] [125119] +12:53:29 [ 13] [ 4] [0320] +12:53:29 [ 15] [ 4] [0320] +12:53:29 [ 18] [ 4] [6011] +12:53:29 [ 19] [ 3] [418] +12:53:29 [ 22] [ 3] [021] +12:53:29 [ 25] [ 2] [01] +12:53:29 [ 28] [ 9] [D00000000] +12:53:29 [ 32] [ 6] [668899] +12:53:29 [ 35] [ 32] [6213545000528426=491212012842493] +12:53:29 [ 37] [ 12] [507902150972] +12:53:29 [ 41] [ 8] [03020025] +12:53:29 [ 42] [ 15] [APT ] +12:53:29 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:53:29 [ 49] [ 3] [418] +12:53:29 [ 52] [ 16] [6FBF9C4579FA042C] +12:53:29 ============================================================================ +12:53:29 + + +waiting on router queue for slot.... +12:53:29 Sending to : <0> +12:53:29 ============================================================================ +12:53:29 ============================================================================ +12:53:29 Slot Id : <478> +12:53:29 Transaction Type : RESPONSE +12:53:29 Received From : +12:53:29 ============================================================================ +12:53:29 FNo. Len. Field Value +12:53:29 ============================================================================ +12:53:29 [ 1] [ 4] [0210] +12:53:29 [ 2] [ 16] [6213545000528426] +12:53:29 [ 3] [ 6] [300000] +12:53:29 [ 4] [ 12] [000000000000] +12:53:29 [ 7] [ 10] [0320125119] +12:53:29 [ 11] [ 6] [945168] +12:53:29 [ 12] [ 6] [125119] +12:53:29 [ 13] [ 4] [0320] +12:53:29 [ 15] [ 4] [0320] +12:53:29 [ 18] [ 4] [6011] +12:53:29 [ 19] [ 3] [418] +12:53:29 [ 32] [ 6] [668899] +12:53:29 [ 35] [ 32] [6213545000528426=491212012842493] +12:53:29 [ 37] [ 12] [507902150972] +12:53:29 [ 38] [ 6] [940665] +12:53:29 [ 39] [ 2] [00] +12:53:29 [ 41] [ 8] [03020025] +12:53:29 [ 49] [ 3] [418] +12:53:29 [ 54] [ 40] [0001418C0001845749760002418C000184574976] +12:53:29 ============================================================================ +12:53:29 Sending to : +12:53:29 ============================================================================ +12:53:29 + + +waiting on router queue for slot.... +12:53:30 ============================================================================ +12:53:30 Slot Id : <15> +12:53:30 Transaction Type : RESPONSE +12:53:30 Received From : +12:53:30 ============================================================================ +12:53:30 FNo. Len. Field Value +12:53:30 ============================================================================ +12:53:30 [ 1] [ 4] [0210] +12:53:30 [ 2] [ 16] [2206990000113787] +12:53:30 [ 3] [ 6] [012000] +12:53:30 [ 4] [ 12] [000100000000] +12:53:30 [ 7] [ 10] [0320125322] +12:53:30 [ 11] [ 6] [750204] +12:53:30 [ 12] [ 6] [125322] +12:53:30 [ 13] [ 4] [0320] +12:53:30 [ 15] [ 4] [0320] +12:53:30 [ 18] [ 4] [6011] +12:53:30 [ 32] [ 6] [621354] +12:53:30 [ 35] [ 32] [2206990000113787=980112617899345] +12:53:30 [ 37] [ 12] [507904119876] +12:53:30 [ 38] [ 6] [284876] +12:53:30 [ 39] [ 2] [00] +12:53:30 [ 41] [ 8] [08000800] +12:53:30 [ 49] [ 3] [418] +12:53:30 [ 54] [ 40] [2001418C0000231616002002418C000023161600] +12:53:30 ============================================================================ +12:53:30 Calculate Source COMM Id = 0 +12:53:30 ============================================================================ +12:53:30 + + +waiting on router queue for slot.... +12:53:32 ============================================================================ +12:53:32 Slot Id : <478> +12:53:32 Transaction Type : RESPONSE +12:53:32 Received From : +12:53:32 ============================================================================ +12:53:32 FNo. Len. Field Value +12:53:32 ============================================================================ +12:53:32 [ 1] [ 4] [0210] +12:53:32 [ 2] [ 16] [6213545000528426] +12:53:32 [ 3] [ 6] [300000] +12:53:32 [ 4] [ 12] [000000000000] +12:53:32 [ 7] [ 10] [0320125119] +12:53:32 [ 11] [ 6] [945168] +12:53:32 [ 12] [ 6] [125119] +12:53:32 [ 13] [ 4] [0320] +12:53:32 [ 15] [ 4] [0320] +12:53:32 [ 18] [ 4] [6011] +12:53:32 [ 19] [ 3] [418] +12:53:32 [ 32] [ 6] [668899] +12:53:32 [ 35] [ 32] [6213545000528426=491212012842493] +12:53:32 [ 37] [ 12] [507902150972] +12:53:32 [ 38] [ 6] [940665] +12:53:32 [ 39] [ 2] [00] +12:53:32 [ 41] [ 8] [03020025] +12:53:32 [ 49] [ 3] [418] +12:53:32 [ 54] [ 40] [0001418C0001845749760002418C000184574976] +12:53:32 ============================================================================ +12:53:32 Calculate Source COMM Id = 4 +12:53:32 ============================================================================ +12:53:32 + + +waiting on router queue for slot.... +12:53:34 ============================================================================ +12:53:34 Slot Id : <60> +12:53:34 Transaction Type : REQUEST +12:53:34 Received From : +12:53:34 ============================================================================ +12:53:34 FNo. Len. Field Value +12:53:34 ============================================================================ +12:53:34 [ 1] [ 4] [0800] +12:53:34 [ 2] [ 5] [02531] +12:53:34 [ 3] [ 6] [579128] +12:53:34 [ 7] [ 10] [0320055334] +12:53:34 [ 11] [ 6] [807160] +12:53:34 [ 15] [ 10] [0320055334] +12:53:34 [ 37] [ 11] [57912807160] +12:53:34 [ 70] [ 3] [001] +12:53:34 ============================================================================ +12:53:34 + + +waiting on router queue for slot.... +12:53:34 ============================================================================ +12:53:34 Slot Id : <60> +12:53:34 Transaction Type : RESPONSE +12:53:34 Received From : +12:53:34 ============================================================================ +12:53:34 FNo. Len. Field Value +12:53:34 ============================================================================ +12:53:34 [ 1] [ 4] [0810] +12:53:34 [ 7] [ 10] [0320055334] +12:53:34 [ 11] [ 6] [807160] +12:53:34 [ 15] [ 4] [0320] +12:53:34 [ 37] [ 12] [57912807160] +12:53:34 [ 39] [ 2] [00] +12:53:34 [ 70] [ 3] [001] +12:53:34 ============================================================================ +12:53:34 Sending to : +12:53:34 ============================================================================ +12:53:34 + + +waiting on router queue for slot.... +12:53:37 ============================================================================ +12:53:37 Slot Id : <68> +12:53:37 Transaction Type : REQUEST +12:53:37 Received From : +12:53:37 ============================================================================ +12:53:37 FNo. Len. Field Value +12:53:37 ============================================================================ +12:53:37 [ 1] [ 4] [0800] +12:53:37 [ 7] [ 10] [0320055245] +12:53:37 [ 11] [ 6] [156416] +12:53:37 [ 70] [ 3] [301] +12:53:37 ============================================================================ +12:53:37 + + +waiting on router queue for slot.... +12:53:37 Sending to : +12:53:37 ============================================================================ +12:53:37 ============================================================================ +12:53:37 Slot Id : <68> +12:53:37 Transaction Type : RESPONSE +12:53:37 Received From : +12:53:37 ============================================================================ +12:53:37 FNo. Len. Field Value +12:53:37 ============================================================================ +12:53:37 [ 1] [ 4] [0810] +12:53:37 [ 7] [ 10] [0320055245] +12:53:37 [ 11] [ 6] [156416] +12:53:37 [ 39] [ 2] [00] +12:53:37 [ 70] [ 3] [301] +12:53:37 ============================================================================ +12:53:37 Calculate Source COMM Id = 2 +12:53:37 ============================================================================ +12:53:37 + + +waiting on router queue for slot.... +12:53:46 ============================================================================ +12:53:46 Slot Id : <63> +12:53:46 Transaction Type : REQUEST +12:53:46 Received From : +12:53:46 ============================================================================ +12:53:46 FNo. Len. Field Value +12:53:46 ============================================================================ +12:53:46 [ 1] [ 4] [0200] +12:53:46 [ 2] [ 16] [6213544001951166] +12:53:46 [ 3] [ 6] [301000] +12:53:46 [ 4] [ 12] [000000000000] +12:53:46 [ 7] [ 10] [0320125407] +12:53:46 [ 11] [ 6] [205923] +12:53:46 [ 12] [ 6] [124950] +12:53:46 [ 13] [ 4] [0320] +12:53:46 [ 14] [ 4] [4912] +12:53:46 [ 15] [ 4] [0320] +12:53:46 [ 18] [ 4] [6011] +12:53:46 [ 19] [ 3] [418] +12:53:46 [ 22] [ 3] [021] +12:53:46 [ 25] [ 2] [01] +12:53:46 [ 28] [ 9] [D00000000] +12:53:46 [ 32] [ 6] [198901] +12:53:46 [ 35] [ 32] [6213544001951166=491212015116001] +12:53:46 [ 37] [ 12] [507912205923] +12:53:46 [ 41] [ 8] [01529001] +12:53:46 [ 42] [ 15] [000000041529001] +12:53:46 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +12:53:46 [ 49] [ 3] [418] +12:53:46 [ 52] [ 16] [2AAC8A411485C499] +12:53:46 ============================================================================ +12:53:46 + + +waiting on router queue for slot.... +12:53:46 Sending to : +12:53:46 ============================================================================ +12:53:46 Sending to : +12:53:46 ============================================================================ +12:53:46 ============================================================================ +12:53:46 Slot Id : <63> +12:53:46 Transaction Type : REQUEST +12:53:46 Received From : +12:53:46 ============================================================================ +12:53:46 FNo. Len. Field Value +12:53:46 ============================================================================ +12:53:46 [ 1] [ 4] [0200] +12:53:46 [ 2] [ 16] [6213544001951166] +12:53:46 [ 3] [ 6] [301000] +12:53:46 [ 4] [ 12] [000000000000] +12:53:46 [ 7] [ 10] [0320125407] +12:53:46 [ 11] [ 6] [205923] +12:53:46 [ 12] [ 6] [124950] +12:53:46 [ 13] [ 4] [0320] +12:53:46 [ 14] [ 4] [4912] +12:53:46 [ 15] [ 4] [0320] +12:53:46 [ 18] [ 4] [6011] +12:53:46 [ 19] [ 3] [418] +12:53:46 [ 22] [ 3] [021] +12:53:46 [ 25] [ 2] [01] +12:53:46 [ 28] [ 9] [D00000000] +12:53:46 [ 32] [ 6] [198901] +12:53:46 [ 35] [ 32] [6213544001951166=491212015116001] +12:53:46 [ 37] [ 12] [507912205923] +12:53:46 [ 41] [ 8] [01529001] +12:53:46 [ 42] [ 15] [000000041529001] +12:53:46 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +12:53:46 [ 49] [ 3] [418] +12:53:46 [ 52] [ 16] [2AAC8A411485C499] +12:53:46 ============================================================================ +12:53:46 + + +waiting on router queue for slot.... +12:53:46 Sending to : +12:53:46 ============================================================================ +12:53:46 ============================================================================ +12:53:46 Slot Id : <63> +12:53:46 Transaction Type : REQUEST +12:53:46 Received From : +12:53:46 ============================================================================ +12:53:46 FNo. Len. Field Value +12:53:46 ============================================================================ +12:53:46 [ 1] [ 4] [0200] +12:53:46 [ 2] [ 16] [6213544001951166] +12:53:46 [ 3] [ 6] [301000] +12:53:46 [ 4] [ 12] [000000000000] +12:53:46 [ 7] [ 10] [0320125407] +12:53:46 [ 11] [ 6] [205923] +12:53:46 [ 12] [ 6] [124950] +12:53:46 [ 13] [ 4] [0320] +12:53:46 [ 14] [ 4] [4912] +12:53:46 [ 15] [ 4] [0320] +12:53:46 [ 18] [ 4] [6011] +12:53:46 [ 19] [ 3] [418] +12:53:46 [ 22] [ 3] [021] +12:53:46 [ 25] [ 2] [01] +12:53:46 [ 28] [ 9] [D00000000] +12:53:46 [ 32] [ 6] [198901] +12:53:46 [ 35] [ 32] [6213544001951166=491212015116001] +12:53:46 [ 37] [ 12] [507912205923] +12:53:46 [ 41] [ 8] [01529001] +12:53:46 [ 42] [ 15] [000000041529001] +12:53:46 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +12:53:46 [ 49] [ 3] [418] +12:53:46 [ 52] [ 16] [3BF7B287B273E2BA] +12:53:46 ============================================================================ +12:53:46 + + +waiting on router queue for slot.... +12:53:46 Sending to : <0> +12:53:46 ============================================================================ +12:53:46 ============================================================================ +12:53:46 Slot Id : <63> +12:53:46 Transaction Type : RESPONSE +12:53:46 Received From : +12:53:46 ============================================================================ +12:53:46 FNo. Len. Field Value +12:53:46 ============================================================================ +12:53:46 [ 1] [ 4] [0210] +12:53:46 [ 2] [ 16] [6213544001951166] +12:53:46 [ 3] [ 6] [301000] +12:53:46 [ 4] [ 12] [000000000000] +12:53:46 [ 7] [ 10] [0320125407] +12:53:46 [ 11] [ 6] [205923] +12:53:46 [ 12] [ 6] [124950] +12:53:46 [ 13] [ 4] [0320] +12:53:46 [ 15] [ 4] [0320] +12:53:46 [ 18] [ 4] [6011] +12:53:46 [ 19] [ 3] [418] +12:53:46 [ 22] [ 3] [021] +12:53:46 [ 32] [ 6] [198901] +12:53:46 [ 35] [ 32] [6213544001951166=491212015116001] +12:53:46 [ 37] [ 12] [507912205923] +12:53:46 [ 38] [ 6] [125342] +12:53:46 [ 39] [ 2] [55] +12:53:46 [ 41] [ 8] [01529001] +12:53:46 [ 49] [ 3] [418] +12:53:46 ============================================================================ +12:53:46 Sending to : +12:53:46 ============================================================================ +12:53:46 + + +waiting on router queue for slot.... +12:53:48 ============================================================================ +12:53:48 Slot Id : <63> +12:53:48 Transaction Type : RESPONSE +12:53:48 Received From : +12:53:48 ============================================================================ +12:53:48 FNo. Len. Field Value +12:53:48 ============================================================================ +12:53:48 [ 1] [ 4] [0210] +12:53:48 [ 2] [ 16] [6213544001951166] +12:53:48 [ 3] [ 6] [301000] +12:53:48 [ 4] [ 12] [000000000000] +12:53:48 [ 7] [ 10] [0320125407] +12:53:48 [ 11] [ 6] [205923] +12:53:48 [ 12] [ 6] [124950] +12:53:48 [ 13] [ 4] [0320] +12:53:48 [ 15] [ 4] [0320] +12:53:48 [ 18] [ 4] [6011] +12:53:48 [ 19] [ 3] [418] +12:53:48 [ 22] [ 3] [021] +12:53:48 [ 32] [ 6] [198901] +12:53:48 [ 35] [ 32] [6213544001951166=491212015116001] +12:53:48 [ 37] [ 12] [507912205923] +12:53:48 [ 38] [ 6] [125342] +12:53:48 [ 39] [ 2] [55] +12:53:48 [ 41] [ 8] [01529001] +12:53:48 [ 49] [ 3] [418] +12:53:48 ============================================================================ +12:53:48 Calculate Source COMM Id = 5 +12:53:48 ============================================================================ +12:53:48 + + +waiting on router queue for slot.... +12:53:48 ============================================================================ +12:53:48 Slot Id : <73> +12:53:48 Transaction Type : REQUEST +12:53:48 Received From : +12:53:48 ============================================================================ +12:53:48 FNo. Len. Field Value +12:53:48 ============================================================================ +12:53:48 [ 1] [ 4] [0800] +12:53:48 [ 7] [ 10] [0320055255] +12:53:48 [ 11] [ 6] [156417] +12:53:48 [ 70] [ 3] [301] +12:53:48 ============================================================================ +12:53:48 + + +waiting on router queue for slot.... +12:53:48 Sending to : +12:53:48 ============================================================================ +12:53:48 ============================================================================ +12:53:48 Slot Id : <73> +12:53:48 Transaction Type : RESPONSE +12:53:48 Received From : +12:53:48 ============================================================================ +12:53:48 FNo. Len. Field Value +12:53:48 ============================================================================ +12:53:48 [ 1] [ 4] [0810] +12:53:48 [ 7] [ 10] [0320055255] +12:53:48 [ 11] [ 6] [156417] +12:53:48 [ 39] [ 2] [00] +12:53:48 [ 70] [ 3] [301] +12:53:48 ============================================================================ +12:53:48 Calculate Source COMM Id = 2 +12:53:48 ============================================================================ +12:53:48 + + +waiting on router queue for slot.... +12:53:59 ============================================================================ +12:53:59 Slot Id : <38> +12:53:59 Transaction Type : REQUEST +12:53:59 Received From : +12:53:59 ============================================================================ +12:53:59 FNo. Len. Field Value +12:53:59 ============================================================================ +12:53:59 [ 1] [ 4] [0200] +12:53:59 [ 2] [ 16] [6213545000528426] +12:53:59 [ 3] [ 6] [010000] +12:53:59 [ 4] [ 12] [000100000000] +12:53:59 [ 7] [ 10] [0320125149] +12:53:59 [ 11] [ 6] [945178] +12:53:59 [ 12] [ 6] [125149] +12:53:59 [ 13] [ 4] [0320] +12:53:59 [ 15] [ 4] [0320] +12:53:59 [ 18] [ 4] [6011] +12:53:59 [ 19] [ 3] [418] +12:53:59 [ 22] [ 3] [021] +12:53:59 [ 25] [ 2] [01] +12:53:59 [ 28] [ 9] [D00002000] +12:53:59 [ 32] [ 6] [668899] +12:53:59 [ 35] [ 32] [6213545000528426=491212012842493] +12:53:59 [ 37] [ 12] [507902150973] +12:53:59 [ 41] [ 8] [03020025] +12:53:59 [ 42] [ 15] [APT ] +12:53:59 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:53:59 [ 49] [ 3] [418] +12:53:59 [ 52] [ 16] [8A583985E3B4CB24] +12:53:59 ============================================================================ +12:53:59 + + +waiting on router queue for slot.... +12:53:59 Sending to : +12:53:59 ============================================================================ +12:53:59 Sending to : +12:53:59 ============================================================================ +12:53:59 ============================================================================ +12:53:59 Slot Id : <38> +12:53:59 Transaction Type : REQUEST +12:53:59 Received From : +12:53:59 ============================================================================ +12:53:59 FNo. Len. Field Value +12:53:59 ============================================================================ +12:53:59 [ 1] [ 4] [0200] +12:53:59 [ 2] [ 16] [6213545000528426] +12:53:59 [ 3] [ 6] [010000] +12:53:59 [ 4] [ 12] [000100000000] +12:53:59 [ 7] [ 10] [0320125149] +12:53:59 [ 11] [ 6] [945178] +12:53:59 [ 12] [ 6] [125149] +12:53:59 [ 13] [ 4] [0320] +12:53:59 [ 15] [ 4] [0320] +12:53:59 [ 18] [ 4] [6011] +12:53:59 [ 19] [ 3] [418] +12:53:59 [ 22] [ 3] [021] +12:53:59 [ 25] [ 2] [01] +12:53:59 [ 28] [ 9] [D00002000] +12:53:59 [ 32] [ 6] [668899] +12:53:59 [ 35] [ 32] [6213545000528426=491212012842493] +12:53:59 [ 37] [ 12] [507902150973] +12:53:59 [ 41] [ 8] [03020025] +12:53:59 [ 42] [ 15] [APT ] +12:53:59 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:53:59 [ 49] [ 3] [418] +12:53:59 [ 52] [ 16] [8A583985E3B4CB24] +12:53:59 ============================================================================ +12:53:59 + + +waiting on router queue for slot.... +12:53:59 Sending to : +12:53:59 ============================================================================ +12:53:59 ============================================================================ +12:53:59 Slot Id : <38> +12:53:59 Transaction Type : REQUEST +12:53:59 Received From : +12:53:59 ============================================================================ +12:53:59 FNo. Len. Field Value +12:53:59 ============================================================================ +12:53:59 [ 1] [ 4] [0200] +12:53:59 [ 2] [ 16] [6213545000528426] +12:53:59 [ 3] [ 6] [010000] +12:53:59 [ 4] [ 12] [000100000000] +12:53:59 [ 7] [ 10] [0320125149] +12:53:59 [ 11] [ 6] [945178] +12:53:59 [ 12] [ 6] [125149] +12:53:59 [ 13] [ 4] [0320] +12:53:59 [ 15] [ 4] [0320] +12:53:59 [ 18] [ 4] [6011] +12:53:59 [ 19] [ 3] [418] +12:53:59 [ 22] [ 3] [021] +12:53:59 [ 25] [ 2] [01] +12:53:59 [ 28] [ 9] [D00002000] +12:53:59 [ 32] [ 6] [668899] +12:53:59 [ 35] [ 32] [6213545000528426=491212012842493] +12:53:59 [ 37] [ 12] [507902150973] +12:53:59 [ 41] [ 8] [03020025] +12:53:59 [ 42] [ 15] [APT ] +12:53:59 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:53:59 [ 49] [ 3] [418] +12:53:59 [ 52] [ 16] [6FBF9C4579FA042C] +12:53:59 ============================================================================ +12:53:59 + + +waiting on router queue for slot.... +12:53:59 Sending to : <0> +12:53:59 ============================================================================ +12:54:00 ============================================================================ +12:54:00 Slot Id : <38> +12:54:00 Transaction Type : RESPONSE +12:54:00 Received From : +12:54:00 ============================================================================ +12:54:00 FNo. Len. Field Value +12:54:00 ============================================================================ +12:54:00 [ 1] [ 4] [0210] +12:54:00 [ 2] [ 16] [6213545000528426] +12:54:00 [ 3] [ 6] [010000] +12:54:00 [ 4] [ 12] [000100000000] +12:54:00 [ 7] [ 10] [0320125149] +12:54:00 [ 11] [ 6] [945178] +12:54:00 [ 12] [ 6] [125149] +12:54:00 [ 13] [ 4] [0320] +12:54:00 [ 15] [ 4] [0320] +12:54:00 [ 18] [ 4] [6011] +12:54:00 [ 19] [ 3] [418] +12:54:00 [ 32] [ 6] [668899] +12:54:00 [ 35] [ 32] [6213545000528426=491212012842493] +12:54:00 [ 37] [ 12] [507902150973] +12:54:00 [ 38] [ 6] [320202] +12:54:00 [ 39] [ 2] [00] +12:54:00 [ 41] [ 8] [03020025] +12:54:00 [ 49] [ 3] [418] +12:54:00 [ 54] [ 40] [0001418C0000843749760002418C000084374976] +12:54:00 ============================================================================ +12:54:00 Sending to : +12:54:00 ============================================================================ +12:54:00 + + +waiting on router queue for slot.... +12:54:01 ============================================================================ +12:54:01 Slot Id : <38> +12:54:01 Transaction Type : RESPONSE +12:54:01 Received From : +12:54:01 ============================================================================ +12:54:01 FNo. Len. Field Value +12:54:01 ============================================================================ +12:54:01 [ 1] [ 4] [0210] +12:54:01 [ 2] [ 16] [6213545000528426] +12:54:01 [ 3] [ 6] [010000] +12:54:01 [ 4] [ 12] [000100000000] +12:54:01 [ 7] [ 10] [0320125149] +12:54:01 [ 11] [ 6] [945178] +12:54:01 [ 12] [ 6] [125149] +12:54:01 [ 13] [ 4] [0320] +12:54:01 [ 15] [ 4] [0320] +12:54:01 [ 18] [ 4] [6011] +12:54:01 [ 19] [ 3] [418] +12:54:01 [ 32] [ 6] [668899] +12:54:01 [ 35] [ 32] [6213545000528426=491212012842493] +12:54:01 [ 37] [ 12] [507902150973] +12:54:01 [ 38] [ 6] [320202] +12:54:01 [ 39] [ 2] [00] +12:54:01 [ 41] [ 8] [03020025] +12:54:01 [ 49] [ 3] [418] +12:54:01 [ 54] [ 40] [0001418C0000843749760002418C000084374976] +12:54:01 ============================================================================ +12:54:01 Calculate Source COMM Id = 4 +12:54:01 ============================================================================ +12:54:01 + + +waiting on router queue for slot.... +12:54:04 ============================================================================ +12:54:04 Slot Id : <41> +12:54:04 Transaction Type : REQUEST +12:54:04 Received From : +12:54:04 ============================================================================ +12:54:04 FNo. Len. Field Value +12:54:04 ============================================================================ +12:54:04 [ 1] [ 4] [0800] +12:54:04 [ 7] [ 10] [0320055311] +12:54:04 [ 11] [ 6] [156418] +12:54:04 [ 70] [ 3] [301] +12:54:04 ============================================================================ +12:54:04 + + +waiting on router queue for slot.... +12:54:04 Sending to : +12:54:04 ============================================================================ +12:54:04 ============================================================================ +12:54:04 Slot Id : <41> +12:54:04 Transaction Type : RESPONSE +12:54:04 Received From : +12:54:04 ============================================================================ +12:54:04 FNo. Len. Field Value +12:54:04 ============================================================================ +12:54:04 [ 1] [ 4] [0810] +12:54:04 [ 7] [ 10] [0320055311] +12:54:04 [ 11] [ 6] [156418] +12:54:04 [ 39] [ 2] [00] +12:54:04 [ 70] [ 3] [301] +12:54:04 ============================================================================ +12:54:04 Calculate Source COMM Id = 2 +12:54:04 ============================================================================ +12:54:04 + + +waiting on router queue for slot.... +12:54:12 ============================================================================ +12:54:12 Slot Id : <464> +12:54:12 Transaction Type : REQUEST +12:54:12 Received From : +12:54:12 ============================================================================ +12:54:12 FNo. Len. Field Value +12:54:12 ============================================================================ +12:54:12 [ 1] [ 4] [0800] +12:54:12 [ 7] [ 10] [0320055408] +12:54:12 [ 11] [ 6] [083503] +12:54:12 [ 37] [ 12] [507912083503] +12:54:12 [ 70] [ 3] [001] +12:54:12 ============================================================================ +12:54:12 + + +waiting on router queue for slot.... +12:54:12 Sending to : +12:54:12 ============================================================================ +12:54:12 ============================================================================ +12:54:12 Slot Id : <464> +12:54:12 Transaction Type : RESPONSE +12:54:12 Received From : +12:54:12 ============================================================================ +12:54:12 FNo. Len. Field Value +12:54:12 ============================================================================ +12:54:12 [ 1] [ 4] [0810] +12:54:12 [ 7] [ 10] [0320055408] +12:54:12 [ 11] [ 6] [083503] +12:54:12 [ 37] [ 12] [507912083503] +12:54:12 [ 39] [ 2] [00] +12:54:12 [ 70] [ 3] [001] +12:54:12 ============================================================================ +12:54:12 Calculate Source COMM Id = 0 +12:54:12 ============================================================================ +12:54:12 + + +waiting on router queue for slot.... +12:54:15 ============================================================================ +12:54:15 Slot Id : <32> +12:54:15 Transaction Type : REQUEST +12:54:15 Received From : +12:54:15 ============================================================================ +12:54:15 FNo. Len. Field Value +12:54:15 ============================================================================ +12:54:15 [ 1] [ 4] [0800] +12:54:15 [ 7] [ 10] [0320055322] +12:54:15 [ 11] [ 6] [156419] +12:54:15 [ 70] [ 3] [301] +12:54:15 ============================================================================ +12:54:15 + + +waiting on router queue for slot.... +12:54:15 Sending to : +12:54:15 ============================================================================ +12:54:15 ============================================================================ +12:54:15 Slot Id : <32> +12:54:15 Transaction Type : RESPONSE +12:54:15 Received From : +12:54:15 ============================================================================ +12:54:15 FNo. Len. Field Value +12:54:15 ============================================================================ +12:54:15 [ 1] [ 4] [0810] +12:54:15 [ 7] [ 10] [0320055322] +12:54:15 [ 11] [ 6] [156419] +12:54:15 [ 39] [ 2] [00] +12:54:15 [ 70] [ 3] [301] +12:54:15 ============================================================================ +12:54:15 Calculate Source COMM Id = 2 +12:54:15 ============================================================================ +12:54:15 + + +waiting on router queue for slot.... +12:54:26 ============================================================================ +12:54:26 Slot Id : <487> +12:54:26 Transaction Type : REQUEST +12:54:26 Received From : +12:54:26 ============================================================================ +12:54:26 FNo. Len. Field Value +12:54:26 ============================================================================ +12:54:26 [ 1] [ 4] [0800] +12:54:26 [ 7] [ 10] [0320055333] +12:54:26 [ 11] [ 6] [156420] +12:54:26 [ 70] [ 3] [301] +12:54:26 ============================================================================ +12:54:26 + + +waiting on router queue for slot.... +12:54:26 Sending to : +12:54:26 ============================================================================ +12:54:26 ============================================================================ +12:54:26 Slot Id : <487> +12:54:26 Transaction Type : RESPONSE +12:54:26 Received From : +12:54:26 ============================================================================ +12:54:26 FNo. Len. Field Value +12:54:26 ============================================================================ +12:54:26 [ 1] [ 4] [0810] +12:54:26 [ 7] [ 10] [0320055333] +12:54:26 [ 11] [ 6] [156420] +12:54:26 [ 39] [ 2] [00] +12:54:26 [ 70] [ 3] [301] +12:54:26 ============================================================================ +12:54:26 Calculate Source COMM Id = 2 +12:54:26 ============================================================================ +12:54:26 + + +waiting on router queue for slot.... +12:54:36 ============================================================================ +12:54:36 Slot Id : <27> +12:54:36 Transaction Type : REQUEST +12:54:36 Received From : +12:54:36 ============================================================================ +12:54:36 FNo. Len. Field Value +12:54:36 ============================================================================ +12:54:36 [ 1] [ 4] [0200] +12:54:36 [ 2] [ 16] [2206990000113787] +12:54:36 [ 3] [ 6] [011000] +12:54:36 [ 4] [ 12] [000010000000] +12:54:36 [ 7] [ 10] [0320125431] +12:54:36 [ 11] [ 6] [750450] +12:54:36 [ 12] [ 6] [125431] +12:54:36 [ 13] [ 4] [0320] +12:54:36 [ 15] [ 4] [0320] +12:54:36 [ 18] [ 4] [6011] +12:54:36 [ 22] [ 3] [900] +12:54:36 [ 25] [ 2] [02] +12:54:36 [ 28] [ 9] [D00002000] +12:54:36 [ 32] [ 6] [621354] +12:54:36 [ 35] [ 32] [2206990000113787=980112617899345] +12:54:36 [ 37] [ 12] [507904119878] +12:54:36 [ 41] [ 8] [08000800] +12:54:36 [ 42] [ 15] [NATIVE ] +12:54:36 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:54:36 [ 49] [ 3] [418] +12:54:36 [ 52] [ 16] [196ABF66FAC24C0A] +12:54:36 ============================================================================ +12:54:36 + + +waiting on router queue for slot.... +12:54:36 Sending to : +12:54:36 ============================================================================ +12:54:36 Sending to : +12:54:36 ============================================================================ +12:54:36 ============================================================================ +12:54:36 Slot Id : <26> +12:54:36 Transaction Type : REQUEST +12:54:36 Received From : +12:54:36 ============================================================================ +12:54:36 FNo. Len. Field Value +12:54:36 ============================================================================ +12:54:36 [ 1] [ 4] [0800] +12:54:36 [ 2] [ 5] [02531] +12:54:36 [ 3] [ 6] [579128] +12:54:36 [ 7] [ 10] [0320055436] +12:54:36 [ 11] [ 6] [807161] +12:54:36 [ 15] [ 10] [0320055436] +12:54:36 [ 37] [ 11] [57912807161] +12:54:36 [ 70] [ 3] [001] +12:54:36 ============================================================================ +12:54:36 + + +waiting on router queue for slot.... +12:54:36 ============================================================================ +12:54:36 Slot Id : <26> +12:54:36 Transaction Type : RESPONSE +12:54:36 Received From : +12:54:36 ============================================================================ +12:54:36 FNo. Len. Field Value +12:54:36 ============================================================================ +12:54:36 [ 1] [ 4] [0810] +12:54:36 [ 7] [ 10] [0320055436] +12:54:36 [ 11] [ 6] [807161] +12:54:36 [ 15] [ 4] [0320] +12:54:36 [ 37] [ 12] [57912807161] +12:54:36 [ 39] [ 2] [00] +12:54:36 [ 70] [ 3] [001] +12:54:36 ============================================================================ +12:54:36 Sending to : +12:54:36 ============================================================================ +12:54:36 + + +waiting on router queue for slot.... +12:54:36 ============================================================================ +12:54:36 Slot Id : <27> +12:54:36 Transaction Type : REQUEST +12:54:36 Received From : +12:54:36 ============================================================================ +12:54:36 FNo. Len. Field Value +12:54:36 ============================================================================ +12:54:36 [ 1] [ 4] [0200] +12:54:36 [ 2] [ 16] [2206990000113787] +12:54:36 [ 3] [ 6] [011000] +12:54:36 [ 4] [ 12] [000010000000] +12:54:36 [ 7] [ 10] [0320125431] +12:54:36 [ 11] [ 6] [750450] +12:54:36 [ 12] [ 6] [125431] +12:54:36 [ 13] [ 4] [0320] +12:54:36 [ 15] [ 4] [0320] +12:54:36 [ 18] [ 4] [6011] +12:54:36 [ 22] [ 3] [900] +12:54:36 [ 25] [ 2] [02] +12:54:36 [ 28] [ 9] [D00002000] +12:54:36 [ 32] [ 6] [621354] +12:54:36 [ 35] [ 32] [2206990000113787=980112617899345] +12:54:36 [ 37] [ 12] [507904119878] +12:54:36 [ 41] [ 8] [08000800] +12:54:36 [ 42] [ 15] [NATIVE ] +12:54:36 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:54:36 [ 49] [ 3] [418] +12:54:36 [ 52] [ 16] [196ABF66FAC24C0A] +12:54:36 ============================================================================ +12:54:36 + + +waiting on router queue for slot.... +12:54:36 Sending to : +12:54:36 ============================================================================ +12:54:36 ============================================================================ +12:54:36 Slot Id : <20> +12:54:36 Transaction Type : REQUEST +12:54:36 Received From : +12:54:36 ============================================================================ +12:54:36 FNo. Len. Field Value +12:54:36 ============================================================================ +12:54:36 [ 1] [ 4] [0200] +12:54:36 [ 2] [ 16] [6213543000248004] +12:54:36 [ 3] [ 6] [301000] +12:54:36 [ 4] [ 12] [000000000000] +12:54:36 [ 7] [ 10] [0320125457] +12:54:36 [ 11] [ 6] [205934] +12:54:36 [ 12] [ 6] [124910] +12:54:36 [ 13] [ 4] [0320] +12:54:36 [ 14] [ 4] [4912] +12:54:36 [ 15] [ 4] [0320] +12:54:36 [ 18] [ 4] [6011] +12:54:36 [ 19] [ 3] [418] +12:54:36 [ 22] [ 3] [021] +12:54:36 [ 25] [ 2] [01] +12:54:36 [ 28] [ 9] [D00000000] +12:54:36 [ 32] [ 6] [198901] +12:54:36 [ 35] [ 32] [6213543000248004=491212014800423] +12:54:36 [ 37] [ 12] [507912205934] +12:54:36 [ 41] [ 8] [01529018] +12:54:36 [ 42] [ 15] [000000041529018] +12:54:36 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +12:54:36 [ 49] [ 3] [418] +12:54:36 [ 52] [ 16] [3B1E6F9245A69082] +12:54:36 ============================================================================ +12:54:36 + + +waiting on router queue for slot.... +12:54:36 Sending to : +12:54:36 ============================================================================ +12:54:36 Sending to : +12:54:36 ============================================================================ +12:54:36 ============================================================================ +12:54:36 Slot Id : <27> +12:54:36 Transaction Type : REQUEST +12:54:36 Received From : +12:54:36 ============================================================================ +12:54:36 FNo. Len. Field Value +12:54:36 ============================================================================ +12:54:36 [ 1] [ 4] [0200] +12:54:36 [ 2] [ 16] [2206990000113787] +12:54:36 [ 3] [ 6] [011000] +12:54:36 [ 4] [ 12] [000010000000] +12:54:36 [ 7] [ 10] [0320125431] +12:54:36 [ 11] [ 6] [750450] +12:54:36 [ 12] [ 6] [125431] +12:54:36 [ 13] [ 4] [0320] +12:54:36 [ 15] [ 4] [0320] +12:54:36 [ 18] [ 4] [6011] +12:54:36 [ 22] [ 3] [900] +12:54:36 [ 25] [ 2] [02] +12:54:36 [ 28] [ 9] [D00002000] +12:54:36 [ 32] [ 6] [621354] +12:54:36 [ 35] [ 32] [2206990000113787=980112617899345] +12:54:36 [ 37] [ 12] [507904119878] +12:54:36 [ 41] [ 8] [08000800] +12:54:36 [ 42] [ 15] [NATIVE ] +12:54:36 [ 43] [ 40] [Attapeu Branch04 Xaysetha LAO] +12:54:36 [ 49] [ 3] [418] +12:54:36 [ 52] [ 16] [DCBA0A5EA3FC2BEF] +12:54:36 ============================================================================ +12:54:36 + + +waiting on router queue for slot.... +12:54:36 Sending to : <1> +12:54:36 ============================================================================ +12:54:37 ============================================================================ +12:54:37 Slot Id : <20> +12:54:37 Transaction Type : REQUEST +12:54:37 Received From : +12:54:37 ============================================================================ +12:54:37 FNo. Len. Field Value +12:54:37 ============================================================================ +12:54:37 [ 1] [ 4] [0200] +12:54:37 [ 2] [ 16] [6213543000248004] +12:54:37 [ 3] [ 6] [301000] +12:54:37 [ 4] [ 12] [000000000000] +12:54:37 [ 7] [ 10] [0320125457] +12:54:37 [ 11] [ 6] [205934] +12:54:37 [ 12] [ 6] [124910] +12:54:37 [ 13] [ 4] [0320] +12:54:37 [ 14] [ 4] [4912] +12:54:37 [ 15] [ 4] [0320] +12:54:37 [ 18] [ 4] [6011] +12:54:37 [ 19] [ 3] [418] +12:54:37 [ 22] [ 3] [021] +12:54:37 [ 25] [ 2] [01] +12:54:37 [ 28] [ 9] [D00000000] +12:54:37 [ 32] [ 6] [198901] +12:54:37 [ 35] [ 32] [6213543000248004=491212014800423] +12:54:37 [ 37] [ 12] [507912205934] +12:54:37 [ 41] [ 8] [01529018] +12:54:37 [ 42] [ 15] [000000041529018] +12:54:37 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +12:54:37 [ 49] [ 3] [418] +12:54:37 [ 52] [ 16] [3B1E6F9245A69082] +12:54:37 ============================================================================ +12:54:37 + + +waiting on router queue for slot.... +12:54:37 Sending to : +12:54:37 ============================================================================ +12:54:37 ============================================================================ +12:54:37 Slot Id : <20> +12:54:37 Transaction Type : REQUEST +12:54:37 Received From : +12:54:37 ============================================================================ +12:54:37 FNo. Len. Field Value +12:54:37 ============================================================================ +12:54:37 [ 1] [ 4] [0200] +12:54:37 [ 2] [ 16] [6213543000248004] +12:54:37 [ 3] [ 6] [301000] +12:54:37 [ 4] [ 12] [000000000000] +12:54:37 [ 7] [ 10] [0320125457] +12:54:37 [ 11] [ 6] [205934] +12:54:37 [ 12] [ 6] [124910] +12:54:37 [ 13] [ 4] [0320] +12:54:37 [ 14] [ 4] [4912] +12:54:37 [ 15] [ 4] [0320] +12:54:37 [ 18] [ 4] [6011] +12:54:37 [ 19] [ 3] [418] +12:54:37 [ 22] [ 3] [021] +12:54:37 [ 25] [ 2] [01] +12:54:37 [ 28] [ 9] [D00000000] +12:54:37 [ 32] [ 6] [198901] +12:54:37 [ 35] [ 32] [6213543000248004=491212014800423] +12:54:37 [ 37] [ 12] [507912205934] +12:54:37 [ 41] [ 8] [01529018] +12:54:37 [ 42] [ 15] [000000041529018] +12:54:37 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +12:54:37 [ 49] [ 3] [418] +12:54:37 [ 52] [ 16] [FAC33174F864DC50] +12:54:37 ============================================================================ +12:54:37 + + +waiting on router queue for slot.... +12:54:37 Sending to : <0> +12:54:37 ============================================================================ +12:54:37 ============================================================================ +12:54:37 Slot Id : <20> +12:54:37 Transaction Type : RESPONSE +12:54:37 Received From : +12:54:37 ============================================================================ +12:54:37 FNo. Len. Field Value +12:54:37 ============================================================================ +12:54:37 [ 1] [ 4] [0210] +12:54:37 [ 2] [ 16] [6213543000248004] +12:54:37 [ 3] [ 6] [301000] +12:54:37 [ 4] [ 12] [000000000000] +12:54:37 [ 7] [ 10] [0320125457] +12:54:37 [ 11] [ 6] [205934] +12:54:37 [ 12] [ 6] [124910] +12:54:37 [ 13] [ 4] [0320] +12:54:37 [ 15] [ 4] [0320] +12:54:37 [ 18] [ 4] [6011] +12:54:37 [ 19] [ 3] [418] +12:54:37 [ 32] [ 6] [198901] +12:54:37 [ 35] [ 32] [6213543000248004=491212014800423] +12:54:37 [ 37] [ 12] [507912205934] +12:54:37 [ 38] [ 6] [666104] +12:54:37 [ 39] [ 2] [00] +12:54:37 [ 41] [ 8] [01529018] +12:54:37 [ 49] [ 3] [418] +12:54:37 [ 54] [ 40] [1001418C0000200000001002418C000020000000] +12:54:37 ============================================================================ +12:54:37 Sending to : +12:54:37 ============================================================================ +12:54:37 + + +waiting on router queue for slot.... +12:54:38 ============================================================================ +12:54:38 Slot Id : <27> +12:54:38 Transaction Type : RESPONSE +12:54:38 Received From : +12:54:38 ============================================================================ +12:54:38 FNo. Len. Field Value +12:54:38 ============================================================================ +12:54:38 [ 1] [ 4] [0210] +12:54:38 [ 2] [ 16] [2206990000113787] +12:54:38 [ 3] [ 6] [011000] +12:54:38 [ 4] [ 12] [000010000000] +12:54:38 [ 7] [ 10] [0320125431] +12:54:38 [ 11] [ 6] [750450] +12:54:38 [ 12] [ 6] [125431] +12:54:38 [ 13] [ 4] [0320] +12:54:38 [ 15] [ 4] [0320] +12:54:38 [ 18] [ 4] [6011] +12:54:38 [ 32] [ 6] [621354] +12:54:38 [ 35] [ 32] [2206990000113787=980112617899345] +12:54:38 [ 37] [ 12] [507904119878] +12:54:38 [ 38] [ 6] [846547] +12:54:38 [ 39] [ 2] [00] +12:54:38 [ 41] [ 8] [08000800] +12:54:38 [ 49] [ 3] [418] +12:54:38 [ 54] [ 40] [1001418C0000129616001002418C000012961600] +12:54:38 ============================================================================ +12:54:38 Sending to : +12:54:38 ============================================================================ +12:54:38 + + +waiting on router queue for slot.... +12:54:38 ============================================================================ +12:54:38 Slot Id : <20> +12:54:38 Transaction Type : RESPONSE +12:54:38 Received From : +12:54:38 ============================================================================ +12:54:38 FNo. Len. Field Value +12:54:38 ============================================================================ +12:54:38 [ 1] [ 4] [0210] +12:54:38 [ 2] [ 16] [6213543000248004] +12:54:38 [ 3] [ 6] [301000] +12:54:38 [ 4] [ 12] [000000000000] +12:54:38 [ 7] [ 10] [0320125457] +12:54:38 [ 11] [ 6] [205934] +12:54:38 [ 12] [ 6] [124910] +12:54:38 [ 13] [ 4] [0320] +12:54:38 [ 15] [ 4] [0320] +12:54:38 [ 18] [ 4] [6011] +12:54:38 [ 19] [ 3] [418] +12:54:38 [ 32] [ 6] [198901] +12:54:38 [ 35] [ 32] [6213543000248004=491212014800423] +12:54:38 [ 37] [ 12] [507912205934] +12:54:38 [ 38] [ 6] [666104] +12:54:38 [ 39] [ 2] [00] +12:54:38 [ 41] [ 8] [01529018] +12:54:38 [ 49] [ 3] [418] +12:54:38 [ 54] [ 40] [1001418C0000200000001002418C000020000000] +12:54:38 ============================================================================ +12:54:38 Calculate Source COMM Id = 5 +12:54:38 ============================================================================ +12:54:38 + + +waiting on router queue for slot.... +12:54:40 ============================================================================ +12:54:40 Slot Id : <27> +12:54:40 Transaction Type : RESPONSE +12:54:40 Received From : +12:54:40 ============================================================================ +12:54:40 FNo. Len. Field Value +12:54:40 ============================================================================ +12:54:40 [ 1] [ 4] [0210] +12:54:40 [ 2] [ 16] [2206990000113787] +12:54:40 [ 3] [ 6] [011000] +12:54:40 [ 4] [ 12] [000010000000] +12:54:40 [ 7] [ 10] [0320125431] +12:54:40 [ 11] [ 6] [750450] +12:54:40 [ 12] [ 6] [125431] +12:54:40 [ 13] [ 4] [0320] +12:54:40 [ 15] [ 4] [0320] +12:54:40 [ 18] [ 4] [6011] +12:54:40 [ 32] [ 6] [621354] +12:54:40 [ 35] [ 32] [2206990000113787=980112617899345] +12:54:40 [ 37] [ 12] [507904119878] +12:54:40 [ 38] [ 6] [846547] +12:54:40 [ 39] [ 2] [00] +12:54:40 [ 41] [ 8] [08000800] +12:54:40 [ 49] [ 3] [418] +12:54:40 [ 54] [ 40] [1001418C0000129616001002418C000012961600] +12:54:40 ============================================================================ +12:54:40 Calculate Source COMM Id = 0 +12:54:40 ============================================================================ +12:54:40 + + +waiting on router queue for slot.... +12:54:42 ============================================================================ +12:54:42 Slot Id : <48> +12:54:42 Transaction Type : REQUEST +12:54:42 Received From : +12:54:42 ============================================================================ +12:54:42 FNo. Len. Field Value +12:54:42 ============================================================================ +12:54:42 [ 1] [ 4] [0800] +12:54:42 [ 7] [ 10] [0320055349] +12:54:42 [ 11] [ 6] [156421] +12:54:42 [ 70] [ 3] [301] +12:54:42 ============================================================================ +12:54:42 + + +waiting on router queue for slot.... +12:54:42 Sending to : +12:54:42 ============================================================================ +12:54:42 ============================================================================ +12:54:42 Slot Id : <48> +12:54:42 Transaction Type : RESPONSE +12:54:42 Received From : +12:54:42 ============================================================================ +12:54:42 FNo. Len. Field Value +12:54:42 ============================================================================ +12:54:42 [ 1] [ 4] [0810] +12:54:42 [ 7] [ 10] [0320055349] +12:54:42 [ 11] [ 6] [156421] +12:54:42 [ 39] [ 2] [00] +12:54:42 [ 70] [ 3] [301] +12:54:42 ============================================================================ +12:54:42 Calculate Source COMM Id = 2 +12:54:42 ============================================================================ +12:54:42 + + +waiting on router queue for slot.... +12:54:55 ============================================================================ +12:54:55 Slot Id : <46> +12:54:55 Transaction Type : REQUEST +12:54:55 Received From : +12:54:55 ============================================================================ +12:54:55 FNo. Len. Field Value +12:54:55 ============================================================================ +12:54:55 [ 1] [ 4] [0800] +12:54:55 [ 7] [ 10] [0320060242] +12:54:55 [ 11] [ 6] [088837] +12:54:55 [ 37] [ 12] [57913088837] +12:54:55 [ 70] [ 3] [301] +12:54:55 ============================================================================ +12:54:55 + + +waiting on router queue for slot.... +12:54:55 Sending to : +12:54:55 ============================================================================ +12:54:55 ============================================================================ +12:54:55 Slot Id : <46> +12:54:55 Transaction Type : RESPONSE +12:54:55 Received From : +12:54:55 ============================================================================ +12:54:55 FNo. Len. Field Value +12:54:55 ============================================================================ +12:54:55 [ 1] [ 4] [0810] +12:54:55 [ 7] [ 10] [0320060242] +12:54:55 [ 11] [ 6] [088837] +12:54:55 [ 37] [ 12] [579130888370] +12:54:55 [ 39] [ 2] [00] +12:54:55 [ 70] [ 3] [810] +12:54:55 ============================================================================ +12:54:55 Calculate Source COMM Id = 1 +12:54:55 ============================================================================ +12:54:55 + + +waiting on router queue for slot.... +12:54:57 ============================================================================ +12:54:57 Slot Id : <58> +12:54:57 Transaction Type : REQUEST +12:54:57 Received From : +12:54:57 ============================================================================ +12:54:57 FNo. Len. Field Value +12:54:57 ============================================================================ +12:54:57 [ 1] [ 4] [0800] +12:54:57 [ 7] [ 10] [0320055405] +12:54:57 [ 11] [ 6] [156422] +12:54:57 [ 70] [ 3] [301] +12:54:57 ============================================================================ +12:54:57 + + +waiting on router queue for slot.... +12:54:57 Sending to : +12:54:57 ============================================================================ +12:54:57 ============================================================================ +12:54:57 Slot Id : <58> +12:54:57 Transaction Type : RESPONSE +12:54:57 Received From : +12:54:57 ============================================================================ +12:54:57 FNo. Len. Field Value +12:54:57 ============================================================================ +12:54:57 [ 1] [ 4] [0810] +12:54:57 [ 7] [ 10] [0320055405] +12:54:57 [ 11] [ 6] [156422] +12:54:57 [ 39] [ 2] [00] +12:54:57 [ 70] [ 3] [301] +12:54:57 ============================================================================ +12:54:57 Calculate Source COMM Id = 2 +12:54:57 ============================================================================ +12:54:57 + + +waiting on router queue for slot.... +12:55:09 ============================================================================ +12:55:09 Slot Id : <19> +12:55:09 Transaction Type : REQUEST +12:55:09 Received From : +12:55:09 ============================================================================ +12:55:09 FNo. Len. Field Value +12:55:09 ============================================================================ +12:55:09 [ 1] [ 4] [0800] +12:55:09 [ 7] [ 10] [0320055416] +12:55:09 [ 11] [ 6] [156423] +12:55:09 [ 70] [ 3] [301] +12:55:09 ============================================================================ +12:55:09 + + +waiting on router queue for slot.... +12:55:09 Sending to : +12:55:09 ============================================================================ +12:55:09 ============================================================================ +12:55:09 Slot Id : <19> +12:55:09 Transaction Type : RESPONSE +12:55:09 Received From : +12:55:09 ============================================================================ +12:55:09 FNo. Len. Field Value +12:55:09 ============================================================================ +12:55:09 [ 1] [ 4] [0810] +12:55:09 [ 7] [ 10] [0320055416] +12:55:09 [ 11] [ 6] [156423] +12:55:09 [ 39] [ 2] [00] +12:55:09 [ 70] [ 3] [301] +12:55:09 ============================================================================ +12:55:09 Calculate Source COMM Id = 2 +12:55:09 ============================================================================ +12:55:09 + + +waiting on router queue for slot.... +12:55:10 ============================================================================ +12:55:10 Slot Id : <69> +12:55:10 Transaction Type : REQUEST +12:55:10 Received From : +12:55:10 ============================================================================ +12:55:10 FNo. Len. Field Value +12:55:10 ============================================================================ +12:55:10 [ 1] [ 4] [0200] +12:55:10 [ 2] [ 16] [1808930500011697] +12:55:10 [ 3] [ 6] [011000] +12:55:10 [ 4] [ 12] [000030000000] +12:55:10 [ 7] [ 10] [0320125505] +12:55:10 [ 11] [ 6] [750555] +12:55:10 [ 12] [ 6] [125505] +12:55:10 [ 13] [ 4] [0320] +12:55:10 [ 15] [ 4] [0320] +12:55:10 [ 18] [ 4] [6011] +12:55:10 [ 22] [ 3] [900] +12:55:10 [ 25] [ 2] [02] +12:55:10 [ 28] [ 9] [D00002000] +12:55:10 [ 32] [ 6] [621354] +12:55:10 [ 35] [ 27] [1808930500011697=1803500324] +12:55:10 [ 37] [ 12] [507903226599] +12:55:10 [ 41] [ 8] [04003200] +12:55:10 [ 42] [ 15] [NATIVE ] +12:55:10 [ 43] [ 40] [DONKHONG Kong LAO] +12:55:10 [ 49] [ 3] [418] +12:55:10 [ 52] [ 16] [FFA6B7E700E2868D] +12:55:10 ============================================================================ +12:55:10 + + +waiting on router queue for slot.... +12:55:10 Sending to : +12:55:10 ============================================================================ +12:55:10 Sending to : +12:55:10 ============================================================================ +12:55:10 ============================================================================ +12:55:10 Slot Id : <69> +12:55:10 Transaction Type : REQUEST +12:55:10 Received From : +12:55:10 ============================================================================ +12:55:10 FNo. Len. Field Value +12:55:10 ============================================================================ +12:55:10 [ 1] [ 4] [0200] +12:55:10 [ 2] [ 16] [1808930500011697] +12:55:10 [ 3] [ 6] [011000] +12:55:10 [ 4] [ 12] [000030000000] +12:55:10 [ 7] [ 10] [0320125505] +12:55:10 [ 11] [ 6] [750555] +12:55:10 [ 12] [ 6] [125505] +12:55:10 [ 13] [ 4] [0320] +12:55:10 [ 15] [ 4] [0320] +12:55:10 [ 18] [ 4] [6011] +12:55:10 [ 22] [ 3] [900] +12:55:10 [ 25] [ 2] [02] +12:55:10 [ 28] [ 9] [D00002000] +12:55:10 [ 32] [ 6] [621354] +12:55:10 [ 35] [ 27] [1808930500011697=1803500324] +12:55:10 [ 37] [ 12] [507903226599] +12:55:10 [ 41] [ 8] [04003200] +12:55:10 [ 42] [ 15] [NATIVE ] +12:55:10 [ 43] [ 40] [DONKHONG Kong LAO] +12:55:10 [ 49] [ 3] [418] +12:55:10 [ 52] [ 16] [FFA6B7E700E2868D] +12:55:10 ============================================================================ +12:55:10 + + +waiting on router queue for slot.... +12:55:10 Sending to : +12:55:10 ============================================================================ +12:55:10 ============================================================================ +12:55:10 Slot Id : <69> +12:55:10 Transaction Type : REQUEST +12:55:10 Received From : +12:55:10 ============================================================================ +12:55:10 FNo. Len. Field Value +12:55:10 ============================================================================ +12:55:10 [ 1] [ 4] [0200] +12:55:10 [ 2] [ 16] [1808930500011697] +12:55:10 [ 3] [ 6] [011000] +12:55:10 [ 4] [ 12] [000030000000] +12:55:10 [ 7] [ 10] [0320125505] +12:55:10 [ 11] [ 6] [750555] +12:55:10 [ 12] [ 6] [125505] +12:55:10 [ 13] [ 4] [0320] +12:55:10 [ 15] [ 4] [0320] +12:55:10 [ 18] [ 4] [6011] +12:55:10 [ 22] [ 3] [900] +12:55:10 [ 25] [ 2] [02] +12:55:10 [ 28] [ 9] [D00002000] +12:55:10 [ 32] [ 6] [621354] +12:55:10 [ 35] [ 27] [1808930500011697=1803500324] +12:55:10 [ 37] [ 12] [507903226599] +12:55:10 [ 41] [ 8] [04003200] +12:55:10 [ 42] [ 15] [NATIVE ] +12:55:10 [ 43] [ 40] [DONKHONG Kong LAO] +12:55:10 [ 49] [ 3] [418] +12:55:10 [ 52] [ 16] [3C953DCB4BB70784] +12:55:10 ============================================================================ +12:55:10 + + +waiting on router queue for slot.... +12:55:10 Sending to : <2> +12:55:10 ============================================================================ +12:55:14 ============================================================================ +12:55:14 Slot Id : <47> +12:55:14 Transaction Type : REQUEST +12:55:14 Received From : +12:55:14 ============================================================================ +12:55:14 FNo. Len. Field Value +12:55:14 ============================================================================ +12:55:14 [ 1] [ 4] [0200] +12:55:14 [ 2] [ 16] [6213544001146650] +12:55:14 [ 3] [ 6] [300000] +12:55:14 [ 4] [ 12] [000000000000] +12:55:14 [ 7] [ 10] [0320125304] +12:55:14 [ 11] [ 6] [945220] +12:55:14 [ 12] [ 6] [125304] +12:55:14 [ 13] [ 4] [0320] +12:55:14 [ 15] [ 4] [0320] +12:55:14 [ 18] [ 4] [6011] +12:55:14 [ 19] [ 3] [418] +12:55:14 [ 22] [ 3] [021] +12:55:14 [ 25] [ 2] [01] +12:55:14 [ 28] [ 9] [D00000000] +12:55:14 [ 32] [ 6] [668899] +12:55:14 [ 35] [ 32] [6213544001146650=491212014665263] +12:55:14 [ 37] [ 12] [507902150975] +12:55:14 [ 41] [ 8] [03020025] +12:55:14 [ 42] [ 15] [APT ] +12:55:14 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:55:14 [ 49] [ 3] [418] +12:55:14 [ 52] [ 16] [34CC6FB2E41958D4] +12:55:14 ============================================================================ +12:55:14 + + +waiting on router queue for slot.... +12:55:14 Sending to : +12:55:14 ============================================================================ +12:55:14 Sending to : +12:55:14 ============================================================================ +12:55:14 ============================================================================ +12:55:14 Slot Id : <69> +12:55:14 Transaction Type : RESPONSE +12:55:14 Received From : +12:55:14 ============================================================================ +12:55:14 FNo. Len. Field Value +12:55:14 ============================================================================ +12:55:14 [ 1] [ 4] [0210] +12:55:14 [ 2] [ 16] [1808930500011697] +12:55:14 [ 3] [ 6] [011000] +12:55:14 [ 4] [ 12] [000030000000] +12:55:14 [ 6] [ 12] [000030000000] +12:55:14 [ 7] [ 10] [0320125505] +12:55:14 [ 11] [ 6] [750555] +12:55:14 [ 12] [ 6] [125505] +12:55:14 [ 13] [ 4] [0320] +12:55:14 [ 18] [ 4] [6011] +12:55:14 [ 19] [ 3] [418] +12:55:14 [ 22] [ 3] [021] +12:55:14 [ 32] [ 6] [621354] +12:55:14 [ 35] [ 27] [1808930500011697=1803500324] +12:55:14 [ 37] [ 12] [507903226599] +12:55:14 [ 38] [ 6] [750555] +12:55:14 [ 39] [ 2] [51] +12:55:14 [ 41] [ 8] [04003200] +12:55:14 [ 49] [ 3] [418] +12:55:14 [ 52] [ 16] [3C953DCB4BB70784] +12:55:14 ============================================================================ +12:55:14 Sending to : +12:55:14 ============================================================================ +12:55:14 + + +waiting on router queue for slot.... +12:55:14 ============================================================================ +12:55:14 Slot Id : <47> +12:55:14 Transaction Type : REQUEST +12:55:14 Received From : +12:55:14 ============================================================================ +12:55:14 FNo. Len. Field Value +12:55:14 ============================================================================ +12:55:14 [ 1] [ 4] [0200] +12:55:14 [ 2] [ 16] [6213544001146650] +12:55:14 [ 3] [ 6] [300000] +12:55:14 [ 4] [ 12] [000000000000] +12:55:14 [ 7] [ 10] [0320125304] +12:55:14 [ 11] [ 6] [945220] +12:55:14 [ 12] [ 6] [125304] +12:55:14 [ 13] [ 4] [0320] +12:55:14 [ 15] [ 4] [0320] +12:55:14 [ 18] [ 4] [6011] +12:55:14 [ 19] [ 3] [418] +12:55:14 [ 22] [ 3] [021] +12:55:14 [ 25] [ 2] [01] +12:55:14 [ 28] [ 9] [D00000000] +12:55:14 [ 32] [ 6] [668899] +12:55:14 [ 35] [ 32] [6213544001146650=491212014665263] +12:55:14 [ 37] [ 12] [507902150975] +12:55:14 [ 41] [ 8] [03020025] +12:55:14 [ 42] [ 15] [APT ] +12:55:14 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:55:14 [ 49] [ 3] [418] +12:55:14 [ 52] [ 16] [34CC6FB2E41958D4] +12:55:14 ============================================================================ +12:55:14 + + +waiting on router queue for slot.... +12:55:14 Sending to : +12:55:14 ============================================================================ +12:55:14 ============================================================================ +12:55:14 Slot Id : <47> +12:55:14 Transaction Type : REQUEST +12:55:14 Received From : +12:55:14 ============================================================================ +12:55:14 FNo. Len. Field Value +12:55:14 ============================================================================ +12:55:14 [ 1] [ 4] [0200] +12:55:14 [ 2] [ 16] [6213544001146650] +12:55:14 [ 3] [ 6] [300000] +12:55:14 [ 4] [ 12] [000000000000] +12:55:14 [ 7] [ 10] [0320125304] +12:55:14 [ 11] [ 6] [945220] +12:55:14 [ 12] [ 6] [125304] +12:55:14 [ 13] [ 4] [0320] +12:55:14 [ 15] [ 4] [0320] +12:55:14 [ 18] [ 4] [6011] +12:55:14 [ 19] [ 3] [418] +12:55:14 [ 22] [ 3] [021] +12:55:14 [ 25] [ 2] [01] +12:55:14 [ 28] [ 9] [D00000000] +12:55:14 [ 32] [ 6] [668899] +12:55:14 [ 35] [ 32] [6213544001146650=491212014665263] +12:55:14 [ 37] [ 12] [507902150975] +12:55:14 [ 41] [ 8] [03020025] +12:55:14 [ 42] [ 15] [APT ] +12:55:14 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:55:14 [ 49] [ 3] [418] +12:55:14 [ 52] [ 16] [0B38DCED60A767BD] +12:55:14 ============================================================================ +12:55:14 + + +waiting on router queue for slot.... +12:55:14 Sending to : <0> +12:55:14 ============================================================================ +12:55:14 ============================================================================ +12:55:14 Slot Id : <47> +12:55:14 Transaction Type : RESPONSE +12:55:14 Received From : +12:55:14 ============================================================================ +12:55:14 FNo. Len. Field Value +12:55:14 ============================================================================ +12:55:14 [ 1] [ 4] [0210] +12:55:14 [ 2] [ 16] [6213544001146650] +12:55:14 [ 3] [ 6] [300000] +12:55:14 [ 4] [ 12] [000000000000] +12:55:14 [ 7] [ 10] [0320125304] +12:55:14 [ 11] [ 6] [945220] +12:55:14 [ 12] [ 6] [125304] +12:55:14 [ 13] [ 4] [0320] +12:55:14 [ 15] [ 4] [0320] +12:55:14 [ 18] [ 4] [6011] +12:55:14 [ 19] [ 3] [418] +12:55:14 [ 22] [ 3] [021] +12:55:14 [ 32] [ 6] [668899] +12:55:14 [ 35] [ 32] [6213544001146650=491212014665263] +12:55:14 [ 37] [ 12] [507902150975] +12:55:14 [ 38] [ 6] [125510] +12:55:14 [ 39] [ 2] [55] +12:55:14 [ 41] [ 8] [03020025] +12:55:14 [ 49] [ 3] [418] +12:55:14 ============================================================================ +12:55:14 Sending to : +12:55:14 ============================================================================ +12:55:14 + + +waiting on router queue for slot.... +12:55:15 ============================================================================ +12:55:15 Slot Id : <69> +12:55:15 Transaction Type : RESPONSE +12:55:15 Received From : +12:55:15 ============================================================================ +12:55:15 FNo. Len. Field Value +12:55:15 ============================================================================ +12:55:15 [ 1] [ 4] [0210] +12:55:15 [ 2] [ 16] [1808930500011697] +12:55:15 [ 3] [ 6] [011000] +12:55:15 [ 4] [ 12] [000030000000] +12:55:15 [ 6] [ 12] [000030000000] +12:55:15 [ 7] [ 10] [0320125505] +12:55:15 [ 11] [ 6] [750555] +12:55:15 [ 12] [ 6] [125505] +12:55:15 [ 13] [ 4] [0320] +12:55:15 [ 18] [ 4] [6011] +12:55:15 [ 19] [ 3] [418] +12:55:15 [ 22] [ 3] [021] +12:55:15 [ 32] [ 6] [621354] +12:55:15 [ 35] [ 27] [1808930500011697=1803500324] +12:55:15 [ 37] [ 12] [507903226599] +12:55:15 [ 38] [ 6] [750555] +12:55:15 [ 39] [ 2] [51] +12:55:15 [ 41] [ 8] [04003200] +12:55:15 [ 49] [ 3] [418] +12:55:15 [ 52] [ 16] [3C953DCB4BB70784] +12:55:15 ============================================================================ +12:55:15 Calculate Source COMM Id = 0 +12:55:15 ============================================================================ +12:55:15 + + +waiting on router queue for slot.... +12:55:16 ============================================================================ +12:55:16 Slot Id : <47> +12:55:16 Transaction Type : RESPONSE +12:55:16 Received From : +12:55:16 ============================================================================ +12:55:16 FNo. Len. Field Value +12:55:16 ============================================================================ +12:55:16 [ 1] [ 4] [0210] +12:55:16 [ 2] [ 16] [6213544001146650] +12:55:16 [ 3] [ 6] [300000] +12:55:16 [ 4] [ 12] [000000000000] +12:55:16 [ 7] [ 10] [0320125304] +12:55:16 [ 11] [ 6] [945220] +12:55:16 [ 12] [ 6] [125304] +12:55:16 [ 13] [ 4] [0320] +12:55:16 [ 15] [ 4] [0320] +12:55:16 [ 18] [ 4] [6011] +12:55:16 [ 19] [ 3] [418] +12:55:16 [ 22] [ 3] [021] +12:55:16 [ 32] [ 6] [668899] +12:55:16 [ 35] [ 32] [6213544001146650=491212014665263] +12:55:16 [ 37] [ 12] [507902150975] +12:55:16 [ 38] [ 6] [125510] +12:55:16 [ 39] [ 2] [55] +12:55:16 [ 41] [ 8] [03020025] +12:55:16 [ 49] [ 3] [418] +12:55:16 ============================================================================ +12:55:16 Calculate Source COMM Id = 4 +12:55:16 ============================================================================ +12:55:16 + + +waiting on router queue for slot.... +12:55:25 ============================================================================ +12:55:25 Slot Id : <78> +12:55:25 Transaction Type : REQUEST +12:55:25 Received From : +12:55:25 ============================================================================ +12:55:25 FNo. Len. Field Value +12:55:25 ============================================================================ +12:55:25 [ 1] [ 4] [0800] +12:55:25 [ 7] [ 10] [0320055432] +12:55:25 [ 11] [ 6] [156424] +12:55:25 [ 70] [ 3] [301] +12:55:25 ============================================================================ +12:55:25 + + +waiting on router queue for slot.... +12:55:25 Sending to : +12:55:25 ============================================================================ +12:55:25 ============================================================================ +12:55:25 Slot Id : <78> +12:55:25 Transaction Type : RESPONSE +12:55:25 Received From : +12:55:25 ============================================================================ +12:55:25 FNo. Len. Field Value +12:55:25 ============================================================================ +12:55:25 [ 1] [ 4] [0810] +12:55:25 [ 7] [ 10] [0320055432] +12:55:25 [ 11] [ 6] [156424] +12:55:25 [ 39] [ 2] [00] +12:55:25 [ 70] [ 3] [301] +12:55:25 ============================================================================ +12:55:25 Calculate Source COMM Id = 2 +12:55:25 ============================================================================ +12:55:25 + + +waiting on router queue for slot.... +12:55:38 ============================================================================ +12:55:38 Slot Id : <81> +12:55:38 Transaction Type : REQUEST +12:55:38 Received From : +12:55:38 ============================================================================ +12:55:38 FNo. Len. Field Value +12:55:38 ============================================================================ +12:55:38 [ 1] [ 4] [0800] +12:55:38 [ 2] [ 5] [02531] +12:55:38 [ 3] [ 6] [579128] +12:55:38 [ 7] [ 10] [0320055538] +12:55:38 [ 11] [ 6] [807162] +12:55:38 [ 15] [ 10] [0320055538] +12:55:38 [ 37] [ 11] [57912807162] +12:55:38 [ 70] [ 3] [001] +12:55:38 ============================================================================ +12:55:38 + + +waiting on router queue for slot.... +12:55:38 ============================================================================ +12:55:38 Slot Id : <81> +12:55:38 Transaction Type : RESPONSE +12:55:38 Received From : +12:55:38 ============================================================================ +12:55:38 FNo. Len. Field Value +12:55:38 ============================================================================ +12:55:38 [ 1] [ 4] [0810] +12:55:38 [ 7] [ 10] [0320055538] +12:55:38 [ 11] [ 6] [807162] +12:55:38 [ 15] [ 4] [0320] +12:55:38 [ 37] [ 12] [57912807162] +12:55:38 [ 39] [ 2] [00] +12:55:38 [ 70] [ 3] [001] +12:55:38 ============================================================================ +12:55:38 Sending to : +12:55:38 ============================================================================ +12:55:38 + + +waiting on router queue for slot.... +12:55:40 ============================================================================ +12:55:40 Slot Id : <54> +12:55:40 Transaction Type : REQUEST +12:55:40 Received From : +12:55:40 ============================================================================ +12:55:40 FNo. Len. Field Value +12:55:40 ============================================================================ +12:55:40 [ 1] [ 4] [0800] +12:55:40 [ 7] [ 10] [0320055448] +12:55:40 [ 11] [ 6] [156425] +12:55:40 [ 70] [ 3] [301] +12:55:40 ============================================================================ +12:55:40 + + +waiting on router queue for slot.... +12:55:40 Sending to : +12:55:40 ============================================================================ +12:55:40 ============================================================================ +12:55:40 Slot Id : <54> +12:55:40 Transaction Type : RESPONSE +12:55:40 Received From : +12:55:40 ============================================================================ +12:55:40 FNo. Len. Field Value +12:55:40 ============================================================================ +12:55:40 [ 1] [ 4] [0810] +12:55:40 [ 7] [ 10] [0320055448] +12:55:40 [ 11] [ 6] [156425] +12:55:40 [ 39] [ 2] [00] +12:55:40 [ 70] [ 3] [301] +12:55:40 ============================================================================ +12:55:40 Calculate Source COMM Id = 2 +12:55:40 ============================================================================ +12:55:40 + + +waiting on router queue for slot.... +12:55:56 ============================================================================ +12:55:56 Slot Id : <24> +12:55:56 Transaction Type : REQUEST +12:55:56 Received From : +12:55:56 ============================================================================ +12:55:56 FNo. Len. Field Value +12:55:56 ============================================================================ +12:55:56 [ 1] [ 4] [0800] +12:55:56 [ 7] [ 10] [0320055504] +12:55:56 [ 11] [ 6] [156426] +12:55:56 [ 70] [ 3] [301] +12:55:56 ============================================================================ +12:55:56 + + +waiting on router queue for slot.... +12:55:56 Sending to : +12:55:56 ============================================================================ +12:55:56 ============================================================================ +12:55:56 Slot Id : <24> +12:55:56 Transaction Type : RESPONSE +12:55:56 Received From : +12:55:56 ============================================================================ +12:55:56 FNo. Len. Field Value +12:55:56 ============================================================================ +12:55:56 [ 1] [ 4] [0810] +12:55:56 [ 7] [ 10] [0320055504] +12:55:56 [ 11] [ 6] [156426] +12:55:56 [ 39] [ 2] [00] +12:55:56 [ 70] [ 3] [301] +12:55:56 ============================================================================ +12:55:56 Calculate Source COMM Id = 2 +12:55:56 ============================================================================ +12:55:56 + + +waiting on router queue for slot.... +12:56:02 ============================================================================ +12:56:02 Slot Id : <42> +12:56:02 Transaction Type : REQUEST +12:56:02 Received From : +12:56:02 ============================================================================ +12:56:02 FNo. Len. Field Value +12:56:02 ============================================================================ +12:56:02 [ 1] [ 4] [0200] +12:56:02 [ 2] [ 16] [1808930500011697] +12:56:02 [ 3] [ 6] [011000] +12:56:02 [ 4] [ 12] [000005000000] +12:56:02 [ 7] [ 10] [0320125557] +12:56:02 [ 11] [ 6] [750715] +12:56:02 [ 12] [ 6] [125557] +12:56:02 [ 13] [ 4] [0320] +12:56:02 [ 15] [ 4] [0320] +12:56:02 [ 18] [ 4] [6011] +12:56:02 [ 22] [ 3] [900] +12:56:02 [ 25] [ 2] [02] +12:56:02 [ 28] [ 9] [D00002000] +12:56:02 [ 32] [ 6] [621354] +12:56:02 [ 35] [ 27] [1808930500011697=1803500324] +12:56:02 [ 37] [ 12] [507903226601] +12:56:02 [ 41] [ 8] [04003200] +12:56:02 [ 42] [ 15] [NATIVE ] +12:56:02 [ 43] [ 40] [DONKHONG Kong LAO] +12:56:02 [ 49] [ 3] [418] +12:56:02 [ 52] [ 16] [FFA6B7E700E2868D] +12:56:02 ============================================================================ +12:56:02 + + +waiting on router queue for slot.... +12:56:02 Sending to : +12:56:02 ============================================================================ +12:56:02 Sending to : +12:56:02 ============================================================================ +12:56:02 ============================================================================ +12:56:02 Slot Id : <42> +12:56:02 Transaction Type : REQUEST +12:56:02 Received From : +12:56:02 ============================================================================ +12:56:02 FNo. Len. Field Value +12:56:02 ============================================================================ +12:56:02 [ 1] [ 4] [0200] +12:56:02 [ 2] [ 16] [1808930500011697] +12:56:02 [ 3] [ 6] [011000] +12:56:02 [ 4] [ 12] [000005000000] +12:56:02 [ 7] [ 10] [0320125557] +12:56:02 [ 11] [ 6] [750715] +12:56:02 [ 12] [ 6] [125557] +12:56:02 [ 13] [ 4] [0320] +12:56:02 [ 15] [ 4] [0320] +12:56:02 [ 18] [ 4] [6011] +12:56:02 [ 22] [ 3] [900] +12:56:02 [ 25] [ 2] [02] +12:56:02 [ 28] [ 9] [D00002000] +12:56:02 [ 32] [ 6] [621354] +12:56:02 [ 35] [ 27] [1808930500011697=1803500324] +12:56:02 [ 37] [ 12] [507903226601] +12:56:02 [ 41] [ 8] [04003200] +12:56:02 [ 42] [ 15] [NATIVE ] +12:56:02 [ 43] [ 40] [DONKHONG Kong LAO] +12:56:02 [ 49] [ 3] [418] +12:56:02 [ 52] [ 16] [FFA6B7E700E2868D] +12:56:02 ============================================================================ +12:56:02 + + +waiting on router queue for slot.... +12:56:02 Sending to : +12:56:02 ============================================================================ +12:56:02 ============================================================================ +12:56:02 Slot Id : <42> +12:56:02 Transaction Type : REQUEST +12:56:02 Received From : +12:56:02 ============================================================================ +12:56:02 FNo. Len. Field Value +12:56:02 ============================================================================ +12:56:02 [ 1] [ 4] [0200] +12:56:02 [ 2] [ 16] [1808930500011697] +12:56:02 [ 3] [ 6] [011000] +12:56:02 [ 4] [ 12] [000005000000] +12:56:02 [ 7] [ 10] [0320125557] +12:56:02 [ 11] [ 6] [750715] +12:56:02 [ 12] [ 6] [125557] +12:56:02 [ 13] [ 4] [0320] +12:56:02 [ 15] [ 4] [0320] +12:56:02 [ 18] [ 4] [6011] +12:56:02 [ 22] [ 3] [900] +12:56:02 [ 25] [ 2] [02] +12:56:02 [ 28] [ 9] [D00002000] +12:56:02 [ 32] [ 6] [621354] +12:56:02 [ 35] [ 27] [1808930500011697=1803500324] +12:56:02 [ 37] [ 12] [507903226601] +12:56:02 [ 41] [ 8] [04003200] +12:56:02 [ 42] [ 15] [NATIVE ] +12:56:02 [ 43] [ 40] [DONKHONG Kong LAO] +12:56:02 [ 49] [ 3] [418] +12:56:02 [ 52] [ 16] [3C953DCB4BB70784] +12:56:02 ============================================================================ +12:56:02 + + +waiting on router queue for slot.... +12:56:02 Sending to : <2> +12:56:02 ============================================================================ +12:56:05 ============================================================================ +12:56:05 Slot Id : <57> +12:56:05 Transaction Type : REQUEST +12:56:05 Received From : +12:56:05 ============================================================================ +12:56:05 FNo. Len. Field Value +12:56:05 ============================================================================ +12:56:05 [ 1] [ 4] [0200] +12:56:05 [ 2] [ 16] [1808931700028184] +12:56:05 [ 3] [ 6] [011000] +12:56:05 [ 4] [ 12] [000100000000] +12:56:05 [ 7] [ 10] [0320125601] +12:56:05 [ 11] [ 6] [750727] +12:56:05 [ 12] [ 6] [125601] +12:56:05 [ 13] [ 4] [0320] +12:56:05 [ 15] [ 4] [0320] +12:56:05 [ 18] [ 4] [6011] +12:56:05 [ 22] [ 3] [900] +12:56:05 [ 25] [ 2] [02] +12:56:05 [ 28] [ 9] [D00002000] +12:56:05 [ 32] [ 6] [621354] +12:56:05 [ 35] [ 27] [1808931700028184=1803500167] +12:56:05 [ 37] [ 12] [507904789404] +12:56:05 [ 41] [ 8] [07001400] +12:56:05 [ 42] [ 15] [NATIVE ] +12:56:05 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +12:56:05 [ 49] [ 3] [418] +12:56:05 [ 52] [ 16] [39811B0A25EE9FE7] +12:56:05 ============================================================================ +12:56:05 + + +waiting on router queue for slot.... +12:56:05 Sending to : +12:56:05 ============================================================================ +12:56:05 Sending to : +12:56:05 ============================================================================ +12:56:06 ============================================================================ +12:56:06 Slot Id : <57> +12:56:06 Transaction Type : REQUEST +12:56:06 Received From : +12:56:06 ============================================================================ +12:56:06 FNo. Len. Field Value +12:56:06 ============================================================================ +12:56:06 [ 1] [ 4] [0200] +12:56:06 [ 2] [ 16] [1808931700028184] +12:56:06 [ 3] [ 6] [011000] +12:56:06 [ 4] [ 12] [000100000000] +12:56:06 [ 7] [ 10] [0320125601] +12:56:06 [ 11] [ 6] [750727] +12:56:06 [ 12] [ 6] [125601] +12:56:06 [ 13] [ 4] [0320] +12:56:06 [ 15] [ 4] [0320] +12:56:06 [ 18] [ 4] [6011] +12:56:06 [ 22] [ 3] [900] +12:56:06 [ 25] [ 2] [02] +12:56:06 [ 28] [ 9] [D00002000] +12:56:06 [ 32] [ 6] [621354] +12:56:06 [ 35] [ 27] [1808931700028184=1803500167] +12:56:06 [ 37] [ 12] [507904789404] +12:56:06 [ 41] [ 8] [07001400] +12:56:06 [ 42] [ 15] [NATIVE ] +12:56:06 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +12:56:06 [ 49] [ 3] [418] +12:56:06 [ 52] [ 16] [39811B0A25EE9FE7] +12:56:06 ============================================================================ +12:56:06 + + +waiting on router queue for slot.... +12:56:06 Sending to : +12:56:06 ============================================================================ +12:56:06 ============================================================================ +12:56:06 Slot Id : <57> +12:56:06 Transaction Type : REQUEST +12:56:06 Received From : +12:56:06 ============================================================================ +12:56:06 FNo. Len. Field Value +12:56:06 ============================================================================ +12:56:06 [ 1] [ 4] [0200] +12:56:06 [ 2] [ 16] [1808931700028184] +12:56:06 [ 3] [ 6] [011000] +12:56:06 [ 4] [ 12] [000100000000] +12:56:06 [ 7] [ 10] [0320125601] +12:56:06 [ 11] [ 6] [750727] +12:56:06 [ 12] [ 6] [125601] +12:56:06 [ 13] [ 4] [0320] +12:56:06 [ 15] [ 4] [0320] +12:56:06 [ 18] [ 4] [6011] +12:56:06 [ 22] [ 3] [900] +12:56:06 [ 25] [ 2] [02] +12:56:06 [ 28] [ 9] [D00002000] +12:56:06 [ 32] [ 6] [621354] +12:56:06 [ 35] [ 27] [1808931700028184=1803500167] +12:56:06 [ 37] [ 12] [507904789404] +12:56:06 [ 41] [ 8] [07001400] +12:56:06 [ 42] [ 15] [NATIVE ] +12:56:06 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +12:56:06 [ 49] [ 3] [418] +12:56:06 [ 52] [ 16] [8C49B17E333A93A9] +12:56:06 ============================================================================ +12:56:06 + + +waiting on router queue for slot.... +12:56:06 Sending to : <2> +12:56:06 ============================================================================ +12:56:06 ============================================================================ +12:56:06 Slot Id : <42> +12:56:06 Transaction Type : RESPONSE +12:56:06 Received From : +12:56:06 ============================================================================ +12:56:06 FNo. Len. Field Value +12:56:06 ============================================================================ +12:56:06 [ 1] [ 4] [0210] +12:56:06 [ 2] [ 16] [1808930500011697] +12:56:06 [ 3] [ 6] [011000] +12:56:06 [ 4] [ 12] [000005000000] +12:56:06 [ 6] [ 12] [000005000000] +12:56:06 [ 7] [ 10] [0320125557] +12:56:06 [ 11] [ 6] [750715] +12:56:06 [ 12] [ 6] [125557] +12:56:06 [ 13] [ 4] [0320] +12:56:06 [ 18] [ 4] [6011] +12:56:06 [ 19] [ 3] [418] +12:56:06 [ 22] [ 3] [021] +12:56:06 [ 32] [ 6] [621354] +12:56:06 [ 35] [ 27] [1808930500011697=1803500324] +12:56:06 [ 37] [ 12] [507903226601] +12:56:06 [ 38] [ 6] [750715] +12:56:06 [ 39] [ 2] [51] +12:56:06 [ 41] [ 8] [04003200] +12:56:06 [ 49] [ 3] [418] +12:56:06 [ 52] [ 16] [3C953DCB4BB70784] +12:56:06 ============================================================================ +12:56:06 Sending to : +12:56:06 ============================================================================ +12:56:06 + + +waiting on router queue for slot.... +12:56:07 ============================================================================ +12:56:07 Slot Id : <42> +12:56:07 Transaction Type : RESPONSE +12:56:07 Received From : +12:56:07 ============================================================================ +12:56:07 FNo. Len. Field Value +12:56:07 ============================================================================ +12:56:07 [ 1] [ 4] [0210] +12:56:07 [ 2] [ 16] [1808930500011697] +12:56:07 [ 3] [ 6] [011000] +12:56:07 [ 4] [ 12] [000005000000] +12:56:07 [ 6] [ 12] [000005000000] +12:56:07 [ 7] [ 10] [0320125557] +12:56:07 [ 11] [ 6] [750715] +12:56:07 [ 12] [ 6] [125557] +12:56:07 [ 13] [ 4] [0320] +12:56:07 [ 18] [ 4] [6011] +12:56:07 [ 19] [ 3] [418] +12:56:07 [ 22] [ 3] [021] +12:56:07 [ 32] [ 6] [621354] +12:56:07 [ 35] [ 27] [1808930500011697=1803500324] +12:56:07 [ 37] [ 12] [507903226601] +12:56:07 [ 38] [ 6] [750715] +12:56:07 [ 39] [ 2] [51] +12:56:07 [ 41] [ 8] [04003200] +12:56:07 [ 49] [ 3] [418] +12:56:07 [ 52] [ 16] [3C953DCB4BB70784] +12:56:07 ============================================================================ +12:56:07 Calculate Source COMM Id = 0 +12:56:07 ============================================================================ +12:56:07 + + +waiting on router queue for slot.... +12:56:14 ============================================================================ +12:56:14 Slot Id : <57> +12:56:14 Transaction Type : RESPONSE +12:56:14 Received From : +12:56:14 ============================================================================ +12:56:14 FNo. Len. Field Value +12:56:14 ============================================================================ +12:56:14 [ 1] [ 4] [0210] +12:56:14 [ 2] [ 16] [1808931700028184] +12:56:14 [ 3] [ 6] [011000] +12:56:14 [ 4] [ 12] [000100000000] +12:56:14 [ 6] [ 12] [000100000000] +12:56:14 [ 7] [ 10] [0320125601] +12:56:14 [ 11] [ 6] [750727] +12:56:14 [ 12] [ 6] [125601] +12:56:14 [ 13] [ 4] [0320] +12:56:14 [ 18] [ 4] [6011] +12:56:14 [ 19] [ 3] [418] +12:56:14 [ 22] [ 3] [021] +12:56:14 [ 32] [ 6] [621354] +12:56:14 [ 35] [ 27] [1808931700028184=1803500167] +12:56:14 [ 37] [ 12] [507904789404] +12:56:14 [ 38] [ 6] [750727] +12:56:14 [ 39] [ 2] [00] +12:56:14 [ 41] [ 8] [07001400] +12:56:14 [ 49] [ 3] [418] +12:56:14 [ 52] [ 16] [8C49B17E333A93A9] +12:56:14 [ 54] [ 20] [1001418C000245018700] +12:56:14 ============================================================================ +12:56:14 Sending to : +12:56:14 ============================================================================ +12:56:14 + + +waiting on router queue for slot.... +12:56:15 ============================================================================ +12:56:15 Slot Id : <57> +12:56:15 Transaction Type : RESPONSE +12:56:15 Received From : +12:56:15 ============================================================================ +12:56:15 FNo. Len. Field Value +12:56:15 ============================================================================ +12:56:15 [ 1] [ 4] [0210] +12:56:15 [ 2] [ 16] [1808931700028184] +12:56:15 [ 3] [ 6] [011000] +12:56:15 [ 4] [ 12] [000100000000] +12:56:15 [ 6] [ 12] [000100000000] +12:56:15 [ 7] [ 10] [0320125601] +12:56:15 [ 11] [ 6] [750727] +12:56:15 [ 12] [ 6] [125601] +12:56:15 [ 13] [ 4] [0320] +12:56:15 [ 18] [ 4] [6011] +12:56:15 [ 19] [ 3] [418] +12:56:15 [ 22] [ 3] [021] +12:56:15 [ 32] [ 6] [621354] +12:56:15 [ 35] [ 27] [1808931700028184=1803500167] +12:56:15 [ 37] [ 12] [507904789404] +12:56:15 [ 38] [ 6] [750727] +12:56:15 [ 39] [ 2] [00] +12:56:15 [ 41] [ 8] [07001400] +12:56:15 [ 49] [ 3] [418] +12:56:15 [ 52] [ 16] [8C49B17E333A93A9] +12:56:15 [ 54] [ 20] [1001418C000245018700] +12:56:15 ============================================================================ +12:56:15 Calculate Source COMM Id = 0 +12:56:15 ============================================================================ +12:56:15 + + +waiting on router queue for slot.... +12:56:18 ============================================================================ +12:56:18 Slot Id : <34> +12:56:18 Transaction Type : REQUEST +12:56:18 Received From : +12:56:18 ============================================================================ +12:56:18 FNo. Len. Field Value +12:56:18 ============================================================================ +12:56:18 [ 1] [ 4] [0800] +12:56:18 [ 7] [ 10] [0320055525] +12:56:18 [ 11] [ 6] [156427] +12:56:18 [ 70] [ 3] [301] +12:56:18 ============================================================================ +12:56:18 + + +waiting on router queue for slot.... +12:56:18 Sending to : +12:56:18 ============================================================================ +12:56:18 ============================================================================ +12:56:18 Slot Id : <34> +12:56:18 Transaction Type : RESPONSE +12:56:18 Received From : +12:56:18 ============================================================================ +12:56:18 FNo. Len. Field Value +12:56:18 ============================================================================ +12:56:18 [ 1] [ 4] [0810] +12:56:18 [ 7] [ 10] [0320055525] +12:56:18 [ 11] [ 6] [156427] +12:56:18 [ 39] [ 2] [00] +12:56:18 [ 70] [ 3] [301] +12:56:18 ============================================================================ +12:56:18 Calculate Source COMM Id = 2 +12:56:18 ============================================================================ +12:56:18 + + +waiting on router queue for slot.... +12:56:21 ============================================================================ +12:56:21 Slot Id : <49> +12:56:21 Transaction Type : REQUEST +12:56:21 Received From : +12:56:21 ============================================================================ +12:56:21 FNo. Len. Field Value +12:56:21 ============================================================================ +12:56:21 [ 1] [ 4] [0800] +12:56:21 [ 7] [ 10] [0320055412] +12:56:21 [ 11] [ 6] [016439] +12:56:21 [ 37] [ 12] [57912016439] +12:56:21 [ 70] [ 3] [301] +12:56:21 ============================================================================ +12:56:21 + + +waiting on router queue for slot.... +12:56:21 Sending to : +12:56:21 ============================================================================ +12:56:21 ============================================================================ +12:56:21 Slot Id : <49> +12:56:21 Transaction Type : RESPONSE +12:56:21 Received From : +12:56:21 ============================================================================ +12:56:21 FNo. Len. Field Value +12:56:21 ============================================================================ +12:56:21 [ 1] [ 4] [0810] +12:56:21 [ 7] [ 10] [0320055412] +12:56:21 [ 11] [ 6] [016439] +12:56:21 [ 37] [ 12] [579120164390] +12:56:21 [ 39] [ 2] [00] +12:56:21 [ 70] [ 3] [810] +12:56:21 ============================================================================ +12:56:21 Calculate Source COMM Id = 4 +12:56:21 ============================================================================ +12:56:21 + + +waiting on router queue for slot.... +12:56:29 ============================================================================ +12:56:29 Slot Id : <86> +12:56:29 Transaction Type : REQUEST +12:56:29 Received From : +12:56:29 ============================================================================ +12:56:29 FNo. Len. Field Value +12:56:29 ============================================================================ +12:56:29 [ 1] [ 4] [0800] +12:56:29 [ 7] [ 10] [0320055536] +12:56:29 [ 11] [ 6] [156428] +12:56:29 [ 70] [ 3] [301] +12:56:29 ============================================================================ +12:56:29 + + +waiting on router queue for slot.... +12:56:29 Sending to : +12:56:29 ============================================================================ +12:56:29 ============================================================================ +12:56:29 Slot Id : <86> +12:56:29 Transaction Type : RESPONSE +12:56:29 Received From : +12:56:29 ============================================================================ +12:56:29 FNo. Len. Field Value +12:56:29 ============================================================================ +12:56:29 [ 1] [ 4] [0810] +12:56:29 [ 7] [ 10] [0320055536] +12:56:29 [ 11] [ 6] [156428] +12:56:29 [ 39] [ 2] [00] +12:56:29 [ 70] [ 3] [301] +12:56:29 ============================================================================ +12:56:29 Calculate Source COMM Id = 2 +12:56:29 ============================================================================ +12:56:29 + + +waiting on router queue for slot.... +12:56:40 ============================================================================ +12:56:40 Slot Id : <89> +12:56:40 Transaction Type : REQUEST +12:56:40 Received From : +12:56:40 ============================================================================ +12:56:40 FNo. Len. Field Value +12:56:40 ============================================================================ +12:56:40 [ 1] [ 4] [0800] +12:56:40 [ 2] [ 5] [02531] +12:56:40 [ 3] [ 6] [579128] +12:56:40 [ 7] [ 10] [0320055640] +12:56:40 [ 11] [ 6] [807163] +12:56:40 [ 15] [ 10] [0320055640] +12:56:40 [ 37] [ 11] [57912807163] +12:56:40 [ 70] [ 3] [001] +12:56:40 ============================================================================ +12:56:40 + + +waiting on router queue for slot.... +12:56:40 ============================================================================ +12:56:40 Slot Id : <89> +12:56:40 Transaction Type : RESPONSE +12:56:40 Received From : +12:56:40 ============================================================================ +12:56:40 FNo. Len. Field Value +12:56:40 ============================================================================ +12:56:40 [ 1] [ 4] [0810] +12:56:40 [ 7] [ 10] [0320055640] +12:56:40 [ 11] [ 6] [807163] +12:56:40 [ 15] [ 4] [0320] +12:56:40 [ 37] [ 12] [57912807163] +12:56:40 [ 39] [ 2] [00] +12:56:40 [ 70] [ 3] [001] +12:56:40 ============================================================================ +12:56:40 Sending to : +12:56:40 ============================================================================ +12:56:40 + + +waiting on router queue for slot.... +12:56:43 ============================================================================ +12:56:43 Slot Id : <88> +12:56:43 Transaction Type : REQUEST +12:56:43 Received From : +12:56:43 ============================================================================ +12:56:43 FNo. Len. Field Value +12:56:43 ============================================================================ +12:56:43 [ 1] [ 4] [0800] +12:56:43 [ 7] [ 10] [0320055548] +12:56:43 [ 11] [ 6] [156429] +12:56:43 [ 70] [ 3] [301] +12:56:43 ============================================================================ +12:56:43 + + +waiting on router queue for slot.... +12:56:43 Sending to : +12:56:43 ============================================================================ +12:56:43 ============================================================================ +12:56:43 Slot Id : <88> +12:56:43 Transaction Type : RESPONSE +12:56:43 Received From : +12:56:43 ============================================================================ +12:56:43 FNo. Len. Field Value +12:56:43 ============================================================================ +12:56:43 [ 1] [ 4] [0810] +12:56:43 [ 7] [ 10] [0320055548] +12:56:43 [ 11] [ 6] [156429] +12:56:43 [ 39] [ 2] [00] +12:56:43 [ 70] [ 3] [301] +12:56:43 ============================================================================ +12:56:43 Calculate Source COMM Id = 2 +12:56:43 ============================================================================ +12:56:43 + + +waiting on router queue for slot.... +12:56:57 ============================================================================ +12:56:57 Slot Id : <59> +12:56:57 Transaction Type : REQUEST +12:56:57 Received From : +12:56:57 ============================================================================ +12:56:57 FNo. Len. Field Value +12:56:57 ============================================================================ +12:56:57 [ 1] [ 4] [0800] +12:56:57 [ 7] [ 10] [0320055604] +12:56:57 [ 11] [ 6] [156430] +12:56:57 [ 70] [ 3] [301] +12:56:57 ============================================================================ +12:56:57 + + +waiting on router queue for slot.... +12:56:57 Sending to : +12:56:57 ============================================================================ +12:56:57 ============================================================================ +12:56:57 Slot Id : <59> +12:56:57 Transaction Type : RESPONSE +12:56:57 Received From : +12:56:57 ============================================================================ +12:56:57 FNo. Len. Field Value +12:56:57 ============================================================================ +12:56:57 [ 1] [ 4] [0810] +12:56:57 [ 7] [ 10] [0320055604] +12:56:57 [ 11] [ 6] [156430] +12:56:57 [ 39] [ 2] [00] +12:56:57 [ 70] [ 3] [301] +12:56:57 ============================================================================ +12:56:57 Calculate Source COMM Id = 2 +12:56:57 ============================================================================ +12:56:57 + + +waiting on router queue for slot.... +12:57:07 ============================================================================ +12:57:07 Slot Id : <79> +12:57:07 Transaction Type : REQUEST +12:57:07 Received From : +12:57:07 ============================================================================ +12:57:07 FNo. Len. Field Value +12:57:07 ============================================================================ +12:57:07 [ 1] [ 4] [0800] +12:57:07 [ 7] [ 10] [0320055614] +12:57:07 [ 11] [ 6] [156431] +12:57:07 [ 70] [ 3] [301] +12:57:07 ============================================================================ +12:57:07 + + +waiting on router queue for slot.... +12:57:07 Sending to : +12:57:07 ============================================================================ +12:57:07 ============================================================================ +12:57:07 Slot Id : <79> +12:57:07 Transaction Type : RESPONSE +12:57:07 Received From : +12:57:07 ============================================================================ +12:57:07 FNo. Len. Field Value +12:57:07 ============================================================================ +12:57:07 [ 1] [ 4] [0810] +12:57:07 [ 7] [ 10] [0320055614] +12:57:07 [ 11] [ 6] [156431] +12:57:07 [ 39] [ 2] [00] +12:57:07 [ 70] [ 3] [301] +12:57:07 ============================================================================ +12:57:07 Calculate Source COMM Id = 2 +12:57:07 ============================================================================ +12:57:07 + + +waiting on router queue for slot.... +12:57:11 ============================================================================ +12:57:11 Slot Id : <5> +12:57:11 Transaction Type : REQUEST +12:57:11 Received From : +12:57:11 ============================================================================ +12:57:11 FNo. Len. Field Value +12:57:11 ============================================================================ +12:57:11 [ 1] [ 4] [0200] +12:57:11 [ 2] [ 16] [6213545000409312] +12:57:11 [ 3] [ 6] [012000] +12:57:11 [ 4] [ 12] [000050000000] +12:57:11 [ 7] [ 10] [0320130459] +12:57:11 [ 11] [ 6] [254860] +12:57:11 [ 12] [ 6] [130459] +12:57:11 [ 13] [ 4] [0320] +12:57:11 [ 14] [ 4] [4912] +12:57:11 [ 15] [ 4] [0320] +12:57:11 [ 18] [ 4] [6011] +12:57:11 [ 22] [ 3] [900] +12:57:11 [ 25] [ 2] [02] +12:57:11 [ 28] [ 9] [D00002000] +12:57:11 [ 32] [ 6] [220699] +12:57:11 [ 35] [ 32] [6213545000409312=491212010931874] +12:57:11 [ 37] [ 12] [507900094424] +12:57:11 [ 41] [ 8] [01000900] +12:57:11 [ 42] [ 15] [APTRA ] +12:57:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:57:11 [ 49] [ 3] [418] +12:57:11 [ 52] [ 16] [D9182F29AE275B01] +12:57:11 ============================================================================ +12:57:11 + + +waiting on router queue for slot.... +12:57:11 Sending to : +12:57:11 ============================================================================ +12:57:11 Sending to : +12:57:11 ============================================================================ +12:57:12 ============================================================================ +12:57:12 Slot Id : <5> +12:57:12 Transaction Type : REQUEST +12:57:12 Received From : +12:57:12 ============================================================================ +12:57:12 FNo. Len. Field Value +12:57:12 ============================================================================ +12:57:12 [ 1] [ 4] [0200] +12:57:12 [ 2] [ 16] [6213545000409312] +12:57:12 [ 3] [ 6] [012000] +12:57:12 [ 4] [ 12] [000050000000] +12:57:12 [ 7] [ 10] [0320130459] +12:57:12 [ 11] [ 6] [254860] +12:57:12 [ 12] [ 6] [130459] +12:57:12 [ 13] [ 4] [0320] +12:57:12 [ 14] [ 4] [4912] +12:57:12 [ 15] [ 4] [0320] +12:57:12 [ 18] [ 4] [6011] +12:57:12 [ 22] [ 3] [900] +12:57:12 [ 25] [ 2] [02] +12:57:12 [ 28] [ 9] [D00002000] +12:57:12 [ 32] [ 6] [220699] +12:57:12 [ 35] [ 32] [6213545000409312=491212010931874] +12:57:12 [ 37] [ 12] [507900094424] +12:57:12 [ 41] [ 8] [01000900] +12:57:12 [ 42] [ 15] [APTRA ] +12:57:12 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:57:12 [ 49] [ 3] [418] +12:57:12 [ 52] [ 16] [D9182F29AE275B01] +12:57:12 ============================================================================ +12:57:12 + + +waiting on router queue for slot.... +12:57:12 Sending to : +12:57:12 ============================================================================ +12:57:12 ============================================================================ +12:57:12 Slot Id : <5> +12:57:12 Transaction Type : REQUEST +12:57:12 Received From : +12:57:12 ============================================================================ +12:57:12 FNo. Len. Field Value +12:57:12 ============================================================================ +12:57:12 [ 1] [ 4] [0200] +12:57:12 [ 2] [ 16] [6213545000409312] +12:57:12 [ 3] [ 6] [012000] +12:57:12 [ 4] [ 12] [000050000000] +12:57:12 [ 7] [ 10] [0320130459] +12:57:12 [ 11] [ 6] [254860] +12:57:12 [ 12] [ 6] [130459] +12:57:12 [ 13] [ 4] [0320] +12:57:12 [ 14] [ 4] [4912] +12:57:12 [ 15] [ 4] [0320] +12:57:12 [ 18] [ 4] [6011] +12:57:12 [ 22] [ 3] [900] +12:57:12 [ 25] [ 2] [02] +12:57:12 [ 28] [ 9] [D00002000] +12:57:12 [ 32] [ 6] [220699] +12:57:12 [ 35] [ 32] [6213545000409312=491212010931874] +12:57:12 [ 37] [ 12] [507900094424] +12:57:12 [ 41] [ 8] [01000900] +12:57:12 [ 42] [ 15] [APTRA ] +12:57:12 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:57:12 [ 49] [ 3] [418] +12:57:12 [ 52] [ 16] [3A29FFDE2A686E80] +12:57:12 ============================================================================ +12:57:12 + + +waiting on router queue for slot.... +12:57:12 Sending to : <0> +12:57:12 ============================================================================ +12:57:12 ============================================================================ +12:57:12 Slot Id : <5> +12:57:12 Transaction Type : RESPONSE +12:57:12 Received From : +12:57:12 ============================================================================ +12:57:12 FNo. Len. Field Value +12:57:12 ============================================================================ +12:57:12 [ 1] [ 4] [0210] +12:57:12 [ 2] [ 16] [6213545000409312] +12:57:12 [ 3] [ 6] [012000] +12:57:12 [ 4] [ 12] [000050000000] +12:57:12 [ 7] [ 10] [0320130459] +12:57:12 [ 11] [ 6] [254860] +12:57:12 [ 12] [ 6] [130459] +12:57:12 [ 13] [ 4] [0320] +12:57:12 [ 15] [ 4] [0320] +12:57:12 [ 18] [ 4] [6011] +12:57:12 [ 32] [ 6] [220699] +12:57:12 [ 35] [ 32] [6213545000409312=491212010931874] +12:57:12 [ 37] [ 12] [507900094424] +12:57:12 [ 38] [ 6] [876464] +12:57:12 [ 39] [ 2] [00] +12:57:12 [ 41] [ 8] [01000900] +12:57:12 [ 49] [ 3] [418] +12:57:12 [ 54] [ 40] [2001418C0002386849522002418C000238684952] +12:57:12 ============================================================================ +12:57:12 Sending to : +12:57:12 ============================================================================ +12:57:12 + + +waiting on router queue for slot.... +12:57:14 ============================================================================ +12:57:14 Slot Id : <84> +12:57:14 Transaction Type : REQUEST +12:57:14 Received From : +12:57:14 ============================================================================ +12:57:14 FNo. Len. Field Value +12:57:14 ============================================================================ +12:57:14 [ 1] [ 4] [0200] +12:57:14 [ 2] [ 16] [6213544001146650] +12:57:14 [ 3] [ 6] [010000] +12:57:14 [ 4] [ 12] [000100000000] +12:57:14 [ 7] [ 10] [0320125504] +12:57:14 [ 11] [ 6] [945307] +12:57:14 [ 12] [ 6] [125504] +12:57:14 [ 13] [ 4] [0320] +12:57:14 [ 15] [ 4] [0320] +12:57:14 [ 18] [ 4] [6011] +12:57:14 [ 19] [ 3] [418] +12:57:14 [ 22] [ 3] [021] +12:57:14 [ 25] [ 2] [01] +12:57:14 [ 28] [ 9] [D00002000] +12:57:14 [ 32] [ 6] [668899] +12:57:14 [ 35] [ 32] [6213544001146650=491212014665263] +12:57:14 [ 37] [ 12] [507902150979] +12:57:14 [ 41] [ 8] [03020025] +12:57:14 [ 42] [ 15] [APT ] +12:57:14 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:57:14 [ 49] [ 3] [418] +12:57:14 [ 52] [ 16] [34CC6FB2E41958D4] +12:57:14 ============================================================================ +12:57:14 + + +waiting on router queue for slot.... +12:57:14 Sending to : +12:57:14 ============================================================================ +12:57:14 Sending to : +12:57:14 ============================================================================ +12:57:14 ============================================================================ +12:57:14 Slot Id : <5> +12:57:14 Transaction Type : RESPONSE +12:57:14 Received From : +12:57:14 ============================================================================ +12:57:14 FNo. Len. Field Value +12:57:14 ============================================================================ +12:57:14 [ 1] [ 4] [0210] +12:57:14 [ 2] [ 16] [6213545000409312] +12:57:14 [ 3] [ 6] [012000] +12:57:14 [ 4] [ 12] [000050000000] +12:57:14 [ 7] [ 10] [0320130459] +12:57:14 [ 11] [ 6] [254860] +12:57:14 [ 12] [ 6] [130459] +12:57:14 [ 13] [ 4] [0320] +12:57:14 [ 15] [ 4] [0320] +12:57:14 [ 18] [ 4] [6011] +12:57:14 [ 32] [ 6] [220699] +12:57:14 [ 35] [ 32] [6213545000409312=491212010931874] +12:57:14 [ 37] [ 12] [507900094424] +12:57:14 [ 38] [ 6] [876464] +12:57:14 [ 39] [ 2] [00] +12:57:14 [ 41] [ 8] [01000900] +12:57:14 [ 49] [ 3] [418] +12:57:14 [ 54] [ 40] [2001418C0002386849522002418C000238684952] +12:57:14 ============================================================================ +12:57:14 Calculate Source COMM Id = 1 +12:57:14 ============================================================================ +12:57:14 + + +waiting on router queue for slot.... +12:57:14 ============================================================================ +12:57:14 Slot Id : <84> +12:57:14 Transaction Type : REQUEST +12:57:14 Received From : +12:57:14 ============================================================================ +12:57:14 FNo. Len. Field Value +12:57:14 ============================================================================ +12:57:14 [ 1] [ 4] [0200] +12:57:14 [ 2] [ 16] [6213544001146650] +12:57:14 [ 3] [ 6] [010000] +12:57:14 [ 4] [ 12] [000100000000] +12:57:14 [ 7] [ 10] [0320125504] +12:57:14 [ 11] [ 6] [945307] +12:57:14 [ 12] [ 6] [125504] +12:57:14 [ 13] [ 4] [0320] +12:57:14 [ 15] [ 4] [0320] +12:57:14 [ 18] [ 4] [6011] +12:57:14 [ 19] [ 3] [418] +12:57:14 [ 22] [ 3] [021] +12:57:14 [ 25] [ 2] [01] +12:57:14 [ 28] [ 9] [D00002000] +12:57:14 [ 32] [ 6] [668899] +12:57:14 [ 35] [ 32] [6213544001146650=491212014665263] +12:57:14 [ 37] [ 12] [507902150979] +12:57:14 [ 41] [ 8] [03020025] +12:57:14 [ 42] [ 15] [APT ] +12:57:14 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:57:14 [ 49] [ 3] [418] +12:57:14 [ 52] [ 16] [34CC6FB2E41958D4] +12:57:14 ============================================================================ +12:57:14 + + +waiting on router queue for slot.... +12:57:14 Sending to : +12:57:14 ============================================================================ +12:57:14 ============================================================================ +12:57:14 Slot Id : <84> +12:57:14 Transaction Type : REQUEST +12:57:14 Received From : +12:57:14 ============================================================================ +12:57:14 FNo. Len. Field Value +12:57:14 ============================================================================ +12:57:14 [ 1] [ 4] [0200] +12:57:14 [ 2] [ 16] [6213544001146650] +12:57:14 [ 3] [ 6] [010000] +12:57:14 [ 4] [ 12] [000100000000] +12:57:14 [ 7] [ 10] [0320125504] +12:57:14 [ 11] [ 6] [945307] +12:57:14 [ 12] [ 6] [125504] +12:57:14 [ 13] [ 4] [0320] +12:57:14 [ 15] [ 4] [0320] +12:57:14 [ 18] [ 4] [6011] +12:57:14 [ 19] [ 3] [418] +12:57:14 [ 22] [ 3] [021] +12:57:14 [ 25] [ 2] [01] +12:57:14 [ 28] [ 9] [D00002000] +12:57:14 [ 32] [ 6] [668899] +12:57:14 [ 35] [ 32] [6213544001146650=491212014665263] +12:57:14 [ 37] [ 12] [507902150979] +12:57:14 [ 41] [ 8] [03020025] +12:57:14 [ 42] [ 15] [APT ] +12:57:14 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:57:14 [ 49] [ 3] [418] +12:57:14 [ 52] [ 16] [0B38DCED60A767BD] +12:57:14 ============================================================================ +12:57:14 + + +waiting on router queue for slot.... +12:57:14 Sending to : <0> +12:57:14 ============================================================================ +12:57:14 ============================================================================ +12:57:14 Slot Id : <84> +12:57:14 Transaction Type : RESPONSE +12:57:14 Received From : +12:57:14 ============================================================================ +12:57:14 FNo. Len. Field Value +12:57:14 ============================================================================ +12:57:14 [ 1] [ 4] [0210] +12:57:14 [ 2] [ 16] [6213544001146650] +12:57:14 [ 3] [ 6] [010000] +12:57:14 [ 4] [ 12] [000100000000] +12:57:14 [ 7] [ 10] [0320125504] +12:57:14 [ 11] [ 6] [945307] +12:57:14 [ 12] [ 6] [125504] +12:57:14 [ 13] [ 4] [0320] +12:57:14 [ 15] [ 4] [0320] +12:57:14 [ 18] [ 4] [6011] +12:57:14 [ 19] [ 3] [418] +12:57:14 [ 22] [ 3] [021] +12:57:14 [ 32] [ 6] [668899] +12:57:14 [ 35] [ 32] [6213544001146650=491212014665263] +12:57:14 [ 37] [ 12] [507902150979] +12:57:14 [ 38] [ 6] [125710] +12:57:14 [ 39] [ 2] [55] +12:57:14 [ 41] [ 8] [03020025] +12:57:14 [ 49] [ 3] [418] +12:57:14 ============================================================================ +12:57:14 Sending to : +12:57:14 ============================================================================ +12:57:14 + + +waiting on router queue for slot.... +12:57:15 ============================================================================ +12:57:15 Slot Id : <67> +12:57:15 Transaction Type : REQUEST +12:57:15 Received From : +12:57:15 ============================================================================ +12:57:15 FNo. Len. Field Value +12:57:15 ============================================================================ +12:57:15 [ 1] [ 4] [0200] +12:57:15 [ 2] [ 16] [1808931700026303] +12:57:15 [ 3] [ 6] [010000] +12:57:15 [ 4] [ 12] [000100000000] +12:57:15 [ 7] [ 10] [0320125505] +12:57:15 [ 11] [ 6] [945309] +12:57:15 [ 12] [ 6] [125505] +12:57:15 [ 13] [ 4] [0320] +12:57:15 [ 15] [ 4] [0320] +12:57:15 [ 18] [ 4] [6011] +12:57:15 [ 19] [ 3] [418] +12:57:15 [ 22] [ 3] [021] +12:57:15 [ 25] [ 2] [01] +12:57:15 [ 28] [ 9] [D00002000] +12:57:15 [ 32] [ 6] [668899] +12:57:15 [ 35] [ 27] [1808931700026303=1803500215] +12:57:15 [ 37] [ 12] [507900123325] +12:57:15 [ 41] [ 8] [03020003] +12:57:15 [ 42] [ 15] [APT ] +12:57:15 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:57:15 [ 49] [ 3] [418] +12:57:15 [ 52] [ 16] [8F667C5E5DD724FD] +12:57:15 ============================================================================ +12:57:15 + + +waiting on router queue for slot.... +12:57:15 Sending to : +12:57:15 ============================================================================ +12:57:15 Sending to : +12:57:15 ============================================================================ +12:57:15 ============================================================================ +12:57:15 Slot Id : <84> +12:57:15 Transaction Type : RESPONSE +12:57:15 Received From : +12:57:15 ============================================================================ +12:57:15 FNo. Len. Field Value +12:57:15 ============================================================================ +12:57:15 [ 1] [ 4] [0210] +12:57:15 [ 2] [ 16] [6213544001146650] +12:57:15 [ 3] [ 6] [010000] +12:57:15 [ 4] [ 12] [000100000000] +12:57:15 [ 7] [ 10] [0320125504] +12:57:15 [ 11] [ 6] [945307] +12:57:15 [ 12] [ 6] [125504] +12:57:15 [ 13] [ 4] [0320] +12:57:15 [ 15] [ 4] [0320] +12:57:15 [ 18] [ 4] [6011] +12:57:15 [ 19] [ 3] [418] +12:57:15 [ 22] [ 3] [021] +12:57:15 [ 32] [ 6] [668899] +12:57:15 [ 35] [ 32] [6213544001146650=491212014665263] +12:57:15 [ 37] [ 12] [507902150979] +12:57:15 [ 38] [ 6] [125710] +12:57:15 [ 39] [ 2] [55] +12:57:15 [ 41] [ 8] [03020025] +12:57:15 [ 49] [ 3] [418] +12:57:15 ============================================================================ +12:57:15 Calculate Source COMM Id = 4 +12:57:15 ============================================================================ +12:57:15 + + +waiting on router queue for slot.... +12:57:15 ============================================================================ +12:57:15 Slot Id : <67> +12:57:15 Transaction Type : REQUEST +12:57:15 Received From : +12:57:15 ============================================================================ +12:57:15 FNo. Len. Field Value +12:57:15 ============================================================================ +12:57:15 [ 1] [ 4] [0200] +12:57:15 [ 2] [ 16] [1808931700026303] +12:57:15 [ 3] [ 6] [010000] +12:57:15 [ 4] [ 12] [000100000000] +12:57:15 [ 7] [ 10] [0320125505] +12:57:15 [ 11] [ 6] [945309] +12:57:15 [ 12] [ 6] [125505] +12:57:15 [ 13] [ 4] [0320] +12:57:15 [ 15] [ 4] [0320] +12:57:15 [ 18] [ 4] [6011] +12:57:15 [ 19] [ 3] [418] +12:57:15 [ 22] [ 3] [021] +12:57:15 [ 25] [ 2] [01] +12:57:15 [ 28] [ 9] [D00002000] +12:57:15 [ 32] [ 6] [668899] +12:57:15 [ 35] [ 27] [1808931700026303=1803500215] +12:57:15 [ 37] [ 12] [507900123325] +12:57:15 [ 41] [ 8] [03020003] +12:57:15 [ 42] [ 15] [APT ] +12:57:15 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:57:15 [ 49] [ 3] [418] +12:57:15 [ 52] [ 16] [8F667C5E5DD724FD] +12:57:15 ============================================================================ +12:57:15 + + +waiting on router queue for slot.... +12:57:15 Sending to : +12:57:15 ============================================================================ +12:57:15 ============================================================================ +12:57:15 Slot Id : <67> +12:57:15 Transaction Type : REQUEST +12:57:15 Received From : +12:57:15 ============================================================================ +12:57:15 FNo. Len. Field Value +12:57:15 ============================================================================ +12:57:15 [ 1] [ 4] [0200] +12:57:15 [ 2] [ 16] [1808931700026303] +12:57:15 [ 3] [ 6] [010000] +12:57:15 [ 4] [ 12] [000100000000] +12:57:15 [ 7] [ 10] [0320125505] +12:57:15 [ 11] [ 6] [945309] +12:57:15 [ 12] [ 6] [125505] +12:57:15 [ 13] [ 4] [0320] +12:57:15 [ 15] [ 4] [0320] +12:57:15 [ 18] [ 4] [6011] +12:57:15 [ 19] [ 3] [418] +12:57:15 [ 22] [ 3] [021] +12:57:15 [ 25] [ 2] [01] +12:57:15 [ 28] [ 9] [D00002000] +12:57:15 [ 32] [ 6] [668899] +12:57:15 [ 35] [ 27] [1808931700026303=1803500215] +12:57:15 [ 37] [ 12] [507900123325] +12:57:15 [ 41] [ 8] [03020003] +12:57:15 [ 42] [ 15] [APT ] +12:57:15 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +12:57:15 [ 49] [ 3] [418] +12:57:15 [ 52] [ 16] [65695F70703E5C27] +12:57:15 ============================================================================ +12:57:15 + + +waiting on router queue for slot.... +12:57:15 Sending to : <2> +12:57:15 ============================================================================ +12:57:17 ============================================================================ +12:57:17 Slot Id : <67> +12:57:17 Transaction Type : RESPONSE +12:57:17 Received From : +12:57:17 ============================================================================ +12:57:17 FNo. Len. Field Value +12:57:17 ============================================================================ +12:57:17 [ 1] [ 4] [0210] +12:57:17 [ 2] [ 16] [1808931700026303] +12:57:17 [ 3] [ 6] [010000] +12:57:17 [ 4] [ 12] [000100000000] +12:57:17 [ 6] [ 12] [000100000000] +12:57:17 [ 7] [ 10] [0320125505] +12:57:17 [ 11] [ 6] [945309] +12:57:17 [ 12] [ 6] [125505] +12:57:17 [ 13] [ 4] [0320] +12:57:17 [ 18] [ 4] [6011] +12:57:17 [ 19] [ 3] [418] +12:57:17 [ 22] [ 3] [021] +12:57:17 [ 28] [ 9] [D00002000] +12:57:17 [ 32] [ 6] [668899] +12:57:17 [ 35] [ 27] [1808931700026303=1803500215] +12:57:17 [ 37] [ 12] [507900123325] +12:57:17 [ 39] [ 2] [55] +12:57:17 [ 41] [ 8] [03020003] +12:57:17 [ 49] [ 3] [418] +12:57:17 [ 51] [ 3] [418] +12:57:17 [ 52] [ 16] [65695F70703E5C27] +12:57:17 ============================================================================ +12:57:17 Sending to : +12:57:17 ============================================================================ +12:57:17 + + +waiting on router queue for slot.... +12:57:18 ============================================================================ +12:57:18 Slot Id : <67> +12:57:18 Transaction Type : RESPONSE +12:57:18 Received From : +12:57:18 ============================================================================ +12:57:18 FNo. Len. Field Value +12:57:18 ============================================================================ +12:57:18 [ 1] [ 4] [0210] +12:57:18 [ 2] [ 16] [1808931700026303] +12:57:18 [ 3] [ 6] [010000] +12:57:18 [ 4] [ 12] [000100000000] +12:57:18 [ 6] [ 12] [000100000000] +12:57:18 [ 7] [ 10] [0320125505] +12:57:18 [ 11] [ 6] [945309] +12:57:18 [ 12] [ 6] [125505] +12:57:18 [ 13] [ 4] [0320] +12:57:18 [ 18] [ 4] [6011] +12:57:18 [ 19] [ 3] [418] +12:57:18 [ 22] [ 3] [021] +12:57:18 [ 28] [ 9] [D00002000] +12:57:18 [ 32] [ 6] [668899] +12:57:18 [ 35] [ 27] [1808931700026303=1803500215] +12:57:18 [ 37] [ 12] [507900123325] +12:57:18 [ 39] [ 2] [55] +12:57:18 [ 41] [ 8] [03020003] +12:57:18 [ 49] [ 3] [418] +12:57:18 [ 51] [ 3] [418] +12:57:18 [ 52] [ 16] [65695F70703E5C27] +12:57:18 ============================================================================ +12:57:18 Calculate Source COMM Id = 4 +12:57:18 ============================================================================ +12:57:18 + + +waiting on router queue for slot.... +12:57:27 ============================================================================ +12:57:27 Slot Id : <62> +12:57:27 Transaction Type : REQUEST +12:57:27 Received From : +12:57:27 ============================================================================ +12:57:27 FNo. Len. Field Value +12:57:27 ============================================================================ +12:57:27 [ 1] [ 4] [0800] +12:57:27 [ 7] [ 10] [0320055634] +12:57:27 [ 11] [ 6] [156432] +12:57:27 [ 70] [ 3] [301] +12:57:27 ============================================================================ +12:57:27 + + +waiting on router queue for slot.... +12:57:27 Sending to : +12:57:27 ============================================================================ +12:57:27 ============================================================================ +12:57:27 Slot Id : <62> +12:57:27 Transaction Type : RESPONSE +12:57:27 Received From : +12:57:27 ============================================================================ +12:57:27 FNo. Len. Field Value +12:57:27 ============================================================================ +12:57:27 [ 1] [ 4] [0810] +12:57:27 [ 7] [ 10] [0320055634] +12:57:27 [ 11] [ 6] [156432] +12:57:27 [ 39] [ 2] [00] +12:57:27 [ 70] [ 3] [301] +12:57:27 ============================================================================ +12:57:27 Calculate Source COMM Id = 2 +12:57:27 ============================================================================ +12:57:27 + + +waiting on router queue for slot.... +12:57:42 ============================================================================ +12:57:42 Slot Id : <39> +12:57:42 Transaction Type : REQUEST +12:57:42 Received From : +12:57:42 ============================================================================ +12:57:42 FNo. Len. Field Value +12:57:42 ============================================================================ +12:57:42 [ 1] [ 4] [0800] +12:57:42 [ 2] [ 5] [02531] +12:57:42 [ 3] [ 6] [579128] +12:57:42 [ 7] [ 10] [0320055742] +12:57:42 [ 11] [ 6] [807164] +12:57:42 [ 15] [ 10] [0320055742] +12:57:42 [ 37] [ 11] [57912807164] +12:57:42 [ 70] [ 3] [001] +12:57:42 ============================================================================ +12:57:42 + + +waiting on router queue for slot.... +12:57:42 ============================================================================ +12:57:42 Slot Id : <39> +12:57:42 Transaction Type : RESPONSE +12:57:42 Received From : +12:57:42 ============================================================================ +12:57:42 FNo. Len. Field Value +12:57:42 ============================================================================ +12:57:42 [ 1] [ 4] [0810] +12:57:42 [ 7] [ 10] [0320055742] +12:57:42 [ 11] [ 6] [807164] +12:57:42 [ 15] [ 4] [0320] +12:57:42 [ 37] [ 12] [57912807164] +12:57:42 [ 39] [ 2] [00] +12:57:42 [ 70] [ 3] [001] +12:57:42 ============================================================================ +12:57:42 Sending to : +12:57:42 ============================================================================ +12:57:42 + + +waiting on router queue for slot.... +12:57:42 ============================================================================ +12:57:42 Slot Id : <51> +12:57:42 Transaction Type : REQUEST +12:57:42 Received From : +12:57:42 ============================================================================ +12:57:42 FNo. Len. Field Value +12:57:42 ============================================================================ +12:57:42 [ 1] [ 4] [0800] +12:57:42 [ 7] [ 10] [0320055650] +12:57:42 [ 11] [ 6] [156433] +12:57:42 [ 70] [ 3] [301] +12:57:42 ============================================================================ +12:57:42 + + +waiting on router queue for slot.... +12:57:42 Sending to : +12:57:42 ============================================================================ +12:57:42 ============================================================================ +12:57:42 Slot Id : <51> +12:57:42 Transaction Type : RESPONSE +12:57:42 Received From : +12:57:42 ============================================================================ +12:57:42 FNo. Len. Field Value +12:57:42 ============================================================================ +12:57:42 [ 1] [ 4] [0810] +12:57:42 [ 7] [ 10] [0320055650] +12:57:42 [ 11] [ 6] [156433] +12:57:42 [ 39] [ 2] [00] +12:57:42 [ 70] [ 3] [301] +12:57:42 ============================================================================ +12:57:42 Calculate Source COMM Id = 2 +12:57:42 ============================================================================ +12:57:42 + + +waiting on router queue for slot.... +12:57:58 ============================================================================ +12:57:58 Slot Id : <99> +12:57:58 Transaction Type : REQUEST +12:57:58 Received From : +12:57:58 ============================================================================ +12:57:58 FNo. Len. Field Value +12:57:58 ============================================================================ +12:57:58 [ 1] [ 4] [0800] +12:57:58 [ 7] [ 10] [0320055705] +12:57:58 [ 11] [ 6] [156434] +12:57:58 [ 70] [ 3] [301] +12:57:58 ============================================================================ +12:57:58 + + +waiting on router queue for slot.... +12:57:58 Sending to : +12:57:58 ============================================================================ +12:57:58 ============================================================================ +12:57:58 Slot Id : <99> +12:57:58 Transaction Type : RESPONSE +12:57:58 Received From : +12:57:58 ============================================================================ +12:57:58 FNo. Len. Field Value +12:57:58 ============================================================================ +12:57:58 [ 1] [ 4] [0810] +12:57:58 [ 7] [ 10] [0320055705] +12:57:58 [ 11] [ 6] [156434] +12:57:58 [ 39] [ 2] [00] +12:57:58 [ 70] [ 3] [301] +12:57:58 ============================================================================ +12:57:58 Calculate Source COMM Id = 2 +12:57:58 ============================================================================ +12:57:58 + + +waiting on router queue for slot.... +12:58:04 ============================================================================ +12:58:04 Slot Id : <64> +12:58:04 Transaction Type : REQUEST +12:58:04 Received From : +12:58:04 ============================================================================ +12:58:04 FNo. Len. Field Value +12:58:04 ============================================================================ +12:58:04 [ 1] [ 4] [0200] +12:58:04 [ 2] [ 16] [6213545000682595] +12:58:04 [ 3] [ 6] [010000] +12:58:04 [ 4] [ 12] [000100000000] +12:58:04 [ 7] [ 10] [0320125554] +12:58:04 [ 11] [ 6] [945344] +12:58:04 [ 12] [ 6] [125554] +12:58:04 [ 13] [ 4] [0320] +12:58:04 [ 15] [ 4] [0320] +12:58:04 [ 18] [ 4] [6011] +12:58:04 [ 19] [ 3] [418] +12:58:04 [ 22] [ 3] [021] +12:58:04 [ 25] [ 2] [01] +12:58:04 [ 28] [ 9] [D00002000] +12:58:04 [ 32] [ 6] [668899] +12:58:04 [ 35] [ 32] [6213545000682595=491212018259772] +12:58:04 [ 37] [ 12] [507902150981] +12:58:04 [ 41] [ 8] [03020025] +12:58:04 [ 42] [ 15] [APT ] +12:58:04 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:58:04 [ 49] [ 3] [418] +12:58:04 [ 52] [ 16] [42325BC52438D910] +12:58:04 ============================================================================ +12:58:04 + + +waiting on router queue for slot.... +12:58:04 Sending to : +12:58:04 ============================================================================ +12:58:04 Sending to : +12:58:04 ============================================================================ +12:58:04 ============================================================================ +12:58:04 Slot Id : <64> +12:58:04 Transaction Type : REQUEST +12:58:04 Received From : +12:58:04 ============================================================================ +12:58:04 FNo. Len. Field Value +12:58:04 ============================================================================ +12:58:04 [ 1] [ 4] [0200] +12:58:04 [ 2] [ 16] [6213545000682595] +12:58:04 [ 3] [ 6] [010000] +12:58:04 [ 4] [ 12] [000100000000] +12:58:04 [ 7] [ 10] [0320125554] +12:58:04 [ 11] [ 6] [945344] +12:58:04 [ 12] [ 6] [125554] +12:58:04 [ 13] [ 4] [0320] +12:58:04 [ 15] [ 4] [0320] +12:58:04 [ 18] [ 4] [6011] +12:58:04 [ 19] [ 3] [418] +12:58:04 [ 22] [ 3] [021] +12:58:04 [ 25] [ 2] [01] +12:58:04 [ 28] [ 9] [D00002000] +12:58:04 [ 32] [ 6] [668899] +12:58:04 [ 35] [ 32] [6213545000682595=491212018259772] +12:58:04 [ 37] [ 12] [507902150981] +12:58:04 [ 41] [ 8] [03020025] +12:58:04 [ 42] [ 15] [APT ] +12:58:04 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:58:04 [ 49] [ 3] [418] +12:58:04 [ 52] [ 16] [42325BC52438D910] +12:58:04 ============================================================================ +12:58:04 + + +waiting on router queue for slot.... +12:58:04 Sending to : +12:58:04 ============================================================================ +12:58:04 ============================================================================ +12:58:04 Slot Id : <64> +12:58:04 Transaction Type : REQUEST +12:58:04 Received From : +12:58:04 ============================================================================ +12:58:04 FNo. Len. Field Value +12:58:04 ============================================================================ +12:58:04 [ 1] [ 4] [0200] +12:58:04 [ 2] [ 16] [6213545000682595] +12:58:04 [ 3] [ 6] [010000] +12:58:04 [ 4] [ 12] [000100000000] +12:58:04 [ 7] [ 10] [0320125554] +12:58:04 [ 11] [ 6] [945344] +12:58:04 [ 12] [ 6] [125554] +12:58:04 [ 13] [ 4] [0320] +12:58:04 [ 15] [ 4] [0320] +12:58:04 [ 18] [ 4] [6011] +12:58:04 [ 19] [ 3] [418] +12:58:04 [ 22] [ 3] [021] +12:58:04 [ 25] [ 2] [01] +12:58:04 [ 28] [ 9] [D00002000] +12:58:04 [ 32] [ 6] [668899] +12:58:04 [ 35] [ 32] [6213545000682595=491212018259772] +12:58:04 [ 37] [ 12] [507902150981] +12:58:04 [ 41] [ 8] [03020025] +12:58:04 [ 42] [ 15] [APT ] +12:58:04 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:58:04 [ 49] [ 3] [418] +12:58:04 [ 52] [ 16] [225C262579BA6AD0] +12:58:04 ============================================================================ +12:58:04 + + +waiting on router queue for slot.... +12:58:04 Sending to : <0> +12:58:04 ============================================================================ +12:58:05 ============================================================================ +12:58:05 Slot Id : <64> +12:58:05 Transaction Type : RESPONSE +12:58:05 Received From : +12:58:05 ============================================================================ +12:58:05 FNo. Len. Field Value +12:58:05 ============================================================================ +12:58:05 [ 1] [ 4] [0210] +12:58:05 [ 2] [ 16] [6213545000682595] +12:58:05 [ 3] [ 6] [010000] +12:58:05 [ 4] [ 12] [000100000000] +12:58:05 [ 7] [ 10] [0320125554] +12:58:05 [ 11] [ 6] [945344] +12:58:05 [ 12] [ 6] [125554] +12:58:05 [ 13] [ 4] [0320] +12:58:05 [ 15] [ 4] [0320] +12:58:05 [ 18] [ 4] [6011] +12:58:05 [ 19] [ 3] [418] +12:58:05 [ 32] [ 6] [668899] +12:58:05 [ 35] [ 32] [6213545000682595=491212018259772] +12:58:05 [ 37] [ 12] [507902150981] +12:58:05 [ 38] [ 6] [190521] +12:58:05 [ 39] [ 2] [00] +12:58:05 [ 41] [ 8] [03020025] +12:58:05 [ 49] [ 3] [418] +12:58:05 [ 54] [ 40] [0001418C0003161653560002418C000316165356] +12:58:05 ============================================================================ +12:58:05 Sending to : +12:58:05 ============================================================================ +12:58:05 + + +waiting on router queue for slot.... +12:58:06 ============================================================================ +12:58:06 Slot Id : <64> +12:58:06 Transaction Type : RESPONSE +12:58:06 Received From : +12:58:06 ============================================================================ +12:58:06 FNo. Len. Field Value +12:58:06 ============================================================================ +12:58:06 [ 1] [ 4] [0210] +12:58:06 [ 2] [ 16] [6213545000682595] +12:58:06 [ 3] [ 6] [010000] +12:58:06 [ 4] [ 12] [000100000000] +12:58:06 [ 7] [ 10] [0320125554] +12:58:06 [ 11] [ 6] [945344] +12:58:06 [ 12] [ 6] [125554] +12:58:06 [ 13] [ 4] [0320] +12:58:06 [ 15] [ 4] [0320] +12:58:06 [ 18] [ 4] [6011] +12:58:06 [ 19] [ 3] [418] +12:58:06 [ 32] [ 6] [668899] +12:58:06 [ 35] [ 32] [6213545000682595=491212018259772] +12:58:06 [ 37] [ 12] [507902150981] +12:58:06 [ 38] [ 6] [190521] +12:58:06 [ 39] [ 2] [00] +12:58:06 [ 41] [ 8] [03020025] +12:58:06 [ 49] [ 3] [418] +12:58:06 [ 54] [ 40] [0001418C0003161653560002418C000316165356] +12:58:06 ============================================================================ +12:58:06 Calculate Source COMM Id = 4 +12:58:06 ============================================================================ +12:58:06 + + +waiting on router queue for slot.... +12:58:08 ============================================================================ +12:58:08 Slot Id : <56> +12:58:08 Transaction Type : REQUEST +12:58:08 Received From : +12:58:08 ============================================================================ +12:58:08 FNo. Len. Field Value +12:58:08 ============================================================================ +12:58:08 [ 1] [ 4] [0800] +12:58:08 [ 7] [ 10] [0320055715] +12:58:08 [ 11] [ 6] [156435] +12:58:08 [ 70] [ 3] [301] +12:58:08 ============================================================================ +12:58:08 + + +waiting on router queue for slot.... +12:58:08 Sending to : +12:58:08 ============================================================================ +12:58:08 ============================================================================ +12:58:08 Slot Id : <56> +12:58:08 Transaction Type : RESPONSE +12:58:08 Received From : +12:58:08 ============================================================================ +12:58:08 FNo. Len. Field Value +12:58:08 ============================================================================ +12:58:08 [ 1] [ 4] [0810] +12:58:08 [ 7] [ 10] [0320055715] +12:58:08 [ 11] [ 6] [156435] +12:58:08 [ 39] [ 2] [00] +12:58:08 [ 70] [ 3] [301] +12:58:08 ============================================================================ +12:58:08 Calculate Source COMM Id = 2 +12:58:08 ============================================================================ +12:58:08 + + +waiting on router queue for slot.... +12:58:10 ============================================================================ +12:58:10 Slot Id : <82> +12:58:10 Transaction Type : REQUEST +12:58:10 Received From : +12:58:10 ============================================================================ +12:58:10 FNo. Len. Field Value +12:58:10 ============================================================================ +12:58:10 [ 1] [ 4] [0200] +12:58:10 [ 2] [ 16] [6213545000409312] +12:58:10 [ 3] [ 6] [012000] +12:58:10 [ 4] [ 12] [000050000000] +12:58:10 [ 7] [ 10] [0320130558] +12:58:10 [ 11] [ 6] [254863] +12:58:10 [ 12] [ 6] [130558] +12:58:10 [ 13] [ 4] [0320] +12:58:10 [ 14] [ 4] [4912] +12:58:10 [ 15] [ 4] [0320] +12:58:10 [ 18] [ 4] [6011] +12:58:10 [ 22] [ 3] [900] +12:58:10 [ 25] [ 2] [02] +12:58:10 [ 28] [ 9] [D00002000] +12:58:10 [ 32] [ 6] [220699] +12:58:10 [ 35] [ 32] [6213545000409312=491212010931874] +12:58:10 [ 37] [ 12] [507900094426] +12:58:10 [ 41] [ 8] [01000900] +12:58:10 [ 42] [ 15] [APTRA ] +12:58:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:58:10 [ 49] [ 3] [418] +12:58:10 [ 52] [ 16] [D9182F29AE275B01] +12:58:10 ============================================================================ +12:58:10 + + +waiting on router queue for slot.... +12:58:10 Sending to : +12:58:10 ============================================================================ +12:58:10 Sending to : +12:58:10 ============================================================================ +12:58:11 ============================================================================ +12:58:11 Slot Id : <82> +12:58:11 Transaction Type : REQUEST +12:58:11 Received From : +12:58:11 ============================================================================ +12:58:11 FNo. Len. Field Value +12:58:11 ============================================================================ +12:58:11 [ 1] [ 4] [0200] +12:58:11 [ 2] [ 16] [6213545000409312] +12:58:11 [ 3] [ 6] [012000] +12:58:11 [ 4] [ 12] [000050000000] +12:58:11 [ 7] [ 10] [0320130558] +12:58:11 [ 11] [ 6] [254863] +12:58:11 [ 12] [ 6] [130558] +12:58:11 [ 13] [ 4] [0320] +12:58:11 [ 14] [ 4] [4912] +12:58:11 [ 15] [ 4] [0320] +12:58:11 [ 18] [ 4] [6011] +12:58:11 [ 22] [ 3] [900] +12:58:11 [ 25] [ 2] [02] +12:58:11 [ 28] [ 9] [D00002000] +12:58:11 [ 32] [ 6] [220699] +12:58:11 [ 35] [ 32] [6213545000409312=491212010931874] +12:58:11 [ 37] [ 12] [507900094426] +12:58:11 [ 41] [ 8] [01000900] +12:58:11 [ 42] [ 15] [APTRA ] +12:58:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:58:11 [ 49] [ 3] [418] +12:58:11 [ 52] [ 16] [D9182F29AE275B01] +12:58:11 ============================================================================ +12:58:11 + + +waiting on router queue for slot.... +12:58:11 Sending to : +12:58:11 ============================================================================ +12:58:11 ============================================================================ +12:58:11 Slot Id : <82> +12:58:11 Transaction Type : REQUEST +12:58:11 Received From : +12:58:11 ============================================================================ +12:58:11 FNo. Len. Field Value +12:58:11 ============================================================================ +12:58:11 [ 1] [ 4] [0200] +12:58:11 [ 2] [ 16] [6213545000409312] +12:58:11 [ 3] [ 6] [012000] +12:58:11 [ 4] [ 12] [000050000000] +12:58:11 [ 7] [ 10] [0320130558] +12:58:11 [ 11] [ 6] [254863] +12:58:11 [ 12] [ 6] [130558] +12:58:11 [ 13] [ 4] [0320] +12:58:11 [ 14] [ 4] [4912] +12:58:11 [ 15] [ 4] [0320] +12:58:11 [ 18] [ 4] [6011] +12:58:11 [ 22] [ 3] [900] +12:58:11 [ 25] [ 2] [02] +12:58:11 [ 28] [ 9] [D00002000] +12:58:11 [ 32] [ 6] [220699] +12:58:11 [ 35] [ 32] [6213545000409312=491212010931874] +12:58:11 [ 37] [ 12] [507900094426] +12:58:11 [ 41] [ 8] [01000900] +12:58:11 [ 42] [ 15] [APTRA ] +12:58:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +12:58:11 [ 49] [ 3] [418] +12:58:11 [ 52] [ 16] [3A29FFDE2A686E80] +12:58:11 ============================================================================ +12:58:11 + + +waiting on router queue for slot.... +12:58:11 Sending to : <0> +12:58:11 ============================================================================ +12:58:11 ============================================================================ +12:58:11 Slot Id : <82> +12:58:11 Transaction Type : RESPONSE +12:58:11 Received From : +12:58:11 ============================================================================ +12:58:11 FNo. Len. Field Value +12:58:11 ============================================================================ +12:58:11 [ 1] [ 4] [0210] +12:58:11 [ 2] [ 16] [6213545000409312] +12:58:11 [ 3] [ 6] [012000] +12:58:11 [ 4] [ 12] [000050000000] +12:58:11 [ 7] [ 10] [0320130558] +12:58:11 [ 11] [ 6] [254863] +12:58:11 [ 12] [ 6] [130558] +12:58:11 [ 13] [ 4] [0320] +12:58:11 [ 15] [ 4] [0320] +12:58:11 [ 18] [ 4] [6011] +12:58:11 [ 32] [ 6] [220699] +12:58:11 [ 35] [ 32] [6213545000409312=491212010931874] +12:58:11 [ 37] [ 12] [507900094426] +12:58:11 [ 38] [ 6] [899117] +12:58:11 [ 39] [ 2] [00] +12:58:11 [ 41] [ 8] [01000900] +12:58:11 [ 49] [ 3] [418] +12:58:11 [ 54] [ 40] [2001418C0001884849522002418C000188484952] +12:58:11 ============================================================================ +12:58:11 Sending to : +12:58:11 ============================================================================ +12:58:11 + + +waiting on router queue for slot.... +12:58:13 ============================================================================ +12:58:13 Slot Id : <82> +12:58:13 Transaction Type : RESPONSE +12:58:13 Received From : +12:58:13 ============================================================================ +12:58:13 FNo. Len. Field Value +12:58:13 ============================================================================ +12:58:13 [ 1] [ 4] [0210] +12:58:13 [ 2] [ 16] [6213545000409312] +12:58:13 [ 3] [ 6] [012000] +12:58:13 [ 4] [ 12] [000050000000] +12:58:13 [ 7] [ 10] [0320130558] +12:58:13 [ 11] [ 6] [254863] +12:58:13 [ 12] [ 6] [130558] +12:58:13 [ 13] [ 4] [0320] +12:58:13 [ 15] [ 4] [0320] +12:58:13 [ 18] [ 4] [6011] +12:58:13 [ 32] [ 6] [220699] +12:58:13 [ 35] [ 32] [6213545000409312=491212010931874] +12:58:13 [ 37] [ 12] [507900094426] +12:58:13 [ 38] [ 6] [899117] +12:58:13 [ 39] [ 2] [00] +12:58:13 [ 41] [ 8] [01000900] +12:58:13 [ 49] [ 3] [418] +12:58:13 [ 54] [ 40] [2001418C0001884849522002418C000188484952] +12:58:13 ============================================================================ +12:58:13 Calculate Source COMM Id = 1 +12:58:13 ============================================================================ +12:58:13 + + +waiting on router queue for slot.... +12:58:20 ============================================================================ +12:58:20 Slot Id : <93> +12:58:20 Transaction Type : REQUEST +12:58:20 Received From : +12:58:20 ============================================================================ +12:58:20 FNo. Len. Field Value +12:58:20 ============================================================================ +12:58:20 [ 1] [ 4] [0800] +12:58:20 [ 7] [ 10] [0320055727] +12:58:20 [ 11] [ 6] [156436] +12:58:20 [ 70] [ 3] [301] +12:58:20 ============================================================================ +12:58:20 + + +waiting on router queue for slot.... +12:58:20 Sending to : +12:58:20 ============================================================================ +12:58:20 ============================================================================ +12:58:20 Slot Id : <93> +12:58:20 Transaction Type : RESPONSE +12:58:20 Received From : +12:58:20 ============================================================================ +12:58:20 FNo. Len. Field Value +12:58:20 ============================================================================ +12:58:20 [ 1] [ 4] [0810] +12:58:20 [ 7] [ 10] [0320055727] +12:58:20 [ 11] [ 6] [156436] +12:58:20 [ 39] [ 2] [00] +12:58:20 [ 70] [ 3] [301] +12:58:20 ============================================================================ +12:58:20 Calculate Source COMM Id = 2 +12:58:20 ============================================================================ +12:58:20 + + +waiting on router queue for slot.... +12:58:30 ============================================================================ +12:58:30 Slot Id : <100> +12:58:30 Transaction Type : REQUEST +12:58:30 Received From : +12:58:30 ============================================================================ +12:58:30 FNo. Len. Field Value +12:58:30 ============================================================================ +12:58:30 [ 1] [ 4] [0800] +12:58:30 [ 7] [ 10] [0320055737] +12:58:30 [ 11] [ 6] [156437] +12:58:30 [ 70] [ 3] [301] +12:58:30 ============================================================================ +12:58:30 + + +waiting on router queue for slot.... +12:58:30 Sending to : +12:58:30 ============================================================================ +12:58:30 ============================================================================ +12:58:30 Slot Id : <100> +12:58:30 Transaction Type : RESPONSE +12:58:30 Received From : +12:58:30 ============================================================================ +12:58:30 FNo. Len. Field Value +12:58:30 ============================================================================ +12:58:30 [ 1] [ 4] [0810] +12:58:30 [ 7] [ 10] [0320055737] +12:58:30 [ 11] [ 6] [156437] +12:58:30 [ 39] [ 2] [00] +12:58:30 [ 70] [ 3] [301] +12:58:30 ============================================================================ +12:58:30 Calculate Source COMM Id = 2 +12:58:30 ============================================================================ +12:58:30 + + +waiting on router queue for slot.... +12:58:42 ============================================================================ +12:58:42 Slot Id : <91> +12:58:42 Transaction Type : REQUEST +12:58:42 Received From : +12:58:42 ============================================================================ +12:58:42 FNo. Len. Field Value +12:58:42 ============================================================================ +12:58:42 [ 1] [ 4] [0800] +12:58:42 [ 7] [ 10] [0320055748] +12:58:42 [ 11] [ 6] [156438] +12:58:42 [ 70] [ 3] [301] +12:58:42 ============================================================================ +12:58:42 + + +waiting on router queue for slot.... +12:58:42 Sending to : +12:58:42 ============================================================================ +12:58:42 ============================================================================ +12:58:42 Slot Id : <91> +12:58:42 Transaction Type : RESPONSE +12:58:42 Received From : +12:58:42 ============================================================================ +12:58:42 FNo. Len. Field Value +12:58:42 ============================================================================ +12:58:42 [ 1] [ 4] [0810] +12:58:42 [ 7] [ 10] [0320055748] +12:58:42 [ 11] [ 6] [156438] +12:58:42 [ 39] [ 2] [00] +12:58:42 [ 70] [ 3] [301] +12:58:42 ============================================================================ +12:58:42 Calculate Source COMM Id = 2 +12:58:42 ============================================================================ +12:58:42 + + +waiting on router queue for slot.... +12:58:44 ============================================================================ +12:58:44 Slot Id : <65> +12:58:44 Transaction Type : REQUEST +12:58:44 Received From : +12:58:44 ============================================================================ +12:58:44 FNo. Len. Field Value +12:58:44 ============================================================================ +12:58:44 [ 1] [ 4] [0800] +12:58:44 [ 2] [ 5] [02531] +12:58:44 [ 3] [ 6] [579128] +12:58:44 [ 7] [ 10] [0320055844] +12:58:44 [ 11] [ 6] [807165] +12:58:44 [ 15] [ 10] [0320055844] +12:58:44 [ 37] [ 11] [57912807165] +12:58:44 [ 70] [ 3] [001] +12:58:44 ============================================================================ +12:58:44 + + +waiting on router queue for slot.... +12:58:44 ============================================================================ +12:58:44 Slot Id : <65> +12:58:44 Transaction Type : RESPONSE +12:58:44 Received From : +12:58:44 ============================================================================ +12:58:44 FNo. Len. Field Value +12:58:44 ============================================================================ +12:58:44 [ 1] [ 4] [0810] +12:58:44 [ 7] [ 10] [0320055844] +12:58:44 [ 11] [ 6] [807165] +12:58:44 [ 15] [ 4] [0320] +12:58:44 [ 37] [ 12] [57912807165] +12:58:44 [ 39] [ 2] [00] +12:58:44 [ 70] [ 3] [001] +12:58:44 ============================================================================ +12:58:44 Sending to : +12:58:44 ============================================================================ +12:58:44 + + +waiting on router queue for slot.... +12:58:53 ============================================================================ +12:58:53 Slot Id : <72> +12:58:53 Transaction Type : REQUEST +12:58:53 Received From : +12:58:53 ============================================================================ +12:58:53 FNo. Len. Field Value +12:58:53 ============================================================================ +12:58:53 [ 1] [ 4] [0800] +12:58:53 [ 7] [ 10] [0320055801] +12:58:53 [ 11] [ 6] [156439] +12:58:53 [ 70] [ 3] [301] +12:58:53 ============================================================================ +12:58:53 + + +waiting on router queue for slot.... +12:58:53 Sending to : +12:58:53 ============================================================================ +12:58:53 ============================================================================ +12:58:53 Slot Id : <72> +12:58:53 Transaction Type : RESPONSE +12:58:53 Received From : +12:58:53 ============================================================================ +12:58:53 FNo. Len. Field Value +12:58:53 ============================================================================ +12:58:53 [ 1] [ 4] [0810] +12:58:53 [ 7] [ 10] [0320055801] +12:58:53 [ 11] [ 6] [156439] +12:58:53 [ 39] [ 2] [00] +12:58:53 [ 70] [ 3] [301] +12:58:53 ============================================================================ +12:58:53 Calculate Source COMM Id = 2 +12:58:53 ============================================================================ +12:58:53 + + +waiting on router queue for slot.... +12:58:55 ============================================================================ +12:58:55 Slot Id : <106> +12:58:55 Transaction Type : REQUEST +12:58:55 Received From : +12:58:55 ============================================================================ +12:58:55 FNo. Len. Field Value +12:58:55 ============================================================================ +12:58:55 [ 1] [ 4] [0200] +12:58:55 [ 2] [ 16] [6213545000682595] +12:58:55 [ 3] [ 6] [010000] +12:58:55 [ 4] [ 12] [000100000000] +12:58:55 [ 7] [ 10] [0320125645] +12:58:55 [ 11] [ 6] [945384] +12:58:55 [ 12] [ 6] [125645] +12:58:55 [ 13] [ 4] [0320] +12:58:55 [ 15] [ 4] [0320] +12:58:55 [ 18] [ 4] [6011] +12:58:55 [ 19] [ 3] [418] +12:58:55 [ 22] [ 3] [021] +12:58:55 [ 25] [ 2] [01] +12:58:55 [ 28] [ 9] [D00002000] +12:58:55 [ 32] [ 6] [668899] +12:58:55 [ 35] [ 32] [6213545000682595=491212018259772] +12:58:55 [ 37] [ 12] [507902150983] +12:58:55 [ 41] [ 8] [03020025] +12:58:55 [ 42] [ 15] [APT ] +12:58:55 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:58:55 [ 49] [ 3] [418] +12:58:55 [ 52] [ 16] [42325BC52438D910] +12:58:55 ============================================================================ +12:58:55 + + +waiting on router queue for slot.... +12:58:55 Sending to : +12:58:55 ============================================================================ +12:58:55 Sending to : +12:58:55 ============================================================================ +12:58:55 ============================================================================ +12:58:55 Slot Id : <106> +12:58:55 Transaction Type : REQUEST +12:58:55 Received From : +12:58:55 ============================================================================ +12:58:55 FNo. Len. Field Value +12:58:55 ============================================================================ +12:58:55 [ 1] [ 4] [0200] +12:58:55 [ 2] [ 16] [6213545000682595] +12:58:55 [ 3] [ 6] [010000] +12:58:55 [ 4] [ 12] [000100000000] +12:58:55 [ 7] [ 10] [0320125645] +12:58:55 [ 11] [ 6] [945384] +12:58:55 [ 12] [ 6] [125645] +12:58:55 [ 13] [ 4] [0320] +12:58:55 [ 15] [ 4] [0320] +12:58:55 [ 18] [ 4] [6011] +12:58:55 [ 19] [ 3] [418] +12:58:55 [ 22] [ 3] [021] +12:58:55 [ 25] [ 2] [01] +12:58:55 [ 28] [ 9] [D00002000] +12:58:55 [ 32] [ 6] [668899] +12:58:55 [ 35] [ 32] [6213545000682595=491212018259772] +12:58:55 [ 37] [ 12] [507902150983] +12:58:55 [ 41] [ 8] [03020025] +12:58:55 [ 42] [ 15] [APT ] +12:58:55 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:58:55 [ 49] [ 3] [418] +12:58:55 [ 52] [ 16] [42325BC52438D910] +12:58:55 ============================================================================ +12:58:55 + + +waiting on router queue for slot.... +12:58:55 Sending to : +12:58:55 ============================================================================ +12:58:55 ============================================================================ +12:58:55 Slot Id : <106> +12:58:55 Transaction Type : REQUEST +12:58:55 Received From : +12:58:55 ============================================================================ +12:58:55 FNo. Len. Field Value +12:58:55 ============================================================================ +12:58:55 [ 1] [ 4] [0200] +12:58:55 [ 2] [ 16] [6213545000682595] +12:58:55 [ 3] [ 6] [010000] +12:58:55 [ 4] [ 12] [000100000000] +12:58:55 [ 7] [ 10] [0320125645] +12:58:55 [ 11] [ 6] [945384] +12:58:55 [ 12] [ 6] [125645] +12:58:55 [ 13] [ 4] [0320] +12:58:55 [ 15] [ 4] [0320] +12:58:55 [ 18] [ 4] [6011] +12:58:55 [ 19] [ 3] [418] +12:58:55 [ 22] [ 3] [021] +12:58:55 [ 25] [ 2] [01] +12:58:55 [ 28] [ 9] [D00002000] +12:58:55 [ 32] [ 6] [668899] +12:58:55 [ 35] [ 32] [6213545000682595=491212018259772] +12:58:55 [ 37] [ 12] [507902150983] +12:58:55 [ 41] [ 8] [03020025] +12:58:55 [ 42] [ 15] [APT ] +12:58:55 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:58:55 [ 49] [ 3] [418] +12:58:55 [ 52] [ 16] [225C262579BA6AD0] +12:58:55 ============================================================================ +12:58:55 + + +waiting on router queue for slot.... +12:58:55 Sending to : <0> +12:58:55 ============================================================================ +12:58:56 ============================================================================ +12:58:56 Slot Id : <106> +12:58:56 Transaction Type : RESPONSE +12:58:56 Received From : +12:58:56 ============================================================================ +12:58:56 FNo. Len. Field Value +12:58:56 ============================================================================ +12:58:56 [ 1] [ 4] [0210] +12:58:56 [ 2] [ 16] [6213545000682595] +12:58:56 [ 3] [ 6] [010000] +12:58:56 [ 4] [ 12] [000100000000] +12:58:56 [ 7] [ 10] [0320125645] +12:58:56 [ 11] [ 6] [945384] +12:58:56 [ 12] [ 6] [125645] +12:58:56 [ 13] [ 4] [0320] +12:58:56 [ 15] [ 4] [0320] +12:58:56 [ 18] [ 4] [6011] +12:58:56 [ 19] [ 3] [418] +12:58:56 [ 32] [ 6] [668899] +12:58:56 [ 35] [ 32] [6213545000682595=491212018259772] +12:58:56 [ 37] [ 12] [507902150983] +12:58:56 [ 38] [ 6] [296611] +12:58:56 [ 39] [ 2] [00] +12:58:56 [ 41] [ 8] [03020025] +12:58:56 [ 49] [ 3] [418] +12:58:56 [ 54] [ 40] [0001418C0002159653560002418C000215965356] +12:58:56 ============================================================================ +12:58:56 Sending to : +12:58:56 ============================================================================ +12:58:56 + + +waiting on router queue for slot.... +12:58:57 ============================================================================ +12:58:57 Slot Id : <106> +12:58:57 Transaction Type : RESPONSE +12:58:57 Received From : +12:58:57 ============================================================================ +12:58:57 FNo. Len. Field Value +12:58:57 ============================================================================ +12:58:57 [ 1] [ 4] [0210] +12:58:57 [ 2] [ 16] [6213545000682595] +12:58:57 [ 3] [ 6] [010000] +12:58:57 [ 4] [ 12] [000100000000] +12:58:57 [ 7] [ 10] [0320125645] +12:58:57 [ 11] [ 6] [945384] +12:58:57 [ 12] [ 6] [125645] +12:58:57 [ 13] [ 4] [0320] +12:58:57 [ 15] [ 4] [0320] +12:58:57 [ 18] [ 4] [6011] +12:58:57 [ 19] [ 3] [418] +12:58:57 [ 32] [ 6] [668899] +12:58:57 [ 35] [ 32] [6213545000682595=491212018259772] +12:58:57 [ 37] [ 12] [507902150983] +12:58:57 [ 38] [ 6] [296611] +12:58:57 [ 39] [ 2] [00] +12:58:57 [ 41] [ 8] [03020025] +12:58:57 [ 49] [ 3] [418] +12:58:57 [ 54] [ 40] [0001418C0002159653560002418C000215965356] +12:58:57 ============================================================================ +12:58:57 Calculate Source COMM Id = 4 +12:58:57 ============================================================================ +12:58:57 + + +waiting on router queue for slot.... +12:59:10 ============================================================================ +12:59:10 Slot Id : <66> +12:59:10 Transaction Type : REQUEST +12:59:10 Received From : +12:59:10 ============================================================================ +12:59:10 FNo. Len. Field Value +12:59:10 ============================================================================ +12:59:10 [ 1] [ 4] [0800] +12:59:10 [ 7] [ 10] [0320055816] +12:59:10 [ 11] [ 6] [156440] +12:59:10 [ 70] [ 3] [301] +12:59:10 ============================================================================ +12:59:10 + + +waiting on router queue for slot.... +12:59:10 Sending to : +12:59:10 ============================================================================ +12:59:10 ============================================================================ +12:59:10 Slot Id : <66> +12:59:10 Transaction Type : RESPONSE +12:59:10 Received From : +12:59:10 ============================================================================ +12:59:10 FNo. Len. Field Value +12:59:10 ============================================================================ +12:59:10 [ 1] [ 4] [0810] +12:59:10 [ 7] [ 10] [0320055816] +12:59:10 [ 11] [ 6] [156440] +12:59:10 [ 39] [ 2] [00] +12:59:10 [ 70] [ 3] [301] +12:59:10 ============================================================================ +12:59:10 Calculate Source COMM Id = 2 +12:59:10 ============================================================================ +12:59:10 + + +waiting on router queue for slot.... +12:59:14 ============================================================================ +12:59:14 Slot Id : <76> +12:59:14 Transaction Type : REQUEST +12:59:14 Received From : +12:59:14 ============================================================================ +12:59:14 FNo. Len. Field Value +12:59:14 ============================================================================ +12:59:14 [ 1] [ 4] [0200] +12:59:14 [ 2] [ 16] [6213544001947255] +12:59:14 [ 3] [ 6] [301000] +12:59:14 [ 4] [ 12] [000000000000] +12:59:14 [ 7] [ 10] [0320125705] +12:59:14 [ 11] [ 6] [945398] +12:59:14 [ 12] [ 6] [125705] +12:59:14 [ 13] [ 4] [0320] +12:59:14 [ 15] [ 4] [0320] +12:59:14 [ 18] [ 4] [6011] +12:59:14 [ 19] [ 3] [418] +12:59:14 [ 22] [ 3] [021] +12:59:14 [ 25] [ 2] [01] +12:59:14 [ 28] [ 9] [D00000000] +12:59:14 [ 32] [ 6] [668899] +12:59:14 [ 35] [ 32] [6213544001947255=491212014725906] +12:59:14 [ 37] [ 12] [507902460598] +12:59:14 [ 41] [ 8] [03815002] +12:59:14 [ 42] [ 15] [APT ] +12:59:14 [ 43] [ 40] [ NAKASUNG CHAMPASAK LAO] +12:59:14 [ 49] [ 3] [418] +12:59:14 [ 52] [ 16] [D0309237ED141694] +12:59:14 ============================================================================ +12:59:14 + + +waiting on router queue for slot.... +12:59:14 Sending to : +12:59:14 ============================================================================ +12:59:14 Sending to : +12:59:14 ============================================================================ +12:59:14 ============================================================================ +12:59:14 Slot Id : <76> +12:59:14 Transaction Type : REQUEST +12:59:14 Received From : +12:59:14 ============================================================================ +12:59:14 FNo. Len. Field Value +12:59:14 ============================================================================ +12:59:14 [ 1] [ 4] [0200] +12:59:14 [ 2] [ 16] [6213544001947255] +12:59:14 [ 3] [ 6] [301000] +12:59:14 [ 4] [ 12] [000000000000] +12:59:14 [ 7] [ 10] [0320125705] +12:59:14 [ 11] [ 6] [945398] +12:59:14 [ 12] [ 6] [125705] +12:59:14 [ 13] [ 4] [0320] +12:59:14 [ 15] [ 4] [0320] +12:59:14 [ 18] [ 4] [6011] +12:59:14 [ 19] [ 3] [418] +12:59:14 [ 22] [ 3] [021] +12:59:14 [ 25] [ 2] [01] +12:59:14 [ 28] [ 9] [D00000000] +12:59:14 [ 32] [ 6] [668899] +12:59:14 [ 35] [ 32] [6213544001947255=491212014725906] +12:59:14 [ 37] [ 12] [507902460598] +12:59:14 [ 41] [ 8] [03815002] +12:59:14 [ 42] [ 15] [APT ] +12:59:14 [ 43] [ 40] [ NAKASUNG CHAMPASAK LAO] +12:59:14 [ 49] [ 3] [418] +12:59:14 [ 52] [ 16] [D0309237ED141694] +12:59:14 ============================================================================ +12:59:14 + + +waiting on router queue for slot.... +12:59:14 Sending to : +12:59:14 ============================================================================ +12:59:14 ============================================================================ +12:59:14 Slot Id : <76> +12:59:14 Transaction Type : REQUEST +12:59:14 Received From : +12:59:14 ============================================================================ +12:59:14 FNo. Len. Field Value +12:59:14 ============================================================================ +12:59:14 [ 1] [ 4] [0200] +12:59:14 [ 2] [ 16] [6213544001947255] +12:59:14 [ 3] [ 6] [301000] +12:59:14 [ 4] [ 12] [000000000000] +12:59:14 [ 7] [ 10] [0320125705] +12:59:14 [ 11] [ 6] [945398] +12:59:14 [ 12] [ 6] [125705] +12:59:14 [ 13] [ 4] [0320] +12:59:14 [ 15] [ 4] [0320] +12:59:14 [ 18] [ 4] [6011] +12:59:14 [ 19] [ 3] [418] +12:59:14 [ 22] [ 3] [021] +12:59:14 [ 25] [ 2] [01] +12:59:14 [ 28] [ 9] [D00000000] +12:59:14 [ 32] [ 6] [668899] +12:59:14 [ 35] [ 32] [6213544001947255=491212014725906] +12:59:14 [ 37] [ 12] [507902460598] +12:59:14 [ 41] [ 8] [03815002] +12:59:14 [ 42] [ 15] [APT ] +12:59:14 [ 43] [ 40] [ NAKASUNG CHAMPASAK LAO] +12:59:14 [ 49] [ 3] [418] +12:59:14 [ 52] [ 16] [8914CBC7B5714288] +12:59:14 ============================================================================ +12:59:14 + + +waiting on router queue for slot.... +12:59:14 Sending to : <0> +12:59:14 ============================================================================ +12:59:15 ============================================================================ +12:59:15 Slot Id : <76> +12:59:15 Transaction Type : RESPONSE +12:59:15 Received From : +12:59:15 ============================================================================ +12:59:15 FNo. Len. Field Value +12:59:15 ============================================================================ +12:59:15 [ 1] [ 4] [0210] +12:59:15 [ 2] [ 16] [6213544001947255] +12:59:15 [ 3] [ 6] [301000] +12:59:15 [ 4] [ 12] [000000000000] +12:59:15 [ 7] [ 10] [0320125705] +12:59:15 [ 11] [ 6] [945398] +12:59:15 [ 12] [ 6] [125705] +12:59:15 [ 13] [ 4] [0320] +12:59:15 [ 15] [ 4] [0320] +12:59:15 [ 18] [ 4] [6011] +12:59:15 [ 19] [ 3] [418] +12:59:15 [ 32] [ 6] [668899] +12:59:15 [ 35] [ 32] [6213544001947255=491212014725906] +12:59:15 [ 37] [ 12] [507902460598] +12:59:15 [ 38] [ 6] [564106] +12:59:15 [ 39] [ 2] [00] +12:59:15 [ 41] [ 8] [03815002] +12:59:15 [ 49] [ 3] [418] +12:59:15 [ 54] [ 40] [1001418C0001224990091002418C000122499009] +12:59:15 ============================================================================ +12:59:15 Sending to : +12:59:15 ============================================================================ +12:59:15 + + +waiting on router queue for slot.... +12:59:16 ============================================================================ +12:59:16 Slot Id : <76> +12:59:16 Transaction Type : RESPONSE +12:59:16 Received From : +12:59:16 ============================================================================ +12:59:16 FNo. Len. Field Value +12:59:16 ============================================================================ +12:59:16 [ 1] [ 4] [0210] +12:59:16 [ 2] [ 16] [6213544001947255] +12:59:16 [ 3] [ 6] [301000] +12:59:16 [ 4] [ 12] [000000000000] +12:59:16 [ 7] [ 10] [0320125705] +12:59:16 [ 11] [ 6] [945398] +12:59:16 [ 12] [ 6] [125705] +12:59:16 [ 13] [ 4] [0320] +12:59:16 [ 15] [ 4] [0320] +12:59:16 [ 18] [ 4] [6011] +12:59:16 [ 19] [ 3] [418] +12:59:16 [ 32] [ 6] [668899] +12:59:16 [ 35] [ 32] [6213544001947255=491212014725906] +12:59:16 [ 37] [ 12] [507902460598] +12:59:16 [ 38] [ 6] [564106] +12:59:16 [ 39] [ 2] [00] +12:59:16 [ 41] [ 8] [03815002] +12:59:16 [ 49] [ 3] [418] +12:59:16 [ 54] [ 40] [1001418C0001224990091002418C000122499009] +12:59:16 ============================================================================ +12:59:16 Calculate Source COMM Id = 4 +12:59:16 ============================================================================ +12:59:16 + + +waiting on router queue for slot.... +12:59:24 ============================================================================ +12:59:24 Slot Id : <90> +12:59:24 Transaction Type : REQUEST +12:59:24 Received From : +12:59:24 ============================================================================ +12:59:24 FNo. Len. Field Value +12:59:24 ============================================================================ +12:59:24 [ 1] [ 4] [0200] +12:59:24 [ 2] [ 16] [6213541000725930] +12:59:24 [ 3] [ 6] [010000] +12:59:24 [ 4] [ 12] [000100000000] +12:59:24 [ 7] [ 10] [0320055831] +12:59:24 [ 11] [ 6] [269185] +12:59:24 [ 12] [ 6] [125831] +12:59:24 [ 13] [ 4] [0320] +12:59:24 [ 14] [ 4] [4912] +12:59:24 [ 15] [ 4] [0320] +12:59:24 [ 18] [ 4] [6011] +12:59:24 [ 19] [ 3] [418] +12:59:24 [ 22] [ 3] [021] +12:59:24 [ 25] [ 2] [01] +12:59:24 [ 28] [ 9] [D00002000] +12:59:24 [ 32] [ 6] [180893] +12:59:24 [ 35] [ 32] [6213541000725930=491212012593561] +12:59:24 [ 37] [ 12] [507905269185] +12:59:24 [ 41] [ 8] [0441VT52] +12:59:24 [ 42] [ 15] [999999 ] +12:59:24 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +12:59:24 [ 49] [ 3] [418] +12:59:24 [ 52] [ 16] [4F946241B45A8709] +12:59:24 ============================================================================ +12:59:24 + + +waiting on router queue for slot.... +12:59:24 Sending to : +12:59:24 ============================================================================ +12:59:24 Sending to : +12:59:24 ============================================================================ +12:59:24 ============================================================================ +12:59:24 Slot Id : <90> +12:59:24 Transaction Type : REQUEST +12:59:24 Received From : +12:59:24 ============================================================================ +12:59:24 FNo. Len. Field Value +12:59:24 ============================================================================ +12:59:24 [ 1] [ 4] [0200] +12:59:24 [ 2] [ 16] [6213541000725930] +12:59:24 [ 3] [ 6] [010000] +12:59:24 [ 4] [ 12] [000100000000] +12:59:24 [ 7] [ 10] [0320055831] +12:59:24 [ 11] [ 6] [269185] +12:59:24 [ 12] [ 6] [125831] +12:59:24 [ 13] [ 4] [0320] +12:59:24 [ 14] [ 4] [4912] +12:59:24 [ 15] [ 4] [0320] +12:59:24 [ 18] [ 4] [6011] +12:59:24 [ 19] [ 3] [418] +12:59:24 [ 22] [ 3] [021] +12:59:24 [ 25] [ 2] [01] +12:59:24 [ 28] [ 9] [D00002000] +12:59:24 [ 32] [ 6] [180893] +12:59:24 [ 35] [ 32] [6213541000725930=491212012593561] +12:59:24 [ 37] [ 12] [507905269185] +12:59:24 [ 41] [ 8] [0441VT52] +12:59:24 [ 42] [ 15] [999999 ] +12:59:24 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +12:59:24 [ 49] [ 3] [418] +12:59:24 [ 52] [ 16] [4F946241B45A8709] +12:59:24 ============================================================================ +12:59:24 + + +waiting on router queue for slot.... +12:59:24 Sending to : +12:59:24 ============================================================================ +12:59:24 ============================================================================ +12:59:24 Slot Id : <90> +12:59:24 Transaction Type : REQUEST +12:59:24 Received From : +12:59:24 ============================================================================ +12:59:24 FNo. Len. Field Value +12:59:24 ============================================================================ +12:59:24 [ 1] [ 4] [0200] +12:59:24 [ 2] [ 16] [6213541000725930] +12:59:24 [ 3] [ 6] [010000] +12:59:24 [ 4] [ 12] [000100000000] +12:59:24 [ 7] [ 10] [0320055831] +12:59:24 [ 11] [ 6] [269185] +12:59:24 [ 12] [ 6] [125831] +12:59:24 [ 13] [ 4] [0320] +12:59:24 [ 14] [ 4] [4912] +12:59:24 [ 15] [ 4] [0320] +12:59:24 [ 18] [ 4] [6011] +12:59:24 [ 19] [ 3] [418] +12:59:24 [ 22] [ 3] [021] +12:59:24 [ 25] [ 2] [01] +12:59:24 [ 28] [ 9] [D00002000] +12:59:24 [ 32] [ 6] [180893] +12:59:24 [ 35] [ 32] [6213541000725930=491212012593561] +12:59:24 [ 37] [ 12] [507905269185] +12:59:24 [ 41] [ 8] [0441VT52] +12:59:24 [ 42] [ 15] [999999 ] +12:59:24 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +12:59:24 [ 49] [ 3] [418] +12:59:24 [ 52] [ 16] [B46473747C778273] +12:59:24 ============================================================================ +12:59:24 + + +waiting on router queue for slot.... +12:59:24 Sending to : <0> +12:59:24 ============================================================================ +12:59:25 ============================================================================ +12:59:25 Slot Id : <114> +12:59:25 Transaction Type : REQUEST +12:59:25 Received From : +12:59:25 ============================================================================ +12:59:25 FNo. Len. Field Value +12:59:25 ============================================================================ +12:59:25 [ 1] [ 4] [0800] +12:59:25 [ 7] [ 10] [0320055832] +12:59:25 [ 11] [ 6] [156441] +12:59:25 [ 70] [ 3] [301] +12:59:25 ============================================================================ +12:59:25 + + +waiting on router queue for slot.... +12:59:25 Sending to : +12:59:25 ============================================================================ +12:59:25 ============================================================================ +12:59:25 Slot Id : <114> +12:59:25 Transaction Type : RESPONSE +12:59:25 Received From : +12:59:25 ============================================================================ +12:59:25 FNo. Len. Field Value +12:59:25 ============================================================================ +12:59:25 [ 1] [ 4] [0810] +12:59:25 [ 7] [ 10] [0320055832] +12:59:25 [ 11] [ 6] [156441] +12:59:25 [ 39] [ 2] [00] +12:59:25 [ 70] [ 3] [301] +12:59:25 ============================================================================ +12:59:25 Calculate Source COMM Id = 2 +12:59:25 ============================================================================ +12:59:25 + + +waiting on router queue for slot.... +12:59:25 ============================================================================ +12:59:25 Slot Id : <90> +12:59:25 Transaction Type : RESPONSE +12:59:25 Received From : +12:59:25 ============================================================================ +12:59:25 FNo. Len. Field Value +12:59:25 ============================================================================ +12:59:25 [ 1] [ 4] [0210] +12:59:25 [ 2] [ 16] [6213541000725930] +12:59:25 [ 3] [ 6] [010000] +12:59:25 [ 4] [ 12] [000100000000] +12:59:25 [ 7] [ 10] [0320055831] +12:59:25 [ 11] [ 6] [269185] +12:59:25 [ 12] [ 6] [125831] +12:59:25 [ 13] [ 4] [0320] +12:59:25 [ 15] [ 4] [0320] +12:59:25 [ 18] [ 4] [6011] +12:59:25 [ 19] [ 3] [418] +12:59:25 [ 32] [ 6] [180893] +12:59:25 [ 35] [ 32] [6213541000725930=491212012593561] +12:59:25 [ 37] [ 12] [507905269185] +12:59:25 [ 38] [ 6] [532636] +12:59:25 [ 39] [ 2] [00] +12:59:25 [ 41] [ 8] [0441VT52] +12:59:25 [ 49] [ 3] [418] +12:59:25 [ 54] [ 40] [0001418C0000498000000002418C000049800000] +12:59:25 ============================================================================ +12:59:25 Sending to : +12:59:25 ============================================================================ +12:59:25 + + +waiting on router queue for slot.... +12:59:25 ============================================================================ +12:59:25 Slot Id : <83> +12:59:25 Transaction Type : REQUEST +12:59:25 Received From : +12:59:25 ============================================================================ +12:59:25 FNo. Len. Field Value +12:59:25 ============================================================================ +12:59:25 [ 1] [ 4] [0200] +12:59:25 [ 2] [ 16] [6213545001057722] +12:59:25 [ 3] [ 6] [010000] +12:59:25 [ 4] [ 12] [000100000000] +12:59:25 [ 7] [ 10] [0320055832] +12:59:25 [ 11] [ 6] [269186] +12:59:25 [ 12] [ 6] [125832] +12:59:25 [ 13] [ 4] [0320] +12:59:25 [ 14] [ 4] [4912] +12:59:25 [ 15] [ 4] [0320] +12:59:25 [ 18] [ 4] [6011] +12:59:25 [ 19] [ 3] [418] +12:59:25 [ 22] [ 3] [021] +12:59:25 [ 25] [ 2] [01] +12:59:25 [ 28] [ 9] [D00002000] +12:59:25 [ 32] [ 6] [180893] +12:59:25 [ 35] [ 32] [6213545001057722=491212015772869] +12:59:25 [ 37] [ 12] [507905269186] +12:59:25 [ 41] [ 8] [0301LPBX] +12:59:25 [ 42] [ 15] [999999 ] +12:59:25 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +12:59:25 [ 49] [ 3] [418] +12:59:25 [ 52] [ 16] [9F0D3526840B2385] +12:59:25 ============================================================================ +12:59:25 + + +waiting on router queue for slot.... +12:59:25 Sending to : +12:59:25 ============================================================================ +12:59:25 Sending to : +12:59:25 ============================================================================ +12:59:25 ============================================================================ +12:59:25 Slot Id : <83> +12:59:25 Transaction Type : REQUEST +12:59:25 Received From : +12:59:25 ============================================================================ +12:59:25 FNo. Len. Field Value +12:59:25 ============================================================================ +12:59:25 [ 1] [ 4] [0200] +12:59:25 [ 2] [ 16] [6213545001057722] +12:59:25 [ 3] [ 6] [010000] +12:59:25 [ 4] [ 12] [000100000000] +12:59:25 [ 7] [ 10] [0320055832] +12:59:25 [ 11] [ 6] [269186] +12:59:25 [ 12] [ 6] [125832] +12:59:25 [ 13] [ 4] [0320] +12:59:25 [ 14] [ 4] [4912] +12:59:25 [ 15] [ 4] [0320] +12:59:25 [ 18] [ 4] [6011] +12:59:25 [ 19] [ 3] [418] +12:59:25 [ 22] [ 3] [021] +12:59:25 [ 25] [ 2] [01] +12:59:25 [ 28] [ 9] [D00002000] +12:59:25 [ 32] [ 6] [180893] +12:59:25 [ 35] [ 32] [6213545001057722=491212015772869] +12:59:25 [ 37] [ 12] [507905269186] +12:59:25 [ 41] [ 8] [0301LPBX] +12:59:25 [ 42] [ 15] [999999 ] +12:59:25 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +12:59:25 [ 49] [ 3] [418] +12:59:25 [ 52] [ 16] [9F0D3526840B2385] +12:59:25 ============================================================================ +12:59:25 + + +waiting on router queue for slot.... +12:59:25 Sending to : +12:59:25 ============================================================================ +12:59:25 ============================================================================ +12:59:25 Slot Id : <83> +12:59:25 Transaction Type : REQUEST +12:59:25 Received From : +12:59:25 ============================================================================ +12:59:25 FNo. Len. Field Value +12:59:25 ============================================================================ +12:59:25 [ 1] [ 4] [0200] +12:59:25 [ 2] [ 16] [6213545001057722] +12:59:25 [ 3] [ 6] [010000] +12:59:25 [ 4] [ 12] [000100000000] +12:59:25 [ 7] [ 10] [0320055832] +12:59:25 [ 11] [ 6] [269186] +12:59:25 [ 12] [ 6] [125832] +12:59:25 [ 13] [ 4] [0320] +12:59:25 [ 14] [ 4] [4912] +12:59:25 [ 15] [ 4] [0320] +12:59:25 [ 18] [ 4] [6011] +12:59:25 [ 19] [ 3] [418] +12:59:25 [ 22] [ 3] [021] +12:59:25 [ 25] [ 2] [01] +12:59:25 [ 28] [ 9] [D00002000] +12:59:25 [ 32] [ 6] [180893] +12:59:25 [ 35] [ 32] [6213545001057722=491212015772869] +12:59:25 [ 37] [ 12] [507905269186] +12:59:25 [ 41] [ 8] [0301LPBX] +12:59:25 [ 42] [ 15] [999999 ] +12:59:25 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +12:59:25 [ 49] [ 3] [418] +12:59:25 [ 52] [ 16] [8C2234C8F212B3F0] +12:59:25 ============================================================================ +12:59:25 + + +waiting on router queue for slot.... +12:59:25 Sending to : <0> +12:59:25 ============================================================================ +12:59:26 ============================================================================ +12:59:26 Slot Id : <83> +12:59:26 Transaction Type : RESPONSE +12:59:26 Received From : +12:59:26 ============================================================================ +12:59:26 FNo. Len. Field Value +12:59:26 ============================================================================ +12:59:26 [ 1] [ 4] [0210] +12:59:26 [ 2] [ 16] [6213545001057722] +12:59:26 [ 3] [ 6] [010000] +12:59:26 [ 4] [ 12] [000100000000] +12:59:26 [ 7] [ 10] [0320055832] +12:59:26 [ 11] [ 6] [269186] +12:59:26 [ 12] [ 6] [125832] +12:59:26 [ 13] [ 4] [0320] +12:59:26 [ 15] [ 4] [0320] +12:59:26 [ 18] [ 4] [6011] +12:59:26 [ 19] [ 3] [418] +12:59:26 [ 32] [ 6] [180893] +12:59:26 [ 35] [ 32] [6213545001057722=491212015772869] +12:59:26 [ 37] [ 12] [507905269186] +12:59:26 [ 38] [ 6] [507438] +12:59:26 [ 39] [ 2] [00] +12:59:26 [ 41] [ 8] [0301LPBX] +12:59:26 [ 49] [ 3] [418] +12:59:26 [ 54] [ 40] [0001840C0000000022650002840C000000002265] +12:59:26 ============================================================================ +12:59:26 Sending to : +12:59:26 ============================================================================ +12:59:26 + + +waiting on router queue for slot.... +12:59:26 ============================================================================ +12:59:26 Slot Id : <90> +12:59:26 Transaction Type : RESPONSE +12:59:26 Received From : +12:59:26 ============================================================================ +12:59:26 FNo. Len. Field Value +12:59:26 ============================================================================ +12:59:26 [ 1] [ 4] [0210] +12:59:26 [ 2] [ 16] [6213541000725930] +12:59:26 [ 3] [ 6] [010000] +12:59:26 [ 4] [ 12] [000100000000] +12:59:26 [ 7] [ 10] [0320055831] +12:59:26 [ 11] [ 6] [269185] +12:59:26 [ 12] [ 6] [125831] +12:59:26 [ 13] [ 4] [0320] +12:59:26 [ 15] [ 4] [0320] +12:59:26 [ 18] [ 4] [6011] +12:59:26 [ 19] [ 3] [418] +12:59:26 [ 32] [ 6] [180893] +12:59:26 [ 35] [ 32] [6213541000725930=491212012593561] +12:59:26 [ 37] [ 12] [507905269185] +12:59:26 [ 38] [ 6] [532636] +12:59:26 [ 39] [ 2] [00] +12:59:26 [ 41] [ 8] [0441VT52] +12:59:26 [ 49] [ 3] [418] +12:59:26 [ 54] [ 40] [0001418C0000498000000002418C000049800000] +12:59:26 ============================================================================ +12:59:26 Calculate Source COMM Id = 2 +12:59:26 ============================================================================ +12:59:26 + + +waiting on router queue for slot.... +12:59:28 ============================================================================ +12:59:28 Slot Id : <83> +12:59:28 Transaction Type : RESPONSE +12:59:28 Received From : +12:59:28 ============================================================================ +12:59:28 FNo. Len. Field Value +12:59:28 ============================================================================ +12:59:28 [ 1] [ 4] [0210] +12:59:28 [ 2] [ 16] [6213545001057722] +12:59:28 [ 3] [ 6] [010000] +12:59:28 [ 4] [ 12] [000100000000] +12:59:28 [ 7] [ 10] [0320055832] +12:59:28 [ 11] [ 6] [269186] +12:59:28 [ 12] [ 6] [125832] +12:59:28 [ 13] [ 4] [0320] +12:59:28 [ 15] [ 4] [0320] +12:59:28 [ 18] [ 4] [6011] +12:59:28 [ 19] [ 3] [418] +12:59:28 [ 32] [ 6] [180893] +12:59:28 [ 35] [ 32] [6213545001057722=491212015772869] +12:59:28 [ 37] [ 12] [507905269186] +12:59:28 [ 38] [ 6] [507438] +12:59:28 [ 39] [ 2] [00] +12:59:28 [ 41] [ 8] [0301LPBX] +12:59:28 [ 49] [ 3] [418] +12:59:28 [ 54] [ 40] [0001840C0000000022650002840C000000002265] +12:59:28 ============================================================================ +12:59:28 Calculate Source COMM Id = 2 +12:59:28 ============================================================================ +12:59:28 + + +waiting on router queue for slot.... +12:59:41 ============================================================================ +12:59:41 Slot Id : <118> +12:59:41 Transaction Type : REQUEST +12:59:41 Received From : +12:59:41 ============================================================================ +12:59:41 FNo. Len. Field Value +12:59:41 ============================================================================ +12:59:41 [ 1] [ 4] [0800] +12:59:41 [ 7] [ 10] [0320055848] +12:59:41 [ 11] [ 6] [156442] +12:59:41 [ 70] [ 3] [301] +12:59:41 ============================================================================ +12:59:41 + + +waiting on router queue for slot.... +12:59:41 Sending to : +12:59:41 ============================================================================ +12:59:41 ============================================================================ +12:59:41 Slot Id : <118> +12:59:41 Transaction Type : RESPONSE +12:59:41 Received From : +12:59:41 ============================================================================ +12:59:41 FNo. Len. Field Value +12:59:41 ============================================================================ +12:59:41 [ 1] [ 4] [0810] +12:59:41 [ 7] [ 10] [0320055848] +12:59:41 [ 11] [ 6] [156442] +12:59:41 [ 39] [ 2] [00] +12:59:41 [ 70] [ 3] [301] +12:59:41 ============================================================================ +12:59:41 Calculate Source COMM Id = 2 +12:59:41 ============================================================================ +12:59:41 + + +waiting on router queue for slot.... +12:59:46 ============================================================================ +12:59:46 Slot Id : <74> +12:59:46 Transaction Type : REQUEST +12:59:46 Received From : +12:59:46 ============================================================================ +12:59:46 FNo. Len. Field Value +12:59:46 ============================================================================ +12:59:46 [ 1] [ 4] [0800] +12:59:46 [ 2] [ 5] [02531] +12:59:46 [ 3] [ 6] [579128] +12:59:46 [ 7] [ 10] [0320055946] +12:59:46 [ 11] [ 6] [807166] +12:59:46 [ 15] [ 10] [0320055946] +12:59:46 [ 37] [ 11] [57912807166] +12:59:46 [ 70] [ 3] [001] +12:59:46 ============================================================================ +12:59:46 + + +waiting on router queue for slot.... +12:59:46 ============================================================================ +12:59:46 Slot Id : <74> +12:59:46 Transaction Type : RESPONSE +12:59:46 Received From : +12:59:46 ============================================================================ +12:59:46 FNo. Len. Field Value +12:59:46 ============================================================================ +12:59:46 [ 1] [ 4] [0810] +12:59:46 [ 7] [ 10] [0320055946] +12:59:46 [ 11] [ 6] [807166] +12:59:46 [ 15] [ 4] [0320] +12:59:46 [ 37] [ 12] [57912807166] +12:59:46 [ 39] [ 2] [00] +12:59:46 [ 70] [ 3] [001] +12:59:46 ============================================================================ +12:59:46 Sending to : +12:59:46 ============================================================================ +12:59:46 + + +waiting on router queue for slot.... +12:59:47 ============================================================================ +12:59:47 Slot Id : <121> +12:59:47 Transaction Type : REQUEST +12:59:47 Received From : +12:59:47 ============================================================================ +12:59:47 FNo. Len. Field Value +12:59:47 ============================================================================ +12:59:47 [ 1] [ 4] [0200] +12:59:47 [ 2] [ 16] [6213545000682595] +12:59:47 [ 3] [ 6] [010000] +12:59:47 [ 4] [ 12] [000030000000] +12:59:47 [ 7] [ 10] [0320125737] +12:59:47 [ 11] [ 6] [945419] +12:59:47 [ 12] [ 6] [125737] +12:59:47 [ 13] [ 4] [0320] +12:59:47 [ 15] [ 4] [0320] +12:59:47 [ 18] [ 4] [6011] +12:59:47 [ 19] [ 3] [418] +12:59:47 [ 22] [ 3] [021] +12:59:47 [ 25] [ 2] [01] +12:59:47 [ 28] [ 9] [D00002000] +12:59:47 [ 32] [ 6] [668899] +12:59:47 [ 35] [ 32] [6213545000682595=491212018259772] +12:59:47 [ 37] [ 12] [507902150985] +12:59:47 [ 41] [ 8] [03020025] +12:59:47 [ 42] [ 15] [APT ] +12:59:47 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:59:47 [ 49] [ 3] [418] +12:59:47 [ 52] [ 16] [42325BC52438D910] +12:59:47 ============================================================================ +12:59:47 + + +waiting on router queue for slot.... +12:59:47 Sending to : +12:59:47 ============================================================================ +12:59:47 Sending to : +12:59:47 ============================================================================ +12:59:47 ============================================================================ +12:59:47 Slot Id : <121> +12:59:47 Transaction Type : REQUEST +12:59:47 Received From : +12:59:47 ============================================================================ +12:59:47 FNo. Len. Field Value +12:59:47 ============================================================================ +12:59:47 [ 1] [ 4] [0200] +12:59:47 [ 2] [ 16] [6213545000682595] +12:59:47 [ 3] [ 6] [010000] +12:59:47 [ 4] [ 12] [000030000000] +12:59:47 [ 7] [ 10] [0320125737] +12:59:47 [ 11] [ 6] [945419] +12:59:47 [ 12] [ 6] [125737] +12:59:47 [ 13] [ 4] [0320] +12:59:47 [ 15] [ 4] [0320] +12:59:47 [ 18] [ 4] [6011] +12:59:47 [ 19] [ 3] [418] +12:59:47 [ 22] [ 3] [021] +12:59:47 [ 25] [ 2] [01] +12:59:47 [ 28] [ 9] [D00002000] +12:59:47 [ 32] [ 6] [668899] +12:59:47 [ 35] [ 32] [6213545000682595=491212018259772] +12:59:47 [ 37] [ 12] [507902150985] +12:59:47 [ 41] [ 8] [03020025] +12:59:47 [ 42] [ 15] [APT ] +12:59:47 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:59:47 [ 49] [ 3] [418] +12:59:47 [ 52] [ 16] [42325BC52438D910] +12:59:47 ============================================================================ +12:59:47 + + +waiting on router queue for slot.... +12:59:47 Sending to : +12:59:47 ============================================================================ +12:59:47 ============================================================================ +12:59:47 Slot Id : <121> +12:59:47 Transaction Type : REQUEST +12:59:47 Received From : +12:59:47 ============================================================================ +12:59:47 FNo. Len. Field Value +12:59:47 ============================================================================ +12:59:47 [ 1] [ 4] [0200] +12:59:47 [ 2] [ 16] [6213545000682595] +12:59:47 [ 3] [ 6] [010000] +12:59:47 [ 4] [ 12] [000030000000] +12:59:47 [ 7] [ 10] [0320125737] +12:59:47 [ 11] [ 6] [945419] +12:59:47 [ 12] [ 6] [125737] +12:59:47 [ 13] [ 4] [0320] +12:59:47 [ 15] [ 4] [0320] +12:59:47 [ 18] [ 4] [6011] +12:59:47 [ 19] [ 3] [418] +12:59:47 [ 22] [ 3] [021] +12:59:47 [ 25] [ 2] [01] +12:59:47 [ 28] [ 9] [D00002000] +12:59:47 [ 32] [ 6] [668899] +12:59:47 [ 35] [ 32] [6213545000682595=491212018259772] +12:59:47 [ 37] [ 12] [507902150985] +12:59:47 [ 41] [ 8] [03020025] +12:59:47 [ 42] [ 15] [APT ] +12:59:47 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +12:59:47 [ 49] [ 3] [418] +12:59:47 [ 52] [ 16] [225C262579BA6AD0] +12:59:47 ============================================================================ +12:59:47 + + +waiting on router queue for slot.... +12:59:47 Sending to : <0> +12:59:47 ============================================================================ +12:59:48 ============================================================================ +12:59:48 Slot Id : <121> +12:59:48 Transaction Type : RESPONSE +12:59:48 Received From : +12:59:48 ============================================================================ +12:59:48 FNo. Len. Field Value +12:59:48 ============================================================================ +12:59:48 [ 1] [ 4] [0210] +12:59:48 [ 2] [ 16] [6213545000682595] +12:59:48 [ 3] [ 6] [010000] +12:59:48 [ 4] [ 12] [000030000000] +12:59:48 [ 7] [ 10] [0320125737] +12:59:48 [ 11] [ 6] [945419] +12:59:48 [ 12] [ 6] [125737] +12:59:48 [ 13] [ 4] [0320] +12:59:48 [ 15] [ 4] [0320] +12:59:48 [ 18] [ 4] [6011] +12:59:48 [ 19] [ 3] [418] +12:59:48 [ 32] [ 6] [668899] +12:59:48 [ 35] [ 32] [6213545000682595=491212018259772] +12:59:48 [ 37] [ 12] [507902150985] +12:59:48 [ 38] [ 6] [217381] +12:59:48 [ 39] [ 2] [00] +12:59:48 [ 41] [ 8] [03020025] +12:59:48 [ 49] [ 3] [418] +12:59:48 [ 54] [ 40] [0001418C0001857653560002418C000185765356] +12:59:48 ============================================================================ +12:59:48 Sending to : +12:59:48 ============================================================================ +12:59:48 + + +waiting on router queue for slot.... +12:59:49 ============================================================================ +12:59:49 Slot Id : <121> +12:59:49 Transaction Type : RESPONSE +12:59:49 Received From : +12:59:49 ============================================================================ +12:59:49 FNo. Len. Field Value +12:59:49 ============================================================================ +12:59:49 [ 1] [ 4] [0210] +12:59:49 [ 2] [ 16] [6213545000682595] +12:59:49 [ 3] [ 6] [010000] +12:59:49 [ 4] [ 12] [000030000000] +12:59:49 [ 7] [ 10] [0320125737] +12:59:49 [ 11] [ 6] [945419] +12:59:49 [ 12] [ 6] [125737] +12:59:49 [ 13] [ 4] [0320] +12:59:49 [ 15] [ 4] [0320] +12:59:49 [ 18] [ 4] [6011] +12:59:49 [ 19] [ 3] [418] +12:59:49 [ 32] [ 6] [668899] +12:59:49 [ 35] [ 32] [6213545000682595=491212018259772] +12:59:49 [ 37] [ 12] [507902150985] +12:59:49 [ 38] [ 6] [217381] +12:59:49 [ 39] [ 2] [00] +12:59:49 [ 41] [ 8] [03020025] +12:59:49 [ 49] [ 3] [418] +12:59:49 [ 54] [ 40] [0001418C0001857653560002418C000185765356] +12:59:49 ============================================================================ +12:59:49 Calculate Source COMM Id = 4 +12:59:49 ============================================================================ +12:59:49 + + +waiting on router queue for slot.... +12:59:54 ============================================================================ +12:59:54 Slot Id : <107> +12:59:54 Transaction Type : REQUEST +12:59:54 Received From : +12:59:54 ============================================================================ +12:59:54 FNo. Len. Field Value +12:59:54 ============================================================================ +12:59:54 [ 1] [ 4] [0800] +12:59:54 [ 7] [ 10] [0320055859] +12:59:54 [ 11] [ 6] [156443] +12:59:54 [ 70] [ 3] [301] +12:59:54 ============================================================================ +12:59:54 + + +waiting on router queue for slot.... +12:59:54 Sending to : +12:59:54 ============================================================================ +12:59:54 ============================================================================ +12:59:54 Slot Id : <107> +12:59:54 Transaction Type : RESPONSE +12:59:54 Received From : +12:59:54 ============================================================================ +12:59:54 FNo. Len. Field Value +12:59:54 ============================================================================ +12:59:54 [ 1] [ 4] [0810] +12:59:54 [ 7] [ 10] [0320055859] +12:59:54 [ 11] [ 6] [156443] +12:59:54 [ 39] [ 2] [00] +12:59:54 [ 70] [ 3] [301] +12:59:54 ============================================================================ +12:59:54 Calculate Source COMM Id = 2 +12:59:54 ============================================================================ +12:59:54 + + +waiting on router queue for slot.... +12:59:55 ============================================================================ +12:59:55 Slot Id : <115> +12:59:55 Transaction Type : REQUEST +12:59:55 Received From : +12:59:55 ============================================================================ +12:59:55 FNo. Len. Field Value +12:59:55 ============================================================================ +12:59:55 [ 1] [ 4] [0800] +12:59:55 [ 7] [ 10] [0320060742] +12:59:55 [ 11] [ 6] [007497] +12:59:55 [ 37] [ 12] [57913007497] +12:59:55 [ 70] [ 3] [301] +12:59:55 ============================================================================ +12:59:55 + + +waiting on router queue for slot.... +12:59:55 Sending to : +12:59:55 ============================================================================ +12:59:55 ============================================================================ +12:59:55 Slot Id : <115> +12:59:55 Transaction Type : RESPONSE +12:59:55 Received From : +12:59:55 ============================================================================ +12:59:55 FNo. Len. Field Value +12:59:55 ============================================================================ +12:59:55 [ 1] [ 4] [0810] +12:59:55 [ 7] [ 10] [0320060742] +12:59:55 [ 11] [ 6] [007497] +12:59:55 [ 37] [ 12] [579130074970] +12:59:55 [ 39] [ 2] [00] +12:59:55 [ 70] [ 3] [810] +12:59:55 ============================================================================ +12:59:55 Calculate Source COMM Id = 1 +12:59:55 ============================================================================ +12:59:55 + + +waiting on router queue for slot.... +13:00:07 ============================================================================ +13:00:07 Slot Id : <92> +13:00:07 Transaction Type : REQUEST +13:00:07 Received From : +13:00:07 ============================================================================ +13:00:07 FNo. Len. Field Value +13:00:07 ============================================================================ +13:00:07 [ 1] [ 4] [0800] +13:00:07 [ 7] [ 10] [0320055915] +13:00:07 [ 11] [ 6] [156444] +13:00:07 [ 70] [ 3] [301] +13:00:07 ============================================================================ +13:00:07 + + +waiting on router queue for slot.... +13:00:07 Sending to : +13:00:07 ============================================================================ +13:00:07 ============================================================================ +13:00:07 Slot Id : <92> +13:00:07 Transaction Type : RESPONSE +13:00:07 Received From : +13:00:07 ============================================================================ +13:00:07 FNo. Len. Field Value +13:00:07 ============================================================================ +13:00:07 [ 1] [ 4] [0810] +13:00:07 [ 7] [ 10] [0320055915] +13:00:07 [ 11] [ 6] [156444] +13:00:07 [ 39] [ 2] [00] +13:00:07 [ 70] [ 3] [301] +13:00:07 ============================================================================ +13:00:07 Calculate Source COMM Id = 2 +13:00:07 ============================================================================ +13:00:07 + + +waiting on router queue for slot.... +13:00:13 ============================================================================ +13:00:13 Slot Id : <108> +13:00:13 Transaction Type : REQUEST +13:00:13 Received From : +13:00:13 ============================================================================ +13:00:13 FNo. Len. Field Value +13:00:13 ============================================================================ +13:00:13 [ 1] [ 4] [0200] +13:00:13 [ 2] [ 16] [1808931800002998] +13:00:13 [ 3] [ 6] [301000] +13:00:13 [ 4] [ 12] [000000000000] +13:00:13 [ 7] [ 10] [0320130009] +13:00:13 [ 11] [ 6] [751523] +13:00:13 [ 12] [ 6] [130009] +13:00:13 [ 13] [ 4] [0320] +13:00:13 [ 15] [ 4] [0320] +13:00:13 [ 18] [ 4] [6011] +13:00:13 [ 22] [ 3] [900] +13:00:13 [ 25] [ 2] [02] +13:00:13 [ 28] [ 9] [D00000000] +13:00:13 [ 32] [ 6] [621354] +13:00:13 [ 35] [ 27] [1808931800002998=1803500364] +13:00:13 [ 37] [ 12] [507903624941] +13:00:13 [ 41] [ 8] [16001500] +13:00:13 [ 42] [ 15] [NATIVE ] +13:00:13 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:00:13 [ 49] [ 3] [418] +13:00:13 [ 52] [ 16] [E10FB08AC22B2824] +13:00:13 ============================================================================ +13:00:13 + + +waiting on router queue for slot.... +13:00:13 Sending to : +13:00:13 ============================================================================ +13:00:13 Sending to : +13:00:13 ============================================================================ +13:00:14 ============================================================================ +13:00:14 Slot Id : <108> +13:00:14 Transaction Type : REQUEST +13:00:14 Received From : +13:00:14 ============================================================================ +13:00:14 FNo. Len. Field Value +13:00:14 ============================================================================ +13:00:14 [ 1] [ 4] [0200] +13:00:14 [ 2] [ 16] [1808931800002998] +13:00:14 [ 3] [ 6] [301000] +13:00:14 [ 4] [ 12] [000000000000] +13:00:14 [ 7] [ 10] [0320130009] +13:00:14 [ 11] [ 6] [751523] +13:00:14 [ 12] [ 6] [130009] +13:00:14 [ 13] [ 4] [0320] +13:00:14 [ 15] [ 4] [0320] +13:00:14 [ 18] [ 4] [6011] +13:00:14 [ 22] [ 3] [900] +13:00:14 [ 25] [ 2] [02] +13:00:14 [ 28] [ 9] [D00000000] +13:00:14 [ 32] [ 6] [621354] +13:00:14 [ 35] [ 27] [1808931800002998=1803500364] +13:00:14 [ 37] [ 12] [507903624941] +13:00:14 [ 41] [ 8] [16001500] +13:00:14 [ 42] [ 15] [NATIVE ] +13:00:14 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:00:14 [ 49] [ 3] [418] +13:00:14 [ 52] [ 16] [E10FB08AC22B2824] +13:00:14 ============================================================================ +13:00:14 + + +waiting on router queue for slot.... +13:00:14 Sending to : +13:00:14 ============================================================================ +13:00:14 ============================================================================ +13:00:14 Slot Id : <108> +13:00:14 Transaction Type : REQUEST +13:00:14 Received From : +13:00:14 ============================================================================ +13:00:14 FNo. Len. Field Value +13:00:14 ============================================================================ +13:00:14 [ 1] [ 4] [0200] +13:00:14 [ 2] [ 16] [1808931800002998] +13:00:14 [ 3] [ 6] [301000] +13:00:14 [ 4] [ 12] [000000000000] +13:00:14 [ 7] [ 10] [0320130009] +13:00:14 [ 11] [ 6] [751523] +13:00:14 [ 12] [ 6] [130009] +13:00:14 [ 13] [ 4] [0320] +13:00:14 [ 15] [ 4] [0320] +13:00:14 [ 18] [ 4] [6011] +13:00:14 [ 22] [ 3] [900] +13:00:14 [ 25] [ 2] [02] +13:00:14 [ 28] [ 9] [D00000000] +13:00:14 [ 32] [ 6] [621354] +13:00:14 [ 35] [ 27] [1808931800002998=1803500364] +13:00:14 [ 37] [ 12] [507903624941] +13:00:14 [ 41] [ 8] [16001500] +13:00:14 [ 42] [ 15] [NATIVE ] +13:00:14 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:00:14 [ 49] [ 3] [418] +13:00:14 [ 52] [ 16] [B1938C0EBACC16B6] +13:00:14 ============================================================================ +13:00:14 + + +waiting on router queue for slot.... +13:00:14 Sending to : <2> +13:00:14 ============================================================================ +13:00:19 ============================================================================ +13:00:19 Slot Id : <108> +13:00:19 Transaction Type : RESPONSE +13:00:19 Received From : +13:00:19 ============================================================================ +13:00:19 FNo. Len. Field Value +13:00:19 ============================================================================ +13:00:19 [ 1] [ 4] [0210] +13:00:19 [ 2] [ 16] [1808931800002998] +13:00:19 [ 3] [ 6] [301000] +13:00:19 [ 7] [ 10] [0320130009] +13:00:19 [ 11] [ 6] [751523] +13:00:19 [ 12] [ 6] [130009] +13:00:19 [ 13] [ 4] [0320] +13:00:19 [ 14] [ 4] [1803] +13:00:19 [ 19] [ 3] [418] +13:00:19 [ 32] [ 6] [621354] +13:00:19 [ 37] [ 12] [507903624941] +13:00:19 [ 38] [ 6] [751523] +13:00:19 [ 39] [ 2] [00] +13:00:19 [ 41] [ 8] [16001500] +13:00:19 [ 49] [ 3] [418] +13:00:19 [ 52] [ 16] [B1938C0EBACC16B6] +13:00:19 [ 54] [ 20] [1002418C000307997300] +13:00:19 ============================================================================ +13:00:19 Sending to : +13:00:19 ============================================================================ +13:00:19 + + +waiting on router queue for slot.... +13:00:20 ============================================================================ +13:00:20 Slot Id : <108> +13:00:20 Transaction Type : RESPONSE +13:00:20 Received From : +13:00:20 ============================================================================ +13:00:20 FNo. Len. Field Value +13:00:20 ============================================================================ +13:00:20 [ 1] [ 4] [0210] +13:00:20 [ 2] [ 16] [1808931800002998] +13:00:20 [ 3] [ 6] [301000] +13:00:20 [ 7] [ 10] [0320130009] +13:00:20 [ 11] [ 6] [751523] +13:00:20 [ 12] [ 6] [130009] +13:00:20 [ 13] [ 4] [0320] +13:00:20 [ 14] [ 4] [1803] +13:00:20 [ 19] [ 3] [418] +13:00:20 [ 32] [ 6] [621354] +13:00:20 [ 37] [ 12] [507903624941] +13:00:20 [ 38] [ 6] [751523] +13:00:20 [ 39] [ 2] [00] +13:00:20 [ 41] [ 8] [16001500] +13:00:20 [ 49] [ 3] [418] +13:00:20 [ 52] [ 16] [B1938C0EBACC16B6] +13:00:20 [ 54] [ 20] [1002418C000307997300] +13:00:20 ============================================================================ +13:00:20 Calculate Source COMM Id = 0 +13:00:20 ============================================================================ +13:00:20 + + +waiting on router queue for slot.... +13:00:29 ============================================================================ +13:00:29 Slot Id : <113> +13:00:29 Transaction Type : REQUEST +13:00:29 Received From : +13:00:29 ============================================================================ +13:00:29 FNo. Len. Field Value +13:00:29 ============================================================================ +13:00:29 [ 1] [ 4] [0800] +13:00:29 [ 7] [ 10] [0320055937] +13:00:29 [ 11] [ 6] [156445] +13:00:29 [ 70] [ 3] [301] +13:00:29 ============================================================================ +13:00:29 + + +waiting on router queue for slot.... +13:00:29 Sending to : +13:00:29 ============================================================================ +13:00:29 ============================================================================ +13:00:29 Slot Id : <113> +13:00:29 Transaction Type : RESPONSE +13:00:29 Received From : +13:00:29 ============================================================================ +13:00:29 FNo. Len. Field Value +13:00:29 ============================================================================ +13:00:29 [ 1] [ 4] [0810] +13:00:29 [ 7] [ 10] [0320055937] +13:00:29 [ 11] [ 6] [156445] +13:00:29 [ 39] [ 2] [00] +13:00:29 [ 70] [ 3] [301] +13:00:29 ============================================================================ +13:00:29 Calculate Source COMM Id = 2 +13:00:29 ============================================================================ +13:00:29 + + +waiting on router queue for slot.... +13:00:34 ============================================================================ +13:00:34 Slot Id : <94> +13:00:34 Transaction Type : REQUEST +13:00:34 Received From : +13:00:34 ============================================================================ +13:00:34 FNo. Len. Field Value +13:00:34 ============================================================================ +13:00:34 [ 1] [ 4] [0200] +13:00:34 [ 2] [ 16] [6213545000528426] +13:00:34 [ 3] [ 6] [010000] +13:00:34 [ 4] [ 12] [000070000000] +13:00:34 [ 7] [ 10] [0320125825] +13:00:34 [ 11] [ 6] [945460] +13:00:34 [ 12] [ 6] [125825] +13:00:34 [ 13] [ 4] [0320] +13:00:34 [ 15] [ 4] [0320] +13:00:34 [ 18] [ 4] [6011] +13:00:34 [ 19] [ 3] [418] +13:00:34 [ 22] [ 3] [021] +13:00:34 [ 25] [ 2] [01] +13:00:34 [ 28] [ 9] [D00002000] +13:00:34 [ 32] [ 6] [668899] +13:00:34 [ 35] [ 32] [6213545000528426=491212012842493] +13:00:34 [ 37] [ 12] [507902150987] +13:00:34 [ 41] [ 8] [03020025] +13:00:34 [ 42] [ 15] [APT ] +13:00:34 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:00:34 [ 49] [ 3] [418] +13:00:34 [ 52] [ 16] [8A583985E3B4CB24] +13:00:34 ============================================================================ +13:00:34 + + +waiting on router queue for slot.... +13:00:34 Sending to : +13:00:34 ============================================================================ +13:00:34 Sending to : +13:00:34 ============================================================================ +13:00:35 ============================================================================ +13:00:35 Slot Id : <94> +13:00:35 Transaction Type : REQUEST +13:00:35 Received From : +13:00:35 ============================================================================ +13:00:35 FNo. Len. Field Value +13:00:35 ============================================================================ +13:00:35 [ 1] [ 4] [0200] +13:00:35 [ 2] [ 16] [6213545000528426] +13:00:35 [ 3] [ 6] [010000] +13:00:35 [ 4] [ 12] [000070000000] +13:00:35 [ 7] [ 10] [0320125825] +13:00:35 [ 11] [ 6] [945460] +13:00:35 [ 12] [ 6] [125825] +13:00:35 [ 13] [ 4] [0320] +13:00:35 [ 15] [ 4] [0320] +13:00:35 [ 18] [ 4] [6011] +13:00:35 [ 19] [ 3] [418] +13:00:35 [ 22] [ 3] [021] +13:00:35 [ 25] [ 2] [01] +13:00:35 [ 28] [ 9] [D00002000] +13:00:35 [ 32] [ 6] [668899] +13:00:35 [ 35] [ 32] [6213545000528426=491212012842493] +13:00:35 [ 37] [ 12] [507902150987] +13:00:35 [ 41] [ 8] [03020025] +13:00:35 [ 42] [ 15] [APT ] +13:00:35 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:00:35 [ 49] [ 3] [418] +13:00:35 [ 52] [ 16] [8A583985E3B4CB24] +13:00:35 ============================================================================ +13:00:35 + + +waiting on router queue for slot.... +13:00:35 Sending to : +13:00:35 ============================================================================ +13:00:35 ============================================================================ +13:00:35 Slot Id : <94> +13:00:35 Transaction Type : REQUEST +13:00:35 Received From : +13:00:35 ============================================================================ +13:00:35 FNo. Len. Field Value +13:00:35 ============================================================================ +13:00:35 [ 1] [ 4] [0200] +13:00:35 [ 2] [ 16] [6213545000528426] +13:00:35 [ 3] [ 6] [010000] +13:00:35 [ 4] [ 12] [000070000000] +13:00:35 [ 7] [ 10] [0320125825] +13:00:35 [ 11] [ 6] [945460] +13:00:35 [ 12] [ 6] [125825] +13:00:35 [ 13] [ 4] [0320] +13:00:35 [ 15] [ 4] [0320] +13:00:35 [ 18] [ 4] [6011] +13:00:35 [ 19] [ 3] [418] +13:00:35 [ 22] [ 3] [021] +13:00:35 [ 25] [ 2] [01] +13:00:35 [ 28] [ 9] [D00002000] +13:00:35 [ 32] [ 6] [668899] +13:00:35 [ 35] [ 32] [6213545000528426=491212012842493] +13:00:35 [ 37] [ 12] [507902150987] +13:00:35 [ 41] [ 8] [03020025] +13:00:35 [ 42] [ 15] [APT ] +13:00:35 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:00:35 [ 49] [ 3] [418] +13:00:35 [ 52] [ 16] [6FBF9C4579FA042C] +13:00:35 ============================================================================ +13:00:35 + + +waiting on router queue for slot.... +13:00:35 Sending to : <0> +13:00:35 ============================================================================ +13:00:35 ============================================================================ +13:00:35 Slot Id : <94> +13:00:35 Transaction Type : RESPONSE +13:00:35 Received From : +13:00:35 ============================================================================ +13:00:35 FNo. Len. Field Value +13:00:35 ============================================================================ +13:00:35 [ 1] [ 4] [0210] +13:00:35 [ 2] [ 16] [6213545000528426] +13:00:35 [ 3] [ 6] [010000] +13:00:35 [ 4] [ 12] [000070000000] +13:00:35 [ 7] [ 10] [0320125825] +13:00:35 [ 11] [ 6] [945460] +13:00:35 [ 12] [ 6] [125825] +13:00:35 [ 13] [ 4] [0320] +13:00:35 [ 15] [ 4] [0320] +13:00:35 [ 18] [ 4] [6011] +13:00:35 [ 19] [ 3] [418] +13:00:35 [ 32] [ 6] [668899] +13:00:35 [ 35] [ 32] [6213545000528426=491212012842493] +13:00:35 [ 37] [ 12] [507902150987] +13:00:35 [ 38] [ 6] [769237] +13:00:35 [ 39] [ 2] [00] +13:00:35 [ 41] [ 8] [03020025] +13:00:35 [ 49] [ 3] [418] +13:00:35 [ 54] [ 40] [0001418C0000141749760002418C000014174976] +13:00:35 ============================================================================ +13:00:35 Sending to : +13:00:35 ============================================================================ +13:00:35 + + +waiting on router queue for slot.... +13:00:37 ============================================================================ +13:00:37 Slot Id : <94> +13:00:37 Transaction Type : RESPONSE +13:00:37 Received From : +13:00:37 ============================================================================ +13:00:37 FNo. Len. Field Value +13:00:37 ============================================================================ +13:00:37 [ 1] [ 4] [0210] +13:00:37 [ 2] [ 16] [6213545000528426] +13:00:37 [ 3] [ 6] [010000] +13:00:37 [ 4] [ 12] [000070000000] +13:00:37 [ 7] [ 10] [0320125825] +13:00:37 [ 11] [ 6] [945460] +13:00:37 [ 12] [ 6] [125825] +13:00:37 [ 13] [ 4] [0320] +13:00:37 [ 15] [ 4] [0320] +13:00:37 [ 18] [ 4] [6011] +13:00:37 [ 19] [ 3] [418] +13:00:37 [ 32] [ 6] [668899] +13:00:37 [ 35] [ 32] [6213545000528426=491212012842493] +13:00:37 [ 37] [ 12] [507902150987] +13:00:37 [ 38] [ 6] [769237] +13:00:37 [ 39] [ 2] [00] +13:00:37 [ 41] [ 8] [03020025] +13:00:37 [ 49] [ 3] [418] +13:00:37 [ 54] [ 40] [0001418C0000141749760002418C000014174976] +13:00:37 ============================================================================ +13:00:37 Calculate Source COMM Id = 4 +13:00:37 ============================================================================ +13:00:37 + + +waiting on router queue for slot.... +13:00:40 ============================================================================ +13:00:40 Slot Id : <127> +13:00:40 Transaction Type : REQUEST +13:00:40 Received From : +13:00:40 ============================================================================ +13:00:40 FNo. Len. Field Value +13:00:40 ============================================================================ +13:00:40 [ 1] [ 4] [0800] +13:00:40 [ 7] [ 10] [0320055947] +13:00:40 [ 11] [ 6] [156446] +13:00:40 [ 70] [ 3] [301] +13:00:40 ============================================================================ +13:00:40 + + +waiting on router queue for slot.... +13:00:40 Sending to : +13:00:40 ============================================================================ +13:00:40 ============================================================================ +13:00:40 Slot Id : <127> +13:00:40 Transaction Type : RESPONSE +13:00:40 Received From : +13:00:40 ============================================================================ +13:00:40 FNo. Len. Field Value +13:00:40 ============================================================================ +13:00:40 [ 1] [ 4] [0810] +13:00:40 [ 7] [ 10] [0320055947] +13:00:40 [ 11] [ 6] [156446] +13:00:40 [ 39] [ 2] [00] +13:00:40 [ 70] [ 3] [301] +13:00:40 ============================================================================ +13:00:40 Calculate Source COMM Id = 2 +13:00:40 ============================================================================ +13:00:40 + + +waiting on router queue for slot.... +13:00:48 ============================================================================ +13:00:48 Slot Id : <75> +13:00:48 Transaction Type : REQUEST +13:00:48 Received From : +13:00:48 ============================================================================ +13:00:48 FNo. Len. Field Value +13:00:48 ============================================================================ +13:00:48 [ 1] [ 4] [0800] +13:00:48 [ 2] [ 5] [02531] +13:00:48 [ 3] [ 6] [579138] +13:00:48 [ 7] [ 10] [0320060048] +13:00:48 [ 11] [ 6] [807167] +13:00:48 [ 15] [ 10] [0320060048] +13:00:48 [ 37] [ 11] [57913807167] +13:00:48 [ 70] [ 3] [001] +13:00:48 ============================================================================ +13:00:48 + + +waiting on router queue for slot.... +13:00:48 ============================================================================ +13:00:48 Slot Id : <75> +13:00:48 Transaction Type : RESPONSE +13:00:48 Received From : +13:00:48 ============================================================================ +13:00:48 FNo. Len. Field Value +13:00:48 ============================================================================ +13:00:48 [ 1] [ 4] [0810] +13:00:48 [ 7] [ 10] [0320060048] +13:00:48 [ 11] [ 6] [807167] +13:00:48 [ 15] [ 4] [0320] +13:00:48 [ 37] [ 12] [57913807167] +13:00:48 [ 39] [ 2] [00] +13:00:48 [ 70] [ 3] [001] +13:00:48 ============================================================================ +13:00:48 Sending to : +13:00:48 ============================================================================ +13:00:48 + + +waiting on router queue for slot.... +13:00:51 ============================================================================ +13:00:51 Slot Id : <53> +13:00:51 Transaction Type : REQUEST +13:00:51 Received From : +13:00:51 ============================================================================ +13:00:51 FNo. Len. Field Value +13:00:51 ============================================================================ +13:00:51 [ 1] [ 4] [0800] +13:00:51 [ 7] [ 10] [0320055958] +13:00:51 [ 11] [ 6] [156447] +13:00:51 [ 70] [ 3] [301] +13:00:51 ============================================================================ +13:00:51 + + +waiting on router queue for slot.... +13:00:51 Sending to : +13:00:51 ============================================================================ +13:00:51 ============================================================================ +13:00:51 Slot Id : <53> +13:00:51 Transaction Type : RESPONSE +13:00:51 Received From : +13:00:51 ============================================================================ +13:00:51 FNo. Len. Field Value +13:00:51 ============================================================================ +13:00:51 [ 1] [ 4] [0810] +13:00:51 [ 7] [ 10] [0320055958] +13:00:51 [ 11] [ 6] [156447] +13:00:51 [ 39] [ 2] [00] +13:00:51 [ 70] [ 3] [301] +13:00:51 ============================================================================ +13:00:51 Calculate Source COMM Id = 2 +13:00:51 ============================================================================ +13:00:51 + + +waiting on router queue for slot.... +13:01:02 ============================================================================ +13:01:02 Slot Id : <95> +13:01:02 Transaction Type : REQUEST +13:01:02 Received From : +13:01:02 ============================================================================ +13:01:02 FNo. Len. Field Value +13:01:02 ============================================================================ +13:01:02 [ 1] [ 4] [0800] +13:01:02 [ 7] [ 10] [0320060010] +13:01:02 [ 11] [ 6] [156448] +13:01:02 [ 70] [ 3] [301] +13:01:02 ============================================================================ +13:01:02 + + +waiting on router queue for slot.... +13:01:02 Sending to : +13:01:02 ============================================================================ +13:01:02 ============================================================================ +13:01:02 Slot Id : <95> +13:01:02 Transaction Type : RESPONSE +13:01:02 Received From : +13:01:02 ============================================================================ +13:01:02 FNo. Len. Field Value +13:01:02 ============================================================================ +13:01:02 [ 1] [ 4] [0810] +13:01:02 [ 7] [ 10] [0320060010] +13:01:02 [ 11] [ 6] [156448] +13:01:02 [ 39] [ 2] [00] +13:01:02 [ 70] [ 3] [301] +13:01:02 ============================================================================ +13:01:02 Calculate Source COMM Id = 2 +13:01:02 ============================================================================ +13:01:02 + + +waiting on router queue for slot.... +13:01:18 ============================================================================ +13:01:18 Slot Id : <125> +13:01:18 Transaction Type : REQUEST +13:01:18 Received From : +13:01:18 ============================================================================ +13:01:18 FNo. Len. Field Value +13:01:18 ============================================================================ +13:01:18 [ 1] [ 4] [0800] +13:01:18 [ 7] [ 10] [0320060026] +13:01:18 [ 11] [ 6] [156449] +13:01:18 [ 70] [ 3] [301] +13:01:18 ============================================================================ +13:01:18 + + +waiting on router queue for slot.... +13:01:18 Sending to : +13:01:18 ============================================================================ +13:01:18 ============================================================================ +13:01:18 Slot Id : <125> +13:01:18 Transaction Type : RESPONSE +13:01:18 Received From : +13:01:18 ============================================================================ +13:01:18 FNo. Len. Field Value +13:01:18 ============================================================================ +13:01:18 [ 1] [ 4] [0810] +13:01:18 [ 7] [ 10] [0320060026] +13:01:18 [ 11] [ 6] [156449] +13:01:18 [ 39] [ 2] [00] +13:01:18 [ 70] [ 3] [301] +13:01:18 ============================================================================ +13:01:18 Calculate Source COMM Id = 2 +13:01:18 ============================================================================ +13:01:18 + + +waiting on router queue for slot.... +13:01:21 ============================================================================ +13:01:21 Slot Id : <98> +13:01:21 Transaction Type : REQUEST +13:01:21 Received From : +13:01:21 ============================================================================ +13:01:21 FNo. Len. Field Value +13:01:21 ============================================================================ +13:01:21 [ 1] [ 4] [0800] +13:01:21 [ 7] [ 10] [0320055912] +13:01:21 [ 11] [ 6] [044182] +13:01:21 [ 37] [ 12] [57912044182] +13:01:21 [ 70] [ 3] [301] +13:01:21 ============================================================================ +13:01:21 + + +waiting on router queue for slot.... +13:01:21 Sending to : +13:01:21 ============================================================================ +13:01:21 ============================================================================ +13:01:21 Slot Id : <98> +13:01:21 Transaction Type : RESPONSE +13:01:21 Received From : +13:01:21 ============================================================================ +13:01:21 FNo. Len. Field Value +13:01:21 ============================================================================ +13:01:21 [ 1] [ 4] [0810] +13:01:21 [ 7] [ 10] [0320055912] +13:01:21 [ 11] [ 6] [044182] +13:01:21 [ 37] [ 12] [579120441820] +13:01:21 [ 39] [ 2] [00] +13:01:21 [ 70] [ 3] [810] +13:01:21 ============================================================================ +13:01:21 Calculate Source COMM Id = 4 +13:01:21 ============================================================================ +13:01:21 + + +waiting on router queue for slot.... +13:01:30 ============================================================================ +13:01:30 Slot Id : <134> +13:01:30 Transaction Type : REQUEST +13:01:30 Received From : +13:01:30 ============================================================================ +13:01:30 FNo. Len. Field Value +13:01:30 ============================================================================ +13:01:30 [ 1] [ 4] [0200] +13:01:30 [ 2] [ 16] [1808930200040533] +13:01:30 [ 3] [ 6] [300000] +13:01:30 [ 4] [ 12] [000000000000] +13:01:30 [ 7] [ 10] [0320130126] +13:01:30 [ 11] [ 6] [751785] +13:01:30 [ 12] [ 6] [130126] +13:01:30 [ 13] [ 4] [0320] +13:01:30 [ 15] [ 4] [0320] +13:01:30 [ 18] [ 4] [6011] +13:01:30 [ 22] [ 3] [900] +13:01:30 [ 25] [ 2] [02] +13:01:30 [ 28] [ 9] [D00000000] +13:01:30 [ 32] [ 6] [621354] +13:01:30 [ 35] [ 27] [1808930200040533=1803500902] +13:01:30 [ 37] [ 12] [507903975371] +13:01:30 [ 41] [ 8] [01011300] +13:01:30 [ 42] [ 15] [NATIVE ] +13:01:30 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +13:01:30 [ 49] [ 3] [418] +13:01:30 [ 52] [ 16] [FD09496E9DA9BF05] +13:01:30 ============================================================================ +13:01:30 + + +waiting on router queue for slot.... +13:01:30 Sending to : +13:01:30 ============================================================================ +13:01:30 Sending to : +13:01:30 ============================================================================ +13:01:30 ============================================================================ +13:01:30 Slot Id : <134> +13:01:30 Transaction Type : REQUEST +13:01:30 Received From : +13:01:30 ============================================================================ +13:01:30 FNo. Len. Field Value +13:01:30 ============================================================================ +13:01:30 [ 1] [ 4] [0200] +13:01:30 [ 2] [ 16] [1808930200040533] +13:01:30 [ 3] [ 6] [300000] +13:01:30 [ 4] [ 12] [000000000000] +13:01:30 [ 7] [ 10] [0320130126] +13:01:30 [ 11] [ 6] [751785] +13:01:30 [ 12] [ 6] [130126] +13:01:30 [ 13] [ 4] [0320] +13:01:30 [ 15] [ 4] [0320] +13:01:30 [ 18] [ 4] [6011] +13:01:30 [ 22] [ 3] [900] +13:01:30 [ 25] [ 2] [02] +13:01:30 [ 28] [ 9] [D00000000] +13:01:30 [ 32] [ 6] [621354] +13:01:30 [ 35] [ 27] [1808930200040533=1803500902] +13:01:30 [ 37] [ 12] [507903975371] +13:01:30 [ 41] [ 8] [01011300] +13:01:30 [ 42] [ 15] [NATIVE ] +13:01:30 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +13:01:30 [ 49] [ 3] [418] +13:01:30 [ 52] [ 16] [FD09496E9DA9BF05] +13:01:30 ============================================================================ +13:01:30 + + +waiting on router queue for slot.... +13:01:30 Sending to : +13:01:30 ============================================================================ +13:01:30 ============================================================================ +13:01:30 Slot Id : <134> +13:01:30 Transaction Type : REQUEST +13:01:30 Received From : +13:01:30 ============================================================================ +13:01:30 FNo. Len. Field Value +13:01:30 ============================================================================ +13:01:30 [ 1] [ 4] [0200] +13:01:30 [ 2] [ 16] [1808930200040533] +13:01:30 [ 3] [ 6] [300000] +13:01:30 [ 4] [ 12] [000000000000] +13:01:30 [ 7] [ 10] [0320130126] +13:01:30 [ 11] [ 6] [751785] +13:01:30 [ 12] [ 6] [130126] +13:01:30 [ 13] [ 4] [0320] +13:01:30 [ 15] [ 4] [0320] +13:01:30 [ 18] [ 4] [6011] +13:01:30 [ 22] [ 3] [900] +13:01:30 [ 25] [ 2] [02] +13:01:30 [ 28] [ 9] [D00000000] +13:01:30 [ 32] [ 6] [621354] +13:01:30 [ 35] [ 27] [1808930200040533=1803500902] +13:01:30 [ 37] [ 12] [507903975371] +13:01:30 [ 41] [ 8] [01011300] +13:01:30 [ 42] [ 15] [NATIVE ] +13:01:30 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +13:01:30 [ 49] [ 3] [418] +13:01:30 [ 52] [ 16] [D1AC1223A680140F] +13:01:30 ============================================================================ +13:01:30 + + +waiting on router queue for slot.... +13:01:30 Sending to : <2> +13:01:30 ============================================================================ +13:01:31 ============================================================================ +13:01:31 Slot Id : <134> +13:01:31 Transaction Type : RESPONSE +13:01:31 Received From : +13:01:31 ============================================================================ +13:01:31 FNo. Len. Field Value +13:01:31 ============================================================================ +13:01:31 [ 1] [ 4] [0210] +13:01:31 [ 2] [ 16] [1808930200040533] +13:01:31 [ 3] [ 6] [300000] +13:01:31 [ 7] [ 10] [0320130126] +13:01:31 [ 11] [ 6] [751785] +13:01:31 [ 12] [ 6] [130126] +13:01:31 [ 13] [ 4] [0320] +13:01:31 [ 14] [ 4] [1803] +13:01:31 [ 19] [ 3] [418] +13:01:31 [ 32] [ 6] [621354] +13:01:31 [ 37] [ 12] [507903975371] +13:01:31 [ 39] [ 2] [55] +13:01:31 [ 41] [ 8] [01011300] +13:01:31 [ 49] [ 3] [418] +13:01:31 [ 52] [ 16] [D1AC1223A680140F] +13:01:31 ============================================================================ +13:01:31 Sending to : +13:01:31 ============================================================================ +13:01:31 + + +waiting on router queue for slot.... +13:01:32 ============================================================================ +13:01:32 Slot Id : <134> +13:01:32 Transaction Type : RESPONSE +13:01:32 Received From : +13:01:32 ============================================================================ +13:01:32 FNo. Len. Field Value +13:01:32 ============================================================================ +13:01:32 [ 1] [ 4] [0210] +13:01:32 [ 2] [ 16] [1808930200040533] +13:01:32 [ 3] [ 6] [300000] +13:01:32 [ 7] [ 10] [0320130126] +13:01:32 [ 11] [ 6] [751785] +13:01:32 [ 12] [ 6] [130126] +13:01:32 [ 13] [ 4] [0320] +13:01:32 [ 14] [ 4] [1803] +13:01:32 [ 19] [ 3] [418] +13:01:32 [ 32] [ 6] [621354] +13:01:32 [ 37] [ 12] [507903975371] +13:01:32 [ 39] [ 2] [55] +13:01:32 [ 41] [ 8] [01011300] +13:01:32 [ 49] [ 3] [418] +13:01:32 [ 52] [ 16] [D1AC1223A680140F] +13:01:32 ============================================================================ +13:01:32 Calculate Source COMM Id = 0 +13:01:32 ============================================================================ +13:01:32 + + +waiting on router queue for slot.... +13:01:44 ============================================================================ +13:01:44 Slot Id : <103> +13:01:44 Transaction Type : REQUEST +13:01:44 Received From : +13:01:44 ============================================================================ +13:01:44 FNo. Len. Field Value +13:01:44 ============================================================================ +13:01:44 [ 1] [ 4] [0800] +13:01:44 [ 7] [ 10] [0320060051] +13:01:44 [ 11] [ 6] [156450] +13:01:44 [ 70] [ 3] [301] +13:01:44 ============================================================================ +13:01:44 + + +waiting on router queue for slot.... +13:01:44 Sending to : +13:01:44 ============================================================================ +13:01:44 ============================================================================ +13:01:44 Slot Id : <103> +13:01:44 Transaction Type : RESPONSE +13:01:44 Received From : +13:01:44 ============================================================================ +13:01:44 FNo. Len. Field Value +13:01:44 ============================================================================ +13:01:44 [ 1] [ 4] [0810] +13:01:44 [ 7] [ 10] [0320060051] +13:01:44 [ 11] [ 6] [156450] +13:01:44 [ 39] [ 2] [00] +13:01:44 [ 70] [ 3] [301] +13:01:44 ============================================================================ +13:01:44 Calculate Source COMM Id = 2 +13:01:44 ============================================================================ +13:01:44 + + +waiting on router queue for slot.... +13:01:44 ============================================================================ +13:01:44 Slot Id : <101> +13:01:44 Transaction Type : REQUEST +13:01:44 Received From : +13:01:44 ============================================================================ +13:01:44 FNo. Len. Field Value +13:01:44 ============================================================================ +13:01:44 [ 1] [ 4] [0200] +13:01:44 [ 2] [ 16] [1808930200040533] +13:01:44 [ 3] [ 6] [300000] +13:01:44 [ 4] [ 12] [000000000000] +13:01:44 [ 7] [ 10] [0320130139] +13:01:44 [ 11] [ 6] [751823] +13:01:44 [ 12] [ 6] [130139] +13:01:44 [ 13] [ 4] [0320] +13:01:44 [ 15] [ 4] [0320] +13:01:44 [ 18] [ 4] [6011] +13:01:44 [ 22] [ 3] [900] +13:01:44 [ 25] [ 2] [02] +13:01:44 [ 28] [ 9] [D00000000] +13:01:44 [ 32] [ 6] [621354] +13:01:44 [ 35] [ 27] [1808930200040533=1803500902] +13:01:44 [ 37] [ 12] [507903975372] +13:01:44 [ 41] [ 8] [01011300] +13:01:44 [ 42] [ 15] [NATIVE ] +13:01:44 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +13:01:44 [ 49] [ 3] [418] +13:01:44 [ 52] [ 16] [C0A15DB9220DF5C2] +13:01:44 ============================================================================ +13:01:44 + + +waiting on router queue for slot.... +13:01:44 Sending to : +13:01:44 ============================================================================ +13:01:44 Sending to : +13:01:44 ============================================================================ +13:01:44 ============================================================================ +13:01:44 Slot Id : <101> +13:01:44 Transaction Type : REQUEST +13:01:44 Received From : +13:01:44 ============================================================================ +13:01:44 FNo. Len. Field Value +13:01:44 ============================================================================ +13:01:44 [ 1] [ 4] [0200] +13:01:44 [ 2] [ 16] [1808930200040533] +13:01:44 [ 3] [ 6] [300000] +13:01:44 [ 4] [ 12] [000000000000] +13:01:44 [ 7] [ 10] [0320130139] +13:01:44 [ 11] [ 6] [751823] +13:01:44 [ 12] [ 6] [130139] +13:01:44 [ 13] [ 4] [0320] +13:01:44 [ 15] [ 4] [0320] +13:01:44 [ 18] [ 4] [6011] +13:01:44 [ 22] [ 3] [900] +13:01:44 [ 25] [ 2] [02] +13:01:44 [ 28] [ 9] [D00000000] +13:01:44 [ 32] [ 6] [621354] +13:01:44 [ 35] [ 27] [1808930200040533=1803500902] +13:01:44 [ 37] [ 12] [507903975372] +13:01:44 [ 41] [ 8] [01011300] +13:01:44 [ 42] [ 15] [NATIVE ] +13:01:44 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +13:01:44 [ 49] [ 3] [418] +13:01:44 [ 52] [ 16] [C0A15DB9220DF5C2] +13:01:44 ============================================================================ +13:01:44 + + +waiting on router queue for slot.... +13:01:44 Sending to : +13:01:44 ============================================================================ +13:01:44 ============================================================================ +13:01:44 Slot Id : <101> +13:01:44 Transaction Type : REQUEST +13:01:44 Received From : +13:01:44 ============================================================================ +13:01:44 FNo. Len. Field Value +13:01:44 ============================================================================ +13:01:44 [ 1] [ 4] [0200] +13:01:44 [ 2] [ 16] [1808930200040533] +13:01:44 [ 3] [ 6] [300000] +13:01:44 [ 4] [ 12] [000000000000] +13:01:44 [ 7] [ 10] [0320130139] +13:01:44 [ 11] [ 6] [751823] +13:01:44 [ 12] [ 6] [130139] +13:01:44 [ 13] [ 4] [0320] +13:01:44 [ 15] [ 4] [0320] +13:01:44 [ 18] [ 4] [6011] +13:01:44 [ 22] [ 3] [900] +13:01:44 [ 25] [ 2] [02] +13:01:44 [ 28] [ 9] [D00000000] +13:01:44 [ 32] [ 6] [621354] +13:01:44 [ 35] [ 27] [1808930200040533=1803500902] +13:01:44 [ 37] [ 12] [507903975372] +13:01:44 [ 41] [ 8] [01011300] +13:01:44 [ 42] [ 15] [NATIVE ] +13:01:44 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +13:01:44 [ 49] [ 3] [418] +13:01:44 [ 52] [ 16] [1B7CAB400449A340] +13:01:44 ============================================================================ +13:01:44 + + +waiting on router queue for slot.... +13:01:44 Sending to : <2> +13:01:44 ============================================================================ +13:01:48 ============================================================================ +13:01:48 Slot Id : <101> +13:01:48 Transaction Type : RESPONSE +13:01:48 Received From : +13:01:48 ============================================================================ +13:01:48 FNo. Len. Field Value +13:01:48 ============================================================================ +13:01:48 [ 1] [ 4] [0210] +13:01:48 [ 2] [ 16] [1808930200040533] +13:01:48 [ 3] [ 6] [300000] +13:01:48 [ 7] [ 10] [0320130139] +13:01:48 [ 11] [ 6] [751823] +13:01:48 [ 12] [ 6] [130139] +13:01:48 [ 13] [ 4] [0320] +13:01:48 [ 14] [ 4] [1803] +13:01:48 [ 19] [ 3] [418] +13:01:48 [ 32] [ 6] [621354] +13:01:48 [ 37] [ 12] [507903975372] +13:01:48 [ 38] [ 6] [751823] +13:01:48 [ 39] [ 2] [00] +13:01:48 [ 41] [ 8] [01011300] +13:01:48 [ 49] [ 3] [418] +13:01:48 [ 52] [ 16] [1B7CAB400449A340] +13:01:48 [ 54] [ 20] [0002418C000004389800] +13:01:48 ============================================================================ +13:01:48 Sending to : +13:01:48 ============================================================================ +13:01:48 + + +waiting on router queue for slot.... +13:01:49 ============================================================================ +13:01:49 Slot Id : <101> +13:01:49 Transaction Type : RESPONSE +13:01:49 Received From : +13:01:49 ============================================================================ +13:01:49 FNo. Len. Field Value +13:01:49 ============================================================================ +13:01:49 [ 1] [ 4] [0210] +13:01:49 [ 2] [ 16] [1808930200040533] +13:01:49 [ 3] [ 6] [300000] +13:01:49 [ 7] [ 10] [0320130139] +13:01:49 [ 11] [ 6] [751823] +13:01:49 [ 12] [ 6] [130139] +13:01:49 [ 13] [ 4] [0320] +13:01:49 [ 14] [ 4] [1803] +13:01:49 [ 19] [ 3] [418] +13:01:49 [ 32] [ 6] [621354] +13:01:49 [ 37] [ 12] [507903975372] +13:01:49 [ 38] [ 6] [751823] +13:01:49 [ 39] [ 2] [00] +13:01:49 [ 41] [ 8] [01011300] +13:01:49 [ 49] [ 3] [418] +13:01:49 [ 52] [ 16] [1B7CAB400449A340] +13:01:49 [ 54] [ 20] [0002418C000004389800] +13:01:49 ============================================================================ +13:01:49 Calculate Source COMM Id = 0 +13:01:49 ============================================================================ +13:01:49 + + +waiting on router queue for slot.... +13:01:50 ============================================================================ +13:01:50 Slot Id : <77> +13:01:50 Transaction Type : REQUEST +13:01:50 Received From : +13:01:50 ============================================================================ +13:01:50 FNo. Len. Field Value +13:01:50 ============================================================================ +13:01:50 [ 1] [ 4] [0200] +13:01:50 [ 2] [ 16] [6688990107354001] +13:01:50 [ 3] [ 6] [301000] +13:01:50 [ 4] [ 12] [000000000000] +13:01:50 [ 7] [ 10] [0320130146] +13:01:50 [ 11] [ 6] [751842] +13:01:50 [ 12] [ 6] [130146] +13:01:50 [ 13] [ 4] [0320] +13:01:50 [ 15] [ 4] [0320] +13:01:50 [ 18] [ 4] [6011] +13:01:50 [ 22] [ 3] [900] +13:01:50 [ 25] [ 2] [02] +13:01:50 [ 28] [ 9] [D00000000] +13:01:50 [ 32] [ 6] [621354] +13:01:50 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:01:50 [ 37] [ 12] [507904090014] +13:01:50 [ 41] [ 8] [08000600] +13:01:50 [ 42] [ 15] [NATIVE ] +13:01:50 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +13:01:50 [ 49] [ 3] [418] +13:01:50 [ 52] [ 16] [5F7020706DC37D3C] +13:01:50 ============================================================================ +13:01:50 + + +waiting on router queue for slot.... +13:01:50 Sending to : +13:01:50 ============================================================================ +13:01:50 Sending to : +13:01:50 ============================================================================ +13:01:50 ============================================================================ +13:01:50 Slot Id : <96> +13:01:50 Transaction Type : REQUEST +13:01:50 Received From : +13:01:50 ============================================================================ +13:01:50 FNo. Len. Field Value +13:01:50 ============================================================================ +13:01:50 [ 1] [ 4] [0800] +13:01:50 [ 2] [ 5] [02531] +13:01:50 [ 3] [ 6] [579138] +13:01:50 [ 7] [ 10] [0320060150] +13:01:50 [ 11] [ 6] [807168] +13:01:50 [ 15] [ 10] [0320060150] +13:01:50 [ 37] [ 11] [57913807168] +13:01:50 [ 70] [ 3] [001] +13:01:50 ============================================================================ +13:01:50 + + +waiting on router queue for slot.... +13:01:50 ============================================================================ +13:01:50 Slot Id : <96> +13:01:50 Transaction Type : RESPONSE +13:01:50 Received From : +13:01:50 ============================================================================ +13:01:50 FNo. Len. Field Value +13:01:50 ============================================================================ +13:01:50 [ 1] [ 4] [0810] +13:01:50 [ 7] [ 10] [0320060150] +13:01:50 [ 11] [ 6] [807168] +13:01:50 [ 15] [ 4] [0320] +13:01:50 [ 37] [ 12] [57913807168] +13:01:50 [ 39] [ 2] [00] +13:01:50 [ 70] [ 3] [001] +13:01:50 ============================================================================ +13:01:50 Sending to : +13:01:50 ============================================================================ +13:01:50 + + +waiting on router queue for slot.... +13:01:50 ============================================================================ +13:01:50 Slot Id : <77> +13:01:50 Transaction Type : REQUEST +13:01:50 Received From : +13:01:50 ============================================================================ +13:01:50 FNo. Len. Field Value +13:01:50 ============================================================================ +13:01:50 [ 1] [ 4] [0200] +13:01:50 [ 2] [ 16] [6688990107354001] +13:01:50 [ 3] [ 6] [301000] +13:01:50 [ 4] [ 12] [000000000000] +13:01:50 [ 7] [ 10] [0320130146] +13:01:50 [ 11] [ 6] [751842] +13:01:50 [ 12] [ 6] [130146] +13:01:50 [ 13] [ 4] [0320] +13:01:50 [ 15] [ 4] [0320] +13:01:50 [ 18] [ 4] [6011] +13:01:50 [ 22] [ 3] [900] +13:01:50 [ 25] [ 2] [02] +13:01:50 [ 28] [ 9] [D00000000] +13:01:50 [ 32] [ 6] [621354] +13:01:50 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:01:50 [ 37] [ 12] [507904090014] +13:01:50 [ 41] [ 8] [08000600] +13:01:50 [ 42] [ 15] [NATIVE ] +13:01:50 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +13:01:50 [ 49] [ 3] [418] +13:01:50 [ 52] [ 16] [5F7020706DC37D3C] +13:01:50 ============================================================================ +13:01:50 + + +waiting on router queue for slot.... +13:01:50 Sending to : +13:01:50 ============================================================================ +13:01:50 ============================================================================ +13:01:50 Slot Id : <77> +13:01:50 Transaction Type : REQUEST +13:01:50 Received From : +13:01:50 ============================================================================ +13:01:50 FNo. Len. Field Value +13:01:50 ============================================================================ +13:01:50 [ 1] [ 4] [0200] +13:01:50 [ 2] [ 16] [6688990107354001] +13:01:50 [ 3] [ 6] [301000] +13:01:50 [ 4] [ 12] [000000000000] +13:01:50 [ 7] [ 10] [0320130146] +13:01:50 [ 11] [ 6] [751842] +13:01:50 [ 12] [ 6] [130146] +13:01:50 [ 13] [ 4] [0320] +13:01:50 [ 15] [ 4] [0320] +13:01:50 [ 18] [ 4] [6011] +13:01:50 [ 22] [ 3] [900] +13:01:50 [ 25] [ 2] [02] +13:01:50 [ 28] [ 9] [D00000000] +13:01:50 [ 32] [ 6] [621354] +13:01:50 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:01:50 [ 37] [ 12] [507904090014] +13:01:50 [ 41] [ 8] [08000600] +13:01:50 [ 42] [ 15] [NATIVE ] +13:01:50 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +13:01:50 [ 49] [ 3] [418] +13:01:50 [ 52] [ 16] [ABEC4B63AB1D25E9] +13:01:50 ============================================================================ +13:01:50 + + +waiting on router queue for slot.... +13:01:50 Sending to : <4> +13:01:50 ============================================================================ +13:01:51 ============================================================================ +13:01:51 Slot Id : <71> +13:01:51 Transaction Type : REQUEST +13:01:51 Received From : +13:01:51 ============================================================================ +13:01:51 FNo. Len. Field Value +13:01:51 ============================================================================ +13:01:51 [ 1] [ 4] [0200] +13:01:51 [ 2] [ 16] [1808931800002998] +13:01:51 [ 3] [ 6] [010000] +13:01:51 [ 4] [ 12] [000100000000] +13:01:51 [ 7] [ 10] [0320130147] +13:01:51 [ 11] [ 6] [751845] +13:01:51 [ 12] [ 6] [130147] +13:01:51 [ 13] [ 4] [0320] +13:01:51 [ 15] [ 4] [0320] +13:01:51 [ 18] [ 4] [6011] +13:01:51 [ 22] [ 3] [900] +13:01:51 [ 25] [ 2] [02] +13:01:51 [ 28] [ 9] [D00002000] +13:01:51 [ 32] [ 6] [621354] +13:01:51 [ 35] [ 27] [1808931800002998=1803500364] +13:01:51 [ 37] [ 12] [507903624943] +13:01:51 [ 41] [ 8] [16001500] +13:01:51 [ 42] [ 15] [NATIVE ] +13:01:51 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:01:51 [ 49] [ 3] [418] +13:01:51 [ 52] [ 16] [E10FB08AC22B2824] +13:01:51 ============================================================================ +13:01:51 + + +waiting on router queue for slot.... +13:01:51 Sending to : +13:01:51 ============================================================================ +13:01:51 Sending to : +13:01:51 ============================================================================ +13:01:52 ============================================================================ +13:01:52 Slot Id : <71> +13:01:52 Transaction Type : REQUEST +13:01:52 Received From : +13:01:52 ============================================================================ +13:01:52 FNo. Len. Field Value +13:01:52 ============================================================================ +13:01:52 [ 1] [ 4] [0200] +13:01:52 [ 2] [ 16] [1808931800002998] +13:01:52 [ 3] [ 6] [010000] +13:01:52 [ 4] [ 12] [000100000000] +13:01:52 [ 7] [ 10] [0320130147] +13:01:52 [ 11] [ 6] [751845] +13:01:52 [ 12] [ 6] [130147] +13:01:52 [ 13] [ 4] [0320] +13:01:52 [ 15] [ 4] [0320] +13:01:52 [ 18] [ 4] [6011] +13:01:52 [ 22] [ 3] [900] +13:01:52 [ 25] [ 2] [02] +13:01:52 [ 28] [ 9] [D00002000] +13:01:52 [ 32] [ 6] [621354] +13:01:52 [ 35] [ 27] [1808931800002998=1803500364] +13:01:52 [ 37] [ 12] [507903624943] +13:01:52 [ 41] [ 8] [16001500] +13:01:52 [ 42] [ 15] [NATIVE ] +13:01:52 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:01:52 [ 49] [ 3] [418] +13:01:52 [ 52] [ 16] [E10FB08AC22B2824] +13:01:52 ============================================================================ +13:01:52 + + +waiting on router queue for slot.... +13:01:52 Sending to : +13:01:52 ============================================================================ +13:01:52 ============================================================================ +13:01:52 Slot Id : <71> +13:01:52 Transaction Type : REQUEST +13:01:52 Received From : +13:01:52 ============================================================================ +13:01:52 FNo. Len. Field Value +13:01:52 ============================================================================ +13:01:52 [ 1] [ 4] [0200] +13:01:52 [ 2] [ 16] [1808931800002998] +13:01:52 [ 3] [ 6] [010000] +13:01:52 [ 4] [ 12] [000100000000] +13:01:52 [ 7] [ 10] [0320130147] +13:01:52 [ 11] [ 6] [751845] +13:01:52 [ 12] [ 6] [130147] +13:01:52 [ 13] [ 4] [0320] +13:01:52 [ 15] [ 4] [0320] +13:01:52 [ 18] [ 4] [6011] +13:01:52 [ 22] [ 3] [900] +13:01:52 [ 25] [ 2] [02] +13:01:52 [ 28] [ 9] [D00002000] +13:01:52 [ 32] [ 6] [621354] +13:01:52 [ 35] [ 27] [1808931800002998=1803500364] +13:01:52 [ 37] [ 12] [507903624943] +13:01:52 [ 41] [ 8] [16001500] +13:01:52 [ 42] [ 15] [NATIVE ] +13:01:52 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:01:52 [ 49] [ 3] [418] +13:01:52 [ 52] [ 16] [B1938C0EBACC16B6] +13:01:52 ============================================================================ +13:01:52 + + +waiting on router queue for slot.... +13:01:52 Sending to : <2> +13:01:52 ============================================================================ +13:01:52 ============================================================================ +13:01:52 Slot Id : <77> +13:01:52 Transaction Type : RESPONSE +13:01:52 Received From : +13:01:52 ============================================================================ +13:01:52 FNo. Len. Field Value +13:01:52 ============================================================================ +13:01:52 [ 1] [ 4] [0210] +13:01:52 [ 2] [ 16] [6688990107354001] +13:01:52 [ 3] [ 6] [301000] +13:01:52 [ 4] [ 12] [000000000000] +13:01:52 [ 11] [ 6] [751842] +13:01:52 [ 12] [ 6] [130146] +13:01:52 [ 15] [ 4] [0320] +13:01:52 [ 18] [ 4] [6011] +13:01:52 [ 32] [ 6] [621354] +13:01:52 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:01:52 [ 37] [ 12] [507904090014] +13:01:52 [ 38] [ 6] [285842] +13:01:52 [ 39] [ 2] [00] +13:01:52 [ 41] [ 8] [08000600] +13:01:52 [ 49] [ 3] [418] +13:01:52 [ 54] [ 20] [1002418C001454380845] +13:01:52 ============================================================================ +13:01:52 Sending to : +13:01:52 ============================================================================ +13:01:52 + + +waiting on router queue for slot.... +13:01:54 ============================================================================ +13:01:54 Slot Id : <77> +13:01:54 Transaction Type : RESPONSE +13:01:54 Received From : +13:01:54 ============================================================================ +13:01:54 FNo. Len. Field Value +13:01:54 ============================================================================ +13:01:54 [ 1] [ 4] [0210] +13:01:54 [ 2] [ 16] [6688990107354001] +13:01:54 [ 3] [ 6] [301000] +13:01:54 [ 4] [ 12] [000000000000] +13:01:54 [ 11] [ 6] [751842] +13:01:54 [ 12] [ 6] [130146] +13:01:54 [ 15] [ 4] [0320] +13:01:54 [ 18] [ 4] [6011] +13:01:54 [ 32] [ 6] [621354] +13:01:54 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:01:54 [ 37] [ 12] [507904090014] +13:01:54 [ 38] [ 6] [285842] +13:01:54 [ 39] [ 2] [00] +13:01:54 [ 41] [ 8] [08000600] +13:01:54 [ 49] [ 3] [418] +13:01:54 [ 54] [ 20] [1002418C001454380845] +13:01:54 ============================================================================ +13:01:54 Calculate Source COMM Id = 0 +13:01:54 ============================================================================ +13:01:54 + + +waiting on router queue for slot.... +13:01:57 ============================================================================ +13:01:57 Slot Id : <71> +13:01:57 Transaction Type : RESPONSE +13:01:57 Received From : +13:01:57 ============================================================================ +13:01:57 FNo. Len. Field Value +13:01:57 ============================================================================ +13:01:57 [ 1] [ 4] [0210] +13:01:57 [ 2] [ 16] [1808931800002998] +13:01:57 [ 3] [ 6] [010000] +13:01:57 [ 4] [ 12] [000100000000] +13:01:57 [ 6] [ 12] [000100000000] +13:01:57 [ 7] [ 10] [0320130147] +13:01:57 [ 11] [ 6] [751845] +13:01:57 [ 12] [ 6] [130147] +13:01:57 [ 13] [ 4] [0320] +13:01:57 [ 18] [ 4] [6011] +13:01:57 [ 19] [ 3] [418] +13:01:57 [ 22] [ 3] [021] +13:01:57 [ 32] [ 6] [621354] +13:01:57 [ 35] [ 27] [1808931800002998=1803500364] +13:01:57 [ 37] [ 12] [507903624943] +13:01:57 [ 38] [ 6] [751845] +13:01:57 [ 39] [ 2] [00] +13:01:57 [ 41] [ 8] [16001500] +13:01:57 [ 49] [ 3] [418] +13:01:57 [ 52] [ 16] [B1938C0EBACC16B6] +13:01:57 [ 54] [ 20] [1001418C000207797300] +13:01:57 ============================================================================ +13:01:57 Sending to : +13:01:57 ============================================================================ +13:01:57 + + +waiting on router queue for slot.... +13:01:58 ============================================================================ +13:01:58 Slot Id : <71> +13:01:58 Transaction Type : RESPONSE +13:01:58 Received From : +13:01:58 ============================================================================ +13:01:58 FNo. Len. Field Value +13:01:58 ============================================================================ +13:01:58 [ 1] [ 4] [0210] +13:01:58 [ 2] [ 16] [1808931800002998] +13:01:58 [ 3] [ 6] [010000] +13:01:58 [ 4] [ 12] [000100000000] +13:01:58 [ 6] [ 12] [000100000000] +13:01:58 [ 7] [ 10] [0320130147] +13:01:58 [ 11] [ 6] [751845] +13:01:58 [ 12] [ 6] [130147] +13:01:58 [ 13] [ 4] [0320] +13:01:58 [ 18] [ 4] [6011] +13:01:58 [ 19] [ 3] [418] +13:01:58 [ 22] [ 3] [021] +13:01:58 [ 32] [ 6] [621354] +13:01:58 [ 35] [ 27] [1808931800002998=1803500364] +13:01:58 [ 37] [ 12] [507903624943] +13:01:58 [ 38] [ 6] [751845] +13:01:58 [ 39] [ 2] [00] +13:01:58 [ 41] [ 8] [16001500] +13:01:58 [ 49] [ 3] [418] +13:01:58 [ 52] [ 16] [B1938C0EBACC16B6] +13:01:58 [ 54] [ 20] [1001418C000207797300] +13:01:58 ============================================================================ +13:01:58 Calculate Source COMM Id = 0 +13:01:58 ============================================================================ +13:01:58 + + +waiting on router queue for slot.... +13:02:06 ============================================================================ +13:02:06 Slot Id : <70> +13:02:06 Transaction Type : REQUEST +13:02:06 Received From : +13:02:06 ============================================================================ +13:02:06 FNo. Len. Field Value +13:02:06 ============================================================================ +13:02:06 [ 1] [ 4] [0800] +13:02:06 [ 7] [ 10] [0320060114] +13:02:06 [ 11] [ 6] [156451] +13:02:06 [ 70] [ 3] [301] +13:02:06 ============================================================================ +13:02:06 + + +waiting on router queue for slot.... +13:02:06 Sending to : +13:02:06 ============================================================================ +13:02:06 ============================================================================ +13:02:06 Slot Id : <70> +13:02:06 Transaction Type : RESPONSE +13:02:06 Received From : +13:02:06 ============================================================================ +13:02:06 FNo. Len. Field Value +13:02:06 ============================================================================ +13:02:06 [ 1] [ 4] [0810] +13:02:06 [ 7] [ 10] [0320060114] +13:02:06 [ 11] [ 6] [156451] +13:02:06 [ 39] [ 2] [00] +13:02:06 [ 70] [ 3] [301] +13:02:06 ============================================================================ +13:02:06 Calculate Source COMM Id = 2 +13:02:06 ============================================================================ +13:02:06 + + +waiting on router queue for slot.... +13:02:15 ============================================================================ +13:02:15 Slot Id : <109> +13:02:15 Transaction Type : REQUEST +13:02:15 Received From : +13:02:15 ============================================================================ +13:02:15 FNo. Len. Field Value +13:02:15 ============================================================================ +13:02:15 [ 1] [ 4] [0200] +13:02:15 [ 2] [ 16] [1808931300012208] +13:02:15 [ 3] [ 6] [011000] +13:02:15 [ 4] [ 12] [000005000000] +13:02:15 [ 7] [ 10] [0320130211] +13:02:15 [ 11] [ 6] [751924] +13:02:15 [ 12] [ 6] [130211] +13:02:15 [ 13] [ 4] [0320] +13:02:15 [ 15] [ 4] [0320] +13:02:15 [ 18] [ 4] [6011] +13:02:15 [ 22] [ 3] [900] +13:02:15 [ 25] [ 2] [02] +13:02:15 [ 28] [ 9] [D00002000] +13:02:15 [ 32] [ 6] [621354] +13:02:15 [ 35] [ 27] [1808931300012208=1803500030] +13:02:15 [ 37] [ 12] [507902614103] +13:02:15 [ 41] [ 8] [05004400] +13:02:15 [ 42] [ 15] [NATIVE ] +13:02:15 [ 43] [ 40] [Sanpasaxon LPB LuangprabangLAO] +13:02:15 [ 49] [ 3] [418] +13:02:15 [ 52] [ 16] [AB0FAF205E926157] +13:02:15 ============================================================================ +13:02:15 + + +waiting on router queue for slot.... +13:02:15 Sending to : +13:02:15 ============================================================================ +13:02:15 Sending to : +13:02:15 ============================================================================ +13:02:16 ============================================================================ +13:02:16 Slot Id : <109> +13:02:16 Transaction Type : REQUEST +13:02:16 Received From : +13:02:16 ============================================================================ +13:02:16 FNo. Len. Field Value +13:02:16 ============================================================================ +13:02:16 [ 1] [ 4] [0200] +13:02:16 [ 2] [ 16] [1808931300012208] +13:02:16 [ 3] [ 6] [011000] +13:02:16 [ 4] [ 12] [000005000000] +13:02:16 [ 7] [ 10] [0320130211] +13:02:16 [ 11] [ 6] [751924] +13:02:16 [ 12] [ 6] [130211] +13:02:16 [ 13] [ 4] [0320] +13:02:16 [ 15] [ 4] [0320] +13:02:16 [ 18] [ 4] [6011] +13:02:16 [ 22] [ 3] [900] +13:02:16 [ 25] [ 2] [02] +13:02:16 [ 28] [ 9] [D00002000] +13:02:16 [ 32] [ 6] [621354] +13:02:16 [ 35] [ 27] [1808931300012208=1803500030] +13:02:16 [ 37] [ 12] [507902614103] +13:02:16 [ 41] [ 8] [05004400] +13:02:16 [ 42] [ 15] [NATIVE ] +13:02:16 [ 43] [ 40] [Sanpasaxon LPB LuangprabangLAO] +13:02:16 [ 49] [ 3] [418] +13:02:16 [ 52] [ 16] [AB0FAF205E926157] +13:02:16 ============================================================================ +13:02:16 + + +waiting on router queue for slot.... +13:02:16 Sending to : +13:02:16 ============================================================================ +13:02:16 ============================================================================ +13:02:16 Slot Id : <109> +13:02:16 Transaction Type : REQUEST +13:02:16 Received From : +13:02:16 ============================================================================ +13:02:16 FNo. Len. Field Value +13:02:16 ============================================================================ +13:02:16 [ 1] [ 4] [0200] +13:02:16 [ 2] [ 16] [1808931300012208] +13:02:16 [ 3] [ 6] [011000] +13:02:16 [ 4] [ 12] [000005000000] +13:02:16 [ 7] [ 10] [0320130211] +13:02:16 [ 11] [ 6] [751924] +13:02:16 [ 12] [ 6] [130211] +13:02:16 [ 13] [ 4] [0320] +13:02:16 [ 15] [ 4] [0320] +13:02:16 [ 18] [ 4] [6011] +13:02:16 [ 22] [ 3] [900] +13:02:16 [ 25] [ 2] [02] +13:02:16 [ 28] [ 9] [D00002000] +13:02:16 [ 32] [ 6] [621354] +13:02:16 [ 35] [ 27] [1808931300012208=1803500030] +13:02:16 [ 37] [ 12] [507902614103] +13:02:16 [ 41] [ 8] [05004400] +13:02:16 [ 42] [ 15] [NATIVE ] +13:02:16 [ 43] [ 40] [Sanpasaxon LPB LuangprabangLAO] +13:02:16 [ 49] [ 3] [418] +13:02:16 [ 52] [ 16] [208031FAA7866BFB] +13:02:16 ============================================================================ +13:02:16 + + +waiting on router queue for slot.... +13:02:16 Sending to : <2> +13:02:16 ============================================================================ +13:02:22 ============================================================================ +13:02:22 Slot Id : <109> +13:02:22 Transaction Type : RESPONSE +13:02:22 Received From : +13:02:22 ============================================================================ +13:02:22 FNo. Len. Field Value +13:02:22 ============================================================================ +13:02:22 [ 1] [ 4] [0210] +13:02:22 [ 2] [ 16] [1808931300012208] +13:02:22 [ 3] [ 6] [011000] +13:02:22 [ 4] [ 12] [000005000000] +13:02:22 [ 6] [ 12] [000005000000] +13:02:22 [ 7] [ 10] [0320130211] +13:02:22 [ 11] [ 6] [751924] +13:02:22 [ 12] [ 6] [130211] +13:02:22 [ 13] [ 4] [0320] +13:02:22 [ 18] [ 4] [6011] +13:02:22 [ 19] [ 3] [418] +13:02:22 [ 22] [ 3] [021] +13:02:22 [ 32] [ 6] [621354] +13:02:22 [ 35] [ 27] [1808931300012208=1803500030] +13:02:22 [ 37] [ 12] [507902614103] +13:02:22 [ 38] [ 6] [751924] +13:02:22 [ 39] [ 2] [00] +13:02:22 [ 41] [ 8] [05004400] +13:02:22 [ 49] [ 3] [418] +13:02:22 [ 52] [ 16] [208031FAA7866BFB] +13:02:22 [ 54] [ 20] [1001418C000054141500] +13:02:22 ============================================================================ +13:02:22 Sending to : +13:02:22 ============================================================================ +13:02:22 + + +waiting on router queue for slot.... +13:02:22 ============================================================================ +13:02:22 Slot Id : <102> +13:02:22 Transaction Type : REQUEST +13:02:22 Received From : +13:02:22 ============================================================================ +13:02:22 FNo. Len. Field Value +13:02:22 ============================================================================ +13:02:22 [ 1] [ 4] [0800] +13:02:22 [ 7] [ 10] [0320130209] +13:02:22 [ 11] [ 6] [083342] +13:02:22 [ 37] [ 12] [507913083342] +13:02:22 [ 70] [ 3] [ ] +13:02:22 ============================================================================ +13:02:22 + + +waiting on router queue for slot.... +13:02:22 Sending to : +13:02:22 ============================================================================ +13:02:22 ============================================================================ +13:02:22 Slot Id : <102> +13:02:22 Transaction Type : RESPONSE +13:02:22 Received From : +13:02:22 ============================================================================ +13:02:22 FNo. Len. Field Value +13:02:22 ============================================================================ +13:02:22 [ 1] [ 4] [0810] +13:02:22 [ 7] [ 10] [0320130209] +13:02:22 [ 11] [ 6] [083342] +13:02:22 [ 37] [ 12] [507913083342] +13:02:22 [ 39] [ 2] [91] +13:02:22 [ 70] [ 3] [ ] +13:02:22 ============================================================================ +13:02:22 Calculate Source COMM Id = 3 +13:02:22 ============================================================================ +13:02:22 + + +waiting on router queue for slot.... +13:02:23 ============================================================================ +13:02:23 Slot Id : <109> +13:02:23 Transaction Type : RESPONSE +13:02:23 Received From : +13:02:23 ============================================================================ +13:02:23 FNo. Len. Field Value +13:02:23 ============================================================================ +13:02:23 [ 1] [ 4] [0210] +13:02:23 [ 2] [ 16] [1808931300012208] +13:02:23 [ 3] [ 6] [011000] +13:02:23 [ 4] [ 12] [000005000000] +13:02:23 [ 6] [ 12] [000005000000] +13:02:23 [ 7] [ 10] [0320130211] +13:02:23 [ 11] [ 6] [751924] +13:02:23 [ 12] [ 6] [130211] +13:02:23 [ 13] [ 4] [0320] +13:02:23 [ 18] [ 4] [6011] +13:02:23 [ 19] [ 3] [418] +13:02:23 [ 22] [ 3] [021] +13:02:23 [ 32] [ 6] [621354] +13:02:23 [ 35] [ 27] [1808931300012208=1803500030] +13:02:23 [ 37] [ 12] [507902614103] +13:02:23 [ 38] [ 6] [751924] +13:02:23 [ 39] [ 2] [00] +13:02:23 [ 41] [ 8] [05004400] +13:02:23 [ 49] [ 3] [418] +13:02:23 [ 52] [ 16] [208031FAA7866BFB] +13:02:23 [ 54] [ 20] [1001418C000054141500] +13:02:23 ============================================================================ +13:02:23 Calculate Source COMM Id = 0 +13:02:23 ============================================================================ +13:02:23 + + +waiting on router queue for slot.... +13:02:28 ============================================================================ +13:02:28 Slot Id : <85> +13:02:28 Transaction Type : REQUEST +13:02:28 Received From : +13:02:28 ============================================================================ +13:02:28 FNo. Len. Field Value +13:02:28 ============================================================================ +13:02:28 [ 1] [ 4] [0800] +13:02:28 [ 7] [ 10] [0320060135] +13:02:28 [ 11] [ 6] [156452] +13:02:28 [ 70] [ 3] [301] +13:02:28 ============================================================================ +13:02:28 + + +waiting on router queue for slot.... +13:02:28 Sending to : +13:02:28 ============================================================================ +13:02:28 ============================================================================ +13:02:28 Slot Id : <85> +13:02:28 Transaction Type : RESPONSE +13:02:28 Received From : +13:02:28 ============================================================================ +13:02:28 FNo. Len. Field Value +13:02:28 ============================================================================ +13:02:28 [ 1] [ 4] [0810] +13:02:28 [ 7] [ 10] [0320060135] +13:02:28 [ 11] [ 6] [156452] +13:02:28 [ 39] [ 2] [00] +13:02:28 [ 70] [ 3] [301] +13:02:28 ============================================================================ +13:02:28 Calculate Source COMM Id = 2 +13:02:28 ============================================================================ +13:02:28 + + +waiting on router queue for slot.... +13:02:43 ============================================================================ +13:02:43 Slot Id : <136> +13:02:43 Transaction Type : REQUEST +13:02:43 Received From : +13:02:43 ============================================================================ +13:02:43 FNo. Len. Field Value +13:02:43 ============================================================================ +13:02:43 [ 1] [ 4] [0800] +13:02:43 [ 7] [ 10] [0320060150] +13:02:43 [ 11] [ 6] [156453] +13:02:43 [ 70] [ 3] [301] +13:02:43 ============================================================================ +13:02:43 + + +waiting on router queue for slot.... +13:02:43 Sending to : +13:02:43 ============================================================================ +13:02:43 ============================================================================ +13:02:43 Slot Id : <136> +13:02:43 Transaction Type : RESPONSE +13:02:43 Received From : +13:02:43 ============================================================================ +13:02:43 FNo. Len. Field Value +13:02:43 ============================================================================ +13:02:43 [ 1] [ 4] [0810] +13:02:43 [ 7] [ 10] [0320060150] +13:02:43 [ 11] [ 6] [156453] +13:02:43 [ 39] [ 2] [00] +13:02:43 [ 70] [ 3] [301] +13:02:43 ============================================================================ +13:02:43 Calculate Source COMM Id = 2 +13:02:43 ============================================================================ +13:02:43 + + +waiting on router queue for slot.... +13:02:52 ============================================================================ +13:02:52 Slot Id : <129> +13:02:52 Transaction Type : REQUEST +13:02:52 Received From : +13:02:52 ============================================================================ +13:02:52 FNo. Len. Field Value +13:02:52 ============================================================================ +13:02:52 [ 1] [ 4] [0800] +13:02:52 [ 2] [ 5] [02531] +13:02:52 [ 3] [ 6] [579138] +13:02:52 [ 7] [ 10] [0320060252] +13:02:52 [ 11] [ 6] [807169] +13:02:52 [ 15] [ 10] [0320060252] +13:02:52 [ 37] [ 11] [57913807169] +13:02:52 [ 70] [ 3] [001] +13:02:52 ============================================================================ +13:02:52 + + +waiting on router queue for slot.... +13:02:52 ============================================================================ +13:02:52 Slot Id : <129> +13:02:52 Transaction Type : RESPONSE +13:02:52 Received From : +13:02:52 ============================================================================ +13:02:52 FNo. Len. Field Value +13:02:52 ============================================================================ +13:02:52 [ 1] [ 4] [0810] +13:02:52 [ 7] [ 10] [0320060252] +13:02:52 [ 11] [ 6] [807169] +13:02:52 [ 15] [ 4] [0320] +13:02:52 [ 37] [ 12] [57913807169] +13:02:52 [ 39] [ 2] [00] +13:02:52 [ 70] [ 3] [001] +13:02:52 ============================================================================ +13:02:52 Sending to : +13:02:52 ============================================================================ +13:02:52 + + +waiting on router queue for slot.... +13:02:54 ============================================================================ +13:02:54 Slot Id : <87> +13:02:54 Transaction Type : REQUEST +13:02:54 Received From : +13:02:54 ============================================================================ +13:02:54 FNo. Len. Field Value +13:02:54 ============================================================================ +13:02:54 [ 1] [ 4] [0800] +13:02:54 [ 7] [ 10] [0320060201] +13:02:54 [ 11] [ 6] [156454] +13:02:54 [ 70] [ 3] [301] +13:02:54 ============================================================================ +13:02:54 + + +waiting on router queue for slot.... +13:02:54 Sending to : +13:02:54 ============================================================================ +13:02:54 ============================================================================ +13:02:54 Slot Id : <87> +13:02:54 Transaction Type : RESPONSE +13:02:54 Received From : +13:02:54 ============================================================================ +13:02:54 FNo. Len. Field Value +13:02:54 ============================================================================ +13:02:54 [ 1] [ 4] [0810] +13:02:54 [ 7] [ 10] [0320060201] +13:02:54 [ 11] [ 6] [156454] +13:02:54 [ 39] [ 2] [00] +13:02:54 [ 70] [ 3] [301] +13:02:54 ============================================================================ +13:02:54 Calculate Source COMM Id = 2 +13:02:54 ============================================================================ +13:02:54 + + +waiting on router queue for slot.... +13:02:59 ============================================================================ +13:02:59 Slot Id : <131> +13:02:59 Transaction Type : REQUEST +13:02:59 Received From : +13:02:59 ============================================================================ +13:02:59 FNo. Len. Field Value +13:02:59 ============================================================================ +13:02:59 [ 1] [ 4] [0200] +13:02:59 [ 2] [ 16] [6688990107354001] +13:02:59 [ 3] [ 6] [011000] +13:02:59 [ 4] [ 12] [000100000000] +13:02:59 [ 7] [ 10] [0320130254] +13:02:59 [ 11] [ 6] [752069] +13:02:59 [ 12] [ 6] [130254] +13:02:59 [ 13] [ 4] [0320] +13:02:59 [ 15] [ 4] [0320] +13:02:59 [ 18] [ 4] [6011] +13:02:59 [ 22] [ 3] [900] +13:02:59 [ 25] [ 2] [02] +13:02:59 [ 28] [ 9] [D00002000] +13:02:59 [ 32] [ 6] [621354] +13:02:59 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:02:59 [ 37] [ 12] [507904090016] +13:02:59 [ 41] [ 8] [08000600] +13:02:59 [ 42] [ 15] [NATIVE ] +13:02:59 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +13:02:59 [ 49] [ 3] [418] +13:02:59 [ 52] [ 16] [5F7020706DC37D3C] +13:02:59 ============================================================================ +13:02:59 + + +waiting on router queue for slot.... +13:02:59 Sending to : +13:02:59 ============================================================================ +13:02:59 Sending to : +13:02:59 ============================================================================ +13:02:59 ============================================================================ +13:02:59 Slot Id : <131> +13:02:59 Transaction Type : REQUEST +13:02:59 Received From : +13:02:59 ============================================================================ +13:02:59 FNo. Len. Field Value +13:02:59 ============================================================================ +13:02:59 [ 1] [ 4] [0200] +13:02:59 [ 2] [ 16] [6688990107354001] +13:02:59 [ 3] [ 6] [011000] +13:02:59 [ 4] [ 12] [000100000000] +13:02:59 [ 7] [ 10] [0320130254] +13:02:59 [ 11] [ 6] [752069] +13:02:59 [ 12] [ 6] [130254] +13:02:59 [ 13] [ 4] [0320] +13:02:59 [ 15] [ 4] [0320] +13:02:59 [ 18] [ 4] [6011] +13:02:59 [ 22] [ 3] [900] +13:02:59 [ 25] [ 2] [02] +13:02:59 [ 28] [ 9] [D00002000] +13:02:59 [ 32] [ 6] [621354] +13:02:59 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:02:59 [ 37] [ 12] [507904090016] +13:02:59 [ 41] [ 8] [08000600] +13:02:59 [ 42] [ 15] [NATIVE ] +13:02:59 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +13:02:59 [ 49] [ 3] [418] +13:02:59 [ 52] [ 16] [5F7020706DC37D3C] +13:02:59 ============================================================================ +13:02:59 + + +waiting on router queue for slot.... +13:02:59 Sending to : +13:02:59 ============================================================================ +13:02:59 ============================================================================ +13:02:59 Slot Id : <131> +13:02:59 Transaction Type : REQUEST +13:02:59 Received From : +13:02:59 ============================================================================ +13:02:59 FNo. Len. Field Value +13:02:59 ============================================================================ +13:02:59 [ 1] [ 4] [0200] +13:02:59 [ 2] [ 16] [6688990107354001] +13:02:59 [ 3] [ 6] [011000] +13:02:59 [ 4] [ 12] [000100000000] +13:02:59 [ 7] [ 10] [0320130254] +13:02:59 [ 11] [ 6] [752069] +13:02:59 [ 12] [ 6] [130254] +13:02:59 [ 13] [ 4] [0320] +13:02:59 [ 15] [ 4] [0320] +13:02:59 [ 18] [ 4] [6011] +13:02:59 [ 22] [ 3] [900] +13:02:59 [ 25] [ 2] [02] +13:02:59 [ 28] [ 9] [D00002000] +13:02:59 [ 32] [ 6] [621354] +13:02:59 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:02:59 [ 37] [ 12] [507904090016] +13:02:59 [ 41] [ 8] [08000600] +13:02:59 [ 42] [ 15] [NATIVE ] +13:02:59 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +13:02:59 [ 49] [ 3] [418] +13:02:59 [ 52] [ 16] [ABEC4B63AB1D25E9] +13:02:59 ============================================================================ +13:02:59 + + +waiting on router queue for slot.... +13:02:59 Sending to : <4> +13:02:59 ============================================================================ +13:03:00 ============================================================================ +13:03:00 Slot Id : <131> +13:03:00 Transaction Type : RESPONSE +13:03:00 Received From : +13:03:00 ============================================================================ +13:03:00 FNo. Len. Field Value +13:03:00 ============================================================================ +13:03:00 [ 1] [ 4] [0210] +13:03:00 [ 2] [ 16] [6688990107354001] +13:03:00 [ 3] [ 6] [011000] +13:03:00 [ 4] [ 12] [000100000000] +13:03:00 [ 11] [ 6] [752069] +13:03:00 [ 12] [ 6] [130254] +13:03:00 [ 15] [ 4] [0320] +13:03:00 [ 18] [ 4] [6011] +13:03:00 [ 32] [ 6] [621354] +13:03:00 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:03:00 [ 37] [ 12] [507904090016] +13:03:00 [ 38] [ 6] [253868] +13:03:00 [ 39] [ 2] [00] +13:03:00 [ 41] [ 8] [08000600] +13:03:00 [ 49] [ 3] [418] +13:03:00 [ 54] [ 20] [1002418C001354180845] +13:03:00 ============================================================================ +13:03:00 Sending to : +13:03:00 ============================================================================ +13:03:00 + + +waiting on router queue for slot.... +13:03:01 ============================================================================ +13:03:01 Slot Id : <105> +13:03:01 Transaction Type : REQUEST +13:03:01 Received From : +13:03:01 ============================================================================ +13:03:01 FNo. Len. Field Value +13:03:01 ============================================================================ +13:03:01 [ 1] [ 4] [0200] +13:03:01 [ 2] [ 16] [1808931700026303] +13:03:01 [ 3] [ 6] [011000] +13:03:01 [ 4] [ 12] [000100000000] +13:03:01 [ 7] [ 10] [0320130256] +13:03:01 [ 11] [ 6] [752077] +13:03:01 [ 12] [ 6] [130256] +13:03:01 [ 13] [ 4] [0320] +13:03:01 [ 15] [ 4] [0320] +13:03:01 [ 18] [ 4] [6011] +13:03:01 [ 22] [ 3] [900] +13:03:01 [ 25] [ 2] [02] +13:03:01 [ 28] [ 9] [D00002000] +13:03:01 [ 32] [ 6] [621354] +13:03:01 [ 35] [ 27] [1808931700026303=1803500215] +13:03:01 [ 37] [ 12] [507902723067] +13:03:01 [ 41] [ 8] [01006600] +13:03:01 [ 42] [ 15] [NATIVE ] +13:03:01 [ 43] [ 40] [SHOPPING MALL ChanthaboulyLAO] +13:03:01 [ 49] [ 3] [418] +13:03:01 [ 52] [ 16] [B56CAEC4D75E8B86] +13:03:01 ============================================================================ +13:03:01 + + +waiting on router queue for slot.... +13:03:01 Sending to : +13:03:01 ============================================================================ +13:03:01 Sending to : +13:03:01 ============================================================================ +13:03:01 ============================================================================ +13:03:01 Slot Id : <105> +13:03:01 Transaction Type : REQUEST +13:03:01 Received From : +13:03:01 ============================================================================ +13:03:01 FNo. Len. Field Value +13:03:01 ============================================================================ +13:03:01 [ 1] [ 4] [0200] +13:03:01 [ 2] [ 16] [1808931700026303] +13:03:01 [ 3] [ 6] [011000] +13:03:01 [ 4] [ 12] [000100000000] +13:03:01 [ 7] [ 10] [0320130256] +13:03:01 [ 11] [ 6] [752077] +13:03:01 [ 12] [ 6] [130256] +13:03:01 [ 13] [ 4] [0320] +13:03:01 [ 15] [ 4] [0320] +13:03:01 [ 18] [ 4] [6011] +13:03:01 [ 22] [ 3] [900] +13:03:01 [ 25] [ 2] [02] +13:03:01 [ 28] [ 9] [D00002000] +13:03:01 [ 32] [ 6] [621354] +13:03:01 [ 35] [ 27] [1808931700026303=1803500215] +13:03:01 [ 37] [ 12] [507902723067] +13:03:01 [ 41] [ 8] [01006600] +13:03:01 [ 42] [ 15] [NATIVE ] +13:03:01 [ 43] [ 40] [SHOPPING MALL ChanthaboulyLAO] +13:03:01 [ 49] [ 3] [418] +13:03:01 [ 52] [ 16] [B56CAEC4D75E8B86] +13:03:01 ============================================================================ +13:03:01 + + +waiting on router queue for slot.... +13:03:01 Sending to : +13:03:01 ============================================================================ +13:03:01 ============================================================================ +13:03:01 Slot Id : <105> +13:03:01 Transaction Type : REQUEST +13:03:01 Received From : +13:03:01 ============================================================================ +13:03:01 FNo. Len. Field Value +13:03:01 ============================================================================ +13:03:01 [ 1] [ 4] [0200] +13:03:01 [ 2] [ 16] [1808931700026303] +13:03:01 [ 3] [ 6] [011000] +13:03:01 [ 4] [ 12] [000100000000] +13:03:01 [ 7] [ 10] [0320130256] +13:03:01 [ 11] [ 6] [752077] +13:03:01 [ 12] [ 6] [130256] +13:03:01 [ 13] [ 4] [0320] +13:03:01 [ 15] [ 4] [0320] +13:03:01 [ 18] [ 4] [6011] +13:03:01 [ 22] [ 3] [900] +13:03:01 [ 25] [ 2] [02] +13:03:01 [ 28] [ 9] [D00002000] +13:03:01 [ 32] [ 6] [621354] +13:03:01 [ 35] [ 27] [1808931700026303=1803500215] +13:03:01 [ 37] [ 12] [507902723067] +13:03:01 [ 41] [ 8] [01006600] +13:03:01 [ 42] [ 15] [NATIVE ] +13:03:01 [ 43] [ 40] [SHOPPING MALL ChanthaboulyLAO] +13:03:01 [ 49] [ 3] [418] +13:03:01 [ 52] [ 16] [98E71ED3C8120786] +13:03:01 ============================================================================ +13:03:01 + + +waiting on router queue for slot.... +13:03:01 Sending to : <2> +13:03:01 ============================================================================ +13:03:02 ============================================================================ +13:03:02 Slot Id : <131> +13:03:02 Transaction Type : RESPONSE +13:03:02 Received From : +13:03:02 ============================================================================ +13:03:02 FNo. Len. Field Value +13:03:02 ============================================================================ +13:03:02 [ 1] [ 4] [0210] +13:03:02 [ 2] [ 16] [6688990107354001] +13:03:02 [ 3] [ 6] [011000] +13:03:02 [ 4] [ 12] [000100000000] +13:03:02 [ 11] [ 6] [752069] +13:03:02 [ 12] [ 6] [130254] +13:03:02 [ 15] [ 4] [0320] +13:03:02 [ 18] [ 4] [6011] +13:03:02 [ 32] [ 6] [621354] +13:03:02 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:03:02 [ 37] [ 12] [507904090016] +13:03:02 [ 38] [ 6] [253868] +13:03:02 [ 39] [ 2] [00] +13:03:02 [ 41] [ 8] [08000600] +13:03:02 [ 49] [ 3] [418] +13:03:02 [ 54] [ 20] [1002418C001354180845] +13:03:02 ============================================================================ +13:03:02 Calculate Source COMM Id = 0 +13:03:02 ============================================================================ +13:03:02 + + +waiting on router queue for slot.... +13:03:07 ============================================================================ +13:03:07 Slot Id : <105> +13:03:07 Transaction Type : RESPONSE +13:03:07 Received From : +13:03:07 ============================================================================ +13:03:07 FNo. Len. Field Value +13:03:07 ============================================================================ +13:03:07 [ 1] [ 4] [0210] +13:03:07 [ 2] [ 16] [1808931700026303] +13:03:07 [ 3] [ 6] [011000] +13:03:07 [ 4] [ 12] [000100000000] +13:03:07 [ 6] [ 12] [000100000000] +13:03:07 [ 7] [ 10] [0320130256] +13:03:07 [ 11] [ 6] [752077] +13:03:07 [ 12] [ 6] [130256] +13:03:07 [ 13] [ 4] [0320] +13:03:07 [ 18] [ 4] [6011] +13:03:07 [ 19] [ 3] [418] +13:03:07 [ 22] [ 3] [021] +13:03:07 [ 32] [ 6] [621354] +13:03:07 [ 35] [ 27] [1808931700026303=1803500215] +13:03:07 [ 37] [ 12] [507902723067] +13:03:07 [ 38] [ 6] [752077] +13:03:07 [ 39] [ 2] [00] +13:03:07 [ 41] [ 8] [01006600] +13:03:07 [ 49] [ 3] [418] +13:03:07 [ 52] [ 16] [98E71ED3C8120786] +13:03:07 [ 54] [ 20] [1001418C000110553500] +13:03:07 ============================================================================ +13:03:07 Sending to : +13:03:07 ============================================================================ +13:03:07 + + +waiting on router queue for slot.... +13:03:08 ============================================================================ +13:03:08 Slot Id : <105> +13:03:08 Transaction Type : RESPONSE +13:03:08 Received From : +13:03:08 ============================================================================ +13:03:08 FNo. Len. Field Value +13:03:08 ============================================================================ +13:03:08 [ 1] [ 4] [0210] +13:03:08 [ 2] [ 16] [1808931700026303] +13:03:08 [ 3] [ 6] [011000] +13:03:08 [ 4] [ 12] [000100000000] +13:03:08 [ 6] [ 12] [000100000000] +13:03:08 [ 7] [ 10] [0320130256] +13:03:08 [ 11] [ 6] [752077] +13:03:08 [ 12] [ 6] [130256] +13:03:08 [ 13] [ 4] [0320] +13:03:08 [ 18] [ 4] [6011] +13:03:08 [ 19] [ 3] [418] +13:03:08 [ 22] [ 3] [021] +13:03:08 [ 32] [ 6] [621354] +13:03:08 [ 35] [ 27] [1808931700026303=1803500215] +13:03:08 [ 37] [ 12] [507902723067] +13:03:08 [ 38] [ 6] [752077] +13:03:08 [ 39] [ 2] [00] +13:03:08 [ 41] [ 8] [01006600] +13:03:08 [ 49] [ 3] [418] +13:03:08 [ 52] [ 16] [98E71ED3C8120786] +13:03:08 [ 54] [ 20] [1001418C000110553500] +13:03:08 ============================================================================ +13:03:08 Calculate Source COMM Id = 0 +13:03:08 ============================================================================ +13:03:08 + + +waiting on router queue for slot.... +13:03:15 ============================================================================ +13:03:15 Slot Id : <104> +13:03:15 Transaction Type : REQUEST +13:03:15 Received From : +13:03:15 ============================================================================ +13:03:15 FNo. Len. Field Value +13:03:15 ============================================================================ +13:03:15 [ 1] [ 4] [0800] +13:03:15 [ 7] [ 10] [0320060222] +13:03:15 [ 11] [ 6] [156455] +13:03:15 [ 70] [ 3] [301] +13:03:15 ============================================================================ +13:03:15 + + +waiting on router queue for slot.... +13:03:15 Sending to : +13:03:15 ============================================================================ +13:03:15 ============================================================================ +13:03:15 Slot Id : <104> +13:03:15 Transaction Type : RESPONSE +13:03:15 Received From : +13:03:15 ============================================================================ +13:03:15 FNo. Len. Field Value +13:03:15 ============================================================================ +13:03:15 [ 1] [ 4] [0810] +13:03:15 [ 7] [ 10] [0320060222] +13:03:15 [ 11] [ 6] [156455] +13:03:15 [ 39] [ 2] [00] +13:03:15 [ 70] [ 3] [301] +13:03:15 ============================================================================ +13:03:15 Calculate Source COMM Id = 2 +13:03:15 ============================================================================ +13:03:15 + + +waiting on router queue for slot.... +13:03:25 ============================================================================ +13:03:25 Slot Id : <138> +13:03:25 Transaction Type : REQUEST +13:03:25 Received From : +13:03:25 ============================================================================ +13:03:25 FNo. Len. Field Value +13:03:25 ============================================================================ +13:03:25 [ 1] [ 4] [0800] +13:03:25 [ 7] [ 10] [0320060233] +13:03:25 [ 11] [ 6] [156456] +13:03:25 [ 70] [ 3] [301] +13:03:25 ============================================================================ +13:03:25 + + +waiting on router queue for slot.... +13:03:25 Sending to : +13:03:25 ============================================================================ +13:03:25 ============================================================================ +13:03:25 Slot Id : <138> +13:03:25 Transaction Type : RESPONSE +13:03:25 Received From : +13:03:25 ============================================================================ +13:03:25 FNo. Len. Field Value +13:03:25 ============================================================================ +13:03:25 [ 1] [ 4] [0810] +13:03:25 [ 7] [ 10] [0320060233] +13:03:25 [ 11] [ 6] [156456] +13:03:25 [ 39] [ 2] [00] +13:03:25 [ 70] [ 3] [301] +13:03:25 ============================================================================ +13:03:25 Calculate Source COMM Id = 2 +13:03:25 ============================================================================ +13:03:25 + + +waiting on router queue for slot.... +13:03:28 ============================================================================ +13:03:28 Slot Id : <112> +13:03:28 Transaction Type : REQUEST +13:03:28 Received From : +13:03:28 ============================================================================ +13:03:28 FNo. Len. Field Value +13:03:28 ============================================================================ +13:03:28 [ 1] [ 4] [0200] +13:03:28 [ 2] [ 16] [6213544001657367] +13:03:28 [ 3] [ 6] [011000] +13:03:28 [ 4] [ 12] [000028000000] +13:03:28 [ 7] [ 10] [0320130349] +13:03:28 [ 11] [ 6] [206067] +13:03:28 [ 12] [ 6] [125932] +13:03:28 [ 13] [ 4] [0320] +13:03:28 [ 14] [ 4] [4912] +13:03:28 [ 15] [ 4] [0320] +13:03:28 [ 18] [ 4] [6011] +13:03:28 [ 19] [ 3] [418] +13:03:28 [ 22] [ 3] [021] +13:03:28 [ 25] [ 2] [01] +13:03:28 [ 28] [ 9] [D00002000] +13:03:28 [ 32] [ 6] [198901] +13:03:28 [ 35] [ 32] [6213544001657367=491212015736957] +13:03:28 [ 37] [ 12] [507913206067] +13:03:28 [ 41] [ 8] [01529001] +13:03:28 [ 42] [ 15] [000000041529001] +13:03:28 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +13:03:28 [ 49] [ 3] [418] +13:03:28 [ 52] [ 16] [FF286B96E3546F81] +13:03:28 ============================================================================ +13:03:28 + + +waiting on router queue for slot.... +13:03:28 Sending to : +13:03:28 ============================================================================ +13:03:28 Sending to : +13:03:28 ============================================================================ +13:03:28 ============================================================================ +13:03:28 Slot Id : <112> +13:03:28 Transaction Type : REQUEST +13:03:28 Received From : +13:03:28 ============================================================================ +13:03:28 FNo. Len. Field Value +13:03:28 ============================================================================ +13:03:28 [ 1] [ 4] [0200] +13:03:28 [ 2] [ 16] [6213544001657367] +13:03:28 [ 3] [ 6] [011000] +13:03:28 [ 4] [ 12] [000028000000] +13:03:28 [ 7] [ 10] [0320130349] +13:03:28 [ 11] [ 6] [206067] +13:03:28 [ 12] [ 6] [125932] +13:03:28 [ 13] [ 4] [0320] +13:03:28 [ 14] [ 4] [4912] +13:03:28 [ 15] [ 4] [0320] +13:03:28 [ 18] [ 4] [6011] +13:03:28 [ 19] [ 3] [418] +13:03:28 [ 22] [ 3] [021] +13:03:28 [ 25] [ 2] [01] +13:03:28 [ 28] [ 9] [D00002000] +13:03:28 [ 32] [ 6] [198901] +13:03:28 [ 35] [ 32] [6213544001657367=491212015736957] +13:03:28 [ 37] [ 12] [507913206067] +13:03:28 [ 41] [ 8] [01529001] +13:03:28 [ 42] [ 15] [000000041529001] +13:03:28 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +13:03:28 [ 49] [ 3] [418] +13:03:28 [ 52] [ 16] [FF286B96E3546F81] +13:03:28 ============================================================================ +13:03:28 + + +waiting on router queue for slot.... +13:03:28 Sending to : +13:03:28 ============================================================================ +13:03:28 ============================================================================ +13:03:28 Slot Id : <112> +13:03:28 Transaction Type : REQUEST +13:03:28 Received From : +13:03:28 ============================================================================ +13:03:28 FNo. Len. Field Value +13:03:28 ============================================================================ +13:03:28 [ 1] [ 4] [0200] +13:03:28 [ 2] [ 16] [6213544001657367] +13:03:28 [ 3] [ 6] [011000] +13:03:28 [ 4] [ 12] [000028000000] +13:03:28 [ 7] [ 10] [0320130349] +13:03:28 [ 11] [ 6] [206067] +13:03:28 [ 12] [ 6] [125932] +13:03:28 [ 13] [ 4] [0320] +13:03:28 [ 14] [ 4] [4912] +13:03:28 [ 15] [ 4] [0320] +13:03:28 [ 18] [ 4] [6011] +13:03:28 [ 19] [ 3] [418] +13:03:28 [ 22] [ 3] [021] +13:03:28 [ 25] [ 2] [01] +13:03:28 [ 28] [ 9] [D00002000] +13:03:28 [ 32] [ 6] [198901] +13:03:28 [ 35] [ 32] [6213544001657367=491212015736957] +13:03:28 [ 37] [ 12] [507913206067] +13:03:28 [ 41] [ 8] [01529001] +13:03:28 [ 42] [ 15] [000000041529001] +13:03:28 [ 43] [ 40] [JDB ATM THATLAUNG UNIT VN ] +13:03:28 [ 49] [ 3] [418] +13:03:28 [ 52] [ 16] [4D7C4C5E02D58190] +13:03:28 ============================================================================ +13:03:28 + + +waiting on router queue for slot.... +13:03:28 Sending to : <0> +13:03:28 ============================================================================ +13:03:29 ============================================================================ +13:03:29 Slot Id : <112> +13:03:29 Transaction Type : RESPONSE +13:03:29 Received From : +13:03:29 ============================================================================ +13:03:29 FNo. Len. Field Value +13:03:29 ============================================================================ +13:03:29 [ 1] [ 4] [0210] +13:03:29 [ 2] [ 16] [6213544001657367] +13:03:29 [ 3] [ 6] [011000] +13:03:29 [ 4] [ 12] [000028000000] +13:03:29 [ 7] [ 10] [0320130349] +13:03:29 [ 11] [ 6] [206067] +13:03:29 [ 12] [ 6] [125932] +13:03:29 [ 13] [ 4] [0320] +13:03:29 [ 15] [ 4] [0320] +13:03:29 [ 18] [ 4] [6011] +13:03:29 [ 19] [ 3] [418] +13:03:29 [ 32] [ 6] [198901] +13:03:29 [ 35] [ 32] [6213544001657367=491212015736957] +13:03:29 [ 37] [ 12] [507913206067] +13:03:29 [ 38] [ 6] [251073] +13:03:29 [ 39] [ 2] [00] +13:03:29 [ 41] [ 8] [01529001] +13:03:29 [ 49] [ 3] [418] +13:03:29 [ 54] [ 40] [1001418C0000059078951002418C000005907895] +13:03:29 ============================================================================ +13:03:29 Sending to : +13:03:29 ============================================================================ +13:03:29 + + +waiting on router queue for slot.... +13:03:31 ============================================================================ +13:03:31 Slot Id : <112> +13:03:31 Transaction Type : RESPONSE +13:03:31 Received From : +13:03:31 ============================================================================ +13:03:31 FNo. Len. Field Value +13:03:31 ============================================================================ +13:03:31 [ 1] [ 4] [0210] +13:03:31 [ 2] [ 16] [6213544001657367] +13:03:31 [ 3] [ 6] [011000] +13:03:31 [ 4] [ 12] [000028000000] +13:03:31 [ 7] [ 10] [0320130349] +13:03:31 [ 11] [ 6] [206067] +13:03:31 [ 12] [ 6] [125932] +13:03:31 [ 13] [ 4] [0320] +13:03:31 [ 15] [ 4] [0320] +13:03:31 [ 18] [ 4] [6011] +13:03:31 [ 19] [ 3] [418] +13:03:31 [ 32] [ 6] [198901] +13:03:31 [ 35] [ 32] [6213544001657367=491212015736957] +13:03:31 [ 37] [ 12] [507913206067] +13:03:31 [ 38] [ 6] [251073] +13:03:31 [ 39] [ 2] [00] +13:03:31 [ 41] [ 8] [01529001] +13:03:31 [ 49] [ 3] [418] +13:03:31 [ 54] [ 40] [1001418C0000059078951002418C000005907895] +13:03:31 ============================================================================ +13:03:31 Calculate Source COMM Id = 5 +13:03:31 ============================================================================ +13:03:31 + + +waiting on router queue for slot.... +13:03:36 ============================================================================ +13:03:36 Slot Id : <116> +13:03:36 Transaction Type : REQUEST +13:03:36 Received From : +13:03:36 ============================================================================ +13:03:36 FNo. Len. Field Value +13:03:36 ============================================================================ +13:03:36 [ 1] [ 4] [0800] +13:03:36 [ 7] [ 10] [0320060243] +13:03:36 [ 11] [ 6] [156457] +13:03:36 [ 70] [ 3] [301] +13:03:36 ============================================================================ +13:03:36 + + +waiting on router queue for slot.... +13:03:36 Sending to : +13:03:36 ============================================================================ +13:03:36 ============================================================================ +13:03:36 Slot Id : <116> +13:03:36 Transaction Type : RESPONSE +13:03:36 Received From : +13:03:36 ============================================================================ +13:03:36 FNo. Len. Field Value +13:03:36 ============================================================================ +13:03:36 [ 1] [ 4] [0810] +13:03:36 [ 7] [ 10] [0320060243] +13:03:36 [ 11] [ 6] [156457] +13:03:36 [ 39] [ 2] [00] +13:03:36 [ 70] [ 3] [301] +13:03:36 ============================================================================ +13:03:36 Calculate Source COMM Id = 2 +13:03:36 ============================================================================ +13:03:36 + + +waiting on router queue for slot.... +13:03:37 ============================================================================ +13:03:37 Slot Id : <140> +13:03:37 Transaction Type : REQUEST +13:03:37 Received From : +13:03:37 ============================================================================ +13:03:37 FNo. Len. Field Value +13:03:37 ============================================================================ +13:03:37 [ 1] [ 4] [0200] +13:03:37 [ 2] [ 16] [1808931800002998] +13:03:37 [ 3] [ 6] [010000] +13:03:37 [ 4] [ 12] [000100000000] +13:03:37 [ 7] [ 10] [0320130333] +13:03:37 [ 11] [ 6] [752198] +13:03:37 [ 12] [ 6] [130333] +13:03:37 [ 13] [ 4] [0320] +13:03:37 [ 15] [ 4] [0320] +13:03:37 [ 18] [ 4] [6011] +13:03:37 [ 22] [ 3] [900] +13:03:37 [ 25] [ 2] [02] +13:03:37 [ 28] [ 9] [D00002000] +13:03:37 [ 32] [ 6] [621354] +13:03:37 [ 35] [ 27] [1808931800002998=1803500364] +13:03:37 [ 37] [ 12] [507903624945] +13:03:37 [ 41] [ 8] [16001500] +13:03:37 [ 42] [ 15] [NATIVE ] +13:03:37 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:03:37 [ 49] [ 3] [418] +13:03:37 [ 52] [ 16] [0552CCEDC225A0A6] +13:03:37 ============================================================================ +13:03:37 + + +waiting on router queue for slot.... +13:03:37 Sending to : +13:03:37 ============================================================================ +13:03:37 Sending to : +13:03:37 ============================================================================ +13:03:38 ============================================================================ +13:03:38 Slot Id : <140> +13:03:38 Transaction Type : REQUEST +13:03:38 Received From : +13:03:38 ============================================================================ +13:03:38 FNo. Len. Field Value +13:03:38 ============================================================================ +13:03:38 [ 1] [ 4] [0200] +13:03:38 [ 2] [ 16] [1808931800002998] +13:03:38 [ 3] [ 6] [010000] +13:03:38 [ 4] [ 12] [000100000000] +13:03:38 [ 7] [ 10] [0320130333] +13:03:38 [ 11] [ 6] [752198] +13:03:38 [ 12] [ 6] [130333] +13:03:38 [ 13] [ 4] [0320] +13:03:38 [ 15] [ 4] [0320] +13:03:38 [ 18] [ 4] [6011] +13:03:38 [ 22] [ 3] [900] +13:03:38 [ 25] [ 2] [02] +13:03:38 [ 28] [ 9] [D00002000] +13:03:38 [ 32] [ 6] [621354] +13:03:38 [ 35] [ 27] [1808931800002998=1803500364] +13:03:38 [ 37] [ 12] [507903624945] +13:03:38 [ 41] [ 8] [16001500] +13:03:38 [ 42] [ 15] [NATIVE ] +13:03:38 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:03:38 [ 49] [ 3] [418] +13:03:38 [ 52] [ 16] [0552CCEDC225A0A6] +13:03:38 ============================================================================ +13:03:38 + + +waiting on router queue for slot.... +13:03:38 Sending to : +13:03:38 ============================================================================ +13:03:38 ============================================================================ +13:03:38 Slot Id : <140> +13:03:38 Transaction Type : REQUEST +13:03:38 Received From : +13:03:38 ============================================================================ +13:03:38 FNo. Len. Field Value +13:03:38 ============================================================================ +13:03:38 [ 1] [ 4] [0200] +13:03:38 [ 2] [ 16] [1808931800002998] +13:03:38 [ 3] [ 6] [010000] +13:03:38 [ 4] [ 12] [000100000000] +13:03:38 [ 7] [ 10] [0320130333] +13:03:38 [ 11] [ 6] [752198] +13:03:38 [ 12] [ 6] [130333] +13:03:38 [ 13] [ 4] [0320] +13:03:38 [ 15] [ 4] [0320] +13:03:38 [ 18] [ 4] [6011] +13:03:38 [ 22] [ 3] [900] +13:03:38 [ 25] [ 2] [02] +13:03:38 [ 28] [ 9] [D00002000] +13:03:38 [ 32] [ 6] [621354] +13:03:38 [ 35] [ 27] [1808931800002998=1803500364] +13:03:38 [ 37] [ 12] [507903624945] +13:03:38 [ 41] [ 8] [16001500] +13:03:38 [ 42] [ 15] [NATIVE ] +13:03:38 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:03:38 [ 49] [ 3] [418] +13:03:38 [ 52] [ 16] [58D51E9B7AFDAE45] +13:03:38 ============================================================================ +13:03:38 + + +waiting on router queue for slot.... +13:03:38 Sending to : <2> +13:03:38 ============================================================================ +13:03:39 ============================================================================ +13:03:39 Slot Id : <140> +13:03:39 Transaction Type : RESPONSE +13:03:39 Received From : +13:03:39 ============================================================================ +13:03:39 FNo. Len. Field Value +13:03:39 ============================================================================ +13:03:39 [ 1] [ 4] [0210] +13:03:39 [ 2] [ 16] [1808931800002998] +13:03:39 [ 3] [ 6] [010000] +13:03:39 [ 4] [ 12] [000100000000] +13:03:39 [ 6] [ 12] [000100000000] +13:03:39 [ 7] [ 10] [0320130333] +13:03:39 [ 11] [ 6] [752198] +13:03:39 [ 12] [ 6] [130333] +13:03:39 [ 13] [ 4] [0320] +13:03:39 [ 18] [ 4] [6011] +13:03:39 [ 19] [ 3] [418] +13:03:39 [ 22] [ 3] [021] +13:03:39 [ 28] [ 9] [D00002000] +13:03:39 [ 32] [ 6] [621354] +13:03:39 [ 35] [ 27] [1808931800002998=1803500364] +13:03:39 [ 37] [ 12] [507903624945] +13:03:39 [ 39] [ 2] [55] +13:03:39 [ 41] [ 8] [16001500] +13:03:39 [ 49] [ 3] [418] +13:03:39 [ 51] [ 3] [418] +13:03:39 [ 52] [ 16] [58D51E9B7AFDAE45] +13:03:39 ============================================================================ +13:03:39 Sending to : +13:03:39 ============================================================================ +13:03:39 + + +waiting on router queue for slot.... +13:03:40 ============================================================================ +13:03:40 Slot Id : <140> +13:03:40 Transaction Type : RESPONSE +13:03:40 Received From : +13:03:40 ============================================================================ +13:03:40 FNo. Len. Field Value +13:03:40 ============================================================================ +13:03:40 [ 1] [ 4] [0210] +13:03:40 [ 2] [ 16] [1808931800002998] +13:03:40 [ 3] [ 6] [010000] +13:03:40 [ 4] [ 12] [000100000000] +13:03:40 [ 6] [ 12] [000100000000] +13:03:40 [ 7] [ 10] [0320130333] +13:03:40 [ 11] [ 6] [752198] +13:03:40 [ 12] [ 6] [130333] +13:03:40 [ 13] [ 4] [0320] +13:03:40 [ 18] [ 4] [6011] +13:03:40 [ 19] [ 3] [418] +13:03:40 [ 22] [ 3] [021] +13:03:40 [ 28] [ 9] [D00002000] +13:03:40 [ 32] [ 6] [621354] +13:03:40 [ 35] [ 27] [1808931800002998=1803500364] +13:03:40 [ 37] [ 12] [507903624945] +13:03:40 [ 39] [ 2] [55] +13:03:40 [ 41] [ 8] [16001500] +13:03:40 [ 49] [ 3] [418] +13:03:40 [ 51] [ 3] [418] +13:03:40 [ 52] [ 16] [58D51E9B7AFDAE45] +13:03:40 ============================================================================ +13:03:40 Calculate Source COMM Id = 0 +13:03:40 ============================================================================ +13:03:40 + + +waiting on router queue for slot.... +13:03:50 ============================================================================ +13:03:50 Slot Id : <117> +13:03:50 Transaction Type : REQUEST +13:03:50 Received From : +13:03:50 ============================================================================ +13:03:50 FNo. Len. Field Value +13:03:50 ============================================================================ +13:03:50 [ 1] [ 4] [0200] +13:03:50 [ 2] [ 16] [6688990101019808] +13:03:50 [ 3] [ 6] [011000] +13:03:50 [ 4] [ 12] [000020000000] +13:03:50 [ 7] [ 10] [0320060257] +13:03:50 [ 11] [ 6] [269199] +13:03:50 [ 12] [ 6] [130257] +13:03:50 [ 13] [ 4] [0320] +13:03:50 [ 14] [ 4] [4112] +13:03:50 [ 15] [ 4] [0320] +13:03:50 [ 18] [ 4] [6011] +13:03:50 [ 19] [ 3] [418] +13:03:50 [ 22] [ 3] [021] +13:03:50 [ 25] [ 2] [01] +13:03:50 [ 28] [ 9] [D00002000] +13:03:50 [ 32] [ 6] [180893] +13:03:50 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:03:50 [ 37] [ 12] [507906269199] +13:03:50 [ 41] [ 8] [0141HQBR] +13:03:50 [ 42] [ 15] [999999 ] +13:03:50 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +13:03:50 [ 49] [ 3] [418] +13:03:50 [ 52] [ 16] [68413EFB13B494C1] +13:03:50 ============================================================================ +13:03:50 + + +waiting on router queue for slot.... +13:03:50 Sending to : +13:03:50 ============================================================================ +13:03:50 Sending to : +13:03:50 ============================================================================ +13:03:51 ============================================================================ +13:03:51 Slot Id : <117> +13:03:51 Transaction Type : REQUEST +13:03:51 Received From : +13:03:51 ============================================================================ +13:03:51 FNo. Len. Field Value +13:03:51 ============================================================================ +13:03:51 [ 1] [ 4] [0200] +13:03:51 [ 2] [ 16] [6688990101019808] +13:03:51 [ 3] [ 6] [011000] +13:03:51 [ 4] [ 12] [000020000000] +13:03:51 [ 7] [ 10] [0320060257] +13:03:51 [ 11] [ 6] [269199] +13:03:51 [ 12] [ 6] [130257] +13:03:51 [ 13] [ 4] [0320] +13:03:51 [ 14] [ 4] [4112] +13:03:51 [ 15] [ 4] [0320] +13:03:51 [ 18] [ 4] [6011] +13:03:51 [ 19] [ 3] [418] +13:03:51 [ 22] [ 3] [021] +13:03:51 [ 25] [ 2] [01] +13:03:51 [ 28] [ 9] [D00002000] +13:03:51 [ 32] [ 6] [180893] +13:03:51 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:03:51 [ 37] [ 12] [507906269199] +13:03:51 [ 41] [ 8] [0141HQBR] +13:03:51 [ 42] [ 15] [999999 ] +13:03:51 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +13:03:51 [ 49] [ 3] [418] +13:03:51 [ 52] [ 16] [68413EFB13B494C1] +13:03:51 ============================================================================ +13:03:51 + + +waiting on router queue for slot.... +13:03:51 Sending to : +13:03:51 ============================================================================ +13:03:51 ============================================================================ +13:03:51 Slot Id : <117> +13:03:51 Transaction Type : REQUEST +13:03:51 Received From : +13:03:51 ============================================================================ +13:03:51 FNo. Len. Field Value +13:03:51 ============================================================================ +13:03:51 [ 1] [ 4] [0200] +13:03:51 [ 2] [ 16] [6688990101019808] +13:03:51 [ 3] [ 6] [011000] +13:03:51 [ 4] [ 12] [000020000000] +13:03:51 [ 7] [ 10] [0320060257] +13:03:51 [ 11] [ 6] [269199] +13:03:51 [ 12] [ 6] [130257] +13:03:51 [ 13] [ 4] [0320] +13:03:51 [ 14] [ 4] [4112] +13:03:51 [ 15] [ 4] [0320] +13:03:51 [ 18] [ 4] [6011] +13:03:51 [ 19] [ 3] [418] +13:03:51 [ 22] [ 3] [021] +13:03:51 [ 25] [ 2] [01] +13:03:51 [ 28] [ 9] [D00002000] +13:03:51 [ 32] [ 6] [180893] +13:03:51 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:03:51 [ 37] [ 12] [507906269199] +13:03:51 [ 41] [ 8] [0141HQBR] +13:03:51 [ 42] [ 15] [999999 ] +13:03:51 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +13:03:51 [ 49] [ 3] [418] +13:03:51 [ 52] [ 16] [00AD773AD387722B] +13:03:51 ============================================================================ +13:03:51 + + +waiting on router queue for slot.... +13:03:51 Sending to : <0> +13:03:51 ============================================================================ +13:03:51 ============================================================================ +13:03:51 Slot Id : <117> +13:03:51 Transaction Type : RESPONSE +13:03:51 Received From : +13:03:51 ============================================================================ +13:03:51 FNo. Len. Field Value +13:03:51 ============================================================================ +13:03:51 [ 1] [ 4] [0210] +13:03:51 [ 2] [ 16] [6688990101019808] +13:03:51 [ 3] [ 6] [011000] +13:03:51 [ 4] [ 12] [000020000000] +13:03:51 [ 7] [ 10] [0320060257] +13:03:51 [ 11] [ 6] [269199] +13:03:51 [ 12] [ 6] [130257] +13:03:51 [ 13] [ 4] [0320] +13:03:51 [ 15] [ 4] [0320] +13:03:51 [ 18] [ 4] [6011] +13:03:51 [ 19] [ 3] [418] +13:03:51 [ 22] [ 3] [021] +13:03:51 [ 32] [ 6] [180893] +13:03:51 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:03:51 [ 37] [ 12] [507906269199] +13:03:51 [ 39] [ 2] [14] +13:03:51 [ 41] [ 8] [0141HQBR] +13:03:51 [ 49] [ 3] [418] +13:03:51 ============================================================================ +13:03:51 Sending to : +13:03:51 ============================================================================ +13:03:51 + + +waiting on router queue for slot.... +13:03:52 ============================================================================ +13:03:52 Slot Id : <117> +13:03:52 Transaction Type : RESPONSE +13:03:52 Received From : +13:03:52 ============================================================================ +13:03:52 FNo. Len. Field Value +13:03:52 ============================================================================ +13:03:52 [ 1] [ 4] [0210] +13:03:52 [ 2] [ 16] [6688990101019808] +13:03:52 [ 3] [ 6] [011000] +13:03:52 [ 4] [ 12] [000020000000] +13:03:52 [ 7] [ 10] [0320060257] +13:03:52 [ 11] [ 6] [269199] +13:03:52 [ 12] [ 6] [130257] +13:03:52 [ 13] [ 4] [0320] +13:03:52 [ 15] [ 4] [0320] +13:03:52 [ 18] [ 4] [6011] +13:03:52 [ 19] [ 3] [418] +13:03:52 [ 22] [ 3] [021] +13:03:52 [ 32] [ 6] [180893] +13:03:52 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:03:52 [ 37] [ 12] [507906269199] +13:03:52 [ 39] [ 2] [14] +13:03:52 [ 41] [ 8] [0141HQBR] +13:03:52 [ 49] [ 3] [418] +13:03:52 ============================================================================ +13:03:52 Calculate Source COMM Id = 2 +13:03:52 ============================================================================ +13:03:52 + + +waiting on router queue for slot.... +13:03:52 ============================================================================ +13:03:52 Slot Id : <97> +13:03:52 Transaction Type : REQUEST +13:03:52 Received From : +13:03:52 ============================================================================ +13:03:52 FNo. Len. Field Value +13:03:52 ============================================================================ +13:03:52 [ 1] [ 4] [0800] +13:03:52 [ 7] [ 10] [0320060259] +13:03:52 [ 11] [ 6] [156458] +13:03:52 [ 70] [ 3] [301] +13:03:52 ============================================================================ +13:03:52 + + +waiting on router queue for slot.... +13:03:52 Sending to : +13:03:52 ============================================================================ +13:03:52 ============================================================================ +13:03:52 Slot Id : <97> +13:03:52 Transaction Type : RESPONSE +13:03:52 Received From : +13:03:52 ============================================================================ +13:03:52 FNo. Len. Field Value +13:03:52 ============================================================================ +13:03:52 [ 1] [ 4] [0810] +13:03:52 [ 7] [ 10] [0320060259] +13:03:52 [ 11] [ 6] [156458] +13:03:52 [ 39] [ 2] [00] +13:03:52 [ 70] [ 3] [301] +13:03:52 ============================================================================ +13:03:52 Calculate Source COMM Id = 2 +13:03:52 ============================================================================ +13:03:52 + + +waiting on router queue for slot.... +13:03:54 ============================================================================ +13:03:54 Slot Id : <124> +13:03:54 Transaction Type : REQUEST +13:03:54 Received From : +13:03:54 ============================================================================ +13:03:54 FNo. Len. Field Value +13:03:54 ============================================================================ +13:03:54 [ 1] [ 4] [0800] +13:03:54 [ 2] [ 5] [02531] +13:03:54 [ 3] [ 6] [579138] +13:03:54 [ 7] [ 10] [0320060354] +13:03:54 [ 11] [ 6] [807170] +13:03:54 [ 15] [ 10] [0320060354] +13:03:54 [ 37] [ 11] [57913807170] +13:03:54 [ 70] [ 3] [001] +13:03:54 ============================================================================ +13:03:54 + + +waiting on router queue for slot.... +13:03:54 ============================================================================ +13:03:54 Slot Id : <124> +13:03:54 Transaction Type : RESPONSE +13:03:54 Received From : +13:03:54 ============================================================================ +13:03:54 FNo. Len. Field Value +13:03:54 ============================================================================ +13:03:54 [ 1] [ 4] [0810] +13:03:54 [ 7] [ 10] [0320060354] +13:03:54 [ 11] [ 6] [807170] +13:03:54 [ 15] [ 4] [0320] +13:03:54 [ 37] [ 12] [57913807170] +13:03:54 [ 39] [ 2] [00] +13:03:54 [ 70] [ 3] [001] +13:03:54 ============================================================================ +13:03:54 Sending to : +13:03:54 ============================================================================ +13:03:54 + + +waiting on router queue for slot.... +13:03:55 ============================================================================ +13:03:55 Slot Id : <111> +13:03:55 Transaction Type : REQUEST +13:03:55 Received From : +13:03:55 ============================================================================ +13:03:55 FNo. Len. Field Value +13:03:55 ============================================================================ +13:03:55 [ 1] [ 4] [0200] +13:03:55 [ 2] [ 16] [1808930200045904] +13:03:55 [ 3] [ 6] [010000] +13:03:55 [ 4] [ 12] [000100000000] +13:03:55 [ 7] [ 10] [0320130351] +13:03:55 [ 11] [ 6] [752263] +13:03:55 [ 12] [ 6] [130351] +13:03:55 [ 13] [ 4] [0320] +13:03:55 [ 15] [ 4] [0320] +13:03:55 [ 18] [ 4] [6011] +13:03:55 [ 22] [ 3] [900] +13:03:55 [ 25] [ 2] [02] +13:03:55 [ 28] [ 9] [D00002000] +13:03:55 [ 32] [ 6] [621354] +13:03:55 [ 35] [ 27] [1808930200045904=1803500628] +13:03:55 [ 37] [ 12] [507903919212] +13:03:55 [ 41] [ 8] [01010700] +13:03:55 [ 42] [ 15] [NATIVE ] +13:03:55 [ 43] [ 40] [Unitel Xaysetha LAO] +13:03:55 [ 49] [ 3] [418] +13:03:55 [ 52] [ 16] [5CBECFED64DD9182] +13:03:55 ============================================================================ +13:03:55 + + +waiting on router queue for slot.... +13:03:55 Sending to : +13:03:55 ============================================================================ +13:03:55 Sending to : +13:03:55 ============================================================================ +13:03:56 ============================================================================ +13:03:56 Slot Id : <111> +13:03:56 Transaction Type : REQUEST +13:03:56 Received From : +13:03:56 ============================================================================ +13:03:56 FNo. Len. Field Value +13:03:56 ============================================================================ +13:03:56 [ 1] [ 4] [0200] +13:03:56 [ 2] [ 16] [1808930200045904] +13:03:56 [ 3] [ 6] [010000] +13:03:56 [ 4] [ 12] [000100000000] +13:03:56 [ 7] [ 10] [0320130351] +13:03:56 [ 11] [ 6] [752263] +13:03:56 [ 12] [ 6] [130351] +13:03:56 [ 13] [ 4] [0320] +13:03:56 [ 15] [ 4] [0320] +13:03:56 [ 18] [ 4] [6011] +13:03:56 [ 22] [ 3] [900] +13:03:56 [ 25] [ 2] [02] +13:03:56 [ 28] [ 9] [D00002000] +13:03:56 [ 32] [ 6] [621354] +13:03:56 [ 35] [ 27] [1808930200045904=1803500628] +13:03:56 [ 37] [ 12] [507903919212] +13:03:56 [ 41] [ 8] [01010700] +13:03:56 [ 42] [ 15] [NATIVE ] +13:03:56 [ 43] [ 40] [Unitel Xaysetha LAO] +13:03:56 [ 49] [ 3] [418] +13:03:56 [ 52] [ 16] [5CBECFED64DD9182] +13:03:56 ============================================================================ +13:03:56 + + +waiting on router queue for slot.... +13:03:56 Sending to : +13:03:56 ============================================================================ +13:03:56 ============================================================================ +13:03:56 Slot Id : <111> +13:03:56 Transaction Type : REQUEST +13:03:56 Received From : +13:03:56 ============================================================================ +13:03:56 FNo. Len. Field Value +13:03:56 ============================================================================ +13:03:56 [ 1] [ 4] [0200] +13:03:56 [ 2] [ 16] [1808930200045904] +13:03:56 [ 3] [ 6] [010000] +13:03:56 [ 4] [ 12] [000100000000] +13:03:56 [ 7] [ 10] [0320130351] +13:03:56 [ 11] [ 6] [752263] +13:03:56 [ 12] [ 6] [130351] +13:03:56 [ 13] [ 4] [0320] +13:03:56 [ 15] [ 4] [0320] +13:03:56 [ 18] [ 4] [6011] +13:03:56 [ 22] [ 3] [900] +13:03:56 [ 25] [ 2] [02] +13:03:56 [ 28] [ 9] [D00002000] +13:03:56 [ 32] [ 6] [621354] +13:03:56 [ 35] [ 27] [1808930200045904=1803500628] +13:03:56 [ 37] [ 12] [507903919212] +13:03:56 [ 41] [ 8] [01010700] +13:03:56 [ 42] [ 15] [NATIVE ] +13:03:56 [ 43] [ 40] [Unitel Xaysetha LAO] +13:03:56 [ 49] [ 3] [418] +13:03:56 [ 52] [ 16] [B7D91061DD179D08] +13:03:56 ============================================================================ +13:03:56 + + +waiting on router queue for slot.... +13:03:56 Sending to : <2> +13:03:56 ============================================================================ +13:03:57 ============================================================================ +13:03:57 Slot Id : <111> +13:03:57 Transaction Type : RESPONSE +13:03:57 Received From : +13:03:57 ============================================================================ +13:03:57 FNo. Len. Field Value +13:03:57 ============================================================================ +13:03:57 [ 1] [ 4] [0210] +13:03:57 [ 2] [ 16] [1808930200045904] +13:03:57 [ 3] [ 6] [010000] +13:03:57 [ 4] [ 12] [000100000000] +13:03:57 [ 6] [ 12] [000100000000] +13:03:57 [ 7] [ 10] [0320130351] +13:03:57 [ 11] [ 6] [752263] +13:03:57 [ 12] [ 6] [130351] +13:03:57 [ 13] [ 4] [0320] +13:03:57 [ 18] [ 4] [6011] +13:03:57 [ 19] [ 3] [418] +13:03:57 [ 22] [ 3] [021] +13:03:57 [ 28] [ 9] [D00002000] +13:03:57 [ 32] [ 6] [621354] +13:03:57 [ 35] [ 27] [1808930200045904=1803500628] +13:03:57 [ 37] [ 12] [507903919212] +13:03:57 [ 39] [ 2] [55] +13:03:57 [ 41] [ 8] [01010700] +13:03:57 [ 49] [ 3] [418] +13:03:57 [ 51] [ 3] [418] +13:03:57 [ 52] [ 16] [B7D91061DD179D08] +13:03:57 ============================================================================ +13:03:57 Sending to : +13:03:57 ============================================================================ +13:03:57 + + +waiting on router queue for slot.... +13:03:58 ============================================================================ +13:03:58 Slot Id : <111> +13:03:58 Transaction Type : RESPONSE +13:03:58 Received From : +13:03:58 ============================================================================ +13:03:58 FNo. Len. Field Value +13:03:58 ============================================================================ +13:03:58 [ 1] [ 4] [0210] +13:03:58 [ 2] [ 16] [1808930200045904] +13:03:58 [ 3] [ 6] [010000] +13:03:58 [ 4] [ 12] [000100000000] +13:03:58 [ 6] [ 12] [000100000000] +13:03:58 [ 7] [ 10] [0320130351] +13:03:58 [ 11] [ 6] [752263] +13:03:58 [ 12] [ 6] [130351] +13:03:58 [ 13] [ 4] [0320] +13:03:58 [ 18] [ 4] [6011] +13:03:58 [ 19] [ 3] [418] +13:03:58 [ 22] [ 3] [021] +13:03:58 [ 28] [ 9] [D00002000] +13:03:58 [ 32] [ 6] [621354] +13:03:58 [ 35] [ 27] [1808930200045904=1803500628] +13:03:58 [ 37] [ 12] [507903919212] +13:03:58 [ 39] [ 2] [55] +13:03:58 [ 41] [ 8] [01010700] +13:03:58 [ 49] [ 3] [418] +13:03:58 [ 51] [ 3] [418] +13:03:58 [ 52] [ 16] [B7D91061DD179D08] +13:03:58 ============================================================================ +13:03:58 Calculate Source COMM Id = 0 +13:03:58 ============================================================================ +13:03:58 + + +waiting on router queue for slot.... +13:04:06 ============================================================================ +13:04:06 Slot Id : <161> +13:04:06 Transaction Type : REQUEST +13:04:06 Received From : +13:04:06 ============================================================================ +13:04:06 FNo. Len. Field Value +13:04:06 ============================================================================ +13:04:06 [ 1] [ 4] [0200] +13:04:06 [ 2] [ 16] [1808931800002998] +13:04:06 [ 3] [ 6] [010000] +13:04:06 [ 4] [ 12] [000100000000] +13:04:06 [ 7] [ 10] [0320130402] +13:04:06 [ 11] [ 6] [752287] +13:04:06 [ 12] [ 6] [130402] +13:04:06 [ 13] [ 4] [0320] +13:04:06 [ 15] [ 4] [0320] +13:04:06 [ 18] [ 4] [6011] +13:04:06 [ 22] [ 3] [900] +13:04:06 [ 25] [ 2] [02] +13:04:06 [ 28] [ 9] [D00002000] +13:04:06 [ 32] [ 6] [621354] +13:04:06 [ 35] [ 27] [1808931800002998=1803500364] +13:04:06 [ 37] [ 12] [507903624947] +13:04:06 [ 41] [ 8] [16001500] +13:04:06 [ 42] [ 15] [NATIVE ] +13:04:06 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:04:06 [ 49] [ 3] [418] +13:04:06 [ 52] [ 16] [E10FB08AC22B2824] +13:04:06 ============================================================================ +13:04:06 + + +waiting on router queue for slot.... +13:04:06 Sending to : +13:04:06 ============================================================================ +13:04:06 Sending to : +13:04:06 ============================================================================ +13:04:06 ============================================================================ +13:04:06 Slot Id : <161> +13:04:06 Transaction Type : REQUEST +13:04:06 Received From : +13:04:06 ============================================================================ +13:04:06 FNo. Len. Field Value +13:04:06 ============================================================================ +13:04:06 [ 1] [ 4] [0200] +13:04:06 [ 2] [ 16] [1808931800002998] +13:04:06 [ 3] [ 6] [010000] +13:04:06 [ 4] [ 12] [000100000000] +13:04:06 [ 7] [ 10] [0320130402] +13:04:06 [ 11] [ 6] [752287] +13:04:06 [ 12] [ 6] [130402] +13:04:06 [ 13] [ 4] [0320] +13:04:06 [ 15] [ 4] [0320] +13:04:06 [ 18] [ 4] [6011] +13:04:06 [ 22] [ 3] [900] +13:04:06 [ 25] [ 2] [02] +13:04:06 [ 28] [ 9] [D00002000] +13:04:06 [ 32] [ 6] [621354] +13:04:06 [ 35] [ 27] [1808931800002998=1803500364] +13:04:06 [ 37] [ 12] [507903624947] +13:04:06 [ 41] [ 8] [16001500] +13:04:06 [ 42] [ 15] [NATIVE ] +13:04:06 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:04:06 [ 49] [ 3] [418] +13:04:06 [ 52] [ 16] [E10FB08AC22B2824] +13:04:06 ============================================================================ +13:04:06 + + +waiting on router queue for slot.... +13:04:06 Sending to : +13:04:06 ============================================================================ +13:04:06 ============================================================================ +13:04:06 Slot Id : <161> +13:04:06 Transaction Type : REQUEST +13:04:06 Received From : +13:04:06 ============================================================================ +13:04:06 FNo. Len. Field Value +13:04:06 ============================================================================ +13:04:06 [ 1] [ 4] [0200] +13:04:06 [ 2] [ 16] [1808931800002998] +13:04:06 [ 3] [ 6] [010000] +13:04:06 [ 4] [ 12] [000100000000] +13:04:06 [ 7] [ 10] [0320130402] +13:04:06 [ 11] [ 6] [752287] +13:04:06 [ 12] [ 6] [130402] +13:04:06 [ 13] [ 4] [0320] +13:04:06 [ 15] [ 4] [0320] +13:04:06 [ 18] [ 4] [6011] +13:04:06 [ 22] [ 3] [900] +13:04:06 [ 25] [ 2] [02] +13:04:06 [ 28] [ 9] [D00002000] +13:04:06 [ 32] [ 6] [621354] +13:04:06 [ 35] [ 27] [1808931800002998=1803500364] +13:04:06 [ 37] [ 12] [507903624947] +13:04:06 [ 41] [ 8] [16001500] +13:04:06 [ 42] [ 15] [NATIVE ] +13:04:06 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:04:06 [ 49] [ 3] [418] +13:04:06 [ 52] [ 16] [B1938C0EBACC16B6] +13:04:06 ============================================================================ +13:04:06 + + +waiting on router queue for slot.... +13:04:06 Sending to : <2> +13:04:06 ============================================================================ +13:04:07 ============================================================================ +13:04:07 Slot Id : <80> +13:04:07 Transaction Type : REQUEST +13:04:07 Received From : +13:04:07 ============================================================================ +13:04:07 FNo. Len. Field Value +13:04:07 ============================================================================ +13:04:07 [ 1] [ 4] [0200] +13:04:07 [ 2] [ 16] [6688990107354001] +13:04:07 [ 3] [ 6] [011000] +13:04:07 [ 4] [ 12] [000100000000] +13:04:07 [ 7] [ 10] [0320130402] +13:04:07 [ 11] [ 6] [752289] +13:04:07 [ 12] [ 6] [130402] +13:04:07 [ 13] [ 4] [0320] +13:04:07 [ 15] [ 4] [0320] +13:04:07 [ 18] [ 4] [6011] +13:04:07 [ 22] [ 3] [900] +13:04:07 [ 25] [ 2] [02] +13:04:07 [ 28] [ 9] [D00002000] +13:04:07 [ 32] [ 6] [621354] +13:04:07 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:04:07 [ 37] [ 12] [507904090018] +13:04:07 [ 41] [ 8] [08000600] +13:04:07 [ 42] [ 15] [NATIVE ] +13:04:07 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +13:04:07 [ 49] [ 3] [418] +13:04:07 [ 52] [ 16] [5F7020706DC37D3C] +13:04:07 ============================================================================ +13:04:07 + + +waiting on router queue for slot.... +13:04:07 Sending to : +13:04:07 ============================================================================ +13:04:07 Sending to : +13:04:07 ============================================================================ +13:04:07 ============================================================================ +13:04:07 Slot Id : <80> +13:04:07 Transaction Type : REQUEST +13:04:07 Received From : +13:04:07 ============================================================================ +13:04:07 FNo. Len. Field Value +13:04:07 ============================================================================ +13:04:07 [ 1] [ 4] [0200] +13:04:07 [ 2] [ 16] [6688990107354001] +13:04:07 [ 3] [ 6] [011000] +13:04:07 [ 4] [ 12] [000100000000] +13:04:07 [ 7] [ 10] [0320130402] +13:04:07 [ 11] [ 6] [752289] +13:04:07 [ 12] [ 6] [130402] +13:04:07 [ 13] [ 4] [0320] +13:04:07 [ 15] [ 4] [0320] +13:04:07 [ 18] [ 4] [6011] +13:04:07 [ 22] [ 3] [900] +13:04:07 [ 25] [ 2] [02] +13:04:07 [ 28] [ 9] [D00002000] +13:04:07 [ 32] [ 6] [621354] +13:04:07 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:04:07 [ 37] [ 12] [507904090018] +13:04:07 [ 41] [ 8] [08000600] +13:04:07 [ 42] [ 15] [NATIVE ] +13:04:07 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +13:04:07 [ 49] [ 3] [418] +13:04:07 [ 52] [ 16] [5F7020706DC37D3C] +13:04:07 ============================================================================ +13:04:07 + + +waiting on router queue for slot.... +13:04:07 Sending to : +13:04:07 ============================================================================ +13:04:07 ============================================================================ +13:04:07 Slot Id : <80> +13:04:07 Transaction Type : REQUEST +13:04:07 Received From : +13:04:07 ============================================================================ +13:04:07 FNo. Len. Field Value +13:04:07 ============================================================================ +13:04:07 [ 1] [ 4] [0200] +13:04:07 [ 2] [ 16] [6688990107354001] +13:04:07 [ 3] [ 6] [011000] +13:04:07 [ 4] [ 12] [000100000000] +13:04:07 [ 7] [ 10] [0320130402] +13:04:07 [ 11] [ 6] [752289] +13:04:07 [ 12] [ 6] [130402] +13:04:07 [ 13] [ 4] [0320] +13:04:07 [ 15] [ 4] [0320] +13:04:07 [ 18] [ 4] [6011] +13:04:07 [ 22] [ 3] [900] +13:04:07 [ 25] [ 2] [02] +13:04:07 [ 28] [ 9] [D00002000] +13:04:07 [ 32] [ 6] [621354] +13:04:07 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:04:07 [ 37] [ 12] [507904090018] +13:04:07 [ 41] [ 8] [08000600] +13:04:07 [ 42] [ 15] [NATIVE ] +13:04:07 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +13:04:07 [ 49] [ 3] [418] +13:04:07 [ 52] [ 16] [ABEC4B63AB1D25E9] +13:04:07 ============================================================================ +13:04:07 + + +waiting on router queue for slot.... +13:04:07 Sending to : <4> +13:04:07 ============================================================================ +13:04:08 ============================================================================ +13:04:08 Slot Id : <80> +13:04:08 Transaction Type : RESPONSE +13:04:08 Received From : +13:04:08 ============================================================================ +13:04:08 FNo. Len. Field Value +13:04:08 ============================================================================ +13:04:08 [ 1] [ 4] [0210] +13:04:08 [ 2] [ 16] [6688990107354001] +13:04:08 [ 3] [ 6] [011000] +13:04:08 [ 4] [ 12] [000100000000] +13:04:08 [ 11] [ 6] [752289] +13:04:08 [ 12] [ 6] [130402] +13:04:08 [ 15] [ 4] [0320] +13:04:08 [ 18] [ 4] [6011] +13:04:08 [ 32] [ 6] [621354] +13:04:08 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:04:08 [ 37] [ 12] [507904090018] +13:04:08 [ 38] [ 6] [925658] +13:04:08 [ 39] [ 2] [00] +13:04:08 [ 41] [ 8] [08000600] +13:04:08 [ 49] [ 3] [418] +13:04:08 [ 54] [ 20] [1002418C001253980845] +13:04:08 ============================================================================ +13:04:08 Sending to : +13:04:08 ============================================================================ +13:04:08 + + +waiting on router queue for slot.... +13:04:10 ============================================================================ +13:04:10 Slot Id : <80> +13:04:10 Transaction Type : RESPONSE +13:04:10 Received From : +13:04:10 ============================================================================ +13:04:10 FNo. Len. Field Value +13:04:10 ============================================================================ +13:04:10 [ 1] [ 4] [0210] +13:04:10 [ 2] [ 16] [6688990107354001] +13:04:10 [ 3] [ 6] [011000] +13:04:10 [ 4] [ 12] [000100000000] +13:04:10 [ 11] [ 6] [752289] +13:04:10 [ 12] [ 6] [130402] +13:04:10 [ 15] [ 4] [0320] +13:04:10 [ 18] [ 4] [6011] +13:04:10 [ 32] [ 6] [621354] +13:04:10 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:04:10 [ 37] [ 12] [507904090018] +13:04:10 [ 38] [ 6] [925658] +13:04:10 [ 39] [ 2] [00] +13:04:10 [ 41] [ 8] [08000600] +13:04:10 [ 49] [ 3] [418] +13:04:10 [ 54] [ 20] [1002418C001253980845] +13:04:10 ============================================================================ +13:04:10 Calculate Source COMM Id = 0 +13:04:10 ============================================================================ +13:04:10 + + +waiting on router queue for slot.... +13:04:11 ============================================================================ +13:04:11 Slot Id : <147> +13:04:11 Transaction Type : REQUEST +13:04:11 Received From : +13:04:11 ============================================================================ +13:04:11 FNo. Len. Field Value +13:04:11 ============================================================================ +13:04:11 [ 1] [ 4] [0200] +13:04:11 [ 2] [ 16] [1808930200045904] +13:04:11 [ 3] [ 6] [010000] +13:04:11 [ 4] [ 12] [000100000000] +13:04:11 [ 7] [ 10] [0320130406] +13:04:11 [ 11] [ 6] [752302] +13:04:11 [ 12] [ 6] [130406] +13:04:11 [ 13] [ 4] [0320] +13:04:11 [ 15] [ 4] [0320] +13:04:11 [ 18] [ 4] [6011] +13:04:11 [ 22] [ 3] [900] +13:04:11 [ 25] [ 2] [02] +13:04:11 [ 28] [ 9] [D00002000] +13:04:11 [ 32] [ 6] [621354] +13:04:11 [ 35] [ 27] [1808930200045904=1803500628] +13:04:11 [ 37] [ 12] [507903919214] +13:04:11 [ 41] [ 8] [01010700] +13:04:11 [ 42] [ 15] [NATIVE ] +13:04:11 [ 43] [ 40] [Unitel Xaysetha LAO] +13:04:11 [ 49] [ 3] [418] +13:04:11 [ 52] [ 16] [5CBECFED64DD9182] +13:04:11 ============================================================================ +13:04:11 + + +waiting on router queue for slot.... +13:04:11 Sending to : +13:04:11 ============================================================================ +13:04:11 Sending to : +13:04:11 ============================================================================ +13:04:11 ============================================================================ +13:04:11 Slot Id : <147> +13:04:11 Transaction Type : REQUEST +13:04:11 Received From : +13:04:11 ============================================================================ +13:04:11 FNo. Len. Field Value +13:04:11 ============================================================================ +13:04:11 [ 1] [ 4] [0200] +13:04:11 [ 2] [ 16] [1808930200045904] +13:04:11 [ 3] [ 6] [010000] +13:04:11 [ 4] [ 12] [000100000000] +13:04:11 [ 7] [ 10] [0320130406] +13:04:11 [ 11] [ 6] [752302] +13:04:11 [ 12] [ 6] [130406] +13:04:11 [ 13] [ 4] [0320] +13:04:11 [ 15] [ 4] [0320] +13:04:11 [ 18] [ 4] [6011] +13:04:11 [ 22] [ 3] [900] +13:04:11 [ 25] [ 2] [02] +13:04:11 [ 28] [ 9] [D00002000] +13:04:11 [ 32] [ 6] [621354] +13:04:11 [ 35] [ 27] [1808930200045904=1803500628] +13:04:11 [ 37] [ 12] [507903919214] +13:04:11 [ 41] [ 8] [01010700] +13:04:11 [ 42] [ 15] [NATIVE ] +13:04:11 [ 43] [ 40] [Unitel Xaysetha LAO] +13:04:11 [ 49] [ 3] [418] +13:04:11 [ 52] [ 16] [5CBECFED64DD9182] +13:04:11 ============================================================================ +13:04:11 + + +waiting on router queue for slot.... +13:04:11 Sending to : +13:04:11 ============================================================================ +13:04:11 ============================================================================ +13:04:11 Slot Id : <147> +13:04:11 Transaction Type : REQUEST +13:04:11 Received From : +13:04:11 ============================================================================ +13:04:11 FNo. Len. Field Value +13:04:11 ============================================================================ +13:04:11 [ 1] [ 4] [0200] +13:04:11 [ 2] [ 16] [1808930200045904] +13:04:11 [ 3] [ 6] [010000] +13:04:11 [ 4] [ 12] [000100000000] +13:04:11 [ 7] [ 10] [0320130406] +13:04:11 [ 11] [ 6] [752302] +13:04:11 [ 12] [ 6] [130406] +13:04:11 [ 13] [ 4] [0320] +13:04:11 [ 15] [ 4] [0320] +13:04:11 [ 18] [ 4] [6011] +13:04:11 [ 22] [ 3] [900] +13:04:11 [ 25] [ 2] [02] +13:04:11 [ 28] [ 9] [D00002000] +13:04:11 [ 32] [ 6] [621354] +13:04:11 [ 35] [ 27] [1808930200045904=1803500628] +13:04:11 [ 37] [ 12] [507903919214] +13:04:11 [ 41] [ 8] [01010700] +13:04:11 [ 42] [ 15] [NATIVE ] +13:04:11 [ 43] [ 40] [Unitel Xaysetha LAO] +13:04:11 [ 49] [ 3] [418] +13:04:11 [ 52] [ 16] [B7D91061DD179D08] +13:04:11 ============================================================================ +13:04:11 + + +waiting on router queue for slot.... +13:04:11 Sending to : <2> +13:04:11 ============================================================================ +13:04:11 ============================================================================ +13:04:11 Slot Id : <161> +13:04:11 Transaction Type : RESPONSE +13:04:11 Received From : +13:04:11 ============================================================================ +13:04:11 FNo. Len. Field Value +13:04:11 ============================================================================ +13:04:11 [ 1] [ 4] [0210] +13:04:11 [ 2] [ 16] [1808931800002998] +13:04:11 [ 3] [ 6] [010000] +13:04:11 [ 4] [ 12] [000100000000] +13:04:11 [ 6] [ 12] [000100000000] +13:04:11 [ 7] [ 10] [0320130402] +13:04:11 [ 11] [ 6] [752287] +13:04:11 [ 12] [ 6] [130402] +13:04:11 [ 13] [ 4] [0320] +13:04:11 [ 18] [ 4] [6011] +13:04:11 [ 19] [ 3] [418] +13:04:11 [ 22] [ 3] [021] +13:04:11 [ 32] [ 6] [621354] +13:04:11 [ 35] [ 27] [1808931800002998=1803500364] +13:04:11 [ 37] [ 12] [507903624947] +13:04:11 [ 38] [ 6] [752287] +13:04:11 [ 39] [ 2] [00] +13:04:11 [ 41] [ 8] [16001500] +13:04:11 [ 49] [ 3] [418] +13:04:11 [ 52] [ 16] [B1938C0EBACC16B6] +13:04:11 [ 54] [ 20] [1001418C000107597300] +13:04:11 ============================================================================ +13:04:11 Sending to : +13:04:11 ============================================================================ +13:04:11 + + +waiting on router queue for slot.... +13:04:12 ============================================================================ +13:04:12 Slot Id : <147> +13:04:12 Transaction Type : RESPONSE +13:04:12 Received From : +13:04:12 ============================================================================ +13:04:12 FNo. Len. Field Value +13:04:12 ============================================================================ +13:04:12 [ 1] [ 4] [0210] +13:04:12 [ 2] [ 16] [1808930200045904] +13:04:12 [ 3] [ 6] [010000] +13:04:12 [ 4] [ 12] [000100000000] +13:04:12 [ 6] [ 12] [000100000000] +13:04:12 [ 7] [ 10] [0320130406] +13:04:12 [ 11] [ 6] [752302] +13:04:12 [ 12] [ 6] [130406] +13:04:12 [ 13] [ 4] [0320] +13:04:12 [ 18] [ 4] [6011] +13:04:12 [ 19] [ 3] [418] +13:04:12 [ 22] [ 3] [021] +13:04:12 [ 28] [ 9] [D00002000] +13:04:12 [ 32] [ 6] [621354] +13:04:12 [ 35] [ 27] [1808930200045904=1803500628] +13:04:12 [ 37] [ 12] [507903919214] +13:04:12 [ 39] [ 2] [55] +13:04:12 [ 41] [ 8] [01010700] +13:04:12 [ 49] [ 3] [418] +13:04:12 [ 51] [ 3] [418] +13:04:12 [ 52] [ 16] [B7D91061DD179D08] +13:04:12 ============================================================================ +13:04:12 Sending to : +13:04:12 ============================================================================ +13:04:12 + + +waiting on router queue for slot.... +13:04:13 ============================================================================ +13:04:13 Slot Id : <161> +13:04:13 Transaction Type : RESPONSE +13:04:13 Received From : +13:04:13 ============================================================================ +13:04:13 FNo. Len. Field Value +13:04:13 ============================================================================ +13:04:13 [ 1] [ 4] [0210] +13:04:13 [ 2] [ 16] [1808931800002998] +13:04:13 [ 3] [ 6] [010000] +13:04:13 [ 4] [ 12] [000100000000] +13:04:13 [ 6] [ 12] [000100000000] +13:04:13 [ 7] [ 10] [0320130402] +13:04:13 [ 11] [ 6] [752287] +13:04:13 [ 12] [ 6] [130402] +13:04:13 [ 13] [ 4] [0320] +13:04:13 [ 18] [ 4] [6011] +13:04:13 [ 19] [ 3] [418] +13:04:13 [ 22] [ 3] [021] +13:04:13 [ 32] [ 6] [621354] +13:04:13 [ 35] [ 27] [1808931800002998=1803500364] +13:04:13 [ 37] [ 12] [507903624947] +13:04:13 [ 38] [ 6] [752287] +13:04:13 [ 39] [ 2] [00] +13:04:13 [ 41] [ 8] [16001500] +13:04:13 [ 49] [ 3] [418] +13:04:13 [ 52] [ 16] [B1938C0EBACC16B6] +13:04:13 [ 54] [ 20] [1001418C000107597300] +13:04:13 ============================================================================ +13:04:13 Calculate Source COMM Id = 0 +13:04:13 ============================================================================ +13:04:13 + + +waiting on router queue for slot.... +13:04:14 ============================================================================ +13:04:14 Slot Id : <147> +13:04:14 Transaction Type : RESPONSE +13:04:14 Received From : +13:04:14 ============================================================================ +13:04:14 FNo. Len. Field Value +13:04:14 ============================================================================ +13:04:14 [ 1] [ 4] [0210] +13:04:14 [ 2] [ 16] [1808930200045904] +13:04:14 [ 3] [ 6] [010000] +13:04:14 [ 4] [ 12] [000100000000] +13:04:14 [ 6] [ 12] [000100000000] +13:04:14 [ 7] [ 10] [0320130406] +13:04:14 [ 11] [ 6] [752302] +13:04:14 [ 12] [ 6] [130406] +13:04:14 [ 13] [ 4] [0320] +13:04:14 [ 18] [ 4] [6011] +13:04:14 [ 19] [ 3] [418] +13:04:14 [ 22] [ 3] [021] +13:04:14 [ 28] [ 9] [D00002000] +13:04:14 [ 32] [ 6] [621354] +13:04:14 [ 35] [ 27] [1808930200045904=1803500628] +13:04:14 [ 37] [ 12] [507903919214] +13:04:14 [ 39] [ 2] [55] +13:04:14 [ 41] [ 8] [01010700] +13:04:14 [ 49] [ 3] [418] +13:04:14 [ 51] [ 3] [418] +13:04:14 [ 52] [ 16] [B7D91061DD179D08] +13:04:14 ============================================================================ +13:04:14 Calculate Source COMM Id = 0 +13:04:14 ============================================================================ +13:04:14 + + +waiting on router queue for slot.... +13:04:24 ============================================================================ +13:04:24 Slot Id : <123> +13:04:24 Transaction Type : REQUEST +13:04:24 Received From : +13:04:24 ============================================================================ +13:04:24 FNo. Len. Field Value +13:04:24 ============================================================================ +13:04:24 [ 1] [ 4] [0800] +13:04:24 [ 7] [ 10] [0320060331] +13:04:24 [ 11] [ 6] [156459] +13:04:24 [ 70] [ 3] [301] +13:04:24 ============================================================================ +13:04:24 + + +waiting on router queue for slot.... +13:04:24 Sending to : +13:04:24 ============================================================================ +13:04:24 ============================================================================ +13:04:24 Slot Id : <123> +13:04:24 Transaction Type : RESPONSE +13:04:24 Received From : +13:04:24 ============================================================================ +13:04:24 FNo. Len. Field Value +13:04:24 ============================================================================ +13:04:24 [ 1] [ 4] [0810] +13:04:24 [ 7] [ 10] [0320060331] +13:04:24 [ 11] [ 6] [156459] +13:04:24 [ 39] [ 2] [00] +13:04:24 [ 70] [ 3] [301] +13:04:24 ============================================================================ +13:04:24 Calculate Source COMM Id = 2 +13:04:24 ============================================================================ +13:04:24 + + +waiting on router queue for slot.... +13:04:32 ============================================================================ +13:04:32 Slot Id : <122> +13:04:32 Transaction Type : REQUEST +13:04:32 Received From : +13:04:32 ============================================================================ +13:04:32 FNo. Len. Field Value +13:04:32 ============================================================================ +13:04:32 [ 1] [ 4] [0200] +13:04:32 [ 2] [ 16] [1808930200045904] +13:04:32 [ 3] [ 6] [010000] +13:04:32 [ 4] [ 12] [000100000000] +13:04:32 [ 7] [ 10] [0320130428] +13:04:32 [ 11] [ 6] [752389] +13:04:32 [ 12] [ 6] [130428] +13:04:32 [ 13] [ 4] [0320] +13:04:32 [ 15] [ 4] [0320] +13:04:32 [ 18] [ 4] [6011] +13:04:32 [ 22] [ 3] [900] +13:04:32 [ 25] [ 2] [02] +13:04:32 [ 28] [ 9] [D00002000] +13:04:32 [ 32] [ 6] [621354] +13:04:32 [ 35] [ 27] [1808930200045904=1803500628] +13:04:32 [ 37] [ 12] [507903919216] +13:04:32 [ 41] [ 8] [01010700] +13:04:32 [ 42] [ 15] [NATIVE ] +13:04:32 [ 43] [ 40] [Unitel Xaysetha LAO] +13:04:32 [ 49] [ 3] [418] +13:04:32 [ 52] [ 16] [BED9F63E8601CF95] +13:04:32 ============================================================================ +13:04:32 + + +waiting on router queue for slot.... +13:04:32 Sending to : +13:04:32 ============================================================================ +13:04:32 Sending to : +13:04:32 ============================================================================ +13:04:32 ============================================================================ +13:04:32 Slot Id : <122> +13:04:32 Transaction Type : REQUEST +13:04:32 Received From : +13:04:32 ============================================================================ +13:04:32 FNo. Len. Field Value +13:04:32 ============================================================================ +13:04:32 [ 1] [ 4] [0200] +13:04:32 [ 2] [ 16] [1808930200045904] +13:04:32 [ 3] [ 6] [010000] +13:04:32 [ 4] [ 12] [000100000000] +13:04:32 [ 7] [ 10] [0320130428] +13:04:32 [ 11] [ 6] [752389] +13:04:32 [ 12] [ 6] [130428] +13:04:32 [ 13] [ 4] [0320] +13:04:32 [ 15] [ 4] [0320] +13:04:32 [ 18] [ 4] [6011] +13:04:32 [ 22] [ 3] [900] +13:04:32 [ 25] [ 2] [02] +13:04:32 [ 28] [ 9] [D00002000] +13:04:32 [ 32] [ 6] [621354] +13:04:32 [ 35] [ 27] [1808930200045904=1803500628] +13:04:32 [ 37] [ 12] [507903919216] +13:04:32 [ 41] [ 8] [01010700] +13:04:32 [ 42] [ 15] [NATIVE ] +13:04:32 [ 43] [ 40] [Unitel Xaysetha LAO] +13:04:32 [ 49] [ 3] [418] +13:04:32 [ 52] [ 16] [BED9F63E8601CF95] +13:04:32 ============================================================================ +13:04:32 + + +waiting on router queue for slot.... +13:04:32 Sending to : +13:04:32 ============================================================================ +13:04:32 ============================================================================ +13:04:32 Slot Id : <122> +13:04:32 Transaction Type : REQUEST +13:04:32 Received From : +13:04:32 ============================================================================ +13:04:32 FNo. Len. Field Value +13:04:32 ============================================================================ +13:04:32 [ 1] [ 4] [0200] +13:04:32 [ 2] [ 16] [1808930200045904] +13:04:32 [ 3] [ 6] [010000] +13:04:32 [ 4] [ 12] [000100000000] +13:04:32 [ 7] [ 10] [0320130428] +13:04:32 [ 11] [ 6] [752389] +13:04:32 [ 12] [ 6] [130428] +13:04:32 [ 13] [ 4] [0320] +13:04:32 [ 15] [ 4] [0320] +13:04:32 [ 18] [ 4] [6011] +13:04:32 [ 22] [ 3] [900] +13:04:32 [ 25] [ 2] [02] +13:04:32 [ 28] [ 9] [D00002000] +13:04:32 [ 32] [ 6] [621354] +13:04:32 [ 35] [ 27] [1808930200045904=1803500628] +13:04:32 [ 37] [ 12] [507903919216] +13:04:32 [ 41] [ 8] [01010700] +13:04:32 [ 42] [ 15] [NATIVE ] +13:04:32 [ 43] [ 40] [Unitel Xaysetha LAO] +13:04:32 [ 49] [ 3] [418] +13:04:32 [ 52] [ 16] [EF1111796B9109D5] +13:04:32 ============================================================================ +13:04:32 + + +waiting on router queue for slot.... +13:04:32 Sending to : <2> +13:04:32 ============================================================================ +13:04:36 ============================================================================ +13:04:36 Slot Id : <122> +13:04:36 Transaction Type : RESPONSE +13:04:36 Received From : +13:04:36 ============================================================================ +13:04:36 FNo. Len. Field Value +13:04:36 ============================================================================ +13:04:36 [ 1] [ 4] [0210] +13:04:36 [ 2] [ 16] [1808930200045904] +13:04:36 [ 3] [ 6] [010000] +13:04:36 [ 4] [ 12] [000100000000] +13:04:36 [ 6] [ 12] [000100000000] +13:04:36 [ 7] [ 10] [0320130428] +13:04:36 [ 11] [ 6] [752389] +13:04:36 [ 12] [ 6] [130428] +13:04:36 [ 13] [ 4] [0320] +13:04:36 [ 18] [ 4] [6011] +13:04:36 [ 19] [ 3] [418] +13:04:36 [ 22] [ 3] [021] +13:04:36 [ 32] [ 6] [621354] +13:04:36 [ 35] [ 27] [1808930200045904=1803500628] +13:04:36 [ 37] [ 12] [507903919216] +13:04:36 [ 38] [ 6] [752389] +13:04:36 [ 39] [ 2] [00] +13:04:36 [ 41] [ 8] [01010700] +13:04:36 [ 49] [ 3] [418] +13:04:36 [ 52] [ 16] [EF1111796B9109D5] +13:04:36 [ 54] [ 20] [1001418C003859133800] +13:04:36 ============================================================================ +13:04:36 Sending to : +13:04:36 ============================================================================ +13:04:36 + + +waiting on router queue for slot.... +13:04:38 ============================================================================ +13:04:38 Slot Id : <122> +13:04:38 Transaction Type : RESPONSE +13:04:38 Received From : +13:04:38 ============================================================================ +13:04:38 FNo. Len. Field Value +13:04:38 ============================================================================ +13:04:38 [ 1] [ 4] [0210] +13:04:38 [ 2] [ 16] [1808930200045904] +13:04:38 [ 3] [ 6] [010000] +13:04:38 [ 4] [ 12] [000100000000] +13:04:38 [ 6] [ 12] [000100000000] +13:04:38 [ 7] [ 10] [0320130428] +13:04:38 [ 11] [ 6] [752389] +13:04:38 [ 12] [ 6] [130428] +13:04:38 [ 13] [ 4] [0320] +13:04:38 [ 18] [ 4] [6011] +13:04:38 [ 19] [ 3] [418] +13:04:38 [ 22] [ 3] [021] +13:04:38 [ 32] [ 6] [621354] +13:04:38 [ 35] [ 27] [1808930200045904=1803500628] +13:04:38 [ 37] [ 12] [507903919216] +13:04:38 [ 38] [ 6] [752389] +13:04:38 [ 39] [ 2] [00] +13:04:38 [ 41] [ 8] [01010700] +13:04:38 [ 49] [ 3] [418] +13:04:38 [ 52] [ 16] [EF1111796B9109D5] +13:04:38 [ 54] [ 20] [1001418C003859133800] +13:04:38 ============================================================================ +13:04:38 Calculate Source COMM Id = 0 +13:04:38 ============================================================================ +13:04:38 + + +waiting on router queue for slot.... +13:04:41 ============================================================================ +13:04:41 Slot Id : <132> +13:04:41 Transaction Type : REQUEST +13:04:41 Received From : +13:04:41 ============================================================================ +13:04:41 FNo. Len. Field Value +13:04:41 ============================================================================ +13:04:41 [ 1] [ 4] [0200] +13:04:41 [ 2] [ 16] [6688990040119149] +13:04:41 [ 3] [ 6] [012000] +13:04:41 [ 4] [ 12] [000080000000] +13:04:41 [ 7] [ 10] [0320130436] +13:04:41 [ 11] [ 6] [752426] +13:04:41 [ 12] [ 6] [130436] +13:04:41 [ 13] [ 4] [0320] +13:04:41 [ 15] [ 4] [0320] +13:04:41 [ 18] [ 4] [6011] +13:04:41 [ 22] [ 3] [900] +13:04:41 [ 25] [ 2] [02] +13:04:41 [ 28] [ 9] [D00002000] +13:04:41 [ 32] [ 6] [621354] +13:04:41 [ 35] [ 37] [6688990040119149=98031261757906600000] +13:04:41 [ 37] [ 12] [507903325002] +13:04:41 [ 41] [ 8] [13001200] +13:04:41 [ 42] [ 15] [NATIVE ] +13:04:41 [ 43] [ 40] [Mongkot-Laos Hospital Paek LAO] +13:04:41 [ 49] [ 3] [418] +13:04:41 [ 52] [ 16] [53BFD17ABE1071D5] +13:04:41 ============================================================================ +13:04:41 + + +waiting on router queue for slot.... +13:04:41 Sending to : +13:04:41 ============================================================================ +13:04:41 Sending to : +13:04:41 ============================================================================ +13:04:41 ============================================================================ +13:04:41 Slot Id : <132> +13:04:41 Transaction Type : REQUEST +13:04:41 Received From : +13:04:41 ============================================================================ +13:04:41 FNo. Len. Field Value +13:04:41 ============================================================================ +13:04:41 [ 1] [ 4] [0200] +13:04:41 [ 2] [ 16] [6688990040119149] +13:04:41 [ 3] [ 6] [012000] +13:04:41 [ 4] [ 12] [000080000000] +13:04:41 [ 7] [ 10] [0320130436] +13:04:41 [ 11] [ 6] [752426] +13:04:41 [ 12] [ 6] [130436] +13:04:41 [ 13] [ 4] [0320] +13:04:41 [ 15] [ 4] [0320] +13:04:41 [ 18] [ 4] [6011] +13:04:41 [ 22] [ 3] [900] +13:04:41 [ 25] [ 2] [02] +13:04:41 [ 28] [ 9] [D00002000] +13:04:41 [ 32] [ 6] [621354] +13:04:41 [ 35] [ 37] [6688990040119149=98031261757906600000] +13:04:41 [ 37] [ 12] [507903325002] +13:04:41 [ 41] [ 8] [13001200] +13:04:41 [ 42] [ 15] [NATIVE ] +13:04:41 [ 43] [ 40] [Mongkot-Laos Hospital Paek LAO] +13:04:41 [ 49] [ 3] [418] +13:04:41 [ 52] [ 16] [53BFD17ABE1071D5] +13:04:41 ============================================================================ +13:04:41 + + +waiting on router queue for slot.... +13:04:41 Sending to : +13:04:41 ============================================================================ +13:04:41 ============================================================================ +13:04:41 Slot Id : <132> +13:04:41 Transaction Type : REQUEST +13:04:41 Received From : +13:04:41 ============================================================================ +13:04:41 FNo. Len. Field Value +13:04:41 ============================================================================ +13:04:41 [ 1] [ 4] [0200] +13:04:41 [ 2] [ 16] [6688990040119149] +13:04:41 [ 3] [ 6] [012000] +13:04:41 [ 4] [ 12] [000080000000] +13:04:41 [ 7] [ 10] [0320130436] +13:04:41 [ 11] [ 6] [752426] +13:04:41 [ 12] [ 6] [130436] +13:04:41 [ 13] [ 4] [0320] +13:04:41 [ 15] [ 4] [0320] +13:04:41 [ 18] [ 4] [6011] +13:04:41 [ 22] [ 3] [900] +13:04:41 [ 25] [ 2] [02] +13:04:41 [ 28] [ 9] [D00002000] +13:04:41 [ 32] [ 6] [621354] +13:04:41 [ 35] [ 37] [6688990040119149=98031261757906600000] +13:04:41 [ 37] [ 12] [507903325002] +13:04:41 [ 41] [ 8] [13001200] +13:04:41 [ 42] [ 15] [NATIVE ] +13:04:41 [ 43] [ 40] [Mongkot-Laos Hospital Paek LAO] +13:04:41 [ 49] [ 3] [418] +13:04:41 [ 52] [ 16] [E188C0239000DA55] +13:04:41 ============================================================================ +13:04:41 + + +waiting on router queue for slot.... +13:04:41 Sending to : <4> +13:04:41 ============================================================================ +13:04:42 ============================================================================ +13:04:42 Slot Id : <162> +13:04:42 Transaction Type : REQUEST +13:04:42 Received From : +13:04:42 ============================================================================ +13:04:42 FNo. Len. Field Value +13:04:42 ============================================================================ +13:04:42 [ 1] [ 4] [0200] +13:04:42 [ 2] [ 16] [6688990101019808] +13:04:42 [ 3] [ 6] [301000] +13:04:42 [ 7] [ 10] [0320060349] +13:04:42 [ 11] [ 6] [269201] +13:04:42 [ 12] [ 6] [130349] +13:04:42 [ 13] [ 4] [0320] +13:04:42 [ 14] [ 4] [4112] +13:04:42 [ 15] [ 4] [0320] +13:04:42 [ 18] [ 4] [6011] +13:04:42 [ 19] [ 3] [418] +13:04:42 [ 22] [ 3] [021] +13:04:42 [ 25] [ 2] [01] +13:04:42 [ 32] [ 6] [180893] +13:04:42 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:04:42 [ 37] [ 12] [507906269201] +13:04:42 [ 41] [ 8] [0141HQBR] +13:04:42 [ 42] [ 15] [999999 ] +13:04:42 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +13:04:42 [ 49] [ 3] [418] +13:04:42 [ 52] [ 16] [68413EFB13B494C1] +13:04:42 ============================================================================ +13:04:42 + + +waiting on router queue for slot.... +13:04:42 Sending to : +13:04:42 ============================================================================ +13:04:42 Sending to : +13:04:42 ============================================================================ +13:04:42 ============================================================================ +13:04:42 Slot Id : <162> +13:04:42 Transaction Type : REQUEST +13:04:42 Received From : +13:04:42 ============================================================================ +13:04:42 FNo. Len. Field Value +13:04:42 ============================================================================ +13:04:42 [ 1] [ 4] [0200] +13:04:42 [ 2] [ 16] [6688990101019808] +13:04:42 [ 3] [ 6] [301000] +13:04:42 [ 7] [ 10] [0320060349] +13:04:42 [ 11] [ 6] [269201] +13:04:42 [ 12] [ 6] [130349] +13:04:42 [ 13] [ 4] [0320] +13:04:42 [ 14] [ 4] [4112] +13:04:42 [ 15] [ 4] [0320] +13:04:42 [ 18] [ 4] [6011] +13:04:42 [ 19] [ 3] [418] +13:04:42 [ 22] [ 3] [021] +13:04:42 [ 25] [ 2] [01] +13:04:42 [ 32] [ 6] [180893] +13:04:42 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:04:42 [ 37] [ 12] [507906269201] +13:04:42 [ 41] [ 8] [0141HQBR] +13:04:42 [ 42] [ 15] [999999 ] +13:04:42 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +13:04:42 [ 49] [ 3] [418] +13:04:42 [ 52] [ 16] [68413EFB13B494C1] +13:04:42 ============================================================================ +13:04:42 + + +waiting on router queue for slot.... +13:04:42 Sending to : +13:04:42 ============================================================================ +13:04:42 ============================================================================ +13:04:42 Slot Id : <162> +13:04:42 Transaction Type : REQUEST +13:04:42 Received From : +13:04:42 ============================================================================ +13:04:42 FNo. Len. Field Value +13:04:42 ============================================================================ +13:04:42 [ 1] [ 4] [0200] +13:04:42 [ 2] [ 16] [6688990101019808] +13:04:42 [ 3] [ 6] [301000] +13:04:42 [ 7] [ 10] [0320060349] +13:04:42 [ 11] [ 6] [269201] +13:04:42 [ 12] [ 6] [130349] +13:04:42 [ 13] [ 4] [0320] +13:04:42 [ 14] [ 4] [4112] +13:04:42 [ 15] [ 4] [0320] +13:04:42 [ 18] [ 4] [6011] +13:04:42 [ 19] [ 3] [418] +13:04:42 [ 22] [ 3] [021] +13:04:42 [ 25] [ 2] [01] +13:04:42 [ 32] [ 6] [180893] +13:04:42 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:04:42 [ 37] [ 12] [507906269201] +13:04:42 [ 41] [ 8] [0141HQBR] +13:04:42 [ 42] [ 15] [999999 ] +13:04:42 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +13:04:42 [ 49] [ 3] [418] +13:04:42 [ 52] [ 16] [00AD773AD387722B] +13:04:42 ============================================================================ +13:04:42 + + +waiting on router queue for slot.... +13:04:42 Sending to : <0> +13:04:42 ============================================================================ +13:04:42 ============================================================================ +13:04:42 Slot Id : <162> +13:04:42 Transaction Type : RESPONSE +13:04:42 Received From : +13:04:42 ============================================================================ +13:04:42 FNo. Len. Field Value +13:04:42 ============================================================================ +13:04:42 [ 1] [ 4] [0210] +13:04:42 [ 2] [ 16] [6688990101019808] +13:04:42 [ 3] [ 6] [301000] +13:04:42 [ 4] [ 12] [000000000000] +13:04:42 [ 7] [ 10] [0320060349] +13:04:42 [ 11] [ 6] [269201] +13:04:42 [ 12] [ 6] [130349] +13:04:42 [ 13] [ 4] [0320] +13:04:42 [ 15] [ 4] [0320] +13:04:42 [ 18] [ 4] [6011] +13:04:42 [ 19] [ 3] [418] +13:04:42 [ 22] [ 3] [021] +13:04:42 [ 32] [ 6] [180893] +13:04:42 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:04:42 [ 37] [ 12] [507906269201] +13:04:42 [ 39] [ 2] [14] +13:04:42 [ 41] [ 8] [0141HQBR] +13:04:42 [ 49] [ 3] [418] +13:04:42 ============================================================================ +13:04:42 Sending to : +13:04:42 ============================================================================ +13:04:42 + + +waiting on router queue for slot.... +13:04:42 ============================================================================ +13:04:42 Slot Id : <132> +13:04:42 Transaction Type : RESPONSE +13:04:42 Received From : +13:04:42 ============================================================================ +13:04:42 FNo. Len. Field Value +13:04:42 ============================================================================ +13:04:42 [ 1] [ 4] [0210] +13:04:42 [ 2] [ 16] [6688990040119149] +13:04:42 [ 3] [ 6] [012000] +13:04:42 [ 4] [ 12] [000080000000] +13:04:42 [ 11] [ 6] [752426] +13:04:42 [ 12] [ 6] [130436] +13:04:42 [ 15] [ 4] [0320] +13:04:42 [ 18] [ 4] [6011] +13:04:42 [ 32] [ 6] [621354] +13:04:42 [ 35] [ 37] [6688990040119149=98031261757906600000] +13:04:42 [ 37] [ 12] [507903325002] +13:04:42 [ 38] [ 6] [098185] +13:04:42 [ 39] [ 2] [00] +13:04:42 [ 41] [ 8] [13001200] +13:04:42 [ 49] [ 3] [418] +13:04:42 [ 54] [ 20] [2002418C004404460634] +13:04:42 ============================================================================ +13:04:42 Sending to : +13:04:42 ============================================================================ +13:04:42 + + +waiting on router queue for slot.... +13:04:43 ============================================================================ +13:04:43 Slot Id : <162> +13:04:43 Transaction Type : RESPONSE +13:04:43 Received From : +13:04:43 ============================================================================ +13:04:43 FNo. Len. Field Value +13:04:43 ============================================================================ +13:04:43 [ 1] [ 4] [0210] +13:04:43 [ 2] [ 16] [6688990101019808] +13:04:43 [ 3] [ 6] [301000] +13:04:43 [ 4] [ 12] [000000000000] +13:04:43 [ 7] [ 10] [0320060349] +13:04:43 [ 11] [ 6] [269201] +13:04:43 [ 12] [ 6] [130349] +13:04:43 [ 13] [ 4] [0320] +13:04:43 [ 15] [ 4] [0320] +13:04:43 [ 18] [ 4] [6011] +13:04:43 [ 19] [ 3] [418] +13:04:43 [ 22] [ 3] [021] +13:04:43 [ 32] [ 6] [180893] +13:04:43 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:04:43 [ 37] [ 12] [507906269201] +13:04:43 [ 39] [ 2] [14] +13:04:43 [ 41] [ 8] [0141HQBR] +13:04:43 [ 49] [ 3] [418] +13:04:43 ============================================================================ +13:04:43 Calculate Source COMM Id = 2 +13:04:43 ============================================================================ +13:04:43 + + +waiting on router queue for slot.... +13:04:44 ============================================================================ +13:04:44 Slot Id : <132> +13:04:44 Transaction Type : RESPONSE +13:04:44 Received From : +13:04:44 ============================================================================ +13:04:44 FNo. Len. Field Value +13:04:44 ============================================================================ +13:04:44 [ 1] [ 4] [0210] +13:04:44 [ 2] [ 16] [6688990040119149] +13:04:44 [ 3] [ 6] [012000] +13:04:44 [ 4] [ 12] [000080000000] +13:04:44 [ 11] [ 6] [752426] +13:04:44 [ 12] [ 6] [130436] +13:04:44 [ 15] [ 4] [0320] +13:04:44 [ 18] [ 4] [6011] +13:04:44 [ 32] [ 6] [621354] +13:04:44 [ 35] [ 37] [6688990040119149=98031261757906600000] +13:04:44 [ 37] [ 12] [507903325002] +13:04:44 [ 38] [ 6] [098185] +13:04:44 [ 39] [ 2] [00] +13:04:44 [ 41] [ 8] [13001200] +13:04:44 [ 49] [ 3] [418] +13:04:44 [ 54] [ 20] [2002418C004404460634] +13:04:44 ============================================================================ +13:04:44 Calculate Source COMM Id = 0 +13:04:44 ============================================================================ +13:04:44 + + +waiting on router queue for slot.... +13:04:55 ============================================================================ +13:04:55 Slot Id : <145> +13:04:55 Transaction Type : REQUEST +13:04:55 Received From : +13:04:55 ============================================================================ +13:04:55 FNo. Len. Field Value +13:04:55 ============================================================================ +13:04:55 [ 1] [ 4] [0800] +13:04:55 [ 7] [ 10] [0320061242] +13:04:55 [ 11] [ 6] [013311] +13:04:55 [ 37] [ 12] [57913013311] +13:04:55 [ 70] [ 3] [301] +13:04:55 ============================================================================ +13:04:55 + + +waiting on router queue for slot.... +13:04:55 Sending to : +13:04:55 ============================================================================ +13:04:55 ============================================================================ +13:04:55 Slot Id : <145> +13:04:55 Transaction Type : RESPONSE +13:04:55 Received From : +13:04:55 ============================================================================ +13:04:55 FNo. Len. Field Value +13:04:55 ============================================================================ +13:04:55 [ 1] [ 4] [0810] +13:04:55 [ 7] [ 10] [0320061242] +13:04:55 [ 11] [ 6] [013311] +13:04:55 [ 37] [ 12] [579130133110] +13:04:55 [ 39] [ 2] [00] +13:04:55 [ 70] [ 3] [810] +13:04:55 ============================================================================ +13:04:55 Calculate Source COMM Id = 1 +13:04:55 ============================================================================ +13:04:55 + + +waiting on router queue for slot.... +13:04:56 ============================================================================ +13:04:56 Slot Id : <154> +13:04:56 Transaction Type : REQUEST +13:04:56 Received From : +13:04:56 ============================================================================ +13:04:56 FNo. Len. Field Value +13:04:56 ============================================================================ +13:04:56 [ 1] [ 4] [0800] +13:04:56 [ 2] [ 5] [02531] +13:04:56 [ 3] [ 6] [579138] +13:04:56 [ 7] [ 10] [0320060456] +13:04:56 [ 11] [ 6] [807171] +13:04:56 [ 15] [ 10] [0320060456] +13:04:56 [ 37] [ 11] [57913807171] +13:04:56 [ 70] [ 3] [001] +13:04:56 ============================================================================ +13:04:56 + + +waiting on router queue for slot.... +13:04:56 ============================================================================ +13:04:56 Slot Id : <154> +13:04:56 Transaction Type : RESPONSE +13:04:56 Received From : +13:04:56 ============================================================================ +13:04:56 FNo. Len. Field Value +13:04:56 ============================================================================ +13:04:56 [ 1] [ 4] [0810] +13:04:56 [ 7] [ 10] [0320060456] +13:04:56 [ 11] [ 6] [807171] +13:04:56 [ 15] [ 4] [0320] +13:04:56 [ 37] [ 12] [57913807171] +13:04:56 [ 39] [ 2] [00] +13:04:56 [ 70] [ 3] [001] +13:04:56 ============================================================================ +13:04:56 Sending to : +13:04:56 ============================================================================ +13:04:56 + + +waiting on router queue for slot.... +13:04:57 ============================================================================ +13:04:57 Slot Id : <158> +13:04:57 Transaction Type : REQUEST +13:04:57 Received From : +13:04:57 ============================================================================ +13:04:57 FNo. Len. Field Value +13:04:57 ============================================================================ +13:04:57 [ 1] [ 4] [0800] +13:04:57 [ 7] [ 10] [0320060404] +13:04:57 [ 11] [ 6] [156460] +13:04:57 [ 70] [ 3] [301] +13:04:57 ============================================================================ +13:04:57 + + +waiting on router queue for slot.... +13:04:57 Sending to : +13:04:57 ============================================================================ +13:04:57 ============================================================================ +13:04:57 Slot Id : <158> +13:04:57 Transaction Type : RESPONSE +13:04:57 Received From : +13:04:57 ============================================================================ +13:04:57 FNo. Len. Field Value +13:04:57 ============================================================================ +13:04:57 [ 1] [ 4] [0810] +13:04:57 [ 7] [ 10] [0320060404] +13:04:57 [ 11] [ 6] [156460] +13:04:57 [ 39] [ 2] [00] +13:04:57 [ 70] [ 3] [301] +13:04:57 ============================================================================ +13:04:57 Calculate Source COMM Id = 2 +13:04:57 ============================================================================ +13:04:57 + + +waiting on router queue for slot.... +13:05:12 ============================================================================ +13:05:12 Slot Id : <143> +13:05:12 Transaction Type : REQUEST +13:05:12 Received From : +13:05:12 ============================================================================ +13:05:12 FNo. Len. Field Value +13:05:12 ============================================================================ +13:05:12 [ 1] [ 4] [0800] +13:05:12 [ 7] [ 10] [0320060419] +13:05:12 [ 11] [ 6] [156461] +13:05:12 [ 70] [ 3] [301] +13:05:12 ============================================================================ +13:05:12 + + +waiting on router queue for slot.... +13:05:12 Sending to : +13:05:12 ============================================================================ +13:05:12 ============================================================================ +13:05:12 Slot Id : <143> +13:05:12 Transaction Type : RESPONSE +13:05:12 Received From : +13:05:12 ============================================================================ +13:05:12 FNo. Len. Field Value +13:05:12 ============================================================================ +13:05:12 [ 1] [ 4] [0810] +13:05:12 [ 7] [ 10] [0320060419] +13:05:12 [ 11] [ 6] [156461] +13:05:12 [ 39] [ 2] [00] +13:05:12 [ 70] [ 3] [301] +13:05:12 ============================================================================ +13:05:12 Calculate Source COMM Id = 2 +13:05:12 ============================================================================ +13:05:12 + + +waiting on router queue for slot.... +13:05:14 ============================================================================ +13:05:14 Slot Id : <166> +13:05:14 Transaction Type : REQUEST +13:05:14 Received From : +13:05:14 ============================================================================ +13:05:14 FNo. Len. Field Value +13:05:14 ============================================================================ +13:05:14 [ 1] [ 4] [0200] +13:05:14 [ 2] [ 16] [6688990107354001] +13:05:14 [ 3] [ 6] [011000] +13:05:14 [ 4] [ 12] [000100000000] +13:05:14 [ 7] [ 10] [0320130510] +13:05:14 [ 11] [ 6] [752527] +13:05:14 [ 12] [ 6] [130510] +13:05:14 [ 13] [ 4] [0320] +13:05:14 [ 15] [ 4] [0320] +13:05:14 [ 18] [ 4] [6011] +13:05:14 [ 22] [ 3] [900] +13:05:14 [ 25] [ 2] [02] +13:05:14 [ 28] [ 9] [D00002000] +13:05:14 [ 32] [ 6] [621354] +13:05:14 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:05:14 [ 37] [ 12] [507904090020] +13:05:14 [ 41] [ 8] [08000600] +13:05:14 [ 42] [ 15] [NATIVE ] +13:05:14 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +13:05:14 [ 49] [ 3] [418] +13:05:14 [ 52] [ 16] [5F7020706DC37D3C] +13:05:14 ============================================================================ +13:05:14 + + +waiting on router queue for slot.... +13:05:14 Sending to : +13:05:14 ============================================================================ +13:05:14 Sending to : +13:05:14 ============================================================================ +13:05:14 ============================================================================ +13:05:14 Slot Id : <166> +13:05:14 Transaction Type : REQUEST +13:05:14 Received From : +13:05:14 ============================================================================ +13:05:14 FNo. Len. Field Value +13:05:14 ============================================================================ +13:05:14 [ 1] [ 4] [0200] +13:05:14 [ 2] [ 16] [6688990107354001] +13:05:14 [ 3] [ 6] [011000] +13:05:14 [ 4] [ 12] [000100000000] +13:05:14 [ 7] [ 10] [0320130510] +13:05:14 [ 11] [ 6] [752527] +13:05:14 [ 12] [ 6] [130510] +13:05:14 [ 13] [ 4] [0320] +13:05:14 [ 15] [ 4] [0320] +13:05:14 [ 18] [ 4] [6011] +13:05:14 [ 22] [ 3] [900] +13:05:14 [ 25] [ 2] [02] +13:05:14 [ 28] [ 9] [D00002000] +13:05:14 [ 32] [ 6] [621354] +13:05:14 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:05:14 [ 37] [ 12] [507904090020] +13:05:14 [ 41] [ 8] [08000600] +13:05:14 [ 42] [ 15] [NATIVE ] +13:05:14 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +13:05:14 [ 49] [ 3] [418] +13:05:14 [ 52] [ 16] [5F7020706DC37D3C] +13:05:14 ============================================================================ +13:05:14 + + +waiting on router queue for slot.... +13:05:14 Sending to : +13:05:14 ============================================================================ +13:05:14 ============================================================================ +13:05:14 Slot Id : <166> +13:05:14 Transaction Type : REQUEST +13:05:14 Received From : +13:05:14 ============================================================================ +13:05:14 FNo. Len. Field Value +13:05:14 ============================================================================ +13:05:14 [ 1] [ 4] [0200] +13:05:14 [ 2] [ 16] [6688990107354001] +13:05:14 [ 3] [ 6] [011000] +13:05:14 [ 4] [ 12] [000100000000] +13:05:14 [ 7] [ 10] [0320130510] +13:05:14 [ 11] [ 6] [752527] +13:05:14 [ 12] [ 6] [130510] +13:05:14 [ 13] [ 4] [0320] +13:05:14 [ 15] [ 4] [0320] +13:05:14 [ 18] [ 4] [6011] +13:05:14 [ 22] [ 3] [900] +13:05:14 [ 25] [ 2] [02] +13:05:14 [ 28] [ 9] [D00002000] +13:05:14 [ 32] [ 6] [621354] +13:05:14 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:05:14 [ 37] [ 12] [507904090020] +13:05:14 [ 41] [ 8] [08000600] +13:05:14 [ 42] [ 15] [NATIVE ] +13:05:14 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +13:05:14 [ 49] [ 3] [418] +13:05:14 [ 52] [ 16] [ABEC4B63AB1D25E9] +13:05:14 ============================================================================ +13:05:14 + + +waiting on router queue for slot.... +13:05:14 Sending to : <4> +13:05:14 ============================================================================ +13:05:16 ============================================================================ +13:05:16 Slot Id : <166> +13:05:16 Transaction Type : RESPONSE +13:05:16 Received From : +13:05:16 ============================================================================ +13:05:16 FNo. Len. Field Value +13:05:16 ============================================================================ +13:05:16 [ 1] [ 4] [0210] +13:05:16 [ 2] [ 16] [6688990107354001] +13:05:16 [ 3] [ 6] [011000] +13:05:16 [ 4] [ 12] [000100000000] +13:05:16 [ 11] [ 6] [752527] +13:05:16 [ 12] [ 6] [130510] +13:05:16 [ 15] [ 4] [0320] +13:05:16 [ 18] [ 4] [6011] +13:05:16 [ 32] [ 6] [621354] +13:05:16 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:05:16 [ 37] [ 12] [507904090020] +13:05:16 [ 38] [ 6] [423970] +13:05:16 [ 39] [ 2] [00] +13:05:16 [ 41] [ 8] [08000600] +13:05:16 [ 49] [ 3] [418] +13:05:16 [ 54] [ 20] [1002418C001153780845] +13:05:16 ============================================================================ +13:05:16 Sending to : +13:05:16 ============================================================================ +13:05:16 + + +waiting on router queue for slot.... +13:05:18 ============================================================================ +13:05:18 Slot Id : <166> +13:05:18 Transaction Type : RESPONSE +13:05:18 Received From : +13:05:18 ============================================================================ +13:05:18 FNo. Len. Field Value +13:05:18 ============================================================================ +13:05:18 [ 1] [ 4] [0210] +13:05:18 [ 2] [ 16] [6688990107354001] +13:05:18 [ 3] [ 6] [011000] +13:05:18 [ 4] [ 12] [000100000000] +13:05:18 [ 11] [ 6] [752527] +13:05:18 [ 12] [ 6] [130510] +13:05:18 [ 15] [ 4] [0320] +13:05:18 [ 18] [ 4] [6011] +13:05:18 [ 32] [ 6] [621354] +13:05:18 [ 35] [ 37] [6688990107354001=44021231400125300000] +13:05:18 [ 37] [ 12] [507904090020] +13:05:18 [ 38] [ 6] [423970] +13:05:18 [ 39] [ 2] [00] +13:05:18 [ 41] [ 8] [08000600] +13:05:18 [ 49] [ 3] [418] +13:05:18 [ 54] [ 20] [1002418C001153780845] +13:05:18 ============================================================================ +13:05:18 Calculate Source COMM Id = 0 +13:05:18 ============================================================================ +13:05:18 + + +waiting on router queue for slot.... +13:05:28 ============================================================================ +13:05:28 Slot Id : <120> +13:05:28 Transaction Type : REQUEST +13:05:28 Received From : +13:05:28 ============================================================================ +13:05:28 FNo. Len. Field Value +13:05:28 ============================================================================ +13:05:28 [ 1] [ 4] [0800] +13:05:28 [ 7] [ 10] [0320060435] +13:05:28 [ 11] [ 6] [156462] +13:05:28 [ 70] [ 3] [301] +13:05:28 ============================================================================ +13:05:28 + + +waiting on router queue for slot.... +13:05:28 Sending to : +13:05:28 ============================================================================ +13:05:28 ============================================================================ +13:05:28 Slot Id : <120> +13:05:28 Transaction Type : RESPONSE +13:05:28 Received From : +13:05:28 ============================================================================ +13:05:28 FNo. Len. Field Value +13:05:28 ============================================================================ +13:05:28 [ 1] [ 4] [0810] +13:05:28 [ 7] [ 10] [0320060435] +13:05:28 [ 11] [ 6] [156462] +13:05:28 [ 39] [ 2] [00] +13:05:28 [ 70] [ 3] [301] +13:05:28 ============================================================================ +13:05:28 Calculate Source COMM Id = 2 +13:05:28 ============================================================================ +13:05:28 + + +waiting on router queue for slot.... +13:05:29 ============================================================================ +13:05:29 Slot Id : <133> +13:05:29 Transaction Type : REQUEST +13:05:29 Received From : +13:05:29 ============================================================================ +13:05:29 FNo. Len. Field Value +13:05:29 ============================================================================ +13:05:29 [ 1] [ 4] [0200] +13:05:29 [ 2] [ 16] [1808931800002998] +13:05:29 [ 3] [ 6] [010000] +13:05:29 [ 4] [ 12] [000100000000] +13:05:29 [ 7] [ 10] [0320130525] +13:05:29 [ 11] [ 6] [752558] +13:05:29 [ 12] [ 6] [130525] +13:05:29 [ 13] [ 4] [0320] +13:05:29 [ 15] [ 4] [0320] +13:05:29 [ 18] [ 4] [6011] +13:05:29 [ 22] [ 3] [900] +13:05:29 [ 25] [ 2] [02] +13:05:29 [ 28] [ 9] [D00002000] +13:05:29 [ 32] [ 6] [621354] +13:05:29 [ 35] [ 27] [1808931800002998=1803500364] +13:05:29 [ 37] [ 12] [507903624949] +13:05:29 [ 41] [ 8] [16001500] +13:05:29 [ 42] [ 15] [NATIVE ] +13:05:29 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:05:29 [ 49] [ 3] [418] +13:05:29 [ 52] [ 16] [E10FB08AC22B2824] +13:05:29 ============================================================================ +13:05:29 + + +waiting on router queue for slot.... +13:05:29 Sending to : +13:05:29 ============================================================================ +13:05:29 Sending to : +13:05:29 ============================================================================ +13:05:30 ============================================================================ +13:05:30 Slot Id : <133> +13:05:30 Transaction Type : REQUEST +13:05:30 Received From : +13:05:30 ============================================================================ +13:05:30 FNo. Len. Field Value +13:05:30 ============================================================================ +13:05:30 [ 1] [ 4] [0200] +13:05:30 [ 2] [ 16] [1808931800002998] +13:05:30 [ 3] [ 6] [010000] +13:05:30 [ 4] [ 12] [000100000000] +13:05:30 [ 7] [ 10] [0320130525] +13:05:30 [ 11] [ 6] [752558] +13:05:30 [ 12] [ 6] [130525] +13:05:30 [ 13] [ 4] [0320] +13:05:30 [ 15] [ 4] [0320] +13:05:30 [ 18] [ 4] [6011] +13:05:30 [ 22] [ 3] [900] +13:05:30 [ 25] [ 2] [02] +13:05:30 [ 28] [ 9] [D00002000] +13:05:30 [ 32] [ 6] [621354] +13:05:30 [ 35] [ 27] [1808931800002998=1803500364] +13:05:30 [ 37] [ 12] [507903624949] +13:05:30 [ 41] [ 8] [16001500] +13:05:30 [ 42] [ 15] [NATIVE ] +13:05:30 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:05:30 [ 49] [ 3] [418] +13:05:30 [ 52] [ 16] [E10FB08AC22B2824] +13:05:30 ============================================================================ +13:05:30 + + +waiting on router queue for slot.... +13:05:30 Sending to : +13:05:30 ============================================================================ +13:05:30 ============================================================================ +13:05:30 Slot Id : <133> +13:05:30 Transaction Type : REQUEST +13:05:30 Received From : +13:05:30 ============================================================================ +13:05:30 FNo. Len. Field Value +13:05:30 ============================================================================ +13:05:30 [ 1] [ 4] [0200] +13:05:30 [ 2] [ 16] [1808931800002998] +13:05:30 [ 3] [ 6] [010000] +13:05:30 [ 4] [ 12] [000100000000] +13:05:30 [ 7] [ 10] [0320130525] +13:05:30 [ 11] [ 6] [752558] +13:05:30 [ 12] [ 6] [130525] +13:05:30 [ 13] [ 4] [0320] +13:05:30 [ 15] [ 4] [0320] +13:05:30 [ 18] [ 4] [6011] +13:05:30 [ 22] [ 3] [900] +13:05:30 [ 25] [ 2] [02] +13:05:30 [ 28] [ 9] [D00002000] +13:05:30 [ 32] [ 6] [621354] +13:05:30 [ 35] [ 27] [1808931800002998=1803500364] +13:05:30 [ 37] [ 12] [507903624949] +13:05:30 [ 41] [ 8] [16001500] +13:05:30 [ 42] [ 15] [NATIVE ] +13:05:30 [ 43] [ 40] [Sea game Village Xaythany LAO] +13:05:30 [ 49] [ 3] [418] +13:05:30 [ 52] [ 16] [B1938C0EBACC16B6] +13:05:30 ============================================================================ +13:05:30 + + +waiting on router queue for slot.... +13:05:30 Sending to : <2> +13:05:30 ============================================================================ +13:05:35 ============================================================================ +13:05:35 Slot Id : <153> +13:05:35 Transaction Type : REQUEST +13:05:35 Received From : +13:05:35 ============================================================================ +13:05:35 FNo. Len. Field Value +13:05:35 ============================================================================ +13:05:35 [ 1] [ 4] [0200] +13:05:35 [ 2] [ 16] [6213545001056344] +13:05:35 [ 3] [ 6] [010000] +13:05:35 [ 4] [ 12] [000030000000] +13:05:35 [ 7] [ 10] [0320130325] +13:05:35 [ 11] [ 6] [945655] +13:05:35 [ 12] [ 6] [130325] +13:05:35 [ 13] [ 4] [0320] +13:05:35 [ 15] [ 4] [0320] +13:05:35 [ 18] [ 4] [6011] +13:05:35 [ 19] [ 3] [418] +13:05:35 [ 22] [ 3] [021] +13:05:35 [ 25] [ 2] [01] +13:05:35 [ 28] [ 9] [D00002000] +13:05:35 [ 32] [ 6] [668899] +13:05:35 [ 35] [ 32] [6213545001056344=491212015634841] +13:05:35 [ 37] [ 12] [507902150990] +13:05:35 [ 41] [ 8] [03020025] +13:05:35 [ 42] [ 15] [APT ] +13:05:35 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:05:35 [ 49] [ 3] [418] +13:05:35 [ 52] [ 16] [F2F6998E143BEEAD] +13:05:35 ============================================================================ +13:05:35 + + +waiting on router queue for slot.... +13:05:35 Sending to : +13:05:35 ============================================================================ +13:05:35 Sending to : +13:05:35 ============================================================================ +13:05:35 ============================================================================ +13:05:35 Slot Id : <153> +13:05:35 Transaction Type : REQUEST +13:05:35 Received From : +13:05:35 ============================================================================ +13:05:35 FNo. Len. Field Value +13:05:35 ============================================================================ +13:05:35 [ 1] [ 4] [0200] +13:05:35 [ 2] [ 16] [6213545001056344] +13:05:35 [ 3] [ 6] [010000] +13:05:35 [ 4] [ 12] [000030000000] +13:05:35 [ 7] [ 10] [0320130325] +13:05:35 [ 11] [ 6] [945655] +13:05:35 [ 12] [ 6] [130325] +13:05:35 [ 13] [ 4] [0320] +13:05:35 [ 15] [ 4] [0320] +13:05:35 [ 18] [ 4] [6011] +13:05:35 [ 19] [ 3] [418] +13:05:35 [ 22] [ 3] [021] +13:05:35 [ 25] [ 2] [01] +13:05:35 [ 28] [ 9] [D00002000] +13:05:35 [ 32] [ 6] [668899] +13:05:35 [ 35] [ 32] [6213545001056344=491212015634841] +13:05:35 [ 37] [ 12] [507902150990] +13:05:35 [ 41] [ 8] [03020025] +13:05:35 [ 42] [ 15] [APT ] +13:05:35 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:05:35 [ 49] [ 3] [418] +13:05:35 [ 52] [ 16] [F2F6998E143BEEAD] +13:05:35 ============================================================================ +13:05:35 + + +waiting on router queue for slot.... +13:05:35 Sending to : +13:05:35 ============================================================================ +13:05:35 ============================================================================ +13:05:35 Slot Id : <153> +13:05:35 Transaction Type : REQUEST +13:05:35 Received From : +13:05:35 ============================================================================ +13:05:35 FNo. Len. Field Value +13:05:35 ============================================================================ +13:05:35 [ 1] [ 4] [0200] +13:05:35 [ 2] [ 16] [6213545001056344] +13:05:35 [ 3] [ 6] [010000] +13:05:35 [ 4] [ 12] [000030000000] +13:05:35 [ 7] [ 10] [0320130325] +13:05:35 [ 11] [ 6] [945655] +13:05:35 [ 12] [ 6] [130325] +13:05:35 [ 13] [ 4] [0320] +13:05:35 [ 15] [ 4] [0320] +13:05:35 [ 18] [ 4] [6011] +13:05:35 [ 19] [ 3] [418] +13:05:35 [ 22] [ 3] [021] +13:05:35 [ 25] [ 2] [01] +13:05:35 [ 28] [ 9] [D00002000] +13:05:35 [ 32] [ 6] [668899] +13:05:35 [ 35] [ 32] [6213545001056344=491212015634841] +13:05:35 [ 37] [ 12] [507902150990] +13:05:35 [ 41] [ 8] [03020025] +13:05:35 [ 42] [ 15] [APT ] +13:05:35 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:05:35 [ 49] [ 3] [418] +13:05:35 [ 52] [ 16] [3A7B10E879805247] +13:05:35 ============================================================================ +13:05:35 + + +waiting on router queue for slot.... +13:05:35 Sending to : <0> +13:05:35 ============================================================================ +13:05:36 ============================================================================ +13:05:36 Slot Id : <153> +13:05:36 Transaction Type : RESPONSE +13:05:36 Received From : +13:05:36 ============================================================================ +13:05:36 FNo. Len. Field Value +13:05:36 ============================================================================ +13:05:36 [ 1] [ 4] [0210] +13:05:36 [ 2] [ 16] [6213545001056344] +13:05:36 [ 3] [ 6] [010000] +13:05:36 [ 4] [ 12] [000030000000] +13:05:36 [ 7] [ 10] [0320130325] +13:05:36 [ 11] [ 6] [945655] +13:05:36 [ 12] [ 6] [130325] +13:05:36 [ 13] [ 4] [0320] +13:05:36 [ 15] [ 4] [0320] +13:05:36 [ 18] [ 4] [6011] +13:05:36 [ 19] [ 3] [418] +13:05:36 [ 32] [ 6] [668899] +13:05:36 [ 35] [ 32] [6213545001056344=491212015634841] +13:05:36 [ 37] [ 12] [507902150990] +13:05:36 [ 38] [ 6] [047926] +13:05:36 [ 39] [ 2] [00] +13:05:36 [ 41] [ 8] [03020025] +13:05:36 [ 49] [ 3] [418] +13:05:36 [ 54] [ 40] [0001418C0000827691560002418C000082769156] +13:05:36 ============================================================================ +13:05:36 Sending to : +13:05:36 ============================================================================ +13:05:36 + + +waiting on router queue for slot.... +13:05:36 ============================================================================ +13:05:36 Slot Id : <150> +13:05:36 Transaction Type : REQUEST +13:05:36 Received From : +13:05:36 ============================================================================ +13:05:36 FNo. Len. Field Value +13:05:36 ============================================================================ +13:05:36 [ 1] [ 4] [0200] +13:05:36 [ 2] [ 16] [1808930200045904] +13:05:36 [ 3] [ 6] [010000] +13:05:36 [ 4] [ 12] [000050000000] +13:05:36 [ 7] [ 10] [0320130531] +13:05:36 [ 11] [ 6] [752583] +13:05:36 [ 12] [ 6] [130531] +13:05:36 [ 13] [ 4] [0320] +13:05:36 [ 15] [ 4] [0320] +13:05:36 [ 18] [ 4] [6011] +13:05:36 [ 22] [ 3] [900] +13:05:36 [ 25] [ 2] [02] +13:05:36 [ 28] [ 9] [D00002000] +13:05:36 [ 32] [ 6] [621354] +13:05:36 [ 35] [ 27] [1808930200045904=1803500628] +13:05:36 [ 37] [ 12] [507903919218] +13:05:36 [ 41] [ 8] [01010700] +13:05:36 [ 42] [ 15] [NATIVE ] +13:05:36 [ 43] [ 40] [Unitel Xaysetha LAO] +13:05:36 [ 49] [ 3] [418] +13:05:36 [ 52] [ 16] [BED9F63E8601CF95] +13:05:36 ============================================================================ +13:05:36 + + +waiting on router queue for slot.... +13:05:36 Sending to : +13:05:36 ============================================================================ +13:05:36 Sending to : +13:05:36 ============================================================================ +13:05:36 ============================================================================ +13:05:36 Slot Id : <150> +13:05:36 Transaction Type : REQUEST +13:05:36 Received From : +13:05:36 ============================================================================ +13:05:36 FNo. Len. Field Value +13:05:36 ============================================================================ +13:05:36 [ 1] [ 4] [0200] +13:05:36 [ 2] [ 16] [1808930200045904] +13:05:36 [ 3] [ 6] [010000] +13:05:36 [ 4] [ 12] [000050000000] +13:05:36 [ 7] [ 10] [0320130531] +13:05:36 [ 11] [ 6] [752583] +13:05:36 [ 12] [ 6] [130531] +13:05:36 [ 13] [ 4] [0320] +13:05:36 [ 15] [ 4] [0320] +13:05:36 [ 18] [ 4] [6011] +13:05:36 [ 22] [ 3] [900] +13:05:36 [ 25] [ 2] [02] +13:05:36 [ 28] [ 9] [D00002000] +13:05:36 [ 32] [ 6] [621354] +13:05:36 [ 35] [ 27] [1808930200045904=1803500628] +13:05:36 [ 37] [ 12] [507903919218] +13:05:36 [ 41] [ 8] [01010700] +13:05:36 [ 42] [ 15] [NATIVE ] +13:05:36 [ 43] [ 40] [Unitel Xaysetha LAO] +13:05:36 [ 49] [ 3] [418] +13:05:36 [ 52] [ 16] [BED9F63E8601CF95] +13:05:36 ============================================================================ +13:05:36 + + +waiting on router queue for slot.... +13:05:36 Sending to : +13:05:36 ============================================================================ +13:05:36 ============================================================================ +13:05:36 Slot Id : <150> +13:05:36 Transaction Type : REQUEST +13:05:36 Received From : +13:05:36 ============================================================================ +13:05:36 FNo. Len. Field Value +13:05:36 ============================================================================ +13:05:36 [ 1] [ 4] [0200] +13:05:36 [ 2] [ 16] [1808930200045904] +13:05:36 [ 3] [ 6] [010000] +13:05:36 [ 4] [ 12] [000050000000] +13:05:36 [ 7] [ 10] [0320130531] +13:05:36 [ 11] [ 6] [752583] +13:05:36 [ 12] [ 6] [130531] +13:05:36 [ 13] [ 4] [0320] +13:05:36 [ 15] [ 4] [0320] +13:05:36 [ 18] [ 4] [6011] +13:05:36 [ 22] [ 3] [900] +13:05:36 [ 25] [ 2] [02] +13:05:36 [ 28] [ 9] [D00002000] +13:05:36 [ 32] [ 6] [621354] +13:05:36 [ 35] [ 27] [1808930200045904=1803500628] +13:05:36 [ 37] [ 12] [507903919218] +13:05:36 [ 41] [ 8] [01010700] +13:05:36 [ 42] [ 15] [NATIVE ] +13:05:36 [ 43] [ 40] [Unitel Xaysetha LAO] +13:05:36 [ 49] [ 3] [418] +13:05:36 [ 52] [ 16] [EF1111796B9109D5] +13:05:36 ============================================================================ +13:05:36 + + +waiting on router queue for slot.... +13:05:36 Sending to : <2> +13:05:36 ============================================================================ +13:05:37 ============================================================================ +13:05:37 Slot Id : <153> +13:05:37 Transaction Type : RESPONSE +13:05:37 Received From : +13:05:37 ============================================================================ +13:05:37 FNo. Len. Field Value +13:05:37 ============================================================================ +13:05:37 [ 1] [ 4] [0210] +13:05:37 [ 2] [ 16] [6213545001056344] +13:05:37 [ 3] [ 6] [010000] +13:05:37 [ 4] [ 12] [000030000000] +13:05:37 [ 7] [ 10] [0320130325] +13:05:37 [ 11] [ 6] [945655] +13:05:37 [ 12] [ 6] [130325] +13:05:37 [ 13] [ 4] [0320] +13:05:37 [ 15] [ 4] [0320] +13:05:37 [ 18] [ 4] [6011] +13:05:37 [ 19] [ 3] [418] +13:05:37 [ 32] [ 6] [668899] +13:05:37 [ 35] [ 32] [6213545001056344=491212015634841] +13:05:37 [ 37] [ 12] [507902150990] +13:05:37 [ 38] [ 6] [047926] +13:05:37 [ 39] [ 2] [00] +13:05:37 [ 41] [ 8] [03020025] +13:05:37 [ 49] [ 3] [418] +13:05:37 [ 54] [ 40] [0001418C0000827691560002418C000082769156] +13:05:37 ============================================================================ +13:05:37 Calculate Source COMM Id = 4 +13:05:37 ============================================================================ +13:05:37 + + +waiting on router queue for slot.... +13:05:38 ============================================================================ +13:05:38 Slot Id : <133> +13:05:38 Transaction Type : RESPONSE +13:05:38 Received From : +13:05:38 ============================================================================ +13:05:38 FNo. Len. Field Value +13:05:38 ============================================================================ +13:05:38 [ 1] [ 4] [0210] +13:05:38 [ 2] [ 16] [1808931800002998] +13:05:38 [ 3] [ 6] [010000] +13:05:38 [ 4] [ 12] [000100000000] +13:05:38 [ 6] [ 12] [000100000000] +13:05:38 [ 7] [ 10] [0320130525] +13:05:38 [ 11] [ 6] [752558] +13:05:38 [ 12] [ 6] [130525] +13:05:38 [ 13] [ 4] [0320] +13:05:38 [ 18] [ 4] [6011] +13:05:38 [ 19] [ 3] [418] +13:05:38 [ 22] [ 3] [021] +13:05:38 [ 32] [ 6] [621354] +13:05:38 [ 35] [ 27] [1808931800002998=1803500364] +13:05:38 [ 37] [ 12] [507903624949] +13:05:38 [ 38] [ 6] [752558] +13:05:38 [ 39] [ 2] [00] +13:05:38 [ 41] [ 8] [16001500] +13:05:38 [ 49] [ 3] [418] +13:05:38 [ 52] [ 16] [B1938C0EBACC16B6] +13:05:38 [ 54] [ 20] [1001418C000007397300] +13:05:38 ============================================================================ +13:05:38 Sending to : +13:05:38 ============================================================================ +13:05:38 + + +waiting on router queue for slot.... +13:05:39 ============================================================================ +13:05:39 Slot Id : <133> +13:05:39 Transaction Type : RESPONSE +13:05:39 Received From : +13:05:39 ============================================================================ +13:05:39 FNo. Len. Field Value +13:05:39 ============================================================================ +13:05:39 [ 1] [ 4] [0210] +13:05:39 [ 2] [ 16] [1808931800002998] +13:05:39 [ 3] [ 6] [010000] +13:05:39 [ 4] [ 12] [000100000000] +13:05:39 [ 6] [ 12] [000100000000] +13:05:39 [ 7] [ 10] [0320130525] +13:05:39 [ 11] [ 6] [752558] +13:05:39 [ 12] [ 6] [130525] +13:05:39 [ 13] [ 4] [0320] +13:05:39 [ 18] [ 4] [6011] +13:05:39 [ 19] [ 3] [418] +13:05:39 [ 22] [ 3] [021] +13:05:39 [ 32] [ 6] [621354] +13:05:39 [ 35] [ 27] [1808931800002998=1803500364] +13:05:39 [ 37] [ 12] [507903624949] +13:05:39 [ 38] [ 6] [752558] +13:05:39 [ 39] [ 2] [00] +13:05:39 [ 41] [ 8] [16001500] +13:05:39 [ 49] [ 3] [418] +13:05:39 [ 52] [ 16] [B1938C0EBACC16B6] +13:05:39 [ 54] [ 20] [1001418C000007397300] +13:05:39 ============================================================================ +13:05:39 Calculate Source COMM Id = 0 +13:05:39 ============================================================================ +13:05:39 + + +waiting on router queue for slot.... +13:05:43 ============================================================================ +13:05:43 Slot Id : <150> +13:05:43 Transaction Type : RESPONSE +13:05:43 Received From : +13:05:43 ============================================================================ +13:05:43 FNo. Len. Field Value +13:05:43 ============================================================================ +13:05:43 [ 1] [ 4] [0210] +13:05:43 [ 2] [ 16] [1808930200045904] +13:05:43 [ 3] [ 6] [010000] +13:05:43 [ 4] [ 12] [000050000000] +13:05:43 [ 6] [ 12] [000050000000] +13:05:43 [ 7] [ 10] [0320130531] +13:05:43 [ 11] [ 6] [752583] +13:05:43 [ 12] [ 6] [130531] +13:05:43 [ 13] [ 4] [0320] +13:05:43 [ 18] [ 4] [6011] +13:05:43 [ 19] [ 3] [418] +13:05:43 [ 22] [ 3] [021] +13:05:43 [ 32] [ 6] [621354] +13:05:43 [ 35] [ 27] [1808930200045904=1803500628] +13:05:43 [ 37] [ 12] [507903919218] +13:05:43 [ 38] [ 6] [752583] +13:05:43 [ 39] [ 2] [00] +13:05:43 [ 41] [ 8] [01010700] +13:05:43 [ 49] [ 3] [418] +13:05:43 [ 52] [ 16] [EF1111796B9109D5] +13:05:43 [ 54] [ 20] [1001418C003808933800] +13:05:43 ============================================================================ +13:05:43 Sending to : +13:05:43 ============================================================================ +13:05:43 + + +waiting on router queue for slot.... +13:05:45 ============================================================================ +13:05:45 Slot Id : <150> +13:05:45 Transaction Type : RESPONSE +13:05:45 Received From : +13:05:45 ============================================================================ +13:05:45 FNo. Len. Field Value +13:05:45 ============================================================================ +13:05:45 [ 1] [ 4] [0210] +13:05:45 [ 2] [ 16] [1808930200045904] +13:05:45 [ 3] [ 6] [010000] +13:05:45 [ 4] [ 12] [000050000000] +13:05:45 [ 6] [ 12] [000050000000] +13:05:45 [ 7] [ 10] [0320130531] +13:05:45 [ 11] [ 6] [752583] +13:05:45 [ 12] [ 6] [130531] +13:05:45 [ 13] [ 4] [0320] +13:05:45 [ 18] [ 4] [6011] +13:05:45 [ 19] [ 3] [418] +13:05:45 [ 22] [ 3] [021] +13:05:45 [ 32] [ 6] [621354] +13:05:45 [ 35] [ 27] [1808930200045904=1803500628] +13:05:45 [ 37] [ 12] [507903919218] +13:05:45 [ 38] [ 6] [752583] +13:05:45 [ 39] [ 2] [00] +13:05:45 [ 41] [ 8] [01010700] +13:05:45 [ 49] [ 3] [418] +13:05:45 [ 52] [ 16] [EF1111796B9109D5] +13:05:45 [ 54] [ 20] [1001418C003808933800] +13:05:45 ============================================================================ +13:05:45 Calculate Source COMM Id = 0 +13:05:45 ============================================================================ +13:05:45 + + +waiting on router queue for slot.... +13:05:47 ============================================================================ +13:05:47 Slot Id : <130> +13:05:47 Transaction Type : REQUEST +13:05:47 Received From : +13:05:47 ============================================================================ +13:05:47 FNo. Len. Field Value +13:05:47 ============================================================================ +13:05:47 [ 1] [ 4] [0200] +13:05:47 [ 2] [ 16] [6213544001999496] +13:05:47 [ 3] [ 6] [301000] +13:05:47 [ 4] [ 12] [000000000000] +13:05:47 [ 7] [ 10] [0320130608] +13:05:47 [ 11] [ 6] [206109] +13:05:47 [ 12] [ 6] [125323] +13:05:47 [ 13] [ 4] [0320] +13:05:47 [ 14] [ 4] [4912] +13:05:47 [ 15] [ 4] [0320] +13:05:47 [ 18] [ 4] [6011] +13:05:47 [ 19] [ 3] [418] +13:05:47 [ 22] [ 3] [021] +13:05:47 [ 25] [ 2] [01] +13:05:47 [ 28] [ 9] [D00000000] +13:05:47 [ 32] [ 6] [198901] +13:05:47 [ 35] [ 32] [6213544001999496=491212019949522] +13:05:47 [ 37] [ 12] [507913206109] +13:05:47 [ 41] [ 8] [01529019] +13:05:47 [ 42] [ 15] [000000041529019] +13:05:47 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +13:05:47 [ 49] [ 3] [418] +13:05:47 [ 52] [ 16] [6126E1FAC926522A] +13:05:47 ============================================================================ +13:05:47 + + +waiting on router queue for slot.... +13:05:47 Sending to : +13:05:47 ============================================================================ +13:05:47 Sending to : +13:05:47 ============================================================================ +13:05:47 ============================================================================ +13:05:47 Slot Id : <130> +13:05:47 Transaction Type : REQUEST +13:05:47 Received From : +13:05:47 ============================================================================ +13:05:47 FNo. Len. Field Value +13:05:47 ============================================================================ +13:05:47 [ 1] [ 4] [0200] +13:05:47 [ 2] [ 16] [6213544001999496] +13:05:47 [ 3] [ 6] [301000] +13:05:47 [ 4] [ 12] [000000000000] +13:05:47 [ 7] [ 10] [0320130608] +13:05:47 [ 11] [ 6] [206109] +13:05:47 [ 12] [ 6] [125323] +13:05:47 [ 13] [ 4] [0320] +13:05:47 [ 14] [ 4] [4912] +13:05:47 [ 15] [ 4] [0320] +13:05:47 [ 18] [ 4] [6011] +13:05:47 [ 19] [ 3] [418] +13:05:47 [ 22] [ 3] [021] +13:05:47 [ 25] [ 2] [01] +13:05:47 [ 28] [ 9] [D00000000] +13:05:47 [ 32] [ 6] [198901] +13:05:47 [ 35] [ 32] [6213544001999496=491212019949522] +13:05:47 [ 37] [ 12] [507913206109] +13:05:47 [ 41] [ 8] [01529019] +13:05:47 [ 42] [ 15] [000000041529019] +13:05:47 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +13:05:47 [ 49] [ 3] [418] +13:05:47 [ 52] [ 16] [6126E1FAC926522A] +13:05:47 ============================================================================ +13:05:47 + + +waiting on router queue for slot.... +13:05:47 Sending to : +13:05:47 ============================================================================ +13:05:47 ============================================================================ +13:05:47 Slot Id : <130> +13:05:47 Transaction Type : REQUEST +13:05:47 Received From : +13:05:47 ============================================================================ +13:05:47 FNo. Len. Field Value +13:05:47 ============================================================================ +13:05:47 [ 1] [ 4] [0200] +13:05:47 [ 2] [ 16] [6213544001999496] +13:05:47 [ 3] [ 6] [301000] +13:05:47 [ 4] [ 12] [000000000000] +13:05:47 [ 7] [ 10] [0320130608] +13:05:47 [ 11] [ 6] [206109] +13:05:47 [ 12] [ 6] [125323] +13:05:47 [ 13] [ 4] [0320] +13:05:47 [ 14] [ 4] [4912] +13:05:47 [ 15] [ 4] [0320] +13:05:47 [ 18] [ 4] [6011] +13:05:47 [ 19] [ 3] [418] +13:05:47 [ 22] [ 3] [021] +13:05:47 [ 25] [ 2] [01] +13:05:47 [ 28] [ 9] [D00000000] +13:05:47 [ 32] [ 6] [198901] +13:05:47 [ 35] [ 32] [6213544001999496=491212019949522] +13:05:47 [ 37] [ 12] [507913206109] +13:05:47 [ 41] [ 8] [01529019] +13:05:47 [ 42] [ 15] [000000041529019] +13:05:47 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +13:05:47 [ 49] [ 3] [418] +13:05:47 [ 52] [ 16] [32FCFE1D3A4BAA0E] +13:05:47 ============================================================================ +13:05:47 + + +waiting on router queue for slot.... +13:05:47 Sending to : <0> +13:05:47 ============================================================================ +13:05:48 ============================================================================ +13:05:48 Slot Id : <130> +13:05:48 Transaction Type : RESPONSE +13:05:48 Received From : +13:05:48 ============================================================================ +13:05:48 FNo. Len. Field Value +13:05:48 ============================================================================ +13:05:48 [ 1] [ 4] [0210] +13:05:48 [ 2] [ 16] [6213544001999496] +13:05:48 [ 3] [ 6] [301000] +13:05:48 [ 4] [ 12] [000000000000] +13:05:48 [ 7] [ 10] [0320130608] +13:05:48 [ 11] [ 6] [206109] +13:05:48 [ 12] [ 6] [125323] +13:05:48 [ 13] [ 4] [0320] +13:05:48 [ 15] [ 4] [0320] +13:05:48 [ 18] [ 4] [6011] +13:05:48 [ 19] [ 3] [418] +13:05:48 [ 32] [ 6] [198901] +13:05:48 [ 35] [ 32] [6213544001999496=491212019949522] +13:05:48 [ 37] [ 12] [507913206109] +13:05:48 [ 38] [ 6] [324662] +13:05:48 [ 39] [ 2] [00] +13:05:48 [ 41] [ 8] [01529019] +13:05:48 [ 49] [ 3] [418] +13:05:48 [ 54] [ 40] [1001418C0000827028361002418C000082702836] +13:05:48 ============================================================================ +13:05:48 Sending to : +13:05:48 ============================================================================ +13:05:48 + + +waiting on router queue for slot.... +13:05:49 ============================================================================ +13:05:49 Slot Id : <130> +13:05:49 Transaction Type : RESPONSE +13:05:49 Received From : +13:05:49 ============================================================================ +13:05:49 FNo. Len. Field Value +13:05:49 ============================================================================ +13:05:49 [ 1] [ 4] [0210] +13:05:49 [ 2] [ 16] [6213544001999496] +13:05:49 [ 3] [ 6] [301000] +13:05:49 [ 4] [ 12] [000000000000] +13:05:49 [ 7] [ 10] [0320130608] +13:05:49 [ 11] [ 6] [206109] +13:05:49 [ 12] [ 6] [125323] +13:05:49 [ 13] [ 4] [0320] +13:05:49 [ 15] [ 4] [0320] +13:05:49 [ 18] [ 4] [6011] +13:05:49 [ 19] [ 3] [418] +13:05:49 [ 32] [ 6] [198901] +13:05:49 [ 35] [ 32] [6213544001999496=491212019949522] +13:05:49 [ 37] [ 12] [507913206109] +13:05:49 [ 38] [ 6] [324662] +13:05:49 [ 39] [ 2] [00] +13:05:49 [ 41] [ 8] [01529019] +13:05:49 [ 49] [ 3] [418] +13:05:49 [ 54] [ 40] [1001418C0000827028361002418C000082702836] +13:05:49 ============================================================================ +13:05:49 Calculate Source COMM Id = 5 +13:05:49 ============================================================================ +13:05:49 + + +waiting on router queue for slot.... +13:05:49 ============================================================================ +13:05:49 Slot Id : <110> +13:05:49 Transaction Type : REQUEST +13:05:49 Received From : +13:05:49 ============================================================================ +13:05:49 FNo. Len. Field Value +13:05:49 ============================================================================ +13:05:49 [ 1] [ 4] [0800] +13:05:49 [ 7] [ 10] [0320060457] +13:05:49 [ 11] [ 6] [156463] +13:05:49 [ 70] [ 3] [301] +13:05:49 ============================================================================ +13:05:49 + + +waiting on router queue for slot.... +13:05:49 Sending to : +13:05:49 ============================================================================ +13:05:49 ============================================================================ +13:05:49 Slot Id : <110> +13:05:49 Transaction Type : RESPONSE +13:05:49 Received From : +13:05:49 ============================================================================ +13:05:49 FNo. Len. Field Value +13:05:49 ============================================================================ +13:05:49 [ 1] [ 4] [0810] +13:05:49 [ 7] [ 10] [0320060457] +13:05:49 [ 11] [ 6] [156463] +13:05:49 [ 39] [ 2] [00] +13:05:49 [ 70] [ 3] [301] +13:05:49 ============================================================================ +13:05:49 Calculate Source COMM Id = 2 +13:05:49 ============================================================================ +13:05:49 + + +waiting on router queue for slot.... +13:05:58 ============================================================================ +13:05:58 Slot Id : <142> +13:05:58 Transaction Type : REQUEST +13:05:58 Received From : +13:05:58 ============================================================================ +13:05:58 FNo. Len. Field Value +13:05:58 ============================================================================ +13:05:58 [ 1] [ 4] [0800] +13:05:58 [ 2] [ 5] [02531] +13:05:58 [ 3] [ 6] [579138] +13:05:58 [ 7] [ 10] [0320060558] +13:05:58 [ 11] [ 6] [807172] +13:05:58 [ 15] [ 10] [0320060558] +13:05:58 [ 37] [ 11] [57913807172] +13:05:58 [ 70] [ 3] [001] +13:05:58 ============================================================================ +13:05:58 + + +waiting on router queue for slot.... +13:05:58 ============================================================================ +13:05:58 Slot Id : <142> +13:05:58 Transaction Type : RESPONSE +13:05:58 Received From : +13:05:58 ============================================================================ +13:05:58 FNo. Len. Field Value +13:05:58 ============================================================================ +13:05:58 [ 1] [ 4] [0810] +13:05:58 [ 7] [ 10] [0320060558] +13:05:58 [ 11] [ 6] [807172] +13:05:58 [ 15] [ 4] [0320] +13:05:58 [ 37] [ 12] [57913807172] +13:05:58 [ 39] [ 2] [00] +13:05:58 [ 70] [ 3] [001] +13:05:58 ============================================================================ +13:05:58 Sending to : +13:05:58 ============================================================================ +13:05:58 + + +waiting on router queue for slot.... +13:06:00 ============================================================================ +13:06:00 Slot Id : <167> +13:06:00 Transaction Type : REQUEST +13:06:00 Received From : +13:06:00 ============================================================================ +13:06:00 FNo. Len. Field Value +13:06:00 ============================================================================ +13:06:00 [ 1] [ 4] [0800] +13:06:00 [ 7] [ 10] [0320060508] +13:06:00 [ 11] [ 6] [156464] +13:06:00 [ 70] [ 3] [301] +13:06:00 ============================================================================ +13:06:00 + + +waiting on router queue for slot.... +13:06:00 Sending to : +13:06:00 ============================================================================ +13:06:00 ============================================================================ +13:06:00 Slot Id : <167> +13:06:00 Transaction Type : RESPONSE +13:06:00 Received From : +13:06:00 ============================================================================ +13:06:00 FNo. Len. Field Value +13:06:00 ============================================================================ +13:06:00 [ 1] [ 4] [0810] +13:06:00 [ 7] [ 10] [0320060508] +13:06:00 [ 11] [ 6] [156464] +13:06:00 [ 39] [ 2] [00] +13:06:00 [ 70] [ 3] [301] +13:06:00 ============================================================================ +13:06:00 Calculate Source COMM Id = 2 +13:06:00 ============================================================================ +13:06:00 + + +waiting on router queue for slot.... +13:06:12 ============================================================================ +13:06:12 Slot Id : <159> +13:06:12 Transaction Type : REQUEST +13:06:12 Received From : +13:06:12 ============================================================================ +13:06:12 FNo. Len. Field Value +13:06:12 ============================================================================ +13:06:12 [ 1] [ 4] [0800] +13:06:12 [ 7] [ 10] [0320060520] +13:06:12 [ 11] [ 6] [156465] +13:06:12 [ 70] [ 3] [301] +13:06:12 ============================================================================ +13:06:12 + + +waiting on router queue for slot.... +13:06:12 Sending to : +13:06:12 ============================================================================ +13:06:12 ============================================================================ +13:06:12 Slot Id : <159> +13:06:12 Transaction Type : RESPONSE +13:06:12 Received From : +13:06:12 ============================================================================ +13:06:12 FNo. Len. Field Value +13:06:12 ============================================================================ +13:06:12 [ 1] [ 4] [0810] +13:06:12 [ 7] [ 10] [0320060520] +13:06:12 [ 11] [ 6] [156465] +13:06:12 [ 39] [ 2] [00] +13:06:12 [ 70] [ 3] [301] +13:06:12 ============================================================================ +13:06:12 Calculate Source COMM Id = 2 +13:06:12 ============================================================================ +13:06:12 + + +waiting on router queue for slot.... +13:06:22 ============================================================================ +13:06:22 Slot Id : <137> +13:06:22 Transaction Type : REQUEST +13:06:22 Received From : +13:06:22 ============================================================================ +13:06:22 FNo. Len. Field Value +13:06:22 ============================================================================ +13:06:22 [ 1] [ 4] [0800] +13:06:22 [ 7] [ 10] [0320060412] +13:06:22 [ 11] [ 6] [044091] +13:06:22 [ 37] [ 12] [57913044091] +13:06:22 [ 70] [ 3] [301] +13:06:22 ============================================================================ +13:06:22 + + +waiting on router queue for slot.... +13:06:22 Sending to : +13:06:22 ============================================================================ +13:06:22 ============================================================================ +13:06:22 Slot Id : <137> +13:06:22 Transaction Type : RESPONSE +13:06:22 Received From : +13:06:22 ============================================================================ +13:06:22 FNo. Len. Field Value +13:06:22 ============================================================================ +13:06:22 [ 1] [ 4] [0810] +13:06:22 [ 7] [ 10] [0320060412] +13:06:22 [ 11] [ 6] [044091] +13:06:22 [ 37] [ 12] [579130440910] +13:06:22 [ 39] [ 2] [00] +13:06:22 [ 70] [ 3] [810] +13:06:22 ============================================================================ +13:06:22 Calculate Source COMM Id = 4 +13:06:22 ============================================================================ +13:06:22 + + +waiting on router queue for slot.... +13:06:27 ============================================================================ +13:06:27 Slot Id : <175> +13:06:27 Transaction Type : REQUEST +13:06:27 Received From : +13:06:27 ============================================================================ +13:06:27 FNo. Len. Field Value +13:06:27 ============================================================================ +13:06:27 [ 1] [ 4] [0200] +13:06:27 [ 2] [ 16] [6213544001999496] +13:06:27 [ 3] [ 6] [011000] +13:06:27 [ 4] [ 12] [000077000000] +13:06:27 [ 7] [ 10] [0320130648] +13:06:27 [ 11] [ 6] [206127] +13:06:27 [ 12] [ 6] [125403] +13:06:27 [ 13] [ 4] [0320] +13:06:27 [ 14] [ 4] [4912] +13:06:27 [ 15] [ 4] [0320] +13:06:27 [ 18] [ 4] [6011] +13:06:27 [ 19] [ 3] [418] +13:06:27 [ 22] [ 3] [021] +13:06:27 [ 25] [ 2] [01] +13:06:27 [ 28] [ 9] [D00002000] +13:06:27 [ 32] [ 6] [198901] +13:06:27 [ 35] [ 32] [6213544001999496=491212019949522] +13:06:27 [ 37] [ 12] [507913206127] +13:06:27 [ 41] [ 8] [01529019] +13:06:27 [ 42] [ 15] [000000041529019] +13:06:27 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +13:06:27 [ 49] [ 3] [418] +13:06:27 [ 52] [ 16] [6126E1FAC926522A] +13:06:27 ============================================================================ +13:06:27 + + +waiting on router queue for slot.... +13:06:27 Sending to : +13:06:27 ============================================================================ +13:06:27 Sending to : +13:06:27 ============================================================================ +13:06:27 ============================================================================ +13:06:27 Slot Id : <175> +13:06:27 Transaction Type : REQUEST +13:06:27 Received From : +13:06:27 ============================================================================ +13:06:27 FNo. Len. Field Value +13:06:27 ============================================================================ +13:06:27 [ 1] [ 4] [0200] +13:06:27 [ 2] [ 16] [6213544001999496] +13:06:27 [ 3] [ 6] [011000] +13:06:27 [ 4] [ 12] [000077000000] +13:06:27 [ 7] [ 10] [0320130648] +13:06:27 [ 11] [ 6] [206127] +13:06:27 [ 12] [ 6] [125403] +13:06:27 [ 13] [ 4] [0320] +13:06:27 [ 14] [ 4] [4912] +13:06:27 [ 15] [ 4] [0320] +13:06:27 [ 18] [ 4] [6011] +13:06:27 [ 19] [ 3] [418] +13:06:27 [ 22] [ 3] [021] +13:06:27 [ 25] [ 2] [01] +13:06:27 [ 28] [ 9] [D00002000] +13:06:27 [ 32] [ 6] [198901] +13:06:27 [ 35] [ 32] [6213544001999496=491212019949522] +13:06:27 [ 37] [ 12] [507913206127] +13:06:27 [ 41] [ 8] [01529019] +13:06:27 [ 42] [ 15] [000000041529019] +13:06:27 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +13:06:27 [ 49] [ 3] [418] +13:06:27 [ 52] [ 16] [6126E1FAC926522A] +13:06:27 ============================================================================ +13:06:27 + + +waiting on router queue for slot.... +13:06:27 Sending to : +13:06:27 ============================================================================ +13:06:27 ============================================================================ +13:06:27 Slot Id : <175> +13:06:27 Transaction Type : REQUEST +13:06:27 Received From : +13:06:27 ============================================================================ +13:06:27 FNo. Len. Field Value +13:06:27 ============================================================================ +13:06:27 [ 1] [ 4] [0200] +13:06:27 [ 2] [ 16] [6213544001999496] +13:06:27 [ 3] [ 6] [011000] +13:06:27 [ 4] [ 12] [000077000000] +13:06:27 [ 7] [ 10] [0320130648] +13:06:27 [ 11] [ 6] [206127] +13:06:27 [ 12] [ 6] [125403] +13:06:27 [ 13] [ 4] [0320] +13:06:27 [ 14] [ 4] [4912] +13:06:27 [ 15] [ 4] [0320] +13:06:27 [ 18] [ 4] [6011] +13:06:27 [ 19] [ 3] [418] +13:06:27 [ 22] [ 3] [021] +13:06:27 [ 25] [ 2] [01] +13:06:27 [ 28] [ 9] [D00002000] +13:06:27 [ 32] [ 6] [198901] +13:06:27 [ 35] [ 32] [6213544001999496=491212019949522] +13:06:27 [ 37] [ 12] [507913206127] +13:06:27 [ 41] [ 8] [01529019] +13:06:27 [ 42] [ 15] [000000041529019] +13:06:27 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +13:06:27 [ 49] [ 3] [418] +13:06:27 [ 52] [ 16] [32FCFE1D3A4BAA0E] +13:06:27 ============================================================================ +13:06:27 + + +waiting on router queue for slot.... +13:06:27 Sending to : <0> +13:06:27 ============================================================================ +13:06:28 ============================================================================ +13:06:28 Slot Id : <128> +13:06:28 Transaction Type : REQUEST +13:06:28 Received From : +13:06:28 ============================================================================ +13:06:28 FNo. Len. Field Value +13:06:28 ============================================================================ +13:06:28 [ 1] [ 4] [0800] +13:06:28 [ 7] [ 10] [0320060535] +13:06:28 [ 11] [ 6] [156466] +13:06:28 [ 70] [ 3] [301] +13:06:28 ============================================================================ +13:06:28 + + +waiting on router queue for slot.... +13:06:28 Sending to : +13:06:28 ============================================================================ +13:06:28 ============================================================================ +13:06:28 Slot Id : <128> +13:06:28 Transaction Type : RESPONSE +13:06:28 Received From : +13:06:28 ============================================================================ +13:06:28 FNo. Len. Field Value +13:06:28 ============================================================================ +13:06:28 [ 1] [ 4] [0810] +13:06:28 [ 7] [ 10] [0320060535] +13:06:28 [ 11] [ 6] [156466] +13:06:28 [ 39] [ 2] [00] +13:06:28 [ 70] [ 3] [301] +13:06:28 ============================================================================ +13:06:28 Calculate Source COMM Id = 2 +13:06:28 ============================================================================ +13:06:28 + + +waiting on router queue for slot.... +13:06:28 ============================================================================ +13:06:28 Slot Id : <175> +13:06:28 Transaction Type : RESPONSE +13:06:28 Received From : +13:06:28 ============================================================================ +13:06:28 FNo. Len. Field Value +13:06:28 ============================================================================ +13:06:28 [ 1] [ 4] [0210] +13:06:28 [ 2] [ 16] [6213544001999496] +13:06:28 [ 3] [ 6] [011000] +13:06:28 [ 4] [ 12] [000077000000] +13:06:28 [ 7] [ 10] [0320130648] +13:06:28 [ 11] [ 6] [206127] +13:06:28 [ 12] [ 6] [125403] +13:06:28 [ 13] [ 4] [0320] +13:06:28 [ 15] [ 4] [0320] +13:06:28 [ 18] [ 4] [6011] +13:06:28 [ 19] [ 3] [418] +13:06:28 [ 32] [ 6] [198901] +13:06:28 [ 35] [ 32] [6213544001999496=491212019949522] +13:06:28 [ 37] [ 12] [507913206127] +13:06:28 [ 38] [ 6] [221593] +13:06:28 [ 39] [ 2] [00] +13:06:28 [ 41] [ 8] [01529019] +13:06:28 [ 49] [ 3] [418] +13:06:28 [ 54] [ 40] [1001418C0000055028361002418C000005502836] +13:06:28 ============================================================================ +13:06:28 Sending to : +13:06:28 ============================================================================ +13:06:28 + + +waiting on router queue for slot.... +13:06:29 ============================================================================ +13:06:29 Slot Id : <175> +13:06:29 Transaction Type : RESPONSE +13:06:29 Received From : +13:06:29 ============================================================================ +13:06:29 FNo. Len. Field Value +13:06:29 ============================================================================ +13:06:29 [ 1] [ 4] [0210] +13:06:29 [ 2] [ 16] [6213544001999496] +13:06:29 [ 3] [ 6] [011000] +13:06:29 [ 4] [ 12] [000077000000] +13:06:29 [ 7] [ 10] [0320130648] +13:06:29 [ 11] [ 6] [206127] +13:06:29 [ 12] [ 6] [125403] +13:06:29 [ 13] [ 4] [0320] +13:06:29 [ 15] [ 4] [0320] +13:06:29 [ 18] [ 4] [6011] +13:06:29 [ 19] [ 3] [418] +13:06:29 [ 32] [ 6] [198901] +13:06:29 [ 35] [ 32] [6213544001999496=491212019949522] +13:06:29 [ 37] [ 12] [507913206127] +13:06:29 [ 38] [ 6] [221593] +13:06:29 [ 39] [ 2] [00] +13:06:29 [ 41] [ 8] [01529019] +13:06:29 [ 49] [ 3] [418] +13:06:29 [ 54] [ 40] [1001418C0000055028361002418C000005502836] +13:06:29 ============================================================================ +13:06:29 Calculate Source COMM Id = 5 +13:06:29 ============================================================================ +13:06:29 + + +waiting on router queue for slot.... +13:06:41 ============================================================================ +13:06:41 Slot Id : <146> +13:06:41 Transaction Type : REQUEST +13:06:41 Received From : +13:06:41 ============================================================================ +13:06:41 FNo. Len. Field Value +13:06:41 ============================================================================ +13:06:41 [ 1] [ 4] [0800] +13:06:41 [ 7] [ 10] [0320060546] +13:06:41 [ 11] [ 6] [156467] +13:06:41 [ 70] [ 3] [301] +13:06:41 ============================================================================ +13:06:41 + + +waiting on router queue for slot.... +13:06:41 Sending to : +13:06:41 ============================================================================ +13:06:41 ============================================================================ +13:06:41 Slot Id : <146> +13:06:41 Transaction Type : RESPONSE +13:06:41 Received From : +13:06:41 ============================================================================ +13:06:41 FNo. Len. Field Value +13:06:41 ============================================================================ +13:06:41 [ 1] [ 4] [0810] +13:06:41 [ 7] [ 10] [0320060546] +13:06:41 [ 11] [ 6] [156467] +13:06:41 [ 39] [ 2] [00] +13:06:41 [ 70] [ 3] [301] +13:06:41 ============================================================================ +13:06:41 Calculate Source COMM Id = 2 +13:06:41 ============================================================================ +13:06:41 + + +waiting on router queue for slot.... +13:06:55 ============================================================================ +13:06:55 Slot Id : <141> +13:06:55 Transaction Type : REQUEST +13:06:55 Received From : +13:06:55 ============================================================================ +13:06:55 FNo. Len. Field Value +13:06:55 ============================================================================ +13:06:55 [ 1] [ 4] [0200] +13:06:55 [ 2] [ 16] [6213545000761415] +13:06:55 [ 3] [ 6] [311000] +13:06:55 [ 4] [ 12] [000000000000] +13:06:55 [ 7] [ 10] [0320131443] +13:06:55 [ 11] [ 6] [003100] +13:06:55 [ 12] [ 6] [131443] +13:06:55 [ 13] [ 4] [0320] +13:06:55 [ 14] [ 4] [4912] +13:06:55 [ 15] [ 4] [0320] +13:06:55 [ 18] [ 4] [6011] +13:06:55 [ 22] [ 3] [900] +13:06:55 [ 25] [ 2] [02] +13:06:55 [ 28] [ 9] [000000000] +13:06:55 [ 32] [ 6] [220699] +13:06:55 [ 35] [ 32] [6213545000761415=491212016141338] +13:06:55 [ 37] [ 12] [507900186752] +13:06:55 [ 41] [ 8] [08000100] +13:06:55 [ 42] [ 15] [APTRA ] +13:06:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:06:55 [ 49] [ 3] [418] +13:06:55 [ 52] [ 16] [A59A4144B9DB1B07] +13:06:55 ============================================================================ +13:06:55 + + +waiting on router queue for slot.... +13:06:55 Sending to : +13:06:55 ============================================================================ +13:06:55 Sending to : +13:06:55 ============================================================================ +13:06:56 ============================================================================ +13:06:56 Slot Id : <170> +13:06:56 Transaction Type : REQUEST +13:06:56 Received From : +13:06:56 ============================================================================ +13:06:56 FNo. Len. Field Value +13:06:56 ============================================================================ +13:06:56 [ 1] [ 4] [0800] +13:06:56 [ 7] [ 10] [0320060603] +13:06:56 [ 11] [ 6] [156468] +13:06:56 [ 70] [ 3] [301] +13:06:56 ============================================================================ +13:06:56 + + +waiting on router queue for slot.... +13:06:56 Sending to : +13:06:56 ============================================================================ +13:06:56 ============================================================================ +13:06:56 Slot Id : <170> +13:06:56 Transaction Type : RESPONSE +13:06:56 Received From : +13:06:56 ============================================================================ +13:06:56 FNo. Len. Field Value +13:06:56 ============================================================================ +13:06:56 [ 1] [ 4] [0810] +13:06:56 [ 7] [ 10] [0320060603] +13:06:56 [ 11] [ 6] [156468] +13:06:56 [ 39] [ 2] [00] +13:06:56 [ 70] [ 3] [301] +13:06:56 ============================================================================ +13:06:56 Calculate Source COMM Id = 2 +13:06:56 ============================================================================ +13:06:56 + + +waiting on router queue for slot.... +13:06:56 ============================================================================ +13:06:56 Slot Id : <141> +13:06:56 Transaction Type : REQUEST +13:06:56 Received From : +13:06:56 ============================================================================ +13:06:56 FNo. Len. Field Value +13:06:56 ============================================================================ +13:06:56 [ 1] [ 4] [0200] +13:06:56 [ 2] [ 16] [6213545000761415] +13:06:56 [ 3] [ 6] [311000] +13:06:56 [ 4] [ 12] [000000000000] +13:06:56 [ 7] [ 10] [0320131443] +13:06:56 [ 11] [ 6] [003100] +13:06:56 [ 12] [ 6] [131443] +13:06:56 [ 13] [ 4] [0320] +13:06:56 [ 14] [ 4] [4912] +13:06:56 [ 15] [ 4] [0320] +13:06:56 [ 18] [ 4] [6011] +13:06:56 [ 22] [ 3] [900] +13:06:56 [ 25] [ 2] [02] +13:06:56 [ 28] [ 9] [000000000] +13:06:56 [ 32] [ 6] [220699] +13:06:56 [ 35] [ 32] [6213545000761415=491212016141338] +13:06:56 [ 37] [ 12] [507900186752] +13:06:56 [ 41] [ 8] [08000100] +13:06:56 [ 42] [ 15] [APTRA ] +13:06:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:06:56 [ 49] [ 3] [418] +13:06:56 [ 52] [ 16] [A59A4144B9DB1B07] +13:06:56 ============================================================================ +13:06:56 + + +waiting on router queue for slot.... +13:06:56 Sending to : +13:06:56 ============================================================================ +13:06:56 ============================================================================ +13:06:56 Slot Id : <141> +13:06:56 Transaction Type : REQUEST +13:06:56 Received From : +13:06:56 ============================================================================ +13:06:56 FNo. Len. Field Value +13:06:56 ============================================================================ +13:06:56 [ 1] [ 4] [0200] +13:06:56 [ 2] [ 16] [6213545000761415] +13:06:56 [ 3] [ 6] [311000] +13:06:56 [ 4] [ 12] [000000000000] +13:06:56 [ 7] [ 10] [0320131443] +13:06:56 [ 11] [ 6] [003100] +13:06:56 [ 12] [ 6] [131443] +13:06:56 [ 13] [ 4] [0320] +13:06:56 [ 14] [ 4] [4912] +13:06:56 [ 15] [ 4] [0320] +13:06:56 [ 18] [ 4] [6011] +13:06:56 [ 22] [ 3] [900] +13:06:56 [ 25] [ 2] [02] +13:06:56 [ 28] [ 9] [000000000] +13:06:56 [ 32] [ 6] [220699] +13:06:56 [ 35] [ 32] [6213545000761415=491212016141338] +13:06:56 [ 37] [ 12] [507900186752] +13:06:56 [ 41] [ 8] [08000100] +13:06:56 [ 42] [ 15] [APTRA ] +13:06:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:06:56 [ 49] [ 3] [418] +13:06:56 [ 52] [ 16] [3A226BB025EAC1B8] +13:06:56 ============================================================================ +13:06:56 + + +waiting on router queue for slot.... +13:06:56 Sending to : <0> +13:06:56 ============================================================================ +13:06:57 ============================================================================ +13:06:57 Slot Id : <141> +13:06:57 Transaction Type : RESPONSE +13:06:57 Received From : +13:06:57 ============================================================================ +13:06:57 FNo. Len. Field Value +13:06:57 ============================================================================ +13:06:57 [ 1] [ 4] [0210] +13:06:57 [ 2] [ 16] [6213545000761415] +13:06:57 [ 3] [ 6] [311000] +13:06:57 [ 4] [ 12] [000000000000] +13:06:57 [ 7] [ 10] [0320131443] +13:06:57 [ 11] [ 6] [003100] +13:06:57 [ 12] [ 6] [131443] +13:06:57 [ 13] [ 4] [0320] +13:06:57 [ 15] [ 4] [0320] +13:06:57 [ 18] [ 4] [6011] +13:06:57 [ 32] [ 6] [220699] +13:06:57 [ 35] [ 32] [6213545000761415=491212016141338] +13:06:57 [ 37] [ 12] [507900186752] +13:06:57 [ 38] [ 6] [830642] +13:06:57 [ 39] [ 2] [00] +13:06:57 [ 41] [ 8] [08000100] +13:06:57 [ 49] [ 3] [418] +13:06:57 [ 54] [ 40] [1001418C0001304855181002418C000130485518] +13:06:57 ============================================================================ +13:06:57 Sending to : +13:06:57 ============================================================================ +13:06:57 + + +waiting on router queue for slot.... +13:06:58 ============================================================================ +13:06:58 Slot Id : <141> +13:06:58 Transaction Type : RESPONSE +13:06:58 Received From : +13:06:58 ============================================================================ +13:06:58 FNo. Len. Field Value +13:06:58 ============================================================================ +13:06:58 [ 1] [ 4] [0210] +13:06:58 [ 2] [ 16] [6213545000761415] +13:06:58 [ 3] [ 6] [311000] +13:06:58 [ 4] [ 12] [000000000000] +13:06:58 [ 7] [ 10] [0320131443] +13:06:58 [ 11] [ 6] [003100] +13:06:58 [ 12] [ 6] [131443] +13:06:58 [ 13] [ 4] [0320] +13:06:58 [ 15] [ 4] [0320] +13:06:58 [ 18] [ 4] [6011] +13:06:58 [ 32] [ 6] [220699] +13:06:58 [ 35] [ 32] [6213545000761415=491212016141338] +13:06:58 [ 37] [ 12] [507900186752] +13:06:58 [ 38] [ 6] [830642] +13:06:58 [ 39] [ 2] [00] +13:06:58 [ 41] [ 8] [08000100] +13:06:58 [ 49] [ 3] [418] +13:06:58 [ 54] [ 40] [1001418C0001304855181002418C000130485518] +13:06:58 ============================================================================ +13:06:58 Calculate Source COMM Id = 1 +13:06:58 ============================================================================ +13:06:58 + + +waiting on router queue for slot.... +13:07:00 ============================================================================ +13:07:00 Slot Id : <157> +13:07:00 Transaction Type : REQUEST +13:07:00 Received From : +13:07:00 ============================================================================ +13:07:00 FNo. Len. Field Value +13:07:00 ============================================================================ +13:07:00 [ 1] [ 4] [0800] +13:07:00 [ 2] [ 5] [02531] +13:07:00 [ 3] [ 6] [579138] +13:07:00 [ 7] [ 10] [0320060700] +13:07:00 [ 11] [ 6] [807173] +13:07:00 [ 15] [ 10] [0320060700] +13:07:00 [ 37] [ 11] [57913807173] +13:07:00 [ 70] [ 3] [001] +13:07:00 ============================================================================ +13:07:00 + + +waiting on router queue for slot.... +13:07:00 ============================================================================ +13:07:00 Slot Id : <157> +13:07:00 Transaction Type : RESPONSE +13:07:00 Received From : +13:07:00 ============================================================================ +13:07:00 FNo. Len. Field Value +13:07:00 ============================================================================ +13:07:00 [ 1] [ 4] [0810] +13:07:00 [ 7] [ 10] [0320060700] +13:07:00 [ 11] [ 6] [807173] +13:07:00 [ 15] [ 4] [0320] +13:07:00 [ 37] [ 12] [57913807173] +13:07:00 [ 39] [ 2] [00] +13:07:00 [ 70] [ 3] [001] +13:07:00 ============================================================================ +13:07:00 Sending to : +13:07:00 ============================================================================ +13:07:00 + + +waiting on router queue for slot.... +13:07:06 ============================================================================ +13:07:06 Slot Id : <172> +13:07:06 Transaction Type : REQUEST +13:07:06 Received From : +13:07:06 ============================================================================ +13:07:06 FNo. Len. Field Value +13:07:06 ============================================================================ +13:07:06 [ 1] [ 4] [0200] +13:07:06 [ 2] [ 16] [6688990060026430] +13:07:06 [ 3] [ 6] [010000] +13:07:06 [ 4] [ 12] [000020000000] +13:07:06 [ 7] [ 10] [0320130702] +13:07:06 [ 11] [ 6] [752854] +13:07:06 [ 12] [ 6] [130702] +13:07:06 [ 13] [ 4] [0320] +13:07:06 [ 15] [ 4] [0320] +13:07:06 [ 18] [ 4] [6011] +13:07:06 [ 22] [ 3] [900] +13:07:06 [ 25] [ 2] [02] +13:07:06 [ 28] [ 9] [D00002000] +13:07:06 [ 32] [ 6] [621354] +13:07:06 [ 35] [ 37] [6688990060026430=98021261880931500000] +13:07:06 [ 37] [ 12] [507904153894] +13:07:06 [ 41] [ 8] [20001000] +13:07:06 [ 42] [ 15] [NATIVE ] +13:07:06 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:07:06 [ 49] [ 3] [418] +13:07:06 [ 52] [ 16] [D7066E46EF74CB30] +13:07:06 ============================================================================ +13:07:06 + + +waiting on router queue for slot.... +13:07:06 Sending to : +13:07:06 ============================================================================ +13:07:06 Sending to : +13:07:06 ============================================================================ +13:07:07 ============================================================================ +13:07:07 Slot Id : <172> +13:07:07 Transaction Type : REQUEST +13:07:07 Received From : +13:07:07 ============================================================================ +13:07:07 FNo. Len. Field Value +13:07:07 ============================================================================ +13:07:07 [ 1] [ 4] [0200] +13:07:07 [ 2] [ 16] [6688990060026430] +13:07:07 [ 3] [ 6] [010000] +13:07:07 [ 4] [ 12] [000020000000] +13:07:07 [ 7] [ 10] [0320130702] +13:07:07 [ 11] [ 6] [752854] +13:07:07 [ 12] [ 6] [130702] +13:07:07 [ 13] [ 4] [0320] +13:07:07 [ 15] [ 4] [0320] +13:07:07 [ 18] [ 4] [6011] +13:07:07 [ 22] [ 3] [900] +13:07:07 [ 25] [ 2] [02] +13:07:07 [ 28] [ 9] [D00002000] +13:07:07 [ 32] [ 6] [621354] +13:07:07 [ 35] [ 37] [6688990060026430=98021261880931500000] +13:07:07 [ 37] [ 12] [507904153894] +13:07:07 [ 41] [ 8] [20001000] +13:07:07 [ 42] [ 15] [NATIVE ] +13:07:07 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:07:07 [ 49] [ 3] [418] +13:07:07 [ 52] [ 16] [D7066E46EF74CB30] +13:07:07 ============================================================================ +13:07:07 + + +waiting on router queue for slot.... +13:07:07 Sending to : +13:07:07 ============================================================================ +13:07:07 ============================================================================ +13:07:07 Slot Id : <172> +13:07:07 Transaction Type : REQUEST +13:07:07 Received From : +13:07:07 ============================================================================ +13:07:07 FNo. Len. Field Value +13:07:07 ============================================================================ +13:07:07 [ 1] [ 4] [0200] +13:07:07 [ 2] [ 16] [6688990060026430] +13:07:07 [ 3] [ 6] [010000] +13:07:07 [ 4] [ 12] [000020000000] +13:07:07 [ 7] [ 10] [0320130702] +13:07:07 [ 11] [ 6] [752854] +13:07:07 [ 12] [ 6] [130702] +13:07:07 [ 13] [ 4] [0320] +13:07:07 [ 15] [ 4] [0320] +13:07:07 [ 18] [ 4] [6011] +13:07:07 [ 22] [ 3] [900] +13:07:07 [ 25] [ 2] [02] +13:07:07 [ 28] [ 9] [D00002000] +13:07:07 [ 32] [ 6] [621354] +13:07:07 [ 35] [ 37] [6688990060026430=98021261880931500000] +13:07:07 [ 37] [ 12] [507904153894] +13:07:07 [ 41] [ 8] [20001000] +13:07:07 [ 42] [ 15] [NATIVE ] +13:07:07 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:07:07 [ 49] [ 3] [418] +13:07:07 [ 52] [ 16] [FD97F155CCADE350] +13:07:07 ============================================================================ +13:07:07 + + +waiting on router queue for slot.... +13:07:07 Sending to : <4> +13:07:07 ============================================================================ +13:07:07 ============================================================================ +13:07:07 Slot Id : <151> +13:07:07 Transaction Type : REQUEST +13:07:07 Received From : +13:07:07 ============================================================================ +13:07:07 FNo. Len. Field Value +13:07:07 ============================================================================ +13:07:07 [ 1] [ 4] [0800] +13:07:07 [ 7] [ 10] [0320060614] +13:07:07 [ 11] [ 6] [156469] +13:07:07 [ 70] [ 3] [301] +13:07:07 ============================================================================ +13:07:07 + + +waiting on router queue for slot.... +13:07:07 Sending to : +13:07:07 ============================================================================ +13:07:07 ============================================================================ +13:07:07 Slot Id : <151> +13:07:07 Transaction Type : RESPONSE +13:07:07 Received From : +13:07:07 ============================================================================ +13:07:07 FNo. Len. Field Value +13:07:07 ============================================================================ +13:07:07 [ 1] [ 4] [0810] +13:07:07 [ 7] [ 10] [0320060614] +13:07:07 [ 11] [ 6] [156469] +13:07:07 [ 39] [ 2] [00] +13:07:07 [ 70] [ 3] [301] +13:07:07 ============================================================================ +13:07:07 Calculate Source COMM Id = 2 +13:07:07 ============================================================================ +13:07:07 + + +waiting on router queue for slot.... +13:07:08 ============================================================================ +13:07:08 Slot Id : <172> +13:07:08 Transaction Type : RESPONSE +13:07:08 Received From : +13:07:08 ============================================================================ +13:07:08 FNo. Len. Field Value +13:07:08 ============================================================================ +13:07:08 [ 1] [ 4] [0210] +13:07:08 [ 2] [ 16] [6688990060026430] +13:07:08 [ 3] [ 6] [010000] +13:07:08 [ 4] [ 12] [000020000000] +13:07:08 [ 11] [ 6] [752854] +13:07:08 [ 12] [ 6] [130702] +13:07:08 [ 15] [ 4] [0320] +13:07:08 [ 18] [ 4] [6011] +13:07:08 [ 32] [ 6] [621354] +13:07:08 [ 35] [ 37] [6688990060026430=98021261880931500000] +13:07:08 [ 37] [ 12] [507904153894] +13:07:08 [ 38] [ 6] [608386] +13:07:08 [ 39] [ 2] [00] +13:07:08 [ 41] [ 8] [20001000] +13:07:08 [ 49] [ 3] [418] +13:07:08 [ 54] [ 20] [0002418C000131351874] +13:07:08 ============================================================================ +13:07:08 Sending to : +13:07:08 ============================================================================ +13:07:08 + + +waiting on router queue for slot.... +13:07:09 ============================================================================ +13:07:09 Slot Id : <172> +13:07:09 Transaction Type : RESPONSE +13:07:09 Received From : +13:07:09 ============================================================================ +13:07:09 FNo. Len. Field Value +13:07:09 ============================================================================ +13:07:09 [ 1] [ 4] [0210] +13:07:09 [ 2] [ 16] [6688990060026430] +13:07:09 [ 3] [ 6] [010000] +13:07:09 [ 4] [ 12] [000020000000] +13:07:09 [ 11] [ 6] [752854] +13:07:09 [ 12] [ 6] [130702] +13:07:09 [ 15] [ 4] [0320] +13:07:09 [ 18] [ 4] [6011] +13:07:09 [ 32] [ 6] [621354] +13:07:09 [ 35] [ 37] [6688990060026430=98021261880931500000] +13:07:09 [ 37] [ 12] [507904153894] +13:07:09 [ 38] [ 6] [608386] +13:07:09 [ 39] [ 2] [00] +13:07:09 [ 41] [ 8] [20001000] +13:07:09 [ 49] [ 3] [418] +13:07:09 [ 54] [ 20] [0002418C000131351874] +13:07:09 ============================================================================ +13:07:09 Calculate Source COMM Id = 0 +13:07:09 ============================================================================ +13:07:09 + + +waiting on router queue for slot.... +13:07:17 ============================================================================ +13:07:17 Slot Id : <164> +13:07:17 Transaction Type : REQUEST +13:07:17 Received From : +13:07:17 ============================================================================ +13:07:17 FNo. Len. Field Value +13:07:17 ============================================================================ +13:07:17 [ 1] [ 4] [0800] +13:07:17 [ 7] [ 10] [0320060625] +13:07:17 [ 11] [ 6] [156470] +13:07:17 [ 70] [ 3] [301] +13:07:17 ============================================================================ +13:07:17 + + +waiting on router queue for slot.... +13:07:17 Sending to : +13:07:17 ============================================================================ +13:07:17 ============================================================================ +13:07:17 Slot Id : <164> +13:07:17 Transaction Type : RESPONSE +13:07:17 Received From : +13:07:17 ============================================================================ +13:07:17 FNo. Len. Field Value +13:07:17 ============================================================================ +13:07:17 [ 1] [ 4] [0810] +13:07:17 [ 7] [ 10] [0320060625] +13:07:17 [ 11] [ 6] [156470] +13:07:17 [ 39] [ 2] [00] +13:07:17 [ 70] [ 3] [301] +13:07:17 ============================================================================ +13:07:17 Calculate Source COMM Id = 2 +13:07:17 ============================================================================ +13:07:17 + + +waiting on router queue for slot.... +13:07:22 ============================================================================ +13:07:22 Slot Id : <186> +13:07:22 Transaction Type : REQUEST +13:07:22 Received From : +13:07:22 ============================================================================ +13:07:22 FNo. Len. Field Value +13:07:22 ============================================================================ +13:07:22 [ 1] [ 4] [0200] +13:07:22 [ 2] [ 16] [1808931700026303] +13:07:22 [ 3] [ 6] [011000] +13:07:22 [ 4] [ 12] [000015000000] +13:07:22 [ 7] [ 10] [0320130718] +13:07:22 [ 11] [ 6] [752915] +13:07:22 [ 12] [ 6] [130718] +13:07:22 [ 13] [ 4] [0320] +13:07:22 [ 15] [ 4] [0320] +13:07:22 [ 18] [ 4] [6011] +13:07:22 [ 22] [ 3] [900] +13:07:22 [ 25] [ 2] [02] +13:07:22 [ 28] [ 9] [D00002000] +13:07:22 [ 32] [ 6] [621354] +13:07:22 [ 35] [ 27] [1808931700026303=1803500215] +13:07:22 [ 37] [ 12] [507902723079] +13:07:22 [ 41] [ 8] [01006600] +13:07:22 [ 42] [ 15] [NATIVE ] +13:07:22 [ 43] [ 40] [SHOPPING MALL ChanthaboulyLAO] +13:07:22 [ 49] [ 3] [418] +13:07:22 [ 52] [ 16] [B56CAEC4D75E8B86] +13:07:22 ============================================================================ +13:07:22 + + +waiting on router queue for slot.... +13:07:22 Sending to : +13:07:22 ============================================================================ +13:07:22 Sending to : +13:07:22 ============================================================================ +13:07:22 ============================================================================ +13:07:22 Slot Id : <186> +13:07:22 Transaction Type : REQUEST +13:07:22 Received From : +13:07:22 ============================================================================ +13:07:22 FNo. Len. Field Value +13:07:22 ============================================================================ +13:07:22 [ 1] [ 4] [0200] +13:07:22 [ 2] [ 16] [1808931700026303] +13:07:22 [ 3] [ 6] [011000] +13:07:22 [ 4] [ 12] [000015000000] +13:07:22 [ 7] [ 10] [0320130718] +13:07:22 [ 11] [ 6] [752915] +13:07:22 [ 12] [ 6] [130718] +13:07:22 [ 13] [ 4] [0320] +13:07:22 [ 15] [ 4] [0320] +13:07:22 [ 18] [ 4] [6011] +13:07:22 [ 22] [ 3] [900] +13:07:22 [ 25] [ 2] [02] +13:07:22 [ 28] [ 9] [D00002000] +13:07:22 [ 32] [ 6] [621354] +13:07:22 [ 35] [ 27] [1808931700026303=1803500215] +13:07:22 [ 37] [ 12] [507902723079] +13:07:22 [ 41] [ 8] [01006600] +13:07:22 [ 42] [ 15] [NATIVE ] +13:07:22 [ 43] [ 40] [SHOPPING MALL ChanthaboulyLAO] +13:07:22 [ 49] [ 3] [418] +13:07:22 [ 52] [ 16] [B56CAEC4D75E8B86] +13:07:22 ============================================================================ +13:07:22 + + +waiting on router queue for slot.... +13:07:22 Sending to : +13:07:22 ============================================================================ +13:07:22 ============================================================================ +13:07:22 Slot Id : <186> +13:07:22 Transaction Type : REQUEST +13:07:22 Received From : +13:07:22 ============================================================================ +13:07:22 FNo. Len. Field Value +13:07:22 ============================================================================ +13:07:22 [ 1] [ 4] [0200] +13:07:22 [ 2] [ 16] [1808931700026303] +13:07:22 [ 3] [ 6] [011000] +13:07:22 [ 4] [ 12] [000015000000] +13:07:22 [ 7] [ 10] [0320130718] +13:07:22 [ 11] [ 6] [752915] +13:07:22 [ 12] [ 6] [130718] +13:07:22 [ 13] [ 4] [0320] +13:07:22 [ 15] [ 4] [0320] +13:07:22 [ 18] [ 4] [6011] +13:07:22 [ 22] [ 3] [900] +13:07:22 [ 25] [ 2] [02] +13:07:22 [ 28] [ 9] [D00002000] +13:07:22 [ 32] [ 6] [621354] +13:07:22 [ 35] [ 27] [1808931700026303=1803500215] +13:07:22 [ 37] [ 12] [507902723079] +13:07:22 [ 41] [ 8] [01006600] +13:07:22 [ 42] [ 15] [NATIVE ] +13:07:22 [ 43] [ 40] [SHOPPING MALL ChanthaboulyLAO] +13:07:22 [ 49] [ 3] [418] +13:07:22 [ 52] [ 16] [98E71ED3C8120786] +13:07:22 ============================================================================ +13:07:22 + + +waiting on router queue for slot.... +13:07:22 Sending to : <2> +13:07:22 ============================================================================ +13:07:28 ============================================================================ +13:07:28 Slot Id : <186> +13:07:28 Transaction Type : RESPONSE +13:07:28 Received From : +13:07:28 ============================================================================ +13:07:28 FNo. Len. Field Value +13:07:28 ============================================================================ +13:07:28 [ 1] [ 4] [0210] +13:07:28 [ 2] [ 16] [1808931700026303] +13:07:28 [ 3] [ 6] [011000] +13:07:28 [ 4] [ 12] [000015000000] +13:07:28 [ 6] [ 12] [000015000000] +13:07:28 [ 7] [ 10] [0320130718] +13:07:28 [ 11] [ 6] [752915] +13:07:28 [ 12] [ 6] [130718] +13:07:28 [ 13] [ 4] [0320] +13:07:28 [ 18] [ 4] [6011] +13:07:28 [ 19] [ 3] [418] +13:07:28 [ 22] [ 3] [021] +13:07:28 [ 32] [ 6] [621354] +13:07:28 [ 35] [ 27] [1808931700026303=1803500215] +13:07:28 [ 37] [ 12] [507902723079] +13:07:28 [ 38] [ 6] [752915] +13:07:28 [ 39] [ 2] [00] +13:07:28 [ 41] [ 8] [01006600] +13:07:28 [ 49] [ 3] [418] +13:07:28 [ 52] [ 16] [98E71ED3C8120786] +13:07:28 [ 54] [ 20] [1001418C000095353500] +13:07:28 ============================================================================ +13:07:28 Sending to : +13:07:28 ============================================================================ +13:07:28 + + +waiting on router queue for slot.... +13:07:29 ============================================================================ +13:07:29 Slot Id : <186> +13:07:29 Transaction Type : RESPONSE +13:07:29 Received From : +13:07:29 ============================================================================ +13:07:29 FNo. Len. Field Value +13:07:29 ============================================================================ +13:07:29 [ 1] [ 4] [0210] +13:07:29 [ 2] [ 16] [1808931700026303] +13:07:29 [ 3] [ 6] [011000] +13:07:29 [ 4] [ 12] [000015000000] +13:07:29 [ 6] [ 12] [000015000000] +13:07:29 [ 7] [ 10] [0320130718] +13:07:29 [ 11] [ 6] [752915] +13:07:29 [ 12] [ 6] [130718] +13:07:29 [ 13] [ 4] [0320] +13:07:29 [ 18] [ 4] [6011] +13:07:29 [ 19] [ 3] [418] +13:07:29 [ 22] [ 3] [021] +13:07:29 [ 32] [ 6] [621354] +13:07:29 [ 35] [ 27] [1808931700026303=1803500215] +13:07:29 [ 37] [ 12] [507902723079] +13:07:29 [ 38] [ 6] [752915] +13:07:29 [ 39] [ 2] [00] +13:07:29 [ 41] [ 8] [01006600] +13:07:29 [ 49] [ 3] [418] +13:07:29 [ 52] [ 16] [98E71ED3C8120786] +13:07:29 [ 54] [ 20] [1001418C000095353500] +13:07:29 ============================================================================ +13:07:29 Calculate Source COMM Id = 0 +13:07:29 ============================================================================ +13:07:29 + + +waiting on router queue for slot.... +13:07:30 ============================================================================ +13:07:30 Slot Id : <148> +13:07:30 Transaction Type : REQUEST +13:07:30 Received From : +13:07:30 ============================================================================ +13:07:30 FNo. Len. Field Value +13:07:30 ============================================================================ +13:07:30 [ 1] [ 4] [0200] +13:07:30 [ 2] [ 16] [6213545000774046] +13:07:30 [ 3] [ 6] [300000] +13:07:30 [ 4] [ 12] [000000000000] +13:07:30 [ 7] [ 10] [0320130521] +13:07:30 [ 11] [ 6] [945732] +13:07:30 [ 12] [ 6] [130521] +13:07:30 [ 13] [ 4] [0320] +13:07:30 [ 15] [ 4] [0320] +13:07:30 [ 18] [ 4] [6011] +13:07:30 [ 19] [ 3] [418] +13:07:30 [ 22] [ 3] [021] +13:07:30 [ 25] [ 2] [01] +13:07:30 [ 28] [ 9] [D00000000] +13:07:30 [ 32] [ 6] [668899] +13:07:30 [ 35] [ 32] [6213545000774046=491212017404908] +13:07:30 [ 37] [ 12] [507901963576] +13:07:30 [ 41] [ 8] [03020019] +13:07:30 [ 42] [ 15] [APT ] +13:07:30 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:07:30 [ 49] [ 3] [418] +13:07:30 [ 52] [ 16] [0004E7C02A047E50] +13:07:30 ============================================================================ +13:07:30 + + +waiting on router queue for slot.... +13:07:30 Sending to : +13:07:30 ============================================================================ +13:07:30 Sending to : +13:07:30 ============================================================================ +13:07:31 ============================================================================ +13:07:31 Slot Id : <148> +13:07:31 Transaction Type : REQUEST +13:07:31 Received From : +13:07:31 ============================================================================ +13:07:31 FNo. Len. Field Value +13:07:31 ============================================================================ +13:07:31 [ 1] [ 4] [0200] +13:07:31 [ 2] [ 16] [6213545000774046] +13:07:31 [ 3] [ 6] [300000] +13:07:31 [ 4] [ 12] [000000000000] +13:07:31 [ 7] [ 10] [0320130521] +13:07:31 [ 11] [ 6] [945732] +13:07:31 [ 12] [ 6] [130521] +13:07:31 [ 13] [ 4] [0320] +13:07:31 [ 15] [ 4] [0320] +13:07:31 [ 18] [ 4] [6011] +13:07:31 [ 19] [ 3] [418] +13:07:31 [ 22] [ 3] [021] +13:07:31 [ 25] [ 2] [01] +13:07:31 [ 28] [ 9] [D00000000] +13:07:31 [ 32] [ 6] [668899] +13:07:31 [ 35] [ 32] [6213545000774046=491212017404908] +13:07:31 [ 37] [ 12] [507901963576] +13:07:31 [ 41] [ 8] [03020019] +13:07:31 [ 42] [ 15] [APT ] +13:07:31 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:07:31 [ 49] [ 3] [418] +13:07:31 [ 52] [ 16] [0004E7C02A047E50] +13:07:31 ============================================================================ +13:07:31 + + +waiting on router queue for slot.... +13:07:31 Sending to : +13:07:31 ============================================================================ +13:07:31 ============================================================================ +13:07:31 Slot Id : <148> +13:07:31 Transaction Type : REQUEST +13:07:31 Received From : +13:07:31 ============================================================================ +13:07:31 FNo. Len. Field Value +13:07:31 ============================================================================ +13:07:31 [ 1] [ 4] [0200] +13:07:31 [ 2] [ 16] [6213545000774046] +13:07:31 [ 3] [ 6] [300000] +13:07:31 [ 4] [ 12] [000000000000] +13:07:31 [ 7] [ 10] [0320130521] +13:07:31 [ 11] [ 6] [945732] +13:07:31 [ 12] [ 6] [130521] +13:07:31 [ 13] [ 4] [0320] +13:07:31 [ 15] [ 4] [0320] +13:07:31 [ 18] [ 4] [6011] +13:07:31 [ 19] [ 3] [418] +13:07:31 [ 22] [ 3] [021] +13:07:31 [ 25] [ 2] [01] +13:07:31 [ 28] [ 9] [D00000000] +13:07:31 [ 32] [ 6] [668899] +13:07:31 [ 35] [ 32] [6213545000774046=491212017404908] +13:07:31 [ 37] [ 12] [507901963576] +13:07:31 [ 41] [ 8] [03020019] +13:07:31 [ 42] [ 15] [APT ] +13:07:31 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:07:31 [ 49] [ 3] [418] +13:07:31 [ 52] [ 16] [8B7E305D659A8396] +13:07:31 ============================================================================ +13:07:31 + + +waiting on router queue for slot.... +13:07:31 Sending to : <0> +13:07:31 ============================================================================ +13:07:32 ============================================================================ +13:07:32 Slot Id : <148> +13:07:32 Transaction Type : RESPONSE +13:07:32 Received From : +13:07:32 ============================================================================ +13:07:32 FNo. Len. Field Value +13:07:32 ============================================================================ +13:07:32 [ 1] [ 4] [0210] +13:07:32 [ 2] [ 16] [6213545000774046] +13:07:32 [ 3] [ 6] [300000] +13:07:32 [ 4] [ 12] [000000000000] +13:07:32 [ 7] [ 10] [0320130521] +13:07:32 [ 11] [ 6] [945732] +13:07:32 [ 12] [ 6] [130521] +13:07:32 [ 13] [ 4] [0320] +13:07:32 [ 15] [ 4] [0320] +13:07:32 [ 18] [ 4] [6011] +13:07:32 [ 19] [ 3] [418] +13:07:32 [ 32] [ 6] [668899] +13:07:32 [ 35] [ 32] [6213545000774046=491212017404908] +13:07:32 [ 37] [ 12] [507901963576] +13:07:32 [ 38] [ 6] [710322] +13:07:32 [ 39] [ 2] [00] +13:07:32 [ 41] [ 8] [03020019] +13:07:32 [ 49] [ 3] [418] +13:07:32 [ 54] [ 40] [0001418C0002362762390002418C000236276239] +13:07:32 ============================================================================ +13:07:32 Sending to : +13:07:32 ============================================================================ +13:07:32 + + +waiting on router queue for slot.... +13:07:33 ============================================================================ +13:07:33 Slot Id : <148> +13:07:33 Transaction Type : RESPONSE +13:07:33 Received From : +13:07:33 ============================================================================ +13:07:33 FNo. Len. Field Value +13:07:33 ============================================================================ +13:07:33 [ 1] [ 4] [0210] +13:07:33 [ 2] [ 16] [6213545000774046] +13:07:33 [ 3] [ 6] [300000] +13:07:33 [ 4] [ 12] [000000000000] +13:07:33 [ 7] [ 10] [0320130521] +13:07:33 [ 11] [ 6] [945732] +13:07:33 [ 12] [ 6] [130521] +13:07:33 [ 13] [ 4] [0320] +13:07:33 [ 15] [ 4] [0320] +13:07:33 [ 18] [ 4] [6011] +13:07:33 [ 19] [ 3] [418] +13:07:33 [ 32] [ 6] [668899] +13:07:33 [ 35] [ 32] [6213545000774046=491212017404908] +13:07:33 [ 37] [ 12] [507901963576] +13:07:33 [ 38] [ 6] [710322] +13:07:33 [ 39] [ 2] [00] +13:07:33 [ 41] [ 8] [03020019] +13:07:33 [ 49] [ 3] [418] +13:07:33 [ 54] [ 40] [0001418C0002362762390002418C000236276239] +13:07:33 ============================================================================ +13:07:33 Calculate Source COMM Id = 4 +13:07:33 ============================================================================ +13:07:33 + + +waiting on router queue for slot.... +13:07:38 ============================================================================ +13:07:38 Slot Id : <126> +13:07:38 Transaction Type : REQUEST +13:07:38 Received From : +13:07:38 ============================================================================ +13:07:38 FNo. Len. Field Value +13:07:38 ============================================================================ +13:07:38 [ 1] [ 4] [0800] +13:07:38 [ 7] [ 10] [0320060645] +13:07:38 [ 11] [ 6] [156471] +13:07:38 [ 70] [ 3] [301] +13:07:38 ============================================================================ +13:07:38 + + +waiting on router queue for slot.... +13:07:38 Sending to : +13:07:38 ============================================================================ +13:07:38 ============================================================================ +13:07:38 Slot Id : <126> +13:07:38 Transaction Type : RESPONSE +13:07:38 Received From : +13:07:38 ============================================================================ +13:07:38 FNo. Len. Field Value +13:07:38 ============================================================================ +13:07:38 [ 1] [ 4] [0810] +13:07:38 [ 7] [ 10] [0320060645] +13:07:38 [ 11] [ 6] [156471] +13:07:38 [ 39] [ 2] [00] +13:07:38 [ 70] [ 3] [301] +13:07:38 ============================================================================ +13:07:38 Calculate Source COMM Id = 2 +13:07:38 ============================================================================ +13:07:38 + + +waiting on router queue for slot.... +13:07:38 ============================================================================ +13:07:38 Slot Id : <171> +13:07:38 Transaction Type : REQUEST +13:07:38 Received From : +13:07:38 ============================================================================ +13:07:38 FNo. Len. Field Value +13:07:38 ============================================================================ +13:07:38 [ 1] [ 4] [0200] +13:07:38 [ 2] [ 16] [6213545000761415] +13:07:38 [ 3] [ 6] [010000] +13:07:38 [ 4] [ 12] [000100000000] +13:07:38 [ 7] [ 10] [0320131526] +13:07:38 [ 11] [ 6] [003101] +13:07:38 [ 12] [ 6] [131526] +13:07:38 [ 13] [ 4] [0320] +13:07:38 [ 14] [ 4] [4912] +13:07:38 [ 15] [ 4] [0320] +13:07:38 [ 18] [ 4] [6011] +13:07:38 [ 22] [ 3] [900] +13:07:38 [ 25] [ 2] [02] +13:07:38 [ 28] [ 9] [D00002000] +13:07:38 [ 32] [ 6] [220699] +13:07:38 [ 35] [ 32] [6213545000761415=491212016141338] +13:07:38 [ 37] [ 12] [507900186753] +13:07:38 [ 41] [ 8] [08000100] +13:07:38 [ 42] [ 15] [APTRA ] +13:07:38 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:07:38 [ 49] [ 3] [418] +13:07:38 [ 52] [ 16] [A59A4144B9DB1B07] +13:07:38 ============================================================================ +13:07:38 + + +waiting on router queue for slot.... +13:07:38 Sending to : +13:07:38 ============================================================================ +13:07:38 Sending to : +13:07:38 ============================================================================ +13:07:39 ============================================================================ +13:07:39 Slot Id : <171> +13:07:39 Transaction Type : REQUEST +13:07:39 Received From : +13:07:39 ============================================================================ +13:07:39 FNo. Len. Field Value +13:07:39 ============================================================================ +13:07:39 [ 1] [ 4] [0200] +13:07:39 [ 2] [ 16] [6213545000761415] +13:07:39 [ 3] [ 6] [010000] +13:07:39 [ 4] [ 12] [000100000000] +13:07:39 [ 7] [ 10] [0320131526] +13:07:39 [ 11] [ 6] [003101] +13:07:39 [ 12] [ 6] [131526] +13:07:39 [ 13] [ 4] [0320] +13:07:39 [ 14] [ 4] [4912] +13:07:39 [ 15] [ 4] [0320] +13:07:39 [ 18] [ 4] [6011] +13:07:39 [ 22] [ 3] [900] +13:07:39 [ 25] [ 2] [02] +13:07:39 [ 28] [ 9] [D00002000] +13:07:39 [ 32] [ 6] [220699] +13:07:39 [ 35] [ 32] [6213545000761415=491212016141338] +13:07:39 [ 37] [ 12] [507900186753] +13:07:39 [ 41] [ 8] [08000100] +13:07:39 [ 42] [ 15] [APTRA ] +13:07:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:07:39 [ 49] [ 3] [418] +13:07:39 [ 52] [ 16] [A59A4144B9DB1B07] +13:07:39 ============================================================================ +13:07:39 + + +waiting on router queue for slot.... +13:07:39 Sending to : +13:07:39 ============================================================================ +13:07:39 ============================================================================ +13:07:39 Slot Id : <171> +13:07:39 Transaction Type : REQUEST +13:07:39 Received From : +13:07:39 ============================================================================ +13:07:39 FNo. Len. Field Value +13:07:39 ============================================================================ +13:07:39 [ 1] [ 4] [0200] +13:07:39 [ 2] [ 16] [6213545000761415] +13:07:39 [ 3] [ 6] [010000] +13:07:39 [ 4] [ 12] [000100000000] +13:07:39 [ 7] [ 10] [0320131526] +13:07:39 [ 11] [ 6] [003101] +13:07:39 [ 12] [ 6] [131526] +13:07:39 [ 13] [ 4] [0320] +13:07:39 [ 14] [ 4] [4912] +13:07:39 [ 15] [ 4] [0320] +13:07:39 [ 18] [ 4] [6011] +13:07:39 [ 22] [ 3] [900] +13:07:39 [ 25] [ 2] [02] +13:07:39 [ 28] [ 9] [D00002000] +13:07:39 [ 32] [ 6] [220699] +13:07:39 [ 35] [ 32] [6213545000761415=491212016141338] +13:07:39 [ 37] [ 12] [507900186753] +13:07:39 [ 41] [ 8] [08000100] +13:07:39 [ 42] [ 15] [APTRA ] +13:07:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:07:39 [ 49] [ 3] [418] +13:07:39 [ 52] [ 16] [3A226BB025EAC1B8] +13:07:39 ============================================================================ +13:07:39 + + +waiting on router queue for slot.... +13:07:39 Sending to : <0> +13:07:39 ============================================================================ +13:07:39 ============================================================================ +13:07:39 Slot Id : <171> +13:07:39 Transaction Type : RESPONSE +13:07:39 Received From : +13:07:39 ============================================================================ +13:07:39 FNo. Len. Field Value +13:07:39 ============================================================================ +13:07:39 [ 1] [ 4] [0210] +13:07:39 [ 2] [ 16] [6213545000761415] +13:07:39 [ 3] [ 6] [010000] +13:07:39 [ 4] [ 12] [000100000000] +13:07:39 [ 7] [ 10] [0320131526] +13:07:39 [ 11] [ 6] [003101] +13:07:39 [ 12] [ 6] [131526] +13:07:39 [ 13] [ 4] [0320] +13:07:39 [ 15] [ 4] [0320] +13:07:39 [ 18] [ 4] [6011] +13:07:39 [ 32] [ 6] [220699] +13:07:39 [ 35] [ 32] [6213545000761415=491212016141338] +13:07:39 [ 37] [ 12] [507900186753] +13:07:39 [ 38] [ 6] [764056] +13:07:39 [ 39] [ 2] [00] +13:07:39 [ 41] [ 8] [08000100] +13:07:39 [ 49] [ 3] [418] +13:07:39 [ 54] [ 40] [0001418C0000302855180002418C000030285518] +13:07:39 ============================================================================ +13:07:39 Sending to : +13:07:39 ============================================================================ +13:07:39 + + +waiting on router queue for slot.... +13:07:41 ============================================================================ +13:07:41 Slot Id : <171> +13:07:41 Transaction Type : RESPONSE +13:07:41 Received From : +13:07:41 ============================================================================ +13:07:41 FNo. Len. Field Value +13:07:41 ============================================================================ +13:07:41 [ 1] [ 4] [0210] +13:07:41 [ 2] [ 16] [6213545000761415] +13:07:41 [ 3] [ 6] [010000] +13:07:41 [ 4] [ 12] [000100000000] +13:07:41 [ 7] [ 10] [0320131526] +13:07:41 [ 11] [ 6] [003101] +13:07:41 [ 12] [ 6] [131526] +13:07:41 [ 13] [ 4] [0320] +13:07:41 [ 15] [ 4] [0320] +13:07:41 [ 18] [ 4] [6011] +13:07:41 [ 32] [ 6] [220699] +13:07:41 [ 35] [ 32] [6213545000761415=491212016141338] +13:07:41 [ 37] [ 12] [507900186753] +13:07:41 [ 38] [ 6] [764056] +13:07:41 [ 39] [ 2] [00] +13:07:41 [ 41] [ 8] [08000100] +13:07:41 [ 49] [ 3] [418] +13:07:41 [ 54] [ 40] [0001418C0000302855180002418C000030285518] +13:07:41 ============================================================================ +13:07:41 Calculate Source COMM Id = 1 +13:07:41 ============================================================================ +13:07:41 + + +waiting on router queue for slot.... +13:07:49 ============================================================================ +13:07:49 Slot Id : <119> +13:07:49 Transaction Type : REQUEST +13:07:49 Received From : +13:07:49 ============================================================================ +13:07:49 FNo. Len. Field Value +13:07:49 ============================================================================ +13:07:49 [ 1] [ 4] [0800] +13:07:49 [ 7] [ 10] [0320060656] +13:07:49 [ 11] [ 6] [156472] +13:07:49 [ 70] [ 3] [301] +13:07:49 ============================================================================ +13:07:49 + + +waiting on router queue for slot.... +13:07:49 Sending to : +13:07:49 ============================================================================ +13:07:49 ============================================================================ +13:07:49 Slot Id : <119> +13:07:49 Transaction Type : RESPONSE +13:07:49 Received From : +13:07:49 ============================================================================ +13:07:49 FNo. Len. Field Value +13:07:49 ============================================================================ +13:07:49 [ 1] [ 4] [0810] +13:07:49 [ 7] [ 10] [0320060656] +13:07:49 [ 11] [ 6] [156472] +13:07:49 [ 39] [ 2] [00] +13:07:49 [ 70] [ 3] [301] +13:07:49 ============================================================================ +13:07:49 Calculate Source COMM Id = 2 +13:07:49 ============================================================================ +13:07:49 + + +waiting on router queue for slot.... +13:07:51 ============================================================================ +13:07:51 Slot Id : <139> +13:07:51 Transaction Type : REQUEST +13:07:51 Received From : +13:07:51 ============================================================================ +13:07:51 FNo. Len. Field Value +13:07:51 ============================================================================ +13:07:51 [ 1] [ 4] [0200] +13:07:51 [ 2] [ 16] [6213544001043030] +13:07:51 [ 3] [ 6] [301000] +13:07:51 [ 4] [ 12] [000000000000] +13:07:51 [ 7] [ 10] [0320130541] +13:07:51 [ 11] [ 6] [945748] +13:07:51 [ 12] [ 6] [130541] +13:07:51 [ 13] [ 4] [0320] +13:07:51 [ 15] [ 4] [0320] +13:07:51 [ 18] [ 4] [6011] +13:07:51 [ 19] [ 3] [418] +13:07:51 [ 22] [ 3] [021] +13:07:51 [ 25] [ 2] [01] +13:07:51 [ 28] [ 9] [D00000000] +13:07:51 [ 32] [ 6] [668899] +13:07:51 [ 35] [ 32] [6213544001043030=491212014303039] +13:07:51 [ 37] [ 12] [507900123333] +13:07:51 [ 41] [ 8] [03020003] +13:07:51 [ 42] [ 15] [APT ] +13:07:51 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +13:07:51 [ 49] [ 3] [418] +13:07:51 [ 52] [ 16] [2781737B41F2BBC2] +13:07:51 ============================================================================ +13:07:51 + + +waiting on router queue for slot.... +13:07:51 Sending to : +13:07:51 ============================================================================ +13:07:51 Sending to : +13:07:51 ============================================================================ +13:07:51 ============================================================================ +13:07:51 Slot Id : <139> +13:07:51 Transaction Type : REQUEST +13:07:51 Received From : +13:07:51 ============================================================================ +13:07:51 FNo. Len. Field Value +13:07:51 ============================================================================ +13:07:51 [ 1] [ 4] [0200] +13:07:51 [ 2] [ 16] [6213544001043030] +13:07:51 [ 3] [ 6] [301000] +13:07:51 [ 4] [ 12] [000000000000] +13:07:51 [ 7] [ 10] [0320130541] +13:07:51 [ 11] [ 6] [945748] +13:07:51 [ 12] [ 6] [130541] +13:07:51 [ 13] [ 4] [0320] +13:07:51 [ 15] [ 4] [0320] +13:07:51 [ 18] [ 4] [6011] +13:07:51 [ 19] [ 3] [418] +13:07:51 [ 22] [ 3] [021] +13:07:51 [ 25] [ 2] [01] +13:07:51 [ 28] [ 9] [D00000000] +13:07:51 [ 32] [ 6] [668899] +13:07:51 [ 35] [ 32] [6213544001043030=491212014303039] +13:07:51 [ 37] [ 12] [507900123333] +13:07:51 [ 41] [ 8] [03020003] +13:07:51 [ 42] [ 15] [APT ] +13:07:51 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +13:07:51 [ 49] [ 3] [418] +13:07:51 [ 52] [ 16] [2781737B41F2BBC2] +13:07:51 ============================================================================ +13:07:51 + + +waiting on router queue for slot.... +13:07:51 Sending to : +13:07:51 ============================================================================ +13:07:51 ============================================================================ +13:07:51 Slot Id : <139> +13:07:51 Transaction Type : REQUEST +13:07:51 Received From : +13:07:51 ============================================================================ +13:07:51 FNo. Len. Field Value +13:07:51 ============================================================================ +13:07:51 [ 1] [ 4] [0200] +13:07:51 [ 2] [ 16] [6213544001043030] +13:07:51 [ 3] [ 6] [301000] +13:07:51 [ 4] [ 12] [000000000000] +13:07:51 [ 7] [ 10] [0320130541] +13:07:51 [ 11] [ 6] [945748] +13:07:51 [ 12] [ 6] [130541] +13:07:51 [ 13] [ 4] [0320] +13:07:51 [ 15] [ 4] [0320] +13:07:51 [ 18] [ 4] [6011] +13:07:51 [ 19] [ 3] [418] +13:07:51 [ 22] [ 3] [021] +13:07:51 [ 25] [ 2] [01] +13:07:51 [ 28] [ 9] [D00000000] +13:07:51 [ 32] [ 6] [668899] +13:07:51 [ 35] [ 32] [6213544001043030=491212014303039] +13:07:51 [ 37] [ 12] [507900123333] +13:07:51 [ 41] [ 8] [03020003] +13:07:51 [ 42] [ 15] [APT ] +13:07:51 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +13:07:51 [ 49] [ 3] [418] +13:07:51 [ 52] [ 16] [38AB53DFB6B34369] +13:07:51 ============================================================================ +13:07:51 + + +waiting on router queue for slot.... +13:07:51 Sending to : <0> +13:07:51 ============================================================================ +13:07:52 ============================================================================ +13:07:52 Slot Id : <139> +13:07:52 Transaction Type : RESPONSE +13:07:52 Received From : +13:07:52 ============================================================================ +13:07:52 FNo. Len. Field Value +13:07:52 ============================================================================ +13:07:52 [ 1] [ 4] [0210] +13:07:52 [ 2] [ 16] [6213544001043030] +13:07:52 [ 3] [ 6] [301000] +13:07:52 [ 4] [ 12] [000000000000] +13:07:52 [ 7] [ 10] [0320130541] +13:07:52 [ 11] [ 6] [945748] +13:07:52 [ 12] [ 6] [130541] +13:07:52 [ 13] [ 4] [0320] +13:07:52 [ 15] [ 4] [0320] +13:07:52 [ 18] [ 4] [6011] +13:07:52 [ 19] [ 3] [418] +13:07:52 [ 32] [ 6] [668899] +13:07:52 [ 35] [ 32] [6213544001043030=491212014303039] +13:07:52 [ 37] [ 12] [507900123333] +13:07:52 [ 38] [ 6] [191668] +13:07:52 [ 39] [ 2] [00] +13:07:52 [ 41] [ 8] [03020003] +13:07:52 [ 49] [ 3] [418] +13:07:52 [ 54] [ 40] [1001418C0000154084681002418C000015408468] +13:07:52 ============================================================================ +13:07:52 Sending to : +13:07:52 ============================================================================ +13:07:52 + + +waiting on router queue for slot.... +13:07:53 ============================================================================ +13:07:53 Slot Id : <139> +13:07:53 Transaction Type : RESPONSE +13:07:53 Received From : +13:07:53 ============================================================================ +13:07:53 FNo. Len. Field Value +13:07:53 ============================================================================ +13:07:53 [ 1] [ 4] [0210] +13:07:53 [ 2] [ 16] [6213544001043030] +13:07:53 [ 3] [ 6] [301000] +13:07:53 [ 4] [ 12] [000000000000] +13:07:53 [ 7] [ 10] [0320130541] +13:07:53 [ 11] [ 6] [945748] +13:07:53 [ 12] [ 6] [130541] +13:07:53 [ 13] [ 4] [0320] +13:07:53 [ 15] [ 4] [0320] +13:07:53 [ 18] [ 4] [6011] +13:07:53 [ 19] [ 3] [418] +13:07:53 [ 32] [ 6] [668899] +13:07:53 [ 35] [ 32] [6213544001043030=491212014303039] +13:07:53 [ 37] [ 12] [507900123333] +13:07:53 [ 38] [ 6] [191668] +13:07:53 [ 39] [ 2] [00] +13:07:53 [ 41] [ 8] [03020003] +13:07:53 [ 49] [ 3] [418] +13:07:53 [ 54] [ 40] [1001418C0000154084681002418C000015408468] +13:07:53 ============================================================================ +13:07:53 Calculate Source COMM Id = 4 +13:07:53 ============================================================================ +13:07:53 + + +waiting on router queue for slot.... +13:08:00 ============================================================================ +13:08:00 Slot Id : <182> +13:08:00 Transaction Type : REQUEST +13:08:00 Received From : +13:08:00 ============================================================================ +13:08:00 FNo. Len. Field Value +13:08:00 ============================================================================ +13:08:00 [ 1] [ 4] [0800] +13:08:00 [ 7] [ 10] [0320060708] +13:08:00 [ 11] [ 6] [156473] +13:08:00 [ 70] [ 3] [301] +13:08:00 ============================================================================ +13:08:00 + + +waiting on router queue for slot.... +13:08:00 Sending to : +13:08:00 ============================================================================ +13:08:00 ============================================================================ +13:08:00 Slot Id : <182> +13:08:00 Transaction Type : RESPONSE +13:08:00 Received From : +13:08:00 ============================================================================ +13:08:00 FNo. Len. Field Value +13:08:00 ============================================================================ +13:08:00 [ 1] [ 4] [0810] +13:08:00 [ 7] [ 10] [0320060708] +13:08:00 [ 11] [ 6] [156473] +13:08:00 [ 39] [ 2] [00] +13:08:00 [ 70] [ 3] [301] +13:08:00 ============================================================================ +13:08:00 Calculate Source COMM Id = 2 +13:08:00 ============================================================================ +13:08:00 + + +waiting on router queue for slot.... +13:08:02 ============================================================================ +13:08:02 Slot Id : <176> +13:08:02 Transaction Type : REQUEST +13:08:02 Received From : +13:08:02 ============================================================================ +13:08:02 FNo. Len. Field Value +13:08:02 ============================================================================ +13:08:02 [ 1] [ 4] [0800] +13:08:02 [ 2] [ 5] [02531] +13:08:02 [ 3] [ 6] [579138] +13:08:02 [ 7] [ 10] [0320060802] +13:08:02 [ 11] [ 6] [807174] +13:08:02 [ 15] [ 10] [0320060802] +13:08:02 [ 37] [ 11] [57913807174] +13:08:02 [ 70] [ 3] [001] +13:08:02 ============================================================================ +13:08:02 + + +waiting on router queue for slot.... +13:08:02 ============================================================================ +13:08:02 Slot Id : <176> +13:08:02 Transaction Type : RESPONSE +13:08:02 Received From : +13:08:02 ============================================================================ +13:08:02 FNo. Len. Field Value +13:08:02 ============================================================================ +13:08:02 [ 1] [ 4] [0810] +13:08:02 [ 7] [ 10] [0320060802] +13:08:02 [ 11] [ 6] [807174] +13:08:02 [ 15] [ 4] [0320] +13:08:02 [ 37] [ 12] [57913807174] +13:08:02 [ 39] [ 2] [00] +13:08:02 [ 70] [ 3] [001] +13:08:02 ============================================================================ +13:08:02 Sending to : +13:08:02 ============================================================================ +13:08:02 + + +waiting on router queue for slot.... +13:08:04 ============================================================================ +13:08:04 Slot Id : <202> +13:08:04 Transaction Type : REQUEST +13:08:04 Received From : +13:08:04 ============================================================================ +13:08:04 FNo. Len. Field Value +13:08:04 ============================================================================ +13:08:04 [ 1] [ 4] [0200] +13:08:04 [ 2] [ 16] [6213544000512969] +13:08:04 [ 3] [ 6] [010000] +13:08:04 [ 4] [ 12] [000050000000] +13:08:04 [ 7] [ 10] [0320060712] +13:08:04 [ 11] [ 6] [269216] +13:08:04 [ 12] [ 6] [130712] +13:08:04 [ 13] [ 4] [0320] +13:08:04 [ 14] [ 4] [4912] +13:08:04 [ 15] [ 4] [0320] +13:08:04 [ 18] [ 4] [6011] +13:08:04 [ 19] [ 3] [418] +13:08:04 [ 22] [ 3] [021] +13:08:04 [ 25] [ 2] [01] +13:08:04 [ 28] [ 9] [D00002000] +13:08:04 [ 32] [ 6] [180893] +13:08:04 [ 35] [ 32] [6213544000512969=491212011296306] +13:08:04 [ 37] [ 12] [507906269216] +13:08:04 [ 41] [ 8] [0105XTNY] +13:08:04 [ 42] [ 15] [999999 ] +13:08:04 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +13:08:04 [ 49] [ 3] [418] +13:08:04 [ 52] [ 16] [EF7FA880ED764C70] +13:08:04 ============================================================================ +13:08:04 + + +waiting on router queue for slot.... +13:08:04 Sending to : +13:08:04 ============================================================================ +13:08:04 Sending to : +13:08:04 ============================================================================ +13:08:05 ============================================================================ +13:08:05 Slot Id : <202> +13:08:05 Transaction Type : REQUEST +13:08:05 Received From : +13:08:05 ============================================================================ +13:08:05 FNo. Len. Field Value +13:08:05 ============================================================================ +13:08:05 [ 1] [ 4] [0200] +13:08:05 [ 2] [ 16] [6213544000512969] +13:08:05 [ 3] [ 6] [010000] +13:08:05 [ 4] [ 12] [000050000000] +13:08:05 [ 7] [ 10] [0320060712] +13:08:05 [ 11] [ 6] [269216] +13:08:05 [ 12] [ 6] [130712] +13:08:05 [ 13] [ 4] [0320] +13:08:05 [ 14] [ 4] [4912] +13:08:05 [ 15] [ 4] [0320] +13:08:05 [ 18] [ 4] [6011] +13:08:05 [ 19] [ 3] [418] +13:08:05 [ 22] [ 3] [021] +13:08:05 [ 25] [ 2] [01] +13:08:05 [ 28] [ 9] [D00002000] +13:08:05 [ 32] [ 6] [180893] +13:08:05 [ 35] [ 32] [6213544000512969=491212011296306] +13:08:05 [ 37] [ 12] [507906269216] +13:08:05 [ 41] [ 8] [0105XTNY] +13:08:05 [ 42] [ 15] [999999 ] +13:08:05 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +13:08:05 [ 49] [ 3] [418] +13:08:05 [ 52] [ 16] [EF7FA880ED764C70] +13:08:05 ============================================================================ +13:08:05 + + +waiting on router queue for slot.... +13:08:05 Sending to : +13:08:05 ============================================================================ +13:08:05 ============================================================================ +13:08:05 Slot Id : <202> +13:08:05 Transaction Type : REQUEST +13:08:05 Received From : +13:08:05 ============================================================================ +13:08:05 FNo. Len. Field Value +13:08:05 ============================================================================ +13:08:05 [ 1] [ 4] [0200] +13:08:05 [ 2] [ 16] [6213544000512969] +13:08:05 [ 3] [ 6] [010000] +13:08:05 [ 4] [ 12] [000050000000] +13:08:05 [ 7] [ 10] [0320060712] +13:08:05 [ 11] [ 6] [269216] +13:08:05 [ 12] [ 6] [130712] +13:08:05 [ 13] [ 4] [0320] +13:08:05 [ 14] [ 4] [4912] +13:08:05 [ 15] [ 4] [0320] +13:08:05 [ 18] [ 4] [6011] +13:08:05 [ 19] [ 3] [418] +13:08:05 [ 22] [ 3] [021] +13:08:05 [ 25] [ 2] [01] +13:08:05 [ 28] [ 9] [D00002000] +13:08:05 [ 32] [ 6] [180893] +13:08:05 [ 35] [ 32] [6213544000512969=491212011296306] +13:08:05 [ 37] [ 12] [507906269216] +13:08:05 [ 41] [ 8] [0105XTNY] +13:08:05 [ 42] [ 15] [999999 ] +13:08:05 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +13:08:05 [ 49] [ 3] [418] +13:08:05 [ 52] [ 16] [B31AACE21B3EBB6D] +13:08:05 ============================================================================ +13:08:05 + + +waiting on router queue for slot.... +13:08:05 Sending to : <0> +13:08:05 ============================================================================ +13:08:05 ============================================================================ +13:08:05 Slot Id : <202> +13:08:05 Transaction Type : RESPONSE +13:08:05 Received From : +13:08:05 ============================================================================ +13:08:05 FNo. Len. Field Value +13:08:05 ============================================================================ +13:08:05 [ 1] [ 4] [0210] +13:08:05 [ 2] [ 16] [6213544000512969] +13:08:05 [ 3] [ 6] [010000] +13:08:05 [ 4] [ 12] [000050000000] +13:08:05 [ 7] [ 10] [0320060712] +13:08:05 [ 11] [ 6] [269216] +13:08:05 [ 12] [ 6] [130712] +13:08:05 [ 13] [ 4] [0320] +13:08:05 [ 15] [ 4] [0320] +13:08:05 [ 18] [ 4] [6011] +13:08:05 [ 19] [ 3] [418] +13:08:05 [ 22] [ 3] [021] +13:08:05 [ 32] [ 6] [180893] +13:08:05 [ 35] [ 32] [6213544000512969=491212011296306] +13:08:05 [ 37] [ 12] [507906269216] +13:08:05 [ 38] [ 6] [130800] +13:08:05 [ 39] [ 2] [55] +13:08:05 [ 41] [ 8] [0105XTNY] +13:08:05 [ 49] [ 3] [418] +13:08:05 ============================================================================ +13:08:05 Sending to : +13:08:05 ============================================================================ +13:08:05 + + +waiting on router queue for slot.... +13:08:06 ============================================================================ +13:08:06 Slot Id : <202> +13:08:06 Transaction Type : RESPONSE +13:08:06 Received From : +13:08:06 ============================================================================ +13:08:06 FNo. Len. Field Value +13:08:06 ============================================================================ +13:08:06 [ 1] [ 4] [0210] +13:08:06 [ 2] [ 16] [6213544000512969] +13:08:06 [ 3] [ 6] [010000] +13:08:06 [ 4] [ 12] [000050000000] +13:08:06 [ 7] [ 10] [0320060712] +13:08:06 [ 11] [ 6] [269216] +13:08:06 [ 12] [ 6] [130712] +13:08:06 [ 13] [ 4] [0320] +13:08:06 [ 15] [ 4] [0320] +13:08:06 [ 18] [ 4] [6011] +13:08:06 [ 19] [ 3] [418] +13:08:06 [ 22] [ 3] [021] +13:08:06 [ 32] [ 6] [180893] +13:08:06 [ 35] [ 32] [6213544000512969=491212011296306] +13:08:06 [ 37] [ 12] [507906269216] +13:08:06 [ 38] [ 6] [130800] +13:08:06 [ 39] [ 2] [55] +13:08:06 [ 41] [ 8] [0105XTNY] +13:08:06 [ 49] [ 3] [418] +13:08:06 ============================================================================ +13:08:06 Calculate Source COMM Id = 2 +13:08:06 ============================================================================ +13:08:06 + + +waiting on router queue for slot.... +13:08:13 ============================================================================ +13:08:13 Slot Id : <187> +13:08:13 Transaction Type : REQUEST +13:08:13 Received From : +13:08:13 ============================================================================ +13:08:13 FNo. Len. Field Value +13:08:13 ============================================================================ +13:08:13 [ 1] [ 4] [0200] +13:08:13 [ 2] [ 16] [6213544001043030] +13:08:13 [ 3] [ 6] [301000] +13:08:13 [ 4] [ 12] [000000000000] +13:08:13 [ 7] [ 10] [0320130604] +13:08:13 [ 11] [ 6] [945768] +13:08:13 [ 12] [ 6] [130604] +13:08:13 [ 13] [ 4] [0320] +13:08:13 [ 15] [ 4] [0320] +13:08:13 [ 18] [ 4] [6011] +13:08:13 [ 19] [ 3] [418] +13:08:13 [ 22] [ 3] [021] +13:08:13 [ 25] [ 2] [01] +13:08:13 [ 28] [ 9] [D00000000] +13:08:13 [ 32] [ 6] [668899] +13:08:13 [ 35] [ 32] [6213544001043030=491212014303039] +13:08:13 [ 37] [ 12] [507900123334] +13:08:13 [ 41] [ 8] [03020003] +13:08:13 [ 42] [ 15] [APT ] +13:08:13 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +13:08:13 [ 49] [ 3] [418] +13:08:13 [ 52] [ 16] [2781737B41F2BBC2] +13:08:13 ============================================================================ +13:08:13 + + +waiting on router queue for slot.... +13:08:13 Sending to : +13:08:13 ============================================================================ +13:08:13 Sending to : +13:08:13 ============================================================================ +13:08:14 ============================================================================ +13:08:14 Slot Id : <187> +13:08:14 Transaction Type : REQUEST +13:08:14 Received From : +13:08:14 ============================================================================ +13:08:14 FNo. Len. Field Value +13:08:14 ============================================================================ +13:08:14 [ 1] [ 4] [0200] +13:08:14 [ 2] [ 16] [6213544001043030] +13:08:14 [ 3] [ 6] [301000] +13:08:14 [ 4] [ 12] [000000000000] +13:08:14 [ 7] [ 10] [0320130604] +13:08:14 [ 11] [ 6] [945768] +13:08:14 [ 12] [ 6] [130604] +13:08:14 [ 13] [ 4] [0320] +13:08:14 [ 15] [ 4] [0320] +13:08:14 [ 18] [ 4] [6011] +13:08:14 [ 19] [ 3] [418] +13:08:14 [ 22] [ 3] [021] +13:08:14 [ 25] [ 2] [01] +13:08:14 [ 28] [ 9] [D00000000] +13:08:14 [ 32] [ 6] [668899] +13:08:14 [ 35] [ 32] [6213544001043030=491212014303039] +13:08:14 [ 37] [ 12] [507900123334] +13:08:14 [ 41] [ 8] [03020003] +13:08:14 [ 42] [ 15] [APT ] +13:08:14 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +13:08:14 [ 49] [ 3] [418] +13:08:14 [ 52] [ 16] [2781737B41F2BBC2] +13:08:14 ============================================================================ +13:08:14 + + +waiting on router queue for slot.... +13:08:14 Sending to : +13:08:14 ============================================================================ +13:08:14 ============================================================================ +13:08:14 Slot Id : <187> +13:08:14 Transaction Type : REQUEST +13:08:14 Received From : +13:08:14 ============================================================================ +13:08:14 FNo. Len. Field Value +13:08:14 ============================================================================ +13:08:14 [ 1] [ 4] [0200] +13:08:14 [ 2] [ 16] [6213544001043030] +13:08:14 [ 3] [ 6] [301000] +13:08:14 [ 4] [ 12] [000000000000] +13:08:14 [ 7] [ 10] [0320130604] +13:08:14 [ 11] [ 6] [945768] +13:08:14 [ 12] [ 6] [130604] +13:08:14 [ 13] [ 4] [0320] +13:08:14 [ 15] [ 4] [0320] +13:08:14 [ 18] [ 4] [6011] +13:08:14 [ 19] [ 3] [418] +13:08:14 [ 22] [ 3] [021] +13:08:14 [ 25] [ 2] [01] +13:08:14 [ 28] [ 9] [D00000000] +13:08:14 [ 32] [ 6] [668899] +13:08:14 [ 35] [ 32] [6213544001043030=491212014303039] +13:08:14 [ 37] [ 12] [507900123334] +13:08:14 [ 41] [ 8] [03020003] +13:08:14 [ 42] [ 15] [APT ] +13:08:14 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +13:08:14 [ 49] [ 3] [418] +13:08:14 [ 52] [ 16] [38AB53DFB6B34369] +13:08:14 ============================================================================ +13:08:14 + + +waiting on router queue for slot.... +13:08:14 Sending to : <0> +13:08:14 ============================================================================ +13:08:14 ============================================================================ +13:08:14 Slot Id : <187> +13:08:14 Transaction Type : RESPONSE +13:08:14 Received From : +13:08:14 ============================================================================ +13:08:14 FNo. Len. Field Value +13:08:14 ============================================================================ +13:08:14 [ 1] [ 4] [0210] +13:08:14 [ 2] [ 16] [6213544001043030] +13:08:14 [ 3] [ 6] [301000] +13:08:14 [ 4] [ 12] [000000000000] +13:08:14 [ 7] [ 10] [0320130604] +13:08:14 [ 11] [ 6] [945768] +13:08:14 [ 12] [ 6] [130604] +13:08:14 [ 13] [ 4] [0320] +13:08:14 [ 15] [ 4] [0320] +13:08:14 [ 18] [ 4] [6011] +13:08:14 [ 19] [ 3] [418] +13:08:14 [ 32] [ 6] [668899] +13:08:14 [ 35] [ 32] [6213544001043030=491212014303039] +13:08:14 [ 37] [ 12] [507900123334] +13:08:14 [ 38] [ 6] [884873] +13:08:14 [ 39] [ 2] [00] +13:08:14 [ 41] [ 8] [03020003] +13:08:14 [ 49] [ 3] [418] +13:08:14 [ 54] [ 40] [1001418C0000154084681002418C000015408468] +13:08:14 ============================================================================ +13:08:14 Sending to : +13:08:14 ============================================================================ +13:08:14 + + +waiting on router queue for slot.... +13:08:16 ============================================================================ +13:08:16 Slot Id : <187> +13:08:16 Transaction Type : RESPONSE +13:08:16 Received From : +13:08:16 ============================================================================ +13:08:16 FNo. Len. Field Value +13:08:16 ============================================================================ +13:08:16 [ 1] [ 4] [0210] +13:08:16 [ 2] [ 16] [6213544001043030] +13:08:16 [ 3] [ 6] [301000] +13:08:16 [ 4] [ 12] [000000000000] +13:08:16 [ 7] [ 10] [0320130604] +13:08:16 [ 11] [ 6] [945768] +13:08:16 [ 12] [ 6] [130604] +13:08:16 [ 13] [ 4] [0320] +13:08:16 [ 15] [ 4] [0320] +13:08:16 [ 18] [ 4] [6011] +13:08:16 [ 19] [ 3] [418] +13:08:16 [ 32] [ 6] [668899] +13:08:16 [ 35] [ 32] [6213544001043030=491212014303039] +13:08:16 [ 37] [ 12] [507900123334] +13:08:16 [ 38] [ 6] [884873] +13:08:16 [ 39] [ 2] [00] +13:08:16 [ 41] [ 8] [03020003] +13:08:16 [ 49] [ 3] [418] +13:08:16 [ 54] [ 40] [1001418C0000154084681002418C000015408468] +13:08:16 ============================================================================ +13:08:16 Calculate Source COMM Id = 4 +13:08:16 ============================================================================ +13:08:16 + + +waiting on router queue for slot.... +13:08:20 ============================================================================ +13:08:20 Slot Id : <160> +13:08:20 Transaction Type : REQUEST +13:08:20 Received From : +13:08:20 ============================================================================ +13:08:20 FNo. Len. Field Value +13:08:20 ============================================================================ +13:08:20 [ 1] [ 4] [0800] +13:08:20 [ 7] [ 10] [0320060728] +13:08:20 [ 11] [ 6] [156474] +13:08:20 [ 70] [ 3] [301] +13:08:20 ============================================================================ +13:08:20 + + +waiting on router queue for slot.... +13:08:20 Sending to : +13:08:20 ============================================================================ +13:08:20 ============================================================================ +13:08:20 Slot Id : <160> +13:08:20 Transaction Type : RESPONSE +13:08:20 Received From : +13:08:20 ============================================================================ +13:08:20 FNo. Len. Field Value +13:08:20 ============================================================================ +13:08:20 [ 1] [ 4] [0810] +13:08:20 [ 7] [ 10] [0320060728] +13:08:20 [ 11] [ 6] [156474] +13:08:20 [ 39] [ 2] [00] +13:08:20 [ 70] [ 3] [301] +13:08:20 ============================================================================ +13:08:20 Calculate Source COMM Id = 2 +13:08:20 ============================================================================ +13:08:20 + + +waiting on router queue for slot.... +13:08:21 ============================================================================ +13:08:21 Slot Id : <156> +13:08:21 Transaction Type : REQUEST +13:08:21 Received From : +13:08:21 ============================================================================ +13:08:21 FNo. Len. Field Value +13:08:21 ============================================================================ +13:08:21 [ 1] [ 4] [0200] +13:08:21 [ 2] [ 16] [6213545000774046] +13:08:21 [ 3] [ 6] [300000] +13:08:21 [ 4] [ 12] [000000000000] +13:08:21 [ 7] [ 10] [0320130612] +13:08:21 [ 11] [ 6] [945775] +13:08:21 [ 12] [ 6] [130612] +13:08:21 [ 13] [ 4] [0320] +13:08:21 [ 15] [ 4] [0320] +13:08:21 [ 18] [ 4] [6011] +13:08:21 [ 19] [ 3] [418] +13:08:21 [ 22] [ 3] [021] +13:08:21 [ 25] [ 2] [01] +13:08:21 [ 28] [ 9] [D00000000] +13:08:21 [ 32] [ 6] [668899] +13:08:21 [ 35] [ 32] [6213545000774046=491212017404908] +13:08:21 [ 37] [ 12] [507901963578] +13:08:21 [ 41] [ 8] [03020019] +13:08:21 [ 42] [ 15] [APT ] +13:08:21 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:08:21 [ 49] [ 3] [418] +13:08:21 [ 52] [ 16] [0004E7C02A047E50] +13:08:21 ============================================================================ +13:08:21 + + +waiting on router queue for slot.... +13:08:21 Sending to : +13:08:21 ============================================================================ +13:08:21 Sending to : +13:08:21 ============================================================================ +13:08:22 ============================================================================ +13:08:22 Slot Id : <156> +13:08:22 Transaction Type : REQUEST +13:08:22 Received From : +13:08:22 ============================================================================ +13:08:22 FNo. Len. Field Value +13:08:22 ============================================================================ +13:08:22 [ 1] [ 4] [0200] +13:08:22 [ 2] [ 16] [6213545000774046] +13:08:22 [ 3] [ 6] [300000] +13:08:22 [ 4] [ 12] [000000000000] +13:08:22 [ 7] [ 10] [0320130612] +13:08:22 [ 11] [ 6] [945775] +13:08:22 [ 12] [ 6] [130612] +13:08:22 [ 13] [ 4] [0320] +13:08:22 [ 15] [ 4] [0320] +13:08:22 [ 18] [ 4] [6011] +13:08:22 [ 19] [ 3] [418] +13:08:22 [ 22] [ 3] [021] +13:08:22 [ 25] [ 2] [01] +13:08:22 [ 28] [ 9] [D00000000] +13:08:22 [ 32] [ 6] [668899] +13:08:22 [ 35] [ 32] [6213545000774046=491212017404908] +13:08:22 [ 37] [ 12] [507901963578] +13:08:22 [ 41] [ 8] [03020019] +13:08:22 [ 42] [ 15] [APT ] +13:08:22 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:08:22 [ 49] [ 3] [418] +13:08:22 [ 52] [ 16] [0004E7C02A047E50] +13:08:22 ============================================================================ +13:08:22 + + +waiting on router queue for slot.... +13:08:22 Sending to : +13:08:22 ============================================================================ +13:08:22 ============================================================================ +13:08:22 Slot Id : <156> +13:08:22 Transaction Type : REQUEST +13:08:22 Received From : +13:08:22 ============================================================================ +13:08:22 FNo. Len. Field Value +13:08:22 ============================================================================ +13:08:22 [ 1] [ 4] [0200] +13:08:22 [ 2] [ 16] [6213545000774046] +13:08:22 [ 3] [ 6] [300000] +13:08:22 [ 4] [ 12] [000000000000] +13:08:22 [ 7] [ 10] [0320130612] +13:08:22 [ 11] [ 6] [945775] +13:08:22 [ 12] [ 6] [130612] +13:08:22 [ 13] [ 4] [0320] +13:08:22 [ 15] [ 4] [0320] +13:08:22 [ 18] [ 4] [6011] +13:08:22 [ 19] [ 3] [418] +13:08:22 [ 22] [ 3] [021] +13:08:22 [ 25] [ 2] [01] +13:08:22 [ 28] [ 9] [D00000000] +13:08:22 [ 32] [ 6] [668899] +13:08:22 [ 35] [ 32] [6213545000774046=491212017404908] +13:08:22 [ 37] [ 12] [507901963578] +13:08:22 [ 41] [ 8] [03020019] +13:08:22 [ 42] [ 15] [APT ] +13:08:22 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:08:22 [ 49] [ 3] [418] +13:08:22 [ 52] [ 16] [8B7E305D659A8396] +13:08:22 ============================================================================ +13:08:22 + + +waiting on router queue for slot.... +13:08:22 Sending to : <0> +13:08:22 ============================================================================ +13:08:22 ============================================================================ +13:08:22 Slot Id : <156> +13:08:22 Transaction Type : RESPONSE +13:08:22 Received From : +13:08:22 ============================================================================ +13:08:22 FNo. Len. Field Value +13:08:22 ============================================================================ +13:08:22 [ 1] [ 4] [0210] +13:08:22 [ 2] [ 16] [6213545000774046] +13:08:22 [ 3] [ 6] [300000] +13:08:22 [ 4] [ 12] [000000000000] +13:08:22 [ 7] [ 10] [0320130612] +13:08:22 [ 11] [ 6] [945775] +13:08:22 [ 12] [ 6] [130612] +13:08:22 [ 13] [ 4] [0320] +13:08:22 [ 15] [ 4] [0320] +13:08:22 [ 18] [ 4] [6011] +13:08:22 [ 19] [ 3] [418] +13:08:22 [ 32] [ 6] [668899] +13:08:22 [ 35] [ 32] [6213545000774046=491212017404908] +13:08:22 [ 37] [ 12] [507901963578] +13:08:22 [ 38] [ 6] [868562] +13:08:22 [ 39] [ 2] [00] +13:08:22 [ 41] [ 8] [03020019] +13:08:22 [ 49] [ 3] [418] +13:08:22 [ 54] [ 40] [0001418C0002362762390002418C000236276239] +13:08:22 ============================================================================ +13:08:22 Sending to : +13:08:22 ============================================================================ +13:08:22 + + +waiting on router queue for slot.... +13:08:23 ============================================================================ +13:08:23 Slot Id : <156> +13:08:23 Transaction Type : RESPONSE +13:08:23 Received From : +13:08:23 ============================================================================ +13:08:23 FNo. Len. Field Value +13:08:23 ============================================================================ +13:08:23 [ 1] [ 4] [0210] +13:08:23 [ 2] [ 16] [6213545000774046] +13:08:23 [ 3] [ 6] [300000] +13:08:23 [ 4] [ 12] [000000000000] +13:08:23 [ 7] [ 10] [0320130612] +13:08:23 [ 11] [ 6] [945775] +13:08:23 [ 12] [ 6] [130612] +13:08:23 [ 13] [ 4] [0320] +13:08:23 [ 15] [ 4] [0320] +13:08:23 [ 18] [ 4] [6011] +13:08:23 [ 19] [ 3] [418] +13:08:23 [ 32] [ 6] [668899] +13:08:23 [ 35] [ 32] [6213545000774046=491212017404908] +13:08:23 [ 37] [ 12] [507901963578] +13:08:23 [ 38] [ 6] [868562] +13:08:23 [ 39] [ 2] [00] +13:08:23 [ 41] [ 8] [03020019] +13:08:23 [ 49] [ 3] [418] +13:08:23 [ 54] [ 40] [0001418C0002362762390002418C000236276239] +13:08:23 ============================================================================ +13:08:23 Calculate Source COMM Id = 4 +13:08:23 ============================================================================ +13:08:23 + + +waiting on router queue for slot.... +13:08:32 ============================================================================ +13:08:32 Slot Id : <144> +13:08:32 Transaction Type : REQUEST +13:08:32 Received From : +13:08:32 ============================================================================ +13:08:32 FNo. Len. Field Value +13:08:32 ============================================================================ +13:08:32 [ 1] [ 4] [0200] +13:08:32 [ 2] [ 16] [6213545000211536] +13:08:32 [ 3] [ 6] [310000] +13:08:32 [ 4] [ 12] [000000000000] +13:08:32 [ 7] [ 10] [0320131619] +13:08:32 [ 11] [ 6] [168942] +13:08:32 [ 12] [ 6] [131619] +13:08:32 [ 13] [ 4] [0320] +13:08:32 [ 14] [ 4] [4912] +13:08:32 [ 15] [ 4] [0320] +13:08:32 [ 18] [ 4] [6011] +13:08:32 [ 22] [ 3] [900] +13:08:32 [ 25] [ 2] [02] +13:08:32 [ 28] [ 9] [000000000] +13:08:32 [ 32] [ 6] [220699] +13:08:32 [ 35] [ 32] [6213545000211536=491212011153632] +13:08:32 [ 37] [ 12] [507900026357] +13:08:32 [ 41] [ 8] [01000200] +13:08:32 [ 42] [ 15] [APTRA ] +13:08:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:08:32 [ 49] [ 3] [418] +13:08:32 [ 52] [ 16] [229DAD20651EF871] +13:08:32 ============================================================================ +13:08:32 + + +waiting on router queue for slot.... +13:08:32 Sending to : +13:08:32 ============================================================================ +13:08:32 Sending to : +13:08:32 ============================================================================ +13:08:32 ============================================================================ +13:08:32 Slot Id : <144> +13:08:32 Transaction Type : REQUEST +13:08:32 Received From : +13:08:32 ============================================================================ +13:08:32 FNo. Len. Field Value +13:08:32 ============================================================================ +13:08:32 [ 1] [ 4] [0200] +13:08:32 [ 2] [ 16] [6213545000211536] +13:08:32 [ 3] [ 6] [310000] +13:08:32 [ 4] [ 12] [000000000000] +13:08:32 [ 7] [ 10] [0320131619] +13:08:32 [ 11] [ 6] [168942] +13:08:32 [ 12] [ 6] [131619] +13:08:32 [ 13] [ 4] [0320] +13:08:32 [ 14] [ 4] [4912] +13:08:32 [ 15] [ 4] [0320] +13:08:32 [ 18] [ 4] [6011] +13:08:32 [ 22] [ 3] [900] +13:08:32 [ 25] [ 2] [02] +13:08:32 [ 28] [ 9] [000000000] +13:08:32 [ 32] [ 6] [220699] +13:08:32 [ 35] [ 32] [6213545000211536=491212011153632] +13:08:32 [ 37] [ 12] [507900026357] +13:08:32 [ 41] [ 8] [01000200] +13:08:32 [ 42] [ 15] [APTRA ] +13:08:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:08:32 [ 49] [ 3] [418] +13:08:32 [ 52] [ 16] [229DAD20651EF871] +13:08:32 ============================================================================ +13:08:32 + + +waiting on router queue for slot.... +13:08:32 Sending to : +13:08:32 ============================================================================ +13:08:32 ============================================================================ +13:08:32 Slot Id : <144> +13:08:32 Transaction Type : REQUEST +13:08:32 Received From : +13:08:32 ============================================================================ +13:08:32 FNo. Len. Field Value +13:08:32 ============================================================================ +13:08:32 [ 1] [ 4] [0200] +13:08:32 [ 2] [ 16] [6213545000211536] +13:08:32 [ 3] [ 6] [310000] +13:08:32 [ 4] [ 12] [000000000000] +13:08:32 [ 7] [ 10] [0320131619] +13:08:32 [ 11] [ 6] [168942] +13:08:32 [ 12] [ 6] [131619] +13:08:32 [ 13] [ 4] [0320] +13:08:32 [ 14] [ 4] [4912] +13:08:32 [ 15] [ 4] [0320] +13:08:32 [ 18] [ 4] [6011] +13:08:32 [ 22] [ 3] [900] +13:08:32 [ 25] [ 2] [02] +13:08:32 [ 28] [ 9] [000000000] +13:08:32 [ 32] [ 6] [220699] +13:08:32 [ 35] [ 32] [6213545000211536=491212011153632] +13:08:32 [ 37] [ 12] [507900026357] +13:08:32 [ 41] [ 8] [01000200] +13:08:32 [ 42] [ 15] [APTRA ] +13:08:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:08:32 [ 49] [ 3] [418] +13:08:32 [ 52] [ 16] [56E4CB6A207EF6E5] +13:08:32 ============================================================================ +13:08:32 + + +waiting on router queue for slot.... +13:08:32 Sending to : <0> +13:08:32 ============================================================================ +13:08:32 ============================================================================ +13:08:32 Slot Id : <144> +13:08:32 Transaction Type : RESPONSE +13:08:32 Received From : +13:08:32 ============================================================================ +13:08:32 FNo. Len. Field Value +13:08:32 ============================================================================ +13:08:32 [ 1] [ 4] [0210] +13:08:32 [ 2] [ 16] [6213545000211536] +13:08:32 [ 3] [ 6] [310000] +13:08:32 [ 4] [ 12] [000000000000] +13:08:32 [ 7] [ 10] [0320131619] +13:08:32 [ 11] [ 6] [168942] +13:08:32 [ 12] [ 6] [131619] +13:08:32 [ 13] [ 4] [0320] +13:08:32 [ 15] [ 4] [0320] +13:08:32 [ 18] [ 4] [6011] +13:08:32 [ 22] [ 3] [900] +13:08:32 [ 32] [ 6] [220699] +13:08:32 [ 35] [ 32] [6213545000211536=491212011153632] +13:08:32 [ 37] [ 12] [507900026357] +13:08:32 [ 38] [ 6] [130828] +13:08:32 [ 39] [ 2] [55] +13:08:32 [ 41] [ 8] [01000200] +13:08:32 [ 49] [ 3] [418] +13:08:32 ============================================================================ +13:08:32 Sending to : +13:08:32 ============================================================================ +13:08:32 + + +waiting on router queue for slot.... +13:08:32 ============================================================================ +13:08:32 Slot Id : <203> +13:08:32 Transaction Type : REQUEST +13:08:32 Received From : +13:08:32 ============================================================================ +13:08:32 FNo. Len. Field Value +13:08:32 ============================================================================ +13:08:32 [ 1] [ 4] [0800] +13:08:32 [ 7] [ 10] [0320060739] +13:08:32 [ 11] [ 6] [156475] +13:08:32 [ 70] [ 3] [301] +13:08:32 ============================================================================ +13:08:32 + + +waiting on router queue for slot.... +13:08:32 Sending to : +13:08:32 ============================================================================ +13:08:32 ============================================================================ +13:08:32 Slot Id : <203> +13:08:32 Transaction Type : RESPONSE +13:08:32 Received From : +13:08:32 ============================================================================ +13:08:32 FNo. Len. Field Value +13:08:32 ============================================================================ +13:08:32 [ 1] [ 4] [0810] +13:08:32 [ 7] [ 10] [0320060739] +13:08:32 [ 11] [ 6] [156475] +13:08:32 [ 39] [ 2] [00] +13:08:32 [ 70] [ 3] [301] +13:08:32 ============================================================================ +13:08:32 Calculate Source COMM Id = 2 +13:08:32 ============================================================================ +13:08:32 + + +waiting on router queue for slot.... +13:08:34 ============================================================================ +13:08:34 Slot Id : <144> +13:08:34 Transaction Type : RESPONSE +13:08:34 Received From : +13:08:34 ============================================================================ +13:08:34 FNo. Len. Field Value +13:08:34 ============================================================================ +13:08:34 [ 1] [ 4] [0210] +13:08:34 [ 2] [ 16] [6213545000211536] +13:08:34 [ 3] [ 6] [310000] +13:08:34 [ 4] [ 12] [000000000000] +13:08:34 [ 7] [ 10] [0320131619] +13:08:34 [ 11] [ 6] [168942] +13:08:34 [ 12] [ 6] [131619] +13:08:34 [ 13] [ 4] [0320] +13:08:34 [ 15] [ 4] [0320] +13:08:34 [ 18] [ 4] [6011] +13:08:34 [ 22] [ 3] [900] +13:08:34 [ 32] [ 6] [220699] +13:08:34 [ 35] [ 32] [6213545000211536=491212011153632] +13:08:34 [ 37] [ 12] [507900026357] +13:08:34 [ 38] [ 6] [130828] +13:08:34 [ 39] [ 2] [55] +13:08:34 [ 41] [ 8] [01000200] +13:08:34 [ 49] [ 3] [418] +13:08:34 ============================================================================ +13:08:34 Calculate Source COMM Id = 1 +13:08:34 ============================================================================ +13:08:34 + + +waiting on router queue for slot.... +13:08:44 ============================================================================ +13:08:44 Slot Id : <179> +13:08:44 Transaction Type : REQUEST +13:08:44 Received From : +13:08:44 ============================================================================ +13:08:44 FNo. Len. Field Value +13:08:44 ============================================================================ +13:08:44 [ 1] [ 4] [0200] +13:08:44 [ 2] [ 16] [6213544001043030] +13:08:44 [ 3] [ 6] [010000] +13:08:44 [ 4] [ 12] [000010000000] +13:08:44 [ 7] [ 10] [0320130634] +13:08:44 [ 11] [ 6] [945786] +13:08:44 [ 12] [ 6] [130634] +13:08:44 [ 13] [ 4] [0320] +13:08:44 [ 15] [ 4] [0320] +13:08:44 [ 18] [ 4] [6011] +13:08:44 [ 19] [ 3] [418] +13:08:44 [ 22] [ 3] [021] +13:08:44 [ 25] [ 2] [01] +13:08:44 [ 28] [ 9] [D00002000] +13:08:44 [ 32] [ 6] [668899] +13:08:44 [ 35] [ 32] [6213544001043030=491212014303039] +13:08:44 [ 37] [ 12] [507900123335] +13:08:44 [ 41] [ 8] [03020003] +13:08:44 [ 42] [ 15] [APT ] +13:08:44 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +13:08:44 [ 49] [ 3] [418] +13:08:44 [ 52] [ 16] [2781737B41F2BBC2] +13:08:44 ============================================================================ +13:08:44 + + +waiting on router queue for slot.... +13:08:44 Sending to : +13:08:44 ============================================================================ +13:08:44 Sending to : +13:08:44 ============================================================================ +13:08:44 ============================================================================ +13:08:44 Slot Id : <179> +13:08:44 Transaction Type : REQUEST +13:08:44 Received From : +13:08:44 ============================================================================ +13:08:44 FNo. Len. Field Value +13:08:44 ============================================================================ +13:08:44 [ 1] [ 4] [0200] +13:08:44 [ 2] [ 16] [6213544001043030] +13:08:44 [ 3] [ 6] [010000] +13:08:44 [ 4] [ 12] [000010000000] +13:08:44 [ 7] [ 10] [0320130634] +13:08:44 [ 11] [ 6] [945786] +13:08:44 [ 12] [ 6] [130634] +13:08:44 [ 13] [ 4] [0320] +13:08:44 [ 15] [ 4] [0320] +13:08:44 [ 18] [ 4] [6011] +13:08:44 [ 19] [ 3] [418] +13:08:44 [ 22] [ 3] [021] +13:08:44 [ 25] [ 2] [01] +13:08:44 [ 28] [ 9] [D00002000] +13:08:44 [ 32] [ 6] [668899] +13:08:44 [ 35] [ 32] [6213544001043030=491212014303039] +13:08:44 [ 37] [ 12] [507900123335] +13:08:44 [ 41] [ 8] [03020003] +13:08:44 [ 42] [ 15] [APT ] +13:08:44 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +13:08:44 [ 49] [ 3] [418] +13:08:44 [ 52] [ 16] [2781737B41F2BBC2] +13:08:44 ============================================================================ +13:08:44 + + +waiting on router queue for slot.... +13:08:44 Sending to : +13:08:44 ============================================================================ +13:08:44 ============================================================================ +13:08:44 Slot Id : <179> +13:08:44 Transaction Type : REQUEST +13:08:44 Received From : +13:08:44 ============================================================================ +13:08:44 FNo. Len. Field Value +13:08:44 ============================================================================ +13:08:44 [ 1] [ 4] [0200] +13:08:44 [ 2] [ 16] [6213544001043030] +13:08:44 [ 3] [ 6] [010000] +13:08:44 [ 4] [ 12] [000010000000] +13:08:44 [ 7] [ 10] [0320130634] +13:08:44 [ 11] [ 6] [945786] +13:08:44 [ 12] [ 6] [130634] +13:08:44 [ 13] [ 4] [0320] +13:08:44 [ 15] [ 4] [0320] +13:08:44 [ 18] [ 4] [6011] +13:08:44 [ 19] [ 3] [418] +13:08:44 [ 22] [ 3] [021] +13:08:44 [ 25] [ 2] [01] +13:08:44 [ 28] [ 9] [D00002000] +13:08:44 [ 32] [ 6] [668899] +13:08:44 [ 35] [ 32] [6213544001043030=491212014303039] +13:08:44 [ 37] [ 12] [507900123335] +13:08:44 [ 41] [ 8] [03020003] +13:08:44 [ 42] [ 15] [APT ] +13:08:44 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +13:08:44 [ 49] [ 3] [418] +13:08:44 [ 52] [ 16] [38AB53DFB6B34369] +13:08:44 ============================================================================ +13:08:44 + + +waiting on router queue for slot.... +13:08:44 Sending to : <0> +13:08:44 ============================================================================ +13:08:45 ============================================================================ +13:08:45 Slot Id : <179> +13:08:45 Transaction Type : RESPONSE +13:08:45 Received From : +13:08:45 ============================================================================ +13:08:45 FNo. Len. Field Value +13:08:45 ============================================================================ +13:08:45 [ 1] [ 4] [0210] +13:08:45 [ 2] [ 16] [6213544001043030] +13:08:45 [ 3] [ 6] [010000] +13:08:45 [ 4] [ 12] [000010000000] +13:08:45 [ 7] [ 10] [0320130634] +13:08:45 [ 11] [ 6] [945786] +13:08:45 [ 12] [ 6] [130634] +13:08:45 [ 13] [ 4] [0320] +13:08:45 [ 15] [ 4] [0320] +13:08:45 [ 18] [ 4] [6011] +13:08:45 [ 19] [ 3] [418] +13:08:45 [ 32] [ 6] [668899] +13:08:45 [ 35] [ 32] [6213544001043030=491212014303039] +13:08:45 [ 37] [ 12] [507900123335] +13:08:45 [ 38] [ 6] [122424] +13:08:45 [ 39] [ 2] [00] +13:08:45 [ 41] [ 8] [03020003] +13:08:45 [ 49] [ 3] [418] +13:08:45 [ 54] [ 40] [0001418C0000052084680002418C000005208468] +13:08:45 ============================================================================ +13:08:45 Sending to : +13:08:45 ============================================================================ +13:08:45 + + +waiting on router queue for slot.... +13:08:46 ============================================================================ +13:08:46 Slot Id : <179> +13:08:46 Transaction Type : RESPONSE +13:08:46 Received From : +13:08:46 ============================================================================ +13:08:46 FNo. Len. Field Value +13:08:46 ============================================================================ +13:08:46 [ 1] [ 4] [0210] +13:08:46 [ 2] [ 16] [6213544001043030] +13:08:46 [ 3] [ 6] [010000] +13:08:46 [ 4] [ 12] [000010000000] +13:08:46 [ 7] [ 10] [0320130634] +13:08:46 [ 11] [ 6] [945786] +13:08:46 [ 12] [ 6] [130634] +13:08:46 [ 13] [ 4] [0320] +13:08:46 [ 15] [ 4] [0320] +13:08:46 [ 18] [ 4] [6011] +13:08:46 [ 19] [ 3] [418] +13:08:46 [ 32] [ 6] [668899] +13:08:46 [ 35] [ 32] [6213544001043030=491212014303039] +13:08:46 [ 37] [ 12] [507900123335] +13:08:46 [ 38] [ 6] [122424] +13:08:46 [ 39] [ 2] [00] +13:08:46 [ 41] [ 8] [03020003] +13:08:46 [ 49] [ 3] [418] +13:08:46 [ 54] [ 40] [0001418C0000052084680002418C000005208468] +13:08:46 ============================================================================ +13:08:46 Calculate Source COMM Id = 4 +13:08:46 ============================================================================ +13:08:46 + + +waiting on router queue for slot.... +13:08:48 ============================================================================ +13:08:48 Slot Id : <163> +13:08:48 Transaction Type : REQUEST +13:08:48 Received From : +13:08:48 ============================================================================ +13:08:48 FNo. Len. Field Value +13:08:48 ============================================================================ +13:08:48 [ 1] [ 4] [0800] +13:08:48 [ 7] [ 10] [0320060755] +13:08:48 [ 11] [ 6] [156476] +13:08:48 [ 70] [ 3] [301] +13:08:48 ============================================================================ +13:08:48 + + +waiting on router queue for slot.... +13:08:48 Sending to : +13:08:48 ============================================================================ +13:08:48 ============================================================================ +13:08:48 Slot Id : <163> +13:08:48 Transaction Type : RESPONSE +13:08:48 Received From : +13:08:48 ============================================================================ +13:08:48 FNo. Len. Field Value +13:08:48 ============================================================================ +13:08:48 [ 1] [ 4] [0810] +13:08:48 [ 7] [ 10] [0320060755] +13:08:48 [ 11] [ 6] [156476] +13:08:48 [ 39] [ 2] [00] +13:08:48 [ 70] [ 3] [301] +13:08:48 ============================================================================ +13:08:48 Calculate Source COMM Id = 2 +13:08:48 ============================================================================ +13:08:48 + + +waiting on router queue for slot.... +13:08:50 ============================================================================ +13:08:50 Slot Id : <204> +13:08:50 Transaction Type : REQUEST +13:08:50 Received From : +13:08:50 ============================================================================ +13:08:50 FNo. Len. Field Value +13:08:50 ============================================================================ +13:08:50 [ 1] [ 4] [0200] +13:08:50 [ 2] [ 16] [6213545000774046] +13:08:50 [ 3] [ 6] [300000] +13:08:50 [ 4] [ 12] [000000000000] +13:08:50 [ 7] [ 10] [0320130641] +13:08:50 [ 11] [ 6] [945792] +13:08:50 [ 12] [ 6] [130641] +13:08:50 [ 13] [ 4] [0320] +13:08:50 [ 15] [ 4] [0320] +13:08:50 [ 18] [ 4] [6011] +13:08:50 [ 19] [ 3] [418] +13:08:50 [ 22] [ 3] [021] +13:08:50 [ 25] [ 2] [01] +13:08:50 [ 28] [ 9] [D00000000] +13:08:50 [ 32] [ 6] [668899] +13:08:50 [ 35] [ 32] [6213545000774046=491212017404908] +13:08:50 [ 37] [ 12] [507901963579] +13:08:50 [ 41] [ 8] [03020019] +13:08:50 [ 42] [ 15] [APT ] +13:08:50 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:08:50 [ 49] [ 3] [418] +13:08:50 [ 52] [ 16] [0004E7C02A047E50] +13:08:50 ============================================================================ +13:08:50 + + +waiting on router queue for slot.... +13:08:50 Sending to : +13:08:50 ============================================================================ +13:08:50 Sending to : +13:08:50 ============================================================================ +13:08:50 ============================================================================ +13:08:50 Slot Id : <204> +13:08:50 Transaction Type : REQUEST +13:08:50 Received From : +13:08:50 ============================================================================ +13:08:50 FNo. Len. Field Value +13:08:50 ============================================================================ +13:08:50 [ 1] [ 4] [0200] +13:08:50 [ 2] [ 16] [6213545000774046] +13:08:50 [ 3] [ 6] [300000] +13:08:50 [ 4] [ 12] [000000000000] +13:08:50 [ 7] [ 10] [0320130641] +13:08:50 [ 11] [ 6] [945792] +13:08:50 [ 12] [ 6] [130641] +13:08:50 [ 13] [ 4] [0320] +13:08:50 [ 15] [ 4] [0320] +13:08:50 [ 18] [ 4] [6011] +13:08:50 [ 19] [ 3] [418] +13:08:50 [ 22] [ 3] [021] +13:08:50 [ 25] [ 2] [01] +13:08:50 [ 28] [ 9] [D00000000] +13:08:50 [ 32] [ 6] [668899] +13:08:50 [ 35] [ 32] [6213545000774046=491212017404908] +13:08:50 [ 37] [ 12] [507901963579] +13:08:50 [ 41] [ 8] [03020019] +13:08:50 [ 42] [ 15] [APT ] +13:08:50 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:08:50 [ 49] [ 3] [418] +13:08:50 [ 52] [ 16] [0004E7C02A047E50] +13:08:50 ============================================================================ +13:08:50 + + +waiting on router queue for slot.... +13:08:50 Sending to : +13:08:50 ============================================================================ +13:08:50 ============================================================================ +13:08:50 Slot Id : <204> +13:08:50 Transaction Type : REQUEST +13:08:50 Received From : +13:08:50 ============================================================================ +13:08:50 FNo. Len. Field Value +13:08:50 ============================================================================ +13:08:50 [ 1] [ 4] [0200] +13:08:50 [ 2] [ 16] [6213545000774046] +13:08:50 [ 3] [ 6] [300000] +13:08:50 [ 4] [ 12] [000000000000] +13:08:50 [ 7] [ 10] [0320130641] +13:08:50 [ 11] [ 6] [945792] +13:08:50 [ 12] [ 6] [130641] +13:08:50 [ 13] [ 4] [0320] +13:08:50 [ 15] [ 4] [0320] +13:08:50 [ 18] [ 4] [6011] +13:08:50 [ 19] [ 3] [418] +13:08:50 [ 22] [ 3] [021] +13:08:50 [ 25] [ 2] [01] +13:08:50 [ 28] [ 9] [D00000000] +13:08:50 [ 32] [ 6] [668899] +13:08:50 [ 35] [ 32] [6213545000774046=491212017404908] +13:08:50 [ 37] [ 12] [507901963579] +13:08:50 [ 41] [ 8] [03020019] +13:08:50 [ 42] [ 15] [APT ] +13:08:50 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:08:50 [ 49] [ 3] [418] +13:08:50 [ 52] [ 16] [8B7E305D659A8396] +13:08:50 ============================================================================ +13:08:50 + + +waiting on router queue for slot.... +13:08:50 Sending to : <0> +13:08:50 ============================================================================ +13:08:51 ============================================================================ +13:08:51 Slot Id : <204> +13:08:51 Transaction Type : RESPONSE +13:08:51 Received From : +13:08:51 ============================================================================ +13:08:51 FNo. Len. Field Value +13:08:51 ============================================================================ +13:08:51 [ 1] [ 4] [0210] +13:08:51 [ 2] [ 16] [6213545000774046] +13:08:51 [ 3] [ 6] [300000] +13:08:51 [ 4] [ 12] [000000000000] +13:08:51 [ 7] [ 10] [0320130641] +13:08:51 [ 11] [ 6] [945792] +13:08:51 [ 12] [ 6] [130641] +13:08:51 [ 13] [ 4] [0320] +13:08:51 [ 15] [ 4] [0320] +13:08:51 [ 18] [ 4] [6011] +13:08:51 [ 19] [ 3] [418] +13:08:51 [ 32] [ 6] [668899] +13:08:51 [ 35] [ 32] [6213545000774046=491212017404908] +13:08:51 [ 37] [ 12] [507901963579] +13:08:51 [ 38] [ 6] [352841] +13:08:51 [ 39] [ 2] [00] +13:08:51 [ 41] [ 8] [03020019] +13:08:51 [ 49] [ 3] [418] +13:08:51 [ 54] [ 40] [0001418C0002362762390002418C000236276239] +13:08:51 ============================================================================ +13:08:51 Sending to : +13:08:51 ============================================================================ +13:08:51 + + +waiting on router queue for slot.... +13:08:52 ============================================================================ +13:08:52 Slot Id : <204> +13:08:52 Transaction Type : RESPONSE +13:08:52 Received From : +13:08:52 ============================================================================ +13:08:52 FNo. Len. Field Value +13:08:52 ============================================================================ +13:08:52 [ 1] [ 4] [0210] +13:08:52 [ 2] [ 16] [6213545000774046] +13:08:52 [ 3] [ 6] [300000] +13:08:52 [ 4] [ 12] [000000000000] +13:08:52 [ 7] [ 10] [0320130641] +13:08:52 [ 11] [ 6] [945792] +13:08:52 [ 12] [ 6] [130641] +13:08:52 [ 13] [ 4] [0320] +13:08:52 [ 15] [ 4] [0320] +13:08:52 [ 18] [ 4] [6011] +13:08:52 [ 19] [ 3] [418] +13:08:52 [ 32] [ 6] [668899] +13:08:52 [ 35] [ 32] [6213545000774046=491212017404908] +13:08:52 [ 37] [ 12] [507901963579] +13:08:52 [ 38] [ 6] [352841] +13:08:52 [ 39] [ 2] [00] +13:08:52 [ 41] [ 8] [03020019] +13:08:52 [ 49] [ 3] [418] +13:08:52 [ 54] [ 40] [0001418C0002362762390002418C000236276239] +13:08:52 ============================================================================ +13:08:52 Calculate Source COMM Id = 4 +13:08:52 ============================================================================ +13:08:52 + + +waiting on router queue for slot.... +13:08:54 ============================================================================ +13:08:54 Slot Id : <135> +13:08:54 Transaction Type : REQUEST +13:08:54 Received From : +13:08:54 ============================================================================ +13:08:54 FNo. Len. Field Value +13:08:54 ============================================================================ +13:08:54 [ 1] [ 4] [0200] +13:08:54 [ 2] [ 16] [6213544002236872] +13:08:54 [ 3] [ 6] [311000] +13:08:54 [ 4] [ 12] [000000000000] +13:08:54 [ 7] [ 10] [0320131641] +13:08:54 [ 11] [ 6] [107246] +13:08:54 [ 12] [ 6] [131641] +13:08:54 [ 13] [ 4] [0320] +13:08:54 [ 14] [ 4] [4912] +13:08:54 [ 15] [ 4] [0320] +13:08:54 [ 18] [ 4] [6011] +13:08:54 [ 22] [ 3] [900] +13:08:54 [ 25] [ 2] [02] +13:08:54 [ 28] [ 9] [000000000] +13:08:54 [ 32] [ 6] [220699] +13:08:54 [ 35] [ 32] [6213544002236872=491212013687309] +13:08:54 [ 37] [ 12] [507900327848] +13:08:54 [ 41] [ 8] [01001800] +13:08:54 [ 42] [ 15] [APTRA ] +13:08:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:08:54 [ 49] [ 3] [418] +13:08:54 [ 52] [ 16] [4CB09E439126D4CD] +13:08:54 ============================================================================ +13:08:54 + + +waiting on router queue for slot.... +13:08:54 Sending to : +13:08:54 ============================================================================ +13:08:54 Sending to : +13:08:54 ============================================================================ +13:08:54 ============================================================================ +13:08:54 Slot Id : <135> +13:08:54 Transaction Type : REQUEST +13:08:54 Received From : +13:08:54 ============================================================================ +13:08:54 FNo. Len. Field Value +13:08:54 ============================================================================ +13:08:54 [ 1] [ 4] [0200] +13:08:54 [ 2] [ 16] [6213544002236872] +13:08:54 [ 3] [ 6] [311000] +13:08:54 [ 4] [ 12] [000000000000] +13:08:54 [ 7] [ 10] [0320131641] +13:08:54 [ 11] [ 6] [107246] +13:08:54 [ 12] [ 6] [131641] +13:08:54 [ 13] [ 4] [0320] +13:08:54 [ 14] [ 4] [4912] +13:08:54 [ 15] [ 4] [0320] +13:08:54 [ 18] [ 4] [6011] +13:08:54 [ 22] [ 3] [900] +13:08:54 [ 25] [ 2] [02] +13:08:54 [ 28] [ 9] [000000000] +13:08:54 [ 32] [ 6] [220699] +13:08:54 [ 35] [ 32] [6213544002236872=491212013687309] +13:08:54 [ 37] [ 12] [507900327848] +13:08:54 [ 41] [ 8] [01001800] +13:08:54 [ 42] [ 15] [APTRA ] +13:08:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:08:54 [ 49] [ 3] [418] +13:08:54 [ 52] [ 16] [4CB09E439126D4CD] +13:08:54 ============================================================================ +13:08:54 + + +waiting on router queue for slot.... +13:08:54 Sending to : +13:08:54 ============================================================================ +13:08:54 ============================================================================ +13:08:54 Slot Id : <135> +13:08:54 Transaction Type : REQUEST +13:08:54 Received From : +13:08:54 ============================================================================ +13:08:54 FNo. Len. Field Value +13:08:54 ============================================================================ +13:08:54 [ 1] [ 4] [0200] +13:08:54 [ 2] [ 16] [6213544002236872] +13:08:54 [ 3] [ 6] [311000] +13:08:54 [ 4] [ 12] [000000000000] +13:08:54 [ 7] [ 10] [0320131641] +13:08:54 [ 11] [ 6] [107246] +13:08:54 [ 12] [ 6] [131641] +13:08:54 [ 13] [ 4] [0320] +13:08:54 [ 14] [ 4] [4912] +13:08:54 [ 15] [ 4] [0320] +13:08:54 [ 18] [ 4] [6011] +13:08:54 [ 22] [ 3] [900] +13:08:54 [ 25] [ 2] [02] +13:08:54 [ 28] [ 9] [000000000] +13:08:54 [ 32] [ 6] [220699] +13:08:54 [ 35] [ 32] [6213544002236872=491212013687309] +13:08:54 [ 37] [ 12] [507900327848] +13:08:54 [ 41] [ 8] [01001800] +13:08:54 [ 42] [ 15] [APTRA ] +13:08:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:08:54 [ 49] [ 3] [418] +13:08:54 [ 52] [ 16] [57747158D92B6125] +13:08:54 ============================================================================ +13:08:54 + + +waiting on router queue for slot.... +13:08:54 Sending to : <0> +13:08:54 ============================================================================ +13:08:55 ============================================================================ +13:08:55 Slot Id : <135> +13:08:55 Transaction Type : RESPONSE +13:08:55 Received From : +13:08:55 ============================================================================ +13:08:55 FNo. Len. Field Value +13:08:55 ============================================================================ +13:08:55 [ 1] [ 4] [0210] +13:08:55 [ 2] [ 16] [6213544002236872] +13:08:55 [ 3] [ 6] [311000] +13:08:55 [ 4] [ 12] [000000000000] +13:08:55 [ 7] [ 10] [0320131641] +13:08:55 [ 11] [ 6] [107246] +13:08:55 [ 12] [ 6] [131641] +13:08:55 [ 13] [ 4] [0320] +13:08:55 [ 15] [ 4] [0320] +13:08:55 [ 18] [ 4] [6011] +13:08:55 [ 32] [ 6] [220699] +13:08:55 [ 35] [ 32] [6213544002236872=491212013687309] +13:08:55 [ 37] [ 12] [507900327848] +13:08:55 [ 38] [ 6] [159638] +13:08:55 [ 39] [ 2] [00] +13:08:55 [ 41] [ 8] [01001800] +13:08:55 [ 49] [ 3] [418] +13:08:55 [ 54] [ 40] [1001418C0000650000001002418C000065000000] +13:08:55 ============================================================================ +13:08:55 Sending to : +13:08:55 ============================================================================ +13:08:55 + + +waiting on router queue for slot.... +13:08:57 ============================================================================ +13:08:57 Slot Id : <135> +13:08:57 Transaction Type : RESPONSE +13:08:57 Received From : +13:08:57 ============================================================================ +13:08:57 FNo. Len. Field Value +13:08:57 ============================================================================ +13:08:57 [ 1] [ 4] [0210] +13:08:57 [ 2] [ 16] [6213544002236872] +13:08:57 [ 3] [ 6] [311000] +13:08:57 [ 4] [ 12] [000000000000] +13:08:57 [ 7] [ 10] [0320131641] +13:08:57 [ 11] [ 6] [107246] +13:08:57 [ 12] [ 6] [131641] +13:08:57 [ 13] [ 4] [0320] +13:08:57 [ 15] [ 4] [0320] +13:08:57 [ 18] [ 4] [6011] +13:08:57 [ 32] [ 6] [220699] +13:08:57 [ 35] [ 32] [6213544002236872=491212013687309] +13:08:57 [ 37] [ 12] [507900327848] +13:08:57 [ 38] [ 6] [159638] +13:08:57 [ 39] [ 2] [00] +13:08:57 [ 41] [ 8] [01001800] +13:08:57 [ 49] [ 3] [418] +13:08:57 [ 54] [ 40] [1001418C0000650000001002418C000065000000] +13:08:57 ============================================================================ +13:08:57 Calculate Source COMM Id = 1 +13:08:57 ============================================================================ +13:08:57 + + +waiting on router queue for slot.... +13:09:04 ============================================================================ +13:09:04 Slot Id : <152> +13:09:04 Transaction Type : REQUEST +13:09:04 Received From : +13:09:04 ============================================================================ +13:09:04 FNo. Len. Field Value +13:09:04 ============================================================================ +13:09:04 [ 1] [ 4] [0800] +13:09:04 [ 7] [ 10] [0320060811] +13:09:04 [ 11] [ 6] [156477] +13:09:04 [ 70] [ 3] [301] +13:09:04 ============================================================================ +13:09:04 + + +waiting on router queue for slot.... +13:09:04 Sending to : +13:09:04 ============================================================================ +13:09:04 ============================================================================ +13:09:04 Slot Id : <152> +13:09:04 Transaction Type : RESPONSE +13:09:04 Received From : +13:09:04 ============================================================================ +13:09:04 FNo. Len. Field Value +13:09:04 ============================================================================ +13:09:04 [ 1] [ 4] [0810] +13:09:04 [ 7] [ 10] [0320060811] +13:09:04 [ 11] [ 6] [156477] +13:09:04 [ 39] [ 2] [00] +13:09:04 [ 70] [ 3] [301] +13:09:04 ============================================================================ +13:09:04 Calculate Source COMM Id = 2 +13:09:04 ============================================================================ +13:09:04 + + +waiting on router queue for slot.... +13:09:04 ============================================================================ +13:09:04 Slot Id : <192> +13:09:04 Transaction Type : REQUEST +13:09:04 Received From : +13:09:04 ============================================================================ +13:09:04 FNo. Len. Field Value +13:09:04 ============================================================================ +13:09:04 [ 1] [ 4] [0800] +13:09:04 [ 2] [ 5] [02531] +13:09:04 [ 3] [ 6] [579138] +13:09:04 [ 7] [ 10] [0320060904] +13:09:04 [ 11] [ 6] [807175] +13:09:04 [ 15] [ 10] [0320060904] +13:09:04 [ 37] [ 11] [57913807175] +13:09:04 [ 70] [ 3] [001] +13:09:04 ============================================================================ +13:09:04 + + +waiting on router queue for slot.... +13:09:04 ============================================================================ +13:09:04 Slot Id : <192> +13:09:04 Transaction Type : RESPONSE +13:09:04 Received From : +13:09:04 ============================================================================ +13:09:04 FNo. Len. Field Value +13:09:04 ============================================================================ +13:09:04 [ 1] [ 4] [0810] +13:09:04 [ 7] [ 10] [0320060904] +13:09:04 [ 11] [ 6] [807175] +13:09:04 [ 15] [ 4] [0320] +13:09:04 [ 37] [ 12] [57913807175] +13:09:04 [ 39] [ 2] [00] +13:09:04 [ 70] [ 3] [001] +13:09:04 ============================================================================ +13:09:04 Sending to : +13:09:04 ============================================================================ +13:09:04 + + +waiting on router queue for slot.... +13:09:06 ============================================================================ +13:09:06 Slot Id : <191> +13:09:06 Transaction Type : REQUEST +13:09:06 Received From : +13:09:06 ============================================================================ +13:09:06 FNo. Len. Field Value +13:09:06 ============================================================================ +13:09:06 [ 1] [ 4] [0200] +13:09:06 [ 2] [ 16] [6213541000709744] +13:09:06 [ 3] [ 6] [011000] +13:09:06 [ 4] [ 12] [000100000000] +13:09:06 [ 7] [ 10] [0320130927] +13:09:06 [ 11] [ 6] [206172] +13:09:06 [ 12] [ 6] [130230] +13:09:06 [ 13] [ 4] [0320] +13:09:06 [ 14] [ 4] [4912] +13:09:06 [ 15] [ 4] [0320] +13:09:06 [ 18] [ 4] [6011] +13:09:06 [ 19] [ 3] [418] +13:09:06 [ 22] [ 3] [021] +13:09:06 [ 25] [ 2] [01] +13:09:06 [ 28] [ 9] [D00002000] +13:09:06 [ 32] [ 6] [198901] +13:09:06 [ 35] [ 32] [6213541000709744=491212010974754] +13:09:06 [ 37] [ 12] [507913206172] +13:09:06 [ 41] [ 8] [14529001] +13:09:06 [ 42] [ 15] [000000041452901] +13:09:06 [ 43] [ 40] [JDB ATM TON PHEUNG UNI VN ] +13:09:06 [ 49] [ 3] [418] +13:09:06 [ 52] [ 16] [32D02F3D94CE6F6E] +13:09:06 ============================================================================ +13:09:06 + + +waiting on router queue for slot.... +13:09:06 Sending to : +13:09:06 ============================================================================ +13:09:06 Sending to : +13:09:06 ============================================================================ +13:09:06 ============================================================================ +13:09:06 Slot Id : <191> +13:09:06 Transaction Type : REQUEST +13:09:06 Received From : +13:09:06 ============================================================================ +13:09:06 FNo. Len. Field Value +13:09:06 ============================================================================ +13:09:06 [ 1] [ 4] [0200] +13:09:06 [ 2] [ 16] [6213541000709744] +13:09:06 [ 3] [ 6] [011000] +13:09:06 [ 4] [ 12] [000100000000] +13:09:06 [ 7] [ 10] [0320130927] +13:09:06 [ 11] [ 6] [206172] +13:09:06 [ 12] [ 6] [130230] +13:09:06 [ 13] [ 4] [0320] +13:09:06 [ 14] [ 4] [4912] +13:09:06 [ 15] [ 4] [0320] +13:09:06 [ 18] [ 4] [6011] +13:09:06 [ 19] [ 3] [418] +13:09:06 [ 22] [ 3] [021] +13:09:06 [ 25] [ 2] [01] +13:09:06 [ 28] [ 9] [D00002000] +13:09:06 [ 32] [ 6] [198901] +13:09:06 [ 35] [ 32] [6213541000709744=491212010974754] +13:09:06 [ 37] [ 12] [507913206172] +13:09:06 [ 41] [ 8] [14529001] +13:09:06 [ 42] [ 15] [000000041452901] +13:09:06 [ 43] [ 40] [JDB ATM TON PHEUNG UNI VN ] +13:09:06 [ 49] [ 3] [418] +13:09:06 [ 52] [ 16] [32D02F3D94CE6F6E] +13:09:06 ============================================================================ +13:09:06 + + +waiting on router queue for slot.... +13:09:06 Sending to : +13:09:06 ============================================================================ +13:09:06 ============================================================================ +13:09:06 Slot Id : <191> +13:09:06 Transaction Type : REQUEST +13:09:06 Received From : +13:09:06 ============================================================================ +13:09:06 FNo. Len. Field Value +13:09:06 ============================================================================ +13:09:06 [ 1] [ 4] [0200] +13:09:06 [ 2] [ 16] [6213541000709744] +13:09:06 [ 3] [ 6] [011000] +13:09:06 [ 4] [ 12] [000100000000] +13:09:06 [ 7] [ 10] [0320130927] +13:09:06 [ 11] [ 6] [206172] +13:09:06 [ 12] [ 6] [130230] +13:09:06 [ 13] [ 4] [0320] +13:09:06 [ 14] [ 4] [4912] +13:09:06 [ 15] [ 4] [0320] +13:09:06 [ 18] [ 4] [6011] +13:09:06 [ 19] [ 3] [418] +13:09:06 [ 22] [ 3] [021] +13:09:06 [ 25] [ 2] [01] +13:09:06 [ 28] [ 9] [D00002000] +13:09:06 [ 32] [ 6] [198901] +13:09:06 [ 35] [ 32] [6213541000709744=491212010974754] +13:09:06 [ 37] [ 12] [507913206172] +13:09:06 [ 41] [ 8] [14529001] +13:09:06 [ 42] [ 15] [000000041452901] +13:09:06 [ 43] [ 40] [JDB ATM TON PHEUNG UNI VN ] +13:09:06 [ 49] [ 3] [418] +13:09:06 [ 52] [ 16] [CD5D80C7E149095F] +13:09:06 ============================================================================ +13:09:06 + + +waiting on router queue for slot.... +13:09:06 Sending to : <0> +13:09:06 ============================================================================ +13:09:07 ============================================================================ +13:09:07 Slot Id : <191> +13:09:07 Transaction Type : RESPONSE +13:09:07 Received From : +13:09:07 ============================================================================ +13:09:07 FNo. Len. Field Value +13:09:07 ============================================================================ +13:09:07 [ 1] [ 4] [0210] +13:09:07 [ 2] [ 16] [6213541000709744] +13:09:07 [ 3] [ 6] [011000] +13:09:07 [ 4] [ 12] [000100000000] +13:09:07 [ 7] [ 10] [0320130927] +13:09:07 [ 11] [ 6] [206172] +13:09:07 [ 12] [ 6] [130230] +13:09:07 [ 13] [ 4] [0320] +13:09:07 [ 15] [ 4] [0320] +13:09:07 [ 18] [ 4] [6011] +13:09:07 [ 19] [ 3] [418] +13:09:07 [ 32] [ 6] [198901] +13:09:07 [ 35] [ 32] [6213541000709744=491212010974754] +13:09:07 [ 37] [ 12] [507913206172] +13:09:07 [ 38] [ 6] [980446] +13:09:07 [ 39] [ 2] [00] +13:09:07 [ 41] [ 8] [14529001] +13:09:07 [ 49] [ 3] [418] +13:09:07 [ 54] [ 40] [1001840C0000001817701002840C000000181770] +13:09:07 ============================================================================ +13:09:07 Sending to : +13:09:07 ============================================================================ +13:09:07 + + +waiting on router queue for slot.... +13:09:08 ============================================================================ +13:09:08 Slot Id : <191> +13:09:08 Transaction Type : RESPONSE +13:09:08 Received From : +13:09:08 ============================================================================ +13:09:08 FNo. Len. Field Value +13:09:08 ============================================================================ +13:09:08 [ 1] [ 4] [0210] +13:09:08 [ 2] [ 16] [6213541000709744] +13:09:08 [ 3] [ 6] [011000] +13:09:08 [ 4] [ 12] [000100000000] +13:09:08 [ 7] [ 10] [0320130927] +13:09:08 [ 11] [ 6] [206172] +13:09:08 [ 12] [ 6] [130230] +13:09:08 [ 13] [ 4] [0320] +13:09:08 [ 15] [ 4] [0320] +13:09:08 [ 18] [ 4] [6011] +13:09:08 [ 19] [ 3] [418] +13:09:08 [ 32] [ 6] [198901] +13:09:08 [ 35] [ 32] [6213541000709744=491212010974754] +13:09:08 [ 37] [ 12] [507913206172] +13:09:08 [ 38] [ 6] [980446] +13:09:08 [ 39] [ 2] [00] +13:09:08 [ 41] [ 8] [14529001] +13:09:08 [ 49] [ 3] [418] +13:09:08 [ 54] [ 40] [1001840C0000001817701002840C000000181770] +13:09:08 ============================================================================ +13:09:08 Calculate Source COMM Id = 5 +13:09:08 ============================================================================ +13:09:08 + + +waiting on router queue for slot.... +13:09:14 ============================================================================ +13:09:14 Slot Id : <190> +13:09:14 Transaction Type : REQUEST +13:09:14 Received From : +13:09:14 ============================================================================ +13:09:14 FNo. Len. Field Value +13:09:14 ============================================================================ +13:09:14 [ 1] [ 4] [0800] +13:09:14 [ 7] [ 10] [0320060822] +13:09:14 [ 11] [ 6] [156478] +13:09:14 [ 70] [ 3] [301] +13:09:14 ============================================================================ +13:09:14 + + +waiting on router queue for slot.... +13:09:14 Sending to : +13:09:14 ============================================================================ +13:09:14 ============================================================================ +13:09:14 Slot Id : <190> +13:09:14 Transaction Type : RESPONSE +13:09:14 Received From : +13:09:14 ============================================================================ +13:09:14 FNo. Len. Field Value +13:09:14 ============================================================================ +13:09:14 [ 1] [ 4] [0810] +13:09:14 [ 7] [ 10] [0320060822] +13:09:14 [ 11] [ 6] [156478] +13:09:14 [ 39] [ 2] [00] +13:09:14 [ 70] [ 3] [301] +13:09:14 ============================================================================ +13:09:14 Calculate Source COMM Id = 2 +13:09:14 ============================================================================ +13:09:14 + + +waiting on router queue for slot.... +13:09:21 ============================================================================ +13:09:21 Slot Id : <196> +13:09:21 Transaction Type : REQUEST +13:09:21 Received From : +13:09:21 ============================================================================ +13:09:21 FNo. Len. Field Value +13:09:21 ============================================================================ +13:09:21 [ 1] [ 4] [0200] +13:09:21 [ 2] [ 16] [6213544000512969] +13:09:21 [ 3] [ 6] [010000] +13:09:21 [ 4] [ 12] [000050000000] +13:09:21 [ 7] [ 10] [0320060826] +13:09:21 [ 11] [ 6] [269222] +13:09:21 [ 12] [ 6] [130826] +13:09:21 [ 13] [ 4] [0320] +13:09:21 [ 14] [ 4] [4912] +13:09:21 [ 15] [ 4] [0320] +13:09:21 [ 18] [ 4] [6011] +13:09:21 [ 19] [ 3] [418] +13:09:21 [ 22] [ 3] [021] +13:09:21 [ 25] [ 2] [01] +13:09:21 [ 28] [ 9] [D00002000] +13:09:21 [ 32] [ 6] [180893] +13:09:21 [ 35] [ 32] [6213544000512969=491212011296306] +13:09:21 [ 37] [ 12] [507906269222] +13:09:21 [ 41] [ 8] [0105XTNY] +13:09:21 [ 42] [ 15] [999999 ] +13:09:21 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +13:09:21 [ 49] [ 3] [418] +13:09:21 [ 52] [ 16] [832D22D9155D3F70] +13:09:21 ============================================================================ +13:09:21 + + +waiting on router queue for slot.... +13:09:21 Sending to : +13:09:21 ============================================================================ +13:09:21 Sending to : +13:09:21 ============================================================================ +13:09:21 ============================================================================ +13:09:21 Slot Id : <196> +13:09:21 Transaction Type : REQUEST +13:09:21 Received From : +13:09:21 ============================================================================ +13:09:21 FNo. Len. Field Value +13:09:21 ============================================================================ +13:09:21 [ 1] [ 4] [0200] +13:09:21 [ 2] [ 16] [6213544000512969] +13:09:21 [ 3] [ 6] [010000] +13:09:21 [ 4] [ 12] [000050000000] +13:09:21 [ 7] [ 10] [0320060826] +13:09:21 [ 11] [ 6] [269222] +13:09:21 [ 12] [ 6] [130826] +13:09:21 [ 13] [ 4] [0320] +13:09:21 [ 14] [ 4] [4912] +13:09:21 [ 15] [ 4] [0320] +13:09:21 [ 18] [ 4] [6011] +13:09:21 [ 19] [ 3] [418] +13:09:21 [ 22] [ 3] [021] +13:09:21 [ 25] [ 2] [01] +13:09:21 [ 28] [ 9] [D00002000] +13:09:21 [ 32] [ 6] [180893] +13:09:21 [ 35] [ 32] [6213544000512969=491212011296306] +13:09:21 [ 37] [ 12] [507906269222] +13:09:21 [ 41] [ 8] [0105XTNY] +13:09:21 [ 42] [ 15] [999999 ] +13:09:21 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +13:09:21 [ 49] [ 3] [418] +13:09:21 [ 52] [ 16] [832D22D9155D3F70] +13:09:21 ============================================================================ +13:09:21 + + +waiting on router queue for slot.... +13:09:21 Sending to : +13:09:21 ============================================================================ +13:09:21 ============================================================================ +13:09:21 Slot Id : <196> +13:09:21 Transaction Type : REQUEST +13:09:21 Received From : +13:09:21 ============================================================================ +13:09:21 FNo. Len. Field Value +13:09:21 ============================================================================ +13:09:21 [ 1] [ 4] [0200] +13:09:21 [ 2] [ 16] [6213544000512969] +13:09:21 [ 3] [ 6] [010000] +13:09:21 [ 4] [ 12] [000050000000] +13:09:21 [ 7] [ 10] [0320060826] +13:09:21 [ 11] [ 6] [269222] +13:09:21 [ 12] [ 6] [130826] +13:09:21 [ 13] [ 4] [0320] +13:09:21 [ 14] [ 4] [4912] +13:09:21 [ 15] [ 4] [0320] +13:09:21 [ 18] [ 4] [6011] +13:09:21 [ 19] [ 3] [418] +13:09:21 [ 22] [ 3] [021] +13:09:21 [ 25] [ 2] [01] +13:09:21 [ 28] [ 9] [D00002000] +13:09:21 [ 32] [ 6] [180893] +13:09:21 [ 35] [ 32] [6213544000512969=491212011296306] +13:09:21 [ 37] [ 12] [507906269222] +13:09:21 [ 41] [ 8] [0105XTNY] +13:09:21 [ 42] [ 15] [999999 ] +13:09:21 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +13:09:21 [ 49] [ 3] [418] +13:09:21 [ 52] [ 16] [7BFC351BEE46AAE1] +13:09:21 ============================================================================ +13:09:21 + + +waiting on router queue for slot.... +13:09:21 Sending to : <0> +13:09:21 ============================================================================ +13:09:22 ============================================================================ +13:09:22 Slot Id : <196> +13:09:22 Transaction Type : RESPONSE +13:09:22 Received From : +13:09:22 ============================================================================ +13:09:22 FNo. Len. Field Value +13:09:22 ============================================================================ +13:09:22 [ 1] [ 4] [0210] +13:09:22 [ 2] [ 16] [6213544000512969] +13:09:22 [ 3] [ 6] [010000] +13:09:22 [ 4] [ 12] [000050000000] +13:09:22 [ 7] [ 10] [0320060826] +13:09:22 [ 11] [ 6] [269222] +13:09:22 [ 12] [ 6] [130826] +13:09:22 [ 13] [ 4] [0320] +13:09:22 [ 15] [ 4] [0320] +13:09:22 [ 18] [ 4] [6011] +13:09:22 [ 19] [ 3] [418] +13:09:22 [ 32] [ 6] [180893] +13:09:22 [ 35] [ 32] [6213544000512969=491212011296306] +13:09:22 [ 37] [ 12] [507906269222] +13:09:22 [ 38] [ 6] [084332] +13:09:22 [ 39] [ 2] [00] +13:09:22 [ 41] [ 8] [0105XTNY] +13:09:22 [ 49] [ 3] [418] +13:09:22 [ 54] [ 40] [0001418C0001526300750002418C000152630075] +13:09:22 ============================================================================ +13:09:22 Sending to : +13:09:22 ============================================================================ +13:09:22 + + +waiting on router queue for slot.... +13:09:22 ============================================================================ +13:09:22 Slot Id : <155> +13:09:22 Transaction Type : REQUEST +13:09:22 Received From : +13:09:22 ============================================================================ +13:09:22 FNo. Len. Field Value +13:09:22 ============================================================================ +13:09:22 [ 1] [ 4] [0200] +13:09:22 [ 2] [ 16] [6213545000761415] +13:09:22 [ 3] [ 6] [010000] +13:09:22 [ 4] [ 12] [000030000000] +13:09:22 [ 7] [ 10] [0320131710] +13:09:22 [ 11] [ 6] [003104] +13:09:22 [ 12] [ 6] [131710] +13:09:22 [ 13] [ 4] [0320] +13:09:22 [ 14] [ 4] [4912] +13:09:22 [ 15] [ 4] [0320] +13:09:22 [ 18] [ 4] [6011] +13:09:22 [ 22] [ 3] [900] +13:09:22 [ 25] [ 2] [02] +13:09:22 [ 28] [ 9] [D00002000] +13:09:22 [ 32] [ 6] [220699] +13:09:22 [ 35] [ 32] [6213545000761415=491212016141338] +13:09:22 [ 37] [ 12] [507900186755] +13:09:22 [ 41] [ 8] [08000100] +13:09:22 [ 42] [ 15] [APTRA ] +13:09:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:09:22 [ 49] [ 3] [418] +13:09:22 [ 52] [ 16] [A59A4144B9DB1B07] +13:09:22 ============================================================================ +13:09:22 + + +waiting on router queue for slot.... +13:09:22 Sending to : +13:09:22 ============================================================================ +13:09:22 Sending to : +13:09:22 ============================================================================ +13:09:23 ============================================================================ +13:09:23 Slot Id : <155> +13:09:23 Transaction Type : REQUEST +13:09:23 Received From : +13:09:23 ============================================================================ +13:09:23 FNo. Len. Field Value +13:09:23 ============================================================================ +13:09:23 [ 1] [ 4] [0200] +13:09:23 [ 2] [ 16] [6213545000761415] +13:09:23 [ 3] [ 6] [010000] +13:09:23 [ 4] [ 12] [000030000000] +13:09:23 [ 7] [ 10] [0320131710] +13:09:23 [ 11] [ 6] [003104] +13:09:23 [ 12] [ 6] [131710] +13:09:23 [ 13] [ 4] [0320] +13:09:23 [ 14] [ 4] [4912] +13:09:23 [ 15] [ 4] [0320] +13:09:23 [ 18] [ 4] [6011] +13:09:23 [ 22] [ 3] [900] +13:09:23 [ 25] [ 2] [02] +13:09:23 [ 28] [ 9] [D00002000] +13:09:23 [ 32] [ 6] [220699] +13:09:23 [ 35] [ 32] [6213545000761415=491212016141338] +13:09:23 [ 37] [ 12] [507900186755] +13:09:23 [ 41] [ 8] [08000100] +13:09:23 [ 42] [ 15] [APTRA ] +13:09:23 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:09:23 [ 49] [ 3] [418] +13:09:23 [ 52] [ 16] [A59A4144B9DB1B07] +13:09:23 ============================================================================ +13:09:23 + + +waiting on router queue for slot.... +13:09:23 Sending to : +13:09:23 ============================================================================ +13:09:23 ============================================================================ +13:09:23 Slot Id : <155> +13:09:23 Transaction Type : REQUEST +13:09:23 Received From : +13:09:23 ============================================================================ +13:09:23 FNo. Len. Field Value +13:09:23 ============================================================================ +13:09:23 [ 1] [ 4] [0200] +13:09:23 [ 2] [ 16] [6213545000761415] +13:09:23 [ 3] [ 6] [010000] +13:09:23 [ 4] [ 12] [000030000000] +13:09:23 [ 7] [ 10] [0320131710] +13:09:23 [ 11] [ 6] [003104] +13:09:23 [ 12] [ 6] [131710] +13:09:23 [ 13] [ 4] [0320] +13:09:23 [ 14] [ 4] [4912] +13:09:23 [ 15] [ 4] [0320] +13:09:23 [ 18] [ 4] [6011] +13:09:23 [ 22] [ 3] [900] +13:09:23 [ 25] [ 2] [02] +13:09:23 [ 28] [ 9] [D00002000] +13:09:23 [ 32] [ 6] [220699] +13:09:23 [ 35] [ 32] [6213545000761415=491212016141338] +13:09:23 [ 37] [ 12] [507900186755] +13:09:23 [ 41] [ 8] [08000100] +13:09:23 [ 42] [ 15] [APTRA ] +13:09:23 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:09:23 [ 49] [ 3] [418] +13:09:23 [ 52] [ 16] [3A226BB025EAC1B8] +13:09:23 ============================================================================ +13:09:23 + + +waiting on router queue for slot.... +13:09:23 Sending to : <0> +13:09:23 ============================================================================ +13:09:23 ============================================================================ +13:09:23 Slot Id : <155> +13:09:23 Transaction Type : RESPONSE +13:09:23 Received From : +13:09:23 ============================================================================ +13:09:23 FNo. Len. Field Value +13:09:23 ============================================================================ +13:09:23 [ 1] [ 4] [0210] +13:09:23 [ 2] [ 16] [6213545000761415] +13:09:23 [ 3] [ 6] [010000] +13:09:23 [ 4] [ 12] [000030000000] +13:09:23 [ 7] [ 10] [0320131710] +13:09:23 [ 11] [ 6] [003104] +13:09:23 [ 12] [ 6] [131710] +13:09:23 [ 13] [ 4] [0320] +13:09:23 [ 15] [ 4] [0320] +13:09:23 [ 18] [ 4] [6011] +13:09:23 [ 32] [ 6] [220699] +13:09:23 [ 35] [ 32] [6213545000761415=491212016141338] +13:09:23 [ 37] [ 12] [507900186755] +13:09:23 [ 38] [ 6] [003104] +13:09:23 [ 39] [ 2] [51] +13:09:23 [ 41] [ 8] [08000100] +13:09:23 [ 49] [ 3] [418] +13:09:23 [ 54] [ 40] [0001418C0000302855180002418C000030285518] +13:09:23 ============================================================================ +13:09:23 Sending to : +13:09:23 ============================================================================ +13:09:23 + + +waiting on router queue for slot.... +13:09:23 ============================================================================ +13:09:23 Slot Id : <196> +13:09:23 Transaction Type : RESPONSE +13:09:23 Received From : +13:09:23 ============================================================================ +13:09:23 FNo. Len. Field Value +13:09:23 ============================================================================ +13:09:23 [ 1] [ 4] [0210] +13:09:23 [ 2] [ 16] [6213544000512969] +13:09:23 [ 3] [ 6] [010000] +13:09:23 [ 4] [ 12] [000050000000] +13:09:23 [ 7] [ 10] [0320060826] +13:09:23 [ 11] [ 6] [269222] +13:09:23 [ 12] [ 6] [130826] +13:09:23 [ 13] [ 4] [0320] +13:09:23 [ 15] [ 4] [0320] +13:09:23 [ 18] [ 4] [6011] +13:09:23 [ 19] [ 3] [418] +13:09:23 [ 32] [ 6] [180893] +13:09:23 [ 35] [ 32] [6213544000512969=491212011296306] +13:09:23 [ 37] [ 12] [507906269222] +13:09:23 [ 38] [ 6] [084332] +13:09:23 [ 39] [ 2] [00] +13:09:23 [ 41] [ 8] [0105XTNY] +13:09:23 [ 49] [ 3] [418] +13:09:23 [ 54] [ 40] [0001418C0001526300750002418C000152630075] +13:09:23 ============================================================================ +13:09:23 Calculate Source COMM Id = 2 +13:09:23 ============================================================================ +13:09:23 + + +waiting on router queue for slot.... +13:09:24 ============================================================================ +13:09:24 Slot Id : <155> +13:09:24 Transaction Type : RESPONSE +13:09:24 Received From : +13:09:24 ============================================================================ +13:09:24 FNo. Len. Field Value +13:09:24 ============================================================================ +13:09:24 [ 1] [ 4] [0210] +13:09:24 [ 2] [ 16] [6213545000761415] +13:09:24 [ 3] [ 6] [010000] +13:09:24 [ 4] [ 12] [000030000000] +13:09:24 [ 7] [ 10] [0320131710] +13:09:24 [ 11] [ 6] [003104] +13:09:24 [ 12] [ 6] [131710] +13:09:24 [ 13] [ 4] [0320] +13:09:24 [ 15] [ 4] [0320] +13:09:24 [ 18] [ 4] [6011] +13:09:24 [ 32] [ 6] [220699] +13:09:24 [ 35] [ 32] [6213545000761415=491212016141338] +13:09:24 [ 37] [ 12] [507900186755] +13:09:24 [ 38] [ 6] [003104] +13:09:24 [ 39] [ 2] [51] +13:09:24 [ 41] [ 8] [08000100] +13:09:24 [ 49] [ 3] [418] +13:09:24 [ 54] [ 40] [0001418C0000302855180002418C000030285518] +13:09:24 ============================================================================ +13:09:24 Calculate Source COMM Id = 1 +13:09:24 ============================================================================ +13:09:24 + + +waiting on router queue for slot.... +13:09:25 ============================================================================ +13:09:25 Slot Id : <198> +13:09:25 Transaction Type : REQUEST +13:09:25 Received From : +13:09:25 ============================================================================ +13:09:25 FNo. Len. Field Value +13:09:25 ============================================================================ +13:09:25 [ 1] [ 4] [0200] +13:09:25 [ 2] [ 16] [6213544002236872] +13:09:25 [ 3] [ 6] [011000] +13:09:25 [ 4] [ 12] [000010000000] +13:09:25 [ 7] [ 10] [0320131712] +13:09:25 [ 11] [ 6] [107247] +13:09:25 [ 12] [ 6] [131712] +13:09:25 [ 13] [ 4] [0320] +13:09:25 [ 14] [ 4] [4912] +13:09:25 [ 15] [ 4] [0320] +13:09:25 [ 18] [ 4] [6011] +13:09:25 [ 22] [ 3] [900] +13:09:25 [ 25] [ 2] [02] +13:09:25 [ 28] [ 9] [D00002000] +13:09:25 [ 32] [ 6] [220699] +13:09:25 [ 35] [ 32] [6213544002236872=491212013687309] +13:09:25 [ 37] [ 12] [507900327849] +13:09:25 [ 41] [ 8] [01001800] +13:09:25 [ 42] [ 15] [APTRA ] +13:09:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:09:25 [ 49] [ 3] [418] +13:09:25 [ 52] [ 16] [4CB09E439126D4CD] +13:09:25 ============================================================================ +13:09:25 + + +waiting on router queue for slot.... +13:09:25 Sending to : +13:09:25 ============================================================================ +13:09:25 Sending to : +13:09:25 ============================================================================ +13:09:26 ============================================================================ +13:09:26 Slot Id : <198> +13:09:26 Transaction Type : REQUEST +13:09:26 Received From : +13:09:26 ============================================================================ +13:09:26 FNo. Len. Field Value +13:09:26 ============================================================================ +13:09:26 [ 1] [ 4] [0200] +13:09:26 [ 2] [ 16] [6213544002236872] +13:09:26 [ 3] [ 6] [011000] +13:09:26 [ 4] [ 12] [000010000000] +13:09:26 [ 7] [ 10] [0320131712] +13:09:26 [ 11] [ 6] [107247] +13:09:26 [ 12] [ 6] [131712] +13:09:26 [ 13] [ 4] [0320] +13:09:26 [ 14] [ 4] [4912] +13:09:26 [ 15] [ 4] [0320] +13:09:26 [ 18] [ 4] [6011] +13:09:26 [ 22] [ 3] [900] +13:09:26 [ 25] [ 2] [02] +13:09:26 [ 28] [ 9] [D00002000] +13:09:26 [ 32] [ 6] [220699] +13:09:26 [ 35] [ 32] [6213544002236872=491212013687309] +13:09:26 [ 37] [ 12] [507900327849] +13:09:26 [ 41] [ 8] [01001800] +13:09:26 [ 42] [ 15] [APTRA ] +13:09:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:09:26 [ 49] [ 3] [418] +13:09:26 [ 52] [ 16] [4CB09E439126D4CD] +13:09:26 ============================================================================ +13:09:26 + + +waiting on router queue for slot.... +13:09:26 Sending to : +13:09:26 ============================================================================ +13:09:26 ============================================================================ +13:09:26 Slot Id : <198> +13:09:26 Transaction Type : REQUEST +13:09:26 Received From : +13:09:26 ============================================================================ +13:09:26 FNo. Len. Field Value +13:09:26 ============================================================================ +13:09:26 [ 1] [ 4] [0200] +13:09:26 [ 2] [ 16] [6213544002236872] +13:09:26 [ 3] [ 6] [011000] +13:09:26 [ 4] [ 12] [000010000000] +13:09:26 [ 7] [ 10] [0320131712] +13:09:26 [ 11] [ 6] [107247] +13:09:26 [ 12] [ 6] [131712] +13:09:26 [ 13] [ 4] [0320] +13:09:26 [ 14] [ 4] [4912] +13:09:26 [ 15] [ 4] [0320] +13:09:26 [ 18] [ 4] [6011] +13:09:26 [ 22] [ 3] [900] +13:09:26 [ 25] [ 2] [02] +13:09:26 [ 28] [ 9] [D00002000] +13:09:26 [ 32] [ 6] [220699] +13:09:26 [ 35] [ 32] [6213544002236872=491212013687309] +13:09:26 [ 37] [ 12] [507900327849] +13:09:26 [ 41] [ 8] [01001800] +13:09:26 [ 42] [ 15] [APTRA ] +13:09:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:09:26 [ 49] [ 3] [418] +13:09:26 [ 52] [ 16] [57747158D92B6125] +13:09:26 ============================================================================ +13:09:26 + + +waiting on router queue for slot.... +13:09:26 Sending to : <0> +13:09:26 ============================================================================ +13:09:27 ============================================================================ +13:09:27 Slot Id : <198> +13:09:27 Transaction Type : RESPONSE +13:09:27 Received From : +13:09:27 ============================================================================ +13:09:27 FNo. Len. Field Value +13:09:27 ============================================================================ +13:09:27 [ 1] [ 4] [0210] +13:09:27 [ 2] [ 16] [6213544002236872] +13:09:27 [ 3] [ 6] [011000] +13:09:27 [ 4] [ 12] [000010000000] +13:09:27 [ 7] [ 10] [0320131712] +13:09:27 [ 11] [ 6] [107247] +13:09:27 [ 12] [ 6] [131712] +13:09:27 [ 13] [ 4] [0320] +13:09:27 [ 15] [ 4] [0320] +13:09:27 [ 18] [ 4] [6011] +13:09:27 [ 32] [ 6] [220699] +13:09:27 [ 35] [ 32] [6213544002236872=491212013687309] +13:09:27 [ 37] [ 12] [507900327849] +13:09:27 [ 38] [ 6] [683420] +13:09:27 [ 39] [ 2] [00] +13:09:27 [ 41] [ 8] [01001800] +13:09:27 [ 49] [ 3] [418] +13:09:27 [ 54] [ 40] [1001418C0000548000001002418C000054800000] +13:09:27 ============================================================================ +13:09:27 Sending to : +13:09:27 ============================================================================ +13:09:27 + + +waiting on router queue for slot.... +13:09:29 ============================================================================ +13:09:29 Slot Id : <198> +13:09:29 Transaction Type : RESPONSE +13:09:29 Received From : +13:09:29 ============================================================================ +13:09:29 FNo. Len. Field Value +13:09:29 ============================================================================ +13:09:29 [ 1] [ 4] [0210] +13:09:29 [ 2] [ 16] [6213544002236872] +13:09:29 [ 3] [ 6] [011000] +13:09:29 [ 4] [ 12] [000010000000] +13:09:29 [ 7] [ 10] [0320131712] +13:09:29 [ 11] [ 6] [107247] +13:09:29 [ 12] [ 6] [131712] +13:09:29 [ 13] [ 4] [0320] +13:09:29 [ 15] [ 4] [0320] +13:09:29 [ 18] [ 4] [6011] +13:09:29 [ 32] [ 6] [220699] +13:09:29 [ 35] [ 32] [6213544002236872=491212013687309] +13:09:29 [ 37] [ 12] [507900327849] +13:09:29 [ 38] [ 6] [683420] +13:09:29 [ 39] [ 2] [00] +13:09:29 [ 41] [ 8] [01001800] +13:09:29 [ 49] [ 3] [418] +13:09:29 [ 54] [ 40] [1001418C0000548000001002418C000054800000] +13:09:29 ============================================================================ +13:09:29 Calculate Source COMM Id = 1 +13:09:29 ============================================================================ +13:09:29 + + +waiting on router queue for slot.... +13:09:36 ============================================================================ +13:09:36 Slot Id : <181> +13:09:36 Transaction Type : REQUEST +13:09:36 Received From : +13:09:36 ============================================================================ +13:09:36 FNo. Len. Field Value +13:09:36 ============================================================================ +13:09:36 [ 1] [ 4] [0800] +13:09:36 [ 7] [ 10] [0320060843] +13:09:36 [ 11] [ 6] [156479] +13:09:36 [ 70] [ 3] [301] +13:09:36 ============================================================================ +13:09:36 + + +waiting on router queue for slot.... +13:09:36 Sending to : +13:09:36 ============================================================================ +13:09:36 ============================================================================ +13:09:36 Slot Id : <181> +13:09:36 Transaction Type : RESPONSE +13:09:36 Received From : +13:09:36 ============================================================================ +13:09:36 FNo. Len. Field Value +13:09:36 ============================================================================ +13:09:36 [ 1] [ 4] [0810] +13:09:36 [ 7] [ 10] [0320060843] +13:09:36 [ 11] [ 6] [156479] +13:09:36 [ 39] [ 2] [00] +13:09:36 [ 70] [ 3] [301] +13:09:36 ============================================================================ +13:09:36 Calculate Source COMM Id = 2 +13:09:36 ============================================================================ +13:09:36 + + +waiting on router queue for slot.... +13:09:36 ============================================================================ +13:09:36 Slot Id : <201> +13:09:36 Transaction Type : REQUEST +13:09:36 Received From : +13:09:36 ============================================================================ +13:09:36 FNo. Len. Field Value +13:09:36 ============================================================================ +13:09:36 [ 1] [ 4] [0200] +13:09:36 [ 2] [ 16] [6213541000709744] +13:09:36 [ 3] [ 6] [011000] +13:09:36 [ 4] [ 12] [000100000000] +13:09:36 [ 7] [ 10] [0320130957] +13:09:36 [ 11] [ 6] [206181] +13:09:36 [ 12] [ 6] [130300] +13:09:36 [ 13] [ 4] [0320] +13:09:36 [ 14] [ 4] [4912] +13:09:36 [ 15] [ 4] [0320] +13:09:36 [ 18] [ 4] [6011] +13:09:36 [ 19] [ 3] [418] +13:09:36 [ 22] [ 3] [021] +13:09:36 [ 25] [ 2] [01] +13:09:36 [ 28] [ 9] [D00002000] +13:09:36 [ 32] [ 6] [198901] +13:09:36 [ 35] [ 32] [6213541000709744=491212010974754] +13:09:36 [ 37] [ 12] [507913206181] +13:09:36 [ 41] [ 8] [14529001] +13:09:36 [ 42] [ 15] [000000041452901] +13:09:36 [ 43] [ 40] [JDB ATM TON PHEUNG UNI VN ] +13:09:36 [ 49] [ 3] [418] +13:09:36 [ 52] [ 16] [32D02F3D94CE6F6E] +13:09:36 ============================================================================ +13:09:36 + + +waiting on router queue for slot.... +13:09:36 Sending to : +13:09:36 ============================================================================ +13:09:36 Sending to : +13:09:36 ============================================================================ +13:09:36 ============================================================================ +13:09:36 Slot Id : <201> +13:09:36 Transaction Type : REQUEST +13:09:36 Received From : +13:09:36 ============================================================================ +13:09:36 FNo. Len. Field Value +13:09:36 ============================================================================ +13:09:36 [ 1] [ 4] [0200] +13:09:36 [ 2] [ 16] [6213541000709744] +13:09:36 [ 3] [ 6] [011000] +13:09:36 [ 4] [ 12] [000100000000] +13:09:36 [ 7] [ 10] [0320130957] +13:09:36 [ 11] [ 6] [206181] +13:09:36 [ 12] [ 6] [130300] +13:09:36 [ 13] [ 4] [0320] +13:09:36 [ 14] [ 4] [4912] +13:09:36 [ 15] [ 4] [0320] +13:09:36 [ 18] [ 4] [6011] +13:09:36 [ 19] [ 3] [418] +13:09:36 [ 22] [ 3] [021] +13:09:36 [ 25] [ 2] [01] +13:09:36 [ 28] [ 9] [D00002000] +13:09:36 [ 32] [ 6] [198901] +13:09:36 [ 35] [ 32] [6213541000709744=491212010974754] +13:09:36 [ 37] [ 12] [507913206181] +13:09:36 [ 41] [ 8] [14529001] +13:09:36 [ 42] [ 15] [000000041452901] +13:09:36 [ 43] [ 40] [JDB ATM TON PHEUNG UNI VN ] +13:09:36 [ 49] [ 3] [418] +13:09:36 [ 52] [ 16] [32D02F3D94CE6F6E] +13:09:36 ============================================================================ +13:09:36 + + +waiting on router queue for slot.... +13:09:36 Sending to : +13:09:36 ============================================================================ +13:09:36 ============================================================================ +13:09:36 Slot Id : <201> +13:09:36 Transaction Type : REQUEST +13:09:36 Received From : +13:09:36 ============================================================================ +13:09:36 FNo. Len. Field Value +13:09:36 ============================================================================ +13:09:36 [ 1] [ 4] [0200] +13:09:36 [ 2] [ 16] [6213541000709744] +13:09:36 [ 3] [ 6] [011000] +13:09:36 [ 4] [ 12] [000100000000] +13:09:36 [ 7] [ 10] [0320130957] +13:09:36 [ 11] [ 6] [206181] +13:09:36 [ 12] [ 6] [130300] +13:09:36 [ 13] [ 4] [0320] +13:09:36 [ 14] [ 4] [4912] +13:09:36 [ 15] [ 4] [0320] +13:09:36 [ 18] [ 4] [6011] +13:09:36 [ 19] [ 3] [418] +13:09:36 [ 22] [ 3] [021] +13:09:36 [ 25] [ 2] [01] +13:09:36 [ 28] [ 9] [D00002000] +13:09:36 [ 32] [ 6] [198901] +13:09:36 [ 35] [ 32] [6213541000709744=491212010974754] +13:09:36 [ 37] [ 12] [507913206181] +13:09:36 [ 41] [ 8] [14529001] +13:09:36 [ 42] [ 15] [000000041452901] +13:09:36 [ 43] [ 40] [JDB ATM TON PHEUNG UNI VN ] +13:09:36 [ 49] [ 3] [418] +13:09:36 [ 52] [ 16] [CD5D80C7E149095F] +13:09:36 ============================================================================ +13:09:36 + + +waiting on router queue for slot.... +13:09:36 Sending to : <0> +13:09:36 ============================================================================ +13:09:37 ============================================================================ +13:09:37 Slot Id : <201> +13:09:37 Transaction Type : RESPONSE +13:09:37 Received From : +13:09:37 ============================================================================ +13:09:37 FNo. Len. Field Value +13:09:37 ============================================================================ +13:09:37 [ 1] [ 4] [0210] +13:09:37 [ 2] [ 16] [6213541000709744] +13:09:37 [ 3] [ 6] [011000] +13:09:37 [ 4] [ 12] [000100000000] +13:09:37 [ 7] [ 10] [0320130957] +13:09:37 [ 11] [ 6] [206181] +13:09:37 [ 12] [ 6] [130300] +13:09:37 [ 13] [ 4] [0320] +13:09:37 [ 15] [ 4] [0320] +13:09:37 [ 18] [ 4] [6011] +13:09:37 [ 19] [ 3] [418] +13:09:37 [ 32] [ 6] [198901] +13:09:37 [ 35] [ 32] [6213541000709744=491212010974754] +13:09:37 [ 37] [ 12] [507913206181] +13:09:37 [ 38] [ 6] [539724] +13:09:37 [ 39] [ 2] [00] +13:09:37 [ 41] [ 8] [14529001] +13:09:37 [ 49] [ 3] [418] +13:09:37 [ 54] [ 40] [1001840C0000001694011002840C000000169401] +13:09:37 ============================================================================ +13:09:37 Sending to : +13:09:37 ============================================================================ +13:09:37 + + +waiting on router queue for slot.... +13:09:39 ============================================================================ +13:09:39 Slot Id : <201> +13:09:39 Transaction Type : RESPONSE +13:09:39 Received From : +13:09:39 ============================================================================ +13:09:39 FNo. Len. Field Value +13:09:39 ============================================================================ +13:09:39 [ 1] [ 4] [0210] +13:09:39 [ 2] [ 16] [6213541000709744] +13:09:39 [ 3] [ 6] [011000] +13:09:39 [ 4] [ 12] [000100000000] +13:09:39 [ 7] [ 10] [0320130957] +13:09:39 [ 11] [ 6] [206181] +13:09:39 [ 12] [ 6] [130300] +13:09:39 [ 13] [ 4] [0320] +13:09:39 [ 15] [ 4] [0320] +13:09:39 [ 18] [ 4] [6011] +13:09:39 [ 19] [ 3] [418] +13:09:39 [ 32] [ 6] [198901] +13:09:39 [ 35] [ 32] [6213541000709744=491212010974754] +13:09:39 [ 37] [ 12] [507913206181] +13:09:39 [ 38] [ 6] [539724] +13:09:39 [ 39] [ 2] [00] +13:09:39 [ 41] [ 8] [14529001] +13:09:39 [ 49] [ 3] [418] +13:09:39 [ 54] [ 40] [1001840C0000001694011002840C000000169401] +13:09:39 ============================================================================ +13:09:39 Calculate Source COMM Id = 5 +13:09:39 ============================================================================ +13:09:39 + + +waiting on router queue for slot.... +13:09:42 ============================================================================ +13:09:42 Slot Id : <214> +13:09:42 Transaction Type : REQUEST +13:09:42 Received From : +13:09:42 ============================================================================ +13:09:42 FNo. Len. Field Value +13:09:42 ============================================================================ +13:09:42 [ 1] [ 4] [0200] +13:09:42 [ 2] [ 16] [6688990040136473] +13:09:42 [ 3] [ 6] [010000] +13:09:42 [ 4] [ 12] [000200000000] +13:09:42 [ 7] [ 10] [0320060848] +13:09:42 [ 11] [ 6] [269225] +13:09:42 [ 12] [ 6] [130848] +13:09:42 [ 13] [ 4] [0320] +13:09:42 [ 14] [ 4] [9804] +13:09:42 [ 15] [ 4] [0320] +13:09:42 [ 18] [ 4] [6011] +13:09:42 [ 19] [ 3] [418] +13:09:42 [ 22] [ 3] [021] +13:09:42 [ 25] [ 2] [01] +13:09:42 [ 28] [ 9] [D00002000] +13:09:42 [ 32] [ 6] [180893] +13:09:42 [ 35] [ 37] [6688990040136473=98041261277295800000] +13:09:42 [ 37] [ 12] [507906269225] +13:09:42 [ 41] [ 8] [0321LNTV] +13:09:42 [ 42] [ 15] [999999 ] +13:09:42 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:09:42 [ 49] [ 3] [418] +13:09:42 [ 52] [ 16] [D5BE0732C6F69FCE] +13:09:42 ============================================================================ +13:09:42 + + +waiting on router queue for slot.... +13:09:42 Sending to : +13:09:42 ============================================================================ +13:09:42 Sending to : +13:09:42 ============================================================================ +13:09:42 ============================================================================ +13:09:42 Slot Id : <214> +13:09:42 Transaction Type : REQUEST +13:09:42 Received From : +13:09:42 ============================================================================ +13:09:42 FNo. Len. Field Value +13:09:42 ============================================================================ +13:09:42 [ 1] [ 4] [0200] +13:09:42 [ 2] [ 16] [6688990040136473] +13:09:42 [ 3] [ 6] [010000] +13:09:42 [ 4] [ 12] [000200000000] +13:09:42 [ 7] [ 10] [0320060848] +13:09:42 [ 11] [ 6] [269225] +13:09:42 [ 12] [ 6] [130848] +13:09:42 [ 13] [ 4] [0320] +13:09:42 [ 14] [ 4] [9804] +13:09:42 [ 15] [ 4] [0320] +13:09:42 [ 18] [ 4] [6011] +13:09:42 [ 19] [ 3] [418] +13:09:42 [ 22] [ 3] [021] +13:09:42 [ 25] [ 2] [01] +13:09:42 [ 28] [ 9] [D00002000] +13:09:42 [ 32] [ 6] [180893] +13:09:42 [ 35] [ 37] [6688990040136473=98041261277295800000] +13:09:42 [ 37] [ 12] [507906269225] +13:09:42 [ 41] [ 8] [0321LNTV] +13:09:42 [ 42] [ 15] [999999 ] +13:09:42 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:09:42 [ 49] [ 3] [418] +13:09:42 [ 52] [ 16] [D5BE0732C6F69FCE] +13:09:42 ============================================================================ +13:09:42 + + +waiting on router queue for slot.... +13:09:42 Sending to : +13:09:42 ============================================================================ +13:09:42 ============================================================================ +13:09:42 Slot Id : <214> +13:09:42 Transaction Type : REQUEST +13:09:42 Received From : +13:09:42 ============================================================================ +13:09:42 FNo. Len. Field Value +13:09:42 ============================================================================ +13:09:42 [ 1] [ 4] [0200] +13:09:42 [ 2] [ 16] [6688990040136473] +13:09:42 [ 3] [ 6] [010000] +13:09:42 [ 4] [ 12] [000200000000] +13:09:42 [ 7] [ 10] [0320060848] +13:09:42 [ 11] [ 6] [269225] +13:09:42 [ 12] [ 6] [130848] +13:09:42 [ 13] [ 4] [0320] +13:09:42 [ 14] [ 4] [9804] +13:09:42 [ 15] [ 4] [0320] +13:09:42 [ 18] [ 4] [6011] +13:09:42 [ 19] [ 3] [418] +13:09:42 [ 22] [ 3] [021] +13:09:42 [ 25] [ 2] [01] +13:09:42 [ 28] [ 9] [D00002000] +13:09:42 [ 32] [ 6] [180893] +13:09:42 [ 35] [ 37] [6688990040136473=98041261277295800000] +13:09:42 [ 37] [ 12] [507906269225] +13:09:42 [ 41] [ 8] [0321LNTV] +13:09:42 [ 42] [ 15] [999999 ] +13:09:42 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:09:42 [ 49] [ 3] [418] +13:09:42 [ 52] [ 16] [DCB9B596E2E5984E] +13:09:42 ============================================================================ +13:09:42 + + +waiting on router queue for slot.... +13:09:42 Sending to : <0> +13:09:42 ============================================================================ +13:09:42 ============================================================================ +13:09:42 Slot Id : <214> +13:09:42 Transaction Type : RESPONSE +13:09:42 Received From : +13:09:42 ============================================================================ +13:09:42 FNo. Len. Field Value +13:09:42 ============================================================================ +13:09:42 [ 1] [ 4] [0210] +13:09:42 [ 2] [ 16] [6688990040136473] +13:09:42 [ 3] [ 6] [010000] +13:09:42 [ 4] [ 12] [000200000000] +13:09:42 [ 7] [ 10] [0320060848] +13:09:42 [ 11] [ 6] [269225] +13:09:42 [ 12] [ 6] [130848] +13:09:42 [ 13] [ 4] [0320] +13:09:42 [ 15] [ 4] [0320] +13:09:42 [ 18] [ 4] [6011] +13:09:42 [ 19] [ 3] [418] +13:09:42 [ 22] [ 3] [021] +13:09:42 [ 32] [ 6] [180893] +13:09:42 [ 35] [ 37] [6688990040136473=98041261277295800000] +13:09:42 [ 37] [ 12] [507906269225] +13:09:42 [ 39] [ 2] [61] +13:09:42 [ 41] [ 8] [0321LNTV] +13:09:42 [ 49] [ 3] [418] +13:09:42 ============================================================================ +13:09:42 Sending to : +13:09:42 ============================================================================ +13:09:42 + + +waiting on router queue for slot.... +13:09:43 ============================================================================ +13:09:43 Slot Id : <214> +13:09:43 Transaction Type : RESPONSE +13:09:43 Received From : +13:09:43 ============================================================================ +13:09:43 FNo. Len. Field Value +13:09:43 ============================================================================ +13:09:43 [ 1] [ 4] [0210] +13:09:43 [ 2] [ 16] [6688990040136473] +13:09:43 [ 3] [ 6] [010000] +13:09:43 [ 4] [ 12] [000200000000] +13:09:43 [ 7] [ 10] [0320060848] +13:09:43 [ 11] [ 6] [269225] +13:09:43 [ 12] [ 6] [130848] +13:09:43 [ 13] [ 4] [0320] +13:09:43 [ 15] [ 4] [0320] +13:09:43 [ 18] [ 4] [6011] +13:09:43 [ 19] [ 3] [418] +13:09:43 [ 22] [ 3] [021] +13:09:43 [ 32] [ 6] [180893] +13:09:43 [ 35] [ 37] [6688990040136473=98041261277295800000] +13:09:43 [ 37] [ 12] [507906269225] +13:09:43 [ 39] [ 2] [61] +13:09:43 [ 41] [ 8] [0321LNTV] +13:09:43 [ 49] [ 3] [418] +13:09:43 ============================================================================ +13:09:43 Calculate Source COMM Id = 2 +13:09:43 ============================================================================ +13:09:43 + + +waiting on router queue for slot.... +13:09:50 ============================================================================ +13:09:50 Slot Id : <194> +13:09:50 Transaction Type : REQUEST +13:09:50 Received From : +13:09:50 ============================================================================ +13:09:50 FNo. Len. Field Value +13:09:50 ============================================================================ +13:09:50 [ 1] [ 4] [0200] +13:09:50 [ 2] [ 16] [6213548000021020] +13:09:50 [ 3] [ 6] [011000] +13:09:50 [ 4] [ 12] [000010000000] +13:09:50 [ 7] [ 10] [0320131011] +13:09:50 [ 11] [ 6] [206186] +13:09:50 [ 12] [ 6] [010822] +13:09:50 [ 13] [ 4] [0320] +13:09:50 [ 14] [ 4] [1304] +13:09:50 [ 15] [ 4] [0320] +13:09:50 [ 18] [ 4] [6011] +13:09:50 [ 19] [ 3] [418] +13:09:50 [ 22] [ 3] [021] +13:09:50 [ 25] [ 2] [01] +13:09:50 [ 28] [ 9] [D00002000] +13:09:50 [ 32] [ 6] [198901] +13:09:50 [ 35] [ 32] [6213548000021020=130412012102285] +13:09:50 [ 37] [ 12] [507913206186] +13:09:50 [ 41] [ 8] [01529031] +13:09:50 [ 42] [ 15] [000000041529031] +13:09:50 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +13:09:50 [ 49] [ 3] [418] +13:09:50 [ 52] [ 16] [23BFE8C7495793B6] +13:09:50 ============================================================================ +13:09:50 + + +waiting on router queue for slot.... +13:09:50 Sending to : +13:09:50 ============================================================================ +13:09:50 Sending to : +13:09:50 ============================================================================ +13:09:51 ============================================================================ +13:09:51 Slot Id : <194> +13:09:51 Transaction Type : REQUEST +13:09:51 Received From : +13:09:51 ============================================================================ +13:09:51 FNo. Len. Field Value +13:09:51 ============================================================================ +13:09:51 [ 1] [ 4] [0200] +13:09:51 [ 2] [ 16] [6213548000021020] +13:09:51 [ 3] [ 6] [011000] +13:09:51 [ 4] [ 12] [000010000000] +13:09:51 [ 7] [ 10] [0320131011] +13:09:51 [ 11] [ 6] [206186] +13:09:51 [ 12] [ 6] [010822] +13:09:51 [ 13] [ 4] [0320] +13:09:51 [ 14] [ 4] [1304] +13:09:51 [ 15] [ 4] [0320] +13:09:51 [ 18] [ 4] [6011] +13:09:51 [ 19] [ 3] [418] +13:09:51 [ 22] [ 3] [021] +13:09:51 [ 25] [ 2] [01] +13:09:51 [ 28] [ 9] [D00002000] +13:09:51 [ 32] [ 6] [198901] +13:09:51 [ 35] [ 32] [6213548000021020=130412012102285] +13:09:51 [ 37] [ 12] [507913206186] +13:09:51 [ 41] [ 8] [01529031] +13:09:51 [ 42] [ 15] [000000041529031] +13:09:51 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +13:09:51 [ 49] [ 3] [418] +13:09:51 [ 52] [ 16] [23BFE8C7495793B6] +13:09:51 ============================================================================ +13:09:51 + + +waiting on router queue for slot.... +13:09:51 Sending to : +13:09:51 ============================================================================ +13:09:51 ============================================================================ +13:09:51 Slot Id : <194> +13:09:51 Transaction Type : REQUEST +13:09:51 Received From : +13:09:51 ============================================================================ +13:09:51 FNo. Len. Field Value +13:09:51 ============================================================================ +13:09:51 [ 1] [ 4] [0200] +13:09:51 [ 2] [ 16] [6213548000021020] +13:09:51 [ 3] [ 6] [011000] +13:09:51 [ 4] [ 12] [000010000000] +13:09:51 [ 7] [ 10] [0320131011] +13:09:51 [ 11] [ 6] [206186] +13:09:51 [ 12] [ 6] [010822] +13:09:51 [ 13] [ 4] [0320] +13:09:51 [ 14] [ 4] [1304] +13:09:51 [ 15] [ 4] [0320] +13:09:51 [ 18] [ 4] [6011] +13:09:51 [ 19] [ 3] [418] +13:09:51 [ 22] [ 3] [021] +13:09:51 [ 25] [ 2] [01] +13:09:51 [ 28] [ 9] [D00002000] +13:09:51 [ 32] [ 6] [198901] +13:09:51 [ 35] [ 32] [6213548000021020=130412012102285] +13:09:51 [ 37] [ 12] [507913206186] +13:09:51 [ 41] [ 8] [01529031] +13:09:51 [ 42] [ 15] [000000041529031] +13:09:51 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +13:09:51 [ 49] [ 3] [418] +13:09:51 [ 52] [ 16] [64B4CE8D18F5E2BF] +13:09:51 ============================================================================ +13:09:51 + + +waiting on router queue for slot.... +13:09:51 Sending to : <0> +13:09:51 ============================================================================ +13:09:51 ============================================================================ +13:09:51 Slot Id : <194> +13:09:51 Transaction Type : RESPONSE +13:09:51 Received From : +13:09:51 ============================================================================ +13:09:51 FNo. Len. Field Value +13:09:51 ============================================================================ +13:09:51 [ 1] [ 4] [0210] +13:09:51 [ 2] [ 16] [6213548000021020] +13:09:51 [ 3] [ 6] [011000] +13:09:51 [ 4] [ 12] [000010000000] +13:09:51 [ 7] [ 10] [0320131011] +13:09:51 [ 11] [ 6] [206186] +13:09:51 [ 12] [ 6] [010822] +13:09:51 [ 13] [ 4] [0320] +13:09:51 [ 15] [ 4] [0320] +13:09:51 [ 18] [ 4] [6011] +13:09:51 [ 19] [ 3] [418] +13:09:51 [ 32] [ 6] [198901] +13:09:51 [ 35] [ 32] [6213548000021020=130412012102285] +13:09:51 [ 37] [ 12] [507913206186] +13:09:51 [ 38] [ 6] [645761] +13:09:51 [ 39] [ 2] [00] +13:09:51 [ 41] [ 8] [01529031] +13:09:51 [ 49] [ 3] [418] +13:09:51 [ 54] [ 40] [1001418C0000321806251002418C000032180625] +13:09:51 ============================================================================ +13:09:51 Sending to : +13:09:51 ============================================================================ +13:09:51 + + +waiting on router queue for slot.... +13:09:53 ============================================================================ +13:09:53 Slot Id : <194> +13:09:53 Transaction Type : RESPONSE +13:09:53 Received From : +13:09:53 ============================================================================ +13:09:53 FNo. Len. Field Value +13:09:53 ============================================================================ +13:09:53 [ 1] [ 4] [0210] +13:09:53 [ 2] [ 16] [6213548000021020] +13:09:53 [ 3] [ 6] [011000] +13:09:53 [ 4] [ 12] [000010000000] +13:09:53 [ 7] [ 10] [0320131011] +13:09:53 [ 11] [ 6] [206186] +13:09:53 [ 12] [ 6] [010822] +13:09:53 [ 13] [ 4] [0320] +13:09:53 [ 15] [ 4] [0320] +13:09:53 [ 18] [ 4] [6011] +13:09:53 [ 19] [ 3] [418] +13:09:53 [ 32] [ 6] [198901] +13:09:53 [ 35] [ 32] [6213548000021020=130412012102285] +13:09:53 [ 37] [ 12] [507913206186] +13:09:53 [ 38] [ 6] [645761] +13:09:53 [ 39] [ 2] [00] +13:09:53 [ 41] [ 8] [01529031] +13:09:53 [ 49] [ 3] [418] +13:09:53 [ 54] [ 40] [1001418C0000321806251002418C000032180625] +13:09:53 ============================================================================ +13:09:53 Calculate Source COMM Id = 5 +13:09:53 ============================================================================ +13:09:53 + + +waiting on router queue for slot.... +13:09:55 ============================================================================ +13:09:55 Slot Id : <165> +13:09:55 Transaction Type : REQUEST +13:09:55 Received From : +13:09:55 ============================================================================ +13:09:55 FNo. Len. Field Value +13:09:55 ============================================================================ +13:09:55 [ 1] [ 4] [0800] +13:09:55 [ 7] [ 10] [0320061742] +13:09:55 [ 11] [ 6] [012423] +13:09:55 [ 37] [ 12] [57913012423] +13:09:55 [ 70] [ 3] [301] +13:09:55 ============================================================================ +13:09:55 + + +waiting on router queue for slot.... +13:09:55 Sending to : +13:09:55 ============================================================================ +13:09:55 ============================================================================ +13:09:55 Slot Id : <165> +13:09:55 Transaction Type : RESPONSE +13:09:55 Received From : +13:09:55 ============================================================================ +13:09:55 FNo. Len. Field Value +13:09:55 ============================================================================ +13:09:55 [ 1] [ 4] [0810] +13:09:55 [ 7] [ 10] [0320061742] +13:09:55 [ 11] [ 6] [012423] +13:09:55 [ 37] [ 12] [579130124230] +13:09:55 [ 39] [ 2] [00] +13:09:55 [ 70] [ 3] [810] +13:09:55 ============================================================================ +13:09:55 Calculate Source COMM Id = 1 +13:09:55 ============================================================================ +13:09:55 + + +waiting on router queue for slot.... +13:09:58 ============================================================================ +13:09:58 Slot Id : <195> +13:09:58 Transaction Type : REQUEST +13:09:58 Received From : +13:09:58 ============================================================================ +13:09:58 FNo. Len. Field Value +13:09:58 ============================================================================ +13:09:58 [ 1] [ 4] [0200] +13:09:58 [ 2] [ 16] [6213545000774046] +13:09:58 [ 3] [ 6] [010000] +13:09:58 [ 4] [ 12] [000030000000] +13:09:58 [ 7] [ 10] [0320130749] +13:09:58 [ 11] [ 6] [945838] +13:09:58 [ 12] [ 6] [130749] +13:09:58 [ 13] [ 4] [0320] +13:09:58 [ 15] [ 4] [0320] +13:09:58 [ 18] [ 4] [6011] +13:09:58 [ 19] [ 3] [418] +13:09:58 [ 22] [ 3] [021] +13:09:58 [ 25] [ 2] [01] +13:09:58 [ 28] [ 9] [D00002000] +13:09:58 [ 32] [ 6] [668899] +13:09:58 [ 35] [ 32] [6213545000774046=491212017404908] +13:09:58 [ 37] [ 12] [507901963581] +13:09:58 [ 41] [ 8] [03020019] +13:09:58 [ 42] [ 15] [APT ] +13:09:58 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:09:58 [ 49] [ 3] [418] +13:09:58 [ 52] [ 16] [0004E7C02A047E50] +13:09:58 ============================================================================ +13:09:58 + + +waiting on router queue for slot.... +13:09:58 Sending to : +13:09:58 ============================================================================ +13:09:58 Sending to : +13:09:58 ============================================================================ +13:09:59 ============================================================================ +13:09:59 Slot Id : <195> +13:09:59 Transaction Type : REQUEST +13:09:59 Received From : +13:09:59 ============================================================================ +13:09:59 FNo. Len. Field Value +13:09:59 ============================================================================ +13:09:59 [ 1] [ 4] [0200] +13:09:59 [ 2] [ 16] [6213545000774046] +13:09:59 [ 3] [ 6] [010000] +13:09:59 [ 4] [ 12] [000030000000] +13:09:59 [ 7] [ 10] [0320130749] +13:09:59 [ 11] [ 6] [945838] +13:09:59 [ 12] [ 6] [130749] +13:09:59 [ 13] [ 4] [0320] +13:09:59 [ 15] [ 4] [0320] +13:09:59 [ 18] [ 4] [6011] +13:09:59 [ 19] [ 3] [418] +13:09:59 [ 22] [ 3] [021] +13:09:59 [ 25] [ 2] [01] +13:09:59 [ 28] [ 9] [D00002000] +13:09:59 [ 32] [ 6] [668899] +13:09:59 [ 35] [ 32] [6213545000774046=491212017404908] +13:09:59 [ 37] [ 12] [507901963581] +13:09:59 [ 41] [ 8] [03020019] +13:09:59 [ 42] [ 15] [APT ] +13:09:59 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:09:59 [ 49] [ 3] [418] +13:09:59 [ 52] [ 16] [0004E7C02A047E50] +13:09:59 ============================================================================ +13:09:59 + + +waiting on router queue for slot.... +13:09:59 Sending to : +13:09:59 ============================================================================ +13:09:59 ============================================================================ +13:09:59 Slot Id : <195> +13:09:59 Transaction Type : REQUEST +13:09:59 Received From : +13:09:59 ============================================================================ +13:09:59 FNo. Len. Field Value +13:09:59 ============================================================================ +13:09:59 [ 1] [ 4] [0200] +13:09:59 [ 2] [ 16] [6213545000774046] +13:09:59 [ 3] [ 6] [010000] +13:09:59 [ 4] [ 12] [000030000000] +13:09:59 [ 7] [ 10] [0320130749] +13:09:59 [ 11] [ 6] [945838] +13:09:59 [ 12] [ 6] [130749] +13:09:59 [ 13] [ 4] [0320] +13:09:59 [ 15] [ 4] [0320] +13:09:59 [ 18] [ 4] [6011] +13:09:59 [ 19] [ 3] [418] +13:09:59 [ 22] [ 3] [021] +13:09:59 [ 25] [ 2] [01] +13:09:59 [ 28] [ 9] [D00002000] +13:09:59 [ 32] [ 6] [668899] +13:09:59 [ 35] [ 32] [6213545000774046=491212017404908] +13:09:59 [ 37] [ 12] [507901963581] +13:09:59 [ 41] [ 8] [03020019] +13:09:59 [ 42] [ 15] [APT ] +13:09:59 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:09:59 [ 49] [ 3] [418] +13:09:59 [ 52] [ 16] [8B7E305D659A8396] +13:09:59 ============================================================================ +13:09:59 + + +waiting on router queue for slot.... +13:09:59 Sending to : <0> +13:09:59 ============================================================================ +13:09:59 ============================================================================ +13:09:59 Slot Id : <209> +13:09:59 Transaction Type : REQUEST +13:09:59 Received From : +13:09:59 ============================================================================ +13:09:59 FNo. Len. Field Value +13:09:59 ============================================================================ +13:09:59 [ 1] [ 4] [0800] +13:09:59 [ 7] [ 10] [0320060906] +13:09:59 [ 11] [ 6] [156480] +13:09:59 [ 70] [ 3] [301] +13:09:59 ============================================================================ +13:09:59 + + +waiting on router queue for slot.... +13:09:59 Sending to : +13:09:59 ============================================================================ +13:09:59 ============================================================================ +13:09:59 Slot Id : <209> +13:09:59 Transaction Type : RESPONSE +13:09:59 Received From : +13:09:59 ============================================================================ +13:09:59 FNo. Len. Field Value +13:09:59 ============================================================================ +13:09:59 [ 1] [ 4] [0810] +13:09:59 [ 7] [ 10] [0320060906] +13:09:59 [ 11] [ 6] [156480] +13:09:59 [ 39] [ 2] [00] +13:09:59 [ 70] [ 3] [301] +13:09:59 ============================================================================ +13:09:59 Calculate Source COMM Id = 2 +13:09:59 ============================================================================ +13:09:59 + + +waiting on router queue for slot.... +13:09:59 ============================================================================ +13:09:59 Slot Id : <195> +13:09:59 Transaction Type : RESPONSE +13:09:59 Received From : +13:09:59 ============================================================================ +13:09:59 FNo. Len. Field Value +13:09:59 ============================================================================ +13:09:59 [ 1] [ 4] [0210] +13:09:59 [ 2] [ 16] [6213545000774046] +13:09:59 [ 3] [ 6] [010000] +13:09:59 [ 4] [ 12] [000030000000] +13:09:59 [ 7] [ 10] [0320130749] +13:09:59 [ 11] [ 6] [945838] +13:09:59 [ 12] [ 6] [130749] +13:09:59 [ 13] [ 4] [0320] +13:09:59 [ 15] [ 4] [0320] +13:09:59 [ 18] [ 4] [6011] +13:09:59 [ 19] [ 3] [418] +13:09:59 [ 32] [ 6] [668899] +13:09:59 [ 35] [ 32] [6213545000774046=491212017404908] +13:09:59 [ 37] [ 12] [507901963581] +13:09:59 [ 38] [ 6] [649021] +13:09:59 [ 39] [ 2] [00] +13:09:59 [ 41] [ 8] [03020019] +13:09:59 [ 49] [ 3] [418] +13:09:59 [ 54] [ 40] [0001418C0002060762390002418C000206076239] +13:09:59 ============================================================================ +13:09:59 Sending to : +13:09:59 ============================================================================ +13:09:59 + + +waiting on router queue for slot.... +13:10:01 ============================================================================ +13:10:01 Slot Id : <195> +13:10:01 Transaction Type : RESPONSE +13:10:01 Received From : +13:10:01 ============================================================================ +13:10:01 FNo. Len. Field Value +13:10:01 ============================================================================ +13:10:01 [ 1] [ 4] [0210] +13:10:01 [ 2] [ 16] [6213545000774046] +13:10:01 [ 3] [ 6] [010000] +13:10:01 [ 4] [ 12] [000030000000] +13:10:01 [ 7] [ 10] [0320130749] +13:10:01 [ 11] [ 6] [945838] +13:10:01 [ 12] [ 6] [130749] +13:10:01 [ 13] [ 4] [0320] +13:10:01 [ 15] [ 4] [0320] +13:10:01 [ 18] [ 4] [6011] +13:10:01 [ 19] [ 3] [418] +13:10:01 [ 32] [ 6] [668899] +13:10:01 [ 35] [ 32] [6213545000774046=491212017404908] +13:10:01 [ 37] [ 12] [507901963581] +13:10:01 [ 38] [ 6] [649021] +13:10:01 [ 39] [ 2] [00] +13:10:01 [ 41] [ 8] [03020019] +13:10:01 [ 49] [ 3] [418] +13:10:01 [ 54] [ 40] [0001418C0002060762390002418C000206076239] +13:10:01 ============================================================================ +13:10:01 Calculate Source COMM Id = 4 +13:10:01 ============================================================================ +13:10:01 + + +waiting on router queue for slot.... +13:10:03 ============================================================================ +13:10:03 Slot Id : <178> +13:10:03 Transaction Type : REQUEST +13:10:03 Received From : +13:10:03 ============================================================================ +13:10:03 FNo. Len. Field Value +13:10:03 ============================================================================ +13:10:03 [ 1] [ 4] [0200] +13:10:03 [ 2] [ 16] [6213541000709744] +13:10:03 [ 3] [ 6] [011000] +13:10:03 [ 4] [ 12] [000100000000] +13:10:03 [ 7] [ 10] [0320131024] +13:10:03 [ 11] [ 6] [206189] +13:10:03 [ 12] [ 6] [130327] +13:10:03 [ 13] [ 4] [0320] +13:10:03 [ 14] [ 4] [4912] +13:10:03 [ 15] [ 4] [0320] +13:10:03 [ 18] [ 4] [6011] +13:10:03 [ 19] [ 3] [418] +13:10:03 [ 22] [ 3] [021] +13:10:03 [ 25] [ 2] [01] +13:10:03 [ 28] [ 9] [D00002000] +13:10:03 [ 32] [ 6] [198901] +13:10:03 [ 35] [ 32] [6213541000709744=491212010974754] +13:10:03 [ 37] [ 12] [507913206189] +13:10:03 [ 41] [ 8] [14529001] +13:10:03 [ 42] [ 15] [000000041452901] +13:10:03 [ 43] [ 40] [JDB ATM TON PHEUNG UNI VN ] +13:10:03 [ 49] [ 3] [418] +13:10:03 [ 52] [ 16] [32D02F3D94CE6F6E] +13:10:03 ============================================================================ +13:10:03 + + +waiting on router queue for slot.... +13:10:03 Sending to : +13:10:03 ============================================================================ +13:10:03 Sending to : +13:10:03 ============================================================================ +13:10:03 ============================================================================ +13:10:03 Slot Id : <178> +13:10:03 Transaction Type : REQUEST +13:10:03 Received From : +13:10:03 ============================================================================ +13:10:03 FNo. Len. Field Value +13:10:03 ============================================================================ +13:10:03 [ 1] [ 4] [0200] +13:10:03 [ 2] [ 16] [6213541000709744] +13:10:03 [ 3] [ 6] [011000] +13:10:03 [ 4] [ 12] [000100000000] +13:10:03 [ 7] [ 10] [0320131024] +13:10:03 [ 11] [ 6] [206189] +13:10:03 [ 12] [ 6] [130327] +13:10:03 [ 13] [ 4] [0320] +13:10:03 [ 14] [ 4] [4912] +13:10:03 [ 15] [ 4] [0320] +13:10:03 [ 18] [ 4] [6011] +13:10:03 [ 19] [ 3] [418] +13:10:03 [ 22] [ 3] [021] +13:10:03 [ 25] [ 2] [01] +13:10:03 [ 28] [ 9] [D00002000] +13:10:03 [ 32] [ 6] [198901] +13:10:03 [ 35] [ 32] [6213541000709744=491212010974754] +13:10:03 [ 37] [ 12] [507913206189] +13:10:03 [ 41] [ 8] [14529001] +13:10:03 [ 42] [ 15] [000000041452901] +13:10:03 [ 43] [ 40] [JDB ATM TON PHEUNG UNI VN ] +13:10:03 [ 49] [ 3] [418] +13:10:03 [ 52] [ 16] [32D02F3D94CE6F6E] +13:10:03 ============================================================================ +13:10:03 + + +waiting on router queue for slot.... +13:10:03 Sending to : +13:10:03 ============================================================================ +13:10:03 ============================================================================ +13:10:03 Slot Id : <178> +13:10:03 Transaction Type : REQUEST +13:10:03 Received From : +13:10:03 ============================================================================ +13:10:03 FNo. Len. Field Value +13:10:03 ============================================================================ +13:10:03 [ 1] [ 4] [0200] +13:10:03 [ 2] [ 16] [6213541000709744] +13:10:03 [ 3] [ 6] [011000] +13:10:03 [ 4] [ 12] [000100000000] +13:10:03 [ 7] [ 10] [0320131024] +13:10:03 [ 11] [ 6] [206189] +13:10:03 [ 12] [ 6] [130327] +13:10:03 [ 13] [ 4] [0320] +13:10:03 [ 14] [ 4] [4912] +13:10:03 [ 15] [ 4] [0320] +13:10:03 [ 18] [ 4] [6011] +13:10:03 [ 19] [ 3] [418] +13:10:03 [ 22] [ 3] [021] +13:10:03 [ 25] [ 2] [01] +13:10:03 [ 28] [ 9] [D00002000] +13:10:03 [ 32] [ 6] [198901] +13:10:03 [ 35] [ 32] [6213541000709744=491212010974754] +13:10:03 [ 37] [ 12] [507913206189] +13:10:03 [ 41] [ 8] [14529001] +13:10:03 [ 42] [ 15] [000000041452901] +13:10:03 [ 43] [ 40] [JDB ATM TON PHEUNG UNI VN ] +13:10:03 [ 49] [ 3] [418] +13:10:03 [ 52] [ 16] [CD5D80C7E149095F] +13:10:03 ============================================================================ +13:10:03 + + +waiting on router queue for slot.... +13:10:03 Sending to : <0> +13:10:03 ============================================================================ +13:10:04 ============================================================================ +13:10:04 Slot Id : <178> +13:10:04 Transaction Type : RESPONSE +13:10:04 Received From : +13:10:04 ============================================================================ +13:10:04 FNo. Len. Field Value +13:10:04 ============================================================================ +13:10:04 [ 1] [ 4] [0210] +13:10:04 [ 2] [ 16] [6213541000709744] +13:10:04 [ 3] [ 6] [011000] +13:10:04 [ 4] [ 12] [000100000000] +13:10:04 [ 7] [ 10] [0320131024] +13:10:04 [ 11] [ 6] [206189] +13:10:04 [ 12] [ 6] [130327] +13:10:04 [ 13] [ 4] [0320] +13:10:04 [ 15] [ 4] [0320] +13:10:04 [ 18] [ 4] [6011] +13:10:04 [ 19] [ 3] [418] +13:10:04 [ 32] [ 6] [198901] +13:10:04 [ 35] [ 32] [6213541000709744=491212010974754] +13:10:04 [ 37] [ 12] [507913206189] +13:10:04 [ 38] [ 6] [310966] +13:10:04 [ 39] [ 2] [00] +13:10:04 [ 41] [ 8] [14529001] +13:10:04 [ 49] [ 3] [418] +13:10:04 [ 54] [ 40] [1001840C0000001570321002840C000000157032] +13:10:04 ============================================================================ +13:10:04 Sending to : +13:10:04 ============================================================================ +13:10:04 + + +waiting on router queue for slot.... +13:10:05 ============================================================================ +13:10:05 Slot Id : <178> +13:10:05 Transaction Type : RESPONSE +13:10:05 Received From : +13:10:05 ============================================================================ +13:10:05 FNo. Len. Field Value +13:10:05 ============================================================================ +13:10:05 [ 1] [ 4] [0210] +13:10:05 [ 2] [ 16] [6213541000709744] +13:10:05 [ 3] [ 6] [011000] +13:10:05 [ 4] [ 12] [000100000000] +13:10:05 [ 7] [ 10] [0320131024] +13:10:05 [ 11] [ 6] [206189] +13:10:05 [ 12] [ 6] [130327] +13:10:05 [ 13] [ 4] [0320] +13:10:05 [ 15] [ 4] [0320] +13:10:05 [ 18] [ 4] [6011] +13:10:05 [ 19] [ 3] [418] +13:10:05 [ 32] [ 6] [198901] +13:10:05 [ 35] [ 32] [6213541000709744=491212010974754] +13:10:05 [ 37] [ 12] [507913206189] +13:10:05 [ 38] [ 6] [310966] +13:10:05 [ 39] [ 2] [00] +13:10:05 [ 41] [ 8] [14529001] +13:10:05 [ 49] [ 3] [418] +13:10:05 [ 54] [ 40] [1001840C0000001570321002840C000000157032] +13:10:05 ============================================================================ +13:10:05 Calculate Source COMM Id = 5 +13:10:05 ============================================================================ +13:10:05 + + +waiting on router queue for slot.... +13:10:06 ============================================================================ +13:10:06 Slot Id : <184> +13:10:06 Transaction Type : REQUEST +13:10:06 Received From : +13:10:06 ============================================================================ +13:10:06 FNo. Len. Field Value +13:10:06 ============================================================================ +13:10:06 [ 1] [ 4] [0800] +13:10:06 [ 2] [ 5] [02531] +13:10:06 [ 3] [ 6] [579138] +13:10:06 [ 7] [ 10] [0320061006] +13:10:06 [ 11] [ 6] [807176] +13:10:06 [ 15] [ 10] [0320061006] +13:10:06 [ 37] [ 11] [57913807176] +13:10:06 [ 70] [ 3] [001] +13:10:06 ============================================================================ +13:10:06 + + +waiting on router queue for slot.... +13:10:06 ============================================================================ +13:10:06 Slot Id : <184> +13:10:06 Transaction Type : RESPONSE +13:10:06 Received From : +13:10:06 ============================================================================ +13:10:06 FNo. Len. Field Value +13:10:06 ============================================================================ +13:10:06 [ 1] [ 4] [0810] +13:10:06 [ 7] [ 10] [0320061006] +13:10:06 [ 11] [ 6] [807176] +13:10:06 [ 15] [ 4] [0320] +13:10:06 [ 37] [ 12] [57913807176] +13:10:06 [ 39] [ 2] [00] +13:10:06 [ 70] [ 3] [001] +13:10:06 ============================================================================ +13:10:06 Sending to : +13:10:06 ============================================================================ +13:10:06 + + +waiting on router queue for slot.... +13:10:10 ============================================================================ +13:10:10 Slot Id : <206> +13:10:10 Transaction Type : REQUEST +13:10:10 Received From : +13:10:10 ============================================================================ +13:10:10 FNo. Len. Field Value +13:10:10 ============================================================================ +13:10:10 [ 1] [ 4] [0800] +13:10:10 [ 7] [ 10] [0320060917] +13:10:10 [ 11] [ 6] [156481] +13:10:10 [ 70] [ 3] [301] +13:10:10 ============================================================================ +13:10:10 + + +waiting on router queue for slot.... +13:10:10 Sending to : +13:10:10 ============================================================================ +13:10:10 ============================================================================ +13:10:10 Slot Id : <206> +13:10:10 Transaction Type : RESPONSE +13:10:10 Received From : +13:10:10 ============================================================================ +13:10:10 FNo. Len. Field Value +13:10:10 ============================================================================ +13:10:10 [ 1] [ 4] [0810] +13:10:10 [ 7] [ 10] [0320060917] +13:10:10 [ 11] [ 6] [156481] +13:10:10 [ 39] [ 2] [00] +13:10:10 [ 70] [ 3] [301] +13:10:10 ============================================================================ +13:10:10 Calculate Source COMM Id = 2 +13:10:10 ============================================================================ +13:10:10 + + +waiting on router queue for slot.... +13:10:10 ============================================================================ +13:10:10 Slot Id : <213> +13:10:10 Transaction Type : REQUEST +13:10:10 Received From : +13:10:10 ============================================================================ +13:10:10 FNo. Len. Field Value +13:10:10 ============================================================================ +13:10:10 [ 1] [ 4] [0200] +13:10:10 [ 2] [ 16] [1808930200007607] +13:10:10 [ 3] [ 6] [010000] +13:10:10 [ 4] [ 12] [000010000000] +13:10:10 [ 7] [ 10] [0320130801] +13:10:10 [ 11] [ 6] [945848] +13:10:10 [ 12] [ 6] [130801] +13:10:10 [ 13] [ 4] [0320] +13:10:10 [ 15] [ 4] [0320] +13:10:10 [ 18] [ 4] [6011] +13:10:10 [ 19] [ 3] [418] +13:10:10 [ 22] [ 3] [021] +13:10:10 [ 25] [ 2] [01] +13:10:10 [ 28] [ 9] [D00002000] +13:10:10 [ 32] [ 6] [668899] +13:10:10 [ 35] [ 27] [1808930200007607=1803500588] +13:10:10 [ 37] [ 12] [507900123337] +13:10:10 [ 41] [ 8] [03020003] +13:10:10 [ 42] [ 15] [APT ] +13:10:10 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +13:10:10 [ 49] [ 3] [418] +13:10:10 [ 52] [ 16] [142D9B27AA4EFD4E] +13:10:10 ============================================================================ +13:10:10 + + +waiting on router queue for slot.... +13:10:10 Sending to : +13:10:10 ============================================================================ +13:10:10 Sending to : +13:10:10 ============================================================================ +13:10:11 ============================================================================ +13:10:11 Slot Id : <213> +13:10:11 Transaction Type : REQUEST +13:10:11 Received From : +13:10:11 ============================================================================ +13:10:11 FNo. Len. Field Value +13:10:11 ============================================================================ +13:10:11 [ 1] [ 4] [0200] +13:10:11 [ 2] [ 16] [1808930200007607] +13:10:11 [ 3] [ 6] [010000] +13:10:11 [ 4] [ 12] [000010000000] +13:10:11 [ 7] [ 10] [0320130801] +13:10:11 [ 11] [ 6] [945848] +13:10:11 [ 12] [ 6] [130801] +13:10:11 [ 13] [ 4] [0320] +13:10:11 [ 15] [ 4] [0320] +13:10:11 [ 18] [ 4] [6011] +13:10:11 [ 19] [ 3] [418] +13:10:11 [ 22] [ 3] [021] +13:10:11 [ 25] [ 2] [01] +13:10:11 [ 28] [ 9] [D00002000] +13:10:11 [ 32] [ 6] [668899] +13:10:11 [ 35] [ 27] [1808930200007607=1803500588] +13:10:11 [ 37] [ 12] [507900123337] +13:10:11 [ 41] [ 8] [03020003] +13:10:11 [ 42] [ 15] [APT ] +13:10:11 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +13:10:11 [ 49] [ 3] [418] +13:10:11 [ 52] [ 16] [142D9B27AA4EFD4E] +13:10:11 ============================================================================ +13:10:11 + + +waiting on router queue for slot.... +13:10:11 Sending to : +13:10:11 ============================================================================ +13:10:11 ============================================================================ +13:10:11 Slot Id : <213> +13:10:11 Transaction Type : REQUEST +13:10:11 Received From : +13:10:11 ============================================================================ +13:10:11 FNo. Len. Field Value +13:10:11 ============================================================================ +13:10:11 [ 1] [ 4] [0200] +13:10:11 [ 2] [ 16] [1808930200007607] +13:10:11 [ 3] [ 6] [010000] +13:10:11 [ 4] [ 12] [000010000000] +13:10:11 [ 7] [ 10] [0320130801] +13:10:11 [ 11] [ 6] [945848] +13:10:11 [ 12] [ 6] [130801] +13:10:11 [ 13] [ 4] [0320] +13:10:11 [ 15] [ 4] [0320] +13:10:11 [ 18] [ 4] [6011] +13:10:11 [ 19] [ 3] [418] +13:10:11 [ 22] [ 3] [021] +13:10:11 [ 25] [ 2] [01] +13:10:11 [ 28] [ 9] [D00002000] +13:10:11 [ 32] [ 6] [668899] +13:10:11 [ 35] [ 27] [1808930200007607=1803500588] +13:10:11 [ 37] [ 12] [507900123337] +13:10:11 [ 41] [ 8] [03020003] +13:10:11 [ 42] [ 15] [APT ] +13:10:11 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +13:10:11 [ 49] [ 3] [418] +13:10:11 [ 52] [ 16] [973C3A5E276DEFE8] +13:10:11 ============================================================================ +13:10:11 + + +waiting on router queue for slot.... +13:10:11 Sending to : <2> +13:10:11 ============================================================================ +13:10:14 ============================================================================ +13:10:14 Slot Id : <213> +13:10:14 Transaction Type : RESPONSE +13:10:14 Received From : +13:10:14 ============================================================================ +13:10:14 FNo. Len. Field Value +13:10:14 ============================================================================ +13:10:14 [ 1] [ 4] [0210] +13:10:14 [ 2] [ 16] [1808930200007607] +13:10:14 [ 3] [ 6] [010000] +13:10:14 [ 4] [ 12] [000010000000] +13:10:14 [ 6] [ 12] [000010000000] +13:10:14 [ 7] [ 10] [0320130801] +13:10:14 [ 11] [ 6] [945848] +13:10:14 [ 12] [ 6] [130801] +13:10:14 [ 13] [ 4] [0320] +13:10:14 [ 18] [ 4] [6011] +13:10:14 [ 19] [ 3] [418] +13:10:14 [ 22] [ 3] [021] +13:10:14 [ 32] [ 6] [668899] +13:10:14 [ 35] [ 27] [1808930200007607=1803500588] +13:10:14 [ 37] [ 12] [507900123337] +13:10:14 [ 38] [ 6] [945848] +13:10:14 [ 39] [ 2] [00] +13:10:14 [ 41] [ 8] [03020003] +13:10:14 [ 49] [ 3] [418] +13:10:14 [ 52] [ 16] [973C3A5E276DEFE8] +13:10:14 [ 54] [ 20] [1001418C001197096500] +13:10:14 ============================================================================ +13:10:14 Sending to : +13:10:14 ============================================================================ +13:10:14 + + +waiting on router queue for slot.... +13:10:15 ============================================================================ +13:10:15 Slot Id : <213> +13:10:15 Transaction Type : RESPONSE +13:10:15 Received From : +13:10:15 ============================================================================ +13:10:15 FNo. Len. Field Value +13:10:15 ============================================================================ +13:10:15 [ 1] [ 4] [0210] +13:10:15 [ 2] [ 16] [1808930200007607] +13:10:15 [ 3] [ 6] [010000] +13:10:15 [ 4] [ 12] [000010000000] +13:10:15 [ 6] [ 12] [000010000000] +13:10:15 [ 7] [ 10] [0320130801] +13:10:15 [ 11] [ 6] [945848] +13:10:15 [ 12] [ 6] [130801] +13:10:15 [ 13] [ 4] [0320] +13:10:15 [ 18] [ 4] [6011] +13:10:15 [ 19] [ 3] [418] +13:10:15 [ 22] [ 3] [021] +13:10:15 [ 32] [ 6] [668899] +13:10:15 [ 35] [ 27] [1808930200007607=1803500588] +13:10:15 [ 37] [ 12] [507900123337] +13:10:15 [ 38] [ 6] [945848] +13:10:15 [ 39] [ 2] [00] +13:10:15 [ 41] [ 8] [03020003] +13:10:15 [ 49] [ 3] [418] +13:10:15 [ 52] [ 16] [973C3A5E276DEFE8] +13:10:15 [ 54] [ 20] [1001418C001197096500] +13:10:15 ============================================================================ +13:10:15 Calculate Source COMM Id = 4 +13:10:15 ============================================================================ +13:10:15 + + +waiting on router queue for slot.... +13:10:16 ============================================================================ +13:10:16 Slot Id : <193> +13:10:16 Transaction Type : REQUEST +13:10:16 Received From : +13:10:16 ============================================================================ +13:10:16 FNo. Len. Field Value +13:10:16 ============================================================================ +13:10:16 [ 1] [ 4] [0200] +13:10:16 [ 2] [ 16] [6213545000761415] +13:10:16 [ 3] [ 6] [010000] +13:10:16 [ 4] [ 12] [000010000000] +13:10:16 [ 7] [ 10] [0320131804] +13:10:16 [ 11] [ 6] [003107] +13:10:16 [ 12] [ 6] [131804] +13:10:16 [ 13] [ 4] [0320] +13:10:16 [ 14] [ 4] [4912] +13:10:16 [ 15] [ 4] [0320] +13:10:16 [ 18] [ 4] [6011] +13:10:16 [ 22] [ 3] [900] +13:10:16 [ 25] [ 2] [02] +13:10:16 [ 28] [ 9] [D00002000] +13:10:16 [ 32] [ 6] [220699] +13:10:16 [ 35] [ 32] [6213545000761415=491212016141338] +13:10:16 [ 37] [ 12] [507900186757] +13:10:16 [ 41] [ 8] [08000100] +13:10:16 [ 42] [ 15] [APTRA ] +13:10:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:10:16 [ 49] [ 3] [418] +13:10:16 [ 52] [ 16] [912508B6589A50D7] +13:10:16 ============================================================================ +13:10:16 + + +waiting on router queue for slot.... +13:10:16 Sending to : +13:10:16 ============================================================================ +13:10:16 Sending to : +13:10:16 ============================================================================ +13:10:17 ============================================================================ +13:10:17 Slot Id : <193> +13:10:17 Transaction Type : REQUEST +13:10:17 Received From : +13:10:17 ============================================================================ +13:10:17 FNo. Len. Field Value +13:10:17 ============================================================================ +13:10:17 [ 1] [ 4] [0200] +13:10:17 [ 2] [ 16] [6213545000761415] +13:10:17 [ 3] [ 6] [010000] +13:10:17 [ 4] [ 12] [000010000000] +13:10:17 [ 7] [ 10] [0320131804] +13:10:17 [ 11] [ 6] [003107] +13:10:17 [ 12] [ 6] [131804] +13:10:17 [ 13] [ 4] [0320] +13:10:17 [ 14] [ 4] [4912] +13:10:17 [ 15] [ 4] [0320] +13:10:17 [ 18] [ 4] [6011] +13:10:17 [ 22] [ 3] [900] +13:10:17 [ 25] [ 2] [02] +13:10:17 [ 28] [ 9] [D00002000] +13:10:17 [ 32] [ 6] [220699] +13:10:17 [ 35] [ 32] [6213545000761415=491212016141338] +13:10:17 [ 37] [ 12] [507900186757] +13:10:17 [ 41] [ 8] [08000100] +13:10:17 [ 42] [ 15] [APTRA ] +13:10:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:10:17 [ 49] [ 3] [418] +13:10:17 [ 52] [ 16] [912508B6589A50D7] +13:10:17 ============================================================================ +13:10:17 + + +waiting on router queue for slot.... +13:10:17 Sending to : +13:10:17 ============================================================================ +13:10:17 ============================================================================ +13:10:17 Slot Id : <193> +13:10:17 Transaction Type : REQUEST +13:10:17 Received From : +13:10:17 ============================================================================ +13:10:17 FNo. Len. Field Value +13:10:17 ============================================================================ +13:10:17 [ 1] [ 4] [0200] +13:10:17 [ 2] [ 16] [6213545000761415] +13:10:17 [ 3] [ 6] [010000] +13:10:17 [ 4] [ 12] [000010000000] +13:10:17 [ 7] [ 10] [0320131804] +13:10:17 [ 11] [ 6] [003107] +13:10:17 [ 12] [ 6] [131804] +13:10:17 [ 13] [ 4] [0320] +13:10:17 [ 14] [ 4] [4912] +13:10:17 [ 15] [ 4] [0320] +13:10:17 [ 18] [ 4] [6011] +13:10:17 [ 22] [ 3] [900] +13:10:17 [ 25] [ 2] [02] +13:10:17 [ 28] [ 9] [D00002000] +13:10:17 [ 32] [ 6] [220699] +13:10:17 [ 35] [ 32] [6213545000761415=491212016141338] +13:10:17 [ 37] [ 12] [507900186757] +13:10:17 [ 41] [ 8] [08000100] +13:10:17 [ 42] [ 15] [APTRA ] +13:10:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:10:17 [ 49] [ 3] [418] +13:10:17 [ 52] [ 16] [FBB1AACD3DA4D6DA] +13:10:17 ============================================================================ +13:10:17 + + +waiting on router queue for slot.... +13:10:17 Sending to : <0> +13:10:17 ============================================================================ +13:10:18 ============================================================================ +13:10:18 Slot Id : <193> +13:10:18 Transaction Type : RESPONSE +13:10:18 Received From : +13:10:18 ============================================================================ +13:10:18 FNo. Len. Field Value +13:10:18 ============================================================================ +13:10:18 [ 1] [ 4] [0210] +13:10:18 [ 2] [ 16] [6213545000761415] +13:10:18 [ 3] [ 6] [010000] +13:10:18 [ 4] [ 12] [000010000000] +13:10:18 [ 7] [ 10] [0320131804] +13:10:18 [ 11] [ 6] [003107] +13:10:18 [ 12] [ 6] [131804] +13:10:18 [ 13] [ 4] [0320] +13:10:18 [ 15] [ 4] [0320] +13:10:18 [ 18] [ 4] [6011] +13:10:18 [ 22] [ 3] [900] +13:10:18 [ 32] [ 6] [220699] +13:10:18 [ 35] [ 32] [6213545000761415=491212016141338] +13:10:18 [ 37] [ 12] [507900186757] +13:10:18 [ 38] [ 6] [131013] +13:10:18 [ 39] [ 2] [55] +13:10:18 [ 41] [ 8] [08000100] +13:10:18 [ 49] [ 3] [418] +13:10:18 ============================================================================ +13:10:18 Sending to : +13:10:18 ============================================================================ +13:10:18 + + +waiting on router queue for slot.... +13:10:18 ============================================================================ +13:10:18 Slot Id : <221> +13:10:18 Transaction Type : REQUEST +13:10:18 Received From : +13:10:18 ============================================================================ +13:10:18 FNo. Len. Field Value +13:10:18 ============================================================================ +13:10:18 [ 1] [ 4] [0200] +13:10:18 [ 2] [ 16] [1808930200040533] +13:10:18 [ 3] [ 6] [301000] +13:10:18 [ 4] [ 12] [000000000000] +13:10:18 [ 7] [ 10] [0320131014] +13:10:18 [ 11] [ 6] [753505] +13:10:18 [ 12] [ 6] [131014] +13:10:18 [ 13] [ 4] [0320] +13:10:18 [ 15] [ 4] [0320] +13:10:18 [ 18] [ 4] [6011] +13:10:18 [ 22] [ 3] [900] +13:10:18 [ 25] [ 2] [02] +13:10:18 [ 28] [ 9] [D00000000] +13:10:18 [ 32] [ 6] [621354] +13:10:18 [ 35] [ 27] [1808930200040533=1803500902] +13:10:18 [ 37] [ 12] [507903975391] +13:10:18 [ 41] [ 8] [01011300] +13:10:18 [ 42] [ 15] [NATIVE ] +13:10:18 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +13:10:18 [ 49] [ 3] [418] +13:10:18 [ 52] [ 16] [C0A15DB9220DF5C2] +13:10:18 ============================================================================ +13:10:18 + + +waiting on router queue for slot.... +13:10:18 Sending to : +13:10:18 ============================================================================ +13:10:18 Sending to : +13:10:18 ============================================================================ +13:10:19 ============================================================================ +13:10:19 Slot Id : <221> +13:10:19 Transaction Type : REQUEST +13:10:19 Received From : +13:10:19 ============================================================================ +13:10:19 FNo. Len. Field Value +13:10:19 ============================================================================ +13:10:19 [ 1] [ 4] [0200] +13:10:19 [ 2] [ 16] [1808930200040533] +13:10:19 [ 3] [ 6] [301000] +13:10:19 [ 4] [ 12] [000000000000] +13:10:19 [ 7] [ 10] [0320131014] +13:10:19 [ 11] [ 6] [753505] +13:10:19 [ 12] [ 6] [131014] +13:10:19 [ 13] [ 4] [0320] +13:10:19 [ 15] [ 4] [0320] +13:10:19 [ 18] [ 4] [6011] +13:10:19 [ 22] [ 3] [900] +13:10:19 [ 25] [ 2] [02] +13:10:19 [ 28] [ 9] [D00000000] +13:10:19 [ 32] [ 6] [621354] +13:10:19 [ 35] [ 27] [1808930200040533=1803500902] +13:10:19 [ 37] [ 12] [507903975391] +13:10:19 [ 41] [ 8] [01011300] +13:10:19 [ 42] [ 15] [NATIVE ] +13:10:19 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +13:10:19 [ 49] [ 3] [418] +13:10:19 [ 52] [ 16] [C0A15DB9220DF5C2] +13:10:19 ============================================================================ +13:10:19 + + +waiting on router queue for slot.... +13:10:19 Sending to : +13:10:19 ============================================================================ +13:10:19 ============================================================================ +13:10:19 Slot Id : <221> +13:10:19 Transaction Type : REQUEST +13:10:19 Received From : +13:10:19 ============================================================================ +13:10:19 FNo. Len. Field Value +13:10:19 ============================================================================ +13:10:19 [ 1] [ 4] [0200] +13:10:19 [ 2] [ 16] [1808930200040533] +13:10:19 [ 3] [ 6] [301000] +13:10:19 [ 4] [ 12] [000000000000] +13:10:19 [ 7] [ 10] [0320131014] +13:10:19 [ 11] [ 6] [753505] +13:10:19 [ 12] [ 6] [131014] +13:10:19 [ 13] [ 4] [0320] +13:10:19 [ 15] [ 4] [0320] +13:10:19 [ 18] [ 4] [6011] +13:10:19 [ 22] [ 3] [900] +13:10:19 [ 25] [ 2] [02] +13:10:19 [ 28] [ 9] [D00000000] +13:10:19 [ 32] [ 6] [621354] +13:10:19 [ 35] [ 27] [1808930200040533=1803500902] +13:10:19 [ 37] [ 12] [507903975391] +13:10:19 [ 41] [ 8] [01011300] +13:10:19 [ 42] [ 15] [NATIVE ] +13:10:19 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +13:10:19 [ 49] [ 3] [418] +13:10:19 [ 52] [ 16] [1B7CAB400449A340] +13:10:19 ============================================================================ +13:10:19 + + +waiting on router queue for slot.... +13:10:19 Sending to : <2> +13:10:19 ============================================================================ +13:10:20 ============================================================================ +13:10:20 Slot Id : <193> +13:10:20 Transaction Type : RESPONSE +13:10:20 Received From : +13:10:20 ============================================================================ +13:10:20 FNo. Len. Field Value +13:10:20 ============================================================================ +13:10:20 [ 1] [ 4] [0210] +13:10:20 [ 2] [ 16] [6213545000761415] +13:10:20 [ 3] [ 6] [010000] +13:10:20 [ 4] [ 12] [000010000000] +13:10:20 [ 7] [ 10] [0320131804] +13:10:20 [ 11] [ 6] [003107] +13:10:20 [ 12] [ 6] [131804] +13:10:20 [ 13] [ 4] [0320] +13:10:20 [ 15] [ 4] [0320] +13:10:20 [ 18] [ 4] [6011] +13:10:20 [ 22] [ 3] [900] +13:10:20 [ 32] [ 6] [220699] +13:10:20 [ 35] [ 32] [6213545000761415=491212016141338] +13:10:20 [ 37] [ 12] [507900186757] +13:10:20 [ 38] [ 6] [131013] +13:10:20 [ 39] [ 2] [55] +13:10:20 [ 41] [ 8] [08000100] +13:10:20 [ 49] [ 3] [418] +13:10:20 ============================================================================ +13:10:20 Calculate Source COMM Id = 1 +13:10:20 ============================================================================ +13:10:20 + + +waiting on router queue for slot.... +13:10:21 ============================================================================ +13:10:21 Slot Id : <221> +13:10:21 Transaction Type : RESPONSE +13:10:21 Received From : +13:10:21 ============================================================================ +13:10:21 FNo. Len. Field Value +13:10:21 ============================================================================ +13:10:21 [ 1] [ 4] [0210] +13:10:21 [ 2] [ 16] [1808930200040533] +13:10:21 [ 3] [ 6] [301000] +13:10:21 [ 7] [ 10] [0320131014] +13:10:21 [ 11] [ 6] [753505] +13:10:21 [ 12] [ 6] [131014] +13:10:21 [ 13] [ 4] [0320] +13:10:21 [ 14] [ 4] [1803] +13:10:21 [ 19] [ 3] [418] +13:10:21 [ 32] [ 6] [621354] +13:10:21 [ 37] [ 12] [507903975391] +13:10:21 [ 38] [ 6] [753505] +13:10:21 [ 39] [ 2] [00] +13:10:21 [ 41] [ 8] [01011300] +13:10:21 [ 49] [ 3] [418] +13:10:21 [ 52] [ 16] [1B7CAB400449A340] +13:10:21 [ 54] [ 20] [1002418C000004389800] +13:10:21 ============================================================================ +13:10:21 Sending to : +13:10:21 ============================================================================ +13:10:21 + + +waiting on router queue for slot.... +13:10:22 ============================================================================ +13:10:22 Slot Id : <221> +13:10:22 Transaction Type : RESPONSE +13:10:22 Received From : +13:10:22 ============================================================================ +13:10:22 FNo. Len. Field Value +13:10:22 ============================================================================ +13:10:22 [ 1] [ 4] [0210] +13:10:22 [ 2] [ 16] [1808930200040533] +13:10:22 [ 3] [ 6] [301000] +13:10:22 [ 7] [ 10] [0320131014] +13:10:22 [ 11] [ 6] [753505] +13:10:22 [ 12] [ 6] [131014] +13:10:22 [ 13] [ 4] [0320] +13:10:22 [ 14] [ 4] [1803] +13:10:22 [ 19] [ 3] [418] +13:10:22 [ 32] [ 6] [621354] +13:10:22 [ 37] [ 12] [507903975391] +13:10:22 [ 38] [ 6] [753505] +13:10:22 [ 39] [ 2] [00] +13:10:22 [ 41] [ 8] [01011300] +13:10:22 [ 49] [ 3] [418] +13:10:22 [ 52] [ 16] [1B7CAB400449A340] +13:10:22 [ 54] [ 20] [1002418C000004389800] +13:10:22 ============================================================================ +13:10:22 Calculate Source COMM Id = 0 +13:10:22 ============================================================================ +13:10:22 + + +waiting on router queue for slot.... +13:10:32 ============================================================================ +13:10:32 Slot Id : <212> +13:10:32 Transaction Type : REQUEST +13:10:32 Received From : +13:10:32 ============================================================================ +13:10:32 FNo. Len. Field Value +13:10:32 ============================================================================ +13:10:32 [ 1] [ 4] [0800] +13:10:32 [ 7] [ 10] [0320060939] +13:10:32 [ 11] [ 6] [156482] +13:10:32 [ 70] [ 3] [301] +13:10:32 ============================================================================ +13:10:32 + + +waiting on router queue for slot.... +13:10:32 Sending to : +13:10:32 ============================================================================ +13:10:32 ============================================================================ +13:10:32 Slot Id : <212> +13:10:32 Transaction Type : RESPONSE +13:10:32 Received From : +13:10:32 ============================================================================ +13:10:32 FNo. Len. Field Value +13:10:32 ============================================================================ +13:10:32 [ 1] [ 4] [0810] +13:10:32 [ 7] [ 10] [0320060939] +13:10:32 [ 11] [ 6] [156482] +13:10:32 [ 39] [ 2] [00] +13:10:32 [ 70] [ 3] [301] +13:10:32 ============================================================================ +13:10:32 Calculate Source COMM Id = 2 +13:10:32 ============================================================================ +13:10:32 + + +waiting on router queue for slot.... +13:10:43 ============================================================================ +13:10:43 Slot Id : <207> +13:10:43 Transaction Type : REQUEST +13:10:43 Received From : +13:10:43 ============================================================================ +13:10:43 FNo. Len. Field Value +13:10:43 ============================================================================ +13:10:43 [ 1] [ 4] [0800] +13:10:43 [ 7] [ 10] [0320060950] +13:10:43 [ 11] [ 6] [156483] +13:10:43 [ 70] [ 3] [301] +13:10:43 ============================================================================ +13:10:43 + + +waiting on router queue for slot.... +13:10:43 Sending to : +13:10:43 ============================================================================ +13:10:43 ============================================================================ +13:10:43 Slot Id : <207> +13:10:43 Transaction Type : RESPONSE +13:10:43 Received From : +13:10:43 ============================================================================ +13:10:43 FNo. Len. Field Value +13:10:43 ============================================================================ +13:10:43 [ 1] [ 4] [0810] +13:10:43 [ 7] [ 10] [0320060950] +13:10:43 [ 11] [ 6] [156483] +13:10:43 [ 39] [ 2] [00] +13:10:43 [ 70] [ 3] [301] +13:10:43 ============================================================================ +13:10:43 Calculate Source COMM Id = 2 +13:10:43 ============================================================================ +13:10:43 + + +waiting on router queue for slot.... +13:10:54 ============================================================================ +13:10:54 Slot Id : <208> +13:10:54 Transaction Type : REQUEST +13:10:54 Received From : +13:10:54 ============================================================================ +13:10:54 FNo. Len. Field Value +13:10:54 ============================================================================ +13:10:54 [ 1] [ 4] [0800] +13:10:54 [ 7] [ 10] [0320061001] +13:10:54 [ 11] [ 6] [156484] +13:10:54 [ 70] [ 3] [301] +13:10:54 ============================================================================ +13:10:54 + + +waiting on router queue for slot.... +13:10:54 Sending to : +13:10:54 ============================================================================ +13:10:54 ============================================================================ +13:10:54 Slot Id : <208> +13:10:54 Transaction Type : RESPONSE +13:10:54 Received From : +13:10:54 ============================================================================ +13:10:54 FNo. Len. Field Value +13:10:54 ============================================================================ +13:10:54 [ 1] [ 4] [0810] +13:10:54 [ 7] [ 10] [0320061001] +13:10:54 [ 11] [ 6] [156484] +13:10:54 [ 39] [ 2] [00] +13:10:54 [ 70] [ 3] [301] +13:10:54 ============================================================================ +13:10:54 Calculate Source COMM Id = 2 +13:10:54 ============================================================================ +13:10:54 + + +waiting on router queue for slot.... +13:10:54 ============================================================================ +13:10:54 Slot Id : <183> +13:10:54 Transaction Type : REQUEST +13:10:54 Received From : +13:10:54 ============================================================================ +13:10:54 FNo. Len. Field Value +13:10:54 ============================================================================ +13:10:54 [ 1] [ 4] [0800] +13:10:54 [ 7] [ 10] [0320061050] +13:10:54 [ 11] [ 6] [089222] +13:10:54 [ 37] [ 12] [507913089222] +13:10:54 [ 70] [ 3] [001] +13:10:54 ============================================================================ +13:10:54 + + +waiting on router queue for slot.... +13:10:54 Sending to : +13:10:54 ============================================================================ +13:10:54 ============================================================================ +13:10:54 Slot Id : <183> +13:10:54 Transaction Type : RESPONSE +13:10:54 Received From : +13:10:54 ============================================================================ +13:10:54 FNo. Len. Field Value +13:10:54 ============================================================================ +13:10:54 [ 1] [ 4] [0810] +13:10:54 [ 7] [ 10] [0320061050] +13:10:54 [ 11] [ 6] [089222] +13:10:54 [ 37] [ 12] [507913089222] +13:10:54 [ 39] [ 2] [00] +13:10:54 [ 70] [ 3] [001] +13:10:54 ============================================================================ +13:10:54 Calculate Source COMM Id = 0 +13:10:54 ============================================================================ +13:10:54 + + +waiting on router queue for slot.... +13:11:05 ============================================================================ +13:11:05 Slot Id : <211> +13:11:05 Transaction Type : REQUEST +13:11:05 Received From : +13:11:05 ============================================================================ +13:11:05 FNo. Len. Field Value +13:11:05 ============================================================================ +13:11:05 [ 1] [ 4] [0800] +13:11:05 [ 7] [ 10] [0320061012] +13:11:05 [ 11] [ 6] [156485] +13:11:05 [ 70] [ 3] [301] +13:11:05 ============================================================================ +13:11:05 + + +waiting on router queue for slot.... +13:11:05 Sending to : +13:11:05 ============================================================================ +13:11:05 ============================================================================ +13:11:05 Slot Id : <211> +13:11:05 Transaction Type : RESPONSE +13:11:05 Received From : +13:11:05 ============================================================================ +13:11:05 FNo. Len. Field Value +13:11:05 ============================================================================ +13:11:05 [ 1] [ 4] [0810] +13:11:05 [ 7] [ 10] [0320061012] +13:11:05 [ 11] [ 6] [156485] +13:11:05 [ 39] [ 2] [00] +13:11:05 [ 70] [ 3] [301] +13:11:05 ============================================================================ +13:11:05 Calculate Source COMM Id = 2 +13:11:05 ============================================================================ +13:11:05 + + +waiting on router queue for slot.... +13:11:07 ============================================================================ +13:11:07 Slot Id : <169> +13:11:07 Transaction Type : REQUEST +13:11:07 Received From : +13:11:07 ============================================================================ +13:11:07 FNo. Len. Field Value +13:11:07 ============================================================================ +13:11:07 [ 1] [ 4] [0200] +13:11:07 [ 2] [ 16] [6688990040136473] +13:11:07 [ 3] [ 6] [010000] +13:11:07 [ 4] [ 12] [000150000000] +13:11:07 [ 7] [ 10] [0320061014] +13:11:07 [ 11] [ 6] [269230] +13:11:07 [ 12] [ 6] [131014] +13:11:07 [ 13] [ 4] [0320] +13:11:07 [ 14] [ 4] [9804] +13:11:07 [ 15] [ 4] [0320] +13:11:07 [ 18] [ 4] [6011] +13:11:07 [ 19] [ 3] [418] +13:11:07 [ 22] [ 3] [021] +13:11:07 [ 25] [ 2] [01] +13:11:07 [ 28] [ 9] [D00002000] +13:11:07 [ 32] [ 6] [180893] +13:11:07 [ 35] [ 37] [6688990040136473=98041261277295800000] +13:11:07 [ 37] [ 12] [507906269230] +13:11:07 [ 41] [ 8] [0321LNTV] +13:11:07 [ 42] [ 15] [999999 ] +13:11:07 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:11:07 [ 49] [ 3] [418] +13:11:07 [ 52] [ 16] [D5BE0732C6F69FCE] +13:11:07 ============================================================================ +13:11:07 + + +waiting on router queue for slot.... +13:11:07 Sending to : +13:11:07 ============================================================================ +13:11:07 Sending to : +13:11:07 ============================================================================ +13:11:07 ============================================================================ +13:11:07 Slot Id : <169> +13:11:07 Transaction Type : REQUEST +13:11:07 Received From : +13:11:07 ============================================================================ +13:11:07 FNo. Len. Field Value +13:11:07 ============================================================================ +13:11:07 [ 1] [ 4] [0200] +13:11:07 [ 2] [ 16] [6688990040136473] +13:11:07 [ 3] [ 6] [010000] +13:11:07 [ 4] [ 12] [000150000000] +13:11:07 [ 7] [ 10] [0320061014] +13:11:07 [ 11] [ 6] [269230] +13:11:07 [ 12] [ 6] [131014] +13:11:07 [ 13] [ 4] [0320] +13:11:07 [ 14] [ 4] [9804] +13:11:07 [ 15] [ 4] [0320] +13:11:07 [ 18] [ 4] [6011] +13:11:07 [ 19] [ 3] [418] +13:11:07 [ 22] [ 3] [021] +13:11:07 [ 25] [ 2] [01] +13:11:07 [ 28] [ 9] [D00002000] +13:11:07 [ 32] [ 6] [180893] +13:11:07 [ 35] [ 37] [6688990040136473=98041261277295800000] +13:11:07 [ 37] [ 12] [507906269230] +13:11:07 [ 41] [ 8] [0321LNTV] +13:11:07 [ 42] [ 15] [999999 ] +13:11:07 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:11:07 [ 49] [ 3] [418] +13:11:07 [ 52] [ 16] [D5BE0732C6F69FCE] +13:11:07 ============================================================================ +13:11:07 + + +waiting on router queue for slot.... +13:11:07 Sending to : +13:11:07 ============================================================================ +13:11:07 ============================================================================ +13:11:07 Slot Id : <169> +13:11:07 Transaction Type : REQUEST +13:11:07 Received From : +13:11:07 ============================================================================ +13:11:07 FNo. Len. Field Value +13:11:07 ============================================================================ +13:11:07 [ 1] [ 4] [0200] +13:11:07 [ 2] [ 16] [6688990040136473] +13:11:07 [ 3] [ 6] [010000] +13:11:07 [ 4] [ 12] [000150000000] +13:11:07 [ 7] [ 10] [0320061014] +13:11:07 [ 11] [ 6] [269230] +13:11:07 [ 12] [ 6] [131014] +13:11:07 [ 13] [ 4] [0320] +13:11:07 [ 14] [ 4] [9804] +13:11:07 [ 15] [ 4] [0320] +13:11:07 [ 18] [ 4] [6011] +13:11:07 [ 19] [ 3] [418] +13:11:07 [ 22] [ 3] [021] +13:11:07 [ 25] [ 2] [01] +13:11:07 [ 28] [ 9] [D00002000] +13:11:07 [ 32] [ 6] [180893] +13:11:07 [ 35] [ 37] [6688990040136473=98041261277295800000] +13:11:07 [ 37] [ 12] [507906269230] +13:11:07 [ 41] [ 8] [0321LNTV] +13:11:07 [ 42] [ 15] [999999 ] +13:11:07 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:11:07 [ 49] [ 3] [418] +13:11:07 [ 52] [ 16] [DCB9B596E2E5984E] +13:11:07 ============================================================================ +13:11:07 + + +waiting on router queue for slot.... +13:11:07 Sending to : <0> +13:11:07 ============================================================================ +13:11:07 ============================================================================ +13:11:07 Slot Id : <169> +13:11:07 Transaction Type : RESPONSE +13:11:07 Received From : +13:11:07 ============================================================================ +13:11:07 FNo. Len. Field Value +13:11:07 ============================================================================ +13:11:07 [ 1] [ 4] [0210] +13:11:07 [ 2] [ 16] [6688990040136473] +13:11:07 [ 3] [ 6] [010000] +13:11:07 [ 4] [ 12] [000150000000] +13:11:07 [ 7] [ 10] [0320061014] +13:11:07 [ 11] [ 6] [269230] +13:11:07 [ 12] [ 6] [131014] +13:11:07 [ 13] [ 4] [0320] +13:11:07 [ 15] [ 4] [0320] +13:11:07 [ 18] [ 4] [6011] +13:11:07 [ 19] [ 3] [418] +13:11:07 [ 22] [ 3] [021] +13:11:07 [ 32] [ 6] [180893] +13:11:07 [ 35] [ 37] [6688990040136473=98041261277295800000] +13:11:07 [ 37] [ 12] [507906269230] +13:11:07 [ 39] [ 2] [61] +13:11:07 [ 41] [ 8] [0321LNTV] +13:11:07 [ 49] [ 3] [418] +13:11:07 ============================================================================ +13:11:07 Sending to : +13:11:07 ============================================================================ +13:11:07 + + +waiting on router queue for slot.... +13:11:08 ============================================================================ +13:11:08 Slot Id : <230> +13:11:08 Transaction Type : REQUEST +13:11:08 Received From : +13:11:08 ============================================================================ +13:11:08 FNo. Len. Field Value +13:11:08 ============================================================================ +13:11:08 [ 1] [ 4] [0800] +13:11:08 [ 2] [ 5] [02531] +13:11:08 [ 3] [ 6] [579138] +13:11:08 [ 7] [ 10] [0320061108] +13:11:08 [ 11] [ 6] [807177] +13:11:08 [ 15] [ 10] [0320061108] +13:11:08 [ 37] [ 11] [57913807177] +13:11:08 [ 70] [ 3] [001] +13:11:08 ============================================================================ +13:11:08 + + +waiting on router queue for slot.... +13:11:08 ============================================================================ +13:11:08 Slot Id : <230> +13:11:08 Transaction Type : RESPONSE +13:11:08 Received From : +13:11:08 ============================================================================ +13:11:08 FNo. Len. Field Value +13:11:08 ============================================================================ +13:11:08 [ 1] [ 4] [0810] +13:11:08 [ 7] [ 10] [0320061108] +13:11:08 [ 11] [ 6] [807177] +13:11:08 [ 15] [ 4] [0320] +13:11:08 [ 37] [ 12] [57913807177] +13:11:08 [ 39] [ 2] [00] +13:11:08 [ 70] [ 3] [001] +13:11:08 ============================================================================ +13:11:08 Sending to : +13:11:08 ============================================================================ +13:11:08 + + +waiting on router queue for slot.... +13:11:08 ============================================================================ +13:11:08 Slot Id : <169> +13:11:08 Transaction Type : RESPONSE +13:11:08 Received From : +13:11:08 ============================================================================ +13:11:08 FNo. Len. Field Value +13:11:08 ============================================================================ +13:11:08 [ 1] [ 4] [0210] +13:11:08 [ 2] [ 16] [6688990040136473] +13:11:08 [ 3] [ 6] [010000] +13:11:08 [ 4] [ 12] [000150000000] +13:11:08 [ 7] [ 10] [0320061014] +13:11:08 [ 11] [ 6] [269230] +13:11:08 [ 12] [ 6] [131014] +13:11:08 [ 13] [ 4] [0320] +13:11:08 [ 15] [ 4] [0320] +13:11:08 [ 18] [ 4] [6011] +13:11:08 [ 19] [ 3] [418] +13:11:08 [ 22] [ 3] [021] +13:11:08 [ 32] [ 6] [180893] +13:11:08 [ 35] [ 37] [6688990040136473=98041261277295800000] +13:11:08 [ 37] [ 12] [507906269230] +13:11:08 [ 39] [ 2] [61] +13:11:08 [ 41] [ 8] [0321LNTV] +13:11:08 [ 49] [ 3] [418] +13:11:08 ============================================================================ +13:11:08 Calculate Source COMM Id = 2 +13:11:08 ============================================================================ +13:11:08 + + +waiting on router queue for slot.... +13:11:16 ============================================================================ +13:11:16 Slot Id : <185> +13:11:16 Transaction Type : REQUEST +13:11:16 Received From : +13:11:16 ============================================================================ +13:11:16 FNo. Len. Field Value +13:11:16 ============================================================================ +13:11:16 [ 1] [ 4] [0200] +13:11:16 [ 2] [ 16] [6213545000761415] +13:11:16 [ 3] [ 6] [010000] +13:11:16 [ 4] [ 12] [000010000000] +13:11:16 [ 7] [ 10] [0320131903] +13:11:16 [ 11] [ 6] [003110] +13:11:16 [ 12] [ 6] [131903] +13:11:16 [ 13] [ 4] [0320] +13:11:16 [ 14] [ 4] [4912] +13:11:16 [ 15] [ 4] [0320] +13:11:16 [ 18] [ 4] [6011] +13:11:16 [ 22] [ 3] [900] +13:11:16 [ 25] [ 2] [02] +13:11:16 [ 28] [ 9] [D00002000] +13:11:16 [ 32] [ 6] [220699] +13:11:16 [ 35] [ 32] [6213545000761415=491212016141338] +13:11:16 [ 37] [ 12] [507900186759] +13:11:16 [ 41] [ 8] [08000100] +13:11:16 [ 42] [ 15] [APTRA ] +13:11:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:11:16 [ 49] [ 3] [418] +13:11:16 [ 52] [ 16] [A59A4144B9DB1B07] +13:11:16 ============================================================================ +13:11:16 + + +waiting on router queue for slot.... +13:11:16 Sending to : +13:11:16 ============================================================================ +13:11:16 Sending to : +13:11:16 ============================================================================ +13:11:16 ============================================================================ +13:11:16 Slot Id : <185> +13:11:16 Transaction Type : REQUEST +13:11:16 Received From : +13:11:16 ============================================================================ +13:11:16 FNo. Len. Field Value +13:11:16 ============================================================================ +13:11:16 [ 1] [ 4] [0200] +13:11:16 [ 2] [ 16] [6213545000761415] +13:11:16 [ 3] [ 6] [010000] +13:11:16 [ 4] [ 12] [000010000000] +13:11:16 [ 7] [ 10] [0320131903] +13:11:16 [ 11] [ 6] [003110] +13:11:16 [ 12] [ 6] [131903] +13:11:16 [ 13] [ 4] [0320] +13:11:16 [ 14] [ 4] [4912] +13:11:16 [ 15] [ 4] [0320] +13:11:16 [ 18] [ 4] [6011] +13:11:16 [ 22] [ 3] [900] +13:11:16 [ 25] [ 2] [02] +13:11:16 [ 28] [ 9] [D00002000] +13:11:16 [ 32] [ 6] [220699] +13:11:16 [ 35] [ 32] [6213545000761415=491212016141338] +13:11:16 [ 37] [ 12] [507900186759] +13:11:16 [ 41] [ 8] [08000100] +13:11:16 [ 42] [ 15] [APTRA ] +13:11:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:11:16 [ 49] [ 3] [418] +13:11:16 [ 52] [ 16] [A59A4144B9DB1B07] +13:11:16 ============================================================================ +13:11:16 + + +waiting on router queue for slot.... +13:11:16 Sending to : +13:11:16 ============================================================================ +13:11:16 ============================================================================ +13:11:16 Slot Id : <185> +13:11:16 Transaction Type : REQUEST +13:11:16 Received From : +13:11:16 ============================================================================ +13:11:16 FNo. Len. Field Value +13:11:16 ============================================================================ +13:11:16 [ 1] [ 4] [0200] +13:11:16 [ 2] [ 16] [6213545000761415] +13:11:16 [ 3] [ 6] [010000] +13:11:16 [ 4] [ 12] [000010000000] +13:11:16 [ 7] [ 10] [0320131903] +13:11:16 [ 11] [ 6] [003110] +13:11:16 [ 12] [ 6] [131903] +13:11:16 [ 13] [ 4] [0320] +13:11:16 [ 14] [ 4] [4912] +13:11:16 [ 15] [ 4] [0320] +13:11:16 [ 18] [ 4] [6011] +13:11:16 [ 22] [ 3] [900] +13:11:16 [ 25] [ 2] [02] +13:11:16 [ 28] [ 9] [D00002000] +13:11:16 [ 32] [ 6] [220699] +13:11:16 [ 35] [ 32] [6213545000761415=491212016141338] +13:11:16 [ 37] [ 12] [507900186759] +13:11:16 [ 41] [ 8] [08000100] +13:11:16 [ 42] [ 15] [APTRA ] +13:11:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:11:16 [ 49] [ 3] [418] +13:11:16 [ 52] [ 16] [3A226BB025EAC1B8] +13:11:16 ============================================================================ +13:11:16 + + +waiting on router queue for slot.... +13:11:16 Sending to : <0> +13:11:16 ============================================================================ +13:11:17 ============================================================================ +13:11:17 Slot Id : <185> +13:11:17 Transaction Type : RESPONSE +13:11:17 Received From : +13:11:17 ============================================================================ +13:11:17 FNo. Len. Field Value +13:11:17 ============================================================================ +13:11:17 [ 1] [ 4] [0210] +13:11:17 [ 2] [ 16] [6213545000761415] +13:11:17 [ 3] [ 6] [010000] +13:11:17 [ 4] [ 12] [000010000000] +13:11:17 [ 7] [ 10] [0320131903] +13:11:17 [ 11] [ 6] [003110] +13:11:17 [ 12] [ 6] [131903] +13:11:17 [ 13] [ 4] [0320] +13:11:17 [ 15] [ 4] [0320] +13:11:17 [ 18] [ 4] [6011] +13:11:17 [ 32] [ 6] [220699] +13:11:17 [ 35] [ 32] [6213545000761415=491212016141338] +13:11:17 [ 37] [ 12] [507900186759] +13:11:17 [ 38] [ 6] [157823] +13:11:17 [ 39] [ 2] [00] +13:11:17 [ 41] [ 8] [08000100] +13:11:17 [ 49] [ 3] [418] +13:11:17 [ 54] [ 40] [0001418C0000200855180002418C000020085518] +13:11:17 ============================================================================ +13:11:17 Sending to : +13:11:17 ============================================================================ +13:11:17 + + +waiting on router queue for slot.... +13:11:18 ============================================================================ +13:11:18 Slot Id : <185> +13:11:18 Transaction Type : RESPONSE +13:11:18 Received From : +13:11:18 ============================================================================ +13:11:18 FNo. Len. Field Value +13:11:18 ============================================================================ +13:11:18 [ 1] [ 4] [0210] +13:11:18 [ 2] [ 16] [6213545000761415] +13:11:18 [ 3] [ 6] [010000] +13:11:18 [ 4] [ 12] [000010000000] +13:11:18 [ 7] [ 10] [0320131903] +13:11:18 [ 11] [ 6] [003110] +13:11:18 [ 12] [ 6] [131903] +13:11:18 [ 13] [ 4] [0320] +13:11:18 [ 15] [ 4] [0320] +13:11:18 [ 18] [ 4] [6011] +13:11:18 [ 32] [ 6] [220699] +13:11:18 [ 35] [ 32] [6213545000761415=491212016141338] +13:11:18 [ 37] [ 12] [507900186759] +13:11:18 [ 38] [ 6] [157823] +13:11:18 [ 39] [ 2] [00] +13:11:18 [ 41] [ 8] [08000100] +13:11:18 [ 49] [ 3] [418] +13:11:18 [ 54] [ 40] [0001418C0000200855180002418C000020085518] +13:11:18 ============================================================================ +13:11:18 Calculate Source COMM Id = 1 +13:11:18 ============================================================================ +13:11:18 + + +waiting on router queue for slot.... +13:11:21 ============================================================================ +13:11:21 Slot Id : <189> +13:11:21 Transaction Type : REQUEST +13:11:21 Received From : +13:11:21 ============================================================================ +13:11:21 FNo. Len. Field Value +13:11:21 ============================================================================ +13:11:21 [ 1] [ 4] [0800] +13:11:21 [ 7] [ 10] [0320061029] +13:11:21 [ 11] [ 6] [156486] +13:11:21 [ 70] [ 3] [301] +13:11:21 ============================================================================ +13:11:21 + + +waiting on router queue for slot.... +13:11:21 Sending to : +13:11:21 ============================================================================ +13:11:21 ============================================================================ +13:11:21 Slot Id : <189> +13:11:21 Transaction Type : RESPONSE +13:11:21 Received From : +13:11:21 ============================================================================ +13:11:21 FNo. Len. Field Value +13:11:21 ============================================================================ +13:11:21 [ 1] [ 4] [0810] +13:11:21 [ 7] [ 10] [0320061029] +13:11:21 [ 11] [ 6] [156486] +13:11:21 [ 39] [ 2] [00] +13:11:21 [ 70] [ 3] [301] +13:11:21 ============================================================================ +13:11:21 Calculate Source COMM Id = 2 +13:11:21 ============================================================================ +13:11:21 + + +waiting on router queue for slot.... +13:11:22 ============================================================================ +13:11:22 Slot Id : <205> +13:11:22 Transaction Type : REQUEST +13:11:22 Received From : +13:11:22 ============================================================================ +13:11:22 FNo. Len. Field Value +13:11:22 ============================================================================ +13:11:22 [ 1] [ 4] [0800] +13:11:22 [ 7] [ 10] [0320060912] +13:11:22 [ 11] [ 6] [032744] +13:11:22 [ 37] [ 12] [57913032744] +13:11:22 [ 70] [ 3] [301] +13:11:22 ============================================================================ +13:11:22 + + +waiting on router queue for slot.... +13:11:22 Sending to : +13:11:22 ============================================================================ +13:11:22 ============================================================================ +13:11:22 Slot Id : <205> +13:11:22 Transaction Type : RESPONSE +13:11:22 Received From : +13:11:22 ============================================================================ +13:11:22 FNo. Len. Field Value +13:11:22 ============================================================================ +13:11:22 [ 1] [ 4] [0810] +13:11:22 [ 7] [ 10] [0320060912] +13:11:22 [ 11] [ 6] [032744] +13:11:22 [ 37] [ 12] [579130327440] +13:11:22 [ 39] [ 2] [00] +13:11:22 [ 70] [ 3] [810] +13:11:22 ============================================================================ +13:11:22 Calculate Source COMM Id = 4 +13:11:22 ============================================================================ +13:11:22 + + +waiting on router queue for slot.... +13:11:36 ============================================================================ +13:11:36 Slot Id : <149> +13:11:36 Transaction Type : REQUEST +13:11:36 Received From : +13:11:36 ============================================================================ +13:11:36 FNo. Len. Field Value +13:11:36 ============================================================================ +13:11:36 [ 1] [ 4] [0800] +13:11:36 [ 7] [ 10] [0320061044] +13:11:36 [ 11] [ 6] [156487] +13:11:36 [ 70] [ 3] [301] +13:11:36 ============================================================================ +13:11:36 + + +waiting on router queue for slot.... +13:11:36 Sending to : +13:11:36 ============================================================================ +13:11:36 ============================================================================ +13:11:36 Slot Id : <149> +13:11:36 Transaction Type : RESPONSE +13:11:36 Received From : +13:11:36 ============================================================================ +13:11:36 FNo. Len. Field Value +13:11:36 ============================================================================ +13:11:36 [ 1] [ 4] [0810] +13:11:36 [ 7] [ 10] [0320061044] +13:11:36 [ 11] [ 6] [156487] +13:11:36 [ 39] [ 2] [00] +13:11:36 [ 70] [ 3] [301] +13:11:36 ============================================================================ +13:11:36 Calculate Source COMM Id = 2 +13:11:36 ============================================================================ +13:11:36 + + +waiting on router queue for slot.... +13:11:47 ============================================================================ +13:11:47 Slot Id : <232> +13:11:47 Transaction Type : REQUEST +13:11:47 Received From : +13:11:47 ============================================================================ +13:11:47 FNo. Len. Field Value +13:11:47 ============================================================================ +13:11:47 [ 1] [ 4] [0200] +13:11:47 [ 2] [ 16] [6688990101019808] +13:11:47 [ 3] [ 6] [011000] +13:11:47 [ 4] [ 12] [000018000000] +13:11:47 [ 7] [ 10] [0320061053] +13:11:47 [ 11] [ 6] [269233] +13:11:47 [ 12] [ 6] [131053] +13:11:47 [ 13] [ 4] [0320] +13:11:47 [ 14] [ 4] [4112] +13:11:47 [ 15] [ 4] [0320] +13:11:47 [ 18] [ 4] [6011] +13:11:47 [ 19] [ 3] [418] +13:11:47 [ 22] [ 3] [021] +13:11:47 [ 25] [ 2] [01] +13:11:47 [ 28] [ 9] [D00002000] +13:11:47 [ 32] [ 6] [180893] +13:11:47 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:11:47 [ 37] [ 12] [507906269233] +13:11:47 [ 41] [ 8] [0141HQBR] +13:11:47 [ 42] [ 15] [999999 ] +13:11:47 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +13:11:47 [ 49] [ 3] [418] +13:11:47 [ 52] [ 16] [68413EFB13B494C1] +13:11:47 ============================================================================ +13:11:47 + + +waiting on router queue for slot.... +13:11:47 Sending to : +13:11:47 ============================================================================ +13:11:47 Sending to : +13:11:47 ============================================================================ +13:11:48 ============================================================================ +13:11:48 Slot Id : <232> +13:11:48 Transaction Type : REQUEST +13:11:48 Received From : +13:11:48 ============================================================================ +13:11:48 FNo. Len. Field Value +13:11:48 ============================================================================ +13:11:48 [ 1] [ 4] [0200] +13:11:48 [ 2] [ 16] [6688990101019808] +13:11:48 [ 3] [ 6] [011000] +13:11:48 [ 4] [ 12] [000018000000] +13:11:48 [ 7] [ 10] [0320061053] +13:11:48 [ 11] [ 6] [269233] +13:11:48 [ 12] [ 6] [131053] +13:11:48 [ 13] [ 4] [0320] +13:11:48 [ 14] [ 4] [4112] +13:11:48 [ 15] [ 4] [0320] +13:11:48 [ 18] [ 4] [6011] +13:11:48 [ 19] [ 3] [418] +13:11:48 [ 22] [ 3] [021] +13:11:48 [ 25] [ 2] [01] +13:11:48 [ 28] [ 9] [D00002000] +13:11:48 [ 32] [ 6] [180893] +13:11:48 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:11:48 [ 37] [ 12] [507906269233] +13:11:48 [ 41] [ 8] [0141HQBR] +13:11:48 [ 42] [ 15] [999999 ] +13:11:48 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +13:11:48 [ 49] [ 3] [418] +13:11:48 [ 52] [ 16] [68413EFB13B494C1] +13:11:48 ============================================================================ +13:11:48 + + +waiting on router queue for slot.... +13:11:48 Sending to : +13:11:48 ============================================================================ +13:11:48 ============================================================================ +13:11:48 Slot Id : <232> +13:11:48 Transaction Type : REQUEST +13:11:48 Received From : +13:11:48 ============================================================================ +13:11:48 FNo. Len. Field Value +13:11:48 ============================================================================ +13:11:48 [ 1] [ 4] [0200] +13:11:48 [ 2] [ 16] [6688990101019808] +13:11:48 [ 3] [ 6] [011000] +13:11:48 [ 4] [ 12] [000018000000] +13:11:48 [ 7] [ 10] [0320061053] +13:11:48 [ 11] [ 6] [269233] +13:11:48 [ 12] [ 6] [131053] +13:11:48 [ 13] [ 4] [0320] +13:11:48 [ 14] [ 4] [4112] +13:11:48 [ 15] [ 4] [0320] +13:11:48 [ 18] [ 4] [6011] +13:11:48 [ 19] [ 3] [418] +13:11:48 [ 22] [ 3] [021] +13:11:48 [ 25] [ 2] [01] +13:11:48 [ 28] [ 9] [D00002000] +13:11:48 [ 32] [ 6] [180893] +13:11:48 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:11:48 [ 37] [ 12] [507906269233] +13:11:48 [ 41] [ 8] [0141HQBR] +13:11:48 [ 42] [ 15] [999999 ] +13:11:48 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +13:11:48 [ 49] [ 3] [418] +13:11:48 [ 52] [ 16] [00AD773AD387722B] +13:11:48 ============================================================================ +13:11:48 + + +waiting on router queue for slot.... +13:11:48 Sending to : <0> +13:11:48 ============================================================================ +13:11:48 ============================================================================ +13:11:48 Slot Id : <232> +13:11:48 Transaction Type : RESPONSE +13:11:48 Received From : +13:11:48 ============================================================================ +13:11:48 FNo. Len. Field Value +13:11:48 ============================================================================ +13:11:48 [ 1] [ 4] [0210] +13:11:48 [ 2] [ 16] [6688990101019808] +13:11:48 [ 3] [ 6] [011000] +13:11:48 [ 4] [ 12] [000018000000] +13:11:48 [ 7] [ 10] [0320061053] +13:11:48 [ 11] [ 6] [269233] +13:11:48 [ 12] [ 6] [131053] +13:11:48 [ 13] [ 4] [0320] +13:11:48 [ 15] [ 4] [0320] +13:11:48 [ 18] [ 4] [6011] +13:11:48 [ 19] [ 3] [418] +13:11:48 [ 22] [ 3] [021] +13:11:48 [ 32] [ 6] [180893] +13:11:48 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:11:48 [ 37] [ 12] [507906269233] +13:11:48 [ 39] [ 2] [14] +13:11:48 [ 41] [ 8] [0141HQBR] +13:11:48 [ 49] [ 3] [418] +13:11:48 ============================================================================ +13:11:48 Sending to : +13:11:48 ============================================================================ +13:11:48 + + +waiting on router queue for slot.... +13:11:48 ============================================================================ +13:11:48 Slot Id : <168> +13:11:48 Transaction Type : REQUEST +13:11:48 Received From : +13:11:48 ============================================================================ +13:11:48 FNo. Len. Field Value +13:11:48 ============================================================================ +13:11:48 [ 1] [ 4] [0200] +13:11:48 [ 2] [ 16] [6213545000697627] +13:11:48 [ 3] [ 6] [301000] +13:11:48 [ 7] [ 10] [0320061056] +13:11:48 [ 11] [ 6] [269234] +13:11:48 [ 12] [ 6] [131056] +13:11:48 [ 13] [ 4] [0320] +13:11:48 [ 14] [ 4] [4912] +13:11:48 [ 15] [ 4] [0320] +13:11:48 [ 18] [ 4] [6011] +13:11:48 [ 19] [ 3] [418] +13:11:48 [ 22] [ 3] [021] +13:11:48 [ 25] [ 2] [01] +13:11:48 [ 32] [ 6] [180893] +13:11:48 [ 35] [ 32] [6213545000697627=491212019762736] +13:11:48 [ 37] [ 12] [507906269234] +13:11:48 [ 41] [ 8] [0221XKKM] +13:11:48 [ 42] [ 15] [999999 ] +13:11:48 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +13:11:48 [ 49] [ 3] [418] +13:11:48 [ 52] [ 16] [EEF213C8ADBF57C4] +13:11:48 ============================================================================ +13:11:48 + + +waiting on router queue for slot.... +13:11:48 Sending to : +13:11:48 ============================================================================ +13:11:48 Sending to : +13:11:48 ============================================================================ +13:11:49 ============================================================================ +13:11:49 Slot Id : <232> +13:11:49 Transaction Type : RESPONSE +13:11:49 Received From : +13:11:49 ============================================================================ +13:11:49 FNo. Len. Field Value +13:11:49 ============================================================================ +13:11:49 [ 1] [ 4] [0210] +13:11:49 [ 2] [ 16] [6688990101019808] +13:11:49 [ 3] [ 6] [011000] +13:11:49 [ 4] [ 12] [000018000000] +13:11:49 [ 7] [ 10] [0320061053] +13:11:49 [ 11] [ 6] [269233] +13:11:49 [ 12] [ 6] [131053] +13:11:49 [ 13] [ 4] [0320] +13:11:49 [ 15] [ 4] [0320] +13:11:49 [ 18] [ 4] [6011] +13:11:49 [ 19] [ 3] [418] +13:11:49 [ 22] [ 3] [021] +13:11:49 [ 32] [ 6] [180893] +13:11:49 [ 35] [ 37] [6688990101019808=41121231980893300000] +13:11:49 [ 37] [ 12] [507906269233] +13:11:49 [ 39] [ 2] [14] +13:11:49 [ 41] [ 8] [0141HQBR] +13:11:49 [ 49] [ 3] [418] +13:11:49 ============================================================================ +13:11:49 Calculate Source COMM Id = 2 +13:11:49 ============================================================================ +13:11:49 + + +waiting on router queue for slot.... +13:11:49 ============================================================================ +13:11:49 Slot Id : <168> +13:11:49 Transaction Type : REQUEST +13:11:49 Received From : +13:11:49 ============================================================================ +13:11:49 FNo. Len. Field Value +13:11:49 ============================================================================ +13:11:49 [ 1] [ 4] [0200] +13:11:49 [ 2] [ 16] [6213545000697627] +13:11:49 [ 3] [ 6] [301000] +13:11:49 [ 7] [ 10] [0320061056] +13:11:49 [ 11] [ 6] [269234] +13:11:49 [ 12] [ 6] [131056] +13:11:49 [ 13] [ 4] [0320] +13:11:49 [ 14] [ 4] [4912] +13:11:49 [ 15] [ 4] [0320] +13:11:49 [ 18] [ 4] [6011] +13:11:49 [ 19] [ 3] [418] +13:11:49 [ 22] [ 3] [021] +13:11:49 [ 25] [ 2] [01] +13:11:49 [ 32] [ 6] [180893] +13:11:49 [ 35] [ 32] [6213545000697627=491212019762736] +13:11:49 [ 37] [ 12] [507906269234] +13:11:49 [ 41] [ 8] [0221XKKM] +13:11:49 [ 42] [ 15] [999999 ] +13:11:49 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +13:11:49 [ 49] [ 3] [418] +13:11:49 [ 52] [ 16] [EEF213C8ADBF57C4] +13:11:49 ============================================================================ +13:11:49 + + +waiting on router queue for slot.... +13:11:49 Sending to : +13:11:49 ============================================================================ +13:11:49 ============================================================================ +13:11:49 Slot Id : <168> +13:11:49 Transaction Type : REQUEST +13:11:49 Received From : +13:11:49 ============================================================================ +13:11:49 FNo. Len. Field Value +13:11:49 ============================================================================ +13:11:49 [ 1] [ 4] [0200] +13:11:49 [ 2] [ 16] [6213545000697627] +13:11:49 [ 3] [ 6] [301000] +13:11:49 [ 7] [ 10] [0320061056] +13:11:49 [ 11] [ 6] [269234] +13:11:49 [ 12] [ 6] [131056] +13:11:49 [ 13] [ 4] [0320] +13:11:49 [ 14] [ 4] [4912] +13:11:49 [ 15] [ 4] [0320] +13:11:49 [ 18] [ 4] [6011] +13:11:49 [ 19] [ 3] [418] +13:11:49 [ 22] [ 3] [021] +13:11:49 [ 25] [ 2] [01] +13:11:49 [ 32] [ 6] [180893] +13:11:49 [ 35] [ 32] [6213545000697627=491212019762736] +13:11:49 [ 37] [ 12] [507906269234] +13:11:49 [ 41] [ 8] [0221XKKM] +13:11:49 [ 42] [ 15] [999999 ] +13:11:49 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +13:11:49 [ 49] [ 3] [418] +13:11:49 [ 52] [ 16] [7A2BD8D50CF12806] +13:11:49 ============================================================================ +13:11:49 + + +waiting on router queue for slot.... +13:11:49 Sending to : <0> +13:11:49 ============================================================================ +13:11:49 ============================================================================ +13:11:49 Slot Id : <168> +13:11:49 Transaction Type : RESPONSE +13:11:49 Received From : +13:11:49 ============================================================================ +13:11:49 FNo. Len. Field Value +13:11:49 ============================================================================ +13:11:49 [ 1] [ 4] [0210] +13:11:49 [ 2] [ 16] [6213545000697627] +13:11:49 [ 3] [ 6] [301000] +13:11:49 [ 4] [ 12] [000000000000] +13:11:49 [ 7] [ 10] [0320061056] +13:11:49 [ 11] [ 6] [269234] +13:11:49 [ 12] [ 6] [131056] +13:11:49 [ 13] [ 4] [0320] +13:11:49 [ 15] [ 4] [0320] +13:11:49 [ 18] [ 4] [6011] +13:11:49 [ 19] [ 3] [418] +13:11:49 [ 32] [ 6] [180893] +13:11:49 [ 35] [ 32] [6213545000697627=491212019762736] +13:11:49 [ 37] [ 12] [507906269234] +13:11:49 [ 38] [ 6] [776822] +13:11:49 [ 39] [ 2] [00] +13:11:49 [ 41] [ 8] [0221XKKM] +13:11:49 [ 49] [ 3] [418] +13:11:49 [ 54] [ 40] [1001418C0006028294941002418C000602829494] +13:11:49 ============================================================================ +13:11:49 Sending to : +13:11:49 ============================================================================ +13:11:49 + + +waiting on router queue for slot.... +13:11:51 ============================================================================ +13:11:51 Slot Id : <168> +13:11:51 Transaction Type : RESPONSE +13:11:51 Received From : +13:11:51 ============================================================================ +13:11:51 FNo. Len. Field Value +13:11:51 ============================================================================ +13:11:51 [ 1] [ 4] [0210] +13:11:51 [ 2] [ 16] [6213545000697627] +13:11:51 [ 3] [ 6] [301000] +13:11:51 [ 4] [ 12] [000000000000] +13:11:51 [ 7] [ 10] [0320061056] +13:11:51 [ 11] [ 6] [269234] +13:11:51 [ 12] [ 6] [131056] +13:11:51 [ 13] [ 4] [0320] +13:11:51 [ 15] [ 4] [0320] +13:11:51 [ 18] [ 4] [6011] +13:11:51 [ 19] [ 3] [418] +13:11:51 [ 32] [ 6] [180893] +13:11:51 [ 35] [ 32] [6213545000697627=491212019762736] +13:11:51 [ 37] [ 12] [507906269234] +13:11:51 [ 38] [ 6] [776822] +13:11:51 [ 39] [ 2] [00] +13:11:51 [ 41] [ 8] [0221XKKM] +13:11:51 [ 49] [ 3] [418] +13:11:51 [ 54] [ 40] [1001418C0006028294941002418C000602829494] +13:11:51 ============================================================================ +13:11:51 Calculate Source COMM Id = 2 +13:11:51 ============================================================================ +13:11:51 + + +waiting on router queue for slot.... +13:12:05 ============================================================================ +13:12:05 Slot Id : <180> +13:12:05 Transaction Type : REQUEST +13:12:05 Received From : +13:12:05 ============================================================================ +13:12:05 FNo. Len. Field Value +13:12:05 ============================================================================ +13:12:05 [ 1] [ 4] [0800] +13:12:05 [ 7] [ 10] [0320061111] +13:12:05 [ 11] [ 6] [156488] +13:12:05 [ 70] [ 3] [301] +13:12:05 ============================================================================ +13:12:05 + + +waiting on router queue for slot.... +13:12:05 Sending to : +13:12:05 ============================================================================ +13:12:05 ============================================================================ +13:12:05 Slot Id : <180> +13:12:05 Transaction Type : RESPONSE +13:12:05 Received From : +13:12:05 ============================================================================ +13:12:05 FNo. Len. Field Value +13:12:05 ============================================================================ +13:12:05 [ 1] [ 4] [0810] +13:12:05 [ 7] [ 10] [0320061111] +13:12:05 [ 11] [ 6] [156488] +13:12:05 [ 39] [ 2] [00] +13:12:05 [ 70] [ 3] [301] +13:12:05 ============================================================================ +13:12:05 Calculate Source COMM Id = 2 +13:12:05 ============================================================================ +13:12:05 + + +waiting on router queue for slot.... +13:12:10 ============================================================================ +13:12:10 Slot Id : <174> +13:12:10 Transaction Type : REQUEST +13:12:10 Received From : +13:12:10 ============================================================================ +13:12:10 FNo. Len. Field Value +13:12:10 ============================================================================ +13:12:10 [ 1] [ 4] [0800] +13:12:10 [ 2] [ 5] [02531] +13:12:10 [ 3] [ 6] [579138] +13:12:10 [ 7] [ 10] [0320061210] +13:12:10 [ 11] [ 6] [807178] +13:12:10 [ 15] [ 10] [0320061210] +13:12:10 [ 37] [ 11] [57913807178] +13:12:10 [ 70] [ 3] [001] +13:12:10 ============================================================================ +13:12:10 + + +waiting on router queue for slot.... +13:12:10 ============================================================================ +13:12:10 Slot Id : <174> +13:12:10 Transaction Type : RESPONSE +13:12:10 Received From : +13:12:10 ============================================================================ +13:12:10 FNo. Len. Field Value +13:12:10 ============================================================================ +13:12:10 [ 1] [ 4] [0810] +13:12:10 [ 7] [ 10] [0320061210] +13:12:10 [ 11] [ 6] [807178] +13:12:10 [ 15] [ 4] [0320] +13:12:10 [ 37] [ 12] [57913807178] +13:12:10 [ 39] [ 2] [00] +13:12:10 [ 70] [ 3] [001] +13:12:10 ============================================================================ +13:12:10 Sending to : +13:12:10 ============================================================================ +13:12:10 + + +waiting on router queue for slot.... +13:12:20 ============================================================================ +13:12:20 Slot Id : <222> +13:12:20 Transaction Type : REQUEST +13:12:20 Received From : +13:12:20 ============================================================================ +13:12:20 FNo. Len. Field Value +13:12:20 ============================================================================ +13:12:20 [ 1] [ 4] [0800] +13:12:20 [ 7] [ 10] [0320061127] +13:12:20 [ 11] [ 6] [156489] +13:12:20 [ 70] [ 3] [301] +13:12:20 ============================================================================ +13:12:20 + + +waiting on router queue for slot.... +13:12:20 Sending to : +13:12:20 ============================================================================ +13:12:20 ============================================================================ +13:12:20 Slot Id : <222> +13:12:20 Transaction Type : RESPONSE +13:12:20 Received From : +13:12:20 ============================================================================ +13:12:20 FNo. Len. Field Value +13:12:20 ============================================================================ +13:12:20 [ 1] [ 4] [0810] +13:12:20 [ 7] [ 10] [0320061127] +13:12:20 [ 11] [ 6] [156489] +13:12:20 [ 39] [ 2] [00] +13:12:20 [ 70] [ 3] [301] +13:12:20 ============================================================================ +13:12:20 Calculate Source COMM Id = 2 +13:12:20 ============================================================================ +13:12:20 + + +waiting on router queue for slot.... +13:12:24 ============================================================================ +13:12:24 Slot Id : <173> +13:12:24 Transaction Type : REQUEST +13:12:24 Received From : +13:12:24 ============================================================================ +13:12:24 FNo. Len. Field Value +13:12:24 ============================================================================ +13:12:24 [ 1] [ 4] [0200] +13:12:24 [ 2] [ 16] [6213545000761415] +13:12:24 [ 3] [ 6] [010000] +13:12:24 [ 4] [ 12] [000010000000] +13:12:24 [ 7] [ 10] [0320132011] +13:12:24 [ 11] [ 6] [003113] +13:12:24 [ 12] [ 6] [132011] +13:12:24 [ 13] [ 4] [0320] +13:12:24 [ 14] [ 4] [4912] +13:12:24 [ 15] [ 4] [0320] +13:12:24 [ 18] [ 4] [6011] +13:12:24 [ 22] [ 3] [900] +13:12:24 [ 25] [ 2] [02] +13:12:24 [ 28] [ 9] [D00002000] +13:12:24 [ 32] [ 6] [220699] +13:12:24 [ 35] [ 32] [6213545000761415=491212016141338] +13:12:24 [ 37] [ 12] [507900186761] +13:12:24 [ 41] [ 8] [08000100] +13:12:24 [ 42] [ 15] [APTRA ] +13:12:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:12:24 [ 49] [ 3] [418] +13:12:24 [ 52] [ 16] [A59A4144B9DB1B07] +13:12:24 ============================================================================ +13:12:24 + + +waiting on router queue for slot.... +13:12:24 Sending to : +13:12:24 ============================================================================ +13:12:24 Sending to : +13:12:24 ============================================================================ +13:12:24 ============================================================================ +13:12:24 Slot Id : <173> +13:12:24 Transaction Type : REQUEST +13:12:24 Received From : +13:12:24 ============================================================================ +13:12:24 FNo. Len. Field Value +13:12:24 ============================================================================ +13:12:24 [ 1] [ 4] [0200] +13:12:24 [ 2] [ 16] [6213545000761415] +13:12:24 [ 3] [ 6] [010000] +13:12:24 [ 4] [ 12] [000010000000] +13:12:24 [ 7] [ 10] [0320132011] +13:12:24 [ 11] [ 6] [003113] +13:12:24 [ 12] [ 6] [132011] +13:12:24 [ 13] [ 4] [0320] +13:12:24 [ 14] [ 4] [4912] +13:12:24 [ 15] [ 4] [0320] +13:12:24 [ 18] [ 4] [6011] +13:12:24 [ 22] [ 3] [900] +13:12:24 [ 25] [ 2] [02] +13:12:24 [ 28] [ 9] [D00002000] +13:12:24 [ 32] [ 6] [220699] +13:12:24 [ 35] [ 32] [6213545000761415=491212016141338] +13:12:24 [ 37] [ 12] [507900186761] +13:12:24 [ 41] [ 8] [08000100] +13:12:24 [ 42] [ 15] [APTRA ] +13:12:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:12:24 [ 49] [ 3] [418] +13:12:24 [ 52] [ 16] [A59A4144B9DB1B07] +13:12:24 ============================================================================ +13:12:24 + + +waiting on router queue for slot.... +13:12:24 Sending to : +13:12:24 ============================================================================ +13:12:24 ============================================================================ +13:12:24 Slot Id : <173> +13:12:24 Transaction Type : REQUEST +13:12:24 Received From : +13:12:24 ============================================================================ +13:12:24 FNo. Len. Field Value +13:12:24 ============================================================================ +13:12:24 [ 1] [ 4] [0200] +13:12:24 [ 2] [ 16] [6213545000761415] +13:12:24 [ 3] [ 6] [010000] +13:12:24 [ 4] [ 12] [000010000000] +13:12:24 [ 7] [ 10] [0320132011] +13:12:24 [ 11] [ 6] [003113] +13:12:24 [ 12] [ 6] [132011] +13:12:24 [ 13] [ 4] [0320] +13:12:24 [ 14] [ 4] [4912] +13:12:24 [ 15] [ 4] [0320] +13:12:24 [ 18] [ 4] [6011] +13:12:24 [ 22] [ 3] [900] +13:12:24 [ 25] [ 2] [02] +13:12:24 [ 28] [ 9] [D00002000] +13:12:24 [ 32] [ 6] [220699] +13:12:24 [ 35] [ 32] [6213545000761415=491212016141338] +13:12:24 [ 37] [ 12] [507900186761] +13:12:24 [ 41] [ 8] [08000100] +13:12:24 [ 42] [ 15] [APTRA ] +13:12:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:12:24 [ 49] [ 3] [418] +13:12:24 [ 52] [ 16] [3A226BB025EAC1B8] +13:12:24 ============================================================================ +13:12:24 + + +waiting on router queue for slot.... +13:12:24 Sending to : <0> +13:12:24 ============================================================================ +13:12:25 ============================================================================ +13:12:25 Slot Id : <173> +13:12:25 Transaction Type : RESPONSE +13:12:25 Received From : +13:12:25 ============================================================================ +13:12:25 FNo. Len. Field Value +13:12:25 ============================================================================ +13:12:25 [ 1] [ 4] [0210] +13:12:25 [ 2] [ 16] [6213545000761415] +13:12:25 [ 3] [ 6] [010000] +13:12:25 [ 4] [ 12] [000010000000] +13:12:25 [ 7] [ 10] [0320132011] +13:12:25 [ 11] [ 6] [003113] +13:12:25 [ 12] [ 6] [132011] +13:12:25 [ 13] [ 4] [0320] +13:12:25 [ 15] [ 4] [0320] +13:12:25 [ 18] [ 4] [6011] +13:12:25 [ 32] [ 6] [220699] +13:12:25 [ 35] [ 32] [6213545000761415=491212016141338] +13:12:25 [ 37] [ 12] [507900186761] +13:12:25 [ 38] [ 6] [999324] +13:12:25 [ 39] [ 2] [00] +13:12:25 [ 41] [ 8] [08000100] +13:12:25 [ 49] [ 3] [418] +13:12:25 [ 54] [ 40] [0001418C0000098855180002418C000009885518] +13:12:25 ============================================================================ +13:12:25 Sending to : +13:12:25 ============================================================================ +13:12:25 + + +waiting on router queue for slot.... +13:12:26 ============================================================================ +13:12:26 Slot Id : <173> +13:12:26 Transaction Type : RESPONSE +13:12:26 Received From : +13:12:26 ============================================================================ +13:12:26 FNo. Len. Field Value +13:12:26 ============================================================================ +13:12:26 [ 1] [ 4] [0210] +13:12:26 [ 2] [ 16] [6213545000761415] +13:12:26 [ 3] [ 6] [010000] +13:12:26 [ 4] [ 12] [000010000000] +13:12:26 [ 7] [ 10] [0320132011] +13:12:26 [ 11] [ 6] [003113] +13:12:26 [ 12] [ 6] [132011] +13:12:26 [ 13] [ 4] [0320] +13:12:26 [ 15] [ 4] [0320] +13:12:26 [ 18] [ 4] [6011] +13:12:26 [ 32] [ 6] [220699] +13:12:26 [ 35] [ 32] [6213545000761415=491212016141338] +13:12:26 [ 37] [ 12] [507900186761] +13:12:26 [ 38] [ 6] [999324] +13:12:26 [ 39] [ 2] [00] +13:12:26 [ 41] [ 8] [08000100] +13:12:26 [ 49] [ 3] [418] +13:12:26 [ 54] [ 40] [0001418C0000098855180002418C000009885518] +13:12:26 ============================================================================ +13:12:26 Calculate Source COMM Id = 1 +13:12:26 ============================================================================ +13:12:26 + + +waiting on router queue for slot.... +13:12:36 ============================================================================ +13:12:36 Slot Id : <229> +13:12:36 Transaction Type : REQUEST +13:12:36 Received From : +13:12:36 ============================================================================ +13:12:36 FNo. Len. Field Value +13:12:36 ============================================================================ +13:12:36 [ 1] [ 4] [0800] +13:12:36 [ 7] [ 10] [0320061144] +13:12:36 [ 11] [ 6] [156490] +13:12:36 [ 70] [ 3] [301] +13:12:36 ============================================================================ +13:12:36 + + +waiting on router queue for slot.... +13:12:36 Sending to : +13:12:36 ============================================================================ +13:12:36 ============================================================================ +13:12:36 Slot Id : <229> +13:12:36 Transaction Type : RESPONSE +13:12:36 Received From : +13:12:36 ============================================================================ +13:12:36 FNo. Len. Field Value +13:12:36 ============================================================================ +13:12:36 [ 1] [ 4] [0810] +13:12:36 [ 7] [ 10] [0320061144] +13:12:36 [ 11] [ 6] [156490] +13:12:36 [ 39] [ 2] [00] +13:12:36 [ 70] [ 3] [301] +13:12:36 ============================================================================ +13:12:36 Calculate Source COMM Id = 2 +13:12:36 ============================================================================ +13:12:36 + + +waiting on router queue for slot.... +13:12:48 ============================================================================ +13:12:48 Slot Id : <188> +13:12:48 Transaction Type : REQUEST +13:12:48 Received From : +13:12:48 ============================================================================ +13:12:48 FNo. Len. Field Value +13:12:48 ============================================================================ +13:12:48 [ 1] [ 4] [0800] +13:12:48 [ 7] [ 10] [0320061155] +13:12:48 [ 11] [ 6] [156491] +13:12:48 [ 70] [ 3] [301] +13:12:48 ============================================================================ +13:12:48 + + +waiting on router queue for slot.... +13:12:48 Sending to : +13:12:48 ============================================================================ +13:12:48 ============================================================================ +13:12:48 Slot Id : <188> +13:12:48 Transaction Type : RESPONSE +13:12:48 Received From : +13:12:48 ============================================================================ +13:12:48 FNo. Len. Field Value +13:12:48 ============================================================================ +13:12:48 [ 1] [ 4] [0810] +13:12:48 [ 7] [ 10] [0320061155] +13:12:48 [ 11] [ 6] [156491] +13:12:48 [ 39] [ 2] [00] +13:12:48 [ 70] [ 3] [301] +13:12:48 ============================================================================ +13:12:48 Calculate Source COMM Id = 2 +13:12:48 ============================================================================ +13:12:48 + + +waiting on router queue for slot.... +13:13:00 ============================================================================ +13:13:00 Slot Id : <223> +13:13:00 Transaction Type : REQUEST +13:13:00 Received From : +13:13:00 ============================================================================ +13:13:00 FNo. Len. Field Value +13:13:00 ============================================================================ +13:13:00 [ 1] [ 4] [0800] +13:13:00 [ 7] [ 10] [0320061208] +13:13:00 [ 11] [ 6] [156492] +13:13:00 [ 70] [ 3] [301] +13:13:00 ============================================================================ +13:13:00 + + +waiting on router queue for slot.... +13:13:00 Sending to : +13:13:00 ============================================================================ +13:13:00 ============================================================================ +13:13:00 Slot Id : <223> +13:13:00 Transaction Type : RESPONSE +13:13:00 Received From : +13:13:00 ============================================================================ +13:13:00 FNo. Len. Field Value +13:13:00 ============================================================================ +13:13:00 [ 1] [ 4] [0810] +13:13:00 [ 7] [ 10] [0320061208] +13:13:00 [ 11] [ 6] [156492] +13:13:00 [ 39] [ 2] [00] +13:13:00 [ 70] [ 3] [301] +13:13:00 ============================================================================ +13:13:00 Calculate Source COMM Id = 2 +13:13:00 ============================================================================ +13:13:00 + + +waiting on router queue for slot.... +13:13:09 ============================================================================ +13:13:09 Slot Id : <246> +13:13:09 Transaction Type : REQUEST +13:13:09 Received From : +13:13:09 ============================================================================ +13:13:09 FNo. Len. Field Value +13:13:09 ============================================================================ +13:13:09 [ 1] [ 4] [0800] +13:13:09 [ 7] [ 10] [0320131256] +13:13:09 [ 11] [ 6] [006703] +13:13:09 [ 37] [ 12] [507913006703] +13:13:09 [ 70] [ 3] [ ] +13:13:09 ============================================================================ +13:13:09 + + +waiting on router queue for slot.... +13:13:09 Sending to : +13:13:09 ============================================================================ +13:13:09 ============================================================================ +13:13:09 Slot Id : <246> +13:13:09 Transaction Type : RESPONSE +13:13:09 Received From : +13:13:09 ============================================================================ +13:13:09 FNo. Len. Field Value +13:13:09 ============================================================================ +13:13:09 [ 1] [ 4] [0810] +13:13:09 [ 7] [ 10] [0320131256] +13:13:09 [ 11] [ 6] [006703] +13:13:09 [ 37] [ 12] [507913006703] +13:13:09 [ 39] [ 2] [91] +13:13:09 [ 70] [ 3] [ ] +13:13:09 ============================================================================ +13:13:09 Calculate Source COMM Id = 3 +13:13:09 ============================================================================ +13:13:09 + + +waiting on router queue for slot.... +13:13:11 ============================================================================ +13:13:11 Slot Id : <248> +13:13:11 Transaction Type : REQUEST +13:13:11 Received From : +13:13:11 ============================================================================ +13:13:11 FNo. Len. Field Value +13:13:11 ============================================================================ +13:13:11 [ 1] [ 4] [0200] +13:13:11 [ 2] [ 16] [6213545000324131] +13:13:11 [ 3] [ 6] [010000] +13:13:11 [ 4] [ 12] [000010000000] +13:13:11 [ 7] [ 10] [0320131102] +13:13:11 [ 11] [ 6] [945935] +13:13:11 [ 12] [ 6] [131102] +13:13:11 [ 13] [ 4] [0320] +13:13:11 [ 15] [ 4] [0320] +13:13:11 [ 18] [ 4] [6011] +13:13:11 [ 19] [ 3] [418] +13:13:11 [ 22] [ 3] [021] +13:13:11 [ 25] [ 2] [01] +13:13:11 [ 28] [ 9] [D00002000] +13:13:11 [ 32] [ 6] [668899] +13:13:11 [ 35] [ 32] [6213545000324131=491212012413305] +13:13:11 [ 37] [ 12] [507901373754] +13:13:11 [ 41] [ 8] [03209001] +13:13:11 [ 42] [ 15] [APT ] +13:13:11 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +13:13:11 [ 49] [ 3] [418] +13:13:11 [ 52] [ 16] [A00BD28C19DFCDDB] +13:13:11 ============================================================================ +13:13:11 + + +waiting on router queue for slot.... +13:13:11 Sending to : +13:13:11 ============================================================================ +13:13:11 Sending to : +13:13:11 ============================================================================ +13:13:12 ============================================================================ +13:13:12 Slot Id : <248> +13:13:12 Transaction Type : REQUEST +13:13:12 Received From : +13:13:12 ============================================================================ +13:13:12 FNo. Len. Field Value +13:13:12 ============================================================================ +13:13:12 [ 1] [ 4] [0200] +13:13:12 [ 2] [ 16] [6213545000324131] +13:13:12 [ 3] [ 6] [010000] +13:13:12 [ 4] [ 12] [000010000000] +13:13:12 [ 7] [ 10] [0320131102] +13:13:12 [ 11] [ 6] [945935] +13:13:12 [ 12] [ 6] [131102] +13:13:12 [ 13] [ 4] [0320] +13:13:12 [ 15] [ 4] [0320] +13:13:12 [ 18] [ 4] [6011] +13:13:12 [ 19] [ 3] [418] +13:13:12 [ 22] [ 3] [021] +13:13:12 [ 25] [ 2] [01] +13:13:12 [ 28] [ 9] [D00002000] +13:13:12 [ 32] [ 6] [668899] +13:13:12 [ 35] [ 32] [6213545000324131=491212012413305] +13:13:12 [ 37] [ 12] [507901373754] +13:13:12 [ 41] [ 8] [03209001] +13:13:12 [ 42] [ 15] [APT ] +13:13:12 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +13:13:12 [ 49] [ 3] [418] +13:13:12 [ 52] [ 16] [A00BD28C19DFCDDB] +13:13:12 ============================================================================ +13:13:12 + + +waiting on router queue for slot.... +13:13:12 Sending to : +13:13:12 ============================================================================ +13:13:12 ============================================================================ +13:13:12 Slot Id : <248> +13:13:12 Transaction Type : REQUEST +13:13:12 Received From : +13:13:12 ============================================================================ +13:13:12 FNo. Len. Field Value +13:13:12 ============================================================================ +13:13:12 [ 1] [ 4] [0200] +13:13:12 [ 2] [ 16] [6213545000324131] +13:13:12 [ 3] [ 6] [010000] +13:13:12 [ 4] [ 12] [000010000000] +13:13:12 [ 7] [ 10] [0320131102] +13:13:12 [ 11] [ 6] [945935] +13:13:12 [ 12] [ 6] [131102] +13:13:12 [ 13] [ 4] [0320] +13:13:12 [ 15] [ 4] [0320] +13:13:12 [ 18] [ 4] [6011] +13:13:12 [ 19] [ 3] [418] +13:13:12 [ 22] [ 3] [021] +13:13:12 [ 25] [ 2] [01] +13:13:12 [ 28] [ 9] [D00002000] +13:13:12 [ 32] [ 6] [668899] +13:13:12 [ 35] [ 32] [6213545000324131=491212012413305] +13:13:12 [ 37] [ 12] [507901373754] +13:13:12 [ 41] [ 8] [03209001] +13:13:12 [ 42] [ 15] [APT ] +13:13:12 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +13:13:12 [ 49] [ 3] [418] +13:13:12 [ 52] [ 16] [51CA161D1CB95041] +13:13:12 ============================================================================ +13:13:12 + + +waiting on router queue for slot.... +13:13:12 Sending to : <0> +13:13:12 ============================================================================ +13:13:12 ============================================================================ +13:13:12 Slot Id : <215> +13:13:12 Transaction Type : REQUEST +13:13:12 Received From : +13:13:12 ============================================================================ +13:13:12 FNo. Len. Field Value +13:13:12 ============================================================================ +13:13:12 [ 1] [ 4] [0800] +13:13:12 [ 7] [ 10] [0320061219] +13:13:12 [ 11] [ 6] [156493] +13:13:12 [ 70] [ 3] [301] +13:13:12 ============================================================================ +13:13:12 + + +waiting on router queue for slot.... +13:13:12 Sending to : +13:13:12 ============================================================================ +13:13:12 ============================================================================ +13:13:12 Slot Id : <215> +13:13:12 Transaction Type : RESPONSE +13:13:12 Received From : +13:13:12 ============================================================================ +13:13:12 FNo. Len. Field Value +13:13:12 ============================================================================ +13:13:12 [ 1] [ 4] [0810] +13:13:12 [ 7] [ 10] [0320061219] +13:13:12 [ 11] [ 6] [156493] +13:13:12 [ 39] [ 2] [00] +13:13:12 [ 70] [ 3] [301] +13:13:12 ============================================================================ +13:13:12 Calculate Source COMM Id = 2 +13:13:12 ============================================================================ +13:13:12 + + +waiting on router queue for slot.... +13:13:12 ============================================================================ +13:13:12 Slot Id : <243> +13:13:12 Transaction Type : REQUEST +13:13:12 Received From : +13:13:12 ============================================================================ +13:13:12 FNo. Len. Field Value +13:13:12 ============================================================================ +13:13:12 [ 1] [ 4] [0800] +13:13:12 [ 2] [ 5] [02531] +13:13:12 [ 3] [ 6] [579138] +13:13:12 [ 7] [ 10] [0320061312] +13:13:12 [ 11] [ 6] [807179] +13:13:12 [ 15] [ 10] [0320061312] +13:13:12 [ 37] [ 11] [57913807179] +13:13:12 [ 70] [ 3] [001] +13:13:12 ============================================================================ +13:13:12 + + +waiting on router queue for slot.... +13:13:12 ============================================================================ +13:13:12 Slot Id : <243> +13:13:12 Transaction Type : RESPONSE +13:13:12 Received From : +13:13:12 ============================================================================ +13:13:12 FNo. Len. Field Value +13:13:12 ============================================================================ +13:13:12 [ 1] [ 4] [0810] +13:13:12 [ 7] [ 10] [0320061312] +13:13:12 [ 11] [ 6] [807179] +13:13:12 [ 15] [ 4] [0320] +13:13:12 [ 37] [ 12] [57913807179] +13:13:12 [ 39] [ 2] [00] +13:13:12 [ 70] [ 3] [001] +13:13:12 ============================================================================ +13:13:12 Sending to : +13:13:12 ============================================================================ +13:13:12 + + +waiting on router queue for slot.... +13:13:13 ============================================================================ +13:13:13 Slot Id : <248> +13:13:13 Transaction Type : RESPONSE +13:13:13 Received From : +13:13:13 ============================================================================ +13:13:13 FNo. Len. Field Value +13:13:13 ============================================================================ +13:13:13 [ 1] [ 4] [0210] +13:13:13 [ 2] [ 16] [6213545000324131] +13:13:13 [ 3] [ 6] [010000] +13:13:13 [ 4] [ 12] [000010000000] +13:13:13 [ 7] [ 10] [0320131102] +13:13:13 [ 11] [ 6] [945935] +13:13:13 [ 12] [ 6] [131102] +13:13:13 [ 13] [ 4] [0320] +13:13:13 [ 15] [ 4] [0320] +13:13:13 [ 18] [ 4] [6011] +13:13:13 [ 19] [ 3] [418] +13:13:13 [ 32] [ 6] [668899] +13:13:13 [ 35] [ 32] [6213545000324131=491212012413305] +13:13:13 [ 37] [ 12] [507901373754] +13:13:13 [ 38] [ 6] [840277] +13:13:13 [ 39] [ 2] [00] +13:13:13 [ 41] [ 8] [03209001] +13:13:13 [ 49] [ 3] [418] +13:13:13 [ 54] [ 40] [0001418C0004333158940002418C000433315894] +13:13:13 ============================================================================ +13:13:13 Sending to : +13:13:13 ============================================================================ +13:13:13 + + +waiting on router queue for slot.... +13:13:14 ============================================================================ +13:13:14 Slot Id : <248> +13:13:14 Transaction Type : RESPONSE +13:13:14 Received From : +13:13:14 ============================================================================ +13:13:14 FNo. Len. Field Value +13:13:14 ============================================================================ +13:13:14 [ 1] [ 4] [0210] +13:13:14 [ 2] [ 16] [6213545000324131] +13:13:14 [ 3] [ 6] [010000] +13:13:14 [ 4] [ 12] [000010000000] +13:13:14 [ 7] [ 10] [0320131102] +13:13:14 [ 11] [ 6] [945935] +13:13:14 [ 12] [ 6] [131102] +13:13:14 [ 13] [ 4] [0320] +13:13:14 [ 15] [ 4] [0320] +13:13:14 [ 18] [ 4] [6011] +13:13:14 [ 19] [ 3] [418] +13:13:14 [ 32] [ 6] [668899] +13:13:14 [ 35] [ 32] [6213545000324131=491212012413305] +13:13:14 [ 37] [ 12] [507901373754] +13:13:14 [ 38] [ 6] [840277] +13:13:14 [ 39] [ 2] [00] +13:13:14 [ 41] [ 8] [03209001] +13:13:14 [ 49] [ 3] [418] +13:13:14 [ 54] [ 40] [0001418C0004333158940002418C000433315894] +13:13:14 ============================================================================ +13:13:14 Calculate Source COMM Id = 4 +13:13:14 ============================================================================ +13:13:14 + + +waiting on router queue for slot.... +13:13:28 ============================================================================ +13:13:28 Slot Id : <244> +13:13:28 Transaction Type : REQUEST +13:13:28 Received From : +13:13:28 ============================================================================ +13:13:28 FNo. Len. Field Value +13:13:28 ============================================================================ +13:13:28 [ 1] [ 4] [0800] +13:13:28 [ 7] [ 10] [0320061235] +13:13:28 [ 11] [ 6] [156494] +13:13:28 [ 70] [ 3] [301] +13:13:28 ============================================================================ +13:13:28 + + +waiting on router queue for slot.... +13:13:28 Sending to : +13:13:28 ============================================================================ +13:13:28 ============================================================================ +13:13:28 Slot Id : <244> +13:13:28 Transaction Type : RESPONSE +13:13:28 Received From : +13:13:28 ============================================================================ +13:13:28 FNo. Len. Field Value +13:13:28 ============================================================================ +13:13:28 [ 1] [ 4] [0810] +13:13:28 [ 7] [ 10] [0320061235] +13:13:28 [ 11] [ 6] [156494] +13:13:28 [ 39] [ 2] [00] +13:13:28 [ 70] [ 3] [301] +13:13:28 ============================================================================ +13:13:28 Calculate Source COMM Id = 2 +13:13:28 ============================================================================ +13:13:28 + + +waiting on router queue for slot.... +13:13:38 ============================================================================ +13:13:38 Slot Id : <227> +13:13:38 Transaction Type : REQUEST +13:13:38 Received From : +13:13:38 ============================================================================ +13:13:38 FNo. Len. Field Value +13:13:38 ============================================================================ +13:13:38 [ 1] [ 4] [0800] +13:13:38 [ 7] [ 10] [0320061246] +13:13:38 [ 11] [ 6] [156495] +13:13:38 [ 70] [ 3] [301] +13:13:38 ============================================================================ +13:13:38 + + +waiting on router queue for slot.... +13:13:38 Sending to : +13:13:38 ============================================================================ +13:13:38 ============================================================================ +13:13:38 Slot Id : <227> +13:13:38 Transaction Type : RESPONSE +13:13:38 Received From : +13:13:38 ============================================================================ +13:13:38 FNo. Len. Field Value +13:13:38 ============================================================================ +13:13:38 [ 1] [ 4] [0810] +13:13:38 [ 7] [ 10] [0320061246] +13:13:38 [ 11] [ 6] [156495] +13:13:38 [ 39] [ 2] [00] +13:13:38 [ 70] [ 3] [301] +13:13:38 ============================================================================ +13:13:38 Calculate Source COMM Id = 2 +13:13:38 ============================================================================ +13:13:38 + + +waiting on router queue for slot.... +13:13:49 ============================================================================ +13:13:49 Slot Id : <235> +13:13:49 Transaction Type : REQUEST +13:13:49 Received From : +13:13:49 ============================================================================ +13:13:49 FNo. Len. Field Value +13:13:49 ============================================================================ +13:13:49 [ 1] [ 4] [0800] +13:13:49 [ 7] [ 10] [0320061257] +13:13:49 [ 11] [ 6] [156496] +13:13:49 [ 70] [ 3] [301] +13:13:49 ============================================================================ +13:13:49 + + +waiting on router queue for slot.... +13:13:49 Sending to : +13:13:49 ============================================================================ +13:13:49 ============================================================================ +13:13:49 Slot Id : <235> +13:13:49 Transaction Type : RESPONSE +13:13:49 Received From : +13:13:49 ============================================================================ +13:13:49 FNo. Len. Field Value +13:13:49 ============================================================================ +13:13:49 [ 1] [ 4] [0810] +13:13:49 [ 7] [ 10] [0320061257] +13:13:49 [ 11] [ 6] [156496] +13:13:49 [ 39] [ 2] [00] +13:13:49 [ 70] [ 3] [301] +13:13:49 ============================================================================ +13:13:49 Calculate Source COMM Id = 2 +13:13:49 ============================================================================ +13:13:49 + + +waiting on router queue for slot.... +13:14:00 ============================================================================ +13:14:00 Slot Id : <251> +13:14:00 Transaction Type : REQUEST +13:14:00 Received From : +13:14:00 ============================================================================ +13:14:00 FNo. Len. Field Value +13:14:00 ============================================================================ +13:14:00 [ 1] [ 4] [0200] +13:14:00 [ 2] [ 16] [6213545000181192] +13:14:00 [ 3] [ 6] [010000] +13:14:00 [ 4] [ 12] [000080000000] +13:14:00 [ 7] [ 10] [0320131150] +13:14:00 [ 11] [ 6] [945957] +13:14:00 [ 12] [ 6] [131150] +13:14:00 [ 13] [ 4] [0320] +13:14:00 [ 15] [ 4] [0320] +13:14:00 [ 18] [ 4] [6011] +13:14:00 [ 19] [ 3] [418] +13:14:00 [ 22] [ 3] [021] +13:14:00 [ 25] [ 2] [01] +13:14:00 [ 28] [ 9] [D00002000] +13:14:00 [ 32] [ 6] [668899] +13:14:00 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:00 [ 37] [ 12] [507901841858] +13:14:00 [ 41] [ 8] [03009004] +13:14:00 [ 42] [ 15] [APT ] +13:14:00 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:14:00 [ 49] [ 3] [418] +13:14:00 [ 52] [ 16] [AB3CA23D94AC8F67] +13:14:00 ============================================================================ +13:14:00 + + +waiting on router queue for slot.... +13:14:00 Sending to : +13:14:00 ============================================================================ +13:14:00 Sending to : +13:14:00 ============================================================================ +13:14:00 ============================================================================ +13:14:00 Slot Id : <251> +13:14:00 Transaction Type : REQUEST +13:14:00 Received From : +13:14:00 ============================================================================ +13:14:00 FNo. Len. Field Value +13:14:00 ============================================================================ +13:14:00 [ 1] [ 4] [0200] +13:14:00 [ 2] [ 16] [6213545000181192] +13:14:00 [ 3] [ 6] [010000] +13:14:00 [ 4] [ 12] [000080000000] +13:14:00 [ 7] [ 10] [0320131150] +13:14:00 [ 11] [ 6] [945957] +13:14:00 [ 12] [ 6] [131150] +13:14:00 [ 13] [ 4] [0320] +13:14:00 [ 15] [ 4] [0320] +13:14:00 [ 18] [ 4] [6011] +13:14:00 [ 19] [ 3] [418] +13:14:00 [ 22] [ 3] [021] +13:14:00 [ 25] [ 2] [01] +13:14:00 [ 28] [ 9] [D00002000] +13:14:00 [ 32] [ 6] [668899] +13:14:00 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:00 [ 37] [ 12] [507901841858] +13:14:00 [ 41] [ 8] [03009004] +13:14:00 [ 42] [ 15] [APT ] +13:14:00 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:14:00 [ 49] [ 3] [418] +13:14:00 [ 52] [ 16] [AB3CA23D94AC8F67] +13:14:00 ============================================================================ +13:14:00 + + +waiting on router queue for slot.... +13:14:00 Sending to : +13:14:00 ============================================================================ +13:14:00 ============================================================================ +13:14:00 Slot Id : <251> +13:14:00 Transaction Type : REQUEST +13:14:00 Received From : +13:14:00 ============================================================================ +13:14:00 FNo. Len. Field Value +13:14:00 ============================================================================ +13:14:00 [ 1] [ 4] [0200] +13:14:00 [ 2] [ 16] [6213545000181192] +13:14:00 [ 3] [ 6] [010000] +13:14:00 [ 4] [ 12] [000080000000] +13:14:00 [ 7] [ 10] [0320131150] +13:14:00 [ 11] [ 6] [945957] +13:14:00 [ 12] [ 6] [131150] +13:14:00 [ 13] [ 4] [0320] +13:14:00 [ 15] [ 4] [0320] +13:14:00 [ 18] [ 4] [6011] +13:14:00 [ 19] [ 3] [418] +13:14:00 [ 22] [ 3] [021] +13:14:00 [ 25] [ 2] [01] +13:14:00 [ 28] [ 9] [D00002000] +13:14:00 [ 32] [ 6] [668899] +13:14:00 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:00 [ 37] [ 12] [507901841858] +13:14:00 [ 41] [ 8] [03009004] +13:14:00 [ 42] [ 15] [APT ] +13:14:00 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:14:00 [ 49] [ 3] [418] +13:14:00 [ 52] [ 16] [361A911916BB4729] +13:14:00 ============================================================================ +13:14:00 + + +waiting on router queue for slot.... +13:14:00 Sending to : <0> +13:14:00 ============================================================================ +13:14:01 ============================================================================ +13:14:01 Slot Id : <251> +13:14:01 Transaction Type : RESPONSE +13:14:01 Received From : +13:14:01 ============================================================================ +13:14:01 FNo. Len. Field Value +13:14:01 ============================================================================ +13:14:01 [ 1] [ 4] [0210] +13:14:01 [ 2] [ 16] [6213545000181192] +13:14:01 [ 3] [ 6] [010000] +13:14:01 [ 4] [ 12] [000080000000] +13:14:01 [ 7] [ 10] [0320131150] +13:14:01 [ 11] [ 6] [945957] +13:14:01 [ 12] [ 6] [131150] +13:14:01 [ 13] [ 4] [0320] +13:14:01 [ 15] [ 4] [0320] +13:14:01 [ 18] [ 4] [6011] +13:14:01 [ 19] [ 3] [418] +13:14:01 [ 32] [ 6] [668899] +13:14:01 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:01 [ 37] [ 12] [507901841858] +13:14:01 [ 38] [ 6] [945957] +13:14:01 [ 39] [ 2] [51] +13:14:01 [ 41] [ 8] [03009004] +13:14:01 [ 49] [ 3] [418] +13:14:01 [ 54] [ 40] [0001418C0000555911310002418C000055591131] +13:14:01 ============================================================================ +13:14:01 Sending to : +13:14:01 ============================================================================ +13:14:01 + + +waiting on router queue for slot.... +13:14:02 ============================================================================ +13:14:02 Slot Id : <251> +13:14:02 Transaction Type : RESPONSE +13:14:02 Received From : +13:14:02 ============================================================================ +13:14:02 FNo. Len. Field Value +13:14:02 ============================================================================ +13:14:02 [ 1] [ 4] [0210] +13:14:02 [ 2] [ 16] [6213545000181192] +13:14:02 [ 3] [ 6] [010000] +13:14:02 [ 4] [ 12] [000080000000] +13:14:02 [ 7] [ 10] [0320131150] +13:14:02 [ 11] [ 6] [945957] +13:14:02 [ 12] [ 6] [131150] +13:14:02 [ 13] [ 4] [0320] +13:14:02 [ 15] [ 4] [0320] +13:14:02 [ 18] [ 4] [6011] +13:14:02 [ 19] [ 3] [418] +13:14:02 [ 32] [ 6] [668899] +13:14:02 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:02 [ 37] [ 12] [507901841858] +13:14:02 [ 38] [ 6] [945957] +13:14:02 [ 39] [ 2] [51] +13:14:02 [ 41] [ 8] [03009004] +13:14:02 [ 49] [ 3] [418] +13:14:02 [ 54] [ 40] [0001418C0000555911310002418C000055591131] +13:14:02 ============================================================================ +13:14:02 Calculate Source COMM Id = 4 +13:14:02 ============================================================================ +13:14:02 + + +waiting on router queue for slot.... +13:14:05 ============================================================================ +13:14:05 Slot Id : <250> +13:14:05 Transaction Type : REQUEST +13:14:05 Received From : +13:14:05 ============================================================================ +13:14:05 FNo. Len. Field Value +13:14:05 ============================================================================ +13:14:05 [ 1] [ 4] [0800] +13:14:05 [ 7] [ 10] [0320061312] +13:14:05 [ 11] [ 6] [156497] +13:14:05 [ 70] [ 3] [301] +13:14:05 ============================================================================ +13:14:05 + + +waiting on router queue for slot.... +13:14:05 Sending to : +13:14:05 ============================================================================ +13:14:05 ============================================================================ +13:14:05 Slot Id : <250> +13:14:05 Transaction Type : RESPONSE +13:14:05 Received From : +13:14:05 ============================================================================ +13:14:05 FNo. Len. Field Value +13:14:05 ============================================================================ +13:14:05 [ 1] [ 4] [0810] +13:14:05 [ 7] [ 10] [0320061312] +13:14:05 [ 11] [ 6] [156497] +13:14:05 [ 39] [ 2] [00] +13:14:05 [ 70] [ 3] [301] +13:14:05 ============================================================================ +13:14:05 Calculate Source COMM Id = 2 +13:14:05 ============================================================================ +13:14:05 + + +waiting on router queue for slot.... +13:14:14 ============================================================================ +13:14:14 Slot Id : <177> +13:14:14 Transaction Type : REQUEST +13:14:14 Received From : +13:14:14 ============================================================================ +13:14:14 FNo. Len. Field Value +13:14:14 ============================================================================ +13:14:14 [ 1] [ 4] [0800] +13:14:14 [ 2] [ 5] [02531] +13:14:14 [ 3] [ 6] [579138] +13:14:14 [ 7] [ 10] [0320061414] +13:14:14 [ 11] [ 6] [807180] +13:14:14 [ 15] [ 10] [0320061414] +13:14:14 [ 37] [ 11] [57913807180] +13:14:14 [ 70] [ 3] [001] +13:14:14 ============================================================================ +13:14:14 + + +waiting on router queue for slot.... +13:14:14 ============================================================================ +13:14:14 Slot Id : <177> +13:14:14 Transaction Type : RESPONSE +13:14:14 Received From : +13:14:14 ============================================================================ +13:14:14 FNo. Len. Field Value +13:14:14 ============================================================================ +13:14:14 [ 1] [ 4] [0810] +13:14:14 [ 7] [ 10] [0320061414] +13:14:14 [ 11] [ 6] [807180] +13:14:14 [ 15] [ 4] [0320] +13:14:14 [ 37] [ 12] [57913807180] +13:14:14 [ 39] [ 2] [00] +13:14:14 [ 70] [ 3] [001] +13:14:14 ============================================================================ +13:14:14 Sending to : +13:14:14 ============================================================================ +13:14:14 + + +waiting on router queue for slot.... +13:14:16 ============================================================================ +13:14:16 Slot Id : <226> +13:14:16 Transaction Type : REQUEST +13:14:16 Received From : +13:14:16 ============================================================================ +13:14:16 FNo. Len. Field Value +13:14:16 ============================================================================ +13:14:16 [ 1] [ 4] [0800] +13:14:16 [ 7] [ 10] [0320061323] +13:14:16 [ 11] [ 6] [156498] +13:14:16 [ 70] [ 3] [301] +13:14:16 ============================================================================ +13:14:16 + + +waiting on router queue for slot.... +13:14:16 Sending to : +13:14:16 ============================================================================ +13:14:16 ============================================================================ +13:14:16 Slot Id : <226> +13:14:16 Transaction Type : RESPONSE +13:14:16 Received From : +13:14:16 ============================================================================ +13:14:16 FNo. Len. Field Value +13:14:16 ============================================================================ +13:14:16 [ 1] [ 4] [0810] +13:14:16 [ 7] [ 10] [0320061323] +13:14:16 [ 11] [ 6] [156498] +13:14:16 [ 39] [ 2] [00] +13:14:16 [ 70] [ 3] [301] +13:14:16 ============================================================================ +13:14:16 Calculate Source COMM Id = 2 +13:14:16 ============================================================================ +13:14:16 + + +waiting on router queue for slot.... +13:14:27 ============================================================================ +13:14:27 Slot Id : <242> +13:14:27 Transaction Type : REQUEST +13:14:27 Received From : +13:14:27 ============================================================================ +13:14:27 FNo. Len. Field Value +13:14:27 ============================================================================ +13:14:27 [ 1] [ 4] [0800] +13:14:27 [ 7] [ 10] [0320061334] +13:14:27 [ 11] [ 6] [156499] +13:14:27 [ 70] [ 3] [301] +13:14:27 ============================================================================ +13:14:27 + + +waiting on router queue for slot.... +13:14:27 Sending to : +13:14:27 ============================================================================ +13:14:27 ============================================================================ +13:14:27 Slot Id : <242> +13:14:27 Transaction Type : RESPONSE +13:14:27 Received From : +13:14:27 ============================================================================ +13:14:27 FNo. Len. Field Value +13:14:27 ============================================================================ +13:14:27 [ 1] [ 4] [0810] +13:14:27 [ 7] [ 10] [0320061334] +13:14:27 [ 11] [ 6] [156499] +13:14:27 [ 39] [ 2] [00] +13:14:27 [ 70] [ 3] [301] +13:14:27 ============================================================================ +13:14:27 Calculate Source COMM Id = 2 +13:14:27 ============================================================================ +13:14:27 + + +waiting on router queue for slot.... +13:14:32 ============================================================================ +13:14:32 Slot Id : <255> +13:14:32 Transaction Type : REQUEST +13:14:32 Received From : +13:14:32 ============================================================================ +13:14:32 FNo. Len. Field Value +13:14:32 ============================================================================ +13:14:32 [ 1] [ 4] [0200] +13:14:32 [ 2] [ 16] [6213545000181192] +13:14:32 [ 3] [ 6] [010000] +13:14:32 [ 4] [ 12] [000079000000] +13:14:32 [ 7] [ 10] [0320131222] +13:14:32 [ 11] [ 6] [945979] +13:14:32 [ 12] [ 6] [131222] +13:14:32 [ 13] [ 4] [0320] +13:14:32 [ 15] [ 4] [0320] +13:14:32 [ 18] [ 4] [6011] +13:14:32 [ 19] [ 3] [418] +13:14:32 [ 22] [ 3] [021] +13:14:32 [ 25] [ 2] [01] +13:14:32 [ 28] [ 9] [D00002000] +13:14:32 [ 32] [ 6] [668899] +13:14:32 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:32 [ 37] [ 12] [507901841859] +13:14:32 [ 41] [ 8] [03009004] +13:14:32 [ 42] [ 15] [APT ] +13:14:32 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:14:32 [ 49] [ 3] [418] +13:14:32 [ 52] [ 16] [AB3CA23D94AC8F67] +13:14:32 ============================================================================ +13:14:32 + + +waiting on router queue for slot.... +13:14:32 Sending to : +13:14:32 ============================================================================ +13:14:32 Sending to : +13:14:32 ============================================================================ +13:14:32 ============================================================================ +13:14:32 Slot Id : <255> +13:14:32 Transaction Type : REQUEST +13:14:32 Received From : +13:14:32 ============================================================================ +13:14:32 FNo. Len. Field Value +13:14:32 ============================================================================ +13:14:32 [ 1] [ 4] [0200] +13:14:32 [ 2] [ 16] [6213545000181192] +13:14:32 [ 3] [ 6] [010000] +13:14:32 [ 4] [ 12] [000079000000] +13:14:32 [ 7] [ 10] [0320131222] +13:14:32 [ 11] [ 6] [945979] +13:14:32 [ 12] [ 6] [131222] +13:14:32 [ 13] [ 4] [0320] +13:14:32 [ 15] [ 4] [0320] +13:14:32 [ 18] [ 4] [6011] +13:14:32 [ 19] [ 3] [418] +13:14:32 [ 22] [ 3] [021] +13:14:32 [ 25] [ 2] [01] +13:14:32 [ 28] [ 9] [D00002000] +13:14:32 [ 32] [ 6] [668899] +13:14:32 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:32 [ 37] [ 12] [507901841859] +13:14:32 [ 41] [ 8] [03009004] +13:14:32 [ 42] [ 15] [APT ] +13:14:32 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:14:32 [ 49] [ 3] [418] +13:14:32 [ 52] [ 16] [AB3CA23D94AC8F67] +13:14:32 ============================================================================ +13:14:32 + + +waiting on router queue for slot.... +13:14:32 Sending to : +13:14:32 ============================================================================ +13:14:32 ============================================================================ +13:14:32 Slot Id : <255> +13:14:32 Transaction Type : REQUEST +13:14:32 Received From : +13:14:32 ============================================================================ +13:14:32 FNo. Len. Field Value +13:14:32 ============================================================================ +13:14:32 [ 1] [ 4] [0200] +13:14:32 [ 2] [ 16] [6213545000181192] +13:14:32 [ 3] [ 6] [010000] +13:14:32 [ 4] [ 12] [000079000000] +13:14:32 [ 7] [ 10] [0320131222] +13:14:32 [ 11] [ 6] [945979] +13:14:32 [ 12] [ 6] [131222] +13:14:32 [ 13] [ 4] [0320] +13:14:32 [ 15] [ 4] [0320] +13:14:32 [ 18] [ 4] [6011] +13:14:32 [ 19] [ 3] [418] +13:14:32 [ 22] [ 3] [021] +13:14:32 [ 25] [ 2] [01] +13:14:32 [ 28] [ 9] [D00002000] +13:14:32 [ 32] [ 6] [668899] +13:14:32 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:32 [ 37] [ 12] [507901841859] +13:14:32 [ 41] [ 8] [03009004] +13:14:32 [ 42] [ 15] [APT ] +13:14:32 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:14:32 [ 49] [ 3] [418] +13:14:32 [ 52] [ 16] [361A911916BB4729] +13:14:32 ============================================================================ +13:14:32 + + +waiting on router queue for slot.... +13:14:32 Sending to : <0> +13:14:32 ============================================================================ +13:14:33 ============================================================================ +13:14:33 Slot Id : <255> +13:14:33 Transaction Type : RESPONSE +13:14:33 Received From : +13:14:33 ============================================================================ +13:14:33 FNo. Len. Field Value +13:14:33 ============================================================================ +13:14:33 [ 1] [ 4] [0210] +13:14:33 [ 2] [ 16] [6213545000181192] +13:14:33 [ 3] [ 6] [010000] +13:14:33 [ 4] [ 12] [000079000000] +13:14:33 [ 7] [ 10] [0320131222] +13:14:33 [ 11] [ 6] [945979] +13:14:33 [ 12] [ 6] [131222] +13:14:33 [ 13] [ 4] [0320] +13:14:33 [ 15] [ 4] [0320] +13:14:33 [ 18] [ 4] [6011] +13:14:33 [ 19] [ 3] [418] +13:14:33 [ 32] [ 6] [668899] +13:14:33 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:33 [ 37] [ 12] [507901841859] +13:14:33 [ 38] [ 6] [945979] +13:14:33 [ 39] [ 2] [51] +13:14:33 [ 41] [ 8] [03009004] +13:14:33 [ 49] [ 3] [418] +13:14:33 [ 54] [ 40] [0001418C0000555911310002418C000055591131] +13:14:33 ============================================================================ +13:14:33 Sending to : +13:14:33 ============================================================================ +13:14:33 + + +waiting on router queue for slot.... +13:14:34 ============================================================================ +13:14:34 Slot Id : <255> +13:14:34 Transaction Type : RESPONSE +13:14:34 Received From : +13:14:34 ============================================================================ +13:14:34 FNo. Len. Field Value +13:14:34 ============================================================================ +13:14:34 [ 1] [ 4] [0210] +13:14:34 [ 2] [ 16] [6213545000181192] +13:14:34 [ 3] [ 6] [010000] +13:14:34 [ 4] [ 12] [000079000000] +13:14:34 [ 7] [ 10] [0320131222] +13:14:34 [ 11] [ 6] [945979] +13:14:34 [ 12] [ 6] [131222] +13:14:34 [ 13] [ 4] [0320] +13:14:34 [ 15] [ 4] [0320] +13:14:34 [ 18] [ 4] [6011] +13:14:34 [ 19] [ 3] [418] +13:14:34 [ 32] [ 6] [668899] +13:14:34 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:34 [ 37] [ 12] [507901841859] +13:14:34 [ 38] [ 6] [945979] +13:14:34 [ 39] [ 2] [51] +13:14:34 [ 41] [ 8] [03009004] +13:14:34 [ 49] [ 3] [418] +13:14:34 [ 54] [ 40] [0001418C0000555911310002418C000055591131] +13:14:34 ============================================================================ +13:14:34 Calculate Source COMM Id = 4 +13:14:34 ============================================================================ +13:14:34 + + +waiting on router queue for slot.... +13:14:38 ============================================================================ +13:14:38 Slot Id : <233> +13:14:38 Transaction Type : REQUEST +13:14:38 Received From : +13:14:38 ============================================================================ +13:14:38 FNo. Len. Field Value +13:14:38 ============================================================================ +13:14:38 [ 1] [ 4] [0800] +13:14:38 [ 7] [ 10] [0320061345] +13:14:38 [ 11] [ 6] [156500] +13:14:38 [ 70] [ 3] [301] +13:14:38 ============================================================================ +13:14:38 + + +waiting on router queue for slot.... +13:14:38 Sending to : +13:14:38 ============================================================================ +13:14:38 ============================================================================ +13:14:38 Slot Id : <233> +13:14:38 Transaction Type : RESPONSE +13:14:38 Received From : +13:14:38 ============================================================================ +13:14:38 FNo. Len. Field Value +13:14:38 ============================================================================ +13:14:38 [ 1] [ 4] [0810] +13:14:38 [ 7] [ 10] [0320061345] +13:14:38 [ 11] [ 6] [156500] +13:14:38 [ 39] [ 2] [00] +13:14:38 [ 70] [ 3] [301] +13:14:38 ============================================================================ +13:14:38 Calculate Source COMM Id = 2 +13:14:38 ============================================================================ +13:14:38 + + +waiting on router queue for slot.... +13:14:46 ============================================================================ +13:14:46 Slot Id : <200> +13:14:46 Transaction Type : REQUEST +13:14:46 Received From : +13:14:46 ============================================================================ +13:14:46 FNo. Len. Field Value +13:14:46 ============================================================================ +13:14:46 [ 1] [ 4] [0200] +13:14:46 [ 2] [ 16] [6213545000181192] +13:14:46 [ 3] [ 6] [010000] +13:14:46 [ 4] [ 12] [000050000000] +13:14:46 [ 7] [ 10] [0320131236] +13:14:46 [ 11] [ 6] [945987] +13:14:46 [ 12] [ 6] [131236] +13:14:46 [ 13] [ 4] [0320] +13:14:46 [ 15] [ 4] [0320] +13:14:46 [ 18] [ 4] [6011] +13:14:46 [ 19] [ 3] [418] +13:14:46 [ 22] [ 3] [021] +13:14:46 [ 25] [ 2] [01] +13:14:46 [ 28] [ 9] [D00002000] +13:14:46 [ 32] [ 6] [668899] +13:14:46 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:46 [ 37] [ 12] [507901841860] +13:14:46 [ 41] [ 8] [03009004] +13:14:46 [ 42] [ 15] [APT ] +13:14:46 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:14:46 [ 49] [ 3] [418] +13:14:46 [ 52] [ 16] [AB3CA23D94AC8F67] +13:14:46 ============================================================================ +13:14:46 + + +waiting on router queue for slot.... +13:14:46 Sending to : +13:14:46 ============================================================================ +13:14:46 Sending to : +13:14:46 ============================================================================ +13:14:46 ============================================================================ +13:14:46 Slot Id : <200> +13:14:46 Transaction Type : REQUEST +13:14:46 Received From : +13:14:46 ============================================================================ +13:14:46 FNo. Len. Field Value +13:14:46 ============================================================================ +13:14:46 [ 1] [ 4] [0200] +13:14:46 [ 2] [ 16] [6213545000181192] +13:14:46 [ 3] [ 6] [010000] +13:14:46 [ 4] [ 12] [000050000000] +13:14:46 [ 7] [ 10] [0320131236] +13:14:46 [ 11] [ 6] [945987] +13:14:46 [ 12] [ 6] [131236] +13:14:46 [ 13] [ 4] [0320] +13:14:46 [ 15] [ 4] [0320] +13:14:46 [ 18] [ 4] [6011] +13:14:46 [ 19] [ 3] [418] +13:14:46 [ 22] [ 3] [021] +13:14:46 [ 25] [ 2] [01] +13:14:46 [ 28] [ 9] [D00002000] +13:14:46 [ 32] [ 6] [668899] +13:14:46 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:46 [ 37] [ 12] [507901841860] +13:14:46 [ 41] [ 8] [03009004] +13:14:46 [ 42] [ 15] [APT ] +13:14:46 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:14:46 [ 49] [ 3] [418] +13:14:46 [ 52] [ 16] [AB3CA23D94AC8F67] +13:14:46 ============================================================================ +13:14:46 + + +waiting on router queue for slot.... +13:14:46 Sending to : +13:14:46 ============================================================================ +13:14:46 ============================================================================ +13:14:46 Slot Id : <200> +13:14:46 Transaction Type : REQUEST +13:14:46 Received From : +13:14:46 ============================================================================ +13:14:46 FNo. Len. Field Value +13:14:46 ============================================================================ +13:14:46 [ 1] [ 4] [0200] +13:14:46 [ 2] [ 16] [6213545000181192] +13:14:46 [ 3] [ 6] [010000] +13:14:46 [ 4] [ 12] [000050000000] +13:14:46 [ 7] [ 10] [0320131236] +13:14:46 [ 11] [ 6] [945987] +13:14:46 [ 12] [ 6] [131236] +13:14:46 [ 13] [ 4] [0320] +13:14:46 [ 15] [ 4] [0320] +13:14:46 [ 18] [ 4] [6011] +13:14:46 [ 19] [ 3] [418] +13:14:46 [ 22] [ 3] [021] +13:14:46 [ 25] [ 2] [01] +13:14:46 [ 28] [ 9] [D00002000] +13:14:46 [ 32] [ 6] [668899] +13:14:46 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:46 [ 37] [ 12] [507901841860] +13:14:46 [ 41] [ 8] [03009004] +13:14:46 [ 42] [ 15] [APT ] +13:14:46 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:14:46 [ 49] [ 3] [418] +13:14:46 [ 52] [ 16] [361A911916BB4729] +13:14:46 ============================================================================ +13:14:46 + + +waiting on router queue for slot.... +13:14:46 Sending to : <0> +13:14:46 ============================================================================ +13:14:47 ============================================================================ +13:14:47 Slot Id : <200> +13:14:47 Transaction Type : RESPONSE +13:14:47 Received From : +13:14:47 ============================================================================ +13:14:47 FNo. Len. Field Value +13:14:47 ============================================================================ +13:14:47 [ 1] [ 4] [0210] +13:14:47 [ 2] [ 16] [6213545000181192] +13:14:47 [ 3] [ 6] [010000] +13:14:47 [ 4] [ 12] [000050000000] +13:14:47 [ 7] [ 10] [0320131236] +13:14:47 [ 11] [ 6] [945987] +13:14:47 [ 12] [ 6] [131236] +13:14:47 [ 13] [ 4] [0320] +13:14:47 [ 15] [ 4] [0320] +13:14:47 [ 18] [ 4] [6011] +13:14:47 [ 19] [ 3] [418] +13:14:47 [ 32] [ 6] [668899] +13:14:47 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:47 [ 37] [ 12] [507901841860] +13:14:47 [ 38] [ 6] [219876] +13:14:47 [ 39] [ 2] [00] +13:14:47 [ 41] [ 8] [03009004] +13:14:47 [ 49] [ 3] [418] +13:14:47 [ 54] [ 40] [0001418C0000053911310002418C000005391131] +13:14:47 ============================================================================ +13:14:47 Sending to : +13:14:47 ============================================================================ +13:14:47 + + +waiting on router queue for slot.... +13:14:48 ============================================================================ +13:14:48 Slot Id : <200> +13:14:48 Transaction Type : RESPONSE +13:14:48 Received From : +13:14:48 ============================================================================ +13:14:48 FNo. Len. Field Value +13:14:48 ============================================================================ +13:14:48 [ 1] [ 4] [0210] +13:14:48 [ 2] [ 16] [6213545000181192] +13:14:48 [ 3] [ 6] [010000] +13:14:48 [ 4] [ 12] [000050000000] +13:14:48 [ 7] [ 10] [0320131236] +13:14:48 [ 11] [ 6] [945987] +13:14:48 [ 12] [ 6] [131236] +13:14:48 [ 13] [ 4] [0320] +13:14:48 [ 15] [ 4] [0320] +13:14:48 [ 18] [ 4] [6011] +13:14:48 [ 19] [ 3] [418] +13:14:48 [ 32] [ 6] [668899] +13:14:48 [ 35] [ 32] [6213545000181192=491212018119855] +13:14:48 [ 37] [ 12] [507901841860] +13:14:48 [ 38] [ 6] [219876] +13:14:48 [ 39] [ 2] [00] +13:14:48 [ 41] [ 8] [03009004] +13:14:48 [ 49] [ 3] [418] +13:14:48 [ 54] [ 40] [0001418C0000053911310002418C000005391131] +13:14:48 ============================================================================ +13:14:48 Calculate Source COMM Id = 4 +13:14:48 ============================================================================ +13:14:48 + + +waiting on router queue for slot.... +13:14:54 ============================================================================ +13:14:54 Slot Id : <238> +13:14:54 Transaction Type : REQUEST +13:14:54 Received From : +13:14:54 ============================================================================ +13:14:54 FNo. Len. Field Value +13:14:54 ============================================================================ +13:14:54 [ 1] [ 4] [0800] +13:14:54 [ 7] [ 10] [0320061402] +13:14:54 [ 11] [ 6] [156501] +13:14:54 [ 70] [ 3] [301] +13:14:54 ============================================================================ +13:14:54 + + +waiting on router queue for slot.... +13:14:54 Sending to : +13:14:54 ============================================================================ +13:14:54 ============================================================================ +13:14:54 Slot Id : <238> +13:14:54 Transaction Type : RESPONSE +13:14:54 Received From : +13:14:54 ============================================================================ +13:14:54 FNo. Len. Field Value +13:14:54 ============================================================================ +13:14:54 [ 1] [ 4] [0810] +13:14:54 [ 7] [ 10] [0320061402] +13:14:54 [ 11] [ 6] [156501] +13:14:54 [ 39] [ 2] [00] +13:14:54 [ 70] [ 3] [301] +13:14:54 ============================================================================ +13:14:54 Calculate Source COMM Id = 2 +13:14:54 ============================================================================ +13:14:54 + + +waiting on router queue for slot.... +13:14:55 ============================================================================ +13:14:55 Slot Id : <237> +13:14:55 Transaction Type : REQUEST +13:14:55 Received From : +13:14:55 ============================================================================ +13:14:55 FNo. Len. Field Value +13:14:55 ============================================================================ +13:14:55 [ 1] [ 4] [0800] +13:14:55 [ 7] [ 10] [0320062242] +13:14:55 [ 11] [ 6] [055035] +13:14:55 [ 37] [ 12] [57913055035] +13:14:55 [ 70] [ 3] [301] +13:14:55 ============================================================================ +13:14:55 + + +waiting on router queue for slot.... +13:14:55 Sending to : +13:14:55 ============================================================================ +13:14:55 ============================================================================ +13:14:55 Slot Id : <237> +13:14:55 Transaction Type : RESPONSE +13:14:55 Received From : +13:14:55 ============================================================================ +13:14:55 FNo. Len. Field Value +13:14:55 ============================================================================ +13:14:55 [ 1] [ 4] [0810] +13:14:55 [ 7] [ 10] [0320062242] +13:14:55 [ 11] [ 6] [055035] +13:14:55 [ 37] [ 12] [579130550350] +13:14:55 [ 39] [ 2] [00] +13:14:55 [ 70] [ 3] [810] +13:14:55 ============================================================================ +13:14:55 Calculate Source COMM Id = 1 +13:14:55 ============================================================================ +13:14:55 + + +waiting on router queue for slot.... +13:15:05 ============================================================================ +13:15:05 Slot Id : <216> +13:15:05 Transaction Type : REQUEST +13:15:05 Received From : +13:15:05 ============================================================================ +13:15:05 FNo. Len. Field Value +13:15:05 ============================================================================ +13:15:05 [ 1] [ 4] [0800] +13:15:05 [ 7] [ 10] [0320061412] +13:15:05 [ 11] [ 6] [156502] +13:15:05 [ 70] [ 3] [301] +13:15:05 ============================================================================ +13:15:05 + + +waiting on router queue for slot.... +13:15:05 Sending to : +13:15:05 ============================================================================ +13:15:05 ============================================================================ +13:15:05 Slot Id : <216> +13:15:05 Transaction Type : RESPONSE +13:15:05 Received From : +13:15:05 ============================================================================ +13:15:05 FNo. Len. Field Value +13:15:05 ============================================================================ +13:15:05 [ 1] [ 4] [0810] +13:15:05 [ 7] [ 10] [0320061412] +13:15:05 [ 11] [ 6] [156502] +13:15:05 [ 39] [ 2] [00] +13:15:05 [ 70] [ 3] [301] +13:15:05 ============================================================================ +13:15:05 Calculate Source COMM Id = 2 +13:15:05 ============================================================================ +13:15:05 + + +waiting on router queue for slot.... +13:15:16 ============================================================================ +13:15:16 Slot Id : <253> +13:15:16 Transaction Type : REQUEST +13:15:16 Received From : +13:15:16 ============================================================================ +13:15:16 FNo. Len. Field Value +13:15:16 ============================================================================ +13:15:16 [ 1] [ 4] [0800] +13:15:16 [ 7] [ 10] [0320061423] +13:15:16 [ 11] [ 6] [156503] +13:15:16 [ 70] [ 3] [301] +13:15:16 ============================================================================ +13:15:16 + + +waiting on router queue for slot.... +13:15:16 Sending to : +13:15:16 ============================================================================ +13:15:16 ============================================================================ +13:15:16 Slot Id : <253> +13:15:16 Transaction Type : RESPONSE +13:15:16 Received From : +13:15:16 ============================================================================ +13:15:16 FNo. Len. Field Value +13:15:16 ============================================================================ +13:15:16 [ 1] [ 4] [0810] +13:15:16 [ 7] [ 10] [0320061423] +13:15:16 [ 11] [ 6] [156503] +13:15:16 [ 39] [ 2] [00] +13:15:16 [ 70] [ 3] [301] +13:15:16 ============================================================================ +13:15:16 Calculate Source COMM Id = 2 +13:15:16 ============================================================================ +13:15:16 + + +waiting on router queue for slot.... +13:15:16 ============================================================================ +13:15:16 Slot Id : <260> +13:15:16 Transaction Type : REQUEST +13:15:16 Received From : +13:15:16 ============================================================================ +13:15:16 FNo. Len. Field Value +13:15:16 ============================================================================ +13:15:16 [ 1] [ 4] [0800] +13:15:16 [ 2] [ 5] [02531] +13:15:16 [ 3] [ 6] [579138] +13:15:16 [ 7] [ 10] [0320061516] +13:15:16 [ 11] [ 6] [807181] +13:15:16 [ 15] [ 10] [0320061516] +13:15:16 [ 37] [ 11] [57913807181] +13:15:16 [ 70] [ 3] [001] +13:15:16 ============================================================================ +13:15:16 + + +waiting on router queue for slot.... +13:15:16 ============================================================================ +13:15:16 Slot Id : <260> +13:15:16 Transaction Type : RESPONSE +13:15:16 Received From : +13:15:16 ============================================================================ +13:15:16 FNo. Len. Field Value +13:15:16 ============================================================================ +13:15:16 [ 1] [ 4] [0810] +13:15:16 [ 7] [ 10] [0320061516] +13:15:16 [ 11] [ 6] [807181] +13:15:16 [ 15] [ 4] [0320] +13:15:16 [ 37] [ 12] [57913807181] +13:15:16 [ 39] [ 2] [00] +13:15:16 [ 70] [ 3] [001] +13:15:16 ============================================================================ +13:15:16 Sending to : +13:15:16 ============================================================================ +13:15:16 + + +waiting on router queue for slot.... +13:15:28 ============================================================================ +13:15:28 Slot Id : <234> +13:15:28 Transaction Type : REQUEST +13:15:28 Received From : +13:15:28 ============================================================================ +13:15:28 FNo. Len. Field Value +13:15:28 ============================================================================ +13:15:28 [ 1] [ 4] [0800] +13:15:28 [ 7] [ 10] [0320061434] +13:15:28 [ 11] [ 6] [156504] +13:15:28 [ 70] [ 3] [301] +13:15:28 ============================================================================ +13:15:28 + + +waiting on router queue for slot.... +13:15:28 Sending to : +13:15:28 ============================================================================ +13:15:28 ============================================================================ +13:15:28 Slot Id : <234> +13:15:28 Transaction Type : RESPONSE +13:15:28 Received From : +13:15:28 ============================================================================ +13:15:28 FNo. Len. Field Value +13:15:28 ============================================================================ +13:15:28 [ 1] [ 4] [0810] +13:15:28 [ 7] [ 10] [0320061434] +13:15:28 [ 11] [ 6] [156504] +13:15:28 [ 39] [ 2] [00] +13:15:28 [ 70] [ 3] [301] +13:15:28 ============================================================================ +13:15:28 Calculate Source COMM Id = 2 +13:15:28 ============================================================================ +13:15:28 + + +waiting on router queue for slot.... +13:15:37 ============================================================================ +13:15:37 Slot Id : <249> +13:15:37 Transaction Type : REQUEST +13:15:37 Received From : +13:15:37 ============================================================================ +13:15:37 FNo. Len. Field Value +13:15:37 ============================================================================ +13:15:37 [ 1] [ 4] [0200] +13:15:37 [ 2] [ 16] [6213541000560857] +13:15:37 [ 3] [ 6] [311000] +13:15:37 [ 4] [ 12] [000000000000] +13:15:37 [ 7] [ 10] [0320132324] +13:15:37 [ 11] [ 6] [168948] +13:15:37 [ 12] [ 6] [132324] +13:15:37 [ 13] [ 4] [0320] +13:15:37 [ 14] [ 4] [4912] +13:15:37 [ 15] [ 4] [0320] +13:15:37 [ 18] [ 4] [6011] +13:15:37 [ 22] [ 3] [900] +13:15:37 [ 25] [ 2] [02] +13:15:37 [ 28] [ 9] [000000000] +13:15:37 [ 32] [ 6] [220699] +13:15:37 [ 35] [ 32] [6213541000560857=491212016085125] +13:15:37 [ 37] [ 12] [507900026360] +13:15:37 [ 41] [ 8] [01000200] +13:15:37 [ 42] [ 15] [APTRA ] +13:15:37 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:15:37 [ 49] [ 3] [418] +13:15:37 [ 52] [ 16] [56FBF44F48AB681B] +13:15:37 ============================================================================ +13:15:37 + + +waiting on router queue for slot.... +13:15:37 Sending to : +13:15:37 ============================================================================ +13:15:37 Sending to : +13:15:37 ============================================================================ +13:15:37 ============================================================================ +13:15:37 Slot Id : <249> +13:15:37 Transaction Type : REQUEST +13:15:37 Received From : +13:15:37 ============================================================================ +13:15:37 FNo. Len. Field Value +13:15:37 ============================================================================ +13:15:37 [ 1] [ 4] [0200] +13:15:37 [ 2] [ 16] [6213541000560857] +13:15:37 [ 3] [ 6] [311000] +13:15:37 [ 4] [ 12] [000000000000] +13:15:37 [ 7] [ 10] [0320132324] +13:15:37 [ 11] [ 6] [168948] +13:15:37 [ 12] [ 6] [132324] +13:15:37 [ 13] [ 4] [0320] +13:15:37 [ 14] [ 4] [4912] +13:15:37 [ 15] [ 4] [0320] +13:15:37 [ 18] [ 4] [6011] +13:15:37 [ 22] [ 3] [900] +13:15:37 [ 25] [ 2] [02] +13:15:37 [ 28] [ 9] [000000000] +13:15:37 [ 32] [ 6] [220699] +13:15:37 [ 35] [ 32] [6213541000560857=491212016085125] +13:15:37 [ 37] [ 12] [507900026360] +13:15:37 [ 41] [ 8] [01000200] +13:15:37 [ 42] [ 15] [APTRA ] +13:15:37 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:15:37 [ 49] [ 3] [418] +13:15:37 [ 52] [ 16] [56FBF44F48AB681B] +13:15:37 ============================================================================ +13:15:37 + + +waiting on router queue for slot.... +13:15:37 Sending to : +13:15:37 ============================================================================ +13:15:37 ============================================================================ +13:15:37 Slot Id : <249> +13:15:37 Transaction Type : REQUEST +13:15:37 Received From : +13:15:37 ============================================================================ +13:15:37 FNo. Len. Field Value +13:15:37 ============================================================================ +13:15:37 [ 1] [ 4] [0200] +13:15:37 [ 2] [ 16] [6213541000560857] +13:15:37 [ 3] [ 6] [311000] +13:15:37 [ 4] [ 12] [000000000000] +13:15:37 [ 7] [ 10] [0320132324] +13:15:37 [ 11] [ 6] [168948] +13:15:37 [ 12] [ 6] [132324] +13:15:37 [ 13] [ 4] [0320] +13:15:37 [ 14] [ 4] [4912] +13:15:37 [ 15] [ 4] [0320] +13:15:37 [ 18] [ 4] [6011] +13:15:37 [ 22] [ 3] [900] +13:15:37 [ 25] [ 2] [02] +13:15:37 [ 28] [ 9] [000000000] +13:15:37 [ 32] [ 6] [220699] +13:15:37 [ 35] [ 32] [6213541000560857=491212016085125] +13:15:37 [ 37] [ 12] [507900026360] +13:15:37 [ 41] [ 8] [01000200] +13:15:37 [ 42] [ 15] [APTRA ] +13:15:37 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:15:37 [ 49] [ 3] [418] +13:15:37 [ 52] [ 16] [17C9B7A2157D766D] +13:15:37 ============================================================================ +13:15:37 + + +waiting on router queue for slot.... +13:15:37 Sending to : <0> +13:15:37 ============================================================================ +13:15:37 ============================================================================ +13:15:37 Slot Id : <249> +13:15:37 Transaction Type : RESPONSE +13:15:37 Received From : +13:15:37 ============================================================================ +13:15:37 FNo. Len. Field Value +13:15:37 ============================================================================ +13:15:37 [ 1] [ 4] [0210] +13:15:37 [ 2] [ 16] [6213541000560857] +13:15:37 [ 3] [ 6] [311000] +13:15:37 [ 4] [ 12] [000000000000] +13:15:37 [ 7] [ 10] [0320132324] +13:15:37 [ 11] [ 6] [168948] +13:15:37 [ 12] [ 6] [132324] +13:15:37 [ 13] [ 4] [0320] +13:15:37 [ 15] [ 4] [0320] +13:15:37 [ 18] [ 4] [6011] +13:15:37 [ 32] [ 6] [220699] +13:15:37 [ 35] [ 32] [6213541000560857=491212016085125] +13:15:37 [ 37] [ 12] [507900026360] +13:15:37 [ 38] [ 6] [268252] +13:15:37 [ 39] [ 2] [00] +13:15:37 [ 41] [ 8] [01000200] +13:15:37 [ 49] [ 3] [418] +13:15:37 [ 54] [ 40] [1001418C0001878616601002418C000187861660] +13:15:37 ============================================================================ +13:15:37 Sending to : +13:15:37 ============================================================================ +13:15:37 + + +waiting on router queue for slot.... +13:15:39 ============================================================================ +13:15:39 Slot Id : <249> +13:15:39 Transaction Type : RESPONSE +13:15:39 Received From : +13:15:39 ============================================================================ +13:15:39 FNo. Len. Field Value +13:15:39 ============================================================================ +13:15:39 [ 1] [ 4] [0210] +13:15:39 [ 2] [ 16] [6213541000560857] +13:15:39 [ 3] [ 6] [311000] +13:15:39 [ 4] [ 12] [000000000000] +13:15:39 [ 7] [ 10] [0320132324] +13:15:39 [ 11] [ 6] [168948] +13:15:39 [ 12] [ 6] [132324] +13:15:39 [ 13] [ 4] [0320] +13:15:39 [ 15] [ 4] [0320] +13:15:39 [ 18] [ 4] [6011] +13:15:39 [ 32] [ 6] [220699] +13:15:39 [ 35] [ 32] [6213541000560857=491212016085125] +13:15:39 [ 37] [ 12] [507900026360] +13:15:39 [ 38] [ 6] [268252] +13:15:39 [ 39] [ 2] [00] +13:15:39 [ 41] [ 8] [01000200] +13:15:39 [ 49] [ 3] [418] +13:15:39 [ 54] [ 40] [1001418C0001878616601002418C000187861660] +13:15:39 ============================================================================ +13:15:39 Calculate Source COMM Id = 1 +13:15:39 ============================================================================ +13:15:39 + + +waiting on router queue for slot.... +13:15:43 ============================================================================ +13:15:43 Slot Id : <210> +13:15:43 Transaction Type : REQUEST +13:15:43 Received From : +13:15:43 ============================================================================ +13:15:43 FNo. Len. Field Value +13:15:43 ============================================================================ +13:15:43 [ 1] [ 4] [0800] +13:15:43 [ 7] [ 10] [0320061450] +13:15:43 [ 11] [ 6] [156505] +13:15:43 [ 70] [ 3] [301] +13:15:43 ============================================================================ +13:15:43 + + +waiting on router queue for slot.... +13:15:43 Sending to : +13:15:43 ============================================================================ +13:15:43 ============================================================================ +13:15:43 Slot Id : <210> +13:15:43 Transaction Type : RESPONSE +13:15:43 Received From : +13:15:43 ============================================================================ +13:15:43 FNo. Len. Field Value +13:15:43 ============================================================================ +13:15:43 [ 1] [ 4] [0810] +13:15:43 [ 7] [ 10] [0320061450] +13:15:43 [ 11] [ 6] [156505] +13:15:43 [ 39] [ 2] [00] +13:15:43 [ 70] [ 3] [301] +13:15:43 ============================================================================ +13:15:43 Calculate Source COMM Id = 2 +13:15:43 ============================================================================ +13:15:43 + + +waiting on router queue for slot.... +13:15:43 ============================================================================ +13:15:43 Slot Id : <259> +13:15:43 Transaction Type : REQUEST +13:15:43 Received From : +13:15:43 ============================================================================ +13:15:43 FNo. Len. Field Value +13:15:43 ============================================================================ +13:15:43 [ 1] [ 4] [0200] +13:15:43 [ 2] [ 16] [6213545000324131] +13:15:43 [ 3] [ 6] [010000] +13:15:43 [ 4] [ 12] [000050000000] +13:15:43 [ 7] [ 10] [0320131334] +13:15:43 [ 11] [ 6] [946014] +13:15:43 [ 12] [ 6] [131334] +13:15:43 [ 13] [ 4] [0320] +13:15:43 [ 15] [ 4] [0320] +13:15:43 [ 18] [ 4] [6011] +13:15:43 [ 19] [ 3] [418] +13:15:43 [ 22] [ 3] [021] +13:15:43 [ 25] [ 2] [01] +13:15:43 [ 28] [ 9] [D00002000] +13:15:43 [ 32] [ 6] [668899] +13:15:43 [ 35] [ 32] [6213545000324131=491212012413305] +13:15:43 [ 37] [ 12] [507901373756] +13:15:43 [ 41] [ 8] [03209001] +13:15:43 [ 42] [ 15] [APT ] +13:15:43 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +13:15:43 [ 49] [ 3] [418] +13:15:43 [ 52] [ 16] [A00BD28C19DFCDDB] +13:15:43 ============================================================================ +13:15:43 + + +waiting on router queue for slot.... +13:15:43 Sending to : +13:15:43 ============================================================================ +13:15:43 Sending to : +13:15:43 ============================================================================ +13:15:44 ============================================================================ +13:15:44 Slot Id : <259> +13:15:44 Transaction Type : REQUEST +13:15:44 Received From : +13:15:44 ============================================================================ +13:15:44 FNo. Len. Field Value +13:15:44 ============================================================================ +13:15:44 [ 1] [ 4] [0200] +13:15:44 [ 2] [ 16] [6213545000324131] +13:15:44 [ 3] [ 6] [010000] +13:15:44 [ 4] [ 12] [000050000000] +13:15:44 [ 7] [ 10] [0320131334] +13:15:44 [ 11] [ 6] [946014] +13:15:44 [ 12] [ 6] [131334] +13:15:44 [ 13] [ 4] [0320] +13:15:44 [ 15] [ 4] [0320] +13:15:44 [ 18] [ 4] [6011] +13:15:44 [ 19] [ 3] [418] +13:15:44 [ 22] [ 3] [021] +13:15:44 [ 25] [ 2] [01] +13:15:44 [ 28] [ 9] [D00002000] +13:15:44 [ 32] [ 6] [668899] +13:15:44 [ 35] [ 32] [6213545000324131=491212012413305] +13:15:44 [ 37] [ 12] [507901373756] +13:15:44 [ 41] [ 8] [03209001] +13:15:44 [ 42] [ 15] [APT ] +13:15:44 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +13:15:44 [ 49] [ 3] [418] +13:15:44 [ 52] [ 16] [A00BD28C19DFCDDB] +13:15:44 ============================================================================ +13:15:44 + + +waiting on router queue for slot.... +13:15:44 Sending to : +13:15:44 ============================================================================ +13:15:44 ============================================================================ +13:15:44 Slot Id : <259> +13:15:44 Transaction Type : REQUEST +13:15:44 Received From : +13:15:44 ============================================================================ +13:15:44 FNo. Len. Field Value +13:15:44 ============================================================================ +13:15:44 [ 1] [ 4] [0200] +13:15:44 [ 2] [ 16] [6213545000324131] +13:15:44 [ 3] [ 6] [010000] +13:15:44 [ 4] [ 12] [000050000000] +13:15:44 [ 7] [ 10] [0320131334] +13:15:44 [ 11] [ 6] [946014] +13:15:44 [ 12] [ 6] [131334] +13:15:44 [ 13] [ 4] [0320] +13:15:44 [ 15] [ 4] [0320] +13:15:44 [ 18] [ 4] [6011] +13:15:44 [ 19] [ 3] [418] +13:15:44 [ 22] [ 3] [021] +13:15:44 [ 25] [ 2] [01] +13:15:44 [ 28] [ 9] [D00002000] +13:15:44 [ 32] [ 6] [668899] +13:15:44 [ 35] [ 32] [6213545000324131=491212012413305] +13:15:44 [ 37] [ 12] [507901373756] +13:15:44 [ 41] [ 8] [03209001] +13:15:44 [ 42] [ 15] [APT ] +13:15:44 [ 43] [ 40] [ MUEANGKHAM UNIT XIENGKHOU] +13:15:44 [ 49] [ 3] [418] +13:15:44 [ 52] [ 16] [51CA161D1CB95041] +13:15:44 ============================================================================ +13:15:44 + + +waiting on router queue for slot.... +13:15:44 Sending to : <0> +13:15:44 ============================================================================ +13:15:45 ============================================================================ +13:15:45 Slot Id : <259> +13:15:45 Transaction Type : RESPONSE +13:15:45 Received From : +13:15:45 ============================================================================ +13:15:45 FNo. Len. Field Value +13:15:45 ============================================================================ +13:15:45 [ 1] [ 4] [0210] +13:15:45 [ 2] [ 16] [6213545000324131] +13:15:45 [ 3] [ 6] [010000] +13:15:45 [ 4] [ 12] [000050000000] +13:15:45 [ 7] [ 10] [0320131334] +13:15:45 [ 11] [ 6] [946014] +13:15:45 [ 12] [ 6] [131334] +13:15:45 [ 13] [ 4] [0320] +13:15:45 [ 15] [ 4] [0320] +13:15:45 [ 18] [ 4] [6011] +13:15:45 [ 19] [ 3] [418] +13:15:45 [ 32] [ 6] [668899] +13:15:45 [ 35] [ 32] [6213545000324131=491212012413305] +13:15:45 [ 37] [ 12] [507901373756] +13:15:45 [ 38] [ 6] [825037] +13:15:45 [ 39] [ 2] [00] +13:15:45 [ 41] [ 8] [03209001] +13:15:45 [ 49] [ 3] [418] +13:15:45 [ 54] [ 40] [0001418C0003831158940002418C000383115894] +13:15:45 ============================================================================ +13:15:45 Sending to : +13:15:45 ============================================================================ +13:15:45 + + +waiting on router queue for slot.... +13:15:46 ============================================================================ +13:15:46 Slot Id : <259> +13:15:46 Transaction Type : RESPONSE +13:15:46 Received From : +13:15:46 ============================================================================ +13:15:46 FNo. Len. Field Value +13:15:46 ============================================================================ +13:15:46 [ 1] [ 4] [0210] +13:15:46 [ 2] [ 16] [6213545000324131] +13:15:46 [ 3] [ 6] [010000] +13:15:46 [ 4] [ 12] [000050000000] +13:15:46 [ 7] [ 10] [0320131334] +13:15:46 [ 11] [ 6] [946014] +13:15:46 [ 12] [ 6] [131334] +13:15:46 [ 13] [ 4] [0320] +13:15:46 [ 15] [ 4] [0320] +13:15:46 [ 18] [ 4] [6011] +13:15:46 [ 19] [ 3] [418] +13:15:46 [ 32] [ 6] [668899] +13:15:46 [ 35] [ 32] [6213545000324131=491212012413305] +13:15:46 [ 37] [ 12] [507901373756] +13:15:46 [ 38] [ 6] [825037] +13:15:46 [ 39] [ 2] [00] +13:15:46 [ 41] [ 8] [03209001] +13:15:46 [ 49] [ 3] [418] +13:15:46 [ 54] [ 40] [0001418C0003831158940002418C000383115894] +13:15:46 ============================================================================ +13:15:46 Calculate Source COMM Id = 4 +13:15:46 ============================================================================ +13:15:46 + + +waiting on router queue for slot.... +13:15:54 ============================================================================ +13:15:54 Slot Id : <261> +13:15:54 Transaction Type : REQUEST +13:15:54 Received From : +13:15:54 ============================================================================ +13:15:54 FNo. Len. Field Value +13:15:54 ============================================================================ +13:15:54 [ 1] [ 4] [0200] +13:15:54 [ 2] [ 16] [6213541000457278] +13:15:54 [ 3] [ 6] [011000] +13:15:54 [ 4] [ 12] [000100000000] +13:15:54 [ 7] [ 10] [0320132341] +13:15:54 [ 11] [ 6] [251226] +13:15:54 [ 12] [ 6] [132341] +13:15:54 [ 13] [ 4] [0320] +13:15:54 [ 14] [ 4] [4912] +13:15:54 [ 15] [ 4] [0320] +13:15:54 [ 18] [ 4] [6011] +13:15:54 [ 22] [ 3] [900] +13:15:54 [ 25] [ 2] [02] +13:15:54 [ 28] [ 9] [D00002000] +13:15:54 [ 32] [ 6] [220699] +13:15:54 [ 35] [ 32] [6213541000457278=491212015727049] +13:15:54 [ 37] [ 12] [507900336206] +13:15:54 [ 41] [ 8] [01001900] +13:15:54 [ 42] [ 15] [APTRA ] +13:15:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:15:54 [ 49] [ 3] [418] +13:15:54 [ 52] [ 16] [76525580251D9D81] +13:15:54 ============================================================================ +13:15:54 + + +waiting on router queue for slot.... +13:15:54 Sending to : +13:15:54 ============================================================================ +13:15:54 Sending to : +13:15:54 ============================================================================ +13:15:54 ============================================================================ +13:15:54 Slot Id : <261> +13:15:54 Transaction Type : REQUEST +13:15:54 Received From : +13:15:54 ============================================================================ +13:15:54 FNo. Len. Field Value +13:15:54 ============================================================================ +13:15:54 [ 1] [ 4] [0200] +13:15:54 [ 2] [ 16] [6213541000457278] +13:15:54 [ 3] [ 6] [011000] +13:15:54 [ 4] [ 12] [000100000000] +13:15:54 [ 7] [ 10] [0320132341] +13:15:54 [ 11] [ 6] [251226] +13:15:54 [ 12] [ 6] [132341] +13:15:54 [ 13] [ 4] [0320] +13:15:54 [ 14] [ 4] [4912] +13:15:54 [ 15] [ 4] [0320] +13:15:54 [ 18] [ 4] [6011] +13:15:54 [ 22] [ 3] [900] +13:15:54 [ 25] [ 2] [02] +13:15:54 [ 28] [ 9] [D00002000] +13:15:54 [ 32] [ 6] [220699] +13:15:54 [ 35] [ 32] [6213541000457278=491212015727049] +13:15:54 [ 37] [ 12] [507900336206] +13:15:54 [ 41] [ 8] [01001900] +13:15:54 [ 42] [ 15] [APTRA ] +13:15:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:15:54 [ 49] [ 3] [418] +13:15:54 [ 52] [ 16] [76525580251D9D81] +13:15:54 ============================================================================ +13:15:54 + + +waiting on router queue for slot.... +13:15:54 Sending to : +13:15:54 ============================================================================ +13:15:54 ============================================================================ +13:15:54 Slot Id : <261> +13:15:54 Transaction Type : REQUEST +13:15:54 Received From : +13:15:54 ============================================================================ +13:15:54 FNo. Len. Field Value +13:15:54 ============================================================================ +13:15:54 [ 1] [ 4] [0200] +13:15:54 [ 2] [ 16] [6213541000457278] +13:15:54 [ 3] [ 6] [011000] +13:15:54 [ 4] [ 12] [000100000000] +13:15:54 [ 7] [ 10] [0320132341] +13:15:54 [ 11] [ 6] [251226] +13:15:54 [ 12] [ 6] [132341] +13:15:54 [ 13] [ 4] [0320] +13:15:54 [ 14] [ 4] [4912] +13:15:54 [ 15] [ 4] [0320] +13:15:54 [ 18] [ 4] [6011] +13:15:54 [ 22] [ 3] [900] +13:15:54 [ 25] [ 2] [02] +13:15:54 [ 28] [ 9] [D00002000] +13:15:54 [ 32] [ 6] [220699] +13:15:54 [ 35] [ 32] [6213541000457278=491212015727049] +13:15:54 [ 37] [ 12] [507900336206] +13:15:54 [ 41] [ 8] [01001900] +13:15:54 [ 42] [ 15] [APTRA ] +13:15:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:15:54 [ 49] [ 3] [418] +13:15:54 [ 52] [ 16] [340C3748C978291D] +13:15:54 ============================================================================ +13:15:54 + + +waiting on router queue for slot.... +13:15:54 Sending to : <0> +13:15:54 ============================================================================ +13:15:55 ============================================================================ +13:15:55 Slot Id : <261> +13:15:55 Transaction Type : RESPONSE +13:15:55 Received From : +13:15:55 ============================================================================ +13:15:55 FNo. Len. Field Value +13:15:55 ============================================================================ +13:15:55 [ 1] [ 4] [0210] +13:15:55 [ 2] [ 16] [6213541000457278] +13:15:55 [ 3] [ 6] [011000] +13:15:55 [ 4] [ 12] [000100000000] +13:15:55 [ 7] [ 10] [0320132341] +13:15:55 [ 11] [ 6] [251226] +13:15:55 [ 12] [ 6] [132341] +13:15:55 [ 13] [ 4] [0320] +13:15:55 [ 15] [ 4] [0320] +13:15:55 [ 18] [ 4] [6011] +13:15:55 [ 32] [ 6] [220699] +13:15:55 [ 35] [ 32] [6213541000457278=491212015727049] +13:15:55 [ 37] [ 12] [507900336206] +13:15:55 [ 38] [ 6] [176047] +13:15:55 [ 39] [ 2] [00] +13:15:55 [ 41] [ 8] [01001900] +13:15:55 [ 49] [ 3] [418] +13:15:55 [ 54] [ 40] [1001418C0044031812781002418C004403181278] +13:15:55 ============================================================================ +13:15:55 Sending to : +13:15:55 ============================================================================ +13:15:55 + + +waiting on router queue for slot.... +13:15:55 ============================================================================ +13:15:55 Slot Id : <263> +13:15:55 Transaction Type : REQUEST +13:15:55 Received From : +13:15:55 ============================================================================ +13:15:55 FNo. Len. Field Value +13:15:55 ============================================================================ +13:15:55 [ 1] [ 4] [0800] +13:15:55 [ 7] [ 10] [0320061500] +13:15:55 [ 11] [ 6] [156506] +13:15:55 [ 70] [ 3] [301] +13:15:55 ============================================================================ +13:15:55 + + +waiting on router queue for slot.... +13:15:55 Sending to : +13:15:55 ============================================================================ +13:15:55 ============================================================================ +13:15:55 Slot Id : <263> +13:15:55 Transaction Type : RESPONSE +13:15:55 Received From : +13:15:55 ============================================================================ +13:15:55 FNo. Len. Field Value +13:15:55 ============================================================================ +13:15:55 [ 1] [ 4] [0810] +13:15:55 [ 7] [ 10] [0320061500] +13:15:55 [ 11] [ 6] [156506] +13:15:55 [ 39] [ 2] [00] +13:15:55 [ 70] [ 3] [301] +13:15:55 ============================================================================ +13:15:55 Calculate Source COMM Id = 2 +13:15:55 ============================================================================ +13:15:55 + + +waiting on router queue for slot.... +13:15:56 ============================================================================ +13:15:56 Slot Id : <261> +13:15:56 Transaction Type : RESPONSE +13:15:56 Received From : +13:15:56 ============================================================================ +13:15:56 FNo. Len. Field Value +13:15:56 ============================================================================ +13:15:56 [ 1] [ 4] [0210] +13:15:56 [ 2] [ 16] [6213541000457278] +13:15:56 [ 3] [ 6] [011000] +13:15:56 [ 4] [ 12] [000100000000] +13:15:56 [ 7] [ 10] [0320132341] +13:15:56 [ 11] [ 6] [251226] +13:15:56 [ 12] [ 6] [132341] +13:15:56 [ 13] [ 4] [0320] +13:15:56 [ 15] [ 4] [0320] +13:15:56 [ 18] [ 4] [6011] +13:15:56 [ 32] [ 6] [220699] +13:15:56 [ 35] [ 32] [6213541000457278=491212015727049] +13:15:56 [ 37] [ 12] [507900336206] +13:15:56 [ 38] [ 6] [176047] +13:15:56 [ 39] [ 2] [00] +13:15:56 [ 41] [ 8] [01001900] +13:15:56 [ 49] [ 3] [418] +13:15:56 [ 54] [ 40] [1001418C0044031812781002418C004403181278] +13:15:56 ============================================================================ +13:15:56 Calculate Source COMM Id = 1 +13:15:56 ============================================================================ +13:15:56 + + +waiting on router queue for slot.... +13:16:08 ============================================================================ +13:16:08 Slot Id : <225> +13:16:08 Transaction Type : REQUEST +13:16:08 Received From : +13:16:08 ============================================================================ +13:16:08 FNo. Len. Field Value +13:16:08 ============================================================================ +13:16:08 [ 1] [ 4] [0800] +13:16:08 [ 7] [ 10] [0320061515] +13:16:08 [ 11] [ 6] [156507] +13:16:08 [ 70] [ 3] [301] +13:16:08 ============================================================================ +13:16:08 + + +waiting on router queue for slot.... +13:16:08 Sending to : +13:16:08 ============================================================================ +13:16:08 ============================================================================ +13:16:08 Slot Id : <225> +13:16:08 Transaction Type : RESPONSE +13:16:08 Received From : +13:16:08 ============================================================================ +13:16:08 FNo. Len. Field Value +13:16:08 ============================================================================ +13:16:08 [ 1] [ 4] [0810] +13:16:08 [ 7] [ 10] [0320061515] +13:16:08 [ 11] [ 6] [156507] +13:16:08 [ 39] [ 2] [00] +13:16:08 [ 70] [ 3] [301] +13:16:08 ============================================================================ +13:16:08 Calculate Source COMM Id = 2 +13:16:08 ============================================================================ +13:16:08 + + +waiting on router queue for slot.... +13:16:18 ============================================================================ +13:16:18 Slot Id : <199> +13:16:18 Transaction Type : REQUEST +13:16:18 Received From : +13:16:18 ============================================================================ +13:16:18 FNo. Len. Field Value +13:16:18 ============================================================================ +13:16:18 [ 1] [ 4] [0800] +13:16:18 [ 2] [ 5] [02531] +13:16:18 [ 3] [ 6] [579138] +13:16:18 [ 7] [ 10] [0320061618] +13:16:18 [ 11] [ 6] [807182] +13:16:18 [ 15] [ 10] [0320061618] +13:16:18 [ 37] [ 11] [57913807182] +13:16:18 [ 70] [ 3] [001] +13:16:18 ============================================================================ +13:16:18 + + +waiting on router queue for slot.... +13:16:18 ============================================================================ +13:16:18 Slot Id : <199> +13:16:18 Transaction Type : RESPONSE +13:16:18 Received From : +13:16:18 ============================================================================ +13:16:18 FNo. Len. Field Value +13:16:18 ============================================================================ +13:16:18 [ 1] [ 4] [0810] +13:16:18 [ 7] [ 10] [0320061618] +13:16:18 [ 11] [ 6] [807182] +13:16:18 [ 15] [ 4] [0320] +13:16:18 [ 37] [ 12] [57913807182] +13:16:18 [ 39] [ 2] [00] +13:16:18 [ 70] [ 3] [001] +13:16:18 ============================================================================ +13:16:18 Sending to : +13:16:18 ============================================================================ +13:16:18 + + +waiting on router queue for slot.... +13:16:19 ============================================================================ +13:16:19 Slot Id : <270> +13:16:19 Transaction Type : REQUEST +13:16:19 Received From : +13:16:19 ============================================================================ +13:16:19 FNo. Len. Field Value +13:16:19 ============================================================================ +13:16:19 [ 1] [ 4] [0800] +13:16:19 [ 7] [ 10] [0320061526] +13:16:19 [ 11] [ 6] [156508] +13:16:19 [ 70] [ 3] [301] +13:16:19 ============================================================================ +13:16:19 + + +waiting on router queue for slot.... +13:16:19 Sending to : +13:16:19 ============================================================================ +13:16:19 ============================================================================ +13:16:19 Slot Id : <270> +13:16:19 Transaction Type : RESPONSE +13:16:19 Received From : +13:16:19 ============================================================================ +13:16:19 FNo. Len. Field Value +13:16:19 ============================================================================ +13:16:19 [ 1] [ 4] [0810] +13:16:19 [ 7] [ 10] [0320061526] +13:16:19 [ 11] [ 6] [156508] +13:16:19 [ 39] [ 2] [00] +13:16:19 [ 70] [ 3] [301] +13:16:19 ============================================================================ +13:16:19 Calculate Source COMM Id = 2 +13:16:19 ============================================================================ +13:16:19 + + +waiting on router queue for slot.... +13:16:22 ============================================================================ +13:16:22 Slot Id : <269> +13:16:22 Transaction Type : REQUEST +13:16:22 Received From : +13:16:22 ============================================================================ +13:16:22 FNo. Len. Field Value +13:16:22 ============================================================================ +13:16:22 [ 1] [ 4] [0800] +13:16:22 [ 7] [ 10] [0320061412] +13:16:22 [ 11] [ 6] [026216] +13:16:22 [ 37] [ 12] [57913026216] +13:16:22 [ 70] [ 3] [301] +13:16:22 ============================================================================ +13:16:22 + + +waiting on router queue for slot.... +13:16:22 Sending to : +13:16:22 ============================================================================ +13:16:22 ============================================================================ +13:16:22 Slot Id : <269> +13:16:22 Transaction Type : RESPONSE +13:16:22 Received From : +13:16:22 ============================================================================ +13:16:22 FNo. Len. Field Value +13:16:22 ============================================================================ +13:16:22 [ 1] [ 4] [0810] +13:16:22 [ 7] [ 10] [0320061412] +13:16:22 [ 11] [ 6] [026216] +13:16:22 [ 37] [ 12] [579130262160] +13:16:22 [ 39] [ 2] [00] +13:16:22 [ 70] [ 3] [810] +13:16:22 ============================================================================ +13:16:22 Calculate Source COMM Id = 4 +13:16:22 ============================================================================ +13:16:22 + + +waiting on router queue for slot.... +13:16:29 ============================================================================ +13:16:29 Slot Id : <275> +13:16:29 Transaction Type : REQUEST +13:16:29 Received From : +13:16:29 ============================================================================ +13:16:29 FNo. Len. Field Value +13:16:29 ============================================================================ +13:16:29 [ 1] [ 4] [0200] +13:16:29 [ 2] [ 16] [6213544001886859] +13:16:29 [ 3] [ 6] [010000] +13:16:29 [ 4] [ 12] [000010000000] +13:16:29 [ 7] [ 10] [0320131420] +13:16:29 [ 11] [ 6] [946050] +13:16:29 [ 12] [ 6] [131420] +13:16:29 [ 13] [ 4] [0320] +13:16:29 [ 15] [ 4] [0320] +13:16:29 [ 18] [ 4] [6011] +13:16:29 [ 19] [ 3] [418] +13:16:29 [ 22] [ 3] [021] +13:16:29 [ 25] [ 2] [01] +13:16:29 [ 28] [ 9] [D00002000] +13:16:29 [ 32] [ 6] [668899] +13:16:29 [ 35] [ 32] [6213544001886859=491212018685509] +13:16:29 [ 37] [ 12] [507902093324] +13:16:29 [ 41] [ 8] [03020021] +13:16:29 [ 42] [ 15] [APT ] +13:16:29 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +13:16:29 [ 49] [ 3] [418] +13:16:29 [ 52] [ 16] [611DDF4E12FCAB44] +13:16:29 ============================================================================ +13:16:29 + + +waiting on router queue for slot.... +13:16:29 Sending to : +13:16:29 ============================================================================ +13:16:29 Sending to : +13:16:29 ============================================================================ +13:16:30 ============================================================================ +13:16:30 Slot Id : <275> +13:16:30 Transaction Type : REQUEST +13:16:30 Received From : +13:16:30 ============================================================================ +13:16:30 FNo. Len. Field Value +13:16:30 ============================================================================ +13:16:30 [ 1] [ 4] [0200] +13:16:30 [ 2] [ 16] [6213544001886859] +13:16:30 [ 3] [ 6] [010000] +13:16:30 [ 4] [ 12] [000010000000] +13:16:30 [ 7] [ 10] [0320131420] +13:16:30 [ 11] [ 6] [946050] +13:16:30 [ 12] [ 6] [131420] +13:16:30 [ 13] [ 4] [0320] +13:16:30 [ 15] [ 4] [0320] +13:16:30 [ 18] [ 4] [6011] +13:16:30 [ 19] [ 3] [418] +13:16:30 [ 22] [ 3] [021] +13:16:30 [ 25] [ 2] [01] +13:16:30 [ 28] [ 9] [D00002000] +13:16:30 [ 32] [ 6] [668899] +13:16:30 [ 35] [ 32] [6213544001886859=491212018685509] +13:16:30 [ 37] [ 12] [507902093324] +13:16:30 [ 41] [ 8] [03020021] +13:16:30 [ 42] [ 15] [APT ] +13:16:30 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +13:16:30 [ 49] [ 3] [418] +13:16:30 [ 52] [ 16] [611DDF4E12FCAB44] +13:16:30 ============================================================================ +13:16:30 + + +waiting on router queue for slot.... +13:16:30 Sending to : +13:16:30 ============================================================================ +13:16:30 ============================================================================ +13:16:30 Slot Id : <275> +13:16:30 Transaction Type : REQUEST +13:16:30 Received From : +13:16:30 ============================================================================ +13:16:30 FNo. Len. Field Value +13:16:30 ============================================================================ +13:16:30 [ 1] [ 4] [0200] +13:16:30 [ 2] [ 16] [6213544001886859] +13:16:30 [ 3] [ 6] [010000] +13:16:30 [ 4] [ 12] [000010000000] +13:16:30 [ 7] [ 10] [0320131420] +13:16:30 [ 11] [ 6] [946050] +13:16:30 [ 12] [ 6] [131420] +13:16:30 [ 13] [ 4] [0320] +13:16:30 [ 15] [ 4] [0320] +13:16:30 [ 18] [ 4] [6011] +13:16:30 [ 19] [ 3] [418] +13:16:30 [ 22] [ 3] [021] +13:16:30 [ 25] [ 2] [01] +13:16:30 [ 28] [ 9] [D00002000] +13:16:30 [ 32] [ 6] [668899] +13:16:30 [ 35] [ 32] [6213544001886859=491212018685509] +13:16:30 [ 37] [ 12] [507902093324] +13:16:30 [ 41] [ 8] [03020021] +13:16:30 [ 42] [ 15] [APT ] +13:16:30 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +13:16:30 [ 49] [ 3] [418] +13:16:30 [ 52] [ 16] [6DB5E430FECDDBBB] +13:16:30 ============================================================================ +13:16:30 + + +waiting on router queue for slot.... +13:16:30 Sending to : <0> +13:16:30 ============================================================================ +13:16:31 ============================================================================ +13:16:31 Slot Id : <275> +13:16:31 Transaction Type : RESPONSE +13:16:31 Received From : +13:16:31 ============================================================================ +13:16:31 FNo. Len. Field Value +13:16:31 ============================================================================ +13:16:31 [ 1] [ 4] [0210] +13:16:31 [ 2] [ 16] [6213544001886859] +13:16:31 [ 3] [ 6] [010000] +13:16:31 [ 4] [ 12] [000010000000] +13:16:31 [ 7] [ 10] [0320131420] +13:16:31 [ 11] [ 6] [946050] +13:16:31 [ 12] [ 6] [131420] +13:16:31 [ 13] [ 4] [0320] +13:16:31 [ 15] [ 4] [0320] +13:16:31 [ 18] [ 4] [6011] +13:16:31 [ 19] [ 3] [418] +13:16:31 [ 32] [ 6] [668899] +13:16:31 [ 35] [ 32] [6213544001886859=491212018685509] +13:16:31 [ 37] [ 12] [507902093324] +13:16:31 [ 38] [ 6] [692649] +13:16:31 [ 39] [ 2] [00] +13:16:31 [ 41] [ 8] [03020021] +13:16:31 [ 49] [ 3] [418] +13:16:31 [ 54] [ 40] [0001418C0000055407340002418C000005540734] +13:16:31 ============================================================================ +13:16:31 Sending to : +13:16:31 ============================================================================ +13:16:31 + + +waiting on router queue for slot.... +13:16:32 ============================================================================ +13:16:32 Slot Id : <275> +13:16:32 Transaction Type : RESPONSE +13:16:32 Received From : +13:16:32 ============================================================================ +13:16:32 FNo. Len. Field Value +13:16:32 ============================================================================ +13:16:32 [ 1] [ 4] [0210] +13:16:32 [ 2] [ 16] [6213544001886859] +13:16:32 [ 3] [ 6] [010000] +13:16:32 [ 4] [ 12] [000010000000] +13:16:32 [ 7] [ 10] [0320131420] +13:16:32 [ 11] [ 6] [946050] +13:16:32 [ 12] [ 6] [131420] +13:16:32 [ 13] [ 4] [0320] +13:16:32 [ 15] [ 4] [0320] +13:16:32 [ 18] [ 4] [6011] +13:16:32 [ 19] [ 3] [418] +13:16:32 [ 32] [ 6] [668899] +13:16:32 [ 35] [ 32] [6213544001886859=491212018685509] +13:16:32 [ 37] [ 12] [507902093324] +13:16:32 [ 38] [ 6] [692649] +13:16:32 [ 39] [ 2] [00] +13:16:32 [ 41] [ 8] [03020021] +13:16:32 [ 49] [ 3] [418] +13:16:32 [ 54] [ 40] [0001418C0000055407340002418C000005540734] +13:16:32 ============================================================================ +13:16:32 Calculate Source COMM Id = 4 +13:16:32 ============================================================================ +13:16:32 + + +waiting on router queue for slot.... +13:16:34 ============================================================================ +13:16:34 Slot Id : <240> +13:16:34 Transaction Type : REQUEST +13:16:34 Received From : +13:16:34 ============================================================================ +13:16:34 FNo. Len. Field Value +13:16:34 ============================================================================ +13:16:34 [ 1] [ 4] [0800] +13:16:34 [ 7] [ 10] [0320061542] +13:16:34 [ 11] [ 6] [156509] +13:16:34 [ 70] [ 3] [301] +13:16:34 ============================================================================ +13:16:34 + + +waiting on router queue for slot.... +13:16:34 Sending to : +13:16:34 ============================================================================ +13:16:34 ============================================================================ +13:16:34 Slot Id : <240> +13:16:34 Transaction Type : RESPONSE +13:16:34 Received From : +13:16:34 ============================================================================ +13:16:34 FNo. Len. Field Value +13:16:34 ============================================================================ +13:16:34 [ 1] [ 4] [0810] +13:16:34 [ 7] [ 10] [0320061542] +13:16:34 [ 11] [ 6] [156509] +13:16:34 [ 39] [ 2] [00] +13:16:34 [ 70] [ 3] [301] +13:16:34 ============================================================================ +13:16:34 Calculate Source COMM Id = 2 +13:16:34 ============================================================================ +13:16:34 + + +waiting on router queue for slot.... +13:16:45 ============================================================================ +13:16:45 Slot Id : <228> +13:16:45 Transaction Type : REQUEST +13:16:45 Received From : +13:16:45 ============================================================================ +13:16:45 FNo. Len. Field Value +13:16:45 ============================================================================ +13:16:45 [ 1] [ 4] [0800] +13:16:45 [ 7] [ 10] [0320061553] +13:16:45 [ 11] [ 6] [156510] +13:16:45 [ 70] [ 3] [301] +13:16:45 ============================================================================ +13:16:45 + + +waiting on router queue for slot.... +13:16:45 Sending to : +13:16:45 ============================================================================ +13:16:45 ============================================================================ +13:16:45 Slot Id : <228> +13:16:45 Transaction Type : RESPONSE +13:16:45 Received From : +13:16:45 ============================================================================ +13:16:45 FNo. Len. Field Value +13:16:45 ============================================================================ +13:16:45 [ 1] [ 4] [0810] +13:16:45 [ 7] [ 10] [0320061553] +13:16:45 [ 11] [ 6] [156510] +13:16:45 [ 39] [ 2] [00] +13:16:45 [ 70] [ 3] [301] +13:16:45 ============================================================================ +13:16:45 Calculate Source COMM Id = 2 +13:16:45 ============================================================================ +13:16:45 + + +waiting on router queue for slot.... +13:17:02 ============================================================================ +13:17:02 Slot Id : <256> +13:17:02 Transaction Type : REQUEST +13:17:02 Received From : +13:17:02 ============================================================================ +13:17:02 FNo. Len. Field Value +13:17:02 ============================================================================ +13:17:02 [ 1] [ 4] [0800] +13:17:02 [ 7] [ 10] [0320061609] +13:17:02 [ 11] [ 6] [156511] +13:17:02 [ 70] [ 3] [301] +13:17:02 ============================================================================ +13:17:02 + + +waiting on router queue for slot.... +13:17:02 Sending to : +13:17:02 ============================================================================ +13:17:02 ============================================================================ +13:17:02 Slot Id : <256> +13:17:02 Transaction Type : RESPONSE +13:17:02 Received From : +13:17:02 ============================================================================ +13:17:02 FNo. Len. Field Value +13:17:02 ============================================================================ +13:17:02 [ 1] [ 4] [0810] +13:17:02 [ 7] [ 10] [0320061609] +13:17:02 [ 11] [ 6] [156511] +13:17:02 [ 39] [ 2] [00] +13:17:02 [ 70] [ 3] [301] +13:17:02 ============================================================================ +13:17:02 Calculate Source COMM Id = 2 +13:17:02 ============================================================================ +13:17:02 + + +waiting on router queue for slot.... +13:17:13 ============================================================================ +13:17:13 Slot Id : <197> +13:17:13 Transaction Type : REQUEST +13:17:13 Received From : +13:17:13 ============================================================================ +13:17:13 FNo. Len. Field Value +13:17:13 ============================================================================ +13:17:13 [ 1] [ 4] [0800] +13:17:13 [ 7] [ 10] [0320061620] +13:17:13 [ 11] [ 6] [156512] +13:17:13 [ 70] [ 3] [301] +13:17:13 ============================================================================ +13:17:13 + + +waiting on router queue for slot.... +13:17:13 Sending to : +13:17:13 ============================================================================ +13:17:13 ============================================================================ +13:17:13 Slot Id : <197> +13:17:13 Transaction Type : RESPONSE +13:17:13 Received From : +13:17:13 ============================================================================ +13:17:13 FNo. Len. Field Value +13:17:13 ============================================================================ +13:17:13 [ 1] [ 4] [0810] +13:17:13 [ 7] [ 10] [0320061620] +13:17:13 [ 11] [ 6] [156512] +13:17:13 [ 39] [ 2] [00] +13:17:13 [ 70] [ 3] [301] +13:17:13 ============================================================================ +13:17:13 Calculate Source COMM Id = 2 +13:17:13 ============================================================================ +13:17:13 + + +waiting on router queue for slot.... +13:17:20 ============================================================================ +13:17:20 Slot Id : <265> +13:17:20 Transaction Type : REQUEST +13:17:20 Received From : +13:17:20 ============================================================================ +13:17:20 FNo. Len. Field Value +13:17:20 ============================================================================ +13:17:20 [ 1] [ 4] [0800] +13:17:20 [ 2] [ 5] [02531] +13:17:20 [ 3] [ 6] [579138] +13:17:20 [ 7] [ 10] [0320061720] +13:17:20 [ 11] [ 6] [807183] +13:17:20 [ 15] [ 10] [0320061720] +13:17:20 [ 37] [ 11] [57913807183] +13:17:20 [ 70] [ 3] [001] +13:17:20 ============================================================================ +13:17:20 + + +waiting on router queue for slot.... +13:17:20 ============================================================================ +13:17:20 Slot Id : <265> +13:17:20 Transaction Type : RESPONSE +13:17:20 Received From : +13:17:20 ============================================================================ +13:17:20 FNo. Len. Field Value +13:17:20 ============================================================================ +13:17:20 [ 1] [ 4] [0810] +13:17:20 [ 7] [ 10] [0320061720] +13:17:20 [ 11] [ 6] [807183] +13:17:20 [ 15] [ 4] [0320] +13:17:20 [ 37] [ 12] [57913807183] +13:17:20 [ 39] [ 2] [00] +13:17:20 [ 70] [ 3] [001] +13:17:20 ============================================================================ +13:17:20 Sending to : +13:17:20 ============================================================================ +13:17:20 + + +waiting on router queue for slot.... +13:17:24 ============================================================================ +13:17:24 Slot Id : <218> +13:17:24 Transaction Type : REQUEST +13:17:24 Received From : +13:17:24 ============================================================================ +13:17:24 FNo. Len. Field Value +13:17:24 ============================================================================ +13:17:24 [ 1] [ 4] [0800] +13:17:24 [ 7] [ 10] [0320061631] +13:17:24 [ 11] [ 6] [156513] +13:17:24 [ 70] [ 3] [301] +13:17:24 ============================================================================ +13:17:24 + + +waiting on router queue for slot.... +13:17:24 Sending to : +13:17:24 ============================================================================ +13:17:24 ============================================================================ +13:17:24 Slot Id : <218> +13:17:24 Transaction Type : RESPONSE +13:17:24 Received From : +13:17:24 ============================================================================ +13:17:24 FNo. Len. Field Value +13:17:24 ============================================================================ +13:17:24 [ 1] [ 4] [0810] +13:17:24 [ 7] [ 10] [0320061631] +13:17:24 [ 11] [ 6] [156513] +13:17:24 [ 39] [ 2] [00] +13:17:24 [ 70] [ 3] [301] +13:17:24 ============================================================================ +13:17:24 Calculate Source COMM Id = 2 +13:17:24 ============================================================================ +13:17:24 + + +waiting on router queue for slot.... +13:17:29 ============================================================================ +13:17:29 Slot Id : <274> +13:17:29 Transaction Type : REQUEST +13:17:29 Received From : +13:17:29 ============================================================================ +13:17:29 FNo. Len. Field Value +13:17:29 ============================================================================ +13:17:29 [ 1] [ 4] [0200] +13:17:29 [ 2] [ 16] [6213541000457278] +13:17:29 [ 3] [ 6] [011000] +13:17:29 [ 4] [ 12] [000100000000] +13:17:29 [ 7] [ 10] [0320132516] +13:17:29 [ 11] [ 6] [251229] +13:17:29 [ 12] [ 6] [132516] +13:17:29 [ 13] [ 4] [0320] +13:17:29 [ 14] [ 4] [4912] +13:17:29 [ 15] [ 4] [0320] +13:17:29 [ 18] [ 4] [6011] +13:17:29 [ 22] [ 3] [900] +13:17:29 [ 25] [ 2] [02] +13:17:29 [ 28] [ 9] [D00002000] +13:17:29 [ 32] [ 6] [220699] +13:17:29 [ 35] [ 32] [6213541000457278=491212015727049] +13:17:29 [ 37] [ 12] [507900336208] +13:17:29 [ 41] [ 8] [01001900] +13:17:29 [ 42] [ 15] [APTRA ] +13:17:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:17:29 [ 49] [ 3] [418] +13:17:29 [ 52] [ 16] [76525580251D9D81] +13:17:29 ============================================================================ +13:17:29 + + +waiting on router queue for slot.... +13:17:29 Sending to : +13:17:29 ============================================================================ +13:17:29 Sending to : +13:17:29 ============================================================================ +13:17:29 ============================================================================ +13:17:29 Slot Id : <274> +13:17:29 Transaction Type : REQUEST +13:17:29 Received From : +13:17:29 ============================================================================ +13:17:29 FNo. Len. Field Value +13:17:29 ============================================================================ +13:17:29 [ 1] [ 4] [0200] +13:17:29 [ 2] [ 16] [6213541000457278] +13:17:29 [ 3] [ 6] [011000] +13:17:29 [ 4] [ 12] [000100000000] +13:17:29 [ 7] [ 10] [0320132516] +13:17:29 [ 11] [ 6] [251229] +13:17:29 [ 12] [ 6] [132516] +13:17:29 [ 13] [ 4] [0320] +13:17:29 [ 14] [ 4] [4912] +13:17:29 [ 15] [ 4] [0320] +13:17:29 [ 18] [ 4] [6011] +13:17:29 [ 22] [ 3] [900] +13:17:29 [ 25] [ 2] [02] +13:17:29 [ 28] [ 9] [D00002000] +13:17:29 [ 32] [ 6] [220699] +13:17:29 [ 35] [ 32] [6213541000457278=491212015727049] +13:17:29 [ 37] [ 12] [507900336208] +13:17:29 [ 41] [ 8] [01001900] +13:17:29 [ 42] [ 15] [APTRA ] +13:17:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:17:29 [ 49] [ 3] [418] +13:17:29 [ 52] [ 16] [76525580251D9D81] +13:17:29 ============================================================================ +13:17:29 + + +waiting on router queue for slot.... +13:17:29 Sending to : +13:17:29 ============================================================================ +13:17:29 ============================================================================ +13:17:29 Slot Id : <274> +13:17:29 Transaction Type : REQUEST +13:17:29 Received From : +13:17:29 ============================================================================ +13:17:29 FNo. Len. Field Value +13:17:29 ============================================================================ +13:17:29 [ 1] [ 4] [0200] +13:17:29 [ 2] [ 16] [6213541000457278] +13:17:29 [ 3] [ 6] [011000] +13:17:29 [ 4] [ 12] [000100000000] +13:17:29 [ 7] [ 10] [0320132516] +13:17:29 [ 11] [ 6] [251229] +13:17:29 [ 12] [ 6] [132516] +13:17:29 [ 13] [ 4] [0320] +13:17:29 [ 14] [ 4] [4912] +13:17:29 [ 15] [ 4] [0320] +13:17:29 [ 18] [ 4] [6011] +13:17:29 [ 22] [ 3] [900] +13:17:29 [ 25] [ 2] [02] +13:17:29 [ 28] [ 9] [D00002000] +13:17:29 [ 32] [ 6] [220699] +13:17:29 [ 35] [ 32] [6213541000457278=491212015727049] +13:17:29 [ 37] [ 12] [507900336208] +13:17:29 [ 41] [ 8] [01001900] +13:17:29 [ 42] [ 15] [APTRA ] +13:17:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:17:29 [ 49] [ 3] [418] +13:17:29 [ 52] [ 16] [340C3748C978291D] +13:17:29 ============================================================================ +13:17:29 + + +waiting on router queue for slot.... +13:17:29 Sending to : <0> +13:17:29 ============================================================================ +13:17:30 ============================================================================ +13:17:30 Slot Id : <274> +13:17:30 Transaction Type : RESPONSE +13:17:30 Received From : +13:17:30 ============================================================================ +13:17:30 FNo. Len. Field Value +13:17:30 ============================================================================ +13:17:30 [ 1] [ 4] [0210] +13:17:30 [ 2] [ 16] [6213541000457278] +13:17:30 [ 3] [ 6] [011000] +13:17:30 [ 4] [ 12] [000100000000] +13:17:30 [ 7] [ 10] [0320132516] +13:17:30 [ 11] [ 6] [251229] +13:17:30 [ 12] [ 6] [132516] +13:17:30 [ 13] [ 4] [0320] +13:17:30 [ 15] [ 4] [0320] +13:17:30 [ 18] [ 4] [6011] +13:17:30 [ 32] [ 6] [220699] +13:17:30 [ 35] [ 32] [6213541000457278=491212015727049] +13:17:30 [ 37] [ 12] [507900336208] +13:17:30 [ 38] [ 6] [973779] +13:17:30 [ 39] [ 2] [00] +13:17:30 [ 41] [ 8] [01001900] +13:17:30 [ 49] [ 3] [418] +13:17:30 [ 54] [ 40] [1001418C0043029812781002418C004302981278] +13:17:30 ============================================================================ +13:17:30 Sending to : +13:17:30 ============================================================================ +13:17:30 + + +waiting on router queue for slot.... +13:17:32 ============================================================================ +13:17:32 Slot Id : <274> +13:17:32 Transaction Type : RESPONSE +13:17:32 Received From : +13:17:32 ============================================================================ +13:17:32 FNo. Len. Field Value +13:17:32 ============================================================================ +13:17:32 [ 1] [ 4] [0210] +13:17:32 [ 2] [ 16] [6213541000457278] +13:17:32 [ 3] [ 6] [011000] +13:17:32 [ 4] [ 12] [000100000000] +13:17:32 [ 7] [ 10] [0320132516] +13:17:32 [ 11] [ 6] [251229] +13:17:32 [ 12] [ 6] [132516] +13:17:32 [ 13] [ 4] [0320] +13:17:32 [ 15] [ 4] [0320] +13:17:32 [ 18] [ 4] [6011] +13:17:32 [ 32] [ 6] [220699] +13:17:32 [ 35] [ 32] [6213541000457278=491212015727049] +13:17:32 [ 37] [ 12] [507900336208] +13:17:32 [ 38] [ 6] [973779] +13:17:32 [ 39] [ 2] [00] +13:17:32 [ 41] [ 8] [01001900] +13:17:32 [ 49] [ 3] [418] +13:17:32 [ 54] [ 40] [1001418C0043029812781002418C004302981278] +13:17:32 ============================================================================ +13:17:32 Calculate Source COMM Id = 1 +13:17:32 ============================================================================ +13:17:32 + + +waiting on router queue for slot.... +13:17:35 ============================================================================ +13:17:35 Slot Id : <247> +13:17:35 Transaction Type : REQUEST +13:17:35 Received From : +13:17:35 ============================================================================ +13:17:35 FNo. Len. Field Value +13:17:35 ============================================================================ +13:17:35 [ 1] [ 4] [0800] +13:17:35 [ 7] [ 10] [0320061642] +13:17:35 [ 11] [ 6] [156514] +13:17:35 [ 70] [ 3] [301] +13:17:35 ============================================================================ +13:17:35 + + +waiting on router queue for slot.... +13:17:35 Sending to : +13:17:35 ============================================================================ +13:17:35 ============================================================================ +13:17:35 Slot Id : <247> +13:17:35 Transaction Type : RESPONSE +13:17:35 Received From : +13:17:35 ============================================================================ +13:17:35 FNo. Len. Field Value +13:17:35 ============================================================================ +13:17:35 [ 1] [ 4] [0810] +13:17:35 [ 7] [ 10] [0320061642] +13:17:35 [ 11] [ 6] [156514] +13:17:35 [ 39] [ 2] [00] +13:17:35 [ 70] [ 3] [301] +13:17:35 ============================================================================ +13:17:35 Calculate Source COMM Id = 2 +13:17:35 ============================================================================ +13:17:35 + + +waiting on router queue for slot.... +13:17:50 ============================================================================ +13:17:50 Slot Id : <279> +13:17:50 Transaction Type : REQUEST +13:17:50 Received From : +13:17:50 ============================================================================ +13:17:50 FNo. Len. Field Value +13:17:50 ============================================================================ +13:17:50 [ 1] [ 4] [0800] +13:17:50 [ 7] [ 10] [0320061657] +13:17:50 [ 11] [ 6] [156515] +13:17:50 [ 70] [ 3] [301] +13:17:50 ============================================================================ +13:17:50 + + +waiting on router queue for slot.... +13:17:50 Sending to : +13:17:50 ============================================================================ +13:17:50 ============================================================================ +13:17:50 Slot Id : <279> +13:17:50 Transaction Type : RESPONSE +13:17:50 Received From : +13:17:50 ============================================================================ +13:17:50 FNo. Len. Field Value +13:17:50 ============================================================================ +13:17:50 [ 1] [ 4] [0810] +13:17:50 [ 7] [ 10] [0320061657] +13:17:50 [ 11] [ 6] [156515] +13:17:50 [ 39] [ 2] [00] +13:17:50 [ 70] [ 3] [301] +13:17:50 ============================================================================ +13:17:50 Calculate Source COMM Id = 2 +13:17:50 ============================================================================ +13:17:50 + + +waiting on router queue for slot.... +13:18:06 ============================================================================ +13:18:06 Slot Id : <231> +13:18:06 Transaction Type : REQUEST +13:18:06 Received From : +13:18:06 ============================================================================ +13:18:06 FNo. Len. Field Value +13:18:06 ============================================================================ +13:18:06 [ 1] [ 4] [0800] +13:18:06 [ 7] [ 10] [0320061714] +13:18:06 [ 11] [ 6] [156516] +13:18:06 [ 70] [ 3] [301] +13:18:06 ============================================================================ +13:18:06 + + +waiting on router queue for slot.... +13:18:06 Sending to : +13:18:06 ============================================================================ +13:18:06 ============================================================================ +13:18:06 Slot Id : <231> +13:18:06 Transaction Type : RESPONSE +13:18:06 Received From : +13:18:06 ============================================================================ +13:18:06 FNo. Len. Field Value +13:18:06 ============================================================================ +13:18:06 [ 1] [ 4] [0810] +13:18:06 [ 7] [ 10] [0320061714] +13:18:06 [ 11] [ 6] [156516] +13:18:06 [ 39] [ 2] [00] +13:18:06 [ 70] [ 3] [301] +13:18:06 ============================================================================ +13:18:06 Calculate Source COMM Id = 2 +13:18:06 ============================================================================ +13:18:06 + + +waiting on router queue for slot.... +13:18:16 ============================================================================ +13:18:16 Slot Id : <264> +13:18:16 Transaction Type : REQUEST +13:18:16 Received From : +13:18:16 ============================================================================ +13:18:16 FNo. Len. Field Value +13:18:16 ============================================================================ +13:18:16 [ 1] [ 4] [0200] +13:18:16 [ 2] [ 16] [6688990101320305] +13:18:16 [ 3] [ 6] [302000] +13:18:16 [ 4] [ 12] [000000000000] +13:18:16 [ 7] [ 10] [0320131812] +13:18:16 [ 11] [ 6] [755239] +13:18:16 [ 12] [ 6] [131812] +13:18:16 [ 13] [ 4] [0320] +13:18:16 [ 15] [ 4] [0320] +13:18:16 [ 18] [ 4] [6011] +13:18:16 [ 22] [ 3] [900] +13:18:16 [ 25] [ 2] [02] +13:18:16 [ 28] [ 9] [D00000000] +13:18:16 [ 32] [ 6] [621354] +13:18:16 [ 35] [ 37] [6688990101320305=42021231030553800000] +13:18:16 [ 37] [ 12] [507903032166] +13:18:16 [ 41] [ 8] [12002600] +13:18:16 [ 42] [ 15] [NATIVE ] +13:18:16 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +13:18:16 [ 49] [ 3] [418] +13:18:16 [ 52] [ 16] [FB6683BF2EE05899] +13:18:16 ============================================================================ +13:18:16 + + +waiting on router queue for slot.... +13:18:16 Sending to : +13:18:16 ============================================================================ +13:18:16 Sending to : +13:18:16 ============================================================================ +13:18:16 ============================================================================ +13:18:16 Slot Id : <264> +13:18:16 Transaction Type : REQUEST +13:18:16 Received From : +13:18:16 ============================================================================ +13:18:16 FNo. Len. Field Value +13:18:16 ============================================================================ +13:18:16 [ 1] [ 4] [0200] +13:18:16 [ 2] [ 16] [6688990101320305] +13:18:16 [ 3] [ 6] [302000] +13:18:16 [ 4] [ 12] [000000000000] +13:18:16 [ 7] [ 10] [0320131812] +13:18:16 [ 11] [ 6] [755239] +13:18:16 [ 12] [ 6] [131812] +13:18:16 [ 13] [ 4] [0320] +13:18:16 [ 15] [ 4] [0320] +13:18:16 [ 18] [ 4] [6011] +13:18:16 [ 22] [ 3] [900] +13:18:16 [ 25] [ 2] [02] +13:18:16 [ 28] [ 9] [D00000000] +13:18:16 [ 32] [ 6] [621354] +13:18:16 [ 35] [ 37] [6688990101320305=42021231030553800000] +13:18:16 [ 37] [ 12] [507903032166] +13:18:16 [ 41] [ 8] [12002600] +13:18:16 [ 42] [ 15] [NATIVE ] +13:18:16 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +13:18:16 [ 49] [ 3] [418] +13:18:16 [ 52] [ 16] [FB6683BF2EE05899] +13:18:16 ============================================================================ +13:18:16 + + +waiting on router queue for slot.... +13:18:16 Sending to : +13:18:16 ============================================================================ +13:18:16 ============================================================================ +13:18:16 Slot Id : <264> +13:18:16 Transaction Type : REQUEST +13:18:16 Received From : +13:18:16 ============================================================================ +13:18:16 FNo. Len. Field Value +13:18:16 ============================================================================ +13:18:16 [ 1] [ 4] [0200] +13:18:16 [ 2] [ 16] [6688990101320305] +13:18:16 [ 3] [ 6] [302000] +13:18:16 [ 4] [ 12] [000000000000] +13:18:16 [ 7] [ 10] [0320131812] +13:18:16 [ 11] [ 6] [755239] +13:18:16 [ 12] [ 6] [131812] +13:18:16 [ 13] [ 4] [0320] +13:18:16 [ 15] [ 4] [0320] +13:18:16 [ 18] [ 4] [6011] +13:18:16 [ 22] [ 3] [900] +13:18:16 [ 25] [ 2] [02] +13:18:16 [ 28] [ 9] [D00000000] +13:18:16 [ 32] [ 6] [621354] +13:18:16 [ 35] [ 37] [6688990101320305=42021231030553800000] +13:18:16 [ 37] [ 12] [507903032166] +13:18:16 [ 41] [ 8] [12002600] +13:18:16 [ 42] [ 15] [NATIVE ] +13:18:16 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +13:18:16 [ 49] [ 3] [418] +13:18:16 [ 52] [ 16] [953A5FC32468EFC4] +13:18:16 ============================================================================ +13:18:16 + + +waiting on router queue for slot.... +13:18:16 Sending to : <4> +13:18:16 ============================================================================ +13:18:17 ============================================================================ +13:18:17 Slot Id : <264> +13:18:17 Transaction Type : RESPONSE +13:18:17 Received From : +13:18:17 ============================================================================ +13:18:17 FNo. Len. Field Value +13:18:17 ============================================================================ +13:18:17 [ 1] [ 4] [0210] +13:18:17 [ 2] [ 16] [6688990101320305] +13:18:17 [ 3] [ 6] [302000] +13:18:17 [ 4] [ 12] [000000000000] +13:18:17 [ 11] [ 6] [755239] +13:18:17 [ 12] [ 6] [131812] +13:18:17 [ 15] [ 4] [0320] +13:18:17 [ 18] [ 4] [6011] +13:18:17 [ 32] [ 6] [621354] +13:18:17 [ 35] [ 37] [6688990101320305=42021231030553800000] +13:18:17 [ 37] [ 12] [507903032166] +13:18:17 [ 38] [ 6] [300325] +13:18:17 [ 39] [ 2] [00] +13:18:17 [ 41] [ 8] [12002600] +13:18:17 [ 49] [ 3] [418] +13:18:17 [ 54] [ 20] [2002418C000003661710] +13:18:17 ============================================================================ +13:18:17 Sending to : +13:18:17 ============================================================================ +13:18:17 + + +waiting on router queue for slot.... +13:18:19 ============================================================================ +13:18:19 Slot Id : <264> +13:18:19 Transaction Type : RESPONSE +13:18:19 Received From : +13:18:19 ============================================================================ +13:18:19 FNo. Len. Field Value +13:18:19 ============================================================================ +13:18:19 [ 1] [ 4] [0210] +13:18:19 [ 2] [ 16] [6688990101320305] +13:18:19 [ 3] [ 6] [302000] +13:18:19 [ 4] [ 12] [000000000000] +13:18:19 [ 11] [ 6] [755239] +13:18:19 [ 12] [ 6] [131812] +13:18:19 [ 15] [ 4] [0320] +13:18:19 [ 18] [ 4] [6011] +13:18:19 [ 32] [ 6] [621354] +13:18:19 [ 35] [ 37] [6688990101320305=42021231030553800000] +13:18:19 [ 37] [ 12] [507903032166] +13:18:19 [ 38] [ 6] [300325] +13:18:19 [ 39] [ 2] [00] +13:18:19 [ 41] [ 8] [12002600] +13:18:19 [ 49] [ 3] [418] +13:18:19 [ 54] [ 20] [2002418C000003661710] +13:18:19 ============================================================================ +13:18:19 Calculate Source COMM Id = 0 +13:18:19 ============================================================================ +13:18:19 + + +waiting on router queue for slot.... +13:18:21 ============================================================================ +13:18:21 Slot Id : <273> +13:18:21 Transaction Type : REQUEST +13:18:21 Received From : +13:18:21 ============================================================================ +13:18:21 FNo. Len. Field Value +13:18:21 ============================================================================ +13:18:21 [ 1] [ 4] [0800] +13:18:21 [ 7] [ 10] [0320061729] +13:18:21 [ 11] [ 6] [156517] +13:18:21 [ 70] [ 3] [301] +13:18:21 ============================================================================ +13:18:21 + + +waiting on router queue for slot.... +13:18:21 Sending to : +13:18:21 ============================================================================ +13:18:21 ============================================================================ +13:18:21 Slot Id : <273> +13:18:21 Transaction Type : RESPONSE +13:18:21 Received From : +13:18:21 ============================================================================ +13:18:21 FNo. Len. Field Value +13:18:21 ============================================================================ +13:18:21 [ 1] [ 4] [0810] +13:18:21 [ 7] [ 10] [0320061729] +13:18:21 [ 11] [ 6] [156517] +13:18:21 [ 39] [ 2] [00] +13:18:21 [ 70] [ 3] [301] +13:18:21 ============================================================================ +13:18:21 Calculate Source COMM Id = 2 +13:18:21 ============================================================================ +13:18:21 + + +waiting on router queue for slot.... +13:18:22 ============================================================================ +13:18:22 Slot Id : <220> +13:18:22 Transaction Type : REQUEST +13:18:22 Received From : +13:18:22 ============================================================================ +13:18:22 FNo. Len. Field Value +13:18:22 ============================================================================ +13:18:22 [ 1] [ 4] [0800] +13:18:22 [ 2] [ 5] [02531] +13:18:22 [ 3] [ 6] [579138] +13:18:22 [ 7] [ 10] [0320061822] +13:18:22 [ 11] [ 6] [807184] +13:18:22 [ 15] [ 10] [0320061822] +13:18:22 [ 37] [ 11] [57913807184] +13:18:22 [ 70] [ 3] [001] +13:18:22 ============================================================================ +13:18:22 + + +waiting on router queue for slot.... +13:18:22 ============================================================================ +13:18:22 Slot Id : <220> +13:18:22 Transaction Type : RESPONSE +13:18:22 Received From : +13:18:22 ============================================================================ +13:18:22 FNo. Len. Field Value +13:18:22 ============================================================================ +13:18:22 [ 1] [ 4] [0810] +13:18:22 [ 7] [ 10] [0320061822] +13:18:22 [ 11] [ 6] [807184] +13:18:22 [ 15] [ 4] [0320] +13:18:22 [ 37] [ 12] [57913807184] +13:18:22 [ 39] [ 2] [00] +13:18:22 [ 70] [ 3] [001] +13:18:22 ============================================================================ +13:18:22 Sending to : +13:18:22 ============================================================================ +13:18:22 + + +waiting on router queue for slot.... +13:18:23 ============================================================================ +13:18:23 Slot Id : <254> +13:18:23 Transaction Type : REQUEST +13:18:23 Received From : +13:18:23 ============================================================================ +13:18:23 FNo. Len. Field Value +13:18:23 ============================================================================ +13:18:23 [ 1] [ 4] [0200] +13:18:23 [ 2] [ 16] [6213544001066643] +13:18:23 [ 3] [ 6] [012000] +13:18:23 [ 4] [ 12] [000020000000] +13:18:23 [ 7] [ 10] [0320061730] +13:18:23 [ 11] [ 6] [269262] +13:18:23 [ 12] [ 6] [131730] +13:18:23 [ 13] [ 4] [0320] +13:18:23 [ 14] [ 4] [4912] +13:18:23 [ 15] [ 4] [0320] +13:18:23 [ 18] [ 4] [6011] +13:18:23 [ 19] [ 3] [418] +13:18:23 [ 22] [ 3] [021] +13:18:23 [ 25] [ 2] [01] +13:18:23 [ 28] [ 9] [D00002000] +13:18:23 [ 32] [ 6] [180893] +13:18:23 [ 35] [ 32] [6213544001066643=491212016664889] +13:18:23 [ 37] [ 12] [507906269262] +13:18:23 [ 41] [ 8] [0401XSBR] +13:18:23 [ 42] [ 15] [999999 ] +13:18:23 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +13:18:23 [ 49] [ 3] [418] +13:18:23 [ 52] [ 16] [04E54315D4D2250A] +13:18:23 ============================================================================ +13:18:23 + + +waiting on router queue for slot.... +13:18:23 Sending to : +13:18:23 ============================================================================ +13:18:23 Sending to : +13:18:23 ============================================================================ +13:18:23 ============================================================================ +13:18:23 Slot Id : <254> +13:18:23 Transaction Type : REQUEST +13:18:23 Received From : +13:18:23 ============================================================================ +13:18:23 FNo. Len. Field Value +13:18:23 ============================================================================ +13:18:23 [ 1] [ 4] [0200] +13:18:23 [ 2] [ 16] [6213544001066643] +13:18:23 [ 3] [ 6] [012000] +13:18:23 [ 4] [ 12] [000020000000] +13:18:23 [ 7] [ 10] [0320061730] +13:18:23 [ 11] [ 6] [269262] +13:18:23 [ 12] [ 6] [131730] +13:18:23 [ 13] [ 4] [0320] +13:18:23 [ 14] [ 4] [4912] +13:18:23 [ 15] [ 4] [0320] +13:18:23 [ 18] [ 4] [6011] +13:18:23 [ 19] [ 3] [418] +13:18:23 [ 22] [ 3] [021] +13:18:23 [ 25] [ 2] [01] +13:18:23 [ 28] [ 9] [D00002000] +13:18:23 [ 32] [ 6] [180893] +13:18:23 [ 35] [ 32] [6213544001066643=491212016664889] +13:18:23 [ 37] [ 12] [507906269262] +13:18:23 [ 41] [ 8] [0401XSBR] +13:18:23 [ 42] [ 15] [999999 ] +13:18:23 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +13:18:23 [ 49] [ 3] [418] +13:18:23 [ 52] [ 16] [04E54315D4D2250A] +13:18:23 ============================================================================ +13:18:23 + + +waiting on router queue for slot.... +13:18:23 Sending to : +13:18:23 ============================================================================ +13:18:23 ============================================================================ +13:18:23 Slot Id : <254> +13:18:23 Transaction Type : REQUEST +13:18:23 Received From : +13:18:23 ============================================================================ +13:18:23 FNo. Len. Field Value +13:18:23 ============================================================================ +13:18:23 [ 1] [ 4] [0200] +13:18:23 [ 2] [ 16] [6213544001066643] +13:18:23 [ 3] [ 6] [012000] +13:18:23 [ 4] [ 12] [000020000000] +13:18:23 [ 7] [ 10] [0320061730] +13:18:23 [ 11] [ 6] [269262] +13:18:23 [ 12] [ 6] [131730] +13:18:23 [ 13] [ 4] [0320] +13:18:23 [ 14] [ 4] [4912] +13:18:23 [ 15] [ 4] [0320] +13:18:23 [ 18] [ 4] [6011] +13:18:23 [ 19] [ 3] [418] +13:18:23 [ 22] [ 3] [021] +13:18:23 [ 25] [ 2] [01] +13:18:23 [ 28] [ 9] [D00002000] +13:18:23 [ 32] [ 6] [180893] +13:18:23 [ 35] [ 32] [6213544001066643=491212016664889] +13:18:23 [ 37] [ 12] [507906269262] +13:18:23 [ 41] [ 8] [0401XSBR] +13:18:23 [ 42] [ 15] [999999 ] +13:18:23 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +13:18:23 [ 49] [ 3] [418] +13:18:23 [ 52] [ 16] [0C13415AB59D17DD] +13:18:23 ============================================================================ +13:18:23 + + +waiting on router queue for slot.... +13:18:23 Sending to : <0> +13:18:23 ============================================================================ +13:18:24 ============================================================================ +13:18:24 Slot Id : <254> +13:18:24 Transaction Type : RESPONSE +13:18:24 Received From : +13:18:24 ============================================================================ +13:18:24 FNo. Len. Field Value +13:18:24 ============================================================================ +13:18:24 [ 1] [ 4] [0210] +13:18:24 [ 2] [ 16] [6213544001066643] +13:18:24 [ 3] [ 6] [012000] +13:18:24 [ 4] [ 12] [000020000000] +13:18:24 [ 7] [ 10] [0320061730] +13:18:24 [ 11] [ 6] [269262] +13:18:24 [ 12] [ 6] [131730] +13:18:24 [ 13] [ 4] [0320] +13:18:24 [ 15] [ 4] [0320] +13:18:24 [ 18] [ 4] [6011] +13:18:24 [ 19] [ 3] [418] +13:18:24 [ 32] [ 6] [180893] +13:18:24 [ 35] [ 32] [6213544001066643=491212016664889] +13:18:24 [ 37] [ 12] [507906269262] +13:18:24 [ 38] [ 6] [522523] +13:18:24 [ 39] [ 2] [00] +13:18:24 [ 41] [ 8] [0401XSBR] +13:18:24 [ 49] [ 3] [418] +13:18:24 [ 54] [ 40] [2001418C0000343121032002418C000034312103] +13:18:24 ============================================================================ +13:18:24 Sending to : +13:18:24 ============================================================================ +13:18:24 + + +waiting on router queue for slot.... +13:18:25 ============================================================================ +13:18:25 Slot Id : <254> +13:18:25 Transaction Type : RESPONSE +13:18:25 Received From : +13:18:25 ============================================================================ +13:18:25 FNo. Len. Field Value +13:18:25 ============================================================================ +13:18:25 [ 1] [ 4] [0210] +13:18:25 [ 2] [ 16] [6213544001066643] +13:18:25 [ 3] [ 6] [012000] +13:18:25 [ 4] [ 12] [000020000000] +13:18:25 [ 7] [ 10] [0320061730] +13:18:25 [ 11] [ 6] [269262] +13:18:25 [ 12] [ 6] [131730] +13:18:25 [ 13] [ 4] [0320] +13:18:25 [ 15] [ 4] [0320] +13:18:25 [ 18] [ 4] [6011] +13:18:25 [ 19] [ 3] [418] +13:18:25 [ 32] [ 6] [180893] +13:18:25 [ 35] [ 32] [6213544001066643=491212016664889] +13:18:25 [ 37] [ 12] [507906269262] +13:18:25 [ 38] [ 6] [522523] +13:18:25 [ 39] [ 2] [00] +13:18:25 [ 41] [ 8] [0401XSBR] +13:18:25 [ 49] [ 3] [418] +13:18:25 [ 54] [ 40] [2001418C0000343121032002418C000034312103] +13:18:25 ============================================================================ +13:18:25 Calculate Source COMM Id = 2 +13:18:25 ============================================================================ +13:18:25 + + +waiting on router queue for slot.... +13:18:35 ============================================================================ +13:18:35 Slot Id : <282> +13:18:35 Transaction Type : REQUEST +13:18:35 Received From : +13:18:35 ============================================================================ +13:18:35 FNo. Len. Field Value +13:18:35 ============================================================================ +13:18:35 [ 1] [ 4] [0200] +13:18:35 [ 2] [ 16] [6213541000457278] +13:18:35 [ 3] [ 6] [011000] +13:18:35 [ 4] [ 12] [000100000000] +13:18:35 [ 7] [ 10] [0320132623] +13:18:35 [ 11] [ 6] [251232] +13:18:35 [ 12] [ 6] [132623] +13:18:35 [ 13] [ 4] [0320] +13:18:35 [ 14] [ 4] [4912] +13:18:35 [ 15] [ 4] [0320] +13:18:35 [ 18] [ 4] [6011] +13:18:35 [ 22] [ 3] [900] +13:18:35 [ 25] [ 2] [02] +13:18:35 [ 28] [ 9] [D00002000] +13:18:35 [ 32] [ 6] [220699] +13:18:35 [ 35] [ 32] [6213541000457278=491212015727049] +13:18:35 [ 37] [ 12] [507900336210] +13:18:35 [ 41] [ 8] [01001900] +13:18:35 [ 42] [ 15] [APTRA ] +13:18:35 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:18:35 [ 49] [ 3] [418] +13:18:35 [ 52] [ 16] [76525580251D9D81] +13:18:35 ============================================================================ +13:18:35 + + +waiting on router queue for slot.... +13:18:35 Sending to : +13:18:35 ============================================================================ +13:18:35 Sending to : +13:18:35 ============================================================================ +13:18:36 ============================================================================ +13:18:36 Slot Id : <282> +13:18:36 Transaction Type : REQUEST +13:18:36 Received From : +13:18:36 ============================================================================ +13:18:36 FNo. Len. Field Value +13:18:36 ============================================================================ +13:18:36 [ 1] [ 4] [0200] +13:18:36 [ 2] [ 16] [6213541000457278] +13:18:36 [ 3] [ 6] [011000] +13:18:36 [ 4] [ 12] [000100000000] +13:18:36 [ 7] [ 10] [0320132623] +13:18:36 [ 11] [ 6] [251232] +13:18:36 [ 12] [ 6] [132623] +13:18:36 [ 13] [ 4] [0320] +13:18:36 [ 14] [ 4] [4912] +13:18:36 [ 15] [ 4] [0320] +13:18:36 [ 18] [ 4] [6011] +13:18:36 [ 22] [ 3] [900] +13:18:36 [ 25] [ 2] [02] +13:18:36 [ 28] [ 9] [D00002000] +13:18:36 [ 32] [ 6] [220699] +13:18:36 [ 35] [ 32] [6213541000457278=491212015727049] +13:18:36 [ 37] [ 12] [507900336210] +13:18:36 [ 41] [ 8] [01001900] +13:18:36 [ 42] [ 15] [APTRA ] +13:18:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:18:36 [ 49] [ 3] [418] +13:18:36 [ 52] [ 16] [76525580251D9D81] +13:18:36 ============================================================================ +13:18:36 + + +waiting on router queue for slot.... +13:18:36 Sending to : +13:18:36 ============================================================================ +13:18:36 ============================================================================ +13:18:36 Slot Id : <282> +13:18:36 Transaction Type : REQUEST +13:18:36 Received From : +13:18:36 ============================================================================ +13:18:36 FNo. Len. Field Value +13:18:36 ============================================================================ +13:18:36 [ 1] [ 4] [0200] +13:18:36 [ 2] [ 16] [6213541000457278] +13:18:36 [ 3] [ 6] [011000] +13:18:36 [ 4] [ 12] [000100000000] +13:18:36 [ 7] [ 10] [0320132623] +13:18:36 [ 11] [ 6] [251232] +13:18:36 [ 12] [ 6] [132623] +13:18:36 [ 13] [ 4] [0320] +13:18:36 [ 14] [ 4] [4912] +13:18:36 [ 15] [ 4] [0320] +13:18:36 [ 18] [ 4] [6011] +13:18:36 [ 22] [ 3] [900] +13:18:36 [ 25] [ 2] [02] +13:18:36 [ 28] [ 9] [D00002000] +13:18:36 [ 32] [ 6] [220699] +13:18:36 [ 35] [ 32] [6213541000457278=491212015727049] +13:18:36 [ 37] [ 12] [507900336210] +13:18:36 [ 41] [ 8] [01001900] +13:18:36 [ 42] [ 15] [APTRA ] +13:18:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:18:36 [ 49] [ 3] [418] +13:18:36 [ 52] [ 16] [340C3748C978291D] +13:18:36 ============================================================================ +13:18:36 + + +waiting on router queue for slot.... +13:18:36 Sending to : <0> +13:18:36 ============================================================================ +13:18:37 ============================================================================ +13:18:37 Slot Id : <282> +13:18:37 Transaction Type : RESPONSE +13:18:37 Received From : +13:18:37 ============================================================================ +13:18:37 FNo. Len. Field Value +13:18:37 ============================================================================ +13:18:37 [ 1] [ 4] [0210] +13:18:37 [ 2] [ 16] [6213541000457278] +13:18:37 [ 3] [ 6] [011000] +13:18:37 [ 4] [ 12] [000100000000] +13:18:37 [ 7] [ 10] [0320132623] +13:18:37 [ 11] [ 6] [251232] +13:18:37 [ 12] [ 6] [132623] +13:18:37 [ 13] [ 4] [0320] +13:18:37 [ 15] [ 4] [0320] +13:18:37 [ 18] [ 4] [6011] +13:18:37 [ 32] [ 6] [220699] +13:18:37 [ 35] [ 32] [6213541000457278=491212015727049] +13:18:37 [ 37] [ 12] [507900336210] +13:18:37 [ 38] [ 6] [886839] +13:18:37 [ 39] [ 2] [00] +13:18:37 [ 41] [ 8] [01001900] +13:18:37 [ 49] [ 3] [418] +13:18:37 [ 54] [ 40] [1001418C0042027812781002418C004202781278] +13:18:37 ============================================================================ +13:18:37 Sending to : +13:18:37 ============================================================================ +13:18:37 + + +waiting on router queue for slot.... +13:18:38 ============================================================================ +13:18:38 Slot Id : <282> +13:18:38 Transaction Type : RESPONSE +13:18:38 Received From : +13:18:38 ============================================================================ +13:18:38 FNo. Len. Field Value +13:18:38 ============================================================================ +13:18:38 [ 1] [ 4] [0210] +13:18:38 [ 2] [ 16] [6213541000457278] +13:18:38 [ 3] [ 6] [011000] +13:18:38 [ 4] [ 12] [000100000000] +13:18:38 [ 7] [ 10] [0320132623] +13:18:38 [ 11] [ 6] [251232] +13:18:38 [ 12] [ 6] [132623] +13:18:38 [ 13] [ 4] [0320] +13:18:38 [ 15] [ 4] [0320] +13:18:38 [ 18] [ 4] [6011] +13:18:38 [ 32] [ 6] [220699] +13:18:38 [ 35] [ 32] [6213541000457278=491212015727049] +13:18:38 [ 37] [ 12] [507900336210] +13:18:38 [ 38] [ 6] [886839] +13:18:38 [ 39] [ 2] [00] +13:18:38 [ 41] [ 8] [01001900] +13:18:38 [ 49] [ 3] [418] +13:18:38 [ 54] [ 40] [1001418C0042027812781002418C004202781278] +13:18:38 ============================================================================ +13:18:38 Calculate Source COMM Id = 1 +13:18:38 ============================================================================ +13:18:38 + + +waiting on router queue for slot.... +13:18:41 ============================================================================ +13:18:41 Slot Id : <239> +13:18:41 Transaction Type : REQUEST +13:18:41 Received From : +13:18:41 ============================================================================ +13:18:41 FNo. Len. Field Value +13:18:41 ============================================================================ +13:18:41 [ 1] [ 4] [0800] +13:18:41 [ 7] [ 10] [0320061749] +13:18:41 [ 11] [ 6] [156518] +13:18:41 [ 70] [ 3] [301] +13:18:41 ============================================================================ +13:18:41 + + +waiting on router queue for slot.... +13:18:41 Sending to : +13:18:41 ============================================================================ +13:18:41 ============================================================================ +13:18:41 Slot Id : <239> +13:18:41 Transaction Type : RESPONSE +13:18:41 Received From : +13:18:41 ============================================================================ +13:18:41 FNo. Len. Field Value +13:18:41 ============================================================================ +13:18:41 [ 1] [ 4] [0810] +13:18:41 [ 7] [ 10] [0320061749] +13:18:41 [ 11] [ 6] [156518] +13:18:41 [ 39] [ 2] [00] +13:18:41 [ 70] [ 3] [301] +13:18:41 ============================================================================ +13:18:41 Calculate Source COMM Id = 2 +13:18:41 ============================================================================ +13:18:41 + + +waiting on router queue for slot.... +13:18:51 ============================================================================ +13:18:51 Slot Id : <276> +13:18:51 Transaction Type : REQUEST +13:18:51 Received From : +13:18:51 ============================================================================ +13:18:51 FNo. Len. Field Value +13:18:51 ============================================================================ +13:18:51 [ 1] [ 4] [0800] +13:18:51 [ 7] [ 10] [0320061759] +13:18:51 [ 11] [ 6] [156519] +13:18:51 [ 70] [ 3] [301] +13:18:51 ============================================================================ +13:18:51 + + +waiting on router queue for slot.... +13:18:51 Sending to : +13:18:51 ============================================================================ +13:18:51 ============================================================================ +13:18:51 Slot Id : <276> +13:18:51 Transaction Type : RESPONSE +13:18:51 Received From : +13:18:51 ============================================================================ +13:18:51 FNo. Len. Field Value +13:18:51 ============================================================================ +13:18:51 [ 1] [ 4] [0810] +13:18:51 [ 7] [ 10] [0320061759] +13:18:51 [ 11] [ 6] [156519] +13:18:51 [ 39] [ 2] [00] +13:18:51 [ 70] [ 3] [301] +13:18:51 ============================================================================ +13:18:51 Calculate Source COMM Id = 2 +13:18:51 ============================================================================ +13:18:51 + + +waiting on router queue for slot.... +13:19:02 ============================================================================ +13:19:02 Slot Id : <272> +13:19:02 Transaction Type : REQUEST +13:19:02 Received From : +13:19:02 ============================================================================ +13:19:02 FNo. Len. Field Value +13:19:02 ============================================================================ +13:19:02 [ 1] [ 4] [0800] +13:19:02 [ 7] [ 10] [0320061809] +13:19:02 [ 11] [ 6] [156520] +13:19:02 [ 70] [ 3] [301] +13:19:02 ============================================================================ +13:19:02 + + +waiting on router queue for slot.... +13:19:02 Sending to : +13:19:02 ============================================================================ +13:19:02 ============================================================================ +13:19:02 Slot Id : <272> +13:19:02 Transaction Type : RESPONSE +13:19:02 Received From : +13:19:02 ============================================================================ +13:19:02 FNo. Len. Field Value +13:19:02 ============================================================================ +13:19:02 [ 1] [ 4] [0810] +13:19:02 [ 7] [ 10] [0320061809] +13:19:02 [ 11] [ 6] [156520] +13:19:02 [ 39] [ 2] [00] +13:19:02 [ 70] [ 3] [301] +13:19:02 ============================================================================ +13:19:02 Calculate Source COMM Id = 2 +13:19:02 ============================================================================ +13:19:02 + + +waiting on router queue for slot.... +13:19:10 ============================================================================ +13:19:10 Slot Id : <266> +13:19:10 Transaction Type : REQUEST +13:19:10 Received From : +13:19:10 ============================================================================ +13:19:10 FNo. Len. Field Value +13:19:10 ============================================================================ +13:19:10 [ 1] [ 4] [0200] +13:19:10 [ 2] [ 16] [6213545000794127] +13:19:10 [ 3] [ 6] [010000] +13:19:10 [ 4] [ 12] [000005000000] +13:19:10 [ 7] [ 10] [0320131701] +13:19:10 [ 11] [ 6] [946165] +13:19:10 [ 12] [ 6] [131701] +13:19:10 [ 13] [ 4] [0320] +13:19:10 [ 15] [ 4] [0320] +13:19:10 [ 18] [ 4] [6011] +13:19:10 [ 19] [ 3] [418] +13:19:10 [ 22] [ 3] [021] +13:19:10 [ 25] [ 2] [01] +13:19:10 [ 28] [ 9] [D00002000] +13:19:10 [ 32] [ 6] [668899] +13:19:10 [ 35] [ 32] [6213545000794127=491212019412427] +13:19:10 [ 37] [ 12] [507901161649] +13:19:10 [ 41] [ 8] [03217001] +13:19:10 [ 42] [ 15] [APT ] +13:19:10 [ 43] [ 40] [ THATENG UNIT XEKONG L] +13:19:10 [ 49] [ 3] [418] +13:19:10 [ 52] [ 16] [E0072CAF0AB1750E] +13:19:10 ============================================================================ +13:19:10 + + +waiting on router queue for slot.... +13:19:10 Sending to : +13:19:10 ============================================================================ +13:19:10 Sending to : +13:19:10 ============================================================================ +13:19:10 ============================================================================ +13:19:10 Slot Id : <266> +13:19:10 Transaction Type : REQUEST +13:19:10 Received From : +13:19:10 ============================================================================ +13:19:10 FNo. Len. Field Value +13:19:10 ============================================================================ +13:19:10 [ 1] [ 4] [0200] +13:19:10 [ 2] [ 16] [6213545000794127] +13:19:10 [ 3] [ 6] [010000] +13:19:10 [ 4] [ 12] [000005000000] +13:19:10 [ 7] [ 10] [0320131701] +13:19:10 [ 11] [ 6] [946165] +13:19:10 [ 12] [ 6] [131701] +13:19:10 [ 13] [ 4] [0320] +13:19:10 [ 15] [ 4] [0320] +13:19:10 [ 18] [ 4] [6011] +13:19:10 [ 19] [ 3] [418] +13:19:10 [ 22] [ 3] [021] +13:19:10 [ 25] [ 2] [01] +13:19:10 [ 28] [ 9] [D00002000] +13:19:10 [ 32] [ 6] [668899] +13:19:10 [ 35] [ 32] [6213545000794127=491212019412427] +13:19:10 [ 37] [ 12] [507901161649] +13:19:10 [ 41] [ 8] [03217001] +13:19:10 [ 42] [ 15] [APT ] +13:19:10 [ 43] [ 40] [ THATENG UNIT XEKONG L] +13:19:10 [ 49] [ 3] [418] +13:19:10 [ 52] [ 16] [E0072CAF0AB1750E] +13:19:10 ============================================================================ +13:19:10 + + +waiting on router queue for slot.... +13:19:10 Sending to : +13:19:10 ============================================================================ +13:19:10 ============================================================================ +13:19:10 Slot Id : <266> +13:19:10 Transaction Type : REQUEST +13:19:10 Received From : +13:19:10 ============================================================================ +13:19:10 FNo. Len. Field Value +13:19:10 ============================================================================ +13:19:10 [ 1] [ 4] [0200] +13:19:10 [ 2] [ 16] [6213545000794127] +13:19:10 [ 3] [ 6] [010000] +13:19:10 [ 4] [ 12] [000005000000] +13:19:10 [ 7] [ 10] [0320131701] +13:19:10 [ 11] [ 6] [946165] +13:19:10 [ 12] [ 6] [131701] +13:19:10 [ 13] [ 4] [0320] +13:19:10 [ 15] [ 4] [0320] +13:19:10 [ 18] [ 4] [6011] +13:19:10 [ 19] [ 3] [418] +13:19:10 [ 22] [ 3] [021] +13:19:10 [ 25] [ 2] [01] +13:19:10 [ 28] [ 9] [D00002000] +13:19:10 [ 32] [ 6] [668899] +13:19:10 [ 35] [ 32] [6213545000794127=491212019412427] +13:19:10 [ 37] [ 12] [507901161649] +13:19:10 [ 41] [ 8] [03217001] +13:19:10 [ 42] [ 15] [APT ] +13:19:10 [ 43] [ 40] [ THATENG UNIT XEKONG L] +13:19:10 [ 49] [ 3] [418] +13:19:10 [ 52] [ 16] [36B67427A887CC9F] +13:19:10 ============================================================================ +13:19:10 + + +waiting on router queue for slot.... +13:19:10 Sending to : <0> +13:19:10 ============================================================================ +13:19:11 ============================================================================ +13:19:11 Slot Id : <266> +13:19:11 Transaction Type : RESPONSE +13:19:11 Received From : +13:19:11 ============================================================================ +13:19:11 FNo. Len. Field Value +13:19:11 ============================================================================ +13:19:11 [ 1] [ 4] [0210] +13:19:11 [ 2] [ 16] [6213545000794127] +13:19:11 [ 3] [ 6] [010000] +13:19:11 [ 4] [ 12] [000005000000] +13:19:11 [ 7] [ 10] [0320131701] +13:19:11 [ 11] [ 6] [946165] +13:19:11 [ 12] [ 6] [131701] +13:19:11 [ 13] [ 4] [0320] +13:19:11 [ 15] [ 4] [0320] +13:19:11 [ 18] [ 4] [6011] +13:19:11 [ 19] [ 3] [418] +13:19:11 [ 32] [ 6] [668899] +13:19:11 [ 35] [ 32] [6213545000794127=491212019412427] +13:19:11 [ 37] [ 12] [507901161649] +13:19:11 [ 38] [ 6] [502395] +13:19:11 [ 39] [ 2] [00] +13:19:11 [ 41] [ 8] [03217001] +13:19:11 [ 49] [ 3] [418] +13:19:11 [ 54] [ 40] [0001418C0000203489870002418C000020348987] +13:19:11 ============================================================================ +13:19:11 Sending to : +13:19:11 ============================================================================ +13:19:11 + + +waiting on router queue for slot.... +13:19:12 ============================================================================ +13:19:12 Slot Id : <252> +13:19:12 Transaction Type : REQUEST +13:19:12 Received From : +13:19:12 ============================================================================ +13:19:12 FNo. Len. Field Value +13:19:12 ============================================================================ +13:19:12 [ 1] [ 4] [0800] +13:19:12 [ 7] [ 10] [0320061820] +13:19:12 [ 11] [ 6] [156521] +13:19:12 [ 70] [ 3] [301] +13:19:12 ============================================================================ +13:19:12 + + +waiting on router queue for slot.... +13:19:12 Sending to : +13:19:12 ============================================================================ +13:19:12 ============================================================================ +13:19:12 Slot Id : <252> +13:19:12 Transaction Type : RESPONSE +13:19:12 Received From : +13:19:12 ============================================================================ +13:19:12 FNo. Len. Field Value +13:19:12 ============================================================================ +13:19:12 [ 1] [ 4] [0810] +13:19:12 [ 7] [ 10] [0320061820] +13:19:12 [ 11] [ 6] [156521] +13:19:12 [ 39] [ 2] [00] +13:19:12 [ 70] [ 3] [301] +13:19:12 ============================================================================ +13:19:12 Calculate Source COMM Id = 2 +13:19:12 ============================================================================ +13:19:12 + + +waiting on router queue for slot.... +13:19:13 ============================================================================ +13:19:13 Slot Id : <266> +13:19:13 Transaction Type : RESPONSE +13:19:13 Received From : +13:19:13 ============================================================================ +13:19:13 FNo. Len. Field Value +13:19:13 ============================================================================ +13:19:13 [ 1] [ 4] [0210] +13:19:13 [ 2] [ 16] [6213545000794127] +13:19:13 [ 3] [ 6] [010000] +13:19:13 [ 4] [ 12] [000005000000] +13:19:13 [ 7] [ 10] [0320131701] +13:19:13 [ 11] [ 6] [946165] +13:19:13 [ 12] [ 6] [131701] +13:19:13 [ 13] [ 4] [0320] +13:19:13 [ 15] [ 4] [0320] +13:19:13 [ 18] [ 4] [6011] +13:19:13 [ 19] [ 3] [418] +13:19:13 [ 32] [ 6] [668899] +13:19:13 [ 35] [ 32] [6213545000794127=491212019412427] +13:19:13 [ 37] [ 12] [507901161649] +13:19:13 [ 38] [ 6] [502395] +13:19:13 [ 39] [ 2] [00] +13:19:13 [ 41] [ 8] [03217001] +13:19:13 [ 49] [ 3] [418] +13:19:13 [ 54] [ 40] [0001418C0000203489870002418C000020348987] +13:19:13 ============================================================================ +13:19:13 Calculate Source COMM Id = 4 +13:19:13 ============================================================================ +13:19:13 + + +waiting on router queue for slot.... +13:19:24 ============================================================================ +13:19:24 Slot Id : <241> +13:19:24 Transaction Type : REQUEST +13:19:24 Received From : +13:19:24 ============================================================================ +13:19:24 FNo. Len. Field Value +13:19:24 ============================================================================ +13:19:24 [ 1] [ 4] [0800] +13:19:24 [ 2] [ 5] [02531] +13:19:24 [ 3] [ 6] [579138] +13:19:24 [ 7] [ 10] [0320061924] +13:19:24 [ 11] [ 6] [807185] +13:19:24 [ 15] [ 10] [0320061924] +13:19:24 [ 37] [ 11] [57913807185] +13:19:24 [ 70] [ 3] [001] +13:19:24 ============================================================================ +13:19:24 + + +waiting on router queue for slot.... +13:19:24 ============================================================================ +13:19:24 Slot Id : <241> +13:19:24 Transaction Type : RESPONSE +13:19:24 Received From : +13:19:24 ============================================================================ +13:19:24 FNo. Len. Field Value +13:19:24 ============================================================================ +13:19:24 [ 1] [ 4] [0810] +13:19:24 [ 7] [ 10] [0320061924] +13:19:24 [ 11] [ 6] [807185] +13:19:24 [ 15] [ 4] [0320] +13:19:24 [ 37] [ 12] [57913807185] +13:19:24 [ 39] [ 2] [00] +13:19:24 [ 70] [ 3] [001] +13:19:24 ============================================================================ +13:19:24 Sending to : +13:19:24 ============================================================================ +13:19:24 + + +waiting on router queue for slot.... +13:19:27 ============================================================================ +13:19:27 Slot Id : <280> +13:19:27 Transaction Type : REQUEST +13:19:27 Received From : +13:19:27 ============================================================================ +13:19:27 FNo. Len. Field Value +13:19:27 ============================================================================ +13:19:27 [ 1] [ 4] [0800] +13:19:27 [ 7] [ 10] [0320061835] +13:19:27 [ 11] [ 6] [156522] +13:19:27 [ 70] [ 3] [301] +13:19:27 ============================================================================ +13:19:27 + + +waiting on router queue for slot.... +13:19:27 Sending to : +13:19:27 ============================================================================ +13:19:27 ============================================================================ +13:19:27 Slot Id : <280> +13:19:27 Transaction Type : RESPONSE +13:19:27 Received From : +13:19:27 ============================================================================ +13:19:27 FNo. Len. Field Value +13:19:27 ============================================================================ +13:19:27 [ 1] [ 4] [0810] +13:19:27 [ 7] [ 10] [0320061835] +13:19:27 [ 11] [ 6] [156522] +13:19:27 [ 39] [ 2] [00] +13:19:27 [ 70] [ 3] [301] +13:19:27 ============================================================================ +13:19:27 Calculate Source COMM Id = 2 +13:19:27 ============================================================================ +13:19:27 + + +waiting on router queue for slot.... +13:19:43 ============================================================================ +13:19:43 Slot Id : <258> +13:19:43 Transaction Type : REQUEST +13:19:43 Received From : +13:19:43 ============================================================================ +13:19:43 FNo. Len. Field Value +13:19:43 ============================================================================ +13:19:43 [ 1] [ 4] [0800] +13:19:43 [ 7] [ 10] [0320061850] +13:19:43 [ 11] [ 6] [156523] +13:19:43 [ 70] [ 3] [301] +13:19:43 ============================================================================ +13:19:43 + + +waiting on router queue for slot.... +13:19:43 Sending to : +13:19:43 ============================================================================ +13:19:43 ============================================================================ +13:19:43 Slot Id : <258> +13:19:43 Transaction Type : RESPONSE +13:19:43 Received From : +13:19:43 ============================================================================ +13:19:43 FNo. Len. Field Value +13:19:43 ============================================================================ +13:19:43 [ 1] [ 4] [0810] +13:19:43 [ 7] [ 10] [0320061850] +13:19:43 [ 11] [ 6] [156523] +13:19:43 [ 39] [ 2] [00] +13:19:43 [ 70] [ 3] [301] +13:19:43 ============================================================================ +13:19:43 Calculate Source COMM Id = 2 +13:19:43 ============================================================================ +13:19:43 + + +waiting on router queue for slot.... +13:19:46 ============================================================================ +13:19:46 Slot Id : <284> +13:19:46 Transaction Type : REQUEST +13:19:46 Received From : +13:19:46 ============================================================================ +13:19:46 FNo. Len. Field Value +13:19:46 ============================================================================ +13:19:46 [ 1] [ 4] [0200] +13:19:46 [ 2] [ 16] [6213541000457278] +13:19:46 [ 3] [ 6] [011000] +13:19:46 [ 4] [ 12] [000100000000] +13:19:46 [ 7] [ 10] [0320132733] +13:19:46 [ 11] [ 6] [251235] +13:19:46 [ 12] [ 6] [132733] +13:19:46 [ 13] [ 4] [0320] +13:19:46 [ 14] [ 4] [4912] +13:19:46 [ 15] [ 4] [0320] +13:19:46 [ 18] [ 4] [6011] +13:19:46 [ 22] [ 3] [900] +13:19:46 [ 25] [ 2] [02] +13:19:46 [ 28] [ 9] [D00002000] +13:19:46 [ 32] [ 6] [220699] +13:19:46 [ 35] [ 32] [6213541000457278=491212015727049] +13:19:46 [ 37] [ 12] [507900336212] +13:19:46 [ 41] [ 8] [01001900] +13:19:46 [ 42] [ 15] [APTRA ] +13:19:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:19:46 [ 49] [ 3] [418] +13:19:46 [ 52] [ 16] [76525580251D9D81] +13:19:46 ============================================================================ +13:19:46 + + +waiting on router queue for slot.... +13:19:46 Sending to : +13:19:46 ============================================================================ +13:19:46 Sending to : +13:19:46 ============================================================================ +13:19:46 ============================================================================ +13:19:46 Slot Id : <284> +13:19:46 Transaction Type : REQUEST +13:19:46 Received From : +13:19:46 ============================================================================ +13:19:46 FNo. Len. Field Value +13:19:46 ============================================================================ +13:19:46 [ 1] [ 4] [0200] +13:19:46 [ 2] [ 16] [6213541000457278] +13:19:46 [ 3] [ 6] [011000] +13:19:46 [ 4] [ 12] [000100000000] +13:19:46 [ 7] [ 10] [0320132733] +13:19:46 [ 11] [ 6] [251235] +13:19:46 [ 12] [ 6] [132733] +13:19:46 [ 13] [ 4] [0320] +13:19:46 [ 14] [ 4] [4912] +13:19:46 [ 15] [ 4] [0320] +13:19:46 [ 18] [ 4] [6011] +13:19:46 [ 22] [ 3] [900] +13:19:46 [ 25] [ 2] [02] +13:19:46 [ 28] [ 9] [D00002000] +13:19:46 [ 32] [ 6] [220699] +13:19:46 [ 35] [ 32] [6213541000457278=491212015727049] +13:19:46 [ 37] [ 12] [507900336212] +13:19:46 [ 41] [ 8] [01001900] +13:19:46 [ 42] [ 15] [APTRA ] +13:19:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:19:46 [ 49] [ 3] [418] +13:19:46 [ 52] [ 16] [76525580251D9D81] +13:19:46 ============================================================================ +13:19:46 + + +waiting on router queue for slot.... +13:19:46 Sending to : +13:19:46 ============================================================================ +13:19:46 ============================================================================ +13:19:46 Slot Id : <284> +13:19:46 Transaction Type : REQUEST +13:19:46 Received From : +13:19:46 ============================================================================ +13:19:46 FNo. Len. Field Value +13:19:46 ============================================================================ +13:19:46 [ 1] [ 4] [0200] +13:19:46 [ 2] [ 16] [6213541000457278] +13:19:46 [ 3] [ 6] [011000] +13:19:46 [ 4] [ 12] [000100000000] +13:19:46 [ 7] [ 10] [0320132733] +13:19:46 [ 11] [ 6] [251235] +13:19:46 [ 12] [ 6] [132733] +13:19:46 [ 13] [ 4] [0320] +13:19:46 [ 14] [ 4] [4912] +13:19:46 [ 15] [ 4] [0320] +13:19:46 [ 18] [ 4] [6011] +13:19:46 [ 22] [ 3] [900] +13:19:46 [ 25] [ 2] [02] +13:19:46 [ 28] [ 9] [D00002000] +13:19:46 [ 32] [ 6] [220699] +13:19:46 [ 35] [ 32] [6213541000457278=491212015727049] +13:19:46 [ 37] [ 12] [507900336212] +13:19:46 [ 41] [ 8] [01001900] +13:19:46 [ 42] [ 15] [APTRA ] +13:19:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:19:46 [ 49] [ 3] [418] +13:19:46 [ 52] [ 16] [340C3748C978291D] +13:19:46 ============================================================================ +13:19:46 + + +waiting on router queue for slot.... +13:19:46 Sending to : <0> +13:19:46 ============================================================================ +13:19:47 ============================================================================ +13:19:47 Slot Id : <284> +13:19:47 Transaction Type : RESPONSE +13:19:47 Received From : +13:19:47 ============================================================================ +13:19:47 FNo. Len. Field Value +13:19:47 ============================================================================ +13:19:47 [ 1] [ 4] [0210] +13:19:47 [ 2] [ 16] [6213541000457278] +13:19:47 [ 3] [ 6] [011000] +13:19:47 [ 4] [ 12] [000100000000] +13:19:47 [ 7] [ 10] [0320132733] +13:19:47 [ 11] [ 6] [251235] +13:19:47 [ 12] [ 6] [132733] +13:19:47 [ 13] [ 4] [0320] +13:19:47 [ 15] [ 4] [0320] +13:19:47 [ 18] [ 4] [6011] +13:19:47 [ 32] [ 6] [220699] +13:19:47 [ 35] [ 32] [6213541000457278=491212015727049] +13:19:47 [ 37] [ 12] [507900336212] +13:19:47 [ 38] [ 6] [980252] +13:19:47 [ 39] [ 2] [00] +13:19:47 [ 41] [ 8] [01001900] +13:19:47 [ 49] [ 3] [418] +13:19:47 [ 54] [ 40] [1001418C0041025812781002418C004102581278] +13:19:47 ============================================================================ +13:19:47 Sending to : +13:19:47 ============================================================================ +13:19:47 + + +waiting on router queue for slot.... +13:19:48 ============================================================================ +13:19:48 Slot Id : <284> +13:19:48 Transaction Type : RESPONSE +13:19:48 Received From : +13:19:48 ============================================================================ +13:19:48 FNo. Len. Field Value +13:19:48 ============================================================================ +13:19:48 [ 1] [ 4] [0210] +13:19:48 [ 2] [ 16] [6213541000457278] +13:19:48 [ 3] [ 6] [011000] +13:19:48 [ 4] [ 12] [000100000000] +13:19:48 [ 7] [ 10] [0320132733] +13:19:48 [ 11] [ 6] [251235] +13:19:48 [ 12] [ 6] [132733] +13:19:48 [ 13] [ 4] [0320] +13:19:48 [ 15] [ 4] [0320] +13:19:48 [ 18] [ 4] [6011] +13:19:48 [ 32] [ 6] [220699] +13:19:48 [ 35] [ 32] [6213541000457278=491212015727049] +13:19:48 [ 37] [ 12] [507900336212] +13:19:48 [ 38] [ 6] [980252] +13:19:48 [ 39] [ 2] [00] +13:19:48 [ 41] [ 8] [01001900] +13:19:48 [ 49] [ 3] [418] +13:19:48 [ 54] [ 40] [1001418C0041025812781002418C004102581278] +13:19:48 ============================================================================ +13:19:48 Calculate Source COMM Id = 1 +13:19:48 ============================================================================ +13:19:48 + + +waiting on router queue for slot.... +13:19:55 ============================================================================ +13:19:55 Slot Id : <219> +13:19:55 Transaction Type : REQUEST +13:19:55 Received From : +13:19:55 ============================================================================ +13:19:55 FNo. Len. Field Value +13:19:55 ============================================================================ +13:19:55 [ 1] [ 4] [0800] +13:19:55 [ 7] [ 10] [0320062742] +13:19:55 [ 11] [ 6] [057884] +13:19:55 [ 37] [ 12] [57913057884] +13:19:55 [ 70] [ 3] [301] +13:19:55 ============================================================================ +13:19:55 + + +waiting on router queue for slot.... +13:19:55 Sending to : +13:19:55 ============================================================================ +13:19:55 ============================================================================ +13:19:55 Slot Id : <219> +13:19:55 Transaction Type : RESPONSE +13:19:55 Received From : +13:19:55 ============================================================================ +13:19:55 FNo. Len. Field Value +13:19:55 ============================================================================ +13:19:55 [ 1] [ 4] [0810] +13:19:55 [ 7] [ 10] [0320062742] +13:19:55 [ 11] [ 6] [057884] +13:19:55 [ 37] [ 12] [579130578840] +13:19:55 [ 39] [ 2] [00] +13:19:55 [ 70] [ 3] [810] +13:19:55 ============================================================================ +13:19:55 Calculate Source COMM Id = 1 +13:19:55 ============================================================================ +13:19:55 + + +waiting on router queue for slot.... +13:19:56 ============================================================================ +13:19:56 Slot Id : <245> +13:19:56 Transaction Type : REQUEST +13:19:56 Received From : +13:19:56 ============================================================================ +13:19:56 FNo. Len. Field Value +13:19:56 ============================================================================ +13:19:56 [ 1] [ 4] [0200] +13:19:56 [ 2] [ 16] [1808930500003637] +13:19:56 [ 3] [ 6] [011000] +13:19:56 [ 4] [ 12] [000080000000] +13:19:56 [ 7] [ 10] [0320131952] +13:19:56 [ 11] [ 6] [755591] +13:19:56 [ 12] [ 6] [131952] +13:19:56 [ 13] [ 4] [0320] +13:19:56 [ 15] [ 4] [0320] +13:19:56 [ 18] [ 4] [6011] +13:19:56 [ 22] [ 3] [900] +13:19:56 [ 25] [ 2] [02] +13:19:56 [ 28] [ 9] [D00002000] +13:19:56 [ 32] [ 6] [621354] +13:19:56 [ 35] [ 27] [1808930500003637=1803500532] +13:19:56 [ 37] [ 12] [507903177369] +13:19:56 [ 41] [ 8] [04002700] +13:19:56 [ 42] [ 15] [NATIVE ] +13:19:56 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +13:19:56 [ 49] [ 3] [418] +13:19:56 [ 52] [ 16] [DBF1D751CF952314] +13:19:56 ============================================================================ +13:19:56 + + +waiting on router queue for slot.... +13:19:56 Sending to : +13:19:56 ============================================================================ +13:19:56 Sending to : +13:19:56 ============================================================================ +13:19:57 ============================================================================ +13:19:57 Slot Id : <245> +13:19:57 Transaction Type : REQUEST +13:19:57 Received From : +13:19:57 ============================================================================ +13:19:57 FNo. Len. Field Value +13:19:57 ============================================================================ +13:19:57 [ 1] [ 4] [0200] +13:19:57 [ 2] [ 16] [1808930500003637] +13:19:57 [ 3] [ 6] [011000] +13:19:57 [ 4] [ 12] [000080000000] +13:19:57 [ 7] [ 10] [0320131952] +13:19:57 [ 11] [ 6] [755591] +13:19:57 [ 12] [ 6] [131952] +13:19:57 [ 13] [ 4] [0320] +13:19:57 [ 15] [ 4] [0320] +13:19:57 [ 18] [ 4] [6011] +13:19:57 [ 22] [ 3] [900] +13:19:57 [ 25] [ 2] [02] +13:19:57 [ 28] [ 9] [D00002000] +13:19:57 [ 32] [ 6] [621354] +13:19:57 [ 35] [ 27] [1808930500003637=1803500532] +13:19:57 [ 37] [ 12] [507903177369] +13:19:57 [ 41] [ 8] [04002700] +13:19:57 [ 42] [ 15] [NATIVE ] +13:19:57 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +13:19:57 [ 49] [ 3] [418] +13:19:57 [ 52] [ 16] [DBF1D751CF952314] +13:19:57 ============================================================================ +13:19:57 + + +waiting on router queue for slot.... +13:19:57 Sending to : +13:19:57 ============================================================================ +13:19:57 ============================================================================ +13:19:57 Slot Id : <245> +13:19:57 Transaction Type : REQUEST +13:19:57 Received From : +13:19:57 ============================================================================ +13:19:57 FNo. Len. Field Value +13:19:57 ============================================================================ +13:19:57 [ 1] [ 4] [0200] +13:19:57 [ 2] [ 16] [1808930500003637] +13:19:57 [ 3] [ 6] [011000] +13:19:57 [ 4] [ 12] [000080000000] +13:19:57 [ 7] [ 10] [0320131952] +13:19:57 [ 11] [ 6] [755591] +13:19:57 [ 12] [ 6] [131952] +13:19:57 [ 13] [ 4] [0320] +13:19:57 [ 15] [ 4] [0320] +13:19:57 [ 18] [ 4] [6011] +13:19:57 [ 22] [ 3] [900] +13:19:57 [ 25] [ 2] [02] +13:19:57 [ 28] [ 9] [D00002000] +13:19:57 [ 32] [ 6] [621354] +13:19:57 [ 35] [ 27] [1808930500003637=1803500532] +13:19:57 [ 37] [ 12] [507903177369] +13:19:57 [ 41] [ 8] [04002700] +13:19:57 [ 42] [ 15] [NATIVE ] +13:19:57 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +13:19:57 [ 49] [ 3] [418] +13:19:57 [ 52] [ 16] [4D23291E3A6503F1] +13:19:57 ============================================================================ +13:19:57 + + +waiting on router queue for slot.... +13:19:57 Sending to : <2> +13:19:57 ============================================================================ +13:20:09 ============================================================================ +13:20:09 Slot Id : <287> +13:20:09 Transaction Type : REQUEST +13:20:09 Received From : +13:20:09 ============================================================================ +13:20:09 FNo. Len. Field Value +13:20:09 ============================================================================ +13:20:09 [ 1] [ 4] [0800] +13:20:09 [ 7] [ 10] [0320061917] +13:20:09 [ 11] [ 6] [156524] +13:20:09 [ 70] [ 3] [301] +13:20:09 ============================================================================ +13:20:09 + + +waiting on router queue for slot.... +13:20:09 Sending to : +13:20:09 ============================================================================ +13:20:09 ============================================================================ +13:20:09 Slot Id : <287> +13:20:09 Transaction Type : RESPONSE +13:20:09 Received From : +13:20:09 ============================================================================ +13:20:09 FNo. Len. Field Value +13:20:09 ============================================================================ +13:20:09 [ 1] [ 4] [0810] +13:20:09 [ 7] [ 10] [0320061917] +13:20:09 [ 11] [ 6] [156524] +13:20:09 [ 39] [ 2] [00] +13:20:09 [ 70] [ 3] [301] +13:20:09 ============================================================================ +13:20:09 Calculate Source COMM Id = 2 +13:20:09 ============================================================================ +13:20:09 + + +waiting on router queue for slot.... +13:20:12 ============================================================================ +13:20:12 Slot Id : <224> +13:20:12 Transaction Type : REQUEST +13:20:12 Received From : +13:20:12 ============================================================================ +13:20:12 FNo. Len. Field Value +13:20:12 ============================================================================ +13:20:12 [ 1] [ 4] [0200] +13:20:12 [ 2] [ 16] [6213545000181192] +13:20:12 [ 3] [ 6] [010000] +13:20:12 [ 4] [ 12] [000029000000] +13:20:12 [ 7] [ 10] [0320131802] +13:20:12 [ 11] [ 6] [946216] +13:20:12 [ 12] [ 6] [131802] +13:20:12 [ 13] [ 4] [0320] +13:20:12 [ 15] [ 4] [0320] +13:20:12 [ 18] [ 4] [6011] +13:20:12 [ 19] [ 3] [418] +13:20:12 [ 22] [ 3] [021] +13:20:12 [ 25] [ 2] [01] +13:20:12 [ 28] [ 9] [D00002000] +13:20:12 [ 32] [ 6] [668899] +13:20:12 [ 35] [ 32] [6213545000181192=491212018119855] +13:20:12 [ 37] [ 12] [507901841862] +13:20:12 [ 41] [ 8] [03009004] +13:20:12 [ 42] [ 15] [APT ] +13:20:12 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:20:12 [ 49] [ 3] [418] +13:20:12 [ 52] [ 16] [AB3CA23D94AC8F67] +13:20:12 ============================================================================ +13:20:12 + + +waiting on router queue for slot.... +13:20:12 Sending to : +13:20:12 ============================================================================ +13:20:12 Sending to : +13:20:12 ============================================================================ +13:20:12 ============================================================================ +13:20:12 Slot Id : <224> +13:20:12 Transaction Type : REQUEST +13:20:12 Received From : +13:20:12 ============================================================================ +13:20:12 FNo. Len. Field Value +13:20:12 ============================================================================ +13:20:12 [ 1] [ 4] [0200] +13:20:12 [ 2] [ 16] [6213545000181192] +13:20:12 [ 3] [ 6] [010000] +13:20:12 [ 4] [ 12] [000029000000] +13:20:12 [ 7] [ 10] [0320131802] +13:20:12 [ 11] [ 6] [946216] +13:20:12 [ 12] [ 6] [131802] +13:20:12 [ 13] [ 4] [0320] +13:20:12 [ 15] [ 4] [0320] +13:20:12 [ 18] [ 4] [6011] +13:20:12 [ 19] [ 3] [418] +13:20:12 [ 22] [ 3] [021] +13:20:12 [ 25] [ 2] [01] +13:20:12 [ 28] [ 9] [D00002000] +13:20:12 [ 32] [ 6] [668899] +13:20:12 [ 35] [ 32] [6213545000181192=491212018119855] +13:20:12 [ 37] [ 12] [507901841862] +13:20:12 [ 41] [ 8] [03009004] +13:20:12 [ 42] [ 15] [APT ] +13:20:12 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:20:12 [ 49] [ 3] [418] +13:20:12 [ 52] [ 16] [AB3CA23D94AC8F67] +13:20:12 ============================================================================ +13:20:12 + + +waiting on router queue for slot.... +13:20:12 Sending to : +13:20:12 ============================================================================ +13:20:12 ============================================================================ +13:20:12 Slot Id : <224> +13:20:12 Transaction Type : REQUEST +13:20:12 Received From : +13:20:12 ============================================================================ +13:20:12 FNo. Len. Field Value +13:20:12 ============================================================================ +13:20:12 [ 1] [ 4] [0200] +13:20:12 [ 2] [ 16] [6213545000181192] +13:20:12 [ 3] [ 6] [010000] +13:20:12 [ 4] [ 12] [000029000000] +13:20:12 [ 7] [ 10] [0320131802] +13:20:12 [ 11] [ 6] [946216] +13:20:12 [ 12] [ 6] [131802] +13:20:12 [ 13] [ 4] [0320] +13:20:12 [ 15] [ 4] [0320] +13:20:12 [ 18] [ 4] [6011] +13:20:12 [ 19] [ 3] [418] +13:20:12 [ 22] [ 3] [021] +13:20:12 [ 25] [ 2] [01] +13:20:12 [ 28] [ 9] [D00002000] +13:20:12 [ 32] [ 6] [668899] +13:20:12 [ 35] [ 32] [6213545000181192=491212018119855] +13:20:12 [ 37] [ 12] [507901841862] +13:20:12 [ 41] [ 8] [03009004] +13:20:12 [ 42] [ 15] [APT ] +13:20:12 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:20:12 [ 49] [ 3] [418] +13:20:12 [ 52] [ 16] [361A911916BB4729] +13:20:12 ============================================================================ +13:20:12 + + +waiting on router queue for slot.... +13:20:12 Sending to : <0> +13:20:12 ============================================================================ +13:20:13 ============================================================================ +13:20:13 Slot Id : <224> +13:20:13 Transaction Type : RESPONSE +13:20:13 Received From : +13:20:13 ============================================================================ +13:20:13 FNo. Len. Field Value +13:20:13 ============================================================================ +13:20:13 [ 1] [ 4] [0210] +13:20:13 [ 2] [ 16] [6213545000181192] +13:20:13 [ 3] [ 6] [010000] +13:20:13 [ 4] [ 12] [000029000000] +13:20:13 [ 7] [ 10] [0320131802] +13:20:13 [ 11] [ 6] [946216] +13:20:13 [ 12] [ 6] [131802] +13:20:13 [ 13] [ 4] [0320] +13:20:13 [ 15] [ 4] [0320] +13:20:13 [ 18] [ 4] [6011] +13:20:13 [ 19] [ 3] [418] +13:20:13 [ 32] [ 6] [668899] +13:20:13 [ 35] [ 32] [6213545000181192=491212018119855] +13:20:13 [ 37] [ 12] [507901841862] +13:20:13 [ 38] [ 6] [946216] +13:20:13 [ 39] [ 2] [51] +13:20:13 [ 41] [ 8] [03009004] +13:20:13 [ 49] [ 3] [418] +13:20:13 [ 54] [ 40] [0001418C0000053911310002418C000005391131] +13:20:13 ============================================================================ +13:20:13 Sending to : +13:20:13 ============================================================================ +13:20:13 + + +waiting on router queue for slot.... +13:20:14 ============================================================================ +13:20:14 Slot Id : <224> +13:20:14 Transaction Type : RESPONSE +13:20:14 Received From : +13:20:14 ============================================================================ +13:20:14 FNo. Len. Field Value +13:20:14 ============================================================================ +13:20:14 [ 1] [ 4] [0210] +13:20:14 [ 2] [ 16] [6213545000181192] +13:20:14 [ 3] [ 6] [010000] +13:20:14 [ 4] [ 12] [000029000000] +13:20:14 [ 7] [ 10] [0320131802] +13:20:14 [ 11] [ 6] [946216] +13:20:14 [ 12] [ 6] [131802] +13:20:14 [ 13] [ 4] [0320] +13:20:14 [ 15] [ 4] [0320] +13:20:14 [ 18] [ 4] [6011] +13:20:14 [ 19] [ 3] [418] +13:20:14 [ 32] [ 6] [668899] +13:20:14 [ 35] [ 32] [6213545000181192=491212018119855] +13:20:14 [ 37] [ 12] [507901841862] +13:20:14 [ 38] [ 6] [946216] +13:20:14 [ 39] [ 2] [51] +13:20:14 [ 41] [ 8] [03009004] +13:20:14 [ 49] [ 3] [418] +13:20:14 [ 54] [ 40] [0001418C0000053911310002418C000005391131] +13:20:14 ============================================================================ +13:20:14 Calculate Source COMM Id = 4 +13:20:14 ============================================================================ +13:20:14 + + +waiting on router queue for slot.... +13:20:20 ============================================================================ +13:20:20 Slot Id : <277> +13:20:20 Transaction Type : REQUEST +13:20:20 Received From : +13:20:20 ============================================================================ +13:20:20 FNo. Len. Field Value +13:20:20 ============================================================================ +13:20:20 [ 1] [ 4] [0800] +13:20:20 [ 7] [ 10] [0320061927] +13:20:20 [ 11] [ 6] [156525] +13:20:20 [ 70] [ 3] [301] +13:20:20 ============================================================================ +13:20:20 + + +waiting on router queue for slot.... +13:20:20 Sending to : +13:20:20 ============================================================================ +13:20:20 ============================================================================ +13:20:20 Slot Id : <277> +13:20:20 Transaction Type : RESPONSE +13:20:20 Received From : +13:20:20 ============================================================================ +13:20:20 FNo. Len. Field Value +13:20:20 ============================================================================ +13:20:20 [ 1] [ 4] [0810] +13:20:20 [ 7] [ 10] [0320061927] +13:20:20 [ 11] [ 6] [156525] +13:20:20 [ 39] [ 2] [00] +13:20:20 [ 70] [ 3] [301] +13:20:20 ============================================================================ +13:20:20 Calculate Source COMM Id = 2 +13:20:20 ============================================================================ +13:20:20 + + +waiting on router queue for slot.... +13:20:26 ============================================================================ +13:20:26 Slot Id : <290> +13:20:26 Transaction Type : REQUEST +13:20:26 Received From : +13:20:26 ============================================================================ +13:20:26 FNo. Len. Field Value +13:20:26 ============================================================================ +13:20:26 [ 1] [ 4] [0800] +13:20:26 [ 2] [ 5] [02531] +13:20:26 [ 3] [ 6] [579138] +13:20:26 [ 7] [ 10] [0320062026] +13:20:26 [ 11] [ 6] [807186] +13:20:26 [ 15] [ 10] [0320062026] +13:20:26 [ 37] [ 11] [57913807186] +13:20:26 [ 70] [ 3] [001] +13:20:26 ============================================================================ +13:20:26 + + +waiting on router queue for slot.... +13:20:26 ============================================================================ +13:20:26 Slot Id : <290> +13:20:26 Transaction Type : RESPONSE +13:20:26 Received From : +13:20:26 ============================================================================ +13:20:26 FNo. Len. Field Value +13:20:26 ============================================================================ +13:20:26 [ 1] [ 4] [0810] +13:20:26 [ 7] [ 10] [0320062026] +13:20:26 [ 11] [ 6] [807186] +13:20:26 [ 15] [ 4] [0320] +13:20:26 [ 37] [ 12] [57913807186] +13:20:26 [ 39] [ 2] [00] +13:20:26 [ 70] [ 3] [001] +13:20:26 ============================================================================ +13:20:26 Sending to : +13:20:26 ============================================================================ +13:20:26 + + +waiting on router queue for slot.... +13:20:28 ============================================================================ +13:20:28 Slot Id : <267> +13:20:28 Transaction Type : REQUEST +13:20:28 Received From : +13:20:28 ============================================================================ +13:20:28 FNo. Len. Field Value +13:20:28 ============================================================================ +13:20:28 [ 1] [ 4] [0420] +13:20:28 [ 2] [ 16] [1808930500003637] +13:20:28 [ 3] [ 6] [011000] +13:20:28 [ 4] [ 12] [000080000000] +13:20:28 [ 7] [ 10] [0320131952] +13:20:28 [ 11] [ 6] [755591] +13:20:28 [ 12] [ 6] [131952] +13:20:28 [ 13] [ 4] [0320] +13:20:28 [ 15] [ 4] [0320] +13:20:28 [ 18] [ 4] [6011] +13:20:28 [ 22] [ 3] [900] +13:20:28 [ 25] [ 2] [02] +13:20:28 [ 28] [ 9] [C00002000] +13:20:28 [ 32] [ 6] [621354] +13:20:28 [ 35] [ 27] [1808930500003637=1803500532] +13:20:28 [ 37] [ 12] [507903177369] +13:20:28 [ 39] [ 2] [00] +13:20:28 [ 41] [ 8] [04002700] +13:20:28 [ 42] [ 15] [NATIVE ] +13:20:28 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +13:20:28 [ 49] [ 3] [418] +13:20:28 [ 90] [ 42] [020075559103201319520000062135400000000000] +13:20:28 ============================================================================ +13:20:28 + + +waiting on router queue for slot.... +13:20:28 Sending to : +13:20:28 ============================================================================ +13:20:31 ============================================================================ +13:20:31 Slot Id : <294> +13:20:31 Transaction Type : REQUEST +13:20:31 Received From : +13:20:31 ============================================================================ +13:20:31 FNo. Len. Field Value +13:20:31 ============================================================================ +13:20:31 [ 1] [ 4] [0420] +13:20:31 [ 2] [ 16] [6213545000794127] +13:20:31 [ 3] [ 6] [010000] +13:20:31 [ 4] [ 12] [000005000000] +13:20:31 [ 7] [ 10] [0320131701] +13:20:31 [ 11] [ 6] [946165] +13:20:31 [ 12] [ 6] [131701] +13:20:31 [ 13] [ 4] [0320] +13:20:31 [ 15] [ 4] [0320] +13:20:31 [ 18] [ 4] [6011] +13:20:31 [ 19] [ 3] [418] +13:20:31 [ 22] [ 3] [021] +13:20:31 [ 25] [ 2] [01] +13:20:31 [ 28] [ 9] [C00002000] +13:20:31 [ 32] [ 6] [668899] +13:20:31 [ 35] [ 32] [6213545000794127=491212019412427] +13:20:31 [ 37] [ 12] [507901161649] +13:20:31 [ 39] [ 2] [00] +13:20:31 [ 41] [ 8] [03217001] +13:20:31 [ 42] [ 15] [APT ] +13:20:31 [ 43] [ 40] [ THATENG UNIT XEKONG L] +13:20:31 [ 49] [ 3] [418] +13:20:31 [ 51] [ 3] [418] +13:20:31 [ 52] [ 16] [EDA61C4E82C7CCF0] +13:20:31 [ 90] [ 42] [020094616503201317010000066889900000000000] +13:20:31 ============================================================================ +13:20:31 + + +waiting on router queue for slot.... +13:20:31 Sending to : +13:20:31 ============================================================================ +13:20:33 ============================================================================ +13:20:33 Slot Id : <267> +13:20:33 Transaction Type : RESPONSE +13:20:33 Received From : +13:20:33 ============================================================================ +13:20:33 FNo. Len. Field Value +13:20:33 ============================================================================ +13:20:33 [ 1] [ 4] [0430] +13:20:33 [ 2] [ 16] [1808930500003637] +13:20:33 [ 3] [ 6] [011000] +13:20:33 [ 4] [ 12] [000080000000] +13:20:33 [ 7] [ 10] [0320131952] +13:20:33 [ 11] [ 6] [755591] +13:20:33 [ 12] [ 6] [131952] +13:20:33 [ 13] [ 4] [0320] +13:20:33 [ 15] [ 4] [0320] +13:20:33 [ 18] [ 4] [6011] +13:20:33 [ 22] [ 3] [900] +13:20:33 [ 25] [ 2] [02] +13:20:33 [ 28] [ 9] [C00002000] +13:20:33 [ 32] [ 6] [621354] +13:20:33 [ 35] [ 27] [1808930500003637=1803500532] +13:20:33 [ 37] [ 12] [507903177369] +13:20:33 [ 39] [ 2] [00] +13:20:33 [ 41] [ 8] [04002700] +13:20:33 [ 42] [ 15] [NATIVE ] +13:20:33 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +13:20:33 [ 49] [ 3] [418] +13:20:33 [ 90] [ 42] [020075559103201319520000062135400000000000] +13:20:33 ============================================================================ +13:20:33 Calculate Source COMM Id = 0 +13:20:33 ============================================================================ +13:20:33 + + +waiting on router queue for slot.... +13:20:34 ============================================================================ +13:20:34 Slot Id : <245> +13:20:34 Transaction Type : RESPONSE +13:20:34 Received From : +13:20:34 ============================================================================ +13:20:34 FNo. Len. Field Value +13:20:34 ============================================================================ +13:20:34 [ 1] [ 4] [0210] +13:20:34 [ 2] [ 16] [1808930500003637] +13:20:34 [ 3] [ 6] [011000] +13:20:34 [ 4] [ 12] [000080000000] +13:20:34 [ 6] [ 12] [000080000000] +13:20:34 [ 7] [ 10] [0320131952] +13:20:34 [ 11] [ 6] [755591] +13:20:34 [ 12] [ 6] [131952] +13:20:34 [ 13] [ 4] [0320] +13:20:34 [ 18] [ 4] [6011] +13:20:34 [ 19] [ 3] [418] +13:20:34 [ 22] [ 3] [021] +13:20:34 [ 28] [ 9] [D00002000] +13:20:34 [ 32] [ 6] [621354] +13:20:34 [ 35] [ 27] [1808930500003637=1803500532] +13:20:34 [ 37] [ 12] [507903177369] +13:20:34 [ 39] [ 2] [91] +13:20:34 [ 41] [ 8] [04002700] +13:20:34 [ 44] [ 3] [0X2] +13:20:34 [ 49] [ 3] [418] +13:20:34 [ 51] [ 3] [418] +13:20:34 [ 52] [ 16] [4D23291E3A6503F1] +13:20:34 ============================================================================ +13:20:34 Sending to : +13:20:34 ============================================================================ +13:20:34 + + +waiting on router queue for slot.... +13:20:36 ============================================================================ +13:20:36 Slot Id : <294> +13:20:36 Transaction Type : RESPONSE +13:20:36 Received From : +13:20:36 ============================================================================ +13:20:36 FNo. Len. Field Value +13:20:36 ============================================================================ +13:20:36 [ 1] [ 4] [0430] +13:20:36 [ 2] [ 16] [6213545000794127] +13:20:36 [ 3] [ 6] [010000] +13:20:36 [ 4] [ 12] [000005000000] +13:20:36 [ 7] [ 10] [0320131701] +13:20:36 [ 11] [ 6] [946165] +13:20:36 [ 12] [ 6] [131701] +13:20:36 [ 13] [ 4] [0320] +13:20:36 [ 15] [ 4] [0320] +13:20:36 [ 18] [ 4] [6011] +13:20:36 [ 19] [ 3] [418] +13:20:36 [ 22] [ 3] [021] +13:20:36 [ 25] [ 2] [01] +13:20:36 [ 28] [ 9] [C00002000] +13:20:36 [ 32] [ 6] [668899] +13:20:36 [ 35] [ 32] [6213545000794127=491212019412427] +13:20:36 [ 37] [ 12] [507901161649] +13:20:36 [ 39] [ 2] [00] +13:20:36 [ 41] [ 8] [03217001] +13:20:36 [ 42] [ 15] [APT ] +13:20:36 [ 43] [ 40] [ THATENG UNIT XEKONG L] +13:20:36 [ 49] [ 3] [418] +13:20:36 [ 51] [ 3] [418] +13:20:36 [ 52] [ 16] [EDA61C4E82C7CCF0] +13:20:36 [ 90] [ 42] [020094616503201317010000066889900000000000] +13:20:36 ============================================================================ +13:20:36 Calculate Source COMM Id = 4 +13:20:36 ============================================================================ +13:20:36 + + +waiting on router queue for slot.... +13:20:36 ============================================================================ +13:20:36 Slot Id : <271> +13:20:36 Transaction Type : REQUEST +13:20:36 Received From : +13:20:36 ============================================================================ +13:20:36 FNo. Len. Field Value +13:20:36 ============================================================================ +13:20:36 [ 1] [ 4] [0800] +13:20:36 [ 7] [ 10] [0320061944] +13:20:36 [ 11] [ 6] [156526] +13:20:36 [ 70] [ 3] [301] +13:20:36 ============================================================================ +13:20:36 + + +waiting on router queue for slot.... +13:20:36 Sending to : +13:20:36 ============================================================================ +13:20:36 ============================================================================ +13:20:36 Slot Id : <271> +13:20:36 Transaction Type : RESPONSE +13:20:36 Received From : +13:20:36 ============================================================================ +13:20:36 FNo. Len. Field Value +13:20:36 ============================================================================ +13:20:36 [ 1] [ 4] [0810] +13:20:36 [ 7] [ 10] [0320061944] +13:20:36 [ 11] [ 6] [156526] +13:20:36 [ 39] [ 2] [00] +13:20:36 [ 70] [ 3] [301] +13:20:36 ============================================================================ +13:20:36 Calculate Source COMM Id = 2 +13:20:36 ============================================================================ +13:20:36 + + +waiting on router queue for slot.... +13:20:37 ============================================================================ +13:20:37 Slot Id : <245> +13:20:37 Transaction Type : RESPONSE +13:20:37 Received From : +13:20:37 ============================================================================ +13:20:37 FNo. Len. Field Value +13:20:37 ============================================================================ +13:20:37 [ 1] [ 4] [0210] +13:20:37 [ 2] [ 16] [1808930500003637] +13:20:37 [ 3] [ 6] [011000] +13:20:37 [ 4] [ 12] [000080000000] +13:20:37 [ 6] [ 12] [000080000000] +13:20:37 [ 7] [ 10] [0320131952] +13:20:37 [ 11] [ 6] [755591] +13:20:37 [ 12] [ 6] [131952] +13:20:37 [ 13] [ 4] [0320] +13:20:37 [ 18] [ 4] [6011] +13:20:37 [ 19] [ 3] [418] +13:20:37 [ 22] [ 3] [021] +13:20:37 [ 28] [ 9] [D00002000] +13:20:37 [ 32] [ 6] [621354] +13:20:37 [ 35] [ 27] [1808930500003637=1803500532] +13:20:37 [ 37] [ 12] [507903177369] +13:20:37 [ 39] [ 2] [91] +13:20:37 [ 41] [ 8] [04002700] +13:20:37 [ 44] [ 3] [0X2] +13:20:37 [ 49] [ 3] [418] +13:20:37 [ 51] [ 3] [418] +13:20:37 [ 52] [ 16] [4D23291E3A6503F1] +13:20:37 ============================================================================ +13:20:37 Calculate Source COMM Id = 0 +13:20:37 ============================================================================ +13:20:37 + + +waiting on router queue for slot.... +13:20:38 ============================================================================ +13:20:38 Slot Id : <236> +13:20:38 Transaction Type : REQUEST +13:20:38 Received From : +13:20:38 ============================================================================ +13:20:38 FNo. Len. Field Value +13:20:38 ============================================================================ +13:20:38 [ 1] [ 4] [0200] +13:20:38 [ 2] [ 16] [6688990102723002] +13:20:38 [ 3] [ 6] [010000] +13:20:38 [ 4] [ 12] [000005000000] +13:20:38 [ 7] [ 10] [0320132033] +13:20:38 [ 11] [ 6] [755734] +13:20:38 [ 12] [ 6] [132033] +13:20:38 [ 13] [ 4] [0320] +13:20:38 [ 15] [ 4] [0320] +13:20:38 [ 18] [ 4] [6011] +13:20:38 [ 22] [ 3] [900] +13:20:38 [ 25] [ 2] [02] +13:20:38 [ 28] [ 9] [D00002000] +13:20:38 [ 32] [ 6] [621354] +13:20:38 [ 35] [ 37] [6688990102723002=42101231300243100000] +13:20:38 [ 37] [ 12] [507904707435] +13:20:38 [ 41] [ 8] [18000900] +13:20:38 [ 42] [ 15] [NATIVE ] +13:20:38 [ 43] [ 40] [Bounneau District Bounneua LAO] +13:20:38 [ 49] [ 3] [418] +13:20:38 [ 52] [ 16] [66FFBA06271D2155] +13:20:38 ============================================================================ +13:20:38 + + +waiting on router queue for slot.... +13:20:38 Sending to : +13:20:38 ============================================================================ +13:20:38 Sending to : +13:20:38 ============================================================================ +13:20:38 ============================================================================ +13:20:38 Slot Id : <236> +13:20:38 Transaction Type : REQUEST +13:20:38 Received From : +13:20:38 ============================================================================ +13:20:38 FNo. Len. Field Value +13:20:38 ============================================================================ +13:20:38 [ 1] [ 4] [0200] +13:20:38 [ 2] [ 16] [6688990102723002] +13:20:38 [ 3] [ 6] [010000] +13:20:38 [ 4] [ 12] [000005000000] +13:20:38 [ 7] [ 10] [0320132033] +13:20:38 [ 11] [ 6] [755734] +13:20:38 [ 12] [ 6] [132033] +13:20:38 [ 13] [ 4] [0320] +13:20:38 [ 15] [ 4] [0320] +13:20:38 [ 18] [ 4] [6011] +13:20:38 [ 22] [ 3] [900] +13:20:38 [ 25] [ 2] [02] +13:20:38 [ 28] [ 9] [D00002000] +13:20:38 [ 32] [ 6] [621354] +13:20:38 [ 35] [ 37] [6688990102723002=42101231300243100000] +13:20:38 [ 37] [ 12] [507904707435] +13:20:38 [ 41] [ 8] [18000900] +13:20:38 [ 42] [ 15] [NATIVE ] +13:20:38 [ 43] [ 40] [Bounneau District Bounneua LAO] +13:20:38 [ 49] [ 3] [418] +13:20:38 [ 52] [ 16] [66FFBA06271D2155] +13:20:38 ============================================================================ +13:20:38 + + +waiting on router queue for slot.... +13:20:38 Sending to : +13:20:38 ============================================================================ +13:20:38 ============================================================================ +13:20:38 Slot Id : <236> +13:20:38 Transaction Type : REQUEST +13:20:38 Received From : +13:20:38 ============================================================================ +13:20:38 FNo. Len. Field Value +13:20:38 ============================================================================ +13:20:38 [ 1] [ 4] [0200] +13:20:38 [ 2] [ 16] [6688990102723002] +13:20:38 [ 3] [ 6] [010000] +13:20:38 [ 4] [ 12] [000005000000] +13:20:38 [ 7] [ 10] [0320132033] +13:20:38 [ 11] [ 6] [755734] +13:20:38 [ 12] [ 6] [132033] +13:20:38 [ 13] [ 4] [0320] +13:20:38 [ 15] [ 4] [0320] +13:20:38 [ 18] [ 4] [6011] +13:20:38 [ 22] [ 3] [900] +13:20:38 [ 25] [ 2] [02] +13:20:38 [ 28] [ 9] [D00002000] +13:20:38 [ 32] [ 6] [621354] +13:20:38 [ 35] [ 37] [6688990102723002=42101231300243100000] +13:20:38 [ 37] [ 12] [507904707435] +13:20:38 [ 41] [ 8] [18000900] +13:20:38 [ 42] [ 15] [NATIVE ] +13:20:38 [ 43] [ 40] [Bounneau District Bounneua LAO] +13:20:38 [ 49] [ 3] [418] +13:20:38 [ 52] [ 16] [26BBF34B2F2A2AC2] +13:20:38 ============================================================================ +13:20:38 + + +waiting on router queue for slot.... +13:20:38 Sending to : <4> +13:20:38 ============================================================================ +13:20:39 ============================================================================ +13:20:39 Slot Id : <303> +13:20:39 Transaction Type : REQUEST +13:20:39 Received From : +13:20:39 ============================================================================ +13:20:39 FNo. Len. Field Value +13:20:39 ============================================================================ +13:20:39 [ 1] [ 4] [0200] +13:20:39 [ 2] [ 16] [6213545000181192] +13:20:39 [ 3] [ 6] [010000] +13:20:39 [ 4] [ 12] [000002000000] +13:20:39 [ 7] [ 10] [0320131830] +13:20:39 [ 11] [ 6] [946237] +13:20:39 [ 12] [ 6] [131830] +13:20:39 [ 13] [ 4] [0320] +13:20:39 [ 15] [ 4] [0320] +13:20:39 [ 18] [ 4] [6011] +13:20:39 [ 19] [ 3] [418] +13:20:39 [ 22] [ 3] [021] +13:20:39 [ 25] [ 2] [01] +13:20:39 [ 28] [ 9] [D00002000] +13:20:39 [ 32] [ 6] [668899] +13:20:39 [ 35] [ 32] [6213545000181192=491212018119855] +13:20:39 [ 37] [ 12] [507901841863] +13:20:39 [ 41] [ 8] [03009004] +13:20:39 [ 42] [ 15] [APT ] +13:20:39 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:20:39 [ 49] [ 3] [418] +13:20:39 [ 52] [ 16] [AB3CA23D94AC8F67] +13:20:39 ============================================================================ +13:20:39 + + +waiting on router queue for slot.... +13:20:39 Sending to : +13:20:39 ============================================================================ +13:20:39 Sending to : +13:20:39 ============================================================================ +13:20:39 ============================================================================ +13:20:39 Slot Id : <236> +13:20:39 Transaction Type : RESPONSE +13:20:39 Received From : +13:20:39 ============================================================================ +13:20:39 FNo. Len. Field Value +13:20:39 ============================================================================ +13:20:39 [ 1] [ 4] [0210] +13:20:39 [ 2] [ 16] [6688990102723002] +13:20:39 [ 3] [ 6] [010000] +13:20:39 [ 4] [ 12] [000005000000] +13:20:39 [ 11] [ 6] [755734] +13:20:39 [ 12] [ 6] [132033] +13:20:39 [ 15] [ 4] [0320] +13:20:39 [ 18] [ 4] [6011] +13:20:39 [ 32] [ 6] [621354] +13:20:39 [ 35] [ 37] [6688990102723002=42101231300243100000] +13:20:39 [ 37] [ 12] [507904707435] +13:20:39 [ 38] [ 6] [123735] +13:20:39 [ 39] [ 2] [00] +13:20:39 [ 41] [ 8] [18000900] +13:20:39 [ 49] [ 3] [418] +13:20:39 [ 54] [ 20] [0002418C000540498068] +13:20:39 ============================================================================ +13:20:39 Sending to : +13:20:39 ============================================================================ +13:20:39 + + +waiting on router queue for slot.... +13:20:39 ============================================================================ +13:20:39 Slot Id : <303> +13:20:39 Transaction Type : REQUEST +13:20:39 Received From : +13:20:39 ============================================================================ +13:20:39 FNo. Len. Field Value +13:20:39 ============================================================================ +13:20:39 [ 1] [ 4] [0200] +13:20:39 [ 2] [ 16] [6213545000181192] +13:20:39 [ 3] [ 6] [010000] +13:20:39 [ 4] [ 12] [000002000000] +13:20:39 [ 7] [ 10] [0320131830] +13:20:39 [ 11] [ 6] [946237] +13:20:39 [ 12] [ 6] [131830] +13:20:39 [ 13] [ 4] [0320] +13:20:39 [ 15] [ 4] [0320] +13:20:39 [ 18] [ 4] [6011] +13:20:39 [ 19] [ 3] [418] +13:20:39 [ 22] [ 3] [021] +13:20:39 [ 25] [ 2] [01] +13:20:39 [ 28] [ 9] [D00002000] +13:20:39 [ 32] [ 6] [668899] +13:20:39 [ 35] [ 32] [6213545000181192=491212018119855] +13:20:39 [ 37] [ 12] [507901841863] +13:20:39 [ 41] [ 8] [03009004] +13:20:39 [ 42] [ 15] [APT ] +13:20:39 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:20:39 [ 49] [ 3] [418] +13:20:39 [ 52] [ 16] [AB3CA23D94AC8F67] +13:20:39 ============================================================================ +13:20:39 + + +waiting on router queue for slot.... +13:20:39 Sending to : +13:20:39 ============================================================================ +13:20:39 ============================================================================ +13:20:39 Slot Id : <303> +13:20:39 Transaction Type : REQUEST +13:20:39 Received From : +13:20:39 ============================================================================ +13:20:39 FNo. Len. Field Value +13:20:39 ============================================================================ +13:20:39 [ 1] [ 4] [0200] +13:20:39 [ 2] [ 16] [6213545000181192] +13:20:39 [ 3] [ 6] [010000] +13:20:39 [ 4] [ 12] [000002000000] +13:20:39 [ 7] [ 10] [0320131830] +13:20:39 [ 11] [ 6] [946237] +13:20:39 [ 12] [ 6] [131830] +13:20:39 [ 13] [ 4] [0320] +13:20:39 [ 15] [ 4] [0320] +13:20:39 [ 18] [ 4] [6011] +13:20:39 [ 19] [ 3] [418] +13:20:39 [ 22] [ 3] [021] +13:20:39 [ 25] [ 2] [01] +13:20:39 [ 28] [ 9] [D00002000] +13:20:39 [ 32] [ 6] [668899] +13:20:39 [ 35] [ 32] [6213545000181192=491212018119855] +13:20:39 [ 37] [ 12] [507901841863] +13:20:39 [ 41] [ 8] [03009004] +13:20:39 [ 42] [ 15] [APT ] +13:20:39 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:20:39 [ 49] [ 3] [418] +13:20:39 [ 52] [ 16] [361A911916BB4729] +13:20:39 ============================================================================ +13:20:39 + + +waiting on router queue for slot.... +13:20:39 Sending to : <0> +13:20:39 ============================================================================ +13:20:40 ============================================================================ +13:20:40 Slot Id : <303> +13:20:40 Transaction Type : RESPONSE +13:20:40 Received From : +13:20:40 ============================================================================ +13:20:40 FNo. Len. Field Value +13:20:40 ============================================================================ +13:20:40 [ 1] [ 4] [0210] +13:20:40 [ 2] [ 16] [6213545000181192] +13:20:40 [ 3] [ 6] [010000] +13:20:40 [ 4] [ 12] [000002000000] +13:20:40 [ 7] [ 10] [0320131830] +13:20:40 [ 11] [ 6] [946237] +13:20:40 [ 12] [ 6] [131830] +13:20:40 [ 13] [ 4] [0320] +13:20:40 [ 15] [ 4] [0320] +13:20:40 [ 18] [ 4] [6011] +13:20:40 [ 19] [ 3] [418] +13:20:40 [ 32] [ 6] [668899] +13:20:40 [ 35] [ 32] [6213545000181192=491212018119855] +13:20:40 [ 37] [ 12] [507901841863] +13:20:40 [ 38] [ 6] [946237] +13:20:40 [ 39] [ 2] [51] +13:20:40 [ 41] [ 8] [03009004] +13:20:40 [ 49] [ 3] [418] +13:20:40 [ 54] [ 40] [0001418C0000053911310002418C000005391131] +13:20:40 ============================================================================ +13:20:40 Sending to : +13:20:40 ============================================================================ +13:20:40 + + +waiting on router queue for slot.... +13:20:41 ============================================================================ +13:20:41 Slot Id : <236> +13:20:41 Transaction Type : RESPONSE +13:20:41 Received From : +13:20:41 ============================================================================ +13:20:41 FNo. Len. Field Value +13:20:41 ============================================================================ +13:20:41 [ 1] [ 4] [0210] +13:20:41 [ 2] [ 16] [6688990102723002] +13:20:41 [ 3] [ 6] [010000] +13:20:41 [ 4] [ 12] [000005000000] +13:20:41 [ 11] [ 6] [755734] +13:20:41 [ 12] [ 6] [132033] +13:20:41 [ 15] [ 4] [0320] +13:20:41 [ 18] [ 4] [6011] +13:20:41 [ 32] [ 6] [621354] +13:20:41 [ 35] [ 37] [6688990102723002=42101231300243100000] +13:20:41 [ 37] [ 12] [507904707435] +13:20:41 [ 38] [ 6] [123735] +13:20:41 [ 39] [ 2] [00] +13:20:41 [ 41] [ 8] [18000900] +13:20:41 [ 49] [ 3] [418] +13:20:41 [ 54] [ 20] [0002418C000540498068] +13:20:41 ============================================================================ +13:20:41 Calculate Source COMM Id = 0 +13:20:41 ============================================================================ +13:20:41 + + +waiting on router queue for slot.... +13:20:42 ============================================================================ +13:20:42 Slot Id : <303> +13:20:42 Transaction Type : RESPONSE +13:20:42 Received From : +13:20:42 ============================================================================ +13:20:42 FNo. Len. Field Value +13:20:42 ============================================================================ +13:20:42 [ 1] [ 4] [0210] +13:20:42 [ 2] [ 16] [6213545000181192] +13:20:42 [ 3] [ 6] [010000] +13:20:42 [ 4] [ 12] [000002000000] +13:20:42 [ 7] [ 10] [0320131830] +13:20:42 [ 11] [ 6] [946237] +13:20:42 [ 12] [ 6] [131830] +13:20:42 [ 13] [ 4] [0320] +13:20:42 [ 15] [ 4] [0320] +13:20:42 [ 18] [ 4] [6011] +13:20:42 [ 19] [ 3] [418] +13:20:42 [ 32] [ 6] [668899] +13:20:42 [ 35] [ 32] [6213545000181192=491212018119855] +13:20:42 [ 37] [ 12] [507901841863] +13:20:42 [ 38] [ 6] [946237] +13:20:42 [ 39] [ 2] [51] +13:20:42 [ 41] [ 8] [03009004] +13:20:42 [ 49] [ 3] [418] +13:20:42 [ 54] [ 40] [0001418C0000053911310002418C000005391131] +13:20:42 ============================================================================ +13:20:42 Calculate Source COMM Id = 4 +13:20:42 ============================================================================ +13:20:42 + + +waiting on router queue for slot.... +13:20:47 ============================================================================ +13:20:47 Slot Id : <217> +13:20:47 Transaction Type : REQUEST +13:20:47 Received From : +13:20:47 ============================================================================ +13:20:47 FNo. Len. Field Value +13:20:47 ============================================================================ +13:20:47 [ 1] [ 4] [0800] +13:20:47 [ 7] [ 10] [0320061955] +13:20:47 [ 11] [ 6] [156527] +13:20:47 [ 70] [ 3] [301] +13:20:47 ============================================================================ +13:20:47 + + +waiting on router queue for slot.... +13:20:47 Sending to : +13:20:47 ============================================================================ +13:20:47 ============================================================================ +13:20:47 Slot Id : <217> +13:20:47 Transaction Type : RESPONSE +13:20:47 Received From : +13:20:47 ============================================================================ +13:20:47 FNo. Len. Field Value +13:20:47 ============================================================================ +13:20:47 [ 1] [ 4] [0810] +13:20:47 [ 7] [ 10] [0320061955] +13:20:47 [ 11] [ 6] [156527] +13:20:47 [ 39] [ 2] [00] +13:20:47 [ 70] [ 3] [301] +13:20:47 ============================================================================ +13:20:47 Calculate Source COMM Id = 2 +13:20:47 ============================================================================ +13:20:47 + + +waiting on router queue for slot.... +13:20:56 ============================================================================ +13:20:56 Slot Id : <293> +13:20:56 Transaction Type : REQUEST +13:20:56 Received From : +13:20:56 ============================================================================ +13:20:56 FNo. Len. Field Value +13:20:56 ============================================================================ +13:20:56 [ 1] [ 4] [0200] +13:20:56 [ 2] [ 16] [6213541000457278] +13:20:56 [ 3] [ 6] [011000] +13:20:56 [ 4] [ 12] [000100000000] +13:20:56 [ 7] [ 10] [0320132843] +13:20:56 [ 11] [ 6] [251238] +13:20:56 [ 12] [ 6] [132843] +13:20:56 [ 13] [ 4] [0320] +13:20:56 [ 14] [ 4] [4912] +13:20:56 [ 15] [ 4] [0320] +13:20:56 [ 18] [ 4] [6011] +13:20:56 [ 22] [ 3] [900] +13:20:56 [ 25] [ 2] [02] +13:20:56 [ 28] [ 9] [D00002000] +13:20:56 [ 32] [ 6] [220699] +13:20:56 [ 35] [ 32] [6213541000457278=491212015727049] +13:20:56 [ 37] [ 12] [507900336214] +13:20:56 [ 41] [ 8] [01001900] +13:20:56 [ 42] [ 15] [APTRA ] +13:20:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:20:56 [ 49] [ 3] [418] +13:20:56 [ 52] [ 16] [76525580251D9D81] +13:20:56 ============================================================================ +13:20:56 + + +waiting on router queue for slot.... +13:20:56 Sending to : +13:20:56 ============================================================================ +13:20:56 Sending to : +13:20:56 ============================================================================ +13:20:56 ============================================================================ +13:20:56 Slot Id : <293> +13:20:56 Transaction Type : REQUEST +13:20:56 Received From : +13:20:56 ============================================================================ +13:20:56 FNo. Len. Field Value +13:20:56 ============================================================================ +13:20:56 [ 1] [ 4] [0200] +13:20:56 [ 2] [ 16] [6213541000457278] +13:20:56 [ 3] [ 6] [011000] +13:20:56 [ 4] [ 12] [000100000000] +13:20:56 [ 7] [ 10] [0320132843] +13:20:56 [ 11] [ 6] [251238] +13:20:56 [ 12] [ 6] [132843] +13:20:56 [ 13] [ 4] [0320] +13:20:56 [ 14] [ 4] [4912] +13:20:56 [ 15] [ 4] [0320] +13:20:56 [ 18] [ 4] [6011] +13:20:56 [ 22] [ 3] [900] +13:20:56 [ 25] [ 2] [02] +13:20:56 [ 28] [ 9] [D00002000] +13:20:56 [ 32] [ 6] [220699] +13:20:56 [ 35] [ 32] [6213541000457278=491212015727049] +13:20:56 [ 37] [ 12] [507900336214] +13:20:56 [ 41] [ 8] [01001900] +13:20:56 [ 42] [ 15] [APTRA ] +13:20:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:20:56 [ 49] [ 3] [418] +13:20:56 [ 52] [ 16] [76525580251D9D81] +13:20:56 ============================================================================ +13:20:56 + + +waiting on router queue for slot.... +13:20:56 Sending to : +13:20:56 ============================================================================ +13:20:56 ============================================================================ +13:20:56 Slot Id : <293> +13:20:56 Transaction Type : REQUEST +13:20:56 Received From : +13:20:56 ============================================================================ +13:20:56 FNo. Len. Field Value +13:20:56 ============================================================================ +13:20:56 [ 1] [ 4] [0200] +13:20:56 [ 2] [ 16] [6213541000457278] +13:20:56 [ 3] [ 6] [011000] +13:20:56 [ 4] [ 12] [000100000000] +13:20:56 [ 7] [ 10] [0320132843] +13:20:56 [ 11] [ 6] [251238] +13:20:56 [ 12] [ 6] [132843] +13:20:56 [ 13] [ 4] [0320] +13:20:56 [ 14] [ 4] [4912] +13:20:56 [ 15] [ 4] [0320] +13:20:56 [ 18] [ 4] [6011] +13:20:56 [ 22] [ 3] [900] +13:20:56 [ 25] [ 2] [02] +13:20:56 [ 28] [ 9] [D00002000] +13:20:56 [ 32] [ 6] [220699] +13:20:56 [ 35] [ 32] [6213541000457278=491212015727049] +13:20:56 [ 37] [ 12] [507900336214] +13:20:56 [ 41] [ 8] [01001900] +13:20:56 [ 42] [ 15] [APTRA ] +13:20:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:20:56 [ 49] [ 3] [418] +13:20:56 [ 52] [ 16] [340C3748C978291D] +13:20:56 ============================================================================ +13:20:56 + + +waiting on router queue for slot.... +13:20:56 Sending to : <0> +13:20:56 ============================================================================ +13:20:57 ============================================================================ +13:20:57 Slot Id : <293> +13:20:57 Transaction Type : RESPONSE +13:20:57 Received From : +13:20:57 ============================================================================ +13:20:57 FNo. Len. Field Value +13:20:57 ============================================================================ +13:20:57 [ 1] [ 4] [0210] +13:20:57 [ 2] [ 16] [6213541000457278] +13:20:57 [ 3] [ 6] [011000] +13:20:57 [ 4] [ 12] [000100000000] +13:20:57 [ 7] [ 10] [0320132843] +13:20:57 [ 11] [ 6] [251238] +13:20:57 [ 12] [ 6] [132843] +13:20:57 [ 13] [ 4] [0320] +13:20:57 [ 15] [ 4] [0320] +13:20:57 [ 18] [ 4] [6011] +13:20:57 [ 32] [ 6] [220699] +13:20:57 [ 35] [ 32] [6213541000457278=491212015727049] +13:20:57 [ 37] [ 12] [507900336214] +13:20:57 [ 38] [ 6] [431594] +13:20:57 [ 39] [ 2] [00] +13:20:57 [ 41] [ 8] [01001900] +13:20:57 [ 49] [ 3] [418] +13:20:57 [ 54] [ 40] [1001418C0040023812781002418C004002381278] +13:20:57 ============================================================================ +13:20:57 Sending to : +13:20:57 ============================================================================ +13:20:57 + + +waiting on router queue for slot.... +13:20:59 ============================================================================ +13:20:59 Slot Id : <293> +13:20:59 Transaction Type : RESPONSE +13:20:59 Received From : +13:20:59 ============================================================================ +13:20:59 FNo. Len. Field Value +13:20:59 ============================================================================ +13:20:59 [ 1] [ 4] [0210] +13:20:59 [ 2] [ 16] [6213541000457278] +13:20:59 [ 3] [ 6] [011000] +13:20:59 [ 4] [ 12] [000100000000] +13:20:59 [ 7] [ 10] [0320132843] +13:20:59 [ 11] [ 6] [251238] +13:20:59 [ 12] [ 6] [132843] +13:20:59 [ 13] [ 4] [0320] +13:20:59 [ 15] [ 4] [0320] +13:20:59 [ 18] [ 4] [6011] +13:20:59 [ 32] [ 6] [220699] +13:20:59 [ 35] [ 32] [6213541000457278=491212015727049] +13:20:59 [ 37] [ 12] [507900336214] +13:20:59 [ 38] [ 6] [431594] +13:20:59 [ 39] [ 2] [00] +13:20:59 [ 41] [ 8] [01001900] +13:20:59 [ 49] [ 3] [418] +13:20:59 [ 54] [ 40] [1001418C0040023812781002418C004002381278] +13:20:59 ============================================================================ +13:20:59 Calculate Source COMM Id = 1 +13:20:59 ============================================================================ +13:20:59 + + +waiting on router queue for slot.... +13:20:59 ============================================================================ +13:20:59 Slot Id : <298> +13:20:59 Transaction Type : REQUEST +13:20:59 Received From : +13:20:59 ============================================================================ +13:20:59 FNo. Len. Field Value +13:20:59 ============================================================================ +13:20:59 [ 1] [ 4] [0800] +13:20:59 [ 7] [ 10] [0320062006] +13:20:59 [ 11] [ 6] [156528] +13:20:59 [ 70] [ 3] [301] +13:20:59 ============================================================================ +13:20:59 + + +waiting on router queue for slot.... +13:20:59 Sending to : +13:20:59 ============================================================================ +13:20:59 ============================================================================ +13:20:59 Slot Id : <298> +13:20:59 Transaction Type : RESPONSE +13:20:59 Received From : +13:20:59 ============================================================================ +13:20:59 FNo. Len. Field Value +13:20:59 ============================================================================ +13:20:59 [ 1] [ 4] [0810] +13:20:59 [ 7] [ 10] [0320062006] +13:20:59 [ 11] [ 6] [156528] +13:20:59 [ 39] [ 2] [00] +13:20:59 [ 70] [ 3] [301] +13:20:59 ============================================================================ +13:20:59 Calculate Source COMM Id = 2 +13:20:59 ============================================================================ +13:20:59 + + +waiting on router queue for slot.... +13:21:11 ============================================================================ +13:21:11 Slot Id : <278> +13:21:11 Transaction Type : REQUEST +13:21:11 Received From : +13:21:11 ============================================================================ +13:21:11 FNo. Len. Field Value +13:21:11 ============================================================================ +13:21:11 [ 1] [ 4] [0800] +13:21:11 [ 7] [ 10] [0320062019] +13:21:11 [ 11] [ 6] [156529] +13:21:11 [ 70] [ 3] [301] +13:21:11 ============================================================================ +13:21:11 + + +waiting on router queue for slot.... +13:21:11 Sending to : +13:21:11 ============================================================================ +13:21:11 ============================================================================ +13:21:11 Slot Id : <278> +13:21:11 Transaction Type : RESPONSE +13:21:11 Received From : +13:21:11 ============================================================================ +13:21:11 FNo. Len. Field Value +13:21:11 ============================================================================ +13:21:11 [ 1] [ 4] [0810] +13:21:11 [ 7] [ 10] [0320062019] +13:21:11 [ 11] [ 6] [156529] +13:21:11 [ 39] [ 2] [00] +13:21:11 [ 70] [ 3] [301] +13:21:11 ============================================================================ +13:21:11 Calculate Source COMM Id = 2 +13:21:11 ============================================================================ +13:21:11 + + +waiting on router queue for slot.... +13:21:22 ============================================================================ +13:21:22 Slot Id : <257> +13:21:22 Transaction Type : REQUEST +13:21:22 Received From : +13:21:22 ============================================================================ +13:21:22 FNo. Len. Field Value +13:21:22 ============================================================================ +13:21:22 [ 1] [ 4] [0800] +13:21:22 [ 7] [ 10] [0320061912] +13:21:22 [ 11] [ 6] [030068] +13:21:22 [ 37] [ 12] [57913030068] +13:21:22 [ 70] [ 3] [301] +13:21:22 ============================================================================ +13:21:22 + + +waiting on router queue for slot.... +13:21:22 Sending to : +13:21:22 ============================================================================ +13:21:22 ============================================================================ +13:21:22 Slot Id : <257> +13:21:22 Transaction Type : RESPONSE +13:21:22 Received From : +13:21:22 ============================================================================ +13:21:22 FNo. Len. Field Value +13:21:22 ============================================================================ +13:21:22 [ 1] [ 4] [0810] +13:21:22 [ 7] [ 10] [0320061912] +13:21:22 [ 11] [ 6] [030068] +13:21:22 [ 37] [ 12] [579130300680] +13:21:22 [ 39] [ 2] [00] +13:21:22 [ 70] [ 3] [810] +13:21:22 ============================================================================ +13:21:22 Calculate Source COMM Id = 4 +13:21:22 ============================================================================ +13:21:22 + + +waiting on router queue for slot.... +13:21:24 ============================================================================ +13:21:24 Slot Id : <299> +13:21:24 Transaction Type : REQUEST +13:21:24 Received From : +13:21:24 ============================================================================ +13:21:24 FNo. Len. Field Value +13:21:24 ============================================================================ +13:21:24 [ 1] [ 4] [0800] +13:21:24 [ 7] [ 10] [0320062031] +13:21:24 [ 11] [ 6] [156530] +13:21:24 [ 70] [ 3] [301] +13:21:24 ============================================================================ +13:21:24 + + +waiting on router queue for slot.... +13:21:24 Sending to : +13:21:24 ============================================================================ +13:21:24 ============================================================================ +13:21:24 Slot Id : <299> +13:21:24 Transaction Type : RESPONSE +13:21:24 Received From : +13:21:24 ============================================================================ +13:21:24 FNo. Len. Field Value +13:21:24 ============================================================================ +13:21:24 [ 1] [ 4] [0810] +13:21:24 [ 7] [ 10] [0320062031] +13:21:24 [ 11] [ 6] [156530] +13:21:24 [ 39] [ 2] [00] +13:21:24 [ 70] [ 3] [301] +13:21:24 ============================================================================ +13:21:24 Calculate Source COMM Id = 2 +13:21:24 ============================================================================ +13:21:24 + + +waiting on router queue for slot.... +13:21:28 ============================================================================ +13:21:28 Slot Id : <300> +13:21:28 Transaction Type : REQUEST +13:21:28 Received From : +13:21:28 ============================================================================ +13:21:28 FNo. Len. Field Value +13:21:28 ============================================================================ +13:21:28 [ 1] [ 4] [0800] +13:21:28 [ 2] [ 5] [02531] +13:21:28 [ 3] [ 6] [579138] +13:21:28 [ 7] [ 10] [0320062128] +13:21:28 [ 11] [ 6] [807187] +13:21:28 [ 15] [ 10] [0320062128] +13:21:28 [ 37] [ 11] [57913807187] +13:21:28 [ 70] [ 3] [001] +13:21:28 ============================================================================ +13:21:28 + + +waiting on router queue for slot.... +13:21:28 ============================================================================ +13:21:28 Slot Id : <300> +13:21:28 Transaction Type : RESPONSE +13:21:28 Received From : +13:21:28 ============================================================================ +13:21:28 FNo. Len. Field Value +13:21:28 ============================================================================ +13:21:28 [ 1] [ 4] [0810] +13:21:28 [ 7] [ 10] [0320062128] +13:21:28 [ 11] [ 6] [807187] +13:21:28 [ 15] [ 4] [0320] +13:21:28 [ 37] [ 12] [57913807187] +13:21:28 [ 39] [ 2] [00] +13:21:28 [ 70] [ 3] [001] +13:21:28 ============================================================================ +13:21:28 Sending to : +13:21:28 ============================================================================ +13:21:28 + + +waiting on router queue for slot.... +13:21:35 ============================================================================ +13:21:35 Slot Id : <295> +13:21:35 Transaction Type : REQUEST +13:21:35 Received From : +13:21:35 ============================================================================ +13:21:35 FNo. Len. Field Value +13:21:35 ============================================================================ +13:21:35 [ 1] [ 4] [0200] +13:21:35 [ 2] [ 16] [6213544001957619] +13:21:35 [ 3] [ 6] [010000] +13:21:35 [ 4] [ 12] [000030000000] +13:21:35 [ 7] [ 10] [0320131926] +13:21:35 [ 11] [ 6] [946276] +13:21:35 [ 12] [ 6] [131926] +13:21:35 [ 13] [ 4] [0320] +13:21:35 [ 15] [ 4] [0320] +13:21:35 [ 18] [ 4] [6011] +13:21:35 [ 19] [ 3] [418] +13:21:35 [ 22] [ 3] [021] +13:21:35 [ 25] [ 2] [01] +13:21:35 [ 28] [ 9] [D00002000] +13:21:35 [ 32] [ 6] [668899] +13:21:35 [ 35] [ 32] [6213544001957619=491212015761035] +13:21:35 [ 37] [ 12] [507901841865] +13:21:35 [ 41] [ 8] [03009004] +13:21:35 [ 42] [ 15] [APT ] +13:21:35 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:21:35 [ 49] [ 3] [418] +13:21:35 [ 52] [ 16] [57468872A692C3B3] +13:21:35 ============================================================================ +13:21:35 + + +waiting on router queue for slot.... +13:21:35 Sending to : +13:21:35 ============================================================================ +13:21:35 Sending to : +13:21:35 ============================================================================ +13:21:36 ============================================================================ +13:21:36 Slot Id : <295> +13:21:36 Transaction Type : REQUEST +13:21:36 Received From : +13:21:36 ============================================================================ +13:21:36 FNo. Len. Field Value +13:21:36 ============================================================================ +13:21:36 [ 1] [ 4] [0200] +13:21:36 [ 2] [ 16] [6213544001957619] +13:21:36 [ 3] [ 6] [010000] +13:21:36 [ 4] [ 12] [000030000000] +13:21:36 [ 7] [ 10] [0320131926] +13:21:36 [ 11] [ 6] [946276] +13:21:36 [ 12] [ 6] [131926] +13:21:36 [ 13] [ 4] [0320] +13:21:36 [ 15] [ 4] [0320] +13:21:36 [ 18] [ 4] [6011] +13:21:36 [ 19] [ 3] [418] +13:21:36 [ 22] [ 3] [021] +13:21:36 [ 25] [ 2] [01] +13:21:36 [ 28] [ 9] [D00002000] +13:21:36 [ 32] [ 6] [668899] +13:21:36 [ 35] [ 32] [6213544001957619=491212015761035] +13:21:36 [ 37] [ 12] [507901841865] +13:21:36 [ 41] [ 8] [03009004] +13:21:36 [ 42] [ 15] [APT ] +13:21:36 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:21:36 [ 49] [ 3] [418] +13:21:36 [ 52] [ 16] [57468872A692C3B3] +13:21:36 ============================================================================ +13:21:36 + + +waiting on router queue for slot.... +13:21:36 Sending to : +13:21:36 ============================================================================ +13:21:36 ============================================================================ +13:21:36 Slot Id : <295> +13:21:36 Transaction Type : REQUEST +13:21:36 Received From : +13:21:36 ============================================================================ +13:21:36 FNo. Len. Field Value +13:21:36 ============================================================================ +13:21:36 [ 1] [ 4] [0200] +13:21:36 [ 2] [ 16] [6213544001957619] +13:21:36 [ 3] [ 6] [010000] +13:21:36 [ 4] [ 12] [000030000000] +13:21:36 [ 7] [ 10] [0320131926] +13:21:36 [ 11] [ 6] [946276] +13:21:36 [ 12] [ 6] [131926] +13:21:36 [ 13] [ 4] [0320] +13:21:36 [ 15] [ 4] [0320] +13:21:36 [ 18] [ 4] [6011] +13:21:36 [ 19] [ 3] [418] +13:21:36 [ 22] [ 3] [021] +13:21:36 [ 25] [ 2] [01] +13:21:36 [ 28] [ 9] [D00002000] +13:21:36 [ 32] [ 6] [668899] +13:21:36 [ 35] [ 32] [6213544001957619=491212015761035] +13:21:36 [ 37] [ 12] [507901841865] +13:21:36 [ 41] [ 8] [03009004] +13:21:36 [ 42] [ 15] [APT ] +13:21:36 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +13:21:36 [ 49] [ 3] [418] +13:21:36 [ 52] [ 16] [8149E212C8C1D937] +13:21:36 ============================================================================ +13:21:36 + + +waiting on router queue for slot.... +13:21:36 Sending to : <0> +13:21:36 ============================================================================ +13:21:36 ============================================================================ +13:21:36 Slot Id : <295> +13:21:36 Transaction Type : RESPONSE +13:21:36 Received From : +13:21:36 ============================================================================ +13:21:36 FNo. Len. Field Value +13:21:36 ============================================================================ +13:21:36 [ 1] [ 4] [0210] +13:21:36 [ 2] [ 16] [6213544001957619] +13:21:36 [ 3] [ 6] [010000] +13:21:36 [ 4] [ 12] [000030000000] +13:21:36 [ 7] [ 10] [0320131926] +13:21:36 [ 11] [ 6] [946276] +13:21:36 [ 12] [ 6] [131926] +13:21:36 [ 13] [ 4] [0320] +13:21:36 [ 15] [ 4] [0320] +13:21:36 [ 18] [ 4] [6011] +13:21:36 [ 19] [ 3] [418] +13:21:36 [ 32] [ 6] [668899] +13:21:36 [ 35] [ 32] [6213544001957619=491212015761035] +13:21:36 [ 37] [ 12] [507901841865] +13:21:36 [ 38] [ 6] [889013] +13:21:36 [ 39] [ 2] [00] +13:21:36 [ 41] [ 8] [03009004] +13:21:36 [ 49] [ 3] [418] +13:21:36 [ 54] [ 40] [0001418C0000102801270002418C000010280127] +13:21:36 ============================================================================ +13:21:36 Sending to : +13:21:36 ============================================================================ +13:21:36 + + +waiting on router queue for slot.... +13:21:38 ============================================================================ +13:21:38 Slot Id : <295> +13:21:38 Transaction Type : RESPONSE +13:21:38 Received From : +13:21:38 ============================================================================ +13:21:38 FNo. Len. Field Value +13:21:38 ============================================================================ +13:21:38 [ 1] [ 4] [0210] +13:21:38 [ 2] [ 16] [6213544001957619] +13:21:38 [ 3] [ 6] [010000] +13:21:38 [ 4] [ 12] [000030000000] +13:21:38 [ 7] [ 10] [0320131926] +13:21:38 [ 11] [ 6] [946276] +13:21:38 [ 12] [ 6] [131926] +13:21:38 [ 13] [ 4] [0320] +13:21:38 [ 15] [ 4] [0320] +13:21:38 [ 18] [ 4] [6011] +13:21:38 [ 19] [ 3] [418] +13:21:38 [ 32] [ 6] [668899] +13:21:38 [ 35] [ 32] [6213544001957619=491212015761035] +13:21:38 [ 37] [ 12] [507901841865] +13:21:38 [ 38] [ 6] [889013] +13:21:38 [ 39] [ 2] [00] +13:21:38 [ 41] [ 8] [03009004] +13:21:38 [ 49] [ 3] [418] +13:21:38 [ 54] [ 40] [0001418C0000102801270002418C000010280127] +13:21:38 ============================================================================ +13:21:38 Calculate Source COMM Id = 4 +13:21:38 ============================================================================ +13:21:38 + + +waiting on router queue for slot.... +13:21:39 ============================================================================ +13:21:39 Slot Id : <281> +13:21:39 Transaction Type : REQUEST +13:21:39 Received From : +13:21:39 ============================================================================ +13:21:39 FNo. Len. Field Value +13:21:39 ============================================================================ +13:21:39 [ 1] [ 4] [0800] +13:21:39 [ 7] [ 10] [0320062047] +13:21:39 [ 11] [ 6] [156531] +13:21:39 [ 70] [ 3] [301] +13:21:39 ============================================================================ +13:21:39 + + +waiting on router queue for slot.... +13:21:39 Sending to : +13:21:39 ============================================================================ +13:21:39 ============================================================================ +13:21:39 Slot Id : <281> +13:21:39 Transaction Type : RESPONSE +13:21:39 Received From : +13:21:39 ============================================================================ +13:21:39 FNo. Len. Field Value +13:21:39 ============================================================================ +13:21:39 [ 1] [ 4] [0810] +13:21:39 [ 7] [ 10] [0320062047] +13:21:39 [ 11] [ 6] [156531] +13:21:39 [ 39] [ 2] [00] +13:21:39 [ 70] [ 3] [301] +13:21:39 ============================================================================ +13:21:39 Calculate Source COMM Id = 2 +13:21:39 ============================================================================ +13:21:39 + + +waiting on router queue for slot.... +13:21:45 ============================================================================ +13:21:45 Slot Id : <296> +13:21:45 Transaction Type : REQUEST +13:21:45 Received From : +13:21:45 ============================================================================ +13:21:45 FNo. Len. Field Value +13:21:45 ============================================================================ +13:21:45 [ 0] [ 4] [0420] +13:21:45 [ 1] [ 4] [0420] +13:21:45 [ 2] [ 16] [1808930500003637] +13:21:45 [ 3] [ 6] [011000] +13:21:45 [ 4] [ 12] [000080000000] +13:21:45 [ 6] [ 12] [000080000000] +13:21:45 [ 7] [ 10] [0320131952] +13:21:45 [ 11] [ 6] [755591] +13:21:45 [ 12] [ 6] [131952] +13:21:45 [ 13] [ 4] [0320] +13:21:45 [ 15] [ 4] [0320] +13:21:45 [ 18] [ 4] [6011] +13:21:45 [ 22] [ 3] [900] +13:21:45 [ 25] [ 2] [02] +13:21:45 [ 28] [ 9] [D00002000] +13:21:45 [ 32] [ 6] [621354] +13:21:45 [ 35] [ 27] [1808930500003637=1803500532] +13:21:45 [ 37] [ 12] [507903177369] +13:21:45 [ 39] [ 2] [00] +13:21:45 [ 41] [ 8] [04002700] +13:21:45 [ 42] [ 15] [NATIVE ] +13:21:45 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +13:21:45 [ 49] [ 3] [418] +13:21:45 [ 52] [ 16] [DBF1D751CF952314] +13:21:45 ============================================================================ +13:21:45 + + +waiting on router queue for slot.... +13:21:46 ============================================================================ +13:21:46 Slot Id : <296> +13:21:46 Transaction Type : RESPONSE +13:21:46 Received From : +13:21:46 ============================================================================ +13:21:46 FNo. Len. Field Value +13:21:46 ============================================================================ +13:21:46 [ 1] [ 4] [0430] +13:21:46 [ 2] [ 16] [1808930500003637] +13:21:46 [ 3] [ 6] [011000] +13:21:46 [ 4] [ 12] [000080000000] +13:21:46 [ 6] [ 12] [000080000000] +13:21:46 [ 7] [ 10] [0320131952] +13:21:46 [ 11] [ 6] [755591] +13:21:46 [ 12] [ 6] [131952] +13:21:46 [ 13] [ 4] [0320] +13:21:46 [ 19] [ 3] [418] +13:21:46 [ 32] [ 6] [621354] +13:21:46 [ 35] [ 27] [1808930500003637=1803500532] +13:21:46 [ 37] [ 12] [507903177369] +13:21:46 [ 39] [ 2] [12] +13:21:46 [ 41] [ 8] [04002700] +13:21:46 [ 49] [ 3] [418] +13:21:46 ============================================================================ +13:21:46 Successfully send the slot [296] To REVERSAL Process +13:21:46 + + +waiting on router queue for slot.... +13:21:48 ============================================================================ +13:21:48 Slot Id : <308> +13:21:48 Transaction Type : REQUEST +13:21:48 Received From : +13:21:48 ============================================================================ +13:21:48 FNo. Len. Field Value +13:21:48 ============================================================================ +13:21:48 [ 0] [ 4] [0420] +13:21:48 [ 1] [ 4] [0420] +13:21:48 [ 2] [ 16] [6213545000794127] +13:21:48 [ 3] [ 6] [010000] +13:21:48 [ 4] [ 12] [000005000000] +13:21:48 [ 6] [ 12] [000005000000] +13:21:48 [ 7] [ 10] [0320131701] +13:21:48 [ 11] [ 6] [946165] +13:21:48 [ 12] [ 6] [131701] +13:21:48 [ 13] [ 4] [0320] +13:21:48 [ 15] [ 4] [0320] +13:21:48 [ 18] [ 4] [6011] +13:21:48 [ 19] [ 3] [418] +13:21:48 [ 22] [ 3] [021] +13:21:48 [ 25] [ 2] [01] +13:21:48 [ 28] [ 9] [D00002000] +13:21:48 [ 32] [ 6] [668899] +13:21:48 [ 35] [ 32] [6213545000794127=491212019412427] +13:21:48 [ 37] [ 12] [507901161649] +13:21:48 [ 41] [ 8] [03217001] +13:21:48 [ 42] [ 15] [APT ] +13:21:48 [ 43] [ 40] [ THATENG UNIT XEKONG L] +13:21:48 [ 49] [ 3] [418] +13:21:48 [ 52] [ 16] [E0072CAF0AB1750E] +13:21:48 ============================================================================ +13:21:48 + + +waiting on router queue for slot.... +13:21:48 ============================================================================ +13:21:48 Slot Id : <308> +13:21:48 Transaction Type : RESPONSE +13:21:48 Received From : +13:21:48 ============================================================================ +13:21:48 FNo. Len. Field Value +13:21:48 ============================================================================ +13:21:48 [ 1] [ 4] [0430] +13:21:48 [ 2] [ 16] [6213545000794127] +13:21:48 [ 3] [ 6] [010000] +13:21:48 [ 4] [ 12] [000005000000] +13:21:48 [ 7] [ 10] [0320131701] +13:21:48 [ 11] [ 6] [946165] +13:21:48 [ 19] [ 3] [418] +13:21:48 [ 32] [ 6] [668899] +13:21:48 [ 35] [ 32] [6213545000794127=491212019412427] +13:21:48 [ 37] [ 12] [507901161649] +13:21:48 [ 39] [ 2] [00] +13:21:48 [ 41] [ 8] [03217001] +13:21:48 [ 43] [ 40] [ THATENG UNIT XEKONG L] +13:21:48 [ 49] [ 3] [418] +13:21:48 [ 90] [ 42] [020094616503201317010000066889900000000000] +13:21:48 ============================================================================ +13:21:48 Successfully send the slot [308] To REVERSAL Process +13:21:48 + + +waiting on router queue for slot.... +13:21:56 ============================================================================ +13:21:56 Slot Id : <286> +13:21:56 Transaction Type : REQUEST +13:21:56 Received From : +13:21:56 ============================================================================ +13:21:56 FNo. Len. Field Value +13:21:56 ============================================================================ +13:21:56 [ 1] [ 4] [0800] +13:21:56 [ 7] [ 10] [0320062103] +13:21:56 [ 11] [ 6] [156532] +13:21:56 [ 70] [ 3] [301] +13:21:56 ============================================================================ +13:21:56 + + +waiting on router queue for slot.... +13:21:56 Sending to : +13:21:56 ============================================================================ +13:21:56 ============================================================================ +13:21:56 Slot Id : <286> +13:21:56 Transaction Type : RESPONSE +13:21:56 Received From : +13:21:56 ============================================================================ +13:21:56 FNo. Len. Field Value +13:21:56 ============================================================================ +13:21:56 [ 1] [ 4] [0810] +13:21:56 [ 7] [ 10] [0320062103] +13:21:56 [ 11] [ 6] [156532] +13:21:56 [ 39] [ 2] [00] +13:21:56 [ 70] [ 3] [301] +13:21:56 ============================================================================ +13:21:56 Calculate Source COMM Id = 2 +13:21:56 ============================================================================ +13:21:56 + + +waiting on router queue for slot.... +13:22:11 ============================================================================ +13:22:11 Slot Id : <316> +13:22:11 Transaction Type : REQUEST +13:22:11 Received From : +13:22:11 ============================================================================ +13:22:11 FNo. Len. Field Value +13:22:11 ============================================================================ +13:22:11 [ 1] [ 4] [0800] +13:22:11 [ 7] [ 10] [0320062119] +13:22:11 [ 11] [ 6] [156533] +13:22:11 [ 70] [ 3] [301] +13:22:11 ============================================================================ +13:22:11 + + +waiting on router queue for slot.... +13:22:11 Sending to : +13:22:11 ============================================================================ +13:22:11 ============================================================================ +13:22:11 Slot Id : <316> +13:22:11 Transaction Type : RESPONSE +13:22:11 Received From : +13:22:11 ============================================================================ +13:22:11 FNo. Len. Field Value +13:22:11 ============================================================================ +13:22:11 [ 1] [ 4] [0810] +13:22:11 [ 7] [ 10] [0320062119] +13:22:11 [ 11] [ 6] [156533] +13:22:11 [ 39] [ 2] [00] +13:22:11 [ 70] [ 3] [301] +13:22:11 ============================================================================ +13:22:11 Calculate Source COMM Id = 2 +13:22:11 ============================================================================ +13:22:11 + + +waiting on router queue for slot.... +13:22:12 ============================================================================ +13:22:12 Slot Id : <283> +13:22:12 Transaction Type : REQUEST +13:22:12 Received From : +13:22:12 ============================================================================ +13:22:12 FNo. Len. Field Value +13:22:12 ============================================================================ +13:22:12 [ 1] [ 4] [0200] +13:22:12 [ 2] [ 16] [6213544002037452] +13:22:12 [ 3] [ 6] [010000] +13:22:12 [ 4] [ 12] [000070000000] +13:22:12 [ 7] [ 10] [0320132003] +13:22:12 [ 11] [ 6] [946302] +13:22:12 [ 12] [ 6] [132003] +13:22:12 [ 13] [ 4] [0320] +13:22:12 [ 15] [ 4] [0320] +13:22:12 [ 18] [ 4] [6011] +13:22:12 [ 19] [ 3] [418] +13:22:12 [ 22] [ 3] [021] +13:22:12 [ 25] [ 2] [01] +13:22:12 [ 28] [ 9] [D00002000] +13:22:12 [ 32] [ 6] [668899] +13:22:12 [ 35] [ 32] [6213544002037452=491212013745467] +13:22:12 [ 37] [ 12] [507902209922] +13:22:12 [ 41] [ 8] [03006009] +13:22:12 [ 42] [ 15] [APT ] +13:22:12 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +13:22:12 [ 49] [ 3] [418] +13:22:12 [ 52] [ 16] [89FAB5AA2C50630E] +13:22:12 ============================================================================ +13:22:12 + + +waiting on router queue for slot.... +13:22:12 Sending to : +13:22:12 ============================================================================ +13:22:12 Sending to : +13:22:12 ============================================================================ +13:22:13 ============================================================================ +13:22:13 Slot Id : <283> +13:22:13 Transaction Type : REQUEST +13:22:13 Received From : +13:22:13 ============================================================================ +13:22:13 FNo. Len. Field Value +13:22:13 ============================================================================ +13:22:13 [ 1] [ 4] [0200] +13:22:13 [ 2] [ 16] [6213544002037452] +13:22:13 [ 3] [ 6] [010000] +13:22:13 [ 4] [ 12] [000070000000] +13:22:13 [ 7] [ 10] [0320132003] +13:22:13 [ 11] [ 6] [946302] +13:22:13 [ 12] [ 6] [132003] +13:22:13 [ 13] [ 4] [0320] +13:22:13 [ 15] [ 4] [0320] +13:22:13 [ 18] [ 4] [6011] +13:22:13 [ 19] [ 3] [418] +13:22:13 [ 22] [ 3] [021] +13:22:13 [ 25] [ 2] [01] +13:22:13 [ 28] [ 9] [D00002000] +13:22:13 [ 32] [ 6] [668899] +13:22:13 [ 35] [ 32] [6213544002037452=491212013745467] +13:22:13 [ 37] [ 12] [507902209922] +13:22:13 [ 41] [ 8] [03006009] +13:22:13 [ 42] [ 15] [APT ] +13:22:13 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +13:22:13 [ 49] [ 3] [418] +13:22:13 [ 52] [ 16] [89FAB5AA2C50630E] +13:22:13 ============================================================================ +13:22:13 + + +waiting on router queue for slot.... +13:22:13 Sending to : +13:22:13 ============================================================================ +13:22:13 ============================================================================ +13:22:13 Slot Id : <283> +13:22:13 Transaction Type : REQUEST +13:22:13 Received From : +13:22:13 ============================================================================ +13:22:13 FNo. Len. Field Value +13:22:13 ============================================================================ +13:22:13 [ 1] [ 4] [0200] +13:22:13 [ 2] [ 16] [6213544002037452] +13:22:13 [ 3] [ 6] [010000] +13:22:13 [ 4] [ 12] [000070000000] +13:22:13 [ 7] [ 10] [0320132003] +13:22:13 [ 11] [ 6] [946302] +13:22:13 [ 12] [ 6] [132003] +13:22:13 [ 13] [ 4] [0320] +13:22:13 [ 15] [ 4] [0320] +13:22:13 [ 18] [ 4] [6011] +13:22:13 [ 19] [ 3] [418] +13:22:13 [ 22] [ 3] [021] +13:22:13 [ 25] [ 2] [01] +13:22:13 [ 28] [ 9] [D00002000] +13:22:13 [ 32] [ 6] [668899] +13:22:13 [ 35] [ 32] [6213544002037452=491212013745467] +13:22:13 [ 37] [ 12] [507902209922] +13:22:13 [ 41] [ 8] [03006009] +13:22:13 [ 42] [ 15] [APT ] +13:22:13 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +13:22:13 [ 49] [ 3] [418] +13:22:13 [ 52] [ 16] [134C2CFC7F73FD78] +13:22:13 ============================================================================ +13:22:13 + + +waiting on router queue for slot.... +13:22:13 Sending to : <0> +13:22:13 ============================================================================ +13:22:13 ============================================================================ +13:22:13 Slot Id : <283> +13:22:13 Transaction Type : RESPONSE +13:22:13 Received From : +13:22:13 ============================================================================ +13:22:13 FNo. Len. Field Value +13:22:13 ============================================================================ +13:22:13 [ 1] [ 4] [0210] +13:22:13 [ 2] [ 16] [6213544002037452] +13:22:13 [ 3] [ 6] [010000] +13:22:13 [ 4] [ 12] [000070000000] +13:22:13 [ 7] [ 10] [0320132003] +13:22:13 [ 11] [ 6] [946302] +13:22:13 [ 12] [ 6] [132003] +13:22:13 [ 13] [ 4] [0320] +13:22:13 [ 15] [ 4] [0320] +13:22:13 [ 18] [ 4] [6011] +13:22:13 [ 19] [ 3] [418] +13:22:13 [ 32] [ 6] [668899] +13:22:13 [ 35] [ 32] [6213544002037452=491212013745467] +13:22:13 [ 37] [ 12] [507902209922] +13:22:13 [ 38] [ 6] [946302] +13:22:13 [ 39] [ 2] [51] +13:22:13 [ 41] [ 8] [03006009] +13:22:13 [ 49] [ 3] [418] +13:22:13 [ 54] [ 40] [0001418C0000259683670002418C000025968367] +13:22:13 ============================================================================ +13:22:13 Sending to : +13:22:13 ============================================================================ +13:22:13 + + +waiting on router queue for slot.... +13:22:14 ============================================================================ +13:22:14 Slot Id : <311> +13:22:14 Transaction Type : REQUEST +13:22:14 Received From : +13:22:14 ============================================================================ +13:22:14 FNo. Len. Field Value +13:22:14 ============================================================================ +13:22:14 [ 1] [ 4] [0200] +13:22:14 [ 2] [ 16] [6213544002246913] +13:22:14 [ 3] [ 6] [010000] +13:22:14 [ 4] [ 12] [000010000000] +13:22:14 [ 7] [ 10] [0320132005] +13:22:14 [ 11] [ 6] [946304] +13:22:14 [ 12] [ 6] [132005] +13:22:14 [ 13] [ 4] [0320] +13:22:14 [ 15] [ 4] [0320] +13:22:14 [ 18] [ 4] [6011] +13:22:14 [ 19] [ 3] [418] +13:22:14 [ 22] [ 3] [021] +13:22:14 [ 25] [ 2] [01] +13:22:14 [ 28] [ 9] [D00002000] +13:22:14 [ 32] [ 6] [668899] +13:22:14 [ 35] [ 32] [6213544002246913=491212014691279] +13:22:14 [ 37] [ 12] [507900285810] +13:22:14 [ 41] [ 8] [03010005] +13:22:14 [ 42] [ 15] [APT ] +13:22:14 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +13:22:14 [ 49] [ 3] [418] +13:22:14 [ 52] [ 16] [E35FAEF43F20A535] +13:22:14 ============================================================================ +13:22:14 + + +waiting on router queue for slot.... +13:22:14 Sending to : +13:22:14 ============================================================================ +13:22:14 Sending to : +13:22:14 ============================================================================ +13:22:14 ============================================================================ +13:22:14 Slot Id : <311> +13:22:14 Transaction Type : REQUEST +13:22:14 Received From : +13:22:14 ============================================================================ +13:22:14 FNo. Len. Field Value +13:22:14 ============================================================================ +13:22:14 [ 1] [ 4] [0200] +13:22:14 [ 2] [ 16] [6213544002246913] +13:22:14 [ 3] [ 6] [010000] +13:22:14 [ 4] [ 12] [000010000000] +13:22:14 [ 7] [ 10] [0320132005] +13:22:14 [ 11] [ 6] [946304] +13:22:14 [ 12] [ 6] [132005] +13:22:14 [ 13] [ 4] [0320] +13:22:14 [ 15] [ 4] [0320] +13:22:14 [ 18] [ 4] [6011] +13:22:14 [ 19] [ 3] [418] +13:22:14 [ 22] [ 3] [021] +13:22:14 [ 25] [ 2] [01] +13:22:14 [ 28] [ 9] [D00002000] +13:22:14 [ 32] [ 6] [668899] +13:22:14 [ 35] [ 32] [6213544002246913=491212014691279] +13:22:14 [ 37] [ 12] [507900285810] +13:22:14 [ 41] [ 8] [03010005] +13:22:14 [ 42] [ 15] [APT ] +13:22:14 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +13:22:14 [ 49] [ 3] [418] +13:22:14 [ 52] [ 16] [E35FAEF43F20A535] +13:22:14 ============================================================================ +13:22:14 + + +waiting on router queue for slot.... +13:22:14 Sending to : +13:22:14 ============================================================================ +13:22:14 ============================================================================ +13:22:14 Slot Id : <311> +13:22:14 Transaction Type : REQUEST +13:22:14 Received From : +13:22:14 ============================================================================ +13:22:14 FNo. Len. Field Value +13:22:14 ============================================================================ +13:22:14 [ 1] [ 4] [0200] +13:22:14 [ 2] [ 16] [6213544002246913] +13:22:14 [ 3] [ 6] [010000] +13:22:14 [ 4] [ 12] [000010000000] +13:22:14 [ 7] [ 10] [0320132005] +13:22:14 [ 11] [ 6] [946304] +13:22:14 [ 12] [ 6] [132005] +13:22:14 [ 13] [ 4] [0320] +13:22:14 [ 15] [ 4] [0320] +13:22:14 [ 18] [ 4] [6011] +13:22:14 [ 19] [ 3] [418] +13:22:14 [ 22] [ 3] [021] +13:22:14 [ 25] [ 2] [01] +13:22:14 [ 28] [ 9] [D00002000] +13:22:14 [ 32] [ 6] [668899] +13:22:14 [ 35] [ 32] [6213544002246913=491212014691279] +13:22:14 [ 37] [ 12] [507900285810] +13:22:14 [ 41] [ 8] [03010005] +13:22:14 [ 42] [ 15] [APT ] +13:22:14 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +13:22:14 [ 49] [ 3] [418] +13:22:14 [ 52] [ 16] [4D473F6C3E578CB3] +13:22:14 ============================================================================ +13:22:14 + + +waiting on router queue for slot.... +13:22:14 Sending to : <0> +13:22:14 ============================================================================ +13:22:15 ============================================================================ +13:22:15 Slot Id : <283> +13:22:15 Transaction Type : RESPONSE +13:22:15 Received From : +13:22:15 ============================================================================ +13:22:15 FNo. Len. Field Value +13:22:15 ============================================================================ +13:22:15 [ 1] [ 4] [0210] +13:22:15 [ 2] [ 16] [6213544002037452] +13:22:15 [ 3] [ 6] [010000] +13:22:15 [ 4] [ 12] [000070000000] +13:22:15 [ 7] [ 10] [0320132003] +13:22:15 [ 11] [ 6] [946302] +13:22:15 [ 12] [ 6] [132003] +13:22:15 [ 13] [ 4] [0320] +13:22:15 [ 15] [ 4] [0320] +13:22:15 [ 18] [ 4] [6011] +13:22:15 [ 19] [ 3] [418] +13:22:15 [ 32] [ 6] [668899] +13:22:15 [ 35] [ 32] [6213544002037452=491212013745467] +13:22:15 [ 37] [ 12] [507902209922] +13:22:15 [ 38] [ 6] [946302] +13:22:15 [ 39] [ 2] [51] +13:22:15 [ 41] [ 8] [03006009] +13:22:15 [ 49] [ 3] [418] +13:22:15 [ 54] [ 40] [0001418C0000259683670002418C000025968367] +13:22:15 ============================================================================ +13:22:15 Calculate Source COMM Id = 4 +13:22:15 ============================================================================ +13:22:15 + + +waiting on router queue for slot.... +13:22:15 ============================================================================ +13:22:15 Slot Id : <311> +13:22:15 Transaction Type : RESPONSE +13:22:15 Received From : +13:22:15 ============================================================================ +13:22:15 FNo. Len. Field Value +13:22:15 ============================================================================ +13:22:15 [ 1] [ 4] [0210] +13:22:15 [ 2] [ 16] [6213544002246913] +13:22:15 [ 3] [ 6] [010000] +13:22:15 [ 4] [ 12] [000010000000] +13:22:15 [ 7] [ 10] [0320132005] +13:22:15 [ 11] [ 6] [946304] +13:22:15 [ 12] [ 6] [132005] +13:22:15 [ 13] [ 4] [0320] +13:22:15 [ 15] [ 4] [0320] +13:22:15 [ 18] [ 4] [6011] +13:22:15 [ 19] [ 3] [418] +13:22:15 [ 32] [ 6] [668899] +13:22:15 [ 35] [ 32] [6213544002246913=491212014691279] +13:22:15 [ 37] [ 12] [507900285810] +13:22:15 [ 38] [ 6] [946304] +13:22:15 [ 39] [ 2] [51] +13:22:15 [ 41] [ 8] [03010005] +13:22:15 [ 49] [ 3] [418] +13:22:15 [ 54] [ 40] [0001418C0000147356340002418C000014735634] +13:22:15 ============================================================================ +13:22:15 Sending to : +13:22:15 ============================================================================ +13:22:15 + + +waiting on router queue for slot.... +13:22:16 ============================================================================ +13:22:16 Slot Id : <311> +13:22:16 Transaction Type : RESPONSE +13:22:16 Received From : +13:22:16 ============================================================================ +13:22:16 FNo. Len. Field Value +13:22:16 ============================================================================ +13:22:16 [ 1] [ 4] [0210] +13:22:16 [ 2] [ 16] [6213544002246913] +13:22:16 [ 3] [ 6] [010000] +13:22:16 [ 4] [ 12] [000010000000] +13:22:16 [ 7] [ 10] [0320132005] +13:22:16 [ 11] [ 6] [946304] +13:22:16 [ 12] [ 6] [132005] +13:22:16 [ 13] [ 4] [0320] +13:22:16 [ 15] [ 4] [0320] +13:22:16 [ 18] [ 4] [6011] +13:22:16 [ 19] [ 3] [418] +13:22:16 [ 32] [ 6] [668899] +13:22:16 [ 35] [ 32] [6213544002246913=491212014691279] +13:22:16 [ 37] [ 12] [507900285810] +13:22:16 [ 38] [ 6] [946304] +13:22:16 [ 39] [ 2] [51] +13:22:16 [ 41] [ 8] [03010005] +13:22:16 [ 49] [ 3] [418] +13:22:16 [ 54] [ 40] [0001418C0000147356340002418C000014735634] +13:22:16 ============================================================================ +13:22:16 Calculate Source COMM Id = 4 +13:22:16 ============================================================================ +13:22:16 + + +waiting on router queue for slot.... +13:22:24 ============================================================================ +13:22:24 Slot Id : <312> +13:22:24 Transaction Type : REQUEST +13:22:24 Received From : +13:22:24 ============================================================================ +13:22:24 FNo. Len. Field Value +13:22:24 ============================================================================ +13:22:24 [ 1] [ 4] [0800] +13:22:24 [ 7] [ 10] [0320062129] +13:22:24 [ 11] [ 6] [156534] +13:22:24 [ 70] [ 3] [301] +13:22:24 ============================================================================ +13:22:24 + + +waiting on router queue for slot.... +13:22:24 Sending to : +13:22:24 ============================================================================ +13:22:24 ============================================================================ +13:22:24 Slot Id : <312> +13:22:24 Transaction Type : RESPONSE +13:22:24 Received From : +13:22:24 ============================================================================ +13:22:24 FNo. Len. Field Value +13:22:24 ============================================================================ +13:22:24 [ 1] [ 4] [0810] +13:22:24 [ 7] [ 10] [0320062129] +13:22:24 [ 11] [ 6] [156534] +13:22:24 [ 39] [ 2] [00] +13:22:24 [ 70] [ 3] [301] +13:22:24 ============================================================================ +13:22:24 Calculate Source COMM Id = 2 +13:22:24 ============================================================================ +13:22:24 + + +waiting on router queue for slot.... +13:22:30 ============================================================================ +13:22:30 Slot Id : <306> +13:22:30 Transaction Type : REQUEST +13:22:30 Received From : +13:22:30 ============================================================================ +13:22:30 FNo. Len. Field Value +13:22:30 ============================================================================ +13:22:30 [ 1] [ 4] [0800] +13:22:30 [ 2] [ 5] [02531] +13:22:30 [ 3] [ 6] [579138] +13:22:30 [ 7] [ 10] [0320062230] +13:22:30 [ 11] [ 6] [807188] +13:22:30 [ 15] [ 10] [0320062230] +13:22:30 [ 37] [ 11] [57913807188] +13:22:30 [ 70] [ 3] [001] +13:22:30 ============================================================================ +13:22:30 + + +waiting on router queue for slot.... +13:22:30 ============================================================================ +13:22:30 Slot Id : <306> +13:22:30 Transaction Type : RESPONSE +13:22:30 Received From : +13:22:30 ============================================================================ +13:22:30 FNo. Len. Field Value +13:22:30 ============================================================================ +13:22:30 [ 1] [ 4] [0810] +13:22:30 [ 7] [ 10] [0320062230] +13:22:30 [ 11] [ 6] [807188] +13:22:30 [ 15] [ 4] [0320] +13:22:30 [ 37] [ 12] [57913807188] +13:22:30 [ 39] [ 2] [00] +13:22:30 [ 70] [ 3] [001] +13:22:30 ============================================================================ +13:22:30 Sending to : +13:22:30 ============================================================================ +13:22:30 + + +waiting on router queue for slot.... +13:22:31 ============================================================================ +13:22:31 Slot Id : <310> +13:22:31 Transaction Type : REQUEST +13:22:31 Received From : +13:22:31 ============================================================================ +13:22:31 FNo. Len. Field Value +13:22:31 ============================================================================ +13:22:31 [ 1] [ 4] [0200] +13:22:31 [ 2] [ 16] [6213544002037452] +13:22:31 [ 3] [ 6] [010000] +13:22:31 [ 4] [ 12] [000010000000] +13:22:31 [ 7] [ 10] [0320132022] +13:22:31 [ 11] [ 6] [946315] +13:22:31 [ 12] [ 6] [132022] +13:22:31 [ 13] [ 4] [0320] +13:22:31 [ 15] [ 4] [0320] +13:22:31 [ 18] [ 4] [6011] +13:22:31 [ 19] [ 3] [418] +13:22:31 [ 22] [ 3] [021] +13:22:31 [ 25] [ 2] [01] +13:22:31 [ 28] [ 9] [D00002000] +13:22:31 [ 32] [ 6] [668899] +13:22:31 [ 35] [ 32] [6213544002037452=491212013745467] +13:22:31 [ 37] [ 12] [507902209923] +13:22:31 [ 41] [ 8] [03006009] +13:22:31 [ 42] [ 15] [APT ] +13:22:31 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +13:22:31 [ 49] [ 3] [418] +13:22:31 [ 52] [ 16] [89FAB5AA2C50630E] +13:22:31 ============================================================================ +13:22:31 + + +waiting on router queue for slot.... +13:22:31 Sending to : +13:22:31 ============================================================================ +13:22:31 Sending to : +13:22:31 ============================================================================ +13:22:32 ============================================================================ +13:22:32 Slot Id : <310> +13:22:32 Transaction Type : REQUEST +13:22:32 Received From : +13:22:32 ============================================================================ +13:22:32 FNo. Len. Field Value +13:22:32 ============================================================================ +13:22:32 [ 1] [ 4] [0200] +13:22:32 [ 2] [ 16] [6213544002037452] +13:22:32 [ 3] [ 6] [010000] +13:22:32 [ 4] [ 12] [000010000000] +13:22:32 [ 7] [ 10] [0320132022] +13:22:32 [ 11] [ 6] [946315] +13:22:32 [ 12] [ 6] [132022] +13:22:32 [ 13] [ 4] [0320] +13:22:32 [ 15] [ 4] [0320] +13:22:32 [ 18] [ 4] [6011] +13:22:32 [ 19] [ 3] [418] +13:22:32 [ 22] [ 3] [021] +13:22:32 [ 25] [ 2] [01] +13:22:32 [ 28] [ 9] [D00002000] +13:22:32 [ 32] [ 6] [668899] +13:22:32 [ 35] [ 32] [6213544002037452=491212013745467] +13:22:32 [ 37] [ 12] [507902209923] +13:22:32 [ 41] [ 8] [03006009] +13:22:32 [ 42] [ 15] [APT ] +13:22:32 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +13:22:32 [ 49] [ 3] [418] +13:22:32 [ 52] [ 16] [89FAB5AA2C50630E] +13:22:32 ============================================================================ +13:22:32 + + +waiting on router queue for slot.... +13:22:32 Sending to : +13:22:32 ============================================================================ +13:22:32 ============================================================================ +13:22:32 Slot Id : <310> +13:22:32 Transaction Type : REQUEST +13:22:32 Received From : +13:22:32 ============================================================================ +13:22:32 FNo. Len. Field Value +13:22:32 ============================================================================ +13:22:32 [ 1] [ 4] [0200] +13:22:32 [ 2] [ 16] [6213544002037452] +13:22:32 [ 3] [ 6] [010000] +13:22:32 [ 4] [ 12] [000010000000] +13:22:32 [ 7] [ 10] [0320132022] +13:22:32 [ 11] [ 6] [946315] +13:22:32 [ 12] [ 6] [132022] +13:22:32 [ 13] [ 4] [0320] +13:22:32 [ 15] [ 4] [0320] +13:22:32 [ 18] [ 4] [6011] +13:22:32 [ 19] [ 3] [418] +13:22:32 [ 22] [ 3] [021] +13:22:32 [ 25] [ 2] [01] +13:22:32 [ 28] [ 9] [D00002000] +13:22:32 [ 32] [ 6] [668899] +13:22:32 [ 35] [ 32] [6213544002037452=491212013745467] +13:22:32 [ 37] [ 12] [507902209923] +13:22:32 [ 41] [ 8] [03006009] +13:22:32 [ 42] [ 15] [APT ] +13:22:32 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +13:22:32 [ 49] [ 3] [418] +13:22:32 [ 52] [ 16] [134C2CFC7F73FD78] +13:22:32 ============================================================================ +13:22:32 + + +waiting on router queue for slot.... +13:22:32 Sending to : <0> +13:22:32 ============================================================================ +13:22:32 ============================================================================ +13:22:32 Slot Id : <310> +13:22:32 Transaction Type : RESPONSE +13:22:32 Received From : +13:22:32 ============================================================================ +13:22:32 FNo. Len. Field Value +13:22:32 ============================================================================ +13:22:32 [ 1] [ 4] [0210] +13:22:32 [ 2] [ 16] [6213544002037452] +13:22:32 [ 3] [ 6] [010000] +13:22:32 [ 4] [ 12] [000010000000] +13:22:32 [ 7] [ 10] [0320132022] +13:22:32 [ 11] [ 6] [946315] +13:22:32 [ 12] [ 6] [132022] +13:22:32 [ 13] [ 4] [0320] +13:22:32 [ 15] [ 4] [0320] +13:22:32 [ 18] [ 4] [6011] +13:22:32 [ 19] [ 3] [418] +13:22:32 [ 32] [ 6] [668899] +13:22:32 [ 35] [ 32] [6213544002037452=491212013745467] +13:22:32 [ 37] [ 12] [507902209923] +13:22:32 [ 38] [ 6] [572340] +13:22:32 [ 39] [ 2] [00] +13:22:32 [ 41] [ 8] [03006009] +13:22:32 [ 49] [ 3] [418] +13:22:32 [ 54] [ 40] [0001418C0000157683670002418C000015768367] +13:22:32 ============================================================================ +13:22:32 Sending to : +13:22:32 ============================================================================ +13:22:32 + + +waiting on router queue for slot.... +13:22:34 ============================================================================ +13:22:34 Slot Id : <310> +13:22:34 Transaction Type : RESPONSE +13:22:34 Received From : +13:22:34 ============================================================================ +13:22:34 FNo. Len. Field Value +13:22:34 ============================================================================ +13:22:34 [ 1] [ 4] [0210] +13:22:34 [ 2] [ 16] [6213544002037452] +13:22:34 [ 3] [ 6] [010000] +13:22:34 [ 4] [ 12] [000010000000] +13:22:34 [ 7] [ 10] [0320132022] +13:22:34 [ 11] [ 6] [946315] +13:22:34 [ 12] [ 6] [132022] +13:22:34 [ 13] [ 4] [0320] +13:22:34 [ 15] [ 4] [0320] +13:22:34 [ 18] [ 4] [6011] +13:22:34 [ 19] [ 3] [418] +13:22:34 [ 32] [ 6] [668899] +13:22:34 [ 35] [ 32] [6213544002037452=491212013745467] +13:22:34 [ 37] [ 12] [507902209923] +13:22:34 [ 38] [ 6] [572340] +13:22:34 [ 39] [ 2] [00] +13:22:34 [ 41] [ 8] [03006009] +13:22:34 [ 49] [ 3] [418] +13:22:34 [ 54] [ 40] [0001418C0000157683670002418C000015768367] +13:22:34 ============================================================================ +13:22:34 Calculate Source COMM Id = 4 +13:22:34 ============================================================================ +13:22:34 + + +waiting on router queue for slot.... +13:22:39 ============================================================================ +13:22:39 Slot Id : <307> +13:22:39 Transaction Type : REQUEST +13:22:39 Received From : +13:22:39 ============================================================================ +13:22:39 FNo. Len. Field Value +13:22:39 ============================================================================ +13:22:39 [ 1] [ 4] [0800] +13:22:39 [ 7] [ 10] [0320062146] +13:22:39 [ 11] [ 6] [156535] +13:22:39 [ 70] [ 3] [301] +13:22:39 ============================================================================ +13:22:39 + + +waiting on router queue for slot.... +13:22:39 Sending to : +13:22:39 ============================================================================ +13:22:39 ============================================================================ +13:22:39 Slot Id : <307> +13:22:39 Transaction Type : RESPONSE +13:22:39 Received From : +13:22:39 ============================================================================ +13:22:39 FNo. Len. Field Value +13:22:39 ============================================================================ +13:22:39 [ 1] [ 4] [0810] +13:22:39 [ 7] [ 10] [0320062146] +13:22:39 [ 11] [ 6] [156535] +13:22:39 [ 39] [ 2] [00] +13:22:39 [ 70] [ 3] [301] +13:22:39 ============================================================================ +13:22:39 Calculate Source COMM Id = 2 +13:22:39 ============================================================================ +13:22:39 + + +waiting on router queue for slot.... +13:22:50 ============================================================================ +13:22:50 Slot Id : <317> +13:22:50 Transaction Type : REQUEST +13:22:50 Received From : +13:22:50 ============================================================================ +13:22:50 FNo. Len. Field Value +13:22:50 ============================================================================ +13:22:50 [ 1] [ 4] [0800] +13:22:50 [ 7] [ 10] [0320062158] +13:22:50 [ 11] [ 6] [156536] +13:22:50 [ 70] [ 3] [301] +13:22:50 ============================================================================ +13:22:50 + + +waiting on router queue for slot.... +13:22:50 Sending to : +13:22:50 ============================================================================ +13:22:50 ============================================================================ +13:22:50 Slot Id : <317> +13:22:50 Transaction Type : RESPONSE +13:22:50 Received From : +13:22:50 ============================================================================ +13:22:50 FNo. Len. Field Value +13:22:50 ============================================================================ +13:22:50 [ 1] [ 4] [0810] +13:22:50 [ 7] [ 10] [0320062158] +13:22:50 [ 11] [ 6] [156536] +13:22:50 [ 39] [ 2] [00] +13:22:50 [ 70] [ 3] [301] +13:22:50 ============================================================================ +13:22:50 Calculate Source COMM Id = 2 +13:22:50 ============================================================================ +13:22:50 + + +waiting on router queue for slot.... +13:23:07 ============================================================================ +13:23:07 Slot Id : <288> +13:23:07 Transaction Type : REQUEST +13:23:07 Received From : +13:23:07 ============================================================================ +13:23:07 FNo. Len. Field Value +13:23:07 ============================================================================ +13:23:07 [ 1] [ 4] [0800] +13:23:07 [ 7] [ 10] [0320062215] +13:23:07 [ 11] [ 6] [156537] +13:23:07 [ 70] [ 3] [301] +13:23:07 ============================================================================ +13:23:07 + + +waiting on router queue for slot.... +13:23:07 Sending to : +13:23:07 ============================================================================ +13:23:07 ============================================================================ +13:23:07 Slot Id : <288> +13:23:07 Transaction Type : RESPONSE +13:23:07 Received From : +13:23:07 ============================================================================ +13:23:07 FNo. Len. Field Value +13:23:07 ============================================================================ +13:23:07 [ 1] [ 4] [0810] +13:23:07 [ 7] [ 10] [0320062215] +13:23:07 [ 11] [ 6] [156537] +13:23:07 [ 39] [ 2] [00] +13:23:07 [ 70] [ 3] [301] +13:23:07 ============================================================================ +13:23:07 Calculate Source COMM Id = 2 +13:23:07 ============================================================================ +13:23:07 + + +waiting on router queue for slot.... +13:23:18 ============================================================================ +13:23:18 Slot Id : <318> +13:23:18 Transaction Type : REQUEST +13:23:18 Received From : +13:23:18 ============================================================================ +13:23:18 FNo. Len. Field Value +13:23:18 ============================================================================ +13:23:18 [ 1] [ 4] [0800] +13:23:18 [ 7] [ 10] [0320062225] +13:23:18 [ 11] [ 6] [156538] +13:23:18 [ 70] [ 3] [301] +13:23:18 ============================================================================ +13:23:18 + + +waiting on router queue for slot.... +13:23:18 Sending to : +13:23:18 ============================================================================ +13:23:18 ============================================================================ +13:23:18 Slot Id : <318> +13:23:18 Transaction Type : RESPONSE +13:23:18 Received From : +13:23:18 ============================================================================ +13:23:18 FNo. Len. Field Value +13:23:18 ============================================================================ +13:23:18 [ 1] [ 4] [0810] +13:23:18 [ 7] [ 10] [0320062225] +13:23:18 [ 11] [ 6] [156538] +13:23:18 [ 39] [ 2] [00] +13:23:18 [ 70] [ 3] [301] +13:23:18 ============================================================================ +13:23:18 Calculate Source COMM Id = 2 +13:23:18 ============================================================================ +13:23:18 + + +waiting on router queue for slot.... +13:23:32 ============================================================================ +13:23:32 Slot Id : <322> +13:23:32 Transaction Type : REQUEST +13:23:32 Received From : +13:23:32 ============================================================================ +13:23:32 FNo. Len. Field Value +13:23:32 ============================================================================ +13:23:32 [ 1] [ 4] [0800] +13:23:32 [ 7] [ 10] [0320062236] +13:23:32 [ 11] [ 6] [156539] +13:23:32 [ 70] [ 3] [301] +13:23:32 ============================================================================ +13:23:32 + + +waiting on router queue for slot.... +13:23:32 Sending to : +13:23:32 ============================================================================ +13:23:32 ============================================================================ +13:23:32 Slot Id : <322> +13:23:32 Transaction Type : RESPONSE +13:23:32 Received From : +13:23:32 ============================================================================ +13:23:32 FNo. Len. Field Value +13:23:32 ============================================================================ +13:23:32 [ 1] [ 4] [0810] +13:23:32 [ 7] [ 10] [0320062236] +13:23:32 [ 11] [ 6] [156539] +13:23:32 [ 39] [ 2] [00] +13:23:32 [ 70] [ 3] [301] +13:23:32 ============================================================================ +13:23:32 Calculate Source COMM Id = 2 +13:23:32 ============================================================================ +13:23:32 + + +waiting on router queue for slot.... +13:23:32 ============================================================================ +13:23:32 Slot Id : <315> +13:23:32 Transaction Type : REQUEST +13:23:32 Received From : +13:23:32 ============================================================================ +13:23:32 FNo. Len. Field Value +13:23:32 ============================================================================ +13:23:32 [ 1] [ 4] [0800] +13:23:32 [ 2] [ 5] [02531] +13:23:32 [ 3] [ 6] [579138] +13:23:32 [ 7] [ 10] [0320062332] +13:23:32 [ 11] [ 6] [807189] +13:23:32 [ 15] [ 10] [0320062332] +13:23:32 [ 37] [ 11] [57913807189] +13:23:32 [ 70] [ 3] [001] +13:23:32 ============================================================================ +13:23:32 + + +waiting on router queue for slot.... +13:23:32 ============================================================================ +13:23:32 Slot Id : <315> +13:23:32 Transaction Type : RESPONSE +13:23:32 Received From : +13:23:32 ============================================================================ +13:23:32 FNo. Len. Field Value +13:23:32 ============================================================================ +13:23:32 [ 1] [ 4] [0810] +13:23:32 [ 7] [ 10] [0320062332] +13:23:32 [ 11] [ 6] [807189] +13:23:32 [ 15] [ 4] [0320] +13:23:32 [ 37] [ 12] [57913807189] +13:23:32 [ 39] [ 2] [00] +13:23:32 [ 70] [ 3] [001] +13:23:32 ============================================================================ +13:23:32 Sending to : +13:23:32 ============================================================================ +13:23:32 + + +waiting on router queue for slot.... +13:23:43 ============================================================================ +13:23:43 Slot Id : <304> +13:23:43 Transaction Type : REQUEST +13:23:43 Received From : +13:23:43 ============================================================================ +13:23:43 FNo. Len. Field Value +13:23:43 ============================================================================ +13:23:43 [ 1] [ 4] [0200] +13:23:43 [ 2] [ 16] [6213545000786974] +13:23:43 [ 3] [ 6] [010000] +13:23:43 [ 4] [ 12] [000010000000] +13:23:43 [ 7] [ 10] [0320132133] +13:23:43 [ 11] [ 6] [946357] +13:23:43 [ 12] [ 6] [132133] +13:23:43 [ 13] [ 4] [0320] +13:23:43 [ 15] [ 4] [0320] +13:23:43 [ 18] [ 4] [6011] +13:23:43 [ 19] [ 3] [418] +13:23:43 [ 22] [ 3] [021] +13:23:43 [ 25] [ 2] [01] +13:23:43 [ 28] [ 9] [D00002000] +13:23:43 [ 32] [ 6] [668899] +13:23:43 [ 35] [ 32] [6213545000786974=491212018697255] +13:23:43 [ 37] [ 12] [507902209925] +13:23:43 [ 41] [ 8] [03006009] +13:23:43 [ 42] [ 15] [APT ] +13:23:43 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +13:23:43 [ 49] [ 3] [418] +13:23:43 [ 52] [ 16] [E11B7C84F6E30690] +13:23:43 ============================================================================ +13:23:43 + + +waiting on router queue for slot.... +13:23:43 Sending to : +13:23:43 ============================================================================ +13:23:43 Sending to : +13:23:43 ============================================================================ +13:23:43 ============================================================================ +13:23:43 Slot Id : <304> +13:23:43 Transaction Type : REQUEST +13:23:43 Received From : +13:23:43 ============================================================================ +13:23:43 FNo. Len. Field Value +13:23:43 ============================================================================ +13:23:43 [ 1] [ 4] [0200] +13:23:43 [ 2] [ 16] [6213545000786974] +13:23:43 [ 3] [ 6] [010000] +13:23:43 [ 4] [ 12] [000010000000] +13:23:43 [ 7] [ 10] [0320132133] +13:23:43 [ 11] [ 6] [946357] +13:23:43 [ 12] [ 6] [132133] +13:23:43 [ 13] [ 4] [0320] +13:23:43 [ 15] [ 4] [0320] +13:23:43 [ 18] [ 4] [6011] +13:23:43 [ 19] [ 3] [418] +13:23:43 [ 22] [ 3] [021] +13:23:43 [ 25] [ 2] [01] +13:23:43 [ 28] [ 9] [D00002000] +13:23:43 [ 32] [ 6] [668899] +13:23:43 [ 35] [ 32] [6213545000786974=491212018697255] +13:23:43 [ 37] [ 12] [507902209925] +13:23:43 [ 41] [ 8] [03006009] +13:23:43 [ 42] [ 15] [APT ] +13:23:43 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +13:23:43 [ 49] [ 3] [418] +13:23:43 [ 52] [ 16] [E11B7C84F6E30690] +13:23:43 ============================================================================ +13:23:43 + + +waiting on router queue for slot.... +13:23:43 Sending to : +13:23:43 ============================================================================ +13:23:43 ============================================================================ +13:23:43 Slot Id : <304> +13:23:43 Transaction Type : REQUEST +13:23:43 Received From : +13:23:43 ============================================================================ +13:23:43 FNo. Len. Field Value +13:23:43 ============================================================================ +13:23:43 [ 1] [ 4] [0200] +13:23:43 [ 2] [ 16] [6213545000786974] +13:23:43 [ 3] [ 6] [010000] +13:23:43 [ 4] [ 12] [000010000000] +13:23:43 [ 7] [ 10] [0320132133] +13:23:43 [ 11] [ 6] [946357] +13:23:43 [ 12] [ 6] [132133] +13:23:43 [ 13] [ 4] [0320] +13:23:43 [ 15] [ 4] [0320] +13:23:43 [ 18] [ 4] [6011] +13:23:43 [ 19] [ 3] [418] +13:23:43 [ 22] [ 3] [021] +13:23:43 [ 25] [ 2] [01] +13:23:43 [ 28] [ 9] [D00002000] +13:23:43 [ 32] [ 6] [668899] +13:23:43 [ 35] [ 32] [6213545000786974=491212018697255] +13:23:43 [ 37] [ 12] [507902209925] +13:23:43 [ 41] [ 8] [03006009] +13:23:43 [ 42] [ 15] [APT ] +13:23:43 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +13:23:43 [ 49] [ 3] [418] +13:23:43 [ 52] [ 16] [CF6CB9009C02F38A] +13:23:43 ============================================================================ +13:23:43 + + +waiting on router queue for slot.... +13:23:43 Sending to : <0> +13:23:43 ============================================================================ +13:23:44 ============================================================================ +13:23:44 Slot Id : <304> +13:23:44 Transaction Type : RESPONSE +13:23:44 Received From : +13:23:44 ============================================================================ +13:23:44 FNo. Len. Field Value +13:23:44 ============================================================================ +13:23:44 [ 1] [ 4] [0210] +13:23:44 [ 2] [ 16] [6213545000786974] +13:23:44 [ 3] [ 6] [010000] +13:23:44 [ 4] [ 12] [000010000000] +13:23:44 [ 7] [ 10] [0320132133] +13:23:44 [ 11] [ 6] [946357] +13:23:44 [ 12] [ 6] [132133] +13:23:44 [ 13] [ 4] [0320] +13:23:44 [ 15] [ 4] [0320] +13:23:44 [ 18] [ 4] [6011] +13:23:44 [ 19] [ 3] [418] +13:23:44 [ 32] [ 6] [668899] +13:23:44 [ 35] [ 32] [6213545000786974=491212018697255] +13:23:44 [ 37] [ 12] [507902209925] +13:23:44 [ 38] [ 6] [035398] +13:23:44 [ 39] [ 2] [00] +13:23:44 [ 41] [ 8] [03006009] +13:23:44 [ 49] [ 3] [418] +13:23:44 [ 54] [ 40] [0001418C0003944509850002418C000394450985] +13:23:44 ============================================================================ +13:23:44 Sending to : +13:23:44 ============================================================================ +13:23:44 + + +waiting on router queue for slot.... +13:23:45 ============================================================================ +13:23:45 Slot Id : <304> +13:23:45 Transaction Type : RESPONSE +13:23:45 Received From : +13:23:45 ============================================================================ +13:23:45 FNo. Len. Field Value +13:23:45 ============================================================================ +13:23:45 [ 1] [ 4] [0210] +13:23:45 [ 2] [ 16] [6213545000786974] +13:23:45 [ 3] [ 6] [010000] +13:23:45 [ 4] [ 12] [000010000000] +13:23:45 [ 7] [ 10] [0320132133] +13:23:45 [ 11] [ 6] [946357] +13:23:45 [ 12] [ 6] [132133] +13:23:45 [ 13] [ 4] [0320] +13:23:45 [ 15] [ 4] [0320] +13:23:45 [ 18] [ 4] [6011] +13:23:45 [ 19] [ 3] [418] +13:23:45 [ 32] [ 6] [668899] +13:23:45 [ 35] [ 32] [6213545000786974=491212018697255] +13:23:45 [ 37] [ 12] [507902209925] +13:23:45 [ 38] [ 6] [035398] +13:23:45 [ 39] [ 2] [00] +13:23:45 [ 41] [ 8] [03006009] +13:23:45 [ 49] [ 3] [418] +13:23:45 [ 54] [ 40] [0001418C0003944509850002418C000394450985] +13:23:45 ============================================================================ +13:23:45 Calculate Source COMM Id = 4 +13:23:45 ============================================================================ +13:23:45 + + +waiting on router queue for slot.... +13:23:45 ============================================================================ +13:23:45 Slot Id : <325> +13:23:45 Transaction Type : REQUEST +13:23:45 Received From : +13:23:45 ============================================================================ +13:23:45 FNo. Len. Field Value +13:23:45 ============================================================================ +13:23:45 [ 1] [ 4] [0800] +13:23:45 [ 7] [ 10] [0320062252] +13:23:45 [ 11] [ 6] [156540] +13:23:45 [ 70] [ 3] [301] +13:23:45 ============================================================================ +13:23:45 + + +waiting on router queue for slot.... +13:23:45 Sending to : +13:23:45 ============================================================================ +13:23:45 ============================================================================ +13:23:45 Slot Id : <325> +13:23:45 Transaction Type : RESPONSE +13:23:45 Received From : +13:23:45 ============================================================================ +13:23:45 FNo. Len. Field Value +13:23:45 ============================================================================ +13:23:45 [ 1] [ 4] [0810] +13:23:45 [ 7] [ 10] [0320062252] +13:23:45 [ 11] [ 6] [156540] +13:23:45 [ 39] [ 2] [00] +13:23:45 [ 70] [ 3] [301] +13:23:45 ============================================================================ +13:23:45 Calculate Source COMM Id = 2 +13:23:45 ============================================================================ +13:23:45 + + +waiting on router queue for slot.... +13:23:55 ============================================================================ +13:23:55 Slot Id : <285> +13:23:55 Transaction Type : REQUEST +13:23:55 Received From : +13:23:55 ============================================================================ +13:23:55 FNo. Len. Field Value +13:23:55 ============================================================================ +13:23:55 [ 1] [ 4] [0800] +13:23:55 [ 7] [ 10] [0320132342] +13:23:55 [ 11] [ 6] [029002] +13:23:55 [ 37] [ 12] [507913029002] +13:23:55 [ 70] [ 3] [ ] +13:23:55 ============================================================================ +13:23:55 + + +waiting on router queue for slot.... +13:23:55 Sending to : +13:23:55 ============================================================================ +13:23:55 ============================================================================ +13:23:55 Slot Id : <285> +13:23:55 Transaction Type : RESPONSE +13:23:55 Received From : +13:23:55 ============================================================================ +13:23:55 FNo. Len. Field Value +13:23:55 ============================================================================ +13:23:55 [ 1] [ 4] [0810] +13:23:55 [ 7] [ 10] [0320132342] +13:23:55 [ 11] [ 6] [029002] +13:23:55 [ 37] [ 12] [507913029002] +13:23:55 [ 39] [ 2] [91] +13:23:55 [ 70] [ 3] [ ] +13:23:55 ============================================================================ +13:23:55 Calculate Source COMM Id = 3 +13:23:55 ============================================================================ +13:23:55 + + +waiting on router queue for slot.... +13:23:59 ============================================================================ +13:23:59 Slot Id : <289> +13:23:59 Transaction Type : REQUEST +13:23:59 Received From : +13:23:59 ============================================================================ +13:23:59 FNo. Len. Field Value +13:23:59 ============================================================================ +13:23:59 [ 1] [ 4] [0200] +13:23:59 [ 2] [ 16] [6688990030009680] +13:23:59 [ 3] [ 6] [300000] +13:23:59 [ 4] [ 12] [000000000000] +13:23:59 [ 7] [ 10] [0320132355] +13:23:59 [ 11] [ 6] [756419] +13:23:59 [ 12] [ 6] [132355] +13:23:59 [ 13] [ 4] [0320] +13:23:59 [ 15] [ 4] [0320] +13:23:59 [ 18] [ 4] [6011] +13:23:59 [ 22] [ 3] [900] +13:23:59 [ 25] [ 2] [02] +13:23:59 [ 28] [ 9] [D00000000] +13:23:59 [ 32] [ 6] [621354] +13:23:59 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:23:59 [ 37] [ 12] [507904724307] +13:23:59 [ 41] [ 8] [18001100] +13:23:59 [ 42] [ 15] [NATIVE ] +13:23:59 [ 43] [ 40] [Ban Naxong May LAO] +13:23:59 [ 49] [ 3] [418] +13:23:59 [ 52] [ 16] [E329560C28E4EB85] +13:23:59 ============================================================================ +13:23:59 + + +waiting on router queue for slot.... +13:23:59 Sending to : +13:23:59 ============================================================================ +13:23:59 Sending to : +13:23:59 ============================================================================ +13:24:00 ============================================================================ +13:24:00 Slot Id : <289> +13:24:00 Transaction Type : REQUEST +13:24:00 Received From : +13:24:00 ============================================================================ +13:24:00 FNo. Len. Field Value +13:24:00 ============================================================================ +13:24:00 [ 1] [ 4] [0200] +13:24:00 [ 2] [ 16] [6688990030009680] +13:24:00 [ 3] [ 6] [300000] +13:24:00 [ 4] [ 12] [000000000000] +13:24:00 [ 7] [ 10] [0320132355] +13:24:00 [ 11] [ 6] [756419] +13:24:00 [ 12] [ 6] [132355] +13:24:00 [ 13] [ 4] [0320] +13:24:00 [ 15] [ 4] [0320] +13:24:00 [ 18] [ 4] [6011] +13:24:00 [ 22] [ 3] [900] +13:24:00 [ 25] [ 2] [02] +13:24:00 [ 28] [ 9] [D00000000] +13:24:00 [ 32] [ 6] [621354] +13:24:00 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:24:00 [ 37] [ 12] [507904724307] +13:24:00 [ 41] [ 8] [18001100] +13:24:00 [ 42] [ 15] [NATIVE ] +13:24:00 [ 43] [ 40] [Ban Naxong May LAO] +13:24:00 [ 49] [ 3] [418] +13:24:00 [ 52] [ 16] [E329560C28E4EB85] +13:24:00 ============================================================================ +13:24:00 + + +waiting on router queue for slot.... +13:24:00 Sending to : +13:24:00 ============================================================================ +13:24:00 ============================================================================ +13:24:00 Slot Id : <289> +13:24:00 Transaction Type : REQUEST +13:24:00 Received From : +13:24:00 ============================================================================ +13:24:00 FNo. Len. Field Value +13:24:00 ============================================================================ +13:24:00 [ 1] [ 4] [0200] +13:24:00 [ 2] [ 16] [6688990030009680] +13:24:00 [ 3] [ 6] [300000] +13:24:00 [ 4] [ 12] [000000000000] +13:24:00 [ 7] [ 10] [0320132355] +13:24:00 [ 11] [ 6] [756419] +13:24:00 [ 12] [ 6] [132355] +13:24:00 [ 13] [ 4] [0320] +13:24:00 [ 15] [ 4] [0320] +13:24:00 [ 18] [ 4] [6011] +13:24:00 [ 22] [ 3] [900] +13:24:00 [ 25] [ 2] [02] +13:24:00 [ 28] [ 9] [D00000000] +13:24:00 [ 32] [ 6] [621354] +13:24:00 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:24:00 [ 37] [ 12] [507904724307] +13:24:00 [ 41] [ 8] [18001100] +13:24:00 [ 42] [ 15] [NATIVE ] +13:24:00 [ 43] [ 40] [Ban Naxong May LAO] +13:24:00 [ 49] [ 3] [418] +13:24:00 [ 52] [ 16] [08D59348231280E0] +13:24:00 ============================================================================ +13:24:00 + + +waiting on router queue for slot.... +13:24:00 Sending to : <4> +13:24:00 ============================================================================ +13:24:01 ============================================================================ +13:24:01 Slot Id : <289> +13:24:01 Transaction Type : RESPONSE +13:24:01 Received From : +13:24:01 ============================================================================ +13:24:01 FNo. Len. Field Value +13:24:01 ============================================================================ +13:24:01 [ 1] [ 4] [0210] +13:24:01 [ 2] [ 16] [6688990030009680] +13:24:01 [ 3] [ 6] [300000] +13:24:01 [ 4] [ 12] [000000000000] +13:24:01 [ 11] [ 6] [756419] +13:24:01 [ 12] [ 6] [132355] +13:24:01 [ 15] [ 4] [0320] +13:24:01 [ 18] [ 4] [6011] +13:24:01 [ 32] [ 6] [621354] +13:24:01 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:24:01 [ 37] [ 12] [507904724307] +13:24:01 [ 38] [ 6] [657160] +13:24:01 [ 39] [ 2] [00] +13:24:01 [ 41] [ 8] [18001100] +13:24:01 [ 49] [ 3] [418] +13:24:01 [ 54] [ 20] [0002418C000129475559] +13:24:01 ============================================================================ +13:24:01 Sending to : +13:24:01 ============================================================================ +13:24:01 + + +waiting on router queue for slot.... +13:24:01 ============================================================================ +13:24:01 Slot Id : <297> +13:24:01 Transaction Type : REQUEST +13:24:01 Received From : +13:24:01 ============================================================================ +13:24:01 FNo. Len. Field Value +13:24:01 ============================================================================ +13:24:01 [ 1] [ 4] [0800] +13:24:01 [ 7] [ 10] [0320062307] +13:24:01 [ 11] [ 6] [156541] +13:24:01 [ 70] [ 3] [301] +13:24:01 ============================================================================ +13:24:01 + + +waiting on router queue for slot.... +13:24:01 Sending to : +13:24:01 ============================================================================ +13:24:01 ============================================================================ +13:24:01 Slot Id : <297> +13:24:01 Transaction Type : RESPONSE +13:24:01 Received From : +13:24:01 ============================================================================ +13:24:01 FNo. Len. Field Value +13:24:01 ============================================================================ +13:24:01 [ 1] [ 4] [0810] +13:24:01 [ 7] [ 10] [0320062307] +13:24:01 [ 11] [ 6] [156541] +13:24:01 [ 39] [ 2] [00] +13:24:01 [ 70] [ 3] [301] +13:24:01 ============================================================================ +13:24:01 Calculate Source COMM Id = 2 +13:24:01 ============================================================================ +13:24:01 + + +waiting on router queue for slot.... +13:24:02 ============================================================================ +13:24:02 Slot Id : <291> +13:24:02 Transaction Type : REQUEST +13:24:02 Received From : +13:24:02 ============================================================================ +13:24:02 FNo. Len. Field Value +13:24:02 ============================================================================ +13:24:02 [ 1] [ 4] [0200] +13:24:02 [ 2] [ 16] [6213548000216877] +13:24:02 [ 3] [ 6] [301000] +13:24:02 [ 7] [ 10] [0320062309] +13:24:02 [ 11] [ 6] [269284] +13:24:02 [ 12] [ 6] [132309] +13:24:02 [ 13] [ 4] [0320] +13:24:02 [ 14] [ 4] [1801] +13:24:02 [ 15] [ 4] [0320] +13:24:02 [ 18] [ 4] [6011] +13:24:02 [ 19] [ 3] [418] +13:24:02 [ 22] [ 3] [021] +13:24:02 [ 25] [ 2] [01] +13:24:02 [ 32] [ 6] [180893] +13:24:02 [ 35] [ 32] [6213548000216877=180112011687541] +13:24:02 [ 37] [ 12] [507906269284] +13:24:02 [ 41] [ 8] [0522XYXH] +13:24:02 [ 42] [ 15] [999999 ] +13:24:02 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +13:24:02 [ 49] [ 3] [418] +13:24:02 [ 52] [ 16] [420AE9C66A3CDF6A] +13:24:02 ============================================================================ +13:24:02 + + +waiting on router queue for slot.... +13:24:02 Sending to : +13:24:02 ============================================================================ +13:24:02 Sending to : +13:24:02 ============================================================================ +13:24:02 ============================================================================ +13:24:02 Slot Id : <289> +13:24:02 Transaction Type : RESPONSE +13:24:02 Received From : +13:24:02 ============================================================================ +13:24:02 FNo. Len. Field Value +13:24:02 ============================================================================ +13:24:02 [ 1] [ 4] [0210] +13:24:02 [ 2] [ 16] [6688990030009680] +13:24:02 [ 3] [ 6] [300000] +13:24:02 [ 4] [ 12] [000000000000] +13:24:02 [ 11] [ 6] [756419] +13:24:02 [ 12] [ 6] [132355] +13:24:02 [ 15] [ 4] [0320] +13:24:02 [ 18] [ 4] [6011] +13:24:02 [ 32] [ 6] [621354] +13:24:02 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:24:02 [ 37] [ 12] [507904724307] +13:24:02 [ 38] [ 6] [657160] +13:24:02 [ 39] [ 2] [00] +13:24:02 [ 41] [ 8] [18001100] +13:24:02 [ 49] [ 3] [418] +13:24:02 [ 54] [ 20] [0002418C000129475559] +13:24:02 ============================================================================ +13:24:02 Calculate Source COMM Id = 0 +13:24:02 ============================================================================ +13:24:02 + + +waiting on router queue for slot.... +13:24:02 ============================================================================ +13:24:02 Slot Id : <291> +13:24:02 Transaction Type : REQUEST +13:24:02 Received From : +13:24:02 ============================================================================ +13:24:02 FNo. Len. Field Value +13:24:02 ============================================================================ +13:24:02 [ 1] [ 4] [0200] +13:24:02 [ 2] [ 16] [6213548000216877] +13:24:02 [ 3] [ 6] [301000] +13:24:02 [ 7] [ 10] [0320062309] +13:24:02 [ 11] [ 6] [269284] +13:24:02 [ 12] [ 6] [132309] +13:24:02 [ 13] [ 4] [0320] +13:24:02 [ 14] [ 4] [1801] +13:24:02 [ 15] [ 4] [0320] +13:24:02 [ 18] [ 4] [6011] +13:24:02 [ 19] [ 3] [418] +13:24:02 [ 22] [ 3] [021] +13:24:02 [ 25] [ 2] [01] +13:24:02 [ 32] [ 6] [180893] +13:24:02 [ 35] [ 32] [6213548000216877=180112011687541] +13:24:02 [ 37] [ 12] [507906269284] +13:24:02 [ 41] [ 8] [0522XYXH] +13:24:02 [ 42] [ 15] [999999 ] +13:24:02 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +13:24:02 [ 49] [ 3] [418] +13:24:02 [ 52] [ 16] [420AE9C66A3CDF6A] +13:24:02 ============================================================================ +13:24:02 + + +waiting on router queue for slot.... +13:24:02 Sending to : +13:24:02 ============================================================================ +13:24:02 ============================================================================ +13:24:02 Slot Id : <291> +13:24:02 Transaction Type : REQUEST +13:24:02 Received From : +13:24:02 ============================================================================ +13:24:02 FNo. Len. Field Value +13:24:02 ============================================================================ +13:24:02 [ 1] [ 4] [0200] +13:24:02 [ 2] [ 16] [6213548000216877] +13:24:02 [ 3] [ 6] [301000] +13:24:02 [ 7] [ 10] [0320062309] +13:24:02 [ 11] [ 6] [269284] +13:24:02 [ 12] [ 6] [132309] +13:24:02 [ 13] [ 4] [0320] +13:24:02 [ 14] [ 4] [1801] +13:24:02 [ 15] [ 4] [0320] +13:24:02 [ 18] [ 4] [6011] +13:24:02 [ 19] [ 3] [418] +13:24:02 [ 22] [ 3] [021] +13:24:02 [ 25] [ 2] [01] +13:24:02 [ 32] [ 6] [180893] +13:24:02 [ 35] [ 32] [6213548000216877=180112011687541] +13:24:02 [ 37] [ 12] [507906269284] +13:24:02 [ 41] [ 8] [0522XYXH] +13:24:02 [ 42] [ 15] [999999 ] +13:24:02 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +13:24:02 [ 49] [ 3] [418] +13:24:02 [ 52] [ 16] [936E72B172432D17] +13:24:02 ============================================================================ +13:24:02 + + +waiting on router queue for slot.... +13:24:02 Sending to : <0> +13:24:02 ============================================================================ +13:24:02 ============================================================================ +13:24:02 Slot Id : <326> +13:24:02 Transaction Type : REQUEST +13:24:02 Received From : +13:24:02 ============================================================================ +13:24:02 FNo. Len. Field Value +13:24:02 ============================================================================ +13:24:02 [ 1] [ 4] [0200] +13:24:02 [ 2] [ 16] [1808930500003637] +13:24:02 [ 3] [ 6] [011000] +13:24:02 [ 4] [ 12] [000080000000] +13:24:02 [ 7] [ 10] [0320132358] +13:24:02 [ 11] [ 6] [756425] +13:24:02 [ 12] [ 6] [132358] +13:24:02 [ 13] [ 4] [0320] +13:24:02 [ 15] [ 4] [0320] +13:24:02 [ 18] [ 4] [6011] +13:24:02 [ 22] [ 3] [900] +13:24:02 [ 25] [ 2] [02] +13:24:02 [ 28] [ 9] [D00002000] +13:24:02 [ 32] [ 6] [621354] +13:24:02 [ 35] [ 27] [1808930500003637=1803500532] +13:24:02 [ 37] [ 12] [507903177378] +13:24:02 [ 41] [ 8] [04002700] +13:24:02 [ 42] [ 15] [NATIVE ] +13:24:02 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +13:24:02 [ 49] [ 3] [418] +13:24:02 [ 52] [ 16] [DBF1D751CF952314] +13:24:02 ============================================================================ +13:24:02 + + +waiting on router queue for slot.... +13:24:02 Sending to : +13:24:02 ============================================================================ +13:24:02 Sending to : +13:24:02 ============================================================================ +13:24:03 ============================================================================ +13:24:03 Slot Id : <291> +13:24:03 Transaction Type : RESPONSE +13:24:03 Received From : +13:24:03 ============================================================================ +13:24:03 FNo. Len. Field Value +13:24:03 ============================================================================ +13:24:03 [ 1] [ 4] [0210] +13:24:03 [ 2] [ 16] [6213548000216877] +13:24:03 [ 3] [ 6] [301000] +13:24:03 [ 4] [ 12] [000000000000] +13:24:03 [ 7] [ 10] [0320062309] +13:24:03 [ 11] [ 6] [269284] +13:24:03 [ 12] [ 6] [132309] +13:24:03 [ 13] [ 4] [0320] +13:24:03 [ 15] [ 4] [0320] +13:24:03 [ 18] [ 4] [6011] +13:24:03 [ 19] [ 3] [418] +13:24:03 [ 32] [ 6] [180893] +13:24:03 [ 35] [ 32] [6213548000216877=180112011687541] +13:24:03 [ 37] [ 12] [507906269284] +13:24:03 [ 38] [ 6] [316522] +13:24:03 [ 39] [ 2] [00] +13:24:03 [ 41] [ 8] [0522XYXH] +13:24:03 [ 49] [ 3] [418] +13:24:03 [ 54] [ 40] [1001418C0001036725001002418C000103672500] +13:24:03 ============================================================================ +13:24:03 Sending to : +13:24:03 ============================================================================ +13:24:03 + + +waiting on router queue for slot.... +13:24:03 ============================================================================ +13:24:03 Slot Id : <326> +13:24:03 Transaction Type : REQUEST +13:24:03 Received From : +13:24:03 ============================================================================ +13:24:03 FNo. Len. Field Value +13:24:03 ============================================================================ +13:24:03 [ 1] [ 4] [0200] +13:24:03 [ 2] [ 16] [1808930500003637] +13:24:03 [ 3] [ 6] [011000] +13:24:03 [ 4] [ 12] [000080000000] +13:24:03 [ 7] [ 10] [0320132358] +13:24:03 [ 11] [ 6] [756425] +13:24:03 [ 12] [ 6] [132358] +13:24:03 [ 13] [ 4] [0320] +13:24:03 [ 15] [ 4] [0320] +13:24:03 [ 18] [ 4] [6011] +13:24:03 [ 22] [ 3] [900] +13:24:03 [ 25] [ 2] [02] +13:24:03 [ 28] [ 9] [D00002000] +13:24:03 [ 32] [ 6] [621354] +13:24:03 [ 35] [ 27] [1808930500003637=1803500532] +13:24:03 [ 37] [ 12] [507903177378] +13:24:03 [ 41] [ 8] [04002700] +13:24:03 [ 42] [ 15] [NATIVE ] +13:24:03 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +13:24:03 [ 49] [ 3] [418] +13:24:03 [ 52] [ 16] [DBF1D751CF952314] +13:24:03 ============================================================================ +13:24:03 + + +waiting on router queue for slot.... +13:24:03 Sending to : +13:24:03 ============================================================================ +13:24:03 ============================================================================ +13:24:03 Slot Id : <326> +13:24:03 Transaction Type : REQUEST +13:24:03 Received From : +13:24:03 ============================================================================ +13:24:03 FNo. Len. Field Value +13:24:03 ============================================================================ +13:24:03 [ 1] [ 4] [0200] +13:24:03 [ 2] [ 16] [1808930500003637] +13:24:03 [ 3] [ 6] [011000] +13:24:03 [ 4] [ 12] [000080000000] +13:24:03 [ 7] [ 10] [0320132358] +13:24:03 [ 11] [ 6] [756425] +13:24:03 [ 12] [ 6] [132358] +13:24:03 [ 13] [ 4] [0320] +13:24:03 [ 15] [ 4] [0320] +13:24:03 [ 18] [ 4] [6011] +13:24:03 [ 22] [ 3] [900] +13:24:03 [ 25] [ 2] [02] +13:24:03 [ 28] [ 9] [D00002000] +13:24:03 [ 32] [ 6] [621354] +13:24:03 [ 35] [ 27] [1808930500003637=1803500532] +13:24:03 [ 37] [ 12] [507903177378] +13:24:03 [ 41] [ 8] [04002700] +13:24:03 [ 42] [ 15] [NATIVE ] +13:24:03 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +13:24:03 [ 49] [ 3] [418] +13:24:03 [ 52] [ 16] [4D23291E3A6503F1] +13:24:03 ============================================================================ +13:24:03 + + +waiting on router queue for slot.... +13:24:03 Sending to : <2> +13:24:03 ============================================================================ +13:24:04 ============================================================================ +13:24:04 Slot Id : <291> +13:24:04 Transaction Type : RESPONSE +13:24:04 Received From : +13:24:04 ============================================================================ +13:24:04 FNo. Len. Field Value +13:24:04 ============================================================================ +13:24:04 [ 1] [ 4] [0210] +13:24:04 [ 2] [ 16] [6213548000216877] +13:24:04 [ 3] [ 6] [301000] +13:24:04 [ 4] [ 12] [000000000000] +13:24:04 [ 7] [ 10] [0320062309] +13:24:04 [ 11] [ 6] [269284] +13:24:04 [ 12] [ 6] [132309] +13:24:04 [ 13] [ 4] [0320] +13:24:04 [ 15] [ 4] [0320] +13:24:04 [ 18] [ 4] [6011] +13:24:04 [ 19] [ 3] [418] +13:24:04 [ 32] [ 6] [180893] +13:24:04 [ 35] [ 32] [6213548000216877=180112011687541] +13:24:04 [ 37] [ 12] [507906269284] +13:24:04 [ 38] [ 6] [316522] +13:24:04 [ 39] [ 2] [00] +13:24:04 [ 41] [ 8] [0522XYXH] +13:24:04 [ 49] [ 3] [418] +13:24:04 [ 54] [ 40] [1001418C0001036725001002418C000103672500] +13:24:04 ============================================================================ +13:24:04 Calculate Source COMM Id = 2 +13:24:04 ============================================================================ +13:24:04 + + +waiting on router queue for slot.... +13:24:11 ============================================================================ +13:24:11 Slot Id : <326> +13:24:11 Transaction Type : RESPONSE +13:24:11 Received From : +13:24:11 ============================================================================ +13:24:11 FNo. Len. Field Value +13:24:11 ============================================================================ +13:24:11 [ 1] [ 4] [0210] +13:24:11 [ 2] [ 16] [1808930500003637] +13:24:11 [ 3] [ 6] [011000] +13:24:11 [ 4] [ 12] [000080000000] +13:24:11 [ 6] [ 12] [000080000000] +13:24:11 [ 7] [ 10] [0320132358] +13:24:11 [ 11] [ 6] [756425] +13:24:11 [ 12] [ 6] [132358] +13:24:11 [ 13] [ 4] [0320] +13:24:11 [ 18] [ 4] [6011] +13:24:11 [ 19] [ 3] [418] +13:24:11 [ 22] [ 3] [021] +13:24:11 [ 32] [ 6] [621354] +13:24:11 [ 35] [ 27] [1808930500003637=1803500532] +13:24:11 [ 37] [ 12] [507903177378] +13:24:11 [ 38] [ 6] [756425] +13:24:11 [ 39] [ 2] [00] +13:24:11 [ 41] [ 8] [04002700] +13:24:11 [ 49] [ 3] [418] +13:24:11 [ 52] [ 16] [4D23291E3A6503F1] +13:24:11 [ 54] [ 20] [1001418C000363996500] +13:24:11 ============================================================================ +13:24:11 Sending to : +13:24:11 ============================================================================ +13:24:11 + + +waiting on router queue for slot.... +13:24:13 ============================================================================ +13:24:13 Slot Id : <326> +13:24:13 Transaction Type : RESPONSE +13:24:13 Received From : +13:24:13 ============================================================================ +13:24:13 FNo. Len. Field Value +13:24:13 ============================================================================ +13:24:13 [ 1] [ 4] [0210] +13:24:13 [ 2] [ 16] [1808930500003637] +13:24:13 [ 3] [ 6] [011000] +13:24:13 [ 4] [ 12] [000080000000] +13:24:13 [ 6] [ 12] [000080000000] +13:24:13 [ 7] [ 10] [0320132358] +13:24:13 [ 11] [ 6] [756425] +13:24:13 [ 12] [ 6] [132358] +13:24:13 [ 13] [ 4] [0320] +13:24:13 [ 18] [ 4] [6011] +13:24:13 [ 19] [ 3] [418] +13:24:13 [ 22] [ 3] [021] +13:24:13 [ 32] [ 6] [621354] +13:24:13 [ 35] [ 27] [1808930500003637=1803500532] +13:24:13 [ 37] [ 12] [507903177378] +13:24:13 [ 38] [ 6] [756425] +13:24:13 [ 39] [ 2] [00] +13:24:13 [ 41] [ 8] [04002700] +13:24:13 [ 49] [ 3] [418] +13:24:13 [ 52] [ 16] [4D23291E3A6503F1] +13:24:13 [ 54] [ 20] [1001418C000363996500] +13:24:13 ============================================================================ +13:24:13 Calculate Source COMM Id = 0 +13:24:13 ============================================================================ +13:24:13 + + +waiting on router queue for slot.... +13:24:18 ============================================================================ +13:24:18 Slot Id : <301> +13:24:18 Transaction Type : REQUEST +13:24:18 Received From : +13:24:18 ============================================================================ +13:24:18 FNo. Len. Field Value +13:24:18 ============================================================================ +13:24:18 [ 1] [ 4] [0800] +13:24:18 [ 7] [ 10] [0320062325] +13:24:18 [ 11] [ 6] [156542] +13:24:18 [ 70] [ 3] [301] +13:24:18 ============================================================================ +13:24:18 + + +waiting on router queue for slot.... +13:24:18 Sending to : +13:24:18 ============================================================================ +13:24:18 ============================================================================ +13:24:18 Slot Id : <301> +13:24:18 Transaction Type : RESPONSE +13:24:18 Received From : +13:24:18 ============================================================================ +13:24:18 FNo. Len. Field Value +13:24:18 ============================================================================ +13:24:18 [ 1] [ 4] [0810] +13:24:18 [ 7] [ 10] [0320062325] +13:24:18 [ 11] [ 6] [156542] +13:24:18 [ 39] [ 2] [00] +13:24:18 [ 70] [ 3] [301] +13:24:18 ============================================================================ +13:24:18 Calculate Source COMM Id = 2 +13:24:18 ============================================================================ +13:24:18 + + +waiting on router queue for slot.... +13:24:24 ============================================================================ +13:24:24 Slot Id : <327> +13:24:24 Transaction Type : REQUEST +13:24:24 Received From : +13:24:24 ============================================================================ +13:24:24 FNo. Len. Field Value +13:24:24 ============================================================================ +13:24:24 [ 1] [ 4] [0200] +13:24:24 [ 2] [ 16] [6688990107228205] +13:24:24 [ 3] [ 6] [012000] +13:24:24 [ 4] [ 12] [000025000000] +13:24:24 [ 7] [ 10] [0320132419] +13:24:24 [ 11] [ 6] [756512] +13:24:24 [ 12] [ 6] [132419] +13:24:24 [ 13] [ 4] [0320] +13:24:24 [ 15] [ 4] [0320] +13:24:24 [ 18] [ 4] [6011] +13:24:24 [ 22] [ 3] [900] +13:24:24 [ 25] [ 2] [02] +13:24:24 [ 28] [ 9] [D00002000] +13:24:24 [ 32] [ 6] [621354] +13:24:24 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:24:24 [ 37] [ 12] [507904153897] +13:24:24 [ 41] [ 8] [20001000] +13:24:24 [ 42] [ 15] [NATIVE ] +13:24:24 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:24:24 [ 49] [ 3] [418] +13:24:24 [ 52] [ 16] [216E7866C9888A9E] +13:24:24 ============================================================================ +13:24:24 + + +waiting on router queue for slot.... +13:24:24 Sending to : +13:24:24 ============================================================================ +13:24:24 Sending to : +13:24:24 ============================================================================ +13:24:24 ============================================================================ +13:24:24 Slot Id : <327> +13:24:24 Transaction Type : REQUEST +13:24:24 Received From : +13:24:24 ============================================================================ +13:24:24 FNo. Len. Field Value +13:24:24 ============================================================================ +13:24:24 [ 1] [ 4] [0200] +13:24:24 [ 2] [ 16] [6688990107228205] +13:24:24 [ 3] [ 6] [012000] +13:24:24 [ 4] [ 12] [000025000000] +13:24:24 [ 7] [ 10] [0320132419] +13:24:24 [ 11] [ 6] [756512] +13:24:24 [ 12] [ 6] [132419] +13:24:24 [ 13] [ 4] [0320] +13:24:24 [ 15] [ 4] [0320] +13:24:24 [ 18] [ 4] [6011] +13:24:24 [ 22] [ 3] [900] +13:24:24 [ 25] [ 2] [02] +13:24:24 [ 28] [ 9] [D00002000] +13:24:24 [ 32] [ 6] [621354] +13:24:24 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:24:24 [ 37] [ 12] [507904153897] +13:24:24 [ 41] [ 8] [20001000] +13:24:24 [ 42] [ 15] [NATIVE ] +13:24:24 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:24:24 [ 49] [ 3] [418] +13:24:24 [ 52] [ 16] [216E7866C9888A9E] +13:24:24 ============================================================================ +13:24:24 + + +waiting on router queue for slot.... +13:24:24 Sending to : +13:24:24 ============================================================================ +13:24:24 ============================================================================ +13:24:24 Slot Id : <327> +13:24:24 Transaction Type : REQUEST +13:24:24 Received From : +13:24:24 ============================================================================ +13:24:24 FNo. Len. Field Value +13:24:24 ============================================================================ +13:24:24 [ 1] [ 4] [0200] +13:24:24 [ 2] [ 16] [6688990107228205] +13:24:24 [ 3] [ 6] [012000] +13:24:24 [ 4] [ 12] [000025000000] +13:24:24 [ 7] [ 10] [0320132419] +13:24:24 [ 11] [ 6] [756512] +13:24:24 [ 12] [ 6] [132419] +13:24:24 [ 13] [ 4] [0320] +13:24:24 [ 15] [ 4] [0320] +13:24:24 [ 18] [ 4] [6011] +13:24:24 [ 22] [ 3] [900] +13:24:24 [ 25] [ 2] [02] +13:24:24 [ 28] [ 9] [D00002000] +13:24:24 [ 32] [ 6] [621354] +13:24:24 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:24:24 [ 37] [ 12] [507904153897] +13:24:24 [ 41] [ 8] [20001000] +13:24:24 [ 42] [ 15] [NATIVE ] +13:24:24 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:24:24 [ 49] [ 3] [418] +13:24:24 [ 52] [ 16] [BFD645C3C5A2455A] +13:24:24 ============================================================================ +13:24:24 + + +waiting on router queue for slot.... +13:24:24 Sending to : <4> +13:24:24 ============================================================================ +13:24:24 ============================================================================ +13:24:24 Slot Id : <327> +13:24:24 Transaction Type : RESPONSE +13:24:24 Received From : +13:24:24 ============================================================================ +13:24:24 FNo. Len. Field Value +13:24:24 ============================================================================ +13:24:24 [ 1] [ 4] [0210] +13:24:24 [ 2] [ 16] [6688990107228205] +13:24:24 [ 3] [ 6] [012000] +13:24:24 [ 4] [ 12] [000025000000] +13:24:24 [ 11] [ 6] [756512] +13:24:24 [ 12] [ 6] [132419] +13:24:24 [ 15] [ 4] [0320] +13:24:24 [ 18] [ 4] [6011] +13:24:24 [ 32] [ 6] [621354] +13:24:24 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:24:24 [ 37] [ 12] [507904153897] +13:24:24 [ 39] [ 2] [51] +13:24:24 [ 41] [ 8] [20001000] +13:24:24 [ 49] [ 3] [418] +13:24:24 [ 54] [ 0] [] +13:24:24 ============================================================================ +13:24:24 Sending to : +13:24:24 ============================================================================ +13:24:24 + + +waiting on router queue for slot.... +13:24:25 ============================================================================ +13:24:25 Slot Id : <327> +13:24:25 Transaction Type : RESPONSE +13:24:25 Received From : +13:24:25 ============================================================================ +13:24:25 FNo. Len. Field Value +13:24:25 ============================================================================ +13:24:25 [ 1] [ 4] [0210] +13:24:25 [ 2] [ 16] [6688990107228205] +13:24:25 [ 3] [ 6] [012000] +13:24:25 [ 4] [ 12] [000025000000] +13:24:25 [ 11] [ 6] [756512] +13:24:25 [ 12] [ 6] [132419] +13:24:25 [ 15] [ 4] [0320] +13:24:25 [ 18] [ 4] [6011] +13:24:25 [ 32] [ 6] [621354] +13:24:25 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:24:25 [ 37] [ 12] [507904153897] +13:24:25 [ 39] [ 2] [51] +13:24:25 [ 41] [ 8] [20001000] +13:24:25 [ 49] [ 3] [418] +13:24:25 [ 54] [ 0] [] +13:24:25 ============================================================================ +13:24:25 Calculate Source COMM Id = 0 +13:24:25 ============================================================================ +13:24:25 + + +waiting on router queue for slot.... +13:24:34 ============================================================================ +13:24:34 Slot Id : <305> +13:24:34 Transaction Type : REQUEST +13:24:34 Received From : +13:24:34 ============================================================================ +13:24:34 FNo. Len. Field Value +13:24:34 ============================================================================ +13:24:34 [ 1] [ 4] [0800] +13:24:34 [ 7] [ 10] [0320062341] +13:24:34 [ 11] [ 6] [156543] +13:24:34 [ 70] [ 3] [301] +13:24:34 ============================================================================ +13:24:34 + + +waiting on router queue for slot.... +13:24:34 Sending to : +13:24:34 ============================================================================ +13:24:34 ============================================================================ +13:24:34 Slot Id : <305> +13:24:34 Transaction Type : RESPONSE +13:24:34 Received From : +13:24:34 ============================================================================ +13:24:34 FNo. Len. Field Value +13:24:34 ============================================================================ +13:24:34 [ 1] [ 4] [0810] +13:24:34 [ 7] [ 10] [0320062341] +13:24:34 [ 11] [ 6] [156543] +13:24:34 [ 39] [ 2] [00] +13:24:34 [ 70] [ 3] [301] +13:24:34 ============================================================================ +13:24:34 Calculate Source COMM Id = 2 +13:24:34 ============================================================================ +13:24:34 + + +waiting on router queue for slot.... +13:24:34 ============================================================================ +13:24:34 Slot Id : <314> +13:24:34 Transaction Type : REQUEST +13:24:34 Received From : +13:24:34 ============================================================================ +13:24:34 FNo. Len. Field Value +13:24:34 ============================================================================ +13:24:34 [ 1] [ 4] [0800] +13:24:34 [ 2] [ 5] [02531] +13:24:34 [ 3] [ 6] [579138] +13:24:34 [ 7] [ 10] [0320062434] +13:24:34 [ 11] [ 6] [807190] +13:24:34 [ 15] [ 10] [0320062434] +13:24:34 [ 37] [ 11] [57913807190] +13:24:34 [ 70] [ 3] [001] +13:24:34 ============================================================================ +13:24:34 + + +waiting on router queue for slot.... +13:24:34 ============================================================================ +13:24:34 Slot Id : <314> +13:24:34 Transaction Type : RESPONSE +13:24:34 Received From : +13:24:34 ============================================================================ +13:24:34 FNo. Len. Field Value +13:24:34 ============================================================================ +13:24:34 [ 1] [ 4] [0810] +13:24:34 [ 7] [ 10] [0320062434] +13:24:34 [ 11] [ 6] [807190] +13:24:34 [ 15] [ 4] [0320] +13:24:34 [ 37] [ 12] [57913807190] +13:24:34 [ 39] [ 2] [00] +13:24:34 [ 70] [ 3] [001] +13:24:34 ============================================================================ +13:24:34 Sending to : +13:24:34 ============================================================================ +13:24:34 + + +waiting on router queue for slot.... +13:24:44 ============================================================================ +13:24:44 Slot Id : <302> +13:24:44 Transaction Type : REQUEST +13:24:44 Received From : +13:24:44 ============================================================================ +13:24:44 FNo. Len. Field Value +13:24:44 ============================================================================ +13:24:44 [ 1] [ 4] [0800] +13:24:44 [ 7] [ 10] [0320062351] +13:24:44 [ 11] [ 6] [156544] +13:24:44 [ 70] [ 3] [301] +13:24:44 ============================================================================ +13:24:44 + + +waiting on router queue for slot.... +13:24:44 Sending to : +13:24:44 ============================================================================ +13:24:44 ============================================================================ +13:24:44 Slot Id : <302> +13:24:44 Transaction Type : RESPONSE +13:24:44 Received From : +13:24:44 ============================================================================ +13:24:44 FNo. Len. Field Value +13:24:44 ============================================================================ +13:24:44 [ 1] [ 4] [0810] +13:24:44 [ 7] [ 10] [0320062351] +13:24:44 [ 11] [ 6] [156544] +13:24:44 [ 39] [ 2] [00] +13:24:44 [ 70] [ 3] [301] +13:24:44 ============================================================================ +13:24:44 Calculate Source COMM Id = 2 +13:24:44 ============================================================================ +13:24:44 + + +waiting on router queue for slot.... +13:24:55 ============================================================================ +13:24:55 Slot Id : <292> +13:24:55 Transaction Type : REQUEST +13:24:55 Received From : +13:24:55 ============================================================================ +13:24:55 FNo. Len. Field Value +13:24:55 ============================================================================ +13:24:55 [ 1] [ 4] [0200] +13:24:55 [ 2] [ 16] [6688990030009680] +13:24:55 [ 3] [ 6] [012000] +13:24:55 [ 4] [ 12] [000100000000] +13:24:55 [ 7] [ 10] [0320132451] +13:24:55 [ 11] [ 6] [756638] +13:24:55 [ 12] [ 6] [132451] +13:24:55 [ 13] [ 4] [0320] +13:24:55 [ 15] [ 4] [0320] +13:24:55 [ 18] [ 4] [6011] +13:24:55 [ 22] [ 3] [900] +13:24:55 [ 25] [ 2] [02] +13:24:55 [ 28] [ 9] [D00002000] +13:24:55 [ 32] [ 6] [621354] +13:24:55 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:24:55 [ 37] [ 12] [507904724310] +13:24:55 [ 41] [ 8] [18001100] +13:24:55 [ 42] [ 15] [NATIVE ] +13:24:55 [ 43] [ 40] [Ban Naxong May LAO] +13:24:55 [ 49] [ 3] [418] +13:24:55 [ 52] [ 16] [E329560C28E4EB85] +13:24:55 ============================================================================ +13:24:55 + + +waiting on router queue for slot.... +13:24:55 Sending to : +13:24:55 ============================================================================ +13:24:55 Sending to : +13:24:55 ============================================================================ +13:24:55 ============================================================================ +13:24:55 Slot Id : <331> +13:24:55 Transaction Type : REQUEST +13:24:55 Received From : +13:24:55 ============================================================================ +13:24:55 FNo. Len. Field Value +13:24:55 ============================================================================ +13:24:55 [ 1] [ 4] [0800] +13:24:55 [ 7] [ 10] [0320063242] +13:24:55 [ 11] [ 6] [056076] +13:24:55 [ 37] [ 12] [57913056076] +13:24:55 [ 70] [ 3] [301] +13:24:55 ============================================================================ +13:24:55 + + +waiting on router queue for slot.... +13:24:55 Sending to : +13:24:55 ============================================================================ +13:24:55 ============================================================================ +13:24:55 Slot Id : <331> +13:24:55 Transaction Type : RESPONSE +13:24:55 Received From : +13:24:55 ============================================================================ +13:24:55 FNo. Len. Field Value +13:24:55 ============================================================================ +13:24:55 [ 1] [ 4] [0810] +13:24:55 [ 7] [ 10] [0320063242] +13:24:55 [ 11] [ 6] [056076] +13:24:55 [ 37] [ 12] [579130560760] +13:24:55 [ 39] [ 2] [00] +13:24:55 [ 70] [ 3] [810] +13:24:55 ============================================================================ +13:24:55 Calculate Source COMM Id = 1 +13:24:55 ============================================================================ +13:24:55 + + +waiting on router queue for slot.... +13:24:55 ============================================================================ +13:24:55 Slot Id : <292> +13:24:55 Transaction Type : REQUEST +13:24:55 Received From : +13:24:55 ============================================================================ +13:24:55 FNo. Len. Field Value +13:24:55 ============================================================================ +13:24:55 [ 1] [ 4] [0200] +13:24:55 [ 2] [ 16] [6688990030009680] +13:24:55 [ 3] [ 6] [012000] +13:24:55 [ 4] [ 12] [000100000000] +13:24:55 [ 7] [ 10] [0320132451] +13:24:55 [ 11] [ 6] [756638] +13:24:55 [ 12] [ 6] [132451] +13:24:55 [ 13] [ 4] [0320] +13:24:55 [ 15] [ 4] [0320] +13:24:55 [ 18] [ 4] [6011] +13:24:55 [ 22] [ 3] [900] +13:24:55 [ 25] [ 2] [02] +13:24:55 [ 28] [ 9] [D00002000] +13:24:55 [ 32] [ 6] [621354] +13:24:55 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:24:55 [ 37] [ 12] [507904724310] +13:24:55 [ 41] [ 8] [18001100] +13:24:55 [ 42] [ 15] [NATIVE ] +13:24:55 [ 43] [ 40] [Ban Naxong May LAO] +13:24:55 [ 49] [ 3] [418] +13:24:55 [ 52] [ 16] [E329560C28E4EB85] +13:24:55 ============================================================================ +13:24:55 + + +waiting on router queue for slot.... +13:24:55 Sending to : +13:24:55 ============================================================================ +13:24:55 ============================================================================ +13:24:55 Slot Id : <292> +13:24:55 Transaction Type : REQUEST +13:24:55 Received From : +13:24:55 ============================================================================ +13:24:55 FNo. Len. Field Value +13:24:55 ============================================================================ +13:24:55 [ 1] [ 4] [0200] +13:24:55 [ 2] [ 16] [6688990030009680] +13:24:55 [ 3] [ 6] [012000] +13:24:55 [ 4] [ 12] [000100000000] +13:24:55 [ 7] [ 10] [0320132451] +13:24:55 [ 11] [ 6] [756638] +13:24:55 [ 12] [ 6] [132451] +13:24:55 [ 13] [ 4] [0320] +13:24:55 [ 15] [ 4] [0320] +13:24:55 [ 18] [ 4] [6011] +13:24:55 [ 22] [ 3] [900] +13:24:55 [ 25] [ 2] [02] +13:24:55 [ 28] [ 9] [D00002000] +13:24:55 [ 32] [ 6] [621354] +13:24:55 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:24:55 [ 37] [ 12] [507904724310] +13:24:55 [ 41] [ 8] [18001100] +13:24:55 [ 42] [ 15] [NATIVE ] +13:24:55 [ 43] [ 40] [Ban Naxong May LAO] +13:24:55 [ 49] [ 3] [418] +13:24:55 [ 52] [ 16] [08D59348231280E0] +13:24:55 ============================================================================ +13:24:55 + + +waiting on router queue for slot.... +13:24:55 Sending to : <4> +13:24:55 ============================================================================ +13:24:56 ============================================================================ +13:24:56 Slot Id : <292> +13:24:56 Transaction Type : RESPONSE +13:24:56 Received From : +13:24:56 ============================================================================ +13:24:56 FNo. Len. Field Value +13:24:56 ============================================================================ +13:24:56 [ 1] [ 4] [0210] +13:24:56 [ 2] [ 16] [6688990030009680] +13:24:56 [ 3] [ 6] [012000] +13:24:56 [ 4] [ 12] [000100000000] +13:24:56 [ 11] [ 6] [756638] +13:24:56 [ 12] [ 6] [132451] +13:24:56 [ 15] [ 4] [0320] +13:24:56 [ 18] [ 4] [6011] +13:24:56 [ 32] [ 6] [621354] +13:24:56 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:24:56 [ 37] [ 12] [507904724310] +13:24:56 [ 38] [ 6] [312040] +13:24:56 [ 39] [ 2] [00] +13:24:56 [ 41] [ 8] [18001100] +13:24:56 [ 49] [ 3] [418] +13:24:56 [ 54] [ 20] [2002418C000029275559] +13:24:56 ============================================================================ +13:24:56 Sending to : +13:24:56 ============================================================================ +13:24:56 + + +waiting on router queue for slot.... +13:24:57 ============================================================================ +13:24:57 Slot Id : <333> +13:24:57 Transaction Type : REQUEST +13:24:57 Received From : +13:24:57 ============================================================================ +13:24:57 FNo. Len. Field Value +13:24:57 ============================================================================ +13:24:57 [ 1] [ 4] [0200] +13:24:57 [ 2] [ 16] [6213548000216877] +13:24:57 [ 3] [ 6] [010000] +13:24:57 [ 4] [ 12] [000050000000] +13:24:57 [ 7] [ 10] [0320062404] +13:24:57 [ 11] [ 6] [269288] +13:24:57 [ 12] [ 6] [132404] +13:24:57 [ 13] [ 4] [0320] +13:24:57 [ 14] [ 4] [1801] +13:24:57 [ 15] [ 4] [0320] +13:24:57 [ 18] [ 4] [6011] +13:24:57 [ 19] [ 3] [418] +13:24:57 [ 22] [ 3] [021] +13:24:57 [ 25] [ 2] [01] +13:24:57 [ 28] [ 9] [D00002000] +13:24:57 [ 32] [ 6] [180893] +13:24:57 [ 35] [ 32] [6213548000216877=180112011687541] +13:24:57 [ 37] [ 12] [507906269288] +13:24:57 [ 41] [ 8] [0522XYXH] +13:24:57 [ 42] [ 15] [999999 ] +13:24:57 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +13:24:57 [ 49] [ 3] [418] +13:24:57 [ 52] [ 16] [420AE9C66A3CDF6A] +13:24:57 ============================================================================ +13:24:57 + + +waiting on router queue for slot.... +13:24:57 Sending to : +13:24:57 ============================================================================ +13:24:57 Sending to : +13:24:57 ============================================================================ +13:24:57 ============================================================================ +13:24:57 Slot Id : <333> +13:24:57 Transaction Type : REQUEST +13:24:57 Received From : +13:24:57 ============================================================================ +13:24:57 FNo. Len. Field Value +13:24:57 ============================================================================ +13:24:57 [ 1] [ 4] [0200] +13:24:57 [ 2] [ 16] [6213548000216877] +13:24:57 [ 3] [ 6] [010000] +13:24:57 [ 4] [ 12] [000050000000] +13:24:57 [ 7] [ 10] [0320062404] +13:24:57 [ 11] [ 6] [269288] +13:24:57 [ 12] [ 6] [132404] +13:24:57 [ 13] [ 4] [0320] +13:24:57 [ 14] [ 4] [1801] +13:24:57 [ 15] [ 4] [0320] +13:24:57 [ 18] [ 4] [6011] +13:24:57 [ 19] [ 3] [418] +13:24:57 [ 22] [ 3] [021] +13:24:57 [ 25] [ 2] [01] +13:24:57 [ 28] [ 9] [D00002000] +13:24:57 [ 32] [ 6] [180893] +13:24:57 [ 35] [ 32] [6213548000216877=180112011687541] +13:24:57 [ 37] [ 12] [507906269288] +13:24:57 [ 41] [ 8] [0522XYXH] +13:24:57 [ 42] [ 15] [999999 ] +13:24:57 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +13:24:57 [ 49] [ 3] [418] +13:24:57 [ 52] [ 16] [420AE9C66A3CDF6A] +13:24:57 ============================================================================ +13:24:57 + + +waiting on router queue for slot.... +13:24:57 Sending to : +13:24:57 ============================================================================ +13:24:57 ============================================================================ +13:24:57 Slot Id : <333> +13:24:57 Transaction Type : REQUEST +13:24:57 Received From : +13:24:57 ============================================================================ +13:24:57 FNo. Len. Field Value +13:24:57 ============================================================================ +13:24:57 [ 1] [ 4] [0200] +13:24:57 [ 2] [ 16] [6213548000216877] +13:24:57 [ 3] [ 6] [010000] +13:24:57 [ 4] [ 12] [000050000000] +13:24:57 [ 7] [ 10] [0320062404] +13:24:57 [ 11] [ 6] [269288] +13:24:57 [ 12] [ 6] [132404] +13:24:57 [ 13] [ 4] [0320] +13:24:57 [ 14] [ 4] [1801] +13:24:57 [ 15] [ 4] [0320] +13:24:57 [ 18] [ 4] [6011] +13:24:57 [ 19] [ 3] [418] +13:24:57 [ 22] [ 3] [021] +13:24:57 [ 25] [ 2] [01] +13:24:57 [ 28] [ 9] [D00002000] +13:24:57 [ 32] [ 6] [180893] +13:24:57 [ 35] [ 32] [6213548000216877=180112011687541] +13:24:57 [ 37] [ 12] [507906269288] +13:24:57 [ 41] [ 8] [0522XYXH] +13:24:57 [ 42] [ 15] [999999 ] +13:24:57 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +13:24:57 [ 49] [ 3] [418] +13:24:57 [ 52] [ 16] [936E72B172432D17] +13:24:57 ============================================================================ +13:24:57 + + +waiting on router queue for slot.... +13:24:57 Sending to : <0> +13:24:57 ============================================================================ +13:24:58 ============================================================================ +13:24:58 Slot Id : <333> +13:24:58 Transaction Type : RESPONSE +13:24:58 Received From : +13:24:58 ============================================================================ +13:24:58 FNo. Len. Field Value +13:24:58 ============================================================================ +13:24:58 [ 1] [ 4] [0210] +13:24:58 [ 2] [ 16] [6213548000216877] +13:24:58 [ 3] [ 6] [010000] +13:24:58 [ 4] [ 12] [000050000000] +13:24:58 [ 7] [ 10] [0320062404] +13:24:58 [ 11] [ 6] [269288] +13:24:58 [ 12] [ 6] [132404] +13:24:58 [ 13] [ 4] [0320] +13:24:58 [ 15] [ 4] [0320] +13:24:58 [ 18] [ 4] [6011] +13:24:58 [ 19] [ 3] [418] +13:24:58 [ 32] [ 6] [180893] +13:24:58 [ 35] [ 32] [6213548000216877=180112011687541] +13:24:58 [ 37] [ 12] [507906269288] +13:24:58 [ 38] [ 6] [976290] +13:24:58 [ 39] [ 2] [00] +13:24:58 [ 41] [ 8] [0522XYXH] +13:24:58 [ 49] [ 3] [418] +13:24:58 [ 54] [ 40] [0001418C0000534725000002418C000053472500] +13:24:58 ============================================================================ +13:24:58 Sending to : +13:24:58 ============================================================================ +13:24:58 + + +waiting on router queue for slot.... +13:24:58 ============================================================================ +13:24:58 Slot Id : <292> +13:24:58 Transaction Type : RESPONSE +13:24:58 Received From : +13:24:58 ============================================================================ +13:24:58 FNo. Len. Field Value +13:24:58 ============================================================================ +13:24:58 [ 1] [ 4] [0210] +13:24:58 [ 2] [ 16] [6688990030009680] +13:24:58 [ 3] [ 6] [012000] +13:24:58 [ 4] [ 12] [000100000000] +13:24:58 [ 11] [ 6] [756638] +13:24:58 [ 12] [ 6] [132451] +13:24:58 [ 15] [ 4] [0320] +13:24:58 [ 18] [ 4] [6011] +13:24:58 [ 32] [ 6] [621354] +13:24:58 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:24:58 [ 37] [ 12] [507904724310] +13:24:58 [ 38] [ 6] [312040] +13:24:58 [ 39] [ 2] [00] +13:24:58 [ 41] [ 8] [18001100] +13:24:58 [ 49] [ 3] [418] +13:24:58 [ 54] [ 20] [2002418C000029275559] +13:24:58 ============================================================================ +13:24:58 Calculate Source COMM Id = 0 +13:24:58 ============================================================================ +13:24:58 + + +waiting on router queue for slot.... +13:24:59 ============================================================================ +13:24:59 Slot Id : <333> +13:24:59 Transaction Type : RESPONSE +13:24:59 Received From : +13:24:59 ============================================================================ +13:24:59 FNo. Len. Field Value +13:24:59 ============================================================================ +13:24:59 [ 1] [ 4] [0210] +13:24:59 [ 2] [ 16] [6213548000216877] +13:24:59 [ 3] [ 6] [010000] +13:24:59 [ 4] [ 12] [000050000000] +13:24:59 [ 7] [ 10] [0320062404] +13:24:59 [ 11] [ 6] [269288] +13:24:59 [ 12] [ 6] [132404] +13:24:59 [ 13] [ 4] [0320] +13:24:59 [ 15] [ 4] [0320] +13:24:59 [ 18] [ 4] [6011] +13:24:59 [ 19] [ 3] [418] +13:24:59 [ 32] [ 6] [180893] +13:24:59 [ 35] [ 32] [6213548000216877=180112011687541] +13:24:59 [ 37] [ 12] [507906269288] +13:24:59 [ 38] [ 6] [976290] +13:24:59 [ 39] [ 2] [00] +13:24:59 [ 41] [ 8] [0522XYXH] +13:24:59 [ 49] [ 3] [418] +13:24:59 [ 54] [ 40] [0001418C0000534725000002418C000053472500] +13:24:59 ============================================================================ +13:24:59 Calculate Source COMM Id = 2 +13:24:59 ============================================================================ +13:24:59 + + +waiting on router queue for slot.... +13:25:04 ============================================================================ +13:25:04 Slot Id : <262> +13:25:04 Transaction Type : REQUEST +13:25:04 Received From : +13:25:04 ============================================================================ +13:25:04 FNo. Len. Field Value +13:25:04 ============================================================================ +13:25:04 [ 1] [ 4] [0200] +13:25:04 [ 2] [ 16] [6213548000144046] +13:25:04 [ 3] [ 6] [302000] +13:25:04 [ 4] [ 12] [000000000000] +13:25:04 [ 7] [ 10] [0320132255] +13:25:04 [ 11] [ 6] [946416] +13:25:04 [ 12] [ 6] [132255] +13:25:04 [ 13] [ 4] [0320] +13:25:04 [ 15] [ 4] [0320] +13:25:04 [ 18] [ 4] [6011] +13:25:04 [ 19] [ 3] [418] +13:25:04 [ 22] [ 3] [021] +13:25:04 [ 25] [ 2] [01] +13:25:04 [ 28] [ 9] [D00000000] +13:25:04 [ 32] [ 6] [668899] +13:25:04 [ 35] [ 32] [6213548000144046=131112014404767] +13:25:04 [ 37] [ 12] [507901215068] +13:25:04 [ 41] [ 8] [03020013] +13:25:04 [ 42] [ 15] [APT ] +13:25:04 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +13:25:04 [ 49] [ 3] [418] +13:25:04 [ 52] [ 16] [4832CCD732EA4238] +13:25:04 ============================================================================ +13:25:04 + + +waiting on router queue for slot.... +13:25:04 Sending to : +13:25:04 ============================================================================ +13:25:04 Sending to : +13:25:04 ============================================================================ +13:25:05 ============================================================================ +13:25:05 Slot Id : <262> +13:25:05 Transaction Type : REQUEST +13:25:05 Received From : +13:25:05 ============================================================================ +13:25:05 FNo. Len. Field Value +13:25:05 ============================================================================ +13:25:05 [ 1] [ 4] [0200] +13:25:05 [ 2] [ 16] [6213548000144046] +13:25:05 [ 3] [ 6] [302000] +13:25:05 [ 4] [ 12] [000000000000] +13:25:05 [ 7] [ 10] [0320132255] +13:25:05 [ 11] [ 6] [946416] +13:25:05 [ 12] [ 6] [132255] +13:25:05 [ 13] [ 4] [0320] +13:25:05 [ 15] [ 4] [0320] +13:25:05 [ 18] [ 4] [6011] +13:25:05 [ 19] [ 3] [418] +13:25:05 [ 22] [ 3] [021] +13:25:05 [ 25] [ 2] [01] +13:25:05 [ 28] [ 9] [D00000000] +13:25:05 [ 32] [ 6] [668899] +13:25:05 [ 35] [ 32] [6213548000144046=131112014404767] +13:25:05 [ 37] [ 12] [507901215068] +13:25:05 [ 41] [ 8] [03020013] +13:25:05 [ 42] [ 15] [APT ] +13:25:05 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +13:25:05 [ 49] [ 3] [418] +13:25:05 [ 52] [ 16] [4832CCD732EA4238] +13:25:05 ============================================================================ +13:25:05 + + +waiting on router queue for slot.... +13:25:05 Sending to : +13:25:05 ============================================================================ +13:25:05 ============================================================================ +13:25:05 Slot Id : <262> +13:25:05 Transaction Type : REQUEST +13:25:05 Received From : +13:25:05 ============================================================================ +13:25:05 FNo. Len. Field Value +13:25:05 ============================================================================ +13:25:05 [ 1] [ 4] [0200] +13:25:05 [ 2] [ 16] [6213548000144046] +13:25:05 [ 3] [ 6] [302000] +13:25:05 [ 4] [ 12] [000000000000] +13:25:05 [ 7] [ 10] [0320132255] +13:25:05 [ 11] [ 6] [946416] +13:25:05 [ 12] [ 6] [132255] +13:25:05 [ 13] [ 4] [0320] +13:25:05 [ 15] [ 4] [0320] +13:25:05 [ 18] [ 4] [6011] +13:25:05 [ 19] [ 3] [418] +13:25:05 [ 22] [ 3] [021] +13:25:05 [ 25] [ 2] [01] +13:25:05 [ 28] [ 9] [D00000000] +13:25:05 [ 32] [ 6] [668899] +13:25:05 [ 35] [ 32] [6213548000144046=131112014404767] +13:25:05 [ 37] [ 12] [507901215068] +13:25:05 [ 41] [ 8] [03020013] +13:25:05 [ 42] [ 15] [APT ] +13:25:05 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +13:25:05 [ 49] [ 3] [418] +13:25:05 [ 52] [ 16] [FD810156E8F0BEB7] +13:25:05 ============================================================================ +13:25:05 + + +waiting on router queue for slot.... +13:25:05 Sending to : <0> +13:25:05 ============================================================================ +13:25:05 ============================================================================ +13:25:05 Slot Id : <262> +13:25:05 Transaction Type : RESPONSE +13:25:05 Received From : +13:25:05 ============================================================================ +13:25:05 FNo. Len. Field Value +13:25:05 ============================================================================ +13:25:05 [ 1] [ 4] [0210] +13:25:05 [ 2] [ 16] [6213548000144046] +13:25:05 [ 3] [ 6] [302000] +13:25:05 [ 4] [ 12] [000000000000] +13:25:05 [ 7] [ 10] [0320132255] +13:25:05 [ 11] [ 6] [946416] +13:25:05 [ 12] [ 6] [132255] +13:25:05 [ 13] [ 4] [0320] +13:25:05 [ 15] [ 4] [0320] +13:25:05 [ 18] [ 4] [6011] +13:25:05 [ 19] [ 3] [418] +13:25:05 [ 32] [ 6] [668899] +13:25:05 [ 35] [ 32] [6213548000144046=131112014404767] +13:25:05 [ 37] [ 12] [507901215068] +13:25:05 [ 38] [ 6] [571719] +13:25:05 [ 39] [ 2] [00] +13:25:05 [ 41] [ 8] [03020013] +13:25:05 [ 49] [ 3] [418] +13:25:05 [ 54] [ 40] [2001418C0000094535712002418C000009453571] +13:25:05 ============================================================================ +13:25:05 Sending to : +13:25:05 ============================================================================ +13:25:05 + + +waiting on router queue for slot.... +13:25:06 ============================================================================ +13:25:06 Slot Id : <262> +13:25:06 Transaction Type : RESPONSE +13:25:06 Received From : +13:25:06 ============================================================================ +13:25:06 FNo. Len. Field Value +13:25:06 ============================================================================ +13:25:06 [ 1] [ 4] [0210] +13:25:06 [ 2] [ 16] [6213548000144046] +13:25:06 [ 3] [ 6] [302000] +13:25:06 [ 4] [ 12] [000000000000] +13:25:06 [ 7] [ 10] [0320132255] +13:25:06 [ 11] [ 6] [946416] +13:25:06 [ 12] [ 6] [132255] +13:25:06 [ 13] [ 4] [0320] +13:25:06 [ 15] [ 4] [0320] +13:25:06 [ 18] [ 4] [6011] +13:25:06 [ 19] [ 3] [418] +13:25:06 [ 32] [ 6] [668899] +13:25:06 [ 35] [ 32] [6213548000144046=131112014404767] +13:25:06 [ 37] [ 12] [507901215068] +13:25:06 [ 38] [ 6] [571719] +13:25:06 [ 39] [ 2] [00] +13:25:06 [ 41] [ 8] [03020013] +13:25:06 [ 49] [ 3] [418] +13:25:06 [ 54] [ 40] [2001418C0000094535712002418C000009453571] +13:25:06 ============================================================================ +13:25:06 Calculate Source COMM Id = 4 +13:25:06 ============================================================================ +13:25:06 + + +waiting on router queue for slot.... +13:25:11 ============================================================================ +13:25:11 Slot Id : <335> +13:25:11 Transaction Type : REQUEST +13:25:11 Received From : +13:25:11 ============================================================================ +13:25:11 FNo. Len. Field Value +13:25:11 ============================================================================ +13:25:11 [ 1] [ 4] [0800] +13:25:11 [ 7] [ 10] [0320062418] +13:25:11 [ 11] [ 6] [156545] +13:25:11 [ 70] [ 3] [301] +13:25:11 ============================================================================ +13:25:11 + + +waiting on router queue for slot.... +13:25:11 Sending to : +13:25:11 ============================================================================ +13:25:11 ============================================================================ +13:25:11 Slot Id : <335> +13:25:11 Transaction Type : RESPONSE +13:25:11 Received From : +13:25:11 ============================================================================ +13:25:11 FNo. Len. Field Value +13:25:11 ============================================================================ +13:25:11 [ 1] [ 4] [0810] +13:25:11 [ 7] [ 10] [0320062418] +13:25:11 [ 11] [ 6] [156545] +13:25:11 [ 39] [ 2] [00] +13:25:11 [ 70] [ 3] [301] +13:25:11 ============================================================================ +13:25:11 Calculate Source COMM Id = 2 +13:25:11 ============================================================================ +13:25:11 + + +waiting on router queue for slot.... +13:25:16 ============================================================================ +13:25:16 Slot Id : <334> +13:25:16 Transaction Type : REQUEST +13:25:16 Received From : +13:25:16 ============================================================================ +13:25:16 FNo. Len. Field Value +13:25:16 ============================================================================ +13:25:16 [ 1] [ 4] [0200] +13:25:16 [ 2] [ 16] [6688990040045377] +13:25:16 [ 3] [ 6] [011000] +13:25:16 [ 4] [ 12] [000005000000] +13:25:16 [ 7] [ 10] [0320132511] +13:25:16 [ 11] [ 6] [756742] +13:25:16 [ 12] [ 6] [132511] +13:25:16 [ 13] [ 4] [0320] +13:25:16 [ 15] [ 4] [0320] +13:25:16 [ 18] [ 4] [6011] +13:25:16 [ 22] [ 3] [900] +13:25:16 [ 25] [ 2] [02] +13:25:16 [ 28] [ 9] [D00002000] +13:25:16 [ 32] [ 6] [621354] +13:25:16 [ 35] [ 37] [6688990040045377=97121261225891100000] +13:25:16 [ 37] [ 12] [507902634787] +13:25:16 [ 41] [ 8] [14000200] +13:25:16 [ 42] [ 15] [NATIVE ] +13:25:16 [ 43] [ 40] [Vangvieng 02 Vangvieng LAO] +13:25:16 [ 49] [ 3] [418] +13:25:16 [ 52] [ 16] [564514B3BC6DAD7F] +13:25:16 ============================================================================ +13:25:16 + + +waiting on router queue for slot.... +13:25:16 Sending to : +13:25:16 ============================================================================ +13:25:16 Sending to : +13:25:16 ============================================================================ +13:25:16 ============================================================================ +13:25:16 Slot Id : <334> +13:25:16 Transaction Type : REQUEST +13:25:16 Received From : +13:25:16 ============================================================================ +13:25:16 FNo. Len. Field Value +13:25:16 ============================================================================ +13:25:16 [ 1] [ 4] [0200] +13:25:16 [ 2] [ 16] [6688990040045377] +13:25:16 [ 3] [ 6] [011000] +13:25:16 [ 4] [ 12] [000005000000] +13:25:16 [ 7] [ 10] [0320132511] +13:25:16 [ 11] [ 6] [756742] +13:25:16 [ 12] [ 6] [132511] +13:25:16 [ 13] [ 4] [0320] +13:25:16 [ 15] [ 4] [0320] +13:25:16 [ 18] [ 4] [6011] +13:25:16 [ 22] [ 3] [900] +13:25:16 [ 25] [ 2] [02] +13:25:16 [ 28] [ 9] [D00002000] +13:25:16 [ 32] [ 6] [621354] +13:25:16 [ 35] [ 37] [6688990040045377=97121261225891100000] +13:25:16 [ 37] [ 12] [507902634787] +13:25:16 [ 41] [ 8] [14000200] +13:25:16 [ 42] [ 15] [NATIVE ] +13:25:16 [ 43] [ 40] [Vangvieng 02 Vangvieng LAO] +13:25:16 [ 49] [ 3] [418] +13:25:16 [ 52] [ 16] [564514B3BC6DAD7F] +13:25:16 ============================================================================ +13:25:16 + + +waiting on router queue for slot.... +13:25:16 Sending to : +13:25:16 ============================================================================ +13:25:16 ============================================================================ +13:25:16 Slot Id : <334> +13:25:16 Transaction Type : REQUEST +13:25:16 Received From : +13:25:16 ============================================================================ +13:25:16 FNo. Len. Field Value +13:25:16 ============================================================================ +13:25:16 [ 1] [ 4] [0200] +13:25:16 [ 2] [ 16] [6688990040045377] +13:25:16 [ 3] [ 6] [011000] +13:25:16 [ 4] [ 12] [000005000000] +13:25:16 [ 7] [ 10] [0320132511] +13:25:16 [ 11] [ 6] [756742] +13:25:16 [ 12] [ 6] [132511] +13:25:16 [ 13] [ 4] [0320] +13:25:16 [ 15] [ 4] [0320] +13:25:16 [ 18] [ 4] [6011] +13:25:16 [ 22] [ 3] [900] +13:25:16 [ 25] [ 2] [02] +13:25:16 [ 28] [ 9] [D00002000] +13:25:16 [ 32] [ 6] [621354] +13:25:16 [ 35] [ 37] [6688990040045377=97121261225891100000] +13:25:16 [ 37] [ 12] [507902634787] +13:25:16 [ 41] [ 8] [14000200] +13:25:16 [ 42] [ 15] [NATIVE ] +13:25:16 [ 43] [ 40] [Vangvieng 02 Vangvieng LAO] +13:25:16 [ 49] [ 3] [418] +13:25:16 [ 52] [ 16] [3B17AEBCA8236699] +13:25:16 ============================================================================ +13:25:16 + + +waiting on router queue for slot.... +13:25:16 Sending to : <4> +13:25:16 ============================================================================ +13:25:17 ============================================================================ +13:25:17 Slot Id : <334> +13:25:17 Transaction Type : RESPONSE +13:25:17 Received From : +13:25:17 ============================================================================ +13:25:17 FNo. Len. Field Value +13:25:17 ============================================================================ +13:25:17 [ 1] [ 4] [0210] +13:25:17 [ 2] [ 16] [6688990040045377] +13:25:17 [ 3] [ 6] [011000] +13:25:17 [ 4] [ 12] [000005000000] +13:25:17 [ 11] [ 6] [756742] +13:25:17 [ 12] [ 6] [132511] +13:25:17 [ 15] [ 4] [0320] +13:25:17 [ 18] [ 4] [6011] +13:25:17 [ 32] [ 6] [621354] +13:25:17 [ 35] [ 37] [6688990040045377=97121261225891100000] +13:25:17 [ 37] [ 12] [507902634787] +13:25:17 [ 38] [ 6] [994959] +13:25:17 [ 39] [ 2] [00] +13:25:17 [ 41] [ 8] [14000200] +13:25:17 [ 49] [ 3] [418] +13:25:17 [ 54] [ 20] [1002418C000070850108] +13:25:17 ============================================================================ +13:25:17 Sending to : +13:25:17 ============================================================================ +13:25:17 + + +waiting on router queue for slot.... +13:25:19 ============================================================================ +13:25:19 Slot Id : <334> +13:25:19 Transaction Type : RESPONSE +13:25:19 Received From : +13:25:19 ============================================================================ +13:25:19 FNo. Len. Field Value +13:25:19 ============================================================================ +13:25:19 [ 1] [ 4] [0210] +13:25:19 [ 2] [ 16] [6688990040045377] +13:25:19 [ 3] [ 6] [011000] +13:25:19 [ 4] [ 12] [000005000000] +13:25:19 [ 11] [ 6] [756742] +13:25:19 [ 12] [ 6] [132511] +13:25:19 [ 15] [ 4] [0320] +13:25:19 [ 18] [ 4] [6011] +13:25:19 [ 32] [ 6] [621354] +13:25:19 [ 35] [ 37] [6688990040045377=97121261225891100000] +13:25:19 [ 37] [ 12] [507902634787] +13:25:19 [ 38] [ 6] [994959] +13:25:19 [ 39] [ 2] [00] +13:25:19 [ 41] [ 8] [14000200] +13:25:19 [ 49] [ 3] [418] +13:25:19 [ 54] [ 20] [1002418C000070850108] +13:25:19 ============================================================================ +13:25:19 Calculate Source COMM Id = 0 +13:25:19 ============================================================================ +13:25:19 + + +waiting on router queue for slot.... +13:25:21 ============================================================================ +13:25:21 Slot Id : <321> +13:25:21 Transaction Type : REQUEST +13:25:21 Received From : +13:25:21 ============================================================================ +13:25:21 FNo. Len. Field Value +13:25:21 ============================================================================ +13:25:21 [ 1] [ 4] [0800] +13:25:21 [ 7] [ 10] [0320062429] +13:25:21 [ 11] [ 6] [156546] +13:25:21 [ 70] [ 3] [301] +13:25:21 ============================================================================ +13:25:21 + + +waiting on router queue for slot.... +13:25:21 Sending to : +13:25:21 ============================================================================ +13:25:21 ============================================================================ +13:25:21 Slot Id : <321> +13:25:21 Transaction Type : RESPONSE +13:25:21 Received From : +13:25:21 ============================================================================ +13:25:21 FNo. Len. Field Value +13:25:21 ============================================================================ +13:25:21 [ 1] [ 4] [0810] +13:25:21 [ 7] [ 10] [0320062429] +13:25:21 [ 11] [ 6] [156546] +13:25:21 [ 39] [ 2] [00] +13:25:21 [ 70] [ 3] [301] +13:25:21 ============================================================================ +13:25:21 Calculate Source COMM Id = 2 +13:25:21 ============================================================================ +13:25:21 + + +waiting on router queue for slot.... +13:25:32 ============================================================================ +13:25:32 Slot Id : <336> +13:25:32 Transaction Type : REQUEST +13:25:32 Received From : +13:25:32 ============================================================================ +13:25:32 FNo. Len. Field Value +13:25:32 ============================================================================ +13:25:32 [ 1] [ 4] [0800] +13:25:32 [ 7] [ 10] [0320062440] +13:25:32 [ 11] [ 6] [156547] +13:25:32 [ 70] [ 3] [301] +13:25:32 ============================================================================ +13:25:32 + + +waiting on router queue for slot.... +13:25:32 Sending to : +13:25:32 ============================================================================ +13:25:32 ============================================================================ +13:25:32 Slot Id : <336> +13:25:32 Transaction Type : RESPONSE +13:25:32 Received From : +13:25:32 ============================================================================ +13:25:32 FNo. Len. Field Value +13:25:32 ============================================================================ +13:25:32 [ 1] [ 4] [0810] +13:25:32 [ 7] [ 10] [0320062440] +13:25:32 [ 11] [ 6] [156547] +13:25:32 [ 39] [ 2] [00] +13:25:32 [ 70] [ 3] [301] +13:25:32 ============================================================================ +13:25:32 Calculate Source COMM Id = 2 +13:25:32 ============================================================================ +13:25:32 + + +waiting on router queue for slot.... +13:25:33 ============================================================================ +13:25:33 Slot Id : <345> +13:25:33 Transaction Type : REQUEST +13:25:33 Received From : +13:25:33 ============================================================================ +13:25:33 FNo. Len. Field Value +13:25:33 ============================================================================ +13:25:33 [ 1] [ 4] [0200] +13:25:33 [ 2] [ 16] [1999990000002942] +13:25:33 [ 3] [ 6] [010000] +13:25:33 [ 4] [ 12] [000100000000] +13:25:33 [ 7] [ 10] [0320132529] +13:25:33 [ 11] [ 6] [756811] +13:25:33 [ 12] [ 6] [132529] +13:25:33 [ 13] [ 4] [0320] +13:25:33 [ 15] [ 4] [0320] +13:25:33 [ 18] [ 4] [6011] +13:25:33 [ 22] [ 3] [900] +13:25:33 [ 25] [ 2] [02] +13:25:33 [ 28] [ 9] [D00002000] +13:25:33 [ 32] [ 6] [621354] +13:25:33 [ 35] [ 32] [1999990000002942=000010100000390] +13:25:33 [ 37] [ 12] [507904025614] +13:25:33 [ 41] [ 8] [09001600] +13:25:33 [ 42] [ 15] [NATIVE ] +13:25:33 [ 43] [ 40] [Xaysetha Unit 01 Xaysetha LAO] +13:25:33 [ 49] [ 3] [418] +13:25:33 [ 52] [ 16] [01C893FFA7E0476B] +13:25:33 ============================================================================ +13:25:33 + + +waiting on router queue for slot.... +13:25:33 Sending to : +13:25:33 ============================================================================ +13:25:33 Sending to : +13:25:33 ============================================================================ +13:25:34 ============================================================================ +13:25:34 Slot Id : <345> +13:25:34 Transaction Type : REQUEST +13:25:34 Received From : +13:25:34 ============================================================================ +13:25:34 FNo. Len. Field Value +13:25:34 ============================================================================ +13:25:34 [ 1] [ 4] [0200] +13:25:34 [ 2] [ 16] [1999990000002942] +13:25:34 [ 3] [ 6] [010000] +13:25:34 [ 4] [ 12] [000100000000] +13:25:34 [ 7] [ 10] [0320132529] +13:25:34 [ 11] [ 6] [756811] +13:25:34 [ 12] [ 6] [132529] +13:25:34 [ 13] [ 4] [0320] +13:25:34 [ 15] [ 4] [0320] +13:25:34 [ 18] [ 4] [6011] +13:25:34 [ 22] [ 3] [900] +13:25:34 [ 25] [ 2] [02] +13:25:34 [ 28] [ 9] [D00002000] +13:25:34 [ 32] [ 6] [621354] +13:25:34 [ 35] [ 32] [1999990000002942=000010100000390] +13:25:34 [ 37] [ 12] [507904025614] +13:25:34 [ 41] [ 8] [09001600] +13:25:34 [ 42] [ 15] [NATIVE ] +13:25:34 [ 43] [ 40] [Xaysetha Unit 01 Xaysetha LAO] +13:25:34 [ 49] [ 3] [418] +13:25:34 [ 52] [ 16] [01C893FFA7E0476B] +13:25:34 ============================================================================ +13:25:34 + + +waiting on router queue for slot.... +13:25:34 Sending to : +13:25:34 ============================================================================ +13:25:34 ============================================================================ +13:25:34 Slot Id : <345> +13:25:34 Transaction Type : REQUEST +13:25:34 Received From : +13:25:34 ============================================================================ +13:25:34 FNo. Len. Field Value +13:25:34 ============================================================================ +13:25:34 [ 1] [ 4] [0200] +13:25:34 [ 2] [ 16] [1999990000002942] +13:25:34 [ 3] [ 6] [010000] +13:25:34 [ 4] [ 12] [000100000000] +13:25:34 [ 7] [ 10] [0320132529] +13:25:34 [ 11] [ 6] [756811] +13:25:34 [ 12] [ 6] [132529] +13:25:34 [ 13] [ 4] [0320] +13:25:34 [ 15] [ 4] [0320] +13:25:34 [ 18] [ 4] [6011] +13:25:34 [ 22] [ 3] [900] +13:25:34 [ 25] [ 2] [02] +13:25:34 [ 28] [ 9] [D00002000] +13:25:34 [ 32] [ 6] [621354] +13:25:34 [ 35] [ 32] [1999990000002942=000010100000390] +13:25:34 [ 37] [ 12] [507904025614] +13:25:34 [ 41] [ 8] [09001600] +13:25:34 [ 42] [ 15] [NATIVE ] +13:25:34 [ 43] [ 40] [Xaysetha Unit 01 Xaysetha LAO] +13:25:34 [ 49] [ 3] [418] +13:25:34 [ 52] [ 16] [52D92692F85C561F] +13:25:34 ============================================================================ +13:25:34 + + +waiting on router queue for slot.... +13:25:34 ONUS/OFFUS CARD status [0] +13:25:34 ============================================================================ +13:25:36 ============================================================================ +13:25:36 Slot Id : <320> +13:25:36 Transaction Type : REQUEST +13:25:36 Received From : +13:25:36 ============================================================================ +13:25:36 FNo. Len. Field Value +13:25:36 ============================================================================ +13:25:36 [ 1] [ 4] [0800] +13:25:36 [ 2] [ 5] [02531] +13:25:36 [ 3] [ 6] [579138] +13:25:36 [ 7] [ 10] [0320062536] +13:25:36 [ 11] [ 6] [807191] +13:25:36 [ 15] [ 10] [0320062536] +13:25:36 [ 37] [ 11] [57913807191] +13:25:36 [ 70] [ 3] [001] +13:25:36 ============================================================================ +13:25:36 + + +waiting on router queue for slot.... +13:25:36 ============================================================================ +13:25:36 Slot Id : <320> +13:25:36 Transaction Type : RESPONSE +13:25:36 Received From : +13:25:36 ============================================================================ +13:25:36 FNo. Len. Field Value +13:25:36 ============================================================================ +13:25:36 [ 1] [ 4] [0810] +13:25:36 [ 7] [ 10] [0320062536] +13:25:36 [ 11] [ 6] [807191] +13:25:36 [ 15] [ 4] [0320] +13:25:36 [ 37] [ 12] [57913807191] +13:25:36 [ 39] [ 2] [00] +13:25:36 [ 70] [ 3] [001] +13:25:36 ============================================================================ +13:25:36 Sending to : +13:25:36 ============================================================================ +13:25:36 + + +waiting on router queue for slot.... +13:25:44 ============================================================================ +13:25:44 Slot Id : <342> +13:25:44 Transaction Type : REQUEST +13:25:44 Received From : +13:25:44 ============================================================================ +13:25:44 FNo. Len. Field Value +13:25:44 ============================================================================ +13:25:44 [ 1] [ 4] [0800] +13:25:44 [ 7] [ 10] [0320062451] +13:25:44 [ 11] [ 6] [156548] +13:25:44 [ 70] [ 3] [301] +13:25:44 ============================================================================ +13:25:44 + + +waiting on router queue for slot.... +13:25:44 Sending to : +13:25:44 ============================================================================ +13:25:44 ============================================================================ +13:25:44 Slot Id : <342> +13:25:44 Transaction Type : RESPONSE +13:25:44 Received From : +13:25:44 ============================================================================ +13:25:44 FNo. Len. Field Value +13:25:44 ============================================================================ +13:25:44 [ 1] [ 4] [0810] +13:25:44 [ 7] [ 10] [0320062451] +13:25:44 [ 11] [ 6] [156548] +13:25:44 [ 39] [ 2] [00] +13:25:44 [ 70] [ 3] [301] +13:25:44 ============================================================================ +13:25:44 Calculate Source COMM Id = 2 +13:25:44 ============================================================================ +13:25:44 + + +waiting on router queue for slot.... +13:25:54 ============================================================================ +13:25:54 Slot Id : <341> +13:25:54 Transaction Type : REQUEST +13:25:54 Received From : +13:25:54 ============================================================================ +13:25:54 FNo. Len. Field Value +13:25:54 ============================================================================ +13:25:54 [ 1] [ 4] [0200] +13:25:54 [ 2] [ 16] [1808930300021185] +13:25:54 [ 3] [ 6] [010000] +13:25:54 [ 4] [ 12] [000010000000] +13:25:54 [ 7] [ 10] [0320132549] +13:25:54 [ 11] [ 6] [756879] +13:25:54 [ 12] [ 6] [132549] +13:25:54 [ 13] [ 4] [0320] +13:25:54 [ 15] [ 4] [0320] +13:25:54 [ 18] [ 4] [6011] +13:25:54 [ 22] [ 3] [900] +13:25:54 [ 25] [ 2] [02] +13:25:54 [ 28] [ 9] [D00002000] +13:25:54 [ 32] [ 6] [621354] +13:25:54 [ 35] [ 27] [1808930300021185=1803500967] +13:25:54 [ 37] [ 12] [507904898543] +13:25:54 [ 41] [ 8] [01012200] +13:25:54 [ 42] [ 15] [NATIVE ] +13:25:54 [ 43] [ 40] [Technical School Phonhong LAO] +13:25:54 [ 49] [ 3] [418] +13:25:54 [ 52] [ 16] [40D3D4DA578981CF] +13:25:54 ============================================================================ +13:25:54 + + +waiting on router queue for slot.... +13:25:54 Sending to : +13:25:54 ============================================================================ +13:25:54 Sending to : +13:25:54 ============================================================================ +13:25:54 ============================================================================ +13:25:54 Slot Id : <341> +13:25:54 Transaction Type : REQUEST +13:25:54 Received From : +13:25:54 ============================================================================ +13:25:54 FNo. Len. Field Value +13:25:54 ============================================================================ +13:25:54 [ 1] [ 4] [0200] +13:25:54 [ 2] [ 16] [1808930300021185] +13:25:54 [ 3] [ 6] [010000] +13:25:54 [ 4] [ 12] [000010000000] +13:25:54 [ 7] [ 10] [0320132549] +13:25:54 [ 11] [ 6] [756879] +13:25:54 [ 12] [ 6] [132549] +13:25:54 [ 13] [ 4] [0320] +13:25:54 [ 15] [ 4] [0320] +13:25:54 [ 18] [ 4] [6011] +13:25:54 [ 22] [ 3] [900] +13:25:54 [ 25] [ 2] [02] +13:25:54 [ 28] [ 9] [D00002000] +13:25:54 [ 32] [ 6] [621354] +13:25:54 [ 35] [ 27] [1808930300021185=1803500967] +13:25:54 [ 37] [ 12] [507904898543] +13:25:54 [ 41] [ 8] [01012200] +13:25:54 [ 42] [ 15] [NATIVE ] +13:25:54 [ 43] [ 40] [Technical School Phonhong LAO] +13:25:54 [ 49] [ 3] [418] +13:25:54 [ 52] [ 16] [40D3D4DA578981CF] +13:25:54 ============================================================================ +13:25:54 + + +waiting on router queue for slot.... +13:25:54 Sending to : +13:25:54 ============================================================================ +13:25:54 ============================================================================ +13:25:54 Slot Id : <341> +13:25:54 Transaction Type : REQUEST +13:25:54 Received From : +13:25:54 ============================================================================ +13:25:54 FNo. Len. Field Value +13:25:54 ============================================================================ +13:25:54 [ 1] [ 4] [0200] +13:25:54 [ 2] [ 16] [1808930300021185] +13:25:54 [ 3] [ 6] [010000] +13:25:54 [ 4] [ 12] [000010000000] +13:25:54 [ 7] [ 10] [0320132549] +13:25:54 [ 11] [ 6] [756879] +13:25:54 [ 12] [ 6] [132549] +13:25:54 [ 13] [ 4] [0320] +13:25:54 [ 15] [ 4] [0320] +13:25:54 [ 18] [ 4] [6011] +13:25:54 [ 22] [ 3] [900] +13:25:54 [ 25] [ 2] [02] +13:25:54 [ 28] [ 9] [D00002000] +13:25:54 [ 32] [ 6] [621354] +13:25:54 [ 35] [ 27] [1808930300021185=1803500967] +13:25:54 [ 37] [ 12] [507904898543] +13:25:54 [ 41] [ 8] [01012200] +13:25:54 [ 42] [ 15] [NATIVE ] +13:25:54 [ 43] [ 40] [Technical School Phonhong LAO] +13:25:54 [ 49] [ 3] [418] +13:25:54 [ 52] [ 16] [FCF1F5A44B5EAD04] +13:25:54 ============================================================================ +13:25:54 + + +waiting on router queue for slot.... +13:25:54 Sending to : <2> +13:25:54 ============================================================================ +13:26:04 ============================================================================ +13:26:04 Slot Id : <344> +13:26:04 Transaction Type : REQUEST +13:26:04 Received From : +13:26:04 ============================================================================ +13:26:04 FNo. Len. Field Value +13:26:04 ============================================================================ +13:26:04 [ 1] [ 4] [0200] +13:26:04 [ 2] [ 16] [1999990000002942] +13:26:04 [ 3] [ 6] [010000] +13:26:04 [ 4] [ 12] [000100000000] +13:26:04 [ 7] [ 10] [0320132559] +13:26:04 [ 11] [ 6] [756927] +13:26:04 [ 12] [ 6] [132559] +13:26:04 [ 13] [ 4] [0320] +13:26:04 [ 15] [ 4] [0320] +13:26:04 [ 18] [ 4] [6011] +13:26:04 [ 22] [ 3] [900] +13:26:04 [ 25] [ 2] [02] +13:26:04 [ 28] [ 9] [D00002000] +13:26:04 [ 32] [ 6] [621354] +13:26:04 [ 35] [ 32] [1999990000002942=000010100000390] +13:26:04 [ 37] [ 12] [507904031758] +13:26:04 [ 41] [ 8] [09001700] +13:26:04 [ 42] [ 15] [NATIVE ] +13:26:04 [ 43] [ 40] [Xaysetha Unit 02 Xaysetha LAO] +13:26:04 [ 49] [ 3] [418] +13:26:04 [ 52] [ 16] [01C893FFA7E0476B] +13:26:04 ============================================================================ +13:26:04 + + +waiting on router queue for slot.... +13:26:04 Sending to : +13:26:04 ============================================================================ +13:26:04 Sending to : +13:26:04 ============================================================================ +13:26:04 ============================================================================ +13:26:04 Slot Id : <344> +13:26:04 Transaction Type : REQUEST +13:26:04 Received From : +13:26:04 ============================================================================ +13:26:04 FNo. Len. Field Value +13:26:04 ============================================================================ +13:26:04 [ 1] [ 4] [0200] +13:26:04 [ 2] [ 16] [1999990000002942] +13:26:04 [ 3] [ 6] [010000] +13:26:04 [ 4] [ 12] [000100000000] +13:26:04 [ 7] [ 10] [0320132559] +13:26:04 [ 11] [ 6] [756927] +13:26:04 [ 12] [ 6] [132559] +13:26:04 [ 13] [ 4] [0320] +13:26:04 [ 15] [ 4] [0320] +13:26:04 [ 18] [ 4] [6011] +13:26:04 [ 22] [ 3] [900] +13:26:04 [ 25] [ 2] [02] +13:26:04 [ 28] [ 9] [D00002000] +13:26:04 [ 32] [ 6] [621354] +13:26:04 [ 35] [ 32] [1999990000002942=000010100000390] +13:26:04 [ 37] [ 12] [507904031758] +13:26:04 [ 41] [ 8] [09001700] +13:26:04 [ 42] [ 15] [NATIVE ] +13:26:04 [ 43] [ 40] [Xaysetha Unit 02 Xaysetha LAO] +13:26:04 [ 49] [ 3] [418] +13:26:04 [ 52] [ 16] [01C893FFA7E0476B] +13:26:04 ============================================================================ +13:26:04 + + +waiting on router queue for slot.... +13:26:04 Sending to : +13:26:04 ============================================================================ +13:26:04 ============================================================================ +13:26:04 Slot Id : <344> +13:26:04 Transaction Type : REQUEST +13:26:04 Received From : +13:26:04 ============================================================================ +13:26:04 FNo. Len. Field Value +13:26:04 ============================================================================ +13:26:04 [ 1] [ 4] [0200] +13:26:04 [ 2] [ 16] [1999990000002942] +13:26:04 [ 3] [ 6] [010000] +13:26:04 [ 4] [ 12] [000100000000] +13:26:04 [ 7] [ 10] [0320132559] +13:26:04 [ 11] [ 6] [756927] +13:26:04 [ 12] [ 6] [132559] +13:26:04 [ 13] [ 4] [0320] +13:26:04 [ 15] [ 4] [0320] +13:26:04 [ 18] [ 4] [6011] +13:26:04 [ 22] [ 3] [900] +13:26:04 [ 25] [ 2] [02] +13:26:04 [ 28] [ 9] [D00002000] +13:26:04 [ 32] [ 6] [621354] +13:26:04 [ 35] [ 32] [1999990000002942=000010100000390] +13:26:04 [ 37] [ 12] [507904031758] +13:26:04 [ 41] [ 8] [09001700] +13:26:04 [ 42] [ 15] [NATIVE ] +13:26:04 [ 43] [ 40] [Xaysetha Unit 02 Xaysetha LAO] +13:26:04 [ 49] [ 3] [418] +13:26:04 [ 52] [ 16] [52D92692F85C561F] +13:26:04 ============================================================================ +13:26:04 + + +waiting on router queue for slot.... +13:26:04 ONUS/OFFUS CARD status [0] +13:26:04 ============================================================================ +13:26:06 ============================================================================ +13:26:06 Slot Id : <268> +13:26:06 Transaction Type : REQUEST +13:26:06 Received From : +13:26:06 ============================================================================ +13:26:06 FNo. Len. Field Value +13:26:06 ============================================================================ +13:26:06 [ 1] [ 4] [0200] +13:26:06 [ 2] [ 16] [6688990030009680] +13:26:06 [ 3] [ 6] [010000] +13:26:06 [ 4] [ 12] [000005000000] +13:26:06 [ 7] [ 10] [0320132602] +13:26:06 [ 11] [ 6] [756935] +13:26:06 [ 12] [ 6] [132602] +13:26:06 [ 13] [ 4] [0320] +13:26:06 [ 15] [ 4] [0320] +13:26:06 [ 18] [ 4] [6011] +13:26:06 [ 22] [ 3] [900] +13:26:06 [ 25] [ 2] [02] +13:26:06 [ 28] [ 9] [D00002000] +13:26:06 [ 32] [ 6] [621354] +13:26:06 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:26:06 [ 37] [ 12] [507904724312] +13:26:06 [ 41] [ 8] [18001100] +13:26:06 [ 42] [ 15] [NATIVE ] +13:26:06 [ 43] [ 40] [Ban Naxong May LAO] +13:26:06 [ 49] [ 3] [418] +13:26:06 [ 52] [ 16] [E329560C28E4EB85] +13:26:06 ============================================================================ +13:26:06 + + +waiting on router queue for slot.... +13:26:06 Sending to : +13:26:06 ============================================================================ +13:26:06 Sending to : +13:26:06 ============================================================================ +13:26:07 ============================================================================ +13:26:07 Slot Id : <268> +13:26:07 Transaction Type : REQUEST +13:26:07 Received From : +13:26:07 ============================================================================ +13:26:07 FNo. Len. Field Value +13:26:07 ============================================================================ +13:26:07 [ 1] [ 4] [0200] +13:26:07 [ 2] [ 16] [6688990030009680] +13:26:07 [ 3] [ 6] [010000] +13:26:07 [ 4] [ 12] [000005000000] +13:26:07 [ 7] [ 10] [0320132602] +13:26:07 [ 11] [ 6] [756935] +13:26:07 [ 12] [ 6] [132602] +13:26:07 [ 13] [ 4] [0320] +13:26:07 [ 15] [ 4] [0320] +13:26:07 [ 18] [ 4] [6011] +13:26:07 [ 22] [ 3] [900] +13:26:07 [ 25] [ 2] [02] +13:26:07 [ 28] [ 9] [D00002000] +13:26:07 [ 32] [ 6] [621354] +13:26:07 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:26:07 [ 37] [ 12] [507904724312] +13:26:07 [ 41] [ 8] [18001100] +13:26:07 [ 42] [ 15] [NATIVE ] +13:26:07 [ 43] [ 40] [Ban Naxong May LAO] +13:26:07 [ 49] [ 3] [418] +13:26:07 [ 52] [ 16] [E329560C28E4EB85] +13:26:07 ============================================================================ +13:26:07 + + +waiting on router queue for slot.... +13:26:07 Sending to : +13:26:07 ============================================================================ +13:26:07 ============================================================================ +13:26:07 Slot Id : <268> +13:26:07 Transaction Type : REQUEST +13:26:07 Received From : +13:26:07 ============================================================================ +13:26:07 FNo. Len. Field Value +13:26:07 ============================================================================ +13:26:07 [ 1] [ 4] [0200] +13:26:07 [ 2] [ 16] [6688990030009680] +13:26:07 [ 3] [ 6] [010000] +13:26:07 [ 4] [ 12] [000005000000] +13:26:07 [ 7] [ 10] [0320132602] +13:26:07 [ 11] [ 6] [756935] +13:26:07 [ 12] [ 6] [132602] +13:26:07 [ 13] [ 4] [0320] +13:26:07 [ 15] [ 4] [0320] +13:26:07 [ 18] [ 4] [6011] +13:26:07 [ 22] [ 3] [900] +13:26:07 [ 25] [ 2] [02] +13:26:07 [ 28] [ 9] [D00002000] +13:26:07 [ 32] [ 6] [621354] +13:26:07 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:26:07 [ 37] [ 12] [507904724312] +13:26:07 [ 41] [ 8] [18001100] +13:26:07 [ 42] [ 15] [NATIVE ] +13:26:07 [ 43] [ 40] [Ban Naxong May LAO] +13:26:07 [ 49] [ 3] [418] +13:26:07 [ 52] [ 16] [08D59348231280E0] +13:26:07 ============================================================================ +13:26:07 + + +waiting on router queue for slot.... +13:26:07 Sending to : <4> +13:26:07 ============================================================================ +13:26:08 ============================================================================ +13:26:08 Slot Id : <323> +13:26:08 Transaction Type : REQUEST +13:26:08 Received From : +13:26:08 ============================================================================ +13:26:08 FNo. Len. Field Value +13:26:08 ============================================================================ +13:26:08 [ 1] [ 4] [0800] +13:26:08 [ 7] [ 10] [0320062515] +13:26:08 [ 11] [ 6] [156549] +13:26:08 [ 70] [ 3] [301] +13:26:08 ============================================================================ +13:26:08 + + +waiting on router queue for slot.... +13:26:08 Sending to : +13:26:08 ============================================================================ +13:26:08 ============================================================================ +13:26:08 Slot Id : <323> +13:26:08 Transaction Type : RESPONSE +13:26:08 Received From : +13:26:08 ============================================================================ +13:26:08 FNo. Len. Field Value +13:26:08 ============================================================================ +13:26:08 [ 1] [ 4] [0810] +13:26:08 [ 7] [ 10] [0320062515] +13:26:08 [ 11] [ 6] [156549] +13:26:08 [ 39] [ 2] [00] +13:26:08 [ 70] [ 3] [301] +13:26:08 ============================================================================ +13:26:08 Calculate Source COMM Id = 2 +13:26:08 ============================================================================ +13:26:08 + + +waiting on router queue for slot.... +13:26:09 ============================================================================ +13:26:09 Slot Id : <268> +13:26:09 Transaction Type : RESPONSE +13:26:09 Received From : +13:26:09 ============================================================================ +13:26:09 FNo. Len. Field Value +13:26:09 ============================================================================ +13:26:09 [ 1] [ 4] [0210] +13:26:09 [ 2] [ 16] [6688990030009680] +13:26:09 [ 3] [ 6] [010000] +13:26:09 [ 4] [ 12] [000005000000] +13:26:09 [ 11] [ 6] [756935] +13:26:09 [ 12] [ 6] [132602] +13:26:09 [ 15] [ 4] [0320] +13:26:09 [ 18] [ 4] [6011] +13:26:09 [ 32] [ 6] [621354] +13:26:09 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:26:09 [ 37] [ 12] [507904724312] +13:26:09 [ 38] [ 6] [645294] +13:26:09 [ 39] [ 2] [00] +13:26:09 [ 41] [ 8] [18001100] +13:26:09 [ 49] [ 3] [418] +13:26:09 [ 54] [ 20] [0002418C000024075559] +13:26:09 ============================================================================ +13:26:09 Sending to : +13:26:09 ============================================================================ +13:26:09 + + +waiting on router queue for slot.... +13:26:11 ============================================================================ +13:26:11 Slot Id : <268> +13:26:11 Transaction Type : RESPONSE +13:26:11 Received From : +13:26:11 ============================================================================ +13:26:11 FNo. Len. Field Value +13:26:11 ============================================================================ +13:26:11 [ 1] [ 4] [0210] +13:26:11 [ 2] [ 16] [6688990030009680] +13:26:11 [ 3] [ 6] [010000] +13:26:11 [ 4] [ 12] [000005000000] +13:26:11 [ 11] [ 6] [756935] +13:26:11 [ 12] [ 6] [132602] +13:26:11 [ 15] [ 4] [0320] +13:26:11 [ 18] [ 4] [6011] +13:26:11 [ 32] [ 6] [621354] +13:26:11 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:26:11 [ 37] [ 12] [507904724312] +13:26:11 [ 38] [ 6] [645294] +13:26:11 [ 39] [ 2] [00] +13:26:11 [ 41] [ 8] [18001100] +13:26:11 [ 49] [ 3] [418] +13:26:11 [ 54] [ 20] [0002418C000024075559] +13:26:11 ============================================================================ +13:26:11 Calculate Source COMM Id = 0 +13:26:11 ============================================================================ +13:26:11 + + +waiting on router queue for slot.... +13:26:21 ============================================================================ +13:26:21 Slot Id : <339> +13:26:21 Transaction Type : REQUEST +13:26:21 Received From : +13:26:21 ============================================================================ +13:26:21 FNo. Len. Field Value +13:26:21 ============================================================================ +13:26:21 [ 1] [ 4] [0800] +13:26:21 [ 7] [ 10] [0320062412] +13:26:21 [ 11] [ 6] [076982] +13:26:21 [ 37] [ 12] [57913076982] +13:26:21 [ 70] [ 3] [301] +13:26:21 ============================================================================ +13:26:21 + + +waiting on router queue for slot.... +13:26:21 Sending to : +13:26:21 ============================================================================ +13:26:21 ============================================================================ +13:26:21 Slot Id : <339> +13:26:21 Transaction Type : RESPONSE +13:26:21 Received From : +13:26:21 ============================================================================ +13:26:21 FNo. Len. Field Value +13:26:21 ============================================================================ +13:26:21 [ 1] [ 4] [0810] +13:26:21 [ 7] [ 10] [0320062412] +13:26:21 [ 11] [ 6] [076982] +13:26:21 [ 37] [ 12] [579130769820] +13:26:21 [ 39] [ 2] [00] +13:26:21 [ 70] [ 3] [810] +13:26:21 ============================================================================ +13:26:21 Calculate Source COMM Id = 4 +13:26:21 ============================================================================ +13:26:21 + + +waiting on router queue for slot.... +13:26:22 ============================================================================ +13:26:22 Slot Id : <348> +13:26:22 Transaction Type : REQUEST +13:26:22 Received From : +13:26:22 ============================================================================ +13:26:22 FNo. Len. Field Value +13:26:22 ============================================================================ +13:26:22 [ 1] [ 4] [0800] +13:26:22 [ 7] [ 10] [0320062530] +13:26:22 [ 11] [ 6] [156550] +13:26:22 [ 70] [ 3] [301] +13:26:22 ============================================================================ +13:26:22 + + +waiting on router queue for slot.... +13:26:22 Sending to : +13:26:22 ============================================================================ +13:26:22 ============================================================================ +13:26:22 Slot Id : <348> +13:26:22 Transaction Type : RESPONSE +13:26:22 Received From : +13:26:22 ============================================================================ +13:26:22 FNo. Len. Field Value +13:26:22 ============================================================================ +13:26:22 [ 1] [ 4] [0810] +13:26:22 [ 7] [ 10] [0320062530] +13:26:22 [ 11] [ 6] [156550] +13:26:22 [ 39] [ 2] [00] +13:26:22 [ 70] [ 3] [301] +13:26:22 ============================================================================ +13:26:22 Calculate Source COMM Id = 2 +13:26:22 ============================================================================ +13:26:22 + + +waiting on router queue for slot.... +13:26:29 ============================================================================ +13:26:29 Slot Id : <341> +13:26:29 Transaction Type : RESPONSE +13:26:29 Received From : +13:26:29 ============================================================================ +13:26:29 FNo. Len. Field Value +13:26:29 ============================================================================ +13:26:29 [ 1] [ 4] [0210] +13:26:29 [ 2] [ 16] [1808930300021185] +13:26:29 [ 3] [ 6] [010000] +13:26:29 [ 4] [ 12] [000010000000] +13:26:29 [ 6] [ 12] [000010000000] +13:26:29 [ 7] [ 10] [0320132549] +13:26:29 [ 11] [ 6] [756879] +13:26:29 [ 12] [ 6] [132549] +13:26:29 [ 13] [ 4] [0320] +13:26:29 [ 18] [ 4] [6011] +13:26:29 [ 19] [ 3] [418] +13:26:29 [ 22] [ 3] [021] +13:26:29 [ 28] [ 9] [D00002000] +13:26:29 [ 32] [ 6] [621354] +13:26:29 [ 35] [ 27] [1808930300021185=1803500967] +13:26:29 [ 37] [ 12] [507904898543] +13:26:29 [ 39] [ 2] [91] +13:26:29 [ 41] [ 8] [01012200] +13:26:29 [ 44] [ 3] [0X2] +13:26:29 [ 49] [ 3] [418] +13:26:29 [ 51] [ 3] [418] +13:26:29 [ 52] [ 16] [FCF1F5A44B5EAD04] +13:26:29 ============================================================================ +13:26:29 Sending to : +13:26:29 ============================================================================ +13:26:29 + + +waiting on router queue for slot.... +13:26:30 ============================================================================ +13:26:30 Slot Id : <341> +13:26:30 Transaction Type : RESPONSE +13:26:30 Received From : +13:26:30 ============================================================================ +13:26:30 FNo. Len. Field Value +13:26:30 ============================================================================ +13:26:30 [ 1] [ 4] [0210] +13:26:30 [ 2] [ 16] [1808930300021185] +13:26:30 [ 3] [ 6] [010000] +13:26:30 [ 4] [ 12] [000010000000] +13:26:30 [ 6] [ 12] [000010000000] +13:26:30 [ 7] [ 10] [0320132549] +13:26:30 [ 11] [ 6] [756879] +13:26:30 [ 12] [ 6] [132549] +13:26:30 [ 13] [ 4] [0320] +13:26:30 [ 18] [ 4] [6011] +13:26:30 [ 19] [ 3] [418] +13:26:30 [ 22] [ 3] [021] +13:26:30 [ 28] [ 9] [D00002000] +13:26:30 [ 32] [ 6] [621354] +13:26:30 [ 35] [ 27] [1808930300021185=1803500967] +13:26:30 [ 37] [ 12] [507904898543] +13:26:30 [ 39] [ 2] [91] +13:26:30 [ 41] [ 8] [01012200] +13:26:30 [ 44] [ 3] [0X2] +13:26:30 [ 49] [ 3] [418] +13:26:30 [ 51] [ 3] [418] +13:26:30 [ 52] [ 16] [FCF1F5A44B5EAD04] +13:26:30 ============================================================================ +13:26:30 Calculate Source COMM Id = 0 +13:26:30 ============================================================================ +13:26:30 + + +waiting on router queue for slot.... +13:26:30 ============================================================================ +13:26:30 Slot Id : <329> +13:26:30 Transaction Type : REQUEST +13:26:30 Received From : +13:26:30 ============================================================================ +13:26:30 FNo. Len. Field Value +13:26:30 ============================================================================ +13:26:30 [ 1] [ 4] [0420] +13:26:30 [ 2] [ 16] [1808930300021185] +13:26:30 [ 3] [ 6] [010000] +13:26:30 [ 4] [ 12] [000010000000] +13:26:30 [ 7] [ 10] [0320132549] +13:26:30 [ 11] [ 6] [756879] +13:26:30 [ 12] [ 6] [132549] +13:26:30 [ 13] [ 4] [0320] +13:26:30 [ 15] [ 4] [0320] +13:26:30 [ 18] [ 4] [6011] +13:26:30 [ 22] [ 3] [900] +13:26:30 [ 25] [ 2] [02] +13:26:30 [ 28] [ 9] [C00002000] +13:26:30 [ 32] [ 6] [621354] +13:26:30 [ 35] [ 27] [1808930300021185=1803500967] +13:26:30 [ 37] [ 12] [507904898543] +13:26:30 [ 39] [ 2] [00] +13:26:30 [ 41] [ 8] [01012200] +13:26:30 [ 42] [ 15] [NATIVE ] +13:26:30 [ 43] [ 40] [Technical School Phonhong LAO] +13:26:30 [ 49] [ 3] [418] +13:26:30 [ 90] [ 42] [020075687903201325490000062135400000000000] +13:26:30 ============================================================================ +13:26:30 + + +waiting on router queue for slot.... +13:26:30 Sending to : +13:26:30 ============================================================================ +13:26:33 ============================================================================ +13:26:33 Slot Id : <352> +13:26:33 Transaction Type : REQUEST +13:26:33 Received From : +13:26:33 ============================================================================ +13:26:33 FNo. Len. Field Value +13:26:33 ============================================================================ +13:26:33 [ 1] [ 4] [0200] +13:26:33 [ 2] [ 16] [6213548000144046] +13:26:33 [ 3] [ 6] [301000] +13:26:33 [ 4] [ 12] [000000000000] +13:26:33 [ 7] [ 10] [0320132423] +13:26:33 [ 11] [ 6] [946472] +13:26:33 [ 12] [ 6] [132423] +13:26:33 [ 13] [ 4] [0320] +13:26:33 [ 15] [ 4] [0320] +13:26:33 [ 18] [ 4] [6011] +13:26:33 [ 19] [ 3] [418] +13:26:33 [ 22] [ 3] [021] +13:26:33 [ 25] [ 2] [01] +13:26:33 [ 28] [ 9] [D00000000] +13:26:33 [ 32] [ 6] [668899] +13:26:33 [ 35] [ 32] [6213548000144046=131112014404767] +13:26:33 [ 37] [ 12] [507901215070] +13:26:33 [ 41] [ 8] [03020013] +13:26:33 [ 42] [ 15] [APT ] +13:26:33 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +13:26:33 [ 49] [ 3] [418] +13:26:33 [ 52] [ 16] [4832CCD732EA4238] +13:26:33 ============================================================================ +13:26:33 + + +waiting on router queue for slot.... +13:26:33 Sending to : +13:26:33 ============================================================================ +13:26:33 Sending to : +13:26:33 ============================================================================ +13:26:33 ============================================================================ +13:26:33 Slot Id : <352> +13:26:33 Transaction Type : REQUEST +13:26:33 Received From : +13:26:33 ============================================================================ +13:26:33 FNo. Len. Field Value +13:26:33 ============================================================================ +13:26:33 [ 1] [ 4] [0200] +13:26:33 [ 2] [ 16] [6213548000144046] +13:26:33 [ 3] [ 6] [301000] +13:26:33 [ 4] [ 12] [000000000000] +13:26:33 [ 7] [ 10] [0320132423] +13:26:33 [ 11] [ 6] [946472] +13:26:33 [ 12] [ 6] [132423] +13:26:33 [ 13] [ 4] [0320] +13:26:33 [ 15] [ 4] [0320] +13:26:33 [ 18] [ 4] [6011] +13:26:33 [ 19] [ 3] [418] +13:26:33 [ 22] [ 3] [021] +13:26:33 [ 25] [ 2] [01] +13:26:33 [ 28] [ 9] [D00000000] +13:26:33 [ 32] [ 6] [668899] +13:26:33 [ 35] [ 32] [6213548000144046=131112014404767] +13:26:33 [ 37] [ 12] [507901215070] +13:26:33 [ 41] [ 8] [03020013] +13:26:33 [ 42] [ 15] [APT ] +13:26:33 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +13:26:33 [ 49] [ 3] [418] +13:26:33 [ 52] [ 16] [4832CCD732EA4238] +13:26:33 ============================================================================ +13:26:33 + + +waiting on router queue for slot.... +13:26:33 Sending to : +13:26:33 ============================================================================ +13:26:33 ============================================================================ +13:26:33 Slot Id : <352> +13:26:33 Transaction Type : REQUEST +13:26:33 Received From : +13:26:33 ============================================================================ +13:26:33 FNo. Len. Field Value +13:26:33 ============================================================================ +13:26:33 [ 1] [ 4] [0200] +13:26:33 [ 2] [ 16] [6213548000144046] +13:26:33 [ 3] [ 6] [301000] +13:26:33 [ 4] [ 12] [000000000000] +13:26:33 [ 7] [ 10] [0320132423] +13:26:33 [ 11] [ 6] [946472] +13:26:33 [ 12] [ 6] [132423] +13:26:33 [ 13] [ 4] [0320] +13:26:33 [ 15] [ 4] [0320] +13:26:33 [ 18] [ 4] [6011] +13:26:33 [ 19] [ 3] [418] +13:26:33 [ 22] [ 3] [021] +13:26:33 [ 25] [ 2] [01] +13:26:33 [ 28] [ 9] [D00000000] +13:26:33 [ 32] [ 6] [668899] +13:26:33 [ 35] [ 32] [6213548000144046=131112014404767] +13:26:33 [ 37] [ 12] [507901215070] +13:26:33 [ 41] [ 8] [03020013] +13:26:33 [ 42] [ 15] [APT ] +13:26:33 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +13:26:33 [ 49] [ 3] [418] +13:26:33 [ 52] [ 16] [FD810156E8F0BEB7] +13:26:33 ============================================================================ +13:26:33 + + +waiting on router queue for slot.... +13:26:33 Sending to : <0> +13:26:33 ============================================================================ +13:26:33 ============================================================================ +13:26:33 Slot Id : <352> +13:26:33 Transaction Type : RESPONSE +13:26:33 Received From : +13:26:33 ============================================================================ +13:26:33 FNo. Len. Field Value +13:26:33 ============================================================================ +13:26:33 [ 1] [ 4] [0210] +13:26:33 [ 2] [ 16] [6213548000144046] +13:26:33 [ 3] [ 6] [301000] +13:26:33 [ 4] [ 12] [000000000000] +13:26:33 [ 7] [ 10] [0320132423] +13:26:33 [ 11] [ 6] [946472] +13:26:33 [ 12] [ 6] [132423] +13:26:33 [ 13] [ 4] [0320] +13:26:33 [ 15] [ 4] [0320] +13:26:33 [ 18] [ 4] [6011] +13:26:33 [ 19] [ 3] [418] +13:26:33 [ 32] [ 6] [668899] +13:26:33 [ 35] [ 32] [6213548000144046=131112014404767] +13:26:33 [ 37] [ 12] [507901215070] +13:26:33 [ 38] [ 6] [079182] +13:26:33 [ 39] [ 2] [00] +13:26:33 [ 41] [ 8] [03020013] +13:26:33 [ 49] [ 3] [418] +13:26:33 [ 54] [ 40] [1001418C0000094535711002418C000009453571] +13:26:33 ============================================================================ +13:26:33 Sending to : +13:26:33 ============================================================================ +13:26:33 + + +waiting on router queue for slot.... +13:26:34 ============================================================================ +13:26:34 Slot Id : <329> +13:26:34 Transaction Type : RESPONSE +13:26:34 Received From : +13:26:34 ============================================================================ +13:26:34 FNo. Len. Field Value +13:26:34 ============================================================================ +13:26:34 [ 1] [ 4] [0430] +13:26:34 [ 2] [ 16] [1808930300021185] +13:26:34 [ 3] [ 6] [010000] +13:26:34 [ 4] [ 12] [000010000000] +13:26:34 [ 7] [ 10] [0320132549] +13:26:34 [ 11] [ 6] [756879] +13:26:34 [ 12] [ 6] [132549] +13:26:34 [ 13] [ 4] [0320] +13:26:34 [ 15] [ 4] [0320] +13:26:34 [ 18] [ 4] [6011] +13:26:34 [ 22] [ 3] [900] +13:26:34 [ 25] [ 2] [02] +13:26:34 [ 28] [ 9] [C00002000] +13:26:34 [ 32] [ 6] [621354] +13:26:34 [ 35] [ 27] [1808930300021185=1803500967] +13:26:34 [ 37] [ 12] [507904898543] +13:26:34 [ 39] [ 2] [00] +13:26:34 [ 41] [ 8] [01012200] +13:26:34 [ 42] [ 15] [NATIVE ] +13:26:34 [ 43] [ 40] [Technical School Phonhong LAO] +13:26:34 [ 49] [ 3] [418] +13:26:34 [ 90] [ 42] [020075687903201325490000062135400000000000] +13:26:34 ============================================================================ +13:26:34 Calculate Source COMM Id = 0 +13:26:34 ============================================================================ +13:26:34 + + +waiting on router queue for slot.... +13:26:34 ============================================================================ +13:26:34 Slot Id : <337> +13:26:34 Transaction Type : REQUEST +13:26:34 Received From : +13:26:34 ============================================================================ +13:26:34 FNo. Len. Field Value +13:26:34 ============================================================================ +13:26:34 [ 1] [ 4] [0200] +13:26:34 [ 2] [ 16] [1999990000002942] +13:26:34 [ 3] [ 6] [010000] +13:26:34 [ 4] [ 12] [000100000000] +13:26:34 [ 7] [ 10] [0320132630] +13:26:34 [ 11] [ 6] [757059] +13:26:34 [ 12] [ 6] [132630] +13:26:34 [ 13] [ 4] [0320] +13:26:34 [ 15] [ 4] [0320] +13:26:34 [ 18] [ 4] [6011] +13:26:34 [ 22] [ 3] [900] +13:26:34 [ 25] [ 2] [02] +13:26:34 [ 28] [ 9] [D00002000] +13:26:34 [ 32] [ 6] [621354] +13:26:34 [ 35] [ 32] [1999990000002942=000010100000390] +13:26:34 [ 37] [ 12] [507904031760] +13:26:34 [ 41] [ 8] [09001700] +13:26:34 [ 42] [ 15] [NATIVE ] +13:26:34 [ 43] [ 40] [Xaysetha Unit 02 Xaysetha LAO] +13:26:34 [ 49] [ 3] [418] +13:26:34 [ 52] [ 16] [01C893FFA7E0476B] +13:26:34 ============================================================================ +13:26:34 + + +waiting on router queue for slot.... +13:26:34 Sending to : +13:26:34 ============================================================================ +13:26:34 Sending to : +13:26:34 ============================================================================ +13:26:35 ============================================================================ +13:26:35 Slot Id : <337> +13:26:35 Transaction Type : REQUEST +13:26:35 Received From : +13:26:35 ============================================================================ +13:26:35 FNo. Len. Field Value +13:26:35 ============================================================================ +13:26:35 [ 1] [ 4] [0200] +13:26:35 [ 2] [ 16] [1999990000002942] +13:26:35 [ 3] [ 6] [010000] +13:26:35 [ 4] [ 12] [000100000000] +13:26:35 [ 7] [ 10] [0320132630] +13:26:35 [ 11] [ 6] [757059] +13:26:35 [ 12] [ 6] [132630] +13:26:35 [ 13] [ 4] [0320] +13:26:35 [ 15] [ 4] [0320] +13:26:35 [ 18] [ 4] [6011] +13:26:35 [ 22] [ 3] [900] +13:26:35 [ 25] [ 2] [02] +13:26:35 [ 28] [ 9] [D00002000] +13:26:35 [ 32] [ 6] [621354] +13:26:35 [ 35] [ 32] [1999990000002942=000010100000390] +13:26:35 [ 37] [ 12] [507904031760] +13:26:35 [ 41] [ 8] [09001700] +13:26:35 [ 42] [ 15] [NATIVE ] +13:26:35 [ 43] [ 40] [Xaysetha Unit 02 Xaysetha LAO] +13:26:35 [ 49] [ 3] [418] +13:26:35 [ 52] [ 16] [01C893FFA7E0476B] +13:26:35 ============================================================================ +13:26:35 + + +waiting on router queue for slot.... +13:26:35 Sending to : +13:26:35 ============================================================================ +13:26:35 ============================================================================ +13:26:35 Slot Id : <337> +13:26:35 Transaction Type : REQUEST +13:26:35 Received From : +13:26:35 ============================================================================ +13:26:35 FNo. Len. Field Value +13:26:35 ============================================================================ +13:26:35 [ 1] [ 4] [0200] +13:26:35 [ 2] [ 16] [1999990000002942] +13:26:35 [ 3] [ 6] [010000] +13:26:35 [ 4] [ 12] [000100000000] +13:26:35 [ 7] [ 10] [0320132630] +13:26:35 [ 11] [ 6] [757059] +13:26:35 [ 12] [ 6] [132630] +13:26:35 [ 13] [ 4] [0320] +13:26:35 [ 15] [ 4] [0320] +13:26:35 [ 18] [ 4] [6011] +13:26:35 [ 22] [ 3] [900] +13:26:35 [ 25] [ 2] [02] +13:26:35 [ 28] [ 9] [D00002000] +13:26:35 [ 32] [ 6] [621354] +13:26:35 [ 35] [ 32] [1999990000002942=000010100000390] +13:26:35 [ 37] [ 12] [507904031760] +13:26:35 [ 41] [ 8] [09001700] +13:26:35 [ 42] [ 15] [NATIVE ] +13:26:35 [ 43] [ 40] [Xaysetha Unit 02 Xaysetha LAO] +13:26:35 [ 49] [ 3] [418] +13:26:35 [ 52] [ 16] [52D92692F85C561F] +13:26:35 ============================================================================ +13:26:35 + + +waiting on router queue for slot.... +13:26:35 Sending to : <5> +13:26:35 ============================================================================ +13:26:35 ============================================================================ +13:26:35 Slot Id : <352> +13:26:35 Transaction Type : RESPONSE +13:26:35 Received From : +13:26:35 ============================================================================ +13:26:35 FNo. Len. Field Value +13:26:35 ============================================================================ +13:26:35 [ 1] [ 4] [0210] +13:26:35 [ 2] [ 16] [6213548000144046] +13:26:35 [ 3] [ 6] [301000] +13:26:35 [ 4] [ 12] [000000000000] +13:26:35 [ 7] [ 10] [0320132423] +13:26:35 [ 11] [ 6] [946472] +13:26:35 [ 12] [ 6] [132423] +13:26:35 [ 13] [ 4] [0320] +13:26:35 [ 15] [ 4] [0320] +13:26:35 [ 18] [ 4] [6011] +13:26:35 [ 19] [ 3] [418] +13:26:35 [ 32] [ 6] [668899] +13:26:35 [ 35] [ 32] [6213548000144046=131112014404767] +13:26:35 [ 37] [ 12] [507901215070] +13:26:35 [ 38] [ 6] [079182] +13:26:35 [ 39] [ 2] [00] +13:26:35 [ 41] [ 8] [03020013] +13:26:35 [ 49] [ 3] [418] +13:26:35 [ 54] [ 40] [1001418C0000094535711002418C000009453571] +13:26:35 ============================================================================ +13:26:35 Calculate Source COMM Id = 4 +13:26:35 ============================================================================ +13:26:35 + + +waiting on router queue for slot.... +13:26:38 ============================================================================ +13:26:38 Slot Id : <328> +13:26:38 Transaction Type : REQUEST +13:26:38 Received From : +13:26:38 ============================================================================ +13:26:38 FNo. Len. Field Value +13:26:38 ============================================================================ +13:26:38 [ 1] [ 4] [0800] +13:26:38 [ 2] [ 5] [02531] +13:26:38 [ 3] [ 6] [579138] +13:26:38 [ 7] [ 10] [0320062638] +13:26:38 [ 11] [ 6] [807192] +13:26:38 [ 15] [ 10] [0320062638] +13:26:38 [ 37] [ 11] [57913807192] +13:26:38 [ 70] [ 3] [001] +13:26:38 ============================================================================ +13:26:38 + + +waiting on router queue for slot.... +13:26:38 ============================================================================ +13:26:38 Slot Id : <328> +13:26:38 Transaction Type : RESPONSE +13:26:38 Received From : +13:26:38 ============================================================================ +13:26:38 FNo. Len. Field Value +13:26:38 ============================================================================ +13:26:38 [ 1] [ 4] [0810] +13:26:38 [ 7] [ 10] [0320062638] +13:26:38 [ 11] [ 6] [807192] +13:26:38 [ 15] [ 4] [0320] +13:26:38 [ 37] [ 12] [57913807192] +13:26:38 [ 39] [ 2] [00] +13:26:38 [ 70] [ 3] [001] +13:26:38 ============================================================================ +13:26:38 Sending to : +13:26:38 ============================================================================ +13:26:38 + + +waiting on router queue for slot.... +13:26:38 ============================================================================ +13:26:38 Slot Id : <309> +13:26:38 Transaction Type : REQUEST +13:26:38 Received From : +13:26:38 ============================================================================ +13:26:38 FNo. Len. Field Value +13:26:38 ============================================================================ +13:26:38 [ 1] [ 4] [0800] +13:26:38 [ 7] [ 10] [0320062546] +13:26:38 [ 11] [ 6] [156551] +13:26:38 [ 70] [ 3] [301] +13:26:38 ============================================================================ +13:26:38 + + +waiting on router queue for slot.... +13:26:38 Sending to : +13:26:38 ============================================================================ +13:26:38 ============================================================================ +13:26:38 Slot Id : <309> +13:26:38 Transaction Type : RESPONSE +13:26:38 Received From : +13:26:38 ============================================================================ +13:26:38 FNo. Len. Field Value +13:26:38 ============================================================================ +13:26:38 [ 1] [ 4] [0810] +13:26:38 [ 7] [ 10] [0320062546] +13:26:38 [ 11] [ 6] [156551] +13:26:38 [ 39] [ 2] [00] +13:26:38 [ 70] [ 3] [301] +13:26:38 ============================================================================ +13:26:38 Calculate Source COMM Id = 2 +13:26:38 ============================================================================ +13:26:38 + + +waiting on router queue for slot.... +13:26:43 ============================================================================ +13:26:43 Slot Id : <347> +13:26:43 Transaction Type : REQUEST +13:26:43 Received From : +13:26:43 ============================================================================ +13:26:43 FNo. Len. Field Value +13:26:43 ============================================================================ +13:26:43 [ 1] [ 4] [0200] +13:26:43 [ 2] [ 16] [1808930300021185] +13:26:43 [ 3] [ 6] [010000] +13:26:43 [ 4] [ 12] [000010000000] +13:26:43 [ 7] [ 10] [0320132638] +13:26:43 [ 11] [ 6] [757085] +13:26:43 [ 12] [ 6] [132638] +13:26:43 [ 13] [ 4] [0320] +13:26:43 [ 15] [ 4] [0320] +13:26:43 [ 18] [ 4] [6011] +13:26:43 [ 22] [ 3] [900] +13:26:43 [ 25] [ 2] [02] +13:26:43 [ 28] [ 9] [D00002000] +13:26:43 [ 32] [ 6] [621354] +13:26:43 [ 35] [ 27] [1808930300021185=1803500967] +13:26:43 [ 37] [ 12] [507904898545] +13:26:43 [ 41] [ 8] [01012200] +13:26:43 [ 42] [ 15] [NATIVE ] +13:26:43 [ 43] [ 40] [Technical School Phonhong LAO] +13:26:43 [ 49] [ 3] [418] +13:26:43 [ 52] [ 16] [40D3D4DA578981CF] +13:26:43 ============================================================================ +13:26:43 + + +waiting on router queue for slot.... +13:26:43 Sending to : +13:26:43 ============================================================================ +13:26:43 Sending to : +13:26:43 ============================================================================ +13:26:43 ============================================================================ +13:26:43 Slot Id : <337> +13:26:43 Transaction Type : RESPONSE +13:26:43 Received From : +13:26:43 ============================================================================ +13:26:43 FNo. Len. Field Value +13:26:43 ============================================================================ +13:26:43 [ 1] [ 4] [0210] +13:26:43 [ 2] [ 16] [1999990000002942] +13:26:43 [ 3] [ 6] [010000] +13:26:43 [ 4] [ 12] [000100000000] +13:26:43 [ 7] [ 10] [0320132630] +13:26:43 [ 11] [ 6] [757059] +13:26:43 [ 12] [ 6] [132630] +13:26:43 [ 13] [ 4] [0320] +13:26:43 [ 15] [ 4] [0320] +13:26:43 [ 18] [ 4] [6011] +13:26:43 [ 19] [ 3] [418] +13:26:43 [ 32] [ 6] [621354] +13:26:43 [ 37] [ 12] [507904031760] +13:26:43 [ 38] [ 6] [298843] +13:26:43 [ 39] [ 2] [00] +13:26:43 [ 41] [ 8] [09001700] +13:26:43 [ 49] [ 3] [418] +13:26:43 [ 54] [ 0] [] +13:26:43 ============================================================================ +13:26:43 Sending to : +13:26:43 ============================================================================ +13:26:43 + + +waiting on router queue for slot.... +13:26:43 ============================================================================ +13:26:43 Slot Id : <347> +13:26:43 Transaction Type : REQUEST +13:26:43 Received From : +13:26:43 ============================================================================ +13:26:43 FNo. Len. Field Value +13:26:43 ============================================================================ +13:26:43 [ 1] [ 4] [0200] +13:26:43 [ 2] [ 16] [1808930300021185] +13:26:43 [ 3] [ 6] [010000] +13:26:43 [ 4] [ 12] [000010000000] +13:26:43 [ 7] [ 10] [0320132638] +13:26:43 [ 11] [ 6] [757085] +13:26:43 [ 12] [ 6] [132638] +13:26:43 [ 13] [ 4] [0320] +13:26:43 [ 15] [ 4] [0320] +13:26:43 [ 18] [ 4] [6011] +13:26:43 [ 22] [ 3] [900] +13:26:43 [ 25] [ 2] [02] +13:26:43 [ 28] [ 9] [D00002000] +13:26:43 [ 32] [ 6] [621354] +13:26:43 [ 35] [ 27] [1808930300021185=1803500967] +13:26:43 [ 37] [ 12] [507904898545] +13:26:43 [ 41] [ 8] [01012200] +13:26:43 [ 42] [ 15] [NATIVE ] +13:26:43 [ 43] [ 40] [Technical School Phonhong LAO] +13:26:43 [ 49] [ 3] [418] +13:26:43 [ 52] [ 16] [40D3D4DA578981CF] +13:26:43 ============================================================================ +13:26:43 + + +waiting on router queue for slot.... +13:26:43 Sending to : +13:26:43 ============================================================================ +13:26:43 ============================================================================ +13:26:43 Slot Id : <347> +13:26:43 Transaction Type : REQUEST +13:26:43 Received From : +13:26:43 ============================================================================ +13:26:43 FNo. Len. Field Value +13:26:43 ============================================================================ +13:26:43 [ 1] [ 4] [0200] +13:26:43 [ 2] [ 16] [1808930300021185] +13:26:43 [ 3] [ 6] [010000] +13:26:43 [ 4] [ 12] [000010000000] +13:26:43 [ 7] [ 10] [0320132638] +13:26:43 [ 11] [ 6] [757085] +13:26:43 [ 12] [ 6] [132638] +13:26:43 [ 13] [ 4] [0320] +13:26:43 [ 15] [ 4] [0320] +13:26:43 [ 18] [ 4] [6011] +13:26:43 [ 22] [ 3] [900] +13:26:43 [ 25] [ 2] [02] +13:26:43 [ 28] [ 9] [D00002000] +13:26:43 [ 32] [ 6] [621354] +13:26:43 [ 35] [ 27] [1808930300021185=1803500967] +13:26:43 [ 37] [ 12] [507904898545] +13:26:43 [ 41] [ 8] [01012200] +13:26:43 [ 42] [ 15] [NATIVE ] +13:26:43 [ 43] [ 40] [Technical School Phonhong LAO] +13:26:43 [ 49] [ 3] [418] +13:26:43 [ 52] [ 16] [FCF1F5A44B5EAD04] +13:26:43 ============================================================================ +13:26:43 + + +waiting on router queue for slot.... +13:26:43 Sending to : <2> +13:26:43 ============================================================================ +13:26:44 ============================================================================ +13:26:44 Slot Id : <337> +13:26:44 Transaction Type : RESPONSE +13:26:44 Received From : +13:26:44 ============================================================================ +13:26:44 FNo. Len. Field Value +13:26:44 ============================================================================ +13:26:44 [ 1] [ 4] [0210] +13:26:44 [ 2] [ 16] [1999990000002942] +13:26:44 [ 3] [ 6] [010000] +13:26:44 [ 4] [ 12] [000100000000] +13:26:44 [ 7] [ 10] [0320132630] +13:26:44 [ 11] [ 6] [757059] +13:26:44 [ 12] [ 6] [132630] +13:26:44 [ 13] [ 4] [0320] +13:26:44 [ 15] [ 4] [0320] +13:26:44 [ 18] [ 4] [6011] +13:26:44 [ 19] [ 3] [418] +13:26:44 [ 32] [ 6] [621354] +13:26:44 [ 37] [ 12] [507904031760] +13:26:44 [ 38] [ 6] [298843] +13:26:44 [ 39] [ 2] [00] +13:26:44 [ 41] [ 8] [09001700] +13:26:44 [ 49] [ 3] [418] +13:26:44 [ 54] [ 0] [] +13:26:44 ============================================================================ +13:26:44 Calculate Source COMM Id = 0 +13:26:44 ============================================================================ +13:26:44 + + +waiting on router queue for slot.... +13:26:48 ============================================================================ +13:26:48 Slot Id : <347> +13:26:48 Transaction Type : RESPONSE +13:26:48 Received From : +13:26:48 ============================================================================ +13:26:48 FNo. Len. Field Value +13:26:48 ============================================================================ +13:26:48 [ 1] [ 4] [0210] +13:26:48 [ 2] [ 16] [1808930300021185] +13:26:48 [ 3] [ 6] [010000] +13:26:48 [ 4] [ 12] [000010000000] +13:26:48 [ 6] [ 12] [000010000000] +13:26:48 [ 7] [ 10] [0320132638] +13:26:48 [ 11] [ 6] [757085] +13:26:48 [ 12] [ 6] [132638] +13:26:48 [ 13] [ 4] [0320] +13:26:48 [ 18] [ 4] [6011] +13:26:48 [ 19] [ 3] [418] +13:26:48 [ 22] [ 3] [021] +13:26:48 [ 32] [ 6] [621354] +13:26:48 [ 35] [ 27] [1808930300021185=1803500967] +13:26:48 [ 37] [ 12] [507904898545] +13:26:48 [ 38] [ 6] [757085] +13:26:48 [ 39] [ 2] [00] +13:26:48 [ 41] [ 8] [01012200] +13:26:48 [ 49] [ 3] [418] +13:26:48 [ 52] [ 16] [FCF1F5A44B5EAD04] +13:26:48 [ 54] [ 20] [1001418C000034045000] +13:26:48 ============================================================================ +13:26:48 Sending to : +13:26:48 ============================================================================ +13:26:48 + + +waiting on router queue for slot.... +13:26:49 ============================================================================ +13:26:49 Slot Id : <346> +13:26:49 Transaction Type : REQUEST +13:26:49 Received From : +13:26:49 ============================================================================ +13:26:49 FNo. Len. Field Value +13:26:49 ============================================================================ +13:26:49 [ 1] [ 4] [0200] +13:26:49 [ 2] [ 16] [6688990107228205] +13:26:49 [ 3] [ 6] [300000] +13:26:49 [ 4] [ 12] [000000000000] +13:26:49 [ 7] [ 10] [0320132644] +13:26:49 [ 11] [ 6] [757101] +13:26:49 [ 12] [ 6] [132644] +13:26:49 [ 13] [ 4] [0320] +13:26:49 [ 15] [ 4] [0320] +13:26:49 [ 18] [ 4] [6011] +13:26:49 [ 22] [ 3] [900] +13:26:49 [ 25] [ 2] [02] +13:26:49 [ 28] [ 9] [D00000000] +13:26:49 [ 32] [ 6] [621354] +13:26:49 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:26:49 [ 37] [ 12] [507904153899] +13:26:49 [ 41] [ 8] [20001000] +13:26:49 [ 42] [ 15] [NATIVE ] +13:26:49 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:26:49 [ 49] [ 3] [418] +13:26:49 [ 52] [ 16] [216E7866C9888A9E] +13:26:49 ============================================================================ +13:26:49 + + +waiting on router queue for slot.... +13:26:49 Sending to : +13:26:49 ============================================================================ +13:26:49 Sending to : +13:26:49 ============================================================================ +13:26:49 ============================================================================ +13:26:49 Slot Id : <346> +13:26:49 Transaction Type : REQUEST +13:26:49 Received From : +13:26:49 ============================================================================ +13:26:49 FNo. Len. Field Value +13:26:49 ============================================================================ +13:26:49 [ 1] [ 4] [0200] +13:26:49 [ 2] [ 16] [6688990107228205] +13:26:49 [ 3] [ 6] [300000] +13:26:49 [ 4] [ 12] [000000000000] +13:26:49 [ 7] [ 10] [0320132644] +13:26:49 [ 11] [ 6] [757101] +13:26:49 [ 12] [ 6] [132644] +13:26:49 [ 13] [ 4] [0320] +13:26:49 [ 15] [ 4] [0320] +13:26:49 [ 18] [ 4] [6011] +13:26:49 [ 22] [ 3] [900] +13:26:49 [ 25] [ 2] [02] +13:26:49 [ 28] [ 9] [D00000000] +13:26:49 [ 32] [ 6] [621354] +13:26:49 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:26:49 [ 37] [ 12] [507904153899] +13:26:49 [ 41] [ 8] [20001000] +13:26:49 [ 42] [ 15] [NATIVE ] +13:26:49 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:26:49 [ 49] [ 3] [418] +13:26:49 [ 52] [ 16] [216E7866C9888A9E] +13:26:49 ============================================================================ +13:26:49 + + +waiting on router queue for slot.... +13:26:49 Sending to : +13:26:49 ============================================================================ +13:26:49 ============================================================================ +13:26:49 Slot Id : <346> +13:26:49 Transaction Type : REQUEST +13:26:49 Received From : +13:26:49 ============================================================================ +13:26:49 FNo. Len. Field Value +13:26:49 ============================================================================ +13:26:49 [ 1] [ 4] [0200] +13:26:49 [ 2] [ 16] [6688990107228205] +13:26:49 [ 3] [ 6] [300000] +13:26:49 [ 4] [ 12] [000000000000] +13:26:49 [ 7] [ 10] [0320132644] +13:26:49 [ 11] [ 6] [757101] +13:26:49 [ 12] [ 6] [132644] +13:26:49 [ 13] [ 4] [0320] +13:26:49 [ 15] [ 4] [0320] +13:26:49 [ 18] [ 4] [6011] +13:26:49 [ 22] [ 3] [900] +13:26:49 [ 25] [ 2] [02] +13:26:49 [ 28] [ 9] [D00000000] +13:26:49 [ 32] [ 6] [621354] +13:26:49 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:26:49 [ 37] [ 12] [507904153899] +13:26:49 [ 41] [ 8] [20001000] +13:26:49 [ 42] [ 15] [NATIVE ] +13:26:49 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:26:49 [ 49] [ 3] [418] +13:26:49 [ 52] [ 16] [BFD645C3C5A2455A] +13:26:49 ============================================================================ +13:26:49 + + +waiting on router queue for slot.... +13:26:49 Sending to : <4> +13:26:49 ============================================================================ +13:26:50 ============================================================================ +13:26:50 Slot Id : <347> +13:26:50 Transaction Type : RESPONSE +13:26:50 Received From : +13:26:50 ============================================================================ +13:26:50 FNo. Len. Field Value +13:26:50 ============================================================================ +13:26:50 [ 1] [ 4] [0210] +13:26:50 [ 2] [ 16] [1808930300021185] +13:26:50 [ 3] [ 6] [010000] +13:26:50 [ 4] [ 12] [000010000000] +13:26:50 [ 6] [ 12] [000010000000] +13:26:50 [ 7] [ 10] [0320132638] +13:26:50 [ 11] [ 6] [757085] +13:26:50 [ 12] [ 6] [132638] +13:26:50 [ 13] [ 4] [0320] +13:26:50 [ 18] [ 4] [6011] +13:26:50 [ 19] [ 3] [418] +13:26:50 [ 22] [ 3] [021] +13:26:50 [ 32] [ 6] [621354] +13:26:50 [ 35] [ 27] [1808930300021185=1803500967] +13:26:50 [ 37] [ 12] [507904898545] +13:26:50 [ 38] [ 6] [757085] +13:26:50 [ 39] [ 2] [00] +13:26:50 [ 41] [ 8] [01012200] +13:26:50 [ 49] [ 3] [418] +13:26:50 [ 52] [ 16] [FCF1F5A44B5EAD04] +13:26:50 [ 54] [ 20] [1001418C000034045000] +13:26:50 ============================================================================ +13:26:50 Calculate Source COMM Id = 0 +13:26:50 ============================================================================ +13:26:50 + + +waiting on router queue for slot.... +13:26:50 ============================================================================ +13:26:50 Slot Id : <346> +13:26:50 Transaction Type : RESPONSE +13:26:50 Received From : +13:26:50 ============================================================================ +13:26:50 FNo. Len. Field Value +13:26:50 ============================================================================ +13:26:50 [ 1] [ 4] [0210] +13:26:50 [ 2] [ 16] [6688990107228205] +13:26:50 [ 3] [ 6] [300000] +13:26:50 [ 4] [ 12] [000000000000] +13:26:50 [ 11] [ 6] [757101] +13:26:50 [ 12] [ 6] [132644] +13:26:50 [ 15] [ 4] [0320] +13:26:50 [ 18] [ 4] [6011] +13:26:50 [ 32] [ 6] [621354] +13:26:50 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:26:50 [ 37] [ 12] [507904153899] +13:26:50 [ 38] [ 6] [201058] +13:26:50 [ 39] [ 2] [00] +13:26:50 [ 41] [ 8] [20001000] +13:26:50 [ 49] [ 3] [418] +13:26:50 [ 54] [ 20] [0002418C000022687642] +13:26:50 ============================================================================ +13:26:50 Sending to : +13:26:50 ============================================================================ +13:26:50 + + +waiting on router queue for slot.... +13:26:52 ============================================================================ +13:26:52 Slot Id : <346> +13:26:52 Transaction Type : RESPONSE +13:26:52 Received From : +13:26:52 ============================================================================ +13:26:52 FNo. Len. Field Value +13:26:52 ============================================================================ +13:26:52 [ 1] [ 4] [0210] +13:26:52 [ 2] [ 16] [6688990107228205] +13:26:52 [ 3] [ 6] [300000] +13:26:52 [ 4] [ 12] [000000000000] +13:26:52 [ 11] [ 6] [757101] +13:26:52 [ 12] [ 6] [132644] +13:26:52 [ 15] [ 4] [0320] +13:26:52 [ 18] [ 4] [6011] +13:26:52 [ 32] [ 6] [621354] +13:26:52 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:26:52 [ 37] [ 12] [507904153899] +13:26:52 [ 38] [ 6] [201058] +13:26:52 [ 39] [ 2] [00] +13:26:52 [ 41] [ 8] [20001000] +13:26:52 [ 49] [ 3] [418] +13:26:52 [ 54] [ 20] [0002418C000022687642] +13:26:52 ============================================================================ +13:26:52 Calculate Source COMM Id = 0 +13:26:52 ============================================================================ +13:26:52 + + +waiting on router queue for slot.... +13:26:55 ============================================================================ +13:26:55 Slot Id : <350> +13:26:55 Transaction Type : REQUEST +13:26:55 Received From : +13:26:55 ============================================================================ +13:26:55 FNo. Len. Field Value +13:26:55 ============================================================================ +13:26:55 [ 1] [ 4] [0800] +13:26:55 [ 7] [ 10] [0320062602] +13:26:55 [ 11] [ 6] [156552] +13:26:55 [ 70] [ 3] [301] +13:26:55 ============================================================================ +13:26:55 + + +waiting on router queue for slot.... +13:26:55 Sending to : +13:26:55 ============================================================================ +13:26:55 ============================================================================ +13:26:55 Slot Id : <350> +13:26:55 Transaction Type : RESPONSE +13:26:55 Received From : +13:26:55 ============================================================================ +13:26:55 FNo. Len. Field Value +13:26:55 ============================================================================ +13:26:55 [ 1] [ 4] [0810] +13:26:55 [ 7] [ 10] [0320062602] +13:26:55 [ 11] [ 6] [156552] +13:26:55 [ 39] [ 2] [00] +13:26:55 [ 70] [ 3] [301] +13:26:55 ============================================================================ +13:26:55 Calculate Source COMM Id = 2 +13:26:55 ============================================================================ +13:26:55 + + +waiting on router queue for slot.... +13:27:01 ============================================================================ +13:27:01 Slot Id : <319> +13:27:01 Transaction Type : REQUEST +13:27:01 Received From : +13:27:01 ============================================================================ +13:27:01 FNo. Len. Field Value +13:27:01 ============================================================================ +13:27:01 [ 1] [ 4] [0200] +13:27:01 [ 2] [ 16] [6213545000308746] +13:27:01 [ 3] [ 6] [010000] +13:27:01 [ 4] [ 12] [000100000000] +13:27:01 [ 7] [ 10] [0320132451] +13:27:01 [ 11] [ 6] [946488] +13:27:01 [ 12] [ 6] [132451] +13:27:01 [ 13] [ 4] [0320] +13:27:01 [ 15] [ 4] [0320] +13:27:01 [ 18] [ 4] [6011] +13:27:01 [ 19] [ 3] [418] +13:27:01 [ 22] [ 3] [021] +13:27:01 [ 25] [ 2] [01] +13:27:01 [ 28] [ 9] [D00002000] +13:27:01 [ 32] [ 6] [668899] +13:27:01 [ 35] [ 32] [6213545000308746=491212010874560] +13:27:01 [ 37] [ 12] [507902150998] +13:27:01 [ 41] [ 8] [03020025] +13:27:01 [ 42] [ 15] [APT ] +13:27:01 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:27:01 [ 49] [ 3] [418] +13:27:01 [ 52] [ 16] [D0269C500881CF2A] +13:27:01 ============================================================================ +13:27:01 + + +waiting on router queue for slot.... +13:27:01 Sending to : +13:27:01 ============================================================================ +13:27:01 Sending to : +13:27:01 ============================================================================ +13:27:01 ============================================================================ +13:27:01 Slot Id : <319> +13:27:01 Transaction Type : REQUEST +13:27:01 Received From : +13:27:01 ============================================================================ +13:27:01 FNo. Len. Field Value +13:27:01 ============================================================================ +13:27:01 [ 1] [ 4] [0200] +13:27:01 [ 2] [ 16] [6213545000308746] +13:27:01 [ 3] [ 6] [010000] +13:27:01 [ 4] [ 12] [000100000000] +13:27:01 [ 7] [ 10] [0320132451] +13:27:01 [ 11] [ 6] [946488] +13:27:01 [ 12] [ 6] [132451] +13:27:01 [ 13] [ 4] [0320] +13:27:01 [ 15] [ 4] [0320] +13:27:01 [ 18] [ 4] [6011] +13:27:01 [ 19] [ 3] [418] +13:27:01 [ 22] [ 3] [021] +13:27:01 [ 25] [ 2] [01] +13:27:01 [ 28] [ 9] [D00002000] +13:27:01 [ 32] [ 6] [668899] +13:27:01 [ 35] [ 32] [6213545000308746=491212010874560] +13:27:01 [ 37] [ 12] [507902150998] +13:27:01 [ 41] [ 8] [03020025] +13:27:01 [ 42] [ 15] [APT ] +13:27:01 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:27:01 [ 49] [ 3] [418] +13:27:01 [ 52] [ 16] [D0269C500881CF2A] +13:27:01 ============================================================================ +13:27:01 + + +waiting on router queue for slot.... +13:27:01 Sending to : +13:27:01 ============================================================================ +13:27:01 ============================================================================ +13:27:01 Slot Id : <319> +13:27:01 Transaction Type : REQUEST +13:27:01 Received From : +13:27:01 ============================================================================ +13:27:01 FNo. Len. Field Value +13:27:01 ============================================================================ +13:27:01 [ 1] [ 4] [0200] +13:27:01 [ 2] [ 16] [6213545000308746] +13:27:01 [ 3] [ 6] [010000] +13:27:01 [ 4] [ 12] [000100000000] +13:27:01 [ 7] [ 10] [0320132451] +13:27:01 [ 11] [ 6] [946488] +13:27:01 [ 12] [ 6] [132451] +13:27:01 [ 13] [ 4] [0320] +13:27:01 [ 15] [ 4] [0320] +13:27:01 [ 18] [ 4] [6011] +13:27:01 [ 19] [ 3] [418] +13:27:01 [ 22] [ 3] [021] +13:27:01 [ 25] [ 2] [01] +13:27:01 [ 28] [ 9] [D00002000] +13:27:01 [ 32] [ 6] [668899] +13:27:01 [ 35] [ 32] [6213545000308746=491212010874560] +13:27:01 [ 37] [ 12] [507902150998] +13:27:01 [ 41] [ 8] [03020025] +13:27:01 [ 42] [ 15] [APT ] +13:27:01 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:27:01 [ 49] [ 3] [418] +13:27:01 [ 52] [ 16] [A6139E1AA50649E4] +13:27:01 ============================================================================ +13:27:01 + + +waiting on router queue for slot.... +13:27:01 Sending to : <0> +13:27:01 ============================================================================ +13:27:01 ============================================================================ +13:27:01 Slot Id : <357> +13:27:01 Transaction Type : REQUEST +13:27:01 Received From : +13:27:01 ============================================================================ +13:27:01 FNo. Len. Field Value +13:27:01 ============================================================================ +13:27:01 [ 1] [ 4] [0200] +13:27:01 [ 2] [ 16] [6688990030009680] +13:27:01 [ 3] [ 6] [010000] +13:27:01 [ 4] [ 12] [000010000000] +13:27:01 [ 7] [ 10] [0320132657] +13:27:01 [ 11] [ 6] [757142] +13:27:01 [ 12] [ 6] [132657] +13:27:01 [ 13] [ 4] [0320] +13:27:01 [ 15] [ 4] [0320] +13:27:01 [ 18] [ 4] [6011] +13:27:01 [ 22] [ 3] [900] +13:27:01 [ 25] [ 2] [02] +13:27:01 [ 28] [ 9] [D00002000] +13:27:01 [ 32] [ 6] [621354] +13:27:01 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:27:01 [ 37] [ 12] [507904724314] +13:27:01 [ 41] [ 8] [18001100] +13:27:01 [ 42] [ 15] [NATIVE ] +13:27:01 [ 43] [ 40] [Ban Naxong May LAO] +13:27:01 [ 49] [ 3] [418] +13:27:01 [ 52] [ 16] [E329560C28E4EB85] +13:27:01 ============================================================================ +13:27:01 + + +waiting on router queue for slot.... +13:27:01 Sending to : +13:27:01 ============================================================================ +13:27:01 Sending to : +13:27:01 ============================================================================ +13:27:02 ============================================================================ +13:27:02 Slot Id : <319> +13:27:02 Transaction Type : RESPONSE +13:27:02 Received From : +13:27:02 ============================================================================ +13:27:02 FNo. Len. Field Value +13:27:02 ============================================================================ +13:27:02 [ 1] [ 4] [0210] +13:27:02 [ 2] [ 16] [6213545000308746] +13:27:02 [ 3] [ 6] [010000] +13:27:02 [ 4] [ 12] [000100000000] +13:27:02 [ 7] [ 10] [0320132451] +13:27:02 [ 11] [ 6] [946488] +13:27:02 [ 12] [ 6] [132451] +13:27:02 [ 13] [ 4] [0320] +13:27:02 [ 15] [ 4] [0320] +13:27:02 [ 18] [ 4] [6011] +13:27:02 [ 19] [ 3] [418] +13:27:02 [ 32] [ 6] [668899] +13:27:02 [ 35] [ 32] [6213545000308746=491212010874560] +13:27:02 [ 37] [ 12] [507902150998] +13:27:02 [ 38] [ 6] [022799] +13:27:02 [ 39] [ 2] [00] +13:27:02 [ 41] [ 8] [03020025] +13:27:02 [ 49] [ 3] [418] +13:27:02 [ 54] [ 40] [0001418C0001279048560002418C000127904856] +13:27:02 ============================================================================ +13:27:02 Sending to : +13:27:02 ============================================================================ +13:27:02 + + +waiting on router queue for slot.... +13:27:02 ============================================================================ +13:27:02 Slot Id : <357> +13:27:02 Transaction Type : REQUEST +13:27:02 Received From : +13:27:02 ============================================================================ +13:27:02 FNo. Len. Field Value +13:27:02 ============================================================================ +13:27:02 [ 1] [ 4] [0200] +13:27:02 [ 2] [ 16] [6688990030009680] +13:27:02 [ 3] [ 6] [010000] +13:27:02 [ 4] [ 12] [000010000000] +13:27:02 [ 7] [ 10] [0320132657] +13:27:02 [ 11] [ 6] [757142] +13:27:02 [ 12] [ 6] [132657] +13:27:02 [ 13] [ 4] [0320] +13:27:02 [ 15] [ 4] [0320] +13:27:02 [ 18] [ 4] [6011] +13:27:02 [ 22] [ 3] [900] +13:27:02 [ 25] [ 2] [02] +13:27:02 [ 28] [ 9] [D00002000] +13:27:02 [ 32] [ 6] [621354] +13:27:02 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:27:02 [ 37] [ 12] [507904724314] +13:27:02 [ 41] [ 8] [18001100] +13:27:02 [ 42] [ 15] [NATIVE ] +13:27:02 [ 43] [ 40] [Ban Naxong May LAO] +13:27:02 [ 49] [ 3] [418] +13:27:02 [ 52] [ 16] [E329560C28E4EB85] +13:27:02 ============================================================================ +13:27:02 + + +waiting on router queue for slot.... +13:27:02 Sending to : +13:27:02 ============================================================================ +13:27:02 ============================================================================ +13:27:02 Slot Id : <357> +13:27:02 Transaction Type : REQUEST +13:27:02 Received From : +13:27:02 ============================================================================ +13:27:02 FNo. Len. Field Value +13:27:02 ============================================================================ +13:27:02 [ 1] [ 4] [0200] +13:27:02 [ 2] [ 16] [6688990030009680] +13:27:02 [ 3] [ 6] [010000] +13:27:02 [ 4] [ 12] [000010000000] +13:27:02 [ 7] [ 10] [0320132657] +13:27:02 [ 11] [ 6] [757142] +13:27:02 [ 12] [ 6] [132657] +13:27:02 [ 13] [ 4] [0320] +13:27:02 [ 15] [ 4] [0320] +13:27:02 [ 18] [ 4] [6011] +13:27:02 [ 22] [ 3] [900] +13:27:02 [ 25] [ 2] [02] +13:27:02 [ 28] [ 9] [D00002000] +13:27:02 [ 32] [ 6] [621354] +13:27:02 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:27:02 [ 37] [ 12] [507904724314] +13:27:02 [ 41] [ 8] [18001100] +13:27:02 [ 42] [ 15] [NATIVE ] +13:27:02 [ 43] [ 40] [Ban Naxong May LAO] +13:27:02 [ 49] [ 3] [418] +13:27:02 [ 52] [ 16] [08D59348231280E0] +13:27:02 ============================================================================ +13:27:02 + + +waiting on router queue for slot.... +13:27:02 Sending to : <4> +13:27:02 ============================================================================ +13:27:03 ============================================================================ +13:27:03 Slot Id : <357> +13:27:03 Transaction Type : RESPONSE +13:27:03 Received From : +13:27:03 ============================================================================ +13:27:03 FNo. Len. Field Value +13:27:03 ============================================================================ +13:27:03 [ 1] [ 4] [0210] +13:27:03 [ 2] [ 16] [6688990030009680] +13:27:03 [ 3] [ 6] [010000] +13:27:03 [ 4] [ 12] [000010000000] +13:27:03 [ 11] [ 6] [757142] +13:27:03 [ 12] [ 6] [132657] +13:27:03 [ 15] [ 4] [0320] +13:27:03 [ 18] [ 4] [6011] +13:27:03 [ 32] [ 6] [621354] +13:27:03 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:27:03 [ 37] [ 12] [507904724314] +13:27:03 [ 38] [ 6] [742359] +13:27:03 [ 39] [ 2] [00] +13:27:03 [ 41] [ 8] [18001100] +13:27:03 [ 49] [ 3] [418] +13:27:03 [ 54] [ 20] [0002418C000013875559] +13:27:03 ============================================================================ +13:27:03 Sending to : +13:27:03 ============================================================================ +13:27:03 + + +waiting on router queue for slot.... +13:27:03 ============================================================================ +13:27:03 Slot Id : <319> +13:27:03 Transaction Type : RESPONSE +13:27:03 Received From : +13:27:03 ============================================================================ +13:27:03 FNo. Len. Field Value +13:27:03 ============================================================================ +13:27:03 [ 1] [ 4] [0210] +13:27:03 [ 2] [ 16] [6213545000308746] +13:27:03 [ 3] [ 6] [010000] +13:27:03 [ 4] [ 12] [000100000000] +13:27:03 [ 7] [ 10] [0320132451] +13:27:03 [ 11] [ 6] [946488] +13:27:03 [ 12] [ 6] [132451] +13:27:03 [ 13] [ 4] [0320] +13:27:03 [ 15] [ 4] [0320] +13:27:03 [ 18] [ 4] [6011] +13:27:03 [ 19] [ 3] [418] +13:27:03 [ 32] [ 6] [668899] +13:27:03 [ 35] [ 32] [6213545000308746=491212010874560] +13:27:03 [ 37] [ 12] [507902150998] +13:27:03 [ 38] [ 6] [022799] +13:27:03 [ 39] [ 2] [00] +13:27:03 [ 41] [ 8] [03020025] +13:27:03 [ 49] [ 3] [418] +13:27:03 [ 54] [ 40] [0001418C0001279048560002418C000127904856] +13:27:03 ============================================================================ +13:27:03 Calculate Source COMM Id = 4 +13:27:03 ============================================================================ +13:27:03 + + +waiting on router queue for slot.... +13:27:04 ============================================================================ +13:27:04 Slot Id : <356> +13:27:04 Transaction Type : REQUEST +13:27:04 Received From : +13:27:04 ============================================================================ +13:27:04 FNo. Len. Field Value +13:27:04 ============================================================================ +13:27:04 [ 1] [ 4] [0200] +13:27:04 [ 2] [ 16] [6213548000144046] +13:27:04 [ 3] [ 6] [010000] +13:27:04 [ 4] [ 12] [000010000000] +13:27:04 [ 7] [ 10] [0320132455] +13:27:04 [ 11] [ 6] [946493] +13:27:04 [ 12] [ 6] [132455] +13:27:04 [ 13] [ 4] [0320] +13:27:04 [ 15] [ 4] [0320] +13:27:04 [ 18] [ 4] [6011] +13:27:04 [ 19] [ 3] [418] +13:27:04 [ 22] [ 3] [021] +13:27:04 [ 25] [ 2] [01] +13:27:04 [ 28] [ 9] [D00002000] +13:27:04 [ 32] [ 6] [668899] +13:27:04 [ 35] [ 32] [6213548000144046=131112014404767] +13:27:04 [ 37] [ 12] [507901215071] +13:27:04 [ 41] [ 8] [03020013] +13:27:04 [ 42] [ 15] [APT ] +13:27:04 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +13:27:04 [ 49] [ 3] [418] +13:27:04 [ 52] [ 16] [4832CCD732EA4238] +13:27:04 ============================================================================ +13:27:04 + + +waiting on router queue for slot.... +13:27:04 Sending to : +13:27:04 ============================================================================ +13:27:04 Sending to : +13:27:04 ============================================================================ +13:27:04 ============================================================================ +13:27:04 Slot Id : <356> +13:27:04 Transaction Type : REQUEST +13:27:04 Received From : +13:27:04 ============================================================================ +13:27:04 FNo. Len. Field Value +13:27:04 ============================================================================ +13:27:04 [ 1] [ 4] [0200] +13:27:04 [ 2] [ 16] [6213548000144046] +13:27:04 [ 3] [ 6] [010000] +13:27:04 [ 4] [ 12] [000010000000] +13:27:04 [ 7] [ 10] [0320132455] +13:27:04 [ 11] [ 6] [946493] +13:27:04 [ 12] [ 6] [132455] +13:27:04 [ 13] [ 4] [0320] +13:27:04 [ 15] [ 4] [0320] +13:27:04 [ 18] [ 4] [6011] +13:27:04 [ 19] [ 3] [418] +13:27:04 [ 22] [ 3] [021] +13:27:04 [ 25] [ 2] [01] +13:27:04 [ 28] [ 9] [D00002000] +13:27:04 [ 32] [ 6] [668899] +13:27:04 [ 35] [ 32] [6213548000144046=131112014404767] +13:27:04 [ 37] [ 12] [507901215071] +13:27:04 [ 41] [ 8] [03020013] +13:27:04 [ 42] [ 15] [APT ] +13:27:04 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +13:27:04 [ 49] [ 3] [418] +13:27:04 [ 52] [ 16] [4832CCD732EA4238] +13:27:04 ============================================================================ +13:27:04 + + +waiting on router queue for slot.... +13:27:04 Sending to : +13:27:04 ============================================================================ +13:27:04 ============================================================================ +13:27:04 Slot Id : <356> +13:27:04 Transaction Type : REQUEST +13:27:04 Received From : +13:27:04 ============================================================================ +13:27:04 FNo. Len. Field Value +13:27:04 ============================================================================ +13:27:04 [ 1] [ 4] [0200] +13:27:04 [ 2] [ 16] [6213548000144046] +13:27:04 [ 3] [ 6] [010000] +13:27:04 [ 4] [ 12] [000010000000] +13:27:04 [ 7] [ 10] [0320132455] +13:27:04 [ 11] [ 6] [946493] +13:27:04 [ 12] [ 6] [132455] +13:27:04 [ 13] [ 4] [0320] +13:27:04 [ 15] [ 4] [0320] +13:27:04 [ 18] [ 4] [6011] +13:27:04 [ 19] [ 3] [418] +13:27:04 [ 22] [ 3] [021] +13:27:04 [ 25] [ 2] [01] +13:27:04 [ 28] [ 9] [D00002000] +13:27:04 [ 32] [ 6] [668899] +13:27:04 [ 35] [ 32] [6213548000144046=131112014404767] +13:27:04 [ 37] [ 12] [507901215071] +13:27:04 [ 41] [ 8] [03020013] +13:27:04 [ 42] [ 15] [APT ] +13:27:04 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +13:27:04 [ 49] [ 3] [418] +13:27:04 [ 52] [ 16] [FD810156E8F0BEB7] +13:27:04 ============================================================================ +13:27:04 + + +waiting on router queue for slot.... +13:27:04 Sending to : <0> +13:27:04 ============================================================================ +13:27:04 ============================================================================ +13:27:04 Slot Id : <330> +13:27:04 Transaction Type : REQUEST +13:27:04 Received From : +13:27:04 ============================================================================ +13:27:04 FNo. Len. Field Value +13:27:04 ============================================================================ +13:27:04 [ 1] [ 4] [0200] +13:27:04 [ 2] [ 16] [6213544001210860] +13:27:04 [ 3] [ 6] [301000] +13:27:04 [ 7] [ 10] [0320062610] +13:27:04 [ 11] [ 6] [269296] +13:27:04 [ 12] [ 6] [132610] +13:27:04 [ 13] [ 4] [0320] +13:27:04 [ 14] [ 4] [4912] +13:27:04 [ 15] [ 4] [0320] +13:27:04 [ 18] [ 4] [6011] +13:27:04 [ 19] [ 3] [418] +13:27:04 [ 22] [ 3] [021] +13:27:04 [ 25] [ 2] [01] +13:27:04 [ 32] [ 6] [180893] +13:27:04 [ 35] [ 32] [6213544001210860=491212011086793] +13:27:04 [ 37] [ 12] [507906269296] +13:27:04 [ 41] [ 8] [0118UDBR] +13:27:04 [ 42] [ 15] [999999 ] +13:27:04 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +13:27:04 [ 49] [ 3] [418] +13:27:04 [ 52] [ 16] [F96AB26599073977] +13:27:04 ============================================================================ +13:27:04 + + +waiting on router queue for slot.... +13:27:04 Sending to : +13:27:04 ============================================================================ +13:27:04 Sending to : +13:27:04 ============================================================================ +13:27:05 ============================================================================ +13:27:05 Slot Id : <357> +13:27:05 Transaction Type : RESPONSE +13:27:05 Received From : +13:27:05 ============================================================================ +13:27:05 FNo. Len. Field Value +13:27:05 ============================================================================ +13:27:05 [ 1] [ 4] [0210] +13:27:05 [ 2] [ 16] [6688990030009680] +13:27:05 [ 3] [ 6] [010000] +13:27:05 [ 4] [ 12] [000010000000] +13:27:05 [ 11] [ 6] [757142] +13:27:05 [ 12] [ 6] [132657] +13:27:05 [ 15] [ 4] [0320] +13:27:05 [ 18] [ 4] [6011] +13:27:05 [ 32] [ 6] [621354] +13:27:05 [ 35] [ 37] [6688990030009680=98011261940968100000] +13:27:05 [ 37] [ 12] [507904724314] +13:27:05 [ 38] [ 6] [742359] +13:27:05 [ 39] [ 2] [00] +13:27:05 [ 41] [ 8] [18001100] +13:27:05 [ 49] [ 3] [418] +13:27:05 [ 54] [ 20] [0002418C000013875559] +13:27:05 ============================================================================ +13:27:05 Calculate Source COMM Id = 0 +13:27:05 ============================================================================ +13:27:05 + + +waiting on router queue for slot.... +13:27:05 ============================================================================ +13:27:05 Slot Id : <330> +13:27:05 Transaction Type : REQUEST +13:27:05 Received From : +13:27:05 ============================================================================ +13:27:05 FNo. Len. Field Value +13:27:05 ============================================================================ +13:27:05 [ 1] [ 4] [0200] +13:27:05 [ 2] [ 16] [6213544001210860] +13:27:05 [ 3] [ 6] [301000] +13:27:05 [ 7] [ 10] [0320062610] +13:27:05 [ 11] [ 6] [269296] +13:27:05 [ 12] [ 6] [132610] +13:27:05 [ 13] [ 4] [0320] +13:27:05 [ 14] [ 4] [4912] +13:27:05 [ 15] [ 4] [0320] +13:27:05 [ 18] [ 4] [6011] +13:27:05 [ 19] [ 3] [418] +13:27:05 [ 22] [ 3] [021] +13:27:05 [ 25] [ 2] [01] +13:27:05 [ 32] [ 6] [180893] +13:27:05 [ 35] [ 32] [6213544001210860=491212011086793] +13:27:05 [ 37] [ 12] [507906269296] +13:27:05 [ 41] [ 8] [0118UDBR] +13:27:05 [ 42] [ 15] [999999 ] +13:27:05 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +13:27:05 [ 49] [ 3] [418] +13:27:05 [ 52] [ 16] [F96AB26599073977] +13:27:05 ============================================================================ +13:27:05 + + +waiting on router queue for slot.... +13:27:05 Sending to : +13:27:05 ============================================================================ +13:27:05 ============================================================================ +13:27:05 Slot Id : <330> +13:27:05 Transaction Type : REQUEST +13:27:05 Received From : +13:27:05 ============================================================================ +13:27:05 FNo. Len. Field Value +13:27:05 ============================================================================ +13:27:05 [ 1] [ 4] [0200] +13:27:05 [ 2] [ 16] [6213544001210860] +13:27:05 [ 3] [ 6] [301000] +13:27:05 [ 7] [ 10] [0320062610] +13:27:05 [ 11] [ 6] [269296] +13:27:05 [ 12] [ 6] [132610] +13:27:05 [ 13] [ 4] [0320] +13:27:05 [ 14] [ 4] [4912] +13:27:05 [ 15] [ 4] [0320] +13:27:05 [ 18] [ 4] [6011] +13:27:05 [ 19] [ 3] [418] +13:27:05 [ 22] [ 3] [021] +13:27:05 [ 25] [ 2] [01] +13:27:05 [ 32] [ 6] [180893] +13:27:05 [ 35] [ 32] [6213544001210860=491212011086793] +13:27:05 [ 37] [ 12] [507906269296] +13:27:05 [ 41] [ 8] [0118UDBR] +13:27:05 [ 42] [ 15] [999999 ] +13:27:05 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +13:27:05 [ 49] [ 3] [418] +13:27:05 [ 52] [ 16] [96C0B0DAC20EAB2B] +13:27:05 ============================================================================ +13:27:05 + + +waiting on router queue for slot.... +13:27:05 Sending to : <0> +13:27:05 ============================================================================ +13:27:06 ============================================================================ +13:27:06 Slot Id : <356> +13:27:06 Transaction Type : RESPONSE +13:27:06 Received From : +13:27:06 ============================================================================ +13:27:06 FNo. Len. Field Value +13:27:06 ============================================================================ +13:27:06 [ 1] [ 4] [0210] +13:27:06 [ 2] [ 16] [6213548000144046] +13:27:06 [ 3] [ 6] [010000] +13:27:06 [ 4] [ 12] [000010000000] +13:27:06 [ 7] [ 10] [0320132455] +13:27:06 [ 11] [ 6] [946493] +13:27:06 [ 12] [ 6] [132455] +13:27:06 [ 13] [ 4] [0320] +13:27:06 [ 15] [ 4] [0320] +13:27:06 [ 18] [ 4] [6011] +13:27:06 [ 19] [ 3] [418] +13:27:06 [ 32] [ 6] [668899] +13:27:06 [ 35] [ 32] [6213548000144046=131112014404767] +13:27:06 [ 37] [ 12] [507901215071] +13:27:06 [ 38] [ 6] [946493] +13:27:06 [ 39] [ 2] [51] +13:27:06 [ 41] [ 8] [03020013] +13:27:06 [ 49] [ 3] [418] +13:27:06 [ 54] [ 40] [0001418C0000094535710002418C000009453571] +13:27:06 ============================================================================ +13:27:06 Sending to : +13:27:06 ============================================================================ +13:27:06 + + +waiting on router queue for slot.... +13:27:07 ============================================================================ +13:27:07 Slot Id : <330> +13:27:07 Transaction Type : RESPONSE +13:27:07 Received From : +13:27:07 ============================================================================ +13:27:07 FNo. Len. Field Value +13:27:07 ============================================================================ +13:27:07 [ 1] [ 4] [0210] +13:27:07 [ 2] [ 16] [6213544001210860] +13:27:07 [ 3] [ 6] [301000] +13:27:07 [ 4] [ 12] [000000000000] +13:27:07 [ 7] [ 10] [0320062610] +13:27:07 [ 11] [ 6] [269296] +13:27:07 [ 12] [ 6] [132610] +13:27:07 [ 13] [ 4] [0320] +13:27:07 [ 15] [ 4] [0320] +13:27:07 [ 18] [ 4] [6011] +13:27:07 [ 19] [ 3] [418] +13:27:07 [ 32] [ 6] [180893] +13:27:07 [ 35] [ 32] [6213544001210860=491212011086793] +13:27:07 [ 37] [ 12] [507906269296] +13:27:07 [ 38] [ 6] [932510] +13:27:07 [ 39] [ 2] [00] +13:27:07 [ 41] [ 8] [0118UDBR] +13:27:07 [ 49] [ 3] [418] +13:27:07 [ 54] [ 40] [1001418C0000555021031002418C000055502103] +13:27:07 ============================================================================ +13:27:07 Sending to : +13:27:07 ============================================================================ +13:27:07 + + +waiting on router queue for slot.... +13:27:08 ============================================================================ +13:27:08 Slot Id : <356> +13:27:08 Transaction Type : RESPONSE +13:27:08 Received From : +13:27:08 ============================================================================ +13:27:08 FNo. Len. Field Value +13:27:08 ============================================================================ +13:27:08 [ 1] [ 4] [0210] +13:27:08 [ 2] [ 16] [6213548000144046] +13:27:08 [ 3] [ 6] [010000] +13:27:08 [ 4] [ 12] [000010000000] +13:27:08 [ 7] [ 10] [0320132455] +13:27:08 [ 11] [ 6] [946493] +13:27:08 [ 12] [ 6] [132455] +13:27:08 [ 13] [ 4] [0320] +13:27:08 [ 15] [ 4] [0320] +13:27:08 [ 18] [ 4] [6011] +13:27:08 [ 19] [ 3] [418] +13:27:08 [ 32] [ 6] [668899] +13:27:08 [ 35] [ 32] [6213548000144046=131112014404767] +13:27:08 [ 37] [ 12] [507901215071] +13:27:08 [ 38] [ 6] [946493] +13:27:08 [ 39] [ 2] [51] +13:27:08 [ 41] [ 8] [03020013] +13:27:08 [ 49] [ 3] [418] +13:27:08 [ 54] [ 40] [0001418C0000094535710002418C000009453571] +13:27:08 ============================================================================ +13:27:08 Calculate Source COMM Id = 4 +13:27:08 ============================================================================ +13:27:08 + + +waiting on router queue for slot.... +13:27:09 ============================================================================ +13:27:09 Slot Id : <330> +13:27:09 Transaction Type : RESPONSE +13:27:09 Received From : +13:27:09 ============================================================================ +13:27:09 FNo. Len. Field Value +13:27:09 ============================================================================ +13:27:09 [ 1] [ 4] [0210] +13:27:09 [ 2] [ 16] [6213544001210860] +13:27:09 [ 3] [ 6] [301000] +13:27:09 [ 4] [ 12] [000000000000] +13:27:09 [ 7] [ 10] [0320062610] +13:27:09 [ 11] [ 6] [269296] +13:27:09 [ 12] [ 6] [132610] +13:27:09 [ 13] [ 4] [0320] +13:27:09 [ 15] [ 4] [0320] +13:27:09 [ 18] [ 4] [6011] +13:27:09 [ 19] [ 3] [418] +13:27:09 [ 32] [ 6] [180893] +13:27:09 [ 35] [ 32] [6213544001210860=491212011086793] +13:27:09 [ 37] [ 12] [507906269296] +13:27:09 [ 38] [ 6] [932510] +13:27:09 [ 39] [ 2] [00] +13:27:09 [ 41] [ 8] [0118UDBR] +13:27:09 [ 49] [ 3] [418] +13:27:09 [ 54] [ 40] [1001418C0000555021031002418C000055502103] +13:27:09 ============================================================================ +13:27:09 Calculate Source COMM Id = 2 +13:27:09 ============================================================================ +13:27:09 + + +waiting on router queue for slot.... +13:27:17 ============================================================================ +13:27:17 Slot Id : <332> +13:27:17 Transaction Type : REQUEST +13:27:17 Received From : +13:27:17 ============================================================================ +13:27:17 FNo. Len. Field Value +13:27:17 ============================================================================ +13:27:17 [ 1] [ 4] [0200] +13:27:17 [ 2] [ 16] [6213548000144046] +13:27:17 [ 3] [ 6] [300000] +13:27:17 [ 4] [ 12] [000000000000] +13:27:17 [ 7] [ 10] [0320132508] +13:27:17 [ 11] [ 6] [946502] +13:27:17 [ 12] [ 6] [132508] +13:27:17 [ 13] [ 4] [0320] +13:27:17 [ 15] [ 4] [0320] +13:27:17 [ 18] [ 4] [6011] +13:27:17 [ 19] [ 3] [418] +13:27:17 [ 22] [ 3] [021] +13:27:17 [ 25] [ 2] [01] +13:27:17 [ 28] [ 9] [D00000000] +13:27:17 [ 32] [ 6] [668899] +13:27:17 [ 35] [ 32] [6213548000144046=131112014404767] +13:27:17 [ 37] [ 12] [507901215072] +13:27:17 [ 41] [ 8] [03020013] +13:27:17 [ 42] [ 15] [APT ] +13:27:17 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +13:27:17 [ 49] [ 3] [418] +13:27:17 [ 52] [ 16] [4832CCD732EA4238] +13:27:17 ============================================================================ +13:27:17 + + +waiting on router queue for slot.... +13:27:17 Sending to : +13:27:17 ============================================================================ +13:27:17 Sending to : +13:27:17 ============================================================================ +13:27:18 ============================================================================ +13:27:18 Slot Id : <332> +13:27:18 Transaction Type : REQUEST +13:27:18 Received From : +13:27:18 ============================================================================ +13:27:18 FNo. Len. Field Value +13:27:18 ============================================================================ +13:27:18 [ 1] [ 4] [0200] +13:27:18 [ 2] [ 16] [6213548000144046] +13:27:18 [ 3] [ 6] [300000] +13:27:18 [ 4] [ 12] [000000000000] +13:27:18 [ 7] [ 10] [0320132508] +13:27:18 [ 11] [ 6] [946502] +13:27:18 [ 12] [ 6] [132508] +13:27:18 [ 13] [ 4] [0320] +13:27:18 [ 15] [ 4] [0320] +13:27:18 [ 18] [ 4] [6011] +13:27:18 [ 19] [ 3] [418] +13:27:18 [ 22] [ 3] [021] +13:27:18 [ 25] [ 2] [01] +13:27:18 [ 28] [ 9] [D00000000] +13:27:18 [ 32] [ 6] [668899] +13:27:18 [ 35] [ 32] [6213548000144046=131112014404767] +13:27:18 [ 37] [ 12] [507901215072] +13:27:18 [ 41] [ 8] [03020013] +13:27:18 [ 42] [ 15] [APT ] +13:27:18 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +13:27:18 [ 49] [ 3] [418] +13:27:18 [ 52] [ 16] [4832CCD732EA4238] +13:27:18 ============================================================================ +13:27:18 + + +waiting on router queue for slot.... +13:27:18 Sending to : +13:27:18 ============================================================================ +13:27:18 ============================================================================ +13:27:18 Slot Id : <332> +13:27:18 Transaction Type : REQUEST +13:27:18 Received From : +13:27:18 ============================================================================ +13:27:18 FNo. Len. Field Value +13:27:18 ============================================================================ +13:27:18 [ 1] [ 4] [0200] +13:27:18 [ 2] [ 16] [6213548000144046] +13:27:18 [ 3] [ 6] [300000] +13:27:18 [ 4] [ 12] [000000000000] +13:27:18 [ 7] [ 10] [0320132508] +13:27:18 [ 11] [ 6] [946502] +13:27:18 [ 12] [ 6] [132508] +13:27:18 [ 13] [ 4] [0320] +13:27:18 [ 15] [ 4] [0320] +13:27:18 [ 18] [ 4] [6011] +13:27:18 [ 19] [ 3] [418] +13:27:18 [ 22] [ 3] [021] +13:27:18 [ 25] [ 2] [01] +13:27:18 [ 28] [ 9] [D00000000] +13:27:18 [ 32] [ 6] [668899] +13:27:18 [ 35] [ 32] [6213548000144046=131112014404767] +13:27:18 [ 37] [ 12] [507901215072] +13:27:18 [ 41] [ 8] [03020013] +13:27:18 [ 42] [ 15] [APT ] +13:27:18 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +13:27:18 [ 49] [ 3] [418] +13:27:18 [ 52] [ 16] [FD810156E8F0BEB7] +13:27:18 ============================================================================ +13:27:18 + + +waiting on router queue for slot.... +13:27:18 Sending to : <0> +13:27:18 ============================================================================ +13:27:18 ============================================================================ +13:27:18 Slot Id : <332> +13:27:18 Transaction Type : RESPONSE +13:27:18 Received From : +13:27:18 ============================================================================ +13:27:18 FNo. Len. Field Value +13:27:18 ============================================================================ +13:27:18 [ 1] [ 4] [0210] +13:27:18 [ 2] [ 16] [6213548000144046] +13:27:18 [ 3] [ 6] [300000] +13:27:18 [ 4] [ 12] [000000000000] +13:27:18 [ 7] [ 10] [0320132508] +13:27:18 [ 11] [ 6] [946502] +13:27:18 [ 12] [ 6] [132508] +13:27:18 [ 13] [ 4] [0320] +13:27:18 [ 15] [ 4] [0320] +13:27:18 [ 18] [ 4] [6011] +13:27:18 [ 19] [ 3] [418] +13:27:18 [ 32] [ 6] [668899] +13:27:18 [ 35] [ 32] [6213548000144046=131112014404767] +13:27:18 [ 37] [ 12] [507901215072] +13:27:18 [ 38] [ 6] [865621] +13:27:18 [ 39] [ 2] [00] +13:27:18 [ 41] [ 8] [03020013] +13:27:18 [ 49] [ 3] [418] +13:27:18 [ 54] [ 40] [0001418C0000094535710002418C000009453571] +13:27:18 ============================================================================ +13:27:18 Sending to : +13:27:18 ============================================================================ +13:27:18 + + +waiting on router queue for slot.... +13:27:20 ============================================================================ +13:27:20 Slot Id : <332> +13:27:20 Transaction Type : RESPONSE +13:27:20 Received From : +13:27:20 ============================================================================ +13:27:20 FNo. Len. Field Value +13:27:20 ============================================================================ +13:27:20 [ 1] [ 4] [0210] +13:27:20 [ 2] [ 16] [6213548000144046] +13:27:20 [ 3] [ 6] [300000] +13:27:20 [ 4] [ 12] [000000000000] +13:27:20 [ 7] [ 10] [0320132508] +13:27:20 [ 11] [ 6] [946502] +13:27:20 [ 12] [ 6] [132508] +13:27:20 [ 13] [ 4] [0320] +13:27:20 [ 15] [ 4] [0320] +13:27:20 [ 18] [ 4] [6011] +13:27:20 [ 19] [ 3] [418] +13:27:20 [ 32] [ 6] [668899] +13:27:20 [ 35] [ 32] [6213548000144046=131112014404767] +13:27:20 [ 37] [ 12] [507901215072] +13:27:20 [ 38] [ 6] [865621] +13:27:20 [ 39] [ 2] [00] +13:27:20 [ 41] [ 8] [03020013] +13:27:20 [ 49] [ 3] [418] +13:27:20 [ 54] [ 40] [0001418C0000094535710002418C000009453571] +13:27:20 ============================================================================ +13:27:20 Calculate Source COMM Id = 4 +13:27:20 ============================================================================ +13:27:20 + + +waiting on router queue for slot.... +13:27:23 ============================================================================ +13:27:23 Slot Id : <365> +13:27:23 Transaction Type : REQUEST +13:27:23 Received From : +13:27:23 ============================================================================ +13:27:23 FNo. Len. Field Value +13:27:23 ============================================================================ +13:27:23 [ 1] [ 4] [0800] +13:27:23 [ 7] [ 10] [0320062629] +13:27:23 [ 11] [ 6] [156553] +13:27:23 [ 70] [ 3] [301] +13:27:23 ============================================================================ +13:27:23 + + +waiting on router queue for slot.... +13:27:23 Sending to : +13:27:23 ============================================================================ +13:27:23 ============================================================================ +13:27:23 Slot Id : <365> +13:27:23 Transaction Type : RESPONSE +13:27:23 Received From : +13:27:23 ============================================================================ +13:27:23 FNo. Len. Field Value +13:27:23 ============================================================================ +13:27:23 [ 1] [ 4] [0810] +13:27:23 [ 7] [ 10] [0320062629] +13:27:23 [ 11] [ 6] [156553] +13:27:23 [ 39] [ 2] [00] +13:27:23 [ 70] [ 3] [301] +13:27:23 ============================================================================ +13:27:23 Calculate Source COMM Id = 2 +13:27:23 ============================================================================ +13:27:23 + + +waiting on router queue for slot.... +13:27:27 ============================================================================ +13:27:27 Slot Id : <366> +13:27:27 Transaction Type : REQUEST +13:27:27 Received From : +13:27:27 ============================================================================ +13:27:27 FNo. Len. Field Value +13:27:27 ============================================================================ +13:27:27 [ 1] [ 4] [0200] +13:27:27 [ 2] [ 16] [6688990104779903] +13:27:27 [ 3] [ 6] [011000] +13:27:27 [ 4] [ 12] [000100000000] +13:27:27 [ 7] [ 10] [0320132722] +13:27:27 [ 11] [ 6] [757232] +13:27:27 [ 12] [ 6] [132722] +13:27:27 [ 13] [ 4] [0320] +13:27:27 [ 15] [ 4] [0320] +13:27:27 [ 18] [ 4] [6011] +13:27:27 [ 22] [ 3] [900] +13:27:27 [ 25] [ 2] [02] +13:27:27 [ 28] [ 9] [D00002000] +13:27:27 [ 32] [ 6] [621354] +13:27:27 [ 35] [ 37] [6688990104779903=43051231990398700000] +13:27:27 [ 37] [ 12] [507902827029] +13:27:27 [ 41] [ 8] [01007600] +13:27:27 [ 42] [ 15] [NATIVE ] +13:27:27 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +13:27:27 [ 49] [ 3] [418] +13:27:27 [ 52] [ 16] [DFBA9B887605EA20] +13:27:27 ============================================================================ +13:27:27 + + +waiting on router queue for slot.... +13:27:27 Sending to : +13:27:27 ============================================================================ +13:27:27 Sending to : +13:27:27 ============================================================================ +13:27:27 ============================================================================ +13:27:27 Slot Id : <366> +13:27:27 Transaction Type : REQUEST +13:27:27 Received From : +13:27:27 ============================================================================ +13:27:27 FNo. Len. Field Value +13:27:27 ============================================================================ +13:27:27 [ 1] [ 4] [0200] +13:27:27 [ 2] [ 16] [6688990104779903] +13:27:27 [ 3] [ 6] [011000] +13:27:27 [ 4] [ 12] [000100000000] +13:27:27 [ 7] [ 10] [0320132722] +13:27:27 [ 11] [ 6] [757232] +13:27:27 [ 12] [ 6] [132722] +13:27:27 [ 13] [ 4] [0320] +13:27:27 [ 15] [ 4] [0320] +13:27:27 [ 18] [ 4] [6011] +13:27:27 [ 22] [ 3] [900] +13:27:27 [ 25] [ 2] [02] +13:27:27 [ 28] [ 9] [D00002000] +13:27:27 [ 32] [ 6] [621354] +13:27:27 [ 35] [ 37] [6688990104779903=43051231990398700000] +13:27:27 [ 37] [ 12] [507902827029] +13:27:27 [ 41] [ 8] [01007600] +13:27:27 [ 42] [ 15] [NATIVE ] +13:27:27 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +13:27:27 [ 49] [ 3] [418] +13:27:27 [ 52] [ 16] [DFBA9B887605EA20] +13:27:27 ============================================================================ +13:27:27 + + +waiting on router queue for slot.... +13:27:27 Sending to : +13:27:27 ============================================================================ +13:27:27 ============================================================================ +13:27:27 Slot Id : <366> +13:27:27 Transaction Type : REQUEST +13:27:27 Received From : +13:27:27 ============================================================================ +13:27:27 FNo. Len. Field Value +13:27:27 ============================================================================ +13:27:27 [ 1] [ 4] [0200] +13:27:27 [ 2] [ 16] [6688990104779903] +13:27:27 [ 3] [ 6] [011000] +13:27:27 [ 4] [ 12] [000100000000] +13:27:27 [ 7] [ 10] [0320132722] +13:27:27 [ 11] [ 6] [757232] +13:27:27 [ 12] [ 6] [132722] +13:27:27 [ 13] [ 4] [0320] +13:27:27 [ 15] [ 4] [0320] +13:27:27 [ 18] [ 4] [6011] +13:27:27 [ 22] [ 3] [900] +13:27:27 [ 25] [ 2] [02] +13:27:27 [ 28] [ 9] [D00002000] +13:27:27 [ 32] [ 6] [621354] +13:27:27 [ 35] [ 37] [6688990104779903=43051231990398700000] +13:27:27 [ 37] [ 12] [507902827029] +13:27:27 [ 41] [ 8] [01007600] +13:27:27 [ 42] [ 15] [NATIVE ] +13:27:27 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +13:27:27 [ 49] [ 3] [418] +13:27:27 [ 52] [ 16] [46DDCF3F7CC72627] +13:27:27 ============================================================================ +13:27:27 + + +waiting on router queue for slot.... +13:27:27 Sending to : <4> +13:27:27 ============================================================================ +13:27:28 ============================================================================ +13:27:28 Slot Id : <366> +13:27:28 Transaction Type : RESPONSE +13:27:28 Received From : +13:27:28 ============================================================================ +13:27:28 FNo. Len. Field Value +13:27:28 ============================================================================ +13:27:28 [ 1] [ 4] [0210] +13:27:28 [ 2] [ 16] [6688990104779903] +13:27:28 [ 3] [ 6] [011000] +13:27:28 [ 4] [ 12] [000100000000] +13:27:28 [ 11] [ 6] [757232] +13:27:28 [ 12] [ 6] [132722] +13:27:28 [ 15] [ 4] [0320] +13:27:28 [ 18] [ 4] [6011] +13:27:28 [ 32] [ 6] [621354] +13:27:28 [ 35] [ 37] [6688990104779903=43051231990398700000] +13:27:28 [ 37] [ 12] [507902827029] +13:27:28 [ 38] [ 6] [285257] +13:27:28 [ 39] [ 2] [00] +13:27:28 [ 41] [ 8] [01007600] +13:27:28 [ 49] [ 3] [418] +13:27:28 [ 54] [ 20] [1002840C000000917042] +13:27:28 ============================================================================ +13:27:28 Sending to : +13:27:28 ============================================================================ +13:27:28 + + +waiting on router queue for slot.... +13:27:30 ============================================================================ +13:27:30 Slot Id : <366> +13:27:30 Transaction Type : RESPONSE +13:27:30 Received From : +13:27:30 ============================================================================ +13:27:30 FNo. Len. Field Value +13:27:30 ============================================================================ +13:27:30 [ 1] [ 4] [0210] +13:27:30 [ 2] [ 16] [6688990104779903] +13:27:30 [ 3] [ 6] [011000] +13:27:30 [ 4] [ 12] [000100000000] +13:27:30 [ 11] [ 6] [757232] +13:27:30 [ 12] [ 6] [132722] +13:27:30 [ 15] [ 4] [0320] +13:27:30 [ 18] [ 4] [6011] +13:27:30 [ 32] [ 6] [621354] +13:27:30 [ 35] [ 37] [6688990104779903=43051231990398700000] +13:27:30 [ 37] [ 12] [507902827029] +13:27:30 [ 38] [ 6] [285257] +13:27:30 [ 39] [ 2] [00] +13:27:30 [ 41] [ 8] [01007600] +13:27:30 [ 49] [ 3] [418] +13:27:30 [ 54] [ 20] [1002840C000000917042] +13:27:30 ============================================================================ +13:27:30 Calculate Source COMM Id = 0 +13:27:30 ============================================================================ +13:27:30 + + +waiting on router queue for slot.... +13:27:36 ============================================================================ +13:27:36 Slot Id : <371> +13:27:36 Transaction Type : REQUEST +13:27:36 Received From : +13:27:36 ============================================================================ +13:27:36 FNo. Len. Field Value +13:27:36 ============================================================================ +13:27:36 [ 1] [ 4] [0800] +13:27:36 [ 7] [ 10] [0320062732] +13:27:36 [ 11] [ 6] [089864] +13:27:36 [ 37] [ 12] [507913089864] +13:27:36 [ 70] [ 3] [001] +13:27:36 ============================================================================ +13:27:36 + + +waiting on router queue for slot.... +13:27:36 Sending to : +13:27:36 ============================================================================ +13:27:36 ============================================================================ +13:27:36 Slot Id : <371> +13:27:36 Transaction Type : RESPONSE +13:27:36 Received From : +13:27:36 ============================================================================ +13:27:36 FNo. Len. Field Value +13:27:36 ============================================================================ +13:27:36 [ 1] [ 4] [0810] +13:27:36 [ 7] [ 10] [0320062732] +13:27:36 [ 11] [ 6] [089864] +13:27:36 [ 37] [ 12] [507913089864] +13:27:36 [ 39] [ 2] [00] +13:27:36 [ 70] [ 3] [001] +13:27:36 ============================================================================ +13:27:36 Calculate Source COMM Id = 0 +13:27:36 ============================================================================ +13:27:36 + + +waiting on router queue for slot.... +13:27:39 ============================================================================ +13:27:39 Slot Id : <313> +13:27:39 Transaction Type : REQUEST +13:27:39 Received From : +13:27:39 ============================================================================ +13:27:39 FNo. Len. Field Value +13:27:39 ============================================================================ +13:27:39 [ 1] [ 4] [0800] +13:27:39 [ 7] [ 10] [0320062647] +13:27:39 [ 11] [ 6] [156554] +13:27:39 [ 70] [ 3] [301] +13:27:39 ============================================================================ +13:27:39 + + +waiting on router queue for slot.... +13:27:39 Sending to : +13:27:39 ============================================================================ +13:27:39 ============================================================================ +13:27:39 Slot Id : <313> +13:27:39 Transaction Type : RESPONSE +13:27:39 Received From : +13:27:39 ============================================================================ +13:27:39 FNo. Len. Field Value +13:27:39 ============================================================================ +13:27:39 [ 1] [ 4] [0810] +13:27:39 [ 7] [ 10] [0320062647] +13:27:39 [ 11] [ 6] [156554] +13:27:39 [ 39] [ 2] [00] +13:27:39 [ 70] [ 3] [301] +13:27:39 ============================================================================ +13:27:39 Calculate Source COMM Id = 2 +13:27:39 ============================================================================ +13:27:39 + + +waiting on router queue for slot.... +13:27:40 ============================================================================ +13:27:40 Slot Id : <343> +13:27:40 Transaction Type : REQUEST +13:27:40 Received From : +13:27:40 ============================================================================ +13:27:40 FNo. Len. Field Value +13:27:40 ============================================================================ +13:27:40 [ 1] [ 4] [0800] +13:27:40 [ 2] [ 5] [02531] +13:27:40 [ 3] [ 6] [579138] +13:27:40 [ 7] [ 10] [0320062740] +13:27:40 [ 11] [ 6] [807193] +13:27:40 [ 15] [ 10] [0320062740] +13:27:40 [ 37] [ 11] [57913807193] +13:27:40 [ 70] [ 3] [001] +13:27:40 ============================================================================ +13:27:40 + + +waiting on router queue for slot.... +13:27:40 ============================================================================ +13:27:40 Slot Id : <343> +13:27:40 Transaction Type : RESPONSE +13:27:40 Received From : +13:27:40 ============================================================================ +13:27:40 FNo. Len. Field Value +13:27:40 ============================================================================ +13:27:40 [ 1] [ 4] [0810] +13:27:40 [ 7] [ 10] [0320062740] +13:27:40 [ 11] [ 6] [807193] +13:27:40 [ 15] [ 4] [0320] +13:27:40 [ 37] [ 12] [57913807193] +13:27:40 [ 39] [ 2] [00] +13:27:40 [ 70] [ 3] [001] +13:27:40 ============================================================================ +13:27:40 Sending to : +13:27:40 ============================================================================ +13:27:40 + + +waiting on router queue for slot.... +13:27:47 ============================================================================ +13:27:47 Slot Id : <378> +13:27:47 Transaction Type : REQUEST +13:27:47 Received From : +13:27:47 ============================================================================ +13:27:47 FNo. Len. Field Value +13:27:47 ============================================================================ +13:27:47 [ 0] [ 4] [0420] +13:27:47 [ 1] [ 4] [0420] +13:27:47 [ 2] [ 16] [1808930300021185] +13:27:47 [ 3] [ 6] [010000] +13:27:47 [ 4] [ 12] [000010000000] +13:27:47 [ 6] [ 12] [000010000000] +13:27:47 [ 7] [ 10] [0320132549] +13:27:47 [ 11] [ 6] [756879] +13:27:47 [ 12] [ 6] [132549] +13:27:47 [ 13] [ 4] [0320] +13:27:47 [ 15] [ 4] [0320] +13:27:47 [ 18] [ 4] [6011] +13:27:47 [ 22] [ 3] [900] +13:27:47 [ 25] [ 2] [02] +13:27:47 [ 28] [ 9] [D00002000] +13:27:47 [ 32] [ 6] [621354] +13:27:47 [ 35] [ 27] [1808930300021185=1803500967] +13:27:47 [ 37] [ 12] [507904898543] +13:27:47 [ 39] [ 2] [00] +13:27:47 [ 41] [ 8] [01012200] +13:27:47 [ 42] [ 15] [NATIVE ] +13:27:47 [ 43] [ 40] [Technical School Phonhong LAO] +13:27:47 [ 49] [ 3] [418] +13:27:47 [ 52] [ 16] [40D3D4DA578981CF] +13:27:47 ============================================================================ +13:27:47 + + +waiting on router queue for slot.... +13:27:48 ============================================================================ +13:27:48 Slot Id : <378> +13:27:48 Transaction Type : RESPONSE +13:27:48 Received From : +13:27:48 ============================================================================ +13:27:48 FNo. Len. Field Value +13:27:48 ============================================================================ +13:27:48 [ 1] [ 4] [0430] +13:27:48 [ 2] [ 16] [1808930300021185] +13:27:48 [ 3] [ 6] [010000] +13:27:48 [ 4] [ 12] [000010000000] +13:27:48 [ 6] [ 12] [000010000000] +13:27:48 [ 7] [ 10] [0320132549] +13:27:48 [ 11] [ 6] [756879] +13:27:48 [ 12] [ 6] [132549] +13:27:48 [ 13] [ 4] [0320] +13:27:48 [ 19] [ 3] [418] +13:27:48 [ 32] [ 6] [621354] +13:27:48 [ 35] [ 27] [1808930300021185=1803500967] +13:27:48 [ 37] [ 12] [507904898543] +13:27:48 [ 39] [ 2] [12] +13:27:48 [ 41] [ 8] [01012200] +13:27:48 [ 49] [ 3] [418] +13:27:48 ============================================================================ +13:27:48 Successfully send the slot [378] To REVERSAL Process +13:27:48 + + +waiting on router queue for slot.... +13:27:48 ============================================================================ +13:27:48 Slot Id : <340> +13:27:48 Transaction Type : REQUEST +13:27:48 Received From : +13:27:48 ============================================================================ +13:27:48 FNo. Len. Field Value +13:27:48 ============================================================================ +13:27:48 [ 1] [ 4] [0200] +13:27:48 [ 2] [ 16] [6213544002213004] +13:27:48 [ 3] [ 6] [300000] +13:27:48 [ 4] [ 12] [000000000000] +13:27:48 [ 7] [ 10] [0320132539] +13:27:48 [ 11] [ 6] [946519] +13:27:48 [ 12] [ 6] [132539] +13:27:48 [ 13] [ 4] [0320] +13:27:48 [ 15] [ 4] [0320] +13:27:48 [ 18] [ 4] [6011] +13:27:48 [ 19] [ 3] [418] +13:27:48 [ 22] [ 3] [021] +13:27:48 [ 25] [ 2] [01] +13:27:48 [ 28] [ 9] [D00000000] +13:27:48 [ 32] [ 6] [668899] +13:27:48 [ 35] [ 32] [6213544002213004=491212011300457] +13:27:48 [ 37] [ 12] [507901912189] +13:27:48 [ 41] [ 8] [03013004] +13:27:48 [ 42] [ 15] [APT ] +13:27:48 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:27:48 [ 49] [ 3] [418] +13:27:48 [ 52] [ 16] [F42292859D835504] +13:27:48 ============================================================================ +13:27:48 + + +waiting on router queue for slot.... +13:27:48 Sending to : +13:27:48 ============================================================================ +13:27:48 Sending to : +13:27:48 ============================================================================ +13:27:49 ============================================================================ +13:27:49 Slot Id : <340> +13:27:49 Transaction Type : REQUEST +13:27:49 Received From : +13:27:49 ============================================================================ +13:27:49 FNo. Len. Field Value +13:27:49 ============================================================================ +13:27:49 [ 1] [ 4] [0200] +13:27:49 [ 2] [ 16] [6213544002213004] +13:27:49 [ 3] [ 6] [300000] +13:27:49 [ 4] [ 12] [000000000000] +13:27:49 [ 7] [ 10] [0320132539] +13:27:49 [ 11] [ 6] [946519] +13:27:49 [ 12] [ 6] [132539] +13:27:49 [ 13] [ 4] [0320] +13:27:49 [ 15] [ 4] [0320] +13:27:49 [ 18] [ 4] [6011] +13:27:49 [ 19] [ 3] [418] +13:27:49 [ 22] [ 3] [021] +13:27:49 [ 25] [ 2] [01] +13:27:49 [ 28] [ 9] [D00000000] +13:27:49 [ 32] [ 6] [668899] +13:27:49 [ 35] [ 32] [6213544002213004=491212011300457] +13:27:49 [ 37] [ 12] [507901912189] +13:27:49 [ 41] [ 8] [03013004] +13:27:49 [ 42] [ 15] [APT ] +13:27:49 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:27:49 [ 49] [ 3] [418] +13:27:49 [ 52] [ 16] [F42292859D835504] +13:27:49 ============================================================================ +13:27:49 + + +waiting on router queue for slot.... +13:27:49 Sending to : +13:27:49 ============================================================================ +13:27:49 ============================================================================ +13:27:49 Slot Id : <340> +13:27:49 Transaction Type : REQUEST +13:27:49 Received From : +13:27:49 ============================================================================ +13:27:49 FNo. Len. Field Value +13:27:49 ============================================================================ +13:27:49 [ 1] [ 4] [0200] +13:27:49 [ 2] [ 16] [6213544002213004] +13:27:49 [ 3] [ 6] [300000] +13:27:49 [ 4] [ 12] [000000000000] +13:27:49 [ 7] [ 10] [0320132539] +13:27:49 [ 11] [ 6] [946519] +13:27:49 [ 12] [ 6] [132539] +13:27:49 [ 13] [ 4] [0320] +13:27:49 [ 15] [ 4] [0320] +13:27:49 [ 18] [ 4] [6011] +13:27:49 [ 19] [ 3] [418] +13:27:49 [ 22] [ 3] [021] +13:27:49 [ 25] [ 2] [01] +13:27:49 [ 28] [ 9] [D00000000] +13:27:49 [ 32] [ 6] [668899] +13:27:49 [ 35] [ 32] [6213544002213004=491212011300457] +13:27:49 [ 37] [ 12] [507901912189] +13:27:49 [ 41] [ 8] [03013004] +13:27:49 [ 42] [ 15] [APT ] +13:27:49 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:27:49 [ 49] [ 3] [418] +13:27:49 [ 52] [ 16] [CABA6F28B0929160] +13:27:49 ============================================================================ +13:27:49 + + +waiting on router queue for slot.... +13:27:49 Sending to : <0> +13:27:49 ============================================================================ +13:27:49 ============================================================================ +13:27:49 Slot Id : <340> +13:27:49 Transaction Type : RESPONSE +13:27:49 Received From : +13:27:49 ============================================================================ +13:27:49 FNo. Len. Field Value +13:27:49 ============================================================================ +13:27:49 [ 1] [ 4] [0210] +13:27:49 [ 2] [ 16] [6213544002213004] +13:27:49 [ 3] [ 6] [300000] +13:27:49 [ 4] [ 12] [000000000000] +13:27:49 [ 7] [ 10] [0320132539] +13:27:49 [ 11] [ 6] [946519] +13:27:49 [ 12] [ 6] [132539] +13:27:49 [ 13] [ 4] [0320] +13:27:49 [ 15] [ 4] [0320] +13:27:49 [ 18] [ 4] [6011] +13:27:49 [ 19] [ 3] [418] +13:27:49 [ 32] [ 6] [668899] +13:27:49 [ 35] [ 32] [6213544002213004=491212011300457] +13:27:49 [ 37] [ 12] [507901912189] +13:27:49 [ 38] [ 6] [609922] +13:27:49 [ 39] [ 2] [00] +13:27:49 [ 41] [ 8] [03013004] +13:27:49 [ 49] [ 3] [418] +13:27:49 [ 54] [ 40] [0001418C0000294536000002418C000029453600] +13:27:49 ============================================================================ +13:27:49 Sending to : +13:27:49 ============================================================================ +13:27:49 + + +waiting on router queue for slot.... +13:27:50 ============================================================================ +13:27:50 Slot Id : <340> +13:27:50 Transaction Type : RESPONSE +13:27:50 Received From : +13:27:50 ============================================================================ +13:27:50 FNo. Len. Field Value +13:27:50 ============================================================================ +13:27:50 [ 1] [ 4] [0210] +13:27:50 [ 2] [ 16] [6213544002213004] +13:27:50 [ 3] [ 6] [300000] +13:27:50 [ 4] [ 12] [000000000000] +13:27:50 [ 7] [ 10] [0320132539] +13:27:50 [ 11] [ 6] [946519] +13:27:50 [ 12] [ 6] [132539] +13:27:50 [ 13] [ 4] [0320] +13:27:50 [ 15] [ 4] [0320] +13:27:50 [ 18] [ 4] [6011] +13:27:50 [ 19] [ 3] [418] +13:27:50 [ 32] [ 6] [668899] +13:27:50 [ 35] [ 32] [6213544002213004=491212011300457] +13:27:50 [ 37] [ 12] [507901912189] +13:27:50 [ 38] [ 6] [609922] +13:27:50 [ 39] [ 2] [00] +13:27:50 [ 41] [ 8] [03013004] +13:27:50 [ 49] [ 3] [418] +13:27:50 [ 54] [ 40] [0001418C0000294536000002418C000029453600] +13:27:50 ============================================================================ +13:27:50 Calculate Source COMM Id = 4 +13:27:50 ============================================================================ +13:27:50 + + +waiting on router queue for slot.... +13:28:00 ============================================================================ +13:28:00 Slot Id : <373> +13:28:00 Transaction Type : REQUEST +13:28:00 Received From : +13:28:00 ============================================================================ +13:28:00 FNo. Len. Field Value +13:28:00 ============================================================================ +13:28:00 [ 1] [ 4] [0800] +13:28:00 [ 7] [ 10] [0320062708] +13:28:00 [ 11] [ 6] [156555] +13:28:00 [ 70] [ 3] [301] +13:28:00 ============================================================================ +13:28:00 + + +waiting on router queue for slot.... +13:28:00 Sending to : +13:28:00 ============================================================================ +13:28:00 ============================================================================ +13:28:00 Slot Id : <373> +13:28:00 Transaction Type : RESPONSE +13:28:00 Received From : +13:28:00 ============================================================================ +13:28:00 FNo. Len. Field Value +13:28:00 ============================================================================ +13:28:00 [ 1] [ 4] [0810] +13:28:00 [ 7] [ 10] [0320062708] +13:28:00 [ 11] [ 6] [156555] +13:28:00 [ 39] [ 2] [00] +13:28:00 [ 70] [ 3] [301] +13:28:00 ============================================================================ +13:28:00 Calculate Source COMM Id = 2 +13:28:00 ============================================================================ +13:28:00 + + +waiting on router queue for slot.... +13:28:02 ============================================================================ +13:28:02 Slot Id : <324> +13:28:02 Transaction Type : REQUEST +13:28:02 Received From : +13:28:02 ============================================================================ +13:28:02 FNo. Len. Field Value +13:28:02 ============================================================================ +13:28:02 [ 1] [ 4] [0200] +13:28:02 [ 2] [ 16] [6213545000794127] +13:28:02 [ 3] [ 6] [010000] +13:28:02 [ 4] [ 12] [000005000000] +13:28:02 [ 7] [ 10] [0320132553] +13:28:02 [ 11] [ 6] [946531] +13:28:02 [ 12] [ 6] [132553] +13:28:02 [ 13] [ 4] [0320] +13:28:02 [ 15] [ 4] [0320] +13:28:02 [ 18] [ 4] [6011] +13:28:02 [ 19] [ 3] [418] +13:28:02 [ 22] [ 3] [021] +13:28:02 [ 25] [ 2] [01] +13:28:02 [ 28] [ 9] [D00002000] +13:28:02 [ 32] [ 6] [668899] +13:28:02 [ 35] [ 32] [6213545000794127=491212019412427] +13:28:02 [ 37] [ 12] [507901161651] +13:28:02 [ 41] [ 8] [03217001] +13:28:02 [ 42] [ 15] [APT ] +13:28:02 [ 43] [ 40] [ THATENG UNIT XEKONG L] +13:28:02 [ 49] [ 3] [418] +13:28:02 [ 52] [ 16] [E0072CAF0AB1750E] +13:28:02 ============================================================================ +13:28:02 + + +waiting on router queue for slot.... +13:28:02 Sending to : +13:28:02 ============================================================================ +13:28:02 Sending to : +13:28:02 ============================================================================ +13:28:02 ============================================================================ +13:28:02 Slot Id : <324> +13:28:02 Transaction Type : REQUEST +13:28:02 Received From : +13:28:02 ============================================================================ +13:28:02 FNo. Len. Field Value +13:28:02 ============================================================================ +13:28:02 [ 1] [ 4] [0200] +13:28:02 [ 2] [ 16] [6213545000794127] +13:28:02 [ 3] [ 6] [010000] +13:28:02 [ 4] [ 12] [000005000000] +13:28:02 [ 7] [ 10] [0320132553] +13:28:02 [ 11] [ 6] [946531] +13:28:02 [ 12] [ 6] [132553] +13:28:02 [ 13] [ 4] [0320] +13:28:02 [ 15] [ 4] [0320] +13:28:02 [ 18] [ 4] [6011] +13:28:02 [ 19] [ 3] [418] +13:28:02 [ 22] [ 3] [021] +13:28:02 [ 25] [ 2] [01] +13:28:02 [ 28] [ 9] [D00002000] +13:28:02 [ 32] [ 6] [668899] +13:28:02 [ 35] [ 32] [6213545000794127=491212019412427] +13:28:02 [ 37] [ 12] [507901161651] +13:28:02 [ 41] [ 8] [03217001] +13:28:02 [ 42] [ 15] [APT ] +13:28:02 [ 43] [ 40] [ THATENG UNIT XEKONG L] +13:28:02 [ 49] [ 3] [418] +13:28:02 [ 52] [ 16] [E0072CAF0AB1750E] +13:28:02 ============================================================================ +13:28:02 + + +waiting on router queue for slot.... +13:28:02 Sending to : +13:28:02 ============================================================================ +13:28:02 ============================================================================ +13:28:02 Slot Id : <324> +13:28:02 Transaction Type : REQUEST +13:28:02 Received From : +13:28:02 ============================================================================ +13:28:02 FNo. Len. Field Value +13:28:02 ============================================================================ +13:28:02 [ 1] [ 4] [0200] +13:28:02 [ 2] [ 16] [6213545000794127] +13:28:02 [ 3] [ 6] [010000] +13:28:02 [ 4] [ 12] [000005000000] +13:28:02 [ 7] [ 10] [0320132553] +13:28:02 [ 11] [ 6] [946531] +13:28:02 [ 12] [ 6] [132553] +13:28:02 [ 13] [ 4] [0320] +13:28:02 [ 15] [ 4] [0320] +13:28:02 [ 18] [ 4] [6011] +13:28:02 [ 19] [ 3] [418] +13:28:02 [ 22] [ 3] [021] +13:28:02 [ 25] [ 2] [01] +13:28:02 [ 28] [ 9] [D00002000] +13:28:02 [ 32] [ 6] [668899] +13:28:02 [ 35] [ 32] [6213545000794127=491212019412427] +13:28:02 [ 37] [ 12] [507901161651] +13:28:02 [ 41] [ 8] [03217001] +13:28:02 [ 42] [ 15] [APT ] +13:28:02 [ 43] [ 40] [ THATENG UNIT XEKONG L] +13:28:02 [ 49] [ 3] [418] +13:28:02 [ 52] [ 16] [36B67427A887CC9F] +13:28:02 ============================================================================ +13:28:02 + + +waiting on router queue for slot.... +13:28:02 Sending to : <0> +13:28:02 ============================================================================ +13:28:03 ============================================================================ +13:28:03 Slot Id : <324> +13:28:03 Transaction Type : RESPONSE +13:28:03 Received From : +13:28:03 ============================================================================ +13:28:03 FNo. Len. Field Value +13:28:03 ============================================================================ +13:28:03 [ 1] [ 4] [0210] +13:28:03 [ 2] [ 16] [6213545000794127] +13:28:03 [ 3] [ 6] [010000] +13:28:03 [ 4] [ 12] [000005000000] +13:28:03 [ 7] [ 10] [0320132553] +13:28:03 [ 11] [ 6] [946531] +13:28:03 [ 12] [ 6] [132553] +13:28:03 [ 13] [ 4] [0320] +13:28:03 [ 15] [ 4] [0320] +13:28:03 [ 18] [ 4] [6011] +13:28:03 [ 19] [ 3] [418] +13:28:03 [ 32] [ 6] [668899] +13:28:03 [ 35] [ 32] [6213545000794127=491212019412427] +13:28:03 [ 37] [ 12] [507901161651] +13:28:03 [ 38] [ 6] [351816] +13:28:03 [ 39] [ 2] [00] +13:28:03 [ 41] [ 8] [03217001] +13:28:03 [ 49] [ 3] [418] +13:28:03 [ 54] [ 40] [0001418C0000203489870002418C000020348987] +13:28:03 ============================================================================ +13:28:03 Sending to : +13:28:03 ============================================================================ +13:28:03 + + +waiting on router queue for slot.... +13:28:04 ============================================================================ +13:28:04 Slot Id : <324> +13:28:04 Transaction Type : RESPONSE +13:28:04 Received From : +13:28:04 ============================================================================ +13:28:04 FNo. Len. Field Value +13:28:04 ============================================================================ +13:28:04 [ 1] [ 4] [0210] +13:28:04 [ 2] [ 16] [6213545000794127] +13:28:04 [ 3] [ 6] [010000] +13:28:04 [ 4] [ 12] [000005000000] +13:28:04 [ 7] [ 10] [0320132553] +13:28:04 [ 11] [ 6] [946531] +13:28:04 [ 12] [ 6] [132553] +13:28:04 [ 13] [ 4] [0320] +13:28:04 [ 15] [ 4] [0320] +13:28:04 [ 18] [ 4] [6011] +13:28:04 [ 19] [ 3] [418] +13:28:04 [ 32] [ 6] [668899] +13:28:04 [ 35] [ 32] [6213545000794127=491212019412427] +13:28:04 [ 37] [ 12] [507901161651] +13:28:04 [ 38] [ 6] [351816] +13:28:04 [ 39] [ 2] [00] +13:28:04 [ 41] [ 8] [03217001] +13:28:04 [ 49] [ 3] [418] +13:28:04 [ 54] [ 40] [0001418C0000203489870002418C000020348987] +13:28:04 ============================================================================ +13:28:04 Calculate Source COMM Id = 4 +13:28:04 ============================================================================ +13:28:04 + + +waiting on router queue for slot.... +13:28:10 ============================================================================ +13:28:10 Slot Id : <382> +13:28:10 Transaction Type : REQUEST +13:28:10 Received From : +13:28:10 ============================================================================ +13:28:10 FNo. Len. Field Value +13:28:10 ============================================================================ +13:28:10 [ 1] [ 4] [0800] +13:28:10 [ 7] [ 10] [0320062718] +13:28:10 [ 11] [ 6] [156556] +13:28:10 [ 70] [ 3] [301] +13:28:10 ============================================================================ +13:28:10 + + +waiting on router queue for slot.... +13:28:10 Sending to : +13:28:10 ============================================================================ +13:28:10 ============================================================================ +13:28:10 Slot Id : <382> +13:28:10 Transaction Type : RESPONSE +13:28:10 Received From : +13:28:10 ============================================================================ +13:28:10 FNo. Len. Field Value +13:28:10 ============================================================================ +13:28:10 [ 1] [ 4] [0810] +13:28:10 [ 7] [ 10] [0320062718] +13:28:10 [ 11] [ 6] [156556] +13:28:10 [ 39] [ 2] [00] +13:28:10 [ 70] [ 3] [301] +13:28:10 ============================================================================ +13:28:10 Calculate Source COMM Id = 2 +13:28:10 ============================================================================ +13:28:10 + + +waiting on router queue for slot.... +13:28:16 ============================================================================ +13:28:16 Slot Id : <355> +13:28:16 Transaction Type : REQUEST +13:28:16 Received From : +13:28:16 ============================================================================ +13:28:16 FNo. Len. Field Value +13:28:16 ============================================================================ +13:28:16 [ 1] [ 4] [0200] +13:28:16 [ 2] [ 16] [6213544001537445] +13:28:16 [ 3] [ 6] [010000] +13:28:16 [ 4] [ 12] [000005000000] +13:28:16 [ 7] [ 10] [0320132606] +13:28:16 [ 11] [ 6] [946539] +13:28:16 [ 12] [ 6] [132606] +13:28:16 [ 13] [ 4] [0320] +13:28:16 [ 15] [ 4] [0320] +13:28:16 [ 18] [ 4] [6011] +13:28:16 [ 19] [ 3] [418] +13:28:16 [ 22] [ 3] [021] +13:28:16 [ 25] [ 2] [01] +13:28:16 [ 28] [ 9] [D00002000] +13:28:16 [ 32] [ 6] [668899] +13:28:16 [ 35] [ 32] [6213544001537445=491212013744009] +13:28:16 [ 37] [ 12] [507900555142] +13:28:16 [ 41] [ 8] [03014003] +13:28:16 [ 42] [ 15] [APT ] +13:28:16 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +13:28:16 [ 49] [ 3] [418] +13:28:16 [ 52] [ 16] [E4B8362CF80FDC84] +13:28:16 ============================================================================ +13:28:16 + + +waiting on router queue for slot.... +13:28:16 Sending to : +13:28:16 ============================================================================ +13:28:16 Sending to : +13:28:16 ============================================================================ +13:28:16 ============================================================================ +13:28:16 Slot Id : <355> +13:28:16 Transaction Type : REQUEST +13:28:16 Received From : +13:28:16 ============================================================================ +13:28:16 FNo. Len. Field Value +13:28:16 ============================================================================ +13:28:16 [ 1] [ 4] [0200] +13:28:16 [ 2] [ 16] [6213544001537445] +13:28:16 [ 3] [ 6] [010000] +13:28:16 [ 4] [ 12] [000005000000] +13:28:16 [ 7] [ 10] [0320132606] +13:28:16 [ 11] [ 6] [946539] +13:28:16 [ 12] [ 6] [132606] +13:28:16 [ 13] [ 4] [0320] +13:28:16 [ 15] [ 4] [0320] +13:28:16 [ 18] [ 4] [6011] +13:28:16 [ 19] [ 3] [418] +13:28:16 [ 22] [ 3] [021] +13:28:16 [ 25] [ 2] [01] +13:28:16 [ 28] [ 9] [D00002000] +13:28:16 [ 32] [ 6] [668899] +13:28:16 [ 35] [ 32] [6213544001537445=491212013744009] +13:28:16 [ 37] [ 12] [507900555142] +13:28:16 [ 41] [ 8] [03014003] +13:28:16 [ 42] [ 15] [APT ] +13:28:16 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +13:28:16 [ 49] [ 3] [418] +13:28:16 [ 52] [ 16] [E4B8362CF80FDC84] +13:28:16 ============================================================================ +13:28:16 + + +waiting on router queue for slot.... +13:28:16 Sending to : +13:28:16 ============================================================================ +13:28:16 ============================================================================ +13:28:16 Slot Id : <355> +13:28:16 Transaction Type : REQUEST +13:28:16 Received From : +13:28:16 ============================================================================ +13:28:16 FNo. Len. Field Value +13:28:16 ============================================================================ +13:28:16 [ 1] [ 4] [0200] +13:28:16 [ 2] [ 16] [6213544001537445] +13:28:16 [ 3] [ 6] [010000] +13:28:16 [ 4] [ 12] [000005000000] +13:28:16 [ 7] [ 10] [0320132606] +13:28:16 [ 11] [ 6] [946539] +13:28:16 [ 12] [ 6] [132606] +13:28:16 [ 13] [ 4] [0320] +13:28:16 [ 15] [ 4] [0320] +13:28:16 [ 18] [ 4] [6011] +13:28:16 [ 19] [ 3] [418] +13:28:16 [ 22] [ 3] [021] +13:28:16 [ 25] [ 2] [01] +13:28:16 [ 28] [ 9] [D00002000] +13:28:16 [ 32] [ 6] [668899] +13:28:16 [ 35] [ 32] [6213544001537445=491212013744009] +13:28:16 [ 37] [ 12] [507900555142] +13:28:16 [ 41] [ 8] [03014003] +13:28:16 [ 42] [ 15] [APT ] +13:28:16 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +13:28:16 [ 49] [ 3] [418] +13:28:16 [ 52] [ 16] [B017074A82FE98C1] +13:28:16 ============================================================================ +13:28:16 + + +waiting on router queue for slot.... +13:28:16 Sending to : <0> +13:28:16 ============================================================================ +13:28:17 ============================================================================ +13:28:17 Slot Id : <355> +13:28:17 Transaction Type : RESPONSE +13:28:17 Received From : +13:28:17 ============================================================================ +13:28:17 FNo. Len. Field Value +13:28:17 ============================================================================ +13:28:17 [ 1] [ 4] [0210] +13:28:17 [ 2] [ 16] [6213544001537445] +13:28:17 [ 3] [ 6] [010000] +13:28:17 [ 4] [ 12] [000005000000] +13:28:17 [ 7] [ 10] [0320132606] +13:28:17 [ 11] [ 6] [946539] +13:28:17 [ 12] [ 6] [132606] +13:28:17 [ 13] [ 4] [0320] +13:28:17 [ 15] [ 4] [0320] +13:28:17 [ 18] [ 4] [6011] +13:28:17 [ 19] [ 3] [418] +13:28:17 [ 32] [ 6] [668899] +13:28:17 [ 35] [ 32] [6213544001537445=491212013744009] +13:28:17 [ 37] [ 12] [507900555142] +13:28:17 [ 38] [ 6] [985110] +13:28:17 [ 39] [ 2] [00] +13:28:17 [ 41] [ 8] [03014003] +13:28:17 [ 49] [ 3] [418] +13:28:17 [ 54] [ 40] [0001418C0000051966530002418C000005196653] +13:28:17 ============================================================================ +13:28:17 Sending to : +13:28:17 ============================================================================ +13:28:17 + + +waiting on router queue for slot.... +13:28:18 ============================================================================ +13:28:18 Slot Id : <355> +13:28:18 Transaction Type : RESPONSE +13:28:18 Received From : +13:28:18 ============================================================================ +13:28:18 FNo. Len. Field Value +13:28:18 ============================================================================ +13:28:18 [ 1] [ 4] [0210] +13:28:18 [ 2] [ 16] [6213544001537445] +13:28:18 [ 3] [ 6] [010000] +13:28:18 [ 4] [ 12] [000005000000] +13:28:18 [ 7] [ 10] [0320132606] +13:28:18 [ 11] [ 6] [946539] +13:28:18 [ 12] [ 6] [132606] +13:28:18 [ 13] [ 4] [0320] +13:28:18 [ 15] [ 4] [0320] +13:28:18 [ 18] [ 4] [6011] +13:28:18 [ 19] [ 3] [418] +13:28:18 [ 32] [ 6] [668899] +13:28:18 [ 35] [ 32] [6213544001537445=491212013744009] +13:28:18 [ 37] [ 12] [507900555142] +13:28:18 [ 38] [ 6] [985110] +13:28:18 [ 39] [ 2] [00] +13:28:18 [ 41] [ 8] [03014003] +13:28:18 [ 49] [ 3] [418] +13:28:18 [ 54] [ 40] [0001418C0000051966530002418C000005196653] +13:28:18 ============================================================================ +13:28:18 Calculate Source COMM Id = 4 +13:28:18 ============================================================================ +13:28:18 + + +waiting on router queue for slot.... +13:28:22 ============================================================================ +13:28:22 Slot Id : <353> +13:28:22 Transaction Type : REQUEST +13:28:22 Received From : +13:28:22 ============================================================================ +13:28:22 FNo. Len. Field Value +13:28:22 ============================================================================ +13:28:22 [ 1] [ 4] [0800] +13:28:22 [ 7] [ 10] [0320062728] +13:28:22 [ 11] [ 6] [156557] +13:28:22 [ 70] [ 3] [301] +13:28:22 ============================================================================ +13:28:22 + + +waiting on router queue for slot.... +13:28:22 Sending to : +13:28:22 ============================================================================ +13:28:22 ============================================================================ +13:28:22 Slot Id : <353> +13:28:22 Transaction Type : RESPONSE +13:28:22 Received From : +13:28:22 ============================================================================ +13:28:22 FNo. Len. Field Value +13:28:22 ============================================================================ +13:28:22 [ 1] [ 4] [0810] +13:28:22 [ 7] [ 10] [0320062728] +13:28:22 [ 11] [ 6] [156557] +13:28:22 [ 39] [ 2] [00] +13:28:22 [ 70] [ 3] [301] +13:28:22 ============================================================================ +13:28:22 Calculate Source COMM Id = 2 +13:28:22 ============================================================================ +13:28:22 + + +waiting on router queue for slot.... +13:28:23 ============================================================================ +13:28:23 Slot Id : <363> +13:28:23 Transaction Type : REQUEST +13:28:23 Received From : +13:28:23 ============================================================================ +13:28:23 FNo. Len. Field Value +13:28:23 ============================================================================ +13:28:23 [ 1] [ 4] [0200] +13:28:23 [ 2] [ 16] [6213541000511785] +13:28:23 [ 3] [ 6] [010000] +13:28:23 [ 4] [ 12] [000050000000] +13:28:23 [ 7] [ 10] [0320132613] +13:28:23 [ 11] [ 6] [946543] +13:28:23 [ 12] [ 6] [132613] +13:28:23 [ 13] [ 4] [0320] +13:28:23 [ 15] [ 4] [0320] +13:28:23 [ 18] [ 4] [6011] +13:28:23 [ 19] [ 3] [418] +13:28:23 [ 22] [ 3] [021] +13:28:23 [ 25] [ 2] [01] +13:28:23 [ 28] [ 9] [D00002000] +13:28:23 [ 32] [ 6] [668899] +13:28:23 [ 35] [ 32] [6213541000511785=491212011178045] +13:28:23 [ 37] [ 12] [507902336386] +13:28:23 [ 41] [ 8] [03217002] +13:28:23 [ 42] [ 15] [APT ] +13:28:23 [ 43] [ 40] [ THATENG MARKET THATENG ] +13:28:23 [ 49] [ 3] [418] +13:28:23 [ 52] [ 16] [313A353DB52F555E] +13:28:23 ============================================================================ +13:28:23 + + +waiting on router queue for slot.... +13:28:23 Sending to : +13:28:23 ============================================================================ +13:28:23 Sending to : +13:28:23 ============================================================================ +13:28:23 ============================================================================ +13:28:23 Slot Id : <363> +13:28:23 Transaction Type : REQUEST +13:28:23 Received From : +13:28:23 ============================================================================ +13:28:23 FNo. Len. Field Value +13:28:23 ============================================================================ +13:28:23 [ 1] [ 4] [0200] +13:28:23 [ 2] [ 16] [6213541000511785] +13:28:23 [ 3] [ 6] [010000] +13:28:23 [ 4] [ 12] [000050000000] +13:28:23 [ 7] [ 10] [0320132613] +13:28:23 [ 11] [ 6] [946543] +13:28:23 [ 12] [ 6] [132613] +13:28:23 [ 13] [ 4] [0320] +13:28:23 [ 15] [ 4] [0320] +13:28:23 [ 18] [ 4] [6011] +13:28:23 [ 19] [ 3] [418] +13:28:23 [ 22] [ 3] [021] +13:28:23 [ 25] [ 2] [01] +13:28:23 [ 28] [ 9] [D00002000] +13:28:23 [ 32] [ 6] [668899] +13:28:23 [ 35] [ 32] [6213541000511785=491212011178045] +13:28:23 [ 37] [ 12] [507902336386] +13:28:23 [ 41] [ 8] [03217002] +13:28:23 [ 42] [ 15] [APT ] +13:28:23 [ 43] [ 40] [ THATENG MARKET THATENG ] +13:28:23 [ 49] [ 3] [418] +13:28:23 [ 52] [ 16] [313A353DB52F555E] +13:28:23 ============================================================================ +13:28:23 + + +waiting on router queue for slot.... +13:28:23 Sending to : +13:28:23 ============================================================================ +13:28:23 ============================================================================ +13:28:23 Slot Id : <363> +13:28:23 Transaction Type : REQUEST +13:28:23 Received From : +13:28:23 ============================================================================ +13:28:23 FNo. Len. Field Value +13:28:23 ============================================================================ +13:28:23 [ 1] [ 4] [0200] +13:28:23 [ 2] [ 16] [6213541000511785] +13:28:23 [ 3] [ 6] [010000] +13:28:23 [ 4] [ 12] [000050000000] +13:28:23 [ 7] [ 10] [0320132613] +13:28:23 [ 11] [ 6] [946543] +13:28:23 [ 12] [ 6] [132613] +13:28:23 [ 13] [ 4] [0320] +13:28:23 [ 15] [ 4] [0320] +13:28:23 [ 18] [ 4] [6011] +13:28:23 [ 19] [ 3] [418] +13:28:23 [ 22] [ 3] [021] +13:28:23 [ 25] [ 2] [01] +13:28:23 [ 28] [ 9] [D00002000] +13:28:23 [ 32] [ 6] [668899] +13:28:23 [ 35] [ 32] [6213541000511785=491212011178045] +13:28:23 [ 37] [ 12] [507902336386] +13:28:23 [ 41] [ 8] [03217002] +13:28:23 [ 42] [ 15] [APT ] +13:28:23 [ 43] [ 40] [ THATENG MARKET THATENG ] +13:28:23 [ 49] [ 3] [418] +13:28:23 [ 52] [ 16] [2C9F5EE17AE5254B] +13:28:23 ============================================================================ +13:28:23 + + +waiting on router queue for slot.... +13:28:23 Sending to : <0> +13:28:23 ============================================================================ +13:28:24 ============================================================================ +13:28:24 Slot Id : <363> +13:28:24 Transaction Type : RESPONSE +13:28:24 Received From : +13:28:24 ============================================================================ +13:28:24 FNo. Len. Field Value +13:28:24 ============================================================================ +13:28:24 [ 1] [ 4] [0210] +13:28:24 [ 2] [ 16] [6213541000511785] +13:28:24 [ 3] [ 6] [010000] +13:28:24 [ 4] [ 12] [000050000000] +13:28:24 [ 7] [ 10] [0320132613] +13:28:24 [ 11] [ 6] [946543] +13:28:24 [ 12] [ 6] [132613] +13:28:24 [ 13] [ 4] [0320] +13:28:24 [ 15] [ 4] [0320] +13:28:24 [ 18] [ 4] [6011] +13:28:24 [ 19] [ 3] [418] +13:28:24 [ 32] [ 6] [668899] +13:28:24 [ 35] [ 32] [6213541000511785=491212011178045] +13:28:24 [ 37] [ 12] [507902336386] +13:28:24 [ 38] [ 6] [947608] +13:28:24 [ 39] [ 2] [00] +13:28:24 [ 41] [ 8] [03217002] +13:28:24 [ 49] [ 3] [418] +13:28:24 [ 54] [ 40] [0001418C0021712116030002418C002171211603] +13:28:24 ============================================================================ +13:28:24 Sending to : +13:28:24 ============================================================================ +13:28:24 + + +waiting on router queue for slot.... +13:28:26 ============================================================================ +13:28:26 Slot Id : <363> +13:28:26 Transaction Type : RESPONSE +13:28:26 Received From : +13:28:26 ============================================================================ +13:28:26 FNo. Len. Field Value +13:28:26 ============================================================================ +13:28:26 [ 1] [ 4] [0210] +13:28:26 [ 2] [ 16] [6213541000511785] +13:28:26 [ 3] [ 6] [010000] +13:28:26 [ 4] [ 12] [000050000000] +13:28:26 [ 7] [ 10] [0320132613] +13:28:26 [ 11] [ 6] [946543] +13:28:26 [ 12] [ 6] [132613] +13:28:26 [ 13] [ 4] [0320] +13:28:26 [ 15] [ 4] [0320] +13:28:26 [ 18] [ 4] [6011] +13:28:26 [ 19] [ 3] [418] +13:28:26 [ 32] [ 6] [668899] +13:28:26 [ 35] [ 32] [6213541000511785=491212011178045] +13:28:26 [ 37] [ 12] [507902336386] +13:28:26 [ 38] [ 6] [947608] +13:28:26 [ 39] [ 2] [00] +13:28:26 [ 41] [ 8] [03217002] +13:28:26 [ 49] [ 3] [418] +13:28:26 [ 54] [ 40] [0001418C0021712116030002418C002171211603] +13:28:26 ============================================================================ +13:28:26 Calculate Source COMM Id = 4 +13:28:26 ============================================================================ +13:28:26 + + +waiting on router queue for slot.... +13:28:37 ============================================================================ +13:28:37 Slot Id : <370> +13:28:37 Transaction Type : REQUEST +13:28:37 Received From : +13:28:37 ============================================================================ +13:28:37 FNo. Len. Field Value +13:28:37 ============================================================================ +13:28:37 [ 1] [ 4] [0800] +13:28:37 [ 7] [ 10] [0320062744] +13:28:37 [ 11] [ 6] [156558] +13:28:37 [ 70] [ 3] [301] +13:28:37 ============================================================================ +13:28:37 + + +waiting on router queue for slot.... +13:28:37 Sending to : +13:28:37 ============================================================================ +13:28:37 ============================================================================ +13:28:37 Slot Id : <370> +13:28:37 Transaction Type : RESPONSE +13:28:37 Received From : +13:28:37 ============================================================================ +13:28:37 FNo. Len. Field Value +13:28:37 ============================================================================ +13:28:37 [ 1] [ 4] [0810] +13:28:37 [ 7] [ 10] [0320062744] +13:28:37 [ 11] [ 6] [156558] +13:28:37 [ 39] [ 2] [00] +13:28:37 [ 70] [ 3] [301] +13:28:37 ============================================================================ +13:28:37 Calculate Source COMM Id = 2 +13:28:37 ============================================================================ +13:28:37 + + +waiting on router queue for slot.... +13:28:42 ============================================================================ +13:28:42 Slot Id : <358> +13:28:42 Transaction Type : REQUEST +13:28:42 Received From : +13:28:42 ============================================================================ +13:28:42 FNo. Len. Field Value +13:28:42 ============================================================================ +13:28:42 [ 1] [ 4] [0800] +13:28:42 [ 2] [ 5] [02531] +13:28:42 [ 3] [ 6] [579138] +13:28:42 [ 7] [ 10] [0320062842] +13:28:42 [ 11] [ 6] [807194] +13:28:42 [ 15] [ 10] [0320062842] +13:28:42 [ 37] [ 11] [57913807194] +13:28:42 [ 70] [ 3] [001] +13:28:42 ============================================================================ +13:28:42 + + +waiting on router queue for slot.... +13:28:42 ============================================================================ +13:28:42 Slot Id : <358> +13:28:42 Transaction Type : RESPONSE +13:28:42 Received From : +13:28:42 ============================================================================ +13:28:42 FNo. Len. Field Value +13:28:42 ============================================================================ +13:28:42 [ 1] [ 4] [0810] +13:28:42 [ 7] [ 10] [0320062842] +13:28:42 [ 11] [ 6] [807194] +13:28:42 [ 15] [ 4] [0320] +13:28:42 [ 37] [ 12] [57913807194] +13:28:42 [ 39] [ 2] [00] +13:28:42 [ 70] [ 3] [001] +13:28:42 ============================================================================ +13:28:42 Sending to : +13:28:42 ============================================================================ +13:28:42 + + +waiting on router queue for slot.... +13:28:49 ============================================================================ +13:28:49 Slot Id : <360> +13:28:49 Transaction Type : REQUEST +13:28:49 Received From : +13:28:49 ============================================================================ +13:28:49 FNo. Len. Field Value +13:28:49 ============================================================================ +13:28:49 [ 1] [ 4] [0200] +13:28:49 [ 2] [ 16] [6688990107228205] +13:28:49 [ 3] [ 6] [012000] +13:28:49 [ 4] [ 12] [000025000000] +13:28:49 [ 7] [ 10] [0320132845] +13:28:49 [ 11] [ 6] [757516] +13:28:49 [ 12] [ 6] [132845] +13:28:49 [ 13] [ 4] [0320] +13:28:49 [ 15] [ 4] [0320] +13:28:49 [ 18] [ 4] [6011] +13:28:49 [ 22] [ 3] [900] +13:28:49 [ 25] [ 2] [02] +13:28:49 [ 28] [ 9] [D00002000] +13:28:49 [ 32] [ 6] [621354] +13:28:49 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:28:49 [ 37] [ 12] [507904153902] +13:28:49 [ 41] [ 8] [20001000] +13:28:49 [ 42] [ 15] [NATIVE ] +13:28:49 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:28:49 [ 49] [ 3] [418] +13:28:49 [ 52] [ 16] [216E7866C9888A9E] +13:28:49 ============================================================================ +13:28:49 + + +waiting on router queue for slot.... +13:28:49 Sending to : +13:28:49 ============================================================================ +13:28:49 Sending to : +13:28:49 ============================================================================ +13:28:49 ============================================================================ +13:28:49 Slot Id : <360> +13:28:49 Transaction Type : REQUEST +13:28:49 Received From : +13:28:49 ============================================================================ +13:28:49 FNo. Len. Field Value +13:28:49 ============================================================================ +13:28:49 [ 1] [ 4] [0200] +13:28:49 [ 2] [ 16] [6688990107228205] +13:28:49 [ 3] [ 6] [012000] +13:28:49 [ 4] [ 12] [000025000000] +13:28:49 [ 7] [ 10] [0320132845] +13:28:49 [ 11] [ 6] [757516] +13:28:49 [ 12] [ 6] [132845] +13:28:49 [ 13] [ 4] [0320] +13:28:49 [ 15] [ 4] [0320] +13:28:49 [ 18] [ 4] [6011] +13:28:49 [ 22] [ 3] [900] +13:28:49 [ 25] [ 2] [02] +13:28:49 [ 28] [ 9] [D00002000] +13:28:49 [ 32] [ 6] [621354] +13:28:49 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:28:49 [ 37] [ 12] [507904153902] +13:28:49 [ 41] [ 8] [20001000] +13:28:49 [ 42] [ 15] [NATIVE ] +13:28:49 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:28:49 [ 49] [ 3] [418] +13:28:49 [ 52] [ 16] [216E7866C9888A9E] +13:28:49 ============================================================================ +13:28:49 + + +waiting on router queue for slot.... +13:28:49 Sending to : +13:28:49 ============================================================================ +13:28:49 ============================================================================ +13:28:49 Slot Id : <360> +13:28:49 Transaction Type : REQUEST +13:28:49 Received From : +13:28:49 ============================================================================ +13:28:49 FNo. Len. Field Value +13:28:49 ============================================================================ +13:28:49 [ 1] [ 4] [0200] +13:28:49 [ 2] [ 16] [6688990107228205] +13:28:49 [ 3] [ 6] [012000] +13:28:49 [ 4] [ 12] [000025000000] +13:28:49 [ 7] [ 10] [0320132845] +13:28:49 [ 11] [ 6] [757516] +13:28:49 [ 12] [ 6] [132845] +13:28:49 [ 13] [ 4] [0320] +13:28:49 [ 15] [ 4] [0320] +13:28:49 [ 18] [ 4] [6011] +13:28:49 [ 22] [ 3] [900] +13:28:49 [ 25] [ 2] [02] +13:28:49 [ 28] [ 9] [D00002000] +13:28:49 [ 32] [ 6] [621354] +13:28:49 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:28:49 [ 37] [ 12] [507904153902] +13:28:49 [ 41] [ 8] [20001000] +13:28:49 [ 42] [ 15] [NATIVE ] +13:28:49 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:28:49 [ 49] [ 3] [418] +13:28:49 [ 52] [ 16] [BFD645C3C5A2455A] +13:28:49 ============================================================================ +13:28:49 + + +waiting on router queue for slot.... +13:28:49 Sending to : <4> +13:28:49 ============================================================================ +13:28:50 ============================================================================ +13:28:50 Slot Id : <360> +13:28:50 Transaction Type : RESPONSE +13:28:50 Received From : +13:28:50 ============================================================================ +13:28:50 FNo. Len. Field Value +13:28:50 ============================================================================ +13:28:50 [ 1] [ 4] [0210] +13:28:50 [ 2] [ 16] [6688990107228205] +13:28:50 [ 3] [ 6] [012000] +13:28:50 [ 4] [ 12] [000025000000] +13:28:50 [ 11] [ 6] [757516] +13:28:50 [ 12] [ 6] [132845] +13:28:50 [ 15] [ 4] [0320] +13:28:50 [ 18] [ 4] [6011] +13:28:50 [ 32] [ 6] [621354] +13:28:50 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:28:50 [ 37] [ 12] [507904153902] +13:28:50 [ 39] [ 2] [51] +13:28:50 [ 41] [ 8] [20001000] +13:28:50 [ 49] [ 3] [418] +13:28:50 [ 54] [ 0] [] +13:28:50 ============================================================================ +13:28:50 Sending to : +13:28:50 ============================================================================ +13:28:50 + + +waiting on router queue for slot.... +13:28:51 ============================================================================ +13:28:51 Slot Id : <360> +13:28:51 Transaction Type : RESPONSE +13:28:51 Received From : +13:28:51 ============================================================================ +13:28:51 FNo. Len. Field Value +13:28:51 ============================================================================ +13:28:51 [ 1] [ 4] [0210] +13:28:51 [ 2] [ 16] [6688990107228205] +13:28:51 [ 3] [ 6] [012000] +13:28:51 [ 4] [ 12] [000025000000] +13:28:51 [ 11] [ 6] [757516] +13:28:51 [ 12] [ 6] [132845] +13:28:51 [ 15] [ 4] [0320] +13:28:51 [ 18] [ 4] [6011] +13:28:51 [ 32] [ 6] [621354] +13:28:51 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:28:51 [ 37] [ 12] [507904153902] +13:28:51 [ 39] [ 2] [51] +13:28:51 [ 41] [ 8] [20001000] +13:28:51 [ 49] [ 3] [418] +13:28:51 [ 54] [ 0] [] +13:28:51 ============================================================================ +13:28:51 Calculate Source COMM Id = 0 +13:28:51 ============================================================================ +13:28:51 + + +waiting on router queue for slot.... +13:28:53 ============================================================================ +13:28:53 Slot Id : <369> +13:28:53 Transaction Type : REQUEST +13:28:53 Received From : +13:28:53 ============================================================================ +13:28:53 FNo. Len. Field Value +13:28:53 ============================================================================ +13:28:53 [ 1] [ 4] [0800] +13:28:53 [ 7] [ 10] [0320062800] +13:28:53 [ 11] [ 6] [156559] +13:28:53 [ 70] [ 3] [301] +13:28:53 ============================================================================ +13:28:53 + + +waiting on router queue for slot.... +13:28:53 Sending to : +13:28:53 ============================================================================ +13:28:53 ============================================================================ +13:28:53 Slot Id : <369> +13:28:53 Transaction Type : RESPONSE +13:28:53 Received From : +13:28:53 ============================================================================ +13:28:53 FNo. Len. Field Value +13:28:53 ============================================================================ +13:28:53 [ 1] [ 4] [0810] +13:28:53 [ 7] [ 10] [0320062800] +13:28:53 [ 11] [ 6] [156559] +13:28:53 [ 39] [ 2] [00] +13:28:53 [ 70] [ 3] [301] +13:28:53 ============================================================================ +13:28:53 Calculate Source COMM Id = 2 +13:28:53 ============================================================================ +13:28:53 + + +waiting on router queue for slot.... +13:28:54 ============================================================================ +13:28:54 Slot Id : <379> +13:28:54 Transaction Type : REQUEST +13:28:54 Received From : +13:28:54 ============================================================================ +13:28:54 FNo. Len. Field Value +13:28:54 ============================================================================ +13:28:54 [ 1] [ 4] [0200] +13:28:54 [ 2] [ 16] [6213544000116316] +13:28:54 [ 3] [ 6] [300000] +13:28:54 [ 4] [ 12] [000000000000] +13:28:54 [ 7] [ 10] [0320132645] +13:28:54 [ 11] [ 6] [946564] +13:28:54 [ 12] [ 6] [132645] +13:28:54 [ 13] [ 4] [0320] +13:28:54 [ 15] [ 4] [0320] +13:28:54 [ 18] [ 4] [6011] +13:28:54 [ 19] [ 3] [418] +13:28:54 [ 22] [ 3] [021] +13:28:54 [ 25] [ 2] [01] +13:28:54 [ 28] [ 9] [D00000000] +13:28:54 [ 32] [ 6] [668899] +13:28:54 [ 35] [ 32] [6213544000116316=491212011631469] +13:28:54 [ 37] [ 12] [507901881397] +13:28:54 [ 41] [ 8] [03014006] +13:28:54 [ 42] [ 15] [APT ] +13:28:54 [ 43] [ 40] [ SETHAMOUAK UNIT SETHAMOUA] +13:28:54 [ 49] [ 3] [418] +13:28:54 [ 52] [ 16] [639CC673390575FF] +13:28:54 ============================================================================ +13:28:54 + + +waiting on router queue for slot.... +13:28:54 Sending to : +13:28:54 ============================================================================ +13:28:54 Sending to : +13:28:54 ============================================================================ +13:28:55 ============================================================================ +13:28:55 Slot Id : <379> +13:28:55 Transaction Type : REQUEST +13:28:55 Received From : +13:28:55 ============================================================================ +13:28:55 FNo. Len. Field Value +13:28:55 ============================================================================ +13:28:55 [ 1] [ 4] [0200] +13:28:55 [ 2] [ 16] [6213544000116316] +13:28:55 [ 3] [ 6] [300000] +13:28:55 [ 4] [ 12] [000000000000] +13:28:55 [ 7] [ 10] [0320132645] +13:28:55 [ 11] [ 6] [946564] +13:28:55 [ 12] [ 6] [132645] +13:28:55 [ 13] [ 4] [0320] +13:28:55 [ 15] [ 4] [0320] +13:28:55 [ 18] [ 4] [6011] +13:28:55 [ 19] [ 3] [418] +13:28:55 [ 22] [ 3] [021] +13:28:55 [ 25] [ 2] [01] +13:28:55 [ 28] [ 9] [D00000000] +13:28:55 [ 32] [ 6] [668899] +13:28:55 [ 35] [ 32] [6213544000116316=491212011631469] +13:28:55 [ 37] [ 12] [507901881397] +13:28:55 [ 41] [ 8] [03014006] +13:28:55 [ 42] [ 15] [APT ] +13:28:55 [ 43] [ 40] [ SETHAMOUAK UNIT SETHAMOUA] +13:28:55 [ 49] [ 3] [418] +13:28:55 [ 52] [ 16] [639CC673390575FF] +13:28:55 ============================================================================ +13:28:55 + + +waiting on router queue for slot.... +13:28:55 Sending to : +13:28:55 ============================================================================ +13:28:55 ============================================================================ +13:28:55 Slot Id : <379> +13:28:55 Transaction Type : REQUEST +13:28:55 Received From : +13:28:55 ============================================================================ +13:28:55 FNo. Len. Field Value +13:28:55 ============================================================================ +13:28:55 [ 1] [ 4] [0200] +13:28:55 [ 2] [ 16] [6213544000116316] +13:28:55 [ 3] [ 6] [300000] +13:28:55 [ 4] [ 12] [000000000000] +13:28:55 [ 7] [ 10] [0320132645] +13:28:55 [ 11] [ 6] [946564] +13:28:55 [ 12] [ 6] [132645] +13:28:55 [ 13] [ 4] [0320] +13:28:55 [ 15] [ 4] [0320] +13:28:55 [ 18] [ 4] [6011] +13:28:55 [ 19] [ 3] [418] +13:28:55 [ 22] [ 3] [021] +13:28:55 [ 25] [ 2] [01] +13:28:55 [ 28] [ 9] [D00000000] +13:28:55 [ 32] [ 6] [668899] +13:28:55 [ 35] [ 32] [6213544000116316=491212011631469] +13:28:55 [ 37] [ 12] [507901881397] +13:28:55 [ 41] [ 8] [03014006] +13:28:55 [ 42] [ 15] [APT ] +13:28:55 [ 43] [ 40] [ SETHAMOUAK UNIT SETHAMOUA] +13:28:55 [ 49] [ 3] [418] +13:28:55 [ 52] [ 16] [E4E7D4DAE196E894] +13:28:55 ============================================================================ +13:28:55 + + +waiting on router queue for slot.... +13:28:55 Sending to : <0> +13:28:55 ============================================================================ +13:28:55 ============================================================================ +13:28:55 Slot Id : <379> +13:28:55 Transaction Type : RESPONSE +13:28:55 Received From : +13:28:55 ============================================================================ +13:28:55 FNo. Len. Field Value +13:28:55 ============================================================================ +13:28:55 [ 1] [ 4] [0210] +13:28:55 [ 2] [ 16] [6213544000116316] +13:28:55 [ 3] [ 6] [300000] +13:28:55 [ 4] [ 12] [000000000000] +13:28:55 [ 7] [ 10] [0320132645] +13:28:55 [ 11] [ 6] [946564] +13:28:55 [ 12] [ 6] [132645] +13:28:55 [ 13] [ 4] [0320] +13:28:55 [ 15] [ 4] [0320] +13:28:55 [ 18] [ 4] [6011] +13:28:55 [ 19] [ 3] [418] +13:28:55 [ 32] [ 6] [668899] +13:28:55 [ 35] [ 32] [6213544000116316=491212011631469] +13:28:55 [ 37] [ 12] [507901881397] +13:28:55 [ 38] [ 6] [634225] +13:28:55 [ 39] [ 2] [00] +13:28:55 [ 41] [ 8] [03014006] +13:28:55 [ 49] [ 3] [418] +13:28:55 [ 54] [ 40] [0001418C0003214711370002418C000321471137] +13:28:55 ============================================================================ +13:28:55 Sending to : +13:28:55 ============================================================================ +13:28:55 + + +waiting on router queue for slot.... +13:28:56 ============================================================================ +13:28:56 Slot Id : <379> +13:28:56 Transaction Type : RESPONSE +13:28:56 Received From : +13:28:56 ============================================================================ +13:28:56 FNo. Len. Field Value +13:28:56 ============================================================================ +13:28:56 [ 1] [ 4] [0210] +13:28:56 [ 2] [ 16] [6213544000116316] +13:28:56 [ 3] [ 6] [300000] +13:28:56 [ 4] [ 12] [000000000000] +13:28:56 [ 7] [ 10] [0320132645] +13:28:56 [ 11] [ 6] [946564] +13:28:56 [ 12] [ 6] [132645] +13:28:56 [ 13] [ 4] [0320] +13:28:56 [ 15] [ 4] [0320] +13:28:56 [ 18] [ 4] [6011] +13:28:56 [ 19] [ 3] [418] +13:28:56 [ 32] [ 6] [668899] +13:28:56 [ 35] [ 32] [6213544000116316=491212011631469] +13:28:56 [ 37] [ 12] [507901881397] +13:28:56 [ 38] [ 6] [634225] +13:28:56 [ 39] [ 2] [00] +13:28:56 [ 41] [ 8] [03014006] +13:28:56 [ 49] [ 3] [418] +13:28:56 [ 54] [ 40] [0001418C0003214711370002418C000321471137] +13:28:56 ============================================================================ +13:28:56 Calculate Source COMM Id = 4 +13:28:56 ============================================================================ +13:28:56 + + +waiting on router queue for slot.... +13:29:09 ============================================================================ +13:29:09 Slot Id : <338> +13:29:09 Transaction Type : REQUEST +13:29:09 Received From : +13:29:09 ============================================================================ +13:29:09 FNo. Len. Field Value +13:29:09 ============================================================================ +13:29:09 [ 1] [ 4] [0800] +13:29:09 [ 7] [ 10] [0320062816] +13:29:09 [ 11] [ 6] [156560] +13:29:09 [ 70] [ 3] [301] +13:29:09 ============================================================================ +13:29:09 + + +waiting on router queue for slot.... +13:29:09 Sending to : +13:29:09 ============================================================================ +13:29:09 ============================================================================ +13:29:09 Slot Id : <338> +13:29:09 Transaction Type : RESPONSE +13:29:09 Received From : +13:29:09 ============================================================================ +13:29:09 FNo. Len. Field Value +13:29:09 ============================================================================ +13:29:09 [ 1] [ 4] [0810] +13:29:09 [ 7] [ 10] [0320062816] +13:29:09 [ 11] [ 6] [156560] +13:29:09 [ 39] [ 2] [00] +13:29:09 [ 70] [ 3] [301] +13:29:09 ============================================================================ +13:29:09 Calculate Source COMM Id = 2 +13:29:09 ============================================================================ +13:29:09 + + +waiting on router queue for slot.... +13:29:15 ============================================================================ +13:29:15 Slot Id : <354> +13:29:15 Transaction Type : REQUEST +13:29:15 Received From : +13:29:15 ============================================================================ +13:29:15 FNo. Len. Field Value +13:29:15 ============================================================================ +13:29:15 [ 1] [ 4] [0200] +13:29:15 [ 2] [ 16] [6213545000308746] +13:29:15 [ 3] [ 6] [010000] +13:29:15 [ 4] [ 12] [000100000000] +13:29:15 [ 7] [ 10] [0320132706] +13:29:15 [ 11] [ 6] [946579] +13:29:15 [ 12] [ 6] [132706] +13:29:15 [ 13] [ 4] [0320] +13:29:15 [ 15] [ 4] [0320] +13:29:15 [ 18] [ 4] [6011] +13:29:15 [ 19] [ 3] [418] +13:29:15 [ 22] [ 3] [021] +13:29:15 [ 25] [ 2] [01] +13:29:15 [ 28] [ 9] [D00002000] +13:29:15 [ 32] [ 6] [668899] +13:29:15 [ 35] [ 32] [6213545000308746=491212010874560] +13:29:15 [ 37] [ 12] [507902151000] +13:29:15 [ 41] [ 8] [03020025] +13:29:15 [ 42] [ 15] [APT ] +13:29:15 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:29:15 [ 49] [ 3] [418] +13:29:15 [ 52] [ 16] [D0269C500881CF2A] +13:29:15 ============================================================================ +13:29:15 + + +waiting on router queue for slot.... +13:29:15 Sending to : +13:29:15 ============================================================================ +13:29:15 Sending to : +13:29:15 ============================================================================ +13:29:16 ============================================================================ +13:29:16 Slot Id : <354> +13:29:16 Transaction Type : REQUEST +13:29:16 Received From : +13:29:16 ============================================================================ +13:29:16 FNo. Len. Field Value +13:29:16 ============================================================================ +13:29:16 [ 1] [ 4] [0200] +13:29:16 [ 2] [ 16] [6213545000308746] +13:29:16 [ 3] [ 6] [010000] +13:29:16 [ 4] [ 12] [000100000000] +13:29:16 [ 7] [ 10] [0320132706] +13:29:16 [ 11] [ 6] [946579] +13:29:16 [ 12] [ 6] [132706] +13:29:16 [ 13] [ 4] [0320] +13:29:16 [ 15] [ 4] [0320] +13:29:16 [ 18] [ 4] [6011] +13:29:16 [ 19] [ 3] [418] +13:29:16 [ 22] [ 3] [021] +13:29:16 [ 25] [ 2] [01] +13:29:16 [ 28] [ 9] [D00002000] +13:29:16 [ 32] [ 6] [668899] +13:29:16 [ 35] [ 32] [6213545000308746=491212010874560] +13:29:16 [ 37] [ 12] [507902151000] +13:29:16 [ 41] [ 8] [03020025] +13:29:16 [ 42] [ 15] [APT ] +13:29:16 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:29:16 [ 49] [ 3] [418] +13:29:16 [ 52] [ 16] [D0269C500881CF2A] +13:29:16 ============================================================================ +13:29:16 + + +waiting on router queue for slot.... +13:29:16 Sending to : +13:29:16 ============================================================================ +13:29:16 ============================================================================ +13:29:16 Slot Id : <354> +13:29:16 Transaction Type : REQUEST +13:29:16 Received From : +13:29:16 ============================================================================ +13:29:16 FNo. Len. Field Value +13:29:16 ============================================================================ +13:29:16 [ 1] [ 4] [0200] +13:29:16 [ 2] [ 16] [6213545000308746] +13:29:16 [ 3] [ 6] [010000] +13:29:16 [ 4] [ 12] [000100000000] +13:29:16 [ 7] [ 10] [0320132706] +13:29:16 [ 11] [ 6] [946579] +13:29:16 [ 12] [ 6] [132706] +13:29:16 [ 13] [ 4] [0320] +13:29:16 [ 15] [ 4] [0320] +13:29:16 [ 18] [ 4] [6011] +13:29:16 [ 19] [ 3] [418] +13:29:16 [ 22] [ 3] [021] +13:29:16 [ 25] [ 2] [01] +13:29:16 [ 28] [ 9] [D00002000] +13:29:16 [ 32] [ 6] [668899] +13:29:16 [ 35] [ 32] [6213545000308746=491212010874560] +13:29:16 [ 37] [ 12] [507902151000] +13:29:16 [ 41] [ 8] [03020025] +13:29:16 [ 42] [ 15] [APT ] +13:29:16 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:29:16 [ 49] [ 3] [418] +13:29:16 [ 52] [ 16] [A6139E1AA50649E4] +13:29:16 ============================================================================ +13:29:16 + + +waiting on router queue for slot.... +13:29:16 Sending to : <0> +13:29:16 ============================================================================ +13:29:16 ============================================================================ +13:29:16 Slot Id : <354> +13:29:16 Transaction Type : RESPONSE +13:29:16 Received From : +13:29:16 ============================================================================ +13:29:16 FNo. Len. Field Value +13:29:16 ============================================================================ +13:29:16 [ 1] [ 4] [0210] +13:29:16 [ 2] [ 16] [6213545000308746] +13:29:16 [ 3] [ 6] [010000] +13:29:16 [ 4] [ 12] [000100000000] +13:29:16 [ 7] [ 10] [0320132706] +13:29:16 [ 11] [ 6] [946579] +13:29:16 [ 12] [ 6] [132706] +13:29:16 [ 13] [ 4] [0320] +13:29:16 [ 15] [ 4] [0320] +13:29:16 [ 18] [ 4] [6011] +13:29:16 [ 19] [ 3] [418] +13:29:16 [ 32] [ 6] [668899] +13:29:16 [ 35] [ 32] [6213545000308746=491212010874560] +13:29:16 [ 37] [ 12] [507902151000] +13:29:16 [ 38] [ 6] [823540] +13:29:16 [ 39] [ 2] [00] +13:29:16 [ 41] [ 8] [03020025] +13:29:16 [ 49] [ 3] [418] +13:29:16 [ 54] [ 40] [0001418C0000277048560002418C000027704856] +13:29:16 ============================================================================ +13:29:16 Sending to : +13:29:16 ============================================================================ +13:29:16 + + +waiting on router queue for slot.... +13:29:18 ============================================================================ +13:29:18 Slot Id : <354> +13:29:18 Transaction Type : RESPONSE +13:29:18 Received From : +13:29:18 ============================================================================ +13:29:18 FNo. Len. Field Value +13:29:18 ============================================================================ +13:29:18 [ 1] [ 4] [0210] +13:29:18 [ 2] [ 16] [6213545000308746] +13:29:18 [ 3] [ 6] [010000] +13:29:18 [ 4] [ 12] [000100000000] +13:29:18 [ 7] [ 10] [0320132706] +13:29:18 [ 11] [ 6] [946579] +13:29:18 [ 12] [ 6] [132706] +13:29:18 [ 13] [ 4] [0320] +13:29:18 [ 15] [ 4] [0320] +13:29:18 [ 18] [ 4] [6011] +13:29:18 [ 19] [ 3] [418] +13:29:18 [ 32] [ 6] [668899] +13:29:18 [ 35] [ 32] [6213545000308746=491212010874560] +13:29:18 [ 37] [ 12] [507902151000] +13:29:18 [ 38] [ 6] [823540] +13:29:18 [ 39] [ 2] [00] +13:29:18 [ 41] [ 8] [03020025] +13:29:18 [ 49] [ 3] [418] +13:29:18 [ 54] [ 40] [0001418C0000277048560002418C000027704856] +13:29:18 ============================================================================ +13:29:18 Calculate Source COMM Id = 4 +13:29:18 ============================================================================ +13:29:18 + + +waiting on router queue for slot.... +13:29:20 ============================================================================ +13:29:20 Slot Id : <396> +13:29:20 Transaction Type : REQUEST +13:29:20 Received From : +13:29:20 ============================================================================ +13:29:20 FNo. Len. Field Value +13:29:20 ============================================================================ +13:29:20 [ 1] [ 4] [0800] +13:29:20 [ 7] [ 10] [0320062827] +13:29:20 [ 11] [ 6] [156561] +13:29:20 [ 70] [ 3] [301] +13:29:20 ============================================================================ +13:29:20 + + +waiting on router queue for slot.... +13:29:20 Sending to : +13:29:20 ============================================================================ +13:29:20 ============================================================================ +13:29:20 Slot Id : <396> +13:29:20 Transaction Type : RESPONSE +13:29:20 Received From : +13:29:20 ============================================================================ +13:29:20 FNo. Len. Field Value +13:29:20 ============================================================================ +13:29:20 [ 1] [ 4] [0810] +13:29:20 [ 7] [ 10] [0320062827] +13:29:20 [ 11] [ 6] [156561] +13:29:20 [ 39] [ 2] [00] +13:29:20 [ 70] [ 3] [301] +13:29:20 ============================================================================ +13:29:20 Calculate Source COMM Id = 2 +13:29:20 ============================================================================ +13:29:20 + + +waiting on router queue for slot.... +13:29:26 ============================================================================ +13:29:26 Slot Id : <351> +13:29:26 Transaction Type : REQUEST +13:29:26 Received From : +13:29:26 ============================================================================ +13:29:26 FNo. Len. Field Value +13:29:26 ============================================================================ +13:29:26 [ 1] [ 4] [0200] +13:29:26 [ 2] [ 16] [6213545000286231] +13:29:26 [ 3] [ 6] [010000] +13:29:26 [ 4] [ 12] [000020000000] +13:29:26 [ 7] [ 10] [0320133713] +13:29:26 [ 11] [ 6] [085597] +13:29:26 [ 12] [ 6] [133713] +13:29:26 [ 13] [ 4] [0320] +13:29:26 [ 14] [ 4] [4912] +13:29:26 [ 15] [ 4] [0320] +13:29:26 [ 18] [ 4] [6011] +13:29:26 [ 22] [ 3] [900] +13:29:26 [ 25] [ 2] [02] +13:29:26 [ 28] [ 9] [D00002000] +13:29:26 [ 32] [ 6] [220699] +13:29:26 [ 35] [ 32] [6213545000286231=491212018623973] +13:29:26 [ 37] [ 12] [507900140215] +13:29:26 [ 41] [ 8] [03000200] +13:29:26 [ 42] [ 15] [APTRA ] +13:29:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:29:26 [ 49] [ 3] [418] +13:29:26 [ 52] [ 16] [C555D6BE4C25CF1C] +13:29:26 ============================================================================ +13:29:26 + + +waiting on router queue for slot.... +13:29:26 Sending to : +13:29:26 ============================================================================ +13:29:26 Sending to : +13:29:26 ============================================================================ +13:29:26 ============================================================================ +13:29:26 Slot Id : <351> +13:29:26 Transaction Type : REQUEST +13:29:26 Received From : +13:29:26 ============================================================================ +13:29:26 FNo. Len. Field Value +13:29:26 ============================================================================ +13:29:26 [ 1] [ 4] [0200] +13:29:26 [ 2] [ 16] [6213545000286231] +13:29:26 [ 3] [ 6] [010000] +13:29:26 [ 4] [ 12] [000020000000] +13:29:26 [ 7] [ 10] [0320133713] +13:29:26 [ 11] [ 6] [085597] +13:29:26 [ 12] [ 6] [133713] +13:29:26 [ 13] [ 4] [0320] +13:29:26 [ 14] [ 4] [4912] +13:29:26 [ 15] [ 4] [0320] +13:29:26 [ 18] [ 4] [6011] +13:29:26 [ 22] [ 3] [900] +13:29:26 [ 25] [ 2] [02] +13:29:26 [ 28] [ 9] [D00002000] +13:29:26 [ 32] [ 6] [220699] +13:29:26 [ 35] [ 32] [6213545000286231=491212018623973] +13:29:26 [ 37] [ 12] [507900140215] +13:29:26 [ 41] [ 8] [03000200] +13:29:26 [ 42] [ 15] [APTRA ] +13:29:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:29:26 [ 49] [ 3] [418] +13:29:26 [ 52] [ 16] [C555D6BE4C25CF1C] +13:29:26 ============================================================================ +13:29:26 + + +waiting on router queue for slot.... +13:29:26 Sending to : +13:29:26 ============================================================================ +13:29:26 ============================================================================ +13:29:26 Slot Id : <351> +13:29:26 Transaction Type : REQUEST +13:29:26 Received From : +13:29:26 ============================================================================ +13:29:26 FNo. Len. Field Value +13:29:26 ============================================================================ +13:29:26 [ 1] [ 4] [0200] +13:29:26 [ 2] [ 16] [6213545000286231] +13:29:26 [ 3] [ 6] [010000] +13:29:26 [ 4] [ 12] [000020000000] +13:29:26 [ 7] [ 10] [0320133713] +13:29:26 [ 11] [ 6] [085597] +13:29:26 [ 12] [ 6] [133713] +13:29:26 [ 13] [ 4] [0320] +13:29:26 [ 14] [ 4] [4912] +13:29:26 [ 15] [ 4] [0320] +13:29:26 [ 18] [ 4] [6011] +13:29:26 [ 22] [ 3] [900] +13:29:26 [ 25] [ 2] [02] +13:29:26 [ 28] [ 9] [D00002000] +13:29:26 [ 32] [ 6] [220699] +13:29:26 [ 35] [ 32] [6213545000286231=491212018623973] +13:29:26 [ 37] [ 12] [507900140215] +13:29:26 [ 41] [ 8] [03000200] +13:29:26 [ 42] [ 15] [APTRA ] +13:29:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:29:26 [ 49] [ 3] [418] +13:29:26 [ 52] [ 16] [C9968DC28022891C] +13:29:26 ============================================================================ +13:29:26 + + +waiting on router queue for slot.... +13:29:26 Sending to : <0> +13:29:26 ============================================================================ +13:29:27 ============================================================================ +13:29:27 Slot Id : <351> +13:29:27 Transaction Type : RESPONSE +13:29:27 Received From : +13:29:27 ============================================================================ +13:29:27 FNo. Len. Field Value +13:29:27 ============================================================================ +13:29:27 [ 1] [ 4] [0210] +13:29:27 [ 2] [ 16] [6213545000286231] +13:29:27 [ 3] [ 6] [010000] +13:29:27 [ 4] [ 12] [000020000000] +13:29:27 [ 7] [ 10] [0320133713] +13:29:27 [ 11] [ 6] [085597] +13:29:27 [ 12] [ 6] [133713] +13:29:27 [ 13] [ 4] [0320] +13:29:27 [ 15] [ 4] [0320] +13:29:27 [ 18] [ 4] [6011] +13:29:27 [ 32] [ 6] [220699] +13:29:27 [ 35] [ 32] [6213545000286231=491212018623973] +13:29:27 [ 37] [ 12] [507900140215] +13:29:27 [ 38] [ 6] [495285] +13:29:27 [ 39] [ 2] [00] +13:29:27 [ 41] [ 8] [03000200] +13:29:27 [ 49] [ 3] [418] +13:29:27 [ 54] [ 40] [0001418C0000481229690002418C000048122969] +13:29:27 ============================================================================ +13:29:27 Sending to : +13:29:27 ============================================================================ +13:29:27 + + +waiting on router queue for slot.... +13:29:29 ============================================================================ +13:29:29 Slot Id : <351> +13:29:29 Transaction Type : RESPONSE +13:29:29 Received From : +13:29:29 ============================================================================ +13:29:29 FNo. Len. Field Value +13:29:29 ============================================================================ +13:29:29 [ 1] [ 4] [0210] +13:29:29 [ 2] [ 16] [6213545000286231] +13:29:29 [ 3] [ 6] [010000] +13:29:29 [ 4] [ 12] [000020000000] +13:29:29 [ 7] [ 10] [0320133713] +13:29:29 [ 11] [ 6] [085597] +13:29:29 [ 12] [ 6] [133713] +13:29:29 [ 13] [ 4] [0320] +13:29:29 [ 15] [ 4] [0320] +13:29:29 [ 18] [ 4] [6011] +13:29:29 [ 32] [ 6] [220699] +13:29:29 [ 35] [ 32] [6213545000286231=491212018623973] +13:29:29 [ 37] [ 12] [507900140215] +13:29:29 [ 38] [ 6] [495285] +13:29:29 [ 39] [ 2] [00] +13:29:29 [ 41] [ 8] [03000200] +13:29:29 [ 49] [ 3] [418] +13:29:29 [ 54] [ 40] [0001418C0000481229690002418C000048122969] +13:29:29 ============================================================================ +13:29:29 Calculate Source COMM Id = 1 +13:29:29 ============================================================================ +13:29:29 + + +waiting on router queue for slot.... +13:29:35 ============================================================================ +13:29:35 Slot Id : <389> +13:29:35 Transaction Type : REQUEST +13:29:35 Received From : +13:29:35 ============================================================================ +13:29:35 FNo. Len. Field Value +13:29:35 ============================================================================ +13:29:35 [ 1] [ 4] [0800] +13:29:35 [ 7] [ 10] [0320062843] +13:29:35 [ 11] [ 6] [156562] +13:29:35 [ 70] [ 3] [301] +13:29:35 ============================================================================ +13:29:35 + + +waiting on router queue for slot.... +13:29:35 Sending to : +13:29:35 ============================================================================ +13:29:35 ============================================================================ +13:29:35 Slot Id : <389> +13:29:35 Transaction Type : RESPONSE +13:29:35 Received From : +13:29:35 ============================================================================ +13:29:35 FNo. Len. Field Value +13:29:35 ============================================================================ +13:29:35 [ 1] [ 4] [0810] +13:29:35 [ 7] [ 10] [0320062843] +13:29:35 [ 11] [ 6] [156562] +13:29:35 [ 39] [ 2] [00] +13:29:35 [ 70] [ 3] [301] +13:29:35 ============================================================================ +13:29:35 Calculate Source COMM Id = 2 +13:29:35 ============================================================================ +13:29:35 + + +waiting on router queue for slot.... +13:29:36 ============================================================================ +13:29:36 Slot Id : <390> +13:29:36 Transaction Type : REQUEST +13:29:36 Received From : +13:29:36 ============================================================================ +13:29:36 FNo. Len. Field Value +13:29:36 ============================================================================ +13:29:36 [ 1] [ 4] [0200] +13:29:36 [ 2] [ 16] [6213544002213004] +13:29:36 [ 3] [ 6] [010000] +13:29:36 [ 4] [ 12] [000050000000] +13:29:36 [ 7] [ 10] [0320132727] +13:29:36 [ 11] [ 6] [946594] +13:29:36 [ 12] [ 6] [132727] +13:29:36 [ 13] [ 4] [0320] +13:29:36 [ 15] [ 4] [0320] +13:29:36 [ 18] [ 4] [6011] +13:29:36 [ 19] [ 3] [418] +13:29:36 [ 22] [ 3] [021] +13:29:36 [ 25] [ 2] [01] +13:29:36 [ 28] [ 9] [D00002000] +13:29:36 [ 32] [ 6] [668899] +13:29:36 [ 35] [ 32] [6213544002213004=491212011300457] +13:29:36 [ 37] [ 12] [507901912191] +13:29:36 [ 41] [ 8] [03013004] +13:29:36 [ 42] [ 15] [APT ] +13:29:36 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:29:36 [ 49] [ 3] [418] +13:29:36 [ 52] [ 16] [F42292859D835504] +13:29:36 ============================================================================ +13:29:36 + + +waiting on router queue for slot.... +13:29:36 Sending to : +13:29:36 ============================================================================ +13:29:36 Sending to : +13:29:36 ============================================================================ +13:29:36 ============================================================================ +13:29:36 Slot Id : <390> +13:29:36 Transaction Type : REQUEST +13:29:36 Received From : +13:29:36 ============================================================================ +13:29:36 FNo. Len. Field Value +13:29:36 ============================================================================ +13:29:36 [ 1] [ 4] [0200] +13:29:36 [ 2] [ 16] [6213544002213004] +13:29:36 [ 3] [ 6] [010000] +13:29:36 [ 4] [ 12] [000050000000] +13:29:36 [ 7] [ 10] [0320132727] +13:29:36 [ 11] [ 6] [946594] +13:29:36 [ 12] [ 6] [132727] +13:29:36 [ 13] [ 4] [0320] +13:29:36 [ 15] [ 4] [0320] +13:29:36 [ 18] [ 4] [6011] +13:29:36 [ 19] [ 3] [418] +13:29:36 [ 22] [ 3] [021] +13:29:36 [ 25] [ 2] [01] +13:29:36 [ 28] [ 9] [D00002000] +13:29:36 [ 32] [ 6] [668899] +13:29:36 [ 35] [ 32] [6213544002213004=491212011300457] +13:29:36 [ 37] [ 12] [507901912191] +13:29:36 [ 41] [ 8] [03013004] +13:29:36 [ 42] [ 15] [APT ] +13:29:36 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:29:36 [ 49] [ 3] [418] +13:29:36 [ 52] [ 16] [F42292859D835504] +13:29:36 ============================================================================ +13:29:36 + + +waiting on router queue for slot.... +13:29:36 Sending to : +13:29:36 ============================================================================ +13:29:36 ============================================================================ +13:29:36 Slot Id : <390> +13:29:36 Transaction Type : REQUEST +13:29:36 Received From : +13:29:36 ============================================================================ +13:29:36 FNo. Len. Field Value +13:29:36 ============================================================================ +13:29:36 [ 1] [ 4] [0200] +13:29:36 [ 2] [ 16] [6213544002213004] +13:29:36 [ 3] [ 6] [010000] +13:29:36 [ 4] [ 12] [000050000000] +13:29:36 [ 7] [ 10] [0320132727] +13:29:36 [ 11] [ 6] [946594] +13:29:36 [ 12] [ 6] [132727] +13:29:36 [ 13] [ 4] [0320] +13:29:36 [ 15] [ 4] [0320] +13:29:36 [ 18] [ 4] [6011] +13:29:36 [ 19] [ 3] [418] +13:29:36 [ 22] [ 3] [021] +13:29:36 [ 25] [ 2] [01] +13:29:36 [ 28] [ 9] [D00002000] +13:29:36 [ 32] [ 6] [668899] +13:29:36 [ 35] [ 32] [6213544002213004=491212011300457] +13:29:36 [ 37] [ 12] [507901912191] +13:29:36 [ 41] [ 8] [03013004] +13:29:36 [ 42] [ 15] [APT ] +13:29:36 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:29:36 [ 49] [ 3] [418] +13:29:36 [ 52] [ 16] [CABA6F28B0929160] +13:29:36 ============================================================================ +13:29:36 + + +waiting on router queue for slot.... +13:29:36 Sending to : <0> +13:29:36 ============================================================================ +13:29:37 ============================================================================ +13:29:37 Slot Id : <390> +13:29:37 Transaction Type : RESPONSE +13:29:37 Received From : +13:29:37 ============================================================================ +13:29:37 FNo. Len. Field Value +13:29:37 ============================================================================ +13:29:37 [ 1] [ 4] [0210] +13:29:37 [ 2] [ 16] [6213544002213004] +13:29:37 [ 3] [ 6] [010000] +13:29:37 [ 4] [ 12] [000050000000] +13:29:37 [ 7] [ 10] [0320132727] +13:29:37 [ 11] [ 6] [946594] +13:29:37 [ 12] [ 6] [132727] +13:29:37 [ 13] [ 4] [0320] +13:29:37 [ 15] [ 4] [0320] +13:29:37 [ 18] [ 4] [6011] +13:29:37 [ 19] [ 3] [418] +13:29:37 [ 32] [ 6] [668899] +13:29:37 [ 35] [ 32] [6213544002213004=491212011300457] +13:29:37 [ 37] [ 12] [507901912191] +13:29:37 [ 38] [ 6] [946594] +13:29:37 [ 39] [ 2] [51] +13:29:37 [ 41] [ 8] [03013004] +13:29:37 [ 49] [ 3] [418] +13:29:37 [ 54] [ 40] [0001418C0000294536000002418C000029453600] +13:29:37 ============================================================================ +13:29:37 Sending to : +13:29:37 ============================================================================ +13:29:37 + + +waiting on router queue for slot.... +13:29:38 ============================================================================ +13:29:38 Slot Id : <361> +13:29:38 Transaction Type : REQUEST +13:29:38 Received From : +13:29:38 ============================================================================ +13:29:38 FNo. Len. Field Value +13:29:38 ============================================================================ +13:29:38 [ 1] [ 4] [0200] +13:29:38 [ 2] [ 16] [6213545000512958] +13:29:38 [ 3] [ 6] [301000] +13:29:38 [ 7] [ 10] [0320062845] +13:29:38 [ 11] [ 6] [269305] +13:29:38 [ 12] [ 6] [132845] +13:29:38 [ 13] [ 4] [0320] +13:29:38 [ 14] [ 4] [4912] +13:29:38 [ 15] [ 4] [0320] +13:29:38 [ 18] [ 4] [6011] +13:29:38 [ 19] [ 3] [418] +13:29:38 [ 22] [ 3] [021] +13:29:38 [ 25] [ 2] [01] +13:29:38 [ 32] [ 6] [180893] +13:29:38 [ 35] [ 32] [6213545000512958=491212011295138] +13:29:38 [ 37] [ 12] [507906269305] +13:29:38 [ 41] [ 8] [0112CPBR] +13:29:38 [ 42] [ 15] [999999 ] +13:29:38 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +13:29:38 [ 49] [ 3] [418] +13:29:38 [ 52] [ 16] [36353D28704B99D6] +13:29:38 ============================================================================ +13:29:38 + + +waiting on router queue for slot.... +13:29:38 Sending to : +13:29:38 ============================================================================ +13:29:38 Sending to : +13:29:38 ============================================================================ +13:29:38 ============================================================================ +13:29:38 Slot Id : <361> +13:29:38 Transaction Type : REQUEST +13:29:38 Received From : +13:29:38 ============================================================================ +13:29:38 FNo. Len. Field Value +13:29:38 ============================================================================ +13:29:38 [ 1] [ 4] [0200] +13:29:38 [ 2] [ 16] [6213545000512958] +13:29:38 [ 3] [ 6] [301000] +13:29:38 [ 7] [ 10] [0320062845] +13:29:38 [ 11] [ 6] [269305] +13:29:38 [ 12] [ 6] [132845] +13:29:38 [ 13] [ 4] [0320] +13:29:38 [ 14] [ 4] [4912] +13:29:38 [ 15] [ 4] [0320] +13:29:38 [ 18] [ 4] [6011] +13:29:38 [ 19] [ 3] [418] +13:29:38 [ 22] [ 3] [021] +13:29:38 [ 25] [ 2] [01] +13:29:38 [ 32] [ 6] [180893] +13:29:38 [ 35] [ 32] [6213545000512958=491212011295138] +13:29:38 [ 37] [ 12] [507906269305] +13:29:38 [ 41] [ 8] [0112CPBR] +13:29:38 [ 42] [ 15] [999999 ] +13:29:38 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +13:29:38 [ 49] [ 3] [418] +13:29:38 [ 52] [ 16] [36353D28704B99D6] +13:29:38 ============================================================================ +13:29:38 + + +waiting on router queue for slot.... +13:29:38 Sending to : +13:29:38 ============================================================================ +13:29:38 ============================================================================ +13:29:38 Slot Id : <361> +13:29:38 Transaction Type : REQUEST +13:29:38 Received From : +13:29:38 ============================================================================ +13:29:38 FNo. Len. Field Value +13:29:38 ============================================================================ +13:29:38 [ 1] [ 4] [0200] +13:29:38 [ 2] [ 16] [6213545000512958] +13:29:38 [ 3] [ 6] [301000] +13:29:38 [ 7] [ 10] [0320062845] +13:29:38 [ 11] [ 6] [269305] +13:29:38 [ 12] [ 6] [132845] +13:29:38 [ 13] [ 4] [0320] +13:29:38 [ 14] [ 4] [4912] +13:29:38 [ 15] [ 4] [0320] +13:29:38 [ 18] [ 4] [6011] +13:29:38 [ 19] [ 3] [418] +13:29:38 [ 22] [ 3] [021] +13:29:38 [ 25] [ 2] [01] +13:29:38 [ 32] [ 6] [180893] +13:29:38 [ 35] [ 32] [6213545000512958=491212011295138] +13:29:38 [ 37] [ 12] [507906269305] +13:29:38 [ 41] [ 8] [0112CPBR] +13:29:38 [ 42] [ 15] [999999 ] +13:29:38 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +13:29:38 [ 49] [ 3] [418] +13:29:38 [ 52] [ 16] [A7A1F8EAAF8A6685] +13:29:38 ============================================================================ +13:29:38 + + +waiting on router queue for slot.... +13:29:38 Sending to : <0> +13:29:38 ============================================================================ +13:29:38 ============================================================================ +13:29:38 Slot Id : <390> +13:29:38 Transaction Type : RESPONSE +13:29:38 Received From : +13:29:38 ============================================================================ +13:29:38 FNo. Len. Field Value +13:29:38 ============================================================================ +13:29:38 [ 1] [ 4] [0210] +13:29:38 [ 2] [ 16] [6213544002213004] +13:29:38 [ 3] [ 6] [010000] +13:29:38 [ 4] [ 12] [000050000000] +13:29:38 [ 7] [ 10] [0320132727] +13:29:38 [ 11] [ 6] [946594] +13:29:38 [ 12] [ 6] [132727] +13:29:38 [ 13] [ 4] [0320] +13:29:38 [ 15] [ 4] [0320] +13:29:38 [ 18] [ 4] [6011] +13:29:38 [ 19] [ 3] [418] +13:29:38 [ 32] [ 6] [668899] +13:29:38 [ 35] [ 32] [6213544002213004=491212011300457] +13:29:38 [ 37] [ 12] [507901912191] +13:29:38 [ 38] [ 6] [946594] +13:29:38 [ 39] [ 2] [51] +13:29:38 [ 41] [ 8] [03013004] +13:29:38 [ 49] [ 3] [418] +13:29:38 [ 54] [ 40] [0001418C0000294536000002418C000029453600] +13:29:38 ============================================================================ +13:29:38 Calculate Source COMM Id = 4 +13:29:38 ============================================================================ +13:29:38 + + +waiting on router queue for slot.... +13:29:38 ============================================================================ +13:29:38 Slot Id : <361> +13:29:38 Transaction Type : RESPONSE +13:29:38 Received From : +13:29:38 ============================================================================ +13:29:38 FNo. Len. Field Value +13:29:38 ============================================================================ +13:29:38 [ 1] [ 4] [0210] +13:29:38 [ 2] [ 16] [6213545000512958] +13:29:38 [ 3] [ 6] [301000] +13:29:38 [ 4] [ 12] [000000000000] +13:29:38 [ 7] [ 10] [0320062845] +13:29:38 [ 11] [ 6] [269305] +13:29:38 [ 12] [ 6] [132845] +13:29:38 [ 13] [ 4] [0320] +13:29:38 [ 15] [ 4] [0320] +13:29:38 [ 18] [ 4] [6011] +13:29:38 [ 19] [ 3] [418] +13:29:38 [ 32] [ 6] [180893] +13:29:38 [ 35] [ 32] [6213545000512958=491212011295138] +13:29:38 [ 37] [ 12] [507906269305] +13:29:38 [ 38] [ 6] [945014] +13:29:38 [ 39] [ 2] [00] +13:29:38 [ 41] [ 8] [0112CPBR] +13:29:38 [ 49] [ 3] [418] +13:29:38 [ 54] [ 40] [1001418C0002627167931002418C000262716793] +13:29:38 ============================================================================ +13:29:38 Sending to : +13:29:38 ============================================================================ +13:29:38 + + +waiting on router queue for slot.... +13:29:40 ============================================================================ +13:29:40 Slot Id : <361> +13:29:40 Transaction Type : RESPONSE +13:29:40 Received From : +13:29:40 ============================================================================ +13:29:40 FNo. Len. Field Value +13:29:40 ============================================================================ +13:29:40 [ 1] [ 4] [0210] +13:29:40 [ 2] [ 16] [6213545000512958] +13:29:40 [ 3] [ 6] [301000] +13:29:40 [ 4] [ 12] [000000000000] +13:29:40 [ 7] [ 10] [0320062845] +13:29:40 [ 11] [ 6] [269305] +13:29:40 [ 12] [ 6] [132845] +13:29:40 [ 13] [ 4] [0320] +13:29:40 [ 15] [ 4] [0320] +13:29:40 [ 18] [ 4] [6011] +13:29:40 [ 19] [ 3] [418] +13:29:40 [ 32] [ 6] [180893] +13:29:40 [ 35] [ 32] [6213545000512958=491212011295138] +13:29:40 [ 37] [ 12] [507906269305] +13:29:40 [ 38] [ 6] [945014] +13:29:40 [ 39] [ 2] [00] +13:29:40 [ 41] [ 8] [0112CPBR] +13:29:40 [ 49] [ 3] [418] +13:29:40 [ 54] [ 40] [1001418C0002627167931002418C000262716793] +13:29:40 ============================================================================ +13:29:40 Calculate Source COMM Id = 2 +13:29:40 ============================================================================ +13:29:40 + + +waiting on router queue for slot.... +13:29:44 ============================================================================ +13:29:44 Slot Id : <376> +13:29:44 Transaction Type : REQUEST +13:29:44 Received From : +13:29:44 ============================================================================ +13:29:44 FNo. Len. Field Value +13:29:44 ============================================================================ +13:29:44 [ 1] [ 4] [0800] +13:29:44 [ 2] [ 5] [02531] +13:29:44 [ 3] [ 6] [579138] +13:29:44 [ 7] [ 10] [0320062944] +13:29:44 [ 11] [ 6] [807195] +13:29:44 [ 15] [ 10] [0320062944] +13:29:44 [ 37] [ 11] [57913807195] +13:29:44 [ 70] [ 3] [001] +13:29:44 ============================================================================ +13:29:44 + + +waiting on router queue for slot.... +13:29:44 ============================================================================ +13:29:44 Slot Id : <376> +13:29:44 Transaction Type : RESPONSE +13:29:44 Received From : +13:29:44 ============================================================================ +13:29:44 FNo. Len. Field Value +13:29:44 ============================================================================ +13:29:44 [ 1] [ 4] [0810] +13:29:44 [ 7] [ 10] [0320062944] +13:29:44 [ 11] [ 6] [807195] +13:29:44 [ 15] [ 4] [0320] +13:29:44 [ 37] [ 12] [57913807195] +13:29:44 [ 39] [ 2] [00] +13:29:44 [ 70] [ 3] [001] +13:29:44 ============================================================================ +13:29:44 Sending to : +13:29:44 ============================================================================ +13:29:44 + + +waiting on router queue for slot.... +13:29:47 ============================================================================ +13:29:47 Slot Id : <359> +13:29:47 Transaction Type : REQUEST +13:29:47 Received From : +13:29:47 ============================================================================ +13:29:47 FNo. Len. Field Value +13:29:47 ============================================================================ +13:29:47 [ 1] [ 4] [0200] +13:29:47 [ 2] [ 16] [2206990000070185] +13:29:47 [ 3] [ 6] [010000] +13:29:47 [ 4] [ 12] [000100000000] +13:29:47 [ 7] [ 10] [0320132943] +13:29:47 [ 11] [ 6] [757754] +13:29:47 [ 12] [ 6] [132943] +13:29:47 [ 13] [ 4] [0320] +13:29:47 [ 15] [ 4] [0320] +13:29:47 [ 18] [ 4] [6011] +13:29:47 [ 22] [ 3] [900] +13:29:47 [ 25] [ 2] [02] +13:29:47 [ 28] [ 9] [D00002000] +13:29:47 [ 32] [ 6] [621354] +13:29:47 [ 35] [ 32] [2206990000070185=970812615538647] +13:29:47 [ 37] [ 12] [507904807742] +13:29:47 [ 41] [ 8] [07001600] +13:29:47 [ 42] [ 15] [NATIVE ] +13:29:47 [ 43] [ 40] [Long District Long LAO] +13:29:47 [ 49] [ 3] [418] +13:29:47 [ 52] [ 16] [3EBEF436CBC6C7AC] +13:29:47 ============================================================================ +13:29:47 + + +waiting on router queue for slot.... +13:29:47 Sending to : +13:29:47 ============================================================================ +13:29:47 Sending to : +13:29:47 ============================================================================ +13:29:47 ============================================================================ +13:29:47 Slot Id : <359> +13:29:47 Transaction Type : REQUEST +13:29:47 Received From : +13:29:47 ============================================================================ +13:29:47 FNo. Len. Field Value +13:29:47 ============================================================================ +13:29:47 [ 1] [ 4] [0200] +13:29:47 [ 2] [ 16] [2206990000070185] +13:29:47 [ 3] [ 6] [010000] +13:29:47 [ 4] [ 12] [000100000000] +13:29:47 [ 7] [ 10] [0320132943] +13:29:47 [ 11] [ 6] [757754] +13:29:47 [ 12] [ 6] [132943] +13:29:47 [ 13] [ 4] [0320] +13:29:47 [ 15] [ 4] [0320] +13:29:47 [ 18] [ 4] [6011] +13:29:47 [ 22] [ 3] [900] +13:29:47 [ 25] [ 2] [02] +13:29:47 [ 28] [ 9] [D00002000] +13:29:47 [ 32] [ 6] [621354] +13:29:47 [ 35] [ 32] [2206990000070185=970812615538647] +13:29:47 [ 37] [ 12] [507904807742] +13:29:47 [ 41] [ 8] [07001600] +13:29:47 [ 42] [ 15] [NATIVE ] +13:29:47 [ 43] [ 40] [Long District Long LAO] +13:29:47 [ 49] [ 3] [418] +13:29:47 [ 52] [ 16] [3EBEF436CBC6C7AC] +13:29:47 ============================================================================ +13:29:47 + + +waiting on router queue for slot.... +13:29:47 Sending to : +13:29:47 ============================================================================ +13:29:47 ============================================================================ +13:29:47 Slot Id : <359> +13:29:47 Transaction Type : REQUEST +13:29:47 Received From : +13:29:47 ============================================================================ +13:29:47 FNo. Len. Field Value +13:29:47 ============================================================================ +13:29:47 [ 1] [ 4] [0200] +13:29:47 [ 2] [ 16] [2206990000070185] +13:29:47 [ 3] [ 6] [010000] +13:29:47 [ 4] [ 12] [000100000000] +13:29:47 [ 7] [ 10] [0320132943] +13:29:47 [ 11] [ 6] [757754] +13:29:47 [ 12] [ 6] [132943] +13:29:47 [ 13] [ 4] [0320] +13:29:47 [ 15] [ 4] [0320] +13:29:47 [ 18] [ 4] [6011] +13:29:47 [ 22] [ 3] [900] +13:29:47 [ 25] [ 2] [02] +13:29:47 [ 28] [ 9] [D00002000] +13:29:47 [ 32] [ 6] [621354] +13:29:47 [ 35] [ 32] [2206990000070185=970812615538647] +13:29:47 [ 37] [ 12] [507904807742] +13:29:47 [ 41] [ 8] [07001600] +13:29:47 [ 42] [ 15] [NATIVE ] +13:29:47 [ 43] [ 40] [Long District Long LAO] +13:29:47 [ 49] [ 3] [418] +13:29:47 [ 52] [ 16] [B1899B604806B249] +13:29:47 ============================================================================ +13:29:47 + + +waiting on router queue for slot.... +13:29:47 Sending to : <1> +13:29:47 ============================================================================ +13:29:49 ============================================================================ +13:29:49 Slot Id : <359> +13:29:49 Transaction Type : RESPONSE +13:29:49 Received From : +13:29:49 ============================================================================ +13:29:49 FNo. Len. Field Value +13:29:49 ============================================================================ +13:29:49 [ 1] [ 4] [0210] +13:29:49 [ 2] [ 16] [2206990000070185] +13:29:49 [ 3] [ 6] [010000] +13:29:49 [ 4] [ 12] [000100000000] +13:29:49 [ 7] [ 10] [0320132943] +13:29:49 [ 11] [ 6] [757754] +13:29:49 [ 12] [ 6] [132943] +13:29:49 [ 13] [ 4] [0320] +13:29:49 [ 15] [ 4] [0320] +13:29:49 [ 18] [ 4] [6011] +13:29:49 [ 32] [ 6] [621354] +13:29:49 [ 35] [ 32] [2206990000070185=970812615538647] +13:29:49 [ 37] [ 12] [507904807742] +13:29:49 [ 38] [ 6] [007019] +13:29:49 [ 39] [ 2] [00] +13:29:49 [ 41] [ 8] [07001600] +13:29:49 [ 49] [ 3] [418] +13:29:49 [ 54] [ 40] [0001418C0010511208000002418C001051120800] +13:29:49 ============================================================================ +13:29:49 Sending to : +13:29:49 ============================================================================ +13:29:49 + + +waiting on router queue for slot.... +13:29:51 ============================================================================ +13:29:51 Slot Id : <359> +13:29:51 Transaction Type : RESPONSE +13:29:51 Received From : +13:29:51 ============================================================================ +13:29:51 FNo. Len. Field Value +13:29:51 ============================================================================ +13:29:51 [ 1] [ 4] [0210] +13:29:51 [ 2] [ 16] [2206990000070185] +13:29:51 [ 3] [ 6] [010000] +13:29:51 [ 4] [ 12] [000100000000] +13:29:51 [ 7] [ 10] [0320132943] +13:29:51 [ 11] [ 6] [757754] +13:29:51 [ 12] [ 6] [132943] +13:29:51 [ 13] [ 4] [0320] +13:29:51 [ 15] [ 4] [0320] +13:29:51 [ 18] [ 4] [6011] +13:29:51 [ 32] [ 6] [621354] +13:29:51 [ 35] [ 32] [2206990000070185=970812615538647] +13:29:51 [ 37] [ 12] [507904807742] +13:29:51 [ 38] [ 6] [007019] +13:29:51 [ 39] [ 2] [00] +13:29:51 [ 41] [ 8] [07001600] +13:29:51 [ 49] [ 3] [418] +13:29:51 [ 54] [ 40] [0001418C0010511208000002418C001051120800] +13:29:51 ============================================================================ +13:29:51 Calculate Source COMM Id = 0 +13:29:51 ============================================================================ +13:29:51 + + +waiting on router queue for slot.... +13:29:52 ============================================================================ +13:29:52 Slot Id : <374> +13:29:52 Transaction Type : REQUEST +13:29:52 Received From : +13:29:52 ============================================================================ +13:29:52 FNo. Len. Field Value +13:29:52 ============================================================================ +13:29:52 [ 1] [ 4] [0800] +13:29:52 [ 7] [ 10] [0320062858] +13:29:52 [ 11] [ 6] [156563] +13:29:52 [ 70] [ 3] [301] +13:29:52 ============================================================================ +13:29:52 + + +waiting on router queue for slot.... +13:29:52 Sending to : +13:29:52 ============================================================================ +13:29:52 ============================================================================ +13:29:52 Slot Id : <374> +13:29:52 Transaction Type : RESPONSE +13:29:52 Received From : +13:29:52 ============================================================================ +13:29:52 FNo. Len. Field Value +13:29:52 ============================================================================ +13:29:52 [ 1] [ 4] [0810] +13:29:52 [ 7] [ 10] [0320062858] +13:29:52 [ 11] [ 6] [156563] +13:29:52 [ 39] [ 2] [00] +13:29:52 [ 70] [ 3] [301] +13:29:52 ============================================================================ +13:29:52 Calculate Source COMM Id = 2 +13:29:52 ============================================================================ +13:29:52 + + +waiting on router queue for slot.... +13:29:55 ============================================================================ +13:29:55 Slot Id : <410> +13:29:55 Transaction Type : REQUEST +13:29:55 Received From : +13:29:55 ============================================================================ +13:29:55 FNo. Len. Field Value +13:29:55 ============================================================================ +13:29:55 [ 1] [ 4] [0800] +13:29:55 [ 7] [ 10] [0320063742] +13:29:55 [ 11] [ 6] [096900] +13:29:55 [ 37] [ 12] [57913096900] +13:29:55 [ 70] [ 3] [301] +13:29:55 ============================================================================ +13:29:55 + + +waiting on router queue for slot.... +13:29:55 Sending to : +13:29:55 ============================================================================ +13:29:55 ============================================================================ +13:29:55 Slot Id : <410> +13:29:55 Transaction Type : RESPONSE +13:29:55 Received From : +13:29:55 ============================================================================ +13:29:55 FNo. Len. Field Value +13:29:55 ============================================================================ +13:29:55 [ 1] [ 4] [0810] +13:29:55 [ 7] [ 10] [0320063742] +13:29:55 [ 11] [ 6] [096900] +13:29:55 [ 37] [ 12] [579130969000] +13:29:55 [ 39] [ 2] [00] +13:29:55 [ 70] [ 3] [810] +13:29:55 ============================================================================ +13:29:55 Calculate Source COMM Id = 1 +13:29:55 ============================================================================ +13:29:55 + + +waiting on router queue for slot.... +13:30:00 ============================================================================ +13:30:00 Slot Id : <395> +13:30:00 Transaction Type : REQUEST +13:30:00 Received From : +13:30:00 ============================================================================ +13:30:00 FNo. Len. Field Value +13:30:00 ============================================================================ +13:30:00 [ 1] [ 4] [0200] +13:30:00 [ 2] [ 16] [6213544002213004] +13:30:00 [ 3] [ 6] [301000] +13:30:00 [ 4] [ 12] [000000000000] +13:30:00 [ 7] [ 10] [0320132751] +13:30:00 [ 11] [ 6] [946611] +13:30:00 [ 12] [ 6] [132751] +13:30:00 [ 13] [ 4] [0320] +13:30:00 [ 15] [ 4] [0320] +13:30:00 [ 18] [ 4] [6011] +13:30:00 [ 19] [ 3] [418] +13:30:00 [ 22] [ 3] [021] +13:30:00 [ 25] [ 2] [01] +13:30:00 [ 28] [ 9] [D00000000] +13:30:00 [ 32] [ 6] [668899] +13:30:00 [ 35] [ 32] [6213544002213004=491212011300457] +13:30:00 [ 37] [ 12] [507901912192] +13:30:00 [ 41] [ 8] [03013004] +13:30:00 [ 42] [ 15] [APT ] +13:30:00 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:30:00 [ 49] [ 3] [418] +13:30:00 [ 52] [ 16] [F42292859D835504] +13:30:00 ============================================================================ +13:30:00 + + +waiting on router queue for slot.... +13:30:00 Sending to : +13:30:00 ============================================================================ +13:30:00 Sending to : +13:30:00 ============================================================================ +13:30:01 ============================================================================ +13:30:01 Slot Id : <395> +13:30:01 Transaction Type : REQUEST +13:30:01 Received From : +13:30:01 ============================================================================ +13:30:01 FNo. Len. Field Value +13:30:01 ============================================================================ +13:30:01 [ 1] [ 4] [0200] +13:30:01 [ 2] [ 16] [6213544002213004] +13:30:01 [ 3] [ 6] [301000] +13:30:01 [ 4] [ 12] [000000000000] +13:30:01 [ 7] [ 10] [0320132751] +13:30:01 [ 11] [ 6] [946611] +13:30:01 [ 12] [ 6] [132751] +13:30:01 [ 13] [ 4] [0320] +13:30:01 [ 15] [ 4] [0320] +13:30:01 [ 18] [ 4] [6011] +13:30:01 [ 19] [ 3] [418] +13:30:01 [ 22] [ 3] [021] +13:30:01 [ 25] [ 2] [01] +13:30:01 [ 28] [ 9] [D00000000] +13:30:01 [ 32] [ 6] [668899] +13:30:01 [ 35] [ 32] [6213544002213004=491212011300457] +13:30:01 [ 37] [ 12] [507901912192] +13:30:01 [ 41] [ 8] [03013004] +13:30:01 [ 42] [ 15] [APT ] +13:30:01 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:30:01 [ 49] [ 3] [418] +13:30:01 [ 52] [ 16] [F42292859D835504] +13:30:01 ============================================================================ +13:30:01 + + +waiting on router queue for slot.... +13:30:01 Sending to : +13:30:01 ============================================================================ +13:30:01 ============================================================================ +13:30:01 Slot Id : <395> +13:30:01 Transaction Type : REQUEST +13:30:01 Received From : +13:30:01 ============================================================================ +13:30:01 FNo. Len. Field Value +13:30:01 ============================================================================ +13:30:01 [ 1] [ 4] [0200] +13:30:01 [ 2] [ 16] [6213544002213004] +13:30:01 [ 3] [ 6] [301000] +13:30:01 [ 4] [ 12] [000000000000] +13:30:01 [ 7] [ 10] [0320132751] +13:30:01 [ 11] [ 6] [946611] +13:30:01 [ 12] [ 6] [132751] +13:30:01 [ 13] [ 4] [0320] +13:30:01 [ 15] [ 4] [0320] +13:30:01 [ 18] [ 4] [6011] +13:30:01 [ 19] [ 3] [418] +13:30:01 [ 22] [ 3] [021] +13:30:01 [ 25] [ 2] [01] +13:30:01 [ 28] [ 9] [D00000000] +13:30:01 [ 32] [ 6] [668899] +13:30:01 [ 35] [ 32] [6213544002213004=491212011300457] +13:30:01 [ 37] [ 12] [507901912192] +13:30:01 [ 41] [ 8] [03013004] +13:30:01 [ 42] [ 15] [APT ] +13:30:01 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:30:01 [ 49] [ 3] [418] +13:30:01 [ 52] [ 16] [CABA6F28B0929160] +13:30:01 ============================================================================ +13:30:01 + + +waiting on router queue for slot.... +13:30:01 Sending to : <0> +13:30:01 ============================================================================ +13:30:01 ============================================================================ +13:30:01 Slot Id : <395> +13:30:01 Transaction Type : RESPONSE +13:30:01 Received From : +13:30:01 ============================================================================ +13:30:01 FNo. Len. Field Value +13:30:01 ============================================================================ +13:30:01 [ 1] [ 4] [0210] +13:30:01 [ 2] [ 16] [6213544002213004] +13:30:01 [ 3] [ 6] [301000] +13:30:01 [ 4] [ 12] [000000000000] +13:30:01 [ 7] [ 10] [0320132751] +13:30:01 [ 11] [ 6] [946611] +13:30:01 [ 12] [ 6] [132751] +13:30:01 [ 13] [ 4] [0320] +13:30:01 [ 15] [ 4] [0320] +13:30:01 [ 18] [ 4] [6011] +13:30:01 [ 19] [ 3] [418] +13:30:01 [ 32] [ 6] [668899] +13:30:01 [ 35] [ 32] [6213544002213004=491212011300457] +13:30:01 [ 37] [ 12] [507901912192] +13:30:01 [ 38] [ 6] [829271] +13:30:01 [ 39] [ 2] [00] +13:30:01 [ 41] [ 8] [03013004] +13:30:01 [ 49] [ 3] [418] +13:30:01 [ 54] [ 40] [1001418C0000294536001002418C000029453600] +13:30:01 ============================================================================ +13:30:01 Sending to : +13:30:01 ============================================================================ +13:30:01 + + +waiting on router queue for slot.... +13:30:02 ============================================================================ +13:30:02 Slot Id : <383> +13:30:02 Transaction Type : REQUEST +13:30:02 Received From : +13:30:02 ============================================================================ +13:30:02 FNo. Len. Field Value +13:30:02 ============================================================================ +13:30:02 [ 1] [ 4] [0800] +13:30:02 [ 7] [ 10] [0320062910] +13:30:02 [ 11] [ 6] [156564] +13:30:02 [ 70] [ 3] [301] +13:30:02 ============================================================================ +13:30:02 + + +waiting on router queue for slot.... +13:30:02 Sending to : +13:30:02 ============================================================================ +13:30:02 ============================================================================ +13:30:02 Slot Id : <383> +13:30:02 Transaction Type : RESPONSE +13:30:02 Received From : +13:30:02 ============================================================================ +13:30:02 FNo. Len. Field Value +13:30:02 ============================================================================ +13:30:02 [ 1] [ 4] [0810] +13:30:02 [ 7] [ 10] [0320062910] +13:30:02 [ 11] [ 6] [156564] +13:30:02 [ 39] [ 2] [00] +13:30:02 [ 70] [ 3] [301] +13:30:02 ============================================================================ +13:30:02 Calculate Source COMM Id = 2 +13:30:02 ============================================================================ +13:30:02 + + +waiting on router queue for slot.... +13:30:02 ============================================================================ +13:30:02 Slot Id : <395> +13:30:02 Transaction Type : RESPONSE +13:30:02 Received From : +13:30:02 ============================================================================ +13:30:02 FNo. Len. Field Value +13:30:02 ============================================================================ +13:30:02 [ 1] [ 4] [0210] +13:30:02 [ 2] [ 16] [6213544002213004] +13:30:02 [ 3] [ 6] [301000] +13:30:02 [ 4] [ 12] [000000000000] +13:30:02 [ 7] [ 10] [0320132751] +13:30:02 [ 11] [ 6] [946611] +13:30:02 [ 12] [ 6] [132751] +13:30:02 [ 13] [ 4] [0320] +13:30:02 [ 15] [ 4] [0320] +13:30:02 [ 18] [ 4] [6011] +13:30:02 [ 19] [ 3] [418] +13:30:02 [ 32] [ 6] [668899] +13:30:02 [ 35] [ 32] [6213544002213004=491212011300457] +13:30:02 [ 37] [ 12] [507901912192] +13:30:02 [ 38] [ 6] [829271] +13:30:02 [ 39] [ 2] [00] +13:30:02 [ 41] [ 8] [03013004] +13:30:02 [ 49] [ 3] [418] +13:30:02 [ 54] [ 40] [1001418C0000294536001002418C000029453600] +13:30:02 ============================================================================ +13:30:02 Calculate Source COMM Id = 4 +13:30:02 ============================================================================ +13:30:02 + + +waiting on router queue for slot.... +13:30:03 ============================================================================ +13:30:03 Slot Id : <393> +13:30:03 Transaction Type : REQUEST +13:30:03 Received From : +13:30:03 ============================================================================ +13:30:03 FNo. Len. Field Value +13:30:03 ============================================================================ +13:30:03 [ 1] [ 4] [0200] +13:30:03 [ 2] [ 16] [6213544000116316] +13:30:03 [ 3] [ 6] [010000] +13:30:03 [ 4] [ 12] [000100000000] +13:30:03 [ 7] [ 10] [0320132753] +13:30:03 [ 11] [ 6] [946613] +13:30:03 [ 12] [ 6] [132753] +13:30:03 [ 13] [ 4] [0320] +13:30:03 [ 15] [ 4] [0320] +13:30:03 [ 18] [ 4] [6011] +13:30:03 [ 19] [ 3] [418] +13:30:03 [ 22] [ 3] [021] +13:30:03 [ 25] [ 2] [01] +13:30:03 [ 28] [ 9] [D00002000] +13:30:03 [ 32] [ 6] [668899] +13:30:03 [ 35] [ 32] [6213544000116316=491212011631469] +13:30:03 [ 37] [ 12] [507901881398] +13:30:03 [ 41] [ 8] [03014006] +13:30:03 [ 42] [ 15] [APT ] +13:30:03 [ 43] [ 40] [ SETHAMOUAK UNIT SETHAMOUA] +13:30:03 [ 49] [ 3] [418] +13:30:03 [ 52] [ 16] [639CC673390575FF] +13:30:03 ============================================================================ +13:30:03 + + +waiting on router queue for slot.... +13:30:03 Sending to : +13:30:03 ============================================================================ +13:30:03 Sending to : +13:30:03 ============================================================================ +13:30:03 ============================================================================ +13:30:03 Slot Id : <393> +13:30:03 Transaction Type : REQUEST +13:30:03 Received From : +13:30:03 ============================================================================ +13:30:03 FNo. Len. Field Value +13:30:03 ============================================================================ +13:30:03 [ 1] [ 4] [0200] +13:30:03 [ 2] [ 16] [6213544000116316] +13:30:03 [ 3] [ 6] [010000] +13:30:03 [ 4] [ 12] [000100000000] +13:30:03 [ 7] [ 10] [0320132753] +13:30:03 [ 11] [ 6] [946613] +13:30:03 [ 12] [ 6] [132753] +13:30:03 [ 13] [ 4] [0320] +13:30:03 [ 15] [ 4] [0320] +13:30:03 [ 18] [ 4] [6011] +13:30:03 [ 19] [ 3] [418] +13:30:03 [ 22] [ 3] [021] +13:30:03 [ 25] [ 2] [01] +13:30:03 [ 28] [ 9] [D00002000] +13:30:03 [ 32] [ 6] [668899] +13:30:03 [ 35] [ 32] [6213544000116316=491212011631469] +13:30:03 [ 37] [ 12] [507901881398] +13:30:03 [ 41] [ 8] [03014006] +13:30:03 [ 42] [ 15] [APT ] +13:30:03 [ 43] [ 40] [ SETHAMOUAK UNIT SETHAMOUA] +13:30:03 [ 49] [ 3] [418] +13:30:03 [ 52] [ 16] [639CC673390575FF] +13:30:03 ============================================================================ +13:30:03 + + +waiting on router queue for slot.... +13:30:03 Sending to : +13:30:03 ============================================================================ +13:30:03 ============================================================================ +13:30:03 Slot Id : <393> +13:30:03 Transaction Type : REQUEST +13:30:03 Received From : +13:30:03 ============================================================================ +13:30:03 FNo. Len. Field Value +13:30:03 ============================================================================ +13:30:03 [ 1] [ 4] [0200] +13:30:03 [ 2] [ 16] [6213544000116316] +13:30:03 [ 3] [ 6] [010000] +13:30:03 [ 4] [ 12] [000100000000] +13:30:03 [ 7] [ 10] [0320132753] +13:30:03 [ 11] [ 6] [946613] +13:30:03 [ 12] [ 6] [132753] +13:30:03 [ 13] [ 4] [0320] +13:30:03 [ 15] [ 4] [0320] +13:30:03 [ 18] [ 4] [6011] +13:30:03 [ 19] [ 3] [418] +13:30:03 [ 22] [ 3] [021] +13:30:03 [ 25] [ 2] [01] +13:30:03 [ 28] [ 9] [D00002000] +13:30:03 [ 32] [ 6] [668899] +13:30:03 [ 35] [ 32] [6213544000116316=491212011631469] +13:30:03 [ 37] [ 12] [507901881398] +13:30:03 [ 41] [ 8] [03014006] +13:30:03 [ 42] [ 15] [APT ] +13:30:03 [ 43] [ 40] [ SETHAMOUAK UNIT SETHAMOUA] +13:30:03 [ 49] [ 3] [418] +13:30:03 [ 52] [ 16] [E4E7D4DAE196E894] +13:30:03 ============================================================================ +13:30:03 + + +waiting on router queue for slot.... +13:30:03 Sending to : <0> +13:30:03 ============================================================================ +13:30:04 ============================================================================ +13:30:04 Slot Id : <393> +13:30:04 Transaction Type : RESPONSE +13:30:04 Received From : +13:30:04 ============================================================================ +13:30:04 FNo. Len. Field Value +13:30:04 ============================================================================ +13:30:04 [ 1] [ 4] [0210] +13:30:04 [ 2] [ 16] [6213544000116316] +13:30:04 [ 3] [ 6] [010000] +13:30:04 [ 4] [ 12] [000100000000] +13:30:04 [ 7] [ 10] [0320132753] +13:30:04 [ 11] [ 6] [946613] +13:30:04 [ 12] [ 6] [132753] +13:30:04 [ 13] [ 4] [0320] +13:30:04 [ 15] [ 4] [0320] +13:30:04 [ 18] [ 4] [6011] +13:30:04 [ 19] [ 3] [418] +13:30:04 [ 32] [ 6] [668899] +13:30:04 [ 35] [ 32] [6213544000116316=491212011631469] +13:30:04 [ 37] [ 12] [507901881398] +13:30:04 [ 38] [ 6] [003866] +13:30:04 [ 39] [ 2] [00] +13:30:04 [ 41] [ 8] [03014006] +13:30:04 [ 49] [ 3] [418] +13:30:04 [ 54] [ 40] [0001418C0002212711370002418C000221271137] +13:30:04 ============================================================================ +13:30:04 Sending to : +13:30:04 ============================================================================ +13:30:04 + + +waiting on router queue for slot.... +13:30:05 ============================================================================ +13:30:05 Slot Id : <393> +13:30:05 Transaction Type : RESPONSE +13:30:05 Received From : +13:30:05 ============================================================================ +13:30:05 FNo. Len. Field Value +13:30:05 ============================================================================ +13:30:05 [ 1] [ 4] [0210] +13:30:05 [ 2] [ 16] [6213544000116316] +13:30:05 [ 3] [ 6] [010000] +13:30:05 [ 4] [ 12] [000100000000] +13:30:05 [ 7] [ 10] [0320132753] +13:30:05 [ 11] [ 6] [946613] +13:30:05 [ 12] [ 6] [132753] +13:30:05 [ 13] [ 4] [0320] +13:30:05 [ 15] [ 4] [0320] +13:30:05 [ 18] [ 4] [6011] +13:30:05 [ 19] [ 3] [418] +13:30:05 [ 32] [ 6] [668899] +13:30:05 [ 35] [ 32] [6213544000116316=491212011631469] +13:30:05 [ 37] [ 12] [507901881398] +13:30:05 [ 38] [ 6] [003866] +13:30:05 [ 39] [ 2] [00] +13:30:05 [ 41] [ 8] [03014006] +13:30:05 [ 49] [ 3] [418] +13:30:05 [ 54] [ 40] [0001418C0002212711370002418C000221271137] +13:30:05 ============================================================================ +13:30:05 Calculate Source COMM Id = 4 +13:30:05 ============================================================================ +13:30:05 + + +waiting on router queue for slot.... +13:30:19 ============================================================================ +13:30:19 Slot Id : <400> +13:30:19 Transaction Type : REQUEST +13:30:19 Received From : +13:30:19 ============================================================================ +13:30:19 FNo. Len. Field Value +13:30:19 ============================================================================ +13:30:19 [ 1] [ 4] [0800] +13:30:19 [ 7] [ 10] [0320062925] +13:30:19 [ 11] [ 6] [156565] +13:30:19 [ 70] [ 3] [301] +13:30:19 ============================================================================ +13:30:19 + + +waiting on router queue for slot.... +13:30:19 Sending to : +13:30:19 ============================================================================ +13:30:19 ============================================================================ +13:30:19 Slot Id : <400> +13:30:19 Transaction Type : RESPONSE +13:30:19 Received From : +13:30:19 ============================================================================ +13:30:19 FNo. Len. Field Value +13:30:19 ============================================================================ +13:30:19 [ 1] [ 4] [0810] +13:30:19 [ 7] [ 10] [0320062925] +13:30:19 [ 11] [ 6] [156565] +13:30:19 [ 39] [ 2] [00] +13:30:19 [ 70] [ 3] [301] +13:30:19 ============================================================================ +13:30:19 Calculate Source COMM Id = 2 +13:30:19 ============================================================================ +13:30:19 + + +waiting on router queue for slot.... +13:30:34 ============================================================================ +13:30:34 Slot Id : <397> +13:30:34 Transaction Type : REQUEST +13:30:34 Received From : +13:30:34 ============================================================================ +13:30:34 FNo. Len. Field Value +13:30:34 ============================================================================ +13:30:34 [ 1] [ 4] [0800] +13:30:34 [ 7] [ 10] [0320062940] +13:30:34 [ 11] [ 6] [156566] +13:30:34 [ 70] [ 3] [301] +13:30:34 ============================================================================ +13:30:34 + + +waiting on router queue for slot.... +13:30:34 Sending to : +13:30:34 ============================================================================ +13:30:34 ============================================================================ +13:30:34 Slot Id : <397> +13:30:34 Transaction Type : RESPONSE +13:30:34 Received From : +13:30:34 ============================================================================ +13:30:34 FNo. Len. Field Value +13:30:34 ============================================================================ +13:30:34 [ 1] [ 4] [0810] +13:30:34 [ 7] [ 10] [0320062940] +13:30:34 [ 11] [ 6] [156566] +13:30:34 [ 39] [ 2] [00] +13:30:34 [ 70] [ 3] [301] +13:30:34 ============================================================================ +13:30:34 Calculate Source COMM Id = 2 +13:30:34 ============================================================================ +13:30:34 + + +waiting on router queue for slot.... +13:30:46 ============================================================================ +13:30:46 Slot Id : <413> +13:30:46 Transaction Type : REQUEST +13:30:46 Received From : +13:30:46 ============================================================================ +13:30:46 FNo. Len. Field Value +13:30:46 ============================================================================ +13:30:46 [ 1] [ 4] [0800] +13:30:46 [ 2] [ 5] [02531] +13:30:46 [ 3] [ 6] [579138] +13:30:46 [ 7] [ 10] [0320063046] +13:30:46 [ 11] [ 6] [807196] +13:30:46 [ 15] [ 10] [0320063046] +13:30:46 [ 37] [ 11] [57913807196] +13:30:46 [ 70] [ 3] [001] +13:30:46 ============================================================================ +13:30:46 + + +waiting on router queue for slot.... +13:30:46 ============================================================================ +13:30:46 Slot Id : <413> +13:30:46 Transaction Type : RESPONSE +13:30:46 Received From : +13:30:46 ============================================================================ +13:30:46 FNo. Len. Field Value +13:30:46 ============================================================================ +13:30:46 [ 1] [ 4] [0810] +13:30:46 [ 7] [ 10] [0320063046] +13:30:46 [ 11] [ 6] [807196] +13:30:46 [ 15] [ 4] [0320] +13:30:46 [ 37] [ 12] [57913807196] +13:30:46 [ 39] [ 2] [00] +13:30:46 [ 70] [ 3] [001] +13:30:46 ============================================================================ +13:30:46 Sending to : +13:30:46 ============================================================================ +13:30:46 + + +waiting on router queue for slot.... +13:30:48 ============================================================================ +13:30:48 Slot Id : <349> +13:30:48 Transaction Type : REQUEST +13:30:48 Received From : +13:30:48 ============================================================================ +13:30:48 FNo. Len. Field Value +13:30:48 ============================================================================ +13:30:48 [ 1] [ 4] [0800] +13:30:48 [ 7] [ 10] [0320062955] +13:30:48 [ 11] [ 6] [156567] +13:30:48 [ 70] [ 3] [301] +13:30:48 ============================================================================ +13:30:48 + + +waiting on router queue for slot.... +13:30:48 Sending to : +13:30:48 ============================================================================ +13:30:48 ============================================================================ +13:30:48 Slot Id : <349> +13:30:48 Transaction Type : RESPONSE +13:30:48 Received From : +13:30:48 ============================================================================ +13:30:48 FNo. Len. Field Value +13:30:48 ============================================================================ +13:30:48 [ 1] [ 4] [0810] +13:30:48 [ 7] [ 10] [0320062955] +13:30:48 [ 11] [ 6] [156567] +13:30:48 [ 39] [ 2] [00] +13:30:48 [ 70] [ 3] [301] +13:30:48 ============================================================================ +13:30:48 Calculate Source COMM Id = 2 +13:30:48 ============================================================================ +13:30:48 + + +waiting on router queue for slot.... +13:31:04 ============================================================================ +13:31:04 Slot Id : <394> +13:31:04 Transaction Type : REQUEST +13:31:04 Received From : +13:31:04 ============================================================================ +13:31:04 FNo. Len. Field Value +13:31:04 ============================================================================ +13:31:04 [ 1] [ 4] [0800] +13:31:04 [ 7] [ 10] [0320063011] +13:31:04 [ 11] [ 6] [156568] +13:31:04 [ 70] [ 3] [301] +13:31:04 ============================================================================ +13:31:04 + + +waiting on router queue for slot.... +13:31:04 Sending to : +13:31:04 ============================================================================ +13:31:04 ============================================================================ +13:31:04 Slot Id : <394> +13:31:04 Transaction Type : RESPONSE +13:31:04 Received From : +13:31:04 ============================================================================ +13:31:04 FNo. Len. Field Value +13:31:04 ============================================================================ +13:31:04 [ 1] [ 4] [0810] +13:31:04 [ 7] [ 10] [0320063011] +13:31:04 [ 11] [ 6] [156568] +13:31:04 [ 39] [ 2] [00] +13:31:04 [ 70] [ 3] [301] +13:31:04 ============================================================================ +13:31:04 Calculate Source COMM Id = 2 +13:31:04 ============================================================================ +13:31:04 + + +waiting on router queue for slot.... +13:31:06 ============================================================================ +13:31:06 Slot Id : <414> +13:31:06 Transaction Type : REQUEST +13:31:06 Received From : +13:31:06 ============================================================================ +13:31:06 FNo. Len. Field Value +13:31:06 ============================================================================ +13:31:06 [ 1] [ 4] [0200] +13:31:06 [ 2] [ 16] [6213544002213004] +13:31:06 [ 3] [ 6] [300000] +13:31:06 [ 4] [ 12] [000000000000] +13:31:06 [ 7] [ 10] [0320132857] +13:31:06 [ 11] [ 6] [946661] +13:31:06 [ 12] [ 6] [132857] +13:31:06 [ 13] [ 4] [0320] +13:31:06 [ 15] [ 4] [0320] +13:31:06 [ 18] [ 4] [6011] +13:31:06 [ 19] [ 3] [418] +13:31:06 [ 22] [ 3] [021] +13:31:06 [ 25] [ 2] [01] +13:31:06 [ 28] [ 9] [D00000000] +13:31:06 [ 32] [ 6] [668899] +13:31:06 [ 35] [ 32] [6213544002213004=491212011300457] +13:31:06 [ 37] [ 12] [507901912194] +13:31:06 [ 41] [ 8] [03013004] +13:31:06 [ 42] [ 15] [APT ] +13:31:06 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:31:06 [ 49] [ 3] [418] +13:31:06 [ 52] [ 16] [F42292859D835504] +13:31:06 ============================================================================ +13:31:06 + + +waiting on router queue for slot.... +13:31:06 Sending to : +13:31:06 ============================================================================ +13:31:06 Sending to : +13:31:06 ============================================================================ +13:31:07 ============================================================================ +13:31:07 Slot Id : <414> +13:31:07 Transaction Type : REQUEST +13:31:07 Received From : +13:31:07 ============================================================================ +13:31:07 FNo. Len. Field Value +13:31:07 ============================================================================ +13:31:07 [ 1] [ 4] [0200] +13:31:07 [ 2] [ 16] [6213544002213004] +13:31:07 [ 3] [ 6] [300000] +13:31:07 [ 4] [ 12] [000000000000] +13:31:07 [ 7] [ 10] [0320132857] +13:31:07 [ 11] [ 6] [946661] +13:31:07 [ 12] [ 6] [132857] +13:31:07 [ 13] [ 4] [0320] +13:31:07 [ 15] [ 4] [0320] +13:31:07 [ 18] [ 4] [6011] +13:31:07 [ 19] [ 3] [418] +13:31:07 [ 22] [ 3] [021] +13:31:07 [ 25] [ 2] [01] +13:31:07 [ 28] [ 9] [D00000000] +13:31:07 [ 32] [ 6] [668899] +13:31:07 [ 35] [ 32] [6213544002213004=491212011300457] +13:31:07 [ 37] [ 12] [507901912194] +13:31:07 [ 41] [ 8] [03013004] +13:31:07 [ 42] [ 15] [APT ] +13:31:07 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:31:07 [ 49] [ 3] [418] +13:31:07 [ 52] [ 16] [F42292859D835504] +13:31:07 ============================================================================ +13:31:07 + + +waiting on router queue for slot.... +13:31:07 Sending to : +13:31:07 ============================================================================ +13:31:07 ============================================================================ +13:31:07 Slot Id : <414> +13:31:07 Transaction Type : REQUEST +13:31:07 Received From : +13:31:07 ============================================================================ +13:31:07 FNo. Len. Field Value +13:31:07 ============================================================================ +13:31:07 [ 1] [ 4] [0200] +13:31:07 [ 2] [ 16] [6213544002213004] +13:31:07 [ 3] [ 6] [300000] +13:31:07 [ 4] [ 12] [000000000000] +13:31:07 [ 7] [ 10] [0320132857] +13:31:07 [ 11] [ 6] [946661] +13:31:07 [ 12] [ 6] [132857] +13:31:07 [ 13] [ 4] [0320] +13:31:07 [ 15] [ 4] [0320] +13:31:07 [ 18] [ 4] [6011] +13:31:07 [ 19] [ 3] [418] +13:31:07 [ 22] [ 3] [021] +13:31:07 [ 25] [ 2] [01] +13:31:07 [ 28] [ 9] [D00000000] +13:31:07 [ 32] [ 6] [668899] +13:31:07 [ 35] [ 32] [6213544002213004=491212011300457] +13:31:07 [ 37] [ 12] [507901912194] +13:31:07 [ 41] [ 8] [03013004] +13:31:07 [ 42] [ 15] [APT ] +13:31:07 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:31:07 [ 49] [ 3] [418] +13:31:07 [ 52] [ 16] [CABA6F28B0929160] +13:31:07 ============================================================================ +13:31:07 + + +waiting on router queue for slot.... +13:31:07 Sending to : <0> +13:31:07 ============================================================================ +13:31:07 ============================================================================ +13:31:07 Slot Id : <414> +13:31:07 Transaction Type : RESPONSE +13:31:07 Received From : +13:31:07 ============================================================================ +13:31:07 FNo. Len. Field Value +13:31:07 ============================================================================ +13:31:07 [ 1] [ 4] [0210] +13:31:07 [ 2] [ 16] [6213544002213004] +13:31:07 [ 3] [ 6] [300000] +13:31:07 [ 4] [ 12] [000000000000] +13:31:07 [ 7] [ 10] [0320132857] +13:31:07 [ 11] [ 6] [946661] +13:31:07 [ 12] [ 6] [132857] +13:31:07 [ 13] [ 4] [0320] +13:31:07 [ 15] [ 4] [0320] +13:31:07 [ 18] [ 4] [6011] +13:31:07 [ 19] [ 3] [418] +13:31:07 [ 32] [ 6] [668899] +13:31:07 [ 35] [ 32] [6213544002213004=491212011300457] +13:31:07 [ 37] [ 12] [507901912194] +13:31:07 [ 38] [ 6] [803150] +13:31:07 [ 39] [ 2] [00] +13:31:07 [ 41] [ 8] [03013004] +13:31:07 [ 49] [ 3] [418] +13:31:07 [ 54] [ 40] [0001418C0000294536000002418C000029453600] +13:31:07 ============================================================================ +13:31:07 Sending to : +13:31:07 ============================================================================ +13:31:07 + + +waiting on router queue for slot.... +13:31:09 ============================================================================ +13:31:09 Slot Id : <414> +13:31:09 Transaction Type : RESPONSE +13:31:09 Received From : +13:31:09 ============================================================================ +13:31:09 FNo. Len. Field Value +13:31:09 ============================================================================ +13:31:09 [ 1] [ 4] [0210] +13:31:09 [ 2] [ 16] [6213544002213004] +13:31:09 [ 3] [ 6] [300000] +13:31:09 [ 4] [ 12] [000000000000] +13:31:09 [ 7] [ 10] [0320132857] +13:31:09 [ 11] [ 6] [946661] +13:31:09 [ 12] [ 6] [132857] +13:31:09 [ 13] [ 4] [0320] +13:31:09 [ 15] [ 4] [0320] +13:31:09 [ 18] [ 4] [6011] +13:31:09 [ 19] [ 3] [418] +13:31:09 [ 32] [ 6] [668899] +13:31:09 [ 35] [ 32] [6213544002213004=491212011300457] +13:31:09 [ 37] [ 12] [507901912194] +13:31:09 [ 38] [ 6] [803150] +13:31:09 [ 39] [ 2] [00] +13:31:09 [ 41] [ 8] [03013004] +13:31:09 [ 49] [ 3] [418] +13:31:09 [ 54] [ 40] [0001418C0000294536000002418C000029453600] +13:31:09 ============================================================================ +13:31:09 Calculate Source COMM Id = 4 +13:31:09 ============================================================================ +13:31:09 + + +waiting on router queue for slot.... +13:31:17 ============================================================================ +13:31:17 Slot Id : <399> +13:31:17 Transaction Type : REQUEST +13:31:17 Received From : +13:31:17 ============================================================================ +13:31:17 FNo. Len. Field Value +13:31:17 ============================================================================ +13:31:17 [ 1] [ 4] [0800] +13:31:17 [ 7] [ 10] [0320063024] +13:31:17 [ 11] [ 6] [156569] +13:31:17 [ 70] [ 3] [301] +13:31:17 ============================================================================ +13:31:17 + + +waiting on router queue for slot.... +13:31:17 Sending to : +13:31:17 ============================================================================ +13:31:17 ============================================================================ +13:31:17 Slot Id : <399> +13:31:17 Transaction Type : RESPONSE +13:31:17 Received From : +13:31:17 ============================================================================ +13:31:17 FNo. Len. Field Value +13:31:17 ============================================================================ +13:31:17 [ 1] [ 4] [0810] +13:31:17 [ 7] [ 10] [0320063024] +13:31:17 [ 11] [ 6] [156569] +13:31:17 [ 39] [ 2] [00] +13:31:17 [ 70] [ 3] [301] +13:31:17 ============================================================================ +13:31:17 Calculate Source COMM Id = 2 +13:31:17 ============================================================================ +13:31:17 + + +waiting on router queue for slot.... +13:31:21 ============================================================================ +13:31:21 Slot Id : <387> +13:31:21 Transaction Type : REQUEST +13:31:21 Received From : +13:31:21 ============================================================================ +13:31:21 FNo. Len. Field Value +13:31:21 ============================================================================ +13:31:21 [ 1] [ 4] [0800] +13:31:21 [ 7] [ 10] [0320062912] +13:31:21 [ 11] [ 6] [051572] +13:31:21 [ 37] [ 12] [57913051572] +13:31:21 [ 70] [ 3] [301] +13:31:21 ============================================================================ +13:31:21 + + +waiting on router queue for slot.... +13:31:21 Sending to : +13:31:21 ============================================================================ +13:31:21 ============================================================================ +13:31:21 Slot Id : <387> +13:31:21 Transaction Type : RESPONSE +13:31:21 Received From : +13:31:21 ============================================================================ +13:31:21 FNo. Len. Field Value +13:31:21 ============================================================================ +13:31:21 [ 1] [ 4] [0810] +13:31:21 [ 7] [ 10] [0320062912] +13:31:21 [ 11] [ 6] [051572] +13:31:21 [ 37] [ 12] [579130515720] +13:31:21 [ 39] [ 2] [00] +13:31:21 [ 70] [ 3] [810] +13:31:21 ============================================================================ +13:31:21 Calculate Source COMM Id = 4 +13:31:21 ============================================================================ +13:31:21 + + +waiting on router queue for slot.... +13:31:28 ============================================================================ +13:31:28 Slot Id : <372> +13:31:28 Transaction Type : REQUEST +13:31:28 Received From : +13:31:28 ============================================================================ +13:31:28 FNo. Len. Field Value +13:31:28 ============================================================================ +13:31:28 [ 1] [ 4] [0200] +13:31:28 [ 2] [ 16] [6213545000327126] +13:31:28 [ 3] [ 6] [010000] +13:31:28 [ 4] [ 12] [000100000000] +13:31:28 [ 7] [ 10] [0320132918] +13:31:28 [ 11] [ 6] [946678] +13:31:28 [ 12] [ 6] [132918] +13:31:28 [ 13] [ 4] [0320] +13:31:28 [ 15] [ 4] [0320] +13:31:28 [ 18] [ 4] [6011] +13:31:28 [ 19] [ 3] [418] +13:31:28 [ 22] [ 3] [021] +13:31:28 [ 25] [ 2] [01] +13:31:28 [ 28] [ 9] [D00002000] +13:31:28 [ 32] [ 6] [668899] +13:31:28 [ 35] [ 32] [6213545000327126=491212012712394] +13:31:28 [ 37] [ 12] [507902336389] +13:31:28 [ 41] [ 8] [03217002] +13:31:28 [ 42] [ 15] [APT ] +13:31:28 [ 43] [ 40] [ THATENG MARKET THATENG ] +13:31:28 [ 49] [ 3] [418] +13:31:28 [ 52] [ 16] [BF8738566888DD98] +13:31:28 ============================================================================ +13:31:28 + + +waiting on router queue for slot.... +13:31:28 Sending to : +13:31:28 ============================================================================ +13:31:28 Sending to : +13:31:28 ============================================================================ +13:31:28 ============================================================================ +13:31:28 Slot Id : <372> +13:31:28 Transaction Type : REQUEST +13:31:28 Received From : +13:31:28 ============================================================================ +13:31:28 FNo. Len. Field Value +13:31:28 ============================================================================ +13:31:28 [ 1] [ 4] [0200] +13:31:28 [ 2] [ 16] [6213545000327126] +13:31:28 [ 3] [ 6] [010000] +13:31:28 [ 4] [ 12] [000100000000] +13:31:28 [ 7] [ 10] [0320132918] +13:31:28 [ 11] [ 6] [946678] +13:31:28 [ 12] [ 6] [132918] +13:31:28 [ 13] [ 4] [0320] +13:31:28 [ 15] [ 4] [0320] +13:31:28 [ 18] [ 4] [6011] +13:31:28 [ 19] [ 3] [418] +13:31:28 [ 22] [ 3] [021] +13:31:28 [ 25] [ 2] [01] +13:31:28 [ 28] [ 9] [D00002000] +13:31:28 [ 32] [ 6] [668899] +13:31:28 [ 35] [ 32] [6213545000327126=491212012712394] +13:31:28 [ 37] [ 12] [507902336389] +13:31:28 [ 41] [ 8] [03217002] +13:31:28 [ 42] [ 15] [APT ] +13:31:28 [ 43] [ 40] [ THATENG MARKET THATENG ] +13:31:28 [ 49] [ 3] [418] +13:31:28 [ 52] [ 16] [BF8738566888DD98] +13:31:28 ============================================================================ +13:31:28 + + +waiting on router queue for slot.... +13:31:28 Sending to : +13:31:28 ============================================================================ +13:31:28 ============================================================================ +13:31:28 Slot Id : <372> +13:31:28 Transaction Type : REQUEST +13:31:28 Received From : +13:31:28 ============================================================================ +13:31:28 FNo. Len. Field Value +13:31:28 ============================================================================ +13:31:28 [ 1] [ 4] [0200] +13:31:28 [ 2] [ 16] [6213545000327126] +13:31:28 [ 3] [ 6] [010000] +13:31:28 [ 4] [ 12] [000100000000] +13:31:28 [ 7] [ 10] [0320132918] +13:31:28 [ 11] [ 6] [946678] +13:31:28 [ 12] [ 6] [132918] +13:31:28 [ 13] [ 4] [0320] +13:31:28 [ 15] [ 4] [0320] +13:31:28 [ 18] [ 4] [6011] +13:31:28 [ 19] [ 3] [418] +13:31:28 [ 22] [ 3] [021] +13:31:28 [ 25] [ 2] [01] +13:31:28 [ 28] [ 9] [D00002000] +13:31:28 [ 32] [ 6] [668899] +13:31:28 [ 35] [ 32] [6213545000327126=491212012712394] +13:31:28 [ 37] [ 12] [507902336389] +13:31:28 [ 41] [ 8] [03217002] +13:31:28 [ 42] [ 15] [APT ] +13:31:28 [ 43] [ 40] [ THATENG MARKET THATENG ] +13:31:28 [ 49] [ 3] [418] +13:31:28 [ 52] [ 16] [7C662295BA78FA10] +13:31:28 ============================================================================ +13:31:28 + + +waiting on router queue for slot.... +13:31:28 Sending to : <0> +13:31:28 ============================================================================ +13:31:29 ============================================================================ +13:31:29 Slot Id : <372> +13:31:29 Transaction Type : RESPONSE +13:31:29 Received From : +13:31:29 ============================================================================ +13:31:29 FNo. Len. Field Value +13:31:29 ============================================================================ +13:31:29 [ 1] [ 4] [0210] +13:31:29 [ 2] [ 16] [6213545000327126] +13:31:29 [ 3] [ 6] [010000] +13:31:29 [ 4] [ 12] [000100000000] +13:31:29 [ 7] [ 10] [0320132918] +13:31:29 [ 11] [ 6] [946678] +13:31:29 [ 12] [ 6] [132918] +13:31:29 [ 13] [ 4] [0320] +13:31:29 [ 15] [ 4] [0320] +13:31:29 [ 18] [ 4] [6011] +13:31:29 [ 19] [ 3] [418] +13:31:29 [ 32] [ 6] [668899] +13:31:29 [ 35] [ 32] [6213545000327126=491212012712394] +13:31:29 [ 37] [ 12] [507902336389] +13:31:29 [ 38] [ 6] [153260] +13:31:29 [ 39] [ 2] [00] +13:31:29 [ 41] [ 8] [03217002] +13:31:29 [ 49] [ 3] [418] +13:31:29 [ 54] [ 40] [0001418C0001035619960002418C000103561996] +13:31:29 ============================================================================ +13:31:29 Sending to : +13:31:29 ============================================================================ +13:31:29 + + +waiting on router queue for slot.... +13:31:30 ============================================================================ +13:31:30 Slot Id : <372> +13:31:30 Transaction Type : RESPONSE +13:31:30 Received From : +13:31:30 ============================================================================ +13:31:30 FNo. Len. Field Value +13:31:30 ============================================================================ +13:31:30 [ 1] [ 4] [0210] +13:31:30 [ 2] [ 16] [6213545000327126] +13:31:30 [ 3] [ 6] [010000] +13:31:30 [ 4] [ 12] [000100000000] +13:31:30 [ 7] [ 10] [0320132918] +13:31:30 [ 11] [ 6] [946678] +13:31:30 [ 12] [ 6] [132918] +13:31:30 [ 13] [ 4] [0320] +13:31:30 [ 15] [ 4] [0320] +13:31:30 [ 18] [ 4] [6011] +13:31:30 [ 19] [ 3] [418] +13:31:30 [ 32] [ 6] [668899] +13:31:30 [ 35] [ 32] [6213545000327126=491212012712394] +13:31:30 [ 37] [ 12] [507902336389] +13:31:30 [ 38] [ 6] [153260] +13:31:30 [ 39] [ 2] [00] +13:31:30 [ 41] [ 8] [03217002] +13:31:30 [ 49] [ 3] [418] +13:31:30 [ 54] [ 40] [0001418C0001035619960002418C000103561996] +13:31:30 ============================================================================ +13:31:30 Calculate Source COMM Id = 4 +13:31:30 ============================================================================ +13:31:30 + + +waiting on router queue for slot.... +13:31:32 ============================================================================ +13:31:32 Slot Id : <418> +13:31:32 Transaction Type : REQUEST +13:31:32 Received From : +13:31:32 ============================================================================ +13:31:32 FNo. Len. Field Value +13:31:32 ============================================================================ +13:31:32 [ 1] [ 4] [0800] +13:31:32 [ 7] [ 10] [0320063039] +13:31:32 [ 11] [ 6] [156570] +13:31:32 [ 70] [ 3] [301] +13:31:32 ============================================================================ +13:31:32 + + +waiting on router queue for slot.... +13:31:32 Sending to : +13:31:32 ============================================================================ +13:31:32 ============================================================================ +13:31:32 Slot Id : <418> +13:31:32 Transaction Type : RESPONSE +13:31:32 Received From : +13:31:32 ============================================================================ +13:31:32 FNo. Len. Field Value +13:31:32 ============================================================================ +13:31:32 [ 1] [ 4] [0810] +13:31:32 [ 7] [ 10] [0320063039] +13:31:32 [ 11] [ 6] [156570] +13:31:32 [ 39] [ 2] [00] +13:31:32 [ 70] [ 3] [301] +13:31:32 ============================================================================ +13:31:32 Calculate Source COMM Id = 2 +13:31:32 ============================================================================ +13:31:32 + + +waiting on router queue for slot.... +13:31:39 ============================================================================ +13:31:39 Slot Id : <368> +13:31:39 Transaction Type : REQUEST +13:31:39 Received From : +13:31:39 ============================================================================ +13:31:39 FNo. Len. Field Value +13:31:39 ============================================================================ +13:31:39 [ 1] [ 4] [0200] +13:31:39 [ 2] [ 16] [6213544002213004] +13:31:39 [ 3] [ 6] [302000] +13:31:39 [ 4] [ 12] [000000000000] +13:31:39 [ 7] [ 10] [0320132930] +13:31:39 [ 11] [ 6] [946688] +13:31:39 [ 12] [ 6] [132930] +13:31:39 [ 13] [ 4] [0320] +13:31:39 [ 15] [ 4] [0320] +13:31:39 [ 18] [ 4] [6011] +13:31:39 [ 19] [ 3] [418] +13:31:39 [ 22] [ 3] [021] +13:31:39 [ 25] [ 2] [01] +13:31:39 [ 28] [ 9] [D00000000] +13:31:39 [ 32] [ 6] [668899] +13:31:39 [ 35] [ 32] [6213544002213004=491212011300457] +13:31:39 [ 37] [ 12] [507901912195] +13:31:39 [ 41] [ 8] [03013004] +13:31:39 [ 42] [ 15] [APT ] +13:31:39 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:31:39 [ 49] [ 3] [418] +13:31:39 [ 52] [ 16] [F42292859D835504] +13:31:39 ============================================================================ +13:31:39 + + +waiting on router queue for slot.... +13:31:39 Sending to : +13:31:39 ============================================================================ +13:31:39 Sending to : +13:31:39 ============================================================================ +13:31:39 ============================================================================ +13:31:39 Slot Id : <368> +13:31:39 Transaction Type : REQUEST +13:31:39 Received From : +13:31:39 ============================================================================ +13:31:39 FNo. Len. Field Value +13:31:39 ============================================================================ +13:31:39 [ 1] [ 4] [0200] +13:31:39 [ 2] [ 16] [6213544002213004] +13:31:39 [ 3] [ 6] [302000] +13:31:39 [ 4] [ 12] [000000000000] +13:31:39 [ 7] [ 10] [0320132930] +13:31:39 [ 11] [ 6] [946688] +13:31:39 [ 12] [ 6] [132930] +13:31:39 [ 13] [ 4] [0320] +13:31:39 [ 15] [ 4] [0320] +13:31:39 [ 18] [ 4] [6011] +13:31:39 [ 19] [ 3] [418] +13:31:39 [ 22] [ 3] [021] +13:31:39 [ 25] [ 2] [01] +13:31:39 [ 28] [ 9] [D00000000] +13:31:39 [ 32] [ 6] [668899] +13:31:39 [ 35] [ 32] [6213544002213004=491212011300457] +13:31:39 [ 37] [ 12] [507901912195] +13:31:39 [ 41] [ 8] [03013004] +13:31:39 [ 42] [ 15] [APT ] +13:31:39 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:31:39 [ 49] [ 3] [418] +13:31:39 [ 52] [ 16] [F42292859D835504] +13:31:39 ============================================================================ +13:31:39 + + +waiting on router queue for slot.... +13:31:39 Sending to : +13:31:39 ============================================================================ +13:31:39 ============================================================================ +13:31:39 Slot Id : <368> +13:31:39 Transaction Type : REQUEST +13:31:39 Received From : +13:31:39 ============================================================================ +13:31:39 FNo. Len. Field Value +13:31:39 ============================================================================ +13:31:39 [ 1] [ 4] [0200] +13:31:39 [ 2] [ 16] [6213544002213004] +13:31:39 [ 3] [ 6] [302000] +13:31:39 [ 4] [ 12] [000000000000] +13:31:39 [ 7] [ 10] [0320132930] +13:31:39 [ 11] [ 6] [946688] +13:31:39 [ 12] [ 6] [132930] +13:31:39 [ 13] [ 4] [0320] +13:31:39 [ 15] [ 4] [0320] +13:31:39 [ 18] [ 4] [6011] +13:31:39 [ 19] [ 3] [418] +13:31:39 [ 22] [ 3] [021] +13:31:39 [ 25] [ 2] [01] +13:31:39 [ 28] [ 9] [D00000000] +13:31:39 [ 32] [ 6] [668899] +13:31:39 [ 35] [ 32] [6213544002213004=491212011300457] +13:31:39 [ 37] [ 12] [507901912195] +13:31:39 [ 41] [ 8] [03013004] +13:31:39 [ 42] [ 15] [APT ] +13:31:39 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:31:39 [ 49] [ 3] [418] +13:31:39 [ 52] [ 16] [CABA6F28B0929160] +13:31:39 ============================================================================ +13:31:39 + + +waiting on router queue for slot.... +13:31:39 Sending to : <0> +13:31:39 ============================================================================ +13:31:40 ============================================================================ +13:31:40 Slot Id : <368> +13:31:40 Transaction Type : RESPONSE +13:31:40 Received From : +13:31:40 ============================================================================ +13:31:40 FNo. Len. Field Value +13:31:40 ============================================================================ +13:31:40 [ 1] [ 4] [0210] +13:31:40 [ 2] [ 16] [6213544002213004] +13:31:40 [ 3] [ 6] [302000] +13:31:40 [ 4] [ 12] [000000000000] +13:31:40 [ 7] [ 10] [0320132930] +13:31:40 [ 11] [ 6] [946688] +13:31:40 [ 12] [ 6] [132930] +13:31:40 [ 13] [ 4] [0320] +13:31:40 [ 15] [ 4] [0320] +13:31:40 [ 18] [ 4] [6011] +13:31:40 [ 19] [ 3] [418] +13:31:40 [ 32] [ 6] [668899] +13:31:40 [ 35] [ 32] [6213544002213004=491212011300457] +13:31:40 [ 37] [ 12] [507901912195] +13:31:40 [ 38] [ 6] [354921] +13:31:40 [ 39] [ 2] [00] +13:31:40 [ 41] [ 8] [03013004] +13:31:40 [ 49] [ 3] [418] +13:31:40 [ 54] [ 40] [2001418C0000294536002002418C000029453600] +13:31:40 ============================================================================ +13:31:40 Sending to : +13:31:40 ============================================================================ +13:31:40 + + +waiting on router queue for slot.... +13:31:40 ============================================================================ +13:31:40 Slot Id : <419> +13:31:40 Transaction Type : REQUEST +13:31:40 Received From : +13:31:40 ============================================================================ +13:31:40 FNo. Len. Field Value +13:31:40 ============================================================================ +13:31:40 [ 1] [ 4] [0200] +13:31:40 [ 2] [ 16] [6213545000990303] +13:31:40 [ 3] [ 6] [010000] +13:31:40 [ 4] [ 12] [000200000000] +13:31:40 [ 7] [ 10] [0320063046] +13:31:40 [ 11] [ 6] [269317] +13:31:40 [ 12] [ 6] [133046] +13:31:40 [ 13] [ 4] [0320] +13:31:40 [ 14] [ 4] [4912] +13:31:40 [ 15] [ 4] [0320] +13:31:40 [ 18] [ 4] [6011] +13:31:40 [ 19] [ 3] [418] +13:31:40 [ 22] [ 3] [021] +13:31:40 [ 25] [ 2] [01] +13:31:40 [ 28] [ 9] [D00002000] +13:31:40 [ 32] [ 6] [180893] +13:31:40 [ 35] [ 32] [6213545000990303=491212019030332] +13:31:40 [ 37] [ 12] [507906269317] +13:31:40 [ 41] [ 8] [0366SKTT] +13:31:40 [ 42] [ 15] [999999 ] +13:31:40 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +13:31:40 [ 49] [ 3] [418] +13:31:40 [ 52] [ 16] [B838879A2978921C] +13:31:40 ============================================================================ +13:31:40 + + +waiting on router queue for slot.... +13:31:40 Sending to : +13:31:40 ============================================================================ +13:31:40 Sending to : +13:31:40 ============================================================================ +13:31:41 ============================================================================ +13:31:41 Slot Id : <419> +13:31:41 Transaction Type : REQUEST +13:31:41 Received From : +13:31:41 ============================================================================ +13:31:41 FNo. Len. Field Value +13:31:41 ============================================================================ +13:31:41 [ 1] [ 4] [0200] +13:31:41 [ 2] [ 16] [6213545000990303] +13:31:41 [ 3] [ 6] [010000] +13:31:41 [ 4] [ 12] [000200000000] +13:31:41 [ 7] [ 10] [0320063046] +13:31:41 [ 11] [ 6] [269317] +13:31:41 [ 12] [ 6] [133046] +13:31:41 [ 13] [ 4] [0320] +13:31:41 [ 14] [ 4] [4912] +13:31:41 [ 15] [ 4] [0320] +13:31:41 [ 18] [ 4] [6011] +13:31:41 [ 19] [ 3] [418] +13:31:41 [ 22] [ 3] [021] +13:31:41 [ 25] [ 2] [01] +13:31:41 [ 28] [ 9] [D00002000] +13:31:41 [ 32] [ 6] [180893] +13:31:41 [ 35] [ 32] [6213545000990303=491212019030332] +13:31:41 [ 37] [ 12] [507906269317] +13:31:41 [ 41] [ 8] [0366SKTT] +13:31:41 [ 42] [ 15] [999999 ] +13:31:41 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +13:31:41 [ 49] [ 3] [418] +13:31:41 [ 52] [ 16] [B838879A2978921C] +13:31:41 ============================================================================ +13:31:41 + + +waiting on router queue for slot.... +13:31:41 Sending to : +13:31:41 ============================================================================ +13:31:41 ============================================================================ +13:31:41 Slot Id : <419> +13:31:41 Transaction Type : REQUEST +13:31:41 Received From : +13:31:41 ============================================================================ +13:31:41 FNo. Len. Field Value +13:31:41 ============================================================================ +13:31:41 [ 1] [ 4] [0200] +13:31:41 [ 2] [ 16] [6213545000990303] +13:31:41 [ 3] [ 6] [010000] +13:31:41 [ 4] [ 12] [000200000000] +13:31:41 [ 7] [ 10] [0320063046] +13:31:41 [ 11] [ 6] [269317] +13:31:41 [ 12] [ 6] [133046] +13:31:41 [ 13] [ 4] [0320] +13:31:41 [ 14] [ 4] [4912] +13:31:41 [ 15] [ 4] [0320] +13:31:41 [ 18] [ 4] [6011] +13:31:41 [ 19] [ 3] [418] +13:31:41 [ 22] [ 3] [021] +13:31:41 [ 25] [ 2] [01] +13:31:41 [ 28] [ 9] [D00002000] +13:31:41 [ 32] [ 6] [180893] +13:31:41 [ 35] [ 32] [6213545000990303=491212019030332] +13:31:41 [ 37] [ 12] [507906269317] +13:31:41 [ 41] [ 8] [0366SKTT] +13:31:41 [ 42] [ 15] [999999 ] +13:31:41 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +13:31:41 [ 49] [ 3] [418] +13:31:41 [ 52] [ 16] [2F2476127963619F] +13:31:41 ============================================================================ +13:31:41 + + +waiting on router queue for slot.... +13:31:41 Sending to : <0> +13:31:41 ============================================================================ +13:31:41 ============================================================================ +13:31:41 Slot Id : <419> +13:31:41 Transaction Type : RESPONSE +13:31:41 Received From : +13:31:41 ============================================================================ +13:31:41 FNo. Len. Field Value +13:31:41 ============================================================================ +13:31:41 [ 1] [ 4] [0210] +13:31:41 [ 2] [ 16] [6213545000990303] +13:31:41 [ 3] [ 6] [010000] +13:31:41 [ 4] [ 12] [000200000000] +13:31:41 [ 7] [ 10] [0320063046] +13:31:41 [ 11] [ 6] [269317] +13:31:41 [ 12] [ 6] [133046] +13:31:41 [ 13] [ 4] [0320] +13:31:41 [ 15] [ 4] [0320] +13:31:41 [ 18] [ 4] [6011] +13:31:41 [ 19] [ 3] [418] +13:31:41 [ 22] [ 3] [021] +13:31:41 [ 32] [ 6] [180893] +13:31:41 [ 35] [ 32] [6213545000990303=491212019030332] +13:31:41 [ 37] [ 12] [507906269317] +13:31:41 [ 39] [ 2] [61] +13:31:41 [ 41] [ 8] [0366SKTT] +13:31:41 [ 49] [ 3] [418] +13:31:41 ============================================================================ +13:31:41 Sending to : +13:31:41 ============================================================================ +13:31:41 + + +waiting on router queue for slot.... +13:31:41 ============================================================================ +13:31:41 Slot Id : <368> +13:31:41 Transaction Type : RESPONSE +13:31:41 Received From : +13:31:41 ============================================================================ +13:31:41 FNo. Len. Field Value +13:31:41 ============================================================================ +13:31:41 [ 1] [ 4] [0210] +13:31:41 [ 2] [ 16] [6213544002213004] +13:31:41 [ 3] [ 6] [302000] +13:31:41 [ 4] [ 12] [000000000000] +13:31:41 [ 7] [ 10] [0320132930] +13:31:41 [ 11] [ 6] [946688] +13:31:41 [ 12] [ 6] [132930] +13:31:41 [ 13] [ 4] [0320] +13:31:41 [ 15] [ 4] [0320] +13:31:41 [ 18] [ 4] [6011] +13:31:41 [ 19] [ 3] [418] +13:31:41 [ 32] [ 6] [668899] +13:31:41 [ 35] [ 32] [6213544002213004=491212011300457] +13:31:41 [ 37] [ 12] [507901912195] +13:31:41 [ 38] [ 6] [354921] +13:31:41 [ 39] [ 2] [00] +13:31:41 [ 41] [ 8] [03013004] +13:31:41 [ 49] [ 3] [418] +13:31:41 [ 54] [ 40] [2001418C0000294536002002418C000029453600] +13:31:41 ============================================================================ +13:31:41 Calculate Source COMM Id = 4 +13:31:41 ============================================================================ +13:31:41 + + +waiting on router queue for slot.... +13:31:42 ============================================================================ +13:31:42 Slot Id : <419> +13:31:42 Transaction Type : RESPONSE +13:31:42 Received From : +13:31:42 ============================================================================ +13:31:42 FNo. Len. Field Value +13:31:42 ============================================================================ +13:31:42 [ 1] [ 4] [0210] +13:31:42 [ 2] [ 16] [6213545000990303] +13:31:42 [ 3] [ 6] [010000] +13:31:42 [ 4] [ 12] [000200000000] +13:31:42 [ 7] [ 10] [0320063046] +13:31:42 [ 11] [ 6] [269317] +13:31:42 [ 12] [ 6] [133046] +13:31:42 [ 13] [ 4] [0320] +13:31:42 [ 15] [ 4] [0320] +13:31:42 [ 18] [ 4] [6011] +13:31:42 [ 19] [ 3] [418] +13:31:42 [ 22] [ 3] [021] +13:31:42 [ 32] [ 6] [180893] +13:31:42 [ 35] [ 32] [6213545000990303=491212019030332] +13:31:42 [ 37] [ 12] [507906269317] +13:31:42 [ 39] [ 2] [61] +13:31:42 [ 41] [ 8] [0366SKTT] +13:31:42 [ 49] [ 3] [418] +13:31:42 ============================================================================ +13:31:42 Calculate Source COMM Id = 2 +13:31:42 ============================================================================ +13:31:42 + + +waiting on router queue for slot.... +13:31:48 ============================================================================ +13:31:48 Slot Id : <406> +13:31:48 Transaction Type : REQUEST +13:31:48 Received From : +13:31:48 ============================================================================ +13:31:48 FNo. Len. Field Value +13:31:48 ============================================================================ +13:31:48 [ 1] [ 4] [0800] +13:31:48 [ 2] [ 5] [02531] +13:31:48 [ 3] [ 6] [579138] +13:31:48 [ 7] [ 10] [0320063148] +13:31:48 [ 11] [ 6] [807197] +13:31:48 [ 15] [ 10] [0320063148] +13:31:48 [ 37] [ 11] [57913807197] +13:31:48 [ 70] [ 3] [001] +13:31:48 ============================================================================ +13:31:48 + + +waiting on router queue for slot.... +13:31:48 ============================================================================ +13:31:48 Slot Id : <406> +13:31:48 Transaction Type : RESPONSE +13:31:48 Received From : +13:31:48 ============================================================================ +13:31:48 FNo. Len. Field Value +13:31:48 ============================================================================ +13:31:48 [ 1] [ 4] [0810] +13:31:48 [ 7] [ 10] [0320063148] +13:31:48 [ 11] [ 6] [807197] +13:31:48 [ 15] [ 4] [0320] +13:31:48 [ 37] [ 12] [57913807197] +13:31:48 [ 39] [ 2] [00] +13:31:48 [ 70] [ 3] [001] +13:31:48 ============================================================================ +13:31:48 Sending to : +13:31:48 ============================================================================ +13:31:48 + + +waiting on router queue for slot.... +13:31:57 ============================================================================ +13:31:57 Slot Id : <411> +13:31:57 Transaction Type : REQUEST +13:31:57 Received From : +13:31:57 ============================================================================ +13:31:57 FNo. Len. Field Value +13:31:57 ============================================================================ +13:31:57 [ 1] [ 4] [0800] +13:31:57 [ 7] [ 10] [0320063104] +13:31:57 [ 11] [ 6] [156571] +13:31:57 [ 70] [ 3] [301] +13:31:57 ============================================================================ +13:31:57 + + +waiting on router queue for slot.... +13:31:57 Sending to : +13:31:57 ============================================================================ +13:31:57 ============================================================================ +13:31:57 Slot Id : <411> +13:31:57 Transaction Type : RESPONSE +13:31:57 Received From : +13:31:57 ============================================================================ +13:31:57 FNo. Len. Field Value +13:31:57 ============================================================================ +13:31:57 [ 1] [ 4] [0810] +13:31:57 [ 7] [ 10] [0320063104] +13:31:57 [ 11] [ 6] [156571] +13:31:57 [ 39] [ 2] [00] +13:31:57 [ 70] [ 3] [301] +13:31:57 ============================================================================ +13:31:57 Calculate Source COMM Id = 2 +13:31:57 ============================================================================ +13:31:57 + + +waiting on router queue for slot.... +13:32:13 ============================================================================ +13:32:13 Slot Id : <407> +13:32:13 Transaction Type : REQUEST +13:32:13 Received From : +13:32:13 ============================================================================ +13:32:13 FNo. Len. Field Value +13:32:13 ============================================================================ +13:32:13 [ 1] [ 4] [0800] +13:32:13 [ 7] [ 10] [0320063120] +13:32:13 [ 11] [ 6] [156572] +13:32:13 [ 70] [ 3] [301] +13:32:13 ============================================================================ +13:32:13 + + +waiting on router queue for slot.... +13:32:13 Sending to : +13:32:13 ============================================================================ +13:32:13 ============================================================================ +13:32:13 Slot Id : <407> +13:32:13 Transaction Type : RESPONSE +13:32:13 Received From : +13:32:13 ============================================================================ +13:32:13 FNo. Len. Field Value +13:32:13 ============================================================================ +13:32:13 [ 1] [ 4] [0810] +13:32:13 [ 7] [ 10] [0320063120] +13:32:13 [ 11] [ 6] [156572] +13:32:13 [ 39] [ 2] [00] +13:32:13 [ 70] [ 3] [301] +13:32:13 ============================================================================ +13:32:13 Calculate Source COMM Id = 2 +13:32:13 ============================================================================ +13:32:13 + + +waiting on router queue for slot.... +13:32:24 ============================================================================ +13:32:24 Slot Id : <416> +13:32:24 Transaction Type : REQUEST +13:32:24 Received From : +13:32:24 ============================================================================ +13:32:24 FNo. Len. Field Value +13:32:24 ============================================================================ +13:32:24 [ 1] [ 4] [0800] +13:32:24 [ 7] [ 10] [0320063131] +13:32:24 [ 11] [ 6] [156573] +13:32:24 [ 70] [ 3] [301] +13:32:24 ============================================================================ +13:32:24 + + +waiting on router queue for slot.... +13:32:24 Sending to : +13:32:24 ============================================================================ +13:32:24 ============================================================================ +13:32:24 Slot Id : <416> +13:32:24 Transaction Type : RESPONSE +13:32:24 Received From : +13:32:24 ============================================================================ +13:32:24 FNo. Len. Field Value +13:32:24 ============================================================================ +13:32:24 [ 1] [ 4] [0810] +13:32:24 [ 7] [ 10] [0320063131] +13:32:24 [ 11] [ 6] [156573] +13:32:24 [ 39] [ 2] [00] +13:32:24 [ 70] [ 3] [301] +13:32:24 ============================================================================ +13:32:24 Calculate Source COMM Id = 2 +13:32:24 ============================================================================ +13:32:24 + + +waiting on router queue for slot.... +13:32:30 ============================================================================ +13:32:30 Slot Id : <380> +13:32:30 Transaction Type : REQUEST +13:32:30 Received From : +13:32:30 ============================================================================ +13:32:30 FNo. Len. Field Value +13:32:30 ============================================================================ +13:32:30 [ 1] [ 4] [0200] +13:32:30 [ 2] [ 16] [6213544002213004] +13:32:30 [ 3] [ 6] [302000] +13:32:30 [ 4] [ 12] [000000000000] +13:32:30 [ 7] [ 10] [0320133020] +13:32:30 [ 11] [ 6] [946731] +13:32:30 [ 12] [ 6] [133020] +13:32:30 [ 13] [ 4] [0320] +13:32:30 [ 15] [ 4] [0320] +13:32:30 [ 18] [ 4] [6011] +13:32:30 [ 19] [ 3] [418] +13:32:30 [ 22] [ 3] [021] +13:32:30 [ 25] [ 2] [01] +13:32:30 [ 28] [ 9] [D00000000] +13:32:30 [ 32] [ 6] [668899] +13:32:30 [ 35] [ 32] [6213544002213004=491212011300457] +13:32:30 [ 37] [ 12] [507901912197] +13:32:30 [ 41] [ 8] [03013004] +13:32:30 [ 42] [ 15] [APT ] +13:32:30 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:32:30 [ 49] [ 3] [418] +13:32:30 [ 52] [ 16] [F42292859D835504] +13:32:30 ============================================================================ +13:32:30 + + +waiting on router queue for slot.... +13:32:30 Sending to : +13:32:30 ============================================================================ +13:32:30 Sending to : +13:32:30 ============================================================================ +13:32:30 ============================================================================ +13:32:30 Slot Id : <380> +13:32:30 Transaction Type : REQUEST +13:32:30 Received From : +13:32:30 ============================================================================ +13:32:30 FNo. Len. Field Value +13:32:30 ============================================================================ +13:32:30 [ 1] [ 4] [0200] +13:32:30 [ 2] [ 16] [6213544002213004] +13:32:30 [ 3] [ 6] [302000] +13:32:30 [ 4] [ 12] [000000000000] +13:32:30 [ 7] [ 10] [0320133020] +13:32:30 [ 11] [ 6] [946731] +13:32:30 [ 12] [ 6] [133020] +13:32:30 [ 13] [ 4] [0320] +13:32:30 [ 15] [ 4] [0320] +13:32:30 [ 18] [ 4] [6011] +13:32:30 [ 19] [ 3] [418] +13:32:30 [ 22] [ 3] [021] +13:32:30 [ 25] [ 2] [01] +13:32:30 [ 28] [ 9] [D00000000] +13:32:30 [ 32] [ 6] [668899] +13:32:30 [ 35] [ 32] [6213544002213004=491212011300457] +13:32:30 [ 37] [ 12] [507901912197] +13:32:30 [ 41] [ 8] [03013004] +13:32:30 [ 42] [ 15] [APT ] +13:32:30 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:32:30 [ 49] [ 3] [418] +13:32:30 [ 52] [ 16] [F42292859D835504] +13:32:30 ============================================================================ +13:32:30 + + +waiting on router queue for slot.... +13:32:30 Sending to : +13:32:30 ============================================================================ +13:32:30 ============================================================================ +13:32:30 Slot Id : <380> +13:32:30 Transaction Type : REQUEST +13:32:30 Received From : +13:32:30 ============================================================================ +13:32:30 FNo. Len. Field Value +13:32:30 ============================================================================ +13:32:30 [ 1] [ 4] [0200] +13:32:30 [ 2] [ 16] [6213544002213004] +13:32:30 [ 3] [ 6] [302000] +13:32:30 [ 4] [ 12] [000000000000] +13:32:30 [ 7] [ 10] [0320133020] +13:32:30 [ 11] [ 6] [946731] +13:32:30 [ 12] [ 6] [133020] +13:32:30 [ 13] [ 4] [0320] +13:32:30 [ 15] [ 4] [0320] +13:32:30 [ 18] [ 4] [6011] +13:32:30 [ 19] [ 3] [418] +13:32:30 [ 22] [ 3] [021] +13:32:30 [ 25] [ 2] [01] +13:32:30 [ 28] [ 9] [D00000000] +13:32:30 [ 32] [ 6] [668899] +13:32:30 [ 35] [ 32] [6213544002213004=491212011300457] +13:32:30 [ 37] [ 12] [507901912197] +13:32:30 [ 41] [ 8] [03013004] +13:32:30 [ 42] [ 15] [APT ] +13:32:30 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:32:30 [ 49] [ 3] [418] +13:32:30 [ 52] [ 16] [CABA6F28B0929160] +13:32:30 ============================================================================ +13:32:30 + + +waiting on router queue for slot.... +13:32:30 Sending to : <0> +13:32:30 ============================================================================ +13:32:31 ============================================================================ +13:32:31 Slot Id : <380> +13:32:31 Transaction Type : RESPONSE +13:32:31 Received From : +13:32:31 ============================================================================ +13:32:31 FNo. Len. Field Value +13:32:31 ============================================================================ +13:32:31 [ 1] [ 4] [0210] +13:32:31 [ 2] [ 16] [6213544002213004] +13:32:31 [ 3] [ 6] [302000] +13:32:31 [ 4] [ 12] [000000000000] +13:32:31 [ 7] [ 10] [0320133020] +13:32:31 [ 11] [ 6] [946731] +13:32:31 [ 12] [ 6] [133020] +13:32:31 [ 13] [ 4] [0320] +13:32:31 [ 15] [ 4] [0320] +13:32:31 [ 18] [ 4] [6011] +13:32:31 [ 19] [ 3] [418] +13:32:31 [ 32] [ 6] [668899] +13:32:31 [ 35] [ 32] [6213544002213004=491212011300457] +13:32:31 [ 37] [ 12] [507901912197] +13:32:31 [ 38] [ 6] [146327] +13:32:31 [ 39] [ 2] [00] +13:32:31 [ 41] [ 8] [03013004] +13:32:31 [ 49] [ 3] [418] +13:32:31 [ 54] [ 40] [2001418C0000294536002002418C000029453600] +13:32:31 ============================================================================ +13:32:31 Sending to : +13:32:31 ============================================================================ +13:32:31 + + +waiting on router queue for slot.... +13:32:32 ============================================================================ +13:32:32 Slot Id : <380> +13:32:32 Transaction Type : RESPONSE +13:32:32 Received From : +13:32:32 ============================================================================ +13:32:32 FNo. Len. Field Value +13:32:32 ============================================================================ +13:32:32 [ 1] [ 4] [0210] +13:32:32 [ 2] [ 16] [6213544002213004] +13:32:32 [ 3] [ 6] [302000] +13:32:32 [ 4] [ 12] [000000000000] +13:32:32 [ 7] [ 10] [0320133020] +13:32:32 [ 11] [ 6] [946731] +13:32:32 [ 12] [ 6] [133020] +13:32:32 [ 13] [ 4] [0320] +13:32:32 [ 15] [ 4] [0320] +13:32:32 [ 18] [ 4] [6011] +13:32:32 [ 19] [ 3] [418] +13:32:32 [ 32] [ 6] [668899] +13:32:32 [ 35] [ 32] [6213544002213004=491212011300457] +13:32:32 [ 37] [ 12] [507901912197] +13:32:32 [ 38] [ 6] [146327] +13:32:32 [ 39] [ 2] [00] +13:32:32 [ 41] [ 8] [03013004] +13:32:32 [ 49] [ 3] [418] +13:32:32 [ 54] [ 40] [2001418C0000294536002002418C000029453600] +13:32:32 ============================================================================ +13:32:32 Calculate Source COMM Id = 4 +13:32:32 ============================================================================ +13:32:32 + + +waiting on router queue for slot.... +13:32:41 ============================================================================ +13:32:41 Slot Id : <384> +13:32:41 Transaction Type : REQUEST +13:32:41 Received From : +13:32:41 ============================================================================ +13:32:41 FNo. Len. Field Value +13:32:41 ============================================================================ +13:32:41 [ 1] [ 4] [0800] +13:32:41 [ 7] [ 10] [0320063147] +13:32:41 [ 11] [ 6] [156574] +13:32:41 [ 70] [ 3] [301] +13:32:41 ============================================================================ +13:32:41 + + +waiting on router queue for slot.... +13:32:41 Sending to : +13:32:41 ============================================================================ +13:32:41 ============================================================================ +13:32:41 Slot Id : <384> +13:32:41 Transaction Type : RESPONSE +13:32:41 Received From : +13:32:41 ============================================================================ +13:32:41 FNo. Len. Field Value +13:32:41 ============================================================================ +13:32:41 [ 1] [ 4] [0810] +13:32:41 [ 7] [ 10] [0320063147] +13:32:41 [ 11] [ 6] [156574] +13:32:41 [ 39] [ 2] [00] +13:32:41 [ 70] [ 3] [301] +13:32:41 ============================================================================ +13:32:41 Calculate Source COMM Id = 2 +13:32:41 ============================================================================ +13:32:41 + + +waiting on router queue for slot.... +13:32:50 ============================================================================ +13:32:50 Slot Id : <420> +13:32:50 Transaction Type : REQUEST +13:32:50 Received From : +13:32:50 ============================================================================ +13:32:50 FNo. Len. Field Value +13:32:50 ============================================================================ +13:32:50 [ 1] [ 4] [0800] +13:32:50 [ 2] [ 5] [02531] +13:32:50 [ 3] [ 6] [579138] +13:32:50 [ 7] [ 10] [0320063250] +13:32:50 [ 11] [ 6] [807198] +13:32:50 [ 15] [ 10] [0320063250] +13:32:50 [ 37] [ 11] [57913807198] +13:32:50 [ 70] [ 3] [001] +13:32:50 ============================================================================ +13:32:50 + + +waiting on router queue for slot.... +13:32:50 ============================================================================ +13:32:50 Slot Id : <420> +13:32:50 Transaction Type : RESPONSE +13:32:50 Received From : +13:32:50 ============================================================================ +13:32:50 FNo. Len. Field Value +13:32:50 ============================================================================ +13:32:50 [ 1] [ 4] [0810] +13:32:50 [ 7] [ 10] [0320063250] +13:32:50 [ 11] [ 6] [807198] +13:32:50 [ 15] [ 4] [0320] +13:32:50 [ 37] [ 12] [57913807198] +13:32:50 [ 39] [ 2] [00] +13:32:50 [ 70] [ 3] [001] +13:32:50 ============================================================================ +13:32:50 Sending to : +13:32:50 ============================================================================ +13:32:50 + + +waiting on router queue for slot.... +13:32:56 ============================================================================ +13:32:56 Slot Id : <381> +13:32:56 Transaction Type : REQUEST +13:32:56 Received From : +13:32:56 ============================================================================ +13:32:56 FNo. Len. Field Value +13:32:56 ============================================================================ +13:32:56 [ 1] [ 4] [0800] +13:32:56 [ 7] [ 10] [0320063203] +13:32:56 [ 11] [ 6] [156575] +13:32:56 [ 70] [ 3] [301] +13:32:56 ============================================================================ +13:32:56 + + +waiting on router queue for slot.... +13:32:56 Sending to : +13:32:56 ============================================================================ +13:32:56 ============================================================================ +13:32:56 Slot Id : <381> +13:32:56 Transaction Type : RESPONSE +13:32:56 Received From : +13:32:56 ============================================================================ +13:32:56 FNo. Len. Field Value +13:32:56 ============================================================================ +13:32:56 [ 1] [ 4] [0810] +13:32:56 [ 7] [ 10] [0320063203] +13:32:56 [ 11] [ 6] [156575] +13:32:56 [ 39] [ 2] [00] +13:32:56 [ 70] [ 3] [301] +13:32:56 ============================================================================ +13:32:56 Calculate Source COMM Id = 2 +13:32:56 ============================================================================ +13:32:56 + + +waiting on router queue for slot.... +13:33:06 ============================================================================ +13:33:06 Slot Id : <401> +13:33:06 Transaction Type : REQUEST +13:33:06 Received From : +13:33:06 ============================================================================ +13:33:06 FNo. Len. Field Value +13:33:06 ============================================================================ +13:33:06 [ 1] [ 4] [0200] +13:33:06 [ 2] [ 16] [6213541000701212] +13:33:06 [ 3] [ 6] [010000] +13:33:06 [ 4] [ 12] [000100000000] +13:33:06 [ 7] [ 10] [0320133057] +13:33:06 [ 11] [ 6] [946755] +13:33:06 [ 12] [ 6] [133057] +13:33:06 [ 13] [ 4] [0320] +13:33:06 [ 15] [ 4] [0320] +13:33:06 [ 18] [ 4] [6011] +13:33:06 [ 19] [ 3] [418] +13:33:06 [ 22] [ 3] [021] +13:33:06 [ 25] [ 2] [01] +13:33:06 [ 28] [ 9] [D00002000] +13:33:06 [ 32] [ 6] [668899] +13:33:06 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:06 [ 37] [ 12] [507902151002] +13:33:06 [ 41] [ 8] [03020025] +13:33:06 [ 42] [ 15] [APT ] +13:33:06 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:33:06 [ 49] [ 3] [418] +13:33:06 [ 52] [ 16] [29BD30C4749A3AF8] +13:33:06 ============================================================================ +13:33:06 + + +waiting on router queue for slot.... +13:33:06 Sending to : +13:33:06 ============================================================================ +13:33:06 Sending to : +13:33:06 ============================================================================ +13:33:06 ============================================================================ +13:33:06 Slot Id : <401> +13:33:06 Transaction Type : REQUEST +13:33:06 Received From : +13:33:06 ============================================================================ +13:33:06 FNo. Len. Field Value +13:33:06 ============================================================================ +13:33:06 [ 1] [ 4] [0200] +13:33:06 [ 2] [ 16] [6213541000701212] +13:33:06 [ 3] [ 6] [010000] +13:33:06 [ 4] [ 12] [000100000000] +13:33:06 [ 7] [ 10] [0320133057] +13:33:06 [ 11] [ 6] [946755] +13:33:06 [ 12] [ 6] [133057] +13:33:06 [ 13] [ 4] [0320] +13:33:06 [ 15] [ 4] [0320] +13:33:06 [ 18] [ 4] [6011] +13:33:06 [ 19] [ 3] [418] +13:33:06 [ 22] [ 3] [021] +13:33:06 [ 25] [ 2] [01] +13:33:06 [ 28] [ 9] [D00002000] +13:33:06 [ 32] [ 6] [668899] +13:33:06 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:06 [ 37] [ 12] [507902151002] +13:33:06 [ 41] [ 8] [03020025] +13:33:06 [ 42] [ 15] [APT ] +13:33:06 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:33:06 [ 49] [ 3] [418] +13:33:06 [ 52] [ 16] [29BD30C4749A3AF8] +13:33:06 ============================================================================ +13:33:06 + + +waiting on router queue for slot.... +13:33:06 Sending to : +13:33:06 ============================================================================ +13:33:07 ============================================================================ +13:33:07 Slot Id : <401> +13:33:07 Transaction Type : REQUEST +13:33:07 Received From : +13:33:07 ============================================================================ +13:33:07 FNo. Len. Field Value +13:33:07 ============================================================================ +13:33:07 [ 1] [ 4] [0200] +13:33:07 [ 2] [ 16] [6213541000701212] +13:33:07 [ 3] [ 6] [010000] +13:33:07 [ 4] [ 12] [000100000000] +13:33:07 [ 7] [ 10] [0320133057] +13:33:07 [ 11] [ 6] [946755] +13:33:07 [ 12] [ 6] [133057] +13:33:07 [ 13] [ 4] [0320] +13:33:07 [ 15] [ 4] [0320] +13:33:07 [ 18] [ 4] [6011] +13:33:07 [ 19] [ 3] [418] +13:33:07 [ 22] [ 3] [021] +13:33:07 [ 25] [ 2] [01] +13:33:07 [ 28] [ 9] [D00002000] +13:33:07 [ 32] [ 6] [668899] +13:33:07 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:07 [ 37] [ 12] [507902151002] +13:33:07 [ 41] [ 8] [03020025] +13:33:07 [ 42] [ 15] [APT ] +13:33:07 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:33:07 [ 49] [ 3] [418] +13:33:07 [ 52] [ 16] [1B3C3CC3CB7BF67F] +13:33:07 ============================================================================ +13:33:07 + + +waiting on router queue for slot.... +13:33:07 Sending to : <0> +13:33:07 ============================================================================ +13:33:07 ============================================================================ +13:33:07 Slot Id : <415> +13:33:07 Transaction Type : REQUEST +13:33:07 Received From : +13:33:07 ============================================================================ +13:33:07 FNo. Len. Field Value +13:33:07 ============================================================================ +13:33:07 [ 1] [ 4] [0800] +13:33:07 [ 7] [ 10] [0320063214] +13:33:07 [ 11] [ 6] [156576] +13:33:07 [ 70] [ 3] [301] +13:33:07 ============================================================================ +13:33:07 + + +waiting on router queue for slot.... +13:33:07 Sending to : +13:33:07 ============================================================================ +13:33:07 ============================================================================ +13:33:07 Slot Id : <415> +13:33:07 Transaction Type : RESPONSE +13:33:07 Received From : +13:33:07 ============================================================================ +13:33:07 FNo. Len. Field Value +13:33:07 ============================================================================ +13:33:07 [ 1] [ 4] [0810] +13:33:07 [ 7] [ 10] [0320063214] +13:33:07 [ 11] [ 6] [156576] +13:33:07 [ 39] [ 2] [00] +13:33:07 [ 70] [ 3] [301] +13:33:07 ============================================================================ +13:33:07 Calculate Source COMM Id = 2 +13:33:07 ============================================================================ +13:33:07 + + +waiting on router queue for slot.... +13:33:07 ============================================================================ +13:33:07 Slot Id : <401> +13:33:07 Transaction Type : RESPONSE +13:33:07 Received From : +13:33:07 ============================================================================ +13:33:07 FNo. Len. Field Value +13:33:07 ============================================================================ +13:33:07 [ 1] [ 4] [0210] +13:33:07 [ 2] [ 16] [6213541000701212] +13:33:07 [ 3] [ 6] [010000] +13:33:07 [ 4] [ 12] [000100000000] +13:33:07 [ 7] [ 10] [0320133057] +13:33:07 [ 11] [ 6] [946755] +13:33:07 [ 12] [ 6] [133057] +13:33:07 [ 13] [ 4] [0320] +13:33:07 [ 15] [ 4] [0320] +13:33:07 [ 18] [ 4] [6011] +13:33:07 [ 19] [ 3] [418] +13:33:07 [ 32] [ 6] [668899] +13:33:07 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:07 [ 37] [ 12] [507902151002] +13:33:07 [ 38] [ 6] [946755] +13:33:07 [ 39] [ 2] [51] +13:33:07 [ 41] [ 8] [03020025] +13:33:07 [ 49] [ 3] [418] +13:33:07 [ 54] [ 40] [0001418C0000524304200002418C000052430420] +13:33:07 ============================================================================ +13:33:07 Sending to : +13:33:07 ============================================================================ +13:33:07 + + +waiting on router queue for slot.... +13:33:08 ============================================================================ +13:33:08 Slot Id : <401> +13:33:08 Transaction Type : RESPONSE +13:33:08 Received From : +13:33:08 ============================================================================ +13:33:08 FNo. Len. Field Value +13:33:08 ============================================================================ +13:33:08 [ 1] [ 4] [0210] +13:33:08 [ 2] [ 16] [6213541000701212] +13:33:08 [ 3] [ 6] [010000] +13:33:08 [ 4] [ 12] [000100000000] +13:33:08 [ 7] [ 10] [0320133057] +13:33:08 [ 11] [ 6] [946755] +13:33:08 [ 12] [ 6] [133057] +13:33:08 [ 13] [ 4] [0320] +13:33:08 [ 15] [ 4] [0320] +13:33:08 [ 18] [ 4] [6011] +13:33:08 [ 19] [ 3] [418] +13:33:08 [ 32] [ 6] [668899] +13:33:08 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:08 [ 37] [ 12] [507902151002] +13:33:08 [ 38] [ 6] [946755] +13:33:08 [ 39] [ 2] [51] +13:33:08 [ 41] [ 8] [03020025] +13:33:08 [ 49] [ 3] [418] +13:33:08 [ 54] [ 40] [0001418C0000524304200002418C000052430420] +13:33:08 ============================================================================ +13:33:08 Calculate Source COMM Id = 4 +13:33:08 ============================================================================ +13:33:08 + + +waiting on router queue for slot.... +13:33:12 ============================================================================ +13:33:12 Slot Id : <425> +13:33:12 Transaction Type : REQUEST +13:33:12 Received From : +13:33:12 ============================================================================ +13:33:12 FNo. Len. Field Value +13:33:12 ============================================================================ +13:33:12 [ 1] [ 4] [0200] +13:33:12 [ 2] [ 16] [6213544002092192] +13:33:12 [ 3] [ 6] [311000] +13:33:12 [ 4] [ 12] [000000000000] +13:33:12 [ 7] [ 10] [0320134059] +13:33:12 [ 11] [ 6] [167756] +13:33:12 [ 12] [ 6] [134059] +13:33:12 [ 13] [ 4] [0320] +13:33:12 [ 14] [ 4] [4912] +13:33:12 [ 15] [ 4] [0320] +13:33:12 [ 18] [ 4] [6011] +13:33:12 [ 22] [ 3] [900] +13:33:12 [ 25] [ 2] [02] +13:33:12 [ 28] [ 9] [000000000] +13:33:12 [ 32] [ 6] [220699] +13:33:12 [ 35] [ 32] [6213544002092192=491212019219148] +13:33:12 [ 37] [ 12] [507900175078] +13:33:12 [ 41] [ 8] [07000100] +13:33:12 [ 42] [ 15] [APTRA ] +13:33:12 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:33:12 [ 49] [ 3] [418] +13:33:12 [ 52] [ 16] [09827F1D274B0455] +13:33:12 ============================================================================ +13:33:12 + + +waiting on router queue for slot.... +13:33:12 Sending to : +13:33:12 ============================================================================ +13:33:12 Sending to : +13:33:12 ============================================================================ +13:33:12 ============================================================================ +13:33:12 Slot Id : <425> +13:33:12 Transaction Type : REQUEST +13:33:12 Received From : +13:33:12 ============================================================================ +13:33:12 FNo. Len. Field Value +13:33:12 ============================================================================ +13:33:12 [ 1] [ 4] [0200] +13:33:12 [ 2] [ 16] [6213544002092192] +13:33:12 [ 3] [ 6] [311000] +13:33:12 [ 4] [ 12] [000000000000] +13:33:12 [ 7] [ 10] [0320134059] +13:33:12 [ 11] [ 6] [167756] +13:33:12 [ 12] [ 6] [134059] +13:33:12 [ 13] [ 4] [0320] +13:33:12 [ 14] [ 4] [4912] +13:33:12 [ 15] [ 4] [0320] +13:33:12 [ 18] [ 4] [6011] +13:33:12 [ 22] [ 3] [900] +13:33:12 [ 25] [ 2] [02] +13:33:12 [ 28] [ 9] [000000000] +13:33:12 [ 32] [ 6] [220699] +13:33:12 [ 35] [ 32] [6213544002092192=491212019219148] +13:33:12 [ 37] [ 12] [507900175078] +13:33:12 [ 41] [ 8] [07000100] +13:33:12 [ 42] [ 15] [APTRA ] +13:33:12 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:33:12 [ 49] [ 3] [418] +13:33:12 [ 52] [ 16] [09827F1D274B0455] +13:33:12 ============================================================================ +13:33:12 + + +waiting on router queue for slot.... +13:33:12 Sending to : +13:33:12 ============================================================================ +13:33:12 ============================================================================ +13:33:12 Slot Id : <425> +13:33:12 Transaction Type : REQUEST +13:33:12 Received From : +13:33:12 ============================================================================ +13:33:12 FNo. Len. Field Value +13:33:12 ============================================================================ +13:33:12 [ 1] [ 4] [0200] +13:33:12 [ 2] [ 16] [6213544002092192] +13:33:12 [ 3] [ 6] [311000] +13:33:12 [ 4] [ 12] [000000000000] +13:33:12 [ 7] [ 10] [0320134059] +13:33:12 [ 11] [ 6] [167756] +13:33:12 [ 12] [ 6] [134059] +13:33:12 [ 13] [ 4] [0320] +13:33:12 [ 14] [ 4] [4912] +13:33:12 [ 15] [ 4] [0320] +13:33:12 [ 18] [ 4] [6011] +13:33:12 [ 22] [ 3] [900] +13:33:12 [ 25] [ 2] [02] +13:33:12 [ 28] [ 9] [000000000] +13:33:12 [ 32] [ 6] [220699] +13:33:12 [ 35] [ 32] [6213544002092192=491212019219148] +13:33:12 [ 37] [ 12] [507900175078] +13:33:12 [ 41] [ 8] [07000100] +13:33:12 [ 42] [ 15] [APTRA ] +13:33:12 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:33:12 [ 49] [ 3] [418] +13:33:12 [ 52] [ 16] [58F25D6BAE7BF906] +13:33:12 ============================================================================ +13:33:12 + + +waiting on router queue for slot.... +13:33:12 Sending to : <0> +13:33:12 ============================================================================ +13:33:12 ============================================================================ +13:33:12 Slot Id : <425> +13:33:12 Transaction Type : RESPONSE +13:33:12 Received From : +13:33:12 ============================================================================ +13:33:12 FNo. Len. Field Value +13:33:12 ============================================================================ +13:33:12 [ 1] [ 4] [0210] +13:33:12 [ 2] [ 16] [6213544002092192] +13:33:12 [ 3] [ 6] [311000] +13:33:12 [ 4] [ 12] [000000000000] +13:33:12 [ 7] [ 10] [0320134059] +13:33:12 [ 11] [ 6] [167756] +13:33:12 [ 12] [ 6] [134059] +13:33:12 [ 13] [ 4] [0320] +13:33:12 [ 15] [ 4] [0320] +13:33:12 [ 18] [ 4] [6011] +13:33:12 [ 22] [ 3] [900] +13:33:12 [ 32] [ 6] [220699] +13:33:12 [ 35] [ 32] [6213544002092192=491212019219148] +13:33:12 [ 37] [ 12] [507900175078] +13:33:12 [ 39] [ 2] [14] +13:33:12 [ 41] [ 8] [07000100] +13:33:12 [ 49] [ 3] [418] +13:33:12 ============================================================================ +13:33:12 Sending to : +13:33:12 ============================================================================ +13:33:12 + + +waiting on router queue for slot.... +13:33:13 ============================================================================ +13:33:13 Slot Id : <425> +13:33:13 Transaction Type : RESPONSE +13:33:13 Received From : +13:33:13 ============================================================================ +13:33:13 FNo. Len. Field Value +13:33:13 ============================================================================ +13:33:13 [ 1] [ 4] [0210] +13:33:13 [ 2] [ 16] [6213544002092192] +13:33:13 [ 3] [ 6] [311000] +13:33:13 [ 4] [ 12] [000000000000] +13:33:13 [ 7] [ 10] [0320134059] +13:33:13 [ 11] [ 6] [167756] +13:33:13 [ 12] [ 6] [134059] +13:33:13 [ 13] [ 4] [0320] +13:33:13 [ 15] [ 4] [0320] +13:33:13 [ 18] [ 4] [6011] +13:33:13 [ 22] [ 3] [900] +13:33:13 [ 32] [ 6] [220699] +13:33:13 [ 35] [ 32] [6213544002092192=491212019219148] +13:33:13 [ 37] [ 12] [507900175078] +13:33:13 [ 39] [ 2] [14] +13:33:13 [ 41] [ 8] [07000100] +13:33:13 [ 49] [ 3] [418] +13:33:13 ============================================================================ +13:33:13 Calculate Source COMM Id = 1 +13:33:13 ============================================================================ +13:33:13 + + +waiting on router queue for slot.... +13:33:18 ============================================================================ +13:33:18 Slot Id : <398> +13:33:18 Transaction Type : REQUEST +13:33:18 Received From : +13:33:18 ============================================================================ +13:33:18 FNo. Len. Field Value +13:33:18 ============================================================================ +13:33:18 [ 1] [ 4] [0800] +13:33:18 [ 7] [ 10] [0320063225] +13:33:18 [ 11] [ 6] [156577] +13:33:18 [ 70] [ 3] [301] +13:33:18 ============================================================================ +13:33:18 + + +waiting on router queue for slot.... +13:33:18 Sending to : +13:33:18 ============================================================================ +13:33:18 ============================================================================ +13:33:18 Slot Id : <398> +13:33:18 Transaction Type : RESPONSE +13:33:18 Received From : +13:33:18 ============================================================================ +13:33:18 FNo. Len. Field Value +13:33:18 ============================================================================ +13:33:18 [ 1] [ 4] [0810] +13:33:18 [ 7] [ 10] [0320063225] +13:33:18 [ 11] [ 6] [156577] +13:33:18 [ 39] [ 2] [00] +13:33:18 [ 70] [ 3] [301] +13:33:18 ============================================================================ +13:33:18 Calculate Source COMM Id = 2 +13:33:18 ============================================================================ +13:33:18 + + +waiting on router queue for slot.... +13:33:20 ============================================================================ +13:33:20 Slot Id : <433> +13:33:20 Transaction Type : REQUEST +13:33:20 Received From : +13:33:20 ============================================================================ +13:33:20 FNo. Len. Field Value +13:33:20 ============================================================================ +13:33:20 [ 1] [ 4] [0200] +13:33:20 [ 2] [ 16] [6213544001779724] +13:33:20 [ 3] [ 6] [301000] +13:33:20 [ 7] [ 10] [0320063226] +13:33:20 [ 11] [ 6] [269326] +13:33:20 [ 12] [ 6] [133226] +13:33:20 [ 13] [ 4] [0320] +13:33:20 [ 14] [ 4] [4912] +13:33:20 [ 15] [ 4] [0320] +13:33:20 [ 18] [ 4] [6011] +13:33:20 [ 19] [ 3] [418] +13:33:20 [ 22] [ 3] [021] +13:33:20 [ 25] [ 2] [01] +13:33:20 [ 32] [ 6] [180893] +13:33:20 [ 35] [ 32] [6213544001779724=491212017972233] +13:33:20 [ 37] [ 12] [507906269326] +13:33:20 [ 41] [ 8] [0221XKKM] +13:33:20 [ 42] [ 15] [999999 ] +13:33:20 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +13:33:20 [ 49] [ 3] [418] +13:33:20 [ 52] [ 16] [E9C9679393627CEC] +13:33:20 ============================================================================ +13:33:20 + + +waiting on router queue for slot.... +13:33:20 Sending to : +13:33:20 ============================================================================ +13:33:20 Sending to : +13:33:20 ============================================================================ +13:33:20 ============================================================================ +13:33:20 Slot Id : <433> +13:33:20 Transaction Type : REQUEST +13:33:20 Received From : +13:33:20 ============================================================================ +13:33:20 FNo. Len. Field Value +13:33:20 ============================================================================ +13:33:20 [ 1] [ 4] [0200] +13:33:20 [ 2] [ 16] [6213544001779724] +13:33:20 [ 3] [ 6] [301000] +13:33:20 [ 7] [ 10] [0320063226] +13:33:20 [ 11] [ 6] [269326] +13:33:20 [ 12] [ 6] [133226] +13:33:20 [ 13] [ 4] [0320] +13:33:20 [ 14] [ 4] [4912] +13:33:20 [ 15] [ 4] [0320] +13:33:20 [ 18] [ 4] [6011] +13:33:20 [ 19] [ 3] [418] +13:33:20 [ 22] [ 3] [021] +13:33:20 [ 25] [ 2] [01] +13:33:20 [ 32] [ 6] [180893] +13:33:20 [ 35] [ 32] [6213544001779724=491212017972233] +13:33:20 [ 37] [ 12] [507906269326] +13:33:20 [ 41] [ 8] [0221XKKM] +13:33:20 [ 42] [ 15] [999999 ] +13:33:20 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +13:33:20 [ 49] [ 3] [418] +13:33:20 [ 52] [ 16] [E9C9679393627CEC] +13:33:20 ============================================================================ +13:33:20 + + +waiting on router queue for slot.... +13:33:20 Sending to : +13:33:20 ============================================================================ +13:33:20 ============================================================================ +13:33:20 Slot Id : <433> +13:33:20 Transaction Type : REQUEST +13:33:20 Received From : +13:33:20 ============================================================================ +13:33:20 FNo. Len. Field Value +13:33:20 ============================================================================ +13:33:20 [ 1] [ 4] [0200] +13:33:20 [ 2] [ 16] [6213544001779724] +13:33:20 [ 3] [ 6] [301000] +13:33:20 [ 7] [ 10] [0320063226] +13:33:20 [ 11] [ 6] [269326] +13:33:20 [ 12] [ 6] [133226] +13:33:20 [ 13] [ 4] [0320] +13:33:20 [ 14] [ 4] [4912] +13:33:20 [ 15] [ 4] [0320] +13:33:20 [ 18] [ 4] [6011] +13:33:20 [ 19] [ 3] [418] +13:33:20 [ 22] [ 3] [021] +13:33:20 [ 25] [ 2] [01] +13:33:20 [ 32] [ 6] [180893] +13:33:20 [ 35] [ 32] [6213544001779724=491212017972233] +13:33:20 [ 37] [ 12] [507906269326] +13:33:20 [ 41] [ 8] [0221XKKM] +13:33:20 [ 42] [ 15] [999999 ] +13:33:20 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +13:33:20 [ 49] [ 3] [418] +13:33:20 [ 52] [ 16] [7BEB5DFD4A1FD7C3] +13:33:20 ============================================================================ +13:33:20 + + +waiting on router queue for slot.... +13:33:20 Sending to : <0> +13:33:20 ============================================================================ +13:33:20 ============================================================================ +13:33:20 Slot Id : <433> +13:33:20 Transaction Type : RESPONSE +13:33:20 Received From : +13:33:20 ============================================================================ +13:33:20 FNo. Len. Field Value +13:33:20 ============================================================================ +13:33:20 [ 1] [ 4] [0210] +13:33:20 [ 2] [ 16] [6213544001779724] +13:33:20 [ 3] [ 6] [301000] +13:33:20 [ 4] [ 12] [000000000000] +13:33:20 [ 7] [ 10] [0320063226] +13:33:20 [ 11] [ 6] [269326] +13:33:20 [ 12] [ 6] [133226] +13:33:20 [ 13] [ 4] [0320] +13:33:20 [ 15] [ 4] [0320] +13:33:20 [ 18] [ 4] [6011] +13:33:20 [ 19] [ 3] [418] +13:33:20 [ 32] [ 6] [180893] +13:33:20 [ 35] [ 32] [6213544001779724=491212017972233] +13:33:20 [ 37] [ 12] [507906269326] +13:33:20 [ 38] [ 6] [048927] +13:33:20 [ 39] [ 2] [00] +13:33:20 [ 41] [ 8] [0221XKKM] +13:33:20 [ 49] [ 3] [418] +13:33:20 [ 54] [ 40] [1001418C0002279120521002418C000227912052] +13:33:20 ============================================================================ +13:33:20 Sending to : +13:33:20 ============================================================================ +13:33:20 + + +waiting on router queue for slot.... +13:33:22 ============================================================================ +13:33:22 Slot Id : <433> +13:33:22 Transaction Type : RESPONSE +13:33:22 Received From : +13:33:22 ============================================================================ +13:33:22 FNo. Len. Field Value +13:33:22 ============================================================================ +13:33:22 [ 1] [ 4] [0210] +13:33:22 [ 2] [ 16] [6213544001779724] +13:33:22 [ 3] [ 6] [301000] +13:33:22 [ 4] [ 12] [000000000000] +13:33:22 [ 7] [ 10] [0320063226] +13:33:22 [ 11] [ 6] [269326] +13:33:22 [ 12] [ 6] [133226] +13:33:22 [ 13] [ 4] [0320] +13:33:22 [ 15] [ 4] [0320] +13:33:22 [ 18] [ 4] [6011] +13:33:22 [ 19] [ 3] [418] +13:33:22 [ 32] [ 6] [180893] +13:33:22 [ 35] [ 32] [6213544001779724=491212017972233] +13:33:22 [ 37] [ 12] [507906269326] +13:33:22 [ 38] [ 6] [048927] +13:33:22 [ 39] [ 2] [00] +13:33:22 [ 41] [ 8] [0221XKKM] +13:33:22 [ 49] [ 3] [418] +13:33:22 [ 54] [ 40] [1001418C0002279120521002418C000227912052] +13:33:22 ============================================================================ +13:33:22 Calculate Source COMM Id = 2 +13:33:22 ============================================================================ +13:33:22 + + +waiting on router queue for slot.... +13:33:22 ============================================================================ +13:33:22 Slot Id : <388> +13:33:22 Transaction Type : REQUEST +13:33:22 Received From : +13:33:22 ============================================================================ +13:33:22 FNo. Len. Field Value +13:33:22 ============================================================================ +13:33:22 [ 1] [ 4] [0200] +13:33:22 [ 2] [ 16] [6213541000701212] +13:33:22 [ 3] [ 6] [010000] +13:33:22 [ 4] [ 12] [000050000000] +13:33:22 [ 7] [ 10] [0320133112] +13:33:22 [ 11] [ 6] [946760] +13:33:22 [ 12] [ 6] [133112] +13:33:22 [ 13] [ 4] [0320] +13:33:22 [ 15] [ 4] [0320] +13:33:22 [ 18] [ 4] [6011] +13:33:22 [ 19] [ 3] [418] +13:33:22 [ 22] [ 3] [021] +13:33:22 [ 25] [ 2] [01] +13:33:22 [ 28] [ 9] [D00002000] +13:33:22 [ 32] [ 6] [668899] +13:33:22 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:22 [ 37] [ 12] [507902151003] +13:33:22 [ 41] [ 8] [03020025] +13:33:22 [ 42] [ 15] [APT ] +13:33:22 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:33:22 [ 49] [ 3] [418] +13:33:22 [ 52] [ 16] [29BD30C4749A3AF8] +13:33:22 ============================================================================ +13:33:22 + + +waiting on router queue for slot.... +13:33:22 Sending to : +13:33:22 ============================================================================ +13:33:22 Sending to : +13:33:22 ============================================================================ +13:33:22 ============================================================================ +13:33:22 Slot Id : <388> +13:33:22 Transaction Type : REQUEST +13:33:22 Received From : +13:33:22 ============================================================================ +13:33:22 FNo. Len. Field Value +13:33:22 ============================================================================ +13:33:22 [ 1] [ 4] [0200] +13:33:22 [ 2] [ 16] [6213541000701212] +13:33:22 [ 3] [ 6] [010000] +13:33:22 [ 4] [ 12] [000050000000] +13:33:22 [ 7] [ 10] [0320133112] +13:33:22 [ 11] [ 6] [946760] +13:33:22 [ 12] [ 6] [133112] +13:33:22 [ 13] [ 4] [0320] +13:33:22 [ 15] [ 4] [0320] +13:33:22 [ 18] [ 4] [6011] +13:33:22 [ 19] [ 3] [418] +13:33:22 [ 22] [ 3] [021] +13:33:22 [ 25] [ 2] [01] +13:33:22 [ 28] [ 9] [D00002000] +13:33:22 [ 32] [ 6] [668899] +13:33:22 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:22 [ 37] [ 12] [507902151003] +13:33:22 [ 41] [ 8] [03020025] +13:33:22 [ 42] [ 15] [APT ] +13:33:22 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:33:22 [ 49] [ 3] [418] +13:33:22 [ 52] [ 16] [29BD30C4749A3AF8] +13:33:22 ============================================================================ +13:33:22 + + +waiting on router queue for slot.... +13:33:22 Sending to : +13:33:22 ============================================================================ +13:33:22 ============================================================================ +13:33:22 Slot Id : <388> +13:33:22 Transaction Type : REQUEST +13:33:22 Received From : +13:33:22 ============================================================================ +13:33:22 FNo. Len. Field Value +13:33:22 ============================================================================ +13:33:22 [ 1] [ 4] [0200] +13:33:22 [ 2] [ 16] [6213541000701212] +13:33:22 [ 3] [ 6] [010000] +13:33:22 [ 4] [ 12] [000050000000] +13:33:22 [ 7] [ 10] [0320133112] +13:33:22 [ 11] [ 6] [946760] +13:33:22 [ 12] [ 6] [133112] +13:33:22 [ 13] [ 4] [0320] +13:33:22 [ 15] [ 4] [0320] +13:33:22 [ 18] [ 4] [6011] +13:33:22 [ 19] [ 3] [418] +13:33:22 [ 22] [ 3] [021] +13:33:22 [ 25] [ 2] [01] +13:33:22 [ 28] [ 9] [D00002000] +13:33:22 [ 32] [ 6] [668899] +13:33:22 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:22 [ 37] [ 12] [507902151003] +13:33:22 [ 41] [ 8] [03020025] +13:33:22 [ 42] [ 15] [APT ] +13:33:22 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:33:22 [ 49] [ 3] [418] +13:33:22 [ 52] [ 16] [1B3C3CC3CB7BF67F] +13:33:22 ============================================================================ +13:33:22 + + +waiting on router queue for slot.... +13:33:22 Sending to : <0> +13:33:22 ============================================================================ +13:33:24 ============================================================================ +13:33:24 Slot Id : <388> +13:33:24 Transaction Type : RESPONSE +13:33:24 Received From : +13:33:24 ============================================================================ +13:33:24 FNo. Len. Field Value +13:33:24 ============================================================================ +13:33:24 [ 1] [ 4] [0210] +13:33:24 [ 2] [ 16] [6213541000701212] +13:33:24 [ 3] [ 6] [010000] +13:33:24 [ 4] [ 12] [000050000000] +13:33:24 [ 7] [ 10] [0320133112] +13:33:24 [ 11] [ 6] [946760] +13:33:24 [ 12] [ 6] [133112] +13:33:24 [ 13] [ 4] [0320] +13:33:24 [ 15] [ 4] [0320] +13:33:24 [ 18] [ 4] [6011] +13:33:24 [ 19] [ 3] [418] +13:33:24 [ 32] [ 6] [668899] +13:33:24 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:24 [ 37] [ 12] [507902151003] +13:33:24 [ 38] [ 6] [946760] +13:33:24 [ 39] [ 2] [51] +13:33:24 [ 41] [ 8] [03020025] +13:33:24 [ 49] [ 3] [418] +13:33:24 [ 54] [ 40] [0001418C0000524304200002418C000052430420] +13:33:24 ============================================================================ +13:33:24 Sending to : +13:33:24 ============================================================================ +13:33:24 + + +waiting on router queue for slot.... +13:33:24 ============================================================================ +13:33:24 Slot Id : <388> +13:33:24 Transaction Type : RESPONSE +13:33:24 Received From : +13:33:24 ============================================================================ +13:33:24 FNo. Len. Field Value +13:33:24 ============================================================================ +13:33:24 [ 1] [ 4] [0210] +13:33:24 [ 2] [ 16] [6213541000701212] +13:33:24 [ 3] [ 6] [010000] +13:33:24 [ 4] [ 12] [000050000000] +13:33:24 [ 7] [ 10] [0320133112] +13:33:24 [ 11] [ 6] [946760] +13:33:24 [ 12] [ 6] [133112] +13:33:24 [ 13] [ 4] [0320] +13:33:24 [ 15] [ 4] [0320] +13:33:24 [ 18] [ 4] [6011] +13:33:24 [ 19] [ 3] [418] +13:33:24 [ 32] [ 6] [668899] +13:33:24 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:24 [ 37] [ 12] [507902151003] +13:33:24 [ 38] [ 6] [946760] +13:33:24 [ 39] [ 2] [51] +13:33:24 [ 41] [ 8] [03020025] +13:33:24 [ 49] [ 3] [418] +13:33:24 [ 54] [ 40] [0001418C0000524304200002418C000052430420] +13:33:24 ============================================================================ +13:33:24 Calculate Source COMM Id = 4 +13:33:24 ============================================================================ +13:33:24 + + +waiting on router queue for slot.... +13:33:34 ============================================================================ +13:33:34 Slot Id : <364> +13:33:34 Transaction Type : REQUEST +13:33:34 Received From : +13:33:34 ============================================================================ +13:33:34 FNo. Len. Field Value +13:33:34 ============================================================================ +13:33:34 [ 1] [ 4] [0800] +13:33:34 [ 7] [ 10] [0320063242] +13:33:34 [ 11] [ 6] [156578] +13:33:34 [ 70] [ 3] [301] +13:33:34 ============================================================================ +13:33:34 + + +waiting on router queue for slot.... +13:33:34 Sending to : +13:33:34 ============================================================================ +13:33:34 ============================================================================ +13:33:34 Slot Id : <364> +13:33:34 Transaction Type : RESPONSE +13:33:34 Received From : +13:33:34 ============================================================================ +13:33:34 FNo. Len. Field Value +13:33:34 ============================================================================ +13:33:34 [ 1] [ 4] [0810] +13:33:34 [ 7] [ 10] [0320063242] +13:33:34 [ 11] [ 6] [156578] +13:33:34 [ 39] [ 2] [00] +13:33:34 [ 70] [ 3] [301] +13:33:34 ============================================================================ +13:33:34 Calculate Source COMM Id = 2 +13:33:34 ============================================================================ +13:33:34 + + +waiting on router queue for slot.... +13:33:36 ============================================================================ +13:33:36 Slot Id : <367> +13:33:36 Transaction Type : REQUEST +13:33:36 Received From : +13:33:36 ============================================================================ +13:33:36 FNo. Len. Field Value +13:33:36 ============================================================================ +13:33:36 [ 1] [ 4] [0200] +13:33:36 [ 2] [ 16] [6213544002213004] +13:33:36 [ 3] [ 6] [300000] +13:33:36 [ 4] [ 12] [000000000000] +13:33:36 [ 7] [ 10] [0320133126] +13:33:36 [ 11] [ 6] [946768] +13:33:36 [ 12] [ 6] [133126] +13:33:36 [ 13] [ 4] [0320] +13:33:36 [ 15] [ 4] [0320] +13:33:36 [ 18] [ 4] [6011] +13:33:36 [ 19] [ 3] [418] +13:33:36 [ 22] [ 3] [021] +13:33:36 [ 25] [ 2] [01] +13:33:36 [ 28] [ 9] [D00000000] +13:33:36 [ 32] [ 6] [668899] +13:33:36 [ 35] [ 32] [6213544002213004=491212011300457] +13:33:36 [ 37] [ 12] [507901912199] +13:33:36 [ 41] [ 8] [03013004] +13:33:36 [ 42] [ 15] [APT ] +13:33:36 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:33:36 [ 49] [ 3] [418] +13:33:36 [ 52] [ 16] [F42292859D835504] +13:33:36 ============================================================================ +13:33:36 + + +waiting on router queue for slot.... +13:33:36 Sending to : +13:33:36 ============================================================================ +13:33:36 Sending to : +13:33:36 ============================================================================ +13:33:36 ============================================================================ +13:33:36 Slot Id : <367> +13:33:36 Transaction Type : REQUEST +13:33:36 Received From : +13:33:36 ============================================================================ +13:33:36 FNo. Len. Field Value +13:33:36 ============================================================================ +13:33:36 [ 1] [ 4] [0200] +13:33:36 [ 2] [ 16] [6213544002213004] +13:33:36 [ 3] [ 6] [300000] +13:33:36 [ 4] [ 12] [000000000000] +13:33:36 [ 7] [ 10] [0320133126] +13:33:36 [ 11] [ 6] [946768] +13:33:36 [ 12] [ 6] [133126] +13:33:36 [ 13] [ 4] [0320] +13:33:36 [ 15] [ 4] [0320] +13:33:36 [ 18] [ 4] [6011] +13:33:36 [ 19] [ 3] [418] +13:33:36 [ 22] [ 3] [021] +13:33:36 [ 25] [ 2] [01] +13:33:36 [ 28] [ 9] [D00000000] +13:33:36 [ 32] [ 6] [668899] +13:33:36 [ 35] [ 32] [6213544002213004=491212011300457] +13:33:36 [ 37] [ 12] [507901912199] +13:33:36 [ 41] [ 8] [03013004] +13:33:36 [ 42] [ 15] [APT ] +13:33:36 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:33:36 [ 49] [ 3] [418] +13:33:36 [ 52] [ 16] [F42292859D835504] +13:33:36 ============================================================================ +13:33:36 + + +waiting on router queue for slot.... +13:33:36 Sending to : +13:33:36 ============================================================================ +13:33:36 ============================================================================ +13:33:36 Slot Id : <367> +13:33:36 Transaction Type : REQUEST +13:33:36 Received From : +13:33:36 ============================================================================ +13:33:36 FNo. Len. Field Value +13:33:36 ============================================================================ +13:33:36 [ 1] [ 4] [0200] +13:33:36 [ 2] [ 16] [6213544002213004] +13:33:36 [ 3] [ 6] [300000] +13:33:36 [ 4] [ 12] [000000000000] +13:33:36 [ 7] [ 10] [0320133126] +13:33:36 [ 11] [ 6] [946768] +13:33:36 [ 12] [ 6] [133126] +13:33:36 [ 13] [ 4] [0320] +13:33:36 [ 15] [ 4] [0320] +13:33:36 [ 18] [ 4] [6011] +13:33:36 [ 19] [ 3] [418] +13:33:36 [ 22] [ 3] [021] +13:33:36 [ 25] [ 2] [01] +13:33:36 [ 28] [ 9] [D00000000] +13:33:36 [ 32] [ 6] [668899] +13:33:36 [ 35] [ 32] [6213544002213004=491212011300457] +13:33:36 [ 37] [ 12] [507901912199] +13:33:36 [ 41] [ 8] [03013004] +13:33:36 [ 42] [ 15] [APT ] +13:33:36 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:33:36 [ 49] [ 3] [418] +13:33:36 [ 52] [ 16] [CABA6F28B0929160] +13:33:36 ============================================================================ +13:33:36 + + +waiting on router queue for slot.... +13:33:36 Sending to : <0> +13:33:36 ============================================================================ +13:33:37 ============================================================================ +13:33:37 Slot Id : <367> +13:33:37 Transaction Type : RESPONSE +13:33:37 Received From : +13:33:37 ============================================================================ +13:33:37 FNo. Len. Field Value +13:33:37 ============================================================================ +13:33:37 [ 1] [ 4] [0210] +13:33:37 [ 2] [ 16] [6213544002213004] +13:33:37 [ 3] [ 6] [300000] +13:33:37 [ 4] [ 12] [000000000000] +13:33:37 [ 7] [ 10] [0320133126] +13:33:37 [ 11] [ 6] [946768] +13:33:37 [ 12] [ 6] [133126] +13:33:37 [ 13] [ 4] [0320] +13:33:37 [ 15] [ 4] [0320] +13:33:37 [ 18] [ 4] [6011] +13:33:37 [ 19] [ 3] [418] +13:33:37 [ 32] [ 6] [668899] +13:33:37 [ 35] [ 32] [6213544002213004=491212011300457] +13:33:37 [ 37] [ 12] [507901912199] +13:33:37 [ 38] [ 6] [245716] +13:33:37 [ 39] [ 2] [00] +13:33:37 [ 41] [ 8] [03013004] +13:33:37 [ 49] [ 3] [418] +13:33:37 [ 54] [ 40] [0001418C0000294536000002418C000029453600] +13:33:37 ============================================================================ +13:33:37 Sending to : +13:33:37 ============================================================================ +13:33:37 + + +waiting on router queue for slot.... +13:33:38 ============================================================================ +13:33:38 Slot Id : <430> +13:33:38 Transaction Type : REQUEST +13:33:38 Received From : +13:33:38 ============================================================================ +13:33:38 FNo. Len. Field Value +13:33:38 ============================================================================ +13:33:38 [ 1] [ 4] [0200] +13:33:38 [ 2] [ 16] [6213541000701212] +13:33:38 [ 3] [ 6] [010000] +13:33:38 [ 4] [ 12] [000020000000] +13:33:38 [ 7] [ 10] [0320133128] +13:33:38 [ 11] [ 6] [946769] +13:33:38 [ 12] [ 6] [133128] +13:33:38 [ 13] [ 4] [0320] +13:33:38 [ 15] [ 4] [0320] +13:33:38 [ 18] [ 4] [6011] +13:33:38 [ 19] [ 3] [418] +13:33:38 [ 22] [ 3] [021] +13:33:38 [ 25] [ 2] [01] +13:33:38 [ 28] [ 9] [D00002000] +13:33:38 [ 32] [ 6] [668899] +13:33:38 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:38 [ 37] [ 12] [507902151004] +13:33:38 [ 41] [ 8] [03020025] +13:33:38 [ 42] [ 15] [APT ] +13:33:38 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:33:38 [ 49] [ 3] [418] +13:33:38 [ 52] [ 16] [29BD30C4749A3AF8] +13:33:38 ============================================================================ +13:33:38 + + +waiting on router queue for slot.... +13:33:38 Sending to : +13:33:38 ============================================================================ +13:33:38 Sending to : +13:33:38 ============================================================================ +13:33:38 ============================================================================ +13:33:38 Slot Id : <430> +13:33:38 Transaction Type : REQUEST +13:33:38 Received From : +13:33:38 ============================================================================ +13:33:38 FNo. Len. Field Value +13:33:38 ============================================================================ +13:33:38 [ 1] [ 4] [0200] +13:33:38 [ 2] [ 16] [6213541000701212] +13:33:38 [ 3] [ 6] [010000] +13:33:38 [ 4] [ 12] [000020000000] +13:33:38 [ 7] [ 10] [0320133128] +13:33:38 [ 11] [ 6] [946769] +13:33:38 [ 12] [ 6] [133128] +13:33:38 [ 13] [ 4] [0320] +13:33:38 [ 15] [ 4] [0320] +13:33:38 [ 18] [ 4] [6011] +13:33:38 [ 19] [ 3] [418] +13:33:38 [ 22] [ 3] [021] +13:33:38 [ 25] [ 2] [01] +13:33:38 [ 28] [ 9] [D00002000] +13:33:38 [ 32] [ 6] [668899] +13:33:38 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:38 [ 37] [ 12] [507902151004] +13:33:38 [ 41] [ 8] [03020025] +13:33:38 [ 42] [ 15] [APT ] +13:33:38 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:33:38 [ 49] [ 3] [418] +13:33:38 [ 52] [ 16] [29BD30C4749A3AF8] +13:33:38 ============================================================================ +13:33:38 + + +waiting on router queue for slot.... +13:33:38 Sending to : +13:33:38 ============================================================================ +13:33:38 ============================================================================ +13:33:38 Slot Id : <430> +13:33:38 Transaction Type : REQUEST +13:33:38 Received From : +13:33:38 ============================================================================ +13:33:38 FNo. Len. Field Value +13:33:38 ============================================================================ +13:33:38 [ 1] [ 4] [0200] +13:33:38 [ 2] [ 16] [6213541000701212] +13:33:38 [ 3] [ 6] [010000] +13:33:38 [ 4] [ 12] [000020000000] +13:33:38 [ 7] [ 10] [0320133128] +13:33:38 [ 11] [ 6] [946769] +13:33:38 [ 12] [ 6] [133128] +13:33:38 [ 13] [ 4] [0320] +13:33:38 [ 15] [ 4] [0320] +13:33:38 [ 18] [ 4] [6011] +13:33:38 [ 19] [ 3] [418] +13:33:38 [ 22] [ 3] [021] +13:33:38 [ 25] [ 2] [01] +13:33:38 [ 28] [ 9] [D00002000] +13:33:38 [ 32] [ 6] [668899] +13:33:38 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:38 [ 37] [ 12] [507902151004] +13:33:38 [ 41] [ 8] [03020025] +13:33:38 [ 42] [ 15] [APT ] +13:33:38 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:33:38 [ 49] [ 3] [418] +13:33:38 [ 52] [ 16] [1B3C3CC3CB7BF67F] +13:33:38 ============================================================================ +13:33:38 + + +waiting on router queue for slot.... +13:33:38 Sending to : <0> +13:33:38 ============================================================================ +13:33:38 ============================================================================ +13:33:38 Slot Id : <367> +13:33:38 Transaction Type : RESPONSE +13:33:38 Received From : +13:33:38 ============================================================================ +13:33:38 FNo. Len. Field Value +13:33:38 ============================================================================ +13:33:38 [ 1] [ 4] [0210] +13:33:38 [ 2] [ 16] [6213544002213004] +13:33:38 [ 3] [ 6] [300000] +13:33:38 [ 4] [ 12] [000000000000] +13:33:38 [ 7] [ 10] [0320133126] +13:33:38 [ 11] [ 6] [946768] +13:33:38 [ 12] [ 6] [133126] +13:33:38 [ 13] [ 4] [0320] +13:33:38 [ 15] [ 4] [0320] +13:33:38 [ 18] [ 4] [6011] +13:33:38 [ 19] [ 3] [418] +13:33:38 [ 32] [ 6] [668899] +13:33:38 [ 35] [ 32] [6213544002213004=491212011300457] +13:33:38 [ 37] [ 12] [507901912199] +13:33:38 [ 38] [ 6] [245716] +13:33:38 [ 39] [ 2] [00] +13:33:38 [ 41] [ 8] [03013004] +13:33:38 [ 49] [ 3] [418] +13:33:38 [ 54] [ 40] [0001418C0000294536000002418C000029453600] +13:33:38 ============================================================================ +13:33:38 Calculate Source COMM Id = 4 +13:33:38 ============================================================================ +13:33:38 + + +waiting on router queue for slot.... +13:33:39 ============================================================================ +13:33:39 Slot Id : <430> +13:33:39 Transaction Type : RESPONSE +13:33:39 Received From : +13:33:39 ============================================================================ +13:33:39 FNo. Len. Field Value +13:33:39 ============================================================================ +13:33:39 [ 1] [ 4] [0210] +13:33:39 [ 2] [ 16] [6213541000701212] +13:33:39 [ 3] [ 6] [010000] +13:33:39 [ 4] [ 12] [000020000000] +13:33:39 [ 7] [ 10] [0320133128] +13:33:39 [ 11] [ 6] [946769] +13:33:39 [ 12] [ 6] [133128] +13:33:39 [ 13] [ 4] [0320] +13:33:39 [ 15] [ 4] [0320] +13:33:39 [ 18] [ 4] [6011] +13:33:39 [ 19] [ 3] [418] +13:33:39 [ 32] [ 6] [668899] +13:33:39 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:39 [ 37] [ 12] [507902151004] +13:33:39 [ 38] [ 6] [990760] +13:33:39 [ 39] [ 2] [00] +13:33:39 [ 41] [ 8] [03020025] +13:33:39 [ 49] [ 3] [418] +13:33:39 [ 54] [ 40] [0001418C0000322304200002418C000032230420] +13:33:39 ============================================================================ +13:33:39 Sending to : +13:33:39 ============================================================================ +13:33:39 + + +waiting on router queue for slot.... +13:33:40 ============================================================================ +13:33:40 Slot Id : <430> +13:33:40 Transaction Type : RESPONSE +13:33:40 Received From : +13:33:40 ============================================================================ +13:33:40 FNo. Len. Field Value +13:33:40 ============================================================================ +13:33:40 [ 1] [ 4] [0210] +13:33:40 [ 2] [ 16] [6213541000701212] +13:33:40 [ 3] [ 6] [010000] +13:33:40 [ 4] [ 12] [000020000000] +13:33:40 [ 7] [ 10] [0320133128] +13:33:40 [ 11] [ 6] [946769] +13:33:40 [ 12] [ 6] [133128] +13:33:40 [ 13] [ 4] [0320] +13:33:40 [ 15] [ 4] [0320] +13:33:40 [ 18] [ 4] [6011] +13:33:40 [ 19] [ 3] [418] +13:33:40 [ 32] [ 6] [668899] +13:33:40 [ 35] [ 32] [6213541000701212=491212010121176] +13:33:40 [ 37] [ 12] [507902151004] +13:33:40 [ 38] [ 6] [990760] +13:33:40 [ 39] [ 2] [00] +13:33:40 [ 41] [ 8] [03020025] +13:33:40 [ 49] [ 3] [418] +13:33:40 [ 54] [ 40] [0001418C0000322304200002418C000032230420] +13:33:40 ============================================================================ +13:33:40 Calculate Source COMM Id = 4 +13:33:40 ============================================================================ +13:33:40 + + +waiting on router queue for slot.... +13:33:43 ============================================================================ +13:33:43 Slot Id : <441> +13:33:43 Transaction Type : REQUEST +13:33:43 Received From : +13:33:43 ============================================================================ +13:33:43 FNo. Len. Field Value +13:33:43 ============================================================================ +13:33:43 [ 1] [ 4] [0200] +13:33:43 [ 2] [ 16] [6213544002092192] +13:33:43 [ 3] [ 6] [311000] +13:33:43 [ 4] [ 12] [000000000000] +13:33:43 [ 7] [ 10] [0320134130] +13:33:43 [ 11] [ 6] [167759] +13:33:43 [ 12] [ 6] [134130] +13:33:43 [ 13] [ 4] [0320] +13:33:43 [ 14] [ 4] [4912] +13:33:43 [ 15] [ 4] [0320] +13:33:43 [ 18] [ 4] [6011] +13:33:43 [ 22] [ 3] [900] +13:33:43 [ 25] [ 2] [02] +13:33:43 [ 28] [ 9] [000000000] +13:33:43 [ 32] [ 6] [220699] +13:33:43 [ 35] [ 32] [6213544002092192=491212019219148] +13:33:43 [ 37] [ 12] [507900175080] +13:33:43 [ 41] [ 8] [07000100] +13:33:43 [ 42] [ 15] [APTRA ] +13:33:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:33:43 [ 49] [ 3] [418] +13:33:43 [ 52] [ 16] [09827F1D274B0455] +13:33:43 ============================================================================ +13:33:43 + + +waiting on router queue for slot.... +13:33:43 Sending to : +13:33:43 ============================================================================ +13:33:43 Sending to : +13:33:43 ============================================================================ +13:33:43 ============================================================================ +13:33:43 Slot Id : <441> +13:33:43 Transaction Type : REQUEST +13:33:43 Received From : +13:33:43 ============================================================================ +13:33:43 FNo. Len. Field Value +13:33:43 ============================================================================ +13:33:43 [ 1] [ 4] [0200] +13:33:43 [ 2] [ 16] [6213544002092192] +13:33:43 [ 3] [ 6] [311000] +13:33:43 [ 4] [ 12] [000000000000] +13:33:43 [ 7] [ 10] [0320134130] +13:33:43 [ 11] [ 6] [167759] +13:33:43 [ 12] [ 6] [134130] +13:33:43 [ 13] [ 4] [0320] +13:33:43 [ 14] [ 4] [4912] +13:33:43 [ 15] [ 4] [0320] +13:33:43 [ 18] [ 4] [6011] +13:33:43 [ 22] [ 3] [900] +13:33:43 [ 25] [ 2] [02] +13:33:43 [ 28] [ 9] [000000000] +13:33:43 [ 32] [ 6] [220699] +13:33:43 [ 35] [ 32] [6213544002092192=491212019219148] +13:33:43 [ 37] [ 12] [507900175080] +13:33:43 [ 41] [ 8] [07000100] +13:33:43 [ 42] [ 15] [APTRA ] +13:33:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:33:43 [ 49] [ 3] [418] +13:33:43 [ 52] [ 16] [09827F1D274B0455] +13:33:43 ============================================================================ +13:33:43 + + +waiting on router queue for slot.... +13:33:43 Sending to : +13:33:43 ============================================================================ +13:33:43 ============================================================================ +13:33:43 Slot Id : <441> +13:33:43 Transaction Type : REQUEST +13:33:43 Received From : +13:33:43 ============================================================================ +13:33:43 FNo. Len. Field Value +13:33:43 ============================================================================ +13:33:43 [ 1] [ 4] [0200] +13:33:43 [ 2] [ 16] [6213544002092192] +13:33:43 [ 3] [ 6] [311000] +13:33:43 [ 4] [ 12] [000000000000] +13:33:43 [ 7] [ 10] [0320134130] +13:33:43 [ 11] [ 6] [167759] +13:33:43 [ 12] [ 6] [134130] +13:33:43 [ 13] [ 4] [0320] +13:33:43 [ 14] [ 4] [4912] +13:33:43 [ 15] [ 4] [0320] +13:33:43 [ 18] [ 4] [6011] +13:33:43 [ 22] [ 3] [900] +13:33:43 [ 25] [ 2] [02] +13:33:43 [ 28] [ 9] [000000000] +13:33:43 [ 32] [ 6] [220699] +13:33:43 [ 35] [ 32] [6213544002092192=491212019219148] +13:33:43 [ 37] [ 12] [507900175080] +13:33:43 [ 41] [ 8] [07000100] +13:33:43 [ 42] [ 15] [APTRA ] +13:33:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:33:43 [ 49] [ 3] [418] +13:33:43 [ 52] [ 16] [58F25D6BAE7BF906] +13:33:43 ============================================================================ +13:33:43 + + +waiting on router queue for slot.... +13:33:43 Sending to : <0> +13:33:43 ============================================================================ +13:33:43 ============================================================================ +13:33:43 Slot Id : <441> +13:33:43 Transaction Type : RESPONSE +13:33:43 Received From : +13:33:43 ============================================================================ +13:33:43 FNo. Len. Field Value +13:33:43 ============================================================================ +13:33:43 [ 1] [ 4] [0210] +13:33:43 [ 2] [ 16] [6213544002092192] +13:33:43 [ 3] [ 6] [311000] +13:33:43 [ 4] [ 12] [000000000000] +13:33:43 [ 7] [ 10] [0320134130] +13:33:43 [ 11] [ 6] [167759] +13:33:43 [ 12] [ 6] [134130] +13:33:43 [ 13] [ 4] [0320] +13:33:43 [ 15] [ 4] [0320] +13:33:43 [ 18] [ 4] [6011] +13:33:43 [ 22] [ 3] [900] +13:33:43 [ 32] [ 6] [220699] +13:33:43 [ 35] [ 32] [6213544002092192=491212019219148] +13:33:43 [ 37] [ 12] [507900175080] +13:33:43 [ 39] [ 2] [14] +13:33:43 [ 41] [ 8] [07000100] +13:33:43 [ 49] [ 3] [418] +13:33:43 ============================================================================ +13:33:43 Sending to : +13:33:43 ============================================================================ +13:33:43 + + +waiting on router queue for slot.... +13:33:44 ============================================================================ +13:33:44 Slot Id : <441> +13:33:44 Transaction Type : RESPONSE +13:33:44 Received From : +13:33:44 ============================================================================ +13:33:44 FNo. Len. Field Value +13:33:44 ============================================================================ +13:33:44 [ 1] [ 4] [0210] +13:33:44 [ 2] [ 16] [6213544002092192] +13:33:44 [ 3] [ 6] [311000] +13:33:44 [ 4] [ 12] [000000000000] +13:33:44 [ 7] [ 10] [0320134130] +13:33:44 [ 11] [ 6] [167759] +13:33:44 [ 12] [ 6] [134130] +13:33:44 [ 13] [ 4] [0320] +13:33:44 [ 15] [ 4] [0320] +13:33:44 [ 18] [ 4] [6011] +13:33:44 [ 22] [ 3] [900] +13:33:44 [ 32] [ 6] [220699] +13:33:44 [ 35] [ 32] [6213544002092192=491212019219148] +13:33:44 [ 37] [ 12] [507900175080] +13:33:44 [ 39] [ 2] [14] +13:33:44 [ 41] [ 8] [07000100] +13:33:44 [ 49] [ 3] [418] +13:33:44 ============================================================================ +13:33:44 Calculate Source COMM Id = 1 +13:33:44 ============================================================================ +13:33:44 + + +waiting on router queue for slot.... +13:33:47 ============================================================================ +13:33:47 Slot Id : <409> +13:33:47 Transaction Type : REQUEST +13:33:47 Received From : +13:33:47 ============================================================================ +13:33:47 FNo. Len. Field Value +13:33:47 ============================================================================ +13:33:47 [ 1] [ 4] [0800] +13:33:47 [ 7] [ 10] [0320063254] +13:33:47 [ 11] [ 6] [156579] +13:33:47 [ 70] [ 3] [301] +13:33:47 ============================================================================ +13:33:47 + + +waiting on router queue for slot.... +13:33:47 Sending to : +13:33:47 ============================================================================ +13:33:47 ============================================================================ +13:33:47 Slot Id : <409> +13:33:47 Transaction Type : RESPONSE +13:33:47 Received From : +13:33:47 ============================================================================ +13:33:47 FNo. Len. Field Value +13:33:47 ============================================================================ +13:33:47 [ 1] [ 4] [0810] +13:33:47 [ 7] [ 10] [0320063254] +13:33:47 [ 11] [ 6] [156579] +13:33:47 [ 39] [ 2] [00] +13:33:47 [ 70] [ 3] [301] +13:33:47 ============================================================================ +13:33:47 Calculate Source COMM Id = 2 +13:33:47 ============================================================================ +13:33:47 + + +waiting on router queue for slot.... +13:33:52 ============================================================================ +13:33:52 Slot Id : <437> +13:33:52 Transaction Type : REQUEST +13:33:52 Received From : +13:33:52 ============================================================================ +13:33:52 FNo. Len. Field Value +13:33:52 ============================================================================ +13:33:52 [ 1] [ 4] [0800] +13:33:52 [ 2] [ 5] [02531] +13:33:52 [ 3] [ 6] [579138] +13:33:52 [ 7] [ 10] [0320063352] +13:33:52 [ 11] [ 6] [807199] +13:33:52 [ 15] [ 10] [0320063352] +13:33:52 [ 37] [ 11] [57913807199] +13:33:52 [ 70] [ 3] [001] +13:33:52 ============================================================================ +13:33:52 + + +waiting on router queue for slot.... +13:33:52 ============================================================================ +13:33:52 Slot Id : <437> +13:33:52 Transaction Type : RESPONSE +13:33:52 Received From : +13:33:52 ============================================================================ +13:33:52 FNo. Len. Field Value +13:33:52 ============================================================================ +13:33:52 [ 1] [ 4] [0810] +13:33:52 [ 7] [ 10] [0320063352] +13:33:52 [ 11] [ 6] [807199] +13:33:52 [ 15] [ 4] [0320] +13:33:52 [ 37] [ 12] [57913807199] +13:33:52 [ 39] [ 2] [00] +13:33:52 [ 70] [ 3] [001] +13:33:52 ============================================================================ +13:33:52 Sending to : +13:33:52 ============================================================================ +13:33:52 + + +waiting on router queue for slot.... +13:33:58 ============================================================================ +13:33:58 Slot Id : <402> +13:33:58 Transaction Type : REQUEST +13:33:58 Received From : +13:33:58 ============================================================================ +13:33:58 FNo. Len. Field Value +13:33:58 ============================================================================ +13:33:58 [ 1] [ 4] [0800] +13:33:58 [ 7] [ 10] [0320063305] +13:33:58 [ 11] [ 6] [156580] +13:33:58 [ 70] [ 3] [301] +13:33:58 ============================================================================ +13:33:58 + + +waiting on router queue for slot.... +13:33:58 Sending to : +13:33:58 ============================================================================ +13:33:58 ============================================================================ +13:33:58 Slot Id : <402> +13:33:58 Transaction Type : RESPONSE +13:33:58 Received From : +13:33:58 ============================================================================ +13:33:58 FNo. Len. Field Value +13:33:58 ============================================================================ +13:33:58 [ 1] [ 4] [0810] +13:33:58 [ 7] [ 10] [0320063305] +13:33:58 [ 11] [ 6] [156580] +13:33:58 [ 39] [ 2] [00] +13:33:58 [ 70] [ 3] [301] +13:33:58 ============================================================================ +13:33:58 Calculate Source COMM Id = 2 +13:33:58 ============================================================================ +13:33:58 + + +waiting on router queue for slot.... +13:34:01 ============================================================================ +13:34:01 Slot Id : <408> +13:34:01 Transaction Type : REQUEST +13:34:01 Received From : +13:34:01 ============================================================================ +13:34:01 FNo. Len. Field Value +13:34:01 ============================================================================ +13:34:01 [ 1] [ 4] [0200] +13:34:01 [ 2] [ 16] [6213548000001345] +13:34:01 [ 3] [ 6] [010000] +13:34:01 [ 4] [ 12] [000010000000] +13:34:01 [ 7] [ 10] [0320063308] +13:34:01 [ 11] [ 6] [269330] +13:34:01 [ 12] [ 6] [133308] +13:34:01 [ 13] [ 4] [0320] +13:34:01 [ 14] [ 4] [1303] +13:34:01 [ 15] [ 4] [0320] +13:34:01 [ 18] [ 4] [6011] +13:34:01 [ 19] [ 3] [418] +13:34:01 [ 22] [ 3] [021] +13:34:01 [ 25] [ 2] [01] +13:34:01 [ 28] [ 9] [D00002000] +13:34:01 [ 32] [ 6] [180893] +13:34:01 [ 35] [ 32] [6213548000001345=130312010134736] +13:34:01 [ 37] [ 12] [507906269330] +13:34:01 [ 41] [ 8] [0301LPBX] +13:34:01 [ 42] [ 15] [999999 ] +13:34:01 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +13:34:01 [ 49] [ 3] [418] +13:34:01 [ 52] [ 16] [6C77CE5FB8370436] +13:34:01 ============================================================================ +13:34:01 + + +waiting on router queue for slot.... +13:34:01 Sending to : +13:34:01 ============================================================================ +13:34:01 Sending to : +13:34:01 ============================================================================ +13:34:01 ============================================================================ +13:34:01 Slot Id : <408> +13:34:01 Transaction Type : REQUEST +13:34:01 Received From : +13:34:01 ============================================================================ +13:34:01 FNo. Len. Field Value +13:34:01 ============================================================================ +13:34:01 [ 1] [ 4] [0200] +13:34:01 [ 2] [ 16] [6213548000001345] +13:34:01 [ 3] [ 6] [010000] +13:34:01 [ 4] [ 12] [000010000000] +13:34:01 [ 7] [ 10] [0320063308] +13:34:01 [ 11] [ 6] [269330] +13:34:01 [ 12] [ 6] [133308] +13:34:01 [ 13] [ 4] [0320] +13:34:01 [ 14] [ 4] [1303] +13:34:01 [ 15] [ 4] [0320] +13:34:01 [ 18] [ 4] [6011] +13:34:01 [ 19] [ 3] [418] +13:34:01 [ 22] [ 3] [021] +13:34:01 [ 25] [ 2] [01] +13:34:01 [ 28] [ 9] [D00002000] +13:34:01 [ 32] [ 6] [180893] +13:34:01 [ 35] [ 32] [6213548000001345=130312010134736] +13:34:01 [ 37] [ 12] [507906269330] +13:34:01 [ 41] [ 8] [0301LPBX] +13:34:01 [ 42] [ 15] [999999 ] +13:34:01 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +13:34:01 [ 49] [ 3] [418] +13:34:01 [ 52] [ 16] [6C77CE5FB8370436] +13:34:01 ============================================================================ +13:34:01 + + +waiting on router queue for slot.... +13:34:01 Sending to : +13:34:01 ============================================================================ +13:34:01 ============================================================================ +13:34:01 Slot Id : <408> +13:34:01 Transaction Type : REQUEST +13:34:01 Received From : +13:34:01 ============================================================================ +13:34:01 FNo. Len. Field Value +13:34:01 ============================================================================ +13:34:01 [ 1] [ 4] [0200] +13:34:01 [ 2] [ 16] [6213548000001345] +13:34:01 [ 3] [ 6] [010000] +13:34:01 [ 4] [ 12] [000010000000] +13:34:01 [ 7] [ 10] [0320063308] +13:34:01 [ 11] [ 6] [269330] +13:34:01 [ 12] [ 6] [133308] +13:34:01 [ 13] [ 4] [0320] +13:34:01 [ 14] [ 4] [1303] +13:34:01 [ 15] [ 4] [0320] +13:34:01 [ 18] [ 4] [6011] +13:34:01 [ 19] [ 3] [418] +13:34:01 [ 22] [ 3] [021] +13:34:01 [ 25] [ 2] [01] +13:34:01 [ 28] [ 9] [D00002000] +13:34:01 [ 32] [ 6] [180893] +13:34:01 [ 35] [ 32] [6213548000001345=130312010134736] +13:34:01 [ 37] [ 12] [507906269330] +13:34:01 [ 41] [ 8] [0301LPBX] +13:34:01 [ 42] [ 15] [999999 ] +13:34:01 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +13:34:01 [ 49] [ 3] [418] +13:34:01 [ 52] [ 16] [572BBFECB5BE0099] +13:34:01 ============================================================================ +13:34:01 + + +waiting on router queue for slot.... +13:34:01 Sending to : <0> +13:34:01 ============================================================================ +13:34:01 ============================================================================ +13:34:01 Slot Id : <408> +13:34:01 Transaction Type : RESPONSE +13:34:01 Received From : +13:34:01 ============================================================================ +13:34:01 FNo. Len. Field Value +13:34:01 ============================================================================ +13:34:01 [ 1] [ 4] [0210] +13:34:01 [ 2] [ 16] [6213548000001345] +13:34:01 [ 3] [ 6] [010000] +13:34:01 [ 4] [ 12] [000010000000] +13:34:01 [ 7] [ 10] [0320063308] +13:34:01 [ 11] [ 6] [269330] +13:34:01 [ 12] [ 6] [133308] +13:34:01 [ 13] [ 4] [0320] +13:34:01 [ 15] [ 4] [0320] +13:34:01 [ 18] [ 4] [6011] +13:34:01 [ 19] [ 3] [418] +13:34:01 [ 22] [ 3] [021] +13:34:01 [ 32] [ 6] [180893] +13:34:01 [ 35] [ 32] [6213548000001345=130312010134736] +13:34:01 [ 37] [ 12] [507906269330] +13:34:01 [ 38] [ 6] [133357] +13:34:01 [ 39] [ 2] [55] +13:34:01 [ 41] [ 8] [0301LPBX] +13:34:01 [ 49] [ 3] [418] +13:34:01 ============================================================================ +13:34:01 Sending to : +13:34:01 ============================================================================ +13:34:01 + + +waiting on router queue for slot.... +13:34:02 ============================================================================ +13:34:02 Slot Id : <408> +13:34:02 Transaction Type : RESPONSE +13:34:02 Received From : +13:34:02 ============================================================================ +13:34:02 FNo. Len. Field Value +13:34:02 ============================================================================ +13:34:02 [ 1] [ 4] [0210] +13:34:02 [ 2] [ 16] [6213548000001345] +13:34:02 [ 3] [ 6] [010000] +13:34:02 [ 4] [ 12] [000010000000] +13:34:02 [ 7] [ 10] [0320063308] +13:34:02 [ 11] [ 6] [269330] +13:34:02 [ 12] [ 6] [133308] +13:34:02 [ 13] [ 4] [0320] +13:34:02 [ 15] [ 4] [0320] +13:34:02 [ 18] [ 4] [6011] +13:34:02 [ 19] [ 3] [418] +13:34:02 [ 22] [ 3] [021] +13:34:02 [ 32] [ 6] [180893] +13:34:02 [ 35] [ 32] [6213548000001345=130312010134736] +13:34:02 [ 37] [ 12] [507906269330] +13:34:02 [ 38] [ 6] [133357] +13:34:02 [ 39] [ 2] [55] +13:34:02 [ 41] [ 8] [0301LPBX] +13:34:02 [ 49] [ 3] [418] +13:34:02 ============================================================================ +13:34:02 Calculate Source COMM Id = 2 +13:34:02 ============================================================================ +13:34:02 + + +waiting on router queue for slot.... +13:34:05 ============================================================================ +13:34:05 Slot Id : <403> +13:34:05 Transaction Type : REQUEST +13:34:05 Received From : +13:34:05 ============================================================================ +13:34:05 FNo. Len. Field Value +13:34:05 ============================================================================ +13:34:05 [ 1] [ 4] [0200] +13:34:05 [ 2] [ 16] [6213544001177762] +13:34:05 [ 3] [ 6] [301000] +13:34:05 [ 4] [ 12] [000000000000] +13:34:05 [ 7] [ 10] [0320133426] +13:34:05 [ 11] [ 6] [206522] +13:34:05 [ 12] [ 6] [132932] +13:34:05 [ 13] [ 4] [0320] +13:34:05 [ 14] [ 4] [4912] +13:34:05 [ 15] [ 4] [0320] +13:34:05 [ 18] [ 4] [6011] +13:34:05 [ 19] [ 3] [418] +13:34:05 [ 22] [ 3] [021] +13:34:05 [ 25] [ 2] [01] +13:34:05 [ 28] [ 9] [D00000000] +13:34:05 [ 32] [ 6] [198901] +13:34:05 [ 35] [ 32] [6213544001177762=491212017776581] +13:34:05 [ 37] [ 12] [507913206522] +13:34:05 [ 41] [ 8] [19529001] +13:34:05 [ 42] [ 15] [000000041952901] +13:34:05 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +13:34:05 [ 49] [ 3] [418] +13:34:05 [ 52] [ 16] [28B97317F96AF607] +13:34:05 ============================================================================ +13:34:05 + + +waiting on router queue for slot.... +13:34:05 Sending to : +13:34:05 ============================================================================ +13:34:05 Sending to : +13:34:05 ============================================================================ +13:34:05 ============================================================================ +13:34:05 Slot Id : <403> +13:34:05 Transaction Type : REQUEST +13:34:05 Received From : +13:34:05 ============================================================================ +13:34:05 FNo. Len. Field Value +13:34:05 ============================================================================ +13:34:05 [ 1] [ 4] [0200] +13:34:05 [ 2] [ 16] [6213544001177762] +13:34:05 [ 3] [ 6] [301000] +13:34:05 [ 4] [ 12] [000000000000] +13:34:05 [ 7] [ 10] [0320133426] +13:34:05 [ 11] [ 6] [206522] +13:34:05 [ 12] [ 6] [132932] +13:34:05 [ 13] [ 4] [0320] +13:34:05 [ 14] [ 4] [4912] +13:34:05 [ 15] [ 4] [0320] +13:34:05 [ 18] [ 4] [6011] +13:34:05 [ 19] [ 3] [418] +13:34:05 [ 22] [ 3] [021] +13:34:05 [ 25] [ 2] [01] +13:34:05 [ 28] [ 9] [D00000000] +13:34:05 [ 32] [ 6] [198901] +13:34:05 [ 35] [ 32] [6213544001177762=491212017776581] +13:34:05 [ 37] [ 12] [507913206522] +13:34:05 [ 41] [ 8] [19529001] +13:34:05 [ 42] [ 15] [000000041952901] +13:34:05 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +13:34:05 [ 49] [ 3] [418] +13:34:05 [ 52] [ 16] [28B97317F96AF607] +13:34:05 ============================================================================ +13:34:05 + + +waiting on router queue for slot.... +13:34:05 Sending to : +13:34:05 ============================================================================ +13:34:05 ============================================================================ +13:34:05 Slot Id : <403> +13:34:05 Transaction Type : REQUEST +13:34:05 Received From : +13:34:05 ============================================================================ +13:34:05 FNo. Len. Field Value +13:34:05 ============================================================================ +13:34:05 [ 1] [ 4] [0200] +13:34:05 [ 2] [ 16] [6213544001177762] +13:34:05 [ 3] [ 6] [301000] +13:34:05 [ 4] [ 12] [000000000000] +13:34:05 [ 7] [ 10] [0320133426] +13:34:05 [ 11] [ 6] [206522] +13:34:05 [ 12] [ 6] [132932] +13:34:05 [ 13] [ 4] [0320] +13:34:05 [ 14] [ 4] [4912] +13:34:05 [ 15] [ 4] [0320] +13:34:05 [ 18] [ 4] [6011] +13:34:05 [ 19] [ 3] [418] +13:34:05 [ 22] [ 3] [021] +13:34:05 [ 25] [ 2] [01] +13:34:05 [ 28] [ 9] [D00000000] +13:34:05 [ 32] [ 6] [198901] +13:34:05 [ 35] [ 32] [6213544001177762=491212017776581] +13:34:05 [ 37] [ 12] [507913206522] +13:34:05 [ 41] [ 8] [19529001] +13:34:05 [ 42] [ 15] [000000041952901] +13:34:05 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +13:34:05 [ 49] [ 3] [418] +13:34:05 [ 52] [ 16] [EBB10E54AED57D3B] +13:34:05 ============================================================================ +13:34:05 + + +waiting on router queue for slot.... +13:34:05 Sending to : <0> +13:34:05 ============================================================================ +13:34:06 ============================================================================ +13:34:06 Slot Id : <403> +13:34:06 Transaction Type : RESPONSE +13:34:06 Received From : +13:34:06 ============================================================================ +13:34:06 FNo. Len. Field Value +13:34:06 ============================================================================ +13:34:06 [ 1] [ 4] [0210] +13:34:06 [ 2] [ 16] [6213544001177762] +13:34:06 [ 3] [ 6] [301000] +13:34:06 [ 4] [ 12] [000000000000] +13:34:06 [ 7] [ 10] [0320133426] +13:34:06 [ 11] [ 6] [206522] +13:34:06 [ 12] [ 6] [132932] +13:34:06 [ 13] [ 4] [0320] +13:34:06 [ 15] [ 4] [0320] +13:34:06 [ 18] [ 4] [6011] +13:34:06 [ 19] [ 3] [418] +13:34:06 [ 32] [ 6] [198901] +13:34:06 [ 35] [ 32] [6213544001177762=491212017776581] +13:34:06 [ 37] [ 12] [507913206522] +13:34:06 [ 38] [ 6] [275906] +13:34:06 [ 39] [ 2] [00] +13:34:06 [ 41] [ 8] [19529001] +13:34:06 [ 49] [ 3] [418] +13:34:06 [ 54] [ 40] [1001418C0005125994911002418C000512599491] +13:34:06 ============================================================================ +13:34:06 Sending to : +13:34:06 ============================================================================ +13:34:06 + + +waiting on router queue for slot.... +13:34:07 ============================================================================ +13:34:07 Slot Id : <403> +13:34:07 Transaction Type : RESPONSE +13:34:07 Received From : +13:34:07 ============================================================================ +13:34:07 FNo. Len. Field Value +13:34:07 ============================================================================ +13:34:07 [ 1] [ 4] [0210] +13:34:07 [ 2] [ 16] [6213544001177762] +13:34:07 [ 3] [ 6] [301000] +13:34:07 [ 4] [ 12] [000000000000] +13:34:07 [ 7] [ 10] [0320133426] +13:34:07 [ 11] [ 6] [206522] +13:34:07 [ 12] [ 6] [132932] +13:34:07 [ 13] [ 4] [0320] +13:34:07 [ 15] [ 4] [0320] +13:34:07 [ 18] [ 4] [6011] +13:34:07 [ 19] [ 3] [418] +13:34:07 [ 32] [ 6] [198901] +13:34:07 [ 35] [ 32] [6213544001177762=491212017776581] +13:34:07 [ 37] [ 12] [507913206522] +13:34:07 [ 38] [ 6] [275906] +13:34:07 [ 39] [ 2] [00] +13:34:07 [ 41] [ 8] [19529001] +13:34:07 [ 49] [ 3] [418] +13:34:07 [ 54] [ 40] [1001418C0005125994911002418C000512599491] +13:34:07 ============================================================================ +13:34:07 Calculate Source COMM Id = 5 +13:34:07 ============================================================================ +13:34:07 + + +waiting on router queue for slot.... +13:34:13 ============================================================================ +13:34:13 Slot Id : <362> +13:34:13 Transaction Type : REQUEST +13:34:13 Received From : +13:34:13 ============================================================================ +13:34:13 FNo. Len. Field Value +13:34:13 ============================================================================ +13:34:13 [ 1] [ 4] [0800] +13:34:13 [ 7] [ 10] [0320063320] +13:34:13 [ 11] [ 6] [156581] +13:34:13 [ 70] [ 3] [301] +13:34:13 ============================================================================ +13:34:13 + + +waiting on router queue for slot.... +13:34:13 Sending to : +13:34:13 ============================================================================ +13:34:13 ============================================================================ +13:34:13 Slot Id : <362> +13:34:13 Transaction Type : RESPONSE +13:34:13 Received From : +13:34:13 ============================================================================ +13:34:13 FNo. Len. Field Value +13:34:13 ============================================================================ +13:34:13 [ 1] [ 4] [0810] +13:34:13 [ 7] [ 10] [0320063320] +13:34:13 [ 11] [ 6] [156581] +13:34:13 [ 39] [ 2] [00] +13:34:13 [ 70] [ 3] [301] +13:34:13 ============================================================================ +13:34:13 Calculate Source COMM Id = 2 +13:34:13 ============================================================================ +13:34:13 + + +waiting on router queue for slot.... +13:34:23 ============================================================================ +13:34:23 Slot Id : <375> +13:34:23 Transaction Type : REQUEST +13:34:23 Received From : +13:34:23 ============================================================================ +13:34:23 FNo. Len. Field Value +13:34:23 ============================================================================ +13:34:23 [ 1] [ 4] [0200] +13:34:23 [ 2] [ 16] [6688990107228205] +13:34:23 [ 3] [ 6] [301000] +13:34:23 [ 4] [ 12] [000000000000] +13:34:23 [ 7] [ 10] [0320133419] +13:34:23 [ 11] [ 6] [758799] +13:34:23 [ 12] [ 6] [133419] +13:34:23 [ 13] [ 4] [0320] +13:34:23 [ 15] [ 4] [0320] +13:34:23 [ 18] [ 4] [6011] +13:34:23 [ 22] [ 3] [900] +13:34:23 [ 25] [ 2] [02] +13:34:23 [ 28] [ 9] [D00000000] +13:34:23 [ 32] [ 6] [621354] +13:34:23 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:34:23 [ 37] [ 12] [507904153922] +13:34:23 [ 41] [ 8] [20001000] +13:34:23 [ 42] [ 15] [NATIVE ] +13:34:23 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:34:23 [ 49] [ 3] [418] +13:34:23 [ 52] [ 16] [216E7866C9888A9E] +13:34:23 ============================================================================ +13:34:23 + + +waiting on router queue for slot.... +13:34:23 Sending to : +13:34:23 ============================================================================ +13:34:23 Sending to : +13:34:23 ============================================================================ +13:34:24 ============================================================================ +13:34:24 Slot Id : <375> +13:34:24 Transaction Type : REQUEST +13:34:24 Received From : +13:34:24 ============================================================================ +13:34:24 FNo. Len. Field Value +13:34:24 ============================================================================ +13:34:24 [ 1] [ 4] [0200] +13:34:24 [ 2] [ 16] [6688990107228205] +13:34:24 [ 3] [ 6] [301000] +13:34:24 [ 4] [ 12] [000000000000] +13:34:24 [ 7] [ 10] [0320133419] +13:34:24 [ 11] [ 6] [758799] +13:34:24 [ 12] [ 6] [133419] +13:34:24 [ 13] [ 4] [0320] +13:34:24 [ 15] [ 4] [0320] +13:34:24 [ 18] [ 4] [6011] +13:34:24 [ 22] [ 3] [900] +13:34:24 [ 25] [ 2] [02] +13:34:24 [ 28] [ 9] [D00000000] +13:34:24 [ 32] [ 6] [621354] +13:34:24 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:34:24 [ 37] [ 12] [507904153922] +13:34:24 [ 41] [ 8] [20001000] +13:34:24 [ 42] [ 15] [NATIVE ] +13:34:24 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:34:24 [ 49] [ 3] [418] +13:34:24 [ 52] [ 16] [216E7866C9888A9E] +13:34:24 ============================================================================ +13:34:24 + + +waiting on router queue for slot.... +13:34:24 Sending to : +13:34:24 ============================================================================ +13:34:24 ============================================================================ +13:34:24 Slot Id : <375> +13:34:24 Transaction Type : REQUEST +13:34:24 Received From : +13:34:24 ============================================================================ +13:34:24 FNo. Len. Field Value +13:34:24 ============================================================================ +13:34:24 [ 1] [ 4] [0200] +13:34:24 [ 2] [ 16] [6688990107228205] +13:34:24 [ 3] [ 6] [301000] +13:34:24 [ 4] [ 12] [000000000000] +13:34:24 [ 7] [ 10] [0320133419] +13:34:24 [ 11] [ 6] [758799] +13:34:24 [ 12] [ 6] [133419] +13:34:24 [ 13] [ 4] [0320] +13:34:24 [ 15] [ 4] [0320] +13:34:24 [ 18] [ 4] [6011] +13:34:24 [ 22] [ 3] [900] +13:34:24 [ 25] [ 2] [02] +13:34:24 [ 28] [ 9] [D00000000] +13:34:24 [ 32] [ 6] [621354] +13:34:24 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:34:24 [ 37] [ 12] [507904153922] +13:34:24 [ 41] [ 8] [20001000] +13:34:24 [ 42] [ 15] [NATIVE ] +13:34:24 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:34:24 [ 49] [ 3] [418] +13:34:24 [ 52] [ 16] [BFD645C3C5A2455A] +13:34:24 ============================================================================ +13:34:24 + + +waiting on router queue for slot.... +13:34:24 Sending to : <4> +13:34:24 ============================================================================ +13:34:24 ============================================================================ +13:34:24 Slot Id : <385> +13:34:24 Transaction Type : REQUEST +13:34:24 Received From : +13:34:24 ============================================================================ +13:34:24 FNo. Len. Field Value +13:34:24 ============================================================================ +13:34:24 [ 1] [ 4] [0800] +13:34:24 [ 7] [ 10] [0320063331] +13:34:24 [ 11] [ 6] [156582] +13:34:24 [ 70] [ 3] [301] +13:34:24 ============================================================================ +13:34:24 + + +waiting on router queue for slot.... +13:34:24 Sending to : +13:34:24 ============================================================================ +13:34:24 ============================================================================ +13:34:24 Slot Id : <385> +13:34:24 Transaction Type : RESPONSE +13:34:24 Received From : +13:34:24 ============================================================================ +13:34:24 FNo. Len. Field Value +13:34:24 ============================================================================ +13:34:24 [ 1] [ 4] [0810] +13:34:24 [ 7] [ 10] [0320063331] +13:34:24 [ 11] [ 6] [156582] +13:34:24 [ 39] [ 2] [00] +13:34:24 [ 70] [ 3] [301] +13:34:24 ============================================================================ +13:34:24 Calculate Source COMM Id = 2 +13:34:24 ============================================================================ +13:34:24 + + +waiting on router queue for slot.... +13:34:25 ============================================================================ +13:34:25 Slot Id : <375> +13:34:25 Transaction Type : RESPONSE +13:34:25 Received From : +13:34:25 ============================================================================ +13:34:25 FNo. Len. Field Value +13:34:25 ============================================================================ +13:34:25 [ 1] [ 4] [0210] +13:34:25 [ 2] [ 16] [6688990107228205] +13:34:25 [ 3] [ 6] [301000] +13:34:25 [ 4] [ 12] [000000000000] +13:34:25 [ 11] [ 6] [758799] +13:34:25 [ 12] [ 6] [133419] +13:34:25 [ 15] [ 4] [0320] +13:34:25 [ 18] [ 4] [6011] +13:34:25 [ 32] [ 6] [621354] +13:34:25 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:34:25 [ 37] [ 12] [507904153922] +13:34:25 [ 38] [ 6] [640075] +13:34:25 [ 39] [ 2] [00] +13:34:25 [ 41] [ 8] [20001000] +13:34:25 [ 49] [ 3] [418] +13:34:25 [ 54] [ 20] [1002418C000022687642] +13:34:25 ============================================================================ +13:34:25 Sending to : +13:34:25 ============================================================================ +13:34:25 + + +waiting on router queue for slot.... +13:34:26 ============================================================================ +13:34:26 Slot Id : <375> +13:34:26 Transaction Type : RESPONSE +13:34:26 Received From : +13:34:26 ============================================================================ +13:34:26 FNo. Len. Field Value +13:34:26 ============================================================================ +13:34:26 [ 1] [ 4] [0210] +13:34:26 [ 2] [ 16] [6688990107228205] +13:34:26 [ 3] [ 6] [301000] +13:34:26 [ 4] [ 12] [000000000000] +13:34:26 [ 11] [ 6] [758799] +13:34:26 [ 12] [ 6] [133419] +13:34:26 [ 15] [ 4] [0320] +13:34:26 [ 18] [ 4] [6011] +13:34:26 [ 32] [ 6] [621354] +13:34:26 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:34:26 [ 37] [ 12] [507904153922] +13:34:26 [ 38] [ 6] [640075] +13:34:26 [ 39] [ 2] [00] +13:34:26 [ 41] [ 8] [20001000] +13:34:26 [ 49] [ 3] [418] +13:34:26 [ 54] [ 20] [1002418C000022687642] +13:34:26 ============================================================================ +13:34:26 Calculate Source COMM Id = 0 +13:34:26 ============================================================================ +13:34:26 + + +waiting on router queue for slot.... +13:34:31 ============================================================================ +13:34:31 Slot Id : <412> +13:34:31 Transaction Type : REQUEST +13:34:31 Received From : +13:34:31 ============================================================================ +13:34:31 FNo. Len. Field Value +13:34:31 ============================================================================ +13:34:31 [ 1] [ 4] [0200] +13:34:31 [ 2] [ 16] [1808930600037402] +13:34:31 [ 3] [ 6] [010000] +13:34:31 [ 4] [ 12] [000020000000] +13:34:31 [ 7] [ 10] [0320133221] +13:34:31 [ 11] [ 6] [946807] +13:34:31 [ 12] [ 6] [133221] +13:34:31 [ 13] [ 4] [0320] +13:34:31 [ 15] [ 4] [0320] +13:34:31 [ 18] [ 4] [6011] +13:34:31 [ 19] [ 3] [418] +13:34:31 [ 22] [ 3] [021] +13:34:31 [ 25] [ 2] [01] +13:34:31 [ 28] [ 9] [D00002000] +13:34:31 [ 32] [ 6] [668899] +13:34:31 [ 35] [ 27] [1808930600037402=1803500799] +13:34:31 [ 37] [ 12] [507901443605] +13:34:31 [ 41] [ 8] [03414001] +13:34:31 [ 42] [ 15] [APT ] +13:34:31 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +13:34:31 [ 49] [ 3] [418] +13:34:31 [ 52] [ 16] [B2E93E9264C507E4] +13:34:31 ============================================================================ +13:34:31 + + +waiting on router queue for slot.... +13:34:31 Sending to : +13:34:31 ============================================================================ +13:34:31 Sending to : +13:34:31 ============================================================================ +13:34:31 ============================================================================ +13:34:31 Slot Id : <412> +13:34:31 Transaction Type : REQUEST +13:34:31 Received From : +13:34:31 ============================================================================ +13:34:31 FNo. Len. Field Value +13:34:31 ============================================================================ +13:34:31 [ 1] [ 4] [0200] +13:34:31 [ 2] [ 16] [1808930600037402] +13:34:31 [ 3] [ 6] [010000] +13:34:31 [ 4] [ 12] [000020000000] +13:34:31 [ 7] [ 10] [0320133221] +13:34:31 [ 11] [ 6] [946807] +13:34:31 [ 12] [ 6] [133221] +13:34:31 [ 13] [ 4] [0320] +13:34:31 [ 15] [ 4] [0320] +13:34:31 [ 18] [ 4] [6011] +13:34:31 [ 19] [ 3] [418] +13:34:31 [ 22] [ 3] [021] +13:34:31 [ 25] [ 2] [01] +13:34:31 [ 28] [ 9] [D00002000] +13:34:31 [ 32] [ 6] [668899] +13:34:31 [ 35] [ 27] [1808930600037402=1803500799] +13:34:31 [ 37] [ 12] [507901443605] +13:34:31 [ 41] [ 8] [03414001] +13:34:31 [ 42] [ 15] [APT ] +13:34:31 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +13:34:31 [ 49] [ 3] [418] +13:34:31 [ 52] [ 16] [B2E93E9264C507E4] +13:34:31 ============================================================================ +13:34:31 + + +waiting on router queue for slot.... +13:34:31 Sending to : +13:34:31 ============================================================================ +13:34:31 ============================================================================ +13:34:31 Slot Id : <412> +13:34:31 Transaction Type : REQUEST +13:34:31 Received From : +13:34:31 ============================================================================ +13:34:31 FNo. Len. Field Value +13:34:31 ============================================================================ +13:34:31 [ 1] [ 4] [0200] +13:34:31 [ 2] [ 16] [1808930600037402] +13:34:31 [ 3] [ 6] [010000] +13:34:31 [ 4] [ 12] [000020000000] +13:34:31 [ 7] [ 10] [0320133221] +13:34:31 [ 11] [ 6] [946807] +13:34:31 [ 12] [ 6] [133221] +13:34:31 [ 13] [ 4] [0320] +13:34:31 [ 15] [ 4] [0320] +13:34:31 [ 18] [ 4] [6011] +13:34:31 [ 19] [ 3] [418] +13:34:31 [ 22] [ 3] [021] +13:34:31 [ 25] [ 2] [01] +13:34:31 [ 28] [ 9] [D00002000] +13:34:31 [ 32] [ 6] [668899] +13:34:31 [ 35] [ 27] [1808930600037402=1803500799] +13:34:31 [ 37] [ 12] [507901443605] +13:34:31 [ 41] [ 8] [03414001] +13:34:31 [ 42] [ 15] [APT ] +13:34:31 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +13:34:31 [ 49] [ 3] [418] +13:34:31 [ 52] [ 16] [4A27126FE03225BD] +13:34:31 ============================================================================ +13:34:31 + + +waiting on router queue for slot.... +13:34:31 Sending to : <2> +13:34:31 ============================================================================ +13:34:38 ============================================================================ +13:34:38 Slot Id : <412> +13:34:38 Transaction Type : RESPONSE +13:34:38 Received From : +13:34:38 ============================================================================ +13:34:38 FNo. Len. Field Value +13:34:38 ============================================================================ +13:34:38 [ 1] [ 4] [0210] +13:34:38 [ 2] [ 16] [1808930600037402] +13:34:38 [ 3] [ 6] [010000] +13:34:38 [ 4] [ 12] [000020000000] +13:34:38 [ 6] [ 12] [000020000000] +13:34:38 [ 7] [ 10] [0320133221] +13:34:38 [ 11] [ 6] [946807] +13:34:38 [ 12] [ 6] [133221] +13:34:38 [ 13] [ 4] [0320] +13:34:38 [ 18] [ 4] [6011] +13:34:38 [ 19] [ 3] [418] +13:34:38 [ 22] [ 3] [021] +13:34:38 [ 32] [ 6] [668899] +13:34:38 [ 35] [ 27] [1808930600037402=1803500799] +13:34:38 [ 37] [ 12] [507901443605] +13:34:38 [ 38] [ 6] [946807] +13:34:38 [ 39] [ 2] [00] +13:34:38 [ 41] [ 8] [03414001] +13:34:38 [ 49] [ 3] [418] +13:34:38 [ 52] [ 16] [4A27126FE03225BD] +13:34:38 [ 54] [ 20] [1001418C000047346900] +13:34:38 ============================================================================ +13:34:38 Sending to : +13:34:38 ============================================================================ +13:34:38 + + +waiting on router queue for slot.... +13:34:40 ============================================================================ +13:34:40 Slot Id : <412> +13:34:40 Transaction Type : RESPONSE +13:34:40 Received From : +13:34:40 ============================================================================ +13:34:40 FNo. Len. Field Value +13:34:40 ============================================================================ +13:34:40 [ 1] [ 4] [0210] +13:34:40 [ 2] [ 16] [1808930600037402] +13:34:40 [ 3] [ 6] [010000] +13:34:40 [ 4] [ 12] [000020000000] +13:34:40 [ 6] [ 12] [000020000000] +13:34:40 [ 7] [ 10] [0320133221] +13:34:40 [ 11] [ 6] [946807] +13:34:40 [ 12] [ 6] [133221] +13:34:40 [ 13] [ 4] [0320] +13:34:40 [ 18] [ 4] [6011] +13:34:40 [ 19] [ 3] [418] +13:34:40 [ 22] [ 3] [021] +13:34:40 [ 32] [ 6] [668899] +13:34:40 [ 35] [ 27] [1808930600037402=1803500799] +13:34:40 [ 37] [ 12] [507901443605] +13:34:40 [ 38] [ 6] [946807] +13:34:40 [ 39] [ 2] [00] +13:34:40 [ 41] [ 8] [03414001] +13:34:40 [ 49] [ 3] [418] +13:34:40 [ 52] [ 16] [4A27126FE03225BD] +13:34:40 [ 54] [ 20] [1001418C000047346900] +13:34:40 ============================================================================ +13:34:40 Calculate Source COMM Id = 4 +13:34:40 ============================================================================ +13:34:40 + + +waiting on router queue for slot.... +13:34:41 ============================================================================ +13:34:41 Slot Id : <392> +13:34:41 Transaction Type : REQUEST +13:34:41 Received From : +13:34:41 ============================================================================ +13:34:41 FNo. Len. Field Value +13:34:41 ============================================================================ +13:34:41 [ 1] [ 4] [0800] +13:34:41 [ 7] [ 10] [0320133428] +13:34:41 [ 11] [ 6] [050948] +13:34:41 [ 37] [ 12] [507913050948] +13:34:41 [ 70] [ 3] [ ] +13:34:41 ============================================================================ +13:34:41 + + +waiting on router queue for slot.... +13:34:41 Sending to : +13:34:41 ============================================================================ +13:34:41 ============================================================================ +13:34:41 Slot Id : <392> +13:34:41 Transaction Type : RESPONSE +13:34:41 Received From : +13:34:41 ============================================================================ +13:34:41 FNo. Len. Field Value +13:34:41 ============================================================================ +13:34:41 [ 1] [ 4] [0810] +13:34:41 [ 7] [ 10] [0320133428] +13:34:41 [ 11] [ 6] [050948] +13:34:41 [ 37] [ 12] [507913050948] +13:34:41 [ 39] [ 2] [91] +13:34:41 [ 70] [ 3] [ ] +13:34:41 ============================================================================ +13:34:41 Calculate Source COMM Id = 3 +13:34:41 ============================================================================ +13:34:41 + + +waiting on router queue for slot.... +13:34:47 ============================================================================ +13:34:47 Slot Id : <447> +13:34:47 Transaction Type : REQUEST +13:34:47 Received From : +13:34:47 ============================================================================ +13:34:47 FNo. Len. Field Value +13:34:47 ============================================================================ +13:34:47 [ 1] [ 4] [0800] +13:34:47 [ 7] [ 10] [0320063354] +13:34:47 [ 11] [ 6] [156583] +13:34:47 [ 70] [ 3] [301] +13:34:47 ============================================================================ +13:34:47 + + +waiting on router queue for slot.... +13:34:47 Sending to : +13:34:47 ============================================================================ +13:34:47 ============================================================================ +13:34:47 Slot Id : <447> +13:34:47 Transaction Type : RESPONSE +13:34:47 Received From : +13:34:47 ============================================================================ +13:34:47 FNo. Len. Field Value +13:34:47 ============================================================================ +13:34:47 [ 1] [ 4] [0810] +13:34:47 [ 7] [ 10] [0320063354] +13:34:47 [ 11] [ 6] [156583] +13:34:47 [ 39] [ 2] [00] +13:34:47 [ 70] [ 3] [301] +13:34:47 ============================================================================ +13:34:47 Calculate Source COMM Id = 2 +13:34:47 ============================================================================ +13:34:47 + + +waiting on router queue for slot.... +13:34:47 ============================================================================ +13:34:47 Slot Id : <450> +13:34:47 Transaction Type : REQUEST +13:34:47 Received From : +13:34:47 ============================================================================ +13:34:47 FNo. Len. Field Value +13:34:47 ============================================================================ +13:34:47 [ 1] [ 4] [0200] +13:34:47 [ 2] [ 16] [6213548000001345] +13:34:47 [ 3] [ 6] [010000] +13:34:47 [ 4] [ 12] [000010000000] +13:34:47 [ 7] [ 10] [0320063354] +13:34:47 [ 11] [ 6] [269334] +13:34:47 [ 12] [ 6] [133354] +13:34:47 [ 13] [ 4] [0320] +13:34:47 [ 14] [ 4] [1303] +13:34:47 [ 15] [ 4] [0320] +13:34:47 [ 18] [ 4] [6011] +13:34:47 [ 19] [ 3] [418] +13:34:47 [ 22] [ 3] [021] +13:34:47 [ 25] [ 2] [01] +13:34:47 [ 28] [ 9] [D00002000] +13:34:47 [ 32] [ 6] [180893] +13:34:47 [ 35] [ 32] [6213548000001345=130312010134736] +13:34:47 [ 37] [ 12] [507906269334] +13:34:47 [ 41] [ 8] [0301LPBX] +13:34:47 [ 42] [ 15] [999999 ] +13:34:47 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +13:34:47 [ 49] [ 3] [418] +13:34:47 [ 52] [ 16] [6C77CE5FB8370436] +13:34:47 ============================================================================ +13:34:47 + + +waiting on router queue for slot.... +13:34:47 Sending to : +13:34:47 ============================================================================ +13:34:47 Sending to : +13:34:47 ============================================================================ +13:34:48 ============================================================================ +13:34:48 Slot Id : <450> +13:34:48 Transaction Type : REQUEST +13:34:48 Received From : +13:34:48 ============================================================================ +13:34:48 FNo. Len. Field Value +13:34:48 ============================================================================ +13:34:48 [ 1] [ 4] [0200] +13:34:48 [ 2] [ 16] [6213548000001345] +13:34:48 [ 3] [ 6] [010000] +13:34:48 [ 4] [ 12] [000010000000] +13:34:48 [ 7] [ 10] [0320063354] +13:34:48 [ 11] [ 6] [269334] +13:34:48 [ 12] [ 6] [133354] +13:34:48 [ 13] [ 4] [0320] +13:34:48 [ 14] [ 4] [1303] +13:34:48 [ 15] [ 4] [0320] +13:34:48 [ 18] [ 4] [6011] +13:34:48 [ 19] [ 3] [418] +13:34:48 [ 22] [ 3] [021] +13:34:48 [ 25] [ 2] [01] +13:34:48 [ 28] [ 9] [D00002000] +13:34:48 [ 32] [ 6] [180893] +13:34:48 [ 35] [ 32] [6213548000001345=130312010134736] +13:34:48 [ 37] [ 12] [507906269334] +13:34:48 [ 41] [ 8] [0301LPBX] +13:34:48 [ 42] [ 15] [999999 ] +13:34:48 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +13:34:48 [ 49] [ 3] [418] +13:34:48 [ 52] [ 16] [6C77CE5FB8370436] +13:34:48 ============================================================================ +13:34:48 + + +waiting on router queue for slot.... +13:34:48 Sending to : +13:34:48 ============================================================================ +13:34:48 ============================================================================ +13:34:48 Slot Id : <450> +13:34:48 Transaction Type : REQUEST +13:34:48 Received From : +13:34:48 ============================================================================ +13:34:48 FNo. Len. Field Value +13:34:48 ============================================================================ +13:34:48 [ 1] [ 4] [0200] +13:34:48 [ 2] [ 16] [6213548000001345] +13:34:48 [ 3] [ 6] [010000] +13:34:48 [ 4] [ 12] [000010000000] +13:34:48 [ 7] [ 10] [0320063354] +13:34:48 [ 11] [ 6] [269334] +13:34:48 [ 12] [ 6] [133354] +13:34:48 [ 13] [ 4] [0320] +13:34:48 [ 14] [ 4] [1303] +13:34:48 [ 15] [ 4] [0320] +13:34:48 [ 18] [ 4] [6011] +13:34:48 [ 19] [ 3] [418] +13:34:48 [ 22] [ 3] [021] +13:34:48 [ 25] [ 2] [01] +13:34:48 [ 28] [ 9] [D00002000] +13:34:48 [ 32] [ 6] [180893] +13:34:48 [ 35] [ 32] [6213548000001345=130312010134736] +13:34:48 [ 37] [ 12] [507906269334] +13:34:48 [ 41] [ 8] [0301LPBX] +13:34:48 [ 42] [ 15] [999999 ] +13:34:48 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +13:34:48 [ 49] [ 3] [418] +13:34:48 [ 52] [ 16] [572BBFECB5BE0099] +13:34:48 ============================================================================ +13:34:48 + + +waiting on router queue for slot.... +13:34:48 Sending to : <0> +13:34:48 ============================================================================ +13:34:48 ============================================================================ +13:34:48 Slot Id : <450> +13:34:48 Transaction Type : RESPONSE +13:34:48 Received From : +13:34:48 ============================================================================ +13:34:48 FNo. Len. Field Value +13:34:48 ============================================================================ +13:34:48 [ 1] [ 4] [0210] +13:34:48 [ 2] [ 16] [6213548000001345] +13:34:48 [ 3] [ 6] [010000] +13:34:48 [ 4] [ 12] [000010000000] +13:34:48 [ 7] [ 10] [0320063354] +13:34:48 [ 11] [ 6] [269334] +13:34:48 [ 12] [ 6] [133354] +13:34:48 [ 13] [ 4] [0320] +13:34:48 [ 15] [ 4] [0320] +13:34:48 [ 18] [ 4] [6011] +13:34:48 [ 19] [ 3] [418] +13:34:48 [ 22] [ 3] [021] +13:34:48 [ 32] [ 6] [180893] +13:34:48 [ 35] [ 32] [6213548000001345=130312010134736] +13:34:48 [ 37] [ 12] [507906269334] +13:34:48 [ 38] [ 6] [133444] +13:34:48 [ 39] [ 2] [55] +13:34:48 [ 41] [ 8] [0301LPBX] +13:34:48 [ 49] [ 3] [418] +13:34:48 ============================================================================ +13:34:48 Sending to : +13:34:48 ============================================================================ +13:34:48 + + +waiting on router queue for slot.... +13:34:49 ============================================================================ +13:34:49 Slot Id : <450> +13:34:49 Transaction Type : RESPONSE +13:34:49 Received From : +13:34:49 ============================================================================ +13:34:49 FNo. Len. Field Value +13:34:49 ============================================================================ +13:34:49 [ 1] [ 4] [0210] +13:34:49 [ 2] [ 16] [6213548000001345] +13:34:49 [ 3] [ 6] [010000] +13:34:49 [ 4] [ 12] [000010000000] +13:34:49 [ 7] [ 10] [0320063354] +13:34:49 [ 11] [ 6] [269334] +13:34:49 [ 12] [ 6] [133354] +13:34:49 [ 13] [ 4] [0320] +13:34:49 [ 15] [ 4] [0320] +13:34:49 [ 18] [ 4] [6011] +13:34:49 [ 19] [ 3] [418] +13:34:49 [ 22] [ 3] [021] +13:34:49 [ 32] [ 6] [180893] +13:34:49 [ 35] [ 32] [6213548000001345=130312010134736] +13:34:49 [ 37] [ 12] [507906269334] +13:34:49 [ 38] [ 6] [133444] +13:34:49 [ 39] [ 2] [55] +13:34:49 [ 41] [ 8] [0301LPBX] +13:34:49 [ 49] [ 3] [418] +13:34:49 ============================================================================ +13:34:49 Calculate Source COMM Id = 2 +13:34:49 ============================================================================ +13:34:49 + + +waiting on router queue for slot.... +13:34:54 ============================================================================ +13:34:54 Slot Id : <417> +13:34:54 Transaction Type : REQUEST +13:34:54 Received From : +13:34:54 ============================================================================ +13:34:54 FNo. Len. Field Value +13:34:54 ============================================================================ +13:34:54 [ 1] [ 4] [0800] +13:34:54 [ 2] [ 5] [02531] +13:34:54 [ 3] [ 6] [579138] +13:34:54 [ 7] [ 10] [0320063454] +13:34:54 [ 11] [ 6] [807200] +13:34:54 [ 15] [ 10] [0320063454] +13:34:54 [ 37] [ 11] [57913807200] +13:34:54 [ 70] [ 3] [001] +13:34:54 ============================================================================ +13:34:54 + + +waiting on router queue for slot.... +13:34:54 ============================================================================ +13:34:54 Slot Id : <417> +13:34:54 Transaction Type : RESPONSE +13:34:54 Received From : +13:34:54 ============================================================================ +13:34:54 FNo. Len. Field Value +13:34:54 ============================================================================ +13:34:54 [ 1] [ 4] [0810] +13:34:54 [ 7] [ 10] [0320063454] +13:34:54 [ 11] [ 6] [807200] +13:34:54 [ 15] [ 4] [0320] +13:34:54 [ 37] [ 12] [57913807200] +13:34:54 [ 39] [ 2] [00] +13:34:54 [ 70] [ 3] [001] +13:34:54 ============================================================================ +13:34:54 Sending to : +13:34:54 ============================================================================ +13:34:54 + + +waiting on router queue for slot.... +13:34:54 ============================================================================ +13:34:54 Slot Id : <391> +13:34:54 Transaction Type : REQUEST +13:34:54 Received From : +13:34:54 ============================================================================ +13:34:54 FNo. Len. Field Value +13:34:54 ============================================================================ +13:34:54 [ 1] [ 4] [0800] +13:34:54 [ 7] [ 10] [0320064242] +13:34:54 [ 11] [ 6] [026587] +13:34:54 [ 37] [ 12] [57913026587] +13:34:54 [ 70] [ 3] [301] +13:34:54 ============================================================================ +13:34:54 + + +waiting on router queue for slot.... +13:34:54 Sending to : +13:34:54 ============================================================================ +13:34:54 ============================================================================ +13:34:54 Slot Id : <391> +13:34:54 Transaction Type : RESPONSE +13:34:54 Received From : +13:34:54 ============================================================================ +13:34:54 FNo. Len. Field Value +13:34:54 ============================================================================ +13:34:54 [ 1] [ 4] [0810] +13:34:54 [ 7] [ 10] [0320064242] +13:34:54 [ 11] [ 6] [026587] +13:34:54 [ 37] [ 12] [579130265870] +13:34:54 [ 39] [ 2] [00] +13:34:54 [ 70] [ 3] [810] +13:34:54 ============================================================================ +13:34:54 Calculate Source COMM Id = 1 +13:34:54 ============================================================================ +13:34:54 + + +waiting on router queue for slot.... +13:35:05 ============================================================================ +13:35:05 Slot Id : <443> +13:35:05 Transaction Type : REQUEST +13:35:05 Received From : +13:35:05 ============================================================================ +13:35:05 FNo. Len. Field Value +13:35:05 ============================================================================ +13:35:05 [ 1] [ 4] [0800] +13:35:05 [ 7] [ 10] [0320063410] +13:35:05 [ 11] [ 6] [156584] +13:35:05 [ 70] [ 3] [301] +13:35:05 ============================================================================ +13:35:05 + + +waiting on router queue for slot.... +13:35:05 Sending to : +13:35:05 ============================================================================ +13:35:05 ============================================================================ +13:35:05 Slot Id : <443> +13:35:05 Transaction Type : RESPONSE +13:35:05 Received From : +13:35:05 ============================================================================ +13:35:05 FNo. Len. Field Value +13:35:05 ============================================================================ +13:35:05 [ 1] [ 4] [0810] +13:35:05 [ 7] [ 10] [0320063410] +13:35:05 [ 11] [ 6] [156584] +13:35:05 [ 39] [ 2] [00] +13:35:05 [ 70] [ 3] [301] +13:35:05 ============================================================================ +13:35:05 Calculate Source COMM Id = 2 +13:35:05 ============================================================================ +13:35:05 + + +waiting on router queue for slot.... +13:35:09 ============================================================================ +13:35:09 Slot Id : <377> +13:35:09 Transaction Type : REQUEST +13:35:09 Received From : +13:35:09 ============================================================================ +13:35:09 FNo. Len. Field Value +13:35:09 ============================================================================ +13:35:09 [ 1] [ 4] [0420] +13:35:09 [ 2] [ 16] [1808930600037402] +13:35:09 [ 3] [ 6] [010000] +13:35:09 [ 4] [ 12] [000020000000] +13:35:09 [ 7] [ 10] [0320133221] +13:35:09 [ 11] [ 6] [946807] +13:35:09 [ 12] [ 6] [133221] +13:35:09 [ 13] [ 4] [0320] +13:35:09 [ 15] [ 4] [0320] +13:35:09 [ 18] [ 4] [6011] +13:35:09 [ 19] [ 3] [418] +13:35:09 [ 22] [ 3] [021] +13:35:09 [ 25] [ 2] [01] +13:35:09 [ 28] [ 9] [C00002000] +13:35:09 [ 32] [ 6] [668899] +13:35:09 [ 35] [ 27] [1808930600037402=1803500799] +13:35:09 [ 37] [ 12] [507901443605] +13:35:09 [ 39] [ 2] [00] +13:35:09 [ 41] [ 8] [03414001] +13:35:09 [ 42] [ 15] [APT ] +13:35:09 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +13:35:09 [ 49] [ 3] [418] +13:35:09 [ 51] [ 3] [418] +13:35:09 [ 52] [ 16] [6939159A2235BCA5] +13:35:09 [ 90] [ 42] [020094680703201332210000066889900000000000] +13:35:09 ============================================================================ +13:35:09 + + +waiting on router queue for slot.... +13:35:09 Sending to : +13:35:09 ============================================================================ +13:35:14 ============================================================================ +13:35:14 Slot Id : <377> +13:35:14 Transaction Type : RESPONSE +13:35:14 Received From : +13:35:14 ============================================================================ +13:35:14 FNo. Len. Field Value +13:35:14 ============================================================================ +13:35:14 [ 1] [ 4] [0430] +13:35:14 [ 2] [ 16] [1808930600037402] +13:35:14 [ 3] [ 6] [010000] +13:35:14 [ 4] [ 12] [000020000000] +13:35:14 [ 7] [ 10] [0320133221] +13:35:14 [ 11] [ 6] [946807] +13:35:14 [ 12] [ 6] [133221] +13:35:14 [ 13] [ 4] [0320] +13:35:14 [ 15] [ 4] [0320] +13:35:14 [ 18] [ 4] [6011] +13:35:14 [ 19] [ 3] [418] +13:35:14 [ 22] [ 3] [021] +13:35:14 [ 25] [ 2] [01] +13:35:14 [ 28] [ 9] [C00002000] +13:35:14 [ 32] [ 6] [668899] +13:35:14 [ 35] [ 27] [1808930600037402=1803500799] +13:35:14 [ 37] [ 12] [507901443605] +13:35:14 [ 39] [ 2] [00] +13:35:14 [ 41] [ 8] [03414001] +13:35:14 [ 42] [ 15] [APT ] +13:35:14 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +13:35:14 [ 49] [ 3] [418] +13:35:14 [ 51] [ 3] [418] +13:35:14 [ 52] [ 16] [6939159A2235BCA5] +13:35:14 [ 90] [ 42] [020094680703201332210000066889900000000000] +13:35:14 ============================================================================ +13:35:14 Calculate Source COMM Id = 4 +13:35:14 ============================================================================ +13:35:14 + + +waiting on router queue for slot.... +13:35:19 ============================================================================ +13:35:19 Slot Id : <405> +13:35:19 Transaction Type : REQUEST +13:35:19 Received From : +13:35:19 ============================================================================ +13:35:19 FNo. Len. Field Value +13:35:19 ============================================================================ +13:35:19 [ 1] [ 4] [0800] +13:35:19 [ 7] [ 10] [0320063426] +13:35:19 [ 11] [ 6] [156585] +13:35:19 [ 70] [ 3] [301] +13:35:19 ============================================================================ +13:35:19 + + +waiting on router queue for slot.... +13:35:19 Sending to : +13:35:19 ============================================================================ +13:35:19 ============================================================================ +13:35:19 Slot Id : <405> +13:35:19 Transaction Type : RESPONSE +13:35:19 Received From : +13:35:19 ============================================================================ +13:35:19 FNo. Len. Field Value +13:35:19 ============================================================================ +13:35:19 [ 1] [ 4] [0810] +13:35:19 [ 7] [ 10] [0320063426] +13:35:19 [ 11] [ 6] [156585] +13:35:19 [ 39] [ 2] [00] +13:35:19 [ 70] [ 3] [301] +13:35:19 ============================================================================ +13:35:19 Calculate Source COMM Id = 2 +13:35:19 ============================================================================ +13:35:19 + + +waiting on router queue for slot.... +13:35:23 ============================================================================ +13:35:23 Slot Id : <386> +13:35:23 Transaction Type : REQUEST +13:35:23 Received From : +13:35:23 ============================================================================ +13:35:23 FNo. Len. Field Value +13:35:23 ============================================================================ +13:35:23 [ 1] [ 4] [0200] +13:35:23 [ 2] [ 16] [6213548000001345] +13:35:23 [ 3] [ 6] [010000] +13:35:23 [ 4] [ 12] [000010000000] +13:35:23 [ 7] [ 10] [0320063429] +13:35:23 [ 11] [ 6] [269337] +13:35:23 [ 12] [ 6] [133429] +13:35:23 [ 13] [ 4] [0320] +13:35:23 [ 14] [ 4] [1303] +13:35:23 [ 15] [ 4] [0320] +13:35:23 [ 18] [ 4] [6011] +13:35:23 [ 19] [ 3] [418] +13:35:23 [ 22] [ 3] [021] +13:35:23 [ 25] [ 2] [01] +13:35:23 [ 28] [ 9] [D00002000] +13:35:23 [ 32] [ 6] [180893] +13:35:23 [ 35] [ 32] [6213548000001345=130312010134736] +13:35:23 [ 37] [ 12] [507906269337] +13:35:23 [ 41] [ 8] [0301LPBX] +13:35:23 [ 42] [ 15] [999999 ] +13:35:23 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +13:35:23 [ 49] [ 3] [418] +13:35:23 [ 52] [ 16] [6C77CE5FB8370436] +13:35:23 ============================================================================ +13:35:23 + + +waiting on router queue for slot.... +13:35:23 Sending to : +13:35:23 ============================================================================ +13:35:23 Sending to : +13:35:23 ============================================================================ +13:35:23 ============================================================================ +13:35:23 Slot Id : <386> +13:35:23 Transaction Type : REQUEST +13:35:23 Received From : +13:35:23 ============================================================================ +13:35:23 FNo. Len. Field Value +13:35:23 ============================================================================ +13:35:23 [ 1] [ 4] [0200] +13:35:23 [ 2] [ 16] [6213548000001345] +13:35:23 [ 3] [ 6] [010000] +13:35:23 [ 4] [ 12] [000010000000] +13:35:23 [ 7] [ 10] [0320063429] +13:35:23 [ 11] [ 6] [269337] +13:35:23 [ 12] [ 6] [133429] +13:35:23 [ 13] [ 4] [0320] +13:35:23 [ 14] [ 4] [1303] +13:35:23 [ 15] [ 4] [0320] +13:35:23 [ 18] [ 4] [6011] +13:35:23 [ 19] [ 3] [418] +13:35:23 [ 22] [ 3] [021] +13:35:23 [ 25] [ 2] [01] +13:35:23 [ 28] [ 9] [D00002000] +13:35:23 [ 32] [ 6] [180893] +13:35:23 [ 35] [ 32] [6213548000001345=130312010134736] +13:35:23 [ 37] [ 12] [507906269337] +13:35:23 [ 41] [ 8] [0301LPBX] +13:35:23 [ 42] [ 15] [999999 ] +13:35:23 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +13:35:23 [ 49] [ 3] [418] +13:35:23 [ 52] [ 16] [6C77CE5FB8370436] +13:35:23 ============================================================================ +13:35:23 + + +waiting on router queue for slot.... +13:35:23 Sending to : +13:35:23 ============================================================================ +13:35:23 ============================================================================ +13:35:23 Slot Id : <386> +13:35:23 Transaction Type : REQUEST +13:35:23 Received From : +13:35:23 ============================================================================ +13:35:23 FNo. Len. Field Value +13:35:23 ============================================================================ +13:35:23 [ 1] [ 4] [0200] +13:35:23 [ 2] [ 16] [6213548000001345] +13:35:23 [ 3] [ 6] [010000] +13:35:23 [ 4] [ 12] [000010000000] +13:35:23 [ 7] [ 10] [0320063429] +13:35:23 [ 11] [ 6] [269337] +13:35:23 [ 12] [ 6] [133429] +13:35:23 [ 13] [ 4] [0320] +13:35:23 [ 14] [ 4] [1303] +13:35:23 [ 15] [ 4] [0320] +13:35:23 [ 18] [ 4] [6011] +13:35:23 [ 19] [ 3] [418] +13:35:23 [ 22] [ 3] [021] +13:35:23 [ 25] [ 2] [01] +13:35:23 [ 28] [ 9] [D00002000] +13:35:23 [ 32] [ 6] [180893] +13:35:23 [ 35] [ 32] [6213548000001345=130312010134736] +13:35:23 [ 37] [ 12] [507906269337] +13:35:23 [ 41] [ 8] [0301LPBX] +13:35:23 [ 42] [ 15] [999999 ] +13:35:23 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +13:35:23 [ 49] [ 3] [418] +13:35:23 [ 52] [ 16] [572BBFECB5BE0099] +13:35:23 ============================================================================ +13:35:23 + + +waiting on router queue for slot.... +13:35:23 Sending to : <0> +13:35:23 ============================================================================ +13:35:23 ============================================================================ +13:35:23 Slot Id : <386> +13:35:23 Transaction Type : RESPONSE +13:35:23 Received From : +13:35:23 ============================================================================ +13:35:23 FNo. Len. Field Value +13:35:23 ============================================================================ +13:35:23 [ 1] [ 4] [0210] +13:35:23 [ 2] [ 16] [6213548000001345] +13:35:23 [ 3] [ 6] [010000] +13:35:23 [ 4] [ 12] [000010000000] +13:35:23 [ 7] [ 10] [0320063429] +13:35:23 [ 11] [ 6] [269337] +13:35:23 [ 12] [ 6] [133429] +13:35:23 [ 13] [ 4] [0320] +13:35:23 [ 15] [ 4] [0320] +13:35:23 [ 18] [ 4] [6011] +13:35:23 [ 19] [ 3] [418] +13:35:23 [ 22] [ 3] [021] +13:35:23 [ 32] [ 6] [180893] +13:35:23 [ 35] [ 32] [6213548000001345=130312010134736] +13:35:23 [ 37] [ 12] [507906269337] +13:35:23 [ 38] [ 6] [133519] +13:35:23 [ 39] [ 2] [75] +13:35:23 [ 41] [ 8] [0301LPBX] +13:35:23 [ 49] [ 3] [418] +13:35:23 ============================================================================ +13:35:23 Sending to : +13:35:23 ============================================================================ +13:35:23 + + +waiting on router queue for slot.... +13:35:24 ============================================================================ +13:35:24 Slot Id : <386> +13:35:24 Transaction Type : RESPONSE +13:35:24 Received From : +13:35:24 ============================================================================ +13:35:24 FNo. Len. Field Value +13:35:24 ============================================================================ +13:35:24 [ 1] [ 4] [0210] +13:35:24 [ 2] [ 16] [6213548000001345] +13:35:24 [ 3] [ 6] [010000] +13:35:24 [ 4] [ 12] [000010000000] +13:35:24 [ 7] [ 10] [0320063429] +13:35:24 [ 11] [ 6] [269337] +13:35:24 [ 12] [ 6] [133429] +13:35:24 [ 13] [ 4] [0320] +13:35:24 [ 15] [ 4] [0320] +13:35:24 [ 18] [ 4] [6011] +13:35:24 [ 19] [ 3] [418] +13:35:24 [ 22] [ 3] [021] +13:35:24 [ 32] [ 6] [180893] +13:35:24 [ 35] [ 32] [6213548000001345=130312010134736] +13:35:24 [ 37] [ 12] [507906269337] +13:35:24 [ 38] [ 6] [133519] +13:35:24 [ 39] [ 2] [75] +13:35:24 [ 41] [ 8] [0301LPBX] +13:35:24 [ 49] [ 3] [418] +13:35:24 ============================================================================ +13:35:24 Calculate Source COMM Id = 2 +13:35:24 ============================================================================ +13:35:24 + + +waiting on router queue for slot.... +13:35:29 ============================================================================ +13:35:29 Slot Id : <429> +13:35:29 Transaction Type : REQUEST +13:35:29 Received From : +13:35:29 ============================================================================ +13:35:29 FNo. Len. Field Value +13:35:29 ============================================================================ +13:35:29 [ 1] [ 4] [0200] +13:35:29 [ 2] [ 16] [6688990107228205] +13:35:29 [ 3] [ 6] [301000] +13:35:29 [ 4] [ 12] [000000000000] +13:35:29 [ 7] [ 10] [0320133524] +13:35:29 [ 11] [ 6] [759054] +13:35:29 [ 12] [ 6] [133524] +13:35:29 [ 13] [ 4] [0320] +13:35:29 [ 15] [ 4] [0320] +13:35:29 [ 18] [ 4] [6011] +13:35:29 [ 22] [ 3] [900] +13:35:29 [ 25] [ 2] [02] +13:35:29 [ 28] [ 9] [D00000000] +13:35:29 [ 32] [ 6] [621354] +13:35:29 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:35:29 [ 37] [ 12] [507904153923] +13:35:29 [ 41] [ 8] [20001000] +13:35:29 [ 42] [ 15] [NATIVE ] +13:35:29 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:35:29 [ 49] [ 3] [418] +13:35:29 [ 52] [ 16] [216E7866C9888A9E] +13:35:29 ============================================================================ +13:35:29 + + +waiting on router queue for slot.... +13:35:29 Sending to : +13:35:29 ============================================================================ +13:35:29 Sending to : +13:35:29 ============================================================================ +13:35:29 ============================================================================ +13:35:29 Slot Id : <429> +13:35:29 Transaction Type : REQUEST +13:35:29 Received From : +13:35:29 ============================================================================ +13:35:29 FNo. Len. Field Value +13:35:29 ============================================================================ +13:35:29 [ 1] [ 4] [0200] +13:35:29 [ 2] [ 16] [6688990107228205] +13:35:29 [ 3] [ 6] [301000] +13:35:29 [ 4] [ 12] [000000000000] +13:35:29 [ 7] [ 10] [0320133524] +13:35:29 [ 11] [ 6] [759054] +13:35:29 [ 12] [ 6] [133524] +13:35:29 [ 13] [ 4] [0320] +13:35:29 [ 15] [ 4] [0320] +13:35:29 [ 18] [ 4] [6011] +13:35:29 [ 22] [ 3] [900] +13:35:29 [ 25] [ 2] [02] +13:35:29 [ 28] [ 9] [D00000000] +13:35:29 [ 32] [ 6] [621354] +13:35:29 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:35:29 [ 37] [ 12] [507904153923] +13:35:29 [ 41] [ 8] [20001000] +13:35:29 [ 42] [ 15] [NATIVE ] +13:35:29 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:35:29 [ 49] [ 3] [418] +13:35:29 [ 52] [ 16] [216E7866C9888A9E] +13:35:29 ============================================================================ +13:35:29 + + +waiting on router queue for slot.... +13:35:29 Sending to : +13:35:29 ============================================================================ +13:35:29 ============================================================================ +13:35:29 Slot Id : <429> +13:35:29 Transaction Type : REQUEST +13:35:29 Received From : +13:35:29 ============================================================================ +13:35:29 FNo. Len. Field Value +13:35:29 ============================================================================ +13:35:29 [ 1] [ 4] [0200] +13:35:29 [ 2] [ 16] [6688990107228205] +13:35:29 [ 3] [ 6] [301000] +13:35:29 [ 4] [ 12] [000000000000] +13:35:29 [ 7] [ 10] [0320133524] +13:35:29 [ 11] [ 6] [759054] +13:35:29 [ 12] [ 6] [133524] +13:35:29 [ 13] [ 4] [0320] +13:35:29 [ 15] [ 4] [0320] +13:35:29 [ 18] [ 4] [6011] +13:35:29 [ 22] [ 3] [900] +13:35:29 [ 25] [ 2] [02] +13:35:29 [ 28] [ 9] [D00000000] +13:35:29 [ 32] [ 6] [621354] +13:35:29 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:35:29 [ 37] [ 12] [507904153923] +13:35:29 [ 41] [ 8] [20001000] +13:35:29 [ 42] [ 15] [NATIVE ] +13:35:29 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:35:29 [ 49] [ 3] [418] +13:35:29 [ 52] [ 16] [BFD645C3C5A2455A] +13:35:29 ============================================================================ +13:35:29 + + +waiting on router queue for slot.... +13:35:29 Sending to : <4> +13:35:29 ============================================================================ +13:35:30 ============================================================================ +13:35:30 Slot Id : <429> +13:35:30 Transaction Type : RESPONSE +13:35:30 Received From : +13:35:30 ============================================================================ +13:35:30 FNo. Len. Field Value +13:35:30 ============================================================================ +13:35:30 [ 1] [ 4] [0210] +13:35:30 [ 2] [ 16] [6688990107228205] +13:35:30 [ 3] [ 6] [301000] +13:35:30 [ 4] [ 12] [000000000000] +13:35:30 [ 11] [ 6] [759054] +13:35:30 [ 12] [ 6] [133524] +13:35:30 [ 15] [ 4] [0320] +13:35:30 [ 18] [ 4] [6011] +13:35:30 [ 32] [ 6] [621354] +13:35:30 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:35:30 [ 37] [ 12] [507904153923] +13:35:30 [ 38] [ 6] [312463] +13:35:30 [ 39] [ 2] [00] +13:35:30 [ 41] [ 8] [20001000] +13:35:30 [ 49] [ 3] [418] +13:35:30 [ 54] [ 20] [1002418C000022687642] +13:35:30 ============================================================================ +13:35:30 Sending to : +13:35:30 ============================================================================ +13:35:30 + + +waiting on router queue for slot.... +13:35:32 ============================================================================ +13:35:32 Slot Id : <429> +13:35:32 Transaction Type : RESPONSE +13:35:32 Received From : +13:35:32 ============================================================================ +13:35:32 FNo. Len. Field Value +13:35:32 ============================================================================ +13:35:32 [ 1] [ 4] [0210] +13:35:32 [ 2] [ 16] [6688990107228205] +13:35:32 [ 3] [ 6] [301000] +13:35:32 [ 4] [ 12] [000000000000] +13:35:32 [ 11] [ 6] [759054] +13:35:32 [ 12] [ 6] [133524] +13:35:32 [ 15] [ 4] [0320] +13:35:32 [ 18] [ 4] [6011] +13:35:32 [ 32] [ 6] [621354] +13:35:32 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:35:32 [ 37] [ 12] [507904153923] +13:35:32 [ 38] [ 6] [312463] +13:35:32 [ 39] [ 2] [00] +13:35:32 [ 41] [ 8] [20001000] +13:35:32 [ 49] [ 3] [418] +13:35:32 [ 54] [ 20] [1002418C000022687642] +13:35:32 ============================================================================ +13:35:32 Calculate Source COMM Id = 0 +13:35:32 ============================================================================ +13:35:32 + + +waiting on router queue for slot.... +13:35:40 ============================================================================ +13:35:40 Slot Id : <446> +13:35:40 Transaction Type : REQUEST +13:35:40 Received From : +13:35:40 ============================================================================ +13:35:40 FNo. Len. Field Value +13:35:40 ============================================================================ +13:35:40 [ 1] [ 4] [0800] +13:35:40 [ 7] [ 10] [0320063447] +13:35:40 [ 11] [ 6] [156586] +13:35:40 [ 70] [ 3] [301] +13:35:40 ============================================================================ +13:35:40 + + +waiting on router queue for slot.... +13:35:40 Sending to : +13:35:40 ============================================================================ +13:35:40 ============================================================================ +13:35:40 Slot Id : <446> +13:35:40 Transaction Type : RESPONSE +13:35:40 Received From : +13:35:40 ============================================================================ +13:35:40 FNo. Len. Field Value +13:35:40 ============================================================================ +13:35:40 [ 1] [ 4] [0810] +13:35:40 [ 7] [ 10] [0320063447] +13:35:40 [ 11] [ 6] [156586] +13:35:40 [ 39] [ 2] [00] +13:35:40 [ 70] [ 3] [301] +13:35:40 ============================================================================ +13:35:40 Calculate Source COMM Id = 2 +13:35:40 ============================================================================ +13:35:40 + + +waiting on router queue for slot.... +13:35:55 ============================================================================ +13:35:55 Slot Id : <456> +13:35:55 Transaction Type : REQUEST +13:35:55 Received From : +13:35:55 ============================================================================ +13:35:55 FNo. Len. Field Value +13:35:55 ============================================================================ +13:35:55 [ 1] [ 4] [0800] +13:35:55 [ 7] [ 10] [0320063502] +13:35:55 [ 11] [ 6] [156587] +13:35:55 [ 70] [ 3] [301] +13:35:55 ============================================================================ +13:35:55 + + +waiting on router queue for slot.... +13:35:55 Sending to : +13:35:55 ============================================================================ +13:35:55 ============================================================================ +13:35:55 Slot Id : <456> +13:35:55 Transaction Type : RESPONSE +13:35:55 Received From : +13:35:55 ============================================================================ +13:35:55 FNo. Len. Field Value +13:35:55 ============================================================================ +13:35:55 [ 1] [ 4] [0810] +13:35:55 [ 7] [ 10] [0320063502] +13:35:55 [ 11] [ 6] [156587] +13:35:55 [ 39] [ 2] [00] +13:35:55 [ 70] [ 3] [301] +13:35:55 ============================================================================ +13:35:55 Calculate Source COMM Id = 2 +13:35:55 ============================================================================ +13:35:55 + + +waiting on router queue for slot.... +13:35:56 ============================================================================ +13:35:56 Slot Id : <404> +13:35:56 Transaction Type : REQUEST +13:35:56 Received From : +13:35:56 ============================================================================ +13:35:56 FNo. Len. Field Value +13:35:56 ============================================================================ +13:35:56 [ 1] [ 4] [0800] +13:35:56 [ 2] [ 5] [02531] +13:35:56 [ 3] [ 6] [579138] +13:35:56 [ 7] [ 10] [0320063556] +13:35:56 [ 11] [ 6] [807201] +13:35:56 [ 15] [ 10] [0320063556] +13:35:56 [ 37] [ 11] [57913807201] +13:35:56 [ 70] [ 3] [001] +13:35:56 ============================================================================ +13:35:56 + + +waiting on router queue for slot.... +13:35:56 ============================================================================ +13:35:56 Slot Id : <404> +13:35:56 Transaction Type : RESPONSE +13:35:56 Received From : +13:35:56 ============================================================================ +13:35:56 FNo. Len. Field Value +13:35:56 ============================================================================ +13:35:56 [ 1] [ 4] [0810] +13:35:56 [ 7] [ 10] [0320063556] +13:35:56 [ 11] [ 6] [807201] +13:35:56 [ 15] [ 4] [0320] +13:35:56 [ 37] [ 12] [57913807201] +13:35:56 [ 39] [ 2] [00] +13:35:56 [ 70] [ 3] [001] +13:35:56 ============================================================================ +13:35:56 Sending to : +13:35:56 ============================================================================ +13:35:56 + + +waiting on router queue for slot.... +13:35:58 ============================================================================ +13:35:58 Slot Id : <424> +13:35:58 Transaction Type : REQUEST +13:35:58 Received From : +13:35:58 ============================================================================ +13:35:58 FNo. Len. Field Value +13:35:58 ============================================================================ +13:35:58 [ 1] [ 4] [0200] +13:35:58 [ 2] [ 16] [6688990040124321] +13:35:58 [ 3] [ 6] [300000] +13:35:58 [ 4] [ 12] [000000000000] +13:35:58 [ 7] [ 10] [0320133553] +13:35:58 [ 11] [ 6] [759158] +13:35:58 [ 12] [ 6] [133553] +13:35:58 [ 13] [ 4] [0320] +13:35:58 [ 15] [ 4] [0320] +13:35:58 [ 18] [ 4] [6011] +13:35:58 [ 22] [ 3] [900] +13:35:58 [ 25] [ 2] [02] +13:35:58 [ 28] [ 9] [D00000000] +13:35:58 [ 32] [ 6] [621354] +13:35:58 [ 35] [ 37] [6688990040124321=98031261578887400000] +13:35:58 [ 37] [ 12] [507904698909] +13:35:58 [ 41] [ 8] [18000800] +13:35:58 [ 42] [ 15] [NATIVE ] +13:35:58 [ 43] [ 40] [Bountai District Bountai LAO] +13:35:58 [ 49] [ 3] [418] +13:35:58 [ 52] [ 16] [62C89BFDA96B44E8] +13:35:58 ============================================================================ +13:35:58 + + +waiting on router queue for slot.... +13:35:58 Sending to : +13:35:58 ============================================================================ +13:35:58 Sending to : +13:35:58 ============================================================================ +13:35:58 ============================================================================ +13:35:58 Slot Id : <424> +13:35:58 Transaction Type : REQUEST +13:35:58 Received From : +13:35:58 ============================================================================ +13:35:58 FNo. Len. Field Value +13:35:58 ============================================================================ +13:35:58 [ 1] [ 4] [0200] +13:35:58 [ 2] [ 16] [6688990040124321] +13:35:58 [ 3] [ 6] [300000] +13:35:58 [ 4] [ 12] [000000000000] +13:35:58 [ 7] [ 10] [0320133553] +13:35:58 [ 11] [ 6] [759158] +13:35:58 [ 12] [ 6] [133553] +13:35:58 [ 13] [ 4] [0320] +13:35:58 [ 15] [ 4] [0320] +13:35:58 [ 18] [ 4] [6011] +13:35:58 [ 22] [ 3] [900] +13:35:58 [ 25] [ 2] [02] +13:35:58 [ 28] [ 9] [D00000000] +13:35:58 [ 32] [ 6] [621354] +13:35:58 [ 35] [ 37] [6688990040124321=98031261578887400000] +13:35:58 [ 37] [ 12] [507904698909] +13:35:58 [ 41] [ 8] [18000800] +13:35:58 [ 42] [ 15] [NATIVE ] +13:35:58 [ 43] [ 40] [Bountai District Bountai LAO] +13:35:58 [ 49] [ 3] [418] +13:35:58 [ 52] [ 16] [62C89BFDA96B44E8] +13:35:58 ============================================================================ +13:35:58 + + +waiting on router queue for slot.... +13:35:58 Sending to : +13:35:58 ============================================================================ +13:35:58 ============================================================================ +13:35:58 Slot Id : <424> +13:35:58 Transaction Type : REQUEST +13:35:58 Received From : +13:35:58 ============================================================================ +13:35:58 FNo. Len. Field Value +13:35:58 ============================================================================ +13:35:58 [ 1] [ 4] [0200] +13:35:58 [ 2] [ 16] [6688990040124321] +13:35:58 [ 3] [ 6] [300000] +13:35:58 [ 4] [ 12] [000000000000] +13:35:58 [ 7] [ 10] [0320133553] +13:35:58 [ 11] [ 6] [759158] +13:35:58 [ 12] [ 6] [133553] +13:35:58 [ 13] [ 4] [0320] +13:35:58 [ 15] [ 4] [0320] +13:35:58 [ 18] [ 4] [6011] +13:35:58 [ 22] [ 3] [900] +13:35:58 [ 25] [ 2] [02] +13:35:58 [ 28] [ 9] [D00000000] +13:35:58 [ 32] [ 6] [621354] +13:35:58 [ 35] [ 37] [6688990040124321=98031261578887400000] +13:35:58 [ 37] [ 12] [507904698909] +13:35:58 [ 41] [ 8] [18000800] +13:35:58 [ 42] [ 15] [NATIVE ] +13:35:58 [ 43] [ 40] [Bountai District Bountai LAO] +13:35:58 [ 49] [ 3] [418] +13:35:58 [ 52] [ 16] [358A976E77E610D5] +13:35:58 ============================================================================ +13:35:58 + + +waiting on router queue for slot.... +13:35:58 Sending to : <4> +13:35:58 ============================================================================ +13:35:59 ============================================================================ +13:35:59 Slot Id : <424> +13:35:59 Transaction Type : RESPONSE +13:35:59 Received From : +13:35:59 ============================================================================ +13:35:59 FNo. Len. Field Value +13:35:59 ============================================================================ +13:35:59 [ 1] [ 4] [0210] +13:35:59 [ 2] [ 16] [6688990040124321] +13:35:59 [ 3] [ 6] [300000] +13:35:59 [ 4] [ 12] [000000000000] +13:35:59 [ 11] [ 6] [759158] +13:35:59 [ 12] [ 6] [133553] +13:35:59 [ 15] [ 4] [0320] +13:35:59 [ 18] [ 4] [6011] +13:35:59 [ 32] [ 6] [621354] +13:35:59 [ 35] [ 37] [6688990040124321=98031261578887400000] +13:35:59 [ 37] [ 12] [507904698909] +13:35:59 [ 38] [ 6] [126322] +13:35:59 [ 39] [ 2] [00] +13:35:59 [ 41] [ 8] [18000800] +13:35:59 [ 49] [ 3] [418] +13:35:59 [ 54] [ 20] [0002418C000149052478] +13:35:59 ============================================================================ +13:35:59 Sending to : +13:35:59 ============================================================================ +13:35:59 + + +waiting on router queue for slot.... +13:36:01 ============================================================================ +13:36:01 Slot Id : <424> +13:36:01 Transaction Type : RESPONSE +13:36:01 Received From : +13:36:01 ============================================================================ +13:36:01 FNo. Len. Field Value +13:36:01 ============================================================================ +13:36:01 [ 1] [ 4] [0210] +13:36:01 [ 2] [ 16] [6688990040124321] +13:36:01 [ 3] [ 6] [300000] +13:36:01 [ 4] [ 12] [000000000000] +13:36:01 [ 11] [ 6] [759158] +13:36:01 [ 12] [ 6] [133553] +13:36:01 [ 15] [ 4] [0320] +13:36:01 [ 18] [ 4] [6011] +13:36:01 [ 32] [ 6] [621354] +13:36:01 [ 35] [ 37] [6688990040124321=98031261578887400000] +13:36:01 [ 37] [ 12] [507904698909] +13:36:01 [ 38] [ 6] [126322] +13:36:01 [ 39] [ 2] [00] +13:36:01 [ 41] [ 8] [18000800] +13:36:01 [ 49] [ 3] [418] +13:36:01 [ 54] [ 20] [0002418C000149052478] +13:36:01 ============================================================================ +13:36:01 Calculate Source COMM Id = 0 +13:36:01 ============================================================================ +13:36:01 + + +waiting on router queue for slot.... +13:36:06 ============================================================================ +13:36:06 Slot Id : <445> +13:36:06 Transaction Type : REQUEST +13:36:06 Received From : +13:36:06 ============================================================================ +13:36:06 FNo. Len. Field Value +13:36:06 ============================================================================ +13:36:06 [ 1] [ 4] [0800] +13:36:06 [ 7] [ 10] [0320063513] +13:36:06 [ 11] [ 6] [156588] +13:36:06 [ 70] [ 3] [301] +13:36:06 ============================================================================ +13:36:06 + + +waiting on router queue for slot.... +13:36:06 Sending to : +13:36:06 ============================================================================ +13:36:06 ============================================================================ +13:36:06 Slot Id : <445> +13:36:06 Transaction Type : RESPONSE +13:36:06 Received From : +13:36:06 ============================================================================ +13:36:06 FNo. Len. Field Value +13:36:06 ============================================================================ +13:36:06 [ 1] [ 4] [0810] +13:36:06 [ 7] [ 10] [0320063513] +13:36:06 [ 11] [ 6] [156588] +13:36:06 [ 39] [ 2] [00] +13:36:06 [ 70] [ 3] [301] +13:36:06 ============================================================================ +13:36:06 Calculate Source COMM Id = 2 +13:36:06 ============================================================================ +13:36:06 + + +waiting on router queue for slot.... +13:36:21 ============================================================================ +13:36:21 Slot Id : <435> +13:36:21 Transaction Type : REQUEST +13:36:21 Received From : +13:36:21 ============================================================================ +13:36:21 FNo. Len. Field Value +13:36:21 ============================================================================ +13:36:21 [ 1] [ 4] [0800] +13:36:21 [ 7] [ 10] [0320063412] +13:36:21 [ 11] [ 6] [088589] +13:36:21 [ 37] [ 12] [57913088589] +13:36:21 [ 70] [ 3] [301] +13:36:21 ============================================================================ +13:36:21 + + +waiting on router queue for slot.... +13:36:21 Sending to : +13:36:21 ============================================================================ +13:36:21 ============================================================================ +13:36:21 Slot Id : <435> +13:36:21 Transaction Type : RESPONSE +13:36:21 Received From : +13:36:21 ============================================================================ +13:36:21 FNo. Len. Field Value +13:36:21 ============================================================================ +13:36:21 [ 1] [ 4] [0810] +13:36:21 [ 7] [ 10] [0320063412] +13:36:21 [ 11] [ 6] [088589] +13:36:21 [ 37] [ 12] [579130885890] +13:36:21 [ 39] [ 2] [00] +13:36:21 [ 70] [ 3] [810] +13:36:21 ============================================================================ +13:36:21 Calculate Source COMM Id = 4 +13:36:21 ============================================================================ +13:36:21 + + +waiting on router queue for slot.... +13:36:21 ============================================================================ +13:36:21 Slot Id : <438> +13:36:21 Transaction Type : REQUEST +13:36:21 Received From : +13:36:21 ============================================================================ +13:36:21 FNo. Len. Field Value +13:36:21 ============================================================================ +13:36:21 [ 1] [ 4] [0200] +13:36:21 [ 2] [ 16] [6213544002213004] +13:36:21 [ 3] [ 6] [010000] +13:36:21 [ 4] [ 12] [000050000000] +13:36:21 [ 7] [ 10] [0320133412] +13:36:21 [ 11] [ 6] [946881] +13:36:21 [ 12] [ 6] [133412] +13:36:21 [ 13] [ 4] [0320] +13:36:21 [ 15] [ 4] [0320] +13:36:21 [ 18] [ 4] [6011] +13:36:21 [ 19] [ 3] [418] +13:36:21 [ 22] [ 3] [021] +13:36:21 [ 25] [ 2] [01] +13:36:21 [ 28] [ 9] [D00002000] +13:36:21 [ 32] [ 6] [668899] +13:36:21 [ 35] [ 32] [6213544002213004=491212011300457] +13:36:21 [ 37] [ 12] [507901912201] +13:36:21 [ 41] [ 8] [03013004] +13:36:21 [ 42] [ 15] [APT ] +13:36:21 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:36:21 [ 49] [ 3] [418] +13:36:21 [ 52] [ 16] [F42292859D835504] +13:36:21 ============================================================================ +13:36:21 + + +waiting on router queue for slot.... +13:36:21 Sending to : +13:36:21 ============================================================================ +13:36:21 Sending to : +13:36:21 ============================================================================ +13:36:22 ============================================================================ +13:36:22 Slot Id : <438> +13:36:22 Transaction Type : REQUEST +13:36:22 Received From : +13:36:22 ============================================================================ +13:36:22 FNo. Len. Field Value +13:36:22 ============================================================================ +13:36:22 [ 1] [ 4] [0200] +13:36:22 [ 2] [ 16] [6213544002213004] +13:36:22 [ 3] [ 6] [010000] +13:36:22 [ 4] [ 12] [000050000000] +13:36:22 [ 7] [ 10] [0320133412] +13:36:22 [ 11] [ 6] [946881] +13:36:22 [ 12] [ 6] [133412] +13:36:22 [ 13] [ 4] [0320] +13:36:22 [ 15] [ 4] [0320] +13:36:22 [ 18] [ 4] [6011] +13:36:22 [ 19] [ 3] [418] +13:36:22 [ 22] [ 3] [021] +13:36:22 [ 25] [ 2] [01] +13:36:22 [ 28] [ 9] [D00002000] +13:36:22 [ 32] [ 6] [668899] +13:36:22 [ 35] [ 32] [6213544002213004=491212011300457] +13:36:22 [ 37] [ 12] [507901912201] +13:36:22 [ 41] [ 8] [03013004] +13:36:22 [ 42] [ 15] [APT ] +13:36:22 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:36:22 [ 49] [ 3] [418] +13:36:22 [ 52] [ 16] [F42292859D835504] +13:36:22 ============================================================================ +13:36:22 + + +waiting on router queue for slot.... +13:36:22 Sending to : +13:36:22 ============================================================================ +13:36:22 ============================================================================ +13:36:22 Slot Id : <438> +13:36:22 Transaction Type : REQUEST +13:36:22 Received From : +13:36:22 ============================================================================ +13:36:22 FNo. Len. Field Value +13:36:22 ============================================================================ +13:36:22 [ 1] [ 4] [0200] +13:36:22 [ 2] [ 16] [6213544002213004] +13:36:22 [ 3] [ 6] [010000] +13:36:22 [ 4] [ 12] [000050000000] +13:36:22 [ 7] [ 10] [0320133412] +13:36:22 [ 11] [ 6] [946881] +13:36:22 [ 12] [ 6] [133412] +13:36:22 [ 13] [ 4] [0320] +13:36:22 [ 15] [ 4] [0320] +13:36:22 [ 18] [ 4] [6011] +13:36:22 [ 19] [ 3] [418] +13:36:22 [ 22] [ 3] [021] +13:36:22 [ 25] [ 2] [01] +13:36:22 [ 28] [ 9] [D00002000] +13:36:22 [ 32] [ 6] [668899] +13:36:22 [ 35] [ 32] [6213544002213004=491212011300457] +13:36:22 [ 37] [ 12] [507901912201] +13:36:22 [ 41] [ 8] [03013004] +13:36:22 [ 42] [ 15] [APT ] +13:36:22 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:36:22 [ 49] [ 3] [418] +13:36:22 [ 52] [ 16] [CABA6F28B0929160] +13:36:22 ============================================================================ +13:36:22 + + +waiting on router queue for slot.... +13:36:22 Sending to : <0> +13:36:22 ============================================================================ +13:36:22 ============================================================================ +13:36:22 Slot Id : <438> +13:36:22 Transaction Type : RESPONSE +13:36:22 Received From : +13:36:22 ============================================================================ +13:36:22 FNo. Len. Field Value +13:36:22 ============================================================================ +13:36:22 [ 1] [ 4] [0210] +13:36:22 [ 2] [ 16] [6213544002213004] +13:36:22 [ 3] [ 6] [010000] +13:36:22 [ 4] [ 12] [000050000000] +13:36:22 [ 7] [ 10] [0320133412] +13:36:22 [ 11] [ 6] [946881] +13:36:22 [ 12] [ 6] [133412] +13:36:22 [ 13] [ 4] [0320] +13:36:22 [ 15] [ 4] [0320] +13:36:22 [ 18] [ 4] [6011] +13:36:22 [ 19] [ 3] [418] +13:36:22 [ 32] [ 6] [668899] +13:36:22 [ 35] [ 32] [6213544002213004=491212011300457] +13:36:22 [ 37] [ 12] [507901912201] +13:36:22 [ 38] [ 6] [946881] +13:36:22 [ 39] [ 2] [51] +13:36:22 [ 41] [ 8] [03013004] +13:36:22 [ 49] [ 3] [418] +13:36:22 [ 54] [ 40] [0001418C0000294536000002418C000029453600] +13:36:22 ============================================================================ +13:36:22 Sending to : +13:36:22 ============================================================================ +13:36:22 + + +waiting on router queue for slot.... +13:36:23 ============================================================================ +13:36:23 Slot Id : <442> +13:36:23 Transaction Type : REQUEST +13:36:23 Received From : +13:36:23 ============================================================================ +13:36:23 FNo. Len. Field Value +13:36:23 ============================================================================ +13:36:23 [ 1] [ 4] [0800] +13:36:23 [ 7] [ 10] [0320063530] +13:36:23 [ 11] [ 6] [156589] +13:36:23 [ 70] [ 3] [301] +13:36:23 ============================================================================ +13:36:23 + + +waiting on router queue for slot.... +13:36:23 Sending to : +13:36:23 ============================================================================ +13:36:23 ============================================================================ +13:36:23 Slot Id : <442> +13:36:23 Transaction Type : RESPONSE +13:36:23 Received From : +13:36:23 ============================================================================ +13:36:23 FNo. Len. Field Value +13:36:23 ============================================================================ +13:36:23 [ 1] [ 4] [0810] +13:36:23 [ 7] [ 10] [0320063530] +13:36:23 [ 11] [ 6] [156589] +13:36:23 [ 39] [ 2] [00] +13:36:23 [ 70] [ 3] [301] +13:36:23 ============================================================================ +13:36:23 Calculate Source COMM Id = 2 +13:36:23 ============================================================================ +13:36:23 + + +waiting on router queue for slot.... +13:36:23 ============================================================================ +13:36:23 Slot Id : <438> +13:36:23 Transaction Type : RESPONSE +13:36:23 Received From : +13:36:23 ============================================================================ +13:36:23 FNo. Len. Field Value +13:36:23 ============================================================================ +13:36:23 [ 1] [ 4] [0210] +13:36:23 [ 2] [ 16] [6213544002213004] +13:36:23 [ 3] [ 6] [010000] +13:36:23 [ 4] [ 12] [000050000000] +13:36:23 [ 7] [ 10] [0320133412] +13:36:23 [ 11] [ 6] [946881] +13:36:23 [ 12] [ 6] [133412] +13:36:23 [ 13] [ 4] [0320] +13:36:23 [ 15] [ 4] [0320] +13:36:23 [ 18] [ 4] [6011] +13:36:23 [ 19] [ 3] [418] +13:36:23 [ 32] [ 6] [668899] +13:36:23 [ 35] [ 32] [6213544002213004=491212011300457] +13:36:23 [ 37] [ 12] [507901912201] +13:36:23 [ 38] [ 6] [946881] +13:36:23 [ 39] [ 2] [51] +13:36:23 [ 41] [ 8] [03013004] +13:36:23 [ 49] [ 3] [418] +13:36:23 [ 54] [ 40] [0001418C0000294536000002418C000029453600] +13:36:23 ============================================================================ +13:36:23 Calculate Source COMM Id = 4 +13:36:23 ============================================================================ +13:36:23 + + +waiting on router queue for slot.... +13:36:26 ============================================================================ +13:36:26 Slot Id : <434> +13:36:26 Transaction Type : REQUEST +13:36:26 Received From : +13:36:26 ============================================================================ +13:36:26 FNo. Len. Field Value +13:36:26 ============================================================================ +13:36:26 [ 0] [ 4] [0420] +13:36:26 [ 1] [ 4] [0420] +13:36:26 [ 2] [ 16] [1808930600037402] +13:36:26 [ 3] [ 6] [010000] +13:36:26 [ 4] [ 12] [000020000000] +13:36:26 [ 6] [ 12] [000020000000] +13:36:26 [ 7] [ 10] [0320133221] +13:36:26 [ 11] [ 6] [946807] +13:36:26 [ 12] [ 6] [133221] +13:36:26 [ 13] [ 4] [0320] +13:36:26 [ 15] [ 4] [0320] +13:36:26 [ 18] [ 4] [6011] +13:36:26 [ 19] [ 3] [418] +13:36:26 [ 22] [ 3] [021] +13:36:26 [ 25] [ 2] [01] +13:36:26 [ 28] [ 9] [D00002000] +13:36:26 [ 32] [ 6] [668899] +13:36:26 [ 35] [ 27] [1808930600037402=1803500799] +13:36:26 [ 37] [ 12] [507901443605] +13:36:26 [ 41] [ 8] [03414001] +13:36:26 [ 42] [ 15] [APT ] +13:36:26 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +13:36:26 [ 49] [ 3] [418] +13:36:26 [ 52] [ 16] [B2E93E9264C507E4] +13:36:26 ============================================================================ +13:36:26 + + +waiting on router queue for slot.... +13:36:27 ============================================================================ +13:36:27 Slot Id : <427> +13:36:27 Transaction Type : REQUEST +13:36:27 Received From : +13:36:27 ============================================================================ +13:36:27 FNo. Len. Field Value +13:36:27 ============================================================================ +13:36:27 [ 1] [ 4] [0200] +13:36:27 [ 2] [ 16] [6213541000311392] +13:36:27 [ 3] [ 6] [301000] +13:36:27 [ 7] [ 10] [0320063533] +13:36:27 [ 11] [ 6] [269340] +13:36:27 [ 12] [ 6] [133533] +13:36:27 [ 13] [ 4] [0320] +13:36:27 [ 14] [ 4] [4912] +13:36:27 [ 15] [ 4] [0320] +13:36:27 [ 18] [ 4] [6011] +13:36:27 [ 19] [ 3] [418] +13:36:27 [ 22] [ 3] [021] +13:36:27 [ 25] [ 2] [01] +13:36:27 [ 32] [ 6] [180893] +13:36:27 [ 35] [ 32] [6213541000311392=491212011139735] +13:36:27 [ 37] [ 12] [507906269340] +13:36:27 [ 41] [ 8] [0301LPBX] +13:36:27 [ 42] [ 15] [999999 ] +13:36:27 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +13:36:27 [ 49] [ 3] [418] +13:36:27 [ 52] [ 16] [45C2D38AAEF31F0E] +13:36:27 ============================================================================ +13:36:27 + + +waiting on router queue for slot.... +13:36:27 Sending to : +13:36:27 ============================================================================ +13:36:27 Sending to : +13:36:27 ============================================================================ +13:36:27 ============================================================================ +13:36:27 Slot Id : <427> +13:36:27 Transaction Type : REQUEST +13:36:27 Received From : +13:36:27 ============================================================================ +13:36:27 FNo. Len. Field Value +13:36:27 ============================================================================ +13:36:27 [ 1] [ 4] [0200] +13:36:27 [ 2] [ 16] [6213541000311392] +13:36:27 [ 3] [ 6] [301000] +13:36:27 [ 7] [ 10] [0320063533] +13:36:27 [ 11] [ 6] [269340] +13:36:27 [ 12] [ 6] [133533] +13:36:27 [ 13] [ 4] [0320] +13:36:27 [ 14] [ 4] [4912] +13:36:27 [ 15] [ 4] [0320] +13:36:27 [ 18] [ 4] [6011] +13:36:27 [ 19] [ 3] [418] +13:36:27 [ 22] [ 3] [021] +13:36:27 [ 25] [ 2] [01] +13:36:27 [ 32] [ 6] [180893] +13:36:27 [ 35] [ 32] [6213541000311392=491212011139735] +13:36:27 [ 37] [ 12] [507906269340] +13:36:27 [ 41] [ 8] [0301LPBX] +13:36:27 [ 42] [ 15] [999999 ] +13:36:27 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +13:36:27 [ 49] [ 3] [418] +13:36:27 [ 52] [ 16] [45C2D38AAEF31F0E] +13:36:27 ============================================================================ +13:36:27 + + +waiting on router queue for slot.... +13:36:27 Sending to : +13:36:27 ============================================================================ +13:36:27 ============================================================================ +13:36:27 Slot Id : <427> +13:36:27 Transaction Type : REQUEST +13:36:27 Received From : +13:36:27 ============================================================================ +13:36:27 FNo. Len. Field Value +13:36:27 ============================================================================ +13:36:27 [ 1] [ 4] [0200] +13:36:27 [ 2] [ 16] [6213541000311392] +13:36:27 [ 3] [ 6] [301000] +13:36:27 [ 7] [ 10] [0320063533] +13:36:27 [ 11] [ 6] [269340] +13:36:27 [ 12] [ 6] [133533] +13:36:27 [ 13] [ 4] [0320] +13:36:27 [ 14] [ 4] [4912] +13:36:27 [ 15] [ 4] [0320] +13:36:27 [ 18] [ 4] [6011] +13:36:27 [ 19] [ 3] [418] +13:36:27 [ 22] [ 3] [021] +13:36:27 [ 25] [ 2] [01] +13:36:27 [ 32] [ 6] [180893] +13:36:27 [ 35] [ 32] [6213541000311392=491212011139735] +13:36:27 [ 37] [ 12] [507906269340] +13:36:27 [ 41] [ 8] [0301LPBX] +13:36:27 [ 42] [ 15] [999999 ] +13:36:27 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +13:36:27 [ 49] [ 3] [418] +13:36:27 [ 52] [ 16] [61CAB5882A68C81E] +13:36:27 ============================================================================ +13:36:27 + + +waiting on router queue for slot.... +13:36:27 Sending to : <0> +13:36:27 ============================================================================ +13:36:27 ============================================================================ +13:36:27 Slot Id : <427> +13:36:27 Transaction Type : RESPONSE +13:36:27 Received From : +13:36:27 ============================================================================ +13:36:27 FNo. Len. Field Value +13:36:27 ============================================================================ +13:36:27 [ 1] [ 4] [0210] +13:36:27 [ 2] [ 16] [6213541000311392] +13:36:27 [ 3] [ 6] [301000] +13:36:27 [ 4] [ 12] [000000000000] +13:36:27 [ 7] [ 10] [0320063533] +13:36:27 [ 11] [ 6] [269340] +13:36:27 [ 12] [ 6] [133533] +13:36:27 [ 13] [ 4] [0320] +13:36:27 [ 15] [ 4] [0320] +13:36:27 [ 18] [ 4] [6011] +13:36:27 [ 19] [ 3] [418] +13:36:27 [ 32] [ 6] [180893] +13:36:27 [ 35] [ 32] [6213541000311392=491212011139735] +13:36:27 [ 37] [ 12] [507906269340] +13:36:27 [ 38] [ 6] [075449] +13:36:27 [ 39] [ 2] [00] +13:36:27 [ 41] [ 8] [0301LPBX] +13:36:27 [ 49] [ 3] [418] +13:36:27 [ 54] [ 40] [1001418C0000064472271002418C000006447227] +13:36:27 ============================================================================ +13:36:27 Sending to : +13:36:27 ============================================================================ +13:36:27 + + +waiting on router queue for slot.... +13:36:28 ============================================================================ +13:36:28 Slot Id : <434> +13:36:28 Transaction Type : RESPONSE +13:36:28 Received From : +13:36:28 ============================================================================ +13:36:28 FNo. Len. Field Value +13:36:28 ============================================================================ +13:36:28 [ 1] [ 4] [0430] +13:36:28 [ 2] [ 16] [1808930600037402] +13:36:28 [ 3] [ 6] [010000] +13:36:28 [ 4] [ 12] [000020000000] +13:36:28 [ 6] [ 12] [000020000000] +13:36:28 [ 7] [ 10] [0320133221] +13:36:28 [ 11] [ 6] [946807] +13:36:28 [ 12] [ 6] [133221] +13:36:28 [ 13] [ 4] [0320] +13:36:28 [ 19] [ 3] [418] +13:36:28 [ 32] [ 6] [668899] +13:36:28 [ 35] [ 27] [1808930600037402=1803500799] +13:36:28 [ 37] [ 12] [507901443605] +13:36:28 [ 38] [ 6] [946807] +13:36:28 [ 39] [ 2] [00] +13:36:28 [ 41] [ 8] [03414001] +13:36:28 [ 49] [ 3] [418] +13:36:28 ============================================================================ +13:36:28 Successfully send the slot [434] To REVERSAL Process +13:36:28 + + +waiting on router queue for slot.... +13:36:29 ============================================================================ +13:36:29 Slot Id : <427> +13:36:29 Transaction Type : RESPONSE +13:36:29 Received From : +13:36:29 ============================================================================ +13:36:29 FNo. Len. Field Value +13:36:29 ============================================================================ +13:36:29 [ 1] [ 4] [0210] +13:36:29 [ 2] [ 16] [6213541000311392] +13:36:29 [ 3] [ 6] [301000] +13:36:29 [ 4] [ 12] [000000000000] +13:36:29 [ 7] [ 10] [0320063533] +13:36:29 [ 11] [ 6] [269340] +13:36:29 [ 12] [ 6] [133533] +13:36:29 [ 13] [ 4] [0320] +13:36:29 [ 15] [ 4] [0320] +13:36:29 [ 18] [ 4] [6011] +13:36:29 [ 19] [ 3] [418] +13:36:29 [ 32] [ 6] [180893] +13:36:29 [ 35] [ 32] [6213541000311392=491212011139735] +13:36:29 [ 37] [ 12] [507906269340] +13:36:29 [ 38] [ 6] [075449] +13:36:29 [ 39] [ 2] [00] +13:36:29 [ 41] [ 8] [0301LPBX] +13:36:29 [ 49] [ 3] [418] +13:36:29 [ 54] [ 40] [1001418C0000064472271002418C000006447227] +13:36:29 ============================================================================ +13:36:29 Calculate Source COMM Id = 2 +13:36:29 ============================================================================ +13:36:29 + + +waiting on router queue for slot.... +13:36:29 ============================================================================ +13:36:29 Slot Id : <451> +13:36:29 Transaction Type : REQUEST +13:36:29 Received From : +13:36:29 ============================================================================ +13:36:29 FNo. Len. Field Value +13:36:29 ============================================================================ +13:36:29 [ 1] [ 4] [0200] +13:36:29 [ 2] [ 16] [6213544001274247] +13:36:29 [ 3] [ 6] [301000] +13:36:29 [ 4] [ 12] [000000000000] +13:36:29 [ 7] [ 10] [0320133650] +13:36:29 [ 11] [ 6] [206562] +13:36:29 [ 12] [ 6] [133045] +13:36:29 [ 13] [ 4] [0320] +13:36:29 [ 14] [ 4] [4912] +13:36:29 [ 15] [ 4] [0320] +13:36:29 [ 18] [ 4] [6011] +13:36:29 [ 19] [ 3] [418] +13:36:29 [ 22] [ 3] [021] +13:36:29 [ 25] [ 2] [01] +13:36:29 [ 28] [ 9] [D00000000] +13:36:29 [ 32] [ 6] [198901] +13:36:29 [ 35] [ 32] [6213544001274247=491212017424765] +13:36:29 [ 37] [ 12] [507913206562] +13:36:29 [ 41] [ 8] [11529001] +13:36:29 [ 42] [ 15] [000000041152901] +13:36:29 [ 43] [ 40] [JDB ATM OUDOMXAY UNIT VN ] +13:36:29 [ 49] [ 3] [418] +13:36:29 [ 52] [ 16] [314F1212DE39A56C] +13:36:29 ============================================================================ +13:36:29 + + +waiting on router queue for slot.... +13:36:29 Sending to : +13:36:29 ============================================================================ +13:36:29 Sending to : +13:36:29 ============================================================================ +13:36:29 ============================================================================ +13:36:29 Slot Id : <451> +13:36:29 Transaction Type : REQUEST +13:36:29 Received From : +13:36:29 ============================================================================ +13:36:29 FNo. Len. Field Value +13:36:29 ============================================================================ +13:36:29 [ 1] [ 4] [0200] +13:36:29 [ 2] [ 16] [6213544001274247] +13:36:29 [ 3] [ 6] [301000] +13:36:29 [ 4] [ 12] [000000000000] +13:36:29 [ 7] [ 10] [0320133650] +13:36:29 [ 11] [ 6] [206562] +13:36:29 [ 12] [ 6] [133045] +13:36:29 [ 13] [ 4] [0320] +13:36:29 [ 14] [ 4] [4912] +13:36:29 [ 15] [ 4] [0320] +13:36:29 [ 18] [ 4] [6011] +13:36:29 [ 19] [ 3] [418] +13:36:29 [ 22] [ 3] [021] +13:36:29 [ 25] [ 2] [01] +13:36:29 [ 28] [ 9] [D00000000] +13:36:29 [ 32] [ 6] [198901] +13:36:29 [ 35] [ 32] [6213544001274247=491212017424765] +13:36:29 [ 37] [ 12] [507913206562] +13:36:29 [ 41] [ 8] [11529001] +13:36:29 [ 42] [ 15] [000000041152901] +13:36:29 [ 43] [ 40] [JDB ATM OUDOMXAY UNIT VN ] +13:36:29 [ 49] [ 3] [418] +13:36:29 [ 52] [ 16] [314F1212DE39A56C] +13:36:29 ============================================================================ +13:36:29 + + +waiting on router queue for slot.... +13:36:29 Sending to : +13:36:29 ============================================================================ +13:36:29 ============================================================================ +13:36:29 Slot Id : <451> +13:36:29 Transaction Type : REQUEST +13:36:29 Received From : +13:36:29 ============================================================================ +13:36:29 FNo. Len. Field Value +13:36:29 ============================================================================ +13:36:29 [ 1] [ 4] [0200] +13:36:29 [ 2] [ 16] [6213544001274247] +13:36:29 [ 3] [ 6] [301000] +13:36:29 [ 4] [ 12] [000000000000] +13:36:29 [ 7] [ 10] [0320133650] +13:36:29 [ 11] [ 6] [206562] +13:36:29 [ 12] [ 6] [133045] +13:36:29 [ 13] [ 4] [0320] +13:36:29 [ 14] [ 4] [4912] +13:36:29 [ 15] [ 4] [0320] +13:36:29 [ 18] [ 4] [6011] +13:36:29 [ 19] [ 3] [418] +13:36:29 [ 22] [ 3] [021] +13:36:29 [ 25] [ 2] [01] +13:36:29 [ 28] [ 9] [D00000000] +13:36:29 [ 32] [ 6] [198901] +13:36:29 [ 35] [ 32] [6213544001274247=491212017424765] +13:36:29 [ 37] [ 12] [507913206562] +13:36:29 [ 41] [ 8] [11529001] +13:36:29 [ 42] [ 15] [000000041152901] +13:36:29 [ 43] [ 40] [JDB ATM OUDOMXAY UNIT VN ] +13:36:29 [ 49] [ 3] [418] +13:36:29 [ 52] [ 16] [8E3CCA1C473C5BB0] +13:36:29 ============================================================================ +13:36:29 + + +waiting on router queue for slot.... +13:36:29 Sending to : <0> +13:36:29 ============================================================================ +13:36:31 ============================================================================ +13:36:31 Slot Id : <451> +13:36:31 Transaction Type : RESPONSE +13:36:31 Received From : +13:36:31 ============================================================================ +13:36:31 FNo. Len. Field Value +13:36:31 ============================================================================ +13:36:31 [ 1] [ 4] [0210] +13:36:31 [ 2] [ 16] [6213544001274247] +13:36:31 [ 3] [ 6] [301000] +13:36:31 [ 4] [ 12] [000000000000] +13:36:31 [ 7] [ 10] [0320133650] +13:36:31 [ 11] [ 6] [206562] +13:36:31 [ 12] [ 6] [133045] +13:36:31 [ 13] [ 4] [0320] +13:36:31 [ 15] [ 4] [0320] +13:36:31 [ 18] [ 4] [6011] +13:36:31 [ 19] [ 3] [418] +13:36:31 [ 32] [ 6] [198901] +13:36:31 [ 35] [ 32] [6213544001274247=491212017424765] +13:36:31 [ 37] [ 12] [507913206562] +13:36:31 [ 38] [ 6] [300574] +13:36:31 [ 39] [ 2] [00] +13:36:31 [ 41] [ 8] [11529001] +13:36:31 [ 49] [ 3] [418] +13:36:31 [ 54] [ 40] [1001418C0002056388331002418C000205638833] +13:36:31 ============================================================================ +13:36:31 Sending to : +13:36:31 ============================================================================ +13:36:31 + + +waiting on router queue for slot.... +13:36:32 ============================================================================ +13:36:32 Slot Id : <451> +13:36:32 Transaction Type : RESPONSE +13:36:32 Received From : +13:36:32 ============================================================================ +13:36:32 FNo. Len. Field Value +13:36:32 ============================================================================ +13:36:32 [ 1] [ 4] [0210] +13:36:32 [ 2] [ 16] [6213544001274247] +13:36:32 [ 3] [ 6] [301000] +13:36:32 [ 4] [ 12] [000000000000] +13:36:32 [ 7] [ 10] [0320133650] +13:36:32 [ 11] [ 6] [206562] +13:36:32 [ 12] [ 6] [133045] +13:36:32 [ 13] [ 4] [0320] +13:36:32 [ 15] [ 4] [0320] +13:36:32 [ 18] [ 4] [6011] +13:36:32 [ 19] [ 3] [418] +13:36:32 [ 32] [ 6] [198901] +13:36:32 [ 35] [ 32] [6213544001274247=491212017424765] +13:36:32 [ 37] [ 12] [507913206562] +13:36:32 [ 38] [ 6] [300574] +13:36:32 [ 39] [ 2] [00] +13:36:32 [ 41] [ 8] [11529001] +13:36:32 [ 49] [ 3] [418] +13:36:32 [ 54] [ 40] [1001418C0002056388331002418C000205638833] +13:36:32 ============================================================================ +13:36:32 Calculate Source COMM Id = 5 +13:36:32 ============================================================================ +13:36:32 + + +waiting on router queue for slot.... +13:36:37 ============================================================================ +13:36:37 Slot Id : <428> +13:36:37 Transaction Type : REQUEST +13:36:37 Received From : +13:36:37 ============================================================================ +13:36:37 FNo. Len. Field Value +13:36:37 ============================================================================ +13:36:37 [ 1] [ 4] [0200] +13:36:37 [ 2] [ 16] [6213544002213004] +13:36:37 [ 3] [ 6] [301000] +13:36:37 [ 4] [ 12] [000000000000] +13:36:37 [ 7] [ 10] [0320133427] +13:36:37 [ 11] [ 6] [946890] +13:36:37 [ 12] [ 6] [133427] +13:36:37 [ 13] [ 4] [0320] +13:36:37 [ 15] [ 4] [0320] +13:36:37 [ 18] [ 4] [6011] +13:36:37 [ 19] [ 3] [418] +13:36:37 [ 22] [ 3] [021] +13:36:37 [ 25] [ 2] [01] +13:36:37 [ 28] [ 9] [D00000000] +13:36:37 [ 32] [ 6] [668899] +13:36:37 [ 35] [ 32] [6213544002213004=491212011300457] +13:36:37 [ 37] [ 12] [507901912202] +13:36:37 [ 41] [ 8] [03013004] +13:36:37 [ 42] [ 15] [APT ] +13:36:37 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:36:37 [ 49] [ 3] [418] +13:36:37 [ 52] [ 16] [F42292859D835504] +13:36:37 ============================================================================ +13:36:37 + + +waiting on router queue for slot.... +13:36:37 Sending to : +13:36:37 ============================================================================ +13:36:37 Sending to : +13:36:37 ============================================================================ +13:36:37 ============================================================================ +13:36:37 Slot Id : <428> +13:36:37 Transaction Type : REQUEST +13:36:37 Received From : +13:36:37 ============================================================================ +13:36:37 FNo. Len. Field Value +13:36:37 ============================================================================ +13:36:37 [ 1] [ 4] [0200] +13:36:37 [ 2] [ 16] [6213544002213004] +13:36:37 [ 3] [ 6] [301000] +13:36:37 [ 4] [ 12] [000000000000] +13:36:37 [ 7] [ 10] [0320133427] +13:36:37 [ 11] [ 6] [946890] +13:36:37 [ 12] [ 6] [133427] +13:36:37 [ 13] [ 4] [0320] +13:36:37 [ 15] [ 4] [0320] +13:36:37 [ 18] [ 4] [6011] +13:36:37 [ 19] [ 3] [418] +13:36:37 [ 22] [ 3] [021] +13:36:37 [ 25] [ 2] [01] +13:36:37 [ 28] [ 9] [D00000000] +13:36:37 [ 32] [ 6] [668899] +13:36:37 [ 35] [ 32] [6213544002213004=491212011300457] +13:36:37 [ 37] [ 12] [507901912202] +13:36:37 [ 41] [ 8] [03013004] +13:36:37 [ 42] [ 15] [APT ] +13:36:37 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:36:37 [ 49] [ 3] [418] +13:36:37 [ 52] [ 16] [F42292859D835504] +13:36:37 ============================================================================ +13:36:37 + + +waiting on router queue for slot.... +13:36:37 Sending to : +13:36:37 ============================================================================ +13:36:37 ============================================================================ +13:36:37 Slot Id : <428> +13:36:37 Transaction Type : REQUEST +13:36:37 Received From : +13:36:37 ============================================================================ +13:36:37 FNo. Len. Field Value +13:36:37 ============================================================================ +13:36:37 [ 1] [ 4] [0200] +13:36:37 [ 2] [ 16] [6213544002213004] +13:36:37 [ 3] [ 6] [301000] +13:36:37 [ 4] [ 12] [000000000000] +13:36:37 [ 7] [ 10] [0320133427] +13:36:37 [ 11] [ 6] [946890] +13:36:37 [ 12] [ 6] [133427] +13:36:37 [ 13] [ 4] [0320] +13:36:37 [ 15] [ 4] [0320] +13:36:37 [ 18] [ 4] [6011] +13:36:37 [ 19] [ 3] [418] +13:36:37 [ 22] [ 3] [021] +13:36:37 [ 25] [ 2] [01] +13:36:37 [ 28] [ 9] [D00000000] +13:36:37 [ 32] [ 6] [668899] +13:36:37 [ 35] [ 32] [6213544002213004=491212011300457] +13:36:37 [ 37] [ 12] [507901912202] +13:36:37 [ 41] [ 8] [03013004] +13:36:37 [ 42] [ 15] [APT ] +13:36:37 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:36:37 [ 49] [ 3] [418] +13:36:37 [ 52] [ 16] [CABA6F28B0929160] +13:36:37 ============================================================================ +13:36:37 + + +waiting on router queue for slot.... +13:36:37 Sending to : <0> +13:36:37 ============================================================================ +13:36:37 ============================================================================ +13:36:37 Slot Id : <428> +13:36:37 Transaction Type : RESPONSE +13:36:37 Received From : +13:36:37 ============================================================================ +13:36:37 FNo. Len. Field Value +13:36:37 ============================================================================ +13:36:37 [ 1] [ 4] [0210] +13:36:37 [ 2] [ 16] [6213544002213004] +13:36:37 [ 3] [ 6] [301000] +13:36:37 [ 4] [ 12] [000000000000] +13:36:37 [ 7] [ 10] [0320133427] +13:36:37 [ 11] [ 6] [946890] +13:36:37 [ 12] [ 6] [133427] +13:36:37 [ 13] [ 4] [0320] +13:36:37 [ 15] [ 4] [0320] +13:36:37 [ 18] [ 4] [6011] +13:36:37 [ 19] [ 3] [418] +13:36:37 [ 32] [ 6] [668899] +13:36:37 [ 35] [ 32] [6213544002213004=491212011300457] +13:36:37 [ 37] [ 12] [507901912202] +13:36:37 [ 38] [ 6] [124308] +13:36:37 [ 39] [ 2] [00] +13:36:37 [ 41] [ 8] [03013004] +13:36:37 [ 49] [ 3] [418] +13:36:37 [ 54] [ 40] [1001418C0000294536001002418C000029453600] +13:36:37 ============================================================================ +13:36:37 Sending to : +13:36:37 ============================================================================ +13:36:37 + + +waiting on router queue for slot.... +13:36:39 ============================================================================ +13:36:39 Slot Id : <428> +13:36:39 Transaction Type : RESPONSE +13:36:39 Received From : +13:36:39 ============================================================================ +13:36:39 FNo. Len. Field Value +13:36:39 ============================================================================ +13:36:39 [ 1] [ 4] [0210] +13:36:39 [ 2] [ 16] [6213544002213004] +13:36:39 [ 3] [ 6] [301000] +13:36:39 [ 4] [ 12] [000000000000] +13:36:39 [ 7] [ 10] [0320133427] +13:36:39 [ 11] [ 6] [946890] +13:36:39 [ 12] [ 6] [133427] +13:36:39 [ 13] [ 4] [0320] +13:36:39 [ 15] [ 4] [0320] +13:36:39 [ 18] [ 4] [6011] +13:36:39 [ 19] [ 3] [418] +13:36:39 [ 32] [ 6] [668899] +13:36:39 [ 35] [ 32] [6213544002213004=491212011300457] +13:36:39 [ 37] [ 12] [507901912202] +13:36:39 [ 38] [ 6] [124308] +13:36:39 [ 39] [ 2] [00] +13:36:39 [ 41] [ 8] [03013004] +13:36:39 [ 49] [ 3] [418] +13:36:39 [ 54] [ 40] [1001418C0000294536001002418C000029453600] +13:36:39 ============================================================================ +13:36:39 Calculate Source COMM Id = 4 +13:36:39 ============================================================================ +13:36:39 + + +waiting on router queue for slot.... +13:36:43 ============================================================================ +13:36:43 Slot Id : <462> +13:36:43 Transaction Type : REQUEST +13:36:43 Received From : +13:36:43 ============================================================================ +13:36:43 FNo. Len. Field Value +13:36:43 ============================================================================ +13:36:43 [ 1] [ 4] [0800] +13:36:43 [ 7] [ 10] [0320063550] +13:36:43 [ 11] [ 6] [156590] +13:36:43 [ 70] [ 3] [301] +13:36:43 ============================================================================ +13:36:43 + + +waiting on router queue for slot.... +13:36:43 Sending to : +13:36:43 ============================================================================ +13:36:43 ============================================================================ +13:36:43 Slot Id : <462> +13:36:43 Transaction Type : RESPONSE +13:36:43 Received From : +13:36:43 ============================================================================ +13:36:43 FNo. Len. Field Value +13:36:43 ============================================================================ +13:36:43 [ 1] [ 4] [0810] +13:36:43 [ 7] [ 10] [0320063550] +13:36:43 [ 11] [ 6] [156590] +13:36:43 [ 39] [ 2] [00] +13:36:43 [ 70] [ 3] [301] +13:36:43 ============================================================================ +13:36:43 Calculate Source COMM Id = 2 +13:36:43 ============================================================================ +13:36:43 + + +waiting on router queue for slot.... +13:36:55 ============================================================================ +13:36:55 Slot Id : <431> +13:36:55 Transaction Type : REQUEST +13:36:55 Received From : +13:36:55 ============================================================================ +13:36:55 FNo. Len. Field Value +13:36:55 ============================================================================ +13:36:55 [ 1] [ 4] [0800] +13:36:55 [ 7] [ 10] [0320063602] +13:36:55 [ 11] [ 6] [156591] +13:36:55 [ 70] [ 3] [301] +13:36:55 ============================================================================ +13:36:55 + + +waiting on router queue for slot.... +13:36:55 Sending to : +13:36:55 ============================================================================ +13:36:55 ============================================================================ +13:36:55 Slot Id : <431> +13:36:55 Transaction Type : RESPONSE +13:36:55 Received From : +13:36:55 ============================================================================ +13:36:55 FNo. Len. Field Value +13:36:55 ============================================================================ +13:36:55 [ 1] [ 4] [0810] +13:36:55 [ 7] [ 10] [0320063602] +13:36:55 [ 11] [ 6] [156591] +13:36:55 [ 39] [ 2] [00] +13:36:55 [ 70] [ 3] [301] +13:36:55 ============================================================================ +13:36:55 Calculate Source COMM Id = 2 +13:36:55 ============================================================================ +13:36:55 + + +waiting on router queue for slot.... +13:36:58 ============================================================================ +13:36:58 Slot Id : <457> +13:36:58 Transaction Type : REQUEST +13:36:58 Received From : +13:36:58 ============================================================================ +13:36:58 FNo. Len. Field Value +13:36:58 ============================================================================ +13:36:58 [ 1] [ 4] [0800] +13:36:58 [ 2] [ 5] [02531] +13:36:58 [ 3] [ 6] [579138] +13:36:58 [ 7] [ 10] [0320063658] +13:36:58 [ 11] [ 6] [807202] +13:36:58 [ 15] [ 10] [0320063658] +13:36:58 [ 37] [ 11] [57913807202] +13:36:58 [ 70] [ 3] [001] +13:36:58 ============================================================================ +13:36:58 + + +waiting on router queue for slot.... +13:36:58 ============================================================================ +13:36:58 Slot Id : <457> +13:36:58 Transaction Type : RESPONSE +13:36:58 Received From : +13:36:58 ============================================================================ +13:36:58 FNo. Len. Field Value +13:36:58 ============================================================================ +13:36:58 [ 1] [ 4] [0810] +13:36:58 [ 7] [ 10] [0320063658] +13:36:58 [ 11] [ 6] [807202] +13:36:58 [ 15] [ 4] [0320] +13:36:58 [ 37] [ 12] [57913807202] +13:36:58 [ 39] [ 2] [00] +13:36:58 [ 70] [ 3] [001] +13:36:58 ============================================================================ +13:36:58 Sending to : +13:36:58 ============================================================================ +13:36:58 + + +waiting on router queue for slot.... +13:37:00 ============================================================================ +13:37:00 Slot Id : <421> +13:37:00 Transaction Type : REQUEST +13:37:00 Received From : +13:37:00 ============================================================================ +13:37:00 FNo. Len. Field Value +13:37:00 ============================================================================ +13:37:00 [ 1] [ 4] [0200] +13:37:00 [ 2] [ 16] [6688990040124321] +13:37:00 [ 3] [ 6] [010000] +13:37:00 [ 4] [ 12] [000100000000] +13:37:00 [ 7] [ 10] [0320133655] +13:37:00 [ 11] [ 6] [759396] +13:37:00 [ 12] [ 6] [133655] +13:37:00 [ 13] [ 4] [0320] +13:37:00 [ 15] [ 4] [0320] +13:37:00 [ 18] [ 4] [6011] +13:37:00 [ 22] [ 3] [900] +13:37:00 [ 25] [ 2] [02] +13:37:00 [ 28] [ 9] [D00002000] +13:37:00 [ 32] [ 6] [621354] +13:37:00 [ 35] [ 37] [6688990040124321=98031261578887400000] +13:37:00 [ 37] [ 12] [507904698911] +13:37:00 [ 41] [ 8] [18000800] +13:37:00 [ 42] [ 15] [NATIVE ] +13:37:00 [ 43] [ 40] [Bountai District Bountai LAO] +13:37:00 [ 49] [ 3] [418] +13:37:00 [ 52] [ 16] [62C89BFDA96B44E8] +13:37:00 ============================================================================ +13:37:00 + + +waiting on router queue for slot.... +13:37:00 Sending to : +13:37:00 ============================================================================ +13:37:00 Sending to : +13:37:00 ============================================================================ +13:37:00 ============================================================================ +13:37:00 Slot Id : <421> +13:37:00 Transaction Type : REQUEST +13:37:00 Received From : +13:37:00 ============================================================================ +13:37:00 FNo. Len. Field Value +13:37:00 ============================================================================ +13:37:00 [ 1] [ 4] [0200] +13:37:00 [ 2] [ 16] [6688990040124321] +13:37:00 [ 3] [ 6] [010000] +13:37:00 [ 4] [ 12] [000100000000] +13:37:00 [ 7] [ 10] [0320133655] +13:37:00 [ 11] [ 6] [759396] +13:37:00 [ 12] [ 6] [133655] +13:37:00 [ 13] [ 4] [0320] +13:37:00 [ 15] [ 4] [0320] +13:37:00 [ 18] [ 4] [6011] +13:37:00 [ 22] [ 3] [900] +13:37:00 [ 25] [ 2] [02] +13:37:00 [ 28] [ 9] [D00002000] +13:37:00 [ 32] [ 6] [621354] +13:37:00 [ 35] [ 37] [6688990040124321=98031261578887400000] +13:37:00 [ 37] [ 12] [507904698911] +13:37:00 [ 41] [ 8] [18000800] +13:37:00 [ 42] [ 15] [NATIVE ] +13:37:00 [ 43] [ 40] [Bountai District Bountai LAO] +13:37:00 [ 49] [ 3] [418] +13:37:00 [ 52] [ 16] [62C89BFDA96B44E8] +13:37:00 ============================================================================ +13:37:00 + + +waiting on router queue for slot.... +13:37:00 Sending to : +13:37:00 ============================================================================ +13:37:00 ============================================================================ +13:37:00 Slot Id : <421> +13:37:00 Transaction Type : REQUEST +13:37:00 Received From : +13:37:00 ============================================================================ +13:37:00 FNo. Len. Field Value +13:37:00 ============================================================================ +13:37:00 [ 1] [ 4] [0200] +13:37:00 [ 2] [ 16] [6688990040124321] +13:37:00 [ 3] [ 6] [010000] +13:37:00 [ 4] [ 12] [000100000000] +13:37:00 [ 7] [ 10] [0320133655] +13:37:00 [ 11] [ 6] [759396] +13:37:00 [ 12] [ 6] [133655] +13:37:00 [ 13] [ 4] [0320] +13:37:00 [ 15] [ 4] [0320] +13:37:00 [ 18] [ 4] [6011] +13:37:00 [ 22] [ 3] [900] +13:37:00 [ 25] [ 2] [02] +13:37:00 [ 28] [ 9] [D00002000] +13:37:00 [ 32] [ 6] [621354] +13:37:00 [ 35] [ 37] [6688990040124321=98031261578887400000] +13:37:00 [ 37] [ 12] [507904698911] +13:37:00 [ 41] [ 8] [18000800] +13:37:00 [ 42] [ 15] [NATIVE ] +13:37:00 [ 43] [ 40] [Bountai District Bountai LAO] +13:37:00 [ 49] [ 3] [418] +13:37:00 [ 52] [ 16] [358A976E77E610D5] +13:37:00 ============================================================================ +13:37:00 + + +waiting on router queue for slot.... +13:37:00 Sending to : <4> +13:37:00 ============================================================================ +13:37:01 ============================================================================ +13:37:01 Slot Id : <422> +13:37:01 Transaction Type : REQUEST +13:37:01 Received From : +13:37:01 ============================================================================ +13:37:01 FNo. Len. Field Value +13:37:01 ============================================================================ +13:37:01 [ 1] [ 4] [0200] +13:37:01 [ 2] [ 16] [6213544001274247] +13:37:01 [ 3] [ 6] [011000] +13:37:01 [ 4] [ 12] [000100000000] +13:37:01 [ 7] [ 10] [0320133722] +13:37:01 [ 11] [ 6] [206566] +13:37:01 [ 12] [ 6] [133117] +13:37:01 [ 13] [ 4] [0320] +13:37:01 [ 14] [ 4] [4912] +13:37:01 [ 15] [ 4] [0320] +13:37:01 [ 18] [ 4] [6011] +13:37:01 [ 19] [ 3] [418] +13:37:01 [ 22] [ 3] [021] +13:37:01 [ 25] [ 2] [01] +13:37:01 [ 28] [ 9] [D00002000] +13:37:01 [ 32] [ 6] [198901] +13:37:01 [ 35] [ 32] [6213544001274247=491212017424765] +13:37:01 [ 37] [ 12] [507913206566] +13:37:01 [ 41] [ 8] [11529001] +13:37:01 [ 42] [ 15] [000000041152901] +13:37:01 [ 43] [ 40] [JDB ATM OUDOMXAY UNIT VN ] +13:37:01 [ 49] [ 3] [418] +13:37:01 [ 52] [ 16] [314F1212DE39A56C] +13:37:01 ============================================================================ +13:37:01 + + +waiting on router queue for slot.... +13:37:01 Sending to : +13:37:01 ============================================================================ +13:37:01 Sending to : +13:37:01 ============================================================================ +13:37:01 ============================================================================ +13:37:01 Slot Id : <421> +13:37:01 Transaction Type : RESPONSE +13:37:01 Received From : +13:37:01 ============================================================================ +13:37:01 FNo. Len. Field Value +13:37:01 ============================================================================ +13:37:01 [ 1] [ 4] [0210] +13:37:01 [ 2] [ 16] [6688990040124321] +13:37:01 [ 3] [ 6] [010000] +13:37:01 [ 4] [ 12] [000100000000] +13:37:01 [ 11] [ 6] [759396] +13:37:01 [ 12] [ 6] [133655] +13:37:01 [ 15] [ 4] [0320] +13:37:01 [ 18] [ 4] [6011] +13:37:01 [ 32] [ 6] [621354] +13:37:01 [ 35] [ 37] [6688990040124321=98031261578887400000] +13:37:01 [ 37] [ 12] [507904698911] +13:37:01 [ 38] [ 6] [038717] +13:37:01 [ 39] [ 2] [00] +13:37:01 [ 41] [ 8] [18000800] +13:37:01 [ 49] [ 3] [418] +13:37:01 [ 54] [ 20] [0002418C000048852478] +13:37:01 ============================================================================ +13:37:01 Sending to : +13:37:01 ============================================================================ +13:37:01 + + +waiting on router queue for slot.... +13:37:01 ============================================================================ +13:37:01 Slot Id : <422> +13:37:01 Transaction Type : REQUEST +13:37:01 Received From : +13:37:01 ============================================================================ +13:37:01 FNo. Len. Field Value +13:37:01 ============================================================================ +13:37:01 [ 1] [ 4] [0200] +13:37:01 [ 2] [ 16] [6213544001274247] +13:37:01 [ 3] [ 6] [011000] +13:37:01 [ 4] [ 12] [000100000000] +13:37:01 [ 7] [ 10] [0320133722] +13:37:01 [ 11] [ 6] [206566] +13:37:01 [ 12] [ 6] [133117] +13:37:01 [ 13] [ 4] [0320] +13:37:01 [ 14] [ 4] [4912] +13:37:01 [ 15] [ 4] [0320] +13:37:01 [ 18] [ 4] [6011] +13:37:01 [ 19] [ 3] [418] +13:37:01 [ 22] [ 3] [021] +13:37:01 [ 25] [ 2] [01] +13:37:01 [ 28] [ 9] [D00002000] +13:37:01 [ 32] [ 6] [198901] +13:37:01 [ 35] [ 32] [6213544001274247=491212017424765] +13:37:01 [ 37] [ 12] [507913206566] +13:37:01 [ 41] [ 8] [11529001] +13:37:01 [ 42] [ 15] [000000041152901] +13:37:01 [ 43] [ 40] [JDB ATM OUDOMXAY UNIT VN ] +13:37:01 [ 49] [ 3] [418] +13:37:01 [ 52] [ 16] [314F1212DE39A56C] +13:37:01 ============================================================================ +13:37:01 + + +waiting on router queue for slot.... +13:37:01 Sending to : +13:37:01 ============================================================================ +13:37:01 ============================================================================ +13:37:01 Slot Id : <422> +13:37:01 Transaction Type : REQUEST +13:37:01 Received From : +13:37:01 ============================================================================ +13:37:01 FNo. Len. Field Value +13:37:01 ============================================================================ +13:37:01 [ 1] [ 4] [0200] +13:37:01 [ 2] [ 16] [6213544001274247] +13:37:01 [ 3] [ 6] [011000] +13:37:01 [ 4] [ 12] [000100000000] +13:37:01 [ 7] [ 10] [0320133722] +13:37:01 [ 11] [ 6] [206566] +13:37:01 [ 12] [ 6] [133117] +13:37:01 [ 13] [ 4] [0320] +13:37:01 [ 14] [ 4] [4912] +13:37:01 [ 15] [ 4] [0320] +13:37:01 [ 18] [ 4] [6011] +13:37:01 [ 19] [ 3] [418] +13:37:01 [ 22] [ 3] [021] +13:37:01 [ 25] [ 2] [01] +13:37:01 [ 28] [ 9] [D00002000] +13:37:01 [ 32] [ 6] [198901] +13:37:01 [ 35] [ 32] [6213544001274247=491212017424765] +13:37:01 [ 37] [ 12] [507913206566] +13:37:01 [ 41] [ 8] [11529001] +13:37:01 [ 42] [ 15] [000000041152901] +13:37:01 [ 43] [ 40] [JDB ATM OUDOMXAY UNIT VN ] +13:37:01 [ 49] [ 3] [418] +13:37:01 [ 52] [ 16] [8E3CCA1C473C5BB0] +13:37:01 ============================================================================ +13:37:01 + + +waiting on router queue for slot.... +13:37:01 Sending to : <0> +13:37:01 ============================================================================ +13:37:02 ============================================================================ +13:37:02 Slot Id : <422> +13:37:02 Transaction Type : RESPONSE +13:37:02 Received From : +13:37:02 ============================================================================ +13:37:02 FNo. Len. Field Value +13:37:02 ============================================================================ +13:37:02 [ 1] [ 4] [0210] +13:37:02 [ 2] [ 16] [6213544001274247] +13:37:02 [ 3] [ 6] [011000] +13:37:02 [ 4] [ 12] [000100000000] +13:37:02 [ 7] [ 10] [0320133722] +13:37:02 [ 11] [ 6] [206566] +13:37:02 [ 12] [ 6] [133117] +13:37:02 [ 13] [ 4] [0320] +13:37:02 [ 15] [ 4] [0320] +13:37:02 [ 18] [ 4] [6011] +13:37:02 [ 19] [ 3] [418] +13:37:02 [ 32] [ 6] [198901] +13:37:02 [ 35] [ 32] [6213544001274247=491212017424765] +13:37:02 [ 37] [ 12] [507913206566] +13:37:02 [ 38] [ 6] [197008] +13:37:02 [ 39] [ 2] [00] +13:37:02 [ 41] [ 8] [11529001] +13:37:02 [ 49] [ 3] [418] +13:37:02 [ 54] [ 40] [1001418C0001054388331002418C000105438833] +13:37:02 ============================================================================ +13:37:02 Sending to : +13:37:02 ============================================================================ +13:37:02 + + +waiting on router queue for slot.... +13:37:03 ============================================================================ +13:37:03 Slot Id : <421> +13:37:03 Transaction Type : RESPONSE +13:37:03 Received From : +13:37:03 ============================================================================ +13:37:03 FNo. Len. Field Value +13:37:03 ============================================================================ +13:37:03 [ 1] [ 4] [0210] +13:37:03 [ 2] [ 16] [6688990040124321] +13:37:03 [ 3] [ 6] [010000] +13:37:03 [ 4] [ 12] [000100000000] +13:37:03 [ 11] [ 6] [759396] +13:37:03 [ 12] [ 6] [133655] +13:37:03 [ 15] [ 4] [0320] +13:37:03 [ 18] [ 4] [6011] +13:37:03 [ 32] [ 6] [621354] +13:37:03 [ 35] [ 37] [6688990040124321=98031261578887400000] +13:37:03 [ 37] [ 12] [507904698911] +13:37:03 [ 38] [ 6] [038717] +13:37:03 [ 39] [ 2] [00] +13:37:03 [ 41] [ 8] [18000800] +13:37:03 [ 49] [ 3] [418] +13:37:03 [ 54] [ 20] [0002418C000048852478] +13:37:03 ============================================================================ +13:37:03 Calculate Source COMM Id = 0 +13:37:03 ============================================================================ +13:37:03 + + +waiting on router queue for slot.... +13:37:04 ============================================================================ +13:37:04 Slot Id : <422> +13:37:04 Transaction Type : RESPONSE +13:37:04 Received From : +13:37:04 ============================================================================ +13:37:04 FNo. Len. Field Value +13:37:04 ============================================================================ +13:37:04 [ 1] [ 4] [0210] +13:37:04 [ 2] [ 16] [6213544001274247] +13:37:04 [ 3] [ 6] [011000] +13:37:04 [ 4] [ 12] [000100000000] +13:37:04 [ 7] [ 10] [0320133722] +13:37:04 [ 11] [ 6] [206566] +13:37:04 [ 12] [ 6] [133117] +13:37:04 [ 13] [ 4] [0320] +13:37:04 [ 15] [ 4] [0320] +13:37:04 [ 18] [ 4] [6011] +13:37:04 [ 19] [ 3] [418] +13:37:04 [ 32] [ 6] [198901] +13:37:04 [ 35] [ 32] [6213544001274247=491212017424765] +13:37:04 [ 37] [ 12] [507913206566] +13:37:04 [ 38] [ 6] [197008] +13:37:04 [ 39] [ 2] [00] +13:37:04 [ 41] [ 8] [11529001] +13:37:04 [ 49] [ 3] [418] +13:37:04 [ 54] [ 40] [1001418C0001054388331002418C000105438833] +13:37:04 ============================================================================ +13:37:04 Calculate Source COMM Id = 5 +13:37:04 ============================================================================ +13:37:04 + + +waiting on router queue for slot.... +13:37:06 ============================================================================ +13:37:06 Slot Id : <426> +13:37:06 Transaction Type : REQUEST +13:37:06 Received From : +13:37:06 ============================================================================ +13:37:06 FNo. Len. Field Value +13:37:06 ============================================================================ +13:37:06 [ 1] [ 4] [0800] +13:37:06 [ 7] [ 10] [0320063613] +13:37:06 [ 11] [ 6] [156592] +13:37:06 [ 70] [ 3] [301] +13:37:06 ============================================================================ +13:37:06 + + +waiting on router queue for slot.... +13:37:06 Sending to : +13:37:06 ============================================================================ +13:37:06 ============================================================================ +13:37:06 Slot Id : <426> +13:37:06 Transaction Type : RESPONSE +13:37:06 Received From : +13:37:06 ============================================================================ +13:37:06 FNo. Len. Field Value +13:37:06 ============================================================================ +13:37:06 [ 1] [ 4] [0810] +13:37:06 [ 7] [ 10] [0320063613] +13:37:06 [ 11] [ 6] [156592] +13:37:06 [ 39] [ 2] [00] +13:37:06 [ 70] [ 3] [301] +13:37:06 ============================================================================ +13:37:06 Calculate Source COMM Id = 2 +13:37:06 ============================================================================ +13:37:06 + + +waiting on router queue for slot.... +13:37:07 ============================================================================ +13:37:07 Slot Id : <465> +13:37:07 Transaction Type : REQUEST +13:37:07 Received From : +13:37:07 ============================================================================ +13:37:07 FNo. Len. Field Value +13:37:07 ============================================================================ +13:37:07 [ 1] [ 4] [0200] +13:37:07 [ 2] [ 16] [6688990107228205] +13:37:07 [ 3] [ 6] [011000] +13:37:07 [ 4] [ 12] [000020000000] +13:37:07 [ 7] [ 10] [0320133703] +13:37:07 [ 11] [ 6] [759429] +13:37:07 [ 12] [ 6] [133703] +13:37:07 [ 13] [ 4] [0320] +13:37:07 [ 15] [ 4] [0320] +13:37:07 [ 18] [ 4] [6011] +13:37:07 [ 22] [ 3] [900] +13:37:07 [ 25] [ 2] [02] +13:37:07 [ 28] [ 9] [D00002000] +13:37:07 [ 32] [ 6] [621354] +13:37:07 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:37:07 [ 37] [ 12] [507904153925] +13:37:07 [ 41] [ 8] [20001000] +13:37:07 [ 42] [ 15] [NATIVE ] +13:37:07 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:37:07 [ 49] [ 3] [418] +13:37:07 [ 52] [ 16] [216E7866C9888A9E] +13:37:07 ============================================================================ +13:37:07 + + +waiting on router queue for slot.... +13:37:07 Sending to : +13:37:07 ============================================================================ +13:37:07 Sending to : +13:37:07 ============================================================================ +13:37:08 ============================================================================ +13:37:08 Slot Id : <465> +13:37:08 Transaction Type : REQUEST +13:37:08 Received From : +13:37:08 ============================================================================ +13:37:08 FNo. Len. Field Value +13:37:08 ============================================================================ +13:37:08 [ 1] [ 4] [0200] +13:37:08 [ 2] [ 16] [6688990107228205] +13:37:08 [ 3] [ 6] [011000] +13:37:08 [ 4] [ 12] [000020000000] +13:37:08 [ 7] [ 10] [0320133703] +13:37:08 [ 11] [ 6] [759429] +13:37:08 [ 12] [ 6] [133703] +13:37:08 [ 13] [ 4] [0320] +13:37:08 [ 15] [ 4] [0320] +13:37:08 [ 18] [ 4] [6011] +13:37:08 [ 22] [ 3] [900] +13:37:08 [ 25] [ 2] [02] +13:37:08 [ 28] [ 9] [D00002000] +13:37:08 [ 32] [ 6] [621354] +13:37:08 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:37:08 [ 37] [ 12] [507904153925] +13:37:08 [ 41] [ 8] [20001000] +13:37:08 [ 42] [ 15] [NATIVE ] +13:37:08 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:37:08 [ 49] [ 3] [418] +13:37:08 [ 52] [ 16] [216E7866C9888A9E] +13:37:08 ============================================================================ +13:37:08 + + +waiting on router queue for slot.... +13:37:08 Sending to : +13:37:08 ============================================================================ +13:37:08 ============================================================================ +13:37:08 Slot Id : <465> +13:37:08 Transaction Type : REQUEST +13:37:08 Received From : +13:37:08 ============================================================================ +13:37:08 FNo. Len. Field Value +13:37:08 ============================================================================ +13:37:08 [ 1] [ 4] [0200] +13:37:08 [ 2] [ 16] [6688990107228205] +13:37:08 [ 3] [ 6] [011000] +13:37:08 [ 4] [ 12] [000020000000] +13:37:08 [ 7] [ 10] [0320133703] +13:37:08 [ 11] [ 6] [759429] +13:37:08 [ 12] [ 6] [133703] +13:37:08 [ 13] [ 4] [0320] +13:37:08 [ 15] [ 4] [0320] +13:37:08 [ 18] [ 4] [6011] +13:37:08 [ 22] [ 3] [900] +13:37:08 [ 25] [ 2] [02] +13:37:08 [ 28] [ 9] [D00002000] +13:37:08 [ 32] [ 6] [621354] +13:37:08 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:37:08 [ 37] [ 12] [507904153925] +13:37:08 [ 41] [ 8] [20001000] +13:37:08 [ 42] [ 15] [NATIVE ] +13:37:08 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:37:08 [ 49] [ 3] [418] +13:37:08 [ 52] [ 16] [BFD645C3C5A2455A] +13:37:08 ============================================================================ +13:37:08 + + +waiting on router queue for slot.... +13:37:08 Sending to : <4> +13:37:08 ============================================================================ +13:37:09 ============================================================================ +13:37:09 Slot Id : <465> +13:37:09 Transaction Type : RESPONSE +13:37:09 Received From : +13:37:09 ============================================================================ +13:37:09 FNo. Len. Field Value +13:37:09 ============================================================================ +13:37:09 [ 1] [ 4] [0210] +13:37:09 [ 2] [ 16] [6688990107228205] +13:37:09 [ 3] [ 6] [011000] +13:37:09 [ 4] [ 12] [000020000000] +13:37:09 [ 11] [ 6] [759429] +13:37:09 [ 12] [ 6] [133703] +13:37:09 [ 15] [ 4] [0320] +13:37:09 [ 18] [ 4] [6011] +13:37:09 [ 32] [ 6] [621354] +13:37:09 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:37:09 [ 37] [ 12] [507904153925] +13:37:09 [ 38] [ 6] [613618] +13:37:09 [ 39] [ 2] [00] +13:37:09 [ 41] [ 8] [20001000] +13:37:09 [ 49] [ 3] [418] +13:37:09 [ 54] [ 20] [1002418C000002487642] +13:37:09 ============================================================================ +13:37:09 Sending to : +13:37:09 ============================================================================ +13:37:09 + + +waiting on router queue for slot.... +13:37:10 ============================================================================ +13:37:10 Slot Id : <465> +13:37:10 Transaction Type : RESPONSE +13:37:10 Received From : +13:37:10 ============================================================================ +13:37:10 FNo. Len. Field Value +13:37:10 ============================================================================ +13:37:10 [ 1] [ 4] [0210] +13:37:10 [ 2] [ 16] [6688990107228205] +13:37:10 [ 3] [ 6] [011000] +13:37:10 [ 4] [ 12] [000020000000] +13:37:10 [ 11] [ 6] [759429] +13:37:10 [ 12] [ 6] [133703] +13:37:10 [ 15] [ 4] [0320] +13:37:10 [ 18] [ 4] [6011] +13:37:10 [ 32] [ 6] [621354] +13:37:10 [ 35] [ 37] [6688990107228205=44021231820565600000] +13:37:10 [ 37] [ 12] [507904153925] +13:37:10 [ 38] [ 6] [613618] +13:37:10 [ 39] [ 2] [00] +13:37:10 [ 41] [ 8] [20001000] +13:37:10 [ 49] [ 3] [418] +13:37:10 [ 54] [ 20] [1002418C000002487642] +13:37:10 ============================================================================ +13:37:10 Calculate Source COMM Id = 0 +13:37:10 ============================================================================ +13:37:10 + + +waiting on router queue for slot.... +13:37:19 ============================================================================ +13:37:19 Slot Id : <444> +13:37:19 Transaction Type : REQUEST +13:37:19 Received From : +13:37:19 ============================================================================ +13:37:19 FNo. Len. Field Value +13:37:19 ============================================================================ +13:37:19 [ 1] [ 4] [0800] +13:37:19 [ 7] [ 10] [0320063626] +13:37:19 [ 11] [ 6] [156593] +13:37:19 [ 70] [ 3] [301] +13:37:19 ============================================================================ +13:37:19 + + +waiting on router queue for slot.... +13:37:19 Sending to : +13:37:19 ============================================================================ +13:37:19 ============================================================================ +13:37:19 Slot Id : <444> +13:37:19 Transaction Type : RESPONSE +13:37:19 Received From : +13:37:19 ============================================================================ +13:37:19 FNo. Len. Field Value +13:37:19 ============================================================================ +13:37:19 [ 1] [ 4] [0810] +13:37:19 [ 7] [ 10] [0320063626] +13:37:19 [ 11] [ 6] [156593] +13:37:19 [ 39] [ 2] [00] +13:37:19 [ 70] [ 3] [301] +13:37:19 ============================================================================ +13:37:19 Calculate Source COMM Id = 2 +13:37:19 ============================================================================ +13:37:19 + + +waiting on router queue for slot.... +13:37:27 ============================================================================ +13:37:27 Slot Id : <436> +13:37:27 Transaction Type : REQUEST +13:37:27 Received From : +13:37:27 ============================================================================ +13:37:27 FNo. Len. Field Value +13:37:27 ============================================================================ +13:37:27 [ 1] [ 4] [0200] +13:37:27 [ 2] [ 16] [6213544001274247] +13:37:27 [ 3] [ 6] [011000] +13:37:27 [ 4] [ 12] [000100000000] +13:37:27 [ 7] [ 10] [0320133748] +13:37:27 [ 11] [ 6] [206576] +13:37:27 [ 12] [ 6] [133144] +13:37:27 [ 13] [ 4] [0320] +13:37:27 [ 14] [ 4] [4912] +13:37:27 [ 15] [ 4] [0320] +13:37:27 [ 18] [ 4] [6011] +13:37:27 [ 19] [ 3] [418] +13:37:27 [ 22] [ 3] [021] +13:37:27 [ 25] [ 2] [01] +13:37:27 [ 28] [ 9] [D00002000] +13:37:27 [ 32] [ 6] [198901] +13:37:27 [ 35] [ 32] [6213544001274247=491212017424765] +13:37:27 [ 37] [ 12] [507913206576] +13:37:27 [ 41] [ 8] [11529001] +13:37:27 [ 42] [ 15] [000000041152901] +13:37:27 [ 43] [ 40] [JDB ATM OUDOMXAY UNIT VN ] +13:37:27 [ 49] [ 3] [418] +13:37:27 [ 52] [ 16] [314F1212DE39A56C] +13:37:27 ============================================================================ +13:37:27 + + +waiting on router queue for slot.... +13:37:27 Sending to : +13:37:27 ============================================================================ +13:37:27 Sending to : +13:37:27 ============================================================================ +13:37:28 ============================================================================ +13:37:28 Slot Id : <436> +13:37:28 Transaction Type : REQUEST +13:37:28 Received From : +13:37:28 ============================================================================ +13:37:28 FNo. Len. Field Value +13:37:28 ============================================================================ +13:37:28 [ 1] [ 4] [0200] +13:37:28 [ 2] [ 16] [6213544001274247] +13:37:28 [ 3] [ 6] [011000] +13:37:28 [ 4] [ 12] [000100000000] +13:37:28 [ 7] [ 10] [0320133748] +13:37:28 [ 11] [ 6] [206576] +13:37:28 [ 12] [ 6] [133144] +13:37:28 [ 13] [ 4] [0320] +13:37:28 [ 14] [ 4] [4912] +13:37:28 [ 15] [ 4] [0320] +13:37:28 [ 18] [ 4] [6011] +13:37:28 [ 19] [ 3] [418] +13:37:28 [ 22] [ 3] [021] +13:37:28 [ 25] [ 2] [01] +13:37:28 [ 28] [ 9] [D00002000] +13:37:28 [ 32] [ 6] [198901] +13:37:28 [ 35] [ 32] [6213544001274247=491212017424765] +13:37:28 [ 37] [ 12] [507913206576] +13:37:28 [ 41] [ 8] [11529001] +13:37:28 [ 42] [ 15] [000000041152901] +13:37:28 [ 43] [ 40] [JDB ATM OUDOMXAY UNIT VN ] +13:37:28 [ 49] [ 3] [418] +13:37:28 [ 52] [ 16] [314F1212DE39A56C] +13:37:28 ============================================================================ +13:37:28 + + +waiting on router queue for slot.... +13:37:28 Sending to : +13:37:28 ============================================================================ +13:37:28 ============================================================================ +13:37:28 Slot Id : <436> +13:37:28 Transaction Type : REQUEST +13:37:28 Received From : +13:37:28 ============================================================================ +13:37:28 FNo. Len. Field Value +13:37:28 ============================================================================ +13:37:28 [ 1] [ 4] [0200] +13:37:28 [ 2] [ 16] [6213544001274247] +13:37:28 [ 3] [ 6] [011000] +13:37:28 [ 4] [ 12] [000100000000] +13:37:28 [ 7] [ 10] [0320133748] +13:37:28 [ 11] [ 6] [206576] +13:37:28 [ 12] [ 6] [133144] +13:37:28 [ 13] [ 4] [0320] +13:37:28 [ 14] [ 4] [4912] +13:37:28 [ 15] [ 4] [0320] +13:37:28 [ 18] [ 4] [6011] +13:37:28 [ 19] [ 3] [418] +13:37:28 [ 22] [ 3] [021] +13:37:28 [ 25] [ 2] [01] +13:37:28 [ 28] [ 9] [D00002000] +13:37:28 [ 32] [ 6] [198901] +13:37:28 [ 35] [ 32] [6213544001274247=491212017424765] +13:37:28 [ 37] [ 12] [507913206576] +13:37:28 [ 41] [ 8] [11529001] +13:37:28 [ 42] [ 15] [000000041152901] +13:37:28 [ 43] [ 40] [JDB ATM OUDOMXAY UNIT VN ] +13:37:28 [ 49] [ 3] [418] +13:37:28 [ 52] [ 16] [8E3CCA1C473C5BB0] +13:37:28 ============================================================================ +13:37:28 + + +waiting on router queue for slot.... +13:37:28 Sending to : <0> +13:37:28 ============================================================================ +13:37:28 ============================================================================ +13:37:28 Slot Id : <436> +13:37:28 Transaction Type : RESPONSE +13:37:28 Received From : +13:37:28 ============================================================================ +13:37:28 FNo. Len. Field Value +13:37:28 ============================================================================ +13:37:28 [ 1] [ 4] [0210] +13:37:28 [ 2] [ 16] [6213544001274247] +13:37:28 [ 3] [ 6] [011000] +13:37:28 [ 4] [ 12] [000100000000] +13:37:28 [ 7] [ 10] [0320133748] +13:37:28 [ 11] [ 6] [206576] +13:37:28 [ 12] [ 6] [133144] +13:37:28 [ 13] [ 4] [0320] +13:37:28 [ 15] [ 4] [0320] +13:37:28 [ 18] [ 4] [6011] +13:37:28 [ 19] [ 3] [418] +13:37:28 [ 32] [ 6] [198901] +13:37:28 [ 35] [ 32] [6213544001274247=491212017424765] +13:37:28 [ 37] [ 12] [507913206576] +13:37:28 [ 38] [ 6] [851784] +13:37:28 [ 39] [ 2] [00] +13:37:28 [ 41] [ 8] [11529001] +13:37:28 [ 49] [ 3] [418] +13:37:28 [ 54] [ 40] [1001418C0000052388331002418C000005238833] +13:37:28 ============================================================================ +13:37:28 Sending to : +13:37:28 ============================================================================ +13:37:28 + + +waiting on router queue for slot.... +13:37:30 ============================================================================ +13:37:30 Slot Id : <436> +13:37:30 Transaction Type : RESPONSE +13:37:30 Received From : +13:37:30 ============================================================================ +13:37:30 FNo. Len. Field Value +13:37:30 ============================================================================ +13:37:30 [ 1] [ 4] [0210] +13:37:30 [ 2] [ 16] [6213544001274247] +13:37:30 [ 3] [ 6] [011000] +13:37:30 [ 4] [ 12] [000100000000] +13:37:30 [ 7] [ 10] [0320133748] +13:37:30 [ 11] [ 6] [206576] +13:37:30 [ 12] [ 6] [133144] +13:37:30 [ 13] [ 4] [0320] +13:37:30 [ 15] [ 4] [0320] +13:37:30 [ 18] [ 4] [6011] +13:37:30 [ 19] [ 3] [418] +13:37:30 [ 32] [ 6] [198901] +13:37:30 [ 35] [ 32] [6213544001274247=491212017424765] +13:37:30 [ 37] [ 12] [507913206576] +13:37:30 [ 38] [ 6] [851784] +13:37:30 [ 39] [ 2] [00] +13:37:30 [ 41] [ 8] [11529001] +13:37:30 [ 49] [ 3] [418] +13:37:30 [ 54] [ 40] [1001418C0000052388331002418C000005238833] +13:37:30 ============================================================================ +13:37:30 Calculate Source COMM Id = 5 +13:37:30 ============================================================================ +13:37:30 + + +waiting on router queue for slot.... +13:37:35 ============================================================================ +13:37:35 Slot Id : <439> +13:37:35 Transaction Type : REQUEST +13:37:35 Received From : +13:37:35 ============================================================================ +13:37:35 FNo. Len. Field Value +13:37:35 ============================================================================ +13:37:35 [ 1] [ 4] [0800] +13:37:35 [ 7] [ 10] [0320063643] +13:37:35 [ 11] [ 6] [156594] +13:37:35 [ 70] [ 3] [301] +13:37:35 ============================================================================ +13:37:35 + + +waiting on router queue for slot.... +13:37:35 Sending to : +13:37:35 ============================================================================ +13:37:35 ============================================================================ +13:37:35 Slot Id : <439> +13:37:35 Transaction Type : RESPONSE +13:37:35 Received From : +13:37:35 ============================================================================ +13:37:35 FNo. Len. Field Value +13:37:35 ============================================================================ +13:37:35 [ 1] [ 4] [0810] +13:37:35 [ 7] [ 10] [0320063643] +13:37:35 [ 11] [ 6] [156594] +13:37:35 [ 39] [ 2] [00] +13:37:35 [ 70] [ 3] [301] +13:37:35 ============================================================================ +13:37:35 Calculate Source COMM Id = 2 +13:37:35 ============================================================================ +13:37:35 + + +waiting on router queue for slot.... +13:37:37 ============================================================================ +13:37:37 Slot Id : <423> +13:37:37 Transaction Type : REQUEST +13:37:37 Received From : +13:37:37 ============================================================================ +13:37:37 FNo. Len. Field Value +13:37:37 ============================================================================ +13:37:37 [ 1] [ 4] [0200] +13:37:37 [ 2] [ 16] [6688990040052340] +13:37:37 [ 3] [ 6] [012000] +13:37:37 [ 4] [ 12] [000020000000] +13:37:37 [ 7] [ 10] [0320133733] +13:37:37 [ 11] [ 6] [759574] +13:37:37 [ 12] [ 6] [133733] +13:37:37 [ 13] [ 4] [0320] +13:37:37 [ 15] [ 4] [0320] +13:37:37 [ 18] [ 4] [6011] +13:37:37 [ 22] [ 3] [900] +13:37:37 [ 25] [ 2] [02] +13:37:37 [ 28] [ 9] [D00002000] +13:37:37 [ 32] [ 6] [621354] +13:37:37 [ 35] [ 37] [6688990040052340=97121261700508400000] +13:37:37 [ 37] [ 12] [507902650492] +13:37:37 [ 41] [ 8] [14000400] +13:37:37 [ 42] [ 15] [NATIVE ] +13:37:37 [ 43] [ 40] [KASY UNIT Kasy LAO] +13:37:37 [ 49] [ 3] [418] +13:37:37 [ 52] [ 16] [80DB2E1707FBEF2C] +13:37:37 ============================================================================ +13:37:37 + + +waiting on router queue for slot.... +13:37:37 Sending to : +13:37:37 ============================================================================ +13:37:37 Sending to : +13:37:37 ============================================================================ +13:37:38 ============================================================================ +13:37:38 Slot Id : <423> +13:37:38 Transaction Type : REQUEST +13:37:38 Received From : +13:37:38 ============================================================================ +13:37:38 FNo. Len. Field Value +13:37:38 ============================================================================ +13:37:38 [ 1] [ 4] [0200] +13:37:38 [ 2] [ 16] [6688990040052340] +13:37:38 [ 3] [ 6] [012000] +13:37:38 [ 4] [ 12] [000020000000] +13:37:38 [ 7] [ 10] [0320133733] +13:37:38 [ 11] [ 6] [759574] +13:37:38 [ 12] [ 6] [133733] +13:37:38 [ 13] [ 4] [0320] +13:37:38 [ 15] [ 4] [0320] +13:37:38 [ 18] [ 4] [6011] +13:37:38 [ 22] [ 3] [900] +13:37:38 [ 25] [ 2] [02] +13:37:38 [ 28] [ 9] [D00002000] +13:37:38 [ 32] [ 6] [621354] +13:37:38 [ 35] [ 37] [6688990040052340=97121261700508400000] +13:37:38 [ 37] [ 12] [507902650492] +13:37:38 [ 41] [ 8] [14000400] +13:37:38 [ 42] [ 15] [NATIVE ] +13:37:38 [ 43] [ 40] [KASY UNIT Kasy LAO] +13:37:38 [ 49] [ 3] [418] +13:37:38 [ 52] [ 16] [80DB2E1707FBEF2C] +13:37:38 ============================================================================ +13:37:38 + + +waiting on router queue for slot.... +13:37:38 Sending to : +13:37:38 ============================================================================ +13:37:38 ============================================================================ +13:37:38 Slot Id : <423> +13:37:38 Transaction Type : REQUEST +13:37:38 Received From : +13:37:38 ============================================================================ +13:37:38 FNo. Len. Field Value +13:37:38 ============================================================================ +13:37:38 [ 1] [ 4] [0200] +13:37:38 [ 2] [ 16] [6688990040052340] +13:37:38 [ 3] [ 6] [012000] +13:37:38 [ 4] [ 12] [000020000000] +13:37:38 [ 7] [ 10] [0320133733] +13:37:38 [ 11] [ 6] [759574] +13:37:38 [ 12] [ 6] [133733] +13:37:38 [ 13] [ 4] [0320] +13:37:38 [ 15] [ 4] [0320] +13:37:38 [ 18] [ 4] [6011] +13:37:38 [ 22] [ 3] [900] +13:37:38 [ 25] [ 2] [02] +13:37:38 [ 28] [ 9] [D00002000] +13:37:38 [ 32] [ 6] [621354] +13:37:38 [ 35] [ 37] [6688990040052340=97121261700508400000] +13:37:38 [ 37] [ 12] [507902650492] +13:37:38 [ 41] [ 8] [14000400] +13:37:38 [ 42] [ 15] [NATIVE ] +13:37:38 [ 43] [ 40] [KASY UNIT Kasy LAO] +13:37:38 [ 49] [ 3] [418] +13:37:38 [ 52] [ 16] [A960ADA635328694] +13:37:38 ============================================================================ +13:37:38 + + +waiting on router queue for slot.... +13:37:38 Sending to : <4> +13:37:38 ============================================================================ +13:37:39 ============================================================================ +13:37:39 Slot Id : <423> +13:37:39 Transaction Type : RESPONSE +13:37:39 Received From : +13:37:39 ============================================================================ +13:37:39 FNo. Len. Field Value +13:37:39 ============================================================================ +13:37:39 [ 1] [ 4] [0210] +13:37:39 [ 2] [ 16] [6688990040052340] +13:37:39 [ 3] [ 6] [012000] +13:37:39 [ 4] [ 12] [000020000000] +13:37:39 [ 11] [ 6] [759574] +13:37:39 [ 12] [ 6] [133733] +13:37:39 [ 15] [ 4] [0320] +13:37:39 [ 18] [ 4] [6011] +13:37:39 [ 32] [ 6] [621354] +13:37:39 [ 35] [ 37] [6688990040052340=97121261700508400000] +13:37:39 [ 37] [ 12] [507902650492] +13:37:39 [ 38] [ 6] [535553] +13:37:39 [ 39] [ 2] [00] +13:37:39 [ 41] [ 8] [14000400] +13:37:39 [ 49] [ 3] [418] +13:37:39 [ 54] [ 20] [2002418C000010540304] +13:37:39 ============================================================================ +13:37:39 Sending to : +13:37:39 ============================================================================ +13:37:39 + + +waiting on router queue for slot.... +13:37:40 ============================================================================ +13:37:40 Slot Id : <423> +13:37:40 Transaction Type : RESPONSE +13:37:40 Received From : +13:37:40 ============================================================================ +13:37:40 FNo. Len. Field Value +13:37:40 ============================================================================ +13:37:40 [ 1] [ 4] [0210] +13:37:40 [ 2] [ 16] [6688990040052340] +13:37:40 [ 3] [ 6] [012000] +13:37:40 [ 4] [ 12] [000020000000] +13:37:40 [ 11] [ 6] [759574] +13:37:40 [ 12] [ 6] [133733] +13:37:40 [ 15] [ 4] [0320] +13:37:40 [ 18] [ 4] [6011] +13:37:40 [ 32] [ 6] [621354] +13:37:40 [ 35] [ 37] [6688990040052340=97121261700508400000] +13:37:40 [ 37] [ 12] [507902650492] +13:37:40 [ 38] [ 6] [535553] +13:37:40 [ 39] [ 2] [00] +13:37:40 [ 41] [ 8] [14000400] +13:37:40 [ 49] [ 3] [418] +13:37:40 [ 54] [ 20] [2002418C000010540304] +13:37:40 ============================================================================ +13:37:40 Calculate Source COMM Id = 0 +13:37:40 ============================================================================ +13:37:40 + + +waiting on router queue for slot.... +13:37:51 ============================================================================ +13:37:51 Slot Id : <458> +13:37:51 Transaction Type : REQUEST +13:37:51 Received From : +13:37:51 ============================================================================ +13:37:51 FNo. Len. Field Value +13:37:51 ============================================================================ +13:37:51 [ 1] [ 4] [0800] +13:37:51 [ 7] [ 10] [0320063659] +13:37:51 [ 11] [ 6] [156595] +13:37:51 [ 70] [ 3] [301] +13:37:51 ============================================================================ +13:37:51 + + +waiting on router queue for slot.... +13:37:51 Sending to : +13:37:51 ============================================================================ +13:37:51 ============================================================================ +13:37:51 Slot Id : <458> +13:37:51 Transaction Type : RESPONSE +13:37:51 Received From : +13:37:51 ============================================================================ +13:37:51 FNo. Len. Field Value +13:37:51 ============================================================================ +13:37:51 [ 1] [ 4] [0810] +13:37:51 [ 7] [ 10] [0320063659] +13:37:51 [ 11] [ 6] [156595] +13:37:51 [ 39] [ 2] [00] +13:37:51 [ 70] [ 3] [301] +13:37:51 ============================================================================ +13:37:51 Calculate Source COMM Id = 2 +13:37:51 ============================================================================ +13:37:51 + + +waiting on router queue for slot.... +13:38:00 ============================================================================ +13:38:00 Slot Id : <459> +13:38:00 Transaction Type : REQUEST +13:38:00 Received From : +13:38:00 ============================================================================ +13:38:00 FNo. Len. Field Value +13:38:00 ============================================================================ +13:38:00 [ 1] [ 4] [0800] +13:38:00 [ 2] [ 5] [02531] +13:38:00 [ 3] [ 6] [579138] +13:38:00 [ 7] [ 10] [0320063800] +13:38:00 [ 11] [ 6] [807203] +13:38:00 [ 15] [ 10] [0320063800] +13:38:00 [ 37] [ 11] [57913807203] +13:38:00 [ 70] [ 3] [001] +13:38:00 ============================================================================ +13:38:00 + + +waiting on router queue for slot.... +13:38:00 ============================================================================ +13:38:00 Slot Id : <459> +13:38:00 Transaction Type : RESPONSE +13:38:00 Received From : +13:38:00 ============================================================================ +13:38:00 FNo. Len. Field Value +13:38:00 ============================================================================ +13:38:00 [ 1] [ 4] [0810] +13:38:00 [ 7] [ 10] [0320063800] +13:38:00 [ 11] [ 6] [807203] +13:38:00 [ 15] [ 4] [0320] +13:38:00 [ 37] [ 12] [57913807203] +13:38:00 [ 39] [ 2] [00] +13:38:00 [ 70] [ 3] [001] +13:38:00 ============================================================================ +13:38:00 Sending to : +13:38:00 ============================================================================ +13:38:00 + + +waiting on router queue for slot.... +13:38:03 ============================================================================ +13:38:03 Slot Id : <466> +13:38:03 Transaction Type : REQUEST +13:38:03 Received From : +13:38:03 ============================================================================ +13:38:03 FNo. Len. Field Value +13:38:03 ============================================================================ +13:38:03 [ 1] [ 4] [0800] +13:38:03 [ 7] [ 10] [0320063710] +13:38:03 [ 11] [ 6] [156596] +13:38:03 [ 70] [ 3] [301] +13:38:03 ============================================================================ +13:38:03 + + +waiting on router queue for slot.... +13:38:03 Sending to : +13:38:03 ============================================================================ +13:38:03 ============================================================================ +13:38:03 Slot Id : <466> +13:38:03 Transaction Type : RESPONSE +13:38:03 Received From : +13:38:03 ============================================================================ +13:38:03 FNo. Len. Field Value +13:38:03 ============================================================================ +13:38:03 [ 1] [ 4] [0810] +13:38:03 [ 7] [ 10] [0320063710] +13:38:03 [ 11] [ 6] [156596] +13:38:03 [ 39] [ 2] [00] +13:38:03 [ 70] [ 3] [301] +13:38:03 ============================================================================ +13:38:03 Calculate Source COMM Id = 2 +13:38:03 ============================================================================ +13:38:03 + + +waiting on router queue for slot.... +13:38:17 ============================================================================ +13:38:17 Slot Id : <452> +13:38:17 Transaction Type : REQUEST +13:38:17 Received From : +13:38:17 ============================================================================ +13:38:17 FNo. Len. Field Value +13:38:17 ============================================================================ +13:38:17 [ 1] [ 4] [0800] +13:38:17 [ 7] [ 10] [0320063725] +13:38:17 [ 11] [ 6] [156597] +13:38:17 [ 70] [ 3] [301] +13:38:17 ============================================================================ +13:38:17 + + +waiting on router queue for slot.... +13:38:17 Sending to : +13:38:17 ============================================================================ +13:38:17 ============================================================================ +13:38:17 Slot Id : <452> +13:38:17 Transaction Type : RESPONSE +13:38:17 Received From : +13:38:17 ============================================================================ +13:38:17 FNo. Len. Field Value +13:38:17 ============================================================================ +13:38:17 [ 1] [ 4] [0810] +13:38:17 [ 7] [ 10] [0320063725] +13:38:17 [ 11] [ 6] [156597] +13:38:17 [ 39] [ 2] [00] +13:38:17 [ 70] [ 3] [301] +13:38:17 ============================================================================ +13:38:17 Calculate Source COMM Id = 2 +13:38:17 ============================================================================ +13:38:17 + + +waiting on router queue for slot.... +13:38:27 ============================================================================ +13:38:27 Slot Id : <468> +13:38:27 Transaction Type : REQUEST +13:38:27 Received From : +13:38:27 ============================================================================ +13:38:27 FNo. Len. Field Value +13:38:27 ============================================================================ +13:38:27 [ 1] [ 4] [0200] +13:38:27 [ 2] [ 16] [1808930600037402] +13:38:27 [ 3] [ 6] [010000] +13:38:27 [ 4] [ 12] [000020000000] +13:38:27 [ 7] [ 10] [0320133618] +13:38:27 [ 11] [ 6] [946978] +13:38:27 [ 12] [ 6] [133618] +13:38:27 [ 13] [ 4] [0320] +13:38:27 [ 15] [ 4] [0320] +13:38:27 [ 18] [ 4] [6011] +13:38:27 [ 19] [ 3] [418] +13:38:27 [ 22] [ 3] [021] +13:38:27 [ 25] [ 2] [01] +13:38:27 [ 28] [ 9] [D00002000] +13:38:27 [ 32] [ 6] [668899] +13:38:27 [ 35] [ 27] [1808930600037402=1803500799] +13:38:27 [ 37] [ 12] [507901443607] +13:38:27 [ 41] [ 8] [03414001] +13:38:27 [ 42] [ 15] [APT ] +13:38:27 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +13:38:27 [ 49] [ 3] [418] +13:38:27 [ 52] [ 16] [B2E93E9264C507E4] +13:38:27 ============================================================================ +13:38:27 + + +waiting on router queue for slot.... +13:38:27 Sending to : +13:38:27 ============================================================================ +13:38:27 Sending to : +13:38:27 ============================================================================ +13:38:27 ============================================================================ +13:38:27 Slot Id : <475> +13:38:27 Transaction Type : REQUEST +13:38:27 Received From : +13:38:27 ============================================================================ +13:38:27 FNo. Len. Field Value +13:38:27 ============================================================================ +13:38:27 [ 1] [ 4] [0200] +13:38:27 [ 2] [ 16] [6213545001082050] +13:38:27 [ 3] [ 6] [010000] +13:38:27 [ 4] [ 12] [000100000000] +13:38:27 [ 7] [ 10] [0320063734] +13:38:27 [ 11] [ 6] [269347] +13:38:27 [ 12] [ 6] [133734] +13:38:27 [ 13] [ 4] [0320] +13:38:27 [ 14] [ 4] [4912] +13:38:27 [ 15] [ 4] [0320] +13:38:27 [ 18] [ 4] [6011] +13:38:27 [ 19] [ 3] [418] +13:38:27 [ 22] [ 3] [021] +13:38:27 [ 25] [ 2] [01] +13:38:27 [ 28] [ 9] [D00002000] +13:38:27 [ 32] [ 6] [180893] +13:38:27 [ 35] [ 32] [6213545001082050=491212018205612] +13:38:27 [ 37] [ 12] [507906269347] +13:38:27 [ 41] [ 8] [0363CPSH] +13:38:27 [ 42] [ 15] [999999 ] +13:38:27 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +13:38:27 [ 49] [ 3] [418] +13:38:27 [ 52] [ 16] [DD56261B5B362371] +13:38:27 ============================================================================ +13:38:27 + + +waiting on router queue for slot.... +13:38:27 Sending to : +13:38:27 ============================================================================ +13:38:27 Sending to : +13:38:27 ============================================================================ +13:38:28 ============================================================================ +13:38:28 Slot Id : <468> +13:38:28 Transaction Type : REQUEST +13:38:28 Received From : +13:38:28 ============================================================================ +13:38:28 FNo. Len. Field Value +13:38:28 ============================================================================ +13:38:28 [ 1] [ 4] [0200] +13:38:28 [ 2] [ 16] [1808930600037402] +13:38:28 [ 3] [ 6] [010000] +13:38:28 [ 4] [ 12] [000020000000] +13:38:28 [ 7] [ 10] [0320133618] +13:38:28 [ 11] [ 6] [946978] +13:38:28 [ 12] [ 6] [133618] +13:38:28 [ 13] [ 4] [0320] +13:38:28 [ 15] [ 4] [0320] +13:38:28 [ 18] [ 4] [6011] +13:38:28 [ 19] [ 3] [418] +13:38:28 [ 22] [ 3] [021] +13:38:28 [ 25] [ 2] [01] +13:38:28 [ 28] [ 9] [D00002000] +13:38:28 [ 32] [ 6] [668899] +13:38:28 [ 35] [ 27] [1808930600037402=1803500799] +13:38:28 [ 37] [ 12] [507901443607] +13:38:28 [ 41] [ 8] [03414001] +13:38:28 [ 42] [ 15] [APT ] +13:38:28 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +13:38:28 [ 49] [ 3] [418] +13:38:28 [ 52] [ 16] [B2E93E9264C507E4] +13:38:28 ============================================================================ +13:38:28 + + +waiting on router queue for slot.... +13:38:28 Sending to : +13:38:28 ============================================================================ +13:38:28 ============================================================================ +13:38:28 Slot Id : <468> +13:38:28 Transaction Type : REQUEST +13:38:28 Received From : +13:38:28 ============================================================================ +13:38:28 FNo. Len. Field Value +13:38:28 ============================================================================ +13:38:28 [ 1] [ 4] [0200] +13:38:28 [ 2] [ 16] [1808930600037402] +13:38:28 [ 3] [ 6] [010000] +13:38:28 [ 4] [ 12] [000020000000] +13:38:28 [ 7] [ 10] [0320133618] +13:38:28 [ 11] [ 6] [946978] +13:38:28 [ 12] [ 6] [133618] +13:38:28 [ 13] [ 4] [0320] +13:38:28 [ 15] [ 4] [0320] +13:38:28 [ 18] [ 4] [6011] +13:38:28 [ 19] [ 3] [418] +13:38:28 [ 22] [ 3] [021] +13:38:28 [ 25] [ 2] [01] +13:38:28 [ 28] [ 9] [D00002000] +13:38:28 [ 32] [ 6] [668899] +13:38:28 [ 35] [ 27] [1808930600037402=1803500799] +13:38:28 [ 37] [ 12] [507901443607] +13:38:28 [ 41] [ 8] [03414001] +13:38:28 [ 42] [ 15] [APT ] +13:38:28 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +13:38:28 [ 49] [ 3] [418] +13:38:28 [ 52] [ 16] [4A27126FE03225BD] +13:38:28 ============================================================================ +13:38:28 + + +waiting on router queue for slot.... +13:38:28 Sending to : <2> +13:38:28 ============================================================================ +13:38:28 ============================================================================ +13:38:28 Slot Id : <475> +13:38:28 Transaction Type : REQUEST +13:38:28 Received From : +13:38:28 ============================================================================ +13:38:28 FNo. Len. Field Value +13:38:28 ============================================================================ +13:38:28 [ 1] [ 4] [0200] +13:38:28 [ 2] [ 16] [6213545001082050] +13:38:28 [ 3] [ 6] [010000] +13:38:28 [ 4] [ 12] [000100000000] +13:38:28 [ 7] [ 10] [0320063734] +13:38:28 [ 11] [ 6] [269347] +13:38:28 [ 12] [ 6] [133734] +13:38:28 [ 13] [ 4] [0320] +13:38:28 [ 14] [ 4] [4912] +13:38:28 [ 15] [ 4] [0320] +13:38:28 [ 18] [ 4] [6011] +13:38:28 [ 19] [ 3] [418] +13:38:28 [ 22] [ 3] [021] +13:38:28 [ 25] [ 2] [01] +13:38:28 [ 28] [ 9] [D00002000] +13:38:28 [ 32] [ 6] [180893] +13:38:28 [ 35] [ 32] [6213545001082050=491212018205612] +13:38:28 [ 37] [ 12] [507906269347] +13:38:28 [ 41] [ 8] [0363CPSH] +13:38:28 [ 42] [ 15] [999999 ] +13:38:28 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +13:38:28 [ 49] [ 3] [418] +13:38:28 [ 52] [ 16] [DD56261B5B362371] +13:38:28 ============================================================================ +13:38:28 + + +waiting on router queue for slot.... +13:38:28 Sending to : +13:38:28 ============================================================================ +13:38:28 ============================================================================ +13:38:28 Slot Id : <475> +13:38:28 Transaction Type : REQUEST +13:38:28 Received From : +13:38:28 ============================================================================ +13:38:28 FNo. Len. Field Value +13:38:28 ============================================================================ +13:38:28 [ 1] [ 4] [0200] +13:38:28 [ 2] [ 16] [6213545001082050] +13:38:28 [ 3] [ 6] [010000] +13:38:28 [ 4] [ 12] [000100000000] +13:38:28 [ 7] [ 10] [0320063734] +13:38:28 [ 11] [ 6] [269347] +13:38:28 [ 12] [ 6] [133734] +13:38:28 [ 13] [ 4] [0320] +13:38:28 [ 14] [ 4] [4912] +13:38:28 [ 15] [ 4] [0320] +13:38:28 [ 18] [ 4] [6011] +13:38:28 [ 19] [ 3] [418] +13:38:28 [ 22] [ 3] [021] +13:38:28 [ 25] [ 2] [01] +13:38:28 [ 28] [ 9] [D00002000] +13:38:28 [ 32] [ 6] [180893] +13:38:28 [ 35] [ 32] [6213545001082050=491212018205612] +13:38:28 [ 37] [ 12] [507906269347] +13:38:28 [ 41] [ 8] [0363CPSH] +13:38:28 [ 42] [ 15] [999999 ] +13:38:28 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +13:38:28 [ 49] [ 3] [418] +13:38:28 [ 52] [ 16] [06A023A6A3B2664C] +13:38:28 ============================================================================ +13:38:28 + + +waiting on router queue for slot.... +13:38:28 Sending to : <0> +13:38:28 ============================================================================ +13:38:28 ============================================================================ +13:38:28 Slot Id : <475> +13:38:28 Transaction Type : RESPONSE +13:38:28 Received From : +13:38:28 ============================================================================ +13:38:28 FNo. Len. Field Value +13:38:28 ============================================================================ +13:38:28 [ 1] [ 4] [0210] +13:38:28 [ 2] [ 16] [6213545001082050] +13:38:28 [ 3] [ 6] [010000] +13:38:28 [ 4] [ 12] [000100000000] +13:38:28 [ 7] [ 10] [0320063734] +13:38:28 [ 11] [ 6] [269347] +13:38:28 [ 12] [ 6] [133734] +13:38:28 [ 13] [ 4] [0320] +13:38:28 [ 15] [ 4] [0320] +13:38:28 [ 18] [ 4] [6011] +13:38:28 [ 19] [ 3] [418] +13:38:28 [ 32] [ 6] [180893] +13:38:28 [ 35] [ 32] [6213545001082050=491212018205612] +13:38:28 [ 37] [ 12] [507906269347] +13:38:28 [ 38] [ 6] [754653] +13:38:28 [ 39] [ 2] [00] +13:38:28 [ 41] [ 8] [0363CPSH] +13:38:28 [ 49] [ 3] [418] +13:38:28 [ 54] [ 40] [0001418C0003104245600002418C000310424560] +13:38:28 ============================================================================ +13:38:28 Sending to : +13:38:28 ============================================================================ +13:38:28 + + +waiting on router queue for slot.... +13:38:30 ============================================================================ +13:38:30 Slot Id : <475> +13:38:30 Transaction Type : RESPONSE +13:38:30 Received From : +13:38:30 ============================================================================ +13:38:30 FNo. Len. Field Value +13:38:30 ============================================================================ +13:38:30 [ 1] [ 4] [0210] +13:38:30 [ 2] [ 16] [6213545001082050] +13:38:30 [ 3] [ 6] [010000] +13:38:30 [ 4] [ 12] [000100000000] +13:38:30 [ 7] [ 10] [0320063734] +13:38:30 [ 11] [ 6] [269347] +13:38:30 [ 12] [ 6] [133734] +13:38:30 [ 13] [ 4] [0320] +13:38:30 [ 15] [ 4] [0320] +13:38:30 [ 18] [ 4] [6011] +13:38:30 [ 19] [ 3] [418] +13:38:30 [ 32] [ 6] [180893] +13:38:30 [ 35] [ 32] [6213545001082050=491212018205612] +13:38:30 [ 37] [ 12] [507906269347] +13:38:30 [ 38] [ 6] [754653] +13:38:30 [ 39] [ 2] [00] +13:38:30 [ 41] [ 8] [0363CPSH] +13:38:30 [ 49] [ 3] [418] +13:38:30 [ 54] [ 40] [0001418C0003104245600002418C000310424560] +13:38:30 ============================================================================ +13:38:30 Calculate Source COMM Id = 2 +13:38:30 ============================================================================ +13:38:30 + + +waiting on router queue for slot.... +13:38:34 ============================================================================ +13:38:34 Slot Id : <468> +13:38:34 Transaction Type : RESPONSE +13:38:34 Received From : +13:38:34 ============================================================================ +13:38:34 FNo. Len. Field Value +13:38:34 ============================================================================ +13:38:34 [ 1] [ 4] [0210] +13:38:34 [ 2] [ 16] [1808930600037402] +13:38:34 [ 3] [ 6] [010000] +13:38:34 [ 4] [ 12] [000020000000] +13:38:34 [ 6] [ 12] [000020000000] +13:38:34 [ 7] [ 10] [0320133618] +13:38:34 [ 11] [ 6] [946978] +13:38:34 [ 12] [ 6] [133618] +13:38:34 [ 13] [ 4] [0320] +13:38:34 [ 18] [ 4] [6011] +13:38:34 [ 19] [ 3] [418] +13:38:34 [ 22] [ 3] [021] +13:38:34 [ 32] [ 6] [668899] +13:38:34 [ 35] [ 27] [1808930600037402=1803500799] +13:38:34 [ 37] [ 12] [507901443607] +13:38:34 [ 38] [ 6] [946978] +13:38:34 [ 39] [ 2] [00] +13:38:34 [ 41] [ 8] [03414001] +13:38:34 [ 49] [ 3] [418] +13:38:34 [ 52] [ 16] [4A27126FE03225BD] +13:38:34 [ 54] [ 20] [1001418C000047346900] +13:38:34 ============================================================================ +13:38:34 Sending to : +13:38:34 ============================================================================ +13:38:34 + + +waiting on router queue for slot.... +13:38:35 ============================================================================ +13:38:35 Slot Id : <468> +13:38:35 Transaction Type : RESPONSE +13:38:35 Received From : +13:38:35 ============================================================================ +13:38:35 FNo. Len. Field Value +13:38:35 ============================================================================ +13:38:35 [ 1] [ 4] [0210] +13:38:35 [ 2] [ 16] [1808930600037402] +13:38:35 [ 3] [ 6] [010000] +13:38:35 [ 4] [ 12] [000020000000] +13:38:35 [ 6] [ 12] [000020000000] +13:38:35 [ 7] [ 10] [0320133618] +13:38:35 [ 11] [ 6] [946978] +13:38:35 [ 12] [ 6] [133618] +13:38:35 [ 13] [ 4] [0320] +13:38:35 [ 18] [ 4] [6011] +13:38:35 [ 19] [ 3] [418] +13:38:35 [ 22] [ 3] [021] +13:38:35 [ 32] [ 6] [668899] +13:38:35 [ 35] [ 27] [1808930600037402=1803500799] +13:38:35 [ 37] [ 12] [507901443607] +13:38:35 [ 38] [ 6] [946978] +13:38:35 [ 39] [ 2] [00] +13:38:35 [ 41] [ 8] [03414001] +13:38:35 [ 49] [ 3] [418] +13:38:35 [ 52] [ 16] [4A27126FE03225BD] +13:38:35 [ 54] [ 20] [1001418C000047346900] +13:38:35 ============================================================================ +13:38:35 Calculate Source COMM Id = 4 +13:38:35 ============================================================================ +13:38:35 + + +waiting on router queue for slot.... +13:38:43 ============================================================================ +13:38:43 Slot Id : <455> +13:38:43 Transaction Type : REQUEST +13:38:43 Received From : +13:38:43 ============================================================================ +13:38:43 FNo. Len. Field Value +13:38:43 ============================================================================ +13:38:43 [ 1] [ 4] [0800] +13:38:43 [ 7] [ 10] [0320063751] +13:38:43 [ 11] [ 6] [156598] +13:38:43 [ 70] [ 3] [301] +13:38:43 ============================================================================ +13:38:43 + + +waiting on router queue for slot.... +13:38:43 Sending to : +13:38:43 ============================================================================ +13:38:43 ============================================================================ +13:38:43 Slot Id : <455> +13:38:43 Transaction Type : RESPONSE +13:38:43 Received From : +13:38:43 ============================================================================ +13:38:43 FNo. Len. Field Value +13:38:43 ============================================================================ +13:38:43 [ 1] [ 4] [0810] +13:38:43 [ 7] [ 10] [0320063751] +13:38:43 [ 11] [ 6] [156598] +13:38:43 [ 39] [ 2] [00] +13:38:43 [ 70] [ 3] [301] +13:38:43 ============================================================================ +13:38:43 Calculate Source COMM Id = 2 +13:38:43 ============================================================================ +13:38:43 + + +waiting on router queue for slot.... +13:38:54 ============================================================================ +13:38:54 Slot Id : <440> +13:38:54 Transaction Type : REQUEST +13:38:54 Received From : +13:38:54 ============================================================================ +13:38:54 FNo. Len. Field Value +13:38:54 ============================================================================ +13:38:54 [ 1] [ 4] [0800] +13:38:54 [ 7] [ 10] [0320063801] +13:38:54 [ 11] [ 6] [156599] +13:38:54 [ 70] [ 3] [301] +13:38:54 ============================================================================ +13:38:54 + + +waiting on router queue for slot.... +13:38:54 Sending to : +13:38:54 ============================================================================ +13:38:54 ============================================================================ +13:38:54 Slot Id : <440> +13:38:54 Transaction Type : RESPONSE +13:38:54 Received From : +13:38:54 ============================================================================ +13:38:54 FNo. Len. Field Value +13:38:54 ============================================================================ +13:38:54 [ 1] [ 4] [0810] +13:38:54 [ 7] [ 10] [0320063801] +13:38:54 [ 11] [ 6] [156599] +13:38:54 [ 39] [ 2] [00] +13:38:54 [ 70] [ 3] [301] +13:38:54 ============================================================================ +13:38:54 Calculate Source COMM Id = 2 +13:38:54 ============================================================================ +13:38:54 + + +waiting on router queue for slot.... +13:38:54 ============================================================================ +13:38:54 Slot Id : <449> +13:38:54 Transaction Type : REQUEST +13:38:54 Received From : +13:38:54 ============================================================================ +13:38:54 FNo. Len. Field Value +13:38:54 ============================================================================ +13:38:54 [ 1] [ 4] [0200] +13:38:54 [ 2] [ 16] [6213541000560790] +13:38:54 [ 3] [ 6] [010000] +13:38:54 [ 4] [ 12] [000050000000] +13:38:54 [ 7] [ 10] [0320133644] +13:38:54 [ 11] [ 6] [947001] +13:38:54 [ 12] [ 6] [133644] +13:38:54 [ 13] [ 4] [0320] +13:38:54 [ 15] [ 4] [0320] +13:38:54 [ 18] [ 4] [6011] +13:38:54 [ 19] [ 3] [418] +13:38:54 [ 22] [ 3] [021] +13:38:54 [ 25] [ 2] [01] +13:38:54 [ 28] [ 9] [D00002000] +13:38:54 [ 32] [ 6] [668899] +13:38:54 [ 35] [ 32] [6213541000560790=491212016079530] +13:38:54 [ 37] [ 12] [507901541698] +13:38:54 [ 41] [ 8] [03020016] +13:38:54 [ 42] [ 15] [APT ] +13:38:54 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +13:38:54 [ 49] [ 3] [418] +13:38:54 [ 52] [ 16] [5530070463F189CC] +13:38:54 ============================================================================ +13:38:54 + + +waiting on router queue for slot.... +13:38:54 Sending to : +13:38:54 ============================================================================ +13:38:54 Sending to : +13:38:54 ============================================================================ +13:38:54 ============================================================================ +13:38:54 Slot Id : <449> +13:38:54 Transaction Type : REQUEST +13:38:54 Received From : +13:38:54 ============================================================================ +13:38:54 FNo. Len. Field Value +13:38:54 ============================================================================ +13:38:54 [ 1] [ 4] [0200] +13:38:54 [ 2] [ 16] [6213541000560790] +13:38:54 [ 3] [ 6] [010000] +13:38:54 [ 4] [ 12] [000050000000] +13:38:54 [ 7] [ 10] [0320133644] +13:38:54 [ 11] [ 6] [947001] +13:38:54 [ 12] [ 6] [133644] +13:38:54 [ 13] [ 4] [0320] +13:38:54 [ 15] [ 4] [0320] +13:38:54 [ 18] [ 4] [6011] +13:38:54 [ 19] [ 3] [418] +13:38:54 [ 22] [ 3] [021] +13:38:54 [ 25] [ 2] [01] +13:38:54 [ 28] [ 9] [D00002000] +13:38:54 [ 32] [ 6] [668899] +13:38:54 [ 35] [ 32] [6213541000560790=491212016079530] +13:38:54 [ 37] [ 12] [507901541698] +13:38:54 [ 41] [ 8] [03020016] +13:38:54 [ 42] [ 15] [APT ] +13:38:54 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +13:38:54 [ 49] [ 3] [418] +13:38:54 [ 52] [ 16] [5530070463F189CC] +13:38:54 ============================================================================ +13:38:54 + + +waiting on router queue for slot.... +13:38:54 Sending to : +13:38:54 ============================================================================ +13:38:54 ============================================================================ +13:38:54 Slot Id : <449> +13:38:54 Transaction Type : REQUEST +13:38:54 Received From : +13:38:54 ============================================================================ +13:38:54 FNo. Len. Field Value +13:38:54 ============================================================================ +13:38:54 [ 1] [ 4] [0200] +13:38:54 [ 2] [ 16] [6213541000560790] +13:38:54 [ 3] [ 6] [010000] +13:38:54 [ 4] [ 12] [000050000000] +13:38:54 [ 7] [ 10] [0320133644] +13:38:54 [ 11] [ 6] [947001] +13:38:54 [ 12] [ 6] [133644] +13:38:54 [ 13] [ 4] [0320] +13:38:54 [ 15] [ 4] [0320] +13:38:54 [ 18] [ 4] [6011] +13:38:54 [ 19] [ 3] [418] +13:38:54 [ 22] [ 3] [021] +13:38:54 [ 25] [ 2] [01] +13:38:54 [ 28] [ 9] [D00002000] +13:38:54 [ 32] [ 6] [668899] +13:38:54 [ 35] [ 32] [6213541000560790=491212016079530] +13:38:54 [ 37] [ 12] [507901541698] +13:38:54 [ 41] [ 8] [03020016] +13:38:54 [ 42] [ 15] [APT ] +13:38:54 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +13:38:54 [ 49] [ 3] [418] +13:38:54 [ 52] [ 16] [3B14E125EBD73FC1] +13:38:54 ============================================================================ +13:38:54 + + +waiting on router queue for slot.... +13:38:54 Sending to : <0> +13:38:54 ============================================================================ +13:38:55 ============================================================================ +13:38:55 Slot Id : <449> +13:38:55 Transaction Type : RESPONSE +13:38:55 Received From : +13:38:55 ============================================================================ +13:38:55 FNo. Len. Field Value +13:38:55 ============================================================================ +13:38:55 [ 1] [ 4] [0210] +13:38:55 [ 2] [ 16] [6213541000560790] +13:38:55 [ 3] [ 6] [010000] +13:38:55 [ 4] [ 12] [000050000000] +13:38:55 [ 7] [ 10] [0320133644] +13:38:55 [ 11] [ 6] [947001] +13:38:55 [ 12] [ 6] [133644] +13:38:55 [ 13] [ 4] [0320] +13:38:55 [ 15] [ 4] [0320] +13:38:55 [ 18] [ 4] [6011] +13:38:55 [ 19] [ 3] [418] +13:38:55 [ 32] [ 6] [668899] +13:38:55 [ 35] [ 32] [6213541000560790=491212016079530] +13:38:55 [ 37] [ 12] [507901541698] +13:38:55 [ 38] [ 6] [271529] +13:38:55 [ 39] [ 2] [00] +13:38:55 [ 41] [ 8] [03020016] +13:38:55 [ 49] [ 3] [418] +13:38:55 [ 54] [ 40] [0001418C0000797351020002418C000079735102] +13:38:55 ============================================================================ +13:38:55 Sending to : +13:38:55 ============================================================================ +13:38:55 + + +waiting on router queue for slot.... +13:38:56 ============================================================================ +13:38:56 Slot Id : <449> +13:38:56 Transaction Type : RESPONSE +13:38:56 Received From : +13:38:56 ============================================================================ +13:38:56 FNo. Len. Field Value +13:38:56 ============================================================================ +13:38:56 [ 1] [ 4] [0210] +13:38:56 [ 2] [ 16] [6213541000560790] +13:38:56 [ 3] [ 6] [010000] +13:38:56 [ 4] [ 12] [000050000000] +13:38:56 [ 7] [ 10] [0320133644] +13:38:56 [ 11] [ 6] [947001] +13:38:56 [ 12] [ 6] [133644] +13:38:56 [ 13] [ 4] [0320] +13:38:56 [ 15] [ 4] [0320] +13:38:56 [ 18] [ 4] [6011] +13:38:56 [ 19] [ 3] [418] +13:38:56 [ 32] [ 6] [668899] +13:38:56 [ 35] [ 32] [6213541000560790=491212016079530] +13:38:56 [ 37] [ 12] [507901541698] +13:38:56 [ 38] [ 6] [271529] +13:38:56 [ 39] [ 2] [00] +13:38:56 [ 41] [ 8] [03020016] +13:38:56 [ 49] [ 3] [418] +13:38:56 [ 54] [ 40] [0001418C0000797351020002418C000079735102] +13:38:56 ============================================================================ +13:38:56 Calculate Source COMM Id = 4 +13:38:56 ============================================================================ +13:38:56 + + +waiting on router queue for slot.... +13:39:01 ============================================================================ +13:39:01 Slot Id : <460> +13:39:01 Transaction Type : REQUEST +13:39:01 Received From : +13:39:01 ============================================================================ +13:39:01 FNo. Len. Field Value +13:39:01 ============================================================================ +13:39:01 [ 1] [ 4] [0420] +13:39:01 [ 2] [ 16] [1808930600037402] +13:39:01 [ 3] [ 6] [010000] +13:39:01 [ 4] [ 12] [000020000000] +13:39:01 [ 7] [ 10] [0320133618] +13:39:01 [ 11] [ 6] [946978] +13:39:01 [ 12] [ 6] [133618] +13:39:01 [ 13] [ 4] [0320] +13:39:01 [ 15] [ 4] [0320] +13:39:01 [ 18] [ 4] [6011] +13:39:01 [ 19] [ 3] [418] +13:39:01 [ 22] [ 3] [021] +13:39:01 [ 25] [ 2] [01] +13:39:01 [ 28] [ 9] [C00002000] +13:39:01 [ 32] [ 6] [668899] +13:39:01 [ 35] [ 27] [1808930600037402=1803500799] +13:39:01 [ 37] [ 12] [507901443607] +13:39:01 [ 39] [ 2] [00] +13:39:01 [ 41] [ 8] [03414001] +13:39:01 [ 42] [ 15] [APT ] +13:39:01 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +13:39:01 [ 49] [ 3] [418] +13:39:01 [ 51] [ 3] [418] +13:39:01 [ 52] [ 16] [6939159A2235BCA5] +13:39:01 [ 90] [ 42] [020094697803201336180000066889900000000000] +13:39:01 ============================================================================ +13:39:01 + + +waiting on router queue for slot.... +13:39:01 Sending to : +13:39:01 ============================================================================ +13:39:02 ============================================================================ +13:39:02 Slot Id : <482> +13:39:02 Transaction Type : REQUEST +13:39:02 Received From : +13:39:02 ============================================================================ +13:39:02 FNo. Len. Field Value +13:39:02 ============================================================================ +13:39:02 [ 1] [ 4] [0800] +13:39:02 [ 2] [ 5] [02531] +13:39:02 [ 3] [ 6] [579138] +13:39:02 [ 7] [ 10] [0320063902] +13:39:02 [ 11] [ 6] [807204] +13:39:02 [ 15] [ 10] [0320063902] +13:39:02 [ 37] [ 11] [57913807204] +13:39:02 [ 70] [ 3] [001] +13:39:02 ============================================================================ +13:39:02 + + +waiting on router queue for slot.... +13:39:02 ============================================================================ +13:39:02 Slot Id : <482> +13:39:02 Transaction Type : RESPONSE +13:39:02 Received From : +13:39:02 ============================================================================ +13:39:02 FNo. Len. Field Value +13:39:02 ============================================================================ +13:39:02 [ 1] [ 4] [0810] +13:39:02 [ 7] [ 10] [0320063902] +13:39:02 [ 11] [ 6] [807204] +13:39:02 [ 15] [ 4] [0320] +13:39:02 [ 37] [ 12] [57913807204] +13:39:02 [ 39] [ 2] [00] +13:39:02 [ 70] [ 3] [001] +13:39:02 ============================================================================ +13:39:02 Sending to : +13:39:02 ============================================================================ +13:39:02 + + +waiting on router queue for slot.... +13:39:05 ============================================================================ +13:39:05 Slot Id : <432> +13:39:05 Transaction Type : REQUEST +13:39:05 Received From : +13:39:05 ============================================================================ +13:39:05 FNo. Len. Field Value +13:39:05 ============================================================================ +13:39:05 [ 1] [ 4] [0800] +13:39:05 [ 7] [ 10] [0320063813] +13:39:05 [ 11] [ 6] [156600] +13:39:05 [ 70] [ 3] [301] +13:39:05 ============================================================================ +13:39:05 + + +waiting on router queue for slot.... +13:39:05 Sending to : +13:39:05 ============================================================================ +13:39:05 ============================================================================ +13:39:05 Slot Id : <432> +13:39:05 Transaction Type : RESPONSE +13:39:05 Received From : +13:39:05 ============================================================================ +13:39:05 FNo. Len. Field Value +13:39:05 ============================================================================ +13:39:05 [ 1] [ 4] [0810] +13:39:05 [ 7] [ 10] [0320063813] +13:39:05 [ 11] [ 6] [156600] +13:39:05 [ 39] [ 2] [00] +13:39:05 [ 70] [ 3] [301] +13:39:05 ============================================================================ +13:39:05 Calculate Source COMM Id = 2 +13:39:05 ============================================================================ +13:39:05 + + +waiting on router queue for slot.... +13:39:06 ============================================================================ +13:39:06 Slot Id : <460> +13:39:06 Transaction Type : RESPONSE +13:39:06 Received From : +13:39:06 ============================================================================ +13:39:06 FNo. Len. Field Value +13:39:06 ============================================================================ +13:39:06 [ 1] [ 4] [0430] +13:39:06 [ 2] [ 16] [1808930600037402] +13:39:06 [ 3] [ 6] [010000] +13:39:06 [ 4] [ 12] [000020000000] +13:39:06 [ 7] [ 10] [0320133618] +13:39:06 [ 11] [ 6] [946978] +13:39:06 [ 12] [ 6] [133618] +13:39:06 [ 13] [ 4] [0320] +13:39:06 [ 15] [ 4] [0320] +13:39:06 [ 18] [ 4] [6011] +13:39:06 [ 19] [ 3] [418] +13:39:06 [ 22] [ 3] [021] +13:39:06 [ 25] [ 2] [01] +13:39:06 [ 28] [ 9] [C00002000] +13:39:06 [ 32] [ 6] [668899] +13:39:06 [ 35] [ 27] [1808930600037402=1803500799] +13:39:06 [ 37] [ 12] [507901443607] +13:39:06 [ 39] [ 2] [00] +13:39:06 [ 41] [ 8] [03414001] +13:39:06 [ 42] [ 15] [APT ] +13:39:06 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +13:39:06 [ 49] [ 3] [418] +13:39:06 [ 51] [ 3] [418] +13:39:06 [ 52] [ 16] [6939159A2235BCA5] +13:39:06 [ 90] [ 42] [020094697803201336180000066889900000000000] +13:39:06 ============================================================================ +13:39:06 Calculate Source COMM Id = 4 +13:39:06 ============================================================================ +13:39:06 + + +waiting on router queue for slot.... +13:39:11 ============================================================================ +13:39:11 Slot Id : <495> +13:39:11 Transaction Type : REQUEST +13:39:11 Received From : +13:39:11 ============================================================================ +13:39:11 FNo. Len. Field Value +13:39:11 ============================================================================ +13:39:11 [ 1] [ 4] [0200] +13:39:11 [ 2] [ 16] [6213541000649965] +13:39:11 [ 3] [ 6] [011000] +13:39:11 [ 4] [ 12] [000100000000] +13:39:11 [ 7] [ 10] [0320134658] +13:39:11 [ 11] [ 6] [259253] +13:39:11 [ 12] [ 6] [134658] +13:39:11 [ 13] [ 4] [0320] +13:39:11 [ 14] [ 4] [4912] +13:39:11 [ 15] [ 4] [0320] +13:39:11 [ 18] [ 4] [6011] +13:39:11 [ 22] [ 3] [900] +13:39:11 [ 25] [ 2] [02] +13:39:11 [ 28] [ 9] [D00002000] +13:39:11 [ 32] [ 6] [220699] +13:39:11 [ 35] [ 32] [6213541000649965=491212014996569] +13:39:11 [ 37] [ 12] [507900040596] +13:39:11 [ 41] [ 8] [01000400] +13:39:11 [ 42] [ 15] [APTRA ] +13:39:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:39:11 [ 49] [ 3] [418] +13:39:11 [ 52] [ 16] [FF09824D8F7DD583] +13:39:11 ============================================================================ +13:39:11 + + +waiting on router queue for slot.... +13:39:11 Sending to : +13:39:11 ============================================================================ +13:39:11 Sending to : +13:39:11 ============================================================================ +13:39:12 ============================================================================ +13:39:12 Slot Id : <495> +13:39:12 Transaction Type : REQUEST +13:39:12 Received From : +13:39:12 ============================================================================ +13:39:12 FNo. Len. Field Value +13:39:12 ============================================================================ +13:39:12 [ 1] [ 4] [0200] +13:39:12 [ 2] [ 16] [6213541000649965] +13:39:12 [ 3] [ 6] [011000] +13:39:12 [ 4] [ 12] [000100000000] +13:39:12 [ 7] [ 10] [0320134658] +13:39:12 [ 11] [ 6] [259253] +13:39:12 [ 12] [ 6] [134658] +13:39:12 [ 13] [ 4] [0320] +13:39:12 [ 14] [ 4] [4912] +13:39:12 [ 15] [ 4] [0320] +13:39:12 [ 18] [ 4] [6011] +13:39:12 [ 22] [ 3] [900] +13:39:12 [ 25] [ 2] [02] +13:39:12 [ 28] [ 9] [D00002000] +13:39:12 [ 32] [ 6] [220699] +13:39:12 [ 35] [ 32] [6213541000649965=491212014996569] +13:39:12 [ 37] [ 12] [507900040596] +13:39:12 [ 41] [ 8] [01000400] +13:39:12 [ 42] [ 15] [APTRA ] +13:39:12 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:39:12 [ 49] [ 3] [418] +13:39:12 [ 52] [ 16] [FF09824D8F7DD583] +13:39:12 ============================================================================ +13:39:12 + + +waiting on router queue for slot.... +13:39:12 Sending to : +13:39:12 ============================================================================ +13:39:12 ============================================================================ +13:39:12 Slot Id : <495> +13:39:12 Transaction Type : REQUEST +13:39:12 Received From : +13:39:12 ============================================================================ +13:39:12 FNo. Len. Field Value +13:39:12 ============================================================================ +13:39:12 [ 1] [ 4] [0200] +13:39:12 [ 2] [ 16] [6213541000649965] +13:39:12 [ 3] [ 6] [011000] +13:39:12 [ 4] [ 12] [000100000000] +13:39:12 [ 7] [ 10] [0320134658] +13:39:12 [ 11] [ 6] [259253] +13:39:12 [ 12] [ 6] [134658] +13:39:12 [ 13] [ 4] [0320] +13:39:12 [ 14] [ 4] [4912] +13:39:12 [ 15] [ 4] [0320] +13:39:12 [ 18] [ 4] [6011] +13:39:12 [ 22] [ 3] [900] +13:39:12 [ 25] [ 2] [02] +13:39:12 [ 28] [ 9] [D00002000] +13:39:12 [ 32] [ 6] [220699] +13:39:12 [ 35] [ 32] [6213541000649965=491212014996569] +13:39:12 [ 37] [ 12] [507900040596] +13:39:12 [ 41] [ 8] [01000400] +13:39:12 [ 42] [ 15] [APTRA ] +13:39:12 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:39:12 [ 49] [ 3] [418] +13:39:12 [ 52] [ 16] [B323414CE819BA97] +13:39:12 ============================================================================ +13:39:12 + + +waiting on router queue for slot.... +13:39:12 Sending to : <0> +13:39:12 ============================================================================ +13:39:12 ============================================================================ +13:39:12 Slot Id : <495> +13:39:12 Transaction Type : RESPONSE +13:39:12 Received From : +13:39:12 ============================================================================ +13:39:12 FNo. Len. Field Value +13:39:12 ============================================================================ +13:39:12 [ 1] [ 4] [0210] +13:39:12 [ 2] [ 16] [6213541000649965] +13:39:12 [ 3] [ 6] [011000] +13:39:12 [ 4] [ 12] [000100000000] +13:39:12 [ 7] [ 10] [0320134658] +13:39:12 [ 11] [ 6] [259253] +13:39:12 [ 12] [ 6] [134658] +13:39:12 [ 13] [ 4] [0320] +13:39:12 [ 15] [ 4] [0320] +13:39:12 [ 18] [ 4] [6011] +13:39:12 [ 32] [ 6] [220699] +13:39:12 [ 35] [ 32] [6213541000649965=491212014996569] +13:39:12 [ 37] [ 12] [507900040596] +13:39:12 [ 38] [ 6] [663217] +13:39:12 [ 39] [ 2] [00] +13:39:12 [ 41] [ 8] [01000400] +13:39:12 [ 49] [ 3] [418] +13:39:12 [ 54] [ 40] [1001418C0003301891451002418C000330189145] +13:39:12 ============================================================================ +13:39:12 Sending to : +13:39:12 ============================================================================ +13:39:12 + + +waiting on router queue for slot.... +13:39:14 ============================================================================ +13:39:14 Slot Id : <495> +13:39:14 Transaction Type : RESPONSE +13:39:14 Received From : +13:39:14 ============================================================================ +13:39:14 FNo. Len. Field Value +13:39:14 ============================================================================ +13:39:14 [ 1] [ 4] [0210] +13:39:14 [ 2] [ 16] [6213541000649965] +13:39:14 [ 3] [ 6] [011000] +13:39:14 [ 4] [ 12] [000100000000] +13:39:14 [ 7] [ 10] [0320134658] +13:39:14 [ 11] [ 6] [259253] +13:39:14 [ 12] [ 6] [134658] +13:39:14 [ 13] [ 4] [0320] +13:39:14 [ 15] [ 4] [0320] +13:39:14 [ 18] [ 4] [6011] +13:39:14 [ 32] [ 6] [220699] +13:39:14 [ 35] [ 32] [6213541000649965=491212014996569] +13:39:14 [ 37] [ 12] [507900040596] +13:39:14 [ 38] [ 6] [663217] +13:39:14 [ 39] [ 2] [00] +13:39:14 [ 41] [ 8] [01000400] +13:39:14 [ 49] [ 3] [418] +13:39:14 [ 54] [ 40] [1001418C0003301891451002418C000330189145] +13:39:14 ============================================================================ +13:39:14 Calculate Source COMM Id = 1 +13:39:14 ============================================================================ +13:39:14 + + +waiting on router queue for slot.... +13:39:17 ============================================================================ +13:39:17 Slot Id : <453> +13:39:17 Transaction Type : REQUEST +13:39:17 Received From : +13:39:17 ============================================================================ +13:39:17 FNo. Len. Field Value +13:39:17 ============================================================================ +13:39:17 [ 1] [ 4] [0800] +13:39:17 [ 7] [ 10] [0320063824] +13:39:17 [ 11] [ 6] [156601] +13:39:17 [ 70] [ 3] [301] +13:39:17 ============================================================================ +13:39:17 + + +waiting on router queue for slot.... +13:39:17 Sending to : +13:39:17 ============================================================================ +13:39:17 ============================================================================ +13:39:17 Slot Id : <453> +13:39:17 Transaction Type : RESPONSE +13:39:17 Received From : +13:39:17 ============================================================================ +13:39:17 FNo. Len. Field Value +13:39:17 ============================================================================ +13:39:17 [ 1] [ 4] [0810] +13:39:17 [ 7] [ 10] [0320063824] +13:39:17 [ 11] [ 6] [156601] +13:39:17 [ 39] [ 2] [00] +13:39:17 [ 70] [ 3] [301] +13:39:17 ============================================================================ +13:39:17 Calculate Source COMM Id = 2 +13:39:17 ============================================================================ +13:39:17 + + +waiting on router queue for slot.... +13:39:29 ============================================================================ +13:39:29 Slot Id : <488> +13:39:29 Transaction Type : REQUEST +13:39:29 Received From : +13:39:29 ============================================================================ +13:39:29 FNo. Len. Field Value +13:39:29 ============================================================================ +13:39:29 [ 1] [ 4] [0800] +13:39:29 [ 7] [ 10] [0320063836] +13:39:29 [ 11] [ 6] [156602] +13:39:29 [ 70] [ 3] [301] +13:39:29 ============================================================================ +13:39:29 + + +waiting on router queue for slot.... +13:39:29 Sending to : +13:39:29 ============================================================================ +13:39:29 ============================================================================ +13:39:29 Slot Id : <488> +13:39:29 Transaction Type : RESPONSE +13:39:29 Received From : +13:39:29 ============================================================================ +13:39:29 FNo. Len. Field Value +13:39:29 ============================================================================ +13:39:29 [ 1] [ 4] [0810] +13:39:29 [ 7] [ 10] [0320063836] +13:39:29 [ 11] [ 6] [156602] +13:39:29 [ 39] [ 2] [00] +13:39:29 [ 70] [ 3] [301] +13:39:29 ============================================================================ +13:39:29 Calculate Source COMM Id = 2 +13:39:29 ============================================================================ +13:39:29 + + +waiting on router queue for slot.... +13:39:39 ============================================================================ +13:39:39 Slot Id : <470> +13:39:39 Transaction Type : REQUEST +13:39:39 Received From : +13:39:39 ============================================================================ +13:39:39 FNo. Len. Field Value +13:39:39 ============================================================================ +13:39:39 [ 1] [ 4] [0800] +13:39:39 [ 7] [ 10] [0320063847] +13:39:39 [ 11] [ 6] [156603] +13:39:39 [ 70] [ 3] [301] +13:39:39 ============================================================================ +13:39:39 + + +waiting on router queue for slot.... +13:39:39 Sending to : +13:39:39 ============================================================================ +13:39:39 ============================================================================ +13:39:39 Slot Id : <470> +13:39:39 Transaction Type : RESPONSE +13:39:39 Received From : +13:39:39 ============================================================================ +13:39:39 FNo. Len. Field Value +13:39:39 ============================================================================ +13:39:39 [ 1] [ 4] [0810] +13:39:39 [ 7] [ 10] [0320063847] +13:39:39 [ 11] [ 6] [156603] +13:39:39 [ 39] [ 2] [00] +13:39:39 [ 70] [ 3] [301] +13:39:39 ============================================================================ +13:39:39 Calculate Source COMM Id = 2 +13:39:39 ============================================================================ +13:39:39 + + +waiting on router queue for slot.... +13:39:52 ============================================================================ +13:39:52 Slot Id : <484> +13:39:52 Transaction Type : REQUEST +13:39:52 Received From : +13:39:52 ============================================================================ +13:39:52 FNo. Len. Field Value +13:39:52 ============================================================================ +13:39:52 [ 1] [ 4] [0800] +13:39:52 [ 7] [ 10] [0320063859] +13:39:52 [ 11] [ 6] [156604] +13:39:52 [ 70] [ 3] [301] +13:39:52 ============================================================================ +13:39:52 + + +waiting on router queue for slot.... +13:39:52 Sending to : +13:39:52 ============================================================================ +13:39:52 ============================================================================ +13:39:52 Slot Id : <484> +13:39:52 Transaction Type : RESPONSE +13:39:52 Received From : +13:39:52 ============================================================================ +13:39:52 FNo. Len. Field Value +13:39:52 ============================================================================ +13:39:52 [ 1] [ 4] [0810] +13:39:52 [ 7] [ 10] [0320063859] +13:39:52 [ 11] [ 6] [156604] +13:39:52 [ 39] [ 2] [00] +13:39:52 [ 70] [ 3] [301] +13:39:52 ============================================================================ +13:39:52 Calculate Source COMM Id = 2 +13:39:52 ============================================================================ +13:39:52 + + +waiting on router queue for slot.... +13:39:54 ============================================================================ +13:39:54 Slot Id : <490> +13:39:54 Transaction Type : REQUEST +13:39:54 Received From : +13:39:54 ============================================================================ +13:39:54 FNo. Len. Field Value +13:39:54 ============================================================================ +13:39:54 [ 1] [ 4] [0800] +13:39:54 [ 7] [ 10] [0320064742] +13:39:54 [ 11] [ 6] [095992] +13:39:54 [ 37] [ 12] [57913095992] +13:39:54 [ 70] [ 3] [301] +13:39:54 ============================================================================ +13:39:54 + + +waiting on router queue for slot.... +13:39:54 Sending to : +13:39:54 ============================================================================ +13:39:54 ============================================================================ +13:39:54 Slot Id : <490> +13:39:54 Transaction Type : RESPONSE +13:39:54 Received From : +13:39:54 ============================================================================ +13:39:54 FNo. Len. Field Value +13:39:54 ============================================================================ +13:39:54 [ 1] [ 4] [0810] +13:39:54 [ 7] [ 10] [0320064742] +13:39:54 [ 11] [ 6] [095992] +13:39:54 [ 37] [ 12] [579130959920] +13:39:54 [ 39] [ 2] [00] +13:39:54 [ 70] [ 3] [810] +13:39:54 ============================================================================ +13:39:54 Calculate Source COMM Id = 1 +13:39:54 ============================================================================ +13:39:54 + + +waiting on router queue for slot.... +13:40:03 ============================================================================ +13:40:03 Slot Id : <463> +13:40:03 Transaction Type : REQUEST +13:40:03 Received From : +13:40:03 ============================================================================ +13:40:03 FNo. Len. Field Value +13:40:03 ============================================================================ +13:40:03 [ 1] [ 4] [0800] +13:40:03 [ 7] [ 10] [0320063910] +13:40:03 [ 11] [ 6] [156605] +13:40:03 [ 70] [ 3] [301] +13:40:03 ============================================================================ +13:40:03 + + +waiting on router queue for slot.... +13:40:03 Sending to : +13:40:03 ============================================================================ +13:40:03 ============================================================================ +13:40:03 Slot Id : <463> +13:40:03 Transaction Type : RESPONSE +13:40:03 Received From : +13:40:03 ============================================================================ +13:40:03 FNo. Len. Field Value +13:40:03 ============================================================================ +13:40:03 [ 1] [ 4] [0810] +13:40:03 [ 7] [ 10] [0320063910] +13:40:03 [ 11] [ 6] [156605] +13:40:03 [ 39] [ 2] [00] +13:40:03 [ 70] [ 3] [301] +13:40:03 ============================================================================ +13:40:03 Calculate Source COMM Id = 2 +13:40:03 ============================================================================ +13:40:03 + + +waiting on router queue for slot.... +13:40:04 ============================================================================ +13:40:04 Slot Id : <480> +13:40:04 Transaction Type : REQUEST +13:40:04 Received From : +13:40:04 ============================================================================ +13:40:04 FNo. Len. Field Value +13:40:04 ============================================================================ +13:40:04 [ 1] [ 4] [0800] +13:40:04 [ 2] [ 5] [02531] +13:40:04 [ 3] [ 6] [579138] +13:40:04 [ 7] [ 10] [0320064004] +13:40:04 [ 11] [ 6] [807205] +13:40:04 [ 15] [ 10] [0320064004] +13:40:04 [ 37] [ 11] [57913807205] +13:40:04 [ 70] [ 3] [001] +13:40:04 ============================================================================ +13:40:04 + + +waiting on router queue for slot.... +13:40:04 ============================================================================ +13:40:04 Slot Id : <480> +13:40:04 Transaction Type : RESPONSE +13:40:04 Received From : +13:40:04 ============================================================================ +13:40:04 FNo. Len. Field Value +13:40:04 ============================================================================ +13:40:04 [ 1] [ 4] [0810] +13:40:04 [ 7] [ 10] [0320064004] +13:40:04 [ 11] [ 6] [807205] +13:40:04 [ 15] [ 4] [0320] +13:40:04 [ 37] [ 12] [57913807205] +13:40:04 [ 39] [ 2] [00] +13:40:04 [ 70] [ 3] [001] +13:40:04 ============================================================================ +13:40:04 Sending to : +13:40:04 ============================================================================ +13:40:04 + + +waiting on router queue for slot.... +13:40:13 ============================================================================ +13:40:13 Slot Id : <448> +13:40:13 Transaction Type : REQUEST +13:40:13 Received From : +13:40:13 ============================================================================ +13:40:13 FNo. Len. Field Value +13:40:13 ============================================================================ +13:40:13 [ 1] [ 4] [0800] +13:40:13 [ 7] [ 10] [0320063921] +13:40:13 [ 11] [ 6] [156606] +13:40:13 [ 70] [ 3] [301] +13:40:13 ============================================================================ +13:40:13 + + +waiting on router queue for slot.... +13:40:13 Sending to : +13:40:13 ============================================================================ +13:40:13 ============================================================================ +13:40:13 Slot Id : <448> +13:40:13 Transaction Type : RESPONSE +13:40:13 Received From : +13:40:13 ============================================================================ +13:40:13 FNo. Len. Field Value +13:40:13 ============================================================================ +13:40:13 [ 1] [ 4] [0810] +13:40:13 [ 7] [ 10] [0320063921] +13:40:13 [ 11] [ 6] [156606] +13:40:13 [ 39] [ 2] [00] +13:40:13 [ 70] [ 3] [301] +13:40:13 ============================================================================ +13:40:13 Calculate Source COMM Id = 2 +13:40:13 ============================================================================ +13:40:13 + + +waiting on router queue for slot.... +13:40:18 ============================================================================ +13:40:18 Slot Id : <471> +13:40:18 Transaction Type : REQUEST +13:40:18 Received From : +13:40:18 ============================================================================ +13:40:18 FNo. Len. Field Value +13:40:18 ============================================================================ +13:40:18 [ 0] [ 4] [0420] +13:40:18 [ 1] [ 4] [0420] +13:40:18 [ 2] [ 16] [1808930600037402] +13:40:18 [ 3] [ 6] [010000] +13:40:18 [ 4] [ 12] [000020000000] +13:40:18 [ 6] [ 12] [000020000000] +13:40:18 [ 7] [ 10] [0320133618] +13:40:18 [ 11] [ 6] [946978] +13:40:18 [ 12] [ 6] [133618] +13:40:18 [ 13] [ 4] [0320] +13:40:18 [ 15] [ 4] [0320] +13:40:18 [ 18] [ 4] [6011] +13:40:18 [ 19] [ 3] [418] +13:40:18 [ 22] [ 3] [021] +13:40:18 [ 25] [ 2] [01] +13:40:18 [ 28] [ 9] [D00002000] +13:40:18 [ 32] [ 6] [668899] +13:40:18 [ 35] [ 27] [1808930600037402=1803500799] +13:40:18 [ 37] [ 12] [507901443607] +13:40:18 [ 41] [ 8] [03414001] +13:40:18 [ 42] [ 15] [APT ] +13:40:18 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +13:40:18 [ 49] [ 3] [418] +13:40:18 [ 52] [ 16] [B2E93E9264C507E4] +13:40:18 ============================================================================ +13:40:18 + + +waiting on router queue for slot.... +13:40:18 ============================================================================ +13:40:18 Slot Id : <471> +13:40:18 Transaction Type : RESPONSE +13:40:18 Received From : +13:40:18 ============================================================================ +13:40:18 FNo. Len. Field Value +13:40:18 ============================================================================ +13:40:18 [ 1] [ 4] [0430] +13:40:18 [ 2] [ 16] [1808930600037402] +13:40:18 [ 3] [ 6] [010000] +13:40:18 [ 4] [ 12] [000020000000] +13:40:18 [ 6] [ 12] [000020000000] +13:40:18 [ 7] [ 10] [0320133618] +13:40:18 [ 11] [ 6] [946978] +13:40:18 [ 12] [ 6] [133618] +13:40:18 [ 13] [ 4] [0320] +13:40:18 [ 19] [ 3] [418] +13:40:18 [ 32] [ 6] [668899] +13:40:18 [ 35] [ 27] [1808930600037402=1803500799] +13:40:18 [ 37] [ 12] [507901443607] +13:40:18 [ 38] [ 6] [946978] +13:40:18 [ 39] [ 2] [00] +13:40:18 [ 41] [ 8] [03414001] +13:40:18 [ 49] [ 3] [418] +13:40:18 ============================================================================ +13:40:18 Successfully send the slot [471] To REVERSAL Process +13:40:18 + + +waiting on router queue for slot.... +13:40:27 ============================================================================ +13:40:27 Slot Id : <0> +13:40:27 Transaction Type : REQUEST +13:40:27 Received From : +13:40:27 ============================================================================ +13:40:27 FNo. Len. Field Value +13:40:27 ============================================================================ +13:40:27 [ 1] [ 4] [0200] +13:40:27 [ 2] [ 16] [6213548000459865] +13:40:27 [ 3] [ 6] [010000] +13:40:27 [ 4] [ 12] [000010000000] +13:40:27 [ 7] [ 10] [0320133818] +13:40:27 [ 11] [ 6] [947075] +13:40:27 [ 12] [ 6] [133818] +13:40:27 [ 13] [ 4] [0320] +13:40:27 [ 15] [ 4] [0320] +13:40:27 [ 18] [ 4] [6011] +13:40:27 [ 19] [ 3] [418] +13:40:27 [ 22] [ 3] [021] +13:40:27 [ 25] [ 2] [01] +13:40:27 [ 28] [ 9] [D00002000] +13:40:27 [ 32] [ 6] [668899] +13:40:27 [ 35] [ 32] [6213548000459865=180712015986722] +13:40:27 [ 37] [ 12] [507901963586] +13:40:27 [ 41] [ 8] [03020019] +13:40:27 [ 42] [ 15] [APT ] +13:40:27 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:40:27 [ 49] [ 3] [418] +13:40:27 [ 52] [ 16] [84CD3DB8CCD1273E] +13:40:27 ============================================================================ +13:40:27 + + +waiting on router queue for slot.... +13:40:27 Sending to : +13:40:27 ============================================================================ +13:40:27 Sending to : +13:40:27 ============================================================================ +13:40:27 ============================================================================ +13:40:27 Slot Id : <0> +13:40:27 Transaction Type : REQUEST +13:40:27 Received From : +13:40:27 ============================================================================ +13:40:27 FNo. Len. Field Value +13:40:27 ============================================================================ +13:40:27 [ 1] [ 4] [0200] +13:40:27 [ 2] [ 16] [6213548000459865] +13:40:27 [ 3] [ 6] [010000] +13:40:27 [ 4] [ 12] [000010000000] +13:40:27 [ 7] [ 10] [0320133818] +13:40:27 [ 11] [ 6] [947075] +13:40:27 [ 12] [ 6] [133818] +13:40:27 [ 13] [ 4] [0320] +13:40:27 [ 15] [ 4] [0320] +13:40:27 [ 18] [ 4] [6011] +13:40:27 [ 19] [ 3] [418] +13:40:27 [ 22] [ 3] [021] +13:40:27 [ 25] [ 2] [01] +13:40:27 [ 28] [ 9] [D00002000] +13:40:27 [ 32] [ 6] [668899] +13:40:27 [ 35] [ 32] [6213548000459865=180712015986722] +13:40:27 [ 37] [ 12] [507901963586] +13:40:27 [ 41] [ 8] [03020019] +13:40:27 [ 42] [ 15] [APT ] +13:40:27 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:40:27 [ 49] [ 3] [418] +13:40:27 [ 52] [ 16] [84CD3DB8CCD1273E] +13:40:27 ============================================================================ +13:40:27 + + +waiting on router queue for slot.... +13:40:27 Sending to : +13:40:27 ============================================================================ +13:40:27 ============================================================================ +13:40:27 Slot Id : <0> +13:40:27 Transaction Type : REQUEST +13:40:27 Received From : +13:40:27 ============================================================================ +13:40:27 FNo. Len. Field Value +13:40:27 ============================================================================ +13:40:27 [ 1] [ 4] [0200] +13:40:27 [ 2] [ 16] [6213548000459865] +13:40:27 [ 3] [ 6] [010000] +13:40:27 [ 4] [ 12] [000010000000] +13:40:27 [ 7] [ 10] [0320133818] +13:40:27 [ 11] [ 6] [947075] +13:40:27 [ 12] [ 6] [133818] +13:40:27 [ 13] [ 4] [0320] +13:40:27 [ 15] [ 4] [0320] +13:40:27 [ 18] [ 4] [6011] +13:40:27 [ 19] [ 3] [418] +13:40:27 [ 22] [ 3] [021] +13:40:27 [ 25] [ 2] [01] +13:40:27 [ 28] [ 9] [D00002000] +13:40:27 [ 32] [ 6] [668899] +13:40:27 [ 35] [ 32] [6213548000459865=180712015986722] +13:40:27 [ 37] [ 12] [507901963586] +13:40:27 [ 41] [ 8] [03020019] +13:40:27 [ 42] [ 15] [APT ] +13:40:27 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:40:27 [ 49] [ 3] [418] +13:40:27 [ 52] [ 16] [F68A0E68D83FFD6B] +13:40:27 ============================================================================ +13:40:27 + + +waiting on router queue for slot.... +13:40:27 Sending to : <0> +13:40:27 ============================================================================ +13:40:28 ============================================================================ +13:40:28 Slot Id : <0> +13:40:28 Transaction Type : RESPONSE +13:40:28 Received From : +13:40:28 ============================================================================ +13:40:28 FNo. Len. Field Value +13:40:28 ============================================================================ +13:40:28 [ 1] [ 4] [0210] +13:40:28 [ 2] [ 16] [6213548000459865] +13:40:28 [ 3] [ 6] [010000] +13:40:28 [ 4] [ 12] [000010000000] +13:40:28 [ 7] [ 10] [0320133818] +13:40:28 [ 11] [ 6] [947075] +13:40:28 [ 12] [ 6] [133818] +13:40:28 [ 13] [ 4] [0320] +13:40:28 [ 15] [ 4] [0320] +13:40:28 [ 18] [ 4] [6011] +13:40:28 [ 19] [ 3] [418] +13:40:28 [ 32] [ 6] [668899] +13:40:28 [ 35] [ 32] [6213548000459865=180712015986722] +13:40:28 [ 37] [ 12] [507901963586] +13:40:28 [ 38] [ 6] [947075] +13:40:28 [ 39] [ 2] [51] +13:40:28 [ 41] [ 8] [03020019] +13:40:28 [ 49] [ 3] [418] +13:40:28 [ 54] [ 40] [0001418C0000052410860002418C000005241086] +13:40:28 ============================================================================ +13:40:28 Sending to : +13:40:28 ============================================================================ +13:40:28 + + +waiting on router queue for slot.... +13:40:29 ============================================================================ +13:40:29 Slot Id : <0> +13:40:29 Transaction Type : RESPONSE +13:40:29 Received From : +13:40:29 ============================================================================ +13:40:29 FNo. Len. Field Value +13:40:29 ============================================================================ +13:40:29 [ 1] [ 4] [0210] +13:40:29 [ 2] [ 16] [6213548000459865] +13:40:29 [ 3] [ 6] [010000] +13:40:29 [ 4] [ 12] [000010000000] +13:40:29 [ 7] [ 10] [0320133818] +13:40:29 [ 11] [ 6] [947075] +13:40:29 [ 12] [ 6] [133818] +13:40:29 [ 13] [ 4] [0320] +13:40:29 [ 15] [ 4] [0320] +13:40:29 [ 18] [ 4] [6011] +13:40:29 [ 19] [ 3] [418] +13:40:29 [ 32] [ 6] [668899] +13:40:29 [ 35] [ 32] [6213548000459865=180712015986722] +13:40:29 [ 37] [ 12] [507901963586] +13:40:29 [ 38] [ 6] [947075] +13:40:29 [ 39] [ 2] [51] +13:40:29 [ 41] [ 8] [03020019] +13:40:29 [ 49] [ 3] [418] +13:40:29 [ 54] [ 40] [0001418C0000052410860002418C000005241086] +13:40:29 ============================================================================ +13:40:29 Calculate Source COMM Id = 4 +13:40:29 ============================================================================ +13:40:29 + + +waiting on router queue for slot.... +13:40:29 ============================================================================ +13:40:29 Slot Id : <479> +13:40:29 Transaction Type : REQUEST +13:40:29 Received From : +13:40:29 ============================================================================ +13:40:29 FNo. Len. Field Value +13:40:29 ============================================================================ +13:40:29 [ 1] [ 4] [0800] +13:40:29 [ 7] [ 10] [0320063936] +13:40:29 [ 11] [ 6] [156607] +13:40:29 [ 70] [ 3] [301] +13:40:29 ============================================================================ +13:40:29 + + +waiting on router queue for slot.... +13:40:29 Sending to : +13:40:29 ============================================================================ +13:40:29 ============================================================================ +13:40:29 Slot Id : <479> +13:40:29 Transaction Type : RESPONSE +13:40:29 Received From : +13:40:29 ============================================================================ +13:40:29 FNo. Len. Field Value +13:40:29 ============================================================================ +13:40:29 [ 1] [ 4] [0810] +13:40:29 [ 7] [ 10] [0320063936] +13:40:29 [ 11] [ 6] [156607] +13:40:29 [ 39] [ 2] [00] +13:40:29 [ 70] [ 3] [301] +13:40:29 ============================================================================ +13:40:29 Calculate Source COMM Id = 2 +13:40:29 ============================================================================ +13:40:29 + + +waiting on router queue for slot.... +13:40:44 ============================================================================ +13:40:44 Slot Id : <2> +13:40:44 Transaction Type : REQUEST +13:40:44 Received From : +13:40:44 ============================================================================ +13:40:44 FNo. Len. Field Value +13:40:44 ============================================================================ +13:40:44 [ 1] [ 4] [0800] +13:40:44 [ 7] [ 10] [0320063952] +13:40:44 [ 11] [ 6] [156608] +13:40:44 [ 70] [ 3] [301] +13:40:44 ============================================================================ +13:40:44 + + +waiting on router queue for slot.... +13:40:44 Sending to : +13:40:44 ============================================================================ +13:40:44 ============================================================================ +13:40:44 Slot Id : <2> +13:40:44 Transaction Type : RESPONSE +13:40:44 Received From : +13:40:44 ============================================================================ +13:40:44 FNo. Len. Field Value +13:40:44 ============================================================================ +13:40:44 [ 1] [ 4] [0810] +13:40:44 [ 7] [ 10] [0320063952] +13:40:44 [ 11] [ 6] [156608] +13:40:44 [ 39] [ 2] [00] +13:40:44 [ 70] [ 3] [301] +13:40:44 ============================================================================ +13:40:44 Calculate Source COMM Id = 2 +13:40:44 ============================================================================ +13:40:44 + + +waiting on router queue for slot.... +13:41:00 ============================================================================ +13:41:00 Slot Id : <493> +13:41:00 Transaction Type : REQUEST +13:41:00 Received From : +13:41:00 ============================================================================ +13:41:00 FNo. Len. Field Value +13:41:00 ============================================================================ +13:41:00 [ 1] [ 4] [0800] +13:41:00 [ 7] [ 10] [0320064007] +13:41:00 [ 11] [ 6] [156609] +13:41:00 [ 70] [ 3] [301] +13:41:00 ============================================================================ +13:41:00 + + +waiting on router queue for slot.... +13:41:00 Sending to : +13:41:00 ============================================================================ +13:41:00 ============================================================================ +13:41:00 Slot Id : <493> +13:41:00 Transaction Type : RESPONSE +13:41:00 Received From : +13:41:00 ============================================================================ +13:41:00 FNo. Len. Field Value +13:41:00 ============================================================================ +13:41:00 [ 1] [ 4] [0810] +13:41:00 [ 7] [ 10] [0320064007] +13:41:00 [ 11] [ 6] [156609] +13:41:00 [ 39] [ 2] [00] +13:41:00 [ 70] [ 3] [301] +13:41:00 ============================================================================ +13:41:00 Calculate Source COMM Id = 2 +13:41:00 ============================================================================ +13:41:00 + + +waiting on router queue for slot.... +13:41:05 ============================================================================ +13:41:05 Slot Id : <1> +13:41:05 Transaction Type : REQUEST +13:41:05 Received From : +13:41:05 ============================================================================ +13:41:05 FNo. Len. Field Value +13:41:05 ============================================================================ +13:41:05 [ 1] [ 4] [0200] +13:41:05 [ 2] [ 16] [6213548000459865] +13:41:05 [ 3] [ 6] [010000] +13:41:05 [ 4] [ 12] [000002000000] +13:41:05 [ 7] [ 10] [0320133856] +13:41:05 [ 11] [ 6] [947110] +13:41:05 [ 12] [ 6] [133856] +13:41:05 [ 13] [ 4] [0320] +13:41:05 [ 15] [ 4] [0320] +13:41:05 [ 18] [ 4] [6011] +13:41:05 [ 19] [ 3] [418] +13:41:05 [ 22] [ 3] [021] +13:41:05 [ 25] [ 2] [01] +13:41:05 [ 28] [ 9] [D00002000] +13:41:05 [ 32] [ 6] [668899] +13:41:05 [ 35] [ 32] [6213548000459865=180712015986722] +13:41:05 [ 37] [ 12] [507901963587] +13:41:05 [ 41] [ 8] [03020019] +13:41:05 [ 42] [ 15] [APT ] +13:41:05 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:41:05 [ 49] [ 3] [418] +13:41:05 [ 52] [ 16] [84CD3DB8CCD1273E] +13:41:05 ============================================================================ +13:41:05 + + +waiting on router queue for slot.... +13:41:05 Sending to : +13:41:05 ============================================================================ +13:41:05 Sending to : +13:41:05 ============================================================================ +13:41:06 ============================================================================ +13:41:06 Slot Id : <1> +13:41:06 Transaction Type : REQUEST +13:41:06 Received From : +13:41:06 ============================================================================ +13:41:06 FNo. Len. Field Value +13:41:06 ============================================================================ +13:41:06 [ 1] [ 4] [0200] +13:41:06 [ 2] [ 16] [6213548000459865] +13:41:06 [ 3] [ 6] [010000] +13:41:06 [ 4] [ 12] [000002000000] +13:41:06 [ 7] [ 10] [0320133856] +13:41:06 [ 11] [ 6] [947110] +13:41:06 [ 12] [ 6] [133856] +13:41:06 [ 13] [ 4] [0320] +13:41:06 [ 15] [ 4] [0320] +13:41:06 [ 18] [ 4] [6011] +13:41:06 [ 19] [ 3] [418] +13:41:06 [ 22] [ 3] [021] +13:41:06 [ 25] [ 2] [01] +13:41:06 [ 28] [ 9] [D00002000] +13:41:06 [ 32] [ 6] [668899] +13:41:06 [ 35] [ 32] [6213548000459865=180712015986722] +13:41:06 [ 37] [ 12] [507901963587] +13:41:06 [ 41] [ 8] [03020019] +13:41:06 [ 42] [ 15] [APT ] +13:41:06 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:41:06 [ 49] [ 3] [418] +13:41:06 [ 52] [ 16] [84CD3DB8CCD1273E] +13:41:06 ============================================================================ +13:41:06 + + +waiting on router queue for slot.... +13:41:06 Sending to : +13:41:06 ============================================================================ +13:41:06 ============================================================================ +13:41:06 Slot Id : <1> +13:41:06 Transaction Type : REQUEST +13:41:06 Received From : +13:41:06 ============================================================================ +13:41:06 FNo. Len. Field Value +13:41:06 ============================================================================ +13:41:06 [ 1] [ 4] [0200] +13:41:06 [ 2] [ 16] [6213548000459865] +13:41:06 [ 3] [ 6] [010000] +13:41:06 [ 4] [ 12] [000002000000] +13:41:06 [ 7] [ 10] [0320133856] +13:41:06 [ 11] [ 6] [947110] +13:41:06 [ 12] [ 6] [133856] +13:41:06 [ 13] [ 4] [0320] +13:41:06 [ 15] [ 4] [0320] +13:41:06 [ 18] [ 4] [6011] +13:41:06 [ 19] [ 3] [418] +13:41:06 [ 22] [ 3] [021] +13:41:06 [ 25] [ 2] [01] +13:41:06 [ 28] [ 9] [D00002000] +13:41:06 [ 32] [ 6] [668899] +13:41:06 [ 35] [ 32] [6213548000459865=180712015986722] +13:41:06 [ 37] [ 12] [507901963587] +13:41:06 [ 41] [ 8] [03020019] +13:41:06 [ 42] [ 15] [APT ] +13:41:06 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:41:06 [ 49] [ 3] [418] +13:41:06 [ 52] [ 16] [F68A0E68D83FFD6B] +13:41:06 ============================================================================ +13:41:06 + + +waiting on router queue for slot.... +13:41:06 Sending to : <0> +13:41:06 ============================================================================ +13:41:06 ============================================================================ +13:41:06 Slot Id : <1> +13:41:06 Transaction Type : RESPONSE +13:41:06 Received From : +13:41:06 ============================================================================ +13:41:06 FNo. Len. Field Value +13:41:06 ============================================================================ +13:41:06 [ 1] [ 4] [0210] +13:41:06 [ 2] [ 16] [6213548000459865] +13:41:06 [ 3] [ 6] [010000] +13:41:06 [ 4] [ 12] [000002000000] +13:41:06 [ 7] [ 10] [0320133856] +13:41:06 [ 11] [ 6] [947110] +13:41:06 [ 12] [ 6] [133856] +13:41:06 [ 13] [ 4] [0320] +13:41:06 [ 15] [ 4] [0320] +13:41:06 [ 18] [ 4] [6011] +13:41:06 [ 19] [ 3] [418] +13:41:06 [ 32] [ 6] [668899] +13:41:06 [ 35] [ 32] [6213548000459865=180712015986722] +13:41:06 [ 37] [ 12] [507901963587] +13:41:06 [ 38] [ 6] [947110] +13:41:06 [ 39] [ 2] [51] +13:41:06 [ 41] [ 8] [03020019] +13:41:06 [ 49] [ 3] [418] +13:41:06 [ 54] [ 40] [0001418C0000052410860002418C000005241086] +13:41:06 ============================================================================ +13:41:06 Sending to : +13:41:06 ============================================================================ +13:41:06 + + +waiting on router queue for slot.... +13:41:06 ============================================================================ +13:41:06 Slot Id : <498> +13:41:06 Transaction Type : REQUEST +13:41:06 Received From : +13:41:06 ============================================================================ +13:41:06 FNo. Len. Field Value +13:41:06 ============================================================================ +13:41:06 [ 1] [ 4] [0800] +13:41:06 [ 2] [ 5] [02531] +13:41:06 [ 3] [ 6] [579138] +13:41:06 [ 7] [ 10] [0320064106] +13:41:06 [ 11] [ 6] [807206] +13:41:06 [ 15] [ 10] [0320064106] +13:41:06 [ 37] [ 11] [57913807206] +13:41:06 [ 70] [ 3] [001] +13:41:06 ============================================================================ +13:41:06 + + +waiting on router queue for slot.... +13:41:06 ============================================================================ +13:41:06 Slot Id : <498> +13:41:06 Transaction Type : RESPONSE +13:41:06 Received From : +13:41:06 ============================================================================ +13:41:06 FNo. Len. Field Value +13:41:06 ============================================================================ +13:41:06 [ 1] [ 4] [0810] +13:41:06 [ 7] [ 10] [0320064106] +13:41:06 [ 11] [ 6] [807206] +13:41:06 [ 15] [ 4] [0320] +13:41:06 [ 37] [ 12] [57913807206] +13:41:06 [ 39] [ 2] [00] +13:41:06 [ 70] [ 3] [001] +13:41:06 ============================================================================ +13:41:06 Sending to : +13:41:06 ============================================================================ +13:41:06 + + +waiting on router queue for slot.... +13:41:07 ============================================================================ +13:41:07 Slot Id : <1> +13:41:07 Transaction Type : RESPONSE +13:41:07 Received From : +13:41:07 ============================================================================ +13:41:07 FNo. Len. Field Value +13:41:07 ============================================================================ +13:41:07 [ 1] [ 4] [0210] +13:41:07 [ 2] [ 16] [6213548000459865] +13:41:07 [ 3] [ 6] [010000] +13:41:07 [ 4] [ 12] [000002000000] +13:41:07 [ 7] [ 10] [0320133856] +13:41:07 [ 11] [ 6] [947110] +13:41:07 [ 12] [ 6] [133856] +13:41:07 [ 13] [ 4] [0320] +13:41:07 [ 15] [ 4] [0320] +13:41:07 [ 18] [ 4] [6011] +13:41:07 [ 19] [ 3] [418] +13:41:07 [ 32] [ 6] [668899] +13:41:07 [ 35] [ 32] [6213548000459865=180712015986722] +13:41:07 [ 37] [ 12] [507901963587] +13:41:07 [ 38] [ 6] [947110] +13:41:07 [ 39] [ 2] [51] +13:41:07 [ 41] [ 8] [03020019] +13:41:07 [ 49] [ 3] [418] +13:41:07 [ 54] [ 40] [0001418C0000052410860002418C000005241086] +13:41:07 ============================================================================ +13:41:07 Calculate Source COMM Id = 4 +13:41:07 ============================================================================ +13:41:07 + + +waiting on router queue for slot.... +13:41:11 ============================================================================ +13:41:11 Slot Id : <4> +13:41:11 Transaction Type : REQUEST +13:41:11 Received From : +13:41:11 ============================================================================ +13:41:11 FNo. Len. Field Value +13:41:11 ============================================================================ +13:41:11 [ 1] [ 4] [0800] +13:41:11 [ 7] [ 10] [0320064018] +13:41:11 [ 11] [ 6] [156610] +13:41:11 [ 70] [ 3] [301] +13:41:11 ============================================================================ +13:41:11 + + +waiting on router queue for slot.... +13:41:11 Sending to : +13:41:11 ============================================================================ +13:41:11 ============================================================================ +13:41:11 Slot Id : <4> +13:41:11 Transaction Type : RESPONSE +13:41:11 Received From : +13:41:11 ============================================================================ +13:41:11 FNo. Len. Field Value +13:41:11 ============================================================================ +13:41:11 [ 1] [ 4] [0810] +13:41:11 [ 7] [ 10] [0320064018] +13:41:11 [ 11] [ 6] [156610] +13:41:11 [ 39] [ 2] [00] +13:41:11 [ 70] [ 3] [301] +13:41:11 ============================================================================ +13:41:11 Calculate Source COMM Id = 2 +13:41:11 ============================================================================ +13:41:11 + + +waiting on router queue for slot.... +13:41:21 ============================================================================ +13:41:21 Slot Id : <473> +13:41:21 Transaction Type : REQUEST +13:41:21 Received From : +13:41:21 ============================================================================ +13:41:21 FNo. Len. Field Value +13:41:21 ============================================================================ +13:41:21 [ 1] [ 4] [0800] +13:41:21 [ 7] [ 10] [0320063912] +13:41:21 [ 11] [ 6] [052897] +13:41:21 [ 37] [ 12] [57913052897] +13:41:21 [ 70] [ 3] [301] +13:41:21 ============================================================================ +13:41:21 + + +waiting on router queue for slot.... +13:41:21 Sending to : +13:41:21 ============================================================================ +13:41:21 ============================================================================ +13:41:21 Slot Id : <473> +13:41:21 Transaction Type : RESPONSE +13:41:21 Received From : +13:41:21 ============================================================================ +13:41:21 FNo. Len. Field Value +13:41:21 ============================================================================ +13:41:21 [ 1] [ 4] [0810] +13:41:21 [ 7] [ 10] [0320063912] +13:41:21 [ 11] [ 6] [052897] +13:41:21 [ 37] [ 12] [579130528970] +13:41:21 [ 39] [ 2] [00] +13:41:21 [ 70] [ 3] [810] +13:41:21 ============================================================================ +13:41:21 Calculate Source COMM Id = 4 +13:41:21 ============================================================================ +13:41:21 + + +waiting on router queue for slot.... +13:41:22 ============================================================================ +13:41:22 Slot Id : <489> +13:41:22 Transaction Type : REQUEST +13:41:22 Received From : +13:41:22 ============================================================================ +13:41:22 FNo. Len. Field Value +13:41:22 ============================================================================ +13:41:22 [ 1] [ 4] [0200] +13:41:22 [ 2] [ 16] [6213541000709470] +13:41:22 [ 3] [ 6] [010000] +13:41:22 [ 4] [ 12] [000010000000] +13:41:22 [ 7] [ 10] [0320064028] +13:41:22 [ 11] [ 6] [269360] +13:41:22 [ 12] [ 6] [134028] +13:41:22 [ 13] [ 4] [0320] +13:41:22 [ 14] [ 4] [4912] +13:41:22 [ 15] [ 4] [0320] +13:41:22 [ 18] [ 4] [6011] +13:41:22 [ 19] [ 3] [418] +13:41:22 [ 22] [ 3] [021] +13:41:22 [ 25] [ 2] [01] +13:41:22 [ 28] [ 9] [D00002000] +13:41:22 [ 32] [ 6] [180893] +13:41:22 [ 35] [ 32] [6213541000709470=491212010947645] +13:41:22 [ 37] [ 12] [507906269360] +13:41:22 [ 41] [ 8] [0441VT52] +13:41:22 [ 42] [ 15] [999999 ] +13:41:22 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +13:41:22 [ 49] [ 3] [418] +13:41:22 [ 52] [ 16] [4F37ADC9EFB1DDCD] +13:41:22 ============================================================================ +13:41:22 + + +waiting on router queue for slot.... +13:41:22 Sending to : +13:41:22 ============================================================================ +13:41:22 Sending to : +13:41:22 ============================================================================ +13:41:22 ============================================================================ +13:41:22 Slot Id : <476> +13:41:22 Transaction Type : REQUEST +13:41:22 Received From : +13:41:22 ============================================================================ +13:41:22 FNo. Len. Field Value +13:41:22 ============================================================================ +13:41:22 [ 1] [ 4] [0800] +13:41:22 [ 7] [ 10] [0320064029] +13:41:22 [ 11] [ 6] [156611] +13:41:22 [ 70] [ 3] [301] +13:41:22 ============================================================================ +13:41:22 + + +waiting on router queue for slot.... +13:41:22 Sending to : +13:41:22 ============================================================================ +13:41:22 ============================================================================ +13:41:22 Slot Id : <476> +13:41:22 Transaction Type : RESPONSE +13:41:22 Received From : +13:41:22 ============================================================================ +13:41:22 FNo. Len. Field Value +13:41:22 ============================================================================ +13:41:22 [ 1] [ 4] [0810] +13:41:22 [ 7] [ 10] [0320064029] +13:41:22 [ 11] [ 6] [156611] +13:41:22 [ 39] [ 2] [00] +13:41:22 [ 70] [ 3] [301] +13:41:22 ============================================================================ +13:41:22 Calculate Source COMM Id = 2 +13:41:22 ============================================================================ +13:41:22 + + +waiting on router queue for slot.... +13:41:22 ============================================================================ +13:41:22 Slot Id : <489> +13:41:22 Transaction Type : REQUEST +13:41:22 Received From : +13:41:22 ============================================================================ +13:41:22 FNo. Len. Field Value +13:41:22 ============================================================================ +13:41:22 [ 1] [ 4] [0200] +13:41:22 [ 2] [ 16] [6213541000709470] +13:41:22 [ 3] [ 6] [010000] +13:41:22 [ 4] [ 12] [000010000000] +13:41:22 [ 7] [ 10] [0320064028] +13:41:22 [ 11] [ 6] [269360] +13:41:22 [ 12] [ 6] [134028] +13:41:22 [ 13] [ 4] [0320] +13:41:22 [ 14] [ 4] [4912] +13:41:22 [ 15] [ 4] [0320] +13:41:22 [ 18] [ 4] [6011] +13:41:22 [ 19] [ 3] [418] +13:41:22 [ 22] [ 3] [021] +13:41:22 [ 25] [ 2] [01] +13:41:22 [ 28] [ 9] [D00002000] +13:41:22 [ 32] [ 6] [180893] +13:41:22 [ 35] [ 32] [6213541000709470=491212010947645] +13:41:22 [ 37] [ 12] [507906269360] +13:41:22 [ 41] [ 8] [0441VT52] +13:41:22 [ 42] [ 15] [999999 ] +13:41:22 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +13:41:22 [ 49] [ 3] [418] +13:41:22 [ 52] [ 16] [4F37ADC9EFB1DDCD] +13:41:22 ============================================================================ +13:41:22 + + +waiting on router queue for slot.... +13:41:22 Sending to : +13:41:22 ============================================================================ +13:41:22 ============================================================================ +13:41:22 Slot Id : <489> +13:41:22 Transaction Type : REQUEST +13:41:22 Received From : +13:41:22 ============================================================================ +13:41:22 FNo. Len. Field Value +13:41:22 ============================================================================ +13:41:22 [ 1] [ 4] [0200] +13:41:22 [ 2] [ 16] [6213541000709470] +13:41:22 [ 3] [ 6] [010000] +13:41:22 [ 4] [ 12] [000010000000] +13:41:22 [ 7] [ 10] [0320064028] +13:41:22 [ 11] [ 6] [269360] +13:41:22 [ 12] [ 6] [134028] +13:41:22 [ 13] [ 4] [0320] +13:41:22 [ 14] [ 4] [4912] +13:41:22 [ 15] [ 4] [0320] +13:41:22 [ 18] [ 4] [6011] +13:41:22 [ 19] [ 3] [418] +13:41:22 [ 22] [ 3] [021] +13:41:22 [ 25] [ 2] [01] +13:41:22 [ 28] [ 9] [D00002000] +13:41:22 [ 32] [ 6] [180893] +13:41:22 [ 35] [ 32] [6213541000709470=491212010947645] +13:41:22 [ 37] [ 12] [507906269360] +13:41:22 [ 41] [ 8] [0441VT52] +13:41:22 [ 42] [ 15] [999999 ] +13:41:22 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +13:41:22 [ 49] [ 3] [418] +13:41:22 [ 52] [ 16] [A11623F4B4BB4CA2] +13:41:22 ============================================================================ +13:41:22 + + +waiting on router queue for slot.... +13:41:22 Sending to : <0> +13:41:22 ============================================================================ +13:41:23 ============================================================================ +13:41:23 Slot Id : <489> +13:41:23 Transaction Type : RESPONSE +13:41:23 Received From : +13:41:23 ============================================================================ +13:41:23 FNo. Len. Field Value +13:41:23 ============================================================================ +13:41:23 [ 1] [ 4] [0210] +13:41:23 [ 2] [ 16] [6213541000709470] +13:41:23 [ 3] [ 6] [010000] +13:41:23 [ 4] [ 12] [000010000000] +13:41:23 [ 7] [ 10] [0320064028] +13:41:23 [ 11] [ 6] [269360] +13:41:23 [ 12] [ 6] [134028] +13:41:23 [ 13] [ 4] [0320] +13:41:23 [ 15] [ 4] [0320] +13:41:23 [ 18] [ 4] [6011] +13:41:23 [ 19] [ 3] [418] +13:41:23 [ 32] [ 6] [180893] +13:41:23 [ 35] [ 32] [6213541000709470=491212010947645] +13:41:23 [ 37] [ 12] [507906269360] +13:41:23 [ 38] [ 6] [023253] +13:41:23 [ 39] [ 2] [00] +13:41:23 [ 41] [ 8] [0441VT52] +13:41:23 [ 49] [ 3] [418] +13:41:23 [ 54] [ 40] [0001418C0008065166670002418C000806516667] +13:41:23 ============================================================================ +13:41:23 Sending to : +13:41:23 ============================================================================ +13:41:23 + + +waiting on router queue for slot.... +13:41:24 ============================================================================ +13:41:24 Slot Id : <489> +13:41:24 Transaction Type : RESPONSE +13:41:24 Received From : +13:41:24 ============================================================================ +13:41:24 FNo. Len. Field Value +13:41:24 ============================================================================ +13:41:24 [ 1] [ 4] [0210] +13:41:24 [ 2] [ 16] [6213541000709470] +13:41:24 [ 3] [ 6] [010000] +13:41:24 [ 4] [ 12] [000010000000] +13:41:24 [ 7] [ 10] [0320064028] +13:41:24 [ 11] [ 6] [269360] +13:41:24 [ 12] [ 6] [134028] +13:41:24 [ 13] [ 4] [0320] +13:41:24 [ 15] [ 4] [0320] +13:41:24 [ 18] [ 4] [6011] +13:41:24 [ 19] [ 3] [418] +13:41:24 [ 32] [ 6] [180893] +13:41:24 [ 35] [ 32] [6213541000709470=491212010947645] +13:41:24 [ 37] [ 12] [507906269360] +13:41:24 [ 38] [ 6] [023253] +13:41:24 [ 39] [ 2] [00] +13:41:24 [ 41] [ 8] [0441VT52] +13:41:24 [ 49] [ 3] [418] +13:41:24 [ 54] [ 40] [0001418C0008065166670002418C000806516667] +13:41:24 ============================================================================ +13:41:24 Calculate Source COMM Id = 2 +13:41:24 ============================================================================ +13:41:24 + + +waiting on router queue for slot.... +13:41:38 ============================================================================ +13:41:38 Slot Id : <483> +13:41:38 Transaction Type : REQUEST +13:41:38 Received From : +13:41:38 ============================================================================ +13:41:38 FNo. Len. Field Value +13:41:38 ============================================================================ +13:41:38 [ 1] [ 4] [0800] +13:41:38 [ 7] [ 10] [0320064045] +13:41:38 [ 11] [ 6] [156612] +13:41:38 [ 70] [ 3] [301] +13:41:38 ============================================================================ +13:41:38 + + +waiting on router queue for slot.... +13:41:38 Sending to : +13:41:38 ============================================================================ +13:41:38 ============================================================================ +13:41:38 Slot Id : <483> +13:41:38 Transaction Type : RESPONSE +13:41:38 Received From : +13:41:38 ============================================================================ +13:41:38 FNo. Len. Field Value +13:41:38 ============================================================================ +13:41:38 [ 1] [ 4] [0810] +13:41:38 [ 7] [ 10] [0320064045] +13:41:38 [ 11] [ 6] [156612] +13:41:38 [ 39] [ 2] [00] +13:41:38 [ 70] [ 3] [301] +13:41:38 ============================================================================ +13:41:38 Calculate Source COMM Id = 2 +13:41:38 ============================================================================ +13:41:38 + + +waiting on router queue for slot.... +13:41:42 ============================================================================ +13:41:42 Slot Id : <486> +13:41:42 Transaction Type : REQUEST +13:41:42 Received From : +13:41:42 ============================================================================ +13:41:42 FNo. Len. Field Value +13:41:42 ============================================================================ +13:41:42 [ 1] [ 4] [0200] +13:41:42 [ 2] [ 16] [6213548000248698] +13:41:42 [ 3] [ 6] [010000] +13:41:42 [ 4] [ 12] [000050000000] +13:41:42 [ 7] [ 10] [0320133933] +13:41:42 [ 11] [ 6] [947135] +13:41:42 [ 12] [ 6] [133933] +13:41:42 [ 13] [ 4] [0320] +13:41:42 [ 15] [ 4] [0320] +13:41:42 [ 18] [ 4] [6011] +13:41:42 [ 19] [ 3] [418] +13:41:42 [ 22] [ 3] [021] +13:41:42 [ 25] [ 2] [01] +13:41:42 [ 28] [ 9] [D00002000] +13:41:42 [ 32] [ 6] [668899] +13:41:42 [ 35] [ 32] [6213548000248698=180112014869026] +13:41:42 [ 37] [ 12] [507901343778] +13:41:42 [ 41] [ 8] [03307001] +13:41:42 [ 42] [ 15] [APT ] +13:41:42 [ 43] [ 40] [ KHENTHAO UNIT XAYYABOURYK] +13:41:42 [ 49] [ 3] [418] +13:41:42 [ 52] [ 16] [BC08A7324519FDF0] +13:41:42 ============================================================================ +13:41:42 + + +waiting on router queue for slot.... +13:41:42 Sending to : +13:41:42 ============================================================================ +13:41:42 Sending to : +13:41:42 ============================================================================ +13:41:43 ============================================================================ +13:41:43 Slot Id : <486> +13:41:43 Transaction Type : REQUEST +13:41:43 Received From : +13:41:43 ============================================================================ +13:41:43 FNo. Len. Field Value +13:41:43 ============================================================================ +13:41:43 [ 1] [ 4] [0200] +13:41:43 [ 2] [ 16] [6213548000248698] +13:41:43 [ 3] [ 6] [010000] +13:41:43 [ 4] [ 12] [000050000000] +13:41:43 [ 7] [ 10] [0320133933] +13:41:43 [ 11] [ 6] [947135] +13:41:43 [ 12] [ 6] [133933] +13:41:43 [ 13] [ 4] [0320] +13:41:43 [ 15] [ 4] [0320] +13:41:43 [ 18] [ 4] [6011] +13:41:43 [ 19] [ 3] [418] +13:41:43 [ 22] [ 3] [021] +13:41:43 [ 25] [ 2] [01] +13:41:43 [ 28] [ 9] [D00002000] +13:41:43 [ 32] [ 6] [668899] +13:41:43 [ 35] [ 32] [6213548000248698=180112014869026] +13:41:43 [ 37] [ 12] [507901343778] +13:41:43 [ 41] [ 8] [03307001] +13:41:43 [ 42] [ 15] [APT ] +13:41:43 [ 43] [ 40] [ KHENTHAO UNIT XAYYABOURYK] +13:41:43 [ 49] [ 3] [418] +13:41:43 [ 52] [ 16] [BC08A7324519FDF0] +13:41:43 ============================================================================ +13:41:43 + + +waiting on router queue for slot.... +13:41:43 Sending to : +13:41:43 ============================================================================ +13:41:43 ============================================================================ +13:41:43 Slot Id : <486> +13:41:43 Transaction Type : REQUEST +13:41:43 Received From : +13:41:43 ============================================================================ +13:41:43 FNo. Len. Field Value +13:41:43 ============================================================================ +13:41:43 [ 1] [ 4] [0200] +13:41:43 [ 2] [ 16] [6213548000248698] +13:41:43 [ 3] [ 6] [010000] +13:41:43 [ 4] [ 12] [000050000000] +13:41:43 [ 7] [ 10] [0320133933] +13:41:43 [ 11] [ 6] [947135] +13:41:43 [ 12] [ 6] [133933] +13:41:43 [ 13] [ 4] [0320] +13:41:43 [ 15] [ 4] [0320] +13:41:43 [ 18] [ 4] [6011] +13:41:43 [ 19] [ 3] [418] +13:41:43 [ 22] [ 3] [021] +13:41:43 [ 25] [ 2] [01] +13:41:43 [ 28] [ 9] [D00002000] +13:41:43 [ 32] [ 6] [668899] +13:41:43 [ 35] [ 32] [6213548000248698=180112014869026] +13:41:43 [ 37] [ 12] [507901343778] +13:41:43 [ 41] [ 8] [03307001] +13:41:43 [ 42] [ 15] [APT ] +13:41:43 [ 43] [ 40] [ KHENTHAO UNIT XAYYABOURYK] +13:41:43 [ 49] [ 3] [418] +13:41:43 [ 52] [ 16] [B1DD9154F53463FC] +13:41:43 ============================================================================ +13:41:43 + + +waiting on router queue for slot.... +13:41:43 Sending to : <0> +13:41:43 ============================================================================ +13:41:43 ============================================================================ +13:41:43 Slot Id : <486> +13:41:43 Transaction Type : RESPONSE +13:41:43 Received From : +13:41:43 ============================================================================ +13:41:43 FNo. Len. Field Value +13:41:43 ============================================================================ +13:41:43 [ 1] [ 4] [0210] +13:41:43 [ 2] [ 16] [6213548000248698] +13:41:43 [ 3] [ 6] [010000] +13:41:43 [ 4] [ 12] [000050000000] +13:41:43 [ 7] [ 10] [0320133933] +13:41:43 [ 11] [ 6] [947135] +13:41:43 [ 12] [ 6] [133933] +13:41:43 [ 13] [ 4] [0320] +13:41:43 [ 15] [ 4] [0320] +13:41:43 [ 18] [ 4] [6011] +13:41:43 [ 19] [ 3] [418] +13:41:43 [ 32] [ 6] [668899] +13:41:43 [ 35] [ 32] [6213548000248698=180112014869026] +13:41:43 [ 37] [ 12] [507901343778] +13:41:43 [ 38] [ 6] [947135] +13:41:43 [ 39] [ 2] [51] +13:41:43 [ 41] [ 8] [03307001] +13:41:43 [ 49] [ 3] [418] +13:41:43 [ 54] [ 40] [0001418C0000051988680002418C000005198868] +13:41:43 ============================================================================ +13:41:43 Sending to : +13:41:43 ============================================================================ +13:41:43 + + +waiting on router queue for slot.... +13:41:44 ============================================================================ +13:41:44 Slot Id : <486> +13:41:44 Transaction Type : RESPONSE +13:41:44 Received From : +13:41:44 ============================================================================ +13:41:44 FNo. Len. Field Value +13:41:44 ============================================================================ +13:41:44 [ 1] [ 4] [0210] +13:41:44 [ 2] [ 16] [6213548000248698] +13:41:44 [ 3] [ 6] [010000] +13:41:44 [ 4] [ 12] [000050000000] +13:41:44 [ 7] [ 10] [0320133933] +13:41:44 [ 11] [ 6] [947135] +13:41:44 [ 12] [ 6] [133933] +13:41:44 [ 13] [ 4] [0320] +13:41:44 [ 15] [ 4] [0320] +13:41:44 [ 18] [ 4] [6011] +13:41:44 [ 19] [ 3] [418] +13:41:44 [ 32] [ 6] [668899] +13:41:44 [ 35] [ 32] [6213548000248698=180112014869026] +13:41:44 [ 37] [ 12] [507901343778] +13:41:44 [ 38] [ 6] [947135] +13:41:44 [ 39] [ 2] [51] +13:41:44 [ 41] [ 8] [03307001] +13:41:44 [ 49] [ 3] [418] +13:41:44 [ 54] [ 40] [0001418C0000051988680002418C000005198868] +13:41:44 ============================================================================ +13:41:44 Calculate Source COMM Id = 4 +13:41:44 ============================================================================ +13:41:44 + + +waiting on router queue for slot.... +13:41:49 ============================================================================ +13:41:49 Slot Id : <477> +13:41:49 Transaction Type : REQUEST +13:41:49 Received From : +13:41:49 ============================================================================ +13:41:49 FNo. Len. Field Value +13:41:49 ============================================================================ +13:41:49 [ 1] [ 4] [0800] +13:41:49 [ 7] [ 10] [0320064056] +13:41:49 [ 11] [ 6] [156613] +13:41:49 [ 70] [ 3] [301] +13:41:49 ============================================================================ +13:41:49 + + +waiting on router queue for slot.... +13:41:49 Sending to : +13:41:49 ============================================================================ +13:41:49 ============================================================================ +13:41:49 Slot Id : <477> +13:41:49 Transaction Type : RESPONSE +13:41:49 Received From : +13:41:49 ============================================================================ +13:41:49 FNo. Len. Field Value +13:41:49 ============================================================================ +13:41:49 [ 1] [ 4] [0810] +13:41:49 [ 7] [ 10] [0320064056] +13:41:49 [ 11] [ 6] [156613] +13:41:49 [ 39] [ 2] [00] +13:41:49 [ 70] [ 3] [301] +13:41:49 ============================================================================ +13:41:49 Calculate Source COMM Id = 2 +13:41:49 ============================================================================ +13:41:49 + + +waiting on router queue for slot.... +13:42:02 ============================================================================ +13:42:02 Slot Id : <474> +13:42:02 Transaction Type : REQUEST +13:42:02 Received From : +13:42:02 ============================================================================ +13:42:02 FNo. Len. Field Value +13:42:02 ============================================================================ +13:42:02 [ 1] [ 4] [0800] +13:42:02 [ 7] [ 10] [0320064109] +13:42:02 [ 11] [ 6] [156614] +13:42:02 [ 70] [ 3] [301] +13:42:02 ============================================================================ +13:42:02 + + +waiting on router queue for slot.... +13:42:02 Sending to : +13:42:02 ============================================================================ +13:42:02 ============================================================================ +13:42:02 Slot Id : <474> +13:42:02 Transaction Type : RESPONSE +13:42:02 Received From : +13:42:02 ============================================================================ +13:42:02 FNo. Len. Field Value +13:42:02 ============================================================================ +13:42:02 [ 1] [ 4] [0810] +13:42:02 [ 7] [ 10] [0320064109] +13:42:02 [ 11] [ 6] [156614] +13:42:02 [ 39] [ 2] [00] +13:42:02 [ 70] [ 3] [301] +13:42:02 ============================================================================ +13:42:02 Calculate Source COMM Id = 2 +13:42:02 ============================================================================ +13:42:02 + + +waiting on router queue for slot.... +13:42:08 ============================================================================ +13:42:08 Slot Id : <472> +13:42:08 Transaction Type : REQUEST +13:42:08 Received From : +13:42:08 ============================================================================ +13:42:08 FNo. Len. Field Value +13:42:08 ============================================================================ +13:42:08 [ 1] [ 4] [0800] +13:42:08 [ 2] [ 5] [02531] +13:42:08 [ 3] [ 6] [579138] +13:42:08 [ 7] [ 10] [0320064208] +13:42:08 [ 11] [ 6] [807207] +13:42:08 [ 15] [ 10] [0320064208] +13:42:08 [ 37] [ 11] [57913807207] +13:42:08 [ 70] [ 3] [001] +13:42:08 ============================================================================ +13:42:08 + + +waiting on router queue for slot.... +13:42:08 ============================================================================ +13:42:08 Slot Id : <472> +13:42:08 Transaction Type : RESPONSE +13:42:08 Received From : +13:42:08 ============================================================================ +13:42:08 FNo. Len. Field Value +13:42:08 ============================================================================ +13:42:08 [ 1] [ 4] [0810] +13:42:08 [ 7] [ 10] [0320064208] +13:42:08 [ 11] [ 6] [807207] +13:42:08 [ 15] [ 4] [0320] +13:42:08 [ 37] [ 12] [57913807207] +13:42:08 [ 39] [ 2] [00] +13:42:08 [ 70] [ 3] [001] +13:42:08 ============================================================================ +13:42:08 Sending to : +13:42:08 ============================================================================ +13:42:08 + + +waiting on router queue for slot.... +13:42:16 ============================================================================ +13:42:16 Slot Id : <6> +13:42:16 Transaction Type : REQUEST +13:42:16 Received From : +13:42:16 ============================================================================ +13:42:16 FNo. Len. Field Value +13:42:16 ============================================================================ +13:42:16 [ 1] [ 4] [0800] +13:42:16 [ 7] [ 10] [0320064123] +13:42:16 [ 11] [ 6] [156615] +13:42:16 [ 70] [ 3] [301] +13:42:16 ============================================================================ +13:42:16 + + +waiting on router queue for slot.... +13:42:16 Sending to : +13:42:16 ============================================================================ +13:42:16 ============================================================================ +13:42:16 Slot Id : <6> +13:42:16 Transaction Type : RESPONSE +13:42:16 Received From : +13:42:16 ============================================================================ +13:42:16 FNo. Len. Field Value +13:42:16 ============================================================================ +13:42:16 [ 1] [ 4] [0810] +13:42:16 [ 7] [ 10] [0320064123] +13:42:16 [ 11] [ 6] [156615] +13:42:16 [ 39] [ 2] [00] +13:42:16 [ 70] [ 3] [301] +13:42:16 ============================================================================ +13:42:16 Calculate Source COMM Id = 2 +13:42:16 ============================================================================ +13:42:16 + + +waiting on router queue for slot.... +13:42:31 ============================================================================ +13:42:31 Slot Id : <485> +13:42:31 Transaction Type : REQUEST +13:42:31 Received From : +13:42:31 ============================================================================ +13:42:31 FNo. Len. Field Value +13:42:31 ============================================================================ +13:42:31 [ 1] [ 4] [0200] +13:42:31 [ 2] [ 16] [6213544002038203] +13:42:31 [ 3] [ 6] [301000] +13:42:31 [ 4] [ 12] [000000000000] +13:42:31 [ 7] [ 10] [0320134022] +13:42:31 [ 11] [ 6] [947169] +13:42:31 [ 12] [ 6] [134022] +13:42:31 [ 13] [ 4] [0320] +13:42:31 [ 15] [ 4] [0320] +13:42:31 [ 18] [ 4] [6011] +13:42:31 [ 19] [ 3] [418] +13:42:31 [ 22] [ 3] [021] +13:42:31 [ 25] [ 2] [01] +13:42:31 [ 28] [ 9] [D00000000] +13:42:31 [ 32] [ 6] [668899] +13:42:31 [ 35] [ 32] [6213544002038203=491212013820772] +13:42:31 [ 37] [ 12] [507901963589] +13:42:31 [ 41] [ 8] [03020019] +13:42:31 [ 42] [ 15] [APT ] +13:42:31 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:42:31 [ 49] [ 3] [418] +13:42:31 [ 52] [ 16] [CEE32BDC71E0A330] +13:42:31 ============================================================================ +13:42:31 + + +waiting on router queue for slot.... +13:42:31 Sending to : +13:42:31 ============================================================================ +13:42:31 Sending to : +13:42:31 ============================================================================ +13:42:32 ============================================================================ +13:42:32 Slot Id : <485> +13:42:32 Transaction Type : REQUEST +13:42:32 Received From : +13:42:32 ============================================================================ +13:42:32 FNo. Len. Field Value +13:42:32 ============================================================================ +13:42:32 [ 1] [ 4] [0200] +13:42:32 [ 2] [ 16] [6213544002038203] +13:42:32 [ 3] [ 6] [301000] +13:42:32 [ 4] [ 12] [000000000000] +13:42:32 [ 7] [ 10] [0320134022] +13:42:32 [ 11] [ 6] [947169] +13:42:32 [ 12] [ 6] [134022] +13:42:32 [ 13] [ 4] [0320] +13:42:32 [ 15] [ 4] [0320] +13:42:32 [ 18] [ 4] [6011] +13:42:32 [ 19] [ 3] [418] +13:42:32 [ 22] [ 3] [021] +13:42:32 [ 25] [ 2] [01] +13:42:32 [ 28] [ 9] [D00000000] +13:42:32 [ 32] [ 6] [668899] +13:42:32 [ 35] [ 32] [6213544002038203=491212013820772] +13:42:32 [ 37] [ 12] [507901963589] +13:42:32 [ 41] [ 8] [03020019] +13:42:32 [ 42] [ 15] [APT ] +13:42:32 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:42:32 [ 49] [ 3] [418] +13:42:32 [ 52] [ 16] [CEE32BDC71E0A330] +13:42:32 ============================================================================ +13:42:32 + + +waiting on router queue for slot.... +13:42:32 Sending to : +13:42:32 ============================================================================ +13:42:32 ============================================================================ +13:42:32 Slot Id : <485> +13:42:32 Transaction Type : REQUEST +13:42:32 Received From : +13:42:32 ============================================================================ +13:42:32 FNo. Len. Field Value +13:42:32 ============================================================================ +13:42:32 [ 1] [ 4] [0200] +13:42:32 [ 2] [ 16] [6213544002038203] +13:42:32 [ 3] [ 6] [301000] +13:42:32 [ 4] [ 12] [000000000000] +13:42:32 [ 7] [ 10] [0320134022] +13:42:32 [ 11] [ 6] [947169] +13:42:32 [ 12] [ 6] [134022] +13:42:32 [ 13] [ 4] [0320] +13:42:32 [ 15] [ 4] [0320] +13:42:32 [ 18] [ 4] [6011] +13:42:32 [ 19] [ 3] [418] +13:42:32 [ 22] [ 3] [021] +13:42:32 [ 25] [ 2] [01] +13:42:32 [ 28] [ 9] [D00000000] +13:42:32 [ 32] [ 6] [668899] +13:42:32 [ 35] [ 32] [6213544002038203=491212013820772] +13:42:32 [ 37] [ 12] [507901963589] +13:42:32 [ 41] [ 8] [03020019] +13:42:32 [ 42] [ 15] [APT ] +13:42:32 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:42:32 [ 49] [ 3] [418] +13:42:32 [ 52] [ 16] [74899F5A2C86E0B3] +13:42:32 ============================================================================ +13:42:32 + + +waiting on router queue for slot.... +13:42:32 Sending to : <0> +13:42:32 ============================================================================ +13:42:32 ============================================================================ +13:42:32 Slot Id : <485> +13:42:32 Transaction Type : RESPONSE +13:42:32 Received From : +13:42:32 ============================================================================ +13:42:32 FNo. Len. Field Value +13:42:32 ============================================================================ +13:42:32 [ 1] [ 4] [0210] +13:42:32 [ 2] [ 16] [6213544002038203] +13:42:32 [ 3] [ 6] [301000] +13:42:32 [ 4] [ 12] [000000000000] +13:42:32 [ 7] [ 10] [0320134022] +13:42:32 [ 11] [ 6] [947169] +13:42:32 [ 12] [ 6] [134022] +13:42:32 [ 13] [ 4] [0320] +13:42:32 [ 15] [ 4] [0320] +13:42:32 [ 18] [ 4] [6011] +13:42:32 [ 19] [ 3] [418] +13:42:32 [ 32] [ 6] [668899] +13:42:32 [ 35] [ 32] [6213544002038203=491212013820772] +13:42:32 [ 37] [ 12] [507901963589] +13:42:32 [ 38] [ 6] [560921] +13:42:32 [ 39] [ 2] [00] +13:42:32 [ 41] [ 8] [03020019] +13:42:32 [ 49] [ 3] [418] +13:42:32 [ 54] [ 40] [1001418C0000200213021002418C000020021302] +13:42:32 ============================================================================ +13:42:32 Sending to : +13:42:32 ============================================================================ +13:42:32 + + +waiting on router queue for slot.... +13:42:33 ============================================================================ +13:42:33 Slot Id : <485> +13:42:33 Transaction Type : RESPONSE +13:42:33 Received From : +13:42:33 ============================================================================ +13:42:33 FNo. Len. Field Value +13:42:33 ============================================================================ +13:42:33 [ 1] [ 4] [0210] +13:42:33 [ 2] [ 16] [6213544002038203] +13:42:33 [ 3] [ 6] [301000] +13:42:33 [ 4] [ 12] [000000000000] +13:42:33 [ 7] [ 10] [0320134022] +13:42:33 [ 11] [ 6] [947169] +13:42:33 [ 12] [ 6] [134022] +13:42:33 [ 13] [ 4] [0320] +13:42:33 [ 15] [ 4] [0320] +13:42:33 [ 18] [ 4] [6011] +13:42:33 [ 19] [ 3] [418] +13:42:33 [ 32] [ 6] [668899] +13:42:33 [ 35] [ 32] [6213544002038203=491212013820772] +13:42:33 [ 37] [ 12] [507901963589] +13:42:33 [ 38] [ 6] [560921] +13:42:33 [ 39] [ 2] [00] +13:42:33 [ 41] [ 8] [03020019] +13:42:33 [ 49] [ 3] [418] +13:42:33 [ 54] [ 40] [1001418C0000200213021002418C000020021302] +13:42:33 ============================================================================ +13:42:33 Calculate Source COMM Id = 4 +13:42:33 ============================================================================ +13:42:33 + + +waiting on router queue for slot.... +13:42:34 ============================================================================ +13:42:34 Slot Id : <492> +13:42:34 Transaction Type : REQUEST +13:42:34 Received From : +13:42:34 ============================================================================ +13:42:34 FNo. Len. Field Value +13:42:34 ============================================================================ +13:42:34 [ 1] [ 4] [0800] +13:42:34 [ 7] [ 10] [0320064139] +13:42:34 [ 11] [ 6] [156616] +13:42:34 [ 70] [ 3] [301] +13:42:34 ============================================================================ +13:42:34 + + +waiting on router queue for slot.... +13:42:34 Sending to : +13:42:34 ============================================================================ +13:42:34 ============================================================================ +13:42:34 Slot Id : <492> +13:42:34 Transaction Type : RESPONSE +13:42:34 Received From : +13:42:34 ============================================================================ +13:42:34 FNo. Len. Field Value +13:42:34 ============================================================================ +13:42:34 [ 1] [ 4] [0810] +13:42:34 [ 7] [ 10] [0320064139] +13:42:34 [ 11] [ 6] [156616] +13:42:34 [ 39] [ 2] [00] +13:42:34 [ 70] [ 3] [301] +13:42:34 ============================================================================ +13:42:34 Calculate Source COMM Id = 2 +13:42:34 ============================================================================ +13:42:34 + + +waiting on router queue for slot.... +13:42:50 ============================================================================ +13:42:50 Slot Id : <14> +13:42:50 Transaction Type : REQUEST +13:42:50 Received From : +13:42:50 ============================================================================ +13:42:50 FNo. Len. Field Value +13:42:50 ============================================================================ +13:42:50 [ 1] [ 4] [0800] +13:42:50 [ 7] [ 10] [0320064156] +13:42:50 [ 11] [ 6] [156617] +13:42:50 [ 70] [ 3] [301] +13:42:50 ============================================================================ +13:42:50 + + +waiting on router queue for slot.... +13:42:50 Sending to : +13:42:50 ============================================================================ +13:42:50 ============================================================================ +13:42:50 Slot Id : <14> +13:42:50 Transaction Type : RESPONSE +13:42:50 Received From : +13:42:50 ============================================================================ +13:42:50 FNo. Len. Field Value +13:42:50 ============================================================================ +13:42:50 [ 1] [ 4] [0810] +13:42:50 [ 7] [ 10] [0320064156] +13:42:50 [ 11] [ 6] [156617] +13:42:50 [ 39] [ 2] [00] +13:42:50 [ 70] [ 3] [301] +13:42:50 ============================================================================ +13:42:50 Calculate Source COMM Id = 2 +13:42:50 ============================================================================ +13:42:50 + + +waiting on router queue for slot.... +13:43:03 ============================================================================ +13:43:03 Slot Id : <16> +13:43:03 Transaction Type : REQUEST +13:43:03 Received From : +13:43:03 ============================================================================ +13:43:03 FNo. Len. Field Value +13:43:03 ============================================================================ +13:43:03 [ 1] [ 4] [0200] +13:43:03 [ 2] [ 16] [6213544002038203] +13:43:03 [ 3] [ 6] [010000] +13:43:03 [ 4] [ 12] [000010000000] +13:43:03 [ 7] [ 10] [0320134053] +13:43:03 [ 11] [ 6] [947192] +13:43:03 [ 12] [ 6] [134053] +13:43:03 [ 13] [ 4] [0320] +13:43:03 [ 15] [ 4] [0320] +13:43:03 [ 18] [ 4] [6011] +13:43:03 [ 19] [ 3] [418] +13:43:03 [ 22] [ 3] [021] +13:43:03 [ 25] [ 2] [01] +13:43:03 [ 28] [ 9] [D00002000] +13:43:03 [ 32] [ 6] [668899] +13:43:03 [ 35] [ 32] [6213544002038203=491212013820772] +13:43:03 [ 37] [ 12] [507901963590] +13:43:03 [ 41] [ 8] [03020019] +13:43:03 [ 42] [ 15] [APT ] +13:43:03 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:43:03 [ 49] [ 3] [418] +13:43:03 [ 52] [ 16] [CEE32BDC71E0A330] +13:43:03 ============================================================================ +13:43:03 + + +waiting on router queue for slot.... +13:43:03 Sending to : +13:43:03 ============================================================================ +13:43:03 Sending to : +13:43:03 ============================================================================ +13:43:03 ============================================================================ +13:43:03 Slot Id : <16> +13:43:03 Transaction Type : REQUEST +13:43:03 Received From : +13:43:03 ============================================================================ +13:43:03 FNo. Len. Field Value +13:43:03 ============================================================================ +13:43:03 [ 1] [ 4] [0200] +13:43:03 [ 2] [ 16] [6213544002038203] +13:43:03 [ 3] [ 6] [010000] +13:43:03 [ 4] [ 12] [000010000000] +13:43:03 [ 7] [ 10] [0320134053] +13:43:03 [ 11] [ 6] [947192] +13:43:03 [ 12] [ 6] [134053] +13:43:03 [ 13] [ 4] [0320] +13:43:03 [ 15] [ 4] [0320] +13:43:03 [ 18] [ 4] [6011] +13:43:03 [ 19] [ 3] [418] +13:43:03 [ 22] [ 3] [021] +13:43:03 [ 25] [ 2] [01] +13:43:03 [ 28] [ 9] [D00002000] +13:43:03 [ 32] [ 6] [668899] +13:43:03 [ 35] [ 32] [6213544002038203=491212013820772] +13:43:03 [ 37] [ 12] [507901963590] +13:43:03 [ 41] [ 8] [03020019] +13:43:03 [ 42] [ 15] [APT ] +13:43:03 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:43:03 [ 49] [ 3] [418] +13:43:03 [ 52] [ 16] [CEE32BDC71E0A330] +13:43:03 ============================================================================ +13:43:03 + + +waiting on router queue for slot.... +13:43:03 Sending to : +13:43:03 ============================================================================ +13:43:03 ============================================================================ +13:43:03 Slot Id : <16> +13:43:03 Transaction Type : REQUEST +13:43:03 Received From : +13:43:03 ============================================================================ +13:43:03 FNo. Len. Field Value +13:43:03 ============================================================================ +13:43:03 [ 1] [ 4] [0200] +13:43:03 [ 2] [ 16] [6213544002038203] +13:43:03 [ 3] [ 6] [010000] +13:43:03 [ 4] [ 12] [000010000000] +13:43:03 [ 7] [ 10] [0320134053] +13:43:03 [ 11] [ 6] [947192] +13:43:03 [ 12] [ 6] [134053] +13:43:03 [ 13] [ 4] [0320] +13:43:03 [ 15] [ 4] [0320] +13:43:03 [ 18] [ 4] [6011] +13:43:03 [ 19] [ 3] [418] +13:43:03 [ 22] [ 3] [021] +13:43:03 [ 25] [ 2] [01] +13:43:03 [ 28] [ 9] [D00002000] +13:43:03 [ 32] [ 6] [668899] +13:43:03 [ 35] [ 32] [6213544002038203=491212013820772] +13:43:03 [ 37] [ 12] [507901963590] +13:43:03 [ 41] [ 8] [03020019] +13:43:03 [ 42] [ 15] [APT ] +13:43:03 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:43:03 [ 49] [ 3] [418] +13:43:03 [ 52] [ 16] [74899F5A2C86E0B3] +13:43:03 ============================================================================ +13:43:03 + + +waiting on router queue for slot.... +13:43:03 Sending to : <0> +13:43:03 ============================================================================ +13:43:04 ============================================================================ +13:43:04 Slot Id : <16> +13:43:04 Transaction Type : RESPONSE +13:43:04 Received From : +13:43:04 ============================================================================ +13:43:04 FNo. Len. Field Value +13:43:04 ============================================================================ +13:43:04 [ 1] [ 4] [0210] +13:43:04 [ 2] [ 16] [6213544002038203] +13:43:04 [ 3] [ 6] [010000] +13:43:04 [ 4] [ 12] [000010000000] +13:43:04 [ 7] [ 10] [0320134053] +13:43:04 [ 11] [ 6] [947192] +13:43:04 [ 12] [ 6] [134053] +13:43:04 [ 13] [ 4] [0320] +13:43:04 [ 15] [ 4] [0320] +13:43:04 [ 18] [ 4] [6011] +13:43:04 [ 19] [ 3] [418] +13:43:04 [ 32] [ 6] [668899] +13:43:04 [ 35] [ 32] [6213544002038203=491212013820772] +13:43:04 [ 37] [ 12] [507901963590] +13:43:04 [ 38] [ 6] [017175] +13:43:04 [ 39] [ 2] [00] +13:43:04 [ 41] [ 8] [03020019] +13:43:04 [ 49] [ 3] [418] +13:43:04 [ 54] [ 40] [0001418C0000098213020002418C000009821302] +13:43:04 ============================================================================ +13:43:04 Sending to : +13:43:04 ============================================================================ +13:43:04 + + +waiting on router queue for slot.... +13:43:04 ============================================================================ +13:43:04 Slot Id : <454> +13:43:04 Transaction Type : REQUEST +13:43:04 Received From : +13:43:04 ============================================================================ +13:43:04 FNo. Len. Field Value +13:43:04 ============================================================================ +13:43:04 [ 1] [ 4] [0800] +13:43:04 [ 7] [ 10] [0320064212] +13:43:04 [ 11] [ 6] [156618] +13:43:04 [ 70] [ 3] [301] +13:43:04 ============================================================================ +13:43:04 + + +waiting on router queue for slot.... +13:43:04 Sending to : +13:43:04 ============================================================================ +13:43:04 ============================================================================ +13:43:04 Slot Id : <454> +13:43:04 Transaction Type : RESPONSE +13:43:04 Received From : +13:43:04 ============================================================================ +13:43:04 FNo. Len. Field Value +13:43:04 ============================================================================ +13:43:04 [ 1] [ 4] [0810] +13:43:04 [ 7] [ 10] [0320064212] +13:43:04 [ 11] [ 6] [156618] +13:43:04 [ 39] [ 2] [00] +13:43:04 [ 70] [ 3] [301] +13:43:04 ============================================================================ +13:43:04 Calculate Source COMM Id = 2 +13:43:04 ============================================================================ +13:43:04 + + +waiting on router queue for slot.... +13:43:05 ============================================================================ +13:43:05 Slot Id : <16> +13:43:05 Transaction Type : RESPONSE +13:43:05 Received From : +13:43:05 ============================================================================ +13:43:05 FNo. Len. Field Value +13:43:05 ============================================================================ +13:43:05 [ 1] [ 4] [0210] +13:43:05 [ 2] [ 16] [6213544002038203] +13:43:05 [ 3] [ 6] [010000] +13:43:05 [ 4] [ 12] [000010000000] +13:43:05 [ 7] [ 10] [0320134053] +13:43:05 [ 11] [ 6] [947192] +13:43:05 [ 12] [ 6] [134053] +13:43:05 [ 13] [ 4] [0320] +13:43:05 [ 15] [ 4] [0320] +13:43:05 [ 18] [ 4] [6011] +13:43:05 [ 19] [ 3] [418] +13:43:05 [ 32] [ 6] [668899] +13:43:05 [ 35] [ 32] [6213544002038203=491212013820772] +13:43:05 [ 37] [ 12] [507901963590] +13:43:05 [ 38] [ 6] [017175] +13:43:05 [ 39] [ 2] [00] +13:43:05 [ 41] [ 8] [03020019] +13:43:05 [ 49] [ 3] [418] +13:43:05 [ 54] [ 40] [0001418C0000098213020002418C000009821302] +13:43:05 ============================================================================ +13:43:05 Calculate Source COMM Id = 4 +13:43:05 ============================================================================ +13:43:05 + + +waiting on router queue for slot.... +13:43:10 ============================================================================ +13:43:10 Slot Id : <13> +13:43:10 Transaction Type : REQUEST +13:43:10 Received From : +13:43:10 ============================================================================ +13:43:10 FNo. Len. Field Value +13:43:10 ============================================================================ +13:43:10 [ 1] [ 4] [0800] +13:43:10 [ 2] [ 5] [02531] +13:43:10 [ 3] [ 6] [579138] +13:43:10 [ 7] [ 10] [0320064310] +13:43:10 [ 11] [ 6] [807208] +13:43:10 [ 15] [ 10] [0320064310] +13:43:10 [ 37] [ 11] [57913807208] +13:43:10 [ 70] [ 3] [001] +13:43:10 ============================================================================ +13:43:10 + + +waiting on router queue for slot.... +13:43:10 ============================================================================ +13:43:10 Slot Id : <13> +13:43:10 Transaction Type : RESPONSE +13:43:10 Received From : +13:43:10 ============================================================================ +13:43:10 FNo. Len. Field Value +13:43:10 ============================================================================ +13:43:10 [ 1] [ 4] [0810] +13:43:10 [ 7] [ 10] [0320064310] +13:43:10 [ 11] [ 6] [807208] +13:43:10 [ 15] [ 4] [0320] +13:43:10 [ 37] [ 12] [57913807208] +13:43:10 [ 39] [ 2] [00] +13:43:10 [ 70] [ 3] [001] +13:43:10 ============================================================================ +13:43:10 Sending to : +13:43:10 ============================================================================ +13:43:10 + + +waiting on router queue for slot.... +13:43:19 ============================================================================ +13:43:19 Slot Id : <12> +13:43:19 Transaction Type : REQUEST +13:43:19 Received From : +13:43:19 ============================================================================ +13:43:19 FNo. Len. Field Value +13:43:19 ============================================================================ +13:43:19 [ 1] [ 4] [0800] +13:43:19 [ 7] [ 10] [0320064227] +13:43:20 [ 11] [ 6] [156619] +13:43:20 [ 70] [ 3] [301] +13:43:20 ============================================================================ +13:43:20 + + +waiting on router queue for slot.... +13:43:20 Sending to : +13:43:20 ============================================================================ +13:43:20 ============================================================================ +13:43:20 Slot Id : <12> +13:43:20 Transaction Type : RESPONSE +13:43:20 Received From : +13:43:20 ============================================================================ +13:43:20 FNo. Len. Field Value +13:43:20 ============================================================================ +13:43:20 [ 1] [ 4] [0810] +13:43:20 [ 7] [ 10] [0320064227] +13:43:20 [ 11] [ 6] [156619] +13:43:20 [ 39] [ 2] [00] +13:43:20 [ 70] [ 3] [301] +13:43:20 ============================================================================ +13:43:20 Calculate Source COMM Id = 2 +13:43:20 ============================================================================ +13:43:20 + + +waiting on router queue for slot.... +13:43:30 ============================================================================ +13:43:30 Slot Id : <469> +13:43:30 Transaction Type : REQUEST +13:43:30 Received From : +13:43:30 ============================================================================ +13:43:30 FNo. Len. Field Value +13:43:30 ============================================================================ +13:43:30 [ 1] [ 4] [0800] +13:43:30 [ 7] [ 10] [0320064237] +13:43:30 [ 11] [ 6] [156620] +13:43:30 [ 70] [ 3] [301] +13:43:30 ============================================================================ +13:43:30 + + +waiting on router queue for slot.... +13:43:30 Sending to : +13:43:30 ============================================================================ +13:43:30 ============================================================================ +13:43:30 Slot Id : <469> +13:43:30 Transaction Type : RESPONSE +13:43:30 Received From : +13:43:30 ============================================================================ +13:43:30 FNo. Len. Field Value +13:43:30 ============================================================================ +13:43:30 [ 1] [ 4] [0810] +13:43:30 [ 7] [ 10] [0320064237] +13:43:30 [ 11] [ 6] [156620] +13:43:30 [ 39] [ 2] [00] +13:43:30 [ 70] [ 3] [301] +13:43:30 ============================================================================ +13:43:30 Calculate Source COMM Id = 2 +13:43:30 ============================================================================ +13:43:30 + + +waiting on router queue for slot.... +13:43:42 ============================================================================ +13:43:42 Slot Id : <22> +13:43:42 Transaction Type : REQUEST +13:43:42 Received From : +13:43:42 ============================================================================ +13:43:42 FNo. Len. Field Value +13:43:42 ============================================================================ +13:43:42 [ 1] [ 4] [0800] +13:43:42 [ 7] [ 10] [0320064249] +13:43:42 [ 11] [ 6] [156621] +13:43:42 [ 70] [ 3] [301] +13:43:42 ============================================================================ +13:43:42 + + +waiting on router queue for slot.... +13:43:42 Sending to : +13:43:42 ============================================================================ +13:43:42 ============================================================================ +13:43:42 Slot Id : <22> +13:43:42 Transaction Type : RESPONSE +13:43:42 Received From : +13:43:42 ============================================================================ +13:43:42 FNo. Len. Field Value +13:43:42 ============================================================================ +13:43:42 [ 1] [ 4] [0810] +13:43:42 [ 7] [ 10] [0320064249] +13:43:42 [ 11] [ 6] [156621] +13:43:42 [ 39] [ 2] [00] +13:43:42 [ 70] [ 3] [301] +13:43:42 ============================================================================ +13:43:42 Calculate Source COMM Id = 2 +13:43:42 ============================================================================ +13:43:42 + + +waiting on router queue for slot.... +13:43:57 ============================================================================ +13:43:57 Slot Id : <494> +13:43:57 Transaction Type : REQUEST +13:43:57 Received From : +13:43:57 ============================================================================ +13:43:57 FNo. Len. Field Value +13:43:57 ============================================================================ +13:43:57 [ 1] [ 4] [0800] +13:43:57 [ 7] [ 10] [0320064303] +13:43:57 [ 11] [ 6] [156622] +13:43:57 [ 70] [ 3] [301] +13:43:57 ============================================================================ +13:43:57 + + +waiting on router queue for slot.... +13:43:57 Sending to : +13:43:57 ============================================================================ +13:43:57 ============================================================================ +13:43:57 Slot Id : <494> +13:43:57 Transaction Type : RESPONSE +13:43:57 Received From : +13:43:57 ============================================================================ +13:43:57 FNo. Len. Field Value +13:43:57 ============================================================================ +13:43:57 [ 1] [ 4] [0810] +13:43:57 [ 7] [ 10] [0320064303] +13:43:57 [ 11] [ 6] [156622] +13:43:57 [ 39] [ 2] [00] +13:43:57 [ 70] [ 3] [301] +13:43:57 ============================================================================ +13:43:57 Calculate Source COMM Id = 2 +13:43:57 ============================================================================ +13:43:57 + + +waiting on router queue for slot.... +13:44:12 ============================================================================ +13:44:12 Slot Id : <491> +13:44:12 Transaction Type : REQUEST +13:44:12 Received From : +13:44:12 ============================================================================ +13:44:12 FNo. Len. Field Value +13:44:12 ============================================================================ +13:44:12 [ 1] [ 4] [0800] +13:44:12 [ 2] [ 5] [02531] +13:44:12 [ 3] [ 6] [579138] +13:44:12 [ 7] [ 10] [0320064412] +13:44:12 [ 11] [ 6] [807209] +13:44:12 [ 15] [ 10] [0320064412] +13:44:12 [ 37] [ 11] [57913807209] +13:44:12 [ 70] [ 3] [001] +13:44:12 ============================================================================ +13:44:12 + + +waiting on router queue for slot.... +13:44:12 ============================================================================ +13:44:12 Slot Id : <491> +13:44:12 Transaction Type : RESPONSE +13:44:12 Received From : +13:44:12 ============================================================================ +13:44:12 FNo. Len. Field Value +13:44:12 ============================================================================ +13:44:12 [ 1] [ 4] [0810] +13:44:12 [ 7] [ 10] [0320064412] +13:44:12 [ 11] [ 6] [807209] +13:44:12 [ 15] [ 4] [0320] +13:44:12 [ 37] [ 12] [57913807209] +13:44:12 [ 39] [ 2] [00] +13:44:12 [ 70] [ 3] [001] +13:44:12 ============================================================================ +13:44:12 Sending to : +13:44:12 ============================================================================ +13:44:12 + + +waiting on router queue for slot.... +13:44:13 ============================================================================ +13:44:13 Slot Id : <17> +13:44:13 Transaction Type : REQUEST +13:44:13 Received From : +13:44:13 ============================================================================ +13:44:13 FNo. Len. Field Value +13:44:13 ============================================================================ +13:44:13 [ 1] [ 4] [0800] +13:44:13 [ 7] [ 10] [0320064320] +13:44:13 [ 11] [ 6] [156623] +13:44:13 [ 70] [ 3] [301] +13:44:13 ============================================================================ +13:44:13 + + +waiting on router queue for slot.... +13:44:13 Sending to : +13:44:13 ============================================================================ +13:44:13 ============================================================================ +13:44:13 Slot Id : <17> +13:44:13 Transaction Type : RESPONSE +13:44:13 Received From : +13:44:13 ============================================================================ +13:44:13 FNo. Len. Field Value +13:44:13 ============================================================================ +13:44:13 [ 1] [ 4] [0810] +13:44:13 [ 7] [ 10] [0320064320] +13:44:13 [ 11] [ 6] [156623] +13:44:13 [ 39] [ 2] [00] +13:44:13 [ 70] [ 3] [301] +13:44:13 ============================================================================ +13:44:13 Calculate Source COMM Id = 2 +13:44:13 ============================================================================ +13:44:13 + + +waiting on router queue for slot.... +13:44:18 ============================================================================ +13:44:18 Slot Id : <499> +13:44:18 Transaction Type : REQUEST +13:44:18 Received From : +13:44:18 ============================================================================ +13:44:18 FNo. Len. Field Value +13:44:18 ============================================================================ +13:44:18 [ 1] [ 4] [0800] +13:44:18 [ 7] [ 10] [0320064414] +13:44:18 [ 11] [ 6] [075895] +13:44:18 [ 37] [ 12] [507913075895] +13:44:18 [ 70] [ 3] [001] +13:44:18 ============================================================================ +13:44:18 + + +waiting on router queue for slot.... +13:44:18 Sending to : +13:44:18 ============================================================================ +13:44:18 ============================================================================ +13:44:18 Slot Id : <499> +13:44:18 Transaction Type : RESPONSE +13:44:18 Received From : +13:44:18 ============================================================================ +13:44:18 FNo. Len. Field Value +13:44:18 ============================================================================ +13:44:18 [ 1] [ 4] [0810] +13:44:18 [ 7] [ 10] [0320064414] +13:44:18 [ 11] [ 6] [075895] +13:44:18 [ 37] [ 12] [507913075895] +13:44:18 [ 39] [ 2] [00] +13:44:18 [ 70] [ 3] [001] +13:44:18 ============================================================================ +13:44:18 Calculate Source COMM Id = 0 +13:44:18 ============================================================================ +13:44:18 + + +waiting on router queue for slot.... +13:44:20 ============================================================================ +13:44:20 Slot Id : <10> +13:44:20 Transaction Type : REQUEST +13:44:20 Received From : +13:44:20 ============================================================================ +13:44:20 FNo. Len. Field Value +13:44:20 ============================================================================ +13:44:20 [ 1] [ 4] [0200] +13:44:20 [ 2] [ 16] [6688990106718701] +13:44:20 [ 3] [ 6] [300000] +13:44:20 [ 4] [ 12] [000000000000] +13:44:20 [ 7] [ 10] [0320134416] +13:44:20 [ 11] [ 6] [761183] +13:44:20 [ 12] [ 6] [134416] +13:44:20 [ 13] [ 4] [0320] +13:44:20 [ 15] [ 4] [0320] +13:44:20 [ 18] [ 4] [6011] +13:44:20 [ 22] [ 3] [900] +13:44:20 [ 25] [ 2] [02] +13:44:20 [ 28] [ 9] [D00000000] +13:44:20 [ 32] [ 6] [621354] +13:44:20 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:44:20 [ 37] [ 12] [507904807746] +13:44:20 [ 41] [ 8] [07001600] +13:44:20 [ 42] [ 15] [NATIVE ] +13:44:20 [ 43] [ 40] [Long District Long LAO] +13:44:20 [ 49] [ 3] [418] +13:44:20 [ 52] [ 16] [9179F74863A9054A] +13:44:20 ============================================================================ +13:44:20 + + +waiting on router queue for slot.... +13:44:20 Sending to : +13:44:20 ============================================================================ +13:44:20 Sending to : +13:44:20 ============================================================================ +13:44:21 ============================================================================ +13:44:21 Slot Id : <10> +13:44:21 Transaction Type : REQUEST +13:44:21 Received From : +13:44:21 ============================================================================ +13:44:21 FNo. Len. Field Value +13:44:21 ============================================================================ +13:44:21 [ 1] [ 4] [0200] +13:44:21 [ 2] [ 16] [6688990106718701] +13:44:21 [ 3] [ 6] [300000] +13:44:21 [ 4] [ 12] [000000000000] +13:44:21 [ 7] [ 10] [0320134416] +13:44:21 [ 11] [ 6] [761183] +13:44:21 [ 12] [ 6] [134416] +13:44:21 [ 13] [ 4] [0320] +13:44:21 [ 15] [ 4] [0320] +13:44:21 [ 18] [ 4] [6011] +13:44:21 [ 22] [ 3] [900] +13:44:21 [ 25] [ 2] [02] +13:44:21 [ 28] [ 9] [D00000000] +13:44:21 [ 32] [ 6] [621354] +13:44:21 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:44:21 [ 37] [ 12] [507904807746] +13:44:21 [ 41] [ 8] [07001600] +13:44:21 [ 42] [ 15] [NATIVE ] +13:44:21 [ 43] [ 40] [Long District Long LAO] +13:44:21 [ 49] [ 3] [418] +13:44:21 [ 52] [ 16] [9179F74863A9054A] +13:44:21 ============================================================================ +13:44:21 + + +waiting on router queue for slot.... +13:44:21 Sending to : +13:44:21 ============================================================================ +13:44:21 ============================================================================ +13:44:21 Slot Id : <10> +13:44:21 Transaction Type : REQUEST +13:44:21 Received From : +13:44:21 ============================================================================ +13:44:21 FNo. Len. Field Value +13:44:21 ============================================================================ +13:44:21 [ 1] [ 4] [0200] +13:44:21 [ 2] [ 16] [6688990106718701] +13:44:21 [ 3] [ 6] [300000] +13:44:21 [ 4] [ 12] [000000000000] +13:44:21 [ 7] [ 10] [0320134416] +13:44:21 [ 11] [ 6] [761183] +13:44:21 [ 12] [ 6] [134416] +13:44:21 [ 13] [ 4] [0320] +13:44:21 [ 15] [ 4] [0320] +13:44:21 [ 18] [ 4] [6011] +13:44:21 [ 22] [ 3] [900] +13:44:21 [ 25] [ 2] [02] +13:44:21 [ 28] [ 9] [D00000000] +13:44:21 [ 32] [ 6] [621354] +13:44:21 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:44:21 [ 37] [ 12] [507904807746] +13:44:21 [ 41] [ 8] [07001600] +13:44:21 [ 42] [ 15] [NATIVE ] +13:44:21 [ 43] [ 40] [Long District Long LAO] +13:44:21 [ 49] [ 3] [418] +13:44:21 [ 52] [ 16] [4D85CBB2A662658B] +13:44:21 ============================================================================ +13:44:21 + + +waiting on router queue for slot.... +13:44:21 Sending to : <4> +13:44:21 ============================================================================ +13:44:22 ============================================================================ +13:44:22 Slot Id : <10> +13:44:22 Transaction Type : RESPONSE +13:44:22 Received From : +13:44:22 ============================================================================ +13:44:22 FNo. Len. Field Value +13:44:22 ============================================================================ +13:44:22 [ 1] [ 4] [0210] +13:44:22 [ 2] [ 16] [6688990106718701] +13:44:22 [ 3] [ 6] [300000] +13:44:22 [ 4] [ 12] [000000000000] +13:44:22 [ 11] [ 6] [761183] +13:44:22 [ 12] [ 6] [134416] +13:44:22 [ 15] [ 4] [0320] +13:44:22 [ 18] [ 4] [6011] +13:44:22 [ 32] [ 6] [621354] +13:44:22 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:44:22 [ 37] [ 12] [507904807746] +13:44:22 [ 38] [ 6] [694842] +13:44:22 [ 39] [ 2] [00] +13:44:22 [ 41] [ 8] [07001600] +13:44:22 [ 49] [ 3] [418] +13:44:22 [ 54] [ 20] [0002418C000133300169] +13:44:22 ============================================================================ +13:44:22 Sending to : +13:44:22 ============================================================================ +13:44:22 + + +waiting on router queue for slot.... +13:44:23 ============================================================================ +13:44:23 Slot Id : <10> +13:44:23 Transaction Type : RESPONSE +13:44:23 Received From : +13:44:23 ============================================================================ +13:44:23 FNo. Len. Field Value +13:44:23 ============================================================================ +13:44:23 [ 1] [ 4] [0210] +13:44:23 [ 2] [ 16] [6688990106718701] +13:44:23 [ 3] [ 6] [300000] +13:44:23 [ 4] [ 12] [000000000000] +13:44:23 [ 11] [ 6] [761183] +13:44:23 [ 12] [ 6] [134416] +13:44:23 [ 15] [ 4] [0320] +13:44:23 [ 18] [ 4] [6011] +13:44:23 [ 32] [ 6] [621354] +13:44:23 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:44:23 [ 37] [ 12] [507904807746] +13:44:23 [ 38] [ 6] [694842] +13:44:23 [ 39] [ 2] [00] +13:44:23 [ 41] [ 8] [07001600] +13:44:23 [ 49] [ 3] [418] +13:44:23 [ 54] [ 20] [0002418C000133300169] +13:44:23 ============================================================================ +13:44:23 Calculate Source COMM Id = 0 +13:44:23 ============================================================================ +13:44:23 + + +waiting on router queue for slot.... +13:44:30 ============================================================================ +13:44:30 Slot Id : <481> +13:44:30 Transaction Type : REQUEST +13:44:30 Received From : +13:44:30 ============================================================================ +13:44:30 FNo. Len. Field Value +13:44:30 ============================================================================ +13:44:30 [ 1] [ 4] [0800] +13:44:30 [ 7] [ 10] [0320064336] +13:44:30 [ 11] [ 6] [156624] +13:44:30 [ 70] [ 3] [301] +13:44:30 ============================================================================ +13:44:30 + + +waiting on router queue for slot.... +13:44:30 Sending to : +13:44:30 ============================================================================ +13:44:30 ============================================================================ +13:44:30 Slot Id : <481> +13:44:30 Transaction Type : RESPONSE +13:44:30 Received From : +13:44:30 ============================================================================ +13:44:30 FNo. Len. Field Value +13:44:30 ============================================================================ +13:44:30 [ 1] [ 4] [0810] +13:44:30 [ 7] [ 10] [0320064336] +13:44:30 [ 11] [ 6] [156624] +13:44:30 [ 39] [ 2] [00] +13:44:30 [ 70] [ 3] [301] +13:44:30 ============================================================================ +13:44:30 Calculate Source COMM Id = 2 +13:44:30 ============================================================================ +13:44:30 + + +waiting on router queue for slot.... +13:44:38 ============================================================================ +13:44:38 Slot Id : <31> +13:44:38 Transaction Type : REQUEST +13:44:38 Received From : +13:44:38 ============================================================================ +13:44:38 FNo. Len. Field Value +13:44:38 ============================================================================ +13:44:38 [ 1] [ 4] [0200] +13:44:38 [ 2] [ 16] [6688990040132514] +13:44:38 [ 3] [ 6] [010000] +13:44:38 [ 4] [ 12] [000030000000] +13:44:38 [ 7] [ 10] [0320134434] +13:44:38 [ 11] [ 6] [761245] +13:44:38 [ 12] [ 6] [134434] +13:44:38 [ 13] [ 4] [0320] +13:44:38 [ 15] [ 4] [0320] +13:44:38 [ 18] [ 4] [6011] +13:44:38 [ 22] [ 3] [900] +13:44:38 [ 25] [ 2] [02] +13:44:38 [ 28] [ 9] [D00002000] +13:44:38 [ 32] [ 6] [621354] +13:44:38 [ 35] [ 37] [6688990040132514=98041261982138000000] +13:44:38 [ 37] [ 12] [507905271510] +13:44:38 [ 41] [ 8] [02002900] +13:44:38 [ 42] [ 15] [NATIVE ] +13:44:38 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +13:44:38 [ 49] [ 3] [418] +13:44:38 [ 52] [ 16] [E4F775736C5F907D] +13:44:38 ============================================================================ +13:44:38 + + +waiting on router queue for slot.... +13:44:38 Sending to : +13:44:38 ============================================================================ +13:44:38 Sending to : +13:44:38 ============================================================================ +13:44:38 ============================================================================ +13:44:38 Slot Id : <31> +13:44:38 Transaction Type : REQUEST +13:44:38 Received From : +13:44:38 ============================================================================ +13:44:38 FNo. Len. Field Value +13:44:38 ============================================================================ +13:44:38 [ 1] [ 4] [0200] +13:44:38 [ 2] [ 16] [6688990040132514] +13:44:38 [ 3] [ 6] [010000] +13:44:38 [ 4] [ 12] [000030000000] +13:44:38 [ 7] [ 10] [0320134434] +13:44:38 [ 11] [ 6] [761245] +13:44:38 [ 12] [ 6] [134434] +13:44:38 [ 13] [ 4] [0320] +13:44:38 [ 15] [ 4] [0320] +13:44:38 [ 18] [ 4] [6011] +13:44:38 [ 22] [ 3] [900] +13:44:38 [ 25] [ 2] [02] +13:44:38 [ 28] [ 9] [D00002000] +13:44:38 [ 32] [ 6] [621354] +13:44:38 [ 35] [ 37] [6688990040132514=98041261982138000000] +13:44:38 [ 37] [ 12] [507905271510] +13:44:38 [ 41] [ 8] [02002900] +13:44:38 [ 42] [ 15] [NATIVE ] +13:44:38 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +13:44:38 [ 49] [ 3] [418] +13:44:38 [ 52] [ 16] [E4F775736C5F907D] +13:44:38 ============================================================================ +13:44:38 + + +waiting on router queue for slot.... +13:44:38 Sending to : +13:44:38 ============================================================================ +13:44:38 ============================================================================ +13:44:38 Slot Id : <31> +13:44:38 Transaction Type : REQUEST +13:44:38 Received From : +13:44:38 ============================================================================ +13:44:38 FNo. Len. Field Value +13:44:38 ============================================================================ +13:44:38 [ 1] [ 4] [0200] +13:44:38 [ 2] [ 16] [6688990040132514] +13:44:38 [ 3] [ 6] [010000] +13:44:38 [ 4] [ 12] [000030000000] +13:44:38 [ 7] [ 10] [0320134434] +13:44:38 [ 11] [ 6] [761245] +13:44:38 [ 12] [ 6] [134434] +13:44:38 [ 13] [ 4] [0320] +13:44:38 [ 15] [ 4] [0320] +13:44:38 [ 18] [ 4] [6011] +13:44:38 [ 22] [ 3] [900] +13:44:38 [ 25] [ 2] [02] +13:44:38 [ 28] [ 9] [D00002000] +13:44:38 [ 32] [ 6] [621354] +13:44:38 [ 35] [ 37] [6688990040132514=98041261982138000000] +13:44:38 [ 37] [ 12] [507905271510] +13:44:38 [ 41] [ 8] [02002900] +13:44:38 [ 42] [ 15] [NATIVE ] +13:44:38 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +13:44:38 [ 49] [ 3] [418] +13:44:38 [ 52] [ 16] [B1F90765A1A22259] +13:44:38 ============================================================================ +13:44:38 + + +waiting on router queue for slot.... +13:44:38 Sending to : <4> +13:44:38 ============================================================================ +13:44:39 ============================================================================ +13:44:39 Slot Id : <31> +13:44:39 Transaction Type : RESPONSE +13:44:39 Received From : +13:44:39 ============================================================================ +13:44:39 FNo. Len. Field Value +13:44:39 ============================================================================ +13:44:39 [ 1] [ 4] [0210] +13:44:39 [ 2] [ 16] [6688990040132514] +13:44:39 [ 3] [ 6] [010000] +13:44:39 [ 4] [ 12] [000030000000] +13:44:39 [ 11] [ 6] [761245] +13:44:39 [ 12] [ 6] [134434] +13:44:39 [ 15] [ 4] [0320] +13:44:39 [ 18] [ 4] [6011] +13:44:39 [ 32] [ 6] [621354] +13:44:39 [ 35] [ 37] [6688990040132514=98041261982138000000] +13:44:39 [ 37] [ 12] [507905271510] +13:44:39 [ 38] [ 6] [391381] +13:44:39 [ 39] [ 2] [00] +13:44:39 [ 41] [ 8] [02002900] +13:44:39 [ 49] [ 3] [418] +13:44:39 [ 54] [ 20] [0002418C000031900000] +13:44:39 ============================================================================ +13:44:39 Sending to : +13:44:39 ============================================================================ +13:44:39 + + +waiting on router queue for slot.... +13:44:41 ============================================================================ +13:44:41 Slot Id : <31> +13:44:41 Transaction Type : RESPONSE +13:44:41 Received From : +13:44:41 ============================================================================ +13:44:41 FNo. Len. Field Value +13:44:41 ============================================================================ +13:44:41 [ 1] [ 4] [0210] +13:44:41 [ 2] [ 16] [6688990040132514] +13:44:41 [ 3] [ 6] [010000] +13:44:41 [ 4] [ 12] [000030000000] +13:44:41 [ 11] [ 6] [761245] +13:44:41 [ 12] [ 6] [134434] +13:44:41 [ 15] [ 4] [0320] +13:44:41 [ 18] [ 4] [6011] +13:44:41 [ 32] [ 6] [621354] +13:44:41 [ 35] [ 37] [6688990040132514=98041261982138000000] +13:44:41 [ 37] [ 12] [507905271510] +13:44:41 [ 38] [ 6] [391381] +13:44:41 [ 39] [ 2] [00] +13:44:41 [ 41] [ 8] [02002900] +13:44:41 [ 49] [ 3] [418] +13:44:41 [ 54] [ 20] [0002418C000031900000] +13:44:41 ============================================================================ +13:44:41 Calculate Source COMM Id = 0 +13:44:41 ============================================================================ +13:44:41 + + +waiting on router queue for slot.... +13:44:45 ============================================================================ +13:44:45 Slot Id : <29> +13:44:45 Transaction Type : REQUEST +13:44:45 Received From : +13:44:45 ============================================================================ +13:44:45 FNo. Len. Field Value +13:44:45 ============================================================================ +13:44:45 [ 1] [ 4] [0800] +13:44:45 [ 7] [ 10] [0320064352] +13:44:45 [ 11] [ 6] [156625] +13:44:45 [ 70] [ 3] [301] +13:44:45 ============================================================================ +13:44:45 + + +waiting on router queue for slot.... +13:44:45 Sending to : +13:44:45 ============================================================================ +13:44:45 ============================================================================ +13:44:45 Slot Id : <29> +13:44:45 Transaction Type : RESPONSE +13:44:45 Received From : +13:44:45 ============================================================================ +13:44:45 FNo. Len. Field Value +13:44:45 ============================================================================ +13:44:45 [ 1] [ 4] [0810] +13:44:45 [ 7] [ 10] [0320064352] +13:44:45 [ 11] [ 6] [156625] +13:44:45 [ 39] [ 2] [00] +13:44:45 [ 70] [ 3] [301] +13:44:45 ============================================================================ +13:44:45 Calculate Source COMM Id = 2 +13:44:45 ============================================================================ +13:44:45 + + +waiting on router queue for slot.... +13:44:54 ============================================================================ +13:44:54 Slot Id : <23> +13:44:54 Transaction Type : REQUEST +13:44:54 Received From : +13:44:54 ============================================================================ +13:44:54 FNo. Len. Field Value +13:44:54 ============================================================================ +13:44:54 [ 1] [ 4] [0800] +13:44:54 [ 7] [ 10] [0320065242] +13:44:54 [ 11] [ 6] [073063] +13:44:54 [ 37] [ 12] [57913073063] +13:44:54 [ 70] [ 3] [301] +13:44:54 ============================================================================ +13:44:54 + + +waiting on router queue for slot.... +13:44:54 Sending to : +13:44:54 ============================================================================ +13:44:54 ============================================================================ +13:44:54 Slot Id : <23> +13:44:54 Transaction Type : RESPONSE +13:44:54 Received From : +13:44:54 ============================================================================ +13:44:54 FNo. Len. Field Value +13:44:54 ============================================================================ +13:44:54 [ 1] [ 4] [0810] +13:44:54 [ 7] [ 10] [0320065242] +13:44:54 [ 11] [ 6] [073063] +13:44:54 [ 37] [ 12] [579130730630] +13:44:54 [ 39] [ 2] [00] +13:44:54 [ 70] [ 3] [810] +13:44:54 ============================================================================ +13:44:54 Calculate Source COMM Id = 1 +13:44:54 ============================================================================ +13:44:54 + + +waiting on router queue for slot.... +13:44:55 ============================================================================ +13:44:55 Slot Id : <3> +13:44:55 Transaction Type : REQUEST +13:44:55 Received From : +13:44:55 ============================================================================ +13:44:55 FNo. Len. Field Value +13:44:55 ============================================================================ +13:44:55 [ 1] [ 4] [0800] +13:44:55 [ 7] [ 10] [0320064403] +13:44:55 [ 11] [ 6] [156626] +13:44:55 [ 70] [ 3] [301] +13:44:55 ============================================================================ +13:44:55 + + +waiting on router queue for slot.... +13:44:55 Sending to : +13:44:55 ============================================================================ +13:44:55 ============================================================================ +13:44:55 Slot Id : <3> +13:44:55 Transaction Type : RESPONSE +13:44:55 Received From : +13:44:55 ============================================================================ +13:44:55 FNo. Len. Field Value +13:44:55 ============================================================================ +13:44:55 [ 1] [ 4] [0810] +13:44:55 [ 7] [ 10] [0320064403] +13:44:55 [ 11] [ 6] [156626] +13:44:55 [ 39] [ 2] [00] +13:44:55 [ 70] [ 3] [301] +13:44:55 ============================================================================ +13:44:55 Calculate Source COMM Id = 2 +13:44:55 ============================================================================ +13:44:55 + + +waiting on router queue for slot.... +13:45:06 ============================================================================ +13:45:06 Slot Id : <11> +13:45:06 Transaction Type : REQUEST +13:45:06 Received From : +13:45:06 ============================================================================ +13:45:06 FNo. Len. Field Value +13:45:06 ============================================================================ +13:45:06 [ 1] [ 4] [0800] +13:45:06 [ 7] [ 10] [0320064413] +13:45:06 [ 11] [ 6] [156627] +13:45:06 [ 70] [ 3] [301] +13:45:06 ============================================================================ +13:45:06 + + +waiting on router queue for slot.... +13:45:06 Sending to : +13:45:06 ============================================================================ +13:45:06 ============================================================================ +13:45:06 Slot Id : <11> +13:45:06 Transaction Type : RESPONSE +13:45:06 Received From : +13:45:06 ============================================================================ +13:45:06 FNo. Len. Field Value +13:45:06 ============================================================================ +13:45:06 [ 1] [ 4] [0810] +13:45:06 [ 7] [ 10] [0320064413] +13:45:06 [ 11] [ 6] [156627] +13:45:06 [ 39] [ 2] [00] +13:45:06 [ 70] [ 3] [301] +13:45:06 ============================================================================ +13:45:06 Calculate Source COMM Id = 2 +13:45:06 ============================================================================ +13:45:06 + + +waiting on router queue for slot.... +13:45:14 ============================================================================ +13:45:14 Slot Id : <21> +13:45:14 Transaction Type : REQUEST +13:45:14 Received From : +13:45:14 ============================================================================ +13:45:14 FNo. Len. Field Value +13:45:14 ============================================================================ +13:45:14 [ 1] [ 4] [0800] +13:45:14 [ 2] [ 5] [02531] +13:45:14 [ 3] [ 6] [579138] +13:45:14 [ 7] [ 10] [0320064514] +13:45:14 [ 11] [ 6] [807210] +13:45:14 [ 15] [ 10] [0320064514] +13:45:14 [ 37] [ 11] [57913807210] +13:45:14 [ 70] [ 3] [001] +13:45:14 ============================================================================ +13:45:14 + + +waiting on router queue for slot.... +13:45:14 ============================================================================ +13:45:14 Slot Id : <21> +13:45:14 Transaction Type : RESPONSE +13:45:14 Received From : +13:45:14 ============================================================================ +13:45:14 FNo. Len. Field Value +13:45:14 ============================================================================ +13:45:14 [ 1] [ 4] [0810] +13:45:14 [ 7] [ 10] [0320064514] +13:45:14 [ 11] [ 6] [807210] +13:45:14 [ 15] [ 4] [0320] +13:45:14 [ 37] [ 12] [57913807210] +13:45:14 [ 39] [ 2] [00] +13:45:14 [ 70] [ 3] [001] +13:45:14 ============================================================================ +13:45:14 Sending to : +13:45:14 ============================================================================ +13:45:14 + + +waiting on router queue for slot.... +13:45:17 ============================================================================ +13:45:17 Slot Id : <33> +13:45:17 Transaction Type : REQUEST +13:45:17 Received From : +13:45:17 ============================================================================ +13:45:17 FNo. Len. Field Value +13:45:17 ============================================================================ +13:45:17 [ 1] [ 4] [0800] +13:45:17 [ 7] [ 10] [0320064424] +13:45:17 [ 11] [ 6] [156628] +13:45:17 [ 70] [ 3] [301] +13:45:17 ============================================================================ +13:45:17 + + +waiting on router queue for slot.... +13:45:17 Sending to : +13:45:17 ============================================================================ +13:45:17 ============================================================================ +13:45:17 Slot Id : <33> +13:45:17 Transaction Type : RESPONSE +13:45:17 Received From : +13:45:17 ============================================================================ +13:45:17 FNo. Len. Field Value +13:45:17 ============================================================================ +13:45:17 [ 1] [ 4] [0810] +13:45:17 [ 7] [ 10] [0320064424] +13:45:17 [ 11] [ 6] [156628] +13:45:17 [ 39] [ 2] [00] +13:45:17 [ 70] [ 3] [301] +13:45:17 ============================================================================ +13:45:17 Calculate Source COMM Id = 2 +13:45:17 ============================================================================ +13:45:17 + + +waiting on router queue for slot.... +13:45:27 ============================================================================ +13:45:27 Slot Id : <35> +13:45:27 Transaction Type : REQUEST +13:45:27 Received From : +13:45:27 ============================================================================ +13:45:27 FNo. Len. Field Value +13:45:27 ============================================================================ +13:45:27 [ 1] [ 4] [0800] +13:45:27 [ 7] [ 10] [0320134513] +13:45:27 [ 11] [ 6] [072810] +13:45:27 [ 37] [ 12] [507913072810] +13:45:27 [ 70] [ 3] [ ] +13:45:27 ============================================================================ +13:45:27 + + +waiting on router queue for slot.... +13:45:27 Sending to : +13:45:27 ============================================================================ +13:45:27 ============================================================================ +13:45:27 Slot Id : <35> +13:45:27 Transaction Type : RESPONSE +13:45:27 Received From : +13:45:27 ============================================================================ +13:45:27 FNo. Len. Field Value +13:45:27 ============================================================================ +13:45:27 [ 1] [ 4] [0810] +13:45:27 [ 7] [ 10] [0320134513] +13:45:27 [ 11] [ 6] [072810] +13:45:27 [ 37] [ 12] [507913072810] +13:45:27 [ 39] [ 2] [91] +13:45:27 [ 70] [ 3] [ ] +13:45:27 ============================================================================ +13:45:27 Calculate Source COMM Id = 3 +13:45:27 ============================================================================ +13:45:27 + + +waiting on router queue for slot.... +13:45:30 ============================================================================ +13:45:30 Slot Id : <496> +13:45:30 Transaction Type : REQUEST +13:45:30 Received From : +13:45:30 ============================================================================ +13:45:30 FNo. Len. Field Value +13:45:30 ============================================================================ +13:45:30 [ 1] [ 4] [0800] +13:45:30 [ 7] [ 10] [0320064435] +13:45:30 [ 11] [ 6] [156629] +13:45:30 [ 70] [ 3] [301] +13:45:30 ============================================================================ +13:45:30 + + +waiting on router queue for slot.... +13:45:30 Sending to : +13:45:30 ============================================================================ +13:45:30 ============================================================================ +13:45:30 Slot Id : <496> +13:45:30 Transaction Type : RESPONSE +13:45:30 Received From : +13:45:30 ============================================================================ +13:45:30 FNo. Len. Field Value +13:45:30 ============================================================================ +13:45:30 [ 1] [ 4] [0810] +13:45:30 [ 7] [ 10] [0320064435] +13:45:30 [ 11] [ 6] [156629] +13:45:30 [ 39] [ 2] [00] +13:45:30 [ 70] [ 3] [301] +13:45:30 ============================================================================ +13:45:30 Calculate Source COMM Id = 2 +13:45:30 ============================================================================ +13:45:30 + + +waiting on router queue for slot.... +13:45:40 ============================================================================ +13:45:40 Slot Id : <461> +13:45:40 Transaction Type : REQUEST +13:45:40 Received From : +13:45:40 ============================================================================ +13:45:40 FNo. Len. Field Value +13:45:40 ============================================================================ +13:45:40 [ 1] [ 4] [0200] +13:45:40 [ 2] [ 16] [6688990106718701] +13:45:40 [ 3] [ 6] [010000] +13:45:40 [ 4] [ 12] [000050000000] +13:45:40 [ 7] [ 10] [0320134536] +13:45:40 [ 11] [ 6] [761463] +13:45:40 [ 12] [ 6] [134536] +13:45:40 [ 13] [ 4] [0320] +13:45:40 [ 15] [ 4] [0320] +13:45:40 [ 18] [ 4] [6011] +13:45:40 [ 22] [ 3] [900] +13:45:40 [ 25] [ 2] [02] +13:45:40 [ 28] [ 9] [D00002000] +13:45:40 [ 32] [ 6] [621354] +13:45:40 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:45:40 [ 37] [ 12] [507904807748] +13:45:40 [ 41] [ 8] [07001600] +13:45:40 [ 42] [ 15] [NATIVE ] +13:45:40 [ 43] [ 40] [Long District Long LAO] +13:45:40 [ 49] [ 3] [418] +13:45:40 [ 52] [ 16] [9179F74863A9054A] +13:45:40 ============================================================================ +13:45:40 + + +waiting on router queue for slot.... +13:45:40 Sending to : +13:45:40 ============================================================================ +13:45:40 Sending to : +13:45:40 ============================================================================ +13:45:41 ============================================================================ +13:45:41 Slot Id : <461> +13:45:41 Transaction Type : REQUEST +13:45:41 Received From : +13:45:41 ============================================================================ +13:45:41 FNo. Len. Field Value +13:45:41 ============================================================================ +13:45:41 [ 1] [ 4] [0200] +13:45:41 [ 2] [ 16] [6688990106718701] +13:45:41 [ 3] [ 6] [010000] +13:45:41 [ 4] [ 12] [000050000000] +13:45:41 [ 7] [ 10] [0320134536] +13:45:41 [ 11] [ 6] [761463] +13:45:41 [ 12] [ 6] [134536] +13:45:41 [ 13] [ 4] [0320] +13:45:41 [ 15] [ 4] [0320] +13:45:41 [ 18] [ 4] [6011] +13:45:41 [ 22] [ 3] [900] +13:45:41 [ 25] [ 2] [02] +13:45:41 [ 28] [ 9] [D00002000] +13:45:41 [ 32] [ 6] [621354] +13:45:41 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:45:41 [ 37] [ 12] [507904807748] +13:45:41 [ 41] [ 8] [07001600] +13:45:41 [ 42] [ 15] [NATIVE ] +13:45:41 [ 43] [ 40] [Long District Long LAO] +13:45:41 [ 49] [ 3] [418] +13:45:41 [ 52] [ 16] [9179F74863A9054A] +13:45:41 ============================================================================ +13:45:41 + + +waiting on router queue for slot.... +13:45:41 Sending to : +13:45:41 ============================================================================ +13:45:41 ============================================================================ +13:45:41 Slot Id : <461> +13:45:41 Transaction Type : REQUEST +13:45:41 Received From : +13:45:41 ============================================================================ +13:45:41 FNo. Len. Field Value +13:45:41 ============================================================================ +13:45:41 [ 1] [ 4] [0200] +13:45:41 [ 2] [ 16] [6688990106718701] +13:45:41 [ 3] [ 6] [010000] +13:45:41 [ 4] [ 12] [000050000000] +13:45:41 [ 7] [ 10] [0320134536] +13:45:41 [ 11] [ 6] [761463] +13:45:41 [ 12] [ 6] [134536] +13:45:41 [ 13] [ 4] [0320] +13:45:41 [ 15] [ 4] [0320] +13:45:41 [ 18] [ 4] [6011] +13:45:41 [ 22] [ 3] [900] +13:45:41 [ 25] [ 2] [02] +13:45:41 [ 28] [ 9] [D00002000] +13:45:41 [ 32] [ 6] [621354] +13:45:41 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:45:41 [ 37] [ 12] [507904807748] +13:45:41 [ 41] [ 8] [07001600] +13:45:41 [ 42] [ 15] [NATIVE ] +13:45:41 [ 43] [ 40] [Long District Long LAO] +13:45:41 [ 49] [ 3] [418] +13:45:41 [ 52] [ 16] [4D85CBB2A662658B] +13:45:41 ============================================================================ +13:45:41 + + +waiting on router queue for slot.... +13:45:41 Sending to : <4> +13:45:41 ============================================================================ +13:45:42 ============================================================================ +13:45:42 Slot Id : <461> +13:45:42 Transaction Type : RESPONSE +13:45:42 Received From : +13:45:42 ============================================================================ +13:45:42 FNo. Len. Field Value +13:45:42 ============================================================================ +13:45:42 [ 1] [ 4] [0210] +13:45:42 [ 2] [ 16] [6688990106718701] +13:45:42 [ 3] [ 6] [010000] +13:45:42 [ 4] [ 12] [000050000000] +13:45:42 [ 11] [ 6] [761463] +13:45:42 [ 12] [ 6] [134536] +13:45:42 [ 15] [ 4] [0320] +13:45:42 [ 18] [ 4] [6011] +13:45:42 [ 32] [ 6] [621354] +13:45:42 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:45:42 [ 37] [ 12] [507904807748] +13:45:42 [ 38] [ 6] [468020] +13:45:42 [ 39] [ 2] [00] +13:45:42 [ 41] [ 8] [07001600] +13:45:42 [ 49] [ 3] [418] +13:45:42 [ 54] [ 20] [0002418C000083100169] +13:45:42 ============================================================================ +13:45:42 Sending to : +13:45:42 ============================================================================ +13:45:42 + + +waiting on router queue for slot.... +13:45:42 ============================================================================ +13:45:42 Slot Id : <37> +13:45:42 Transaction Type : REQUEST +13:45:42 Received From : +13:45:42 ============================================================================ +13:45:42 FNo. Len. Field Value +13:45:42 ============================================================================ +13:45:42 [ 1] [ 4] [0200] +13:45:42 [ 2] [ 16] [1808930200057099] +13:45:42 [ 3] [ 6] [010000] +13:45:42 [ 4] [ 12] [000050000000] +13:45:42 [ 7] [ 10] [0320134538] +13:45:42 [ 11] [ 6] [761473] +13:45:42 [ 12] [ 6] [134538] +13:45:42 [ 13] [ 4] [0320] +13:45:42 [ 15] [ 4] [0320] +13:45:42 [ 18] [ 4] [6011] +13:45:42 [ 22] [ 3] [900] +13:45:42 [ 25] [ 2] [02] +13:45:42 [ 28] [ 9] [D00002000] +13:45:42 [ 32] [ 6] [621354] +13:45:42 [ 35] [ 27] [1808930200057099=1803500453] +13:45:42 [ 37] [ 12] [507902783225] +13:45:42 [ 41] [ 8] [01007200] +13:45:42 [ 42] [ 15] [NATIVE ] +13:45:42 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +13:45:42 [ 49] [ 3] [418] +13:45:42 [ 52] [ 16] [74FBBB6F24E6592B] +13:45:42 ============================================================================ +13:45:42 + + +waiting on router queue for slot.... +13:45:42 Sending to : +13:45:42 ============================================================================ +13:45:42 Sending to : +13:45:42 ============================================================================ +13:45:43 ============================================================================ +13:45:43 Slot Id : <37> +13:45:43 Transaction Type : REQUEST +13:45:43 Received From : +13:45:43 ============================================================================ +13:45:43 FNo. Len. Field Value +13:45:43 ============================================================================ +13:45:43 [ 1] [ 4] [0200] +13:45:43 [ 2] [ 16] [1808930200057099] +13:45:43 [ 3] [ 6] [010000] +13:45:43 [ 4] [ 12] [000050000000] +13:45:43 [ 7] [ 10] [0320134538] +13:45:43 [ 11] [ 6] [761473] +13:45:43 [ 12] [ 6] [134538] +13:45:43 [ 13] [ 4] [0320] +13:45:43 [ 15] [ 4] [0320] +13:45:43 [ 18] [ 4] [6011] +13:45:43 [ 22] [ 3] [900] +13:45:43 [ 25] [ 2] [02] +13:45:43 [ 28] [ 9] [D00002000] +13:45:43 [ 32] [ 6] [621354] +13:45:43 [ 35] [ 27] [1808930200057099=1803500453] +13:45:43 [ 37] [ 12] [507902783225] +13:45:43 [ 41] [ 8] [01007200] +13:45:43 [ 42] [ 15] [NATIVE ] +13:45:43 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +13:45:43 [ 49] [ 3] [418] +13:45:43 [ 52] [ 16] [74FBBB6F24E6592B] +13:45:43 ============================================================================ +13:45:43 + + +waiting on router queue for slot.... +13:45:43 Sending to : +13:45:43 ============================================================================ +13:45:43 ============================================================================ +13:45:43 Slot Id : <37> +13:45:43 Transaction Type : REQUEST +13:45:43 Received From : +13:45:43 ============================================================================ +13:45:43 FNo. Len. Field Value +13:45:43 ============================================================================ +13:45:43 [ 1] [ 4] [0200] +13:45:43 [ 2] [ 16] [1808930200057099] +13:45:43 [ 3] [ 6] [010000] +13:45:43 [ 4] [ 12] [000050000000] +13:45:43 [ 7] [ 10] [0320134538] +13:45:43 [ 11] [ 6] [761473] +13:45:43 [ 12] [ 6] [134538] +13:45:43 [ 13] [ 4] [0320] +13:45:43 [ 15] [ 4] [0320] +13:45:43 [ 18] [ 4] [6011] +13:45:43 [ 22] [ 3] [900] +13:45:43 [ 25] [ 2] [02] +13:45:43 [ 28] [ 9] [D00002000] +13:45:43 [ 32] [ 6] [621354] +13:45:43 [ 35] [ 27] [1808930200057099=1803500453] +13:45:43 [ 37] [ 12] [507902783225] +13:45:43 [ 41] [ 8] [01007200] +13:45:43 [ 42] [ 15] [NATIVE ] +13:45:43 [ 43] [ 40] [Dao Heaung ChanthaboulyLAO] +13:45:43 [ 49] [ 3] [418] +13:45:43 [ 52] [ 16] [BCC896C24DE07DEE] +13:45:43 ============================================================================ +13:45:43 + + +waiting on router queue for slot.... +13:45:43 Sending to : <2> +13:45:43 ============================================================================ +13:45:43 ============================================================================ +13:45:43 Slot Id : <461> +13:45:43 Transaction Type : RESPONSE +13:45:43 Received From : +13:45:43 ============================================================================ +13:45:43 FNo. Len. Field Value +13:45:43 ============================================================================ +13:45:43 [ 1] [ 4] [0210] +13:45:43 [ 2] [ 16] [6688990106718701] +13:45:43 [ 3] [ 6] [010000] +13:45:43 [ 4] [ 12] [000050000000] +13:45:43 [ 11] [ 6] [761463] +13:45:43 [ 12] [ 6] [134536] +13:45:43 [ 15] [ 4] [0320] +13:45:43 [ 18] [ 4] [6011] +13:45:43 [ 32] [ 6] [621354] +13:45:43 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:45:43 [ 37] [ 12] [507904807748] +13:45:43 [ 38] [ 6] [468020] +13:45:43 [ 39] [ 2] [00] +13:45:43 [ 41] [ 8] [07001600] +13:45:43 [ 49] [ 3] [418] +13:45:43 [ 54] [ 20] [0002418C000083100169] +13:45:43 ============================================================================ +13:45:43 Calculate Source COMM Id = 0 +13:45:43 ============================================================================ +13:45:43 + + +waiting on router queue for slot.... +13:45:50 ============================================================================ +13:45:50 Slot Id : <37> +13:45:50 Transaction Type : RESPONSE +13:45:50 Received From : +13:45:50 ============================================================================ +13:45:50 FNo. Len. Field Value +13:45:50 ============================================================================ +13:45:50 [ 1] [ 4] [0210] +13:45:50 [ 2] [ 16] [1808930200057099] +13:45:50 [ 3] [ 6] [010000] +13:45:50 [ 4] [ 12] [000050000000] +13:45:50 [ 6] [ 12] [000050000000] +13:45:50 [ 7] [ 10] [0320134538] +13:45:50 [ 11] [ 6] [761473] +13:45:50 [ 12] [ 6] [134538] +13:45:50 [ 13] [ 4] [0320] +13:45:50 [ 18] [ 4] [6011] +13:45:50 [ 19] [ 3] [418] +13:45:50 [ 22] [ 3] [021] +13:45:50 [ 32] [ 6] [621354] +13:45:50 [ 35] [ 27] [1808930200057099=1803500453] +13:45:50 [ 37] [ 12] [507902783225] +13:45:50 [ 38] [ 6] [761473] +13:45:50 [ 39] [ 2] [00] +13:45:50 [ 41] [ 8] [01007200] +13:45:50 [ 49] [ 3] [418] +13:45:50 [ 52] [ 16] [BCC896C24DE07DEE] +13:45:50 [ 54] [ 20] [1001418C000104800000] +13:45:50 ============================================================================ +13:45:50 Sending to : +13:45:50 ============================================================================ +13:45:50 + + +waiting on router queue for slot.... +13:45:51 ============================================================================ +13:45:51 Slot Id : <37> +13:45:51 Transaction Type : RESPONSE +13:45:51 Received From : +13:45:51 ============================================================================ +13:45:51 FNo. Len. Field Value +13:45:51 ============================================================================ +13:45:51 [ 1] [ 4] [0210] +13:45:51 [ 2] [ 16] [1808930200057099] +13:45:51 [ 3] [ 6] [010000] +13:45:51 [ 4] [ 12] [000050000000] +13:45:51 [ 6] [ 12] [000050000000] +13:45:51 [ 7] [ 10] [0320134538] +13:45:51 [ 11] [ 6] [761473] +13:45:51 [ 12] [ 6] [134538] +13:45:51 [ 13] [ 4] [0320] +13:45:51 [ 18] [ 4] [6011] +13:45:51 [ 19] [ 3] [418] +13:45:51 [ 22] [ 3] [021] +13:45:51 [ 32] [ 6] [621354] +13:45:51 [ 35] [ 27] [1808930200057099=1803500453] +13:45:51 [ 37] [ 12] [507902783225] +13:45:51 [ 38] [ 6] [761473] +13:45:51 [ 39] [ 2] [00] +13:45:51 [ 41] [ 8] [01007200] +13:45:51 [ 49] [ 3] [418] +13:45:51 [ 52] [ 16] [BCC896C24DE07DEE] +13:45:51 [ 54] [ 20] [1001418C000104800000] +13:45:51 ============================================================================ +13:45:51 Calculate Source COMM Id = 0 +13:45:51 ============================================================================ +13:45:51 + + +waiting on router queue for slot.... +13:45:55 ============================================================================ +13:45:55 Slot Id : <30> +13:45:55 Transaction Type : REQUEST +13:45:55 Received From : +13:45:55 ============================================================================ +13:45:55 FNo. Len. Field Value +13:45:55 ============================================================================ +13:45:55 [ 1] [ 4] [0800] +13:45:55 [ 7] [ 10] [0320064502] +13:45:55 [ 11] [ 6] [156630] +13:45:55 [ 70] [ 3] [301] +13:45:55 ============================================================================ +13:45:55 + + +waiting on router queue for slot.... +13:45:55 Sending to : +13:45:55 ============================================================================ +13:45:55 ============================================================================ +13:45:55 Slot Id : <30> +13:45:55 Transaction Type : RESPONSE +13:45:55 Received From : +13:45:55 ============================================================================ +13:45:55 FNo. Len. Field Value +13:45:55 ============================================================================ +13:45:55 [ 1] [ 4] [0810] +13:45:55 [ 7] [ 10] [0320064502] +13:45:55 [ 11] [ 6] [156630] +13:45:55 [ 39] [ 2] [00] +13:45:55 [ 70] [ 3] [301] +13:45:55 ============================================================================ +13:45:55 Calculate Source COMM Id = 2 +13:45:55 ============================================================================ +13:45:55 + + +waiting on router queue for slot.... +13:46:06 ============================================================================ +13:46:06 Slot Id : <9> +13:46:06 Transaction Type : REQUEST +13:46:06 Received From : +13:46:06 ============================================================================ +13:46:06 FNo. Len. Field Value +13:46:06 ============================================================================ +13:46:06 [ 1] [ 4] [0800] +13:46:06 [ 7] [ 10] [0320064513] +13:46:06 [ 11] [ 6] [156631] +13:46:06 [ 70] [ 3] [301] +13:46:06 ============================================================================ +13:46:06 + + +waiting on router queue for slot.... +13:46:06 Sending to : +13:46:06 ============================================================================ +13:46:06 ============================================================================ +13:46:06 Slot Id : <9> +13:46:06 Transaction Type : RESPONSE +13:46:06 Received From : +13:46:06 ============================================================================ +13:46:06 FNo. Len. Field Value +13:46:06 ============================================================================ +13:46:06 [ 1] [ 4] [0810] +13:46:06 [ 7] [ 10] [0320064513] +13:46:06 [ 11] [ 6] [156631] +13:46:06 [ 39] [ 2] [00] +13:46:06 [ 70] [ 3] [301] +13:46:06 ============================================================================ +13:46:06 Calculate Source COMM Id = 2 +13:46:06 ============================================================================ +13:46:06 + + +waiting on router queue for slot.... +13:46:16 ============================================================================ +13:46:16 Slot Id : <45> +13:46:16 Transaction Type : REQUEST +13:46:16 Received From : +13:46:16 ============================================================================ +13:46:16 FNo. Len. Field Value +13:46:16 ============================================================================ +13:46:16 [ 1] [ 4] [0800] +13:46:16 [ 2] [ 5] [02531] +13:46:16 [ 3] [ 6] [579138] +13:46:16 [ 7] [ 10] [0320064616] +13:46:16 [ 11] [ 6] [807211] +13:46:16 [ 15] [ 10] [0320064616] +13:46:16 [ 37] [ 11] [57913807211] +13:46:16 [ 70] [ 3] [001] +13:46:16 ============================================================================ +13:46:16 + + +waiting on router queue for slot.... +13:46:16 ============================================================================ +13:46:16 Slot Id : <45> +13:46:16 Transaction Type : RESPONSE +13:46:16 Received From : +13:46:16 ============================================================================ +13:46:16 FNo. Len. Field Value +13:46:16 ============================================================================ +13:46:16 [ 1] [ 4] [0810] +13:46:16 [ 7] [ 10] [0320064616] +13:46:16 [ 11] [ 6] [807211] +13:46:16 [ 15] [ 4] [0320] +13:46:16 [ 37] [ 12] [57913807211] +13:46:16 [ 39] [ 2] [00] +13:46:16 [ 70] [ 3] [001] +13:46:16 ============================================================================ +13:46:16 Sending to : +13:46:16 ============================================================================ +13:46:16 + + +waiting on router queue for slot.... +13:46:21 ============================================================================ +13:46:21 Slot Id : <36> +13:46:21 Transaction Type : REQUEST +13:46:21 Received From : +13:46:21 ============================================================================ +13:46:21 FNo. Len. Field Value +13:46:21 ============================================================================ +13:46:21 [ 1] [ 4] [0800] +13:46:21 [ 7] [ 10] [0320064528] +13:46:21 [ 11] [ 6] [156632] +13:46:21 [ 70] [ 3] [301] +13:46:21 ============================================================================ +13:46:21 + + +waiting on router queue for slot.... +13:46:21 Sending to : +13:46:21 ============================================================================ +13:46:21 ============================================================================ +13:46:21 Slot Id : <36> +13:46:21 Transaction Type : RESPONSE +13:46:21 Received From : +13:46:21 ============================================================================ +13:46:21 FNo. Len. Field Value +13:46:21 ============================================================================ +13:46:21 [ 1] [ 4] [0810] +13:46:21 [ 7] [ 10] [0320064528] +13:46:21 [ 11] [ 6] [156632] +13:46:21 [ 39] [ 2] [00] +13:46:21 [ 70] [ 3] [301] +13:46:21 ============================================================================ +13:46:21 Calculate Source COMM Id = 2 +13:46:21 ============================================================================ +13:46:21 + + +waiting on router queue for slot.... +13:46:21 ============================================================================ +13:46:21 Slot Id : <497> +13:46:21 Transaction Type : REQUEST +13:46:21 Received From : +13:46:21 ============================================================================ +13:46:21 FNo. Len. Field Value +13:46:21 ============================================================================ +13:46:21 [ 1] [ 4] [0800] +13:46:21 [ 7] [ 10] [0320064412] +13:46:21 [ 11] [ 6] [072299] +13:46:21 [ 37] [ 12] [57913072299] +13:46:21 [ 70] [ 3] [301] +13:46:21 ============================================================================ +13:46:21 + + +waiting on router queue for slot.... +13:46:21 Sending to : +13:46:21 ============================================================================ +13:46:21 ============================================================================ +13:46:21 Slot Id : <497> +13:46:21 Transaction Type : RESPONSE +13:46:21 Received From : +13:46:21 ============================================================================ +13:46:21 FNo. Len. Field Value +13:46:21 ============================================================================ +13:46:21 [ 1] [ 4] [0810] +13:46:21 [ 7] [ 10] [0320064412] +13:46:21 [ 11] [ 6] [072299] +13:46:21 [ 37] [ 12] [579130722990] +13:46:21 [ 39] [ 2] [00] +13:46:21 [ 70] [ 3] [810] +13:46:21 ============================================================================ +13:46:21 Calculate Source COMM Id = 4 +13:46:21 ============================================================================ +13:46:21 + + +waiting on router queue for slot.... +13:46:30 ============================================================================ +13:46:30 Slot Id : <18> +13:46:30 Transaction Type : REQUEST +13:46:30 Received From : +13:46:30 ============================================================================ +13:46:30 FNo. Len. Field Value +13:46:30 ============================================================================ +13:46:30 [ 1] [ 4] [0200] +13:46:30 [ 2] [ 16] [6213545000904239] +13:46:30 [ 3] [ 6] [302000] +13:46:30 [ 4] [ 12] [000000000000] +13:46:30 [ 7] [ 10] [0320134421] +13:46:30 [ 11] [ 6] [947326] +13:46:30 [ 12] [ 6] [134421] +13:46:30 [ 13] [ 4] [0320] +13:46:30 [ 15] [ 4] [0320] +13:46:30 [ 18] [ 4] [6011] +13:46:30 [ 19] [ 3] [418] +13:46:30 [ 22] [ 3] [021] +13:46:30 [ 25] [ 2] [01] +13:46:30 [ 28] [ 9] [D00000000] +13:46:30 [ 32] [ 6] [668899] +13:46:30 [ 35] [ 32] [6213545000904239=491212010423552] +13:46:30 [ 37] [ 12] [507901604317] +13:46:30 [ 41] [ 8] [03202001] +13:46:30 [ 42] [ 15] [APT ] +13:46:30 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +13:46:30 [ 49] [ 3] [418] +13:46:30 [ 52] [ 16] [56B024D607437F0A] +13:46:30 ============================================================================ +13:46:30 + + +waiting on router queue for slot.... +13:46:30 Sending to : +13:46:30 ============================================================================ +13:46:30 Sending to : +13:46:30 ============================================================================ +13:46:31 ============================================================================ +13:46:31 Slot Id : <18> +13:46:31 Transaction Type : REQUEST +13:46:31 Received From : +13:46:31 ============================================================================ +13:46:31 FNo. Len. Field Value +13:46:31 ============================================================================ +13:46:31 [ 1] [ 4] [0200] +13:46:31 [ 2] [ 16] [6213545000904239] +13:46:31 [ 3] [ 6] [302000] +13:46:31 [ 4] [ 12] [000000000000] +13:46:31 [ 7] [ 10] [0320134421] +13:46:31 [ 11] [ 6] [947326] +13:46:31 [ 12] [ 6] [134421] +13:46:31 [ 13] [ 4] [0320] +13:46:31 [ 15] [ 4] [0320] +13:46:31 [ 18] [ 4] [6011] +13:46:31 [ 19] [ 3] [418] +13:46:31 [ 22] [ 3] [021] +13:46:31 [ 25] [ 2] [01] +13:46:31 [ 28] [ 9] [D00000000] +13:46:31 [ 32] [ 6] [668899] +13:46:31 [ 35] [ 32] [6213545000904239=491212010423552] +13:46:31 [ 37] [ 12] [507901604317] +13:46:31 [ 41] [ 8] [03202001] +13:46:31 [ 42] [ 15] [APT ] +13:46:31 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +13:46:31 [ 49] [ 3] [418] +13:46:31 [ 52] [ 16] [56B024D607437F0A] +13:46:31 ============================================================================ +13:46:31 + + +waiting on router queue for slot.... +13:46:31 Sending to : +13:46:31 ============================================================================ +13:46:31 ============================================================================ +13:46:31 Slot Id : <18> +13:46:31 Transaction Type : REQUEST +13:46:31 Received From : +13:46:31 ============================================================================ +13:46:31 FNo. Len. Field Value +13:46:31 ============================================================================ +13:46:31 [ 1] [ 4] [0200] +13:46:31 [ 2] [ 16] [6213545000904239] +13:46:31 [ 3] [ 6] [302000] +13:46:31 [ 4] [ 12] [000000000000] +13:46:31 [ 7] [ 10] [0320134421] +13:46:31 [ 11] [ 6] [947326] +13:46:31 [ 12] [ 6] [134421] +13:46:31 [ 13] [ 4] [0320] +13:46:31 [ 15] [ 4] [0320] +13:46:31 [ 18] [ 4] [6011] +13:46:31 [ 19] [ 3] [418] +13:46:31 [ 22] [ 3] [021] +13:46:31 [ 25] [ 2] [01] +13:46:31 [ 28] [ 9] [D00000000] +13:46:31 [ 32] [ 6] [668899] +13:46:31 [ 35] [ 32] [6213545000904239=491212010423552] +13:46:31 [ 37] [ 12] [507901604317] +13:46:31 [ 41] [ 8] [03202001] +13:46:31 [ 42] [ 15] [APT ] +13:46:31 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +13:46:31 [ 49] [ 3] [418] +13:46:31 [ 52] [ 16] [C4DDCE7787E88562] +13:46:31 ============================================================================ +13:46:31 + + +waiting on router queue for slot.... +13:46:31 Sending to : <0> +13:46:31 ============================================================================ +13:46:31 ============================================================================ +13:46:31 Slot Id : <18> +13:46:31 Transaction Type : RESPONSE +13:46:31 Received From : +13:46:31 ============================================================================ +13:46:31 FNo. Len. Field Value +13:46:31 ============================================================================ +13:46:31 [ 1] [ 4] [0210] +13:46:31 [ 2] [ 16] [6213545000904239] +13:46:31 [ 3] [ 6] [302000] +13:46:31 [ 4] [ 12] [000000000000] +13:46:31 [ 7] [ 10] [0320134421] +13:46:31 [ 11] [ 6] [947326] +13:46:31 [ 12] [ 6] [134421] +13:46:31 [ 13] [ 4] [0320] +13:46:31 [ 15] [ 4] [0320] +13:46:31 [ 18] [ 4] [6011] +13:46:31 [ 19] [ 3] [418] +13:46:31 [ 22] [ 3] [021] +13:46:31 [ 32] [ 6] [668899] +13:46:31 [ 35] [ 32] [6213545000904239=491212010423552] +13:46:31 [ 37] [ 12] [507901604317] +13:46:31 [ 38] [ 6] [134627] +13:46:31 [ 39] [ 2] [55] +13:46:31 [ 41] [ 8] [03202001] +13:46:31 [ 49] [ 3] [418] +13:46:31 ============================================================================ +13:46:31 Sending to : +13:46:31 ============================================================================ +13:46:31 + + +waiting on router queue for slot.... +13:46:32 ============================================================================ +13:46:32 Slot Id : <18> +13:46:32 Transaction Type : RESPONSE +13:46:32 Received From : +13:46:32 ============================================================================ +13:46:32 FNo. Len. Field Value +13:46:32 ============================================================================ +13:46:32 [ 1] [ 4] [0210] +13:46:32 [ 2] [ 16] [6213545000904239] +13:46:32 [ 3] [ 6] [302000] +13:46:32 [ 4] [ 12] [000000000000] +13:46:32 [ 7] [ 10] [0320134421] +13:46:32 [ 11] [ 6] [947326] +13:46:32 [ 12] [ 6] [134421] +13:46:32 [ 13] [ 4] [0320] +13:46:32 [ 15] [ 4] [0320] +13:46:32 [ 18] [ 4] [6011] +13:46:32 [ 19] [ 3] [418] +13:46:32 [ 22] [ 3] [021] +13:46:32 [ 32] [ 6] [668899] +13:46:32 [ 35] [ 32] [6213545000904239=491212010423552] +13:46:32 [ 37] [ 12] [507901604317] +13:46:32 [ 38] [ 6] [134627] +13:46:32 [ 39] [ 2] [55] +13:46:32 [ 41] [ 8] [03202001] +13:46:32 [ 49] [ 3] [418] +13:46:32 ============================================================================ +13:46:32 Calculate Source COMM Id = 4 +13:46:32 ============================================================================ +13:46:32 + + +waiting on router queue for slot.... +13:46:36 ============================================================================ +13:46:36 Slot Id : <40> +13:46:36 Transaction Type : REQUEST +13:46:36 Received From : +13:46:36 ============================================================================ +13:46:36 FNo. Len. Field Value +13:46:36 ============================================================================ +13:46:36 [ 1] [ 4] [0800] +13:46:36 [ 7] [ 10] [0320064543] +13:46:36 [ 11] [ 6] [156633] +13:46:36 [ 70] [ 3] [301] +13:46:36 ============================================================================ +13:46:36 + + +waiting on router queue for slot.... +13:46:36 Sending to : +13:46:36 ============================================================================ +13:46:36 ============================================================================ +13:46:36 Slot Id : <40> +13:46:36 Transaction Type : RESPONSE +13:46:36 Received From : +13:46:36 ============================================================================ +13:46:36 FNo. Len. Field Value +13:46:36 ============================================================================ +13:46:36 [ 1] [ 4] [0810] +13:46:36 [ 7] [ 10] [0320064543] +13:46:36 [ 11] [ 6] [156633] +13:46:36 [ 39] [ 2] [00] +13:46:36 [ 70] [ 3] [301] +13:46:36 ============================================================================ +13:46:36 Calculate Source COMM Id = 2 +13:46:36 ============================================================================ +13:46:36 + + +waiting on router queue for slot.... +13:46:44 ============================================================================ +13:46:44 Slot Id : <467> +13:46:44 Transaction Type : REQUEST +13:46:44 Received From : +13:46:44 ============================================================================ +13:46:44 FNo. Len. Field Value +13:46:44 ============================================================================ +13:46:44 [ 1] [ 4] [0200] +13:46:44 [ 2] [ 16] [6688990106718701] +13:46:44 [ 3] [ 6] [300000] +13:46:44 [ 4] [ 12] [000000000000] +13:46:44 [ 7] [ 10] [0320134640] +13:46:44 [ 11] [ 6] [761684] +13:46:44 [ 12] [ 6] [134640] +13:46:44 [ 13] [ 4] [0320] +13:46:44 [ 15] [ 4] [0320] +13:46:44 [ 18] [ 4] [6011] +13:46:44 [ 22] [ 3] [900] +13:46:44 [ 25] [ 2] [02] +13:46:44 [ 28] [ 9] [D00000000] +13:46:44 [ 32] [ 6] [621354] +13:46:44 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:46:44 [ 37] [ 12] [507904807749] +13:46:44 [ 41] [ 8] [07001600] +13:46:44 [ 42] [ 15] [NATIVE ] +13:46:44 [ 43] [ 40] [Long District Long LAO] +13:46:44 [ 49] [ 3] [418] +13:46:44 [ 52] [ 16] [9179F74863A9054A] +13:46:44 ============================================================================ +13:46:44 + + +waiting on router queue for slot.... +13:46:44 Sending to : +13:46:44 ============================================================================ +13:46:44 Sending to : +13:46:44 ============================================================================ +13:46:45 ============================================================================ +13:46:45 Slot Id : <467> +13:46:45 Transaction Type : REQUEST +13:46:45 Received From : +13:46:45 ============================================================================ +13:46:45 FNo. Len. Field Value +13:46:45 ============================================================================ +13:46:45 [ 1] [ 4] [0200] +13:46:45 [ 2] [ 16] [6688990106718701] +13:46:45 [ 3] [ 6] [300000] +13:46:45 [ 4] [ 12] [000000000000] +13:46:45 [ 7] [ 10] [0320134640] +13:46:45 [ 11] [ 6] [761684] +13:46:45 [ 12] [ 6] [134640] +13:46:45 [ 13] [ 4] [0320] +13:46:45 [ 15] [ 4] [0320] +13:46:45 [ 18] [ 4] [6011] +13:46:45 [ 22] [ 3] [900] +13:46:45 [ 25] [ 2] [02] +13:46:45 [ 28] [ 9] [D00000000] +13:46:45 [ 32] [ 6] [621354] +13:46:45 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:46:45 [ 37] [ 12] [507904807749] +13:46:45 [ 41] [ 8] [07001600] +13:46:45 [ 42] [ 15] [NATIVE ] +13:46:45 [ 43] [ 40] [Long District Long LAO] +13:46:45 [ 49] [ 3] [418] +13:46:45 [ 52] [ 16] [9179F74863A9054A] +13:46:45 ============================================================================ +13:46:45 + + +waiting on router queue for slot.... +13:46:45 Sending to : +13:46:45 ============================================================================ +13:46:45 ============================================================================ +13:46:45 Slot Id : <467> +13:46:45 Transaction Type : REQUEST +13:46:45 Received From : +13:46:45 ============================================================================ +13:46:45 FNo. Len. Field Value +13:46:45 ============================================================================ +13:46:45 [ 1] [ 4] [0200] +13:46:45 [ 2] [ 16] [6688990106718701] +13:46:45 [ 3] [ 6] [300000] +13:46:45 [ 4] [ 12] [000000000000] +13:46:45 [ 7] [ 10] [0320134640] +13:46:45 [ 11] [ 6] [761684] +13:46:45 [ 12] [ 6] [134640] +13:46:45 [ 13] [ 4] [0320] +13:46:45 [ 15] [ 4] [0320] +13:46:45 [ 18] [ 4] [6011] +13:46:45 [ 22] [ 3] [900] +13:46:45 [ 25] [ 2] [02] +13:46:45 [ 28] [ 9] [D00000000] +13:46:45 [ 32] [ 6] [621354] +13:46:45 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:46:45 [ 37] [ 12] [507904807749] +13:46:45 [ 41] [ 8] [07001600] +13:46:45 [ 42] [ 15] [NATIVE ] +13:46:45 [ 43] [ 40] [Long District Long LAO] +13:46:45 [ 49] [ 3] [418] +13:46:45 [ 52] [ 16] [4D85CBB2A662658B] +13:46:45 ============================================================================ +13:46:45 + + +waiting on router queue for slot.... +13:46:45 Sending to : <4> +13:46:45 ============================================================================ +13:46:47 ============================================================================ +13:46:47 Slot Id : <467> +13:46:47 Transaction Type : RESPONSE +13:46:47 Received From : +13:46:47 ============================================================================ +13:46:47 FNo. Len. Field Value +13:46:47 ============================================================================ +13:46:47 [ 1] [ 4] [0210] +13:46:47 [ 2] [ 16] [6688990106718701] +13:46:47 [ 3] [ 6] [300000] +13:46:47 [ 4] [ 12] [000000000000] +13:46:47 [ 11] [ 6] [761684] +13:46:47 [ 12] [ 6] [134640] +13:46:47 [ 15] [ 4] [0320] +13:46:47 [ 18] [ 4] [6011] +13:46:47 [ 32] [ 6] [621354] +13:46:47 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:46:47 [ 37] [ 12] [507904807749] +13:46:47 [ 38] [ 6] [530345] +13:46:47 [ 39] [ 2] [00] +13:46:47 [ 41] [ 8] [07001600] +13:46:47 [ 49] [ 3] [418] +13:46:47 [ 54] [ 20] [0002418C000083100169] +13:46:47 ============================================================================ +13:46:47 Sending to : +13:46:47 ============================================================================ +13:46:47 + + +waiting on router queue for slot.... +13:46:48 ============================================================================ +13:46:48 Slot Id : <467> +13:46:48 Transaction Type : RESPONSE +13:46:48 Received From : +13:46:48 ============================================================================ +13:46:48 FNo. Len. Field Value +13:46:48 ============================================================================ +13:46:48 [ 1] [ 4] [0210] +13:46:48 [ 2] [ 16] [6688990106718701] +13:46:48 [ 3] [ 6] [300000] +13:46:48 [ 4] [ 12] [000000000000] +13:46:48 [ 11] [ 6] [761684] +13:46:48 [ 12] [ 6] [134640] +13:46:48 [ 15] [ 4] [0320] +13:46:48 [ 18] [ 4] [6011] +13:46:48 [ 32] [ 6] [621354] +13:46:48 [ 35] [ 37] [6688990106718701=44011231870151800000] +13:46:48 [ 37] [ 12] [507904807749] +13:46:48 [ 38] [ 6] [530345] +13:46:48 [ 39] [ 2] [00] +13:46:48 [ 41] [ 8] [07001600] +13:46:48 [ 49] [ 3] [418] +13:46:48 [ 54] [ 20] [0002418C000083100169] +13:46:48 ============================================================================ +13:46:48 Calculate Source COMM Id = 0 +13:46:48 ============================================================================ +13:46:48 + + +waiting on router queue for slot.... +13:46:52 ============================================================================ +13:46:52 Slot Id : <8> +13:46:52 Transaction Type : REQUEST +13:46:52 Received From : +13:46:52 ============================================================================ +13:46:52 FNo. Len. Field Value +13:46:52 ============================================================================ +13:46:52 [ 1] [ 4] [0800] +13:46:52 [ 7] [ 10] [0320064559] +13:46:52 [ 11] [ 6] [156634] +13:46:52 [ 70] [ 3] [301] +13:46:52 ============================================================================ +13:46:52 + + +waiting on router queue for slot.... +13:46:52 Sending to : +13:46:52 ============================================================================ +13:46:52 ============================================================================ +13:46:52 Slot Id : <8> +13:46:52 Transaction Type : RESPONSE +13:46:52 Received From : +13:46:52 ============================================================================ +13:46:52 FNo. Len. Field Value +13:46:52 ============================================================================ +13:46:52 [ 1] [ 4] [0810] +13:46:52 [ 7] [ 10] [0320064559] +13:46:52 [ 11] [ 6] [156634] +13:46:52 [ 39] [ 2] [00] +13:46:52 [ 70] [ 3] [301] +13:46:52 ============================================================================ +13:46:52 Calculate Source COMM Id = 2 +13:46:52 ============================================================================ +13:46:52 + + +waiting on router queue for slot.... +13:47:03 ============================================================================ +13:47:03 Slot Id : <28> +13:47:03 Transaction Type : REQUEST +13:47:03 Received From : +13:47:03 ============================================================================ +13:47:03 FNo. Len. Field Value +13:47:03 ============================================================================ +13:47:03 [ 1] [ 4] [0800] +13:47:03 [ 7] [ 10] [0320064610] +13:47:03 [ 11] [ 6] [156635] +13:47:03 [ 70] [ 3] [301] +13:47:03 ============================================================================ +13:47:03 + + +waiting on router queue for slot.... +13:47:03 Sending to : +13:47:03 ============================================================================ +13:47:03 ============================================================================ +13:47:03 Slot Id : <28> +13:47:03 Transaction Type : RESPONSE +13:47:03 Received From : +13:47:03 ============================================================================ +13:47:03 FNo. Len. Field Value +13:47:03 ============================================================================ +13:47:03 [ 1] [ 4] [0810] +13:47:03 [ 7] [ 10] [0320064610] +13:47:03 [ 11] [ 6] [156635] +13:47:03 [ 39] [ 2] [00] +13:47:03 [ 70] [ 3] [301] +13:47:03 ============================================================================ +13:47:03 Calculate Source COMM Id = 2 +13:47:03 ============================================================================ +13:47:03 + + +waiting on router queue for slot.... +13:47:05 ============================================================================ +13:47:05 Slot Id : <43> +13:47:05 Transaction Type : REQUEST +13:47:05 Received From : +13:47:05 ============================================================================ +13:47:05 FNo. Len. Field Value +13:47:05 ============================================================================ +13:47:05 [ 1] [ 4] [0200] +13:47:05 [ 2] [ 16] [1808930900013186] +13:47:05 [ 3] [ 6] [301000] +13:47:05 [ 4] [ 12] [000000000000] +13:47:05 [ 7] [ 10] [0320134455] +13:47:05 [ 11] [ 6] [947345] +13:47:05 [ 12] [ 6] [134455] +13:47:05 [ 13] [ 4] [0320] +13:47:05 [ 15] [ 4] [0320] +13:47:05 [ 18] [ 4] [6011] +13:47:05 [ 19] [ 3] [418] +13:47:05 [ 22] [ 3] [021] +13:47:05 [ 25] [ 2] [01] +13:47:05 [ 28] [ 9] [D00000000] +13:47:05 [ 32] [ 6] [668899] +13:47:05 [ 35] [ 27] [1808930900013186=1803500926] +13:47:05 [ 37] [ 12] [507902209931] +13:47:05 [ 41] [ 8] [03006009] +13:47:05 [ 42] [ 15] [APT ] +13:47:05 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +13:47:05 [ 49] [ 3] [418] +13:47:05 [ 52] [ 16] [83C594F00057D948] +13:47:05 ============================================================================ +13:47:05 + + +waiting on router queue for slot.... +13:47:05 Sending to : +13:47:05 ============================================================================ +13:47:05 Sending to : +13:47:05 ============================================================================ +13:47:05 ============================================================================ +13:47:05 Slot Id : <43> +13:47:05 Transaction Type : REQUEST +13:47:05 Received From : +13:47:05 ============================================================================ +13:47:05 FNo. Len. Field Value +13:47:05 ============================================================================ +13:47:05 [ 1] [ 4] [0200] +13:47:05 [ 2] [ 16] [1808930900013186] +13:47:05 [ 3] [ 6] [301000] +13:47:05 [ 4] [ 12] [000000000000] +13:47:05 [ 7] [ 10] [0320134455] +13:47:05 [ 11] [ 6] [947345] +13:47:05 [ 12] [ 6] [134455] +13:47:05 [ 13] [ 4] [0320] +13:47:05 [ 15] [ 4] [0320] +13:47:05 [ 18] [ 4] [6011] +13:47:05 [ 19] [ 3] [418] +13:47:05 [ 22] [ 3] [021] +13:47:05 [ 25] [ 2] [01] +13:47:05 [ 28] [ 9] [D00000000] +13:47:05 [ 32] [ 6] [668899] +13:47:05 [ 35] [ 27] [1808930900013186=1803500926] +13:47:05 [ 37] [ 12] [507902209931] +13:47:05 [ 41] [ 8] [03006009] +13:47:05 [ 42] [ 15] [APT ] +13:47:05 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +13:47:05 [ 49] [ 3] [418] +13:47:05 [ 52] [ 16] [83C594F00057D948] +13:47:05 ============================================================================ +13:47:05 + + +waiting on router queue for slot.... +13:47:05 Sending to : +13:47:05 ============================================================================ +13:47:05 ============================================================================ +13:47:05 Slot Id : <43> +13:47:05 Transaction Type : REQUEST +13:47:05 Received From : +13:47:05 ============================================================================ +13:47:05 FNo. Len. Field Value +13:47:05 ============================================================================ +13:47:05 [ 1] [ 4] [0200] +13:47:05 [ 2] [ 16] [1808930900013186] +13:47:05 [ 3] [ 6] [301000] +13:47:05 [ 4] [ 12] [000000000000] +13:47:05 [ 7] [ 10] [0320134455] +13:47:05 [ 11] [ 6] [947345] +13:47:05 [ 12] [ 6] [134455] +13:47:05 [ 13] [ 4] [0320] +13:47:05 [ 15] [ 4] [0320] +13:47:05 [ 18] [ 4] [6011] +13:47:05 [ 19] [ 3] [418] +13:47:05 [ 22] [ 3] [021] +13:47:05 [ 25] [ 2] [01] +13:47:05 [ 28] [ 9] [D00000000] +13:47:05 [ 32] [ 6] [668899] +13:47:05 [ 35] [ 27] [1808930900013186=1803500926] +13:47:05 [ 37] [ 12] [507902209931] +13:47:05 [ 41] [ 8] [03006009] +13:47:05 [ 42] [ 15] [APT ] +13:47:05 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +13:47:05 [ 49] [ 3] [418] +13:47:05 [ 52] [ 16] [206D44E716E8D807] +13:47:05 ============================================================================ +13:47:05 + + +waiting on router queue for slot.... +13:47:05 Sending to : <2> +13:47:05 ============================================================================ +13:47:08 ============================================================================ +13:47:08 Slot Id : <43> +13:47:08 Transaction Type : RESPONSE +13:47:08 Received From : +13:47:08 ============================================================================ +13:47:08 FNo. Len. Field Value +13:47:08 ============================================================================ +13:47:08 [ 1] [ 4] [0210] +13:47:08 [ 2] [ 16] [1808930900013186] +13:47:08 [ 3] [ 6] [301000] +13:47:08 [ 7] [ 10] [0320134455] +13:47:08 [ 11] [ 6] [947345] +13:47:08 [ 12] [ 6] [134455] +13:47:08 [ 13] [ 4] [0320] +13:47:08 [ 14] [ 4] [1803] +13:47:08 [ 19] [ 3] [418] +13:47:08 [ 32] [ 6] [668899] +13:47:08 [ 37] [ 12] [507902209931] +13:47:08 [ 38] [ 6] [947345] +13:47:08 [ 39] [ 2] [00] +13:47:08 [ 41] [ 8] [03006009] +13:47:08 [ 49] [ 3] [418] +13:47:08 [ 52] [ 16] [206D44E716E8D807] +13:47:08 [ 54] [ 20] [1002418C000021853600] +13:47:08 ============================================================================ +13:47:08 Sending to : +13:47:08 ============================================================================ +13:47:08 + + +waiting on router queue for slot.... +13:47:10 ============================================================================ +13:47:10 Slot Id : <43> +13:47:10 Transaction Type : RESPONSE +13:47:10 Received From : +13:47:10 ============================================================================ +13:47:10 FNo. Len. Field Value +13:47:10 ============================================================================ +13:47:10 [ 1] [ 4] [0210] +13:47:10 [ 2] [ 16] [1808930900013186] +13:47:10 [ 3] [ 6] [301000] +13:47:10 [ 7] [ 10] [0320134455] +13:47:10 [ 11] [ 6] [947345] +13:47:10 [ 12] [ 6] [134455] +13:47:10 [ 13] [ 4] [0320] +13:47:10 [ 14] [ 4] [1803] +13:47:10 [ 19] [ 3] [418] +13:47:10 [ 32] [ 6] [668899] +13:47:10 [ 37] [ 12] [507902209931] +13:47:10 [ 38] [ 6] [947345] +13:47:10 [ 39] [ 2] [00] +13:47:10 [ 41] [ 8] [03006009] +13:47:10 [ 49] [ 3] [418] +13:47:10 [ 52] [ 16] [206D44E716E8D807] +13:47:10 [ 54] [ 20] [1002418C000021853600] +13:47:10 ============================================================================ +13:47:10 Calculate Source COMM Id = 4 +13:47:10 ============================================================================ +13:47:10 + + +waiting on router queue for slot.... +13:47:18 ============================================================================ +13:47:18 Slot Id : <52> +13:47:18 Transaction Type : REQUEST +13:47:18 Received From : +13:47:18 ============================================================================ +13:47:18 FNo. Len. Field Value +13:47:18 ============================================================================ +13:47:18 [ 1] [ 4] [0800] +13:47:18 [ 2] [ 5] [02531] +13:47:18 [ 3] [ 6] [579138] +13:47:18 [ 7] [ 10] [0320064718] +13:47:18 [ 11] [ 6] [807212] +13:47:18 [ 15] [ 10] [0320064718] +13:47:18 [ 37] [ 11] [57913807212] +13:47:18 [ 70] [ 3] [001] +13:47:18 ============================================================================ +13:47:18 + + +waiting on router queue for slot.... +13:47:18 ============================================================================ +13:47:18 Slot Id : <52> +13:47:18 Transaction Type : RESPONSE +13:47:18 Received From : +13:47:18 ============================================================================ +13:47:18 FNo. Len. Field Value +13:47:18 ============================================================================ +13:47:18 [ 1] [ 4] [0810] +13:47:18 [ 7] [ 10] [0320064718] +13:47:18 [ 11] [ 6] [807212] +13:47:18 [ 15] [ 4] [0320] +13:47:18 [ 37] [ 12] [57913807212] +13:47:18 [ 39] [ 2] [00] +13:47:18 [ 70] [ 3] [001] +13:47:18 ============================================================================ +13:47:18 Sending to : +13:47:18 ============================================================================ +13:47:18 + + +waiting on router queue for slot.... +13:47:18 ============================================================================ +13:47:18 Slot Id : <7> +13:47:18 Transaction Type : REQUEST +13:47:18 Received From : +13:47:18 ============================================================================ +13:47:18 FNo. Len. Field Value +13:47:18 ============================================================================ +13:47:18 [ 1] [ 4] [0800] +13:47:18 [ 7] [ 10] [0320064625] +13:47:18 [ 11] [ 6] [156636] +13:47:18 [ 70] [ 3] [301] +13:47:18 ============================================================================ +13:47:18 + + +waiting on router queue for slot.... +13:47:18 Sending to : +13:47:18 ============================================================================ +13:47:18 ============================================================================ +13:47:18 Slot Id : <7> +13:47:18 Transaction Type : RESPONSE +13:47:18 Received From : +13:47:18 ============================================================================ +13:47:18 FNo. Len. Field Value +13:47:18 ============================================================================ +13:47:18 [ 1] [ 4] [0810] +13:47:18 [ 7] [ 10] [0320064625] +13:47:18 [ 11] [ 6] [156636] +13:47:18 [ 39] [ 2] [00] +13:47:18 [ 70] [ 3] [301] +13:47:18 ============================================================================ +13:47:18 Calculate Source COMM Id = 2 +13:47:18 ============================================================================ +13:47:18 + + +waiting on router queue for slot.... +13:47:34 ============================================================================ +13:47:34 Slot Id : <50> +13:47:34 Transaction Type : REQUEST +13:47:34 Received From : +13:47:34 ============================================================================ +13:47:34 FNo. Len. Field Value +13:47:34 ============================================================================ +13:47:34 [ 1] [ 4] [0800] +13:47:34 [ 7] [ 10] [0320064641] +13:47:34 [ 11] [ 6] [156637] +13:47:34 [ 70] [ 3] [301] +13:47:34 ============================================================================ +13:47:34 + + +waiting on router queue for slot.... +13:47:34 Sending to : +13:47:34 ============================================================================ +13:47:34 ============================================================================ +13:47:34 Slot Id : <50> +13:47:34 Transaction Type : RESPONSE +13:47:34 Received From : +13:47:34 ============================================================================ +13:47:34 FNo. Len. Field Value +13:47:34 ============================================================================ +13:47:34 [ 1] [ 4] [0810] +13:47:34 [ 7] [ 10] [0320064641] +13:47:34 [ 11] [ 6] [156637] +13:47:34 [ 39] [ 2] [00] +13:47:34 [ 70] [ 3] [301] +13:47:34 ============================================================================ +13:47:34 Calculate Source COMM Id = 2 +13:47:34 ============================================================================ +13:47:34 + + +waiting on router queue for slot.... +13:47:50 ============================================================================ +13:47:50 Slot Id : <25> +13:47:50 Transaction Type : REQUEST +13:47:50 Received From : +13:47:50 ============================================================================ +13:47:50 FNo. Len. Field Value +13:47:50 ============================================================================ +13:47:50 [ 1] [ 4] [0800] +13:47:50 [ 7] [ 10] [0320064658] +13:47:50 [ 11] [ 6] [156638] +13:47:50 [ 70] [ 3] [301] +13:47:50 ============================================================================ +13:47:50 + + +waiting on router queue for slot.... +13:47:50 Sending to : +13:47:50 ============================================================================ +13:47:50 ============================================================================ +13:47:50 Slot Id : <25> +13:47:50 Transaction Type : RESPONSE +13:47:50 Received From : +13:47:50 ============================================================================ +13:47:50 FNo. Len. Field Value +13:47:50 ============================================================================ +13:47:50 [ 1] [ 4] [0810] +13:47:50 [ 7] [ 10] [0320064658] +13:47:50 [ 11] [ 6] [156638] +13:47:50 [ 39] [ 2] [00] +13:47:50 [ 70] [ 3] [301] +13:47:50 ============================================================================ +13:47:50 Calculate Source COMM Id = 2 +13:47:50 ============================================================================ +13:47:50 + + +waiting on router queue for slot.... +13:47:55 ============================================================================ +13:47:55 Slot Id : <61> +13:47:55 Transaction Type : REQUEST +13:47:55 Received From : +13:47:55 ============================================================================ +13:47:55 FNo. Len. Field Value +13:47:55 ============================================================================ +13:47:55 [ 1] [ 4] [0200] +13:47:55 [ 2] [ 16] [6213544002012497] +13:47:55 [ 3] [ 6] [010000] +13:47:55 [ 4] [ 12] [000010000000] +13:47:55 [ 7] [ 10] [0320134545] +13:47:55 [ 11] [ 6] [947377] +13:47:55 [ 12] [ 6] [134545] +13:47:55 [ 13] [ 4] [0320] +13:47:55 [ 15] [ 4] [0320] +13:47:55 [ 18] [ 4] [6011] +13:47:55 [ 19] [ 3] [418] +13:47:55 [ 22] [ 3] [021] +13:47:55 [ 25] [ 2] [01] +13:47:55 [ 28] [ 9] [D00002000] +13:47:55 [ 32] [ 6] [668899] +13:47:55 [ 35] [ 32] [6213544002012497=491212011249740] +13:47:55 [ 37] [ 12] [507901912205] +13:47:55 [ 41] [ 8] [03013004] +13:47:55 [ 42] [ 15] [APT ] +13:47:55 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:47:55 [ 49] [ 3] [418] +13:47:55 [ 52] [ 16] [ED1FC5CC918BCF12] +13:47:55 ============================================================================ +13:47:55 + + +waiting on router queue for slot.... +13:47:55 Sending to : +13:47:55 ============================================================================ +13:47:55 Sending to : +13:47:55 ============================================================================ +13:47:55 ============================================================================ +13:47:55 Slot Id : <61> +13:47:55 Transaction Type : REQUEST +13:47:55 Received From : +13:47:55 ============================================================================ +13:47:55 FNo. Len. Field Value +13:47:55 ============================================================================ +13:47:55 [ 1] [ 4] [0200] +13:47:55 [ 2] [ 16] [6213544002012497] +13:47:55 [ 3] [ 6] [010000] +13:47:55 [ 4] [ 12] [000010000000] +13:47:55 [ 7] [ 10] [0320134545] +13:47:55 [ 11] [ 6] [947377] +13:47:55 [ 12] [ 6] [134545] +13:47:55 [ 13] [ 4] [0320] +13:47:55 [ 15] [ 4] [0320] +13:47:55 [ 18] [ 4] [6011] +13:47:55 [ 19] [ 3] [418] +13:47:55 [ 22] [ 3] [021] +13:47:55 [ 25] [ 2] [01] +13:47:55 [ 28] [ 9] [D00002000] +13:47:55 [ 32] [ 6] [668899] +13:47:55 [ 35] [ 32] [6213544002012497=491212011249740] +13:47:55 [ 37] [ 12] [507901912205] +13:47:55 [ 41] [ 8] [03013004] +13:47:55 [ 42] [ 15] [APT ] +13:47:55 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:47:55 [ 49] [ 3] [418] +13:47:55 [ 52] [ 16] [ED1FC5CC918BCF12] +13:47:55 ============================================================================ +13:47:55 + + +waiting on router queue for slot.... +13:47:55 Sending to : +13:47:55 ============================================================================ +13:47:55 ============================================================================ +13:47:55 Slot Id : <61> +13:47:55 Transaction Type : REQUEST +13:47:55 Received From : +13:47:55 ============================================================================ +13:47:55 FNo. Len. Field Value +13:47:55 ============================================================================ +13:47:55 [ 1] [ 4] [0200] +13:47:55 [ 2] [ 16] [6213544002012497] +13:47:55 [ 3] [ 6] [010000] +13:47:55 [ 4] [ 12] [000010000000] +13:47:55 [ 7] [ 10] [0320134545] +13:47:55 [ 11] [ 6] [947377] +13:47:55 [ 12] [ 6] [134545] +13:47:55 [ 13] [ 4] [0320] +13:47:55 [ 15] [ 4] [0320] +13:47:55 [ 18] [ 4] [6011] +13:47:55 [ 19] [ 3] [418] +13:47:55 [ 22] [ 3] [021] +13:47:55 [ 25] [ 2] [01] +13:47:55 [ 28] [ 9] [D00002000] +13:47:55 [ 32] [ 6] [668899] +13:47:55 [ 35] [ 32] [6213544002012497=491212011249740] +13:47:55 [ 37] [ 12] [507901912205] +13:47:55 [ 41] [ 8] [03013004] +13:47:55 [ 42] [ 15] [APT ] +13:47:55 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:47:55 [ 49] [ 3] [418] +13:47:55 [ 52] [ 16] [0C7EA11CDB747ACA] +13:47:55 ============================================================================ +13:47:55 + + +waiting on router queue for slot.... +13:47:55 Sending to : <0> +13:47:55 ============================================================================ +13:47:55 ============================================================================ +13:47:55 Slot Id : <61> +13:47:55 Transaction Type : RESPONSE +13:47:55 Received From : +13:47:55 ============================================================================ +13:47:55 FNo. Len. Field Value +13:47:55 ============================================================================ +13:47:55 [ 1] [ 4] [0210] +13:47:55 [ 2] [ 16] [6213544002012497] +13:47:55 [ 3] [ 6] [010000] +13:47:55 [ 4] [ 12] [000010000000] +13:47:55 [ 7] [ 10] [0320134545] +13:47:55 [ 11] [ 6] [947377] +13:47:55 [ 12] [ 6] [134545] +13:47:55 [ 13] [ 4] [0320] +13:47:55 [ 15] [ 4] [0320] +13:47:55 [ 18] [ 4] [6011] +13:47:55 [ 19] [ 3] [418] +13:47:55 [ 22] [ 3] [021] +13:47:55 [ 32] [ 6] [668899] +13:47:55 [ 35] [ 32] [6213544002012497=491212011249740] +13:47:55 [ 37] [ 12] [507901912205] +13:47:55 [ 38] [ 6] [134751] +13:47:55 [ 39] [ 2] [75] +13:47:55 [ 41] [ 8] [03013004] +13:47:55 [ 49] [ 3] [418] +13:47:55 ============================================================================ +13:47:55 Sending to : +13:47:55 ============================================================================ +13:47:55 + + +waiting on router queue for slot.... +13:47:56 ============================================================================ +13:47:56 Slot Id : <61> +13:47:56 Transaction Type : RESPONSE +13:47:56 Received From : +13:47:56 ============================================================================ +13:47:56 FNo. Len. Field Value +13:47:56 ============================================================================ +13:47:56 [ 1] [ 4] [0210] +13:47:56 [ 2] [ 16] [6213544002012497] +13:47:56 [ 3] [ 6] [010000] +13:47:56 [ 4] [ 12] [000010000000] +13:47:56 [ 7] [ 10] [0320134545] +13:47:56 [ 11] [ 6] [947377] +13:47:56 [ 12] [ 6] [134545] +13:47:56 [ 13] [ 4] [0320] +13:47:56 [ 15] [ 4] [0320] +13:47:56 [ 18] [ 4] [6011] +13:47:56 [ 19] [ 3] [418] +13:47:56 [ 22] [ 3] [021] +13:47:56 [ 32] [ 6] [668899] +13:47:56 [ 35] [ 32] [6213544002012497=491212011249740] +13:47:56 [ 37] [ 12] [507901912205] +13:47:56 [ 38] [ 6] [134751] +13:47:56 [ 39] [ 2] [75] +13:47:56 [ 41] [ 8] [03013004] +13:47:56 [ 49] [ 3] [418] +13:47:56 ============================================================================ +13:47:56 Calculate Source COMM Id = 4 +13:47:56 ============================================================================ +13:47:56 + + +waiting on router queue for slot.... +13:48:02 ============================================================================ +13:48:02 Slot Id : <44> +13:48:02 Transaction Type : REQUEST +13:48:02 Received From : +13:48:02 ============================================================================ +13:48:02 FNo. Len. Field Value +13:48:02 ============================================================================ +13:48:02 [ 1] [ 4] [0800] +13:48:02 [ 7] [ 10] [0320064709] +13:48:02 [ 11] [ 6] [156639] +13:48:02 [ 70] [ 3] [301] +13:48:02 ============================================================================ +13:48:02 + + +waiting on router queue for slot.... +13:48:02 Sending to : +13:48:02 ============================================================================ +13:48:02 ============================================================================ +13:48:02 Slot Id : <44> +13:48:02 Transaction Type : RESPONSE +13:48:02 Received From : +13:48:02 ============================================================================ +13:48:02 FNo. Len. Field Value +13:48:02 ============================================================================ +13:48:02 [ 1] [ 4] [0810] +13:48:02 [ 7] [ 10] [0320064709] +13:48:02 [ 11] [ 6] [156639] +13:48:02 [ 39] [ 2] [00] +13:48:02 [ 70] [ 3] [301] +13:48:02 ============================================================================ +13:48:02 Calculate Source COMM Id = 2 +13:48:02 ============================================================================ +13:48:02 + + +waiting on router queue for slot.... +13:48:10 ============================================================================ +13:48:10 Slot Id : <55> +13:48:10 Transaction Type : REQUEST +13:48:10 Received From : +13:48:10 ============================================================================ +13:48:10 FNo. Len. Field Value +13:48:10 ============================================================================ +13:48:10 [ 1] [ 4] [0200] +13:48:10 [ 2] [ 16] [2206990010000107] +13:48:10 [ 3] [ 6] [301000] +13:48:10 [ 4] [ 12] [000000000000] +13:48:10 [ 7] [ 10] [0320134805] +13:48:10 [ 11] [ 6] [761978] +13:48:10 [ 12] [ 6] [134805] +13:48:10 [ 13] [ 4] [0320] +13:48:10 [ 15] [ 4] [0320] +13:48:10 [ 18] [ 4] [6011] +13:48:10 [ 22] [ 3] [900] +13:48:10 [ 25] [ 2] [02] +13:48:10 [ 28] [ 9] [D00000000] +13:48:10 [ 32] [ 6] [621354] +13:48:10 [ 35] [ 32] [2206990010000107=980412613970086] +13:48:10 [ 37] [ 12] [507905304018] +13:48:10 [ 41] [ 8] [08001100] +13:48:10 [ 42] [ 15] [NATIVE ] +13:48:10 [ 43] [ 40] [Saysetha Unit02 Attapeu LAO] +13:48:10 [ 49] [ 3] [418] +13:48:10 [ 52] [ 16] [D5FF385EFEDBCE9A] +13:48:10 ============================================================================ +13:48:10 + + +waiting on router queue for slot.... +13:48:10 Sending to : +13:48:10 ============================================================================ +13:48:10 Sending to : +13:48:10 ============================================================================ +13:48:10 ============================================================================ +13:48:10 Slot Id : <55> +13:48:10 Transaction Type : REQUEST +13:48:10 Received From : +13:48:10 ============================================================================ +13:48:10 FNo. Len. Field Value +13:48:10 ============================================================================ +13:48:10 [ 1] [ 4] [0200] +13:48:10 [ 2] [ 16] [2206990010000107] +13:48:10 [ 3] [ 6] [301000] +13:48:10 [ 4] [ 12] [000000000000] +13:48:10 [ 7] [ 10] [0320134805] +13:48:10 [ 11] [ 6] [761978] +13:48:10 [ 12] [ 6] [134805] +13:48:10 [ 13] [ 4] [0320] +13:48:10 [ 15] [ 4] [0320] +13:48:10 [ 18] [ 4] [6011] +13:48:10 [ 22] [ 3] [900] +13:48:10 [ 25] [ 2] [02] +13:48:10 [ 28] [ 9] [D00000000] +13:48:10 [ 32] [ 6] [621354] +13:48:10 [ 35] [ 32] [2206990010000107=980412613970086] +13:48:10 [ 37] [ 12] [507905304018] +13:48:10 [ 41] [ 8] [08001100] +13:48:10 [ 42] [ 15] [NATIVE ] +13:48:10 [ 43] [ 40] [Saysetha Unit02 Attapeu LAO] +13:48:10 [ 49] [ 3] [418] +13:48:10 [ 52] [ 16] [D5FF385EFEDBCE9A] +13:48:10 ============================================================================ +13:48:10 + + +waiting on router queue for slot.... +13:48:10 Sending to : +13:48:10 ============================================================================ +13:48:10 ============================================================================ +13:48:10 Slot Id : <55> +13:48:10 Transaction Type : REQUEST +13:48:10 Received From : +13:48:10 ============================================================================ +13:48:10 FNo. Len. Field Value +13:48:10 ============================================================================ +13:48:10 [ 1] [ 4] [0200] +13:48:10 [ 2] [ 16] [2206990010000107] +13:48:10 [ 3] [ 6] [301000] +13:48:10 [ 4] [ 12] [000000000000] +13:48:10 [ 7] [ 10] [0320134805] +13:48:10 [ 11] [ 6] [761978] +13:48:10 [ 12] [ 6] [134805] +13:48:10 [ 13] [ 4] [0320] +13:48:10 [ 15] [ 4] [0320] +13:48:10 [ 18] [ 4] [6011] +13:48:10 [ 22] [ 3] [900] +13:48:10 [ 25] [ 2] [02] +13:48:10 [ 28] [ 9] [D00000000] +13:48:10 [ 32] [ 6] [621354] +13:48:10 [ 35] [ 32] [2206990010000107=980412613970086] +13:48:10 [ 37] [ 12] [507905304018] +13:48:10 [ 41] [ 8] [08001100] +13:48:10 [ 42] [ 15] [NATIVE ] +13:48:10 [ 43] [ 40] [Saysetha Unit02 Attapeu LAO] +13:48:10 [ 49] [ 3] [418] +13:48:10 [ 52] [ 16] [93B47B13BF7CF287] +13:48:10 ============================================================================ +13:48:10 + + +waiting on router queue for slot.... +13:48:10 Sending to : <1> +13:48:10 ============================================================================ +13:48:12 ============================================================================ +13:48:12 Slot Id : <55> +13:48:12 Transaction Type : RESPONSE +13:48:12 Received From : +13:48:12 ============================================================================ +13:48:12 FNo. Len. Field Value +13:48:12 ============================================================================ +13:48:12 [ 1] [ 4] [0210] +13:48:12 [ 2] [ 16] [2206990010000107] +13:48:12 [ 3] [ 6] [301000] +13:48:12 [ 4] [ 12] [000000000000] +13:48:12 [ 7] [ 10] [0320134805] +13:48:12 [ 11] [ 6] [761978] +13:48:12 [ 12] [ 6] [134805] +13:48:12 [ 13] [ 4] [0320] +13:48:12 [ 15] [ 4] [0320] +13:48:12 [ 18] [ 4] [6011] +13:48:12 [ 32] [ 6] [621354] +13:48:12 [ 35] [ 32] [2206990010000107=980412613970086] +13:48:12 [ 37] [ 12] [507905304018] +13:48:12 [ 38] [ 6] [975321] +13:48:12 [ 39] [ 2] [00] +13:48:12 [ 41] [ 8] [08001100] +13:48:12 [ 49] [ 3] [418] +13:48:12 [ 54] [ 40] [1001418C0001764333001002418C000176433300] +13:48:12 ============================================================================ +13:48:12 Sending to : +13:48:12 ============================================================================ +13:48:12 + + +waiting on router queue for slot.... +13:48:13 ============================================================================ +13:48:13 Slot Id : <15> +13:48:13 Transaction Type : REQUEST +13:48:13 Received From : +13:48:13 ============================================================================ +13:48:13 FNo. Len. Field Value +13:48:13 ============================================================================ +13:48:13 [ 1] [ 4] [0800] +13:48:13 [ 7] [ 10] [0320064720] +13:48:13 [ 11] [ 6] [156640] +13:48:13 [ 70] [ 3] [301] +13:48:13 ============================================================================ +13:48:13 + + +waiting on router queue for slot.... +13:48:13 Sending to : +13:48:13 ============================================================================ +13:48:13 ============================================================================ +13:48:13 Slot Id : <15> +13:48:13 Transaction Type : RESPONSE +13:48:13 Received From : +13:48:13 ============================================================================ +13:48:13 FNo. Len. Field Value +13:48:13 ============================================================================ +13:48:13 [ 1] [ 4] [0810] +13:48:13 [ 7] [ 10] [0320064720] +13:48:13 [ 11] [ 6] [156640] +13:48:13 [ 39] [ 2] [00] +13:48:13 [ 70] [ 3] [301] +13:48:13 ============================================================================ +13:48:13 Calculate Source COMM Id = 2 +13:48:13 ============================================================================ +13:48:13 + + +waiting on router queue for slot.... +13:48:13 ============================================================================ +13:48:13 Slot Id : <55> +13:48:13 Transaction Type : RESPONSE +13:48:13 Received From : +13:48:13 ============================================================================ +13:48:13 FNo. Len. Field Value +13:48:13 ============================================================================ +13:48:13 [ 1] [ 4] [0210] +13:48:13 [ 2] [ 16] [2206990010000107] +13:48:13 [ 3] [ 6] [301000] +13:48:13 [ 4] [ 12] [000000000000] +13:48:13 [ 7] [ 10] [0320134805] +13:48:13 [ 11] [ 6] [761978] +13:48:13 [ 12] [ 6] [134805] +13:48:13 [ 13] [ 4] [0320] +13:48:13 [ 15] [ 4] [0320] +13:48:13 [ 18] [ 4] [6011] +13:48:13 [ 32] [ 6] [621354] +13:48:13 [ 35] [ 32] [2206990010000107=980412613970086] +13:48:13 [ 37] [ 12] [507905304018] +13:48:13 [ 38] [ 6] [975321] +13:48:13 [ 39] [ 2] [00] +13:48:13 [ 41] [ 8] [08001100] +13:48:13 [ 49] [ 3] [418] +13:48:13 [ 54] [ 40] [1001418C0001764333001002418C000176433300] +13:48:13 ============================================================================ +13:48:13 Calculate Source COMM Id = 0 +13:48:13 ============================================================================ +13:48:13 + + +waiting on router queue for slot.... +13:48:20 ============================================================================ +13:48:20 Slot Id : <478> +13:48:20 Transaction Type : REQUEST +13:48:20 Received From : +13:48:20 ============================================================================ +13:48:20 FNo. Len. Field Value +13:48:20 ============================================================================ +13:48:20 [ 1] [ 4] [0800] +13:48:20 [ 2] [ 5] [02531] +13:48:20 [ 3] [ 6] [579138] +13:48:20 [ 7] [ 10] [0320064820] +13:48:20 [ 11] [ 6] [807213] +13:48:20 [ 15] [ 10] [0320064820] +13:48:20 [ 37] [ 11] [57913807213] +13:48:20 [ 70] [ 3] [001] +13:48:20 ============================================================================ +13:48:20 + + +waiting on router queue for slot.... +13:48:20 ============================================================================ +13:48:20 Slot Id : <478> +13:48:20 Transaction Type : RESPONSE +13:48:20 Received From : +13:48:20 ============================================================================ +13:48:20 FNo. Len. Field Value +13:48:20 ============================================================================ +13:48:20 [ 1] [ 4] [0810] +13:48:20 [ 7] [ 10] [0320064820] +13:48:20 [ 11] [ 6] [807213] +13:48:20 [ 15] [ 4] [0320] +13:48:20 [ 37] [ 12] [57913807213] +13:48:20 [ 39] [ 2] [00] +13:48:20 [ 70] [ 3] [001] +13:48:20 ============================================================================ +13:48:20 Sending to : +13:48:20 ============================================================================ +13:48:20 + + +waiting on router queue for slot.... +13:48:30 ============================================================================ +13:48:30 Slot Id : <60> +13:48:30 Transaction Type : REQUEST +13:48:30 Received From : +13:48:30 ============================================================================ +13:48:30 FNo. Len. Field Value +13:48:30 ============================================================================ +13:48:30 [ 1] [ 4] [0800] +13:48:30 [ 7] [ 10] [0320064736] +13:48:30 [ 11] [ 6] [156641] +13:48:30 [ 70] [ 3] [301] +13:48:30 ============================================================================ +13:48:30 + + +waiting on router queue for slot.... +13:48:30 Sending to : +13:48:30 ============================================================================ +13:48:30 ============================================================================ +13:48:30 Slot Id : <60> +13:48:30 Transaction Type : RESPONSE +13:48:30 Received From : +13:48:30 ============================================================================ +13:48:30 FNo. Len. Field Value +13:48:30 ============================================================================ +13:48:30 [ 1] [ 4] [0810] +13:48:30 [ 7] [ 10] [0320064736] +13:48:30 [ 11] [ 6] [156641] +13:48:30 [ 39] [ 2] [00] +13:48:30 [ 70] [ 3] [301] +13:48:30 ============================================================================ +13:48:30 Calculate Source COMM Id = 2 +13:48:30 ============================================================================ +13:48:30 + + +waiting on router queue for slot.... +13:48:33 ============================================================================ +13:48:33 Slot Id : <68> +13:48:33 Transaction Type : REQUEST +13:48:33 Received From : +13:48:33 ============================================================================ +13:48:33 FNo. Len. Field Value +13:48:33 ============================================================================ +13:48:33 [ 1] [ 4] [0200] +13:48:33 [ 2] [ 16] [6213545000000608] +13:48:33 [ 3] [ 6] [301000] +13:48:33 [ 4] [ 12] [000000000000] +13:48:33 [ 7] [ 10] [0320134854] +13:48:33 [ 11] [ 6] [206733] +13:48:33 [ 12] [ 6] [014705] +13:48:33 [ 13] [ 4] [0320] +13:48:33 [ 14] [ 4] [4912] +13:48:33 [ 15] [ 4] [0320] +13:48:33 [ 18] [ 4] [6011] +13:48:33 [ 19] [ 3] [418] +13:48:33 [ 22] [ 3] [021] +13:48:33 [ 25] [ 2] [01] +13:48:33 [ 28] [ 9] [D00000000] +13:48:33 [ 32] [ 6] [198901] +13:48:33 [ 35] [ 32] [6213545000000608=491212010060365] +13:48:33 [ 37] [ 12] [507913206733] +13:48:33 [ 41] [ 8] [01529031] +13:48:33 [ 42] [ 15] [000000041529031] +13:48:33 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +13:48:33 [ 49] [ 3] [418] +13:48:33 [ 52] [ 16] [2649391E89372AD3] +13:48:33 ============================================================================ +13:48:33 + + +waiting on router queue for slot.... +13:48:33 Sending to : +13:48:33 ============================================================================ +13:48:33 Sending to : +13:48:33 ============================================================================ +13:48:34 ============================================================================ +13:48:34 Slot Id : <68> +13:48:34 Transaction Type : REQUEST +13:48:34 Received From : +13:48:34 ============================================================================ +13:48:34 FNo. Len. Field Value +13:48:34 ============================================================================ +13:48:34 [ 1] [ 4] [0200] +13:48:34 [ 2] [ 16] [6213545000000608] +13:48:34 [ 3] [ 6] [301000] +13:48:34 [ 4] [ 12] [000000000000] +13:48:34 [ 7] [ 10] [0320134854] +13:48:34 [ 11] [ 6] [206733] +13:48:34 [ 12] [ 6] [014705] +13:48:34 [ 13] [ 4] [0320] +13:48:34 [ 14] [ 4] [4912] +13:48:34 [ 15] [ 4] [0320] +13:48:34 [ 18] [ 4] [6011] +13:48:34 [ 19] [ 3] [418] +13:48:34 [ 22] [ 3] [021] +13:48:34 [ 25] [ 2] [01] +13:48:34 [ 28] [ 9] [D00000000] +13:48:34 [ 32] [ 6] [198901] +13:48:34 [ 35] [ 32] [6213545000000608=491212010060365] +13:48:34 [ 37] [ 12] [507913206733] +13:48:34 [ 41] [ 8] [01529031] +13:48:34 [ 42] [ 15] [000000041529031] +13:48:34 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +13:48:34 [ 49] [ 3] [418] +13:48:34 [ 52] [ 16] [2649391E89372AD3] +13:48:34 ============================================================================ +13:48:34 + + +waiting on router queue for slot.... +13:48:34 Sending to : +13:48:34 ============================================================================ +13:48:34 ============================================================================ +13:48:34 Slot Id : <68> +13:48:34 Transaction Type : REQUEST +13:48:34 Received From : +13:48:34 ============================================================================ +13:48:34 FNo. Len. Field Value +13:48:34 ============================================================================ +13:48:34 [ 1] [ 4] [0200] +13:48:34 [ 2] [ 16] [6213545000000608] +13:48:34 [ 3] [ 6] [301000] +13:48:34 [ 4] [ 12] [000000000000] +13:48:34 [ 7] [ 10] [0320134854] +13:48:34 [ 11] [ 6] [206733] +13:48:34 [ 12] [ 6] [014705] +13:48:34 [ 13] [ 4] [0320] +13:48:34 [ 14] [ 4] [4912] +13:48:34 [ 15] [ 4] [0320] +13:48:34 [ 18] [ 4] [6011] +13:48:34 [ 19] [ 3] [418] +13:48:34 [ 22] [ 3] [021] +13:48:34 [ 25] [ 2] [01] +13:48:34 [ 28] [ 9] [D00000000] +13:48:34 [ 32] [ 6] [198901] +13:48:34 [ 35] [ 32] [6213545000000608=491212010060365] +13:48:34 [ 37] [ 12] [507913206733] +13:48:34 [ 41] [ 8] [01529031] +13:48:34 [ 42] [ 15] [000000041529031] +13:48:34 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +13:48:34 [ 49] [ 3] [418] +13:48:34 [ 52] [ 16] [57D8B9FACEA13D84] +13:48:34 ============================================================================ +13:48:34 + + +waiting on router queue for slot.... +13:48:34 Sending to : <0> +13:48:34 ============================================================================ +13:48:34 ============================================================================ +13:48:34 Slot Id : <68> +13:48:34 Transaction Type : RESPONSE +13:48:34 Received From : +13:48:34 ============================================================================ +13:48:34 FNo. Len. Field Value +13:48:34 ============================================================================ +13:48:34 [ 1] [ 4] [0210] +13:48:34 [ 2] [ 16] [6213545000000608] +13:48:34 [ 3] [ 6] [301000] +13:48:34 [ 4] [ 12] [000000000000] +13:48:34 [ 7] [ 10] [0320134854] +13:48:34 [ 11] [ 6] [206733] +13:48:34 [ 12] [ 6] [014705] +13:48:34 [ 13] [ 4] [0320] +13:48:34 [ 15] [ 4] [0320] +13:48:34 [ 18] [ 4] [6011] +13:48:34 [ 19] [ 3] [418] +13:48:34 [ 32] [ 6] [198901] +13:48:34 [ 35] [ 32] [6213545000000608=491212010060365] +13:48:34 [ 37] [ 12] [507913206733] +13:48:34 [ 38] [ 6] [709999] +13:48:34 [ 39] [ 2] [00] +13:48:34 [ 41] [ 8] [01529031] +13:48:34 [ 49] [ 3] [418] +13:48:34 [ 54] [ 40] [1001418C0000079764261002418C000007976426] +13:48:34 ============================================================================ +13:48:34 Sending to : +13:48:34 ============================================================================ +13:48:34 + + +waiting on router queue for slot.... +13:48:35 ============================================================================ +13:48:35 Slot Id : <68> +13:48:35 Transaction Type : RESPONSE +13:48:35 Received From : +13:48:35 ============================================================================ +13:48:35 FNo. Len. Field Value +13:48:35 ============================================================================ +13:48:35 [ 1] [ 4] [0210] +13:48:35 [ 2] [ 16] [6213545000000608] +13:48:35 [ 3] [ 6] [301000] +13:48:35 [ 4] [ 12] [000000000000] +13:48:35 [ 7] [ 10] [0320134854] +13:48:35 [ 11] [ 6] [206733] +13:48:35 [ 12] [ 6] [014705] +13:48:35 [ 13] [ 4] [0320] +13:48:35 [ 15] [ 4] [0320] +13:48:35 [ 18] [ 4] [6011] +13:48:35 [ 19] [ 3] [418] +13:48:35 [ 32] [ 6] [198901] +13:48:35 [ 35] [ 32] [6213545000000608=491212010060365] +13:48:35 [ 37] [ 12] [507913206733] +13:48:35 [ 38] [ 6] [709999] +13:48:35 [ 39] [ 2] [00] +13:48:35 [ 41] [ 8] [01529031] +13:48:35 [ 49] [ 3] [418] +13:48:35 [ 54] [ 40] [1001418C0000079764261002418C000007976426] +13:48:35 ============================================================================ +13:48:35 Calculate Source COMM Id = 5 +13:48:35 ============================================================================ +13:48:35 + + +waiting on router queue for slot.... +13:48:41 ============================================================================ +13:48:41 Slot Id : <73> +13:48:41 Transaction Type : REQUEST +13:48:41 Received From : +13:48:41 ============================================================================ +13:48:41 FNo. Len. Field Value +13:48:41 ============================================================================ +13:48:41 [ 1] [ 4] [0200] +13:48:41 [ 2] [ 16] [6213541000422413] +13:48:41 [ 3] [ 6] [010000] +13:48:41 [ 4] [ 12] [000100000000] +13:48:41 [ 7] [ 10] [0320134631] +13:48:41 [ 11] [ 6] [947421] +13:48:41 [ 12] [ 6] [134631] +13:48:41 [ 13] [ 4] [0320] +13:48:41 [ 15] [ 4] [0320] +13:48:41 [ 18] [ 4] [6011] +13:48:41 [ 19] [ 3] [418] +13:48:41 [ 22] [ 3] [021] +13:48:41 [ 25] [ 2] [01] +13:48:41 [ 28] [ 9] [D00002000] +13:48:41 [ 32] [ 6] [668899] +13:48:41 [ 35] [ 32] [6213541000422413=491212012241556] +13:48:41 [ 37] [ 12] [507902133549] +13:48:41 [ 41] [ 8] [03020023] +13:48:41 [ 42] [ 15] [APT ] +13:48:41 [ 43] [ 40] [ CHINESS MARKET NONG-DUANG] +13:48:41 [ 49] [ 3] [418] +13:48:41 [ 52] [ 16] [59F2EBE40B047A93] +13:48:41 ============================================================================ +13:48:41 + + +waiting on router queue for slot.... +13:48:41 Sending to : +13:48:41 ============================================================================ +13:48:41 Sending to : +13:48:41 ============================================================================ +13:48:41 ============================================================================ +13:48:41 Slot Id : <73> +13:48:41 Transaction Type : REQUEST +13:48:41 Received From : +13:48:41 ============================================================================ +13:48:41 FNo. Len. Field Value +13:48:41 ============================================================================ +13:48:41 [ 1] [ 4] [0200] +13:48:41 [ 2] [ 16] [6213541000422413] +13:48:41 [ 3] [ 6] [010000] +13:48:41 [ 4] [ 12] [000100000000] +13:48:41 [ 7] [ 10] [0320134631] +13:48:41 [ 11] [ 6] [947421] +13:48:41 [ 12] [ 6] [134631] +13:48:41 [ 13] [ 4] [0320] +13:48:41 [ 15] [ 4] [0320] +13:48:41 [ 18] [ 4] [6011] +13:48:41 [ 19] [ 3] [418] +13:48:41 [ 22] [ 3] [021] +13:48:41 [ 25] [ 2] [01] +13:48:41 [ 28] [ 9] [D00002000] +13:48:41 [ 32] [ 6] [668899] +13:48:41 [ 35] [ 32] [6213541000422413=491212012241556] +13:48:41 [ 37] [ 12] [507902133549] +13:48:41 [ 41] [ 8] [03020023] +13:48:41 [ 42] [ 15] [APT ] +13:48:41 [ 43] [ 40] [ CHINESS MARKET NONG-DUANG] +13:48:41 [ 49] [ 3] [418] +13:48:41 [ 52] [ 16] [59F2EBE40B047A93] +13:48:41 ============================================================================ +13:48:41 + + +waiting on router queue for slot.... +13:48:41 Sending to : +13:48:41 ============================================================================ +13:48:41 ============================================================================ +13:48:41 Slot Id : <73> +13:48:41 Transaction Type : REQUEST +13:48:41 Received From : +13:48:41 ============================================================================ +13:48:41 FNo. Len. Field Value +13:48:41 ============================================================================ +13:48:41 [ 1] [ 4] [0200] +13:48:41 [ 2] [ 16] [6213541000422413] +13:48:41 [ 3] [ 6] [010000] +13:48:41 [ 4] [ 12] [000100000000] +13:48:41 [ 7] [ 10] [0320134631] +13:48:41 [ 11] [ 6] [947421] +13:48:41 [ 12] [ 6] [134631] +13:48:41 [ 13] [ 4] [0320] +13:48:41 [ 15] [ 4] [0320] +13:48:41 [ 18] [ 4] [6011] +13:48:41 [ 19] [ 3] [418] +13:48:41 [ 22] [ 3] [021] +13:48:41 [ 25] [ 2] [01] +13:48:41 [ 28] [ 9] [D00002000] +13:48:41 [ 32] [ 6] [668899] +13:48:41 [ 35] [ 32] [6213541000422413=491212012241556] +13:48:41 [ 37] [ 12] [507902133549] +13:48:41 [ 41] [ 8] [03020023] +13:48:41 [ 42] [ 15] [APT ] +13:48:41 [ 43] [ 40] [ CHINESS MARKET NONG-DUANG] +13:48:41 [ 49] [ 3] [418] +13:48:41 [ 52] [ 16] [F087BFA5030A5DDB] +13:48:41 ============================================================================ +13:48:41 + + +waiting on router queue for slot.... +13:48:41 Sending to : <0> +13:48:41 ============================================================================ +13:48:42 ============================================================================ +13:48:42 Slot Id : <73> +13:48:42 Transaction Type : RESPONSE +13:48:42 Received From : +13:48:42 ============================================================================ +13:48:42 FNo. Len. Field Value +13:48:42 ============================================================================ +13:48:42 [ 1] [ 4] [0210] +13:48:42 [ 2] [ 16] [6213541000422413] +13:48:42 [ 3] [ 6] [010000] +13:48:42 [ 4] [ 12] [000100000000] +13:48:42 [ 7] [ 10] [0320134631] +13:48:42 [ 11] [ 6] [947421] +13:48:42 [ 12] [ 6] [134631] +13:48:42 [ 13] [ 4] [0320] +13:48:42 [ 15] [ 4] [0320] +13:48:42 [ 18] [ 4] [6011] +13:48:42 [ 19] [ 3] [418] +13:48:42 [ 32] [ 6] [668899] +13:48:42 [ 35] [ 32] [6213541000422413=491212012241556] +13:48:42 [ 37] [ 12] [507902133549] +13:48:42 [ 38] [ 6] [156544] +13:48:42 [ 39] [ 2] [00] +13:48:42 [ 41] [ 8] [03020023] +13:48:42 [ 49] [ 3] [418] +13:48:42 [ 54] [ 40] [0001418C0011462875330002418C001146287533] +13:48:42 ============================================================================ +13:48:42 Sending to : +13:48:42 ============================================================================ +13:48:42 + + +waiting on router queue for slot.... +13:48:43 ============================================================================ +13:48:43 Slot Id : <73> +13:48:43 Transaction Type : RESPONSE +13:48:43 Received From : +13:48:43 ============================================================================ +13:48:43 FNo. Len. Field Value +13:48:43 ============================================================================ +13:48:43 [ 1] [ 4] [0210] +13:48:43 [ 2] [ 16] [6213541000422413] +13:48:43 [ 3] [ 6] [010000] +13:48:43 [ 4] [ 12] [000100000000] +13:48:43 [ 7] [ 10] [0320134631] +13:48:43 [ 11] [ 6] [947421] +13:48:43 [ 12] [ 6] [134631] +13:48:43 [ 13] [ 4] [0320] +13:48:43 [ 15] [ 4] [0320] +13:48:43 [ 18] [ 4] [6011] +13:48:43 [ 19] [ 3] [418] +13:48:43 [ 32] [ 6] [668899] +13:48:43 [ 35] [ 32] [6213541000422413=491212012241556] +13:48:43 [ 37] [ 12] [507902133549] +13:48:43 [ 38] [ 6] [156544] +13:48:43 [ 39] [ 2] [00] +13:48:43 [ 41] [ 8] [03020023] +13:48:43 [ 49] [ 3] [418] +13:48:43 [ 54] [ 40] [0001418C0011462875330002418C001146287533] +13:48:43 ============================================================================ +13:48:43 Calculate Source COMM Id = 4 +13:48:43 ============================================================================ +13:48:43 + + +waiting on router queue for slot.... +13:48:44 ============================================================================ +13:48:44 Slot Id : <63> +13:48:44 Transaction Type : REQUEST +13:48:44 Received From : +13:48:44 ============================================================================ +13:48:44 FNo. Len. Field Value +13:48:44 ============================================================================ +13:48:44 [ 1] [ 4] [0800] +13:48:44 [ 7] [ 10] [0320064751] +13:48:44 [ 11] [ 6] [156642] +13:48:44 [ 70] [ 3] [301] +13:48:44 ============================================================================ +13:48:44 + + +waiting on router queue for slot.... +13:48:44 Sending to : +13:48:44 ============================================================================ +13:48:44 ============================================================================ +13:48:44 Slot Id : <63> +13:48:44 Transaction Type : RESPONSE +13:48:44 Received From : +13:48:44 ============================================================================ +13:48:44 FNo. Len. Field Value +13:48:44 ============================================================================ +13:48:44 [ 1] [ 4] [0810] +13:48:44 [ 7] [ 10] [0320064751] +13:48:44 [ 11] [ 6] [156642] +13:48:44 [ 39] [ 2] [00] +13:48:44 [ 70] [ 3] [301] +13:48:44 ============================================================================ +13:48:44 Calculate Source COMM Id = 2 +13:48:44 ============================================================================ +13:48:44 + + +waiting on router queue for slot.... +13:48:49 ============================================================================ +13:48:49 Slot Id : <38> +13:48:49 Transaction Type : REQUEST +13:48:49 Received From : +13:48:49 ============================================================================ +13:48:49 FNo. Len. Field Value +13:48:49 ============================================================================ +13:48:49 [ 1] [ 4] [0200] +13:48:49 [ 2] [ 16] [6213544002012497] +13:48:49 [ 3] [ 6] [010000] +13:48:49 [ 4] [ 12] [000020000000] +13:48:49 [ 7] [ 10] [0320134639] +13:48:49 [ 11] [ 6] [947428] +13:48:49 [ 12] [ 6] [134639] +13:48:49 [ 13] [ 4] [0320] +13:48:49 [ 15] [ 4] [0320] +13:48:49 [ 18] [ 4] [6011] +13:48:49 [ 19] [ 3] [418] +13:48:49 [ 22] [ 3] [021] +13:48:49 [ 25] [ 2] [01] +13:48:49 [ 28] [ 9] [D00002000] +13:48:49 [ 32] [ 6] [668899] +13:48:49 [ 35] [ 32] [6213544002012497=491212011249740] +13:48:49 [ 37] [ 12] [507901912207] +13:48:49 [ 41] [ 8] [03013004] +13:48:49 [ 42] [ 15] [APT ] +13:48:49 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:48:49 [ 49] [ 3] [418] +13:48:49 [ 52] [ 16] [ED1FC5CC918BCF12] +13:48:49 ============================================================================ +13:48:49 + + +waiting on router queue for slot.... +13:48:49 Sending to : +13:48:49 ============================================================================ +13:48:49 Sending to : +13:48:49 ============================================================================ +13:48:49 ============================================================================ +13:48:49 Slot Id : <38> +13:48:49 Transaction Type : REQUEST +13:48:49 Received From : +13:48:49 ============================================================================ +13:48:49 FNo. Len. Field Value +13:48:49 ============================================================================ +13:48:49 [ 1] [ 4] [0200] +13:48:49 [ 2] [ 16] [6213544002012497] +13:48:49 [ 3] [ 6] [010000] +13:48:49 [ 4] [ 12] [000020000000] +13:48:49 [ 7] [ 10] [0320134639] +13:48:49 [ 11] [ 6] [947428] +13:48:49 [ 12] [ 6] [134639] +13:48:49 [ 13] [ 4] [0320] +13:48:49 [ 15] [ 4] [0320] +13:48:49 [ 18] [ 4] [6011] +13:48:49 [ 19] [ 3] [418] +13:48:49 [ 22] [ 3] [021] +13:48:49 [ 25] [ 2] [01] +13:48:49 [ 28] [ 9] [D00002000] +13:48:49 [ 32] [ 6] [668899] +13:48:49 [ 35] [ 32] [6213544002012497=491212011249740] +13:48:49 [ 37] [ 12] [507901912207] +13:48:49 [ 41] [ 8] [03013004] +13:48:49 [ 42] [ 15] [APT ] +13:48:49 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:48:49 [ 49] [ 3] [418] +13:48:49 [ 52] [ 16] [ED1FC5CC918BCF12] +13:48:49 ============================================================================ +13:48:49 + + +waiting on router queue for slot.... +13:48:49 Sending to : +13:48:49 ============================================================================ +13:48:49 ============================================================================ +13:48:49 Slot Id : <38> +13:48:49 Transaction Type : REQUEST +13:48:49 Received From : +13:48:49 ============================================================================ +13:48:49 FNo. Len. Field Value +13:48:49 ============================================================================ +13:48:49 [ 1] [ 4] [0200] +13:48:49 [ 2] [ 16] [6213544002012497] +13:48:49 [ 3] [ 6] [010000] +13:48:49 [ 4] [ 12] [000020000000] +13:48:49 [ 7] [ 10] [0320134639] +13:48:49 [ 11] [ 6] [947428] +13:48:49 [ 12] [ 6] [134639] +13:48:49 [ 13] [ 4] [0320] +13:48:49 [ 15] [ 4] [0320] +13:48:49 [ 18] [ 4] [6011] +13:48:49 [ 19] [ 3] [418] +13:48:49 [ 22] [ 3] [021] +13:48:49 [ 25] [ 2] [01] +13:48:49 [ 28] [ 9] [D00002000] +13:48:49 [ 32] [ 6] [668899] +13:48:49 [ 35] [ 32] [6213544002012497=491212011249740] +13:48:49 [ 37] [ 12] [507901912207] +13:48:49 [ 41] [ 8] [03013004] +13:48:49 [ 42] [ 15] [APT ] +13:48:49 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:48:49 [ 49] [ 3] [418] +13:48:49 [ 52] [ 16] [0C7EA11CDB747ACA] +13:48:49 ============================================================================ +13:48:49 + + +waiting on router queue for slot.... +13:48:49 Sending to : <0> +13:48:49 ============================================================================ +13:48:49 ============================================================================ +13:48:49 Slot Id : <38> +13:48:49 Transaction Type : RESPONSE +13:48:49 Received From : +13:48:49 ============================================================================ +13:48:49 FNo. Len. Field Value +13:48:49 ============================================================================ +13:48:49 [ 1] [ 4] [0210] +13:48:49 [ 2] [ 16] [6213544002012497] +13:48:49 [ 3] [ 6] [010000] +13:48:49 [ 4] [ 12] [000020000000] +13:48:49 [ 7] [ 10] [0320134639] +13:48:49 [ 11] [ 6] [947428] +13:48:49 [ 12] [ 6] [134639] +13:48:49 [ 13] [ 4] [0320] +13:48:49 [ 15] [ 4] [0320] +13:48:49 [ 18] [ 4] [6011] +13:48:49 [ 19] [ 3] [418] +13:48:49 [ 22] [ 3] [021] +13:48:49 [ 32] [ 6] [668899] +13:48:49 [ 35] [ 32] [6213544002012497=491212011249740] +13:48:49 [ 37] [ 12] [507901912207] +13:48:49 [ 38] [ 6] [134845] +13:48:49 [ 39] [ 2] [75] +13:48:49 [ 41] [ 8] [03013004] +13:48:49 [ 49] [ 3] [418] +13:48:49 ============================================================================ +13:48:49 Sending to : +13:48:49 ============================================================================ +13:48:49 + + +waiting on router queue for slot.... +13:48:51 ============================================================================ +13:48:51 Slot Id : <38> +13:48:51 Transaction Type : RESPONSE +13:48:51 Received From : +13:48:51 ============================================================================ +13:48:51 FNo. Len. Field Value +13:48:51 ============================================================================ +13:48:51 [ 1] [ 4] [0210] +13:48:51 [ 2] [ 16] [6213544002012497] +13:48:51 [ 3] [ 6] [010000] +13:48:51 [ 4] [ 12] [000020000000] +13:48:51 [ 7] [ 10] [0320134639] +13:48:51 [ 11] [ 6] [947428] +13:48:51 [ 12] [ 6] [134639] +13:48:51 [ 13] [ 4] [0320] +13:48:51 [ 15] [ 4] [0320] +13:48:51 [ 18] [ 4] [6011] +13:48:51 [ 19] [ 3] [418] +13:48:51 [ 22] [ 3] [021] +13:48:51 [ 32] [ 6] [668899] +13:48:51 [ 35] [ 32] [6213544002012497=491212011249740] +13:48:51 [ 37] [ 12] [507901912207] +13:48:51 [ 38] [ 6] [134845] +13:48:51 [ 39] [ 2] [75] +13:48:51 [ 41] [ 8] [03013004] +13:48:51 [ 49] [ 3] [418] +13:48:51 ============================================================================ +13:48:51 Calculate Source COMM Id = 4 +13:48:51 ============================================================================ +13:48:51 + + +waiting on router queue for slot.... +13:48:55 ============================================================================ +13:48:55 Slot Id : <41> +13:48:55 Transaction Type : REQUEST +13:48:55 Received From : +13:48:55 ============================================================================ +13:48:55 FNo. Len. Field Value +13:48:55 ============================================================================ +13:48:55 [ 1] [ 4] [0800] +13:48:55 [ 7] [ 10] [0320064802] +13:48:55 [ 11] [ 6] [156643] +13:48:55 [ 70] [ 3] [301] +13:48:55 ============================================================================ +13:48:55 + + +waiting on router queue for slot.... +13:48:55 Sending to : +13:48:55 ============================================================================ +13:48:55 ============================================================================ +13:48:55 Slot Id : <41> +13:48:55 Transaction Type : RESPONSE +13:48:55 Received From : +13:48:55 ============================================================================ +13:48:55 FNo. Len. Field Value +13:48:55 ============================================================================ +13:48:55 [ 1] [ 4] [0810] +13:48:55 [ 7] [ 10] [0320064802] +13:48:55 [ 11] [ 6] [156643] +13:48:55 [ 39] [ 2] [00] +13:48:55 [ 70] [ 3] [301] +13:48:55 ============================================================================ +13:48:55 Calculate Source COMM Id = 2 +13:48:55 ============================================================================ +13:48:55 + + +waiting on router queue for slot.... +13:49:05 ============================================================================ +13:49:05 Slot Id : <464> +13:49:05 Transaction Type : REQUEST +13:49:05 Received From : +13:49:05 ============================================================================ +13:49:05 FNo. Len. Field Value +13:49:05 ============================================================================ +13:49:05 [ 1] [ 4] [0200] +13:49:05 [ 2] [ 16] [6213544000095056] +13:49:05 [ 3] [ 6] [010000] +13:49:05 [ 4] [ 12] [000010000000] +13:49:05 [ 7] [ 10] [0320135652] +13:49:05 [ 11] [ 6] [168953] +13:49:05 [ 12] [ 6] [135652] +13:49:05 [ 13] [ 4] [0320] +13:49:05 [ 14] [ 4] [4912] +13:49:05 [ 15] [ 4] [0320] +13:49:05 [ 18] [ 4] [6011] +13:49:05 [ 22] [ 3] [900] +13:49:05 [ 25] [ 2] [02] +13:49:05 [ 28] [ 9] [D00002000] +13:49:05 [ 32] [ 6] [220699] +13:49:05 [ 35] [ 32] [6213544000095056=491212019505864] +13:49:05 [ 37] [ 12] [507900026364] +13:49:05 [ 41] [ 8] [01000200] +13:49:05 [ 42] [ 15] [APTRA ] +13:49:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:49:05 [ 49] [ 3] [418] +13:49:05 [ 52] [ 16] [DBA2D7ADC9715E16] +13:49:05 ============================================================================ +13:49:05 + + +waiting on router queue for slot.... +13:49:05 Sending to : +13:49:05 ============================================================================ +13:49:05 Sending to : +13:49:05 ============================================================================ +13:49:05 ============================================================================ +13:49:05 Slot Id : <464> +13:49:05 Transaction Type : REQUEST +13:49:05 Received From : +13:49:05 ============================================================================ +13:49:05 FNo. Len. Field Value +13:49:05 ============================================================================ +13:49:05 [ 1] [ 4] [0200] +13:49:05 [ 2] [ 16] [6213544000095056] +13:49:05 [ 3] [ 6] [010000] +13:49:05 [ 4] [ 12] [000010000000] +13:49:05 [ 7] [ 10] [0320135652] +13:49:05 [ 11] [ 6] [168953] +13:49:05 [ 12] [ 6] [135652] +13:49:05 [ 13] [ 4] [0320] +13:49:05 [ 14] [ 4] [4912] +13:49:05 [ 15] [ 4] [0320] +13:49:05 [ 18] [ 4] [6011] +13:49:05 [ 22] [ 3] [900] +13:49:05 [ 25] [ 2] [02] +13:49:05 [ 28] [ 9] [D00002000] +13:49:05 [ 32] [ 6] [220699] +13:49:05 [ 35] [ 32] [6213544000095056=491212019505864] +13:49:05 [ 37] [ 12] [507900026364] +13:49:05 [ 41] [ 8] [01000200] +13:49:05 [ 42] [ 15] [APTRA ] +13:49:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:49:05 [ 49] [ 3] [418] +13:49:05 [ 52] [ 16] [DBA2D7ADC9715E16] +13:49:05 ============================================================================ +13:49:05 + + +waiting on router queue for slot.... +13:49:05 Sending to : +13:49:05 ============================================================================ +13:49:05 ============================================================================ +13:49:05 Slot Id : <464> +13:49:05 Transaction Type : REQUEST +13:49:05 Received From : +13:49:05 ============================================================================ +13:49:05 FNo. Len. Field Value +13:49:05 ============================================================================ +13:49:05 [ 1] [ 4] [0200] +13:49:05 [ 2] [ 16] [6213544000095056] +13:49:05 [ 3] [ 6] [010000] +13:49:05 [ 4] [ 12] [000010000000] +13:49:05 [ 7] [ 10] [0320135652] +13:49:05 [ 11] [ 6] [168953] +13:49:05 [ 12] [ 6] [135652] +13:49:05 [ 13] [ 4] [0320] +13:49:05 [ 14] [ 4] [4912] +13:49:05 [ 15] [ 4] [0320] +13:49:05 [ 18] [ 4] [6011] +13:49:05 [ 22] [ 3] [900] +13:49:05 [ 25] [ 2] [02] +13:49:05 [ 28] [ 9] [D00002000] +13:49:05 [ 32] [ 6] [220699] +13:49:05 [ 35] [ 32] [6213544000095056=491212019505864] +13:49:05 [ 37] [ 12] [507900026364] +13:49:05 [ 41] [ 8] [01000200] +13:49:05 [ 42] [ 15] [APTRA ] +13:49:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:49:05 [ 49] [ 3] [418] +13:49:05 [ 52] [ 16] [CEA11854739FCAE6] +13:49:05 ============================================================================ +13:49:05 + + +waiting on router queue for slot.... +13:49:05 Sending to : <0> +13:49:05 ============================================================================ +13:49:06 ============================================================================ +13:49:06 Slot Id : <464> +13:49:06 Transaction Type : RESPONSE +13:49:06 Received From : +13:49:06 ============================================================================ +13:49:06 FNo. Len. Field Value +13:49:06 ============================================================================ +13:49:06 [ 1] [ 4] [0210] +13:49:06 [ 2] [ 16] [6213544000095056] +13:49:06 [ 3] [ 6] [010000] +13:49:06 [ 4] [ 12] [000010000000] +13:49:06 [ 7] [ 10] [0320135652] +13:49:06 [ 11] [ 6] [168953] +13:49:06 [ 12] [ 6] [135652] +13:49:06 [ 13] [ 4] [0320] +13:49:06 [ 15] [ 4] [0320] +13:49:06 [ 18] [ 4] [6011] +13:49:06 [ 32] [ 6] [220699] +13:49:06 [ 35] [ 32] [6213544000095056=491212019505864] +13:49:06 [ 37] [ 12] [507900026364] +13:49:06 [ 38] [ 6] [048795] +13:49:06 [ 39] [ 2] [00] +13:49:06 [ 41] [ 8] [01000200] +13:49:06 [ 49] [ 3] [418] +13:49:06 [ 54] [ 40] [0001418C0000730976370002418C000073097637] +13:49:06 ============================================================================ +13:49:06 Sending to : +13:49:06 ============================================================================ +13:49:06 + + +waiting on router queue for slot.... +13:49:07 ============================================================================ +13:49:07 Slot Id : <464> +13:49:07 Transaction Type : RESPONSE +13:49:07 Received From : +13:49:07 ============================================================================ +13:49:07 FNo. Len. Field Value +13:49:07 ============================================================================ +13:49:07 [ 1] [ 4] [0210] +13:49:07 [ 2] [ 16] [6213544000095056] +13:49:07 [ 3] [ 6] [010000] +13:49:07 [ 4] [ 12] [000010000000] +13:49:07 [ 7] [ 10] [0320135652] +13:49:07 [ 11] [ 6] [168953] +13:49:07 [ 12] [ 6] [135652] +13:49:07 [ 13] [ 4] [0320] +13:49:07 [ 15] [ 4] [0320] +13:49:07 [ 18] [ 4] [6011] +13:49:07 [ 32] [ 6] [220699] +13:49:07 [ 35] [ 32] [6213544000095056=491212019505864] +13:49:07 [ 37] [ 12] [507900026364] +13:49:07 [ 38] [ 6] [048795] +13:49:07 [ 39] [ 2] [00] +13:49:07 [ 41] [ 8] [01000200] +13:49:07 [ 49] [ 3] [418] +13:49:07 [ 54] [ 40] [0001418C0000730976370002418C000073097637] +13:49:07 ============================================================================ +13:49:07 Calculate Source COMM Id = 1 +13:49:07 ============================================================================ +13:49:07 + + +waiting on router queue for slot.... +13:49:11 ============================================================================ +13:49:11 Slot Id : <32> +13:49:11 Transaction Type : REQUEST +13:49:11 Received From : +13:49:11 ============================================================================ +13:49:11 FNo. Len. Field Value +13:49:11 ============================================================================ +13:49:11 [ 1] [ 4] [0800] +13:49:11 [ 7] [ 10] [0320064817] +13:49:11 [ 11] [ 6] [156644] +13:49:11 [ 70] [ 3] [301] +13:49:11 ============================================================================ +13:49:11 + + +waiting on router queue for slot.... +13:49:11 Sending to : +13:49:11 ============================================================================ +13:49:11 ============================================================================ +13:49:11 Slot Id : <32> +13:49:11 Transaction Type : RESPONSE +13:49:11 Received From : +13:49:11 ============================================================================ +13:49:11 FNo. Len. Field Value +13:49:11 ============================================================================ +13:49:11 [ 1] [ 4] [0810] +13:49:11 [ 7] [ 10] [0320064817] +13:49:11 [ 11] [ 6] [156644] +13:49:11 [ 39] [ 2] [00] +13:49:11 [ 70] [ 3] [301] +13:49:11 ============================================================================ +13:49:11 Calculate Source COMM Id = 2 +13:49:11 ============================================================================ +13:49:11 + + +waiting on router queue for slot.... +13:49:11 ============================================================================ +13:49:11 Slot Id : <487> +13:49:11 Transaction Type : REQUEST +13:49:11 Received From : +13:49:11 ============================================================================ +13:49:11 FNo. Len. Field Value +13:49:11 ============================================================================ +13:49:11 [ 1] [ 4] [0200] +13:49:11 [ 2] [ 16] [6688990050030467] +13:49:11 [ 3] [ 6] [300000] +13:49:11 [ 4] [ 12] [000000000000] +13:49:11 [ 7] [ 10] [0320134907] +13:49:11 [ 11] [ 6] [762179] +13:49:11 [ 12] [ 6] [134907] +13:49:11 [ 13] [ 4] [0320] +13:49:11 [ 15] [ 4] [0320] +13:49:11 [ 18] [ 4] [6011] +13:49:11 [ 22] [ 3] [900] +13:49:11 [ 25] [ 2] [02] +13:49:11 [ 28] [ 9] [D00000000] +13:49:11 [ 32] [ 6] [621354] +13:49:11 [ 35] [ 37] [6688990050030467=98021261293557600000] +13:49:11 [ 37] [ 12] [507903573688] +13:49:11 [ 41] [ 8] [09001400] +13:49:11 [ 42] [ 15] [NATIVE ] +13:49:11 [ 43] [ 40] [Done Noun Unit Xaythany LAO] +13:49:11 [ 49] [ 3] [418] +13:49:11 [ 52] [ 16] [DFDEC139F2B514AF] +13:49:11 ============================================================================ +13:49:11 + + +waiting on router queue for slot.... +13:49:11 Sending to : +13:49:11 ============================================================================ +13:49:11 Sending to : +13:49:11 ============================================================================ +13:49:12 ============================================================================ +13:49:12 Slot Id : <487> +13:49:12 Transaction Type : REQUEST +13:49:12 Received From : +13:49:12 ============================================================================ +13:49:12 FNo. Len. Field Value +13:49:12 ============================================================================ +13:49:12 [ 1] [ 4] [0200] +13:49:12 [ 2] [ 16] [6688990050030467] +13:49:12 [ 3] [ 6] [300000] +13:49:12 [ 4] [ 12] [000000000000] +13:49:12 [ 7] [ 10] [0320134907] +13:49:12 [ 11] [ 6] [762179] +13:49:12 [ 12] [ 6] [134907] +13:49:12 [ 13] [ 4] [0320] +13:49:12 [ 15] [ 4] [0320] +13:49:12 [ 18] [ 4] [6011] +13:49:12 [ 22] [ 3] [900] +13:49:12 [ 25] [ 2] [02] +13:49:12 [ 28] [ 9] [D00000000] +13:49:12 [ 32] [ 6] [621354] +13:49:12 [ 35] [ 37] [6688990050030467=98021261293557600000] +13:49:12 [ 37] [ 12] [507903573688] +13:49:12 [ 41] [ 8] [09001400] +13:49:12 [ 42] [ 15] [NATIVE ] +13:49:12 [ 43] [ 40] [Done Noun Unit Xaythany LAO] +13:49:12 [ 49] [ 3] [418] +13:49:12 [ 52] [ 16] [DFDEC139F2B514AF] +13:49:12 ============================================================================ +13:49:12 + + +waiting on router queue for slot.... +13:49:12 Sending to : +13:49:12 ============================================================================ +13:49:12 ============================================================================ +13:49:12 Slot Id : <487> +13:49:12 Transaction Type : REQUEST +13:49:12 Received From : +13:49:12 ============================================================================ +13:49:12 FNo. Len. Field Value +13:49:12 ============================================================================ +13:49:12 [ 1] [ 4] [0200] +13:49:12 [ 2] [ 16] [6688990050030467] +13:49:12 [ 3] [ 6] [300000] +13:49:12 [ 4] [ 12] [000000000000] +13:49:12 [ 7] [ 10] [0320134907] +13:49:12 [ 11] [ 6] [762179] +13:49:12 [ 12] [ 6] [134907] +13:49:12 [ 13] [ 4] [0320] +13:49:12 [ 15] [ 4] [0320] +13:49:12 [ 18] [ 4] [6011] +13:49:12 [ 22] [ 3] [900] +13:49:12 [ 25] [ 2] [02] +13:49:12 [ 28] [ 9] [D00000000] +13:49:12 [ 32] [ 6] [621354] +13:49:12 [ 35] [ 37] [6688990050030467=98021261293557600000] +13:49:12 [ 37] [ 12] [507903573688] +13:49:12 [ 41] [ 8] [09001400] +13:49:12 [ 42] [ 15] [NATIVE ] +13:49:12 [ 43] [ 40] [Done Noun Unit Xaythany LAO] +13:49:12 [ 49] [ 3] [418] +13:49:12 [ 52] [ 16] [BB9F6CDE08733244] +13:49:12 ============================================================================ +13:49:12 + + +waiting on router queue for slot.... +13:49:12 Sending to : <4> +13:49:12 ============================================================================ +13:49:13 ============================================================================ +13:49:13 Slot Id : <487> +13:49:13 Transaction Type : RESPONSE +13:49:13 Received From : +13:49:13 ============================================================================ +13:49:13 FNo. Len. Field Value +13:49:13 ============================================================================ +13:49:13 [ 1] [ 4] [0210] +13:49:13 [ 2] [ 16] [6688990050030467] +13:49:13 [ 3] [ 6] [300000] +13:49:13 [ 4] [ 12] [000000000000] +13:49:13 [ 11] [ 6] [762179] +13:49:13 [ 12] [ 6] [134907] +13:49:13 [ 15] [ 4] [0320] +13:49:13 [ 18] [ 4] [6011] +13:49:13 [ 32] [ 6] [621354] +13:49:13 [ 35] [ 37] [6688990050030467=98021261293557600000] +13:49:13 [ 37] [ 12] [507903573688] +13:49:13 [ 38] [ 6] [654388] +13:49:13 [ 39] [ 2] [00] +13:49:13 [ 41] [ 8] [09001400] +13:49:13 [ 49] [ 3] [418] +13:49:13 [ 54] [ 20] [0002418C000009436082] +13:49:13 ============================================================================ +13:49:13 Sending to : +13:49:13 ============================================================================ +13:49:13 + + +waiting on router queue for slot.... +13:49:14 ============================================================================ +13:49:14 Slot Id : <487> +13:49:14 Transaction Type : RESPONSE +13:49:14 Received From : +13:49:14 ============================================================================ +13:49:14 FNo. Len. Field Value +13:49:14 ============================================================================ +13:49:14 [ 1] [ 4] [0210] +13:49:14 [ 2] [ 16] [6688990050030467] +13:49:14 [ 3] [ 6] [300000] +13:49:14 [ 4] [ 12] [000000000000] +13:49:14 [ 11] [ 6] [762179] +13:49:14 [ 12] [ 6] [134907] +13:49:14 [ 15] [ 4] [0320] +13:49:14 [ 18] [ 4] [6011] +13:49:14 [ 32] [ 6] [621354] +13:49:14 [ 35] [ 37] [6688990050030467=98021261293557600000] +13:49:14 [ 37] [ 12] [507903573688] +13:49:14 [ 38] [ 6] [654388] +13:49:14 [ 39] [ 2] [00] +13:49:14 [ 41] [ 8] [09001400] +13:49:14 [ 49] [ 3] [418] +13:49:14 [ 54] [ 20] [0002418C000009436082] +13:49:14 ============================================================================ +13:49:14 Calculate Source COMM Id = 0 +13:49:14 ============================================================================ +13:49:14 + + +waiting on router queue for slot.... +13:49:22 ============================================================================ +13:49:22 Slot Id : <26> +13:49:22 Transaction Type : REQUEST +13:49:22 Received From : +13:49:22 ============================================================================ +13:49:22 FNo. Len. Field Value +13:49:22 ============================================================================ +13:49:22 [ 1] [ 4] [0800] +13:49:22 [ 2] [ 5] [02531] +13:49:22 [ 3] [ 6] [579138] +13:49:22 [ 7] [ 10] [0320064922] +13:49:22 [ 11] [ 6] [807214] +13:49:22 [ 15] [ 10] [0320064922] +13:49:22 [ 37] [ 11] [57913807214] +13:49:22 [ 70] [ 3] [001] +13:49:22 ============================================================================ +13:49:22 + + +waiting on router queue for slot.... +13:49:22 ============================================================================ +13:49:22 Slot Id : <26> +13:49:22 Transaction Type : RESPONSE +13:49:22 Received From : +13:49:22 ============================================================================ +13:49:22 FNo. Len. Field Value +13:49:22 ============================================================================ +13:49:22 [ 1] [ 4] [0810] +13:49:22 [ 7] [ 10] [0320064922] +13:49:22 [ 11] [ 6] [807214] +13:49:22 [ 15] [ 4] [0320] +13:49:22 [ 37] [ 12] [57913807214] +13:49:22 [ 39] [ 2] [00] +13:49:22 [ 70] [ 3] [001] +13:49:22 ============================================================================ +13:49:22 Sending to : +13:49:22 ============================================================================ +13:49:22 + + +waiting on router queue for slot.... +13:49:26 ============================================================================ +13:49:26 Slot Id : <20> +13:49:26 Transaction Type : REQUEST +13:49:26 Received From : +13:49:26 ============================================================================ +13:49:26 FNo. Len. Field Value +13:49:26 ============================================================================ +13:49:26 [ 1] [ 4] [0800] +13:49:26 [ 7] [ 10] [0320064832] +13:49:26 [ 11] [ 6] [156645] +13:49:26 [ 70] [ 3] [301] +13:49:26 ============================================================================ +13:49:26 + + +waiting on router queue for slot.... +13:49:26 Sending to : +13:49:26 ============================================================================ +13:49:26 ============================================================================ +13:49:26 Slot Id : <20> +13:49:26 Transaction Type : RESPONSE +13:49:26 Received From : +13:49:26 ============================================================================ +13:49:26 FNo. Len. Field Value +13:49:26 ============================================================================ +13:49:26 [ 1] [ 4] [0810] +13:49:26 [ 7] [ 10] [0320064832] +13:49:26 [ 11] [ 6] [156645] +13:49:26 [ 39] [ 2] [00] +13:49:26 [ 70] [ 3] [301] +13:49:26 ============================================================================ +13:49:26 Calculate Source COMM Id = 2 +13:49:26 ============================================================================ +13:49:26 + + +waiting on router queue for slot.... +13:49:33 ============================================================================ +13:49:33 Slot Id : <48> +13:49:33 Transaction Type : REQUEST +13:49:33 Received From : +13:49:33 ============================================================================ +13:49:33 FNo. Len. Field Value +13:49:33 ============================================================================ +13:49:33 [ 1] [ 4] [0200] +13:49:33 [ 2] [ 16] [6213541000422413] +13:49:33 [ 3] [ 6] [010000] +13:49:33 [ 4] [ 12] [000100000000] +13:49:33 [ 7] [ 10] [0320134723] +13:49:33 [ 11] [ 6] [947463] +13:49:33 [ 12] [ 6] [134723] +13:49:33 [ 13] [ 4] [0320] +13:49:33 [ 15] [ 4] [0320] +13:49:33 [ 18] [ 4] [6011] +13:49:33 [ 19] [ 3] [418] +13:49:33 [ 22] [ 3] [021] +13:49:33 [ 25] [ 2] [01] +13:49:33 [ 28] [ 9] [D00002000] +13:49:33 [ 32] [ 6] [668899] +13:49:33 [ 35] [ 32] [6213541000422413=491212012241556] +13:49:33 [ 37] [ 12] [507902133551] +13:49:33 [ 41] [ 8] [03020023] +13:49:33 [ 42] [ 15] [APT ] +13:49:33 [ 43] [ 40] [ CHINESS MARKET NONG-DUANG] +13:49:33 [ 49] [ 3] [418] +13:49:33 [ 52] [ 16] [59F2EBE40B047A93] +13:49:33 ============================================================================ +13:49:33 + + +waiting on router queue for slot.... +13:49:33 Sending to : +13:49:33 ============================================================================ +13:49:33 Sending to : +13:49:33 ============================================================================ +13:49:33 ============================================================================ +13:49:33 Slot Id : <48> +13:49:33 Transaction Type : REQUEST +13:49:33 Received From : +13:49:33 ============================================================================ +13:49:33 FNo. Len. Field Value +13:49:33 ============================================================================ +13:49:33 [ 1] [ 4] [0200] +13:49:33 [ 2] [ 16] [6213541000422413] +13:49:33 [ 3] [ 6] [010000] +13:49:33 [ 4] [ 12] [000100000000] +13:49:33 [ 7] [ 10] [0320134723] +13:49:33 [ 11] [ 6] [947463] +13:49:33 [ 12] [ 6] [134723] +13:49:33 [ 13] [ 4] [0320] +13:49:33 [ 15] [ 4] [0320] +13:49:33 [ 18] [ 4] [6011] +13:49:33 [ 19] [ 3] [418] +13:49:33 [ 22] [ 3] [021] +13:49:33 [ 25] [ 2] [01] +13:49:33 [ 28] [ 9] [D00002000] +13:49:33 [ 32] [ 6] [668899] +13:49:33 [ 35] [ 32] [6213541000422413=491212012241556] +13:49:33 [ 37] [ 12] [507902133551] +13:49:33 [ 41] [ 8] [03020023] +13:49:33 [ 42] [ 15] [APT ] +13:49:33 [ 43] [ 40] [ CHINESS MARKET NONG-DUANG] +13:49:33 [ 49] [ 3] [418] +13:49:33 [ 52] [ 16] [59F2EBE40B047A93] +13:49:33 ============================================================================ +13:49:33 + + +waiting on router queue for slot.... +13:49:33 Sending to : +13:49:33 ============================================================================ +13:49:33 ============================================================================ +13:49:33 Slot Id : <48> +13:49:33 Transaction Type : REQUEST +13:49:33 Received From : +13:49:33 ============================================================================ +13:49:33 FNo. Len. Field Value +13:49:33 ============================================================================ +13:49:33 [ 1] [ 4] [0200] +13:49:33 [ 2] [ 16] [6213541000422413] +13:49:33 [ 3] [ 6] [010000] +13:49:33 [ 4] [ 12] [000100000000] +13:49:33 [ 7] [ 10] [0320134723] +13:49:33 [ 11] [ 6] [947463] +13:49:33 [ 12] [ 6] [134723] +13:49:33 [ 13] [ 4] [0320] +13:49:33 [ 15] [ 4] [0320] +13:49:33 [ 18] [ 4] [6011] +13:49:33 [ 19] [ 3] [418] +13:49:33 [ 22] [ 3] [021] +13:49:33 [ 25] [ 2] [01] +13:49:33 [ 28] [ 9] [D00002000] +13:49:33 [ 32] [ 6] [668899] +13:49:33 [ 35] [ 32] [6213541000422413=491212012241556] +13:49:33 [ 37] [ 12] [507902133551] +13:49:33 [ 41] [ 8] [03020023] +13:49:33 [ 42] [ 15] [APT ] +13:49:33 [ 43] [ 40] [ CHINESS MARKET NONG-DUANG] +13:49:33 [ 49] [ 3] [418] +13:49:33 [ 52] [ 16] [F087BFA5030A5DDB] +13:49:33 ============================================================================ +13:49:33 + + +waiting on router queue for slot.... +13:49:33 Sending to : <0> +13:49:33 ============================================================================ +13:49:34 ============================================================================ +13:49:34 Slot Id : <48> +13:49:34 Transaction Type : RESPONSE +13:49:34 Received From : +13:49:34 ============================================================================ +13:49:34 FNo. Len. Field Value +13:49:34 ============================================================================ +13:49:34 [ 1] [ 4] [0210] +13:49:34 [ 2] [ 16] [6213541000422413] +13:49:34 [ 3] [ 6] [010000] +13:49:34 [ 4] [ 12] [000100000000] +13:49:34 [ 7] [ 10] [0320134723] +13:49:34 [ 11] [ 6] [947463] +13:49:34 [ 12] [ 6] [134723] +13:49:34 [ 13] [ 4] [0320] +13:49:34 [ 15] [ 4] [0320] +13:49:34 [ 18] [ 4] [6011] +13:49:34 [ 19] [ 3] [418] +13:49:34 [ 32] [ 6] [668899] +13:49:34 [ 35] [ 32] [6213541000422413=491212012241556] +13:49:34 [ 37] [ 12] [507902133551] +13:49:34 [ 38] [ 6] [038013] +13:49:34 [ 39] [ 2] [00] +13:49:34 [ 41] [ 8] [03020023] +13:49:34 [ 49] [ 3] [418] +13:49:34 [ 54] [ 40] [0001418C0010460875330002418C001046087533] +13:49:34 ============================================================================ +13:49:34 Sending to : +13:49:34 ============================================================================ +13:49:34 + + +waiting on router queue for slot.... +13:49:35 ============================================================================ +13:49:35 Slot Id : <48> +13:49:35 Transaction Type : RESPONSE +13:49:35 Received From : +13:49:35 ============================================================================ +13:49:35 FNo. Len. Field Value +13:49:35 ============================================================================ +13:49:35 [ 1] [ 4] [0210] +13:49:35 [ 2] [ 16] [6213541000422413] +13:49:35 [ 3] [ 6] [010000] +13:49:35 [ 4] [ 12] [000100000000] +13:49:35 [ 7] [ 10] [0320134723] +13:49:35 [ 11] [ 6] [947463] +13:49:35 [ 12] [ 6] [134723] +13:49:35 [ 13] [ 4] [0320] +13:49:35 [ 15] [ 4] [0320] +13:49:35 [ 18] [ 4] [6011] +13:49:35 [ 19] [ 3] [418] +13:49:35 [ 32] [ 6] [668899] +13:49:35 [ 35] [ 32] [6213541000422413=491212012241556] +13:49:35 [ 37] [ 12] [507902133551] +13:49:35 [ 38] [ 6] [038013] +13:49:35 [ 39] [ 2] [00] +13:49:35 [ 41] [ 8] [03020023] +13:49:35 [ 49] [ 3] [418] +13:49:35 [ 54] [ 40] [0001418C0010460875330002418C001046087533] +13:49:35 ============================================================================ +13:49:35 Calculate Source COMM Id = 4 +13:49:35 ============================================================================ +13:49:35 + + +waiting on router queue for slot.... +13:49:40 ============================================================================ +13:49:40 Slot Id : <27> +13:49:40 Transaction Type : REQUEST +13:49:40 Received From : +13:49:40 ============================================================================ +13:49:40 FNo. Len. Field Value +13:49:40 ============================================================================ +13:49:40 [ 1] [ 4] [0200] +13:49:40 [ 2] [ 16] [6213544002012497] +13:49:40 [ 3] [ 6] [010000] +13:49:40 [ 4] [ 12] [000010000000] +13:49:40 [ 7] [ 10] [0320134731] +13:49:40 [ 11] [ 6] [947469] +13:49:40 [ 12] [ 6] [134731] +13:49:40 [ 13] [ 4] [0320] +13:49:40 [ 15] [ 4] [0320] +13:49:40 [ 18] [ 4] [6011] +13:49:40 [ 19] [ 3] [418] +13:49:40 [ 22] [ 3] [021] +13:49:40 [ 25] [ 2] [01] +13:49:40 [ 28] [ 9] [D00002000] +13:49:40 [ 32] [ 6] [668899] +13:49:40 [ 35] [ 32] [6213544002012497=491212011249740] +13:49:40 [ 37] [ 12] [507901912209] +13:49:40 [ 41] [ 8] [03013004] +13:49:40 [ 42] [ 15] [APT ] +13:49:40 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:49:40 [ 49] [ 3] [418] +13:49:40 [ 52] [ 16] [ED1FC5CC918BCF12] +13:49:40 ============================================================================ +13:49:40 + + +waiting on router queue for slot.... +13:49:40 Sending to : +13:49:40 ============================================================================ +13:49:40 Sending to : +13:49:40 ============================================================================ +13:49:41 ============================================================================ +13:49:41 Slot Id : <27> +13:49:41 Transaction Type : REQUEST +13:49:41 Received From : +13:49:41 ============================================================================ +13:49:41 FNo. Len. Field Value +13:49:41 ============================================================================ +13:49:41 [ 1] [ 4] [0200] +13:49:41 [ 2] [ 16] [6213544002012497] +13:49:41 [ 3] [ 6] [010000] +13:49:41 [ 4] [ 12] [000010000000] +13:49:41 [ 7] [ 10] [0320134731] +13:49:41 [ 11] [ 6] [947469] +13:49:41 [ 12] [ 6] [134731] +13:49:41 [ 13] [ 4] [0320] +13:49:41 [ 15] [ 4] [0320] +13:49:41 [ 18] [ 4] [6011] +13:49:41 [ 19] [ 3] [418] +13:49:41 [ 22] [ 3] [021] +13:49:41 [ 25] [ 2] [01] +13:49:41 [ 28] [ 9] [D00002000] +13:49:41 [ 32] [ 6] [668899] +13:49:41 [ 35] [ 32] [6213544002012497=491212011249740] +13:49:41 [ 37] [ 12] [507901912209] +13:49:41 [ 41] [ 8] [03013004] +13:49:41 [ 42] [ 15] [APT ] +13:49:41 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:49:41 [ 49] [ 3] [418] +13:49:41 [ 52] [ 16] [ED1FC5CC918BCF12] +13:49:41 ============================================================================ +13:49:41 + + +waiting on router queue for slot.... +13:49:41 Sending to : +13:49:41 ============================================================================ +13:49:41 ============================================================================ +13:49:41 Slot Id : <27> +13:49:41 Transaction Type : REQUEST +13:49:41 Received From : +13:49:41 ============================================================================ +13:49:41 FNo. Len. Field Value +13:49:41 ============================================================================ +13:49:41 [ 1] [ 4] [0200] +13:49:41 [ 2] [ 16] [6213544002012497] +13:49:41 [ 3] [ 6] [010000] +13:49:41 [ 4] [ 12] [000010000000] +13:49:41 [ 7] [ 10] [0320134731] +13:49:41 [ 11] [ 6] [947469] +13:49:41 [ 12] [ 6] [134731] +13:49:41 [ 13] [ 4] [0320] +13:49:41 [ 15] [ 4] [0320] +13:49:41 [ 18] [ 4] [6011] +13:49:41 [ 19] [ 3] [418] +13:49:41 [ 22] [ 3] [021] +13:49:41 [ 25] [ 2] [01] +13:49:41 [ 28] [ 9] [D00002000] +13:49:41 [ 32] [ 6] [668899] +13:49:41 [ 35] [ 32] [6213544002012497=491212011249740] +13:49:41 [ 37] [ 12] [507901912209] +13:49:41 [ 41] [ 8] [03013004] +13:49:41 [ 42] [ 15] [APT ] +13:49:41 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +13:49:41 [ 49] [ 3] [418] +13:49:41 [ 52] [ 16] [0C7EA11CDB747ACA] +13:49:41 ============================================================================ +13:49:41 + + +waiting on router queue for slot.... +13:49:41 Sending to : <0> +13:49:41 ============================================================================ +13:49:41 ============================================================================ +13:49:41 Slot Id : <27> +13:49:41 Transaction Type : RESPONSE +13:49:41 Received From : +13:49:41 ============================================================================ +13:49:41 FNo. Len. Field Value +13:49:41 ============================================================================ +13:49:41 [ 1] [ 4] [0210] +13:49:41 [ 2] [ 16] [6213544002012497] +13:49:41 [ 3] [ 6] [010000] +13:49:41 [ 4] [ 12] [000010000000] +13:49:41 [ 7] [ 10] [0320134731] +13:49:41 [ 11] [ 6] [947469] +13:49:41 [ 12] [ 6] [134731] +13:49:41 [ 13] [ 4] [0320] +13:49:41 [ 15] [ 4] [0320] +13:49:41 [ 18] [ 4] [6011] +13:49:41 [ 19] [ 3] [418] +13:49:41 [ 22] [ 3] [021] +13:49:41 [ 32] [ 6] [668899] +13:49:41 [ 35] [ 32] [6213544002012497=491212011249740] +13:49:41 [ 37] [ 12] [507901912209] +13:49:41 [ 38] [ 6] [134936] +13:49:41 [ 39] [ 2] [75] +13:49:41 [ 41] [ 8] [03013004] +13:49:41 [ 49] [ 3] [418] +13:49:41 ============================================================================ +13:49:41 Sending to : +13:49:41 ============================================================================ +13:49:41 + + +waiting on router queue for slot.... +13:49:41 ============================================================================ +13:49:41 Slot Id : <46> +13:49:41 Transaction Type : REQUEST +13:49:41 Received From : +13:49:41 ============================================================================ +13:49:41 FNo. Len. Field Value +13:49:41 ============================================================================ +13:49:41 [ 1] [ 4] [0800] +13:49:41 [ 7] [ 10] [0320064848] +13:49:41 [ 11] [ 6] [156646] +13:49:41 [ 70] [ 3] [301] +13:49:41 ============================================================================ +13:49:41 + + +waiting on router queue for slot.... +13:49:41 Sending to : +13:49:41 ============================================================================ +13:49:41 ============================================================================ +13:49:41 Slot Id : <46> +13:49:41 Transaction Type : RESPONSE +13:49:41 Received From : +13:49:41 ============================================================================ +13:49:41 FNo. Len. Field Value +13:49:41 ============================================================================ +13:49:41 [ 1] [ 4] [0810] +13:49:41 [ 7] [ 10] [0320064848] +13:49:41 [ 11] [ 6] [156646] +13:49:41 [ 39] [ 2] [00] +13:49:41 [ 70] [ 3] [301] +13:49:41 ============================================================================ +13:49:41 Calculate Source COMM Id = 2 +13:49:41 ============================================================================ +13:49:41 + + +waiting on router queue for slot.... +13:49:42 ============================================================================ +13:49:42 Slot Id : <27> +13:49:42 Transaction Type : RESPONSE +13:49:42 Received From : +13:49:42 ============================================================================ +13:49:42 FNo. Len. Field Value +13:49:42 ============================================================================ +13:49:42 [ 1] [ 4] [0210] +13:49:42 [ 2] [ 16] [6213544002012497] +13:49:42 [ 3] [ 6] [010000] +13:49:42 [ 4] [ 12] [000010000000] +13:49:42 [ 7] [ 10] [0320134731] +13:49:42 [ 11] [ 6] [947469] +13:49:42 [ 12] [ 6] [134731] +13:49:42 [ 13] [ 4] [0320] +13:49:42 [ 15] [ 4] [0320] +13:49:42 [ 18] [ 4] [6011] +13:49:42 [ 19] [ 3] [418] +13:49:42 [ 22] [ 3] [021] +13:49:42 [ 32] [ 6] [668899] +13:49:42 [ 35] [ 32] [6213544002012497=491212011249740] +13:49:42 [ 37] [ 12] [507901912209] +13:49:42 [ 38] [ 6] [134936] +13:49:42 [ 39] [ 2] [75] +13:49:42 [ 41] [ 8] [03013004] +13:49:42 [ 49] [ 3] [418] +13:49:42 ============================================================================ +13:49:42 Calculate Source COMM Id = 4 +13:49:42 ============================================================================ +13:49:42 + + +waiting on router queue for slot.... +13:49:53 ============================================================================ +13:49:53 Slot Id : <58> +13:49:53 Transaction Type : REQUEST +13:49:53 Received From : +13:49:53 ============================================================================ +13:49:53 FNo. Len. Field Value +13:49:53 ============================================================================ +13:49:53 [ 1] [ 4] [0200] +13:49:53 [ 2] [ 16] [2206990010000107] +13:49:53 [ 3] [ 6] [011000] +13:49:53 [ 4] [ 12] [000100000000] +13:49:53 [ 7] [ 10] [0320134949] +13:49:53 [ 11] [ 6] [762298] +13:49:53 [ 12] [ 6] [134949] +13:49:53 [ 13] [ 4] [0320] +13:49:53 [ 15] [ 4] [0320] +13:49:53 [ 18] [ 4] [6011] +13:49:53 [ 22] [ 3] [900] +13:49:53 [ 25] [ 2] [02] +13:49:53 [ 28] [ 9] [D00002000] +13:49:53 [ 32] [ 6] [621354] +13:49:53 [ 35] [ 32] [2206990010000107=980412613970086] +13:49:53 [ 37] [ 12] [507905304020] +13:49:53 [ 41] [ 8] [08001100] +13:49:53 [ 42] [ 15] [NATIVE ] +13:49:53 [ 43] [ 40] [Saysetha Unit02 Attapeu LAO] +13:49:53 [ 49] [ 3] [418] +13:49:53 [ 52] [ 16] [D5FF385EFEDBCE9A] +13:49:53 ============================================================================ +13:49:53 + + +waiting on router queue for slot.... +13:49:53 Sending to : +13:49:53 ============================================================================ +13:49:53 Sending to : +13:49:53 ============================================================================ +13:49:53 ============================================================================ +13:49:53 Slot Id : <58> +13:49:53 Transaction Type : REQUEST +13:49:53 Received From : +13:49:53 ============================================================================ +13:49:53 FNo. Len. Field Value +13:49:53 ============================================================================ +13:49:53 [ 1] [ 4] [0200] +13:49:53 [ 2] [ 16] [2206990010000107] +13:49:53 [ 3] [ 6] [011000] +13:49:53 [ 4] [ 12] [000100000000] +13:49:53 [ 7] [ 10] [0320134949] +13:49:53 [ 11] [ 6] [762298] +13:49:53 [ 12] [ 6] [134949] +13:49:53 [ 13] [ 4] [0320] +13:49:53 [ 15] [ 4] [0320] +13:49:53 [ 18] [ 4] [6011] +13:49:53 [ 22] [ 3] [900] +13:49:53 [ 25] [ 2] [02] +13:49:53 [ 28] [ 9] [D00002000] +13:49:53 [ 32] [ 6] [621354] +13:49:53 [ 35] [ 32] [2206990010000107=980412613970086] +13:49:53 [ 37] [ 12] [507905304020] +13:49:53 [ 41] [ 8] [08001100] +13:49:53 [ 42] [ 15] [NATIVE ] +13:49:53 [ 43] [ 40] [Saysetha Unit02 Attapeu LAO] +13:49:53 [ 49] [ 3] [418] +13:49:53 [ 52] [ 16] [D5FF385EFEDBCE9A] +13:49:53 ============================================================================ +13:49:53 + + +waiting on router queue for slot.... +13:49:53 Sending to : +13:49:53 ============================================================================ +13:49:53 ============================================================================ +13:49:53 Slot Id : <58> +13:49:53 Transaction Type : REQUEST +13:49:53 Received From : +13:49:53 ============================================================================ +13:49:53 FNo. Len. Field Value +13:49:53 ============================================================================ +13:49:53 [ 1] [ 4] [0200] +13:49:53 [ 2] [ 16] [2206990010000107] +13:49:53 [ 3] [ 6] [011000] +13:49:53 [ 4] [ 12] [000100000000] +13:49:53 [ 7] [ 10] [0320134949] +13:49:53 [ 11] [ 6] [762298] +13:49:53 [ 12] [ 6] [134949] +13:49:53 [ 13] [ 4] [0320] +13:49:53 [ 15] [ 4] [0320] +13:49:53 [ 18] [ 4] [6011] +13:49:53 [ 22] [ 3] [900] +13:49:53 [ 25] [ 2] [02] +13:49:53 [ 28] [ 9] [D00002000] +13:49:53 [ 32] [ 6] [621354] +13:49:53 [ 35] [ 32] [2206990010000107=980412613970086] +13:49:53 [ 37] [ 12] [507905304020] +13:49:53 [ 41] [ 8] [08001100] +13:49:53 [ 42] [ 15] [NATIVE ] +13:49:53 [ 43] [ 40] [Saysetha Unit02 Attapeu LAO] +13:49:53 [ 49] [ 3] [418] +13:49:53 [ 52] [ 16] [93B47B13BF7CF287] +13:49:53 ============================================================================ +13:49:53 + + +waiting on router queue for slot.... +13:49:53 Sending to : <1> +13:49:53 ============================================================================ +13:49:54 ============================================================================ +13:49:54 Slot Id : <19> +13:49:54 Transaction Type : REQUEST +13:49:54 Received From : +13:49:54 ============================================================================ +13:49:54 FNo. Len. Field Value +13:49:54 ============================================================================ +13:49:54 [ 1] [ 4] [0800] +13:49:54 [ 7] [ 10] [0320065742] +13:49:54 [ 11] [ 6] [002923] +13:49:54 [ 37] [ 12] [57913002923] +13:49:54 [ 70] [ 3] [301] +13:49:54 ============================================================================ +13:49:54 + + +waiting on router queue for slot.... +13:49:54 Sending to : +13:49:54 ============================================================================ +13:49:54 ============================================================================ +13:49:54 Slot Id : <19> +13:49:54 Transaction Type : RESPONSE +13:49:54 Received From : +13:49:54 ============================================================================ +13:49:54 FNo. Len. Field Value +13:49:54 ============================================================================ +13:49:54 [ 1] [ 4] [0810] +13:49:54 [ 7] [ 10] [0320065742] +13:49:54 [ 11] [ 6] [002923] +13:49:54 [ 37] [ 12] [579130029230] +13:49:54 [ 39] [ 2] [00] +13:49:54 [ 70] [ 3] [810] +13:49:54 ============================================================================ +13:49:54 Calculate Source COMM Id = 1 +13:49:54 ============================================================================ +13:49:54 + + +waiting on router queue for slot.... +13:49:58 ============================================================================ +13:49:58 Slot Id : <69> +13:49:58 Transaction Type : REQUEST +13:49:58 Received From : +13:49:58 ============================================================================ +13:49:58 FNo. Len. Field Value +13:49:58 ============================================================================ +13:49:58 [ 1] [ 4] [0800] +13:49:58 [ 7] [ 10] [0320064903] +13:49:58 [ 11] [ 6] [156647] +13:49:58 [ 70] [ 3] [301] +13:49:58 ============================================================================ +13:49:58 + + +waiting on router queue for slot.... +13:49:58 Sending to : +13:49:58 ============================================================================ +13:49:58 ============================================================================ +13:49:58 Slot Id : <69> +13:49:58 Transaction Type : RESPONSE +13:49:58 Received From : +13:49:58 ============================================================================ +13:49:58 FNo. Len. Field Value +13:49:58 ============================================================================ +13:49:58 [ 1] [ 4] [0810] +13:49:58 [ 7] [ 10] [0320064903] +13:49:58 [ 11] [ 6] [156647] +13:49:58 [ 39] [ 2] [00] +13:49:58 [ 70] [ 3] [301] +13:49:58 ============================================================================ +13:49:58 Calculate Source COMM Id = 2 +13:49:58 ============================================================================ +13:49:58 + + +waiting on router queue for slot.... +13:50:12 ============================================================================ +13:50:12 Slot Id : <47> +13:50:12 Transaction Type : REQUEST +13:50:12 Received From : +13:50:12 ============================================================================ +13:50:12 FNo. Len. Field Value +13:50:12 ============================================================================ +13:50:12 [ 1] [ 4] [0800] +13:50:12 [ 7] [ 10] [0320064919] +13:50:12 [ 11] [ 6] [156648] +13:50:12 [ 70] [ 3] [301] +13:50:12 ============================================================================ +13:50:12 + + +waiting on router queue for slot.... +13:50:12 Sending to : +13:50:12 ============================================================================ +13:50:12 ============================================================================ +13:50:12 Slot Id : <47> +13:50:12 Transaction Type : RESPONSE +13:50:12 Received From : +13:50:12 ============================================================================ +13:50:12 FNo. Len. Field Value +13:50:12 ============================================================================ +13:50:12 [ 1] [ 4] [0810] +13:50:12 [ 7] [ 10] [0320064919] +13:50:12 [ 11] [ 6] [156648] +13:50:12 [ 39] [ 2] [00] +13:50:12 [ 70] [ 3] [301] +13:50:12 ============================================================================ +13:50:12 Calculate Source COMM Id = 2 +13:50:12 ============================================================================ +13:50:12 + + +waiting on router queue for slot.... +13:50:24 ============================================================================ +13:50:24 Slot Id : <78> +13:50:24 Transaction Type : REQUEST +13:50:24 Received From : +13:50:24 ============================================================================ +13:50:24 FNo. Len. Field Value +13:50:24 ============================================================================ +13:50:24 [ 1] [ 4] [0800] +13:50:24 [ 2] [ 5] [02531] +13:50:24 [ 3] [ 6] [579138] +13:50:24 [ 7] [ 10] [0320065024] +13:50:24 [ 11] [ 6] [807215] +13:50:24 [ 15] [ 10] [0320065024] +13:50:24 [ 37] [ 11] [57913807215] +13:50:24 [ 70] [ 3] [001] +13:50:24 ============================================================================ +13:50:24 + + +waiting on router queue for slot.... +13:50:24 ============================================================================ +13:50:24 Slot Id : <78> +13:50:24 Transaction Type : RESPONSE +13:50:24 Received From : +13:50:24 ============================================================================ +13:50:24 FNo. Len. Field Value +13:50:24 ============================================================================ +13:50:24 [ 1] [ 4] [0810] +13:50:24 [ 7] [ 10] [0320065024] +13:50:24 [ 11] [ 6] [807215] +13:50:24 [ 15] [ 4] [0320] +13:50:24 [ 37] [ 12] [57913807215] +13:50:24 [ 39] [ 2] [00] +13:50:24 [ 70] [ 3] [001] +13:50:24 ============================================================================ +13:50:24 Sending to : +13:50:24 ============================================================================ +13:50:24 + + +waiting on router queue for slot.... +13:50:28 ============================================================================ +13:50:28 Slot Id : <54> +13:50:28 Transaction Type : REQUEST +13:50:28 Received From : +13:50:28 ============================================================================ +13:50:28 FNo. Len. Field Value +13:50:28 ============================================================================ +13:50:28 [ 1] [ 4] [0800] +13:50:28 [ 7] [ 10] [0320064935] +13:50:28 [ 11] [ 6] [156649] +13:50:28 [ 70] [ 3] [301] +13:50:28 ============================================================================ +13:50:28 + + +waiting on router queue for slot.... +13:50:28 Sending to : +13:50:28 ============================================================================ +13:50:28 ============================================================================ +13:50:28 Slot Id : <54> +13:50:28 Transaction Type : RESPONSE +13:50:28 Received From : +13:50:28 ============================================================================ +13:50:28 FNo. Len. Field Value +13:50:28 ============================================================================ +13:50:28 [ 1] [ 4] [0810] +13:50:28 [ 7] [ 10] [0320064935] +13:50:28 [ 11] [ 6] [156649] +13:50:28 [ 39] [ 2] [00] +13:50:28 [ 70] [ 3] [301] +13:50:28 ============================================================================ +13:50:28 Calculate Source COMM Id = 2 +13:50:28 ============================================================================ +13:50:28 + + +waiting on router queue for slot.... +13:50:29 ============================================================================ +13:50:29 Slot Id : <81> +13:50:29 Transaction Type : REQUEST +13:50:29 Received From : +13:50:29 ============================================================================ +13:50:29 FNo. Len. Field Value +13:50:29 ============================================================================ +13:50:29 [ 1] [ 4] [0420] +13:50:29 [ 2] [ 16] [2206990010000107] +13:50:29 [ 3] [ 6] [011000] +13:50:29 [ 4] [ 12] [000100000000] +13:50:29 [ 7] [ 10] [0320134949] +13:50:29 [ 11] [ 6] [762298] +13:50:29 [ 12] [ 6] [134949] +13:50:29 [ 13] [ 4] [0320] +13:50:29 [ 15] [ 4] [0320] +13:50:29 [ 18] [ 4] [6011] +13:50:29 [ 22] [ 3] [900] +13:50:29 [ 25] [ 2] [02] +13:50:29 [ 28] [ 9] [C00002000] +13:50:29 [ 32] [ 6] [621354] +13:50:29 [ 35] [ 32] [2206990010000107=980412613970086] +13:50:29 [ 37] [ 12] [507905304020] +13:50:29 [ 39] [ 2] [00] +13:50:29 [ 41] [ 8] [08001100] +13:50:29 [ 42] [ 15] [NATIVE ] +13:50:29 [ 43] [ 40] [Saysetha Unit02 Attapeu LAO] +13:50:29 [ 49] [ 3] [418] +13:50:29 [ 90] [ 42] [020076229803201349490000062135400000000000] +13:50:29 ============================================================================ +13:50:29 + + +waiting on router queue for slot.... +13:50:29 Sending to : +13:50:29 ============================================================================ +13:50:34 ============================================================================ +13:50:34 Slot Id : <81> +13:50:34 Transaction Type : RESPONSE +13:50:34 Received From : +13:50:34 ============================================================================ +13:50:34 FNo. Len. Field Value +13:50:34 ============================================================================ +13:50:34 [ 1] [ 4] [0430] +13:50:34 [ 2] [ 16] [2206990010000107] +13:50:34 [ 3] [ 6] [011000] +13:50:34 [ 4] [ 12] [000100000000] +13:50:34 [ 7] [ 10] [0320134949] +13:50:34 [ 11] [ 6] [762298] +13:50:34 [ 12] [ 6] [134949] +13:50:34 [ 13] [ 4] [0320] +13:50:34 [ 15] [ 4] [0320] +13:50:34 [ 18] [ 4] [6011] +13:50:34 [ 22] [ 3] [900] +13:50:34 [ 25] [ 2] [02] +13:50:34 [ 28] [ 9] [C00002000] +13:50:34 [ 32] [ 6] [621354] +13:50:34 [ 35] [ 32] [2206990010000107=980412613970086] +13:50:34 [ 37] [ 12] [507905304020] +13:50:34 [ 39] [ 2] [00] +13:50:34 [ 41] [ 8] [08001100] +13:50:34 [ 42] [ 15] [NATIVE ] +13:50:34 [ 43] [ 40] [Saysetha Unit02 Attapeu LAO] +13:50:34 [ 49] [ 3] [418] +13:50:34 [ 90] [ 42] [020076229803201349490000062135400000000000] +13:50:34 ============================================================================ +13:50:34 Calculate Source COMM Id = 0 +13:50:34 ============================================================================ +13:50:34 + + +waiting on router queue for slot.... +13:50:34 ============================================================================ +13:50:34 Slot Id : <24> +13:50:34 Transaction Type : REQUEST +13:50:34 Received From : +13:50:34 ============================================================================ +13:50:34 FNo. Len. Field Value +13:50:34 ============================================================================ +13:50:34 [ 1] [ 4] [0200] +13:50:34 [ 2] [ 16] [6213548000116010] +13:50:34 [ 3] [ 6] [301000] +13:50:34 [ 4] [ 12] [000000000000] +13:50:34 [ 7] [ 10] [0320134825] +13:50:34 [ 11] [ 6] [947514] +13:50:34 [ 12] [ 6] [134825] +13:50:34 [ 13] [ 4] [0320] +13:50:34 [ 15] [ 4] [0320] +13:50:34 [ 18] [ 4] [6011] +13:50:34 [ 19] [ 3] [418] +13:50:34 [ 22] [ 3] [021] +13:50:34 [ 25] [ 2] [01] +13:50:34 [ 28] [ 9] [D00000000] +13:50:34 [ 32] [ 6] [668899] +13:50:34 [ 35] [ 32] [6213548000116010=131012011601172] +13:50:34 [ 37] [ 12] [507900844942] +13:50:34 [ 41] [ 8] [03015003] +13:50:34 [ 42] [ 15] [APT ] +13:50:34 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +13:50:34 [ 49] [ 3] [418] +13:50:34 [ 52] [ 16] [B78A750BB933F900] +13:50:34 ============================================================================ +13:50:34 + + +waiting on router queue for slot.... +13:50:34 Sending to : +13:50:34 ============================================================================ +13:50:34 Sending to : +13:50:34 ============================================================================ +13:50:34 ============================================================================ +13:50:34 Slot Id : <24> +13:50:34 Transaction Type : REQUEST +13:50:34 Received From : +13:50:34 ============================================================================ +13:50:34 FNo. Len. Field Value +13:50:34 ============================================================================ +13:50:34 [ 1] [ 4] [0200] +13:50:34 [ 2] [ 16] [6213548000116010] +13:50:34 [ 3] [ 6] [301000] +13:50:34 [ 4] [ 12] [000000000000] +13:50:34 [ 7] [ 10] [0320134825] +13:50:34 [ 11] [ 6] [947514] +13:50:34 [ 12] [ 6] [134825] +13:50:34 [ 13] [ 4] [0320] +13:50:34 [ 15] [ 4] [0320] +13:50:34 [ 18] [ 4] [6011] +13:50:34 [ 19] [ 3] [418] +13:50:34 [ 22] [ 3] [021] +13:50:34 [ 25] [ 2] [01] +13:50:34 [ 28] [ 9] [D00000000] +13:50:34 [ 32] [ 6] [668899] +13:50:34 [ 35] [ 32] [6213548000116010=131012011601172] +13:50:34 [ 37] [ 12] [507900844942] +13:50:34 [ 41] [ 8] [03015003] +13:50:34 [ 42] [ 15] [APT ] +13:50:34 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +13:50:34 [ 49] [ 3] [418] +13:50:34 [ 52] [ 16] [B78A750BB933F900] +13:50:34 ============================================================================ +13:50:34 + + +waiting on router queue for slot.... +13:50:34 Sending to : +13:50:34 ============================================================================ +13:50:34 ============================================================================ +13:50:34 Slot Id : <24> +13:50:34 Transaction Type : REQUEST +13:50:34 Received From : +13:50:34 ============================================================================ +13:50:34 FNo. Len. Field Value +13:50:34 ============================================================================ +13:50:34 [ 1] [ 4] [0200] +13:50:34 [ 2] [ 16] [6213548000116010] +13:50:34 [ 3] [ 6] [301000] +13:50:34 [ 4] [ 12] [000000000000] +13:50:34 [ 7] [ 10] [0320134825] +13:50:34 [ 11] [ 6] [947514] +13:50:34 [ 12] [ 6] [134825] +13:50:34 [ 13] [ 4] [0320] +13:50:34 [ 15] [ 4] [0320] +13:50:34 [ 18] [ 4] [6011] +13:50:34 [ 19] [ 3] [418] +13:50:34 [ 22] [ 3] [021] +13:50:34 [ 25] [ 2] [01] +13:50:34 [ 28] [ 9] [D00000000] +13:50:34 [ 32] [ 6] [668899] +13:50:34 [ 35] [ 32] [6213548000116010=131012011601172] +13:50:34 [ 37] [ 12] [507900844942] +13:50:34 [ 41] [ 8] [03015003] +13:50:34 [ 42] [ 15] [APT ] +13:50:34 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +13:50:34 [ 49] [ 3] [418] +13:50:34 [ 52] [ 16] [7053E4FD69726677] +13:50:34 ============================================================================ +13:50:34 + + +waiting on router queue for slot.... +13:50:34 Sending to : <0> +13:50:34 ============================================================================ +13:50:35 ============================================================================ +13:50:35 Slot Id : <24> +13:50:35 Transaction Type : RESPONSE +13:50:35 Received From : +13:50:35 ============================================================================ +13:50:35 FNo. Len. Field Value +13:50:35 ============================================================================ +13:50:35 [ 1] [ 4] [0210] +13:50:35 [ 2] [ 16] [6213548000116010] +13:50:35 [ 3] [ 6] [301000] +13:50:35 [ 4] [ 12] [000000000000] +13:50:35 [ 7] [ 10] [0320134825] +13:50:35 [ 11] [ 6] [947514] +13:50:35 [ 12] [ 6] [134825] +13:50:35 [ 13] [ 4] [0320] +13:50:35 [ 15] [ 4] [0320] +13:50:35 [ 18] [ 4] [6011] +13:50:35 [ 19] [ 3] [418] +13:50:35 [ 32] [ 6] [668899] +13:50:35 [ 35] [ 32] [6213548000116010=131012011601172] +13:50:35 [ 37] [ 12] [507900844942] +13:50:35 [ 38] [ 6] [390186] +13:50:35 [ 39] [ 2] [00] +13:50:35 [ 41] [ 8] [03015003] +13:50:35 [ 49] [ 3] [418] +13:50:35 [ 54] [ 40] [1001418C0001075640221002418C000107564022] +13:50:35 ============================================================================ +13:50:35 Sending to : +13:50:35 ============================================================================ +13:50:35 + + +waiting on router queue for slot.... +13:50:36 ============================================================================ +13:50:36 Slot Id : <24> +13:50:36 Transaction Type : RESPONSE +13:50:36 Received From : +13:50:36 ============================================================================ +13:50:36 FNo. Len. Field Value +13:50:36 ============================================================================ +13:50:36 [ 1] [ 4] [0210] +13:50:36 [ 2] [ 16] [6213548000116010] +13:50:36 [ 3] [ 6] [301000] +13:50:36 [ 4] [ 12] [000000000000] +13:50:36 [ 7] [ 10] [0320134825] +13:50:36 [ 11] [ 6] [947514] +13:50:36 [ 12] [ 6] [134825] +13:50:36 [ 13] [ 4] [0320] +13:50:36 [ 15] [ 4] [0320] +13:50:36 [ 18] [ 4] [6011] +13:50:36 [ 19] [ 3] [418] +13:50:36 [ 32] [ 6] [668899] +13:50:36 [ 35] [ 32] [6213548000116010=131012011601172] +13:50:36 [ 37] [ 12] [507900844942] +13:50:36 [ 38] [ 6] [390186] +13:50:36 [ 39] [ 2] [00] +13:50:36 [ 41] [ 8] [03015003] +13:50:36 [ 49] [ 3] [418] +13:50:36 [ 54] [ 40] [1001418C0001075640221002418C000107564022] +13:50:36 ============================================================================ +13:50:36 Calculate Source COMM Id = 4 +13:50:36 ============================================================================ +13:50:36 + + +waiting on router queue for slot.... +13:50:36 ============================================================================ +13:50:36 Slot Id : <42> +13:50:36 Transaction Type : REQUEST +13:50:36 Received From : +13:50:36 ============================================================================ +13:50:36 FNo. Len. Field Value +13:50:36 ============================================================================ +13:50:36 [ 1] [ 4] [0200] +13:50:36 [ 2] [ 16] [1808930200017887] +13:50:36 [ 3] [ 6] [301000] +13:50:36 [ 4] [ 12] [000000000000] +13:50:36 [ 7] [ 10] [0320135032] +13:50:36 [ 11] [ 6] [762431] +13:50:36 [ 12] [ 6] [135032] +13:50:36 [ 13] [ 4] [0320] +13:50:36 [ 15] [ 4] [0320] +13:50:36 [ 18] [ 4] [6011] +13:50:36 [ 22] [ 3] [900] +13:50:36 [ 25] [ 2] [02] +13:50:36 [ 28] [ 9] [D00000000] +13:50:36 [ 32] [ 6] [621354] +13:50:36 [ 35] [ 27] [1808930200017887=1803500368] +13:50:36 [ 37] [ 12] [507902776629] +13:50:36 [ 41] [ 8] [01007100] +13:50:36 [ 42] [ 15] [NATIVE ] +13:50:36 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +13:50:36 [ 49] [ 3] [418] +13:50:36 [ 52] [ 16] [7DD0446A81A2398D] +13:50:36 ============================================================================ +13:50:36 + + +waiting on router queue for slot.... +13:50:36 Sending to : +13:50:36 ============================================================================ +13:50:36 Sending to : +13:50:36 ============================================================================ +13:50:36 ============================================================================ +13:50:36 Slot Id : <42> +13:50:36 Transaction Type : REQUEST +13:50:36 Received From : +13:50:36 ============================================================================ +13:50:36 FNo. Len. Field Value +13:50:36 ============================================================================ +13:50:36 [ 1] [ 4] [0200] +13:50:36 [ 2] [ 16] [1808930200017887] +13:50:36 [ 3] [ 6] [301000] +13:50:36 [ 4] [ 12] [000000000000] +13:50:36 [ 7] [ 10] [0320135032] +13:50:36 [ 11] [ 6] [762431] +13:50:36 [ 12] [ 6] [135032] +13:50:36 [ 13] [ 4] [0320] +13:50:36 [ 15] [ 4] [0320] +13:50:36 [ 18] [ 4] [6011] +13:50:36 [ 22] [ 3] [900] +13:50:36 [ 25] [ 2] [02] +13:50:36 [ 28] [ 9] [D00000000] +13:50:36 [ 32] [ 6] [621354] +13:50:36 [ 35] [ 27] [1808930200017887=1803500368] +13:50:36 [ 37] [ 12] [507902776629] +13:50:36 [ 41] [ 8] [01007100] +13:50:36 [ 42] [ 15] [NATIVE ] +13:50:36 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +13:50:36 [ 49] [ 3] [418] +13:50:36 [ 52] [ 16] [7DD0446A81A2398D] +13:50:36 ============================================================================ +13:50:36 + + +waiting on router queue for slot.... +13:50:36 Sending to : +13:50:36 ============================================================================ +13:50:36 ============================================================================ +13:50:36 Slot Id : <42> +13:50:36 Transaction Type : REQUEST +13:50:36 Received From : +13:50:36 ============================================================================ +13:50:36 FNo. Len. Field Value +13:50:36 ============================================================================ +13:50:36 [ 1] [ 4] [0200] +13:50:36 [ 2] [ 16] [1808930200017887] +13:50:36 [ 3] [ 6] [301000] +13:50:36 [ 4] [ 12] [000000000000] +13:50:36 [ 7] [ 10] [0320135032] +13:50:36 [ 11] [ 6] [762431] +13:50:36 [ 12] [ 6] [135032] +13:50:36 [ 13] [ 4] [0320] +13:50:36 [ 15] [ 4] [0320] +13:50:36 [ 18] [ 4] [6011] +13:50:36 [ 22] [ 3] [900] +13:50:36 [ 25] [ 2] [02] +13:50:36 [ 28] [ 9] [D00000000] +13:50:36 [ 32] [ 6] [621354] +13:50:36 [ 35] [ 27] [1808930200017887=1803500368] +13:50:36 [ 37] [ 12] [507902776629] +13:50:36 [ 41] [ 8] [01007100] +13:50:36 [ 42] [ 15] [NATIVE ] +13:50:36 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +13:50:36 [ 49] [ 3] [418] +13:50:36 [ 52] [ 16] [D5B6ED58F67B460C] +13:50:36 ============================================================================ +13:50:36 + + +waiting on router queue for slot.... +13:50:36 Sending to : <2> +13:50:36 ============================================================================ +13:50:39 ============================================================================ +13:50:39 Slot Id : <42> +13:50:39 Transaction Type : RESPONSE +13:50:39 Received From : +13:50:39 ============================================================================ +13:50:39 FNo. Len. Field Value +13:50:39 ============================================================================ +13:50:39 [ 1] [ 4] [0210] +13:50:39 [ 2] [ 16] [1808930200017887] +13:50:39 [ 3] [ 6] [301000] +13:50:39 [ 7] [ 10] [0320135032] +13:50:39 [ 11] [ 6] [762431] +13:50:39 [ 12] [ 6] [135032] +13:50:39 [ 13] [ 4] [0320] +13:50:39 [ 14] [ 4] [1803] +13:50:39 [ 19] [ 3] [418] +13:50:39 [ 32] [ 6] [621354] +13:50:39 [ 37] [ 12] [507902776629] +13:50:39 [ 38] [ 6] [762431] +13:50:39 [ 39] [ 2] [00] +13:50:39 [ 41] [ 8] [01007100] +13:50:39 [ 49] [ 3] [418] +13:50:39 [ 52] [ 16] [D5B6ED58F67B460C] +13:50:39 [ 54] [ 20] [1002418C000259199500] +13:50:39 ============================================================================ +13:50:39 Sending to : +13:50:39 ============================================================================ +13:50:39 + + +waiting on router queue for slot.... +13:50:40 ============================================================================ +13:50:40 Slot Id : <58> +13:50:40 13:50:40 Received From : <> +13:50:40 ============================================================================ +13:50:40 FNo. Len. Field Value +13:50:40 ============================================================================ +13:50:40 Sending to : +13:50:40 ============================================================================ +13:50:40 + + +waiting on router queue for slot.... +13:50:41 ============================================================================ +13:50:41 Slot Id : <42> +13:50:41 Transaction Type : RESPONSE +13:50:41 Received From : +13:50:41 ============================================================================ +13:50:41 FNo. Len. Field Value +13:50:41 ============================================================================ +13:50:41 [ 1] [ 4] [0210] +13:50:41 [ 2] [ 16] [1808930200017887] +13:50:41 [ 3] [ 6] [301000] +13:50:41 [ 7] [ 10] [0320135032] +13:50:41 [ 11] [ 6] [762431] +13:50:41 [ 12] [ 6] [135032] +13:50:41 [ 13] [ 4] [0320] +13:50:41 [ 14] [ 4] [1803] +13:50:41 [ 19] [ 3] [418] +13:50:41 [ 32] [ 6] [621354] +13:50:41 [ 37] [ 12] [507902776629] +13:50:41 [ 38] [ 6] [762431] +13:50:41 [ 39] [ 2] [00] +13:50:41 [ 41] [ 8] [01007100] +13:50:41 [ 49] [ 3] [418] +13:50:41 [ 52] [ 16] [D5B6ED58F67B460C] +13:50:41 [ 54] [ 20] [1002418C000259199500] +13:50:41 ============================================================================ +13:50:41 Calculate Source COMM Id = 0 +13:50:41 ============================================================================ +13:50:41 + + +waiting on router queue for slot.... +13:50:49 ============================================================================ +13:50:49 Slot Id : <57> +13:50:49 Transaction Type : REQUEST +13:50:49 Received From : +13:50:49 ============================================================================ +13:50:49 FNo. Len. Field Value +13:50:49 ============================================================================ +13:50:49 [ 1] [ 4] [0800] +13:50:49 [ 7] [ 10] [0320064956] +13:50:49 [ 11] [ 6] [156650] +13:50:49 [ 70] [ 3] [301] +13:50:49 ============================================================================ +13:50:49 + + +waiting on router queue for slot.... +13:50:49 Sending to : +13:50:49 ============================================================================ +13:50:49 ============================================================================ +13:50:49 Slot Id : <57> +13:50:49 Transaction Type : RESPONSE +13:50:49 Received From : +13:50:49 ============================================================================ +13:50:49 FNo. Len. Field Value +13:50:49 ============================================================================ +13:50:49 [ 1] [ 4] [0810] +13:50:49 [ 7] [ 10] [0320064956] +13:50:49 [ 11] [ 6] [156650] +13:50:49 [ 39] [ 2] [00] +13:50:49 [ 70] [ 3] [301] +13:50:49 ============================================================================ +13:50:49 Calculate Source COMM Id = 2 +13:50:49 ============================================================================ +13:50:49 + + +waiting on router queue for slot.... +13:50:55 ============================================================================ +13:50:55 Slot Id : <34> +13:50:55 Transaction Type : REQUEST +13:50:55 Received From : +13:50:55 ============================================================================ +13:50:55 FNo. Len. Field Value +13:50:55 ============================================================================ +13:50:55 [ 1] [ 4] [0200] +13:50:55 [ 2] [ 16] [6688990050030467] +13:50:55 [ 3] [ 6] [010000] +13:50:55 [ 4] [ 12] [000005000000] +13:50:55 [ 7] [ 10] [0320135050] +13:50:55 [ 11] [ 6] [762469] +13:50:55 [ 12] [ 6] [135050] +13:50:55 [ 13] [ 4] [0320] +13:50:55 [ 15] [ 4] [0320] +13:50:55 [ 18] [ 4] [6011] +13:50:55 [ 22] [ 3] [900] +13:50:55 [ 25] [ 2] [02] +13:50:55 [ 28] [ 9] [D00002000] +13:50:55 [ 32] [ 6] [621354] +13:50:55 [ 35] [ 37] [6688990050030467=98021261293557600000] +13:50:55 [ 37] [ 12] [507903573690] +13:50:55 [ 41] [ 8] [09001400] +13:50:55 [ 42] [ 15] [NATIVE ] +13:50:55 [ 43] [ 40] [Done Noun Unit Xaythany LAO] +13:50:55 [ 49] [ 3] [418] +13:50:55 [ 52] [ 16] [DFDEC139F2B514AF] +13:50:55 ============================================================================ +13:50:55 + + +waiting on router queue for slot.... +13:50:55 Sending to : +13:50:55 ============================================================================ +13:50:55 Sending to : +13:50:55 ============================================================================ +13:50:55 ============================================================================ +13:50:55 Slot Id : <34> +13:50:55 Transaction Type : REQUEST +13:50:55 Received From : +13:50:55 ============================================================================ +13:50:55 FNo. Len. Field Value +13:50:55 ============================================================================ +13:50:55 [ 1] [ 4] [0200] +13:50:55 [ 2] [ 16] [6688990050030467] +13:50:55 [ 3] [ 6] [010000] +13:50:55 [ 4] [ 12] [000005000000] +13:50:55 [ 7] [ 10] [0320135050] +13:50:55 [ 11] [ 6] [762469] +13:50:55 [ 12] [ 6] [135050] +13:50:55 [ 13] [ 4] [0320] +13:50:55 [ 15] [ 4] [0320] +13:50:55 [ 18] [ 4] [6011] +13:50:55 [ 22] [ 3] [900] +13:50:55 [ 25] [ 2] [02] +13:50:55 [ 28] [ 9] [D00002000] +13:50:55 [ 32] [ 6] [621354] +13:50:55 [ 35] [ 37] [6688990050030467=98021261293557600000] +13:50:55 [ 37] [ 12] [507903573690] +13:50:55 [ 41] [ 8] [09001400] +13:50:55 [ 42] [ 15] [NATIVE ] +13:50:55 [ 43] [ 40] [Done Noun Unit Xaythany LAO] +13:50:55 [ 49] [ 3] [418] +13:50:55 [ 52] [ 16] [DFDEC139F2B514AF] +13:50:55 ============================================================================ +13:50:55 + + +waiting on router queue for slot.... +13:50:55 Sending to : +13:50:55 ============================================================================ +13:50:55 ============================================================================ +13:50:55 Slot Id : <34> +13:50:55 Transaction Type : REQUEST +13:50:55 Received From : +13:50:55 ============================================================================ +13:50:55 FNo. Len. Field Value +13:50:55 ============================================================================ +13:50:55 [ 1] [ 4] [0200] +13:50:55 [ 2] [ 16] [6688990050030467] +13:50:55 [ 3] [ 6] [010000] +13:50:55 [ 4] [ 12] [000005000000] +13:50:55 [ 7] [ 10] [0320135050] +13:50:55 [ 11] [ 6] [762469] +13:50:55 [ 12] [ 6] [135050] +13:50:55 [ 13] [ 4] [0320] +13:50:55 [ 15] [ 4] [0320] +13:50:55 [ 18] [ 4] [6011] +13:50:55 [ 22] [ 3] [900] +13:50:55 [ 25] [ 2] [02] +13:50:55 [ 28] [ 9] [D00002000] +13:50:55 [ 32] [ 6] [621354] +13:50:55 [ 35] [ 37] [6688990050030467=98021261293557600000] +13:50:55 [ 37] [ 12] [507903573690] +13:50:55 [ 41] [ 8] [09001400] +13:50:55 [ 42] [ 15] [NATIVE ] +13:50:55 [ 43] [ 40] [Done Noun Unit Xaythany LAO] +13:50:55 [ 49] [ 3] [418] +13:50:55 [ 52] [ 16] [BB9F6CDE08733244] +13:50:55 ============================================================================ +13:50:55 + + +waiting on router queue for slot.... +13:50:55 Sending to : <4> +13:50:55 ============================================================================ +13:50:56 ============================================================================ +13:50:56 Slot Id : <34> +13:50:56 Transaction Type : RESPONSE +13:50:56 Received From : +13:50:56 ============================================================================ +13:50:56 FNo. Len. Field Value +13:50:56 ============================================================================ +13:50:56 [ 1] [ 4] [0210] +13:50:56 [ 2] [ 16] [6688990050030467] +13:50:56 [ 3] [ 6] [010000] +13:50:56 [ 4] [ 12] [000005000000] +13:50:56 [ 11] [ 6] [762469] +13:50:56 [ 12] [ 6] [135050] +13:50:56 [ 15] [ 4] [0320] +13:50:56 [ 18] [ 4] [6011] +13:50:56 [ 32] [ 6] [621354] +13:50:56 [ 35] [ 37] [6688990050030467=98021261293557600000] +13:50:56 [ 37] [ 12] [507903573690] +13:50:56 [ 38] [ 6] [103950] +13:50:56 [ 39] [ 2] [00] +13:50:56 [ 41] [ 8] [09001400] +13:50:56 [ 49] [ 3] [418] +13:50:56 [ 54] [ 20] [0002418C000004236082] +13:50:56 ============================================================================ +13:50:56 Sending to : +13:50:56 ============================================================================ +13:50:56 + + +waiting on router queue for slot.... +13:50:58 ============================================================================ +13:50:58 Slot Id : <34> +13:50:58 Transaction Type : RESPONSE +13:50:58 Received From : +13:50:58 ============================================================================ +13:50:58 FNo. Len. Field Value +13:50:58 ============================================================================ +13:50:58 [ 1] [ 4] [0210] +13:50:58 [ 2] [ 16] [6688990050030467] +13:50:58 [ 3] [ 6] [010000] +13:50:58 [ 4] [ 12] [000005000000] +13:50:58 [ 11] [ 6] [762469] +13:50:58 [ 12] [ 6] [135050] +13:50:58 [ 15] [ 4] [0320] +13:50:58 [ 18] [ 4] [6011] +13:50:58 [ 32] [ 6] [621354] +13:50:58 [ 35] [ 37] [6688990050030467=98021261293557600000] +13:50:58 [ 37] [ 12] [507903573690] +13:50:58 [ 38] [ 6] [103950] +13:50:58 [ 39] [ 2] [00] +13:50:58 [ 41] [ 8] [09001400] +13:50:58 [ 49] [ 3] [418] +13:50:58 [ 54] [ 20] [0002418C000004236082] +13:50:58 ============================================================================ +13:50:58 Calculate Source COMM Id = 0 +13:50:58 ============================================================================ +13:50:58 + + +waiting on router queue for slot.... +13:51:00 ============================================================================ +13:51:00 Slot Id : <49> +13:51:00 Transaction Type : REQUEST +13:51:00 Received From : +13:51:00 ============================================================================ +13:51:00 FNo. Len. Field Value +13:51:00 ============================================================================ +13:51:00 [ 1] [ 4] [0800] +13:51:00 [ 7] [ 10] [0320065007] +13:51:00 [ 11] [ 6] [156651] +13:51:00 [ 70] [ 3] [301] +13:51:00 ============================================================================ +13:51:00 + + +waiting on router queue for slot.... +13:51:00 Sending to : +13:51:00 ============================================================================ +13:51:00 ============================================================================ +13:51:00 Slot Id : <49> +13:51:00 Transaction Type : RESPONSE +13:51:00 Received From : +13:51:00 ============================================================================ +13:51:00 FNo. Len. Field Value +13:51:00 ============================================================================ +13:51:00 [ 1] [ 4] [0810] +13:51:00 [ 7] [ 10] [0320065007] +13:51:00 [ 11] [ 6] [156651] +13:51:00 [ 39] [ 2] [00] +13:51:00 [ 70] [ 3] [301] +13:51:00 ============================================================================ +13:51:00 Calculate Source COMM Id = 2 +13:51:00 ============================================================================ +13:51:00 + + +waiting on router queue for slot.... +13:51:09 ============================================================================ +13:51:09 Slot Id : <86> +13:51:09 Transaction Type : REQUEST +13:51:09 Received From : +13:51:09 ============================================================================ +13:51:09 FNo. Len. Field Value +13:51:09 ============================================================================ +13:51:09 [ 1] [ 4] [0200] +13:51:09 [ 2] [ 16] [2206990010000107] +13:51:09 [ 3] [ 6] [011000] +13:51:09 [ 4] [ 12] [000100000000] +13:51:09 [ 7] [ 10] [0320135105] +13:51:09 [ 11] [ 6] [762527] +13:51:09 [ 12] [ 6] [135105] +13:51:09 [ 13] [ 4] [0320] +13:51:09 [ 15] [ 4] [0320] +13:51:09 [ 18] [ 4] [6011] +13:51:09 [ 22] [ 3] [900] +13:51:09 [ 25] [ 2] [02] +13:51:09 [ 28] [ 9] [D00002000] +13:51:09 [ 32] [ 6] [621354] +13:51:09 [ 35] [ 32] [2206990010000107=980412613970086] +13:51:09 [ 37] [ 12] [507905304022] +13:51:09 [ 41] [ 8] [08001100] +13:51:09 [ 42] [ 15] [NATIVE ] +13:51:09 [ 43] [ 40] [Saysetha Unit02 Attapeu LAO] +13:51:09 [ 49] [ 3] [418] +13:51:09 [ 52] [ 16] [D5FF385EFEDBCE9A] +13:51:09 ============================================================================ +13:51:09 + + +waiting on router queue for slot.... +13:51:09 Sending to : +13:51:09 ============================================================================ +13:51:09 Sending to : +13:51:09 ============================================================================ +13:51:10 ============================================================================ +13:51:10 Slot Id : <86> +13:51:10 Transaction Type : REQUEST +13:51:10 Received From : +13:51:10 ============================================================================ +13:51:10 FNo. Len. Field Value +13:51:10 ============================================================================ +13:51:10 [ 1] [ 4] [0200] +13:51:10 [ 2] [ 16] [2206990010000107] +13:51:10 [ 3] [ 6] [011000] +13:51:10 [ 4] [ 12] [000100000000] +13:51:10 [ 7] [ 10] [0320135105] +13:51:10 [ 11] [ 6] [762527] +13:51:10 [ 12] [ 6] [135105] +13:51:10 [ 13] [ 4] [0320] +13:51:10 [ 15] [ 4] [0320] +13:51:10 [ 18] [ 4] [6011] +13:51:10 [ 22] [ 3] [900] +13:51:10 [ 25] [ 2] [02] +13:51:10 [ 28] [ 9] [D00002000] +13:51:10 [ 32] [ 6] [621354] +13:51:10 [ 35] [ 32] [2206990010000107=980412613970086] +13:51:10 [ 37] [ 12] [507905304022] +13:51:10 [ 41] [ 8] [08001100] +13:51:10 [ 42] [ 15] [NATIVE ] +13:51:10 [ 43] [ 40] [Saysetha Unit02 Attapeu LAO] +13:51:10 [ 49] [ 3] [418] +13:51:10 [ 52] [ 16] [D5FF385EFEDBCE9A] +13:51:10 ============================================================================ +13:51:10 + + +waiting on router queue for slot.... +13:51:10 Sending to : +13:51:10 ============================================================================ +13:51:10 ============================================================================ +13:51:10 Slot Id : <86> +13:51:10 Transaction Type : REQUEST +13:51:10 Received From : +13:51:10 ============================================================================ +13:51:10 FNo. Len. Field Value +13:51:10 ============================================================================ +13:51:10 [ 1] [ 4] [0200] +13:51:10 [ 2] [ 16] [2206990010000107] +13:51:10 [ 3] [ 6] [011000] +13:51:10 [ 4] [ 12] [000100000000] +13:51:10 [ 7] [ 10] [0320135105] +13:51:10 [ 11] [ 6] [762527] +13:51:10 [ 12] [ 6] [135105] +13:51:10 [ 13] [ 4] [0320] +13:51:10 [ 15] [ 4] [0320] +13:51:10 [ 18] [ 4] [6011] +13:51:10 [ 22] [ 3] [900] +13:51:10 [ 25] [ 2] [02] +13:51:10 [ 28] [ 9] [D00002000] +13:51:10 [ 32] [ 6] [621354] +13:51:10 [ 35] [ 32] [2206990010000107=980412613970086] +13:51:10 [ 37] [ 12] [507905304022] +13:51:10 [ 41] [ 8] [08001100] +13:51:10 [ 42] [ 15] [NATIVE ] +13:51:10 [ 43] [ 40] [Saysetha Unit02 Attapeu LAO] +13:51:10 [ 49] [ 3] [418] +13:51:10 [ 52] [ 16] [93B47B13BF7CF287] +13:51:10 ============================================================================ +13:51:10 + + +waiting on router queue for slot.... +13:51:10 Sending to : <1> +13:51:10 ============================================================================ +13:51:12 ============================================================================ +13:51:12 Slot Id : <86> +13:51:12 Transaction Type : RESPONSE +13:51:12 Received From : +13:51:12 ============================================================================ +13:51:12 FNo. Len. Field Value +13:51:12 ============================================================================ +13:51:12 [ 1] [ 4] [0210] +13:51:12 [ 2] [ 16] [2206990010000107] +13:51:12 [ 3] [ 6] [011000] +13:51:12 [ 4] [ 12] [000100000000] +13:51:12 [ 7] [ 10] [0320135105] +13:51:12 [ 11] [ 6] [762527] +13:51:12 [ 12] [ 6] [135105] +13:51:12 [ 13] [ 4] [0320] +13:51:12 [ 15] [ 4] [0320] +13:51:12 [ 18] [ 4] [6011] +13:51:12 [ 32] [ 6] [621354] +13:51:12 [ 35] [ 32] [2206990010000107=980412613970086] +13:51:12 [ 37] [ 12] [507905304022] +13:51:12 [ 38] [ 6] [187111] +13:51:12 [ 39] [ 2] [00] +13:51:12 [ 41] [ 8] [08001100] +13:51:12 [ 49] [ 3] [418] +13:51:12 [ 54] [ 40] [1001418C0000762333001002418C000076233300] +13:51:12 ============================================================================ +13:51:12 Sending to : +13:51:12 ============================================================================ +13:51:12 + + +waiting on router queue for slot.... +13:51:13 ============================================================================ +13:51:13 Slot Id : <89> +13:51:13 Transaction Type : REQUEST +13:51:13 Received From : +13:51:13 ============================================================================ +13:51:13 FNo. Len. Field Value +13:51:13 ============================================================================ +13:51:13 [ 1] [ 4] [0200] +13:51:13 [ 2] [ 16] [6213545000206759] +13:51:13 [ 3] [ 6] [301000] +13:51:13 [ 7] [ 10] [0320065019] +13:51:13 [ 11] [ 6] [269397] +13:51:13 [ 12] [ 6] [135019] +13:51:13 [ 13] [ 4] [0320] +13:51:13 [ 14] [ 4] [4912] +13:51:13 [ 15] [ 4] [0320] +13:51:13 [ 18] [ 4] [6011] +13:51:13 [ 19] [ 3] [418] +13:51:13 [ 22] [ 3] [021] +13:51:13 [ 25] [ 2] [01] +13:51:13 [ 32] [ 6] [180893] +13:51:13 [ 35] [ 32] [6213545000206759=491212010675928] +13:51:13 [ 37] [ 12] [507906269397] +13:51:13 [ 41] [ 8] [0483XKNH] +13:51:13 [ 42] [ 15] [999999 ] +13:51:13 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:51:13 [ 49] [ 3] [418] +13:51:13 [ 52] [ 16] [EB6DBADD83A15A7A] +13:51:13 ============================================================================ +13:51:13 + + +waiting on router queue for slot.... +13:51:13 Sending to : +13:51:13 ============================================================================ +13:51:13 Sending to : +13:51:13 ============================================================================ +13:51:13 ============================================================================ +13:51:13 Slot Id : <86> +13:51:13 Transaction Type : RESPONSE +13:51:13 Received From : +13:51:13 ============================================================================ +13:51:13 FNo. Len. Field Value +13:51:13 ============================================================================ +13:51:13 [ 1] [ 4] [0210] +13:51:13 [ 2] [ 16] [2206990010000107] +13:51:13 [ 3] [ 6] [011000] +13:51:13 [ 4] [ 12] [000100000000] +13:51:13 [ 7] [ 10] [0320135105] +13:51:13 [ 11] [ 6] [762527] +13:51:13 [ 12] [ 6] [135105] +13:51:13 [ 13] [ 4] [0320] +13:51:13 [ 15] [ 4] [0320] +13:51:13 [ 18] [ 4] [6011] +13:51:13 [ 32] [ 6] [621354] +13:51:13 [ 35] [ 32] [2206990010000107=980412613970086] +13:51:13 [ 37] [ 12] [507905304022] +13:51:13 [ 38] [ 6] [187111] +13:51:13 [ 39] [ 2] [00] +13:51:13 [ 41] [ 8] [08001100] +13:51:13 [ 49] [ 3] [418] +13:51:13 [ 54] [ 40] [1001418C0000762333001002418C000076233300] +13:51:13 ============================================================================ +13:51:13 Calculate Source COMM Id = 0 +13:51:13 ============================================================================ +13:51:13 + + +waiting on router queue for slot.... +13:51:14 ============================================================================ +13:51:14 Slot Id : <89> +13:51:14 Transaction Type : REQUEST +13:51:14 Received From : +13:51:14 ============================================================================ +13:51:14 FNo. Len. Field Value +13:51:14 ============================================================================ +13:51:14 [ 1] [ 4] [0200] +13:51:14 [ 2] [ 16] [6213545000206759] +13:51:14 [ 3] [ 6] [301000] +13:51:14 [ 7] [ 10] [0320065019] +13:51:14 [ 11] [ 6] [269397] +13:51:14 [ 12] [ 6] [135019] +13:51:14 [ 13] [ 4] [0320] +13:51:14 [ 14] [ 4] [4912] +13:51:14 [ 15] [ 4] [0320] +13:51:14 [ 18] [ 4] [6011] +13:51:14 [ 19] [ 3] [418] +13:51:14 [ 22] [ 3] [021] +13:51:14 [ 25] [ 2] [01] +13:51:14 [ 32] [ 6] [180893] +13:51:14 [ 35] [ 32] [6213545000206759=491212010675928] +13:51:14 [ 37] [ 12] [507906269397] +13:51:14 [ 41] [ 8] [0483XKNH] +13:51:14 [ 42] [ 15] [999999 ] +13:51:14 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:51:14 [ 49] [ 3] [418] +13:51:14 [ 52] [ 16] [EB6DBADD83A15A7A] +13:51:14 ============================================================================ +13:51:14 + + +waiting on router queue for slot.... +13:51:14 Sending to : +13:51:14 ============================================================================ +13:51:14 ============================================================================ +13:51:14 Slot Id : <89> +13:51:14 Transaction Type : REQUEST +13:51:14 Received From : +13:51:14 ============================================================================ +13:51:14 FNo. Len. Field Value +13:51:14 ============================================================================ +13:51:14 [ 1] [ 4] [0200] +13:51:14 [ 2] [ 16] [6213545000206759] +13:51:14 [ 3] [ 6] [301000] +13:51:14 [ 7] [ 10] [0320065019] +13:51:14 [ 11] [ 6] [269397] +13:51:14 [ 12] [ 6] [135019] +13:51:14 [ 13] [ 4] [0320] +13:51:14 [ 14] [ 4] [4912] +13:51:14 [ 15] [ 4] [0320] +13:51:14 [ 18] [ 4] [6011] +13:51:14 [ 19] [ 3] [418] +13:51:14 [ 22] [ 3] [021] +13:51:14 [ 25] [ 2] [01] +13:51:14 [ 32] [ 6] [180893] +13:51:14 [ 35] [ 32] [6213545000206759=491212010675928] +13:51:14 [ 37] [ 12] [507906269397] +13:51:14 [ 41] [ 8] [0483XKNH] +13:51:14 [ 42] [ 15] [999999 ] +13:51:14 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:51:14 [ 49] [ 3] [418] +13:51:14 [ 52] [ 16] [6D16768D16F393F8] +13:51:14 ============================================================================ +13:51:14 + + +waiting on router queue for slot.... +13:51:14 Sending to : <0> +13:51:14 ============================================================================ +13:51:14 ============================================================================ +13:51:14 Slot Id : <89> +13:51:14 Transaction Type : RESPONSE +13:51:14 Received From : +13:51:14 ============================================================================ +13:51:14 FNo. Len. Field Value +13:51:14 ============================================================================ +13:51:14 [ 1] [ 4] [0210] +13:51:14 [ 2] [ 16] [6213545000206759] +13:51:14 [ 3] [ 6] [301000] +13:51:14 [ 4] [ 12] [000000000000] +13:51:14 [ 7] [ 10] [0320065019] +13:51:14 [ 11] [ 6] [269397] +13:51:14 [ 12] [ 6] [135019] +13:51:14 [ 13] [ 4] [0320] +13:51:14 [ 15] [ 4] [0320] +13:51:14 [ 18] [ 4] [6011] +13:51:14 [ 19] [ 3] [418] +13:51:14 [ 32] [ 6] [180893] +13:51:14 [ 35] [ 32] [6213545000206759=491212010675928] +13:51:14 [ 37] [ 12] [507906269397] +13:51:14 [ 38] [ 6] [580421] +13:51:14 [ 39] [ 2] [00] +13:51:14 [ 41] [ 8] [0483XKNH] +13:51:14 [ 49] [ 3] [418] +13:51:14 [ 54] [ 40] [1001418C0006754306391002418C000675430639] +13:51:14 ============================================================================ +13:51:14 Sending to : +13:51:14 ============================================================================ +13:51:14 + + +waiting on router queue for slot.... +13:51:15 ============================================================================ +13:51:15 Slot Id : <89> +13:51:15 Transaction Type : RESPONSE +13:51:15 Received From : +13:51:15 ============================================================================ +13:51:15 FNo. Len. Field Value +13:51:15 ============================================================================ +13:51:15 [ 1] [ 4] [0210] +13:51:15 [ 2] [ 16] [6213545000206759] +13:51:15 [ 3] [ 6] [301000] +13:51:15 [ 4] [ 12] [000000000000] +13:51:15 [ 7] [ 10] [0320065019] +13:51:15 [ 11] [ 6] [269397] +13:51:15 [ 12] [ 6] [135019] +13:51:15 [ 13] [ 4] [0320] +13:51:15 [ 15] [ 4] [0320] +13:51:15 [ 18] [ 4] [6011] +13:51:15 [ 19] [ 3] [418] +13:51:15 [ 32] [ 6] [180893] +13:51:15 [ 35] [ 32] [6213545000206759=491212010675928] +13:51:15 [ 37] [ 12] [507906269397] +13:51:15 [ 38] [ 6] [580421] +13:51:15 [ 39] [ 2] [00] +13:51:15 [ 41] [ 8] [0483XKNH] +13:51:15 [ 49] [ 3] [418] +13:51:15 [ 54] [ 40] [1001418C0006754306391002418C000675430639] +13:51:15 ============================================================================ +13:51:15 Calculate Source COMM Id = 2 +13:51:15 ============================================================================ +13:51:15 + + +waiting on router queue for slot.... +13:51:15 ============================================================================ +13:51:15 Slot Id : <88> +13:51:15 Transaction Type : REQUEST +13:51:15 Received From : +13:51:15 ============================================================================ +13:51:15 FNo. Len. Field Value +13:51:15 ============================================================================ +13:51:15 [ 1] [ 4] [0800] +13:51:15 [ 7] [ 10] [0320065022] +13:51:15 [ 11] [ 6] [156652] +13:51:15 [ 70] [ 3] [301] +13:51:15 ============================================================================ +13:51:15 + + +waiting on router queue for slot.... +13:51:15 Sending to : +13:51:15 ============================================================================ +13:51:15 ============================================================================ +13:51:15 Slot Id : <88> +13:51:15 Transaction Type : RESPONSE +13:51:15 Received From : +13:51:15 ============================================================================ +13:51:15 FNo. Len. Field Value +13:51:15 ============================================================================ +13:51:15 [ 1] [ 4] [0810] +13:51:15 [ 7] [ 10] [0320065022] +13:51:15 [ 11] [ 6] [156652] +13:51:15 [ 39] [ 2] [00] +13:51:15 [ 70] [ 3] [301] +13:51:15 ============================================================================ +13:51:15 Calculate Source COMM Id = 2 +13:51:15 ============================================================================ +13:51:15 + + +waiting on router queue for slot.... +13:51:20 ============================================================================ +13:51:20 Slot Id : <59> +13:51:20 Transaction Type : REQUEST +13:51:20 Received From : +13:51:20 ============================================================================ +13:51:20 FNo. Len. Field Value +13:51:20 ============================================================================ +13:51:20 [ 1] [ 4] [0200] +13:51:20 [ 2] [ 16] [1808930200017887] +13:51:20 [ 3] [ 6] [011000] +13:51:20 [ 4] [ 12] [000040000000] +13:51:20 [ 7] [ 10] [0320135115] +13:51:20 [ 11] [ 6] [762557] +13:51:20 [ 12] [ 6] [135115] +13:51:20 [ 13] [ 4] [0320] +13:51:20 [ 15] [ 4] [0320] +13:51:20 [ 18] [ 4] [6011] +13:51:20 [ 22] [ 3] [900] +13:51:20 [ 25] [ 2] [02] +13:51:20 [ 28] [ 9] [D00002000] +13:51:20 [ 32] [ 6] [621354] +13:51:20 [ 35] [ 27] [1808930200017887=1803500368] +13:51:20 [ 37] [ 12] [507902776631] +13:51:20 [ 41] [ 8] [01007100] +13:51:20 [ 42] [ 15] [NATIVE ] +13:51:20 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +13:51:20 [ 49] [ 3] [418] +13:51:20 [ 52] [ 16] [7DD0446A81A2398D] +13:51:20 ============================================================================ +13:51:20 + + +waiting on router queue for slot.... +13:51:20 Sending to : +13:51:20 ============================================================================ +13:51:20 Sending to : +13:51:20 ============================================================================ +13:51:20 ============================================================================ +13:51:20 Slot Id : <59> +13:51:20 Transaction Type : REQUEST +13:51:20 Received From : +13:51:20 ============================================================================ +13:51:20 FNo. Len. Field Value +13:51:20 ============================================================================ +13:51:20 [ 1] [ 4] [0200] +13:51:20 [ 2] [ 16] [1808930200017887] +13:51:20 [ 3] [ 6] [011000] +13:51:20 [ 4] [ 12] [000040000000] +13:51:20 [ 7] [ 10] [0320135115] +13:51:20 [ 11] [ 6] [762557] +13:51:20 [ 12] [ 6] [135115] +13:51:20 [ 13] [ 4] [0320] +13:51:20 [ 15] [ 4] [0320] +13:51:20 [ 18] [ 4] [6011] +13:51:20 [ 22] [ 3] [900] +13:51:20 [ 25] [ 2] [02] +13:51:20 [ 28] [ 9] [D00002000] +13:51:20 [ 32] [ 6] [621354] +13:51:20 [ 35] [ 27] [1808930200017887=1803500368] +13:51:20 [ 37] [ 12] [507902776631] +13:51:20 [ 41] [ 8] [01007100] +13:51:20 [ 42] [ 15] [NATIVE ] +13:51:20 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +13:51:20 [ 49] [ 3] [418] +13:51:20 [ 52] [ 16] [7DD0446A81A2398D] +13:51:20 ============================================================================ +13:51:20 + + +waiting on router queue for slot.... +13:51:20 Sending to : +13:51:20 ============================================================================ +13:51:20 ============================================================================ +13:51:20 Slot Id : <59> +13:51:20 Transaction Type : REQUEST +13:51:20 Received From : +13:51:20 ============================================================================ +13:51:20 FNo. Len. Field Value +13:51:20 ============================================================================ +13:51:20 [ 1] [ 4] [0200] +13:51:20 [ 2] [ 16] [1808930200017887] +13:51:20 [ 3] [ 6] [011000] +13:51:20 [ 4] [ 12] [000040000000] +13:51:20 [ 7] [ 10] [0320135115] +13:51:20 [ 11] [ 6] [762557] +13:51:20 [ 12] [ 6] [135115] +13:51:20 [ 13] [ 4] [0320] +13:51:20 [ 15] [ 4] [0320] +13:51:20 [ 18] [ 4] [6011] +13:51:20 [ 22] [ 3] [900] +13:51:20 [ 25] [ 2] [02] +13:51:20 [ 28] [ 9] [D00002000] +13:51:20 [ 32] [ 6] [621354] +13:51:20 [ 35] [ 27] [1808930200017887=1803500368] +13:51:20 [ 37] [ 12] [507902776631] +13:51:20 [ 41] [ 8] [01007100] +13:51:20 [ 42] [ 15] [NATIVE ] +13:51:20 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +13:51:20 [ 49] [ 3] [418] +13:51:20 [ 52] [ 16] [D5B6ED58F67B460C] +13:51:20 ============================================================================ +13:51:20 + + +waiting on router queue for slot.... +13:51:20 Sending to : <2> +13:51:20 ============================================================================ +13:51:21 ============================================================================ +13:51:21 Slot Id : <79> +13:51:21 Transaction Type : REQUEST +13:51:21 Received From : +13:51:21 ============================================================================ +13:51:21 FNo. Len. Field Value +13:51:21 ============================================================================ +13:51:21 [ 1] [ 4] [0800] +13:51:21 [ 7] [ 10] [0320064912] +13:51:21 [ 11] [ 6] [064209] +13:51:21 [ 37] [ 12] [57913064209] +13:51:21 [ 70] [ 3] [301] +13:51:21 ============================================================================ +13:51:21 + + +waiting on router queue for slot.... +13:51:21 Sending to : +13:51:21 ============================================================================ +13:51:21 ============================================================================ +13:51:21 Slot Id : <79> +13:51:21 Transaction Type : RESPONSE +13:51:21 Received From : +13:51:21 ============================================================================ +13:51:21 FNo. Len. Field Value +13:51:21 ============================================================================ +13:51:21 [ 1] [ 4] [0810] +13:51:21 [ 7] [ 10] [0320064912] +13:51:21 [ 11] [ 6] [064209] +13:51:21 [ 37] [ 12] [579130642090] +13:51:21 [ 39] [ 2] [00] +13:51:21 [ 70] [ 3] [810] +13:51:21 ============================================================================ +13:51:21 Calculate Source COMM Id = 4 +13:51:21 ============================================================================ +13:51:21 + + +waiting on router queue for slot.... +13:51:26 ============================================================================ +13:51:26 Slot Id : <5> +13:51:26 Transaction Type : REQUEST +13:51:26 Received From : +13:51:26 ============================================================================ +13:51:26 FNo. Len. Field Value +13:51:26 ============================================================================ +13:51:26 [ 1] [ 4] [0200] +13:51:26 [ 2] [ 16] [1808930600037402] +13:51:26 [ 3] [ 6] [300000] +13:51:26 [ 4] [ 12] [000000000000] +13:51:26 [ 7] [ 10] [0320135121] +13:51:26 [ 11] [ 6] [762584] +13:51:26 [ 12] [ 6] [135121] +13:51:26 [ 13] [ 4] [0320] +13:51:26 [ 15] [ 4] [0320] +13:51:26 [ 18] [ 4] [6011] +13:51:26 [ 22] [ 3] [900] +13:51:26 [ 25] [ 2] [02] +13:51:26 [ 28] [ 9] [D00000000] +13:51:26 [ 32] [ 6] [621354] +13:51:26 [ 35] [ 27] [1808930600037402=1803500799] +13:51:26 [ 37] [ 12] [507904273264] +13:51:26 [ 41] [ 8] [03002600] +13:51:26 [ 42] [ 15] [NATIVE ] +13:51:26 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +13:51:26 [ 49] [ 3] [418] +13:51:26 [ 52] [ 16] [7AFCE236F833F073] +13:51:26 ============================================================================ +13:51:26 + + +waiting on router queue for slot.... +13:51:26 Sending to : +13:51:26 ============================================================================ +13:51:26 Sending to : +13:51:26 ============================================================================ +13:51:26 ============================================================================ +13:51:26 Slot Id : <5> +13:51:26 Transaction Type : REQUEST +13:51:26 Received From : +13:51:26 ============================================================================ +13:51:26 FNo. Len. Field Value +13:51:26 ============================================================================ +13:51:26 [ 1] [ 4] [0200] +13:51:26 [ 2] [ 16] [1808930600037402] +13:51:26 [ 3] [ 6] [300000] +13:51:26 [ 4] [ 12] [000000000000] +13:51:26 [ 7] [ 10] [0320135121] +13:51:26 [ 11] [ 6] [762584] +13:51:26 [ 12] [ 6] [135121] +13:51:26 [ 13] [ 4] [0320] +13:51:26 [ 15] [ 4] [0320] +13:51:26 [ 18] [ 4] [6011] +13:51:26 [ 22] [ 3] [900] +13:51:26 [ 25] [ 2] [02] +13:51:26 [ 28] [ 9] [D00000000] +13:51:26 [ 32] [ 6] [621354] +13:51:26 [ 35] [ 27] [1808930600037402=1803500799] +13:51:26 [ 37] [ 12] [507904273264] +13:51:26 [ 41] [ 8] [03002600] +13:51:26 [ 42] [ 15] [NATIVE ] +13:51:26 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +13:51:26 [ 49] [ 3] [418] +13:51:26 [ 52] [ 16] [7AFCE236F833F073] +13:51:26 ============================================================================ +13:51:26 + + +waiting on router queue for slot.... +13:51:26 Sending to : +13:51:26 ============================================================================ +13:51:26 ============================================================================ +13:51:26 Slot Id : <5> +13:51:26 Transaction Type : REQUEST +13:51:26 Received From : +13:51:26 ============================================================================ +13:51:26 FNo. Len. Field Value +13:51:26 ============================================================================ +13:51:26 [ 1] [ 4] [0200] +13:51:26 [ 2] [ 16] [1808930600037402] +13:51:26 [ 3] [ 6] [300000] +13:51:26 [ 4] [ 12] [000000000000] +13:51:26 [ 7] [ 10] [0320135121] +13:51:26 [ 11] [ 6] [762584] +13:51:26 [ 12] [ 6] [135121] +13:51:26 [ 13] [ 4] [0320] +13:51:26 [ 15] [ 4] [0320] +13:51:26 [ 18] [ 4] [6011] +13:51:26 [ 22] [ 3] [900] +13:51:26 [ 25] [ 2] [02] +13:51:26 [ 28] [ 9] [D00000000] +13:51:26 [ 32] [ 6] [621354] +13:51:26 [ 35] [ 27] [1808930600037402=1803500799] +13:51:26 [ 37] [ 12] [507904273264] +13:51:26 [ 41] [ 8] [03002600] +13:51:26 [ 42] [ 15] [NATIVE ] +13:51:26 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +13:51:26 [ 49] [ 3] [418] +13:51:26 [ 52] [ 16] [4A27126FE03225BD] +13:51:26 ============================================================================ +13:51:26 + + +waiting on router queue for slot.... +13:51:26 Sending to : <2> +13:51:26 ============================================================================ +13:51:26 ============================================================================ +13:51:26 Slot Id : <84> +13:51:26 Transaction Type : REQUEST +13:51:26 Received From : +13:51:26 ============================================================================ +13:51:26 FNo. Len. Field Value +13:51:26 ============================================================================ +13:51:26 [ 1] [ 4] [0800] +13:51:26 [ 2] [ 5] [02531] +13:51:26 [ 3] [ 6] [579138] +13:51:26 [ 7] [ 10] [0320065126] +13:51:26 [ 11] [ 6] [807216] +13:51:26 [ 15] [ 10] [0320065126] +13:51:26 [ 37] [ 11] [57913807216] +13:51:26 [ 70] [ 3] [001] +13:51:26 ============================================================================ +13:51:26 + + +waiting on router queue for slot.... +13:51:26 ============================================================================ +13:51:26 Slot Id : <84> +13:51:26 Transaction Type : RESPONSE +13:51:26 Received From : +13:51:26 ============================================================================ +13:51:26 FNo. Len. Field Value +13:51:26 ============================================================================ +13:51:26 [ 1] [ 4] [0810] +13:51:26 [ 7] [ 10] [0320065126] +13:51:26 [ 11] [ 6] [807216] +13:51:26 [ 15] [ 4] [0320] +13:51:26 [ 37] [ 12] [57913807216] +13:51:26 [ 39] [ 2] [00] +13:51:26 [ 70] [ 3] [001] +13:51:26 ============================================================================ +13:51:26 Sending to : +13:51:26 ============================================================================ +13:51:26 + + +waiting on router queue for slot.... +13:51:28 ============================================================================ +13:51:28 Slot Id : <59> +13:51:28 Transaction Type : RESPONSE +13:51:28 Received From : +13:51:28 ============================================================================ +13:51:28 FNo. Len. Field Value +13:51:28 ============================================================================ +13:51:28 [ 1] [ 4] [0210] +13:51:28 [ 2] [ 16] [1808930200017887] +13:51:28 [ 3] [ 6] [011000] +13:51:28 [ 4] [ 12] [000040000000] +13:51:28 [ 6] [ 12] [000040000000] +13:51:28 [ 7] [ 10] [0320135115] +13:51:28 [ 11] [ 6] [762557] +13:51:28 [ 12] [ 6] [135115] +13:51:28 [ 13] [ 4] [0320] +13:51:28 [ 18] [ 4] [6011] +13:51:28 [ 19] [ 3] [418] +13:51:28 [ 22] [ 3] [021] +13:51:28 [ 32] [ 6] [621354] +13:51:28 [ 35] [ 27] [1808930200017887=1803500368] +13:51:28 [ 37] [ 12] [507902776631] +13:51:28 [ 38] [ 6] [762557] +13:51:28 [ 39] [ 2] [00] +13:51:28 [ 41] [ 8] [01007100] +13:51:28 [ 49] [ 3] [418] +13:51:28 [ 52] [ 16] [D5B6ED58F67B460C] +13:51:28 [ 54] [ 20] [1001418C000218999500] +13:51:28 ============================================================================ +13:51:28 Sending to : +13:51:28 ============================================================================ +13:51:28 + + +waiting on router queue for slot.... +13:51:30 ============================================================================ +13:51:30 Slot Id : <59> +13:51:30 Transaction Type : RESPONSE +13:51:30 Received From : +13:51:30 ============================================================================ +13:51:30 FNo. Len. Field Value +13:51:30 ============================================================================ +13:51:30 [ 1] [ 4] [0210] +13:51:30 [ 2] [ 16] [1808930200017887] +13:51:30 [ 3] [ 6] [011000] +13:51:30 [ 4] [ 12] [000040000000] +13:51:30 [ 6] [ 12] [000040000000] +13:51:30 [ 7] [ 10] [0320135115] +13:51:30 [ 11] [ 6] [762557] +13:51:30 [ 12] [ 6] [135115] +13:51:30 [ 13] [ 4] [0320] +13:51:30 [ 18] [ 4] [6011] +13:51:30 [ 19] [ 3] [418] +13:51:30 [ 22] [ 3] [021] +13:51:30 [ 32] [ 6] [621354] +13:51:30 [ 35] [ 27] [1808930200017887=1803500368] +13:51:30 [ 37] [ 12] [507902776631] +13:51:30 [ 38] [ 6] [762557] +13:51:30 [ 39] [ 2] [00] +13:51:30 [ 41] [ 8] [01007100] +13:51:30 [ 49] [ 3] [418] +13:51:30 [ 52] [ 16] [D5B6ED58F67B460C] +13:51:30 [ 54] [ 20] [1001418C000218999500] +13:51:30 ============================================================================ +13:51:30 Calculate Source COMM Id = 0 +13:51:30 ============================================================================ +13:51:30 + + +waiting on router queue for slot.... +13:51:33 ============================================================================ +13:51:33 Slot Id : <5> +13:51:33 Transaction Type : RESPONSE +13:51:33 Received From : +13:51:33 ============================================================================ +13:51:33 FNo. Len. Field Value +13:51:33 ============================================================================ +13:51:33 [ 1] [ 4] [0210] +13:51:33 [ 2] [ 16] [1808930600037402] +13:51:33 [ 3] [ 6] [300000] +13:51:33 [ 7] [ 10] [0320135121] +13:51:33 [ 11] [ 6] [762584] +13:51:33 [ 12] [ 6] [135121] +13:51:33 [ 13] [ 4] [0320] +13:51:33 [ 14] [ 4] [1803] +13:51:33 [ 19] [ 3] [418] +13:51:33 [ 32] [ 6] [621354] +13:51:33 [ 37] [ 12] [507904273264] +13:51:33 [ 38] [ 6] [762584] +13:51:33 [ 39] [ 2] [00] +13:51:33 [ 41] [ 8] [03002600] +13:51:33 [ 49] [ 3] [418] +13:51:33 [ 52] [ 16] [4A27126FE03225BD] +13:51:33 [ 54] [ 20] [0002418C000067546900] +13:51:33 ============================================================================ +13:51:33 Sending to : +13:51:33 ============================================================================ +13:51:33 + + +waiting on router queue for slot.... +13:51:34 ============================================================================ +13:51:34 Slot Id : <5> +13:51:34 Transaction Type : RESPONSE +13:51:34 Received From : +13:51:34 ============================================================================ +13:51:34 FNo. Len. Field Value +13:51:34 ============================================================================ +13:51:34 [ 1] [ 4] [0210] +13:51:34 [ 2] [ 16] [1808930600037402] +13:51:34 [ 3] [ 6] [300000] +13:51:34 [ 7] [ 10] [0320135121] +13:51:34 [ 11] [ 6] [762584] +13:51:34 [ 12] [ 6] [135121] +13:51:34 [ 13] [ 4] [0320] +13:51:34 [ 14] [ 4] [1803] +13:51:34 [ 19] [ 3] [418] +13:51:34 [ 32] [ 6] [621354] +13:51:34 [ 37] [ 12] [507904273264] +13:51:34 [ 38] [ 6] [762584] +13:51:34 [ 39] [ 2] [00] +13:51:34 [ 41] [ 8] [03002600] +13:51:34 [ 49] [ 3] [418] +13:51:34 [ 52] [ 16] [4A27126FE03225BD] +13:51:34 [ 54] [ 20] [0002418C000067546900] +13:51:34 ============================================================================ +13:51:34 Calculate Source COMM Id = 0 +13:51:34 ============================================================================ +13:51:34 + + +waiting on router queue for slot.... +13:51:37 ============================================================================ +13:51:37 Slot Id : <67> +13:51:37 Transaction Type : REQUEST +13:51:37 Received From : +13:51:37 ============================================================================ +13:51:37 FNo. Len. Field Value +13:51:37 ============================================================================ +13:51:37 [ 1] [ 4] [0800] +13:51:37 [ 7] [ 10] [0320065044] +13:51:37 [ 11] [ 6] [156653] +13:51:37 [ 70] [ 3] [301] +13:51:37 ============================================================================ +13:51:37 + + +waiting on router queue for slot.... +13:51:37 Sending to : +13:51:37 ============================================================================ +13:51:37 ============================================================================ +13:51:37 Slot Id : <67> +13:51:37 Transaction Type : RESPONSE +13:51:37 Received From : +13:51:37 ============================================================================ +13:51:37 FNo. Len. Field Value +13:51:37 ============================================================================ +13:51:37 [ 1] [ 4] [0810] +13:51:37 [ 7] [ 10] [0320065044] +13:51:37 [ 11] [ 6] [156653] +13:51:37 [ 39] [ 2] [00] +13:51:37 [ 70] [ 3] [301] +13:51:37 ============================================================================ +13:51:37 Calculate Source COMM Id = 2 +13:51:37 ============================================================================ +13:51:37 + + +waiting on router queue for slot.... +13:51:45 ============================================================================ +13:51:45 Slot Id : <62> +13:51:45 Transaction Type : REQUEST +13:51:45 Received From : +13:51:45 ============================================================================ +13:51:45 FNo. Len. Field Value +13:51:45 ============================================================================ +13:51:45 [ 0] [ 4] [0420] +13:51:45 [ 1] [ 4] [0420] +13:51:45 [ 2] [ 16] [2206990010000107] +13:51:45 [ 3] [ 6] [011000] +13:51:45 [ 4] [ 12] [000100000000] +13:51:45 [ 6] [ 12] [000100000000] +13:51:45 [ 7] [ 10] [0320134949] +13:51:45 [ 11] [ 6] [762298] +13:51:45 [ 12] [ 6] [134949] +13:51:45 [ 13] [ 4] [0320] +13:51:45 [ 15] [ 4] [0320] +13:51:45 [ 18] [ 4] [6011] +13:51:45 [ 22] [ 3] [900] +13:51:45 [ 25] [ 2] [02] +13:51:45 [ 28] [ 9] [D00002000] +13:51:45 [ 32] [ 6] [621354] +13:51:45 [ 35] [ 32] [2206990010000107=980412613970086] +13:51:45 [ 37] [ 12] [507905304020] +13:51:45 [ 39] [ 2] [00] +13:51:45 [ 41] [ 8] [08001100] +13:51:45 [ 42] [ 15] [NATIVE ] +13:51:45 [ 43] [ 40] [Saysetha Unit02 Attapeu LAO] +13:51:45 [ 49] [ 3] [418] +13:51:45 [ 52] [ 16] [D5FF385EFEDBCE9A] +13:51:45 ============================================================================ +13:51:45 + + +waiting on router queue for slot.... +13:51:46 ============================================================================ +13:51:46 Slot Id : <62> +13:51:46 Transaction Type : RESPONSE +13:51:46 Received From : +13:51:46 ============================================================================ +13:51:46 FNo. Len. Field Value +13:51:46 ============================================================================ +13:51:46 [ 1] [ 4] [0430] +13:51:46 [ 2] [ 16] [2206990010000107] +13:51:46 [ 3] [ 6] [011000] +13:51:46 [ 4] [ 12] [000100000000] +13:51:46 [ 7] [ 10] [0320134949] +13:51:46 [ 11] [ 6] [762298] +13:51:46 [ 32] [ 6] [621354] +13:51:46 [ 35] [ 32] [2206990010000107=980412613970086] +13:51:46 [ 37] [ 12] [507905304020] +13:51:46 [ 39] [ 2] [00] +13:51:46 [ 41] [ 8] [08001100] +13:51:46 [ 43] [ 40] [Saysetha Unit02 Attapeu LAO] +13:51:46 [ 49] [ 3] [418] +13:51:46 [ 90] [ 42] [020076229803201349490000062135400000000000] +13:51:46 ============================================================================ +13:51:46 Successfully send the slot [62] To REVERSAL Process +13:51:46 + + +waiting on router queue for slot.... +13:51:52 ============================================================================ +13:51:52 Slot Id : <51> +13:51:52 Transaction Type : REQUEST +13:51:52 Received From : +13:51:52 ============================================================================ +13:51:52 FNo. Len. Field Value +13:51:52 ============================================================================ +13:51:52 [ 1] [ 4] [0800] +13:51:52 [ 7] [ 10] [0320065059] +13:51:52 [ 11] [ 6] [156654] +13:51:52 [ 70] [ 3] [301] +13:51:52 ============================================================================ +13:51:52 + + +waiting on router queue for slot.... +13:51:52 Sending to : +13:51:52 ============================================================================ +13:51:52 ============================================================================ +13:51:52 Slot Id : <51> +13:51:52 Transaction Type : RESPONSE +13:51:52 Received From : +13:51:52 ============================================================================ +13:51:52 FNo. Len. Field Value +13:51:52 ============================================================================ +13:51:52 [ 1] [ 4] [0810] +13:51:52 [ 7] [ 10] [0320065059] +13:51:52 [ 11] [ 6] [156654] +13:51:52 [ 39] [ 2] [00] +13:51:52 [ 70] [ 3] [301] +13:51:52 ============================================================================ +13:51:52 Calculate Source COMM Id = 2 +13:51:52 ============================================================================ +13:51:52 + + +waiting on router queue for slot.... +13:52:03 ============================================================================ +13:52:03 Slot Id : <39> +13:52:03 Transaction Type : REQUEST +13:52:03 Received From : +13:52:03 ============================================================================ +13:52:03 FNo. Len. Field Value +13:52:03 ============================================================================ +13:52:03 [ 1] [ 4] [0800] +13:52:03 [ 7] [ 10] [0320065110] +13:52:03 [ 11] [ 6] [156655] +13:52:03 [ 70] [ 3] [301] +13:52:03 ============================================================================ +13:52:03 + + +waiting on router queue for slot.... +13:52:03 Sending to : +13:52:03 ============================================================================ +13:52:03 ============================================================================ +13:52:03 Slot Id : <39> +13:52:03 Transaction Type : RESPONSE +13:52:03 Received From : +13:52:03 ============================================================================ +13:52:03 FNo. Len. Field Value +13:52:03 ============================================================================ +13:52:03 [ 1] [ 4] [0810] +13:52:03 [ 7] [ 10] [0320065110] +13:52:03 [ 11] [ 6] [156655] +13:52:03 [ 39] [ 2] [00] +13:52:03 [ 70] [ 3] [301] +13:52:03 ============================================================================ +13:52:03 Calculate Source COMM Id = 2 +13:52:03 ============================================================================ +13:52:03 + + +waiting on router queue for slot.... +13:52:13 ============================================================================ +13:52:13 Slot Id : <99> +13:52:13 Transaction Type : REQUEST +13:52:13 Received From : +13:52:13 ============================================================================ +13:52:13 FNo. Len. Field Value +13:52:13 ============================================================================ +13:52:13 [ 1] [ 4] [0200] +13:52:13 [ 2] [ 16] [6213544001355038] +13:52:13 [ 3] [ 6] [301000] +13:52:13 [ 4] [ 12] [000000000000] +13:52:13 [ 7] [ 10] [0320135004] +13:52:13 [ 11] [ 6] [947579] +13:52:13 [ 12] [ 6] [135004] +13:52:13 [ 13] [ 4] [0320] +13:52:13 [ 15] [ 4] [0320] +13:52:13 [ 18] [ 4] [6011] +13:52:13 [ 19] [ 3] [418] +13:52:13 [ 22] [ 3] [021] +13:52:13 [ 25] [ 2] [01] +13:52:13 [ 28] [ 9] [D00000000] +13:52:13 [ 32] [ 6] [668899] +13:52:13 [ 35] [ 32] [6213544001355038=491212015503263] +13:52:13 [ 37] [ 12] [507902093330] +13:52:13 [ 41] [ 8] [03020021] +13:52:13 [ 42] [ 15] [APT ] +13:52:13 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +13:52:13 [ 49] [ 3] [418] +13:52:13 [ 52] [ 16] [297EA9CF91901BE2] +13:52:13 ============================================================================ +13:52:13 + + +waiting on router queue for slot.... +13:52:13 Sending to : +13:52:13 ============================================================================ +13:52:13 Sending to : +13:52:13 ============================================================================ +13:52:14 ============================================================================ +13:52:14 Slot Id : <99> +13:52:14 Transaction Type : REQUEST +13:52:14 Received From : +13:52:14 ============================================================================ +13:52:14 FNo. Len. Field Value +13:52:14 ============================================================================ +13:52:14 [ 1] [ 4] [0200] +13:52:14 [ 2] [ 16] [6213544001355038] +13:52:14 [ 3] [ 6] [301000] +13:52:14 [ 4] [ 12] [000000000000] +13:52:14 [ 7] [ 10] [0320135004] +13:52:14 [ 11] [ 6] [947579] +13:52:14 [ 12] [ 6] [135004] +13:52:14 [ 13] [ 4] [0320] +13:52:14 [ 15] [ 4] [0320] +13:52:14 [ 18] [ 4] [6011] +13:52:14 [ 19] [ 3] [418] +13:52:14 [ 22] [ 3] [021] +13:52:14 [ 25] [ 2] [01] +13:52:14 [ 28] [ 9] [D00000000] +13:52:14 [ 32] [ 6] [668899] +13:52:14 [ 35] [ 32] [6213544001355038=491212015503263] +13:52:14 [ 37] [ 12] [507902093330] +13:52:14 [ 41] [ 8] [03020021] +13:52:14 [ 42] [ 15] [APT ] +13:52:14 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +13:52:14 [ 49] [ 3] [418] +13:52:14 [ 52] [ 16] [297EA9CF91901BE2] +13:52:14 ============================================================================ +13:52:14 + + +waiting on router queue for slot.... +13:52:14 Sending to : +13:52:14 ============================================================================ +13:52:14 ============================================================================ +13:52:14 Slot Id : <99> +13:52:14 Transaction Type : REQUEST +13:52:14 Received From : +13:52:14 ============================================================================ +13:52:14 FNo. Len. Field Value +13:52:14 ============================================================================ +13:52:14 [ 1] [ 4] [0200] +13:52:14 [ 2] [ 16] [6213544001355038] +13:52:14 [ 3] [ 6] [301000] +13:52:14 [ 4] [ 12] [000000000000] +13:52:14 [ 7] [ 10] [0320135004] +13:52:14 [ 11] [ 6] [947579] +13:52:14 [ 12] [ 6] [135004] +13:52:14 [ 13] [ 4] [0320] +13:52:14 [ 15] [ 4] [0320] +13:52:14 [ 18] [ 4] [6011] +13:52:14 [ 19] [ 3] [418] +13:52:14 [ 22] [ 3] [021] +13:52:14 [ 25] [ 2] [01] +13:52:14 [ 28] [ 9] [D00000000] +13:52:14 [ 32] [ 6] [668899] +13:52:14 [ 35] [ 32] [6213544001355038=491212015503263] +13:52:14 [ 37] [ 12] [507902093330] +13:52:14 [ 41] [ 8] [03020021] +13:52:14 [ 42] [ 15] [APT ] +13:52:14 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +13:52:14 [ 49] [ 3] [418] +13:52:14 [ 52] [ 16] [6EDF6916694E6198] +13:52:14 ============================================================================ +13:52:14 + + +waiting on router queue for slot.... +13:52:14 Sending to : <0> +13:52:14 ============================================================================ +13:52:14 ============================================================================ +13:52:14 Slot Id : <99> +13:52:14 Transaction Type : RESPONSE +13:52:14 Received From : +13:52:14 ============================================================================ +13:52:14 FNo. Len. Field Value +13:52:14 ============================================================================ +13:52:14 [ 1] [ 4] [0210] +13:52:14 [ 2] [ 16] [6213544001355038] +13:52:14 [ 3] [ 6] [301000] +13:52:14 [ 4] [ 12] [000000000000] +13:52:14 [ 7] [ 10] [0320135004] +13:52:14 [ 11] [ 6] [947579] +13:52:14 [ 12] [ 6] [135004] +13:52:14 [ 13] [ 4] [0320] +13:52:14 [ 15] [ 4] [0320] +13:52:14 [ 18] [ 4] [6011] +13:52:14 [ 19] [ 3] [418] +13:52:14 [ 32] [ 6] [668899] +13:52:14 [ 35] [ 32] [6213544001355038=491212015503263] +13:52:14 [ 37] [ 12] [507902093330] +13:52:14 [ 38] [ 6] [518429] +13:52:14 [ 39] [ 2] [00] +13:52:14 [ 41] [ 8] [03020021] +13:52:14 [ 49] [ 3] [418] +13:52:14 [ 54] [ 40] [1001418C0000502372541002418C000050237254] +13:52:14 ============================================================================ +13:52:14 Sending to : +13:52:14 ============================================================================ +13:52:14 + + +waiting on router queue for slot.... +13:52:15 ============================================================================ +13:52:15 Slot Id : <99> +13:52:15 Transaction Type : RESPONSE +13:52:15 Received From : +13:52:15 ============================================================================ +13:52:15 FNo. Len. Field Value +13:52:15 ============================================================================ +13:52:15 [ 1] [ 4] [0210] +13:52:15 [ 2] [ 16] [6213544001355038] +13:52:15 [ 3] [ 6] [301000] +13:52:15 [ 4] [ 12] [000000000000] +13:52:15 [ 7] [ 10] [0320135004] +13:52:15 [ 11] [ 6] [947579] +13:52:15 [ 12] [ 6] [135004] +13:52:15 [ 13] [ 4] [0320] +13:52:15 [ 15] [ 4] [0320] +13:52:15 [ 18] [ 4] [6011] +13:52:15 [ 19] [ 3] [418] +13:52:15 [ 32] [ 6] [668899] +13:52:15 [ 35] [ 32] [6213544001355038=491212015503263] +13:52:15 [ 37] [ 12] [507902093330] +13:52:15 [ 38] [ 6] [518429] +13:52:15 [ 39] [ 2] [00] +13:52:15 [ 41] [ 8] [03020021] +13:52:15 [ 49] [ 3] [418] +13:52:15 [ 54] [ 40] [1001418C0000502372541002418C000050237254] +13:52:15 ============================================================================ +13:52:15 Calculate Source COMM Id = 4 +13:52:15 ============================================================================ +13:52:15 + + +waiting on router queue for slot.... +13:52:16 ============================================================================ +13:52:16 Slot Id : <56> +13:52:16 Transaction Type : REQUEST +13:52:16 Received From : +13:52:16 ============================================================================ +13:52:16 FNo. Len. Field Value +13:52:16 ============================================================================ +13:52:16 [ 1] [ 4] [0800] +13:52:16 [ 7] [ 10] [0320065121] +13:52:16 [ 11] [ 6] [156656] +13:52:16 [ 70] [ 3] [301] +13:52:16 ============================================================================ +13:52:16 + + +waiting on router queue for slot.... +13:52:16 Sending to : +13:52:16 ============================================================================ +13:52:16 ============================================================================ +13:52:16 Slot Id : <56> +13:52:16 Transaction Type : RESPONSE +13:52:16 Received From : +13:52:16 ============================================================================ +13:52:16 FNo. Len. Field Value +13:52:16 ============================================================================ +13:52:16 [ 1] [ 4] [0810] +13:52:16 [ 7] [ 10] [0320065121] +13:52:16 [ 11] [ 6] [156656] +13:52:16 [ 39] [ 2] [00] +13:52:16 [ 70] [ 3] [301] +13:52:16 ============================================================================ +13:52:16 Calculate Source COMM Id = 2 +13:52:16 ============================================================================ +13:52:16 + + +waiting on router queue for slot.... +13:52:28 ============================================================================ +13:52:28 Slot Id : <64> +13:52:28 Transaction Type : REQUEST +13:52:28 Received From : +13:52:28 ============================================================================ +13:52:28 FNo. Len. Field Value +13:52:28 ============================================================================ +13:52:28 [ 1] [ 4] [0800] +13:52:28 [ 2] [ 5] [02531] +13:52:28 [ 3] [ 6] [579138] +13:52:28 [ 7] [ 10] [0320065228] +13:52:28 [ 11] [ 6] [807217] +13:52:28 [ 15] [ 10] [0320065228] +13:52:28 [ 37] [ 11] [57913807217] +13:52:28 [ 70] [ 3] [001] +13:52:28 ============================================================================ +13:52:28 + + +waiting on router queue for slot.... +13:52:28 ============================================================================ +13:52:28 Slot Id : <64> +13:52:28 Transaction Type : RESPONSE +13:52:28 Received From : +13:52:28 ============================================================================ +13:52:28 FNo. Len. Field Value +13:52:28 ============================================================================ +13:52:28 [ 1] [ 4] [0810] +13:52:28 [ 7] [ 10] [0320065228] +13:52:28 [ 11] [ 6] [807217] +13:52:28 [ 15] [ 4] [0320] +13:52:28 [ 37] [ 12] [57913807217] +13:52:28 [ 39] [ 2] [00] +13:52:28 [ 70] [ 3] [001] +13:52:28 ============================================================================ +13:52:28 Sending to : +13:52:28 ============================================================================ +13:52:28 + + +waiting on router queue for slot.... +13:52:30 ============================================================================ +13:52:30 Slot Id : <82> +13:52:30 Transaction Type : REQUEST +13:52:30 Received From : +13:52:30 ============================================================================ +13:52:30 FNo. Len. Field Value +13:52:30 ============================================================================ +13:52:30 [ 1] [ 4] [0800] +13:52:30 [ 7] [ 10] [0320065137] +13:52:30 [ 11] [ 6] [156657] +13:52:30 [ 70] [ 3] [301] +13:52:30 ============================================================================ +13:52:30 + + +waiting on router queue for slot.... +13:52:30 Sending to : +13:52:30 ============================================================================ +13:52:30 ============================================================================ +13:52:30 Slot Id : <82> +13:52:30 Transaction Type : RESPONSE +13:52:30 Received From : +13:52:30 ============================================================================ +13:52:30 FNo. Len. Field Value +13:52:30 ============================================================================ +13:52:30 [ 1] [ 4] [0810] +13:52:30 [ 7] [ 10] [0320065137] +13:52:30 [ 11] [ 6] [156657] +13:52:30 [ 39] [ 2] [00] +13:52:30 [ 70] [ 3] [301] +13:52:30 ============================================================================ +13:52:30 Calculate Source COMM Id = 2 +13:52:30 ============================================================================ +13:52:30 + + +waiting on router queue for slot.... +13:52:37 ============================================================================ +13:52:37 Slot Id : <93> +13:52:37 Transaction Type : REQUEST +13:52:37 Received From : +13:52:37 ============================================================================ +13:52:37 FNo. Len. Field Value +13:52:37 ============================================================================ +13:52:37 [ 1] [ 4] [0200] +13:52:37 [ 2] [ 16] [6213544001355038] +13:52:37 [ 3] [ 6] [301000] +13:52:37 [ 4] [ 12] [000000000000] +13:52:37 [ 7] [ 10] [0320135028] +13:52:37 [ 11] [ 6] [947596] +13:52:37 [ 12] [ 6] [135028] +13:52:37 [ 13] [ 4] [0320] +13:52:37 [ 15] [ 4] [0320] +13:52:37 [ 18] [ 4] [6011] +13:52:37 [ 19] [ 3] [418] +13:52:37 [ 22] [ 3] [021] +13:52:37 [ 25] [ 2] [01] +13:52:37 [ 28] [ 9] [D00000000] +13:52:37 [ 32] [ 6] [668899] +13:52:37 [ 35] [ 32] [6213544001355038=491212015503263] +13:52:37 [ 37] [ 12] [507902093331] +13:52:37 [ 41] [ 8] [03020021] +13:52:37 [ 42] [ 15] [APT ] +13:52:37 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +13:52:37 [ 49] [ 3] [418] +13:52:37 [ 52] [ 16] [297EA9CF91901BE2] +13:52:37 ============================================================================ +13:52:37 + + +waiting on router queue for slot.... +13:52:37 Sending to : +13:52:37 ============================================================================ +13:52:37 Sending to : +13:52:37 ============================================================================ +13:52:38 ============================================================================ +13:52:38 Slot Id : <93> +13:52:38 Transaction Type : REQUEST +13:52:38 Received From : +13:52:38 ============================================================================ +13:52:38 FNo. Len. Field Value +13:52:38 ============================================================================ +13:52:38 [ 1] [ 4] [0200] +13:52:38 [ 2] [ 16] [6213544001355038] +13:52:38 [ 3] [ 6] [301000] +13:52:38 [ 4] [ 12] [000000000000] +13:52:38 [ 7] [ 10] [0320135028] +13:52:38 [ 11] [ 6] [947596] +13:52:38 [ 12] [ 6] [135028] +13:52:38 [ 13] [ 4] [0320] +13:52:38 [ 15] [ 4] [0320] +13:52:38 [ 18] [ 4] [6011] +13:52:38 [ 19] [ 3] [418] +13:52:38 [ 22] [ 3] [021] +13:52:38 [ 25] [ 2] [01] +13:52:38 [ 28] [ 9] [D00000000] +13:52:38 [ 32] [ 6] [668899] +13:52:38 [ 35] [ 32] [6213544001355038=491212015503263] +13:52:38 [ 37] [ 12] [507902093331] +13:52:38 [ 41] [ 8] [03020021] +13:52:38 [ 42] [ 15] [APT ] +13:52:38 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +13:52:38 [ 49] [ 3] [418] +13:52:38 [ 52] [ 16] [297EA9CF91901BE2] +13:52:38 ============================================================================ +13:52:38 + + +waiting on router queue for slot.... +13:52:38 Sending to : +13:52:38 ============================================================================ +13:52:38 ============================================================================ +13:52:38 Slot Id : <93> +13:52:38 Transaction Type : REQUEST +13:52:38 Received From : +13:52:38 ============================================================================ +13:52:38 FNo. Len. Field Value +13:52:38 ============================================================================ +13:52:38 [ 1] [ 4] [0200] +13:52:38 [ 2] [ 16] [6213544001355038] +13:52:38 [ 3] [ 6] [301000] +13:52:38 [ 4] [ 12] [000000000000] +13:52:38 [ 7] [ 10] [0320135028] +13:52:38 [ 11] [ 6] [947596] +13:52:38 [ 12] [ 6] [135028] +13:52:38 [ 13] [ 4] [0320] +13:52:38 [ 15] [ 4] [0320] +13:52:38 [ 18] [ 4] [6011] +13:52:38 [ 19] [ 3] [418] +13:52:38 [ 22] [ 3] [021] +13:52:38 [ 25] [ 2] [01] +13:52:38 [ 28] [ 9] [D00000000] +13:52:38 [ 32] [ 6] [668899] +13:52:38 [ 35] [ 32] [6213544001355038=491212015503263] +13:52:38 [ 37] [ 12] [507902093331] +13:52:38 [ 41] [ 8] [03020021] +13:52:38 [ 42] [ 15] [APT ] +13:52:38 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +13:52:38 [ 49] [ 3] [418] +13:52:38 [ 52] [ 16] [6EDF6916694E6198] +13:52:38 ============================================================================ +13:52:38 + + +waiting on router queue for slot.... +13:52:38 Sending to : <0> +13:52:38 ============================================================================ +13:52:38 ============================================================================ +13:52:38 Slot Id : <93> +13:52:38 Transaction Type : RESPONSE +13:52:38 Received From : +13:52:38 ============================================================================ +13:52:38 FNo. Len. Field Value +13:52:38 ============================================================================ +13:52:38 [ 1] [ 4] [0210] +13:52:38 [ 2] [ 16] [6213544001355038] +13:52:38 [ 3] [ 6] [301000] +13:52:38 [ 4] [ 12] [000000000000] +13:52:38 [ 7] [ 10] [0320135028] +13:52:38 [ 11] [ 6] [947596] +13:52:38 [ 12] [ 6] [135028] +13:52:38 [ 13] [ 4] [0320] +13:52:38 [ 15] [ 4] [0320] +13:52:38 [ 18] [ 4] [6011] +13:52:38 [ 19] [ 3] [418] +13:52:38 [ 32] [ 6] [668899] +13:52:38 [ 35] [ 32] [6213544001355038=491212015503263] +13:52:38 [ 37] [ 12] [507902093331] +13:52:38 [ 38] [ 6] [530731] +13:52:38 [ 39] [ 2] [00] +13:52:38 [ 41] [ 8] [03020021] +13:52:38 [ 49] [ 3] [418] +13:52:38 [ 54] [ 40] [1001418C0000502372541002418C000050237254] +13:52:38 ============================================================================ +13:52:38 Sending to : +13:52:38 ============================================================================ +13:52:38 + + +waiting on router queue for slot.... +13:52:38 ============================================================================ +13:52:38 Slot Id : <100> +13:52:38 Transaction Type : REQUEST +13:52:38 Received From : +13:52:38 ============================================================================ +13:52:38 FNo. Len. Field Value +13:52:38 ============================================================================ +13:52:38 [ 1] [ 4] [0200] +13:52:38 [ 2] [ 16] [6213545000206759] +13:52:38 [ 3] [ 6] [010000] +13:52:38 [ 4] [ 12] [000100000000] +13:52:38 [ 7] [ 10] [0320065144] +13:52:38 [ 11] [ 6] [269405] +13:52:38 [ 12] [ 6] [135144] +13:52:38 [ 13] [ 4] [0320] +13:52:38 [ 14] [ 4] [4912] +13:52:38 [ 15] [ 4] [0320] +13:52:38 [ 18] [ 4] [6011] +13:52:38 [ 19] [ 3] [418] +13:52:38 [ 22] [ 3] [021] +13:52:38 [ 25] [ 2] [01] +13:52:38 [ 28] [ 9] [D00002000] +13:52:38 [ 32] [ 6] [180893] +13:52:38 [ 35] [ 32] [6213545000206759=491212010675928] +13:52:38 [ 37] [ 12] [507906269405] +13:52:38 [ 41] [ 8] [0483XKNH] +13:52:38 [ 42] [ 15] [999999 ] +13:52:38 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:52:38 [ 49] [ 3] [418] +13:52:38 [ 52] [ 16] [EB6DBADD83A15A7A] +13:52:38 ============================================================================ +13:52:38 + + +waiting on router queue for slot.... +13:52:38 Sending to : +13:52:38 ============================================================================ +13:52:38 Sending to : +13:52:38 ============================================================================ +13:52:39 ============================================================================ +13:52:39 Slot Id : <100> +13:52:39 Transaction Type : REQUEST +13:52:39 Received From : +13:52:39 ============================================================================ +13:52:39 FNo. Len. Field Value +13:52:39 ============================================================================ +13:52:39 [ 1] [ 4] [0200] +13:52:39 [ 2] [ 16] [6213545000206759] +13:52:39 [ 3] [ 6] [010000] +13:52:39 [ 4] [ 12] [000100000000] +13:52:39 [ 7] [ 10] [0320065144] +13:52:39 [ 11] [ 6] [269405] +13:52:39 [ 12] [ 6] [135144] +13:52:39 [ 13] [ 4] [0320] +13:52:39 [ 14] [ 4] [4912] +13:52:39 [ 15] [ 4] [0320] +13:52:39 [ 18] [ 4] [6011] +13:52:39 [ 19] [ 3] [418] +13:52:39 [ 22] [ 3] [021] +13:52:39 [ 25] [ 2] [01] +13:52:39 [ 28] [ 9] [D00002000] +13:52:39 [ 32] [ 6] [180893] +13:52:39 [ 35] [ 32] [6213545000206759=491212010675928] +13:52:39 [ 37] [ 12] [507906269405] +13:52:39 [ 41] [ 8] [0483XKNH] +13:52:39 [ 42] [ 15] [999999 ] +13:52:39 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:52:39 [ 49] [ 3] [418] +13:52:39 [ 52] [ 16] [EB6DBADD83A15A7A] +13:52:39 ============================================================================ +13:52:39 + + +waiting on router queue for slot.... +13:52:39 Sending to : +13:52:39 ============================================================================ +13:52:39 ============================================================================ +13:52:39 Slot Id : <100> +13:52:39 Transaction Type : REQUEST +13:52:39 Received From : +13:52:39 ============================================================================ +13:52:39 FNo. Len. Field Value +13:52:39 ============================================================================ +13:52:39 [ 1] [ 4] [0200] +13:52:39 [ 2] [ 16] [6213545000206759] +13:52:39 [ 3] [ 6] [010000] +13:52:39 [ 4] [ 12] [000100000000] +13:52:39 [ 7] [ 10] [0320065144] +13:52:39 [ 11] [ 6] [269405] +13:52:39 [ 12] [ 6] [135144] +13:52:39 [ 13] [ 4] [0320] +13:52:39 [ 14] [ 4] [4912] +13:52:39 [ 15] [ 4] [0320] +13:52:39 [ 18] [ 4] [6011] +13:52:39 [ 19] [ 3] [418] +13:52:39 [ 22] [ 3] [021] +13:52:39 [ 25] [ 2] [01] +13:52:39 [ 28] [ 9] [D00002000] +13:52:39 [ 32] [ 6] [180893] +13:52:39 [ 35] [ 32] [6213545000206759=491212010675928] +13:52:39 [ 37] [ 12] [507906269405] +13:52:39 [ 41] [ 8] [0483XKNH] +13:52:39 [ 42] [ 15] [999999 ] +13:52:39 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:52:39 [ 49] [ 3] [418] +13:52:39 [ 52] [ 16] [6D16768D16F393F8] +13:52:39 ============================================================================ +13:52:39 + + +waiting on router queue for slot.... +13:52:39 Sending to : <0> +13:52:39 ============================================================================ +13:52:39 ============================================================================ +13:52:39 Slot Id : <100> +13:52:39 Transaction Type : RESPONSE +13:52:39 Received From : +13:52:39 ============================================================================ +13:52:39 FNo. Len. Field Value +13:52:39 ============================================================================ +13:52:39 [ 1] [ 4] [0210] +13:52:39 [ 2] [ 16] [6213545000206759] +13:52:39 [ 3] [ 6] [010000] +13:52:39 [ 4] [ 12] [000100000000] +13:52:39 [ 7] [ 10] [0320065144] +13:52:39 [ 11] [ 6] [269405] +13:52:39 [ 12] [ 6] [135144] +13:52:39 [ 13] [ 4] [0320] +13:52:39 [ 15] [ 4] [0320] +13:52:39 [ 18] [ 4] [6011] +13:52:39 [ 19] [ 3] [418] +13:52:39 [ 32] [ 6] [180893] +13:52:39 [ 35] [ 32] [6213545000206759=491212010675928] +13:52:39 [ 37] [ 12] [507906269405] +13:52:39 [ 38] [ 6] [576339] +13:52:39 [ 39] [ 2] [00] +13:52:39 [ 41] [ 8] [0483XKNH] +13:52:39 [ 49] [ 3] [418] +13:52:39 [ 54] [ 40] [0001418C0005752306390002418C000575230639] +13:52:39 ============================================================================ +13:52:39 Sending to : +13:52:39 ============================================================================ +13:52:39 + + +waiting on router queue for slot.... +13:52:39 ============================================================================ +13:52:39 Slot Id : <93> +13:52:39 Transaction Type : RESPONSE +13:52:39 Received From : +13:52:39 ============================================================================ +13:52:39 FNo. Len. Field Value +13:52:39 ============================================================================ +13:52:39 [ 1] [ 4] [0210] +13:52:39 [ 2] [ 16] [6213544001355038] +13:52:39 [ 3] [ 6] [301000] +13:52:39 [ 4] [ 12] [000000000000] +13:52:39 [ 7] [ 10] [0320135028] +13:52:39 [ 11] [ 6] [947596] +13:52:39 [ 12] [ 6] [135028] +13:52:39 [ 13] [ 4] [0320] +13:52:39 [ 15] [ 4] [0320] +13:52:39 [ 18] [ 4] [6011] +13:52:39 [ 19] [ 3] [418] +13:52:39 [ 32] [ 6] [668899] +13:52:39 [ 35] [ 32] [6213544001355038=491212015503263] +13:52:39 [ 37] [ 12] [507902093331] +13:52:39 [ 38] [ 6] [530731] +13:52:39 [ 39] [ 2] [00] +13:52:39 [ 41] [ 8] [03020021] +13:52:39 [ 49] [ 3] [418] +13:52:39 [ 54] [ 40] [1001418C0000502372541002418C000050237254] +13:52:39 ============================================================================ +13:52:39 Calculate Source COMM Id = 4 +13:52:39 ============================================================================ +13:52:39 + + +waiting on router queue for slot.... +13:52:41 ============================================================================ +13:52:41 Slot Id : <100> +13:52:41 Transaction Type : RESPONSE +13:52:41 Received From : +13:52:41 ============================================================================ +13:52:41 FNo. Len. Field Value +13:52:41 ============================================================================ +13:52:41 [ 1] [ 4] [0210] +13:52:41 [ 2] [ 16] [6213545000206759] +13:52:41 [ 3] [ 6] [010000] +13:52:41 [ 4] [ 12] [000100000000] +13:52:41 [ 7] [ 10] [0320065144] +13:52:41 [ 11] [ 6] [269405] +13:52:41 [ 12] [ 6] [135144] +13:52:41 [ 13] [ 4] [0320] +13:52:41 [ 15] [ 4] [0320] +13:52:41 [ 18] [ 4] [6011] +13:52:41 [ 19] [ 3] [418] +13:52:41 [ 32] [ 6] [180893] +13:52:41 [ 35] [ 32] [6213545000206759=491212010675928] +13:52:41 [ 37] [ 12] [507906269405] +13:52:41 [ 38] [ 6] [576339] +13:52:41 [ 39] [ 2] [00] +13:52:41 [ 41] [ 8] [0483XKNH] +13:52:41 [ 49] [ 3] [418] +13:52:41 [ 54] [ 40] [0001418C0005752306390002418C000575230639] +13:52:41 ============================================================================ +13:52:41 Calculate Source COMM Id = 2 +13:52:41 ============================================================================ +13:52:41 + + +waiting on router queue for slot.... +13:52:46 ============================================================================ +13:52:46 Slot Id : <91> +13:52:46 Transaction Type : REQUEST +13:52:46 Received From : +13:52:46 ============================================================================ +13:52:46 FNo. Len. Field Value +13:52:46 ============================================================================ +13:52:46 [ 1] [ 4] [0200] +13:52:46 [ 2] [ 16] [6213541000537970] +13:52:46 [ 3] [ 6] [010000] +13:52:46 [ 4] [ 12] [000050000000] +13:52:46 [ 7] [ 10] [0320140033] +13:52:46 [ 11] [ 6] [306084] +13:52:46 [ 12] [ 6] [140033] +13:52:46 [ 13] [ 4] [0320] +13:52:46 [ 14] [ 4] [4912] +13:52:46 [ 15] [ 4] [0320] +13:52:46 [ 18] [ 4] [6011] +13:52:46 [ 22] [ 3] [900] +13:52:46 [ 25] [ 2] [02] +13:52:46 [ 28] [ 9] [D00002000] +13:52:46 [ 32] [ 6] [220699] +13:52:46 [ 35] [ 32] [6213541000537970=491212013797034] +13:52:46 [ 37] [ 12] [507900079342] +13:52:46 [ 41] [ 8] [01000700] +13:52:46 [ 42] [ 15] [APTRA ] +13:52:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:52:46 [ 49] [ 3] [418] +13:52:46 [ 52] [ 16] [701CF568C72F27F8] +13:52:46 ============================================================================ +13:52:46 + + +waiting on router queue for slot.... +13:52:46 Sending to : +13:52:46 ============================================================================ +13:52:46 Sending to : +13:52:46 ============================================================================ +13:52:46 ============================================================================ +13:52:46 Slot Id : <91> +13:52:46 Transaction Type : REQUEST +13:52:46 Received From : +13:52:46 ============================================================================ +13:52:46 FNo. Len. Field Value +13:52:46 ============================================================================ +13:52:46 [ 1] [ 4] [0200] +13:52:46 [ 2] [ 16] [6213541000537970] +13:52:46 [ 3] [ 6] [010000] +13:52:46 [ 4] [ 12] [000050000000] +13:52:46 [ 7] [ 10] [0320140033] +13:52:46 [ 11] [ 6] [306084] +13:52:46 [ 12] [ 6] [140033] +13:52:46 [ 13] [ 4] [0320] +13:52:46 [ 14] [ 4] [4912] +13:52:46 [ 15] [ 4] [0320] +13:52:46 [ 18] [ 4] [6011] +13:52:46 [ 22] [ 3] [900] +13:52:46 [ 25] [ 2] [02] +13:52:46 [ 28] [ 9] [D00002000] +13:52:46 [ 32] [ 6] [220699] +13:52:46 [ 35] [ 32] [6213541000537970=491212013797034] +13:52:46 [ 37] [ 12] [507900079342] +13:52:46 [ 41] [ 8] [01000700] +13:52:46 [ 42] [ 15] [APTRA ] +13:52:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:52:46 [ 49] [ 3] [418] +13:52:46 [ 52] [ 16] [701CF568C72F27F8] +13:52:46 ============================================================================ +13:52:46 + + +waiting on router queue for slot.... +13:52:46 Sending to : +13:52:46 ============================================================================ +13:52:46 ============================================================================ +13:52:46 Slot Id : <91> +13:52:46 Transaction Type : REQUEST +13:52:46 Received From : +13:52:46 ============================================================================ +13:52:46 FNo. Len. Field Value +13:52:46 ============================================================================ +13:52:46 [ 1] [ 4] [0200] +13:52:46 [ 2] [ 16] [6213541000537970] +13:52:46 [ 3] [ 6] [010000] +13:52:46 [ 4] [ 12] [000050000000] +13:52:46 [ 7] [ 10] [0320140033] +13:52:46 [ 11] [ 6] [306084] +13:52:46 [ 12] [ 6] [140033] +13:52:46 [ 13] [ 4] [0320] +13:52:46 [ 14] [ 4] [4912] +13:52:46 [ 15] [ 4] [0320] +13:52:46 [ 18] [ 4] [6011] +13:52:46 [ 22] [ 3] [900] +13:52:46 [ 25] [ 2] [02] +13:52:46 [ 28] [ 9] [D00002000] +13:52:46 [ 32] [ 6] [220699] +13:52:46 [ 35] [ 32] [6213541000537970=491212013797034] +13:52:46 [ 37] [ 12] [507900079342] +13:52:46 [ 41] [ 8] [01000700] +13:52:46 [ 42] [ 15] [APTRA ] +13:52:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:52:46 [ 49] [ 3] [418] +13:52:46 [ 52] [ 16] [93CC0E3E4D2F7536] +13:52:46 ============================================================================ +13:52:46 + + +waiting on router queue for slot.... +13:52:46 Sending to : <0> +13:52:46 ============================================================================ +13:52:47 ============================================================================ +13:52:47 Slot Id : <91> +13:52:47 Transaction Type : RESPONSE +13:52:47 Received From : +13:52:47 ============================================================================ +13:52:47 FNo. Len. Field Value +13:52:47 ============================================================================ +13:52:47 [ 1] [ 4] [0210] +13:52:47 [ 2] [ 16] [6213541000537970] +13:52:47 [ 3] [ 6] [010000] +13:52:47 [ 4] [ 12] [000050000000] +13:52:47 [ 7] [ 10] [0320140033] +13:52:47 [ 11] [ 6] [306084] +13:52:47 [ 12] [ 6] [140033] +13:52:47 [ 13] [ 4] [0320] +13:52:47 [ 15] [ 4] [0320] +13:52:47 [ 18] [ 4] [6011] +13:52:47 [ 32] [ 6] [220699] +13:52:47 [ 35] [ 32] [6213541000537970=491212013797034] +13:52:47 [ 37] [ 12] [507900079342] +13:52:47 [ 38] [ 6] [138194] +13:52:47 [ 39] [ 2] [00] +13:52:47 [ 41] [ 8] [01000700] +13:52:47 [ 49] [ 3] [418] +13:52:47 [ 54] [ 40] [0001418C0000056027380002418C000005602738] +13:52:47 ============================================================================ +13:52:47 Sending to : +13:52:47 ============================================================================ +13:52:47 + + +waiting on router queue for slot.... +13:52:48 ============================================================================ +13:52:48 Slot Id : <91> +13:52:48 Transaction Type : RESPONSE +13:52:48 Received From : +13:52:48 ============================================================================ +13:52:48 FNo. Len. Field Value +13:52:48 ============================================================================ +13:52:48 [ 1] [ 4] [0210] +13:52:48 [ 2] [ 16] [6213541000537970] +13:52:48 [ 3] [ 6] [010000] +13:52:48 [ 4] [ 12] [000050000000] +13:52:48 [ 7] [ 10] [0320140033] +13:52:48 [ 11] [ 6] [306084] +13:52:48 [ 12] [ 6] [140033] +13:52:48 [ 13] [ 4] [0320] +13:52:48 [ 15] [ 4] [0320] +13:52:48 [ 18] [ 4] [6011] +13:52:48 [ 32] [ 6] [220699] +13:52:48 [ 35] [ 32] [6213541000537970=491212013797034] +13:52:48 [ 37] [ 12] [507900079342] +13:52:48 [ 38] [ 6] [138194] +13:52:48 [ 39] [ 2] [00] +13:52:48 [ 41] [ 8] [01000700] +13:52:48 [ 49] [ 3] [418] +13:52:48 [ 54] [ 40] [0001418C0000056027380002418C000005602738] +13:52:48 ============================================================================ +13:52:48 Calculate Source COMM Id = 1 +13:52:48 ============================================================================ +13:52:48 + + +waiting on router queue for slot.... +13:52:56 ============================================================================ +13:52:56 Slot Id : <65> +13:52:56 Transaction Type : REQUEST +13:52:56 Received From : +13:52:56 ============================================================================ +13:52:56 FNo. Len. Field Value +13:52:56 ============================================================================ +13:52:56 [ 1] [ 4] [0800] +13:52:56 [ 7] [ 10] [0320065204] +13:52:56 [ 11] [ 6] [156658] +13:52:56 [ 70] [ 3] [301] +13:52:56 ============================================================================ +13:52:56 + + +waiting on router queue for slot.... +13:52:56 Sending to : +13:52:56 ============================================================================ +13:52:56 ============================================================================ +13:52:56 Slot Id : <65> +13:52:56 Transaction Type : RESPONSE +13:52:56 Received From : +13:52:56 ============================================================================ +13:52:56 FNo. Len. Field Value +13:52:56 ============================================================================ +13:52:56 [ 1] [ 4] [0810] +13:52:56 [ 7] [ 10] [0320065204] +13:52:56 [ 11] [ 6] [156658] +13:52:56 [ 39] [ 2] [00] +13:52:56 [ 70] [ 3] [301] +13:52:56 ============================================================================ +13:52:56 Calculate Source COMM Id = 2 +13:52:56 ============================================================================ +13:52:56 + + +waiting on router queue for slot.... +13:53:07 ============================================================================ +13:53:07 Slot Id : <72> +13:53:07 Transaction Type : REQUEST +13:53:07 Received From : +13:53:07 ============================================================================ +13:53:07 FNo. Len. Field Value +13:53:07 ============================================================================ +13:53:07 [ 1] [ 4] [0800] +13:53:07 [ 7] [ 10] [0320065215] +13:53:07 [ 11] [ 6] [156659] +13:53:07 [ 70] [ 3] [301] +13:53:07 ============================================================================ +13:53:07 + + +waiting on router queue for slot.... +13:53:07 Sending to : +13:53:07 ============================================================================ +13:53:07 ============================================================================ +13:53:07 Slot Id : <72> +13:53:07 Transaction Type : RESPONSE +13:53:07 Received From : +13:53:07 ============================================================================ +13:53:07 FNo. Len. Field Value +13:53:07 ============================================================================ +13:53:07 [ 1] [ 4] [0810] +13:53:07 [ 7] [ 10] [0320065215] +13:53:07 [ 11] [ 6] [156659] +13:53:07 [ 39] [ 2] [00] +13:53:07 [ 70] [ 3] [301] +13:53:07 ============================================================================ +13:53:07 Calculate Source COMM Id = 2 +13:53:07 ============================================================================ +13:53:07 + + +waiting on router queue for slot.... +13:53:15 ============================================================================ +13:53:15 Slot Id : <106> +13:53:15 Transaction Type : REQUEST +13:53:15 Received From : +13:53:15 ============================================================================ +13:53:15 FNo. Len. Field Value +13:53:15 ============================================================================ +13:53:15 [ 1] [ 4] [0200] +13:53:15 [ 2] [ 16] [1808930600037402] +13:53:15 [ 3] [ 6] [011000] +13:53:15 [ 4] [ 12] [000020000000] +13:53:15 [ 7] [ 10] [0320135311] +13:53:15 [ 11] [ 6] [763000] +13:53:15 [ 12] [ 6] [135311] +13:53:15 [ 13] [ 4] [0320] +13:53:15 [ 15] [ 4] [0320] +13:53:15 [ 18] [ 4] [6011] +13:53:15 [ 22] [ 3] [900] +13:53:15 [ 25] [ 2] [02] +13:53:15 [ 28] [ 9] [D00002000] +13:53:15 [ 32] [ 6] [621354] +13:53:15 [ 35] [ 27] [1808930600037402=1803500799] +13:53:15 [ 37] [ 12] [507904273266] +13:53:15 [ 41] [ 8] [03002600] +13:53:15 [ 42] [ 15] [NATIVE ] +13:53:15 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +13:53:15 [ 49] [ 3] [418] +13:53:15 [ 52] [ 16] [7AFCE236F833F073] +13:53:15 ============================================================================ +13:53:15 + + +waiting on router queue for slot.... +13:53:15 Sending to : +13:53:15 ============================================================================ +13:53:15 Sending to : +13:53:15 ============================================================================ +13:53:16 ============================================================================ +13:53:16 Slot Id : <106> +13:53:16 Transaction Type : REQUEST +13:53:16 Received From : +13:53:16 ============================================================================ +13:53:16 FNo. Len. Field Value +13:53:16 ============================================================================ +13:53:16 [ 1] [ 4] [0200] +13:53:16 [ 2] [ 16] [1808930600037402] +13:53:16 [ 3] [ 6] [011000] +13:53:16 [ 4] [ 12] [000020000000] +13:53:16 [ 7] [ 10] [0320135311] +13:53:16 [ 11] [ 6] [763000] +13:53:16 [ 12] [ 6] [135311] +13:53:16 [ 13] [ 4] [0320] +13:53:16 [ 15] [ 4] [0320] +13:53:16 [ 18] [ 4] [6011] +13:53:16 [ 22] [ 3] [900] +13:53:16 [ 25] [ 2] [02] +13:53:16 [ 28] [ 9] [D00002000] +13:53:16 [ 32] [ 6] [621354] +13:53:16 [ 35] [ 27] [1808930600037402=1803500799] +13:53:16 [ 37] [ 12] [507904273266] +13:53:16 [ 41] [ 8] [03002600] +13:53:16 [ 42] [ 15] [NATIVE ] +13:53:16 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +13:53:16 [ 49] [ 3] [418] +13:53:16 [ 52] [ 16] [7AFCE236F833F073] +13:53:16 ============================================================================ +13:53:16 + + +waiting on router queue for slot.... +13:53:16 Sending to : +13:53:16 ============================================================================ +13:53:16 ============================================================================ +13:53:16 Slot Id : <106> +13:53:16 Transaction Type : REQUEST +13:53:16 Received From : +13:53:16 ============================================================================ +13:53:16 FNo. Len. Field Value +13:53:16 ============================================================================ +13:53:16 [ 1] [ 4] [0200] +13:53:16 [ 2] [ 16] [1808930600037402] +13:53:16 [ 3] [ 6] [011000] +13:53:16 [ 4] [ 12] [000020000000] +13:53:16 [ 7] [ 10] [0320135311] +13:53:16 [ 11] [ 6] [763000] +13:53:16 [ 12] [ 6] [135311] +13:53:16 [ 13] [ 4] [0320] +13:53:16 [ 15] [ 4] [0320] +13:53:16 [ 18] [ 4] [6011] +13:53:16 [ 22] [ 3] [900] +13:53:16 [ 25] [ 2] [02] +13:53:16 [ 28] [ 9] [D00002000] +13:53:16 [ 32] [ 6] [621354] +13:53:16 [ 35] [ 27] [1808930600037402=1803500799] +13:53:16 [ 37] [ 12] [507904273266] +13:53:16 [ 41] [ 8] [03002600] +13:53:16 [ 42] [ 15] [NATIVE ] +13:53:16 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +13:53:16 [ 49] [ 3] [418] +13:53:16 [ 52] [ 16] [4A27126FE03225BD] +13:53:16 ============================================================================ +13:53:16 + + +waiting on router queue for slot.... +13:53:16 Sending to : <2> +13:53:16 ============================================================================ +13:53:20 ============================================================================ +13:53:20 Slot Id : <106> +13:53:20 Transaction Type : RESPONSE +13:53:20 Received From : +13:53:20 ============================================================================ +13:53:20 FNo. Len. Field Value +13:53:20 ============================================================================ +13:53:20 [ 1] [ 4] [0210] +13:53:20 [ 2] [ 16] [1808930600037402] +13:53:20 [ 3] [ 6] [011000] +13:53:20 [ 4] [ 12] [000020000000] +13:53:20 [ 6] [ 12] [000020000000] +13:53:20 [ 7] [ 10] [0320135311] +13:53:20 [ 11] [ 6] [763000] +13:53:20 [ 12] [ 6] [135311] +13:53:20 [ 13] [ 4] [0320] +13:53:20 [ 18] [ 4] [6011] +13:53:20 [ 19] [ 3] [418] +13:53:20 [ 22] [ 3] [021] +13:53:20 [ 32] [ 6] [621354] +13:53:20 [ 35] [ 27] [1808930600037402=1803500799] +13:53:20 [ 37] [ 12] [507904273266] +13:53:20 [ 38] [ 6] [763000] +13:53:20 [ 39] [ 2] [00] +13:53:20 [ 41] [ 8] [03002600] +13:53:20 [ 49] [ 3] [418] +13:53:20 [ 52] [ 16] [4A27126FE03225BD] +13:53:20 [ 54] [ 20] [1001418C000047346900] +13:53:20 ============================================================================ +13:53:20 Sending to : +13:53:20 ============================================================================ +13:53:20 + + +waiting on router queue for slot.... +13:53:22 ============================================================================ +13:53:22 Slot Id : <106> +13:53:22 Transaction Type : RESPONSE +13:53:22 Received From : +13:53:22 ============================================================================ +13:53:22 FNo. Len. Field Value +13:53:22 ============================================================================ +13:53:22 [ 1] [ 4] [0210] +13:53:22 [ 2] [ 16] [1808930600037402] +13:53:22 [ 3] [ 6] [011000] +13:53:22 [ 4] [ 12] [000020000000] +13:53:22 [ 6] [ 12] [000020000000] +13:53:22 [ 7] [ 10] [0320135311] +13:53:22 [ 11] [ 6] [763000] +13:53:22 [ 12] [ 6] [135311] +13:53:22 [ 13] [ 4] [0320] +13:53:22 [ 18] [ 4] [6011] +13:53:22 [ 19] [ 3] [418] +13:53:22 [ 22] [ 3] [021] +13:53:22 [ 32] [ 6] [621354] +13:53:22 [ 35] [ 27] [1808930600037402=1803500799] +13:53:22 [ 37] [ 12] [507904273266] +13:53:22 [ 38] [ 6] [763000] +13:53:22 [ 39] [ 2] [00] +13:53:22 [ 41] [ 8] [03002600] +13:53:22 [ 49] [ 3] [418] +13:53:22 [ 52] [ 16] [4A27126FE03225BD] +13:53:22 [ 54] [ 20] [1001418C000047346900] +13:53:22 ============================================================================ +13:53:22 Calculate Source COMM Id = 0 +13:53:22 ============================================================================ +13:53:22 + + +waiting on router queue for slot.... +13:53:28 ============================================================================ +13:53:28 Slot Id : <66> +13:53:28 Transaction Type : REQUEST +13:53:28 Received From : +13:53:28 ============================================================================ +13:53:28 FNo. Len. Field Value +13:53:28 ============================================================================ +13:53:28 [ 1] [ 4] [0200] +13:53:28 [ 2] [ 16] [6213545000206759] +13:53:28 [ 3] [ 6] [010000] +13:53:28 [ 4] [ 12] [000100000000] +13:53:28 [ 7] [ 10] [0320065235] +13:53:28 [ 11] [ 6] [269411] +13:53:28 [ 12] [ 6] [135235] +13:53:28 [ 13] [ 4] [0320] +13:53:28 [ 14] [ 4] [4912] +13:53:28 [ 15] [ 4] [0320] +13:53:28 [ 18] [ 4] [6011] +13:53:28 [ 19] [ 3] [418] +13:53:28 [ 22] [ 3] [021] +13:53:28 [ 25] [ 2] [01] +13:53:28 [ 28] [ 9] [D00002000] +13:53:28 [ 32] [ 6] [180893] +13:53:28 [ 35] [ 32] [6213545000206759=491212010675928] +13:53:28 [ 37] [ 12] [507906269411] +13:53:28 [ 41] [ 8] [0483XKNH] +13:53:28 [ 42] [ 15] [999999 ] +13:53:28 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:53:28 [ 49] [ 3] [418] +13:53:28 [ 52] [ 16] [EB6DBADD83A15A7A] +13:53:28 ============================================================================ +13:53:28 + + +waiting on router queue for slot.... +13:53:28 Sending to : +13:53:28 ============================================================================ +13:53:28 Sending to : +13:53:28 ============================================================================ +13:53:28 ============================================================================ +13:53:28 Slot Id : <76> +13:53:28 Transaction Type : REQUEST +13:53:28 Received From : +13:53:28 ============================================================================ +13:53:28 FNo. Len. Field Value +13:53:28 ============================================================================ +13:53:28 [ 1] [ 4] [0800] +13:53:28 [ 7] [ 10] [0320065236] +13:53:28 [ 11] [ 6] [156660] +13:53:28 [ 70] [ 3] [301] +13:53:28 ============================================================================ +13:53:28 + + +waiting on router queue for slot.... +13:53:28 Sending to : +13:53:28 ============================================================================ +13:53:28 ============================================================================ +13:53:28 Slot Id : <76> +13:53:28 Transaction Type : RESPONSE +13:53:28 Received From : +13:53:28 ============================================================================ +13:53:28 FNo. Len. Field Value +13:53:28 ============================================================================ +13:53:28 [ 1] [ 4] [0810] +13:53:28 [ 7] [ 10] [0320065236] +13:53:28 [ 11] [ 6] [156660] +13:53:28 [ 39] [ 2] [00] +13:53:28 [ 70] [ 3] [301] +13:53:28 ============================================================================ +13:53:28 Calculate Source COMM Id = 2 +13:53:28 ============================================================================ +13:53:28 + + +waiting on router queue for slot.... +13:53:29 ============================================================================ +13:53:29 Slot Id : <66> +13:53:29 Transaction Type : REQUEST +13:53:29 Received From : +13:53:29 ============================================================================ +13:53:29 FNo. Len. Field Value +13:53:29 ============================================================================ +13:53:29 [ 1] [ 4] [0200] +13:53:29 [ 2] [ 16] [6213545000206759] +13:53:29 [ 3] [ 6] [010000] +13:53:29 [ 4] [ 12] [000100000000] +13:53:29 [ 7] [ 10] [0320065235] +13:53:29 [ 11] [ 6] [269411] +13:53:29 [ 12] [ 6] [135235] +13:53:29 [ 13] [ 4] [0320] +13:53:29 [ 14] [ 4] [4912] +13:53:29 [ 15] [ 4] [0320] +13:53:29 [ 18] [ 4] [6011] +13:53:29 [ 19] [ 3] [418] +13:53:29 [ 22] [ 3] [021] +13:53:29 [ 25] [ 2] [01] +13:53:29 [ 28] [ 9] [D00002000] +13:53:29 [ 32] [ 6] [180893] +13:53:29 [ 35] [ 32] [6213545000206759=491212010675928] +13:53:29 [ 37] [ 12] [507906269411] +13:53:29 [ 41] [ 8] [0483XKNH] +13:53:29 [ 42] [ 15] [999999 ] +13:53:29 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:53:29 [ 49] [ 3] [418] +13:53:29 [ 52] [ 16] [EB6DBADD83A15A7A] +13:53:29 ============================================================================ +13:53:29 + + +waiting on router queue for slot.... +13:53:29 Sending to : +13:53:29 ============================================================================ +13:53:29 ============================================================================ +13:53:29 Slot Id : <66> +13:53:29 Transaction Type : REQUEST +13:53:29 Received From : +13:53:29 ============================================================================ +13:53:29 FNo. Len. Field Value +13:53:29 ============================================================================ +13:53:29 [ 1] [ 4] [0200] +13:53:29 [ 2] [ 16] [6213545000206759] +13:53:29 [ 3] [ 6] [010000] +13:53:29 [ 4] [ 12] [000100000000] +13:53:29 [ 7] [ 10] [0320065235] +13:53:29 [ 11] [ 6] [269411] +13:53:29 [ 12] [ 6] [135235] +13:53:29 [ 13] [ 4] [0320] +13:53:29 [ 14] [ 4] [4912] +13:53:29 [ 15] [ 4] [0320] +13:53:29 [ 18] [ 4] [6011] +13:53:29 [ 19] [ 3] [418] +13:53:29 [ 22] [ 3] [021] +13:53:29 [ 25] [ 2] [01] +13:53:29 [ 28] [ 9] [D00002000] +13:53:29 [ 32] [ 6] [180893] +13:53:29 [ 35] [ 32] [6213545000206759=491212010675928] +13:53:29 [ 37] [ 12] [507906269411] +13:53:29 [ 41] [ 8] [0483XKNH] +13:53:29 [ 42] [ 15] [999999 ] +13:53:29 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:53:29 [ 49] [ 3] [418] +13:53:29 [ 52] [ 16] [6D16768D16F393F8] +13:53:29 ============================================================================ +13:53:29 + + +waiting on router queue for slot.... +13:53:29 Sending to : <0> +13:53:29 ============================================================================ +13:53:29 ============================================================================ +13:53:29 Slot Id : <66> +13:53:29 Transaction Type : RESPONSE +13:53:29 Received From : +13:53:29 ============================================================================ +13:53:29 FNo. Len. Field Value +13:53:29 ============================================================================ +13:53:29 [ 1] [ 4] [0210] +13:53:29 [ 2] [ 16] [6213545000206759] +13:53:29 [ 3] [ 6] [010000] +13:53:29 [ 4] [ 12] [000100000000] +13:53:29 [ 7] [ 10] [0320065235] +13:53:29 [ 11] [ 6] [269411] +13:53:29 [ 12] [ 6] [135235] +13:53:29 [ 13] [ 4] [0320] +13:53:29 [ 15] [ 4] [0320] +13:53:29 [ 18] [ 4] [6011] +13:53:29 [ 19] [ 3] [418] +13:53:29 [ 32] [ 6] [180893] +13:53:29 [ 35] [ 32] [6213545000206759=491212010675928] +13:53:29 [ 37] [ 12] [507906269411] +13:53:29 [ 38] [ 6] [632313] +13:53:29 [ 39] [ 2] [00] +13:53:29 [ 41] [ 8] [0483XKNH] +13:53:29 [ 49] [ 3] [418] +13:53:29 [ 54] [ 40] [0001418C0004750306390002418C000475030639] +13:53:29 ============================================================================ +13:53:29 Sending to : +13:53:29 ============================================================================ +13:53:29 + + +waiting on router queue for slot.... +13:53:30 ============================================================================ +13:53:30 Slot Id : <114> +13:53:30 Transaction Type : REQUEST +13:53:30 Received From : +13:53:30 ============================================================================ +13:53:30 FNo. Len. Field Value +13:53:30 ============================================================================ +13:53:30 [ 1] [ 4] [0800] +13:53:30 [ 2] [ 5] [02531] +13:53:30 [ 3] [ 6] [579138] +13:53:30 [ 7] [ 10] [0320065330] +13:53:30 [ 11] [ 6] [807218] +13:53:30 [ 15] [ 10] [0320065330] +13:53:30 [ 37] [ 11] [57913807218] +13:53:30 [ 70] [ 3] [001] +13:53:30 ============================================================================ +13:53:30 + + +waiting on router queue for slot.... +13:53:30 ============================================================================ +13:53:30 Slot Id : <114> +13:53:30 Transaction Type : RESPONSE +13:53:30 Received From : +13:53:30 ============================================================================ +13:53:30 FNo. Len. Field Value +13:53:30 ============================================================================ +13:53:30 [ 1] [ 4] [0810] +13:53:30 [ 7] [ 10] [0320065330] +13:53:30 [ 11] [ 6] [807218] +13:53:30 [ 15] [ 4] [0320] +13:53:30 [ 37] [ 12] [57913807218] +13:53:30 [ 39] [ 2] [00] +13:53:30 [ 70] [ 3] [001] +13:53:30 ============================================================================ +13:53:30 Sending to : +13:53:30 ============================================================================ +13:53:30 + + +waiting on router queue for slot.... +13:53:31 ============================================================================ +13:53:31 Slot Id : <66> +13:53:31 Transaction Type : RESPONSE +13:53:31 Received From : +13:53:31 ============================================================================ +13:53:31 FNo. Len. Field Value +13:53:31 ============================================================================ +13:53:31 [ 1] [ 4] [0210] +13:53:31 [ 2] [ 16] [6213545000206759] +13:53:31 [ 3] [ 6] [010000] +13:53:31 [ 4] [ 12] [000100000000] +13:53:31 [ 7] [ 10] [0320065235] +13:53:31 [ 11] [ 6] [269411] +13:53:31 [ 12] [ 6] [135235] +13:53:31 [ 13] [ 4] [0320] +13:53:31 [ 15] [ 4] [0320] +13:53:31 [ 18] [ 4] [6011] +13:53:31 [ 19] [ 3] [418] +13:53:31 [ 32] [ 6] [180893] +13:53:31 [ 35] [ 32] [6213545000206759=491212010675928] +13:53:31 [ 37] [ 12] [507906269411] +13:53:31 [ 38] [ 6] [632313] +13:53:31 [ 39] [ 2] [00] +13:53:31 [ 41] [ 8] [0483XKNH] +13:53:31 [ 49] [ 3] [418] +13:53:31 [ 54] [ 40] [0001418C0004750306390002418C000475030639] +13:53:31 ============================================================================ +13:53:31 Calculate Source COMM Id = 2 +13:53:31 ============================================================================ +13:53:31 + + +waiting on router queue for slot.... +13:53:45 ============================================================================ +13:53:45 Slot Id : <90> +13:53:45 Transaction Type : REQUEST +13:53:45 Received From : +13:53:45 ============================================================================ +13:53:45 FNo. Len. Field Value +13:53:45 ============================================================================ +13:53:45 [ 1] [ 4] [0800] +13:53:45 [ 7] [ 10] [0320065253] +13:53:45 [ 11] [ 6] [156661] +13:53:45 [ 70] [ 3] [301] +13:53:45 ============================================================================ +13:53:45 + + +waiting on router queue for slot.... +13:53:45 Sending to : +13:53:45 ============================================================================ +13:53:45 ============================================================================ +13:53:45 Slot Id : <90> +13:53:45 Transaction Type : RESPONSE +13:53:45 Received From : +13:53:45 ============================================================================ +13:53:45 FNo. Len. Field Value +13:53:45 ============================================================================ +13:53:45 [ 1] [ 4] [0810] +13:53:45 [ 7] [ 10] [0320065253] +13:53:45 [ 11] [ 6] [156661] +13:53:45 [ 39] [ 2] [00] +13:53:45 [ 70] [ 3] [301] +13:53:45 ============================================================================ +13:53:45 Calculate Source COMM Id = 2 +13:53:45 ============================================================================ +13:53:45 + + +waiting on router queue for slot.... +13:53:48 ============================================================================ +13:53:48 Slot Id : <83> +13:53:48 Transaction Type : REQUEST +13:53:48 Received From : +13:53:48 ============================================================================ +13:53:48 FNo. Len. Field Value +13:53:48 ============================================================================ +13:53:48 [ 1] [ 4] [0200] +13:53:48 [ 2] [ 16] [6688990601487208] +13:53:48 [ 3] [ 6] [011000] +13:53:48 [ 4] [ 12] [000100000000] +13:53:48 [ 7] [ 10] [0320135344] +13:53:48 [ 11] [ 6] [763152] +13:53:48 [ 12] [ 6] [135344] +13:53:48 [ 13] [ 4] [0320] +13:53:48 [ 15] [ 4] [0320] +13:53:48 [ 18] [ 4] [6011] +13:53:48 [ 22] [ 3] [900] +13:53:48 [ 25] [ 2] [02] +13:53:48 [ 28] [ 9] [D00002000] +13:53:48 [ 32] [ 6] [621354] +13:53:48 [ 35] [ 37] [6688990601487208=41090061720842200000] +13:53:48 [ 37] [ 12] [507904153938] +13:53:48 [ 41] [ 8] [20001000] +13:53:48 [ 42] [ 15] [NATIVE ] +13:53:48 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:53:48 [ 49] [ 3] [418] +13:53:48 [ 52] [ 16] [372F561A1184F840] +13:53:48 ============================================================================ +13:53:48 + + +waiting on router queue for slot.... +13:53:48 Sending to : +13:53:48 ============================================================================ +13:53:48 Sending to : +13:53:48 ============================================================================ +13:53:49 ============================================================================ +13:53:49 Slot Id : <83> +13:53:49 Transaction Type : REQUEST +13:53:49 Received From : +13:53:49 ============================================================================ +13:53:49 FNo. Len. Field Value +13:53:49 ============================================================================ +13:53:49 [ 1] [ 4] [0200] +13:53:49 [ 2] [ 16] [6688990601487208] +13:53:49 [ 3] [ 6] [011000] +13:53:49 [ 4] [ 12] [000100000000] +13:53:49 [ 7] [ 10] [0320135344] +13:53:49 [ 11] [ 6] [763152] +13:53:49 [ 12] [ 6] [135344] +13:53:49 [ 13] [ 4] [0320] +13:53:49 [ 15] [ 4] [0320] +13:53:49 [ 18] [ 4] [6011] +13:53:49 [ 22] [ 3] [900] +13:53:49 [ 25] [ 2] [02] +13:53:49 [ 28] [ 9] [D00002000] +13:53:49 [ 32] [ 6] [621354] +13:53:49 [ 35] [ 37] [6688990601487208=41090061720842200000] +13:53:49 [ 37] [ 12] [507904153938] +13:53:49 [ 41] [ 8] [20001000] +13:53:49 [ 42] [ 15] [NATIVE ] +13:53:49 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:53:49 [ 49] [ 3] [418] +13:53:49 [ 52] [ 16] [372F561A1184F840] +13:53:49 ============================================================================ +13:53:49 + + +waiting on router queue for slot.... +13:53:49 Sending to : +13:53:49 ============================================================================ +13:53:49 ============================================================================ +13:53:49 Slot Id : <83> +13:53:49 Transaction Type : REQUEST +13:53:49 Received From : +13:53:49 ============================================================================ +13:53:49 FNo. Len. Field Value +13:53:49 ============================================================================ +13:53:49 [ 1] [ 4] [0200] +13:53:49 [ 2] [ 16] [6688990601487208] +13:53:49 [ 3] [ 6] [011000] +13:53:49 [ 4] [ 12] [000100000000] +13:53:49 [ 7] [ 10] [0320135344] +13:53:49 [ 11] [ 6] [763152] +13:53:49 [ 12] [ 6] [135344] +13:53:49 [ 13] [ 4] [0320] +13:53:49 [ 15] [ 4] [0320] +13:53:49 [ 18] [ 4] [6011] +13:53:49 [ 22] [ 3] [900] +13:53:49 [ 25] [ 2] [02] +13:53:49 [ 28] [ 9] [D00002000] +13:53:49 [ 32] [ 6] [621354] +13:53:49 [ 35] [ 37] [6688990601487208=41090061720842200000] +13:53:49 [ 37] [ 12] [507904153938] +13:53:49 [ 41] [ 8] [20001000] +13:53:49 [ 42] [ 15] [NATIVE ] +13:53:49 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +13:53:49 [ 49] [ 3] [418] +13:53:49 [ 52] [ 16] [D718812133FE9920] +13:53:49 ============================================================================ +13:53:49 + + +waiting on router queue for slot.... +13:53:49 Sending to : <4> +13:53:49 ============================================================================ +13:53:50 ============================================================================ +13:53:50 Slot Id : <83> +13:53:50 Transaction Type : RESPONSE +13:53:50 Received From : +13:53:50 ============================================================================ +13:53:50 FNo. Len. Field Value +13:53:50 ============================================================================ +13:53:50 [ 1] [ 4] [0210] +13:53:50 [ 2] [ 16] [6688990601487208] +13:53:50 [ 3] [ 6] [011000] +13:53:50 [ 4] [ 12] [000100000000] +13:53:50 [ 11] [ 6] [763152] +13:53:50 [ 12] [ 6] [135344] +13:53:50 [ 15] [ 4] [0320] +13:53:50 [ 18] [ 4] [6011] +13:53:50 [ 32] [ 6] [621354] +13:53:50 [ 35] [ 37] [6688990601487208=41090061720842200000] +13:53:50 [ 37] [ 12] [507904153938] +13:53:50 [ 38] [ 6] [648282] +13:53:50 [ 39] [ 2] [00] +13:53:50 [ 41] [ 8] [20001000] +13:53:50 [ 49] [ 3] [418] +13:53:50 [ 54] [ 20] [1002418C000287621647] +13:53:50 ============================================================================ +13:53:50 Sending to : +13:53:50 ============================================================================ +13:53:50 + + +waiting on router queue for slot.... +13:53:52 ============================================================================ +13:53:52 Slot Id : <83> +13:53:52 Transaction Type : RESPONSE +13:53:52 Received From : +13:53:52 ============================================================================ +13:53:52 FNo. Len. Field Value +13:53:52 ============================================================================ +13:53:52 [ 1] [ 4] [0210] +13:53:52 [ 2] [ 16] [6688990601487208] +13:53:52 [ 3] [ 6] [011000] +13:53:52 [ 4] [ 12] [000100000000] +13:53:52 [ 11] [ 6] [763152] +13:53:52 [ 12] [ 6] [135344] +13:53:52 [ 15] [ 4] [0320] +13:53:52 [ 18] [ 4] [6011] +13:53:52 [ 32] [ 6] [621354] +13:53:52 [ 35] [ 37] [6688990601487208=41090061720842200000] +13:53:52 [ 37] [ 12] [507904153938] +13:53:52 [ 38] [ 6] [648282] +13:53:52 [ 39] [ 2] [00] +13:53:52 [ 41] [ 8] [20001000] +13:53:52 [ 49] [ 3] [418] +13:53:52 [ 54] [ 20] [1002418C000287621647] +13:53:52 ============================================================================ +13:53:52 Calculate Source COMM Id = 0 +13:53:52 ============================================================================ +13:53:52 + + +waiting on router queue for slot.... +13:53:55 ============================================================================ +13:53:55 Slot Id : <118> +13:53:55 Transaction Type : REQUEST +13:53:55 Received From : +13:53:55 ============================================================================ +13:53:55 FNo. Len. Field Value +13:53:55 ============================================================================ +13:53:55 [ 1] [ 4] [0800] +13:53:55 [ 7] [ 10] [0320065303] +13:53:55 [ 11] [ 6] [156662] +13:53:55 [ 70] [ 3] [301] +13:53:55 ============================================================================ +13:53:55 + + +waiting on router queue for slot.... +13:53:55 Sending to : +13:53:55 ============================================================================ +13:53:55 ============================================================================ +13:53:55 Slot Id : <118> +13:53:55 Transaction Type : RESPONSE +13:53:55 Received From : +13:53:55 ============================================================================ +13:53:55 FNo. Len. Field Value +13:53:55 ============================================================================ +13:53:55 [ 1] [ 4] [0810] +13:53:55 [ 7] [ 10] [0320065303] +13:53:55 [ 11] [ 6] [156662] +13:53:55 [ 39] [ 2] [00] +13:53:55 [ 70] [ 3] [301] +13:53:55 ============================================================================ +13:53:55 Calculate Source COMM Id = 2 +13:53:55 ============================================================================ +13:53:55 + + +waiting on router queue for slot.... +13:54:05 ============================================================================ +13:54:05 Slot Id : <74> +13:54:05 Transaction Type : REQUEST +13:54:05 Received From : +13:54:05 ============================================================================ +13:54:05 FNo. Len. Field Value +13:54:05 ============================================================================ +13:54:05 [ 1] [ 4] [0800] +13:54:05 [ 7] [ 10] [0320065313] +13:54:05 [ 11] [ 6] [156663] +13:54:05 [ 70] [ 3] [301] +13:54:05 ============================================================================ +13:54:05 + + +waiting on router queue for slot.... +13:54:05 Sending to : +13:54:05 ============================================================================ +13:54:05 ============================================================================ +13:54:05 Slot Id : <74> +13:54:05 Transaction Type : RESPONSE +13:54:05 Received From : +13:54:05 ============================================================================ +13:54:05 FNo. Len. Field Value +13:54:05 ============================================================================ +13:54:05 [ 1] [ 4] [0810] +13:54:05 [ 7] [ 10] [0320065313] +13:54:05 [ 11] [ 6] [156663] +13:54:05 [ 39] [ 2] [00] +13:54:05 [ 70] [ 3] [301] +13:54:05 ============================================================================ +13:54:05 Calculate Source COMM Id = 2 +13:54:05 ============================================================================ +13:54:05 + + +waiting on router queue for slot.... +13:54:14 ============================================================================ +13:54:14 Slot Id : <121> +13:54:14 Transaction Type : REQUEST +13:54:14 Received From : +13:54:14 ============================================================================ +13:54:14 FNo. Len. Field Value +13:54:14 ============================================================================ +13:54:14 [ 1] [ 4] [0200] +13:54:14 [ 2] [ 16] [6213544001534657] +13:54:14 [ 3] [ 6] [010000] +13:54:14 [ 4] [ 12] [000070000000] +13:54:14 [ 7] [ 10] [0320140201] +13:54:14 [ 11] [ 6] [306087] +13:54:14 [ 12] [ 6] [140201] +13:54:14 [ 13] [ 4] [0320] +13:54:14 [ 14] [ 4] [4912] +13:54:14 [ 15] [ 4] [0320] +13:54:14 [ 18] [ 4] [6011] +13:54:14 [ 22] [ 3] [900] +13:54:14 [ 25] [ 2] [02] +13:54:14 [ 28] [ 9] [D00002000] +13:54:14 [ 32] [ 6] [220699] +13:54:14 [ 35] [ 32] [6213544001534657=491212013465188] +13:54:14 [ 37] [ 12] [507900079344] +13:54:14 [ 41] [ 8] [01000700] +13:54:14 [ 42] [ 15] [APTRA ] +13:54:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:54:14 [ 49] [ 3] [418] +13:54:14 [ 52] [ 16] [7975D6216754314D] +13:54:14 ============================================================================ +13:54:14 + + +waiting on router queue for slot.... +13:54:14 Sending to : +13:54:14 ============================================================================ +13:54:14 Sending to : +13:54:14 ============================================================================ +13:54:14 ============================================================================ +13:54:14 Slot Id : <121> +13:54:14 Transaction Type : REQUEST +13:54:14 Received From : +13:54:14 ============================================================================ +13:54:14 FNo. Len. Field Value +13:54:14 ============================================================================ +13:54:14 [ 1] [ 4] [0200] +13:54:14 [ 2] [ 16] [6213544001534657] +13:54:14 [ 3] [ 6] [010000] +13:54:14 [ 4] [ 12] [000070000000] +13:54:14 [ 7] [ 10] [0320140201] +13:54:14 [ 11] [ 6] [306087] +13:54:14 [ 12] [ 6] [140201] +13:54:14 [ 13] [ 4] [0320] +13:54:14 [ 14] [ 4] [4912] +13:54:14 [ 15] [ 4] [0320] +13:54:14 [ 18] [ 4] [6011] +13:54:14 [ 22] [ 3] [900] +13:54:14 [ 25] [ 2] [02] +13:54:14 [ 28] [ 9] [D00002000] +13:54:14 [ 32] [ 6] [220699] +13:54:14 [ 35] [ 32] [6213544001534657=491212013465188] +13:54:14 [ 37] [ 12] [507900079344] +13:54:14 [ 41] [ 8] [01000700] +13:54:14 [ 42] [ 15] [APTRA ] +13:54:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:54:14 [ 49] [ 3] [418] +13:54:14 [ 52] [ 16] [7975D6216754314D] +13:54:14 ============================================================================ +13:54:14 + + +waiting on router queue for slot.... +13:54:14 Sending to : +13:54:14 ============================================================================ +13:54:14 ============================================================================ +13:54:14 Slot Id : <121> +13:54:14 Transaction Type : REQUEST +13:54:14 Received From : +13:54:14 ============================================================================ +13:54:14 FNo. Len. Field Value +13:54:14 ============================================================================ +13:54:14 [ 1] [ 4] [0200] +13:54:14 [ 2] [ 16] [6213544001534657] +13:54:14 [ 3] [ 6] [010000] +13:54:14 [ 4] [ 12] [000070000000] +13:54:14 [ 7] [ 10] [0320140201] +13:54:14 [ 11] [ 6] [306087] +13:54:14 [ 12] [ 6] [140201] +13:54:14 [ 13] [ 4] [0320] +13:54:14 [ 14] [ 4] [4912] +13:54:14 [ 15] [ 4] [0320] +13:54:14 [ 18] [ 4] [6011] +13:54:14 [ 22] [ 3] [900] +13:54:14 [ 25] [ 2] [02] +13:54:14 [ 28] [ 9] [D00002000] +13:54:14 [ 32] [ 6] [220699] +13:54:14 [ 35] [ 32] [6213544001534657=491212013465188] +13:54:14 [ 37] [ 12] [507900079344] +13:54:14 [ 41] [ 8] [01000700] +13:54:14 [ 42] [ 15] [APTRA ] +13:54:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:54:14 [ 49] [ 3] [418] +13:54:14 [ 52] [ 16] [4FAB0DFC2EB8A611] +13:54:14 ============================================================================ +13:54:14 + + +waiting on router queue for slot.... +13:54:14 Sending to : <0> +13:54:14 ============================================================================ +13:54:15 ============================================================================ +13:54:15 Slot Id : <121> +13:54:15 Transaction Type : RESPONSE +13:54:15 Received From : +13:54:15 ============================================================================ +13:54:15 FNo. Len. Field Value +13:54:15 ============================================================================ +13:54:15 [ 1] [ 4] [0210] +13:54:15 [ 2] [ 16] [6213544001534657] +13:54:15 [ 3] [ 6] [010000] +13:54:15 [ 4] [ 12] [000070000000] +13:54:15 [ 7] [ 10] [0320140201] +13:54:15 [ 11] [ 6] [306087] +13:54:15 [ 12] [ 6] [140201] +13:54:15 [ 13] [ 4] [0320] +13:54:15 [ 15] [ 4] [0320] +13:54:15 [ 18] [ 4] [6011] +13:54:15 [ 32] [ 6] [220699] +13:54:15 [ 35] [ 32] [6213544001534657=491212013465188] +13:54:15 [ 37] [ 12] [507900079344] +13:54:15 [ 38] [ 6] [016058] +13:54:15 [ 39] [ 2] [00] +13:54:15 [ 41] [ 8] [01000700] +13:54:15 [ 49] [ 3] [418] +13:54:15 [ 54] [ 40] [0001418C0000228428920002418C000022842892] +13:54:15 ============================================================================ +13:54:15 Sending to : +13:54:15 ============================================================================ +13:54:15 + + +waiting on router queue for slot.... +13:54:16 ============================================================================ +13:54:16 Slot Id : <121> +13:54:16 Transaction Type : RESPONSE +13:54:16 Received From : +13:54:16 ============================================================================ +13:54:16 FNo. Len. Field Value +13:54:16 ============================================================================ +13:54:16 [ 1] [ 4] [0210] +13:54:16 [ 2] [ 16] [6213544001534657] +13:54:16 [ 3] [ 6] [010000] +13:54:16 [ 4] [ 12] [000070000000] +13:54:16 [ 7] [ 10] [0320140201] +13:54:16 [ 11] [ 6] [306087] +13:54:16 [ 12] [ 6] [140201] +13:54:16 [ 13] [ 4] [0320] +13:54:16 [ 15] [ 4] [0320] +13:54:16 [ 18] [ 4] [6011] +13:54:16 [ 32] [ 6] [220699] +13:54:16 [ 35] [ 32] [6213544001534657=491212013465188] +13:54:16 [ 37] [ 12] [507900079344] +13:54:16 [ 38] [ 6] [016058] +13:54:16 [ 39] [ 2] [00] +13:54:16 [ 41] [ 8] [01000700] +13:54:16 [ 49] [ 3] [418] +13:54:16 [ 54] [ 40] [0001418C0000228428920002418C000022842892] +13:54:16 ============================================================================ +13:54:16 Calculate Source COMM Id = 1 +13:54:16 ============================================================================ +13:54:16 + + +waiting on router queue for slot.... +13:54:18 ============================================================================ +13:54:18 Slot Id : <107> +13:54:18 Transaction Type : REQUEST +13:54:18 Received From : +13:54:18 ============================================================================ +13:54:18 FNo. Len. Field Value +13:54:18 ============================================================================ +13:54:18 [ 1] [ 4] [0800] +13:54:18 [ 7] [ 10] [0320065324] +13:54:18 [ 11] [ 6] [156664] +13:54:18 [ 70] [ 3] [301] +13:54:18 ============================================================================ +13:54:18 + + +waiting on router queue for slot.... +13:54:18 Sending to : +13:54:18 ============================================================================ +13:54:18 ============================================================================ +13:54:18 Slot Id : <107> +13:54:18 Transaction Type : RESPONSE +13:54:18 Received From : +13:54:18 ============================================================================ +13:54:18 FNo. Len. Field Value +13:54:18 ============================================================================ +13:54:18 [ 1] [ 4] [0810] +13:54:18 [ 7] [ 10] [0320065324] +13:54:18 [ 11] [ 6] [156664] +13:54:18 [ 39] [ 2] [00] +13:54:18 [ 70] [ 3] [301] +13:54:18 ============================================================================ +13:54:18 Calculate Source COMM Id = 2 +13:54:18 ============================================================================ +13:54:18 + + +waiting on router queue for slot.... +13:54:25 ============================================================================ +13:54:25 Slot Id : <115> +13:54:25 Transaction Type : REQUEST +13:54:25 Received From : +13:54:25 ============================================================================ +13:54:25 FNo. Len. Field Value +13:54:25 ============================================================================ +13:54:25 [ 1] [ 4] [0200] +13:54:25 [ 2] [ 16] [6213541000531726] +13:54:25 [ 3] [ 6] [301000] +13:54:25 [ 4] [ 12] [000000000000] +13:54:25 [ 7] [ 10] [0320135215] +13:54:25 [ 11] [ 6] [947652] +13:54:25 [ 12] [ 6] [135215] +13:54:25 [ 13] [ 4] [0320] +13:54:25 [ 15] [ 4] [0320] +13:54:25 [ 18] [ 4] [6011] +13:54:25 [ 19] [ 3] [418] +13:54:25 [ 22] [ 3] [021] +13:54:25 [ 25] [ 2] [01] +13:54:25 [ 28] [ 9] [D00000000] +13:54:25 [ 32] [ 6] [668899] +13:54:25 [ 35] [ 32] [6213541000531726=491212013172364] +13:54:25 [ 37] [ 12] [507902151010] +13:54:25 [ 41] [ 8] [03020025] +13:54:25 [ 42] [ 15] [APT ] +13:54:25 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:54:25 [ 49] [ 3] [418] +13:54:25 [ 52] [ 16] [2F6146DD66A59BEA] +13:54:25 ============================================================================ +13:54:25 + + +waiting on router queue for slot.... +13:54:25 Sending to : +13:54:25 ============================================================================ +13:54:25 Sending to : +13:54:25 ============================================================================ +13:54:25 ============================================================================ +13:54:25 Slot Id : <115> +13:54:25 Transaction Type : REQUEST +13:54:25 Received From : +13:54:25 ============================================================================ +13:54:25 FNo. Len. Field Value +13:54:25 ============================================================================ +13:54:25 [ 1] [ 4] [0200] +13:54:25 [ 2] [ 16] [6213541000531726] +13:54:25 [ 3] [ 6] [301000] +13:54:25 [ 4] [ 12] [000000000000] +13:54:25 [ 7] [ 10] [0320135215] +13:54:25 [ 11] [ 6] [947652] +13:54:25 [ 12] [ 6] [135215] +13:54:25 [ 13] [ 4] [0320] +13:54:25 [ 15] [ 4] [0320] +13:54:25 [ 18] [ 4] [6011] +13:54:25 [ 19] [ 3] [418] +13:54:25 [ 22] [ 3] [021] +13:54:25 [ 25] [ 2] [01] +13:54:25 [ 28] [ 9] [D00000000] +13:54:25 [ 32] [ 6] [668899] +13:54:25 [ 35] [ 32] [6213541000531726=491212013172364] +13:54:25 [ 37] [ 12] [507902151010] +13:54:25 [ 41] [ 8] [03020025] +13:54:25 [ 42] [ 15] [APT ] +13:54:25 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:54:25 [ 49] [ 3] [418] +13:54:25 [ 52] [ 16] [2F6146DD66A59BEA] +13:54:25 ============================================================================ +13:54:25 + + +waiting on router queue for slot.... +13:54:25 Sending to : +13:54:25 ============================================================================ +13:54:25 ============================================================================ +13:54:25 Slot Id : <115> +13:54:25 Transaction Type : REQUEST +13:54:25 Received From : +13:54:25 ============================================================================ +13:54:25 FNo. Len. Field Value +13:54:25 ============================================================================ +13:54:25 [ 1] [ 4] [0200] +13:54:25 [ 2] [ 16] [6213541000531726] +13:54:25 [ 3] [ 6] [301000] +13:54:25 [ 4] [ 12] [000000000000] +13:54:25 [ 7] [ 10] [0320135215] +13:54:25 [ 11] [ 6] [947652] +13:54:25 [ 12] [ 6] [135215] +13:54:25 [ 13] [ 4] [0320] +13:54:25 [ 15] [ 4] [0320] +13:54:25 [ 18] [ 4] [6011] +13:54:25 [ 19] [ 3] [418] +13:54:25 [ 22] [ 3] [021] +13:54:25 [ 25] [ 2] [01] +13:54:25 [ 28] [ 9] [D00000000] +13:54:25 [ 32] [ 6] [668899] +13:54:25 [ 35] [ 32] [6213541000531726=491212013172364] +13:54:25 [ 37] [ 12] [507902151010] +13:54:25 [ 41] [ 8] [03020025] +13:54:25 [ 42] [ 15] [APT ] +13:54:25 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:54:25 [ 49] [ 3] [418] +13:54:25 [ 52] [ 16] [7A58E65F6CA1FDAB] +13:54:25 ============================================================================ +13:54:25 + + +waiting on router queue for slot.... +13:54:25 Sending to : <0> +13:54:25 ============================================================================ +13:54:25 ============================================================================ +13:54:25 Slot Id : <92> +13:54:25 Transaction Type : REQUEST +13:54:25 Received From : +13:54:25 ============================================================================ +13:54:25 FNo. Len. Field Value +13:54:25 ============================================================================ +13:54:25 [ 1] [ 4] [0200] +13:54:25 [ 2] [ 16] [6213545000206759] +13:54:25 [ 3] [ 6] [010000] +13:54:25 [ 4] [ 12] [000100000000] +13:54:25 [ 7] [ 10] [0320065332] +13:54:25 [ 11] [ 6] [269416] +13:54:25 [ 12] [ 6] [135332] +13:54:25 [ 13] [ 4] [0320] +13:54:25 [ 14] [ 4] [4912] +13:54:25 [ 15] [ 4] [0320] +13:54:25 [ 18] [ 4] [6011] +13:54:25 [ 19] [ 3] [418] +13:54:25 [ 22] [ 3] [021] +13:54:25 [ 25] [ 2] [01] +13:54:25 [ 28] [ 9] [D00002000] +13:54:25 [ 32] [ 6] [180893] +13:54:25 [ 35] [ 32] [6213545000206759=491212010675928] +13:54:25 [ 37] [ 12] [507906269416] +13:54:25 [ 41] [ 8] [0483XKNH] +13:54:25 [ 42] [ 15] [999999 ] +13:54:25 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:54:25 [ 49] [ 3] [418] +13:54:25 [ 52] [ 16] [EB6DBADD83A15A7A] +13:54:25 ============================================================================ +13:54:25 + + +waiting on router queue for slot.... +13:54:25 Sending to : +13:54:25 ============================================================================ +13:54:25 Sending to : +13:54:25 ============================================================================ +13:54:25 ============================================================================ +13:54:25 Slot Id : <115> +13:54:25 Transaction Type : RESPONSE +13:54:25 Received From : +13:54:25 ============================================================================ +13:54:25 FNo. Len. Field Value +13:54:25 ============================================================================ +13:54:25 [ 1] [ 4] [0210] +13:54:25 [ 2] [ 16] [6213541000531726] +13:54:25 [ 3] [ 6] [301000] +13:54:25 [ 4] [ 12] [000000000000] +13:54:25 [ 7] [ 10] [0320135215] +13:54:25 [ 11] [ 6] [947652] +13:54:25 [ 12] [ 6] [135215] +13:54:25 [ 13] [ 4] [0320] +13:54:25 [ 15] [ 4] [0320] +13:54:25 [ 18] [ 4] [6011] +13:54:25 [ 19] [ 3] [418] +13:54:25 [ 32] [ 6] [668899] +13:54:25 [ 35] [ 32] [6213541000531726=491212013172364] +13:54:25 [ 37] [ 12] [507902151010] +13:54:25 [ 38] [ 6] [132861] +13:54:25 [ 39] [ 2] [00] +13:54:25 [ 41] [ 8] [03020025] +13:54:25 [ 49] [ 3] [418] +13:54:25 [ 54] [ 40] [1001418C0000114011411002418C000011401141] +13:54:25 ============================================================================ +13:54:25 Sending to : +13:54:25 ============================================================================ +13:54:25 + + +waiting on router queue for slot.... +13:54:26 ============================================================================ +13:54:26 Slot Id : <92> +13:54:26 Transaction Type : REQUEST +13:54:26 Received From : +13:54:26 ============================================================================ +13:54:26 FNo. Len. Field Value +13:54:26 ============================================================================ +13:54:26 [ 1] [ 4] [0200] +13:54:26 [ 2] [ 16] [6213545000206759] +13:54:26 [ 3] [ 6] [010000] +13:54:26 [ 4] [ 12] [000100000000] +13:54:26 [ 7] [ 10] [0320065332] +13:54:26 [ 11] [ 6] [269416] +13:54:26 [ 12] [ 6] [135332] +13:54:26 [ 13] [ 4] [0320] +13:54:26 [ 14] [ 4] [4912] +13:54:26 [ 15] [ 4] [0320] +13:54:26 [ 18] [ 4] [6011] +13:54:26 [ 19] [ 3] [418] +13:54:26 [ 22] [ 3] [021] +13:54:26 [ 25] [ 2] [01] +13:54:26 [ 28] [ 9] [D00002000] +13:54:26 [ 32] [ 6] [180893] +13:54:26 [ 35] [ 32] [6213545000206759=491212010675928] +13:54:26 [ 37] [ 12] [507906269416] +13:54:26 [ 41] [ 8] [0483XKNH] +13:54:26 [ 42] [ 15] [999999 ] +13:54:26 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:54:26 [ 49] [ 3] [418] +13:54:26 [ 52] [ 16] [EB6DBADD83A15A7A] +13:54:26 ============================================================================ +13:54:26 + + +waiting on router queue for slot.... +13:54:26 Sending to : +13:54:26 ============================================================================ +13:54:26 ============================================================================ +13:54:26 Slot Id : <92> +13:54:26 Transaction Type : REQUEST +13:54:26 Received From : +13:54:26 ============================================================================ +13:54:26 FNo. Len. Field Value +13:54:26 ============================================================================ +13:54:26 [ 1] [ 4] [0200] +13:54:26 [ 2] [ 16] [6213545000206759] +13:54:26 [ 3] [ 6] [010000] +13:54:26 [ 4] [ 12] [000100000000] +13:54:26 [ 7] [ 10] [0320065332] +13:54:26 [ 11] [ 6] [269416] +13:54:26 [ 12] [ 6] [135332] +13:54:26 [ 13] [ 4] [0320] +13:54:26 [ 14] [ 4] [4912] +13:54:26 [ 15] [ 4] [0320] +13:54:26 [ 18] [ 4] [6011] +13:54:26 [ 19] [ 3] [418] +13:54:26 [ 22] [ 3] [021] +13:54:26 [ 25] [ 2] [01] +13:54:26 [ 28] [ 9] [D00002000] +13:54:26 [ 32] [ 6] [180893] +13:54:26 [ 35] [ 32] [6213545000206759=491212010675928] +13:54:26 [ 37] [ 12] [507906269416] +13:54:26 [ 41] [ 8] [0483XKNH] +13:54:26 [ 42] [ 15] [999999 ] +13:54:26 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:54:26 [ 49] [ 3] [418] +13:54:26 [ 52] [ 16] [6D16768D16F393F8] +13:54:26 ============================================================================ +13:54:26 + + +waiting on router queue for slot.... +13:54:26 Sending to : <0> +13:54:26 ============================================================================ +13:54:26 ============================================================================ +13:54:26 Slot Id : <92> +13:54:26 Transaction Type : RESPONSE +13:54:26 Received From : +13:54:26 ============================================================================ +13:54:26 FNo. Len. Field Value +13:54:26 ============================================================================ +13:54:26 [ 1] [ 4] [0210] +13:54:26 [ 2] [ 16] [6213545000206759] +13:54:26 [ 3] [ 6] [010000] +13:54:26 [ 4] [ 12] [000100000000] +13:54:26 [ 7] [ 10] [0320065332] +13:54:26 [ 11] [ 6] [269416] +13:54:26 [ 12] [ 6] [135332] +13:54:26 [ 13] [ 4] [0320] +13:54:26 [ 15] [ 4] [0320] +13:54:26 [ 18] [ 4] [6011] +13:54:26 [ 19] [ 3] [418] +13:54:26 [ 32] [ 6] [180893] +13:54:26 [ 35] [ 32] [6213545000206759=491212010675928] +13:54:26 [ 37] [ 12] [507906269416] +13:54:26 [ 38] [ 6] [609676] +13:54:26 [ 39] [ 2] [00] +13:54:26 [ 41] [ 8] [0483XKNH] +13:54:26 [ 49] [ 3] [418] +13:54:26 [ 54] [ 40] [0001418C0003748306390002418C000374830639] +13:54:26 ============================================================================ +13:54:26 Sending to : +13:54:26 ============================================================================ +13:54:26 + + +waiting on router queue for slot.... +13:54:27 ============================================================================ +13:54:27 Slot Id : <115> +13:54:27 Transaction Type : RESPONSE +13:54:27 Received From : +13:54:27 ============================================================================ +13:54:27 FNo. Len. Field Value +13:54:27 ============================================================================ +13:54:27 [ 1] [ 4] [0210] +13:54:27 [ 2] [ 16] [6213541000531726] +13:54:27 [ 3] [ 6] [301000] +13:54:27 [ 4] [ 12] [000000000000] +13:54:27 [ 7] [ 10] [0320135215] +13:54:27 [ 11] [ 6] [947652] +13:54:27 [ 12] [ 6] [135215] +13:54:27 [ 13] [ 4] [0320] +13:54:27 [ 15] [ 4] [0320] +13:54:27 [ 18] [ 4] [6011] +13:54:27 [ 19] [ 3] [418] +13:54:27 [ 32] [ 6] [668899] +13:54:27 [ 35] [ 32] [6213541000531726=491212013172364] +13:54:27 [ 37] [ 12] [507902151010] +13:54:27 [ 38] [ 6] [132861] +13:54:27 [ 39] [ 2] [00] +13:54:27 [ 41] [ 8] [03020025] +13:54:27 [ 49] [ 3] [418] +13:54:27 [ 54] [ 40] [1001418C0000114011411002418C000011401141] +13:54:27 ============================================================================ +13:54:27 Calculate Source COMM Id = 4 +13:54:27 ============================================================================ +13:54:27 + + +waiting on router queue for slot.... +13:54:28 ============================================================================ +13:54:28 Slot Id : <92> +13:54:28 Transaction Type : RESPONSE +13:54:28 Received From : +13:54:28 ============================================================================ +13:54:28 FNo. Len. Field Value +13:54:28 ============================================================================ +13:54:28 [ 1] [ 4] [0210] +13:54:28 [ 2] [ 16] [6213545000206759] +13:54:28 [ 3] [ 6] [010000] +13:54:28 [ 4] [ 12] [000100000000] +13:54:28 [ 7] [ 10] [0320065332] +13:54:28 [ 11] [ 6] [269416] +13:54:28 [ 12] [ 6] [135332] +13:54:28 [ 13] [ 4] [0320] +13:54:28 [ 15] [ 4] [0320] +13:54:28 [ 18] [ 4] [6011] +13:54:28 [ 19] [ 3] [418] +13:54:28 [ 32] [ 6] [180893] +13:54:28 [ 35] [ 32] [6213545000206759=491212010675928] +13:54:28 [ 37] [ 12] [507906269416] +13:54:28 [ 38] [ 6] [609676] +13:54:28 [ 39] [ 2] [00] +13:54:28 [ 41] [ 8] [0483XKNH] +13:54:28 [ 49] [ 3] [418] +13:54:28 [ 54] [ 40] [0001418C0003748306390002418C000374830639] +13:54:28 ============================================================================ +13:54:28 Calculate Source COMM Id = 2 +13:54:28 ============================================================================ +13:54:28 + + +waiting on router queue for slot.... +13:54:32 ============================================================================ +13:54:32 Slot Id : <108> +13:54:32 Transaction Type : REQUEST +13:54:32 Received From : +13:54:32 ============================================================================ +13:54:32 FNo. Len. Field Value +13:54:32 ============================================================================ +13:54:32 [ 1] [ 4] [0800] +13:54:32 [ 2] [ 5] [02531] +13:54:32 [ 3] [ 6] [579138] +13:54:32 [ 7] [ 10] [0320065432] +13:54:32 [ 11] [ 6] [807219] +13:54:32 [ 15] [ 10] [0320065432] +13:54:32 [ 37] [ 11] [57913807219] +13:54:32 [ 70] [ 3] [001] +13:54:32 ============================================================================ +13:54:32 + + +waiting on router queue for slot.... +13:54:32 ============================================================================ +13:54:32 Slot Id : <108> +13:54:32 Transaction Type : RESPONSE +13:54:32 Received From : +13:54:32 ============================================================================ +13:54:32 FNo. Len. Field Value +13:54:32 ============================================================================ +13:54:32 [ 1] [ 4] [0810] +13:54:32 [ 7] [ 10] [0320065432] +13:54:32 [ 11] [ 6] [807219] +13:54:32 [ 15] [ 4] [0320] +13:54:32 [ 37] [ 12] [57913807219] +13:54:32 [ 39] [ 2] [00] +13:54:32 [ 70] [ 3] [001] +13:54:32 ============================================================================ +13:54:32 Sending to : +13:54:32 ============================================================================ +13:54:32 + + +waiting on router queue for slot.... +13:54:40 ============================================================================ +13:54:40 Slot Id : <113> +13:54:40 Transaction Type : REQUEST +13:54:40 Received From : +13:54:40 ============================================================================ +13:54:40 FNo. Len. Field Value +13:54:40 ============================================================================ +13:54:40 [ 1] [ 4] [0800] +13:54:40 [ 7] [ 10] [0320065347] +13:54:40 [ 11] [ 6] [156665] +13:54:40 [ 70] [ 3] [301] +13:54:40 ============================================================================ +13:54:40 + + +waiting on router queue for slot.... +13:54:40 Sending to : +13:54:40 ============================================================================ +13:54:40 ============================================================================ +13:54:40 Slot Id : <113> +13:54:40 Transaction Type : RESPONSE +13:54:40 Received From : +13:54:40 ============================================================================ +13:54:40 FNo. Len. Field Value +13:54:40 ============================================================================ +13:54:40 [ 1] [ 4] [0810] +13:54:40 [ 7] [ 10] [0320065347] +13:54:40 [ 11] [ 6] [156665] +13:54:40 [ 39] [ 2] [00] +13:54:40 [ 70] [ 3] [301] +13:54:40 ============================================================================ +13:54:40 Calculate Source COMM Id = 2 +13:54:40 ============================================================================ +13:54:40 + + +waiting on router queue for slot.... +13:54:42 ============================================================================ +13:54:42 Slot Id : <94> +13:54:42 Transaction Type : REQUEST +13:54:42 Received From : +13:54:42 ============================================================================ +13:54:42 FNo. Len. Field Value +13:54:42 ============================================================================ +13:54:42 [ 1] [ 4] [0200] +13:54:42 [ 2] [ 16] [6213544000346541] +13:54:42 [ 3] [ 6] [011000] +13:54:42 [ 4] [ 12] [000100000000] +13:54:42 [ 7] [ 10] [0320135503] +13:54:42 [ 11] [ 6] [206821] +13:54:42 [ 12] [ 6] [134009] +13:54:42 [ 13] [ 4] [0320] +13:54:42 [ 14] [ 4] [4912] +13:54:42 [ 15] [ 4] [0320] +13:54:42 [ 18] [ 4] [6011] +13:54:42 [ 19] [ 3] [418] +13:54:42 [ 22] [ 3] [021] +13:54:42 [ 25] [ 2] [01] +13:54:42 [ 28] [ 9] [D00002000] +13:54:42 [ 32] [ 6] [198901] +13:54:42 [ 35] [ 32] [6213544000346541=491212014654791] +13:54:42 [ 37] [ 12] [507913206821] +13:54:42 [ 41] [ 8] [01529017] +13:54:42 [ 42] [ 15] [000000041529017] +13:54:42 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:54:42 [ 49] [ 3] [418] +13:54:42 [ 52] [ 16] [5BC3BA0D5074E40B] +13:54:42 ============================================================================ +13:54:42 + + +waiting on router queue for slot.... +13:54:42 Sending to : +13:54:42 ============================================================================ +13:54:42 Sending to : +13:54:42 ============================================================================ +13:54:42 ============================================================================ +13:54:42 Slot Id : <94> +13:54:42 Transaction Type : REQUEST +13:54:42 Received From : +13:54:42 ============================================================================ +13:54:42 FNo. Len. Field Value +13:54:42 ============================================================================ +13:54:42 [ 1] [ 4] [0200] +13:54:42 [ 2] [ 16] [6213544000346541] +13:54:42 [ 3] [ 6] [011000] +13:54:42 [ 4] [ 12] [000100000000] +13:54:42 [ 7] [ 10] [0320135503] +13:54:42 [ 11] [ 6] [206821] +13:54:42 [ 12] [ 6] [134009] +13:54:42 [ 13] [ 4] [0320] +13:54:42 [ 14] [ 4] [4912] +13:54:42 [ 15] [ 4] [0320] +13:54:42 [ 18] [ 4] [6011] +13:54:42 [ 19] [ 3] [418] +13:54:42 [ 22] [ 3] [021] +13:54:42 [ 25] [ 2] [01] +13:54:42 [ 28] [ 9] [D00002000] +13:54:42 [ 32] [ 6] [198901] +13:54:42 [ 35] [ 32] [6213544000346541=491212014654791] +13:54:42 [ 37] [ 12] [507913206821] +13:54:42 [ 41] [ 8] [01529017] +13:54:42 [ 42] [ 15] [000000041529017] +13:54:42 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:54:42 [ 49] [ 3] [418] +13:54:42 [ 52] [ 16] [5BC3BA0D5074E40B] +13:54:42 ============================================================================ +13:54:42 + + +waiting on router queue for slot.... +13:54:42 Sending to : +13:54:42 ============================================================================ +13:54:42 ============================================================================ +13:54:42 Slot Id : <94> +13:54:42 Transaction Type : REQUEST +13:54:42 Received From : +13:54:42 ============================================================================ +13:54:42 FNo. Len. Field Value +13:54:42 ============================================================================ +13:54:42 [ 1] [ 4] [0200] +13:54:42 [ 2] [ 16] [6213544000346541] +13:54:42 [ 3] [ 6] [011000] +13:54:42 [ 4] [ 12] [000100000000] +13:54:42 [ 7] [ 10] [0320135503] +13:54:42 [ 11] [ 6] [206821] +13:54:42 [ 12] [ 6] [134009] +13:54:42 [ 13] [ 4] [0320] +13:54:42 [ 14] [ 4] [4912] +13:54:42 [ 15] [ 4] [0320] +13:54:42 [ 18] [ 4] [6011] +13:54:42 [ 19] [ 3] [418] +13:54:42 [ 22] [ 3] [021] +13:54:42 [ 25] [ 2] [01] +13:54:42 [ 28] [ 9] [D00002000] +13:54:42 [ 32] [ 6] [198901] +13:54:42 [ 35] [ 32] [6213544000346541=491212014654791] +13:54:42 [ 37] [ 12] [507913206821] +13:54:42 [ 41] [ 8] [01529017] +13:54:42 [ 42] [ 15] [000000041529017] +13:54:42 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:54:42 [ 49] [ 3] [418] +13:54:42 [ 52] [ 16] [7A380D03B06AEA04] +13:54:42 ============================================================================ +13:54:42 + + +waiting on router queue for slot.... +13:54:42 Sending to : <0> +13:54:42 ============================================================================ +13:54:43 ============================================================================ +13:54:43 Slot Id : <94> +13:54:43 Transaction Type : RESPONSE +13:54:43 Received From : +13:54:43 ============================================================================ +13:54:43 FNo. Len. Field Value +13:54:43 ============================================================================ +13:54:43 [ 1] [ 4] [0210] +13:54:43 [ 2] [ 16] [6213544000346541] +13:54:43 [ 3] [ 6] [011000] +13:54:43 [ 4] [ 12] [000100000000] +13:54:43 [ 7] [ 10] [0320135503] +13:54:43 [ 11] [ 6] [206821] +13:54:43 [ 12] [ 6] [134009] +13:54:43 [ 13] [ 4] [0320] +13:54:43 [ 15] [ 4] [0320] +13:54:43 [ 18] [ 4] [6011] +13:54:43 [ 19] [ 3] [418] +13:54:43 [ 32] [ 6] [198901] +13:54:43 [ 35] [ 32] [6213544000346541=491212014654791] +13:54:43 [ 37] [ 12] [507913206821] +13:54:43 [ 38] [ 6] [322385] +13:54:43 [ 39] [ 2] [00] +13:54:43 [ 41] [ 8] [01529017] +13:54:43 [ 49] [ 3] [418] +13:54:43 [ 54] [ 40] [1001418C0025912815241002418C002591281524] +13:54:43 ============================================================================ +13:54:43 Sending to : +13:54:43 ============================================================================ +13:54:43 + + +waiting on router queue for slot.... +13:54:44 ============================================================================ +13:54:44 Slot Id : <94> +13:54:44 Transaction Type : RESPONSE +13:54:44 Received From : +13:54:44 ============================================================================ +13:54:44 FNo. Len. Field Value +13:54:44 ============================================================================ +13:54:44 [ 1] [ 4] [0210] +13:54:44 [ 2] [ 16] [6213544000346541] +13:54:44 [ 3] [ 6] [011000] +13:54:44 [ 4] [ 12] [000100000000] +13:54:44 [ 7] [ 10] [0320135503] +13:54:44 [ 11] [ 6] [206821] +13:54:44 [ 12] [ 6] [134009] +13:54:44 [ 13] [ 4] [0320] +13:54:44 [ 15] [ 4] [0320] +13:54:44 [ 18] [ 4] [6011] +13:54:44 [ 19] [ 3] [418] +13:54:44 [ 32] [ 6] [198901] +13:54:44 [ 35] [ 32] [6213544000346541=491212014654791] +13:54:44 [ 37] [ 12] [507913206821] +13:54:44 [ 38] [ 6] [322385] +13:54:44 [ 39] [ 2] [00] +13:54:44 [ 41] [ 8] [01529017] +13:54:44 [ 49] [ 3] [418] +13:54:44 [ 54] [ 40] [1001418C0025912815241002418C002591281524] +13:54:44 ============================================================================ +13:54:44 Calculate Source COMM Id = 5 +13:54:44 ============================================================================ +13:54:44 + + +waiting on router queue for slot.... +13:54:50 ============================================================================ +13:54:50 Slot Id : <127> +13:54:50 Transaction Type : REQUEST +13:54:50 Received From : +13:54:50 ============================================================================ +13:54:50 FNo. Len. Field Value +13:54:50 ============================================================================ +13:54:50 [ 1] [ 4] [0800] +13:54:50 [ 7] [ 10] [0320065357] +13:54:50 [ 11] [ 6] [156666] +13:54:50 [ 70] [ 3] [301] +13:54:50 ============================================================================ +13:54:50 + + +waiting on router queue for slot.... +13:54:50 Sending to : +13:54:50 ============================================================================ +13:54:50 ============================================================================ +13:54:50 Slot Id : <127> +13:54:50 Transaction Type : RESPONSE +13:54:50 Received From : +13:54:50 ============================================================================ +13:54:50 FNo. Len. Field Value +13:54:50 ============================================================================ +13:54:50 [ 1] [ 4] [0810] +13:54:50 [ 7] [ 10] [0320065357] +13:54:50 [ 11] [ 6] [156666] +13:54:50 [ 39] [ 2] [00] +13:54:50 [ 70] [ 3] [301] +13:54:50 ============================================================================ +13:54:50 Calculate Source COMM Id = 2 +13:54:50 ============================================================================ +13:54:50 + + +waiting on router queue for slot.... +13:54:54 ============================================================================ +13:54:54 Slot Id : <75> +13:54:54 Transaction Type : REQUEST +13:54:54 Received From : +13:54:54 ============================================================================ +13:54:54 FNo. Len. Field Value +13:54:54 ============================================================================ +13:54:54 [ 1] [ 4] [0800] +13:54:54 [ 7] [ 10] [0320070242] +13:54:54 [ 11] [ 6] [058508] +13:54:54 [ 37] [ 12] [57914058508] +13:54:54 [ 70] [ 3] [301] +13:54:54 ============================================================================ +13:54:54 + + +waiting on router queue for slot.... +13:54:54 Sending to : +13:54:54 ============================================================================ +13:54:54 ============================================================================ +13:54:54 Slot Id : <75> +13:54:54 Transaction Type : RESPONSE +13:54:54 Received From : +13:54:54 ============================================================================ +13:54:54 FNo. Len. Field Value +13:54:54 ============================================================================ +13:54:54 [ 1] [ 4] [0810] +13:54:54 [ 7] [ 10] [0320070242] +13:54:54 [ 11] [ 6] [058508] +13:54:54 [ 37] [ 12] [579140585080] +13:54:54 [ 39] [ 2] [00] +13:54:54 [ 70] [ 3] [810] +13:54:54 ============================================================================ +13:54:54 Calculate Source COMM Id = 1 +13:54:54 ============================================================================ +13:54:54 + + +waiting on router queue for slot.... +13:54:57 ============================================================================ +13:54:57 Slot Id : <53> +13:54:57 Transaction Type : REQUEST +13:54:57 Received From : +13:54:57 ============================================================================ +13:54:57 FNo. Len. Field Value +13:54:57 ============================================================================ +13:54:57 [ 1] [ 4] [0200] +13:54:57 [ 2] [ 16] [6213541000531726] +13:54:57 [ 3] [ 6] [010000] +13:54:57 [ 4] [ 12] [000010000000] +13:54:57 [ 7] [ 10] [0320135247] +13:54:57 [ 11] [ 6] [947670] +13:54:57 [ 12] [ 6] [135247] +13:54:57 [ 13] [ 4] [0320] +13:54:57 [ 15] [ 4] [0320] +13:54:57 [ 18] [ 4] [6011] +13:54:57 [ 19] [ 3] [418] +13:54:57 [ 22] [ 3] [021] +13:54:57 [ 25] [ 2] [01] +13:54:57 [ 28] [ 9] [D00002000] +13:54:57 [ 32] [ 6] [668899] +13:54:57 [ 35] [ 32] [6213541000531726=491212013172364] +13:54:57 [ 37] [ 12] [507902151011] +13:54:57 [ 41] [ 8] [03020025] +13:54:57 [ 42] [ 15] [APT ] +13:54:57 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:54:57 [ 49] [ 3] [418] +13:54:57 [ 52] [ 16] [2F6146DD66A59BEA] +13:54:57 ============================================================================ +13:54:57 + + +waiting on router queue for slot.... +13:54:57 Sending to : +13:54:57 ============================================================================ +13:54:57 Sending to : +13:54:57 ============================================================================ +13:54:57 ============================================================================ +13:54:57 Slot Id : <53> +13:54:57 Transaction Type : REQUEST +13:54:57 Received From : +13:54:57 ============================================================================ +13:54:57 FNo. Len. Field Value +13:54:57 ============================================================================ +13:54:57 [ 1] [ 4] [0200] +13:54:57 [ 2] [ 16] [6213541000531726] +13:54:57 [ 3] [ 6] [010000] +13:54:57 [ 4] [ 12] [000010000000] +13:54:57 [ 7] [ 10] [0320135247] +13:54:57 [ 11] [ 6] [947670] +13:54:57 [ 12] [ 6] [135247] +13:54:57 [ 13] [ 4] [0320] +13:54:57 [ 15] [ 4] [0320] +13:54:57 [ 18] [ 4] [6011] +13:54:57 [ 19] [ 3] [418] +13:54:57 [ 22] [ 3] [021] +13:54:57 [ 25] [ 2] [01] +13:54:57 [ 28] [ 9] [D00002000] +13:54:57 [ 32] [ 6] [668899] +13:54:57 [ 35] [ 32] [6213541000531726=491212013172364] +13:54:57 [ 37] [ 12] [507902151011] +13:54:57 [ 41] [ 8] [03020025] +13:54:57 [ 42] [ 15] [APT ] +13:54:57 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:54:57 [ 49] [ 3] [418] +13:54:57 [ 52] [ 16] [2F6146DD66A59BEA] +13:54:57 ============================================================================ +13:54:57 + + +waiting on router queue for slot.... +13:54:57 Sending to : +13:54:57 ============================================================================ +13:54:57 ============================================================================ +13:54:57 Slot Id : <53> +13:54:57 Transaction Type : REQUEST +13:54:57 Received From : +13:54:57 ============================================================================ +13:54:57 FNo. Len. Field Value +13:54:57 ============================================================================ +13:54:57 [ 1] [ 4] [0200] +13:54:57 [ 2] [ 16] [6213541000531726] +13:54:57 [ 3] [ 6] [010000] +13:54:57 [ 4] [ 12] [000010000000] +13:54:57 [ 7] [ 10] [0320135247] +13:54:57 [ 11] [ 6] [947670] +13:54:57 [ 12] [ 6] [135247] +13:54:57 [ 13] [ 4] [0320] +13:54:57 [ 15] [ 4] [0320] +13:54:57 [ 18] [ 4] [6011] +13:54:57 [ 19] [ 3] [418] +13:54:57 [ 22] [ 3] [021] +13:54:57 [ 25] [ 2] [01] +13:54:57 [ 28] [ 9] [D00002000] +13:54:57 [ 32] [ 6] [668899] +13:54:57 [ 35] [ 32] [6213541000531726=491212013172364] +13:54:57 [ 37] [ 12] [507902151011] +13:54:57 [ 41] [ 8] [03020025] +13:54:57 [ 42] [ 15] [APT ] +13:54:57 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +13:54:57 [ 49] [ 3] [418] +13:54:57 [ 52] [ 16] [7A58E65F6CA1FDAB] +13:54:57 ============================================================================ +13:54:57 + + +waiting on router queue for slot.... +13:54:57 Sending to : <0> +13:54:57 ============================================================================ +13:54:58 ============================================================================ +13:54:58 Slot Id : <53> +13:54:58 Transaction Type : RESPONSE +13:54:58 Received From : +13:54:58 ============================================================================ +13:54:58 FNo. Len. Field Value +13:54:58 ============================================================================ +13:54:58 [ 1] [ 4] [0210] +13:54:58 [ 2] [ 16] [6213541000531726] +13:54:58 [ 3] [ 6] [010000] +13:54:58 [ 4] [ 12] [000010000000] +13:54:58 [ 7] [ 10] [0320135247] +13:54:58 [ 11] [ 6] [947670] +13:54:58 [ 12] [ 6] [135247] +13:54:58 [ 13] [ 4] [0320] +13:54:58 [ 15] [ 4] [0320] +13:54:58 [ 18] [ 4] [6011] +13:54:58 [ 19] [ 3] [418] +13:54:58 [ 32] [ 6] [668899] +13:54:58 [ 35] [ 32] [6213541000531726=491212013172364] +13:54:58 [ 37] [ 12] [507902151011] +13:54:58 [ 38] [ 6] [947670] +13:54:58 [ 39] [ 2] [51] +13:54:58 [ 41] [ 8] [03020025] +13:54:58 [ 49] [ 3] [418] +13:54:58 [ 54] [ 40] [0001418C0000114011410002418C000011401141] +13:54:58 ============================================================================ +13:54:58 Sending to : +13:54:58 ============================================================================ +13:54:58 + + +waiting on router queue for slot.... +13:54:59 ============================================================================ +13:54:59 Slot Id : <53> +13:54:59 Transaction Type : RESPONSE +13:54:59 Received From : +13:54:59 ============================================================================ +13:54:59 FNo. Len. Field Value +13:54:59 ============================================================================ +13:54:59 [ 1] [ 4] [0210] +13:54:59 [ 2] [ 16] [6213541000531726] +13:54:59 [ 3] [ 6] [010000] +13:54:59 [ 4] [ 12] [000010000000] +13:54:59 [ 7] [ 10] [0320135247] +13:54:59 [ 11] [ 6] [947670] +13:54:59 [ 12] [ 6] [135247] +13:54:59 [ 13] [ 4] [0320] +13:54:59 [ 15] [ 4] [0320] +13:54:59 [ 18] [ 4] [6011] +13:54:59 [ 19] [ 3] [418] +13:54:59 [ 32] [ 6] [668899] +13:54:59 [ 35] [ 32] [6213541000531726=491212013172364] +13:54:59 [ 37] [ 12] [507902151011] +13:54:59 [ 38] [ 6] [947670] +13:54:59 [ 39] [ 2] [51] +13:54:59 [ 41] [ 8] [03020025] +13:54:59 [ 49] [ 3] [418] +13:54:59 [ 54] [ 40] [0001418C0000114011410002418C000011401141] +13:54:59 ============================================================================ +13:54:59 Calculate Source COMM Id = 4 +13:54:59 ============================================================================ +13:54:59 + + +waiting on router queue for slot.... +13:55:00 ============================================================================ +13:55:00 Slot Id : <95> +13:55:00 Transaction Type : REQUEST +13:55:00 Received From : +13:55:00 ============================================================================ +13:55:00 FNo. Len. Field Value +13:55:00 ============================================================================ +13:55:00 [ 1] [ 4] [0800] +13:55:00 [ 7] [ 10] [0320065407] +13:55:00 [ 11] [ 6] [156667] +13:55:00 [ 70] [ 3] [301] +13:55:00 ============================================================================ +13:55:00 + + +waiting on router queue for slot.... +13:55:00 Sending to : +13:55:00 ============================================================================ +13:55:00 ============================================================================ +13:55:00 Slot Id : <95> +13:55:00 Transaction Type : RESPONSE +13:55:00 Received From : +13:55:00 ============================================================================ +13:55:00 FNo. Len. Field Value +13:55:00 ============================================================================ +13:55:00 [ 1] [ 4] [0810] +13:55:00 [ 7] [ 10] [0320065407] +13:55:00 [ 11] [ 6] [156667] +13:55:00 [ 39] [ 2] [00] +13:55:00 [ 70] [ 3] [301] +13:55:00 ============================================================================ +13:55:00 Calculate Source COMM Id = 2 +13:55:00 ============================================================================ +13:55:00 + + +waiting on router queue for slot.... +13:55:11 ============================================================================ +13:55:11 Slot Id : <125> +13:55:11 Transaction Type : REQUEST +13:55:11 Received From : +13:55:11 ============================================================================ +13:55:11 FNo. Len. Field Value +13:55:11 ============================================================================ +13:55:11 [ 1] [ 4] [0800] +13:55:11 [ 7] [ 10] [0320065417] +13:55:11 [ 11] [ 6] [156668] +13:55:11 [ 70] [ 3] [301] +13:55:11 ============================================================================ +13:55:11 + + +waiting on router queue for slot.... +13:55:11 Sending to : +13:55:11 ============================================================================ +13:55:11 ============================================================================ +13:55:11 Slot Id : <125> +13:55:11 Transaction Type : RESPONSE +13:55:11 Received From : +13:55:11 ============================================================================ +13:55:11 FNo. Len. Field Value +13:55:11 ============================================================================ +13:55:11 [ 1] [ 4] [0810] +13:55:11 [ 7] [ 10] [0320065417] +13:55:11 [ 11] [ 6] [156668] +13:55:11 [ 39] [ 2] [00] +13:55:11 [ 70] [ 3] [301] +13:55:11 ============================================================================ +13:55:11 Calculate Source COMM Id = 2 +13:55:11 ============================================================================ +13:55:11 + + +waiting on router queue for slot.... +13:55:19 ============================================================================ +13:55:19 Slot Id : <98> +13:55:19 Transaction Type : REQUEST +13:55:19 Received From : +13:55:19 ============================================================================ +13:55:19 FNo. Len. Field Value +13:55:19 ============================================================================ +13:55:19 [ 1] [ 4] [0200] +13:55:19 [ 2] [ 16] [6213545000206759] +13:55:19 [ 3] [ 6] [010000] +13:55:19 [ 4] [ 12] [000100000000] +13:55:19 [ 7] [ 10] [0320065425] +13:55:19 [ 11] [ 6] [269421] +13:55:19 [ 12] [ 6] [135425] +13:55:19 [ 13] [ 4] [0320] +13:55:19 [ 14] [ 4] [4912] +13:55:19 [ 15] [ 4] [0320] +13:55:19 [ 18] [ 4] [6011] +13:55:19 [ 19] [ 3] [418] +13:55:19 [ 22] [ 3] [021] +13:55:19 [ 25] [ 2] [01] +13:55:19 [ 28] [ 9] [D00002000] +13:55:19 [ 32] [ 6] [180893] +13:55:19 [ 35] [ 32] [6213545000206759=491212010675928] +13:55:19 [ 37] [ 12] [507906269421] +13:55:19 [ 41] [ 8] [0483XKNH] +13:55:19 [ 42] [ 15] [999999 ] +13:55:19 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:55:19 [ 49] [ 3] [418] +13:55:19 [ 52] [ 16] [EB6DBADD83A15A7A] +13:55:19 ============================================================================ +13:55:19 + + +waiting on router queue for slot.... +13:55:19 Sending to : +13:55:19 ============================================================================ +13:55:19 Sending to : +13:55:19 ============================================================================ +13:55:19 ============================================================================ +13:55:19 Slot Id : <98> +13:55:19 Transaction Type : REQUEST +13:55:19 Received From : +13:55:19 ============================================================================ +13:55:19 FNo. Len. Field Value +13:55:19 ============================================================================ +13:55:19 [ 1] [ 4] [0200] +13:55:19 [ 2] [ 16] [6213545000206759] +13:55:19 [ 3] [ 6] [010000] +13:55:19 [ 4] [ 12] [000100000000] +13:55:19 [ 7] [ 10] [0320065425] +13:55:19 [ 11] [ 6] [269421] +13:55:19 [ 12] [ 6] [135425] +13:55:19 [ 13] [ 4] [0320] +13:55:19 [ 14] [ 4] [4912] +13:55:19 [ 15] [ 4] [0320] +13:55:19 [ 18] [ 4] [6011] +13:55:19 [ 19] [ 3] [418] +13:55:19 [ 22] [ 3] [021] +13:55:19 [ 25] [ 2] [01] +13:55:19 [ 28] [ 9] [D00002000] +13:55:19 [ 32] [ 6] [180893] +13:55:19 [ 35] [ 32] [6213545000206759=491212010675928] +13:55:19 [ 37] [ 12] [507906269421] +13:55:19 [ 41] [ 8] [0483XKNH] +13:55:19 [ 42] [ 15] [999999 ] +13:55:19 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:55:19 [ 49] [ 3] [418] +13:55:19 [ 52] [ 16] [EB6DBADD83A15A7A] +13:55:19 ============================================================================ +13:55:19 + + +waiting on router queue for slot.... +13:55:19 Sending to : +13:55:19 ============================================================================ +13:55:19 ============================================================================ +13:55:19 Slot Id : <98> +13:55:19 Transaction Type : REQUEST +13:55:19 Received From : +13:55:19 ============================================================================ +13:55:19 FNo. Len. Field Value +13:55:19 ============================================================================ +13:55:19 [ 1] [ 4] [0200] +13:55:19 [ 2] [ 16] [6213545000206759] +13:55:19 [ 3] [ 6] [010000] +13:55:19 [ 4] [ 12] [000100000000] +13:55:19 [ 7] [ 10] [0320065425] +13:55:19 [ 11] [ 6] [269421] +13:55:19 [ 12] [ 6] [135425] +13:55:19 [ 13] [ 4] [0320] +13:55:19 [ 14] [ 4] [4912] +13:55:19 [ 15] [ 4] [0320] +13:55:19 [ 18] [ 4] [6011] +13:55:19 [ 19] [ 3] [418] +13:55:19 [ 22] [ 3] [021] +13:55:19 [ 25] [ 2] [01] +13:55:19 [ 28] [ 9] [D00002000] +13:55:19 [ 32] [ 6] [180893] +13:55:19 [ 35] [ 32] [6213545000206759=491212010675928] +13:55:19 [ 37] [ 12] [507906269421] +13:55:19 [ 41] [ 8] [0483XKNH] +13:55:19 [ 42] [ 15] [999999 ] +13:55:19 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:55:19 [ 49] [ 3] [418] +13:55:19 [ 52] [ 16] [6D16768D16F393F8] +13:55:19 ============================================================================ +13:55:19 + + +waiting on router queue for slot.... +13:55:19 Sending to : <0> +13:55:19 ============================================================================ +13:55:20 ============================================================================ +13:55:20 Slot Id : <98> +13:55:20 Transaction Type : RESPONSE +13:55:20 Received From : +13:55:20 ============================================================================ +13:55:20 FNo. Len. Field Value +13:55:20 ============================================================================ +13:55:20 [ 1] [ 4] [0210] +13:55:20 [ 2] [ 16] [6213545000206759] +13:55:20 [ 3] [ 6] [010000] +13:55:20 [ 4] [ 12] [000100000000] +13:55:20 [ 7] [ 10] [0320065425] +13:55:20 [ 11] [ 6] [269421] +13:55:20 [ 12] [ 6] [135425] +13:55:20 [ 13] [ 4] [0320] +13:55:20 [ 15] [ 4] [0320] +13:55:20 [ 18] [ 4] [6011] +13:55:20 [ 19] [ 3] [418] +13:55:20 [ 32] [ 6] [180893] +13:55:20 [ 35] [ 32] [6213545000206759=491212010675928] +13:55:20 [ 37] [ 12] [507906269421] +13:55:20 [ 38] [ 6] [023968] +13:55:20 [ 39] [ 2] [00] +13:55:20 [ 41] [ 8] [0483XKNH] +13:55:20 [ 49] [ 3] [418] +13:55:20 [ 54] [ 40] [0001418C0002746306390002418C000274630639] +13:55:20 ============================================================================ +13:55:20 Sending to : +13:55:20 ============================================================================ +13:55:20 + + +waiting on router queue for slot.... +13:55:21 ============================================================================ +13:55:21 Slot Id : <98> +13:55:21 Transaction Type : RESPONSE +13:55:21 Received From : +13:55:21 ============================================================================ +13:55:21 FNo. Len. Field Value +13:55:21 ============================================================================ +13:55:21 [ 1] [ 4] [0210] +13:55:21 [ 2] [ 16] [6213545000206759] +13:55:21 [ 3] [ 6] [010000] +13:55:21 [ 4] [ 12] [000100000000] +13:55:21 [ 7] [ 10] [0320065425] +13:55:21 [ 11] [ 6] [269421] +13:55:21 [ 12] [ 6] [135425] +13:55:21 [ 13] [ 4] [0320] +13:55:21 [ 15] [ 4] [0320] +13:55:21 [ 18] [ 4] [6011] +13:55:21 [ 19] [ 3] [418] +13:55:21 [ 32] [ 6] [180893] +13:55:21 [ 35] [ 32] [6213545000206759=491212010675928] +13:55:21 [ 37] [ 12] [507906269421] +13:55:21 [ 38] [ 6] [023968] +13:55:21 [ 39] [ 2] [00] +13:55:21 [ 41] [ 8] [0483XKNH] +13:55:21 [ 49] [ 3] [418] +13:55:21 [ 54] [ 40] [0001418C0002746306390002418C000274630639] +13:55:21 ============================================================================ +13:55:21 Calculate Source COMM Id = 2 +13:55:21 ============================================================================ +13:55:21 + + +waiting on router queue for slot.... +13:55:24 ============================================================================ +13:55:24 Slot Id : <134> +13:55:24 Transaction Type : REQUEST +13:55:24 Received From : +13:55:24 ============================================================================ +13:55:24 FNo. Len. Field Value +13:55:24 ============================================================================ +13:55:24 [ 1] [ 4] [0200] +13:55:24 [ 2] [ 16] [6213544000346541] +13:55:24 [ 3] [ 6] [011000] +13:55:24 [ 4] [ 12] [000100000000] +13:55:24 [ 7] [ 10] [0320135544] +13:55:24 [ 11] [ 6] [206831] +13:55:24 [ 12] [ 6] [134051] +13:55:24 [ 13] [ 4] [0320] +13:55:24 [ 14] [ 4] [4912] +13:55:24 [ 15] [ 4] [0320] +13:55:24 [ 18] [ 4] [6011] +13:55:24 [ 19] [ 3] [418] +13:55:24 [ 22] [ 3] [021] +13:55:24 [ 25] [ 2] [01] +13:55:24 [ 28] [ 9] [D00002000] +13:55:24 [ 32] [ 6] [198901] +13:55:24 [ 35] [ 32] [6213544000346541=491212014654791] +13:55:24 [ 37] [ 12] [507913206831] +13:55:24 [ 41] [ 8] [01529017] +13:55:24 [ 42] [ 15] [000000041529017] +13:55:24 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:55:24 [ 49] [ 3] [418] +13:55:24 [ 52] [ 16] [5BC3BA0D5074E40B] +13:55:24 ============================================================================ +13:55:24 + + +waiting on router queue for slot.... +13:55:24 Sending to : +13:55:24 ============================================================================ +13:55:24 Sending to : +13:55:24 ============================================================================ +13:55:24 ============================================================================ +13:55:24 Slot Id : <134> +13:55:24 Transaction Type : REQUEST +13:55:24 Received From : +13:55:24 ============================================================================ +13:55:24 FNo. Len. Field Value +13:55:24 ============================================================================ +13:55:24 [ 1] [ 4] [0200] +13:55:24 [ 2] [ 16] [6213544000346541] +13:55:24 [ 3] [ 6] [011000] +13:55:24 [ 4] [ 12] [000100000000] +13:55:24 [ 7] [ 10] [0320135544] +13:55:24 [ 11] [ 6] [206831] +13:55:24 [ 12] [ 6] [134051] +13:55:24 [ 13] [ 4] [0320] +13:55:24 [ 14] [ 4] [4912] +13:55:24 [ 15] [ 4] [0320] +13:55:24 [ 18] [ 4] [6011] +13:55:24 [ 19] [ 3] [418] +13:55:24 [ 22] [ 3] [021] +13:55:24 [ 25] [ 2] [01] +13:55:24 [ 28] [ 9] [D00002000] +13:55:24 [ 32] [ 6] [198901] +13:55:24 [ 35] [ 32] [6213544000346541=491212014654791] +13:55:24 [ 37] [ 12] [507913206831] +13:55:24 [ 41] [ 8] [01529017] +13:55:24 [ 42] [ 15] [000000041529017] +13:55:24 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:55:24 [ 49] [ 3] [418] +13:55:24 [ 52] [ 16] [5BC3BA0D5074E40B] +13:55:24 ============================================================================ +13:55:24 + + +waiting on router queue for slot.... +13:55:24 Sending to : +13:55:24 ============================================================================ +13:55:24 ============================================================================ +13:55:24 Slot Id : <134> +13:55:24 Transaction Type : REQUEST +13:55:24 Received From : +13:55:24 ============================================================================ +13:55:24 FNo. Len. Field Value +13:55:24 ============================================================================ +13:55:24 [ 1] [ 4] [0200] +13:55:24 [ 2] [ 16] [6213544000346541] +13:55:24 [ 3] [ 6] [011000] +13:55:24 [ 4] [ 12] [000100000000] +13:55:24 [ 7] [ 10] [0320135544] +13:55:24 [ 11] [ 6] [206831] +13:55:24 [ 12] [ 6] [134051] +13:55:24 [ 13] [ 4] [0320] +13:55:24 [ 14] [ 4] [4912] +13:55:24 [ 15] [ 4] [0320] +13:55:24 [ 18] [ 4] [6011] +13:55:24 [ 19] [ 3] [418] +13:55:24 [ 22] [ 3] [021] +13:55:24 [ 25] [ 2] [01] +13:55:24 [ 28] [ 9] [D00002000] +13:55:24 [ 32] [ 6] [198901] +13:55:24 [ 35] [ 32] [6213544000346541=491212014654791] +13:55:24 [ 37] [ 12] [507913206831] +13:55:24 [ 41] [ 8] [01529017] +13:55:24 [ 42] [ 15] [000000041529017] +13:55:24 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:55:24 [ 49] [ 3] [418] +13:55:24 [ 52] [ 16] [7A380D03B06AEA04] +13:55:24 ============================================================================ +13:55:24 + + +waiting on router queue for slot.... +13:55:24 Sending to : <0> +13:55:24 ============================================================================ +13:55:25 ============================================================================ +13:55:25 Slot Id : <134> +13:55:25 Transaction Type : RESPONSE +13:55:25 Received From : +13:55:25 ============================================================================ +13:55:25 FNo. Len. Field Value +13:55:25 ============================================================================ +13:55:25 [ 1] [ 4] [0210] +13:55:25 [ 2] [ 16] [6213544000346541] +13:55:25 [ 3] [ 6] [011000] +13:55:25 [ 4] [ 12] [000100000000] +13:55:25 [ 7] [ 10] [0320135544] +13:55:25 [ 11] [ 6] [206831] +13:55:25 [ 12] [ 6] [134051] +13:55:25 [ 13] [ 4] [0320] +13:55:25 [ 15] [ 4] [0320] +13:55:25 [ 18] [ 4] [6011] +13:55:25 [ 19] [ 3] [418] +13:55:25 [ 32] [ 6] [198901] +13:55:25 [ 35] [ 32] [6213544000346541=491212014654791] +13:55:25 [ 37] [ 12] [507913206831] +13:55:25 [ 38] [ 6] [996303] +13:55:25 [ 39] [ 2] [00] +13:55:25 [ 41] [ 8] [01529017] +13:55:25 [ 49] [ 3] [418] +13:55:25 [ 54] [ 40] [1001418C0024910815241002418C002491081524] +13:55:25 ============================================================================ +13:55:25 Sending to : +13:55:25 ============================================================================ +13:55:25 + + +waiting on router queue for slot.... +13:55:26 ============================================================================ +13:55:26 Slot Id : <134> +13:55:26 Transaction Type : RESPONSE +13:55:26 Received From : +13:55:26 ============================================================================ +13:55:26 FNo. Len. Field Value +13:55:26 ============================================================================ +13:55:26 [ 1] [ 4] [0210] +13:55:26 [ 2] [ 16] [6213544000346541] +13:55:26 [ 3] [ 6] [011000] +13:55:26 [ 4] [ 12] [000100000000] +13:55:26 [ 7] [ 10] [0320135544] +13:55:26 [ 11] [ 6] [206831] +13:55:26 [ 12] [ 6] [134051] +13:55:26 [ 13] [ 4] [0320] +13:55:26 [ 15] [ 4] [0320] +13:55:26 [ 18] [ 4] [6011] +13:55:26 [ 19] [ 3] [418] +13:55:26 [ 32] [ 6] [198901] +13:55:26 [ 35] [ 32] [6213544000346541=491212014654791] +13:55:26 [ 37] [ 12] [507913206831] +13:55:26 [ 38] [ 6] [996303] +13:55:26 [ 39] [ 2] [00] +13:55:26 [ 41] [ 8] [01529017] +13:55:26 [ 49] [ 3] [418] +13:55:26 [ 54] [ 40] [1001418C0024910815241002418C002491081524] +13:55:26 ============================================================================ +13:55:26 Calculate Source COMM Id = 5 +13:55:26 ============================================================================ +13:55:26 + + +waiting on router queue for slot.... +13:55:32 ============================================================================ +13:55:32 Slot Id : <103> +13:55:32 Transaction Type : REQUEST +13:55:32 Received From : +13:55:32 ============================================================================ +13:55:32 FNo. Len. Field Value +13:55:32 ============================================================================ +13:55:32 [ 1] [ 4] [0800] +13:55:32 [ 7] [ 10] [0320065439] +13:55:32 [ 11] [ 6] [156669] +13:55:32 [ 70] [ 3] [301] +13:55:32 ============================================================================ +13:55:32 + + +waiting on router queue for slot.... +13:55:32 Sending to : +13:55:32 ============================================================================ +13:55:32 ============================================================================ +13:55:32 Slot Id : <103> +13:55:32 Transaction Type : RESPONSE +13:55:32 Received From : +13:55:32 ============================================================================ +13:55:32 FNo. Len. Field Value +13:55:32 ============================================================================ +13:55:32 [ 1] [ 4] [0810] +13:55:32 [ 7] [ 10] [0320065439] +13:55:32 [ 11] [ 6] [156669] +13:55:32 [ 39] [ 2] [00] +13:55:32 [ 70] [ 3] [301] +13:55:32 ============================================================================ +13:55:32 Calculate Source COMM Id = 2 +13:55:32 ============================================================================ +13:55:32 + + +waiting on router queue for slot.... +13:55:34 ============================================================================ +13:55:34 Slot Id : <101> +13:55:34 Transaction Type : REQUEST +13:55:34 Received From : +13:55:34 ============================================================================ +13:55:34 FNo. Len. Field Value +13:55:34 ============================================================================ +13:55:34 [ 1] [ 4] [0800] +13:55:34 [ 2] [ 5] [02531] +13:55:34 [ 3] [ 6] [579138] +13:55:34 [ 7] [ 10] [0320065534] +13:55:34 [ 11] [ 6] [807220] +13:55:34 [ 15] [ 10] [0320065534] +13:55:34 [ 37] [ 11] [57913807220] +13:55:34 [ 70] [ 3] [001] +13:55:34 ============================================================================ +13:55:34 + + +waiting on router queue for slot.... +13:55:34 ============================================================================ +13:55:34 Slot Id : <101> +13:55:34 Transaction Type : RESPONSE +13:55:34 Received From : +13:55:34 ============================================================================ +13:55:34 FNo. Len. Field Value +13:55:34 ============================================================================ +13:55:34 [ 1] [ 4] [0810] +13:55:34 [ 7] [ 10] [0320065534] +13:55:34 [ 11] [ 6] [807220] +13:55:34 [ 15] [ 4] [0320] +13:55:34 [ 37] [ 12] [57913807220] +13:55:34 [ 39] [ 2] [00] +13:55:34 [ 70] [ 3] [001] +13:55:34 ============================================================================ +13:55:34 Sending to : +13:55:34 ============================================================================ +13:55:34 + + +waiting on router queue for slot.... +13:55:43 ============================================================================ +13:55:43 Slot Id : <96> +13:55:43 Transaction Type : REQUEST +13:55:43 Received From : +13:55:43 ============================================================================ +13:55:43 FNo. Len. Field Value +13:55:43 ============================================================================ +13:55:43 [ 1] [ 4] [0800] +13:55:43 [ 7] [ 10] [0320065450] +13:55:43 [ 11] [ 6] [156670] +13:55:43 [ 70] [ 3] [301] +13:55:43 ============================================================================ +13:55:43 + + +waiting on router queue for slot.... +13:55:43 Sending to : +13:55:43 ============================================================================ +13:55:43 ============================================================================ +13:55:43 Slot Id : <96> +13:55:43 Transaction Type : RESPONSE +13:55:43 Received From : +13:55:43 ============================================================================ +13:55:43 FNo. Len. Field Value +13:55:43 ============================================================================ +13:55:43 [ 1] [ 4] [0810] +13:55:43 [ 7] [ 10] [0320065450] +13:55:43 [ 11] [ 6] [156670] +13:55:43 [ 39] [ 2] [00] +13:55:43 [ 70] [ 3] [301] +13:55:43 ============================================================================ +13:55:43 Calculate Source COMM Id = 2 +13:55:43 ============================================================================ +13:55:43 + + +waiting on router queue for slot.... +13:55:58 ============================================================================ +13:55:58 Slot Id : <77> +13:55:58 Transaction Type : REQUEST +13:55:58 Received From : +13:55:58 ============================================================================ +13:55:58 FNo. Len. Field Value +13:55:58 ============================================================================ +13:55:58 [ 1] [ 4] [0800] +13:55:58 [ 7] [ 10] [0320065505] +13:55:58 [ 11] [ 6] [156671] +13:55:58 [ 70] [ 3] [301] +13:55:58 ============================================================================ +13:55:58 + + +waiting on router queue for slot.... +13:55:58 Sending to : +13:55:58 ============================================================================ +13:55:58 ============================================================================ +13:55:58 Slot Id : <77> +13:55:58 Transaction Type : RESPONSE +13:55:58 Received From : +13:55:58 ============================================================================ +13:55:58 FNo. Len. Field Value +13:55:58 ============================================================================ +13:55:58 [ 1] [ 4] [0810] +13:55:58 [ 7] [ 10] [0320065505] +13:55:58 [ 11] [ 6] [156671] +13:55:58 [ 39] [ 2] [00] +13:55:58 [ 70] [ 3] [301] +13:55:58 ============================================================================ +13:55:58 Calculate Source COMM Id = 2 +13:55:58 ============================================================================ +13:55:58 + + +waiting on router queue for slot.... +13:56:00 ============================================================================ +13:56:00 Slot Id : <71> +13:56:00 Transaction Type : REQUEST +13:56:00 Received From : +13:56:00 ============================================================================ +13:56:00 FNo. Len. Field Value +13:56:00 ============================================================================ +13:56:00 [ 1] [ 4] [0200] +13:56:00 [ 2] [ 16] [6213543000241975] +13:56:00 [ 3] [ 6] [011000] +13:56:00 [ 4] [ 12] [000040000000] +13:56:00 [ 7] [ 10] [0320065507] +13:56:00 [ 11] [ 6] [269427] +13:56:00 [ 12] [ 6] [135507] +13:56:00 [ 13] [ 4] [0320] +13:56:00 [ 14] [ 4] [4912] +13:56:00 [ 15] [ 4] [0320] +13:56:00 [ 18] [ 4] [6011] +13:56:00 [ 19] [ 3] [418] +13:56:00 [ 22] [ 3] [021] +13:56:00 [ 25] [ 2] [01] +13:56:00 [ 28] [ 9] [D00002000] +13:56:00 [ 32] [ 6] [180893] +13:56:00 [ 35] [ 32] [6213543000241975=491212014197023] +13:56:00 [ 37] [ 12] [507906269427] +13:56:00 [ 41] [ 8] [0323BKTP] +13:56:00 [ 42] [ 15] [999999 ] +13:56:00 [ 43] [ 40] [ATM BORKEO LOCATION TONPHOUENG, Tonphoue] +13:56:00 [ 49] [ 3] [418] +13:56:00 [ 52] [ 16] [78E79418560FFC50] +13:56:00 ============================================================================ +13:56:00 + + +waiting on router queue for slot.... +13:56:00 Sending to : +13:56:00 ============================================================================ +13:56:00 Sending to : +13:56:00 ============================================================================ +13:56:00 ============================================================================ +13:56:00 Slot Id : <71> +13:56:00 Transaction Type : REQUEST +13:56:00 Received From : +13:56:00 ============================================================================ +13:56:00 FNo. Len. Field Value +13:56:00 ============================================================================ +13:56:00 [ 1] [ 4] [0200] +13:56:00 [ 2] [ 16] [6213543000241975] +13:56:00 [ 3] [ 6] [011000] +13:56:00 [ 4] [ 12] [000040000000] +13:56:00 [ 7] [ 10] [0320065507] +13:56:00 [ 11] [ 6] [269427] +13:56:00 [ 12] [ 6] [135507] +13:56:00 [ 13] [ 4] [0320] +13:56:00 [ 14] [ 4] [4912] +13:56:00 [ 15] [ 4] [0320] +13:56:00 [ 18] [ 4] [6011] +13:56:00 [ 19] [ 3] [418] +13:56:00 [ 22] [ 3] [021] +13:56:00 [ 25] [ 2] [01] +13:56:00 [ 28] [ 9] [D00002000] +13:56:00 [ 32] [ 6] [180893] +13:56:00 [ 35] [ 32] [6213543000241975=491212014197023] +13:56:00 [ 37] [ 12] [507906269427] +13:56:00 [ 41] [ 8] [0323BKTP] +13:56:00 [ 42] [ 15] [999999 ] +13:56:00 [ 43] [ 40] [ATM BORKEO LOCATION TONPHOUENG, Tonphoue] +13:56:00 [ 49] [ 3] [418] +13:56:00 [ 52] [ 16] [78E79418560FFC50] +13:56:00 ============================================================================ +13:56:00 + + +waiting on router queue for slot.... +13:56:00 Sending to : +13:56:00 ============================================================================ +13:56:00 ============================================================================ +13:56:00 Slot Id : <71> +13:56:00 Transaction Type : REQUEST +13:56:00 Received From : +13:56:00 ============================================================================ +13:56:00 FNo. Len. Field Value +13:56:00 ============================================================================ +13:56:00 [ 1] [ 4] [0200] +13:56:00 [ 2] [ 16] [6213543000241975] +13:56:00 [ 3] [ 6] [011000] +13:56:00 [ 4] [ 12] [000040000000] +13:56:00 [ 7] [ 10] [0320065507] +13:56:00 [ 11] [ 6] [269427] +13:56:00 [ 12] [ 6] [135507] +13:56:00 [ 13] [ 4] [0320] +13:56:00 [ 14] [ 4] [4912] +13:56:00 [ 15] [ 4] [0320] +13:56:00 [ 18] [ 4] [6011] +13:56:00 [ 19] [ 3] [418] +13:56:00 [ 22] [ 3] [021] +13:56:00 [ 25] [ 2] [01] +13:56:00 [ 28] [ 9] [D00002000] +13:56:00 [ 32] [ 6] [180893] +13:56:00 [ 35] [ 32] [6213543000241975=491212014197023] +13:56:00 [ 37] [ 12] [507906269427] +13:56:00 [ 41] [ 8] [0323BKTP] +13:56:00 [ 42] [ 15] [999999 ] +13:56:00 [ 43] [ 40] [ATM BORKEO LOCATION TONPHOUENG, Tonphoue] +13:56:00 [ 49] [ 3] [418] +13:56:00 [ 52] [ 16] [0ACDD257D70E7610] +13:56:00 ============================================================================ +13:56:00 + + +waiting on router queue for slot.... +13:56:00 Sending to : <0> +13:56:00 ============================================================================ +13:56:00 ============================================================================ +13:56:00 Slot Id : <70> +13:56:00 Transaction Type : REQUEST +13:56:00 Received From : +13:56:00 ============================================================================ +13:56:00 FNo. Len. Field Value +13:56:00 ============================================================================ +13:56:00 [ 1] [ 4] [0200] +13:56:00 [ 2] [ 16] [6213544000346541] +13:56:00 [ 3] [ 6] [011000] +13:56:00 [ 4] [ 12] [000100000000] +13:56:00 [ 7] [ 10] [0320135621] +13:56:00 [ 11] [ 6] [206844] +13:56:00 [ 12] [ 6] [134127] +13:56:00 [ 13] [ 4] [0320] +13:56:00 [ 14] [ 4] [4912] +13:56:00 [ 15] [ 4] [0320] +13:56:00 [ 18] [ 4] [6011] +13:56:00 [ 19] [ 3] [418] +13:56:00 [ 22] [ 3] [021] +13:56:00 [ 25] [ 2] [01] +13:56:00 [ 28] [ 9] [D00002000] +13:56:00 [ 32] [ 6] [198901] +13:56:00 [ 35] [ 32] [6213544000346541=491212014654791] +13:56:00 [ 37] [ 12] [507913206844] +13:56:00 [ 41] [ 8] [01529017] +13:56:00 [ 42] [ 15] [000000041529017] +13:56:00 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:56:00 [ 49] [ 3] [418] +13:56:00 [ 52] [ 16] [5BC3BA0D5074E40B] +13:56:00 ============================================================================ +13:56:00 + + +waiting on router queue for slot.... +13:56:00 Sending to : +13:56:00 ============================================================================ +13:56:00 Sending to : +13:56:00 ============================================================================ +13:56:01 ============================================================================ +13:56:01 Slot Id : <70> +13:56:01 Transaction Type : REQUEST +13:56:01 Received From : +13:56:01 ============================================================================ +13:56:01 FNo. Len. Field Value +13:56:01 ============================================================================ +13:56:01 [ 1] [ 4] [0200] +13:56:01 [ 2] [ 16] [6213544000346541] +13:56:01 [ 3] [ 6] [011000] +13:56:01 [ 4] [ 12] [000100000000] +13:56:01 [ 7] [ 10] [0320135621] +13:56:01 [ 11] [ 6] [206844] +13:56:01 [ 12] [ 6] [134127] +13:56:01 [ 13] [ 4] [0320] +13:56:01 [ 14] [ 4] [4912] +13:56:01 [ 15] [ 4] [0320] +13:56:01 [ 18] [ 4] [6011] +13:56:01 [ 19] [ 3] [418] +13:56:01 [ 22] [ 3] [021] +13:56:01 [ 25] [ 2] [01] +13:56:01 [ 28] [ 9] [D00002000] +13:56:01 [ 32] [ 6] [198901] +13:56:01 [ 35] [ 32] [6213544000346541=491212014654791] +13:56:01 [ 37] [ 12] [507913206844] +13:56:01 [ 41] [ 8] [01529017] +13:56:01 [ 42] [ 15] [000000041529017] +13:56:01 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:56:01 [ 49] [ 3] [418] +13:56:01 [ 52] [ 16] [5BC3BA0D5074E40B] +13:56:01 ============================================================================ +13:56:01 + + +waiting on router queue for slot.... +13:56:01 Sending to : +13:56:01 ============================================================================ +13:56:01 ============================================================================ +13:56:01 Slot Id : <70> +13:56:01 Transaction Type : REQUEST +13:56:01 Received From : +13:56:01 ============================================================================ +13:56:01 FNo. Len. Field Value +13:56:01 ============================================================================ +13:56:01 [ 1] [ 4] [0200] +13:56:01 [ 2] [ 16] [6213544000346541] +13:56:01 [ 3] [ 6] [011000] +13:56:01 [ 4] [ 12] [000100000000] +13:56:01 [ 7] [ 10] [0320135621] +13:56:01 [ 11] [ 6] [206844] +13:56:01 [ 12] [ 6] [134127] +13:56:01 [ 13] [ 4] [0320] +13:56:01 [ 14] [ 4] [4912] +13:56:01 [ 15] [ 4] [0320] +13:56:01 [ 18] [ 4] [6011] +13:56:01 [ 19] [ 3] [418] +13:56:01 [ 22] [ 3] [021] +13:56:01 [ 25] [ 2] [01] +13:56:01 [ 28] [ 9] [D00002000] +13:56:01 [ 32] [ 6] [198901] +13:56:01 [ 35] [ 32] [6213544000346541=491212014654791] +13:56:01 [ 37] [ 12] [507913206844] +13:56:01 [ 41] [ 8] [01529017] +13:56:01 [ 42] [ 15] [000000041529017] +13:56:01 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:56:01 [ 49] [ 3] [418] +13:56:01 [ 52] [ 16] [7A380D03B06AEA04] +13:56:01 ============================================================================ +13:56:01 + + +waiting on router queue for slot.... +13:56:01 Sending to : <0> +13:56:01 ============================================================================ +13:56:01 ============================================================================ +13:56:01 Slot Id : <71> +13:56:01 Transaction Type : RESPONSE +13:56:01 Received From : +13:56:01 ============================================================================ +13:56:01 FNo. Len. Field Value +13:56:01 ============================================================================ +13:56:01 [ 1] [ 4] [0210] +13:56:01 [ 2] [ 16] [6213543000241975] +13:56:01 [ 3] [ 6] [011000] +13:56:01 [ 4] [ 12] [000040000000] +13:56:01 [ 7] [ 10] [0320065507] +13:56:01 [ 11] [ 6] [269427] +13:56:01 [ 12] [ 6] [135507] +13:56:01 [ 13] [ 4] [0320] +13:56:01 [ 15] [ 4] [0320] +13:56:01 [ 18] [ 4] [6011] +13:56:01 [ 19] [ 3] [418] +13:56:01 [ 32] [ 6] [180893] +13:56:01 [ 35] [ 32] [6213543000241975=491212014197023] +13:56:01 [ 37] [ 12] [507906269427] +13:56:01 [ 38] [ 6] [306318] +13:56:01 [ 39] [ 2] [00] +13:56:01 [ 41] [ 8] [0323BKTP] +13:56:01 [ 49] [ 3] [418] +13:56:01 [ 54] [ 40] [1001418C0000111000001002418C000011100000] +13:56:01 ============================================================================ +13:56:01 Sending to : +13:56:01 ============================================================================ +13:56:01 + + +waiting on router queue for slot.... +13:56:01 ============================================================================ +13:56:01 Slot Id : <70> +13:56:01 Transaction Type : RESPONSE +13:56:01 Received From : +13:56:01 ============================================================================ +13:56:01 FNo. Len. Field Value +13:56:01 ============================================================================ +13:56:01 [ 1] [ 4] [0210] +13:56:01 [ 2] [ 16] [6213544000346541] +13:56:01 [ 3] [ 6] [011000] +13:56:01 [ 4] [ 12] [000100000000] +13:56:01 [ 7] [ 10] [0320135621] +13:56:01 [ 11] [ 6] [206844] +13:56:01 [ 12] [ 6] [134127] +13:56:01 [ 13] [ 4] [0320] +13:56:01 [ 15] [ 4] [0320] +13:56:01 [ 18] [ 4] [6011] +13:56:01 [ 19] [ 3] [418] +13:56:01 [ 32] [ 6] [198901] +13:56:01 [ 35] [ 32] [6213544000346541=491212014654791] +13:56:01 [ 37] [ 12] [507913206844] +13:56:01 [ 38] [ 6] [810044] +13:56:01 [ 39] [ 2] [00] +13:56:01 [ 41] [ 8] [01529017] +13:56:01 [ 49] [ 3] [418] +13:56:01 [ 54] [ 40] [1001418C0023908815241002418C002390881524] +13:56:01 ============================================================================ +13:56:01 Sending to : +13:56:01 ============================================================================ +13:56:01 + + +waiting on router queue for slot.... +13:56:02 ============================================================================ +13:56:02 Slot Id : <71> +13:56:02 Transaction Type : RESPONSE +13:56:02 Received From : +13:56:02 ============================================================================ +13:56:02 FNo. Len. Field Value +13:56:02 ============================================================================ +13:56:02 [ 1] [ 4] [0210] +13:56:02 [ 2] [ 16] [6213543000241975] +13:56:02 [ 3] [ 6] [011000] +13:56:02 [ 4] [ 12] [000040000000] +13:56:02 [ 7] [ 10] [0320065507] +13:56:02 [ 11] [ 6] [269427] +13:56:02 [ 12] [ 6] [135507] +13:56:02 [ 13] [ 4] [0320] +13:56:02 [ 15] [ 4] [0320] +13:56:02 [ 18] [ 4] [6011] +13:56:02 [ 19] [ 3] [418] +13:56:02 [ 32] [ 6] [180893] +13:56:02 [ 35] [ 32] [6213543000241975=491212014197023] +13:56:02 [ 37] [ 12] [507906269427] +13:56:02 [ 38] [ 6] [306318] +13:56:02 [ 39] [ 2] [00] +13:56:02 [ 41] [ 8] [0323BKTP] +13:56:02 [ 49] [ 3] [418] +13:56:02 [ 54] [ 40] [1001418C0000111000001002418C000011100000] +13:56:02 ============================================================================ +13:56:02 Calculate Source COMM Id = 2 +13:56:02 ============================================================================ +13:56:02 + + +waiting on router queue for slot.... +13:56:04 ============================================================================ +13:56:04 Slot Id : <70> +13:56:04 Transaction Type : RESPONSE +13:56:04 Received From : +13:56:04 ============================================================================ +13:56:04 FNo. Len. Field Value +13:56:04 ============================================================================ +13:56:04 [ 1] [ 4] [0210] +13:56:04 [ 2] [ 16] [6213544000346541] +13:56:04 [ 3] [ 6] [011000] +13:56:04 [ 4] [ 12] [000100000000] +13:56:04 [ 7] [ 10] [0320135621] +13:56:04 [ 11] [ 6] [206844] +13:56:04 [ 12] [ 6] [134127] +13:56:04 [ 13] [ 4] [0320] +13:56:04 [ 15] [ 4] [0320] +13:56:04 [ 18] [ 4] [6011] +13:56:04 [ 19] [ 3] [418] +13:56:04 [ 32] [ 6] [198901] +13:56:04 [ 35] [ 32] [6213544000346541=491212014654791] +13:56:04 [ 37] [ 12] [507913206844] +13:56:04 [ 38] [ 6] [810044] +13:56:04 [ 39] [ 2] [00] +13:56:04 [ 41] [ 8] [01529017] +13:56:04 [ 49] [ 3] [418] +13:56:04 [ 54] [ 40] [1001418C0023908815241002418C002390881524] +13:56:04 ============================================================================ +13:56:04 Calculate Source COMM Id = 5 +13:56:04 ============================================================================ +13:56:04 + + +waiting on router queue for slot.... +13:56:05 ============================================================================ +13:56:05 Slot Id : <102> +13:56:05 Transaction Type : REQUEST +13:56:05 Received From : +13:56:05 ============================================================================ +13:56:05 FNo. Len. Field Value +13:56:05 ============================================================================ +13:56:05 [ 1] [ 4] [0200] +13:56:05 [ 2] [ 16] [6213548000459261] +13:56:05 [ 3] [ 6] [010000] +13:56:05 [ 4] [ 12] [000020000000] +13:56:05 [ 7] [ 10] [0320135356] +13:56:05 [ 11] [ 6] [947695] +13:56:05 [ 12] [ 6] [135356] +13:56:05 [ 13] [ 4] [0320] +13:56:05 [ 15] [ 4] [0320] +13:56:05 [ 18] [ 4] [6011] +13:56:05 [ 19] [ 3] [418] +13:56:05 [ 22] [ 3] [021] +13:56:05 [ 25] [ 2] [01] +13:56:05 [ 28] [ 9] [D00002000] +13:56:05 [ 32] [ 6] [668899] +13:56:05 [ 35] [ 32] [6213548000459261=180712015926918] +13:56:05 [ 37] [ 12] [507901963593] +13:56:05 [ 41] [ 8] [03020019] +13:56:05 [ 42] [ 15] [APT ] +13:56:05 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:56:05 [ 49] [ 3] [418] +13:56:05 [ 52] [ 16] [79939A5F9A13E219] +13:56:05 ============================================================================ +13:56:05 + + +waiting on router queue for slot.... +13:56:05 Sending to : +13:56:05 ============================================================================ +13:56:05 Sending to : +13:56:05 ============================================================================ +13:56:06 ============================================================================ +13:56:06 Slot Id : <102> +13:56:06 Transaction Type : REQUEST +13:56:06 Received From : +13:56:06 ============================================================================ +13:56:06 FNo. Len. Field Value +13:56:06 ============================================================================ +13:56:06 [ 1] [ 4] [0200] +13:56:06 [ 2] [ 16] [6213548000459261] +13:56:06 [ 3] [ 6] [010000] +13:56:06 [ 4] [ 12] [000020000000] +13:56:06 [ 7] [ 10] [0320135356] +13:56:06 [ 11] [ 6] [947695] +13:56:06 [ 12] [ 6] [135356] +13:56:06 [ 13] [ 4] [0320] +13:56:06 [ 15] [ 4] [0320] +13:56:06 [ 18] [ 4] [6011] +13:56:06 [ 19] [ 3] [418] +13:56:06 [ 22] [ 3] [021] +13:56:06 [ 25] [ 2] [01] +13:56:06 [ 28] [ 9] [D00002000] +13:56:06 [ 32] [ 6] [668899] +13:56:06 [ 35] [ 32] [6213548000459261=180712015926918] +13:56:06 [ 37] [ 12] [507901963593] +13:56:06 [ 41] [ 8] [03020019] +13:56:06 [ 42] [ 15] [APT ] +13:56:06 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:56:06 [ 49] [ 3] [418] +13:56:06 [ 52] [ 16] [79939A5F9A13E219] +13:56:06 ============================================================================ +13:56:06 + + +waiting on router queue for slot.... +13:56:06 Sending to : +13:56:06 ============================================================================ +13:56:06 ============================================================================ +13:56:06 Slot Id : <102> +13:56:06 Transaction Type : REQUEST +13:56:06 Received From : +13:56:06 ============================================================================ +13:56:06 FNo. Len. Field Value +13:56:06 ============================================================================ +13:56:06 [ 1] [ 4] [0200] +13:56:06 [ 2] [ 16] [6213548000459261] +13:56:06 [ 3] [ 6] [010000] +13:56:06 [ 4] [ 12] [000020000000] +13:56:06 [ 7] [ 10] [0320135356] +13:56:06 [ 11] [ 6] [947695] +13:56:06 [ 12] [ 6] [135356] +13:56:06 [ 13] [ 4] [0320] +13:56:06 [ 15] [ 4] [0320] +13:56:06 [ 18] [ 4] [6011] +13:56:06 [ 19] [ 3] [418] +13:56:06 [ 22] [ 3] [021] +13:56:06 [ 25] [ 2] [01] +13:56:06 [ 28] [ 9] [D00002000] +13:56:06 [ 32] [ 6] [668899] +13:56:06 [ 35] [ 32] [6213548000459261=180712015926918] +13:56:06 [ 37] [ 12] [507901963593] +13:56:06 [ 41] [ 8] [03020019] +13:56:06 [ 42] [ 15] [APT ] +13:56:06 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:56:06 [ 49] [ 3] [418] +13:56:06 [ 52] [ 16] [5EB76222E62C2E14] +13:56:06 ============================================================================ +13:56:06 + + +waiting on router queue for slot.... +13:56:06 Sending to : <0> +13:56:06 ============================================================================ +13:56:06 ============================================================================ +13:56:06 Slot Id : <102> +13:56:06 Transaction Type : RESPONSE +13:56:06 Received From : +13:56:06 ============================================================================ +13:56:06 FNo. Len. Field Value +13:56:06 ============================================================================ +13:56:06 [ 1] [ 4] [0210] +13:56:06 [ 2] [ 16] [6213548000459261] +13:56:06 [ 3] [ 6] [010000] +13:56:06 [ 4] [ 12] [000020000000] +13:56:06 [ 7] [ 10] [0320135356] +13:56:06 [ 11] [ 6] [947695] +13:56:06 [ 12] [ 6] [135356] +13:56:06 [ 13] [ 4] [0320] +13:56:06 [ 15] [ 4] [0320] +13:56:06 [ 18] [ 4] [6011] +13:56:06 [ 19] [ 3] [418] +13:56:06 [ 32] [ 6] [668899] +13:56:06 [ 35] [ 32] [6213548000459261=180712015926918] +13:56:06 [ 37] [ 12] [507901963593] +13:56:06 [ 38] [ 6] [613133] +13:56:06 [ 39] [ 2] [00] +13:56:06 [ 41] [ 8] [03020019] +13:56:06 [ 49] [ 3] [418] +13:56:06 [ 54] [ 40] [0001418C0002620938310002418C000262093831] +13:56:06 ============================================================================ +13:56:06 Sending to : +13:56:06 ============================================================================ +13:56:06 + + +waiting on router queue for slot.... +13:56:08 ============================================================================ +13:56:08 Slot Id : <102> +13:56:08 Transaction Type : RESPONSE +13:56:08 Received From : +13:56:08 ============================================================================ +13:56:08 FNo. Len. Field Value +13:56:08 ============================================================================ +13:56:08 [ 1] [ 4] [0210] +13:56:08 [ 2] [ 16] [6213548000459261] +13:56:08 [ 3] [ 6] [010000] +13:56:08 [ 4] [ 12] [000020000000] +13:56:08 [ 7] [ 10] [0320135356] +13:56:08 [ 11] [ 6] [947695] +13:56:08 [ 12] [ 6] [135356] +13:56:08 [ 13] [ 4] [0320] +13:56:08 [ 15] [ 4] [0320] +13:56:08 [ 18] [ 4] [6011] +13:56:08 [ 19] [ 3] [418] +13:56:08 [ 32] [ 6] [668899] +13:56:08 [ 35] [ 32] [6213548000459261=180712015926918] +13:56:08 [ 37] [ 12] [507901963593] +13:56:08 [ 38] [ 6] [613133] +13:56:08 [ 39] [ 2] [00] +13:56:08 [ 41] [ 8] [03020019] +13:56:08 [ 49] [ 3] [418] +13:56:08 [ 54] [ 40] [0001418C0002620938310002418C000262093831] +13:56:08 ============================================================================ +13:56:08 Calculate Source COMM Id = 4 +13:56:08 ============================================================================ +13:56:08 + + +waiting on router queue for slot.... +13:56:13 ============================================================================ +13:56:13 Slot Id : <109> +13:56:13 Transaction Type : REQUEST +13:56:13 Received From : +13:56:13 ============================================================================ +13:56:13 FNo. Len. Field Value +13:56:13 ============================================================================ +13:56:13 [ 1] [ 4] [0800] +13:56:13 [ 7] [ 10] [0320135559] +13:56:13 [ 11] [ 6] [093864] +13:56:13 [ 37] [ 12] [507913093864] +13:56:13 [ 70] [ 3] [ ] +13:56:13 ============================================================================ +13:56:13 + + +waiting on router queue for slot.... +13:56:13 Sending to : +13:56:13 ============================================================================ +13:56:13 ============================================================================ +13:56:13 Slot Id : <109> +13:56:13 Transaction Type : RESPONSE +13:56:13 Received From : +13:56:13 ============================================================================ +13:56:13 FNo. Len. Field Value +13:56:13 ============================================================================ +13:56:13 [ 1] [ 4] [0810] +13:56:13 [ 7] [ 10] [0320135559] +13:56:13 [ 11] [ 6] [093864] +13:56:13 [ 37] [ 12] [507913093864] +13:56:13 [ 39] [ 2] [91] +13:56:13 [ 70] [ 3] [ ] +13:56:13 ============================================================================ +13:56:13 Calculate Source COMM Id = 3 +13:56:13 ============================================================================ +13:56:13 + + +waiting on router queue for slot.... +13:56:13 ============================================================================ +13:56:13 Slot Id : <85> +13:56:13 Transaction Type : REQUEST +13:56:13 Received From : +13:56:13 ============================================================================ +13:56:13 FNo. Len. Field Value +13:56:13 ============================================================================ +13:56:13 [ 1] [ 4] [0200] +13:56:13 [ 2] [ 16] [6213545000206759] +13:56:13 [ 3] [ 6] [010000] +13:56:13 [ 4] [ 12] [000100000000] +13:56:13 [ 7] [ 10] [0320065518] +13:56:13 [ 11] [ 6] [269430] +13:56:13 [ 12] [ 6] [135518] +13:56:13 [ 13] [ 4] [0320] +13:56:13 [ 14] [ 4] [4912] +13:56:13 [ 15] [ 4] [0320] +13:56:13 [ 18] [ 4] [6011] +13:56:13 [ 19] [ 3] [418] +13:56:13 [ 22] [ 3] [021] +13:56:13 [ 25] [ 2] [01] +13:56:13 [ 28] [ 9] [D00002000] +13:56:13 [ 32] [ 6] [180893] +13:56:13 [ 35] [ 32] [6213545000206759=491212010675928] +13:56:13 [ 37] [ 12] [507906269430] +13:56:13 [ 41] [ 8] [0483XKNH] +13:56:13 [ 42] [ 15] [999999 ] +13:56:13 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:56:13 [ 49] [ 3] [418] +13:56:13 [ 52] [ 16] [EB6DBADD83A15A7A] +13:56:13 ============================================================================ +13:56:13 + + +waiting on router queue for slot.... +13:56:13 Sending to : +13:56:13 ============================================================================ +13:56:13 Sending to : +13:56:13 ============================================================================ +13:56:13 ============================================================================ +13:56:13 Slot Id : <85> +13:56:13 Transaction Type : REQUEST +13:56:13 Received From : +13:56:13 ============================================================================ +13:56:13 FNo. Len. Field Value +13:56:13 ============================================================================ +13:56:13 [ 1] [ 4] [0200] +13:56:13 [ 2] [ 16] [6213545000206759] +13:56:13 [ 3] [ 6] [010000] +13:56:13 [ 4] [ 12] [000100000000] +13:56:13 [ 7] [ 10] [0320065518] +13:56:13 [ 11] [ 6] [269430] +13:56:13 [ 12] [ 6] [135518] +13:56:13 [ 13] [ 4] [0320] +13:56:13 [ 14] [ 4] [4912] +13:56:13 [ 15] [ 4] [0320] +13:56:13 [ 18] [ 4] [6011] +13:56:13 [ 19] [ 3] [418] +13:56:13 [ 22] [ 3] [021] +13:56:13 [ 25] [ 2] [01] +13:56:13 [ 28] [ 9] [D00002000] +13:56:13 [ 32] [ 6] [180893] +13:56:13 [ 35] [ 32] [6213545000206759=491212010675928] +13:56:13 [ 37] [ 12] [507906269430] +13:56:13 [ 41] [ 8] [0483XKNH] +13:56:13 [ 42] [ 15] [999999 ] +13:56:13 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:56:13 [ 49] [ 3] [418] +13:56:13 [ 52] [ 16] [EB6DBADD83A15A7A] +13:56:13 ============================================================================ +13:56:13 + + +waiting on router queue for slot.... +13:56:13 Sending to : +13:56:13 ============================================================================ +13:56:14 ============================================================================ +13:56:14 Slot Id : <85> +13:56:14 Transaction Type : REQUEST +13:56:14 Received From : +13:56:14 ============================================================================ +13:56:14 FNo. Len. Field Value +13:56:14 ============================================================================ +13:56:14 [ 1] [ 4] [0200] +13:56:14 [ 2] [ 16] [6213545000206759] +13:56:14 [ 3] [ 6] [010000] +13:56:14 [ 4] [ 12] [000100000000] +13:56:14 [ 7] [ 10] [0320065518] +13:56:14 [ 11] [ 6] [269430] +13:56:14 [ 12] [ 6] [135518] +13:56:14 [ 13] [ 4] [0320] +13:56:14 [ 14] [ 4] [4912] +13:56:14 [ 15] [ 4] [0320] +13:56:14 [ 18] [ 4] [6011] +13:56:14 [ 19] [ 3] [418] +13:56:14 [ 22] [ 3] [021] +13:56:14 [ 25] [ 2] [01] +13:56:14 [ 28] [ 9] [D00002000] +13:56:14 [ 32] [ 6] [180893] +13:56:14 [ 35] [ 32] [6213545000206759=491212010675928] +13:56:14 [ 37] [ 12] [507906269430] +13:56:14 [ 41] [ 8] [0483XKNH] +13:56:14 [ 42] [ 15] [999999 ] +13:56:14 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +13:56:14 [ 49] [ 3] [418] +13:56:14 [ 52] [ 16] [6D16768D16F393F8] +13:56:14 ============================================================================ +13:56:14 + + +waiting on router queue for slot.... +13:56:14 Sending to : <0> +13:56:14 ============================================================================ +13:56:14 ============================================================================ +13:56:14 Slot Id : <85> +13:56:14 Transaction Type : RESPONSE +13:56:14 Received From : +13:56:14 ============================================================================ +13:56:14 FNo. Len. Field Value +13:56:14 ============================================================================ +13:56:14 [ 1] [ 4] [0210] +13:56:14 [ 2] [ 16] [6213545000206759] +13:56:14 [ 3] [ 6] [010000] +13:56:14 [ 4] [ 12] [000100000000] +13:56:14 [ 7] [ 10] [0320065518] +13:56:14 [ 11] [ 6] [269430] +13:56:14 [ 12] [ 6] [135518] +13:56:14 [ 13] [ 4] [0320] +13:56:14 [ 15] [ 4] [0320] +13:56:14 [ 18] [ 4] [6011] +13:56:14 [ 19] [ 3] [418] +13:56:14 [ 32] [ 6] [180893] +13:56:14 [ 35] [ 32] [6213545000206759=491212010675928] +13:56:14 [ 37] [ 12] [507906269430] +13:56:14 [ 38] [ 6] [472896] +13:56:14 [ 39] [ 2] [00] +13:56:14 [ 41] [ 8] [0483XKNH] +13:56:14 [ 49] [ 3] [418] +13:56:14 [ 54] [ 40] [0001418C0001744306390002418C000174430639] +13:56:14 ============================================================================ +13:56:14 Sending to : +13:56:14 ============================================================================ +13:56:14 + + +waiting on router queue for slot.... +13:56:14 ============================================================================ +13:56:14 Slot Id : <136> +13:56:14 Transaction Type : REQUEST +13:56:14 Received From : +13:56:14 ============================================================================ +13:56:14 FNo. Len. Field Value +13:56:14 ============================================================================ +13:56:14 [ 1] [ 4] [0800] +13:56:14 [ 7] [ 10] [0320065522] +13:56:14 [ 11] [ 6] [156672] +13:56:14 [ 70] [ 3] [301] +13:56:14 ============================================================================ +13:56:14 + + +waiting on router queue for slot.... +13:56:14 Sending to : +13:56:14 ============================================================================ +13:56:14 ============================================================================ +13:56:14 Slot Id : <136> +13:56:14 Transaction Type : RESPONSE +13:56:14 Received From : +13:56:14 ============================================================================ +13:56:14 FNo. Len. Field Value +13:56:14 ============================================================================ +13:56:14 [ 1] [ 4] [0810] +13:56:14 [ 7] [ 10] [0320065522] +13:56:14 [ 11] [ 6] [156672] +13:56:14 [ 39] [ 2] [00] +13:56:14 [ 70] [ 3] [301] +13:56:14 ============================================================================ +13:56:14 Calculate Source COMM Id = 2 +13:56:14 ============================================================================ +13:56:14 + + +waiting on router queue for slot.... +13:56:15 ============================================================================ +13:56:15 Slot Id : <85> +13:56:15 Transaction Type : RESPONSE +13:56:15 Received From : +13:56:15 ============================================================================ +13:56:15 FNo. Len. Field Value +13:56:15 ============================================================================ +13:56:15 [ 1] [ 4] [0210] +13:56:15 [ 2] [ 16] [6213545000206759] +13:56:15 [ 3] [ 6] [010000] +13:56:15 [ 4] [ 12] [000100000000] +13:56:15 [ 7] [ 10] [0320065518] +13:56:15 [ 11] [ 6] [269430] +13:56:15 [ 12] [ 6] [135518] +13:56:15 [ 13] [ 4] [0320] +13:56:15 [ 15] [ 4] [0320] +13:56:15 [ 18] [ 4] [6011] +13:56:15 [ 19] [ 3] [418] +13:56:15 [ 32] [ 6] [180893] +13:56:15 [ 35] [ 32] [6213545000206759=491212010675928] +13:56:15 [ 37] [ 12] [507906269430] +13:56:15 [ 38] [ 6] [472896] +13:56:15 [ 39] [ 2] [00] +13:56:15 [ 41] [ 8] [0483XKNH] +13:56:15 [ 49] [ 3] [418] +13:56:15 [ 54] [ 40] [0001418C0001744306390002418C000174430639] +13:56:15 ============================================================================ +13:56:15 Calculate Source COMM Id = 2 +13:56:15 ============================================================================ +13:56:15 + + +waiting on router queue for slot.... +13:56:18 ============================================================================ +13:56:18 Slot Id : <87> +13:56:18 Transaction Type : REQUEST +13:56:18 Received From : +13:56:18 ============================================================================ +13:56:18 FNo. Len. Field Value +13:56:18 ============================================================================ +13:56:18 [ 1] [ 4] [0200] +13:56:18 [ 2] [ 16] [6213544000238532] +13:56:18 [ 3] [ 6] [011000] +13:56:18 [ 4] [ 12] [000100000000] +13:56:18 [ 7] [ 10] [0320140405] +13:56:18 [ 11] [ 6] [168959] +13:56:18 [ 12] [ 6] [140405] +13:56:18 [ 13] [ 4] [0320] +13:56:18 [ 14] [ 4] [4912] +13:56:18 [ 15] [ 4] [0320] +13:56:18 [ 18] [ 4] [6011] +13:56:18 [ 22] [ 3] [900] +13:56:18 [ 25] [ 2] [02] +13:56:18 [ 28] [ 9] [D00002000] +13:56:18 [ 32] [ 6] [220699] +13:56:18 [ 35] [ 32] [6213544000238532=491212013853295] +13:56:18 [ 37] [ 12] [507900026369] +13:56:18 [ 41] [ 8] [01000200] +13:56:18 [ 42] [ 15] [APTRA ] +13:56:18 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:56:18 [ 49] [ 3] [418] +13:56:18 [ 52] [ 16] [053A4B108E818039] +13:56:18 ============================================================================ +13:56:18 + + +waiting on router queue for slot.... +13:56:18 Sending to : +13:56:18 ============================================================================ +13:56:18 Sending to : +13:56:18 ============================================================================ +13:56:18 ============================================================================ +13:56:18 Slot Id : <87> +13:56:18 Transaction Type : REQUEST +13:56:18 Received From : +13:56:18 ============================================================================ +13:56:18 FNo. Len. Field Value +13:56:18 ============================================================================ +13:56:18 [ 1] [ 4] [0200] +13:56:18 [ 2] [ 16] [6213544000238532] +13:56:18 [ 3] [ 6] [011000] +13:56:18 [ 4] [ 12] [000100000000] +13:56:18 [ 7] [ 10] [0320140405] +13:56:18 [ 11] [ 6] [168959] +13:56:18 [ 12] [ 6] [140405] +13:56:18 [ 13] [ 4] [0320] +13:56:18 [ 14] [ 4] [4912] +13:56:18 [ 15] [ 4] [0320] +13:56:18 [ 18] [ 4] [6011] +13:56:18 [ 22] [ 3] [900] +13:56:18 [ 25] [ 2] [02] +13:56:18 [ 28] [ 9] [D00002000] +13:56:18 [ 32] [ 6] [220699] +13:56:18 [ 35] [ 32] [6213544000238532=491212013853295] +13:56:18 [ 37] [ 12] [507900026369] +13:56:18 [ 41] [ 8] [01000200] +13:56:18 [ 42] [ 15] [APTRA ] +13:56:18 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:56:18 [ 49] [ 3] [418] +13:56:18 [ 52] [ 16] [053A4B108E818039] +13:56:18 ============================================================================ +13:56:18 + + +waiting on router queue for slot.... +13:56:18 Sending to : +13:56:18 ============================================================================ +13:56:18 ============================================================================ +13:56:18 Slot Id : <87> +13:56:18 Transaction Type : REQUEST +13:56:18 Received From : +13:56:18 ============================================================================ +13:56:18 FNo. Len. Field Value +13:56:18 ============================================================================ +13:56:18 [ 1] [ 4] [0200] +13:56:18 [ 2] [ 16] [6213544000238532] +13:56:18 [ 3] [ 6] [011000] +13:56:18 [ 4] [ 12] [000100000000] +13:56:18 [ 7] [ 10] [0320140405] +13:56:18 [ 11] [ 6] [168959] +13:56:18 [ 12] [ 6] [140405] +13:56:18 [ 13] [ 4] [0320] +13:56:18 [ 14] [ 4] [4912] +13:56:18 [ 15] [ 4] [0320] +13:56:18 [ 18] [ 4] [6011] +13:56:18 [ 22] [ 3] [900] +13:56:18 [ 25] [ 2] [02] +13:56:18 [ 28] [ 9] [D00002000] +13:56:18 [ 32] [ 6] [220699] +13:56:18 [ 35] [ 32] [6213544000238532=491212013853295] +13:56:18 [ 37] [ 12] [507900026369] +13:56:18 [ 41] [ 8] [01000200] +13:56:18 [ 42] [ 15] [APTRA ] +13:56:18 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +13:56:18 [ 49] [ 3] [418] +13:56:18 [ 52] [ 16] [F0D3388834810BB9] +13:56:18 ============================================================================ +13:56:18 + + +waiting on router queue for slot.... +13:56:18 Sending to : <0> +13:56:18 ============================================================================ +13:56:19 ============================================================================ +13:56:19 Slot Id : <87> +13:56:19 Transaction Type : RESPONSE +13:56:19 Received From : +13:56:19 ============================================================================ +13:56:19 FNo. Len. Field Value +13:56:19 ============================================================================ +13:56:19 [ 1] [ 4] [0210] +13:56:19 [ 2] [ 16] [6213544000238532] +13:56:19 [ 3] [ 6] [011000] +13:56:19 [ 4] [ 12] [000100000000] +13:56:19 [ 7] [ 10] [0320140405] +13:56:19 [ 11] [ 6] [168959] +13:56:19 [ 12] [ 6] [140405] +13:56:19 [ 13] [ 4] [0320] +13:56:19 [ 15] [ 4] [0320] +13:56:19 [ 18] [ 4] [6011] +13:56:19 [ 32] [ 6] [220699] +13:56:19 [ 35] [ 32] [6213544000238532=491212013853295] +13:56:19 [ 37] [ 12] [507900026369] +13:56:19 [ 38] [ 6] [456358] +13:56:19 [ 39] [ 2] [00] +13:56:19 [ 41] [ 8] [01000200] +13:56:19 [ 49] [ 3] [418] +13:56:19 [ 54] [ 40] [1001418C0092584885161002418C009258488516] +13:56:19 ============================================================================ +13:56:19 Sending to : +13:56:19 ============================================================================ +13:56:19 + + +waiting on router queue for slot.... +13:56:21 ============================================================================ +13:56:21 Slot Id : <87> +13:56:21 Transaction Type : RESPONSE +13:56:21 Received From : +13:56:21 ============================================================================ +13:56:21 FNo. Len. Field Value +13:56:21 ============================================================================ +13:56:21 [ 1] [ 4] [0210] +13:56:21 [ 2] [ 16] [6213544000238532] +13:56:21 [ 3] [ 6] [011000] +13:56:21 [ 4] [ 12] [000100000000] +13:56:21 [ 7] [ 10] [0320140405] +13:56:21 [ 11] [ 6] [168959] +13:56:21 [ 12] [ 6] [140405] +13:56:21 [ 13] [ 4] [0320] +13:56:21 [ 15] [ 4] [0320] +13:56:21 [ 18] [ 4] [6011] +13:56:21 [ 32] [ 6] [220699] +13:56:21 [ 35] [ 32] [6213544000238532=491212013853295] +13:56:21 [ 37] [ 12] [507900026369] +13:56:21 [ 38] [ 6] [456358] +13:56:21 [ 39] [ 2] [00] +13:56:21 [ 41] [ 8] [01000200] +13:56:21 [ 49] [ 3] [418] +13:56:21 [ 54] [ 40] [1001418C0092584885161002418C009258488516] +13:56:21 ============================================================================ +13:56:21 Calculate Source COMM Id = 1 +13:56:21 ============================================================================ +13:56:21 + + +waiting on router queue for slot.... +13:56:21 ============================================================================ +13:56:21 Slot Id : <129> +13:56:21 Transaction Type : REQUEST +13:56:21 Received From : +13:56:21 ============================================================================ +13:56:21 FNo. Len. Field Value +13:56:21 ============================================================================ +13:56:21 [ 1] [ 4] [0800] +13:56:21 [ 7] [ 10] [0320065412] +13:56:21 [ 11] [ 6] [015380] +13:56:21 [ 37] [ 12] [57913015380] +13:56:21 [ 70] [ 3] [301] +13:56:21 ============================================================================ +13:56:21 + + +waiting on router queue for slot.... +13:56:21 Sending to : +13:56:21 ============================================================================ +13:56:21 ============================================================================ +13:56:21 Slot Id : <129> +13:56:21 Transaction Type : RESPONSE +13:56:21 Received From : +13:56:21 ============================================================================ +13:56:21 FNo. Len. Field Value +13:56:21 ============================================================================ +13:56:21 [ 1] [ 4] [0810] +13:56:21 [ 7] [ 10] [0320065412] +13:56:21 [ 11] [ 6] [015380] +13:56:21 [ 37] [ 12] [579130153800] +13:56:21 [ 39] [ 2] [00] +13:56:21 [ 70] [ 3] [810] +13:56:21 ============================================================================ +13:56:21 Calculate Source COMM Id = 4 +13:56:21 ============================================================================ +13:56:21 + + +waiting on router queue for slot.... +13:56:25 ============================================================================ +13:56:25 Slot Id : <131> +13:56:25 Transaction Type : REQUEST +13:56:25 Received From : +13:56:25 ============================================================================ +13:56:25 FNo. Len. Field Value +13:56:25 ============================================================================ +13:56:25 [ 1] [ 4] [0200] +13:56:25 [ 2] [ 16] [6688990030009672] +13:56:25 [ 3] [ 6] [301000] +13:56:25 [ 4] [ 12] [000000000000] +13:56:25 [ 7] [ 10] [0320135620] +13:56:25 [ 11] [ 6] [763731] +13:56:25 [ 12] [ 6] [135620] +13:56:25 [ 13] [ 4] [0320] +13:56:25 [ 15] [ 4] [0320] +13:56:25 [ 18] [ 4] [6011] +13:56:25 [ 22] [ 3] [900] +13:56:25 [ 25] [ 2] [02] +13:56:25 [ 28] [ 9] [D00000000] +13:56:25 [ 32] [ 6] [621354] +13:56:25 [ 35] [ 37] [6688990030009672=98011261125604100000] +13:56:25 [ 37] [ 12] [507904724381] +13:56:25 [ 41] [ 8] [18001100] +13:56:25 [ 42] [ 15] [NATIVE ] +13:56:25 [ 43] [ 40] [Ban Naxong May LAO] +13:56:25 [ 49] [ 3] [418] +13:56:25 [ 52] [ 16] [0B45F86DAA83D323] +13:56:25 ============================================================================ +13:56:25 + + +waiting on router queue for slot.... +13:56:25 Sending to : +13:56:25 ============================================================================ +13:56:25 Sending to : +13:56:25 ============================================================================ +13:56:25 ============================================================================ +13:56:25 Slot Id : <131> +13:56:25 Transaction Type : REQUEST +13:56:25 Received From : +13:56:25 ============================================================================ +13:56:25 FNo. Len. Field Value +13:56:25 ============================================================================ +13:56:25 [ 1] [ 4] [0200] +13:56:25 [ 2] [ 16] [6688990030009672] +13:56:25 [ 3] [ 6] [301000] +13:56:25 [ 4] [ 12] [000000000000] +13:56:25 [ 7] [ 10] [0320135620] +13:56:25 [ 11] [ 6] [763731] +13:56:25 [ 12] [ 6] [135620] +13:56:25 [ 13] [ 4] [0320] +13:56:25 [ 15] [ 4] [0320] +13:56:25 [ 18] [ 4] [6011] +13:56:25 [ 22] [ 3] [900] +13:56:25 [ 25] [ 2] [02] +13:56:25 [ 28] [ 9] [D00000000] +13:56:25 [ 32] [ 6] [621354] +13:56:25 [ 35] [ 37] [6688990030009672=98011261125604100000] +13:56:25 [ 37] [ 12] [507904724381] +13:56:25 [ 41] [ 8] [18001100] +13:56:25 [ 42] [ 15] [NATIVE ] +13:56:25 [ 43] [ 40] [Ban Naxong May LAO] +13:56:25 [ 49] [ 3] [418] +13:56:25 [ 52] [ 16] [0B45F86DAA83D323] +13:56:25 ============================================================================ +13:56:25 + + +waiting on router queue for slot.... +13:56:25 Sending to : +13:56:25 ============================================================================ +13:56:25 ============================================================================ +13:56:25 Slot Id : <131> +13:56:25 Transaction Type : REQUEST +13:56:25 Received From : +13:56:25 ============================================================================ +13:56:25 FNo. Len. Field Value +13:56:25 ============================================================================ +13:56:25 [ 1] [ 4] [0200] +13:56:25 [ 2] [ 16] [6688990030009672] +13:56:25 [ 3] [ 6] [301000] +13:56:25 [ 4] [ 12] [000000000000] +13:56:25 [ 7] [ 10] [0320135620] +13:56:25 [ 11] [ 6] [763731] +13:56:25 [ 12] [ 6] [135620] +13:56:25 [ 13] [ 4] [0320] +13:56:25 [ 15] [ 4] [0320] +13:56:25 [ 18] [ 4] [6011] +13:56:25 [ 22] [ 3] [900] +13:56:25 [ 25] [ 2] [02] +13:56:25 [ 28] [ 9] [D00000000] +13:56:25 [ 32] [ 6] [621354] +13:56:25 [ 35] [ 37] [6688990030009672=98011261125604100000] +13:56:25 [ 37] [ 12] [507904724381] +13:56:25 [ 41] [ 8] [18001100] +13:56:25 [ 42] [ 15] [NATIVE ] +13:56:25 [ 43] [ 40] [Ban Naxong May LAO] +13:56:25 [ 49] [ 3] [418] +13:56:25 [ 52] [ 16] [EE5D45B2E8F41C0F] +13:56:25 ============================================================================ +13:56:25 + + +waiting on router queue for slot.... +13:56:25 Sending to : <4> +13:56:25 ============================================================================ +13:56:26 ============================================================================ +13:56:26 Slot Id : <131> +13:56:26 Transaction Type : RESPONSE +13:56:26 Received From : +13:56:26 ============================================================================ +13:56:26 FNo. Len. Field Value +13:56:26 ============================================================================ +13:56:26 [ 1] [ 4] [0210] +13:56:26 [ 2] [ 16] [6688990030009672] +13:56:26 [ 3] [ 6] [301000] +13:56:26 [ 4] [ 12] [000000000000] +13:56:26 [ 11] [ 6] [763731] +13:56:26 [ 12] [ 6] [135620] +13:56:26 [ 15] [ 4] [0320] +13:56:26 [ 18] [ 4] [6011] +13:56:26 [ 32] [ 6] [621354] +13:56:26 [ 35] [ 37] [6688990030009672=98011261125604100000] +13:56:26 [ 37] [ 12] [507904724381] +13:56:26 [ 38] [ 6] [213638] +13:56:26 [ 39] [ 2] [00] +13:56:26 [ 41] [ 8] [18001100] +13:56:26 [ 49] [ 3] [418] +13:56:26 [ 54] [ 20] [1002418C000016127076] +13:56:26 ============================================================================ +13:56:26 Sending to : +13:56:26 ============================================================================ +13:56:26 + + +waiting on router queue for slot.... +13:56:28 ============================================================================ +13:56:28 Slot Id : <131> +13:56:28 Transaction Type : RESPONSE +13:56:28 Received From : +13:56:28 ============================================================================ +13:56:28 FNo. Len. Field Value +13:56:28 ============================================================================ +13:56:28 [ 1] [ 4] [0210] +13:56:28 [ 2] [ 16] [6688990030009672] +13:56:28 [ 3] [ 6] [301000] +13:56:28 [ 4] [ 12] [000000000000] +13:56:28 [ 11] [ 6] [763731] +13:56:28 [ 12] [ 6] [135620] +13:56:28 [ 15] [ 4] [0320] +13:56:28 [ 18] [ 4] [6011] +13:56:28 [ 32] [ 6] [621354] +13:56:28 [ 35] [ 37] [6688990030009672=98011261125604100000] +13:56:28 [ 37] [ 12] [507904724381] +13:56:28 [ 38] [ 6] [213638] +13:56:28 [ 39] [ 2] [00] +13:56:28 [ 41] [ 8] [18001100] +13:56:28 [ 49] [ 3] [418] +13:56:28 [ 54] [ 20] [1002418C000016127076] +13:56:28 ============================================================================ +13:56:28 Calculate Source COMM Id = 0 +13:56:28 ============================================================================ +13:56:28 + + +waiting on router queue for slot.... +13:56:30 ============================================================================ +13:56:30 Slot Id : <105> +13:56:30 Transaction Type : REQUEST +13:56:30 Received From : +13:56:30 ============================================================================ +13:56:30 FNo. Len. Field Value +13:56:30 ============================================================================ +13:56:30 [ 1] [ 4] [0800] +13:56:30 [ 7] [ 10] [0320065537] +13:56:30 [ 11] [ 6] [156673] +13:56:30 [ 70] [ 3] [301] +13:56:30 ============================================================================ +13:56:30 + + +waiting on router queue for slot.... +13:56:30 Sending to : +13:56:30 ============================================================================ +13:56:30 ============================================================================ +13:56:30 Slot Id : <105> +13:56:30 Transaction Type : RESPONSE +13:56:30 Received From : +13:56:30 ============================================================================ +13:56:30 FNo. Len. Field Value +13:56:30 ============================================================================ +13:56:30 [ 1] [ 4] [0810] +13:56:30 [ 7] [ 10] [0320065537] +13:56:30 [ 11] [ 6] [156673] +13:56:30 [ 39] [ 2] [00] +13:56:30 [ 70] [ 3] [301] +13:56:30 ============================================================================ +13:56:30 Calculate Source COMM Id = 2 +13:56:30 ============================================================================ +13:56:30 + + +waiting on router queue for slot.... +13:56:36 ============================================================================ +13:56:36 Slot Id : <104> +13:56:36 Transaction Type : REQUEST +13:56:36 Received From : +13:56:36 ============================================================================ +13:56:36 FNo. Len. Field Value +13:56:36 ============================================================================ +13:56:36 [ 1] [ 4] [0800] +13:56:36 [ 2] [ 5] [02531] +13:56:36 [ 3] [ 6] [579138] +13:56:36 [ 7] [ 10] [0320065636] +13:56:36 [ 11] [ 6] [807221] +13:56:36 [ 15] [ 10] [0320065636] +13:56:36 [ 37] [ 11] [57913807221] +13:56:36 [ 70] [ 3] [001] +13:56:36 ============================================================================ +13:56:36 + + +waiting on router queue for slot.... +13:56:36 ============================================================================ +13:56:36 Slot Id : <104> +13:56:36 Transaction Type : RESPONSE +13:56:36 Received From : +13:56:36 ============================================================================ +13:56:36 FNo. Len. Field Value +13:56:36 ============================================================================ +13:56:36 [ 1] [ 4] [0810] +13:56:36 [ 7] [ 10] [0320065636] +13:56:36 [ 11] [ 6] [807221] +13:56:36 [ 15] [ 4] [0320] +13:56:36 [ 37] [ 12] [57913807221] +13:56:36 [ 39] [ 2] [00] +13:56:36 [ 70] [ 3] [001] +13:56:36 ============================================================================ +13:56:36 Sending to : +13:56:36 ============================================================================ +13:56:36 + + +waiting on router queue for slot.... +13:56:42 ============================================================================ +13:56:42 Slot Id : <138> +13:56:42 Transaction Type : REQUEST +13:56:42 Received From : +13:56:42 ============================================================================ +13:56:42 FNo. Len. Field Value +13:56:42 ============================================================================ +13:56:42 [ 1] [ 4] [0800] +13:56:42 [ 7] [ 10] [0320065548] +13:56:42 [ 11] [ 6] [156674] +13:56:42 [ 70] [ 3] [301] +13:56:42 ============================================================================ +13:56:42 + + +waiting on router queue for slot.... +13:56:42 Sending to : +13:56:42 ============================================================================ +13:56:42 ============================================================================ +13:56:42 Slot Id : <138> +13:56:42 Transaction Type : RESPONSE +13:56:42 Received From : +13:56:42 ============================================================================ +13:56:42 FNo. Len. Field Value +13:56:42 ============================================================================ +13:56:42 [ 1] [ 4] [0810] +13:56:42 [ 7] [ 10] [0320065548] +13:56:42 [ 11] [ 6] [156674] +13:56:42 [ 39] [ 2] [00] +13:56:42 [ 70] [ 3] [301] +13:56:42 ============================================================================ +13:56:42 Calculate Source COMM Id = 2 +13:56:42 ============================================================================ +13:56:42 + + +waiting on router queue for slot.... +13:56:47 ============================================================================ +13:56:47 Slot Id : <112> +13:56:47 Transaction Type : REQUEST +13:56:47 Received From : +13:56:47 ============================================================================ +13:56:47 FNo. Len. Field Value +13:56:47 ============================================================================ +13:56:47 [ 1] [ 4] [0200] +13:56:47 [ 2] [ 16] [6213544000346541] +13:56:47 [ 3] [ 6] [011000] +13:56:47 [ 4] [ 12] [000100000000] +13:56:47 [ 7] [ 10] [0320135708] +13:56:47 [ 11] [ 6] [206851] +13:56:47 [ 12] [ 6] [134214] +13:56:47 [ 13] [ 4] [0320] +13:56:47 [ 14] [ 4] [4912] +13:56:47 [ 15] [ 4] [0320] +13:56:47 [ 18] [ 4] [6011] +13:56:47 [ 19] [ 3] [418] +13:56:47 [ 22] [ 3] [021] +13:56:47 [ 25] [ 2] [01] +13:56:47 [ 28] [ 9] [D00002000] +13:56:47 [ 32] [ 6] [198901] +13:56:47 [ 35] [ 32] [6213544000346541=491212014654791] +13:56:47 [ 37] [ 12] [507913206851] +13:56:47 [ 41] [ 8] [01529017] +13:56:47 [ 42] [ 15] [000000041529017] +13:56:47 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:56:47 [ 49] [ 3] [418] +13:56:47 [ 52] [ 16] [5BC3BA0D5074E40B] +13:56:47 ============================================================================ +13:56:47 + + +waiting on router queue for slot.... +13:56:47 Sending to : +13:56:47 ============================================================================ +13:56:47 Sending to : +13:56:47 ============================================================================ +13:56:47 ============================================================================ +13:56:47 Slot Id : <112> +13:56:47 Transaction Type : REQUEST +13:56:47 Received From : +13:56:47 ============================================================================ +13:56:47 FNo. Len. Field Value +13:56:47 ============================================================================ +13:56:47 [ 1] [ 4] [0200] +13:56:47 [ 2] [ 16] [6213544000346541] +13:56:47 [ 3] [ 6] [011000] +13:56:47 [ 4] [ 12] [000100000000] +13:56:47 [ 7] [ 10] [0320135708] +13:56:47 [ 11] [ 6] [206851] +13:56:47 [ 12] [ 6] [134214] +13:56:47 [ 13] [ 4] [0320] +13:56:47 [ 14] [ 4] [4912] +13:56:47 [ 15] [ 4] [0320] +13:56:47 [ 18] [ 4] [6011] +13:56:47 [ 19] [ 3] [418] +13:56:47 [ 22] [ 3] [021] +13:56:47 [ 25] [ 2] [01] +13:56:47 [ 28] [ 9] [D00002000] +13:56:47 [ 32] [ 6] [198901] +13:56:47 [ 35] [ 32] [6213544000346541=491212014654791] +13:56:47 [ 37] [ 12] [507913206851] +13:56:47 [ 41] [ 8] [01529017] +13:56:47 [ 42] [ 15] [000000041529017] +13:56:47 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:56:47 [ 49] [ 3] [418] +13:56:47 [ 52] [ 16] [5BC3BA0D5074E40B] +13:56:47 ============================================================================ +13:56:47 + + +waiting on router queue for slot.... +13:56:47 Sending to : +13:56:47 ============================================================================ +13:56:47 ============================================================================ +13:56:47 Slot Id : <112> +13:56:47 Transaction Type : REQUEST +13:56:47 Received From : +13:56:47 ============================================================================ +13:56:47 FNo. Len. Field Value +13:56:47 ============================================================================ +13:56:47 [ 1] [ 4] [0200] +13:56:47 [ 2] [ 16] [6213544000346541] +13:56:47 [ 3] [ 6] [011000] +13:56:47 [ 4] [ 12] [000100000000] +13:56:47 [ 7] [ 10] [0320135708] +13:56:47 [ 11] [ 6] [206851] +13:56:47 [ 12] [ 6] [134214] +13:56:47 [ 13] [ 4] [0320] +13:56:47 [ 14] [ 4] [4912] +13:56:47 [ 15] [ 4] [0320] +13:56:47 [ 18] [ 4] [6011] +13:56:47 [ 19] [ 3] [418] +13:56:47 [ 22] [ 3] [021] +13:56:47 [ 25] [ 2] [01] +13:56:47 [ 28] [ 9] [D00002000] +13:56:47 [ 32] [ 6] [198901] +13:56:47 [ 35] [ 32] [6213544000346541=491212014654791] +13:56:47 [ 37] [ 12] [507913206851] +13:56:47 [ 41] [ 8] [01529017] +13:56:47 [ 42] [ 15] [000000041529017] +13:56:47 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:56:47 [ 49] [ 3] [418] +13:56:47 [ 52] [ 16] [7A380D03B06AEA04] +13:56:47 ============================================================================ +13:56:47 + + +waiting on router queue for slot.... +13:56:47 Sending to : <0> +13:56:47 ============================================================================ +13:56:48 ============================================================================ +13:56:48 Slot Id : <112> +13:56:48 Transaction Type : RESPONSE +13:56:48 Received From : +13:56:48 ============================================================================ +13:56:48 FNo. Len. Field Value +13:56:48 ============================================================================ +13:56:48 [ 1] [ 4] [0210] +13:56:48 [ 2] [ 16] [6213544000346541] +13:56:48 [ 3] [ 6] [011000] +13:56:48 [ 4] [ 12] [000100000000] +13:56:48 [ 7] [ 10] [0320135708] +13:56:48 [ 11] [ 6] [206851] +13:56:48 [ 12] [ 6] [134214] +13:56:48 [ 13] [ 4] [0320] +13:56:48 [ 15] [ 4] [0320] +13:56:48 [ 18] [ 4] [6011] +13:56:48 [ 19] [ 3] [418] +13:56:48 [ 32] [ 6] [198901] +13:56:48 [ 35] [ 32] [6213544000346541=491212014654791] +13:56:48 [ 37] [ 12] [507913206851] +13:56:48 [ 38] [ 6] [358000] +13:56:48 [ 39] [ 2] [00] +13:56:48 [ 41] [ 8] [01529017] +13:56:48 [ 49] [ 3] [418] +13:56:48 [ 54] [ 40] [1001418C0022906815241002418C002290681524] +13:56:48 ============================================================================ +13:56:48 Sending to : +13:56:48 ============================================================================ +13:56:48 + + +waiting on router queue for slot.... +13:56:50 ============================================================================ +13:56:50 Slot Id : <112> +13:56:50 Transaction Type : RESPONSE +13:56:50 Received From : +13:56:50 ============================================================================ +13:56:50 FNo. Len. Field Value +13:56:50 ============================================================================ +13:56:50 [ 1] [ 4] [0210] +13:56:50 [ 2] [ 16] [6213544000346541] +13:56:50 [ 3] [ 6] [011000] +13:56:50 [ 4] [ 12] [000100000000] +13:56:50 [ 7] [ 10] [0320135708] +13:56:50 [ 11] [ 6] [206851] +13:56:50 [ 12] [ 6] [134214] +13:56:50 [ 13] [ 4] [0320] +13:56:50 [ 15] [ 4] [0320] +13:56:50 [ 18] [ 4] [6011] +13:56:50 [ 19] [ 3] [418] +13:56:50 [ 32] [ 6] [198901] +13:56:50 [ 35] [ 32] [6213544000346541=491212014654791] +13:56:50 [ 37] [ 12] [507913206851] +13:56:50 [ 38] [ 6] [358000] +13:56:50 [ 39] [ 2] [00] +13:56:50 [ 41] [ 8] [01529017] +13:56:50 [ 49] [ 3] [418] +13:56:50 [ 54] [ 40] [1001418C0022906815241002418C002290681524] +13:56:50 ============================================================================ +13:56:50 Calculate Source COMM Id = 5 +13:56:50 ============================================================================ +13:56:50 + + +waiting on router queue for slot.... +13:56:50 ============================================================================ +13:56:50 Slot Id : <116> +13:56:50 Transaction Type : REQUEST +13:56:50 Received From : +13:56:50 ============================================================================ +13:56:50 FNo. Len. Field Value +13:56:50 ============================================================================ +13:56:50 [ 1] [ 4] [0200] +13:56:50 [ 2] [ 16] [6213541000272461] +13:56:50 [ 3] [ 6] [300000] +13:56:50 [ 4] [ 12] [000000000000] +13:56:50 [ 7] [ 10] [0320135440] +13:56:50 [ 11] [ 6] [947711] +13:56:50 [ 12] [ 6] [135440] +13:56:50 [ 13] [ 4] [0320] +13:56:50 [ 15] [ 4] [0320] +13:56:50 [ 18] [ 4] [6011] +13:56:50 [ 19] [ 3] [418] +13:56:50 [ 22] [ 3] [021] +13:56:50 [ 25] [ 2] [01] +13:56:50 [ 28] [ 9] [D00000000] +13:56:50 [ 32] [ 6] [668899] +13:56:50 [ 35] [ 32] [6213541000272461=491212017246529] +13:56:50 [ 37] [ 12] [507901541715] +13:56:50 [ 41] [ 8] [03020016] +13:56:50 [ 42] [ 15] [APT ] +13:56:50 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +13:56:50 [ 49] [ 3] [418] +13:56:50 [ 52] [ 16] [3E99EE10882FC9C8] +13:56:50 ============================================================================ +13:56:50 + + +waiting on router queue for slot.... +13:56:50 Sending to : +13:56:50 ============================================================================ +13:56:50 Sending to : +13:56:50 ============================================================================ +13:56:50 ============================================================================ +13:56:50 Slot Id : <116> +13:56:50 Transaction Type : REQUEST +13:56:50 Received From : +13:56:50 ============================================================================ +13:56:50 FNo. Len. Field Value +13:56:50 ============================================================================ +13:56:50 [ 1] [ 4] [0200] +13:56:50 [ 2] [ 16] [6213541000272461] +13:56:50 [ 3] [ 6] [300000] +13:56:50 [ 4] [ 12] [000000000000] +13:56:50 [ 7] [ 10] [0320135440] +13:56:50 [ 11] [ 6] [947711] +13:56:50 [ 12] [ 6] [135440] +13:56:50 [ 13] [ 4] [0320] +13:56:50 [ 15] [ 4] [0320] +13:56:50 [ 18] [ 4] [6011] +13:56:50 [ 19] [ 3] [418] +13:56:50 [ 22] [ 3] [021] +13:56:50 [ 25] [ 2] [01] +13:56:50 [ 28] [ 9] [D00000000] +13:56:50 [ 32] [ 6] [668899] +13:56:50 [ 35] [ 32] [6213541000272461=491212017246529] +13:56:50 [ 37] [ 12] [507901541715] +13:56:50 [ 41] [ 8] [03020016] +13:56:50 [ 42] [ 15] [APT ] +13:56:50 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +13:56:50 [ 49] [ 3] [418] +13:56:50 [ 52] [ 16] [3E99EE10882FC9C8] +13:56:50 ============================================================================ +13:56:50 + + +waiting on router queue for slot.... +13:56:50 Sending to : +13:56:50 ============================================================================ +13:56:50 ============================================================================ +13:56:50 Slot Id : <116> +13:56:50 Transaction Type : REQUEST +13:56:50 Received From : +13:56:50 ============================================================================ +13:56:50 FNo. Len. Field Value +13:56:50 ============================================================================ +13:56:50 [ 1] [ 4] [0200] +13:56:50 [ 2] [ 16] [6213541000272461] +13:56:50 [ 3] [ 6] [300000] +13:56:50 [ 4] [ 12] [000000000000] +13:56:50 [ 7] [ 10] [0320135440] +13:56:50 [ 11] [ 6] [947711] +13:56:50 [ 12] [ 6] [135440] +13:56:50 [ 13] [ 4] [0320] +13:56:50 [ 15] [ 4] [0320] +13:56:50 [ 18] [ 4] [6011] +13:56:50 [ 19] [ 3] [418] +13:56:50 [ 22] [ 3] [021] +13:56:50 [ 25] [ 2] [01] +13:56:50 [ 28] [ 9] [D00000000] +13:56:50 [ 32] [ 6] [668899] +13:56:50 [ 35] [ 32] [6213541000272461=491212017246529] +13:56:50 [ 37] [ 12] [507901541715] +13:56:50 [ 41] [ 8] [03020016] +13:56:50 [ 42] [ 15] [APT ] +13:56:50 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +13:56:50 [ 49] [ 3] [418] +13:56:50 [ 52] [ 16] [463DDBA59CDC8EEC] +13:56:50 ============================================================================ +13:56:50 + + +waiting on router queue for slot.... +13:56:50 Sending to : <0> +13:56:50 ============================================================================ +13:56:51 ============================================================================ +13:56:51 Slot Id : <116> +13:56:51 Transaction Type : RESPONSE +13:56:51 Received From : +13:56:51 ============================================================================ +13:56:51 FNo. Len. Field Value +13:56:51 ============================================================================ +13:56:51 [ 1] [ 4] [0210] +13:56:51 [ 2] [ 16] [6213541000272461] +13:56:51 [ 3] [ 6] [300000] +13:56:51 [ 4] [ 12] [000000000000] +13:56:51 [ 7] [ 10] [0320135440] +13:56:51 [ 11] [ 6] [947711] +13:56:51 [ 12] [ 6] [135440] +13:56:51 [ 13] [ 4] [0320] +13:56:51 [ 15] [ 4] [0320] +13:56:51 [ 18] [ 4] [6011] +13:56:51 [ 19] [ 3] [418] +13:56:51 [ 32] [ 6] [668899] +13:56:51 [ 35] [ 32] [6213541000272461=491212017246529] +13:56:51 [ 37] [ 12] [507901541715] +13:56:51 [ 38] [ 6] [265161] +13:56:51 [ 39] [ 2] [00] +13:56:51 [ 41] [ 8] [03020016] +13:56:51 [ 49] [ 3] [418] +13:56:51 [ 54] [ 40] [0001418C0000801922810002418C000080192281] +13:56:51 ============================================================================ +13:56:51 Sending to : +13:56:51 ============================================================================ +13:56:51 + + +waiting on router queue for slot.... +13:56:52 ============================================================================ +13:56:52 Slot Id : <116> +13:56:52 Transaction Type : RESPONSE +13:56:52 Received From : +13:56:52 ============================================================================ +13:56:52 FNo. Len. Field Value +13:56:52 ============================================================================ +13:56:52 [ 1] [ 4] [0210] +13:56:52 [ 2] [ 16] [6213541000272461] +13:56:52 [ 3] [ 6] [300000] +13:56:52 [ 4] [ 12] [000000000000] +13:56:52 [ 7] [ 10] [0320135440] +13:56:52 [ 11] [ 6] [947711] +13:56:52 [ 12] [ 6] [135440] +13:56:52 [ 13] [ 4] [0320] +13:56:52 [ 15] [ 4] [0320] +13:56:52 [ 18] [ 4] [6011] +13:56:52 [ 19] [ 3] [418] +13:56:52 [ 32] [ 6] [668899] +13:56:52 [ 35] [ 32] [6213541000272461=491212017246529] +13:56:52 [ 37] [ 12] [507901541715] +13:56:52 [ 38] [ 6] [265161] +13:56:52 [ 39] [ 2] [00] +13:56:52 [ 41] [ 8] [03020016] +13:56:52 [ 49] [ 3] [418] +13:56:52 [ 54] [ 40] [0001418C0000801922810002418C000080192281] +13:56:52 ============================================================================ +13:56:52 Calculate Source COMM Id = 4 +13:56:52 ============================================================================ +13:56:52 + + +waiting on router queue for slot.... +13:56:54 ============================================================================ +13:56:54 Slot Id : <140> +13:56:54 Transaction Type : REQUEST +13:56:54 Received From : +13:56:54 ============================================================================ +13:56:54 FNo. Len. Field Value +13:56:54 ============================================================================ +13:56:54 [ 1] [ 4] [0200] +13:56:54 [ 2] [ 16] [6213545000702153] +13:56:54 [ 3] [ 6] [011000] +13:56:54 [ 4] [ 12] [000030000000] +13:56:54 [ 7] [ 10] [0320135715] +13:56:54 [ 11] [ 6] [206852] +13:56:54 [ 12] [ 6] [135221] +13:56:54 [ 13] [ 4] [0320] +13:56:54 [ 14] [ 4] [4912] +13:56:54 [ 15] [ 4] [0320] +13:56:54 [ 18] [ 4] [6011] +13:56:54 [ 19] [ 3] [418] +13:56:54 [ 22] [ 3] [021] +13:56:54 [ 25] [ 2] [01] +13:56:54 [ 28] [ 9] [D00002000] +13:56:54 [ 32] [ 6] [198901] +13:56:54 [ 35] [ 32] [6213545000702153=491212010215326] +13:56:54 [ 37] [ 12] [507913206852] +13:56:54 [ 41] [ 8] [19529001] +13:56:54 [ 42] [ 15] [000000041952901] +13:56:54 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +13:56:54 [ 49] [ 3] [418] +13:56:54 [ 52] [ 16] [2693828D3DF5EFE6] +13:56:54 ============================================================================ +13:56:54 + + +waiting on router queue for slot.... +13:56:54 Sending to : +13:56:54 ============================================================================ +13:56:54 Sending to : +13:56:54 ============================================================================ +13:56:54 ============================================================================ +13:56:54 Slot Id : <140> +13:56:54 Transaction Type : REQUEST +13:56:54 Received From : +13:56:54 ============================================================================ +13:56:54 FNo. Len. Field Value +13:56:54 ============================================================================ +13:56:54 [ 1] [ 4] [0200] +13:56:54 [ 2] [ 16] [6213545000702153] +13:56:54 [ 3] [ 6] [011000] +13:56:54 [ 4] [ 12] [000030000000] +13:56:54 [ 7] [ 10] [0320135715] +13:56:54 [ 11] [ 6] [206852] +13:56:54 [ 12] [ 6] [135221] +13:56:54 [ 13] [ 4] [0320] +13:56:54 [ 14] [ 4] [4912] +13:56:54 [ 15] [ 4] [0320] +13:56:54 [ 18] [ 4] [6011] +13:56:54 [ 19] [ 3] [418] +13:56:54 [ 22] [ 3] [021] +13:56:54 [ 25] [ 2] [01] +13:56:54 [ 28] [ 9] [D00002000] +13:56:54 [ 32] [ 6] [198901] +13:56:54 [ 35] [ 32] [6213545000702153=491212010215326] +13:56:54 [ 37] [ 12] [507913206852] +13:56:54 [ 41] [ 8] [19529001] +13:56:54 [ 42] [ 15] [000000041952901] +13:56:54 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +13:56:54 [ 49] [ 3] [418] +13:56:54 [ 52] [ 16] [2693828D3DF5EFE6] +13:56:54 ============================================================================ +13:56:54 + + +waiting on router queue for slot.... +13:56:54 Sending to : +13:56:54 ============================================================================ +13:56:54 ============================================================================ +13:56:54 Slot Id : <140> +13:56:54 Transaction Type : REQUEST +13:56:54 Received From : +13:56:54 ============================================================================ +13:56:54 FNo. Len. Field Value +13:56:54 ============================================================================ +13:56:54 [ 1] [ 4] [0200] +13:56:54 [ 2] [ 16] [6213545000702153] +13:56:54 [ 3] [ 6] [011000] +13:56:54 [ 4] [ 12] [000030000000] +13:56:54 [ 7] [ 10] [0320135715] +13:56:54 [ 11] [ 6] [206852] +13:56:54 [ 12] [ 6] [135221] +13:56:54 [ 13] [ 4] [0320] +13:56:54 [ 14] [ 4] [4912] +13:56:54 [ 15] [ 4] [0320] +13:56:54 [ 18] [ 4] [6011] +13:56:54 [ 19] [ 3] [418] +13:56:54 [ 22] [ 3] [021] +13:56:54 [ 25] [ 2] [01] +13:56:54 [ 28] [ 9] [D00002000] +13:56:54 [ 32] [ 6] [198901] +13:56:54 [ 35] [ 32] [6213545000702153=491212010215326] +13:56:54 [ 37] [ 12] [507913206852] +13:56:54 [ 41] [ 8] [19529001] +13:56:54 [ 42] [ 15] [000000041952901] +13:56:54 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +13:56:54 [ 49] [ 3] [418] +13:56:54 [ 52] [ 16] [6F88C06B3676FED2] +13:56:54 ============================================================================ +13:56:54 + + +waiting on router queue for slot.... +13:56:54 Sending to : <0> +13:56:54 ============================================================================ +13:56:55 ============================================================================ +13:56:55 Slot Id : <140> +13:56:55 Transaction Type : RESPONSE +13:56:55 Received From : +13:56:55 ============================================================================ +13:56:55 FNo. Len. Field Value +13:56:55 ============================================================================ +13:56:55 [ 1] [ 4] [0210] +13:56:55 [ 2] [ 16] [6213545000702153] +13:56:55 [ 3] [ 6] [011000] +13:56:55 [ 4] [ 12] [000030000000] +13:56:55 [ 7] [ 10] [0320135715] +13:56:55 [ 11] [ 6] [206852] +13:56:55 [ 12] [ 6] [135221] +13:56:55 [ 13] [ 4] [0320] +13:56:55 [ 15] [ 4] [0320] +13:56:55 [ 18] [ 4] [6011] +13:56:55 [ 19] [ 3] [418] +13:56:55 [ 32] [ 6] [198901] +13:56:55 [ 35] [ 32] [6213545000702153=491212010215326] +13:56:55 [ 37] [ 12] [507913206852] +13:56:55 [ 38] [ 6] [075686] +13:56:55 [ 39] [ 2] [00] +13:56:55 [ 41] [ 8] [19529001] +13:56:55 [ 49] [ 3] [418] +13:56:55 [ 54] [ 40] [1001418C0011034147401002418C001103414740] +13:56:55 ============================================================================ +13:56:55 Sending to : +13:56:55 ============================================================================ +13:56:55 + + +waiting on router queue for slot.... +13:56:56 ============================================================================ +13:56:56 Slot Id : <140> +13:56:56 Transaction Type : RESPONSE +13:56:56 Received From : +13:56:56 ============================================================================ +13:56:56 FNo. Len. Field Value +13:56:56 ============================================================================ +13:56:56 [ 1] [ 4] [0210] +13:56:56 [ 2] [ 16] [6213545000702153] +13:56:56 [ 3] [ 6] [011000] +13:56:56 [ 4] [ 12] [000030000000] +13:56:56 [ 7] [ 10] [0320135715] +13:56:56 [ 11] [ 6] [206852] +13:56:56 [ 12] [ 6] [135221] +13:56:56 [ 13] [ 4] [0320] +13:56:56 [ 15] [ 4] [0320] +13:56:56 [ 18] [ 4] [6011] +13:56:56 [ 19] [ 3] [418] +13:56:56 [ 32] [ 6] [198901] +13:56:56 [ 35] [ 32] [6213545000702153=491212010215326] +13:56:56 [ 37] [ 12] [507913206852] +13:56:56 [ 38] [ 6] [075686] +13:56:56 [ 39] [ 2] [00] +13:56:56 [ 41] [ 8] [19529001] +13:56:56 [ 49] [ 3] [418] +13:56:56 [ 54] [ 40] [1001418C0011034147401002418C001103414740] +13:56:56 ============================================================================ +13:56:56 Calculate Source COMM Id = 5 +13:56:56 ============================================================================ +13:56:56 + + +waiting on router queue for slot.... +13:56:57 ============================================================================ +13:56:57 Slot Id : <97> +13:56:57 Transaction Type : REQUEST +13:56:57 Received From : +13:56:57 ============================================================================ +13:56:57 FNo. Len. Field Value +13:56:57 ============================================================================ +13:56:57 [ 1] [ 4] [0800] +13:56:57 [ 7] [ 10] [0320065603] +13:56:57 [ 11] [ 6] [156675] +13:56:57 [ 70] [ 3] [301] +13:56:57 ============================================================================ +13:56:57 + + +waiting on router queue for slot.... +13:56:57 Sending to : +13:56:57 ============================================================================ +13:56:57 ============================================================================ +13:56:57 Slot Id : <97> +13:56:57 Transaction Type : RESPONSE +13:56:57 Received From : +13:56:57 ============================================================================ +13:56:57 FNo. Len. Field Value +13:56:57 ============================================================================ +13:56:57 [ 1] [ 4] [0810] +13:56:57 [ 7] [ 10] [0320065603] +13:56:57 [ 11] [ 6] [156675] +13:56:57 [ 39] [ 2] [00] +13:56:57 [ 70] [ 3] [301] +13:56:57 ============================================================================ +13:56:57 Calculate Source COMM Id = 2 +13:56:57 ============================================================================ +13:56:57 + + +waiting on router queue for slot.... +13:57:08 ============================================================================ +13:57:08 Slot Id : <117> +13:57:08 Transaction Type : REQUEST +13:57:08 Received From : +13:57:08 ============================================================================ +13:57:08 FNo. Len. Field Value +13:57:08 ============================================================================ +13:57:08 [ 1] [ 4] [0200] +13:57:08 [ 2] [ 16] [6688990030009672] +13:57:08 [ 3] [ 6] [011000] +13:57:08 [ 4] [ 12] [000015000000] +13:57:08 [ 7] [ 10] [0320135704] +13:57:08 [ 11] [ 6] [763893] +13:57:08 [ 12] [ 6] [135704] +13:57:08 [ 13] [ 4] [0320] +13:57:08 [ 15] [ 4] [0320] +13:57:08 [ 18] [ 4] [6011] +13:57:08 [ 22] [ 3] [900] +13:57:08 [ 25] [ 2] [02] +13:57:08 [ 28] [ 9] [D00002000] +13:57:08 [ 32] [ 6] [621354] +13:57:08 [ 35] [ 37] [6688990030009672=98011261125604100000] +13:57:08 [ 37] [ 12] [507904724383] +13:57:08 [ 41] [ 8] [18001100] +13:57:08 [ 42] [ 15] [NATIVE ] +13:57:08 [ 43] [ 40] [Ban Naxong May LAO] +13:57:08 [ 49] [ 3] [418] +13:57:08 [ 52] [ 16] [0B45F86DAA83D323] +13:57:08 ============================================================================ +13:57:08 + + +waiting on router queue for slot.... +13:57:08 Sending to : +13:57:08 ============================================================================ +13:57:08 Sending to : +13:57:08 ============================================================================ +13:57:09 ============================================================================ +13:57:09 Slot Id : <117> +13:57:09 Transaction Type : REQUEST +13:57:09 Received From : +13:57:09 ============================================================================ +13:57:09 FNo. Len. Field Value +13:57:09 ============================================================================ +13:57:09 [ 1] [ 4] [0200] +13:57:09 [ 2] [ 16] [6688990030009672] +13:57:09 [ 3] [ 6] [011000] +13:57:09 [ 4] [ 12] [000015000000] +13:57:09 [ 7] [ 10] [0320135704] +13:57:09 [ 11] [ 6] [763893] +13:57:09 [ 12] [ 6] [135704] +13:57:09 [ 13] [ 4] [0320] +13:57:09 [ 15] [ 4] [0320] +13:57:09 [ 18] [ 4] [6011] +13:57:09 [ 22] [ 3] [900] +13:57:09 [ 25] [ 2] [02] +13:57:09 [ 28] [ 9] [D00002000] +13:57:09 [ 32] [ 6] [621354] +13:57:09 [ 35] [ 37] [6688990030009672=98011261125604100000] +13:57:09 [ 37] [ 12] [507904724383] +13:57:09 [ 41] [ 8] [18001100] +13:57:09 [ 42] [ 15] [NATIVE ] +13:57:09 [ 43] [ 40] [Ban Naxong May LAO] +13:57:09 [ 49] [ 3] [418] +13:57:09 [ 52] [ 16] [0B45F86DAA83D323] +13:57:09 ============================================================================ +13:57:09 + + +waiting on router queue for slot.... +13:57:09 Sending to : +13:57:09 ============================================================================ +13:57:09 ============================================================================ +13:57:09 Slot Id : <117> +13:57:09 Transaction Type : REQUEST +13:57:09 Received From : +13:57:09 ============================================================================ +13:57:09 FNo. Len. Field Value +13:57:09 ============================================================================ +13:57:09 [ 1] [ 4] [0200] +13:57:09 [ 2] [ 16] [6688990030009672] +13:57:09 [ 3] [ 6] [011000] +13:57:09 [ 4] [ 12] [000015000000] +13:57:09 [ 7] [ 10] [0320135704] +13:57:09 [ 11] [ 6] [763893] +13:57:09 [ 12] [ 6] [135704] +13:57:09 [ 13] [ 4] [0320] +13:57:09 [ 15] [ 4] [0320] +13:57:09 [ 18] [ 4] [6011] +13:57:09 [ 22] [ 3] [900] +13:57:09 [ 25] [ 2] [02] +13:57:09 [ 28] [ 9] [D00002000] +13:57:09 [ 32] [ 6] [621354] +13:57:09 [ 35] [ 37] [6688990030009672=98011261125604100000] +13:57:09 [ 37] [ 12] [507904724383] +13:57:09 [ 41] [ 8] [18001100] +13:57:09 [ 42] [ 15] [NATIVE ] +13:57:09 [ 43] [ 40] [Ban Naxong May LAO] +13:57:09 [ 49] [ 3] [418] +13:57:09 [ 52] [ 16] [EE5D45B2E8F41C0F] +13:57:09 ============================================================================ +13:57:09 + + +waiting on router queue for slot.... +13:57:09 Sending to : <4> +13:57:09 ============================================================================ +13:57:09 ============================================================================ +13:57:09 Slot Id : <117> +13:57:09 Transaction Type : RESPONSE +13:57:09 Received From : +13:57:09 ============================================================================ +13:57:09 FNo. Len. Field Value +13:57:09 ============================================================================ +13:57:09 [ 1] [ 4] [0210] +13:57:09 [ 2] [ 16] [6688990030009672] +13:57:09 [ 3] [ 6] [011000] +13:57:09 [ 4] [ 12] [000015000000] +13:57:09 [ 11] [ 6] [763893] +13:57:09 [ 12] [ 6] [135704] +13:57:09 [ 15] [ 4] [0320] +13:57:09 [ 18] [ 4] [6011] +13:57:09 [ 32] [ 6] [621354] +13:57:09 [ 35] [ 37] [6688990030009672=98011261125604100000] +13:57:09 [ 37] [ 12] [507904724383] +13:57:09 [ 39] [ 2] [51] +13:57:09 [ 41] [ 8] [18001100] +13:57:09 [ 49] [ 3] [418] +13:57:09 [ 54] [ 0] [] +13:57:09 ============================================================================ +13:57:09 Sending to : +13:57:09 ============================================================================ +13:57:09 + + +waiting on router queue for slot.... +13:57:10 ============================================================================ +13:57:10 Slot Id : <117> +13:57:10 Transaction Type : RESPONSE +13:57:10 Received From : +13:57:10 ============================================================================ +13:57:10 FNo. Len. Field Value +13:57:10 ============================================================================ +13:57:10 [ 1] [ 4] [0210] +13:57:10 [ 2] [ 16] [6688990030009672] +13:57:10 [ 3] [ 6] [011000] +13:57:10 [ 4] [ 12] [000015000000] +13:57:10 [ 11] [ 6] [763893] +13:57:10 [ 12] [ 6] [135704] +13:57:10 [ 15] [ 4] [0320] +13:57:10 [ 18] [ 4] [6011] +13:57:10 [ 32] [ 6] [621354] +13:57:10 [ 35] [ 37] [6688990030009672=98011261125604100000] +13:57:10 [ 37] [ 12] [507904724383] +13:57:10 [ 39] [ 2] [51] +13:57:10 [ 41] [ 8] [18001100] +13:57:10 [ 49] [ 3] [418] +13:57:10 [ 54] [ 0] [] +13:57:10 ============================================================================ +13:57:10 Calculate Source COMM Id = 0 +13:57:10 ============================================================================ +13:57:10 + + +waiting on router queue for slot.... +13:57:11 ============================================================================ +13:57:11 Slot Id : <124> +13:57:11 Transaction Type : REQUEST +13:57:11 Received From : +13:57:11 ============================================================================ +13:57:11 FNo. Len. Field Value +13:57:11 ============================================================================ +13:57:11 [ 1] [ 4] [0200] +13:57:11 [ 2] [ 16] [6213545000785984] +13:57:11 [ 3] [ 6] [301000] +13:57:11 [ 7] [ 10] [0320065618] +13:57:11 [ 11] [ 6] [269439] +13:57:11 [ 12] [ 6] [135618] +13:57:11 [ 13] [ 4] [0320] +13:57:11 [ 14] [ 4] [4912] +13:57:11 [ 15] [ 4] [0320] +13:57:11 [ 18] [ 4] [6011] +13:57:11 [ 19] [ 3] [418] +13:57:11 [ 22] [ 3] [021] +13:57:11 [ 25] [ 2] [01] +13:57:11 [ 32] [ 6] [180893] +13:57:11 [ 35] [ 32] [6213545000785984=491212018598996] +13:57:11 [ 37] [ 12] [507906269439] +13:57:11 [ 41] [ 8] [0525XYBT] +13:57:11 [ 42] [ 15] [999999 ] +13:57:11 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +13:57:11 [ 49] [ 3] [418] +13:57:11 [ 52] [ 16] [4F1FC69C0F1436F8] +13:57:11 ============================================================================ +13:57:11 + + +waiting on router queue for slot.... +13:57:11 Sending to : +13:57:11 ============================================================================ +13:57:11 Sending to : +13:57:11 ============================================================================ +13:57:11 ============================================================================ +13:57:11 Slot Id : <124> +13:57:11 Transaction Type : REQUEST +13:57:11 Received From : +13:57:11 ============================================================================ +13:57:11 FNo. Len. Field Value +13:57:11 ============================================================================ +13:57:11 [ 1] [ 4] [0200] +13:57:11 [ 2] [ 16] [6213545000785984] +13:57:11 [ 3] [ 6] [301000] +13:57:11 [ 7] [ 10] [0320065618] +13:57:11 [ 11] [ 6] [269439] +13:57:11 [ 12] [ 6] [135618] +13:57:11 [ 13] [ 4] [0320] +13:57:11 [ 14] [ 4] [4912] +13:57:11 [ 15] [ 4] [0320] +13:57:11 [ 18] [ 4] [6011] +13:57:11 [ 19] [ 3] [418] +13:57:11 [ 22] [ 3] [021] +13:57:11 [ 25] [ 2] [01] +13:57:11 [ 32] [ 6] [180893] +13:57:11 [ 35] [ 32] [6213545000785984=491212018598996] +13:57:11 [ 37] [ 12] [507906269439] +13:57:11 [ 41] [ 8] [0525XYBT] +13:57:11 [ 42] [ 15] [999999 ] +13:57:11 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +13:57:11 [ 49] [ 3] [418] +13:57:11 [ 52] [ 16] [4F1FC69C0F1436F8] +13:57:11 ============================================================================ +13:57:11 + + +waiting on router queue for slot.... +13:57:11 Sending to : +13:57:11 ============================================================================ +13:57:11 ============================================================================ +13:57:11 Slot Id : <124> +13:57:11 Transaction Type : REQUEST +13:57:11 Received From : +13:57:11 ============================================================================ +13:57:11 FNo. Len. Field Value +13:57:11 ============================================================================ +13:57:11 [ 1] [ 4] [0200] +13:57:11 [ 2] [ 16] [6213545000785984] +13:57:11 [ 3] [ 6] [301000] +13:57:11 [ 7] [ 10] [0320065618] +13:57:11 [ 11] [ 6] [269439] +13:57:11 [ 12] [ 6] [135618] +13:57:11 [ 13] [ 4] [0320] +13:57:11 [ 14] [ 4] [4912] +13:57:11 [ 15] [ 4] [0320] +13:57:11 [ 18] [ 4] [6011] +13:57:11 [ 19] [ 3] [418] +13:57:11 [ 22] [ 3] [021] +13:57:11 [ 25] [ 2] [01] +13:57:11 [ 32] [ 6] [180893] +13:57:11 [ 35] [ 32] [6213545000785984=491212018598996] +13:57:11 [ 37] [ 12] [507906269439] +13:57:11 [ 41] [ 8] [0525XYBT] +13:57:11 [ 42] [ 15] [999999 ] +13:57:11 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +13:57:11 [ 49] [ 3] [418] +13:57:11 [ 52] [ 16] [B18E877AF7A7CD4F] +13:57:11 ============================================================================ +13:57:11 + + +waiting on router queue for slot.... +13:57:11 Sending to : <0> +13:57:11 ============================================================================ +13:57:12 ============================================================================ +13:57:12 Slot Id : <124> +13:57:12 Transaction Type : RESPONSE +13:57:12 Received From : +13:57:12 ============================================================================ +13:57:12 FNo. Len. Field Value +13:57:12 ============================================================================ +13:57:12 [ 1] [ 4] [0210] +13:57:12 [ 2] [ 16] [6213545000785984] +13:57:12 [ 3] [ 6] [301000] +13:57:12 [ 4] [ 12] [000000000000] +13:57:12 [ 7] [ 10] [0320065618] +13:57:12 [ 11] [ 6] [269439] +13:57:12 [ 12] [ 6] [135618] +13:57:12 [ 13] [ 4] [0320] +13:57:12 [ 15] [ 4] [0320] +13:57:12 [ 18] [ 4] [6011] +13:57:12 [ 19] [ 3] [418] +13:57:12 [ 32] [ 6] [180893] +13:57:12 [ 35] [ 32] [6213545000785984=491212018598996] +13:57:12 [ 37] [ 12] [507906269439] +13:57:12 [ 38] [ 6] [405282] +13:57:12 [ 39] [ 2] [00] +13:57:12 [ 41] [ 8] [0525XYBT] +13:57:12 [ 49] [ 3] [418] +13:57:12 [ 54] [ 40] [1001418C0002165499431002418C000216549943] +13:57:12 ============================================================================ +13:57:12 Sending to : +13:57:12 ============================================================================ +13:57:12 + + +waiting on router queue for slot.... +13:57:12 ============================================================================ +13:57:12 Slot Id : <111> +13:57:12 Transaction Type : REQUEST +13:57:12 Received From : +13:57:12 ============================================================================ +13:57:12 FNo. Len. Field Value +13:57:12 ============================================================================ +13:57:12 [ 1] [ 4] [0800] +13:57:12 [ 7] [ 10] [0320065619] +13:57:12 [ 11] [ 6] [156676] +13:57:12 [ 70] [ 3] [301] +13:57:12 ============================================================================ +13:57:12 + + +waiting on router queue for slot.... +13:57:12 Sending to : +13:57:12 ============================================================================ +13:57:12 ============================================================================ +13:57:12 Slot Id : <111> +13:57:12 Transaction Type : RESPONSE +13:57:12 Received From : +13:57:12 ============================================================================ +13:57:12 FNo. Len. Field Value +13:57:12 ============================================================================ +13:57:12 [ 1] [ 4] [0810] +13:57:12 [ 7] [ 10] [0320065619] +13:57:12 [ 11] [ 6] [156676] +13:57:12 [ 39] [ 2] [00] +13:57:12 [ 70] [ 3] [301] +13:57:12 ============================================================================ +13:57:12 Calculate Source COMM Id = 2 +13:57:12 ============================================================================ +13:57:12 + + +waiting on router queue for slot.... +13:57:13 ============================================================================ +13:57:13 Slot Id : <124> +13:57:13 Transaction Type : RESPONSE +13:57:13 Received From : +13:57:13 ============================================================================ +13:57:13 FNo. Len. Field Value +13:57:13 ============================================================================ +13:57:13 [ 1] [ 4] [0210] +13:57:13 [ 2] [ 16] [6213545000785984] +13:57:13 [ 3] [ 6] [301000] +13:57:13 [ 4] [ 12] [000000000000] +13:57:13 [ 7] [ 10] [0320065618] +13:57:13 [ 11] [ 6] [269439] +13:57:13 [ 12] [ 6] [135618] +13:57:13 [ 13] [ 4] [0320] +13:57:13 [ 15] [ 4] [0320] +13:57:13 [ 18] [ 4] [6011] +13:57:13 [ 19] [ 3] [418] +13:57:13 [ 32] [ 6] [180893] +13:57:13 [ 35] [ 32] [6213545000785984=491212018598996] +13:57:13 [ 37] [ 12] [507906269439] +13:57:13 [ 38] [ 6] [405282] +13:57:13 [ 39] [ 2] [00] +13:57:13 [ 41] [ 8] [0525XYBT] +13:57:13 [ 49] [ 3] [418] +13:57:13 [ 54] [ 40] [1001418C0002165499431002418C000216549943] +13:57:13 ============================================================================ +13:57:13 Calculate Source COMM Id = 2 +13:57:13 ============================================================================ +13:57:13 + + +waiting on router queue for slot.... +13:57:25 ============================================================================ +13:57:25 Slot Id : <80> +13:57:25 Transaction Type : REQUEST +13:57:25 Received From : +13:57:25 ============================================================================ +13:57:25 FNo. Len. Field Value +13:57:25 ============================================================================ +13:57:25 [ 1] [ 4] [0200] +13:57:25 [ 2] [ 16] [6688990040134924] +13:57:25 [ 3] [ 6] [010000] +13:57:25 [ 4] [ 12] [000100000000] +13:57:25 [ 7] [ 10] [0320065630] +13:57:25 [ 11] [ 6] [269441] +13:57:25 [ 12] [ 6] [135630] +13:57:25 [ 13] [ 4] [0320] +13:57:25 [ 14] [ 4] [9804] +13:57:25 [ 15] [ 4] [0320] +13:57:25 [ 18] [ 4] [6011] +13:57:25 [ 19] [ 3] [418] +13:57:25 [ 22] [ 3] [021] +13:57:25 [ 25] [ 2] [01] +13:57:25 [ 28] [ 9] [D00002000] +13:57:25 [ 32] [ 6] [180893] +13:57:25 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:57:25 [ 37] [ 12] [507906269441] +13:57:25 [ 41] [ 8] [0321LNTV] +13:57:25 [ 42] [ 15] [999999 ] +13:57:25 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:57:25 [ 49] [ 3] [418] +13:57:25 [ 52] [ 16] [01813B808BD94AF8] +13:57:25 ============================================================================ +13:57:25 + + +waiting on router queue for slot.... +13:57:25 Sending to : +13:57:25 ============================================================================ +13:57:25 Sending to : +13:57:25 ============================================================================ +13:57:25 ============================================================================ +13:57:25 Slot Id : <80> +13:57:25 Transaction Type : REQUEST +13:57:25 Received From : +13:57:25 ============================================================================ +13:57:25 FNo. Len. Field Value +13:57:25 ============================================================================ +13:57:25 [ 1] [ 4] [0200] +13:57:25 [ 2] [ 16] [6688990040134924] +13:57:25 [ 3] [ 6] [010000] +13:57:25 [ 4] [ 12] [000100000000] +13:57:25 [ 7] [ 10] [0320065630] +13:57:25 [ 11] [ 6] [269441] +13:57:25 [ 12] [ 6] [135630] +13:57:25 [ 13] [ 4] [0320] +13:57:25 [ 14] [ 4] [9804] +13:57:25 [ 15] [ 4] [0320] +13:57:25 [ 18] [ 4] [6011] +13:57:25 [ 19] [ 3] [418] +13:57:25 [ 22] [ 3] [021] +13:57:25 [ 25] [ 2] [01] +13:57:25 [ 28] [ 9] [D00002000] +13:57:25 [ 32] [ 6] [180893] +13:57:25 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:57:25 [ 37] [ 12] [507906269441] +13:57:25 [ 41] [ 8] [0321LNTV] +13:57:25 [ 42] [ 15] [999999 ] +13:57:25 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:57:25 [ 49] [ 3] [418] +13:57:25 [ 52] [ 16] [01813B808BD94AF8] +13:57:25 ============================================================================ +13:57:25 + + +waiting on router queue for slot.... +13:57:25 Sending to : +13:57:25 ============================================================================ +13:57:25 ============================================================================ +13:57:25 Slot Id : <80> +13:57:25 Transaction Type : REQUEST +13:57:25 Received From : +13:57:25 ============================================================================ +13:57:25 FNo. Len. Field Value +13:57:25 ============================================================================ +13:57:25 [ 1] [ 4] [0200] +13:57:25 [ 2] [ 16] [6688990040134924] +13:57:25 [ 3] [ 6] [010000] +13:57:25 [ 4] [ 12] [000100000000] +13:57:25 [ 7] [ 10] [0320065630] +13:57:25 [ 11] [ 6] [269441] +13:57:25 [ 12] [ 6] [135630] +13:57:25 [ 13] [ 4] [0320] +13:57:25 [ 14] [ 4] [9804] +13:57:25 [ 15] [ 4] [0320] +13:57:25 [ 18] [ 4] [6011] +13:57:25 [ 19] [ 3] [418] +13:57:25 [ 22] [ 3] [021] +13:57:25 [ 25] [ 2] [01] +13:57:25 [ 28] [ 9] [D00002000] +13:57:25 [ 32] [ 6] [180893] +13:57:25 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:57:25 [ 37] [ 12] [507906269441] +13:57:25 [ 41] [ 8] [0321LNTV] +13:57:25 [ 42] [ 15] [999999 ] +13:57:25 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:57:25 [ 49] [ 3] [418] +13:57:25 [ 52] [ 16] [F07ADB9F5826AD14] +13:57:25 ============================================================================ +13:57:25 + + +waiting on router queue for slot.... +13:57:25 Sending to : <0> +13:57:25 ============================================================================ +13:57:25 ============================================================================ +13:57:25 Slot Id : <80> +13:57:25 Transaction Type : RESPONSE +13:57:25 Received From : +13:57:25 ============================================================================ +13:57:25 FNo. Len. Field Value +13:57:25 ============================================================================ +13:57:25 [ 1] [ 4] [0210] +13:57:25 [ 2] [ 16] [6688990040134924] +13:57:25 [ 3] [ 6] [010000] +13:57:25 [ 4] [ 12] [000100000000] +13:57:25 [ 7] [ 10] [0320065630] +13:57:25 [ 11] [ 6] [269441] +13:57:25 [ 12] [ 6] [135630] +13:57:25 [ 13] [ 4] [0320] +13:57:25 [ 15] [ 4] [0320] +13:57:25 [ 18] [ 4] [6011] +13:57:25 [ 19] [ 3] [418] +13:57:25 [ 22] [ 3] [021] +13:57:25 [ 32] [ 6] [180893] +13:57:25 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:57:25 [ 37] [ 12] [507906269441] +13:57:25 [ 39] [ 2] [14] +13:57:25 [ 41] [ 8] [0321LNTV] +13:57:25 [ 49] [ 3] [418] +13:57:25 ============================================================================ +13:57:25 Sending to : +13:57:25 ============================================================================ +13:57:25 + + +waiting on router queue for slot.... +13:57:26 ============================================================================ +13:57:26 Slot Id : <80> +13:57:26 Transaction Type : RESPONSE +13:57:26 Received From : +13:57:26 ============================================================================ +13:57:26 FNo. Len. Field Value +13:57:26 ============================================================================ +13:57:26 [ 1] [ 4] [0210] +13:57:26 [ 2] [ 16] [6688990040134924] +13:57:26 [ 3] [ 6] [010000] +13:57:26 [ 4] [ 12] [000100000000] +13:57:26 [ 7] [ 10] [0320065630] +13:57:26 [ 11] [ 6] [269441] +13:57:26 [ 12] [ 6] [135630] +13:57:26 [ 13] [ 4] [0320] +13:57:26 [ 15] [ 4] [0320] +13:57:26 [ 18] [ 4] [6011] +13:57:26 [ 19] [ 3] [418] +13:57:26 [ 22] [ 3] [021] +13:57:26 [ 32] [ 6] [180893] +13:57:26 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:57:26 [ 37] [ 12] [507906269441] +13:57:26 [ 39] [ 2] [14] +13:57:26 [ 41] [ 8] [0321LNTV] +13:57:26 [ 49] [ 3] [418] +13:57:26 ============================================================================ +13:57:26 Calculate Source COMM Id = 2 +13:57:26 ============================================================================ +13:57:26 + + +waiting on router queue for slot.... +13:57:27 ============================================================================ +13:57:27 Slot Id : <161> +13:57:27 Transaction Type : REQUEST +13:57:27 Received From : +13:57:27 ============================================================================ +13:57:27 FNo. Len. Field Value +13:57:27 ============================================================================ +13:57:27 [ 1] [ 4] [0200] +13:57:27 [ 2] [ 16] [6213544000346541] +13:57:27 [ 3] [ 6] [011000] +13:57:27 [ 4] [ 12] [000100000000] +13:57:27 [ 7] [ 10] [0320135748] +13:57:27 [ 11] [ 6] [206861] +13:57:27 [ 12] [ 6] [134254] +13:57:27 [ 13] [ 4] [0320] +13:57:27 [ 14] [ 4] [4912] +13:57:27 [ 15] [ 4] [0320] +13:57:27 [ 18] [ 4] [6011] +13:57:27 [ 19] [ 3] [418] +13:57:27 [ 22] [ 3] [021] +13:57:27 [ 25] [ 2] [01] +13:57:27 [ 28] [ 9] [D00002000] +13:57:27 [ 32] [ 6] [198901] +13:57:27 [ 35] [ 32] [6213544000346541=491212014654791] +13:57:27 [ 37] [ 12] [507913206861] +13:57:27 [ 41] [ 8] [01529017] +13:57:27 [ 42] [ 15] [000000041529017] +13:57:27 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:57:27 [ 49] [ 3] [418] +13:57:27 [ 52] [ 16] [5BC3BA0D5074E40B] +13:57:27 ============================================================================ +13:57:27 + + +waiting on router queue for slot.... +13:57:27 Sending to : +13:57:27 ============================================================================ +13:57:27 Sending to : +13:57:27 ============================================================================ +13:57:27 ============================================================================ +13:57:27 Slot Id : <161> +13:57:27 Transaction Type : REQUEST +13:57:27 Received From : +13:57:27 ============================================================================ +13:57:27 FNo. Len. Field Value +13:57:27 ============================================================================ +13:57:27 [ 1] [ 4] [0200] +13:57:27 [ 2] [ 16] [6213544000346541] +13:57:27 [ 3] [ 6] [011000] +13:57:27 [ 4] [ 12] [000100000000] +13:57:27 [ 7] [ 10] [0320135748] +13:57:27 [ 11] [ 6] [206861] +13:57:27 [ 12] [ 6] [134254] +13:57:27 [ 13] [ 4] [0320] +13:57:27 [ 14] [ 4] [4912] +13:57:27 [ 15] [ 4] [0320] +13:57:27 [ 18] [ 4] [6011] +13:57:27 [ 19] [ 3] [418] +13:57:27 [ 22] [ 3] [021] +13:57:27 [ 25] [ 2] [01] +13:57:27 [ 28] [ 9] [D00002000] +13:57:27 [ 32] [ 6] [198901] +13:57:27 [ 35] [ 32] [6213544000346541=491212014654791] +13:57:27 [ 37] [ 12] [507913206861] +13:57:27 [ 41] [ 8] [01529017] +13:57:27 [ 42] [ 15] [000000041529017] +13:57:27 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:57:27 [ 49] [ 3] [418] +13:57:27 [ 52] [ 16] [5BC3BA0D5074E40B] +13:57:27 ============================================================================ +13:57:27 + + +waiting on router queue for slot.... +13:57:27 Sending to : +13:57:27 ============================================================================ +13:57:27 ============================================================================ +13:57:27 Slot Id : <161> +13:57:27 Transaction Type : REQUEST +13:57:27 Received From : +13:57:27 ============================================================================ +13:57:27 FNo. Len. Field Value +13:57:27 ============================================================================ +13:57:27 [ 1] [ 4] [0200] +13:57:27 [ 2] [ 16] [6213544000346541] +13:57:27 [ 3] [ 6] [011000] +13:57:27 [ 4] [ 12] [000100000000] +13:57:27 [ 7] [ 10] [0320135748] +13:57:27 [ 11] [ 6] [206861] +13:57:27 [ 12] [ 6] [134254] +13:57:27 [ 13] [ 4] [0320] +13:57:27 [ 14] [ 4] [4912] +13:57:27 [ 15] [ 4] [0320] +13:57:27 [ 18] [ 4] [6011] +13:57:27 [ 19] [ 3] [418] +13:57:27 [ 22] [ 3] [021] +13:57:27 [ 25] [ 2] [01] +13:57:27 [ 28] [ 9] [D00002000] +13:57:27 [ 32] [ 6] [198901] +13:57:27 [ 35] [ 32] [6213544000346541=491212014654791] +13:57:27 [ 37] [ 12] [507913206861] +13:57:27 [ 41] [ 8] [01529017] +13:57:27 [ 42] [ 15] [000000041529017] +13:57:27 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:57:27 [ 49] [ 3] [418] +13:57:27 [ 52] [ 16] [7A380D03B06AEA04] +13:57:27 ============================================================================ +13:57:27 + + +waiting on router queue for slot.... +13:57:27 Sending to : <0> +13:57:27 ============================================================================ +13:57:28 ============================================================================ +13:57:28 Slot Id : <161> +13:57:28 Transaction Type : RESPONSE +13:57:28 Received From : +13:57:28 ============================================================================ +13:57:28 FNo. Len. Field Value +13:57:28 ============================================================================ +13:57:28 [ 1] [ 4] [0210] +13:57:28 [ 2] [ 16] [6213544000346541] +13:57:28 [ 3] [ 6] [011000] +13:57:28 [ 4] [ 12] [000100000000] +13:57:28 [ 7] [ 10] [0320135748] +13:57:28 [ 11] [ 6] [206861] +13:57:28 [ 12] [ 6] [134254] +13:57:28 [ 13] [ 4] [0320] +13:57:28 [ 15] [ 4] [0320] +13:57:28 [ 18] [ 4] [6011] +13:57:28 [ 19] [ 3] [418] +13:57:28 [ 32] [ 6] [198901] +13:57:28 [ 35] [ 32] [6213544000346541=491212014654791] +13:57:28 [ 37] [ 12] [507913206861] +13:57:28 [ 38] [ 6] [433786] +13:57:28 [ 39] [ 2] [00] +13:57:28 [ 41] [ 8] [01529017] +13:57:28 [ 49] [ 3] [418] +13:57:28 [ 54] [ 40] [1001418C0021904815241002418C002190481524] +13:57:28 ============================================================================ +13:57:28 Sending to : +13:57:28 ============================================================================ +13:57:28 + + +waiting on router queue for slot.... +13:57:29 ============================================================================ +13:57:29 Slot Id : <161> +13:57:29 Transaction Type : RESPONSE +13:57:29 Received From : +13:57:29 ============================================================================ +13:57:29 FNo. Len. Field Value +13:57:29 ============================================================================ +13:57:29 [ 1] [ 4] [0210] +13:57:29 [ 2] [ 16] [6213544000346541] +13:57:29 [ 3] [ 6] [011000] +13:57:29 [ 4] [ 12] [000100000000] +13:57:29 [ 7] [ 10] [0320135748] +13:57:29 [ 11] [ 6] [206861] +13:57:29 [ 12] [ 6] [134254] +13:57:29 [ 13] [ 4] [0320] +13:57:29 [ 15] [ 4] [0320] +13:57:29 [ 18] [ 4] [6011] +13:57:29 [ 19] [ 3] [418] +13:57:29 [ 32] [ 6] [198901] +13:57:29 [ 35] [ 32] [6213544000346541=491212014654791] +13:57:29 [ 37] [ 12] [507913206861] +13:57:29 [ 38] [ 6] [433786] +13:57:29 [ 39] [ 2] [00] +13:57:29 [ 41] [ 8] [01529017] +13:57:29 [ 49] [ 3] [418] +13:57:29 [ 54] [ 40] [1001418C0021904815241002418C002190481524] +13:57:29 ============================================================================ +13:57:29 Calculate Source COMM Id = 5 +13:57:29 ============================================================================ +13:57:29 + + +waiting on router queue for slot.... +13:57:38 ============================================================================ +13:57:38 Slot Id : <147> +13:57:38 Transaction Type : REQUEST +13:57:38 Received From : +13:57:38 ============================================================================ +13:57:38 FNo. Len. Field Value +13:57:38 ============================================================================ +13:57:38 [ 1] [ 4] [0800] +13:57:38 [ 7] [ 10] [0320065645] +13:57:38 [ 11] [ 6] [156677] +13:57:38 [ 70] [ 3] [301] +13:57:38 ============================================================================ +13:57:38 + + +waiting on router queue for slot.... +13:57:38 Sending to : +13:57:38 ============================================================================ +13:57:38 ============================================================================ +13:57:38 Slot Id : <147> +13:57:38 Transaction Type : RESPONSE +13:57:38 Received From : +13:57:38 ============================================================================ +13:57:38 FNo. Len. Field Value +13:57:38 ============================================================================ +13:57:38 [ 1] [ 4] [0810] +13:57:38 [ 7] [ 10] [0320065645] +13:57:38 [ 11] [ 6] [156677] +13:57:38 [ 39] [ 2] [00] +13:57:38 [ 70] [ 3] [301] +13:57:38 ============================================================================ +13:57:38 Calculate Source COMM Id = 2 +13:57:38 ============================================================================ +13:57:38 + + +waiting on router queue for slot.... +13:57:38 ============================================================================ +13:57:38 Slot Id : <123> +13:57:38 Transaction Type : REQUEST +13:57:38 Received From : +13:57:38 ============================================================================ +13:57:38 FNo. Len. Field Value +13:57:38 ============================================================================ +13:57:38 [ 1] [ 4] [0800] +13:57:38 [ 2] [ 5] [02531] +13:57:38 [ 3] [ 6] [579138] +13:57:38 [ 7] [ 10] [0320065738] +13:57:38 [ 11] [ 6] [807222] +13:57:38 [ 15] [ 10] [0320065738] +13:57:38 [ 37] [ 11] [57913807222] +13:57:38 [ 70] [ 3] [001] +13:57:38 ============================================================================ +13:57:38 + + +waiting on router queue for slot.... +13:57:38 ============================================================================ +13:57:38 Slot Id : <123> +13:57:38 Transaction Type : RESPONSE +13:57:38 Received From : +13:57:38 ============================================================================ +13:57:38 FNo. Len. Field Value +13:57:38 ============================================================================ +13:57:38 [ 1] [ 4] [0810] +13:57:38 [ 7] [ 10] [0320065738] +13:57:38 [ 11] [ 6] [807222] +13:57:38 [ 15] [ 4] [0320] +13:57:38 [ 37] [ 12] [57913807222] +13:57:38 [ 39] [ 2] [00] +13:57:38 [ 70] [ 3] [001] +13:57:38 ============================================================================ +13:57:38 Sending to : +13:57:38 ============================================================================ +13:57:38 + + +waiting on router queue for slot.... +13:57:47 ============================================================================ +13:57:47 Slot Id : <122> +13:57:47 Transaction Type : REQUEST +13:57:47 Received From : +13:57:47 ============================================================================ +13:57:47 FNo. Len. Field Value +13:57:47 ============================================================================ +13:57:47 [ 1] [ 4] [0200] +13:57:47 [ 2] [ 16] [6213541000272461] +13:57:47 [ 3] [ 6] [010000] +13:57:47 [ 4] [ 12] [000010000000] +13:57:47 [ 7] [ 10] [0320135537] +13:57:47 [ 11] [ 6] [947736] +13:57:47 [ 12] [ 6] [135537] +13:57:47 [ 13] [ 4] [0320] +13:57:47 [ 15] [ 4] [0320] +13:57:47 [ 18] [ 4] [6011] +13:57:47 [ 19] [ 3] [418] +13:57:47 [ 22] [ 3] [021] +13:57:47 [ 25] [ 2] [01] +13:57:47 [ 28] [ 9] [D00002000] +13:57:47 [ 32] [ 6] [668899] +13:57:47 [ 35] [ 32] [6213541000272461=491212017246529] +13:57:47 [ 37] [ 12] [507901541717] +13:57:47 [ 41] [ 8] [03020016] +13:57:47 [ 42] [ 15] [APT ] +13:57:47 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +13:57:47 [ 49] [ 3] [418] +13:57:47 [ 52] [ 16] [3E99EE10882FC9C8] +13:57:47 ============================================================================ +13:57:47 + + +waiting on router queue for slot.... +13:57:47 Sending to : +13:57:47 ============================================================================ +13:57:47 Sending to : +13:57:47 ============================================================================ +13:57:47 ============================================================================ +13:57:47 Slot Id : <122> +13:57:47 Transaction Type : REQUEST +13:57:47 Received From : +13:57:47 ============================================================================ +13:57:47 FNo. Len. Field Value +13:57:47 ============================================================================ +13:57:47 [ 1] [ 4] [0200] +13:57:47 [ 2] [ 16] [6213541000272461] +13:57:47 [ 3] [ 6] [010000] +13:57:47 [ 4] [ 12] [000010000000] +13:57:47 [ 7] [ 10] [0320135537] +13:57:47 [ 11] [ 6] [947736] +13:57:47 [ 12] [ 6] [135537] +13:57:47 [ 13] [ 4] [0320] +13:57:47 [ 15] [ 4] [0320] +13:57:47 [ 18] [ 4] [6011] +13:57:47 [ 19] [ 3] [418] +13:57:47 [ 22] [ 3] [021] +13:57:47 [ 25] [ 2] [01] +13:57:47 [ 28] [ 9] [D00002000] +13:57:47 [ 32] [ 6] [668899] +13:57:47 [ 35] [ 32] [6213541000272461=491212017246529] +13:57:47 [ 37] [ 12] [507901541717] +13:57:47 [ 41] [ 8] [03020016] +13:57:47 [ 42] [ 15] [APT ] +13:57:47 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +13:57:47 [ 49] [ 3] [418] +13:57:47 [ 52] [ 16] [3E99EE10882FC9C8] +13:57:47 ============================================================================ +13:57:47 + + +waiting on router queue for slot.... +13:57:47 Sending to : +13:57:47 ============================================================================ +13:57:47 ============================================================================ +13:57:47 Slot Id : <122> +13:57:47 Transaction Type : REQUEST +13:57:47 Received From : +13:57:47 ============================================================================ +13:57:47 FNo. Len. Field Value +13:57:47 ============================================================================ +13:57:47 [ 1] [ 4] [0200] +13:57:47 [ 2] [ 16] [6213541000272461] +13:57:47 [ 3] [ 6] [010000] +13:57:47 [ 4] [ 12] [000010000000] +13:57:47 [ 7] [ 10] [0320135537] +13:57:47 [ 11] [ 6] [947736] +13:57:47 [ 12] [ 6] [135537] +13:57:47 [ 13] [ 4] [0320] +13:57:47 [ 15] [ 4] [0320] +13:57:47 [ 18] [ 4] [6011] +13:57:47 [ 19] [ 3] [418] +13:57:47 [ 22] [ 3] [021] +13:57:47 [ 25] [ 2] [01] +13:57:47 [ 28] [ 9] [D00002000] +13:57:47 [ 32] [ 6] [668899] +13:57:47 [ 35] [ 32] [6213541000272461=491212017246529] +13:57:47 [ 37] [ 12] [507901541717] +13:57:47 [ 41] [ 8] [03020016] +13:57:47 [ 42] [ 15] [APT ] +13:57:47 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +13:57:47 [ 49] [ 3] [418] +13:57:47 [ 52] [ 16] [463DDBA59CDC8EEC] +13:57:47 ============================================================================ +13:57:47 + + +waiting on router queue for slot.... +13:57:47 Sending to : <0> +13:57:47 ============================================================================ +13:57:48 ============================================================================ +13:57:48 Slot Id : <122> +13:57:48 Transaction Type : RESPONSE +13:57:48 Received From : +13:57:48 ============================================================================ +13:57:48 FNo. Len. Field Value +13:57:48 ============================================================================ +13:57:48 [ 1] [ 4] [0210] +13:57:48 [ 2] [ 16] [6213541000272461] +13:57:48 [ 3] [ 6] [010000] +13:57:48 [ 4] [ 12] [000010000000] +13:57:48 [ 7] [ 10] [0320135537] +13:57:48 [ 11] [ 6] [947736] +13:57:48 [ 12] [ 6] [135537] +13:57:48 [ 13] [ 4] [0320] +13:57:48 [ 15] [ 4] [0320] +13:57:48 [ 18] [ 4] [6011] +13:57:48 [ 19] [ 3] [418] +13:57:48 [ 32] [ 6] [668899] +13:57:48 [ 35] [ 32] [6213541000272461=491212017246529] +13:57:48 [ 37] [ 12] [507901541717] +13:57:48 [ 38] [ 6] [054798] +13:57:48 [ 39] [ 2] [00] +13:57:48 [ 41] [ 8] [03020016] +13:57:48 [ 49] [ 3] [418] +13:57:48 [ 54] [ 40] [0001418C0000699922810002418C000069992281] +13:57:48 ============================================================================ +13:57:48 Sending to : +13:57:48 ============================================================================ +13:57:48 + + +waiting on router queue for slot.... +13:57:49 ============================================================================ +13:57:49 Slot Id : <122> +13:57:49 Transaction Type : RESPONSE +13:57:49 Received From : +13:57:49 ============================================================================ +13:57:49 FNo. Len. Field Value +13:57:49 ============================================================================ +13:57:49 [ 1] [ 4] [0210] +13:57:49 [ 2] [ 16] [6213541000272461] +13:57:49 [ 3] [ 6] [010000] +13:57:49 [ 4] [ 12] [000010000000] +13:57:49 [ 7] [ 10] [0320135537] +13:57:49 [ 11] [ 6] [947736] +13:57:49 [ 12] [ 6] [135537] +13:57:49 [ 13] [ 4] [0320] +13:57:49 [ 15] [ 4] [0320] +13:57:49 [ 18] [ 4] [6011] +13:57:49 [ 19] [ 3] [418] +13:57:49 [ 32] [ 6] [668899] +13:57:49 [ 35] [ 32] [6213541000272461=491212017246529] +13:57:49 [ 37] [ 12] [507901541717] +13:57:49 [ 38] [ 6] [054798] +13:57:49 [ 39] [ 2] [00] +13:57:49 [ 41] [ 8] [03020016] +13:57:49 [ 49] [ 3] [418] +13:57:49 [ 54] [ 40] [0001418C0000699922810002418C000069992281] +13:57:49 ============================================================================ +13:57:49 Calculate Source COMM Id = 4 +13:57:49 ============================================================================ +13:57:49 + + +waiting on router queue for slot.... +13:57:50 ============================================================================ +13:57:50 Slot Id : <162> +13:57:50 Transaction Type : REQUEST +13:57:50 Received From : +13:57:50 ============================================================================ +13:57:50 FNo. Len. Field Value +13:57:50 ============================================================================ +13:57:50 [ 1] [ 4] [0800] +13:57:50 [ 7] [ 10] [0320065656] +13:57:50 [ 11] [ 6] [156678] +13:57:50 [ 70] [ 3] [301] +13:57:50 ============================================================================ +13:57:50 + + +waiting on router queue for slot.... +13:57:50 Sending to : +13:57:50 ============================================================================ +13:57:50 ============================================================================ +13:57:50 Slot Id : <162> +13:57:50 Transaction Type : RESPONSE +13:57:50 Received From : +13:57:50 ============================================================================ +13:57:50 FNo. Len. Field Value +13:57:50 ============================================================================ +13:57:50 [ 1] [ 4] [0810] +13:57:50 [ 7] [ 10] [0320065656] +13:57:50 [ 11] [ 6] [156678] +13:57:50 [ 39] [ 2] [00] +13:57:50 [ 70] [ 3] [301] +13:57:50 ============================================================================ +13:57:50 Calculate Source COMM Id = 2 +13:57:50 ============================================================================ +13:57:50 + + +waiting on router queue for slot.... +13:58:01 ============================================================================ +13:58:01 Slot Id : <132> +13:58:01 Transaction Type : REQUEST +13:58:01 Received From : +13:58:01 ============================================================================ +13:58:01 FNo. Len. Field Value +13:58:01 ============================================================================ +13:58:01 [ 1] [ 4] [0200] +13:58:01 [ 2] [ 16] [6213545000785984] +13:58:01 [ 3] [ 6] [010000] +13:58:01 [ 4] [ 12] [000050000000] +13:58:01 [ 7] [ 10] [0320065705] +13:58:01 [ 11] [ 6] [269448] +13:58:01 [ 12] [ 6] [135705] +13:58:01 [ 13] [ 4] [0320] +13:58:01 [ 14] [ 4] [4912] +13:58:01 [ 15] [ 4] [0320] +13:58:01 [ 18] [ 4] [6011] +13:58:01 [ 19] [ 3] [418] +13:58:01 [ 22] [ 3] [021] +13:58:01 [ 25] [ 2] [01] +13:58:01 [ 28] [ 9] [D00002000] +13:58:01 [ 32] [ 6] [180893] +13:58:01 [ 35] [ 32] [6213545000785984=491212018598996] +13:58:01 [ 37] [ 12] [507906269448] +13:58:01 [ 41] [ 8] [0525XYBT] +13:58:01 [ 42] [ 15] [999999 ] +13:58:01 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +13:58:01 [ 49] [ 3] [418] +13:58:01 [ 52] [ 16] [4F1FC69C0F1436F8] +13:58:01 ============================================================================ +13:58:01 + + +waiting on router queue for slot.... +13:58:01 Sending to : +13:58:01 ============================================================================ +13:58:01 Sending to : +13:58:01 ============================================================================ +13:58:01 ============================================================================ +13:58:01 Slot Id : <132> +13:58:01 Transaction Type : REQUEST +13:58:01 Received From : +13:58:01 ============================================================================ +13:58:01 FNo. Len. Field Value +13:58:01 ============================================================================ +13:58:01 [ 1] [ 4] [0200] +13:58:01 [ 2] [ 16] [6213545000785984] +13:58:01 [ 3] [ 6] [010000] +13:58:01 [ 4] [ 12] [000050000000] +13:58:01 [ 7] [ 10] [0320065705] +13:58:01 [ 11] [ 6] [269448] +13:58:01 [ 12] [ 6] [135705] +13:58:01 [ 13] [ 4] [0320] +13:58:01 [ 14] [ 4] [4912] +13:58:01 [ 15] [ 4] [0320] +13:58:01 [ 18] [ 4] [6011] +13:58:01 [ 19] [ 3] [418] +13:58:01 [ 22] [ 3] [021] +13:58:01 [ 25] [ 2] [01] +13:58:01 [ 28] [ 9] [D00002000] +13:58:01 [ 32] [ 6] [180893] +13:58:01 [ 35] [ 32] [6213545000785984=491212018598996] +13:58:01 [ 37] [ 12] [507906269448] +13:58:01 [ 41] [ 8] [0525XYBT] +13:58:01 [ 42] [ 15] [999999 ] +13:58:01 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +13:58:01 [ 49] [ 3] [418] +13:58:01 [ 52] [ 16] [4F1FC69C0F1436F8] +13:58:01 ============================================================================ +13:58:01 + + +waiting on router queue for slot.... +13:58:01 Sending to : +13:58:01 ============================================================================ +13:58:01 ============================================================================ +13:58:01 Slot Id : <132> +13:58:01 Transaction Type : REQUEST +13:58:01 Received From : +13:58:01 ============================================================================ +13:58:01 FNo. Len. Field Value +13:58:01 ============================================================================ +13:58:01 [ 1] [ 4] [0200] +13:58:01 [ 2] [ 16] [6213545000785984] +13:58:01 [ 3] [ 6] [010000] +13:58:01 [ 4] [ 12] [000050000000] +13:58:01 [ 7] [ 10] [0320065705] +13:58:01 [ 11] [ 6] [269448] +13:58:01 [ 12] [ 6] [135705] +13:58:01 [ 13] [ 4] [0320] +13:58:01 [ 14] [ 4] [4912] +13:58:01 [ 15] [ 4] [0320] +13:58:01 [ 18] [ 4] [6011] +13:58:01 [ 19] [ 3] [418] +13:58:01 [ 22] [ 3] [021] +13:58:01 [ 25] [ 2] [01] +13:58:01 [ 28] [ 9] [D00002000] +13:58:01 [ 32] [ 6] [180893] +13:58:01 [ 35] [ 32] [6213545000785984=491212018598996] +13:58:01 [ 37] [ 12] [507906269448] +13:58:01 [ 41] [ 8] [0525XYBT] +13:58:01 [ 42] [ 15] [999999 ] +13:58:01 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +13:58:01 [ 49] [ 3] [418] +13:58:01 [ 52] [ 16] [B18E877AF7A7CD4F] +13:58:01 ============================================================================ +13:58:01 + + +waiting on router queue for slot.... +13:58:01 Sending to : <0> +13:58:01 ============================================================================ +13:58:01 ============================================================================ +13:58:01 Slot Id : <145> +13:58:01 Transaction Type : REQUEST +13:58:01 Received From : +13:58:01 ============================================================================ +13:58:01 FNo. Len. Field Value +13:58:01 ============================================================================ +13:58:01 [ 1] [ 4] [0200] +13:58:01 [ 2] [ 16] [6213544000346541] +13:58:01 [ 3] [ 6] [011000] +13:58:01 [ 4] [ 12] [000100000000] +13:58:01 [ 7] [ 10] [0320135822] +13:58:01 [ 11] [ 6] [206869] +13:58:01 [ 12] [ 6] [134328] +13:58:01 [ 13] [ 4] [0320] +13:58:01 [ 14] [ 4] [4912] +13:58:01 [ 15] [ 4] [0320] +13:58:01 [ 18] [ 4] [6011] +13:58:01 [ 19] [ 3] [418] +13:58:01 [ 22] [ 3] [021] +13:58:01 [ 25] [ 2] [01] +13:58:01 [ 28] [ 9] [D00002000] +13:58:01 [ 32] [ 6] [198901] +13:58:01 [ 35] [ 32] [6213544000346541=491212014654791] +13:58:01 [ 37] [ 12] [507913206869] +13:58:01 [ 41] [ 8] [01529017] +13:58:01 [ 42] [ 15] [000000041529017] +13:58:01 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:58:01 [ 49] [ 3] [418] +13:58:01 [ 52] [ 16] [5BC3BA0D5074E40B] +13:58:01 ============================================================================ +13:58:01 + + +waiting on router queue for slot.... +13:58:01 Sending to : +13:58:01 ============================================================================ +13:58:01 Sending to : +13:58:01 ============================================================================ +13:58:02 ============================================================================ +13:58:02 Slot Id : <145> +13:58:02 Transaction Type : REQUEST +13:58:02 Received From : +13:58:02 ============================================================================ +13:58:02 FNo. Len. Field Value +13:58:02 ============================================================================ +13:58:02 [ 1] [ 4] [0200] +13:58:02 [ 2] [ 16] [6213544000346541] +13:58:02 [ 3] [ 6] [011000] +13:58:02 [ 4] [ 12] [000100000000] +13:58:02 [ 7] [ 10] [0320135822] +13:58:02 [ 11] [ 6] [206869] +13:58:02 [ 12] [ 6] [134328] +13:58:02 [ 13] [ 4] [0320] +13:58:02 [ 14] [ 4] [4912] +13:58:02 [ 15] [ 4] [0320] +13:58:02 [ 18] [ 4] [6011] +13:58:02 [ 19] [ 3] [418] +13:58:02 [ 22] [ 3] [021] +13:58:02 [ 25] [ 2] [01] +13:58:02 [ 28] [ 9] [D00002000] +13:58:02 [ 32] [ 6] [198901] +13:58:02 [ 35] [ 32] [6213544000346541=491212014654791] +13:58:02 [ 37] [ 12] [507913206869] +13:58:02 [ 41] [ 8] [01529017] +13:58:02 [ 42] [ 15] [000000041529017] +13:58:02 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:58:02 [ 49] [ 3] [418] +13:58:02 [ 52] [ 16] [5BC3BA0D5074E40B] +13:58:02 ============================================================================ +13:58:02 + + +waiting on router queue for slot.... +13:58:02 Sending to : +13:58:02 ============================================================================ +13:58:02 ============================================================================ +13:58:02 Slot Id : <145> +13:58:02 Transaction Type : REQUEST +13:58:02 Received From : +13:58:02 ============================================================================ +13:58:02 FNo. Len. Field Value +13:58:02 ============================================================================ +13:58:02 [ 1] [ 4] [0200] +13:58:02 [ 2] [ 16] [6213544000346541] +13:58:02 [ 3] [ 6] [011000] +13:58:02 [ 4] [ 12] [000100000000] +13:58:02 [ 7] [ 10] [0320135822] +13:58:02 [ 11] [ 6] [206869] +13:58:02 [ 12] [ 6] [134328] +13:58:02 [ 13] [ 4] [0320] +13:58:02 [ 14] [ 4] [4912] +13:58:02 [ 15] [ 4] [0320] +13:58:02 [ 18] [ 4] [6011] +13:58:02 [ 19] [ 3] [418] +13:58:02 [ 22] [ 3] [021] +13:58:02 [ 25] [ 2] [01] +13:58:02 [ 28] [ 9] [D00002000] +13:58:02 [ 32] [ 6] [198901] +13:58:02 [ 35] [ 32] [6213544000346541=491212014654791] +13:58:02 [ 37] [ 12] [507913206869] +13:58:02 [ 41] [ 8] [01529017] +13:58:02 [ 42] [ 15] [000000041529017] +13:58:02 [ 43] [ 40] [JDB ATM CENTER POINT VN ] +13:58:02 [ 49] [ 3] [418] +13:58:02 [ 52] [ 16] [7A380D03B06AEA04] +13:58:02 ============================================================================ +13:58:02 + + +waiting on router queue for slot.... +13:58:02 ============================================================================ +13:58:02 Slot Id : <132> +13:58:02 Transaction Type : RESPONSE +13:58:02 Received From : +13:58:02 ============================================================================ +13:58:02 FNo. Len. Field Value +13:58:02 ============================================================================ +13:58:02 [ 1] [ 4] [0210] +13:58:02 Sending to : <0> +13:58:02 [ 2] [ 16] [6213545000785984] +13:58:02 ============================================================================ +13:58:02 [ 3] [ 6] [010000] +13:58:02 [ 4] [ 12] [000050000000] +13:58:02 [ 7] [ 10] [0320065705] +13:58:02 [ 11] [ 6] [269448] +13:58:02 [ 12] [ 6] [135705] +13:58:02 [ 13] [ 4] [0320] +13:58:02 [ 15] [ 4] [0320] +13:58:02 [ 18] [ 4] [6011] +13:58:02 [ 19] [ 3] [418] +13:58:02 [ 32] [ 6] [180893] +13:58:02 [ 35] [ 32] [6213545000785984=491212018598996] +13:58:02 [ 37] [ 12] [507906269448] +13:58:02 [ 38] [ 6] [877531] +13:58:02 [ 39] [ 2] [00] +13:58:02 [ 41] [ 8] [0525XYBT] +13:58:02 [ 49] [ 3] [418] +13:58:02 [ 54] [ 40] [0001418C0001663499430002418C000166349943] +13:58:02 ============================================================================ +13:58:02 Sending to : +13:58:02 ============================================================================ +13:58:02 + + +waiting on router queue for slot.... +13:58:02 ============================================================================ +13:58:02 Slot Id : <145> +13:58:02 Transaction Type : RESPONSE +13:58:02 Received From : +13:58:02 ============================================================================ +13:58:02 FNo. Len. Field Value +13:58:02 ============================================================================ +13:58:02 [ 1] [ 4] [0210] +13:58:02 [ 2] [ 16] [6213544000346541] +13:58:02 [ 3] [ 6] [011000] +13:58:02 [ 4] [ 12] [000100000000] +13:58:02 [ 7] [ 10] [0320135822] +13:58:02 [ 11] [ 6] [206869] +13:58:02 [ 12] [ 6] [134328] +13:58:02 [ 13] [ 4] [0320] +13:58:02 [ 15] [ 4] [0320] +13:58:02 [ 18] [ 4] [6011] +13:58:02 [ 19] [ 3] [418] +13:58:02 [ 32] [ 6] [198901] +13:58:02 [ 35] [ 32] [6213544000346541=491212014654791] +13:58:02 [ 37] [ 12] [507913206869] +13:58:02 [ 38] [ 6] [526810] +13:58:02 [ 39] [ 2] [00] +13:58:02 [ 41] [ 8] [01529017] +13:58:02 [ 49] [ 3] [418] +13:58:02 [ 54] [ 40] [1001418C0020902815241002418C002090281524] +13:58:02 ============================================================================ +13:58:02 Sending to : +13:58:02 ============================================================================ +13:58:02 + + +waiting on router queue for slot.... +13:58:03 ============================================================================ +13:58:03 Slot Id : <158> +13:58:03 Transaction Type : REQUEST +13:58:03 Received From : +13:58:03 ============================================================================ +13:58:03 FNo. Len. Field Value +13:58:03 ============================================================================ +13:58:03 [ 1] [ 4] [0200] +13:58:03 [ 2] [ 16] [6688990103541601] +13:58:03 [ 3] [ 6] [010000] +13:58:03 [ 4] [ 12] [000200000000] +13:58:03 [ 7] [ 10] [0320065708] +13:58:03 [ 11] [ 6] [269449] +13:58:03 [ 12] [ 6] [135708] +13:58:03 [ 13] [ 4] [0320] +13:58:03 [ 14] [ 4] [4301] +13:58:03 [ 15] [ 4] [0320] +13:58:03 [ 18] [ 4] [6011] +13:58:03 [ 19] [ 3] [418] +13:58:03 [ 22] [ 3] [021] +13:58:03 [ 25] [ 2] [01] +13:58:03 [ 28] [ 9] [D00002000] +13:58:03 [ 32] [ 6] [180893] +13:58:03 [ 35] [ 37] [6688990103541601=43011231160124100000] +13:58:03 [ 37] [ 12] [507906269449] +13:58:03 [ 41] [ 8] [0221XKKM] +13:58:03 [ 42] [ 15] [999999 ] +13:58:03 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +13:58:03 [ 49] [ 3] [418] +13:58:03 [ 52] [ 16] [AA0147EB6F7A5445] +13:58:03 ============================================================================ +13:58:03 + + +waiting on router queue for slot.... +13:58:03 Sending to : +13:58:03 ============================================================================ +13:58:03 Sending to : +13:58:03 ============================================================================ +13:58:03 ============================================================================ +13:58:03 Slot Id : <132> +13:58:03 Transaction Type : RESPONSE +13:58:03 Received From : +13:58:03 ============================================================================ +13:58:03 FNo. Len. Field Value +13:58:03 ============================================================================ +13:58:03 [ 1] [ 4] [0210] +13:58:03 [ 2] [ 16] [6213545000785984] +13:58:03 [ 3] [ 6] [010000] +13:58:03 [ 4] [ 12] [000050000000] +13:58:03 [ 7] [ 10] [0320065705] +13:58:03 [ 11] [ 6] [269448] +13:58:03 [ 12] [ 6] [135705] +13:58:03 [ 13] [ 4] [0320] +13:58:03 [ 15] [ 4] [0320] +13:58:03 [ 18] [ 4] [6011] +13:58:03 [ 19] [ 3] [418] +13:58:03 [ 32] [ 6] [180893] +13:58:03 [ 35] [ 32] [6213545000785984=491212018598996] +13:58:03 [ 37] [ 12] [507906269448] +13:58:03 [ 38] [ 6] [877531] +13:58:03 [ 39] [ 2] [00] +13:58:03 [ 41] [ 8] [0525XYBT] +13:58:03 [ 49] [ 3] [418] +13:58:03 [ 54] [ 40] [0001418C0001663499430002418C000166349943] +13:58:03 ============================================================================ +13:58:03 Calculate Source COMM Id = 2 +13:58:03 ============================================================================ +13:58:03 + + +waiting on router queue for slot.... +13:58:03 ============================================================================ +13:58:03 Slot Id : <158> +13:58:03 Transaction Type : REQUEST +13:58:03 Received From : +13:58:03 ============================================================================ +13:58:03 FNo. Len. Field Value +13:58:03 ============================================================================ +13:58:03 [ 1] [ 4] [0200] +13:58:03 [ 2] [ 16] [6688990103541601] +13:58:03 [ 3] [ 6] [010000] +13:58:03 [ 4] [ 12] [000200000000] +13:58:03 [ 7] [ 10] [0320065708] +13:58:03 [ 11] [ 6] [269449] +13:58:03 [ 12] [ 6] [135708] +13:58:03 [ 13] [ 4] [0320] +13:58:03 [ 14] [ 4] [4301] +13:58:03 [ 15] [ 4] [0320] +13:58:03 [ 18] [ 4] [6011] +13:58:03 [ 19] [ 3] [418] +13:58:03 [ 22] [ 3] [021] +13:58:03 [ 25] [ 2] [01] +13:58:03 [ 28] [ 9] [D00002000] +13:58:03 [ 32] [ 6] [180893] +13:58:03 [ 35] [ 37] [6688990103541601=43011231160124100000] +13:58:03 [ 37] [ 12] [507906269449] +13:58:03 [ 41] [ 8] [0221XKKM] +13:58:03 [ 42] [ 15] [999999 ] +13:58:03 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +13:58:03 [ 49] [ 3] [418] +13:58:03 [ 52] [ 16] [AA0147EB6F7A5445] +13:58:03 ============================================================================ +13:58:03 + + +waiting on router queue for slot.... +13:58:03 Sending to : +13:58:03 ============================================================================ +13:58:03 ============================================================================ +13:58:03 Slot Id : <158> +13:58:03 Transaction Type : REQUEST +13:58:03 Received From : +13:58:03 ============================================================================ +13:58:03 FNo. Len. Field Value +13:58:03 ============================================================================ +13:58:03 [ 1] [ 4] [0200] +13:58:03 [ 2] [ 16] [6688990103541601] +13:58:03 [ 3] [ 6] [010000] +13:58:03 [ 4] [ 12] [000200000000] +13:58:03 [ 7] [ 10] [0320065708] +13:58:03 [ 11] [ 6] [269449] +13:58:03 [ 12] [ 6] [135708] +13:58:03 [ 13] [ 4] [0320] +13:58:03 [ 14] [ 4] [4301] +13:58:03 [ 15] [ 4] [0320] +13:58:03 [ 18] [ 4] [6011] +13:58:03 [ 19] [ 3] [418] +13:58:03 [ 22] [ 3] [021] +13:58:03 [ 25] [ 2] [01] +13:58:03 [ 28] [ 9] [D00002000] +13:58:03 [ 32] [ 6] [180893] +13:58:03 [ 35] [ 37] [6688990103541601=43011231160124100000] +13:58:03 [ 37] [ 12] [507906269449] +13:58:03 [ 41] [ 8] [0221XKKM] +13:58:03 [ 42] [ 15] [999999 ] +13:58:03 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +13:58:03 [ 49] [ 3] [418] +13:58:03 [ 52] [ 16] [11EBC6641DBB9C42] +13:58:03 ============================================================================ +13:58:03 + + +waiting on router queue for slot.... +13:58:03 Sending to : <0> +13:58:03 ============================================================================ +13:58:03 ============================================================================ +13:58:03 Slot Id : <158> +13:58:03 Transaction Type : RESPONSE +13:58:03 Received From : +13:58:03 ============================================================================ +13:58:03 FNo. Len. Field Value +13:58:03 ============================================================================ +13:58:03 [ 1] [ 4] [0210] +13:58:03 [ 2] [ 16] [6688990103541601] +13:58:03 [ 3] [ 6] [010000] +13:58:03 [ 4] [ 12] [000200000000] +13:58:03 [ 7] [ 10] [0320065708] +13:58:03 [ 11] [ 6] [269449] +13:58:03 [ 12] [ 6] [135708] +13:58:03 [ 13] [ 4] [0320] +13:58:03 [ 15] [ 4] [0320] +13:58:03 [ 18] [ 4] [6011] +13:58:03 [ 19] [ 3] [418] +13:58:03 [ 22] [ 3] [021] +13:58:03 [ 32] [ 6] [180893] +13:58:03 [ 35] [ 37] [6688990103541601=43011231160124100000] +13:58:03 [ 37] [ 12] [507906269449] +13:58:03 [ 39] [ 2] [61] +13:58:03 [ 41] [ 8] [0221XKKM] +13:58:03 [ 49] [ 3] [418] +13:58:03 ============================================================================ +13:58:03 Sending to : +13:58:03 ============================================================================ +13:58:03 + + +waiting on router queue for slot.... +13:58:05 ============================================================================ +13:58:05 Slot Id : <145> +13:58:05 Transaction Type : RESPONSE +13:58:05 Received From : +13:58:05 ============================================================================ +13:58:05 FNo. Len. Field Value +13:58:05 ============================================================================ +13:58:05 [ 1] [ 4] [0210] +13:58:05 [ 2] [ 16] [6213544000346541] +13:58:05 [ 3] [ 6] [011000] +13:58:05 [ 4] [ 12] [000100000000] +13:58:05 [ 7] [ 10] [0320135822] +13:58:05 [ 11] [ 6] [206869] +13:58:05 [ 12] [ 6] [134328] +13:58:05 [ 13] [ 4] [0320] +13:58:05 [ 15] [ 4] [0320] +13:58:05 [ 18] [ 4] [6011] +13:58:05 [ 19] [ 3] [418] +13:58:05 [ 32] [ 6] [198901] +13:58:05 [ 35] [ 32] [6213544000346541=491212014654791] +13:58:05 [ 37] [ 12] [507913206869] +13:58:05 [ 38] [ 6] [526810] +13:58:05 [ 39] [ 2] [00] +13:58:05 [ 41] [ 8] [01529017] +13:58:05 [ 49] [ 3] [418] +13:58:05 [ 54] [ 40] [1001418C0020902815241002418C002090281524] +13:58:05 ============================================================================ +13:58:05 Calculate Source COMM Id = 5 +13:58:05 ============================================================================ +13:58:05 + + +waiting on router queue for slot.... +13:58:05 ============================================================================ +13:58:05 Slot Id : <158> +13:58:05 Transaction Type : RESPONSE +13:58:05 Received From : +13:58:05 ============================================================================ +13:58:05 FNo. Len. Field Value +13:58:05 ============================================================================ +13:58:05 [ 1] [ 4] [0210] +13:58:05 [ 2] [ 16] [6688990103541601] +13:58:05 [ 3] [ 6] [010000] +13:58:05 [ 4] [ 12] [000200000000] +13:58:05 [ 7] [ 10] [0320065708] +13:58:05 [ 11] [ 6] [269449] +13:58:05 [ 12] [ 6] [135708] +13:58:05 [ 13] [ 4] [0320] +13:58:05 [ 15] [ 4] [0320] +13:58:05 [ 18] [ 4] [6011] +13:58:05 [ 19] [ 3] [418] +13:58:05 [ 22] [ 3] [021] +13:58:05 [ 32] [ 6] [180893] +13:58:05 [ 35] [ 37] [6688990103541601=43011231160124100000] +13:58:05 [ 37] [ 12] [507906269449] +13:58:05 [ 39] [ 2] [61] +13:58:05 [ 41] [ 8] [0221XKKM] +13:58:05 [ 49] [ 3] [418] +13:58:05 ============================================================================ +13:58:05 Calculate Source COMM Id = 2 +13:58:05 ============================================================================ +13:58:05 + + +waiting on router queue for slot.... +13:58:14 ============================================================================ +13:58:14 Slot Id : <154> +13:58:14 Transaction Type : REQUEST +13:58:14 Received From : +13:58:14 ============================================================================ +13:58:14 FNo. Len. Field Value +13:58:14 ============================================================================ +13:58:14 [ 1] [ 4] [0200] +13:58:14 [ 2] [ 16] [6688990040134924] +13:58:14 [ 3] [ 6] [301000] +13:58:14 [ 7] [ 10] [0320065720] +13:58:14 [ 11] [ 6] [269451] +13:58:14 [ 12] [ 6] [135720] +13:58:14 [ 13] [ 4] [0320] +13:58:14 [ 14] [ 4] [9804] +13:58:14 [ 15] [ 4] [0320] +13:58:14 [ 18] [ 4] [6011] +13:58:14 [ 19] [ 3] [418] +13:58:14 [ 22] [ 3] [021] +13:58:14 [ 25] [ 2] [01] +13:58:14 [ 32] [ 6] [180893] +13:58:14 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:58:14 [ 37] [ 12] [507906269451] +13:58:14 [ 41] [ 8] [0321LNTV] +13:58:14 [ 42] [ 15] [999999 ] +13:58:14 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:58:14 [ 49] [ 3] [418] +13:58:14 [ 52] [ 16] [01813B808BD94AF8] +13:58:14 ============================================================================ +13:58:14 + + +waiting on router queue for slot.... +13:58:14 Sending to : +13:58:14 ============================================================================ +13:58:14 Sending to : +13:58:14 ============================================================================ +13:58:14 ============================================================================ +13:58:14 Slot Id : <154> +13:58:14 Transaction Type : REQUEST +13:58:14 Received From : +13:58:14 ============================================================================ +13:58:14 FNo. Len. Field Value +13:58:14 ============================================================================ +13:58:14 [ 1] [ 4] [0200] +13:58:14 [ 2] [ 16] [6688990040134924] +13:58:14 [ 3] [ 6] [301000] +13:58:14 [ 7] [ 10] [0320065720] +13:58:14 [ 11] [ 6] [269451] +13:58:14 [ 12] [ 6] [135720] +13:58:14 [ 13] [ 4] [0320] +13:58:14 [ 14] [ 4] [9804] +13:58:14 [ 15] [ 4] [0320] +13:58:14 [ 18] [ 4] [6011] +13:58:14 [ 19] [ 3] [418] +13:58:14 [ 22] [ 3] [021] +13:58:14 [ 25] [ 2] [01] +13:58:14 [ 32] [ 6] [180893] +13:58:14 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:58:14 [ 37] [ 12] [507906269451] +13:58:14 [ 41] [ 8] [0321LNTV] +13:58:14 [ 42] [ 15] [999999 ] +13:58:14 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:58:14 [ 49] [ 3] [418] +13:58:14 [ 52] [ 16] [01813B808BD94AF8] +13:58:14 ============================================================================ +13:58:14 + + +waiting on router queue for slot.... +13:58:14 Sending to : +13:58:14 ============================================================================ +13:58:14 ============================================================================ +13:58:14 Slot Id : <154> +13:58:14 Transaction Type : REQUEST +13:58:14 Received From : +13:58:14 ============================================================================ +13:58:14 FNo. Len. Field Value +13:58:14 ============================================================================ +13:58:14 [ 1] [ 4] [0200] +13:58:14 [ 2] [ 16] [6688990040134924] +13:58:14 [ 3] [ 6] [301000] +13:58:14 [ 7] [ 10] [0320065720] +13:58:14 [ 11] [ 6] [269451] +13:58:14 [ 12] [ 6] [135720] +13:58:14 [ 13] [ 4] [0320] +13:58:14 [ 14] [ 4] [9804] +13:58:14 [ 15] [ 4] [0320] +13:58:14 [ 18] [ 4] [6011] +13:58:14 [ 19] [ 3] [418] +13:58:14 [ 22] [ 3] [021] +13:58:14 [ 25] [ 2] [01] +13:58:14 [ 32] [ 6] [180893] +13:58:14 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:58:14 [ 37] [ 12] [507906269451] +13:58:14 [ 41] [ 8] [0321LNTV] +13:58:14 [ 42] [ 15] [999999 ] +13:58:14 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:58:14 [ 49] [ 3] [418] +13:58:14 [ 52] [ 16] [F07ADB9F5826AD14] +13:58:14 ============================================================================ +13:58:14 + + +waiting on router queue for slot.... +13:58:14 Sending to : <0> +13:58:14 ============================================================================ +13:58:14 ============================================================================ +13:58:14 Slot Id : <154> +13:58:14 Transaction Type : RESPONSE +13:58:14 Received From : +13:58:14 ============================================================================ +13:58:14 FNo. Len. Field Value +13:58:14 ============================================================================ +13:58:14 [ 1] [ 4] [0210] +13:58:14 [ 2] [ 16] [6688990040134924] +13:58:14 [ 3] [ 6] [301000] +13:58:14 [ 4] [ 12] [000000000000] +13:58:14 [ 7] [ 10] [0320065720] +13:58:14 [ 11] [ 6] [269451] +13:58:14 [ 12] [ 6] [135720] +13:58:14 [ 13] [ 4] [0320] +13:58:14 [ 15] [ 4] [0320] +13:58:14 [ 18] [ 4] [6011] +13:58:14 [ 19] [ 3] [418] +13:58:14 [ 22] [ 3] [021] +13:58:14 [ 32] [ 6] [180893] +13:58:14 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:58:14 [ 37] [ 12] [507906269451] +13:58:14 [ 39] [ 2] [14] +13:58:14 [ 41] [ 8] [0321LNTV] +13:58:14 [ 49] [ 3] [418] +13:58:14 ============================================================================ +13:58:14 Sending to : +13:58:14 ============================================================================ +13:58:14 + + +waiting on router queue for slot.... +13:58:15 ============================================================================ +13:58:15 Slot Id : <154> +13:58:15 Transaction Type : RESPONSE +13:58:15 Received From : +13:58:15 ============================================================================ +13:58:15 FNo. Len. Field Value +13:58:15 ============================================================================ +13:58:15 [ 1] [ 4] [0210] +13:58:15 [ 2] [ 16] [6688990040134924] +13:58:15 [ 3] [ 6] [301000] +13:58:15 [ 4] [ 12] [000000000000] +13:58:15 [ 7] [ 10] [0320065720] +13:58:15 [ 11] [ 6] [269451] +13:58:15 [ 12] [ 6] [135720] +13:58:15 [ 13] [ 4] [0320] +13:58:15 [ 15] [ 4] [0320] +13:58:15 [ 18] [ 4] [6011] +13:58:15 [ 19] [ 3] [418] +13:58:15 [ 22] [ 3] [021] +13:58:15 [ 32] [ 6] [180893] +13:58:15 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:58:15 [ 37] [ 12] [507906269451] +13:58:15 [ 39] [ 2] [14] +13:58:15 [ 41] [ 8] [0321LNTV] +13:58:15 [ 49] [ 3] [418] +13:58:15 ============================================================================ +13:58:15 Calculate Source COMM Id = 2 +13:58:15 ============================================================================ +13:58:15 + + +waiting on router queue for slot.... +13:58:16 ============================================================================ +13:58:16 Slot Id : <143> +13:58:16 Transaction Type : REQUEST +13:58:16 Received From : +13:58:16 ============================================================================ +13:58:16 FNo. Len. Field Value +13:58:16 ============================================================================ +13:58:16 [ 1] [ 4] [0200] +13:58:16 [ 2] [ 16] [6213544001355038] +13:58:16 [ 3] [ 6] [301000] +13:58:16 [ 4] [ 12] [000000000000] +13:58:16 [ 7] [ 10] [0320135607] +13:58:16 [ 11] [ 6] [947755] +13:58:16 [ 12] [ 6] [135607] +13:58:16 [ 13] [ 4] [0320] +13:58:16 [ 15] [ 4] [0320] +13:58:16 [ 18] [ 4] [6011] +13:58:16 [ 19] [ 3] [418] +13:58:16 [ 22] [ 3] [021] +13:58:16 [ 25] [ 2] [01] +13:58:16 [ 28] [ 9] [D00000000] +13:58:16 [ 32] [ 6] [668899] +13:58:16 [ 35] [ 32] [6213544001355038=491212015503263] +13:58:16 [ 37] [ 12] [507900168614] +13:58:16 [ 41] [ 8] [03020007] +13:58:16 [ 42] [ 15] [APT ] +13:58:16 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +13:58:16 [ 49] [ 3] [418] +13:58:16 [ 52] [ 16] [297EA9CF91901BE2] +13:58:16 ============================================================================ +13:58:16 + + +waiting on router queue for slot.... +13:58:16 Sending to : +13:58:16 ============================================================================ +13:58:16 Sending to : +13:58:16 ============================================================================ +13:58:17 ============================================================================ +13:58:17 Slot Id : <143> +13:58:17 Transaction Type : REQUEST +13:58:17 Received From : +13:58:17 ============================================================================ +13:58:17 FNo. Len. Field Value +13:58:17 ============================================================================ +13:58:17 [ 1] [ 4] [0200] +13:58:17 [ 2] [ 16] [6213544001355038] +13:58:17 [ 3] [ 6] [301000] +13:58:17 [ 4] [ 12] [000000000000] +13:58:17 [ 7] [ 10] [0320135607] +13:58:17 [ 11] [ 6] [947755] +13:58:17 [ 12] [ 6] [135607] +13:58:17 [ 13] [ 4] [0320] +13:58:17 [ 15] [ 4] [0320] +13:58:17 [ 18] [ 4] [6011] +13:58:17 [ 19] [ 3] [418] +13:58:17 [ 22] [ 3] [021] +13:58:17 [ 25] [ 2] [01] +13:58:17 [ 28] [ 9] [D00000000] +13:58:17 [ 32] [ 6] [668899] +13:58:17 [ 35] [ 32] [6213544001355038=491212015503263] +13:58:17 [ 37] [ 12] [507900168614] +13:58:17 [ 41] [ 8] [03020007] +13:58:17 [ 42] [ 15] [APT ] +13:58:17 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +13:58:17 [ 49] [ 3] [418] +13:58:17 [ 52] [ 16] [297EA9CF91901BE2] +13:58:17 ============================================================================ +13:58:17 + + +waiting on router queue for slot.... +13:58:17 Sending to : +13:58:17 ============================================================================ +13:58:17 ============================================================================ +13:58:17 Slot Id : <143> +13:58:17 Transaction Type : REQUEST +13:58:17 Received From : +13:58:17 ============================================================================ +13:58:17 FNo. Len. Field Value +13:58:17 ============================================================================ +13:58:17 [ 1] [ 4] [0200] +13:58:17 [ 2] [ 16] [6213544001355038] +13:58:17 [ 3] [ 6] [301000] +13:58:17 [ 4] [ 12] [000000000000] +13:58:17 [ 7] [ 10] [0320135607] +13:58:17 [ 11] [ 6] [947755] +13:58:17 [ 12] [ 6] [135607] +13:58:17 [ 13] [ 4] [0320] +13:58:17 [ 15] [ 4] [0320] +13:58:17 [ 18] [ 4] [6011] +13:58:17 [ 19] [ 3] [418] +13:58:17 [ 22] [ 3] [021] +13:58:17 [ 25] [ 2] [01] +13:58:17 [ 28] [ 9] [D00000000] +13:58:17 [ 32] [ 6] [668899] +13:58:17 [ 35] [ 32] [6213544001355038=491212015503263] +13:58:17 [ 37] [ 12] [507900168614] +13:58:17 [ 41] [ 8] [03020007] +13:58:17 [ 42] [ 15] [APT ] +13:58:17 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +13:58:17 [ 49] [ 3] [418] +13:58:17 [ 52] [ 16] [6EDF6916694E6198] +13:58:17 ============================================================================ +13:58:17 + + +waiting on router queue for slot.... +13:58:17 Sending to : <0> +13:58:17 ============================================================================ +13:58:18 ============================================================================ +13:58:18 Slot Id : <143> +13:58:18 Transaction Type : RESPONSE +13:58:18 Received From : +13:58:18 ============================================================================ +13:58:18 FNo. Len. Field Value +13:58:18 ============================================================================ +13:58:18 [ 1] [ 4] [0210] +13:58:18 [ 2] [ 16] [6213544001355038] +13:58:18 [ 3] [ 6] [301000] +13:58:18 [ 4] [ 12] [000000000000] +13:58:18 [ 7] [ 10] [0320135607] +13:58:18 [ 11] [ 6] [947755] +13:58:18 [ 12] [ 6] [135607] +13:58:18 [ 13] [ 4] [0320] +13:58:18 [ 15] [ 4] [0320] +13:58:18 [ 18] [ 4] [6011] +13:58:18 [ 19] [ 3] [418] +13:58:18 [ 32] [ 6] [668899] +13:58:18 [ 35] [ 32] [6213544001355038=491212015503263] +13:58:18 [ 37] [ 12] [507900168614] +13:58:18 [ 38] [ 6] [657847] +13:58:18 [ 39] [ 2] [00] +13:58:18 [ 41] [ 8] [03020007] +13:58:18 [ 49] [ 3] [418] +13:58:18 [ 54] [ 40] [1001418C0000502372541002418C000050237254] +13:58:18 ============================================================================ +13:58:18 Sending to : +13:58:18 ============================================================================ +13:58:18 + + +waiting on router queue for slot.... +13:58:20 ============================================================================ +13:58:20 Slot Id : <143> +13:58:20 Transaction Type : RESPONSE +13:58:20 Received From : +13:58:20 ============================================================================ +13:58:20 FNo. Len. Field Value +13:58:20 ============================================================================ +13:58:20 [ 1] [ 4] [0210] +13:58:20 [ 2] [ 16] [6213544001355038] +13:58:20 [ 3] [ 6] [301000] +13:58:20 [ 4] [ 12] [000000000000] +13:58:20 [ 7] [ 10] [0320135607] +13:58:20 [ 11] [ 6] [947755] +13:58:20 [ 12] [ 6] [135607] +13:58:20 [ 13] [ 4] [0320] +13:58:20 [ 15] [ 4] [0320] +13:58:20 [ 18] [ 4] [6011] +13:58:20 [ 19] [ 3] [418] +13:58:20 [ 32] [ 6] [668899] +13:58:20 [ 35] [ 32] [6213544001355038=491212015503263] +13:58:20 [ 37] [ 12] [507900168614] +13:58:20 [ 38] [ 6] [657847] +13:58:20 [ 39] [ 2] [00] +13:58:20 [ 41] [ 8] [03020007] +13:58:20 [ 49] [ 3] [418] +13:58:20 [ 54] [ 40] [1001418C0000502372541002418C000050237254] +13:58:20 ============================================================================ +13:58:20 Calculate Source COMM Id = 4 +13:58:20 ============================================================================ +13:58:20 + + +waiting on router queue for slot.... +13:58:22 ============================================================================ +13:58:22 Slot Id : <166> +13:58:22 Transaction Type : REQUEST +13:58:22 Received From : +13:58:22 ============================================================================ +13:58:22 FNo. Len. Field Value +13:58:22 ============================================================================ +13:58:22 [ 1] [ 4] [0200] +13:58:22 [ 2] [ 16] [6213544001550109] +13:58:22 [ 3] [ 6] [010000] +13:58:22 [ 4] [ 12] [000030000000] +13:58:22 [ 7] [ 10] [0320135612] +13:58:22 [ 11] [ 6] [947758] +13:58:22 [ 12] [ 6] [135612] +13:58:22 [ 13] [ 4] [0320] +13:58:22 [ 15] [ 4] [0320] +13:58:22 [ 18] [ 4] [6011] +13:58:22 [ 19] [ 3] [418] +13:58:22 [ 22] [ 3] [021] +13:58:22 [ 25] [ 2] [01] +13:58:22 [ 28] [ 9] [D00002000] +13:58:22 [ 32] [ 6] [668899] +13:58:22 [ 35] [ 32] [6213544001550109=491212015010392] +13:58:22 [ 37] [ 12] [507901963595] +13:58:22 [ 41] [ 8] [03020019] +13:58:22 [ 42] [ 15] [APT ] +13:58:22 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:58:22 [ 49] [ 3] [418] +13:58:22 [ 52] [ 16] [60790A7E3EB3A543] +13:58:22 ============================================================================ +13:58:22 + + +waiting on router queue for slot.... +13:58:22 Sending to : +13:58:22 ============================================================================ +13:58:22 Sending to : +13:58:22 ============================================================================ +13:58:22 ============================================================================ +13:58:22 Slot Id : <166> +13:58:22 Transaction Type : REQUEST +13:58:22 Received From : +13:58:22 ============================================================================ +13:58:22 FNo. Len. Field Value +13:58:22 ============================================================================ +13:58:22 [ 1] [ 4] [0200] +13:58:22 [ 2] [ 16] [6213544001550109] +13:58:22 [ 3] [ 6] [010000] +13:58:22 [ 4] [ 12] [000030000000] +13:58:22 [ 7] [ 10] [0320135612] +13:58:22 [ 11] [ 6] [947758] +13:58:22 [ 12] [ 6] [135612] +13:58:22 [ 13] [ 4] [0320] +13:58:22 [ 15] [ 4] [0320] +13:58:22 [ 18] [ 4] [6011] +13:58:22 [ 19] [ 3] [418] +13:58:22 [ 22] [ 3] [021] +13:58:22 [ 25] [ 2] [01] +13:58:22 [ 28] [ 9] [D00002000] +13:58:22 [ 32] [ 6] [668899] +13:58:22 [ 35] [ 32] [6213544001550109=491212015010392] +13:58:22 [ 37] [ 12] [507901963595] +13:58:22 [ 41] [ 8] [03020019] +13:58:22 [ 42] [ 15] [APT ] +13:58:22 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:58:22 [ 49] [ 3] [418] +13:58:22 [ 52] [ 16] [60790A7E3EB3A543] +13:58:22 ============================================================================ +13:58:22 + + +waiting on router queue for slot.... +13:58:22 Sending to : +13:58:22 ============================================================================ +13:58:22 ============================================================================ +13:58:22 Slot Id : <166> +13:58:22 Transaction Type : REQUEST +13:58:22 Received From : +13:58:22 ============================================================================ +13:58:22 FNo. Len. Field Value +13:58:22 ============================================================================ +13:58:22 [ 1] [ 4] [0200] +13:58:22 [ 2] [ 16] [6213544001550109] +13:58:22 [ 3] [ 6] [010000] +13:58:22 [ 4] [ 12] [000030000000] +13:58:22 [ 7] [ 10] [0320135612] +13:58:22 [ 11] [ 6] [947758] +13:58:22 [ 12] [ 6] [135612] +13:58:22 [ 13] [ 4] [0320] +13:58:22 [ 15] [ 4] [0320] +13:58:22 [ 18] [ 4] [6011] +13:58:22 [ 19] [ 3] [418] +13:58:22 [ 22] [ 3] [021] +13:58:22 [ 25] [ 2] [01] +13:58:22 [ 28] [ 9] [D00002000] +13:58:22 [ 32] [ 6] [668899] +13:58:22 [ 35] [ 32] [6213544001550109=491212015010392] +13:58:22 [ 37] [ 12] [507901963595] +13:58:22 [ 41] [ 8] [03020019] +13:58:22 [ 42] [ 15] [APT ] +13:58:22 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +13:58:22 [ 49] [ 3] [418] +13:58:22 [ 52] [ 16] [281BA731063ABCFB] +13:58:22 ============================================================================ +13:58:22 + + +waiting on router queue for slot.... +13:58:22 Sending to : <0> +13:58:22 ============================================================================ +13:58:23 ============================================================================ +13:58:23 Slot Id : <166> +13:58:23 Transaction Type : RESPONSE +13:58:23 Received From : +13:58:23 ============================================================================ +13:58:23 FNo. Len. Field Value +13:58:23 ============================================================================ +13:58:23 [ 1] [ 4] [0210] +13:58:23 [ 2] [ 16] [6213544001550109] +13:58:23 [ 3] [ 6] [010000] +13:58:23 [ 4] [ 12] [000030000000] +13:58:23 [ 7] [ 10] [0320135612] +13:58:23 [ 11] [ 6] [947758] +13:58:23 [ 12] [ 6] [135612] +13:58:23 [ 13] [ 4] [0320] +13:58:23 [ 15] [ 4] [0320] +13:58:23 [ 18] [ 4] [6011] +13:58:23 [ 19] [ 3] [418] +13:58:23 [ 32] [ 6] [668899] +13:58:23 [ 35] [ 32] [6213544001550109=491212015010392] +13:58:23 [ 37] [ 12] [507901963595] +13:58:23 [ 38] [ 6] [100717] +13:58:23 [ 39] [ 2] [00] +13:58:23 [ 41] [ 8] [03020019] +13:58:23 [ 49] [ 3] [418] +13:58:23 [ 54] [ 40] [0001418C0000198077410002418C000019807741] +13:58:23 ============================================================================ +13:58:23 Sending to : +13:58:23 ============================================================================ +13:58:23 + + +waiting on router queue for slot.... +13:58:24 ============================================================================ +13:58:24 Slot Id : <166> +13:58:24 Transaction Type : RESPONSE +13:58:24 Received From : +13:58:24 ============================================================================ +13:58:24 FNo. Len. Field Value +13:58:24 ============================================================================ +13:58:24 [ 1] [ 4] [0210] +13:58:24 [ 2] [ 16] [6213544001550109] +13:58:24 [ 3] [ 6] [010000] +13:58:24 [ 4] [ 12] [000030000000] +13:58:24 [ 7] [ 10] [0320135612] +13:58:24 [ 11] [ 6] [947758] +13:58:24 [ 12] [ 6] [135612] +13:58:24 [ 13] [ 4] [0320] +13:58:24 [ 15] [ 4] [0320] +13:58:24 [ 18] [ 4] [6011] +13:58:24 [ 19] [ 3] [418] +13:58:24 [ 32] [ 6] [668899] +13:58:24 [ 35] [ 32] [6213544001550109=491212015010392] +13:58:24 [ 37] [ 12] [507901963595] +13:58:24 [ 38] [ 6] [100717] +13:58:24 [ 39] [ 2] [00] +13:58:24 [ 41] [ 8] [03020019] +13:58:24 [ 49] [ 3] [418] +13:58:24 [ 54] [ 40] [0001418C0000198077410002418C000019807741] +13:58:24 ============================================================================ +13:58:24 Calculate Source COMM Id = 4 +13:58:24 ============================================================================ +13:58:24 + + +waiting on router queue for slot.... +13:58:32 ============================================================================ +13:58:32 Slot Id : <120> +13:58:32 Transaction Type : REQUEST +13:58:32 Received From : +13:58:32 ============================================================================ +13:58:32 FNo. Len. Field Value +13:58:32 ============================================================================ +13:58:32 [ 1] [ 4] [0200] +13:58:32 [ 2] [ 16] [1888880000056689] +13:58:32 [ 3] [ 6] [010000] +13:58:32 [ 4] [ 12] [000020000000] +13:58:32 [ 7] [ 10] [0320135828] +13:58:32 [ 11] [ 6] [764206] +13:58:32 [ 12] [ 6] [135828] +13:58:32 [ 13] [ 4] [0320] +13:58:32 [ 15] [ 4] [0320] +13:58:32 [ 18] [ 4] [6011] +13:58:32 [ 22] [ 3] [900] +13:58:32 [ 25] [ 2] [02] +13:58:32 [ 28] [ 9] [D00002000] +13:58:32 [ 32] [ 6] [621354] +13:58:32 [ 35] [ 32] [1888880000056689=000010100000740] +13:58:32 [ 37] [ 12] [507904351186] +13:58:32 [ 41] [ 8] [03003400] +13:58:32 [ 42] [ 15] [NATIVE ] +13:58:32 [ 43] [ 40] [Atsaphangthong Unit AtsaphangthoLAO] +13:58:32 [ 49] [ 3] [418] +13:58:32 [ 52] [ 16] [485651AB0CDA0B01] +13:58:32 ============================================================================ +13:58:32 + + +waiting on router queue for slot.... +13:58:32 Sending to : +13:58:32 ============================================================================ +13:58:32 Sending to : +13:58:32 ============================================================================ +13:58:32 ============================================================================ +13:58:32 Slot Id : <120> +13:58:32 Transaction Type : REQUEST +13:58:32 Received From : +13:58:32 ============================================================================ +13:58:32 FNo. Len. Field Value +13:58:32 ============================================================================ +13:58:32 [ 1] [ 4] [0200] +13:58:32 [ 2] [ 16] [1888880000056689] +13:58:32 [ 3] [ 6] [010000] +13:58:32 [ 4] [ 12] [000020000000] +13:58:32 [ 7] [ 10] [0320135828] +13:58:32 [ 11] [ 6] [764206] +13:58:32 [ 12] [ 6] [135828] +13:58:32 [ 13] [ 4] [0320] +13:58:32 [ 15] [ 4] [0320] +13:58:32 [ 18] [ 4] [6011] +13:58:32 [ 22] [ 3] [900] +13:58:32 [ 25] [ 2] [02] +13:58:32 [ 28] [ 9] [D00002000] +13:58:32 [ 32] [ 6] [621354] +13:58:32 [ 35] [ 32] [1888880000056689=000010100000740] +13:58:32 [ 37] [ 12] [507904351186] +13:58:32 [ 41] [ 8] [03003400] +13:58:32 [ 42] [ 15] [NATIVE ] +13:58:32 [ 43] [ 40] [Atsaphangthong Unit AtsaphangthoLAO] +13:58:32 [ 49] [ 3] [418] +13:58:32 [ 52] [ 16] [485651AB0CDA0B01] +13:58:32 ============================================================================ +13:58:32 + + +waiting on router queue for slot.... +13:58:32 Sending to : +13:58:32 ============================================================================ +13:58:32 ============================================================================ +13:58:32 Slot Id : <120> +13:58:32 Transaction Type : REQUEST +13:58:32 Received From : +13:58:32 ============================================================================ +13:58:32 FNo. Len. Field Value +13:58:32 ============================================================================ +13:58:32 [ 1] [ 4] [0200] +13:58:32 [ 2] [ 16] [1888880000056689] +13:58:32 [ 3] [ 6] [010000] +13:58:32 [ 4] [ 12] [000020000000] +13:58:32 [ 7] [ 10] [0320135828] +13:58:32 [ 11] [ 6] [764206] +13:58:32 [ 12] [ 6] [135828] +13:58:32 [ 13] [ 4] [0320] +13:58:32 [ 15] [ 4] [0320] +13:58:32 [ 18] [ 4] [6011] +13:58:32 [ 22] [ 3] [900] +13:58:32 [ 25] [ 2] [02] +13:58:32 [ 28] [ 9] [D00002000] +13:58:32 [ 32] [ 6] [621354] +13:58:32 [ 35] [ 32] [1888880000056689=000010100000740] +13:58:32 [ 37] [ 12] [507904351186] +13:58:32 [ 41] [ 8] [03003400] +13:58:32 [ 42] [ 15] [NATIVE ] +13:58:32 [ 43] [ 40] [Atsaphangthong Unit AtsaphangthoLAO] +13:58:32 [ 49] [ 3] [418] +13:58:32 [ 52] [ 16] [02D0B4A1C2363D5B] +13:58:32 ============================================================================ +13:58:32 + + +waiting on router queue for slot.... +13:58:32 Sending to : <5> +13:58:32 ============================================================================ +13:58:33 ============================================================================ +13:58:33 Slot Id : <153> +13:58:33 Transaction Type : REQUEST +13:58:33 Received From : +13:58:33 ============================================================================ +13:58:33 FNo. Len. Field Value +13:58:33 ============================================================================ +13:58:33 [ 1] [ 4] [0800] +13:58:33 [ 7] [ 10] [0320065739] +13:58:33 [ 11] [ 6] [156679] +13:58:33 [ 70] [ 3] [301] +13:58:33 ============================================================================ +13:58:33 + + +waiting on router queue for slot.... +13:58:33 Sending to : +13:58:33 ============================================================================ +13:58:33 ============================================================================ +13:58:33 Slot Id : <153> +13:58:33 Transaction Type : RESPONSE +13:58:33 Received From : +13:58:33 ============================================================================ +13:58:33 FNo. Len. Field Value +13:58:33 ============================================================================ +13:58:33 [ 1] [ 4] [0810] +13:58:33 [ 7] [ 10] [0320065739] +13:58:33 [ 11] [ 6] [156679] +13:58:33 [ 39] [ 2] [00] +13:58:33 [ 70] [ 3] [301] +13:58:33 ============================================================================ +13:58:33 Calculate Source COMM Id = 2 +13:58:33 ============================================================================ +13:58:33 + + +waiting on router queue for slot.... +13:58:40 ============================================================================ +13:58:40 Slot Id : <120> +13:58:40 Transaction Type : RESPONSE +13:58:40 Received From : +13:58:40 ============================================================================ +13:58:40 FNo. Len. Field Value +13:58:40 ============================================================================ +13:58:40 [ 1] [ 4] [0210] +13:58:40 [ 2] [ 16] [1888880000056689] +13:58:40 [ 3] [ 6] [010000] +13:58:40 [ 4] [ 12] [000020000000] +13:58:40 [ 7] [ 10] [0320135828] +13:58:40 [ 11] [ 6] [764206] +13:58:40 [ 12] [ 6] [135828] +13:58:40 [ 13] [ 4] [0320] +13:58:40 [ 15] [ 4] [0320] +13:58:40 [ 18] [ 4] [6011] +13:58:40 [ 19] [ 3] [418] +13:58:40 [ 32] [ 6] [621354] +13:58:40 [ 37] [ 12] [507904351186] +13:58:40 [ 38] [ 6] [896280] +13:58:40 [ 39] [ 2] [00] +13:58:40 [ 41] [ 8] [03003400] +13:58:40 [ 49] [ 3] [418] +13:58:40 [ 54] [ 0] [] +13:58:40 ============================================================================ +13:58:40 Sending to : +13:58:40 ============================================================================ +13:58:40 + + +waiting on router queue for slot.... +13:58:40 ============================================================================ +13:58:40 Slot Id : <133> +13:58:40 Transaction Type : REQUEST +13:58:40 Received From : +13:58:40 ============================================================================ +13:58:40 FNo. Len. Field Value +13:58:40 ============================================================================ +13:58:40 [ 1] [ 4] [0800] +13:58:40 [ 2] [ 5] [02531] +13:58:40 [ 3] [ 6] [579138] +13:58:40 [ 7] [ 10] [0320065840] +13:58:40 [ 11] [ 6] [807223] +13:58:40 [ 15] [ 10] [0320065840] +13:58:40 [ 37] [ 11] [57913807223] +13:58:40 [ 70] [ 3] [001] +13:58:40 ============================================================================ +13:58:40 + + +waiting on router queue for slot.... +13:58:40 ============================================================================ +13:58:40 Slot Id : <133> +13:58:40 Transaction Type : RESPONSE +13:58:40 Received From : +13:58:40 ============================================================================ +13:58:40 FNo. Len. Field Value +13:58:40 ============================================================================ +13:58:40 [ 1] [ 4] [0810] +13:58:40 [ 7] [ 10] [0320065840] +13:58:40 [ 11] [ 6] [807223] +13:58:40 [ 15] [ 4] [0320] +13:58:40 [ 37] [ 12] [57913807223] +13:58:40 [ 39] [ 2] [00] +13:58:40 [ 70] [ 3] [001] +13:58:40 ============================================================================ +13:58:40 Sending to : +13:58:40 ============================================================================ +13:58:40 + + +waiting on router queue for slot.... +13:58:42 ============================================================================ +13:58:42 Slot Id : <120> +13:58:42 Transaction Type : RESPONSE +13:58:42 Received From : +13:58:42 ============================================================================ +13:58:42 FNo. Len. Field Value +13:58:42 ============================================================================ +13:58:42 [ 1] [ 4] [0210] +13:58:42 [ 2] [ 16] [1888880000056689] +13:58:42 [ 3] [ 6] [010000] +13:58:42 [ 4] [ 12] [000020000000] +13:58:42 [ 7] [ 10] [0320135828] +13:58:42 [ 11] [ 6] [764206] +13:58:42 [ 12] [ 6] [135828] +13:58:42 [ 13] [ 4] [0320] +13:58:42 [ 15] [ 4] [0320] +13:58:42 [ 18] [ 4] [6011] +13:58:42 [ 19] [ 3] [418] +13:58:42 [ 32] [ 6] [621354] +13:58:42 [ 37] [ 12] [507904351186] +13:58:42 [ 38] [ 6] [896280] +13:58:42 [ 39] [ 2] [00] +13:58:42 [ 41] [ 8] [03003400] +13:58:42 [ 49] [ 3] [418] +13:58:42 [ 54] [ 0] [] +13:58:42 ============================================================================ +13:58:42 Calculate Source COMM Id = 0 +13:58:42 ============================================================================ +13:58:42 + + +waiting on router queue for slot.... +13:58:47 ============================================================================ +13:58:47 Slot Id : <150> +13:58:47 Transaction Type : REQUEST +13:58:47 Received From : +13:58:47 ============================================================================ +13:58:47 FNo. Len. Field Value +13:58:47 ============================================================================ +13:58:47 [ 1] [ 4] [0200] +13:58:47 [ 2] [ 16] [6213544001355038] +13:58:47 [ 3] [ 6] [301000] +13:58:47 [ 4] [ 12] [000000000000] +13:58:47 [ 7] [ 10] [0320135637] +13:58:47 [ 11] [ 6] [947765] +13:58:47 [ 12] [ 6] [135637] +13:58:47 [ 13] [ 4] [0320] +13:58:47 [ 15] [ 4] [0320] +13:58:47 [ 18] [ 4] [6011] +13:58:47 [ 19] [ 3] [418] +13:58:47 [ 22] [ 3] [021] +13:58:47 [ 25] [ 2] [01] +13:58:47 [ 28] [ 9] [D00000000] +13:58:47 [ 32] [ 6] [668899] +13:58:47 [ 35] [ 32] [6213544001355038=491212015503263] +13:58:47 [ 37] [ 12] [507900168615] +13:58:47 [ 41] [ 8] [03020007] +13:58:47 [ 42] [ 15] [APT ] +13:58:47 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +13:58:47 [ 49] [ 3] [418] +13:58:47 [ 52] [ 16] [297EA9CF91901BE2] +13:58:47 ============================================================================ +13:58:47 + + +waiting on router queue for slot.... +13:58:47 Sending to : +13:58:47 ============================================================================ +13:58:47 Sending to : +13:58:47 ============================================================================ +13:58:47 ============================================================================ +13:58:47 Slot Id : <150> +13:58:47 Transaction Type : REQUEST +13:58:47 Received From : +13:58:47 ============================================================================ +13:58:47 FNo. Len. Field Value +13:58:47 ============================================================================ +13:58:47 [ 1] [ 4] [0200] +13:58:47 [ 2] [ 16] [6213544001355038] +13:58:47 [ 3] [ 6] [301000] +13:58:47 [ 4] [ 12] [000000000000] +13:58:47 [ 7] [ 10] [0320135637] +13:58:47 [ 11] [ 6] [947765] +13:58:47 [ 12] [ 6] [135637] +13:58:47 [ 13] [ 4] [0320] +13:58:47 [ 15] [ 4] [0320] +13:58:47 [ 18] [ 4] [6011] +13:58:47 [ 19] [ 3] [418] +13:58:47 [ 22] [ 3] [021] +13:58:47 [ 25] [ 2] [01] +13:58:47 [ 28] [ 9] [D00000000] +13:58:47 [ 32] [ 6] [668899] +13:58:47 [ 35] [ 32] [6213544001355038=491212015503263] +13:58:47 [ 37] [ 12] [507900168615] +13:58:47 [ 41] [ 8] [03020007] +13:58:47 [ 42] [ 15] [APT ] +13:58:47 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +13:58:47 [ 49] [ 3] [418] +13:58:47 [ 52] [ 16] [297EA9CF91901BE2] +13:58:47 ============================================================================ +13:58:47 + + +waiting on router queue for slot.... +13:58:47 Sending to : +13:58:47 ============================================================================ +13:58:47 ============================================================================ +13:58:47 Slot Id : <150> +13:58:47 Transaction Type : REQUEST +13:58:47 Received From : +13:58:47 ============================================================================ +13:58:47 FNo. Len. Field Value +13:58:47 ============================================================================ +13:58:47 [ 1] [ 4] [0200] +13:58:47 [ 2] [ 16] [6213544001355038] +13:58:47 [ 3] [ 6] [301000] +13:58:47 [ 4] [ 12] [000000000000] +13:58:47 [ 7] [ 10] [0320135637] +13:58:47 [ 11] [ 6] [947765] +13:58:47 [ 12] [ 6] [135637] +13:58:47 [ 13] [ 4] [0320] +13:58:47 [ 15] [ 4] [0320] +13:58:47 [ 18] [ 4] [6011] +13:58:47 [ 19] [ 3] [418] +13:58:47 [ 22] [ 3] [021] +13:58:47 [ 25] [ 2] [01] +13:58:47 [ 28] [ 9] [D00000000] +13:58:47 [ 32] [ 6] [668899] +13:58:47 [ 35] [ 32] [6213544001355038=491212015503263] +13:58:47 [ 37] [ 12] [507900168615] +13:58:47 [ 41] [ 8] [03020007] +13:58:47 [ 42] [ 15] [APT ] +13:58:47 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +13:58:47 [ 49] [ 3] [418] +13:58:47 [ 52] [ 16] [6EDF6916694E6198] +13:58:47 ============================================================================ +13:58:47 + + +waiting on router queue for slot.... +13:58:47 Sending to : <0> +13:58:47 ============================================================================ +13:58:47 ============================================================================ +13:58:47 Slot Id : <110> +13:58:47 Transaction Type : REQUEST +13:58:47 Received From : +13:58:47 ============================================================================ +13:58:47 FNo. Len. Field Value +13:58:47 ============================================================================ +13:58:47 [ 1] [ 4] [0800] +13:58:47 [ 7] [ 10] [0320065755] +13:58:47 [ 11] [ 6] [156680] +13:58:47 [ 70] [ 3] [301] +13:58:47 ============================================================================ +13:58:47 + + +waiting on router queue for slot.... +13:58:47 Sending to : +13:58:47 ============================================================================ +13:58:47 ============================================================================ +13:58:47 Slot Id : <110> +13:58:47 Transaction Type : RESPONSE +13:58:47 Received From : +13:58:47 ============================================================================ +13:58:47 FNo. Len. Field Value +13:58:47 ============================================================================ +13:58:47 [ 1] [ 4] [0810] +13:58:47 [ 7] [ 10] [0320065755] +13:58:47 [ 11] [ 6] [156680] +13:58:47 [ 39] [ 2] [00] +13:58:47 [ 70] [ 3] [301] +13:58:47 ============================================================================ +13:58:47 Calculate Source COMM Id = 2 +13:58:47 ============================================================================ +13:58:47 + + +waiting on router queue for slot.... +13:58:48 ============================================================================ +13:58:48 Slot Id : <150> +13:58:48 Transaction Type : RESPONSE +13:58:48 Received From : +13:58:48 ============================================================================ +13:58:48 FNo. Len. Field Value +13:58:48 ============================================================================ +13:58:48 [ 1] [ 4] [0210] +13:58:48 [ 2] [ 16] [6213544001355038] +13:58:48 [ 3] [ 6] [301000] +13:58:48 [ 4] [ 12] [000000000000] +13:58:48 [ 7] [ 10] [0320135637] +13:58:48 [ 11] [ 6] [947765] +13:58:48 [ 12] [ 6] [135637] +13:58:48 [ 13] [ 4] [0320] +13:58:48 [ 15] [ 4] [0320] +13:58:48 [ 18] [ 4] [6011] +13:58:48 [ 19] [ 3] [418] +13:58:48 [ 32] [ 6] [668899] +13:58:48 [ 35] [ 32] [6213544001355038=491212015503263] +13:58:48 [ 37] [ 12] [507900168615] +13:58:48 [ 38] [ 6] [243024] +13:58:48 [ 39] [ 2] [00] +13:58:48 [ 41] [ 8] [03020007] +13:58:48 [ 49] [ 3] [418] +13:58:48 [ 54] [ 40] [1001418C0000502372541002418C000050237254] +13:58:48 ============================================================================ +13:58:48 Sending to : +13:58:48 ============================================================================ +13:58:48 + + +waiting on router queue for slot.... +13:58:49 ============================================================================ +13:58:49 Slot Id : <150> +13:58:49 Transaction Type : RESPONSE +13:58:49 Received From : +13:58:49 ============================================================================ +13:58:49 FNo. Len. Field Value +13:58:49 ============================================================================ +13:58:49 [ 1] [ 4] [0210] +13:58:49 [ 2] [ 16] [6213544001355038] +13:58:49 [ 3] [ 6] [301000] +13:58:49 [ 4] [ 12] [000000000000] +13:58:49 [ 7] [ 10] [0320135637] +13:58:49 [ 11] [ 6] [947765] +13:58:49 [ 12] [ 6] [135637] +13:58:49 [ 13] [ 4] [0320] +13:58:49 [ 15] [ 4] [0320] +13:58:49 [ 18] [ 4] [6011] +13:58:49 [ 19] [ 3] [418] +13:58:49 [ 32] [ 6] [668899] +13:58:49 [ 35] [ 32] [6213544001355038=491212015503263] +13:58:49 [ 37] [ 12] [507900168615] +13:58:49 [ 38] [ 6] [243024] +13:58:49 [ 39] [ 2] [00] +13:58:49 [ 41] [ 8] [03020007] +13:58:49 [ 49] [ 3] [418] +13:58:49 [ 54] [ 40] [1001418C0000502372541002418C000050237254] +13:58:49 ============================================================================ +13:58:49 Calculate Source COMM Id = 4 +13:58:49 ============================================================================ +13:58:49 + + +waiting on router queue for slot.... +13:59:02 ============================================================================ +13:59:02 Slot Id : <130> +13:59:02 Transaction Type : REQUEST +13:59:02 Received From : +13:59:02 ============================================================================ +13:59:02 FNo. Len. Field Value +13:59:02 ============================================================================ +13:59:02 [ 1] [ 4] [0200] +13:59:02 [ 2] [ 16] [6688990040134924] +13:59:02 [ 3] [ 6] [010000] +13:59:02 [ 4] [ 12] [000100000000] +13:59:02 [ 7] [ 10] [0320065809] +13:59:02 [ 11] [ 6] [269460] +13:59:02 [ 12] [ 6] [135809] +13:59:02 [ 13] [ 4] [0320] +13:59:02 [ 14] [ 4] [9804] +13:59:02 [ 15] [ 4] [0320] +13:59:02 [ 18] [ 4] [6011] +13:59:02 [ 19] [ 3] [418] +13:59:02 [ 22] [ 3] [021] +13:59:02 [ 25] [ 2] [01] +13:59:02 [ 28] [ 9] [D00002000] +13:59:02 [ 32] [ 6] [180893] +13:59:02 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:59:02 [ 37] [ 12] [507906269460] +13:59:02 [ 41] [ 8] [0321LNTV] +13:59:02 [ 42] [ 15] [999999 ] +13:59:02 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:59:02 [ 49] [ 3] [418] +13:59:02 [ 52] [ 16] [01813B808BD94AF8] +13:59:02 ============================================================================ +13:59:02 + + +waiting on router queue for slot.... +13:59:02 Sending to : +13:59:02 ============================================================================ +13:59:02 Sending to : +13:59:02 ============================================================================ +13:59:02 ============================================================================ +13:59:02 Slot Id : <130> +13:59:02 Transaction Type : REQUEST +13:59:02 Received From : +13:59:02 ============================================================================ +13:59:02 FNo. Len. Field Value +13:59:02 ============================================================================ +13:59:02 [ 1] [ 4] [0200] +13:59:02 [ 2] [ 16] [6688990040134924] +13:59:02 [ 3] [ 6] [010000] +13:59:02 [ 4] [ 12] [000100000000] +13:59:02 [ 7] [ 10] [0320065809] +13:59:02 [ 11] [ 6] [269460] +13:59:02 [ 12] [ 6] [135809] +13:59:02 [ 13] [ 4] [0320] +13:59:02 [ 14] [ 4] [9804] +13:59:02 [ 15] [ 4] [0320] +13:59:02 [ 18] [ 4] [6011] +13:59:02 [ 19] [ 3] [418] +13:59:02 [ 22] [ 3] [021] +13:59:02 [ 25] [ 2] [01] +13:59:02 [ 28] [ 9] [D00002000] +13:59:02 [ 32] [ 6] [180893] +13:59:02 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:59:02 [ 37] [ 12] [507906269460] +13:59:02 [ 41] [ 8] [0321LNTV] +13:59:02 [ 42] [ 15] [999999 ] +13:59:02 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:59:02 [ 49] [ 3] [418] +13:59:02 [ 52] [ 16] [01813B808BD94AF8] +13:59:02 ============================================================================ +13:59:02 + + +waiting on router queue for slot.... +13:59:02 Sending to : +13:59:02 ============================================================================ +13:59:02 ============================================================================ +13:59:02 Slot Id : <130> +13:59:02 Transaction Type : REQUEST +13:59:02 Received From : +13:59:02 ============================================================================ +13:59:02 FNo. Len. Field Value +13:59:02 ============================================================================ +13:59:02 [ 1] [ 4] [0200] +13:59:02 [ 2] [ 16] [6688990040134924] +13:59:02 [ 3] [ 6] [010000] +13:59:02 [ 4] [ 12] [000100000000] +13:59:02 [ 7] [ 10] [0320065809] +13:59:02 [ 11] [ 6] [269460] +13:59:02 [ 12] [ 6] [135809] +13:59:02 [ 13] [ 4] [0320] +13:59:02 [ 14] [ 4] [9804] +13:59:02 [ 15] [ 4] [0320] +13:59:02 [ 18] [ 4] [6011] +13:59:02 [ 19] [ 3] [418] +13:59:02 [ 22] [ 3] [021] +13:59:02 [ 25] [ 2] [01] +13:59:02 [ 28] [ 9] [D00002000] +13:59:02 [ 32] [ 6] [180893] +13:59:02 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:59:02 [ 37] [ 12] [507906269460] +13:59:02 [ 41] [ 8] [0321LNTV] +13:59:02 [ 42] [ 15] [999999 ] +13:59:02 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +13:59:02 [ 49] [ 3] [418] +13:59:02 [ 52] [ 16] [F07ADB9F5826AD14] +13:59:02 ============================================================================ +13:59:02 + + +waiting on router queue for slot.... +13:59:02 Sending to : <0> +13:59:02 ============================================================================ +13:59:02 ============================================================================ +13:59:02 Slot Id : <130> +13:59:02 Transaction Type : RESPONSE +13:59:02 Received From : +13:59:02 ============================================================================ +13:59:02 FNo. Len. Field Value +13:59:02 ============================================================================ +13:59:02 [ 1] [ 4] [0210] +13:59:02 [ 2] [ 16] [6688990040134924] +13:59:02 [ 3] [ 6] [010000] +13:59:02 [ 4] [ 12] [000100000000] +13:59:02 [ 7] [ 10] [0320065809] +13:59:02 [ 11] [ 6] [269460] +13:59:02 [ 12] [ 6] [135809] +13:59:02 [ 13] [ 4] [0320] +13:59:02 [ 15] [ 4] [0320] +13:59:02 [ 18] [ 4] [6011] +13:59:02 [ 19] [ 3] [418] +13:59:02 [ 22] [ 3] [021] +13:59:02 [ 32] [ 6] [180893] +13:59:02 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:59:02 [ 37] [ 12] [507906269460] +13:59:02 [ 39] [ 2] [14] +13:59:02 [ 41] [ 8] [0321LNTV] +13:59:02 [ 49] [ 3] [418] +13:59:02 ============================================================================ +13:59:02 Sending to : +13:59:02 ============================================================================ +13:59:02 + + +waiting on router queue for slot.... +13:59:03 ============================================================================ +13:59:03 Slot Id : <142> +13:59:03 Transaction Type : REQUEST +13:59:03 Received From : +13:59:03 ============================================================================ +13:59:03 FNo. Len. Field Value +13:59:03 ============================================================================ +13:59:03 [ 1] [ 4] [0800] +13:59:03 [ 7] [ 10] [0320065810] +13:59:03 [ 11] [ 6] [156681] +13:59:03 [ 70] [ 3] [301] +13:59:03 ============================================================================ +13:59:03 + + +waiting on router queue for slot.... +13:59:03 Sending to : +13:59:03 ============================================================================ +13:59:03 ============================================================================ +13:59:03 Slot Id : <142> +13:59:03 Transaction Type : RESPONSE +13:59:03 Received From : +13:59:03 ============================================================================ +13:59:03 FNo. Len. Field Value +13:59:03 ============================================================================ +13:59:03 [ 1] [ 4] [0810] +13:59:03 [ 7] [ 10] [0320065810] +13:59:03 [ 11] [ 6] [156681] +13:59:03 [ 39] [ 2] [00] +13:59:03 [ 70] [ 3] [301] +13:59:03 ============================================================================ +13:59:03 Calculate Source COMM Id = 2 +13:59:03 ============================================================================ +13:59:03 + + +waiting on router queue for slot.... +13:59:04 ============================================================================ +13:59:04 Slot Id : <130> +13:59:04 Transaction Type : RESPONSE +13:59:04 Received From : +13:59:04 ============================================================================ +13:59:04 FNo. Len. Field Value +13:59:04 ============================================================================ +13:59:04 [ 1] [ 4] [0210] +13:59:04 [ 2] [ 16] [6688990040134924] +13:59:04 [ 3] [ 6] [010000] +13:59:04 [ 4] [ 12] [000100000000] +13:59:04 [ 7] [ 10] [0320065809] +13:59:04 [ 11] [ 6] [269460] +13:59:04 [ 12] [ 6] [135809] +13:59:04 [ 13] [ 4] [0320] +13:59:04 [ 15] [ 4] [0320] +13:59:04 [ 18] [ 4] [6011] +13:59:04 [ 19] [ 3] [418] +13:59:04 [ 22] [ 3] [021] +13:59:04 [ 32] [ 6] [180893] +13:59:04 [ 35] [ 37] [6688990040134924=98041261739281400000] +13:59:04 [ 37] [ 12] [507906269460] +13:59:04 [ 39] [ 2] [14] +13:59:04 [ 41] [ 8] [0321LNTV] +13:59:04 [ 49] [ 3] [418] +13:59:04 ============================================================================ +13:59:04 Calculate Source COMM Id = 2 +13:59:04 ============================================================================ +13:59:04 + + +waiting on router queue for slot.... +13:59:14 ============================================================================ +13:59:14 Slot Id : <167> +13:59:14 Transaction Type : REQUEST +13:59:14 Received From : +13:59:14 ============================================================================ +13:59:14 FNo. Len. Field Value +13:59:14 ============================================================================ +13:59:14 [ 1] [ 4] [0200] +13:59:14 [ 2] [ 16] [6213545000785885] +13:59:14 [ 3] [ 6] [010000] +13:59:14 [ 4] [ 12] [000150000000] +13:59:14 [ 7] [ 10] [0320065820] +13:59:14 [ 11] [ 6] [269464] +13:59:14 [ 12] [ 6] [135820] +13:59:14 [ 13] [ 4] [0320] +13:59:14 [ 14] [ 4] [4912] +13:59:14 [ 15] [ 4] [0320] +13:59:14 [ 18] [ 4] [6011] +13:59:14 [ 19] [ 3] [418] +13:59:14 [ 22] [ 3] [021] +13:59:14 [ 25] [ 2] [01] +13:59:14 [ 28] [ 9] [D00002000] +13:59:14 [ 32] [ 6] [180893] +13:59:14 [ 35] [ 32] [6213545000785885=491212018588724] +13:59:14 [ 37] [ 12] [507906269464] +13:59:14 [ 41] [ 8] [0525XYBT] +13:59:14 [ 42] [ 15] [999999 ] +13:59:14 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +13:59:14 [ 49] [ 3] [418] +13:59:14 [ 52] [ 16] [DD23B35EAA88CE95] +13:59:14 ============================================================================ +13:59:14 + + +waiting on router queue for slot.... +13:59:14 Sending to : +13:59:14 ============================================================================ +13:59:14 Sending to : +13:59:14 ============================================================================ +13:59:14 ============================================================================ +13:59:14 Slot Id : <167> +13:59:14 Transaction Type : REQUEST +13:59:14 Received From : +13:59:14 ============================================================================ +13:59:14 FNo. Len. Field Value +13:59:14 ============================================================================ +13:59:14 [ 1] [ 4] [0200] +13:59:14 [ 2] [ 16] [6213545000785885] +13:59:14 [ 3] [ 6] [010000] +13:59:14 [ 4] [ 12] [000150000000] +13:59:14 [ 7] [ 10] [0320065820] +13:59:14 [ 11] [ 6] [269464] +13:59:14 [ 12] [ 6] [135820] +13:59:14 [ 13] [ 4] [0320] +13:59:14 [ 14] [ 4] [4912] +13:59:14 [ 15] [ 4] [0320] +13:59:14 [ 18] [ 4] [6011] +13:59:14 [ 19] [ 3] [418] +13:59:14 [ 22] [ 3] [021] +13:59:14 [ 25] [ 2] [01] +13:59:14 [ 28] [ 9] [D00002000] +13:59:14 [ 32] [ 6] [180893] +13:59:14 [ 35] [ 32] [6213545000785885=491212018588724] +13:59:14 [ 37] [ 12] [507906269464] +13:59:14 [ 41] [ 8] [0525XYBT] +13:59:14 [ 42] [ 15] [999999 ] +13:59:14 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +13:59:14 [ 49] [ 3] [418] +13:59:14 [ 52] [ 16] [DD23B35EAA88CE95] +13:59:14 ============================================================================ +13:59:14 + + +waiting on router queue for slot.... +13:59:14 Sending to : +13:59:14 ============================================================================ +13:59:14 ============================================================================ +13:59:14 Slot Id : <167> +13:59:14 Transaction Type : REQUEST +13:59:14 Received From : +13:59:14 ============================================================================ +13:59:14 FNo. Len. Field Value +13:59:14 ============================================================================ +13:59:14 [ 1] [ 4] [0200] +13:59:14 [ 2] [ 16] [6213545000785885] +13:59:14 [ 3] [ 6] [010000] +13:59:14 [ 4] [ 12] [000150000000] +13:59:14 [ 7] [ 10] [0320065820] +13:59:14 [ 11] [ 6] [269464] +13:59:14 [ 12] [ 6] [135820] +13:59:14 [ 13] [ 4] [0320] +13:59:14 [ 14] [ 4] [4912] +13:59:14 [ 15] [ 4] [0320] +13:59:14 [ 18] [ 4] [6011] +13:59:14 [ 19] [ 3] [418] +13:59:14 [ 22] [ 3] [021] +13:59:14 [ 25] [ 2] [01] +13:59:14 [ 28] [ 9] [D00002000] +13:59:14 [ 32] [ 6] [180893] +13:59:14 [ 35] [ 32] [6213545000785885=491212018588724] +13:59:14 [ 37] [ 12] [507906269464] +13:59:14 [ 41] [ 8] [0525XYBT] +13:59:14 [ 42] [ 15] [999999 ] +13:59:14 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +13:59:14 [ 49] [ 3] [418] +13:59:14 [ 52] [ 16] [C76BFA22696C5E74] +13:59:14 ============================================================================ +13:59:14 + + +waiting on router queue for slot.... +13:59:14 Sending to : <0> +13:59:14 ============================================================================ +13:59:14 ============================================================================ +13:59:14 Slot Id : <167> +13:59:14 Transaction Type : RESPONSE +13:59:14 Received From : +13:59:14 ============================================================================ +13:59:14 FNo. Len. Field Value +13:59:14 ============================================================================ +13:59:14 [ 1] [ 4] [0210] +13:59:14 [ 2] [ 16] [6213545000785885] +13:59:14 [ 3] [ 6] [010000] +13:59:14 [ 4] [ 12] [000150000000] +13:59:14 [ 7] [ 10] [0320065820] +13:59:14 [ 11] [ 6] [269464] +13:59:14 [ 12] [ 6] [135820] +13:59:14 [ 13] [ 4] [0320] +13:59:14 [ 15] [ 4] [0320] +13:59:14 [ 18] [ 4] [6011] +13:59:14 [ 19] [ 3] [418] +13:59:14 [ 22] [ 3] [021] +13:59:14 [ 32] [ 6] [180893] +13:59:14 [ 35] [ 32] [6213545000785885=491212018588724] +13:59:14 [ 37] [ 12] [507906269464] +13:59:14 [ 39] [ 2] [61] +13:59:14 [ 41] [ 8] [0525XYBT] +13:59:14 [ 49] [ 3] [418] +13:59:14 ============================================================================ +13:59:14 Sending to : +13:59:14 ============================================================================ +13:59:14 + + +waiting on router queue for slot.... +13:59:15 ============================================================================ +13:59:15 Slot Id : <159> +13:59:15 Transaction Type : REQUEST +13:59:15 Received From : +13:59:15 ============================================================================ +13:59:15 FNo. Len. Field Value +13:59:15 ============================================================================ +13:59:15 [ 1] [ 4] [0200] +13:59:15 [ 2] [ 16] [6688990103501100] +13:59:15 [ 3] [ 6] [011000] +13:59:15 [ 4] [ 12] [000100000000] +13:59:15 [ 7] [ 10] [0320135911] +13:59:15 [ 11] [ 6] [764347] +13:59:15 [ 12] [ 6] [135911] +13:59:15 [ 13] [ 4] [0320] +13:59:15 [ 15] [ 4] [0320] +13:59:15 [ 18] [ 4] [6011] +13:59:15 [ 22] [ 3] [900] +13:59:15 [ 25] [ 2] [02] +13:59:15 [ 28] [ 9] [D00002000] +13:59:15 [ 32] [ 6] [621354] +13:59:15 [ 35] [ 37] [6688990103501100=43011231110022800000] +13:59:15 [ 37] [ 12] [507903499472] +13:59:15 [ 41] [ 8] [06002200] +13:59:15 [ 42] [ 15] [NATIVE ] +13:59:15 [ 43] [ 40] [Beng Market Beng LAO] +13:59:15 [ 49] [ 3] [418] +13:59:15 [ 52] [ 16] [CAF956AEE6F346B5] +13:59:15 ============================================================================ +13:59:15 + + +waiting on router queue for slot.... +13:59:15 Sending to : +13:59:15 ============================================================================ +13:59:15 Sending to : +13:59:15 ============================================================================ +13:59:15 ============================================================================ +13:59:15 Slot Id : <167> +13:59:15 Transaction Type : RESPONSE +13:59:15 Received From : +13:59:15 ============================================================================ +13:59:15 FNo. Len. Field Value +13:59:15 ============================================================================ +13:59:15 [ 1] [ 4] [0210] +13:59:15 [ 2] [ 16] [6213545000785885] +13:59:15 [ 3] [ 6] [010000] +13:59:15 [ 4] [ 12] [000150000000] +13:59:15 [ 7] [ 10] [0320065820] +13:59:15 [ 11] [ 6] [269464] +13:59:15 [ 12] [ 6] [135820] +13:59:15 [ 13] [ 4] [0320] +13:59:15 [ 15] [ 4] [0320] +13:59:15 [ 18] [ 4] [6011] +13:59:15 [ 19] [ 3] [418] +13:59:15 [ 22] [ 3] [021] +13:59:15 [ 32] [ 6] [180893] +13:59:15 [ 35] [ 32] [6213545000785885=491212018588724] +13:59:15 [ 37] [ 12] [507906269464] +13:59:15 [ 39] [ 2] [61] +13:59:15 [ 41] [ 8] [0525XYBT] +13:59:15 [ 49] [ 3] [418] +13:59:15 ============================================================================ +13:59:15 Calculate Source COMM Id = 2 +13:59:15 ============================================================================ +13:59:15 + + +waiting on router queue for slot.... +13:59:16 ============================================================================ +13:59:16 Slot Id : <159> +13:59:16 Transaction Type : REQUEST +13:59:16 Received From : +13:59:16 ============================================================================ +13:59:16 FNo. Len. Field Value +13:59:16 ============================================================================ +13:59:16 [ 1] [ 4] [0200] +13:59:16 [ 2] [ 16] [6688990103501100] +13:59:16 [ 3] [ 6] [011000] +13:59:16 [ 4] [ 12] [000100000000] +13:59:16 [ 7] [ 10] [0320135911] +13:59:16 [ 11] [ 6] [764347] +13:59:16 [ 12] [ 6] [135911] +13:59:16 [ 13] [ 4] [0320] +13:59:16 [ 15] [ 4] [0320] +13:59:16 [ 18] [ 4] [6011] +13:59:16 [ 22] [ 3] [900] +13:59:16 [ 25] [ 2] [02] +13:59:16 [ 28] [ 9] [D00002000] +13:59:16 [ 32] [ 6] [621354] +13:59:16 [ 35] [ 37] [6688990103501100=43011231110022800000] +13:59:16 [ 37] [ 12] [507903499472] +13:59:16 [ 41] [ 8] [06002200] +13:59:16 [ 42] [ 15] [NATIVE ] +13:59:16 [ 43] [ 40] [Beng Market Beng LAO] +13:59:16 [ 49] [ 3] [418] +13:59:16 [ 52] [ 16] [CAF956AEE6F346B5] +13:59:16 ============================================================================ +13:59:16 + + +waiting on router queue for slot.... +13:59:16 Sending to : +13:59:16 ============================================================================ +13:59:16 ============================================================================ +13:59:16 Slot Id : <159> +13:59:16 Transaction Type : REQUEST +13:59:16 Received From : +13:59:16 ============================================================================ +13:59:16 FNo. Len. Field Value +13:59:16 ============================================================================ +13:59:16 [ 1] [ 4] [0200] +13:59:16 [ 2] [ 16] [6688990103501100] +13:59:16 [ 3] [ 6] [011000] +13:59:16 [ 4] [ 12] [000100000000] +13:59:16 [ 7] [ 10] [0320135911] +13:59:16 [ 11] [ 6] [764347] +13:59:16 [ 12] [ 6] [135911] +13:59:16 [ 13] [ 4] [0320] +13:59:16 [ 15] [ 4] [0320] +13:59:16 [ 18] [ 4] [6011] +13:59:16 [ 22] [ 3] [900] +13:59:16 [ 25] [ 2] [02] +13:59:16 [ 28] [ 9] [D00002000] +13:59:16 [ 32] [ 6] [621354] +13:59:16 [ 35] [ 37] [6688990103501100=43011231110022800000] +13:59:16 [ 37] [ 12] [507903499472] +13:59:16 [ 41] [ 8] [06002200] +13:59:16 [ 42] [ 15] [NATIVE ] +13:59:16 [ 43] [ 40] [Beng Market Beng LAO] +13:59:16 [ 49] [ 3] [418] +13:59:16 [ 52] [ 16] [37D6B17F1FC37E19] +13:59:16 ============================================================================ +13:59:16 + + +waiting on router queue for slot.... +13:59:16 Sending to : <4> +13:59:16 ============================================================================ +13:59:17 ============================================================================ +13:59:17 Slot Id : <159> +13:59:17 Transaction Type : RESPONSE +13:59:17 Received From : +13:59:17 ============================================================================ +13:59:17 FNo. Len. Field Value +13:59:17 ============================================================================ +13:59:17 [ 1] [ 4] [0210] +13:59:17 [ 2] [ 16] [6688990103501100] +13:59:17 [ 3] [ 6] [011000] +13:59:17 [ 4] [ 12] [000100000000] +13:59:17 [ 11] [ 6] [764347] +13:59:17 [ 12] [ 6] [135911] +13:59:17 [ 15] [ 4] [0320] +13:59:17 [ 18] [ 4] [6011] +13:59:17 [ 32] [ 6] [621354] +13:59:17 [ 35] [ 37] [6688990103501100=43011231110022800000] +13:59:17 [ 37] [ 12] [507903499472] +13:59:17 [ 38] [ 6] [493540] +13:59:17 [ 39] [ 2] [00] +13:59:17 [ 41] [ 8] [06002200] +13:59:17 [ 49] [ 3] [418] +13:59:17 [ 54] [ 20] [1002418C000229321851] +13:59:17 ============================================================================ +13:59:17 Sending to : +13:59:17 ============================================================================ +13:59:17 + + +waiting on router queue for slot.... +13:59:18 ============================================================================ +13:59:18 Slot Id : <159> +13:59:18 Transaction Type : RESPONSE +13:59:18 Received From : +13:59:18 ============================================================================ +13:59:18 FNo. Len. Field Value +13:59:18 ============================================================================ +13:59:18 [ 1] [ 4] [0210] +13:59:18 [ 2] [ 16] [6688990103501100] +13:59:18 [ 3] [ 6] [011000] +13:59:18 [ 4] [ 12] [000100000000] +13:59:18 [ 11] [ 6] [764347] +13:59:18 [ 12] [ 6] [135911] +13:59:18 [ 15] [ 4] [0320] +13:59:18 [ 18] [ 4] [6011] +13:59:18 [ 32] [ 6] [621354] +13:59:18 [ 35] [ 37] [6688990103501100=43011231110022800000] +13:59:18 [ 37] [ 12] [507903499472] +13:59:18 [ 38] [ 6] [493540] +13:59:18 [ 39] [ 2] [00] +13:59:18 [ 41] [ 8] [06002200] +13:59:18 [ 49] [ 3] [418] +13:59:18 [ 54] [ 20] [1002418C000229321851] +13:59:18 ============================================================================ +13:59:18 Calculate Source COMM Id = 0 +13:59:18 ============================================================================ +13:59:18 + + +waiting on router queue for slot.... +13:59:29 ============================================================================ +13:59:29 Slot Id : <137> +13:59:29 Transaction Type : REQUEST +13:59:29 Received From : +13:59:29 ============================================================================ +13:59:29 FNo. Len. Field Value +13:59:29 ============================================================================ +13:59:29 [ 1] [ 4] [0800] +13:59:29 [ 7] [ 10] [0320065837] +13:59:29 [ 11] [ 6] [156682] +13:59:29 [ 70] [ 3] [301] +13:59:29 ============================================================================ +13:59:29 + + +waiting on router queue for slot.... +13:59:29 Sending to : +13:59:29 ============================================================================ +13:59:29 ============================================================================ +13:59:29 Slot Id : <137> +13:59:29 Transaction Type : RESPONSE +13:59:29 Received From : +13:59:29 ============================================================================ +13:59:29 FNo. Len. Field Value +13:59:29 ============================================================================ +13:59:29 [ 1] [ 4] [0810] +13:59:29 [ 7] [ 10] [0320065837] +13:59:29 [ 11] [ 6] [156682] +13:59:29 [ 39] [ 2] [00] +13:59:29 [ 70] [ 3] [301] +13:59:29 ============================================================================ +13:59:29 Calculate Source COMM Id = 2 +13:59:29 ============================================================================ +13:59:29 + + +waiting on router queue for slot.... +13:59:40 ============================================================================ +13:59:40 Slot Id : <128> +13:59:40 Transaction Type : REQUEST +13:59:40 Received From : +13:59:40 ============================================================================ +13:59:40 FNo. Len. Field Value +13:59:40 ============================================================================ +13:59:40 [ 1] [ 4] [0200] +13:59:40 [ 2] [ 16] [6213545000779987] +13:59:40 [ 3] [ 6] [012000] +13:59:40 [ 4] [ 12] [000014000000] +13:59:40 [ 7] [ 10] [0320065846] +13:59:40 [ 11] [ 6] [269470] +13:59:40 [ 12] [ 6] [135846] +13:59:40 [ 13] [ 4] [0320] +13:59:40 [ 14] [ 4] [4912] +13:59:40 [ 15] [ 4] [0320] +13:59:40 [ 18] [ 4] [6011] +13:59:40 [ 19] [ 3] [418] +13:59:40 [ 22] [ 3] [021] +13:59:40 [ 25] [ 2] [01] +13:59:40 [ 28] [ 9] [D00002000] +13:59:40 [ 32] [ 6] [180893] +13:59:40 [ 35] [ 32] [6213545000779987=491212017998913] +13:59:40 [ 37] [ 12] [507906269470] +13:59:40 [ 41] [ 8] [0465UDNM] +13:59:40 [ 42] [ 15] [999999 ] +13:59:40 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +13:59:40 [ 49] [ 3] [418] +13:59:40 [ 52] [ 16] [808B5B27356821A3] +13:59:40 ============================================================================ +13:59:40 + + +waiting on router queue for slot.... +13:59:40 Sending to : +13:59:40 ============================================================================ +13:59:40 Sending to : +13:59:40 ============================================================================ +13:59:41 ============================================================================ +13:59:41 Slot Id : <128> +13:59:41 Transaction Type : REQUEST +13:59:41 Received From : +13:59:41 ============================================================================ +13:59:41 FNo. Len. Field Value +13:59:41 ============================================================================ +13:59:41 [ 1] [ 4] [0200] +13:59:41 [ 2] [ 16] [6213545000779987] +13:59:41 [ 3] [ 6] [012000] +13:59:41 [ 4] [ 12] [000014000000] +13:59:41 [ 7] [ 10] [0320065846] +13:59:41 [ 11] [ 6] [269470] +13:59:41 [ 12] [ 6] [135846] +13:59:41 [ 13] [ 4] [0320] +13:59:41 [ 14] [ 4] [4912] +13:59:41 [ 15] [ 4] [0320] +13:59:41 [ 18] [ 4] [6011] +13:59:41 [ 19] [ 3] [418] +13:59:41 [ 22] [ 3] [021] +13:59:41 [ 25] [ 2] [01] +13:59:41 [ 28] [ 9] [D00002000] +13:59:41 [ 32] [ 6] [180893] +13:59:41 [ 35] [ 32] [6213545000779987=491212017998913] +13:59:41 [ 37] [ 12] [507906269470] +13:59:41 [ 41] [ 8] [0465UDNM] +13:59:41 [ 42] [ 15] [999999 ] +13:59:41 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +13:59:41 [ 49] [ 3] [418] +13:59:41 [ 52] [ 16] [808B5B27356821A3] +13:59:41 ============================================================================ +13:59:41 + + +waiting on router queue for slot.... +13:59:41 Sending to : +13:59:41 ============================================================================ +13:59:41 ============================================================================ +13:59:41 Slot Id : <128> +13:59:41 Transaction Type : REQUEST +13:59:41 Received From : +13:59:41 ============================================================================ +13:59:41 FNo. Len. Field Value +13:59:41 ============================================================================ +13:59:41 [ 1] [ 4] [0200] +13:59:41 [ 2] [ 16] [6213545000779987] +13:59:41 [ 3] [ 6] [012000] +13:59:41 [ 4] [ 12] [000014000000] +13:59:41 [ 7] [ 10] [0320065846] +13:59:41 [ 11] [ 6] [269470] +13:59:41 [ 12] [ 6] [135846] +13:59:41 [ 13] [ 4] [0320] +13:59:41 [ 14] [ 4] [4912] +13:59:41 [ 15] [ 4] [0320] +13:59:41 [ 18] [ 4] [6011] +13:59:41 [ 19] [ 3] [418] +13:59:41 [ 22] [ 3] [021] +13:59:41 [ 25] [ 2] [01] +13:59:41 [ 28] [ 9] [D00002000] +13:59:41 [ 32] [ 6] [180893] +13:59:41 [ 35] [ 32] [6213545000779987=491212017998913] +13:59:41 [ 37] [ 12] [507906269470] +13:59:41 [ 41] [ 8] [0465UDNM] +13:59:41 [ 42] [ 15] [999999 ] +13:59:41 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +13:59:41 [ 49] [ 3] [418] +13:59:41 [ 52] [ 16] [2E72680A01170F14] +13:59:41 ============================================================================ +13:59:41 + + +waiting on router queue for slot.... +13:59:41 Sending to : <0> +13:59:41 ============================================================================ +13:59:41 ============================================================================ +13:59:41 Slot Id : <175> +13:59:41 Transaction Type : REQUEST +13:59:41 Received From : +13:59:41 ============================================================================ +13:59:41 FNo. Len. Field Value +13:59:41 ============================================================================ +13:59:41 [ 1] [ 4] [0800] +13:59:41 [ 7] [ 10] [0320065849] +13:59:41 [ 11] [ 6] [156683] +13:59:41 [ 70] [ 3] [301] +13:59:41 ============================================================================ +13:59:41 + + +waiting on router queue for slot.... +13:59:41 Sending to : +13:59:41 ============================================================================ +13:59:41 ============================================================================ +13:59:41 Slot Id : <175> +13:59:41 Transaction Type : RESPONSE +13:59:41 Received From : +13:59:41 ============================================================================ +13:59:41 FNo. Len. Field Value +13:59:41 ============================================================================ +13:59:41 [ 1] [ 4] [0810] +13:59:41 [ 7] [ 10] [0320065849] +13:59:41 [ 11] [ 6] [156683] +13:59:41 [ 39] [ 2] [00] +13:59:41 [ 70] [ 3] [301] +13:59:41 ============================================================================ +13:59:41 Calculate Source COMM Id = 2 +13:59:41 ============================================================================ +13:59:41 + + +waiting on router queue for slot.... +13:59:42 ============================================================================ +13:59:42 Slot Id : <128> +13:59:42 Transaction Type : RESPONSE +13:59:42 Received From : +13:59:42 ============================================================================ +13:59:42 FNo. Len. Field Value +13:59:42 ============================================================================ +13:59:42 [ 1] [ 4] [0210] +13:59:42 [ 2] [ 16] [6213545000779987] +13:59:42 [ 3] [ 6] [012000] +13:59:42 [ 4] [ 12] [000014000000] +13:59:42 [ 7] [ 10] [0320065846] +13:59:42 [ 11] [ 6] [269470] +13:59:42 [ 12] [ 6] [135846] +13:59:42 [ 13] [ 4] [0320] +13:59:42 [ 15] [ 4] [0320] +13:59:42 [ 18] [ 4] [6011] +13:59:42 [ 19] [ 3] [418] +13:59:42 [ 32] [ 6] [180893] +13:59:42 [ 35] [ 32] [6213545000779987=491212017998913] +13:59:42 [ 37] [ 12] [507906269470] +13:59:42 [ 38] [ 6] [617144] +13:59:42 [ 39] [ 2] [00] +13:59:42 [ 41] [ 8] [0465UDNM] +13:59:42 [ 49] [ 3] [418] +13:59:42 [ 54] [ 40] [2001418C0003873828172002418C000387382817] +13:59:42 ============================================================================ +13:59:42 Sending to : +13:59:42 ============================================================================ +13:59:42 + + +waiting on router queue for slot.... +13:59:42 ============================================================================ +13:59:42 Slot Id : <146> +13:59:42 Transaction Type : REQUEST +13:59:42 Received From : +13:59:42 ============================================================================ +13:59:42 FNo. Len. Field Value +13:59:42 ============================================================================ +13:59:42 [ 1] [ 4] [0800] +13:59:42 [ 2] [ 5] [02531] +13:59:42 [ 3] [ 6] [579138] +13:59:42 [ 7] [ 10] [0320065942] +13:59:42 [ 11] [ 6] [807224] +13:59:42 [ 15] [ 10] [0320065942] +13:59:42 [ 37] [ 11] [57913807224] +13:59:42 [ 70] [ 3] [001] +13:59:42 ============================================================================ +13:59:42 + + +waiting on router queue for slot.... +13:59:42 ============================================================================ +13:59:42 Slot Id : <146> +13:59:42 Transaction Type : RESPONSE +13:59:42 Received From : +13:59:42 ============================================================================ +13:59:42 FNo. Len. Field Value +13:59:42 ============================================================================ +13:59:42 [ 1] [ 4] [0810] +13:59:42 [ 7] [ 10] [0320065942] +13:59:42 [ 11] [ 6] [807224] +13:59:42 [ 15] [ 4] [0320] +13:59:42 [ 37] [ 12] [57913807224] +13:59:42 [ 39] [ 2] [00] +13:59:42 [ 70] [ 3] [001] +13:59:42 ============================================================================ +13:59:42 Sending to : +13:59:42 ============================================================================ +13:59:42 + + +waiting on router queue for slot.... +13:59:43 ============================================================================ +13:59:43 Slot Id : <128> +13:59:43 Transaction Type : RESPONSE +13:59:43 Received From : +13:59:43 ============================================================================ +13:59:43 FNo. Len. Field Value +13:59:43 ============================================================================ +13:59:43 [ 1] [ 4] [0210] +13:59:43 [ 2] [ 16] [6213545000779987] +13:59:43 [ 3] [ 6] [012000] +13:59:43 [ 4] [ 12] [000014000000] +13:59:43 [ 7] [ 10] [0320065846] +13:59:43 [ 11] [ 6] [269470] +13:59:43 [ 12] [ 6] [135846] +13:59:43 [ 13] [ 4] [0320] +13:59:43 [ 15] [ 4] [0320] +13:59:43 [ 18] [ 4] [6011] +13:59:43 [ 19] [ 3] [418] +13:59:43 [ 32] [ 6] [180893] +13:59:43 [ 35] [ 32] [6213545000779987=491212017998913] +13:59:43 [ 37] [ 12] [507906269470] +13:59:43 [ 38] [ 6] [617144] +13:59:43 [ 39] [ 2] [00] +13:59:43 [ 41] [ 8] [0465UDNM] +13:59:43 [ 49] [ 3] [418] +13:59:43 [ 54] [ 40] [2001418C0003873828172002418C000387382817] +13:59:43 ============================================================================ +13:59:43 Calculate Source COMM Id = 2 +13:59:43 ============================================================================ +13:59:43 + + +waiting on router queue for slot.... +13:59:54 ============================================================================ +13:59:54 Slot Id : <170> +13:59:54 Transaction Type : REQUEST +13:59:54 Received From : +13:59:54 ============================================================================ +13:59:54 FNo. Len. Field Value +13:59:54 ============================================================================ +13:59:54 [ 1] [ 4] [0800] +13:59:54 [ 7] [ 10] [0320070742] +13:59:54 [ 11] [ 6] [070687] +13:59:54 [ 37] [ 12] [57914070687] +13:59:54 [ 70] [ 3] [301] +13:59:54 ============================================================================ +13:59:54 + + +waiting on router queue for slot.... +13:59:54 Sending to : +13:59:54 ============================================================================ +13:59:54 ============================================================================ +13:59:54 Slot Id : <170> +13:59:54 Transaction Type : RESPONSE +13:59:54 Received From : +13:59:54 ============================================================================ +13:59:54 FNo. Len. Field Value +13:59:54 ============================================================================ +13:59:54 [ 1] [ 4] [0810] +13:59:54 [ 7] [ 10] [0320070742] +13:59:54 [ 11] [ 6] [070687] +13:59:54 [ 37] [ 12] [579140706870] +13:59:54 [ 39] [ 2] [00] +13:59:54 [ 70] [ 3] [810] +13:59:54 ============================================================================ +13:59:54 Calculate Source COMM Id = 1 +13:59:54 ============================================================================ +13:59:54 + + +waiting on router queue for slot.... +13:59:57 ============================================================================ +13:59:57 Slot Id : <141> +13:59:57 Transaction Type : REQUEST +13:59:57 Received From : +13:59:57 ============================================================================ +13:59:57 FNo. Len. Field Value +13:59:57 ============================================================================ +13:59:57 [ 1] [ 4] [0800] +13:59:57 [ 7] [ 10] [0320065904] +13:59:57 [ 11] [ 6] [156684] +13:59:57 [ 70] [ 3] [301] +13:59:57 ============================================================================ +13:59:57 + + +waiting on router queue for slot.... +13:59:57 Sending to : +13:59:57 ============================================================================ +13:59:57 ============================================================================ +13:59:57 Slot Id : <141> +13:59:57 Transaction Type : RESPONSE +13:59:57 Received From : +13:59:57 ============================================================================ +13:59:57 FNo. Len. Field Value +13:59:57 ============================================================================ +13:59:57 [ 1] [ 4] [0810] +13:59:57 [ 7] [ 10] [0320065904] +13:59:57 [ 11] [ 6] [156684] +13:59:57 [ 39] [ 2] [00] +13:59:57 [ 70] [ 3] [301] +13:59:57 ============================================================================ +13:59:57 Calculate Source COMM Id = 2 +13:59:57 ============================================================================ +13:59:57 + + +waiting on router queue for slot.... +14:00:11 ============================================================================ +14:00:11 Slot Id : <157> +14:00:11 Transaction Type : REQUEST +14:00:11 Received From : +14:00:11 ============================================================================ +14:00:11 FNo. Len. Field Value +14:00:11 ============================================================================ +14:00:11 [ 1] [ 4] [0800] +14:00:11 [ 7] [ 10] [0320065919] +14:00:11 [ 11] [ 6] [156685] +14:00:11 [ 70] [ 3] [301] +14:00:11 ============================================================================ +14:00:11 + + +waiting on router queue for slot.... +14:00:11 Sending to : +14:00:11 ============================================================================ +14:00:11 ============================================================================ +14:00:11 Slot Id : <157> +14:00:11 Transaction Type : RESPONSE +14:00:11 Received From : +14:00:11 ============================================================================ +14:00:11 FNo. Len. Field Value +14:00:11 ============================================================================ +14:00:11 [ 1] [ 4] [0810] +14:00:11 [ 7] [ 10] [0320065919] +14:00:11 [ 11] [ 6] [156685] +14:00:11 [ 39] [ 2] [00] +14:00:11 [ 70] [ 3] [301] +14:00:11 ============================================================================ +14:00:11 Calculate Source COMM Id = 2 +14:00:11 ============================================================================ +14:00:11 + + +waiting on router queue for slot.... +14:00:23 ============================================================================ +14:00:23 Slot Id : <151> +14:00:23 Transaction Type : REQUEST +14:00:23 Received From : +14:00:23 ============================================================================ +14:00:23 FNo. Len. Field Value +14:00:23 ============================================================================ +14:00:23 [ 1] [ 4] [0800] +14:00:23 [ 7] [ 10] [0320065930] +14:00:23 [ 11] [ 6] [156686] +14:00:23 [ 70] [ 3] [301] +14:00:23 ============================================================================ +14:00:23 + + +waiting on router queue for slot.... +14:00:23 Sending to : +14:00:23 ============================================================================ +14:00:23 ============================================================================ +14:00:23 Slot Id : <151> +14:00:23 Transaction Type : RESPONSE +14:00:23 Received From : +14:00:23 ============================================================================ +14:00:23 FNo. Len. Field Value +14:00:23 ============================================================================ +14:00:23 [ 1] [ 4] [0810] +14:00:23 [ 7] [ 10] [0320065930] +14:00:23 [ 11] [ 6] [156686] +14:00:23 [ 39] [ 2] [00] +14:00:23 [ 70] [ 3] [301] +14:00:23 ============================================================================ +14:00:23 Calculate Source COMM Id = 2 +14:00:23 ============================================================================ +14:00:23 + + +waiting on router queue for slot.... +14:00:26 ============================================================================ +14:00:26 Slot Id : <172> +14:00:26 Transaction Type : REQUEST +14:00:26 Received From : +14:00:26 ============================================================================ +14:00:26 FNo. Len. Field Value +14:00:26 ============================================================================ +14:00:26 [ 1] [ 4] [0200] +14:00:26 [ 2] [ 16] [6213544000282522] +14:00:26 [ 3] [ 6] [011000] +14:00:26 [ 4] [ 12] [000100000000] +14:00:26 [ 7] [ 10] [0320140813] +14:00:26 [ 11] [ 6] [274792] +14:00:26 [ 12] [ 6] [140813] +14:00:26 [ 13] [ 4] [0320] +14:00:26 [ 14] [ 4] [4912] +14:00:26 [ 15] [ 4] [0320] +14:00:26 [ 18] [ 4] [6011] +14:00:26 [ 22] [ 3] [900] +14:00:26 [ 25] [ 2] [02] +14:00:26 [ 28] [ 9] [D00002000] +14:00:26 [ 32] [ 6] [220699] +14:00:26 [ 35] [ 32] [6213544000282522=491212018252648] +14:00:26 [ 37] [ 12] [507900057294] +14:00:26 [ 41] [ 8] [01000500] +14:00:26 [ 42] [ 15] [APTRA ] +14:00:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:00:26 [ 49] [ 3] [418] +14:00:26 [ 52] [ 16] [D0B8E4C505713A81] +14:00:26 ============================================================================ +14:00:26 + + +waiting on router queue for slot.... +14:00:26 Sending to : +14:00:26 ============================================================================ +14:00:26 Sending to : +14:00:26 ============================================================================ +14:00:26 ============================================================================ +14:00:26 Slot Id : <172> +14:00:26 Transaction Type : REQUEST +14:00:26 Received From : +14:00:26 ============================================================================ +14:00:26 FNo. Len. Field Value +14:00:26 ============================================================================ +14:00:26 [ 1] [ 4] [0200] +14:00:26 [ 2] [ 16] [6213544000282522] +14:00:26 [ 3] [ 6] [011000] +14:00:26 [ 4] [ 12] [000100000000] +14:00:26 [ 7] [ 10] [0320140813] +14:00:26 [ 11] [ 6] [274792] +14:00:26 [ 12] [ 6] [140813] +14:00:26 [ 13] [ 4] [0320] +14:00:26 [ 14] [ 4] [4912] +14:00:26 [ 15] [ 4] [0320] +14:00:26 [ 18] [ 4] [6011] +14:00:26 [ 22] [ 3] [900] +14:00:26 [ 25] [ 2] [02] +14:00:26 [ 28] [ 9] [D00002000] +14:00:26 [ 32] [ 6] [220699] +14:00:26 [ 35] [ 32] [6213544000282522=491212018252648] +14:00:26 [ 37] [ 12] [507900057294] +14:00:26 [ 41] [ 8] [01000500] +14:00:26 [ 42] [ 15] [APTRA ] +14:00:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:00:26 [ 49] [ 3] [418] +14:00:26 [ 52] [ 16] [D0B8E4C505713A81] +14:00:26 ============================================================================ +14:00:26 + + +waiting on router queue for slot.... +14:00:26 Sending to : +14:00:26 ============================================================================ +14:00:26 ============================================================================ +14:00:26 Slot Id : <172> +14:00:26 Transaction Type : REQUEST +14:00:26 Received From : +14:00:26 ============================================================================ +14:00:26 FNo. Len. Field Value +14:00:26 ============================================================================ +14:00:26 [ 1] [ 4] [0200] +14:00:26 [ 2] [ 16] [6213544000282522] +14:00:26 [ 3] [ 6] [011000] +14:00:26 [ 4] [ 12] [000100000000] +14:00:26 [ 7] [ 10] [0320140813] +14:00:26 [ 11] [ 6] [274792] +14:00:26 [ 12] [ 6] [140813] +14:00:26 [ 13] [ 4] [0320] +14:00:26 [ 14] [ 4] [4912] +14:00:26 [ 15] [ 4] [0320] +14:00:26 [ 18] [ 4] [6011] +14:00:26 [ 22] [ 3] [900] +14:00:26 [ 25] [ 2] [02] +14:00:26 [ 28] [ 9] [D00002000] +14:00:26 [ 32] [ 6] [220699] +14:00:26 [ 35] [ 32] [6213544000282522=491212018252648] +14:00:26 [ 37] [ 12] [507900057294] +14:00:26 [ 41] [ 8] [01000500] +14:00:26 [ 42] [ 15] [APTRA ] +14:00:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:00:26 [ 49] [ 3] [418] +14:00:26 [ 52] [ 16] [ACF5D648A904ED5D] +14:00:26 ============================================================================ +14:00:26 + + +waiting on router queue for slot.... +14:00:26 Sending to : <0> +14:00:26 ============================================================================ +14:00:27 ============================================================================ +14:00:27 Slot Id : <172> +14:00:27 Transaction Type : RESPONSE +14:00:27 Received From : +14:00:27 ============================================================================ +14:00:27 FNo. Len. Field Value +14:00:27 ============================================================================ +14:00:27 [ 1] [ 4] [0210] +14:00:27 [ 2] [ 16] [6213544000282522] +14:00:27 [ 3] [ 6] [011000] +14:00:27 [ 4] [ 12] [000100000000] +14:00:27 [ 7] [ 10] [0320140813] +14:00:27 [ 11] [ 6] [274792] +14:00:27 [ 12] [ 6] [140813] +14:00:27 [ 13] [ 4] [0320] +14:00:27 [ 15] [ 4] [0320] +14:00:27 [ 18] [ 4] [6011] +14:00:27 [ 32] [ 6] [220699] +14:00:27 [ 35] [ 32] [6213544000282522=491212018252648] +14:00:27 [ 37] [ 12] [507900057294] +14:00:27 [ 38] [ 6] [215209] +14:00:27 [ 39] [ 2] [00] +14:00:27 [ 41] [ 8] [01000500] +14:00:27 [ 49] [ 3] [418] +14:00:27 [ 54] [ 40] [1001418C0008089330251002418C000808933025] +14:00:27 ============================================================================ +14:00:27 Sending to : +14:00:27 ============================================================================ +14:00:27 + + +waiting on router queue for slot.... +14:00:28 ============================================================================ +14:00:28 Slot Id : <164> +14:00:28 Transaction Type : REQUEST +14:00:28 Received From : +14:00:28 ============================================================================ +14:00:28 FNo. Len. Field Value +14:00:28 ============================================================================ +14:00:28 [ 1] [ 4] [0200] +14:00:28 [ 2] [ 16] [6213545000020085] +14:00:28 [ 3] [ 6] [010000] +14:00:28 [ 4] [ 12] [000200000000] +14:00:28 [ 7] [ 10] [0320065934] +14:00:28 [ 11] [ 6] [269477] +14:00:28 [ 12] [ 6] [135934] +14:00:28 [ 13] [ 4] [0320] +14:00:28 [ 14] [ 4] [4912] +14:00:28 [ 15] [ 4] [0320] +14:00:28 [ 18] [ 4] [6011] +14:00:28 [ 19] [ 3] [418] +14:00:28 [ 22] [ 3] [021] +14:00:28 [ 25] [ 2] [01] +14:00:28 [ 28] [ 9] [D00002000] +14:00:28 [ 32] [ 6] [180893] +14:00:28 [ 35] [ 32] [6213545000020085=491212012008973] +14:00:28 [ 37] [ 12] [507906269477] +14:00:28 [ 41] [ 8] [0111BLBR] +14:00:28 [ 42] [ 15] [999999 ] +14:00:28 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:00:28 [ 49] [ 3] [418] +14:00:28 [ 52] [ 16] [6ECED5D19342B253] +14:00:28 ============================================================================ +14:00:28 + + +waiting on router queue for slot.... +14:00:28 Sending to : +14:00:28 ============================================================================ +14:00:28 Sending to : +14:00:28 ============================================================================ +14:00:28 ============================================================================ +14:00:28 Slot Id : <172> +14:00:28 Transaction Type : RESPONSE +14:00:28 Received From : +14:00:28 ============================================================================ +14:00:28 FNo. Len. Field Value +14:00:28 ============================================================================ +14:00:28 [ 1] [ 4] [0210] +14:00:28 [ 2] [ 16] [6213544000282522] +14:00:28 [ 3] [ 6] [011000] +14:00:28 [ 4] [ 12] [000100000000] +14:00:28 [ 7] [ 10] [0320140813] +14:00:28 [ 11] [ 6] [274792] +14:00:28 [ 12] [ 6] [140813] +14:00:28 [ 13] [ 4] [0320] +14:00:28 [ 15] [ 4] [0320] +14:00:28 [ 18] [ 4] [6011] +14:00:28 [ 32] [ 6] [220699] +14:00:28 [ 35] [ 32] [6213544000282522=491212018252648] +14:00:28 [ 37] [ 12] [507900057294] +14:00:28 [ 38] [ 6] [215209] +14:00:28 [ 39] [ 2] [00] +14:00:28 [ 41] [ 8] [01000500] +14:00:28 [ 49] [ 3] [418] +14:00:28 [ 54] [ 40] [1001418C0008089330251002418C000808933025] +14:00:28 ============================================================================ +14:00:28 Calculate Source COMM Id = 1 +14:00:28 ============================================================================ +14:00:28 + + +waiting on router queue for slot.... +14:00:29 ============================================================================ +14:00:29 Slot Id : <164> +14:00:29 Transaction Type : REQUEST +14:00:29 Received From : +14:00:29 ============================================================================ +14:00:29 FNo. Len. Field Value +14:00:29 ============================================================================ +14:00:29 [ 1] [ 4] [0200] +14:00:29 [ 2] [ 16] [6213545000020085] +14:00:29 [ 3] [ 6] [010000] +14:00:29 [ 4] [ 12] [000200000000] +14:00:29 [ 7] [ 10] [0320065934] +14:00:29 [ 11] [ 6] [269477] +14:00:29 [ 12] [ 6] [135934] +14:00:29 [ 13] [ 4] [0320] +14:00:29 [ 14] [ 4] [4912] +14:00:29 [ 15] [ 4] [0320] +14:00:29 [ 18] [ 4] [6011] +14:00:29 [ 19] [ 3] [418] +14:00:29 [ 22] [ 3] [021] +14:00:29 [ 25] [ 2] [01] +14:00:29 [ 28] [ 9] [D00002000] +14:00:29 [ 32] [ 6] [180893] +14:00:29 [ 35] [ 32] [6213545000020085=491212012008973] +14:00:29 [ 37] [ 12] [507906269477] +14:00:29 [ 41] [ 8] [0111BLBR] +14:00:29 [ 42] [ 15] [999999 ] +14:00:29 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:00:29 [ 49] [ 3] [418] +14:00:29 [ 52] [ 16] [6ECED5D19342B253] +14:00:29 ============================================================================ +14:00:29 + + +waiting on router queue for slot.... +14:00:29 Sending to : +14:00:29 ============================================================================ +14:00:29 ============================================================================ +14:00:29 Slot Id : <164> +14:00:29 Transaction Type : REQUEST +14:00:29 Received From : +14:00:29 ============================================================================ +14:00:29 FNo. Len. Field Value +14:00:29 ============================================================================ +14:00:29 [ 1] [ 4] [0200] +14:00:29 [ 2] [ 16] [6213545000020085] +14:00:29 [ 3] [ 6] [010000] +14:00:29 [ 4] [ 12] [000200000000] +14:00:29 [ 7] [ 10] [0320065934] +14:00:29 [ 11] [ 6] [269477] +14:00:29 [ 12] [ 6] [135934] +14:00:29 [ 13] [ 4] [0320] +14:00:29 [ 14] [ 4] [4912] +14:00:29 [ 15] [ 4] [0320] +14:00:29 [ 18] [ 4] [6011] +14:00:29 [ 19] [ 3] [418] +14:00:29 [ 22] [ 3] [021] +14:00:29 [ 25] [ 2] [01] +14:00:29 [ 28] [ 9] [D00002000] +14:00:29 [ 32] [ 6] [180893] +14:00:29 [ 35] [ 32] [6213545000020085=491212012008973] +14:00:29 [ 37] [ 12] [507906269477] +14:00:29 [ 41] [ 8] [0111BLBR] +14:00:29 [ 42] [ 15] [999999 ] +14:00:29 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:00:29 [ 49] [ 3] [418] +14:00:29 [ 52] [ 16] [FC7CECC754804787] +14:00:29 ============================================================================ +14:00:29 + + +waiting on router queue for slot.... +14:00:29 Sending to : <0> +14:00:29 ============================================================================ +14:00:29 ============================================================================ +14:00:29 Slot Id : <164> +14:00:29 Transaction Type : RESPONSE +14:00:29 Received From : +14:00:29 ============================================================================ +14:00:29 FNo. Len. Field Value +14:00:29 ============================================================================ +14:00:29 [ 1] [ 4] [0210] +14:00:29 [ 2] [ 16] [6213545000020085] +14:00:29 [ 3] [ 6] [010000] +14:00:29 [ 4] [ 12] [000200000000] +14:00:29 [ 7] [ 10] [0320065934] +14:00:29 [ 11] [ 6] [269477] +14:00:29 [ 12] [ 6] [135934] +14:00:29 [ 13] [ 4] [0320] +14:00:29 [ 15] [ 4] [0320] +14:00:29 [ 18] [ 4] [6011] +14:00:29 [ 19] [ 3] [418] +14:00:29 [ 22] [ 3] [021] +14:00:29 [ 32] [ 6] [180893] +14:00:29 [ 35] [ 32] [6213545000020085=491212012008973] +14:00:29 [ 37] [ 12] [507906269477] +14:00:29 [ 39] [ 2] [61] +14:00:29 [ 41] [ 8] [0111BLBR] +14:00:29 [ 49] [ 3] [418] +14:00:29 ============================================================================ +14:00:29 Sending to : +14:00:29 ============================================================================ +14:00:29 + + +waiting on router queue for slot.... +14:00:30 ============================================================================ +14:00:30 Slot Id : <164> +14:00:30 Transaction Type : RESPONSE +14:00:30 Received From : +14:00:30 ============================================================================ +14:00:30 FNo. Len. Field Value +14:00:30 ============================================================================ +14:00:30 [ 1] [ 4] [0210] +14:00:30 [ 2] [ 16] [6213545000020085] +14:00:30 [ 3] [ 6] [010000] +14:00:30 [ 4] [ 12] [000200000000] +14:00:30 [ 7] [ 10] [0320065934] +14:00:30 [ 11] [ 6] [269477] +14:00:30 [ 12] [ 6] [135934] +14:00:30 [ 13] [ 4] [0320] +14:00:30 [ 15] [ 4] [0320] +14:00:30 [ 18] [ 4] [6011] +14:00:30 [ 19] [ 3] [418] +14:00:30 [ 22] [ 3] [021] +14:00:30 [ 32] [ 6] [180893] +14:00:30 [ 35] [ 32] [6213545000020085=491212012008973] +14:00:30 [ 37] [ 12] [507906269477] +14:00:30 [ 39] [ 2] [61] +14:00:30 [ 41] [ 8] [0111BLBR] +14:00:30 [ 49] [ 3] [418] +14:00:30 ============================================================================ +14:00:30 Calculate Source COMM Id = 2 +14:00:30 ============================================================================ +14:00:30 + + +waiting on router queue for slot.... +14:00:40 ============================================================================ +14:00:40 Slot Id : <186> +14:00:40 Transaction Type : REQUEST +14:00:40 Received From : +14:00:40 ============================================================================ +14:00:40 FNo. Len. Field Value +14:00:40 ============================================================================ +14:00:40 [ 1] [ 4] [0200] +14:00:40 [ 2] [ 16] [6688990103294904] +14:00:40 [ 3] [ 6] [011000] +14:00:40 [ 4] [ 12] [000100000000] +14:00:40 [ 7] [ 10] [0320140036] +14:00:40 [ 11] [ 6] [764629] +14:00:40 [ 12] [ 6] [140036] +14:00:40 [ 13] [ 4] [0320] +14:00:40 [ 15] [ 4] [0320] +14:00:40 [ 18] [ 4] [6011] +14:00:40 [ 22] [ 3] [900] +14:00:40 [ 25] [ 2] [02] +14:00:40 [ 28] [ 9] [D00002000] +14:00:40 [ 32] [ 6] [621354] +14:00:40 [ 35] [ 37] [6688990103294904=42121231490402100000] +14:00:40 [ 37] [ 12] [507903499474] +14:00:40 [ 41] [ 8] [06002200] +14:00:40 [ 42] [ 15] [NATIVE ] +14:00:40 [ 43] [ 40] [Beng Market Beng LAO] +14:00:40 [ 49] [ 3] [418] +14:00:40 [ 52] [ 16] [BE6C14461977657D] +14:00:40 ============================================================================ +14:00:40 + + +waiting on router queue for slot.... +14:00:40 Sending to : +14:00:40 ============================================================================ +14:00:40 Sending to : +14:00:40 ============================================================================ +14:00:40 ============================================================================ +14:00:40 Slot Id : <186> +14:00:40 Transaction Type : REQUEST +14:00:40 Received From : +14:00:40 ============================================================================ +14:00:40 FNo. Len. Field Value +14:00:40 ============================================================================ +14:00:40 [ 1] [ 4] [0200] +14:00:40 [ 2] [ 16] [6688990103294904] +14:00:40 [ 3] [ 6] [011000] +14:00:40 [ 4] [ 12] [000100000000] +14:00:40 [ 7] [ 10] [0320140036] +14:00:40 [ 11] [ 6] [764629] +14:00:40 [ 12] [ 6] [140036] +14:00:40 [ 13] [ 4] [0320] +14:00:40 [ 15] [ 4] [0320] +14:00:40 [ 18] [ 4] [6011] +14:00:40 [ 22] [ 3] [900] +14:00:40 [ 25] [ 2] [02] +14:00:40 [ 28] [ 9] [D00002000] +14:00:40 [ 32] [ 6] [621354] +14:00:40 [ 35] [ 37] [6688990103294904=42121231490402100000] +14:00:40 [ 37] [ 12] [507903499474] +14:00:40 [ 41] [ 8] [06002200] +14:00:40 [ 42] [ 15] [NATIVE ] +14:00:40 [ 43] [ 40] [Beng Market Beng LAO] +14:00:40 [ 49] [ 3] [418] +14:00:40 [ 52] [ 16] [BE6C14461977657D] +14:00:40 ============================================================================ +14:00:40 + + +waiting on router queue for slot.... +14:00:40 Sending to : +14:00:40 ============================================================================ +14:00:40 ============================================================================ +14:00:40 Slot Id : <186> +14:00:40 Transaction Type : REQUEST +14:00:40 Received From : +14:00:40 ============================================================================ +14:00:40 FNo. Len. Field Value +14:00:40 ============================================================================ +14:00:40 [ 1] [ 4] [0200] +14:00:40 [ 2] [ 16] [6688990103294904] +14:00:40 [ 3] [ 6] [011000] +14:00:40 [ 4] [ 12] [000100000000] +14:00:40 [ 7] [ 10] [0320140036] +14:00:40 [ 11] [ 6] [764629] +14:00:40 [ 12] [ 6] [140036] +14:00:40 [ 13] [ 4] [0320] +14:00:40 [ 15] [ 4] [0320] +14:00:40 [ 18] [ 4] [6011] +14:00:40 [ 22] [ 3] [900] +14:00:40 [ 25] [ 2] [02] +14:00:40 [ 28] [ 9] [D00002000] +14:00:40 [ 32] [ 6] [621354] +14:00:40 [ 35] [ 37] [6688990103294904=42121231490402100000] +14:00:40 [ 37] [ 12] [507903499474] +14:00:40 [ 41] [ 8] [06002200] +14:00:40 [ 42] [ 15] [NATIVE ] +14:00:40 [ 43] [ 40] [Beng Market Beng LAO] +14:00:40 [ 49] [ 3] [418] +14:00:40 [ 52] [ 16] [D682C01CB9CD286B] +14:00:40 ============================================================================ +14:00:40 + + +waiting on router queue for slot.... +14:00:40 Sending to : <4> +14:00:40 ============================================================================ +14:00:42 ============================================================================ +14:00:42 Slot Id : <186> +14:00:42 Transaction Type : RESPONSE +14:00:42 Received From : +14:00:42 ============================================================================ +14:00:42 FNo. Len. Field Value +14:00:42 ============================================================================ +14:00:42 [ 1] [ 4] [0210] +14:00:42 [ 2] [ 16] [6688990103294904] +14:00:42 [ 3] [ 6] [011000] +14:00:42 [ 4] [ 12] [000100000000] +14:00:42 [ 11] [ 6] [764629] +14:00:42 [ 12] [ 6] [140036] +14:00:42 [ 15] [ 4] [0320] +14:00:42 [ 18] [ 4] [6011] +14:00:42 [ 32] [ 6] [621354] +14:00:42 [ 35] [ 37] [6688990103294904=42121231490402100000] +14:00:42 [ 37] [ 12] [507903499474] +14:00:42 [ 38] [ 6] [356639] +14:00:42 [ 39] [ 2] [00] +14:00:42 [ 41] [ 8] [06002200] +14:00:42 [ 49] [ 3] [418] +14:00:42 [ 54] [ 20] [1002418C000161177552] +14:00:42 ============================================================================ +14:00:42 Sending to : +14:00:42 ============================================================================ +14:00:42 + + +waiting on router queue for slot.... +14:00:43 ============================================================================ +14:00:43 Slot Id : <186> +14:00:43 Transaction Type : RESPONSE +14:00:43 Received From : +14:00:43 ============================================================================ +14:00:43 FNo. Len. Field Value +14:00:43 ============================================================================ +14:00:43 [ 1] [ 4] [0210] +14:00:43 [ 2] [ 16] [6688990103294904] +14:00:43 [ 3] [ 6] [011000] +14:00:43 [ 4] [ 12] [000100000000] +14:00:43 [ 11] [ 6] [764629] +14:00:43 [ 12] [ 6] [140036] +14:00:43 [ 15] [ 4] [0320] +14:00:43 [ 18] [ 4] [6011] +14:00:43 [ 32] [ 6] [621354] +14:00:43 [ 35] [ 37] [6688990103294904=42121231490402100000] +14:00:43 [ 37] [ 12] [507903499474] +14:00:43 [ 38] [ 6] [356639] +14:00:43 [ 39] [ 2] [00] +14:00:43 [ 41] [ 8] [06002200] +14:00:43 [ 49] [ 3] [418] +14:00:43 [ 54] [ 20] [1002418C000161177552] +14:00:43 ============================================================================ +14:00:43 Calculate Source COMM Id = 0 +14:00:43 ============================================================================ +14:00:43 + + +waiting on router queue for slot.... +14:00:44 ============================================================================ +14:00:44 Slot Id : <148> +14:00:44 Transaction Type : REQUEST +14:00:44 Received From : +14:00:44 ============================================================================ +14:00:44 FNo. Len. Field Value +14:00:44 ============================================================================ +14:00:44 [ 1] [ 4] [0200] +14:00:44 [ 2] [ 16] [6213543000070531] +14:00:44 [ 3] [ 6] [011000] +14:00:44 [ 4] [ 12] [000100000000] +14:00:44 [ 7] [ 10] [0320140104] +14:00:44 [ 11] [ 6] [206911] +14:00:44 [ 12] [ 6] [134119] +14:00:44 [ 13] [ 4] [0320] +14:00:44 [ 14] [ 4] [4912] +14:00:44 [ 15] [ 4] [0320] +14:00:44 [ 18] [ 4] [6011] +14:00:44 [ 19] [ 3] [418] +14:00:44 [ 22] [ 3] [021] +14:00:44 [ 25] [ 2] [01] +14:00:44 [ 28] [ 9] [D00002000] +14:00:44 [ 32] [ 6] [198901] +14:00:44 [ 35] [ 32] [6213543000070531=491212017053537] +14:00:44 [ 37] [ 12] [507914206911] +14:00:44 [ 41] [ 8] [01529016] +14:00:44 [ 42] [ 15] [000000041529016] +14:00:44 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +14:00:44 [ 49] [ 3] [418] +14:00:44 [ 52] [ 16] [0D51CD49F4530F5F] +14:00:44 ============================================================================ +14:00:44 + + +waiting on router queue for slot.... +14:00:44 Sending to : +14:00:44 ============================================================================ +14:00:44 Sending to : +14:00:44 ============================================================================ +14:00:44 ============================================================================ +14:00:44 Slot Id : <148> +14:00:44 Transaction Type : REQUEST +14:00:44 Received From : +14:00:44 ============================================================================ +14:00:44 FNo. Len. Field Value +14:00:44 ============================================================================ +14:00:44 [ 1] [ 4] [0200] +14:00:44 [ 2] [ 16] [6213543000070531] +14:00:44 [ 3] [ 6] [011000] +14:00:44 [ 4] [ 12] [000100000000] +14:00:44 [ 7] [ 10] [0320140104] +14:00:44 [ 11] [ 6] [206911] +14:00:44 [ 12] [ 6] [134119] +14:00:44 [ 13] [ 4] [0320] +14:00:44 [ 14] [ 4] [4912] +14:00:44 [ 15] [ 4] [0320] +14:00:44 [ 18] [ 4] [6011] +14:00:44 [ 19] [ 3] [418] +14:00:44 [ 22] [ 3] [021] +14:00:44 [ 25] [ 2] [01] +14:00:44 [ 28] [ 9] [D00002000] +14:00:44 [ 32] [ 6] [198901] +14:00:44 [ 35] [ 32] [6213543000070531=491212017053537] +14:00:44 [ 37] [ 12] [507914206911] +14:00:44 [ 41] [ 8] [01529016] +14:00:44 [ 42] [ 15] [000000041529016] +14:00:44 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +14:00:44 [ 49] [ 3] [418] +14:00:44 [ 52] [ 16] [0D51CD49F4530F5F] +14:00:44 ============================================================================ +14:00:44 + + +waiting on router queue for slot.... +14:00:44 Sending to : +14:00:44 ============================================================================ +14:00:44 ============================================================================ +14:00:44 Slot Id : <148> +14:00:44 Transaction Type : REQUEST +14:00:44 Received From : +14:00:44 ============================================================================ +14:00:44 FNo. Len. Field Value +14:00:44 ============================================================================ +14:00:44 [ 1] [ 4] [0200] +14:00:44 [ 2] [ 16] [6213543000070531] +14:00:44 [ 3] [ 6] [011000] +14:00:44 [ 4] [ 12] [000100000000] +14:00:44 [ 7] [ 10] [0320140104] +14:00:44 [ 11] [ 6] [206911] +14:00:44 [ 12] [ 6] [134119] +14:00:44 [ 13] [ 4] [0320] +14:00:44 [ 14] [ 4] [4912] +14:00:44 [ 15] [ 4] [0320] +14:00:44 [ 18] [ 4] [6011] +14:00:44 [ 19] [ 3] [418] +14:00:44 [ 22] [ 3] [021] +14:00:44 [ 25] [ 2] [01] +14:00:44 [ 28] [ 9] [D00002000] +14:00:44 [ 32] [ 6] [198901] +14:00:44 [ 35] [ 32] [6213543000070531=491212017053537] +14:00:44 [ 37] [ 12] [507914206911] +14:00:44 [ 41] [ 8] [01529016] +14:00:44 [ 42] [ 15] [000000041529016] +14:00:44 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +14:00:44 [ 49] [ 3] [418] +14:00:44 [ 52] [ 16] [0020F432A3401C4C] +14:00:44 ============================================================================ +14:00:44 + + +waiting on router queue for slot.... +14:00:44 Sending to : <0> +14:00:44 ============================================================================ +14:00:44 ============================================================================ +14:00:44 Slot Id : <126> +14:00:44 Transaction Type : REQUEST +14:00:44 Received From : +14:00:44 ============================================================================ +14:00:44 FNo. Len. Field Value +14:00:44 ============================================================================ +14:00:44 [ 1] [ 4] [0800] +14:00:44 [ 2] [ 5] [02531] +14:00:44 [ 3] [ 6] [579148] +14:00:44 [ 7] [ 10] [0320070044] +14:00:44 [ 11] [ 6] [807225] +14:00:44 [ 15] [ 10] [0320070044] +14:00:44 [ 37] [ 11] [57914807225] +14:00:44 [ 70] [ 3] [001] +14:00:44 ============================================================================ +14:00:44 + + +waiting on router queue for slot.... +14:00:44 ============================================================================ +14:00:44 Slot Id : <126> +14:00:44 Transaction Type : RESPONSE +14:00:44 Received From : +14:00:44 ============================================================================ +14:00:44 FNo. Len. Field Value +14:00:44 ============================================================================ +14:00:44 [ 1] [ 4] [0810] +14:00:44 [ 7] [ 10] [0320070044] +14:00:44 [ 11] [ 6] [807225] +14:00:44 [ 15] [ 4] [0320] +14:00:44 [ 37] [ 12] [57914807225] +14:00:44 [ 39] [ 2] [00] +14:00:44 [ 70] [ 3] [001] +14:00:44 ============================================================================ +14:00:44 Sending to : +14:00:44 ============================================================================ +14:00:44 + + +waiting on router queue for slot.... +14:00:45 ============================================================================ +14:00:45 Slot Id : <171> +14:00:45 Transaction Type : REQUEST +14:00:45 Received From : +14:00:45 ============================================================================ +14:00:45 FNo. Len. Field Value +14:00:45 ============================================================================ +14:00:45 [ 1] [ 4] [0800] +14:00:45 [ 7] [ 10] [0320065952] +14:00:45 [ 11] [ 6] [156687] +14:00:45 [ 70] [ 3] [301] +14:00:45 ============================================================================ +14:00:45 + + +waiting on router queue for slot.... +14:00:45 Sending to : +14:00:45 ============================================================================ +14:00:45 ============================================================================ +14:00:45 Slot Id : <171> +14:00:45 Transaction Type : RESPONSE +14:00:45 Received From : +14:00:45 ============================================================================ +14:00:45 FNo. Len. Field Value +14:00:45 ============================================================================ +14:00:45 [ 1] [ 4] [0810] +14:00:45 [ 7] [ 10] [0320065952] +14:00:45 [ 11] [ 6] [156687] +14:00:45 [ 39] [ 2] [00] +14:00:45 [ 70] [ 3] [301] +14:00:45 ============================================================================ +14:00:45 Calculate Source COMM Id = 2 +14:00:45 ============================================================================ +14:00:45 + + +waiting on router queue for slot.... +14:00:45 ============================================================================ +14:00:45 Slot Id : <148> +14:00:45 Transaction Type : RESPONSE +14:00:45 Received From : +14:00:45 ============================================================================ +14:00:45 FNo. Len. Field Value +14:00:45 ============================================================================ +14:00:45 [ 1] [ 4] [0210] +14:00:45 [ 2] [ 16] [6213543000070531] +14:00:45 [ 3] [ 6] [011000] +14:00:45 [ 4] [ 12] [000100000000] +14:00:45 [ 7] [ 10] [0320140104] +14:00:45 [ 11] [ 6] [206911] +14:00:45 [ 12] [ 6] [134119] +14:00:45 [ 13] [ 4] [0320] +14:00:45 [ 15] [ 4] [0320] +14:00:45 [ 18] [ 4] [6011] +14:00:45 [ 19] [ 3] [418] +14:00:45 [ 32] [ 6] [198901] +14:00:45 [ 35] [ 32] [6213543000070531=491212017053537] +14:00:45 [ 37] [ 12] [507914206911] +14:00:45 [ 38] [ 6] [838399] +14:00:45 [ 39] [ 2] [00] +14:00:45 [ 41] [ 8] [01529016] +14:00:45 [ 49] [ 3] [418] +14:00:45 [ 54] [ 40] [1001418C0008620765551002418C000862076555] +14:00:45 ============================================================================ +14:00:45 Sending to : +14:00:45 ============================================================================ +14:00:45 + + +waiting on router queue for slot.... +14:00:46 ============================================================================ +14:00:46 Slot Id : <148> +14:00:46 Transaction Type : RESPONSE +14:00:46 Received From : +14:00:46 ============================================================================ +14:00:46 FNo. Len. Field Value +14:00:46 ============================================================================ +14:00:46 [ 1] [ 4] [0210] +14:00:46 [ 2] [ 16] [6213543000070531] +14:00:46 [ 3] [ 6] [011000] +14:00:46 [ 4] [ 12] [000100000000] +14:00:46 [ 7] [ 10] [0320140104] +14:00:46 [ 11] [ 6] [206911] +14:00:46 [ 12] [ 6] [134119] +14:00:46 [ 13] [ 4] [0320] +14:00:46 [ 15] [ 4] [0320] +14:00:46 [ 18] [ 4] [6011] +14:00:46 [ 19] [ 3] [418] +14:00:46 [ 32] [ 6] [198901] +14:00:46 [ 35] [ 32] [6213543000070531=491212017053537] +14:00:46 [ 37] [ 12] [507914206911] +14:00:46 [ 38] [ 6] [838399] +14:00:46 [ 39] [ 2] [00] +14:00:46 [ 41] [ 8] [01529016] +14:00:46 [ 49] [ 3] [418] +14:00:46 [ 54] [ 40] [1001418C0008620765551002418C000862076555] +14:00:46 ============================================================================ +14:00:46 Calculate Source COMM Id = 5 +14:00:46 ============================================================================ +14:00:46 + + +waiting on router queue for slot.... +14:00:52 ============================================================================ +14:00:52 Slot Id : <119> +14:00:52 Transaction Type : REQUEST +14:00:52 Received From : +14:00:52 ============================================================================ +14:00:52 FNo. Len. Field Value +14:00:52 ============================================================================ +14:00:52 [ 1] [ 4] [0200] +14:00:52 [ 2] [ 16] [6213545000785885] +14:00:52 [ 3] [ 6] [301000] +14:00:52 [ 7] [ 10] [0320065958] +14:00:52 [ 11] [ 6] [269479] +14:00:52 [ 12] [ 6] [135958] +14:00:52 [ 13] [ 4] [0320] +14:00:52 [ 14] [ 4] [4912] +14:00:52 [ 15] [ 4] [0320] +14:00:52 [ 18] [ 4] [6011] +14:00:52 [ 19] [ 3] [418] +14:00:52 [ 22] [ 3] [021] +14:00:52 [ 25] [ 2] [01] +14:00:52 [ 32] [ 6] [180893] +14:00:52 [ 35] [ 32] [6213545000785885=491212018588724] +14:00:52 [ 37] [ 12] [507906269479] +14:00:52 [ 41] [ 8] [0525XYBT] +14:00:52 [ 42] [ 15] [999999 ] +14:00:52 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:00:52 [ 49] [ 3] [418] +14:00:52 [ 52] [ 16] [DD23B35EAA88CE95] +14:00:52 ============================================================================ +14:00:52 + + +waiting on router queue for slot.... +14:00:52 Sending to : +14:00:52 ============================================================================ +14:00:52 Sending to : +14:00:52 ============================================================================ +14:00:53 ============================================================================ +14:00:53 Slot Id : <119> +14:00:53 Transaction Type : REQUEST +14:00:53 Received From : +14:00:53 ============================================================================ +14:00:53 FNo. Len. Field Value +14:00:53 ============================================================================ +14:00:53 [ 1] [ 4] [0200] +14:00:53 [ 2] [ 16] [6213545000785885] +14:00:53 [ 3] [ 6] [301000] +14:00:53 [ 7] [ 10] [0320065958] +14:00:53 [ 11] [ 6] [269479] +14:00:53 [ 12] [ 6] [135958] +14:00:53 [ 13] [ 4] [0320] +14:00:53 [ 14] [ 4] [4912] +14:00:53 [ 15] [ 4] [0320] +14:00:53 [ 18] [ 4] [6011] +14:00:53 [ 19] [ 3] [418] +14:00:53 [ 22] [ 3] [021] +14:00:53 [ 25] [ 2] [01] +14:00:53 [ 32] [ 6] [180893] +14:00:53 [ 35] [ 32] [6213545000785885=491212018588724] +14:00:53 [ 37] [ 12] [507906269479] +14:00:53 [ 41] [ 8] [0525XYBT] +14:00:53 [ 42] [ 15] [999999 ] +14:00:53 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:00:53 [ 49] [ 3] [418] +14:00:53 [ 52] [ 16] [DD23B35EAA88CE95] +14:00:53 ============================================================================ +14:00:53 + + +waiting on router queue for slot.... +14:00:53 Sending to : +14:00:53 ============================================================================ +14:00:53 ============================================================================ +14:00:53 Slot Id : <119> +14:00:53 Transaction Type : REQUEST +14:00:53 Received From : +14:00:53 ============================================================================ +14:00:53 FNo. Len. Field Value +14:00:53 ============================================================================ +14:00:53 [ 1] [ 4] [0200] +14:00:53 [ 2] [ 16] [6213545000785885] +14:00:53 [ 3] [ 6] [301000] +14:00:53 [ 7] [ 10] [0320065958] +14:00:53 [ 11] [ 6] [269479] +14:00:53 [ 12] [ 6] [135958] +14:00:53 [ 13] [ 4] [0320] +14:00:53 [ 14] [ 4] [4912] +14:00:53 [ 15] [ 4] [0320] +14:00:53 [ 18] [ 4] [6011] +14:00:53 [ 19] [ 3] [418] +14:00:53 [ 22] [ 3] [021] +14:00:53 [ 25] [ 2] [01] +14:00:53 [ 32] [ 6] [180893] +14:00:53 [ 35] [ 32] [6213545000785885=491212018588724] +14:00:53 [ 37] [ 12] [507906269479] +14:00:53 [ 41] [ 8] [0525XYBT] +14:00:53 [ 42] [ 15] [999999 ] +14:00:53 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:00:53 [ 49] [ 3] [418] +14:00:53 [ 52] [ 16] [C76BFA22696C5E74] +14:00:53 ============================================================================ +14:00:53 + + +waiting on router queue for slot.... +14:00:53 Sending to : <0> +14:00:53 ============================================================================ +14:00:53 ============================================================================ +14:00:53 Slot Id : <119> +14:00:53 Transaction Type : RESPONSE +14:00:53 Received From : +14:00:53 ============================================================================ +14:00:53 FNo. Len. Field Value +14:00:53 ============================================================================ +14:00:53 [ 1] [ 4] [0210] +14:00:53 [ 2] [ 16] [6213545000785885] +14:00:53 [ 3] [ 6] [301000] +14:00:53 [ 4] [ 12] [000000000000] +14:00:53 [ 7] [ 10] [0320065958] +14:00:53 [ 11] [ 6] [269479] +14:00:53 [ 12] [ 6] [135958] +14:00:53 [ 13] [ 4] [0320] +14:00:53 [ 15] [ 4] [0320] +14:00:53 [ 18] [ 4] [6011] +14:00:53 [ 19] [ 3] [418] +14:00:53 [ 32] [ 6] [180893] +14:00:53 [ 35] [ 32] [6213545000785885=491212018588724] +14:00:53 [ 37] [ 12] [507906269479] +14:00:53 [ 38] [ 6] [624510] +14:00:53 [ 39] [ 2] [00] +14:00:53 [ 41] [ 8] [0525XYBT] +14:00:53 [ 49] [ 3] [418] +14:00:53 [ 54] [ 40] [1001418C0001912830941002418C000191283094] +14:00:53 ============================================================================ +14:00:53 Sending to : +14:00:53 ============================================================================ +14:00:53 + + +waiting on router queue for slot.... +14:00:54 ============================================================================ +14:00:54 Slot Id : <139> +14:00:54 Transaction Type : REQUEST +14:00:54 Received From : +14:00:54 ============================================================================ +14:00:54 FNo. Len. Field Value +14:00:54 ============================================================================ +14:00:54 [ 1] [ 4] [0200] +14:00:54 [ 2] [ 16] [6688990030003188] +14:00:54 [ 3] [ 6] [012000] +14:00:54 [ 4] [ 12] [000100000000] +14:00:54 [ 7] [ 10] [0320140049] +14:00:54 [ 11] [ 6] [764668] +14:00:54 [ 12] [ 6] [140049] +14:00:54 [ 13] [ 4] [0320] +14:00:54 [ 15] [ 4] [0320] +14:00:54 [ 18] [ 4] [6011] +14:00:54 [ 22] [ 3] [900] +14:00:54 [ 25] [ 2] [02] +14:00:54 [ 28] [ 9] [D00002000] +14:00:54 [ 32] [ 6] [621354] +14:00:54 [ 35] [ 37] [6688990030003188=97111261417538300000] +14:00:54 [ 37] [ 12] [507902585314] +14:00:54 [ 41] [ 8] [05004100] +14:00:54 [ 42] [ 15] [NATIVE ] +14:00:54 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +14:00:54 [ 49] [ 3] [418] +14:00:54 [ 52] [ 16] [C9DD4AE9BBB37DFA] +14:00:54 ============================================================================ +14:00:54 + + +waiting on router queue for slot.... +14:00:54 Sending to : +14:00:54 ============================================================================ +14:00:54 Sending to : +14:00:54 ============================================================================ +14:00:54 ============================================================================ +14:00:54 Slot Id : <139> +14:00:54 Transaction Type : REQUEST +14:00:54 Received From : +14:00:54 ============================================================================ +14:00:54 FNo. Len. Field Value +14:00:54 ============================================================================ +14:00:54 [ 1] [ 4] [0200] +14:00:54 [ 2] [ 16] [6688990030003188] +14:00:54 [ 3] [ 6] [012000] +14:00:54 [ 4] [ 12] [000100000000] +14:00:54 [ 7] [ 10] [0320140049] +14:00:54 [ 11] [ 6] [764668] +14:00:54 [ 12] [ 6] [140049] +14:00:54 [ 13] [ 4] [0320] +14:00:54 [ 15] [ 4] [0320] +14:00:54 [ 18] [ 4] [6011] +14:00:54 [ 22] [ 3] [900] +14:00:54 [ 25] [ 2] [02] +14:00:54 [ 28] [ 9] [D00002000] +14:00:54 [ 32] [ 6] [621354] +14:00:54 [ 35] [ 37] [6688990030003188=97111261417538300000] +14:00:54 [ 37] [ 12] [507902585314] +14:00:54 [ 41] [ 8] [05004100] +14:00:54 [ 42] [ 15] [NATIVE ] +14:00:54 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +14:00:54 [ 49] [ 3] [418] +14:00:54 [ 52] [ 16] [C9DD4AE9BBB37DFA] +14:00:54 ============================================================================ +14:00:54 + + +waiting on router queue for slot.... +14:00:54 Sending to : +14:00:54 ============================================================================ +14:00:54 ============================================================================ +14:00:54 Slot Id : <139> +14:00:54 Transaction Type : REQUEST +14:00:54 Received From : +14:00:54 ============================================================================ +14:00:54 FNo. Len. Field Value +14:00:54 ============================================================================ +14:00:54 [ 1] [ 4] [0200] +14:00:54 [ 2] [ 16] [6688990030003188] +14:00:54 [ 3] [ 6] [012000] +14:00:54 [ 4] [ 12] [000100000000] +14:00:54 [ 7] [ 10] [0320140049] +14:00:54 [ 11] [ 6] [764668] +14:00:54 [ 12] [ 6] [140049] +14:00:54 [ 13] [ 4] [0320] +14:00:54 [ 15] [ 4] [0320] +14:00:54 [ 18] [ 4] [6011] +14:00:54 [ 22] [ 3] [900] +14:00:54 [ 25] [ 2] [02] +14:00:54 [ 28] [ 9] [D00002000] +14:00:54 [ 32] [ 6] [621354] +14:00:54 [ 35] [ 37] [6688990030003188=97111261417538300000] +14:00:54 [ 37] [ 12] [507902585314] +14:00:54 [ 41] [ 8] [05004100] +14:00:54 [ 42] [ 15] [NATIVE ] +14:00:54 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +14:00:54 [ 49] [ 3] [418] +14:00:54 [ 52] [ 16] [74C6DB7A280A85F3] +14:00:54 ============================================================================ +14:00:54 + + +waiting on router queue for slot.... +14:00:54 Sending to : <4> +14:00:54 ============================================================================ +14:00:54 ============================================================================ +14:00:54 Slot Id : <119> +14:00:54 Transaction Type : RESPONSE +14:00:54 Received From : +14:00:54 ============================================================================ +14:00:54 FNo. Len. Field Value +14:00:54 ============================================================================ +14:00:54 [ 1] [ 4] [0210] +14:00:54 [ 2] [ 16] [6213545000785885] +14:00:54 [ 3] [ 6] [301000] +14:00:54 [ 4] [ 12] [000000000000] +14:00:54 [ 7] [ 10] [0320065958] +14:00:54 [ 11] [ 6] [269479] +14:00:54 [ 12] [ 6] [135958] +14:00:54 [ 13] [ 4] [0320] +14:00:54 [ 15] [ 4] [0320] +14:00:54 [ 18] [ 4] [6011] +14:00:54 [ 19] [ 3] [418] +14:00:54 [ 32] [ 6] [180893] +14:00:54 [ 35] [ 32] [6213545000785885=491212018588724] +14:00:54 [ 37] [ 12] [507906269479] +14:00:54 [ 38] [ 6] [624510] +14:00:54 [ 39] [ 2] [00] +14:00:54 [ 41] [ 8] [0525XYBT] +14:00:54 [ 49] [ 3] [418] +14:00:54 [ 54] [ 40] [1001418C0001912830941002418C000191283094] +14:00:54 ============================================================================ +14:00:54 Calculate Source COMM Id = 2 +14:00:54 ============================================================================ +14:00:54 + + +waiting on router queue for slot.... +14:00:55 ============================================================================ +14:00:55 Slot Id : <139> +14:00:55 Transaction Type : RESPONSE +14:00:55 Received From : +14:00:55 ============================================================================ +14:00:55 FNo. Len. Field Value +14:00:55 ============================================================================ +14:00:55 [ 1] [ 4] [0210] +14:00:55 [ 2] [ 16] [6688990030003188] +14:00:55 [ 3] [ 6] [012000] +14:00:55 [ 4] [ 12] [000100000000] +14:00:55 [ 11] [ 6] [764668] +14:00:55 [ 12] [ 6] [140049] +14:00:55 [ 15] [ 4] [0320] +14:00:55 [ 18] [ 4] [6011] +14:00:55 [ 32] [ 6] [621354] +14:00:55 [ 35] [ 37] [6688990030003188=97111261417538300000] +14:00:55 [ 37] [ 12] [507902585314] +14:00:55 [ 38] [ 6] [715582] +14:00:55 [ 39] [ 2] [00] +14:00:55 [ 41] [ 8] [05004100] +14:00:55 [ 49] [ 3] [418] +14:00:55 [ 54] [ 20] [2002418C008248168265] +14:00:55 ============================================================================ +14:00:55 Sending to : +14:00:55 ============================================================================ +14:00:55 + + +waiting on router queue for slot.... +14:00:55 ============================================================================ +14:00:55 Slot Id : <182> +14:00:55 Transaction Type : REQUEST +14:00:55 Received From : +14:00:55 ============================================================================ +14:00:55 FNo. Len. Field Value +14:00:55 ============================================================================ +14:00:55 [ 1] [ 4] [0800] +14:00:55 [ 7] [ 10] [0320070003] +14:00:55 [ 11] [ 6] [156688] +14:00:55 [ 70] [ 3] [301] +14:00:55 ============================================================================ +14:00:55 + + +waiting on router queue for slot.... +14:00:55 Sending to : +14:00:55 ============================================================================ +14:00:55 ============================================================================ +14:00:55 Slot Id : <182> +14:00:55 Transaction Type : RESPONSE +14:00:55 Received From : +14:00:55 ============================================================================ +14:00:55 FNo. Len. Field Value +14:00:55 ============================================================================ +14:00:55 [ 1] [ 4] [0810] +14:00:55 [ 7] [ 10] [0320070003] +14:00:55 [ 11] [ 6] [156688] +14:00:55 [ 39] [ 2] [00] +14:00:55 [ 70] [ 3] [301] +14:00:55 ============================================================================ +14:00:55 Calculate Source COMM Id = 2 +14:00:55 ============================================================================ +14:00:55 + + +waiting on router queue for slot.... +14:00:56 ============================================================================ +14:00:56 Slot Id : <139> +14:00:56 Transaction Type : RESPONSE +14:00:56 Received From : +14:00:56 ============================================================================ +14:00:56 FNo. Len. Field Value +14:00:56 ============================================================================ +14:00:56 [ 1] [ 4] [0210] +14:00:56 [ 2] [ 16] [6688990030003188] +14:00:56 [ 3] [ 6] [012000] +14:00:56 [ 4] [ 12] [000100000000] +14:00:56 [ 11] [ 6] [764668] +14:00:56 [ 12] [ 6] [140049] +14:00:56 [ 15] [ 4] [0320] +14:00:56 [ 18] [ 4] [6011] +14:00:56 [ 32] [ 6] [621354] +14:00:56 [ 35] [ 37] [6688990030003188=97111261417538300000] +14:00:56 [ 37] [ 12] [507902585314] +14:00:56 [ 38] [ 6] [715582] +14:00:56 [ 39] [ 2] [00] +14:00:56 [ 41] [ 8] [05004100] +14:00:56 [ 49] [ 3] [418] +14:00:56 [ 54] [ 20] [2002418C008248168265] +14:00:56 ============================================================================ +14:00:56 Calculate Source COMM Id = 0 +14:00:56 ============================================================================ +14:00:56 + + +waiting on router queue for slot.... +14:00:57 ============================================================================ +14:00:57 Slot Id : <176> +14:00:57 Transaction Type : REQUEST +14:00:57 Received From : +14:00:57 ============================================================================ +14:00:57 FNo. Len. Field Value +14:00:57 ============================================================================ +14:00:57 [ 1] [ 4] [0200] +14:00:57 [ 2] [ 16] [6213545000020085] +14:00:57 [ 3] [ 6] [010000] +14:00:57 [ 4] [ 12] [000100000000] +14:00:57 [ 7] [ 10] [0320070004] +14:00:57 [ 11] [ 6] [269481] +14:00:57 [ 12] [ 6] [140004] +14:00:57 [ 13] [ 4] [0320] +14:00:57 [ 14] [ 4] [4912] +14:00:57 [ 15] [ 4] [0320] +14:00:57 [ 18] [ 4] [6011] +14:00:57 [ 19] [ 3] [418] +14:00:57 [ 22] [ 3] [021] +14:00:57 [ 25] [ 2] [01] +14:00:57 [ 28] [ 9] [D00002000] +14:00:57 [ 32] [ 6] [180893] +14:00:57 [ 35] [ 32] [6213545000020085=491212012008973] +14:00:57 [ 37] [ 12] [507907269481] +14:00:57 [ 41] [ 8] [0111BLBR] +14:00:57 [ 42] [ 15] [999999 ] +14:00:57 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:00:57 [ 49] [ 3] [418] +14:00:57 [ 52] [ 16] [6ECED5D19342B253] +14:00:57 ============================================================================ +14:00:57 + + +waiting on router queue for slot.... +14:00:57 Sending to : +14:00:57 ============================================================================ +14:00:57 Sending to : +14:00:57 ============================================================================ +14:00:58 ============================================================================ +14:00:58 Slot Id : <176> +14:00:58 Transaction Type : REQUEST +14:00:58 Received From : +14:00:58 ============================================================================ +14:00:58 FNo. Len. Field Value +14:00:58 ============================================================================ +14:00:58 [ 1] [ 4] [0200] +14:00:58 [ 2] [ 16] [6213545000020085] +14:00:58 [ 3] [ 6] [010000] +14:00:58 [ 4] [ 12] [000100000000] +14:00:58 [ 7] [ 10] [0320070004] +14:00:58 [ 11] [ 6] [269481] +14:00:58 [ 12] [ 6] [140004] +14:00:58 [ 13] [ 4] [0320] +14:00:58 [ 14] [ 4] [4912] +14:00:58 [ 15] [ 4] [0320] +14:00:58 [ 18] [ 4] [6011] +14:00:58 [ 19] [ 3] [418] +14:00:58 [ 22] [ 3] [021] +14:00:58 [ 25] [ 2] [01] +14:00:58 [ 28] [ 9] [D00002000] +14:00:58 [ 32] [ 6] [180893] +14:00:58 [ 35] [ 32] [6213545000020085=491212012008973] +14:00:58 [ 37] [ 12] [507907269481] +14:00:58 [ 41] [ 8] [0111BLBR] +14:00:58 [ 42] [ 15] [999999 ] +14:00:58 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:00:58 [ 49] [ 3] [418] +14:00:58 [ 52] [ 16] [6ECED5D19342B253] +14:00:58 ============================================================================ +14:00:58 + + +waiting on router queue for slot.... +14:00:58 Sending to : +14:00:58 ============================================================================ +14:00:58 ============================================================================ +14:00:58 Slot Id : <176> +14:00:58 Transaction Type : REQUEST +14:00:58 Received From : +14:00:58 ============================================================================ +14:00:58 FNo. Len. Field Value +14:00:58 ============================================================================ +14:00:58 [ 1] [ 4] [0200] +14:00:58 [ 2] [ 16] [6213545000020085] +14:00:58 [ 3] [ 6] [010000] +14:00:58 [ 4] [ 12] [000100000000] +14:00:58 [ 7] [ 10] [0320070004] +14:00:58 [ 11] [ 6] [269481] +14:00:58 [ 12] [ 6] [140004] +14:00:58 [ 13] [ 4] [0320] +14:00:58 [ 14] [ 4] [4912] +14:00:58 [ 15] [ 4] [0320] +14:00:58 [ 18] [ 4] [6011] +14:00:58 [ 19] [ 3] [418] +14:00:58 [ 22] [ 3] [021] +14:00:58 [ 25] [ 2] [01] +14:00:58 [ 28] [ 9] [D00002000] +14:00:58 [ 32] [ 6] [180893] +14:00:58 [ 35] [ 32] [6213545000020085=491212012008973] +14:00:58 [ 37] [ 12] [507907269481] +14:00:58 [ 41] [ 8] [0111BLBR] +14:00:58 [ 42] [ 15] [999999 ] +14:00:58 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:00:58 [ 49] [ 3] [418] +14:00:58 [ 52] [ 16] [FC7CECC754804787] +14:00:58 ============================================================================ +14:00:58 + + +waiting on router queue for slot.... +14:00:58 Sending to : <0> +14:00:58 ============================================================================ +14:00:59 ============================================================================ +14:00:59 Slot Id : <176> +14:00:59 Transaction Type : RESPONSE +14:00:59 Received From : +14:00:59 ============================================================================ +14:00:59 FNo. Len. Field Value +14:00:59 ============================================================================ +14:00:59 [ 1] [ 4] [0210] +14:00:59 [ 2] [ 16] [6213545000020085] +14:00:59 [ 3] [ 6] [010000] +14:00:59 [ 4] [ 12] [000100000000] +14:00:59 [ 7] [ 10] [0320070004] +14:00:59 [ 11] [ 6] [269481] +14:00:59 [ 12] [ 6] [140004] +14:00:59 [ 13] [ 4] [0320] +14:00:59 [ 15] [ 4] [0320] +14:00:59 [ 18] [ 4] [6011] +14:00:59 [ 19] [ 3] [418] +14:00:59 [ 32] [ 6] [180893] +14:00:59 [ 35] [ 32] [6213545000020085=491212012008973] +14:00:59 [ 37] [ 12] [507907269481] +14:00:59 [ 38] [ 6] [469394] +14:00:59 [ 39] [ 2] [00] +14:00:59 [ 41] [ 8] [0111BLBR] +14:00:59 [ 49] [ 3] [418] +14:00:59 [ 54] [ 40] [0001418C0018677450570002418C001867745057] +14:00:59 ============================================================================ +14:00:59 Sending to : +14:00:59 ============================================================================ +14:00:59 + + +waiting on router queue for slot.... +14:01:00 ============================================================================ +14:01:00 Slot Id : <176> +14:01:00 Transaction Type : RESPONSE +14:01:00 Received From : +14:01:00 ============================================================================ +14:01:00 FNo. Len. Field Value +14:01:00 ============================================================================ +14:01:00 [ 1] [ 4] [0210] +14:01:00 [ 2] [ 16] [6213545000020085] +14:01:00 [ 3] [ 6] [010000] +14:01:00 [ 4] [ 12] [000100000000] +14:01:00 [ 7] [ 10] [0320070004] +14:01:00 [ 11] [ 6] [269481] +14:01:00 [ 12] [ 6] [140004] +14:01:00 [ 13] [ 4] [0320] +14:01:00 [ 15] [ 4] [0320] +14:01:00 [ 18] [ 4] [6011] +14:01:00 [ 19] [ 3] [418] +14:01:00 [ 32] [ 6] [180893] +14:01:00 [ 35] [ 32] [6213545000020085=491212012008973] +14:01:00 [ 37] [ 12] [507907269481] +14:01:00 [ 38] [ 6] [469394] +14:01:00 [ 39] [ 2] [00] +14:01:00 [ 41] [ 8] [0111BLBR] +14:01:00 [ 49] [ 3] [418] +14:01:00 [ 54] [ 40] [0001418C0018677450570002418C001867745057] +14:01:00 ============================================================================ +14:01:00 Calculate Source COMM Id = 2 +14:01:00 ============================================================================ +14:01:00 + + +waiting on router queue for slot.... +14:01:00 ============================================================================ +14:01:00 Slot Id : <202> +14:01:00 Transaction Type : REQUEST +14:01:00 Received From : +14:01:00 ============================================================================ +14:01:00 FNo. Len. Field Value +14:01:00 ============================================================================ +14:01:00 [ 1] [ 4] [0800] +14:01:00 [ 7] [ 10] [0320070056] +14:01:00 [ 11] [ 6] [005557] +14:01:00 [ 37] [ 12] [507914005557] +14:01:00 [ 70] [ 3] [001] +14:01:00 ============================================================================ +14:01:00 + + +waiting on router queue for slot.... +14:01:00 Sending to : +14:01:00 ============================================================================ +14:01:00 ============================================================================ +14:01:00 Slot Id : <202> +14:01:00 Transaction Type : RESPONSE +14:01:00 Received From : +14:01:00 ============================================================================ +14:01:00 FNo. Len. Field Value +14:01:00 ============================================================================ +14:01:00 [ 1] [ 4] [0810] +14:01:00 [ 7] [ 10] [0320070056] +14:01:00 [ 11] [ 6] [005557] +14:01:00 [ 37] [ 12] [507914005557] +14:01:00 [ 39] [ 2] [00] +14:01:00 [ 70] [ 3] [001] +14:01:00 ============================================================================ +14:01:00 Calculate Source COMM Id = 0 +14:01:00 ============================================================================ +14:01:00 + + +waiting on router queue for slot.... +14:01:17 ============================================================================ +14:01:17 Slot Id : <187> +14:01:17 Transaction Type : REQUEST +14:01:17 Received From : +14:01:17 ============================================================================ +14:01:17 FNo. Len. Field Value +14:01:17 ============================================================================ +14:01:17 [ 1] [ 4] [0800] +14:01:17 [ 7] [ 10] [0320070024] +14:01:17 [ 11] [ 6] [156689] +14:01:17 [ 70] [ 3] [301] +14:01:17 ============================================================================ +14:01:17 + + +waiting on router queue for slot.... +14:01:17 Sending to : +14:01:17 ============================================================================ +14:01:17 ============================================================================ +14:01:17 Slot Id : <187> +14:01:17 Transaction Type : RESPONSE +14:01:17 Received From : +14:01:17 ============================================================================ +14:01:17 FNo. Len. Field Value +14:01:17 ============================================================================ +14:01:17 [ 1] [ 4] [0810] +14:01:17 [ 7] [ 10] [0320070024] +14:01:17 [ 11] [ 6] [156689] +14:01:17 [ 39] [ 2] [00] +14:01:17 [ 70] [ 3] [301] +14:01:17 ============================================================================ +14:01:17 Calculate Source COMM Id = 2 +14:01:17 ============================================================================ +14:01:17 + + +waiting on router queue for slot.... +14:01:19 ============================================================================ +14:01:19 Slot Id : <160> +14:01:19 Transaction Type : REQUEST +14:01:19 Received From : +14:01:19 ============================================================================ +14:01:19 FNo. Len. Field Value +14:01:19 ============================================================================ +14:01:19 [ 1] [ 4] [0200] +14:01:19 [ 2] [ 16] [6213544000282522] +14:01:19 [ 3] [ 6] [011000] +14:01:19 [ 4] [ 12] [000100000000] +14:01:19 [ 7] [ 10] [0320140906] +14:01:19 [ 11] [ 6] [274795] +14:01:19 [ 12] [ 6] [140906] +14:01:19 [ 13] [ 4] [0320] +14:01:19 [ 14] [ 4] [4912] +14:01:19 [ 15] [ 4] [0320] +14:01:19 [ 18] [ 4] [6011] +14:01:19 [ 22] [ 3] [900] +14:01:19 [ 25] [ 2] [02] +14:01:19 [ 28] [ 9] [D00002000] +14:01:19 [ 32] [ 6] [220699] +14:01:19 [ 35] [ 32] [6213544000282522=491212018252648] +14:01:19 [ 37] [ 12] [507900057296] +14:01:19 [ 41] [ 8] [01000500] +14:01:19 [ 42] [ 15] [APTRA ] +14:01:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:01:19 [ 49] [ 3] [418] +14:01:19 [ 52] [ 16] [D0B8E4C505713A81] +14:01:19 ============================================================================ +14:01:19 + + +waiting on router queue for slot.... +14:01:19 Sending to : +14:01:19 ============================================================================ +14:01:19 Sending to : +14:01:19 ============================================================================ +14:01:19 ============================================================================ +14:01:19 Slot Id : <160> +14:01:19 Transaction Type : REQUEST +14:01:19 Received From : +14:01:19 ============================================================================ +14:01:19 FNo. Len. Field Value +14:01:19 ============================================================================ +14:01:19 [ 1] [ 4] [0200] +14:01:19 [ 2] [ 16] [6213544000282522] +14:01:19 [ 3] [ 6] [011000] +14:01:19 [ 4] [ 12] [000100000000] +14:01:19 [ 7] [ 10] [0320140906] +14:01:19 [ 11] [ 6] [274795] +14:01:19 [ 12] [ 6] [140906] +14:01:19 [ 13] [ 4] [0320] +14:01:19 [ 14] [ 4] [4912] +14:01:19 [ 15] [ 4] [0320] +14:01:19 [ 18] [ 4] [6011] +14:01:19 [ 22] [ 3] [900] +14:01:19 [ 25] [ 2] [02] +14:01:19 [ 28] [ 9] [D00002000] +14:01:19 [ 32] [ 6] [220699] +14:01:19 [ 35] [ 32] [6213544000282522=491212018252648] +14:01:19 [ 37] [ 12] [507900057296] +14:01:19 [ 41] [ 8] [01000500] +14:01:19 [ 42] [ 15] [APTRA ] +14:01:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:01:19 [ 49] [ 3] [418] +14:01:19 [ 52] [ 16] [D0B8E4C505713A81] +14:01:19 ============================================================================ +14:01:19 + + +waiting on router queue for slot.... +14:01:19 Sending to : +14:01:19 ============================================================================ +14:01:19 ============================================================================ +14:01:19 Slot Id : <160> +14:01:19 Transaction Type : REQUEST +14:01:19 Received From : +14:01:19 ============================================================================ +14:01:19 FNo. Len. Field Value +14:01:19 ============================================================================ +14:01:19 [ 1] [ 4] [0200] +14:01:19 [ 2] [ 16] [6213544000282522] +14:01:19 [ 3] [ 6] [011000] +14:01:19 [ 4] [ 12] [000100000000] +14:01:19 [ 7] [ 10] [0320140906] +14:01:19 [ 11] [ 6] [274795] +14:01:19 [ 12] [ 6] [140906] +14:01:19 [ 13] [ 4] [0320] +14:01:19 [ 14] [ 4] [4912] +14:01:19 [ 15] [ 4] [0320] +14:01:19 [ 18] [ 4] [6011] +14:01:19 [ 22] [ 3] [900] +14:01:19 [ 25] [ 2] [02] +14:01:19 [ 28] [ 9] [D00002000] +14:01:19 [ 32] [ 6] [220699] +14:01:19 [ 35] [ 32] [6213544000282522=491212018252648] +14:01:19 [ 37] [ 12] [507900057296] +14:01:19 [ 41] [ 8] [01000500] +14:01:19 [ 42] [ 15] [APTRA ] +14:01:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:01:19 [ 49] [ 3] [418] +14:01:19 [ 52] [ 16] [ACF5D648A904ED5D] +14:01:19 ============================================================================ +14:01:19 + + +waiting on router queue for slot.... +14:01:19 Sending to : <0> +14:01:19 ============================================================================ +14:01:20 ============================================================================ +14:01:20 Slot Id : <160> +14:01:20 Transaction Type : RESPONSE +14:01:20 Received From : +14:01:20 ============================================================================ +14:01:20 FNo. Len. Field Value +14:01:20 ============================================================================ +14:01:20 [ 1] [ 4] [0210] +14:01:20 [ 2] [ 16] [6213544000282522] +14:01:20 [ 3] [ 6] [011000] +14:01:20 [ 4] [ 12] [000100000000] +14:01:20 [ 7] [ 10] [0320140906] +14:01:20 [ 11] [ 6] [274795] +14:01:20 [ 12] [ 6] [140906] +14:01:20 [ 13] [ 4] [0320] +14:01:20 [ 15] [ 4] [0320] +14:01:20 [ 18] [ 4] [6011] +14:01:20 [ 32] [ 6] [220699] +14:01:20 [ 35] [ 32] [6213544000282522=491212018252648] +14:01:20 [ 37] [ 12] [507900057296] +14:01:20 [ 38] [ 6] [949303] +14:01:20 [ 39] [ 2] [00] +14:01:20 [ 41] [ 8] [01000500] +14:01:20 [ 49] [ 3] [418] +14:01:20 [ 54] [ 40] [1001418C0007087330251002418C000708733025] +14:01:20 ============================================================================ +14:01:20 Sending to : +14:01:20 ============================================================================ +14:01:20 + + +waiting on router queue for slot.... +14:01:21 ============================================================================ +14:01:21 Slot Id : <160> +14:01:21 Transaction Type : RESPONSE +14:01:21 Received From : +14:01:21 ============================================================================ +14:01:21 FNo. Len. Field Value +14:01:21 ============================================================================ +14:01:21 [ 1] [ 4] [0210] +14:01:21 [ 2] [ 16] [6213544000282522] +14:01:21 [ 3] [ 6] [011000] +14:01:21 [ 4] [ 12] [000100000000] +14:01:21 [ 7] [ 10] [0320140906] +14:01:21 [ 11] [ 6] [274795] +14:01:21 [ 12] [ 6] [140906] +14:01:21 [ 13] [ 4] [0320] +14:01:21 [ 15] [ 4] [0320] +14:01:21 [ 18] [ 4] [6011] +14:01:21 [ 32] [ 6] [220699] +14:01:21 [ 35] [ 32] [6213544000282522=491212018252648] +14:01:21 [ 37] [ 12] [507900057296] +14:01:21 [ 38] [ 6] [949303] +14:01:21 [ 39] [ 2] [00] +14:01:21 [ 41] [ 8] [01000500] +14:01:21 [ 49] [ 3] [418] +14:01:21 [ 54] [ 40] [1001418C0007087330251002418C000708733025] +14:01:21 ============================================================================ +14:01:21 Calculate Source COMM Id = 1 +14:01:21 ============================================================================ +14:01:21 + + +waiting on router queue for slot.... +14:01:22 ============================================================================ +14:01:22 Slot Id : <156> +14:01:22 Transaction Type : REQUEST +14:01:22 Received From : +14:01:22 ============================================================================ +14:01:22 FNo. Len. Field Value +14:01:22 ============================================================================ +14:01:22 [ 1] [ 4] [0800] +14:01:22 [ 7] [ 10] [0320065912] +14:01:22 [ 11] [ 6] [003016] +14:01:22 [ 37] [ 12] [57913003016] +14:01:22 [ 70] [ 3] [301] +14:01:22 ============================================================================ +14:01:22 + + +waiting on router queue for slot.... +14:01:22 Sending to : +14:01:22 ============================================================================ +14:01:22 ============================================================================ +14:01:22 Slot Id : <156> +14:01:22 Transaction Type : RESPONSE +14:01:22 Received From : +14:01:22 ============================================================================ +14:01:22 FNo. Len. Field Value +14:01:22 ============================================================================ +14:01:22 [ 1] [ 4] [0810] +14:01:22 [ 7] [ 10] [0320065912] +14:01:22 [ 11] [ 6] [003016] +14:01:22 [ 37] [ 12] [579130030160] +14:01:22 [ 39] [ 2] [00] +14:01:22 [ 70] [ 3] [810] +14:01:22 ============================================================================ +14:01:22 Calculate Source COMM Id = 4 +14:01:22 ============================================================================ +14:01:22 + + +waiting on router queue for slot.... +14:01:23 ============================================================================ +14:01:23 Slot Id : <203> +14:01:23 Transaction Type : REQUEST +14:01:23 Received From : +14:01:23 ============================================================================ +14:01:23 FNo. Len. Field Value +14:01:23 ============================================================================ +14:01:23 [ 1] [ 4] [0200] +14:01:23 [ 2] [ 16] [6213543000070531] +14:01:23 [ 3] [ 6] [011000] +14:01:23 [ 4] [ 12] [000100000000] +14:01:23 [ 7] [ 10] [0320140144] +14:01:23 [ 11] [ 6] [206923] +14:01:23 [ 12] [ 6] [134159] +14:01:23 [ 13] [ 4] [0320] +14:01:23 [ 14] [ 4] [4912] +14:01:23 [ 15] [ 4] [0320] +14:01:23 [ 18] [ 4] [6011] +14:01:23 [ 19] [ 3] [418] +14:01:23 [ 22] [ 3] [021] +14:01:23 [ 25] [ 2] [01] +14:01:23 [ 28] [ 9] [D00002000] +14:01:23 [ 32] [ 6] [198901] +14:01:23 [ 35] [ 32] [6213543000070531=491212017053537] +14:01:23 [ 37] [ 12] [507914206923] +14:01:23 [ 41] [ 8] [01529016] +14:01:23 [ 42] [ 15] [000000041529016] +14:01:23 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +14:01:23 [ 49] [ 3] [418] +14:01:23 [ 52] [ 16] [0D51CD49F4530F5F] +14:01:23 ============================================================================ +14:01:23 + + +waiting on router queue for slot.... +14:01:23 Sending to : +14:01:23 ============================================================================ +14:01:23 Sending to : +14:01:23 ============================================================================ +14:01:24 ============================================================================ +14:01:24 Slot Id : <203> +14:01:24 Transaction Type : REQUEST +14:01:24 Received From : +14:01:24 ============================================================================ +14:01:24 FNo. Len. Field Value +14:01:24 ============================================================================ +14:01:24 [ 1] [ 4] [0200] +14:01:24 [ 2] [ 16] [6213543000070531] +14:01:24 [ 3] [ 6] [011000] +14:01:24 [ 4] [ 12] [000100000000] +14:01:24 [ 7] [ 10] [0320140144] +14:01:24 [ 11] [ 6] [206923] +14:01:24 [ 12] [ 6] [134159] +14:01:24 [ 13] [ 4] [0320] +14:01:24 [ 14] [ 4] [4912] +14:01:24 [ 15] [ 4] [0320] +14:01:24 [ 18] [ 4] [6011] +14:01:24 [ 19] [ 3] [418] +14:01:24 [ 22] [ 3] [021] +14:01:24 [ 25] [ 2] [01] +14:01:24 [ 28] [ 9] [D00002000] +14:01:24 [ 32] [ 6] [198901] +14:01:24 [ 35] [ 32] [6213543000070531=491212017053537] +14:01:24 [ 37] [ 12] [507914206923] +14:01:24 [ 41] [ 8] [01529016] +14:01:24 [ 42] [ 15] [000000041529016] +14:01:24 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +14:01:24 [ 49] [ 3] [418] +14:01:24 [ 52] [ 16] [0D51CD49F4530F5F] +14:01:24 ============================================================================ +14:01:24 + + +waiting on router queue for slot.... +14:01:24 Sending to : +14:01:24 ============================================================================ +14:01:24 ============================================================================ +14:01:24 Slot Id : <203> +14:01:24 Transaction Type : REQUEST +14:01:24 Received From : +14:01:24 ============================================================================ +14:01:24 FNo. Len. Field Value +14:01:24 ============================================================================ +14:01:24 [ 1] [ 4] [0200] +14:01:24 [ 2] [ 16] [6213543000070531] +14:01:24 [ 3] [ 6] [011000] +14:01:24 [ 4] [ 12] [000100000000] +14:01:24 [ 7] [ 10] [0320140144] +14:01:24 [ 11] [ 6] [206923] +14:01:24 [ 12] [ 6] [134159] +14:01:24 [ 13] [ 4] [0320] +14:01:24 [ 14] [ 4] [4912] +14:01:24 [ 15] [ 4] [0320] +14:01:24 [ 18] [ 4] [6011] +14:01:24 [ 19] [ 3] [418] +14:01:24 [ 22] [ 3] [021] +14:01:24 [ 25] [ 2] [01] +14:01:24 [ 28] [ 9] [D00002000] +14:01:24 [ 32] [ 6] [198901] +14:01:24 [ 35] [ 32] [6213543000070531=491212017053537] +14:01:24 [ 37] [ 12] [507914206923] +14:01:24 [ 41] [ 8] [01529016] +14:01:24 [ 42] [ 15] [000000041529016] +14:01:24 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +14:01:24 [ 49] [ 3] [418] +14:01:24 [ 52] [ 16] [0020F432A3401C4C] +14:01:24 ============================================================================ +14:01:24 + + +waiting on router queue for slot.... +14:01:24 Sending to : <0> +14:01:24 ============================================================================ +14:01:25 ============================================================================ +14:01:25 Slot Id : <203> +14:01:25 Transaction Type : RESPONSE +14:01:25 Received From : +14:01:25 ============================================================================ +14:01:25 FNo. Len. Field Value +14:01:25 ============================================================================ +14:01:25 [ 1] [ 4] [0210] +14:01:25 [ 2] [ 16] [6213543000070531] +14:01:25 [ 3] [ 6] [011000] +14:01:25 [ 4] [ 12] [000100000000] +14:01:25 [ 7] [ 10] [0320140144] +14:01:25 [ 11] [ 6] [206923] +14:01:25 [ 12] [ 6] [134159] +14:01:25 [ 13] [ 4] [0320] +14:01:25 [ 15] [ 4] [0320] +14:01:25 [ 18] [ 4] [6011] +14:01:25 [ 19] [ 3] [418] +14:01:25 [ 32] [ 6] [198901] +14:01:25 [ 35] [ 32] [6213543000070531=491212017053537] +14:01:25 [ 37] [ 12] [507914206923] +14:01:25 [ 38] [ 6] [808817] +14:01:25 [ 39] [ 2] [00] +14:01:25 [ 41] [ 8] [01529016] +14:01:25 [ 49] [ 3] [418] +14:01:25 [ 54] [ 40] [1001418C0007618765551002418C000761876555] +14:01:25 ============================================================================ +14:01:25 Sending to : +14:01:25 ============================================================================ +14:01:25 + + +waiting on router queue for slot.... +14:01:26 ============================================================================ +14:01:26 Slot Id : <203> +14:01:26 Transaction Type : RESPONSE +14:01:26 Received From : +14:01:26 ============================================================================ +14:01:26 FNo. Len. Field Value +14:01:26 ============================================================================ +14:01:26 [ 1] [ 4] [0210] +14:01:26 [ 2] [ 16] [6213543000070531] +14:01:26 [ 3] [ 6] [011000] +14:01:26 [ 4] [ 12] [000100000000] +14:01:26 [ 7] [ 10] [0320140144] +14:01:26 [ 11] [ 6] [206923] +14:01:26 [ 12] [ 6] [134159] +14:01:26 [ 13] [ 4] [0320] +14:01:26 [ 15] [ 4] [0320] +14:01:26 [ 18] [ 4] [6011] +14:01:26 [ 19] [ 3] [418] +14:01:26 [ 32] [ 6] [198901] +14:01:26 [ 35] [ 32] [6213543000070531=491212017053537] +14:01:26 [ 37] [ 12] [507914206923] +14:01:26 [ 38] [ 6] [808817] +14:01:26 [ 39] [ 2] [00] +14:01:26 [ 41] [ 8] [01529016] +14:01:26 [ 49] [ 3] [418] +14:01:26 [ 54] [ 40] [1001418C0007618765551002418C000761876555] +14:01:26 ============================================================================ +14:01:26 Calculate Source COMM Id = 5 +14:01:26 ============================================================================ +14:01:26 + + +waiting on router queue for slot.... +14:01:27 ============================================================================ +14:01:27 Slot Id : <144> +14:01:27 Transaction Type : REQUEST +14:01:27 Received From : +14:01:27 ============================================================================ +14:01:27 FNo. Len. Field Value +14:01:27 ============================================================================ +14:01:27 [ 1] [ 4] [0800] +14:01:27 [ 7] [ 10] [0320070035] +14:01:27 [ 11] [ 6] [156690] +14:01:27 [ 70] [ 3] [301] +14:01:27 ============================================================================ +14:01:27 + + +waiting on router queue for slot.... +14:01:27 Sending to : +14:01:27 ============================================================================ +14:01:27 ============================================================================ +14:01:27 Slot Id : <144> +14:01:27 Transaction Type : RESPONSE +14:01:27 Received From : +14:01:27 ============================================================================ +14:01:27 FNo. Len. Field Value +14:01:27 ============================================================================ +14:01:27 [ 1] [ 4] [0810] +14:01:27 [ 7] [ 10] [0320070035] +14:01:27 [ 11] [ 6] [156690] +14:01:27 [ 39] [ 2] [00] +14:01:27 [ 70] [ 3] [301] +14:01:27 ============================================================================ +14:01:27 Calculate Source COMM Id = 2 +14:01:27 ============================================================================ +14:01:27 + + +waiting on router queue for slot.... +14:01:32 ============================================================================ +14:01:32 Slot Id : <163> +14:01:32 Transaction Type : REQUEST +14:01:32 Received From : +14:01:32 ============================================================================ +14:01:32 FNo. Len. Field Value +14:01:32 ============================================================================ +14:01:32 [ 1] [ 4] [0200] +14:01:32 [ 2] [ 16] [6688990102133707] +14:01:32 [ 3] [ 6] [012000] +14:01:32 [ 4] [ 12] [000010000000] +14:01:32 [ 7] [ 10] [0320140128] +14:01:32 [ 11] [ 6] [764792] +14:01:32 [ 12] [ 6] [140128] +14:01:32 [ 13] [ 4] [0320] +14:01:32 [ 15] [ 4] [0320] +14:01:32 [ 18] [ 4] [6011] +14:01:32 [ 22] [ 3] [900] +14:01:32 [ 25] [ 2] [02] +14:01:32 [ 28] [ 9] [D00002000] +14:01:32 [ 32] [ 6] [621354] +14:01:32 [ 35] [ 37] [6688990102133707=42071231370759000000] +14:01:32 [ 37] [ 12] [507903058563] +14:01:32 [ 41] [ 8] [01008500] +14:01:32 [ 42] [ 15] [NATIVE ] +14:01:32 [ 43] [ 40] [MOF ChanthaboulyLAO] +14:01:32 [ 49] [ 3] [418] +14:01:32 [ 52] [ 16] [0A15F8A2607D1E9F] +14:01:32 ============================================================================ +14:01:32 + + +waiting on router queue for slot.... +14:01:32 Sending to : +14:01:32 ============================================================================ +14:01:32 Sending to : +14:01:32 ============================================================================ +14:01:33 ============================================================================ +14:01:33 Slot Id : <163> +14:01:33 Transaction Type : REQUEST +14:01:33 Received From : +14:01:33 ============================================================================ +14:01:33 FNo. Len. Field Value +14:01:33 ============================================================================ +14:01:33 [ 1] [ 4] [0200] +14:01:33 [ 2] [ 16] [6688990102133707] +14:01:33 [ 3] [ 6] [012000] +14:01:33 [ 4] [ 12] [000010000000] +14:01:33 [ 7] [ 10] [0320140128] +14:01:33 [ 11] [ 6] [764792] +14:01:33 [ 12] [ 6] [140128] +14:01:33 [ 13] [ 4] [0320] +14:01:33 [ 15] [ 4] [0320] +14:01:33 [ 18] [ 4] [6011] +14:01:33 [ 22] [ 3] [900] +14:01:33 [ 25] [ 2] [02] +14:01:33 [ 28] [ 9] [D00002000] +14:01:33 [ 32] [ 6] [621354] +14:01:33 [ 35] [ 37] [6688990102133707=42071231370759000000] +14:01:33 [ 37] [ 12] [507903058563] +14:01:33 [ 41] [ 8] [01008500] +14:01:33 [ 42] [ 15] [NATIVE ] +14:01:33 [ 43] [ 40] [MOF ChanthaboulyLAO] +14:01:33 [ 49] [ 3] [418] +14:01:33 [ 52] [ 16] [0A15F8A2607D1E9F] +14:01:33 ============================================================================ +14:01:33 + + +waiting on router queue for slot.... +14:01:33 Sending to : +14:01:33 ============================================================================ +14:01:33 ============================================================================ +14:01:33 Slot Id : <163> +14:01:33 Transaction Type : REQUEST +14:01:33 Received From : +14:01:33 ============================================================================ +14:01:33 FNo. Len. Field Value +14:01:33 ============================================================================ +14:01:33 [ 1] [ 4] [0200] +14:01:33 [ 2] [ 16] [6688990102133707] +14:01:33 [ 3] [ 6] [012000] +14:01:33 [ 4] [ 12] [000010000000] +14:01:33 [ 7] [ 10] [0320140128] +14:01:33 [ 11] [ 6] [764792] +14:01:33 [ 12] [ 6] [140128] +14:01:33 [ 13] [ 4] [0320] +14:01:33 [ 15] [ 4] [0320] +14:01:33 [ 18] [ 4] [6011] +14:01:33 [ 22] [ 3] [900] +14:01:33 [ 25] [ 2] [02] +14:01:33 [ 28] [ 9] [D00002000] +14:01:33 [ 32] [ 6] [621354] +14:01:33 [ 35] [ 37] [6688990102133707=42071231370759000000] +14:01:33 [ 37] [ 12] [507903058563] +14:01:33 [ 41] [ 8] [01008500] +14:01:33 [ 42] [ 15] [NATIVE ] +14:01:33 [ 43] [ 40] [MOF ChanthaboulyLAO] +14:01:33 [ 49] [ 3] [418] +14:01:33 [ 52] [ 16] [25CA25D88D074841] +14:01:33 ============================================================================ +14:01:33 + + +waiting on router queue for slot.... +14:01:33 Sending to : <4> +14:01:33 ============================================================================ +14:01:34 ============================================================================ +14:01:34 Slot Id : <163> +14:01:34 Transaction Type : RESPONSE +14:01:34 Received From : +14:01:34 ============================================================================ +14:01:34 FNo. Len. Field Value +14:01:34 ============================================================================ +14:01:34 [ 1] [ 4] [0210] +14:01:34 [ 2] [ 16] [6688990102133707] +14:01:34 [ 3] [ 6] [012000] +14:01:34 [ 4] [ 12] [000010000000] +14:01:34 [ 11] [ 6] [764792] +14:01:34 [ 12] [ 6] [140128] +14:01:34 [ 15] [ 4] [0320] +14:01:34 [ 18] [ 4] [6011] +14:01:34 [ 32] [ 6] [621354] +14:01:34 [ 35] [ 37] [6688990102133707=42071231370759000000] +14:01:34 [ 37] [ 12] [507903058563] +14:01:34 [ 38] [ 6] [717174] +14:01:34 [ 39] [ 2] [00] +14:01:34 [ 41] [ 8] [01008500] +14:01:34 [ 49] [ 3] [418] +14:01:34 [ 54] [ 20] [2002418C000239005540] +14:01:34 ============================================================================ +14:01:34 Sending to : +14:01:34 ============================================================================ +14:01:34 + + +waiting on router queue for slot.... +14:01:35 ============================================================================ +14:01:35 Slot Id : <163> +14:01:35 Transaction Type : RESPONSE +14:01:35 Received From : +14:01:35 ============================================================================ +14:01:35 FNo. Len. Field Value +14:01:35 ============================================================================ +14:01:35 [ 1] [ 4] [0210] +14:01:35 [ 2] [ 16] [6688990102133707] +14:01:35 [ 3] [ 6] [012000] +14:01:35 [ 4] [ 12] [000010000000] +14:01:35 [ 11] [ 6] [764792] +14:01:35 [ 12] [ 6] [140128] +14:01:35 [ 15] [ 4] [0320] +14:01:35 [ 18] [ 4] [6011] +14:01:35 [ 32] [ 6] [621354] +14:01:35 [ 35] [ 37] [6688990102133707=42071231370759000000] +14:01:35 [ 37] [ 12] [507903058563] +14:01:35 [ 38] [ 6] [717174] +14:01:35 [ 39] [ 2] [00] +14:01:35 [ 41] [ 8] [01008500] +14:01:35 [ 49] [ 3] [418] +14:01:35 [ 54] [ 20] [2002418C000239005540] +14:01:35 ============================================================================ +14:01:35 Calculate Source COMM Id = 0 +14:01:35 ============================================================================ +14:01:35 + + +waiting on router queue for slot.... +14:01:44 ============================================================================ +14:01:44 Slot Id : <179> +14:01:44 Transaction Type : REQUEST +14:01:44 Received From : +14:01:44 ============================================================================ +14:01:44 FNo. Len. Field Value +14:01:44 ============================================================================ +14:01:44 [ 1] [ 4] [0800] +14:01:44 [ 7] [ 10] [0320070050] +14:01:44 [ 11] [ 6] [156691] +14:01:44 [ 70] [ 3] [301] +14:01:44 ============================================================================ +14:01:44 + + +waiting on router queue for slot.... +14:01:44 Sending to : +14:01:44 ============================================================================ +14:01:44 ============================================================================ +14:01:44 Slot Id : <179> +14:01:44 Transaction Type : RESPONSE +14:01:44 Received From : +14:01:44 ============================================================================ +14:01:44 FNo. Len. Field Value +14:01:44 ============================================================================ +14:01:44 [ 1] [ 4] [0810] +14:01:44 [ 7] [ 10] [0320070050] +14:01:44 [ 11] [ 6] [156691] +14:01:44 [ 39] [ 2] [00] +14:01:44 [ 70] [ 3] [301] +14:01:44 ============================================================================ +14:01:44 Calculate Source COMM Id = 2 +14:01:44 ============================================================================ +14:01:44 + + +waiting on router queue for slot.... +14:01:46 ============================================================================ +14:01:46 Slot Id : <204> +14:01:46 Transaction Type : REQUEST +14:01:46 Received From : +14:01:46 ============================================================================ +14:01:46 FNo. Len. Field Value +14:01:46 ============================================================================ +14:01:46 [ 1] [ 4] [0800] +14:01:46 [ 2] [ 5] [02531] +14:01:46 [ 3] [ 6] [579148] +14:01:46 [ 7] [ 10] [0320070146] +14:01:46 [ 11] [ 6] [807226] +14:01:46 [ 15] [ 10] [0320070146] +14:01:46 [ 37] [ 11] [57914807226] +14:01:46 [ 70] [ 3] [001] +14:01:46 ============================================================================ +14:01:46 + + +waiting on router queue for slot.... +14:01:46 ============================================================================ +14:01:46 Slot Id : <204> +14:01:46 Transaction Type : RESPONSE +14:01:46 Received From : +14:01:46 ============================================================================ +14:01:46 FNo. Len. Field Value +14:01:46 ============================================================================ +14:01:46 [ 1] [ 4] [0810] +14:01:46 [ 7] [ 10] [0320070146] +14:01:46 [ 11] [ 6] [807226] +14:01:46 [ 15] [ 4] [0320] +14:01:46 [ 37] [ 12] [57914807226] +14:01:46 [ 39] [ 2] [00] +14:01:46 [ 70] [ 3] [001] +14:01:46 ============================================================================ +14:01:46 Sending to : +14:01:46 ============================================================================ +14:01:46 + + +waiting on router queue for slot.... +14:01:48 ============================================================================ +14:01:48 Slot Id : <135> +14:01:48 Transaction Type : REQUEST +14:01:48 Received From : +14:01:48 ============================================================================ +14:01:48 FNo. Len. Field Value +14:01:48 ============================================================================ +14:01:48 [ 1] [ 4] [0200] +14:01:48 [ 2] [ 16] [6688990103294904] +14:01:48 [ 3] [ 6] [011000] +14:01:48 [ 4] [ 12] [000100000000] +14:01:48 [ 7] [ 10] [0320140144] +14:01:48 [ 11] [ 6] [764842] +14:01:48 [ 12] [ 6] [140144] +14:01:48 [ 13] [ 4] [0320] +14:01:48 [ 15] [ 4] [0320] +14:01:48 [ 18] [ 4] [6011] +14:01:48 [ 22] [ 3] [900] +14:01:48 [ 25] [ 2] [02] +14:01:48 [ 28] [ 9] [D00002000] +14:01:48 [ 32] [ 6] [621354] +14:01:48 [ 35] [ 37] [6688990103294904=42121231490402100000] +14:01:48 [ 37] [ 12] [507903499476] +14:01:48 [ 41] [ 8] [06002200] +14:01:48 [ 42] [ 15] [NATIVE ] +14:01:48 [ 43] [ 40] [Beng Market Beng LAO] +14:01:48 [ 49] [ 3] [418] +14:01:48 [ 52] [ 16] [BE6C14461977657D] +14:01:48 ============================================================================ +14:01:48 + + +waiting on router queue for slot.... +14:01:48 Sending to : +14:01:48 ============================================================================ +14:01:48 Sending to : +14:01:48 ============================================================================ +14:01:49 ============================================================================ +14:01:49 Slot Id : <135> +14:01:49 Transaction Type : REQUEST +14:01:49 Received From : +14:01:49 ============================================================================ +14:01:49 FNo. Len. Field Value +14:01:49 ============================================================================ +14:01:49 [ 1] [ 4] [0200] +14:01:49 [ 2] [ 16] [6688990103294904] +14:01:49 [ 3] [ 6] [011000] +14:01:49 [ 4] [ 12] [000100000000] +14:01:49 [ 7] [ 10] [0320140144] +14:01:49 [ 11] [ 6] [764842] +14:01:49 [ 12] [ 6] [140144] +14:01:49 [ 13] [ 4] [0320] +14:01:49 [ 15] [ 4] [0320] +14:01:49 [ 18] [ 4] [6011] +14:01:49 [ 22] [ 3] [900] +14:01:49 [ 25] [ 2] [02] +14:01:49 [ 28] [ 9] [D00002000] +14:01:49 [ 32] [ 6] [621354] +14:01:49 [ 35] [ 37] [6688990103294904=42121231490402100000] +14:01:49 [ 37] [ 12] [507903499476] +14:01:49 [ 41] [ 8] [06002200] +14:01:49 [ 42] [ 15] [NATIVE ] +14:01:49 [ 43] [ 40] [Beng Market Beng LAO] +14:01:49 [ 49] [ 3] [418] +14:01:49 [ 52] [ 16] [BE6C14461977657D] +14:01:49 ============================================================================ +14:01:49 + + +waiting on router queue for slot.... +14:01:49 Sending to : +14:01:49 ============================================================================ +14:01:49 ============================================================================ +14:01:49 Slot Id : <135> +14:01:49 Transaction Type : REQUEST +14:01:49 Received From : +14:01:49 ============================================================================ +14:01:49 FNo. Len. Field Value +14:01:49 ============================================================================ +14:01:49 [ 1] [ 4] [0200] +14:01:49 [ 2] [ 16] [6688990103294904] +14:01:49 [ 3] [ 6] [011000] +14:01:49 [ 4] [ 12] [000100000000] +14:01:49 [ 7] [ 10] [0320140144] +14:01:49 [ 11] [ 6] [764842] +14:01:49 [ 12] [ 6] [140144] +14:01:49 [ 13] [ 4] [0320] +14:01:49 [ 15] [ 4] [0320] +14:01:49 [ 18] [ 4] [6011] +14:01:49 [ 22] [ 3] [900] +14:01:49 [ 25] [ 2] [02] +14:01:49 [ 28] [ 9] [D00002000] +14:01:49 [ 32] [ 6] [621354] +14:01:49 [ 35] [ 37] [6688990103294904=42121231490402100000] +14:01:49 [ 37] [ 12] [507903499476] +14:01:49 [ 41] [ 8] [06002200] +14:01:49 [ 42] [ 15] [NATIVE ] +14:01:49 [ 43] [ 40] [Beng Market Beng LAO] +14:01:49 [ 49] [ 3] [418] +14:01:49 [ 52] [ 16] [D682C01CB9CD286B] +14:01:49 ============================================================================ +14:01:49 + + +waiting on router queue for slot.... +14:01:49 Sending to : <4> +14:01:49 ============================================================================ +14:01:50 ============================================================================ +14:01:50 Slot Id : <135> +14:01:50 Transaction Type : RESPONSE +14:01:50 Received From : +14:01:50 ============================================================================ +14:01:50 FNo. Len. Field Value +14:01:50 ============================================================================ +14:01:50 [ 1] [ 4] [0210] +14:01:50 [ 2] [ 16] [6688990103294904] +14:01:50 [ 3] [ 6] [011000] +14:01:50 [ 4] [ 12] [000100000000] +14:01:50 [ 11] [ 6] [764842] +14:01:50 [ 12] [ 6] [140144] +14:01:50 [ 15] [ 4] [0320] +14:01:50 [ 18] [ 4] [6011] +14:01:50 [ 32] [ 6] [621354] +14:01:50 [ 35] [ 37] [6688990103294904=42121231490402100000] +14:01:50 [ 37] [ 12] [507903499476] +14:01:50 [ 38] [ 6] [650886] +14:01:50 [ 39] [ 2] [00] +14:01:50 [ 41] [ 8] [06002200] +14:01:50 [ 49] [ 3] [418] +14:01:50 [ 54] [ 20] [1002418C000060977552] +14:01:50 ============================================================================ +14:01:50 Sending to : +14:01:50 ============================================================================ +14:01:50 + + +waiting on router queue for slot.... +14:01:51 ============================================================================ +14:01:51 Slot Id : <135> +14:01:51 Transaction Type : RESPONSE +14:01:51 Received From : +14:01:51 ============================================================================ +14:01:51 FNo. Len. Field Value +14:01:51 ============================================================================ +14:01:51 [ 1] [ 4] [0210] +14:01:51 [ 2] [ 16] [6688990103294904] +14:01:51 [ 3] [ 6] [011000] +14:01:51 [ 4] [ 12] [000100000000] +14:01:51 [ 11] [ 6] [764842] +14:01:51 [ 12] [ 6] [140144] +14:01:51 [ 15] [ 4] [0320] +14:01:51 [ 18] [ 4] [6011] +14:01:51 [ 32] [ 6] [621354] +14:01:51 [ 35] [ 37] [6688990103294904=42121231490402100000] +14:01:51 [ 37] [ 12] [507903499476] +14:01:51 [ 38] [ 6] [650886] +14:01:51 [ 39] [ 2] [00] +14:01:51 [ 41] [ 8] [06002200] +14:01:51 [ 49] [ 3] [418] +14:01:51 [ 54] [ 20] [1002418C000060977552] +14:01:51 ============================================================================ +14:01:51 Calculate Source COMM Id = 0 +14:01:51 ============================================================================ +14:01:51 + + +waiting on router queue for slot.... +14:01:55 ============================================================================ +14:01:55 Slot Id : <152> +14:01:55 Transaction Type : REQUEST +14:01:55 Received From : +14:01:55 ============================================================================ +14:01:55 FNo. Len. Field Value +14:01:55 ============================================================================ +14:01:55 [ 1] [ 4] [0200] +14:01:55 [ 2] [ 16] [6213545000785885] +14:01:55 [ 3] [ 6] [010000] +14:01:55 [ 4] [ 12] [000100000000] +14:01:55 [ 7] [ 10] [0320070101] +14:01:55 [ 11] [ 6] [269488] +14:01:55 [ 12] [ 6] [140101] +14:01:55 [ 13] [ 4] [0320] +14:01:55 [ 14] [ 4] [4912] +14:01:55 [ 15] [ 4] [0320] +14:01:55 [ 18] [ 4] [6011] +14:01:55 [ 19] [ 3] [418] +14:01:55 [ 22] [ 3] [021] +14:01:55 [ 25] [ 2] [01] +14:01:55 [ 28] [ 9] [D00002000] +14:01:55 [ 32] [ 6] [180893] +14:01:55 [ 35] [ 32] [6213545000785885=491212018588724] +14:01:55 [ 37] [ 12] [507907269488] +14:01:55 [ 41] [ 8] [0525XYBT] +14:01:55 [ 42] [ 15] [999999 ] +14:01:55 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:01:55 [ 49] [ 3] [418] +14:01:55 [ 52] [ 16] [DD23B35EAA88CE95] +14:01:55 ============================================================================ +14:01:55 + + +waiting on router queue for slot.... +14:01:55 Sending to : +14:01:55 ============================================================================ +14:01:55 Sending to : +14:01:55 ============================================================================ +14:01:56 ============================================================================ +14:01:56 Slot Id : <152> +14:01:56 Transaction Type : REQUEST +14:01:56 Received From : +14:01:56 ============================================================================ +14:01:56 FNo. Len. Field Value +14:01:56 ============================================================================ +14:01:56 [ 1] [ 4] [0200] +14:01:56 [ 2] [ 16] [6213545000785885] +14:01:56 [ 3] [ 6] [010000] +14:01:56 [ 4] [ 12] [000100000000] +14:01:56 [ 7] [ 10] [0320070101] +14:01:56 [ 11] [ 6] [269488] +14:01:56 [ 12] [ 6] [140101] +14:01:56 [ 13] [ 4] [0320] +14:01:56 [ 14] [ 4] [4912] +14:01:56 [ 15] [ 4] [0320] +14:01:56 [ 18] [ 4] [6011] +14:01:56 [ 19] [ 3] [418] +14:01:56 [ 22] [ 3] [021] +14:01:56 [ 25] [ 2] [01] +14:01:56 [ 28] [ 9] [D00002000] +14:01:56 [ 32] [ 6] [180893] +14:01:56 [ 35] [ 32] [6213545000785885=491212018588724] +14:01:56 [ 37] [ 12] [507907269488] +14:01:56 [ 41] [ 8] [0525XYBT] +14:01:56 [ 42] [ 15] [999999 ] +14:01:56 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:01:56 [ 49] [ 3] [418] +14:01:56 [ 52] [ 16] [DD23B35EAA88CE95] +14:01:56 ============================================================================ +14:01:56 + + +waiting on router queue for slot.... +14:01:56 Sending to : +14:01:56 ============================================================================ +14:01:56 ============================================================================ +14:01:56 Slot Id : <152> +14:01:56 Transaction Type : REQUEST +14:01:56 Received From : +14:01:56 ============================================================================ +14:01:56 FNo. Len. Field Value +14:01:56 ============================================================================ +14:01:56 [ 1] [ 4] [0200] +14:01:56 [ 2] [ 16] [6213545000785885] +14:01:56 [ 3] [ 6] [010000] +14:01:56 [ 4] [ 12] [000100000000] +14:01:56 [ 7] [ 10] [0320070101] +14:01:56 [ 11] [ 6] [269488] +14:01:56 [ 12] [ 6] [140101] +14:01:56 [ 13] [ 4] [0320] +14:01:56 [ 14] [ 4] [4912] +14:01:56 [ 15] [ 4] [0320] +14:01:56 [ 18] [ 4] [6011] +14:01:56 [ 19] [ 3] [418] +14:01:56 [ 22] [ 3] [021] +14:01:56 [ 25] [ 2] [01] +14:01:56 [ 28] [ 9] [D00002000] +14:01:56 [ 32] [ 6] [180893] +14:01:56 [ 35] [ 32] [6213545000785885=491212018588724] +14:01:56 [ 37] [ 12] [507907269488] +14:01:56 [ 41] [ 8] [0525XYBT] +14:01:56 [ 42] [ 15] [999999 ] +14:01:56 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:01:56 [ 49] [ 3] [418] +14:01:56 [ 52] [ 16] [C76BFA22696C5E74] +14:01:56 ============================================================================ +14:01:56 + + +waiting on router queue for slot.... +14:01:56 Sending to : <0> +14:01:56 ============================================================================ +14:01:56 ============================================================================ +14:01:56 Slot Id : <152> +14:01:56 Transaction Type : RESPONSE +14:01:56 Received From : +14:01:56 ============================================================================ +14:01:56 FNo. Len. Field Value +14:01:56 ============================================================================ +14:01:56 [ 1] [ 4] [0210] +14:01:56 [ 2] [ 16] [6213545000785885] +14:01:56 [ 3] [ 6] [010000] +14:01:56 [ 4] [ 12] [000100000000] +14:01:56 [ 7] [ 10] [0320070101] +14:01:56 [ 11] [ 6] [269488] +14:01:56 [ 12] [ 6] [140101] +14:01:56 [ 13] [ 4] [0320] +14:01:56 [ 15] [ 4] [0320] +14:01:56 [ 18] [ 4] [6011] +14:01:56 [ 19] [ 3] [418] +14:01:56 [ 32] [ 6] [180893] +14:01:56 [ 35] [ 32] [6213545000785885=491212018588724] +14:01:56 [ 37] [ 12] [507907269488] +14:01:56 [ 38] [ 6] [589397] +14:01:56 [ 39] [ 2] [00] +14:01:56 [ 41] [ 8] [0525XYBT] +14:01:56 [ 49] [ 3] [418] +14:01:56 [ 54] [ 40] [0001418C0000910830940002418C000091083094] +14:01:56 ============================================================================ +14:01:56 Sending to : +14:01:56 ============================================================================ +14:01:56 + + +waiting on router queue for slot.... +14:01:57 ============================================================================ +14:01:57 Slot Id : <192> +14:01:57 Transaction Type : REQUEST +14:01:57 Received From : +14:01:57 ============================================================================ +14:01:57 FNo. Len. Field Value +14:01:57 ============================================================================ +14:01:57 [ 1] [ 4] [0800] +14:01:57 [ 7] [ 10] [0320070105] +14:01:57 [ 11] [ 6] [156692] +14:01:57 [ 70] [ 3] [301] +14:01:57 ============================================================================ +14:01:57 + + +waiting on router queue for slot.... +14:01:57 Sending to : +14:01:57 ============================================================================ +14:01:57 ============================================================================ +14:01:57 Slot Id : <192> +14:01:57 Transaction Type : RESPONSE +14:01:57 Received From : +14:01:57 ============================================================================ +14:01:57 FNo. Len. Field Value +14:01:57 ============================================================================ +14:01:57 [ 1] [ 4] [0810] +14:01:57 [ 7] [ 10] [0320070105] +14:01:57 [ 11] [ 6] [156692] +14:01:57 [ 39] [ 2] [00] +14:01:57 [ 70] [ 3] [301] +14:01:57 ============================================================================ +14:01:57 Calculate Source COMM Id = 2 +14:01:57 ============================================================================ +14:01:57 + + +waiting on router queue for slot.... +14:01:58 ============================================================================ +14:01:58 Slot Id : <152> +14:01:58 Transaction Type : RESPONSE +14:01:58 Received From : +14:01:58 ============================================================================ +14:01:58 FNo. Len. Field Value +14:01:58 ============================================================================ +14:01:58 [ 1] [ 4] [0210] +14:01:58 [ 2] [ 16] [6213545000785885] +14:01:58 [ 3] [ 6] [010000] +14:01:58 [ 4] [ 12] [000100000000] +14:01:58 [ 7] [ 10] [0320070101] +14:01:58 [ 11] [ 6] [269488] +14:01:58 [ 12] [ 6] [140101] +14:01:58 [ 13] [ 4] [0320] +14:01:58 [ 15] [ 4] [0320] +14:01:58 [ 18] [ 4] [6011] +14:01:58 [ 19] [ 3] [418] +14:01:58 [ 32] [ 6] [180893] +14:01:58 [ 35] [ 32] [6213545000785885=491212018588724] +14:01:58 [ 37] [ 12] [507907269488] +14:01:58 [ 38] [ 6] [589397] +14:01:58 [ 39] [ 2] [00] +14:01:58 [ 41] [ 8] [0525XYBT] +14:01:58 [ 49] [ 3] [418] +14:01:58 [ 54] [ 40] [0001418C0000910830940002418C000091083094] +14:01:58 ============================================================================ +14:01:58 Calculate Source COMM Id = 2 +14:01:58 ============================================================================ +14:01:58 + + +waiting on router queue for slot.... +14:02:04 ============================================================================ +14:02:04 Slot Id : <191> +14:02:04 Transaction Type : REQUEST +14:02:04 Received From : +14:02:04 ============================================================================ +14:02:04 FNo. Len. Field Value +14:02:04 ============================================================================ +14:02:04 [ 1] [ 4] [0200] +14:02:04 [ 2] [ 16] [6213545000020085] +14:02:04 [ 3] [ 6] [010000] +14:02:04 [ 4] [ 12] [000100000000] +14:02:04 [ 7] [ 10] [0320070110] +14:02:04 [ 11] [ 6] [269491] +14:02:04 [ 12] [ 6] [140110] +14:02:04 [ 13] [ 4] [0320] +14:02:04 [ 14] [ 4] [4912] +14:02:04 [ 15] [ 4] [0320] +14:02:04 [ 18] [ 4] [6011] +14:02:04 [ 19] [ 3] [418] +14:02:04 [ 22] [ 3] [021] +14:02:04 [ 25] [ 2] [01] +14:02:04 [ 28] [ 9] [D00002000] +14:02:04 [ 32] [ 6] [180893] +14:02:04 [ 35] [ 32] [6213545000020085=491212012008973] +14:02:04 [ 37] [ 12] [507907269491] +14:02:04 [ 41] [ 8] [0111BLBR] +14:02:04 [ 42] [ 15] [999999 ] +14:02:04 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:02:04 [ 49] [ 3] [418] +14:02:04 [ 52] [ 16] [6ECED5D19342B253] +14:02:04 ============================================================================ +14:02:04 + + +waiting on router queue for slot.... +14:02:04 Sending to : +14:02:04 ============================================================================ +14:02:04 Sending to : +14:02:04 ============================================================================ +14:02:04 ============================================================================ +14:02:04 Slot Id : <190> +14:02:04 Transaction Type : REQUEST +14:02:04 Received From : +14:02:04 ============================================================================ +14:02:04 FNo. Len. Field Value +14:02:04 ============================================================================ +14:02:04 [ 1] [ 4] [0200] +14:02:04 [ 2] [ 16] [6213544001785358] +14:02:04 [ 3] [ 6] [010000] +14:02:04 [ 4] [ 12] [000030000000] +14:02:04 [ 7] [ 10] [0320140951] +14:02:04 [ 11] [ 6] [240847] +14:02:04 [ 12] [ 6] [140951] +14:02:04 [ 13] [ 4] [0320] +14:02:04 [ 14] [ 4] [4912] +14:02:04 [ 15] [ 4] [0320] +14:02:04 [ 18] [ 4] [6011] +14:02:04 [ 22] [ 3] [900] +14:02:04 [ 25] [ 2] [02] +14:02:04 [ 28] [ 9] [D00002000] +14:02:04 [ 32] [ 6] [220699] +14:02:04 [ 35] [ 32] [6213544001785358=491212018535361] +14:02:04 [ 37] [ 12] [507900410441] +14:02:04 [ 41] [ 8] [08000300] +14:02:04 [ 42] [ 15] [APTRA ] +14:02:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:02:04 [ 49] [ 3] [418] +14:02:04 [ 52] [ 16] [3583FC3DE93F2A10] +14:02:04 ============================================================================ +14:02:04 + + +waiting on router queue for slot.... +14:02:04 Sending to : +14:02:04 ============================================================================ +14:02:04 Sending to : +14:02:04 ============================================================================ +14:02:04 ============================================================================ +14:02:04 Slot Id : <191> +14:02:04 Transaction Type : REQUEST +14:02:04 Received From : +14:02:04 ============================================================================ +14:02:04 FNo. Len. Field Value +14:02:04 ============================================================================ +14:02:04 [ 1] [ 4] [0200] +14:02:04 [ 2] [ 16] [6213545000020085] +14:02:04 [ 3] [ 6] [010000] +14:02:04 [ 4] [ 12] [000100000000] +14:02:04 [ 7] [ 10] [0320070110] +14:02:04 [ 11] [ 6] [269491] +14:02:04 [ 12] [ 6] [140110] +14:02:04 [ 13] [ 4] [0320] +14:02:04 [ 14] [ 4] [4912] +14:02:04 [ 15] [ 4] [0320] +14:02:04 [ 18] [ 4] [6011] +14:02:04 [ 19] [ 3] [418] +14:02:04 [ 22] [ 3] [021] +14:02:04 [ 25] [ 2] [01] +14:02:04 [ 28] [ 9] [D00002000] +14:02:04 [ 32] [ 6] [180893] +14:02:04 [ 35] [ 32] [6213545000020085=491212012008973] +14:02:04 [ 37] [ 12] [507907269491] +14:02:04 [ 41] [ 8] [0111BLBR] +14:02:04 [ 42] [ 15] [999999 ] +14:02:04 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:02:04 [ 49] [ 3] [418] +14:02:04 [ 52] [ 16] [6ECED5D19342B253] +14:02:04 ============================================================================ +14:02:04 + + +waiting on router queue for slot.... +14:02:04 Sending to : +14:02:04 ============================================================================ +14:02:04 ============================================================================ +14:02:04 Slot Id : <191> +14:02:04 Transaction Type : REQUEST +14:02:04 Received From : +14:02:04 ============================================================================ +14:02:04 FNo. Len. Field Value +14:02:04 ============================================================================ +14:02:04 [ 1] [ 4] [0200] +14:02:04 [ 2] [ 16] [6213545000020085] +14:02:04 [ 3] [ 6] [010000] +14:02:04 [ 4] [ 12] [000100000000] +14:02:04 [ 7] [ 10] [0320070110] +14:02:04 [ 11] [ 6] [269491] +14:02:04 [ 12] [ 6] [140110] +14:02:04 [ 13] [ 4] [0320] +14:02:04 [ 14] [ 4] [4912] +14:02:04 [ 15] [ 4] [0320] +14:02:04 [ 18] [ 4] [6011] +14:02:04 [ 19] [ 3] [418] +14:02:04 [ 22] [ 3] [021] +14:02:04 [ 25] [ 2] [01] +14:02:04 [ 28] [ 9] [D00002000] +14:02:04 [ 32] [ 6] [180893] +14:02:04 [ 35] [ 32] [6213545000020085=491212012008973] +14:02:04 [ 37] [ 12] [507907269491] +14:02:04 [ 41] [ 8] [0111BLBR] +14:02:04 [ 42] [ 15] [999999 ] +14:02:04 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:02:04 [ 49] [ 3] [418] +14:02:04 [ 52] [ 16] [FC7CECC754804787] +14:02:04 ============================================================================ +14:02:04 + + +waiting on router queue for slot.... +14:02:04 Sending to : <0> +14:02:04 ============================================================================ +14:02:04 ============================================================================ +14:02:04 Slot Id : <190> +14:02:04 Transaction Type : REQUEST +14:02:04 Received From : +14:02:04 ============================================================================ +14:02:04 FNo. Len. Field Value +14:02:04 ============================================================================ +14:02:04 [ 1] [ 4] [0200] +14:02:04 [ 2] [ 16] [6213544001785358] +14:02:04 [ 3] [ 6] [010000] +14:02:04 [ 4] [ 12] [000030000000] +14:02:04 [ 7] [ 10] [0320140951] +14:02:04 [ 11] [ 6] [240847] +14:02:04 [ 12] [ 6] [140951] +14:02:04 [ 13] [ 4] [0320] +14:02:04 [ 14] [ 4] [4912] +14:02:04 [ 15] [ 4] [0320] +14:02:04 [ 18] [ 4] [6011] +14:02:04 [ 22] [ 3] [900] +14:02:04 [ 25] [ 2] [02] +14:02:04 [ 28] [ 9] [D00002000] +14:02:04 [ 32] [ 6] [220699] +14:02:04 [ 35] [ 32] [6213544001785358=491212018535361] +14:02:04 [ 37] [ 12] [507900410441] +14:02:04 [ 41] [ 8] [08000300] +14:02:04 [ 42] [ 15] [APTRA ] +14:02:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:02:04 [ 49] [ 3] [418] +14:02:04 [ 52] [ 16] [3583FC3DE93F2A10] +14:02:04 ============================================================================ +14:02:04 + + +waiting on router queue for slot.... +14:02:04 Sending to : +14:02:04 ============================================================================ +14:02:04 ============================================================================ +14:02:04 Slot Id : <190> +14:02:04 Transaction Type : REQUEST +14:02:04 Received From : +14:02:04 ============================================================================ +14:02:04 FNo. Len. Field Value +14:02:04 ============================================================================ +14:02:04 [ 1] [ 4] [0200] +14:02:04 [ 2] [ 16] [6213544001785358] +14:02:04 [ 3] [ 6] [010000] +14:02:04 [ 4] [ 12] [000030000000] +14:02:04 [ 7] [ 10] [0320140951] +14:02:04 [ 11] [ 6] [240847] +14:02:04 [ 12] [ 6] [140951] +14:02:04 [ 13] [ 4] [0320] +14:02:04 [ 14] [ 4] [4912] +14:02:04 [ 15] [ 4] [0320] +14:02:04 [ 18] [ 4] [6011] +14:02:04 [ 22] [ 3] [900] +14:02:04 [ 25] [ 2] [02] +14:02:04 [ 28] [ 9] [D00002000] +14:02:04 [ 32] [ 6] [220699] +14:02:04 [ 35] [ 32] [6213544001785358=491212018535361] +14:02:04 [ 37] [ 12] [507900410441] +14:02:04 [ 41] [ 8] [08000300] +14:02:04 [ 42] [ 15] [APTRA ] +14:02:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:02:04 [ 49] [ 3] [418] +14:02:04 [ 52] [ 16] [344108BA46795077] +14:02:04 ============================================================================ +14:02:04 + + +waiting on router queue for slot.... +14:02:04 Sending to : <0> +14:02:04 ============================================================================ +14:02:05 ============================================================================ +14:02:05 Slot Id : <191> +14:02:05 Transaction Type : RESPONSE +14:02:05 Received From : +14:02:05 ============================================================================ +14:02:05 FNo. Len. Field Value +14:02:05 ============================================================================ +14:02:05 [ 1] [ 4] [0210] +14:02:05 [ 2] [ 16] [6213545000020085] +14:02:05 [ 3] [ 6] [010000] +14:02:05 [ 4] [ 12] [000100000000] +14:02:05 [ 7] [ 10] [0320070110] +14:02:05 [ 11] [ 6] [269491] +14:02:05 [ 12] [ 6] [140110] +14:02:05 [ 13] [ 4] [0320] +14:02:05 [ 15] [ 4] [0320] +14:02:05 [ 18] [ 4] [6011] +14:02:05 [ 19] [ 3] [418] +14:02:05 [ 32] [ 6] [180893] +14:02:05 [ 35] [ 32] [6213545000020085=491212012008973] +14:02:05 [ 37] [ 12] [507907269491] +14:02:05 [ 38] [ 6] [083545] +14:02:05 [ 39] [ 2] [00] +14:02:05 [ 41] [ 8] [0111BLBR] +14:02:05 [ 49] [ 3] [418] +14:02:05 [ 54] [ 40] [0001418C0017675450570002418C001767545057] +14:02:05 ============================================================================ +14:02:05 Sending to : +14:02:05 ============================================================================ +14:02:05 + + +waiting on router queue for slot.... +14:02:05 ============================================================================ +14:02:05 Slot Id : <190> +14:02:05 Transaction Type : RESPONSE +14:02:05 Received From : +14:02:05 ============================================================================ +14:02:05 FNo. Len. Field Value +14:02:05 ============================================================================ +14:02:05 [ 1] [ 4] [0210] +14:02:05 [ 2] [ 16] [6213544001785358] +14:02:05 [ 3] [ 6] [010000] +14:02:05 [ 4] [ 12] [000030000000] +14:02:05 [ 7] [ 10] [0320140951] +14:02:05 [ 11] [ 6] [240847] +14:02:05 [ 12] [ 6] [140951] +14:02:05 [ 13] [ 4] [0320] +14:02:05 [ 15] [ 4] [0320] +14:02:05 [ 18] [ 4] [6011] +14:02:05 [ 32] [ 6] [220699] +14:02:05 [ 35] [ 32] [6213544001785358=491212018535361] +14:02:05 [ 37] [ 12] [507900410441] +14:02:05 [ 38] [ 6] [200163] +14:02:05 [ 39] [ 2] [00] +14:02:05 [ 41] [ 8] [08000300] +14:02:05 [ 49] [ 3] [418] +14:02:05 [ 54] [ 40] [0001418C0004890680810002418C000489068081] +14:02:05 ============================================================================ +14:02:05 Sending to : +14:02:05 ============================================================================ +14:02:05 + + +waiting on router queue for slot.... +14:02:06 ============================================================================ +14:02:06 Slot Id : <191> +14:02:06 Transaction Type : RESPONSE +14:02:06 Received From : +14:02:06 ============================================================================ +14:02:06 FNo. Len. Field Value +14:02:06 ============================================================================ +14:02:06 [ 1] [ 4] [0210] +14:02:06 [ 2] [ 16] [6213545000020085] +14:02:06 [ 3] [ 6] [010000] +14:02:06 [ 4] [ 12] [000100000000] +14:02:06 [ 7] [ 10] [0320070110] +14:02:06 [ 11] [ 6] [269491] +14:02:06 [ 12] [ 6] [140110] +14:02:06 [ 13] [ 4] [0320] +14:02:06 [ 15] [ 4] [0320] +14:02:06 [ 18] [ 4] [6011] +14:02:06 [ 19] [ 3] [418] +14:02:06 [ 32] [ 6] [180893] +14:02:06 [ 35] [ 32] [6213545000020085=491212012008973] +14:02:06 [ 37] [ 12] [507907269491] +14:02:06 [ 38] [ 6] [083545] +14:02:06 [ 39] [ 2] [00] +14:02:06 [ 41] [ 8] [0111BLBR] +14:02:06 [ 49] [ 3] [418] +14:02:06 [ 54] [ 40] [0001418C0017675450570002418C001767545057] +14:02:06 ============================================================================ +14:02:06 Calculate Source COMM Id = 2 +14:02:06 ============================================================================ +14:02:06 + + +waiting on router queue for slot.... +14:02:08 ============================================================================ +14:02:08 Slot Id : <190> +14:02:08 Transaction Type : RESPONSE +14:02:08 Received From : +14:02:08 ============================================================================ +14:02:08 FNo. Len. Field Value +14:02:08 ============================================================================ +14:02:08 [ 1] [ 4] [0210] +14:02:08 [ 2] [ 16] [6213544001785358] +14:02:08 [ 3] [ 6] [010000] +14:02:08 [ 4] [ 12] [000030000000] +14:02:08 [ 7] [ 10] [0320140951] +14:02:08 [ 11] [ 6] [240847] +14:02:08 [ 12] [ 6] [140951] +14:02:08 [ 13] [ 4] [0320] +14:02:08 [ 15] [ 4] [0320] +14:02:08 [ 18] [ 4] [6011] +14:02:08 [ 32] [ 6] [220699] +14:02:08 [ 35] [ 32] [6213544001785358=491212018535361] +14:02:08 [ 37] [ 12] [507900410441] +14:02:08 [ 38] [ 6] [200163] +14:02:08 [ 39] [ 2] [00] +14:02:08 [ 41] [ 8] [08000300] +14:02:08 [ 49] [ 3] [418] +14:02:08 [ 54] [ 40] [0001418C0004890680810002418C000489068081] +14:02:08 ============================================================================ +14:02:08 Calculate Source COMM Id = 1 +14:02:08 ============================================================================ +14:02:08 + + +waiting on router queue for slot.... +14:02:19 ============================================================================ +14:02:19 Slot Id : <196> +14:02:19 Transaction Type : REQUEST +14:02:19 Received From : +14:02:19 ============================================================================ +14:02:19 FNo. Len. Field Value +14:02:19 ============================================================================ +14:02:19 [ 1] [ 4] [0800] +14:02:19 [ 7] [ 10] [0320070126] +14:02:19 [ 11] [ 6] [156693] +14:02:19 [ 70] [ 3] [301] +14:02:19 ============================================================================ +14:02:19 + + +waiting on router queue for slot.... +14:02:19 Sending to : +14:02:19 ============================================================================ +14:02:19 ============================================================================ +14:02:19 Slot Id : <196> +14:02:19 Transaction Type : RESPONSE +14:02:19 Received From : +14:02:19 ============================================================================ +14:02:19 FNo. Len. Field Value +14:02:19 ============================================================================ +14:02:19 [ 1] [ 4] [0810] +14:02:19 [ 7] [ 10] [0320070126] +14:02:19 [ 11] [ 6] [156693] +14:02:19 [ 39] [ 2] [00] +14:02:19 [ 70] [ 3] [301] +14:02:19 ============================================================================ +14:02:19 Calculate Source COMM Id = 2 +14:02:19 ============================================================================ +14:02:19 + + +waiting on router queue for slot.... +14:02:19 ============================================================================ +14:02:19 Slot Id : <155> +14:02:19 Transaction Type : REQUEST +14:02:19 Received From : +14:02:19 ============================================================================ +14:02:19 FNo. Len. Field Value +14:02:19 ============================================================================ +14:02:19 [ 1] [ 4] [0200] +14:02:19 [ 2] [ 16] [6213544000282522] +14:02:19 [ 3] [ 6] [011000] +14:02:19 [ 4] [ 12] [000100000000] +14:02:19 [ 7] [ 10] [0320141007] +14:02:19 [ 11] [ 6] [274798] +14:02:19 [ 12] [ 6] [141007] +14:02:19 [ 13] [ 4] [0320] +14:02:19 [ 14] [ 4] [4912] +14:02:19 [ 15] [ 4] [0320] +14:02:19 [ 18] [ 4] [6011] +14:02:19 [ 22] [ 3] [900] +14:02:19 [ 25] [ 2] [02] +14:02:19 [ 28] [ 9] [D00002000] +14:02:19 [ 32] [ 6] [220699] +14:02:19 [ 35] [ 32] [6213544000282522=491212018252648] +14:02:19 [ 37] [ 12] [507900057298] +14:02:19 [ 41] [ 8] [01000500] +14:02:19 [ 42] [ 15] [APTRA ] +14:02:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:02:19 [ 49] [ 3] [418] +14:02:19 [ 52] [ 16] [D0B8E4C505713A81] +14:02:19 ============================================================================ +14:02:19 + + +waiting on router queue for slot.... +14:02:19 Sending to : +14:02:19 ============================================================================ +14:02:19 Sending to : +14:02:19 ============================================================================ +14:02:20 ============================================================================ +14:02:20 Slot Id : <155> +14:02:20 Transaction Type : REQUEST +14:02:20 Received From : +14:02:20 ============================================================================ +14:02:20 FNo. Len. Field Value +14:02:20 ============================================================================ +14:02:20 [ 1] [ 4] [0200] +14:02:20 [ 2] [ 16] [6213544000282522] +14:02:20 [ 3] [ 6] [011000] +14:02:20 [ 4] [ 12] [000100000000] +14:02:20 [ 7] [ 10] [0320141007] +14:02:20 [ 11] [ 6] [274798] +14:02:20 [ 12] [ 6] [141007] +14:02:20 [ 13] [ 4] [0320] +14:02:20 [ 14] [ 4] [4912] +14:02:20 [ 15] [ 4] [0320] +14:02:20 [ 18] [ 4] [6011] +14:02:20 [ 22] [ 3] [900] +14:02:20 [ 25] [ 2] [02] +14:02:20 [ 28] [ 9] [D00002000] +14:02:20 [ 32] [ 6] [220699] +14:02:20 [ 35] [ 32] [6213544000282522=491212018252648] +14:02:20 [ 37] [ 12] [507900057298] +14:02:20 [ 41] [ 8] [01000500] +14:02:20 [ 42] [ 15] [APTRA ] +14:02:20 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:02:20 [ 49] [ 3] [418] +14:02:20 [ 52] [ 16] [D0B8E4C505713A81] +14:02:20 ============================================================================ +14:02:20 + + +waiting on router queue for slot.... +14:02:20 Sending to : +14:02:20 ============================================================================ +14:02:20 ============================================================================ +14:02:20 Slot Id : <155> +14:02:20 Transaction Type : REQUEST +14:02:20 Received From : +14:02:20 ============================================================================ +14:02:20 FNo. Len. Field Value +14:02:20 ============================================================================ +14:02:20 [ 1] [ 4] [0200] +14:02:20 [ 2] [ 16] [6213544000282522] +14:02:20 [ 3] [ 6] [011000] +14:02:20 [ 4] [ 12] [000100000000] +14:02:20 [ 7] [ 10] [0320141007] +14:02:20 [ 11] [ 6] [274798] +14:02:20 [ 12] [ 6] [141007] +14:02:20 [ 13] [ 4] [0320] +14:02:20 [ 14] [ 4] [4912] +14:02:20 [ 15] [ 4] [0320] +14:02:20 [ 18] [ 4] [6011] +14:02:20 [ 22] [ 3] [900] +14:02:20 [ 25] [ 2] [02] +14:02:20 [ 28] [ 9] [D00002000] +14:02:20 [ 32] [ 6] [220699] +14:02:20 [ 35] [ 32] [6213544000282522=491212018252648] +14:02:20 [ 37] [ 12] [507900057298] +14:02:20 [ 41] [ 8] [01000500] +14:02:20 [ 42] [ 15] [APTRA ] +14:02:20 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:02:20 [ 49] [ 3] [418] +14:02:20 [ 52] [ 16] [ACF5D648A904ED5D] +14:02:20 ============================================================================ +14:02:20 + + +waiting on router queue for slot.... +14:02:20 Sending to : <0> +14:02:20 ============================================================================ +14:02:20 ============================================================================ +14:02:20 Slot Id : <155> +14:02:20 Transaction Type : RESPONSE +14:02:20 Received From : +14:02:20 ============================================================================ +14:02:20 FNo. Len. Field Value +14:02:20 ============================================================================ +14:02:20 [ 1] [ 4] [0210] +14:02:20 [ 2] [ 16] [6213544000282522] +14:02:20 [ 3] [ 6] [011000] +14:02:20 [ 4] [ 12] [000100000000] +14:02:20 [ 7] [ 10] [0320141007] +14:02:20 [ 11] [ 6] [274798] +14:02:20 [ 12] [ 6] [141007] +14:02:20 [ 13] [ 4] [0320] +14:02:20 [ 15] [ 4] [0320] +14:02:20 [ 18] [ 4] [6011] +14:02:20 [ 32] [ 6] [220699] +14:02:20 [ 35] [ 32] [6213544000282522=491212018252648] +14:02:20 [ 37] [ 12] [507900057298] +14:02:20 [ 38] [ 6] [624451] +14:02:20 [ 39] [ 2] [00] +14:02:20 [ 41] [ 8] [01000500] +14:02:20 [ 49] [ 3] [418] +14:02:20 [ 54] [ 40] [1001418C0006085330251002418C000608533025] +14:02:20 ============================================================================ +14:02:20 Sending to : +14:02:20 ============================================================================ +14:02:20 + + +waiting on router queue for slot.... +14:02:22 ============================================================================ +14:02:22 Slot Id : <155> +14:02:22 Transaction Type : RESPONSE +14:02:22 Received From : +14:02:22 ============================================================================ +14:02:22 FNo. Len. Field Value +14:02:22 ============================================================================ +14:02:22 [ 1] [ 4] [0210] +14:02:22 [ 2] [ 16] [6213544000282522] +14:02:22 [ 3] [ 6] [011000] +14:02:22 [ 4] [ 12] [000100000000] +14:02:22 [ 7] [ 10] [0320141007] +14:02:22 [ 11] [ 6] [274798] +14:02:22 [ 12] [ 6] [141007] +14:02:22 [ 13] [ 4] [0320] +14:02:22 [ 15] [ 4] [0320] +14:02:22 [ 18] [ 4] [6011] +14:02:22 [ 32] [ 6] [220699] +14:02:22 [ 35] [ 32] [6213544000282522=491212018252648] +14:02:22 [ 37] [ 12] [507900057298] +14:02:22 [ 38] [ 6] [624451] +14:02:22 [ 39] [ 2] [00] +14:02:22 [ 41] [ 8] [01000500] +14:02:22 [ 49] [ 3] [418] +14:02:22 [ 54] [ 40] [1001418C0006085330251002418C000608533025] +14:02:22 ============================================================================ +14:02:22 Calculate Source COMM Id = 1 +14:02:22 ============================================================================ +14:02:22 + + +waiting on router queue for slot.... +14:02:24 ============================================================================ +14:02:24 Slot Id : <198> +14:02:24 Transaction Type : REQUEST +14:02:24 Received From : +14:02:24 ============================================================================ +14:02:24 FNo. Len. Field Value +14:02:24 ============================================================================ +14:02:24 [ 1] [ 4] [0200] +14:02:24 [ 2] [ 16] [1808931800004945] +14:02:24 [ 3] [ 6] [301000] +14:02:24 [ 4] [ 12] [000000000000] +14:02:24 [ 7] [ 10] [0320140219] +14:02:24 [ 11] [ 6] [764956] +14:02:24 [ 12] [ 6] [140219] +14:02:24 [ 13] [ 4] [0320] +14:02:24 [ 15] [ 4] [0320] +14:02:24 [ 18] [ 4] [6011] +14:02:24 [ 22] [ 3] [900] +14:02:24 [ 25] [ 2] [02] +14:02:24 [ 28] [ 9] [D00000000] +14:02:24 [ 32] [ 6] [621354] +14:02:24 [ 35] [ 27] [1808931800004945=1803500372] +14:02:24 [ 37] [ 12] [507904615354] +14:02:24 [ 41] [ 8] [17000600] +14:02:24 [ 42] [ 15] [NATIVE ] +14:02:24 [ 43] [ 40] [Houaphan Branch Samneua LAO] +14:02:24 [ 49] [ 3] [418] +14:02:24 [ 52] [ 16] [ABBEF33488007B29] +14:02:24 ============================================================================ +14:02:24 + + +waiting on router queue for slot.... +14:02:24 Sending to : +14:02:24 ============================================================================ +14:02:24 Sending to : +14:02:24 ============================================================================ +14:02:24 ============================================================================ +14:02:24 Slot Id : <198> +14:02:24 Transaction Type : REQUEST +14:02:24 Received From : +14:02:24 ============================================================================ +14:02:24 FNo. Len. Field Value +14:02:24 ============================================================================ +14:02:24 [ 1] [ 4] [0200] +14:02:24 [ 2] [ 16] [1808931800004945] +14:02:24 [ 3] [ 6] [301000] +14:02:24 [ 4] [ 12] [000000000000] +14:02:24 [ 7] [ 10] [0320140219] +14:02:24 [ 11] [ 6] [764956] +14:02:24 [ 12] [ 6] [140219] +14:02:24 [ 13] [ 4] [0320] +14:02:24 [ 15] [ 4] [0320] +14:02:24 [ 18] [ 4] [6011] +14:02:24 [ 22] [ 3] [900] +14:02:24 [ 25] [ 2] [02] +14:02:24 [ 28] [ 9] [D00000000] +14:02:24 [ 32] [ 6] [621354] +14:02:24 [ 35] [ 27] [1808931800004945=1803500372] +14:02:24 [ 37] [ 12] [507904615354] +14:02:24 [ 41] [ 8] [17000600] +14:02:24 [ 42] [ 15] [NATIVE ] +14:02:24 [ 43] [ 40] [Houaphan Branch Samneua LAO] +14:02:24 [ 49] [ 3] [418] +14:02:24 [ 52] [ 16] [ABBEF33488007B29] +14:02:24 ============================================================================ +14:02:24 + + +waiting on router queue for slot.... +14:02:24 Sending to : +14:02:24 ============================================================================ +14:02:24 ============================================================================ +14:02:24 Slot Id : <198> +14:02:24 Transaction Type : REQUEST +14:02:24 Received From : +14:02:24 ============================================================================ +14:02:24 FNo. Len. Field Value +14:02:24 ============================================================================ +14:02:24 [ 1] [ 4] [0200] +14:02:24 [ 2] [ 16] [1808931800004945] +14:02:24 [ 3] [ 6] [301000] +14:02:24 [ 4] [ 12] [000000000000] +14:02:24 [ 7] [ 10] [0320140219] +14:02:24 [ 11] [ 6] [764956] +14:02:24 [ 12] [ 6] [140219] +14:02:24 [ 13] [ 4] [0320] +14:02:24 [ 15] [ 4] [0320] +14:02:24 [ 18] [ 4] [6011] +14:02:24 [ 22] [ 3] [900] +14:02:24 [ 25] [ 2] [02] +14:02:24 [ 28] [ 9] [D00000000] +14:02:24 [ 32] [ 6] [621354] +14:02:24 [ 35] [ 27] [1808931800004945=1803500372] +14:02:24 [ 37] [ 12] [507904615354] +14:02:24 [ 41] [ 8] [17000600] +14:02:24 [ 42] [ 15] [NATIVE ] +14:02:24 [ 43] [ 40] [Houaphan Branch Samneua LAO] +14:02:24 [ 49] [ 3] [418] +14:02:24 [ 52] [ 16] [A3A0B34DFEE67B1A] +14:02:24 ============================================================================ +14:02:24 + + +waiting on router queue for slot.... +14:02:24 Sending to : <2> +14:02:24 ============================================================================ +14:02:29 ============================================================================ +14:02:29 Slot Id : <198> +14:02:29 Transaction Type : RESPONSE +14:02:29 Received From : +14:02:29 ============================================================================ +14:02:29 FNo. Len. Field Value +14:02:29 ============================================================================ +14:02:29 [ 1] [ 4] [0210] +14:02:29 [ 2] [ 16] [1808931800004945] +14:02:29 [ 3] [ 6] [301000] +14:02:29 [ 7] [ 10] [0320140219] +14:02:29 [ 11] [ 6] [764956] +14:02:29 [ 12] [ 6] [140219] +14:02:29 [ 13] [ 4] [0320] +14:02:29 [ 14] [ 4] [1803] +14:02:29 [ 19] [ 3] [418] +14:02:29 [ 32] [ 6] [621354] +14:02:29 [ 37] [ 12] [507904615354] +14:02:29 [ 38] [ 6] [764956] +14:02:29 [ 39] [ 2] [00] +14:02:29 [ 41] [ 8] [17000600] +14:02:29 [ 49] [ 3] [418] +14:02:29 [ 52] [ 16] [A3A0B34DFEE67B1A] +14:02:29 [ 54] [ 20] [1002418C000003277500] +14:02:29 ============================================================================ +14:02:29 Sending to : +14:02:29 ============================================================================ +14:02:29 + + +waiting on router queue for slot.... +14:02:31 ============================================================================ +14:02:31 Slot Id : <198> +14:02:31 Transaction Type : RESPONSE +14:02:31 Received From : +14:02:31 ============================================================================ +14:02:31 FNo. Len. Field Value +14:02:31 ============================================================================ +14:02:31 [ 1] [ 4] [0210] +14:02:31 [ 2] [ 16] [1808931800004945] +14:02:31 [ 3] [ 6] [301000] +14:02:31 [ 7] [ 10] [0320140219] +14:02:31 [ 11] [ 6] [764956] +14:02:31 [ 12] [ 6] [140219] +14:02:31 [ 13] [ 4] [0320] +14:02:31 [ 14] [ 4] [1803] +14:02:31 [ 19] [ 3] [418] +14:02:31 [ 32] [ 6] [621354] +14:02:31 [ 37] [ 12] [507904615354] +14:02:31 [ 38] [ 6] [764956] +14:02:31 [ 39] [ 2] [00] +14:02:31 [ 41] [ 8] [17000600] +14:02:31 [ 49] [ 3] [418] +14:02:31 [ 52] [ 16] [A3A0B34DFEE67B1A] +14:02:31 [ 54] [ 20] [1002418C000003277500] +14:02:31 ============================================================================ +14:02:31 Calculate Source COMM Id = 0 +14:02:31 ============================================================================ +14:02:31 + + +waiting on router queue for slot.... +14:02:31 ============================================================================ +14:02:31 Slot Id : <181> +14:02:31 Transaction Type : REQUEST +14:02:31 Received From : +14:02:31 ============================================================================ +14:02:31 FNo. Len. Field Value +14:02:31 ============================================================================ +14:02:31 [ 1] [ 4] [0200] +14:02:31 [ 2] [ 16] [6688990030003188] +14:02:31 [ 3] [ 6] [012000] +14:02:31 [ 4] [ 12] [000100000000] +14:02:31 [ 7] [ 10] [0320140227] +14:02:31 [ 11] [ 6] [764973] +14:02:31 [ 12] [ 6] [140227] +14:02:31 [ 13] [ 4] [0320] +14:02:31 [ 15] [ 4] [0320] +14:02:31 [ 18] [ 4] [6011] +14:02:31 [ 22] [ 3] [900] +14:02:31 [ 25] [ 2] [02] +14:02:31 [ 28] [ 9] [D00002000] +14:02:31 [ 32] [ 6] [621354] +14:02:31 [ 35] [ 37] [6688990030003188=97111261417538300000] +14:02:31 [ 37] [ 12] [507902585316] +14:02:31 [ 41] [ 8] [05004100] +14:02:31 [ 42] [ 15] [NATIVE ] +14:02:31 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +14:02:31 [ 49] [ 3] [418] +14:02:31 [ 52] [ 16] [C9DD4AE9BBB37DFA] +14:02:31 ============================================================================ +14:02:31 + + +waiting on router queue for slot.... +14:02:31 Sending to : +14:02:31 ============================================================================ +14:02:31 Sending to : +14:02:31 ============================================================================ +14:02:32 ============================================================================ +14:02:32 Slot Id : <181> +14:02:32 Transaction Type : REQUEST +14:02:32 Received From : +14:02:32 ============================================================================ +14:02:32 FNo. Len. Field Value +14:02:32 ============================================================================ +14:02:32 [ 1] [ 4] [0200] +14:02:32 [ 2] [ 16] [6688990030003188] +14:02:32 [ 3] [ 6] [012000] +14:02:32 [ 4] [ 12] [000100000000] +14:02:32 [ 7] [ 10] [0320140227] +14:02:32 [ 11] [ 6] [764973] +14:02:32 [ 12] [ 6] [140227] +14:02:32 [ 13] [ 4] [0320] +14:02:32 [ 15] [ 4] [0320] +14:02:32 [ 18] [ 4] [6011] +14:02:32 [ 22] [ 3] [900] +14:02:32 [ 25] [ 2] [02] +14:02:32 [ 28] [ 9] [D00002000] +14:02:32 [ 32] [ 6] [621354] +14:02:32 [ 35] [ 37] [6688990030003188=97111261417538300000] +14:02:32 [ 37] [ 12] [507902585316] +14:02:32 [ 41] [ 8] [05004100] +14:02:32 [ 42] [ 15] [NATIVE ] +14:02:32 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +14:02:32 [ 49] [ 3] [418] +14:02:32 [ 52] [ 16] [C9DD4AE9BBB37DFA] +14:02:32 ============================================================================ +14:02:32 + + +waiting on router queue for slot.... +14:02:32 Sending to : +14:02:32 ============================================================================ +14:02:32 ============================================================================ +14:02:32 Slot Id : <181> +14:02:32 Transaction Type : REQUEST +14:02:32 Received From : +14:02:32 ============================================================================ +14:02:32 FNo. Len. Field Value +14:02:32 ============================================================================ +14:02:32 [ 1] [ 4] [0200] +14:02:32 [ 2] [ 16] [6688990030003188] +14:02:32 [ 3] [ 6] [012000] +14:02:32 [ 4] [ 12] [000100000000] +14:02:32 [ 7] [ 10] [0320140227] +14:02:32 [ 11] [ 6] [764973] +14:02:32 [ 12] [ 6] [140227] +14:02:32 [ 13] [ 4] [0320] +14:02:32 [ 15] [ 4] [0320] +14:02:32 [ 18] [ 4] [6011] +14:02:32 [ 22] [ 3] [900] +14:02:32 [ 25] [ 2] [02] +14:02:32 [ 28] [ 9] [D00002000] +14:02:32 [ 32] [ 6] [621354] +14:02:32 [ 35] [ 37] [6688990030003188=97111261417538300000] +14:02:32 [ 37] [ 12] [507902585316] +14:02:32 [ 41] [ 8] [05004100] +14:02:32 [ 42] [ 15] [NATIVE ] +14:02:32 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +14:02:32 [ 49] [ 3] [418] +14:02:32 [ 52] [ 16] [74C6DB7A280A85F3] +14:02:32 ============================================================================ +14:02:32 + + +waiting on router queue for slot.... +14:02:32 Sending to : <4> +14:02:32 ============================================================================ +14:02:33 ============================================================================ +14:02:33 Slot Id : <181> +14:02:33 Transaction Type : RESPONSE +14:02:33 Received From : +14:02:33 ============================================================================ +14:02:33 FNo. Len. Field Value +14:02:33 ============================================================================ +14:02:33 [ 1] [ 4] [0210] +14:02:33 [ 2] [ 16] [6688990030003188] +14:02:33 [ 3] [ 6] [012000] +14:02:33 [ 4] [ 12] [000100000000] +14:02:33 [ 11] [ 6] [764973] +14:02:33 [ 12] [ 6] [140227] +14:02:33 [ 15] [ 4] [0320] +14:02:33 [ 18] [ 4] [6011] +14:02:33 [ 32] [ 6] [621354] +14:02:33 [ 35] [ 37] [6688990030003188=97111261417538300000] +14:02:33 [ 37] [ 12] [507902585316] +14:02:33 [ 38] [ 6] [508798] +14:02:33 [ 39] [ 2] [00] +14:02:33 [ 41] [ 8] [05004100] +14:02:33 [ 49] [ 3] [418] +14:02:33 [ 54] [ 20] [2002418C008147968265] +14:02:33 ============================================================================ +14:02:33 Sending to : +14:02:33 ============================================================================ +14:02:33 + + +waiting on router queue for slot.... +14:02:34 ============================================================================ +14:02:34 Slot Id : <181> +14:02:34 Transaction Type : RESPONSE +14:02:34 Received From : +14:02:34 ============================================================================ +14:02:34 FNo. Len. Field Value +14:02:34 ============================================================================ +14:02:34 [ 1] [ 4] [0210] +14:02:34 [ 2] [ 16] [6688990030003188] +14:02:34 [ 3] [ 6] [012000] +14:02:34 [ 4] [ 12] [000100000000] +14:02:34 [ 11] [ 6] [764973] +14:02:34 [ 12] [ 6] [140227] +14:02:34 [ 15] [ 4] [0320] +14:02:34 [ 18] [ 4] [6011] +14:02:34 [ 32] [ 6] [621354] +14:02:34 [ 35] [ 37] [6688990030003188=97111261417538300000] +14:02:34 [ 37] [ 12] [507902585316] +14:02:34 [ 38] [ 6] [508798] +14:02:34 [ 39] [ 2] [00] +14:02:34 [ 41] [ 8] [05004100] +14:02:34 [ 49] [ 3] [418] +14:02:34 [ 54] [ 20] [2002418C008147968265] +14:02:34 ============================================================================ +14:02:34 Calculate Source COMM Id = 0 +14:02:34 ============================================================================ +14:02:34 + + +waiting on router queue for slot.... +14:02:38 ============================================================================ +14:02:38 Slot Id : <201> +14:02:38 Transaction Type : REQUEST +14:02:38 Received From : +14:02:38 ============================================================================ +14:02:38 FNo. Len. Field Value +14:02:38 ============================================================================ +14:02:38 [ 1] [ 4] [0800] +14:02:38 [ 7] [ 10] [0320211427] +14:02:38 [ 11] [ 6] [141427] +14:02:38 [ 37] [ 12] [57914141427] +14:02:38 [ 70] [ 3] [301] +14:02:38 ============================================================================ +14:02:38 + + +waiting on router queue for slot.... +14:02:38 Sending to : +14:02:38 ============================================================================ +14:02:38 ============================================================================ +14:02:38 Slot Id : <201> +14:02:38 Transaction Type : RESPONSE +14:02:38 Received From : +14:02:38 ============================================================================ +14:02:38 FNo. Len. Field Value +14:02:38 ============================================================================ +14:02:38 [ 1] [ 4] [0810] +14:02:38 [ 7] [ 10] [0320211427] +14:02:38 [ 11] [ 6] [141427] +14:02:38 [ 37] [ 12] [579141414270] +14:02:38 [ 39] [ 2] [00] +14:02:38 [ 70] [ 3] [810] +14:02:38 ============================================================================ +14:02:38 Calculate Source COMM Id = 6 +14:02:38 ============================================================================ +14:02:38 + + +waiting on router queue for slot.... +14:02:40 ============================================================================ +14:02:40 Slot Id : <214> +14:02:40 Transaction Type : REQUEST +14:02:40 Received From : +14:02:40 ============================================================================ +14:02:40 FNo. Len. Field Value +14:02:40 ============================================================================ +14:02:40 [ 1] [ 4] [0800] +14:02:40 [ 7] [ 10] [0320070146] +14:02:40 [ 11] [ 6] [156694] +14:02:40 [ 70] [ 3] [301] +14:02:40 ============================================================================ +14:02:40 + + +waiting on router queue for slot.... +14:02:40 Sending to : +14:02:40 ============================================================================ +14:02:40 ============================================================================ +14:02:40 Slot Id : <214> +14:02:40 Transaction Type : RESPONSE +14:02:40 Received From : +14:02:40 ============================================================================ +14:02:40 FNo. Len. Field Value +14:02:40 ============================================================================ +14:02:40 [ 1] [ 4] [0810] +14:02:40 [ 7] [ 10] [0320070146] +14:02:40 [ 11] [ 6] [156694] +14:02:40 [ 39] [ 2] [00] +14:02:40 [ 70] [ 3] [301] +14:02:40 ============================================================================ +14:02:40 Calculate Source COMM Id = 2 +14:02:40 ============================================================================ +14:02:40 + + +waiting on router queue for slot.... +14:02:48 ============================================================================ +14:02:48 Slot Id : <165> +14:02:48 Transaction Type : REQUEST +14:02:48 Received From : +14:02:48 ============================================================================ +14:02:48 FNo. Len. Field Value +14:02:48 ============================================================================ +14:02:48 [ 1] [ 4] [0800] +14:02:48 [ 2] [ 5] [02531] +14:02:48 [ 3] [ 6] [579148] +14:02:48 [ 7] [ 10] [0320070248] +14:02:48 [ 11] [ 6] [807227] +14:02:48 [ 15] [ 10] [0320070248] +14:02:48 [ 37] [ 11] [57914807227] +14:02:48 [ 70] [ 3] [001] +14:02:48 ============================================================================ +14:02:48 + + +waiting on router queue for slot.... +14:02:48 ============================================================================ +14:02:48 Slot Id : <165> +14:02:48 Transaction Type : RESPONSE +14:02:48 Received From : +14:02:48 ============================================================================ +14:02:48 FNo. Len. Field Value +14:02:48 ============================================================================ +14:02:48 [ 1] [ 4] [0810] +14:02:48 [ 7] [ 10] [0320070248] +14:02:48 [ 11] [ 6] [807227] +14:02:48 [ 15] [ 4] [0320] +14:02:48 [ 37] [ 12] [57914807227] +14:02:48 [ 39] [ 2] [00] +14:02:48 [ 70] [ 3] [001] +14:02:48 ============================================================================ +14:02:48 Sending to : +14:02:48 ============================================================================ +14:02:48 + + +waiting on router queue for slot.... +14:02:52 ============================================================================ +14:02:52 Slot Id : <194> +14:02:52 Transaction Type : REQUEST +14:02:52 Received From : +14:02:52 ============================================================================ +14:02:52 FNo. Len. Field Value +14:02:52 ============================================================================ +14:02:52 [ 1] [ 4] [0200] +14:02:52 [ 2] [ 16] [6213545000020085] +14:02:52 [ 3] [ 6] [010000] +14:02:52 [ 4] [ 12] [000100000000] +14:02:52 [ 7] [ 10] [0320070159] +14:02:52 [ 11] [ 6] [269495] +14:02:52 [ 12] [ 6] [140159] +14:02:52 [ 13] [ 4] [0320] +14:02:52 [ 14] [ 4] [4912] +14:02:52 [ 15] [ 4] [0320] +14:02:52 [ 18] [ 4] [6011] +14:02:52 [ 19] [ 3] [418] +14:02:52 [ 22] [ 3] [021] +14:02:52 [ 25] [ 2] [01] +14:02:52 [ 28] [ 9] [D00002000] +14:02:52 [ 32] [ 6] [180893] +14:02:52 [ 35] [ 32] [6213545000020085=491212012008973] +14:02:52 [ 37] [ 12] [507907269495] +14:02:52 [ 41] [ 8] [0111BLBR] +14:02:52 [ 42] [ 15] [999999 ] +14:02:52 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:02:52 [ 49] [ 3] [418] +14:02:52 [ 52] [ 16] [6ECED5D19342B253] +14:02:52 ============================================================================ +14:02:52 + + +waiting on router queue for slot.... +14:02:52 Sending to : +14:02:52 ============================================================================ +14:02:52 Sending to : +14:02:52 ============================================================================ +14:02:53 ============================================================================ +14:02:53 Slot Id : <194> +14:02:53 Transaction Type : REQUEST +14:02:53 Received From : +14:02:53 ============================================================================ +14:02:53 FNo. Len. Field Value +14:02:53 ============================================================================ +14:02:53 [ 1] [ 4] [0200] +14:02:53 [ 2] [ 16] [6213545000020085] +14:02:53 [ 3] [ 6] [010000] +14:02:53 [ 4] [ 12] [000100000000] +14:02:53 [ 7] [ 10] [0320070159] +14:02:53 [ 11] [ 6] [269495] +14:02:53 [ 12] [ 6] [140159] +14:02:53 [ 13] [ 4] [0320] +14:02:53 [ 14] [ 4] [4912] +14:02:53 [ 15] [ 4] [0320] +14:02:53 [ 18] [ 4] [6011] +14:02:53 [ 19] [ 3] [418] +14:02:53 [ 22] [ 3] [021] +14:02:53 [ 25] [ 2] [01] +14:02:53 [ 28] [ 9] [D00002000] +14:02:53 [ 32] [ 6] [180893] +14:02:53 [ 35] [ 32] [6213545000020085=491212012008973] +14:02:53 [ 37] [ 12] [507907269495] +14:02:53 [ 41] [ 8] [0111BLBR] +14:02:53 [ 42] [ 15] [999999 ] +14:02:53 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:02:53 [ 49] [ 3] [418] +14:02:53 [ 52] [ 16] [6ECED5D19342B253] +14:02:53 ============================================================================ +14:02:53 + + +waiting on router queue for slot.... +14:02:53 Sending to : +14:02:53 ============================================================================ +14:02:53 ============================================================================ +14:02:53 Slot Id : <194> +14:02:53 Transaction Type : REQUEST +14:02:53 Received From : +14:02:53 ============================================================================ +14:02:53 FNo. Len. Field Value +14:02:53 ============================================================================ +14:02:53 [ 1] [ 4] [0200] +14:02:53 [ 2] [ 16] [6213545000020085] +14:02:53 [ 3] [ 6] [010000] +14:02:53 [ 4] [ 12] [000100000000] +14:02:53 [ 7] [ 10] [0320070159] +14:02:53 [ 11] [ 6] [269495] +14:02:53 [ 12] [ 6] [140159] +14:02:53 [ 13] [ 4] [0320] +14:02:53 [ 14] [ 4] [4912] +14:02:53 [ 15] [ 4] [0320] +14:02:53 [ 18] [ 4] [6011] +14:02:53 [ 19] [ 3] [418] +14:02:53 [ 22] [ 3] [021] +14:02:53 [ 25] [ 2] [01] +14:02:53 [ 28] [ 9] [D00002000] +14:02:53 [ 32] [ 6] [180893] +14:02:53 [ 35] [ 32] [6213545000020085=491212012008973] +14:02:53 [ 37] [ 12] [507907269495] +14:02:53 [ 41] [ 8] [0111BLBR] +14:02:53 [ 42] [ 15] [999999 ] +14:02:53 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:02:53 [ 49] [ 3] [418] +14:02:53 [ 52] [ 16] [FC7CECC754804787] +14:02:53 ============================================================================ +14:02:53 + + +waiting on router queue for slot.... +14:02:53 Sending to : <0> +14:02:53 ============================================================================ +14:02:53 ============================================================================ +14:02:53 Slot Id : <194> +14:02:53 Transaction Type : RESPONSE +14:02:53 Received From : +14:02:53 ============================================================================ +14:02:53 FNo. Len. Field Value +14:02:53 ============================================================================ +14:02:53 [ 1] [ 4] [0210] +14:02:53 [ 2] [ 16] [6213545000020085] +14:02:53 [ 3] [ 6] [010000] +14:02:53 [ 4] [ 12] [000100000000] +14:02:53 [ 7] [ 10] [0320070159] +14:02:53 [ 11] [ 6] [269495] +14:02:53 [ 12] [ 6] [140159] +14:02:53 [ 13] [ 4] [0320] +14:02:53 [ 15] [ 4] [0320] +14:02:53 [ 18] [ 4] [6011] +14:02:53 [ 19] [ 3] [418] +14:02:53 [ 32] [ 6] [180893] +14:02:53 [ 35] [ 32] [6213545000020085=491212012008973] +14:02:53 [ 37] [ 12] [507907269495] +14:02:53 [ 38] [ 6] [476775] +14:02:53 [ 39] [ 2] [00] +14:02:53 [ 41] [ 8] [0111BLBR] +14:02:53 [ 49] [ 3] [418] +14:02:53 [ 54] [ 40] [0001418C0016673450570002418C001667345057] +14:02:53 ============================================================================ +14:02:53 Sending to : +14:02:53 ============================================================================ +14:02:53 + + +waiting on router queue for slot.... +14:02:55 ============================================================================ +14:02:55 Slot Id : <194> +14:02:55 Transaction Type : RESPONSE +14:02:55 Received From : +14:02:55 ============================================================================ +14:02:55 FNo. Len. Field Value +14:02:55 ============================================================================ +14:02:55 [ 1] [ 4] [0210] +14:02:55 [ 2] [ 16] [6213545000020085] +14:02:55 [ 3] [ 6] [010000] +14:02:55 [ 4] [ 12] [000100000000] +14:02:55 [ 7] [ 10] [0320070159] +14:02:55 [ 11] [ 6] [269495] +14:02:55 [ 12] [ 6] [140159] +14:02:55 [ 13] [ 4] [0320] +14:02:55 [ 15] [ 4] [0320] +14:02:55 [ 18] [ 4] [6011] +14:02:55 [ 19] [ 3] [418] +14:02:55 [ 32] [ 6] [180893] +14:02:55 [ 35] [ 32] [6213545000020085=491212012008973] +14:02:55 [ 37] [ 12] [507907269495] +14:02:55 [ 38] [ 6] [476775] +14:02:55 [ 39] [ 2] [00] +14:02:55 [ 41] [ 8] [0111BLBR] +14:02:55 [ 49] [ 3] [418] +14:02:55 [ 54] [ 40] [0001418C0016673450570002418C001667345057] +14:02:55 ============================================================================ +14:02:55 Calculate Source COMM Id = 2 +14:02:55 ============================================================================ +14:02:55 + + +waiting on router queue for slot.... +14:02:55 ============================================================================ +14:02:55 Slot Id : <209> +14:02:55 Transaction Type : REQUEST +14:02:55 Received From : +14:02:55 ============================================================================ +14:02:55 FNo. Len. Field Value +14:02:55 ============================================================================ +14:02:55 [ 1] [ 4] [0800] +14:02:55 [ 7] [ 10] [0320070202] +14:02:55 [ 11] [ 6] [156695] +14:02:55 [ 70] [ 3] [301] +14:02:55 ============================================================================ +14:02:55 + + +waiting on router queue for slot.... +14:02:55 Sending to : +14:02:55 ============================================================================ +14:02:55 ============================================================================ +14:02:55 Slot Id : <209> +14:02:55 Transaction Type : RESPONSE +14:02:55 Received From : +14:02:55 ============================================================================ +14:02:55 FNo. Len. Field Value +14:02:55 ============================================================================ +14:02:55 [ 1] [ 4] [0810] +14:02:55 [ 7] [ 10] [0320070202] +14:02:55 [ 11] [ 6] [156695] +14:02:55 [ 39] [ 2] [00] +14:02:55 [ 70] [ 3] [301] +14:02:55 ============================================================================ +14:02:55 Calculate Source COMM Id = 2 +14:02:55 ============================================================================ +14:02:55 + + +waiting on router queue for slot.... +14:03:00 ============================================================================ +14:03:00 Slot Id : <195> +14:03:00 Transaction Type : REQUEST +14:03:00 Received From : +14:03:00 ============================================================================ +14:03:00 FNo. Len. Field Value +14:03:00 ============================================================================ +14:03:00 [ 1] [ 4] [0200] +14:03:00 [ 2] [ 16] [6213544000578523] +14:03:00 [ 3] [ 6] [302000] +14:03:00 [ 4] [ 12] [000000000000] +14:03:00 [ 7] [ 10] [0320140051] +14:03:00 [ 11] [ 6] [947890] +14:03:00 [ 12] [ 6] [140051] +14:03:00 [ 13] [ 4] [0320] +14:03:00 [ 15] [ 4] [0320] +14:03:00 [ 18] [ 4] [6011] +14:03:00 [ 19] [ 3] [418] +14:03:00 [ 22] [ 3] [021] +14:03:00 [ 25] [ 2] [01] +14:03:00 [ 28] [ 9] [D00000000] +14:03:00 [ 32] [ 6] [668899] +14:03:00 [ 35] [ 32] [6213544000578523=491212017852118] +14:03:00 [ 37] [ 12] [507902161225] +14:03:00 [ 41] [ 8] [03020026] +14:03:00 [ 42] [ 15] [APT ] +14:03:00 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +14:03:00 [ 49] [ 3] [418] +14:03:00 [ 52] [ 16] [01E9D49A8D0BACF0] +14:03:00 ============================================================================ +14:03:00 + + +waiting on router queue for slot.... +14:03:00 Sending to : +14:03:00 ============================================================================ +14:03:00 Sending to : +14:03:00 ============================================================================ +14:03:00 ============================================================================ +14:03:00 Slot Id : <195> +14:03:00 Transaction Type : REQUEST +14:03:00 Received From : +14:03:00 ============================================================================ +14:03:00 FNo. Len. Field Value +14:03:00 ============================================================================ +14:03:00 [ 1] [ 4] [0200] +14:03:00 [ 2] [ 16] [6213544000578523] +14:03:00 [ 3] [ 6] [302000] +14:03:00 [ 4] [ 12] [000000000000] +14:03:00 [ 7] [ 10] [0320140051] +14:03:00 [ 11] [ 6] [947890] +14:03:00 [ 12] [ 6] [140051] +14:03:00 [ 13] [ 4] [0320] +14:03:00 [ 15] [ 4] [0320] +14:03:00 [ 18] [ 4] [6011] +14:03:00 [ 19] [ 3] [418] +14:03:00 [ 22] [ 3] [021] +14:03:00 [ 25] [ 2] [01] +14:03:00 [ 28] [ 9] [D00000000] +14:03:00 [ 32] [ 6] [668899] +14:03:00 [ 35] [ 32] [6213544000578523=491212017852118] +14:03:00 [ 37] [ 12] [507902161225] +14:03:00 [ 41] [ 8] [03020026] +14:03:00 [ 42] [ 15] [APT ] +14:03:00 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +14:03:00 [ 49] [ 3] [418] +14:03:00 [ 52] [ 16] [01E9D49A8D0BACF0] +14:03:00 ============================================================================ +14:03:00 + + +waiting on router queue for slot.... +14:03:00 Sending to : +14:03:00 ============================================================================ +14:03:00 ============================================================================ +14:03:00 Slot Id : <195> +14:03:00 Transaction Type : REQUEST +14:03:00 Received From : +14:03:00 ============================================================================ +14:03:00 FNo. Len. Field Value +14:03:00 ============================================================================ +14:03:00 [ 1] [ 4] [0200] +14:03:00 [ 2] [ 16] [6213544000578523] +14:03:00 [ 3] [ 6] [302000] +14:03:00 [ 4] [ 12] [000000000000] +14:03:00 [ 7] [ 10] [0320140051] +14:03:00 [ 11] [ 6] [947890] +14:03:00 [ 12] [ 6] [140051] +14:03:00 [ 13] [ 4] [0320] +14:03:00 [ 15] [ 4] [0320] +14:03:00 [ 18] [ 4] [6011] +14:03:00 [ 19] [ 3] [418] +14:03:00 [ 22] [ 3] [021] +14:03:00 [ 25] [ 2] [01] +14:03:00 [ 28] [ 9] [D00000000] +14:03:00 [ 32] [ 6] [668899] +14:03:00 [ 35] [ 32] [6213544000578523=491212017852118] +14:03:00 [ 37] [ 12] [507902161225] +14:03:00 [ 41] [ 8] [03020026] +14:03:00 [ 42] [ 15] [APT ] +14:03:00 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +14:03:00 [ 49] [ 3] [418] +14:03:00 [ 52] [ 16] [690EF85993477540] +14:03:00 ============================================================================ +14:03:00 + + +waiting on router queue for slot.... +14:03:00 Sending to : <0> +14:03:00 ============================================================================ +14:03:01 ============================================================================ +14:03:01 Slot Id : <195> +14:03:01 Transaction Type : RESPONSE +14:03:01 Received From : +14:03:01 ============================================================================ +14:03:01 FNo. Len. Field Value +14:03:01 ============================================================================ +14:03:01 [ 1] [ 4] [0210] +14:03:01 [ 2] [ 16] [6213544000578523] +14:03:01 [ 3] [ 6] [302000] +14:03:01 [ 4] [ 12] [000000000000] +14:03:01 [ 7] [ 10] [0320140051] +14:03:01 [ 11] [ 6] [947890] +14:03:01 [ 12] [ 6] [140051] +14:03:01 [ 13] [ 4] [0320] +14:03:01 [ 15] [ 4] [0320] +14:03:01 [ 18] [ 4] [6011] +14:03:01 [ 19] [ 3] [418] +14:03:01 [ 32] [ 6] [668899] +14:03:01 [ 35] [ 32] [6213544000578523=491212017852118] +14:03:01 [ 37] [ 12] [507902161225] +14:03:01 [ 38] [ 6] [423939] +14:03:01 [ 39] [ 2] [00] +14:03:01 [ 41] [ 8] [03020026] +14:03:01 [ 49] [ 3] [418] +14:03:01 [ 54] [ 40] [2001418C0001213638202002418C000121363820] +14:03:01 ============================================================================ +14:03:01 Sending to : +14:03:01 ============================================================================ +14:03:01 + + +waiting on router queue for slot.... +14:03:02 ============================================================================ +14:03:02 Slot Id : <195> +14:03:02 Transaction Type : RESPONSE +14:03:02 Received From : +14:03:02 ============================================================================ +14:03:02 FNo. Len. Field Value +14:03:02 ============================================================================ +14:03:02 [ 1] [ 4] [0210] +14:03:02 [ 2] [ 16] [6213544000578523] +14:03:02 [ 3] [ 6] [302000] +14:03:02 [ 4] [ 12] [000000000000] +14:03:02 [ 7] [ 10] [0320140051] +14:03:02 [ 11] [ 6] [947890] +14:03:02 [ 12] [ 6] [140051] +14:03:02 [ 13] [ 4] [0320] +14:03:02 [ 15] [ 4] [0320] +14:03:02 [ 18] [ 4] [6011] +14:03:02 [ 19] [ 3] [418] +14:03:02 [ 32] [ 6] [668899] +14:03:02 [ 35] [ 32] [6213544000578523=491212017852118] +14:03:02 [ 37] [ 12] [507902161225] +14:03:02 [ 38] [ 6] [423939] +14:03:02 [ 39] [ 2] [00] +14:03:02 [ 41] [ 8] [03020026] +14:03:02 [ 49] [ 3] [418] +14:03:02 [ 54] [ 40] [2001418C0001213638202002418C000121363820] +14:03:02 ============================================================================ +14:03:02 Calculate Source COMM Id = 4 +14:03:02 ============================================================================ +14:03:02 + + +waiting on router queue for slot.... +14:03:06 ============================================================================ +14:03:06 Slot Id : <178> +14:03:06 Transaction Type : REQUEST +14:03:06 Received From : +14:03:06 ============================================================================ +14:03:06 FNo. Len. Field Value +14:03:06 ============================================================================ +14:03:06 [ 1] [ 4] [0800] +14:03:06 [ 7] [ 10] [0320070213] +14:03:06 [ 11] [ 6] [156696] +14:03:06 [ 70] [ 3] [301] +14:03:06 ============================================================================ +14:03:06 + + +waiting on router queue for slot.... +14:03:06 Sending to : +14:03:06 ============================================================================ +14:03:06 ============================================================================ +14:03:06 Slot Id : <178> +14:03:06 Transaction Type : RESPONSE +14:03:06 Received From : +14:03:06 ============================================================================ +14:03:06 FNo. Len. Field Value +14:03:06 ============================================================================ +14:03:06 [ 1] [ 4] [0810] +14:03:06 [ 7] [ 10] [0320070213] +14:03:06 [ 11] [ 6] [156696] +14:03:06 [ 39] [ 2] [00] +14:03:06 [ 70] [ 3] [301] +14:03:06 ============================================================================ +14:03:06 Calculate Source COMM Id = 2 +14:03:06 ============================================================================ +14:03:06 + + +waiting on router queue for slot.... +14:03:07 ============================================================================ +14:03:07 Slot Id : <184> +14:03:07 Transaction Type : REQUEST +14:03:07 Received From : +14:03:07 ============================================================================ +14:03:07 FNo. Len. Field Value +14:03:07 ============================================================================ +14:03:07 [ 1] [ 4] [0200] +14:03:07 [ 2] [ 16] [6688990103541601] +14:03:07 [ 3] [ 6] [010000] +14:03:07 [ 4] [ 12] [000100000000] +14:03:07 [ 7] [ 10] [0320070214] +14:03:07 [ 11] [ 6] [269498] +14:03:07 [ 12] [ 6] [140214] +14:03:07 [ 13] [ 4] [0320] +14:03:07 [ 14] [ 4] [4301] +14:03:07 [ 15] [ 4] [0320] +14:03:07 [ 18] [ 4] [6011] +14:03:07 [ 19] [ 3] [418] +14:03:07 [ 22] [ 3] [021] +14:03:07 [ 25] [ 2] [01] +14:03:07 [ 28] [ 9] [D00002000] +14:03:07 [ 32] [ 6] [180893] +14:03:07 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:03:07 [ 37] [ 12] [507907269498] +14:03:07 [ 41] [ 8] [0221XKKM] +14:03:07 [ 42] [ 15] [999999 ] +14:03:07 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:03:07 [ 49] [ 3] [418] +14:03:07 [ 52] [ 16] [AA0147EB6F7A5445] +14:03:07 ============================================================================ +14:03:07 + + +waiting on router queue for slot.... +14:03:07 Sending to : +14:03:07 ============================================================================ +14:03:07 Sending to : +14:03:07 ============================================================================ +14:03:07 ============================================================================ +14:03:07 Slot Id : <184> +14:03:07 Transaction Type : REQUEST +14:03:07 Received From : +14:03:07 ============================================================================ +14:03:07 FNo. Len. Field Value +14:03:07 ============================================================================ +14:03:07 [ 1] [ 4] [0200] +14:03:07 [ 2] [ 16] [6688990103541601] +14:03:07 [ 3] [ 6] [010000] +14:03:07 [ 4] [ 12] [000100000000] +14:03:07 [ 7] [ 10] [0320070214] +14:03:07 [ 11] [ 6] [269498] +14:03:07 [ 12] [ 6] [140214] +14:03:07 [ 13] [ 4] [0320] +14:03:07 [ 14] [ 4] [4301] +14:03:07 [ 15] [ 4] [0320] +14:03:07 [ 18] [ 4] [6011] +14:03:07 [ 19] [ 3] [418] +14:03:07 [ 22] [ 3] [021] +14:03:07 [ 25] [ 2] [01] +14:03:07 [ 28] [ 9] [D00002000] +14:03:07 [ 32] [ 6] [180893] +14:03:07 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:03:07 [ 37] [ 12] [507907269498] +14:03:07 [ 41] [ 8] [0221XKKM] +14:03:07 [ 42] [ 15] [999999 ] +14:03:07 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:03:07 [ 49] [ 3] [418] +14:03:07 [ 52] [ 16] [AA0147EB6F7A5445] +14:03:07 ============================================================================ +14:03:07 + + +waiting on router queue for slot.... +14:03:07 Sending to : +14:03:07 ============================================================================ +14:03:07 ============================================================================ +14:03:07 Slot Id : <184> +14:03:07 Transaction Type : REQUEST +14:03:07 Received From : +14:03:07 ============================================================================ +14:03:07 FNo. Len. Field Value +14:03:07 ============================================================================ +14:03:07 [ 1] [ 4] [0200] +14:03:07 [ 2] [ 16] [6688990103541601] +14:03:07 [ 3] [ 6] [010000] +14:03:07 [ 4] [ 12] [000100000000] +14:03:07 [ 7] [ 10] [0320070214] +14:03:07 [ 11] [ 6] [269498] +14:03:07 [ 12] [ 6] [140214] +14:03:07 [ 13] [ 4] [0320] +14:03:07 [ 14] [ 4] [4301] +14:03:07 [ 15] [ 4] [0320] +14:03:07 [ 18] [ 4] [6011] +14:03:07 [ 19] [ 3] [418] +14:03:07 [ 22] [ 3] [021] +14:03:07 [ 25] [ 2] [01] +14:03:07 [ 28] [ 9] [D00002000] +14:03:07 [ 32] [ 6] [180893] +14:03:07 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:03:07 [ 37] [ 12] [507907269498] +14:03:07 [ 41] [ 8] [0221XKKM] +14:03:07 [ 42] [ 15] [999999 ] +14:03:07 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:03:07 [ 49] [ 3] [418] +14:03:07 [ 52] [ 16] [11EBC6641DBB9C42] +14:03:07 ============================================================================ +14:03:07 + + +waiting on router queue for slot.... +14:03:07 Sending to : <0> +14:03:07 ============================================================================ +14:03:07 ============================================================================ +14:03:07 Slot Id : <184> +14:03:07 Transaction Type : RESPONSE +14:03:07 Received From : +14:03:07 ============================================================================ +14:03:07 FNo. Len. Field Value +14:03:07 ============================================================================ +14:03:07 [ 1] [ 4] [0210] +14:03:07 [ 2] [ 16] [6688990103541601] +14:03:07 [ 3] [ 6] [010000] +14:03:07 [ 4] [ 12] [000100000000] +14:03:07 [ 7] [ 10] [0320070214] +14:03:07 [ 11] [ 6] [269498] +14:03:07 [ 12] [ 6] [140214] +14:03:07 [ 13] [ 4] [0320] +14:03:07 [ 15] [ 4] [0320] +14:03:07 [ 18] [ 4] [6011] +14:03:07 [ 19] [ 3] [418] +14:03:07 [ 22] [ 3] [021] +14:03:07 [ 32] [ 6] [180893] +14:03:07 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:03:07 [ 37] [ 12] [507907269498] +14:03:07 [ 39] [ 2] [14] +14:03:07 [ 41] [ 8] [0221XKKM] +14:03:07 [ 49] [ 3] [418] +14:03:07 ============================================================================ +14:03:07 Sending to : +14:03:07 ============================================================================ +14:03:07 + + +waiting on router queue for slot.... +14:03:08 ============================================================================ +14:03:08 Slot Id : <184> +14:03:08 Transaction Type : RESPONSE +14:03:08 Received From : +14:03:08 ============================================================================ +14:03:08 FNo. Len. Field Value +14:03:08 ============================================================================ +14:03:08 [ 1] [ 4] [0210] +14:03:08 [ 2] [ 16] [6688990103541601] +14:03:08 [ 3] [ 6] [010000] +14:03:08 [ 4] [ 12] [000100000000] +14:03:08 [ 7] [ 10] [0320070214] +14:03:08 [ 11] [ 6] [269498] +14:03:08 [ 12] [ 6] [140214] +14:03:08 [ 13] [ 4] [0320] +14:03:08 [ 15] [ 4] [0320] +14:03:08 [ 18] [ 4] [6011] +14:03:08 [ 19] [ 3] [418] +14:03:08 [ 22] [ 3] [021] +14:03:08 [ 32] [ 6] [180893] +14:03:08 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:03:08 [ 37] [ 12] [507907269498] +14:03:08 [ 39] [ 2] [14] +14:03:08 [ 41] [ 8] [0221XKKM] +14:03:08 [ 49] [ 3] [418] +14:03:08 ============================================================================ +14:03:08 Calculate Source COMM Id = 2 +14:03:08 ============================================================================ +14:03:08 + + +waiting on router queue for slot.... +14:03:14 ============================================================================ +14:03:14 Slot Id : <206> +14:03:14 Transaction Type : REQUEST +14:03:14 Received From : +14:03:14 ============================================================================ +14:03:14 FNo. Len. Field Value +14:03:14 ============================================================================ +14:03:14 [ 1] [ 4] [0200] +14:03:14 [ 2] [ 16] [6213544000282522] +14:03:14 [ 3] [ 6] [011000] +14:03:14 [ 4] [ 12] [000100000000] +14:03:14 [ 7] [ 10] [0320141101] +14:03:14 [ 11] [ 6] [274801] +14:03:14 [ 12] [ 6] [141101] +14:03:14 [ 13] [ 4] [0320] +14:03:14 [ 14] [ 4] [4912] +14:03:14 [ 15] [ 4] [0320] +14:03:14 [ 18] [ 4] [6011] +14:03:14 [ 22] [ 3] [900] +14:03:14 [ 25] [ 2] [02] +14:03:14 [ 28] [ 9] [D00002000] +14:03:14 [ 32] [ 6] [220699] +14:03:14 [ 35] [ 32] [6213544000282522=491212018252648] +14:03:14 [ 37] [ 12] [507900057300] +14:03:14 [ 41] [ 8] [01000500] +14:03:14 [ 42] [ 15] [APTRA ] +14:03:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:03:14 [ 49] [ 3] [418] +14:03:14 [ 52] [ 16] [D0B8E4C505713A81] +14:03:14 ============================================================================ +14:03:14 + + +waiting on router queue for slot.... +14:03:14 Sending to : +14:03:14 ============================================================================ +14:03:14 Sending to : +14:03:14 ============================================================================ +14:03:14 ============================================================================ +14:03:14 Slot Id : <206> +14:03:14 Transaction Type : REQUEST +14:03:14 Received From : +14:03:14 ============================================================================ +14:03:14 FNo. Len. Field Value +14:03:14 ============================================================================ +14:03:14 [ 1] [ 4] [0200] +14:03:14 [ 2] [ 16] [6213544000282522] +14:03:14 [ 3] [ 6] [011000] +14:03:14 [ 4] [ 12] [000100000000] +14:03:14 [ 7] [ 10] [0320141101] +14:03:14 [ 11] [ 6] [274801] +14:03:14 [ 12] [ 6] [141101] +14:03:14 [ 13] [ 4] [0320] +14:03:14 [ 14] [ 4] [4912] +14:03:14 [ 15] [ 4] [0320] +14:03:14 [ 18] [ 4] [6011] +14:03:14 [ 22] [ 3] [900] +14:03:14 [ 25] [ 2] [02] +14:03:14 [ 28] [ 9] [D00002000] +14:03:14 [ 32] [ 6] [220699] +14:03:14 [ 35] [ 32] [6213544000282522=491212018252648] +14:03:14 [ 37] [ 12] [507900057300] +14:03:14 [ 41] [ 8] [01000500] +14:03:14 [ 42] [ 15] [APTRA ] +14:03:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:03:14 [ 49] [ 3] [418] +14:03:14 [ 52] [ 16] [D0B8E4C505713A81] +14:03:14 ============================================================================ +14:03:14 + + +waiting on router queue for slot.... +14:03:14 Sending to : +14:03:14 ============================================================================ +14:03:14 ============================================================================ +14:03:14 Slot Id : <206> +14:03:14 Transaction Type : REQUEST +14:03:14 Received From : +14:03:14 ============================================================================ +14:03:14 FNo. Len. Field Value +14:03:14 ============================================================================ +14:03:14 [ 1] [ 4] [0200] +14:03:14 [ 2] [ 16] [6213544000282522] +14:03:14 [ 3] [ 6] [011000] +14:03:14 [ 4] [ 12] [000100000000] +14:03:14 [ 7] [ 10] [0320141101] +14:03:14 [ 11] [ 6] [274801] +14:03:14 [ 12] [ 6] [141101] +14:03:14 [ 13] [ 4] [0320] +14:03:14 [ 14] [ 4] [4912] +14:03:14 [ 15] [ 4] [0320] +14:03:14 [ 18] [ 4] [6011] +14:03:14 [ 22] [ 3] [900] +14:03:14 [ 25] [ 2] [02] +14:03:14 [ 28] [ 9] [D00002000] +14:03:14 [ 32] [ 6] [220699] +14:03:14 [ 35] [ 32] [6213544000282522=491212018252648] +14:03:14 [ 37] [ 12] [507900057300] +14:03:14 [ 41] [ 8] [01000500] +14:03:14 [ 42] [ 15] [APTRA ] +14:03:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:03:14 [ 49] [ 3] [418] +14:03:14 [ 52] [ 16] [ACF5D648A904ED5D] +14:03:14 ============================================================================ +14:03:14 + + +waiting on router queue for slot.... +14:03:14 Sending to : <0> +14:03:14 ============================================================================ +14:03:15 ============================================================================ +14:03:15 Slot Id : <206> +14:03:15 Transaction Type : RESPONSE +14:03:15 Received From : +14:03:15 ============================================================================ +14:03:15 FNo. Len. Field Value +14:03:15 ============================================================================ +14:03:15 [ 1] [ 4] [0210] +14:03:15 [ 2] [ 16] [6213544000282522] +14:03:15 [ 3] [ 6] [011000] +14:03:15 [ 4] [ 12] [000100000000] +14:03:15 [ 7] [ 10] [0320141101] +14:03:15 [ 11] [ 6] [274801] +14:03:15 [ 12] [ 6] [141101] +14:03:15 [ 13] [ 4] [0320] +14:03:15 [ 15] [ 4] [0320] +14:03:15 [ 18] [ 4] [6011] +14:03:15 [ 32] [ 6] [220699] +14:03:15 [ 35] [ 32] [6213544000282522=491212018252648] +14:03:15 [ 37] [ 12] [507900057300] +14:03:15 [ 38] [ 6] [416773] +14:03:15 [ 39] [ 2] [00] +14:03:15 [ 41] [ 8] [01000500] +14:03:15 [ 49] [ 3] [418] +14:03:15 [ 54] [ 40] [1001418C0005083330251002418C000508333025] +14:03:15 ============================================================================ +14:03:15 Sending to : +14:03:15 ============================================================================ +14:03:15 + + +waiting on router queue for slot.... +14:03:17 ============================================================================ +14:03:17 Slot Id : <206> +14:03:17 Transaction Type : RESPONSE +14:03:17 Received From : +14:03:17 ============================================================================ +14:03:17 FNo. Len. Field Value +14:03:17 ============================================================================ +14:03:17 [ 1] [ 4] [0210] +14:03:17 [ 2] [ 16] [6213544000282522] +14:03:17 [ 3] [ 6] [011000] +14:03:17 [ 4] [ 12] [000100000000] +14:03:17 [ 7] [ 10] [0320141101] +14:03:17 [ 11] [ 6] [274801] +14:03:17 [ 12] [ 6] [141101] +14:03:17 [ 13] [ 4] [0320] +14:03:17 [ 15] [ 4] [0320] +14:03:17 [ 18] [ 4] [6011] +14:03:17 [ 32] [ 6] [220699] +14:03:17 [ 35] [ 32] [6213544000282522=491212018252648] +14:03:17 [ 37] [ 12] [507900057300] +14:03:17 [ 38] [ 6] [416773] +14:03:17 [ 39] [ 2] [00] +14:03:17 [ 41] [ 8] [01000500] +14:03:17 [ 49] [ 3] [418] +14:03:17 [ 54] [ 40] [1001418C0005083330251002418C000508333025] +14:03:17 ============================================================================ +14:03:17 Calculate Source COMM Id = 1 +14:03:17 ============================================================================ +14:03:17 + + +waiting on router queue for slot.... +14:03:22 ============================================================================ +14:03:22 Slot Id : <213> +14:03:22 Transaction Type : REQUEST +14:03:22 Received From : +14:03:22 ============================================================================ +14:03:22 FNo. Len. Field Value +14:03:22 ============================================================================ +14:03:22 [ 1] [ 4] [0800] +14:03:22 [ 7] [ 10] [0320070229] +14:03:22 [ 11] [ 6] [156697] +14:03:22 [ 70] [ 3] [301] +14:03:22 ============================================================================ +14:03:22 + + +waiting on router queue for slot.... +14:03:22 Sending to : +14:03:22 ============================================================================ +14:03:22 ============================================================================ +14:03:22 Slot Id : <213> +14:03:22 Transaction Type : RESPONSE +14:03:22 Received From : +14:03:22 ============================================================================ +14:03:22 FNo. Len. Field Value +14:03:22 ============================================================================ +14:03:22 [ 1] [ 4] [0810] +14:03:22 [ 7] [ 10] [0320070229] +14:03:22 [ 11] [ 6] [156697] +14:03:22 [ 39] [ 2] [00] +14:03:22 [ 70] [ 3] [301] +14:03:22 ============================================================================ +14:03:22 Calculate Source COMM Id = 2 +14:03:22 ============================================================================ +14:03:22 + + +waiting on router queue for slot.... +14:03:25 ============================================================================ +14:03:25 Slot Id : <193> +14:03:25 Transaction Type : REQUEST +14:03:25 Received From : +14:03:25 ============================================================================ +14:03:25 FNo. Len. Field Value +14:03:25 ============================================================================ +14:03:25 [ 1] [ 4] [0200] +14:03:25 [ 2] [ 16] [1808930300018231] +14:03:25 [ 3] [ 6] [010000] +14:03:25 [ 4] [ 12] [000010000000] +14:03:25 [ 7] [ 10] [0320140115] +14:03:25 [ 11] [ 6] [947899] +14:03:25 [ 12] [ 6] [140115] +14:03:25 [ 13] [ 4] [0320] +14:03:25 [ 15] [ 4] [0320] +14:03:25 [ 18] [ 4] [6011] +14:03:25 [ 19] [ 3] [418] +14:03:25 [ 22] [ 3] [021] +14:03:25 [ 25] [ 2] [01] +14:03:25 [ 28] [ 9] [D00002000] +14:03:25 [ 32] [ 6] [668899] +14:03:25 [ 35] [ 27] [1808930300018231=1803500682] +14:03:25 [ 37] [ 12] [507901963605] +14:03:25 [ 41] [ 8] [03020019] +14:03:25 [ 42] [ 15] [APT ] +14:03:25 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:03:25 [ 49] [ 3] [418] +14:03:25 [ 52] [ 16] [355F76B9EB36B534] +14:03:25 ============================================================================ +14:03:25 + + +waiting on router queue for slot.... +14:03:25 Sending to : +14:03:25 ============================================================================ +14:03:25 Sending to : +14:03:25 ============================================================================ +14:03:25 ============================================================================ +14:03:25 Slot Id : <193> +14:03:25 Transaction Type : REQUEST +14:03:25 Received From : +14:03:25 ============================================================================ +14:03:25 FNo. Len. Field Value +14:03:25 ============================================================================ +14:03:25 [ 1] [ 4] [0200] +14:03:25 [ 2] [ 16] [1808930300018231] +14:03:25 [ 3] [ 6] [010000] +14:03:25 [ 4] [ 12] [000010000000] +14:03:25 [ 7] [ 10] [0320140115] +14:03:25 [ 11] [ 6] [947899] +14:03:25 [ 12] [ 6] [140115] +14:03:25 [ 13] [ 4] [0320] +14:03:25 [ 15] [ 4] [0320] +14:03:25 [ 18] [ 4] [6011] +14:03:25 [ 19] [ 3] [418] +14:03:25 [ 22] [ 3] [021] +14:03:25 [ 25] [ 2] [01] +14:03:25 [ 28] [ 9] [D00002000] +14:03:25 [ 32] [ 6] [668899] +14:03:25 [ 35] [ 27] [1808930300018231=1803500682] +14:03:25 [ 37] [ 12] [507901963605] +14:03:25 [ 41] [ 8] [03020019] +14:03:25 [ 42] [ 15] [APT ] +14:03:25 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:03:25 [ 49] [ 3] [418] +14:03:25 [ 52] [ 16] [355F76B9EB36B534] +14:03:25 ============================================================================ +14:03:25 + + +waiting on router queue for slot.... +14:03:25 Sending to : +14:03:25 ============================================================================ +14:03:25 ============================================================================ +14:03:25 Slot Id : <193> +14:03:25 Transaction Type : REQUEST +14:03:25 Received From : +14:03:25 ============================================================================ +14:03:25 FNo. Len. Field Value +14:03:25 ============================================================================ +14:03:25 [ 1] [ 4] [0200] +14:03:25 [ 2] [ 16] [1808930300018231] +14:03:25 [ 3] [ 6] [010000] +14:03:25 [ 4] [ 12] [000010000000] +14:03:25 [ 7] [ 10] [0320140115] +14:03:25 [ 11] [ 6] [947899] +14:03:25 [ 12] [ 6] [140115] +14:03:25 [ 13] [ 4] [0320] +14:03:25 [ 15] [ 4] [0320] +14:03:25 [ 18] [ 4] [6011] +14:03:25 [ 19] [ 3] [418] +14:03:25 [ 22] [ 3] [021] +14:03:25 [ 25] [ 2] [01] +14:03:25 [ 28] [ 9] [D00002000] +14:03:25 [ 32] [ 6] [668899] +14:03:25 [ 35] [ 27] [1808930300018231=1803500682] +14:03:25 [ 37] [ 12] [507901963605] +14:03:25 [ 41] [ 8] [03020019] +14:03:25 [ 42] [ 15] [APT ] +14:03:25 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:03:25 [ 49] [ 3] [418] +14:03:25 [ 52] [ 16] [EAB0853DFB8610F9] +14:03:25 ============================================================================ +14:03:25 + + +waiting on router queue for slot.... +14:03:25 Sending to : <2> +14:03:25 ============================================================================ +14:03:29 ============================================================================ +14:03:29 Slot Id : <193> +14:03:29 Transaction Type : RESPONSE +14:03:29 Received From : +14:03:29 ============================================================================ +14:03:29 FNo. Len. Field Value +14:03:29 ============================================================================ +14:03:29 [ 1] [ 4] [0210] +14:03:29 [ 2] [ 16] [1808930300018231] +14:03:29 [ 3] [ 6] [010000] +14:03:29 [ 4] [ 12] [000010000000] +14:03:29 [ 6] [ 12] [000010000000] +14:03:29 [ 7] [ 10] [0320140115] +14:03:29 [ 11] [ 6] [947899] +14:03:29 [ 12] [ 6] [140115] +14:03:29 [ 13] [ 4] [0320] +14:03:29 [ 18] [ 4] [6011] +14:03:29 [ 19] [ 3] [418] +14:03:29 [ 22] [ 3] [021] +14:03:29 [ 32] [ 6] [668899] +14:03:29 [ 35] [ 27] [1808930300018231=1803500682] +14:03:29 [ 37] [ 12] [507901963605] +14:03:29 [ 38] [ 6] [947899] +14:03:29 [ 39] [ 2] [00] +14:03:29 [ 41] [ 8] [03020019] +14:03:29 [ 49] [ 3] [418] +14:03:29 [ 52] [ 16] [EAB0853DFB8610F9] +14:03:29 [ 54] [ 20] [1001418C000007484700] +14:03:29 ============================================================================ +14:03:29 Sending to : +14:03:29 ============================================================================ +14:03:29 + + +waiting on router queue for slot.... +14:03:31 ============================================================================ +14:03:31 Slot Id : <193> +14:03:31 Transaction Type : RESPONSE +14:03:31 Received From : +14:03:31 ============================================================================ +14:03:31 FNo. Len. Field Value +14:03:31 ============================================================================ +14:03:31 [ 1] [ 4] [0210] +14:03:31 [ 2] [ 16] [1808930300018231] +14:03:31 [ 3] [ 6] [010000] +14:03:31 [ 4] [ 12] [000010000000] +14:03:31 [ 6] [ 12] [000010000000] +14:03:31 [ 7] [ 10] [0320140115] +14:03:31 [ 11] [ 6] [947899] +14:03:31 [ 12] [ 6] [140115] +14:03:31 [ 13] [ 4] [0320] +14:03:31 [ 18] [ 4] [6011] +14:03:31 [ 19] [ 3] [418] +14:03:31 [ 22] [ 3] [021] +14:03:31 [ 32] [ 6] [668899] +14:03:31 [ 35] [ 27] [1808930300018231=1803500682] +14:03:31 [ 37] [ 12] [507901963605] +14:03:31 [ 38] [ 6] [947899] +14:03:31 [ 39] [ 2] [00] +14:03:31 [ 41] [ 8] [03020019] +14:03:31 [ 49] [ 3] [418] +14:03:31 [ 52] [ 16] [EAB0853DFB8610F9] +14:03:31 [ 54] [ 20] [1001418C000007484700] +14:03:31 ============================================================================ +14:03:31 Calculate Source COMM Id = 4 +14:03:31 ============================================================================ +14:03:31 + + +waiting on router queue for slot.... +14:03:35 ============================================================================ +14:03:35 Slot Id : <221> +14:03:35 Transaction Type : REQUEST +14:03:35 Received From : +14:03:35 ============================================================================ +14:03:35 FNo. Len. Field Value +14:03:35 ============================================================================ +14:03:35 [ 1] [ 4] [0200] +14:03:35 [ 2] [ 16] [6213544000578523] +14:03:35 [ 3] [ 6] [010000] +14:03:35 [ 4] [ 12] [000050000000] +14:03:35 [ 7] [ 10] [0320140125] +14:03:35 [ 11] [ 6] [947902] +14:03:35 [ 12] [ 6] [140125] +14:03:35 [ 13] [ 4] [0320] +14:03:35 [ 15] [ 4] [0320] +14:03:35 [ 18] [ 4] [6011] +14:03:35 [ 19] [ 3] [418] +14:03:35 [ 22] [ 3] [021] +14:03:35 [ 25] [ 2] [01] +14:03:35 [ 28] [ 9] [D00002000] +14:03:35 [ 32] [ 6] [668899] +14:03:35 [ 35] [ 32] [6213544000578523=491212017852118] +14:03:35 [ 37] [ 12] [507902161226] +14:03:35 [ 41] [ 8] [03020026] +14:03:35 [ 42] [ 15] [APT ] +14:03:35 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +14:03:35 [ 49] [ 3] [418] +14:03:35 [ 52] [ 16] [01E9D49A8D0BACF0] +14:03:35 ============================================================================ +14:03:35 + + +waiting on router queue for slot.... +14:03:35 Sending to : +14:03:35 ============================================================================ +14:03:35 Sending to : +14:03:35 ============================================================================ +14:03:35 ============================================================================ +14:03:35 Slot Id : <221> +14:03:35 Transaction Type : REQUEST +14:03:35 Received From : +14:03:35 ============================================================================ +14:03:35 FNo. Len. Field Value +14:03:35 ============================================================================ +14:03:35 [ 1] [ 4] [0200] +14:03:35 [ 2] [ 16] [6213544000578523] +14:03:35 [ 3] [ 6] [010000] +14:03:35 [ 4] [ 12] [000050000000] +14:03:35 [ 7] [ 10] [0320140125] +14:03:35 [ 11] [ 6] [947902] +14:03:35 [ 12] [ 6] [140125] +14:03:35 [ 13] [ 4] [0320] +14:03:35 [ 15] [ 4] [0320] +14:03:35 [ 18] [ 4] [6011] +14:03:35 [ 19] [ 3] [418] +14:03:35 [ 22] [ 3] [021] +14:03:35 [ 25] [ 2] [01] +14:03:35 [ 28] [ 9] [D00002000] +14:03:35 [ 32] [ 6] [668899] +14:03:35 [ 35] [ 32] [6213544000578523=491212017852118] +14:03:35 [ 37] [ 12] [507902161226] +14:03:35 [ 41] [ 8] [03020026] +14:03:35 [ 42] [ 15] [APT ] +14:03:35 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +14:03:35 [ 49] [ 3] [418] +14:03:35 [ 52] [ 16] [01E9D49A8D0BACF0] +14:03:35 ============================================================================ +14:03:35 + + +waiting on router queue for slot.... +14:03:35 Sending to : +14:03:35 ============================================================================ +14:03:35 ============================================================================ +14:03:35 Slot Id : <221> +14:03:35 Transaction Type : REQUEST +14:03:35 Received From : +14:03:35 ============================================================================ +14:03:35 FNo. Len. Field Value +14:03:35 ============================================================================ +14:03:35 [ 1] [ 4] [0200] +14:03:35 [ 2] [ 16] [6213544000578523] +14:03:35 [ 3] [ 6] [010000] +14:03:35 [ 4] [ 12] [000050000000] +14:03:35 [ 7] [ 10] [0320140125] +14:03:35 [ 11] [ 6] [947902] +14:03:35 [ 12] [ 6] [140125] +14:03:35 [ 13] [ 4] [0320] +14:03:35 [ 15] [ 4] [0320] +14:03:35 [ 18] [ 4] [6011] +14:03:35 [ 19] [ 3] [418] +14:03:35 [ 22] [ 3] [021] +14:03:35 [ 25] [ 2] [01] +14:03:35 [ 28] [ 9] [D00002000] +14:03:35 [ 32] [ 6] [668899] +14:03:35 [ 35] [ 32] [6213544000578523=491212017852118] +14:03:35 [ 37] [ 12] [507902161226] +14:03:35 [ 41] [ 8] [03020026] +14:03:35 [ 42] [ 15] [APT ] +14:03:35 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +14:03:35 [ 49] [ 3] [418] +14:03:35 [ 52] [ 16] [690EF85993477540] +14:03:35 ============================================================================ +14:03:35 + + +waiting on router queue for slot.... +14:03:35 Sending to : <0> +14:03:35 ============================================================================ +14:03:36 ============================================================================ +14:03:36 Slot Id : <221> +14:03:36 Transaction Type : RESPONSE +14:03:36 Received From : +14:03:36 ============================================================================ +14:03:36 FNo. Len. Field Value +14:03:36 ============================================================================ +14:03:36 [ 1] [ 4] [0210] +14:03:36 [ 2] [ 16] [6213544000578523] +14:03:36 [ 3] [ 6] [010000] +14:03:36 [ 4] [ 12] [000050000000] +14:03:36 [ 7] [ 10] [0320140125] +14:03:36 [ 11] [ 6] [947902] +14:03:36 [ 12] [ 6] [140125] +14:03:36 [ 13] [ 4] [0320] +14:03:36 [ 15] [ 4] [0320] +14:03:36 [ 18] [ 4] [6011] +14:03:36 [ 19] [ 3] [418] +14:03:36 [ 32] [ 6] [668899] +14:03:36 [ 35] [ 32] [6213544000578523=491212017852118] +14:03:36 [ 37] [ 12] [507902161226] +14:03:36 [ 38] [ 6] [871907] +14:03:36 [ 39] [ 2] [00] +14:03:36 [ 41] [ 8] [03020026] +14:03:36 [ 49] [ 3] [418] +14:03:36 [ 54] [ 40] [0001418C0000711638200002418C000071163820] +14:03:36 ============================================================================ +14:03:36 Sending to : +14:03:36 ============================================================================ +14:03:36 + + +waiting on router queue for slot.... +14:03:37 ============================================================================ +14:03:37 Slot Id : <221> +14:03:37 Transaction Type : RESPONSE +14:03:37 Received From : +14:03:37 ============================================================================ +14:03:37 FNo. Len. Field Value +14:03:37 ============================================================================ +14:03:37 [ 1] [ 4] [0210] +14:03:37 [ 2] [ 16] [6213544000578523] +14:03:37 [ 3] [ 6] [010000] +14:03:37 [ 4] [ 12] [000050000000] +14:03:37 [ 7] [ 10] [0320140125] +14:03:37 [ 11] [ 6] [947902] +14:03:37 [ 12] [ 6] [140125] +14:03:37 [ 13] [ 4] [0320] +14:03:37 [ 15] [ 4] [0320] +14:03:37 [ 18] [ 4] [6011] +14:03:37 [ 19] [ 3] [418] +14:03:37 [ 32] [ 6] [668899] +14:03:37 [ 35] [ 32] [6213544000578523=491212017852118] +14:03:37 [ 37] [ 12] [507902161226] +14:03:37 [ 38] [ 6] [871907] +14:03:37 [ 39] [ 2] [00] +14:03:37 [ 41] [ 8] [03020026] +14:03:37 [ 49] [ 3] [418] +14:03:37 [ 54] [ 40] [0001418C0000711638200002418C000071163820] +14:03:37 ============================================================================ +14:03:37 Calculate Source COMM Id = 4 +14:03:37 ============================================================================ +14:03:37 + + +waiting on router queue for slot.... +14:03:39 ============================================================================ +14:03:39 Slot Id : <212> +14:03:39 Transaction Type : REQUEST +14:03:39 Received From : +14:03:39 ============================================================================ +14:03:39 FNo. Len. Field Value +14:03:39 ============================================================================ +14:03:39 [ 1] [ 4] [0800] +14:03:39 [ 7] [ 10] [0320070245] +14:03:39 [ 11] [ 6] [156698] +14:03:39 [ 70] [ 3] [301] +14:03:39 ============================================================================ +14:03:39 + + +waiting on router queue for slot.... +14:03:39 Sending to : +14:03:39 ============================================================================ +14:03:39 ============================================================================ +14:03:39 Slot Id : <212> +14:03:39 Transaction Type : RESPONSE +14:03:39 Received From : +14:03:39 ============================================================================ +14:03:39 FNo. Len. Field Value +14:03:39 ============================================================================ +14:03:39 [ 1] [ 4] [0810] +14:03:39 [ 7] [ 10] [0320070245] +14:03:39 [ 11] [ 6] [156698] +14:03:39 [ 39] [ 2] [00] +14:03:39 [ 70] [ 3] [301] +14:03:39 ============================================================================ +14:03:39 Calculate Source COMM Id = 2 +14:03:39 ============================================================================ +14:03:39 + + +waiting on router queue for slot.... +14:03:43 ============================================================================ +14:03:43 Slot Id : <207> +14:03:43 Transaction Type : REQUEST +14:03:43 Received From : +14:03:43 ============================================================================ +14:03:43 FNo. Len. Field Value +14:03:43 ============================================================================ +14:03:43 [ 1] [ 4] [0800] +14:03:43 [ 7] [ 10] [0320211532] +14:03:43 [ 11] [ 6] [141532] +14:03:43 [ 37] [ 12] [57914141532] +14:03:43 [ 70] [ 3] [301] +14:03:43 ============================================================================ +14:03:43 + + +waiting on router queue for slot.... +14:03:43 Sending to : +14:03:43 ============================================================================ +14:03:43 ============================================================================ +14:03:43 Slot Id : <207> +14:03:43 Transaction Type : RESPONSE +14:03:43 Received From : +14:03:43 ============================================================================ +14:03:43 FNo. Len. Field Value +14:03:43 ============================================================================ +14:03:43 [ 1] [ 4] [0810] +14:03:43 [ 7] [ 10] [0320211532] +14:03:43 [ 11] [ 6] [141532] +14:03:43 [ 37] [ 12] [579141415320] +14:03:43 [ 39] [ 2] [00] +14:03:43 [ 70] [ 3] [810] +14:03:43 ============================================================================ +14:03:43 Calculate Source COMM Id = 6 +14:03:43 ============================================================================ +14:03:43 + + +waiting on router queue for slot.... +14:03:46 ============================================================================ +14:03:46 Slot Id : <208> +14:03:46 Transaction Type : REQUEST +14:03:46 Received From : +14:03:46 ============================================================================ +14:03:46 FNo. Len. Field Value +14:03:46 ============================================================================ +14:03:46 [ 1] [ 4] [0200] +14:03:46 [ 2] [ 16] [6688990030009672] +14:03:46 [ 3] [ 6] [011000] +14:03:46 [ 4] [ 12] [000015000000] +14:03:46 [ 7] [ 10] [0320140341] +14:03:46 [ 11] [ 6] [765173] +14:03:46 [ 12] [ 6] [140341] +14:03:46 [ 13] [ 4] [0320] +14:03:46 [ 15] [ 4] [0320] +14:03:46 [ 18] [ 4] [6011] +14:03:46 [ 22] [ 3] [900] +14:03:46 [ 25] [ 2] [02] +14:03:46 [ 28] [ 9] [D00002000] +14:03:46 [ 32] [ 6] [621354] +14:03:46 [ 35] [ 37] [6688990030009672=98011261125604100000] +14:03:46 [ 37] [ 12] [507904724396] +14:03:46 [ 41] [ 8] [18001100] +14:03:46 [ 42] [ 15] [NATIVE ] +14:03:46 [ 43] [ 40] [Ban Naxong May LAO] +14:03:46 [ 49] [ 3] [418] +14:03:46 [ 52] [ 16] [0B45F86DAA83D323] +14:03:46 ============================================================================ +14:03:46 + + +waiting on router queue for slot.... +14:03:46 Sending to : +14:03:46 ============================================================================ +14:03:46 Sending to : +14:03:46 ============================================================================ +14:03:46 ============================================================================ +14:03:46 Slot Id : <208> +14:03:46 Transaction Type : REQUEST +14:03:46 Received From : +14:03:46 ============================================================================ +14:03:46 FNo. Len. Field Value +14:03:46 ============================================================================ +14:03:46 [ 1] [ 4] [0200] +14:03:46 [ 2] [ 16] [6688990030009672] +14:03:46 [ 3] [ 6] [011000] +14:03:46 [ 4] [ 12] [000015000000] +14:03:46 [ 7] [ 10] [0320140341] +14:03:46 [ 11] [ 6] [765173] +14:03:46 [ 12] [ 6] [140341] +14:03:46 [ 13] [ 4] [0320] +14:03:46 [ 15] [ 4] [0320] +14:03:46 [ 18] [ 4] [6011] +14:03:46 [ 22] [ 3] [900] +14:03:46 [ 25] [ 2] [02] +14:03:46 [ 28] [ 9] [D00002000] +14:03:46 [ 32] [ 6] [621354] +14:03:46 [ 35] [ 37] [6688990030009672=98011261125604100000] +14:03:46 [ 37] [ 12] [507904724396] +14:03:46 [ 41] [ 8] [18001100] +14:03:46 [ 42] [ 15] [NATIVE ] +14:03:46 [ 43] [ 40] [Ban Naxong May LAO] +14:03:46 [ 49] [ 3] [418] +14:03:46 [ 52] [ 16] [0B45F86DAA83D323] +14:03:46 ============================================================================ +14:03:46 + + +waiting on router queue for slot.... +14:03:46 Sending to : +14:03:46 ============================================================================ +14:03:46 ============================================================================ +14:03:46 Slot Id : <208> +14:03:46 Transaction Type : REQUEST +14:03:46 Received From : +14:03:46 ============================================================================ +14:03:46 FNo. Len. Field Value +14:03:46 ============================================================================ +14:03:46 [ 1] [ 4] [0200] +14:03:46 [ 2] [ 16] [6688990030009672] +14:03:46 [ 3] [ 6] [011000] +14:03:46 [ 4] [ 12] [000015000000] +14:03:46 [ 7] [ 10] [0320140341] +14:03:46 [ 11] [ 6] [765173] +14:03:46 [ 12] [ 6] [140341] +14:03:46 [ 13] [ 4] [0320] +14:03:46 [ 15] [ 4] [0320] +14:03:46 [ 18] [ 4] [6011] +14:03:46 [ 22] [ 3] [900] +14:03:46 [ 25] [ 2] [02] +14:03:46 [ 28] [ 9] [D00002000] +14:03:46 [ 32] [ 6] [621354] +14:03:46 [ 35] [ 37] [6688990030009672=98011261125604100000] +14:03:46 [ 37] [ 12] [507904724396] +14:03:46 [ 41] [ 8] [18001100] +14:03:46 [ 42] [ 15] [NATIVE ] +14:03:46 [ 43] [ 40] [Ban Naxong May LAO] +14:03:46 [ 49] [ 3] [418] +14:03:46 [ 52] [ 16] [EE5D45B2E8F41C0F] +14:03:46 ============================================================================ +14:03:46 + + +waiting on router queue for slot.... +14:03:46 Sending to : <4> +14:03:46 ============================================================================ +14:03:46 ============================================================================ +14:03:46 Slot Id : <208> +14:03:46 Transaction Type : RESPONSE +14:03:46 Received From : +14:03:46 ============================================================================ +14:03:46 FNo. Len. Field Value +14:03:46 ============================================================================ +14:03:46 [ 1] [ 4] [0210] +14:03:46 [ 2] [ 16] [6688990030009672] +14:03:46 [ 3] [ 6] [011000] +14:03:46 [ 4] [ 12] [000015000000] +14:03:46 [ 11] [ 6] [765173] +14:03:46 [ 12] [ 6] [140341] +14:03:46 [ 15] [ 4] [0320] +14:03:46 [ 18] [ 4] [6011] +14:03:46 [ 32] [ 6] [621354] +14:03:46 [ 35] [ 37] [6688990030009672=98011261125604100000] +14:03:46 [ 37] [ 12] [507904724396] +14:03:46 [ 39] [ 2] [51] +14:03:46 [ 41] [ 8] [18001100] +14:03:46 [ 49] [ 3] [418] +14:03:46 [ 54] [ 0] [] +14:03:46 ============================================================================ +14:03:46 Sending to : +14:03:46 ============================================================================ +14:03:46 + + +waiting on router queue for slot.... +14:03:47 ============================================================================ +14:03:47 Slot Id : <183> +14:03:47 Transaction Type : REQUEST +14:03:47 Received From : +14:03:47 ============================================================================ +14:03:47 FNo. Len. Field Value +14:03:47 ============================================================================ +14:03:47 [ 1] [ 4] [0200] +14:03:47 [ 2] [ 16] [6213545000020085] +14:03:47 [ 3] [ 6] [010000] +14:03:47 [ 4] [ 12] [000100000000] +14:03:47 [ 7] [ 10] [0320070254] +14:03:47 [ 11] [ 6] [269502] +14:03:47 [ 12] [ 6] [140254] +14:03:47 [ 13] [ 4] [0320] +14:03:47 [ 14] [ 4] [4912] +14:03:47 [ 15] [ 4] [0320] +14:03:47 [ 18] [ 4] [6011] +14:03:47 [ 19] [ 3] [418] +14:03:47 [ 22] [ 3] [021] +14:03:47 [ 25] [ 2] [01] +14:03:47 [ 28] [ 9] [D00002000] +14:03:47 [ 32] [ 6] [180893] +14:03:47 [ 35] [ 32] [6213545000020085=491212012008973] +14:03:47 [ 37] [ 12] [507907269502] +14:03:47 [ 41] [ 8] [0111BLBR] +14:03:47 [ 42] [ 15] [999999 ] +14:03:47 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:03:47 [ 49] [ 3] [418] +14:03:47 [ 52] [ 16] [6ECED5D19342B253] +14:03:47 ============================================================================ +14:03:47 + + +waiting on router queue for slot.... +14:03:47 Sending to : +14:03:47 ============================================================================ +14:03:47 Sending to : +14:03:47 ============================================================================ +14:03:47 ============================================================================ +14:03:47 Slot Id : <183> +14:03:47 Transaction Type : REQUEST +14:03:47 Received From : +14:03:47 ============================================================================ +14:03:47 FNo. Len. Field Value +14:03:47 ============================================================================ +14:03:47 [ 1] [ 4] [0200] +14:03:47 [ 2] [ 16] [6213545000020085] +14:03:47 [ 3] [ 6] [010000] +14:03:47 [ 4] [ 12] [000100000000] +14:03:47 [ 7] [ 10] [0320070254] +14:03:47 [ 11] [ 6] [269502] +14:03:47 [ 12] [ 6] [140254] +14:03:47 [ 13] [ 4] [0320] +14:03:47 [ 14] [ 4] [4912] +14:03:47 [ 15] [ 4] [0320] +14:03:47 [ 18] [ 4] [6011] +14:03:47 [ 19] [ 3] [418] +14:03:47 [ 22] [ 3] [021] +14:03:47 [ 25] [ 2] [01] +14:03:47 [ 28] [ 9] [D00002000] +14:03:47 [ 32] [ 6] [180893] +14:03:47 [ 35] [ 32] [6213545000020085=491212012008973] +14:03:47 [ 37] [ 12] [507907269502] +14:03:47 [ 41] [ 8] [0111BLBR] +14:03:47 [ 42] [ 15] [999999 ] +14:03:47 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:03:47 [ 49] [ 3] [418] +14:03:47 [ 52] [ 16] [6ECED5D19342B253] +14:03:47 ============================================================================ +14:03:47 + + +waiting on router queue for slot.... +14:03:47 Sending to : +14:03:47 ============================================================================ +14:03:47 ============================================================================ +14:03:47 Slot Id : <183> +14:03:47 Transaction Type : REQUEST +14:03:47 Received From : +14:03:47 ============================================================================ +14:03:47 FNo. Len. Field Value +14:03:47 ============================================================================ +14:03:47 [ 1] [ 4] [0200] +14:03:47 [ 2] [ 16] [6213545000020085] +14:03:47 [ 3] [ 6] [010000] +14:03:47 [ 4] [ 12] [000100000000] +14:03:47 [ 7] [ 10] [0320070254] +14:03:47 [ 11] [ 6] [269502] +14:03:47 [ 12] [ 6] [140254] +14:03:47 [ 13] [ 4] [0320] +14:03:47 [ 14] [ 4] [4912] +14:03:47 [ 15] [ 4] [0320] +14:03:47 [ 18] [ 4] [6011] +14:03:47 [ 19] [ 3] [418] +14:03:47 [ 22] [ 3] [021] +14:03:47 [ 25] [ 2] [01] +14:03:47 [ 28] [ 9] [D00002000] +14:03:47 [ 32] [ 6] [180893] +14:03:47 [ 35] [ 32] [6213545000020085=491212012008973] +14:03:47 [ 37] [ 12] [507907269502] +14:03:47 [ 41] [ 8] [0111BLBR] +14:03:47 [ 42] [ 15] [999999 ] +14:03:47 [ 43] [ 40] [ATM BOLIKHAMXAY BRANCH LOCATION, Pakxan,] +14:03:47 [ 49] [ 3] [418] +14:03:47 [ 52] [ 16] [FC7CECC754804787] +14:03:47 ============================================================================ +14:03:47 + + +waiting on router queue for slot.... +14:03:47 Sending to : <0> +14:03:47 ============================================================================ +14:03:48 ============================================================================ +14:03:48 Slot Id : <208> +14:03:48 Transaction Type : RESPONSE +14:03:48 Received From : +14:03:48 ============================================================================ +14:03:48 FNo. Len. Field Value +14:03:48 ============================================================================ +14:03:48 [ 1] [ 4] [0210] +14:03:48 [ 2] [ 16] [6688990030009672] +14:03:48 [ 3] [ 6] [011000] +14:03:48 [ 4] [ 12] [000015000000] +14:03:48 [ 11] [ 6] [765173] +14:03:48 [ 12] [ 6] [140341] +14:03:48 [ 15] [ 4] [0320] +14:03:48 [ 18] [ 4] [6011] +14:03:48 [ 32] [ 6] [621354] +14:03:48 [ 35] [ 37] [6688990030009672=98011261125604100000] +14:03:48 [ 37] [ 12] [507904724396] +14:03:48 [ 39] [ 2] [51] +14:03:48 [ 41] [ 8] [18001100] +14:03:48 [ 49] [ 3] [418] +14:03:48 [ 54] [ 0] [] +14:03:48 ============================================================================ +14:03:48 Calculate Source COMM Id = 0 +14:03:48 ============================================================================ +14:03:48 + + +waiting on router queue for slot.... +14:03:48 ============================================================================ +14:03:48 Slot Id : <183> +14:03:48 Transaction Type : RESPONSE +14:03:48 Received From : +14:03:48 ============================================================================ +14:03:48 FNo. Len. Field Value +14:03:48 ============================================================================ +14:03:48 [ 1] [ 4] [0210] +14:03:48 [ 2] [ 16] [6213545000020085] +14:03:48 [ 3] [ 6] [010000] +14:03:48 [ 4] [ 12] [000100000000] +14:03:48 [ 7] [ 10] [0320070254] +14:03:48 [ 11] [ 6] [269502] +14:03:48 [ 12] [ 6] [140254] +14:03:48 [ 13] [ 4] [0320] +14:03:48 [ 15] [ 4] [0320] +14:03:48 [ 18] [ 4] [6011] +14:03:48 [ 19] [ 3] [418] +14:03:48 [ 32] [ 6] [180893] +14:03:48 [ 35] [ 32] [6213545000020085=491212012008973] +14:03:48 [ 37] [ 12] [507907269502] +14:03:48 [ 38] [ 6] [273532] +14:03:48 [ 39] [ 2] [00] +14:03:48 [ 41] [ 8] [0111BLBR] +14:03:48 [ 49] [ 3] [418] +14:03:48 [ 54] [ 40] [0001418C0015671450570002418C001567145057] +14:03:48 ============================================================================ +14:03:48 Sending to : +14:03:48 ============================================================================ +14:03:48 + + +waiting on router queue for slot.... +14:03:49 ============================================================================ +14:03:49 Slot Id : <183> +14:03:49 Transaction Type : RESPONSE +14:03:49 Received From : +14:03:49 ============================================================================ +14:03:49 FNo. Len. Field Value +14:03:49 ============================================================================ +14:03:49 [ 1] [ 4] [0210] +14:03:49 [ 2] [ 16] [6213545000020085] +14:03:49 [ 3] [ 6] [010000] +14:03:49 [ 4] [ 12] [000100000000] +14:03:49 [ 7] [ 10] [0320070254] +14:03:49 [ 11] [ 6] [269502] +14:03:49 [ 12] [ 6] [140254] +14:03:49 [ 13] [ 4] [0320] +14:03:49 [ 15] [ 4] [0320] +14:03:49 [ 18] [ 4] [6011] +14:03:49 [ 19] [ 3] [418] +14:03:49 [ 32] [ 6] [180893] +14:03:49 [ 35] [ 32] [6213545000020085=491212012008973] +14:03:49 [ 37] [ 12] [507907269502] +14:03:49 [ 38] [ 6] [273532] +14:03:49 [ 39] [ 2] [00] +14:03:49 [ 41] [ 8] [0111BLBR] +14:03:49 [ 49] [ 3] [418] +14:03:49 [ 54] [ 40] [0001418C0015671450570002418C001567145057] +14:03:49 ============================================================================ +14:03:49 Calculate Source COMM Id = 2 +14:03:49 ============================================================================ +14:03:49 + + +waiting on router queue for slot.... +14:03:50 ============================================================================ +14:03:50 Slot Id : <211> +14:03:50 Transaction Type : REQUEST +14:03:50 Received From : +14:03:50 ============================================================================ +14:03:50 FNo. Len. Field Value +14:03:50 ============================================================================ +14:03:50 [ 1] [ 4] [0200] +14:03:50 [ 2] [ 16] [6688990103541601] +14:03:50 [ 3] [ 6] [011000] +14:03:50 [ 4] [ 12] [000090000000] +14:03:50 [ 7] [ 10] [0320070257] +14:03:50 [ 11] [ 6] [269504] +14:03:50 [ 12] [ 6] [140257] +14:03:50 [ 13] [ 4] [0320] +14:03:50 [ 14] [ 4] [4301] +14:03:50 [ 15] [ 4] [0320] +14:03:50 [ 18] [ 4] [6011] +14:03:50 [ 19] [ 3] [418] +14:03:50 [ 22] [ 3] [021] +14:03:50 [ 25] [ 2] [01] +14:03:50 [ 28] [ 9] [D00002000] +14:03:50 [ 32] [ 6] [180893] +14:03:50 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:03:50 [ 37] [ 12] [507907269504] +14:03:50 [ 41] [ 8] [0221XKKM] +14:03:50 [ 42] [ 15] [999999 ] +14:03:50 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:03:50 [ 49] [ 3] [418] +14:03:50 [ 52] [ 16] [AA0147EB6F7A5445] +14:03:50 ============================================================================ +14:03:50 + + +waiting on router queue for slot.... +14:03:50 Sending to : +14:03:50 ============================================================================ +14:03:50 Sending to : +14:03:50 ============================================================================ +14:03:50 ============================================================================ +14:03:50 Slot Id : <230> +14:03:50 Transaction Type : REQUEST +14:03:50 Received From : +14:03:50 ============================================================================ +14:03:50 FNo. Len. Field Value +14:03:50 ============================================================================ +14:03:50 [ 1] [ 4] [0800] +14:03:50 [ 2] [ 5] [02531] +14:03:50 [ 3] [ 6] [579148] +14:03:50 [ 7] [ 10] [0320070350] +14:03:50 [ 11] [ 6] [807228] +14:03:50 [ 15] [ 10] [0320070350] +14:03:50 [ 37] [ 11] [57914807228] +14:03:50 [ 70] [ 3] [001] +14:03:50 ============================================================================ +14:03:50 + + +waiting on router queue for slot.... +14:03:50 ============================================================================ +14:03:50 Slot Id : <230> +14:03:50 Transaction Type : RESPONSE +14:03:50 Received From : +14:03:50 ============================================================================ +14:03:50 FNo. Len. Field Value +14:03:50 ============================================================================ +14:03:50 [ 1] [ 4] [0810] +14:03:50 [ 7] [ 10] [0320070350] +14:03:50 [ 11] [ 6] [807228] +14:03:50 [ 15] [ 4] [0320] +14:03:50 [ 37] [ 12] [57914807228] +14:03:50 [ 39] [ 2] [00] +14:03:50 [ 70] [ 3] [001] +14:03:50 ============================================================================ +14:03:50 Sending to : +14:03:50 ============================================================================ +14:03:50 + + +waiting on router queue for slot.... +14:03:50 ============================================================================ +14:03:50 Slot Id : <211> +14:03:50 Transaction Type : REQUEST +14:03:50 Received From : +14:03:50 ============================================================================ +14:03:50 FNo. Len. Field Value +14:03:50 ============================================================================ +14:03:50 [ 1] [ 4] [0200] +14:03:50 [ 2] [ 16] [6688990103541601] +14:03:50 [ 3] [ 6] [011000] +14:03:50 [ 4] [ 12] [000090000000] +14:03:50 [ 7] [ 10] [0320070257] +14:03:50 [ 11] [ 6] [269504] +14:03:50 [ 12] [ 6] [140257] +14:03:50 [ 13] [ 4] [0320] +14:03:50 [ 14] [ 4] [4301] +14:03:50 [ 15] [ 4] [0320] +14:03:50 [ 18] [ 4] [6011] +14:03:50 [ 19] [ 3] [418] +14:03:50 [ 22] [ 3] [021] +14:03:50 [ 25] [ 2] [01] +14:03:50 [ 28] [ 9] [D00002000] +14:03:50 [ 32] [ 6] [180893] +14:03:50 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:03:50 [ 37] [ 12] [507907269504] +14:03:50 [ 41] [ 8] [0221XKKM] +14:03:50 [ 42] [ 15] [999999 ] +14:03:50 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:03:50 [ 49] [ 3] [418] +14:03:50 [ 52] [ 16] [AA0147EB6F7A5445] +14:03:50 ============================================================================ +14:03:50 + + +waiting on router queue for slot.... +14:03:50 Sending to : +14:03:50 ============================================================================ +14:03:50 ============================================================================ +14:03:50 Slot Id : <211> +14:03:50 Transaction Type : REQUEST +14:03:50 Received From : +14:03:50 ============================================================================ +14:03:50 FNo. Len. Field Value +14:03:50 ============================================================================ +14:03:50 [ 1] [ 4] [0200] +14:03:50 [ 2] [ 16] [6688990103541601] +14:03:50 [ 3] [ 6] [011000] +14:03:50 [ 4] [ 12] [000090000000] +14:03:50 [ 7] [ 10] [0320070257] +14:03:50 [ 11] [ 6] [269504] +14:03:50 [ 12] [ 6] [140257] +14:03:50 [ 13] [ 4] [0320] +14:03:50 [ 14] [ 4] [4301] +14:03:50 [ 15] [ 4] [0320] +14:03:50 [ 18] [ 4] [6011] +14:03:50 [ 19] [ 3] [418] +14:03:50 [ 22] [ 3] [021] +14:03:50 [ 25] [ 2] [01] +14:03:50 [ 28] [ 9] [D00002000] +14:03:50 [ 32] [ 6] [180893] +14:03:50 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:03:50 [ 37] [ 12] [507907269504] +14:03:50 [ 41] [ 8] [0221XKKM] +14:03:50 [ 42] [ 15] [999999 ] +14:03:50 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:03:50 [ 49] [ 3] [418] +14:03:50 [ 52] [ 16] [11EBC6641DBB9C42] +14:03:50 ============================================================================ +14:03:50 + + +waiting on router queue for slot.... +14:03:50 Sending to : <0> +14:03:50 ============================================================================ +14:03:52 ============================================================================ +14:03:52 Slot Id : <211> +14:03:52 Transaction Type : RESPONSE +14:03:52 Received From : +14:03:52 ============================================================================ +14:03:52 FNo. Len. Field Value +14:03:52 ============================================================================ +14:03:52 [ 1] [ 4] [0210] +14:03:52 [ 2] [ 16] [6688990103541601] +14:03:52 [ 3] [ 6] [011000] +14:03:52 [ 4] [ 12] [000090000000] +14:03:52 [ 7] [ 10] [0320070257] +14:03:52 [ 11] [ 6] [269504] +14:03:52 [ 12] [ 6] [140257] +14:03:52 [ 13] [ 4] [0320] +14:03:52 [ 15] [ 4] [0320] +14:03:52 [ 18] [ 4] [6011] +14:03:52 [ 19] [ 3] [418] +14:03:52 [ 22] [ 3] [021] +14:03:52 [ 32] [ 6] [180893] +14:03:52 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:03:52 [ 37] [ 12] [507907269504] +14:03:52 [ 39] [ 2] [14] +14:03:52 [ 41] [ 8] [0221XKKM] +14:03:52 [ 49] [ 3] [418] +14:03:52 ============================================================================ +14:03:52 Sending to : +14:03:52 ============================================================================ +14:03:52 + + +waiting on router queue for slot.... +14:03:53 ============================================================================ +14:03:53 Slot Id : <211> +14:03:53 Transaction Type : RESPONSE +14:03:53 Received From : +14:03:53 ============================================================================ +14:03:53 FNo. Len. Field Value +14:03:53 ============================================================================ +14:03:53 [ 1] [ 4] [0210] +14:03:53 [ 2] [ 16] [6688990103541601] +14:03:53 [ 3] [ 6] [011000] +14:03:53 [ 4] [ 12] [000090000000] +14:03:53 [ 7] [ 10] [0320070257] +14:03:53 [ 11] [ 6] [269504] +14:03:53 [ 12] [ 6] [140257] +14:03:53 [ 13] [ 4] [0320] +14:03:53 [ 15] [ 4] [0320] +14:03:53 [ 18] [ 4] [6011] +14:03:53 [ 19] [ 3] [418] +14:03:53 [ 22] [ 3] [021] +14:03:53 [ 32] [ 6] [180893] +14:03:53 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:03:53 [ 37] [ 12] [507907269504] +14:03:53 [ 39] [ 2] [14] +14:03:53 [ 41] [ 8] [0221XKKM] +14:03:53 [ 49] [ 3] [418] +14:03:53 ============================================================================ +14:03:53 Calculate Source COMM Id = 2 +14:03:53 ============================================================================ +14:03:53 + + +waiting on router queue for slot.... +14:04:04 ============================================================================ +14:04:04 Slot Id : <169> +14:04:04 Transaction Type : REQUEST +14:04:04 Received From : +14:04:04 ============================================================================ +14:04:04 FNo. Len. Field Value +14:04:04 ============================================================================ +14:04:04 [ 1] [ 4] [0800] +14:04:04 [ 7] [ 10] [0320070312] +14:04:04 [ 11] [ 6] [156699] +14:04:04 [ 70] [ 3] [301] +14:04:04 ============================================================================ +14:04:04 + + +waiting on router queue for slot.... +14:04:04 Sending to : +14:04:04 ============================================================================ +14:04:04 ============================================================================ +14:04:04 Slot Id : <169> +14:04:04 Transaction Type : RESPONSE +14:04:04 Received From : +14:04:04 ============================================================================ +14:04:04 FNo. Len. Field Value +14:04:04 ============================================================================ +14:04:04 [ 1] [ 4] [0810] +14:04:04 [ 7] [ 10] [0320070312] +14:04:04 [ 11] [ 6] [156699] +14:04:04 [ 39] [ 2] [00] +14:04:04 [ 70] [ 3] [301] +14:04:04 ============================================================================ +14:04:04 Calculate Source COMM Id = 2 +14:04:04 ============================================================================ +14:04:04 + + +waiting on router queue for slot.... +14:04:13 ============================================================================ +14:04:13 Slot Id : <185> +14:04:13 Transaction Type : REQUEST +14:04:13 Received From : +14:04:13 ============================================================================ +14:04:13 FNo. Len. Field Value +14:04:13 ============================================================================ +14:04:13 [ 1] [ 4] [0200] +14:04:13 [ 2] [ 16] [6688990105014904] +14:04:13 [ 3] [ 6] [012000] +14:04:13 [ 4] [ 12] [000100000000] +14:04:13 [ 7] [ 10] [0320140409] +14:04:13 [ 11] [ 6] [765228] +14:04:13 [ 12] [ 6] [140409] +14:04:13 [ 13] [ 4] [0320] +14:04:13 [ 15] [ 4] [0320] +14:04:13 [ 18] [ 4] [6011] +14:04:13 [ 22] [ 3] [900] +14:04:13 [ 25] [ 2] [02] +14:04:13 [ 28] [ 9] [D00002000] +14:04:13 [ 32] [ 6] [621354] +14:04:13 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:04:13 [ 37] [ 12] [507904635676] +14:04:13 [ 41] [ 8] [17000800] +14:04:13 [ 42] [ 15] [NATIVE ] +14:04:13 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:04:13 [ 49] [ 3] [418] +14:04:13 [ 52] [ 16] [8D48F9BC598F7280] +14:04:13 ============================================================================ +14:04:13 + + +waiting on router queue for slot.... +14:04:13 Sending to : +14:04:13 ============================================================================ +14:04:13 Sending to : +14:04:13 ============================================================================ +14:04:13 ============================================================================ +14:04:13 Slot Id : <185> +14:04:13 Transaction Type : REQUEST +14:04:13 Received From : +14:04:13 ============================================================================ +14:04:13 FNo. Len. Field Value +14:04:13 ============================================================================ +14:04:13 [ 1] [ 4] [0200] +14:04:13 [ 2] [ 16] [6688990105014904] +14:04:13 [ 3] [ 6] [012000] +14:04:13 [ 4] [ 12] [000100000000] +14:04:13 [ 7] [ 10] [0320140409] +14:04:13 [ 11] [ 6] [765228] +14:04:13 [ 12] [ 6] [140409] +14:04:13 [ 13] [ 4] [0320] +14:04:13 [ 15] [ 4] [0320] +14:04:13 [ 18] [ 4] [6011] +14:04:13 [ 22] [ 3] [900] +14:04:13 [ 25] [ 2] [02] +14:04:13 [ 28] [ 9] [D00002000] +14:04:13 [ 32] [ 6] [621354] +14:04:13 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:04:13 [ 37] [ 12] [507904635676] +14:04:13 [ 41] [ 8] [17000800] +14:04:13 [ 42] [ 15] [NATIVE ] +14:04:13 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:04:13 [ 49] [ 3] [418] +14:04:13 [ 52] [ 16] [8D48F9BC598F7280] +14:04:13 ============================================================================ +14:04:13 + + +waiting on router queue for slot.... +14:04:13 Sending to : +14:04:13 ============================================================================ +14:04:13 ============================================================================ +14:04:13 Slot Id : <185> +14:04:13 Transaction Type : REQUEST +14:04:13 Received From : +14:04:13 ============================================================================ +14:04:13 FNo. Len. Field Value +14:04:13 ============================================================================ +14:04:13 [ 1] [ 4] [0200] +14:04:13 [ 2] [ 16] [6688990105014904] +14:04:13 [ 3] [ 6] [012000] +14:04:13 [ 4] [ 12] [000100000000] +14:04:13 [ 7] [ 10] [0320140409] +14:04:13 [ 11] [ 6] [765228] +14:04:13 [ 12] [ 6] [140409] +14:04:13 [ 13] [ 4] [0320] +14:04:13 [ 15] [ 4] [0320] +14:04:13 [ 18] [ 4] [6011] +14:04:13 [ 22] [ 3] [900] +14:04:13 [ 25] [ 2] [02] +14:04:13 [ 28] [ 9] [D00002000] +14:04:13 [ 32] [ 6] [621354] +14:04:13 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:04:13 [ 37] [ 12] [507904635676] +14:04:13 [ 41] [ 8] [17000800] +14:04:13 [ 42] [ 15] [NATIVE ] +14:04:13 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:04:13 [ 49] [ 3] [418] +14:04:13 [ 52] [ 16] [883C480C8C0C895A] +14:04:13 ============================================================================ +14:04:13 + + +waiting on router queue for slot.... +14:04:13 Sending to : <4> +14:04:13 ============================================================================ +14:04:14 ============================================================================ +14:04:14 Slot Id : <189> +14:04:14 Transaction Type : REQUEST +14:04:14 Received From : +14:04:14 ============================================================================ +14:04:14 FNo. Len. Field Value +14:04:14 ============================================================================ +14:04:14 [ 1] [ 4] [0200] +14:04:14 [ 2] [ 19] [6222082010002177024] +14:04:14 [ 3] [ 6] [010000] +14:04:14 [ 4] [ 12] [000200000000] +14:04:14 [ 7] [ 10] [0320070321] +14:04:14 [ 11] [ 6] [269510] +14:04:14 [ 12] [ 6] [140321] +14:04:14 [ 13] [ 4] [0320] +14:04:14 [ 14] [ 4] [2203] +14:04:14 [ 15] [ 4] [0320] +14:04:14 [ 18] [ 4] [6011] +14:04:14 [ 19] [ 3] [418] +14:04:14 [ 22] [ 3] [021] +14:04:14 [ 25] [ 2] [01] +14:04:14 [ 28] [ 9] [D00015000] +14:04:14 [ 32] [ 6] [180893] +14:04:14 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:04:14 [ 37] [ 12] [507907269510] +14:04:14 [ 41] [ 8] [0441VT52] +14:04:14 [ 42] [ 15] [999999 ] +14:04:14 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +14:04:14 [ 49] [ 3] [418] +14:04:14 [ 52] [ 16] [677B220839BB3FC0] +14:04:14 ============================================================================ +14:04:14 + + +waiting on router queue for slot.... +14:04:14 Sending to : +14:04:14 ============================================================================ +14:04:14 Sending to : +14:04:14 ============================================================================ +14:04:14 ============================================================================ +14:04:14 Slot Id : <185> +14:04:14 Transaction Type : RESPONSE +14:04:14 Received From : +14:04:14 ============================================================================ +14:04:14 FNo. Len. Field Value +14:04:14 ============================================================================ +14:04:14 [ 1] [ 4] [0210] +14:04:14 [ 2] [ 16] [6688990105014904] +14:04:14 [ 3] [ 6] [012000] +14:04:14 [ 4] [ 12] [000100000000] +14:04:14 [ 11] [ 6] [765228] +14:04:14 [ 12] [ 6] [140409] +14:04:14 [ 15] [ 4] [0320] +14:04:14 [ 18] [ 4] [6011] +14:04:14 [ 32] [ 6] [621354] +14:04:14 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:04:14 [ 37] [ 12] [507904635676] +14:04:14 [ 38] [ 6] [283199] +14:04:14 [ 39] [ 2] [00] +14:04:14 [ 41] [ 8] [17000800] +14:04:14 [ 49] [ 3] [418] +14:04:14 [ 54] [ 20] [2002418C000436290816] +14:04:14 ============================================================================ +14:04:14 Sending to : +14:04:14 ============================================================================ +14:04:14 + + +waiting on router queue for slot.... +14:04:14 ============================================================================ +14:04:14 Slot Id : <189> +14:04:14 Transaction Type : REQUEST +14:04:14 Received From : +14:04:14 ============================================================================ +14:04:14 FNo. Len. Field Value +14:04:14 ============================================================================ +14:04:14 [ 1] [ 4] [0200] +14:04:14 [ 2] [ 19] [6222082010002177024] +14:04:14 [ 3] [ 6] [010000] +14:04:14 [ 4] [ 12] [000200000000] +14:04:14 [ 7] [ 10] [0320070321] +14:04:14 [ 11] [ 6] [269510] +14:04:14 [ 12] [ 6] [140321] +14:04:14 [ 13] [ 4] [0320] +14:04:14 [ 14] [ 4] [2203] +14:04:14 [ 15] [ 4] [0320] +14:04:14 [ 18] [ 4] [6011] +14:04:14 [ 19] [ 3] [418] +14:04:14 [ 22] [ 3] [021] +14:04:14 [ 25] [ 2] [01] +14:04:14 [ 28] [ 9] [D00015000] +14:04:14 [ 32] [ 6] [180893] +14:04:14 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:04:14 [ 37] [ 12] [507907269510] +14:04:14 [ 41] [ 8] [0441VT52] +14:04:14 [ 42] [ 15] [999999 ] +14:04:14 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +14:04:14 [ 49] [ 3] [418] +14:04:14 [ 52] [ 16] [677B220839BB3FC0] +14:04:14 ============================================================================ +14:04:14 + + +waiting on router queue for slot.... +14:04:14 Sending to : +14:04:14 ============================================================================ +14:04:14 ============================================================================ +14:04:14 Slot Id : <189> +14:04:14 Transaction Type : REQUEST +14:04:14 Received From : +14:04:14 ============================================================================ +14:04:14 FNo. Len. Field Value +14:04:14 ============================================================================ +14:04:14 [ 1] [ 4] [0200] +14:04:14 [ 2] [ 19] [6222082010002177024] +14:04:14 [ 3] [ 6] [010000] +14:04:14 [ 4] [ 12] [000200000000] +14:04:14 [ 7] [ 10] [0320070321] +14:04:14 [ 11] [ 6] [269510] +14:04:14 [ 12] [ 6] [140321] +14:04:14 [ 13] [ 4] [0320] +14:04:14 [ 14] [ 4] [2203] +14:04:14 [ 15] [ 4] [0320] +14:04:14 [ 18] [ 4] [6011] +14:04:14 [ 19] [ 3] [418] +14:04:14 [ 22] [ 3] [021] +14:04:14 [ 25] [ 2] [01] +14:04:14 [ 28] [ 9] [D00015000] +14:04:14 [ 32] [ 6] [180893] +14:04:14 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:04:14 [ 37] [ 12] [507907269510] +14:04:14 [ 41] [ 8] [0441VT52] +14:04:14 [ 42] [ 15] [999999 ] +14:04:14 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +14:04:14 [ 49] [ 3] [418] +14:04:14 [ 52] [ 16] [B5FBF6FB7F40D0AA] +14:04:14 ============================================================================ +14:04:14 + + +waiting on router queue for slot.... +14:04:14 Sending to : <0> +14:04:14 ============================================================================ +14:04:15 ============================================================================ +14:04:15 Slot Id : <189> +14:04:15 Transaction Type : RESPONSE +14:04:15 Received From : +14:04:15 ============================================================================ +14:04:15 FNo. Len. Field Value +14:04:15 ============================================================================ +14:04:15 [ 1] [ 4] [0210] +14:04:15 [ 2] [ 19] [6222082010002177024] +14:04:15 [ 3] [ 6] [010000] +14:04:15 [ 4] [ 12] [000200000000] +14:04:15 [ 7] [ 10] [0320070321] +14:04:15 [ 11] [ 6] [269510] +14:04:15 [ 12] [ 6] [140321] +14:04:15 [ 13] [ 4] [0320] +14:04:15 [ 15] [ 4] [0320] +14:04:15 [ 18] [ 4] [6011] +14:04:15 [ 19] [ 3] [418] +14:04:15 [ 22] [ 3] [021] +14:04:15 [ 32] [ 6] [180893] +14:04:15 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:04:15 [ 37] [ 12] [507907269510] +14:04:15 [ 39] [ 2] [61] +14:04:15 [ 41] [ 8] [0441VT52] +14:04:15 [ 49] [ 3] [418] +14:04:15 ============================================================================ +14:04:15 Sending to : +14:04:15 ============================================================================ +14:04:15 + + +waiting on router queue for slot.... +14:04:15 ============================================================================ +14:04:15 Slot Id : <205> +14:04:15 Transaction Type : REQUEST +14:04:15 Received From : +14:04:15 ============================================================================ +14:04:15 FNo. Len. Field Value +14:04:15 ============================================================================ +14:04:15 [ 1] [ 4] [0800] +14:04:15 [ 7] [ 10] [0320070322] +14:04:15 [ 11] [ 6] [156700] +14:04:15 [ 70] [ 3] [301] +14:04:15 ============================================================================ +14:04:15 + + +waiting on router queue for slot.... +14:04:15 Sending to : +14:04:15 ============================================================================ +14:04:15 ============================================================================ +14:04:15 Slot Id : <205> +14:04:15 Transaction Type : RESPONSE +14:04:15 Received From : +14:04:15 ============================================================================ +14:04:15 FNo. Len. Field Value +14:04:15 ============================================================================ +14:04:15 [ 1] [ 4] [0810] +14:04:15 [ 7] [ 10] [0320070322] +14:04:15 [ 11] [ 6] [156700] +14:04:15 [ 39] [ 2] [00] +14:04:15 [ 70] [ 3] [301] +14:04:15 ============================================================================ +14:04:15 Calculate Source COMM Id = 2 +14:04:15 ============================================================================ +14:04:15 + + +waiting on router queue for slot.... +14:04:16 ============================================================================ +14:04:16 Slot Id : <185> +14:04:16 Transaction Type : RESPONSE +14:04:16 Received From : +14:04:16 ============================================================================ +14:04:16 FNo. Len. Field Value +14:04:16 ============================================================================ +14:04:16 [ 1] [ 4] [0210] +14:04:16 [ 2] [ 16] [6688990105014904] +14:04:16 [ 3] [ 6] [012000] +14:04:16 [ 4] [ 12] [000100000000] +14:04:16 [ 11] [ 6] [765228] +14:04:16 [ 12] [ 6] [140409] +14:04:16 [ 15] [ 4] [0320] +14:04:16 [ 18] [ 4] [6011] +14:04:16 [ 32] [ 6] [621354] +14:04:16 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:04:16 [ 37] [ 12] [507904635676] +14:04:16 [ 38] [ 6] [283199] +14:04:16 [ 39] [ 2] [00] +14:04:16 [ 41] [ 8] [17000800] +14:04:16 [ 49] [ 3] [418] +14:04:16 [ 54] [ 20] [2002418C000436290816] +14:04:16 ============================================================================ +14:04:16 Calculate Source COMM Id = 0 +14:04:16 ============================================================================ +14:04:16 + + +waiting on router queue for slot.... +14:04:17 ============================================================================ +14:04:17 Slot Id : <189> +14:04:17 Transaction Type : RESPONSE +14:04:17 Received From : +14:04:17 ============================================================================ +14:04:17 FNo. Len. Field Value +14:04:17 ============================================================================ +14:04:17 [ 1] [ 4] [0210] +14:04:17 [ 2] [ 19] [6222082010002177024] +14:04:17 [ 3] [ 6] [010000] +14:04:17 [ 4] [ 12] [000200000000] +14:04:17 [ 7] [ 10] [0320070321] +14:04:17 [ 11] [ 6] [269510] +14:04:17 [ 12] [ 6] [140321] +14:04:17 [ 13] [ 4] [0320] +14:04:17 [ 15] [ 4] [0320] +14:04:17 [ 18] [ 4] [6011] +14:04:17 [ 19] [ 3] [418] +14:04:17 [ 22] [ 3] [021] +14:04:17 [ 32] [ 6] [180893] +14:04:17 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:04:17 [ 37] [ 12] [507907269510] +14:04:17 [ 39] [ 2] [61] +14:04:17 [ 41] [ 8] [0441VT52] +14:04:17 [ 49] [ 3] [418] +14:04:17 ============================================================================ +14:04:17 Calculate Source COMM Id = 2 +14:04:17 ============================================================================ +14:04:17 + + +waiting on router queue for slot.... +14:04:20 ============================================================================ +14:04:20 Slot Id : <149> +14:04:20 Transaction Type : REQUEST +14:04:20 Received From : +14:04:20 ============================================================================ +14:04:20 FNo. Len. Field Value +14:04:20 ============================================================================ +14:04:20 [ 1] [ 4] [0200] +14:04:20 [ 2] [ 16] [6688990103541601] +14:04:20 [ 3] [ 6] [301000] +14:04:20 [ 7] [ 10] [0320070326] +14:04:20 [ 11] [ 6] [269512] +14:04:20 [ 12] [ 6] [140326] +14:04:20 [ 13] [ 4] [0320] +14:04:20 [ 14] [ 4] [4301] +14:04:20 [ 15] [ 4] [0320] +14:04:20 [ 18] [ 4] [6011] +14:04:20 [ 19] [ 3] [418] +14:04:20 [ 22] [ 3] [021] +14:04:20 [ 25] [ 2] [01] +14:04:20 [ 32] [ 6] [180893] +14:04:20 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:04:20 [ 37] [ 12] [507907269512] +14:04:20 [ 41] [ 8] [0221XKKM] +14:04:20 [ 42] [ 15] [999999 ] +14:04:20 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:04:20 [ 49] [ 3] [418] +14:04:20 [ 52] [ 16] [AA0147EB6F7A5445] +14:04:20 ============================================================================ +14:04:20 + + +waiting on router queue for slot.... +14:04:20 Sending to : +14:04:20 ============================================================================ +14:04:20 Sending to : +14:04:20 ============================================================================ +14:04:21 ============================================================================ +14:04:21 Slot Id : <149> +14:04:21 Transaction Type : REQUEST +14:04:21 Received From : +14:04:21 ============================================================================ +14:04:21 FNo. Len. Field Value +14:04:21 ============================================================================ +14:04:21 [ 1] [ 4] [0200] +14:04:21 [ 2] [ 16] [6688990103541601] +14:04:21 [ 3] [ 6] [301000] +14:04:21 [ 7] [ 10] [0320070326] +14:04:21 [ 11] [ 6] [269512] +14:04:21 [ 12] [ 6] [140326] +14:04:21 [ 13] [ 4] [0320] +14:04:21 [ 14] [ 4] [4301] +14:04:21 [ 15] [ 4] [0320] +14:04:21 [ 18] [ 4] [6011] +14:04:21 [ 19] [ 3] [418] +14:04:21 [ 22] [ 3] [021] +14:04:21 [ 25] [ 2] [01] +14:04:21 [ 32] [ 6] [180893] +14:04:21 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:04:21 [ 37] [ 12] [507907269512] +14:04:21 [ 41] [ 8] [0221XKKM] +14:04:21 [ 42] [ 15] [999999 ] +14:04:21 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:04:21 [ 49] [ 3] [418] +14:04:21 [ 52] [ 16] [AA0147EB6F7A5445] +14:04:21 ============================================================================ +14:04:21 + + +waiting on router queue for slot.... +14:04:21 Sending to : +14:04:21 ============================================================================ +14:04:21 ============================================================================ +14:04:21 Slot Id : <149> +14:04:21 Transaction Type : REQUEST +14:04:21 Received From : +14:04:21 ============================================================================ +14:04:21 FNo. Len. Field Value +14:04:21 ============================================================================ +14:04:21 [ 1] [ 4] [0200] +14:04:21 [ 2] [ 16] [6688990103541601] +14:04:21 [ 3] [ 6] [301000] +14:04:21 [ 7] [ 10] [0320070326] +14:04:21 [ 11] [ 6] [269512] +14:04:21 [ 12] [ 6] [140326] +14:04:21 [ 13] [ 4] [0320] +14:04:21 [ 14] [ 4] [4301] +14:04:21 [ 15] [ 4] [0320] +14:04:21 [ 18] [ 4] [6011] +14:04:21 [ 19] [ 3] [418] +14:04:21 [ 22] [ 3] [021] +14:04:21 [ 25] [ 2] [01] +14:04:21 [ 32] [ 6] [180893] +14:04:21 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:04:21 [ 37] [ 12] [507907269512] +14:04:21 [ 41] [ 8] [0221XKKM] +14:04:21 [ 42] [ 15] [999999 ] +14:04:21 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:04:21 [ 49] [ 3] [418] +14:04:21 [ 52] [ 16] [11EBC6641DBB9C42] +14:04:21 ============================================================================ +14:04:21 + + +waiting on router queue for slot.... +14:04:21 Sending to : <0> +14:04:21 ============================================================================ +14:04:21 ============================================================================ +14:04:21 Slot Id : <149> +14:04:21 Transaction Type : RESPONSE +14:04:21 Received From : +14:04:21 ============================================================================ +14:04:21 FNo. Len. Field Value +14:04:21 ============================================================================ +14:04:21 [ 1] [ 4] [0210] +14:04:21 [ 2] [ 16] [6688990103541601] +14:04:21 [ 3] [ 6] [301000] +14:04:21 [ 4] [ 12] [000000000000] +14:04:21 [ 7] [ 10] [0320070326] +14:04:21 [ 11] [ 6] [269512] +14:04:21 [ 12] [ 6] [140326] +14:04:21 [ 13] [ 4] [0320] +14:04:21 [ 15] [ 4] [0320] +14:04:21 [ 18] [ 4] [6011] +14:04:21 [ 19] [ 3] [418] +14:04:21 [ 22] [ 3] [021] +14:04:21 [ 32] [ 6] [180893] +14:04:21 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:04:21 [ 37] [ 12] [507907269512] +14:04:21 [ 39] [ 2] [14] +14:04:21 [ 41] [ 8] [0221XKKM] +14:04:21 [ 49] [ 3] [418] +14:04:21 ============================================================================ +14:04:21 Sending to : +14:04:21 ============================================================================ +14:04:21 + + +waiting on router queue for slot.... +14:04:22 ============================================================================ +14:04:22 Slot Id : <149> +14:04:22 Transaction Type : RESPONSE +14:04:22 Received From : +14:04:22 ============================================================================ +14:04:22 FNo. Len. Field Value +14:04:22 ============================================================================ +14:04:22 [ 1] [ 4] [0210] +14:04:22 [ 2] [ 16] [6688990103541601] +14:04:22 [ 3] [ 6] [301000] +14:04:22 [ 4] [ 12] [000000000000] +14:04:22 [ 7] [ 10] [0320070326] +14:04:22 [ 11] [ 6] [269512] +14:04:22 [ 12] [ 6] [140326] +14:04:22 [ 13] [ 4] [0320] +14:04:22 [ 15] [ 4] [0320] +14:04:22 [ 18] [ 4] [6011] +14:04:22 [ 19] [ 3] [418] +14:04:22 [ 22] [ 3] [021] +14:04:22 [ 32] [ 6] [180893] +14:04:22 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:04:22 [ 37] [ 12] [507907269512] +14:04:22 [ 39] [ 2] [14] +14:04:22 [ 41] [ 8] [0221XKKM] +14:04:22 [ 49] [ 3] [418] +14:04:22 ============================================================================ +14:04:22 Calculate Source COMM Id = 2 +14:04:22 ============================================================================ +14:04:22 + + +waiting on router queue for slot.... +14:04:23 ============================================================================ +14:04:23 Slot Id : <232> +14:04:23 Transaction Type : REQUEST +14:04:23 Received From : +14:04:23 ============================================================================ +14:04:23 FNo. Len. Field Value +14:04:23 ============================================================================ +14:04:23 [ 1] [ 4] [0200] +14:04:23 [ 2] [ 16] [6213545000785828] +14:04:23 [ 3] [ 6] [010000] +14:04:23 [ 4] [ 12] [000150000000] +14:04:23 [ 7] [ 10] [0320070330] +14:04:23 [ 11] [ 6] [269513] +14:04:23 [ 12] [ 6] [140330] +14:04:23 [ 13] [ 4] [0320] +14:04:23 [ 14] [ 4] [4912] +14:04:23 [ 15] [ 4] [0320] +14:04:23 [ 18] [ 4] [6011] +14:04:23 [ 19] [ 3] [418] +14:04:23 [ 22] [ 3] [021] +14:04:23 [ 25] [ 2] [01] +14:04:23 [ 28] [ 9] [D00002000] +14:04:23 [ 32] [ 6] [180893] +14:04:23 [ 35] [ 32] [6213545000785828=491212018582196] +14:04:23 [ 37] [ 12] [507907269513] +14:04:23 [ 41] [ 8] [0525XYBT] +14:04:23 [ 42] [ 15] [999999 ] +14:04:23 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:04:23 [ 49] [ 3] [418] +14:04:23 [ 52] [ 16] [AE4CEC4FA8B748E2] +14:04:23 ============================================================================ +14:04:23 + + +waiting on router queue for slot.... +14:04:23 Sending to : +14:04:23 ============================================================================ +14:04:23 Sending to : +14:04:23 ============================================================================ +14:04:23 ============================================================================ +14:04:23 Slot Id : <168> +14:04:23 Transaction Type : REQUEST +14:04:23 Received From : +14:04:23 ============================================================================ +14:04:23 FNo. Len. Field Value +14:04:23 ============================================================================ +14:04:23 [ 1] [ 4] [0200] +14:04:23 [ 2] [ 16] [6688990030009672] +14:04:23 [ 3] [ 6] [011000] +14:04:23 [ 4] [ 12] [000012000000] +14:04:23 [ 7] [ 10] [0320140419] +14:04:23 [ 11] [ 6] [765268] +14:04:23 [ 12] [ 6] [140419] +14:04:23 [ 13] [ 4] [0320] +14:04:23 [ 15] [ 4] [0320] +14:04:23 [ 18] [ 4] [6011] +14:04:23 [ 22] [ 3] [900] +14:04:23 [ 25] [ 2] [02] +14:04:23 [ 28] [ 9] [D00002000] +14:04:23 [ 32] [ 6] [621354] +14:04:23 [ 35] [ 37] [6688990030009672=98011261125604100000] +14:04:23 [ 37] [ 12] [507904724398] +14:04:23 [ 41] [ 8] [18001100] +14:04:23 [ 42] [ 15] [NATIVE ] +14:04:23 [ 43] [ 40] [Ban Naxong May LAO] +14:04:23 [ 49] [ 3] [418] +14:04:23 [ 52] [ 16] [0B45F86DAA83D323] +14:04:23 ============================================================================ +14:04:23 + + +waiting on router queue for slot.... +14:04:23 Sending to : +14:04:23 ============================================================================ +14:04:23 Sending to : +14:04:23 ============================================================================ +14:04:24 ============================================================================ +14:04:24 Slot Id : <168> +14:04:24 Transaction Type : REQUEST +14:04:24 Received From : +14:04:24 ============================================================================ +14:04:24 FNo. Len. Field Value +14:04:24 ============================================================================ +14:04:24 [ 1] [ 4] [0200] +14:04:24 [ 2] [ 16] [6688990030009672] +14:04:24 [ 3] [ 6] [011000] +14:04:24 [ 4] [ 12] [000012000000] +14:04:24 [ 7] [ 10] [0320140419] +14:04:24 [ 11] [ 6] [765268] +14:04:24 [ 12] [ 6] [140419] +14:04:24 [ 13] [ 4] [0320] +14:04:24 [ 15] [ 4] [0320] +14:04:24 [ 18] [ 4] [6011] +14:04:24 [ 22] [ 3] [900] +14:04:24 [ 25] [ 2] [02] +14:04:24 [ 28] [ 9] [D00002000] +14:04:24 [ 32] [ 6] [621354] +14:04:24 [ 35] [ 37] [6688990030009672=98011261125604100000] +14:04:24 [ 37] [ 12] [507904724398] +14:04:24 [ 41] [ 8] [18001100] +14:04:24 [ 42] [ 15] [NATIVE ] +14:04:24 [ 43] [ 40] [Ban Naxong May LAO] +14:04:24 [ 49] [ 3] [418] +14:04:24 [ 52] [ 16] [0B45F86DAA83D323] +14:04:24 ============================================================================ +14:04:24 + + +waiting on router queue for slot.... +14:04:24 Sending to : +14:04:24 ============================================================================ +14:04:24 ============================================================================ +14:04:24 Slot Id : <168> +14:04:24 Transaction Type : REQUEST +14:04:24 Received From : +14:04:24 ============================================================================ +14:04:24 FNo. Len. Field Value +14:04:24 ============================================================================ +14:04:24 [ 1] [ 4] [0200] +14:04:24 [ 2] [ 16] [6688990030009672] +14:04:24 [ 3] [ 6] [011000] +14:04:24 [ 4] [ 12] [000012000000] +14:04:24 [ 7] [ 10] [0320140419] +14:04:24 [ 11] [ 6] [765268] +14:04:24 [ 12] [ 6] [140419] +14:04:24 [ 13] [ 4] [0320] +14:04:24 [ 15] [ 4] [0320] +14:04:24 [ 18] [ 4] [6011] +14:04:24 [ 22] [ 3] [900] +14:04:24 [ 25] [ 2] [02] +14:04:24 [ 28] [ 9] [D00002000] +14:04:24 [ 32] [ 6] [621354] +14:04:24 [ 35] [ 37] [6688990030009672=98011261125604100000] +14:04:24 [ 37] [ 12] [507904724398] +14:04:24 [ 41] [ 8] [18001100] +14:04:24 [ 42] [ 15] [NATIVE ] +14:04:24 [ 43] [ 40] [Ban Naxong May LAO] +14:04:24 [ 49] [ 3] [418] +14:04:24 [ 52] [ 16] [EE5D45B2E8F41C0F] +14:04:24 ============================================================================ +14:04:24 + + +waiting on router queue for slot.... +14:04:24 Sending to : <4> +14:04:24 ============================================================================ +14:04:24 ============================================================================ +14:04:24 Slot Id : <232> +14:04:24 Transaction Type : REQUEST +14:04:24 Received From : +14:04:24 ============================================================================ +14:04:24 FNo. Len. Field Value +14:04:24 ============================================================================ +14:04:24 [ 1] [ 4] [0200] +14:04:24 [ 2] [ 16] [6213545000785828] +14:04:24 [ 3] [ 6] [010000] +14:04:24 [ 4] [ 12] [000150000000] +14:04:24 [ 7] [ 10] [0320070330] +14:04:24 [ 11] [ 6] [269513] +14:04:24 [ 12] [ 6] [140330] +14:04:24 [ 13] [ 4] [0320] +14:04:24 [ 14] [ 4] [4912] +14:04:24 [ 15] [ 4] [0320] +14:04:24 [ 18] [ 4] [6011] +14:04:24 [ 19] [ 3] [418] +14:04:24 [ 22] [ 3] [021] +14:04:24 [ 25] [ 2] [01] +14:04:24 [ 28] [ 9] [D00002000] +14:04:24 [ 32] [ 6] [180893] +14:04:24 [ 35] [ 32] [6213545000785828=491212018582196] +14:04:24 [ 37] [ 12] [507907269513] +14:04:24 [ 41] [ 8] [0525XYBT] +14:04:24 [ 42] [ 15] [999999 ] +14:04:24 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:04:24 [ 49] [ 3] [418] +14:04:24 [ 52] [ 16] [AE4CEC4FA8B748E2] +14:04:24 ============================================================================ +14:04:24 + + +waiting on router queue for slot.... +14:04:24 Sending to : +14:04:24 ============================================================================ +14:04:24 ============================================================================ +14:04:24 Slot Id : <232> +14:04:24 Transaction Type : REQUEST +14:04:24 Received From : +14:04:24 ============================================================================ +14:04:24 FNo. Len. Field Value +14:04:24 ============================================================================ +14:04:24 [ 1] [ 4] [0200] +14:04:24 [ 2] [ 16] [6213545000785828] +14:04:24 [ 3] [ 6] [010000] +14:04:24 [ 4] [ 12] [000150000000] +14:04:24 [ 7] [ 10] [0320070330] +14:04:24 [ 11] [ 6] [269513] +14:04:24 [ 12] [ 6] [140330] +14:04:24 [ 13] [ 4] [0320] +14:04:24 [ 14] [ 4] [4912] +14:04:24 [ 15] [ 4] [0320] +14:04:24 [ 18] [ 4] [6011] +14:04:24 [ 19] [ 3] [418] +14:04:24 [ 22] [ 3] [021] +14:04:24 [ 25] [ 2] [01] +14:04:24 [ 28] [ 9] [D00002000] +14:04:24 [ 32] [ 6] [180893] +14:04:24 [ 35] [ 32] [6213545000785828=491212018582196] +14:04:24 [ 37] [ 12] [507907269513] +14:04:24 [ 41] [ 8] [0525XYBT] +14:04:24 [ 42] [ 15] [999999 ] +14:04:24 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:04:24 [ 49] [ 3] [418] +14:04:24 [ 52] [ 16] [2B74FF1B261E45CB] +14:04:24 ============================================================================ +14:04:24 + + +waiting on router queue for slot.... +14:04:24 Sending to : <0> +14:04:24 ============================================================================ +14:04:25 ============================================================================ +14:04:25 Slot Id : <232> +14:04:25 Transaction Type : RESPONSE +14:04:25 Received From : +14:04:25 ============================================================================ +14:04:25 FNo. Len. Field Value +14:04:25 ============================================================================ +14:04:25 [ 1] [ 4] [0210] +14:04:25 [ 2] [ 16] [6213545000785828] +14:04:25 [ 3] [ 6] [010000] +14:04:25 [ 4] [ 12] [000150000000] +14:04:25 [ 7] [ 10] [0320070330] +14:04:25 [ 11] [ 6] [269513] +14:04:25 [ 12] [ 6] [140330] +14:04:25 [ 13] [ 4] [0320] +14:04:25 [ 15] [ 4] [0320] +14:04:25 [ 18] [ 4] [6011] +14:04:25 [ 19] [ 3] [418] +14:04:25 [ 22] [ 3] [021] +14:04:25 [ 32] [ 6] [180893] +14:04:25 [ 35] [ 32] [6213545000785828=491212018582196] +14:04:25 [ 37] [ 12] [507907269513] +14:04:25 [ 39] [ 2] [61] +14:04:25 [ 41] [ 8] [0525XYBT] +14:04:25 [ 49] [ 3] [418] +14:04:25 ============================================================================ +14:04:25 Sending to : +14:04:25 ============================================================================ +14:04:25 + + +waiting on router queue for slot.... +14:04:25 ============================================================================ +14:04:25 Slot Id : <168> +14:04:25 Transaction Type : RESPONSE +14:04:25 Received From : +14:04:25 ============================================================================ +14:04:25 FNo. Len. Field Value +14:04:25 ============================================================================ +14:04:25 [ 1] [ 4] [0210] +14:04:25 [ 2] [ 16] [6688990030009672] +14:04:25 [ 3] [ 6] [011000] +14:04:25 [ 4] [ 12] [000012000000] +14:04:25 [ 11] [ 6] [765268] +14:04:25 [ 12] [ 6] [140419] +14:04:25 [ 15] [ 4] [0320] +14:04:25 [ 18] [ 4] [6011] +14:04:25 [ 32] [ 6] [621354] +14:04:25 [ 35] [ 37] [6688990030009672=98011261125604100000] +14:04:25 [ 37] [ 12] [507904724398] +14:04:25 [ 38] [ 6] [454563] +14:04:25 [ 39] [ 2] [00] +14:04:25 [ 41] [ 8] [18001100] +14:04:25 [ 49] [ 3] [418] +14:04:25 [ 54] [ 20] [1002418C000003927076] +14:04:25 ============================================================================ +14:04:25 Sending to : +14:04:25 ============================================================================ +14:04:25 + + +waiting on router queue for slot.... +14:04:25 ============================================================================ +14:04:25 Slot Id : <232> +14:04:25 Transaction Type : RESPONSE +14:04:25 Received From : +14:04:25 ============================================================================ +14:04:25 FNo. Len. Field Value +14:04:25 ============================================================================ +14:04:25 [ 1] [ 4] [0210] +14:04:25 [ 2] [ 16] [6213545000785828] +14:04:25 [ 3] [ 6] [010000] +14:04:25 [ 4] [ 12] [000150000000] +14:04:25 [ 7] [ 10] [0320070330] +14:04:25 [ 11] [ 6] [269513] +14:04:25 [ 12] [ 6] [140330] +14:04:25 [ 13] [ 4] [0320] +14:04:25 [ 15] [ 4] [0320] +14:04:25 [ 18] [ 4] [6011] +14:04:25 [ 19] [ 3] [418] +14:04:25 [ 22] [ 3] [021] +14:04:25 [ 32] [ 6] [180893] +14:04:25 [ 35] [ 32] [6213545000785828=491212018582196] +14:04:25 [ 37] [ 12] [507907269513] +14:04:25 [ 39] [ 2] [61] +14:04:25 [ 41] [ 8] [0525XYBT] +14:04:25 [ 49] [ 3] [418] +14:04:25 ============================================================================ +14:04:25 Calculate Source COMM Id = 2 +14:04:25 ============================================================================ +14:04:25 + + +waiting on router queue for slot.... +14:04:27 ============================================================================ +14:04:27 Slot Id : <168> +14:04:27 Transaction Type : RESPONSE +14:04:27 Received From : +14:04:27 ============================================================================ +14:04:27 FNo. Len. Field Value +14:04:27 ============================================================================ +14:04:27 [ 1] [ 4] [0210] +14:04:27 [ 2] [ 16] [6688990030009672] +14:04:27 [ 3] [ 6] [011000] +14:04:27 [ 4] [ 12] [000012000000] +14:04:27 [ 11] [ 6] [765268] +14:04:27 [ 12] [ 6] [140419] +14:04:27 [ 15] [ 4] [0320] +14:04:27 [ 18] [ 4] [6011] +14:04:27 [ 32] [ 6] [621354] +14:04:27 [ 35] [ 37] [6688990030009672=98011261125604100000] +14:04:27 [ 37] [ 12] [507904724398] +14:04:27 [ 38] [ 6] [454563] +14:04:27 [ 39] [ 2] [00] +14:04:27 [ 41] [ 8] [18001100] +14:04:27 [ 49] [ 3] [418] +14:04:27 [ 54] [ 20] [1002418C000003927076] +14:04:27 ============================================================================ +14:04:27 Calculate Source COMM Id = 0 +14:04:27 ============================================================================ +14:04:27 + + +waiting on router queue for slot.... +14:04:31 ============================================================================ +14:04:31 Slot Id : <180> +14:04:31 Transaction Type : REQUEST +14:04:31 Received From : +14:04:31 ============================================================================ +14:04:31 FNo. Len. Field Value +14:04:31 ============================================================================ +14:04:31 [ 1] [ 4] [0200] +14:04:31 [ 2] [ 16] [1808931400009336] +14:04:31 [ 3] [ 6] [010000] +14:04:31 [ 4] [ 12] [000010000000] +14:04:31 [ 7] [ 10] [0320140426] +14:04:31 [ 11] [ 6] [765288] +14:04:31 [ 12] [ 6] [140426] +14:04:31 [ 13] [ 4] [0320] +14:04:31 [ 15] [ 4] [0320] +14:04:31 [ 18] [ 4] [6011] +14:04:31 [ 22] [ 3] [900] +14:04:31 [ 25] [ 2] [02] +14:04:31 [ 28] [ 9] [D00002000] +14:04:31 [ 32] [ 6] [621354] +14:04:31 [ 35] [ 27] [1808931400009336=1803500506] +14:04:31 [ 37] [ 12] [507904719626] +14:04:31 [ 41] [ 8] [18001000] +14:04:31 [ 42] [ 15] [NATIVE ] +14:04:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:04:31 [ 49] [ 3] [418] +14:04:31 [ 52] [ 16] [5AF2942931AA396A] +14:04:31 ============================================================================ +14:04:31 + + +waiting on router queue for slot.... +14:04:31 Sending to : +14:04:31 ============================================================================ +14:04:31 Sending to : +14:04:31 ============================================================================ +14:04:31 ============================================================================ +14:04:31 Slot Id : <180> +14:04:31 Transaction Type : REQUEST +14:04:31 Received From : +14:04:31 ============================================================================ +14:04:31 FNo. Len. Field Value +14:04:31 ============================================================================ +14:04:31 [ 1] [ 4] [0200] +14:04:31 [ 2] [ 16] [1808931400009336] +14:04:31 [ 3] [ 6] [010000] +14:04:31 [ 4] [ 12] [000010000000] +14:04:31 [ 7] [ 10] [0320140426] +14:04:31 [ 11] [ 6] [765288] +14:04:31 [ 12] [ 6] [140426] +14:04:31 [ 13] [ 4] [0320] +14:04:31 [ 15] [ 4] [0320] +14:04:31 [ 18] [ 4] [6011] +14:04:31 [ 22] [ 3] [900] +14:04:31 [ 25] [ 2] [02] +14:04:31 [ 28] [ 9] [D00002000] +14:04:31 [ 32] [ 6] [621354] +14:04:31 [ 35] [ 27] [1808931400009336=1803500506] +14:04:31 [ 37] [ 12] [507904719626] +14:04:31 [ 41] [ 8] [18001000] +14:04:31 [ 42] [ 15] [NATIVE ] +14:04:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:04:31 [ 49] [ 3] [418] +14:04:31 [ 52] [ 16] [5AF2942931AA396A] +14:04:31 ============================================================================ +14:04:31 + + +waiting on router queue for slot.... +14:04:31 Sending to : +14:04:31 ============================================================================ +14:04:31 ============================================================================ +14:04:31 Slot Id : <180> +14:04:31 Transaction Type : REQUEST +14:04:31 Received From : +14:04:31 ============================================================================ +14:04:31 FNo. Len. Field Value +14:04:31 ============================================================================ +14:04:31 [ 1] [ 4] [0200] +14:04:31 [ 2] [ 16] [1808931400009336] +14:04:31 [ 3] [ 6] [010000] +14:04:31 [ 4] [ 12] [000010000000] +14:04:31 [ 7] [ 10] [0320140426] +14:04:31 [ 11] [ 6] [765288] +14:04:31 [ 12] [ 6] [140426] +14:04:31 [ 13] [ 4] [0320] +14:04:31 [ 15] [ 4] [0320] +14:04:31 [ 18] [ 4] [6011] +14:04:31 [ 22] [ 3] [900] +14:04:31 [ 25] [ 2] [02] +14:04:31 [ 28] [ 9] [D00002000] +14:04:31 [ 32] [ 6] [621354] +14:04:31 [ 35] [ 27] [1808931400009336=1803500506] +14:04:31 [ 37] [ 12] [507904719626] +14:04:31 [ 41] [ 8] [18001000] +14:04:31 [ 42] [ 15] [NATIVE ] +14:04:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:04:31 [ 49] [ 3] [418] +14:04:31 [ 52] [ 16] [F9A69D7B685F7539] +14:04:31 ============================================================================ +14:04:31 + + +waiting on router queue for slot.... +14:04:31 Sending to : <2> +14:04:31 ============================================================================ +14:04:37 ============================================================================ +14:04:37 Slot Id : <180> +14:04:37 Transaction Type : RESPONSE +14:04:37 Received From : +14:04:37 ============================================================================ +14:04:37 FNo. Len. Field Value +14:04:37 ============================================================================ +14:04:37 [ 1] [ 4] [0210] +14:04:37 [ 2] [ 16] [1808931400009336] +14:04:37 [ 3] [ 6] [010000] +14:04:37 [ 4] [ 12] [000010000000] +14:04:37 [ 6] [ 12] [000010000000] +14:04:37 [ 7] [ 10] [0320140426] +14:04:37 [ 11] [ 6] [765288] +14:04:37 [ 12] [ 6] [140426] +14:04:37 [ 13] [ 4] [0320] +14:04:37 [ 18] [ 4] [6011] +14:04:37 [ 19] [ 3] [418] +14:04:37 [ 22] [ 3] [021] +14:04:37 [ 32] [ 6] [621354] +14:04:37 [ 35] [ 27] [1808931400009336=1803500506] +14:04:37 [ 37] [ 12] [507904719626] +14:04:37 [ 38] [ 6] [765288] +14:04:37 [ 39] [ 2] [51] +14:04:37 [ 41] [ 8] [18001000] +14:04:37 [ 49] [ 3] [418] +14:04:37 [ 52] [ 16] [F9A69D7B685F7539] +14:04:37 ============================================================================ +14:04:37 Sending to : +14:04:37 ============================================================================ +14:04:37 + + +waiting on router queue for slot.... +14:04:38 ============================================================================ +14:04:38 Slot Id : <180> +14:04:38 Transaction Type : RESPONSE +14:04:38 Received From : +14:04:38 ============================================================================ +14:04:38 FNo. Len. Field Value +14:04:38 ============================================================================ +14:04:38 [ 1] [ 4] [0210] +14:04:38 [ 2] [ 16] [1808931400009336] +14:04:38 [ 3] [ 6] [010000] +14:04:38 [ 4] [ 12] [000010000000] +14:04:38 [ 6] [ 12] [000010000000] +14:04:38 [ 7] [ 10] [0320140426] +14:04:38 [ 11] [ 6] [765288] +14:04:38 [ 12] [ 6] [140426] +14:04:38 [ 13] [ 4] [0320] +14:04:38 [ 18] [ 4] [6011] +14:04:38 [ 19] [ 3] [418] +14:04:38 [ 22] [ 3] [021] +14:04:38 [ 32] [ 6] [621354] +14:04:38 [ 35] [ 27] [1808931400009336=1803500506] +14:04:38 [ 37] [ 12] [507904719626] +14:04:38 [ 38] [ 6] [765288] +14:04:38 [ 39] [ 2] [51] +14:04:38 [ 41] [ 8] [18001000] +14:04:38 [ 49] [ 3] [418] +14:04:38 [ 52] [ 16] [F9A69D7B685F7539] +14:04:38 ============================================================================ +14:04:38 Calculate Source COMM Id = 0 +14:04:38 ============================================================================ +14:04:38 + + +waiting on router queue for slot.... +14:04:41 ============================================================================ +14:04:41 Slot Id : <174> +14:04:41 Transaction Type : REQUEST +14:04:41 Received From : +14:04:41 ============================================================================ +14:04:41 FNo. Len. Field Value +14:04:41 ============================================================================ +14:04:41 [ 1] [ 4] [0200] +14:04:41 [ 2] [ 19] [6222082010002177024] +14:04:41 [ 3] [ 6] [010000] +14:04:41 [ 4] [ 12] [000200000000] +14:04:41 [ 7] [ 10] [0320070347] +14:04:41 [ 11] [ 6] [269517] +14:04:41 [ 12] [ 6] [140347] +14:04:41 [ 13] [ 4] [0320] +14:04:41 [ 14] [ 4] [2203] +14:04:41 [ 15] [ 4] [0320] +14:04:41 [ 18] [ 4] [6011] +14:04:41 [ 19] [ 3] [418] +14:04:41 [ 22] [ 3] [021] +14:04:41 [ 25] [ 2] [01] +14:04:41 [ 28] [ 9] [D00015000] +14:04:41 [ 32] [ 6] [180893] +14:04:41 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:04:41 [ 37] [ 12] [507907269517] +14:04:41 [ 41] [ 8] [0441VT52] +14:04:41 [ 42] [ 15] [999999 ] +14:04:41 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +14:04:41 [ 49] [ 3] [418] +14:04:41 [ 52] [ 16] [677B220839BB3FC0] +14:04:41 ============================================================================ +14:04:41 + + +waiting on router queue for slot.... +14:04:41 Sending to : +14:04:41 ============================================================================ +14:04:41 Sending to : +14:04:41 ============================================================================ +14:04:41 ============================================================================ +14:04:41 Slot Id : <174> +14:04:41 Transaction Type : REQUEST +14:04:41 Received From : +14:04:41 ============================================================================ +14:04:41 FNo. Len. Field Value +14:04:41 ============================================================================ +14:04:41 [ 1] [ 4] [0200] +14:04:41 [ 2] [ 19] [6222082010002177024] +14:04:41 [ 3] [ 6] [010000] +14:04:41 [ 4] [ 12] [000200000000] +14:04:41 [ 7] [ 10] [0320070347] +14:04:41 [ 11] [ 6] [269517] +14:04:41 [ 12] [ 6] [140347] +14:04:41 [ 13] [ 4] [0320] +14:04:41 [ 14] [ 4] [2203] +14:04:41 [ 15] [ 4] [0320] +14:04:41 [ 18] [ 4] [6011] +14:04:41 [ 19] [ 3] [418] +14:04:41 [ 22] [ 3] [021] +14:04:41 [ 25] [ 2] [01] +14:04:41 [ 28] [ 9] [D00015000] +14:04:41 [ 32] [ 6] [180893] +14:04:41 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:04:41 [ 37] [ 12] [507907269517] +14:04:41 [ 41] [ 8] [0441VT52] +14:04:41 [ 42] [ 15] [999999 ] +14:04:41 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +14:04:41 [ 49] [ 3] [418] +14:04:41 [ 52] [ 16] [677B220839BB3FC0] +14:04:41 ============================================================================ +14:04:41 + + +waiting on router queue for slot.... +14:04:41 Sending to : +14:04:41 ============================================================================ +14:04:41 ============================================================================ +14:04:41 Slot Id : <174> +14:04:41 Transaction Type : REQUEST +14:04:41 Received From : +14:04:41 ============================================================================ +14:04:41 FNo. Len. Field Value +14:04:41 ============================================================================ +14:04:41 [ 1] [ 4] [0200] +14:04:41 [ 2] [ 19] [6222082010002177024] +14:04:41 [ 3] [ 6] [010000] +14:04:41 [ 4] [ 12] [000200000000] +14:04:41 [ 7] [ 10] [0320070347] +14:04:41 [ 11] [ 6] [269517] +14:04:41 [ 12] [ 6] [140347] +14:04:41 [ 13] [ 4] [0320] +14:04:41 [ 14] [ 4] [2203] +14:04:41 [ 15] [ 4] [0320] +14:04:41 [ 18] [ 4] [6011] +14:04:41 [ 19] [ 3] [418] +14:04:41 [ 22] [ 3] [021] +14:04:41 [ 25] [ 2] [01] +14:04:41 [ 28] [ 9] [D00015000] +14:04:41 [ 32] [ 6] [180893] +14:04:41 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:04:41 [ 37] [ 12] [507907269517] +14:04:41 [ 41] [ 8] [0441VT52] +14:04:41 [ 42] [ 15] [999999 ] +14:04:41 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +14:04:41 [ 49] [ 3] [418] +14:04:41 [ 52] [ 16] [B5FBF6FB7F40D0AA] +14:04:41 ============================================================================ +14:04:41 + + +waiting on router queue for slot.... +14:04:41 Sending to : <0> +14:04:41 ============================================================================ +14:04:41 ============================================================================ +14:04:41 Slot Id : <174> +14:04:41 Transaction Type : RESPONSE +14:04:41 Received From : +14:04:41 ============================================================================ +14:04:41 FNo. Len. Field Value +14:04:41 ============================================================================ +14:04:41 [ 1] [ 4] [0210] +14:04:41 [ 2] [ 19] [6222082010002177024] +14:04:41 [ 3] [ 6] [010000] +14:04:41 [ 4] [ 12] [000200000000] +14:04:41 [ 7] [ 10] [0320070347] +14:04:41 [ 11] [ 6] [269517] +14:04:41 [ 12] [ 6] [140347] +14:04:41 [ 13] [ 4] [0320] +14:04:41 [ 15] [ 4] [0320] +14:04:41 [ 18] [ 4] [6011] +14:04:41 [ 19] [ 3] [418] +14:04:41 [ 22] [ 3] [021] +14:04:41 [ 32] [ 6] [180893] +14:04:41 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:04:41 [ 37] [ 12] [507907269517] +14:04:41 [ 39] [ 2] [61] +14:04:41 [ 41] [ 8] [0441VT52] +14:04:41 [ 49] [ 3] [418] +14:04:41 ============================================================================ +14:04:41 Sending to : +14:04:41 ============================================================================ +14:04:41 + + +waiting on router queue for slot.... +14:04:42 ============================================================================ +14:04:42 Slot Id : <174> +14:04:42 Transaction Type : RESPONSE +14:04:42 Received From : +14:04:42 ============================================================================ +14:04:42 FNo. Len. Field Value +14:04:42 ============================================================================ +14:04:42 [ 1] [ 4] [0210] +14:04:42 [ 2] [ 19] [6222082010002177024] +14:04:42 [ 3] [ 6] [010000] +14:04:42 [ 4] [ 12] [000200000000] +14:04:42 [ 7] [ 10] [0320070347] +14:04:42 [ 11] [ 6] [269517] +14:04:42 [ 12] [ 6] [140347] +14:04:42 [ 13] [ 4] [0320] +14:04:42 [ 15] [ 4] [0320] +14:04:42 [ 18] [ 4] [6011] +14:04:42 [ 19] [ 3] [418] +14:04:42 [ 22] [ 3] [021] +14:04:42 [ 32] [ 6] [180893] +14:04:42 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:04:42 [ 37] [ 12] [507907269517] +14:04:42 [ 39] [ 2] [61] +14:04:42 [ 41] [ 8] [0441VT52] +14:04:42 [ 49] [ 3] [418] +14:04:42 ============================================================================ +14:04:42 Calculate Source COMM Id = 2 +14:04:42 ============================================================================ +14:04:42 + + +waiting on router queue for slot.... +14:04:48 ============================================================================ +14:04:48 Slot Id : <222> +14:04:48 Transaction Type : REQUEST +14:04:48 Received From : +14:04:48 ============================================================================ +14:04:48 FNo. Len. Field Value +14:04:48 ============================================================================ +14:04:48 [ 1] [ 4] [0800] +14:04:48 [ 7] [ 10] [0320211637] +14:04:48 [ 11] [ 6] [141637] +14:04:48 [ 37] [ 12] [57914141637] +14:04:48 [ 70] [ 3] [301] +14:04:48 ============================================================================ +14:04:48 + + +waiting on router queue for slot.... +14:04:48 Sending to : +14:04:48 ============================================================================ +14:04:48 ============================================================================ +14:04:48 Slot Id : <222> +14:04:48 Transaction Type : RESPONSE +14:04:48 Received From : +14:04:48 ============================================================================ +14:04:48 FNo. Len. Field Value +14:04:48 ============================================================================ +14:04:48 [ 1] [ 4] [0810] +14:04:48 [ 7] [ 10] [0320211637] +14:04:48 [ 11] [ 6] [141637] +14:04:48 [ 37] [ 12] [579141416370] +14:04:48 [ 39] [ 2] [00] +14:04:48 [ 70] [ 3] [810] +14:04:48 ============================================================================ +14:04:48 Calculate Source COMM Id = 6 +14:04:48 ============================================================================ +14:04:48 + + +waiting on router queue for slot.... +14:04:52 ============================================================================ +14:04:52 Slot Id : <173> +14:04:52 Transaction Type : REQUEST +14:04:52 Received From : +14:04:52 ============================================================================ +14:04:52 FNo. Len. Field Value +14:04:52 ============================================================================ +14:04:52 [ 1] [ 4] [0800] +14:04:52 [ 2] [ 5] [02531] +14:04:52 [ 3] [ 6] [579148] +14:04:52 [ 7] [ 10] [0320070452] +14:04:52 [ 11] [ 6] [807229] +14:04:52 [ 15] [ 10] [0320070452] +14:04:52 [ 37] [ 11] [57914807229] +14:04:52 [ 70] [ 3] [001] +14:04:52 ============================================================================ +14:04:52 + + +waiting on router queue for slot.... +14:04:52 ============================================================================ +14:04:52 Slot Id : <173> +14:04:52 Transaction Type : RESPONSE +14:04:52 Received From : +14:04:52 ============================================================================ +14:04:52 FNo. Len. Field Value +14:04:52 ============================================================================ +14:04:52 [ 1] [ 4] [0810] +14:04:52 [ 7] [ 10] [0320070452] +14:04:52 [ 11] [ 6] [807229] +14:04:52 [ 15] [ 4] [0320] +14:04:52 [ 37] [ 12] [57914807229] +14:04:52 [ 39] [ 2] [00] +14:04:52 [ 70] [ 3] [001] +14:04:52 ============================================================================ +14:04:52 Sending to : +14:04:52 ============================================================================ +14:04:52 + + +waiting on router queue for slot.... +14:04:53 ============================================================================ +14:04:53 Slot Id : <229> +14:04:53 Transaction Type : REQUEST +14:04:53 Received From : +14:04:53 ============================================================================ +14:04:53 FNo. Len. Field Value +14:04:53 ============================================================================ +14:04:53 [ 1] [ 4] [0800] +14:04:53 [ 7] [ 10] [0320070400] +14:04:53 [ 11] [ 6] [156701] +14:04:53 [ 70] [ 3] [301] +14:04:53 ============================================================================ +14:04:53 + + +waiting on router queue for slot.... +14:04:53 Sending to : +14:04:53 ============================================================================ +14:04:53 ============================================================================ +14:04:53 Slot Id : <229> +14:04:53 Transaction Type : RESPONSE +14:04:53 Received From : +14:04:53 ============================================================================ +14:04:53 FNo. Len. Field Value +14:04:53 ============================================================================ +14:04:53 [ 1] [ 4] [0810] +14:04:53 [ 7] [ 10] [0320070400] +14:04:53 [ 11] [ 6] [156701] +14:04:53 [ 39] [ 2] [00] +14:04:53 [ 70] [ 3] [301] +14:04:53 ============================================================================ +14:04:53 Calculate Source COMM Id = 2 +14:04:53 ============================================================================ +14:04:53 + + +waiting on router queue for slot.... +14:04:55 ============================================================================ +14:04:55 Slot Id : <188> +14:04:55 Transaction Type : REQUEST +14:04:55 Received From : +14:04:55 ============================================================================ +14:04:55 FNo. Len. Field Value +14:04:55 ============================================================================ +14:04:55 [ 1] [ 4] [0800] +14:04:55 [ 7] [ 10] [0320071242] +14:04:55 [ 11] [ 6] [064760] +14:04:55 [ 37] [ 12] [57914064760] +14:04:55 [ 70] [ 3] [301] +14:04:55 ============================================================================ +14:04:55 + + +waiting on router queue for slot.... +14:04:55 Sending to : +14:04:55 ============================================================================ +14:04:55 ============================================================================ +14:04:55 Slot Id : <188> +14:04:55 Transaction Type : RESPONSE +14:04:55 Received From : +14:04:55 ============================================================================ +14:04:55 FNo. Len. Field Value +14:04:55 ============================================================================ +14:04:55 [ 1] [ 4] [0810] +14:04:55 [ 7] [ 10] [0320071242] +14:04:55 [ 11] [ 6] [064760] +14:04:55 [ 37] [ 12] [579140647600] +14:04:55 [ 39] [ 2] [00] +14:04:55 [ 70] [ 3] [810] +14:04:55 ============================================================================ +14:04:55 Calculate Source COMM Id = 1 +14:04:55 ============================================================================ +14:04:55 + + +waiting on router queue for slot.... +14:04:58 ============================================================================ +14:04:58 Slot Id : <223> +14:04:58 Transaction Type : REQUEST +14:04:58 Received From : +14:04:58 ============================================================================ +14:04:58 FNo. Len. Field Value +14:04:58 ============================================================================ +14:04:58 [ 1] [ 4] [0200] +14:04:58 [ 2] [ 16] [6213541000146269] +14:04:58 [ 3] [ 6] [011000] +14:04:58 [ 4] [ 12] [000050000000] +14:04:58 [ 7] [ 10] [0320140518] +14:04:58 [ 11] [ 6] [206958] +14:04:58 [ 12] [ 6] [134533] +14:04:58 [ 13] [ 4] [0320] +14:04:58 [ 14] [ 4] [4912] +14:04:58 [ 15] [ 4] [0320] +14:04:58 [ 18] [ 4] [6011] +14:04:58 [ 19] [ 3] [418] +14:04:58 [ 22] [ 3] [021] +14:04:58 [ 25] [ 2] [01] +14:04:58 [ 28] [ 9] [D00002000] +14:04:58 [ 32] [ 6] [198901] +14:04:58 [ 35] [ 32] [6213541000146269=491212014626734] +14:04:58 [ 37] [ 12] [507914206958] +14:04:58 [ 41] [ 8] [01529016] +14:04:58 [ 42] [ 15] [000000041529016] +14:04:58 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +14:04:58 [ 49] [ 3] [418] +14:04:58 [ 52] [ 16] [40767DB44DFFFAFD] +14:04:58 ============================================================================ +14:04:58 + + +waiting on router queue for slot.... +14:04:58 Sending to : +14:04:58 ============================================================================ +14:04:58 Sending to : +14:04:58 ============================================================================ +14:04:58 ============================================================================ +14:04:58 Slot Id : <223> +14:04:58 Transaction Type : REQUEST +14:04:58 Received From : +14:04:58 ============================================================================ +14:04:58 FNo. Len. Field Value +14:04:58 ============================================================================ +14:04:58 [ 1] [ 4] [0200] +14:04:58 [ 2] [ 16] [6213541000146269] +14:04:58 [ 3] [ 6] [011000] +14:04:58 [ 4] [ 12] [000050000000] +14:04:58 [ 7] [ 10] [0320140518] +14:04:58 [ 11] [ 6] [206958] +14:04:58 [ 12] [ 6] [134533] +14:04:58 [ 13] [ 4] [0320] +14:04:58 [ 14] [ 4] [4912] +14:04:58 [ 15] [ 4] [0320] +14:04:58 [ 18] [ 4] [6011] +14:04:58 [ 19] [ 3] [418] +14:04:58 [ 22] [ 3] [021] +14:04:58 [ 25] [ 2] [01] +14:04:58 [ 28] [ 9] [D00002000] +14:04:58 [ 32] [ 6] [198901] +14:04:58 [ 35] [ 32] [6213541000146269=491212014626734] +14:04:58 [ 37] [ 12] [507914206958] +14:04:58 [ 41] [ 8] [01529016] +14:04:58 [ 42] [ 15] [000000041529016] +14:04:58 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +14:04:58 [ 49] [ 3] [418] +14:04:58 [ 52] [ 16] [40767DB44DFFFAFD] +14:04:58 ============================================================================ +14:04:58 + + +waiting on router queue for slot.... +14:04:58 Sending to : +14:04:58 ============================================================================ +14:04:58 ============================================================================ +14:04:58 Slot Id : <223> +14:04:58 Transaction Type : REQUEST +14:04:58 Received From : +14:04:58 ============================================================================ +14:04:58 FNo. Len. Field Value +14:04:58 ============================================================================ +14:04:58 [ 1] [ 4] [0200] +14:04:58 [ 2] [ 16] [6213541000146269] +14:04:58 [ 3] [ 6] [011000] +14:04:58 [ 4] [ 12] [000050000000] +14:04:58 [ 7] [ 10] [0320140518] +14:04:58 [ 11] [ 6] [206958] +14:04:58 [ 12] [ 6] [134533] +14:04:58 [ 13] [ 4] [0320] +14:04:58 [ 14] [ 4] [4912] +14:04:58 [ 15] [ 4] [0320] +14:04:58 [ 18] [ 4] [6011] +14:04:58 [ 19] [ 3] [418] +14:04:58 [ 22] [ 3] [021] +14:04:58 [ 25] [ 2] [01] +14:04:58 [ 28] [ 9] [D00002000] +14:04:58 [ 32] [ 6] [198901] +14:04:58 [ 35] [ 32] [6213541000146269=491212014626734] +14:04:58 [ 37] [ 12] [507914206958] +14:04:58 [ 41] [ 8] [01529016] +14:04:58 [ 42] [ 15] [000000041529016] +14:04:58 [ 43] [ 40] [JDB ATM ANOUVONG STADI VN ] +14:04:58 [ 49] [ 3] [418] +14:04:58 [ 52] [ 16] [2ED7EA94593348D4] +14:04:58 ============================================================================ +14:04:58 + + +waiting on router queue for slot.... +14:04:58 Sending to : <0> +14:04:58 ============================================================================ +14:04:59 ============================================================================ +14:04:59 Slot Id : <223> +14:04:59 Transaction Type : RESPONSE +14:04:59 Received From : +14:04:59 ============================================================================ +14:04:59 FNo. Len. Field Value +14:04:59 ============================================================================ +14:04:59 [ 1] [ 4] [0210] +14:04:59 [ 2] [ 16] [6213541000146269] +14:04:59 [ 3] [ 6] [011000] +14:04:59 [ 4] [ 12] [000050000000] +14:04:59 [ 7] [ 10] [0320140518] +14:04:59 [ 11] [ 6] [206958] +14:04:59 [ 12] [ 6] [134533] +14:04:59 [ 13] [ 4] [0320] +14:04:59 [ 15] [ 4] [0320] +14:04:59 [ 18] [ 4] [6011] +14:04:59 [ 19] [ 3] [418] +14:04:59 [ 32] [ 6] [198901] +14:04:59 [ 35] [ 32] [6213541000146269=491212014626734] +14:04:59 [ 37] [ 12] [507914206958] +14:04:59 [ 38] [ 6] [854339] +14:04:59 [ 39] [ 2] [00] +14:04:59 [ 41] [ 8] [01529016] +14:04:59 [ 49] [ 3] [418] +14:04:59 [ 54] [ 40] [1001418C0000222956341002418C000022295634] +14:04:59 ============================================================================ +14:04:59 Sending to : +14:04:59 ============================================================================ +14:04:59 + + +waiting on router queue for slot.... +14:05:00 ============================================================================ +14:05:00 Slot Id : <223> +14:05:00 Transaction Type : RESPONSE +14:05:00 Received From : +14:05:00 ============================================================================ +14:05:00 FNo. Len. Field Value +14:05:00 ============================================================================ +14:05:00 [ 1] [ 4] [0210] +14:05:00 [ 2] [ 16] [6213541000146269] +14:05:00 [ 3] [ 6] [011000] +14:05:00 [ 4] [ 12] [000050000000] +14:05:00 [ 7] [ 10] [0320140518] +14:05:00 [ 11] [ 6] [206958] +14:05:00 [ 12] [ 6] [134533] +14:05:00 [ 13] [ 4] [0320] +14:05:00 [ 15] [ 4] [0320] +14:05:00 [ 18] [ 4] [6011] +14:05:00 [ 19] [ 3] [418] +14:05:00 [ 32] [ 6] [198901] +14:05:00 [ 35] [ 32] [6213541000146269=491212014626734] +14:05:00 [ 37] [ 12] [507914206958] +14:05:00 [ 38] [ 6] [854339] +14:05:00 [ 39] [ 2] [00] +14:05:00 [ 41] [ 8] [01529016] +14:05:00 [ 49] [ 3] [418] +14:05:00 [ 54] [ 40] [1001418C0000222956341002418C000022295634] +14:05:00 ============================================================================ +14:05:00 Calculate Source COMM Id = 5 +14:05:00 ============================================================================ +14:05:00 + + +waiting on router queue for slot.... +14:05:04 ============================================================================ +14:05:04 Slot Id : <246> +14:05:04 Transaction Type : REQUEST +14:05:04 Received From : +14:05:04 ============================================================================ +14:05:04 FNo. Len. Field Value +14:05:04 ============================================================================ +14:05:04 [ 1] [ 4] [0800] +14:05:04 [ 7] [ 10] [0320070411] +14:05:04 [ 11] [ 6] [156702] +14:05:04 [ 70] [ 3] [301] +14:05:04 ============================================================================ +14:05:04 + + +waiting on router queue for slot.... +14:05:04 Sending to : +14:05:04 ============================================================================ +14:05:04 ============================================================================ +14:05:04 Slot Id : <246> +14:05:04 Transaction Type : RESPONSE +14:05:04 Received From : +14:05:04 ============================================================================ +14:05:04 FNo. Len. Field Value +14:05:04 ============================================================================ +14:05:04 [ 1] [ 4] [0810] +14:05:04 [ 7] [ 10] [0320070411] +14:05:04 [ 11] [ 6] [156702] +14:05:04 [ 39] [ 2] [00] +14:05:04 [ 70] [ 3] [301] +14:05:04 ============================================================================ +14:05:04 Calculate Source COMM Id = 2 +14:05:04 ============================================================================ +14:05:04 + + +waiting on router queue for slot.... +14:05:08 ============================================================================ +14:05:08 Slot Id : <215> +14:05:08 Transaction Type : REQUEST +14:05:08 Received From : +14:05:08 ============================================================================ +14:05:08 FNo. Len. Field Value +14:05:08 ============================================================================ +14:05:08 [ 1] [ 4] [0200] +14:05:08 [ 2] [ 16] [6213545000785828] +14:05:08 [ 3] [ 6] [010000] +14:05:08 [ 4] [ 12] [000150000000] +14:05:08 [ 7] [ 10] [0320070413] +14:05:08 [ 11] [ 6] [269521] +14:05:08 [ 12] [ 6] [140413] +14:05:08 [ 13] [ 4] [0320] +14:05:08 [ 14] [ 4] [4912] +14:05:08 [ 15] [ 4] [0320] +14:05:08 [ 18] [ 4] [6011] +14:05:08 [ 19] [ 3] [418] +14:05:08 [ 22] [ 3] [021] +14:05:08 [ 25] [ 2] [01] +14:05:08 [ 28] [ 9] [D00002000] +14:05:08 [ 32] [ 6] [180893] +14:05:08 [ 35] [ 32] [6213545000785828=491212018582196] +14:05:08 [ 37] [ 12] [507907269521] +14:05:08 [ 41] [ 8] [0525XYBT] +14:05:08 [ 42] [ 15] [999999 ] +14:05:08 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:05:08 [ 49] [ 3] [418] +14:05:08 [ 52] [ 16] [AE4CEC4FA8B748E2] +14:05:08 ============================================================================ +14:05:08 + + +waiting on router queue for slot.... +14:05:08 Sending to : +14:05:08 ============================================================================ +14:05:08 Sending to : +14:05:08 ============================================================================ +14:05:08 ============================================================================ +14:05:08 Slot Id : <215> +14:05:08 Transaction Type : REQUEST +14:05:08 Received From : +14:05:08 ============================================================================ +14:05:08 FNo. Len. Field Value +14:05:08 ============================================================================ +14:05:08 [ 1] [ 4] [0200] +14:05:08 [ 2] [ 16] [6213545000785828] +14:05:08 [ 3] [ 6] [010000] +14:05:08 [ 4] [ 12] [000150000000] +14:05:08 [ 7] [ 10] [0320070413] +14:05:08 [ 11] [ 6] [269521] +14:05:08 [ 12] [ 6] [140413] +14:05:08 [ 13] [ 4] [0320] +14:05:08 [ 14] [ 4] [4912] +14:05:08 [ 15] [ 4] [0320] +14:05:08 [ 18] [ 4] [6011] +14:05:08 [ 19] [ 3] [418] +14:05:08 [ 22] [ 3] [021] +14:05:08 [ 25] [ 2] [01] +14:05:08 [ 28] [ 9] [D00002000] +14:05:08 [ 32] [ 6] [180893] +14:05:08 [ 35] [ 32] [6213545000785828=491212018582196] +14:05:08 [ 37] [ 12] [507907269521] +14:05:08 [ 41] [ 8] [0525XYBT] +14:05:08 [ 42] [ 15] [999999 ] +14:05:08 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:05:08 [ 49] [ 3] [418] +14:05:08 [ 52] [ 16] [AE4CEC4FA8B748E2] +14:05:08 ============================================================================ +14:05:08 + + +waiting on router queue for slot.... +14:05:08 Sending to : +14:05:08 ============================================================================ +14:05:08 ============================================================================ +14:05:08 Slot Id : <215> +14:05:08 Transaction Type : REQUEST +14:05:08 Received From : +14:05:08 ============================================================================ +14:05:08 FNo. Len. Field Value +14:05:08 ============================================================================ +14:05:08 [ 1] [ 4] [0200] +14:05:08 [ 2] [ 16] [6213545000785828] +14:05:08 [ 3] [ 6] [010000] +14:05:08 [ 4] [ 12] [000150000000] +14:05:08 [ 7] [ 10] [0320070413] +14:05:08 [ 11] [ 6] [269521] +14:05:08 [ 12] [ 6] [140413] +14:05:08 [ 13] [ 4] [0320] +14:05:08 [ 14] [ 4] [4912] +14:05:08 [ 15] [ 4] [0320] +14:05:08 [ 18] [ 4] [6011] +14:05:08 [ 19] [ 3] [418] +14:05:08 [ 22] [ 3] [021] +14:05:08 [ 25] [ 2] [01] +14:05:08 [ 28] [ 9] [D00002000] +14:05:08 [ 32] [ 6] [180893] +14:05:08 [ 35] [ 32] [6213545000785828=491212018582196] +14:05:08 [ 37] [ 12] [507907269521] +14:05:08 [ 41] [ 8] [0525XYBT] +14:05:08 [ 42] [ 15] [999999 ] +14:05:08 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:05:08 [ 49] [ 3] [418] +14:05:08 [ 52] [ 16] [2B74FF1B261E45CB] +14:05:08 ============================================================================ +14:05:08 + + +waiting on router queue for slot.... +14:05:08 Sending to : <0> +14:05:08 ============================================================================ +14:05:08 ============================================================================ +14:05:08 Slot Id : <215> +14:05:08 Transaction Type : RESPONSE +14:05:08 Received From : +14:05:08 ============================================================================ +14:05:08 FNo. Len. Field Value +14:05:08 ============================================================================ +14:05:08 [ 1] [ 4] [0210] +14:05:08 [ 2] [ 16] [6213545000785828] +14:05:08 [ 3] [ 6] [010000] +14:05:08 [ 4] [ 12] [000150000000] +14:05:08 [ 7] [ 10] [0320070413] +14:05:08 [ 11] [ 6] [269521] +14:05:08 [ 12] [ 6] [140413] +14:05:08 [ 13] [ 4] [0320] +14:05:08 [ 15] [ 4] [0320] +14:05:08 [ 18] [ 4] [6011] +14:05:08 [ 19] [ 3] [418] +14:05:08 [ 22] [ 3] [021] +14:05:08 [ 32] [ 6] [180893] +14:05:08 [ 35] [ 32] [6213545000785828=491212018582196] +14:05:08 [ 37] [ 12] [507907269521] +14:05:08 [ 39] [ 2] [61] +14:05:08 [ 41] [ 8] [0525XYBT] +14:05:08 [ 49] [ 3] [418] +14:05:08 ============================================================================ +14:05:08 Sending to : +14:05:08 ============================================================================ +14:05:08 + + +waiting on router queue for slot.... +14:05:09 ============================================================================ +14:05:09 Slot Id : <215> +14:05:09 Transaction Type : RESPONSE +14:05:09 Received From : +14:05:09 ============================================================================ +14:05:09 FNo. Len. Field Value +14:05:09 ============================================================================ +14:05:09 [ 1] [ 4] [0210] +14:05:09 [ 2] [ 16] [6213545000785828] +14:05:09 [ 3] [ 6] [010000] +14:05:09 [ 4] [ 12] [000150000000] +14:05:09 [ 7] [ 10] [0320070413] +14:05:09 [ 11] [ 6] [269521] +14:05:09 [ 12] [ 6] [140413] +14:05:09 [ 13] [ 4] [0320] +14:05:09 [ 15] [ 4] [0320] +14:05:09 [ 18] [ 4] [6011] +14:05:09 [ 19] [ 3] [418] +14:05:09 [ 22] [ 3] [021] +14:05:09 [ 32] [ 6] [180893] +14:05:09 [ 35] [ 32] [6213545000785828=491212018582196] +14:05:09 [ 37] [ 12] [507907269521] +14:05:09 [ 39] [ 2] [61] +14:05:09 [ 41] [ 8] [0525XYBT] +14:05:09 [ 49] [ 3] [418] +14:05:09 ============================================================================ +14:05:09 Calculate Source COMM Id = 2 +14:05:09 ============================================================================ +14:05:09 + + +waiting on router queue for slot.... +14:05:15 ============================================================================ +14:05:15 Slot Id : <243> +14:05:15 Transaction Type : REQUEST +14:05:15 Received From : +14:05:15 ============================================================================ +14:05:15 FNo. Len. Field Value +14:05:15 ============================================================================ +14:05:15 [ 1] [ 4] [0200] +14:05:15 [ 2] [ 16] [6688990103541601] +14:05:15 [ 3] [ 6] [010000] +14:05:15 [ 4] [ 12] [000050000000] +14:05:15 [ 7] [ 10] [0320070421] +14:05:15 [ 11] [ 6] [269523] +14:05:15 [ 12] [ 6] [140421] +14:05:15 [ 13] [ 4] [0320] +14:05:15 [ 14] [ 4] [4301] +14:05:15 [ 15] [ 4] [0320] +14:05:15 [ 18] [ 4] [6011] +14:05:15 [ 19] [ 3] [418] +14:05:15 [ 22] [ 3] [021] +14:05:15 [ 25] [ 2] [01] +14:05:15 [ 28] [ 9] [D00002000] +14:05:15 [ 32] [ 6] [180893] +14:05:15 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:05:15 [ 37] [ 12] [507907269523] +14:05:15 [ 41] [ 8] [0221XKKM] +14:05:15 [ 42] [ 15] [999999 ] +14:05:15 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:05:15 [ 49] [ 3] [418] +14:05:15 [ 52] [ 16] [AA0147EB6F7A5445] +14:05:15 ============================================================================ +14:05:15 + + +waiting on router queue for slot.... +14:05:15 Sending to : +14:05:15 ============================================================================ +14:05:15 Sending to : +14:05:15 ============================================================================ +14:05:15 ============================================================================ +14:05:15 Slot Id : <243> +14:05:15 Transaction Type : REQUEST +14:05:15 Received From : +14:05:15 ============================================================================ +14:05:15 FNo. Len. Field Value +14:05:15 ============================================================================ +14:05:15 [ 1] [ 4] [0200] +14:05:15 [ 2] [ 16] [6688990103541601] +14:05:15 [ 3] [ 6] [010000] +14:05:15 [ 4] [ 12] [000050000000] +14:05:15 [ 7] [ 10] [0320070421] +14:05:15 [ 11] [ 6] [269523] +14:05:15 [ 12] [ 6] [140421] +14:05:15 [ 13] [ 4] [0320] +14:05:15 [ 14] [ 4] [4301] +14:05:15 [ 15] [ 4] [0320] +14:05:15 [ 18] [ 4] [6011] +14:05:15 [ 19] [ 3] [418] +14:05:15 [ 22] [ 3] [021] +14:05:15 [ 25] [ 2] [01] +14:05:15 [ 28] [ 9] [D00002000] +14:05:15 [ 32] [ 6] [180893] +14:05:15 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:05:15 [ 37] [ 12] [507907269523] +14:05:15 [ 41] [ 8] [0221XKKM] +14:05:15 [ 42] [ 15] [999999 ] +14:05:15 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:05:15 [ 49] [ 3] [418] +14:05:15 [ 52] [ 16] [AA0147EB6F7A5445] +14:05:15 ============================================================================ +14:05:15 + + +waiting on router queue for slot.... +14:05:15 Sending to : +14:05:15 ============================================================================ +14:05:15 ============================================================================ +14:05:15 Slot Id : <243> +14:05:15 Transaction Type : REQUEST +14:05:15 Received From : +14:05:15 ============================================================================ +14:05:15 FNo. Len. Field Value +14:05:15 ============================================================================ +14:05:15 [ 1] [ 4] [0200] +14:05:15 [ 2] [ 16] [6688990103541601] +14:05:15 [ 3] [ 6] [010000] +14:05:15 [ 4] [ 12] [000050000000] +14:05:15 [ 7] [ 10] [0320070421] +14:05:15 [ 11] [ 6] [269523] +14:05:15 [ 12] [ 6] [140421] +14:05:15 [ 13] [ 4] [0320] +14:05:15 [ 14] [ 4] [4301] +14:05:15 [ 15] [ 4] [0320] +14:05:15 [ 18] [ 4] [6011] +14:05:15 [ 19] [ 3] [418] +14:05:15 [ 22] [ 3] [021] +14:05:15 [ 25] [ 2] [01] +14:05:15 [ 28] [ 9] [D00002000] +14:05:15 [ 32] [ 6] [180893] +14:05:15 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:05:15 [ 37] [ 12] [507907269523] +14:05:15 [ 41] [ 8] [0221XKKM] +14:05:15 [ 42] [ 15] [999999 ] +14:05:15 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:05:15 [ 49] [ 3] [418] +14:05:15 [ 52] [ 16] [11EBC6641DBB9C42] +14:05:15 ============================================================================ +14:05:15 + + +waiting on router queue for slot.... +14:05:15 Sending to : <0> +14:05:15 ============================================================================ +14:05:15 ============================================================================ +14:05:15 Slot Id : <243> +14:05:15 Transaction Type : RESPONSE +14:05:15 Received From : +14:05:15 ============================================================================ +14:05:15 FNo. Len. Field Value +14:05:15 ============================================================================ +14:05:15 [ 1] [ 4] [0210] +14:05:15 [ 2] [ 16] [6688990103541601] +14:05:15 [ 3] [ 6] [010000] +14:05:15 [ 4] [ 12] [000050000000] +14:05:15 [ 7] [ 10] [0320070421] +14:05:15 [ 11] [ 6] [269523] +14:05:15 [ 12] [ 6] [140421] +14:05:15 [ 13] [ 4] [0320] +14:05:15 [ 15] [ 4] [0320] +14:05:15 [ 18] [ 4] [6011] +14:05:15 [ 19] [ 3] [418] +14:05:15 [ 22] [ 3] [021] +14:05:15 [ 32] [ 6] [180893] +14:05:15 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:05:15 [ 37] [ 12] [507907269523] +14:05:15 [ 39] [ 2] [14] +14:05:15 [ 41] [ 8] [0221XKKM] +14:05:15 [ 49] [ 3] [418] +14:05:15 ============================================================================ +14:05:15 Sending to : +14:05:15 ============================================================================ +14:05:15 + + +waiting on router queue for slot.... +14:05:16 ============================================================================ +14:05:16 Slot Id : <248> +14:05:16 Transaction Type : REQUEST +14:05:16 Received From : +14:05:16 ============================================================================ +14:05:16 FNo. Len. Field Value +14:05:16 ============================================================================ +14:05:16 [ 1] [ 4] [0200] +14:05:16 [ 2] [ 16] [6688990108417104] +14:05:16 [ 3] [ 6] [010000] +14:05:16 [ 4] [ 12] [000010000000] +14:05:16 [ 7] [ 10] [0320140511] +14:05:16 [ 11] [ 6] [765439] +14:05:16 [ 12] [ 6] [140511] +14:05:16 [ 13] [ 4] [0320] +14:05:16 [ 15] [ 4] [0320] +14:05:16 [ 18] [ 4] [6011] +14:05:16 [ 22] [ 3] [900] +14:05:16 [ 25] [ 2] [02] +14:05:16 [ 28] [ 9] [D00002000] +14:05:16 [ 32] [ 6] [621354] +14:05:16 [ 35] [ 37] [6688990108417104=44061231710449200000] +14:05:16 [ 37] [ 12] [507904719628] +14:05:16 [ 41] [ 8] [18001000] +14:05:16 [ 42] [ 15] [NATIVE ] +14:05:16 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:05:16 [ 49] [ 3] [418] +14:05:16 [ 52] [ 16] [53FDC4AB4B08F28E] +14:05:16 ============================================================================ +14:05:16 + + +waiting on router queue for slot.... +14:05:16 Sending to : +14:05:16 ============================================================================ +14:05:16 Sending to : +14:05:16 ============================================================================ +14:05:16 ============================================================================ +14:05:16 Slot Id : <248> +14:05:16 Transaction Type : REQUEST +14:05:16 Received From : +14:05:16 ============================================================================ +14:05:16 FNo. Len. Field Value +14:05:16 ============================================================================ +14:05:16 [ 1] [ 4] [0200] +14:05:16 [ 2] [ 16] [6688990108417104] +14:05:16 [ 3] [ 6] [010000] +14:05:16 [ 4] [ 12] [000010000000] +14:05:16 [ 7] [ 10] [0320140511] +14:05:16 [ 11] [ 6] [765439] +14:05:16 [ 12] [ 6] [140511] +14:05:16 [ 13] [ 4] [0320] +14:05:16 [ 15] [ 4] [0320] +14:05:16 [ 18] [ 4] [6011] +14:05:16 [ 22] [ 3] [900] +14:05:16 [ 25] [ 2] [02] +14:05:16 [ 28] [ 9] [D00002000] +14:05:16 [ 32] [ 6] [621354] +14:05:16 [ 35] [ 37] [6688990108417104=44061231710449200000] +14:05:16 [ 37] [ 12] [507904719628] +14:05:16 [ 41] [ 8] [18001000] +14:05:16 [ 42] [ 15] [NATIVE ] +14:05:16 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:05:16 [ 49] [ 3] [418] +14:05:16 [ 52] [ 16] [53FDC4AB4B08F28E] +14:05:16 ============================================================================ +14:05:16 + + +waiting on router queue for slot.... +14:05:16 Sending to : +14:05:16 ============================================================================ +14:05:16 ============================================================================ +14:05:16 Slot Id : <248> +14:05:16 Transaction Type : REQUEST +14:05:16 Received From : +14:05:16 ============================================================================ +14:05:16 FNo. Len. Field Value +14:05:16 ============================================================================ +14:05:16 [ 1] [ 4] [0200] +14:05:16 [ 2] [ 16] [6688990108417104] +14:05:16 [ 3] [ 6] [010000] +14:05:16 [ 4] [ 12] [000010000000] +14:05:16 [ 7] [ 10] [0320140511] +14:05:16 [ 11] [ 6] [765439] +14:05:16 [ 12] [ 6] [140511] +14:05:16 [ 13] [ 4] [0320] +14:05:16 [ 15] [ 4] [0320] +14:05:16 [ 18] [ 4] [6011] +14:05:16 [ 22] [ 3] [900] +14:05:16 [ 25] [ 2] [02] +14:05:16 [ 28] [ 9] [D00002000] +14:05:16 [ 32] [ 6] [621354] +14:05:16 [ 35] [ 37] [6688990108417104=44061231710449200000] +14:05:16 [ 37] [ 12] [507904719628] +14:05:16 [ 41] [ 8] [18001000] +14:05:16 [ 42] [ 15] [NATIVE ] +14:05:16 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:05:16 [ 49] [ 3] [418] +14:05:16 [ 52] [ 16] [F9F9AC4E27397504] +14:05:16 ============================================================================ +14:05:16 + + +waiting on router queue for slot.... +14:05:16 Sending to : <4> +14:05:16 ============================================================================ +14:05:16 ============================================================================ +14:05:16 Slot Id : <243> +14:05:16 Transaction Type : RESPONSE +14:05:16 Received From : +14:05:16 ============================================================================ +14:05:16 FNo. Len. Field Value +14:05:16 ============================================================================ +14:05:16 [ 1] [ 4] [0210] +14:05:16 [ 2] [ 16] [6688990103541601] +14:05:16 [ 3] [ 6] [010000] +14:05:16 [ 4] [ 12] [000050000000] +14:05:16 [ 7] [ 10] [0320070421] +14:05:16 [ 11] [ 6] [269523] +14:05:16 [ 12] [ 6] [140421] +14:05:16 [ 13] [ 4] [0320] +14:05:16 [ 15] [ 4] [0320] +14:05:16 [ 18] [ 4] [6011] +14:05:16 [ 19] [ 3] [418] +14:05:16 [ 22] [ 3] [021] +14:05:16 [ 32] [ 6] [180893] +14:05:16 [ 35] [ 37] [6688990103541601=43011231160124100000] +14:05:16 [ 37] [ 12] [507907269523] +14:05:16 [ 39] [ 2] [14] +14:05:16 [ 41] [ 8] [0221XKKM] +14:05:16 [ 49] [ 3] [418] +14:05:16 ============================================================================ +14:05:16 Calculate Source COMM Id = 2 +14:05:16 ============================================================================ +14:05:16 + + +waiting on router queue for slot.... +14:05:17 ============================================================================ +14:05:17 Slot Id : <248> +14:05:17 Transaction Type : RESPONSE +14:05:17 Received From : +14:05:17 ============================================================================ +14:05:17 FNo. Len. Field Value +14:05:17 ============================================================================ +14:05:17 [ 1] [ 4] [0210] +14:05:17 [ 2] [ 16] [6688990108417104] +14:05:17 [ 3] [ 6] [010000] +14:05:17 [ 4] [ 12] [000010000000] +14:05:17 [ 11] [ 6] [765439] +14:05:17 [ 12] [ 6] [140511] +14:05:17 [ 15] [ 4] [0320] +14:05:17 [ 18] [ 4] [6011] +14:05:17 [ 32] [ 6] [621354] +14:05:17 [ 35] [ 37] [6688990108417104=44061231710449200000] +14:05:17 [ 37] [ 12] [507904719628] +14:05:17 [ 38] [ 6] [007739] +14:05:17 [ 39] [ 2] [00] +14:05:17 [ 41] [ 8] [18001000] +14:05:17 [ 49] [ 3] [418] +14:05:17 [ 54] [ 20] [0002418C000082636912] +14:05:17 ============================================================================ +14:05:17 Sending to : +14:05:17 ============================================================================ +14:05:17 + + +waiting on router queue for slot.... +14:05:19 ============================================================================ +14:05:19 Slot Id : <248> +14:05:19 Transaction Type : RESPONSE +14:05:19 Received From : +14:05:19 ============================================================================ +14:05:19 FNo. Len. Field Value +14:05:19 ============================================================================ +14:05:19 [ 1] [ 4] [0210] +14:05:19 [ 2] [ 16] [6688990108417104] +14:05:19 [ 3] [ 6] [010000] +14:05:19 [ 4] [ 12] [000010000000] +14:05:19 [ 11] [ 6] [765439] +14:05:19 [ 12] [ 6] [140511] +14:05:19 [ 15] [ 4] [0320] +14:05:19 [ 18] [ 4] [6011] +14:05:19 [ 32] [ 6] [621354] +14:05:19 [ 35] [ 37] [6688990108417104=44061231710449200000] +14:05:19 [ 37] [ 12] [507904719628] +14:05:19 [ 38] [ 6] [007739] +14:05:19 [ 39] [ 2] [00] +14:05:19 [ 41] [ 8] [18001000] +14:05:19 [ 49] [ 3] [418] +14:05:19 [ 54] [ 20] [0002418C000082636912] +14:05:19 ============================================================================ +14:05:19 Calculate Source COMM Id = 0 +14:05:19 ============================================================================ +14:05:19 + + +waiting on router queue for slot.... +14:05:30 ============================================================================ +14:05:30 Slot Id : <244> +14:05:30 Transaction Type : REQUEST +14:05:30 Received From : +14:05:30 ============================================================================ +14:05:30 FNo. Len. Field Value +14:05:30 ============================================================================ +14:05:30 [ 1] [ 4] [0800] +14:05:30 [ 7] [ 10] [0320070437] +14:05:30 [ 11] [ 6] [156703] +14:05:30 [ 70] [ 3] [301] +14:05:30 ============================================================================ +14:05:30 + + +waiting on router queue for slot.... +14:05:30 Sending to : +14:05:30 ============================================================================ +14:05:30 ============================================================================ +14:05:30 Slot Id : <244> +14:05:30 Transaction Type : RESPONSE +14:05:30 Received From : +14:05:30 ============================================================================ +14:05:30 FNo. Len. Field Value +14:05:30 ============================================================================ +14:05:30 [ 1] [ 4] [0810] +14:05:30 [ 7] [ 10] [0320070437] +14:05:30 [ 11] [ 6] [156703] +14:05:30 [ 39] [ 2] [00] +14:05:30 [ 70] [ 3] [301] +14:05:30 ============================================================================ +14:05:30 Calculate Source COMM Id = 2 +14:05:30 ============================================================================ +14:05:30 + + +waiting on router queue for slot.... +14:05:41 ============================================================================ +14:05:41 Slot Id : <227> +14:05:41 Transaction Type : REQUEST +14:05:41 Received From : +14:05:41 ============================================================================ +14:05:41 FNo. Len. Field Value +14:05:41 ============================================================================ +14:05:41 [ 1] [ 4] [0200] +14:05:41 [ 2] [ 16] [6213545000785828] +14:05:41 [ 3] [ 6] [010000] +14:05:41 [ 4] [ 12] [000100000000] +14:05:41 [ 7] [ 10] [0320070446] +14:05:41 [ 11] [ 6] [269527] +14:05:41 [ 12] [ 6] [140446] +14:05:41 [ 13] [ 4] [0320] +14:05:41 [ 14] [ 4] [4912] +14:05:41 [ 15] [ 4] [0320] +14:05:41 [ 18] [ 4] [6011] +14:05:41 [ 19] [ 3] [418] +14:05:41 [ 22] [ 3] [021] +14:05:41 [ 25] [ 2] [01] +14:05:41 [ 28] [ 9] [D00002000] +14:05:41 [ 32] [ 6] [180893] +14:05:41 [ 35] [ 32] [6213545000785828=491212018582196] +14:05:41 [ 37] [ 12] [507907269527] +14:05:41 [ 41] [ 8] [0525XYBT] +14:05:41 [ 42] [ 15] [999999 ] +14:05:41 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:05:41 [ 49] [ 3] [418] +14:05:41 [ 52] [ 16] [AE4CEC4FA8B748E2] +14:05:41 ============================================================================ +14:05:41 + + +waiting on router queue for slot.... +14:05:41 Sending to : +14:05:41 ============================================================================ +14:05:41 Sending to : +14:05:41 ============================================================================ +14:05:41 ============================================================================ +14:05:41 Slot Id : <227> +14:05:41 Transaction Type : REQUEST +14:05:41 Received From : +14:05:41 ============================================================================ +14:05:41 FNo. Len. Field Value +14:05:41 ============================================================================ +14:05:41 [ 1] [ 4] [0200] +14:05:41 [ 2] [ 16] [6213545000785828] +14:05:41 [ 3] [ 6] [010000] +14:05:41 [ 4] [ 12] [000100000000] +14:05:41 [ 7] [ 10] [0320070446] +14:05:41 [ 11] [ 6] [269527] +14:05:41 [ 12] [ 6] [140446] +14:05:41 [ 13] [ 4] [0320] +14:05:41 [ 14] [ 4] [4912] +14:05:41 [ 15] [ 4] [0320] +14:05:41 [ 18] [ 4] [6011] +14:05:41 [ 19] [ 3] [418] +14:05:41 [ 22] [ 3] [021] +14:05:41 [ 25] [ 2] [01] +14:05:41 [ 28] [ 9] [D00002000] +14:05:41 [ 32] [ 6] [180893] +14:05:41 [ 35] [ 32] [6213545000785828=491212018582196] +14:05:41 [ 37] [ 12] [507907269527] +14:05:41 [ 41] [ 8] [0525XYBT] +14:05:41 [ 42] [ 15] [999999 ] +14:05:41 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:05:41 [ 49] [ 3] [418] +14:05:41 [ 52] [ 16] [AE4CEC4FA8B748E2] +14:05:41 ============================================================================ +14:05:41 + + +waiting on router queue for slot.... +14:05:41 Sending to : +14:05:41 ============================================================================ +14:05:41 ============================================================================ +14:05:41 Slot Id : <227> +14:05:41 Transaction Type : REQUEST +14:05:41 Received From : +14:05:41 ============================================================================ +14:05:41 FNo. Len. Field Value +14:05:41 ============================================================================ +14:05:41 [ 1] [ 4] [0200] +14:05:41 [ 2] [ 16] [6213545000785828] +14:05:41 [ 3] [ 6] [010000] +14:05:41 [ 4] [ 12] [000100000000] +14:05:41 [ 7] [ 10] [0320070446] +14:05:41 [ 11] [ 6] [269527] +14:05:41 [ 12] [ 6] [140446] +14:05:41 [ 13] [ 4] [0320] +14:05:41 [ 14] [ 4] [4912] +14:05:41 [ 15] [ 4] [0320] +14:05:41 [ 18] [ 4] [6011] +14:05:41 [ 19] [ 3] [418] +14:05:41 [ 22] [ 3] [021] +14:05:41 [ 25] [ 2] [01] +14:05:41 [ 28] [ 9] [D00002000] +14:05:41 [ 32] [ 6] [180893] +14:05:41 [ 35] [ 32] [6213545000785828=491212018582196] +14:05:41 [ 37] [ 12] [507907269527] +14:05:41 [ 41] [ 8] [0525XYBT] +14:05:41 [ 42] [ 15] [999999 ] +14:05:41 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:05:41 [ 49] [ 3] [418] +14:05:41 [ 52] [ 16] [2B74FF1B261E45CB] +14:05:41 ============================================================================ +14:05:41 + + +waiting on router queue for slot.... +14:05:41 Sending to : <0> +14:05:41 ============================================================================ +14:05:42 ============================================================================ +14:05:42 Slot Id : <235> +14:05:42 Transaction Type : REQUEST +14:05:42 Received From : +14:05:42 ============================================================================ +14:05:42 FNo. Len. Field Value +14:05:42 ============================================================================ +14:05:42 [ 1] [ 4] [0800] +14:05:42 [ 7] [ 10] [0320070449] +14:05:42 [ 11] [ 6] [156704] +14:05:42 [ 70] [ 3] [301] +14:05:42 ============================================================================ +14:05:42 + + +waiting on router queue for slot.... +14:05:42 Sending to : +14:05:42 ============================================================================ +14:05:42 ============================================================================ +14:05:42 Slot Id : <235> +14:05:42 Transaction Type : RESPONSE +14:05:42 Received From : +14:05:42 ============================================================================ +14:05:42 FNo. Len. Field Value +14:05:42 ============================================================================ +14:05:42 [ 1] [ 4] [0810] +14:05:42 [ 7] [ 10] [0320070449] +14:05:42 [ 11] [ 6] [156704] +14:05:42 [ 39] [ 2] [00] +14:05:42 [ 70] [ 3] [301] +14:05:42 ============================================================================ +14:05:42 Calculate Source COMM Id = 2 +14:05:42 ============================================================================ +14:05:42 + + +waiting on router queue for slot.... +14:05:42 ============================================================================ +14:05:42 Slot Id : <227> +14:05:42 Transaction Type : RESPONSE +14:05:42 Received From : +14:05:42 ============================================================================ +14:05:42 FNo. Len. Field Value +14:05:42 ============================================================================ +14:05:42 [ 1] [ 4] [0210] +14:05:42 [ 2] [ 16] [6213545000785828] +14:05:42 [ 3] [ 6] [010000] +14:05:42 [ 4] [ 12] [000100000000] +14:05:42 [ 7] [ 10] [0320070446] +14:05:42 [ 11] [ 6] [269527] +14:05:42 [ 12] [ 6] [140446] +14:05:42 [ 13] [ 4] [0320] +14:05:42 [ 15] [ 4] [0320] +14:05:42 [ 18] [ 4] [6011] +14:05:42 [ 19] [ 3] [418] +14:05:42 [ 32] [ 6] [180893] +14:05:42 [ 35] [ 32] [6213545000785828=491212018582196] +14:05:42 [ 37] [ 12] [507907269527] +14:05:42 [ 38] [ 6] [093427] +14:05:42 [ 39] [ 2] [00] +14:05:42 [ 41] [ 8] [0525XYBT] +14:05:42 [ 49] [ 3] [418] +14:05:42 [ 54] [ 40] [0001418C0000983834080002418C000098383408] +14:05:42 ============================================================================ +14:05:42 Sending to : +14:05:42 ============================================================================ +14:05:42 + + +waiting on router queue for slot.... +14:05:43 ============================================================================ +14:05:43 Slot Id : <227> +14:05:43 Transaction Type : RESPONSE +14:05:43 Received From : +14:05:43 ============================================================================ +14:05:43 FNo. Len. Field Value +14:05:43 ============================================================================ +14:05:43 [ 1] [ 4] [0210] +14:05:43 [ 2] [ 16] [6213545000785828] +14:05:43 [ 3] [ 6] [010000] +14:05:43 [ 4] [ 12] [000100000000] +14:05:43 [ 7] [ 10] [0320070446] +14:05:43 [ 11] [ 6] [269527] +14:05:43 [ 12] [ 6] [140446] +14:05:43 [ 13] [ 4] [0320] +14:05:43 [ 15] [ 4] [0320] +14:05:43 [ 18] [ 4] [6011] +14:05:43 [ 19] [ 3] [418] +14:05:43 [ 32] [ 6] [180893] +14:05:43 [ 35] [ 32] [6213545000785828=491212018582196] +14:05:43 [ 37] [ 12] [507907269527] +14:05:43 [ 38] [ 6] [093427] +14:05:43 [ 39] [ 2] [00] +14:05:43 [ 41] [ 8] [0525XYBT] +14:05:43 [ 49] [ 3] [418] +14:05:43 [ 54] [ 40] [0001418C0000983834080002418C000098383408] +14:05:43 ============================================================================ +14:05:43 Calculate Source COMM Id = 2 +14:05:43 ============================================================================ +14:05:43 + + +waiting on router queue for slot.... +14:05:47 ============================================================================ +14:05:47 Slot Id : <251> +14:05:47 Transaction Type : REQUEST +14:05:47 Received From : +14:05:47 ============================================================================ +14:05:47 FNo. Len. Field Value +14:05:47 ============================================================================ +14:05:47 [ 1] [ 4] [0200] +14:05:47 [ 2] [ 16] [6688990106119306] +14:05:47 [ 3] [ 6] [010000] +14:05:47 [ 4] [ 12] [000010000000] +14:05:47 [ 7] [ 10] [0320140542] +14:05:47 [ 11] [ 6] [765539] +14:05:47 [ 12] [ 6] [140542] +14:05:47 [ 13] [ 4] [0320] +14:05:47 [ 15] [ 4] [0320] +14:05:47 [ 18] [ 4] [6011] +14:05:47 [ 22] [ 3] [900] +14:05:47 [ 25] [ 2] [02] +14:05:47 [ 28] [ 9] [D00002000] +14:05:47 [ 32] [ 6] [621354] +14:05:47 [ 35] [ 37] [6688990106119306=43111231930669800000] +14:05:47 [ 37] [ 12] [507904789434] +14:05:47 [ 41] [ 8] [07001400] +14:05:47 [ 42] [ 15] [NATIVE ] +14:05:47 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +14:05:47 [ 49] [ 3] [418] +14:05:47 [ 52] [ 16] [4CD60AE0231842D0] +14:05:47 ============================================================================ +14:05:47 + + +waiting on router queue for slot.... +14:05:47 Sending to : +14:05:47 ============================================================================ +14:05:47 Sending to : +14:05:47 ============================================================================ +14:05:47 ============================================================================ +14:05:47 Slot Id : <251> +14:05:47 Transaction Type : REQUEST +14:05:47 Received From : +14:05:47 ============================================================================ +14:05:47 FNo. Len. Field Value +14:05:47 ============================================================================ +14:05:47 [ 1] [ 4] [0200] +14:05:47 [ 2] [ 16] [6688990106119306] +14:05:47 [ 3] [ 6] [010000] +14:05:47 [ 4] [ 12] [000010000000] +14:05:47 [ 7] [ 10] [0320140542] +14:05:47 [ 11] [ 6] [765539] +14:05:47 [ 12] [ 6] [140542] +14:05:47 [ 13] [ 4] [0320] +14:05:47 [ 15] [ 4] [0320] +14:05:47 [ 18] [ 4] [6011] +14:05:47 [ 22] [ 3] [900] +14:05:47 [ 25] [ 2] [02] +14:05:47 [ 28] [ 9] [D00002000] +14:05:47 [ 32] [ 6] [621354] +14:05:47 [ 35] [ 37] [6688990106119306=43111231930669800000] +14:05:47 [ 37] [ 12] [507904789434] +14:05:47 [ 41] [ 8] [07001400] +14:05:47 [ 42] [ 15] [NATIVE ] +14:05:47 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +14:05:47 [ 49] [ 3] [418] +14:05:47 [ 52] [ 16] [4CD60AE0231842D0] +14:05:47 ============================================================================ +14:05:47 + + +waiting on router queue for slot.... +14:05:47 Sending to : +14:05:47 ============================================================================ +14:05:47 ============================================================================ +14:05:47 Slot Id : <251> +14:05:47 Transaction Type : REQUEST +14:05:47 Received From : +14:05:47 ============================================================================ +14:05:47 FNo. Len. Field Value +14:05:47 ============================================================================ +14:05:47 [ 1] [ 4] [0200] +14:05:47 [ 2] [ 16] [6688990106119306] +14:05:47 [ 3] [ 6] [010000] +14:05:47 [ 4] [ 12] [000010000000] +14:05:47 [ 7] [ 10] [0320140542] +14:05:47 [ 11] [ 6] [765539] +14:05:47 [ 12] [ 6] [140542] +14:05:47 [ 13] [ 4] [0320] +14:05:47 [ 15] [ 4] [0320] +14:05:47 [ 18] [ 4] [6011] +14:05:47 [ 22] [ 3] [900] +14:05:47 [ 25] [ 2] [02] +14:05:47 [ 28] [ 9] [D00002000] +14:05:47 [ 32] [ 6] [621354] +14:05:47 [ 35] [ 37] [6688990106119306=43111231930669800000] +14:05:47 [ 37] [ 12] [507904789434] +14:05:47 [ 41] [ 8] [07001400] +14:05:47 [ 42] [ 15] [NATIVE ] +14:05:47 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +14:05:47 [ 49] [ 3] [418] +14:05:47 [ 52] [ 16] [2E005BABA9041E3F] +14:05:47 ============================================================================ +14:05:47 + + +waiting on router queue for slot.... +14:05:47 Sending to : <4> +14:05:47 ============================================================================ +14:05:48 ============================================================================ +14:05:48 Slot Id : <251> +14:05:48 Transaction Type : RESPONSE +14:05:48 Received From : +14:05:48 ============================================================================ +14:05:48 FNo. Len. Field Value +14:05:48 ============================================================================ +14:05:48 [ 1] [ 4] [0210] +14:05:48 [ 2] [ 16] [6688990106119306] +14:05:48 [ 3] [ 6] [010000] +14:05:48 [ 4] [ 12] [000010000000] +14:05:48 [ 11] [ 6] [765539] +14:05:48 [ 12] [ 6] [140542] +14:05:48 [ 15] [ 4] [0320] +14:05:48 [ 18] [ 4] [6011] +14:05:48 [ 32] [ 6] [621354] +14:05:48 [ 35] [ 37] [6688990106119306=43111231930669800000] +14:05:48 [ 37] [ 12] [507904789434] +14:05:48 [ 38] [ 6] [847196] +14:05:48 [ 39] [ 2] [00] +14:05:48 [ 41] [ 8] [07001400] +14:05:48 [ 49] [ 3] [418] +14:05:48 [ 54] [ 20] [0002418C000106103199] +14:05:48 ============================================================================ +14:05:48 Sending to : +14:05:48 ============================================================================ +14:05:48 + + +waiting on router queue for slot.... +14:05:50 ============================================================================ +14:05:50 Slot Id : <251> +14:05:50 Transaction Type : RESPONSE +14:05:50 Received From : +14:05:50 ============================================================================ +14:05:50 FNo. Len. Field Value +14:05:50 ============================================================================ +14:05:50 [ 1] [ 4] [0210] +14:05:50 [ 2] [ 16] [6688990106119306] +14:05:50 [ 3] [ 6] [010000] +14:05:50 [ 4] [ 12] [000010000000] +14:05:50 [ 11] [ 6] [765539] +14:05:50 [ 12] [ 6] [140542] +14:05:50 [ 15] [ 4] [0320] +14:05:50 [ 18] [ 4] [6011] +14:05:50 [ 32] [ 6] [621354] +14:05:50 [ 35] [ 37] [6688990106119306=43111231930669800000] +14:05:50 [ 37] [ 12] [507904789434] +14:05:50 [ 38] [ 6] [847196] +14:05:50 [ 39] [ 2] [00] +14:05:50 [ 41] [ 8] [07001400] +14:05:50 [ 49] [ 3] [418] +14:05:50 [ 54] [ 20] [0002418C000106103199] +14:05:50 ============================================================================ +14:05:50 Calculate Source COMM Id = 0 +14:05:50 ============================================================================ +14:05:50 + + +waiting on router queue for slot.... +14:05:51 ============================================================================ +14:05:51 Slot Id : <250> +14:05:51 Transaction Type : REQUEST +14:05:51 Received From : +14:05:51 ============================================================================ +14:05:51 FNo. Len. Field Value +14:05:51 ============================================================================ +14:05:51 [ 1] [ 4] [0200] +14:05:51 [ 2] [ 16] [6688990105014904] +14:05:51 [ 3] [ 6] [300000] +14:05:51 [ 4] [ 12] [000000000000] +14:05:51 [ 7] [ 10] [0320140546] +14:05:51 [ 11] [ 6] [765552] +14:05:51 [ 12] [ 6] [140546] +14:05:51 [ 13] [ 4] [0320] +14:05:51 [ 15] [ 4] [0320] +14:05:51 [ 18] [ 4] [6011] +14:05:51 [ 22] [ 3] [900] +14:05:51 [ 25] [ 2] [02] +14:05:51 [ 28] [ 9] [D00000000] +14:05:51 [ 32] [ 6] [621354] +14:05:51 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:05:51 [ 37] [ 12] [507904635677] +14:05:51 [ 41] [ 8] [17000800] +14:05:51 [ 42] [ 15] [NATIVE ] +14:05:51 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:05:51 [ 49] [ 3] [418] +14:05:51 [ 52] [ 16] [8D48F9BC598F7280] +14:05:51 ============================================================================ +14:05:51 + + +waiting on router queue for slot.... +14:05:51 Sending to : +14:05:51 ============================================================================ +14:05:51 Sending to : +14:05:51 ============================================================================ +14:05:51 ============================================================================ +14:05:51 Slot Id : <250> +14:05:51 Transaction Type : REQUEST +14:05:51 Received From : +14:05:51 ============================================================================ +14:05:51 FNo. Len. Field Value +14:05:51 ============================================================================ +14:05:51 [ 1] [ 4] [0200] +14:05:51 [ 2] [ 16] [6688990105014904] +14:05:51 [ 3] [ 6] [300000] +14:05:51 [ 4] [ 12] [000000000000] +14:05:51 [ 7] [ 10] [0320140546] +14:05:51 [ 11] [ 6] [765552] +14:05:51 [ 12] [ 6] [140546] +14:05:51 [ 13] [ 4] [0320] +14:05:51 [ 15] [ 4] [0320] +14:05:51 [ 18] [ 4] [6011] +14:05:51 [ 22] [ 3] [900] +14:05:51 [ 25] [ 2] [02] +14:05:51 [ 28] [ 9] [D00000000] +14:05:51 [ 32] [ 6] [621354] +14:05:51 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:05:51 [ 37] [ 12] [507904635677] +14:05:51 [ 41] [ 8] [17000800] +14:05:51 [ 42] [ 15] [NATIVE ] +14:05:51 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:05:51 [ 49] [ 3] [418] +14:05:51 [ 52] [ 16] [8D48F9BC598F7280] +14:05:51 ============================================================================ +14:05:51 + + +waiting on router queue for slot.... +14:05:51 Sending to : +14:05:51 ============================================================================ +14:05:51 ============================================================================ +14:05:51 Slot Id : <250> +14:05:51 Transaction Type : REQUEST +14:05:51 Received From : +14:05:51 ============================================================================ +14:05:51 FNo. Len. Field Value +14:05:51 ============================================================================ +14:05:51 [ 1] [ 4] [0200] +14:05:51 [ 2] [ 16] [6688990105014904] +14:05:51 [ 3] [ 6] [300000] +14:05:51 [ 4] [ 12] [000000000000] +14:05:51 [ 7] [ 10] [0320140546] +14:05:51 [ 11] [ 6] [765552] +14:05:51 [ 12] [ 6] [140546] +14:05:51 [ 13] [ 4] [0320] +14:05:51 [ 15] [ 4] [0320] +14:05:51 [ 18] [ 4] [6011] +14:05:51 [ 22] [ 3] [900] +14:05:51 [ 25] [ 2] [02] +14:05:51 [ 28] [ 9] [D00000000] +14:05:51 [ 32] [ 6] [621354] +14:05:51 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:05:51 [ 37] [ 12] [507904635677] +14:05:51 [ 41] [ 8] [17000800] +14:05:51 [ 42] [ 15] [NATIVE ] +14:05:51 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:05:51 [ 49] [ 3] [418] +14:05:51 [ 52] [ 16] [883C480C8C0C895A] +14:05:51 ============================================================================ +14:05:51 + + +waiting on router queue for slot.... +14:05:51 Sending to : <4> +14:05:51 ============================================================================ +14:05:52 ============================================================================ +14:05:52 Slot Id : <226> +14:05:52 Transaction Type : REQUEST +14:05:52 Received From : +14:05:52 ============================================================================ +14:05:52 FNo. Len. Field Value +14:05:52 ============================================================================ +14:05:52 [ 1] [ 4] [0200] +14:05:52 [ 2] [ 19] [6222082010002177024] +14:05:52 [ 3] [ 6] [010000] +14:05:52 [ 4] [ 12] [000200000000] +14:05:52 [ 7] [ 10] [0320070458] +14:05:52 [ 11] [ 6] [269529] +14:05:52 [ 12] [ 6] [140458] +14:05:52 [ 13] [ 4] [0320] +14:05:52 [ 14] [ 4] [2203] +14:05:52 [ 15] [ 4] [0320] +14:05:52 [ 18] [ 4] [6011] +14:05:52 [ 19] [ 3] [418] +14:05:52 [ 22] [ 3] [021] +14:05:52 [ 25] [ 2] [01] +14:05:52 [ 28] [ 9] [D00015000] +14:05:52 [ 32] [ 6] [180893] +14:05:52 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:05:52 [ 37] [ 12] [507907269529] +14:05:52 [ 41] [ 8] [0441VT52] +14:05:52 [ 42] [ 15] [999999 ] +14:05:52 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +14:05:52 [ 49] [ 3] [418] +14:05:52 [ 52] [ 16] [677B220839BB3FC0] +14:05:52 ============================================================================ +14:05:52 + + +waiting on router queue for slot.... +14:05:52 Sending to : +14:05:52 ============================================================================ +14:05:52 Sending to : +14:05:52 ============================================================================ +14:05:52 ============================================================================ +14:05:52 Slot Id : <250> +14:05:52 Transaction Type : RESPONSE +14:05:52 Received From : +14:05:52 ============================================================================ +14:05:52 FNo. Len. Field Value +14:05:52 ============================================================================ +14:05:52 [ 1] [ 4] [0210] +14:05:52 [ 2] [ 16] [6688990105014904] +14:05:52 [ 3] [ 6] [300000] +14:05:52 [ 4] [ 12] [000000000000] +14:05:52 [ 11] [ 6] [765552] +14:05:52 [ 12] [ 6] [140546] +14:05:52 [ 15] [ 4] [0320] +14:05:52 [ 18] [ 4] [6011] +14:05:52 [ 32] [ 6] [621354] +14:05:52 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:05:52 [ 37] [ 12] [507904635677] +14:05:52 [ 38] [ 6] [773470] +14:05:52 [ 39] [ 2] [00] +14:05:52 [ 41] [ 8] [17000800] +14:05:52 [ 49] [ 3] [418] +14:05:52 [ 54] [ 20] [0002418C000436290816] +14:05:52 ============================================================================ +14:05:52 Sending to : +14:05:52 ============================================================================ +14:05:52 + + +waiting on router queue for slot.... +14:05:52 ============================================================================ +14:05:52 Slot Id : <226> +14:05:52 Transaction Type : REQUEST +14:05:52 Received From : +14:05:52 ============================================================================ +14:05:52 FNo. Len. Field Value +14:05:52 ============================================================================ +14:05:52 [ 1] [ 4] [0200] +14:05:52 [ 2] [ 19] [6222082010002177024] +14:05:52 [ 3] [ 6] [010000] +14:05:52 [ 4] [ 12] [000200000000] +14:05:52 [ 7] [ 10] [0320070458] +14:05:52 [ 11] [ 6] [269529] +14:05:52 [ 12] [ 6] [140458] +14:05:52 [ 13] [ 4] [0320] +14:05:52 [ 14] [ 4] [2203] +14:05:52 [ 15] [ 4] [0320] +14:05:52 [ 18] [ 4] [6011] +14:05:52 [ 19] [ 3] [418] +14:05:52 [ 22] [ 3] [021] +14:05:52 [ 25] [ 2] [01] +14:05:52 [ 28] [ 9] [D00015000] +14:05:52 [ 32] [ 6] [180893] +14:05:52 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:05:52 [ 37] [ 12] [507907269529] +14:05:52 [ 41] [ 8] [0441VT52] +14:05:52 [ 42] [ 15] [999999 ] +14:05:52 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +14:05:52 [ 49] [ 3] [418] +14:05:52 [ 52] [ 16] [677B220839BB3FC0] +14:05:52 ============================================================================ +14:05:52 + + +waiting on router queue for slot.... +14:05:52 Sending to : +14:05:52 ============================================================================ +14:05:52 ============================================================================ +14:05:52 Slot Id : <226> +14:05:52 Transaction Type : REQUEST +14:05:52 Received From : +14:05:52 ============================================================================ +14:05:52 FNo. Len. Field Value +14:05:52 ============================================================================ +14:05:52 [ 1] [ 4] [0200] +14:05:52 [ 2] [ 19] [6222082010002177024] +14:05:52 [ 3] [ 6] [010000] +14:05:52 [ 4] [ 12] [000200000000] +14:05:52 [ 7] [ 10] [0320070458] +14:05:52 [ 11] [ 6] [269529] +14:05:52 [ 12] [ 6] [140458] +14:05:52 [ 13] [ 4] [0320] +14:05:52 [ 14] [ 4] [2203] +14:05:52 [ 15] [ 4] [0320] +14:05:52 [ 18] [ 4] [6011] +14:05:52 [ 19] [ 3] [418] +14:05:52 [ 22] [ 3] [021] +14:05:52 [ 25] [ 2] [01] +14:05:52 [ 28] [ 9] [D00015000] +14:05:52 [ 32] [ 6] [180893] +14:05:52 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:05:52 [ 37] [ 12] [507907269529] +14:05:52 [ 41] [ 8] [0441VT52] +14:05:52 [ 42] [ 15] [999999 ] +14:05:52 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +14:05:52 [ 49] [ 3] [418] +14:05:52 [ 52] [ 16] [B5FBF6FB7F40D0AA] +14:05:52 ============================================================================ +14:05:52 + + +waiting on router queue for slot.... +14:05:52 Sending to : <0> +14:05:52 ============================================================================ +14:05:52 ============================================================================ +14:05:52 Slot Id : <226> +14:05:52 Transaction Type : RESPONSE +14:05:52 Received From : +14:05:52 ============================================================================ +14:05:52 FNo. Len. Field Value +14:05:52 ============================================================================ +14:05:52 [ 1] [ 4] [0210] +14:05:52 [ 2] [ 19] [6222082010002177024] +14:05:52 [ 3] [ 6] [010000] +14:05:52 [ 4] [ 12] [000200000000] +14:05:52 [ 7] [ 10] [0320070458] +14:05:52 [ 11] [ 6] [269529] +14:05:52 [ 12] [ 6] [140458] +14:05:52 [ 13] [ 4] [0320] +14:05:52 [ 15] [ 4] [0320] +14:05:52 [ 18] [ 4] [6011] +14:05:52 [ 19] [ 3] [418] +14:05:52 [ 22] [ 3] [021] +14:05:52 [ 32] [ 6] [180893] +14:05:52 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:05:52 [ 37] [ 12] [507907269529] +14:05:52 [ 39] [ 2] [61] +14:05:52 [ 41] [ 8] [0441VT52] +14:05:52 [ 49] [ 3] [418] +14:05:52 ============================================================================ +14:05:52 Sending to : +14:05:52 ============================================================================ +14:05:52 + + +waiting on router queue for slot.... +14:05:53 ============================================================================ +14:05:53 Slot Id : <250> +14:05:53 Transaction Type : RESPONSE +14:05:53 Received From : +14:05:53 ============================================================================ +14:05:53 FNo. Len. Field Value +14:05:53 ============================================================================ +14:05:53 [ 1] [ 4] [0210] +14:05:53 [ 2] [ 16] [6688990105014904] +14:05:53 [ 3] [ 6] [300000] +14:05:53 [ 4] [ 12] [000000000000] +14:05:53 [ 11] [ 6] [765552] +14:05:53 [ 12] [ 6] [140546] +14:05:53 [ 15] [ 4] [0320] +14:05:53 [ 18] [ 4] [6011] +14:05:53 [ 32] [ 6] [621354] +14:05:53 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:05:53 [ 37] [ 12] [507904635677] +14:05:53 [ 38] [ 6] [773470] +14:05:53 [ 39] [ 2] [00] +14:05:53 [ 41] [ 8] [17000800] +14:05:53 [ 49] [ 3] [418] +14:05:53 [ 54] [ 20] [0002418C000436290816] +14:05:53 ============================================================================ +14:05:53 Calculate Source COMM Id = 0 +14:05:53 ============================================================================ +14:05:53 + + +waiting on router queue for slot.... +14:05:53 ============================================================================ +14:05:53 Slot Id : <177> +14:05:53 Transaction Type : REQUEST +14:05:53 Received From : +14:05:53 ============================================================================ +14:05:53 FNo. Len. Field Value +14:05:53 ============================================================================ +14:05:53 [ 1] [ 4] [0800] +14:05:53 [ 7] [ 10] [0320211742] +14:05:53 [ 11] [ 6] [141742] +14:05:53 [ 37] [ 12] [57914141742] +14:05:53 [ 70] [ 3] [301] +14:05:53 ============================================================================ +14:05:53 + + +waiting on router queue for slot.... +14:05:53 Sending to : +14:05:53 ============================================================================ +14:05:53 ============================================================================ +14:05:53 Slot Id : <177> +14:05:53 Transaction Type : RESPONSE +14:05:53 Received From : +14:05:53 ============================================================================ +14:05:53 FNo. Len. Field Value +14:05:53 ============================================================================ +14:05:53 [ 1] [ 4] [0810] +14:05:53 [ 7] [ 10] [0320211742] +14:05:53 [ 11] [ 6] [141742] +14:05:53 [ 37] [ 12] [579141417420] +14:05:53 [ 39] [ 2] [00] +14:05:53 [ 70] [ 3] [810] +14:05:53 ============================================================================ +14:05:53 Calculate Source COMM Id = 6 +14:05:53 ============================================================================ +14:05:53 + + +waiting on router queue for slot.... +14:05:54 ============================================================================ +14:05:54 Slot Id : <242> +14:05:54 Transaction Type : REQUEST +14:05:54 Received From : +14:05:54 ============================================================================ +14:05:54 FNo. Len. Field Value +14:05:54 ============================================================================ +14:05:54 [ 1] [ 4] [0800] +14:05:54 [ 2] [ 5] [02531] +14:05:54 [ 3] [ 6] [579148] +14:05:54 [ 7] [ 10] [0320070554] +14:05:54 [ 11] [ 6] [807230] +14:05:54 [ 15] [ 10] [0320070554] +14:05:54 [ 37] [ 11] [57914807230] +14:05:54 [ 70] [ 3] [001] +14:05:54 ============================================================================ +14:05:54 + + +waiting on router queue for slot.... +14:05:54 ============================================================================ +14:05:54 Slot Id : <242> +14:05:54 Transaction Type : RESPONSE +14:05:54 Received From : +14:05:54 ============================================================================ +14:05:54 FNo. Len. Field Value +14:05:54 ============================================================================ +14:05:54 [ 1] [ 4] [0810] +14:05:54 [ 7] [ 10] [0320070554] +14:05:54 [ 11] [ 6] [807230] +14:05:54 [ 15] [ 4] [0320] +14:05:54 [ 37] [ 12] [57914807230] +14:05:54 [ 39] [ 2] [00] +14:05:54 [ 70] [ 3] [001] +14:05:54 ============================================================================ +14:05:54 Sending to : +14:05:54 ============================================================================ +14:05:54 + + +waiting on router queue for slot.... +14:05:54 ============================================================================ +14:05:54 Slot Id : <226> +14:05:54 Transaction Type : RESPONSE +14:05:54 Received From : +14:05:54 ============================================================================ +14:05:54 FNo. Len. Field Value +14:05:54 ============================================================================ +14:05:54 [ 1] [ 4] [0210] +14:05:54 [ 2] [ 19] [6222082010002177024] +14:05:54 [ 3] [ 6] [010000] +14:05:54 [ 4] [ 12] [000200000000] +14:05:54 [ 7] [ 10] [0320070458] +14:05:54 [ 11] [ 6] [269529] +14:05:54 [ 12] [ 6] [140458] +14:05:54 [ 13] [ 4] [0320] +14:05:54 [ 15] [ 4] [0320] +14:05:54 [ 18] [ 4] [6011] +14:05:54 [ 19] [ 3] [418] +14:05:54 [ 22] [ 3] [021] +14:05:54 [ 32] [ 6] [180893] +14:05:54 [ 35] [ 37] [6222082010002177024=22032203509991215] +14:05:54 [ 37] [ 12] [507907269529] +14:05:54 [ 39] [ 2] [61] +14:05:54 [ 41] [ 8] [0441VT52] +14:05:54 [ 49] [ 3] [418] +14:05:54 ============================================================================ +14:05:54 Calculate Source COMM Id = 2 +14:05:54 ============================================================================ +14:05:54 + + +waiting on router queue for slot.... +14:06:06 ============================================================================ +14:06:06 Slot Id : <255> +14:06:06 Transaction Type : REQUEST +14:06:06 Received From : +14:06:06 ============================================================================ +14:06:06 FNo. Len. Field Value +14:06:06 ============================================================================ +14:06:06 [ 1] [ 4] [0800] +14:06:06 [ 7] [ 10] [0320070513] +14:06:06 [ 11] [ 6] [156705] +14:06:06 [ 70] [ 3] [301] +14:06:06 ============================================================================ +14:06:06 + + +waiting on router queue for slot.... +14:06:06 Sending to : +14:06:06 ============================================================================ +14:06:06 ============================================================================ +14:06:06 Slot Id : <255> +14:06:06 Transaction Type : RESPONSE +14:06:06 Received From : +14:06:06 ============================================================================ +14:06:06 FNo. Len. Field Value +14:06:06 ============================================================================ +14:06:06 [ 1] [ 4] [0810] +14:06:06 [ 7] [ 10] [0320070513] +14:06:06 [ 11] [ 6] [156705] +14:06:06 [ 39] [ 2] [00] +14:06:06 [ 70] [ 3] [301] +14:06:06 ============================================================================ +14:06:06 Calculate Source COMM Id = 2 +14:06:06 ============================================================================ +14:06:06 + + +waiting on router queue for slot.... +14:06:17 ============================================================================ +14:06:17 Slot Id : <233> +14:06:17 Transaction Type : REQUEST +14:06:17 Received From : +14:06:17 ============================================================================ +14:06:17 FNo. Len. Field Value +14:06:17 ============================================================================ +14:06:17 [ 1] [ 4] [0800] +14:06:17 [ 7] [ 10] [0320070524] +14:06:17 [ 11] [ 6] [156706] +14:06:17 [ 70] [ 3] [301] +14:06:17 ============================================================================ +14:06:17 + + +waiting on router queue for slot.... +14:06:17 Sending to : +14:06:17 ============================================================================ +14:06:17 ============================================================================ +14:06:17 Slot Id : <233> +14:06:17 Transaction Type : RESPONSE +14:06:17 Received From : +14:06:17 ============================================================================ +14:06:17 FNo. Len. Field Value +14:06:17 ============================================================================ +14:06:17 [ 1] [ 4] [0810] +14:06:17 [ 7] [ 10] [0320070524] +14:06:17 [ 11] [ 6] [156706] +14:06:17 [ 39] [ 2] [00] +14:06:17 [ 70] [ 3] [301] +14:06:17 ============================================================================ +14:06:17 Calculate Source COMM Id = 2 +14:06:17 ============================================================================ +14:06:17 + + +waiting on router queue for slot.... +14:06:20 ============================================================================ +14:06:20 Slot Id : <200> +14:06:20 Transaction Type : REQUEST +14:06:20 Received From : +14:06:20 ============================================================================ +14:06:20 FNo. Len. Field Value +14:06:20 ============================================================================ +14:06:20 [ 1] [ 4] [0200] +14:06:20 [ 2] [ 16] [6688990602752808] +14:06:20 [ 3] [ 6] [010000] +14:06:20 [ 4] [ 12] [000100000000] +14:06:20 [ 7] [ 10] [0320070524] +14:06:20 [ 11] [ 6] [269533] +14:06:20 [ 12] [ 6] [140524] +14:06:20 [ 13] [ 4] [0320] +14:06:20 [ 14] [ 4] [4310] +14:06:20 [ 15] [ 4] [0320] +14:06:20 [ 18] [ 4] [6011] +14:06:20 [ 19] [ 3] [418] +14:06:20 [ 22] [ 3] [021] +14:06:20 [ 25] [ 2] [01] +14:06:20 [ 28] [ 9] [D00002000] +14:06:20 [ 32] [ 6] [180893] +14:06:20 [ 35] [ 37] [6688990602752808=43100061280844500000] +14:06:20 [ 37] [ 12] [507907269533] +14:06:20 [ 41] [ 8] [0201ADD1] +14:06:20 [ 42] [ 15] [999999 ] +14:06:20 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:06:20 [ 49] [ 3] [418] +14:06:20 [ 52] [ 16] [E0C869840C162E39] +14:06:20 ============================================================================ +14:06:20 + + +waiting on router queue for slot.... +14:06:20 Sending to : +14:06:20 ============================================================================ +14:06:20 Sending to : +14:06:20 ============================================================================ +14:06:20 ============================================================================ +14:06:20 Slot Id : <238> +14:06:20 Transaction Type : REQUEST +14:06:20 Received From : +14:06:20 ============================================================================ +14:06:20 FNo. Len. Field Value +14:06:20 ============================================================================ +14:06:20 [ 1] [ 4] [0200] +14:06:20 [ 2] [ 16] [6213543000063684] +14:06:20 [ 3] [ 6] [010000] +14:06:20 [ 4] [ 12] [000100000000] +14:06:20 [ 7] [ 10] [0320140410] +14:06:20 [ 11] [ 6] [947980] +14:06:20 [ 12] [ 6] [140410] +14:06:20 [ 13] [ 4] [0320] +14:06:20 [ 15] [ 4] [0320] +14:06:20 [ 18] [ 4] [6011] +14:06:20 [ 19] [ 3] [418] +14:06:20 [ 22] [ 3] [021] +14:06:20 [ 25] [ 2] [01] +14:06:20 [ 28] [ 9] [D00002000] +14:06:20 [ 32] [ 6] [668899] +14:06:20 [ 35] [ 32] [6213543000063684=491212016368568] +14:06:20 [ 37] [ 12] [507901541719] +14:06:20 [ 41] [ 8] [03020016] +14:06:20 [ 42] [ 15] [APT ] +14:06:20 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +14:06:20 [ 49] [ 3] [418] +14:06:20 [ 52] [ 16] [A56E8BA659683C6B] +14:06:20 ============================================================================ +14:06:20 + + +waiting on router queue for slot.... +14:06:20 Sending to : +14:06:20 ============================================================================ +14:06:20 Sending to : +14:06:20 ============================================================================ +14:06:20 ============================================================================ +14:06:20 Slot Id : <200> +14:06:20 Transaction Type : REQUEST +14:06:20 Received From : +14:06:20 ============================================================================ +14:06:20 FNo. Len. Field Value +14:06:20 ============================================================================ +14:06:20 [ 1] [ 4] [0200] +14:06:20 [ 2] [ 16] [6688990602752808] +14:06:20 [ 3] [ 6] [010000] +14:06:20 [ 4] [ 12] [000100000000] +14:06:20 [ 7] [ 10] [0320070524] +14:06:20 [ 11] [ 6] [269533] +14:06:20 [ 12] [ 6] [140524] +14:06:20 [ 13] [ 4] [0320] +14:06:20 [ 14] [ 4] [4310] +14:06:20 [ 15] [ 4] [0320] +14:06:20 [ 18] [ 4] [6011] +14:06:20 [ 19] [ 3] [418] +14:06:20 [ 22] [ 3] [021] +14:06:20 [ 25] [ 2] [01] +14:06:20 [ 28] [ 9] [D00002000] +14:06:20 [ 32] [ 6] [180893] +14:06:20 [ 35] [ 37] [6688990602752808=43100061280844500000] +14:06:20 [ 37] [ 12] [507907269533] +14:06:20 [ 41] [ 8] [0201ADD1] +14:06:20 [ 42] [ 15] [999999 ] +14:06:20 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:06:20 [ 49] [ 3] [418] +14:06:20 [ 52] [ 16] [E0C869840C162E39] +14:06:20 ============================================================================ +14:06:20 + + +waiting on router queue for slot.... +14:06:20 Sending to : +14:06:20 ============================================================================ +14:06:20 ============================================================================ +14:06:20 Slot Id : <200> +14:06:20 Transaction Type : REQUEST +14:06:20 Received From : +14:06:20 ============================================================================ +14:06:20 FNo. Len. Field Value +14:06:20 ============================================================================ +14:06:20 [ 1] [ 4] [0200] +14:06:20 [ 2] [ 16] [6688990602752808] +14:06:20 [ 3] [ 6] [010000] +14:06:20 [ 4] [ 12] [000100000000] +14:06:20 [ 7] [ 10] [0320070524] +14:06:20 [ 11] [ 6] [269533] +14:06:20 [ 12] [ 6] [140524] +14:06:20 [ 13] [ 4] [0320] +14:06:20 [ 14] [ 4] [4310] +14:06:20 [ 15] [ 4] [0320] +14:06:20 [ 18] [ 4] [6011] +14:06:20 [ 19] [ 3] [418] +14:06:20 [ 22] [ 3] [021] +14:06:20 [ 25] [ 2] [01] +14:06:20 [ 28] [ 9] [D00002000] +14:06:20 [ 32] [ 6] [180893] +14:06:20 [ 35] [ 37] [6688990602752808=43100061280844500000] +14:06:20 [ 37] [ 12] [507907269533] +14:06:20 [ 41] [ 8] [0201ADD1] +14:06:20 [ 42] [ 15] [999999 ] +14:06:20 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:06:20 [ 49] [ 3] [418] +14:06:20 [ 52] [ 16] [33AE0E2DA08BC735] +14:06:20 ============================================================================ +14:06:20 + + +waiting on router queue for slot.... +14:06:20 Sending to : <0> +14:06:20 ============================================================================ +14:06:20 ============================================================================ +14:06:20 Slot Id : <200> +14:06:20 Transaction Type : RESPONSE +14:06:20 Received From : +14:06:20 ============================================================================ +14:06:20 FNo. Len. Field Value +14:06:20 ============================================================================ +14:06:20 [ 1] [ 4] [0210] +14:06:20 [ 2] [ 16] [6688990602752808] +14:06:20 [ 3] [ 6] [010000] +14:06:20 [ 4] [ 12] [000100000000] +14:06:20 [ 7] [ 10] [0320070524] +14:06:20 [ 11] [ 6] [269533] +14:06:20 [ 12] [ 6] [140524] +14:06:20 [ 13] [ 4] [0320] +14:06:20 [ 15] [ 4] [0320] +14:06:20 [ 18] [ 4] [6011] +14:06:20 [ 19] [ 3] [418] +14:06:20 [ 22] [ 3] [021] +14:06:20 [ 32] [ 6] [180893] +14:06:20 [ 35] [ 37] [6688990602752808=43100061280844500000] +14:06:20 [ 37] [ 12] [507907269533] +14:06:20 [ 39] [ 2] [14] +14:06:20 [ 41] [ 8] [0201ADD1] +14:06:20 [ 49] [ 3] [418] +14:06:20 ============================================================================ +14:06:20 Sending to : +14:06:20 ============================================================================ +14:06:20 + + +waiting on router queue for slot.... +14:06:20 ============================================================================ +14:06:20 Slot Id : <238> +14:06:20 Transaction Type : REQUEST +14:06:20 Received From : +14:06:20 ============================================================================ +14:06:20 FNo. Len. Field Value +14:06:20 ============================================================================ +14:06:20 [ 1] [ 4] [0200] +14:06:20 [ 2] [ 16] [6213543000063684] +14:06:20 [ 3] [ 6] [010000] +14:06:20 [ 4] [ 12] [000100000000] +14:06:20 [ 7] [ 10] [0320140410] +14:06:20 [ 11] [ 6] [947980] +14:06:20 [ 12] [ 6] [140410] +14:06:20 [ 13] [ 4] [0320] +14:06:20 [ 15] [ 4] [0320] +14:06:20 [ 18] [ 4] [6011] +14:06:20 [ 19] [ 3] [418] +14:06:20 [ 22] [ 3] [021] +14:06:20 [ 25] [ 2] [01] +14:06:20 [ 28] [ 9] [D00002000] +14:06:20 [ 32] [ 6] [668899] +14:06:20 [ 35] [ 32] [6213543000063684=491212016368568] +14:06:20 [ 37] [ 12] [507901541719] +14:06:20 [ 41] [ 8] [03020016] +14:06:20 [ 42] [ 15] [APT ] +14:06:20 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +14:06:20 [ 49] [ 3] [418] +14:06:20 [ 52] [ 16] [A56E8BA659683C6B] +14:06:20 ============================================================================ +14:06:20 + + +waiting on router queue for slot.... +14:06:20 Sending to : +14:06:20 ============================================================================ +14:06:20 ============================================================================ +14:06:20 Slot Id : <238> +14:06:20 Transaction Type : REQUEST +14:06:20 Received From : +14:06:20 ============================================================================ +14:06:20 FNo. Len. Field Value +14:06:20 ============================================================================ +14:06:20 [ 1] [ 4] [0200] +14:06:20 [ 2] [ 16] [6213543000063684] +14:06:20 [ 3] [ 6] [010000] +14:06:20 [ 4] [ 12] [000100000000] +14:06:20 [ 7] [ 10] [0320140410] +14:06:20 [ 11] [ 6] [947980] +14:06:20 [ 12] [ 6] [140410] +14:06:20 [ 13] [ 4] [0320] +14:06:20 [ 15] [ 4] [0320] +14:06:20 [ 18] [ 4] [6011] +14:06:20 [ 19] [ 3] [418] +14:06:20 [ 22] [ 3] [021] +14:06:20 [ 25] [ 2] [01] +14:06:20 [ 28] [ 9] [D00002000] +14:06:20 [ 32] [ 6] [668899] +14:06:20 [ 35] [ 32] [6213543000063684=491212016368568] +14:06:20 [ 37] [ 12] [507901541719] +14:06:20 [ 41] [ 8] [03020016] +14:06:20 [ 42] [ 15] [APT ] +14:06:20 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +14:06:20 [ 49] [ 3] [418] +14:06:20 [ 52] [ 16] [2CC5F61EE5B73229] +14:06:20 ============================================================================ +14:06:20 + + +waiting on router queue for slot.... +14:06:20 Sending to : <0> +14:06:20 ============================================================================ +14:06:21 ============================================================================ +14:06:21 Slot Id : <238> +14:06:21 Transaction Type : RESPONSE +14:06:21 Received From : +14:06:21 ============================================================================ +14:06:21 FNo. Len. Field Value +14:06:21 ============================================================================ +14:06:21 [ 1] [ 4] [0210] +14:06:21 [ 2] [ 16] [6213543000063684] +14:06:21 [ 3] [ 6] [010000] +14:06:21 [ 4] [ 12] [000100000000] +14:06:21 [ 7] [ 10] [0320140410] +14:06:21 [ 11] [ 6] [947980] +14:06:21 [ 12] [ 6] [140410] +14:06:21 [ 13] [ 4] [0320] +14:06:21 [ 15] [ 4] [0320] +14:06:21 [ 18] [ 4] [6011] +14:06:21 [ 19] [ 3] [418] +14:06:21 [ 32] [ 6] [668899] +14:06:21 [ 35] [ 32] [6213543000063684=491212016368568] +14:06:21 [ 37] [ 12] [507901541719] +14:06:21 [ 38] [ 6] [947980] +14:06:21 [ 39] [ 2] [51] +14:06:21 [ 41] [ 8] [03020016] +14:06:21 [ 49] [ 3] [418] +14:06:21 [ 54] [ 40] [0001418C0000368693170002418C000036869317] +14:06:21 ============================================================================ +14:06:21 Sending to : +14:06:21 ============================================================================ +14:06:21 + + +waiting on router queue for slot.... +14:06:21 ============================================================================ +14:06:21 Slot Id : <200> +14:06:21 Transaction Type : RESPONSE +14:06:21 Received From : +14:06:21 ============================================================================ +14:06:21 FNo. Len. Field Value +14:06:21 ============================================================================ +14:06:21 [ 1] [ 4] [0210] +14:06:21 [ 2] [ 16] [6688990602752808] +14:06:21 [ 3] [ 6] [010000] +14:06:21 [ 4] [ 12] [000100000000] +14:06:21 [ 7] [ 10] [0320070524] +14:06:21 [ 11] [ 6] [269533] +14:06:21 [ 12] [ 6] [140524] +14:06:21 [ 13] [ 4] [0320] +14:06:21 [ 15] [ 4] [0320] +14:06:21 [ 18] [ 4] [6011] +14:06:21 [ 19] [ 3] [418] +14:06:21 [ 22] [ 3] [021] +14:06:21 [ 32] [ 6] [180893] +14:06:21 [ 35] [ 37] [6688990602752808=43100061280844500000] +14:06:21 [ 37] [ 12] [507907269533] +14:06:21 [ 39] [ 2] [14] +14:06:21 [ 41] [ 8] [0201ADD1] +14:06:21 [ 49] [ 3] [418] +14:06:21 ============================================================================ +14:06:21 Calculate Source COMM Id = 2 +14:06:21 ============================================================================ +14:06:21 + + +waiting on router queue for slot.... +14:06:22 ============================================================================ +14:06:22 Slot Id : <237> +14:06:22 Transaction Type : REQUEST +14:06:22 Received From : +14:06:22 ============================================================================ +14:06:22 FNo. Len. Field Value +14:06:22 ============================================================================ +14:06:22 [ 1] [ 4] [0800] +14:06:22 [ 7] [ 10] [0320070412] +14:06:22 [ 11] [ 6] [075234] +14:06:22 [ 37] [ 12] [57914075234] +14:06:22 [ 70] [ 3] [301] +14:06:22 ============================================================================ +14:06:22 + + +waiting on router queue for slot.... +14:06:22 Sending to : +14:06:22 ============================================================================ +14:06:22 ============================================================================ +14:06:22 Slot Id : <237> +14:06:22 Transaction Type : RESPONSE +14:06:22 Received From : +14:06:22 ============================================================================ +14:06:22 FNo. Len. Field Value +14:06:22 ============================================================================ +14:06:22 [ 1] [ 4] [0810] +14:06:22 [ 7] [ 10] [0320070412] +14:06:22 [ 11] [ 6] [075234] +14:06:22 [ 37] [ 12] [579140752340] +14:06:22 [ 39] [ 2] [00] +14:06:22 [ 70] [ 3] [810] +14:06:22 ============================================================================ +14:06:22 Calculate Source COMM Id = 4 +14:06:22 ============================================================================ +14:06:22 + + +waiting on router queue for slot.... +14:06:22 ============================================================================ +14:06:22 Slot Id : <238> +14:06:22 Transaction Type : RESPONSE +14:06:22 Received From : +14:06:22 ============================================================================ +14:06:22 FNo. Len. Field Value +14:06:22 ============================================================================ +14:06:22 [ 1] [ 4] [0210] +14:06:22 [ 2] [ 16] [6213543000063684] +14:06:22 [ 3] [ 6] [010000] +14:06:22 [ 4] [ 12] [000100000000] +14:06:22 [ 7] [ 10] [0320140410] +14:06:22 [ 11] [ 6] [947980] +14:06:22 [ 12] [ 6] [140410] +14:06:22 [ 13] [ 4] [0320] +14:06:22 [ 15] [ 4] [0320] +14:06:22 [ 18] [ 4] [6011] +14:06:22 [ 19] [ 3] [418] +14:06:22 [ 32] [ 6] [668899] +14:06:22 [ 35] [ 32] [6213543000063684=491212016368568] +14:06:22 [ 37] [ 12] [507901541719] +14:06:22 [ 38] [ 6] [947980] +14:06:22 [ 39] [ 2] [51] +14:06:22 [ 41] [ 8] [03020016] +14:06:22 [ 49] [ 3] [418] +14:06:22 [ 54] [ 40] [0001418C0000368693170002418C000036869317] +14:06:22 ============================================================================ +14:06:22 Calculate Source COMM Id = 4 +14:06:22 ============================================================================ +14:06:22 + + +waiting on router queue for slot.... +14:06:33 ============================================================================ +14:06:33 Slot Id : <216> +14:06:33 Transaction Type : REQUEST +14:06:33 Received From : +14:06:33 ============================================================================ +14:06:33 FNo. Len. Field Value +14:06:33 ============================================================================ +14:06:33 [ 1] [ 4] [0800] +14:06:33 [ 7] [ 10] [0320070540] +14:06:33 [ 11] [ 6] [156707] +14:06:33 [ 70] [ 3] [301] +14:06:33 ============================================================================ +14:06:33 + + +waiting on router queue for slot.... +14:06:33 Sending to : +14:06:33 ============================================================================ +14:06:33 ============================================================================ +14:06:33 Slot Id : <216> +14:06:33 Transaction Type : RESPONSE +14:06:33 Received From : +14:06:33 ============================================================================ +14:06:33 FNo. Len. Field Value +14:06:33 ============================================================================ +14:06:33 [ 1] [ 4] [0810] +14:06:33 [ 7] [ 10] [0320070540] +14:06:33 [ 11] [ 6] [156707] +14:06:33 [ 39] [ 2] [00] +14:06:33 [ 70] [ 3] [301] +14:06:33 ============================================================================ +14:06:33 Calculate Source COMM Id = 2 +14:06:33 ============================================================================ +14:06:33 + + +waiting on router queue for slot.... +14:06:43 ============================================================================ +14:06:43 Slot Id : <253> +14:06:43 Transaction Type : REQUEST +14:06:43 Received From : +14:06:43 ============================================================================ +14:06:43 FNo. Len. Field Value +14:06:43 ============================================================================ +14:06:43 [ 1] [ 4] [0800] +14:06:43 [ 7] [ 10] [0320070550] +14:06:43 [ 11] [ 6] [156708] +14:06:43 [ 70] [ 3] [301] +14:06:43 ============================================================================ +14:06:43 + + +waiting on router queue for slot.... +14:06:43 Sending to : +14:06:43 ============================================================================ +14:06:43 ============================================================================ +14:06:43 Slot Id : <253> +14:06:43 Transaction Type : RESPONSE +14:06:43 Received From : +14:06:43 ============================================================================ +14:06:43 FNo. Len. Field Value +14:06:43 ============================================================================ +14:06:43 [ 1] [ 4] [0810] +14:06:43 [ 7] [ 10] [0320070550] +14:06:43 [ 11] [ 6] [156708] +14:06:43 [ 39] [ 2] [00] +14:06:43 [ 70] [ 3] [301] +14:06:43 ============================================================================ +14:06:43 Calculate Source COMM Id = 2 +14:06:43 ============================================================================ +14:06:43 + + +waiting on router queue for slot.... +14:06:53 ============================================================================ +14:06:53 Slot Id : <260> +14:06:53 Transaction Type : REQUEST +14:06:53 Received From : +14:06:53 ============================================================================ +14:06:53 FNo. Len. Field Value +14:06:53 ============================================================================ +14:06:53 [ 1] [ 4] [0800] +14:06:53 [ 7] [ 10] [0320070600] +14:06:53 [ 11] [ 6] [156709] +14:06:53 [ 70] [ 3] [301] +14:06:53 ============================================================================ +14:06:53 + + +waiting on router queue for slot.... +14:06:53 Sending to : +14:06:53 ============================================================================ +14:06:53 ============================================================================ +14:06:53 Slot Id : <260> +14:06:53 Transaction Type : RESPONSE +14:06:53 Received From : +14:06:53 ============================================================================ +14:06:53 FNo. Len. Field Value +14:06:53 ============================================================================ +14:06:53 [ 1] [ 4] [0810] +14:06:53 [ 7] [ 10] [0320070600] +14:06:53 [ 11] [ 6] [156709] +14:06:53 [ 39] [ 2] [00] +14:06:53 [ 70] [ 3] [301] +14:06:53 ============================================================================ +14:06:53 Calculate Source COMM Id = 2 +14:06:53 ============================================================================ +14:06:53 + + +waiting on router queue for slot.... +14:06:56 ============================================================================ +14:06:56 Slot Id : <234> +14:06:56 Transaction Type : REQUEST +14:06:56 Received From : +14:06:56 ============================================================================ +14:06:56 FNo. Len. Field Value +14:06:56 ============================================================================ +14:06:56 [ 1] [ 4] [0800] +14:06:56 [ 2] [ 5] [02531] +14:06:56 [ 3] [ 6] [579148] +14:06:56 [ 7] [ 10] [0320070656] +14:06:56 [ 11] [ 6] [807231] +14:06:56 [ 15] [ 10] [0320070656] +14:06:56 [ 37] [ 11] [57914807231] +14:06:56 [ 70] [ 3] [001] +14:06:56 ============================================================================ +14:06:56 + + +waiting on router queue for slot.... +14:06:56 ============================================================================ +14:06:56 Slot Id : <234> +14:06:56 Transaction Type : RESPONSE +14:06:56 Received From : +14:06:56 ============================================================================ +14:06:56 FNo. Len. Field Value +14:06:56 ============================================================================ +14:06:56 [ 1] [ 4] [0810] +14:06:56 [ 7] [ 10] [0320070656] +14:06:56 [ 11] [ 6] [807231] +14:06:56 [ 15] [ 4] [0320] +14:06:56 [ 37] [ 12] [57914807231] +14:06:56 [ 39] [ 2] [00] +14:06:56 [ 70] [ 3] [001] +14:06:56 ============================================================================ +14:06:56 Sending to : +14:06:56 ============================================================================ +14:06:56 + + +waiting on router queue for slot.... +14:06:58 ============================================================================ +14:06:58 Slot Id : <249> +14:06:58 Transaction Type : REQUEST +14:06:58 Received From : +14:06:58 ============================================================================ +14:06:58 FNo. Len. Field Value +14:06:58 ============================================================================ +14:06:58 [ 1] [ 4] [0800] +14:06:58 [ 7] [ 10] [0320211847] +14:06:58 [ 11] [ 6] [141847] +14:06:58 [ 37] [ 12] [57914141847] +14:06:58 [ 70] [ 3] [301] +14:06:58 ============================================================================ +14:06:58 + + +waiting on router queue for slot.... +14:06:58 Sending to : +14:06:58 ============================================================================ +14:06:58 ============================================================================ +14:06:58 Slot Id : <249> +14:06:58 Transaction Type : RESPONSE +14:06:58 Received From : +14:06:58 ============================================================================ +14:06:58 FNo. Len. Field Value +14:06:58 ============================================================================ +14:06:58 [ 1] [ 4] [0810] +14:06:58 [ 7] [ 10] [0320211847] +14:06:58 [ 11] [ 6] [141847] +14:06:58 [ 37] [ 12] [579141418470] +14:06:58 [ 39] [ 2] [00] +14:06:58 [ 70] [ 3] [810] +14:06:58 ============================================================================ +14:06:58 Calculate Source COMM Id = 6 +14:06:58 ============================================================================ +14:06:58 + + +waiting on router queue for slot.... +14:06:58 ============================================================================ +14:06:58 Slot Id : <210> +14:06:58 Transaction Type : REQUEST +14:06:58 Received From : +14:06:58 ============================================================================ +14:06:58 FNo. Len. Field Value +14:06:58 ============================================================================ +14:06:58 [ 1] [ 4] [0800] +14:06:58 [ 7] [ 10] [0320140645] +14:06:58 [ 11] [ 6] [015111] +14:06:58 [ 37] [ 12] [507914015111] +14:06:58 [ 70] [ 3] [ ] +14:06:58 ============================================================================ +14:06:58 + + +waiting on router queue for slot.... +14:06:58 Sending to : +14:06:58 ============================================================================ +14:06:58 ============================================================================ +14:06:58 Slot Id : <210> +14:06:58 Transaction Type : RESPONSE +14:06:58 Received From : +14:06:58 ============================================================================ +14:06:58 FNo. Len. Field Value +14:06:58 ============================================================================ +14:06:58 [ 1] [ 4] [0810] +14:06:58 [ 7] [ 10] [0320140645] +14:06:58 [ 11] [ 6] [015111] +14:06:58 [ 37] [ 12] [507914015111] +14:06:58 [ 39] [ 2] [91] +14:06:58 [ 70] [ 3] [ ] +14:06:58 ============================================================================ +14:06:58 Calculate Source COMM Id = 3 +14:06:58 ============================================================================ +14:06:58 + + +waiting on router queue for slot.... +14:07:03 ============================================================================ +14:07:03 Slot Id : <259> +14:07:03 Transaction Type : REQUEST +14:07:03 Received From : +14:07:03 ============================================================================ +14:07:03 FNo. Len. Field Value +14:07:03 ============================================================================ +14:07:03 [ 1] [ 4] [0200] +14:07:03 [ 2] [ 16] [6688990040157297] +14:07:03 [ 3] [ 6] [011000] +14:07:03 [ 4] [ 12] [000080000000] +14:07:03 [ 7] [ 10] [0320140659] +14:07:03 [ 11] [ 6] [765776] +14:07:03 [ 12] [ 6] [140659] +14:07:03 [ 13] [ 4] [0320] +14:07:03 [ 15] [ 4] [0320] +14:07:03 [ 18] [ 4] [6011] +14:07:03 [ 22] [ 3] [900] +14:07:03 [ 25] [ 2] [02] +14:07:03 [ 28] [ 9] [D00002000] +14:07:03 [ 32] [ 6] [621354] +14:07:03 [ 35] [ 37] [6688990040157297=98051261324084500000] +14:07:03 [ 37] [ 12] [507902539878] +14:07:03 [ 41] [ 8] [05003600] +14:07:03 [ 42] [ 15] [NATIVE ] +14:07:03 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:07:03 [ 49] [ 3] [418] +14:07:03 [ 52] [ 16] [39B1676DD65C8E17] +14:07:03 ============================================================================ +14:07:03 + + +waiting on router queue for slot.... +14:07:03 Sending to : +14:07:03 ============================================================================ +14:07:03 Sending to : +14:07:03 ============================================================================ +14:07:04 ============================================================================ +14:07:04 Slot Id : <259> +14:07:04 Transaction Type : REQUEST +14:07:04 Received From : +14:07:04 ============================================================================ +14:07:04 FNo. Len. Field Value +14:07:04 ============================================================================ +14:07:04 [ 1] [ 4] [0200] +14:07:04 [ 2] [ 16] [6688990040157297] +14:07:04 [ 3] [ 6] [011000] +14:07:04 [ 4] [ 12] [000080000000] +14:07:04 [ 7] [ 10] [0320140659] +14:07:04 [ 11] [ 6] [765776] +14:07:04 [ 12] [ 6] [140659] +14:07:04 [ 13] [ 4] [0320] +14:07:04 [ 15] [ 4] [0320] +14:07:04 [ 18] [ 4] [6011] +14:07:04 [ 22] [ 3] [900] +14:07:04 [ 25] [ 2] [02] +14:07:04 [ 28] [ 9] [D00002000] +14:07:04 [ 32] [ 6] [621354] +14:07:04 [ 35] [ 37] [6688990040157297=98051261324084500000] +14:07:04 [ 37] [ 12] [507902539878] +14:07:04 [ 41] [ 8] [05003600] +14:07:04 [ 42] [ 15] [NATIVE ] +14:07:04 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:07:04 [ 49] [ 3] [418] +14:07:04 [ 52] [ 16] [39B1676DD65C8E17] +14:07:04 ============================================================================ +14:07:04 + + +waiting on router queue for slot.... +14:07:04 Sending to : +14:07:04 ============================================================================ +14:07:04 ============================================================================ +14:07:04 Slot Id : <259> +14:07:04 Transaction Type : REQUEST +14:07:04 Received From : +14:07:04 ============================================================================ +14:07:04 FNo. Len. Field Value +14:07:04 ============================================================================ +14:07:04 [ 1] [ 4] [0200] +14:07:04 [ 2] [ 16] [6688990040157297] +14:07:04 [ 3] [ 6] [011000] +14:07:04 [ 4] [ 12] [000080000000] +14:07:04 [ 7] [ 10] [0320140659] +14:07:04 [ 11] [ 6] [765776] +14:07:04 [ 12] [ 6] [140659] +14:07:04 [ 13] [ 4] [0320] +14:07:04 [ 15] [ 4] [0320] +14:07:04 [ 18] [ 4] [6011] +14:07:04 [ 22] [ 3] [900] +14:07:04 [ 25] [ 2] [02] +14:07:04 [ 28] [ 9] [D00002000] +14:07:04 [ 32] [ 6] [621354] +14:07:04 [ 35] [ 37] [6688990040157297=98051261324084500000] +14:07:04 [ 37] [ 12] [507902539878] +14:07:04 [ 41] [ 8] [05003600] +14:07:04 [ 42] [ 15] [NATIVE ] +14:07:04 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:07:04 [ 49] [ 3] [418] +14:07:04 [ 52] [ 16] [223A6D01D118C00F] +14:07:04 ============================================================================ +14:07:04 + + +waiting on router queue for slot.... +14:07:04 Sending to : <4> +14:07:04 ============================================================================ +14:07:05 ============================================================================ +14:07:05 Slot Id : <259> +14:07:05 Transaction Type : RESPONSE +14:07:05 Received From : +14:07:05 ============================================================================ +14:07:05 FNo. Len. Field Value +14:07:05 ============================================================================ +14:07:05 [ 1] [ 4] [0210] +14:07:05 [ 2] [ 16] [6688990040157297] +14:07:05 [ 3] [ 6] [011000] +14:07:05 [ 4] [ 12] [000080000000] +14:07:05 [ 11] [ 6] [765776] +14:07:05 [ 12] [ 6] [140659] +14:07:05 [ 15] [ 4] [0320] +14:07:05 [ 18] [ 4] [6011] +14:07:05 [ 32] [ 6] [621354] +14:07:05 [ 35] [ 37] [6688990040157297=98051261324084500000] +14:07:05 [ 37] [ 12] [507902539878] +14:07:05 [ 38] [ 6] [548674] +14:07:05 [ 39] [ 2] [00] +14:07:05 [ 41] [ 8] [05003600] +14:07:05 [ 49] [ 3] [418] +14:07:05 [ 54] [ 20] [1002418C000011248973] +14:07:05 ============================================================================ +14:07:05 Sending to : +14:07:05 ============================================================================ +14:07:05 + + +waiting on router queue for slot.... +14:07:05 ============================================================================ +14:07:05 Slot Id : <263> +14:07:05 Transaction Type : REQUEST +14:07:05 Received From : +14:07:05 ============================================================================ +14:07:05 FNo. Len. Field Value +14:07:05 ============================================================================ +14:07:05 [ 1] [ 4] [0800] +14:07:05 [ 7] [ 10] [0320070612] +14:07:05 [ 11] [ 6] [156710] +14:07:05 [ 70] [ 3] [301] +14:07:05 ============================================================================ +14:07:05 + + +waiting on router queue for slot.... +14:07:05 Sending to : +14:07:05 ============================================================================ +14:07:05 ============================================================================ +14:07:05 Slot Id : <263> +14:07:05 Transaction Type : RESPONSE +14:07:05 Received From : +14:07:05 ============================================================================ +14:07:05 FNo. Len. Field Value +14:07:05 ============================================================================ +14:07:05 [ 1] [ 4] [0810] +14:07:05 [ 7] [ 10] [0320070612] +14:07:05 [ 11] [ 6] [156710] +14:07:05 [ 39] [ 2] [00] +14:07:05 [ 70] [ 3] [301] +14:07:05 ============================================================================ +14:07:05 Calculate Source COMM Id = 2 +14:07:05 ============================================================================ +14:07:05 + + +waiting on router queue for slot.... +14:07:06 ============================================================================ +14:07:06 Slot Id : <259> +14:07:06 Transaction Type : RESPONSE +14:07:06 Received From : +14:07:06 ============================================================================ +14:07:06 FNo. Len. Field Value +14:07:06 ============================================================================ +14:07:06 [ 1] [ 4] [0210] +14:07:06 [ 2] [ 16] [6688990040157297] +14:07:06 [ 3] [ 6] [011000] +14:07:06 [ 4] [ 12] [000080000000] +14:07:06 [ 11] [ 6] [765776] +14:07:06 [ 12] [ 6] [140659] +14:07:06 [ 15] [ 4] [0320] +14:07:06 [ 18] [ 4] [6011] +14:07:06 [ 32] [ 6] [621354] +14:07:06 [ 35] [ 37] [6688990040157297=98051261324084500000] +14:07:06 [ 37] [ 12] [507902539878] +14:07:06 [ 38] [ 6] [548674] +14:07:06 [ 39] [ 2] [00] +14:07:06 [ 41] [ 8] [05003600] +14:07:06 [ 49] [ 3] [418] +14:07:06 [ 54] [ 20] [1002418C000011248973] +14:07:06 ============================================================================ +14:07:06 Calculate Source COMM Id = 0 +14:07:06 ============================================================================ +14:07:06 + + +waiting on router queue for slot.... +14:07:08 ============================================================================ +14:07:08 Slot Id : <261> +14:07:08 Transaction Type : REQUEST +14:07:08 Received From : +14:07:08 ============================================================================ +14:07:08 FNo. Len. Field Value +14:07:08 ============================================================================ +14:07:08 [ 1] [ 4] [0200] +14:07:08 [ 2] [ 16] [6688990103262703] +14:07:08 [ 3] [ 6] [011000] +14:07:08 [ 4] [ 12] [000100000000] +14:07:08 [ 7] [ 10] [0320140703] +14:07:08 [ 11] [ 6] [765789] +14:07:08 [ 12] [ 6] [140703] +14:07:08 [ 13] [ 4] [0320] +14:07:08 [ 15] [ 4] [0320] +14:07:08 [ 18] [ 4] [6011] +14:07:08 [ 22] [ 3] [900] +14:07:08 [ 25] [ 2] [02] +14:07:08 [ 28] [ 9] [D00002000] +14:07:08 [ 32] [ 6] [621354] +14:07:08 [ 35] [ 37] [6688990103262703=42121231270341300000] +14:07:08 [ 37] [ 12] [507903499478] +14:07:08 [ 41] [ 8] [06002200] +14:07:08 [ 42] [ 15] [NATIVE ] +14:07:08 [ 43] [ 40] [Beng Market Beng LAO] +14:07:08 [ 49] [ 3] [418] +14:07:08 [ 52] [ 16] [B9A454DE3BF566EF] +14:07:08 ============================================================================ +14:07:08 + + +waiting on router queue for slot.... +14:07:08 Sending to : +14:07:08 ============================================================================ +14:07:08 Sending to : +14:07:08 ============================================================================ +14:07:08 ============================================================================ +14:07:08 Slot Id : <261> +14:07:08 Transaction Type : REQUEST +14:07:08 Received From : +14:07:08 ============================================================================ +14:07:08 FNo. Len. Field Value +14:07:08 ============================================================================ +14:07:08 [ 1] [ 4] [0200] +14:07:08 [ 2] [ 16] [6688990103262703] +14:07:08 [ 3] [ 6] [011000] +14:07:08 [ 4] [ 12] [000100000000] +14:07:08 [ 7] [ 10] [0320140703] +14:07:08 [ 11] [ 6] [765789] +14:07:08 [ 12] [ 6] [140703] +14:07:08 [ 13] [ 4] [0320] +14:07:08 [ 15] [ 4] [0320] +14:07:08 [ 18] [ 4] [6011] +14:07:08 [ 22] [ 3] [900] +14:07:08 [ 25] [ 2] [02] +14:07:08 [ 28] [ 9] [D00002000] +14:07:08 [ 32] [ 6] [621354] +14:07:08 [ 35] [ 37] [6688990103262703=42121231270341300000] +14:07:08 [ 37] [ 12] [507903499478] +14:07:08 [ 41] [ 8] [06002200] +14:07:08 [ 42] [ 15] [NATIVE ] +14:07:08 [ 43] [ 40] [Beng Market Beng LAO] +14:07:08 [ 49] [ 3] [418] +14:07:08 [ 52] [ 16] [B9A454DE3BF566EF] +14:07:08 ============================================================================ +14:07:08 + + +waiting on router queue for slot.... +14:07:08 Sending to : +14:07:08 ============================================================================ +14:07:08 ============================================================================ +14:07:08 Slot Id : <261> +14:07:08 Transaction Type : REQUEST +14:07:08 Received From : +14:07:08 ============================================================================ +14:07:08 FNo. Len. Field Value +14:07:08 ============================================================================ +14:07:08 [ 1] [ 4] [0200] +14:07:08 [ 2] [ 16] [6688990103262703] +14:07:08 [ 3] [ 6] [011000] +14:07:08 [ 4] [ 12] [000100000000] +14:07:08 [ 7] [ 10] [0320140703] +14:07:08 [ 11] [ 6] [765789] +14:07:08 [ 12] [ 6] [140703] +14:07:08 [ 13] [ 4] [0320] +14:07:08 [ 15] [ 4] [0320] +14:07:08 [ 18] [ 4] [6011] +14:07:08 [ 22] [ 3] [900] +14:07:08 [ 25] [ 2] [02] +14:07:08 [ 28] [ 9] [D00002000] +14:07:08 [ 32] [ 6] [621354] +14:07:08 [ 35] [ 37] [6688990103262703=42121231270341300000] +14:07:08 [ 37] [ 12] [507903499478] +14:07:08 [ 41] [ 8] [06002200] +14:07:08 [ 42] [ 15] [NATIVE ] +14:07:08 [ 43] [ 40] [Beng Market Beng LAO] +14:07:08 [ 49] [ 3] [418] +14:07:08 [ 52] [ 16] [F5F3BF0099688906] +14:07:08 ============================================================================ +14:07:08 + + +waiting on router queue for slot.... +14:07:08 Sending to : <4> +14:07:08 ============================================================================ +14:07:09 ============================================================================ +14:07:09 Slot Id : <261> +14:07:09 Transaction Type : RESPONSE +14:07:09 Received From : +14:07:09 ============================================================================ +14:07:09 FNo. Len. Field Value +14:07:09 ============================================================================ +14:07:09 [ 1] [ 4] [0210] +14:07:09 [ 2] [ 16] [6688990103262703] +14:07:09 [ 3] [ 6] [011000] +14:07:09 [ 4] [ 12] [000100000000] +14:07:09 [ 11] [ 6] [765789] +14:07:09 [ 12] [ 6] [140703] +14:07:09 [ 15] [ 4] [0320] +14:07:09 [ 18] [ 4] [6011] +14:07:09 [ 32] [ 6] [621354] +14:07:09 [ 35] [ 37] [6688990103262703=42121231270341300000] +14:07:09 [ 37] [ 12] [507903499478] +14:07:09 [ 38] [ 6] [774264] +14:07:09 [ 39] [ 2] [00] +14:07:09 [ 41] [ 8] [06002200] +14:07:09 [ 49] [ 3] [418] +14:07:09 [ 54] [ 20] [1002418C000182175245] +14:07:09 ============================================================================ +14:07:09 Sending to : +14:07:09 ============================================================================ +14:07:09 + + +waiting on router queue for slot.... +14:07:10 ============================================================================ +14:07:10 Slot Id : <261> +14:07:11 Transaction Type : RESPONSE +14:07:11 Received From : +14:07:11 ============================================================================ +14:07:11 FNo. Len. Field Value +14:07:11 ============================================================================ +14:07:11 [ 1] [ 4] [0210] +14:07:11 [ 2] [ 16] [6688990103262703] +14:07:11 [ 3] [ 6] [011000] +14:07:11 [ 4] [ 12] [000100000000] +14:07:11 [ 11] [ 6] [765789] +14:07:11 [ 12] [ 6] [140703] +14:07:11 [ 15] [ 4] [0320] +14:07:11 [ 18] [ 4] [6011] +14:07:11 [ 32] [ 6] [621354] +14:07:11 [ 35] [ 37] [6688990103262703=42121231270341300000] +14:07:11 [ 37] [ 12] [507903499478] +14:07:11 [ 38] [ 6] [774264] +14:07:11 [ 39] [ 2] [00] +14:07:11 [ 41] [ 8] [06002200] +14:07:11 [ 49] [ 3] [418] +14:07:11 [ 54] [ 20] [1002418C000182175245] +14:07:11 ============================================================================ +14:07:11 Calculate Source COMM Id = 0 +14:07:11 ============================================================================ +14:07:11 + + +waiting on router queue for slot.... +14:07:12 ============================================================================ +14:07:12 Slot Id : <225> +14:07:12 Transaction Type : REQUEST +14:07:12 Received From : +14:07:12 ============================================================================ +14:07:12 FNo. Len. Field Value +14:07:12 ============================================================================ +14:07:12 [ 1] [ 4] [0200] +14:07:12 [ 2] [ 16] [6213545000785877] +14:07:12 [ 3] [ 6] [010000] +14:07:12 [ 4] [ 12] [000100000000] +14:07:12 [ 7] [ 10] [0320070617] +14:07:12 [ 11] [ 6] [269536] +14:07:12 [ 12] [ 6] [140617] +14:07:12 [ 13] [ 4] [0320] +14:07:12 [ 14] [ 4] [4912] +14:07:12 [ 15] [ 4] [0320] +14:07:12 [ 18] [ 4] [6011] +14:07:12 [ 19] [ 3] [418] +14:07:12 [ 22] [ 3] [021] +14:07:12 [ 25] [ 2] [01] +14:07:12 [ 28] [ 9] [D00002000] +14:07:12 [ 32] [ 6] [180893] +14:07:12 [ 35] [ 32] [6213545000785877=491212018587984] +14:07:12 [ 37] [ 12] [507907269536] +14:07:12 [ 41] [ 8] [0525XYBT] +14:07:12 [ 42] [ 15] [999999 ] +14:07:12 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:07:12 [ 49] [ 3] [418] +14:07:12 [ 52] [ 16] [CB834DDDCDD5C831] +14:07:12 ============================================================================ +14:07:12 + + +waiting on router queue for slot.... +14:07:12 Sending to : +14:07:12 ============================================================================ +14:07:12 Sending to : +14:07:12 ============================================================================ +14:07:12 ============================================================================ +14:07:12 Slot Id : <225> +14:07:12 Transaction Type : REQUEST +14:07:12 Received From : +14:07:12 ============================================================================ +14:07:12 FNo. Len. Field Value +14:07:12 ============================================================================ +14:07:12 [ 1] [ 4] [0200] +14:07:12 [ 2] [ 16] [6213545000785877] +14:07:12 [ 3] [ 6] [010000] +14:07:12 [ 4] [ 12] [000100000000] +14:07:12 [ 7] [ 10] [0320070617] +14:07:12 [ 11] [ 6] [269536] +14:07:12 [ 12] [ 6] [140617] +14:07:12 [ 13] [ 4] [0320] +14:07:12 [ 14] [ 4] [4912] +14:07:12 [ 15] [ 4] [0320] +14:07:12 [ 18] [ 4] [6011] +14:07:12 [ 19] [ 3] [418] +14:07:12 [ 22] [ 3] [021] +14:07:12 [ 25] [ 2] [01] +14:07:12 [ 28] [ 9] [D00002000] +14:07:12 [ 32] [ 6] [180893] +14:07:12 [ 35] [ 32] [6213545000785877=491212018587984] +14:07:12 [ 37] [ 12] [507907269536] +14:07:12 [ 41] [ 8] [0525XYBT] +14:07:12 [ 42] [ 15] [999999 ] +14:07:12 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:07:12 [ 49] [ 3] [418] +14:07:12 [ 52] [ 16] [CB834DDDCDD5C831] +14:07:12 ============================================================================ +14:07:12 + + +waiting on router queue for slot.... +14:07:12 Sending to : +14:07:12 ============================================================================ +14:07:12 ============================================================================ +14:07:12 Slot Id : <225> +14:07:12 Transaction Type : REQUEST +14:07:12 Received From : +14:07:12 ============================================================================ +14:07:12 FNo. Len. Field Value +14:07:12 ============================================================================ +14:07:12 [ 1] [ 4] [0200] +14:07:12 [ 2] [ 16] [6213545000785877] +14:07:12 [ 3] [ 6] [010000] +14:07:12 [ 4] [ 12] [000100000000] +14:07:12 [ 7] [ 10] [0320070617] +14:07:12 [ 11] [ 6] [269536] +14:07:12 [ 12] [ 6] [140617] +14:07:12 [ 13] [ 4] [0320] +14:07:12 [ 14] [ 4] [4912] +14:07:12 [ 15] [ 4] [0320] +14:07:12 [ 18] [ 4] [6011] +14:07:12 [ 19] [ 3] [418] +14:07:12 [ 22] [ 3] [021] +14:07:12 [ 25] [ 2] [01] +14:07:12 [ 28] [ 9] [D00002000] +14:07:12 [ 32] [ 6] [180893] +14:07:12 [ 35] [ 32] [6213545000785877=491212018587984] +14:07:12 [ 37] [ 12] [507907269536] +14:07:12 [ 41] [ 8] [0525XYBT] +14:07:12 [ 42] [ 15] [999999 ] +14:07:12 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:07:12 [ 49] [ 3] [418] +14:07:12 [ 52] [ 16] [5794A3AD85E42116] +14:07:12 ============================================================================ +14:07:12 + + +waiting on router queue for slot.... +14:07:12 Sending to : <0> +14:07:12 ============================================================================ +14:07:14 ============================================================================ +14:07:14 Slot Id : <225> +14:07:14 Transaction Type : RESPONSE +14:07:14 Received From : +14:07:14 ============================================================================ +14:07:14 FNo. Len. Field Value +14:07:14 ============================================================================ +14:07:14 [ 1] [ 4] [0210] +14:07:14 [ 2] [ 16] [6213545000785877] +14:07:14 [ 3] [ 6] [010000] +14:07:14 [ 4] [ 12] [000100000000] +14:07:14 [ 7] [ 10] [0320070617] +14:07:14 [ 11] [ 6] [269536] +14:07:14 [ 12] [ 6] [140617] +14:07:14 [ 13] [ 4] [0320] +14:07:14 [ 15] [ 4] [0320] +14:07:14 [ 18] [ 4] [6011] +14:07:14 [ 19] [ 3] [418] +14:07:14 [ 32] [ 6] [180893] +14:07:14 [ 35] [ 32] [6213545000785877=491212018587984] +14:07:14 [ 37] [ 12] [507907269536] +14:07:14 [ 38] [ 6] [034433] +14:07:14 [ 39] [ 2] [00] +14:07:14 [ 41] [ 8] [0525XYBT] +14:07:14 [ 49] [ 3] [418] +14:07:14 [ 54] [ 40] [0001418C0001173949210002418C000117394921] +14:07:14 ============================================================================ +14:07:14 Sending to : +14:07:14 ============================================================================ +14:07:14 + + +waiting on router queue for slot.... +14:07:15 ============================================================================ +14:07:15 Slot Id : <225> +14:07:15 Transaction Type : RESPONSE +14:07:15 Received From : +14:07:15 ============================================================================ +14:07:15 FNo. Len. Field Value +14:07:15 ============================================================================ +14:07:15 [ 1] [ 4] [0210] +14:07:15 [ 2] [ 16] [6213545000785877] +14:07:15 [ 3] [ 6] [010000] +14:07:15 [ 4] [ 12] [000100000000] +14:07:15 [ 7] [ 10] [0320070617] +14:07:15 [ 11] [ 6] [269536] +14:07:15 [ 12] [ 6] [140617] +14:07:15 [ 13] [ 4] [0320] +14:07:15 [ 15] [ 4] [0320] +14:07:15 [ 18] [ 4] [6011] +14:07:15 [ 19] [ 3] [418] +14:07:15 [ 32] [ 6] [180893] +14:07:15 [ 35] [ 32] [6213545000785877=491212018587984] +14:07:15 [ 37] [ 12] [507907269536] +14:07:15 [ 38] [ 6] [034433] +14:07:15 [ 39] [ 2] [00] +14:07:15 [ 41] [ 8] [0525XYBT] +14:07:15 [ 49] [ 3] [418] +14:07:15 [ 54] [ 40] [0001418C0001173949210002418C000117394921] +14:07:15 ============================================================================ +14:07:15 Calculate Source COMM Id = 2 +14:07:15 ============================================================================ +14:07:15 + + +waiting on router queue for slot.... +14:07:16 ============================================================================ +14:07:16 Slot Id : <270> +14:07:16 Transaction Type : REQUEST +14:07:16 Received From : +14:07:16 ============================================================================ +14:07:16 FNo. Len. Field Value +14:07:16 ============================================================================ +14:07:16 [ 1] [ 4] [0800] +14:07:16 [ 7] [ 10] [0320070623] +14:07:16 [ 11] [ 6] [156711] +14:07:16 [ 70] [ 3] [301] +14:07:16 ============================================================================ +14:07:16 + + +waiting on router queue for slot.... +14:07:16 Sending to : +14:07:16 ============================================================================ +14:07:16 ============================================================================ +14:07:16 Slot Id : <270> +14:07:16 Transaction Type : RESPONSE +14:07:16 Received From : +14:07:16 ============================================================================ +14:07:16 FNo. Len. Field Value +14:07:16 ============================================================================ +14:07:16 [ 1] [ 4] [0810] +14:07:16 [ 7] [ 10] [0320070623] +14:07:16 [ 11] [ 6] [156711] +14:07:16 [ 39] [ 2] [00] +14:07:16 [ 70] [ 3] [301] +14:07:16 ============================================================================ +14:07:16 Calculate Source COMM Id = 2 +14:07:16 ============================================================================ +14:07:16 + + +waiting on router queue for slot.... +14:07:23 ============================================================================ +14:07:23 Slot Id : <199> +14:07:23 Transaction Type : REQUEST +14:07:23 Received From : +14:07:23 ============================================================================ +14:07:23 FNo. Len. Field Value +14:07:23 ============================================================================ +14:07:23 [ 1] [ 4] [0200] +14:07:23 [ 2] [ 16] [6213541000329303] +14:07:23 [ 3] [ 6] [010000] +14:07:23 [ 4] [ 12] [000050000000] +14:07:23 [ 7] [ 10] [0320140513] +14:07:23 [ 11] [ 6] [948016] +14:07:23 [ 12] [ 6] [140513] +14:07:23 [ 13] [ 4] [0320] +14:07:23 [ 15] [ 4] [0320] +14:07:23 [ 18] [ 4] [6011] +14:07:23 [ 19] [ 3] [418] +14:07:23 [ 22] [ 3] [021] +14:07:23 [ 25] [ 2] [01] +14:07:23 [ 28] [ 9] [D00002000] +14:07:23 [ 32] [ 6] [668899] +14:07:23 [ 35] [ 32] [6213541000329303=491212012930484] +14:07:23 [ 37] [ 12] [507902151019] +14:07:23 [ 41] [ 8] [03020025] +14:07:23 [ 42] [ 15] [APT ] +14:07:23 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +14:07:23 [ 49] [ 3] [418] +14:07:23 [ 52] [ 16] [88EE91C87A66ACC0] +14:07:23 ============================================================================ +14:07:23 + + +waiting on router queue for slot.... +14:07:23 Sending to : +14:07:23 ============================================================================ +14:07:23 Sending to : +14:07:23 ============================================================================ +14:07:23 ============================================================================ +14:07:23 Slot Id : <199> +14:07:23 Transaction Type : REQUEST +14:07:23 Received From : +14:07:23 ============================================================================ +14:07:23 FNo. Len. Field Value +14:07:23 ============================================================================ +14:07:23 [ 1] [ 4] [0200] +14:07:23 [ 2] [ 16] [6213541000329303] +14:07:23 [ 3] [ 6] [010000] +14:07:23 [ 4] [ 12] [000050000000] +14:07:23 [ 7] [ 10] [0320140513] +14:07:23 [ 11] [ 6] [948016] +14:07:23 [ 12] [ 6] [140513] +14:07:23 [ 13] [ 4] [0320] +14:07:23 [ 15] [ 4] [0320] +14:07:23 [ 18] [ 4] [6011] +14:07:23 [ 19] [ 3] [418] +14:07:23 [ 22] [ 3] [021] +14:07:23 [ 25] [ 2] [01] +14:07:23 [ 28] [ 9] [D00002000] +14:07:23 [ 32] [ 6] [668899] +14:07:23 [ 35] [ 32] [6213541000329303=491212012930484] +14:07:23 [ 37] [ 12] [507902151019] +14:07:23 [ 41] [ 8] [03020025] +14:07:23 [ 42] [ 15] [APT ] +14:07:23 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +14:07:23 [ 49] [ 3] [418] +14:07:23 [ 52] [ 16] [88EE91C87A66ACC0] +14:07:23 ============================================================================ +14:07:23 + + +waiting on router queue for slot.... +14:07:23 Sending to : +14:07:23 ============================================================================ +14:07:23 ============================================================================ +14:07:23 Slot Id : <199> +14:07:23 Transaction Type : REQUEST +14:07:23 Received From : +14:07:23 ============================================================================ +14:07:23 FNo. Len. Field Value +14:07:23 ============================================================================ +14:07:23 [ 1] [ 4] [0200] +14:07:23 [ 2] [ 16] [6213541000329303] +14:07:23 [ 3] [ 6] [010000] +14:07:23 [ 4] [ 12] [000050000000] +14:07:23 [ 7] [ 10] [0320140513] +14:07:23 [ 11] [ 6] [948016] +14:07:23 [ 12] [ 6] [140513] +14:07:23 [ 13] [ 4] [0320] +14:07:23 [ 15] [ 4] [0320] +14:07:23 [ 18] [ 4] [6011] +14:07:23 [ 19] [ 3] [418] +14:07:23 [ 22] [ 3] [021] +14:07:23 [ 25] [ 2] [01] +14:07:23 [ 28] [ 9] [D00002000] +14:07:23 [ 32] [ 6] [668899] +14:07:23 [ 35] [ 32] [6213541000329303=491212012930484] +14:07:23 [ 37] [ 12] [507902151019] +14:07:23 [ 41] [ 8] [03020025] +14:07:23 [ 42] [ 15] [APT ] +14:07:23 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +14:07:23 [ 49] [ 3] [418] +14:07:23 [ 52] [ 16] [13F56DD0EA619077] +14:07:23 ============================================================================ +14:07:23 + + +waiting on router queue for slot.... +14:07:23 Sending to : <0> +14:07:23 ============================================================================ +14:07:24 ============================================================================ +14:07:24 Slot Id : <199> +14:07:24 Transaction Type : RESPONSE +14:07:24 Received From : +14:07:24 ============================================================================ +14:07:24 FNo. Len. Field Value +14:07:24 ============================================================================ +14:07:24 [ 1] [ 4] [0210] +14:07:24 [ 2] [ 16] [6213541000329303] +14:07:24 [ 3] [ 6] [010000] +14:07:24 [ 4] [ 12] [000050000000] +14:07:24 [ 7] [ 10] [0320140513] +14:07:24 [ 11] [ 6] [948016] +14:07:24 [ 12] [ 6] [140513] +14:07:24 [ 13] [ 4] [0320] +14:07:24 [ 15] [ 4] [0320] +14:07:24 [ 18] [ 4] [6011] +14:07:24 [ 19] [ 3] [418] +14:07:24 [ 32] [ 6] [668899] +14:07:24 [ 35] [ 32] [6213541000329303=491212012930484] +14:07:24 [ 37] [ 12] [507902151019] +14:07:24 [ 38] [ 6] [227426] +14:07:24 [ 39] [ 2] [00] +14:07:24 [ 41] [ 8] [03020025] +14:07:24 [ 49] [ 3] [418] +14:07:24 [ 54] [ 40] [0001418C0002398694690002418C000239869469] +14:07:24 ============================================================================ +14:07:24 Sending to : +14:07:24 ============================================================================ +14:07:24 + + +waiting on router queue for slot.... +14:07:25 ============================================================================ +14:07:25 Slot Id : <199> +14:07:25 Transaction Type : RESPONSE +14:07:25 Received From : +14:07:25 ============================================================================ +14:07:25 FNo. Len. Field Value +14:07:25 ============================================================================ +14:07:25 [ 1] [ 4] [0210] +14:07:25 [ 2] [ 16] [6213541000329303] +14:07:25 [ 3] [ 6] [010000] +14:07:25 [ 4] [ 12] [000050000000] +14:07:25 [ 7] [ 10] [0320140513] +14:07:25 [ 11] [ 6] [948016] +14:07:25 [ 12] [ 6] [140513] +14:07:25 [ 13] [ 4] [0320] +14:07:25 [ 15] [ 4] [0320] +14:07:25 [ 18] [ 4] [6011] +14:07:25 [ 19] [ 3] [418] +14:07:25 [ 32] [ 6] [668899] +14:07:25 [ 35] [ 32] [6213541000329303=491212012930484] +14:07:25 [ 37] [ 12] [507902151019] +14:07:25 [ 38] [ 6] [227426] +14:07:25 [ 39] [ 2] [00] +14:07:25 [ 41] [ 8] [03020025] +14:07:25 [ 49] [ 3] [418] +14:07:25 [ 54] [ 40] [0001418C0002398694690002418C000239869469] +14:07:25 ============================================================================ +14:07:25 Calculate Source COMM Id = 4 +14:07:25 ============================================================================ +14:07:25 + + +waiting on router queue for slot.... +14:07:32 ============================================================================ +14:07:32 Slot Id : <269> +14:07:32 Transaction Type : REQUEST +14:07:32 Received From : +14:07:32 ============================================================================ +14:07:32 FNo. Len. Field Value +14:07:32 ============================================================================ +14:07:32 [ 1] [ 4] [0800] +14:07:32 [ 7] [ 10] [0320070639] +14:07:32 [ 11] [ 6] [156712] +14:07:32 [ 70] [ 3] [301] +14:07:32 ============================================================================ +14:07:32 + + +waiting on router queue for slot.... +14:07:32 Sending to : +14:07:32 ============================================================================ +14:07:32 ============================================================================ +14:07:32 Slot Id : <269> +14:07:32 Transaction Type : RESPONSE +14:07:32 Received From : +14:07:32 ============================================================================ +14:07:32 FNo. Len. Field Value +14:07:32 ============================================================================ +14:07:32 [ 1] [ 4] [0810] +14:07:32 [ 7] [ 10] [0320070639] +14:07:32 [ 11] [ 6] [156712] +14:07:32 [ 39] [ 2] [00] +14:07:32 [ 70] [ 3] [301] +14:07:32 ============================================================================ +14:07:32 Calculate Source COMM Id = 2 +14:07:32 ============================================================================ +14:07:32 + + +waiting on router queue for slot.... +14:07:33 ============================================================================ +14:07:33 Slot Id : <240> +14:07:33 Transaction Type : REQUEST +14:07:33 Received From : +14:07:33 ============================================================================ +14:07:33 FNo. Len. Field Value +14:07:33 ============================================================================ +14:07:33 [ 1] [ 4] [0200] +14:07:33 [ 2] [ 16] [6688990104116403] +14:07:33 [ 3] [ 6] [300000] +14:07:33 [ 4] [ 12] [000000000000] +14:07:33 [ 7] [ 10] [0320140728] +14:07:33 [ 11] [ 6] [765881] +14:07:33 [ 12] [ 6] [140728] +14:07:33 [ 13] [ 4] [0320] +14:07:33 [ 15] [ 4] [0320] +14:07:33 [ 18] [ 4] [6011] +14:07:33 [ 22] [ 3] [900] +14:07:33 [ 25] [ 2] [02] +14:07:33 [ 28] [ 9] [D00000000] +14:07:33 [ 32] [ 6] [621354] +14:07:33 [ 35] [ 37] [6688990104116403=43021231640361600000] +14:07:33 [ 37] [ 12] [507904789435] +14:07:33 [ 41] [ 8] [07001400] +14:07:33 [ 42] [ 15] [NATIVE ] +14:07:33 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +14:07:33 [ 49] [ 3] [418] +14:07:33 [ 52] [ 16] [CBC59E748B82D4B7] +14:07:33 ============================================================================ +14:07:33 + + +waiting on router queue for slot.... +14:07:33 Sending to : +14:07:33 ============================================================================ +14:07:33 Sending to : +14:07:33 ============================================================================ +14:07:33 ============================================================================ +14:07:33 Slot Id : <240> +14:07:33 Transaction Type : REQUEST +14:07:33 Received From : +14:07:33 ============================================================================ +14:07:33 FNo. Len. Field Value +14:07:33 ============================================================================ +14:07:33 [ 1] [ 4] [0200] +14:07:33 [ 2] [ 16] [6688990104116403] +14:07:33 [ 3] [ 6] [300000] +14:07:33 [ 4] [ 12] [000000000000] +14:07:33 [ 7] [ 10] [0320140728] +14:07:33 [ 11] [ 6] [765881] +14:07:33 [ 12] [ 6] [140728] +14:07:33 [ 13] [ 4] [0320] +14:07:33 [ 15] [ 4] [0320] +14:07:33 [ 18] [ 4] [6011] +14:07:33 [ 22] [ 3] [900] +14:07:33 [ 25] [ 2] [02] +14:07:33 [ 28] [ 9] [D00000000] +14:07:33 [ 32] [ 6] [621354] +14:07:33 [ 35] [ 37] [6688990104116403=43021231640361600000] +14:07:33 [ 37] [ 12] [507904789435] +14:07:33 [ 41] [ 8] [07001400] +14:07:33 [ 42] [ 15] [NATIVE ] +14:07:33 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +14:07:33 [ 49] [ 3] [418] +14:07:33 [ 52] [ 16] [CBC59E748B82D4B7] +14:07:33 ============================================================================ +14:07:33 + + +waiting on router queue for slot.... +14:07:33 Sending to : +14:07:33 ============================================================================ +14:07:33 ============================================================================ +14:07:33 Slot Id : <240> +14:07:33 Transaction Type : REQUEST +14:07:33 Received From : +14:07:33 ============================================================================ +14:07:33 FNo. Len. Field Value +14:07:33 ============================================================================ +14:07:33 [ 1] [ 4] [0200] +14:07:33 [ 2] [ 16] [6688990104116403] +14:07:33 [ 3] [ 6] [300000] +14:07:33 [ 4] [ 12] [000000000000] +14:07:33 [ 7] [ 10] [0320140728] +14:07:33 [ 11] [ 6] [765881] +14:07:33 [ 12] [ 6] [140728] +14:07:33 [ 13] [ 4] [0320] +14:07:33 [ 15] [ 4] [0320] +14:07:33 [ 18] [ 4] [6011] +14:07:33 [ 22] [ 3] [900] +14:07:33 [ 25] [ 2] [02] +14:07:33 [ 28] [ 9] [D00000000] +14:07:33 [ 32] [ 6] [621354] +14:07:33 [ 35] [ 37] [6688990104116403=43021231640361600000] +14:07:33 [ 37] [ 12] [507904789435] +14:07:33 [ 41] [ 8] [07001400] +14:07:33 [ 42] [ 15] [NATIVE ] +14:07:33 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +14:07:33 [ 49] [ 3] [418] +14:07:33 [ 52] [ 16] [9B52A72DC7992A9E] +14:07:33 ============================================================================ +14:07:33 + + +waiting on router queue for slot.... +14:07:33 Sending to : <4> +14:07:33 ============================================================================ +14:07:34 ============================================================================ +14:07:34 Slot Id : <240> +14:07:34 Transaction Type : RESPONSE +14:07:34 Received From : +14:07:34 ============================================================================ +14:07:34 FNo. Len. Field Value +14:07:34 ============================================================================ +14:07:34 [ 1] [ 4] [0210] +14:07:34 [ 2] [ 16] [6688990104116403] +14:07:34 [ 3] [ 6] [300000] +14:07:34 [ 4] [ 12] [000000000000] +14:07:34 [ 11] [ 6] [765881] +14:07:34 [ 12] [ 6] [140728] +14:07:34 [ 15] [ 4] [0320] +14:07:34 [ 18] [ 4] [6011] +14:07:34 [ 32] [ 6] [621354] +14:07:34 [ 35] [ 37] [6688990104116403=43021231640361600000] +14:07:34 [ 37] [ 12] [507904789435] +14:07:34 [ 38] [ 6] [927562] +14:07:34 [ 39] [ 2] [00] +14:07:34 [ 41] [ 8] [07001400] +14:07:34 [ 49] [ 3] [418] +14:07:34 [ 54] [ 20] [0002418C000120122741] +14:07:34 ============================================================================ +14:07:34 Sending to : +14:07:34 ============================================================================ +14:07:34 + + +waiting on router queue for slot.... +14:07:36 ============================================================================ +14:07:36 Slot Id : <240> +14:07:36 Transaction Type : RESPONSE +14:07:36 Received From : +14:07:36 ============================================================================ +14:07:36 FNo. Len. Field Value +14:07:36 ============================================================================ +14:07:36 [ 1] [ 4] [0210] +14:07:36 [ 2] [ 16] [6688990104116403] +14:07:36 [ 3] [ 6] [300000] +14:07:36 [ 4] [ 12] [000000000000] +14:07:36 [ 11] [ 6] [765881] +14:07:36 [ 12] [ 6] [140728] +14:07:36 [ 15] [ 4] [0320] +14:07:36 [ 18] [ 4] [6011] +14:07:36 [ 32] [ 6] [621354] +14:07:36 [ 35] [ 37] [6688990104116403=43021231640361600000] +14:07:36 [ 37] [ 12] [507904789435] +14:07:36 [ 38] [ 6] [927562] +14:07:36 [ 39] [ 2] [00] +14:07:36 [ 41] [ 8] [07001400] +14:07:36 [ 49] [ 3] [418] +14:07:36 [ 54] [ 20] [0002418C000120122741] +14:07:36 ============================================================================ +14:07:36 Calculate Source COMM Id = 0 +14:07:36 ============================================================================ +14:07:36 + + +waiting on router queue for slot.... +14:07:36 ============================================================================ +14:07:36 Slot Id : <275> +14:07:36 Transaction Type : REQUEST +14:07:36 Received From : +14:07:36 ============================================================================ +14:07:36 FNo. Len. Field Value +14:07:36 ============================================================================ +14:07:36 [ 1] [ 4] [0200] +14:07:36 [ 2] [ 16] [6213543000073972] +14:07:36 [ 3] [ 6] [010000] +14:07:36 [ 4] [ 12] [000200000000] +14:07:36 [ 7] [ 10] [0320070643] +14:07:36 [ 11] [ 6] [269540] +14:07:36 [ 12] [ 6] [140643] +14:07:36 [ 13] [ 4] [0320] +14:07:36 [ 14] [ 4] [4912] +14:07:36 [ 15] [ 4] [0320] +14:07:36 [ 18] [ 4] [6011] +14:07:36 [ 19] [ 3] [418] +14:07:36 [ 22] [ 3] [021] +14:07:36 [ 25] [ 2] [01] +14:07:36 [ 28] [ 9] [D00002000] +14:07:36 [ 32] [ 6] [180893] +14:07:36 [ 35] [ 32] [6213543000073972=491212017397958] +14:07:36 [ 37] [ 12] [507907269540] +14:07:36 [ 41] [ 8] [0301LPBX] +14:07:36 [ 42] [ 15] [999999 ] +14:07:36 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:07:36 [ 49] [ 3] [418] +14:07:36 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:07:36 ============================================================================ +14:07:36 + + +waiting on router queue for slot.... +14:07:36 Sending to : +14:07:36 ============================================================================ +14:07:36 Sending to : +14:07:36 ============================================================================ +14:07:37 ============================================================================ +14:07:37 Slot Id : <275> +14:07:37 Transaction Type : REQUEST +14:07:37 Received From : +14:07:37 ============================================================================ +14:07:37 FNo. Len. Field Value +14:07:37 ============================================================================ +14:07:37 [ 1] [ 4] [0200] +14:07:37 [ 2] [ 16] [6213543000073972] +14:07:37 [ 3] [ 6] [010000] +14:07:37 [ 4] [ 12] [000200000000] +14:07:37 [ 7] [ 10] [0320070643] +14:07:37 [ 11] [ 6] [269540] +14:07:37 [ 12] [ 6] [140643] +14:07:37 [ 13] [ 4] [0320] +14:07:37 [ 14] [ 4] [4912] +14:07:37 [ 15] [ 4] [0320] +14:07:37 [ 18] [ 4] [6011] +14:07:37 [ 19] [ 3] [418] +14:07:37 [ 22] [ 3] [021] +14:07:37 [ 25] [ 2] [01] +14:07:37 [ 28] [ 9] [D00002000] +14:07:37 [ 32] [ 6] [180893] +14:07:37 [ 35] [ 32] [6213543000073972=491212017397958] +14:07:37 [ 37] [ 12] [507907269540] +14:07:37 [ 41] [ 8] [0301LPBX] +14:07:37 [ 42] [ 15] [999999 ] +14:07:37 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:07:37 [ 49] [ 3] [418] +14:07:37 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:07:37 ============================================================================ +14:07:37 + + +waiting on router queue for slot.... +14:07:37 Sending to : +14:07:37 ============================================================================ +14:07:37 ============================================================================ +14:07:37 Slot Id : <275> +14:07:37 Transaction Type : REQUEST +14:07:37 Received From : +14:07:37 ============================================================================ +14:07:37 FNo. Len. Field Value +14:07:37 ============================================================================ +14:07:37 [ 1] [ 4] [0200] +14:07:37 [ 2] [ 16] [6213543000073972] +14:07:37 [ 3] [ 6] [010000] +14:07:37 [ 4] [ 12] [000200000000] +14:07:37 [ 7] [ 10] [0320070643] +14:07:37 [ 11] [ 6] [269540] +14:07:37 [ 12] [ 6] [140643] +14:07:37 [ 13] [ 4] [0320] +14:07:37 [ 14] [ 4] [4912] +14:07:37 [ 15] [ 4] [0320] +14:07:37 [ 18] [ 4] [6011] +14:07:37 [ 19] [ 3] [418] +14:07:37 [ 22] [ 3] [021] +14:07:37 [ 25] [ 2] [01] +14:07:37 [ 28] [ 9] [D00002000] +14:07:37 [ 32] [ 6] [180893] +14:07:37 [ 35] [ 32] [6213543000073972=491212017397958] +14:07:37 [ 37] [ 12] [507907269540] +14:07:37 [ 41] [ 8] [0301LPBX] +14:07:37 [ 42] [ 15] [999999 ] +14:07:37 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:07:37 [ 49] [ 3] [418] +14:07:37 [ 52] [ 16] [E42743FA8A68826A] +14:07:37 ============================================================================ +14:07:37 + + +waiting on router queue for slot.... +14:07:37 Sending to : <0> +14:07:37 ============================================================================ +14:07:37 ============================================================================ +14:07:37 Slot Id : <275> +14:07:37 Transaction Type : RESPONSE +14:07:37 Received From : +14:07:37 ============================================================================ +14:07:37 FNo. Len. Field Value +14:07:37 ============================================================================ +14:07:37 [ 1] [ 4] [0210] +14:07:37 [ 2] [ 16] [6213543000073972] +14:07:37 [ 3] [ 6] [010000] +14:07:37 [ 4] [ 12] [000200000000] +14:07:37 [ 7] [ 10] [0320070643] +14:07:37 [ 11] [ 6] [269540] +14:07:37 [ 12] [ 6] [140643] +14:07:37 [ 13] [ 4] [0320] +14:07:37 [ 15] [ 4] [0320] +14:07:37 [ 18] [ 4] [6011] +14:07:37 [ 19] [ 3] [418] +14:07:37 [ 22] [ 3] [021] +14:07:37 [ 32] [ 6] [180893] +14:07:37 [ 35] [ 32] [6213543000073972=491212017397958] +14:07:37 [ 37] [ 12] [507907269540] +14:07:37 [ 39] [ 2] [61] +14:07:37 [ 41] [ 8] [0301LPBX] +14:07:37 [ 49] [ 3] [418] +14:07:37 ============================================================================ +14:07:37 Sending to : +14:07:37 ============================================================================ +14:07:37 + + +waiting on router queue for slot.... +14:07:38 ============================================================================ +14:07:38 Slot Id : <275> +14:07:38 Transaction Type : RESPONSE +14:07:38 Received From : +14:07:38 ============================================================================ +14:07:38 FNo. Len. Field Value +14:07:38 ============================================================================ +14:07:38 [ 1] [ 4] [0210] +14:07:38 [ 2] [ 16] [6213543000073972] +14:07:38 [ 3] [ 6] [010000] +14:07:38 [ 4] [ 12] [000200000000] +14:07:38 [ 7] [ 10] [0320070643] +14:07:38 [ 11] [ 6] [269540] +14:07:38 [ 12] [ 6] [140643] +14:07:38 [ 13] [ 4] [0320] +14:07:38 [ 15] [ 4] [0320] +14:07:38 [ 18] [ 4] [6011] +14:07:38 [ 19] [ 3] [418] +14:07:38 [ 22] [ 3] [021] +14:07:38 [ 32] [ 6] [180893] +14:07:38 [ 35] [ 32] [6213543000073972=491212017397958] +14:07:38 [ 37] [ 12] [507907269540] +14:07:38 [ 39] [ 2] [61] +14:07:38 [ 41] [ 8] [0301LPBX] +14:07:38 [ 49] [ 3] [418] +14:07:38 ============================================================================ +14:07:38 Calculate Source COMM Id = 2 +14:07:38 ============================================================================ +14:07:38 + + +waiting on router queue for slot.... +14:07:39 ============================================================================ +14:07:39 Slot Id : <228> +14:07:39 Transaction Type : REQUEST +14:07:39 Received From : +14:07:39 ============================================================================ +14:07:39 FNo. Len. Field Value +14:07:39 ============================================================================ +14:07:39 [ 1] [ 4] [0200] +14:07:39 [ 2] [ 16] [6213545000089825] +14:07:39 [ 3] [ 6] [010000] +14:07:39 [ 4] [ 12] [000100000000] +14:07:39 [ 7] [ 10] [0320070645] +14:07:39 [ 11] [ 6] [269541] +14:07:39 [ 12] [ 6] [140645] +14:07:39 [ 13] [ 4] [0320] +14:07:39 [ 14] [ 4] [4912] +14:07:39 [ 15] [ 4] [0320] +14:07:39 [ 18] [ 4] [6011] +14:07:39 [ 19] [ 3] [418] +14:07:39 [ 22] [ 3] [021] +14:07:39 [ 25] [ 2] [01] +14:07:39 [ 28] [ 9] [D00002000] +14:07:39 [ 32] [ 6] [180893] +14:07:39 [ 35] [ 32] [6213545000089825=491212018982433] +14:07:39 [ 37] [ 12] [507907269541] +14:07:39 [ 41] [ 8] [0461BKPO] +14:07:39 [ 42] [ 15] [999999 ] +14:07:39 [ 43] [ 40] [ATM BORKEO PAROY, Hauysay, Lao People ] +14:07:39 [ 49] [ 3] [418] +14:07:39 [ 52] [ 16] [A401E18BC2906C82] +14:07:39 ============================================================================ +14:07:39 + + +waiting on router queue for slot.... +14:07:39 Sending to : +14:07:39 ============================================================================ +14:07:39 Sending to : +14:07:39 ============================================================================ +14:07:40 ============================================================================ +14:07:40 Slot Id : <228> +14:07:40 Transaction Type : REQUEST +14:07:40 Received From : +14:07:40 ============================================================================ +14:07:40 FNo. Len. Field Value +14:07:40 ============================================================================ +14:07:40 [ 1] [ 4] [0200] +14:07:40 [ 2] [ 16] [6213545000089825] +14:07:40 [ 3] [ 6] [010000] +14:07:40 [ 4] [ 12] [000100000000] +14:07:40 [ 7] [ 10] [0320070645] +14:07:40 [ 11] [ 6] [269541] +14:07:40 [ 12] [ 6] [140645] +14:07:40 [ 13] [ 4] [0320] +14:07:40 [ 14] [ 4] [4912] +14:07:40 [ 15] [ 4] [0320] +14:07:40 [ 18] [ 4] [6011] +14:07:40 [ 19] [ 3] [418] +14:07:40 [ 22] [ 3] [021] +14:07:40 [ 25] [ 2] [01] +14:07:40 [ 28] [ 9] [D00002000] +14:07:40 [ 32] [ 6] [180893] +14:07:40 [ 35] [ 32] [6213545000089825=491212018982433] +14:07:40 [ 37] [ 12] [507907269541] +14:07:40 [ 41] [ 8] [0461BKPO] +14:07:40 [ 42] [ 15] [999999 ] +14:07:40 [ 43] [ 40] [ATM BORKEO PAROY, Hauysay, Lao People ] +14:07:40 [ 49] [ 3] [418] +14:07:40 [ 52] [ 16] [A401E18BC2906C82] +14:07:40 ============================================================================ +14:07:40 + + +waiting on router queue for slot.... +14:07:40 Sending to : +14:07:40 ============================================================================ +14:07:40 ============================================================================ +14:07:40 Slot Id : <228> +14:07:40 Transaction Type : REQUEST +14:07:40 Received From : +14:07:40 ============================================================================ +14:07:40 FNo. Len. Field Value +14:07:40 ============================================================================ +14:07:40 [ 1] [ 4] [0200] +14:07:40 [ 2] [ 16] [6213545000089825] +14:07:40 [ 3] [ 6] [010000] +14:07:40 [ 4] [ 12] [000100000000] +14:07:40 [ 7] [ 10] [0320070645] +14:07:40 [ 11] [ 6] [269541] +14:07:40 [ 12] [ 6] [140645] +14:07:40 [ 13] [ 4] [0320] +14:07:40 [ 14] [ 4] [4912] +14:07:40 [ 15] [ 4] [0320] +14:07:40 [ 18] [ 4] [6011] +14:07:40 [ 19] [ 3] [418] +14:07:40 [ 22] [ 3] [021] +14:07:40 [ 25] [ 2] [01] +14:07:40 [ 28] [ 9] [D00002000] +14:07:40 [ 32] [ 6] [180893] +14:07:40 [ 35] [ 32] [6213545000089825=491212018982433] +14:07:40 [ 37] [ 12] [507907269541] +14:07:40 [ 41] [ 8] [0461BKPO] +14:07:40 [ 42] [ 15] [999999 ] +14:07:40 [ 43] [ 40] [ATM BORKEO PAROY, Hauysay, Lao People ] +14:07:40 [ 49] [ 3] [418] +14:07:40 [ 52] [ 16] [05AAF17817041FE1] +14:07:40 ============================================================================ +14:07:40 + + +waiting on router queue for slot.... +14:07:40 Sending to : <0> +14:07:40 ============================================================================ +14:07:40 ============================================================================ +14:07:40 Slot Id : <228> +14:07:40 Transaction Type : RESPONSE +14:07:40 Received From : +14:07:40 ============================================================================ +14:07:40 FNo. Len. Field Value +14:07:40 ============================================================================ +14:07:40 [ 1] [ 4] [0210] +14:07:40 [ 2] [ 16] [6213545000089825] +14:07:40 [ 3] [ 6] [010000] +14:07:40 [ 4] [ 12] [000100000000] +14:07:40 [ 7] [ 10] [0320070645] +14:07:40 [ 11] [ 6] [269541] +14:07:40 [ 12] [ 6] [140645] +14:07:40 [ 13] [ 4] [0320] +14:07:40 [ 15] [ 4] [0320] +14:07:40 [ 18] [ 4] [6011] +14:07:40 [ 19] [ 3] [418] +14:07:40 [ 32] [ 6] [180893] +14:07:40 [ 35] [ 32] [6213545000089825=491212018982433] +14:07:40 [ 37] [ 12] [507907269541] +14:07:40 [ 38] [ 6] [596686] +14:07:40 [ 39] [ 2] [00] +14:07:40 [ 41] [ 8] [0461BKPO] +14:07:40 [ 49] [ 3] [418] +14:07:40 [ 54] [ 40] [0001418C0002152809220002418C000215280922] +14:07:40 ============================================================================ +14:07:40 Sending to : +14:07:40 ============================================================================ +14:07:40 + + +waiting on router queue for slot.... +14:07:42 ============================================================================ +14:07:42 Slot Id : <228> +14:07:42 Transaction Type : RESPONSE +14:07:42 Received From : +14:07:42 ============================================================================ +14:07:42 FNo. Len. Field Value +14:07:42 ============================================================================ +14:07:42 [ 1] [ 4] [0210] +14:07:42 [ 2] [ 16] [6213545000089825] +14:07:42 [ 3] [ 6] [010000] +14:07:42 [ 4] [ 12] [000100000000] +14:07:42 [ 7] [ 10] [0320070645] +14:07:42 [ 11] [ 6] [269541] +14:07:42 [ 12] [ 6] [140645] +14:07:42 [ 13] [ 4] [0320] +14:07:42 [ 15] [ 4] [0320] +14:07:42 [ 18] [ 4] [6011] +14:07:42 [ 19] [ 3] [418] +14:07:42 [ 32] [ 6] [180893] +14:07:42 [ 35] [ 32] [6213545000089825=491212018982433] +14:07:42 [ 37] [ 12] [507907269541] +14:07:42 [ 38] [ 6] [596686] +14:07:42 [ 39] [ 2] [00] +14:07:42 [ 41] [ 8] [0461BKPO] +14:07:42 [ 49] [ 3] [418] +14:07:42 [ 54] [ 40] [0001418C0002152809220002418C000215280922] +14:07:42 ============================================================================ +14:07:42 Calculate Source COMM Id = 2 +14:07:42 ============================================================================ +14:07:42 + + +waiting on router queue for slot.... +14:07:52 ============================================================================ +14:07:52 Slot Id : <256> +14:07:52 Transaction Type : REQUEST +14:07:52 Received From : +14:07:52 ============================================================================ +14:07:52 FNo. Len. Field Value +14:07:52 ============================================================================ +14:07:52 [ 1] [ 4] [0200] +14:07:52 [ 2] [ 16] [6688990105014904] +14:07:52 [ 3] [ 6] [010000] +14:07:52 [ 4] [ 12] [000100000000] +14:07:52 [ 7] [ 10] [0320140747] +14:07:52 [ 11] [ 6] [765948] +14:07:52 [ 12] [ 6] [140747] +14:07:52 [ 13] [ 4] [0320] +14:07:52 [ 15] [ 4] [0320] +14:07:52 [ 18] [ 4] [6011] +14:07:52 [ 22] [ 3] [900] +14:07:52 [ 25] [ 2] [02] +14:07:52 [ 28] [ 9] [D00002000] +14:07:52 [ 32] [ 6] [621354] +14:07:52 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:07:52 [ 37] [ 12] [507904635680] +14:07:52 [ 41] [ 8] [17000800] +14:07:52 [ 42] [ 15] [NATIVE ] +14:07:52 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:07:52 [ 49] [ 3] [418] +14:07:52 [ 52] [ 16] [8D48F9BC598F7280] +14:07:52 ============================================================================ +14:07:52 + + +waiting on router queue for slot.... +14:07:52 Sending to : +14:07:52 ============================================================================ +14:07:52 Sending to : +14:07:52 ============================================================================ +14:07:52 ============================================================================ +14:07:52 Slot Id : <256> +14:07:52 Transaction Type : REQUEST +14:07:52 Received From : +14:07:52 ============================================================================ +14:07:52 FNo. Len. Field Value +14:07:52 ============================================================================ +14:07:52 [ 1] [ 4] [0200] +14:07:52 [ 2] [ 16] [6688990105014904] +14:07:52 [ 3] [ 6] [010000] +14:07:52 [ 4] [ 12] [000100000000] +14:07:52 [ 7] [ 10] [0320140747] +14:07:52 [ 11] [ 6] [765948] +14:07:52 [ 12] [ 6] [140747] +14:07:52 [ 13] [ 4] [0320] +14:07:52 [ 15] [ 4] [0320] +14:07:52 [ 18] [ 4] [6011] +14:07:52 [ 22] [ 3] [900] +14:07:52 [ 25] [ 2] [02] +14:07:52 [ 28] [ 9] [D00002000] +14:07:52 [ 32] [ 6] [621354] +14:07:52 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:07:52 [ 37] [ 12] [507904635680] +14:07:52 [ 41] [ 8] [17000800] +14:07:52 [ 42] [ 15] [NATIVE ] +14:07:52 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:07:52 [ 49] [ 3] [418] +14:07:52 [ 52] [ 16] [8D48F9BC598F7280] +14:07:52 ============================================================================ +14:07:52 + + +waiting on router queue for slot.... +14:07:52 Sending to : +14:07:52 ============================================================================ +14:07:52 ============================================================================ +14:07:52 Slot Id : <256> +14:07:52 Transaction Type : REQUEST +14:07:52 Received From : +14:07:52 ============================================================================ +14:07:52 FNo. Len. Field Value +14:07:52 ============================================================================ +14:07:52 [ 1] [ 4] [0200] +14:07:52 [ 2] [ 16] [6688990105014904] +14:07:52 [ 3] [ 6] [010000] +14:07:52 [ 4] [ 12] [000100000000] +14:07:52 [ 7] [ 10] [0320140747] +14:07:52 [ 11] [ 6] [765948] +14:07:52 [ 12] [ 6] [140747] +14:07:52 [ 13] [ 4] [0320] +14:07:52 [ 15] [ 4] [0320] +14:07:52 [ 18] [ 4] [6011] +14:07:52 [ 22] [ 3] [900] +14:07:52 [ 25] [ 2] [02] +14:07:52 [ 28] [ 9] [D00002000] +14:07:52 [ 32] [ 6] [621354] +14:07:52 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:07:52 [ 37] [ 12] [507904635680] +14:07:52 [ 41] [ 8] [17000800] +14:07:52 [ 42] [ 15] [NATIVE ] +14:07:52 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:07:52 [ 49] [ 3] [418] +14:07:52 [ 52] [ 16] [883C480C8C0C895A] +14:07:52 ============================================================================ +14:07:52 + + +waiting on router queue for slot.... +14:07:52 Sending to : <4> +14:07:52 ============================================================================ +14:07:53 ============================================================================ +14:07:53 Slot Id : <256> +14:07:53 Transaction Type : RESPONSE +14:07:53 Received From : +14:07:53 ============================================================================ +14:07:53 FNo. Len. Field Value +14:07:53 ============================================================================ +14:07:53 [ 1] [ 4] [0210] +14:07:53 [ 2] [ 16] [6688990105014904] +14:07:53 [ 3] [ 6] [010000] +14:07:53 [ 4] [ 12] [000100000000] +14:07:53 [ 11] [ 6] [765948] +14:07:53 [ 12] [ 6] [140747] +14:07:53 [ 15] [ 4] [0320] +14:07:53 [ 18] [ 4] [6011] +14:07:53 [ 32] [ 6] [621354] +14:07:53 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:07:53 [ 37] [ 12] [507904635680] +14:07:53 [ 38] [ 6] [770013] +14:07:53 [ 39] [ 2] [00] +14:07:53 [ 41] [ 8] [17000800] +14:07:53 [ 49] [ 3] [418] +14:07:53 [ 54] [ 20] [0002418C000336090816] +14:07:53 ============================================================================ +14:07:53 Sending to : +14:07:53 ============================================================================ +14:07:53 + + +waiting on router queue for slot.... +14:07:54 ============================================================================ +14:07:54 Slot Id : <197> +14:07:54 Transaction Type : REQUEST +14:07:54 Received From : +14:07:54 ============================================================================ +14:07:54 FNo. Len. Field Value +14:07:54 ============================================================================ +14:07:54 [ 1] [ 4] [0800] +14:07:54 [ 7] [ 10] [0320070701] +14:07:54 [ 11] [ 6] [156713] +14:07:54 [ 70] [ 3] [301] +14:07:54 ============================================================================ +14:07:54 + + +waiting on router queue for slot.... +14:07:54 Sending to : +14:07:54 ============================================================================ +14:07:54 ============================================================================ +14:07:54 Slot Id : <197> +14:07:54 Transaction Type : RESPONSE +14:07:54 Received From : +14:07:54 ============================================================================ +14:07:54 FNo. Len. Field Value +14:07:54 ============================================================================ +14:07:54 [ 1] [ 4] [0810] +14:07:54 [ 7] [ 10] [0320070701] +14:07:54 [ 11] [ 6] [156713] +14:07:54 [ 39] [ 2] [00] +14:07:54 [ 70] [ 3] [301] +14:07:54 ============================================================================ +14:07:54 Calculate Source COMM Id = 2 +14:07:54 ============================================================================ +14:07:54 + + +waiting on router queue for slot.... +14:07:55 ============================================================================ +14:07:55 Slot Id : <256> +14:07:55 Transaction Type : RESPONSE +14:07:55 Received From : +14:07:55 ============================================================================ +14:07:55 FNo. Len. Field Value +14:07:55 ============================================================================ +14:07:55 [ 1] [ 4] [0210] +14:07:55 [ 2] [ 16] [6688990105014904] +14:07:55 [ 3] [ 6] [010000] +14:07:55 [ 4] [ 12] [000100000000] +14:07:55 [ 11] [ 6] [765948] +14:07:55 [ 12] [ 6] [140747] +14:07:55 [ 15] [ 4] [0320] +14:07:55 [ 18] [ 4] [6011] +14:07:55 [ 32] [ 6] [621354] +14:07:55 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:07:55 [ 37] [ 12] [507904635680] +14:07:55 [ 38] [ 6] [770013] +14:07:55 [ 39] [ 2] [00] +14:07:55 [ 41] [ 8] [17000800] +14:07:55 [ 49] [ 3] [418] +14:07:55 [ 54] [ 20] [0002418C000336090816] +14:07:55 ============================================================================ +14:07:55 Calculate Source COMM Id = 0 +14:07:55 ============================================================================ +14:07:55 + + +waiting on router queue for slot.... +14:07:58 ============================================================================ +14:07:58 Slot Id : <265> +14:07:58 Transaction Type : REQUEST +14:07:58 Received From : +14:07:58 ============================================================================ +14:07:58 FNo. Len. Field Value +14:07:58 ============================================================================ +14:07:58 [ 1] [ 4] [0200] +14:07:58 [ 2] [ 16] [6213543000073972] +14:07:58 [ 3] [ 6] [010000] +14:07:58 [ 4] [ 12] [000200000000] +14:07:58 [ 7] [ 10] [0320070704] +14:07:58 [ 11] [ 6] [269545] +14:07:58 [ 12] [ 6] [140704] +14:07:58 [ 13] [ 4] [0320] +14:07:58 [ 14] [ 4] [4912] +14:07:58 [ 15] [ 4] [0320] +14:07:58 [ 18] [ 4] [6011] +14:07:58 [ 19] [ 3] [418] +14:07:58 [ 22] [ 3] [021] +14:07:58 [ 25] [ 2] [01] +14:07:58 [ 28] [ 9] [D00002000] +14:07:58 [ 32] [ 6] [180893] +14:07:58 [ 35] [ 32] [6213543000073972=491212017397958] +14:07:58 [ 37] [ 12] [507907269545] +14:07:58 [ 41] [ 8] [0301LPBX] +14:07:58 [ 42] [ 15] [999999 ] +14:07:58 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:07:58 [ 49] [ 3] [418] +14:07:58 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:07:58 ============================================================================ +14:07:58 + + +waiting on router queue for slot.... +14:07:58 Sending to : +14:07:58 ============================================================================ +14:07:58 Sending to : +14:07:58 ============================================================================ +14:07:58 ============================================================================ +14:07:58 Slot Id : <265> +14:07:58 Transaction Type : REQUEST +14:07:58 Received From : +14:07:58 ============================================================================ +14:07:58 FNo. Len. Field Value +14:07:58 ============================================================================ +14:07:58 [ 1] [ 4] [0200] +14:07:58 [ 2] [ 16] [6213543000073972] +14:07:58 [ 3] [ 6] [010000] +14:07:58 [ 4] [ 12] [000200000000] +14:07:58 [ 7] [ 10] [0320070704] +14:07:58 [ 11] [ 6] [269545] +14:07:58 [ 12] [ 6] [140704] +14:07:58 [ 13] [ 4] [0320] +14:07:58 [ 14] [ 4] [4912] +14:07:58 [ 15] [ 4] [0320] +14:07:58 [ 18] [ 4] [6011] +14:07:58 [ 19] [ 3] [418] +14:07:58 [ 22] [ 3] [021] +14:07:58 [ 25] [ 2] [01] +14:07:58 [ 28] [ 9] [D00002000] +14:07:58 [ 32] [ 6] [180893] +14:07:58 [ 35] [ 32] [6213543000073972=491212017397958] +14:07:58 [ 37] [ 12] [507907269545] +14:07:58 [ 41] [ 8] [0301LPBX] +14:07:58 [ 42] [ 15] [999999 ] +14:07:58 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:07:58 [ 49] [ 3] [418] +14:07:58 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:07:58 ============================================================================ +14:07:58 + + +waiting on router queue for slot.... +14:07:58 Sending to : +14:07:58 ============================================================================ +14:07:58 ============================================================================ +14:07:58 Slot Id : <265> +14:07:58 Transaction Type : REQUEST +14:07:58 Received From : +14:07:58 ============================================================================ +14:07:58 FNo. Len. Field Value +14:07:58 ============================================================================ +14:07:58 [ 1] [ 4] [0200] +14:07:58 [ 2] [ 16] [6213543000073972] +14:07:58 [ 3] [ 6] [010000] +14:07:58 [ 4] [ 12] [000200000000] +14:07:58 [ 7] [ 10] [0320070704] +14:07:58 [ 11] [ 6] [269545] +14:07:58 [ 12] [ 6] [140704] +14:07:58 [ 13] [ 4] [0320] +14:07:58 [ 14] [ 4] [4912] +14:07:58 [ 15] [ 4] [0320] +14:07:58 [ 18] [ 4] [6011] +14:07:58 [ 19] [ 3] [418] +14:07:58 [ 22] [ 3] [021] +14:07:58 [ 25] [ 2] [01] +14:07:58 [ 28] [ 9] [D00002000] +14:07:58 [ 32] [ 6] [180893] +14:07:58 [ 35] [ 32] [6213543000073972=491212017397958] +14:07:58 [ 37] [ 12] [507907269545] +14:07:58 [ 41] [ 8] [0301LPBX] +14:07:58 [ 42] [ 15] [999999 ] +14:07:58 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:07:58 [ 49] [ 3] [418] +14:07:58 [ 52] [ 16] [E42743FA8A68826A] +14:07:58 ============================================================================ +14:07:58 + + +waiting on router queue for slot.... +14:07:58 Sending to : <0> +14:07:58 ============================================================================ +14:07:58 ============================================================================ +14:07:58 Slot Id : <265> +14:07:58 Transaction Type : RESPONSE +14:07:58 Received From : +14:07:58 ============================================================================ +14:07:58 FNo. Len. Field Value +14:07:58 ============================================================================ +14:07:58 [ 1] [ 4] [0210] +14:07:58 [ 2] [ 16] [6213543000073972] +14:07:58 [ 3] [ 6] [010000] +14:07:58 [ 4] [ 12] [000200000000] +14:07:58 [ 7] [ 10] [0320070704] +14:07:58 [ 11] [ 6] [269545] +14:07:58 [ 12] [ 6] [140704] +14:07:58 [ 13] [ 4] [0320] +14:07:58 [ 15] [ 4] [0320] +14:07:58 [ 18] [ 4] [6011] +14:07:58 [ 19] [ 3] [418] +14:07:58 [ 22] [ 3] [021] +14:07:58 [ 32] [ 6] [180893] +14:07:58 [ 35] [ 32] [6213543000073972=491212017397958] +14:07:58 [ 37] [ 12] [507907269545] +14:07:58 [ 39] [ 2] [61] +14:07:58 [ 41] [ 8] [0301LPBX] +14:07:58 [ 49] [ 3] [418] +14:07:58 ============================================================================ +14:07:58 Sending to : +14:07:58 ============================================================================ +14:07:58 + + +waiting on router queue for slot.... +14:07:58 ============================================================================ +14:07:58 Slot Id : <218> +14:07:58 Transaction Type : REQUEST +14:07:58 Received From : +14:07:58 ============================================================================ +14:07:58 FNo. Len. Field Value +14:07:58 ============================================================================ +14:07:58 [ 1] [ 4] [0800] +14:07:58 [ 2] [ 5] [02531] +14:07:58 [ 3] [ 6] [579148] +14:07:58 [ 7] [ 10] [0320070758] +14:07:58 [ 11] [ 6] [807232] +14:07:58 [ 15] [ 10] [0320070758] +14:07:58 [ 37] [ 11] [57914807232] +14:07:58 [ 70] [ 3] [001] +14:07:58 ============================================================================ +14:07:58 + + +waiting on router queue for slot.... +14:07:58 ============================================================================ +14:07:58 Slot Id : <218> +14:07:58 Transaction Type : RESPONSE +14:07:58 Received From : +14:07:58 ============================================================================ +14:07:58 FNo. Len. Field Value +14:07:58 ============================================================================ +14:07:58 [ 1] [ 4] [0810] +14:07:58 [ 7] [ 10] [0320070758] +14:07:58 [ 11] [ 6] [807232] +14:07:58 [ 15] [ 4] [0320] +14:07:58 [ 37] [ 12] [57914807232] +14:07:58 [ 39] [ 2] [00] +14:07:58 [ 70] [ 3] [001] +14:07:58 ============================================================================ +14:07:58 Sending to : +14:07:58 ============================================================================ +14:07:58 + + +waiting on router queue for slot.... +14:07:59 ============================================================================ +14:07:59 Slot Id : <265> +14:07:59 Transaction Type : RESPONSE +14:07:59 Received From : +14:07:59 ============================================================================ +14:07:59 FNo. Len. Field Value +14:07:59 ============================================================================ +14:07:59 [ 1] [ 4] [0210] +14:07:59 [ 2] [ 16] [6213543000073972] +14:07:59 [ 3] [ 6] [010000] +14:07:59 [ 4] [ 12] [000200000000] +14:07:59 [ 7] [ 10] [0320070704] +14:07:59 [ 11] [ 6] [269545] +14:07:59 [ 12] [ 6] [140704] +14:07:59 [ 13] [ 4] [0320] +14:07:59 [ 15] [ 4] [0320] +14:07:59 [ 18] [ 4] [6011] +14:07:59 [ 19] [ 3] [418] +14:07:59 [ 22] [ 3] [021] +14:07:59 [ 32] [ 6] [180893] +14:07:59 [ 35] [ 32] [6213543000073972=491212017397958] +14:07:59 [ 37] [ 12] [507907269545] +14:07:59 [ 39] [ 2] [61] +14:07:59 [ 41] [ 8] [0301LPBX] +14:07:59 [ 49] [ 3] [418] +14:07:59 ============================================================================ +14:07:59 Calculate Source COMM Id = 2 +14:07:59 ============================================================================ +14:07:59 + + +waiting on router queue for slot.... +14:08:03 ============================================================================ +14:08:03 Slot Id : <274> +14:08:03 Transaction Type : REQUEST +14:08:03 Received From : +14:08:03 ============================================================================ +14:08:03 FNo. Len. Field Value +14:08:03 ============================================================================ +14:08:03 [ 1] [ 4] [0800] +14:08:03 [ 7] [ 10] [0320211952] +14:08:03 [ 11] [ 6] [141952] +14:08:03 [ 37] [ 12] [57914141952] +14:08:03 [ 70] [ 3] [301] +14:08:03 ============================================================================ +14:08:03 + + +waiting on router queue for slot.... +14:08:03 Sending to : +14:08:03 ============================================================================ +14:08:03 ============================================================================ +14:08:03 Slot Id : <274> +14:08:03 Transaction Type : RESPONSE +14:08:03 Received From : +14:08:03 ============================================================================ +14:08:03 FNo. Len. Field Value +14:08:03 ============================================================================ +14:08:03 [ 1] [ 4] [0810] +14:08:03 [ 7] [ 10] [0320211952] +14:08:03 [ 11] [ 6] [141952] +14:08:03 [ 37] [ 12] [579141419520] +14:08:03 [ 39] [ 2] [00] +14:08:03 [ 70] [ 3] [810] +14:08:03 ============================================================================ +14:08:03 Calculate Source COMM Id = 6 +14:08:03 ============================================================================ +14:08:03 + + +waiting on router queue for slot.... +14:08:07 ============================================================================ +14:08:07 Slot Id : <247> +14:08:07 Transaction Type : REQUEST +14:08:07 Received From : +14:08:07 ============================================================================ +14:08:07 FNo. Len. Field Value +14:08:07 ============================================================================ +14:08:07 [ 1] [ 4] [0200] +14:08:07 [ 2] [ 16] [6213545000785877] +14:08:07 [ 3] [ 6] [010000] +14:08:07 [ 4] [ 12] [000100000000] +14:08:07 [ 7] [ 10] [0320070713] +14:08:07 [ 11] [ 6] [269548] +14:08:07 [ 12] [ 6] [140713] +14:08:07 [ 13] [ 4] [0320] +14:08:07 [ 14] [ 4] [4912] +14:08:07 [ 15] [ 4] [0320] +14:08:07 [ 18] [ 4] [6011] +14:08:07 [ 19] [ 3] [418] +14:08:07 [ 22] [ 3] [021] +14:08:07 [ 25] [ 2] [01] +14:08:07 [ 28] [ 9] [D00002000] +14:08:07 [ 32] [ 6] [180893] +14:08:07 [ 35] [ 32] [6213545000785877=491212018587984] +14:08:07 [ 37] [ 12] [507907269548] +14:08:07 [ 41] [ 8] [0525XYBT] +14:08:07 [ 42] [ 15] [999999 ] +14:08:07 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:08:07 [ 49] [ 3] [418] +14:08:07 [ 52] [ 16] [CB834DDDCDD5C831] +14:08:07 ============================================================================ +14:08:07 + + +waiting on router queue for slot.... +14:08:07 Sending to : +14:08:07 ============================================================================ +14:08:07 Sending to : +14:08:07 ============================================================================ +14:08:07 ============================================================================ +14:08:07 Slot Id : <247> +14:08:07 Transaction Type : REQUEST +14:08:07 Received From : +14:08:07 ============================================================================ +14:08:07 FNo. Len. Field Value +14:08:07 ============================================================================ +14:08:07 [ 1] [ 4] [0200] +14:08:07 [ 2] [ 16] [6213545000785877] +14:08:07 [ 3] [ 6] [010000] +14:08:07 [ 4] [ 12] [000100000000] +14:08:07 [ 7] [ 10] [0320070713] +14:08:07 [ 11] [ 6] [269548] +14:08:07 [ 12] [ 6] [140713] +14:08:07 [ 13] [ 4] [0320] +14:08:07 [ 14] [ 4] [4912] +14:08:07 [ 15] [ 4] [0320] +14:08:07 [ 18] [ 4] [6011] +14:08:07 [ 19] [ 3] [418] +14:08:07 [ 22] [ 3] [021] +14:08:07 [ 25] [ 2] [01] +14:08:07 [ 28] [ 9] [D00002000] +14:08:07 [ 32] [ 6] [180893] +14:08:07 [ 35] [ 32] [6213545000785877=491212018587984] +14:08:07 [ 37] [ 12] [507907269548] +14:08:07 [ 41] [ 8] [0525XYBT] +14:08:07 [ 42] [ 15] [999999 ] +14:08:07 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:08:07 [ 49] [ 3] [418] +14:08:07 [ 52] [ 16] [CB834DDDCDD5C831] +14:08:07 ============================================================================ +14:08:07 + + +waiting on router queue for slot.... +14:08:07 Sending to : +14:08:07 ============================================================================ +14:08:07 ============================================================================ +14:08:07 Slot Id : <247> +14:08:07 Transaction Type : REQUEST +14:08:07 Received From : +14:08:07 ============================================================================ +14:08:07 FNo. Len. Field Value +14:08:07 ============================================================================ +14:08:07 [ 1] [ 4] [0200] +14:08:07 [ 2] [ 16] [6213545000785877] +14:08:07 [ 3] [ 6] [010000] +14:08:07 [ 4] [ 12] [000100000000] +14:08:07 [ 7] [ 10] [0320070713] +14:08:07 [ 11] [ 6] [269548] +14:08:07 [ 12] [ 6] [140713] +14:08:07 [ 13] [ 4] [0320] +14:08:07 [ 14] [ 4] [4912] +14:08:07 [ 15] [ 4] [0320] +14:08:07 [ 18] [ 4] [6011] +14:08:07 [ 19] [ 3] [418] +14:08:07 [ 22] [ 3] [021] +14:08:07 [ 25] [ 2] [01] +14:08:07 [ 28] [ 9] [D00002000] +14:08:07 [ 32] [ 6] [180893] +14:08:07 [ 35] [ 32] [6213545000785877=491212018587984] +14:08:07 [ 37] [ 12] [507907269548] +14:08:07 [ 41] [ 8] [0525XYBT] +14:08:07 [ 42] [ 15] [999999 ] +14:08:07 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:08:07 [ 49] [ 3] [418] +14:08:07 [ 52] [ 16] [5794A3AD85E42116] +14:08:07 ============================================================================ +14:08:07 + + +waiting on router queue for slot.... +14:08:07 Sending to : <0> +14:08:07 ============================================================================ +14:08:08 ============================================================================ +14:08:08 Slot Id : <247> +14:08:08 Transaction Type : RESPONSE +14:08:08 Received From : +14:08:08 ============================================================================ +14:08:08 FNo. Len. Field Value +14:08:08 ============================================================================ +14:08:08 [ 1] [ 4] [0210] +14:08:08 [ 2] [ 16] [6213545000785877] +14:08:08 [ 3] [ 6] [010000] +14:08:08 [ 4] [ 12] [000100000000] +14:08:08 [ 7] [ 10] [0320070713] +14:08:08 [ 11] [ 6] [269548] +14:08:08 [ 12] [ 6] [140713] +14:08:08 [ 13] [ 4] [0320] +14:08:08 [ 15] [ 4] [0320] +14:08:08 [ 18] [ 4] [6011] +14:08:08 [ 19] [ 3] [418] +14:08:08 [ 32] [ 6] [180893] +14:08:08 [ 35] [ 32] [6213545000785877=491212018587984] +14:08:08 [ 37] [ 12] [507907269548] +14:08:08 [ 38] [ 6] [829600] +14:08:08 [ 39] [ 2] [00] +14:08:08 [ 41] [ 8] [0525XYBT] +14:08:08 [ 49] [ 3] [418] +14:08:08 [ 54] [ 40] [0001418C0000171949210002418C000017194921] +14:08:08 ============================================================================ +14:08:08 Sending to : +14:08:08 ============================================================================ +14:08:08 + + +waiting on router queue for slot.... +14:08:09 ============================================================================ +14:08:09 Slot Id : <247> +14:08:09 Transaction Type : RESPONSE +14:08:09 Received From : +14:08:09 ============================================================================ +14:08:09 FNo. Len. Field Value +14:08:09 ============================================================================ +14:08:09 [ 1] [ 4] [0210] +14:08:09 [ 2] [ 16] [6213545000785877] +14:08:09 [ 3] [ 6] [010000] +14:08:09 [ 4] [ 12] [000100000000] +14:08:09 [ 7] [ 10] [0320070713] +14:08:09 [ 11] [ 6] [269548] +14:08:09 [ 12] [ 6] [140713] +14:08:09 [ 13] [ 4] [0320] +14:08:09 [ 15] [ 4] [0320] +14:08:09 [ 18] [ 4] [6011] +14:08:09 [ 19] [ 3] [418] +14:08:09 [ 32] [ 6] [180893] +14:08:09 [ 35] [ 32] [6213545000785877=491212018587984] +14:08:09 [ 37] [ 12] [507907269548] +14:08:09 [ 38] [ 6] [829600] +14:08:09 [ 39] [ 2] [00] +14:08:09 [ 41] [ 8] [0525XYBT] +14:08:09 [ 49] [ 3] [418] +14:08:09 [ 54] [ 40] [0001418C0000171949210002418C000017194921] +14:08:09 ============================================================================ +14:08:09 Calculate Source COMM Id = 2 +14:08:09 ============================================================================ +14:08:09 + + +waiting on router queue for slot.... +14:08:13 ============================================================================ +14:08:13 Slot Id : <279> +14:08:13 Transaction Type : REQUEST +14:08:13 Received From : +14:08:13 ============================================================================ +14:08:13 FNo. Len. Field Value +14:08:13 ============================================================================ +14:08:13 [ 1] [ 4] [0200] +14:08:13 [ 2] [ 16] [6688990602752808] +14:08:13 [ 3] [ 6] [010000] +14:08:13 [ 4] [ 12] [000100000000] +14:08:13 [ 7] [ 10] [0320070720] +14:08:13 [ 11] [ 6] [269550] +14:08:13 [ 12] [ 6] [140720] +14:08:13 [ 13] [ 4] [0320] +14:08:13 [ 14] [ 4] [4310] +14:08:13 [ 15] [ 4] [0320] +14:08:13 [ 18] [ 4] [6011] +14:08:13 [ 19] [ 3] [418] +14:08:13 [ 22] [ 3] [021] +14:08:13 [ 25] [ 2] [01] +14:08:13 [ 28] [ 9] [D00002000] +14:08:13 [ 32] [ 6] [180893] +14:08:13 [ 35] [ 37] [6688990602752808=43100061280844500000] +14:08:13 [ 37] [ 12] [507907269550] +14:08:13 [ 41] [ 8] [0201ADD1] +14:08:13 [ 42] [ 15] [999999 ] +14:08:13 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:08:13 [ 49] [ 3] [418] +14:08:13 [ 52] [ 16] [E0C869840C162E39] +14:08:13 ============================================================================ +14:08:13 + + +waiting on router queue for slot.... +14:08:13 Sending to : +14:08:13 ============================================================================ +14:08:13 Sending to : +14:08:13 ============================================================================ +14:08:13 ============================================================================ +14:08:13 Slot Id : <279> +14:08:13 Transaction Type : REQUEST +14:08:13 Received From : +14:08:13 ============================================================================ +14:08:13 FNo. Len. Field Value +14:08:13 ============================================================================ +14:08:13 [ 1] [ 4] [0200] +14:08:13 [ 2] [ 16] [6688990602752808] +14:08:13 [ 3] [ 6] [010000] +14:08:13 [ 4] [ 12] [000100000000] +14:08:13 [ 7] [ 10] [0320070720] +14:08:13 [ 11] [ 6] [269550] +14:08:13 [ 12] [ 6] [140720] +14:08:13 [ 13] [ 4] [0320] +14:08:13 [ 14] [ 4] [4310] +14:08:13 [ 15] [ 4] [0320] +14:08:13 [ 18] [ 4] [6011] +14:08:13 [ 19] [ 3] [418] +14:08:13 [ 22] [ 3] [021] +14:08:13 [ 25] [ 2] [01] +14:08:13 [ 28] [ 9] [D00002000] +14:08:13 [ 32] [ 6] [180893] +14:08:13 [ 35] [ 37] [6688990602752808=43100061280844500000] +14:08:13 [ 37] [ 12] [507907269550] +14:08:13 [ 41] [ 8] [0201ADD1] +14:08:13 [ 42] [ 15] [999999 ] +14:08:13 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:08:13 [ 49] [ 3] [418] +14:08:13 [ 52] [ 16] [E0C869840C162E39] +14:08:13 ============================================================================ +14:08:13 + + +waiting on router queue for slot.... +14:08:13 Sending to : +14:08:13 ============================================================================ +14:08:13 ============================================================================ +14:08:13 Slot Id : <279> +14:08:13 Transaction Type : REQUEST +14:08:13 Received From : +14:08:13 ============================================================================ +14:08:13 FNo. Len. Field Value +14:08:13 ============================================================================ +14:08:13 [ 1] [ 4] [0200] +14:08:13 [ 2] [ 16] [6688990602752808] +14:08:13 [ 3] [ 6] [010000] +14:08:13 [ 4] [ 12] [000100000000] +14:08:13 [ 7] [ 10] [0320070720] +14:08:13 [ 11] [ 6] [269550] +14:08:13 [ 12] [ 6] [140720] +14:08:13 [ 13] [ 4] [0320] +14:08:13 [ 14] [ 4] [4310] +14:08:13 [ 15] [ 4] [0320] +14:08:13 [ 18] [ 4] [6011] +14:08:13 [ 19] [ 3] [418] +14:08:13 [ 22] [ 3] [021] +14:08:13 [ 25] [ 2] [01] +14:08:13 [ 28] [ 9] [D00002000] +14:08:13 [ 32] [ 6] [180893] +14:08:13 [ 35] [ 37] [6688990602752808=43100061280844500000] +14:08:13 [ 37] [ 12] [507907269550] +14:08:13 [ 41] [ 8] [0201ADD1] +14:08:13 [ 42] [ 15] [999999 ] +14:08:13 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:08:13 [ 49] [ 3] [418] +14:08:13 [ 52] [ 16] [33AE0E2DA08BC735] +14:08:13 ============================================================================ +14:08:13 + + +waiting on router queue for slot.... +14:08:13 Sending to : <0> +14:08:13 ============================================================================ +14:08:13 ============================================================================ +14:08:13 Slot Id : <279> +14:08:13 Transaction Type : RESPONSE +14:08:13 Received From : +14:08:13 ============================================================================ +14:08:13 FNo. Len. Field Value +14:08:13 ============================================================================ +14:08:13 [ 1] [ 4] [0210] +14:08:13 [ 2] [ 16] [6688990602752808] +14:08:13 [ 3] [ 6] [010000] +14:08:13 [ 4] [ 12] [000100000000] +14:08:13 [ 7] [ 10] [0320070720] +14:08:13 [ 11] [ 6] [269550] +14:08:13 [ 12] [ 6] [140720] +14:08:13 [ 13] [ 4] [0320] +14:08:13 [ 15] [ 4] [0320] +14:08:13 [ 18] [ 4] [6011] +14:08:13 [ 19] [ 3] [418] +14:08:13 [ 22] [ 3] [021] +14:08:13 [ 32] [ 6] [180893] +14:08:13 [ 35] [ 37] [6688990602752808=43100061280844500000] +14:08:13 [ 37] [ 12] [507907269550] +14:08:13 [ 39] [ 2] [14] +14:08:13 [ 41] [ 8] [0201ADD1] +14:08:13 [ 49] [ 3] [418] +14:08:13 ============================================================================ +14:08:13 Sending to : +14:08:13 ============================================================================ +14:08:13 + + +waiting on router queue for slot.... +14:08:14 ============================================================================ +14:08:14 Slot Id : <279> +14:08:14 Transaction Type : RESPONSE +14:08:14 Received From : +14:08:14 ============================================================================ +14:08:14 FNo. Len. Field Value +14:08:14 ============================================================================ +14:08:14 [ 1] [ 4] [0210] +14:08:14 [ 2] [ 16] [6688990602752808] +14:08:14 [ 3] [ 6] [010000] +14:08:14 [ 4] [ 12] [000100000000] +14:08:14 [ 7] [ 10] [0320070720] +14:08:14 [ 11] [ 6] [269550] +14:08:14 [ 12] [ 6] [140720] +14:08:14 [ 13] [ 4] [0320] +14:08:14 [ 15] [ 4] [0320] +14:08:14 [ 18] [ 4] [6011] +14:08:14 [ 19] [ 3] [418] +14:08:14 [ 22] [ 3] [021] +14:08:14 [ 32] [ 6] [180893] +14:08:14 [ 35] [ 37] [6688990602752808=43100061280844500000] +14:08:14 [ 37] [ 12] [507907269550] +14:08:14 [ 39] [ 2] [14] +14:08:14 [ 41] [ 8] [0201ADD1] +14:08:14 [ 49] [ 3] [418] +14:08:14 ============================================================================ +14:08:14 Calculate Source COMM Id = 2 +14:08:14 ============================================================================ +14:08:14 + + +waiting on router queue for slot.... +14:08:19 ============================================================================ +14:08:19 Slot Id : <231> +14:08:19 Transaction Type : REQUEST +14:08:19 Received From : +14:08:19 ============================================================================ +14:08:19 FNo. Len. Field Value +14:08:19 ============================================================================ +14:08:19 [ 1] [ 4] [0200] +14:08:19 [ 2] [ 16] [6213543000073972] +14:08:19 [ 3] [ 6] [010000] +14:08:19 [ 4] [ 12] [000100000000] +14:08:19 [ 7] [ 10] [0320070727] +14:08:19 [ 11] [ 6] [269552] +14:08:19 [ 12] [ 6] [140727] +14:08:19 [ 13] [ 4] [0320] +14:08:19 [ 14] [ 4] [4912] +14:08:19 [ 15] [ 4] [0320] +14:08:19 [ 18] [ 4] [6011] +14:08:19 [ 19] [ 3] [418] +14:08:19 [ 22] [ 3] [021] +14:08:19 [ 25] [ 2] [01] +14:08:19 [ 28] [ 9] [D00002000] +14:08:19 [ 32] [ 6] [180893] +14:08:19 [ 35] [ 32] [6213543000073972=491212017397958] +14:08:19 [ 37] [ 12] [507907269552] +14:08:19 [ 41] [ 8] [0301LPBX] +14:08:19 [ 42] [ 15] [999999 ] +14:08:19 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:08:19 [ 49] [ 3] [418] +14:08:19 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:08:19 ============================================================================ +14:08:19 + + +waiting on router queue for slot.... +14:08:19 Sending to : +14:08:19 ============================================================================ +14:08:19 Sending to : +14:08:19 ============================================================================ +14:08:20 ============================================================================ +14:08:20 Slot Id : <231> +14:08:20 Transaction Type : REQUEST +14:08:20 Received From : +14:08:20 ============================================================================ +14:08:20 FNo. Len. Field Value +14:08:20 ============================================================================ +14:08:20 [ 1] [ 4] [0200] +14:08:20 [ 2] [ 16] [6213543000073972] +14:08:20 [ 3] [ 6] [010000] +14:08:20 [ 4] [ 12] [000100000000] +14:08:20 [ 7] [ 10] [0320070727] +14:08:20 [ 11] [ 6] [269552] +14:08:20 [ 12] [ 6] [140727] +14:08:20 [ 13] [ 4] [0320] +14:08:20 [ 14] [ 4] [4912] +14:08:20 [ 15] [ 4] [0320] +14:08:20 [ 18] [ 4] [6011] +14:08:20 [ 19] [ 3] [418] +14:08:20 [ 22] [ 3] [021] +14:08:20 [ 25] [ 2] [01] +14:08:20 [ 28] [ 9] [D00002000] +14:08:20 [ 32] [ 6] [180893] +14:08:20 [ 35] [ 32] [6213543000073972=491212017397958] +14:08:20 [ 37] [ 12] [507907269552] +14:08:20 [ 41] [ 8] [0301LPBX] +14:08:20 [ 42] [ 15] [999999 ] +14:08:20 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:08:20 [ 49] [ 3] [418] +14:08:20 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:08:20 ============================================================================ +14:08:20 + + +waiting on router queue for slot.... +14:08:20 Sending to : +14:08:20 ============================================================================ +14:08:20 ============================================================================ +14:08:20 Slot Id : <231> +14:08:20 Transaction Type : REQUEST +14:08:20 Received From : +14:08:20 ============================================================================ +14:08:20 FNo. Len. Field Value +14:08:20 ============================================================================ +14:08:20 [ 1] [ 4] [0200] +14:08:20 [ 2] [ 16] [6213543000073972] +14:08:20 [ 3] [ 6] [010000] +14:08:20 [ 4] [ 12] [000100000000] +14:08:20 [ 7] [ 10] [0320070727] +14:08:20 [ 11] [ 6] [269552] +14:08:20 [ 12] [ 6] [140727] +14:08:20 [ 13] [ 4] [0320] +14:08:20 [ 14] [ 4] [4912] +14:08:20 [ 15] [ 4] [0320] +14:08:20 [ 18] [ 4] [6011] +14:08:20 [ 19] [ 3] [418] +14:08:20 [ 22] [ 3] [021] +14:08:20 [ 25] [ 2] [01] +14:08:20 [ 28] [ 9] [D00002000] +14:08:20 [ 32] [ 6] [180893] +14:08:20 [ 35] [ 32] [6213543000073972=491212017397958] +14:08:20 [ 37] [ 12] [507907269552] +14:08:20 [ 41] [ 8] [0301LPBX] +14:08:20 [ 42] [ 15] [999999 ] +14:08:20 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:08:20 [ 49] [ 3] [418] +14:08:20 [ 52] [ 16] [E42743FA8A68826A] +14:08:20 ============================================================================ +14:08:20 + + +waiting on router queue for slot.... +14:08:20 Sending to : <0> +14:08:20 ============================================================================ +14:08:20 ============================================================================ +14:08:20 Slot Id : <231> +14:08:20 Transaction Type : RESPONSE +14:08:20 Received From : +14:08:20 ============================================================================ +14:08:20 FNo. Len. Field Value +14:08:20 ============================================================================ +14:08:20 [ 1] [ 4] [0210] +14:08:20 [ 2] [ 16] [6213543000073972] +14:08:20 [ 3] [ 6] [010000] +14:08:20 [ 4] [ 12] [000100000000] +14:08:20 [ 7] [ 10] [0320070727] +14:08:20 [ 11] [ 6] [269552] +14:08:20 [ 12] [ 6] [140727] +14:08:20 [ 13] [ 4] [0320] +14:08:20 [ 15] [ 4] [0320] +14:08:20 [ 18] [ 4] [6011] +14:08:20 [ 19] [ 3] [418] +14:08:20 [ 32] [ 6] [180893] +14:08:20 [ 35] [ 32] [6213543000073972=491212017397958] +14:08:20 [ 37] [ 12] [507907269552] +14:08:20 [ 38] [ 6] [619932] +14:08:20 [ 39] [ 2] [00] +14:08:20 [ 41] [ 8] [0301LPBX] +14:08:20 [ 49] [ 3] [418] +14:08:20 [ 54] [ 40] [0001418C0007568521020002418C000756852102] +14:08:20 ============================================================================ +14:08:20 Sending to : +14:08:20 ============================================================================ +14:08:20 + + +waiting on router queue for slot.... +14:08:22 ============================================================================ +14:08:22 Slot Id : <231> +14:08:22 Transaction Type : RESPONSE +14:08:22 Received From : +14:08:22 ============================================================================ +14:08:22 FNo. Len. Field Value +14:08:22 ============================================================================ +14:08:22 [ 1] [ 4] [0210] +14:08:22 [ 2] [ 16] [6213543000073972] +14:08:22 [ 3] [ 6] [010000] +14:08:22 [ 4] [ 12] [000100000000] +14:08:22 [ 7] [ 10] [0320070727] +14:08:22 [ 11] [ 6] [269552] +14:08:22 [ 12] [ 6] [140727] +14:08:22 [ 13] [ 4] [0320] +14:08:22 [ 15] [ 4] [0320] +14:08:22 [ 18] [ 4] [6011] +14:08:22 [ 19] [ 3] [418] +14:08:22 [ 32] [ 6] [180893] +14:08:22 [ 35] [ 32] [6213543000073972=491212017397958] +14:08:22 [ 37] [ 12] [507907269552] +14:08:22 [ 38] [ 6] [619932] +14:08:22 [ 39] [ 2] [00] +14:08:22 [ 41] [ 8] [0301LPBX] +14:08:22 [ 49] [ 3] [418] +14:08:22 [ 54] [ 40] [0001418C0007568521020002418C000756852102] +14:08:22 ============================================================================ +14:08:22 Calculate Source COMM Id = 2 +14:08:22 ============================================================================ +14:08:22 + + +waiting on router queue for slot.... +14:08:27 ============================================================================ +14:08:27 Slot Id : <273> +14:08:27 Transaction Type : REQUEST +14:08:27 Received From : +14:08:27 ============================================================================ +14:08:27 FNo. Len. Field Value +14:08:27 ============================================================================ +14:08:27 [ 1] [ 4] [0200] +14:08:27 [ 2] [ 16] [6688990103262703] +14:08:27 [ 3] [ 6] [011000] +14:08:27 [ 4] [ 12] [000100000000] +14:08:27 [ 7] [ 10] [0320140822] +14:08:27 [ 11] [ 6] [766095] +14:08:27 [ 12] [ 6] [140822] +14:08:27 [ 13] [ 4] [0320] +14:08:27 [ 15] [ 4] [0320] +14:08:27 [ 18] [ 4] [6011] +14:08:27 [ 22] [ 3] [900] +14:08:27 [ 25] [ 2] [02] +14:08:27 [ 28] [ 9] [D00002000] +14:08:27 [ 32] [ 6] [621354] +14:08:27 [ 35] [ 37] [6688990103262703=42121231270341300000] +14:08:27 [ 37] [ 12] [507903499480] +14:08:27 [ 41] [ 8] [06002200] +14:08:27 [ 42] [ 15] [NATIVE ] +14:08:27 [ 43] [ 40] [Beng Market Beng LAO] +14:08:27 [ 49] [ 3] [418] +14:08:27 [ 52] [ 16] [B9A454DE3BF566EF] +14:08:27 ============================================================================ +14:08:27 + + +waiting on router queue for slot.... +14:08:27 Sending to : +14:08:27 ============================================================================ +14:08:27 Sending to : +14:08:27 ============================================================================ +14:08:27 ============================================================================ +14:08:27 Slot Id : <273> +14:08:27 Transaction Type : REQUEST +14:08:27 Received From : +14:08:27 ============================================================================ +14:08:27 FNo. Len. Field Value +14:08:27 ============================================================================ +14:08:27 [ 1] [ 4] [0200] +14:08:27 [ 2] [ 16] [6688990103262703] +14:08:27 [ 3] [ 6] [011000] +14:08:27 [ 4] [ 12] [000100000000] +14:08:27 [ 7] [ 10] [0320140822] +14:08:27 [ 11] [ 6] [766095] +14:08:27 [ 12] [ 6] [140822] +14:08:27 [ 13] [ 4] [0320] +14:08:27 [ 15] [ 4] [0320] +14:08:27 [ 18] [ 4] [6011] +14:08:27 [ 22] [ 3] [900] +14:08:27 [ 25] [ 2] [02] +14:08:27 [ 28] [ 9] [D00002000] +14:08:27 [ 32] [ 6] [621354] +14:08:27 [ 35] [ 37] [6688990103262703=42121231270341300000] +14:08:27 [ 37] [ 12] [507903499480] +14:08:27 [ 41] [ 8] [06002200] +14:08:27 [ 42] [ 15] [NATIVE ] +14:08:27 [ 43] [ 40] [Beng Market Beng LAO] +14:08:27 [ 49] [ 3] [418] +14:08:27 [ 52] [ 16] [B9A454DE3BF566EF] +14:08:27 ============================================================================ +14:08:27 + + +waiting on router queue for slot.... +14:08:27 Sending to : +14:08:27 ============================================================================ +14:08:27 ============================================================================ +14:08:27 Slot Id : <273> +14:08:27 Transaction Type : REQUEST +14:08:27 Received From : +14:08:27 ============================================================================ +14:08:27 FNo. Len. Field Value +14:08:27 ============================================================================ +14:08:27 [ 1] [ 4] [0200] +14:08:27 [ 2] [ 16] [6688990103262703] +14:08:27 [ 3] [ 6] [011000] +14:08:27 [ 4] [ 12] [000100000000] +14:08:27 [ 7] [ 10] [0320140822] +14:08:27 [ 11] [ 6] [766095] +14:08:27 [ 12] [ 6] [140822] +14:08:27 [ 13] [ 4] [0320] +14:08:27 [ 15] [ 4] [0320] +14:08:27 [ 18] [ 4] [6011] +14:08:27 [ 22] [ 3] [900] +14:08:27 [ 25] [ 2] [02] +14:08:27 [ 28] [ 9] [D00002000] +14:08:27 [ 32] [ 6] [621354] +14:08:27 [ 35] [ 37] [6688990103262703=42121231270341300000] +14:08:27 [ 37] [ 12] [507903499480] +14:08:27 [ 41] [ 8] [06002200] +14:08:27 [ 42] [ 15] [NATIVE ] +14:08:27 [ 43] [ 40] [Beng Market Beng LAO] +14:08:27 [ 49] [ 3] [418] +14:08:27 [ 52] [ 16] [F5F3BF0099688906] +14:08:27 ============================================================================ +14:08:27 + + +waiting on router queue for slot.... +14:08:27 Sending to : <4> +14:08:27 ============================================================================ +14:08:28 ============================================================================ +14:08:28 Slot Id : <273> +14:08:28 Transaction Type : RESPONSE +14:08:28 Received From : +14:08:28 ============================================================================ +14:08:28 FNo. Len. Field Value +14:08:28 ============================================================================ +14:08:28 [ 1] [ 4] [0210] +14:08:28 [ 2] [ 16] [6688990103262703] +14:08:28 [ 3] [ 6] [011000] +14:08:28 [ 4] [ 12] [000100000000] +14:08:28 [ 11] [ 6] [766095] +14:08:28 [ 12] [ 6] [140822] +14:08:28 [ 15] [ 4] [0320] +14:08:28 [ 18] [ 4] [6011] +14:08:28 [ 32] [ 6] [621354] +14:08:28 [ 35] [ 37] [6688990103262703=42121231270341300000] +14:08:28 [ 37] [ 12] [507903499480] +14:08:28 [ 38] [ 6] [111435] +14:08:28 [ 39] [ 2] [00] +14:08:28 [ 41] [ 8] [06002200] +14:08:28 [ 49] [ 3] [418] +14:08:28 [ 54] [ 20] [1002418C000081975245] +14:08:28 ============================================================================ +14:08:28 Sending to : +14:08:28 ============================================================================ +14:08:28 + + +waiting on router queue for slot.... +14:08:30 ============================================================================ +14:08:30 Slot Id : <273> +14:08:30 Transaction Type : RESPONSE +14:08:30 Received From : +14:08:30 ============================================================================ +14:08:30 FNo. Len. Field Value +14:08:30 ============================================================================ +14:08:30 [ 1] [ 4] [0210] +14:08:30 [ 2] [ 16] [6688990103262703] +14:08:30 [ 3] [ 6] [011000] +14:08:30 [ 4] [ 12] [000100000000] +14:08:30 [ 11] [ 6] [766095] +14:08:30 [ 12] [ 6] [140822] +14:08:30 [ 15] [ 4] [0320] +14:08:30 [ 18] [ 4] [6011] +14:08:30 [ 32] [ 6] [621354] +14:08:30 [ 35] [ 37] [6688990103262703=42121231270341300000] +14:08:30 [ 37] [ 12] [507903499480] +14:08:30 [ 38] [ 6] [111435] +14:08:30 [ 39] [ 2] [00] +14:08:30 [ 41] [ 8] [06002200] +14:08:30 [ 49] [ 3] [418] +14:08:30 [ 54] [ 20] [1002418C000081975245] +14:08:30 ============================================================================ +14:08:30 Calculate Source COMM Id = 0 +14:08:30 ============================================================================ +14:08:30 + + +waiting on router queue for slot.... +14:08:38 ============================================================================ +14:08:38 Slot Id : <264> +14:08:38 Transaction Type : REQUEST +14:08:38 Received From : +14:08:38 ============================================================================ +14:08:38 FNo. Len. Field Value +14:08:38 ============================================================================ +14:08:38 [ 1] [ 4] [0800] +14:08:38 [ 7] [ 10] [0320070745] +14:08:38 [ 11] [ 6] [156714] +14:08:38 [ 70] [ 3] [301] +14:08:38 ============================================================================ +14:08:38 + + +waiting on router queue for slot.... +14:08:38 Sending to : +14:08:38 ============================================================================ +14:08:38 ============================================================================ +14:08:38 Slot Id : <264> +14:08:38 Transaction Type : RESPONSE +14:08:38 Received From : +14:08:38 ============================================================================ +14:08:38 FNo. Len. Field Value +14:08:38 ============================================================================ +14:08:38 [ 1] [ 4] [0810] +14:08:38 [ 7] [ 10] [0320070745] +14:08:38 [ 11] [ 6] [156714] +14:08:38 [ 39] [ 2] [00] +14:08:38 [ 70] [ 3] [301] +14:08:38 ============================================================================ +14:08:38 Calculate Source COMM Id = 2 +14:08:38 ============================================================================ +14:08:38 + + +waiting on router queue for slot.... +14:08:54 ============================================================================ +14:08:54 Slot Id : <220> +14:08:54 Transaction Type : REQUEST +14:08:54 Received From : +14:08:54 ============================================================================ +14:08:54 FNo. Len. Field Value +14:08:54 ============================================================================ +14:08:54 [ 1] [ 4] [0800] +14:08:54 [ 7] [ 10] [0320070801] +14:08:54 [ 11] [ 6] [156715] +14:08:54 [ 70] [ 3] [301] +14:08:54 ============================================================================ +14:08:54 + + +waiting on router queue for slot.... +14:08:54 Sending to : +14:08:54 ============================================================================ +14:08:54 ============================================================================ +14:08:54 Slot Id : <220> +14:08:54 Transaction Type : RESPONSE +14:08:54 Received From : +14:08:54 ============================================================================ +14:08:54 FNo. Len. Field Value +14:08:54 ============================================================================ +14:08:54 [ 1] [ 4] [0810] +14:08:54 [ 7] [ 10] [0320070801] +14:08:54 [ 11] [ 6] [156715] +14:08:54 [ 39] [ 2] [00] +14:08:54 [ 70] [ 3] [301] +14:08:54 ============================================================================ +14:08:54 Calculate Source COMM Id = 2 +14:08:54 ============================================================================ +14:08:54 + + +waiting on router queue for slot.... +14:09:00 ============================================================================ +14:09:00 Slot Id : <254> +14:09:00 Transaction Type : REQUEST +14:09:00 Received From : +14:09:00 ============================================================================ +14:09:00 FNo. Len. Field Value +14:09:00 ============================================================================ +14:09:00 [ 1] [ 4] [0800] +14:09:00 [ 2] [ 5] [02531] +14:09:00 [ 3] [ 6] [579148] +14:09:00 [ 7] [ 10] [0320070900] +14:09:00 [ 11] [ 6] [807233] +14:09:00 [ 15] [ 10] [0320070900] +14:09:00 [ 37] [ 11] [57914807233] +14:09:00 [ 70] [ 3] [001] +14:09:00 ============================================================================ +14:09:00 + + +waiting on router queue for slot.... +14:09:00 ============================================================================ +14:09:00 Slot Id : <254> +14:09:00 Transaction Type : RESPONSE +14:09:00 Received From : +14:09:00 ============================================================================ +14:09:00 FNo. Len. Field Value +14:09:00 ============================================================================ +14:09:00 [ 1] [ 4] [0810] +14:09:00 [ 7] [ 10] [0320070900] +14:09:00 [ 11] [ 6] [807233] +14:09:00 [ 15] [ 4] [0320] +14:09:00 [ 37] [ 12] [57914807233] +14:09:00 [ 39] [ 2] [00] +14:09:00 [ 70] [ 3] [001] +14:09:00 ============================================================================ +14:09:00 Sending to : +14:09:00 ============================================================================ +14:09:00 + + +waiting on router queue for slot.... +14:09:01 ============================================================================ +14:09:01 Slot Id : <282> +14:09:01 Transaction Type : REQUEST +14:09:01 Received From : +14:09:01 ============================================================================ +14:09:01 FNo. Len. Field Value +14:09:01 ============================================================================ +14:09:01 [ 1] [ 4] [0200] +14:09:01 [ 2] [ 16] [6688990105014904] +14:09:01 [ 3] [ 6] [010000] +14:09:01 [ 4] [ 12] [000100000000] +14:09:01 [ 7] [ 10] [0320140857] +14:09:01 [ 11] [ 6] [766256] +14:09:01 [ 12] [ 6] [140857] +14:09:01 [ 13] [ 4] [0320] +14:09:01 [ 15] [ 4] [0320] +14:09:01 [ 18] [ 4] [6011] +14:09:01 [ 22] [ 3] [900] +14:09:01 [ 25] [ 2] [02] +14:09:01 [ 28] [ 9] [D00002000] +14:09:01 [ 32] [ 6] [621354] +14:09:01 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:09:01 [ 37] [ 12] [507904635682] +14:09:01 [ 41] [ 8] [17000800] +14:09:01 [ 42] [ 15] [NATIVE ] +14:09:01 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:09:01 [ 49] [ 3] [418] +14:09:01 [ 52] [ 16] [8D48F9BC598F7280] +14:09:01 ============================================================================ +14:09:01 + + +waiting on router queue for slot.... +14:09:01 Sending to : +14:09:01 ============================================================================ +14:09:01 Sending to : +14:09:01 ============================================================================ +14:09:02 ============================================================================ +14:09:02 Slot Id : <282> +14:09:02 Transaction Type : REQUEST +14:09:02 Received From : +14:09:02 ============================================================================ +14:09:02 FNo. Len. Field Value +14:09:02 ============================================================================ +14:09:02 [ 1] [ 4] [0200] +14:09:02 [ 2] [ 16] [6688990105014904] +14:09:02 [ 3] [ 6] [010000] +14:09:02 [ 4] [ 12] [000100000000] +14:09:02 [ 7] [ 10] [0320140857] +14:09:02 [ 11] [ 6] [766256] +14:09:02 [ 12] [ 6] [140857] +14:09:02 [ 13] [ 4] [0320] +14:09:02 [ 15] [ 4] [0320] +14:09:02 [ 18] [ 4] [6011] +14:09:02 [ 22] [ 3] [900] +14:09:02 [ 25] [ 2] [02] +14:09:02 [ 28] [ 9] [D00002000] +14:09:02 [ 32] [ 6] [621354] +14:09:02 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:09:02 [ 37] [ 12] [507904635682] +14:09:02 [ 41] [ 8] [17000800] +14:09:02 [ 42] [ 15] [NATIVE ] +14:09:02 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:09:02 [ 49] [ 3] [418] +14:09:02 [ 52] [ 16] [8D48F9BC598F7280] +14:09:02 ============================================================================ +14:09:02 + + +waiting on router queue for slot.... +14:09:02 Sending to : +14:09:02 ============================================================================ +14:09:02 ============================================================================ +14:09:02 Slot Id : <282> +14:09:02 Transaction Type : REQUEST +14:09:02 Received From : +14:09:02 ============================================================================ +14:09:02 FNo. Len. Field Value +14:09:02 ============================================================================ +14:09:02 [ 1] [ 4] [0200] +14:09:02 [ 2] [ 16] [6688990105014904] +14:09:02 [ 3] [ 6] [010000] +14:09:02 [ 4] [ 12] [000100000000] +14:09:02 [ 7] [ 10] [0320140857] +14:09:02 [ 11] [ 6] [766256] +14:09:02 [ 12] [ 6] [140857] +14:09:02 [ 13] [ 4] [0320] +14:09:02 [ 15] [ 4] [0320] +14:09:02 [ 18] [ 4] [6011] +14:09:02 [ 22] [ 3] [900] +14:09:02 [ 25] [ 2] [02] +14:09:02 [ 28] [ 9] [D00002000] +14:09:02 [ 32] [ 6] [621354] +14:09:02 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:09:02 [ 37] [ 12] [507904635682] +14:09:02 [ 41] [ 8] [17000800] +14:09:02 [ 42] [ 15] [NATIVE ] +14:09:02 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:09:02 [ 49] [ 3] [418] +14:09:02 [ 52] [ 16] [883C480C8C0C895A] +14:09:02 ============================================================================ +14:09:02 + + +waiting on router queue for slot.... +14:09:02 Sending to : <4> +14:09:02 ============================================================================ +14:09:03 ============================================================================ +14:09:03 Slot Id : <282> +14:09:03 Transaction Type : RESPONSE +14:09:03 Received From : +14:09:03 ============================================================================ +14:09:03 FNo. Len. Field Value +14:09:03 ============================================================================ +14:09:03 [ 1] [ 4] [0210] +14:09:03 [ 2] [ 16] [6688990105014904] +14:09:03 [ 3] [ 6] [010000] +14:09:03 [ 4] [ 12] [000100000000] +14:09:03 [ 11] [ 6] [766256] +14:09:03 [ 12] [ 6] [140857] +14:09:03 [ 15] [ 4] [0320] +14:09:03 [ 18] [ 4] [6011] +14:09:03 [ 32] [ 6] [621354] +14:09:03 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:09:03 [ 37] [ 12] [507904635682] +14:09:03 [ 38] [ 6] [686480] +14:09:03 [ 39] [ 2] [00] +14:09:03 [ 41] [ 8] [17000800] +14:09:03 [ 49] [ 3] [418] +14:09:03 [ 54] [ 20] [0002418C000235890816] +14:09:03 ============================================================================ +14:09:03 Sending to : +14:09:03 ============================================================================ +14:09:03 + + +waiting on router queue for slot.... +14:09:04 ============================================================================ +14:09:04 Slot Id : <282> +14:09:04 Transaction Type : RESPONSE +14:09:04 Received From : +14:09:04 ============================================================================ +14:09:04 FNo. Len. Field Value +14:09:04 ============================================================================ +14:09:04 [ 1] [ 4] [0210] +14:09:04 [ 2] [ 16] [6688990105014904] +14:09:04 [ 3] [ 6] [010000] +14:09:04 [ 4] [ 12] [000100000000] +14:09:04 [ 11] [ 6] [766256] +14:09:04 [ 12] [ 6] [140857] +14:09:04 [ 15] [ 4] [0320] +14:09:04 [ 18] [ 4] [6011] +14:09:04 [ 32] [ 6] [621354] +14:09:04 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:09:04 [ 37] [ 12] [507904635682] +14:09:04 [ 38] [ 6] [686480] +14:09:04 [ 39] [ 2] [00] +14:09:04 [ 41] [ 8] [17000800] +14:09:04 [ 49] [ 3] [418] +14:09:04 [ 54] [ 20] [0002418C000235890816] +14:09:04 ============================================================================ +14:09:04 Calculate Source COMM Id = 0 +14:09:04 ============================================================================ +14:09:04 + + +waiting on router queue for slot.... +14:09:04 ============================================================================ +14:09:04 Slot Id : <239> +14:09:04 Transaction Type : REQUEST +14:09:04 Received From : +14:09:04 ============================================================================ +14:09:04 FNo. Len. Field Value +14:09:04 ============================================================================ +14:09:04 [ 1] [ 4] [0800] +14:09:04 [ 7] [ 10] [0320070812] +14:09:04 [ 11] [ 6] [156716] +14:09:04 [ 70] [ 3] [301] +14:09:04 ============================================================================ +14:09:04 + + +waiting on router queue for slot.... +14:09:04 Sending to : +14:09:04 ============================================================================ +14:09:04 ============================================================================ +14:09:04 Slot Id : <239> +14:09:04 Transaction Type : RESPONSE +14:09:04 Received From : +14:09:04 ============================================================================ +14:09:04 FNo. Len. Field Value +14:09:04 ============================================================================ +14:09:04 [ 1] [ 4] [0810] +14:09:04 [ 7] [ 10] [0320070812] +14:09:04 [ 11] [ 6] [156716] +14:09:04 [ 39] [ 2] [00] +14:09:04 [ 70] [ 3] [301] +14:09:04 ============================================================================ +14:09:04 Calculate Source COMM Id = 2 +14:09:04 ============================================================================ +14:09:04 + + +waiting on router queue for slot.... +14:09:08 ============================================================================ +14:09:08 Slot Id : <276> +14:09:08 Transaction Type : REQUEST +14:09:08 Received From : +14:09:08 ============================================================================ +14:09:08 FNo. Len. Field Value +14:09:08 ============================================================================ +14:09:08 [ 1] [ 4] [0200] +14:09:08 [ 2] [ 16] [6213543000073972] +14:09:08 [ 3] [ 6] [010000] +14:09:08 [ 4] [ 12] [000200000000] +14:09:08 [ 7] [ 10] [0320070815] +14:09:08 [ 11] [ 6] [269556] +14:09:08 [ 12] [ 6] [140815] +14:09:08 [ 13] [ 4] [0320] +14:09:08 [ 14] [ 4] [4912] +14:09:08 [ 15] [ 4] [0320] +14:09:08 [ 18] [ 4] [6011] +14:09:08 [ 19] [ 3] [418] +14:09:08 [ 22] [ 3] [021] +14:09:08 [ 25] [ 2] [01] +14:09:08 [ 28] [ 9] [D00002000] +14:09:08 [ 32] [ 6] [180893] +14:09:08 [ 35] [ 32] [6213543000073972=491212017397958] +14:09:08 [ 37] [ 12] [507907269556] +14:09:08 [ 41] [ 8] [0301LPBX] +14:09:08 [ 42] [ 15] [999999 ] +14:09:08 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:09:08 [ 49] [ 3] [418] +14:09:08 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:09:08 ============================================================================ +14:09:08 + + +waiting on router queue for slot.... +14:09:08 Sending to : +14:09:08 ============================================================================ +14:09:08 Sending to : +14:09:08 ============================================================================ +14:09:08 ============================================================================ +14:09:08 Slot Id : <276> +14:09:08 Transaction Type : REQUEST +14:09:08 Received From : +14:09:08 ============================================================================ +14:09:08 FNo. Len. Field Value +14:09:08 ============================================================================ +14:09:08 [ 1] [ 4] [0200] +14:09:08 [ 2] [ 16] [6213543000073972] +14:09:08 [ 3] [ 6] [010000] +14:09:08 [ 4] [ 12] [000200000000] +14:09:08 [ 7] [ 10] [0320070815] +14:09:08 [ 11] [ 6] [269556] +14:09:08 [ 12] [ 6] [140815] +14:09:08 [ 13] [ 4] [0320] +14:09:08 [ 14] [ 4] [4912] +14:09:08 [ 15] [ 4] [0320] +14:09:08 [ 18] [ 4] [6011] +14:09:08 [ 19] [ 3] [418] +14:09:08 [ 22] [ 3] [021] +14:09:08 [ 25] [ 2] [01] +14:09:08 [ 28] [ 9] [D00002000] +14:09:08 [ 32] [ 6] [180893] +14:09:08 [ 35] [ 32] [6213543000073972=491212017397958] +14:09:08 [ 37] [ 12] [507907269556] +14:09:08 [ 41] [ 8] [0301LPBX] +14:09:08 [ 42] [ 15] [999999 ] +14:09:08 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:09:08 [ 49] [ 3] [418] +14:09:08 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:09:08 ============================================================================ +14:09:08 + + +waiting on router queue for slot.... +14:09:08 Sending to : +14:09:08 ============================================================================ +14:09:08 ============================================================================ +14:09:08 Slot Id : <276> +14:09:08 Transaction Type : REQUEST +14:09:08 Received From : +14:09:08 ============================================================================ +14:09:08 FNo. Len. Field Value +14:09:08 ============================================================================ +14:09:08 [ 1] [ 4] [0200] +14:09:08 [ 2] [ 16] [6213543000073972] +14:09:08 [ 3] [ 6] [010000] +14:09:08 [ 4] [ 12] [000200000000] +14:09:08 [ 7] [ 10] [0320070815] +14:09:08 [ 11] [ 6] [269556] +14:09:08 [ 12] [ 6] [140815] +14:09:08 [ 13] [ 4] [0320] +14:09:08 [ 14] [ 4] [4912] +14:09:08 [ 15] [ 4] [0320] +14:09:08 [ 18] [ 4] [6011] +14:09:08 [ 19] [ 3] [418] +14:09:08 [ 22] [ 3] [021] +14:09:08 [ 25] [ 2] [01] +14:09:08 [ 28] [ 9] [D00002000] +14:09:08 [ 32] [ 6] [180893] +14:09:08 [ 35] [ 32] [6213543000073972=491212017397958] +14:09:08 [ 37] [ 12] [507907269556] +14:09:08 [ 41] [ 8] [0301LPBX] +14:09:08 [ 42] [ 15] [999999 ] +14:09:08 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:09:08 [ 49] [ 3] [418] +14:09:08 [ 52] [ 16] [E42743FA8A68826A] +14:09:08 ============================================================================ +14:09:08 + + +waiting on router queue for slot.... +14:09:08 Sending to : <0> +14:09:08 ============================================================================ +14:09:08 ============================================================================ +14:09:08 Slot Id : <276> +14:09:08 Transaction Type : RESPONSE +14:09:08 Received From : +14:09:08 ============================================================================ +14:09:08 FNo. Len. Field Value +14:09:08 ============================================================================ +14:09:08 [ 1] [ 4] [0210] +14:09:08 [ 2] [ 16] [6213543000073972] +14:09:08 [ 3] [ 6] [010000] +14:09:08 [ 4] [ 12] [000200000000] +14:09:08 [ 7] [ 10] [0320070815] +14:09:08 [ 11] [ 6] [269556] +14:09:08 [ 12] [ 6] [140815] +14:09:08 [ 13] [ 4] [0320] +14:09:08 [ 15] [ 4] [0320] +14:09:08 [ 18] [ 4] [6011] +14:09:08 [ 19] [ 3] [418] +14:09:08 [ 22] [ 3] [021] +14:09:08 [ 32] [ 6] [180893] +14:09:08 [ 35] [ 32] [6213543000073972=491212017397958] +14:09:08 [ 37] [ 12] [507907269556] +14:09:08 [ 39] [ 2] [61] +14:09:08 [ 41] [ 8] [0301LPBX] +14:09:08 [ 49] [ 3] [418] +14:09:08 ============================================================================ +14:09:08 Sending to : +14:09:08 ============================================================================ +14:09:08 + + +waiting on router queue for slot.... +14:09:08 ============================================================================ +14:09:08 Slot Id : <272> +14:09:08 Transaction Type : REQUEST +14:09:08 Received From : +14:09:08 ============================================================================ +14:09:08 FNo. Len. Field Value +14:09:08 ============================================================================ +14:09:08 [ 1] [ 4] [0800] +14:09:08 [ 7] [ 10] [0320212057] +14:09:08 [ 11] [ 6] [142057] +14:09:08 [ 37] [ 12] [57914142057] +14:09:08 [ 70] [ 3] [301] +14:09:08 ============================================================================ +14:09:08 + + +waiting on router queue for slot.... +14:09:08 Sending to : +14:09:08 ============================================================================ +14:09:08 ============================================================================ +14:09:08 Slot Id : <272> +14:09:08 Transaction Type : RESPONSE +14:09:08 Received From : +14:09:08 ============================================================================ +14:09:08 FNo. Len. Field Value +14:09:08 ============================================================================ +14:09:08 [ 1] [ 4] [0810] +14:09:08 [ 7] [ 10] [0320212057] +14:09:08 [ 11] [ 6] [142057] +14:09:08 [ 37] [ 12] [579141420570] +14:09:08 [ 39] [ 2] [00] +14:09:08 [ 70] [ 3] [810] +14:09:08 ============================================================================ +14:09:08 Calculate Source COMM Id = 6 +14:09:08 ============================================================================ +14:09:08 + + +waiting on router queue for slot.... +14:09:09 ============================================================================ +14:09:09 Slot Id : <252> +14:09:09 Transaction Type : REQUEST +14:09:09 Received From : +14:09:09 ============================================================================ +14:09:09 FNo. Len. Field Value +14:09:09 ============================================================================ +14:09:09 [ 1] [ 4] [0200] +14:09:09 [ 2] [ 16] [6688990104116403] +14:09:09 [ 3] [ 6] [011000] +14:09:09 [ 4] [ 12] [000005000000] +14:09:09 [ 7] [ 10] [0320140904] +14:09:09 [ 11] [ 6] [766278] +14:09:09 [ 12] [ 6] [140904] +14:09:09 [ 13] [ 4] [0320] +14:09:09 [ 15] [ 4] [0320] +14:09:09 [ 18] [ 4] [6011] +14:09:09 [ 22] [ 3] [900] +14:09:09 [ 25] [ 2] [02] +14:09:09 [ 28] [ 9] [D00002000] +14:09:09 [ 32] [ 6] [621354] +14:09:09 [ 35] [ 37] [6688990104116403=43021231640361600000] +14:09:09 [ 37] [ 12] [507904789437] +14:09:09 [ 41] [ 8] [07001400] +14:09:09 [ 42] [ 15] [NATIVE ] +14:09:09 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +14:09:09 [ 49] [ 3] [418] +14:09:09 [ 52] [ 16] [CBC59E748B82D4B7] +14:09:09 ============================================================================ +14:09:09 + + +waiting on router queue for slot.... +14:09:09 Sending to : +14:09:09 ============================================================================ +14:09:09 Sending to : +14:09:09 ============================================================================ +14:09:09 ============================================================================ +14:09:09 Slot Id : <252> +14:09:09 Transaction Type : REQUEST +14:09:09 Received From : +14:09:09 ============================================================================ +14:09:09 FNo. Len. Field Value +14:09:09 ============================================================================ +14:09:09 [ 1] [ 4] [0200] +14:09:09 [ 2] [ 16] [6688990104116403] +14:09:09 [ 3] [ 6] [011000] +14:09:09 [ 4] [ 12] [000005000000] +14:09:09 [ 7] [ 10] [0320140904] +14:09:09 [ 11] [ 6] [766278] +14:09:09 [ 12] [ 6] [140904] +14:09:09 [ 13] [ 4] [0320] +14:09:09 [ 15] [ 4] [0320] +14:09:09 [ 18] [ 4] [6011] +14:09:09 [ 22] [ 3] [900] +14:09:09 [ 25] [ 2] [02] +14:09:09 [ 28] [ 9] [D00002000] +14:09:09 [ 32] [ 6] [621354] +14:09:09 [ 35] [ 37] [6688990104116403=43021231640361600000] +14:09:09 [ 37] [ 12] [507904789437] +14:09:09 [ 41] [ 8] [07001400] +14:09:09 [ 42] [ 15] [NATIVE ] +14:09:09 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +14:09:09 [ 49] [ 3] [418] +14:09:09 [ 52] [ 16] [CBC59E748B82D4B7] +14:09:09 ============================================================================ +14:09:09 + + +waiting on router queue for slot.... +14:09:09 Sending to : +14:09:09 ============================================================================ +14:09:09 ============================================================================ +14:09:09 Slot Id : <252> +14:09:09 Transaction Type : REQUEST +14:09:09 Received From : +14:09:09 ============================================================================ +14:09:09 FNo. Len. Field Value +14:09:09 ============================================================================ +14:09:09 [ 1] [ 4] [0200] +14:09:09 [ 2] [ 16] [6688990104116403] +14:09:09 [ 3] [ 6] [011000] +14:09:09 [ 4] [ 12] [000005000000] +14:09:09 [ 7] [ 10] [0320140904] +14:09:09 [ 11] [ 6] [766278] +14:09:09 [ 12] [ 6] [140904] +14:09:09 [ 13] [ 4] [0320] +14:09:09 [ 15] [ 4] [0320] +14:09:09 [ 18] [ 4] [6011] +14:09:09 [ 22] [ 3] [900] +14:09:09 [ 25] [ 2] [02] +14:09:09 [ 28] [ 9] [D00002000] +14:09:09 [ 32] [ 6] [621354] +14:09:09 [ 35] [ 37] [6688990104116403=43021231640361600000] +14:09:09 [ 37] [ 12] [507904789437] +14:09:09 [ 41] [ 8] [07001400] +14:09:09 [ 42] [ 15] [NATIVE ] +14:09:09 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +14:09:09 [ 49] [ 3] [418] +14:09:09 [ 52] [ 16] [9B52A72DC7992A9E] +14:09:09 ============================================================================ +14:09:09 + + +waiting on router queue for slot.... +14:09:09 Sending to : <4> +14:09:09 ============================================================================ +14:09:09 ============================================================================ +14:09:09 Slot Id : <276> +14:09:09 Transaction Type : RESPONSE +14:09:09 Received From : +14:09:09 ============================================================================ +14:09:09 FNo. Len. Field Value +14:09:09 ============================================================================ +14:09:09 [ 1] [ 4] [0210] +14:09:09 [ 2] [ 16] [6213543000073972] +14:09:09 [ 3] [ 6] [010000] +14:09:09 [ 4] [ 12] [000200000000] +14:09:09 [ 7] [ 10] [0320070815] +14:09:09 [ 11] [ 6] [269556] +14:09:09 [ 12] [ 6] [140815] +14:09:09 [ 13] [ 4] [0320] +14:09:09 [ 15] [ 4] [0320] +14:09:09 [ 18] [ 4] [6011] +14:09:09 [ 19] [ 3] [418] +14:09:09 [ 22] [ 3] [021] +14:09:09 [ 32] [ 6] [180893] +14:09:09 [ 35] [ 32] [6213543000073972=491212017397958] +14:09:09 [ 37] [ 12] [507907269556] +14:09:09 [ 39] [ 2] [61] +14:09:09 [ 41] [ 8] [0301LPBX] +14:09:09 [ 49] [ 3] [418] +14:09:09 ============================================================================ +14:09:09 Calculate Source COMM Id = 2 +14:09:09 ============================================================================ +14:09:09 + + +waiting on router queue for slot.... +14:09:10 ============================================================================ +14:09:10 Slot Id : <252> +14:09:10 Transaction Type : RESPONSE +14:09:10 Received From : +14:09:10 ============================================================================ +14:09:10 FNo. Len. Field Value +14:09:10 ============================================================================ +14:09:10 [ 1] [ 4] [0210] +14:09:10 [ 2] [ 16] [6688990104116403] +14:09:10 [ 3] [ 6] [011000] +14:09:10 [ 4] [ 12] [000005000000] +14:09:10 [ 11] [ 6] [766278] +14:09:10 [ 12] [ 6] [140904] +14:09:10 [ 15] [ 4] [0320] +14:09:10 [ 18] [ 4] [6011] +14:09:10 [ 32] [ 6] [621354] +14:09:10 [ 35] [ 37] [6688990104116403=43021231640361600000] +14:09:10 [ 37] [ 12] [507904789437] +14:09:10 [ 38] [ 6] [897836] +14:09:10 [ 39] [ 2] [00] +14:09:10 [ 41] [ 8] [07001400] +14:09:10 [ 49] [ 3] [418] +14:09:10 [ 54] [ 20] [1002418C000114922741] +14:09:10 ============================================================================ +14:09:10 Sending to : +14:09:10 ============================================================================ +14:09:10 + + +waiting on router queue for slot.... +14:09:11 ============================================================================ +14:09:11 Slot Id : <252> +14:09:11 Transaction Type : RESPONSE +14:09:11 Received From : +14:09:11 ============================================================================ +14:09:11 FNo. Len. Field Value +14:09:11 ============================================================================ +14:09:11 [ 1] [ 4] [0210] +14:09:11 [ 2] [ 16] [6688990104116403] +14:09:11 [ 3] [ 6] [011000] +14:09:11 [ 4] [ 12] [000005000000] +14:09:11 [ 11] [ 6] [766278] +14:09:11 [ 12] [ 6] [140904] +14:09:11 [ 15] [ 4] [0320] +14:09:11 [ 18] [ 4] [6011] +14:09:11 [ 32] [ 6] [621354] +14:09:11 [ 35] [ 37] [6688990104116403=43021231640361600000] +14:09:11 [ 37] [ 12] [507904789437] +14:09:11 [ 38] [ 6] [897836] +14:09:11 [ 39] [ 2] [00] +14:09:11 [ 41] [ 8] [07001400] +14:09:11 [ 49] [ 3] [418] +14:09:11 [ 54] [ 20] [1002418C000114922741] +14:09:11 ============================================================================ +14:09:11 Calculate Source COMM Id = 0 +14:09:11 ============================================================================ +14:09:11 + + +waiting on router queue for slot.... +14:09:16 ============================================================================ +14:09:16 Slot Id : <266> +14:09:16 Transaction Type : REQUEST +14:09:16 Received From : +14:09:16 ============================================================================ +14:09:16 FNo. Len. Field Value +14:09:16 ============================================================================ +14:09:16 [ 1] [ 4] [0200] +14:09:16 [ 2] [ 16] [6213545000150742] +14:09:16 [ 3] [ 6] [010000] +14:09:16 [ 4] [ 12] [000100000000] +14:09:16 [ 7] [ 10] [0320140706] +14:09:16 [ 11] [ 6] [948066] +14:09:16 [ 12] [ 6] [140706] +14:09:16 [ 13] [ 4] [0320] +14:09:16 [ 15] [ 4] [0320] +14:09:16 [ 18] [ 4] [6011] +14:09:16 [ 19] [ 3] [418] +14:09:16 [ 22] [ 3] [021] +14:09:16 [ 25] [ 2] [01] +14:09:16 [ 28] [ 9] [D00002000] +14:09:16 [ 32] [ 6] [668899] +14:09:16 [ 35] [ 32] [6213545000150742=491212015074875] +14:09:16 [ 37] [ 12] [507901489325] +14:09:16 [ 41] [ 8] [03515001] +14:09:16 [ 42] [ 15] [APT ] +14:09:16 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +14:09:16 [ 49] [ 3] [418] +14:09:16 [ 52] [ 16] [A8A0BA49D49E91AC] +14:09:16 ============================================================================ +14:09:16 + + +waiting on router queue for slot.... +14:09:16 Sending to : +14:09:16 ============================================================================ +14:09:16 Sending to : +14:09:16 ============================================================================ +14:09:16 ============================================================================ +14:09:16 Slot Id : <266> +14:09:16 Transaction Type : REQUEST +14:09:16 Received From : +14:09:16 ============================================================================ +14:09:16 FNo. Len. Field Value +14:09:16 ============================================================================ +14:09:16 [ 1] [ 4] [0200] +14:09:16 [ 2] [ 16] [6213545000150742] +14:09:16 [ 3] [ 6] [010000] +14:09:16 [ 4] [ 12] [000100000000] +14:09:16 [ 7] [ 10] [0320140706] +14:09:16 [ 11] [ 6] [948066] +14:09:16 [ 12] [ 6] [140706] +14:09:16 [ 13] [ 4] [0320] +14:09:16 [ 15] [ 4] [0320] +14:09:16 [ 18] [ 4] [6011] +14:09:16 [ 19] [ 3] [418] +14:09:16 [ 22] [ 3] [021] +14:09:16 [ 25] [ 2] [01] +14:09:16 [ 28] [ 9] [D00002000] +14:09:16 [ 32] [ 6] [668899] +14:09:16 [ 35] [ 32] [6213545000150742=491212015074875] +14:09:16 [ 37] [ 12] [507901489325] +14:09:16 [ 41] [ 8] [03515001] +14:09:16 [ 42] [ 15] [APT ] +14:09:16 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +14:09:16 [ 49] [ 3] [418] +14:09:16 [ 52] [ 16] [A8A0BA49D49E91AC] +14:09:16 ============================================================================ +14:09:16 + + +waiting on router queue for slot.... +14:09:16 Sending to : +14:09:16 ============================================================================ +14:09:16 ============================================================================ +14:09:16 Slot Id : <266> +14:09:16 Transaction Type : REQUEST +14:09:16 Received From : +14:09:16 ============================================================================ +14:09:16 FNo. Len. Field Value +14:09:16 ============================================================================ +14:09:16 [ 1] [ 4] [0200] +14:09:16 [ 2] [ 16] [6213545000150742] +14:09:16 [ 3] [ 6] [010000] +14:09:16 [ 4] [ 12] [000100000000] +14:09:16 [ 7] [ 10] [0320140706] +14:09:16 [ 11] [ 6] [948066] +14:09:16 [ 12] [ 6] [140706] +14:09:16 [ 13] [ 4] [0320] +14:09:16 [ 15] [ 4] [0320] +14:09:16 [ 18] [ 4] [6011] +14:09:16 [ 19] [ 3] [418] +14:09:16 [ 22] [ 3] [021] +14:09:16 [ 25] [ 2] [01] +14:09:16 [ 28] [ 9] [D00002000] +14:09:16 [ 32] [ 6] [668899] +14:09:16 [ 35] [ 32] [6213545000150742=491212015074875] +14:09:16 [ 37] [ 12] [507901489325] +14:09:16 [ 41] [ 8] [03515001] +14:09:16 [ 42] [ 15] [APT ] +14:09:16 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +14:09:16 [ 49] [ 3] [418] +14:09:16 [ 52] [ 16] [70D450C116C26E39] +14:09:16 ============================================================================ +14:09:16 + + +waiting on router queue for slot.... +14:09:16 Sending to : <0> +14:09:16 ============================================================================ +14:09:17 ============================================================================ +14:09:17 Slot Id : <266> +14:09:17 Transaction Type : RESPONSE +14:09:17 Received From : +14:09:17 ============================================================================ +14:09:17 FNo. Len. Field Value +14:09:17 ============================================================================ +14:09:17 [ 1] [ 4] [0210] +14:09:17 [ 2] [ 16] [6213545000150742] +14:09:17 [ 3] [ 6] [010000] +14:09:17 [ 4] [ 12] [000100000000] +14:09:17 [ 7] [ 10] [0320140706] +14:09:17 [ 11] [ 6] [948066] +14:09:17 [ 12] [ 6] [140706] +14:09:17 [ 13] [ 4] [0320] +14:09:17 [ 15] [ 4] [0320] +14:09:17 [ 18] [ 4] [6011] +14:09:17 [ 19] [ 3] [418] +14:09:17 [ 32] [ 6] [668899] +14:09:17 [ 35] [ 32] [6213545000150742=491212015074875] +14:09:17 [ 37] [ 12] [507901489325] +14:09:17 [ 38] [ 6] [838841] +14:09:17 [ 39] [ 2] [00] +14:09:17 [ 41] [ 8] [03515001] +14:09:17 [ 49] [ 3] [418] +14:09:17 [ 54] [ 40] [0001418C0005769531590002418C000576953159] +14:09:17 ============================================================================ +14:09:17 Sending to : +14:09:17 ============================================================================ +14:09:17 + + +waiting on router queue for slot.... +14:09:18 ============================================================================ +14:09:18 Slot Id : <266> +14:09:18 Transaction Type : RESPONSE +14:09:18 Received From : +14:09:18 ============================================================================ +14:09:18 FNo. Len. Field Value +14:09:18 ============================================================================ +14:09:18 [ 1] [ 4] [0210] +14:09:18 [ 2] [ 16] [6213545000150742] +14:09:18 [ 3] [ 6] [010000] +14:09:18 [ 4] [ 12] [000100000000] +14:09:18 [ 7] [ 10] [0320140706] +14:09:18 [ 11] [ 6] [948066] +14:09:18 [ 12] [ 6] [140706] +14:09:18 [ 13] [ 4] [0320] +14:09:18 [ 15] [ 4] [0320] +14:09:18 [ 18] [ 4] [6011] +14:09:18 [ 19] [ 3] [418] +14:09:18 [ 32] [ 6] [668899] +14:09:18 [ 35] [ 32] [6213545000150742=491212015074875] +14:09:18 [ 37] [ 12] [507901489325] +14:09:18 [ 38] [ 6] [838841] +14:09:18 [ 39] [ 2] [00] +14:09:18 [ 41] [ 8] [03515001] +14:09:18 [ 49] [ 3] [418] +14:09:18 [ 54] [ 40] [0001418C0005769531590002418C000576953159] +14:09:18 ============================================================================ +14:09:18 Calculate Source COMM Id = 4 +14:09:18 ============================================================================ +14:09:18 + + +waiting on router queue for slot.... +14:09:18 ============================================================================ +14:09:18 Slot Id : <241> +14:09:18 Transaction Type : REQUEST +14:09:18 Received From : +14:09:18 ============================================================================ +14:09:18 FNo. Len. Field Value +14:09:18 ============================================================================ +14:09:18 [ 1] [ 4] [0200] +14:09:18 [ 2] [ 16] [6213545000785828] +14:09:18 [ 3] [ 6] [010000] +14:09:18 [ 4] [ 12] [000050000000] +14:09:18 [ 7] [ 10] [0320070824] +14:09:18 [ 11] [ 6] [269558] +14:09:18 [ 12] [ 6] [140824] +14:09:18 [ 13] [ 4] [0320] +14:09:18 [ 14] [ 4] [4912] +14:09:18 [ 15] [ 4] [0320] +14:09:18 [ 18] [ 4] [6011] +14:09:18 [ 19] [ 3] [418] +14:09:18 [ 22] [ 3] [021] +14:09:18 [ 25] [ 2] [01] +14:09:18 [ 28] [ 9] [D00002000] +14:09:18 [ 32] [ 6] [180893] +14:09:18 [ 35] [ 32] [6213545000785828=491212018582196] +14:09:18 [ 37] [ 12] [507907269558] +14:09:18 [ 41] [ 8] [0525XYBT] +14:09:18 [ 42] [ 15] [999999 ] +14:09:18 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:09:18 [ 49] [ 3] [418] +14:09:18 [ 52] [ 16] [AE4CEC4FA8B748E2] +14:09:18 ============================================================================ +14:09:18 + + +waiting on router queue for slot.... +14:09:18 Sending to : +14:09:18 ============================================================================ +14:09:18 Sending to : +14:09:18 ============================================================================ +14:09:19 ============================================================================ +14:09:19 Slot Id : <241> +14:09:19 Transaction Type : REQUEST +14:09:19 Received From : +14:09:19 ============================================================================ +14:09:19 FNo. Len. Field Value +14:09:19 ============================================================================ +14:09:19 [ 1] [ 4] [0200] +14:09:19 [ 2] [ 16] [6213545000785828] +14:09:19 [ 3] [ 6] [010000] +14:09:19 [ 4] [ 12] [000050000000] +14:09:19 [ 7] [ 10] [0320070824] +14:09:19 [ 11] [ 6] [269558] +14:09:19 [ 12] [ 6] [140824] +14:09:19 [ 13] [ 4] [0320] +14:09:19 [ 14] [ 4] [4912] +14:09:19 [ 15] [ 4] [0320] +14:09:19 [ 18] [ 4] [6011] +14:09:19 [ 19] [ 3] [418] +14:09:19 [ 22] [ 3] [021] +14:09:19 [ 25] [ 2] [01] +14:09:19 [ 28] [ 9] [D00002000] +14:09:19 [ 32] [ 6] [180893] +14:09:19 [ 35] [ 32] [6213545000785828=491212018582196] +14:09:19 [ 37] [ 12] [507907269558] +14:09:19 [ 41] [ 8] [0525XYBT] +14:09:19 [ 42] [ 15] [999999 ] +14:09:19 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:09:19 [ 49] [ 3] [418] +14:09:19 [ 52] [ 16] [AE4CEC4FA8B748E2] +14:09:19 ============================================================================ +14:09:19 + + +waiting on router queue for slot.... +14:09:19 Sending to : +14:09:19 ============================================================================ +14:09:19 ============================================================================ +14:09:19 Slot Id : <241> +14:09:19 Transaction Type : REQUEST +14:09:19 Received From : +14:09:19 ============================================================================ +14:09:19 FNo. Len. Field Value +14:09:19 ============================================================================ +14:09:19 [ 1] [ 4] [0200] +14:09:19 [ 2] [ 16] [6213545000785828] +14:09:19 [ 3] [ 6] [010000] +14:09:19 [ 4] [ 12] [000050000000] +14:09:19 [ 7] [ 10] [0320070824] +14:09:19 [ 11] [ 6] [269558] +14:09:19 [ 12] [ 6] [140824] +14:09:19 [ 13] [ 4] [0320] +14:09:19 [ 14] [ 4] [4912] +14:09:19 [ 15] [ 4] [0320] +14:09:19 [ 18] [ 4] [6011] +14:09:19 [ 19] [ 3] [418] +14:09:19 [ 22] [ 3] [021] +14:09:19 [ 25] [ 2] [01] +14:09:19 [ 28] [ 9] [D00002000] +14:09:19 [ 32] [ 6] [180893] +14:09:19 [ 35] [ 32] [6213545000785828=491212018582196] +14:09:19 [ 37] [ 12] [507907269558] +14:09:19 [ 41] [ 8] [0525XYBT] +14:09:19 [ 42] [ 15] [999999 ] +14:09:19 [ 43] [ 40] [ATM BORTEN LOCATION, Botene, Lao People ] +14:09:19 [ 49] [ 3] [418] +14:09:19 [ 52] [ 16] [2B74FF1B261E45CB] +14:09:19 ============================================================================ +14:09:19 + + +waiting on router queue for slot.... +14:09:19 Sending to : <0> +14:09:19 ============================================================================ +14:09:19 ============================================================================ +14:09:19 Slot Id : <241> +14:09:19 Transaction Type : RESPONSE +14:09:19 Received From : +14:09:19 ============================================================================ +14:09:19 FNo. Len. Field Value +14:09:19 ============================================================================ +14:09:19 [ 1] [ 4] [0210] +14:09:19 [ 2] [ 16] [6213545000785828] +14:09:19 [ 3] [ 6] [010000] +14:09:19 [ 4] [ 12] [000050000000] +14:09:19 [ 7] [ 10] [0320070824] +14:09:19 [ 11] [ 6] [269558] +14:09:19 [ 12] [ 6] [140824] +14:09:19 [ 13] [ 4] [0320] +14:09:19 [ 15] [ 4] [0320] +14:09:19 [ 18] [ 4] [6011] +14:09:19 [ 19] [ 3] [418] +14:09:19 [ 32] [ 6] [180893] +14:09:19 [ 35] [ 32] [6213545000785828=491212018582196] +14:09:19 [ 37] [ 12] [507907269558] +14:09:19 [ 38] [ 6] [522107] +14:09:19 [ 39] [ 2] [00] +14:09:19 [ 41] [ 8] [0525XYBT] +14:09:19 [ 49] [ 3] [418] +14:09:19 [ 54] [ 40] [0001418C0000481834080002418C000048183408] +14:09:19 ============================================================================ +14:09:19 Sending to : +14:09:19 ============================================================================ +14:09:19 + + +waiting on router queue for slot.... +14:09:21 ============================================================================ +14:09:21 Slot Id : <241> +14:09:21 Transaction Type : RESPONSE +14:09:21 Received From : +14:09:21 ============================================================================ +14:09:21 FNo. Len. Field Value +14:09:21 ============================================================================ +14:09:21 [ 1] [ 4] [0210] +14:09:21 [ 2] [ 16] [6213545000785828] +14:09:21 [ 3] [ 6] [010000] +14:09:21 [ 4] [ 12] [000050000000] +14:09:21 [ 7] [ 10] [0320070824] +14:09:21 [ 11] [ 6] [269558] +14:09:21 [ 12] [ 6] [140824] +14:09:21 [ 13] [ 4] [0320] +14:09:21 [ 15] [ 4] [0320] +14:09:21 [ 18] [ 4] [6011] +14:09:21 [ 19] [ 3] [418] +14:09:21 [ 32] [ 6] [180893] +14:09:21 [ 35] [ 32] [6213545000785828=491212018582196] +14:09:21 [ 37] [ 12] [507907269558] +14:09:21 [ 38] [ 6] [522107] +14:09:21 [ 39] [ 2] [00] +14:09:21 [ 41] [ 8] [0525XYBT] +14:09:21 [ 49] [ 3] [418] +14:09:21 [ 54] [ 40] [0001418C0000481834080002418C000048183408] +14:09:21 ============================================================================ +14:09:21 Calculate Source COMM Id = 2 +14:09:21 ============================================================================ +14:09:21 + + +waiting on router queue for slot.... +14:09:21 ============================================================================ +14:09:21 Slot Id : <280> +14:09:21 Transaction Type : REQUEST +14:09:21 Received From : +14:09:21 ============================================================================ +14:09:21 FNo. Len. Field Value +14:09:21 ============================================================================ +14:09:21 [ 1] [ 4] [0800] +14:09:21 [ 7] [ 10] [0320070828] +14:09:21 [ 11] [ 6] [156717] +14:09:21 [ 70] [ 3] [301] +14:09:21 ============================================================================ +14:09:21 + + +waiting on router queue for slot.... +14:09:21 Sending to : +14:09:21 ============================================================================ +14:09:21 ============================================================================ +14:09:21 Slot Id : <280> +14:09:21 Transaction Type : RESPONSE +14:09:21 Received From : +14:09:21 ============================================================================ +14:09:21 FNo. Len. Field Value +14:09:21 ============================================================================ +14:09:21 [ 1] [ 4] [0810] +14:09:21 [ 7] [ 10] [0320070828] +14:09:21 [ 11] [ 6] [156717] +14:09:21 [ 39] [ 2] [00] +14:09:21 [ 70] [ 3] [301] +14:09:21 ============================================================================ +14:09:21 Calculate Source COMM Id = 2 +14:09:21 ============================================================================ +14:09:21 + + +waiting on router queue for slot.... +14:09:34 ============================================================================ +14:09:34 Slot Id : <258> +14:09:34 Transaction Type : REQUEST +14:09:34 Received From : +14:09:34 ============================================================================ +14:09:34 FNo. Len. Field Value +14:09:34 ============================================================================ +14:09:34 [ 1] [ 4] [0200] +14:09:34 [ 2] [ 16] [6213543000073972] +14:09:34 [ 3] [ 6] [010000] +14:09:34 [ 4] [ 12] [000100000000] +14:09:34 [ 7] [ 10] [0320070841] +14:09:34 [ 11] [ 6] [269561] +14:09:34 [ 12] [ 6] [140841] +14:09:34 [ 13] [ 4] [0320] +14:09:34 [ 14] [ 4] [4912] +14:09:34 [ 15] [ 4] [0320] +14:09:34 [ 18] [ 4] [6011] +14:09:34 [ 19] [ 3] [418] +14:09:34 [ 22] [ 3] [021] +14:09:34 [ 25] [ 2] [01] +14:09:34 [ 28] [ 9] [D00002000] +14:09:34 [ 32] [ 6] [180893] +14:09:34 [ 35] [ 32] [6213543000073972=491212017397958] +14:09:34 [ 37] [ 12] [507907269561] +14:09:34 [ 41] [ 8] [0301LPBX] +14:09:34 [ 42] [ 15] [999999 ] +14:09:34 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:09:34 [ 49] [ 3] [418] +14:09:34 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:09:34 ============================================================================ +14:09:34 + + +waiting on router queue for slot.... +14:09:34 Sending to : +14:09:34 ============================================================================ +14:09:34 Sending to : +14:09:34 ============================================================================ +14:09:35 ============================================================================ +14:09:35 Slot Id : <258> +14:09:35 Transaction Type : REQUEST +14:09:35 Received From : +14:09:35 ============================================================================ +14:09:35 FNo. Len. Field Value +14:09:35 ============================================================================ +14:09:35 [ 1] [ 4] [0200] +14:09:35 [ 2] [ 16] [6213543000073972] +14:09:35 [ 3] [ 6] [010000] +14:09:35 [ 4] [ 12] [000100000000] +14:09:35 [ 7] [ 10] [0320070841] +14:09:35 [ 11] [ 6] [269561] +14:09:35 [ 12] [ 6] [140841] +14:09:35 [ 13] [ 4] [0320] +14:09:35 [ 14] [ 4] [4912] +14:09:35 [ 15] [ 4] [0320] +14:09:35 [ 18] [ 4] [6011] +14:09:35 [ 19] [ 3] [418] +14:09:35 [ 22] [ 3] [021] +14:09:35 [ 25] [ 2] [01] +14:09:35 [ 28] [ 9] [D00002000] +14:09:35 [ 32] [ 6] [180893] +14:09:35 [ 35] [ 32] [6213543000073972=491212017397958] +14:09:35 [ 37] [ 12] [507907269561] +14:09:35 [ 41] [ 8] [0301LPBX] +14:09:35 [ 42] [ 15] [999999 ] +14:09:35 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:09:35 [ 49] [ 3] [418] +14:09:35 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:09:35 ============================================================================ +14:09:35 + + +waiting on router queue for slot.... +14:09:35 Sending to : +14:09:35 ============================================================================ +14:09:35 ============================================================================ +14:09:35 Slot Id : <258> +14:09:35 Transaction Type : REQUEST +14:09:35 Received From : +14:09:35 ============================================================================ +14:09:35 FNo. Len. Field Value +14:09:35 ============================================================================ +14:09:35 [ 1] [ 4] [0200] +14:09:35 [ 2] [ 16] [6213543000073972] +14:09:35 [ 3] [ 6] [010000] +14:09:35 [ 4] [ 12] [000100000000] +14:09:35 [ 7] [ 10] [0320070841] +14:09:35 [ 11] [ 6] [269561] +14:09:35 [ 12] [ 6] [140841] +14:09:35 [ 13] [ 4] [0320] +14:09:35 [ 14] [ 4] [4912] +14:09:35 [ 15] [ 4] [0320] +14:09:35 [ 18] [ 4] [6011] +14:09:35 [ 19] [ 3] [418] +14:09:35 [ 22] [ 3] [021] +14:09:35 [ 25] [ 2] [01] +14:09:35 [ 28] [ 9] [D00002000] +14:09:35 [ 32] [ 6] [180893] +14:09:35 [ 35] [ 32] [6213543000073972=491212017397958] +14:09:35 [ 37] [ 12] [507907269561] +14:09:35 [ 41] [ 8] [0301LPBX] +14:09:35 [ 42] [ 15] [999999 ] +14:09:35 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:09:35 [ 49] [ 3] [418] +14:09:35 [ 52] [ 16] [E42743FA8A68826A] +14:09:35 ============================================================================ +14:09:35 + + +waiting on router queue for slot.... +14:09:35 Sending to : <0> +14:09:35 ============================================================================ +14:09:35 ============================================================================ +14:09:35 Slot Id : <258> +14:09:35 Transaction Type : RESPONSE +14:09:35 Received From : +14:09:35 ============================================================================ +14:09:35 FNo. Len. Field Value +14:09:35 ============================================================================ +14:09:35 [ 1] [ 4] [0210] +14:09:35 [ 2] [ 16] [6213543000073972] +14:09:35 [ 3] [ 6] [010000] +14:09:35 [ 4] [ 12] [000100000000] +14:09:35 [ 7] [ 10] [0320070841] +14:09:35 [ 11] [ 6] [269561] +14:09:35 [ 12] [ 6] [140841] +14:09:35 [ 13] [ 4] [0320] +14:09:35 [ 15] [ 4] [0320] +14:09:35 [ 18] [ 4] [6011] +14:09:35 [ 19] [ 3] [418] +14:09:35 [ 32] [ 6] [180893] +14:09:35 [ 35] [ 32] [6213543000073972=491212017397958] +14:09:35 [ 37] [ 12] [507907269561] +14:09:35 [ 38] [ 6] [515996] +14:09:35 [ 39] [ 2] [00] +14:09:35 [ 41] [ 8] [0301LPBX] +14:09:35 [ 49] [ 3] [418] +14:09:35 [ 54] [ 40] [0001418C0006566521020002418C000656652102] +14:09:35 ============================================================================ +14:09:35 Sending to : +14:09:35 ============================================================================ +14:09:35 + + +waiting on router queue for slot.... +14:09:37 ============================================================================ +14:09:37 Slot Id : <258> +14:09:37 Transaction Type : RESPONSE +14:09:37 Received From : +14:09:37 ============================================================================ +14:09:37 FNo. Len. Field Value +14:09:37 ============================================================================ +14:09:37 [ 1] [ 4] [0210] +14:09:37 [ 2] [ 16] [6213543000073972] +14:09:37 [ 3] [ 6] [010000] +14:09:37 [ 4] [ 12] [000100000000] +14:09:37 [ 7] [ 10] [0320070841] +14:09:37 [ 11] [ 6] [269561] +14:09:37 [ 12] [ 6] [140841] +14:09:37 [ 13] [ 4] [0320] +14:09:37 [ 15] [ 4] [0320] +14:09:37 [ 18] [ 4] [6011] +14:09:37 [ 19] [ 3] [418] +14:09:37 [ 32] [ 6] [180893] +14:09:37 [ 35] [ 32] [6213543000073972=491212017397958] +14:09:37 [ 37] [ 12] [507907269561] +14:09:37 [ 38] [ 6] [515996] +14:09:37 [ 39] [ 2] [00] +14:09:37 [ 41] [ 8] [0301LPBX] +14:09:37 [ 49] [ 3] [418] +14:09:37 [ 54] [ 40] [0001418C0006566521020002418C000656652102] +14:09:37 ============================================================================ +14:09:37 Calculate Source COMM Id = 2 +14:09:37 ============================================================================ +14:09:37 + + +waiting on router queue for slot.... +14:09:37 ============================================================================ +14:09:37 Slot Id : <284> +14:09:37 Transaction Type : REQUEST +14:09:37 Received From : +14:09:37 ============================================================================ +14:09:37 FNo. Len. Field Value +14:09:37 ============================================================================ +14:09:37 [ 1] [ 4] [0800] +14:09:37 [ 7] [ 10] [0320070844] +14:09:37 [ 11] [ 6] [156718] +14:09:37 [ 70] [ 3] [301] +14:09:37 ============================================================================ +14:09:37 + + +waiting on router queue for slot.... +14:09:37 Sending to : +14:09:37 ============================================================================ +14:09:37 ============================================================================ +14:09:37 Slot Id : <284> +14:09:37 Transaction Type : RESPONSE +14:09:37 Received From : +14:09:37 ============================================================================ +14:09:37 FNo. Len. Field Value +14:09:37 ============================================================================ +14:09:37 [ 1] [ 4] [0810] +14:09:37 [ 7] [ 10] [0320070844] +14:09:37 [ 11] [ 6] [156718] +14:09:37 [ 39] [ 2] [00] +14:09:37 [ 70] [ 3] [301] +14:09:37 ============================================================================ +14:09:37 Calculate Source COMM Id = 2 +14:09:37 ============================================================================ +14:09:37 + + +waiting on router queue for slot.... +14:09:43 ============================================================================ +14:09:43 Slot Id : <219> +14:09:43 Transaction Type : REQUEST +14:09:43 Received From : +14:09:43 ============================================================================ +14:09:43 FNo. Len. Field Value +14:09:43 ============================================================================ +14:09:43 [ 1] [ 4] [0200] +14:09:43 [ 2] [ 16] [6223692026478265] +14:09:43 [ 3] [ 6] [311000] +14:09:43 [ 4] [ 12] [000000000000] +14:09:43 [ 7] [ 10] [0320141730] +14:09:43 [ 11] [ 6] [240850] +14:09:43 [ 12] [ 6] [141730] +14:09:43 [ 13] [ 4] [0320] +14:09:43 [ 14] [ 4] [4912] +14:09:43 [ 15] [ 4] [0320] +14:09:43 [ 18] [ 4] [6011] +14:09:43 [ 22] [ 3] [900] +14:09:43 [ 25] [ 2] [02] +14:09:43 [ 28] [ 9] [000000000] +14:09:43 [ 32] [ 6] [220699] +14:09:43 [ 35] [ 34] [6223692026478265=49121205790001409] +14:09:43 [ 37] [ 12] [507900410443] +14:09:43 [ 41] [ 8] [08000300] +14:09:43 [ 42] [ 15] [APTRA ] +14:09:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:09:43 [ 49] [ 3] [418] +14:09:43 [ 52] [ 16] [24AFED3B74637255] +14:09:43 ============================================================================ +14:09:43 + + +waiting on router queue for slot.... +14:09:43 Sending to : +14:09:43 ============================================================================ +14:09:43 Sending to : +14:09:43 ============================================================================ +14:09:43 ============================================================================ +14:09:43 Slot Id : <219> +14:09:43 Transaction Type : REQUEST +14:09:43 Received From : +14:09:43 ============================================================================ +14:09:43 FNo. Len. Field Value +14:09:43 ============================================================================ +14:09:43 [ 1] [ 4] [0200] +14:09:43 [ 2] [ 16] [6223692026478265] +14:09:43 [ 3] [ 6] [311000] +14:09:43 [ 4] [ 12] [000000000000] +14:09:43 [ 7] [ 10] [0320141730] +14:09:43 [ 11] [ 6] [240850] +14:09:43 [ 12] [ 6] [141730] +14:09:43 [ 13] [ 4] [0320] +14:09:43 [ 14] [ 4] [4912] +14:09:43 [ 15] [ 4] [0320] +14:09:43 [ 18] [ 4] [6011] +14:09:43 [ 22] [ 3] [900] +14:09:43 [ 25] [ 2] [02] +14:09:43 [ 28] [ 9] [000000000] +14:09:43 [ 32] [ 6] [220699] +14:09:43 [ 35] [ 34] [6223692026478265=49121205790001409] +14:09:43 [ 37] [ 12] [507900410443] +14:09:43 [ 41] [ 8] [08000300] +14:09:43 [ 42] [ 15] [APTRA ] +14:09:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:09:43 [ 49] [ 3] [418] +14:09:43 [ 52] [ 16] [24AFED3B74637255] +14:09:43 ============================================================================ +14:09:43 + + +waiting on router queue for slot.... +14:09:43 Sending to : +14:09:43 ============================================================================ +14:09:43 ============================================================================ +14:09:43 Slot Id : <219> +14:09:43 Transaction Type : REQUEST +14:09:43 Received From : +14:09:43 ============================================================================ +14:09:43 FNo. Len. Field Value +14:09:43 ============================================================================ +14:09:43 [ 1] [ 4] [0200] +14:09:43 [ 2] [ 16] [6223692026478265] +14:09:43 [ 3] [ 6] [311000] +14:09:43 [ 4] [ 12] [000000000000] +14:09:43 [ 7] [ 10] [0320141730] +14:09:43 [ 11] [ 6] [240850] +14:09:43 [ 12] [ 6] [141730] +14:09:43 [ 13] [ 4] [0320] +14:09:43 [ 14] [ 4] [4912] +14:09:43 [ 15] [ 4] [0320] +14:09:43 [ 18] [ 4] [6011] +14:09:43 [ 22] [ 3] [900] +14:09:43 [ 25] [ 2] [02] +14:09:43 [ 28] [ 9] [000000000] +14:09:43 [ 32] [ 6] [220699] +14:09:43 [ 35] [ 34] [6223692026478265=49121205790001409] +14:09:43 [ 37] [ 12] [507900410443] +14:09:43 [ 41] [ 8] [08000300] +14:09:43 [ 42] [ 15] [APTRA ] +14:09:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:09:43 [ 49] [ 3] [418] +14:09:43 [ 52] [ 16] [E0C6496F5B0CFA3B] +14:09:43 ============================================================================ +14:09:43 + + +waiting on router queue for slot.... +14:09:43 Sending to : <0> +14:09:43 ============================================================================ +14:09:44 ============================================================================ +14:09:44 Slot Id : <219> +14:09:44 Transaction Type : RESPONSE +14:09:44 Received From : +14:09:44 ============================================================================ +14:09:44 FNo. Len. Field Value +14:09:44 ============================================================================ +14:09:44 [ 1] [ 4] [0210] +14:09:44 [ 2] [ 16] [6223692026478265] +14:09:44 [ 3] [ 6] [311000] +14:09:44 [ 4] [ 12] [000000000000] +14:09:44 [ 7] [ 10] [0320141730] +14:09:44 [ 11] [ 6] [240850] +14:09:44 [ 12] [ 6] [141730] +14:09:44 [ 13] [ 4] [0320] +14:09:44 [ 15] [ 4] [0320] +14:09:44 [ 18] [ 4] [6011] +14:09:44 [ 22] [ 3] [900] +14:09:44 [ 32] [ 6] [220699] +14:09:44 [ 35] [ 34] [6223692026478265=49121205790001409] +14:09:44 [ 37] [ 12] [507900410443] +14:09:44 [ 38] [ 6] [240850] +14:09:44 [ 39] [ 2] [62] +14:09:44 [ 41] [ 8] [08000300] +14:09:44 [ 49] [ 3] [418] +14:09:44 [ 54] [ 0] [] +14:09:44 ============================================================================ +14:09:44 Sending to : +14:09:44 ============================================================================ +14:09:44 + + +waiting on router queue for slot.... +14:09:45 ============================================================================ +14:09:45 Slot Id : <287> +14:09:45 Transaction Type : REQUEST +14:09:45 Received From : +14:09:45 ============================================================================ +14:09:45 FNo. Len. Field Value +14:09:45 ============================================================================ +14:09:45 [ 1] [ 4] [0200] +14:09:45 [ 2] [ 16] [6213543000165091] +14:09:45 [ 3] [ 6] [302000] +14:09:45 [ 4] [ 12] [000000000000] +14:09:45 [ 7] [ 10] [0320140735] +14:09:45 [ 11] [ 6] [948077] +14:09:45 [ 12] [ 6] [140735] +14:09:45 [ 13] [ 4] [0320] +14:09:45 [ 15] [ 4] [0320] +14:09:45 [ 18] [ 4] [6011] +14:09:45 [ 19] [ 3] [418] +14:09:45 [ 22] [ 3] [021] +14:09:45 [ 25] [ 2] [01] +14:09:45 [ 28] [ 9] [D00000000] +14:09:45 [ 32] [ 6] [668899] +14:09:45 [ 35] [ 32] [6213543000165091=491212016509130] +14:09:45 [ 37] [ 12] [507902565280] +14:09:45 [ 41] [ 8] [03001014] +14:09:45 [ 42] [ 15] [APT ] +14:09:45 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +14:09:45 [ 49] [ 3] [418] +14:09:45 [ 52] [ 16] [3DD8989FFC321145] +14:09:45 ============================================================================ +14:09:45 + + +waiting on router queue for slot.... +14:09:45 Sending to : +14:09:45 ============================================================================ +14:09:45 Sending to : +14:09:45 ============================================================================ +14:09:45 ============================================================================ +14:09:45 Slot Id : <219> +14:09:45 Transaction Type : RESPONSE +14:09:45 Received From : +14:09:45 ============================================================================ +14:09:45 FNo. Len. Field Value +14:09:45 ============================================================================ +14:09:45 [ 1] [ 4] [0210] +14:09:45 [ 2] [ 16] [6223692026478265] +14:09:45 [ 3] [ 6] [311000] +14:09:45 [ 4] [ 12] [000000000000] +14:09:45 [ 7] [ 10] [0320141730] +14:09:45 [ 11] [ 6] [240850] +14:09:45 [ 12] [ 6] [141730] +14:09:45 [ 13] [ 4] [0320] +14:09:45 [ 15] [ 4] [0320] +14:09:45 [ 18] [ 4] [6011] +14:09:45 [ 22] [ 3] [900] +14:09:45 [ 32] [ 6] [220699] +14:09:45 [ 35] [ 34] [6223692026478265=49121205790001409] +14:09:45 [ 37] [ 12] [507900410443] +14:09:45 [ 38] [ 6] [240850] +14:09:45 [ 39] [ 2] [62] +14:09:45 [ 41] [ 8] [08000300] +14:09:45 [ 49] [ 3] [418] +14:09:45 [ 54] [ 0] [] +14:09:45 ============================================================================ +14:09:45 Calculate Source COMM Id = 1 +14:09:45 ============================================================================ +14:09:45 + + +waiting on router queue for slot.... +14:09:45 ============================================================================ +14:09:45 Slot Id : <287> +14:09:45 Transaction Type : REQUEST +14:09:45 Received From : +14:09:45 ============================================================================ +14:09:45 FNo. Len. Field Value +14:09:45 ============================================================================ +14:09:45 [ 1] [ 4] [0200] +14:09:45 [ 2] [ 16] [6213543000165091] +14:09:45 [ 3] [ 6] [302000] +14:09:45 [ 4] [ 12] [000000000000] +14:09:45 [ 7] [ 10] [0320140735] +14:09:45 [ 11] [ 6] [948077] +14:09:45 [ 12] [ 6] [140735] +14:09:45 [ 13] [ 4] [0320] +14:09:45 [ 15] [ 4] [0320] +14:09:45 [ 18] [ 4] [6011] +14:09:45 [ 19] [ 3] [418] +14:09:45 [ 22] [ 3] [021] +14:09:45 [ 25] [ 2] [01] +14:09:45 [ 28] [ 9] [D00000000] +14:09:45 [ 32] [ 6] [668899] +14:09:45 [ 35] [ 32] [6213543000165091=491212016509130] +14:09:45 [ 37] [ 12] [507902565280] +14:09:45 [ 41] [ 8] [03001014] +14:09:45 [ 42] [ 15] [APT ] +14:09:45 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +14:09:45 [ 49] [ 3] [418] +14:09:45 [ 52] [ 16] [3DD8989FFC321145] +14:09:45 ============================================================================ +14:09:45 + + +waiting on router queue for slot.... +14:09:45 Sending to : +14:09:45 ============================================================================ +14:09:45 ============================================================================ +14:09:45 Slot Id : <287> +14:09:45 Transaction Type : REQUEST +14:09:45 Received From : +14:09:45 ============================================================================ +14:09:45 FNo. Len. Field Value +14:09:45 ============================================================================ +14:09:45 [ 1] [ 4] [0200] +14:09:45 [ 2] [ 16] [6213543000165091] +14:09:45 [ 3] [ 6] [302000] +14:09:45 [ 4] [ 12] [000000000000] +14:09:45 [ 7] [ 10] [0320140735] +14:09:45 [ 11] [ 6] [948077] +14:09:45 [ 12] [ 6] [140735] +14:09:45 [ 13] [ 4] [0320] +14:09:45 [ 15] [ 4] [0320] +14:09:45 [ 18] [ 4] [6011] +14:09:45 [ 19] [ 3] [418] +14:09:45 [ 22] [ 3] [021] +14:09:45 [ 25] [ 2] [01] +14:09:45 [ 28] [ 9] [D00000000] +14:09:45 [ 32] [ 6] [668899] +14:09:45 [ 35] [ 32] [6213543000165091=491212016509130] +14:09:45 [ 37] [ 12] [507902565280] +14:09:45 [ 41] [ 8] [03001014] +14:09:45 [ 42] [ 15] [APT ] +14:09:45 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +14:09:45 [ 49] [ 3] [418] +14:09:45 [ 52] [ 16] [210F84CF27F6F046] +14:09:45 ============================================================================ +14:09:45 + + +waiting on router queue for slot.... +14:09:45 Sending to : <0> +14:09:45 ============================================================================ +14:09:45 ============================================================================ +14:09:45 Slot Id : <287> +14:09:45 Transaction Type : RESPONSE +14:09:45 Received From : +14:09:45 ============================================================================ +14:09:45 FNo. Len. Field Value +14:09:45 ============================================================================ +14:09:45 [ 1] [ 4] [0210] +14:09:45 [ 2] [ 16] [6213543000165091] +14:09:45 [ 3] [ 6] [302000] +14:09:45 [ 4] [ 12] [000000000000] +14:09:45 [ 7] [ 10] [0320140735] +14:09:45 [ 11] [ 6] [948077] +14:09:45 [ 12] [ 6] [140735] +14:09:45 [ 13] [ 4] [0320] +14:09:45 [ 15] [ 4] [0320] +14:09:45 [ 18] [ 4] [6011] +14:09:45 [ 19] [ 3] [418] +14:09:45 [ 32] [ 6] [668899] +14:09:45 [ 35] [ 32] [6213543000165091=491212016509130] +14:09:45 [ 37] [ 12] [507902565280] +14:09:45 [ 38] [ 6] [983464] +14:09:45 [ 39] [ 2] [00] +14:09:45 [ 41] [ 8] [03001014] +14:09:45 [ 49] [ 3] [418] +14:09:45 [ 54] [ 40] [2001418C0000556452922002418C000055645292] +14:09:45 ============================================================================ +14:09:45 Sending to : +14:09:45 ============================================================================ +14:09:45 + + +waiting on router queue for slot.... +14:09:47 ============================================================================ +14:09:47 Slot Id : <287> +14:09:47 Transaction Type : RESPONSE +14:09:47 Received From : +14:09:47 ============================================================================ +14:09:47 FNo. Len. Field Value +14:09:47 ============================================================================ +14:09:47 [ 1] [ 4] [0210] +14:09:47 [ 2] [ 16] [6213543000165091] +14:09:47 [ 3] [ 6] [302000] +14:09:47 [ 4] [ 12] [000000000000] +14:09:47 [ 7] [ 10] [0320140735] +14:09:47 [ 11] [ 6] [948077] +14:09:47 [ 12] [ 6] [140735] +14:09:47 [ 13] [ 4] [0320] +14:09:47 [ 15] [ 4] [0320] +14:09:47 [ 18] [ 4] [6011] +14:09:47 [ 19] [ 3] [418] +14:09:47 [ 32] [ 6] [668899] +14:09:47 [ 35] [ 32] [6213543000165091=491212016509130] +14:09:47 [ 37] [ 12] [507902565280] +14:09:47 [ 38] [ 6] [983464] +14:09:47 [ 39] [ 2] [00] +14:09:47 [ 41] [ 8] [03001014] +14:09:47 [ 49] [ 3] [418] +14:09:47 [ 54] [ 40] [2001418C0000556452922002418C000055645292] +14:09:47 ============================================================================ +14:09:47 Calculate Source COMM Id = 4 +14:09:47 ============================================================================ +14:09:47 + + +waiting on router queue for slot.... +14:09:47 ============================================================================ +14:09:47 Slot Id : <224> +14:09:47 Transaction Type : REQUEST +14:09:47 Received From : +14:09:47 ============================================================================ +14:09:47 FNo. Len. Field Value +14:09:47 ============================================================================ +14:09:47 [ 1] [ 4] [0800] +14:09:47 [ 7] [ 10] [0320070855] +14:09:47 [ 11] [ 6] [156719] +14:09:47 [ 70] [ 3] [301] +14:09:47 ============================================================================ +14:09:47 + + +waiting on router queue for slot.... +14:09:47 Sending to : +14:09:47 ============================================================================ +14:09:47 ============================================================================ +14:09:47 Slot Id : <224> +14:09:47 Transaction Type : RESPONSE +14:09:47 Received From : +14:09:47 ============================================================================ +14:09:47 FNo. Len. Field Value +14:09:47 ============================================================================ +14:09:47 [ 1] [ 4] [0810] +14:09:47 [ 7] [ 10] [0320070855] +14:09:47 [ 11] [ 6] [156719] +14:09:47 [ 39] [ 2] [00] +14:09:47 [ 70] [ 3] [301] +14:09:47 ============================================================================ +14:09:47 Calculate Source COMM Id = 2 +14:09:47 ============================================================================ +14:09:47 + + +waiting on router queue for slot.... +14:09:55 ============================================================================ +14:09:55 Slot Id : <277> +14:09:55 Transaction Type : REQUEST +14:09:55 Received From : +14:09:55 ============================================================================ +14:09:55 FNo. Len. Field Value +14:09:55 ============================================================================ +14:09:55 [ 1] [ 4] [0800] +14:09:55 [ 7] [ 10] [0320071742] +14:09:55 [ 11] [ 6] [053530] +14:09:55 [ 37] [ 12] [57914053530] +14:09:55 [ 70] [ 3] [301] +14:09:55 ============================================================================ +14:09:55 + + +waiting on router queue for slot.... +14:09:55 Sending to : +14:09:55 ============================================================================ +14:09:55 ============================================================================ +14:09:55 Slot Id : <277> +14:09:55 Transaction Type : RESPONSE +14:09:55 Received From : +14:09:55 ============================================================================ +14:09:55 FNo. Len. Field Value +14:09:55 ============================================================================ +14:09:55 [ 1] [ 4] [0810] +14:09:55 [ 7] [ 10] [0320071742] +14:09:55 [ 11] [ 6] [053530] +14:09:55 [ 37] [ 12] [579140535300] +14:09:55 [ 39] [ 2] [00] +14:09:55 [ 70] [ 3] [810] +14:09:55 ============================================================================ +14:09:55 Calculate Source COMM Id = 1 +14:09:55 ============================================================================ +14:09:55 + + +waiting on router queue for slot.... +14:09:59 ============================================================================ +14:09:59 Slot Id : <290> +14:09:59 Transaction Type : REQUEST +14:09:59 Received From : +14:09:59 ============================================================================ +14:09:59 FNo. Len. Field Value +14:09:59 ============================================================================ +14:09:59 [ 1] [ 4] [0800] +14:09:59 [ 7] [ 10] [0320070906] +14:09:59 [ 11] [ 6] [156720] +14:09:59 [ 70] [ 3] [301] +14:09:59 ============================================================================ +14:09:59 + + +waiting on router queue for slot.... +14:09:59 Sending to : +14:09:59 ============================================================================ +14:09:59 ============================================================================ +14:09:59 Slot Id : <290> +14:09:59 Transaction Type : RESPONSE +14:09:59 Received From : +14:09:59 ============================================================================ +14:09:59 FNo. Len. Field Value +14:09:59 ============================================================================ +14:09:59 [ 1] [ 4] [0810] +14:09:59 [ 7] [ 10] [0320070906] +14:09:59 [ 11] [ 6] [156720] +14:09:59 [ 39] [ 2] [00] +14:09:59 [ 70] [ 3] [301] +14:09:59 ============================================================================ +14:09:59 Calculate Source COMM Id = 2 +14:09:59 ============================================================================ +14:09:59 + + +waiting on router queue for slot.... +14:10:02 ============================================================================ +14:10:02 Slot Id : <267> +14:10:02 Transaction Type : REQUEST +14:10:02 Received From : +14:10:02 ============================================================================ +14:10:02 FNo. Len. Field Value +14:10:02 ============================================================================ +14:10:02 [ 1] [ 4] [0800] +14:10:02 [ 2] [ 5] [02531] +14:10:02 [ 3] [ 6] [579148] +14:10:02 [ 7] [ 10] [0320071002] +14:10:02 [ 11] [ 6] [807234] +14:10:02 [ 15] [ 10] [0320071002] +14:10:02 [ 37] [ 11] [57914807234] +14:10:02 [ 70] [ 3] [001] +14:10:02 ============================================================================ +14:10:02 + + +waiting on router queue for slot.... +14:10:02 ============================================================================ +14:10:02 Slot Id : <267> +14:10:02 Transaction Type : RESPONSE +14:10:02 Received From : +14:10:02 ============================================================================ +14:10:02 FNo. Len. Field Value +14:10:02 ============================================================================ +14:10:02 [ 1] [ 4] [0810] +14:10:02 [ 7] [ 10] [0320071002] +14:10:02 [ 11] [ 6] [807234] +14:10:02 [ 15] [ 4] [0320] +14:10:02 [ 37] [ 12] [57914807234] +14:10:02 [ 39] [ 2] [00] +14:10:02 [ 70] [ 3] [001] +14:10:02 ============================================================================ +14:10:02 Sending to : +14:10:02 ============================================================================ +14:10:02 + + +waiting on router queue for slot.... +14:10:10 ============================================================================ +14:10:10 Slot Id : <294> +14:10:10 Transaction Type : REQUEST +14:10:10 Received From : +14:10:10 ============================================================================ +14:10:10 FNo. Len. Field Value +14:10:10 ============================================================================ +14:10:10 [ 1] [ 4] [0800] +14:10:10 [ 7] [ 10] [0320070918] +14:10:10 [ 11] [ 6] [156721] +14:10:10 [ 70] [ 3] [301] +14:10:10 ============================================================================ +14:10:10 + + +waiting on router queue for slot.... +14:10:10 Sending to : +14:10:10 ============================================================================ +14:10:10 ============================================================================ +14:10:10 Slot Id : <294> +14:10:10 Transaction Type : RESPONSE +14:10:10 Received From : +14:10:10 ============================================================================ +14:10:10 FNo. Len. Field Value +14:10:10 ============================================================================ +14:10:10 [ 1] [ 4] [0810] +14:10:10 [ 7] [ 10] [0320070918] +14:10:10 [ 11] [ 6] [156721] +14:10:10 [ 39] [ 2] [00] +14:10:10 [ 70] [ 3] [301] +14:10:10 ============================================================================ +14:10:10 Calculate Source COMM Id = 2 +14:10:10 ============================================================================ +14:10:10 + + +waiting on router queue for slot.... +14:10:13 ============================================================================ +14:10:13 Slot Id : <271> +14:10:13 Transaction Type : REQUEST +14:10:13 Received From : +14:10:13 ============================================================================ +14:10:13 FNo. Len. Field Value +14:10:13 ============================================================================ +14:10:13 [ 1] [ 4] [0800] +14:10:13 [ 7] [ 10] [0320212202] +14:10:13 [ 11] [ 6] [142202] +14:10:13 [ 37] [ 12] [57914142202] +14:10:13 [ 70] [ 3] [301] +14:10:13 ============================================================================ +14:10:13 + + +waiting on router queue for slot.... +14:10:13 Sending to : +14:10:13 ============================================================================ +14:10:14 ============================================================================ +14:10:14 Slot Id : <271> +14:10:14 Transaction Type : RESPONSE +14:10:14 Received From : +14:10:14 ============================================================================ +14:10:14 FNo. Len. Field Value +14:10:14 ============================================================================ +14:10:14 [ 1] [ 4] [0810] +14:10:14 [ 7] [ 10] [0320212202] +14:10:14 [ 11] [ 6] [142202] +14:10:14 [ 37] [ 12] [579141422020] +14:10:14 [ 39] [ 2] [00] +14:10:14 [ 70] [ 3] [810] +14:10:14 ============================================================================ +14:10:14 Calculate Source COMM Id = 6 +14:10:14 ============================================================================ +14:10:14 + + +waiting on router queue for slot.... +14:10:15 ============================================================================ +14:10:15 Slot Id : <245> +14:10:15 Transaction Type : REQUEST +14:10:15 Received From : +14:10:15 ============================================================================ +14:10:15 FNo. Len. Field Value +14:10:15 ============================================================================ +14:10:15 [ 1] [ 4] [0200] +14:10:15 [ 2] [ 16] [6688990105014904] +14:10:15 [ 3] [ 6] [010000] +14:10:15 [ 4] [ 12] [000100000000] +14:10:15 [ 7] [ 10] [0320141010] +14:10:15 [ 11] [ 6] [766570] +14:10:15 [ 12] [ 6] [141010] +14:10:15 [ 13] [ 4] [0320] +14:10:15 [ 15] [ 4] [0320] +14:10:15 [ 18] [ 4] [6011] +14:10:15 [ 22] [ 3] [900] +14:10:15 [ 25] [ 2] [02] +14:10:15 [ 28] [ 9] [D00002000] +14:10:15 [ 32] [ 6] [621354] +14:10:15 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:10:15 [ 37] [ 12] [507904635684] +14:10:15 [ 41] [ 8] [17000800] +14:10:15 [ 42] [ 15] [NATIVE ] +14:10:15 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:10:15 [ 49] [ 3] [418] +14:10:15 [ 52] [ 16] [8D48F9BC598F7280] +14:10:15 ============================================================================ +14:10:15 + + +waiting on router queue for slot.... +14:10:15 Sending to : +14:10:15 ============================================================================ +14:10:15 Sending to : +14:10:15 ============================================================================ +14:10:15 ============================================================================ +14:10:15 Slot Id : <245> +14:10:15 Transaction Type : REQUEST +14:10:15 Received From : +14:10:15 ============================================================================ +14:10:15 FNo. Len. Field Value +14:10:15 ============================================================================ +14:10:15 [ 1] [ 4] [0200] +14:10:15 [ 2] [ 16] [6688990105014904] +14:10:15 [ 3] [ 6] [010000] +14:10:15 [ 4] [ 12] [000100000000] +14:10:15 [ 7] [ 10] [0320141010] +14:10:15 [ 11] [ 6] [766570] +14:10:15 [ 12] [ 6] [141010] +14:10:15 [ 13] [ 4] [0320] +14:10:15 [ 15] [ 4] [0320] +14:10:15 [ 18] [ 4] [6011] +14:10:15 [ 22] [ 3] [900] +14:10:15 [ 25] [ 2] [02] +14:10:15 [ 28] [ 9] [D00002000] +14:10:15 [ 32] [ 6] [621354] +14:10:15 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:10:15 [ 37] [ 12] [507904635684] +14:10:15 [ 41] [ 8] [17000800] +14:10:15 [ 42] [ 15] [NATIVE ] +14:10:15 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:10:15 [ 49] [ 3] [418] +14:10:15 [ 52] [ 16] [8D48F9BC598F7280] +14:10:15 ============================================================================ +14:10:15 + + +waiting on router queue for slot.... +14:10:15 Sending to : +14:10:15 ============================================================================ +14:10:15 ============================================================================ +14:10:15 Slot Id : <245> +14:10:15 Transaction Type : REQUEST +14:10:15 Received From : +14:10:15 ============================================================================ +14:10:15 FNo. Len. Field Value +14:10:15 ============================================================================ +14:10:15 [ 1] [ 4] [0200] +14:10:15 [ 2] [ 16] [6688990105014904] +14:10:15 [ 3] [ 6] [010000] +14:10:15 [ 4] [ 12] [000100000000] +14:10:15 [ 7] [ 10] [0320141010] +14:10:15 [ 11] [ 6] [766570] +14:10:15 [ 12] [ 6] [141010] +14:10:15 [ 13] [ 4] [0320] +14:10:15 [ 15] [ 4] [0320] +14:10:15 [ 18] [ 4] [6011] +14:10:15 [ 22] [ 3] [900] +14:10:15 [ 25] [ 2] [02] +14:10:15 [ 28] [ 9] [D00002000] +14:10:15 [ 32] [ 6] [621354] +14:10:15 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:10:15 [ 37] [ 12] [507904635684] +14:10:15 [ 41] [ 8] [17000800] +14:10:15 [ 42] [ 15] [NATIVE ] +14:10:15 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:10:15 [ 49] [ 3] [418] +14:10:15 [ 52] [ 16] [883C480C8C0C895A] +14:10:15 ============================================================================ +14:10:15 + + +waiting on router queue for slot.... +14:10:15 Sending to : <4> +14:10:15 ============================================================================ +14:10:16 ============================================================================ +14:10:16 Slot Id : <245> +14:10:16 Transaction Type : RESPONSE +14:10:16 Received From : +14:10:16 ============================================================================ +14:10:16 FNo. Len. Field Value +14:10:16 ============================================================================ +14:10:16 [ 1] [ 4] [0210] +14:10:16 [ 2] [ 16] [6688990105014904] +14:10:16 [ 3] [ 6] [010000] +14:10:16 [ 4] [ 12] [000100000000] +14:10:16 [ 11] [ 6] [766570] +14:10:16 [ 12] [ 6] [141010] +14:10:16 [ 15] [ 4] [0320] +14:10:16 [ 18] [ 4] [6011] +14:10:16 [ 32] [ 6] [621354] +14:10:16 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:10:16 [ 37] [ 12] [507904635684] +14:10:16 [ 38] [ 6] [037497] +14:10:16 [ 39] [ 2] [00] +14:10:16 [ 41] [ 8] [17000800] +14:10:16 [ 49] [ 3] [418] +14:10:16 [ 54] [ 20] [0002418C000135690816] +14:10:16 ============================================================================ +14:10:16 Sending to : +14:10:16 ============================================================================ +14:10:16 + + +waiting on router queue for slot.... +14:10:18 ============================================================================ +14:10:18 Slot Id : <245> +14:10:18 Transaction Type : RESPONSE +14:10:18 Received From : +14:10:18 ============================================================================ +14:10:18 FNo. Len. Field Value +14:10:18 ============================================================================ +14:10:18 [ 1] [ 4] [0210] +14:10:18 [ 2] [ 16] [6688990105014904] +14:10:18 [ 3] [ 6] [010000] +14:10:18 [ 4] [ 12] [000100000000] +14:10:18 [ 11] [ 6] [766570] +14:10:18 [ 12] [ 6] [141010] +14:10:18 [ 15] [ 4] [0320] +14:10:18 [ 18] [ 4] [6011] +14:10:18 [ 32] [ 6] [621354] +14:10:18 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:10:18 [ 37] [ 12] [507904635684] +14:10:18 [ 38] [ 6] [037497] +14:10:18 [ 39] [ 2] [00] +14:10:18 [ 41] [ 8] [17000800] +14:10:18 [ 49] [ 3] [418] +14:10:18 [ 54] [ 20] [0002418C000135690816] +14:10:18 ============================================================================ +14:10:18 Calculate Source COMM Id = 0 +14:10:18 ============================================================================ +14:10:18 + + +waiting on router queue for slot.... +14:10:22 ============================================================================ +14:10:22 Slot Id : <236> +14:10:22 Transaction Type : REQUEST +14:10:22 Received From : +14:10:22 ============================================================================ +14:10:22 FNo. Len. Field Value +14:10:22 ============================================================================ +14:10:22 [ 1] [ 4] [0200] +14:10:22 [ 2] [ 16] [6213543000073972] +14:10:22 [ 3] [ 6] [010000] +14:10:22 [ 4] [ 12] [000100000000] +14:10:22 [ 7] [ 10] [0320070929] +14:10:22 [ 11] [ 6] [269564] +14:10:22 [ 12] [ 6] [140929] +14:10:22 [ 13] [ 4] [0320] +14:10:22 [ 14] [ 4] [4912] +14:10:22 [ 15] [ 4] [0320] +14:10:22 [ 18] [ 4] [6011] +14:10:22 [ 19] [ 3] [418] +14:10:22 [ 22] [ 3] [021] +14:10:22 [ 25] [ 2] [01] +14:10:22 [ 28] [ 9] [D00002000] +14:10:22 [ 32] [ 6] [180893] +14:10:22 [ 35] [ 32] [6213543000073972=491212017397958] +14:10:22 [ 37] [ 12] [507907269564] +14:10:22 [ 41] [ 8] [0301LPBX] +14:10:22 [ 42] [ 15] [999999 ] +14:10:22 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:10:22 [ 49] [ 3] [418] +14:10:22 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:10:22 ============================================================================ +14:10:22 + + +waiting on router queue for slot.... +14:10:22 Sending to : +14:10:22 ============================================================================ +14:10:22 Sending to : +14:10:22 ============================================================================ +14:10:23 ============================================================================ +14:10:23 Slot Id : <236> +14:10:23 Transaction Type : REQUEST +14:10:23 Received From : +14:10:23 ============================================================================ +14:10:23 FNo. Len. Field Value +14:10:23 ============================================================================ +14:10:23 [ 1] [ 4] [0200] +14:10:23 [ 2] [ 16] [6213543000073972] +14:10:23 [ 3] [ 6] [010000] +14:10:23 [ 4] [ 12] [000100000000] +14:10:23 [ 7] [ 10] [0320070929] +14:10:23 [ 11] [ 6] [269564] +14:10:23 [ 12] [ 6] [140929] +14:10:23 [ 13] [ 4] [0320] +14:10:23 [ 14] [ 4] [4912] +14:10:23 [ 15] [ 4] [0320] +14:10:23 [ 18] [ 4] [6011] +14:10:23 [ 19] [ 3] [418] +14:10:23 [ 22] [ 3] [021] +14:10:23 [ 25] [ 2] [01] +14:10:23 [ 28] [ 9] [D00002000] +14:10:23 [ 32] [ 6] [180893] +14:10:23 [ 35] [ 32] [6213543000073972=491212017397958] +14:10:23 [ 37] [ 12] [507907269564] +14:10:23 [ 41] [ 8] [0301LPBX] +14:10:23 [ 42] [ 15] [999999 ] +14:10:23 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:10:23 [ 49] [ 3] [418] +14:10:23 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:10:23 ============================================================================ +14:10:23 + + +waiting on router queue for slot.... +14:10:23 Sending to : +14:10:23 ============================================================================ +14:10:23 ============================================================================ +14:10:23 Slot Id : <236> +14:10:23 Transaction Type : REQUEST +14:10:23 Received From : +14:10:23 ============================================================================ +14:10:23 FNo. Len. Field Value +14:10:23 ============================================================================ +14:10:23 [ 1] [ 4] [0200] +14:10:23 [ 2] [ 16] [6213543000073972] +14:10:23 [ 3] [ 6] [010000] +14:10:23 [ 4] [ 12] [000100000000] +14:10:23 [ 7] [ 10] [0320070929] +14:10:23 [ 11] [ 6] [269564] +14:10:23 [ 12] [ 6] [140929] +14:10:23 [ 13] [ 4] [0320] +14:10:23 [ 14] [ 4] [4912] +14:10:23 [ 15] [ 4] [0320] +14:10:23 [ 18] [ 4] [6011] +14:10:23 [ 19] [ 3] [418] +14:10:23 [ 22] [ 3] [021] +14:10:23 [ 25] [ 2] [01] +14:10:23 [ 28] [ 9] [D00002000] +14:10:23 [ 32] [ 6] [180893] +14:10:23 [ 35] [ 32] [6213543000073972=491212017397958] +14:10:23 [ 37] [ 12] [507907269564] +14:10:23 [ 41] [ 8] [0301LPBX] +14:10:23 [ 42] [ 15] [999999 ] +14:10:23 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:10:23 [ 49] [ 3] [418] +14:10:23 [ 52] [ 16] [E42743FA8A68826A] +14:10:23 ============================================================================ +14:10:23 + + +waiting on router queue for slot.... +14:10:23 Sending to : <0> +14:10:23 ============================================================================ +14:10:23 ============================================================================ +14:10:23 Slot Id : <236> +14:10:23 Transaction Type : RESPONSE +14:10:23 Received From : +14:10:23 ============================================================================ +14:10:23 FNo. Len. Field Value +14:10:23 ============================================================================ +14:10:23 [ 1] [ 4] [0210] +14:10:23 [ 2] [ 16] [6213543000073972] +14:10:23 [ 3] [ 6] [010000] +14:10:23 [ 4] [ 12] [000100000000] +14:10:23 [ 7] [ 10] [0320070929] +14:10:23 [ 11] [ 6] [269564] +14:10:23 [ 12] [ 6] [140929] +14:10:23 [ 13] [ 4] [0320] +14:10:23 [ 15] [ 4] [0320] +14:10:23 [ 18] [ 4] [6011] +14:10:23 [ 19] [ 3] [418] +14:10:23 [ 32] [ 6] [180893] +14:10:23 [ 35] [ 32] [6213543000073972=491212017397958] +14:10:23 [ 37] [ 12] [507907269564] +14:10:23 [ 38] [ 6] [532686] +14:10:23 [ 39] [ 2] [00] +14:10:23 [ 41] [ 8] [0301LPBX] +14:10:23 [ 49] [ 3] [418] +14:10:23 [ 54] [ 40] [0001418C0005564521020002418C000556452102] +14:10:23 ============================================================================ +14:10:23 Sending to : +14:10:23 ============================================================================ +14:10:23 + + +waiting on router queue for slot.... +14:10:25 ============================================================================ +14:10:25 Slot Id : <236> +14:10:25 Transaction Type : RESPONSE +14:10:25 Received From : +14:10:25 ============================================================================ +14:10:25 FNo. Len. Field Value +14:10:25 ============================================================================ +14:10:25 [ 1] [ 4] [0210] +14:10:25 [ 2] [ 16] [6213543000073972] +14:10:25 [ 3] [ 6] [010000] +14:10:25 [ 4] [ 12] [000100000000] +14:10:25 [ 7] [ 10] [0320070929] +14:10:25 [ 11] [ 6] [269564] +14:10:25 [ 12] [ 6] [140929] +14:10:25 [ 13] [ 4] [0320] +14:10:25 [ 15] [ 4] [0320] +14:10:25 [ 18] [ 4] [6011] +14:10:25 [ 19] [ 3] [418] +14:10:25 [ 32] [ 6] [180893] +14:10:25 [ 35] [ 32] [6213543000073972=491212017397958] +14:10:25 [ 37] [ 12] [507907269564] +14:10:25 [ 38] [ 6] [532686] +14:10:25 [ 39] [ 2] [00] +14:10:25 [ 41] [ 8] [0301LPBX] +14:10:25 [ 49] [ 3] [418] +14:10:25 [ 54] [ 40] [0001418C0005564521020002418C000556452102] +14:10:25 ============================================================================ +14:10:25 Calculate Source COMM Id = 2 +14:10:25 ============================================================================ +14:10:25 + + +waiting on router queue for slot.... +14:10:29 ============================================================================ +14:10:29 Slot Id : <303> +14:10:29 Transaction Type : REQUEST +14:10:29 Received From : +14:10:29 ============================================================================ +14:10:29 FNo. Len. Field Value +14:10:29 ============================================================================ +14:10:29 [ 1] [ 4] [0200] +14:10:29 [ 2] [ 16] [6213543000165091] +14:10:29 [ 3] [ 6] [010000] +14:10:29 [ 4] [ 12] [000050000000] +14:10:29 [ 7] [ 10] [0320140819] +14:10:29 [ 11] [ 6] [948096] +14:10:29 [ 12] [ 6] [140819] +14:10:29 [ 13] [ 4] [0320] +14:10:29 [ 15] [ 4] [0320] +14:10:29 [ 18] [ 4] [6011] +14:10:29 [ 19] [ 3] [418] +14:10:29 [ 22] [ 3] [021] +14:10:29 [ 25] [ 2] [01] +14:10:29 [ 28] [ 9] [D00002000] +14:10:29 [ 32] [ 6] [668899] +14:10:29 [ 35] [ 32] [6213543000165091=491212016509130] +14:10:29 [ 37] [ 12] [507902565281] +14:10:29 [ 41] [ 8] [03001014] +14:10:29 [ 42] [ 15] [APT ] +14:10:29 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +14:10:29 [ 49] [ 3] [418] +14:10:29 [ 52] [ 16] [3DD8989FFC321145] +14:10:29 ============================================================================ +14:10:29 + + +waiting on router queue for slot.... +14:10:29 Sending to : +14:10:29 ============================================================================ +14:10:29 Sending to : +14:10:29 ============================================================================ +14:10:29 ============================================================================ +14:10:29 Slot Id : <303> +14:10:29 Transaction Type : REQUEST +14:10:29 Received From : +14:10:29 ============================================================================ +14:10:29 FNo. Len. Field Value +14:10:29 ============================================================================ +14:10:29 [ 1] [ 4] [0200] +14:10:29 [ 2] [ 16] [6213543000165091] +14:10:29 [ 3] [ 6] [010000] +14:10:29 [ 4] [ 12] [000050000000] +14:10:29 [ 7] [ 10] [0320140819] +14:10:29 [ 11] [ 6] [948096] +14:10:29 [ 12] [ 6] [140819] +14:10:29 [ 13] [ 4] [0320] +14:10:29 [ 15] [ 4] [0320] +14:10:29 [ 18] [ 4] [6011] +14:10:29 [ 19] [ 3] [418] +14:10:29 [ 22] [ 3] [021] +14:10:29 [ 25] [ 2] [01] +14:10:29 [ 28] [ 9] [D00002000] +14:10:29 [ 32] [ 6] [668899] +14:10:29 [ 35] [ 32] [6213543000165091=491212016509130] +14:10:29 [ 37] [ 12] [507902565281] +14:10:29 [ 41] [ 8] [03001014] +14:10:29 [ 42] [ 15] [APT ] +14:10:29 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +14:10:29 [ 49] [ 3] [418] +14:10:29 [ 52] [ 16] [3DD8989FFC321145] +14:10:29 ============================================================================ +14:10:29 + + +waiting on router queue for slot.... +14:10:29 Sending to : +14:10:29 ============================================================================ +14:10:29 ============================================================================ +14:10:29 Slot Id : <303> +14:10:29 Transaction Type : REQUEST +14:10:29 Received From : +14:10:29 ============================================================================ +14:10:29 FNo. Len. Field Value +14:10:29 ============================================================================ +14:10:29 [ 1] [ 4] [0200] +14:10:29 [ 2] [ 16] [6213543000165091] +14:10:29 [ 3] [ 6] [010000] +14:10:29 [ 4] [ 12] [000050000000] +14:10:29 [ 7] [ 10] [0320140819] +14:10:29 [ 11] [ 6] [948096] +14:10:29 [ 12] [ 6] [140819] +14:10:29 [ 13] [ 4] [0320] +14:10:29 [ 15] [ 4] [0320] +14:10:29 [ 18] [ 4] [6011] +14:10:29 [ 19] [ 3] [418] +14:10:29 [ 22] [ 3] [021] +14:10:29 [ 25] [ 2] [01] +14:10:29 [ 28] [ 9] [D00002000] +14:10:29 [ 32] [ 6] [668899] +14:10:29 [ 35] [ 32] [6213543000165091=491212016509130] +14:10:29 [ 37] [ 12] [507902565281] +14:10:29 [ 41] [ 8] [03001014] +14:10:29 [ 42] [ 15] [APT ] +14:10:29 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +14:10:29 [ 49] [ 3] [418] +14:10:29 [ 52] [ 16] [210F84CF27F6F046] +14:10:29 ============================================================================ +14:10:29 + + +waiting on router queue for slot.... +14:10:29 Sending to : <0> +14:10:29 ============================================================================ +14:10:30 ============================================================================ +14:10:30 Slot Id : <303> +14:10:30 Transaction Type : RESPONSE +14:10:30 Received From : +14:10:30 ============================================================================ +14:10:30 FNo. Len. Field Value +14:10:30 ============================================================================ +14:10:30 [ 1] [ 4] [0210] +14:10:30 [ 2] [ 16] [6213543000165091] +14:10:30 [ 3] [ 6] [010000] +14:10:30 [ 4] [ 12] [000050000000] +14:10:30 [ 7] [ 10] [0320140819] +14:10:30 [ 11] [ 6] [948096] +14:10:30 [ 12] [ 6] [140819] +14:10:30 [ 13] [ 4] [0320] +14:10:30 [ 15] [ 4] [0320] +14:10:30 [ 18] [ 4] [6011] +14:10:30 [ 19] [ 3] [418] +14:10:30 [ 32] [ 6] [668899] +14:10:30 [ 35] [ 32] [6213543000165091=491212016509130] +14:10:30 [ 37] [ 12] [507902565281] +14:10:30 [ 38] [ 6] [029264] +14:10:30 [ 39] [ 2] [00] +14:10:30 [ 41] [ 8] [03001014] +14:10:30 [ 49] [ 3] [418] +14:10:30 [ 54] [ 40] [0001418C0000054452920002418C000005445292] +14:10:30 ============================================================================ +14:10:30 Sending to : +14:10:30 ============================================================================ +14:10:30 + + +waiting on router queue for slot.... +14:10:31 ============================================================================ +14:10:31 Slot Id : <303> +14:10:31 Transaction Type : RESPONSE +14:10:31 Received From : +14:10:31 ============================================================================ +14:10:31 FNo. Len. Field Value +14:10:31 ============================================================================ +14:10:31 [ 1] [ 4] [0210] +14:10:31 [ 2] [ 16] [6213543000165091] +14:10:31 [ 3] [ 6] [010000] +14:10:31 [ 4] [ 12] [000050000000] +14:10:31 [ 7] [ 10] [0320140819] +14:10:31 [ 11] [ 6] [948096] +14:10:31 [ 12] [ 6] [140819] +14:10:31 [ 13] [ 4] [0320] +14:10:31 [ 15] [ 4] [0320] +14:10:31 [ 18] [ 4] [6011] +14:10:31 [ 19] [ 3] [418] +14:10:31 [ 32] [ 6] [668899] +14:10:31 [ 35] [ 32] [6213543000165091=491212016509130] +14:10:31 [ 37] [ 12] [507902565281] +14:10:31 [ 38] [ 6] [029264] +14:10:31 [ 39] [ 2] [00] +14:10:31 [ 41] [ 8] [03001014] +14:10:31 [ 49] [ 3] [418] +14:10:31 [ 54] [ 40] [0001418C0000054452920002418C000005445292] +14:10:31 ============================================================================ +14:10:31 Calculate Source COMM Id = 4 +14:10:31 ============================================================================ +14:10:31 + + +waiting on router queue for slot.... +14:10:32 ============================================================================ +14:10:32 Slot Id : <217> +14:10:32 Transaction Type : REQUEST +14:10:32 Received From : +14:10:32 ============================================================================ +14:10:32 FNo. Len. Field Value +14:10:32 ============================================================================ +14:10:32 [ 1] [ 4] [0200] +14:10:32 [ 2] [ 16] [6688990103266100] +14:10:32 [ 3] [ 6] [011000] +14:10:32 [ 4] [ 12] [000100000000] +14:10:32 [ 7] [ 10] [0320141027] +14:10:32 [ 11] [ 6] [766623] +14:10:32 [ 12] [ 6] [141027] +14:10:32 [ 13] [ 4] [0320] +14:10:32 [ 15] [ 4] [0320] +14:10:32 [ 18] [ 4] [6011] +14:10:32 [ 22] [ 3] [900] +14:10:32 [ 25] [ 2] [02] +14:10:32 [ 28] [ 9] [D00002000] +14:10:32 [ 32] [ 6] [621354] +14:10:32 [ 35] [ 37] [6688990103266100=42121231610005800000] +14:10:32 [ 37] [ 12] [507903499482] +14:10:32 [ 41] [ 8] [06002200] +14:10:32 [ 42] [ 15] [NATIVE ] +14:10:32 [ 43] [ 40] [Beng Market Beng LAO] +14:10:32 [ 49] [ 3] [418] +14:10:32 [ 52] [ 16] [B45FD95266F965B5] +14:10:32 ============================================================================ +14:10:32 + + +waiting on router queue for slot.... +14:10:32 Sending to : +14:10:32 ============================================================================ +14:10:32 Sending to : +14:10:32 ============================================================================ +14:10:32 ============================================================================ +14:10:32 Slot Id : <217> +14:10:32 Transaction Type : REQUEST +14:10:32 Received From : +14:10:32 ============================================================================ +14:10:32 FNo. Len. Field Value +14:10:32 ============================================================================ +14:10:32 [ 1] [ 4] [0200] +14:10:32 [ 2] [ 16] [6688990103266100] +14:10:32 [ 3] [ 6] [011000] +14:10:32 [ 4] [ 12] [000100000000] +14:10:32 [ 7] [ 10] [0320141027] +14:10:32 [ 11] [ 6] [766623] +14:10:32 [ 12] [ 6] [141027] +14:10:32 [ 13] [ 4] [0320] +14:10:32 [ 15] [ 4] [0320] +14:10:32 [ 18] [ 4] [6011] +14:10:32 [ 22] [ 3] [900] +14:10:32 [ 25] [ 2] [02] +14:10:32 [ 28] [ 9] [D00002000] +14:10:32 [ 32] [ 6] [621354] +14:10:32 [ 35] [ 37] [6688990103266100=42121231610005800000] +14:10:32 [ 37] [ 12] [507903499482] +14:10:32 [ 41] [ 8] [06002200] +14:10:32 [ 42] [ 15] [NATIVE ] +14:10:32 [ 43] [ 40] [Beng Market Beng LAO] +14:10:32 [ 49] [ 3] [418] +14:10:32 [ 52] [ 16] [B45FD95266F965B5] +14:10:32 ============================================================================ +14:10:32 + + +waiting on router queue for slot.... +14:10:32 Sending to : +14:10:32 ============================================================================ +14:10:32 ============================================================================ +14:10:32 Slot Id : <217> +14:10:32 Transaction Type : REQUEST +14:10:32 Received From : +14:10:32 ============================================================================ +14:10:32 FNo. Len. Field Value +14:10:32 ============================================================================ +14:10:32 [ 1] [ 4] [0200] +14:10:32 [ 2] [ 16] [6688990103266100] +14:10:32 [ 3] [ 6] [011000] +14:10:32 [ 4] [ 12] [000100000000] +14:10:32 [ 7] [ 10] [0320141027] +14:10:32 [ 11] [ 6] [766623] +14:10:32 [ 12] [ 6] [141027] +14:10:32 [ 13] [ 4] [0320] +14:10:32 [ 15] [ 4] [0320] +14:10:32 [ 18] [ 4] [6011] +14:10:32 [ 22] [ 3] [900] +14:10:32 [ 25] [ 2] [02] +14:10:32 [ 28] [ 9] [D00002000] +14:10:32 [ 32] [ 6] [621354] +14:10:32 [ 35] [ 37] [6688990103266100=42121231610005800000] +14:10:32 [ 37] [ 12] [507903499482] +14:10:32 [ 41] [ 8] [06002200] +14:10:32 [ 42] [ 15] [NATIVE ] +14:10:32 [ 43] [ 40] [Beng Market Beng LAO] +14:10:32 [ 49] [ 3] [418] +14:10:32 [ 52] [ 16] [032BB6EFDDA8FB8E] +14:10:32 ============================================================================ +14:10:32 + + +waiting on router queue for slot.... +14:10:32 Sending to : <4> +14:10:32 ============================================================================ +14:10:33 ============================================================================ +14:10:33 Slot Id : <217> +14:10:33 Transaction Type : RESPONSE +14:10:33 Received From : +14:10:33 ============================================================================ +14:10:33 FNo. Len. Field Value +14:10:33 ============================================================================ +14:10:33 [ 1] [ 4] [0210] +14:10:33 [ 2] [ 16] [6688990103266100] +14:10:33 [ 3] [ 6] [011000] +14:10:33 [ 4] [ 12] [000100000000] +14:10:33 [ 11] [ 6] [766623] +14:10:33 [ 12] [ 6] [141027] +14:10:33 [ 15] [ 4] [0320] +14:10:33 [ 18] [ 4] [6011] +14:10:33 [ 32] [ 6] [621354] +14:10:33 [ 35] [ 37] [6688990103266100=42121231610005800000] +14:10:33 [ 37] [ 12] [507903499482] +14:10:33 [ 38] [ 6] [017524] +14:10:33 [ 39] [ 2] [00] +14:10:33 [ 41] [ 8] [06002200] +14:10:33 [ 49] [ 3] [418] +14:10:33 [ 54] [ 20] [1002418C000244438680] +14:10:33 ============================================================================ +14:10:33 Sending to : +14:10:33 ============================================================================ +14:10:33 + + +waiting on router queue for slot.... +14:10:35 ============================================================================ +14:10:35 Slot Id : <217> +14:10:35 Transaction Type : RESPONSE +14:10:35 Received From : +14:10:35 ============================================================================ +14:10:35 FNo. Len. Field Value +14:10:35 ============================================================================ +14:10:35 [ 1] [ 4] [0210] +14:10:35 [ 2] [ 16] [6688990103266100] +14:10:35 [ 3] [ 6] [011000] +14:10:35 [ 4] [ 12] [000100000000] +14:10:35 [ 11] [ 6] [766623] +14:10:35 [ 12] [ 6] [141027] +14:10:35 [ 15] [ 4] [0320] +14:10:35 [ 18] [ 4] [6011] +14:10:35 [ 32] [ 6] [621354] +14:10:35 [ 35] [ 37] [6688990103266100=42121231610005800000] +14:10:35 [ 37] [ 12] [507903499482] +14:10:35 [ 38] [ 6] [017524] +14:10:35 [ 39] [ 2] [00] +14:10:35 [ 41] [ 8] [06002200] +14:10:35 [ 49] [ 3] [418] +14:10:35 [ 54] [ 20] [1002418C000244438680] +14:10:35 ============================================================================ +14:10:35 Calculate Source COMM Id = 0 +14:10:35 ============================================================================ +14:10:35 + + +waiting on router queue for slot.... +14:10:40 ============================================================================ +14:10:40 Slot Id : <298> +14:10:40 Transaction Type : REQUEST +14:10:40 Received From : +14:10:40 ============================================================================ +14:10:40 FNo. Len. Field Value +14:10:40 ============================================================================ +14:10:40 [ 1] [ 4] [0800] +14:10:40 [ 7] [ 10] [0320070947] +14:10:40 [ 11] [ 6] [156722] +14:10:40 [ 70] [ 3] [301] +14:10:40 ============================================================================ +14:10:40 + + +waiting on router queue for slot.... +14:10:40 Sending to : +14:10:40 ============================================================================ +14:10:40 ============================================================================ +14:10:40 Slot Id : <298> +14:10:40 Transaction Type : RESPONSE +14:10:40 Received From : +14:10:40 ============================================================================ +14:10:40 FNo. Len. Field Value +14:10:40 ============================================================================ +14:10:40 [ 1] [ 4] [0810] +14:10:40 [ 7] [ 10] [0320070947] +14:10:40 [ 11] [ 6] [156722] +14:10:40 [ 39] [ 2] [00] +14:10:40 [ 70] [ 3] [301] +14:10:40 ============================================================================ +14:10:40 Calculate Source COMM Id = 2 +14:10:40 ============================================================================ +14:10:40 + + +waiting on router queue for slot.... +14:10:51 ============================================================================ +14:10:51 Slot Id : <293> +14:10:51 Transaction Type : REQUEST +14:10:51 Received From : +14:10:51 ============================================================================ +14:10:51 FNo. Len. Field Value +14:10:51 ============================================================================ +14:10:51 [ 1] [ 4] [0800] +14:10:51 [ 7] [ 10] [0320070958] +14:10:51 [ 11] [ 6] [156723] +14:10:51 [ 70] [ 3] [301] +14:10:51 ============================================================================ +14:10:51 + + +waiting on router queue for slot.... +14:10:51 Sending to : +14:10:51 ============================================================================ +14:10:51 ============================================================================ +14:10:51 Slot Id : <293> +14:10:51 Transaction Type : RESPONSE +14:10:51 Received From : +14:10:51 ============================================================================ +14:10:51 FNo. Len. Field Value +14:10:51 ============================================================================ +14:10:51 [ 1] [ 4] [0810] +14:10:51 [ 7] [ 10] [0320070958] +14:10:51 [ 11] [ 6] [156723] +14:10:51 [ 39] [ 2] [00] +14:10:51 [ 70] [ 3] [301] +14:10:51 ============================================================================ +14:10:51 Calculate Source COMM Id = 2 +14:10:51 ============================================================================ +14:10:51 + + +waiting on router queue for slot.... +14:11:04 ============================================================================ +14:11:04 Slot Id : <278> +14:11:04 Transaction Type : REQUEST +14:11:04 Received From : +14:11:04 ============================================================================ +14:11:04 FNo. Len. Field Value +14:11:04 ============================================================================ +14:11:04 [ 1] [ 4] [0200] +14:11:04 [ 2] [ 16] [6213543000073972] +14:11:04 [ 3] [ 6] [010000] +14:11:04 [ 4] [ 12] [000100000000] +14:11:04 [ 7] [ 10] [0320071010] +14:11:04 [ 11] [ 6] [269568] +14:11:04 [ 12] [ 6] [141010] +14:11:04 [ 13] [ 4] [0320] +14:11:04 [ 14] [ 4] [4912] +14:11:04 [ 15] [ 4] [0320] +14:11:04 [ 18] [ 4] [6011] +14:11:04 [ 19] [ 3] [418] +14:11:04 [ 22] [ 3] [021] +14:11:04 [ 25] [ 2] [01] +14:11:04 [ 28] [ 9] [D00002000] +14:11:04 [ 32] [ 6] [180893] +14:11:04 [ 35] [ 32] [6213543000073972=491212017397958] +14:11:04 [ 37] [ 12] [507907269568] +14:11:04 [ 41] [ 8] [0301LPBX] +14:11:04 [ 42] [ 15] [999999 ] +14:11:04 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:11:04 [ 49] [ 3] [418] +14:11:04 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:11:04 ============================================================================ +14:11:04 + + +waiting on router queue for slot.... +14:11:04 Sending to : +14:11:04 ============================================================================ +14:11:04 Sending to : +14:11:04 ============================================================================ +14:11:04 ============================================================================ +14:11:04 Slot Id : <278> +14:11:04 Transaction Type : REQUEST +14:11:04 Received From : +14:11:04 ============================================================================ +14:11:04 FNo. Len. Field Value +14:11:04 ============================================================================ +14:11:04 [ 1] [ 4] [0200] +14:11:04 [ 2] [ 16] [6213543000073972] +14:11:04 [ 3] [ 6] [010000] +14:11:04 [ 4] [ 12] [000100000000] +14:11:04 [ 7] [ 10] [0320071010] +14:11:04 [ 11] [ 6] [269568] +14:11:04 [ 12] [ 6] [141010] +14:11:04 [ 13] [ 4] [0320] +14:11:04 [ 14] [ 4] [4912] +14:11:04 [ 15] [ 4] [0320] +14:11:04 [ 18] [ 4] [6011] +14:11:04 [ 19] [ 3] [418] +14:11:04 [ 22] [ 3] [021] +14:11:04 [ 25] [ 2] [01] +14:11:04 [ 28] [ 9] [D00002000] +14:11:04 [ 32] [ 6] [180893] +14:11:04 [ 35] [ 32] [6213543000073972=491212017397958] +14:11:04 [ 37] [ 12] [507907269568] +14:11:04 [ 41] [ 8] [0301LPBX] +14:11:04 [ 42] [ 15] [999999 ] +14:11:04 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:11:04 [ 49] [ 3] [418] +14:11:04 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:11:04 ============================================================================ +14:11:04 + + +waiting on router queue for slot.... +14:11:04 Sending to : +14:11:04 ============================================================================ +14:11:04 ============================================================================ +14:11:04 Slot Id : <278> +14:11:04 Transaction Type : REQUEST +14:11:04 Received From : +14:11:04 ============================================================================ +14:11:04 FNo. Len. Field Value +14:11:04 ============================================================================ +14:11:04 [ 1] [ 4] [0200] +14:11:04 [ 2] [ 16] [6213543000073972] +14:11:04 [ 3] [ 6] [010000] +14:11:04 [ 4] [ 12] [000100000000] +14:11:04 [ 7] [ 10] [0320071010] +14:11:04 [ 11] [ 6] [269568] +14:11:04 [ 12] [ 6] [141010] +14:11:04 [ 13] [ 4] [0320] +14:11:04 [ 14] [ 4] [4912] +14:11:04 [ 15] [ 4] [0320] +14:11:04 [ 18] [ 4] [6011] +14:11:04 [ 19] [ 3] [418] +14:11:04 [ 22] [ 3] [021] +14:11:04 [ 25] [ 2] [01] +14:11:04 [ 28] [ 9] [D00002000] +14:11:04 [ 32] [ 6] [180893] +14:11:04 [ 35] [ 32] [6213543000073972=491212017397958] +14:11:04 [ 37] [ 12] [507907269568] +14:11:04 [ 41] [ 8] [0301LPBX] +14:11:04 [ 42] [ 15] [999999 ] +14:11:04 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:11:04 [ 49] [ 3] [418] +14:11:04 [ 52] [ 16] [E42743FA8A68826A] +14:11:04 ============================================================================ +14:11:04 + + +waiting on router queue for slot.... +14:11:04 Sending to : <0> +14:11:04 ============================================================================ +14:11:04 ============================================================================ +14:11:04 Slot Id : <257> +14:11:04 Transaction Type : REQUEST +14:11:04 Received From : +14:11:04 ============================================================================ +14:11:04 FNo. Len. Field Value +14:11:04 ============================================================================ +14:11:04 [ 1] [ 4] [0800] +14:11:04 [ 2] [ 5] [02531] +14:11:04 [ 3] [ 6] [579148] +14:11:04 [ 7] [ 10] [0320071104] +14:11:04 [ 11] [ 6] [807235] +14:11:04 [ 15] [ 10] [0320071104] +14:11:04 [ 37] [ 11] [57914807235] +14:11:04 [ 70] [ 3] [001] +14:11:04 ============================================================================ +14:11:04 + + +waiting on router queue for slot.... +14:11:04 ============================================================================ +14:11:04 Slot Id : <257> +14:11:04 Transaction Type : RESPONSE +14:11:04 Received From : +14:11:04 ============================================================================ +14:11:04 FNo. Len. Field Value +14:11:04 ============================================================================ +14:11:04 [ 1] [ 4] [0810] +14:11:04 [ 7] [ 10] [0320071104] +14:11:04 [ 11] [ 6] [807235] +14:11:04 [ 15] [ 4] [0320] +14:11:04 [ 37] [ 12] [57914807235] +14:11:04 [ 39] [ 2] [00] +14:11:04 [ 70] [ 3] [001] +14:11:04 ============================================================================ +14:11:04 Sending to : +14:11:04 ============================================================================ +14:11:04 + + +waiting on router queue for slot.... +14:11:05 ============================================================================ +14:11:05 Slot Id : <278> +14:11:05 Transaction Type : RESPONSE +14:11:05 Received From : +14:11:05 ============================================================================ +14:11:05 FNo. Len. Field Value +14:11:05 ============================================================================ +14:11:05 [ 1] [ 4] [0210] +14:11:05 [ 2] [ 16] [6213543000073972] +14:11:05 [ 3] [ 6] [010000] +14:11:05 [ 4] [ 12] [000100000000] +14:11:05 [ 7] [ 10] [0320071010] +14:11:05 [ 11] [ 6] [269568] +14:11:05 [ 12] [ 6] [141010] +14:11:05 [ 13] [ 4] [0320] +14:11:05 [ 15] [ 4] [0320] +14:11:05 [ 18] [ 4] [6011] +14:11:05 [ 19] [ 3] [418] +14:11:05 [ 32] [ 6] [180893] +14:11:05 [ 35] [ 32] [6213543000073972=491212017397958] +14:11:05 [ 37] [ 12] [507907269568] +14:11:05 [ 38] [ 6] [025449] +14:11:05 [ 39] [ 2] [00] +14:11:05 [ 41] [ 8] [0301LPBX] +14:11:05 [ 49] [ 3] [418] +14:11:05 [ 54] [ 40] [0001418C0004562521020002418C000456252102] +14:11:05 ============================================================================ +14:11:05 Sending to : +14:11:05 ============================================================================ +14:11:05 + + +waiting on router queue for slot.... +14:11:06 ============================================================================ +14:11:06 Slot Id : <299> +14:11:06 Transaction Type : REQUEST +14:11:06 Received From : +14:11:06 ============================================================================ +14:11:06 FNo. Len. Field Value +14:11:06 ============================================================================ +14:11:06 [ 1] [ 4] [0800] +14:11:06 [ 7] [ 10] [0320071013] +14:11:06 [ 11] [ 6] [156724] +14:11:06 [ 70] [ 3] [301] +14:11:06 ============================================================================ +14:11:06 + + +waiting on router queue for slot.... +14:11:06 Sending to : +14:11:06 ============================================================================ +14:11:06 ============================================================================ +14:11:06 Slot Id : <278> +14:11:06 Transaction Type : RESPONSE +14:11:06 Received From : +14:11:06 ============================================================================ +14:11:06 FNo. Len. Field Value +14:11:06 ============================================================================ +14:11:06 [ 1] [ 4] [0210] +14:11:06 [ 2] [ 16] [6213543000073972] +14:11:06 [ 3] [ 6] [010000] +14:11:06 [ 4] [ 12] [000100000000] +14:11:06 [ 7] [ 10] [0320071010] +14:11:06 [ 11] [ 6] [269568] +14:11:06 [ 12] [ 6] [141010] +14:11:06 [ 13] [ 4] [0320] +14:11:06 [ 15] [ 4] [0320] +14:11:06 [ 18] [ 4] [6011] +14:11:06 [ 19] [ 3] [418] +14:11:06 [ 32] [ 6] [180893] +14:11:06 [ 35] [ 32] [6213543000073972=491212017397958] +14:11:06 [ 37] [ 12] [507907269568] +14:11:06 [ 38] [ 6] [025449] +14:11:06 [ 39] [ 2] [00] +14:11:06 [ 41] [ 8] [0301LPBX] +14:11:06 [ 49] [ 3] [418] +14:11:06 [ 54] [ 40] [0001418C0004562521020002418C000456252102] +14:11:06 ============================================================================ +14:11:06 Calculate Source COMM Id = 2 +14:11:06 ============================================================================ +14:11:06 + + +waiting on router queue for slot.... +14:11:06 ============================================================================ +14:11:06 Slot Id : <299> +14:11:06 Transaction Type : RESPONSE +14:11:06 Received From : +14:11:06 ============================================================================ +14:11:06 FNo. Len. Field Value +14:11:06 ============================================================================ +14:11:06 [ 1] [ 4] [0810] +14:11:06 [ 7] [ 10] [0320071013] +14:11:06 [ 11] [ 6] [156724] +14:11:06 [ 39] [ 2] [00] +14:11:06 [ 70] [ 3] [301] +14:11:06 ============================================================================ +14:11:06 Calculate Source COMM Id = 2 +14:11:06 ============================================================================ +14:11:06 + + +waiting on router queue for slot.... +14:11:14 ============================================================================ +14:11:14 Slot Id : <300> +14:11:14 Transaction Type : REQUEST +14:11:14 Received From : +14:11:14 ============================================================================ +14:11:14 FNo. Len. Field Value +14:11:14 ============================================================================ +14:11:14 [ 1] [ 4] [0200] +14:11:14 [ 2] [ 16] [6688990040157297] +14:11:14 [ 3] [ 6] [011000] +14:11:14 [ 4] [ 12] [000006000000] +14:11:14 [ 7] [ 10] [0320141110] +14:11:14 [ 11] [ 6] [766783] +14:11:14 [ 12] [ 6] [141110] +14:11:14 [ 13] [ 4] [0320] +14:11:14 [ 15] [ 4] [0320] +14:11:14 [ 18] [ 4] [6011] +14:11:14 [ 22] [ 3] [900] +14:11:14 [ 25] [ 2] [02] +14:11:14 [ 28] [ 9] [D00002000] +14:11:14 [ 32] [ 6] [621354] +14:11:14 [ 35] [ 37] [6688990040157297=98051261324084500000] +14:11:14 [ 37] [ 12] [507902539884] +14:11:14 [ 41] [ 8] [05003600] +14:11:14 [ 42] [ 15] [NATIVE ] +14:11:14 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:11:14 [ 49] [ 3] [418] +14:11:14 [ 52] [ 16] [39B1676DD65C8E17] +14:11:14 ============================================================================ +14:11:14 + + +waiting on router queue for slot.... +14:11:14 Sending to : +14:11:14 ============================================================================ +14:11:14 Sending to : +14:11:14 ============================================================================ +14:11:15 ============================================================================ +14:11:15 Slot Id : <300> +14:11:15 Transaction Type : REQUEST +14:11:15 Received From : +14:11:15 ============================================================================ +14:11:15 FNo. Len. Field Value +14:11:15 ============================================================================ +14:11:15 [ 1] [ 4] [0200] +14:11:15 [ 2] [ 16] [6688990040157297] +14:11:15 [ 3] [ 6] [011000] +14:11:15 [ 4] [ 12] [000006000000] +14:11:15 [ 7] [ 10] [0320141110] +14:11:15 [ 11] [ 6] [766783] +14:11:15 [ 12] [ 6] [141110] +14:11:15 [ 13] [ 4] [0320] +14:11:15 [ 15] [ 4] [0320] +14:11:15 [ 18] [ 4] [6011] +14:11:15 [ 22] [ 3] [900] +14:11:15 [ 25] [ 2] [02] +14:11:15 [ 28] [ 9] [D00002000] +14:11:15 [ 32] [ 6] [621354] +14:11:15 [ 35] [ 37] [6688990040157297=98051261324084500000] +14:11:15 [ 37] [ 12] [507902539884] +14:11:15 [ 41] [ 8] [05003600] +14:11:15 [ 42] [ 15] [NATIVE ] +14:11:15 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:11:15 [ 49] [ 3] [418] +14:11:15 [ 52] [ 16] [39B1676DD65C8E17] +14:11:15 ============================================================================ +14:11:15 + + +waiting on router queue for slot.... +14:11:15 Sending to : +14:11:15 ============================================================================ +14:11:15 ============================================================================ +14:11:15 Slot Id : <300> +14:11:15 Transaction Type : REQUEST +14:11:15 Received From : +14:11:15 ============================================================================ +14:11:15 FNo. Len. Field Value +14:11:15 ============================================================================ +14:11:15 [ 1] [ 4] [0200] +14:11:15 [ 2] [ 16] [6688990040157297] +14:11:15 [ 3] [ 6] [011000] +14:11:15 [ 4] [ 12] [000006000000] +14:11:15 [ 7] [ 10] [0320141110] +14:11:15 [ 11] [ 6] [766783] +14:11:15 [ 12] [ 6] [141110] +14:11:15 [ 13] [ 4] [0320] +14:11:15 [ 15] [ 4] [0320] +14:11:15 [ 18] [ 4] [6011] +14:11:15 [ 22] [ 3] [900] +14:11:15 [ 25] [ 2] [02] +14:11:15 [ 28] [ 9] [D00002000] +14:11:15 [ 32] [ 6] [621354] +14:11:15 [ 35] [ 37] [6688990040157297=98051261324084500000] +14:11:15 [ 37] [ 12] [507902539884] +14:11:15 [ 41] [ 8] [05003600] +14:11:15 [ 42] [ 15] [NATIVE ] +14:11:15 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:11:15 [ 49] [ 3] [418] +14:11:15 [ 52] [ 16] [223A6D01D118C00F] +14:11:15 ============================================================================ +14:11:15 + + +waiting on router queue for slot.... +14:11:15 Sending to : <4> +14:11:15 ============================================================================ +14:11:16 ============================================================================ +14:11:16 Slot Id : <300> +14:11:16 Transaction Type : RESPONSE +14:11:16 Received From : +14:11:16 ============================================================================ +14:11:16 FNo. Len. Field Value +14:11:16 ============================================================================ +14:11:16 [ 1] [ 4] [0210] +14:11:16 [ 2] [ 16] [6688990040157297] +14:11:16 [ 3] [ 6] [011000] +14:11:16 [ 4] [ 12] [000006000000] +14:11:16 [ 11] [ 6] [766783] +14:11:16 [ 12] [ 6] [141110] +14:11:16 [ 15] [ 4] [0320] +14:11:16 [ 18] [ 4] [6011] +14:11:16 [ 32] [ 6] [621354] +14:11:16 [ 35] [ 37] [6688990040157297=98051261324084500000] +14:11:16 [ 37] [ 12] [507902539884] +14:11:16 [ 38] [ 6] [382781] +14:11:16 [ 39] [ 2] [00] +14:11:16 [ 41] [ 8] [05003600] +14:11:16 [ 49] [ 3] [418] +14:11:16 [ 54] [ 20] [1002418C000005048973] +14:11:16 ============================================================================ +14:11:16 Sending to : +14:11:16 ============================================================================ +14:11:16 + + +waiting on router queue for slot.... +14:11:17 ============================================================================ +14:11:17 Slot Id : <300> +14:11:17 Transaction Type : RESPONSE +14:11:17 Received From : +14:11:17 ============================================================================ +14:11:17 FNo. Len. Field Value +14:11:17 ============================================================================ +14:11:17 [ 1] [ 4] [0210] +14:11:17 [ 2] [ 16] [6688990040157297] +14:11:17 [ 3] [ 6] [011000] +14:11:17 [ 4] [ 12] [000006000000] +14:11:17 [ 11] [ 6] [766783] +14:11:17 [ 12] [ 6] [141110] +14:11:17 [ 15] [ 4] [0320] +14:11:17 [ 18] [ 4] [6011] +14:11:17 [ 32] [ 6] [621354] +14:11:17 [ 35] [ 37] [6688990040157297=98051261324084500000] +14:11:17 [ 37] [ 12] [507902539884] +14:11:17 [ 38] [ 6] [382781] +14:11:17 [ 39] [ 2] [00] +14:11:17 [ 41] [ 8] [05003600] +14:11:17 [ 49] [ 3] [418] +14:11:17 [ 54] [ 20] [1002418C000005048973] +14:11:17 ============================================================================ +14:11:17 Calculate Source COMM Id = 0 +14:11:17 ============================================================================ +14:11:17 + + +waiting on router queue for slot.... +14:11:19 ============================================================================ +14:11:19 Slot Id : <281> +14:11:19 Transaction Type : REQUEST +14:11:19 Received From : +14:11:19 ============================================================================ +14:11:19 FNo. Len. Field Value +14:11:19 ============================================================================ +14:11:19 [ 1] [ 4] [0800] +14:11:19 [ 7] [ 10] [0320212307] +14:11:19 [ 11] [ 6] [142307] +14:11:19 [ 37] [ 12] [57914142307] +14:11:19 [ 70] [ 3] [301] +14:11:19 ============================================================================ +14:11:19 + + +waiting on router queue for slot.... +14:11:19 Sending to : +14:11:19 ============================================================================ +14:11:19 ============================================================================ +14:11:19 Slot Id : <281> +14:11:19 Transaction Type : RESPONSE +14:11:19 Received From : +14:11:19 ============================================================================ +14:11:19 FNo. Len. Field Value +14:11:19 ============================================================================ +14:11:19 [ 1] [ 4] [0810] +14:11:19 [ 7] [ 10] [0320212307] +14:11:19 [ 11] [ 6] [142307] +14:11:19 [ 37] [ 12] [579141423070] +14:11:19 [ 39] [ 2] [00] +14:11:19 [ 70] [ 3] [810] +14:11:19 ============================================================================ +14:11:19 Calculate Source COMM Id = 6 +14:11:19 ============================================================================ +14:11:19 + + +waiting on router queue for slot.... +14:11:21 ============================================================================ +14:11:21 Slot Id : <295> +14:11:21 Transaction Type : REQUEST +14:11:21 Received From : +14:11:21 ============================================================================ +14:11:21 FNo. Len. Field Value +14:11:21 ============================================================================ +14:11:21 [ 1] [ 4] [0800] +14:11:21 [ 7] [ 10] [0320071028] +14:11:21 [ 11] [ 6] [156725] +14:11:21 [ 70] [ 3] [301] +14:11:21 ============================================================================ +14:11:21 + + +waiting on router queue for slot.... +14:11:21 Sending to : +14:11:21 ============================================================================ +14:11:21 ============================================================================ +14:11:21 Slot Id : <295> +14:11:21 Transaction Type : RESPONSE +14:11:21 Received From : +14:11:21 ============================================================================ +14:11:21 FNo. Len. Field Value +14:11:21 ============================================================================ +14:11:21 [ 1] [ 4] [0810] +14:11:21 [ 7] [ 10] [0320071028] +14:11:21 [ 11] [ 6] [156725] +14:11:21 [ 39] [ 2] [00] +14:11:21 [ 70] [ 3] [301] +14:11:21 ============================================================================ +14:11:21 Calculate Source COMM Id = 2 +14:11:21 ============================================================================ +14:11:21 + + +waiting on router queue for slot.... +14:11:22 ============================================================================ +14:11:22 Slot Id : <296> +14:11:22 Transaction Type : REQUEST +14:11:22 Received From : +14:11:22 ============================================================================ +14:11:22 FNo. Len. Field Value +14:11:22 ============================================================================ +14:11:22 [ 1] [ 4] [0800] +14:11:22 [ 7] [ 10] [0320070912] +14:11:22 [ 11] [ 6] [090050] +14:11:22 [ 37] [ 12] [57914090050] +14:11:22 [ 70] [ 3] [301] +14:11:22 ============================================================================ +14:11:22 + + +waiting on router queue for slot.... +14:11:22 Sending to : +14:11:22 ============================================================================ +14:11:22 ============================================================================ +14:11:22 Slot Id : <296> +14:11:22 Transaction Type : RESPONSE +14:11:22 Received From : +14:11:22 ============================================================================ +14:11:22 FNo. Len. Field Value +14:11:22 ============================================================================ +14:11:22 [ 1] [ 4] [0810] +14:11:22 [ 7] [ 10] [0320070912] +14:11:22 [ 11] [ 6] [090050] +14:11:22 [ 37] [ 12] [579140900500] +14:11:22 [ 39] [ 2] [00] +14:11:22 [ 70] [ 3] [810] +14:11:22 ============================================================================ +14:11:22 Calculate Source COMM Id = 4 +14:11:22 ============================================================================ +14:11:22 + + +waiting on router queue for slot.... +14:11:25 ============================================================================ +14:11:25 Slot Id : <308> +14:11:25 Transaction Type : REQUEST +14:11:25 Received From : +14:11:25 ============================================================================ +14:11:25 FNo. Len. Field Value +14:11:25 ============================================================================ +14:11:25 [ 1] [ 4] [0200] +14:11:25 [ 2] [ 16] [6213548000072494] +14:11:25 [ 3] [ 6] [300000] +14:11:25 [ 4] [ 12] [000000000000] +14:11:25 [ 7] [ 10] [0320140915] +14:11:25 [ 11] [ 6] [948122] +14:11:25 [ 12] [ 6] [140915] +14:11:25 [ 13] [ 4] [0320] +14:11:25 [ 15] [ 4] [0320] +14:11:25 [ 18] [ 4] [6011] +14:11:25 [ 19] [ 3] [418] +14:11:25 [ 22] [ 3] [021] +14:11:25 [ 25] [ 2] [01] +14:11:25 [ 28] [ 9] [D00000000] +14:11:25 [ 32] [ 6] [668899] +14:11:25 [ 35] [ 32] [6213548000072494=130812017249292] +14:11:25 [ 37] [ 12] [507901541721] +14:11:25 [ 41] [ 8] [03020016] +14:11:25 [ 42] [ 15] [APT ] +14:11:25 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +14:11:25 [ 49] [ 3] [418] +14:11:25 [ 52] [ 16] [85ACB915DF7C135F] +14:11:25 ============================================================================ +14:11:25 + + +waiting on router queue for slot.... +14:11:25 Sending to : +14:11:25 ============================================================================ +14:11:25 Sending to : +14:11:25 ============================================================================ +14:11:25 ============================================================================ +14:11:25 Slot Id : <308> +14:11:25 Transaction Type : REQUEST +14:11:25 Received From : +14:11:25 ============================================================================ +14:11:25 FNo. Len. Field Value +14:11:25 ============================================================================ +14:11:25 [ 1] [ 4] [0200] +14:11:25 [ 2] [ 16] [6213548000072494] +14:11:25 [ 3] [ 6] [300000] +14:11:25 [ 4] [ 12] [000000000000] +14:11:25 [ 7] [ 10] [0320140915] +14:11:25 [ 11] [ 6] [948122] +14:11:25 [ 12] [ 6] [140915] +14:11:25 [ 13] [ 4] [0320] +14:11:25 [ 15] [ 4] [0320] +14:11:25 [ 18] [ 4] [6011] +14:11:25 [ 19] [ 3] [418] +14:11:25 [ 22] [ 3] [021] +14:11:25 [ 25] [ 2] [01] +14:11:25 [ 28] [ 9] [D00000000] +14:11:25 [ 32] [ 6] [668899] +14:11:25 [ 35] [ 32] [6213548000072494=130812017249292] +14:11:25 [ 37] [ 12] [507901541721] +14:11:25 [ 41] [ 8] [03020016] +14:11:25 [ 42] [ 15] [APT ] +14:11:25 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +14:11:25 [ 49] [ 3] [418] +14:11:25 [ 52] [ 16] [85ACB915DF7C135F] +14:11:25 ============================================================================ +14:11:25 + + +waiting on router queue for slot.... +14:11:25 Sending to : +14:11:25 ============================================================================ +14:11:25 ============================================================================ +14:11:25 Slot Id : <308> +14:11:25 Transaction Type : REQUEST +14:11:25 Received From : +14:11:25 ============================================================================ +14:11:25 FNo. Len. Field Value +14:11:25 ============================================================================ +14:11:25 [ 1] [ 4] [0200] +14:11:25 [ 2] [ 16] [6213548000072494] +14:11:25 [ 3] [ 6] [300000] +14:11:25 [ 4] [ 12] [000000000000] +14:11:25 [ 7] [ 10] [0320140915] +14:11:25 [ 11] [ 6] [948122] +14:11:25 [ 12] [ 6] [140915] +14:11:25 [ 13] [ 4] [0320] +14:11:25 [ 15] [ 4] [0320] +14:11:25 [ 18] [ 4] [6011] +14:11:25 [ 19] [ 3] [418] +14:11:25 [ 22] [ 3] [021] +14:11:25 [ 25] [ 2] [01] +14:11:25 [ 28] [ 9] [D00000000] +14:11:25 [ 32] [ 6] [668899] +14:11:25 [ 35] [ 32] [6213548000072494=130812017249292] +14:11:25 [ 37] [ 12] [507901541721] +14:11:25 [ 41] [ 8] [03020016] +14:11:25 [ 42] [ 15] [APT ] +14:11:25 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +14:11:25 [ 49] [ 3] [418] +14:11:25 [ 52] [ 16] [FF788BFE26A0F1D2] +14:11:25 ============================================================================ +14:11:25 + + +waiting on router queue for slot.... +14:11:25 Sending to : <0> +14:11:25 ============================================================================ +14:11:25 ============================================================================ +14:11:25 Slot Id : <308> +14:11:25 Transaction Type : RESPONSE +14:11:25 Received From : +14:11:25 ============================================================================ +14:11:25 FNo. Len. Field Value +14:11:25 ============================================================================ +14:11:25 [ 1] [ 4] [0210] +14:11:25 [ 2] [ 16] [6213548000072494] +14:11:25 [ 3] [ 6] [300000] +14:11:25 [ 4] [ 12] [000000000000] +14:11:25 [ 7] [ 10] [0320140915] +14:11:25 [ 11] [ 6] [948122] +14:11:25 [ 12] [ 6] [140915] +14:11:25 [ 13] [ 4] [0320] +14:11:25 [ 15] [ 4] [0320] +14:11:25 [ 18] [ 4] [6011] +14:11:25 [ 19] [ 3] [418] +14:11:25 [ 32] [ 6] [668899] +14:11:25 [ 35] [ 32] [6213548000072494=130812017249292] +14:11:25 [ 37] [ 12] [507901541721] +14:11:25 [ 38] [ 6] [941828] +14:11:25 [ 39] [ 2] [00] +14:11:25 [ 41] [ 8] [03020016] +14:11:25 [ 49] [ 3] [418] +14:11:25 [ 54] [ 40] [0001418C0000052859910002418C000005285991] +14:11:25 ============================================================================ +14:11:25 Sending to : +14:11:25 ============================================================================ +14:11:25 + + +waiting on router queue for slot.... +14:11:27 ============================================================================ +14:11:27 Slot Id : <308> +14:11:27 Transaction Type : RESPONSE +14:11:27 Received From : +14:11:27 ============================================================================ +14:11:27 FNo. Len. Field Value +14:11:27 ============================================================================ +14:11:27 [ 1] [ 4] [0210] +14:11:27 [ 2] [ 16] [6213548000072494] +14:11:27 [ 3] [ 6] [300000] +14:11:27 [ 4] [ 12] [000000000000] +14:11:27 [ 7] [ 10] [0320140915] +14:11:27 [ 11] [ 6] [948122] +14:11:27 [ 12] [ 6] [140915] +14:11:27 [ 13] [ 4] [0320] +14:11:27 [ 15] [ 4] [0320] +14:11:27 [ 18] [ 4] [6011] +14:11:27 [ 19] [ 3] [418] +14:11:27 [ 32] [ 6] [668899] +14:11:27 [ 35] [ 32] [6213548000072494=130812017249292] +14:11:27 [ 37] [ 12] [507901541721] +14:11:27 [ 38] [ 6] [941828] +14:11:27 [ 39] [ 2] [00] +14:11:27 [ 41] [ 8] [03020016] +14:11:27 [ 49] [ 3] [418] +14:11:27 [ 54] [ 40] [0001418C0000052859910002418C000005285991] +14:11:27 ============================================================================ +14:11:27 Calculate Source COMM Id = 4 +14:11:27 ============================================================================ +14:11:27 + + +waiting on router queue for slot.... +14:11:30 ============================================================================ +14:11:30 Slot Id : <286> +14:11:30 Transaction Type : REQUEST +14:11:30 Received From : +14:11:30 ============================================================================ +14:11:30 FNo. Len. Field Value +14:11:30 ============================================================================ +14:11:30 [ 1] [ 4] [0200] +14:11:30 [ 2] [ 16] [6688990105014904] +14:11:30 [ 3] [ 6] [010000] +14:11:30 [ 4] [ 12] [000100000000] +14:11:30 [ 7] [ 10] [0320141125] +14:11:30 [ 11] [ 6] [766849] +14:11:30 [ 12] [ 6] [141125] +14:11:30 [ 13] [ 4] [0320] +14:11:30 [ 15] [ 4] [0320] +14:11:30 [ 18] [ 4] [6011] +14:11:30 [ 22] [ 3] [900] +14:11:30 [ 25] [ 2] [02] +14:11:30 [ 28] [ 9] [D00002000] +14:11:30 [ 32] [ 6] [621354] +14:11:30 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:11:30 [ 37] [ 12] [507904635686] +14:11:30 [ 41] [ 8] [17000800] +14:11:30 [ 42] [ 15] [NATIVE ] +14:11:30 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:11:30 [ 49] [ 3] [418] +14:11:30 [ 52] [ 16] [8D48F9BC598F7280] +14:11:30 ============================================================================ +14:11:30 + + +waiting on router queue for slot.... +14:11:30 Sending to : +14:11:30 ============================================================================ +14:11:30 Sending to : +14:11:30 ============================================================================ +14:11:30 ============================================================================ +14:11:30 Slot Id : <286> +14:11:30 Transaction Type : REQUEST +14:11:30 Received From : +14:11:30 ============================================================================ +14:11:30 FNo. Len. Field Value +14:11:30 ============================================================================ +14:11:30 [ 1] [ 4] [0200] +14:11:30 [ 2] [ 16] [6688990105014904] +14:11:30 [ 3] [ 6] [010000] +14:11:30 [ 4] [ 12] [000100000000] +14:11:30 [ 7] [ 10] [0320141125] +14:11:30 [ 11] [ 6] [766849] +14:11:30 [ 12] [ 6] [141125] +14:11:30 [ 13] [ 4] [0320] +14:11:30 [ 15] [ 4] [0320] +14:11:30 [ 18] [ 4] [6011] +14:11:30 [ 22] [ 3] [900] +14:11:30 [ 25] [ 2] [02] +14:11:30 [ 28] [ 9] [D00002000] +14:11:30 [ 32] [ 6] [621354] +14:11:30 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:11:30 [ 37] [ 12] [507904635686] +14:11:30 [ 41] [ 8] [17000800] +14:11:30 [ 42] [ 15] [NATIVE ] +14:11:30 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:11:30 [ 49] [ 3] [418] +14:11:30 [ 52] [ 16] [8D48F9BC598F7280] +14:11:30 ============================================================================ +14:11:30 + + +waiting on router queue for slot.... +14:11:30 Sending to : +14:11:30 ============================================================================ +14:11:30 ============================================================================ +14:11:30 Slot Id : <286> +14:11:30 Transaction Type : REQUEST +14:11:30 Received From : +14:11:30 ============================================================================ +14:11:30 FNo. Len. Field Value +14:11:30 ============================================================================ +14:11:30 [ 1] [ 4] [0200] +14:11:30 [ 2] [ 16] [6688990105014904] +14:11:30 [ 3] [ 6] [010000] +14:11:30 [ 4] [ 12] [000100000000] +14:11:30 [ 7] [ 10] [0320141125] +14:11:30 [ 11] [ 6] [766849] +14:11:30 [ 12] [ 6] [141125] +14:11:30 [ 13] [ 4] [0320] +14:11:30 [ 15] [ 4] [0320] +14:11:30 [ 18] [ 4] [6011] +14:11:30 [ 22] [ 3] [900] +14:11:30 [ 25] [ 2] [02] +14:11:30 [ 28] [ 9] [D00002000] +14:11:30 [ 32] [ 6] [621354] +14:11:30 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:11:30 [ 37] [ 12] [507904635686] +14:11:30 [ 41] [ 8] [17000800] +14:11:30 [ 42] [ 15] [NATIVE ] +14:11:30 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:11:30 [ 49] [ 3] [418] +14:11:30 [ 52] [ 16] [883C480C8C0C895A] +14:11:30 ============================================================================ +14:11:30 + + +waiting on router queue for slot.... +14:11:30 Sending to : <4> +14:11:30 ============================================================================ +14:11:31 ============================================================================ +14:11:31 Slot Id : <286> +14:11:31 Transaction Type : RESPONSE +14:11:31 Received From : +14:11:31 ============================================================================ +14:11:31 FNo. Len. Field Value +14:11:31 ============================================================================ +14:11:31 [ 1] [ 4] [0210] +14:11:31 [ 2] [ 16] [6688990105014904] +14:11:31 [ 3] [ 6] [010000] +14:11:31 [ 4] [ 12] [000100000000] +14:11:31 [ 11] [ 6] [766849] +14:11:31 [ 12] [ 6] [141125] +14:11:31 [ 15] [ 4] [0320] +14:11:31 [ 18] [ 4] [6011] +14:11:31 [ 32] [ 6] [621354] +14:11:31 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:11:31 [ 37] [ 12] [507904635686] +14:11:31 [ 38] [ 6] [820508] +14:11:31 [ 39] [ 2] [00] +14:11:31 [ 41] [ 8] [17000800] +14:11:31 [ 49] [ 3] [418] +14:11:31 [ 54] [ 20] [0002418C000035490816] +14:11:31 ============================================================================ +14:11:31 Sending to : +14:11:31 ============================================================================ +14:11:31 + + +waiting on router queue for slot.... +14:11:32 ============================================================================ +14:11:32 Slot Id : <286> +14:11:32 Transaction Type : RESPONSE +14:11:32 Received From : +14:11:32 ============================================================================ +14:11:32 FNo. Len. Field Value +14:11:32 ============================================================================ +14:11:32 [ 1] [ 4] [0210] +14:11:32 [ 2] [ 16] [6688990105014904] +14:11:32 [ 3] [ 6] [010000] +14:11:32 [ 4] [ 12] [000100000000] +14:11:32 [ 11] [ 6] [766849] +14:11:32 [ 12] [ 6] [141125] +14:11:32 [ 15] [ 4] [0320] +14:11:32 [ 18] [ 4] [6011] +14:11:32 [ 32] [ 6] [621354] +14:11:32 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:11:32 [ 37] [ 12] [507904635686] +14:11:32 [ 38] [ 6] [820508] +14:11:32 [ 39] [ 2] [00] +14:11:32 [ 41] [ 8] [17000800] +14:11:32 [ 49] [ 3] [418] +14:11:32 [ 54] [ 20] [0002418C000035490816] +14:11:32 ============================================================================ +14:11:32 Calculate Source COMM Id = 0 +14:11:32 ============================================================================ +14:11:32 + + +waiting on router queue for slot.... +14:11:37 ============================================================================ +14:11:37 Slot Id : <316> +14:11:37 Transaction Type : REQUEST +14:11:37 Received From : +14:11:37 ============================================================================ +14:11:37 FNo. Len. Field Value +14:11:37 ============================================================================ +14:11:37 [ 1] [ 4] [0200] +14:11:37 [ 2] [ 16] [6688990103266100] +14:11:37 [ 3] [ 6] [011000] +14:11:37 [ 4] [ 12] [000100000000] +14:11:37 [ 7] [ 10] [0320141132] +14:11:37 [ 11] [ 6] [766888] +14:11:37 [ 12] [ 6] [141132] +14:11:37 [ 13] [ 4] [0320] +14:11:37 [ 15] [ 4] [0320] +14:11:37 [ 18] [ 4] [6011] +14:11:37 [ 22] [ 3] [900] +14:11:37 [ 25] [ 2] [02] +14:11:37 [ 28] [ 9] [D00002000] +14:11:37 [ 32] [ 6] [621354] +14:11:37 [ 35] [ 37] [6688990103266100=42121231610005800000] +14:11:37 [ 37] [ 12] [507903499484] +14:11:37 [ 41] [ 8] [06002200] +14:11:37 [ 42] [ 15] [NATIVE ] +14:11:37 [ 43] [ 40] [Beng Market Beng LAO] +14:11:37 [ 49] [ 3] [418] +14:11:37 [ 52] [ 16] [B45FD95266F965B5] +14:11:37 ============================================================================ +14:11:37 + + +waiting on router queue for slot.... +14:11:37 Sending to : +14:11:37 ============================================================================ +14:11:37 Sending to : +14:11:37 ============================================================================ +14:11:37 ============================================================================ +14:11:37 Slot Id : <283> +14:11:37 Transaction Type : REQUEST +14:11:37 Received From : +14:11:37 ============================================================================ +14:11:37 FNo. Len. Field Value +14:11:37 ============================================================================ +14:11:37 [ 1] [ 4] [0800] +14:11:37 [ 7] [ 10] [0320071044] +14:11:37 [ 11] [ 6] [156726] +14:11:37 [ 70] [ 3] [301] +14:11:37 ============================================================================ +14:11:37 + + +waiting on router queue for slot.... +14:11:37 Sending to : +14:11:37 ============================================================================ +14:11:37 ============================================================================ +14:11:37 Slot Id : <283> +14:11:37 Transaction Type : RESPONSE +14:11:37 Received From : +14:11:37 ============================================================================ +14:11:37 FNo. Len. Field Value +14:11:37 ============================================================================ +14:11:37 [ 1] [ 4] [0810] +14:11:37 [ 7] [ 10] [0320071044] +14:11:37 [ 11] [ 6] [156726] +14:11:37 [ 39] [ 2] [00] +14:11:37 [ 70] [ 3] [301] +14:11:37 ============================================================================ +14:11:37 Calculate Source COMM Id = 2 +14:11:37 ============================================================================ +14:11:37 + + +waiting on router queue for slot.... +14:11:37 ============================================================================ +14:11:37 Slot Id : <316> +14:11:37 Transaction Type : REQUEST +14:11:37 Received From : +14:11:37 ============================================================================ +14:11:37 FNo. Len. Field Value +14:11:37 ============================================================================ +14:11:37 [ 1] [ 4] [0200] +14:11:37 [ 2] [ 16] [6688990103266100] +14:11:37 [ 3] [ 6] [011000] +14:11:37 [ 4] [ 12] [000100000000] +14:11:37 [ 7] [ 10] [0320141132] +14:11:37 [ 11] [ 6] [766888] +14:11:37 [ 12] [ 6] [141132] +14:11:37 [ 13] [ 4] [0320] +14:11:37 [ 15] [ 4] [0320] +14:11:37 [ 18] [ 4] [6011] +14:11:37 [ 22] [ 3] [900] +14:11:37 [ 25] [ 2] [02] +14:11:37 [ 28] [ 9] [D00002000] +14:11:37 [ 32] [ 6] [621354] +14:11:37 [ 35] [ 37] [6688990103266100=42121231610005800000] +14:11:37 [ 37] [ 12] [507903499484] +14:11:37 [ 41] [ 8] [06002200] +14:11:37 [ 42] [ 15] [NATIVE ] +14:11:37 [ 43] [ 40] [Beng Market Beng LAO] +14:11:37 [ 49] [ 3] [418] +14:11:37 [ 52] [ 16] [B45FD95266F965B5] +14:11:37 ============================================================================ +14:11:37 + + +waiting on router queue for slot.... +14:11:37 Sending to : +14:11:37 ============================================================================ +14:11:37 ============================================================================ +14:11:37 Slot Id : <316> +14:11:37 Transaction Type : REQUEST +14:11:37 Received From : +14:11:37 ============================================================================ +14:11:37 FNo. Len. Field Value +14:11:37 ============================================================================ +14:11:37 [ 1] [ 4] [0200] +14:11:37 [ 2] [ 16] [6688990103266100] +14:11:37 [ 3] [ 6] [011000] +14:11:37 [ 4] [ 12] [000100000000] +14:11:37 [ 7] [ 10] [0320141132] +14:11:37 [ 11] [ 6] [766888] +14:11:37 [ 12] [ 6] [141132] +14:11:37 [ 13] [ 4] [0320] +14:11:37 [ 15] [ 4] [0320] +14:11:37 [ 18] [ 4] [6011] +14:11:37 [ 22] [ 3] [900] +14:11:37 [ 25] [ 2] [02] +14:11:37 [ 28] [ 9] [D00002000] +14:11:37 [ 32] [ 6] [621354] +14:11:37 [ 35] [ 37] [6688990103266100=42121231610005800000] +14:11:37 [ 37] [ 12] [507903499484] +14:11:37 [ 41] [ 8] [06002200] +14:11:37 [ 42] [ 15] [NATIVE ] +14:11:37 [ 43] [ 40] [Beng Market Beng LAO] +14:11:37 [ 49] [ 3] [418] +14:11:37 [ 52] [ 16] [032BB6EFDDA8FB8E] +14:11:37 ============================================================================ +14:11:37 + + +waiting on router queue for slot.... +14:11:37 Sending to : <4> +14:11:37 ============================================================================ +14:11:38 ============================================================================ +14:11:38 Slot Id : <316> +14:11:38 Transaction Type : RESPONSE +14:11:38 Received From : +14:11:38 ============================================================================ +14:11:38 FNo. Len. Field Value +14:11:38 ============================================================================ +14:11:38 [ 1] [ 4] [0210] +14:11:38 [ 2] [ 16] [6688990103266100] +14:11:38 [ 3] [ 6] [011000] +14:11:38 [ 4] [ 12] [000100000000] +14:11:38 [ 11] [ 6] [766888] +14:11:38 [ 12] [ 6] [141132] +14:11:38 [ 15] [ 4] [0320] +14:11:38 [ 18] [ 4] [6011] +14:11:38 [ 32] [ 6] [621354] +14:11:38 [ 35] [ 37] [6688990103266100=42121231610005800000] +14:11:38 [ 37] [ 12] [507903499484] +14:11:38 [ 38] [ 6] [928706] +14:11:38 [ 39] [ 2] [00] +14:11:38 [ 41] [ 8] [06002200] +14:11:38 [ 49] [ 3] [418] +14:11:38 [ 54] [ 20] [1002418C000144238680] +14:11:38 ============================================================================ +14:11:38 Sending to : +14:11:38 ============================================================================ +14:11:38 + + +waiting on router queue for slot.... +14:11:40 ============================================================================ +14:11:40 Slot Id : <316> +14:11:40 Transaction Type : RESPONSE +14:11:40 Received From : +14:11:40 ============================================================================ +14:11:40 FNo. Len. Field Value +14:11:40 ============================================================================ +14:11:40 [ 1] [ 4] [0210] +14:11:40 [ 2] [ 16] [6688990103266100] +14:11:40 [ 3] [ 6] [011000] +14:11:40 [ 4] [ 12] [000100000000] +14:11:40 [ 11] [ 6] [766888] +14:11:40 [ 12] [ 6] [141132] +14:11:40 [ 15] [ 4] [0320] +14:11:40 [ 18] [ 4] [6011] +14:11:40 [ 32] [ 6] [621354] +14:11:40 [ 35] [ 37] [6688990103266100=42121231610005800000] +14:11:40 [ 37] [ 12] [507903499484] +14:11:40 [ 38] [ 6] [928706] +14:11:40 [ 39] [ 2] [00] +14:11:40 [ 41] [ 8] [06002200] +14:11:40 [ 49] [ 3] [418] +14:11:40 [ 54] [ 20] [1002418C000144238680] +14:11:40 ============================================================================ +14:11:40 Calculate Source COMM Id = 0 +14:11:40 ============================================================================ +14:11:40 + + +waiting on router queue for slot.... +14:11:46 ============================================================================ +14:11:46 Slot Id : <311> +14:11:46 Transaction Type : REQUEST +14:11:46 Received From : +14:11:46 ============================================================================ +14:11:46 FNo. Len. Field Value +14:11:46 ============================================================================ +14:11:46 [ 1] [ 4] [0200] +14:11:46 [ 2] [ 16] [6688990103201909] +14:11:46 [ 3] [ 6] [302000] +14:11:46 [ 4] [ 12] [000000000000] +14:11:46 [ 7] [ 10] [0320141141] +14:11:46 [ 11] [ 6] [766923] +14:11:46 [ 12] [ 6] [141141] +14:11:46 [ 13] [ 4] [0320] +14:11:46 [ 15] [ 4] [0320] +14:11:46 [ 18] [ 4] [6011] +14:11:46 [ 22] [ 3] [900] +14:11:46 [ 25] [ 2] [02] +14:11:46 [ 28] [ 9] [D00000000] +14:11:46 [ 32] [ 6] [621354] +14:11:46 [ 35] [ 37] [6688990103201909=42121231190908200000] +14:11:46 [ 37] [ 12] [507902577747] +14:11:46 [ 41] [ 8] [05004000] +14:11:46 [ 42] [ 15] [NATIVE ] +14:11:46 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +14:11:46 [ 49] [ 3] [418] +14:11:46 [ 52] [ 16] [DC82E17F26243F95] +14:11:46 ============================================================================ +14:11:46 + + +waiting on router queue for slot.... +14:11:46 Sending to : +14:11:46 ============================================================================ +14:11:46 Sending to : +14:11:46 ============================================================================ +14:11:46 ============================================================================ +14:11:46 Slot Id : <311> +14:11:46 Transaction Type : REQUEST +14:11:46 Received From : +14:11:46 ============================================================================ +14:11:46 FNo. Len. Field Value +14:11:46 ============================================================================ +14:11:46 [ 1] [ 4] [0200] +14:11:46 [ 2] [ 16] [6688990103201909] +14:11:46 [ 3] [ 6] [302000] +14:11:46 [ 4] [ 12] [000000000000] +14:11:46 [ 7] [ 10] [0320141141] +14:11:46 [ 11] [ 6] [766923] +14:11:46 [ 12] [ 6] [141141] +14:11:46 [ 13] [ 4] [0320] +14:11:46 [ 15] [ 4] [0320] +14:11:46 [ 18] [ 4] [6011] +14:11:46 [ 22] [ 3] [900] +14:11:46 [ 25] [ 2] [02] +14:11:46 [ 28] [ 9] [D00000000] +14:11:46 [ 32] [ 6] [621354] +14:11:46 [ 35] [ 37] [6688990103201909=42121231190908200000] +14:11:46 [ 37] [ 12] [507902577747] +14:11:46 [ 41] [ 8] [05004000] +14:11:46 [ 42] [ 15] [NATIVE ] +14:11:46 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +14:11:46 [ 49] [ 3] [418] +14:11:46 [ 52] [ 16] [DC82E17F26243F95] +14:11:46 ============================================================================ +14:11:46 + + +waiting on router queue for slot.... +14:11:46 Sending to : +14:11:46 ============================================================================ +14:11:46 ============================================================================ +14:11:46 Slot Id : <311> +14:11:46 Transaction Type : REQUEST +14:11:46 Received From : +14:11:46 ============================================================================ +14:11:46 FNo. Len. Field Value +14:11:46 ============================================================================ +14:11:46 [ 1] [ 4] [0200] +14:11:46 [ 2] [ 16] [6688990103201909] +14:11:46 [ 3] [ 6] [302000] +14:11:46 [ 4] [ 12] [000000000000] +14:11:46 [ 7] [ 10] [0320141141] +14:11:46 [ 11] [ 6] [766923] +14:11:46 [ 12] [ 6] [141141] +14:11:46 [ 13] [ 4] [0320] +14:11:46 [ 15] [ 4] [0320] +14:11:46 [ 18] [ 4] [6011] +14:11:46 [ 22] [ 3] [900] +14:11:46 [ 25] [ 2] [02] +14:11:46 [ 28] [ 9] [D00000000] +14:11:46 [ 32] [ 6] [621354] +14:11:46 [ 35] [ 37] [6688990103201909=42121231190908200000] +14:11:46 [ 37] [ 12] [507902577747] +14:11:46 [ 41] [ 8] [05004000] +14:11:46 [ 42] [ 15] [NATIVE ] +14:11:46 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +14:11:46 [ 49] [ 3] [418] +14:11:46 [ 52] [ 16] [86032E4F4F27966B] +14:11:46 ============================================================================ +14:11:46 + + +waiting on router queue for slot.... +14:11:46 Sending to : <4> +14:11:46 ============================================================================ +14:11:47 ============================================================================ +14:11:47 Slot Id : <311> +14:11:47 Transaction Type : RESPONSE +14:11:47 Received From : +14:11:47 ============================================================================ +14:11:47 FNo. Len. Field Value +14:11:47 ============================================================================ +14:11:47 [ 1] [ 4] [0210] +14:11:47 [ 2] [ 16] [6688990103201909] +14:11:47 [ 3] [ 6] [302000] +14:11:47 [ 4] [ 12] [000000000000] +14:11:47 [ 11] [ 6] [766923] +14:11:47 [ 12] [ 6] [141141] +14:11:47 [ 15] [ 4] [0320] +14:11:47 [ 18] [ 4] [6011] +14:11:47 [ 32] [ 6] [621354] +14:11:47 [ 35] [ 37] [6688990103201909=42121231190908200000] +14:11:47 [ 37] [ 12] [507902577747] +14:11:47 [ 38] [ 6] [015382] +14:11:47 [ 39] [ 2] [00] +14:11:47 [ 41] [ 8] [05004000] +14:11:47 [ 49] [ 3] [418] +14:11:47 [ 54] [ 20] [2002418C009434295393] +14:11:47 ============================================================================ +14:11:47 Sending to : +14:11:47 ============================================================================ +14:11:47 + + +waiting on router queue for slot.... +14:11:48 ============================================================================ +14:11:48 Slot Id : <312> +14:11:48 Transaction Type : REQUEST +14:11:48 Received From : +14:11:48 ============================================================================ +14:11:48 FNo. Len. Field Value +14:11:48 ============================================================================ +14:11:48 [ 1] [ 4] [0800] +14:11:48 [ 7] [ 10] [0320071055] +14:11:48 [ 11] [ 6] [156727] +14:11:48 [ 70] [ 3] [301] +14:11:48 ============================================================================ +14:11:48 + + +waiting on router queue for slot.... +14:11:48 Sending to : +14:11:48 ============================================================================ +14:11:48 ============================================================================ +14:11:48 Slot Id : <312> +14:11:48 Transaction Type : RESPONSE +14:11:48 Received From : +14:11:48 ============================================================================ +14:11:48 FNo. Len. Field Value +14:11:48 ============================================================================ +14:11:48 [ 1] [ 4] [0810] +14:11:48 [ 7] [ 10] [0320071055] +14:11:48 [ 11] [ 6] [156727] +14:11:48 [ 39] [ 2] [00] +14:11:48 [ 70] [ 3] [301] +14:11:48 ============================================================================ +14:11:48 Calculate Source COMM Id = 2 +14:11:48 ============================================================================ +14:11:48 + + +waiting on router queue for slot.... +14:11:49 ============================================================================ +14:11:49 Slot Id : <311> +14:11:49 Transaction Type : RESPONSE +14:11:49 Received From : +14:11:49 ============================================================================ +14:11:49 FNo. Len. Field Value +14:11:49 ============================================================================ +14:11:49 [ 1] [ 4] [0210] +14:11:49 [ 2] [ 16] [6688990103201909] +14:11:49 [ 3] [ 6] [302000] +14:11:49 [ 4] [ 12] [000000000000] +14:11:49 [ 11] [ 6] [766923] +14:11:49 [ 12] [ 6] [141141] +14:11:49 [ 15] [ 4] [0320] +14:11:49 [ 18] [ 4] [6011] +14:11:49 [ 32] [ 6] [621354] +14:11:49 [ 35] [ 37] [6688990103201909=42121231190908200000] +14:11:49 [ 37] [ 12] [507902577747] +14:11:49 [ 38] [ 6] [015382] +14:11:49 [ 39] [ 2] [00] +14:11:49 [ 41] [ 8] [05004000] +14:11:49 [ 49] [ 3] [418] +14:11:49 [ 54] [ 20] [2002418C009434295393] +14:11:49 ============================================================================ +14:11:49 Calculate Source COMM Id = 0 +14:11:49 ============================================================================ +14:11:49 + + +waiting on router queue for slot.... +14:11:51 ============================================================================ +14:11:51 Slot Id : <306> +14:11:51 Transaction Type : REQUEST +14:11:51 Received From : +14:11:51 ============================================================================ +14:11:51 FNo. Len. Field Value +14:11:51 ============================================================================ +14:11:51 [ 1] [ 4] [0200] +14:11:51 [ 2] [ 16] [6213544001053088] +14:11:51 [ 3] [ 6] [010000] +14:11:51 [ 4] [ 12] [000030000000] +14:11:51 [ 7] [ 10] [0320140941] +14:11:51 [ 11] [ 6] [948133] +14:11:51 [ 12] [ 6] [140941] +14:11:51 [ 13] [ 4] [0320] +14:11:51 [ 15] [ 4] [0320] +14:11:51 [ 18] [ 4] [6011] +14:11:51 [ 19] [ 3] [418] +14:11:51 [ 22] [ 3] [021] +14:11:51 [ 25] [ 2] [01] +14:11:51 [ 28] [ 9] [D00002000] +14:11:51 [ 32] [ 6] [668899] +14:11:51 [ 35] [ 32] [6213544001053088=491212015308335] +14:11:51 [ 37] [ 12] [507901963609] +14:11:51 [ 41] [ 8] [03020019] +14:11:51 [ 42] [ 15] [APT ] +14:11:51 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:11:51 [ 49] [ 3] [418] +14:11:51 [ 52] [ 16] [5B020BFC5F94E0F7] +14:11:51 ============================================================================ +14:11:51 + + +waiting on router queue for slot.... +14:11:51 Sending to : +14:11:51 ============================================================================ +14:11:51 Sending to : +14:11:51 ============================================================================ +14:11:51 ============================================================================ +14:11:51 Slot Id : <306> +14:11:51 Transaction Type : REQUEST +14:11:51 Received From : +14:11:51 ============================================================================ +14:11:51 FNo. Len. Field Value +14:11:51 ============================================================================ +14:11:51 [ 1] [ 4] [0200] +14:11:51 [ 2] [ 16] [6213544001053088] +14:11:51 [ 3] [ 6] [010000] +14:11:51 [ 4] [ 12] [000030000000] +14:11:51 [ 7] [ 10] [0320140941] +14:11:51 [ 11] [ 6] [948133] +14:11:51 [ 12] [ 6] [140941] +14:11:51 [ 13] [ 4] [0320] +14:11:51 [ 15] [ 4] [0320] +14:11:51 [ 18] [ 4] [6011] +14:11:51 [ 19] [ 3] [418] +14:11:51 [ 22] [ 3] [021] +14:11:51 [ 25] [ 2] [01] +14:11:51 [ 28] [ 9] [D00002000] +14:11:51 [ 32] [ 6] [668899] +14:11:51 [ 35] [ 32] [6213544001053088=491212015308335] +14:11:51 [ 37] [ 12] [507901963609] +14:11:51 [ 41] [ 8] [03020019] +14:11:51 [ 42] [ 15] [APT ] +14:11:51 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:11:51 [ 49] [ 3] [418] +14:11:51 [ 52] [ 16] [5B020BFC5F94E0F7] +14:11:51 ============================================================================ +14:11:51 + + +waiting on router queue for slot.... +14:11:51 Sending to : +14:11:51 ============================================================================ +14:11:51 ============================================================================ +14:11:51 Slot Id : <306> +14:11:51 Transaction Type : REQUEST +14:11:51 Received From : +14:11:51 ============================================================================ +14:11:51 FNo. Len. Field Value +14:11:51 ============================================================================ +14:11:51 [ 1] [ 4] [0200] +14:11:51 [ 2] [ 16] [6213544001053088] +14:11:51 [ 3] [ 6] [010000] +14:11:51 [ 4] [ 12] [000030000000] +14:11:51 [ 7] [ 10] [0320140941] +14:11:51 [ 11] [ 6] [948133] +14:11:51 [ 12] [ 6] [140941] +14:11:51 [ 13] [ 4] [0320] +14:11:51 [ 15] [ 4] [0320] +14:11:51 [ 18] [ 4] [6011] +14:11:51 [ 19] [ 3] [418] +14:11:51 [ 22] [ 3] [021] +14:11:51 [ 25] [ 2] [01] +14:11:51 [ 28] [ 9] [D00002000] +14:11:51 [ 32] [ 6] [668899] +14:11:51 [ 35] [ 32] [6213544001053088=491212015308335] +14:11:51 [ 37] [ 12] [507901963609] +14:11:51 [ 41] [ 8] [03020019] +14:11:51 [ 42] [ 15] [APT ] +14:11:51 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:11:51 [ 49] [ 3] [418] +14:11:51 [ 52] [ 16] [F17C79DC05A316B4] +14:11:51 ============================================================================ +14:11:51 + + +waiting on router queue for slot.... +14:11:51 Sending to : <0> +14:11:51 ============================================================================ +14:11:52 ============================================================================ +14:11:52 Slot Id : <306> +14:11:52 Transaction Type : RESPONSE +14:11:52 Received From : +14:11:52 ============================================================================ +14:11:52 FNo. Len. Field Value +14:11:52 ============================================================================ +14:11:52 [ 1] [ 4] [0210] +14:11:52 [ 2] [ 16] [6213544001053088] +14:11:52 [ 3] [ 6] [010000] +14:11:52 [ 4] [ 12] [000030000000] +14:11:52 [ 7] [ 10] [0320140941] +14:11:52 [ 11] [ 6] [948133] +14:11:52 [ 12] [ 6] [140941] +14:11:52 [ 13] [ 4] [0320] +14:11:52 [ 15] [ 4] [0320] +14:11:52 [ 18] [ 4] [6011] +14:11:52 [ 19] [ 3] [418] +14:11:52 [ 32] [ 6] [668899] +14:11:52 [ 35] [ 32] [6213544001053088=491212015308335] +14:11:52 [ 37] [ 12] [507901963609] +14:11:52 [ 38] [ 6] [166036] +14:11:52 [ 39] [ 2] [00] +14:11:52 [ 41] [ 8] [03020019] +14:11:52 [ 49] [ 3] [418] +14:11:52 [ 54] [ 40] [0001418C0000947211070002418C000094721107] +14:11:52 ============================================================================ +14:11:52 Sending to : +14:11:52 ============================================================================ +14:11:52 + + +waiting on router queue for slot.... +14:11:53 ============================================================================ +14:11:53 Slot Id : <306> +14:11:53 Transaction Type : RESPONSE +14:11:53 Received From : +14:11:53 ============================================================================ +14:11:53 FNo. Len. Field Value +14:11:53 ============================================================================ +14:11:53 [ 1] [ 4] [0210] +14:11:53 [ 2] [ 16] [6213544001053088] +14:11:53 [ 3] [ 6] [010000] +14:11:53 [ 4] [ 12] [000030000000] +14:11:53 [ 7] [ 10] [0320140941] +14:11:53 [ 11] [ 6] [948133] +14:11:53 [ 12] [ 6] [140941] +14:11:53 [ 13] [ 4] [0320] +14:11:53 [ 15] [ 4] [0320] +14:11:53 [ 18] [ 4] [6011] +14:11:53 [ 19] [ 3] [418] +14:11:53 [ 32] [ 6] [668899] +14:11:53 [ 35] [ 32] [6213544001053088=491212015308335] +14:11:53 [ 37] [ 12] [507901963609] +14:11:53 [ 38] [ 6] [166036] +14:11:53 [ 39] [ 2] [00] +14:11:53 [ 41] [ 8] [03020019] +14:11:53 [ 49] [ 3] [418] +14:11:53 [ 54] [ 40] [0001418C0000947211070002418C000094721107] +14:11:53 ============================================================================ +14:11:53 Calculate Source COMM Id = 4 +14:11:53 ============================================================================ +14:11:53 + + +waiting on router queue for slot.... +14:11:53 ============================================================================ +14:11:53 Slot Id : <310> +14:11:53 Transaction Type : REQUEST +14:11:53 Received From : +14:11:53 ============================================================================ +14:11:53 FNo. Len. Field Value +14:11:53 ============================================================================ +14:11:53 [ 1] [ 4] [0200] +14:11:53 [ 2] [ 16] [6213543000073972] +14:11:53 [ 3] [ 6] [010000] +14:11:53 [ 4] [ 12] [000100000000] +14:11:53 [ 7] [ 10] [0320071059] +14:11:53 [ 11] [ 6] [269574] +14:11:53 [ 12] [ 6] [141059] +14:11:53 [ 13] [ 4] [0320] +14:11:53 [ 14] [ 4] [4912] +14:11:53 [ 15] [ 4] [0320] +14:11:53 [ 18] [ 4] [6011] +14:11:53 [ 19] [ 3] [418] +14:11:53 [ 22] [ 3] [021] +14:11:53 [ 25] [ 2] [01] +14:11:53 [ 28] [ 9] [D00002000] +14:11:53 [ 32] [ 6] [180893] +14:11:53 [ 35] [ 32] [6213543000073972=491212017397958] +14:11:53 [ 37] [ 12] [507907269574] +14:11:53 [ 41] [ 8] [0301LPBX] +14:11:53 [ 42] [ 15] [999999 ] +14:11:53 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:11:53 [ 49] [ 3] [418] +14:11:53 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:11:53 ============================================================================ +14:11:53 + + +waiting on router queue for slot.... +14:11:53 Sending to : +14:11:53 ============================================================================ +14:11:53 Sending to : +14:11:53 ============================================================================ +14:11:54 ============================================================================ +14:11:54 Slot Id : <310> +14:11:54 Transaction Type : REQUEST +14:11:54 Received From : +14:11:54 ============================================================================ +14:11:54 FNo. Len. Field Value +14:11:54 ============================================================================ +14:11:54 [ 1] [ 4] [0200] +14:11:54 [ 2] [ 16] [6213543000073972] +14:11:54 [ 3] [ 6] [010000] +14:11:54 [ 4] [ 12] [000100000000] +14:11:54 [ 7] [ 10] [0320071059] +14:11:54 [ 11] [ 6] [269574] +14:11:54 [ 12] [ 6] [141059] +14:11:54 [ 13] [ 4] [0320] +14:11:54 [ 14] [ 4] [4912] +14:11:54 [ 15] [ 4] [0320] +14:11:54 [ 18] [ 4] [6011] +14:11:54 [ 19] [ 3] [418] +14:11:54 [ 22] [ 3] [021] +14:11:54 [ 25] [ 2] [01] +14:11:54 [ 28] [ 9] [D00002000] +14:11:54 [ 32] [ 6] [180893] +14:11:54 [ 35] [ 32] [6213543000073972=491212017397958] +14:11:54 [ 37] [ 12] [507907269574] +14:11:54 [ 41] [ 8] [0301LPBX] +14:11:54 [ 42] [ 15] [999999 ] +14:11:54 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:11:54 [ 49] [ 3] [418] +14:11:54 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:11:54 ============================================================================ +14:11:54 + + +waiting on router queue for slot.... +14:11:54 Sending to : +14:11:54 ============================================================================ +14:11:54 ============================================================================ +14:11:54 Slot Id : <310> +14:11:54 Transaction Type : REQUEST +14:11:54 Received From : +14:11:54 ============================================================================ +14:11:54 FNo. Len. Field Value +14:11:54 ============================================================================ +14:11:54 [ 1] [ 4] [0200] +14:11:54 [ 2] [ 16] [6213543000073972] +14:11:54 [ 3] [ 6] [010000] +14:11:54 [ 4] [ 12] [000100000000] +14:11:54 [ 7] [ 10] [0320071059] +14:11:54 [ 11] [ 6] [269574] +14:11:54 [ 12] [ 6] [141059] +14:11:54 [ 13] [ 4] [0320] +14:11:54 [ 14] [ 4] [4912] +14:11:54 [ 15] [ 4] [0320] +14:11:54 [ 18] [ 4] [6011] +14:11:54 [ 19] [ 3] [418] +14:11:54 [ 22] [ 3] [021] +14:11:54 [ 25] [ 2] [01] +14:11:54 [ 28] [ 9] [D00002000] +14:11:54 [ 32] [ 6] [180893] +14:11:54 [ 35] [ 32] [6213543000073972=491212017397958] +14:11:54 [ 37] [ 12] [507907269574] +14:11:54 [ 41] [ 8] [0301LPBX] +14:11:54 [ 42] [ 15] [999999 ] +14:11:54 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:11:54 [ 49] [ 3] [418] +14:11:54 [ 52] [ 16] [E42743FA8A68826A] +14:11:54 ============================================================================ +14:11:54 + + +waiting on router queue for slot.... +14:11:54 Sending to : <0> +14:11:54 ============================================================================ +14:11:54 ============================================================================ +14:11:54 Slot Id : <310> +14:11:54 Transaction Type : RESPONSE +14:11:54 Received From : +14:11:54 ============================================================================ +14:11:54 FNo. Len. Field Value +14:11:54 ============================================================================ +14:11:54 [ 1] [ 4] [0210] +14:11:54 [ 2] [ 16] [6213543000073972] +14:11:54 [ 3] [ 6] [010000] +14:11:54 [ 4] [ 12] [000100000000] +14:11:54 [ 7] [ 10] [0320071059] +14:11:54 [ 11] [ 6] [269574] +14:11:54 [ 12] [ 6] [141059] +14:11:54 [ 13] [ 4] [0320] +14:11:54 [ 15] [ 4] [0320] +14:11:54 [ 18] [ 4] [6011] +14:11:54 [ 19] [ 3] [418] +14:11:54 [ 32] [ 6] [180893] +14:11:54 [ 35] [ 32] [6213543000073972=491212017397958] +14:11:54 [ 37] [ 12] [507907269574] +14:11:54 [ 38] [ 6] [597301] +14:11:54 [ 39] [ 2] [00] +14:11:54 [ 41] [ 8] [0301LPBX] +14:11:54 [ 49] [ 3] [418] +14:11:54 [ 54] [ 40] [0001418C0003560521020002418C000356052102] +14:11:54 ============================================================================ +14:11:54 Sending to : +14:11:54 ============================================================================ +14:11:54 + + +waiting on router queue for slot.... +14:11:56 ============================================================================ +14:11:56 Slot Id : <310> +14:11:56 Transaction Type : RESPONSE +14:11:56 Received From : +14:11:56 ============================================================================ +14:11:56 FNo. Len. Field Value +14:11:56 ============================================================================ +14:11:56 [ 1] [ 4] [0210] +14:11:56 [ 2] [ 16] [6213543000073972] +14:11:56 [ 3] [ 6] [010000] +14:11:56 [ 4] [ 12] [000100000000] +14:11:56 [ 7] [ 10] [0320071059] +14:11:56 [ 11] [ 6] [269574] +14:11:56 [ 12] [ 6] [141059] +14:11:56 [ 13] [ 4] [0320] +14:11:56 [ 15] [ 4] [0320] +14:11:56 [ 18] [ 4] [6011] +14:11:56 [ 19] [ 3] [418] +14:11:56 [ 32] [ 6] [180893] +14:11:56 [ 35] [ 32] [6213543000073972=491212017397958] +14:11:56 [ 37] [ 12] [507907269574] +14:11:56 [ 38] [ 6] [597301] +14:11:56 [ 39] [ 2] [00] +14:11:56 [ 41] [ 8] [0301LPBX] +14:11:56 [ 49] [ 3] [418] +14:11:56 [ 54] [ 40] [0001418C0003560521020002418C000356052102] +14:11:56 ============================================================================ +14:11:56 Calculate Source COMM Id = 2 +14:11:56 ============================================================================ +14:11:56 + + +waiting on router queue for slot.... +14:11:57 ============================================================================ +14:11:57 Slot Id : <307> +14:11:57 Transaction Type : REQUEST +14:11:57 Received From : +14:11:57 ============================================================================ +14:11:57 FNo. Len. Field Value +14:11:57 ============================================================================ +14:11:57 [ 1] [ 4] [0200] +14:11:57 [ 2] [ 16] [6688990100951506] +14:11:57 [ 3] [ 6] [301000] +14:11:57 [ 4] [ 12] [000000000000] +14:11:57 [ 7] [ 10] [0320141153] +14:11:57 [ 11] [ 6] [766966] +14:11:57 [ 12] [ 6] [141153] +14:11:57 [ 13] [ 4] [0320] +14:11:57 [ 15] [ 4] [0320] +14:11:57 [ 18] [ 4] [6011] +14:11:57 [ 22] [ 3] [900] +14:11:57 [ 25] [ 2] [02] +14:11:57 [ 28] [ 9] [D00000000] +14:11:57 [ 32] [ 6] [621354] +14:11:57 [ 35] [ 37] [6688990100951506=41121231150629900000] +14:11:57 [ 37] [ 12] [507904719632] +14:11:57 [ 41] [ 8] [18001000] +14:11:57 [ 42] [ 15] [NATIVE ] +14:11:57 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:11:57 [ 49] [ 3] [418] +14:11:57 [ 52] [ 16] [7F544125426769E5] +14:11:57 ============================================================================ +14:11:57 + + +waiting on router queue for slot.... +14:11:57 Sending to : +14:11:57 ============================================================================ +14:11:57 Sending to : +14:11:57 ============================================================================ +14:11:57 ============================================================================ +14:11:57 Slot Id : <307> +14:11:57 Transaction Type : REQUEST +14:11:57 Received From : +14:11:57 ============================================================================ +14:11:57 FNo. Len. Field Value +14:11:57 ============================================================================ +14:11:57 [ 1] [ 4] [0200] +14:11:57 [ 2] [ 16] [6688990100951506] +14:11:57 [ 3] [ 6] [301000] +14:11:57 [ 4] [ 12] [000000000000] +14:11:57 [ 7] [ 10] [0320141153] +14:11:57 [ 11] [ 6] [766966] +14:11:57 [ 12] [ 6] [141153] +14:11:57 [ 13] [ 4] [0320] +14:11:57 [ 15] [ 4] [0320] +14:11:57 [ 18] [ 4] [6011] +14:11:57 [ 22] [ 3] [900] +14:11:57 [ 25] [ 2] [02] +14:11:57 [ 28] [ 9] [D00000000] +14:11:57 [ 32] [ 6] [621354] +14:11:57 [ 35] [ 37] [6688990100951506=41121231150629900000] +14:11:57 [ 37] [ 12] [507904719632] +14:11:57 [ 41] [ 8] [18001000] +14:11:57 [ 42] [ 15] [NATIVE ] +14:11:57 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:11:57 [ 49] [ 3] [418] +14:11:57 [ 52] [ 16] [7F544125426769E5] +14:11:57 ============================================================================ +14:11:57 + + +waiting on router queue for slot.... +14:11:57 Sending to : +14:11:57 ============================================================================ +14:11:57 ============================================================================ +14:11:57 Slot Id : <307> +14:11:57 Transaction Type : REQUEST +14:11:57 Received From : +14:11:57 ============================================================================ +14:11:57 FNo. Len. Field Value +14:11:57 ============================================================================ +14:11:57 [ 1] [ 4] [0200] +14:11:57 [ 2] [ 16] [6688990100951506] +14:11:57 [ 3] [ 6] [301000] +14:11:57 [ 4] [ 12] [000000000000] +14:11:57 [ 7] [ 10] [0320141153] +14:11:57 [ 11] [ 6] [766966] +14:11:57 [ 12] [ 6] [141153] +14:11:57 [ 13] [ 4] [0320] +14:11:57 [ 15] [ 4] [0320] +14:11:57 [ 18] [ 4] [6011] +14:11:57 [ 22] [ 3] [900] +14:11:57 [ 25] [ 2] [02] +14:11:57 [ 28] [ 9] [D00000000] +14:11:57 [ 32] [ 6] [621354] +14:11:57 [ 35] [ 37] [6688990100951506=41121231150629900000] +14:11:57 [ 37] [ 12] [507904719632] +14:11:57 [ 41] [ 8] [18001000] +14:11:57 [ 42] [ 15] [NATIVE ] +14:11:57 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:11:57 [ 49] [ 3] [418] +14:11:57 [ 52] [ 16] [F44DE09E4012F418] +14:11:57 ============================================================================ +14:11:57 + + +waiting on router queue for slot.... +14:11:57 Sending to : <4> +14:11:57 ============================================================================ +14:11:58 ============================================================================ +14:11:58 Slot Id : <307> +14:11:58 Transaction Type : RESPONSE +14:11:58 Received From : +14:11:58 ============================================================================ +14:11:58 FNo. Len. Field Value +14:11:58 ============================================================================ +14:11:58 [ 1] [ 4] [0210] +14:11:58 [ 2] [ 16] [6688990100951506] +14:11:58 [ 3] [ 6] [301000] +14:11:58 [ 4] [ 12] [000000000000] +14:11:58 [ 11] [ 6] [766966] +14:11:58 [ 12] [ 6] [141153] +14:11:58 [ 15] [ 4] [0320] +14:11:58 [ 18] [ 4] [6011] +14:11:58 [ 32] [ 6] [621354] +14:11:58 [ 35] [ 37] [6688990100951506=41121231150629900000] +14:11:58 [ 37] [ 12] [507904719632] +14:11:58 [ 38] [ 6] [235345] +14:11:58 [ 39] [ 2] [00] +14:11:58 [ 41] [ 8] [18001000] +14:11:58 [ 49] [ 3] [418] +14:11:58 [ 54] [ 20] [1002418C000278919112] +14:11:58 ============================================================================ +14:11:58 Sending to : +14:11:58 ============================================================================ +14:11:58 + + +waiting on router queue for slot.... +14:12:00 ============================================================================ +14:12:00 Slot Id : <307> +14:12:00 Transaction Type : RESPONSE +14:12:00 Received From : +14:12:00 ============================================================================ +14:12:00 FNo. Len. Field Value +14:12:00 ============================================================================ +14:12:00 [ 1] [ 4] [0210] +14:12:00 [ 2] [ 16] [6688990100951506] +14:12:00 [ 3] [ 6] [301000] +14:12:00 [ 4] [ 12] [000000000000] +14:12:00 [ 11] [ 6] [766966] +14:12:00 [ 12] [ 6] [141153] +14:12:00 [ 15] [ 4] [0320] +14:12:00 [ 18] [ 4] [6011] +14:12:00 [ 32] [ 6] [621354] +14:12:00 [ 35] [ 37] [6688990100951506=41121231150629900000] +14:12:00 [ 37] [ 12] [507904719632] +14:12:00 [ 38] [ 6] [235345] +14:12:00 [ 39] [ 2] [00] +14:12:00 [ 41] [ 8] [18001000] +14:12:00 [ 49] [ 3] [418] +14:12:00 [ 54] [ 20] [1002418C000278919112] +14:12:00 ============================================================================ +14:12:00 Calculate Source COMM Id = 0 +14:12:00 ============================================================================ +14:12:00 + + +waiting on router queue for slot.... +14:12:06 ============================================================================ +14:12:06 Slot Id : <317> +14:12:06 Transaction Type : REQUEST +14:12:06 Received From : +14:12:06 ============================================================================ +14:12:06 FNo. Len. Field Value +14:12:06 ============================================================================ +14:12:06 [ 1] [ 4] [0800] +14:12:06 [ 2] [ 5] [02531] +14:12:06 [ 3] [ 6] [579148] +14:12:06 [ 7] [ 10] [0320071206] +14:12:06 [ 11] [ 6] [807236] +14:12:06 [ 15] [ 10] [0320071206] +14:12:06 [ 37] [ 11] [57914807236] +14:12:06 [ 70] [ 3] [001] +14:12:06 ============================================================================ +14:12:06 + + +waiting on router queue for slot.... +14:12:06 ============================================================================ +14:12:06 Slot Id : <317> +14:12:06 Transaction Type : RESPONSE +14:12:06 Received From : +14:12:06 ============================================================================ +14:12:06 FNo. Len. Field Value +14:12:06 ============================================================================ +14:12:06 [ 1] [ 4] [0810] +14:12:06 [ 7] [ 10] [0320071206] +14:12:06 [ 11] [ 6] [807236] +14:12:06 [ 15] [ 4] [0320] +14:12:06 [ 37] [ 12] [57914807236] +14:12:06 [ 39] [ 2] [00] +14:12:06 [ 70] [ 3] [001] +14:12:06 ============================================================================ +14:12:06 Sending to : +14:12:06 ============================================================================ +14:12:06 + + +waiting on router queue for slot.... +14:12:10 ============================================================================ +14:12:10 Slot Id : <288> +14:12:10 Transaction Type : REQUEST +14:12:10 Received From : +14:12:10 ============================================================================ +14:12:10 FNo. Len. Field Value +14:12:10 ============================================================================ +14:12:10 [ 1] [ 4] [0800] +14:12:10 [ 7] [ 10] [0320071117] +14:12:10 [ 11] [ 6] [156728] +14:12:10 [ 70] [ 3] [301] +14:12:10 ============================================================================ +14:12:10 + + +waiting on router queue for slot.... +14:12:10 Sending to : +14:12:10 ============================================================================ +14:12:10 ============================================================================ +14:12:10 Slot Id : <288> +14:12:10 Transaction Type : RESPONSE +14:12:10 Received From : +14:12:10 ============================================================================ +14:12:10 FNo. Len. Field Value +14:12:10 ============================================================================ +14:12:10 [ 1] [ 4] [0810] +14:12:10 [ 7] [ 10] [0320071117] +14:12:10 [ 11] [ 6] [156728] +14:12:10 [ 39] [ 2] [00] +14:12:10 [ 70] [ 3] [301] +14:12:10 ============================================================================ +14:12:10 Calculate Source COMM Id = 2 +14:12:10 ============================================================================ +14:12:10 + + +waiting on router queue for slot.... +14:12:21 ============================================================================ +14:12:21 Slot Id : <318> +14:12:21 Transaction Type : REQUEST +14:12:21 Received From : +14:12:21 ============================================================================ +14:12:21 FNo. Len. Field Value +14:12:21 ============================================================================ +14:12:21 [ 1] [ 4] [0800] +14:12:21 [ 7] [ 10] [0320071128] +14:12:21 [ 11] [ 6] [156729] +14:12:21 [ 70] [ 3] [301] +14:12:21 ============================================================================ +14:12:21 + + +waiting on router queue for slot.... +14:12:21 Sending to : +14:12:21 ============================================================================ +14:12:21 ============================================================================ +14:12:21 Slot Id : <318> +14:12:21 Transaction Type : RESPONSE +14:12:21 Received From : +14:12:21 ============================================================================ +14:12:21 FNo. Len. Field Value +14:12:21 ============================================================================ +14:12:21 [ 1] [ 4] [0810] +14:12:21 [ 7] [ 10] [0320071128] +14:12:21 [ 11] [ 6] [156729] +14:12:21 [ 39] [ 2] [00] +14:12:21 [ 70] [ 3] [301] +14:12:21 ============================================================================ +14:12:21 Calculate Source COMM Id = 2 +14:12:21 ============================================================================ +14:12:21 + + +waiting on router queue for slot.... +14:12:24 ============================================================================ +14:12:24 Slot Id : <322> +14:12:24 Transaction Type : REQUEST +14:12:24 Received From : +14:12:24 ============================================================================ +14:12:24 FNo. Len. Field Value +14:12:24 ============================================================================ +14:12:24 [ 1] [ 4] [0800] +14:12:24 [ 7] [ 10] [0320212412] +14:12:24 [ 11] [ 6] [142412] +14:12:24 [ 37] [ 12] [57914142412] +14:12:24 [ 70] [ 3] [301] +14:12:24 ============================================================================ +14:12:24 + + +waiting on router queue for slot.... +14:12:24 Sending to : +14:12:24 ============================================================================ +14:12:24 ============================================================================ +14:12:24 Slot Id : <322> +14:12:24 Transaction Type : RESPONSE +14:12:24 Received From : +14:12:24 ============================================================================ +14:12:24 FNo. Len. Field Value +14:12:24 ============================================================================ +14:12:24 [ 1] [ 4] [0810] +14:12:24 [ 7] [ 10] [0320212412] +14:12:24 [ 11] [ 6] [142412] +14:12:24 [ 37] [ 12] [579141424120] +14:12:24 [ 39] [ 2] [00] +14:12:24 [ 70] [ 3] [810] +14:12:24 ============================================================================ +14:12:24 Calculate Source COMM Id = 6 +14:12:24 ============================================================================ +14:12:24 + + +waiting on router queue for slot.... +14:12:31 ============================================================================ +14:12:31 Slot Id : <315> +14:12:31 Transaction Type : REQUEST +14:12:31 Received From : +14:12:31 ============================================================================ +14:12:31 FNo. Len. Field Value +14:12:31 ============================================================================ +14:12:31 [ 1] [ 4] [0200] +14:12:31 [ 2] [ 16] [1888880000028886] +14:12:31 [ 3] [ 6] [301000] +14:12:31 [ 4] [ 12] [000000000000] +14:12:31 [ 7] [ 10] [0320141227] +14:12:31 [ 11] [ 6] [767092] +14:12:31 [ 12] [ 6] [141227] +14:12:31 [ 13] [ 4] [0320] +14:12:31 [ 15] [ 4] [0320] +14:12:31 [ 18] [ 4] [6011] +14:12:31 [ 22] [ 3] [900] +14:12:31 [ 25] [ 2] [02] +14:12:31 [ 28] [ 9] [D00000000] +14:12:31 [ 32] [ 6] [621354] +14:12:31 [ 35] [ 32] [1888880000028886=000010100000629] +14:12:31 [ 37] [ 12] [507903308677] +14:12:31 [ 41] [ 8] [13001000] +14:12:31 [ 42] [ 15] [NATIVE ] +14:12:31 [ 43] [ 40] [Xiegkhouang ATM01 Paek LAO] +14:12:31 [ 49] [ 3] [418] +14:12:31 [ 52] [ 16] [D1489A436E772371] +14:12:31 ============================================================================ +14:12:31 + + +waiting on router queue for slot.... +14:12:31 Sending to : +14:12:31 ============================================================================ +14:12:31 Sending to : +14:12:31 ============================================================================ +14:12:32 ============================================================================ +14:12:32 Slot Id : <325> +14:12:32 Transaction Type : REQUEST +14:12:32 Received From : +14:12:32 ============================================================================ +14:12:32 FNo. Len. Field Value +14:12:32 ============================================================================ +14:12:32 [ 1] [ 4] [0800] +14:12:32 [ 7] [ 10] [0320071139] +14:12:32 [ 11] [ 6] [156730] +14:12:32 [ 70] [ 3] [301] +14:12:32 ============================================================================ +14:12:32 + + +waiting on router queue for slot.... +14:12:32 Sending to : +14:12:32 ============================================================================ +14:12:32 ============================================================================ +14:12:32 Slot Id : <325> +14:12:32 Transaction Type : RESPONSE +14:12:32 Received From : +14:12:32 ============================================================================ +14:12:32 FNo. Len. Field Value +14:12:32 ============================================================================ +14:12:32 [ 1] [ 4] [0810] +14:12:32 [ 7] [ 10] [0320071139] +14:12:32 [ 11] [ 6] [156730] +14:12:32 [ 39] [ 2] [00] +14:12:32 [ 70] [ 3] [301] +14:12:32 ============================================================================ +14:12:32 Calculate Source COMM Id = 2 +14:12:32 ============================================================================ +14:12:32 + + +waiting on router queue for slot.... +14:12:32 ============================================================================ +14:12:32 Slot Id : <315> +14:12:32 Transaction Type : REQUEST +14:12:32 Received From : +14:12:32 ============================================================================ +14:12:32 FNo. Len. Field Value +14:12:32 ============================================================================ +14:12:32 [ 1] [ 4] [0200] +14:12:32 [ 2] [ 16] [1888880000028886] +14:12:32 [ 3] [ 6] [301000] +14:12:32 [ 4] [ 12] [000000000000] +14:12:32 [ 7] [ 10] [0320141227] +14:12:32 [ 11] [ 6] [767092] +14:12:32 [ 12] [ 6] [141227] +14:12:32 [ 13] [ 4] [0320] +14:12:32 [ 15] [ 4] [0320] +14:12:32 [ 18] [ 4] [6011] +14:12:32 [ 22] [ 3] [900] +14:12:32 [ 25] [ 2] [02] +14:12:32 [ 28] [ 9] [D00000000] +14:12:32 [ 32] [ 6] [621354] +14:12:32 [ 35] [ 32] [1888880000028886=000010100000629] +14:12:32 [ 37] [ 12] [507903308677] +14:12:32 [ 41] [ 8] [13001000] +14:12:32 [ 42] [ 15] [NATIVE ] +14:12:32 [ 43] [ 40] [Xiegkhouang ATM01 Paek LAO] +14:12:32 [ 49] [ 3] [418] +14:12:32 [ 52] [ 16] [D1489A436E772371] +14:12:32 ============================================================================ +14:12:32 + + +waiting on router queue for slot.... +14:12:32 Sending to : +14:12:32 ============================================================================ +14:12:32 ============================================================================ +14:12:32 Slot Id : <315> +14:12:32 Transaction Type : REQUEST +14:12:32 Received From : +14:12:32 ============================================================================ +14:12:32 FNo. Len. Field Value +14:12:32 ============================================================================ +14:12:32 [ 1] [ 4] [0200] +14:12:32 [ 2] [ 16] [1888880000028886] +14:12:32 [ 3] [ 6] [301000] +14:12:32 [ 4] [ 12] [000000000000] +14:12:32 [ 7] [ 10] [0320141227] +14:12:32 [ 11] [ 6] [767092] +14:12:32 [ 12] [ 6] [141227] +14:12:32 [ 13] [ 4] [0320] +14:12:32 [ 15] [ 4] [0320] +14:12:32 [ 18] [ 4] [6011] +14:12:32 [ 22] [ 3] [900] +14:12:32 [ 25] [ 2] [02] +14:12:32 [ 28] [ 9] [D00000000] +14:12:32 [ 32] [ 6] [621354] +14:12:32 [ 35] [ 32] [1888880000028886=000010100000629] +14:12:32 [ 37] [ 12] [507903308677] +14:12:32 [ 41] [ 8] [13001000] +14:12:32 [ 42] [ 15] [NATIVE ] +14:12:32 [ 43] [ 40] [Xiegkhouang ATM01 Paek LAO] +14:12:32 [ 49] [ 3] [418] +14:12:32 [ 52] [ 16] [C017851C9F6E9519] +14:12:32 ============================================================================ +14:12:32 + + +waiting on router queue for slot.... +14:12:32 Sending to : <5> +14:12:32 ============================================================================ +14:12:32 ============================================================================ +14:12:32 Slot Id : <304> +14:12:32 Transaction Type : REQUEST +14:12:32 Received From : +14:12:32 ============================================================================ +14:12:32 FNo. Len. Field Value +14:12:32 ============================================================================ +14:12:32 [ 1] [ 4] [0200] +14:12:32 [ 2] [ 16] [6688990103201909] +14:12:32 [ 3] [ 6] [011000] +14:12:32 [ 4] [ 12] [000010000000] +14:12:32 [ 7] [ 10] [0320141228] +14:12:32 [ 11] [ 6] [767097] +14:12:32 [ 12] [ 6] [141228] +14:12:32 [ 13] [ 4] [0320] +14:12:32 [ 15] [ 4] [0320] +14:12:32 [ 18] [ 4] [6011] +14:12:32 [ 22] [ 3] [900] +14:12:32 [ 25] [ 2] [02] +14:12:32 [ 28] [ 9] [D00002000] +14:12:32 [ 32] [ 6] [621354] +14:12:32 [ 35] [ 37] [6688990103201909=42121231190908200000] +14:12:32 [ 37] [ 12] [507902577749] +14:12:32 [ 41] [ 8] [05004000] +14:12:32 [ 42] [ 15] [NATIVE ] +14:12:32 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +14:12:32 [ 49] [ 3] [418] +14:12:32 [ 52] [ 16] [DC82E17F26243F95] +14:12:32 ============================================================================ +14:12:32 + + +waiting on router queue for slot.... +14:12:32 Sending to : +14:12:32 ============================================================================ +14:12:32 Sending to : +14:12:32 ============================================================================ +14:12:32 ============================================================================ +14:12:32 Slot Id : <304> +14:12:32 Transaction Type : REQUEST +14:12:32 Received From : +14:12:32 ============================================================================ +14:12:32 FNo. Len. Field Value +14:12:32 ============================================================================ +14:12:32 [ 1] [ 4] [0200] +14:12:32 [ 2] [ 16] [6688990103201909] +14:12:32 [ 3] [ 6] [011000] +14:12:32 [ 4] [ 12] [000010000000] +14:12:32 [ 7] [ 10] [0320141228] +14:12:32 [ 11] [ 6] [767097] +14:12:32 [ 12] [ 6] [141228] +14:12:32 [ 13] [ 4] [0320] +14:12:32 [ 15] [ 4] [0320] +14:12:32 [ 18] [ 4] [6011] +14:12:32 [ 22] [ 3] [900] +14:12:32 [ 25] [ 2] [02] +14:12:32 [ 28] [ 9] [D00002000] +14:12:32 [ 32] [ 6] [621354] +14:12:32 [ 35] [ 37] [6688990103201909=42121231190908200000] +14:12:32 [ 37] [ 12] [507902577749] +14:12:32 [ 41] [ 8] [05004000] +14:12:32 [ 42] [ 15] [NATIVE ] +14:12:32 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +14:12:32 [ 49] [ 3] [418] +14:12:32 [ 52] [ 16] [DC82E17F26243F95] +14:12:32 ============================================================================ +14:12:32 + + +waiting on router queue for slot.... +14:12:32 Sending to : +14:12:32 ============================================================================ +14:12:32 ============================================================================ +14:12:32 Slot Id : <304> +14:12:32 Transaction Type : REQUEST +14:12:32 Received From : +14:12:32 ============================================================================ +14:12:32 FNo. Len. Field Value +14:12:32 ============================================================================ +14:12:32 [ 1] [ 4] [0200] +14:12:32 [ 2] [ 16] [6688990103201909] +14:12:32 [ 3] [ 6] [011000] +14:12:32 [ 4] [ 12] [000010000000] +14:12:32 [ 7] [ 10] [0320141228] +14:12:32 [ 11] [ 6] [767097] +14:12:32 [ 12] [ 6] [141228] +14:12:32 [ 13] [ 4] [0320] +14:12:32 [ 15] [ 4] [0320] +14:12:32 [ 18] [ 4] [6011] +14:12:32 [ 22] [ 3] [900] +14:12:32 [ 25] [ 2] [02] +14:12:32 [ 28] [ 9] [D00002000] +14:12:32 [ 32] [ 6] [621354] +14:12:32 [ 35] [ 37] [6688990103201909=42121231190908200000] +14:12:32 [ 37] [ 12] [507902577749] +14:12:32 [ 41] [ 8] [05004000] +14:12:32 [ 42] [ 15] [NATIVE ] +14:12:32 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +14:12:32 [ 49] [ 3] [418] +14:12:32 [ 52] [ 16] [86032E4F4F27966B] +14:12:32 ============================================================================ +14:12:32 + + +waiting on router queue for slot.... +14:12:32 Sending to : <4> +14:12:32 ============================================================================ +14:12:33 ============================================================================ +14:12:33 Slot Id : <304> +14:12:33 Transaction Type : RESPONSE +14:12:33 Received From : +14:12:33 ============================================================================ +14:12:33 FNo. Len. Field Value +14:12:33 ============================================================================ +14:12:33 [ 1] [ 4] [0210] +14:12:33 [ 2] [ 16] [6688990103201909] +14:12:33 [ 3] [ 6] [011000] +14:12:33 [ 4] [ 12] [000010000000] +14:12:33 [ 11] [ 6] [767097] +14:12:33 [ 12] [ 6] [141228] +14:12:33 [ 15] [ 4] [0320] +14:12:33 [ 18] [ 4] [6011] +14:12:33 [ 32] [ 6] [621354] +14:12:33 [ 35] [ 37] [6688990103201909=42121231190908200000] +14:12:33 [ 37] [ 12] [507902577749] +14:12:33 [ 38] [ 6] [325290] +14:12:33 [ 39] [ 2] [00] +14:12:33 [ 41] [ 8] [05004000] +14:12:33 [ 49] [ 3] [418] +14:12:33 [ 54] [ 20] [1002418C009424095393] +14:12:33 ============================================================================ +14:12:33 Sending to : +14:12:33 ============================================================================ +14:12:33 + + +waiting on router queue for slot.... +14:12:35 ============================================================================ +14:12:35 Slot Id : <304> +14:12:35 Transaction Type : RESPONSE +14:12:35 Received From : +14:12:35 ============================================================================ +14:12:35 FNo. Len. Field Value +14:12:35 ============================================================================ +14:12:35 [ 1] [ 4] [0210] +14:12:35 [ 2] [ 16] [6688990103201909] +14:12:35 [ 3] [ 6] [011000] +14:12:35 [ 4] [ 12] [000010000000] +14:12:35 [ 11] [ 6] [767097] +14:12:35 [ 12] [ 6] [141228] +14:12:35 [ 15] [ 4] [0320] +14:12:35 [ 18] [ 4] [6011] +14:12:35 [ 32] [ 6] [621354] +14:12:35 [ 35] [ 37] [6688990103201909=42121231190908200000] +14:12:35 [ 37] [ 12] [507902577749] +14:12:35 [ 38] [ 6] [325290] +14:12:35 [ 39] [ 2] [00] +14:12:35 [ 41] [ 8] [05004000] +14:12:35 [ 49] [ 3] [418] +14:12:35 [ 54] [ 20] [1002418C009424095393] +14:12:35 ============================================================================ +14:12:35 Calculate Source COMM Id = 0 +14:12:35 ============================================================================ +14:12:35 + + +waiting on router queue for slot.... +14:12:35 ============================================================================ +14:12:35 Slot Id : <315> +14:12:35 Transaction Type : RESPONSE +14:12:35 Received From : +14:12:35 ============================================================================ +14:12:35 FNo. Len. Field Value +14:12:35 ============================================================================ +14:12:35 [ 1] [ 4] [0210] +14:12:35 [ 2] [ 16] [1888880000028886] +14:12:35 [ 3] [ 6] [301000] +14:12:35 [ 4] [ 12] [000000000000] +14:12:35 [ 7] [ 10] [0320141227] +14:12:35 [ 11] [ 6] [767092] +14:12:35 [ 12] [ 6] [141227] +14:12:35 [ 13] [ 4] [0320] +14:12:35 [ 15] [ 4] [0320] +14:12:35 [ 18] [ 4] [6011] +14:12:35 [ 19] [ 3] [418] +14:12:35 [ 32] [ 6] [621354] +14:12:35 [ 37] [ 12] [507903308677] +14:12:35 [ 38] [ 6] [907888] +14:12:35 [ 39] [ 2] [00] +14:12:35 [ 41] [ 8] [13001000] +14:12:35 [ 49] [ 3] [418] +14:12:35 [ 54] [ 20] [1001418C000049300000] +14:12:35 ============================================================================ +14:12:35 Sending to : +14:12:35 ============================================================================ +14:12:35 + + +waiting on router queue for slot.... +14:12:36 ============================================================================ +14:12:36 Slot Id : <285> +14:12:36 Transaction Type : REQUEST +14:12:36 Received From : +14:12:36 ============================================================================ +14:12:36 FNo. Len. Field Value +14:12:36 ============================================================================ +14:12:36 [ 1] [ 4] [0200] +14:12:36 [ 2] [ 16] [6213543000073972] +14:12:36 [ 3] [ 6] [301000] +14:12:36 [ 7] [ 10] [0320071143] +14:12:36 [ 11] [ 6] [269578] +14:12:36 [ 12] [ 6] [141143] +14:12:36 [ 13] [ 4] [0320] +14:12:36 [ 14] [ 4] [4912] +14:12:36 [ 15] [ 4] [0320] +14:12:36 [ 18] [ 4] [6011] +14:12:36 [ 19] [ 3] [418] +14:12:36 [ 22] [ 3] [021] +14:12:36 [ 25] [ 2] [01] +14:12:36 [ 32] [ 6] [180893] +14:12:36 [ 35] [ 32] [6213543000073972=491212017397958] +14:12:36 [ 37] [ 12] [507907269578] +14:12:36 [ 41] [ 8] [0301LPBX] +14:12:36 [ 42] [ 15] [999999 ] +14:12:36 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:12:36 [ 49] [ 3] [418] +14:12:36 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:12:36 ============================================================================ +14:12:36 + + +waiting on router queue for slot.... +14:12:36 Sending to : +14:12:36 ============================================================================ +14:12:36 Sending to : +14:12:36 ============================================================================ +14:12:36 ============================================================================ +14:12:36 Slot Id : <285> +14:12:36 Transaction Type : REQUEST +14:12:36 Received From : +14:12:36 ============================================================================ +14:12:36 FNo. Len. Field Value +14:12:36 ============================================================================ +14:12:36 [ 1] [ 4] [0200] +14:12:36 [ 2] [ 16] [6213543000073972] +14:12:36 [ 3] [ 6] [301000] +14:12:36 [ 7] [ 10] [0320071143] +14:12:36 [ 11] [ 6] [269578] +14:12:36 [ 12] [ 6] [141143] +14:12:36 [ 13] [ 4] [0320] +14:12:36 [ 14] [ 4] [4912] +14:12:36 [ 15] [ 4] [0320] +14:12:36 [ 18] [ 4] [6011] +14:12:36 [ 19] [ 3] [418] +14:12:36 [ 22] [ 3] [021] +14:12:36 [ 25] [ 2] [01] +14:12:36 [ 32] [ 6] [180893] +14:12:36 [ 35] [ 32] [6213543000073972=491212017397958] +14:12:36 [ 37] [ 12] [507907269578] +14:12:36 [ 41] [ 8] [0301LPBX] +14:12:36 [ 42] [ 15] [999999 ] +14:12:36 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:12:36 [ 49] [ 3] [418] +14:12:36 [ 52] [ 16] [CF9A2FF3FE1A1716] +14:12:36 ============================================================================ +14:12:36 + + +waiting on router queue for slot.... +14:12:36 Sending to : +14:12:36 ============================================================================ +14:12:36 ============================================================================ +14:12:36 Slot Id : <285> +14:12:36 Transaction Type : REQUEST +14:12:36 Received From : +14:12:36 ============================================================================ +14:12:36 FNo. Len. Field Value +14:12:36 ============================================================================ +14:12:36 [ 1] [ 4] [0200] +14:12:36 [ 2] [ 16] [6213543000073972] +14:12:36 [ 3] [ 6] [301000] +14:12:36 [ 7] [ 10] [0320071143] +14:12:36 [ 11] [ 6] [269578] +14:12:36 [ 12] [ 6] [141143] +14:12:36 [ 13] [ 4] [0320] +14:12:36 [ 14] [ 4] [4912] +14:12:36 [ 15] [ 4] [0320] +14:12:36 [ 18] [ 4] [6011] +14:12:36 [ 19] [ 3] [418] +14:12:36 [ 22] [ 3] [021] +14:12:36 [ 25] [ 2] [01] +14:12:36 [ 32] [ 6] [180893] +14:12:36 [ 35] [ 32] [6213543000073972=491212017397958] +14:12:36 [ 37] [ 12] [507907269578] +14:12:36 [ 41] [ 8] [0301LPBX] +14:12:36 [ 42] [ 15] [999999 ] +14:12:36 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +14:12:36 [ 49] [ 3] [418] +14:12:36 [ 52] [ 16] [E42743FA8A68826A] +14:12:36 ============================================================================ +14:12:36 + + +waiting on router queue for slot.... +14:12:36 Sending to : <0> +14:12:36 ============================================================================ +14:12:37 ============================================================================ +14:12:37 Slot Id : <285> +14:12:37 Transaction Type : RESPONSE +14:12:37 Received From : +14:12:37 ============================================================================ +14:12:37 FNo. Len. Field Value +14:12:37 ============================================================================ +14:12:37 [ 1] [ 4] [0210] +14:12:37 [ 2] [ 16] [6213543000073972] +14:12:37 [ 3] [ 6] [301000] +14:12:37 [ 4] [ 12] [000000000000] +14:12:37 [ 7] [ 10] [0320071143] +14:12:37 [ 11] [ 6] [269578] +14:12:37 [ 12] [ 6] [141143] +14:12:37 [ 13] [ 4] [0320] +14:12:37 [ 15] [ 4] [0320] +14:12:37 [ 18] [ 4] [6011] +14:12:37 [ 19] [ 3] [418] +14:12:37 [ 32] [ 6] [180893] +14:12:37 [ 35] [ 32] [6213543000073972=491212017397958] +14:12:37 [ 37] [ 12] [507907269578] +14:12:37 [ 38] [ 6] [958088] +14:12:37 [ 39] [ 2] [00] +14:12:37 [ 41] [ 8] [0301LPBX] +14:12:37 [ 49] [ 3] [418] +14:12:37 [ 54] [ 40] [1001418C0003560521021002418C000356052102] +14:12:37 ============================================================================ +14:12:37 Sending to : +14:12:37 ============================================================================ +14:12:37 + + +waiting on router queue for slot.... +14:12:37 ============================================================================ +14:12:37 Slot Id : <315> +14:12:37 Transaction Type : RESPONSE +14:12:37 Received From : +14:12:37 ============================================================================ +14:12:37 FNo. Len. Field Value +14:12:37 ============================================================================ +14:12:37 [ 1] [ 4] [0210] +14:12:37 [ 2] [ 16] [1888880000028886] +14:12:37 [ 3] [ 6] [301000] +14:12:37 [ 4] [ 12] [000000000000] +14:12:37 [ 7] [ 10] [0320141227] +14:12:37 [ 11] [ 6] [767092] +14:12:37 [ 12] [ 6] [141227] +14:12:37 [ 13] [ 4] [0320] +14:12:37 [ 15] [ 4] [0320] +14:12:37 [ 18] [ 4] [6011] +14:12:37 [ 19] [ 3] [418] +14:12:37 [ 32] [ 6] [621354] +14:12:37 [ 37] [ 12] [507903308677] +14:12:37 [ 38] [ 6] [907888] +14:12:37 [ 39] [ 2] [00] +14:12:37 [ 41] [ 8] [13001000] +14:12:37 [ 49] [ 3] [418] +14:12:37 [ 54] [ 20] [1001418C000049300000] +14:12:37 ============================================================================ +14:12:37 Calculate Source COMM Id = 0 +14:12:37 ============================================================================ +14:12:37 + + +waiting on router queue for slot.... +14:12:38 ============================================================================ +14:12:38 Slot Id : <285> +14:12:38 Transaction Type : RESPONSE +14:12:38 Received From : +14:12:38 ============================================================================ +14:12:38 FNo. Len. Field Value +14:12:38 ============================================================================ +14:12:38 [ 1] [ 4] [0210] +14:12:38 [ 2] [ 16] [6213543000073972] +14:12:38 [ 3] [ 6] [301000] +14:12:38 [ 4] [ 12] [000000000000] +14:12:38 [ 7] [ 10] [0320071143] +14:12:38 [ 11] [ 6] [269578] +14:12:38 [ 12] [ 6] [141143] +14:12:38 [ 13] [ 4] [0320] +14:12:38 [ 15] [ 4] [0320] +14:12:38 [ 18] [ 4] [6011] +14:12:38 [ 19] [ 3] [418] +14:12:38 [ 32] [ 6] [180893] +14:12:38 [ 35] [ 32] [6213543000073972=491212017397958] +14:12:38 [ 37] [ 12] [507907269578] +14:12:38 [ 38] [ 6] [958088] +14:12:38 [ 39] [ 2] [00] +14:12:38 [ 41] [ 8] [0301LPBX] +14:12:38 [ 49] [ 3] [418] +14:12:38 [ 54] [ 40] [1001418C0003560521021002418C000356052102] +14:12:38 ============================================================================ +14:12:38 Calculate Source COMM Id = 2 +14:12:38 ============================================================================ +14:12:38 + + +waiting on router queue for slot.... +14:12:39 ============================================================================ +14:12:39 Slot Id : <297> +14:12:39 Transaction Type : REQUEST +14:12:39 Received From : +14:12:39 ============================================================================ +14:12:39 FNo. Len. Field Value +14:12:39 ============================================================================ +14:12:39 [ 1] [ 4] [0200] +14:12:39 [ 2] [ 16] [6688990105014904] +14:12:39 [ 3] [ 6] [010000] +14:12:39 [ 4] [ 12] [000030000000] +14:12:39 [ 7] [ 10] [0320141235] +14:12:39 [ 11] [ 6] [767124] +14:12:39 [ 12] [ 6] [141235] +14:12:39 [ 13] [ 4] [0320] +14:12:39 [ 15] [ 4] [0320] +14:12:39 [ 18] [ 4] [6011] +14:12:39 [ 22] [ 3] [900] +14:12:39 [ 25] [ 2] [02] +14:12:39 [ 28] [ 9] [D00002000] +14:12:39 [ 32] [ 6] [621354] +14:12:39 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:12:39 [ 37] [ 12] [507904635688] +14:12:39 [ 41] [ 8] [17000800] +14:12:39 [ 42] [ 15] [NATIVE ] +14:12:39 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:12:39 [ 49] [ 3] [418] +14:12:39 [ 52] [ 16] [8D48F9BC598F7280] +14:12:39 ============================================================================ +14:12:39 + + +waiting on router queue for slot.... +14:12:39 Sending to : +14:12:39 ============================================================================ +14:12:39 Sending to : +14:12:39 ============================================================================ +14:12:40 ============================================================================ +14:12:40 Slot Id : <297> +14:12:40 Transaction Type : REQUEST +14:12:40 Received From : +14:12:40 ============================================================================ +14:12:40 FNo. Len. Field Value +14:12:40 ============================================================================ +14:12:40 [ 1] [ 4] [0200] +14:12:40 [ 2] [ 16] [6688990105014904] +14:12:40 [ 3] [ 6] [010000] +14:12:40 [ 4] [ 12] [000030000000] +14:12:40 [ 7] [ 10] [0320141235] +14:12:40 [ 11] [ 6] [767124] +14:12:40 [ 12] [ 6] [141235] +14:12:40 [ 13] [ 4] [0320] +14:12:40 [ 15] [ 4] [0320] +14:12:40 [ 18] [ 4] [6011] +14:12:40 [ 22] [ 3] [900] +14:12:40 [ 25] [ 2] [02] +14:12:40 [ 28] [ 9] [D00002000] +14:12:40 [ 32] [ 6] [621354] +14:12:40 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:12:40 [ 37] [ 12] [507904635688] +14:12:40 [ 41] [ 8] [17000800] +14:12:40 [ 42] [ 15] [NATIVE ] +14:12:40 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:12:40 [ 49] [ 3] [418] +14:12:40 [ 52] [ 16] [8D48F9BC598F7280] +14:12:40 ============================================================================ +14:12:40 + + +waiting on router queue for slot.... +14:12:40 Sending to : +14:12:40 ============================================================================ +14:12:40 ============================================================================ +14:12:40 Slot Id : <297> +14:12:40 Transaction Type : REQUEST +14:12:40 Received From : +14:12:40 ============================================================================ +14:12:40 FNo. Len. Field Value +14:12:40 ============================================================================ +14:12:40 [ 1] [ 4] [0200] +14:12:40 [ 2] [ 16] [6688990105014904] +14:12:40 [ 3] [ 6] [010000] +14:12:40 [ 4] [ 12] [000030000000] +14:12:40 [ 7] [ 10] [0320141235] +14:12:40 [ 11] [ 6] [767124] +14:12:40 [ 12] [ 6] [141235] +14:12:40 [ 13] [ 4] [0320] +14:12:40 [ 15] [ 4] [0320] +14:12:40 [ 18] [ 4] [6011] +14:12:40 [ 22] [ 3] [900] +14:12:40 [ 25] [ 2] [02] +14:12:40 [ 28] [ 9] [D00002000] +14:12:40 [ 32] [ 6] [621354] +14:12:40 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:12:40 [ 37] [ 12] [507904635688] +14:12:40 [ 41] [ 8] [17000800] +14:12:40 [ 42] [ 15] [NATIVE ] +14:12:40 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:12:40 [ 49] [ 3] [418] +14:12:40 [ 52] [ 16] [883C480C8C0C895A] +14:12:40 ============================================================================ +14:12:40 + + +waiting on router queue for slot.... +14:12:40 Sending to : <4> +14:12:40 ============================================================================ +14:12:42 ============================================================================ +14:12:42 Slot Id : <297> +14:12:42 Transaction Type : RESPONSE +14:12:42 Received From : +14:12:42 ============================================================================ +14:12:42 FNo. Len. Field Value +14:12:42 ============================================================================ +14:12:42 [ 1] [ 4] [0210] +14:12:42 [ 2] [ 16] [6688990105014904] +14:12:42 [ 3] [ 6] [010000] +14:12:42 [ 4] [ 12] [000030000000] +14:12:42 [ 11] [ 6] [767124] +14:12:42 [ 12] [ 6] [141235] +14:12:42 [ 15] [ 4] [0320] +14:12:42 [ 18] [ 4] [6011] +14:12:42 [ 32] [ 6] [621354] +14:12:42 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:12:42 [ 37] [ 12] [507904635688] +14:12:42 [ 38] [ 6] [550310] +14:12:42 [ 39] [ 2] [00] +14:12:42 [ 41] [ 8] [17000800] +14:12:42 [ 49] [ 3] [418] +14:12:42 [ 54] [ 20] [0002418C000005290816] +14:12:42 ============================================================================ +14:12:42 Sending to : +14:12:42 ============================================================================ +14:12:42 + + +waiting on router queue for slot.... +14:12:43 ============================================================================ +14:12:43 Slot Id : <297> +14:12:43 Transaction Type : RESPONSE +14:12:43 Received From : +14:12:43 ============================================================================ +14:12:43 FNo. Len. Field Value +14:12:43 ============================================================================ +14:12:43 [ 1] [ 4] [0210] +14:12:43 [ 2] [ 16] [6688990105014904] +14:12:43 [ 3] [ 6] [010000] +14:12:43 [ 4] [ 12] [000030000000] +14:12:43 [ 11] [ 6] [767124] +14:12:43 [ 12] [ 6] [141235] +14:12:43 [ 15] [ 4] [0320] +14:12:43 [ 18] [ 4] [6011] +14:12:43 [ 32] [ 6] [621354] +14:12:43 [ 35] [ 37] [6688990105014904=43061231490465600000] +14:12:43 [ 37] [ 12] [507904635688] +14:12:43 [ 38] [ 6] [550310] +14:12:43 [ 39] [ 2] [00] +14:12:43 [ 41] [ 8] [17000800] +14:12:43 [ 49] [ 3] [418] +14:12:43 [ 54] [ 20] [0002418C000005290816] +14:12:43 ============================================================================ +14:12:43 Calculate Source COMM Id = 0 +14:12:43 ============================================================================ +14:12:43 + + +waiting on router queue for slot.... +14:12:53 ============================================================================ +14:12:53 Slot Id : <289> +14:12:53 Transaction Type : REQUEST +14:12:53 Received From : +14:12:53 ============================================================================ +14:12:53 FNo. Len. Field Value +14:12:53 ============================================================================ +14:12:53 [ 1] [ 4] [0800] +14:12:53 [ 7] [ 10] [0320071201] +14:12:53 [ 11] [ 6] [156731] +14:12:53 [ 70] [ 3] [301] +14:12:53 ============================================================================ +14:12:53 + + +waiting on router queue for slot.... +14:12:53 Sending to : +14:12:53 ============================================================================ +14:12:53 ============================================================================ +14:12:53 Slot Id : <289> +14:12:53 Transaction Type : RESPONSE +14:12:53 Received From : +14:12:53 ============================================================================ +14:12:53 FNo. Len. Field Value +14:12:53 ============================================================================ +14:12:53 [ 1] [ 4] [0810] +14:12:53 [ 7] [ 10] [0320071201] +14:12:53 [ 11] [ 6] [156731] +14:12:53 [ 39] [ 2] [00] +14:12:53 [ 70] [ 3] [301] +14:12:53 ============================================================================ +14:12:53 Calculate Source COMM Id = 2 +14:12:53 ============================================================================ +14:12:53 + + +waiting on router queue for slot.... +14:12:59 ============================================================================ +14:12:59 Slot Id : <291> +14:12:59 Transaction Type : REQUEST +14:12:59 Received From : +14:12:59 ============================================================================ +14:12:59 FNo. Len. Field Value +14:12:59 ============================================================================ +14:12:59 [ 1] [ 4] [0200] +14:12:59 [ 2] [ 16] [6688990100951506] +14:12:59 [ 3] [ 6] [301000] +14:12:59 [ 4] [ 12] [000000000000] +14:12:59 [ 7] [ 10] [0320141254] +14:12:59 [ 11] [ 6] [767202] +14:12:59 [ 12] [ 6] [141254] +14:12:59 [ 13] [ 4] [0320] +14:12:59 [ 15] [ 4] [0320] +14:12:59 [ 18] [ 4] [6011] +14:12:59 [ 22] [ 3] [900] +14:12:59 [ 25] [ 2] [02] +14:12:59 [ 28] [ 9] [D00000000] +14:12:59 [ 32] [ 6] [621354] +14:12:59 [ 35] [ 37] [6688990100951506=41121231150629900000] +14:12:59 [ 37] [ 12] [507904719633] +14:12:59 [ 41] [ 8] [18001000] +14:12:59 [ 42] [ 15] [NATIVE ] +14:12:59 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:12:59 [ 49] [ 3] [418] +14:12:59 [ 52] [ 16] [7F544125426769E5] +14:12:59 ============================================================================ +14:12:59 + + +waiting on router queue for slot.... +14:12:59 Sending to : +14:12:59 ============================================================================ +14:12:59 Sending to : +14:12:59 ============================================================================ +14:12:59 ============================================================================ +14:12:59 Slot Id : <291> +14:12:59 Transaction Type : REQUEST +14:12:59 Received From : +14:12:59 ============================================================================ +14:12:59 FNo. Len. Field Value +14:12:59 ============================================================================ +14:12:59 [ 1] [ 4] [0200] +14:12:59 [ 2] [ 16] [6688990100951506] +14:12:59 [ 3] [ 6] [301000] +14:12:59 [ 4] [ 12] [000000000000] +14:12:59 [ 7] [ 10] [0320141254] +14:12:59 [ 11] [ 6] [767202] +14:12:59 [ 12] [ 6] [141254] +14:12:59 [ 13] [ 4] [0320] +14:12:59 [ 15] [ 4] [0320] +14:12:59 [ 18] [ 4] [6011] +14:12:59 [ 22] [ 3] [900] +14:12:59 [ 25] [ 2] [02] +14:12:59 [ 28] [ 9] [D00000000] +14:12:59 [ 32] [ 6] [621354] +14:12:59 [ 35] [ 37] [6688990100951506=41121231150629900000] +14:12:59 [ 37] [ 12] [507904719633] +14:12:59 [ 41] [ 8] [18001000] +14:12:59 [ 42] [ 15] [NATIVE ] +14:12:59 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:12:59 [ 49] [ 3] [418] +14:12:59 [ 52] [ 16] [7F544125426769E5] +14:12:59 ============================================================================ +14:12:59 + + +waiting on router queue for slot.... +14:12:59 Sending to : +14:12:59 ============================================================================ +14:12:59 ============================================================================ +14:12:59 Slot Id : <291> +14:12:59 Transaction Type : REQUEST +14:12:59 Received From : +14:12:59 ============================================================================ +14:12:59 FNo. Len. Field Value +14:12:59 ============================================================================ +14:12:59 [ 1] [ 4] [0200] +14:12:59 [ 2] [ 16] [6688990100951506] +14:12:59 [ 3] [ 6] [301000] +14:12:59 [ 4] [ 12] [000000000000] +14:12:59 [ 7] [ 10] [0320141254] +14:12:59 [ 11] [ 6] [767202] +14:12:59 [ 12] [ 6] [141254] +14:12:59 [ 13] [ 4] [0320] +14:12:59 [ 15] [ 4] [0320] +14:12:59 [ 18] [ 4] [6011] +14:12:59 [ 22] [ 3] [900] +14:12:59 [ 25] [ 2] [02] +14:12:59 [ 28] [ 9] [D00000000] +14:12:59 [ 32] [ 6] [621354] +14:12:59 [ 35] [ 37] [6688990100951506=41121231150629900000] +14:12:59 [ 37] [ 12] [507904719633] +14:12:59 [ 41] [ 8] [18001000] +14:12:59 [ 42] [ 15] [NATIVE ] +14:12:59 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:12:59 [ 49] [ 3] [418] +14:12:59 [ 52] [ 16] [F44DE09E4012F418] +14:12:59 ============================================================================ +14:12:59 + + +waiting on router queue for slot.... +14:12:59 Sending to : <4> +14:12:59 ============================================================================ +14:13:00 ============================================================================ +14:13:00 Slot Id : <291> +14:13:00 Transaction Type : RESPONSE +14:13:00 Received From : +14:13:00 ============================================================================ +14:13:00 FNo. Len. Field Value +14:13:00 ============================================================================ +14:13:00 [ 1] [ 4] [0210] +14:13:00 [ 2] [ 16] [6688990100951506] +14:13:00 [ 3] [ 6] [301000] +14:13:00 [ 4] [ 12] [000000000000] +14:13:00 [ 11] [ 6] [767202] +14:13:00 [ 12] [ 6] [141254] +14:13:00 [ 15] [ 4] [0320] +14:13:00 [ 18] [ 4] [6011] +14:13:00 [ 32] [ 6] [621354] +14:13:00 [ 35] [ 37] [6688990100951506=41121231150629900000] +14:13:00 [ 37] [ 12] [507904719633] +14:13:00 [ 38] [ 6] [200312] +14:13:00 [ 39] [ 2] [00] +14:13:00 [ 41] [ 8] [18001000] +14:13:00 [ 49] [ 3] [418] +14:13:00 [ 54] [ 20] [1002418C000278919112] +14:13:00 ============================================================================ +14:13:00 Sending to : +14:13:00 ============================================================================ +14:13:00 + + +waiting on router queue for slot.... +14:13:02 ============================================================================ +14:13:02 Slot Id : <291> +14:13:02 Transaction Type : RESPONSE +14:13:02 Received From : +14:13:02 ============================================================================ +14:13:02 FNo. Len. Field Value +14:13:02 ============================================================================ +14:13:02 [ 1] [ 4] [0210] +14:13:02 [ 2] [ 16] [6688990100951506] +14:13:02 [ 3] [ 6] [301000] +14:13:02 [ 4] [ 12] [000000000000] +14:13:02 [ 11] [ 6] [767202] +14:13:02 [ 12] [ 6] [141254] +14:13:02 [ 15] [ 4] [0320] +14:13:02 [ 18] [ 4] [6011] +14:13:02 [ 32] [ 6] [621354] +14:13:02 [ 35] [ 37] [6688990100951506=41121231150629900000] +14:13:02 [ 37] [ 12] [507904719633] +14:13:02 [ 38] [ 6] [200312] +14:13:02 [ 39] [ 2] [00] +14:13:02 [ 41] [ 8] [18001000] +14:13:02 [ 49] [ 3] [418] +14:13:02 [ 54] [ 20] [1002418C000278919112] +14:13:02 ============================================================================ +14:13:02 Calculate Source COMM Id = 0 +14:13:02 ============================================================================ +14:13:02 + + +waiting on router queue for slot.... +14:13:04 ============================================================================ +14:13:04 Slot Id : <326> +14:13:04 Transaction Type : REQUEST +14:13:04 Received From : +14:13:04 ============================================================================ +14:13:04 FNo. Len. Field Value +14:13:04 ============================================================================ +14:13:04 [ 1] [ 4] [0800] +14:13:04 [ 7] [ 10] [0320071211] +14:13:04 [ 11] [ 6] [156732] +14:13:04 [ 70] [ 3] [301] +14:13:04 ============================================================================ +14:13:04 + + +waiting on router queue for slot.... +14:13:04 Sending to : +14:13:04 ============================================================================ +14:13:04 ============================================================================ +14:13:04 Slot Id : <326> +14:13:04 Transaction Type : RESPONSE +14:13:04 Received From : +14:13:04 ============================================================================ +14:13:04 FNo. Len. Field Value +14:13:04 ============================================================================ +14:13:04 [ 1] [ 4] [0810] +14:13:04 [ 7] [ 10] [0320071211] +14:13:04 [ 11] [ 6] [156732] +14:13:04 [ 39] [ 2] [00] +14:13:04 [ 70] [ 3] [301] +14:13:04 ============================================================================ +14:13:04 Calculate Source COMM Id = 2 +14:13:04 ============================================================================ +14:13:04 + + +waiting on router queue for slot.... +14:13:08 ============================================================================ +14:13:08 Slot Id : <301> +14:13:08 Transaction Type : REQUEST +14:13:08 Received From : +14:13:08 ============================================================================ +14:13:08 FNo. Len. Field Value +14:13:08 ============================================================================ +14:13:08 [ 1] [ 4] [0800] +14:13:08 [ 2] [ 5] [02531] +14:13:08 [ 3] [ 6] [579148] +14:13:08 [ 7] [ 10] [0320071308] +14:13:08 [ 11] [ 6] [807237] +14:13:08 [ 15] [ 10] [0320071308] +14:13:08 [ 37] [ 11] [57914807237] +14:13:08 [ 70] [ 3] [001] +14:13:08 ============================================================================ +14:13:08 + + +waiting on router queue for slot.... +14:13:08 ============================================================================ +14:13:08 Slot Id : <301> +14:13:08 Transaction Type : RESPONSE +14:13:08 Received From : +14:13:08 ============================================================================ +14:13:08 FNo. Len. Field Value +14:13:08 ============================================================================ +14:13:08 [ 1] [ 4] [0810] +14:13:08 [ 7] [ 10] [0320071308] +14:13:08 [ 11] [ 6] [807237] +14:13:08 [ 15] [ 4] [0320] +14:13:08 [ 37] [ 12] [57914807237] +14:13:08 [ 39] [ 2] [00] +14:13:08 [ 70] [ 3] [001] +14:13:08 ============================================================================ +14:13:08 Sending to : +14:13:08 ============================================================================ +14:13:08 + + +waiting on router queue for slot.... +14:13:16 ============================================================================ +14:13:16 Slot Id : <327> +14:13:16 Transaction Type : REQUEST +14:13:16 Received From : +14:13:16 ============================================================================ +14:13:16 FNo. Len. Field Value +14:13:16 ============================================================================ +14:13:16 [ 1] [ 4] [0800] +14:13:16 [ 7] [ 10] [0320071222] +14:13:16 [ 11] [ 6] [156733] +14:13:16 [ 70] [ 3] [301] +14:13:16 ============================================================================ +14:13:16 + + +waiting on router queue for slot.... +14:13:16 Sending to : +14:13:16 ============================================================================ +14:13:16 ============================================================================ +14:13:16 Slot Id : <327> +14:13:16 Transaction Type : RESPONSE +14:13:16 Received From : +14:13:16 ============================================================================ +14:13:16 FNo. Len. Field Value +14:13:16 ============================================================================ +14:13:16 [ 1] [ 4] [0810] +14:13:16 [ 7] [ 10] [0320071222] +14:13:16 [ 11] [ 6] [156733] +14:13:16 [ 39] [ 2] [00] +14:13:16 [ 70] [ 3] [301] +14:13:16 ============================================================================ +14:13:16 Calculate Source COMM Id = 2 +14:13:16 ============================================================================ +14:13:16 + + +waiting on router queue for slot.... +14:13:29 ============================================================================ +14:13:29 Slot Id : <305> +14:13:29 Transaction Type : REQUEST +14:13:29 Received From : +14:13:29 ============================================================================ +14:13:29 FNo. Len. Field Value +14:13:29 ============================================================================ +14:13:29 [ 1] [ 4] [0800] +14:13:29 [ 7] [ 10] [0320212517] +14:13:29 [ 11] [ 6] [142517] +14:13:29 [ 37] [ 12] [57914142517] +14:13:29 [ 70] [ 3] [301] +14:13:29 ============================================================================ +14:13:29 + + +waiting on router queue for slot.... +14:13:29 Sending to : +14:13:29 ============================================================================ +14:13:29 ============================================================================ +14:13:29 Slot Id : <305> +14:13:29 Transaction Type : RESPONSE +14:13:29 Received From : +14:13:29 ============================================================================ +14:13:29 FNo. Len. Field Value +14:13:29 ============================================================================ +14:13:29 [ 1] [ 4] [0810] +14:13:29 [ 7] [ 10] [0320212517] +14:13:29 [ 11] [ 6] [142517] +14:13:29 [ 37] [ 12] [579141425170] +14:13:29 [ 39] [ 2] [00] +14:13:29 [ 70] [ 3] [810] +14:13:29 ============================================================================ +14:13:29 Calculate Source COMM Id = 6 +14:13:29 ============================================================================ +14:13:29 + + +waiting on router queue for slot.... +14:13:29 ============================================================================ +14:13:29 Slot Id : <314> +14:13:29 Transaction Type : REQUEST +14:13:29 Received From : +14:13:29 ============================================================================ +14:13:29 FNo. Len. Field Value +14:13:29 ============================================================================ +14:13:29 [ 1] [ 4] [0800] +14:13:29 [ 7] [ 10] [0320071234] +14:13:29 [ 11] [ 6] [156734] +14:13:29 [ 70] [ 3] [301] +14:13:29 ============================================================================ +14:13:29 + + +waiting on router queue for slot.... +14:13:29 Sending to : +14:13:29 ============================================================================ +14:13:29 ============================================================================ +14:13:29 Slot Id : <314> +14:13:29 Transaction Type : RESPONSE +14:13:29 Received From : +14:13:29 ============================================================================ +14:13:29 FNo. Len. Field Value +14:13:29 ============================================================================ +14:13:29 [ 1] [ 4] [0810] +14:13:29 [ 7] [ 10] [0320071234] +14:13:29 [ 11] [ 6] [156734] +14:13:29 [ 39] [ 2] [00] +14:13:29 [ 70] [ 3] [301] +14:13:29 ============================================================================ +14:13:29 Calculate Source COMM Id = 2 +14:13:29 ============================================================================ +14:13:29 + + +waiting on router queue for slot.... +14:13:42 ============================================================================ +14:13:42 Slot Id : <302> +14:13:42 Transaction Type : REQUEST +14:13:42 Received From : +14:13:42 ============================================================================ +14:13:42 FNo. Len. Field Value +14:13:42 ============================================================================ +14:13:42 [ 1] [ 4] [0800] +14:13:42 [ 7] [ 10] [0320071249] +14:13:42 [ 11] [ 6] [156735] +14:13:42 [ 70] [ 3] [301] +14:13:42 ============================================================================ +14:13:42 + + +waiting on router queue for slot.... +14:13:42 Sending to : +14:13:42 ============================================================================ +14:13:42 ============================================================================ +14:13:42 Slot Id : <302> +14:13:42 Transaction Type : RESPONSE +14:13:42 Received From : +14:13:42 ============================================================================ +14:13:42 FNo. Len. Field Value +14:13:42 ============================================================================ +14:13:42 [ 1] [ 4] [0810] +14:13:42 [ 7] [ 10] [0320071249] +14:13:42 [ 11] [ 6] [156735] +14:13:42 [ 39] [ 2] [00] +14:13:42 [ 70] [ 3] [301] +14:13:42 ============================================================================ +14:13:42 Calculate Source COMM Id = 2 +14:13:42 ============================================================================ +14:13:42 + + +waiting on router queue for slot.... +14:13:42 ============================================================================ +14:13:42 Slot Id : <331> +14:13:42 Transaction Type : REQUEST +14:13:42 Received From : +14:13:42 ============================================================================ +14:13:42 FNo. Len. Field Value +14:13:42 ============================================================================ +14:13:42 [ 1] [ 4] [0200] +14:13:42 [ 2] [ 16] [1808931800012450] +14:13:42 [ 3] [ 6] [300000] +14:13:42 [ 4] [ 12] [000000000000] +14:13:42 [ 7] [ 10] [0320141338] +14:13:42 [ 11] [ 6] [767354] +14:13:42 [ 12] [ 6] [141338] +14:13:42 [ 13] [ 4] [0320] +14:13:42 [ 15] [ 4] [0320] +14:13:42 [ 18] [ 4] [6011] +14:13:42 [ 22] [ 3] [900] +14:13:42 [ 25] [ 2] [02] +14:13:42 [ 28] [ 9] [D00000000] +14:13:42 [ 32] [ 6] [621354] +14:13:42 [ 35] [ 27] [1808931800012450=1803500989] +14:13:42 [ 37] [ 12] [507904635689] +14:13:42 [ 41] [ 8] [17000800] +14:13:42 [ 42] [ 15] [NATIVE ] +14:13:42 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:13:42 [ 49] [ 3] [418] +14:13:42 [ 52] [ 16] [397D9A451524AD73] +14:13:42 ============================================================================ +14:13:42 + + +waiting on router queue for slot.... +14:13:42 Sending to : +14:13:42 ============================================================================ +14:13:42 Sending to : +14:13:42 ============================================================================ +14:13:43 ============================================================================ +14:13:43 Slot Id : <331> +14:13:43 Transaction Type : REQUEST +14:13:43 Received From : +14:13:43 ============================================================================ +14:13:43 FNo. Len. Field Value +14:13:43 ============================================================================ +14:13:43 [ 1] [ 4] [0200] +14:13:43 [ 2] [ 16] [1808931800012450] +14:13:43 [ 3] [ 6] [300000] +14:13:43 [ 4] [ 12] [000000000000] +14:13:43 [ 7] [ 10] [0320141338] +14:13:43 [ 11] [ 6] [767354] +14:13:43 [ 12] [ 6] [141338] +14:13:43 [ 13] [ 4] [0320] +14:13:43 [ 15] [ 4] [0320] +14:13:43 [ 18] [ 4] [6011] +14:13:43 [ 22] [ 3] [900] +14:13:43 [ 25] [ 2] [02] +14:13:43 [ 28] [ 9] [D00000000] +14:13:43 [ 32] [ 6] [621354] +14:13:43 [ 35] [ 27] [1808931800012450=1803500989] +14:13:43 [ 37] [ 12] [507904635689] +14:13:43 [ 41] [ 8] [17000800] +14:13:43 [ 42] [ 15] [NATIVE ] +14:13:43 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:13:43 [ 49] [ 3] [418] +14:13:43 [ 52] [ 16] [397D9A451524AD73] +14:13:43 ============================================================================ +14:13:43 + + +waiting on router queue for slot.... +14:13:43 Sending to : +14:13:43 ============================================================================ +14:13:43 ============================================================================ +14:13:43 Slot Id : <331> +14:13:43 Transaction Type : REQUEST +14:13:43 Received From : +14:13:43 ============================================================================ +14:13:43 FNo. Len. Field Value +14:13:43 ============================================================================ +14:13:43 [ 1] [ 4] [0200] +14:13:43 [ 2] [ 16] [1808931800012450] +14:13:43 [ 3] [ 6] [300000] +14:13:43 [ 4] [ 12] [000000000000] +14:13:43 [ 7] [ 10] [0320141338] +14:13:43 [ 11] [ 6] [767354] +14:13:43 [ 12] [ 6] [141338] +14:13:43 [ 13] [ 4] [0320] +14:13:43 [ 15] [ 4] [0320] +14:13:43 [ 18] [ 4] [6011] +14:13:43 [ 22] [ 3] [900] +14:13:43 [ 25] [ 2] [02] +14:13:43 [ 28] [ 9] [D00000000] +14:13:43 [ 32] [ 6] [621354] +14:13:43 [ 35] [ 27] [1808931800012450=1803500989] +14:13:43 [ 37] [ 12] [507904635689] +14:13:43 [ 41] [ 8] [17000800] +14:13:43 [ 42] [ 15] [NATIVE ] +14:13:43 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:13:43 [ 49] [ 3] [418] +14:13:43 [ 52] [ 16] [24FC87E918E6E1D9] +14:13:43 ============================================================================ +14:13:43 + + +waiting on router queue for slot.... +14:13:43 Sending to : <2> +14:13:43 ============================================================================ +14:13:45 ============================================================================ +14:13:45 Slot Id : <331> +14:13:45 Transaction Type : RESPONSE +14:13:45 Received From : +14:13:45 ============================================================================ +14:13:45 FNo. Len. Field Value +14:13:45 ============================================================================ +14:13:45 [ 1] [ 4] [0210] +14:13:45 [ 2] [ 16] [1808931800012450] +14:13:45 [ 3] [ 6] [300000] +14:13:45 [ 7] [ 10] [0320141338] +14:13:45 [ 11] [ 6] [767354] +14:13:45 [ 12] [ 6] [141338] +14:13:45 [ 13] [ 4] [0320] +14:13:45 [ 14] [ 4] [1803] +14:13:45 [ 19] [ 3] [418] +14:13:45 [ 32] [ 6] [621354] +14:13:45 [ 37] [ 12] [507904635689] +14:13:45 [ 38] [ 6] [767354] +14:13:45 [ 39] [ 2] [00] +14:13:45 [ 41] [ 8] [17000800] +14:13:45 [ 49] [ 3] [418] +14:13:45 [ 52] [ 16] [24FC87E918E6E1D9] +14:13:45 [ 54] [ 20] [0002418C000241256700] +14:13:45 ============================================================================ +14:13:45 Sending to : +14:13:45 ============================================================================ +14:13:45 + + +waiting on router queue for slot.... +14:13:45 ============================================================================ +14:13:45 Slot Id : <292> +14:13:45 Transaction Type : REQUEST +14:13:45 Received From : +14:13:45 ============================================================================ +14:13:45 FNo. Len. Field Value +14:13:45 ============================================================================ +14:13:45 [ 1] [ 4] [0200] +14:13:45 [ 2] [ 16] [6688990030018756] +14:13:45 [ 3] [ 6] [302000] +14:13:45 [ 7] [ 10] [0320071252] +14:13:45 [ 11] [ 6] [269583] +14:13:45 [ 12] [ 6] [141252] +14:13:45 [ 13] [ 4] [0320] +14:13:45 [ 14] [ 4] [9805] +14:13:45 [ 15] [ 4] [0320] +14:13:45 [ 18] [ 4] [6011] +14:13:45 [ 19] [ 3] [418] +14:13:45 [ 22] [ 3] [021] +14:13:45 [ 25] [ 2] [01] +14:13:45 [ 32] [ 6] [180893] +14:13:45 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:13:45 [ 37] [ 12] [507907269583] +14:13:45 [ 41] [ 8] [0486HPXK] +14:13:45 [ 42] [ 15] [999999 ] +14:13:45 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +14:13:45 [ 49] [ 3] [418] +14:13:45 [ 52] [ 16] [3642CEF7D4C45526] +14:13:45 ============================================================================ +14:13:45 + + +waiting on router queue for slot.... +14:13:45 Sending to : +14:13:45 ============================================================================ +14:13:45 Sending to : +14:13:45 ============================================================================ +14:13:45 ============================================================================ +14:13:45 Slot Id : <292> +14:13:45 Transaction Type : REQUEST +14:13:45 Received From : +14:13:45 ============================================================================ +14:13:45 FNo. Len. Field Value +14:13:45 ============================================================================ +14:13:45 [ 1] [ 4] [0200] +14:13:45 [ 2] [ 16] [6688990030018756] +14:13:45 [ 3] [ 6] [302000] +14:13:45 [ 7] [ 10] [0320071252] +14:13:45 [ 11] [ 6] [269583] +14:13:45 [ 12] [ 6] [141252] +14:13:45 [ 13] [ 4] [0320] +14:13:45 [ 14] [ 4] [9805] +14:13:45 [ 15] [ 4] [0320] +14:13:45 [ 18] [ 4] [6011] +14:13:45 [ 19] [ 3] [418] +14:13:45 [ 22] [ 3] [021] +14:13:45 [ 25] [ 2] [01] +14:13:45 [ 32] [ 6] [180893] +14:13:45 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:13:45 [ 37] [ 12] [507907269583] +14:13:45 [ 41] [ 8] [0486HPXK] +14:13:45 [ 42] [ 15] [999999 ] +14:13:45 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +14:13:45 [ 49] [ 3] [418] +14:13:45 [ 52] [ 16] [3642CEF7D4C45526] +14:13:45 ============================================================================ +14:13:45 + + +waiting on router queue for slot.... +14:13:45 Sending to : +14:13:45 ============================================================================ +14:13:45 ============================================================================ +14:13:45 Slot Id : <292> +14:13:45 Transaction Type : REQUEST +14:13:45 Received From : +14:13:45 ============================================================================ +14:13:45 FNo. Len. Field Value +14:13:45 ============================================================================ +14:13:45 [ 1] [ 4] [0200] +14:13:45 [ 2] [ 16] [6688990030018756] +14:13:45 [ 3] [ 6] [302000] +14:13:45 [ 7] [ 10] [0320071252] +14:13:45 [ 11] [ 6] [269583] +14:13:45 [ 12] [ 6] [141252] +14:13:45 [ 13] [ 4] [0320] +14:13:45 [ 14] [ 4] [9805] +14:13:45 [ 15] [ 4] [0320] +14:13:45 [ 18] [ 4] [6011] +14:13:45 [ 19] [ 3] [418] +14:13:45 [ 22] [ 3] [021] +14:13:45 [ 25] [ 2] [01] +14:13:45 [ 32] [ 6] [180893] +14:13:45 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:13:45 [ 37] [ 12] [507907269583] +14:13:45 [ 41] [ 8] [0486HPXK] +14:13:45 [ 42] [ 15] [999999 ] +14:13:45 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +14:13:45 [ 49] [ 3] [418] +14:13:45 [ 52] [ 16] [14CBE7654C6164F4] +14:13:45 ============================================================================ +14:13:45 + + +waiting on router queue for slot.... +14:13:45 Sending to : <0> +14:13:45 ============================================================================ +14:13:45 ============================================================================ +14:13:45 Slot Id : <292> +14:13:45 Transaction Type : RESPONSE +14:13:45 Received From : +14:13:45 ============================================================================ +14:13:45 FNo. Len. Field Value +14:13:45 ============================================================================ +14:13:45 [ 1] [ 4] [0210] +14:13:45 [ 2] [ 16] [6688990030018756] +14:13:45 [ 3] [ 6] [302000] +14:13:45 [ 4] [ 12] [000000000000] +14:13:45 [ 7] [ 10] [0320071252] +14:13:45 [ 11] [ 6] [269583] +14:13:45 [ 12] [ 6] [141252] +14:13:45 [ 13] [ 4] [0320] +14:13:45 [ 15] [ 4] [0320] +14:13:45 [ 18] [ 4] [6011] +14:13:45 [ 19] [ 3] [418] +14:13:45 [ 22] [ 3] [021] +14:13:45 [ 32] [ 6] [180893] +14:13:45 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:13:45 [ 37] [ 12] [507907269583] +14:13:45 [ 39] [ 2] [14] +14:13:45 [ 41] [ 8] [0486HPXK] +14:13:45 [ 49] [ 3] [418] +14:13:45 ============================================================================ +14:13:45 Sending to : +14:13:45 ============================================================================ +14:13:45 + + +waiting on router queue for slot.... +14:13:46 ============================================================================ +14:13:46 Slot Id : <331> +14:13:46 Transaction Type : RESPONSE +14:13:46 Received From : +14:13:46 ============================================================================ +14:13:46 FNo. Len. Field Value +14:13:46 ============================================================================ +14:13:46 [ 1] [ 4] [0210] +14:13:46 [ 2] [ 16] [1808931800012450] +14:13:46 [ 3] [ 6] [300000] +14:13:46 [ 7] [ 10] [0320141338] +14:13:46 [ 11] [ 6] [767354] +14:13:46 [ 12] [ 6] [141338] +14:13:46 [ 13] [ 4] [0320] +14:13:46 [ 14] [ 4] [1803] +14:13:46 [ 19] [ 3] [418] +14:13:46 [ 32] [ 6] [621354] +14:13:46 [ 37] [ 12] [507904635689] +14:13:46 [ 38] [ 6] [767354] +14:13:46 [ 39] [ 2] [00] +14:13:46 [ 41] [ 8] [17000800] +14:13:46 [ 49] [ 3] [418] +14:13:46 [ 52] [ 16] [24FC87E918E6E1D9] +14:13:46 [ 54] [ 20] [0002418C000241256700] +14:13:46 ============================================================================ +14:13:46 Calculate Source COMM Id = 0 +14:13:46 ============================================================================ +14:13:46 + + +waiting on router queue for slot.... +14:13:48 ============================================================================ +14:13:48 Slot Id : <292> +14:13:48 Transaction Type : RESPONSE +14:13:48 Received From : +14:13:48 ============================================================================ +14:13:48 FNo. Len. Field Value +14:13:48 ============================================================================ +14:13:48 [ 1] [ 4] [0210] +14:13:48 [ 2] [ 16] [6688990030018756] +14:13:48 [ 3] [ 6] [302000] +14:13:48 [ 4] [ 12] [000000000000] +14:13:48 [ 7] [ 10] [0320071252] +14:13:48 [ 11] [ 6] [269583] +14:13:48 [ 12] [ 6] [141252] +14:13:48 [ 13] [ 4] [0320] +14:13:48 [ 15] [ 4] [0320] +14:13:48 [ 18] [ 4] [6011] +14:13:48 [ 19] [ 3] [418] +14:13:48 [ 22] [ 3] [021] +14:13:48 [ 32] [ 6] [180893] +14:13:48 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:13:48 [ 37] [ 12] [507907269583] +14:13:48 [ 39] [ 2] [14] +14:13:48 [ 41] [ 8] [0486HPXK] +14:13:48 [ 49] [ 3] [418] +14:13:48 ============================================================================ +14:13:48 Calculate Source COMM Id = 2 +14:13:48 ============================================================================ +14:13:48 + + +waiting on router queue for slot.... +14:13:50 ============================================================================ +14:13:50 Slot Id : <333> +14:13:50 Transaction Type : REQUEST +14:13:50 Received From : +14:13:50 ============================================================================ +14:13:50 FNo. Len. Field Value +14:13:50 ============================================================================ +14:13:50 [ 1] [ 4] [0200] +14:13:50 [ 2] [ 16] [1808930600024293] +14:13:50 [ 3] [ 6] [010000] +14:13:50 [ 4] [ 12] [000050000000] +14:13:50 [ 7] [ 10] [0320141345] +14:13:50 [ 11] [ 6] [767388] +14:13:50 [ 12] [ 6] [141345] +14:13:50 [ 13] [ 4] [0320] +14:13:50 [ 15] [ 4] [0320] +14:13:50 [ 18] [ 4] [6011] +14:13:50 [ 22] [ 3] [900] +14:13:50 [ 25] [ 2] [02] +14:13:50 [ 28] [ 9] [D00002000] +14:13:50 [ 32] [ 6] [621354] +14:13:50 [ 35] [ 27] [1808930600024293=1803500164] +14:13:50 [ 37] [ 12] [507904351188] +14:13:50 [ 41] [ 8] [03003400] +14:13:50 [ 42] [ 15] [NATIVE ] +14:13:50 [ 43] [ 40] [Atsaphangthong Unit AtsaphangthoLAO] +14:13:50 [ 49] [ 3] [418] +14:13:50 [ 52] [ 16] [E93F4E6E3245C3C0] +14:13:50 ============================================================================ +14:13:50 + + +waiting on router queue for slot.... +14:13:50 Sending to : +14:13:50 ============================================================================ +14:13:50 Sending to : +14:13:50 ============================================================================ +14:13:50 ============================================================================ +14:13:50 Slot Id : <333> +14:13:50 Transaction Type : REQUEST +14:13:50 Received From : +14:13:50 ============================================================================ +14:13:50 FNo. Len. Field Value +14:13:50 ============================================================================ +14:13:50 [ 1] [ 4] [0200] +14:13:50 [ 2] [ 16] [1808930600024293] +14:13:50 [ 3] [ 6] [010000] +14:13:50 [ 4] [ 12] [000050000000] +14:13:50 [ 7] [ 10] [0320141345] +14:13:50 [ 11] [ 6] [767388] +14:13:50 [ 12] [ 6] [141345] +14:13:50 [ 13] [ 4] [0320] +14:13:50 [ 15] [ 4] [0320] +14:13:50 [ 18] [ 4] [6011] +14:13:50 [ 22] [ 3] [900] +14:13:50 [ 25] [ 2] [02] +14:13:50 [ 28] [ 9] [D00002000] +14:13:50 [ 32] [ 6] [621354] +14:13:50 [ 35] [ 27] [1808930600024293=1803500164] +14:13:50 [ 37] [ 12] [507904351188] +14:13:50 [ 41] [ 8] [03003400] +14:13:50 [ 42] [ 15] [NATIVE ] +14:13:50 [ 43] [ 40] [Atsaphangthong Unit AtsaphangthoLAO] +14:13:50 [ 49] [ 3] [418] +14:13:50 [ 52] [ 16] [E93F4E6E3245C3C0] +14:13:50 ============================================================================ +14:13:50 + + +waiting on router queue for slot.... +14:13:50 Sending to : +14:13:50 ============================================================================ +14:13:50 ============================================================================ +14:13:50 Slot Id : <333> +14:13:50 Transaction Type : REQUEST +14:13:50 Received From : +14:13:50 ============================================================================ +14:13:50 FNo. Len. Field Value +14:13:50 ============================================================================ +14:13:50 [ 1] [ 4] [0200] +14:13:50 [ 2] [ 16] [1808930600024293] +14:13:50 [ 3] [ 6] [010000] +14:13:50 [ 4] [ 12] [000050000000] +14:13:50 [ 7] [ 10] [0320141345] +14:13:50 [ 11] [ 6] [767388] +14:13:50 [ 12] [ 6] [141345] +14:13:50 [ 13] [ 4] [0320] +14:13:50 [ 15] [ 4] [0320] +14:13:50 [ 18] [ 4] [6011] +14:13:50 [ 22] [ 3] [900] +14:13:50 [ 25] [ 2] [02] +14:13:50 [ 28] [ 9] [D00002000] +14:13:50 [ 32] [ 6] [621354] +14:13:50 [ 35] [ 27] [1808930600024293=1803500164] +14:13:50 [ 37] [ 12] [507904351188] +14:13:50 [ 41] [ 8] [03003400] +14:13:50 [ 42] [ 15] [NATIVE ] +14:13:50 [ 43] [ 40] [Atsaphangthong Unit AtsaphangthoLAO] +14:13:50 [ 49] [ 3] [418] +14:13:50 [ 52] [ 16] [20C0577F5AE14A38] +14:13:50 ============================================================================ +14:13:50 + + +waiting on router queue for slot.... +14:13:50 Sending to : <2> +14:13:50 ============================================================================ +14:13:57 ============================================================================ +14:13:57 Slot Id : <262> +14:13:57 Transaction Type : REQUEST +14:13:57 Received From : +14:13:57 ============================================================================ +14:13:57 FNo. Len. Field Value +14:13:57 ============================================================================ +14:13:57 [ 1] [ 4] [0200] +14:13:57 [ 2] [ 16] [1888880000028886] +14:13:57 [ 3] [ 6] [011000] +14:13:57 [ 4] [ 12] [000010000000] +14:13:57 [ 7] [ 10] [0320141352] +14:13:57 [ 11] [ 6] [767418] +14:13:57 [ 12] [ 6] [141352] +14:13:57 [ 13] [ 4] [0320] +14:13:57 [ 15] [ 4] [0320] +14:13:57 [ 18] [ 4] [6011] +14:13:57 [ 22] [ 3] [900] +14:13:57 [ 25] [ 2] [02] +14:13:57 [ 28] [ 9] [D00002000] +14:13:57 [ 32] [ 6] [621354] +14:13:57 [ 35] [ 32] [1888880000028886=000010100000629] +14:13:57 [ 37] [ 12] [507903350088] +14:13:57 [ 41] [ 8] [13001500] +14:13:57 [ 42] [ 15] [NATIVE ] +14:13:57 [ 43] [ 40] [Xiengkhoung ATM03 Paek LAO] +14:13:57 [ 49] [ 3] [418] +14:13:57 [ 52] [ 16] [D1489A436E772371] +14:13:57 ============================================================================ +14:13:57 + + +waiting on router queue for slot.... +14:13:57 Sending to : +14:13:57 ============================================================================ +14:13:57 Sending to : +14:13:57 ============================================================================ +14:13:57 ============================================================================ +14:13:57 Slot Id : <262> +14:13:57 Transaction Type : REQUEST +14:13:57 Received From : +14:13:57 ============================================================================ +14:13:57 FNo. Len. Field Value +14:13:57 ============================================================================ +14:13:57 [ 1] [ 4] [0200] +14:13:57 [ 2] [ 16] [1888880000028886] +14:13:57 [ 3] [ 6] [011000] +14:13:57 [ 4] [ 12] [000010000000] +14:13:57 [ 7] [ 10] [0320141352] +14:13:57 [ 11] [ 6] [767418] +14:13:57 [ 12] [ 6] [141352] +14:13:57 [ 13] [ 4] [0320] +14:13:57 [ 15] [ 4] [0320] +14:13:57 [ 18] [ 4] [6011] +14:13:57 [ 22] [ 3] [900] +14:13:57 [ 25] [ 2] [02] +14:13:57 [ 28] [ 9] [D00002000] +14:13:57 [ 32] [ 6] [621354] +14:13:57 [ 35] [ 32] [1888880000028886=000010100000629] +14:13:57 [ 37] [ 12] [507903350088] +14:13:57 [ 41] [ 8] [13001500] +14:13:57 [ 42] [ 15] [NATIVE ] +14:13:57 [ 43] [ 40] [Xiengkhoung ATM03 Paek LAO] +14:13:57 [ 49] [ 3] [418] +14:13:57 [ 52] [ 16] [D1489A436E772371] +14:13:57 ============================================================================ +14:13:57 + + +waiting on router queue for slot.... +14:13:57 Sending to : +14:13:57 ============================================================================ +14:13:57 ============================================================================ +14:13:57 Slot Id : <262> +14:13:57 Transaction Type : REQUEST +14:13:57 Received From : +14:13:57 ============================================================================ +14:13:57 FNo. Len. Field Value +14:13:57 ============================================================================ +14:13:57 [ 1] [ 4] [0200] +14:13:57 [ 2] [ 16] [1888880000028886] +14:13:57 [ 3] [ 6] [011000] +14:13:57 [ 4] [ 12] [000010000000] +14:13:57 [ 7] [ 10] [0320141352] +14:13:57 [ 11] [ 6] [767418] +14:13:57 [ 12] [ 6] [141352] +14:13:57 [ 13] [ 4] [0320] +14:13:57 [ 15] [ 4] [0320] +14:13:57 [ 18] [ 4] [6011] +14:13:57 [ 22] [ 3] [900] +14:13:57 [ 25] [ 2] [02] +14:13:57 [ 28] [ 9] [D00002000] +14:13:57 [ 32] [ 6] [621354] +14:13:57 [ 35] [ 32] [1888880000028886=000010100000629] +14:13:57 [ 37] [ 12] [507903350088] +14:13:57 [ 41] [ 8] [13001500] +14:13:57 [ 42] [ 15] [NATIVE ] +14:13:57 [ 43] [ 40] [Xiengkhoung ATM03 Paek LAO] +14:13:57 [ 49] [ 3] [418] +14:13:57 [ 52] [ 16] [C017851C9F6E9519] +14:13:57 ============================================================================ +14:13:57 + + +waiting on router queue for slot.... +14:13:57 Sending to : <5> +14:13:57 ============================================================================ +14:13:57 ============================================================================ +14:13:57 Slot Id : <333> +14:13:57 Transaction Type : RESPONSE +14:13:57 Received From : +14:13:57 ============================================================================ +14:13:57 FNo. Len. Field Value +14:13:57 ============================================================================ +14:13:57 [ 1] [ 4] [0210] +14:13:57 [ 2] [ 16] [1808930600024293] +14:13:57 [ 3] [ 6] [010000] +14:13:57 [ 4] [ 12] [000050000000] +14:13:57 [ 6] [ 12] [000050000000] +14:13:57 [ 7] [ 10] [0320141345] +14:13:57 [ 11] [ 6] [767388] +14:13:57 [ 12] [ 6] [141345] +14:13:57 [ 13] [ 4] [0320] +14:13:57 [ 18] [ 4] [6011] +14:13:57 [ 19] [ 3] [418] +14:13:57 [ 22] [ 3] [021] +14:13:57 [ 32] [ 6] [621354] +14:13:57 [ 35] [ 27] [1808930600024293=1803500164] +14:13:57 [ 37] [ 12] [507904351188] +14:13:57 [ 38] [ 6] [767388] +14:13:57 [ 39] [ 2] [00] +14:13:57 [ 41] [ 8] [03003400] +14:13:57 [ 49] [ 3] [418] +14:13:57 [ 52] [ 16] [20C0577F5AE14A38] +14:13:57 [ 54] [ 20] [1001418C000912045100] +14:13:57 ============================================================================ +14:13:57 Sending to : +14:13:57 ============================================================================ +14:13:57 + + +waiting on router queue for slot.... +14:13:59 ============================================================================ +14:13:59 Slot Id : <333> +14:13:59 Transaction Type : RESPONSE +14:13:59 Received From : +14:13:59 ============================================================================ +14:13:59 FNo. Len. Field Value +14:13:59 ============================================================================ +14:13:59 [ 1] [ 4] [0210] +14:13:59 [ 2] [ 16] [1808930600024293] +14:13:59 [ 3] [ 6] [010000] +14:13:59 [ 4] [ 12] [000050000000] +14:13:59 [ 6] [ 12] [000050000000] +14:13:59 [ 7] [ 10] [0320141345] +14:13:59 [ 11] [ 6] [767388] +14:13:59 [ 12] [ 6] [141345] +14:13:59 [ 13] [ 4] [0320] +14:13:59 [ 18] [ 4] [6011] +14:13:59 [ 19] [ 3] [418] +14:13:59 [ 22] [ 3] [021] +14:13:59 [ 32] [ 6] [621354] +14:13:59 [ 35] [ 27] [1808930600024293=1803500164] +14:13:59 [ 37] [ 12] [507904351188] +14:13:59 [ 38] [ 6] [767388] +14:13:59 [ 39] [ 2] [00] +14:13:59 [ 41] [ 8] [03003400] +14:13:59 [ 49] [ 3] [418] +14:13:59 [ 52] [ 16] [20C0577F5AE14A38] +14:13:59 [ 54] [ 20] [1001418C000912045100] +14:13:59 ============================================================================ +14:13:59 Calculate Source COMM Id = 0 +14:13:59 ============================================================================ +14:13:59 + + +waiting on router queue for slot.... +14:14:04 ============================================================================ +14:14:04 Slot Id : <335> +14:14:04 Transaction Type : REQUEST +14:14:04 Received From : +14:14:04 ============================================================================ +14:14:04 FNo. Len. Field Value +14:14:04 ============================================================================ +14:14:04 [ 1] [ 4] [0800] +14:14:04 [ 7] [ 10] [0320071311] +14:14:04 [ 11] [ 6] [156736] +14:14:04 [ 70] [ 3] [301] +14:14:04 ============================================================================ +14:14:04 + + +waiting on router queue for slot.... +14:14:04 Sending to : +14:14:04 ============================================================================ +14:14:04 ============================================================================ +14:14:04 Slot Id : <335> +14:14:04 Transaction Type : RESPONSE +14:14:04 Received From : +14:14:04 ============================================================================ +14:14:04 FNo. Len. Field Value +14:14:04 ============================================================================ +14:14:04 [ 1] [ 4] [0810] +14:14:04 [ 7] [ 10] [0320071311] +14:14:04 [ 11] [ 6] [156736] +14:14:04 [ 39] [ 2] [00] +14:14:04 [ 70] [ 3] [301] +14:14:04 ============================================================================ +14:14:04 Calculate Source COMM Id = 2 +14:14:04 ============================================================================ +14:14:04 + + +waiting on router queue for slot.... +14:14:05 ============================================================================ +14:14:05 Slot Id : <262> +14:14:05 Transaction Type : RESPONSE +14:14:05 Received From : +14:14:05 ============================================================================ +14:14:05 FNo. Len. Field Value +14:14:05 ============================================================================ +14:14:05 [ 1] [ 4] [0210] +14:14:05 [ 2] [ 16] [1888880000028886] +14:14:05 [ 3] [ 6] [011000] +14:14:05 [ 4] [ 12] [000010000000] +14:14:05 [ 7] [ 10] [0320141352] +14:14:05 [ 11] [ 6] [767418] +14:14:05 [ 12] [ 6] [141352] +14:14:05 [ 13] [ 4] [0320] +14:14:05 [ 15] [ 4] [0320] +14:14:05 [ 18] [ 4] [6011] +14:14:05 [ 19] [ 3] [418] +14:14:05 [ 32] [ 6] [621354] +14:14:05 [ 37] [ 12] [507903350088] +14:14:05 [ 38] [ 6] [985656] +14:14:05 [ 39] [ 2] [00] +14:14:05 [ 41] [ 8] [13001500] +14:14:05 [ 49] [ 3] [418] +14:14:05 [ 54] [ 0] [] +14:14:05 ============================================================================ +14:14:05 Sending to : +14:14:05 ============================================================================ +14:14:05 + + +waiting on router queue for slot.... +14:14:06 ============================================================================ +14:14:06 Slot Id : <262> +14:14:06 Transaction Type : RESPONSE +14:14:06 Received From : +14:14:06 ============================================================================ +14:14:06 FNo. Len. Field Value +14:14:06 ============================================================================ +14:14:06 [ 1] [ 4] [0210] +14:14:06 [ 2] [ 16] [1888880000028886] +14:14:06 [ 3] [ 6] [011000] +14:14:06 [ 4] [ 12] [000010000000] +14:14:06 [ 7] [ 10] [0320141352] +14:14:06 [ 11] [ 6] [767418] +14:14:06 [ 12] [ 6] [141352] +14:14:06 [ 13] [ 4] [0320] +14:14:06 [ 15] [ 4] [0320] +14:14:06 [ 18] [ 4] [6011] +14:14:06 [ 19] [ 3] [418] +14:14:06 [ 32] [ 6] [621354] +14:14:06 [ 37] [ 12] [507903350088] +14:14:06 [ 38] [ 6] [985656] +14:14:06 [ 39] [ 2] [00] +14:14:06 [ 41] [ 8] [13001500] +14:14:06 [ 49] [ 3] [418] +14:14:06 [ 54] [ 0] [] +14:14:06 ============================================================================ +14:14:06 Calculate Source COMM Id = 0 +14:14:06 ============================================================================ +14:14:06 + + +waiting on router queue for slot.... +14:14:10 ============================================================================ +14:14:10 Slot Id : <334> +14:14:10 Transaction Type : REQUEST +14:14:10 Received From : +14:14:10 ============================================================================ +14:14:10 FNo. Len. Field Value +14:14:10 ============================================================================ +14:14:10 [ 1] [ 4] [0800] +14:14:10 [ 2] [ 5] [02531] +14:14:10 [ 3] [ 6] [579148] +14:14:10 [ 7] [ 10] [0320071410] +14:14:10 [ 11] [ 6] [807238] +14:14:10 [ 15] [ 10] [0320071410] +14:14:10 [ 37] [ 11] [57914807238] +14:14:10 [ 70] [ 3] [001] +14:14:10 ============================================================================ +14:14:10 + + +waiting on router queue for slot.... +14:14:10 ============================================================================ +14:14:10 Slot Id : <334> +14:14:10 Transaction Type : RESPONSE +14:14:10 Received From : +14:14:10 ============================================================================ +14:14:10 FNo. Len. Field Value +14:14:10 ============================================================================ +14:14:10 [ 1] [ 4] [0810] +14:14:10 [ 7] [ 10] [0320071410] +14:14:10 [ 11] [ 6] [807238] +14:14:10 [ 15] [ 4] [0320] +14:14:10 [ 37] [ 12] [57914807238] +14:14:10 [ 39] [ 2] [00] +14:14:10 [ 70] [ 3] [001] +14:14:10 ============================================================================ +14:14:10 Sending to : +14:14:10 ============================================================================ +14:14:10 + + +waiting on router queue for slot.... +14:14:20 ============================================================================ +14:14:20 Slot Id : <321> +14:14:20 Transaction Type : REQUEST +14:14:20 Received From : +14:14:20 ============================================================================ +14:14:20 FNo. Len. Field Value +14:14:20 ============================================================================ +14:14:20 [ 1] [ 4] [0800] +14:14:20 [ 7] [ 10] [0320071327] +14:14:20 [ 11] [ 6] [156737] +14:14:20 [ 70] [ 3] [301] +14:14:20 ============================================================================ +14:14:20 + + +waiting on router queue for slot.... +14:14:20 Sending to : +14:14:20 ============================================================================ +14:14:20 ============================================================================ +14:14:20 Slot Id : <321> +14:14:20 Transaction Type : RESPONSE +14:14:20 Received From : +14:14:20 ============================================================================ +14:14:20 FNo. Len. Field Value +14:14:20 ============================================================================ +14:14:20 [ 1] [ 4] [0810] +14:14:20 [ 7] [ 10] [0320071327] +14:14:20 [ 11] [ 6] [156737] +14:14:20 [ 39] [ 2] [00] +14:14:20 [ 70] [ 3] [301] +14:14:20 ============================================================================ +14:14:20 Calculate Source COMM Id = 2 +14:14:20 ============================================================================ +14:14:20 + + +waiting on router queue for slot.... +14:14:22 ============================================================================ +14:14:22 Slot Id : <336> +14:14:22 Transaction Type : REQUEST +14:14:22 Received From : +14:14:22 ============================================================================ +14:14:22 FNo. Len. Field Value +14:14:22 ============================================================================ +14:14:22 [ 1] [ 4] [0200] +14:14:22 [ 2] [ 16] [6213544000280526] +14:14:22 [ 3] [ 6] [010000] +14:14:22 [ 4] [ 12] [000050000000] +14:14:22 [ 7] [ 10] [0320141212] +14:14:22 [ 11] [ 6] [948185] +14:14:22 [ 12] [ 6] [141212] +14:14:22 [ 13] [ 4] [0320] +14:14:22 [ 15] [ 4] [0320] +14:14:22 [ 18] [ 4] [6011] +14:14:22 [ 19] [ 3] [418] +14:14:22 [ 22] [ 3] [021] +14:14:22 [ 25] [ 2] [01] +14:14:22 [ 28] [ 9] [D00002000] +14:14:22 [ 32] [ 6] [668899] +14:14:22 [ 35] [ 32] [6213544000280526=491212018052965] +14:14:22 [ 37] [ 12] [507900285819] +14:14:22 [ 41] [ 8] [03010005] +14:14:22 [ 42] [ 15] [APT ] +14:14:22 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +14:14:22 [ 49] [ 3] [418] +14:14:22 [ 52] [ 16] [49E73087F0391DD9] +14:14:22 ============================================================================ +14:14:22 + + +waiting on router queue for slot.... +14:14:22 Sending to : +14:14:22 ============================================================================ +14:14:22 Sending to : +14:14:22 ============================================================================ +14:14:22 ============================================================================ +14:14:22 Slot Id : <336> +14:14:22 Transaction Type : REQUEST +14:14:22 Received From : +14:14:22 ============================================================================ +14:14:22 FNo. Len. Field Value +14:14:22 ============================================================================ +14:14:22 [ 1] [ 4] [0200] +14:14:22 [ 2] [ 16] [6213544000280526] +14:14:22 [ 3] [ 6] [010000] +14:14:22 [ 4] [ 12] [000050000000] +14:14:22 [ 7] [ 10] [0320141212] +14:14:22 [ 11] [ 6] [948185] +14:14:22 [ 12] [ 6] [141212] +14:14:22 [ 13] [ 4] [0320] +14:14:22 [ 15] [ 4] [0320] +14:14:22 [ 18] [ 4] [6011] +14:14:22 [ 19] [ 3] [418] +14:14:22 [ 22] [ 3] [021] +14:14:22 [ 25] [ 2] [01] +14:14:22 [ 28] [ 9] [D00002000] +14:14:22 [ 32] [ 6] [668899] +14:14:22 [ 35] [ 32] [6213544000280526=491212018052965] +14:14:22 [ 37] [ 12] [507900285819] +14:14:22 [ 41] [ 8] [03010005] +14:14:22 [ 42] [ 15] [APT ] +14:14:22 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +14:14:22 [ 49] [ 3] [418] +14:14:22 [ 52] [ 16] [49E73087F0391DD9] +14:14:22 ============================================================================ +14:14:22 + + +waiting on router queue for slot.... +14:14:22 Sending to : +14:14:22 ============================================================================ +14:14:22 ============================================================================ +14:14:22 Slot Id : <336> +14:14:22 Transaction Type : REQUEST +14:14:22 Received From : +14:14:22 ============================================================================ +14:14:22 FNo. Len. Field Value +14:14:22 ============================================================================ +14:14:22 [ 1] [ 4] [0200] +14:14:22 [ 2] [ 16] [6213544000280526] +14:14:22 [ 3] [ 6] [010000] +14:14:22 [ 4] [ 12] [000050000000] +14:14:22 [ 7] [ 10] [0320141212] +14:14:22 [ 11] [ 6] [948185] +14:14:22 [ 12] [ 6] [141212] +14:14:22 [ 13] [ 4] [0320] +14:14:22 [ 15] [ 4] [0320] +14:14:22 [ 18] [ 4] [6011] +14:14:22 [ 19] [ 3] [418] +14:14:22 [ 22] [ 3] [021] +14:14:22 [ 25] [ 2] [01] +14:14:22 [ 28] [ 9] [D00002000] +14:14:22 [ 32] [ 6] [668899] +14:14:22 [ 35] [ 32] [6213544000280526=491212018052965] +14:14:22 [ 37] [ 12] [507900285819] +14:14:22 [ 41] [ 8] [03010005] +14:14:22 [ 42] [ 15] [APT ] +14:14:22 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +14:14:22 [ 49] [ 3] [418] +14:14:22 [ 52] [ 16] [ED777D75C7C05CA2] +14:14:22 ============================================================================ +14:14:22 + + +waiting on router queue for slot.... +14:14:22 Sending to : <0> +14:14:22 ============================================================================ +14:14:23 ============================================================================ +14:14:23 Slot Id : <336> +14:14:23 Transaction Type : RESPONSE +14:14:23 Received From : +14:14:23 ============================================================================ +14:14:23 FNo. Len. Field Value +14:14:23 ============================================================================ +14:14:23 [ 1] [ 4] [0210] +14:14:23 [ 2] [ 16] [6213544000280526] +14:14:23 [ 3] [ 6] [010000] +14:14:23 [ 4] [ 12] [000050000000] +14:14:23 [ 7] [ 10] [0320141212] +14:14:23 [ 11] [ 6] [948185] +14:14:23 [ 12] [ 6] [141212] +14:14:23 [ 13] [ 4] [0320] +14:14:23 [ 15] [ 4] [0320] +14:14:23 [ 18] [ 4] [6011] +14:14:23 [ 19] [ 3] [418] +14:14:23 [ 32] [ 6] [668899] +14:14:23 [ 35] [ 32] [6213544000280526=491212018052965] +14:14:23 [ 37] [ 12] [507900285819] +14:14:23 [ 38] [ 6] [009362] +14:14:23 [ 39] [ 2] [00] +14:14:23 [ 41] [ 8] [03010005] +14:14:23 [ 49] [ 3] [418] +14:14:23 [ 54] [ 40] [0001418C0001045771530002418C000104577153] +14:14:23 ============================================================================ +14:14:23 Sending to : +14:14:23 ============================================================================ +14:14:23 + + +waiting on router queue for slot.... +14:14:24 ============================================================================ +14:14:24 Slot Id : <336> +14:14:24 Transaction Type : RESPONSE +14:14:24 Received From : +14:14:24 ============================================================================ +14:14:24 FNo. Len. Field Value +14:14:24 ============================================================================ +14:14:24 [ 1] [ 4] [0210] +14:14:24 [ 2] [ 16] [6213544000280526] +14:14:24 [ 3] [ 6] [010000] +14:14:24 [ 4] [ 12] [000050000000] +14:14:24 [ 7] [ 10] [0320141212] +14:14:24 [ 11] [ 6] [948185] +14:14:24 [ 12] [ 6] [141212] +14:14:24 [ 13] [ 4] [0320] +14:14:24 [ 15] [ 4] [0320] +14:14:24 [ 18] [ 4] [6011] +14:14:24 [ 19] [ 3] [418] +14:14:24 [ 32] [ 6] [668899] +14:14:24 [ 35] [ 32] [6213544000280526=491212018052965] +14:14:24 [ 37] [ 12] [507900285819] +14:14:24 [ 38] [ 6] [009362] +14:14:24 [ 39] [ 2] [00] +14:14:24 [ 41] [ 8] [03010005] +14:14:24 [ 49] [ 3] [418] +14:14:24 [ 54] [ 40] [0001418C0001045771530002418C000104577153] +14:14:24 ============================================================================ +14:14:24 Calculate Source COMM Id = 4 +14:14:24 ============================================================================ +14:14:24 + + +waiting on router queue for slot.... +14:14:34 ============================================================================ +14:14:34 Slot Id : <320> +14:14:34 Transaction Type : REQUEST +14:14:34 Received From : +14:14:34 ============================================================================ +14:14:34 FNo. Len. Field Value +14:14:34 ============================================================================ +14:14:34 [ 1] [ 4] [0800] +14:14:34 [ 7] [ 10] [0320212622] +14:14:34 [ 11] [ 6] [142622] +14:14:34 [ 37] [ 12] [57914142622] +14:14:34 [ 70] [ 3] [301] +14:14:34 ============================================================================ +14:14:34 + + +waiting on router queue for slot.... +14:14:34 Sending to : +14:14:34 ============================================================================ +14:14:34 ============================================================================ +14:14:34 Slot Id : <320> +14:14:34 Transaction Type : RESPONSE +14:14:34 Received From : +14:14:34 ============================================================================ +14:14:34 FNo. Len. Field Value +14:14:34 ============================================================================ +14:14:34 [ 1] [ 4] [0810] +14:14:34 [ 7] [ 10] [0320212622] +14:14:34 [ 11] [ 6] [142622] +14:14:34 [ 37] [ 12] [579141426220] +14:14:34 [ 39] [ 2] [00] +14:14:34 [ 70] [ 3] [810] +14:14:34 ============================================================================ +14:14:34 Calculate Source COMM Id = 6 +14:14:34 ============================================================================ +14:14:34 + + +waiting on router queue for slot.... +14:14:37 ============================================================================ +14:14:37 Slot Id : <342> +14:14:37 Transaction Type : REQUEST +14:14:37 Received From : +14:14:37 ============================================================================ +14:14:37 FNo. Len. Field Value +14:14:37 ============================================================================ +14:14:37 [ 1] [ 4] [0800] +14:14:37 [ 7] [ 10] [0320071344] +14:14:37 [ 11] [ 6] [156738] +14:14:37 [ 70] [ 3] [301] +14:14:37 ============================================================================ +14:14:37 + + +waiting on router queue for slot.... +14:14:37 Sending to : +14:14:37 ============================================================================ +14:14:37 ============================================================================ +14:14:37 Slot Id : <342> +14:14:37 Transaction Type : RESPONSE +14:14:37 Received From : +14:14:37 ============================================================================ +14:14:37 FNo. Len. Field Value +14:14:37 ============================================================================ +14:14:37 [ 1] [ 4] [0810] +14:14:37 [ 7] [ 10] [0320071344] +14:14:37 [ 11] [ 6] [156738] +14:14:37 [ 39] [ 2] [00] +14:14:37 [ 70] [ 3] [301] +14:14:37 ============================================================================ +14:14:37 Calculate Source COMM Id = 2 +14:14:37 ============================================================================ +14:14:37 + + +waiting on router queue for slot.... +14:14:45 ============================================================================ +14:14:45 Slot Id : <323> +14:14:45 Transaction Type : REQUEST +14:14:45 Received From : +14:14:45 ============================================================================ +14:14:45 FNo. Len. Field Value +14:14:45 ============================================================================ +14:14:45 [ 1] [ 4] [0200] +14:14:45 [ 2] [ 16] [6688990030018756] +14:14:45 [ 3] [ 6] [010000] +14:14:45 [ 4] [ 12] [000200000000] +14:14:45 [ 7] [ 10] [0320071352] +14:14:45 [ 11] [ 6] [269589] +14:14:45 [ 12] [ 6] [141352] +14:14:45 [ 13] [ 4] [0320] +14:14:45 [ 14] [ 4] [9805] +14:14:45 [ 15] [ 4] [0320] +14:14:45 [ 18] [ 4] [6011] +14:14:45 [ 19] [ 3] [418] +14:14:45 [ 22] [ 3] [021] +14:14:45 [ 25] [ 2] [01] +14:14:45 [ 28] [ 9] [D00002000] +14:14:45 [ 32] [ 6] [180893] +14:14:45 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:14:45 [ 37] [ 12] [507907269589] +14:14:45 [ 41] [ 8] [0486HPXK] +14:14:45 [ 42] [ 15] [999999 ] +14:14:45 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +14:14:45 [ 49] [ 3] [418] +14:14:45 [ 52] [ 16] [3642CEF7D4C45526] +14:14:45 ============================================================================ +14:14:45 + + +waiting on router queue for slot.... +14:14:45 Sending to : +14:14:45 ============================================================================ +14:14:45 Sending to : +14:14:45 ============================================================================ +14:14:46 ============================================================================ +14:14:46 Slot Id : <323> +14:14:46 Transaction Type : REQUEST +14:14:46 Received From : +14:14:46 ============================================================================ +14:14:46 FNo. Len. Field Value +14:14:46 ============================================================================ +14:14:46 [ 1] [ 4] [0200] +14:14:46 [ 2] [ 16] [6688990030018756] +14:14:46 [ 3] [ 6] [010000] +14:14:46 [ 4] [ 12] [000200000000] +14:14:46 [ 7] [ 10] [0320071352] +14:14:46 [ 11] [ 6] [269589] +14:14:46 [ 12] [ 6] [141352] +14:14:46 [ 13] [ 4] [0320] +14:14:46 [ 14] [ 4] [9805] +14:14:46 [ 15] [ 4] [0320] +14:14:46 [ 18] [ 4] [6011] +14:14:46 [ 19] [ 3] [418] +14:14:46 [ 22] [ 3] [021] +14:14:46 [ 25] [ 2] [01] +14:14:46 [ 28] [ 9] [D00002000] +14:14:46 [ 32] [ 6] [180893] +14:14:46 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:14:46 [ 37] [ 12] [507907269589] +14:14:46 [ 41] [ 8] [0486HPXK] +14:14:46 [ 42] [ 15] [999999 ] +14:14:46 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +14:14:46 [ 49] [ 3] [418] +14:14:46 [ 52] [ 16] [3642CEF7D4C45526] +14:14:46 ============================================================================ +14:14:46 + + +waiting on router queue for slot.... +14:14:46 Sending to : +14:14:46 ============================================================================ +14:14:46 ============================================================================ +14:14:46 Slot Id : <323> +14:14:46 Transaction Type : REQUEST +14:14:46 Received From : +14:14:46 ============================================================================ +14:14:46 FNo. Len. Field Value +14:14:46 ============================================================================ +14:14:46 [ 1] [ 4] [0200] +14:14:46 [ 2] [ 16] [6688990030018756] +14:14:46 [ 3] [ 6] [010000] +14:14:46 [ 4] [ 12] [000200000000] +14:14:46 [ 7] [ 10] [0320071352] +14:14:46 [ 11] [ 6] [269589] +14:14:46 [ 12] [ 6] [141352] +14:14:46 [ 13] [ 4] [0320] +14:14:46 [ 14] [ 4] [9805] +14:14:46 [ 15] [ 4] [0320] +14:14:46 [ 18] [ 4] [6011] +14:14:46 [ 19] [ 3] [418] +14:14:46 [ 22] [ 3] [021] +14:14:46 [ 25] [ 2] [01] +14:14:46 [ 28] [ 9] [D00002000] +14:14:46 [ 32] [ 6] [180893] +14:14:46 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:14:46 [ 37] [ 12] [507907269589] +14:14:46 [ 41] [ 8] [0486HPXK] +14:14:46 [ 42] [ 15] [999999 ] +14:14:46 [ 43] [ 40] [ATM XIENGKHOR HUAPHAN PRO, Xiengkhor, La] +14:14:46 [ 49] [ 3] [418] +14:14:46 [ 52] [ 16] [14CBE7654C6164F4] +14:14:46 ============================================================================ +14:14:46 + + +waiting on router queue for slot.... +14:14:46 Sending to : <0> +14:14:46 ============================================================================ +14:14:46 ============================================================================ +14:14:46 Slot Id : <323> +14:14:46 Transaction Type : RESPONSE +14:14:46 Received From : +14:14:46 ============================================================================ +14:14:46 FNo. Len. Field Value +14:14:46 ============================================================================ +14:14:46 [ 1] [ 4] [0210] +14:14:46 [ 2] [ 16] [6688990030018756] +14:14:46 [ 3] [ 6] [010000] +14:14:46 [ 4] [ 12] [000200000000] +14:14:46 [ 7] [ 10] [0320071352] +14:14:46 [ 11] [ 6] [269589] +14:14:46 [ 12] [ 6] [141352] +14:14:46 [ 13] [ 4] [0320] +14:14:46 [ 15] [ 4] [0320] +14:14:46 [ 18] [ 4] [6011] +14:14:46 [ 19] [ 3] [418] +14:14:46 [ 22] [ 3] [021] +14:14:46 [ 32] [ 6] [180893] +14:14:46 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:14:46 [ 37] [ 12] [507907269589] +14:14:46 [ 39] [ 2] [61] +14:14:46 [ 41] [ 8] [0486HPXK] +14:14:46 [ 49] [ 3] [418] +14:14:46 ============================================================================ +14:14:46 Sending to : +14:14:46 ============================================================================ +14:14:46 + + +waiting on router queue for slot.... +14:14:47 ============================================================================ +14:14:47 Slot Id : <323> +14:14:47 Transaction Type : RESPONSE +14:14:47 Received From : +14:14:47 ============================================================================ +14:14:47 FNo. Len. Field Value +14:14:47 ============================================================================ +14:14:47 [ 1] [ 4] [0210] +14:14:47 [ 2] [ 16] [6688990030018756] +14:14:47 [ 3] [ 6] [010000] +14:14:47 [ 4] [ 12] [000200000000] +14:14:47 [ 7] [ 10] [0320071352] +14:14:47 [ 11] [ 6] [269589] +14:14:47 [ 12] [ 6] [141352] +14:14:47 [ 13] [ 4] [0320] +14:14:47 [ 15] [ 4] [0320] +14:14:47 [ 18] [ 4] [6011] +14:14:47 [ 19] [ 3] [418] +14:14:47 [ 22] [ 3] [021] +14:14:47 [ 32] [ 6] [180893] +14:14:47 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:14:47 [ 37] [ 12] [507907269589] +14:14:47 [ 39] [ 2] [61] +14:14:47 [ 41] [ 8] [0486HPXK] +14:14:47 [ 49] [ 3] [418] +14:14:47 ============================================================================ +14:14:47 Calculate Source COMM Id = 2 +14:14:47 ============================================================================ +14:14:47 + + +waiting on router queue for slot.... +14:14:50 ============================================================================ +14:14:50 Slot Id : <268> +14:14:50 Transaction Type : REQUEST +14:14:50 Received From : +14:14:50 ============================================================================ +14:14:50 FNo. Len. Field Value +14:14:50 ============================================================================ +14:14:50 [ 1] [ 4] [0200] +14:14:50 [ 2] [ 16] [1808931800012450] +14:14:50 [ 3] [ 6] [010000] +14:14:50 [ 4] [ 12] [000100000000] +14:14:50 [ 7] [ 10] [0320141446] +14:14:50 [ 11] [ 6] [767629] +14:14:50 [ 12] [ 6] [141446] +14:14:50 [ 13] [ 4] [0320] +14:14:50 [ 15] [ 4] [0320] +14:14:50 [ 18] [ 4] [6011] +14:14:50 [ 22] [ 3] [900] +14:14:50 [ 25] [ 2] [02] +14:14:50 [ 28] [ 9] [D00002000] +14:14:50 [ 32] [ 6] [621354] +14:14:50 [ 35] [ 27] [1808931800012450=1803500989] +14:14:50 [ 37] [ 12] [507904635691] +14:14:50 [ 41] [ 8] [17000800] +14:14:50 [ 42] [ 15] [NATIVE ] +14:14:50 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:14:50 [ 49] [ 3] [418] +14:14:50 [ 52] [ 16] [397D9A451524AD73] +14:14:50 ============================================================================ +14:14:50 + + +waiting on router queue for slot.... +14:14:50 Sending to : +14:14:50 ============================================================================ +14:14:50 Sending to : +14:14:50 ============================================================================ +14:14:51 ============================================================================ +14:14:51 Slot Id : <268> +14:14:51 Transaction Type : REQUEST +14:14:51 Received From : +14:14:51 ============================================================================ +14:14:51 FNo. Len. Field Value +14:14:51 ============================================================================ +14:14:51 [ 1] [ 4] [0200] +14:14:51 [ 2] [ 16] [1808931800012450] +14:14:51 [ 3] [ 6] [010000] +14:14:51 [ 4] [ 12] [000100000000] +14:14:51 [ 7] [ 10] [0320141446] +14:14:51 [ 11] [ 6] [767629] +14:14:51 [ 12] [ 6] [141446] +14:14:51 [ 13] [ 4] [0320] +14:14:51 [ 15] [ 4] [0320] +14:14:51 [ 18] [ 4] [6011] +14:14:51 [ 22] [ 3] [900] +14:14:51 [ 25] [ 2] [02] +14:14:51 [ 28] [ 9] [D00002000] +14:14:51 [ 32] [ 6] [621354] +14:14:51 [ 35] [ 27] [1808931800012450=1803500989] +14:14:51 [ 37] [ 12] [507904635691] +14:14:51 [ 41] [ 8] [17000800] +14:14:51 [ 42] [ 15] [NATIVE ] +14:14:51 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:14:51 [ 49] [ 3] [418] +14:14:51 [ 52] [ 16] [397D9A451524AD73] +14:14:51 ============================================================================ +14:14:51 + + +waiting on router queue for slot.... +14:14:51 Sending to : +14:14:51 ============================================================================ +14:14:51 ============================================================================ +14:14:51 Slot Id : <268> +14:14:51 Transaction Type : REQUEST +14:14:51 Received From : +14:14:51 ============================================================================ +14:14:51 FNo. Len. Field Value +14:14:51 ============================================================================ +14:14:51 [ 1] [ 4] [0200] +14:14:51 [ 2] [ 16] [1808931800012450] +14:14:51 [ 3] [ 6] [010000] +14:14:51 [ 4] [ 12] [000100000000] +14:14:51 [ 7] [ 10] [0320141446] +14:14:51 [ 11] [ 6] [767629] +14:14:51 [ 12] [ 6] [141446] +14:14:51 [ 13] [ 4] [0320] +14:14:51 [ 15] [ 4] [0320] +14:14:51 [ 18] [ 4] [6011] +14:14:51 [ 22] [ 3] [900] +14:14:51 [ 25] [ 2] [02] +14:14:51 [ 28] [ 9] [D00002000] +14:14:51 [ 32] [ 6] [621354] +14:14:51 [ 35] [ 27] [1808931800012450=1803500989] +14:14:51 [ 37] [ 12] [507904635691] +14:14:51 [ 41] [ 8] [17000800] +14:14:51 [ 42] [ 15] [NATIVE ] +14:14:51 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:14:51 [ 49] [ 3] [418] +14:14:51 [ 52] [ 16] [24FC87E918E6E1D9] +14:14:51 ============================================================================ +14:14:51 + + +waiting on router queue for slot.... +14:14:51 Sending to : <2> +14:14:51 ============================================================================ +14:14:55 ============================================================================ +14:14:55 Slot Id : <339> +14:14:55 Transaction Type : REQUEST +14:14:55 Received From : +14:14:55 ============================================================================ +14:14:55 FNo. Len. Field Value +14:14:55 ============================================================================ +14:14:55 [ 1] [ 4] [0800] +14:14:55 [ 7] [ 10] [0320072242] +14:14:55 [ 11] [ 6] [032405] +14:14:55 [ 37] [ 12] [57914032405] +14:14:55 [ 70] [ 3] [301] +14:14:55 ============================================================================ +14:14:55 + + +waiting on router queue for slot.... +14:14:55 Sending to : +14:14:55 ============================================================================ +14:14:55 ============================================================================ +14:14:55 Slot Id : <339> +14:14:55 Transaction Type : RESPONSE +14:14:55 Received From : +14:14:55 ============================================================================ +14:14:55 FNo. Len. Field Value +14:14:55 ============================================================================ +14:14:55 [ 1] [ 4] [0810] +14:14:55 [ 7] [ 10] [0320072242] +14:14:55 [ 11] [ 6] [032405] +14:14:55 [ 37] [ 12] [579140324050] +14:14:55 [ 39] [ 2] [00] +14:14:55 [ 70] [ 3] [810] +14:14:55 ============================================================================ +14:14:55 Calculate Source COMM Id = 1 +14:14:55 ============================================================================ +14:14:55 + + +waiting on router queue for slot.... +14:14:58 ============================================================================ +14:14:58 Slot Id : <268> +14:14:58 Transaction Type : RESPONSE +14:14:58 Received From : +14:14:58 ============================================================================ +14:14:58 FNo. Len. Field Value +14:14:58 ============================================================================ +14:14:58 [ 1] [ 4] [0210] +14:14:58 [ 2] [ 16] [1808931800012450] +14:14:58 [ 3] [ 6] [010000] +14:14:58 [ 4] [ 12] [000100000000] +14:14:58 [ 6] [ 12] [000100000000] +14:14:58 [ 7] [ 10] [0320141446] +14:14:58 [ 11] [ 6] [767629] +14:14:58 [ 12] [ 6] [141446] +14:14:58 [ 13] [ 4] [0320] +14:14:58 [ 18] [ 4] [6011] +14:14:58 [ 19] [ 3] [418] +14:14:58 [ 22] [ 3] [021] +14:14:58 [ 32] [ 6] [621354] +14:14:58 [ 35] [ 27] [1808931800012450=1803500989] +14:14:58 [ 37] [ 12] [507904635691] +14:14:58 [ 38] [ 6] [767629] +14:14:58 [ 39] [ 2] [00] +14:14:58 [ 41] [ 8] [17000800] +14:14:58 [ 49] [ 3] [418] +14:14:58 [ 52] [ 16] [24FC87E918E6E1D9] +14:14:58 [ 54] [ 20] [1001418C000141056700] +14:14:58 ============================================================================ +14:14:58 Sending to : +14:14:58 ============================================================================ +14:14:58 + + +waiting on router queue for slot.... +14:15:00 ============================================================================ +14:15:00 Slot Id : <268> +14:15:00 Transaction Type : RESPONSE +14:15:00 Received From : +14:15:00 ============================================================================ +14:15:00 FNo. Len. Field Value +14:15:00 ============================================================================ +14:15:00 [ 1] [ 4] [0210] +14:15:00 [ 2] [ 16] [1808931800012450] +14:15:00 [ 3] [ 6] [010000] +14:15:00 [ 4] [ 12] [000100000000] +14:15:00 [ 6] [ 12] [000100000000] +14:15:00 [ 7] [ 10] [0320141446] +14:15:00 [ 11] [ 6] [767629] +14:15:00 [ 12] [ 6] [141446] +14:15:00 [ 13] [ 4] [0320] +14:15:00 [ 18] [ 4] [6011] +14:15:00 [ 19] [ 3] [418] +14:15:00 [ 22] [ 3] [021] +14:15:00 [ 32] [ 6] [621354] +14:15:00 [ 35] [ 27] [1808931800012450=1803500989] +14:15:00 [ 37] [ 12] [507904635691] +14:15:00 [ 38] [ 6] [767629] +14:15:00 [ 39] [ 2] [00] +14:15:00 [ 41] [ 8] [17000800] +14:15:00 [ 49] [ 3] [418] +14:15:00 [ 52] [ 16] [24FC87E918E6E1D9] +14:15:00 [ 54] [ 20] [1001418C000141056700] +14:15:00 ============================================================================ +14:15:00 Calculate Source COMM Id = 0 +14:15:00 ============================================================================ +14:15:00 + + +waiting on router queue for slot.... +14:15:03 ============================================================================ +14:15:03 Slot Id : <348> +14:15:03 Transaction Type : REQUEST +14:15:03 Received From : +14:15:03 ============================================================================ +14:15:03 FNo. Len. Field Value +14:15:03 ============================================================================ +14:15:03 [ 1] [ 4] [0800] +14:15:03 [ 7] [ 10] [0320071410] +14:15:03 [ 11] [ 6] [156739] +14:15:03 [ 70] [ 3] [301] +14:15:03 ============================================================================ +14:15:03 + + +waiting on router queue for slot.... +14:15:03 Sending to : +14:15:03 ============================================================================ +14:15:03 ============================================================================ +14:15:03 Slot Id : <348> +14:15:03 Transaction Type : RESPONSE +14:15:03 Received From : +14:15:03 ============================================================================ +14:15:03 FNo. Len. Field Value +14:15:03 ============================================================================ +14:15:03 [ 1] [ 4] [0810] +14:15:03 [ 7] [ 10] [0320071410] +14:15:03 [ 11] [ 6] [156739] +14:15:03 [ 39] [ 2] [00] +14:15:03 [ 70] [ 3] [301] +14:15:03 ============================================================================ +14:15:03 Calculate Source COMM Id = 2 +14:15:03 ============================================================================ +14:15:03 + + +waiting on router queue for slot.... +14:15:12 ============================================================================ +14:15:12 Slot Id : <341> +14:15:12 Transaction Type : REQUEST +14:15:12 Received From : +14:15:12 ============================================================================ +14:15:12 FNo. Len. Field Value +14:15:12 ============================================================================ +14:15:12 [ 1] [ 4] [0800] +14:15:12 [ 2] [ 5] [02531] +14:15:12 [ 3] [ 6] [579148] +14:15:12 [ 7] [ 10] [0320071512] +14:15:12 [ 11] [ 6] [807239] +14:15:12 [ 15] [ 10] [0320071512] +14:15:12 [ 37] [ 11] [57914807239] +14:15:12 [ 70] [ 3] [001] +14:15:12 ============================================================================ +14:15:12 + + +waiting on router queue for slot.... +14:15:12 ============================================================================ +14:15:12 Slot Id : <341> +14:15:12 Transaction Type : RESPONSE +14:15:12 Received From : +14:15:12 ============================================================================ +14:15:12 FNo. Len. Field Value +14:15:12 ============================================================================ +14:15:12 [ 1] [ 4] [0810] +14:15:12 [ 7] [ 10] [0320071512] +14:15:12 [ 11] [ 6] [807239] +14:15:12 [ 15] [ 4] [0320] +14:15:12 [ 37] [ 12] [57914807239] +14:15:12 [ 39] [ 2] [00] +14:15:12 [ 70] [ 3] [001] +14:15:12 ============================================================================ +14:15:12 Sending to : +14:15:12 ============================================================================ +14:15:12 + + +waiting on router queue for slot.... +14:15:15 ============================================================================ +14:15:15 Slot Id : <329> +14:15:15 Transaction Type : REQUEST +14:15:15 Received From : +14:15:15 ============================================================================ +14:15:15 FNo. Len. Field Value +14:15:15 ============================================================================ +14:15:15 [ 1] [ 4] [0200] +14:15:15 [ 2] [ 16] [6688990103552202] +14:15:15 [ 3] [ 6] [010000] +14:15:15 [ 4] [ 12] [000200000000] +14:15:15 [ 7] [ 10] [0320071422] +14:15:15 [ 11] [ 6] [269593] +14:15:15 [ 12] [ 6] [141422] +14:15:15 [ 13] [ 4] [0320] +14:15:15 [ 14] [ 4] [4301] +14:15:15 [ 15] [ 4] [0320] +14:15:15 [ 18] [ 4] [6011] +14:15:15 [ 19] [ 3] [418] +14:15:15 [ 22] [ 3] [021] +14:15:15 [ 25] [ 2] [01] +14:15:15 [ 28] [ 9] [D00002000] +14:15:15 [ 32] [ 6] [180893] +14:15:15 [ 35] [ 37] [6688990103552202=43011231220271600000] +14:15:15 [ 37] [ 12] [507907269593] +14:15:15 [ 41] [ 8] [0221XKKM] +14:15:15 [ 42] [ 15] [999999 ] +14:15:15 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:15:15 [ 49] [ 3] [418] +14:15:15 [ 52] [ 16] [35E305BBF99D57AC] +14:15:15 ============================================================================ +14:15:15 + + +waiting on router queue for slot.... +14:15:15 Sending to : +14:15:15 ============================================================================ +14:15:15 Sending to : +14:15:15 ============================================================================ +14:15:15 ============================================================================ +14:15:15 Slot Id : <329> +14:15:15 Transaction Type : REQUEST +14:15:15 Received From : +14:15:15 ============================================================================ +14:15:15 FNo. Len. Field Value +14:15:15 ============================================================================ +14:15:15 [ 1] [ 4] [0200] +14:15:15 [ 2] [ 16] [6688990103552202] +14:15:15 [ 3] [ 6] [010000] +14:15:15 [ 4] [ 12] [000200000000] +14:15:15 [ 7] [ 10] [0320071422] +14:15:15 [ 11] [ 6] [269593] +14:15:15 [ 12] [ 6] [141422] +14:15:15 [ 13] [ 4] [0320] +14:15:15 [ 14] [ 4] [4301] +14:15:15 [ 15] [ 4] [0320] +14:15:15 [ 18] [ 4] [6011] +14:15:15 [ 19] [ 3] [418] +14:15:15 [ 22] [ 3] [021] +14:15:15 [ 25] [ 2] [01] +14:15:15 [ 28] [ 9] [D00002000] +14:15:15 [ 32] [ 6] [180893] +14:15:15 [ 35] [ 37] [6688990103552202=43011231220271600000] +14:15:15 [ 37] [ 12] [507907269593] +14:15:15 [ 41] [ 8] [0221XKKM] +14:15:15 [ 42] [ 15] [999999 ] +14:15:15 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:15:15 [ 49] [ 3] [418] +14:15:15 [ 52] [ 16] [35E305BBF99D57AC] +14:15:15 ============================================================================ +14:15:15 + + +waiting on router queue for slot.... +14:15:15 Sending to : +14:15:15 ============================================================================ +14:15:15 ============================================================================ +14:15:15 Slot Id : <329> +14:15:15 Transaction Type : REQUEST +14:15:15 Received From : +14:15:15 ============================================================================ +14:15:15 FNo. Len. Field Value +14:15:15 ============================================================================ +14:15:15 [ 1] [ 4] [0200] +14:15:15 [ 2] [ 16] [6688990103552202] +14:15:15 [ 3] [ 6] [010000] +14:15:15 [ 4] [ 12] [000200000000] +14:15:15 [ 7] [ 10] [0320071422] +14:15:15 [ 11] [ 6] [269593] +14:15:15 [ 12] [ 6] [141422] +14:15:15 [ 13] [ 4] [0320] +14:15:15 [ 14] [ 4] [4301] +14:15:15 [ 15] [ 4] [0320] +14:15:15 [ 18] [ 4] [6011] +14:15:15 [ 19] [ 3] [418] +14:15:15 [ 22] [ 3] [021] +14:15:15 [ 25] [ 2] [01] +14:15:15 [ 28] [ 9] [D00002000] +14:15:15 [ 32] [ 6] [180893] +14:15:15 [ 35] [ 37] [6688990103552202=43011231220271600000] +14:15:15 [ 37] [ 12] [507907269593] +14:15:15 [ 41] [ 8] [0221XKKM] +14:15:15 [ 42] [ 15] [999999 ] +14:15:15 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:15:15 [ 49] [ 3] [418] +14:15:15 [ 52] [ 16] [401FCAD47004E212] +14:15:15 ============================================================================ +14:15:15 + + +waiting on router queue for slot.... +14:15:15 Sending to : <0> +14:15:15 ============================================================================ +14:15:15 ============================================================================ +14:15:15 Slot Id : <329> +14:15:15 Transaction Type : RESPONSE +14:15:15 Received From : +14:15:15 ============================================================================ +14:15:15 FNo. Len. Field Value +14:15:15 ============================================================================ +14:15:15 [ 1] [ 4] [0210] +14:15:15 [ 2] [ 16] [6688990103552202] +14:15:15 [ 3] [ 6] [010000] +14:15:15 [ 4] [ 12] [000200000000] +14:15:15 [ 7] [ 10] [0320071422] +14:15:15 [ 11] [ 6] [269593] +14:15:15 [ 12] [ 6] [141422] +14:15:15 [ 13] [ 4] [0320] +14:15:15 [ 15] [ 4] [0320] +14:15:15 [ 18] [ 4] [6011] +14:15:15 [ 19] [ 3] [418] +14:15:15 [ 22] [ 3] [021] +14:15:15 [ 32] [ 6] [180893] +14:15:15 [ 35] [ 37] [6688990103552202=43011231220271600000] +14:15:15 [ 37] [ 12] [507907269593] +14:15:15 [ 39] [ 2] [61] +14:15:15 [ 41] [ 8] [0221XKKM] +14:15:15 [ 49] [ 3] [418] +14:15:15 ============================================================================ +14:15:15 Sending to : +14:15:15 ============================================================================ +14:15:15 + + +waiting on router queue for slot.... +14:15:16 ============================================================================ +14:15:16 Slot Id : <329> +14:15:16 Transaction Type : RESPONSE +14:15:16 Received From : +14:15:16 ============================================================================ +14:15:16 FNo. Len. Field Value +14:15:16 ============================================================================ +14:15:16 [ 1] [ 4] [0210] +14:15:16 [ 2] [ 16] [6688990103552202] +14:15:16 [ 3] [ 6] [010000] +14:15:16 [ 4] [ 12] [000200000000] +14:15:16 [ 7] [ 10] [0320071422] +14:15:16 [ 11] [ 6] [269593] +14:15:16 [ 12] [ 6] [141422] +14:15:16 [ 13] [ 4] [0320] +14:15:16 [ 15] [ 4] [0320] +14:15:16 [ 18] [ 4] [6011] +14:15:16 [ 19] [ 3] [418] +14:15:16 [ 22] [ 3] [021] +14:15:16 [ 32] [ 6] [180893] +14:15:16 [ 35] [ 37] [6688990103552202=43011231220271600000] +14:15:16 [ 37] [ 12] [507907269593] +14:15:16 [ 39] [ 2] [61] +14:15:16 [ 41] [ 8] [0221XKKM] +14:15:16 [ 49] [ 3] [418] +14:15:16 ============================================================================ +14:15:16 Calculate Source COMM Id = 2 +14:15:16 ============================================================================ +14:15:16 + + +waiting on router queue for slot.... +14:15:27 ============================================================================ +14:15:27 Slot Id : <352> +14:15:27 Transaction Type : REQUEST +14:15:27 Received From : +14:15:27 ============================================================================ +14:15:27 FNo. Len. Field Value +14:15:27 ============================================================================ +14:15:27 [ 1] [ 4] [0200] +14:15:27 [ 2] [ 16] [6213545000546048] +14:15:27 [ 3] [ 6] [300000] +14:15:27 [ 4] [ 12] [000000000000] +14:15:27 [ 7] [ 10] [0320141318] +14:15:27 [ 11] [ 6] [948199] +14:15:27 [ 12] [ 6] [141318] +14:15:27 [ 13] [ 4] [0320] +14:15:27 [ 15] [ 4] [0320] +14:15:27 [ 18] [ 4] [6011] +14:15:27 [ 19] [ 3] [418] +14:15:27 [ 22] [ 3] [021] +14:15:27 [ 25] [ 2] [01] +14:15:27 [ 28] [ 9] [D00000000] +14:15:27 [ 32] [ 6] [668899] +14:15:27 [ 35] [ 32] [6213545000546048=491212014604644] +14:15:27 [ 37] [ 12] [507900285821] +14:15:27 [ 41] [ 8] [03010005] +14:15:27 [ 42] [ 15] [APT ] +14:15:27 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +14:15:27 [ 49] [ 3] [418] +14:15:27 [ 52] [ 16] [40935D3CF3AC8FB6] +14:15:27 ============================================================================ +14:15:27 + + +waiting on router queue for slot.... +14:15:27 Sending to : +14:15:27 ============================================================================ +14:15:27 Sending to : +14:15:27 ============================================================================ +14:15:28 ============================================================================ +14:15:28 Slot Id : <352> +14:15:28 Transaction Type : REQUEST +14:15:28 Received From : +14:15:28 ============================================================================ +14:15:28 FNo. Len. Field Value +14:15:28 ============================================================================ +14:15:28 [ 1] [ 4] [0200] +14:15:28 [ 2] [ 16] [6213545000546048] +14:15:28 [ 3] [ 6] [300000] +14:15:28 [ 4] [ 12] [000000000000] +14:15:28 [ 7] [ 10] [0320141318] +14:15:28 [ 11] [ 6] [948199] +14:15:28 [ 12] [ 6] [141318] +14:15:28 [ 13] [ 4] [0320] +14:15:28 [ 15] [ 4] [0320] +14:15:28 [ 18] [ 4] [6011] +14:15:28 [ 19] [ 3] [418] +14:15:28 [ 22] [ 3] [021] +14:15:28 [ 25] [ 2] [01] +14:15:28 [ 28] [ 9] [D00000000] +14:15:28 [ 32] [ 6] [668899] +14:15:28 [ 35] [ 32] [6213545000546048=491212014604644] +14:15:28 [ 37] [ 12] [507900285821] +14:15:28 [ 41] [ 8] [03010005] +14:15:28 [ 42] [ 15] [APT ] +14:15:28 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +14:15:28 [ 49] [ 3] [418] +14:15:28 [ 52] [ 16] [40935D3CF3AC8FB6] +14:15:28 ============================================================================ +14:15:28 + + +waiting on router queue for slot.... +14:15:28 Sending to : +14:15:28 ============================================================================ +14:15:28 ============================================================================ +14:15:28 Slot Id : <352> +14:15:28 Transaction Type : REQUEST +14:15:28 Received From : +14:15:28 ============================================================================ +14:15:28 FNo. Len. Field Value +14:15:28 ============================================================================ +14:15:28 [ 1] [ 4] [0200] +14:15:28 [ 2] [ 16] [6213545000546048] +14:15:28 [ 3] [ 6] [300000] +14:15:28 [ 4] [ 12] [000000000000] +14:15:28 [ 7] [ 10] [0320141318] +14:15:28 [ 11] [ 6] [948199] +14:15:28 [ 12] [ 6] [141318] +14:15:28 [ 13] [ 4] [0320] +14:15:28 [ 15] [ 4] [0320] +14:15:28 [ 18] [ 4] [6011] +14:15:28 [ 19] [ 3] [418] +14:15:28 [ 22] [ 3] [021] +14:15:28 [ 25] [ 2] [01] +14:15:28 [ 28] [ 9] [D00000000] +14:15:28 [ 32] [ 6] [668899] +14:15:28 [ 35] [ 32] [6213545000546048=491212014604644] +14:15:28 [ 37] [ 12] [507900285821] +14:15:28 [ 41] [ 8] [03010005] +14:15:28 [ 42] [ 15] [APT ] +14:15:28 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +14:15:28 [ 49] [ 3] [418] +14:15:28 [ 52] [ 16] [B9B0CBD5F7920DBB] +14:15:28 ============================================================================ +14:15:28 + + +waiting on router queue for slot.... +14:15:28 Sending to : <0> +14:15:28 ============================================================================ +14:15:28 ============================================================================ +14:15:28 Slot Id : <352> +14:15:28 Transaction Type : RESPONSE +14:15:28 Received From : +14:15:28 ============================================================================ +14:15:28 FNo. Len. Field Value +14:15:28 ============================================================================ +14:15:28 [ 1] [ 4] [0210] +14:15:28 [ 2] [ 16] [6213545000546048] +14:15:28 [ 3] [ 6] [300000] +14:15:28 [ 4] [ 12] [000000000000] +14:15:28 [ 7] [ 10] [0320141318] +14:15:28 [ 11] [ 6] [948199] +14:15:28 [ 12] [ 6] [141318] +14:15:28 [ 13] [ 4] [0320] +14:15:28 [ 15] [ 4] [0320] +14:15:28 [ 18] [ 4] [6011] +14:15:28 [ 19] [ 3] [418] +14:15:28 [ 32] [ 6] [668899] +14:15:28 [ 35] [ 32] [6213545000546048=491212014604644] +14:15:28 [ 37] [ 12] [507900285821] +14:15:28 [ 38] [ 6] [726068] +14:15:28 [ 39] [ 2] [00] +14:15:28 [ 41] [ 8] [03010005] +14:15:28 [ 49] [ 3] [418] +14:15:28 [ 54] [ 40] [0001418C0000105656030002418C000010565603] +14:15:28 ============================================================================ +14:15:28 Sending to : +14:15:28 ============================================================================ +14:15:28 + + +waiting on router queue for slot.... +14:15:30 ============================================================================ +14:15:30 Slot Id : <352> +14:15:30 Transaction Type : RESPONSE +14:15:30 Received From : +14:15:30 ============================================================================ +14:15:30 FNo. Len. Field Value +14:15:30 ============================================================================ +14:15:30 [ 1] [ 4] [0210] +14:15:30 [ 2] [ 16] [6213545000546048] +14:15:30 [ 3] [ 6] [300000] +14:15:30 [ 4] [ 12] [000000000000] +14:15:30 [ 7] [ 10] [0320141318] +14:15:30 [ 11] [ 6] [948199] +14:15:30 [ 12] [ 6] [141318] +14:15:30 [ 13] [ 4] [0320] +14:15:30 [ 15] [ 4] [0320] +14:15:30 [ 18] [ 4] [6011] +14:15:30 [ 19] [ 3] [418] +14:15:30 [ 32] [ 6] [668899] +14:15:30 [ 35] [ 32] [6213545000546048=491212014604644] +14:15:30 [ 37] [ 12] [507900285821] +14:15:30 [ 38] [ 6] [726068] +14:15:30 [ 39] [ 2] [00] +14:15:30 [ 41] [ 8] [03010005] +14:15:30 [ 49] [ 3] [418] +14:15:30 [ 54] [ 40] [0001418C0000105656030002418C000010565603] +14:15:30 ============================================================================ +14:15:30 Calculate Source COMM Id = 4 +14:15:30 ============================================================================ +14:15:30 + + +waiting on router queue for slot.... +14:15:30 ============================================================================ +14:15:30 Slot Id : <309> +14:15:30 Transaction Type : REQUEST +14:15:30 Received From : +14:15:30 ============================================================================ +14:15:30 FNo. Len. Field Value +14:15:30 ============================================================================ +14:15:30 [ 1] [ 4] [0800] +14:15:30 [ 7] [ 10] [0320071437] +14:15:30 [ 11] [ 6] [156740] +14:15:30 [ 70] [ 3] [301] +14:15:30 ============================================================================ +14:15:30 + + +waiting on router queue for slot.... +14:15:30 Sending to : +14:15:30 ============================================================================ +14:15:30 ============================================================================ +14:15:30 Slot Id : <309> +14:15:30 Transaction Type : RESPONSE +14:15:30 Received From : +14:15:30 ============================================================================ +14:15:30 FNo. Len. Field Value +14:15:30 ============================================================================ +14:15:30 [ 1] [ 4] [0810] +14:15:30 [ 7] [ 10] [0320071437] +14:15:30 [ 11] [ 6] [156740] +14:15:30 [ 39] [ 2] [00] +14:15:30 [ 70] [ 3] [301] +14:15:30 ============================================================================ +14:15:30 Calculate Source COMM Id = 2 +14:15:30 ============================================================================ +14:15:30 + + +waiting on router queue for slot.... +14:15:39 ============================================================================ +14:15:39 Slot Id : <328> +14:15:39 Transaction Type : REQUEST +14:15:39 Received From : +14:15:39 ============================================================================ +14:15:39 FNo. Len. Field Value +14:15:39 ============================================================================ +14:15:39 [ 1] [ 4] [0800] +14:15:39 [ 7] [ 10] [0320212727] +14:15:39 [ 11] [ 6] [142727] +14:15:39 [ 37] [ 12] [57914142727] +14:15:39 [ 70] [ 3] [301] +14:15:39 ============================================================================ +14:15:39 + + +waiting on router queue for slot.... +14:15:39 Sending to : +14:15:39 ============================================================================ +14:15:39 ============================================================================ +14:15:39 Slot Id : <328> +14:15:39 Transaction Type : RESPONSE +14:15:39 Received From : +14:15:39 ============================================================================ +14:15:39 FNo. Len. Field Value +14:15:39 ============================================================================ +14:15:39 [ 1] [ 4] [0810] +14:15:39 [ 7] [ 10] [0320212727] +14:15:39 [ 11] [ 6] [142727] +14:15:39 [ 37] [ 12] [579141427270] +14:15:39 [ 39] [ 2] [00] +14:15:39 [ 70] [ 3] [810] +14:15:39 ============================================================================ +14:15:39 Calculate Source COMM Id = 6 +14:15:39 ============================================================================ +14:15:39 + + +waiting on router queue for slot.... +14:15:40 ============================================================================ +14:15:40 Slot Id : <337> +14:15:40 Transaction Type : REQUEST +14:15:40 Received From : +14:15:40 ============================================================================ +14:15:40 FNo. Len. Field Value +14:15:40 ============================================================================ +14:15:40 [ 1] [ 4] [0200] +14:15:40 [ 2] [ 16] [6213545000840516] +14:15:40 [ 3] [ 6] [010000] +14:15:40 [ 4] [ 12] [000010000000] +14:15:40 [ 7] [ 10] [0320141331] +14:15:40 [ 11] [ 6] [948202] +14:15:40 [ 12] [ 6] [141331] +14:15:40 [ 13] [ 4] [0320] +14:15:40 [ 15] [ 4] [0320] +14:15:40 [ 18] [ 4] [6011] +14:15:40 [ 19] [ 3] [418] +14:15:40 [ 22] [ 3] [021] +14:15:40 [ 25] [ 2] [01] +14:15:40 [ 28] [ 9] [D00002000] +14:15:40 [ 32] [ 6] [668899] +14:15:40 [ 35] [ 32] [6213545000840516=491212014051319] +14:15:40 [ 37] [ 12] [507900329917] +14:15:40 [ 41] [ 8] [03013003] +14:15:40 [ 42] [ 15] [APT ] +14:15:40 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +14:15:40 [ 49] [ 3] [418] +14:15:40 [ 52] [ 16] [32C02508DCDD1B97] +14:15:40 ============================================================================ +14:15:40 + + +waiting on router queue for slot.... +14:15:40 Sending to : +14:15:40 ============================================================================ +14:15:40 Sending to : +14:15:40 ============================================================================ +14:15:40 ============================================================================ +14:15:40 Slot Id : <337> +14:15:40 Transaction Type : REQUEST +14:15:40 Received From : +14:15:40 ============================================================================ +14:15:40 FNo. Len. Field Value +14:15:40 ============================================================================ +14:15:40 [ 1] [ 4] [0200] +14:15:40 [ 2] [ 16] [6213545000840516] +14:15:40 [ 3] [ 6] [010000] +14:15:40 [ 4] [ 12] [000010000000] +14:15:40 [ 7] [ 10] [0320141331] +14:15:40 [ 11] [ 6] [948202] +14:15:40 [ 12] [ 6] [141331] +14:15:40 [ 13] [ 4] [0320] +14:15:40 [ 15] [ 4] [0320] +14:15:40 [ 18] [ 4] [6011] +14:15:40 [ 19] [ 3] [418] +14:15:40 [ 22] [ 3] [021] +14:15:40 [ 25] [ 2] [01] +14:15:40 [ 28] [ 9] [D00002000] +14:15:40 [ 32] [ 6] [668899] +14:15:40 [ 35] [ 32] [6213545000840516=491212014051319] +14:15:40 [ 37] [ 12] [507900329917] +14:15:40 [ 41] [ 8] [03013003] +14:15:40 [ 42] [ 15] [APT ] +14:15:40 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +14:15:40 [ 49] [ 3] [418] +14:15:40 [ 52] [ 16] [32C02508DCDD1B97] +14:15:40 ============================================================================ +14:15:40 + + +waiting on router queue for slot.... +14:15:40 Sending to : +14:15:40 ============================================================================ +14:15:40 ============================================================================ +14:15:40 Slot Id : <337> +14:15:40 Transaction Type : REQUEST +14:15:40 Received From : +14:15:40 ============================================================================ +14:15:40 FNo. Len. Field Value +14:15:40 ============================================================================ +14:15:40 [ 1] [ 4] [0200] +14:15:40 [ 2] [ 16] [6213545000840516] +14:15:40 [ 3] [ 6] [010000] +14:15:40 [ 4] [ 12] [000010000000] +14:15:40 [ 7] [ 10] [0320141331] +14:15:40 [ 11] [ 6] [948202] +14:15:40 [ 12] [ 6] [141331] +14:15:40 [ 13] [ 4] [0320] +14:15:40 [ 15] [ 4] [0320] +14:15:40 [ 18] [ 4] [6011] +14:15:40 [ 19] [ 3] [418] +14:15:40 [ 22] [ 3] [021] +14:15:40 [ 25] [ 2] [01] +14:15:40 [ 28] [ 9] [D00002000] +14:15:40 [ 32] [ 6] [668899] +14:15:40 [ 35] [ 32] [6213545000840516=491212014051319] +14:15:40 [ 37] [ 12] [507900329917] +14:15:40 [ 41] [ 8] [03013003] +14:15:40 [ 42] [ 15] [APT ] +14:15:40 [ 43] [ 40] [ LAO TELECOM THAKHAK DILAO] +14:15:40 [ 49] [ 3] [418] +14:15:40 [ 52] [ 16] [67BF8A8D61C1552C] +14:15:40 ============================================================================ +14:15:40 + + +waiting on router queue for slot.... +14:15:40 Sending to : <0> +14:15:40 ============================================================================ +14:15:41 ============================================================================ +14:15:41 Slot Id : <337> +14:15:41 Transaction Type : RESPONSE +14:15:41 Received From : +14:15:41 ============================================================================ +14:15:41 FNo. Len. Field Value +14:15:41 ============================================================================ +14:15:41 [ 1] [ 4] [0210] +14:15:41 [ 2] [ 16] [6213545000840516] +14:15:41 [ 3] [ 6] [010000] +14:15:41 [ 4] [ 12] [000010000000] +14:15:41 [ 7] [ 10] [0320141331] +14:15:41 [ 11] [ 6] [948202] +14:15:41 [ 12] [ 6] [141331] +14:15:41 [ 13] [ 4] [0320] +14:15:41 [ 15] [ 4] [0320] +14:15:41 [ 18] [ 4] [6011] +14:15:41 [ 19] [ 3] [418] +14:15:41 [ 32] [ 6] [668899] +14:15:41 [ 35] [ 32] [6213545000840516=491212014051319] +14:15:41 [ 37] [ 12] [507900329917] +14:15:41 [ 38] [ 6] [404804] +14:15:41 [ 39] [ 2] [00] +14:15:41 [ 41] [ 8] [03013003] +14:15:41 [ 49] [ 3] [418] +14:15:41 [ 54] [ 40] [0001418C0000282472460002418C000028247246] +14:15:41 ============================================================================ +14:15:41 Sending to : +14:15:41 ============================================================================ +14:15:41 + + +waiting on router queue for slot.... +14:15:43 ============================================================================ +14:15:43 Slot Id : <337> +14:15:43 Transaction Type : RESPONSE +14:15:43 Received From : +14:15:43 ============================================================================ +14:15:43 FNo. Len. Field Value +14:15:43 ============================================================================ +14:15:43 [ 1] [ 4] [0210] +14:15:43 [ 2] [ 16] [6213545000840516] +14:15:43 [ 3] [ 6] [010000] +14:15:43 [ 4] [ 12] [000010000000] +14:15:43 [ 7] [ 10] [0320141331] +14:15:43 [ 11] [ 6] [948202] +14:15:43 [ 12] [ 6] [141331] +14:15:43 [ 13] [ 4] [0320] +14:15:43 [ 15] [ 4] [0320] +14:15:43 [ 18] [ 4] [6011] +14:15:43 [ 19] [ 3] [418] +14:15:43 [ 32] [ 6] [668899] +14:15:43 [ 35] [ 32] [6213545000840516=491212014051319] +14:15:43 [ 37] [ 12] [507900329917] +14:15:43 [ 38] [ 6] [404804] +14:15:43 [ 39] [ 2] [00] +14:15:43 [ 41] [ 8] [03013003] +14:15:43 [ 49] [ 3] [418] +14:15:43 [ 54] [ 40] [0001418C0000282472460002418C000028247246] +14:15:43 ============================================================================ +14:15:43 Calculate Source COMM Id = 4 +14:15:43 ============================================================================ +14:15:43 + + +waiting on router queue for slot.... +14:15:45 ============================================================================ +14:15:45 Slot Id : <347> +14:15:45 Transaction Type : REQUEST +14:15:45 Received From : +14:15:45 ============================================================================ +14:15:45 FNo. Len. Field Value +14:15:45 ============================================================================ +14:15:45 [ 1] [ 4] [0800] +14:15:45 [ 7] [ 10] [0320071453] +14:15:45 [ 11] [ 6] [156741] +14:15:45 [ 70] [ 3] [301] +14:15:45 ============================================================================ +14:15:45 + + +waiting on router queue for slot.... +14:15:45 Sending to : +14:15:45 ============================================================================ +14:15:45 ============================================================================ +14:15:45 Slot Id : <347> +14:15:45 Transaction Type : RESPONSE +14:15:45 Received From : +14:15:45 ============================================================================ +14:15:45 FNo. Len. Field Value +14:15:45 ============================================================================ +14:15:45 [ 1] [ 4] [0810] +14:15:45 [ 7] [ 10] [0320071453] +14:15:45 [ 11] [ 6] [156741] +14:15:45 [ 39] [ 2] [00] +14:15:45 [ 70] [ 3] [301] +14:15:45 ============================================================================ +14:15:45 Calculate Source COMM Id = 2 +14:15:45 ============================================================================ +14:15:45 + + +waiting on router queue for slot.... +14:15:56 ============================================================================ +14:15:56 Slot Id : <346> +14:15:56 Transaction Type : REQUEST +14:15:56 Received From : +14:15:56 ============================================================================ +14:15:56 FNo. Len. Field Value +14:15:56 ============================================================================ +14:15:56 [ 1] [ 4] [0800] +14:15:56 [ 7] [ 10] [0320071503] +14:15:56 [ 11] [ 6] [156742] +14:15:56 [ 70] [ 3] [301] +14:15:56 ============================================================================ +14:15:56 + + +waiting on router queue for slot.... +14:15:56 Sending to : +14:15:56 ============================================================================ +14:15:56 ============================================================================ +14:15:56 Slot Id : <346> +14:15:56 Transaction Type : RESPONSE +14:15:56 Received From : +14:15:56 ============================================================================ +14:15:56 FNo. Len. Field Value +14:15:56 ============================================================================ +14:15:56 [ 1] [ 4] [0810] +14:15:56 [ 7] [ 10] [0320071503] +14:15:56 [ 11] [ 6] [156742] +14:15:56 [ 39] [ 2] [00] +14:15:56 [ 70] [ 3] [301] +14:15:56 ============================================================================ +14:15:56 Calculate Source COMM Id = 2 +14:15:56 ============================================================================ +14:15:56 + + +waiting on router queue for slot.... +14:16:02 ============================================================================ +14:16:02 Slot Id : <350> +14:16:02 Transaction Type : REQUEST +14:16:02 Received From : +14:16:02 ============================================================================ +14:16:02 FNo. Len. Field Value +14:16:02 ============================================================================ +14:16:02 [ 1] [ 4] [0200] +14:16:02 [ 2] [ 16] [6213541000520216] +14:16:02 [ 3] [ 6] [010000] +14:16:02 [ 4] [ 12] [000200000000] +14:16:02 [ 7] [ 10] [0320071508] +14:16:02 [ 11] [ 6] [269596] +14:16:02 [ 12] [ 6] [141508] +14:16:02 [ 13] [ 4] [0320] +14:16:02 [ 14] [ 4] [4912] +14:16:02 [ 15] [ 4] [0320] +14:16:02 [ 18] [ 4] [6011] +14:16:02 [ 19] [ 3] [418] +14:16:02 [ 22] [ 3] [021] +14:16:02 [ 25] [ 2] [01] +14:16:02 [ 28] [ 9] [D00002000] +14:16:02 [ 32] [ 6] [180893] +14:16:02 [ 35] [ 32] [6213541000520216=491212012021755] +14:16:02 [ 37] [ 12] [507907269596] +14:16:02 [ 41] [ 8] [0463LNTN] +14:16:02 [ 42] [ 15] [999999 ] +14:16:02 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +14:16:02 [ 49] [ 3] [418] +14:16:02 [ 52] [ 16] [F304F0EDF5305207] +14:16:02 ============================================================================ +14:16:02 + + +waiting on router queue for slot.... +14:16:02 Sending to : +14:16:02 ============================================================================ +14:16:02 Sending to : +14:16:02 ============================================================================ +14:16:02 ============================================================================ +14:16:02 Slot Id : <350> +14:16:02 Transaction Type : REQUEST +14:16:02 Received From : +14:16:02 ============================================================================ +14:16:02 FNo. Len. Field Value +14:16:02 ============================================================================ +14:16:02 [ 1] [ 4] [0200] +14:16:02 [ 2] [ 16] [6213541000520216] +14:16:02 [ 3] [ 6] [010000] +14:16:02 [ 4] [ 12] [000200000000] +14:16:02 [ 7] [ 10] [0320071508] +14:16:02 [ 11] [ 6] [269596] +14:16:02 [ 12] [ 6] [141508] +14:16:02 [ 13] [ 4] [0320] +14:16:02 [ 14] [ 4] [4912] +14:16:02 [ 15] [ 4] [0320] +14:16:02 [ 18] [ 4] [6011] +14:16:02 [ 19] [ 3] [418] +14:16:02 [ 22] [ 3] [021] +14:16:02 [ 25] [ 2] [01] +14:16:02 [ 28] [ 9] [D00002000] +14:16:02 [ 32] [ 6] [180893] +14:16:02 [ 35] [ 32] [6213541000520216=491212012021755] +14:16:02 [ 37] [ 12] [507907269596] +14:16:02 [ 41] [ 8] [0463LNTN] +14:16:02 [ 42] [ 15] [999999 ] +14:16:02 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +14:16:02 [ 49] [ 3] [418] +14:16:02 [ 52] [ 16] [F304F0EDF5305207] +14:16:02 ============================================================================ +14:16:02 + + +waiting on router queue for slot.... +14:16:02 Sending to : +14:16:02 ============================================================================ +14:16:02 ============================================================================ +14:16:02 Slot Id : <350> +14:16:02 Transaction Type : REQUEST +14:16:02 Received From : +14:16:02 ============================================================================ +14:16:02 FNo. Len. Field Value +14:16:02 ============================================================================ +14:16:02 [ 1] [ 4] [0200] +14:16:02 [ 2] [ 16] [6213541000520216] +14:16:02 [ 3] [ 6] [010000] +14:16:02 [ 4] [ 12] [000200000000] +14:16:02 [ 7] [ 10] [0320071508] +14:16:02 [ 11] [ 6] [269596] +14:16:02 [ 12] [ 6] [141508] +14:16:02 [ 13] [ 4] [0320] +14:16:02 [ 14] [ 4] [4912] +14:16:02 [ 15] [ 4] [0320] +14:16:02 [ 18] [ 4] [6011] +14:16:02 [ 19] [ 3] [418] +14:16:02 [ 22] [ 3] [021] +14:16:02 [ 25] [ 2] [01] +14:16:02 [ 28] [ 9] [D00002000] +14:16:02 [ 32] [ 6] [180893] +14:16:02 [ 35] [ 32] [6213541000520216=491212012021755] +14:16:02 [ 37] [ 12] [507907269596] +14:16:02 [ 41] [ 8] [0463LNTN] +14:16:02 [ 42] [ 15] [999999 ] +14:16:02 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +14:16:02 [ 49] [ 3] [418] +14:16:02 [ 52] [ 16] [9D593EF59D88B70F] +14:16:02 ============================================================================ +14:16:02 + + +waiting on router queue for slot.... +14:16:02 Sending to : <0> +14:16:02 ============================================================================ +14:16:02 ============================================================================ +14:16:02 Slot Id : <350> +14:16:02 Transaction Type : RESPONSE +14:16:02 Received From : +14:16:02 ============================================================================ +14:16:02 FNo. Len. Field Value +14:16:02 ============================================================================ +14:16:02 [ 1] [ 4] [0210] +14:16:02 [ 2] [ 16] [6213541000520216] +14:16:02 [ 3] [ 6] [010000] +14:16:02 [ 4] [ 12] [000200000000] +14:16:02 [ 7] [ 10] [0320071508] +14:16:02 [ 11] [ 6] [269596] +14:16:02 [ 12] [ 6] [141508] +14:16:02 [ 13] [ 4] [0320] +14:16:02 [ 15] [ 4] [0320] +14:16:02 [ 18] [ 4] [6011] +14:16:02 [ 19] [ 3] [418] +14:16:02 [ 22] [ 3] [021] +14:16:02 [ 32] [ 6] [180893] +14:16:02 [ 35] [ 32] [6213541000520216=491212012021755] +14:16:02 [ 37] [ 12] [507907269596] +14:16:02 [ 39] [ 2] [61] +14:16:02 [ 41] [ 8] [0463LNTN] +14:16:02 [ 49] [ 3] [418] +14:16:02 ============================================================================ +14:16:02 Sending to : +14:16:02 ============================================================================ +14:16:02 + + +waiting on router queue for slot.... +14:16:03 ============================================================================ +14:16:03 Slot Id : <350> +14:16:03 Transaction Type : RESPONSE +14:16:03 Received From : +14:16:03 ============================================================================ +14:16:03 FNo. Len. Field Value +14:16:03 ============================================================================ +14:16:03 [ 1] [ 4] [0210] +14:16:03 [ 2] [ 16] [6213541000520216] +14:16:03 [ 3] [ 6] [010000] +14:16:03 [ 4] [ 12] [000200000000] +14:16:03 [ 7] [ 10] [0320071508] +14:16:03 [ 11] [ 6] [269596] +14:16:03 [ 12] [ 6] [141508] +14:16:03 [ 13] [ 4] [0320] +14:16:03 [ 15] [ 4] [0320] +14:16:03 [ 18] [ 4] [6011] +14:16:03 [ 19] [ 3] [418] +14:16:03 [ 22] [ 3] [021] +14:16:03 [ 32] [ 6] [180893] +14:16:03 [ 35] [ 32] [6213541000520216=491212012021755] +14:16:03 [ 37] [ 12] [507907269596] +14:16:03 [ 39] [ 2] [61] +14:16:03 [ 41] [ 8] [0463LNTN] +14:16:03 [ 49] [ 3] [418] +14:16:03 ============================================================================ +14:16:03 Calculate Source COMM Id = 2 +14:16:03 ============================================================================ +14:16:03 + + +waiting on router queue for slot.... +14:16:10 ============================================================================ +14:16:10 Slot Id : <319> +14:16:10 Transaction Type : REQUEST +14:16:10 Received From : +14:16:10 ============================================================================ +14:16:10 FNo. Len. Field Value +14:16:10 ============================================================================ +14:16:10 [ 1] [ 4] [0200] +14:16:10 [ 2] [ 16] [1808931800012450] +14:16:10 [ 3] [ 6] [010000] +14:16:10 [ 4] [ 12] [000100000000] +14:16:10 [ 7] [ 10] [0320141605] +14:16:10 [ 11] [ 6] [767917] +14:16:10 [ 12] [ 6] [141605] +14:16:10 [ 13] [ 4] [0320] +14:16:10 [ 15] [ 4] [0320] +14:16:10 [ 18] [ 4] [6011] +14:16:10 [ 22] [ 3] [900] +14:16:10 [ 25] [ 2] [02] +14:16:10 [ 28] [ 9] [D00002000] +14:16:10 [ 32] [ 6] [621354] +14:16:10 [ 35] [ 27] [1808931800012450=1803500989] +14:16:10 [ 37] [ 12] [507904635693] +14:16:10 [ 41] [ 8] [17000800] +14:16:10 [ 42] [ 15] [NATIVE ] +14:16:10 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:16:10 [ 49] [ 3] [418] +14:16:10 [ 52] [ 16] [397D9A451524AD73] +14:16:10 ============================================================================ +14:16:10 + + +waiting on router queue for slot.... +14:16:10 Sending to : +14:16:10 ============================================================================ +14:16:10 Sending to : +14:16:10 ============================================================================ +14:16:10 ============================================================================ +14:16:10 Slot Id : <319> +14:16:10 Transaction Type : REQUEST +14:16:10 Received From : +14:16:10 ============================================================================ +14:16:10 FNo. Len. Field Value +14:16:10 ============================================================================ +14:16:10 [ 1] [ 4] [0200] +14:16:10 [ 2] [ 16] [1808931800012450] +14:16:10 [ 3] [ 6] [010000] +14:16:10 [ 4] [ 12] [000100000000] +14:16:10 [ 7] [ 10] [0320141605] +14:16:10 [ 11] [ 6] [767917] +14:16:10 [ 12] [ 6] [141605] +14:16:10 [ 13] [ 4] [0320] +14:16:10 [ 15] [ 4] [0320] +14:16:10 [ 18] [ 4] [6011] +14:16:10 [ 22] [ 3] [900] +14:16:10 [ 25] [ 2] [02] +14:16:10 [ 28] [ 9] [D00002000] +14:16:10 [ 32] [ 6] [621354] +14:16:10 [ 35] [ 27] [1808931800012450=1803500989] +14:16:10 [ 37] [ 12] [507904635693] +14:16:10 [ 41] [ 8] [17000800] +14:16:10 [ 42] [ 15] [NATIVE ] +14:16:10 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:16:10 [ 49] [ 3] [418] +14:16:10 [ 52] [ 16] [397D9A451524AD73] +14:16:10 ============================================================================ +14:16:10 + + +waiting on router queue for slot.... +14:16:10 Sending to : +14:16:10 ============================================================================ +14:16:10 ============================================================================ +14:16:10 Slot Id : <319> +14:16:10 Transaction Type : REQUEST +14:16:10 Received From : +14:16:10 ============================================================================ +14:16:10 FNo. Len. Field Value +14:16:10 ============================================================================ +14:16:10 [ 1] [ 4] [0200] +14:16:10 [ 2] [ 16] [1808931800012450] +14:16:10 [ 3] [ 6] [010000] +14:16:10 [ 4] [ 12] [000100000000] +14:16:10 [ 7] [ 10] [0320141605] +14:16:10 [ 11] [ 6] [767917] +14:16:10 [ 12] [ 6] [141605] +14:16:10 [ 13] [ 4] [0320] +14:16:10 [ 15] [ 4] [0320] +14:16:10 [ 18] [ 4] [6011] +14:16:10 [ 22] [ 3] [900] +14:16:10 [ 25] [ 2] [02] +14:16:10 [ 28] [ 9] [D00002000] +14:16:10 [ 32] [ 6] [621354] +14:16:10 [ 35] [ 27] [1808931800012450=1803500989] +14:16:10 [ 37] [ 12] [507904635693] +14:16:10 [ 41] [ 8] [17000800] +14:16:10 [ 42] [ 15] [NATIVE ] +14:16:10 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:16:10 [ 49] [ 3] [418] +14:16:10 [ 52] [ 16] [24FC87E918E6E1D9] +14:16:10 ============================================================================ +14:16:10 + + +waiting on router queue for slot.... +14:16:10 Sending to : <2> +14:16:10 ============================================================================ +14:16:14 ============================================================================ +14:16:14 Slot Id : <357> +14:16:14 Transaction Type : REQUEST +14:16:14 Received From : +14:16:14 ============================================================================ +14:16:14 FNo. Len. Field Value +14:16:14 ============================================================================ +14:16:14 [ 1] [ 4] [0800] +14:16:14 [ 2] [ 5] [02531] +14:16:14 [ 3] [ 6] [579148] +14:16:14 [ 7] [ 10] [0320071614] +14:16:14 [ 11] [ 6] [807240] +14:16:14 [ 15] [ 10] [0320071614] +14:16:14 [ 37] [ 11] [57914807240] +14:16:14 [ 70] [ 3] [001] +14:16:14 ============================================================================ +14:16:14 + + +waiting on router queue for slot.... +14:16:14 ============================================================================ +14:16:14 Slot Id : <357> +14:16:14 Transaction Type : RESPONSE +14:16:14 Received From : +14:16:14 ============================================================================ +14:16:14 FNo. Len. Field Value +14:16:14 ============================================================================ +14:16:14 [ 1] [ 4] [0810] +14:16:14 [ 7] [ 10] [0320071614] +14:16:14 [ 11] [ 6] [807240] +14:16:14 [ 15] [ 4] [0320] +14:16:14 [ 37] [ 12] [57914807240] +14:16:14 [ 39] [ 2] [00] +14:16:14 [ 70] [ 3] [001] +14:16:14 ============================================================================ +14:16:14 Sending to : +14:16:14 ============================================================================ +14:16:14 + + +waiting on router queue for slot.... +14:16:15 ============================================================================ +14:16:15 Slot Id : <356> +14:16:15 Transaction Type : REQUEST +14:16:15 Received From : +14:16:15 ============================================================================ +14:16:15 FNo. Len. Field Value +14:16:15 ============================================================================ +14:16:15 [ 1] [ 4] [0200] +14:16:15 [ 2] [ 16] [6688990104022007] +14:16:15 [ 3] [ 6] [301000] +14:16:15 [ 7] [ 10] [0320071521] +14:16:15 [ 11] [ 6] [269597] +14:16:15 [ 12] [ 6] [141521] +14:16:15 [ 13] [ 4] [0320] +14:16:15 [ 14] [ 4] [4302] +14:16:15 [ 15] [ 4] [0320] +14:16:15 [ 18] [ 4] [6011] +14:16:15 [ 19] [ 3] [418] +14:16:15 [ 22] [ 3] [021] +14:16:15 [ 25] [ 2] [01] +14:16:15 [ 32] [ 6] [180893] +14:16:15 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:16:15 [ 37] [ 12] [507907269597] +14:16:15 [ 41] [ 8] [0421BKPH] +14:16:15 [ 42] [ 15] [999999 ] +14:16:15 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:16:15 [ 49] [ 3] [418] +14:16:15 [ 52] [ 16] [473334DCBE911001] +14:16:15 ============================================================================ +14:16:15 + + +waiting on router queue for slot.... +14:16:15 Sending to : +14:16:15 ============================================================================ +14:16:15 Sending to : +14:16:15 ============================================================================ +14:16:15 ============================================================================ +14:16:15 Slot Id : <319> +14:16:15 Transaction Type : RESPONSE +14:16:15 Received From : +14:16:15 ============================================================================ +14:16:15 FNo. Len. Field Value +14:16:15 ============================================================================ +14:16:15 [ 1] [ 4] [0210] +14:16:15 [ 2] [ 16] [1808931800012450] +14:16:15 [ 3] [ 6] [010000] +14:16:15 [ 4] [ 12] [000100000000] +14:16:15 [ 6] [ 12] [000100000000] +14:16:15 [ 7] [ 10] [0320141605] +14:16:15 [ 11] [ 6] [767917] +14:16:15 [ 12] [ 6] [141605] +14:16:15 [ 13] [ 4] [0320] +14:16:15 [ 18] [ 4] [6011] +14:16:15 [ 19] [ 3] [418] +14:16:15 [ 22] [ 3] [021] +14:16:15 [ 32] [ 6] [621354] +14:16:15 [ 35] [ 27] [1808931800012450=1803500989] +14:16:15 [ 37] [ 12] [507904635693] +14:16:15 [ 38] [ 6] [767917] +14:16:15 [ 39] [ 2] [00] +14:16:15 [ 41] [ 8] [17000800] +14:16:15 [ 49] [ 3] [418] +14:16:15 [ 52] [ 16] [24FC87E918E6E1D9] +14:16:15 [ 54] [ 20] [1001418C000040856700] +14:16:15 ============================================================================ +14:16:15 Sending to : +14:16:15 ============================================================================ +14:16:15 + + +waiting on router queue for slot.... +14:16:15 ============================================================================ +14:16:15 Slot Id : <356> +14:16:15 Transaction Type : REQUEST +14:16:15 Received From : +14:16:15 ============================================================================ +14:16:15 FNo. Len. Field Value +14:16:15 ============================================================================ +14:16:15 [ 1] [ 4] [0200] +14:16:15 [ 2] [ 16] [6688990104022007] +14:16:15 [ 3] [ 6] [301000] +14:16:15 [ 7] [ 10] [0320071521] +14:16:15 [ 11] [ 6] [269597] +14:16:15 [ 12] [ 6] [141521] +14:16:15 [ 13] [ 4] [0320] +14:16:15 [ 14] [ 4] [4302] +14:16:15 [ 15] [ 4] [0320] +14:16:15 [ 18] [ 4] [6011] +14:16:15 [ 19] [ 3] [418] +14:16:15 [ 22] [ 3] [021] +14:16:15 [ 25] [ 2] [01] +14:16:15 [ 32] [ 6] [180893] +14:16:15 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:16:15 [ 37] [ 12] [507907269597] +14:16:15 [ 41] [ 8] [0421BKPH] +14:16:15 [ 42] [ 15] [999999 ] +14:16:15 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:16:15 [ 49] [ 3] [418] +14:16:15 [ 52] [ 16] [473334DCBE911001] +14:16:15 ============================================================================ +14:16:15 + + +waiting on router queue for slot.... +14:16:15 Sending to : +14:16:15 ============================================================================ +14:16:15 ============================================================================ +14:16:15 Slot Id : <356> +14:16:15 Transaction Type : REQUEST +14:16:15 Received From : +14:16:15 ============================================================================ +14:16:15 FNo. Len. Field Value +14:16:15 ============================================================================ +14:16:15 [ 1] [ 4] [0200] +14:16:15 [ 2] [ 16] [6688990104022007] +14:16:15 [ 3] [ 6] [301000] +14:16:15 [ 7] [ 10] [0320071521] +14:16:15 [ 11] [ 6] [269597] +14:16:15 [ 12] [ 6] [141521] +14:16:15 [ 13] [ 4] [0320] +14:16:15 [ 14] [ 4] [4302] +14:16:15 [ 15] [ 4] [0320] +14:16:15 [ 18] [ 4] [6011] +14:16:15 [ 19] [ 3] [418] +14:16:15 [ 22] [ 3] [021] +14:16:15 [ 25] [ 2] [01] +14:16:15 [ 32] [ 6] [180893] +14:16:15 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:16:15 [ 37] [ 12] [507907269597] +14:16:15 [ 41] [ 8] [0421BKPH] +14:16:15 [ 42] [ 15] [999999 ] +14:16:15 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:16:15 [ 49] [ 3] [418] +14:16:15 [ 52] [ 16] [3F768CEE6B61742D] +14:16:15 ============================================================================ +14:16:15 + + +waiting on router queue for slot.... +14:16:15 Sending to : <0> +14:16:15 ============================================================================ +14:16:15 ============================================================================ +14:16:15 Slot Id : <356> +14:16:15 Transaction Type : RESPONSE +14:16:15 Received From : +14:16:15 ============================================================================ +14:16:15 FNo. Len. Field Value +14:16:15 ============================================================================ +14:16:15 [ 1] [ 4] [0210] +14:16:15 [ 2] [ 16] [6688990104022007] +14:16:15 [ 3] [ 6] [301000] +14:16:15 [ 4] [ 12] [000000000000] +14:16:15 [ 7] [ 10] [0320071521] +14:16:15 [ 11] [ 6] [269597] +14:16:15 [ 12] [ 6] [141521] +14:16:15 [ 13] [ 4] [0320] +14:16:15 [ 15] [ 4] [0320] +14:16:15 [ 18] [ 4] [6011] +14:16:15 [ 19] [ 3] [418] +14:16:15 [ 22] [ 3] [021] +14:16:15 [ 32] [ 6] [180893] +14:16:15 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:16:15 [ 37] [ 12] [507907269597] +14:16:15 [ 39] [ 2] [14] +14:16:15 [ 41] [ 8] [0421BKPH] +14:16:15 [ 49] [ 3] [418] +14:16:15 ============================================================================ +14:16:15 Sending to : +14:16:15 ============================================================================ +14:16:15 + + +waiting on router queue for slot.... +14:16:16 ============================================================================ +14:16:16 Slot Id : <319> +14:16:16 Transaction Type : RESPONSE +14:16:16 Received From : +14:16:16 ============================================================================ +14:16:16 FNo. Len. Field Value +14:16:16 ============================================================================ +14:16:16 [ 1] [ 4] [0210] +14:16:16 [ 2] [ 16] [1808931800012450] +14:16:16 [ 3] [ 6] [010000] +14:16:16 [ 4] [ 12] [000100000000] +14:16:16 [ 6] [ 12] [000100000000] +14:16:16 [ 7] [ 10] [0320141605] +14:16:16 [ 11] [ 6] [767917] +14:16:16 [ 12] [ 6] [141605] +14:16:16 [ 13] [ 4] [0320] +14:16:16 [ 18] [ 4] [6011] +14:16:16 [ 19] [ 3] [418] +14:16:16 [ 22] [ 3] [021] +14:16:16 [ 32] [ 6] [621354] +14:16:16 [ 35] [ 27] [1808931800012450=1803500989] +14:16:16 [ 37] [ 12] [507904635693] +14:16:16 [ 38] [ 6] [767917] +14:16:16 [ 39] [ 2] [00] +14:16:16 [ 41] [ 8] [17000800] +14:16:16 [ 49] [ 3] [418] +14:16:16 [ 52] [ 16] [24FC87E918E6E1D9] +14:16:16 [ 54] [ 20] [1001418C000040856700] +14:16:16 ============================================================================ +14:16:16 Calculate Source COMM Id = 0 +14:16:16 ============================================================================ +14:16:16 + + +waiting on router queue for slot.... +14:16:17 ============================================================================ +14:16:17 Slot Id : <356> +14:16:17 Transaction Type : RESPONSE +14:16:17 Received From : +14:16:17 ============================================================================ +14:16:17 FNo. Len. Field Value +14:16:17 ============================================================================ +14:16:17 [ 1] [ 4] [0210] +14:16:17 [ 2] [ 16] [6688990104022007] +14:16:17 [ 3] [ 6] [301000] +14:16:17 [ 4] [ 12] [000000000000] +14:16:17 [ 7] [ 10] [0320071521] +14:16:17 [ 11] [ 6] [269597] +14:16:17 [ 12] [ 6] [141521] +14:16:17 [ 13] [ 4] [0320] +14:16:17 [ 15] [ 4] [0320] +14:16:17 [ 18] [ 4] [6011] +14:16:17 [ 19] [ 3] [418] +14:16:17 [ 22] [ 3] [021] +14:16:17 [ 32] [ 6] [180893] +14:16:17 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:16:17 [ 37] [ 12] [507907269597] +14:16:17 [ 39] [ 2] [14] +14:16:17 [ 41] [ 8] [0421BKPH] +14:16:17 [ 49] [ 3] [418] +14:16:17 ============================================================================ +14:16:17 Calculate Source COMM Id = 2 +14:16:17 ============================================================================ +14:16:17 + + +waiting on router queue for slot.... +14:16:22 ============================================================================ +14:16:22 Slot Id : <330> +14:16:22 Transaction Type : REQUEST +14:16:22 Received From : +14:16:22 ============================================================================ +14:16:22 FNo. Len. Field Value +14:16:22 ============================================================================ +14:16:22 [ 1] [ 4] [0200] +14:16:22 [ 2] [ 16] [6688990040121459] +14:16:22 [ 3] [ 6] [301000] +14:16:22 [ 4] [ 12] [000000000000] +14:16:22 [ 7] [ 10] [0320141617] +14:16:22 [ 11] [ 6] [767952] +14:16:22 [ 12] [ 6] [141617] +14:16:22 [ 13] [ 4] [0320] +14:16:22 [ 15] [ 4] [0320] +14:16:22 [ 18] [ 4] [6011] +14:16:22 [ 22] [ 3] [900] +14:16:22 [ 25] [ 2] [02] +14:16:22 [ 28] [ 9] [D00000000] +14:16:22 [ 32] [ 6] [621354] +14:16:22 [ 35] [ 37] [6688990040121459=98031261080700900000] +14:16:22 [ 37] [ 12] [507903032206] +14:16:22 [ 41] [ 8] [12002600] +14:16:22 [ 42] [ 15] [NATIVE ] +14:16:22 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +14:16:22 [ 49] [ 3] [418] +14:16:22 [ 52] [ 16] [00FFFA395E0C976D] +14:16:22 ============================================================================ +14:16:22 + + +waiting on router queue for slot.... +14:16:22 Sending to : +14:16:22 ============================================================================ +14:16:22 Sending to : +14:16:22 ============================================================================ +14:16:22 ============================================================================ +14:16:22 Slot Id : <332> +14:16:22 Transaction Type : REQUEST +14:16:22 Received From : +14:16:22 ============================================================================ +14:16:22 FNo. Len. Field Value +14:16:22 ============================================================================ +14:16:22 [ 1] [ 4] [0800] +14:16:22 [ 7] [ 10] [0320071412] +14:16:22 [ 11] [ 6] [096922] +14:16:22 [ 37] [ 12] [57914096922] +14:16:22 [ 70] [ 3] [301] +14:16:22 ============================================================================ +14:16:22 + + +waiting on router queue for slot.... +14:16:22 Sending to : +14:16:22 ============================================================================ +14:16:22 ============================================================================ +14:16:22 Slot Id : <332> +14:16:22 Transaction Type : RESPONSE +14:16:22 Received From : +14:16:22 ============================================================================ +14:16:22 FNo. Len. Field Value +14:16:22 ============================================================================ +14:16:22 [ 1] [ 4] [0810] +14:16:22 [ 7] [ 10] [0320071412] +14:16:22 [ 11] [ 6] [096922] +14:16:22 [ 37] [ 12] [579140969220] +14:16:22 [ 39] [ 2] [00] +14:16:22 [ 70] [ 3] [810] +14:16:22 ============================================================================ +14:16:22 Calculate Source COMM Id = 4 +14:16:22 ============================================================================ +14:16:22 + + +waiting on router queue for slot.... +14:16:22 ============================================================================ +14:16:22 Slot Id : <330> +14:16:22 Transaction Type : REQUEST +14:16:22 Received From : +14:16:22 ============================================================================ +14:16:22 FNo. Len. Field Value +14:16:22 ============================================================================ +14:16:22 [ 1] [ 4] [0200] +14:16:22 [ 2] [ 16] [6688990040121459] +14:16:22 [ 3] [ 6] [301000] +14:16:22 [ 4] [ 12] [000000000000] +14:16:22 [ 7] [ 10] [0320141617] +14:16:22 [ 11] [ 6] [767952] +14:16:22 [ 12] [ 6] [141617] +14:16:22 [ 13] [ 4] [0320] +14:16:22 [ 15] [ 4] [0320] +14:16:22 [ 18] [ 4] [6011] +14:16:22 [ 22] [ 3] [900] +14:16:22 [ 25] [ 2] [02] +14:16:22 [ 28] [ 9] [D00000000] +14:16:22 [ 32] [ 6] [621354] +14:16:22 [ 35] [ 37] [6688990040121459=98031261080700900000] +14:16:22 [ 37] [ 12] [507903032206] +14:16:22 [ 41] [ 8] [12002600] +14:16:22 [ 42] [ 15] [NATIVE ] +14:16:22 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +14:16:22 [ 49] [ 3] [418] +14:16:22 [ 52] [ 16] [00FFFA395E0C976D] +14:16:22 ============================================================================ +14:16:22 + + +waiting on router queue for slot.... +14:16:22 Sending to : +14:16:22 ============================================================================ +14:16:22 ============================================================================ +14:16:22 Slot Id : <330> +14:16:22 Transaction Type : REQUEST +14:16:22 Received From : +14:16:22 ============================================================================ +14:16:22 FNo. Len. Field Value +14:16:22 ============================================================================ +14:16:22 [ 1] [ 4] [0200] +14:16:22 [ 2] [ 16] [6688990040121459] +14:16:22 [ 3] [ 6] [301000] +14:16:22 [ 4] [ 12] [000000000000] +14:16:22 [ 7] [ 10] [0320141617] +14:16:22 [ 11] [ 6] [767952] +14:16:22 [ 12] [ 6] [141617] +14:16:22 [ 13] [ 4] [0320] +14:16:22 [ 15] [ 4] [0320] +14:16:22 [ 18] [ 4] [6011] +14:16:22 [ 22] [ 3] [900] +14:16:22 [ 25] [ 2] [02] +14:16:22 [ 28] [ 9] [D00000000] +14:16:22 [ 32] [ 6] [621354] +14:16:22 [ 35] [ 37] [6688990040121459=98031261080700900000] +14:16:22 [ 37] [ 12] [507903032206] +14:16:22 [ 41] [ 8] [12002600] +14:16:22 [ 42] [ 15] [NATIVE ] +14:16:22 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +14:16:22 [ 49] [ 3] [418] +14:16:22 [ 52] [ 16] [A072DAA1F05124EC] +14:16:22 ============================================================================ +14:16:22 + + +waiting on router queue for slot.... +14:16:22 Sending to : <4> +14:16:22 ============================================================================ +14:16:23 ============================================================================ +14:16:23 Slot Id : <330> +14:16:23 Transaction Type : RESPONSE +14:16:23 Received From : +14:16:23 ============================================================================ +14:16:23 FNo. Len. Field Value +14:16:23 ============================================================================ +14:16:23 [ 1] [ 4] [0210] +14:16:23 [ 2] [ 16] [6688990040121459] +14:16:23 [ 3] [ 6] [301000] +14:16:23 [ 4] [ 12] [000000000000] +14:16:23 [ 11] [ 6] [767952] +14:16:23 [ 12] [ 6] [141617] +14:16:23 [ 15] [ 4] [0320] +14:16:23 [ 18] [ 4] [6011] +14:16:23 [ 32] [ 6] [621354] +14:16:23 [ 35] [ 37] [6688990040121459=98031261080700900000] +14:16:23 [ 37] [ 12] [507903032206] +14:16:23 [ 38] [ 6] [967615] +14:16:23 [ 39] [ 2] [00] +14:16:23 [ 41] [ 8] [12002600] +14:16:23 [ 49] [ 3] [418] +14:16:23 [ 54] [ 20] [1002418C000003976559] +14:16:23 ============================================================================ +14:16:23 Sending to : +14:16:23 ============================================================================ +14:16:23 + + +waiting on router queue for slot.... +14:16:25 ============================================================================ +14:16:25 Slot Id : <330> +14:16:25 Transaction Type : RESPONSE +14:16:25 Received From : +14:16:25 ============================================================================ +14:16:25 FNo. Len. Field Value +14:16:25 ============================================================================ +14:16:25 [ 1] [ 4] [0210] +14:16:25 [ 2] [ 16] [6688990040121459] +14:16:25 [ 3] [ 6] [301000] +14:16:25 [ 4] [ 12] [000000000000] +14:16:25 [ 11] [ 6] [767952] +14:16:25 [ 12] [ 6] [141617] +14:16:25 [ 15] [ 4] [0320] +14:16:25 [ 18] [ 4] [6011] +14:16:25 [ 32] [ 6] [621354] +14:16:25 [ 35] [ 37] [6688990040121459=98031261080700900000] +14:16:25 [ 37] [ 12] [507903032206] +14:16:25 [ 38] [ 6] [967615] +14:16:25 [ 39] [ 2] [00] +14:16:25 [ 41] [ 8] [12002600] +14:16:25 [ 49] [ 3] [418] +14:16:25 [ 54] [ 20] [1002418C000003976559] +14:16:25 ============================================================================ +14:16:25 Calculate Source COMM Id = 0 +14:16:25 ============================================================================ +14:16:25 + + +waiting on router queue for slot.... +14:16:33 ============================================================================ +14:16:33 Slot Id : <365> +14:16:33 Transaction Type : REQUEST +14:16:33 Received From : +14:16:33 ============================================================================ +14:16:33 FNo. Len. Field Value +14:16:33 ============================================================================ +14:16:33 [ 1] [ 4] [0800] +14:16:33 [ 7] [ 10] [0320071540] +14:16:33 [ 11] [ 6] [156743] +14:16:33 [ 70] [ 3] [301] +14:16:33 ============================================================================ +14:16:33 + + +waiting on router queue for slot.... +14:16:33 Sending to : +14:16:33 ============================================================================ +14:16:33 ============================================================================ +14:16:33 Slot Id : <365> +14:16:33 Transaction Type : RESPONSE +14:16:33 Received From : +14:16:33 ============================================================================ +14:16:33 FNo. Len. Field Value +14:16:33 ============================================================================ +14:16:33 [ 1] [ 4] [0810] +14:16:33 [ 7] [ 10] [0320071540] +14:16:33 [ 11] [ 6] [156743] +14:16:33 [ 39] [ 2] [00] +14:16:33 [ 70] [ 3] [301] +14:16:33 ============================================================================ +14:16:33 Calculate Source COMM Id = 2 +14:16:33 ============================================================================ +14:16:33 + + +waiting on router queue for slot.... +14:16:40 ============================================================================ +14:16:40 Slot Id : <366> +14:16:40 Transaction Type : REQUEST +14:16:40 Received From : +14:16:40 ============================================================================ +14:16:40 FNo. Len. Field Value +14:16:40 ============================================================================ +14:16:40 [ 1] [ 4] [0200] +14:16:40 [ 2] [ 16] [6688990101499406] +14:16:40 [ 3] [ 6] [011000] +14:16:40 [ 4] [ 12] [000100000000] +14:16:40 [ 7] [ 10] [0320141635] +14:16:40 [ 11] [ 6] [768019] +14:16:40 [ 12] [ 6] [141635] +14:16:40 [ 13] [ 4] [0320] +14:16:40 [ 15] [ 4] [0320] +14:16:40 [ 18] [ 4] [6011] +14:16:40 [ 22] [ 3] [900] +14:16:40 [ 25] [ 2] [02] +14:16:40 [ 28] [ 9] [D00002000] +14:16:40 [ 32] [ 6] [621354] +14:16:40 [ 35] [ 37] [6688990101499406=42031231940694800000] +14:16:40 [ 37] [ 12] [507904645079] +14:16:40 [ 41] [ 8] [17000900] +14:16:40 [ 42] [ 15] [NATIVE ] +14:16:40 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:16:40 [ 49] [ 3] [418] +14:16:40 [ 52] [ 16] [FD59624B6973872E] +14:16:40 ============================================================================ +14:16:40 + + +waiting on router queue for slot.... +14:16:40 Sending to : +14:16:40 ============================================================================ +14:16:40 Sending to : +14:16:40 ============================================================================ +14:16:40 ============================================================================ +14:16:40 Slot Id : <366> +14:16:40 Transaction Type : REQUEST +14:16:40 Received From : +14:16:40 ============================================================================ +14:16:40 FNo. Len. Field Value +14:16:40 ============================================================================ +14:16:40 [ 1] [ 4] [0200] +14:16:40 [ 2] [ 16] [6688990101499406] +14:16:40 [ 3] [ 6] [011000] +14:16:40 [ 4] [ 12] [000100000000] +14:16:40 [ 7] [ 10] [0320141635] +14:16:40 [ 11] [ 6] [768019] +14:16:40 [ 12] [ 6] [141635] +14:16:40 [ 13] [ 4] [0320] +14:16:40 [ 15] [ 4] [0320] +14:16:40 [ 18] [ 4] [6011] +14:16:40 [ 22] [ 3] [900] +14:16:40 [ 25] [ 2] [02] +14:16:40 [ 28] [ 9] [D00002000] +14:16:40 [ 32] [ 6] [621354] +14:16:40 [ 35] [ 37] [6688990101499406=42031231940694800000] +14:16:40 [ 37] [ 12] [507904645079] +14:16:40 [ 41] [ 8] [17000900] +14:16:40 [ 42] [ 15] [NATIVE ] +14:16:40 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:16:40 [ 49] [ 3] [418] +14:16:40 [ 52] [ 16] [FD59624B6973872E] +14:16:40 ============================================================================ +14:16:40 + + +waiting on router queue for slot.... +14:16:40 Sending to : +14:16:40 ============================================================================ +14:16:40 ============================================================================ +14:16:40 Slot Id : <366> +14:16:40 Transaction Type : REQUEST +14:16:40 Received From : +14:16:40 ============================================================================ +14:16:40 FNo. Len. Field Value +14:16:40 ============================================================================ +14:16:40 [ 1] [ 4] [0200] +14:16:40 [ 2] [ 16] [6688990101499406] +14:16:40 [ 3] [ 6] [011000] +14:16:40 [ 4] [ 12] [000100000000] +14:16:40 [ 7] [ 10] [0320141635] +14:16:40 [ 11] [ 6] [768019] +14:16:40 [ 12] [ 6] [141635] +14:16:40 [ 13] [ 4] [0320] +14:16:40 [ 15] [ 4] [0320] +14:16:40 [ 18] [ 4] [6011] +14:16:40 [ 22] [ 3] [900] +14:16:40 [ 25] [ 2] [02] +14:16:40 [ 28] [ 9] [D00002000] +14:16:40 [ 32] [ 6] [621354] +14:16:40 [ 35] [ 37] [6688990101499406=42031231940694800000] +14:16:40 [ 37] [ 12] [507904645079] +14:16:40 [ 41] [ 8] [17000900] +14:16:40 [ 42] [ 15] [NATIVE ] +14:16:40 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:16:40 [ 49] [ 3] [418] +14:16:40 [ 52] [ 16] [EBAC05D965658293] +14:16:40 ============================================================================ +14:16:40 + + +waiting on router queue for slot.... +14:16:40 Sending to : <4> +14:16:40 ============================================================================ +14:16:41 ============================================================================ +14:16:41 Slot Id : <366> +14:16:41 Transaction Type : RESPONSE +14:16:41 Received From : +14:16:41 ============================================================================ +14:16:41 FNo. Len. Field Value +14:16:41 ============================================================================ +14:16:41 [ 1] [ 4] [0210] +14:16:41 [ 2] [ 16] [6688990101499406] +14:16:41 [ 3] [ 6] [011000] +14:16:41 [ 4] [ 12] [000100000000] +14:16:41 [ 11] [ 6] [768019] +14:16:41 [ 12] [ 6] [141635] +14:16:41 [ 15] [ 4] [0320] +14:16:41 [ 18] [ 4] [6011] +14:16:41 [ 32] [ 6] [621354] +14:16:41 [ 35] [ 37] [6688990101499406=42031231940694800000] +14:16:41 [ 37] [ 12] [507904645079] +14:16:41 [ 38] [ 6] [753354] +14:16:41 [ 39] [ 2] [00] +14:16:41 [ 41] [ 8] [17000900] +14:16:41 [ 49] [ 3] [418] +14:16:41 [ 54] [ 20] [1002418C000121435448] +14:16:41 ============================================================================ +14:16:41 Sending to : +14:16:41 ============================================================================ +14:16:41 + + +waiting on router queue for slot.... +14:16:42 ============================================================================ +14:16:42 Slot Id : <366> +14:16:42 Transaction Type : RESPONSE +14:16:42 Received From : +14:16:42 ============================================================================ +14:16:42 FNo. Len. Field Value +14:16:42 ============================================================================ +14:16:42 [ 1] [ 4] [0210] +14:16:42 [ 2] [ 16] [6688990101499406] +14:16:42 [ 3] [ 6] [011000] +14:16:42 [ 4] [ 12] [000100000000] +14:16:42 [ 11] [ 6] [768019] +14:16:42 [ 12] [ 6] [141635] +14:16:42 [ 15] [ 4] [0320] +14:16:42 [ 18] [ 4] [6011] +14:16:42 [ 32] [ 6] [621354] +14:16:42 [ 35] [ 37] [6688990101499406=42031231940694800000] +14:16:42 [ 37] [ 12] [507904645079] +14:16:42 [ 38] [ 6] [753354] +14:16:42 [ 39] [ 2] [00] +14:16:42 [ 41] [ 8] [17000900] +14:16:42 [ 49] [ 3] [418] +14:16:42 [ 54] [ 20] [1002418C000121435448] +14:16:42 ============================================================================ +14:16:42 Calculate Source COMM Id = 0 +14:16:42 ============================================================================ +14:16:42 + + +waiting on router queue for slot.... +14:16:44 ============================================================================ +14:16:44 Slot Id : <371> +14:16:44 Transaction Type : REQUEST +14:16:44 Received From : +14:16:44 ============================================================================ +14:16:44 FNo. Len. Field Value +14:16:44 ============================================================================ +14:16:44 [ 1] [ 4] [0800] +14:16:44 [ 7] [ 10] [0320212832] +14:16:44 [ 11] [ 6] [142832] +14:16:44 [ 37] [ 12] [57914142832] +14:16:44 [ 70] [ 3] [301] +14:16:44 ============================================================================ +14:16:44 + + +waiting on router queue for slot.... +14:16:44 Sending to : +14:16:44 ============================================================================ +14:16:44 ============================================================================ +14:16:44 Slot Id : <371> +14:16:44 Transaction Type : RESPONSE +14:16:44 Received From : +14:16:44 ============================================================================ +14:16:44 FNo. Len. Field Value +14:16:44 ============================================================================ +14:16:44 [ 1] [ 4] [0810] +14:16:44 [ 7] [ 10] [0320212832] +14:16:44 [ 11] [ 6] [142832] +14:16:44 [ 37] [ 12] [579141428320] +14:16:44 [ 39] [ 2] [00] +14:16:44 [ 70] [ 3] [810] +14:16:44 ============================================================================ +14:16:44 Calculate Source COMM Id = 6 +14:16:44 ============================================================================ +14:16:44 + + +waiting on router queue for slot.... +14:16:49 ============================================================================ +14:16:49 Slot Id : <313> +14:16:49 Transaction Type : REQUEST +14:16:49 Received From : +14:16:49 ============================================================================ +14:16:49 FNo. Len. Field Value +14:16:49 ============================================================================ +14:16:49 [ 1] [ 4] [0800] +14:16:49 [ 7] [ 10] [0320071556] +14:16:49 [ 11] [ 6] [156744] +14:16:49 [ 70] [ 3] [301] +14:16:49 ============================================================================ +14:16:49 + + +waiting on router queue for slot.... +14:16:49 Sending to : +14:16:49 ============================================================================ +14:16:49 ============================================================================ +14:16:49 Slot Id : <313> +14:16:49 Transaction Type : RESPONSE +14:16:49 Received From : +14:16:49 ============================================================================ +14:16:49 FNo. Len. Field Value +14:16:49 ============================================================================ +14:16:49 [ 1] [ 4] [0810] +14:16:49 [ 7] [ 10] [0320071556] +14:16:49 [ 11] [ 6] [156744] +14:16:49 [ 39] [ 2] [00] +14:16:49 [ 70] [ 3] [301] +14:16:49 ============================================================================ +14:16:49 Calculate Source COMM Id = 2 +14:16:49 ============================================================================ +14:16:49 + + +waiting on router queue for slot.... +14:16:55 ============================================================================ +14:16:55 Slot Id : <343> +14:16:55 Transaction Type : REQUEST +14:16:55 Received From : +14:16:55 ============================================================================ +14:16:55 FNo. Len. Field Value +14:16:55 ============================================================================ +14:16:55 [ 1] [ 4] [0200] +14:16:55 [ 2] [ 16] [6213541000520216] +14:16:55 [ 3] [ 6] [010000] +14:16:55 [ 4] [ 12] [000020000000] +14:16:55 [ 7] [ 10] [0320071602] +14:16:55 [ 11] [ 6] [269601] +14:16:55 [ 12] [ 6] [141602] +14:16:55 [ 13] [ 4] [0320] +14:16:55 [ 14] [ 4] [4912] +14:16:55 [ 15] [ 4] [0320] +14:16:55 [ 18] [ 4] [6011] +14:16:55 [ 19] [ 3] [418] +14:16:55 [ 22] [ 3] [021] +14:16:55 [ 25] [ 2] [01] +14:16:55 [ 28] [ 9] [D00002000] +14:16:55 [ 32] [ 6] [180893] +14:16:55 [ 35] [ 32] [6213541000520216=491212012021755] +14:16:55 [ 37] [ 12] [507907269601] +14:16:55 [ 41] [ 8] [0463LNTN] +14:16:55 [ 42] [ 15] [999999 ] +14:16:55 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +14:16:55 [ 49] [ 3] [418] +14:16:55 [ 52] [ 16] [F304F0EDF5305207] +14:16:55 ============================================================================ +14:16:55 + + +waiting on router queue for slot.... +14:16:55 Sending to : +14:16:55 ============================================================================ +14:16:55 Sending to : +14:16:55 ============================================================================ +14:16:55 ============================================================================ +14:16:55 Slot Id : <343> +14:16:55 Transaction Type : REQUEST +14:16:55 Received From : +14:16:55 ============================================================================ +14:16:55 FNo. Len. Field Value +14:16:55 ============================================================================ +14:16:55 [ 1] [ 4] [0200] +14:16:55 [ 2] [ 16] [6213541000520216] +14:16:55 [ 3] [ 6] [010000] +14:16:55 [ 4] [ 12] [000020000000] +14:16:55 [ 7] [ 10] [0320071602] +14:16:55 [ 11] [ 6] [269601] +14:16:55 [ 12] [ 6] [141602] +14:16:55 [ 13] [ 4] [0320] +14:16:55 [ 14] [ 4] [4912] +14:16:55 [ 15] [ 4] [0320] +14:16:55 [ 18] [ 4] [6011] +14:16:55 [ 19] [ 3] [418] +14:16:55 [ 22] [ 3] [021] +14:16:55 [ 25] [ 2] [01] +14:16:55 [ 28] [ 9] [D00002000] +14:16:55 [ 32] [ 6] [180893] +14:16:55 [ 35] [ 32] [6213541000520216=491212012021755] +14:16:55 [ 37] [ 12] [507907269601] +14:16:55 [ 41] [ 8] [0463LNTN] +14:16:55 [ 42] [ 15] [999999 ] +14:16:55 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +14:16:55 [ 49] [ 3] [418] +14:16:55 [ 52] [ 16] [F304F0EDF5305207] +14:16:55 ============================================================================ +14:16:55 + + +waiting on router queue for slot.... +14:16:55 Sending to : +14:16:55 ============================================================================ +14:16:55 ============================================================================ +14:16:55 Slot Id : <343> +14:16:55 Transaction Type : REQUEST +14:16:55 Received From : +14:16:55 ============================================================================ +14:16:55 FNo. Len. Field Value +14:16:55 ============================================================================ +14:16:55 [ 1] [ 4] [0200] +14:16:55 [ 2] [ 16] [6213541000520216] +14:16:55 [ 3] [ 6] [010000] +14:16:55 [ 4] [ 12] [000020000000] +14:16:55 [ 7] [ 10] [0320071602] +14:16:55 [ 11] [ 6] [269601] +14:16:55 [ 12] [ 6] [141602] +14:16:55 [ 13] [ 4] [0320] +14:16:55 [ 14] [ 4] [4912] +14:16:55 [ 15] [ 4] [0320] +14:16:55 [ 18] [ 4] [6011] +14:16:55 [ 19] [ 3] [418] +14:16:55 [ 22] [ 3] [021] +14:16:55 [ 25] [ 2] [01] +14:16:55 [ 28] [ 9] [D00002000] +14:16:55 [ 32] [ 6] [180893] +14:16:55 [ 35] [ 32] [6213541000520216=491212012021755] +14:16:55 [ 37] [ 12] [507907269601] +14:16:55 [ 41] [ 8] [0463LNTN] +14:16:55 [ 42] [ 15] [999999 ] +14:16:55 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +14:16:55 [ 49] [ 3] [418] +14:16:55 [ 52] [ 16] [9D593EF59D88B70F] +14:16:55 ============================================================================ +14:16:55 + + +waiting on router queue for slot.... +14:16:55 Sending to : <0> +14:16:55 ============================================================================ +14:16:56 ============================================================================ +14:16:56 Slot Id : <343> +14:16:56 Transaction Type : RESPONSE +14:16:56 Received From : +14:16:56 ============================================================================ +14:16:56 FNo. Len. Field Value +14:16:56 ============================================================================ +14:16:56 [ 1] [ 4] [0210] +14:16:56 [ 2] [ 16] [6213541000520216] +14:16:56 [ 3] [ 6] [010000] +14:16:56 [ 4] [ 12] [000020000000] +14:16:56 [ 7] [ 10] [0320071602] +14:16:56 [ 11] [ 6] [269601] +14:16:56 [ 12] [ 6] [141602] +14:16:56 [ 13] [ 4] [0320] +14:16:56 [ 15] [ 4] [0320] +14:16:56 [ 18] [ 4] [6011] +14:16:56 [ 19] [ 3] [418] +14:16:56 [ 32] [ 6] [180893] +14:16:56 [ 35] [ 32] [6213541000520216=491212012021755] +14:16:56 [ 37] [ 12] [507907269601] +14:16:56 [ 38] [ 6] [880800] +14:16:56 [ 39] [ 2] [00] +14:16:56 [ 41] [ 8] [0463LNTN] +14:16:56 [ 49] [ 3] [418] +14:16:56 [ 54] [ 40] [0001418C0001029982910002418C000102998291] +14:16:56 ============================================================================ +14:16:56 Sending to : +14:16:56 ============================================================================ +14:16:56 + + +waiting on router queue for slot.... +14:16:57 ============================================================================ +14:16:57 Slot Id : <343> +14:16:57 Transaction Type : RESPONSE +14:16:57 Received From : +14:16:57 ============================================================================ +14:16:57 FNo. Len. Field Value +14:16:57 ============================================================================ +14:16:57 [ 1] [ 4] [0210] +14:16:57 [ 2] [ 16] [6213541000520216] +14:16:57 [ 3] [ 6] [010000] +14:16:57 [ 4] [ 12] [000020000000] +14:16:57 [ 7] [ 10] [0320071602] +14:16:57 [ 11] [ 6] [269601] +14:16:57 [ 12] [ 6] [141602] +14:16:57 [ 13] [ 4] [0320] +14:16:57 [ 15] [ 4] [0320] +14:16:57 [ 18] [ 4] [6011] +14:16:57 [ 19] [ 3] [418] +14:16:57 [ 32] [ 6] [180893] +14:16:57 [ 35] [ 32] [6213541000520216=491212012021755] +14:16:57 [ 37] [ 12] [507907269601] +14:16:57 [ 38] [ 6] [880800] +14:16:57 [ 39] [ 2] [00] +14:16:57 [ 41] [ 8] [0463LNTN] +14:16:57 [ 49] [ 3] [418] +14:16:57 [ 54] [ 40] [0001418C0001029982910002418C000102998291] +14:16:57 ============================================================================ +14:16:57 Calculate Source COMM Id = 2 +14:16:57 ============================================================================ +14:16:57 + + +waiting on router queue for slot.... +14:17:12 ============================================================================ +14:17:12 Slot Id : <378> +14:17:12 Transaction Type : REQUEST +14:17:12 Received From : +14:17:12 ============================================================================ +14:17:12 FNo. Len. Field Value +14:17:12 ============================================================================ +14:17:12 [ 1] [ 4] [0800] +14:17:12 [ 7] [ 10] [0320071619] +14:17:12 [ 11] [ 6] [156745] +14:17:12 [ 70] [ 3] [301] +14:17:12 ============================================================================ +14:17:12 + + +waiting on router queue for slot.... +14:17:12 Sending to : +14:17:12 ============================================================================ +14:17:12 ============================================================================ +14:17:12 Slot Id : <378> +14:17:12 Transaction Type : RESPONSE +14:17:12 Received From : +14:17:12 ============================================================================ +14:17:12 FNo. Len. Field Value +14:17:12 ============================================================================ +14:17:12 [ 1] [ 4] [0810] +14:17:12 [ 7] [ 10] [0320071619] +14:17:12 [ 11] [ 6] [156745] +14:17:12 [ 39] [ 2] [00] +14:17:12 [ 70] [ 3] [301] +14:17:12 ============================================================================ +14:17:12 Calculate Source COMM Id = 2 +14:17:12 ============================================================================ +14:17:12 + + +waiting on router queue for slot.... +14:17:16 ============================================================================ +14:17:16 Slot Id : <340> +14:17:16 Transaction Type : REQUEST +14:17:16 Received From : +14:17:16 ============================================================================ +14:17:16 FNo. Len. Field Value +14:17:16 ============================================================================ +14:17:16 [ 1] [ 4] [0200] +14:17:16 [ 2] [ 16] [6688990104022007] +14:17:16 [ 3] [ 6] [012000] +14:17:16 [ 4] [ 12] [000100000000] +14:17:16 [ 7] [ 10] [0320071623] +14:17:16 [ 11] [ 6] [269606] +14:17:16 [ 12] [ 6] [141623] +14:17:16 [ 13] [ 4] [0320] +14:17:16 [ 14] [ 4] [4302] +14:17:16 [ 15] [ 4] [0320] +14:17:16 [ 18] [ 4] [6011] +14:17:16 [ 19] [ 3] [418] +14:17:16 [ 22] [ 3] [021] +14:17:16 [ 25] [ 2] [01] +14:17:16 [ 28] [ 9] [D00002000] +14:17:16 [ 32] [ 6] [180893] +14:17:16 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:17:16 [ 37] [ 12] [507907269606] +14:17:16 [ 41] [ 8] [0421BKPH] +14:17:16 [ 42] [ 15] [999999 ] +14:17:16 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:17:16 [ 49] [ 3] [418] +14:17:16 [ 52] [ 16] [473334DCBE911001] +14:17:16 ============================================================================ +14:17:16 + + +waiting on router queue for slot.... +14:17:16 Sending to : +14:17:16 ============================================================================ +14:17:16 Sending to : +14:17:16 ============================================================================ +14:17:16 ============================================================================ +14:17:16 Slot Id : <345> +14:17:16 Transaction Type : REQUEST +14:17:16 Received From : +14:17:16 ============================================================================ +14:17:16 FNo. Len. Field Value +14:17:16 ============================================================================ +14:17:16 [ 1] [ 4] [0800] +14:17:16 [ 2] [ 5] [02531] +14:17:16 [ 3] [ 6] [579148] +14:17:16 [ 7] [ 10] [0320071716] +14:17:16 [ 11] [ 6] [807241] +14:17:16 [ 15] [ 10] [0320071716] +14:17:16 [ 37] [ 11] [57914807241] +14:17:16 [ 70] [ 3] [001] +14:17:16 ============================================================================ +14:17:16 + + +waiting on router queue for slot.... +14:17:16 ============================================================================ +14:17:16 Slot Id : <345> +14:17:16 Transaction Type : RESPONSE +14:17:16 Received From : +14:17:16 ============================================================================ +14:17:16 FNo. Len. Field Value +14:17:16 ============================================================================ +14:17:16 [ 1] [ 4] [0810] +14:17:16 [ 7] [ 10] [0320071716] +14:17:16 [ 11] [ 6] [807241] +14:17:16 [ 15] [ 4] [0320] +14:17:16 [ 37] [ 12] [57914807241] +14:17:16 [ 39] [ 2] [00] +14:17:16 [ 70] [ 3] [001] +14:17:16 ============================================================================ +14:17:16 Sending to : +14:17:16 ============================================================================ +14:17:16 + + +waiting on router queue for slot.... +14:17:16 ============================================================================ +14:17:16 Slot Id : <340> +14:17:16 Transaction Type : REQUEST +14:17:16 Received From : +14:17:16 ============================================================================ +14:17:16 FNo. Len. Field Value +14:17:16 ============================================================================ +14:17:16 [ 1] [ 4] [0200] +14:17:16 [ 2] [ 16] [6688990104022007] +14:17:16 [ 3] [ 6] [012000] +14:17:16 [ 4] [ 12] [000100000000] +14:17:16 [ 7] [ 10] [0320071623] +14:17:16 [ 11] [ 6] [269606] +14:17:16 [ 12] [ 6] [141623] +14:17:16 [ 13] [ 4] [0320] +14:17:16 [ 14] [ 4] [4302] +14:17:16 [ 15] [ 4] [0320] +14:17:16 [ 18] [ 4] [6011] +14:17:16 [ 19] [ 3] [418] +14:17:16 [ 22] [ 3] [021] +14:17:16 [ 25] [ 2] [01] +14:17:16 [ 28] [ 9] [D00002000] +14:17:16 [ 32] [ 6] [180893] +14:17:16 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:17:16 [ 37] [ 12] [507907269606] +14:17:16 [ 41] [ 8] [0421BKPH] +14:17:16 [ 42] [ 15] [999999 ] +14:17:16 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:17:16 [ 49] [ 3] [418] +14:17:16 [ 52] [ 16] [473334DCBE911001] +14:17:16 ============================================================================ +14:17:16 + + +waiting on router queue for slot.... +14:17:16 Sending to : +14:17:16 ============================================================================ +14:17:16 ============================================================================ +14:17:16 Slot Id : <340> +14:17:16 Transaction Type : REQUEST +14:17:16 Received From : +14:17:16 ============================================================================ +14:17:16 FNo. Len. Field Value +14:17:16 ============================================================================ +14:17:16 [ 1] [ 4] [0200] +14:17:16 [ 2] [ 16] [6688990104022007] +14:17:16 [ 3] [ 6] [012000] +14:17:16 [ 4] [ 12] [000100000000] +14:17:16 [ 7] [ 10] [0320071623] +14:17:16 [ 11] [ 6] [269606] +14:17:16 [ 12] [ 6] [141623] +14:17:16 [ 13] [ 4] [0320] +14:17:16 [ 14] [ 4] [4302] +14:17:16 [ 15] [ 4] [0320] +14:17:16 [ 18] [ 4] [6011] +14:17:16 [ 19] [ 3] [418] +14:17:16 [ 22] [ 3] [021] +14:17:16 [ 25] [ 2] [01] +14:17:16 [ 28] [ 9] [D00002000] +14:17:16 [ 32] [ 6] [180893] +14:17:16 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:17:16 [ 37] [ 12] [507907269606] +14:17:16 [ 41] [ 8] [0421BKPH] +14:17:16 [ 42] [ 15] [999999 ] +14:17:16 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:17:16 [ 49] [ 3] [418] +14:17:16 [ 52] [ 16] [3F768CEE6B61742D] +14:17:16 ============================================================================ +14:17:16 + + +waiting on router queue for slot.... +14:17:16 Sending to : <0> +14:17:16 ============================================================================ +14:17:16 ============================================================================ +14:17:16 Slot Id : <340> +14:17:16 Transaction Type : RESPONSE +14:17:16 Received From : +14:17:16 ============================================================================ +14:17:16 FNo. Len. Field Value +14:17:16 ============================================================================ +14:17:16 [ 1] [ 4] [0210] +14:17:16 [ 2] [ 16] [6688990104022007] +14:17:16 [ 3] [ 6] [012000] +14:17:16 [ 4] [ 12] [000100000000] +14:17:16 [ 7] [ 10] [0320071623] +14:17:16 [ 11] [ 6] [269606] +14:17:16 [ 12] [ 6] [141623] +14:17:16 [ 13] [ 4] [0320] +14:17:16 [ 15] [ 4] [0320] +14:17:16 [ 18] [ 4] [6011] +14:17:16 [ 19] [ 3] [418] +14:17:16 [ 22] [ 3] [021] +14:17:16 [ 32] [ 6] [180893] +14:17:16 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:17:16 [ 37] [ 12] [507907269606] +14:17:16 [ 39] [ 2] [14] +14:17:16 [ 41] [ 8] [0421BKPH] +14:17:16 [ 49] [ 3] [418] +14:17:16 ============================================================================ +14:17:16 Sending to : +14:17:16 ============================================================================ +14:17:16 + + +waiting on router queue for slot.... +14:17:17 ============================================================================ +14:17:17 Slot Id : <340> +14:17:17 Transaction Type : RESPONSE +14:17:17 Received From : +14:17:17 ============================================================================ +14:17:17 FNo. Len. Field Value +14:17:17 ============================================================================ +14:17:17 [ 1] [ 4] [0210] +14:17:17 [ 2] [ 16] [6688990104022007] +14:17:17 [ 3] [ 6] [012000] +14:17:17 [ 4] [ 12] [000100000000] +14:17:17 [ 7] [ 10] [0320071623] +14:17:17 [ 11] [ 6] [269606] +14:17:17 [ 12] [ 6] [141623] +14:17:17 [ 13] [ 4] [0320] +14:17:17 [ 15] [ 4] [0320] +14:17:17 [ 18] [ 4] [6011] +14:17:17 [ 19] [ 3] [418] +14:17:17 [ 22] [ 3] [021] +14:17:17 [ 32] [ 6] [180893] +14:17:17 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:17:17 [ 37] [ 12] [507907269606] +14:17:17 [ 39] [ 2] [14] +14:17:17 [ 41] [ 8] [0421BKPH] +14:17:17 [ 49] [ 3] [418] +14:17:17 ============================================================================ +14:17:17 Calculate Source COMM Id = 2 +14:17:17 ============================================================================ +14:17:17 + + +waiting on router queue for slot.... +14:17:29 ============================================================================ +14:17:29 Slot Id : <373> +14:17:29 Transaction Type : REQUEST +14:17:29 Received From : +14:17:29 ============================================================================ +14:17:29 FNo. Len. Field Value +14:17:29 ============================================================================ +14:17:29 [ 1] [ 4] [0200] +14:17:29 [ 2] [ 16] [1808931800012450] +14:17:29 [ 3] [ 6] [010000] +14:17:29 [ 4] [ 12] [000049000000] +14:17:29 [ 7] [ 10] [0320141724] +14:17:29 [ 11] [ 6] [768179] +14:17:29 [ 12] [ 6] [141724] +14:17:29 [ 13] [ 4] [0320] +14:17:29 [ 15] [ 4] [0320] +14:17:29 [ 18] [ 4] [6011] +14:17:29 [ 22] [ 3] [900] +14:17:29 [ 25] [ 2] [02] +14:17:29 [ 28] [ 9] [D00002000] +14:17:29 [ 32] [ 6] [621354] +14:17:29 [ 35] [ 27] [1808931800012450=1803500989] +14:17:29 [ 37] [ 12] [507904635695] +14:17:29 [ 41] [ 8] [17000800] +14:17:29 [ 42] [ 15] [NATIVE ] +14:17:29 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:17:29 [ 49] [ 3] [418] +14:17:29 [ 52] [ 16] [397D9A451524AD73] +14:17:29 ============================================================================ +14:17:29 + + +waiting on router queue for slot.... +14:17:29 Sending to : +14:17:29 ============================================================================ +14:17:29 Sending to : +14:17:29 ============================================================================ +14:17:29 ============================================================================ +14:17:29 Slot Id : <373> +14:17:29 Transaction Type : REQUEST +14:17:29 Received From : +14:17:29 ============================================================================ +14:17:29 FNo. Len. Field Value +14:17:29 ============================================================================ +14:17:29 [ 1] [ 4] [0200] +14:17:29 [ 2] [ 16] [1808931800012450] +14:17:29 [ 3] [ 6] [010000] +14:17:29 [ 4] [ 12] [000049000000] +14:17:29 [ 7] [ 10] [0320141724] +14:17:29 [ 11] [ 6] [768179] +14:17:29 [ 12] [ 6] [141724] +14:17:29 [ 13] [ 4] [0320] +14:17:29 [ 15] [ 4] [0320] +14:17:29 [ 18] [ 4] [6011] +14:17:29 [ 22] [ 3] [900] +14:17:29 [ 25] [ 2] [02] +14:17:29 [ 28] [ 9] [D00002000] +14:17:29 [ 32] [ 6] [621354] +14:17:29 [ 35] [ 27] [1808931800012450=1803500989] +14:17:29 [ 37] [ 12] [507904635695] +14:17:29 [ 41] [ 8] [17000800] +14:17:29 [ 42] [ 15] [NATIVE ] +14:17:29 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:17:29 [ 49] [ 3] [418] +14:17:29 [ 52] [ 16] [397D9A451524AD73] +14:17:29 ============================================================================ +14:17:29 + + +waiting on router queue for slot.... +14:17:29 Sending to : +14:17:29 ============================================================================ +14:17:29 ============================================================================ +14:17:29 Slot Id : <373> +14:17:29 Transaction Type : REQUEST +14:17:29 Received From : +14:17:29 ============================================================================ +14:17:29 FNo. Len. Field Value +14:17:29 ============================================================================ +14:17:29 [ 1] [ 4] [0200] +14:17:29 [ 2] [ 16] [1808931800012450] +14:17:29 [ 3] [ 6] [010000] +14:17:29 [ 4] [ 12] [000049000000] +14:17:29 [ 7] [ 10] [0320141724] +14:17:29 [ 11] [ 6] [768179] +14:17:29 [ 12] [ 6] [141724] +14:17:29 [ 13] [ 4] [0320] +14:17:29 [ 15] [ 4] [0320] +14:17:29 [ 18] [ 4] [6011] +14:17:29 [ 22] [ 3] [900] +14:17:29 [ 25] [ 2] [02] +14:17:29 [ 28] [ 9] [D00002000] +14:17:29 [ 32] [ 6] [621354] +14:17:29 [ 35] [ 27] [1808931800012450=1803500989] +14:17:29 [ 37] [ 12] [507904635695] +14:17:29 [ 41] [ 8] [17000800] +14:17:29 [ 42] [ 15] [NATIVE ] +14:17:29 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:17:29 [ 49] [ 3] [418] +14:17:29 [ 52] [ 16] [24FC87E918E6E1D9] +14:17:29 ============================================================================ +14:17:29 + + +waiting on router queue for slot.... +14:17:29 Sending to : <2> +14:17:29 ============================================================================ +14:17:33 ============================================================================ +14:17:33 Slot Id : <373> +14:17:33 Transaction Type : RESPONSE +14:17:33 Received From : +14:17:33 ============================================================================ +14:17:33 FNo. Len. Field Value +14:17:33 ============================================================================ +14:17:33 [ 1] [ 4] [0210] +14:17:33 [ 2] [ 16] [1808931800012450] +14:17:33 [ 3] [ 6] [010000] +14:17:33 [ 4] [ 12] [000049000000] +14:17:33 [ 6] [ 12] [000049000000] +14:17:33 [ 7] [ 10] [0320141724] +14:17:33 [ 11] [ 6] [768179] +14:17:33 [ 12] [ 6] [141724] +14:17:33 [ 13] [ 4] [0320] +14:17:33 [ 18] [ 4] [6011] +14:17:33 [ 19] [ 3] [418] +14:17:33 [ 22] [ 3] [021] +14:17:33 [ 32] [ 6] [621354] +14:17:33 [ 35] [ 27] [1808931800012450=1803500989] +14:17:33 [ 37] [ 12] [507904635695] +14:17:33 [ 38] [ 6] [768179] +14:17:33 [ 39] [ 2] [51] +14:17:33 [ 41] [ 8] [17000800] +14:17:33 [ 49] [ 3] [418] +14:17:33 [ 52] [ 16] [24FC87E918E6E1D9] +14:17:33 ============================================================================ +14:17:33 Sending to : +14:17:33 ============================================================================ +14:17:33 + + +waiting on router queue for slot.... +14:17:34 ============================================================================ +14:17:34 Slot Id : <373> +14:17:34 Transaction Type : RESPONSE +14:17:34 Received From : +14:17:34 ============================================================================ +14:17:34 FNo. Len. Field Value +14:17:34 ============================================================================ +14:17:34 [ 1] [ 4] [0210] +14:17:34 [ 2] [ 16] [1808931800012450] +14:17:34 [ 3] [ 6] [010000] +14:17:34 [ 4] [ 12] [000049000000] +14:17:34 [ 6] [ 12] [000049000000] +14:17:34 [ 7] [ 10] [0320141724] +14:17:34 [ 11] [ 6] [768179] +14:17:34 [ 12] [ 6] [141724] +14:17:34 [ 13] [ 4] [0320] +14:17:34 [ 18] [ 4] [6011] +14:17:34 [ 19] [ 3] [418] +14:17:34 [ 22] [ 3] [021] +14:17:34 [ 32] [ 6] [621354] +14:17:34 [ 35] [ 27] [1808931800012450=1803500989] +14:17:34 [ 37] [ 12] [507904635695] +14:17:34 [ 38] [ 6] [768179] +14:17:34 [ 39] [ 2] [51] +14:17:34 [ 41] [ 8] [17000800] +14:17:34 [ 49] [ 3] [418] +14:17:34 [ 52] [ 16] [24FC87E918E6E1D9] +14:17:34 ============================================================================ +14:17:34 Calculate Source COMM Id = 0 +14:17:34 ============================================================================ +14:17:34 + + +waiting on router queue for slot.... +14:17:42 ============================================================================ +14:17:42 Slot Id : <324> +14:17:42 Transaction Type : REQUEST +14:17:42 Received From : +14:17:42 ============================================================================ +14:17:42 FNo. Len. Field Value +14:17:42 ============================================================================ +14:17:42 [ 1] [ 4] [0800] +14:17:42 [ 7] [ 10] [0320071738] +14:17:42 [ 11] [ 6] [001652] +14:17:42 [ 37] [ 12] [507914001652] +14:17:42 [ 70] [ 3] [001] +14:17:42 ============================================================================ +14:17:42 + + +waiting on router queue for slot.... +14:17:42 Sending to : +14:17:42 ============================================================================ +14:17:42 ============================================================================ +14:17:42 Slot Id : <324> +14:17:42 Transaction Type : RESPONSE +14:17:42 Received From : +14:17:42 ============================================================================ +14:17:42 FNo. Len. Field Value +14:17:42 ============================================================================ +14:17:42 [ 1] [ 4] [0810] +14:17:42 [ 7] [ 10] [0320071738] +14:17:42 [ 11] [ 6] [001652] +14:17:42 [ 37] [ 12] [507914001652] +14:17:42 [ 39] [ 2] [00] +14:17:42 [ 70] [ 3] [001] +14:17:42 ============================================================================ +14:17:42 Calculate Source COMM Id = 0 +14:17:42 ============================================================================ +14:17:42 + + +waiting on router queue for slot.... +14:17:43 ============================================================================ +14:17:43 Slot Id : <382> +14:17:43 Transaction Type : REQUEST +14:17:43 Received From : +14:17:43 ============================================================================ +14:17:43 FNo. Len. Field Value +14:17:43 ============================================================================ +14:17:43 [ 1] [ 4] [0800] +14:17:43 [ 7] [ 10] [0320071651] +14:17:43 [ 11] [ 6] [156746] +14:17:43 [ 70] [ 3] [301] +14:17:43 ============================================================================ +14:17:43 + + +waiting on router queue for slot.... +14:17:43 Sending to : +14:17:43 ============================================================================ +14:17:43 ============================================================================ +14:17:43 Slot Id : <382> +14:17:43 Transaction Type : RESPONSE +14:17:43 Received From : +14:17:43 ============================================================================ +14:17:43 FNo. Len. Field Value +14:17:43 ============================================================================ +14:17:43 [ 1] [ 4] [0810] +14:17:43 [ 7] [ 10] [0320071651] +14:17:43 [ 11] [ 6] [156746] +14:17:43 [ 39] [ 2] [00] +14:17:43 [ 70] [ 3] [301] +14:17:43 ============================================================================ +14:17:43 Calculate Source COMM Id = 2 +14:17:43 ============================================================================ +14:17:43 + + +waiting on router queue for slot.... +14:17:44 ============================================================================ +14:17:44 Slot Id : <355> +14:17:44 Transaction Type : REQUEST +14:17:44 Received From : +14:17:44 ============================================================================ +14:17:44 FNo. Len. Field Value +14:17:44 ============================================================================ +14:17:44 [ 1] [ 4] [0800] +14:17:44 [ 7] [ 10] [0320141731] +14:17:44 [ 11] [ 6] [036789] +14:17:44 [ 37] [ 12] [507914036789] +14:17:44 [ 70] [ 3] [ ] +14:17:44 ============================================================================ +14:17:44 + + +waiting on router queue for slot.... +14:17:44 Sending to : +14:17:44 ============================================================================ +14:17:44 ============================================================================ +14:17:44 Slot Id : <355> +14:17:44 Transaction Type : RESPONSE +14:17:44 Received From : +14:17:44 ============================================================================ +14:17:44 FNo. Len. Field Value +14:17:44 ============================================================================ +14:17:44 [ 1] [ 4] [0810] +14:17:44 [ 7] [ 10] [0320141731] +14:17:44 [ 11] [ 6] [036789] +14:17:44 [ 37] [ 12] [507914036789] +14:17:44 [ 39] [ 2] [91] +14:17:44 [ 70] [ 3] [ ] +14:17:44 ============================================================================ +14:17:44 Calculate Source COMM Id = 3 +14:17:44 ============================================================================ +14:17:44 + + +waiting on router queue for slot.... +14:17:49 ============================================================================ +14:17:49 Slot Id : <353> +14:17:49 Transaction Type : REQUEST +14:17:49 Received From : +14:17:49 ============================================================================ +14:17:49 FNo. Len. Field Value +14:17:49 ============================================================================ +14:17:49 [ 1] [ 4] [0800] +14:17:49 [ 7] [ 10] [0320212937] +14:17:49 [ 11] [ 6] [142937] +14:17:49 [ 37] [ 12] [57914142937] +14:17:49 [ 70] [ 3] [301] +14:17:49 ============================================================================ +14:17:49 + + +waiting on router queue for slot.... +14:17:49 Sending to : +14:17:49 ============================================================================ +14:17:49 ============================================================================ +14:17:49 Slot Id : <353> +14:17:49 Transaction Type : RESPONSE +14:17:49 Received From : +14:17:49 ============================================================================ +14:17:49 FNo. Len. Field Value +14:17:49 ============================================================================ +14:17:49 [ 1] [ 4] [0810] +14:17:49 [ 7] [ 10] [0320212937] +14:17:49 [ 11] [ 6] [142937] +14:17:49 [ 37] [ 12] [579141429370] +14:17:49 [ 39] [ 2] [00] +14:17:49 [ 70] [ 3] [810] +14:17:49 ============================================================================ +14:17:49 Calculate Source COMM Id = 6 +14:17:49 ============================================================================ +14:17:49 + + +waiting on router queue for slot.... +14:17:50 ============================================================================ +14:17:50 Slot Id : <363> +14:17:50 Transaction Type : REQUEST +14:17:50 Received From : +14:17:50 ============================================================================ +14:17:50 FNo. Len. Field Value +14:17:50 ============================================================================ +14:17:50 [ 1] [ 4] [0200] +14:17:50 [ 2] [ 16] [6688990040152660] +14:17:50 [ 3] [ 6] [301000] +14:17:50 [ 4] [ 12] [000000000000] +14:17:50 [ 7] [ 10] [0320141746] +14:17:50 [ 11] [ 6] [768257] +14:17:50 [ 12] [ 6] [141746] +14:17:50 [ 13] [ 4] [0320] +14:17:50 [ 15] [ 4] [0320] +14:17:50 [ 18] [ 4] [6011] +14:17:50 [ 22] [ 3] [900] +14:17:50 [ 25] [ 2] [02] +14:17:50 [ 28] [ 9] [D00000000] +14:17:50 [ 32] [ 6] [621354] +14:17:50 [ 35] [ 37] [6688990040152660=98051261127722400000] +14:17:50 [ 37] [ 12] [507904830748] +14:17:50 [ 41] [ 8] [11000700] +14:17:50 [ 42] [ 15] [NATIVE ] +14:17:50 [ 43] [ 40] [Samosone Bokeo Houysai LAO] +14:17:50 [ 49] [ 3] [418] +14:17:50 [ 52] [ 16] [AC94C37F7DF8EC85] +14:17:50 ============================================================================ +14:17:50 + + +waiting on router queue for slot.... +14:17:50 Sending to : +14:17:50 ============================================================================ +14:17:50 Sending to : +14:17:50 ============================================================================ +14:17:51 ============================================================================ +14:17:51 Slot Id : <363> +14:17:51 Transaction Type : REQUEST +14:17:51 Received From : +14:17:51 ============================================================================ +14:17:51 FNo. Len. Field Value +14:17:51 ============================================================================ +14:17:51 [ 1] [ 4] [0200] +14:17:51 [ 2] [ 16] [6688990040152660] +14:17:51 [ 3] [ 6] [301000] +14:17:51 [ 4] [ 12] [000000000000] +14:17:51 [ 7] [ 10] [0320141746] +14:17:51 [ 11] [ 6] [768257] +14:17:51 [ 12] [ 6] [141746] +14:17:51 [ 13] [ 4] [0320] +14:17:51 [ 15] [ 4] [0320] +14:17:51 [ 18] [ 4] [6011] +14:17:51 [ 22] [ 3] [900] +14:17:51 [ 25] [ 2] [02] +14:17:51 [ 28] [ 9] [D00000000] +14:17:51 [ 32] [ 6] [621354] +14:17:51 [ 35] [ 37] [6688990040152660=98051261127722400000] +14:17:51 [ 37] [ 12] [507904830748] +14:17:51 [ 41] [ 8] [11000700] +14:17:51 [ 42] [ 15] [NATIVE ] +14:17:51 [ 43] [ 40] [Samosone Bokeo Houysai LAO] +14:17:51 [ 49] [ 3] [418] +14:17:51 [ 52] [ 16] [AC94C37F7DF8EC85] +14:17:51 ============================================================================ +14:17:51 + + +waiting on router queue for slot.... +14:17:51 Sending to : +14:17:51 ============================================================================ +14:17:51 ============================================================================ +14:17:51 Slot Id : <363> +14:17:51 Transaction Type : REQUEST +14:17:51 Received From : +14:17:51 ============================================================================ +14:17:51 FNo. Len. Field Value +14:17:51 ============================================================================ +14:17:51 [ 1] [ 4] [0200] +14:17:51 [ 2] [ 16] [6688990040152660] +14:17:51 [ 3] [ 6] [301000] +14:17:51 [ 4] [ 12] [000000000000] +14:17:51 [ 7] [ 10] [0320141746] +14:17:51 [ 11] [ 6] [768257] +14:17:51 [ 12] [ 6] [141746] +14:17:51 [ 13] [ 4] [0320] +14:17:51 [ 15] [ 4] [0320] +14:17:51 [ 18] [ 4] [6011] +14:17:51 [ 22] [ 3] [900] +14:17:51 [ 25] [ 2] [02] +14:17:51 [ 28] [ 9] [D00000000] +14:17:51 [ 32] [ 6] [621354] +14:17:51 [ 35] [ 37] [6688990040152660=98051261127722400000] +14:17:51 [ 37] [ 12] [507904830748] +14:17:51 [ 41] [ 8] [11000700] +14:17:51 [ 42] [ 15] [NATIVE ] +14:17:51 [ 43] [ 40] [Samosone Bokeo Houysai LAO] +14:17:51 [ 49] [ 3] [418] +14:17:51 [ 52] [ 16] [95F122CB2F12DBAE] +14:17:51 ============================================================================ +14:17:51 + + +waiting on router queue for slot.... +14:17:51 Sending to : <4> +14:17:51 ============================================================================ +14:17:52 ============================================================================ +14:17:52 Slot Id : <363> +14:17:52 Transaction Type : RESPONSE +14:17:52 Received From : +14:17:52 ============================================================================ +14:17:52 FNo. Len. Field Value +14:17:52 ============================================================================ +14:17:52 [ 1] [ 4] [0210] +14:17:52 [ 2] [ 16] [6688990040152660] +14:17:52 [ 3] [ 6] [301000] +14:17:52 [ 4] [ 12] [000000000000] +14:17:52 [ 11] [ 6] [768257] +14:17:52 [ 12] [ 6] [141746] +14:17:52 [ 15] [ 4] [0320] +14:17:52 [ 18] [ 4] [6011] +14:17:52 [ 32] [ 6] [621354] +14:17:52 [ 35] [ 37] [6688990040152660=98051261127722400000] +14:17:52 [ 37] [ 12] [507904830748] +14:17:52 [ 38] [ 6] [632678] +14:17:52 [ 39] [ 2] [00] +14:17:52 [ 41] [ 8] [11000700] +14:17:52 [ 49] [ 3] [418] +14:17:52 [ 54] [ 20] [1002418C000060000000] +14:17:52 ============================================================================ +14:17:52 Sending to : +14:17:52 ============================================================================ +14:17:52 + + +waiting on router queue for slot.... +14:17:53 ============================================================================ +14:17:53 Slot Id : <363> +14:17:53 Transaction Type : RESPONSE +14:17:53 Received From : +14:17:53 ============================================================================ +14:17:53 FNo. Len. Field Value +14:17:53 ============================================================================ +14:17:53 [ 1] [ 4] [0210] +14:17:53 [ 2] [ 16] [6688990040152660] +14:17:53 [ 3] [ 6] [301000] +14:17:53 [ 4] [ 12] [000000000000] +14:17:53 [ 11] [ 6] [768257] +14:17:53 [ 12] [ 6] [141746] +14:17:53 [ 15] [ 4] [0320] +14:17:53 [ 18] [ 4] [6011] +14:17:53 [ 32] [ 6] [621354] +14:17:53 [ 35] [ 37] [6688990040152660=98051261127722400000] +14:17:53 [ 37] [ 12] [507904830748] +14:17:53 [ 38] [ 6] [632678] +14:17:53 [ 39] [ 2] [00] +14:17:53 [ 41] [ 8] [11000700] +14:17:53 [ 49] [ 3] [418] +14:17:53 [ 54] [ 20] [1002418C000060000000] +14:17:53 ============================================================================ +14:17:53 Calculate Source COMM Id = 0 +14:17:53 ============================================================================ +14:17:53 + + +waiting on router queue for slot.... +14:17:54 ============================================================================ +14:17:54 Slot Id : <344> +14:17:54 Transaction Type : REQUEST +14:17:54 Received From : +14:17:54 ============================================================================ +14:17:54 FNo. Len. Field Value +14:17:54 ============================================================================ +14:17:54 [ 1] [ 4] [0800] +14:17:54 [ 7] [ 10] [0320071701] +14:17:54 [ 11] [ 6] [156747] +14:17:54 [ 70] [ 3] [301] +14:17:54 ============================================================================ +14:17:54 + + +waiting on router queue for slot.... +14:17:54 Sending to : +14:17:54 ============================================================================ +14:17:54 ============================================================================ +14:17:54 Slot Id : <344> +14:17:54 Transaction Type : RESPONSE +14:17:54 Received From : +14:17:54 ============================================================================ +14:17:54 FNo. Len. Field Value +14:17:54 ============================================================================ +14:17:54 [ 1] [ 4] [0810] +14:17:54 [ 7] [ 10] [0320071701] +14:17:54 [ 11] [ 6] [156747] +14:17:54 [ 39] [ 2] [00] +14:17:54 [ 70] [ 3] [301] +14:17:54 ============================================================================ +14:17:54 Calculate Source COMM Id = 2 +14:17:54 ============================================================================ +14:17:54 + + +waiting on router queue for slot.... +14:18:05 ============================================================================ +14:18:05 Slot Id : <370> +14:18:05 Transaction Type : REQUEST +14:18:05 Received From : +14:18:05 ============================================================================ +14:18:05 FNo. Len. Field Value +14:18:05 ============================================================================ +14:18:05 [ 1] [ 4] [0800] +14:18:05 [ 7] [ 10] [0320071713] +14:18:05 [ 11] [ 6] [156748] +14:18:05 [ 70] [ 3] [301] +14:18:05 ============================================================================ +14:18:05 + + +waiting on router queue for slot.... +14:18:05 Sending to : +14:18:05 ============================================================================ +14:18:05 ============================================================================ +14:18:05 Slot Id : <370> +14:18:05 Transaction Type : RESPONSE +14:18:05 Received From : +14:18:05 ============================================================================ +14:18:05 FNo. Len. Field Value +14:18:05 ============================================================================ +14:18:05 [ 1] [ 4] [0810] +14:18:05 [ 7] [ 10] [0320071713] +14:18:05 [ 11] [ 6] [156748] +14:18:05 [ 39] [ 2] [00] +14:18:05 [ 70] [ 3] [301] +14:18:05 ============================================================================ +14:18:05 Calculate Source COMM Id = 2 +14:18:05 ============================================================================ +14:18:05 + + +waiting on router queue for slot.... +14:18:13 ============================================================================ +14:18:13 Slot Id : <358> +14:18:13 Transaction Type : REQUEST +14:18:13 Received From : +14:18:13 ============================================================================ +14:18:13 FNo. Len. Field Value +14:18:13 ============================================================================ +14:18:13 [ 1] [ 4] [0200] +14:18:13 [ 2] [ 16] [6688990102851308] +14:18:13 [ 3] [ 6] [010000] +14:18:13 [ 4] [ 12] [000005000000] +14:18:13 [ 7] [ 10] [0320141809] +14:18:13 [ 11] [ 6] [768325] +14:18:13 [ 12] [ 6] [141809] +14:18:13 [ 13] [ 4] [0320] +14:18:13 [ 15] [ 4] [0320] +14:18:13 [ 18] [ 4] [6011] +14:18:13 [ 22] [ 3] [900] +14:18:13 [ 25] [ 2] [02] +14:18:13 [ 28] [ 9] [D00002000] +14:18:13 [ 32] [ 6] [621354] +14:18:13 [ 35] [ 37] [6688990102851308=42101231130848700000] +14:18:13 [ 37] [ 12] [507904645081] +14:18:13 [ 41] [ 8] [17000900] +14:18:13 [ 42] [ 15] [NATIVE ] +14:18:13 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:18:13 [ 49] [ 3] [418] +14:18:13 [ 52] [ 16] [1E9200E508174606] +14:18:13 ============================================================================ +14:18:13 + + +waiting on router queue for slot.... +14:18:13 Sending to : +14:18:13 ============================================================================ +14:18:13 Sending to : +14:18:13 ============================================================================ +14:18:13 ============================================================================ +14:18:13 Slot Id : <358> +14:18:13 Transaction Type : REQUEST +14:18:13 Received From : +14:18:13 ============================================================================ +14:18:13 FNo. Len. Field Value +14:18:13 ============================================================================ +14:18:13 [ 1] [ 4] [0200] +14:18:13 [ 2] [ 16] [6688990102851308] +14:18:13 [ 3] [ 6] [010000] +14:18:13 [ 4] [ 12] [000005000000] +14:18:13 [ 7] [ 10] [0320141809] +14:18:13 [ 11] [ 6] [768325] +14:18:13 [ 12] [ 6] [141809] +14:18:13 [ 13] [ 4] [0320] +14:18:13 [ 15] [ 4] [0320] +14:18:13 [ 18] [ 4] [6011] +14:18:13 [ 22] [ 3] [900] +14:18:13 [ 25] [ 2] [02] +14:18:13 [ 28] [ 9] [D00002000] +14:18:13 [ 32] [ 6] [621354] +14:18:13 [ 35] [ 37] [6688990102851308=42101231130848700000] +14:18:13 [ 37] [ 12] [507904645081] +14:18:13 [ 41] [ 8] [17000900] +14:18:13 [ 42] [ 15] [NATIVE ] +14:18:13 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:18:13 [ 49] [ 3] [418] +14:18:13 [ 52] [ 16] [1E9200E508174606] +14:18:13 ============================================================================ +14:18:13 + + +waiting on router queue for slot.... +14:18:13 Sending to : +14:18:13 ============================================================================ +14:18:13 ============================================================================ +14:18:13 Slot Id : <358> +14:18:13 Transaction Type : REQUEST +14:18:13 Received From : +14:18:13 ============================================================================ +14:18:13 FNo. Len. Field Value +14:18:13 ============================================================================ +14:18:13 [ 1] [ 4] [0200] +14:18:13 [ 2] [ 16] [6688990102851308] +14:18:13 [ 3] [ 6] [010000] +14:18:13 [ 4] [ 12] [000005000000] +14:18:13 [ 7] [ 10] [0320141809] +14:18:13 [ 11] [ 6] [768325] +14:18:13 [ 12] [ 6] [141809] +14:18:13 [ 13] [ 4] [0320] +14:18:13 [ 15] [ 4] [0320] +14:18:13 [ 18] [ 4] [6011] +14:18:13 [ 22] [ 3] [900] +14:18:13 [ 25] [ 2] [02] +14:18:13 [ 28] [ 9] [D00002000] +14:18:13 [ 32] [ 6] [621354] +14:18:13 [ 35] [ 37] [6688990102851308=42101231130848700000] +14:18:13 [ 37] [ 12] [507904645081] +14:18:13 [ 41] [ 8] [17000900] +14:18:13 [ 42] [ 15] [NATIVE ] +14:18:13 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:18:13 [ 49] [ 3] [418] +14:18:13 [ 52] [ 16] [E44F5897B36D0F91] +14:18:13 ============================================================================ +14:18:13 + + +waiting on router queue for slot.... +14:18:13 Sending to : <4> +14:18:13 ============================================================================ +14:18:14 ============================================================================ +14:18:14 Slot Id : <358> +14:18:14 Transaction Type : RESPONSE +14:18:14 Received From : +14:18:14 ============================================================================ +14:18:14 FNo. Len. Field Value +14:18:14 ============================================================================ +14:18:14 [ 1] [ 4] [0210] +14:18:14 [ 2] [ 16] [6688990102851308] +14:18:14 [ 3] [ 6] [010000] +14:18:14 [ 4] [ 12] [000005000000] +14:18:14 [ 11] [ 6] [768325] +14:18:14 [ 12] [ 6] [141809] +14:18:14 [ 15] [ 4] [0320] +14:18:14 [ 18] [ 4] [6011] +14:18:14 [ 32] [ 6] [621354] +14:18:14 [ 35] [ 37] [6688990102851308=42101231130848700000] +14:18:14 [ 37] [ 12] [507904645081] +14:18:14 [ 38] [ 6] [273539] +14:18:14 [ 39] [ 2] [00] +14:18:14 [ 41] [ 8] [17000900] +14:18:14 [ 49] [ 3] [418] +14:18:14 [ 54] [ 20] [0002418C000090784053] +14:18:14 ============================================================================ +14:18:14 Sending to : +14:18:14 ============================================================================ +14:18:14 + + +waiting on router queue for slot.... +14:18:16 ============================================================================ +14:18:16 Slot Id : <358> +14:18:16 Transaction Type : RESPONSE +14:18:16 Received From : +14:18:16 ============================================================================ +14:18:16 FNo. Len. Field Value +14:18:16 ============================================================================ +14:18:16 [ 1] [ 4] [0210] +14:18:16 [ 2] [ 16] [6688990102851308] +14:18:16 [ 3] [ 6] [010000] +14:18:16 [ 4] [ 12] [000005000000] +14:18:16 [ 11] [ 6] [768325] +14:18:16 [ 12] [ 6] [141809] +14:18:16 [ 15] [ 4] [0320] +14:18:16 [ 18] [ 4] [6011] +14:18:16 [ 32] [ 6] [621354] +14:18:16 [ 35] [ 37] [6688990102851308=42101231130848700000] +14:18:16 [ 37] [ 12] [507904645081] +14:18:16 [ 38] [ 6] [273539] +14:18:16 [ 39] [ 2] [00] +14:18:16 [ 41] [ 8] [17000900] +14:18:16 [ 49] [ 3] [418] +14:18:16 [ 54] [ 20] [0002418C000090784053] +14:18:16 ============================================================================ +14:18:16 Calculate Source COMM Id = 0 +14:18:16 ============================================================================ +14:18:16 + + +waiting on router queue for slot.... +14:18:18 ============================================================================ +14:18:18 Slot Id : <369> +14:18:18 Transaction Type : REQUEST +14:18:18 Received From : +14:18:18 ============================================================================ +14:18:18 FNo. Len. Field Value +14:18:18 ============================================================================ +14:18:18 [ 1] [ 4] [0800] +14:18:18 [ 2] [ 5] [02531] +14:18:18 [ 3] [ 6] [579148] +14:18:18 [ 7] [ 10] [0320071818] +14:18:18 [ 11] [ 6] [807242] +14:18:18 [ 15] [ 10] [0320071818] +14:18:18 [ 37] [ 11] [57914807242] +14:18:18 [ 70] [ 3] [001] +14:18:18 ============================================================================ +14:18:18 + + +waiting on router queue for slot.... +14:18:18 ============================================================================ +14:18:18 Slot Id : <369> +14:18:18 Transaction Type : RESPONSE +14:18:18 Received From : +14:18:18 ============================================================================ +14:18:18 FNo. Len. Field Value +14:18:18 ============================================================================ +14:18:18 [ 1] [ 4] [0810] +14:18:18 [ 7] [ 10] [0320071818] +14:18:18 [ 11] [ 6] [807242] +14:18:18 [ 15] [ 4] [0320] +14:18:18 [ 37] [ 12] [57914807242] +14:18:18 [ 39] [ 2] [00] +14:18:18 [ 70] [ 3] [001] +14:18:18 ============================================================================ +14:18:18 Sending to : +14:18:18 ============================================================================ +14:18:18 + + +waiting on router queue for slot.... +14:18:21 ============================================================================ +14:18:21 Slot Id : <360> +14:18:21 Transaction Type : REQUEST +14:18:21 Received From : +14:18:21 ============================================================================ +14:18:21 FNo. Len. Field Value +14:18:21 ============================================================================ +14:18:21 [ 1] [ 4] [0200] +14:18:21 [ 2] [ 16] [1808931800012450] +14:18:21 [ 3] [ 6] [010000] +14:18:21 [ 4] [ 12] [000039000000] +14:18:21 [ 7] [ 10] [0320141817] +14:18:21 [ 11] [ 6] [768350] +14:18:21 [ 12] [ 6] [141817] +14:18:21 [ 13] [ 4] [0320] +14:18:21 [ 15] [ 4] [0320] +14:18:21 [ 18] [ 4] [6011] +14:18:21 [ 22] [ 3] [900] +14:18:21 [ 25] [ 2] [02] +14:18:21 [ 28] [ 9] [D00002000] +14:18:21 [ 32] [ 6] [621354] +14:18:21 [ 35] [ 27] [1808931800012450=1803500989] +14:18:21 [ 37] [ 12] [507904635697] +14:18:21 [ 41] [ 8] [17000800] +14:18:21 [ 42] [ 15] [NATIVE ] +14:18:21 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:18:21 [ 49] [ 3] [418] +14:18:21 [ 52] [ 16] [397D9A451524AD73] +14:18:21 ============================================================================ +14:18:21 + + +waiting on router queue for slot.... +14:18:21 Sending to : +14:18:21 ============================================================================ +14:18:21 Sending to : +14:18:21 ============================================================================ +14:18:22 ============================================================================ +14:18:22 Slot Id : <360> +14:18:22 Transaction Type : REQUEST +14:18:22 Received From : +14:18:22 ============================================================================ +14:18:22 FNo. Len. Field Value +14:18:22 ============================================================================ +14:18:22 [ 1] [ 4] [0200] +14:18:22 [ 2] [ 16] [1808931800012450] +14:18:22 [ 3] [ 6] [010000] +14:18:22 [ 4] [ 12] [000039000000] +14:18:22 [ 7] [ 10] [0320141817] +14:18:22 [ 11] [ 6] [768350] +14:18:22 [ 12] [ 6] [141817] +14:18:22 [ 13] [ 4] [0320] +14:18:22 [ 15] [ 4] [0320] +14:18:22 [ 18] [ 4] [6011] +14:18:22 [ 22] [ 3] [900] +14:18:22 [ 25] [ 2] [02] +14:18:22 [ 28] [ 9] [D00002000] +14:18:22 [ 32] [ 6] [621354] +14:18:22 [ 35] [ 27] [1808931800012450=1803500989] +14:18:22 [ 37] [ 12] [507904635697] +14:18:22 [ 41] [ 8] [17000800] +14:18:22 [ 42] [ 15] [NATIVE ] +14:18:22 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:18:22 [ 49] [ 3] [418] +14:18:22 [ 52] [ 16] [397D9A451524AD73] +14:18:22 ============================================================================ +14:18:22 + + +waiting on router queue for slot.... +14:18:22 Sending to : +14:18:22 ============================================================================ +14:18:22 ============================================================================ +14:18:22 Slot Id : <360> +14:18:22 Transaction Type : REQUEST +14:18:22 Received From : +14:18:22 ============================================================================ +14:18:22 FNo. Len. Field Value +14:18:22 ============================================================================ +14:18:22 [ 1] [ 4] [0200] +14:18:22 [ 2] [ 16] [1808931800012450] +14:18:22 [ 3] [ 6] [010000] +14:18:22 [ 4] [ 12] [000039000000] +14:18:22 [ 7] [ 10] [0320141817] +14:18:22 [ 11] [ 6] [768350] +14:18:22 [ 12] [ 6] [141817] +14:18:22 [ 13] [ 4] [0320] +14:18:22 [ 15] [ 4] [0320] +14:18:22 [ 18] [ 4] [6011] +14:18:22 [ 22] [ 3] [900] +14:18:22 [ 25] [ 2] [02] +14:18:22 [ 28] [ 9] [D00002000] +14:18:22 [ 32] [ 6] [621354] +14:18:22 [ 35] [ 27] [1808931800012450=1803500989] +14:18:22 [ 37] [ 12] [507904635697] +14:18:22 [ 41] [ 8] [17000800] +14:18:22 [ 42] [ 15] [NATIVE ] +14:18:22 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:18:22 [ 49] [ 3] [418] +14:18:22 [ 52] [ 16] [24FC87E918E6E1D9] +14:18:22 ============================================================================ +14:18:22 + + +waiting on router queue for slot.... +14:18:22 Sending to : <2> +14:18:22 ============================================================================ +14:18:22 ============================================================================ +14:18:22 Slot Id : <379> +14:18:22 Transaction Type : REQUEST +14:18:22 Received From : +14:18:22 ============================================================================ +14:18:22 FNo. Len. Field Value +14:18:22 ============================================================================ +14:18:22 [ 1] [ 4] [0800] +14:18:22 [ 7] [ 10] [0320071729] +14:18:22 [ 11] [ 6] [156749] +14:18:22 [ 70] [ 3] [301] +14:18:22 ============================================================================ +14:18:22 + + +waiting on router queue for slot.... +14:18:22 Sending to : +14:18:22 ============================================================================ +14:18:22 ============================================================================ +14:18:22 Slot Id : <379> +14:18:22 Transaction Type : RESPONSE +14:18:22 Received From : +14:18:22 ============================================================================ +14:18:22 FNo. Len. Field Value +14:18:22 ============================================================================ +14:18:22 [ 1] [ 4] [0810] +14:18:22 [ 7] [ 10] [0320071729] +14:18:22 [ 11] [ 6] [156749] +14:18:22 [ 39] [ 2] [00] +14:18:22 [ 70] [ 3] [301] +14:18:22 ============================================================================ +14:18:22 Calculate Source COMM Id = 2 +14:18:22 ============================================================================ +14:18:22 + + +waiting on router queue for slot.... +14:18:24 ============================================================================ +14:18:24 Slot Id : <360> +14:18:24 Transaction Type : RESPONSE +14:18:24 Received From : +14:18:24 ============================================================================ +14:18:24 FNo. Len. Field Value +14:18:24 ============================================================================ +14:18:24 [ 1] [ 4] [0210] +14:18:24 [ 2] [ 16] [1808931800012450] +14:18:24 [ 3] [ 6] [010000] +14:18:24 [ 4] [ 12] [000039000000] +14:18:24 [ 6] [ 12] [000039000000] +14:18:24 [ 7] [ 10] [0320141817] +14:18:24 [ 11] [ 6] [768350] +14:18:24 [ 12] [ 6] [141817] +14:18:24 [ 13] [ 4] [0320] +14:18:24 [ 18] [ 4] [6011] +14:18:24 [ 19] [ 3] [418] +14:18:24 [ 22] [ 3] [021] +14:18:24 [ 32] [ 6] [621354] +14:18:24 [ 35] [ 27] [1808931800012450=1803500989] +14:18:24 [ 37] [ 12] [507904635697] +14:18:24 [ 38] [ 6] [768350] +14:18:24 [ 39] [ 2] [51] +14:18:24 [ 41] [ 8] [17000800] +14:18:24 [ 49] [ 3] [418] +14:18:24 [ 52] [ 16] [24FC87E918E6E1D9] +14:18:24 ============================================================================ +14:18:24 Sending to : +14:18:24 ============================================================================ +14:18:24 + + +waiting on router queue for slot.... +14:18:25 ============================================================================ +14:18:25 Slot Id : <360> +14:18:25 Transaction Type : RESPONSE +14:18:25 Received From : +14:18:25 ============================================================================ +14:18:25 FNo. Len. Field Value +14:18:25 ============================================================================ +14:18:25 [ 1] [ 4] [0210] +14:18:25 [ 2] [ 16] [1808931800012450] +14:18:25 [ 3] [ 6] [010000] +14:18:25 [ 4] [ 12] [000039000000] +14:18:25 [ 6] [ 12] [000039000000] +14:18:25 [ 7] [ 10] [0320141817] +14:18:25 [ 11] [ 6] [768350] +14:18:25 [ 12] [ 6] [141817] +14:18:25 [ 13] [ 4] [0320] +14:18:25 [ 18] [ 4] [6011] +14:18:25 [ 19] [ 3] [418] +14:18:25 [ 22] [ 3] [021] +14:18:25 [ 32] [ 6] [621354] +14:18:25 [ 35] [ 27] [1808931800012450=1803500989] +14:18:25 [ 37] [ 12] [507904635697] +14:18:25 [ 38] [ 6] [768350] +14:18:25 [ 39] [ 2] [51] +14:18:25 [ 41] [ 8] [17000800] +14:18:25 [ 49] [ 3] [418] +14:18:25 [ 52] [ 16] [24FC87E918E6E1D9] +14:18:25 ============================================================================ +14:18:25 Calculate Source COMM Id = 0 +14:18:25 ============================================================================ +14:18:25 + + +waiting on router queue for slot.... +14:18:33 ============================================================================ +14:18:33 Slot Id : <338> +14:18:33 Transaction Type : REQUEST +14:18:33 Received From : +14:18:33 ============================================================================ +14:18:33 FNo. Len. Field Value +14:18:33 ============================================================================ +14:18:33 [ 1] [ 4] [0800] +14:18:33 [ 7] [ 10] [0320071740] +14:18:33 [ 11] [ 6] [156750] +14:18:33 [ 70] [ 3] [301] +14:18:33 ============================================================================ +14:18:33 + + +waiting on router queue for slot.... +14:18:33 Sending to : +14:18:33 ============================================================================ +14:18:33 ============================================================================ +14:18:33 Slot Id : <338> +14:18:33 Transaction Type : RESPONSE +14:18:33 Received From : +14:18:33 ============================================================================ +14:18:33 FNo. Len. Field Value +14:18:33 ============================================================================ +14:18:33 [ 1] [ 4] [0810] +14:18:33 [ 7] [ 10] [0320071740] +14:18:33 [ 11] [ 6] [156750] +14:18:33 [ 39] [ 2] [00] +14:18:33 [ 70] [ 3] [301] +14:18:33 ============================================================================ +14:18:33 Calculate Source COMM Id = 2 +14:18:33 ============================================================================ +14:18:33 + + +waiting on router queue for slot.... +14:18:43 ============================================================================ +14:18:43 Slot Id : <396> +14:18:43 Transaction Type : REQUEST +14:18:43 Received From : +14:18:43 ============================================================================ +14:18:43 FNo. Len. Field Value +14:18:43 ============================================================================ +14:18:43 [ 1] [ 4] [0200] +14:18:43 [ 2] [ 16] [1808930200051068] +14:18:43 [ 3] [ 6] [010000] +14:18:43 [ 4] [ 12] [000020000000] +14:18:43 [ 7] [ 10] [0320141633] +14:18:43 [ 11] [ 6] [948279] +14:18:43 [ 12] [ 6] [141633] +14:18:43 [ 13] [ 4] [0320] +14:18:43 [ 15] [ 4] [0320] +14:18:43 [ 18] [ 4] [6011] +14:18:43 [ 19] [ 3] [418] +14:18:43 [ 22] [ 3] [021] +14:18:43 [ 25] [ 2] [01] +14:18:43 [ 28] [ 9] [D00002000] +14:18:43 [ 32] [ 6] [668899] +14:18:43 [ 35] [ 27] [1808930200051068=1803500519] +14:18:43 [ 37] [ 12] [507902531914] +14:18:43 [ 41] [ 8] [03020033] +14:18:43 [ 42] [ 15] [APT ] +14:18:43 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +14:18:43 [ 49] [ 3] [418] +14:18:43 [ 52] [ 16] [9FD3907C4CD83A3D] +14:18:43 ============================================================================ +14:18:43 + + +waiting on router queue for slot.... +14:18:43 Sending to : +14:18:43 ============================================================================ +14:18:43 Sending to : +14:18:43 ============================================================================ +14:18:43 ============================================================================ +14:18:43 Slot Id : <396> +14:18:43 Transaction Type : REQUEST +14:18:43 Received From : +14:18:43 ============================================================================ +14:18:43 FNo. Len. Field Value +14:18:43 ============================================================================ +14:18:43 [ 1] [ 4] [0200] +14:18:43 [ 2] [ 16] [1808930200051068] +14:18:43 [ 3] [ 6] [010000] +14:18:43 [ 4] [ 12] [000020000000] +14:18:43 [ 7] [ 10] [0320141633] +14:18:43 [ 11] [ 6] [948279] +14:18:43 [ 12] [ 6] [141633] +14:18:43 [ 13] [ 4] [0320] +14:18:43 [ 15] [ 4] [0320] +14:18:43 [ 18] [ 4] [6011] +14:18:43 [ 19] [ 3] [418] +14:18:43 [ 22] [ 3] [021] +14:18:43 [ 25] [ 2] [01] +14:18:43 [ 28] [ 9] [D00002000] +14:18:43 [ 32] [ 6] [668899] +14:18:43 [ 35] [ 27] [1808930200051068=1803500519] +14:18:43 [ 37] [ 12] [507902531914] +14:18:43 [ 41] [ 8] [03020033] +14:18:43 [ 42] [ 15] [APT ] +14:18:43 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +14:18:43 [ 49] [ 3] [418] +14:18:43 [ 52] [ 16] [9FD3907C4CD83A3D] +14:18:43 ============================================================================ +14:18:43 + + +waiting on router queue for slot.... +14:18:43 Sending to : +14:18:43 ============================================================================ +14:18:43 ============================================================================ +14:18:43 Slot Id : <396> +14:18:43 Transaction Type : REQUEST +14:18:43 Received From : +14:18:43 ============================================================================ +14:18:43 FNo. Len. Field Value +14:18:43 ============================================================================ +14:18:43 [ 1] [ 4] [0200] +14:18:43 [ 2] [ 16] [1808930200051068] +14:18:43 [ 3] [ 6] [010000] +14:18:43 [ 4] [ 12] [000020000000] +14:18:43 [ 7] [ 10] [0320141633] +14:18:43 [ 11] [ 6] [948279] +14:18:43 [ 12] [ 6] [141633] +14:18:43 [ 13] [ 4] [0320] +14:18:43 [ 15] [ 4] [0320] +14:18:43 [ 18] [ 4] [6011] +14:18:43 [ 19] [ 3] [418] +14:18:43 [ 22] [ 3] [021] +14:18:43 [ 25] [ 2] [01] +14:18:43 [ 28] [ 9] [D00002000] +14:18:43 [ 32] [ 6] [668899] +14:18:43 [ 35] [ 27] [1808930200051068=1803500519] +14:18:43 [ 37] [ 12] [507902531914] +14:18:43 [ 41] [ 8] [03020033] +14:18:43 [ 42] [ 15] [APT ] +14:18:43 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +14:18:43 [ 49] [ 3] [418] +14:18:43 [ 52] [ 16] [5DCA73D1F7F3CC17] +14:18:43 ============================================================================ +14:18:43 + + +waiting on router queue for slot.... +14:18:43 Sending to : <2> +14:18:43 ============================================================================ +14:18:43 ============================================================================ +14:18:43 Slot Id : <354> +14:18:43 Transaction Type : REQUEST +14:18:43 Received From : +14:18:43 ============================================================================ +14:18:43 FNo. Len. Field Value +14:18:43 ============================================================================ +14:18:43 [ 1] [ 4] [0800] +14:18:43 [ 7] [ 10] [0320071751] +14:18:43 [ 11] [ 6] [156751] +14:18:43 [ 70] [ 3] [301] +14:18:43 ============================================================================ +14:18:43 + + +waiting on router queue for slot.... +14:18:43 Sending to : +14:18:43 ============================================================================ +14:18:43 ============================================================================ +14:18:43 Slot Id : <354> +14:18:43 Transaction Type : RESPONSE +14:18:43 Received From : +14:18:43 ============================================================================ +14:18:43 FNo. Len. Field Value +14:18:43 ============================================================================ +14:18:43 [ 1] [ 4] [0810] +14:18:43 [ 7] [ 10] [0320071751] +14:18:43 [ 11] [ 6] [156751] +14:18:43 [ 39] [ 2] [00] +14:18:43 [ 70] [ 3] [301] +14:18:43 ============================================================================ +14:18:43 Calculate Source COMM Id = 2 +14:18:43 ============================================================================ +14:18:43 + + +waiting on router queue for slot.... +14:18:49 ============================================================================ +14:18:49 Slot Id : <396> +14:18:49 Transaction Type : RESPONSE +14:18:49 Received From : +14:18:49 ============================================================================ +14:18:49 FNo. Len. Field Value +14:18:49 ============================================================================ +14:18:49 [ 1] [ 4] [0210] +14:18:49 [ 2] [ 16] [1808930200051068] +14:18:49 [ 3] [ 6] [010000] +14:18:49 [ 4] [ 12] [000020000000] +14:18:49 [ 6] [ 12] [000020000000] +14:18:49 [ 7] [ 10] [0320141633] +14:18:49 [ 11] [ 6] [948279] +14:18:49 [ 12] [ 6] [141633] +14:18:49 [ 13] [ 4] [0320] +14:18:49 [ 18] [ 4] [6011] +14:18:49 [ 19] [ 3] [418] +14:18:49 [ 22] [ 3] [021] +14:18:49 [ 32] [ 6] [668899] +14:18:49 [ 35] [ 27] [1808930200051068=1803500519] +14:18:49 [ 37] [ 12] [507902531914] +14:18:49 [ 38] [ 6] [948279] +14:18:49 [ 39] [ 2] [00] +14:18:49 [ 41] [ 8] [03020033] +14:18:49 [ 49] [ 3] [418] +14:18:49 [ 52] [ 16] [5DCA73D1F7F3CC17] +14:18:49 [ 54] [ 20] [1001418C000012920800] +14:18:49 ============================================================================ +14:18:49 Sending to : +14:18:49 ============================================================================ +14:18:49 + + +waiting on router queue for slot.... +14:18:50 ============================================================================ +14:18:50 Slot Id : <396> +14:18:50 Transaction Type : RESPONSE +14:18:50 Received From : +14:18:50 ============================================================================ +14:18:50 FNo. Len. Field Value +14:18:50 ============================================================================ +14:18:50 [ 1] [ 4] [0210] +14:18:50 [ 2] [ 16] [1808930200051068] +14:18:50 [ 3] [ 6] [010000] +14:18:50 [ 4] [ 12] [000020000000] +14:18:50 [ 6] [ 12] [000020000000] +14:18:50 [ 7] [ 10] [0320141633] +14:18:50 [ 11] [ 6] [948279] +14:18:50 [ 12] [ 6] [141633] +14:18:50 [ 13] [ 4] [0320] +14:18:50 [ 18] [ 4] [6011] +14:18:50 [ 19] [ 3] [418] +14:18:50 [ 22] [ 3] [021] +14:18:50 [ 32] [ 6] [668899] +14:18:50 [ 35] [ 27] [1808930200051068=1803500519] +14:18:50 [ 37] [ 12] [507902531914] +14:18:50 [ 38] [ 6] [948279] +14:18:50 [ 39] [ 2] [00] +14:18:50 [ 41] [ 8] [03020033] +14:18:50 [ 49] [ 3] [418] +14:18:50 [ 52] [ 16] [5DCA73D1F7F3CC17] +14:18:50 [ 54] [ 20] [1001418C000012920800] +14:18:50 ============================================================================ +14:18:50 Calculate Source COMM Id = 4 +14:18:50 ============================================================================ +14:18:50 + + +waiting on router queue for slot.... +14:18:54 ============================================================================ +14:18:54 Slot Id : <351> +14:18:54 Transaction Type : REQUEST +14:18:54 Received From : +14:18:54 ============================================================================ +14:18:54 FNo. Len. Field Value +14:18:54 ============================================================================ +14:18:54 [ 1] [ 4] [0800] +14:18:54 [ 7] [ 10] [0320213042] +14:18:54 [ 11] [ 6] [143042] +14:18:54 [ 37] [ 12] [57914143042] +14:18:54 [ 70] [ 3] [301] +14:18:54 ============================================================================ +14:18:54 + + +waiting on router queue for slot.... +14:18:54 Sending to : +14:18:54 ============================================================================ +14:18:54 ============================================================================ +14:18:54 Slot Id : <351> +14:18:54 Transaction Type : RESPONSE +14:18:54 Received From : +14:18:54 ============================================================================ +14:18:54 FNo. Len. Field Value +14:18:54 ============================================================================ +14:18:54 [ 1] [ 4] [0810] +14:18:54 [ 7] [ 10] [0320213042] +14:18:54 [ 11] [ 6] [143042] +14:18:54 [ 37] [ 12] [579141430420] +14:18:54 [ 39] [ 2] [00] +14:18:54 [ 70] [ 3] [810] +14:18:54 ============================================================================ +14:18:54 Calculate Source COMM Id = 6 +14:18:54 ============================================================================ +14:18:54 + + +waiting on router queue for slot.... +14:18:54 ============================================================================ +14:18:54 Slot Id : <389> +14:18:54 Transaction Type : REQUEST +14:18:54 Received From : +14:18:54 ============================================================================ +14:18:54 FNo. Len. Field Value +14:18:54 ============================================================================ +14:18:54 [ 1] [ 4] [0800] +14:18:54 [ 7] [ 10] [0320071802] +14:18:54 [ 11] [ 6] [156752] +14:18:54 [ 70] [ 3] [301] +14:18:54 ============================================================================ +14:18:54 + + +waiting on router queue for slot.... +14:18:54 Sending to : +14:18:54 ============================================================================ +14:18:54 ============================================================================ +14:18:54 Slot Id : <389> +14:18:54 Transaction Type : RESPONSE +14:18:54 Received From : +14:18:54 ============================================================================ +14:18:54 FNo. Len. Field Value +14:18:54 ============================================================================ +14:18:54 [ 1] [ 4] [0810] +14:18:54 [ 7] [ 10] [0320071802] +14:18:54 [ 11] [ 6] [156752] +14:18:54 [ 39] [ 2] [00] +14:18:54 [ 70] [ 3] [301] +14:18:54 ============================================================================ +14:18:54 Calculate Source COMM Id = 2 +14:18:54 ============================================================================ +14:18:54 + + +waiting on router queue for slot.... +14:19:10 ============================================================================ +14:19:10 Slot Id : <390> +14:19:10 Transaction Type : REQUEST +14:19:10 Received From : +14:19:10 ============================================================================ +14:19:10 FNo. Len. Field Value +14:19:10 ============================================================================ +14:19:10 [ 1] [ 4] [0800] +14:19:10 [ 7] [ 10] [0320071817] +14:19:10 [ 11] [ 6] [156753] +14:19:10 [ 70] [ 3] [301] +14:19:10 ============================================================================ +14:19:10 + + +waiting on router queue for slot.... +14:19:10 Sending to : +14:19:10 ============================================================================ +14:19:10 ============================================================================ +14:19:10 Slot Id : <390> +14:19:10 Transaction Type : RESPONSE +14:19:10 Received From : +14:19:10 ============================================================================ +14:19:10 FNo. Len. Field Value +14:19:10 ============================================================================ +14:19:10 [ 1] [ 4] [0810] +14:19:10 [ 7] [ 10] [0320071817] +14:19:10 [ 11] [ 6] [156753] +14:19:10 [ 39] [ 2] [00] +14:19:10 [ 70] [ 3] [301] +14:19:10 ============================================================================ +14:19:10 Calculate Source COMM Id = 2 +14:19:10 ============================================================================ +14:19:10 + + +waiting on router queue for slot.... +14:19:12 ============================================================================ +14:19:12 Slot Id : <361> +14:19:12 Transaction Type : REQUEST +14:19:12 Received From : +14:19:12 ============================================================================ +14:19:12 FNo. Len. Field Value +14:19:12 ============================================================================ +14:19:12 [ 1] [ 4] [0200] +14:19:12 [ 2] [ 16] [6688990040152660] +14:19:12 [ 3] [ 6] [011000] +14:19:12 [ 4] [ 12] [000010000000] +14:19:12 [ 7] [ 10] [0320141907] +14:19:12 [ 11] [ 6] [768519] +14:19:12 [ 12] [ 6] [141907] +14:19:12 [ 13] [ 4] [0320] +14:19:12 [ 15] [ 4] [0320] +14:19:12 [ 18] [ 4] [6011] +14:19:12 [ 22] [ 3] [900] +14:19:12 [ 25] [ 2] [02] +14:19:12 [ 28] [ 9] [D00002000] +14:19:12 [ 32] [ 6] [621354] +14:19:12 [ 35] [ 37] [6688990040152660=98051261127722400000] +14:19:12 [ 37] [ 12] [507904830750] +14:19:12 [ 41] [ 8] [11000700] +14:19:12 [ 42] [ 15] [NATIVE ] +14:19:12 [ 43] [ 40] [Samosone Bokeo Houysai LAO] +14:19:12 [ 49] [ 3] [418] +14:19:12 [ 52] [ 16] [AC94C37F7DF8EC85] +14:19:12 ============================================================================ +14:19:12 + + +waiting on router queue for slot.... +14:19:12 Sending to : +14:19:12 ============================================================================ +14:19:12 Sending to : +14:19:12 ============================================================================ +14:19:12 ============================================================================ +14:19:12 Slot Id : <361> +14:19:12 Transaction Type : REQUEST +14:19:12 Received From : +14:19:12 ============================================================================ +14:19:12 FNo. Len. Field Value +14:19:12 ============================================================================ +14:19:12 [ 1] [ 4] [0200] +14:19:12 [ 2] [ 16] [6688990040152660] +14:19:12 [ 3] [ 6] [011000] +14:19:12 [ 4] [ 12] [000010000000] +14:19:12 [ 7] [ 10] [0320141907] +14:19:12 [ 11] [ 6] [768519] +14:19:12 [ 12] [ 6] [141907] +14:19:12 [ 13] [ 4] [0320] +14:19:12 [ 15] [ 4] [0320] +14:19:12 [ 18] [ 4] [6011] +14:19:12 [ 22] [ 3] [900] +14:19:12 [ 25] [ 2] [02] +14:19:12 [ 28] [ 9] [D00002000] +14:19:12 [ 32] [ 6] [621354] +14:19:12 [ 35] [ 37] [6688990040152660=98051261127722400000] +14:19:12 [ 37] [ 12] [507904830750] +14:19:12 [ 41] [ 8] [11000700] +14:19:12 [ 42] [ 15] [NATIVE ] +14:19:12 [ 43] [ 40] [Samosone Bokeo Houysai LAO] +14:19:12 [ 49] [ 3] [418] +14:19:12 [ 52] [ 16] [AC94C37F7DF8EC85] +14:19:12 ============================================================================ +14:19:12 + + +waiting on router queue for slot.... +14:19:12 Sending to : +14:19:12 ============================================================================ +14:19:12 ============================================================================ +14:19:12 Slot Id : <361> +14:19:12 Transaction Type : REQUEST +14:19:12 Received From : +14:19:12 ============================================================================ +14:19:12 FNo. Len. Field Value +14:19:12 ============================================================================ +14:19:12 [ 1] [ 4] [0200] +14:19:12 [ 2] [ 16] [6688990040152660] +14:19:12 [ 3] [ 6] [011000] +14:19:12 [ 4] [ 12] [000010000000] +14:19:12 [ 7] [ 10] [0320141907] +14:19:12 [ 11] [ 6] [768519] +14:19:12 [ 12] [ 6] [141907] +14:19:12 [ 13] [ 4] [0320] +14:19:12 [ 15] [ 4] [0320] +14:19:12 [ 18] [ 4] [6011] +14:19:12 [ 22] [ 3] [900] +14:19:12 [ 25] [ 2] [02] +14:19:12 [ 28] [ 9] [D00002000] +14:19:12 [ 32] [ 6] [621354] +14:19:12 [ 35] [ 37] [6688990040152660=98051261127722400000] +14:19:12 [ 37] [ 12] [507904830750] +14:19:12 [ 41] [ 8] [11000700] +14:19:12 [ 42] [ 15] [NATIVE ] +14:19:12 [ 43] [ 40] [Samosone Bokeo Houysai LAO] +14:19:12 [ 49] [ 3] [418] +14:19:12 [ 52] [ 16] [95F122CB2F12DBAE] +14:19:12 ============================================================================ +14:19:12 + + +waiting on router queue for slot.... +14:19:12 Sending to : <4> +14:19:12 ============================================================================ +14:19:13 ============================================================================ +14:19:13 Slot Id : <361> +14:19:13 Transaction Type : RESPONSE +14:19:13 Received From : +14:19:13 ============================================================================ +14:19:13 FNo. Len. Field Value +14:19:13 ============================================================================ +14:19:13 [ 1] [ 4] [0210] +14:19:13 [ 2] [ 16] [6688990040152660] +14:19:13 [ 3] [ 6] [011000] +14:19:13 [ 4] [ 12] [000010000000] +14:19:13 [ 11] [ 6] [768519] +14:19:13 [ 12] [ 6] [141907] +14:19:13 [ 15] [ 4] [0320] +14:19:13 [ 18] [ 4] [6011] +14:19:13 [ 32] [ 6] [621354] +14:19:13 [ 35] [ 37] [6688990040152660=98051261127722400000] +14:19:13 [ 37] [ 12] [507904830750] +14:19:13 [ 38] [ 6] [716633] +14:19:13 [ 39] [ 2] [00] +14:19:13 [ 41] [ 8] [11000700] +14:19:13 [ 49] [ 3] [418] +14:19:13 [ 54] [ 20] [1002418C000049800000] +14:19:13 ============================================================================ +14:19:13 Sending to : +14:19:13 ============================================================================ +14:19:13 + + +waiting on router queue for slot.... +14:19:14 ============================================================================ +14:19:14 Slot Id : <361> +14:19:14 Transaction Type : RESPONSE +14:19:14 Received From : +14:19:14 ============================================================================ +14:19:14 FNo. Len. Field Value +14:19:14 ============================================================================ +14:19:14 [ 1] [ 4] [0210] +14:19:14 [ 2] [ 16] [6688990040152660] +14:19:14 [ 3] [ 6] [011000] +14:19:14 [ 4] [ 12] [000010000000] +14:19:14 [ 11] [ 6] [768519] +14:19:14 [ 12] [ 6] [141907] +14:19:14 [ 15] [ 4] [0320] +14:19:14 [ 18] [ 4] [6011] +14:19:14 [ 32] [ 6] [621354] +14:19:14 [ 35] [ 37] [6688990040152660=98051261127722400000] +14:19:14 [ 37] [ 12] [507904830750] +14:19:14 [ 38] [ 6] [716633] +14:19:14 [ 39] [ 2] [00] +14:19:14 [ 41] [ 8] [11000700] +14:19:14 [ 49] [ 3] [418] +14:19:14 [ 54] [ 20] [1002418C000049800000] +14:19:14 ============================================================================ +14:19:14 Calculate Source COMM Id = 0 +14:19:14 ============================================================================ +14:19:14 + + +waiting on router queue for slot.... +14:19:19 ============================================================================ +14:19:19 Slot Id : <376> +14:19:19 Transaction Type : REQUEST +14:19:19 Received From : +14:19:19 ============================================================================ +14:19:19 FNo. Len. Field Value +14:19:19 ============================================================================ +14:19:19 [ 1] [ 4] [0200] +14:19:19 [ 2] [ 16] [1808931800012450] +14:19:19 [ 3] [ 6] [010000] +14:19:19 [ 4] [ 12] [000035000000] +14:19:19 [ 7] [ 10] [0320141915] +14:19:19 [ 11] [ 6] [768546] +14:19:19 [ 12] [ 6] [141915] +14:19:19 [ 13] [ 4] [0320] +14:19:19 [ 15] [ 4] [0320] +14:19:19 [ 18] [ 4] [6011] +14:19:19 [ 22] [ 3] [900] +14:19:19 [ 25] [ 2] [02] +14:19:19 [ 28] [ 9] [D00002000] +14:19:19 [ 32] [ 6] [621354] +14:19:19 [ 35] [ 27] [1808931800012450=1803500989] +14:19:19 [ 37] [ 12] [507904635699] +14:19:19 [ 41] [ 8] [17000800] +14:19:19 [ 42] [ 15] [NATIVE ] +14:19:19 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:19:19 [ 49] [ 3] [418] +14:19:19 [ 52] [ 16] [397D9A451524AD73] +14:19:19 ============================================================================ +14:19:19 + + +waiting on router queue for slot.... +14:19:19 Sending to : +14:19:19 ============================================================================ +14:19:19 Sending to : +14:19:19 ============================================================================ +14:19:20 ============================================================================ +14:19:20 Slot Id : <376> +14:19:20 Transaction Type : REQUEST +14:19:20 Received From : +14:19:20 ============================================================================ +14:19:20 FNo. Len. Field Value +14:19:20 ============================================================================ +14:19:20 [ 1] [ 4] [0200] +14:19:20 [ 2] [ 16] [1808931800012450] +14:19:20 [ 3] [ 6] [010000] +14:19:20 [ 4] [ 12] [000035000000] +14:19:20 [ 7] [ 10] [0320141915] +14:19:20 [ 11] [ 6] [768546] +14:19:20 [ 12] [ 6] [141915] +14:19:20 [ 13] [ 4] [0320] +14:19:20 [ 15] [ 4] [0320] +14:19:20 [ 18] [ 4] [6011] +14:19:20 [ 22] [ 3] [900] +14:19:20 [ 25] [ 2] [02] +14:19:20 [ 28] [ 9] [D00002000] +14:19:20 [ 32] [ 6] [621354] +14:19:20 [ 35] [ 27] [1808931800012450=1803500989] +14:19:20 [ 37] [ 12] [507904635699] +14:19:20 [ 41] [ 8] [17000800] +14:19:20 [ 42] [ 15] [NATIVE ] +14:19:20 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:19:20 [ 49] [ 3] [418] +14:19:20 [ 52] [ 16] [397D9A451524AD73] +14:19:20 ============================================================================ +14:19:20 + + +waiting on router queue for slot.... +14:19:20 Sending to : +14:19:20 ============================================================================ +14:19:20 ============================================================================ +14:19:20 Slot Id : <376> +14:19:20 Transaction Type : REQUEST +14:19:20 Received From : +14:19:20 ============================================================================ +14:19:20 FNo. Len. Field Value +14:19:20 ============================================================================ +14:19:20 [ 1] [ 4] [0200] +14:19:20 [ 2] [ 16] [1808931800012450] +14:19:20 [ 3] [ 6] [010000] +14:19:20 [ 4] [ 12] [000035000000] +14:19:20 [ 7] [ 10] [0320141915] +14:19:20 [ 11] [ 6] [768546] +14:19:20 [ 12] [ 6] [141915] +14:19:20 [ 13] [ 4] [0320] +14:19:20 [ 15] [ 4] [0320] +14:19:20 [ 18] [ 4] [6011] +14:19:20 [ 22] [ 3] [900] +14:19:20 [ 25] [ 2] [02] +14:19:20 [ 28] [ 9] [D00002000] +14:19:20 [ 32] [ 6] [621354] +14:19:20 [ 35] [ 27] [1808931800012450=1803500989] +14:19:20 [ 37] [ 12] [507904635699] +14:19:20 [ 41] [ 8] [17000800] +14:19:20 [ 42] [ 15] [NATIVE ] +14:19:20 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:19:20 [ 49] [ 3] [418] +14:19:20 [ 52] [ 16] [24FC87E918E6E1D9] +14:19:20 ============================================================================ +14:19:20 + + +waiting on router queue for slot.... +14:19:20 Sending to : <2> +14:19:20 ============================================================================ +14:19:20 ============================================================================ +14:19:20 Slot Id : <374> +14:19:20 Transaction Type : REQUEST +14:19:20 Received From : +14:19:20 ============================================================================ +14:19:20 FNo. Len. Field Value +14:19:20 ============================================================================ +14:19:20 [ 1] [ 4] [0800] +14:19:20 [ 7] [ 10] [0320071828] +14:19:20 [ 11] [ 6] [156754] +14:19:20 [ 70] [ 3] [301] +14:19:20 ============================================================================ +14:19:20 + + +waiting on router queue for slot.... +14:19:20 Sending to : +14:19:20 ============================================================================ +14:19:20 ============================================================================ +14:19:20 Slot Id : <359> +14:19:20 Transaction Type : REQUEST +14:19:20 Received From : +14:19:20 ============================================================================ +14:19:20 FNo. Len. Field Value +14:19:20 ============================================================================ +14:19:20 [ 1] [ 4] [0800] +14:19:20 [ 2] [ 5] [02531] +14:19:20 [ 3] [ 6] [579148] +14:19:20 [ 7] [ 10] [0320071920] +14:19:20 [ 11] [ 6] [807243] +14:19:20 [ 15] [ 10] [0320071920] +14:19:20 [ 37] [ 11] [57914807243] +14:19:20 [ 70] [ 3] [001] +14:19:20 ============================================================================ +14:19:20 + + +waiting on router queue for slot.... +14:19:20 ============================================================================ +14:19:20 Slot Id : <374> +14:19:20 Transaction Type : RESPONSE +14:19:20 Received From : +14:19:20 ============================================================================ +14:19:20 FNo. Len. Field Value +14:19:20 ============================================================================ +14:19:20 [ 1] [ 4] [0810] +14:19:20 [ 7] [ 10] [0320071828] +14:19:20 [ 11] [ 6] [156754] +14:19:20 [ 39] [ 2] [00] +14:19:20 [ 70] [ 3] [301] +14:19:20 ============================================================================ +14:19:20 Calculate Source COMM Id = 2 +14:19:20 ============================================================================ +14:19:20 + + +waiting on router queue for slot.... +14:19:20 ============================================================================ +14:19:20 Slot Id : <359> +14:19:20 Transaction Type : RESPONSE +14:19:20 Received From : +14:19:20 ============================================================================ +14:19:20 FNo. Len. Field Value +14:19:20 ============================================================================ +14:19:20 [ 1] [ 4] [0810] +14:19:20 [ 7] [ 10] [0320071920] +14:19:20 [ 11] [ 6] [807243] +14:19:20 [ 15] [ 4] [0320] +14:19:20 [ 37] [ 12] [57914807243] +14:19:20 [ 39] [ 2] [00] +14:19:20 [ 70] [ 3] [001] +14:19:20 ============================================================================ +14:19:20 Sending to : +14:19:20 ============================================================================ +14:19:20 + + +waiting on router queue for slot.... +14:19:26 ============================================================================ +14:19:26 Slot Id : <376> +14:19:26 Transaction Type : RESPONSE +14:19:26 Received From : +14:19:26 ============================================================================ +14:19:26 FNo. Len. Field Value +14:19:26 ============================================================================ +14:19:26 [ 1] [ 4] [0210] +14:19:26 [ 2] [ 16] [1808931800012450] +14:19:26 [ 3] [ 6] [010000] +14:19:26 [ 4] [ 12] [000035000000] +14:19:26 [ 6] [ 12] [000035000000] +14:19:26 [ 7] [ 10] [0320141915] +14:19:26 [ 11] [ 6] [768546] +14:19:26 [ 12] [ 6] [141915] +14:19:26 [ 13] [ 4] [0320] +14:19:26 [ 18] [ 4] [6011] +14:19:26 [ 19] [ 3] [418] +14:19:26 [ 22] [ 3] [021] +14:19:26 [ 32] [ 6] [621354] +14:19:26 [ 35] [ 27] [1808931800012450=1803500989] +14:19:26 [ 37] [ 12] [507904635699] +14:19:26 [ 38] [ 6] [768546] +14:19:26 [ 39] [ 2] [00] +14:19:26 [ 41] [ 8] [17000800] +14:19:26 [ 49] [ 3] [418] +14:19:26 [ 52] [ 16] [24FC87E918E6E1D9] +14:19:26 [ 54] [ 20] [1001418C000005656700] +14:19:26 ============================================================================ +14:19:26 Sending to : +14:19:26 ============================================================================ +14:19:26 + + +waiting on router queue for slot.... +14:19:27 ============================================================================ +14:19:27 Slot Id : <376> +14:19:27 Transaction Type : RESPONSE +14:19:27 Received From : +14:19:27 ============================================================================ +14:19:27 FNo. Len. Field Value +14:19:27 ============================================================================ +14:19:27 [ 1] [ 4] [0210] +14:19:27 [ 2] [ 16] [1808931800012450] +14:19:27 [ 3] [ 6] [010000] +14:19:27 [ 4] [ 12] [000035000000] +14:19:27 [ 6] [ 12] [000035000000] +14:19:27 [ 7] [ 10] [0320141915] +14:19:27 [ 11] [ 6] [768546] +14:19:27 [ 12] [ 6] [141915] +14:19:27 [ 13] [ 4] [0320] +14:19:27 [ 18] [ 4] [6011] +14:19:27 [ 19] [ 3] [418] +14:19:27 [ 22] [ 3] [021] +14:19:27 [ 32] [ 6] [621354] +14:19:27 [ 35] [ 27] [1808931800012450=1803500989] +14:19:27 [ 37] [ 12] [507904635699] +14:19:27 [ 38] [ 6] [768546] +14:19:27 [ 39] [ 2] [00] +14:19:27 [ 41] [ 8] [17000800] +14:19:27 [ 49] [ 3] [418] +14:19:27 [ 52] [ 16] [24FC87E918E6E1D9] +14:19:27 [ 54] [ 20] [1001418C000005656700] +14:19:27 ============================================================================ +14:19:27 Calculate Source COMM Id = 0 +14:19:27 ============================================================================ +14:19:27 + + +waiting on router queue for slot.... +14:19:32 ============================================================================ +14:19:32 Slot Id : <410> +14:19:32 Transaction Type : REQUEST +14:19:32 Received From : +14:19:32 ============================================================================ +14:19:32 FNo. Len. Field Value +14:19:32 ============================================================================ +14:19:32 [ 1] [ 4] [0800] +14:19:32 [ 7] [ 10] [0320071839] +14:19:32 [ 11] [ 6] [156755] +14:19:32 [ 70] [ 3] [301] +14:19:32 ============================================================================ +14:19:32 + + +waiting on router queue for slot.... +14:19:32 Sending to : +14:19:32 ============================================================================ +14:19:32 ============================================================================ +14:19:32 Slot Id : <410> +14:19:32 Transaction Type : RESPONSE +14:19:32 Received From : +14:19:32 ============================================================================ +14:19:32 FNo. Len. Field Value +14:19:32 ============================================================================ +14:19:32 [ 1] [ 4] [0810] +14:19:32 [ 7] [ 10] [0320071839] +14:19:32 [ 11] [ 6] [156755] +14:19:32 [ 39] [ 2] [00] +14:19:32 [ 70] [ 3] [301] +14:19:32 ============================================================================ +14:19:32 Calculate Source COMM Id = 2 +14:19:32 ============================================================================ +14:19:32 + + +waiting on router queue for slot.... +14:19:48 ============================================================================ +14:19:48 Slot Id : <383> +14:19:48 Transaction Type : REQUEST +14:19:48 Received From : +14:19:48 ============================================================================ +14:19:48 FNo. Len. Field Value +14:19:48 ============================================================================ +14:19:48 [ 1] [ 4] [0800] +14:19:48 [ 7] [ 10] [0320071855] +14:19:48 [ 11] [ 6] [156756] +14:19:48 [ 70] [ 3] [301] +14:19:48 ============================================================================ +14:19:48 + + +waiting on router queue for slot.... +14:19:48 Sending to : +14:19:48 ============================================================================ +14:19:48 ============================================================================ +14:19:48 Slot Id : <383> +14:19:48 Transaction Type : RESPONSE +14:19:48 Received From : +14:19:48 ============================================================================ +14:19:48 FNo. Len. Field Value +14:19:48 ============================================================================ +14:19:48 [ 1] [ 4] [0810] +14:19:48 [ 7] [ 10] [0320071855] +14:19:48 [ 11] [ 6] [156756] +14:19:48 [ 39] [ 2] [00] +14:19:48 [ 70] [ 3] [301] +14:19:48 ============================================================================ +14:19:48 Calculate Source COMM Id = 2 +14:19:48 ============================================================================ +14:19:48 + + +waiting on router queue for slot.... +14:19:48 ============================================================================ +14:19:48 Slot Id : <395> +14:19:48 Transaction Type : REQUEST +14:19:48 Received From : +14:19:48 ============================================================================ +14:19:48 FNo. Len. Field Value +14:19:48 ============================================================================ +14:19:48 [ 1] [ 4] [0200] +14:19:48 [ 2] [ 16] [6688990700292509] +14:19:48 [ 3] [ 6] [011000] +14:19:48 [ 4] [ 12] [000100000000] +14:19:48 [ 7] [ 10] [0320141943] +14:19:48 [ 11] [ 6] [768623] +14:19:48 [ 12] [ 6] [141943] +14:19:48 [ 13] [ 4] [0320] +14:19:48 [ 15] [ 4] [0320] +14:19:48 [ 18] [ 4] [6011] +14:19:48 [ 22] [ 3] [900] +14:19:48 [ 25] [ 2] [02] +14:19:48 [ 28] [ 9] [D00002000] +14:19:48 [ 32] [ 6] [621354] +14:19:48 [ 35] [ 37] [6688990700292509=44020071250917500000] +14:19:48 [ 37] [ 12] [507904885679] +14:19:48 [ 41] [ 8] [08001000] +14:19:48 [ 42] [ 15] [NATIVE ] +14:19:48 [ 43] [ 40] [Sanamxay District Samakyxay LAO] +14:19:48 [ 49] [ 3] [418] +14:19:48 [ 52] [ 16] [AD043CD17A71BAAE] +14:19:48 ============================================================================ +14:19:48 + + +waiting on router queue for slot.... +14:19:48 Sending to : +14:19:48 ============================================================================ +14:19:48 Sending to : +14:19:48 ============================================================================ +14:19:48 ============================================================================ +14:19:48 Slot Id : <395> +14:19:48 Transaction Type : REQUEST +14:19:48 Received From : +14:19:48 ============================================================================ +14:19:48 FNo. Len. Field Value +14:19:48 ============================================================================ +14:19:48 [ 1] [ 4] [0200] +14:19:48 [ 2] [ 16] [6688990700292509] +14:19:48 [ 3] [ 6] [011000] +14:19:48 [ 4] [ 12] [000100000000] +14:19:48 [ 7] [ 10] [0320141943] +14:19:48 [ 11] [ 6] [768623] +14:19:48 [ 12] [ 6] [141943] +14:19:48 [ 13] [ 4] [0320] +14:19:48 [ 15] [ 4] [0320] +14:19:48 [ 18] [ 4] [6011] +14:19:48 [ 22] [ 3] [900] +14:19:48 [ 25] [ 2] [02] +14:19:48 [ 28] [ 9] [D00002000] +14:19:48 [ 32] [ 6] [621354] +14:19:48 [ 35] [ 37] [6688990700292509=44020071250917500000] +14:19:48 [ 37] [ 12] [507904885679] +14:19:48 [ 41] [ 8] [08001000] +14:19:48 [ 42] [ 15] [NATIVE ] +14:19:48 [ 43] [ 40] [Sanamxay District Samakyxay LAO] +14:19:48 [ 49] [ 3] [418] +14:19:48 [ 52] [ 16] [AD043CD17A71BAAE] +14:19:48 ============================================================================ +14:19:48 + + +waiting on router queue for slot.... +14:19:48 Sending to : +14:19:48 ============================================================================ +14:19:48 ============================================================================ +14:19:48 Slot Id : <395> +14:19:48 Transaction Type : REQUEST +14:19:48 Received From : +14:19:48 ============================================================================ +14:19:48 FNo. Len. Field Value +14:19:48 ============================================================================ +14:19:48 [ 1] [ 4] [0200] +14:19:48 [ 2] [ 16] [6688990700292509] +14:19:48 [ 3] [ 6] [011000] +14:19:48 [ 4] [ 12] [000100000000] +14:19:48 [ 7] [ 10] [0320141943] +14:19:48 [ 11] [ 6] [768623] +14:19:48 [ 12] [ 6] [141943] +14:19:48 [ 13] [ 4] [0320] +14:19:48 [ 15] [ 4] [0320] +14:19:48 [ 18] [ 4] [6011] +14:19:48 [ 22] [ 3] [900] +14:19:48 [ 25] [ 2] [02] +14:19:48 [ 28] [ 9] [D00002000] +14:19:48 [ 32] [ 6] [621354] +14:19:48 [ 35] [ 37] [6688990700292509=44020071250917500000] +14:19:48 [ 37] [ 12] [507904885679] +14:19:48 [ 41] [ 8] [08001000] +14:19:48 [ 42] [ 15] [NATIVE ] +14:19:48 [ 43] [ 40] [Sanamxay District Samakyxay LAO] +14:19:48 [ 49] [ 3] [418] +14:19:48 [ 52] [ 16] [9149808478508955] +14:19:48 ============================================================================ +14:19:48 + + +waiting on router queue for slot.... +14:19:48 Sending to : <4> +14:19:48 ============================================================================ +14:19:48 ============================================================================ +14:19:48 Slot Id : <395> +14:19:48 Transaction Type : RESPONSE +14:19:48 Received From : +14:19:48 ============================================================================ +14:19:48 FNo. Len. Field Value +14:19:48 ============================================================================ +14:19:48 [ 1] [ 4] [0210] +14:19:48 [ 2] [ 16] [6688990700292509] +14:19:48 [ 3] [ 6] [011000] +14:19:48 [ 4] [ 12] [000100000000] +14:19:48 [ 7] [ 10] [0320141943] +14:19:48 [ 11] [ 6] [768623] +14:19:48 [ 12] [ 6] [141943] +14:19:48 [ 13] [ 4] [0320] +14:19:48 [ 15] [ 4] [0320] +14:19:48 [ 18] [ 4] [6011] +14:19:48 [ 22] [ 3] [021] +14:19:48 [ 32] [ 6] [621354] +14:19:48 [ 35] [ 37] [6688990700292509=44020071250917500000] +14:19:48 [ 37] [ 12] [507904885679] +14:19:48 [ 38] [ 6] [141739] +14:19:48 [ 39] [ 2] [55] +14:19:48 [ 41] [ 8] [08001000] +14:19:48 [ 49] [ 3] [418] +14:19:48 ============================================================================ +14:19:48 Sending to : +14:19:48 ============================================================================ +14:19:48 + + +waiting on router queue for slot.... +14:19:49 ============================================================================ +14:19:49 Slot Id : <395> +14:19:49 Transaction Type : RESPONSE +14:19:49 Received From : +14:19:49 ============================================================================ +14:19:49 FNo. Len. Field Value +14:19:49 ============================================================================ +14:19:49 [ 1] [ 4] [0210] +14:19:49 [ 2] [ 16] [6688990700292509] +14:19:49 [ 3] [ 6] [011000] +14:19:49 [ 4] [ 12] [000100000000] +14:19:49 [ 7] [ 10] [0320141943] +14:19:49 [ 11] [ 6] [768623] +14:19:49 [ 12] [ 6] [141943] +14:19:49 [ 13] [ 4] [0320] +14:19:49 [ 15] [ 4] [0320] +14:19:49 [ 18] [ 4] [6011] +14:19:49 [ 22] [ 3] [021] +14:19:49 [ 32] [ 6] [621354] +14:19:49 [ 35] [ 37] [6688990700292509=44020071250917500000] +14:19:49 [ 37] [ 12] [507904885679] +14:19:49 [ 38] [ 6] [141739] +14:19:49 [ 39] [ 2] [55] +14:19:49 [ 41] [ 8] [08001000] +14:19:49 [ 49] [ 3] [418] +14:19:49 ============================================================================ +14:19:49 Calculate Source COMM Id = 0 +14:19:49 ============================================================================ +14:19:49 + + +waiting on router queue for slot.... +14:19:55 ============================================================================ +14:19:55 Slot Id : <393> +14:19:55 Transaction Type : REQUEST +14:19:55 Received From : +14:19:55 ============================================================================ +14:19:55 FNo. Len. Field Value +14:19:55 ============================================================================ +14:19:55 [ 1] [ 4] [0800] +14:19:55 [ 7] [ 10] [0320072742] +14:19:55 [ 11] [ 6] [023739] +14:19:55 [ 37] [ 12] [57914023739] +14:19:55 [ 70] [ 3] [301] +14:19:55 ============================================================================ +14:19:55 + + +waiting on router queue for slot.... +14:19:55 Sending to : +14:19:55 ============================================================================ +14:19:55 ============================================================================ +14:19:55 Slot Id : <393> +14:19:55 Transaction Type : RESPONSE +14:19:55 Received From : +14:19:55 ============================================================================ +14:19:55 FNo. Len. Field Value +14:19:55 ============================================================================ +14:19:55 [ 1] [ 4] [0810] +14:19:55 [ 7] [ 10] [0320072742] +14:19:55 [ 11] [ 6] [023739] +14:19:55 [ 37] [ 12] [579140237390] +14:19:55 [ 39] [ 2] [00] +14:19:55 [ 70] [ 3] [810] +14:19:55 ============================================================================ +14:19:55 Calculate Source COMM Id = 1 +14:19:55 ============================================================================ +14:19:55 + + +waiting on router queue for slot.... +14:19:59 ============================================================================ +14:19:59 Slot Id : <400> +14:19:59 Transaction Type : REQUEST +14:19:59 Received From : +14:19:59 ============================================================================ +14:19:59 FNo. Len. Field Value +14:19:59 ============================================================================ +14:19:59 [ 1] [ 4] [0800] +14:19:59 [ 7] [ 10] [0320213147] +14:19:59 [ 11] [ 6] [143147] +14:19:59 [ 37] [ 12] [57914143147] +14:19:59 [ 70] [ 3] [301] +14:19:59 ============================================================================ +14:19:59 + + +waiting on router queue for slot.... +14:19:59 Sending to : +14:19:59 ============================================================================ +14:19:59 ============================================================================ +14:19:59 Slot Id : <400> +14:19:59 Transaction Type : RESPONSE +14:19:59 Received From : +14:19:59 ============================================================================ +14:19:59 FNo. Len. Field Value +14:19:59 ============================================================================ +14:19:59 [ 1] [ 4] [0810] +14:19:59 [ 7] [ 10] [0320213147] +14:19:59 [ 11] [ 6] [143147] +14:19:59 [ 37] [ 12] [579141431470] +14:19:59 [ 39] [ 2] [00] +14:19:59 [ 70] [ 3] [810] +14:19:59 ============================================================================ +14:19:59 Calculate Source COMM Id = 6 +14:19:59 ============================================================================ +14:19:59 + + +waiting on router queue for slot.... +14:19:59 ============================================================================ +14:19:59 Slot Id : <397> +14:19:59 Transaction Type : REQUEST +14:19:59 Received From : +14:19:59 ============================================================================ +14:19:59 FNo. Len. Field Value +14:19:59 ============================================================================ +14:19:59 [ 1] [ 4] [0800] +14:19:59 [ 7] [ 10] [0320071906] +14:19:59 [ 11] [ 6] [156757] +14:19:59 [ 70] [ 3] [301] +14:19:59 ============================================================================ +14:19:59 + + +waiting on router queue for slot.... +14:19:59 Sending to : +14:19:59 ============================================================================ +14:19:59 ============================================================================ +14:19:59 Slot Id : <397> +14:19:59 Transaction Type : RESPONSE +14:19:59 Received From : +14:19:59 ============================================================================ +14:19:59 FNo. Len. Field Value +14:19:59 ============================================================================ +14:19:59 [ 1] [ 4] [0810] +14:19:59 [ 7] [ 10] [0320071906] +14:19:59 [ 11] [ 6] [156757] +14:19:59 [ 39] [ 2] [00] +14:19:59 [ 70] [ 3] [301] +14:19:59 ============================================================================ +14:19:59 Calculate Source COMM Id = 2 +14:19:59 ============================================================================ +14:19:59 + + +waiting on router queue for slot.... +14:20:10 ============================================================================ +14:20:10 Slot Id : <349> +14:20:10 Transaction Type : REQUEST +14:20:10 Received From : +14:20:10 ============================================================================ +14:20:10 FNo. Len. Field Value +14:20:10 ============================================================================ +14:20:10 [ 1] [ 4] [0200] +14:20:10 [ 2] [ 16] [6688990103274104] +14:20:10 [ 3] [ 6] [013000] +14:20:10 [ 4] [ 12] [000100000000] +14:20:10 [ 7] [ 10] [0320142005] +14:20:10 [ 11] [ 6] [768711] +14:20:10 [ 12] [ 6] [142005] +14:20:10 [ 13] [ 4] [0320] +14:20:10 [ 15] [ 4] [0320] +14:20:10 [ 18] [ 4] [6011] +14:20:10 [ 22] [ 3] [900] +14:20:10 [ 25] [ 2] [02] +14:20:10 [ 28] [ 9] [D00002000] +14:20:10 [ 32] [ 6] [621354] +14:20:10 [ 35] [ 37] [6688990103274104=42121231410449900000] +14:20:10 [ 37] [ 12] [507903499489] +14:20:10 [ 41] [ 8] [06002200] +14:20:10 [ 42] [ 15] [NATIVE ] +14:20:10 [ 43] [ 40] [Beng Market Beng LAO] +14:20:10 [ 49] [ 3] [418] +14:20:10 [ 52] [ 16] [5A9FE68C70082DE4] +14:20:10 ============================================================================ +14:20:10 + + +waiting on router queue for slot.... +14:20:10 Sending to : +14:20:10 ============================================================================ +14:20:10 Sending to : +14:20:10 ============================================================================ +14:20:10 ============================================================================ +14:20:10 Slot Id : <349> +14:20:10 Transaction Type : REQUEST +14:20:10 Received From : +14:20:10 ============================================================================ +14:20:10 FNo. Len. Field Value +14:20:10 ============================================================================ +14:20:10 [ 1] [ 4] [0200] +14:20:10 [ 2] [ 16] [6688990103274104] +14:20:10 [ 3] [ 6] [013000] +14:20:10 [ 4] [ 12] [000100000000] +14:20:10 [ 7] [ 10] [0320142005] +14:20:10 [ 11] [ 6] [768711] +14:20:10 [ 12] [ 6] [142005] +14:20:10 [ 13] [ 4] [0320] +14:20:10 [ 15] [ 4] [0320] +14:20:10 [ 18] [ 4] [6011] +14:20:10 [ 22] [ 3] [900] +14:20:10 [ 25] [ 2] [02] +14:20:10 [ 28] [ 9] [D00002000] +14:20:10 [ 32] [ 6] [621354] +14:20:10 [ 35] [ 37] [6688990103274104=42121231410449900000] +14:20:10 [ 37] [ 12] [507903499489] +14:20:10 [ 41] [ 8] [06002200] +14:20:10 [ 42] [ 15] [NATIVE ] +14:20:10 [ 43] [ 40] [Beng Market Beng LAO] +14:20:10 [ 49] [ 3] [418] +14:20:10 [ 52] [ 16] [5A9FE68C70082DE4] +14:20:10 ============================================================================ +14:20:10 + + +waiting on router queue for slot.... +14:20:10 Sending to : +14:20:10 ============================================================================ +14:20:10 ============================================================================ +14:20:10 Slot Id : <349> +14:20:10 Transaction Type : REQUEST +14:20:10 Received From : +14:20:10 ============================================================================ +14:20:10 FNo. Len. Field Value +14:20:10 ============================================================================ +14:20:10 [ 1] [ 4] [0200] +14:20:10 [ 2] [ 16] [6688990103274104] +14:20:10 [ 3] [ 6] [013000] +14:20:10 [ 4] [ 12] [000100000000] +14:20:10 [ 7] [ 10] [0320142005] +14:20:10 [ 11] [ 6] [768711] +14:20:10 [ 12] [ 6] [142005] +14:20:10 [ 13] [ 4] [0320] +14:20:10 [ 15] [ 4] [0320] +14:20:10 [ 18] [ 4] [6011] +14:20:10 [ 22] [ 3] [900] +14:20:10 [ 25] [ 2] [02] +14:20:10 [ 28] [ 9] [D00002000] +14:20:10 [ 32] [ 6] [621354] +14:20:10 [ 35] [ 37] [6688990103274104=42121231410449900000] +14:20:10 [ 37] [ 12] [507903499489] +14:20:10 [ 41] [ 8] [06002200] +14:20:10 [ 42] [ 15] [NATIVE ] +14:20:10 [ 43] [ 40] [Beng Market Beng LAO] +14:20:10 [ 49] [ 3] [418] +14:20:10 [ 52] [ 16] [C15019C396F16F6B] +14:20:10 ============================================================================ +14:20:10 + + +waiting on router queue for slot.... +14:20:10 Sending to : <4> +14:20:10 ============================================================================ +14:20:11 ============================================================================ +14:20:11 Slot Id : <413> +14:20:11 Transaction Type : REQUEST +14:20:11 Received From : +14:20:11 ============================================================================ +14:20:11 FNo. Len. Field Value +14:20:11 ============================================================================ +14:20:11 [ 1] [ 4] [0800] +14:20:11 [ 7] [ 10] [0320071918] +14:20:11 [ 11] [ 6] [156758] +14:20:11 [ 70] [ 3] [301] +14:20:11 ============================================================================ +14:20:11 + + +waiting on router queue for slot.... +14:20:11 Sending to : +14:20:11 ============================================================================ +14:20:11 ============================================================================ +14:20:11 Slot Id : <413> +14:20:11 Transaction Type : RESPONSE +14:20:11 Received From : +14:20:11 ============================================================================ +14:20:11 FNo. Len. Field Value +14:20:11 ============================================================================ +14:20:11 [ 1] [ 4] [0810] +14:20:11 [ 7] [ 10] [0320071918] +14:20:11 [ 11] [ 6] [156758] +14:20:11 [ 39] [ 2] [00] +14:20:11 [ 70] [ 3] [301] +14:20:11 ============================================================================ +14:20:11 Calculate Source COMM Id = 2 +14:20:11 ============================================================================ +14:20:11 + + +waiting on router queue for slot.... +14:20:11 ============================================================================ +14:20:11 Slot Id : <349> +14:20:11 Transaction Type : RESPONSE +14:20:11 Received From : +14:20:11 ============================================================================ +14:20:11 FNo. Len. Field Value +14:20:11 ============================================================================ +14:20:11 [ 1] [ 4] [0210] +14:20:11 [ 2] [ 16] [6688990103274104] +14:20:11 [ 3] [ 6] [013000] +14:20:11 [ 4] [ 12] [000100000000] +14:20:11 [ 11] [ 6] [768711] +14:20:11 [ 12] [ 6] [142005] +14:20:11 [ 15] [ 4] [0320] +14:20:11 [ 18] [ 4] [6011] +14:20:11 [ 32] [ 6] [621354] +14:20:11 [ 35] [ 37] [6688990103274104=42121231410449900000] +14:20:11 [ 37] [ 12] [507903499489] +14:20:11 [ 38] [ 6] [729224] +14:20:11 [ 39] [ 2] [00] +14:20:11 [ 41] [ 8] [06002200] +14:20:11 [ 49] [ 3] [418] +14:20:11 [ 54] [ 20] [3002418C000087535860] +14:20:11 ============================================================================ +14:20:11 Sending to : +14:20:11 ============================================================================ +14:20:11 + + +waiting on router queue for slot.... +14:20:13 ============================================================================ +14:20:13 Slot Id : <349> +14:20:13 Transaction Type : RESPONSE +14:20:13 Received From : +14:20:13 ============================================================================ +14:20:13 FNo. Len. Field Value +14:20:13 ============================================================================ +14:20:13 [ 1] [ 4] [0210] +14:20:13 [ 2] [ 16] [6688990103274104] +14:20:13 [ 3] [ 6] [013000] +14:20:13 [ 4] [ 12] [000100000000] +14:20:13 [ 11] [ 6] [768711] +14:20:13 [ 12] [ 6] [142005] +14:20:13 [ 15] [ 4] [0320] +14:20:13 [ 18] [ 4] [6011] +14:20:13 [ 32] [ 6] [621354] +14:20:13 [ 35] [ 37] [6688990103274104=42121231410449900000] +14:20:13 [ 37] [ 12] [507903499489] +14:20:13 [ 38] [ 6] [729224] +14:20:13 [ 39] [ 2] [00] +14:20:13 [ 41] [ 8] [06002200] +14:20:13 [ 49] [ 3] [418] +14:20:13 [ 54] [ 20] [3002418C000087535860] +14:20:13 ============================================================================ +14:20:13 Calculate Source COMM Id = 0 +14:20:13 ============================================================================ +14:20:13 + + +waiting on router queue for slot.... +14:20:15 ============================================================================ +14:20:15 Slot Id : <394> +14:20:15 Transaction Type : REQUEST +14:20:15 Received From : +14:20:15 ============================================================================ +14:20:15 FNo. Len. Field Value +14:20:15 ============================================================================ +14:20:15 [ 1] [ 4] [0200] +14:20:15 [ 2] [ 16] [6213545000806921] +14:20:15 [ 3] [ 6] [011000] +14:20:15 [ 4] [ 12] [000020000000] +14:20:15 [ 7] [ 10] [0320071922] +14:20:15 [ 11] [ 6] [269621] +14:20:15 [ 12] [ 6] [141922] +14:20:15 [ 13] [ 4] [0320] +14:20:15 [ 14] [ 4] [4912] +14:20:15 [ 15] [ 4] [0320] +14:20:15 [ 18] [ 4] [6011] +14:20:15 [ 19] [ 3] [418] +14:20:15 [ 22] [ 3] [021] +14:20:15 [ 25] [ 2] [01] +14:20:15 [ 28] [ 9] [D00002000] +14:20:15 [ 32] [ 6] [180893] +14:20:15 [ 35] [ 32] [6213545000806921=491212010692057] +14:20:15 [ 37] [ 12] [507907269621] +14:20:15 [ 41] [ 8] [0221XKKM] +14:20:15 [ 42] [ 15] [999999 ] +14:20:15 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:20:15 [ 49] [ 3] [418] +14:20:15 [ 52] [ 16] [412B0AFADF9AF097] +14:20:15 ============================================================================ +14:20:15 + + +waiting on router queue for slot.... +14:20:15 Sending to : +14:20:15 ============================================================================ +14:20:15 Sending to : +14:20:15 ============================================================================ +14:20:16 ============================================================================ +14:20:16 Slot Id : <394> +14:20:16 Transaction Type : REQUEST +14:20:16 Received From : +14:20:16 ============================================================================ +14:20:16 FNo. Len. Field Value +14:20:16 ============================================================================ +14:20:16 [ 1] [ 4] [0200] +14:20:16 [ 2] [ 16] [6213545000806921] +14:20:16 [ 3] [ 6] [011000] +14:20:16 [ 4] [ 12] [000020000000] +14:20:16 [ 7] [ 10] [0320071922] +14:20:16 [ 11] [ 6] [269621] +14:20:16 [ 12] [ 6] [141922] +14:20:16 [ 13] [ 4] [0320] +14:20:16 [ 14] [ 4] [4912] +14:20:16 [ 15] [ 4] [0320] +14:20:16 [ 18] [ 4] [6011] +14:20:16 [ 19] [ 3] [418] +14:20:16 [ 22] [ 3] [021] +14:20:16 [ 25] [ 2] [01] +14:20:16 [ 28] [ 9] [D00002000] +14:20:16 [ 32] [ 6] [180893] +14:20:16 [ 35] [ 32] [6213545000806921=491212010692057] +14:20:16 [ 37] [ 12] [507907269621] +14:20:16 [ 41] [ 8] [0221XKKM] +14:20:16 [ 42] [ 15] [999999 ] +14:20:16 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:20:16 [ 49] [ 3] [418] +14:20:16 [ 52] [ 16] [412B0AFADF9AF097] +14:20:16 ============================================================================ +14:20:16 + + +waiting on router queue for slot.... +14:20:16 Sending to : +14:20:16 ============================================================================ +14:20:16 ============================================================================ +14:20:16 Slot Id : <394> +14:20:16 Transaction Type : REQUEST +14:20:16 Received From : +14:20:16 ============================================================================ +14:20:16 FNo. Len. Field Value +14:20:16 ============================================================================ +14:20:16 [ 1] [ 4] [0200] +14:20:16 [ 2] [ 16] [6213545000806921] +14:20:16 [ 3] [ 6] [011000] +14:20:16 [ 4] [ 12] [000020000000] +14:20:16 [ 7] [ 10] [0320071922] +14:20:16 [ 11] [ 6] [269621] +14:20:16 [ 12] [ 6] [141922] +14:20:16 [ 13] [ 4] [0320] +14:20:16 [ 14] [ 4] [4912] +14:20:16 [ 15] [ 4] [0320] +14:20:16 [ 18] [ 4] [6011] +14:20:16 [ 19] [ 3] [418] +14:20:16 [ 22] [ 3] [021] +14:20:16 [ 25] [ 2] [01] +14:20:16 [ 28] [ 9] [D00002000] +14:20:16 [ 32] [ 6] [180893] +14:20:16 [ 35] [ 32] [6213545000806921=491212010692057] +14:20:16 [ 37] [ 12] [507907269621] +14:20:16 [ 41] [ 8] [0221XKKM] +14:20:16 [ 42] [ 15] [999999 ] +14:20:16 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:20:16 [ 49] [ 3] [418] +14:20:16 [ 52] [ 16] [41B2F7159423C4F1] +14:20:16 ============================================================================ +14:20:16 + + +waiting on router queue for slot.... +14:20:16 Sending to : <0> +14:20:16 ============================================================================ +14:20:17 ============================================================================ +14:20:17 Slot Id : <394> +14:20:17 Transaction Type : RESPONSE +14:20:17 Received From : +14:20:17 ============================================================================ +14:20:17 FNo. Len. Field Value +14:20:17 ============================================================================ +14:20:17 [ 1] [ 4] [0210] +14:20:17 [ 2] [ 16] [6213545000806921] +14:20:17 [ 3] [ 6] [011000] +14:20:17 [ 4] [ 12] [000020000000] +14:20:17 [ 7] [ 10] [0320071922] +14:20:17 [ 11] [ 6] [269621] +14:20:17 [ 12] [ 6] [141922] +14:20:17 [ 13] [ 4] [0320] +14:20:17 [ 15] [ 4] [0320] +14:20:17 [ 18] [ 4] [6011] +14:20:17 [ 19] [ 3] [418] +14:20:17 [ 32] [ 6] [180893] +14:20:17 [ 35] [ 32] [6213545000806921=491212010692057] +14:20:17 [ 37] [ 12] [507907269621] +14:20:17 [ 38] [ 6] [728421] +14:20:17 [ 39] [ 2] [00] +14:20:17 [ 41] [ 8] [0221XKKM] +14:20:17 [ 49] [ 3] [418] +14:20:17 [ 54] [ 40] [1001418C0001628025581002418C000162802558] +14:20:17 ============================================================================ +14:20:17 Sending to : +14:20:17 ============================================================================ +14:20:17 + + +waiting on router queue for slot.... +14:20:17 ============================================================================ +14:20:17 Slot Id : <414> +14:20:17 Transaction Type : REQUEST +14:20:17 Received From : +14:20:17 ============================================================================ +14:20:17 FNo. Len. Field Value +14:20:17 ============================================================================ +14:20:17 [ 1] [ 4] [0200] +14:20:17 [ 2] [ 16] [6688990100398500] +14:20:17 [ 3] [ 6] [012000] +14:20:17 [ 4] [ 12] [000030000000] +14:20:17 [ 7] [ 10] [0320142013] +14:20:17 [ 11] [ 6] [768733] +14:20:17 [ 12] [ 6] [142013] +14:20:17 [ 13] [ 4] [0320] +14:20:17 [ 15] [ 4] [0320] +14:20:17 [ 18] [ 4] [6011] +14:20:17 [ 22] [ 3] [900] +14:20:17 [ 25] [ 2] [02] +14:20:17 [ 28] [ 9] [D00002000] +14:20:17 [ 32] [ 6] [621354] +14:20:17 [ 35] [ 37] [6688990100398500=41061231850088100000] +14:20:17 [ 37] [ 12] [507904653290] +14:20:17 [ 41] [ 8] [17001000] +14:20:17 [ 42] [ 15] [NATIVE ] +14:20:17 [ 43] [ 40] [Sum Market Samneua LAO] +14:20:17 [ 49] [ 3] [418] +14:20:17 [ 52] [ 16] [949AB6639224F92C] +14:20:17 ============================================================================ +14:20:17 + + +waiting on router queue for slot.... +14:20:17 Sending to : +14:20:17 ============================================================================ +14:20:17 Sending to : +14:20:17 ============================================================================ +14:20:18 ============================================================================ +14:20:18 Slot Id : <414> +14:20:18 Transaction Type : REQUEST +14:20:18 Received From : +14:20:18 ============================================================================ +14:20:18 FNo. Len. Field Value +14:20:18 ============================================================================ +14:20:18 [ 1] [ 4] [0200] +14:20:18 [ 2] [ 16] [6688990100398500] +14:20:18 [ 3] [ 6] [012000] +14:20:18 [ 4] [ 12] [000030000000] +14:20:18 [ 7] [ 10] [0320142013] +14:20:18 [ 11] [ 6] [768733] +14:20:18 [ 12] [ 6] [142013] +14:20:18 [ 13] [ 4] [0320] +14:20:18 [ 15] [ 4] [0320] +14:20:18 [ 18] [ 4] [6011] +14:20:18 [ 22] [ 3] [900] +14:20:18 [ 25] [ 2] [02] +14:20:18 [ 28] [ 9] [D00002000] +14:20:18 [ 32] [ 6] [621354] +14:20:18 [ 35] [ 37] [6688990100398500=41061231850088100000] +14:20:18 [ 37] [ 12] [507904653290] +14:20:18 [ 41] [ 8] [17001000] +14:20:18 [ 42] [ 15] [NATIVE ] +14:20:18 [ 43] [ 40] [Sum Market Samneua LAO] +14:20:18 [ 49] [ 3] [418] +14:20:18 [ 52] [ 16] [949AB6639224F92C] +14:20:18 ============================================================================ +14:20:18 + + +waiting on router queue for slot.... +14:20:18 Sending to : +14:20:18 ============================================================================ +14:20:18 ============================================================================ +14:20:18 Slot Id : <414> +14:20:18 Transaction Type : REQUEST +14:20:18 Received From : +14:20:18 ============================================================================ +14:20:18 FNo. Len. Field Value +14:20:18 ============================================================================ +14:20:18 [ 1] [ 4] [0200] +14:20:18 [ 2] [ 16] [6688990100398500] +14:20:18 [ 3] [ 6] [012000] +14:20:18 [ 4] [ 12] [000030000000] +14:20:18 [ 7] [ 10] [0320142013] +14:20:18 [ 11] [ 6] [768733] +14:20:18 [ 12] [ 6] [142013] +14:20:18 [ 13] [ 4] [0320] +14:20:18 [ 15] [ 4] [0320] +14:20:18 [ 18] [ 4] [6011] +14:20:18 [ 22] [ 3] [900] +14:20:18 [ 25] [ 2] [02] +14:20:18 [ 28] [ 9] [D00002000] +14:20:18 [ 32] [ 6] [621354] +14:20:18 [ 35] [ 37] [6688990100398500=41061231850088100000] +14:20:18 [ 37] [ 12] [507904653290] +14:20:18 [ 41] [ 8] [17001000] +14:20:18 [ 42] [ 15] [NATIVE ] +14:20:18 [ 43] [ 40] [Sum Market Samneua LAO] +14:20:18 [ 49] [ 3] [418] +14:20:18 [ 52] [ 16] [72AA4C5EA8E17A95] +14:20:18 ============================================================================ +14:20:18 + + +waiting on router queue for slot.... +14:20:18 Sending to : <4> +14:20:18 ============================================================================ +14:20:18 ============================================================================ +14:20:18 Slot Id : <394> +14:20:18 Transaction Type : RESPONSE +14:20:18 Received From : +14:20:18 ============================================================================ +14:20:18 FNo. Len. Field Value +14:20:18 ============================================================================ +14:20:18 [ 1] [ 4] [0210] +14:20:18 [ 2] [ 16] [6213545000806921] +14:20:18 [ 3] [ 6] [011000] +14:20:18 [ 4] [ 12] [000020000000] +14:20:18 [ 7] [ 10] [0320071922] +14:20:18 [ 11] [ 6] [269621] +14:20:18 [ 12] [ 6] [141922] +14:20:18 [ 13] [ 4] [0320] +14:20:18 [ 15] [ 4] [0320] +14:20:18 [ 18] [ 4] [6011] +14:20:18 [ 19] [ 3] [418] +14:20:18 [ 32] [ 6] [180893] +14:20:18 [ 35] [ 32] [6213545000806921=491212010692057] +14:20:18 [ 37] [ 12] [507907269621] +14:20:18 [ 38] [ 6] [728421] +14:20:18 [ 39] [ 2] [00] +14:20:18 [ 41] [ 8] [0221XKKM] +14:20:18 [ 49] [ 3] [418] +14:20:18 [ 54] [ 40] [1001418C0001628025581002418C000162802558] +14:20:18 ============================================================================ +14:20:18 Calculate Source COMM Id = 2 +14:20:18 ============================================================================ +14:20:18 + + +waiting on router queue for slot.... +14:20:19 ============================================================================ +14:20:19 Slot Id : <414> +14:20:19 Transaction Type : RESPONSE +14:20:19 Received From : +14:20:19 ============================================================================ +14:20:19 FNo. Len. Field Value +14:20:19 ============================================================================ +14:20:19 [ 1] [ 4] [0210] +14:20:19 [ 2] [ 16] [6688990100398500] +14:20:19 [ 3] [ 6] [012000] +14:20:19 [ 4] [ 12] [000030000000] +14:20:19 [ 11] [ 6] [768733] +14:20:19 [ 12] [ 6] [142013] +14:20:19 [ 15] [ 4] [0320] +14:20:19 [ 18] [ 4] [6011] +14:20:19 [ 32] [ 6] [621354] +14:20:19 [ 35] [ 37] [6688990100398500=41061231850088100000] +14:20:19 [ 37] [ 12] [507904653290] +14:20:19 [ 38] [ 6] [410576] +14:20:19 [ 39] [ 2] [00] +14:20:19 [ 41] [ 8] [17001000] +14:20:19 [ 49] [ 3] [418] +14:20:19 [ 54] [ 20] [2002418C000060129716] +14:20:19 ============================================================================ +14:20:19 Sending to : +14:20:19 ============================================================================ +14:20:19 + + +waiting on router queue for slot.... +14:20:20 ============================================================================ +14:20:20 Slot Id : <414> +14:20:20 Transaction Type : RESPONSE +14:20:20 Received From : +14:20:20 ============================================================================ +14:20:20 FNo. Len. Field Value +14:20:20 ============================================================================ +14:20:20 [ 1] [ 4] [0210] +14:20:20 [ 2] [ 16] [6688990100398500] +14:20:20 [ 3] [ 6] [012000] +14:20:20 [ 4] [ 12] [000030000000] +14:20:20 [ 11] [ 6] [768733] +14:20:20 [ 12] [ 6] [142013] +14:20:20 [ 15] [ 4] [0320] +14:20:20 [ 18] [ 4] [6011] +14:20:20 [ 32] [ 6] [621354] +14:20:20 [ 35] [ 37] [6688990100398500=41061231850088100000] +14:20:20 [ 37] [ 12] [507904653290] +14:20:20 [ 38] [ 6] [410576] +14:20:20 [ 39] [ 2] [00] +14:20:20 [ 41] [ 8] [17001000] +14:20:20 [ 49] [ 3] [418] +14:20:20 [ 54] [ 20] [2002418C000060129716] +14:20:20 ============================================================================ +14:20:20 Calculate Source COMM Id = 0 +14:20:20 ============================================================================ +14:20:20 + + +waiting on router queue for slot.... +14:20:22 ============================================================================ +14:20:22 Slot Id : <399> +14:20:22 Transaction Type : REQUEST +14:20:22 Received From : +14:20:22 ============================================================================ +14:20:22 FNo. Len. Field Value +14:20:22 ============================================================================ +14:20:22 [ 1] [ 4] [0200] +14:20:22 [ 2] [ 16] [6213548000329746] +14:20:22 [ 3] [ 6] [301000] +14:20:22 [ 4] [ 12] [000000000000] +14:20:22 [ 7] [ 10] [0320142043] +14:20:22 [ 11] [ 6] [207142] +14:20:22 [ 12] [ 6] [021853] +14:20:22 [ 13] [ 4] [0320] +14:20:22 [ 14] [ 4] [1803] +14:20:22 [ 15] [ 4] [0320] +14:20:22 [ 18] [ 4] [6011] +14:20:22 [ 19] [ 3] [418] +14:20:22 [ 22] [ 3] [021] +14:20:22 [ 25] [ 2] [01] +14:20:22 [ 28] [ 9] [D00000000] +14:20:22 [ 32] [ 6] [198901] +14:20:22 [ 35] [ 32] [6213548000329746=180312012974881] +14:20:22 [ 37] [ 12] [507914207142] +14:20:22 [ 41] [ 8] [01529031] +14:20:22 [ 42] [ 15] [000000041529031] +14:20:22 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:20:22 [ 49] [ 3] [418] +14:20:22 [ 52] [ 16] [33847A897E60111C] +14:20:22 ============================================================================ +14:20:22 + + +waiting on router queue for slot.... +14:20:22 Sending to : +14:20:22 ============================================================================ +14:20:22 Sending to : +14:20:22 ============================================================================ +14:20:22 ============================================================================ +14:20:22 Slot Id : <399> +14:20:22 Transaction Type : REQUEST +14:20:22 Received From : +14:20:22 ============================================================================ +14:20:22 FNo. Len. Field Value +14:20:22 ============================================================================ +14:20:22 [ 1] [ 4] [0200] +14:20:22 [ 2] [ 16] [6213548000329746] +14:20:22 [ 3] [ 6] [301000] +14:20:22 [ 4] [ 12] [000000000000] +14:20:22 [ 7] [ 10] [0320142043] +14:20:22 [ 11] [ 6] [207142] +14:20:22 [ 12] [ 6] [021853] +14:20:22 [ 13] [ 4] [0320] +14:20:22 [ 14] [ 4] [1803] +14:20:22 [ 15] [ 4] [0320] +14:20:22 [ 18] [ 4] [6011] +14:20:22 [ 19] [ 3] [418] +14:20:22 [ 22] [ 3] [021] +14:20:22 [ 25] [ 2] [01] +14:20:22 [ 28] [ 9] [D00000000] +14:20:22 [ 32] [ 6] [198901] +14:20:22 [ 35] [ 32] [6213548000329746=180312012974881] +14:20:22 [ 37] [ 12] [507914207142] +14:20:22 [ 41] [ 8] [01529031] +14:20:22 [ 42] [ 15] [000000041529031] +14:20:22 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:20:22 [ 49] [ 3] [418] +14:20:22 [ 52] [ 16] [33847A897E60111C] +14:20:22 ============================================================================ +14:20:22 + + +waiting on router queue for slot.... +14:20:22 Sending to : +14:20:22 ============================================================================ +14:20:22 ============================================================================ +14:20:22 Slot Id : <399> +14:20:22 Transaction Type : REQUEST +14:20:22 Received From : +14:20:22 ============================================================================ +14:20:22 FNo. Len. Field Value +14:20:22 ============================================================================ +14:20:22 [ 1] [ 4] [0200] +14:20:22 [ 2] [ 16] [6213548000329746] +14:20:22 [ 3] [ 6] [301000] +14:20:22 [ 4] [ 12] [000000000000] +14:20:22 [ 7] [ 10] [0320142043] +14:20:22 [ 11] [ 6] [207142] +14:20:22 [ 12] [ 6] [021853] +14:20:22 [ 13] [ 4] [0320] +14:20:22 [ 14] [ 4] [1803] +14:20:22 [ 15] [ 4] [0320] +14:20:22 [ 18] [ 4] [6011] +14:20:22 [ 19] [ 3] [418] +14:20:22 [ 22] [ 3] [021] +14:20:22 [ 25] [ 2] [01] +14:20:22 [ 28] [ 9] [D00000000] +14:20:22 [ 32] [ 6] [198901] +14:20:22 [ 35] [ 32] [6213548000329746=180312012974881] +14:20:22 [ 37] [ 12] [507914207142] +14:20:22 [ 41] [ 8] [01529031] +14:20:22 [ 42] [ 15] [000000041529031] +14:20:22 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:20:22 [ 49] [ 3] [418] +14:20:22 [ 52] [ 16] [F15FB93266509E6C] +14:20:22 ============================================================================ +14:20:22 + + +waiting on router queue for slot.... +14:20:22 Sending to : <0> +14:20:22 ============================================================================ +14:20:22 ============================================================================ +14:20:22 Slot Id : <387> +14:20:22 Transaction Type : REQUEST +14:20:22 Received From : +14:20:22 ============================================================================ +14:20:22 FNo. Len. Field Value +14:20:22 ============================================================================ +14:20:22 [ 1] [ 4] [0800] +14:20:22 [ 2] [ 5] [02531] +14:20:22 [ 3] [ 6] [579148] +14:20:22 [ 7] [ 10] [0320072022] +14:20:22 [ 11] [ 6] [807244] +14:20:22 [ 15] [ 10] [0320072022] +14:20:22 [ 37] [ 11] [57914807244] +14:20:22 [ 70] [ 3] [001] +14:20:22 ============================================================================ +14:20:22 + + +waiting on router queue for slot.... +14:20:22 ============================================================================ +14:20:22 Slot Id : <387> +14:20:22 Transaction Type : RESPONSE +14:20:22 Received From : +14:20:22 ============================================================================ +14:20:22 FNo. Len. Field Value +14:20:22 ============================================================================ +14:20:22 [ 1] [ 4] [0810] +14:20:22 [ 7] [ 10] [0320072022] +14:20:22 [ 11] [ 6] [807244] +14:20:22 [ 15] [ 4] [0320] +14:20:22 [ 37] [ 12] [57914807244] +14:20:22 [ 39] [ 2] [00] +14:20:22 [ 70] [ 3] [001] +14:20:22 ============================================================================ +14:20:22 Sending to : +14:20:22 ============================================================================ +14:20:22 + + +waiting on router queue for slot.... +14:20:22 ============================================================================ +14:20:22 Slot Id : <399> +14:20:22 Transaction Type : RESPONSE +14:20:22 Received From : +14:20:22 ============================================================================ +14:20:22 FNo. Len. Field Value +14:20:22 ============================================================================ +14:20:22 [ 1] [ 4] [0210] +14:20:22 [ 2] [ 16] [6213548000329746] +14:20:22 [ 3] [ 6] [301000] +14:20:22 [ 4] [ 12] [000000000000] +14:20:22 [ 7] [ 10] [0320142043] +14:20:22 [ 11] [ 6] [207142] +14:20:22 [ 12] [ 6] [021853] +14:20:22 [ 13] [ 4] [0320] +14:20:22 [ 15] [ 4] [0320] +14:20:22 [ 18] [ 4] [6011] +14:20:22 [ 19] [ 3] [418] +14:20:22 [ 32] [ 6] [198901] +14:20:22 [ 35] [ 32] [6213548000329746=180312012974881] +14:20:22 [ 37] [ 12] [507914207142] +14:20:22 [ 38] [ 6] [096671] +14:20:22 [ 39] [ 2] [00] +14:20:22 [ 41] [ 8] [01529031] +14:20:22 [ 49] [ 3] [418] +14:20:22 [ 54] [ 40] [1001418C0000070803511002418C000007080351] +14:20:22 ============================================================================ +14:20:22 Sending to : +14:20:22 ============================================================================ +14:20:22 + + +waiting on router queue for slot.... +14:20:23 ============================================================================ +14:20:23 Slot Id : <418> +14:20:23 Transaction Type : REQUEST +14:20:23 Received From : +14:20:23 ============================================================================ +14:20:23 FNo. Len. Field Value +14:20:23 ============================================================================ +14:20:23 [ 1] [ 4] [0200] +14:20:23 [ 2] [ 16] [1808930100004555] +14:20:23 [ 3] [ 6] [011000] +14:20:23 [ 4] [ 12] [000100000000] +14:20:23 [ 7] [ 10] [0320142019] +14:20:23 [ 11] [ 6] [768747] +14:20:23 [ 12] [ 6] [142019] +14:20:23 [ 13] [ 4] [0320] +14:20:23 [ 15] [ 4] [0320] +14:20:23 [ 18] [ 4] [6011] +14:20:23 [ 22] [ 3] [900] +14:20:23 [ 25] [ 2] [02] +14:20:23 [ 28] [ 9] [D00002000] +14:20:23 [ 32] [ 6] [621354] +14:20:23 [ 35] [ 27] [1808930100004555=1803500795] +14:20:23 [ 37] [ 12] [507903675616] +14:20:23 [ 41] [ 8] [16002000] +14:20:23 [ 42] [ 15] [NATIVE ] +14:20:23 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +14:20:23 [ 49] [ 3] [418] +14:20:23 [ 52] [ 16] [E51F2EFE13EEB383] +14:20:23 ============================================================================ +14:20:23 + + +waiting on router queue for slot.... +14:20:23 Sending to : +14:20:23 ============================================================================ +14:20:23 Sending to : +14:20:23 ============================================================================ +14:20:24 ============================================================================ +14:20:24 Slot Id : <418> +14:20:24 Transaction Type : REQUEST +14:20:24 Received From : +14:20:24 ============================================================================ +14:20:24 FNo. Len. Field Value +14:20:24 ============================================================================ +14:20:24 [ 1] [ 4] [0200] +14:20:24 [ 2] [ 16] [1808930100004555] +14:20:24 [ 3] [ 6] [011000] +14:20:24 [ 4] [ 12] [000100000000] +14:20:24 [ 7] [ 10] [0320142019] +14:20:24 [ 11] [ 6] [768747] +14:20:24 [ 12] [ 6] [142019] +14:20:24 [ 13] [ 4] [0320] +14:20:24 [ 15] [ 4] [0320] +14:20:24 [ 18] [ 4] [6011] +14:20:24 [ 22] [ 3] [900] +14:20:24 [ 25] [ 2] [02] +14:20:24 [ 28] [ 9] [D00002000] +14:20:24 [ 32] [ 6] [621354] +14:20:24 [ 35] [ 27] [1808930100004555=1803500795] +14:20:24 [ 37] [ 12] [507903675616] +14:20:24 [ 41] [ 8] [16002000] +14:20:24 [ 42] [ 15] [NATIVE ] +14:20:24 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +14:20:24 [ 49] [ 3] [418] +14:20:24 [ 52] [ 16] [E51F2EFE13EEB383] +14:20:24 ============================================================================ +14:20:24 + + +waiting on router queue for slot.... +14:20:24 Sending to : +14:20:24 ============================================================================ +14:20:24 ============================================================================ +14:20:24 Slot Id : <418> +14:20:24 Transaction Type : REQUEST +14:20:24 Received From : +14:20:24 ============================================================================ +14:20:24 FNo. Len. Field Value +14:20:24 ============================================================================ +14:20:24 [ 1] [ 4] [0200] +14:20:24 [ 2] [ 16] [1808930100004555] +14:20:24 [ 3] [ 6] [011000] +14:20:24 [ 4] [ 12] [000100000000] +14:20:24 [ 7] [ 10] [0320142019] +14:20:24 [ 11] [ 6] [768747] +14:20:24 [ 12] [ 6] [142019] +14:20:24 [ 13] [ 4] [0320] +14:20:24 [ 15] [ 4] [0320] +14:20:24 [ 18] [ 4] [6011] +14:20:24 [ 22] [ 3] [900] +14:20:24 [ 25] [ 2] [02] +14:20:24 [ 28] [ 9] [D00002000] +14:20:24 [ 32] [ 6] [621354] +14:20:24 [ 35] [ 27] [1808930100004555=1803500795] +14:20:24 [ 37] [ 12] [507903675616] +14:20:24 [ 41] [ 8] [16002000] +14:20:24 [ 42] [ 15] [NATIVE ] +14:20:24 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +14:20:24 [ 49] [ 3] [418] +14:20:24 [ 52] [ 16] [919A35FFB01C5A40] +14:20:24 ============================================================================ +14:20:24 + + +waiting on router queue for slot.... +14:20:24 Sending to : <2> +14:20:24 ============================================================================ +14:20:24 ============================================================================ +14:20:24 Slot Id : <399> +14:20:24 Transaction Type : RESPONSE +14:20:24 Received From : +14:20:24 ============================================================================ +14:20:24 FNo. Len. Field Value +14:20:24 ============================================================================ +14:20:24 [ 1] [ 4] [0210] +14:20:24 [ 2] [ 16] [6213548000329746] +14:20:24 [ 3] [ 6] [301000] +14:20:24 [ 4] [ 12] [000000000000] +14:20:24 [ 7] [ 10] [0320142043] +14:20:24 [ 11] [ 6] [207142] +14:20:24 [ 12] [ 6] [021853] +14:20:24 [ 13] [ 4] [0320] +14:20:24 [ 15] [ 4] [0320] +14:20:24 [ 18] [ 4] [6011] +14:20:24 [ 19] [ 3] [418] +14:20:24 [ 32] [ 6] [198901] +14:20:24 [ 35] [ 32] [6213548000329746=180312012974881] +14:20:24 [ 37] [ 12] [507914207142] +14:20:24 [ 38] [ 6] [096671] +14:20:24 [ 39] [ 2] [00] +14:20:24 [ 41] [ 8] [01529031] +14:20:24 [ 49] [ 3] [418] +14:20:24 [ 54] [ 40] [1001418C0000070803511002418C000007080351] +14:20:24 ============================================================================ +14:20:24 Calculate Source COMM Id = 5 +14:20:24 ============================================================================ +14:20:24 + + +waiting on router queue for slot.... +14:20:27 ============================================================================ +14:20:27 Slot Id : <418> +14:20:27 Transaction Type : RESPONSE +14:20:27 Received From : +14:20:27 ============================================================================ +14:20:27 FNo. Len. Field Value +14:20:27 ============================================================================ +14:20:27 [ 1] [ 4] [0210] +14:20:27 [ 2] [ 16] [1808930100004555] +14:20:27 [ 3] [ 6] [011000] +14:20:27 [ 4] [ 12] [000100000000] +14:20:27 [ 6] [ 12] [000100000000] +14:20:27 [ 7] [ 10] [0320142019] +14:20:27 [ 11] [ 6] [768747] +14:20:27 [ 12] [ 6] [142019] +14:20:27 [ 13] [ 4] [0320] +14:20:27 [ 18] [ 4] [6011] +14:20:27 [ 19] [ 3] [418] +14:20:27 [ 22] [ 3] [021] +14:20:27 [ 32] [ 6] [621354] +14:20:27 [ 35] [ 27] [1808930100004555=1803500795] +14:20:27 [ 37] [ 12] [507903675616] +14:20:27 [ 38] [ 6] [768747] +14:20:27 [ 39] [ 2] [00] +14:20:27 [ 41] [ 8] [16002000] +14:20:27 [ 49] [ 3] [418] +14:20:27 [ 52] [ 16] [919A35FFB01C5A40] +14:20:27 [ 54] [ 20] [1001418C000398555500] +14:20:27 ============================================================================ +14:20:27 Sending to : +14:20:27 ============================================================================ +14:20:27 + + +waiting on router queue for slot.... +14:20:28 ============================================================================ +14:20:28 Slot Id : <418> +14:20:28 Transaction Type : RESPONSE +14:20:28 Received From : +14:20:28 ============================================================================ +14:20:28 FNo. Len. Field Value +14:20:28 ============================================================================ +14:20:28 [ 1] [ 4] [0210] +14:20:28 [ 2] [ 16] [1808930100004555] +14:20:28 [ 3] [ 6] [011000] +14:20:28 [ 4] [ 12] [000100000000] +14:20:28 [ 6] [ 12] [000100000000] +14:20:28 [ 7] [ 10] [0320142019] +14:20:28 [ 11] [ 6] [768747] +14:20:28 [ 12] [ 6] [142019] +14:20:28 [ 13] [ 4] [0320] +14:20:28 [ 18] [ 4] [6011] +14:20:28 [ 19] [ 3] [418] +14:20:28 [ 22] [ 3] [021] +14:20:28 [ 32] [ 6] [621354] +14:20:28 [ 35] [ 27] [1808930100004555=1803500795] +14:20:28 [ 37] [ 12] [507903675616] +14:20:28 [ 38] [ 6] [768747] +14:20:28 [ 39] [ 2] [00] +14:20:28 [ 41] [ 8] [16002000] +14:20:28 [ 49] [ 3] [418] +14:20:28 [ 52] [ 16] [919A35FFB01C5A40] +14:20:28 [ 54] [ 20] [1001418C000398555500] +14:20:28 ============================================================================ +14:20:28 Calculate Source COMM Id = 0 +14:20:28 ============================================================================ +14:20:28 + + +waiting on router queue for slot.... +14:20:38 ============================================================================ +14:20:38 Slot Id : <372> +14:20:38 Transaction Type : REQUEST +14:20:38 Received From : +14:20:38 ============================================================================ +14:20:38 FNo. Len. Field Value +14:20:38 ============================================================================ +14:20:38 [ 1] [ 4] [0800] +14:20:38 [ 7] [ 10] [0320071945] +14:20:38 [ 11] [ 6] [156759] +14:20:38 [ 70] [ 3] [301] +14:20:38 ============================================================================ +14:20:38 + + +waiting on router queue for slot.... +14:20:38 Sending to : +14:20:38 ============================================================================ +14:20:38 ============================================================================ +14:20:38 Slot Id : <372> +14:20:38 Transaction Type : RESPONSE +14:20:38 Received From : +14:20:38 ============================================================================ +14:20:38 FNo. Len. Field Value +14:20:38 ============================================================================ +14:20:38 [ 1] [ 4] [0810] +14:20:38 [ 7] [ 10] [0320071945] +14:20:38 [ 11] [ 6] [156759] +14:20:38 [ 39] [ 2] [00] +14:20:38 [ 70] [ 3] [301] +14:20:38 ============================================================================ +14:20:38 Calculate Source COMM Id = 2 +14:20:38 ============================================================================ +14:20:38 + + +waiting on router queue for slot.... +14:20:42 ============================================================================ +14:20:42 Slot Id : <368> +14:20:42 Transaction Type : REQUEST +14:20:42 Received From : +14:20:42 ============================================================================ +14:20:42 FNo. Len. Field Value +14:20:42 ============================================================================ +14:20:42 [ 1] [ 4] [0200] +14:20:42 [ 2] [ 16] [6688990700292509] +14:20:42 [ 3] [ 6] [011000] +14:20:42 [ 4] [ 12] [000100000000] +14:20:42 [ 7] [ 10] [0320142038] +14:20:42 [ 11] [ 6] [768823] +14:20:42 [ 12] [ 6] [142038] +14:20:42 [ 13] [ 4] [0320] +14:20:42 [ 15] [ 4] [0320] +14:20:42 [ 18] [ 4] [6011] +14:20:42 [ 22] [ 3] [900] +14:20:42 [ 25] [ 2] [02] +14:20:42 [ 28] [ 9] [D00002000] +14:20:42 [ 32] [ 6] [621354] +14:20:42 [ 35] [ 37] [6688990700292509=44020071250917500000] +14:20:42 [ 37] [ 12] [507904885681] +14:20:42 [ 41] [ 8] [08001000] +14:20:42 [ 42] [ 15] [NATIVE ] +14:20:42 [ 43] [ 40] [Sanamxay District Samakyxay LAO] +14:20:42 [ 49] [ 3] [418] +14:20:42 [ 52] [ 16] [5A5A39505506A3C1] +14:20:42 ============================================================================ +14:20:42 + + +waiting on router queue for slot.... +14:20:42 Sending to : +14:20:42 ============================================================================ +14:20:42 Sending to : +14:20:42 ============================================================================ +14:20:43 ============================================================================ +14:20:43 Slot Id : <368> +14:20:43 Transaction Type : REQUEST +14:20:43 Received From : +14:20:43 ============================================================================ +14:20:43 FNo. Len. Field Value +14:20:43 ============================================================================ +14:20:43 [ 1] [ 4] [0200] +14:20:43 [ 2] [ 16] [6688990700292509] +14:20:43 [ 3] [ 6] [011000] +14:20:43 [ 4] [ 12] [000100000000] +14:20:43 [ 7] [ 10] [0320142038] +14:20:43 [ 11] [ 6] [768823] +14:20:43 [ 12] [ 6] [142038] +14:20:43 [ 13] [ 4] [0320] +14:20:43 [ 15] [ 4] [0320] +14:20:43 [ 18] [ 4] [6011] +14:20:43 [ 22] [ 3] [900] +14:20:43 [ 25] [ 2] [02] +14:20:43 [ 28] [ 9] [D00002000] +14:20:43 [ 32] [ 6] [621354] +14:20:43 [ 35] [ 37] [6688990700292509=44020071250917500000] +14:20:43 [ 37] [ 12] [507904885681] +14:20:43 [ 41] [ 8] [08001000] +14:20:43 [ 42] [ 15] [NATIVE ] +14:20:43 [ 43] [ 40] [Sanamxay District Samakyxay LAO] +14:20:43 [ 49] [ 3] [418] +14:20:43 [ 52] [ 16] [5A5A39505506A3C1] +14:20:43 ============================================================================ +14:20:43 + + +waiting on router queue for slot.... +14:20:43 Sending to : +14:20:43 ============================================================================ +14:20:43 ============================================================================ +14:20:43 Slot Id : <368> +14:20:43 Transaction Type : REQUEST +14:20:43 Received From : +14:20:43 ============================================================================ +14:20:43 FNo. Len. Field Value +14:20:43 ============================================================================ +14:20:43 [ 1] [ 4] [0200] +14:20:43 [ 2] [ 16] [6688990700292509] +14:20:43 [ 3] [ 6] [011000] +14:20:43 [ 4] [ 12] [000100000000] +14:20:43 [ 7] [ 10] [0320142038] +14:20:43 [ 11] [ 6] [768823] +14:20:43 [ 12] [ 6] [142038] +14:20:43 [ 13] [ 4] [0320] +14:20:43 [ 15] [ 4] [0320] +14:20:43 [ 18] [ 4] [6011] +14:20:43 [ 22] [ 3] [900] +14:20:43 [ 25] [ 2] [02] +14:20:43 [ 28] [ 9] [D00002000] +14:20:43 [ 32] [ 6] [621354] +14:20:43 [ 35] [ 37] [6688990700292509=44020071250917500000] +14:20:43 [ 37] [ 12] [507904885681] +14:20:43 [ 41] [ 8] [08001000] +14:20:43 [ 42] [ 15] [NATIVE ] +14:20:43 [ 43] [ 40] [Sanamxay District Samakyxay LAO] +14:20:43 [ 49] [ 3] [418] +14:20:43 [ 52] [ 16] [FF550A3EC6C2CE0C] +14:20:43 ============================================================================ +14:20:43 + + +waiting on router queue for slot.... +14:20:43 Sending to : <4> +14:20:43 ============================================================================ +14:20:44 ============================================================================ +14:20:44 Slot Id : <368> +14:20:44 Transaction Type : RESPONSE +14:20:44 Received From : +14:20:44 ============================================================================ +14:20:44 FNo. Len. Field Value +14:20:44 ============================================================================ +14:20:44 [ 1] [ 4] [0210] +14:20:44 [ 2] [ 16] [6688990700292509] +14:20:44 [ 3] [ 6] [011000] +14:20:44 [ 4] [ 12] [000100000000] +14:20:44 [ 11] [ 6] [768823] +14:20:44 [ 12] [ 6] [142038] +14:20:44 [ 15] [ 4] [0320] +14:20:44 [ 18] [ 4] [6011] +14:20:44 [ 32] [ 6] [621354] +14:20:44 [ 35] [ 37] [6688990700292509=44020071250917500000] +14:20:44 [ 37] [ 12] [507904885681] +14:20:44 [ 38] [ 6] [337841] +14:20:44 [ 39] [ 2] [00] +14:20:44 [ 41] [ 8] [08001000] +14:20:44 [ 49] [ 3] [418] +14:20:44 [ 54] [ 20] [1002418C000177737946] +14:20:44 ============================================================================ +14:20:44 Sending to : +14:20:44 ============================================================================ +14:20:44 + + +waiting on router queue for slot.... +14:20:45 ============================================================================ +14:20:45 Slot Id : <368> +14:20:45 Transaction Type : RESPONSE +14:20:45 Received From : +14:20:45 ============================================================================ +14:20:45 FNo. Len. Field Value +14:20:45 ============================================================================ +14:20:45 [ 1] [ 4] [0210] +14:20:45 [ 2] [ 16] [6688990700292509] +14:20:45 [ 3] [ 6] [011000] +14:20:45 [ 4] [ 12] [000100000000] +14:20:45 [ 11] [ 6] [768823] +14:20:45 [ 12] [ 6] [142038] +14:20:45 [ 15] [ 4] [0320] +14:20:45 [ 18] [ 4] [6011] +14:20:45 [ 32] [ 6] [621354] +14:20:45 [ 35] [ 37] [6688990700292509=44020071250917500000] +14:20:45 [ 37] [ 12] [507904885681] +14:20:45 [ 38] [ 6] [337841] +14:20:45 [ 39] [ 2] [00] +14:20:45 [ 41] [ 8] [08001000] +14:20:45 [ 49] [ 3] [418] +14:20:45 [ 54] [ 20] [1002418C000177737946] +14:20:45 ============================================================================ +14:20:45 Calculate Source COMM Id = 0 +14:20:45 ============================================================================ +14:20:45 + + +waiting on router queue for slot.... +14:20:49 ============================================================================ +14:20:49 Slot Id : <419> +14:20:49 Transaction Type : REQUEST +14:20:49 Received From : +14:20:49 ============================================================================ +14:20:49 FNo. Len. Field Value +14:20:49 ============================================================================ +14:20:49 [ 1] [ 4] [0800] +14:20:49 [ 7] [ 10] [0320071956] +14:20:49 [ 11] [ 6] [156760] +14:20:49 [ 70] [ 3] [301] +14:20:49 ============================================================================ +14:20:49 + + +waiting on router queue for slot.... +14:20:49 Sending to : +14:20:49 ============================================================================ +14:20:49 ============================================================================ +14:20:49 Slot Id : <419> +14:20:49 Transaction Type : RESPONSE +14:20:49 Received From : +14:20:49 ============================================================================ +14:20:49 FNo. Len. Field Value +14:20:49 ============================================================================ +14:20:49 [ 1] [ 4] [0810] +14:20:49 [ 7] [ 10] [0320071956] +14:20:49 [ 11] [ 6] [156760] +14:20:49 [ 39] [ 2] [00] +14:20:49 [ 70] [ 3] [301] +14:20:49 ============================================================================ +14:20:49 Calculate Source COMM Id = 2 +14:20:49 ============================================================================ +14:20:49 + + +waiting on router queue for slot.... +14:21:00 ============================================================================ +14:21:00 Slot Id : <406> +14:21:00 Transaction Type : REQUEST +14:21:00 Received From : +14:21:00 ============================================================================ +14:21:00 FNo. Len. Field Value +14:21:00 ============================================================================ +14:21:00 [ 1] [ 4] [0800] +14:21:00 [ 7] [ 10] [0320072007] +14:21:00 [ 11] [ 6] [156761] +14:21:00 [ 70] [ 3] [301] +14:21:00 ============================================================================ +14:21:00 + + +waiting on router queue for slot.... +14:21:00 Sending to : +14:21:00 ============================================================================ +14:21:00 ============================================================================ +14:21:00 Slot Id : <406> +14:21:00 Transaction Type : RESPONSE +14:21:00 Received From : +14:21:00 ============================================================================ +14:21:00 FNo. Len. Field Value +14:21:00 ============================================================================ +14:21:00 [ 1] [ 4] [0810] +14:21:00 [ 7] [ 10] [0320072007] +14:21:00 [ 11] [ 6] [156761] +14:21:00 [ 39] [ 2] [00] +14:21:00 [ 70] [ 3] [301] +14:21:00 ============================================================================ +14:21:00 Calculate Source COMM Id = 2 +14:21:00 ============================================================================ +14:21:00 + + +waiting on router queue for slot.... +14:21:04 ============================================================================ +14:21:04 Slot Id : <411> +14:21:04 Transaction Type : REQUEST +14:21:04 Received From : +14:21:04 ============================================================================ +14:21:04 FNo. Len. Field Value +14:21:04 ============================================================================ +14:21:04 [ 1] [ 4] [0800] +14:21:04 [ 7] [ 10] [0320213252] +14:21:04 [ 11] [ 6] [143252] +14:21:04 [ 37] [ 12] [57914143252] +14:21:04 [ 70] [ 3] [301] +14:21:04 ============================================================================ +14:21:04 + + +waiting on router queue for slot.... +14:21:04 Sending to : +14:21:04 ============================================================================ +14:21:04 ============================================================================ +14:21:04 Slot Id : <411> +14:21:04 Transaction Type : RESPONSE +14:21:04 Received From : +14:21:04 ============================================================================ +14:21:04 FNo. Len. Field Value +14:21:04 ============================================================================ +14:21:04 [ 1] [ 4] [0810] +14:21:04 [ 7] [ 10] [0320213252] +14:21:04 [ 11] [ 6] [143252] +14:21:04 [ 37] [ 12] [579141432520] +14:21:04 [ 39] [ 2] [00] +14:21:04 [ 70] [ 3] [810] +14:21:04 ============================================================================ +14:21:04 Calculate Source COMM Id = 6 +14:21:04 ============================================================================ +14:21:04 + + +waiting on router queue for slot.... +14:21:11 ============================================================================ +14:21:11 Slot Id : <407> +14:21:11 Transaction Type : REQUEST +14:21:11 Received From : +14:21:11 ============================================================================ +14:21:11 FNo. Len. Field Value +14:21:11 ============================================================================ +14:21:11 [ 1] [ 4] [0800] +14:21:11 [ 7] [ 10] [0320072018] +14:21:11 [ 11] [ 6] [156762] +14:21:11 [ 70] [ 3] [301] +14:21:11 ============================================================================ +14:21:11 + + +waiting on router queue for slot.... +14:21:11 Sending to : +14:21:11 ============================================================================ +14:21:11 ============================================================================ +14:21:11 Slot Id : <407> +14:21:11 Transaction Type : RESPONSE +14:21:11 Received From : +14:21:11 ============================================================================ +14:21:11 FNo. Len. Field Value +14:21:11 ============================================================================ +14:21:11 [ 1] [ 4] [0810] +14:21:11 [ 7] [ 10] [0320072018] +14:21:11 [ 11] [ 6] [156762] +14:21:11 [ 39] [ 2] [00] +14:21:11 [ 70] [ 3] [301] +14:21:11 ============================================================================ +14:21:11 Calculate Source COMM Id = 2 +14:21:11 ============================================================================ +14:21:11 + + +waiting on router queue for slot.... +14:21:20 ============================================================================ +14:21:20 Slot Id : <416> +14:21:20 Transaction Type : REQUEST +14:21:20 Received From : +14:21:20 ============================================================================ +14:21:20 FNo. Len. Field Value +14:21:20 ============================================================================ +14:21:20 [ 1] [ 4] [0200] +14:21:20 [ 2] [ 16] [6688990103274104] +14:21:20 [ 3] [ 6] [013000] +14:21:20 [ 4] [ 12] [000050000000] +14:21:20 [ 7] [ 10] [0320142116] +14:21:20 [ 11] [ 6] [768936] +14:21:20 [ 12] [ 6] [142116] +14:21:20 [ 13] [ 4] [0320] +14:21:20 [ 15] [ 4] [0320] +14:21:20 [ 18] [ 4] [6011] +14:21:20 [ 22] [ 3] [900] +14:21:20 [ 25] [ 2] [02] +14:21:20 [ 28] [ 9] [D00002000] +14:21:20 [ 32] [ 6] [621354] +14:21:20 [ 35] [ 37] [6688990103274104=42121231410449900000] +14:21:20 [ 37] [ 12] [507903499491] +14:21:20 [ 41] [ 8] [06002200] +14:21:20 [ 42] [ 15] [NATIVE ] +14:21:20 [ 43] [ 40] [Beng Market Beng LAO] +14:21:20 [ 49] [ 3] [418] +14:21:20 [ 52] [ 16] [5A9FE68C70082DE4] +14:21:20 ============================================================================ +14:21:20 + + +waiting on router queue for slot.... +14:21:20 Sending to : +14:21:20 ============================================================================ +14:21:20 Sending to : +14:21:20 ============================================================================ +14:21:21 ============================================================================ +14:21:21 Slot Id : <416> +14:21:21 Transaction Type : REQUEST +14:21:21 Received From : +14:21:21 ============================================================================ +14:21:21 FNo. Len. Field Value +14:21:21 ============================================================================ +14:21:21 [ 1] [ 4] [0200] +14:21:21 [ 2] [ 16] [6688990103274104] +14:21:21 [ 3] [ 6] [013000] +14:21:21 [ 4] [ 12] [000050000000] +14:21:21 [ 7] [ 10] [0320142116] +14:21:21 [ 11] [ 6] [768936] +14:21:21 [ 12] [ 6] [142116] +14:21:21 [ 13] [ 4] [0320] +14:21:21 [ 15] [ 4] [0320] +14:21:21 [ 18] [ 4] [6011] +14:21:21 [ 22] [ 3] [900] +14:21:21 [ 25] [ 2] [02] +14:21:21 [ 28] [ 9] [D00002000] +14:21:21 [ 32] [ 6] [621354] +14:21:21 [ 35] [ 37] [6688990103274104=42121231410449900000] +14:21:21 [ 37] [ 12] [507903499491] +14:21:21 [ 41] [ 8] [06002200] +14:21:21 [ 42] [ 15] [NATIVE ] +14:21:21 [ 43] [ 40] [Beng Market Beng LAO] +14:21:21 [ 49] [ 3] [418] +14:21:21 [ 52] [ 16] [5A9FE68C70082DE4] +14:21:21 ============================================================================ +14:21:21 + + +waiting on router queue for slot.... +14:21:21 Sending to : +14:21:21 ============================================================================ +14:21:21 ============================================================================ +14:21:21 Slot Id : <416> +14:21:21 Transaction Type : REQUEST +14:21:21 Received From : +14:21:21 ============================================================================ +14:21:21 FNo. Len. Field Value +14:21:21 ============================================================================ +14:21:21 [ 1] [ 4] [0200] +14:21:21 [ 2] [ 16] [6688990103274104] +14:21:21 [ 3] [ 6] [013000] +14:21:21 [ 4] [ 12] [000050000000] +14:21:21 [ 7] [ 10] [0320142116] +14:21:21 [ 11] [ 6] [768936] +14:21:21 [ 12] [ 6] [142116] +14:21:21 [ 13] [ 4] [0320] +14:21:21 [ 15] [ 4] [0320] +14:21:21 [ 18] [ 4] [6011] +14:21:21 [ 22] [ 3] [900] +14:21:21 [ 25] [ 2] [02] +14:21:21 [ 28] [ 9] [D00002000] +14:21:21 [ 32] [ 6] [621354] +14:21:21 [ 35] [ 37] [6688990103274104=42121231410449900000] +14:21:21 [ 37] [ 12] [507903499491] +14:21:21 [ 41] [ 8] [06002200] +14:21:21 [ 42] [ 15] [NATIVE ] +14:21:21 [ 43] [ 40] [Beng Market Beng LAO] +14:21:21 [ 49] [ 3] [418] +14:21:21 [ 52] [ 16] [C15019C396F16F6B] +14:21:21 ============================================================================ +14:21:21 + + +waiting on router queue for slot.... +14:21:21 Sending to : <4> +14:21:21 ============================================================================ +14:21:21 ============================================================================ +14:21:21 Slot Id : <380> +14:21:21 Transaction Type : REQUEST +14:21:21 Received From : +14:21:21 ============================================================================ +14:21:21 FNo. Len. Field Value +14:21:21 ============================================================================ +14:21:21 [ 1] [ 4] [0800] +14:21:21 [ 7] [ 10] [0320072029] +14:21:21 [ 11] [ 6] [156763] +14:21:21 [ 70] [ 3] [301] +14:21:21 ============================================================================ +14:21:21 + + +waiting on router queue for slot.... +14:21:21 Sending to : +14:21:21 ============================================================================ +14:21:21 ============================================================================ +14:21:21 Slot Id : <380> +14:21:21 Transaction Type : RESPONSE +14:21:21 Received From : +14:21:21 ============================================================================ +14:21:21 FNo. Len. Field Value +14:21:21 ============================================================================ +14:21:21 [ 1] [ 4] [0810] +14:21:21 [ 7] [ 10] [0320072029] +14:21:21 [ 11] [ 6] [156763] +14:21:21 [ 39] [ 2] [00] +14:21:21 [ 70] [ 3] [301] +14:21:21 ============================================================================ +14:21:21 Calculate Source COMM Id = 2 +14:21:21 ============================================================================ +14:21:21 + + +waiting on router queue for slot.... +14:21:22 ============================================================================ +14:21:22 Slot Id : <384> +14:21:22 Transaction Type : REQUEST +14:21:22 Received From : +14:21:22 ============================================================================ +14:21:22 FNo. Len. Field Value +14:21:22 ============================================================================ +14:21:22 [ 1] [ 4] [0800] +14:21:22 [ 7] [ 10] [0320071912] +14:21:22 [ 11] [ 6] [067501] +14:21:22 [ 37] [ 12] [57914067501] +14:21:22 [ 70] [ 3] [301] +14:21:22 ============================================================================ +14:21:22 + + +waiting on router queue for slot.... +14:21:22 Sending to : +14:21:22 ============================================================================ +14:21:22 ============================================================================ +14:21:22 Slot Id : <384> +14:21:22 Transaction Type : RESPONSE +14:21:22 Received From : +14:21:22 ============================================================================ +14:21:22 FNo. Len. Field Value +14:21:22 ============================================================================ +14:21:22 [ 1] [ 4] [0810] +14:21:22 [ 7] [ 10] [0320071912] +14:21:22 [ 11] [ 6] [067501] +14:21:22 [ 37] [ 12] [579140675010] +14:21:22 [ 39] [ 2] [00] +14:21:22 [ 70] [ 3] [810] +14:21:22 ============================================================================ +14:21:22 Calculate Source COMM Id = 4 +14:21:22 ============================================================================ +14:21:22 + + +waiting on router queue for slot.... +14:21:22 ============================================================================ +14:21:22 Slot Id : <416> +14:21:22 Transaction Type : RESPONSE +14:21:22 Received From : +14:21:22 ============================================================================ +14:21:22 FNo. Len. Field Value +14:21:22 ============================================================================ +14:21:22 [ 1] [ 4] [0210] +14:21:22 [ 2] [ 16] [6688990103274104] +14:21:22 [ 3] [ 6] [013000] +14:21:22 [ 4] [ 12] [000050000000] +14:21:22 [ 11] [ 6] [768936] +14:21:22 [ 12] [ 6] [142116] +14:21:22 [ 15] [ 4] [0320] +14:21:22 [ 18] [ 4] [6011] +14:21:22 [ 32] [ 6] [621354] +14:21:22 [ 35] [ 37] [6688990103274104=42121231410449900000] +14:21:22 [ 37] [ 12] [507903499491] +14:21:22 [ 38] [ 6] [493753] +14:21:22 [ 39] [ 2] [00] +14:21:22 [ 41] [ 8] [06002200] +14:21:22 [ 49] [ 3] [418] +14:21:22 [ 54] [ 20] [3002418C000037335860] +14:21:22 ============================================================================ +14:21:22 Sending to : +14:21:22 ============================================================================ +14:21:22 + + +waiting on router queue for slot.... +14:21:23 ============================================================================ +14:21:23 Slot Id : <420> +14:21:23 Transaction Type : REQUEST +14:21:23 Received From : +14:21:23 ============================================================================ +14:21:23 FNo. Len. Field Value +14:21:23 ============================================================================ +14:21:23 [ 1] [ 4] [0200] +14:21:23 [ 2] [ 16] [6688990602691204] +14:21:23 [ 3] [ 6] [010000] +14:21:23 [ 4] [ 12] [000050000000] +14:21:23 [ 7] [ 10] [0320072029] +14:21:23 [ 11] [ 6] [269628] +14:21:23 [ 12] [ 6] [142029] +14:21:23 [ 13] [ 4] [0320] +14:21:23 [ 14] [ 4] [4310] +14:21:23 [ 15] [ 4] [0320] +14:21:23 [ 18] [ 4] [6011] +14:21:23 [ 19] [ 3] [418] +14:21:23 [ 22] [ 3] [021] +14:21:23 [ 25] [ 2] [01] +14:21:23 [ 28] [ 9] [D00002000] +14:21:23 [ 32] [ 6] [180893] +14:21:23 [ 35] [ 37] [6688990602691204=43100061120481800000] +14:21:23 [ 37] [ 12] [507907269628] +14:21:23 [ 41] [ 8] [0369SLVL] +14:21:23 [ 42] [ 15] [999999 ] +14:21:23 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +14:21:23 [ 49] [ 3] [418] +14:21:23 [ 52] [ 16] [155C42B3938B5DBE] +14:21:23 ============================================================================ +14:21:23 + + +waiting on router queue for slot.... +14:21:23 Sending to : +14:21:23 ============================================================================ +14:21:23 Sending to : +14:21:23 ============================================================================ +14:21:23 ============================================================================ +14:21:23 Slot Id : <420> +14:21:23 Transaction Type : REQUEST +14:21:23 Received From : +14:21:23 ============================================================================ +14:21:23 FNo. Len. Field Value +14:21:23 ============================================================================ +14:21:23 [ 1] [ 4] [0200] +14:21:23 [ 2] [ 16] [6688990602691204] +14:21:23 [ 3] [ 6] [010000] +14:21:23 [ 4] [ 12] [000050000000] +14:21:23 [ 7] [ 10] [0320072029] +14:21:23 [ 11] [ 6] [269628] +14:21:23 [ 12] [ 6] [142029] +14:21:23 [ 13] [ 4] [0320] +14:21:23 [ 14] [ 4] [4310] +14:21:23 [ 15] [ 4] [0320] +14:21:23 [ 18] [ 4] [6011] +14:21:23 [ 19] [ 3] [418] +14:21:23 [ 22] [ 3] [021] +14:21:23 [ 25] [ 2] [01] +14:21:23 [ 28] [ 9] [D00002000] +14:21:23 [ 32] [ 6] [180893] +14:21:23 [ 35] [ 37] [6688990602691204=43100061120481800000] +14:21:23 [ 37] [ 12] [507907269628] +14:21:23 [ 41] [ 8] [0369SLVL] +14:21:23 [ 42] [ 15] [999999 ] +14:21:23 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +14:21:23 [ 49] [ 3] [418] +14:21:23 [ 52] [ 16] [155C42B3938B5DBE] +14:21:23 ============================================================================ +14:21:23 + + +waiting on router queue for slot.... +14:21:23 Sending to : +14:21:23 ============================================================================ +14:21:23 ============================================================================ +14:21:23 Slot Id : <420> +14:21:23 Transaction Type : REQUEST +14:21:23 Received From : +14:21:23 ============================================================================ +14:21:23 FNo. Len. Field Value +14:21:23 ============================================================================ +14:21:23 [ 1] [ 4] [0200] +14:21:23 [ 2] [ 16] [6688990602691204] +14:21:23 [ 3] [ 6] [010000] +14:21:23 [ 4] [ 12] [000050000000] +14:21:23 [ 7] [ 10] [0320072029] +14:21:23 [ 11] [ 6] [269628] +14:21:23 [ 12] [ 6] [142029] +14:21:23 [ 13] [ 4] [0320] +14:21:23 [ 14] [ 4] [4310] +14:21:23 [ 15] [ 4] [0320] +14:21:23 [ 18] [ 4] [6011] +14:21:23 [ 19] [ 3] [418] +14:21:23 [ 22] [ 3] [021] +14:21:23 [ 25] [ 2] [01] +14:21:23 [ 28] [ 9] [D00002000] +14:21:23 [ 32] [ 6] [180893] +14:21:23 [ 35] [ 37] [6688990602691204=43100061120481800000] +14:21:23 [ 37] [ 12] [507907269628] +14:21:23 [ 41] [ 8] [0369SLVL] +14:21:23 [ 42] [ 15] [999999 ] +14:21:23 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +14:21:23 [ 49] [ 3] [418] +14:21:23 [ 52] [ 16] [FC374F945705CE29] +14:21:23 ============================================================================ +14:21:23 + + +waiting on router queue for slot.... +14:21:23 Sending to : <0> +14:21:23 ============================================================================ +14:21:23 ============================================================================ +14:21:23 Slot Id : <420> +14:21:23 Transaction Type : RESPONSE +14:21:23 Received From : +14:21:23 ============================================================================ +14:21:23 FNo. Len. Field Value +14:21:23 ============================================================================ +14:21:23 [ 1] [ 4] [0210] +14:21:23 [ 2] [ 16] [6688990602691204] +14:21:23 [ 3] [ 6] [010000] +14:21:23 [ 4] [ 12] [000050000000] +14:21:23 [ 7] [ 10] [0320072029] +14:21:23 [ 11] [ 6] [269628] +14:21:23 [ 12] [ 6] [142029] +14:21:23 [ 13] [ 4] [0320] +14:21:23 [ 15] [ 4] [0320] +14:21:23 [ 18] [ 4] [6011] +14:21:23 [ 19] [ 3] [418] +14:21:23 [ 22] [ 3] [021] +14:21:23 [ 32] [ 6] [180893] +14:21:23 [ 35] [ 37] [6688990602691204=43100061120481800000] +14:21:23 [ 37] [ 12] [507907269628] +14:21:23 [ 39] [ 2] [14] +14:21:23 [ 41] [ 8] [0369SLVL] +14:21:23 [ 49] [ 3] [418] +14:21:23 ============================================================================ +14:21:23 Sending to : +14:21:23 ============================================================================ +14:21:23 + + +waiting on router queue for slot.... +14:21:24 ============================================================================ +14:21:24 Slot Id : <416> +14:21:24 Transaction Type : RESPONSE +14:21:24 Received From : +14:21:24 ============================================================================ +14:21:24 FNo. Len. Field Value +14:21:24 ============================================================================ +14:21:24 [ 1] [ 4] [0210] +14:21:24 [ 2] [ 16] [6688990103274104] +14:21:24 [ 3] [ 6] [013000] +14:21:24 [ 4] [ 12] [000050000000] +14:21:24 [ 11] [ 6] [768936] +14:21:24 [ 12] [ 6] [142116] +14:21:24 [ 15] [ 4] [0320] +14:21:24 [ 18] [ 4] [6011] +14:21:24 [ 32] [ 6] [621354] +14:21:24 [ 35] [ 37] [6688990103274104=42121231410449900000] +14:21:24 [ 37] [ 12] [507903499491] +14:21:24 [ 38] [ 6] [493753] +14:21:24 [ 39] [ 2] [00] +14:21:24 [ 41] [ 8] [06002200] +14:21:24 [ 49] [ 3] [418] +14:21:24 [ 54] [ 20] [3002418C000037335860] +14:21:24 ============================================================================ +14:21:24 Calculate Source COMM Id = 0 +14:21:24 ============================================================================ +14:21:24 + + +waiting on router queue for slot.... +14:21:24 ============================================================================ +14:21:24 Slot Id : <381> +14:21:24 Transaction Type : REQUEST +14:21:24 Received From : +14:21:24 ============================================================================ +14:21:24 FNo. Len. Field Value +14:21:24 ============================================================================ +14:21:24 [ 1] [ 4] [0800] +14:21:24 [ 2] [ 5] [02531] +14:21:24 [ 3] [ 6] [579148] +14:21:24 [ 7] [ 10] [0320072124] +14:21:24 [ 11] [ 6] [807245] +14:21:24 [ 15] [ 10] [0320072124] +14:21:24 [ 37] [ 11] [57914807245] +14:21:24 [ 70] [ 3] [001] +14:21:24 ============================================================================ +14:21:24 + + +waiting on router queue for slot.... +14:21:24 ============================================================================ +14:21:24 Slot Id : <381> +14:21:24 Transaction Type : RESPONSE +14:21:24 Received From : +14:21:24 ============================================================================ +14:21:24 FNo. Len. Field Value +14:21:24 ============================================================================ +14:21:24 [ 1] [ 4] [0810] +14:21:24 [ 7] [ 10] [0320072124] +14:21:24 [ 11] [ 6] [807245] +14:21:24 [ 15] [ 4] [0320] +14:21:24 [ 37] [ 12] [57914807245] +14:21:24 [ 39] [ 2] [00] +14:21:24 [ 70] [ 3] [001] +14:21:24 ============================================================================ +14:21:24 Sending to : +14:21:24 ============================================================================ +14:21:24 + + +waiting on router queue for slot.... +14:21:25 ============================================================================ +14:21:25 Slot Id : <420> +14:21:25 Transaction Type : RESPONSE +14:21:25 Received From : +14:21:25 ============================================================================ +14:21:25 FNo. Len. Field Value +14:21:25 ============================================================================ +14:21:25 [ 1] [ 4] [0210] +14:21:25 [ 2] [ 16] [6688990602691204] +14:21:25 [ 3] [ 6] [010000] +14:21:25 [ 4] [ 12] [000050000000] +14:21:25 [ 7] [ 10] [0320072029] +14:21:25 [ 11] [ 6] [269628] +14:21:25 [ 12] [ 6] [142029] +14:21:25 [ 13] [ 4] [0320] +14:21:25 [ 15] [ 4] [0320] +14:21:25 [ 18] [ 4] [6011] +14:21:25 [ 19] [ 3] [418] +14:21:25 [ 22] [ 3] [021] +14:21:25 [ 32] [ 6] [180893] +14:21:25 [ 35] [ 37] [6688990602691204=43100061120481800000] +14:21:25 [ 37] [ 12] [507907269628] +14:21:25 [ 39] [ 2] [14] +14:21:25 [ 41] [ 8] [0369SLVL] +14:21:25 [ 49] [ 3] [418] +14:21:25 ============================================================================ +14:21:25 Calculate Source COMM Id = 2 +14:21:25 ============================================================================ +14:21:25 + + +waiting on router queue for slot.... +14:21:30 ============================================================================ +14:21:30 Slot Id : <415> +14:21:30 Transaction Type : REQUEST +14:21:30 Received From : +14:21:30 ============================================================================ +14:21:30 FNo. Len. Field Value +14:21:30 ============================================================================ +14:21:30 [ 1] [ 4] [0200] +14:21:30 [ 2] [ 16] [6213544001360608] +14:21:30 [ 3] [ 6] [010000] +14:21:30 [ 4] [ 12] [000010000000] +14:21:30 [ 7] [ 10] [0320141920] +14:21:30 [ 11] [ 6] [948356] +14:21:30 [ 12] [ 6] [141920] +14:21:30 [ 13] [ 4] [0320] +14:21:30 [ 15] [ 4] [0320] +14:21:30 [ 18] [ 4] [6011] +14:21:30 [ 19] [ 3] [418] +14:21:30 [ 22] [ 3] [021] +14:21:30 [ 25] [ 2] [01] +14:21:30 [ 28] [ 9] [D00002000] +14:21:30 [ 32] [ 6] [668899] +14:21:30 [ 35] [ 32] [6213544001360608=491212016060492] +14:21:30 [ 37] [ 12] [507902093341] +14:21:30 [ 41] [ 8] [03020021] +14:21:30 [ 42] [ 15] [APT ] +14:21:30 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +14:21:30 [ 49] [ 3] [418] +14:21:30 [ 52] [ 16] [10F219BCA1B01DCE] +14:21:30 ============================================================================ +14:21:30 + + +waiting on router queue for slot.... +14:21:30 Sending to : +14:21:30 ============================================================================ +14:21:30 Sending to : +14:21:30 ============================================================================ +14:21:30 ============================================================================ +14:21:30 Slot Id : <415> +14:21:30 Transaction Type : REQUEST +14:21:30 Received From : +14:21:30 ============================================================================ +14:21:30 FNo. Len. Field Value +14:21:30 ============================================================================ +14:21:30 [ 1] [ 4] [0200] +14:21:30 [ 2] [ 16] [6213544001360608] +14:21:30 [ 3] [ 6] [010000] +14:21:30 [ 4] [ 12] [000010000000] +14:21:30 [ 7] [ 10] [0320141920] +14:21:30 [ 11] [ 6] [948356] +14:21:30 [ 12] [ 6] [141920] +14:21:30 [ 13] [ 4] [0320] +14:21:30 [ 15] [ 4] [0320] +14:21:30 [ 18] [ 4] [6011] +14:21:30 [ 19] [ 3] [418] +14:21:30 [ 22] [ 3] [021] +14:21:30 [ 25] [ 2] [01] +14:21:30 [ 28] [ 9] [D00002000] +14:21:30 [ 32] [ 6] [668899] +14:21:30 [ 35] [ 32] [6213544001360608=491212016060492] +14:21:30 [ 37] [ 12] [507902093341] +14:21:30 [ 41] [ 8] [03020021] +14:21:30 [ 42] [ 15] [APT ] +14:21:30 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +14:21:30 [ 49] [ 3] [418] +14:21:30 [ 52] [ 16] [10F219BCA1B01DCE] +14:21:30 ============================================================================ +14:21:30 + + +waiting on router queue for slot.... +14:21:30 Sending to : +14:21:30 ============================================================================ +14:21:30 ============================================================================ +14:21:30 Slot Id : <415> +14:21:30 Transaction Type : REQUEST +14:21:30 Received From : +14:21:30 ============================================================================ +14:21:30 FNo. Len. Field Value +14:21:30 ============================================================================ +14:21:30 [ 1] [ 4] [0200] +14:21:30 [ 2] [ 16] [6213544001360608] +14:21:30 [ 3] [ 6] [010000] +14:21:30 [ 4] [ 12] [000010000000] +14:21:30 [ 7] [ 10] [0320141920] +14:21:30 [ 11] [ 6] [948356] +14:21:30 [ 12] [ 6] [141920] +14:21:30 [ 13] [ 4] [0320] +14:21:30 [ 15] [ 4] [0320] +14:21:30 [ 18] [ 4] [6011] +14:21:30 [ 19] [ 3] [418] +14:21:30 [ 22] [ 3] [021] +14:21:30 [ 25] [ 2] [01] +14:21:30 [ 28] [ 9] [D00002000] +14:21:30 [ 32] [ 6] [668899] +14:21:30 [ 35] [ 32] [6213544001360608=491212016060492] +14:21:30 [ 37] [ 12] [507902093341] +14:21:30 [ 41] [ 8] [03020021] +14:21:30 [ 42] [ 15] [APT ] +14:21:30 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +14:21:30 [ 49] [ 3] [418] +14:21:30 [ 52] [ 16] [4477F373EC0FCD8D] +14:21:30 ============================================================================ +14:21:30 + + +waiting on router queue for slot.... +14:21:30 Sending to : <0> +14:21:30 ============================================================================ +14:21:31 ============================================================================ +14:21:31 Slot Id : <415> +14:21:31 Transaction Type : RESPONSE +14:21:31 Received From : +14:21:31 ============================================================================ +14:21:31 FNo. Len. Field Value +14:21:31 ============================================================================ +14:21:31 [ 1] [ 4] [0210] +14:21:31 [ 2] [ 16] [6213544001360608] +14:21:31 [ 3] [ 6] [010000] +14:21:31 [ 4] [ 12] [000010000000] +14:21:31 [ 7] [ 10] [0320141920] +14:21:31 [ 11] [ 6] [948356] +14:21:31 [ 12] [ 6] [141920] +14:21:31 [ 13] [ 4] [0320] +14:21:31 [ 15] [ 4] [0320] +14:21:31 [ 18] [ 4] [6011] +14:21:31 [ 19] [ 3] [418] +14:21:31 [ 32] [ 6] [668899] +14:21:31 [ 35] [ 32] [6213544001360608=491212016060492] +14:21:31 [ 37] [ 12] [507902093341] +14:21:31 [ 38] [ 6] [071169] +14:21:31 [ 39] [ 2] [00] +14:21:31 [ 41] [ 8] [03020021] +14:21:31 [ 49] [ 3] [418] +14:21:31 [ 54] [ 40] [0001418C0000050625770002418C000005062577] +14:21:31 ============================================================================ +14:21:31 Sending to : +14:21:31 ============================================================================ +14:21:31 + + +waiting on router queue for slot.... +14:21:32 ============================================================================ +14:21:32 Slot Id : <415> +14:21:32 Transaction Type : RESPONSE +14:21:32 Received From : +14:21:32 ============================================================================ +14:21:32 FNo. Len. Field Value +14:21:32 ============================================================================ +14:21:32 [ 1] [ 4] [0210] +14:21:32 [ 2] [ 16] [6213544001360608] +14:21:32 [ 3] [ 6] [010000] +14:21:32 [ 4] [ 12] [000010000000] +14:21:32 [ 7] [ 10] [0320141920] +14:21:32 [ 11] [ 6] [948356] +14:21:32 [ 12] [ 6] [141920] +14:21:32 [ 13] [ 4] [0320] +14:21:32 [ 15] [ 4] [0320] +14:21:32 [ 18] [ 4] [6011] +14:21:32 [ 19] [ 3] [418] +14:21:32 [ 32] [ 6] [668899] +14:21:32 [ 35] [ 32] [6213544001360608=491212016060492] +14:21:32 [ 37] [ 12] [507902093341] +14:21:32 [ 38] [ 6] [071169] +14:21:32 [ 39] [ 2] [00] +14:21:32 [ 41] [ 8] [03020021] +14:21:32 [ 49] [ 3] [418] +14:21:32 [ 54] [ 40] [0001418C0000050625770002418C000005062577] +14:21:32 ============================================================================ +14:21:32 Calculate Source COMM Id = 4 +14:21:32 ============================================================================ +14:21:32 + + +waiting on router queue for slot.... +14:21:37 ============================================================================ +14:21:37 Slot Id : <401> +14:21:37 Transaction Type : REQUEST +14:21:37 Received From : +14:21:37 ============================================================================ +14:21:37 FNo. Len. Field Value +14:21:37 ============================================================================ +14:21:37 [ 1] [ 4] [0800] +14:21:37 [ 7] [ 10] [0320072044] +14:21:37 [ 11] [ 6] [156764] +14:21:37 [ 70] [ 3] [301] +14:21:37 ============================================================================ +14:21:37 + + +waiting on router queue for slot.... +14:21:37 Sending to : +14:21:37 ============================================================================ +14:21:37 ============================================================================ +14:21:37 Slot Id : <401> +14:21:37 Transaction Type : RESPONSE +14:21:37 Received From : +14:21:37 ============================================================================ +14:21:37 FNo. Len. Field Value +14:21:37 ============================================================================ +14:21:37 [ 1] [ 4] [0810] +14:21:37 [ 7] [ 10] [0320072044] +14:21:37 [ 11] [ 6] [156764] +14:21:37 [ 39] [ 2] [00] +14:21:37 [ 70] [ 3] [301] +14:21:37 ============================================================================ +14:21:37 Calculate Source COMM Id = 2 +14:21:37 ============================================================================ +14:21:37 + + +waiting on router queue for slot.... +14:21:44 ============================================================================ +14:21:44 Slot Id : <425> +14:21:44 Transaction Type : REQUEST +14:21:44 Received From : +14:21:44 ============================================================================ +14:21:44 FNo. Len. Field Value +14:21:44 ============================================================================ +14:21:44 [ 1] [ 4] [0200] +14:21:44 [ 2] [ 16] [6688990030018756] +14:21:44 [ 3] [ 6] [303000] +14:21:44 [ 4] [ 12] [000000000000] +14:21:44 [ 7] [ 10] [0320142140] +14:21:44 [ 11] [ 6] [769010] +14:21:44 [ 12] [ 6] [142140] +14:21:44 [ 13] [ 4] [0320] +14:21:44 [ 15] [ 4] [0320] +14:21:44 [ 18] [ 4] [6011] +14:21:44 [ 22] [ 3] [900] +14:21:44 [ 25] [ 2] [02] +14:21:44 [ 28] [ 9] [D00000000] +14:21:44 [ 32] [ 6] [621354] +14:21:44 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:21:44 [ 37] [ 12] [507904660730] +14:21:44 [ 41] [ 8] [17001100] +14:21:44 [ 42] [ 15] [NATIVE ] +14:21:44 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:21:44 [ 49] [ 3] [418] +14:21:44 [ 52] [ 16] [14CBE7654C6164F4] +14:21:44 ============================================================================ +14:21:44 + + +waiting on router queue for slot.... +14:21:44 Sending to : +14:21:44 ============================================================================ +14:21:44 Sending to : +14:21:44 ============================================================================ +14:21:45 ============================================================================ +14:21:45 Slot Id : <425> +14:21:45 Transaction Type : REQUEST +14:21:45 Received From : +14:21:45 ============================================================================ +14:21:45 FNo. Len. Field Value +14:21:45 ============================================================================ +14:21:45 [ 1] [ 4] [0200] +14:21:45 [ 2] [ 16] [6688990030018756] +14:21:45 [ 3] [ 6] [303000] +14:21:45 [ 4] [ 12] [000000000000] +14:21:45 [ 7] [ 10] [0320142140] +14:21:45 [ 11] [ 6] [769010] +14:21:45 [ 12] [ 6] [142140] +14:21:45 [ 13] [ 4] [0320] +14:21:45 [ 15] [ 4] [0320] +14:21:45 [ 18] [ 4] [6011] +14:21:45 [ 22] [ 3] [900] +14:21:45 [ 25] [ 2] [02] +14:21:45 [ 28] [ 9] [D00000000] +14:21:45 [ 32] [ 6] [621354] +14:21:45 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:21:45 [ 37] [ 12] [507904660730] +14:21:45 [ 41] [ 8] [17001100] +14:21:45 [ 42] [ 15] [NATIVE ] +14:21:45 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:21:45 [ 49] [ 3] [418] +14:21:45 [ 52] [ 16] [14CBE7654C6164F4] +14:21:45 ============================================================================ +14:21:45 + + +waiting on router queue for slot.... +14:21:45 Sending to : +14:21:45 ============================================================================ +14:21:45 ============================================================================ +14:21:45 Slot Id : <425> +14:21:45 Transaction Type : REQUEST +14:21:45 Received From : +14:21:45 ============================================================================ +14:21:45 FNo. Len. Field Value +14:21:45 ============================================================================ +14:21:45 [ 1] [ 4] [0200] +14:21:45 [ 2] [ 16] [6688990030018756] +14:21:45 [ 3] [ 6] [303000] +14:21:45 [ 4] [ 12] [000000000000] +14:21:45 [ 7] [ 10] [0320142140] +14:21:45 [ 11] [ 6] [769010] +14:21:45 [ 12] [ 6] [142140] +14:21:45 [ 13] [ 4] [0320] +14:21:45 [ 15] [ 4] [0320] +14:21:45 [ 18] [ 4] [6011] +14:21:45 [ 22] [ 3] [900] +14:21:45 [ 25] [ 2] [02] +14:21:45 [ 28] [ 9] [D00000000] +14:21:45 [ 32] [ 6] [621354] +14:21:45 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:21:45 [ 37] [ 12] [507904660730] +14:21:45 [ 41] [ 8] [17001100] +14:21:45 [ 42] [ 15] [NATIVE ] +14:21:45 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:21:45 [ 49] [ 3] [418] +14:21:45 [ 52] [ 16] [C170D77DCA82B481] +14:21:45 ============================================================================ +14:21:45 + + +waiting on router queue for slot.... +14:21:45 Sending to : <4> +14:21:45 ============================================================================ +14:21:46 ============================================================================ +14:21:46 Slot Id : <425> +14:21:46 Transaction Type : RESPONSE +14:21:46 Received From : +14:21:46 ============================================================================ +14:21:46 FNo. Len. Field Value +14:21:46 ============================================================================ +14:21:46 [ 1] [ 4] [0210] +14:21:46 [ 2] [ 16] [6688990030018756] +14:21:46 [ 3] [ 6] [303000] +14:21:46 [ 4] [ 12] [000000000000] +14:21:46 [ 11] [ 6] [769010] +14:21:46 [ 12] [ 6] [142140] +14:21:46 [ 15] [ 4] [0320] +14:21:46 [ 18] [ 4] [6011] +14:21:46 [ 32] [ 6] [621354] +14:21:46 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:21:46 [ 37] [ 12] [507904660730] +14:21:46 [ 38] [ 6] [566208] +14:21:46 [ 39] [ 2] [00] +14:21:46 [ 41] [ 8] [17001100] +14:21:46 [ 49] [ 3] [418] +14:21:46 [ 54] [ 20] [3002418C000820000000] +14:21:46 ============================================================================ +14:21:46 Sending to : +14:21:46 ============================================================================ +14:21:46 + + +waiting on router queue for slot.... +14:21:47 ============================================================================ +14:21:47 Slot Id : <425> +14:21:47 Transaction Type : RESPONSE +14:21:47 Received From : +14:21:47 ============================================================================ +14:21:47 FNo. Len. Field Value +14:21:47 ============================================================================ +14:21:47 [ 1] [ 4] [0210] +14:21:47 [ 2] [ 16] [6688990030018756] +14:21:47 [ 3] [ 6] [303000] +14:21:47 [ 4] [ 12] [000000000000] +14:21:47 [ 11] [ 6] [769010] +14:21:47 [ 12] [ 6] [142140] +14:21:47 [ 15] [ 4] [0320] +14:21:47 [ 18] [ 4] [6011] +14:21:47 [ 32] [ 6] [621354] +14:21:47 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:21:47 [ 37] [ 12] [507904660730] +14:21:47 [ 38] [ 6] [566208] +14:21:47 [ 39] [ 2] [00] +14:21:47 [ 41] [ 8] [17001100] +14:21:47 [ 49] [ 3] [418] +14:21:47 [ 54] [ 20] [3002418C000820000000] +14:21:47 ============================================================================ +14:21:47 Calculate Source COMM Id = 0 +14:21:47 ============================================================================ +14:21:47 + + +waiting on router queue for slot.... +14:21:48 ============================================================================ +14:21:48 Slot Id : <398> +14:21:48 Transaction Type : REQUEST +14:21:48 Received From : +14:21:48 ============================================================================ +14:21:48 FNo. Len. Field Value +14:21:48 ============================================================================ +14:21:48 [ 1] [ 4] [0800] +14:21:48 [ 7] [ 10] [0320072055] +14:21:48 [ 11] [ 6] [156765] +14:21:48 [ 70] [ 3] [301] +14:21:48 ============================================================================ +14:21:48 + + +waiting on router queue for slot.... +14:21:48 Sending to : +14:21:48 ============================================================================ +14:21:48 ============================================================================ +14:21:48 Slot Id : <398> +14:21:48 Transaction Type : RESPONSE +14:21:48 Received From : +14:21:48 ============================================================================ +14:21:48 FNo. Len. Field Value +14:21:48 ============================================================================ +14:21:48 [ 1] [ 4] [0810] +14:21:48 [ 7] [ 10] [0320072055] +14:21:48 [ 11] [ 6] [156765] +14:21:48 [ 39] [ 2] [00] +14:21:48 [ 70] [ 3] [301] +14:21:48 ============================================================================ +14:21:48 Calculate Source COMM Id = 2 +14:21:48 ============================================================================ +14:21:48 + + +waiting on router queue for slot.... +14:21:48 ============================================================================ +14:21:48 Slot Id : <433> +14:21:48 Transaction Type : REQUEST +14:21:48 Received From : +14:21:48 ============================================================================ +14:21:48 FNo. Len. Field Value +14:21:48 ============================================================================ +14:21:48 [ 1] [ 4] [0200] +14:21:48 [ 2] [ 16] [6688990104022007] +14:21:48 [ 3] [ 6] [302000] +14:21:48 [ 7] [ 10] [0320072055] +14:21:48 [ 11] [ 6] [269630] +14:21:48 [ 12] [ 6] [142055] +14:21:48 [ 13] [ 4] [0320] +14:21:48 [ 14] [ 4] [4302] +14:21:48 [ 15] [ 4] [0320] +14:21:48 [ 18] [ 4] [6011] +14:21:48 [ 19] [ 3] [418] +14:21:48 [ 22] [ 3] [021] +14:21:48 [ 25] [ 2] [01] +14:21:48 [ 32] [ 6] [180893] +14:21:48 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:21:48 [ 37] [ 12] [507907269630] +14:21:48 [ 41] [ 8] [0421BKPH] +14:21:48 [ 42] [ 15] [999999 ] +14:21:48 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:21:48 [ 49] [ 3] [418] +14:21:48 [ 52] [ 16] [473334DCBE911001] +14:21:48 ============================================================================ +14:21:48 + + +waiting on router queue for slot.... +14:21:48 Sending to : +14:21:48 ============================================================================ +14:21:48 Sending to : +14:21:48 ============================================================================ +14:21:48 ============================================================================ +14:21:48 Slot Id : <433> +14:21:48 Transaction Type : REQUEST +14:21:48 Received From : +14:21:48 ============================================================================ +14:21:48 FNo. Len. Field Value +14:21:48 ============================================================================ +14:21:48 [ 1] [ 4] [0200] +14:21:48 [ 2] [ 16] [6688990104022007] +14:21:48 [ 3] [ 6] [302000] +14:21:48 [ 7] [ 10] [0320072055] +14:21:48 [ 11] [ 6] [269630] +14:21:48 [ 12] [ 6] [142055] +14:21:48 [ 13] [ 4] [0320] +14:21:48 [ 14] [ 4] [4302] +14:21:48 [ 15] [ 4] [0320] +14:21:48 [ 18] [ 4] [6011] +14:21:48 [ 19] [ 3] [418] +14:21:48 [ 22] [ 3] [021] +14:21:48 [ 25] [ 2] [01] +14:21:48 [ 32] [ 6] [180893] +14:21:48 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:21:48 [ 37] [ 12] [507907269630] +14:21:48 [ 41] [ 8] [0421BKPH] +14:21:48 [ 42] [ 15] [999999 ] +14:21:48 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:21:48 [ 49] [ 3] [418] +14:21:48 [ 52] [ 16] [473334DCBE911001] +14:21:48 ============================================================================ +14:21:48 + + +waiting on router queue for slot.... +14:21:48 Sending to : +14:21:48 ============================================================================ +14:21:48 ============================================================================ +14:21:48 Slot Id : <433> +14:21:48 Transaction Type : REQUEST +14:21:48 Received From : +14:21:48 ============================================================================ +14:21:48 FNo. Len. Field Value +14:21:48 ============================================================================ +14:21:48 [ 1] [ 4] [0200] +14:21:48 [ 2] [ 16] [6688990104022007] +14:21:48 [ 3] [ 6] [302000] +14:21:48 [ 7] [ 10] [0320072055] +14:21:48 [ 11] [ 6] [269630] +14:21:48 [ 12] [ 6] [142055] +14:21:48 [ 13] [ 4] [0320] +14:21:48 [ 14] [ 4] [4302] +14:21:48 [ 15] [ 4] [0320] +14:21:48 [ 18] [ 4] [6011] +14:21:48 [ 19] [ 3] [418] +14:21:48 [ 22] [ 3] [021] +14:21:48 [ 25] [ 2] [01] +14:21:48 [ 32] [ 6] [180893] +14:21:48 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:21:48 [ 37] [ 12] [507907269630] +14:21:48 [ 41] [ 8] [0421BKPH] +14:21:48 [ 42] [ 15] [999999 ] +14:21:48 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:21:48 [ 49] [ 3] [418] +14:21:48 [ 52] [ 16] [3F768CEE6B61742D] +14:21:48 ============================================================================ +14:21:48 + + +waiting on router queue for slot.... +14:21:48 Sending to : <0> +14:21:48 ============================================================================ +14:21:49 ============================================================================ +14:21:49 Slot Id : <433> +14:21:49 Transaction Type : RESPONSE +14:21:49 Received From : +14:21:49 ============================================================================ +14:21:49 FNo. Len. Field Value +14:21:49 ============================================================================ +14:21:49 [ 1] [ 4] [0210] +14:21:49 [ 2] [ 16] [6688990104022007] +14:21:49 [ 3] [ 6] [302000] +14:21:49 [ 4] [ 12] [000000000000] +14:21:49 [ 7] [ 10] [0320072055] +14:21:49 [ 11] [ 6] [269630] +14:21:49 [ 12] [ 6] [142055] +14:21:49 [ 13] [ 4] [0320] +14:21:49 [ 15] [ 4] [0320] +14:21:49 [ 18] [ 4] [6011] +14:21:49 [ 19] [ 3] [418] +14:21:49 [ 22] [ 3] [021] +14:21:49 [ 32] [ 6] [180893] +14:21:49 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:21:49 [ 37] [ 12] [507907269630] +14:21:49 [ 39] [ 2] [14] +14:21:49 [ 41] [ 8] [0421BKPH] +14:21:49 [ 49] [ 3] [418] +14:21:49 ============================================================================ +14:21:49 Sending to : +14:21:49 ============================================================================ +14:21:49 + + +waiting on router queue for slot.... +14:21:50 ============================================================================ +14:21:50 Slot Id : <433> +14:21:50 Transaction Type : RESPONSE +14:21:50 Received From : +14:21:50 ============================================================================ +14:21:50 FNo. Len. Field Value +14:21:50 ============================================================================ +14:21:50 [ 1] [ 4] [0210] +14:21:50 [ 2] [ 16] [6688990104022007] +14:21:50 [ 3] [ 6] [302000] +14:21:50 [ 4] [ 12] [000000000000] +14:21:50 [ 7] [ 10] [0320072055] +14:21:50 [ 11] [ 6] [269630] +14:21:50 [ 12] [ 6] [142055] +14:21:50 [ 13] [ 4] [0320] +14:21:50 [ 15] [ 4] [0320] +14:21:50 [ 18] [ 4] [6011] +14:21:50 [ 19] [ 3] [418] +14:21:50 [ 22] [ 3] [021] +14:21:50 [ 32] [ 6] [180893] +14:21:50 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:21:50 [ 37] [ 12] [507907269630] +14:21:50 [ 39] [ 2] [14] +14:21:50 [ 41] [ 8] [0421BKPH] +14:21:50 [ 49] [ 3] [418] +14:21:50 ============================================================================ +14:21:50 Calculate Source COMM Id = 2 +14:21:50 ============================================================================ +14:21:50 + + +waiting on router queue for slot.... +14:21:58 ============================================================================ +14:21:58 Slot Id : <388> +14:21:58 Transaction Type : REQUEST +14:21:58 Received From : +14:21:58 ============================================================================ +14:21:58 FNo. Len. Field Value +14:21:58 ============================================================================ +14:21:58 [ 1] [ 4] [0200] +14:21:58 [ 2] [ 16] [1808930100004555] +14:21:58 [ 3] [ 6] [011000] +14:21:58 [ 4] [ 12] [000100000000] +14:21:58 [ 7] [ 10] [0320142154] +14:21:58 [ 11] [ 6] [769056] +14:21:58 [ 12] [ 6] [142154] +14:21:58 [ 13] [ 4] [0320] +14:21:58 [ 15] [ 4] [0320] +14:21:58 [ 18] [ 4] [6011] +14:21:58 [ 22] [ 3] [900] +14:21:58 [ 25] [ 2] [02] +14:21:58 [ 28] [ 9] [D00002000] +14:21:58 [ 32] [ 6] [621354] +14:21:58 [ 35] [ 27] [1808930100004555=1803500795] +14:21:58 [ 37] [ 12] [507903675619] +14:21:58 [ 41] [ 8] [16002000] +14:21:58 [ 42] [ 15] [NATIVE ] +14:21:58 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +14:21:58 [ 49] [ 3] [418] +14:21:58 [ 52] [ 16] [E51F2EFE13EEB383] +14:21:58 ============================================================================ +14:21:58 + + +waiting on router queue for slot.... +14:21:58 Sending to : +14:21:58 ============================================================================ +14:21:58 Sending to : +14:21:58 ============================================================================ +14:21:59 ============================================================================ +14:21:59 Slot Id : <388> +14:21:59 Transaction Type : REQUEST +14:21:59 Received From : +14:21:59 ============================================================================ +14:21:59 FNo. Len. Field Value +14:21:59 ============================================================================ +14:21:59 [ 1] [ 4] [0200] +14:21:59 [ 2] [ 16] [1808930100004555] +14:21:59 [ 3] [ 6] [011000] +14:21:59 [ 4] [ 12] [000100000000] +14:21:59 [ 7] [ 10] [0320142154] +14:21:59 [ 11] [ 6] [769056] +14:21:59 [ 12] [ 6] [142154] +14:21:59 [ 13] [ 4] [0320] +14:21:59 [ 15] [ 4] [0320] +14:21:59 [ 18] [ 4] [6011] +14:21:59 [ 22] [ 3] [900] +14:21:59 [ 25] [ 2] [02] +14:21:59 [ 28] [ 9] [D00002000] +14:21:59 [ 32] [ 6] [621354] +14:21:59 [ 35] [ 27] [1808930100004555=1803500795] +14:21:59 [ 37] [ 12] [507903675619] +14:21:59 [ 41] [ 8] [16002000] +14:21:59 [ 42] [ 15] [NATIVE ] +14:21:59 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +14:21:59 [ 49] [ 3] [418] +14:21:59 [ 52] [ 16] [E51F2EFE13EEB383] +14:21:59 ============================================================================ +14:21:59 + + +waiting on router queue for slot.... +14:21:59 Sending to : +14:21:59 ============================================================================ +14:21:59 ============================================================================ +14:21:59 Slot Id : <388> +14:21:59 Transaction Type : REQUEST +14:21:59 Received From : +14:21:59 ============================================================================ +14:21:59 FNo. Len. Field Value +14:21:59 ============================================================================ +14:21:59 [ 1] [ 4] [0200] +14:21:59 [ 2] [ 16] [1808930100004555] +14:21:59 [ 3] [ 6] [011000] +14:21:59 [ 4] [ 12] [000100000000] +14:21:59 [ 7] [ 10] [0320142154] +14:21:59 [ 11] [ 6] [769056] +14:21:59 [ 12] [ 6] [142154] +14:21:59 [ 13] [ 4] [0320] +14:21:59 [ 15] [ 4] [0320] +14:21:59 [ 18] [ 4] [6011] +14:21:59 [ 22] [ 3] [900] +14:21:59 [ 25] [ 2] [02] +14:21:59 [ 28] [ 9] [D00002000] +14:21:59 [ 32] [ 6] [621354] +14:21:59 [ 35] [ 27] [1808930100004555=1803500795] +14:21:59 [ 37] [ 12] [507903675619] +14:21:59 [ 41] [ 8] [16002000] +14:21:59 [ 42] [ 15] [NATIVE ] +14:21:59 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +14:21:59 [ 49] [ 3] [418] +14:21:59 [ 52] [ 16] [919A35FFB01C5A40] +14:21:59 ============================================================================ +14:21:59 + + +waiting on router queue for slot.... +14:21:59 Sending to : <2> +14:21:59 ============================================================================ +14:22:01 ============================================================================ +14:22:01 Slot Id : <388> +14:22:01 Transaction Type : RESPONSE +14:22:01 Received From : +14:22:01 ============================================================================ +14:22:01 FNo. Len. Field Value +14:22:01 ============================================================================ +14:22:01 [ 1] [ 4] [0210] +14:22:01 [ 2] [ 16] [1808930100004555] +14:22:01 [ 3] [ 6] [011000] +14:22:01 [ 4] [ 12] [000100000000] +14:22:01 [ 6] [ 12] [000100000000] +14:22:01 [ 7] [ 10] [0320142154] +14:22:01 [ 11] [ 6] [769056] +14:22:01 [ 12] [ 6] [142154] +14:22:01 [ 13] [ 4] [0320] +14:22:01 [ 18] [ 4] [6011] +14:22:01 [ 19] [ 3] [418] +14:22:01 [ 22] [ 3] [021] +14:22:01 [ 32] [ 6] [621354] +14:22:01 [ 35] [ 27] [1808930100004555=1803500795] +14:22:01 [ 37] [ 12] [507903675619] +14:22:01 [ 38] [ 6] [769056] +14:22:01 [ 39] [ 2] [00] +14:22:01 [ 41] [ 8] [16002000] +14:22:01 [ 49] [ 3] [418] +14:22:01 [ 52] [ 16] [919A35FFB01C5A40] +14:22:01 [ 54] [ 20] [1001418C000298355500] +14:22:01 ============================================================================ +14:22:01 Sending to : +14:22:01 ============================================================================ +14:22:01 + + +waiting on router queue for slot.... +14:22:02 ============================================================================ +14:22:02 Slot Id : <388> +14:22:02 Transaction Type : RESPONSE +14:22:02 Received From : +14:22:02 ============================================================================ +14:22:02 FNo. Len. Field Value +14:22:02 ============================================================================ +14:22:02 [ 1] [ 4] [0210] +14:22:02 [ 2] [ 16] [1808930100004555] +14:22:02 [ 3] [ 6] [011000] +14:22:02 [ 4] [ 12] [000100000000] +14:22:02 [ 6] [ 12] [000100000000] +14:22:02 [ 7] [ 10] [0320142154] +14:22:02 [ 11] [ 6] [769056] +14:22:02 [ 12] [ 6] [142154] +14:22:02 [ 13] [ 4] [0320] +14:22:02 [ 18] [ 4] [6011] +14:22:02 [ 19] [ 3] [418] +14:22:02 [ 22] [ 3] [021] +14:22:02 [ 32] [ 6] [621354] +14:22:02 [ 35] [ 27] [1808930100004555=1803500795] +14:22:02 [ 37] [ 12] [507903675619] +14:22:02 [ 38] [ 6] [769056] +14:22:02 [ 39] [ 2] [00] +14:22:02 [ 41] [ 8] [16002000] +14:22:02 [ 49] [ 3] [418] +14:22:02 [ 52] [ 16] [919A35FFB01C5A40] +14:22:02 [ 54] [ 20] [1001418C000298355500] +14:22:02 ============================================================================ +14:22:02 Calculate Source COMM Id = 0 +14:22:02 ============================================================================ +14:22:02 + + +waiting on router queue for slot.... +14:22:09 ============================================================================ +14:22:09 Slot Id : <364> +14:22:09 Transaction Type : REQUEST +14:22:09 Received From : +14:22:09 ============================================================================ +14:22:09 FNo. Len. Field Value +14:22:09 ============================================================================ +14:22:09 [ 1] [ 4] [0800] +14:22:09 [ 7] [ 10] [0320213357] +14:22:09 [ 11] [ 6] [143357] +14:22:09 [ 37] [ 12] [57914143357] +14:22:09 [ 70] [ 3] [301] +14:22:09 ============================================================================ +14:22:09 + + +waiting on router queue for slot.... +14:22:09 Sending to : +14:22:09 ============================================================================ +14:22:09 ============================================================================ +14:22:09 Slot Id : <364> +14:22:09 Transaction Type : RESPONSE +14:22:09 Received From : +14:22:09 ============================================================================ +14:22:09 FNo. Len. Field Value +14:22:09 ============================================================================ +14:22:09 [ 1] [ 4] [0810] +14:22:09 [ 7] [ 10] [0320213357] +14:22:09 [ 11] [ 6] [143357] +14:22:09 [ 37] [ 12] [579141433570] +14:22:09 [ 39] [ 2] [00] +14:22:09 [ 70] [ 3] [810] +14:22:09 ============================================================================ +14:22:09 Calculate Source COMM Id = 6 +14:22:09 ============================================================================ +14:22:09 + + +waiting on router queue for slot.... +14:22:11 ============================================================================ +14:22:11 Slot Id : <367> +14:22:11 Transaction Type : REQUEST +14:22:11 Received From : +14:22:11 ============================================================================ +14:22:11 FNo. Len. Field Value +14:22:11 ============================================================================ +14:22:11 [ 1] [ 4] [0800] +14:22:11 [ 7] [ 10] [0320072117] +14:22:11 [ 11] [ 6] [156766] +14:22:11 [ 70] [ 3] [301] +14:22:11 ============================================================================ +14:22:11 + + +waiting on router queue for slot.... +14:22:11 Sending to : +14:22:11 ============================================================================ +14:22:11 ============================================================================ +14:22:11 Slot Id : <367> +14:22:11 Transaction Type : RESPONSE +14:22:11 Received From : +14:22:11 ============================================================================ +14:22:11 FNo. Len. Field Value +14:22:11 ============================================================================ +14:22:11 [ 1] [ 4] [0810] +14:22:11 [ 7] [ 10] [0320072117] +14:22:11 [ 11] [ 6] [156766] +14:22:11 [ 39] [ 2] [00] +14:22:11 [ 70] [ 3] [301] +14:22:11 ============================================================================ +14:22:11 Calculate Source COMM Id = 2 +14:22:11 ============================================================================ +14:22:11 + + +waiting on router queue for slot.... +14:22:11 ============================================================================ +14:22:11 Slot Id : <430> +14:22:11 Transaction Type : REQUEST +14:22:11 Received From : +14:22:11 ============================================================================ +14:22:11 FNo. Len. Field Value +14:22:11 ============================================================================ +14:22:11 [ 1] [ 4] [0200] +14:22:11 [ 2] [ 16] [6688990108267806] +14:22:11 [ 3] [ 6] [302000] +14:22:11 [ 4] [ 12] [000000000000] +14:22:11 [ 7] [ 10] [0320142206] +14:22:11 [ 11] [ 6] [769102] +14:22:11 [ 12] [ 6] [142206] +14:22:11 [ 13] [ 4] [0320] +14:22:11 [ 15] [ 4] [0320] +14:22:11 [ 18] [ 4] [6011] +14:22:11 [ 22] [ 3] [900] +14:22:11 [ 25] [ 2] [02] +14:22:11 [ 28] [ 9] [D00000000] +14:22:11 [ 32] [ 6] [621354] +14:22:11 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:22:11 [ 37] [ 12] [507904635700] +14:22:11 [ 41] [ 8] [17000800] +14:22:11 [ 42] [ 15] [NATIVE ] +14:22:11 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:22:11 [ 49] [ 3] [418] +14:22:11 [ 52] [ 16] [930DFA4DBAD11624] +14:22:11 ============================================================================ +14:22:11 + + +waiting on router queue for slot.... +14:22:11 Sending to : +14:22:11 ============================================================================ +14:22:11 Sending to : +14:22:11 ============================================================================ +14:22:11 ============================================================================ +14:22:11 Slot Id : <430> +14:22:11 Transaction Type : REQUEST +14:22:11 Received From : +14:22:11 ============================================================================ +14:22:11 FNo. Len. Field Value +14:22:11 ============================================================================ +14:22:11 [ 1] [ 4] [0200] +14:22:11 [ 2] [ 16] [6688990108267806] +14:22:11 [ 3] [ 6] [302000] +14:22:11 [ 4] [ 12] [000000000000] +14:22:11 [ 7] [ 10] [0320142206] +14:22:11 [ 11] [ 6] [769102] +14:22:11 [ 12] [ 6] [142206] +14:22:11 [ 13] [ 4] [0320] +14:22:11 [ 15] [ 4] [0320] +14:22:11 [ 18] [ 4] [6011] +14:22:11 [ 22] [ 3] [900] +14:22:11 [ 25] [ 2] [02] +14:22:11 [ 28] [ 9] [D00000000] +14:22:11 [ 32] [ 6] [621354] +14:22:11 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:22:11 [ 37] [ 12] [507904635700] +14:22:11 [ 41] [ 8] [17000800] +14:22:11 [ 42] [ 15] [NATIVE ] +14:22:11 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:22:11 [ 49] [ 3] [418] +14:22:11 [ 52] [ 16] [930DFA4DBAD11624] +14:22:11 ============================================================================ +14:22:11 + + +waiting on router queue for slot.... +14:22:11 Sending to : +14:22:11 ============================================================================ +14:22:11 ============================================================================ +14:22:11 Slot Id : <430> +14:22:11 Transaction Type : REQUEST +14:22:11 Received From : +14:22:11 ============================================================================ +14:22:11 FNo. Len. Field Value +14:22:11 ============================================================================ +14:22:11 [ 1] [ 4] [0200] +14:22:11 [ 2] [ 16] [6688990108267806] +14:22:11 [ 3] [ 6] [302000] +14:22:11 [ 4] [ 12] [000000000000] +14:22:11 [ 7] [ 10] [0320142206] +14:22:11 [ 11] [ 6] [769102] +14:22:11 [ 12] [ 6] [142206] +14:22:11 [ 13] [ 4] [0320] +14:22:11 [ 15] [ 4] [0320] +14:22:11 [ 18] [ 4] [6011] +14:22:11 [ 22] [ 3] [900] +14:22:11 [ 25] [ 2] [02] +14:22:11 [ 28] [ 9] [D00000000] +14:22:11 [ 32] [ 6] [621354] +14:22:11 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:22:11 [ 37] [ 12] [507904635700] +14:22:11 [ 41] [ 8] [17000800] +14:22:11 [ 42] [ 15] [NATIVE ] +14:22:11 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:22:11 [ 49] [ 3] [418] +14:22:11 [ 52] [ 16] [2BA469B635D647A1] +14:22:11 ============================================================================ +14:22:11 + + +waiting on router queue for slot.... +14:22:11 Sending to : <4> +14:22:11 ============================================================================ +14:22:12 ============================================================================ +14:22:12 Slot Id : <430> +14:22:12 Transaction Type : RESPONSE +14:22:12 Received From : +14:22:12 ============================================================================ +14:22:12 FNo. Len. Field Value +14:22:12 ============================================================================ +14:22:12 [ 1] [ 4] [0210] +14:22:12 [ 2] [ 16] [6688990108267806] +14:22:12 [ 3] [ 6] [302000] +14:22:12 [ 4] [ 12] [000000000000] +14:22:12 [ 11] [ 6] [769102] +14:22:12 [ 12] [ 6] [142206] +14:22:12 [ 15] [ 4] [0320] +14:22:12 [ 18] [ 4] [6011] +14:22:12 [ 32] [ 6] [621354] +14:22:12 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:22:12 [ 37] [ 12] [507904635700] +14:22:12 [ 38] [ 6] [044365] +14:22:12 [ 39] [ 2] [00] +14:22:12 [ 41] [ 8] [17000800] +14:22:12 [ 49] [ 3] [418] +14:22:12 [ 54] [ 20] [2002418C000520615377] +14:22:12 ============================================================================ +14:22:12 Sending to : +14:22:12 ============================================================================ +14:22:12 + + +waiting on router queue for slot.... +14:22:14 ============================================================================ +14:22:14 Slot Id : <430> +14:22:14 Transaction Type : RESPONSE +14:22:14 Received From : +14:22:14 ============================================================================ +14:22:14 FNo. Len. Field Value +14:22:14 ============================================================================ +14:22:14 [ 1] [ 4] [0210] +14:22:14 [ 2] [ 16] [6688990108267806] +14:22:14 [ 3] [ 6] [302000] +14:22:14 [ 4] [ 12] [000000000000] +14:22:14 [ 11] [ 6] [769102] +14:22:14 [ 12] [ 6] [142206] +14:22:14 [ 15] [ 4] [0320] +14:22:14 [ 18] [ 4] [6011] +14:22:14 [ 32] [ 6] [621354] +14:22:14 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:22:14 [ 37] [ 12] [507904635700] +14:22:14 [ 38] [ 6] [044365] +14:22:14 [ 39] [ 2] [00] +14:22:14 [ 41] [ 8] [17000800] +14:22:14 [ 49] [ 3] [418] +14:22:14 [ 54] [ 20] [2002418C000520615377] +14:22:14 ============================================================================ +14:22:14 Calculate Source COMM Id = 0 +14:22:14 ============================================================================ +14:22:14 + + +waiting on router queue for slot.... +14:22:26 ============================================================================ +14:22:26 Slot Id : <409> +14:22:26 Transaction Type : REQUEST +14:22:26 Received From : +14:22:26 ============================================================================ +14:22:26 FNo. Len. Field Value +14:22:26 ============================================================================ +14:22:26 [ 1] [ 4] [0800] +14:22:26 [ 7] [ 10] [0320072133] +14:22:26 [ 11] [ 6] [156767] +14:22:26 [ 70] [ 3] [301] +14:22:26 ============================================================================ +14:22:26 + + +waiting on router queue for slot.... +14:22:26 Sending to : +14:22:26 ============================================================================ +14:22:26 ============================================================================ +14:22:26 Slot Id : <409> +14:22:26 Transaction Type : RESPONSE +14:22:26 Received From : +14:22:26 ============================================================================ +14:22:26 FNo. Len. Field Value +14:22:26 ============================================================================ +14:22:26 [ 1] [ 4] [0810] +14:22:26 [ 7] [ 10] [0320072133] +14:22:26 [ 11] [ 6] [156767] +14:22:26 [ 39] [ 2] [00] +14:22:26 [ 70] [ 3] [301] +14:22:26 ============================================================================ +14:22:26 Calculate Source COMM Id = 2 +14:22:26 ============================================================================ +14:22:26 + + +waiting on router queue for slot.... +14:22:26 ============================================================================ +14:22:26 Slot Id : <441> +14:22:26 Transaction Type : REQUEST +14:22:26 Received From : +14:22:26 ============================================================================ +14:22:26 FNo. Len. Field Value +14:22:26 ============================================================================ +14:22:26 [ 1] [ 4] [0800] +14:22:26 [ 2] [ 5] [02531] +14:22:26 [ 3] [ 6] [579148] +14:22:26 [ 7] [ 10] [0320072226] +14:22:26 [ 11] [ 6] [807246] +14:22:26 [ 15] [ 10] [0320072226] +14:22:26 [ 37] [ 11] [57914807246] +14:22:26 [ 70] [ 3] [001] +14:22:26 ============================================================================ +14:22:26 + + +waiting on router queue for slot.... +14:22:26 ============================================================================ +14:22:26 Slot Id : <441> +14:22:26 Transaction Type : RESPONSE +14:22:26 Received From : +14:22:26 ============================================================================ +14:22:26 FNo. Len. Field Value +14:22:26 ============================================================================ +14:22:26 [ 1] [ 4] [0810] +14:22:26 [ 7] [ 10] [0320072226] +14:22:26 [ 11] [ 6] [807246] +14:22:26 [ 15] [ 4] [0320] +14:22:26 [ 37] [ 12] [57914807246] +14:22:26 [ 39] [ 2] [00] +14:22:26 [ 70] [ 3] [001] +14:22:26 ============================================================================ +14:22:26 Sending to : +14:22:26 ============================================================================ +14:22:26 + + +waiting on router queue for slot.... +14:22:31 ============================================================================ +14:22:31 Slot Id : <437> +14:22:31 Transaction Type : REQUEST +14:22:31 Received From : +14:22:31 ============================================================================ +14:22:31 FNo. Len. Field Value +14:22:31 ============================================================================ +14:22:31 [ 1] [ 4] [0200] +14:22:31 [ 2] [ 16] [6688990104022007] +14:22:31 [ 3] [ 6] [301000] +14:22:31 [ 7] [ 10] [0320072137] +14:22:31 [ 11] [ 6] [269631] +14:22:31 [ 12] [ 6] [142137] +14:22:31 [ 13] [ 4] [0320] +14:22:31 [ 14] [ 4] [4302] +14:22:31 [ 15] [ 4] [0320] +14:22:31 [ 18] [ 4] [6011] +14:22:31 [ 19] [ 3] [418] +14:22:31 [ 22] [ 3] [021] +14:22:31 [ 25] [ 2] [01] +14:22:31 [ 32] [ 6] [180893] +14:22:31 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:22:31 [ 37] [ 12] [507907269631] +14:22:31 [ 41] [ 8] [0421BKPH] +14:22:31 [ 42] [ 15] [999999 ] +14:22:31 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:22:31 [ 49] [ 3] [418] +14:22:31 [ 52] [ 16] [473334DCBE911001] +14:22:31 ============================================================================ +14:22:31 + + +waiting on router queue for slot.... +14:22:31 Sending to : +14:22:31 ============================================================================ +14:22:31 Sending to : +14:22:31 ============================================================================ +14:22:32 ============================================================================ +14:22:32 Slot Id : <437> +14:22:32 Transaction Type : REQUEST +14:22:32 Received From : +14:22:32 ============================================================================ +14:22:32 FNo. Len. Field Value +14:22:32 ============================================================================ +14:22:32 [ 1] [ 4] [0200] +14:22:32 [ 2] [ 16] [6688990104022007] +14:22:32 [ 3] [ 6] [301000] +14:22:32 [ 7] [ 10] [0320072137] +14:22:32 [ 11] [ 6] [269631] +14:22:32 [ 12] [ 6] [142137] +14:22:32 [ 13] [ 4] [0320] +14:22:32 [ 14] [ 4] [4302] +14:22:32 [ 15] [ 4] [0320] +14:22:32 [ 18] [ 4] [6011] +14:22:32 [ 19] [ 3] [418] +14:22:32 [ 22] [ 3] [021] +14:22:32 [ 25] [ 2] [01] +14:22:32 [ 32] [ 6] [180893] +14:22:32 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:22:32 [ 37] [ 12] [507907269631] +14:22:32 [ 41] [ 8] [0421BKPH] +14:22:32 [ 42] [ 15] [999999 ] +14:22:32 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:22:32 [ 49] [ 3] [418] +14:22:32 [ 52] [ 16] [473334DCBE911001] +14:22:32 ============================================================================ +14:22:32 + + +waiting on router queue for slot.... +14:22:32 Sending to : +14:22:32 ============================================================================ +14:22:32 ============================================================================ +14:22:32 Slot Id : <437> +14:22:32 Transaction Type : REQUEST +14:22:32 Received From : +14:22:32 ============================================================================ +14:22:32 FNo. Len. Field Value +14:22:32 ============================================================================ +14:22:32 [ 1] [ 4] [0200] +14:22:32 [ 2] [ 16] [6688990104022007] +14:22:32 [ 3] [ 6] [301000] +14:22:32 [ 7] [ 10] [0320072137] +14:22:32 [ 11] [ 6] [269631] +14:22:32 [ 12] [ 6] [142137] +14:22:32 [ 13] [ 4] [0320] +14:22:32 [ 14] [ 4] [4302] +14:22:32 [ 15] [ 4] [0320] +14:22:32 [ 18] [ 4] [6011] +14:22:32 [ 19] [ 3] [418] +14:22:32 [ 22] [ 3] [021] +14:22:32 [ 25] [ 2] [01] +14:22:32 [ 32] [ 6] [180893] +14:22:32 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:22:32 [ 37] [ 12] [507907269631] +14:22:32 [ 41] [ 8] [0421BKPH] +14:22:32 [ 42] [ 15] [999999 ] +14:22:32 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:22:32 [ 49] [ 3] [418] +14:22:32 [ 52] [ 16] [3F768CEE6B61742D] +14:22:32 ============================================================================ +14:22:32 + + +waiting on router queue for slot.... +14:22:32 Sending to : <0> +14:22:32 ============================================================================ +14:22:32 ============================================================================ +14:22:32 Slot Id : <437> +14:22:32 Transaction Type : RESPONSE +14:22:32 Received From : +14:22:32 ============================================================================ +14:22:32 FNo. Len. Field Value +14:22:32 ============================================================================ +14:22:32 [ 1] [ 4] [0210] +14:22:32 [ 2] [ 16] [6688990104022007] +14:22:32 [ 3] [ 6] [301000] +14:22:32 [ 4] [ 12] [000000000000] +14:22:32 [ 7] [ 10] [0320072137] +14:22:32 [ 11] [ 6] [269631] +14:22:32 [ 12] [ 6] [142137] +14:22:32 [ 13] [ 4] [0320] +14:22:32 [ 15] [ 4] [0320] +14:22:32 [ 18] [ 4] [6011] +14:22:32 [ 19] [ 3] [418] +14:22:32 [ 22] [ 3] [021] +14:22:32 [ 32] [ 6] [180893] +14:22:32 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:22:32 [ 37] [ 12] [507907269631] +14:22:32 [ 39] [ 2] [14] +14:22:32 [ 41] [ 8] [0421BKPH] +14:22:32 [ 49] [ 3] [418] +14:22:32 ============================================================================ +14:22:32 Sending to : +14:22:32 ============================================================================ +14:22:32 + + +waiting on router queue for slot.... +14:22:33 ============================================================================ +14:22:33 Slot Id : <437> +14:22:33 Transaction Type : RESPONSE +14:22:33 Received From : +14:22:33 ============================================================================ +14:22:33 FNo. Len. Field Value +14:22:33 ============================================================================ +14:22:33 [ 1] [ 4] [0210] +14:22:33 [ 2] [ 16] [6688990104022007] +14:22:33 [ 3] [ 6] [301000] +14:22:33 [ 4] [ 12] [000000000000] +14:22:33 [ 7] [ 10] [0320072137] +14:22:33 [ 11] [ 6] [269631] +14:22:33 [ 12] [ 6] [142137] +14:22:33 [ 13] [ 4] [0320] +14:22:33 [ 15] [ 4] [0320] +14:22:33 [ 18] [ 4] [6011] +14:22:33 [ 19] [ 3] [418] +14:22:33 [ 22] [ 3] [021] +14:22:33 [ 32] [ 6] [180893] +14:22:33 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:22:33 [ 37] [ 12] [507907269631] +14:22:33 [ 39] [ 2] [14] +14:22:33 [ 41] [ 8] [0421BKPH] +14:22:33 [ 49] [ 3] [418] +14:22:33 ============================================================================ +14:22:33 Calculate Source COMM Id = 2 +14:22:33 ============================================================================ +14:22:33 + + +waiting on router queue for slot.... +14:22:48 ============================================================================ +14:22:48 Slot Id : <402> +14:22:48 Transaction Type : REQUEST +14:22:48 Received From : +14:22:48 ============================================================================ +14:22:48 FNo. Len. Field Value +14:22:48 ============================================================================ +14:22:48 [ 1] [ 4] [0800] +14:22:48 [ 7] [ 10] [0320072155] +14:22:48 [ 11] [ 6] [156768] +14:22:48 [ 70] [ 3] [301] +14:22:48 ============================================================================ +14:22:48 + + +waiting on router queue for slot.... +14:22:48 Sending to : +14:22:48 ============================================================================ +14:22:48 ============================================================================ +14:22:48 Slot Id : <402> +14:22:48 Transaction Type : RESPONSE +14:22:48 Received From : +14:22:48 ============================================================================ +14:22:48 FNo. Len. Field Value +14:22:48 ============================================================================ +14:22:48 [ 1] [ 4] [0810] +14:22:48 [ 7] [ 10] [0320072155] +14:22:48 [ 11] [ 6] [156768] +14:22:48 [ 39] [ 2] [00] +14:22:48 [ 70] [ 3] [301] +14:22:48 ============================================================================ +14:22:48 Calculate Source COMM Id = 2 +14:22:48 ============================================================================ +14:22:48 + + +waiting on router queue for slot.... +14:22:54 ============================================================================ +14:22:54 Slot Id : <408> +14:22:54 Transaction Type : REQUEST +14:22:54 Received From : +14:22:54 ============================================================================ +14:22:54 FNo. Len. Field Value +14:22:54 ============================================================================ +14:22:54 [ 1] [ 4] [0200] +14:22:54 [ 2] [ 16] [6688990040135517] +14:22:54 [ 3] [ 6] [301000] +14:22:54 [ 4] [ 12] [000000000000] +14:22:54 [ 7] [ 10] [0320142250] +14:22:54 [ 11] [ 6] [769249] +14:22:54 [ 12] [ 6] [142250] +14:22:54 [ 13] [ 4] [0320] +14:22:54 [ 15] [ 4] [0320] +14:22:54 [ 18] [ 4] [6011] +14:22:54 [ 22] [ 3] [900] +14:22:54 [ 25] [ 2] [02] +14:22:54 [ 28] [ 9] [D00000000] +14:22:54 [ 32] [ 6] [621354] +14:22:54 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:22:54 [ 37] [ 12] [507904719657] +14:22:54 [ 41] [ 8] [18001000] +14:22:54 [ 42] [ 15] [NATIVE ] +14:22:54 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:22:54 [ 49] [ 3] [418] +14:22:54 [ 52] [ 16] [B2AA00523B1FF68E] +14:22:54 ============================================================================ +14:22:54 + + +waiting on router queue for slot.... +14:22:54 Sending to : +14:22:54 ============================================================================ +14:22:54 Sending to : +14:22:54 ============================================================================ +14:22:55 ============================================================================ +14:22:55 Slot Id : <408> +14:22:55 Transaction Type : REQUEST +14:22:55 Received From : +14:22:55 ============================================================================ +14:22:55 FNo. Len. Field Value +14:22:55 ============================================================================ +14:22:55 [ 1] [ 4] [0200] +14:22:55 [ 2] [ 16] [6688990040135517] +14:22:55 [ 3] [ 6] [301000] +14:22:55 [ 4] [ 12] [000000000000] +14:22:55 [ 7] [ 10] [0320142250] +14:22:55 [ 11] [ 6] [769249] +14:22:55 [ 12] [ 6] [142250] +14:22:55 [ 13] [ 4] [0320] +14:22:55 [ 15] [ 4] [0320] +14:22:55 [ 18] [ 4] [6011] +14:22:55 [ 22] [ 3] [900] +14:22:55 [ 25] [ 2] [02] +14:22:55 [ 28] [ 9] [D00000000] +14:22:55 [ 32] [ 6] [621354] +14:22:55 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:22:55 [ 37] [ 12] [507904719657] +14:22:55 [ 41] [ 8] [18001000] +14:22:55 [ 42] [ 15] [NATIVE ] +14:22:55 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:22:55 [ 49] [ 3] [418] +14:22:55 [ 52] [ 16] [B2AA00523B1FF68E] +14:22:55 ============================================================================ +14:22:55 + + +waiting on router queue for slot.... +14:22:55 Sending to : +14:22:55 ============================================================================ +14:22:55 ============================================================================ +14:22:55 Slot Id : <408> +14:22:55 Transaction Type : REQUEST +14:22:55 Received From : +14:22:55 ============================================================================ +14:22:55 FNo. Len. Field Value +14:22:55 ============================================================================ +14:22:55 [ 1] [ 4] [0200] +14:22:55 [ 2] [ 16] [6688990040135517] +14:22:55 [ 3] [ 6] [301000] +14:22:55 [ 4] [ 12] [000000000000] +14:22:55 [ 7] [ 10] [0320142250] +14:22:55 [ 11] [ 6] [769249] +14:22:55 [ 12] [ 6] [142250] +14:22:55 [ 13] [ 4] [0320] +14:22:55 [ 15] [ 4] [0320] +14:22:55 [ 18] [ 4] [6011] +14:22:55 [ 22] [ 3] [900] +14:22:55 [ 25] [ 2] [02] +14:22:55 [ 28] [ 9] [D00000000] +14:22:55 [ 32] [ 6] [621354] +14:22:55 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:22:55 [ 37] [ 12] [507904719657] +14:22:55 [ 41] [ 8] [18001000] +14:22:55 [ 42] [ 15] [NATIVE ] +14:22:55 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:22:55 [ 49] [ 3] [418] +14:22:55 [ 52] [ 16] [E4292B036CF5E720] +14:22:55 ============================================================================ +14:22:55 + + +waiting on router queue for slot.... +14:22:55 Sending to : <4> +14:22:55 ============================================================================ +14:22:57 ============================================================================ +14:22:57 Slot Id : <408> +14:22:57 Transaction Type : RESPONSE +14:22:57 Received From : +14:22:57 ============================================================================ +14:22:57 FNo. Len. Field Value +14:22:57 ============================================================================ +14:22:57 [ 1] [ 4] [0210] +14:22:57 [ 2] [ 16] [6688990040135517] +14:22:57 [ 3] [ 6] [301000] +14:22:57 [ 4] [ 12] [000000000000] +14:22:57 [ 11] [ 6] [769249] +14:22:57 [ 12] [ 6] [142250] +14:22:57 [ 15] [ 4] [0320] +14:22:57 [ 18] [ 4] [6011] +14:22:57 [ 32] [ 6] [621354] +14:22:57 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:22:57 [ 37] [ 12] [507904719657] +14:22:57 [ 38] [ 6] [398751] +14:22:57 [ 39] [ 2] [00] +14:22:57 [ 41] [ 8] [18001000] +14:22:57 [ 49] [ 3] [418] +14:22:57 [ 54] [ 20] [1002418C000275588817] +14:22:57 ============================================================================ +14:22:57 Sending to : +14:22:57 ============================================================================ +14:22:57 + + +waiting on router queue for slot.... +14:22:58 ============================================================================ +14:22:58 Slot Id : <408> +14:22:58 Transaction Type : RESPONSE +14:22:58 Received From : +14:22:58 ============================================================================ +14:22:58 FNo. Len. Field Value +14:22:58 ============================================================================ +14:22:58 [ 1] [ 4] [0210] +14:22:58 [ 2] [ 16] [6688990040135517] +14:22:58 [ 3] [ 6] [301000] +14:22:58 [ 4] [ 12] [000000000000] +14:22:58 [ 11] [ 6] [769249] +14:22:58 [ 12] [ 6] [142250] +14:22:58 [ 15] [ 4] [0320] +14:22:58 [ 18] [ 4] [6011] +14:22:58 [ 32] [ 6] [621354] +14:22:58 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:22:58 [ 37] [ 12] [507904719657] +14:22:58 [ 38] [ 6] [398751] +14:22:58 [ 39] [ 2] [00] +14:22:58 [ 41] [ 8] [18001000] +14:22:58 [ 49] [ 3] [418] +14:22:58 [ 54] [ 20] [1002418C000275588817] +14:22:58 ============================================================================ +14:22:58 Calculate Source COMM Id = 0 +14:22:58 ============================================================================ +14:22:58 + + +waiting on router queue for slot.... +14:22:58 ============================================================================ +14:22:58 Slot Id : <403> +14:22:58 Transaction Type : REQUEST +14:22:58 Received From : +14:22:58 ============================================================================ +14:22:58 FNo. Len. Field Value +14:22:58 ============================================================================ +14:22:58 [ 1] [ 4] [0800] +14:22:58 [ 7] [ 10] [0320072206] +14:22:58 [ 11] [ 6] [156769] +14:22:58 [ 70] [ 3] [301] +14:22:58 ============================================================================ +14:22:58 + + +waiting on router queue for slot.... +14:22:58 Sending to : +14:22:58 ============================================================================ +14:22:58 ============================================================================ +14:22:58 Slot Id : <403> +14:22:58 Transaction Type : RESPONSE +14:22:58 Received From : +14:22:58 ============================================================================ +14:22:58 FNo. Len. Field Value +14:22:58 ============================================================================ +14:22:58 [ 1] [ 4] [0810] +14:22:58 [ 7] [ 10] [0320072206] +14:22:58 [ 11] [ 6] [156769] +14:22:58 [ 39] [ 2] [00] +14:22:58 [ 70] [ 3] [301] +14:22:58 ============================================================================ +14:22:58 Calculate Source COMM Id = 2 +14:22:58 ============================================================================ +14:22:58 + + +waiting on router queue for slot.... +14:23:01 ============================================================================ +14:23:01 Slot Id : <362> +14:23:01 Transaction Type : REQUEST +14:23:01 Received From : +14:23:01 ============================================================================ +14:23:01 FNo. Len. Field Value +14:23:01 ============================================================================ +14:23:01 [ 1] [ 4] [0200] +14:23:01 [ 2] [ 16] [1808930100004555] +14:23:01 [ 3] [ 6] [011000] +14:23:01 [ 4] [ 12] [000100000000] +14:23:01 [ 7] [ 10] [0320142256] +14:23:01 [ 11] [ 6] [769278] +14:23:01 [ 12] [ 6] [142256] +14:23:01 [ 13] [ 4] [0320] +14:23:01 [ 15] [ 4] [0320] +14:23:01 [ 18] [ 4] [6011] +14:23:01 [ 22] [ 3] [900] +14:23:01 [ 25] [ 2] [02] +14:23:01 [ 28] [ 9] [D00002000] +14:23:01 [ 32] [ 6] [621354] +14:23:01 [ 35] [ 27] [1808930100004555=1803500795] +14:23:01 [ 37] [ 12] [507903675621] +14:23:01 [ 41] [ 8] [16002000] +14:23:01 [ 42] [ 15] [NATIVE ] +14:23:01 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +14:23:01 [ 49] [ 3] [418] +14:23:01 [ 52] [ 16] [E51F2EFE13EEB383] +14:23:01 ============================================================================ +14:23:01 + + +waiting on router queue for slot.... +14:23:01 Sending to : +14:23:01 ============================================================================ +14:23:01 Sending to : +14:23:01 ============================================================================ +14:23:01 ============================================================================ +14:23:01 Slot Id : <362> +14:23:01 Transaction Type : REQUEST +14:23:01 Received From : +14:23:01 ============================================================================ +14:23:01 FNo. Len. Field Value +14:23:01 ============================================================================ +14:23:01 [ 1] [ 4] [0200] +14:23:01 [ 2] [ 16] [1808930100004555] +14:23:01 [ 3] [ 6] [011000] +14:23:01 [ 4] [ 12] [000100000000] +14:23:01 [ 7] [ 10] [0320142256] +14:23:01 [ 11] [ 6] [769278] +14:23:01 [ 12] [ 6] [142256] +14:23:01 [ 13] [ 4] [0320] +14:23:01 [ 15] [ 4] [0320] +14:23:01 [ 18] [ 4] [6011] +14:23:01 [ 22] [ 3] [900] +14:23:01 [ 25] [ 2] [02] +14:23:01 [ 28] [ 9] [D00002000] +14:23:01 [ 32] [ 6] [621354] +14:23:01 [ 35] [ 27] [1808930100004555=1803500795] +14:23:01 [ 37] [ 12] [507903675621] +14:23:01 [ 41] [ 8] [16002000] +14:23:01 [ 42] [ 15] [NATIVE ] +14:23:01 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +14:23:01 [ 49] [ 3] [418] +14:23:01 [ 52] [ 16] [E51F2EFE13EEB383] +14:23:01 ============================================================================ +14:23:01 + + +waiting on router queue for slot.... +14:23:01 Sending to : +14:23:01 ============================================================================ +14:23:01 ============================================================================ +14:23:01 Slot Id : <362> +14:23:01 Transaction Type : REQUEST +14:23:01 Received From : +14:23:01 ============================================================================ +14:23:01 FNo. Len. Field Value +14:23:01 ============================================================================ +14:23:01 [ 1] [ 4] [0200] +14:23:01 [ 2] [ 16] [1808930100004555] +14:23:01 [ 3] [ 6] [011000] +14:23:01 [ 4] [ 12] [000100000000] +14:23:01 [ 7] [ 10] [0320142256] +14:23:01 [ 11] [ 6] [769278] +14:23:01 [ 12] [ 6] [142256] +14:23:01 [ 13] [ 4] [0320] +14:23:01 [ 15] [ 4] [0320] +14:23:01 [ 18] [ 4] [6011] +14:23:01 [ 22] [ 3] [900] +14:23:01 [ 25] [ 2] [02] +14:23:01 [ 28] [ 9] [D00002000] +14:23:01 [ 32] [ 6] [621354] +14:23:01 [ 35] [ 27] [1808930100004555=1803500795] +14:23:01 [ 37] [ 12] [507903675621] +14:23:01 [ 41] [ 8] [16002000] +14:23:01 [ 42] [ 15] [NATIVE ] +14:23:01 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +14:23:01 [ 49] [ 3] [418] +14:23:01 [ 52] [ 16] [919A35FFB01C5A40] +14:23:01 ============================================================================ +14:23:01 + + +waiting on router queue for slot.... +14:23:01 Sending to : <2> +14:23:01 ============================================================================ +14:23:06 ============================================================================ +14:23:06 Slot Id : <362> +14:23:06 Transaction Type : RESPONSE +14:23:06 Received From : +14:23:06 ============================================================================ +14:23:06 FNo. Len. Field Value +14:23:06 ============================================================================ +14:23:06 [ 1] [ 4] [0210] +14:23:06 [ 2] [ 16] [1808930100004555] +14:23:06 [ 3] [ 6] [011000] +14:23:06 [ 4] [ 12] [000100000000] +14:23:06 [ 6] [ 12] [000100000000] +14:23:06 [ 7] [ 10] [0320142256] +14:23:06 [ 11] [ 6] [769278] +14:23:06 [ 12] [ 6] [142256] +14:23:06 [ 13] [ 4] [0320] +14:23:06 [ 18] [ 4] [6011] +14:23:06 [ 19] [ 3] [418] +14:23:06 [ 22] [ 3] [021] +14:23:06 [ 32] [ 6] [621354] +14:23:06 [ 35] [ 27] [1808930100004555=1803500795] +14:23:06 [ 37] [ 12] [507903675621] +14:23:06 [ 38] [ 6] [769278] +14:23:06 [ 39] [ 2] [00] +14:23:06 [ 41] [ 8] [16002000] +14:23:06 [ 49] [ 3] [418] +14:23:06 [ 52] [ 16] [919A35FFB01C5A40] +14:23:06 [ 54] [ 20] [1001418C000198155500] +14:23:06 ============================================================================ +14:23:06 Sending to : +14:23:06 ============================================================================ +14:23:06 + + +waiting on router queue for slot.... +14:23:07 ============================================================================ +14:23:07 Slot Id : <362> +14:23:07 Transaction Type : RESPONSE +14:23:07 Received From : +14:23:07 ============================================================================ +14:23:07 FNo. Len. Field Value +14:23:07 ============================================================================ +14:23:07 [ 1] [ 4] [0210] +14:23:07 [ 2] [ 16] [1808930100004555] +14:23:07 [ 3] [ 6] [011000] +14:23:07 [ 4] [ 12] [000100000000] +14:23:07 [ 6] [ 12] [000100000000] +14:23:07 [ 7] [ 10] [0320142256] +14:23:07 [ 11] [ 6] [769278] +14:23:07 [ 12] [ 6] [142256] +14:23:07 [ 13] [ 4] [0320] +14:23:07 [ 18] [ 4] [6011] +14:23:07 [ 19] [ 3] [418] +14:23:07 [ 22] [ 3] [021] +14:23:07 [ 32] [ 6] [621354] +14:23:07 [ 35] [ 27] [1808930100004555=1803500795] +14:23:07 [ 37] [ 12] [507903675621] +14:23:07 [ 38] [ 6] [769278] +14:23:07 [ 39] [ 2] [00] +14:23:07 [ 41] [ 8] [16002000] +14:23:07 [ 49] [ 3] [418] +14:23:07 [ 52] [ 16] [919A35FFB01C5A40] +14:23:07 [ 54] [ 20] [1001418C000198155500] +14:23:07 ============================================================================ +14:23:07 Calculate Source COMM Id = 0 +14:23:07 ============================================================================ +14:23:07 + + +waiting on router queue for slot.... +14:23:14 ============================================================================ +14:23:14 Slot Id : <385> +14:23:14 Transaction Type : REQUEST +14:23:14 Received From : +14:23:14 ============================================================================ +14:23:14 FNo. Len. Field Value +14:23:14 ============================================================================ +14:23:14 [ 1] [ 4] [0800] +14:23:14 [ 7] [ 10] [0320213502] +14:23:14 [ 11] [ 6] [143502] +14:23:14 [ 37] [ 12] [57914143502] +14:23:14 [ 70] [ 3] [301] +14:23:14 ============================================================================ +14:23:14 + + +waiting on router queue for slot.... +14:23:14 Sending to : +14:23:14 ============================================================================ +14:23:14 ============================================================================ +14:23:14 Slot Id : <385> +14:23:14 Transaction Type : RESPONSE +14:23:14 Received From : +14:23:14 ============================================================================ +14:23:14 FNo. Len. Field Value +14:23:14 ============================================================================ +14:23:14 [ 1] [ 4] [0810] +14:23:14 [ 7] [ 10] [0320213502] +14:23:14 [ 11] [ 6] [143502] +14:23:14 [ 37] [ 12] [579141435020] +14:23:14 [ 39] [ 2] [00] +14:23:14 [ 70] [ 3] [810] +14:23:14 ============================================================================ +14:23:14 Calculate Source COMM Id = 6 +14:23:14 ============================================================================ +14:23:14 + + +waiting on router queue for slot.... +14:23:16 ============================================================================ +14:23:16 Slot Id : <375> +14:23:16 Transaction Type : REQUEST +14:23:16 Received From : +14:23:16 ============================================================================ +14:23:16 FNo. Len. Field Value +14:23:16 ============================================================================ +14:23:16 [ 1] [ 4] [0800] +14:23:16 [ 7] [ 10] [0320072223] +14:23:16 [ 11] [ 6] [156770] +14:23:16 [ 70] [ 3] [301] +14:23:16 ============================================================================ +14:23:16 + + +waiting on router queue for slot.... +14:23:16 Sending to : +14:23:16 ============================================================================ +14:23:16 ============================================================================ +14:23:16 Slot Id : <375> +14:23:16 Transaction Type : RESPONSE +14:23:16 Received From : +14:23:16 ============================================================================ +14:23:16 FNo. Len. Field Value +14:23:16 ============================================================================ +14:23:16 [ 1] [ 4] [0810] +14:23:16 [ 7] [ 10] [0320072223] +14:23:16 [ 11] [ 6] [156770] +14:23:16 [ 39] [ 2] [00] +14:23:16 [ 70] [ 3] [301] +14:23:16 ============================================================================ +14:23:16 Calculate Source COMM Id = 2 +14:23:16 ============================================================================ +14:23:16 + + +waiting on router queue for slot.... +14:23:28 ============================================================================ +14:23:28 Slot Id : <392> +14:23:28 Transaction Type : REQUEST +14:23:28 Received From : +14:23:28 ============================================================================ +14:23:28 FNo. Len. Field Value +14:23:28 ============================================================================ +14:23:28 [ 1] [ 4] [0800] +14:23:28 [ 2] [ 5] [02531] +14:23:28 [ 3] [ 6] [579148] +14:23:28 [ 7] [ 10] [0320072328] +14:23:28 [ 11] [ 6] [807247] +14:23:28 [ 15] [ 10] [0320072328] +14:23:28 [ 37] [ 11] [57914807247] +14:23:28 [ 70] [ 3] [001] +14:23:28 ============================================================================ +14:23:28 + + +waiting on router queue for slot.... +14:23:28 ============================================================================ +14:23:28 Slot Id : <392> +14:23:28 Transaction Type : RESPONSE +14:23:28 Received From : +14:23:28 ============================================================================ +14:23:28 FNo. Len. Field Value +14:23:28 ============================================================================ +14:23:28 [ 1] [ 4] [0810] +14:23:28 [ 7] [ 10] [0320072328] +14:23:28 [ 11] [ 6] [807247] +14:23:28 [ 15] [ 4] [0320] +14:23:28 [ 37] [ 12] [57914807247] +14:23:28 [ 39] [ 2] [00] +14:23:28 [ 70] [ 3] [001] +14:23:28 ============================================================================ +14:23:28 Sending to : +14:23:28 ============================================================================ +14:23:28 + + +waiting on router queue for slot.... +14:23:31 ============================================================================ +14:23:31 Slot Id : <412> +14:23:31 Transaction Type : REQUEST +14:23:31 Received From : +14:23:31 ============================================================================ +14:23:31 FNo. Len. Field Value +14:23:31 ============================================================================ +14:23:31 [ 1] [ 4] [0800] +14:23:31 [ 7] [ 10] [0320072238] +14:23:31 [ 11] [ 6] [156771] +14:23:31 [ 70] [ 3] [301] +14:23:31 ============================================================================ +14:23:31 + + +waiting on router queue for slot.... +14:23:31 Sending to : +14:23:31 ============================================================================ +14:23:31 ============================================================================ +14:23:31 Slot Id : <412> +14:23:31 Transaction Type : RESPONSE +14:23:31 Received From : +14:23:31 ============================================================================ +14:23:31 FNo. Len. Field Value +14:23:31 ============================================================================ +14:23:31 [ 1] [ 4] [0810] +14:23:31 [ 7] [ 10] [0320072238] +14:23:31 [ 11] [ 6] [156771] +14:23:31 [ 39] [ 2] [00] +14:23:31 [ 70] [ 3] [301] +14:23:31 ============================================================================ +14:23:31 Calculate Source COMM Id = 2 +14:23:31 ============================================================================ +14:23:31 + + +waiting on router queue for slot.... +14:23:41 ============================================================================ +14:23:41 Slot Id : <447> +14:23:41 Transaction Type : REQUEST +14:23:41 Received From : +14:23:41 ============================================================================ +14:23:41 FNo. Len. Field Value +14:23:41 ============================================================================ +14:23:41 [ 1] [ 4] [0200] +14:23:41 [ 2] [ 16] [6688990104022007] +14:23:41 [ 3] [ 6] [011000] +14:23:41 [ 4] [ 12] [000010000000] +14:23:41 [ 7] [ 10] [0320072247] +14:23:41 [ 11] [ 6] [269634] +14:23:41 [ 12] [ 6] [142247] +14:23:41 [ 13] [ 4] [0320] +14:23:41 [ 14] [ 4] [4302] +14:23:41 [ 15] [ 4] [0320] +14:23:41 [ 18] [ 4] [6011] +14:23:41 [ 19] [ 3] [418] +14:23:41 [ 22] [ 3] [021] +14:23:41 [ 25] [ 2] [01] +14:23:41 [ 28] [ 9] [D00002000] +14:23:41 [ 32] [ 6] [180893] +14:23:41 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:23:41 [ 37] [ 12] [507907269634] +14:23:41 [ 41] [ 8] [0421BKPH] +14:23:41 [ 42] [ 15] [999999 ] +14:23:41 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:23:41 [ 49] [ 3] [418] +14:23:41 [ 52] [ 16] [473334DCBE911001] +14:23:41 ============================================================================ +14:23:41 + + +waiting on router queue for slot.... +14:23:41 Sending to : +14:23:41 ============================================================================ +14:23:41 Sending to : +14:23:41 ============================================================================ +14:23:41 ============================================================================ +14:23:41 Slot Id : <447> +14:23:41 Transaction Type : REQUEST +14:23:41 Received From : +14:23:41 ============================================================================ +14:23:41 FNo. Len. Field Value +14:23:41 ============================================================================ +14:23:41 [ 1] [ 4] [0200] +14:23:41 [ 2] [ 16] [6688990104022007] +14:23:41 [ 3] [ 6] [011000] +14:23:41 [ 4] [ 12] [000010000000] +14:23:41 [ 7] [ 10] [0320072247] +14:23:41 [ 11] [ 6] [269634] +14:23:41 [ 12] [ 6] [142247] +14:23:41 [ 13] [ 4] [0320] +14:23:41 [ 14] [ 4] [4302] +14:23:41 [ 15] [ 4] [0320] +14:23:41 [ 18] [ 4] [6011] +14:23:41 [ 19] [ 3] [418] +14:23:41 [ 22] [ 3] [021] +14:23:41 [ 25] [ 2] [01] +14:23:41 [ 28] [ 9] [D00002000] +14:23:41 [ 32] [ 6] [180893] +14:23:41 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:23:41 [ 37] [ 12] [507907269634] +14:23:41 [ 41] [ 8] [0421BKPH] +14:23:41 [ 42] [ 15] [999999 ] +14:23:41 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:23:41 [ 49] [ 3] [418] +14:23:41 [ 52] [ 16] [473334DCBE911001] +14:23:41 ============================================================================ +14:23:41 + + +waiting on router queue for slot.... +14:23:41 Sending to : +14:23:41 ============================================================================ +14:23:41 ============================================================================ +14:23:41 Slot Id : <447> +14:23:41 Transaction Type : REQUEST +14:23:41 Received From : +14:23:41 ============================================================================ +14:23:41 FNo. Len. Field Value +14:23:41 ============================================================================ +14:23:41 [ 1] [ 4] [0200] +14:23:41 [ 2] [ 16] [6688990104022007] +14:23:41 [ 3] [ 6] [011000] +14:23:41 [ 4] [ 12] [000010000000] +14:23:41 [ 7] [ 10] [0320072247] +14:23:41 [ 11] [ 6] [269634] +14:23:41 [ 12] [ 6] [142247] +14:23:41 [ 13] [ 4] [0320] +14:23:41 [ 14] [ 4] [4302] +14:23:41 [ 15] [ 4] [0320] +14:23:41 [ 18] [ 4] [6011] +14:23:41 [ 19] [ 3] [418] +14:23:41 [ 22] [ 3] [021] +14:23:41 [ 25] [ 2] [01] +14:23:41 [ 28] [ 9] [D00002000] +14:23:41 [ 32] [ 6] [180893] +14:23:41 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:23:41 [ 37] [ 12] [507907269634] +14:23:41 [ 41] [ 8] [0421BKPH] +14:23:41 [ 42] [ 15] [999999 ] +14:23:41 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:23:41 [ 49] [ 3] [418] +14:23:41 [ 52] [ 16] [3F768CEE6B61742D] +14:23:41 ============================================================================ +14:23:41 + + +waiting on router queue for slot.... +14:23:41 Sending to : <0> +14:23:41 ============================================================================ +14:23:41 ============================================================================ +14:23:41 Slot Id : <447> +14:23:41 Transaction Type : RESPONSE +14:23:41 Received From : +14:23:41 ============================================================================ +14:23:41 FNo. Len. Field Value +14:23:41 ============================================================================ +14:23:41 [ 1] [ 4] [0210] +14:23:41 [ 2] [ 16] [6688990104022007] +14:23:41 [ 3] [ 6] [011000] +14:23:41 [ 4] [ 12] [000010000000] +14:23:41 [ 7] [ 10] [0320072247] +14:23:41 [ 11] [ 6] [269634] +14:23:41 [ 12] [ 6] [142247] +14:23:41 [ 13] [ 4] [0320] +14:23:41 [ 15] [ 4] [0320] +14:23:41 [ 18] [ 4] [6011] +14:23:41 [ 19] [ 3] [418] +14:23:41 [ 22] [ 3] [021] +14:23:41 [ 32] [ 6] [180893] +14:23:41 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:23:41 [ 37] [ 12] [507907269634] +14:23:41 [ 39] [ 2] [14] +14:23:41 [ 41] [ 8] [0421BKPH] +14:23:41 [ 49] [ 3] [418] +14:23:41 ============================================================================ +14:23:41 Sending to : +14:23:41 ============================================================================ +14:23:41 + + +waiting on router queue for slot.... +14:23:42 ============================================================================ +14:23:42 Slot Id : <447> +14:23:42 Transaction Type : RESPONSE +14:23:42 Received From : +14:23:42 ============================================================================ +14:23:42 FNo. Len. Field Value +14:23:42 ============================================================================ +14:23:42 [ 1] [ 4] [0210] +14:23:42 [ 2] [ 16] [6688990104022007] +14:23:42 [ 3] [ 6] [011000] +14:23:42 [ 4] [ 12] [000010000000] +14:23:42 [ 7] [ 10] [0320072247] +14:23:42 [ 11] [ 6] [269634] +14:23:42 [ 12] [ 6] [142247] +14:23:42 [ 13] [ 4] [0320] +14:23:42 [ 15] [ 4] [0320] +14:23:42 [ 18] [ 4] [6011] +14:23:42 [ 19] [ 3] [418] +14:23:42 [ 22] [ 3] [021] +14:23:42 [ 32] [ 6] [180893] +14:23:42 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:23:42 [ 37] [ 12] [507907269634] +14:23:42 [ 39] [ 2] [14] +14:23:42 [ 41] [ 8] [0421BKPH] +14:23:42 [ 49] [ 3] [418] +14:23:42 ============================================================================ +14:23:42 Calculate Source COMM Id = 2 +14:23:42 ============================================================================ +14:23:42 + + +waiting on router queue for slot.... +14:23:42 ============================================================================ +14:23:42 Slot Id : <450> +14:23:42 Transaction Type : REQUEST +14:23:42 Received From : +14:23:42 ============================================================================ +14:23:42 FNo. Len. Field Value +14:23:42 ============================================================================ +14:23:42 [ 1] [ 4] [0800] +14:23:42 [ 7] [ 10] [0320072249] +14:23:42 [ 11] [ 6] [156772] +14:23:42 [ 70] [ 3] [301] +14:23:42 ============================================================================ +14:23:42 + + +waiting on router queue for slot.... +14:23:42 Sending to : +14:23:42 ============================================================================ +14:23:42 ============================================================================ +14:23:42 Slot Id : <450> +14:23:42 Transaction Type : RESPONSE +14:23:42 Received From : +14:23:42 ============================================================================ +14:23:42 FNo. Len. Field Value +14:23:42 ============================================================================ +14:23:42 [ 1] [ 4] [0810] +14:23:42 [ 7] [ 10] [0320072249] +14:23:42 [ 11] [ 6] [156772] +14:23:42 [ 39] [ 2] [00] +14:23:42 [ 70] [ 3] [301] +14:23:42 ============================================================================ +14:23:42 Calculate Source COMM Id = 2 +14:23:42 ============================================================================ +14:23:42 + + +waiting on router queue for slot.... +14:23:55 ============================================================================ +14:23:55 Slot Id : <391> +14:23:55 Transaction Type : REQUEST +14:23:55 Received From : +14:23:55 ============================================================================ +14:23:55 FNo. Len. Field Value +14:23:55 ============================================================================ +14:23:55 [ 1] [ 4] [0200] +14:23:55 [ 2] [ 16] [6688990108267806] +14:23:55 [ 3] [ 6] [010000] +14:23:55 [ 4] [ 12] [000010000000] +14:23:55 [ 7] [ 10] [0320142350] +14:23:55 [ 11] [ 6] [769469] +14:23:55 [ 12] [ 6] [142350] +14:23:55 [ 13] [ 4] [0320] +14:23:55 [ 15] [ 4] [0320] +14:23:55 [ 18] [ 4] [6011] +14:23:55 [ 22] [ 3] [900] +14:23:55 [ 25] [ 2] [02] +14:23:55 [ 28] [ 9] [D00002000] +14:23:55 [ 32] [ 6] [621354] +14:23:55 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:23:55 [ 37] [ 12] [507904635702] +14:23:55 [ 41] [ 8] [17000800] +14:23:55 [ 42] [ 15] [NATIVE ] +14:23:55 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:23:55 [ 49] [ 3] [418] +14:23:55 [ 52] [ 16] [930DFA4DBAD11624] +14:23:55 ============================================================================ +14:23:55 + + +waiting on router queue for slot.... +14:23:55 Sending to : +14:23:55 ============================================================================ +14:23:55 Sending to : +14:23:55 ============================================================================ +14:23:55 ============================================================================ +14:23:55 Slot Id : <391> +14:23:55 Transaction Type : REQUEST +14:23:55 Received From : +14:23:55 ============================================================================ +14:23:55 FNo. Len. Field Value +14:23:55 ============================================================================ +14:23:55 [ 1] [ 4] [0200] +14:23:55 [ 2] [ 16] [6688990108267806] +14:23:55 [ 3] [ 6] [010000] +14:23:55 [ 4] [ 12] [000010000000] +14:23:55 [ 7] [ 10] [0320142350] +14:23:55 [ 11] [ 6] [769469] +14:23:55 [ 12] [ 6] [142350] +14:23:55 [ 13] [ 4] [0320] +14:23:55 [ 15] [ 4] [0320] +14:23:55 [ 18] [ 4] [6011] +14:23:55 [ 22] [ 3] [900] +14:23:55 [ 25] [ 2] [02] +14:23:55 [ 28] [ 9] [D00002000] +14:23:55 [ 32] [ 6] [621354] +14:23:55 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:23:55 [ 37] [ 12] [507904635702] +14:23:55 [ 41] [ 8] [17000800] +14:23:55 [ 42] [ 15] [NATIVE ] +14:23:55 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:23:55 [ 49] [ 3] [418] +14:23:55 [ 52] [ 16] [930DFA4DBAD11624] +14:23:55 ============================================================================ +14:23:55 + + +waiting on router queue for slot.... +14:23:55 Sending to : +14:23:55 ============================================================================ +14:23:55 ============================================================================ +14:23:55 Slot Id : <391> +14:23:55 Transaction Type : REQUEST +14:23:55 Received From : +14:23:55 ============================================================================ +14:23:55 FNo. Len. Field Value +14:23:55 ============================================================================ +14:23:55 [ 1] [ 4] [0200] +14:23:55 [ 2] [ 16] [6688990108267806] +14:23:55 [ 3] [ 6] [010000] +14:23:55 [ 4] [ 12] [000010000000] +14:23:55 [ 7] [ 10] [0320142350] +14:23:55 [ 11] [ 6] [769469] +14:23:55 [ 12] [ 6] [142350] +14:23:55 [ 13] [ 4] [0320] +14:23:55 [ 15] [ 4] [0320] +14:23:55 [ 18] [ 4] [6011] +14:23:55 [ 22] [ 3] [900] +14:23:55 [ 25] [ 2] [02] +14:23:55 [ 28] [ 9] [D00002000] +14:23:55 [ 32] [ 6] [621354] +14:23:55 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:23:55 [ 37] [ 12] [507904635702] +14:23:55 [ 41] [ 8] [17000800] +14:23:55 [ 42] [ 15] [NATIVE ] +14:23:55 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:23:55 [ 49] [ 3] [418] +14:23:55 [ 52] [ 16] [2BA469B635D647A1] +14:23:55 ============================================================================ +14:23:55 + + +waiting on router queue for slot.... +14:23:55 Sending to : <4> +14:23:55 ============================================================================ +14:23:57 ============================================================================ +14:23:57 Slot Id : <391> +14:23:57 Transaction Type : RESPONSE +14:23:57 Received From : +14:23:57 ============================================================================ +14:23:57 FNo. Len. Field Value +14:23:57 ============================================================================ +14:23:57 [ 1] [ 4] [0210] +14:23:57 [ 2] [ 16] [6688990108267806] +14:23:57 [ 3] [ 6] [010000] +14:23:57 [ 4] [ 12] [000010000000] +14:23:57 [ 11] [ 6] [769469] +14:23:57 [ 12] [ 6] [142350] +14:23:57 [ 15] [ 4] [0320] +14:23:57 [ 18] [ 4] [6011] +14:23:57 [ 32] [ 6] [621354] +14:23:57 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:23:57 [ 37] [ 12] [507904635702] +14:23:57 [ 38] [ 6] [117169] +14:23:57 [ 39] [ 2] [00] +14:23:57 [ 41] [ 8] [17000800] +14:23:57 [ 49] [ 3] [418] +14:23:57 [ 54] [ 20] [0002418C000510415377] +14:23:57 ============================================================================ +14:23:57 Sending to : +14:23:57 ============================================================================ +14:23:57 + + +waiting on router queue for slot.... +14:23:58 ============================================================================ +14:23:58 Slot Id : <417> +14:23:58 Transaction Type : REQUEST +14:23:58 Received From : +14:23:58 ============================================================================ +14:23:58 FNo. Len. Field Value +14:23:58 ============================================================================ +14:23:58 [ 1] [ 4] [0800] +14:23:58 [ 7] [ 10] [0320072305] +14:23:58 [ 11] [ 6] [156773] +14:23:58 [ 70] [ 3] [301] +14:23:58 ============================================================================ +14:23:58 + + +waiting on router queue for slot.... +14:23:58 Sending to : +14:23:58 ============================================================================ +14:23:58 ============================================================================ +14:23:58 Slot Id : <417> +14:23:58 Transaction Type : RESPONSE +14:23:58 Received From : +14:23:58 ============================================================================ +14:23:58 FNo. Len. Field Value +14:23:58 ============================================================================ +14:23:58 [ 1] [ 4] [0810] +14:23:58 [ 7] [ 10] [0320072305] +14:23:58 [ 11] [ 6] [156773] +14:23:58 [ 39] [ 2] [00] +14:23:58 [ 70] [ 3] [301] +14:23:58 ============================================================================ +14:23:58 Calculate Source COMM Id = 2 +14:23:58 ============================================================================ +14:23:58 + + +waiting on router queue for slot.... +14:23:58 ============================================================================ +14:23:58 Slot Id : <391> +14:23:58 Transaction Type : RESPONSE +14:23:58 Received From : +14:23:58 ============================================================================ +14:23:58 FNo. Len. Field Value +14:23:58 ============================================================================ +14:23:58 [ 1] [ 4] [0210] +14:23:58 [ 2] [ 16] [6688990108267806] +14:23:58 [ 3] [ 6] [010000] +14:23:58 [ 4] [ 12] [000010000000] +14:23:58 [ 11] [ 6] [769469] +14:23:58 [ 12] [ 6] [142350] +14:23:58 [ 15] [ 4] [0320] +14:23:58 [ 18] [ 4] [6011] +14:23:58 [ 32] [ 6] [621354] +14:23:58 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:23:58 [ 37] [ 12] [507904635702] +14:23:58 [ 38] [ 6] [117169] +14:23:58 [ 39] [ 2] [00] +14:23:58 [ 41] [ 8] [17000800] +14:23:58 [ 49] [ 3] [418] +14:23:58 [ 54] [ 20] [0002418C000510415377] +14:23:58 ============================================================================ +14:23:58 Calculate Source COMM Id = 0 +14:23:58 ============================================================================ +14:23:58 + + +waiting on router queue for slot.... +14:24:02 ============================================================================ +14:24:02 Slot Id : <443> +14:24:02 Transaction Type : REQUEST +14:24:02 Received From : +14:24:02 ============================================================================ +14:24:02 FNo. Len. Field Value +14:24:02 ============================================================================ +14:24:02 [ 1] [ 4] [0200] +14:24:02 [ 2] [ 16] [1808930100004555] +14:24:02 [ 3] [ 6] [011000] +14:24:02 [ 4] [ 12] [000030000000] +14:24:02 [ 7] [ 10] [0320142357] +14:24:02 [ 11] [ 6] [769502] +14:24:02 [ 12] [ 6] [142357] +14:24:02 [ 13] [ 4] [0320] +14:24:02 [ 15] [ 4] [0320] +14:24:02 [ 18] [ 4] [6011] +14:24:02 [ 22] [ 3] [900] +14:24:02 [ 25] [ 2] [02] +14:24:02 [ 28] [ 9] [D00002000] +14:24:02 [ 32] [ 6] [621354] +14:24:02 [ 35] [ 27] [1808930100004555=1803500795] +14:24:02 [ 37] [ 12] [507903675623] +14:24:02 [ 41] [ 8] [16002000] +14:24:02 [ 42] [ 15] [NATIVE ] +14:24:02 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +14:24:02 [ 49] [ 3] [418] +14:24:02 [ 52] [ 16] [E51F2EFE13EEB383] +14:24:02 ============================================================================ +14:24:02 + + +waiting on router queue for slot.... +14:24:02 Sending to : +14:24:02 ============================================================================ +14:24:02 Sending to : +14:24:02 ============================================================================ +14:24:02 ============================================================================ +14:24:02 Slot Id : <443> +14:24:02 Transaction Type : REQUEST +14:24:02 Received From : +14:24:02 ============================================================================ +14:24:02 FNo. Len. Field Value +14:24:02 ============================================================================ +14:24:02 [ 1] [ 4] [0200] +14:24:02 [ 2] [ 16] [1808930100004555] +14:24:02 [ 3] [ 6] [011000] +14:24:02 [ 4] [ 12] [000030000000] +14:24:02 [ 7] [ 10] [0320142357] +14:24:02 [ 11] [ 6] [769502] +14:24:02 [ 12] [ 6] [142357] +14:24:02 [ 13] [ 4] [0320] +14:24:02 [ 15] [ 4] [0320] +14:24:02 [ 18] [ 4] [6011] +14:24:02 [ 22] [ 3] [900] +14:24:02 [ 25] [ 2] [02] +14:24:02 [ 28] [ 9] [D00002000] +14:24:02 [ 32] [ 6] [621354] +14:24:02 [ 35] [ 27] [1808930100004555=1803500795] +14:24:02 [ 37] [ 12] [507903675623] +14:24:02 [ 41] [ 8] [16002000] +14:24:02 [ 42] [ 15] [NATIVE ] +14:24:02 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +14:24:02 [ 49] [ 3] [418] +14:24:02 [ 52] [ 16] [E51F2EFE13EEB383] +14:24:02 ============================================================================ +14:24:02 + + +waiting on router queue for slot.... +14:24:02 Sending to : +14:24:02 ============================================================================ +14:24:02 ============================================================================ +14:24:02 Slot Id : <443> +14:24:02 Transaction Type : REQUEST +14:24:02 Received From : +14:24:02 ============================================================================ +14:24:02 FNo. Len. Field Value +14:24:02 ============================================================================ +14:24:02 [ 1] [ 4] [0200] +14:24:02 [ 2] [ 16] [1808930100004555] +14:24:02 [ 3] [ 6] [011000] +14:24:02 [ 4] [ 12] [000030000000] +14:24:02 [ 7] [ 10] [0320142357] +14:24:02 [ 11] [ 6] [769502] +14:24:02 [ 12] [ 6] [142357] +14:24:02 [ 13] [ 4] [0320] +14:24:02 [ 15] [ 4] [0320] +14:24:02 [ 18] [ 4] [6011] +14:24:02 [ 22] [ 3] [900] +14:24:02 [ 25] [ 2] [02] +14:24:02 [ 28] [ 9] [D00002000] +14:24:02 [ 32] [ 6] [621354] +14:24:02 [ 35] [ 27] [1808930100004555=1803500795] +14:24:02 [ 37] [ 12] [507903675623] +14:24:02 [ 41] [ 8] [16002000] +14:24:02 [ 42] [ 15] [NATIVE ] +14:24:02 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +14:24:02 [ 49] [ 3] [418] +14:24:02 [ 52] [ 16] [919A35FFB01C5A40] +14:24:02 ============================================================================ +14:24:02 + + +waiting on router queue for slot.... +14:24:02 Sending to : <2> +14:24:02 ============================================================================ +14:24:04 ============================================================================ +14:24:04 Slot Id : <443> +14:24:04 Transaction Type : RESPONSE +14:24:04 Received From : +14:24:04 ============================================================================ +14:24:04 FNo. Len. Field Value +14:24:04 ============================================================================ +14:24:04 [ 1] [ 4] [0210] +14:24:04 [ 2] [ 16] [1808930100004555] +14:24:04 [ 3] [ 6] [011000] +14:24:04 [ 4] [ 12] [000030000000] +14:24:04 [ 6] [ 12] [000030000000] +14:24:04 [ 7] [ 10] [0320142357] +14:24:04 [ 11] [ 6] [769502] +14:24:04 [ 12] [ 6] [142357] +14:24:04 [ 13] [ 4] [0320] +14:24:04 [ 18] [ 4] [6011] +14:24:04 [ 19] [ 3] [418] +14:24:04 [ 22] [ 3] [021] +14:24:04 [ 32] [ 6] [621354] +14:24:04 [ 35] [ 27] [1808930100004555=1803500795] +14:24:04 [ 37] [ 12] [507903675623] +14:24:04 [ 38] [ 6] [769502] +14:24:04 [ 39] [ 2] [00] +14:24:04 [ 41] [ 8] [16002000] +14:24:04 [ 49] [ 3] [418] +14:24:04 [ 52] [ 16] [919A35FFB01C5A40] +14:24:04 [ 54] [ 20] [1001418C000167955500] +14:24:04 ============================================================================ +14:24:04 Sending to : +14:24:04 ============================================================================ +14:24:04 + + +waiting on router queue for slot.... +14:24:05 ============================================================================ +14:24:05 Slot Id : <443> +14:24:05 Transaction Type : RESPONSE +14:24:05 Received From : +14:24:05 ============================================================================ +14:24:05 FNo. Len. Field Value +14:24:05 ============================================================================ +14:24:05 [ 1] [ 4] [0210] +14:24:05 [ 2] [ 16] [1808930100004555] +14:24:05 [ 3] [ 6] [011000] +14:24:05 [ 4] [ 12] [000030000000] +14:24:05 [ 6] [ 12] [000030000000] +14:24:05 [ 7] [ 10] [0320142357] +14:24:05 [ 11] [ 6] [769502] +14:24:05 [ 12] [ 6] [142357] +14:24:05 [ 13] [ 4] [0320] +14:24:05 [ 18] [ 4] [6011] +14:24:05 [ 19] [ 3] [418] +14:24:05 [ 22] [ 3] [021] +14:24:05 [ 32] [ 6] [621354] +14:24:05 [ 35] [ 27] [1808930100004555=1803500795] +14:24:05 [ 37] [ 12] [507903675623] +14:24:05 [ 38] [ 6] [769502] +14:24:05 [ 39] [ 2] [00] +14:24:05 [ 41] [ 8] [16002000] +14:24:05 [ 49] [ 3] [418] +14:24:05 [ 52] [ 16] [919A35FFB01C5A40] +14:24:05 [ 54] [ 20] [1001418C000167955500] +14:24:05 ============================================================================ +14:24:05 Calculate Source COMM Id = 0 +14:24:05 ============================================================================ +14:24:05 + + +waiting on router queue for slot.... +14:24:10 ============================================================================ +14:24:10 Slot Id : <377> +14:24:10 Transaction Type : REQUEST +14:24:10 Received From : +14:24:10 ============================================================================ +14:24:10 FNo. Len. Field Value +14:24:10 ============================================================================ +14:24:10 [ 1] [ 4] [0200] +14:24:10 [ 2] [ 16] [6688990030018756] +14:24:10 [ 3] [ 6] [012000] +14:24:10 [ 4] [ 12] [000100000000] +14:24:10 [ 7] [ 10] [0320142406] +14:24:10 [ 11] [ 6] [769531] +14:24:10 [ 12] [ 6] [142406] +14:24:10 [ 13] [ 4] [0320] +14:24:10 [ 15] [ 4] [0320] +14:24:10 [ 18] [ 4] [6011] +14:24:10 [ 22] [ 3] [900] +14:24:10 [ 25] [ 2] [02] +14:24:10 [ 28] [ 9] [D00002000] +14:24:10 [ 32] [ 6] [621354] +14:24:10 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:24:10 [ 37] [ 12] [507904660735] +14:24:10 [ 41] [ 8] [17001100] +14:24:10 [ 42] [ 15] [NATIVE ] +14:24:10 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:24:10 [ 49] [ 3] [418] +14:24:10 [ 52] [ 16] [14CBE7654C6164F4] +14:24:10 ============================================================================ +14:24:10 + + +waiting on router queue for slot.... +14:24:10 Sending to : +14:24:10 ============================================================================ +14:24:10 Sending to : +14:24:10 ============================================================================ +14:24:11 ============================================================================ +14:24:11 Slot Id : <377> +14:24:11 Transaction Type : REQUEST +14:24:11 Received From : +14:24:11 ============================================================================ +14:24:11 FNo. Len. Field Value +14:24:11 ============================================================================ +14:24:11 [ 1] [ 4] [0200] +14:24:11 [ 2] [ 16] [6688990030018756] +14:24:11 [ 3] [ 6] [012000] +14:24:11 [ 4] [ 12] [000100000000] +14:24:11 [ 7] [ 10] [0320142406] +14:24:11 [ 11] [ 6] [769531] +14:24:11 [ 12] [ 6] [142406] +14:24:11 [ 13] [ 4] [0320] +14:24:11 [ 15] [ 4] [0320] +14:24:11 [ 18] [ 4] [6011] +14:24:11 [ 22] [ 3] [900] +14:24:11 [ 25] [ 2] [02] +14:24:11 [ 28] [ 9] [D00002000] +14:24:11 [ 32] [ 6] [621354] +14:24:11 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:24:11 [ 37] [ 12] [507904660735] +14:24:11 [ 41] [ 8] [17001100] +14:24:11 [ 42] [ 15] [NATIVE ] +14:24:11 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:24:11 [ 49] [ 3] [418] +14:24:11 [ 52] [ 16] [14CBE7654C6164F4] +14:24:11 ============================================================================ +14:24:11 + + +waiting on router queue for slot.... +14:24:11 Sending to : +14:24:11 ============================================================================ +14:24:11 ============================================================================ +14:24:11 Slot Id : <377> +14:24:11 Transaction Type : REQUEST +14:24:11 Received From : +14:24:11 ============================================================================ +14:24:11 FNo. Len. Field Value +14:24:11 ============================================================================ +14:24:11 [ 1] [ 4] [0200] +14:24:11 [ 2] [ 16] [6688990030018756] +14:24:11 [ 3] [ 6] [012000] +14:24:11 [ 4] [ 12] [000100000000] +14:24:11 [ 7] [ 10] [0320142406] +14:24:11 [ 11] [ 6] [769531] +14:24:11 [ 12] [ 6] [142406] +14:24:11 [ 13] [ 4] [0320] +14:24:11 [ 15] [ 4] [0320] +14:24:11 [ 18] [ 4] [6011] +14:24:11 [ 22] [ 3] [900] +14:24:11 [ 25] [ 2] [02] +14:24:11 [ 28] [ 9] [D00002000] +14:24:11 [ 32] [ 6] [621354] +14:24:11 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:24:11 [ 37] [ 12] [507904660735] +14:24:11 [ 41] [ 8] [17001100] +14:24:11 [ 42] [ 15] [NATIVE ] +14:24:11 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:24:11 [ 49] [ 3] [418] +14:24:11 [ 52] [ 16] [C170D77DCA82B481] +14:24:11 ============================================================================ +14:24:11 + + +waiting on router queue for slot.... +14:24:11 Sending to : <4> +14:24:11 ============================================================================ +14:24:13 ============================================================================ +14:24:13 Slot Id : <377> +14:24:13 Transaction Type : RESPONSE +14:24:13 Received From : +14:24:13 ============================================================================ +14:24:13 FNo. Len. Field Value +14:24:13 ============================================================================ +14:24:13 [ 1] [ 4] [0210] +14:24:13 [ 2] [ 16] [6688990030018756] +14:24:13 [ 3] [ 6] [012000] +14:24:13 [ 4] [ 12] [000100000000] +14:24:13 [ 11] [ 6] [769531] +14:24:13 [ 12] [ 6] [142406] +14:24:13 [ 15] [ 4] [0320] +14:24:13 [ 18] [ 4] [6011] +14:24:13 [ 32] [ 6] [621354] +14:24:13 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:24:13 [ 37] [ 12] [507904660735] +14:24:13 [ 38] [ 6] [596752] +14:24:13 [ 39] [ 2] [00] +14:24:13 [ 41] [ 8] [17001100] +14:24:13 [ 49] [ 3] [418] +14:24:13 [ 54] [ 20] [2002418C000719800000] +14:24:13 ============================================================================ +14:24:13 Sending to : +14:24:13 ============================================================================ +14:24:13 + + +waiting on router queue for slot.... +14:24:14 ============================================================================ +14:24:14 Slot Id : <377> +14:24:14 Transaction Type : RESPONSE +14:24:14 Received From : +14:24:14 ============================================================================ +14:24:14 FNo. Len. Field Value +14:24:14 ============================================================================ +14:24:14 [ 1] [ 4] [0210] +14:24:14 [ 2] [ 16] [6688990030018756] +14:24:14 [ 3] [ 6] [012000] +14:24:14 [ 4] [ 12] [000100000000] +14:24:14 [ 11] [ 6] [769531] +14:24:14 [ 12] [ 6] [142406] +14:24:14 [ 15] [ 4] [0320] +14:24:14 [ 18] [ 4] [6011] +14:24:14 [ 32] [ 6] [621354] +14:24:14 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:24:14 [ 37] [ 12] [507904660735] +14:24:14 [ 38] [ 6] [596752] +14:24:14 [ 39] [ 2] [00] +14:24:14 [ 41] [ 8] [17001100] +14:24:14 [ 49] [ 3] [418] +14:24:14 [ 54] [ 20] [2002418C000719800000] +14:24:14 ============================================================================ +14:24:14 Calculate Source COMM Id = 0 +14:24:14 ============================================================================ +14:24:14 + + +waiting on router queue for slot.... +14:24:16 ============================================================================ +14:24:16 Slot Id : <405> +14:24:16 Transaction Type : REQUEST +14:24:16 Received From : +14:24:16 ============================================================================ +14:24:16 FNo. Len. Field Value +14:24:16 ============================================================================ +14:24:16 [ 1] [ 4] [0800] +14:24:16 [ 7] [ 10] [0320072323] +14:24:16 [ 11] [ 6] [156774] +14:24:16 [ 70] [ 3] [301] +14:24:16 ============================================================================ +14:24:16 + + +waiting on router queue for slot.... +14:24:16 Sending to : +14:24:16 ============================================================================ +14:24:16 ============================================================================ +14:24:16 Slot Id : <405> +14:24:16 Transaction Type : RESPONSE +14:24:16 Received From : +14:24:16 ============================================================================ +14:24:16 FNo. Len. Field Value +14:24:16 ============================================================================ +14:24:16 [ 1] [ 4] [0810] +14:24:16 [ 7] [ 10] [0320072323] +14:24:16 [ 11] [ 6] [156774] +14:24:16 [ 39] [ 2] [00] +14:24:16 [ 70] [ 3] [301] +14:24:16 ============================================================================ +14:24:16 Calculate Source COMM Id = 2 +14:24:16 ============================================================================ +14:24:16 + + +waiting on router queue for slot.... +14:24:19 ============================================================================ +14:24:19 Slot Id : <386> +14:24:19 Transaction Type : REQUEST +14:24:19 Received From : +14:24:19 ============================================================================ +14:24:19 FNo. Len. Field Value +14:24:19 ============================================================================ +14:24:19 [ 1] [ 4] [0800] +14:24:19 [ 7] [ 10] [0320213608] +14:24:19 [ 11] [ 6] [143608] +14:24:19 [ 37] [ 12] [57914143608] +14:24:19 [ 70] [ 3] [301] +14:24:19 ============================================================================ +14:24:19 + + +waiting on router queue for slot.... +14:24:19 Sending to : +14:24:19 ============================================================================ +14:24:19 ============================================================================ +14:24:19 Slot Id : <386> +14:24:19 Transaction Type : RESPONSE +14:24:19 Received From : +14:24:19 ============================================================================ +14:24:19 FNo. Len. Field Value +14:24:19 ============================================================================ +14:24:19 [ 1] [ 4] [0810] +14:24:19 [ 7] [ 10] [0320213608] +14:24:19 [ 11] [ 6] [143608] +14:24:19 [ 37] [ 12] [579141436080] +14:24:19 [ 39] [ 2] [00] +14:24:19 [ 70] [ 3] [810] +14:24:19 ============================================================================ +14:24:19 Calculate Source COMM Id = 6 +14:24:19 ============================================================================ +14:24:19 + + +waiting on router queue for slot.... +14:24:23 ============================================================================ +14:24:23 Slot Id : <429> +14:24:23 Transaction Type : REQUEST +14:24:23 Received From : +14:24:23 ============================================================================ +14:24:23 FNo. Len. Field Value +14:24:23 ============================================================================ +14:24:23 [ 1] [ 4] [0200] +14:24:23 [ 2] [ 16] [6688990107839308] +14:24:23 [ 3] [ 6] [301000] +14:24:23 [ 4] [ 12] [000000000000] +14:24:23 [ 7] [ 10] [0320142418] +14:24:23 [ 11] [ 6] [769563] +14:24:23 [ 12] [ 6] [142418] +14:24:23 [ 13] [ 4] [0320] +14:24:23 [ 15] [ 4] [0320] +14:24:23 [ 18] [ 4] [6011] +14:24:23 [ 22] [ 3] [900] +14:24:23 [ 25] [ 2] [02] +14:24:23 [ 28] [ 9] [D00000000] +14:24:23 [ 32] [ 6] [621354] +14:24:23 [ 35] [ 37] [6688990107839308=44041231930804300000] +14:24:23 [ 37] [ 12] [507903837615] +14:24:23 [ 41] [ 8] [01009900] +14:24:23 [ 42] [ 15] [NATIVE ] +14:24:23 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +14:24:23 [ 49] [ 3] [418] +14:24:23 [ 52] [ 16] [F642FFAC3E4F38AD] +14:24:23 ============================================================================ +14:24:23 + + +waiting on router queue for slot.... +14:24:23 Sending to : +14:24:23 ============================================================================ +14:24:23 Sending to : +14:24:23 ============================================================================ +14:24:23 ============================================================================ +14:24:23 Slot Id : <429> +14:24:23 Transaction Type : REQUEST +14:24:23 Received From : +14:24:23 ============================================================================ +14:24:23 FNo. Len. Field Value +14:24:23 ============================================================================ +14:24:23 [ 1] [ 4] [0200] +14:24:23 [ 2] [ 16] [6688990107839308] +14:24:23 [ 3] [ 6] [301000] +14:24:23 [ 4] [ 12] [000000000000] +14:24:23 [ 7] [ 10] [0320142418] +14:24:23 [ 11] [ 6] [769563] +14:24:23 [ 12] [ 6] [142418] +14:24:23 [ 13] [ 4] [0320] +14:24:23 [ 15] [ 4] [0320] +14:24:23 [ 18] [ 4] [6011] +14:24:23 [ 22] [ 3] [900] +14:24:23 [ 25] [ 2] [02] +14:24:23 [ 28] [ 9] [D00000000] +14:24:23 [ 32] [ 6] [621354] +14:24:23 [ 35] [ 37] [6688990107839308=44041231930804300000] +14:24:23 [ 37] [ 12] [507903837615] +14:24:23 [ 41] [ 8] [01009900] +14:24:23 [ 42] [ 15] [NATIVE ] +14:24:23 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +14:24:23 [ 49] [ 3] [418] +14:24:23 [ 52] [ 16] [F642FFAC3E4F38AD] +14:24:23 ============================================================================ +14:24:23 + + +waiting on router queue for slot.... +14:24:23 Sending to : +14:24:23 ============================================================================ +14:24:23 ============================================================================ +14:24:23 Slot Id : <429> +14:24:23 Transaction Type : REQUEST +14:24:23 Received From : +14:24:23 ============================================================================ +14:24:23 FNo. Len. Field Value +14:24:23 ============================================================================ +14:24:23 [ 1] [ 4] [0200] +14:24:23 [ 2] [ 16] [6688990107839308] +14:24:23 [ 3] [ 6] [301000] +14:24:23 [ 4] [ 12] [000000000000] +14:24:23 [ 7] [ 10] [0320142418] +14:24:23 [ 11] [ 6] [769563] +14:24:23 [ 12] [ 6] [142418] +14:24:23 [ 13] [ 4] [0320] +14:24:23 [ 15] [ 4] [0320] +14:24:23 [ 18] [ 4] [6011] +14:24:23 [ 22] [ 3] [900] +14:24:23 [ 25] [ 2] [02] +14:24:23 [ 28] [ 9] [D00000000] +14:24:23 [ 32] [ 6] [621354] +14:24:23 [ 35] [ 37] [6688990107839308=44041231930804300000] +14:24:23 [ 37] [ 12] [507903837615] +14:24:23 [ 41] [ 8] [01009900] +14:24:23 [ 42] [ 15] [NATIVE ] +14:24:23 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +14:24:23 [ 49] [ 3] [418] +14:24:23 [ 52] [ 16] [068CC7B0A1BF4959] +14:24:23 ============================================================================ +14:24:23 + + +waiting on router queue for slot.... +14:24:23 Sending to : <4> +14:24:23 ============================================================================ +14:24:23 ============================================================================ +14:24:23 Slot Id : <429> +14:24:23 Transaction Type : RESPONSE +14:24:23 Received From : +14:24:23 ============================================================================ +14:24:23 FNo. Len. Field Value +14:24:23 ============================================================================ +14:24:23 [ 1] [ 4] [0210] +14:24:23 [ 2] [ 16] [6688990107839308] +14:24:23 [ 3] [ 6] [301000] +14:24:23 [ 4] [ 12] [000000000000] +14:24:23 [ 7] [ 10] [0320142418] +14:24:23 [ 11] [ 6] [769563] +14:24:23 [ 12] [ 6] [142418] +14:24:23 [ 13] [ 4] [0320] +14:24:23 [ 15] [ 4] [0320] +14:24:23 [ 18] [ 4] [6011] +14:24:23 [ 22] [ 3] [021] +14:24:23 [ 32] [ 6] [621354] +14:24:23 [ 35] [ 37] [6688990107839308=44041231930804300000] +14:24:23 [ 37] [ 12] [507903837615] +14:24:23 [ 38] [ 6] [142213] +14:24:23 [ 39] [ 2] [55] +14:24:23 [ 41] [ 8] [01009900] +14:24:23 [ 49] [ 3] [418] +14:24:23 ============================================================================ +14:24:23 Sending to : +14:24:23 ============================================================================ +14:24:23 + + +waiting on router queue for slot.... +14:24:24 ============================================================================ +14:24:24 Slot Id : <429> +14:24:24 Transaction Type : RESPONSE +14:24:24 Received From : +14:24:24 ============================================================================ +14:24:24 FNo. Len. Field Value +14:24:24 ============================================================================ +14:24:24 [ 1] [ 4] [0210] +14:24:24 [ 2] [ 16] [6688990107839308] +14:24:24 [ 3] [ 6] [301000] +14:24:24 [ 4] [ 12] [000000000000] +14:24:24 [ 7] [ 10] [0320142418] +14:24:24 [ 11] [ 6] [769563] +14:24:24 [ 12] [ 6] [142418] +14:24:24 [ 13] [ 4] [0320] +14:24:24 [ 15] [ 4] [0320] +14:24:24 [ 18] [ 4] [6011] +14:24:24 [ 22] [ 3] [021] +14:24:24 [ 32] [ 6] [621354] +14:24:24 [ 35] [ 37] [6688990107839308=44041231930804300000] +14:24:24 [ 37] [ 12] [507903837615] +14:24:24 [ 38] [ 6] [142213] +14:24:24 [ 39] [ 2] [55] +14:24:24 [ 41] [ 8] [01009900] +14:24:24 [ 49] [ 3] [418] +14:24:24 ============================================================================ +14:24:24 Calculate Source COMM Id = 0 +14:24:24 ============================================================================ +14:24:24 + + +waiting on router queue for slot.... +14:24:30 ============================================================================ +14:24:30 Slot Id : <446> +14:24:30 Transaction Type : REQUEST +14:24:30 Received From : +14:24:30 ============================================================================ +14:24:30 FNo. Len. Field Value +14:24:30 ============================================================================ +14:24:30 [ 1] [ 4] [0800] +14:24:30 [ 2] [ 5] [02531] +14:24:30 [ 3] [ 6] [579148] +14:24:30 [ 7] [ 10] [0320072430] +14:24:30 [ 11] [ 6] [807248] +14:24:30 [ 15] [ 10] [0320072430] +14:24:30 [ 37] [ 11] [57914807248] +14:24:30 [ 70] [ 3] [001] +14:24:30 ============================================================================ +14:24:30 + + +waiting on router queue for slot.... +14:24:30 ============================================================================ +14:24:30 Slot Id : <446> +14:24:30 Transaction Type : RESPONSE +14:24:30 Received From : +14:24:30 ============================================================================ +14:24:30 FNo. Len. Field Value +14:24:30 ============================================================================ +14:24:30 [ 1] [ 4] [0810] +14:24:30 [ 7] [ 10] [0320072430] +14:24:30 [ 11] [ 6] [807248] +14:24:30 [ 15] [ 4] [0320] +14:24:30 [ 37] [ 12] [57914807248] +14:24:30 [ 39] [ 2] [00] +14:24:30 [ 70] [ 3] [001] +14:24:30 ============================================================================ +14:24:30 Sending to : +14:24:30 ============================================================================ +14:24:30 + + +waiting on router queue for slot.... +14:24:32 ============================================================================ +14:24:32 Slot Id : <456> +14:24:32 Transaction Type : REQUEST +14:24:32 Received From : +14:24:32 ============================================================================ +14:24:32 FNo. Len. Field Value +14:24:32 ============================================================================ +14:24:32 [ 1] [ 4] [0800] +14:24:32 [ 7] [ 10] [0320072340] +14:24:32 [ 11] [ 6] [156775] +14:24:32 [ 70] [ 3] [301] +14:24:32 ============================================================================ +14:24:32 + + +waiting on router queue for slot.... +14:24:32 Sending to : +14:24:32 ============================================================================ +14:24:32 ============================================================================ +14:24:32 Slot Id : <456> +14:24:32 Transaction Type : RESPONSE +14:24:32 Received From : +14:24:32 ============================================================================ +14:24:32 FNo. Len. Field Value +14:24:32 ============================================================================ +14:24:32 [ 1] [ 4] [0810] +14:24:32 [ 7] [ 10] [0320072340] +14:24:32 [ 11] [ 6] [156775] +14:24:32 [ 39] [ 2] [00] +14:24:32 [ 70] [ 3] [301] +14:24:32 ============================================================================ +14:24:32 Calculate Source COMM Id = 2 +14:24:32 ============================================================================ +14:24:32 + + +waiting on router queue for slot.... +14:24:36 ============================================================================ +14:24:36 Slot Id : <404> +14:24:36 Transaction Type : REQUEST +14:24:36 Received From : +14:24:36 ============================================================================ +14:24:36 FNo. Len. Field Value +14:24:36 ============================================================================ +14:24:36 [ 1] [ 4] [0200] +14:24:36 [ 2] [ 16] [6688990104022007] +14:24:36 [ 3] [ 6] [011000] +14:24:36 [ 4] [ 12] [000030000000] +14:24:36 [ 7] [ 10] [0320072342] +14:24:36 [ 11] [ 6] [269640] +14:24:36 [ 12] [ 6] [142342] +14:24:36 [ 13] [ 4] [0320] +14:24:36 [ 14] [ 4] [4302] +14:24:36 [ 15] [ 4] [0320] +14:24:36 [ 18] [ 4] [6011] +14:24:36 [ 19] [ 3] [418] +14:24:36 [ 22] [ 3] [021] +14:24:36 [ 25] [ 2] [01] +14:24:36 [ 28] [ 9] [D00002000] +14:24:36 [ 32] [ 6] [180893] +14:24:36 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:24:36 [ 37] [ 12] [507907269640] +14:24:36 [ 41] [ 8] [0421BKPH] +14:24:36 [ 42] [ 15] [999999 ] +14:24:36 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:24:36 [ 49] [ 3] [418] +14:24:36 [ 52] [ 16] [473334DCBE911001] +14:24:36 ============================================================================ +14:24:36 + + +waiting on router queue for slot.... +14:24:36 Sending to : +14:24:36 ============================================================================ +14:24:36 Sending to : +14:24:36 ============================================================================ +14:24:36 ============================================================================ +14:24:36 Slot Id : <404> +14:24:36 Transaction Type : REQUEST +14:24:36 Received From : +14:24:36 ============================================================================ +14:24:36 FNo. Len. Field Value +14:24:36 ============================================================================ +14:24:36 [ 1] [ 4] [0200] +14:24:36 [ 2] [ 16] [6688990104022007] +14:24:36 [ 3] [ 6] [011000] +14:24:36 [ 4] [ 12] [000030000000] +14:24:36 [ 7] [ 10] [0320072342] +14:24:36 [ 11] [ 6] [269640] +14:24:36 [ 12] [ 6] [142342] +14:24:36 [ 13] [ 4] [0320] +14:24:36 [ 14] [ 4] [4302] +14:24:36 [ 15] [ 4] [0320] +14:24:36 [ 18] [ 4] [6011] +14:24:36 [ 19] [ 3] [418] +14:24:36 [ 22] [ 3] [021] +14:24:36 [ 25] [ 2] [01] +14:24:36 [ 28] [ 9] [D00002000] +14:24:36 [ 32] [ 6] [180893] +14:24:36 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:24:36 [ 37] [ 12] [507907269640] +14:24:36 [ 41] [ 8] [0421BKPH] +14:24:36 [ 42] [ 15] [999999 ] +14:24:36 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:24:36 [ 49] [ 3] [418] +14:24:36 [ 52] [ 16] [473334DCBE911001] +14:24:36 ============================================================================ +14:24:36 + + +waiting on router queue for slot.... +14:24:36 Sending to : +14:24:36 ============================================================================ +14:24:36 ============================================================================ +14:24:36 Slot Id : <404> +14:24:36 Transaction Type : REQUEST +14:24:36 Received From : +14:24:36 ============================================================================ +14:24:36 FNo. Len. Field Value +14:24:36 ============================================================================ +14:24:36 [ 1] [ 4] [0200] +14:24:36 [ 2] [ 16] [6688990104022007] +14:24:36 [ 3] [ 6] [011000] +14:24:36 [ 4] [ 12] [000030000000] +14:24:36 [ 7] [ 10] [0320072342] +14:24:36 [ 11] [ 6] [269640] +14:24:36 [ 12] [ 6] [142342] +14:24:36 [ 13] [ 4] [0320] +14:24:36 [ 14] [ 4] [4302] +14:24:36 [ 15] [ 4] [0320] +14:24:36 [ 18] [ 4] [6011] +14:24:36 [ 19] [ 3] [418] +14:24:36 [ 22] [ 3] [021] +14:24:36 [ 25] [ 2] [01] +14:24:36 [ 28] [ 9] [D00002000] +14:24:36 [ 32] [ 6] [180893] +14:24:36 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:24:36 [ 37] [ 12] [507907269640] +14:24:36 [ 41] [ 8] [0421BKPH] +14:24:36 [ 42] [ 15] [999999 ] +14:24:36 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:24:36 [ 49] [ 3] [418] +14:24:36 [ 52] [ 16] [3F768CEE6B61742D] +14:24:36 ============================================================================ +14:24:36 + + +waiting on router queue for slot.... +14:24:36 Sending to : <0> +14:24:36 ============================================================================ +14:24:36 ============================================================================ +14:24:36 Slot Id : <404> +14:24:36 Transaction Type : RESPONSE +14:24:36 Received From : +14:24:36 ============================================================================ +14:24:36 FNo. Len. Field Value +14:24:36 ============================================================================ +14:24:36 [ 1] [ 4] [0210] +14:24:36 [ 2] [ 16] [6688990104022007] +14:24:36 [ 3] [ 6] [011000] +14:24:36 [ 4] [ 12] [000030000000] +14:24:36 [ 7] [ 10] [0320072342] +14:24:36 [ 11] [ 6] [269640] +14:24:36 [ 12] [ 6] [142342] +14:24:36 [ 13] [ 4] [0320] +14:24:36 [ 15] [ 4] [0320] +14:24:36 [ 18] [ 4] [6011] +14:24:36 [ 19] [ 3] [418] +14:24:36 [ 22] [ 3] [021] +14:24:36 [ 32] [ 6] [180893] +14:24:36 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:24:36 [ 37] [ 12] [507907269640] +14:24:36 [ 39] [ 2] [14] +14:24:36 [ 41] [ 8] [0421BKPH] +14:24:36 [ 49] [ 3] [418] +14:24:36 ============================================================================ +14:24:36 Sending to : +14:24:36 ============================================================================ +14:24:36 + + +waiting on router queue for slot.... +14:24:37 ============================================================================ +14:24:37 Slot Id : <404> +14:24:37 Transaction Type : RESPONSE +14:24:37 Received From : +14:24:37 ============================================================================ +14:24:37 FNo. Len. Field Value +14:24:37 ============================================================================ +14:24:37 [ 1] [ 4] [0210] +14:24:37 [ 2] [ 16] [6688990104022007] +14:24:37 [ 3] [ 6] [011000] +14:24:37 [ 4] [ 12] [000030000000] +14:24:37 [ 7] [ 10] [0320072342] +14:24:37 [ 11] [ 6] [269640] +14:24:37 [ 12] [ 6] [142342] +14:24:37 [ 13] [ 4] [0320] +14:24:37 [ 15] [ 4] [0320] +14:24:37 [ 18] [ 4] [6011] +14:24:37 [ 19] [ 3] [418] +14:24:37 [ 22] [ 3] [021] +14:24:37 [ 32] [ 6] [180893] +14:24:37 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:24:37 [ 37] [ 12] [507907269640] +14:24:37 [ 39] [ 2] [14] +14:24:37 [ 41] [ 8] [0421BKPH] +14:24:37 [ 49] [ 3] [418] +14:24:37 ============================================================================ +14:24:37 Calculate Source COMM Id = 2 +14:24:37 ============================================================================ +14:24:37 + + +waiting on router queue for slot.... +14:24:43 ============================================================================ +14:24:43 Slot Id : <424> +14:24:43 Transaction Type : REQUEST +14:24:43 Received From : +14:24:43 ============================================================================ +14:24:43 FNo. Len. Field Value +14:24:43 ============================================================================ +14:24:43 [ 1] [ 4] [0200] +14:24:43 [ 2] [ 16] [6688990107839308] +14:24:43 [ 3] [ 6] [301000] +14:24:43 [ 4] [ 12] [000000000000] +14:24:43 [ 7] [ 10] [0320142439] +14:24:43 [ 11] [ 6] [769633] +14:24:43 [ 12] [ 6] [142439] +14:24:43 [ 13] [ 4] [0320] +14:24:43 [ 15] [ 4] [0320] +14:24:43 [ 18] [ 4] [6011] +14:24:43 [ 22] [ 3] [900] +14:24:43 [ 25] [ 2] [02] +14:24:43 [ 28] [ 9] [D00000000] +14:24:43 [ 32] [ 6] [621354] +14:24:43 [ 35] [ 37] [6688990107839308=44041231930804300000] +14:24:43 [ 37] [ 12] [507903837616] +14:24:43 [ 41] [ 8] [01009900] +14:24:43 [ 42] [ 15] [NATIVE ] +14:24:43 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +14:24:43 [ 49] [ 3] [418] +14:24:43 [ 52] [ 16] [68D9EA6B695529AA] +14:24:43 ============================================================================ +14:24:43 + + +waiting on router queue for slot.... +14:24:43 Sending to : +14:24:43 ============================================================================ +14:24:43 Sending to : +14:24:43 ============================================================================ +14:24:44 ============================================================================ +14:24:44 Slot Id : <424> +14:24:44 Transaction Type : REQUEST +14:24:44 Received From : +14:24:44 ============================================================================ +14:24:44 FNo. Len. Field Value +14:24:44 ============================================================================ +14:24:44 [ 1] [ 4] [0200] +14:24:44 [ 2] [ 16] [6688990107839308] +14:24:44 [ 3] [ 6] [301000] +14:24:44 [ 4] [ 12] [000000000000] +14:24:44 [ 7] [ 10] [0320142439] +14:24:44 [ 11] [ 6] [769633] +14:24:44 [ 12] [ 6] [142439] +14:24:44 [ 13] [ 4] [0320] +14:24:44 [ 15] [ 4] [0320] +14:24:44 [ 18] [ 4] [6011] +14:24:44 [ 22] [ 3] [900] +14:24:44 [ 25] [ 2] [02] +14:24:44 [ 28] [ 9] [D00000000] +14:24:44 [ 32] [ 6] [621354] +14:24:44 [ 35] [ 37] [6688990107839308=44041231930804300000] +14:24:44 [ 37] [ 12] [507903837616] +14:24:44 [ 41] [ 8] [01009900] +14:24:44 [ 42] [ 15] [NATIVE ] +14:24:44 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +14:24:44 [ 49] [ 3] [418] +14:24:44 [ 52] [ 16] [68D9EA6B695529AA] +14:24:44 ============================================================================ +14:24:44 + + +waiting on router queue for slot.... +14:24:44 Sending to : +14:24:44 ============================================================================ +14:24:44 ============================================================================ +14:24:44 Slot Id : <424> +14:24:44 Transaction Type : REQUEST +14:24:44 Received From : +14:24:44 ============================================================================ +14:24:44 FNo. Len. Field Value +14:24:44 ============================================================================ +14:24:44 [ 1] [ 4] [0200] +14:24:44 [ 2] [ 16] [6688990107839308] +14:24:44 [ 3] [ 6] [301000] +14:24:44 [ 4] [ 12] [000000000000] +14:24:44 [ 7] [ 10] [0320142439] +14:24:44 [ 11] [ 6] [769633] +14:24:44 [ 12] [ 6] [142439] +14:24:44 [ 13] [ 4] [0320] +14:24:44 [ 15] [ 4] [0320] +14:24:44 [ 18] [ 4] [6011] +14:24:44 [ 22] [ 3] [900] +14:24:44 [ 25] [ 2] [02] +14:24:44 [ 28] [ 9] [D00000000] +14:24:44 [ 32] [ 6] [621354] +14:24:44 [ 35] [ 37] [6688990107839308=44041231930804300000] +14:24:44 [ 37] [ 12] [507903837616] +14:24:44 [ 41] [ 8] [01009900] +14:24:44 [ 42] [ 15] [NATIVE ] +14:24:44 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +14:24:44 [ 49] [ 3] [418] +14:24:44 [ 52] [ 16] [4E91DD582574BF2B] +14:24:44 ============================================================================ +14:24:44 + + +waiting on router queue for slot.... +14:24:44 Sending to : <4> +14:24:44 ============================================================================ +14:24:45 ============================================================================ +14:24:45 Slot Id : <424> +14:24:45 Transaction Type : RESPONSE +14:24:45 Received From : +14:24:45 ============================================================================ +14:24:45 FNo. Len. Field Value +14:24:45 ============================================================================ +14:24:45 [ 1] [ 4] [0210] +14:24:45 [ 2] [ 16] [6688990107839308] +14:24:45 [ 3] [ 6] [301000] +14:24:45 [ 4] [ 12] [000000000000] +14:24:45 [ 11] [ 6] [769633] +14:24:45 [ 12] [ 6] [142439] +14:24:45 [ 15] [ 4] [0320] +14:24:45 [ 18] [ 4] [6011] +14:24:45 [ 32] [ 6] [621354] +14:24:45 [ 35] [ 37] [6688990107839308=44041231930804300000] +14:24:45 [ 37] [ 12] [507903837616] +14:24:45 [ 38] [ 6] [617062] +14:24:45 [ 39] [ 2] [00] +14:24:45 [ 41] [ 8] [01009900] +14:24:45 [ 49] [ 3] [418] +14:24:45 [ 54] [ 20] [1002418C000062386395] +14:24:45 ============================================================================ +14:24:45 Sending to : +14:24:45 ============================================================================ +14:24:45 + + +waiting on router queue for slot.... +14:24:46 ============================================================================ +14:24:46 Slot Id : <424> +14:24:46 Transaction Type : RESPONSE +14:24:46 Received From : +14:24:46 ============================================================================ +14:24:46 FNo. Len. Field Value +14:24:46 ============================================================================ +14:24:46 [ 1] [ 4] [0210] +14:24:46 [ 2] [ 16] [6688990107839308] +14:24:46 [ 3] [ 6] [301000] +14:24:46 [ 4] [ 12] [000000000000] +14:24:46 [ 11] [ 6] [769633] +14:24:46 [ 12] [ 6] [142439] +14:24:46 [ 15] [ 4] [0320] +14:24:46 [ 18] [ 4] [6011] +14:24:46 [ 32] [ 6] [621354] +14:24:46 [ 35] [ 37] [6688990107839308=44041231930804300000] +14:24:46 [ 37] [ 12] [507903837616] +14:24:46 [ 38] [ 6] [617062] +14:24:46 [ 39] [ 2] [00] +14:24:46 [ 41] [ 8] [01009900] +14:24:46 [ 49] [ 3] [418] +14:24:46 [ 54] [ 20] [1002418C000062386395] +14:24:46 ============================================================================ +14:24:46 Calculate Source COMM Id = 0 +14:24:46 ============================================================================ +14:24:46 + + +waiting on router queue for slot.... +14:24:49 ============================================================================ +14:24:49 Slot Id : <445> +14:24:49 Transaction Type : REQUEST +14:24:49 Received From : +14:24:49 ============================================================================ +14:24:49 FNo. Len. Field Value +14:24:49 ============================================================================ +14:24:49 [ 1] [ 4] [0800] +14:24:49 [ 7] [ 10] [0320072356] +14:24:49 [ 11] [ 6] [156776] +14:24:49 [ 70] [ 3] [301] +14:24:49 ============================================================================ +14:24:49 + + +waiting on router queue for slot.... +14:24:49 Sending to : +14:24:49 ============================================================================ +14:24:49 ============================================================================ +14:24:49 Slot Id : <445> +14:24:49 Transaction Type : RESPONSE +14:24:49 Received From : +14:24:49 ============================================================================ +14:24:49 FNo. Len. Field Value +14:24:49 ============================================================================ +14:24:49 [ 1] [ 4] [0810] +14:24:49 [ 7] [ 10] [0320072356] +14:24:49 [ 11] [ 6] [156776] +14:24:49 [ 39] [ 2] [00] +14:24:49 [ 70] [ 3] [301] +14:24:49 ============================================================================ +14:24:49 Calculate Source COMM Id = 2 +14:24:49 ============================================================================ +14:24:49 + + +waiting on router queue for slot.... +14:24:55 ============================================================================ +14:24:55 Slot Id : <435> +14:24:55 Transaction Type : REQUEST +14:24:55 Received From : +14:24:55 ============================================================================ +14:24:55 FNo. Len. Field Value +14:24:55 ============================================================================ +14:24:55 [ 1] [ 4] [0800] +14:24:55 [ 7] [ 10] [0320073242] +14:24:55 [ 11] [ 6] [034592] +14:24:55 [ 37] [ 12] [57914034592] +14:24:55 [ 70] [ 3] [301] +14:24:55 ============================================================================ +14:24:55 + + +waiting on router queue for slot.... +14:24:55 Sending to : +14:24:55 ============================================================================ +14:24:55 ============================================================================ +14:24:55 Slot Id : <435> +14:24:55 Transaction Type : RESPONSE +14:24:55 Received From : +14:24:55 ============================================================================ +14:24:55 FNo. Len. Field Value +14:24:55 ============================================================================ +14:24:55 [ 1] [ 4] [0810] +14:24:55 [ 7] [ 10] [0320073242] +14:24:55 [ 11] [ 6] [034592] +14:24:55 [ 37] [ 12] [579140345920] +14:24:55 [ 39] [ 2] [00] +14:24:55 [ 70] [ 3] [810] +14:24:55 ============================================================================ +14:24:55 Calculate Source COMM Id = 1 +14:24:55 ============================================================================ +14:24:55 + + +waiting on router queue for slot.... +14:24:59 ============================================================================ +14:24:59 Slot Id : <442> +14:24:59 Transaction Type : REQUEST +14:24:59 Received From : +14:24:59 ============================================================================ +14:24:59 FNo. Len. Field Value +14:24:59 ============================================================================ +14:24:59 [ 1] [ 4] [0200] +14:24:59 [ 2] [ 16] [6213548000242519] +14:24:59 [ 3] [ 6] [010000] +14:24:59 [ 4] [ 12] [000010000000] +14:24:59 [ 7] [ 10] [0320072406] +14:24:59 [ 11] [ 6] [269643] +14:24:59 [ 12] [ 6] [142406] +14:24:59 [ 13] [ 4] [0320] +14:24:59 [ 14] [ 4] [1801] +14:24:59 [ 15] [ 4] [0320] +14:24:59 [ 18] [ 4] [6011] +14:24:59 [ 19] [ 3] [418] +14:24:59 [ 22] [ 3] [021] +14:24:59 [ 25] [ 2] [01] +14:24:59 [ 28] [ 9] [D00002000] +14:24:59 [ 32] [ 6] [180893] +14:24:59 [ 35] [ 32] [6213548000242519=180112014251235] +14:24:59 [ 37] [ 12] [507907269643] +14:24:59 [ 41] [ 8] [0522XYXH] +14:24:59 [ 42] [ 15] [999999 ] +14:24:59 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +14:24:59 [ 49] [ 3] [418] +14:24:59 [ 52] [ 16] [1D0EABFEDA61A73F] +14:24:59 ============================================================================ +14:24:59 + + +waiting on router queue for slot.... +14:24:59 Sending to : +14:24:59 ============================================================================ +14:24:59 Sending to : +14:24:59 ============================================================================ +14:24:59 ============================================================================ +14:24:59 Slot Id : <442> +14:24:59 Transaction Type : REQUEST +14:24:59 Received From : +14:24:59 ============================================================================ +14:24:59 FNo. Len. Field Value +14:24:59 ============================================================================ +14:24:59 [ 1] [ 4] [0200] +14:24:59 [ 2] [ 16] [6213548000242519] +14:24:59 [ 3] [ 6] [010000] +14:24:59 [ 4] [ 12] [000010000000] +14:24:59 [ 7] [ 10] [0320072406] +14:24:59 [ 11] [ 6] [269643] +14:24:59 [ 12] [ 6] [142406] +14:24:59 [ 13] [ 4] [0320] +14:24:59 [ 14] [ 4] [1801] +14:24:59 [ 15] [ 4] [0320] +14:24:59 [ 18] [ 4] [6011] +14:24:59 [ 19] [ 3] [418] +14:24:59 [ 22] [ 3] [021] +14:24:59 [ 25] [ 2] [01] +14:24:59 [ 28] [ 9] [D00002000] +14:24:59 [ 32] [ 6] [180893] +14:24:59 [ 35] [ 32] [6213548000242519=180112014251235] +14:24:59 [ 37] [ 12] [507907269643] +14:24:59 [ 41] [ 8] [0522XYXH] +14:24:59 [ 42] [ 15] [999999 ] +14:24:59 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +14:24:59 [ 49] [ 3] [418] +14:24:59 [ 52] [ 16] [1D0EABFEDA61A73F] +14:24:59 ============================================================================ +14:24:59 + + +waiting on router queue for slot.... +14:24:59 Sending to : +14:24:59 ============================================================================ +14:24:59 ============================================================================ +14:24:59 Slot Id : <442> +14:24:59 Transaction Type : REQUEST +14:24:59 Received From : +14:24:59 ============================================================================ +14:24:59 FNo. Len. Field Value +14:24:59 ============================================================================ +14:24:59 [ 1] [ 4] [0200] +14:24:59 [ 2] [ 16] [6213548000242519] +14:24:59 [ 3] [ 6] [010000] +14:24:59 [ 4] [ 12] [000010000000] +14:24:59 [ 7] [ 10] [0320072406] +14:24:59 [ 11] [ 6] [269643] +14:24:59 [ 12] [ 6] [142406] +14:24:59 [ 13] [ 4] [0320] +14:24:59 [ 14] [ 4] [1801] +14:24:59 [ 15] [ 4] [0320] +14:24:59 [ 18] [ 4] [6011] +14:24:59 [ 19] [ 3] [418] +14:24:59 [ 22] [ 3] [021] +14:24:59 [ 25] [ 2] [01] +14:24:59 [ 28] [ 9] [D00002000] +14:24:59 [ 32] [ 6] [180893] +14:24:59 [ 35] [ 32] [6213548000242519=180112014251235] +14:24:59 [ 37] [ 12] [507907269643] +14:24:59 [ 41] [ 8] [0522XYXH] +14:24:59 [ 42] [ 15] [999999 ] +14:24:59 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +14:24:59 [ 49] [ 3] [418] +14:24:59 [ 52] [ 16] [8AC6E7810F56F598] +14:24:59 ============================================================================ +14:24:59 + + +waiting on router queue for slot.... +14:24:59 Sending to : <0> +14:24:59 ============================================================================ +14:25:00 ============================================================================ +14:25:00 Slot Id : <438> +14:25:00 Transaction Type : REQUEST +14:25:00 Received From : +14:25:00 ============================================================================ +14:25:00 FNo. Len. Field Value +14:25:00 ============================================================================ +14:25:00 [ 1] [ 4] [0800] +14:25:00 [ 7] [ 10] [0320072406] +14:25:00 [ 11] [ 6] [156777] +14:25:00 [ 70] [ 3] [301] +14:25:00 ============================================================================ +14:25:00 + + +waiting on router queue for slot.... +14:25:00 Sending to : +14:25:00 ============================================================================ +14:25:00 ============================================================================ +14:25:00 Slot Id : <438> +14:25:00 Transaction Type : RESPONSE +14:25:00 Received From : +14:25:00 ============================================================================ +14:25:00 FNo. Len. Field Value +14:25:00 ============================================================================ +14:25:00 [ 1] [ 4] [0810] +14:25:00 [ 7] [ 10] [0320072406] +14:25:00 [ 11] [ 6] [156777] +14:25:00 [ 39] [ 2] [00] +14:25:00 [ 70] [ 3] [301] +14:25:00 ============================================================================ +14:25:00 Calculate Source COMM Id = 2 +14:25:00 ============================================================================ +14:25:00 + + +waiting on router queue for slot.... +14:25:00 ============================================================================ +14:25:00 Slot Id : <442> +14:25:00 Transaction Type : RESPONSE +14:25:00 Received From : +14:25:00 ============================================================================ +14:25:00 FNo. Len. Field Value +14:25:00 ============================================================================ +14:25:00 [ 1] [ 4] [0210] +14:25:00 [ 2] [ 16] [6213548000242519] +14:25:00 [ 3] [ 6] [010000] +14:25:00 [ 4] [ 12] [000010000000] +14:25:00 [ 7] [ 10] [0320072406] +14:25:00 [ 11] [ 6] [269643] +14:25:00 [ 12] [ 6] [142406] +14:25:00 [ 13] [ 4] [0320] +14:25:00 [ 15] [ 4] [0320] +14:25:00 [ 18] [ 4] [6011] +14:25:00 [ 19] [ 3] [418] +14:25:00 [ 32] [ 6] [180893] +14:25:00 [ 35] [ 32] [6213548000242519=180112014251235] +14:25:00 [ 37] [ 12] [507907269643] +14:25:00 [ 38] [ 6] [936503] +14:25:00 [ 39] [ 2] [00] +14:25:00 [ 41] [ 8] [0522XYXH] +14:25:00 [ 49] [ 3] [418] +14:25:00 [ 54] [ 40] [0001418C0000151295480002418C000015129548] +14:25:00 ============================================================================ +14:25:00 Sending to : +14:25:00 ============================================================================ +14:25:00 + + +waiting on router queue for slot.... +14:25:01 ============================================================================ +14:25:01 Slot Id : <442> +14:25:01 Transaction Type : RESPONSE +14:25:01 Received From : +14:25:01 ============================================================================ +14:25:01 FNo. Len. Field Value +14:25:01 ============================================================================ +14:25:01 [ 1] [ 4] [0210] +14:25:01 [ 2] [ 16] [6213548000242519] +14:25:01 [ 3] [ 6] [010000] +14:25:01 [ 4] [ 12] [000010000000] +14:25:01 [ 7] [ 10] [0320072406] +14:25:01 [ 11] [ 6] [269643] +14:25:01 [ 12] [ 6] [142406] +14:25:01 [ 13] [ 4] [0320] +14:25:01 [ 15] [ 4] [0320] +14:25:01 [ 18] [ 4] [6011] +14:25:01 [ 19] [ 3] [418] +14:25:01 [ 32] [ 6] [180893] +14:25:01 [ 35] [ 32] [6213548000242519=180112014251235] +14:25:01 [ 37] [ 12] [507907269643] +14:25:01 [ 38] [ 6] [936503] +14:25:01 [ 39] [ 2] [00] +14:25:01 [ 41] [ 8] [0522XYXH] +14:25:01 [ 49] [ 3] [418] +14:25:01 [ 54] [ 40] [0001418C0000151295480002418C000015129548] +14:25:01 ============================================================================ +14:25:01 Calculate Source COMM Id = 2 +14:25:01 ============================================================================ +14:25:01 + + +waiting on router queue for slot.... +14:25:02 ============================================================================ +14:25:02 Slot Id : <434> +14:25:02 Transaction Type : REQUEST +14:25:02 Received From : +14:25:02 ============================================================================ +14:25:02 FNo. Len. Field Value +14:25:02 ============================================================================ +14:25:02 [ 1] [ 4] [0200] +14:25:02 [ 2] [ 16] [1888880000082578] +14:25:02 [ 3] [ 6] [011000] +14:25:02 [ 4] [ 12] [000002000000] +14:25:02 [ 7] [ 10] [0320142457] +14:25:02 [ 11] [ 6] [769725] +14:25:02 [ 12] [ 6] [142457] +14:25:02 [ 13] [ 4] [0320] +14:25:02 [ 15] [ 4] [0320] +14:25:02 [ 18] [ 4] [6011] +14:25:02 [ 22] [ 3] [900] +14:25:02 [ 25] [ 2] [02] +14:25:02 [ 28] [ 9] [D00002000] +14:25:02 [ 32] [ 6] [621354] +14:25:02 [ 35] [ 32] [1888880000082578=000010100000279] +14:25:02 [ 37] [ 12] [507903161335] +14:25:02 [ 41] [ 8] [04002600] +14:25:02 [ 42] [ 15] [NATIVE ] +14:25:02 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +14:25:02 [ 49] [ 3] [418] +14:25:02 [ 52] [ 16] [12149EA42FC24DD2] +14:25:02 ============================================================================ +14:25:02 + + +waiting on router queue for slot.... +14:25:02 Sending to : +14:25:02 ============================================================================ +14:25:02 Sending to : +14:25:02 ============================================================================ +14:25:02 ============================================================================ +14:25:02 Slot Id : <434> +14:25:02 Transaction Type : REQUEST +14:25:02 Received From : +14:25:02 ============================================================================ +14:25:02 FNo. Len. Field Value +14:25:02 ============================================================================ +14:25:02 [ 1] [ 4] [0200] +14:25:02 [ 2] [ 16] [1888880000082578] +14:25:02 [ 3] [ 6] [011000] +14:25:02 [ 4] [ 12] [000002000000] +14:25:02 [ 7] [ 10] [0320142457] +14:25:02 [ 11] [ 6] [769725] +14:25:02 [ 12] [ 6] [142457] +14:25:02 [ 13] [ 4] [0320] +14:25:02 [ 15] [ 4] [0320] +14:25:02 [ 18] [ 4] [6011] +14:25:02 [ 22] [ 3] [900] +14:25:02 [ 25] [ 2] [02] +14:25:02 [ 28] [ 9] [D00002000] +14:25:02 [ 32] [ 6] [621354] +14:25:02 [ 35] [ 32] [1888880000082578=000010100000279] +14:25:02 [ 37] [ 12] [507903161335] +14:25:02 [ 41] [ 8] [04002600] +14:25:02 [ 42] [ 15] [NATIVE ] +14:25:02 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +14:25:02 [ 49] [ 3] [418] +14:25:02 [ 52] [ 16] [12149EA42FC24DD2] +14:25:02 ============================================================================ +14:25:02 + + +waiting on router queue for slot.... +14:25:02 Sending to : +14:25:02 ============================================================================ +14:25:02 ============================================================================ +14:25:02 Slot Id : <434> +14:25:02 Transaction Type : REQUEST +14:25:02 Received From : +14:25:02 ============================================================================ +14:25:02 FNo. Len. Field Value +14:25:02 ============================================================================ +14:25:02 [ 1] [ 4] [0200] +14:25:02 [ 2] [ 16] [1888880000082578] +14:25:02 [ 3] [ 6] [011000] +14:25:02 [ 4] [ 12] [000002000000] +14:25:02 [ 7] [ 10] [0320142457] +14:25:02 [ 11] [ 6] [769725] +14:25:02 [ 12] [ 6] [142457] +14:25:02 [ 13] [ 4] [0320] +14:25:02 [ 15] [ 4] [0320] +14:25:02 [ 18] [ 4] [6011] +14:25:02 [ 22] [ 3] [900] +14:25:02 [ 25] [ 2] [02] +14:25:02 [ 28] [ 9] [D00002000] +14:25:02 [ 32] [ 6] [621354] +14:25:02 [ 35] [ 32] [1888880000082578=000010100000279] +14:25:02 [ 37] [ 12] [507903161335] +14:25:02 [ 41] [ 8] [04002600] +14:25:02 [ 42] [ 15] [NATIVE ] +14:25:02 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +14:25:02 [ 49] [ 3] [418] +14:25:02 [ 52] [ 16] [D8660359B3F328AC] +14:25:02 ============================================================================ +14:25:02 + + +waiting on router queue for slot.... +14:25:02 Sending to : <5> +14:25:02 ============================================================================ +14:25:10 ============================================================================ +14:25:10 Slot Id : <434> +14:25:10 Transaction Type : RESPONSE +14:25:10 Received From : +14:25:10 ============================================================================ +14:25:10 FNo. Len. Field Value +14:25:10 ============================================================================ +14:25:10 [ 1] [ 4] [0210] +14:25:10 [ 2] [ 16] [1888880000082578] +14:25:10 [ 3] [ 6] [011000] +14:25:10 [ 4] [ 12] [000002000000] +14:25:10 [ 7] [ 10] [0320142457] +14:25:10 [ 11] [ 6] [769725] +14:25:10 [ 12] [ 6] [142457] +14:25:10 [ 13] [ 4] [0320] +14:25:10 [ 15] [ 4] [0320] +14:25:10 [ 18] [ 4] [6011] +14:25:10 [ 19] [ 3] [418] +14:25:10 [ 32] [ 6] [621354] +14:25:10 [ 37] [ 12] [507903161335] +14:25:10 [ 38] [ 6] [994839] +14:25:10 [ 39] [ 2] [00] +14:25:10 [ 41] [ 8] [04002600] +14:25:10 [ 49] [ 3] [418] +14:25:10 [ 54] [ 0] [] +14:25:10 ============================================================================ +14:25:10 Sending to : +14:25:10 ============================================================================ +14:25:10 + + +waiting on router queue for slot.... +14:25:12 ============================================================================ +14:25:12 Slot Id : <434> +14:25:12 Transaction Type : RESPONSE +14:25:12 Received From : +14:25:12 ============================================================================ +14:25:12 FNo. Len. Field Value +14:25:12 ============================================================================ +14:25:12 [ 1] [ 4] [0210] +14:25:12 [ 2] [ 16] [1888880000082578] +14:25:12 [ 3] [ 6] [011000] +14:25:12 [ 4] [ 12] [000002000000] +14:25:12 [ 7] [ 10] [0320142457] +14:25:12 [ 11] [ 6] [769725] +14:25:12 [ 12] [ 6] [142457] +14:25:12 [ 13] [ 4] [0320] +14:25:12 [ 15] [ 4] [0320] +14:25:12 [ 18] [ 4] [6011] +14:25:12 [ 19] [ 3] [418] +14:25:12 [ 32] [ 6] [621354] +14:25:12 [ 37] [ 12] [507903161335] +14:25:12 [ 38] [ 6] [994839] +14:25:12 [ 39] [ 2] [00] +14:25:12 [ 41] [ 8] [04002600] +14:25:12 [ 49] [ 3] [418] +14:25:12 [ 54] [ 0] [] +14:25:12 ============================================================================ +14:25:12 Calculate Source COMM Id = 0 +14:25:12 ============================================================================ +14:25:12 + + +waiting on router queue for slot.... +14:25:15 ============================================================================ +14:25:15 Slot Id : <427> +14:25:15 Transaction Type : REQUEST +14:25:15 Received From : +14:25:15 ============================================================================ +14:25:15 FNo. Len. Field Value +14:25:15 ============================================================================ +14:25:15 [ 1] [ 4] [0800] +14:25:15 [ 7] [ 10] [0320072422] +14:25:15 [ 11] [ 6] [156778] +14:25:15 [ 70] [ 3] [301] +14:25:15 ============================================================================ +14:25:15 + + +waiting on router queue for slot.... +14:25:15 Sending to : +14:25:15 ============================================================================ +14:25:15 ============================================================================ +14:25:15 Slot Id : <427> +14:25:15 Transaction Type : RESPONSE +14:25:15 Received From : +14:25:15 ============================================================================ +14:25:15 FNo. Len. Field Value +14:25:15 ============================================================================ +14:25:15 [ 1] [ 4] [0810] +14:25:15 [ 7] [ 10] [0320072422] +14:25:15 [ 11] [ 6] [156778] +14:25:15 [ 39] [ 2] [00] +14:25:15 [ 70] [ 3] [301] +14:25:15 ============================================================================ +14:25:15 Calculate Source COMM Id = 2 +14:25:15 ============================================================================ +14:25:15 + + +waiting on router queue for slot.... +14:25:21 ============================================================================ +14:25:21 Slot Id : <451> +14:25:21 Transaction Type : REQUEST +14:25:21 Received From : +14:25:21 ============================================================================ +14:25:21 FNo. Len. Field Value +14:25:21 ============================================================================ +14:25:21 [ 1] [ 4] [0200] +14:25:21 [ 2] [ 16] [6688990108267806] +14:25:21 [ 3] [ 6] [010000] +14:25:21 [ 4] [ 12] [000010000000] +14:25:21 [ 7] [ 10] [0320142517] +14:25:21 [ 11] [ 6] [769790] +14:25:21 [ 12] [ 6] [142517] +14:25:21 [ 13] [ 4] [0320] +14:25:21 [ 15] [ 4] [0320] +14:25:21 [ 18] [ 4] [6011] +14:25:21 [ 22] [ 3] [900] +14:25:21 [ 25] [ 2] [02] +14:25:21 [ 28] [ 9] [D00002000] +14:25:21 [ 32] [ 6] [621354] +14:25:21 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:25:21 [ 37] [ 12] [507904635704] +14:25:21 [ 41] [ 8] [17000800] +14:25:21 [ 42] [ 15] [NATIVE ] +14:25:21 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:25:21 [ 49] [ 3] [418] +14:25:21 [ 52] [ 16] [930DFA4DBAD11624] +14:25:21 ============================================================================ +14:25:21 + + +waiting on router queue for slot.... +14:25:21 Sending to : +14:25:21 ============================================================================ +14:25:21 Sending to : +14:25:21 ============================================================================ +14:25:22 ============================================================================ +14:25:22 Slot Id : <451> +14:25:22 Transaction Type : REQUEST +14:25:22 Received From : +14:25:22 ============================================================================ +14:25:22 FNo. Len. Field Value +14:25:22 ============================================================================ +14:25:22 [ 1] [ 4] [0200] +14:25:22 [ 2] [ 16] [6688990108267806] +14:25:22 [ 3] [ 6] [010000] +14:25:22 [ 4] [ 12] [000010000000] +14:25:22 [ 7] [ 10] [0320142517] +14:25:22 [ 11] [ 6] [769790] +14:25:22 [ 12] [ 6] [142517] +14:25:22 [ 13] [ 4] [0320] +14:25:22 [ 15] [ 4] [0320] +14:25:22 [ 18] [ 4] [6011] +14:25:22 [ 22] [ 3] [900] +14:25:22 [ 25] [ 2] [02] +14:25:22 [ 28] [ 9] [D00002000] +14:25:22 [ 32] [ 6] [621354] +14:25:22 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:25:22 [ 37] [ 12] [507904635704] +14:25:22 [ 41] [ 8] [17000800] +14:25:22 [ 42] [ 15] [NATIVE ] +14:25:22 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:25:22 [ 49] [ 3] [418] +14:25:22 [ 52] [ 16] [930DFA4DBAD11624] +14:25:22 ============================================================================ +14:25:22 + + +waiting on router queue for slot.... +14:25:22 Sending to : +14:25:22 ============================================================================ +14:25:22 ============================================================================ +14:25:22 Slot Id : <451> +14:25:22 Transaction Type : REQUEST +14:25:22 Received From : +14:25:22 ============================================================================ +14:25:22 FNo. Len. Field Value +14:25:22 ============================================================================ +14:25:22 [ 1] [ 4] [0200] +14:25:22 [ 2] [ 16] [6688990108267806] +14:25:22 [ 3] [ 6] [010000] +14:25:22 [ 4] [ 12] [000010000000] +14:25:22 [ 7] [ 10] [0320142517] +14:25:22 [ 11] [ 6] [769790] +14:25:22 [ 12] [ 6] [142517] +14:25:22 [ 13] [ 4] [0320] +14:25:22 [ 15] [ 4] [0320] +14:25:22 [ 18] [ 4] [6011] +14:25:22 [ 22] [ 3] [900] +14:25:22 [ 25] [ 2] [02] +14:25:22 [ 28] [ 9] [D00002000] +14:25:22 [ 32] [ 6] [621354] +14:25:22 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:25:22 [ 37] [ 12] [507904635704] +14:25:22 [ 41] [ 8] [17000800] +14:25:22 [ 42] [ 15] [NATIVE ] +14:25:22 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:25:22 [ 49] [ 3] [418] +14:25:22 [ 52] [ 16] [2BA469B635D647A1] +14:25:22 ============================================================================ +14:25:22 + + +waiting on router queue for slot.... +14:25:22 Sending to : <4> +14:25:22 ============================================================================ +14:25:23 ============================================================================ +14:25:23 Slot Id : <451> +14:25:23 Transaction Type : RESPONSE +14:25:23 Received From : +14:25:23 ============================================================================ +14:25:23 FNo. Len. Field Value +14:25:23 ============================================================================ +14:25:23 [ 1] [ 4] [0210] +14:25:23 [ 2] [ 16] [6688990108267806] +14:25:23 [ 3] [ 6] [010000] +14:25:23 [ 4] [ 12] [000010000000] +14:25:23 [ 11] [ 6] [769790] +14:25:23 [ 12] [ 6] [142517] +14:25:23 [ 15] [ 4] [0320] +14:25:23 [ 18] [ 4] [6011] +14:25:23 [ 32] [ 6] [621354] +14:25:23 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:25:23 [ 37] [ 12] [507904635704] +14:25:23 [ 38] [ 6] [367583] +14:25:23 [ 39] [ 2] [00] +14:25:23 [ 41] [ 8] [17000800] +14:25:23 [ 49] [ 3] [418] +14:25:23 [ 54] [ 20] [0002418C000500215377] +14:25:23 ============================================================================ +14:25:23 Sending to : +14:25:23 ============================================================================ +14:25:23 + + +waiting on router queue for slot.... +14:25:24 ============================================================================ +14:25:24 Slot Id : <428> +14:25:24 Transaction Type : REQUEST +14:25:24 Received From : +14:25:24 ============================================================================ +14:25:24 FNo. Len. Field Value +14:25:24 ============================================================================ +14:25:24 [ 1] [ 4] [0800] +14:25:24 [ 7] [ 10] [0320213713] +14:25:24 [ 11] [ 6] [143713] +14:25:24 [ 37] [ 12] [57914143713] +14:25:24 [ 70] [ 3] [301] +14:25:24 ============================================================================ +14:25:24 + + +waiting on router queue for slot.... +14:25:24 Sending to : +14:25:24 ============================================================================ +14:25:24 ============================================================================ +14:25:24 Slot Id : <428> +14:25:24 Transaction Type : RESPONSE +14:25:24 Received From : +14:25:24 ============================================================================ +14:25:24 FNo. Len. Field Value +14:25:24 ============================================================================ +14:25:24 [ 1] [ 4] [0810] +14:25:24 [ 7] [ 10] [0320213713] +14:25:24 [ 11] [ 6] [143713] +14:25:24 [ 37] [ 12] [579141437130] +14:25:24 [ 39] [ 2] [00] +14:25:24 [ 70] [ 3] [810] +14:25:24 ============================================================================ +14:25:24 Calculate Source COMM Id = 6 +14:25:24 ============================================================================ +14:25:24 + + +waiting on router queue for slot.... +14:25:24 ============================================================================ +14:25:24 Slot Id : <451> +14:25:24 Transaction Type : RESPONSE +14:25:24 Received From : +14:25:24 ============================================================================ +14:25:24 FNo. Len. Field Value +14:25:24 ============================================================================ +14:25:24 [ 1] [ 4] [0210] +14:25:24 [ 2] [ 16] [6688990108267806] +14:25:24 [ 3] [ 6] [010000] +14:25:24 [ 4] [ 12] [000010000000] +14:25:24 [ 11] [ 6] [769790] +14:25:24 [ 12] [ 6] [142517] +14:25:24 [ 15] [ 4] [0320] +14:25:24 [ 18] [ 4] [6011] +14:25:24 [ 32] [ 6] [621354] +14:25:24 [ 35] [ 37] [6688990108267806=44051231780610300000] +14:25:24 [ 37] [ 12] [507904635704] +14:25:24 [ 38] [ 6] [367583] +14:25:24 [ 39] [ 2] [00] +14:25:24 [ 41] [ 8] [17000800] +14:25:24 [ 49] [ 3] [418] +14:25:24 [ 54] [ 20] [0002418C000500215377] +14:25:24 ============================================================================ +14:25:24 Calculate Source COMM Id = 0 +14:25:24 ============================================================================ +14:25:24 + + +waiting on router queue for slot.... +14:25:26 ============================================================================ +14:25:26 Slot Id : <462> +14:25:26 Transaction Type : REQUEST +14:25:26 Received From : +14:25:26 ============================================================================ +14:25:26 FNo. Len. Field Value +14:25:26 ============================================================================ +14:25:26 [ 1] [ 4] [0800] +14:25:26 [ 7] [ 10] [0320072433] +14:25:26 [ 11] [ 6] [156779] +14:25:26 [ 70] [ 3] [301] +14:25:26 ============================================================================ +14:25:26 + + +waiting on router queue for slot.... +14:25:26 Sending to : +14:25:26 ============================================================================ +14:25:26 ============================================================================ +14:25:26 Slot Id : <462> +14:25:26 Transaction Type : RESPONSE +14:25:26 Received From : +14:25:26 ============================================================================ +14:25:26 FNo. Len. Field Value +14:25:26 ============================================================================ +14:25:26 [ 1] [ 4] [0810] +14:25:26 [ 7] [ 10] [0320072433] +14:25:26 [ 11] [ 6] [156779] +14:25:26 [ 39] [ 2] [00] +14:25:26 [ 70] [ 3] [301] +14:25:26 ============================================================================ +14:25:26 Calculate Source COMM Id = 2 +14:25:26 ============================================================================ +14:25:26 + + +waiting on router queue for slot.... +14:25:32 ============================================================================ +14:25:32 Slot Id : <431> +14:25:32 Transaction Type : REQUEST +14:25:32 Received From : +14:25:32 ============================================================================ +14:25:32 FNo. Len. Field Value +14:25:32 ============================================================================ +14:25:32 [ 1] [ 4] [0800] +14:25:32 [ 2] [ 5] [02531] +14:25:32 [ 3] [ 6] [579148] +14:25:32 [ 7] [ 10] [0320072532] +14:25:32 [ 11] [ 6] [807249] +14:25:32 [ 15] [ 10] [0320072532] +14:25:32 [ 37] [ 11] [57914807249] +14:25:32 [ 70] [ 3] [001] +14:25:32 ============================================================================ +14:25:32 + + +waiting on router queue for slot.... +14:25:32 ============================================================================ +14:25:32 Slot Id : <431> +14:25:32 Transaction Type : RESPONSE +14:25:32 Received From : +14:25:32 ============================================================================ +14:25:32 FNo. Len. Field Value +14:25:32 ============================================================================ +14:25:32 [ 1] [ 4] [0810] +14:25:32 [ 7] [ 10] [0320072532] +14:25:32 [ 11] [ 6] [807249] +14:25:32 [ 15] [ 4] [0320] +14:25:32 [ 37] [ 12] [57914807249] +14:25:32 [ 39] [ 2] [00] +14:25:32 [ 70] [ 3] [001] +14:25:32 ============================================================================ +14:25:32 Sending to : +14:25:32 ============================================================================ +14:25:32 + + +waiting on router queue for slot.... +14:25:41 ============================================================================ +14:25:41 Slot Id : <457> +14:25:41 Transaction Type : REQUEST +14:25:41 Received From : +14:25:41 ============================================================================ +14:25:41 FNo. Len. Field Value +14:25:41 ============================================================================ +14:25:41 [ 1] [ 4] [0200] +14:25:41 [ 2] [ 16] [6688990105511404] +14:25:41 [ 3] [ 6] [300000] +14:25:41 [ 4] [ 12] [000000000000] +14:25:41 [ 7] [ 10] [0320142536] +14:25:41 [ 11] [ 6] [769854] +14:25:41 [ 12] [ 6] [142536] +14:25:41 [ 13] [ 4] [0320] +14:25:41 [ 15] [ 4] [0320] +14:25:41 [ 18] [ 4] [6011] +14:25:41 [ 22] [ 3] [900] +14:25:41 [ 25] [ 2] [02] +14:25:41 [ 28] [ 9] [D00000000] +14:25:41 [ 32] [ 6] [621354] +14:25:41 [ 35] [ 37] [6688990105511404=43091231140487300000] +14:25:41 [ 37] [ 12] [507905382496] +14:25:41 [ 41] [ 8] [12003400] +14:25:41 [ 42] [ 15] [NATIVE ] +14:25:41 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +14:25:41 [ 49] [ 3] [418] +14:25:41 [ 52] [ 16] [4706555C18B43CCC] +14:25:41 ============================================================================ +14:25:41 + + +waiting on router queue for slot.... +14:25:41 Sending to : +14:25:41 ============================================================================ +14:25:41 Sending to : +14:25:41 ============================================================================ +14:25:41 ============================================================================ +14:25:41 Slot Id : <457> +14:25:41 Transaction Type : REQUEST +14:25:41 Received From : +14:25:41 ============================================================================ +14:25:41 FNo. Len. Field Value +14:25:41 ============================================================================ +14:25:41 [ 1] [ 4] [0200] +14:25:41 [ 2] [ 16] [6688990105511404] +14:25:41 [ 3] [ 6] [300000] +14:25:41 [ 4] [ 12] [000000000000] +14:25:41 [ 7] [ 10] [0320142536] +14:25:41 [ 11] [ 6] [769854] +14:25:41 [ 12] [ 6] [142536] +14:25:41 [ 13] [ 4] [0320] +14:25:41 [ 15] [ 4] [0320] +14:25:41 [ 18] [ 4] [6011] +14:25:41 [ 22] [ 3] [900] +14:25:41 [ 25] [ 2] [02] +14:25:41 [ 28] [ 9] [D00000000] +14:25:41 [ 32] [ 6] [621354] +14:25:41 [ 35] [ 37] [6688990105511404=43091231140487300000] +14:25:41 [ 37] [ 12] [507905382496] +14:25:41 [ 41] [ 8] [12003400] +14:25:41 [ 42] [ 15] [NATIVE ] +14:25:41 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +14:25:41 [ 49] [ 3] [418] +14:25:41 [ 52] [ 16] [4706555C18B43CCC] +14:25:41 ============================================================================ +14:25:41 + + +waiting on router queue for slot.... +14:25:41 Sending to : +14:25:41 ============================================================================ +14:25:41 ============================================================================ +14:25:41 Slot Id : <457> +14:25:41 Transaction Type : REQUEST +14:25:41 Received From : +14:25:41 ============================================================================ +14:25:41 FNo. Len. Field Value +14:25:41 ============================================================================ +14:25:41 [ 1] [ 4] [0200] +14:25:41 [ 2] [ 16] [6688990105511404] +14:25:41 [ 3] [ 6] [300000] +14:25:41 [ 4] [ 12] [000000000000] +14:25:41 [ 7] [ 10] [0320142536] +14:25:41 [ 11] [ 6] [769854] +14:25:41 [ 12] [ 6] [142536] +14:25:41 [ 13] [ 4] [0320] +14:25:41 [ 15] [ 4] [0320] +14:25:41 [ 18] [ 4] [6011] +14:25:41 [ 22] [ 3] [900] +14:25:41 [ 25] [ 2] [02] +14:25:41 [ 28] [ 9] [D00000000] +14:25:41 [ 32] [ 6] [621354] +14:25:41 [ 35] [ 37] [6688990105511404=43091231140487300000] +14:25:41 [ 37] [ 12] [507905382496] +14:25:41 [ 41] [ 8] [12003400] +14:25:41 [ 42] [ 15] [NATIVE ] +14:25:41 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +14:25:41 [ 49] [ 3] [418] +14:25:41 [ 52] [ 16] [C3A370E86E1E979C] +14:25:41 ============================================================================ +14:25:41 + + +waiting on router queue for slot.... +14:25:41 Sending to : <4> +14:25:41 ============================================================================ +14:25:41 ============================================================================ +14:25:41 Slot Id : <457> +14:25:41 Transaction Type : RESPONSE +14:25:41 Received From : +14:25:41 ============================================================================ +14:25:41 FNo. Len. Field Value +14:25:41 ============================================================================ +14:25:41 [ 1] [ 4] [0210] +14:25:41 [ 2] [ 16] [6688990105511404] +14:25:41 [ 3] [ 6] [300000] +14:25:41 [ 4] [ 12] [000000000000] +14:25:41 [ 7] [ 10] [0320142536] +14:25:41 [ 11] [ 6] [769854] +14:25:41 [ 12] [ 6] [142536] +14:25:41 [ 13] [ 4] [0320] +14:25:41 [ 15] [ 4] [0320] +14:25:41 [ 18] [ 4] [6011] +14:25:41 [ 22] [ 3] [021] +14:25:41 [ 32] [ 6] [621354] +14:25:41 [ 35] [ 37] [6688990105511404=43091231140487300000] +14:25:41 [ 37] [ 12] [507905382496] +14:25:41 [ 38] [ 6] [142332] +14:25:41 [ 39] [ 2] [55] +14:25:41 [ 41] [ 8] [12003400] +14:25:41 [ 49] [ 3] [418] +14:25:41 ============================================================================ +14:25:41 Sending to : +14:25:41 ============================================================================ +14:25:41 + + +waiting on router queue for slot.... +14:25:41 ============================================================================ +14:25:41 Slot Id : <421> +14:25:41 Transaction Type : REQUEST +14:25:41 Received From : +14:25:41 ============================================================================ +14:25:41 FNo. Len. Field Value +14:25:41 ============================================================================ +14:25:41 [ 1] [ 4] [0800] +14:25:41 [ 7] [ 10] [0320072449] +14:25:41 [ 11] [ 6] [156780] +14:25:41 [ 70] [ 3] [301] +14:25:41 ============================================================================ +14:25:41 + + +waiting on router queue for slot.... +14:25:41 Sending to : +14:25:41 ============================================================================ +14:25:41 ============================================================================ +14:25:41 Slot Id : <421> +14:25:41 Transaction Type : RESPONSE +14:25:41 Received From : +14:25:41 ============================================================================ +14:25:41 FNo. Len. Field Value +14:25:41 ============================================================================ +14:25:41 [ 1] [ 4] [0810] +14:25:41 [ 7] [ 10] [0320072449] +14:25:41 [ 11] [ 6] [156780] +14:25:41 [ 39] [ 2] [00] +14:25:41 [ 70] [ 3] [301] +14:25:41 ============================================================================ +14:25:41 Calculate Source COMM Id = 2 +14:25:41 ============================================================================ +14:25:41 + + +waiting on router queue for slot.... +14:25:43 ============================================================================ +14:25:43 Slot Id : <457> +14:25:43 Transaction Type : RESPONSE +14:25:43 Received From : +14:25:43 ============================================================================ +14:25:43 FNo. Len. Field Value +14:25:43 ============================================================================ +14:25:43 [ 1] [ 4] [0210] +14:25:43 [ 2] [ 16] [6688990105511404] +14:25:43 [ 3] [ 6] [300000] +14:25:43 [ 4] [ 12] [000000000000] +14:25:43 [ 7] [ 10] [0320142536] +14:25:43 [ 11] [ 6] [769854] +14:25:43 [ 12] [ 6] [142536] +14:25:43 [ 13] [ 4] [0320] +14:25:43 [ 15] [ 4] [0320] +14:25:43 [ 18] [ 4] [6011] +14:25:43 [ 22] [ 3] [021] +14:25:43 [ 32] [ 6] [621354] +14:25:43 [ 35] [ 37] [6688990105511404=43091231140487300000] +14:25:43 [ 37] [ 12] [507905382496] +14:25:43 [ 38] [ 6] [142332] +14:25:43 [ 39] [ 2] [55] +14:25:43 [ 41] [ 8] [12003400] +14:25:43 [ 49] [ 3] [418] +14:25:43 ============================================================================ +14:25:43 Calculate Source COMM Id = 0 +14:25:43 ============================================================================ +14:25:43 + + +waiting on router queue for slot.... +14:25:44 ============================================================================ +14:25:44 Slot Id : <426> +14:25:44 Transaction Type : REQUEST +14:25:44 Received From : +14:25:44 ============================================================================ +14:25:44 FNo. Len. Field Value +14:25:44 ============================================================================ +14:25:44 [ 1] [ 4] [0200] +14:25:44 [ 2] [ 16] [6688990040112748] +14:25:44 [ 3] [ 6] [010000] +14:25:44 [ 4] [ 12] [000050000000] +14:25:44 [ 7] [ 10] [0320072451] +14:25:44 [ 11] [ 6] [269649] +14:25:44 [ 12] [ 6] [142451] +14:25:44 [ 13] [ 4] [0320] +14:25:44 [ 14] [ 4] [9803] +14:25:44 [ 15] [ 4] [0320] +14:25:44 [ 18] [ 4] [6011] +14:25:44 [ 19] [ 3] [418] +14:25:44 [ 22] [ 3] [021] +14:25:44 [ 25] [ 2] [01] +14:25:44 [ 28] [ 9] [D00002000] +14:25:44 [ 32] [ 6] [180893] +14:25:44 [ 35] [ 37] [6688990040112748=98031261513567900000] +14:25:44 [ 37] [ 12] [507907269649] +14:25:44 [ 41] [ 8] [0221XKKM] +14:25:44 [ 42] [ 15] [999999 ] +14:25:44 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:25:44 [ 49] [ 3] [418] +14:25:44 [ 52] [ 16] [5B7249C5F76D6E6E] +14:25:44 ============================================================================ +14:25:44 + + +waiting on router queue for slot.... +14:25:44 Sending to : +14:25:44 ============================================================================ +14:25:44 Sending to : +14:25:44 ============================================================================ +14:25:44 ============================================================================ +14:25:44 Slot Id : <426> +14:25:44 Transaction Type : REQUEST +14:25:44 Received From : +14:25:44 ============================================================================ +14:25:44 FNo. Len. Field Value +14:25:44 ============================================================================ +14:25:44 [ 1] [ 4] [0200] +14:25:44 [ 2] [ 16] [6688990040112748] +14:25:44 [ 3] [ 6] [010000] +14:25:44 [ 4] [ 12] [000050000000] +14:25:44 [ 7] [ 10] [0320072451] +14:25:44 [ 11] [ 6] [269649] +14:25:44 [ 12] [ 6] [142451] +14:25:44 [ 13] [ 4] [0320] +14:25:44 [ 14] [ 4] [9803] +14:25:44 [ 15] [ 4] [0320] +14:25:44 [ 18] [ 4] [6011] +14:25:44 [ 19] [ 3] [418] +14:25:44 [ 22] [ 3] [021] +14:25:44 [ 25] [ 2] [01] +14:25:44 [ 28] [ 9] [D00002000] +14:25:44 [ 32] [ 6] [180893] +14:25:44 [ 35] [ 37] [6688990040112748=98031261513567900000] +14:25:44 [ 37] [ 12] [507907269649] +14:25:44 [ 41] [ 8] [0221XKKM] +14:25:44 [ 42] [ 15] [999999 ] +14:25:44 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:25:44 [ 49] [ 3] [418] +14:25:44 [ 52] [ 16] [5B7249C5F76D6E6E] +14:25:44 ============================================================================ +14:25:44 + + +waiting on router queue for slot.... +14:25:44 Sending to : +14:25:44 ============================================================================ +14:25:44 ============================================================================ +14:25:44 Slot Id : <426> +14:25:44 Transaction Type : REQUEST +14:25:44 Received From : +14:25:44 ============================================================================ +14:25:44 FNo. Len. Field Value +14:25:44 ============================================================================ +14:25:44 [ 1] [ 4] [0200] +14:25:44 [ 2] [ 16] [6688990040112748] +14:25:44 [ 3] [ 6] [010000] +14:25:44 [ 4] [ 12] [000050000000] +14:25:44 [ 7] [ 10] [0320072451] +14:25:44 [ 11] [ 6] [269649] +14:25:44 [ 12] [ 6] [142451] +14:25:44 [ 13] [ 4] [0320] +14:25:44 [ 14] [ 4] [9803] +14:25:44 [ 15] [ 4] [0320] +14:25:44 [ 18] [ 4] [6011] +14:25:44 [ 19] [ 3] [418] +14:25:44 [ 22] [ 3] [021] +14:25:44 [ 25] [ 2] [01] +14:25:44 [ 28] [ 9] [D00002000] +14:25:44 [ 32] [ 6] [180893] +14:25:44 [ 35] [ 37] [6688990040112748=98031261513567900000] +14:25:44 [ 37] [ 12] [507907269649] +14:25:44 [ 41] [ 8] [0221XKKM] +14:25:44 [ 42] [ 15] [999999 ] +14:25:44 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:25:44 [ 49] [ 3] [418] +14:25:44 [ 52] [ 16] [90F2401045884DF7] +14:25:44 ============================================================================ +14:25:44 + + +waiting on router queue for slot.... +14:25:44 Sending to : <0> +14:25:44 ============================================================================ +14:25:45 ============================================================================ +14:25:45 Slot Id : <426> +14:25:45 Transaction Type : RESPONSE +14:25:45 Received From : +14:25:45 ============================================================================ +14:25:45 FNo. Len. Field Value +14:25:45 ============================================================================ +14:25:45 [ 1] [ 4] [0210] +14:25:45 [ 2] [ 16] [6688990040112748] +14:25:45 [ 3] [ 6] [010000] +14:25:45 [ 4] [ 12] [000050000000] +14:25:45 [ 7] [ 10] [0320072451] +14:25:45 [ 11] [ 6] [269649] +14:25:45 [ 12] [ 6] [142451] +14:25:45 [ 13] [ 4] [0320] +14:25:45 [ 15] [ 4] [0320] +14:25:45 [ 18] [ 4] [6011] +14:25:45 [ 19] [ 3] [418] +14:25:45 [ 22] [ 3] [021] +14:25:45 [ 32] [ 6] [180893] +14:25:45 [ 35] [ 37] [6688990040112748=98031261513567900000] +14:25:45 [ 37] [ 12] [507907269649] +14:25:45 [ 39] [ 2] [14] +14:25:45 [ 41] [ 8] [0221XKKM] +14:25:45 [ 49] [ 3] [418] +14:25:45 ============================================================================ +14:25:45 Sending to : +14:25:45 ============================================================================ +14:25:45 + + +waiting on router queue for slot.... +14:25:47 ============================================================================ +14:25:47 Slot Id : <426> +14:25:47 Transaction Type : RESPONSE +14:25:47 Received From : +14:25:47 ============================================================================ +14:25:47 FNo. Len. Field Value +14:25:47 ============================================================================ +14:25:47 [ 1] [ 4] [0210] +14:25:47 [ 2] [ 16] [6688990040112748] +14:25:47 [ 3] [ 6] [010000] +14:25:47 [ 4] [ 12] [000050000000] +14:25:47 [ 7] [ 10] [0320072451] +14:25:47 [ 11] [ 6] [269649] +14:25:47 [ 12] [ 6] [142451] +14:25:47 [ 13] [ 4] [0320] +14:25:47 [ 15] [ 4] [0320] +14:25:47 [ 18] [ 4] [6011] +14:25:47 [ 19] [ 3] [418] +14:25:47 [ 22] [ 3] [021] +14:25:47 [ 32] [ 6] [180893] +14:25:47 [ 35] [ 37] [6688990040112748=98031261513567900000] +14:25:47 [ 37] [ 12] [507907269649] +14:25:47 [ 39] [ 2] [14] +14:25:47 [ 41] [ 8] [0221XKKM] +14:25:47 [ 49] [ 3] [418] +14:25:47 ============================================================================ +14:25:47 Calculate Source COMM Id = 2 +14:25:47 ============================================================================ +14:25:47 + + +waiting on router queue for slot.... +14:25:56 ============================================================================ +14:25:56 Slot Id : <422> +14:25:56 Transaction Type : REQUEST +14:25:56 Received From : +14:25:56 ============================================================================ +14:25:56 FNo. Len. Field Value +14:25:56 ============================================================================ +14:25:56 [ 1] [ 4] [0200] +14:25:56 [ 2] [ 16] [6688990104937501] +14:25:56 [ 3] [ 6] [301000] +14:25:56 [ 4] [ 12] [000000000000] +14:25:56 [ 7] [ 10] [0320142551] +14:25:56 [ 11] [ 6] [769916] +14:25:56 [ 12] [ 6] [142551] +14:25:56 [ 13] [ 4] [0320] +14:25:56 [ 15] [ 4] [0320] +14:25:56 [ 18] [ 4] [6011] +14:25:56 [ 22] [ 3] [900] +14:25:56 [ 25] [ 2] [02] +14:25:56 [ 28] [ 9] [D00000000] +14:25:56 [ 32] [ 6] [621354] +14:25:56 [ 35] [ 37] [6688990104937501=43061231750113300000] +14:25:56 [ 37] [ 12] [507905200879] +14:25:56 [ 41] [ 8] [07001700] +14:25:56 [ 42] [ 15] [NATIVE ] +14:25:56 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:25:56 [ 49] [ 3] [418] +14:25:56 [ 52] [ 16] [623A370C8584B2C7] +14:25:56 ============================================================================ +14:25:56 + + +waiting on router queue for slot.... +14:25:56 Sending to : +14:25:56 ============================================================================ +14:25:56 Sending to : +14:25:56 ============================================================================ +14:25:56 ============================================================================ +14:25:56 Slot Id : <422> +14:25:56 Transaction Type : REQUEST +14:25:56 Received From : +14:25:56 ============================================================================ +14:25:56 FNo. Len. Field Value +14:25:56 ============================================================================ +14:25:56 [ 1] [ 4] [0200] +14:25:56 [ 2] [ 16] [6688990104937501] +14:25:56 [ 3] [ 6] [301000] +14:25:56 [ 4] [ 12] [000000000000] +14:25:56 [ 7] [ 10] [0320142551] +14:25:56 [ 11] [ 6] [769916] +14:25:56 [ 12] [ 6] [142551] +14:25:56 [ 13] [ 4] [0320] +14:25:56 [ 15] [ 4] [0320] +14:25:56 [ 18] [ 4] [6011] +14:25:56 [ 22] [ 3] [900] +14:25:56 [ 25] [ 2] [02] +14:25:56 [ 28] [ 9] [D00000000] +14:25:56 [ 32] [ 6] [621354] +14:25:56 [ 35] [ 37] [6688990104937501=43061231750113300000] +14:25:56 [ 37] [ 12] [507905200879] +14:25:56 [ 41] [ 8] [07001700] +14:25:56 [ 42] [ 15] [NATIVE ] +14:25:56 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:25:56 [ 49] [ 3] [418] +14:25:56 [ 52] [ 16] [623A370C8584B2C7] +14:25:56 ============================================================================ +14:25:56 + + +waiting on router queue for slot.... +14:25:56 Sending to : +14:25:56 ============================================================================ +14:25:56 ============================================================================ +14:25:56 Slot Id : <422> +14:25:56 Transaction Type : REQUEST +14:25:56 Received From : +14:25:56 ============================================================================ +14:25:56 FNo. Len. Field Value +14:25:56 ============================================================================ +14:25:56 [ 1] [ 4] [0200] +14:25:56 [ 2] [ 16] [6688990104937501] +14:25:56 [ 3] [ 6] [301000] +14:25:56 [ 4] [ 12] [000000000000] +14:25:56 [ 7] [ 10] [0320142551] +14:25:56 [ 11] [ 6] [769916] +14:25:56 [ 12] [ 6] [142551] +14:25:56 [ 13] [ 4] [0320] +14:25:56 [ 15] [ 4] [0320] +14:25:56 [ 18] [ 4] [6011] +14:25:56 [ 22] [ 3] [900] +14:25:56 [ 25] [ 2] [02] +14:25:56 [ 28] [ 9] [D00000000] +14:25:56 [ 32] [ 6] [621354] +14:25:56 [ 35] [ 37] [6688990104937501=43061231750113300000] +14:25:56 [ 37] [ 12] [507905200879] +14:25:56 [ 41] [ 8] [07001700] +14:25:56 [ 42] [ 15] [NATIVE ] +14:25:56 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:25:56 [ 49] [ 3] [418] +14:25:56 [ 52] [ 16] [E649C6938A98CAF7] +14:25:56 ============================================================================ +14:25:56 + + +waiting on router queue for slot.... +14:25:56 Sending to : <4> +14:25:56 ============================================================================ +14:25:57 ============================================================================ +14:25:57 Slot Id : <422> +14:25:57 Transaction Type : RESPONSE +14:25:57 Received From : +14:25:57 ============================================================================ +14:25:57 FNo. Len. Field Value +14:25:57 ============================================================================ +14:25:57 [ 1] [ 4] [0210] +14:25:57 [ 2] [ 16] [6688990104937501] +14:25:57 [ 3] [ 6] [301000] +14:25:57 [ 4] [ 12] [000000000000] +14:25:57 [ 11] [ 6] [769916] +14:25:57 [ 12] [ 6] [142551] +14:25:57 [ 15] [ 4] [0320] +14:25:57 [ 18] [ 4] [6011] +14:25:57 [ 32] [ 6] [621354] +14:25:57 [ 35] [ 37] [6688990104937501=43061231750113300000] +14:25:57 [ 37] [ 12] [507905200879] +14:25:57 [ 38] [ 6] [829474] +14:25:57 [ 39] [ 2] [00] +14:25:57 [ 41] [ 8] [07001700] +14:25:57 [ 49] [ 3] [418] +14:25:57 [ 54] [ 20] [1002418C000096284801] +14:25:57 ============================================================================ +14:25:57 Sending to : +14:25:57 ============================================================================ +14:25:57 + + +waiting on router queue for slot.... +14:25:58 ============================================================================ +14:25:58 Slot Id : <422> +14:25:58 Transaction Type : RESPONSE +14:25:58 Received From : +14:25:58 ============================================================================ +14:25:58 FNo. Len. Field Value +14:25:58 ============================================================================ +14:25:58 [ 1] [ 4] [0210] +14:25:58 [ 2] [ 16] [6688990104937501] +14:25:58 [ 3] [ 6] [301000] +14:25:58 [ 4] [ 12] [000000000000] +14:25:58 [ 11] [ 6] [769916] +14:25:58 [ 12] [ 6] [142551] +14:25:58 [ 15] [ 4] [0320] +14:25:58 [ 18] [ 4] [6011] +14:25:58 [ 32] [ 6] [621354] +14:25:58 [ 35] [ 37] [6688990104937501=43061231750113300000] +14:25:58 [ 37] [ 12] [507905200879] +14:25:58 [ 38] [ 6] [829474] +14:25:58 [ 39] [ 2] [00] +14:25:58 [ 41] [ 8] [07001700] +14:25:58 [ 49] [ 3] [418] +14:25:58 [ 54] [ 20] [1002418C000096284801] +14:25:58 ============================================================================ +14:25:58 Calculate Source COMM Id = 0 +14:25:58 ============================================================================ +14:25:58 + + +waiting on router queue for slot.... +14:25:59 ============================================================================ +14:25:59 Slot Id : <465> +14:25:59 Transaction Type : REQUEST +14:25:59 Received From : +14:25:59 ============================================================================ +14:25:59 FNo. Len. Field Value +14:25:59 ============================================================================ +14:25:59 [ 1] [ 4] [0800] +14:25:59 [ 7] [ 10] [0320072505] +14:25:59 [ 11] [ 6] [156781] +14:25:59 [ 70] [ 3] [301] +14:25:59 ============================================================================ +14:25:59 + + +waiting on router queue for slot.... +14:25:59 Sending to : +14:25:59 ============================================================================ +14:25:59 ============================================================================ +14:25:59 Slot Id : <465> +14:25:59 Transaction Type : RESPONSE +14:25:59 Received From : +14:25:59 ============================================================================ +14:25:59 FNo. Len. Field Value +14:25:59 ============================================================================ +14:25:59 [ 1] [ 4] [0810] +14:25:59 [ 7] [ 10] [0320072505] +14:25:59 [ 11] [ 6] [156781] +14:25:59 [ 39] [ 2] [00] +14:25:59 [ 70] [ 3] [301] +14:25:59 ============================================================================ +14:25:59 Calculate Source COMM Id = 2 +14:25:59 ============================================================================ +14:25:59 + + +waiting on router queue for slot.... +14:26:02 ============================================================================ +14:26:02 Slot Id : <444> +14:26:02 Transaction Type : REQUEST +14:26:02 Received From : +14:26:02 ============================================================================ +14:26:02 FNo. Len. Field Value +14:26:02 ============================================================================ +14:26:02 [ 1] [ 4] [0200] +14:26:02 [ 2] [ 16] [6688990601482308] +14:26:02 [ 3] [ 6] [011000] +14:26:02 [ 4] [ 12] [000100000000] +14:26:02 [ 7] [ 10] [0320142557] +14:26:02 [ 11] [ 6] [769938] +14:26:02 [ 12] [ 6] [142557] +14:26:02 [ 13] [ 4] [0320] +14:26:02 [ 15] [ 4] [0320] +14:26:02 [ 18] [ 4] [6011] +14:26:02 [ 22] [ 3] [900] +14:26:02 [ 25] [ 2] [02] +14:26:02 [ 28] [ 9] [D00002000] +14:26:02 [ 32] [ 6] [621354] +14:26:02 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:26:02 [ 37] [ 12] [507904153943] +14:26:02 [ 41] [ 8] [20001000] +14:26:02 [ 42] [ 15] [NATIVE ] +14:26:02 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:26:02 [ 49] [ 3] [418] +14:26:02 [ 52] [ 16] [465C751FB1533BE4] +14:26:02 ============================================================================ +14:26:02 + + +waiting on router queue for slot.... +14:26:02 Sending to : +14:26:02 ============================================================================ +14:26:02 Sending to : +14:26:02 ============================================================================ +14:26:02 ============================================================================ +14:26:02 Slot Id : <444> +14:26:02 Transaction Type : REQUEST +14:26:02 Received From : +14:26:02 ============================================================================ +14:26:02 FNo. Len. Field Value +14:26:02 ============================================================================ +14:26:02 [ 1] [ 4] [0200] +14:26:02 [ 2] [ 16] [6688990601482308] +14:26:02 [ 3] [ 6] [011000] +14:26:02 [ 4] [ 12] [000100000000] +14:26:02 [ 7] [ 10] [0320142557] +14:26:02 [ 11] [ 6] [769938] +14:26:02 [ 12] [ 6] [142557] +14:26:02 [ 13] [ 4] [0320] +14:26:02 [ 15] [ 4] [0320] +14:26:02 [ 18] [ 4] [6011] +14:26:02 [ 22] [ 3] [900] +14:26:02 [ 25] [ 2] [02] +14:26:02 [ 28] [ 9] [D00002000] +14:26:02 [ 32] [ 6] [621354] +14:26:02 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:26:02 [ 37] [ 12] [507904153943] +14:26:02 [ 41] [ 8] [20001000] +14:26:02 [ 42] [ 15] [NATIVE ] +14:26:02 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:26:02 [ 49] [ 3] [418] +14:26:02 [ 52] [ 16] [465C751FB1533BE4] +14:26:02 ============================================================================ +14:26:02 + + +waiting on router queue for slot.... +14:26:02 Sending to : +14:26:02 ============================================================================ +14:26:02 ============================================================================ +14:26:02 Slot Id : <444> +14:26:02 Transaction Type : REQUEST +14:26:02 Received From : +14:26:02 ============================================================================ +14:26:02 FNo. Len. Field Value +14:26:02 ============================================================================ +14:26:02 [ 1] [ 4] [0200] +14:26:02 [ 2] [ 16] [6688990601482308] +14:26:02 [ 3] [ 6] [011000] +14:26:02 [ 4] [ 12] [000100000000] +14:26:02 [ 7] [ 10] [0320142557] +14:26:02 [ 11] [ 6] [769938] +14:26:02 [ 12] [ 6] [142557] +14:26:02 [ 13] [ 4] [0320] +14:26:02 [ 15] [ 4] [0320] +14:26:02 [ 18] [ 4] [6011] +14:26:02 [ 22] [ 3] [900] +14:26:02 [ 25] [ 2] [02] +14:26:02 [ 28] [ 9] [D00002000] +14:26:02 [ 32] [ 6] [621354] +14:26:02 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:26:02 [ 37] [ 12] [507904153943] +14:26:02 [ 41] [ 8] [20001000] +14:26:02 [ 42] [ 15] [NATIVE ] +14:26:02 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:26:02 [ 49] [ 3] [418] +14:26:02 [ 52] [ 16] [53BC927BCF4CBE07] +14:26:02 ============================================================================ +14:26:02 + + +waiting on router queue for slot.... +14:26:02 Sending to : <4> +14:26:02 ============================================================================ +14:26:03 ============================================================================ +14:26:03 Slot Id : <444> +14:26:03 Transaction Type : RESPONSE +14:26:03 Received From : +14:26:03 ============================================================================ +14:26:03 FNo. Len. Field Value +14:26:03 ============================================================================ +14:26:03 [ 1] [ 4] [0210] +14:26:03 [ 2] [ 16] [6688990601482308] +14:26:03 [ 3] [ 6] [011000] +14:26:03 [ 4] [ 12] [000100000000] +14:26:03 [ 11] [ 6] [769938] +14:26:03 [ 12] [ 6] [142557] +14:26:03 [ 15] [ 4] [0320] +14:26:03 [ 18] [ 4] [6011] +14:26:03 [ 32] [ 6] [621354] +14:26:03 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:26:03 [ 37] [ 12] [507904153943] +14:26:03 [ 38] [ 6] [826714] +14:26:03 [ 39] [ 2] [00] +14:26:03 [ 41] [ 8] [20001000] +14:26:03 [ 49] [ 3] [418] +14:26:03 [ 54] [ 20] [1002418C000294351125] +14:26:03 ============================================================================ +14:26:03 Sending to : +14:26:03 ============================================================================ +14:26:03 + + +waiting on router queue for slot.... +14:26:05 ============================================================================ +14:26:05 Slot Id : <444> +14:26:05 Transaction Type : RESPONSE +14:26:05 Received From : +14:26:05 ============================================================================ +14:26:05 FNo. Len. Field Value +14:26:05 ============================================================================ +14:26:05 [ 1] [ 4] [0210] +14:26:05 [ 2] [ 16] [6688990601482308] +14:26:05 [ 3] [ 6] [011000] +14:26:05 [ 4] [ 12] [000100000000] +14:26:05 [ 11] [ 6] [769938] +14:26:05 [ 12] [ 6] [142557] +14:26:05 [ 15] [ 4] [0320] +14:26:05 [ 18] [ 4] [6011] +14:26:05 [ 32] [ 6] [621354] +14:26:05 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:26:05 [ 37] [ 12] [507904153943] +14:26:05 [ 38] [ 6] [826714] +14:26:05 [ 39] [ 2] [00] +14:26:05 [ 41] [ 8] [20001000] +14:26:05 [ 49] [ 3] [418] +14:26:05 [ 54] [ 20] [1002418C000294351125] +14:26:05 ============================================================================ +14:26:05 Calculate Source COMM Id = 0 +14:26:05 ============================================================================ +14:26:05 + + +waiting on router queue for slot.... +14:26:14 ============================================================================ +14:26:14 Slot Id : <436> +14:26:14 Transaction Type : REQUEST +14:26:14 Received From : +14:26:14 ============================================================================ +14:26:14 FNo. Len. Field Value +14:26:14 ============================================================================ +14:26:14 [ 1] [ 4] [0800] +14:26:14 [ 7] [ 10] [0320072521] +14:26:14 [ 11] [ 6] [156782] +14:26:14 [ 70] [ 3] [301] +14:26:14 ============================================================================ +14:26:14 + + +waiting on router queue for slot.... +14:26:14 Sending to : +14:26:14 ============================================================================ +14:26:14 ============================================================================ +14:26:14 Slot Id : <436> +14:26:14 Transaction Type : RESPONSE +14:26:14 Received From : +14:26:14 ============================================================================ +14:26:14 FNo. Len. Field Value +14:26:14 ============================================================================ +14:26:14 [ 1] [ 4] [0810] +14:26:14 [ 7] [ 10] [0320072521] +14:26:14 [ 11] [ 6] [156782] +14:26:14 [ 39] [ 2] [00] +14:26:14 [ 70] [ 3] [301] +14:26:14 ============================================================================ +14:26:14 Calculate Source COMM Id = 2 +14:26:14 ============================================================================ +14:26:14 + + +waiting on router queue for slot.... +14:26:17 ============================================================================ +14:26:17 Slot Id : <439> +14:26:17 Transaction Type : REQUEST +14:26:17 Received From : +14:26:17 ============================================================================ +14:26:17 FNo. Len. Field Value +14:26:17 ============================================================================ +14:26:17 [ 1] [ 4] [0200] +14:26:17 [ 2] [ 16] [6688990103638704] +14:26:17 [ 3] [ 6] [301000] +14:26:17 [ 4] [ 12] [000000000000] +14:26:17 [ 7] [ 10] [0320142613] +14:26:17 [ 11] [ 6] [769995] +14:26:17 [ 12] [ 6] [142613] +14:26:17 [ 13] [ 4] [0320] +14:26:17 [ 15] [ 4] [0320] +14:26:17 [ 18] [ 4] [6011] +14:26:17 [ 22] [ 3] [900] +14:26:17 [ 25] [ 2] [02] +14:26:17 [ 28] [ 9] [D00000000] +14:26:17 [ 32] [ 6] [621354] +14:26:17 [ 35] [ 37] [6688990103638704=43011231870424100000] +14:26:17 [ 37] [ 12] [507903397915] +14:26:17 [ 41] [ 8] [06001200] +14:26:17 [ 42] [ 15] [NATIVE ] +14:26:17 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +14:26:17 [ 49] [ 3] [418] +14:26:17 [ 52] [ 16] [170FE55C2E74E4F3] +14:26:17 ============================================================================ +14:26:17 + + +waiting on router queue for slot.... +14:26:17 Sending to : +14:26:17 ============================================================================ +14:26:17 Sending to : +14:26:17 ============================================================================ +14:26:18 ============================================================================ +14:26:18 Slot Id : <423> +14:26:18 Transaction Type : REQUEST +14:26:18 Received From : +14:26:18 ============================================================================ +14:26:18 FNo. Len. Field Value +14:26:18 ============================================================================ +14:26:18 [ 1] [ 4] [0200] +14:26:18 [ 2] [ 16] [6688990104022007] +14:26:18 [ 3] [ 6] [011000] +14:26:18 [ 4] [ 12] [000010000000] +14:26:18 [ 7] [ 10] [0320072524] +14:26:18 [ 11] [ 6] [269652] +14:26:18 [ 12] [ 6] [142524] +14:26:18 [ 13] [ 4] [0320] +14:26:18 [ 14] [ 4] [4302] +14:26:18 [ 15] [ 4] [0320] +14:26:18 [ 18] [ 4] [6011] +14:26:18 [ 19] [ 3] [418] +14:26:18 [ 22] [ 3] [021] +14:26:18 [ 25] [ 2] [01] +14:26:18 [ 28] [ 9] [D00002000] +14:26:18 [ 32] [ 6] [180893] +14:26:18 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:26:18 [ 37] [ 12] [507907269652] +14:26:18 [ 41] [ 8] [0421BKPH] +14:26:18 [ 42] [ 15] [999999 ] +14:26:18 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:26:18 [ 49] [ 3] [418] +14:26:18 [ 52] [ 16] [473334DCBE911001] +14:26:18 ============================================================================ +14:26:18 + + +waiting on router queue for slot.... +14:26:18 Sending to : +14:26:18 ============================================================================ +14:26:18 Sending to : +14:26:18 ============================================================================ +14:26:18 ============================================================================ +14:26:18 Slot Id : <439> +14:26:18 Transaction Type : REQUEST +14:26:18 Received From : +14:26:18 ============================================================================ +14:26:18 FNo. Len. Field Value +14:26:18 ============================================================================ +14:26:18 [ 1] [ 4] [0200] +14:26:18 [ 2] [ 16] [6688990103638704] +14:26:18 [ 3] [ 6] [301000] +14:26:18 [ 4] [ 12] [000000000000] +14:26:18 [ 7] [ 10] [0320142613] +14:26:18 [ 11] [ 6] [769995] +14:26:18 [ 12] [ 6] [142613] +14:26:18 [ 13] [ 4] [0320] +14:26:18 [ 15] [ 4] [0320] +14:26:18 [ 18] [ 4] [6011] +14:26:18 [ 22] [ 3] [900] +14:26:18 [ 25] [ 2] [02] +14:26:18 [ 28] [ 9] [D00000000] +14:26:18 [ 32] [ 6] [621354] +14:26:18 [ 35] [ 37] [6688990103638704=43011231870424100000] +14:26:18 [ 37] [ 12] [507903397915] +14:26:18 [ 41] [ 8] [06001200] +14:26:18 [ 42] [ 15] [NATIVE ] +14:26:18 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +14:26:18 [ 49] [ 3] [418] +14:26:18 [ 52] [ 16] [170FE55C2E74E4F3] +14:26:18 ============================================================================ +14:26:18 + + +waiting on router queue for slot.... +14:26:18 Sending to : +14:26:18 ============================================================================ +14:26:18 ============================================================================ +14:26:18 Slot Id : <439> +14:26:18 Transaction Type : REQUEST +14:26:18 Received From : +14:26:18 ============================================================================ +14:26:18 FNo. Len. Field Value +14:26:18 ============================================================================ +14:26:18 [ 1] [ 4] [0200] +14:26:18 [ 2] [ 16] [6688990103638704] +14:26:18 [ 3] [ 6] [301000] +14:26:18 [ 4] [ 12] [000000000000] +14:26:18 [ 7] [ 10] [0320142613] +14:26:18 [ 11] [ 6] [769995] +14:26:18 [ 12] [ 6] [142613] +14:26:18 [ 13] [ 4] [0320] +14:26:18 [ 15] [ 4] [0320] +14:26:18 [ 18] [ 4] [6011] +14:26:18 [ 22] [ 3] [900] +14:26:18 [ 25] [ 2] [02] +14:26:18 [ 28] [ 9] [D00000000] +14:26:18 [ 32] [ 6] [621354] +14:26:18 [ 35] [ 37] [6688990103638704=43011231870424100000] +14:26:18 [ 37] [ 12] [507903397915] +14:26:18 [ 41] [ 8] [06001200] +14:26:18 [ 42] [ 15] [NATIVE ] +14:26:18 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +14:26:18 [ 49] [ 3] [418] +14:26:18 [ 52] [ 16] [CBE3DAD4CBB88304] +14:26:18 ============================================================================ +14:26:18 + + +waiting on router queue for slot.... +14:26:18 Sending to : <4> +14:26:18 ============================================================================ +14:26:18 ============================================================================ +14:26:18 Slot Id : <423> +14:26:18 Transaction Type : REQUEST +14:26:18 Received From : +14:26:18 ============================================================================ +14:26:18 FNo. Len. Field Value +14:26:18 ============================================================================ +14:26:18 [ 1] [ 4] [0200] +14:26:18 [ 2] [ 16] [6688990104022007] +14:26:18 [ 3] [ 6] [011000] +14:26:18 [ 4] [ 12] [000010000000] +14:26:18 [ 7] [ 10] [0320072524] +14:26:18 [ 11] [ 6] [269652] +14:26:18 [ 12] [ 6] [142524] +14:26:18 [ 13] [ 4] [0320] +14:26:18 [ 14] [ 4] [4302] +14:26:18 [ 15] [ 4] [0320] +14:26:18 [ 18] [ 4] [6011] +14:26:18 [ 19] [ 3] [418] +14:26:18 [ 22] [ 3] [021] +14:26:18 [ 25] [ 2] [01] +14:26:18 [ 28] [ 9] [D00002000] +14:26:18 [ 32] [ 6] [180893] +14:26:18 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:26:18 [ 37] [ 12] [507907269652] +14:26:18 [ 41] [ 8] [0421BKPH] +14:26:18 [ 42] [ 15] [999999 ] +14:26:18 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:26:18 [ 49] [ 3] [418] +14:26:18 [ 52] [ 16] [473334DCBE911001] +14:26:18 ============================================================================ +14:26:18 + + +waiting on router queue for slot.... +14:26:18 Sending to : +14:26:18 ============================================================================ +14:26:18 ============================================================================ +14:26:18 Slot Id : <423> +14:26:18 Transaction Type : REQUEST +14:26:18 Received From : +14:26:18 ============================================================================ +14:26:18 FNo. Len. Field Value +14:26:18 ============================================================================ +14:26:18 [ 1] [ 4] [0200] +14:26:18 [ 2] [ 16] [6688990104022007] +14:26:18 [ 3] [ 6] [011000] +14:26:18 [ 4] [ 12] [000010000000] +14:26:18 [ 7] [ 10] [0320072524] +14:26:18 [ 11] [ 6] [269652] +14:26:18 [ 12] [ 6] [142524] +14:26:18 [ 13] [ 4] [0320] +14:26:18 [ 14] [ 4] [4302] +14:26:18 [ 15] [ 4] [0320] +14:26:18 [ 18] [ 4] [6011] +14:26:18 [ 19] [ 3] [418] +14:26:18 [ 22] [ 3] [021] +14:26:18 [ 25] [ 2] [01] +14:26:18 [ 28] [ 9] [D00002000] +14:26:18 [ 32] [ 6] [180893] +14:26:18 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:26:18 [ 37] [ 12] [507907269652] +14:26:18 [ 41] [ 8] [0421BKPH] +14:26:18 [ 42] [ 15] [999999 ] +14:26:18 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:26:18 [ 49] [ 3] [418] +14:26:18 [ 52] [ 16] [3F768CEE6B61742D] +14:26:18 ============================================================================ +14:26:18 + + +waiting on router queue for slot.... +14:26:18 Sending to : <0> +14:26:18 ============================================================================ +14:26:18 ============================================================================ +14:26:18 Slot Id : <423> +14:26:18 Transaction Type : RESPONSE +14:26:18 Received From : +14:26:18 ============================================================================ +14:26:18 FNo. Len. Field Value +14:26:18 ============================================================================ +14:26:18 [ 1] [ 4] [0210] +14:26:18 [ 2] [ 16] [6688990104022007] +14:26:18 [ 3] [ 6] [011000] +14:26:18 [ 4] [ 12] [000010000000] +14:26:18 [ 7] [ 10] [0320072524] +14:26:18 [ 11] [ 6] [269652] +14:26:18 [ 12] [ 6] [142524] +14:26:18 [ 13] [ 4] [0320] +14:26:18 [ 15] [ 4] [0320] +14:26:18 [ 18] [ 4] [6011] +14:26:18 [ 19] [ 3] [418] +14:26:18 [ 22] [ 3] [021] +14:26:18 [ 32] [ 6] [180893] +14:26:18 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:26:18 [ 37] [ 12] [507907269652] +14:26:18 [ 39] [ 2] [14] +14:26:18 [ 41] [ 8] [0421BKPH] +14:26:18 [ 49] [ 3] [418] +14:26:18 ============================================================================ +14:26:18 Sending to : +14:26:18 ============================================================================ +14:26:18 + + +waiting on router queue for slot.... +14:26:19 ============================================================================ +14:26:19 Slot Id : <439> +14:26:19 Transaction Type : RESPONSE +14:26:19 Received From : +14:26:19 ============================================================================ +14:26:19 FNo. Len. Field Value +14:26:19 ============================================================================ +14:26:19 [ 1] [ 4] [0210] +14:26:19 [ 2] [ 16] [6688990103638704] +14:26:19 [ 3] [ 6] [301000] +14:26:19 [ 4] [ 12] [000000000000] +14:26:19 [ 11] [ 6] [769995] +14:26:19 [ 12] [ 6] [142613] +14:26:19 [ 15] [ 4] [0320] +14:26:19 [ 18] [ 4] [6011] +14:26:19 [ 32] [ 6] [621354] +14:26:19 [ 35] [ 37] [6688990103638704=43011231870424100000] +14:26:19 [ 37] [ 12] [507903397915] +14:26:19 [ 38] [ 6] [625002] +14:26:19 [ 39] [ 2] [00] +14:26:19 [ 41] [ 8] [06001200] +14:26:19 [ 49] [ 3] [418] +14:26:19 [ 54] [ 20] [1002418C000340110863] +14:26:19 ============================================================================ +14:26:19 Sending to : +14:26:19 ============================================================================ +14:26:19 + + +waiting on router queue for slot.... +14:26:19 ============================================================================ +14:26:19 Slot Id : <423> +14:26:19 Transaction Type : RESPONSE +14:26:19 Received From : +14:26:19 ============================================================================ +14:26:19 FNo. Len. Field Value +14:26:19 ============================================================================ +14:26:19 [ 1] [ 4] [0210] +14:26:19 [ 2] [ 16] [6688990104022007] +14:26:19 [ 3] [ 6] [011000] +14:26:19 [ 4] [ 12] [000010000000] +14:26:19 [ 7] [ 10] [0320072524] +14:26:19 [ 11] [ 6] [269652] +14:26:19 [ 12] [ 6] [142524] +14:26:19 [ 13] [ 4] [0320] +14:26:19 [ 15] [ 4] [0320] +14:26:19 [ 18] [ 4] [6011] +14:26:19 [ 19] [ 3] [418] +14:26:19 [ 22] [ 3] [021] +14:26:19 [ 32] [ 6] [180893] +14:26:19 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:26:19 [ 37] [ 12] [507907269652] +14:26:19 [ 39] [ 2] [14] +14:26:19 [ 41] [ 8] [0421BKPH] +14:26:19 [ 49] [ 3] [418] +14:26:19 ============================================================================ +14:26:19 Calculate Source COMM Id = 2 +14:26:19 ============================================================================ +14:26:19 + + +waiting on router queue for slot.... +14:26:21 ============================================================================ +14:26:21 Slot Id : <439> +14:26:21 Transaction Type : RESPONSE +14:26:21 Received From : +14:26:21 ============================================================================ +14:26:21 FNo. Len. Field Value +14:26:21 ============================================================================ +14:26:21 [ 1] [ 4] [0210] +14:26:21 [ 2] [ 16] [6688990103638704] +14:26:21 [ 3] [ 6] [301000] +14:26:21 [ 4] [ 12] [000000000000] +14:26:21 [ 11] [ 6] [769995] +14:26:21 [ 12] [ 6] [142613] +14:26:21 [ 15] [ 4] [0320] +14:26:21 [ 18] [ 4] [6011] +14:26:21 [ 32] [ 6] [621354] +14:26:21 [ 35] [ 37] [6688990103638704=43011231870424100000] +14:26:21 [ 37] [ 12] [507903397915] +14:26:21 [ 38] [ 6] [625002] +14:26:21 [ 39] [ 2] [00] +14:26:21 [ 41] [ 8] [06001200] +14:26:21 [ 49] [ 3] [418] +14:26:21 [ 54] [ 20] [1002418C000340110863] +14:26:21 ============================================================================ +14:26:21 Calculate Source COMM Id = 0 +14:26:21 ============================================================================ +14:26:21 + + +waiting on router queue for slot.... +14:26:22 ============================================================================ +14:26:22 Slot Id : <458> +14:26:22 Transaction Type : REQUEST +14:26:22 Received From : +14:26:22 ============================================================================ +14:26:22 FNo. Len. Field Value +14:26:22 ============================================================================ +14:26:22 [ 1] [ 4] [0800] +14:26:22 [ 7] [ 10] [0320072412] +14:26:22 [ 11] [ 6] [069358] +14:26:22 [ 37] [ 12] [57914069358] +14:26:22 [ 70] [ 3] [301] +14:26:22 ============================================================================ +14:26:22 + + +waiting on router queue for slot.... +14:26:22 Sending to : +14:26:22 ============================================================================ +14:26:22 ============================================================================ +14:26:22 Slot Id : <458> +14:26:22 Transaction Type : RESPONSE +14:26:22 Received From : +14:26:22 ============================================================================ +14:26:22 FNo. Len. Field Value +14:26:22 ============================================================================ +14:26:22 [ 1] [ 4] [0810] +14:26:22 [ 7] [ 10] [0320072412] +14:26:22 [ 11] [ 6] [069358] +14:26:22 [ 37] [ 12] [579140693580] +14:26:22 [ 39] [ 2] [00] +14:26:22 [ 70] [ 3] [810] +14:26:22 ============================================================================ +14:26:22 Calculate Source COMM Id = 4 +14:26:22 ============================================================================ +14:26:22 + + +waiting on router queue for slot.... +14:26:29 ============================================================================ +14:26:29 Slot Id : <459> +14:26:29 Transaction Type : REQUEST +14:26:29 Received From : +14:26:29 ============================================================================ +14:26:29 FNo. Len. Field Value +14:26:29 ============================================================================ +14:26:29 [ 1] [ 4] [0800] +14:26:29 [ 7] [ 10] [0320213818] +14:26:29 [ 11] [ 6] [143818] +14:26:29 [ 37] [ 12] [57914143818] +14:26:29 [ 70] [ 3] [301] +14:26:29 ============================================================================ +14:26:29 + + +waiting on router queue for slot.... +14:26:29 Sending to : +14:26:29 ============================================================================ +14:26:29 ============================================================================ +14:26:29 Slot Id : <459> +14:26:29 Transaction Type : RESPONSE +14:26:29 Received From : +14:26:29 ============================================================================ +14:26:29 FNo. Len. Field Value +14:26:29 ============================================================================ +14:26:29 [ 1] [ 4] [0810] +14:26:29 [ 7] [ 10] [0320213818] +14:26:29 [ 11] [ 6] [143818] +14:26:29 [ 37] [ 12] [579141438180] +14:26:29 [ 39] [ 2] [00] +14:26:29 [ 70] [ 3] [810] +14:26:29 ============================================================================ +14:26:29 Calculate Source COMM Id = 6 +14:26:29 ============================================================================ +14:26:29 + + +waiting on router queue for slot.... +14:26:30 ============================================================================ +14:26:30 Slot Id : <466> +14:26:30 Transaction Type : REQUEST +14:26:30 Received From : +14:26:30 ============================================================================ +14:26:30 FNo. Len. Field Value +14:26:30 ============================================================================ +14:26:30 [ 1] [ 4] [0200] +14:26:30 [ 2] [ 16] [6213545001030570] +14:26:30 [ 3] [ 6] [302000] +14:26:30 [ 7] [ 10] [0320072537] +14:26:30 [ 11] [ 6] [269653] +14:26:30 [ 12] [ 6] [142537] +14:26:30 [ 13] [ 4] [0320] +14:26:30 [ 14] [ 4] [4912] +14:26:30 [ 15] [ 4] [0320] +14:26:30 [ 18] [ 4] [6011] +14:26:30 [ 19] [ 3] [418] +14:26:30 [ 22] [ 3] [021] +14:26:30 [ 25] [ 2] [01] +14:26:30 [ 32] [ 6] [180893] +14:26:30 [ 35] [ 32] [6213545001030570=491212013057518] +14:26:30 [ 37] [ 12] [507907269653] +14:26:30 [ 41] [ 8] [0261PSL1] +14:26:30 [ 42] [ 15] [999999 ] +14:26:30 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +14:26:30 [ 49] [ 3] [418] +14:26:30 [ 52] [ 16] [EA86B6C7B48A2366] +14:26:30 ============================================================================ +14:26:30 + + +waiting on router queue for slot.... +14:26:30 Sending to : +14:26:30 ============================================================================ +14:26:30 Sending to : +14:26:30 ============================================================================ +14:26:30 ============================================================================ +14:26:30 Slot Id : <466> +14:26:30 Transaction Type : REQUEST +14:26:30 Received From : +14:26:30 ============================================================================ +14:26:30 FNo. Len. Field Value +14:26:30 ============================================================================ +14:26:30 [ 1] [ 4] [0200] +14:26:30 [ 2] [ 16] [6213545001030570] +14:26:30 [ 3] [ 6] [302000] +14:26:30 [ 7] [ 10] [0320072537] +14:26:30 [ 11] [ 6] [269653] +14:26:30 [ 12] [ 6] [142537] +14:26:30 [ 13] [ 4] [0320] +14:26:30 [ 14] [ 4] [4912] +14:26:30 [ 15] [ 4] [0320] +14:26:30 [ 18] [ 4] [6011] +14:26:30 [ 19] [ 3] [418] +14:26:30 [ 22] [ 3] [021] +14:26:30 [ 25] [ 2] [01] +14:26:30 [ 32] [ 6] [180893] +14:26:30 [ 35] [ 32] [6213545001030570=491212013057518] +14:26:30 [ 37] [ 12] [507907269653] +14:26:30 [ 41] [ 8] [0261PSL1] +14:26:30 [ 42] [ 15] [999999 ] +14:26:30 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +14:26:30 [ 49] [ 3] [418] +14:26:30 [ 52] [ 16] [EA86B6C7B48A2366] +14:26:30 ============================================================================ +14:26:30 + + +waiting on router queue for slot.... +14:26:30 Sending to : +14:26:30 ============================================================================ +14:26:30 ============================================================================ +14:26:30 Slot Id : <466> +14:26:30 Transaction Type : REQUEST +14:26:30 Received From : +14:26:30 ============================================================================ +14:26:30 FNo. Len. Field Value +14:26:30 ============================================================================ +14:26:30 [ 1] [ 4] [0200] +14:26:30 [ 2] [ 16] [6213545001030570] +14:26:30 [ 3] [ 6] [302000] +14:26:30 [ 7] [ 10] [0320072537] +14:26:30 [ 11] [ 6] [269653] +14:26:30 [ 12] [ 6] [142537] +14:26:30 [ 13] [ 4] [0320] +14:26:30 [ 14] [ 4] [4912] +14:26:30 [ 15] [ 4] [0320] +14:26:30 [ 18] [ 4] [6011] +14:26:30 [ 19] [ 3] [418] +14:26:30 [ 22] [ 3] [021] +14:26:30 [ 25] [ 2] [01] +14:26:30 [ 32] [ 6] [180893] +14:26:30 [ 35] [ 32] [6213545001030570=491212013057518] +14:26:30 [ 37] [ 12] [507907269653] +14:26:30 [ 41] [ 8] [0261PSL1] +14:26:30 [ 42] [ 15] [999999 ] +14:26:30 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +14:26:30 [ 49] [ 3] [418] +14:26:30 [ 52] [ 16] [FA1CF9ACD78E3E94] +14:26:30 ============================================================================ +14:26:30 + + +waiting on router queue for slot.... +14:26:30 Sending to : <0> +14:26:30 ============================================================================ +14:26:31 ============================================================================ +14:26:31 Slot Id : <452> +14:26:31 Transaction Type : REQUEST +14:26:31 Received From : +14:26:31 ============================================================================ +14:26:31 FNo. Len. Field Value +14:26:31 ============================================================================ +14:26:31 [ 1] [ 4] [0800] +14:26:31 [ 7] [ 10] [0320072538] +14:26:31 [ 11] [ 6] [156783] +14:26:31 [ 70] [ 3] [301] +14:26:31 ============================================================================ +14:26:31 + + +waiting on router queue for slot.... +14:26:31 Sending to : +14:26:31 ============================================================================ +14:26:31 ============================================================================ +14:26:31 Slot Id : <452> +14:26:31 Transaction Type : RESPONSE +14:26:31 Received From : +14:26:31 ============================================================================ +14:26:31 FNo. Len. Field Value +14:26:31 ============================================================================ +14:26:31 [ 1] [ 4] [0810] +14:26:31 [ 7] [ 10] [0320072538] +14:26:31 [ 11] [ 6] [156783] +14:26:31 [ 39] [ 2] [00] +14:26:31 [ 70] [ 3] [301] +14:26:31 ============================================================================ +14:26:31 Calculate Source COMM Id = 2 +14:26:31 ============================================================================ +14:26:31 + + +waiting on router queue for slot.... +14:26:31 ============================================================================ +14:26:31 Slot Id : <475> +14:26:31 Transaction Type : REQUEST +14:26:31 Received From : +14:26:31 ============================================================================ +14:26:31 FNo. Len. Field Value +14:26:31 ============================================================================ +14:26:31 [ 1] [ 4] [0200] +14:26:31 [ 2] [ 16] [1808930200039162] +14:26:31 [ 3] [ 6] [011000] +14:26:31 [ 4] [ 12] [000050000000] +14:26:31 [ 7] [ 10] [0320142626] +14:26:31 [ 11] [ 6] [770040] +14:26:31 [ 12] [ 6] [142626] +14:26:31 [ 13] [ 4] [0320] +14:26:31 [ 15] [ 4] [0320] +14:26:31 [ 18] [ 4] [6011] +14:26:31 [ 22] [ 3] [900] +14:26:31 [ 25] [ 2] [02] +14:26:31 [ 28] [ 9] [D00002000] +14:26:31 [ 32] [ 6] [621354] +14:26:31 [ 35] [ 27] [1808930200039162=1803500328] +14:26:31 [ 37] [ 12] [507905005786] +14:26:31 [ 41] [ 8] [01012400] +14:26:31 [ 42] [ 15] [NATIVE ] +14:26:31 [ 43] [ 40] [Xaysetha Hospital02 Vientiane LAO] +14:26:31 [ 49] [ 3] [418] +14:26:31 [ 52] [ 16] [54763097195E0640] +14:26:31 ============================================================================ +14:26:31 + + +waiting on router queue for slot.... +14:26:31 Sending to : +14:26:31 ============================================================================ +14:26:31 Sending to : +14:26:31 ============================================================================ +14:26:31 ============================================================================ +14:26:31 Slot Id : <466> +14:26:31 Transaction Type : RESPONSE +14:26:31 Received From : +14:26:31 ============================================================================ +14:26:31 FNo. Len. Field Value +14:26:31 ============================================================================ +14:26:31 [ 1] [ 4] [0210] +14:26:31 [ 2] [ 16] [6213545001030570] +14:26:31 [ 3] [ 6] [302000] +14:26:31 [ 4] [ 12] [000000000000] +14:26:31 [ 7] [ 10] [0320072537] +14:26:31 [ 11] [ 6] [269653] +14:26:31 [ 12] [ 6] [142537] +14:26:31 [ 13] [ 4] [0320] +14:26:31 [ 15] [ 4] [0320] +14:26:31 [ 18] [ 4] [6011] +14:26:31 [ 19] [ 3] [418] +14:26:31 [ 32] [ 6] [180893] +14:26:31 [ 35] [ 32] [6213545001030570=491212013057518] +14:26:31 [ 37] [ 12] [507907269653] +14:26:31 [ 38] [ 6] [999273] +14:26:31 [ 39] [ 2] [00] +14:26:31 [ 41] [ 8] [0261PSL1] +14:26:31 [ 49] [ 3] [418] +14:26:31 [ 54] [ 40] [2001418C0000050706452002418C000005070645] +14:26:31 ============================================================================ +14:26:31 Sending to : +14:26:31 ============================================================================ +14:26:31 + + +waiting on router queue for slot.... +14:26:31 ============================================================================ +14:26:31 Slot Id : <475> +14:26:31 Transaction Type : REQUEST +14:26:31 Received From : +14:26:31 ============================================================================ +14:26:31 FNo. Len. Field Value +14:26:31 ============================================================================ +14:26:31 [ 1] [ 4] [0200] +14:26:31 [ 2] [ 16] [1808930200039162] +14:26:31 [ 3] [ 6] [011000] +14:26:31 [ 4] [ 12] [000050000000] +14:26:31 [ 7] [ 10] [0320142626] +14:26:31 [ 11] [ 6] [770040] +14:26:31 [ 12] [ 6] [142626] +14:26:31 [ 13] [ 4] [0320] +14:26:31 [ 15] [ 4] [0320] +14:26:31 [ 18] [ 4] [6011] +14:26:31 [ 22] [ 3] [900] +14:26:31 [ 25] [ 2] [02] +14:26:31 [ 28] [ 9] [D00002000] +14:26:31 [ 32] [ 6] [621354] +14:26:31 [ 35] [ 27] [1808930200039162=1803500328] +14:26:31 [ 37] [ 12] [507905005786] +14:26:31 [ 41] [ 8] [01012400] +14:26:31 [ 42] [ 15] [NATIVE ] +14:26:31 [ 43] [ 40] [Xaysetha Hospital02 Vientiane LAO] +14:26:31 [ 49] [ 3] [418] +14:26:31 [ 52] [ 16] [54763097195E0640] +14:26:31 ============================================================================ +14:26:31 + + +waiting on router queue for slot.... +14:26:31 Sending to : +14:26:31 ============================================================================ +14:26:31 ============================================================================ +14:26:31 Slot Id : <475> +14:26:31 Transaction Type : REQUEST +14:26:31 Received From : +14:26:31 ============================================================================ +14:26:31 FNo. Len. Field Value +14:26:31 ============================================================================ +14:26:31 [ 1] [ 4] [0200] +14:26:31 [ 2] [ 16] [1808930200039162] +14:26:31 [ 3] [ 6] [011000] +14:26:31 [ 4] [ 12] [000050000000] +14:26:31 [ 7] [ 10] [0320142626] +14:26:31 [ 11] [ 6] [770040] +14:26:31 [ 12] [ 6] [142626] +14:26:31 [ 13] [ 4] [0320] +14:26:31 [ 15] [ 4] [0320] +14:26:31 [ 18] [ 4] [6011] +14:26:31 [ 22] [ 3] [900] +14:26:31 [ 25] [ 2] [02] +14:26:31 [ 28] [ 9] [D00002000] +14:26:31 [ 32] [ 6] [621354] +14:26:31 [ 35] [ 27] [1808930200039162=1803500328] +14:26:31 [ 37] [ 12] [507905005786] +14:26:31 [ 41] [ 8] [01012400] +14:26:31 [ 42] [ 15] [NATIVE ] +14:26:31 [ 43] [ 40] [Xaysetha Hospital02 Vientiane LAO] +14:26:31 [ 49] [ 3] [418] +14:26:31 [ 52] [ 16] [5EFDE365CB49D58E] +14:26:31 ============================================================================ +14:26:31 + + +waiting on router queue for slot.... +14:26:31 Sending to : <2> +14:26:31 ============================================================================ +14:26:32 ============================================================================ +14:26:32 Slot Id : <466> +14:26:32 Transaction Type : RESPONSE +14:26:32 Received From : +14:26:32 ============================================================================ +14:26:32 FNo. Len. Field Value +14:26:32 ============================================================================ +14:26:32 [ 1] [ 4] [0210] +14:26:32 [ 2] [ 16] [6213545001030570] +14:26:32 [ 3] [ 6] [302000] +14:26:32 [ 4] [ 12] [000000000000] +14:26:32 [ 7] [ 10] [0320072537] +14:26:32 [ 11] [ 6] [269653] +14:26:32 [ 12] [ 6] [142537] +14:26:32 [ 13] [ 4] [0320] +14:26:32 [ 15] [ 4] [0320] +14:26:32 [ 18] [ 4] [6011] +14:26:32 [ 19] [ 3] [418] +14:26:32 [ 32] [ 6] [180893] +14:26:32 [ 35] [ 32] [6213545001030570=491212013057518] +14:26:32 [ 37] [ 12] [507907269653] +14:26:32 [ 38] [ 6] [999273] +14:26:32 [ 39] [ 2] [00] +14:26:32 [ 41] [ 8] [0261PSL1] +14:26:32 [ 49] [ 3] [418] +14:26:32 [ 54] [ 40] [2001418C0000050706452002418C000005070645] +14:26:32 ============================================================================ +14:26:32 Calculate Source COMM Id = 2 +14:26:32 ============================================================================ +14:26:32 + + +waiting on router queue for slot.... +14:26:34 ============================================================================ +14:26:34 Slot Id : <468> +14:26:34 Transaction Type : REQUEST +14:26:34 Received From : +14:26:34 ============================================================================ +14:26:34 FNo. Len. Field Value +14:26:34 ============================================================================ +14:26:34 [ 1] [ 4] [0200] +14:26:34 [ 2] [ 16] [6688990105511404] +14:26:34 [ 3] [ 6] [300000] +14:26:34 [ 4] [ 12] [000000000000] +14:26:34 [ 7] [ 10] [0320142629] +14:26:34 [ 11] [ 6] [770055] +14:26:34 [ 12] [ 6] [142629] +14:26:34 [ 13] [ 4] [0320] +14:26:34 [ 15] [ 4] [0320] +14:26:34 [ 18] [ 4] [6011] +14:26:34 [ 22] [ 3] [900] +14:26:34 [ 25] [ 2] [02] +14:26:34 [ 28] [ 9] [D00000000] +14:26:34 [ 32] [ 6] [621354] +14:26:34 [ 35] [ 37] [6688990105511404=43091231140487300000] +14:26:34 [ 37] [ 12] [507905382497] +14:26:34 [ 41] [ 8] [12003400] +14:26:34 [ 42] [ 15] [NATIVE ] +14:26:34 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +14:26:34 [ 49] [ 3] [418] +14:26:34 [ 52] [ 16] [CCEE5547B2654291] +14:26:34 ============================================================================ +14:26:34 + + +waiting on router queue for slot.... +14:26:34 Sending to : +14:26:34 ============================================================================ +14:26:34 Sending to : +14:26:34 ============================================================================ +14:26:34 ============================================================================ +14:26:34 Slot Id : <468> +14:26:34 Transaction Type : REQUEST +14:26:34 Received From : +14:26:34 ============================================================================ +14:26:34 FNo. Len. Field Value +14:26:34 ============================================================================ +14:26:34 [ 1] [ 4] [0200] +14:26:34 [ 2] [ 16] [6688990105511404] +14:26:34 [ 3] [ 6] [300000] +14:26:34 [ 4] [ 12] [000000000000] +14:26:34 [ 7] [ 10] [0320142629] +14:26:34 [ 11] [ 6] [770055] +14:26:34 [ 12] [ 6] [142629] +14:26:34 [ 13] [ 4] [0320] +14:26:34 [ 15] [ 4] [0320] +14:26:34 [ 18] [ 4] [6011] +14:26:34 [ 22] [ 3] [900] +14:26:34 [ 25] [ 2] [02] +14:26:34 [ 28] [ 9] [D00000000] +14:26:34 [ 32] [ 6] [621354] +14:26:34 [ 35] [ 37] [6688990105511404=43091231140487300000] +14:26:34 [ 37] [ 12] [507905382497] +14:26:34 [ 41] [ 8] [12003400] +14:26:34 [ 42] [ 15] [NATIVE ] +14:26:34 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +14:26:34 [ 49] [ 3] [418] +14:26:34 [ 52] [ 16] [CCEE5547B2654291] +14:26:34 ============================================================================ +14:26:34 + + +waiting on router queue for slot.... +14:26:34 Sending to : +14:26:34 ============================================================================ +14:26:34 ============================================================================ +14:26:34 Slot Id : <468> +14:26:34 Transaction Type : REQUEST +14:26:34 Received From : +14:26:34 ============================================================================ +14:26:34 FNo. Len. Field Value +14:26:34 ============================================================================ +14:26:34 [ 1] [ 4] [0200] +14:26:34 [ 2] [ 16] [6688990105511404] +14:26:34 [ 3] [ 6] [300000] +14:26:34 [ 4] [ 12] [000000000000] +14:26:34 [ 7] [ 10] [0320142629] +14:26:34 [ 11] [ 6] [770055] +14:26:34 [ 12] [ 6] [142629] +14:26:34 [ 13] [ 4] [0320] +14:26:34 [ 15] [ 4] [0320] +14:26:34 [ 18] [ 4] [6011] +14:26:34 [ 22] [ 3] [900] +14:26:34 [ 25] [ 2] [02] +14:26:34 [ 28] [ 9] [D00000000] +14:26:34 [ 32] [ 6] [621354] +14:26:34 [ 35] [ 37] [6688990105511404=43091231140487300000] +14:26:34 [ 37] [ 12] [507905382497] +14:26:34 [ 41] [ 8] [12003400] +14:26:34 [ 42] [ 15] [NATIVE ] +14:26:34 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +14:26:34 [ 49] [ 3] [418] +14:26:34 [ 52] [ 16] [9D4889D79A877A12] +14:26:34 ============================================================================ +14:26:34 + + +waiting on router queue for slot.... +14:26:34 Sending to : <4> +14:26:34 ============================================================================ +14:26:34 ============================================================================ +14:26:34 Slot Id : <455> +14:26:34 Transaction Type : REQUEST +14:26:34 Received From : +14:26:34 ============================================================================ +14:26:34 FNo. Len. Field Value +14:26:34 ============================================================================ +14:26:34 [ 1] [ 4] [0800] +14:26:34 [ 2] [ 5] [02531] +14:26:34 [ 3] [ 6] [579148] +14:26:34 [ 7] [ 10] [0320072634] +14:26:34 [ 11] [ 6] [807250] +14:26:34 [ 15] [ 10] [0320072634] +14:26:34 [ 37] [ 11] [57914807250] +14:26:34 [ 70] [ 3] [001] +14:26:34 ============================================================================ +14:26:34 + + +waiting on router queue for slot.... +14:26:34 ============================================================================ +14:26:34 Slot Id : <455> +14:26:34 Transaction Type : RESPONSE +14:26:34 Received From : +14:26:34 ============================================================================ +14:26:34 FNo. Len. Field Value +14:26:34 ============================================================================ +14:26:34 [ 1] [ 4] [0810] +14:26:34 [ 7] [ 10] [0320072634] +14:26:34 [ 11] [ 6] [807250] +14:26:34 [ 15] [ 4] [0320] +14:26:34 [ 37] [ 12] [57914807250] +14:26:34 [ 39] [ 2] [00] +14:26:34 [ 70] [ 3] [001] +14:26:34 ============================================================================ +14:26:34 Sending to : +14:26:34 ============================================================================ +14:26:34 + + +waiting on router queue for slot.... +14:26:35 ============================================================================ +14:26:35 Slot Id : <468> +14:26:35 Transaction Type : RESPONSE +14:26:35 Received From : +14:26:35 ============================================================================ +14:26:35 FNo. Len. Field Value +14:26:35 ============================================================================ +14:26:35 [ 1] [ 4] [0210] +14:26:35 [ 2] [ 16] [6688990105511404] +14:26:35 [ 3] [ 6] [300000] +14:26:35 [ 4] [ 12] [000000000000] +14:26:35 [ 11] [ 6] [770055] +14:26:35 [ 12] [ 6] [142629] +14:26:35 [ 15] [ 4] [0320] +14:26:35 [ 18] [ 4] [6011] +14:26:35 [ 32] [ 6] [621354] +14:26:35 [ 35] [ 37] [6688990105511404=43091231140487300000] +14:26:35 [ 37] [ 12] [507905382497] +14:26:35 [ 38] [ 6] [925606] +14:26:35 [ 39] [ 2] [00] +14:26:35 [ 41] [ 8] [12003400] +14:26:35 [ 49] [ 3] [418] +14:26:35 [ 54] [ 20] [0002418C000124962402] +14:26:35 ============================================================================ +14:26:35 Sending to : +14:26:35 ============================================================================ +14:26:35 + + +waiting on router queue for slot.... +14:26:36 ============================================================================ +14:26:36 Slot Id : <475> +14:26:36 Transaction Type : RESPONSE +14:26:36 Received From : +14:26:36 ============================================================================ +14:26:36 FNo. Len. Field Value +14:26:36 ============================================================================ +14:26:36 [ 1] [ 4] [0210] +14:26:36 [ 2] [ 16] [1808930200039162] +14:26:36 [ 3] [ 6] [011000] +14:26:36 [ 4] [ 12] [000050000000] +14:26:36 [ 6] [ 12] [000050000000] +14:26:36 [ 7] [ 10] [0320142626] +14:26:36 [ 11] [ 6] [770040] +14:26:36 [ 12] [ 6] [142626] +14:26:36 [ 13] [ 4] [0320] +14:26:36 [ 18] [ 4] [6011] +14:26:36 [ 19] [ 3] [418] +14:26:36 [ 22] [ 3] [021] +14:26:36 [ 32] [ 6] [621354] +14:26:36 [ 35] [ 27] [1808930200039162=1803500328] +14:26:36 [ 37] [ 12] [507905005786] +14:26:36 [ 38] [ 6] [770040] +14:26:36 [ 39] [ 2] [00] +14:26:36 [ 41] [ 8] [01012400] +14:26:36 [ 49] [ 3] [418] +14:26:36 [ 52] [ 16] [5EFDE365CB49D58E] +14:26:36 [ 54] [ 20] [1001418C000155251800] +14:26:36 ============================================================================ +14:26:36 Sending to : +14:26:36 ============================================================================ +14:26:36 + + +waiting on router queue for slot.... +14:26:36 ============================================================================ +14:26:36 Slot Id : <468> +14:26:36 Transaction Type : RESPONSE +14:26:36 Received From : +14:26:36 ============================================================================ +14:26:36 FNo. Len. Field Value +14:26:36 ============================================================================ +14:26:36 [ 1] [ 4] [0210] +14:26:36 [ 2] [ 16] [6688990105511404] +14:26:36 [ 3] [ 6] [300000] +14:26:36 [ 4] [ 12] [000000000000] +14:26:36 [ 11] [ 6] [770055] +14:26:36 [ 12] [ 6] [142629] +14:26:36 [ 15] [ 4] [0320] +14:26:36 [ 18] [ 4] [6011] +14:26:36 [ 32] [ 6] [621354] +14:26:36 [ 35] [ 37] [6688990105511404=43091231140487300000] +14:26:36 [ 37] [ 12] [507905382497] +14:26:36 [ 38] [ 6] [925606] +14:26:36 [ 39] [ 2] [00] +14:26:36 [ 41] [ 8] [12003400] +14:26:36 [ 49] [ 3] [418] +14:26:36 [ 54] [ 20] [0002418C000124962402] +14:26:36 ============================================================================ +14:26:36 Calculate Source COMM Id = 0 +14:26:36 ============================================================================ +14:26:36 + + +waiting on router queue for slot.... +14:26:38 ============================================================================ +14:26:38 Slot Id : <475> +14:26:38 Transaction Type : RESPONSE +14:26:38 Received From : +14:26:38 ============================================================================ +14:26:38 FNo. Len. Field Value +14:26:38 ============================================================================ +14:26:38 [ 1] [ 4] [0210] +14:26:38 [ 2] [ 16] [1808930200039162] +14:26:38 [ 3] [ 6] [011000] +14:26:38 [ 4] [ 12] [000050000000] +14:26:38 [ 6] [ 12] [000050000000] +14:26:38 [ 7] [ 10] [0320142626] +14:26:38 [ 11] [ 6] [770040] +14:26:38 [ 12] [ 6] [142626] +14:26:38 [ 13] [ 4] [0320] +14:26:38 [ 18] [ 4] [6011] +14:26:38 [ 19] [ 3] [418] +14:26:38 [ 22] [ 3] [021] +14:26:38 [ 32] [ 6] [621354] +14:26:38 [ 35] [ 27] [1808930200039162=1803500328] +14:26:38 [ 37] [ 12] [507905005786] +14:26:38 [ 38] [ 6] [770040] +14:26:38 [ 39] [ 2] [00] +14:26:38 [ 41] [ 8] [01012400] +14:26:38 [ 49] [ 3] [418] +14:26:38 [ 52] [ 16] [5EFDE365CB49D58E] +14:26:38 [ 54] [ 20] [1001418C000155251800] +14:26:38 ============================================================================ +14:26:38 Calculate Source COMM Id = 0 +14:26:38 ============================================================================ +14:26:38 + + +waiting on router queue for slot.... +14:26:45 ============================================================================ +14:26:45 Slot Id : <440> +14:26:45 Transaction Type : REQUEST +14:26:45 Received From : +14:26:45 ============================================================================ +14:26:45 FNo. Len. Field Value +14:26:45 ============================================================================ +14:26:45 [ 1] [ 4] [0200] +14:26:45 [ 2] [ 16] [1888880000082578] +14:26:45 [ 3] [ 6] [011000] +14:26:45 [ 4] [ 12] [000020000000] +14:26:45 [ 7] [ 10] [0320142640] +14:26:45 [ 11] [ 6] [770094] +14:26:45 [ 12] [ 6] [142640] +14:26:45 [ 13] [ 4] [0320] +14:26:45 [ 15] [ 4] [0320] +14:26:45 [ 18] [ 4] [6011] +14:26:45 [ 22] [ 3] [900] +14:26:45 [ 25] [ 2] [02] +14:26:45 [ 28] [ 9] [D00002000] +14:26:45 [ 32] [ 6] [621354] +14:26:45 [ 35] [ 32] [1888880000082578=000010100000279] +14:26:45 [ 37] [ 12] [507903161337] +14:26:45 [ 41] [ 8] [04002600] +14:26:45 [ 42] [ 15] [NATIVE ] +14:26:45 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +14:26:45 [ 49] [ 3] [418] +14:26:45 [ 52] [ 16] [12149EA42FC24DD2] +14:26:45 ============================================================================ +14:26:45 + + +waiting on router queue for slot.... +14:26:45 Sending to : +14:26:45 ============================================================================ +14:26:45 Sending to : +14:26:45 ============================================================================ +14:26:45 ============================================================================ +14:26:45 Slot Id : <440> +14:26:45 Transaction Type : REQUEST +14:26:45 Received From : +14:26:45 ============================================================================ +14:26:45 FNo. Len. Field Value +14:26:45 ============================================================================ +14:26:45 [ 1] [ 4] [0200] +14:26:45 [ 2] [ 16] [1888880000082578] +14:26:45 [ 3] [ 6] [011000] +14:26:45 [ 4] [ 12] [000020000000] +14:26:45 [ 7] [ 10] [0320142640] +14:26:45 [ 11] [ 6] [770094] +14:26:45 [ 12] [ 6] [142640] +14:26:45 [ 13] [ 4] [0320] +14:26:45 [ 15] [ 4] [0320] +14:26:45 [ 18] [ 4] [6011] +14:26:45 [ 22] [ 3] [900] +14:26:45 [ 25] [ 2] [02] +14:26:45 [ 28] [ 9] [D00002000] +14:26:45 [ 32] [ 6] [621354] +14:26:45 [ 35] [ 32] [1888880000082578=000010100000279] +14:26:45 [ 37] [ 12] [507903161337] +14:26:45 [ 41] [ 8] [04002600] +14:26:45 [ 42] [ 15] [NATIVE ] +14:26:45 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +14:26:45 [ 49] [ 3] [418] +14:26:45 [ 52] [ 16] [12149EA42FC24DD2] +14:26:45 ============================================================================ +14:26:45 + + +waiting on router queue for slot.... +14:26:45 Sending to : +14:26:45 ============================================================================ +14:26:45 ============================================================================ +14:26:45 Slot Id : <440> +14:26:45 Transaction Type : REQUEST +14:26:45 Received From : +14:26:45 ============================================================================ +14:26:45 FNo. Len. Field Value +14:26:45 ============================================================================ +14:26:45 [ 1] [ 4] [0200] +14:26:45 [ 2] [ 16] [1888880000082578] +14:26:45 [ 3] [ 6] [011000] +14:26:45 [ 4] [ 12] [000020000000] +14:26:45 [ 7] [ 10] [0320142640] +14:26:45 [ 11] [ 6] [770094] +14:26:45 [ 12] [ 6] [142640] +14:26:45 [ 13] [ 4] [0320] +14:26:45 [ 15] [ 4] [0320] +14:26:45 [ 18] [ 4] [6011] +14:26:45 [ 22] [ 3] [900] +14:26:45 [ 25] [ 2] [02] +14:26:45 [ 28] [ 9] [D00002000] +14:26:45 [ 32] [ 6] [621354] +14:26:45 [ 35] [ 32] [1888880000082578=000010100000279] +14:26:45 [ 37] [ 12] [507903161337] +14:26:45 [ 41] [ 8] [04002600] +14:26:45 [ 42] [ 15] [NATIVE ] +14:26:45 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +14:26:45 [ 49] [ 3] [418] +14:26:45 [ 52] [ 16] [D8660359B3F328AC] +14:26:45 ============================================================================ +14:26:45 + + +waiting on router queue for slot.... +14:26:45 Sending to : <5> +14:26:45 ============================================================================ +14:26:47 ============================================================================ +14:26:47 Slot Id : <449> +14:26:47 Transaction Type : REQUEST +14:26:47 Received From : +14:26:47 ============================================================================ +14:26:47 FNo. Len. Field Value +14:26:47 ============================================================================ +14:26:47 [ 1] [ 4] [0800] +14:26:47 [ 7] [ 10] [0320072554] +14:26:47 [ 11] [ 6] [156784] +14:26:47 [ 70] [ 3] [301] +14:26:47 ============================================================================ +14:26:47 + + +waiting on router queue for slot.... +14:26:47 Sending to : +14:26:47 ============================================================================ +14:26:47 ============================================================================ +14:26:47 Slot Id : <449> +14:26:47 Transaction Type : RESPONSE +14:26:47 Received From : +14:26:47 ============================================================================ +14:26:47 FNo. Len. Field Value +14:26:47 ============================================================================ +14:26:47 [ 1] [ 4] [0810] +14:26:47 [ 7] [ 10] [0320072554] +14:26:47 [ 11] [ 6] [156784] +14:26:47 [ 39] [ 2] [00] +14:26:47 [ 70] [ 3] [301] +14:26:47 ============================================================================ +14:26:47 Calculate Source COMM Id = 2 +14:26:47 ============================================================================ +14:26:47 + + +waiting on router queue for slot.... +14:26:48 ============================================================================ +14:26:48 Slot Id : <440> +14:26:48 Transaction Type : RESPONSE +14:26:48 Received From : +14:26:48 ============================================================================ +14:26:48 FNo. Len. Field Value +14:26:48 ============================================================================ +14:26:48 [ 1] [ 4] [0210] +14:26:48 [ 2] [ 16] [1888880000082578] +14:26:48 [ 3] [ 6] [011000] +14:26:48 [ 4] [ 12] [000020000000] +14:26:48 [ 7] [ 10] [0320142640] +14:26:48 [ 11] [ 6] [770094] +14:26:48 [ 12] [ 6] [142640] +14:26:48 [ 13] [ 4] [0320] +14:26:48 [ 15] [ 4] [0320] +14:26:48 [ 18] [ 4] [6011] +14:26:48 [ 19] [ 3] [418] +14:26:48 [ 32] [ 6] [621354] +14:26:48 [ 37] [ 12] [507903161337] +14:26:48 [ 38] [ 6] [597197] +14:26:48 [ 39] [ 2] [00] +14:26:48 [ 41] [ 8] [04002600] +14:26:48 [ 49] [ 3] [418] +14:26:48 [ 54] [ 0] [] +14:26:48 ============================================================================ +14:26:48 Sending to : +14:26:48 ============================================================================ +14:26:48 + + +waiting on router queue for slot.... +14:26:50 ============================================================================ +14:26:50 Slot Id : <440> +14:26:50 Transaction Type : RESPONSE +14:26:50 Received From : +14:26:50 ============================================================================ +14:26:50 FNo. Len. Field Value +14:26:50 ============================================================================ +14:26:50 [ 1] [ 4] [0210] +14:26:50 [ 2] [ 16] [1888880000082578] +14:26:50 [ 3] [ 6] [011000] +14:26:50 [ 4] [ 12] [000020000000] +14:26:50 [ 7] [ 10] [0320142640] +14:26:50 [ 11] [ 6] [770094] +14:26:50 [ 12] [ 6] [142640] +14:26:50 [ 13] [ 4] [0320] +14:26:50 [ 15] [ 4] [0320] +14:26:50 [ 18] [ 4] [6011] +14:26:50 [ 19] [ 3] [418] +14:26:50 [ 32] [ 6] [621354] +14:26:50 [ 37] [ 12] [507903161337] +14:26:50 [ 38] [ 6] [597197] +14:26:50 [ 39] [ 2] [00] +14:26:50 [ 41] [ 8] [04002600] +14:26:50 [ 49] [ 3] [418] +14:26:50 [ 54] [ 0] [] +14:26:50 ============================================================================ +14:26:50 Calculate Source COMM Id = 0 +14:26:50 ============================================================================ +14:26:50 + + +waiting on router queue for slot.... +14:26:53 ============================================================================ +14:26:53 Slot Id : <482> +14:26:53 Transaction Type : REQUEST +14:26:53 Received From : +14:26:53 ============================================================================ +14:26:53 FNo. Len. Field Value +14:26:53 ============================================================================ +14:26:53 [ 1] [ 4] [0200] +14:26:53 [ 2] [ 16] [6688990104937501] +14:26:53 [ 3] [ 6] [011000] +14:26:53 [ 4] [ 12] [000090000000] +14:26:53 [ 7] [ 10] [0320142649] +14:26:53 [ 11] [ 6] [770119] +14:26:53 [ 12] [ 6] [142649] +14:26:53 [ 13] [ 4] [0320] +14:26:53 [ 15] [ 4] [0320] +14:26:53 [ 18] [ 4] [6011] +14:26:53 [ 22] [ 3] [900] +14:26:53 [ 25] [ 2] [02] +14:26:53 [ 28] [ 9] [D00002000] +14:26:53 [ 32] [ 6] [621354] +14:26:53 [ 35] [ 37] [6688990104937501=43061231750113300000] +14:26:53 [ 37] [ 12] [507905200881] +14:26:53 [ 41] [ 8] [07001700] +14:26:53 [ 42] [ 15] [NATIVE ] +14:26:53 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:26:53 [ 49] [ 3] [418] +14:26:53 [ 52] [ 16] [623A370C8584B2C7] +14:26:53 ============================================================================ +14:26:53 + + +waiting on router queue for slot.... +14:26:53 Sending to : +14:26:53 ============================================================================ +14:26:53 Sending to : +14:26:53 ============================================================================ +14:26:54 ============================================================================ +14:26:54 Slot Id : <482> +14:26:54 Transaction Type : REQUEST +14:26:54 Received From : +14:26:54 ============================================================================ +14:26:54 FNo. Len. Field Value +14:26:54 ============================================================================ +14:26:54 [ 1] [ 4] [0200] +14:26:54 [ 2] [ 16] [6688990104937501] +14:26:54 [ 3] [ 6] [011000] +14:26:54 [ 4] [ 12] [000090000000] +14:26:54 [ 7] [ 10] [0320142649] +14:26:54 [ 11] [ 6] [770119] +14:26:54 [ 12] [ 6] [142649] +14:26:54 [ 13] [ 4] [0320] +14:26:54 [ 15] [ 4] [0320] +14:26:54 [ 18] [ 4] [6011] +14:26:54 [ 22] [ 3] [900] +14:26:54 [ 25] [ 2] [02] +14:26:54 [ 28] [ 9] [D00002000] +14:26:54 [ 32] [ 6] [621354] +14:26:54 [ 35] [ 37] [6688990104937501=43061231750113300000] +14:26:54 [ 37] [ 12] [507905200881] +14:26:54 [ 41] [ 8] [07001700] +14:26:54 [ 42] [ 15] [NATIVE ] +14:26:54 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:26:54 [ 49] [ 3] [418] +14:26:54 [ 52] [ 16] [623A370C8584B2C7] +14:26:54 ============================================================================ +14:26:54 + + +waiting on router queue for slot.... +14:26:54 Sending to : +14:26:54 ============================================================================ +14:26:54 ============================================================================ +14:26:54 Slot Id : <482> +14:26:54 Transaction Type : REQUEST +14:26:54 Received From : +14:26:54 ============================================================================ +14:26:54 FNo. Len. Field Value +14:26:54 ============================================================================ +14:26:54 [ 1] [ 4] [0200] +14:26:54 [ 2] [ 16] [6688990104937501] +14:26:54 [ 3] [ 6] [011000] +14:26:54 [ 4] [ 12] [000090000000] +14:26:54 [ 7] [ 10] [0320142649] +14:26:54 [ 11] [ 6] [770119] +14:26:54 [ 12] [ 6] [142649] +14:26:54 [ 13] [ 4] [0320] +14:26:54 [ 15] [ 4] [0320] +14:26:54 [ 18] [ 4] [6011] +14:26:54 [ 22] [ 3] [900] +14:26:54 [ 25] [ 2] [02] +14:26:54 [ 28] [ 9] [D00002000] +14:26:54 [ 32] [ 6] [621354] +14:26:54 [ 35] [ 37] [6688990104937501=43061231750113300000] +14:26:54 [ 37] [ 12] [507905200881] +14:26:54 [ 41] [ 8] [07001700] +14:26:54 [ 42] [ 15] [NATIVE ] +14:26:54 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:26:54 [ 49] [ 3] [418] +14:26:54 [ 52] [ 16] [E649C6938A98CAF7] +14:26:54 ============================================================================ +14:26:54 + + +waiting on router queue for slot.... +14:26:54 Sending to : <4> +14:26:54 ============================================================================ +14:26:55 ============================================================================ +14:26:55 Slot Id : <482> +14:26:55 Transaction Type : RESPONSE +14:26:55 Received From : +14:26:55 ============================================================================ +14:26:55 FNo. Len. Field Value +14:26:55 ============================================================================ +14:26:55 [ 1] [ 4] [0210] +14:26:55 [ 2] [ 16] [6688990104937501] +14:26:55 [ 3] [ 6] [011000] +14:26:55 [ 4] [ 12] [000090000000] +14:26:55 [ 11] [ 6] [770119] +14:26:55 [ 12] [ 6] [142649] +14:26:55 [ 15] [ 4] [0320] +14:26:55 [ 18] [ 4] [6011] +14:26:55 [ 32] [ 6] [621354] +14:26:55 [ 35] [ 37] [6688990104937501=43061231750113300000] +14:26:55 [ 37] [ 12] [507905200881] +14:26:55 [ 38] [ 6] [548423] +14:26:55 [ 39] [ 2] [00] +14:26:55 [ 41] [ 8] [07001700] +14:26:55 [ 49] [ 3] [418] +14:26:55 [ 54] [ 20] [1002418C000006084801] +14:26:55 ============================================================================ +14:26:55 Sending to : +14:26:55 ============================================================================ +14:26:55 + + +waiting on router queue for slot.... +14:26:56 ============================================================================ +14:26:56 Slot Id : <482> +14:26:56 Transaction Type : RESPONSE +14:26:56 Received From : +14:26:56 ============================================================================ +14:26:56 FNo. Len. Field Value +14:26:56 ============================================================================ +14:26:56 [ 1] [ 4] [0210] +14:26:56 [ 2] [ 16] [6688990104937501] +14:26:56 [ 3] [ 6] [011000] +14:26:56 [ 4] [ 12] [000090000000] +14:26:56 [ 11] [ 6] [770119] +14:26:56 [ 12] [ 6] [142649] +14:26:56 [ 15] [ 4] [0320] +14:26:56 [ 18] [ 4] [6011] +14:26:56 [ 32] [ 6] [621354] +14:26:56 [ 35] [ 37] [6688990104937501=43061231750113300000] +14:26:56 [ 37] [ 12] [507905200881] +14:26:56 [ 38] [ 6] [548423] +14:26:56 [ 39] [ 2] [00] +14:26:56 [ 41] [ 8] [07001700] +14:26:56 [ 49] [ 3] [418] +14:26:56 [ 54] [ 20] [1002418C000006084801] +14:26:56 ============================================================================ +14:26:56 Calculate Source COMM Id = 0 +14:26:56 ============================================================================ +14:26:56 + + +waiting on router queue for slot.... +14:26:59 ============================================================================ +14:26:59 Slot Id : <432> +14:26:59 Transaction Type : REQUEST +14:26:59 Received From : +14:26:59 ============================================================================ +14:26:59 FNo. Len. Field Value +14:26:59 ============================================================================ +14:26:59 [ 1] [ 4] [0200] +14:26:59 [ 2] [ 16] [6688990030018756] +14:26:59 [ 3] [ 6] [011000] +14:26:59 [ 4] [ 12] [000100000000] +14:26:59 [ 7] [ 10] [0320142654] +14:26:59 [ 11] [ 6] [770138] +14:26:59 [ 12] [ 6] [142654] +14:26:59 [ 13] [ 4] [0320] +14:26:59 [ 15] [ 4] [0320] +14:26:59 [ 18] [ 4] [6011] +14:26:59 [ 22] [ 3] [900] +14:26:59 [ 25] [ 2] [02] +14:26:59 [ 28] [ 9] [D00002000] +14:26:59 [ 32] [ 6] [621354] +14:26:59 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:26:59 [ 37] [ 12] [507904660740] +14:26:59 [ 41] [ 8] [17001100] +14:26:59 [ 42] [ 15] [NATIVE ] +14:26:59 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:26:59 [ 49] [ 3] [418] +14:26:59 [ 52] [ 16] [14CBE7654C6164F4] +14:26:59 ============================================================================ +14:26:59 + + +waiting on router queue for slot.... +14:26:59 Sending to : +14:26:59 ============================================================================ +14:26:59 Sending to : +14:26:59 ============================================================================ +14:26:59 ============================================================================ +14:26:59 Slot Id : <432> +14:26:59 Transaction Type : REQUEST +14:26:59 Received From : +14:26:59 ============================================================================ +14:26:59 FNo. Len. Field Value +14:26:59 ============================================================================ +14:26:59 [ 1] [ 4] [0200] +14:26:59 [ 2] [ 16] [6688990030018756] +14:26:59 [ 3] [ 6] [011000] +14:26:59 [ 4] [ 12] [000100000000] +14:26:59 [ 7] [ 10] [0320142654] +14:26:59 [ 11] [ 6] [770138] +14:26:59 [ 12] [ 6] [142654] +14:26:59 [ 13] [ 4] [0320] +14:26:59 [ 15] [ 4] [0320] +14:26:59 [ 18] [ 4] [6011] +14:26:59 [ 22] [ 3] [900] +14:26:59 [ 25] [ 2] [02] +14:26:59 [ 28] [ 9] [D00002000] +14:26:59 [ 32] [ 6] [621354] +14:26:59 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:26:59 [ 37] [ 12] [507904660740] +14:26:59 [ 41] [ 8] [17001100] +14:26:59 [ 42] [ 15] [NATIVE ] +14:26:59 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:26:59 [ 49] [ 3] [418] +14:26:59 [ 52] [ 16] [14CBE7654C6164F4] +14:26:59 ============================================================================ +14:26:59 + + +waiting on router queue for slot.... +14:26:59 Sending to : +14:26:59 ============================================================================ +14:26:59 ============================================================================ +14:26:59 Slot Id : <432> +14:26:59 Transaction Type : REQUEST +14:26:59 Received From : +14:26:59 ============================================================================ +14:26:59 FNo. Len. Field Value +14:26:59 ============================================================================ +14:26:59 [ 1] [ 4] [0200] +14:26:59 [ 2] [ 16] [6688990030018756] +14:26:59 [ 3] [ 6] [011000] +14:26:59 [ 4] [ 12] [000100000000] +14:26:59 [ 7] [ 10] [0320142654] +14:26:59 [ 11] [ 6] [770138] +14:26:59 [ 12] [ 6] [142654] +14:26:59 [ 13] [ 4] [0320] +14:26:59 [ 15] [ 4] [0320] +14:26:59 [ 18] [ 4] [6011] +14:26:59 [ 22] [ 3] [900] +14:26:59 [ 25] [ 2] [02] +14:26:59 [ 28] [ 9] [D00002000] +14:26:59 [ 32] [ 6] [621354] +14:26:59 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:26:59 [ 37] [ 12] [507904660740] +14:26:59 [ 41] [ 8] [17001100] +14:26:59 [ 42] [ 15] [NATIVE ] +14:26:59 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:26:59 [ 49] [ 3] [418] +14:26:59 [ 52] [ 16] [C170D77DCA82B481] +14:26:59 ============================================================================ +14:26:59 + + +waiting on router queue for slot.... +14:26:59 Sending to : <4> +14:26:59 ============================================================================ +14:27:00 ============================================================================ +14:27:00 Slot Id : <432> +14:27:00 Transaction Type : RESPONSE +14:27:00 Received From : +14:27:00 ============================================================================ +14:27:00 FNo. Len. Field Value +14:27:00 ============================================================================ +14:27:00 [ 1] [ 4] [0210] +14:27:00 [ 2] [ 16] [6688990030018756] +14:27:00 [ 3] [ 6] [011000] +14:27:00 [ 4] [ 12] [000100000000] +14:27:00 [ 11] [ 6] [770138] +14:27:00 [ 12] [ 6] [142654] +14:27:00 [ 15] [ 4] [0320] +14:27:00 [ 18] [ 4] [6011] +14:27:00 [ 32] [ 6] [621354] +14:27:00 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:27:00 [ 37] [ 12] [507904660740] +14:27:00 [ 38] [ 6] [108265] +14:27:00 [ 39] [ 2] [00] +14:27:00 [ 41] [ 8] [17001100] +14:27:00 [ 49] [ 3] [418] +14:27:00 [ 54] [ 20] [1002418C000619600000] +14:27:00 ============================================================================ +14:27:00 Sending to : +14:27:00 ============================================================================ +14:27:00 + + +waiting on router queue for slot.... +14:27:02 ============================================================================ +14:27:02 Slot Id : <432> +14:27:02 Transaction Type : RESPONSE +14:27:02 Received From : +14:27:02 ============================================================================ +14:27:02 FNo. Len. Field Value +14:27:02 ============================================================================ +14:27:02 [ 1] [ 4] [0210] +14:27:02 [ 2] [ 16] [6688990030018756] +14:27:02 [ 3] [ 6] [011000] +14:27:02 [ 4] [ 12] [000100000000] +14:27:02 [ 11] [ 6] [770138] +14:27:02 [ 12] [ 6] [142654] +14:27:02 [ 15] [ 4] [0320] +14:27:02 [ 18] [ 4] [6011] +14:27:02 [ 32] [ 6] [621354] +14:27:02 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:27:02 [ 37] [ 12] [507904660740] +14:27:02 [ 38] [ 6] [108265] +14:27:02 [ 39] [ 2] [00] +14:27:02 [ 41] [ 8] [17001100] +14:27:02 [ 49] [ 3] [418] +14:27:02 [ 54] [ 20] [1002418C000619600000] +14:27:02 ============================================================================ +14:27:02 Calculate Source COMM Id = 0 +14:27:02 ============================================================================ +14:27:02 + + +waiting on router queue for slot.... +14:27:03 ============================================================================ +14:27:03 Slot Id : <460> +14:27:03 Transaction Type : REQUEST +14:27:03 Received From : +14:27:03 ============================================================================ +14:27:03 FNo. Len. Field Value +14:27:03 ============================================================================ +14:27:03 [ 1] [ 4] [0800] +14:27:03 [ 7] [ 10] [0320072611] +14:27:03 [ 11] [ 6] [156785] +14:27:03 [ 70] [ 3] [301] +14:27:03 ============================================================================ +14:27:03 + + +waiting on router queue for slot.... +14:27:03 Sending to : +14:27:03 ============================================================================ +14:27:03 ============================================================================ +14:27:03 Slot Id : <460> +14:27:03 Transaction Type : RESPONSE +14:27:03 Received From : +14:27:03 ============================================================================ +14:27:03 FNo. Len. Field Value +14:27:03 ============================================================================ +14:27:03 [ 1] [ 4] [0810] +14:27:03 [ 7] [ 10] [0320072611] +14:27:03 [ 11] [ 6] [156785] +14:27:03 [ 39] [ 2] [00] +14:27:03 [ 70] [ 3] [301] +14:27:03 ============================================================================ +14:27:03 Calculate Source COMM Id = 2 +14:27:03 ============================================================================ +14:27:03 + + +waiting on router queue for slot.... +14:27:14 ============================================================================ +14:27:14 Slot Id : <495> +14:27:14 Transaction Type : REQUEST +14:27:14 Received From : +14:27:14 ============================================================================ +14:27:14 FNo. Len. Field Value +14:27:14 ============================================================================ +14:27:14 [ 1] [ 4] [0800] +14:27:14 [ 7] [ 10] [0320072621] +14:27:14 [ 11] [ 6] [156786] +14:27:14 [ 70] [ 3] [301] +14:27:14 ============================================================================ +14:27:14 + + +waiting on router queue for slot.... +14:27:14 Sending to : +14:27:14 ============================================================================ +14:27:14 ============================================================================ +14:27:14 Slot Id : <495> +14:27:14 Transaction Type : RESPONSE +14:27:14 Received From : +14:27:14 ============================================================================ +14:27:14 FNo. Len. Field Value +14:27:14 ============================================================================ +14:27:14 [ 1] [ 4] [0810] +14:27:14 [ 7] [ 10] [0320072621] +14:27:14 [ 11] [ 6] [156786] +14:27:14 [ 39] [ 2] [00] +14:27:14 [ 70] [ 3] [301] +14:27:14 ============================================================================ +14:27:14 Calculate Source COMM Id = 2 +14:27:14 ============================================================================ +14:27:14 + + +waiting on router queue for slot.... +14:27:24 ============================================================================ +14:27:24 Slot Id : <453> +14:27:24 Transaction Type : REQUEST +14:27:24 Received From : +14:27:24 ============================================================================ +14:27:24 FNo. Len. Field Value +14:27:24 ============================================================================ +14:27:24 [ 1] [ 4] [0800] +14:27:24 [ 7] [ 10] [0320072632] +14:27:24 [ 11] [ 6] [156787] +14:27:24 [ 70] [ 3] [301] +14:27:24 ============================================================================ +14:27:24 + + +waiting on router queue for slot.... +14:27:24 Sending to : +14:27:24 ============================================================================ +14:27:24 ============================================================================ +14:27:24 Slot Id : <453> +14:27:24 Transaction Type : RESPONSE +14:27:24 Received From : +14:27:24 ============================================================================ +14:27:24 FNo. Len. Field Value +14:27:24 ============================================================================ +14:27:24 [ 1] [ 4] [0810] +14:27:24 [ 7] [ 10] [0320072632] +14:27:24 [ 11] [ 6] [156787] +14:27:24 [ 39] [ 2] [00] +14:27:24 [ 70] [ 3] [301] +14:27:24 ============================================================================ +14:27:24 Calculate Source COMM Id = 2 +14:27:24 ============================================================================ +14:27:24 + + +waiting on router queue for slot.... +14:27:34 ============================================================================ +14:27:34 Slot Id : <488> +14:27:34 Transaction Type : REQUEST +14:27:34 Received From : +14:27:34 ============================================================================ +14:27:34 FNo. Len. Field Value +14:27:34 ============================================================================ +14:27:34 [ 1] [ 4] [0800] +14:27:34 [ 7] [ 10] [0320213923] +14:27:34 [ 11] [ 6] [143923] +14:27:34 [ 37] [ 12] [57914143923] +14:27:34 [ 70] [ 3] [301] +14:27:34 ============================================================================ +14:27:34 + + +waiting on router queue for slot.... +14:27:34 Sending to : +14:27:34 ============================================================================ +14:27:34 ============================================================================ +14:27:34 Slot Id : <488> +14:27:34 Transaction Type : RESPONSE +14:27:34 Received From : +14:27:34 ============================================================================ +14:27:34 FNo. Len. Field Value +14:27:34 ============================================================================ +14:27:34 [ 1] [ 4] [0810] +14:27:34 [ 7] [ 10] [0320213923] +14:27:34 [ 11] [ 6] [143923] +14:27:34 [ 37] [ 12] [579141439230] +14:27:34 [ 39] [ 2] [00] +14:27:34 [ 70] [ 3] [810] +14:27:34 ============================================================================ +14:27:34 Calculate Source COMM Id = 6 +14:27:34 ============================================================================ +14:27:34 + + +waiting on router queue for slot.... +14:27:36 ============================================================================ +14:27:36 Slot Id : <470> +14:27:36 Transaction Type : REQUEST +14:27:36 Received From : +14:27:36 ============================================================================ +14:27:36 FNo. Len. Field Value +14:27:36 ============================================================================ +14:27:36 [ 1] [ 4] [0800] +14:27:36 [ 2] [ 5] [02531] +14:27:36 [ 3] [ 6] [579148] +14:27:36 [ 7] [ 10] [0320072736] +14:27:36 [ 11] [ 6] [807251] +14:27:36 [ 15] [ 10] [0320072736] +14:27:36 [ 37] [ 11] [57914807251] +14:27:36 [ 70] [ 3] [001] +14:27:36 ============================================================================ +14:27:36 + + +waiting on router queue for slot.... +14:27:36 ============================================================================ +14:27:36 Slot Id : <470> +14:27:36 Transaction Type : RESPONSE +14:27:36 Received From : +14:27:36 ============================================================================ +14:27:36 FNo. Len. Field Value +14:27:36 ============================================================================ +14:27:36 [ 1] [ 4] [0810] +14:27:36 [ 7] [ 10] [0320072736] +14:27:36 [ 11] [ 6] [807251] +14:27:36 [ 15] [ 4] [0320] +14:27:36 [ 37] [ 12] [57914807251] +14:27:36 [ 39] [ 2] [00] +14:27:36 [ 70] [ 3] [001] +14:27:36 ============================================================================ +14:27:36 Sending to : +14:27:36 ============================================================================ +14:27:36 + + +waiting on router queue for slot.... +14:27:40 ============================================================================ +14:27:40 Slot Id : <484> +14:27:40 Transaction Type : REQUEST +14:27:40 Received From : +14:27:40 ============================================================================ +14:27:40 FNo. Len. Field Value +14:27:40 ============================================================================ +14:27:40 [ 1] [ 4] [0800] +14:27:40 [ 7] [ 10] [0320072647] +14:27:40 [ 11] [ 6] [156788] +14:27:40 [ 70] [ 3] [301] +14:27:40 ============================================================================ +14:27:40 + + +waiting on router queue for slot.... +14:27:40 Sending to : +14:27:40 ============================================================================ +14:27:40 ============================================================================ +14:27:40 Slot Id : <484> +14:27:40 Transaction Type : RESPONSE +14:27:40 Received From : +14:27:40 ============================================================================ +14:27:40 FNo. Len. Field Value +14:27:40 ============================================================================ +14:27:40 [ 1] [ 4] [0810] +14:27:40 [ 7] [ 10] [0320072647] +14:27:40 [ 11] [ 6] [156788] +14:27:40 [ 39] [ 2] [00] +14:27:40 [ 70] [ 3] [301] +14:27:40 ============================================================================ +14:27:40 Calculate Source COMM Id = 2 +14:27:40 ============================================================================ +14:27:40 + + +waiting on router queue for slot.... +14:27:48 ============================================================================ +14:27:48 Slot Id : <490> +14:27:48 Transaction Type : REQUEST +14:27:48 Received From : +14:27:48 ============================================================================ +14:27:48 FNo. Len. Field Value +14:27:48 ============================================================================ +14:27:48 [ 1] [ 4] [0200] +14:27:48 [ 2] [ 16] [6688990103638704] +14:27:48 [ 3] [ 6] [011000] +14:27:48 [ 4] [ 12] [000100000000] +14:27:48 [ 7] [ 10] [0320142744] +14:27:48 [ 11] [ 6] [770308] +14:27:48 [ 12] [ 6] [142744] +14:27:48 [ 13] [ 4] [0320] +14:27:48 [ 15] [ 4] [0320] +14:27:48 [ 18] [ 4] [6011] +14:27:48 [ 22] [ 3] [900] +14:27:48 [ 25] [ 2] [02] +14:27:48 [ 28] [ 9] [D00002000] +14:27:48 [ 32] [ 6] [621354] +14:27:48 [ 35] [ 37] [6688990103638704=43011231870424100000] +14:27:48 [ 37] [ 12] [507903397917] +14:27:48 [ 41] [ 8] [06001200] +14:27:48 [ 42] [ 15] [NATIVE ] +14:27:48 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +14:27:48 [ 49] [ 3] [418] +14:27:48 [ 52] [ 16] [170FE55C2E74E4F3] +14:27:48 ============================================================================ +14:27:48 + + +waiting on router queue for slot.... +14:27:48 Sending to : +14:27:48 ============================================================================ +14:27:48 Sending to : +14:27:48 ============================================================================ +14:27:49 ============================================================================ +14:27:49 Slot Id : <490> +14:27:49 Transaction Type : REQUEST +14:27:49 Received From : +14:27:49 ============================================================================ +14:27:49 FNo. Len. Field Value +14:27:49 ============================================================================ +14:27:49 [ 1] [ 4] [0200] +14:27:49 [ 2] [ 16] [6688990103638704] +14:27:49 [ 3] [ 6] [011000] +14:27:49 [ 4] [ 12] [000100000000] +14:27:49 [ 7] [ 10] [0320142744] +14:27:49 [ 11] [ 6] [770308] +14:27:49 [ 12] [ 6] [142744] +14:27:49 [ 13] [ 4] [0320] +14:27:49 [ 15] [ 4] [0320] +14:27:49 [ 18] [ 4] [6011] +14:27:49 [ 22] [ 3] [900] +14:27:49 [ 25] [ 2] [02] +14:27:49 [ 28] [ 9] [D00002000] +14:27:49 [ 32] [ 6] [621354] +14:27:49 [ 35] [ 37] [6688990103638704=43011231870424100000] +14:27:49 [ 37] [ 12] [507903397917] +14:27:49 [ 41] [ 8] [06001200] +14:27:49 [ 42] [ 15] [NATIVE ] +14:27:49 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +14:27:49 [ 49] [ 3] [418] +14:27:49 [ 52] [ 16] [170FE55C2E74E4F3] +14:27:49 ============================================================================ +14:27:49 + + +waiting on router queue for slot.... +14:27:49 Sending to : +14:27:49 ============================================================================ +14:27:49 ============================================================================ +14:27:49 Slot Id : <490> +14:27:49 Transaction Type : REQUEST +14:27:49 Received From : +14:27:49 ============================================================================ +14:27:49 FNo. Len. Field Value +14:27:49 ============================================================================ +14:27:49 [ 1] [ 4] [0200] +14:27:49 [ 2] [ 16] [6688990103638704] +14:27:49 [ 3] [ 6] [011000] +14:27:49 [ 4] [ 12] [000100000000] +14:27:49 [ 7] [ 10] [0320142744] +14:27:49 [ 11] [ 6] [770308] +14:27:49 [ 12] [ 6] [142744] +14:27:49 [ 13] [ 4] [0320] +14:27:49 [ 15] [ 4] [0320] +14:27:49 [ 18] [ 4] [6011] +14:27:49 [ 22] [ 3] [900] +14:27:49 [ 25] [ 2] [02] +14:27:49 [ 28] [ 9] [D00002000] +14:27:49 [ 32] [ 6] [621354] +14:27:49 [ 35] [ 37] [6688990103638704=43011231870424100000] +14:27:49 [ 37] [ 12] [507903397917] +14:27:49 [ 41] [ 8] [06001200] +14:27:49 [ 42] [ 15] [NATIVE ] +14:27:49 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +14:27:49 [ 49] [ 3] [418] +14:27:49 [ 52] [ 16] [CBE3DAD4CBB88304] +14:27:49 ============================================================================ +14:27:49 + + +waiting on router queue for slot.... +14:27:49 Sending to : <4> +14:27:49 ============================================================================ +14:27:50 ============================================================================ +14:27:50 Slot Id : <490> +14:27:50 Transaction Type : RESPONSE +14:27:50 Received From : +14:27:50 ============================================================================ +14:27:50 FNo. Len. Field Value +14:27:50 ============================================================================ +14:27:50 [ 1] [ 4] [0210] +14:27:50 [ 2] [ 16] [6688990103638704] +14:27:50 [ 3] [ 6] [011000] +14:27:50 [ 4] [ 12] [000100000000] +14:27:50 [ 11] [ 6] [770308] +14:27:50 [ 12] [ 6] [142744] +14:27:50 [ 15] [ 4] [0320] +14:27:50 [ 18] [ 4] [6011] +14:27:50 [ 32] [ 6] [621354] +14:27:50 [ 35] [ 37] [6688990103638704=43011231870424100000] +14:27:50 [ 37] [ 12] [507903397917] +14:27:50 [ 38] [ 6] [528067] +14:27:50 [ 39] [ 2] [00] +14:27:50 [ 41] [ 8] [06001200] +14:27:50 [ 49] [ 3] [418] +14:27:50 [ 54] [ 20] [1002418C000239910863] +14:27:50 ============================================================================ +14:27:50 Sending to : +14:27:50 ============================================================================ +14:27:50 + + +waiting on router queue for slot.... +14:27:50 ============================================================================ +14:27:50 Slot Id : <463> +14:27:50 Transaction Type : REQUEST +14:27:50 Received From : +14:27:50 ============================================================================ +14:27:50 FNo. Len. Field Value +14:27:50 ============================================================================ +14:27:50 [ 1] [ 4] [0800] +14:27:50 [ 7] [ 10] [0320072658] +14:27:50 [ 11] [ 6] [156789] +14:27:50 [ 70] [ 3] [301] +14:27:50 ============================================================================ +14:27:50 + + +waiting on router queue for slot.... +14:27:50 Sending to : +14:27:50 ============================================================================ +14:27:50 ============================================================================ +14:27:50 Slot Id : <463> +14:27:50 Transaction Type : RESPONSE +14:27:50 Received From : +14:27:50 ============================================================================ +14:27:50 FNo. Len. Field Value +14:27:50 ============================================================================ +14:27:50 [ 1] [ 4] [0810] +14:27:50 [ 7] [ 10] [0320072658] +14:27:50 [ 11] [ 6] [156789] +14:27:50 [ 39] [ 2] [00] +14:27:50 [ 70] [ 3] [301] +14:27:50 ============================================================================ +14:27:50 Calculate Source COMM Id = 2 +14:27:50 ============================================================================ +14:27:50 + + +waiting on router queue for slot.... +14:27:51 ============================================================================ +14:27:51 Slot Id : <490> +14:27:51 Transaction Type : RESPONSE +14:27:51 Received From : +14:27:51 ============================================================================ +14:27:51 FNo. Len. Field Value +14:27:51 ============================================================================ +14:27:51 [ 1] [ 4] [0210] +14:27:51 [ 2] [ 16] [6688990103638704] +14:27:51 [ 3] [ 6] [011000] +14:27:51 [ 4] [ 12] [000100000000] +14:27:51 [ 11] [ 6] [770308] +14:27:51 [ 12] [ 6] [142744] +14:27:51 [ 15] [ 4] [0320] +14:27:51 [ 18] [ 4] [6011] +14:27:51 [ 32] [ 6] [621354] +14:27:51 [ 35] [ 37] [6688990103638704=43011231870424100000] +14:27:51 [ 37] [ 12] [507903397917] +14:27:51 [ 38] [ 6] [528067] +14:27:51 [ 39] [ 2] [00] +14:27:51 [ 41] [ 8] [06001200] +14:27:51 [ 49] [ 3] [418] +14:27:51 [ 54] [ 20] [1002418C000239910863] +14:27:51 ============================================================================ +14:27:51 Calculate Source COMM Id = 0 +14:27:51 ============================================================================ +14:27:51 + + +waiting on router queue for slot.... +14:27:52 ============================================================================ +14:27:52 Slot Id : <480> +14:27:52 Transaction Type : REQUEST +14:27:52 Received From : +14:27:52 ============================================================================ +14:27:52 FNo. Len. Field Value +14:27:52 ============================================================================ +14:27:52 [ 1] [ 4] [0200] +14:27:52 [ 2] [ 16] [6688990601482308] +14:27:52 [ 3] [ 6] [301000] +14:27:52 [ 4] [ 12] [000000000000] +14:27:52 [ 7] [ 10] [0320142747] +14:27:52 [ 11] [ 6] [770321] +14:27:52 [ 12] [ 6] [142747] +14:27:52 [ 13] [ 4] [0320] +14:27:52 [ 15] [ 4] [0320] +14:27:52 [ 18] [ 4] [6011] +14:27:52 [ 22] [ 3] [900] +14:27:52 [ 25] [ 2] [02] +14:27:52 [ 28] [ 9] [D00000000] +14:27:52 [ 32] [ 6] [621354] +14:27:52 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:27:52 [ 37] [ 12] [507904153945] +14:27:52 [ 41] [ 8] [20001000] +14:27:52 [ 42] [ 15] [NATIVE ] +14:27:52 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:27:52 [ 49] [ 3] [418] +14:27:52 [ 52] [ 16] [465C751FB1533BE4] +14:27:52 ============================================================================ +14:27:52 + + +waiting on router queue for slot.... +14:27:52 Sending to : +14:27:52 ============================================================================ +14:27:52 Sending to : +14:27:52 ============================================================================ +14:27:52 ============================================================================ +14:27:52 Slot Id : <480> +14:27:52 Transaction Type : REQUEST +14:27:52 Received From : +14:27:52 ============================================================================ +14:27:52 FNo. Len. Field Value +14:27:52 ============================================================================ +14:27:52 [ 1] [ 4] [0200] +14:27:52 [ 2] [ 16] [6688990601482308] +14:27:52 [ 3] [ 6] [301000] +14:27:52 [ 4] [ 12] [000000000000] +14:27:52 [ 7] [ 10] [0320142747] +14:27:52 [ 11] [ 6] [770321] +14:27:52 [ 12] [ 6] [142747] +14:27:52 [ 13] [ 4] [0320] +14:27:52 [ 15] [ 4] [0320] +14:27:52 [ 18] [ 4] [6011] +14:27:52 [ 22] [ 3] [900] +14:27:52 [ 25] [ 2] [02] +14:27:52 [ 28] [ 9] [D00000000] +14:27:52 [ 32] [ 6] [621354] +14:27:52 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:27:52 [ 37] [ 12] [507904153945] +14:27:52 [ 41] [ 8] [20001000] +14:27:52 [ 42] [ 15] [NATIVE ] +14:27:52 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:27:52 [ 49] [ 3] [418] +14:27:52 [ 52] [ 16] [465C751FB1533BE4] +14:27:52 ============================================================================ +14:27:52 + + +waiting on router queue for slot.... +14:27:52 Sending to : +14:27:52 ============================================================================ +14:27:52 ============================================================================ +14:27:52 Slot Id : <480> +14:27:52 Transaction Type : REQUEST +14:27:52 Received From : +14:27:52 ============================================================================ +14:27:52 FNo. Len. Field Value +14:27:52 ============================================================================ +14:27:52 [ 1] [ 4] [0200] +14:27:52 [ 2] [ 16] [6688990601482308] +14:27:52 [ 3] [ 6] [301000] +14:27:52 [ 4] [ 12] [000000000000] +14:27:52 [ 7] [ 10] [0320142747] +14:27:52 [ 11] [ 6] [770321] +14:27:52 [ 12] [ 6] [142747] +14:27:52 [ 13] [ 4] [0320] +14:27:52 [ 15] [ 4] [0320] +14:27:52 [ 18] [ 4] [6011] +14:27:52 [ 22] [ 3] [900] +14:27:52 [ 25] [ 2] [02] +14:27:52 [ 28] [ 9] [D00000000] +14:27:52 [ 32] [ 6] [621354] +14:27:52 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:27:52 [ 37] [ 12] [507904153945] +14:27:52 [ 41] [ 8] [20001000] +14:27:52 [ 42] [ 15] [NATIVE ] +14:27:52 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:27:52 [ 49] [ 3] [418] +14:27:52 [ 52] [ 16] [53BC927BCF4CBE07] +14:27:52 ============================================================================ +14:27:52 + + +waiting on router queue for slot.... +14:27:52 Sending to : <4> +14:27:52 ============================================================================ +14:27:53 ============================================================================ +14:27:53 Slot Id : <480> +14:27:53 Transaction Type : RESPONSE +14:27:53 Received From : +14:27:53 ============================================================================ +14:27:53 FNo. Len. Field Value +14:27:53 ============================================================================ +14:27:53 [ 1] [ 4] [0210] +14:27:53 [ 2] [ 16] [6688990601482308] +14:27:53 [ 3] [ 6] [301000] +14:27:53 [ 4] [ 12] [000000000000] +14:27:53 [ 11] [ 6] [770321] +14:27:53 [ 12] [ 6] [142747] +14:27:53 [ 15] [ 4] [0320] +14:27:53 [ 18] [ 4] [6011] +14:27:53 [ 32] [ 6] [621354] +14:27:53 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:27:53 [ 37] [ 12] [507904153945] +14:27:53 [ 38] [ 6] [062872] +14:27:53 [ 39] [ 2] [00] +14:27:53 [ 41] [ 8] [20001000] +14:27:53 [ 49] [ 3] [418] +14:27:53 [ 54] [ 20] [1002418C000294351125] +14:27:53 ============================================================================ +14:27:53 Sending to : +14:27:53 ============================================================================ +14:27:53 + + +waiting on router queue for slot.... +14:27:55 ============================================================================ +14:27:55 Slot Id : <480> +14:27:55 Transaction Type : RESPONSE +14:27:55 Received From : +14:27:55 ============================================================================ +14:27:55 FNo. Len. Field Value +14:27:55 ============================================================================ +14:27:55 [ 1] [ 4] [0210] +14:27:55 [ 2] [ 16] [6688990601482308] +14:27:55 [ 3] [ 6] [301000] +14:27:55 [ 4] [ 12] [000000000000] +14:27:55 [ 11] [ 6] [770321] +14:27:55 [ 12] [ 6] [142747] +14:27:55 [ 15] [ 4] [0320] +14:27:55 [ 18] [ 4] [6011] +14:27:55 [ 32] [ 6] [621354] +14:27:55 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:27:55 [ 37] [ 12] [507904153945] +14:27:55 [ 38] [ 6] [062872] +14:27:55 [ 39] [ 2] [00] +14:27:55 [ 41] [ 8] [20001000] +14:27:55 [ 49] [ 3] [418] +14:27:55 [ 54] [ 20] [1002418C000294351125] +14:27:55 ============================================================================ +14:27:55 Calculate Source COMM Id = 0 +14:27:55 ============================================================================ +14:27:55 + + +waiting on router queue for slot.... +14:28:00 ============================================================================ +14:28:00 Slot Id : <448> +14:28:00 Transaction Type : REQUEST +14:28:00 Received From : +14:28:00 ============================================================================ +14:28:00 FNo. Len. Field Value +14:28:00 ============================================================================ +14:28:00 [ 1] [ 4] [0200] +14:28:00 [ 2] [ 16] [6688990030018756] +14:28:00 [ 3] [ 6] [010000] +14:28:00 [ 4] [ 12] [000100000000] +14:28:00 [ 7] [ 10] [0320142755] +14:28:00 [ 11] [ 6] [770353] +14:28:00 [ 12] [ 6] [142755] +14:28:00 [ 13] [ 4] [0320] +14:28:00 [ 15] [ 4] [0320] +14:28:00 [ 18] [ 4] [6011] +14:28:00 [ 22] [ 3] [900] +14:28:00 [ 25] [ 2] [02] +14:28:00 [ 28] [ 9] [D00002000] +14:28:00 [ 32] [ 6] [621354] +14:28:00 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:28:00 [ 37] [ 12] [507904660742] +14:28:00 [ 41] [ 8] [17001100] +14:28:00 [ 42] [ 15] [NATIVE ] +14:28:00 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:28:00 [ 49] [ 3] [418] +14:28:00 [ 52] [ 16] [14CBE7654C6164F4] +14:28:00 ============================================================================ +14:28:00 + + +waiting on router queue for slot.... +14:28:00 Sending to : +14:28:00 ============================================================================ +14:28:00 Sending to : +14:28:00 ============================================================================ +14:28:00 ============================================================================ +14:28:00 Slot Id : <448> +14:28:00 Transaction Type : REQUEST +14:28:00 Received From : +14:28:00 ============================================================================ +14:28:00 FNo. Len. Field Value +14:28:00 ============================================================================ +14:28:00 [ 1] [ 4] [0200] +14:28:00 [ 2] [ 16] [6688990030018756] +14:28:00 [ 3] [ 6] [010000] +14:28:00 [ 4] [ 12] [000100000000] +14:28:00 [ 7] [ 10] [0320142755] +14:28:00 [ 11] [ 6] [770353] +14:28:00 [ 12] [ 6] [142755] +14:28:00 [ 13] [ 4] [0320] +14:28:00 [ 15] [ 4] [0320] +14:28:00 [ 18] [ 4] [6011] +14:28:00 [ 22] [ 3] [900] +14:28:00 [ 25] [ 2] [02] +14:28:00 [ 28] [ 9] [D00002000] +14:28:00 [ 32] [ 6] [621354] +14:28:00 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:28:00 [ 37] [ 12] [507904660742] +14:28:00 [ 41] [ 8] [17001100] +14:28:00 [ 42] [ 15] [NATIVE ] +14:28:00 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:28:00 [ 49] [ 3] [418] +14:28:00 [ 52] [ 16] [14CBE7654C6164F4] +14:28:00 ============================================================================ +14:28:00 + + +waiting on router queue for slot.... +14:28:00 Sending to : +14:28:00 ============================================================================ +14:28:00 ============================================================================ +14:28:00 Slot Id : <448> +14:28:00 Transaction Type : REQUEST +14:28:00 Received From : +14:28:00 ============================================================================ +14:28:00 FNo. Len. Field Value +14:28:00 ============================================================================ +14:28:00 [ 1] [ 4] [0200] +14:28:00 [ 2] [ 16] [6688990030018756] +14:28:00 [ 3] [ 6] [010000] +14:28:00 [ 4] [ 12] [000100000000] +14:28:00 [ 7] [ 10] [0320142755] +14:28:00 [ 11] [ 6] [770353] +14:28:00 [ 12] [ 6] [142755] +14:28:00 [ 13] [ 4] [0320] +14:28:00 [ 15] [ 4] [0320] +14:28:00 [ 18] [ 4] [6011] +14:28:00 [ 22] [ 3] [900] +14:28:00 [ 25] [ 2] [02] +14:28:00 [ 28] [ 9] [D00002000] +14:28:00 [ 32] [ 6] [621354] +14:28:00 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:28:00 [ 37] [ 12] [507904660742] +14:28:00 [ 41] [ 8] [17001100] +14:28:00 [ 42] [ 15] [NATIVE ] +14:28:00 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:28:00 [ 49] [ 3] [418] +14:28:00 [ 52] [ 16] [C170D77DCA82B481] +14:28:00 ============================================================================ +14:28:00 + + +waiting on router queue for slot.... +14:28:00 Sending to : <4> +14:28:00 ============================================================================ +14:28:01 ============================================================================ +14:28:01 Slot Id : <448> +14:28:01 Transaction Type : RESPONSE +14:28:01 Received From : +14:28:01 ============================================================================ +14:28:01 FNo. Len. Field Value +14:28:01 ============================================================================ +14:28:01 [ 1] [ 4] [0210] +14:28:01 [ 2] [ 16] [6688990030018756] +14:28:01 [ 3] [ 6] [010000] +14:28:01 [ 4] [ 12] [000100000000] +14:28:01 [ 11] [ 6] [770353] +14:28:01 [ 12] [ 6] [142755] +14:28:01 [ 15] [ 4] [0320] +14:28:01 [ 18] [ 4] [6011] +14:28:01 [ 32] [ 6] [621354] +14:28:01 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:28:01 [ 37] [ 12] [507904660742] +14:28:01 [ 38] [ 6] [770594] +14:28:01 [ 39] [ 2] [00] +14:28:01 [ 41] [ 8] [17001100] +14:28:01 [ 49] [ 3] [418] +14:28:01 [ 54] [ 20] [0002418C000519400000] +14:28:01 ============================================================================ +14:28:01 Sending to : +14:28:01 ============================================================================ +14:28:01 + + +waiting on router queue for slot.... +14:28:02 ============================================================================ +14:28:02 Slot Id : <448> +14:28:02 Transaction Type : RESPONSE +14:28:02 Received From : +14:28:02 ============================================================================ +14:28:02 FNo. Len. Field Value +14:28:02 ============================================================================ +14:28:02 [ 1] [ 4] [0210] +14:28:02 [ 2] [ 16] [6688990030018756] +14:28:02 [ 3] [ 6] [010000] +14:28:02 [ 4] [ 12] [000100000000] +14:28:02 [ 11] [ 6] [770353] +14:28:02 [ 12] [ 6] [142755] +14:28:02 [ 15] [ 4] [0320] +14:28:02 [ 18] [ 4] [6011] +14:28:02 [ 32] [ 6] [621354] +14:28:02 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:28:02 [ 37] [ 12] [507904660742] +14:28:02 [ 38] [ 6] [770594] +14:28:02 [ 39] [ 2] [00] +14:28:02 [ 41] [ 8] [17001100] +14:28:02 [ 49] [ 3] [418] +14:28:02 [ 54] [ 20] [0002418C000519400000] +14:28:02 ============================================================================ +14:28:02 Calculate Source COMM Id = 0 +14:28:02 ============================================================================ +14:28:02 + + +waiting on router queue for slot.... +14:28:07 ============================================================================ +14:28:07 Slot Id : <471> +14:28:07 Transaction Type : REQUEST +14:28:07 Received From : +14:28:07 ============================================================================ +14:28:07 FNo. Len. Field Value +14:28:07 ============================================================================ +14:28:07 [ 1] [ 4] [0800] +14:28:07 [ 7] [ 10] [0320072714] +14:28:07 [ 11] [ 6] [156790] +14:28:07 [ 70] [ 3] [301] +14:28:07 ============================================================================ +14:28:07 + + +waiting on router queue for slot.... +14:28:07 Sending to : +14:28:07 ============================================================================ +14:28:07 ============================================================================ +14:28:07 Slot Id : <471> +14:28:07 Transaction Type : RESPONSE +14:28:07 Received From : +14:28:07 ============================================================================ +14:28:07 FNo. Len. Field Value +14:28:07 ============================================================================ +14:28:07 [ 1] [ 4] [0810] +14:28:07 [ 7] [ 10] [0320072714] +14:28:07 [ 11] [ 6] [156790] +14:28:07 [ 39] [ 2] [00] +14:28:07 [ 70] [ 3] [301] +14:28:07 ============================================================================ +14:28:07 Calculate Source COMM Id = 2 +14:28:07 ============================================================================ +14:28:07 + + +waiting on router queue for slot.... +14:28:16 ============================================================================ +14:28:16 Slot Id : <479> +14:28:16 Transaction Type : REQUEST +14:28:16 Received From : +14:28:16 ============================================================================ +14:28:16 FNo. Len. Field Value +14:28:16 ============================================================================ +14:28:16 [ 1] [ 4] [0200] +14:28:16 [ 2] [ 16] [6688990106324609] +14:28:16 [ 3] [ 6] [301000] +14:28:16 [ 4] [ 12] [000000000000] +14:28:16 [ 7] [ 10] [0320142811] +14:28:16 [ 11] [ 6] [770408] +14:28:16 [ 12] [ 6] [142811] +14:28:16 [ 13] [ 4] [0320] +14:28:16 [ 15] [ 4] [0320] +14:28:16 [ 18] [ 4] [6011] +14:28:16 [ 22] [ 3] [900] +14:28:16 [ 25] [ 2] [02] +14:28:16 [ 28] [ 9] [D00000000] +14:28:16 [ 32] [ 6] [621354] +14:28:16 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:28:16 [ 37] [ 12] [507904645090] +14:28:16 [ 41] [ 8] [17000900] +14:28:16 [ 42] [ 15] [NATIVE ] +14:28:16 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:28:16 [ 49] [ 3] [418] +14:28:16 [ 52] [ 16] [0CCDAADC019EAFE1] +14:28:16 ============================================================================ +14:28:16 + + +waiting on router queue for slot.... +14:28:16 Sending to : +14:28:16 ============================================================================ +14:28:16 Sending to : +14:28:16 ============================================================================ +14:28:16 ============================================================================ +14:28:16 Slot Id : <479> +14:28:16 Transaction Type : REQUEST +14:28:16 Received From : +14:28:16 ============================================================================ +14:28:16 FNo. Len. Field Value +14:28:16 ============================================================================ +14:28:16 [ 1] [ 4] [0200] +14:28:16 [ 2] [ 16] [6688990106324609] +14:28:16 [ 3] [ 6] [301000] +14:28:16 [ 4] [ 12] [000000000000] +14:28:16 [ 7] [ 10] [0320142811] +14:28:16 [ 11] [ 6] [770408] +14:28:16 [ 12] [ 6] [142811] +14:28:16 [ 13] [ 4] [0320] +14:28:16 [ 15] [ 4] [0320] +14:28:16 [ 18] [ 4] [6011] +14:28:16 [ 22] [ 3] [900] +14:28:16 [ 25] [ 2] [02] +14:28:16 [ 28] [ 9] [D00000000] +14:28:16 [ 32] [ 6] [621354] +14:28:16 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:28:16 [ 37] [ 12] [507904645090] +14:28:16 [ 41] [ 8] [17000900] +14:28:16 [ 42] [ 15] [NATIVE ] +14:28:16 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:28:16 [ 49] [ 3] [418] +14:28:16 [ 52] [ 16] [0CCDAADC019EAFE1] +14:28:16 ============================================================================ +14:28:16 + + +waiting on router queue for slot.... +14:28:16 Sending to : +14:28:16 ============================================================================ +14:28:16 ============================================================================ +14:28:16 Slot Id : <479> +14:28:16 Transaction Type : REQUEST +14:28:16 Received From : +14:28:16 ============================================================================ +14:28:16 FNo. Len. Field Value +14:28:16 ============================================================================ +14:28:16 [ 1] [ 4] [0200] +14:28:16 [ 2] [ 16] [6688990106324609] +14:28:16 [ 3] [ 6] [301000] +14:28:16 [ 4] [ 12] [000000000000] +14:28:16 [ 7] [ 10] [0320142811] +14:28:16 [ 11] [ 6] [770408] +14:28:16 [ 12] [ 6] [142811] +14:28:16 [ 13] [ 4] [0320] +14:28:16 [ 15] [ 4] [0320] +14:28:16 [ 18] [ 4] [6011] +14:28:16 [ 22] [ 3] [900] +14:28:16 [ 25] [ 2] [02] +14:28:16 [ 28] [ 9] [D00000000] +14:28:16 [ 32] [ 6] [621354] +14:28:16 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:28:16 [ 37] [ 12] [507904645090] +14:28:16 [ 41] [ 8] [17000900] +14:28:16 [ 42] [ 15] [NATIVE ] +14:28:16 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:28:16 [ 49] [ 3] [418] +14:28:16 [ 52] [ 16] [F4C3CE7967A18FE7] +14:28:16 ============================================================================ +14:28:16 + + +waiting on router queue for slot.... +14:28:16 Sending to : <4> +14:28:16 ============================================================================ +14:28:17 ============================================================================ +14:28:17 Slot Id : <479> +14:28:17 Transaction Type : RESPONSE +14:28:17 Received From : +14:28:17 ============================================================================ +14:28:17 FNo. Len. Field Value +14:28:17 ============================================================================ +14:28:17 [ 1] [ 4] [0210] +14:28:17 [ 2] [ 16] [6688990106324609] +14:28:17 [ 3] [ 6] [301000] +14:28:17 [ 4] [ 12] [000000000000] +14:28:17 [ 11] [ 6] [770408] +14:28:17 [ 12] [ 6] [142811] +14:28:17 [ 15] [ 4] [0320] +14:28:17 [ 18] [ 4] [6011] +14:28:17 [ 32] [ 6] [621354] +14:28:17 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:28:17 [ 37] [ 12] [507904645090] +14:28:17 [ 38] [ 6] [147891] +14:28:17 [ 39] [ 2] [00] +14:28:17 [ 41] [ 8] [17000900] +14:28:17 [ 49] [ 3] [418] +14:28:17 [ 54] [ 20] [1002418C000396904864] +14:28:17 ============================================================================ +14:28:17 Sending to : +14:28:17 ============================================================================ +14:28:17 + + +waiting on router queue for slot.... +14:28:19 ============================================================================ +14:28:19 Slot Id : <479> +14:28:19 Transaction Type : RESPONSE +14:28:19 Received From : +14:28:19 ============================================================================ +14:28:19 FNo. Len. Field Value +14:28:19 ============================================================================ +14:28:19 [ 1] [ 4] [0210] +14:28:19 [ 2] [ 16] [6688990106324609] +14:28:19 [ 3] [ 6] [301000] +14:28:19 [ 4] [ 12] [000000000000] +14:28:19 [ 11] [ 6] [770408] +14:28:19 [ 12] [ 6] [142811] +14:28:19 [ 15] [ 4] [0320] +14:28:19 [ 18] [ 4] [6011] +14:28:19 [ 32] [ 6] [621354] +14:28:19 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:28:19 [ 37] [ 12] [507904645090] +14:28:19 [ 38] [ 6] [147891] +14:28:19 [ 39] [ 2] [00] +14:28:19 [ 41] [ 8] [17000900] +14:28:19 [ 49] [ 3] [418] +14:28:19 [ 54] [ 20] [1002418C000396904864] +14:28:19 ============================================================================ +14:28:19 Calculate Source COMM Id = 0 +14:28:19 ============================================================================ +14:28:19 + + +waiting on router queue for slot.... +14:28:22 ============================================================================ +14:28:22 Slot Id : <0> +14:28:22 Transaction Type : REQUEST +14:28:22 Received From : +14:28:22 ============================================================================ +14:28:22 FNo. Len. Field Value +14:28:22 ============================================================================ +14:28:22 [ 1] [ 4] [0800] +14:28:22 [ 7] [ 10] [0320072729] +14:28:22 [ 11] [ 6] [156791] +14:28:22 [ 70] [ 3] [301] +14:28:22 ============================================================================ +14:28:22 + + +waiting on router queue for slot.... +14:28:22 Sending to : +14:28:22 ============================================================================ +14:28:22 ============================================================================ +14:28:22 Slot Id : <0> +14:28:22 Transaction Type : RESPONSE +14:28:22 Received From : +14:28:22 ============================================================================ +14:28:22 FNo. Len. Field Value +14:28:22 ============================================================================ +14:28:22 [ 1] [ 4] [0810] +14:28:22 [ 7] [ 10] [0320072729] +14:28:22 [ 11] [ 6] [156791] +14:28:22 [ 39] [ 2] [00] +14:28:22 [ 70] [ 3] [301] +14:28:22 ============================================================================ +14:28:22 Calculate Source COMM Id = 2 +14:28:22 ============================================================================ +14:28:22 + + +waiting on router queue for slot.... +14:28:30 ============================================================================ +14:28:30 Slot Id : <2> +14:28:30 Transaction Type : REQUEST +14:28:30 Received From : +14:28:30 ============================================================================ +14:28:30 FNo. Len. Field Value +14:28:30 ============================================================================ +14:28:30 [ 1] [ 4] [0800] +14:28:30 [ 7] [ 10] [0320142817] +14:28:30 [ 11] [ 6] [059093] +14:28:30 [ 37] [ 12] [507914059093] +14:28:30 [ 70] [ 3] [ ] +14:28:30 ============================================================================ +14:28:30 + + +waiting on router queue for slot.... +14:28:30 Sending to : +14:28:30 ============================================================================ +14:28:30 ============================================================================ +14:28:30 Slot Id : <2> +14:28:30 Transaction Type : RESPONSE +14:28:30 Received From : +14:28:30 ============================================================================ +14:28:30 FNo. Len. Field Value +14:28:30 ============================================================================ +14:28:30 [ 1] [ 4] [0810] +14:28:30 [ 7] [ 10] [0320142817] +14:28:30 [ 11] [ 6] [059093] +14:28:30 [ 37] [ 12] [507914059093] +14:28:30 [ 39] [ 2] [91] +14:28:30 [ 70] [ 3] [ ] +14:28:30 ============================================================================ +14:28:30 Calculate Source COMM Id = 3 +14:28:30 ============================================================================ +14:28:30 + + +waiting on router queue for slot.... +14:28:33 ============================================================================ +14:28:33 Slot Id : <493> +14:28:33 Transaction Type : REQUEST +14:28:33 Received From : +14:28:33 ============================================================================ +14:28:33 FNo. Len. Field Value +14:28:33 ============================================================================ +14:28:33 [ 1] [ 4] [0800] +14:28:33 [ 7] [ 10] [0320072740] +14:28:33 [ 11] [ 6] [156792] +14:28:33 [ 70] [ 3] [301] +14:28:33 ============================================================================ +14:28:33 + + +waiting on router queue for slot.... +14:28:33 Sending to : +14:28:33 ============================================================================ +14:28:33 ============================================================================ +14:28:33 Slot Id : <493> +14:28:33 Transaction Type : RESPONSE +14:28:33 Received From : +14:28:33 ============================================================================ +14:28:33 FNo. Len. Field Value +14:28:33 ============================================================================ +14:28:33 [ 1] [ 4] [0810] +14:28:33 [ 7] [ 10] [0320072740] +14:28:33 [ 11] [ 6] [156792] +14:28:33 [ 39] [ 2] [00] +14:28:33 [ 70] [ 3] [301] +14:28:33 ============================================================================ +14:28:33 Calculate Source COMM Id = 2 +14:28:33 ============================================================================ +14:28:33 + + +waiting on router queue for slot.... +14:28:38 ============================================================================ +14:28:38 Slot Id : <498> +14:28:38 Transaction Type : REQUEST +14:28:38 Received From : +14:28:38 ============================================================================ +14:28:38 FNo. Len. Field Value +14:28:38 ============================================================================ +14:28:38 [ 1] [ 4] [0200] +14:28:38 [ 2] [ 16] [6688990601482308] +14:28:38 [ 3] [ 6] [011000] +14:28:38 [ 4] [ 12] [000100000000] +14:28:38 [ 7] [ 10] [0320142833] +14:28:38 [ 11] [ 6] [770488] +14:28:38 [ 12] [ 6] [142833] +14:28:38 [ 13] [ 4] [0320] +14:28:38 [ 15] [ 4] [0320] +14:28:38 [ 18] [ 4] [6011] +14:28:38 [ 22] [ 3] [900] +14:28:38 [ 25] [ 2] [02] +14:28:38 [ 28] [ 9] [D00002000] +14:28:38 [ 32] [ 6] [621354] +14:28:38 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:28:38 [ 37] [ 12] [507904153947] +14:28:38 [ 41] [ 8] [20001000] +14:28:38 [ 42] [ 15] [NATIVE ] +14:28:38 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:28:38 [ 49] [ 3] [418] +14:28:38 [ 52] [ 16] [465C751FB1533BE4] +14:28:38 ============================================================================ +14:28:38 + + +waiting on router queue for slot.... +14:28:38 Sending to : +14:28:38 ============================================================================ +14:28:38 Sending to : +14:28:38 ============================================================================ +14:28:38 ============================================================================ +14:28:38 Slot Id : <498> +14:28:38 Transaction Type : REQUEST +14:28:38 Received From : +14:28:38 ============================================================================ +14:28:38 FNo. Len. Field Value +14:28:38 ============================================================================ +14:28:38 [ 1] [ 4] [0200] +14:28:38 [ 2] [ 16] [6688990601482308] +14:28:38 [ 3] [ 6] [011000] +14:28:38 [ 4] [ 12] [000100000000] +14:28:38 [ 7] [ 10] [0320142833] +14:28:38 [ 11] [ 6] [770488] +14:28:38 [ 12] [ 6] [142833] +14:28:38 [ 13] [ 4] [0320] +14:28:38 [ 15] [ 4] [0320] +14:28:38 [ 18] [ 4] [6011] +14:28:38 [ 22] [ 3] [900] +14:28:38 [ 25] [ 2] [02] +14:28:38 [ 28] [ 9] [D00002000] +14:28:38 [ 32] [ 6] [621354] +14:28:38 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:28:38 [ 37] [ 12] [507904153947] +14:28:38 [ 41] [ 8] [20001000] +14:28:38 [ 42] [ 15] [NATIVE ] +14:28:38 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:28:38 [ 49] [ 3] [418] +14:28:38 [ 52] [ 16] [465C751FB1533BE4] +14:28:38 ============================================================================ +14:28:38 + + +waiting on router queue for slot.... +14:28:38 Sending to : +14:28:38 ============================================================================ +14:28:38 ============================================================================ +14:28:38 Slot Id : <498> +14:28:38 Transaction Type : REQUEST +14:28:38 Received From : +14:28:38 ============================================================================ +14:28:38 FNo. Len. Field Value +14:28:38 ============================================================================ +14:28:38 [ 1] [ 4] [0200] +14:28:38 [ 2] [ 16] [6688990601482308] +14:28:38 [ 3] [ 6] [011000] +14:28:38 [ 4] [ 12] [000100000000] +14:28:38 [ 7] [ 10] [0320142833] +14:28:38 [ 11] [ 6] [770488] +14:28:38 [ 12] [ 6] [142833] +14:28:38 [ 13] [ 4] [0320] +14:28:38 [ 15] [ 4] [0320] +14:28:38 [ 18] [ 4] [6011] +14:28:38 [ 22] [ 3] [900] +14:28:38 [ 25] [ 2] [02] +14:28:38 [ 28] [ 9] [D00002000] +14:28:38 [ 32] [ 6] [621354] +14:28:38 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:28:38 [ 37] [ 12] [507904153947] +14:28:38 [ 41] [ 8] [20001000] +14:28:38 [ 42] [ 15] [NATIVE ] +14:28:38 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:28:38 [ 49] [ 3] [418] +14:28:38 [ 52] [ 16] [53BC927BCF4CBE07] +14:28:38 ============================================================================ +14:28:38 + + +waiting on router queue for slot.... +14:28:38 Sending to : <4> +14:28:38 ============================================================================ +14:28:38 ============================================================================ +14:28:38 Slot Id : <1> +14:28:38 Transaction Type : REQUEST +14:28:38 Received From : +14:28:38 ============================================================================ +14:28:38 FNo. Len. Field Value +14:28:38 ============================================================================ +14:28:38 [ 1] [ 4] [0800] +14:28:38 [ 2] [ 5] [02531] +14:28:38 [ 3] [ 6] [579148] +14:28:38 [ 7] [ 10] [0320072838] +14:28:38 [ 11] [ 6] [807252] +14:28:38 [ 15] [ 10] [0320072838] +14:28:38 [ 37] [ 11] [57914807252] +14:28:38 [ 70] [ 3] [001] +14:28:38 ============================================================================ +14:28:38 + + +waiting on router queue for slot.... +14:28:38 ============================================================================ +14:28:38 Slot Id : <1> +14:28:38 Transaction Type : RESPONSE +14:28:38 Received From : +14:28:38 ============================================================================ +14:28:38 FNo. Len. Field Value +14:28:38 ============================================================================ +14:28:38 [ 1] [ 4] [0810] +14:28:38 [ 7] [ 10] [0320072838] +14:28:38 [ 11] [ 6] [807252] +14:28:38 [ 15] [ 4] [0320] +14:28:38 [ 37] [ 12] [57914807252] +14:28:38 [ 39] [ 2] [00] +14:28:38 [ 70] [ 3] [001] +14:28:38 ============================================================================ +14:28:38 Sending to : +14:28:38 ============================================================================ +14:28:38 + + +waiting on router queue for slot.... +14:28:39 ============================================================================ +14:28:39 Slot Id : <4> +14:28:39 Transaction Type : REQUEST +14:28:39 Received From : +14:28:39 ============================================================================ +14:28:39 FNo. Len. Field Value +14:28:39 ============================================================================ +14:28:39 [ 1] [ 4] [0800] +14:28:39 [ 7] [ 10] [0320214028] +14:28:39 [ 11] [ 6] [144028] +14:28:39 [ 37] [ 12] [57914144028] +14:28:39 [ 70] [ 3] [301] +14:28:39 ============================================================================ +14:28:39 + + +waiting on router queue for slot.... +14:28:39 Sending to : +14:28:39 ============================================================================ +14:28:39 ============================================================================ +14:28:39 Slot Id : <4> +14:28:39 Transaction Type : RESPONSE +14:28:39 Received From : +14:28:39 ============================================================================ +14:28:39 FNo. Len. Field Value +14:28:39 ============================================================================ +14:28:39 [ 1] [ 4] [0810] +14:28:39 [ 7] [ 10] [0320214028] +14:28:39 [ 11] [ 6] [144028] +14:28:39 [ 37] [ 12] [579141440280] +14:28:39 [ 39] [ 2] [00] +14:28:39 [ 70] [ 3] [810] +14:28:39 ============================================================================ +14:28:39 Calculate Source COMM Id = 6 +14:28:39 ============================================================================ +14:28:39 + + +waiting on router queue for slot.... +14:28:39 ============================================================================ +14:28:39 Slot Id : <498> +14:28:39 Transaction Type : RESPONSE +14:28:39 Received From : +14:28:39 ============================================================================ +14:28:39 FNo. Len. Field Value +14:28:39 ============================================================================ +14:28:39 [ 1] [ 4] [0210] +14:28:39 [ 2] [ 16] [6688990601482308] +14:28:39 [ 3] [ 6] [011000] +14:28:39 [ 4] [ 12] [000100000000] +14:28:39 [ 11] [ 6] [770488] +14:28:39 [ 12] [ 6] [142833] +14:28:39 [ 15] [ 4] [0320] +14:28:39 [ 18] [ 4] [6011] +14:28:39 [ 32] [ 6] [621354] +14:28:39 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:28:39 [ 37] [ 12] [507904153947] +14:28:39 [ 38] [ 6] [012215] +14:28:39 [ 39] [ 2] [00] +14:28:39 [ 41] [ 8] [20001000] +14:28:39 [ 49] [ 3] [418] +14:28:39 [ 54] [ 20] [1002418C000194151125] +14:28:39 ============================================================================ +14:28:39 Sending to : +14:28:39 ============================================================================ +14:28:39 + + +waiting on router queue for slot.... +14:28:41 ============================================================================ +14:28:41 Slot Id : <498> +14:28:41 Transaction Type : RESPONSE +14:28:41 Received From : +14:28:41 ============================================================================ +14:28:41 FNo. Len. Field Value +14:28:41 ============================================================================ +14:28:41 [ 1] [ 4] [0210] +14:28:41 [ 2] [ 16] [6688990601482308] +14:28:41 [ 3] [ 6] [011000] +14:28:41 [ 4] [ 12] [000100000000] +14:28:41 [ 11] [ 6] [770488] +14:28:41 [ 12] [ 6] [142833] +14:28:41 [ 15] [ 4] [0320] +14:28:41 [ 18] [ 4] [6011] +14:28:41 [ 32] [ 6] [621354] +14:28:41 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:28:41 [ 37] [ 12] [507904153947] +14:28:41 [ 38] [ 6] [012215] +14:28:41 [ 39] [ 2] [00] +14:28:41 [ 41] [ 8] [20001000] +14:28:41 [ 49] [ 3] [418] +14:28:41 [ 54] [ 20] [1002418C000194151125] +14:28:41 ============================================================================ +14:28:41 Calculate Source COMM Id = 0 +14:28:41 ============================================================================ +14:28:41 + + +waiting on router queue for slot.... +14:28:44 ============================================================================ +14:28:44 Slot Id : <473> +14:28:44 Transaction Type : REQUEST +14:28:44 Received From : +14:28:44 ============================================================================ +14:28:44 FNo. Len. Field Value +14:28:44 ============================================================================ +14:28:44 [ 1] [ 4] [0800] +14:28:44 [ 7] [ 10] [0320072751] +14:28:44 [ 11] [ 6] [156793] +14:28:44 [ 70] [ 3] [301] +14:28:44 ============================================================================ +14:28:44 + + +waiting on router queue for slot.... +14:28:44 Sending to : +14:28:44 ============================================================================ +14:28:44 ============================================================================ +14:28:44 Slot Id : <473> +14:28:44 Transaction Type : RESPONSE +14:28:44 Received From : +14:28:44 ============================================================================ +14:28:44 FNo. Len. Field Value +14:28:44 ============================================================================ +14:28:44 [ 1] [ 4] [0810] +14:28:44 [ 7] [ 10] [0320072751] +14:28:44 [ 11] [ 6] [156793] +14:28:44 [ 39] [ 2] [00] +14:28:44 [ 70] [ 3] [301] +14:28:44 ============================================================================ +14:28:44 Calculate Source COMM Id = 2 +14:28:44 ============================================================================ +14:28:44 + + +waiting on router queue for slot.... +14:28:44 ============================================================================ +14:28:44 Slot Id : <476> +14:28:44 Transaction Type : REQUEST +14:28:44 Received From : +14:28:44 ============================================================================ +14:28:44 FNo. Len. Field Value +14:28:44 ============================================================================ +14:28:44 [ 1] [ 4] [0200] +14:28:44 [ 2] [ 16] [6688990104022007] +14:28:44 [ 3] [ 6] [011000] +14:28:44 [ 4] [ 12] [000010000000] +14:28:44 [ 7] [ 10] [0320072751] +14:28:44 [ 11] [ 6] [269660] +14:28:44 [ 12] [ 6] [142751] +14:28:44 [ 13] [ 4] [0320] +14:28:44 [ 14] [ 4] [4302] +14:28:44 [ 15] [ 4] [0320] +14:28:44 [ 18] [ 4] [6011] +14:28:44 [ 19] [ 3] [418] +14:28:44 [ 22] [ 3] [021] +14:28:44 [ 25] [ 2] [01] +14:28:44 [ 28] [ 9] [D00002000] +14:28:44 [ 32] [ 6] [180893] +14:28:44 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:28:44 [ 37] [ 12] [507907269660] +14:28:44 [ 41] [ 8] [0421BKPH] +14:28:44 [ 42] [ 15] [999999 ] +14:28:44 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:28:44 [ 49] [ 3] [418] +14:28:44 [ 52] [ 16] [473334DCBE911001] +14:28:44 ============================================================================ +14:28:44 + + +waiting on router queue for slot.... +14:28:44 Sending to : +14:28:44 ============================================================================ +14:28:44 Sending to : +14:28:44 ============================================================================ +14:28:44 ============================================================================ +14:28:44 Slot Id : <476> +14:28:44 Transaction Type : REQUEST +14:28:44 Received From : +14:28:44 ============================================================================ +14:28:44 FNo. Len. Field Value +14:28:44 ============================================================================ +14:28:44 [ 1] [ 4] [0200] +14:28:44 [ 2] [ 16] [6688990104022007] +14:28:44 [ 3] [ 6] [011000] +14:28:44 [ 4] [ 12] [000010000000] +14:28:44 [ 7] [ 10] [0320072751] +14:28:44 [ 11] [ 6] [269660] +14:28:44 [ 12] [ 6] [142751] +14:28:44 [ 13] [ 4] [0320] +14:28:44 [ 14] [ 4] [4302] +14:28:44 [ 15] [ 4] [0320] +14:28:44 [ 18] [ 4] [6011] +14:28:44 [ 19] [ 3] [418] +14:28:44 [ 22] [ 3] [021] +14:28:44 [ 25] [ 2] [01] +14:28:44 [ 28] [ 9] [D00002000] +14:28:44 [ 32] [ 6] [180893] +14:28:44 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:28:44 [ 37] [ 12] [507907269660] +14:28:44 [ 41] [ 8] [0421BKPH] +14:28:44 [ 42] [ 15] [999999 ] +14:28:44 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:28:44 [ 49] [ 3] [418] +14:28:44 [ 52] [ 16] [473334DCBE911001] +14:28:44 ============================================================================ +14:28:44 + + +waiting on router queue for slot.... +14:28:44 Sending to : +14:28:44 ============================================================================ +14:28:44 ============================================================================ +14:28:44 Slot Id : <476> +14:28:44 Transaction Type : REQUEST +14:28:44 Received From : +14:28:44 ============================================================================ +14:28:44 FNo. Len. Field Value +14:28:44 ============================================================================ +14:28:44 [ 1] [ 4] [0200] +14:28:44 [ 2] [ 16] [6688990104022007] +14:28:44 [ 3] [ 6] [011000] +14:28:44 [ 4] [ 12] [000010000000] +14:28:44 [ 7] [ 10] [0320072751] +14:28:44 [ 11] [ 6] [269660] +14:28:44 [ 12] [ 6] [142751] +14:28:44 [ 13] [ 4] [0320] +14:28:44 [ 14] [ 4] [4302] +14:28:44 [ 15] [ 4] [0320] +14:28:44 [ 18] [ 4] [6011] +14:28:44 [ 19] [ 3] [418] +14:28:44 [ 22] [ 3] [021] +14:28:44 [ 25] [ 2] [01] +14:28:44 [ 28] [ 9] [D00002000] +14:28:44 [ 32] [ 6] [180893] +14:28:44 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:28:44 [ 37] [ 12] [507907269660] +14:28:44 [ 41] [ 8] [0421BKPH] +14:28:44 [ 42] [ 15] [999999 ] +14:28:44 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:28:44 [ 49] [ 3] [418] +14:28:44 [ 52] [ 16] [3F768CEE6B61742D] +14:28:44 ============================================================================ +14:28:44 + + +waiting on router queue for slot.... +14:28:44 Sending to : <0> +14:28:44 ============================================================================ +14:28:44 ============================================================================ +14:28:44 Slot Id : <476> +14:28:44 Transaction Type : RESPONSE +14:28:44 Received From : +14:28:44 ============================================================================ +14:28:44 FNo. Len. Field Value +14:28:44 ============================================================================ +14:28:44 [ 1] [ 4] [0210] +14:28:44 [ 2] [ 16] [6688990104022007] +14:28:44 [ 3] [ 6] [011000] +14:28:44 [ 4] [ 12] [000010000000] +14:28:44 [ 7] [ 10] [0320072751] +14:28:44 [ 11] [ 6] [269660] +14:28:44 [ 12] [ 6] [142751] +14:28:44 [ 13] [ 4] [0320] +14:28:44 [ 15] [ 4] [0320] +14:28:44 [ 18] [ 4] [6011] +14:28:44 [ 19] [ 3] [418] +14:28:44 [ 22] [ 3] [021] +14:28:44 [ 32] [ 6] [180893] +14:28:44 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:28:44 [ 37] [ 12] [507907269660] +14:28:44 [ 39] [ 2] [14] +14:28:44 [ 41] [ 8] [0421BKPH] +14:28:44 [ 49] [ 3] [418] +14:28:44 ============================================================================ +14:28:44 Sending to : +14:28:44 ============================================================================ +14:28:44 + + +waiting on router queue for slot.... +14:28:45 ============================================================================ +14:28:45 Slot Id : <476> +14:28:45 Transaction Type : RESPONSE +14:28:45 Received From : +14:28:45 ============================================================================ +14:28:45 FNo. Len. Field Value +14:28:45 ============================================================================ +14:28:45 [ 1] [ 4] [0210] +14:28:45 [ 2] [ 16] [6688990104022007] +14:28:45 [ 3] [ 6] [011000] +14:28:45 [ 4] [ 12] [000010000000] +14:28:45 [ 7] [ 10] [0320072751] +14:28:45 [ 11] [ 6] [269660] +14:28:45 [ 12] [ 6] [142751] +14:28:45 [ 13] [ 4] [0320] +14:28:45 [ 15] [ 4] [0320] +14:28:45 [ 18] [ 4] [6011] +14:28:45 [ 19] [ 3] [418] +14:28:45 [ 22] [ 3] [021] +14:28:45 [ 32] [ 6] [180893] +14:28:45 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:28:45 [ 37] [ 12] [507907269660] +14:28:45 [ 39] [ 2] [14] +14:28:45 [ 41] [ 8] [0421BKPH] +14:28:45 [ 49] [ 3] [418] +14:28:45 ============================================================================ +14:28:45 Calculate Source COMM Id = 2 +14:28:45 ============================================================================ +14:28:45 + + +waiting on router queue for slot.... +14:28:49 ============================================================================ +14:28:49 Slot Id : <489> +14:28:49 Transaction Type : REQUEST +14:28:49 Received From : +14:28:49 ============================================================================ +14:28:49 FNo. Len. Field Value +14:28:49 ============================================================================ +14:28:49 [ 1] [ 4] [0200] +14:28:49 [ 2] [ 16] [6688990104937907] +14:28:49 [ 3] [ 6] [011000] +14:28:49 [ 4] [ 12] [000100000000] +14:28:49 [ 7] [ 10] [0320142844] +14:28:49 [ 11] [ 6] [770528] +14:28:49 [ 12] [ 6] [142844] +14:28:49 [ 13] [ 4] [0320] +14:28:49 [ 15] [ 4] [0320] +14:28:49 [ 18] [ 4] [6011] +14:28:49 [ 22] [ 3] [900] +14:28:49 [ 25] [ 2] [02] +14:28:49 [ 28] [ 9] [D00002000] +14:28:49 [ 32] [ 6] [621354] +14:28:49 [ 35] [ 37] [6688990104937907=43061231790723200000] +14:28:49 [ 37] [ 12] [507905200884] +14:28:49 [ 41] [ 8] [07001700] +14:28:49 [ 42] [ 15] [NATIVE ] +14:28:49 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:28:49 [ 49] [ 3] [418] +14:28:49 [ 52] [ 16] [7ED67FA67B31C8BF] +14:28:49 ============================================================================ +14:28:49 + + +waiting on router queue for slot.... +14:28:49 Sending to : +14:28:49 ============================================================================ +14:28:49 Sending to : +14:28:49 ============================================================================ +14:28:49 ============================================================================ +14:28:49 Slot Id : <489> +14:28:49 Transaction Type : REQUEST +14:28:49 Received From : +14:28:49 ============================================================================ +14:28:49 FNo. Len. Field Value +14:28:49 ============================================================================ +14:28:49 [ 1] [ 4] [0200] +14:28:49 [ 2] [ 16] [6688990104937907] +14:28:49 [ 3] [ 6] [011000] +14:28:49 [ 4] [ 12] [000100000000] +14:28:49 [ 7] [ 10] [0320142844] +14:28:49 [ 11] [ 6] [770528] +14:28:49 [ 12] [ 6] [142844] +14:28:49 [ 13] [ 4] [0320] +14:28:49 [ 15] [ 4] [0320] +14:28:49 [ 18] [ 4] [6011] +14:28:49 [ 22] [ 3] [900] +14:28:49 [ 25] [ 2] [02] +14:28:49 [ 28] [ 9] [D00002000] +14:28:49 [ 32] [ 6] [621354] +14:28:49 [ 35] [ 37] [6688990104937907=43061231790723200000] +14:28:49 [ 37] [ 12] [507905200884] +14:28:49 [ 41] [ 8] [07001700] +14:28:49 [ 42] [ 15] [NATIVE ] +14:28:49 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:28:49 [ 49] [ 3] [418] +14:28:49 [ 52] [ 16] [7ED67FA67B31C8BF] +14:28:49 ============================================================================ +14:28:49 + + +waiting on router queue for slot.... +14:28:49 Sending to : +14:28:49 ============================================================================ +14:28:49 ============================================================================ +14:28:49 Slot Id : <489> +14:28:49 Transaction Type : REQUEST +14:28:49 Received From : +14:28:49 ============================================================================ +14:28:49 FNo. Len. Field Value +14:28:49 ============================================================================ +14:28:49 [ 1] [ 4] [0200] +14:28:49 [ 2] [ 16] [6688990104937907] +14:28:49 [ 3] [ 6] [011000] +14:28:49 [ 4] [ 12] [000100000000] +14:28:49 [ 7] [ 10] [0320142844] +14:28:49 [ 11] [ 6] [770528] +14:28:49 [ 12] [ 6] [142844] +14:28:49 [ 13] [ 4] [0320] +14:28:49 [ 15] [ 4] [0320] +14:28:49 [ 18] [ 4] [6011] +14:28:49 [ 22] [ 3] [900] +14:28:49 [ 25] [ 2] [02] +14:28:49 [ 28] [ 9] [D00002000] +14:28:49 [ 32] [ 6] [621354] +14:28:49 [ 35] [ 37] [6688990104937907=43061231790723200000] +14:28:49 [ 37] [ 12] [507905200884] +14:28:49 [ 41] [ 8] [07001700] +14:28:49 [ 42] [ 15] [NATIVE ] +14:28:49 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:28:49 [ 49] [ 3] [418] +14:28:49 [ 52] [ 16] [74E71F92E2364F21] +14:28:49 ============================================================================ +14:28:49 + + +waiting on router queue for slot.... +14:28:49 Sending to : <4> +14:28:49 ============================================================================ +14:28:50 ============================================================================ +14:28:50 Slot Id : <489> +14:28:50 Transaction Type : RESPONSE +14:28:50 Received From : +14:28:50 ============================================================================ +14:28:50 FNo. Len. Field Value +14:28:50 ============================================================================ +14:28:50 [ 1] [ 4] [0210] +14:28:50 [ 2] [ 16] [6688990104937907] +14:28:50 [ 3] [ 6] [011000] +14:28:50 [ 4] [ 12] [000100000000] +14:28:50 [ 11] [ 6] [770528] +14:28:50 [ 12] [ 6] [142844] +14:28:50 [ 15] [ 4] [0320] +14:28:50 [ 18] [ 4] [6011] +14:28:50 [ 32] [ 6] [621354] +14:28:50 [ 35] [ 37] [6688990104937907=43061231790723200000] +14:28:50 [ 37] [ 12] [507905200884] +14:28:50 [ 38] [ 6] [635985] +14:28:50 [ 39] [ 2] [00] +14:28:50 [ 41] [ 8] [07001700] +14:28:50 [ 49] [ 3] [418] +14:28:50 [ 54] [ 20] [1002418C000058367098] +14:28:50 ============================================================================ +14:28:50 Sending to : +14:28:50 ============================================================================ +14:28:50 + + +waiting on router queue for slot.... +14:28:51 ============================================================================ +14:28:51 Slot Id : <489> +14:28:51 Transaction Type : RESPONSE +14:28:51 Received From : +14:28:51 ============================================================================ +14:28:51 FNo. Len. Field Value +14:28:51 ============================================================================ +14:28:51 [ 1] [ 4] [0210] +14:28:51 [ 2] [ 16] [6688990104937907] +14:28:51 [ 3] [ 6] [011000] +14:28:51 [ 4] [ 12] [000100000000] +14:28:51 [ 11] [ 6] [770528] +14:28:51 [ 12] [ 6] [142844] +14:28:51 [ 15] [ 4] [0320] +14:28:51 [ 18] [ 4] [6011] +14:28:51 [ 32] [ 6] [621354] +14:28:51 [ 35] [ 37] [6688990104937907=43061231790723200000] +14:28:51 [ 37] [ 12] [507905200884] +14:28:51 [ 38] [ 6] [635985] +14:28:51 [ 39] [ 2] [00] +14:28:51 [ 41] [ 8] [07001700] +14:28:51 [ 49] [ 3] [418] +14:28:51 [ 54] [ 20] [1002418C000058367098] +14:28:51 ============================================================================ +14:28:51 Calculate Source COMM Id = 0 +14:28:51 ============================================================================ +14:28:51 + + +waiting on router queue for slot.... +14:28:56 ============================================================================ +14:28:56 Slot Id : <483> +14:28:56 Transaction Type : REQUEST +14:28:56 Received From : +14:28:56 ============================================================================ +14:28:56 FNo. Len. Field Value +14:28:56 ============================================================================ +14:28:56 [ 1] [ 4] [0200] +14:28:56 [ 2] [ 16] [6688990105033409] +14:28:56 [ 3] [ 6] [301000] +14:28:56 [ 4] [ 12] [000000000000] +14:28:56 [ 7] [ 10] [0320142851] +14:28:56 [ 11] [ 6] [770569] +14:28:56 [ 12] [ 6] [142851] +14:28:56 [ 13] [ 4] [0320] +14:28:56 [ 15] [ 4] [0320] +14:28:56 [ 18] [ 4] [6011] +14:28:56 [ 22] [ 3] [900] +14:28:56 [ 25] [ 2] [02] +14:28:56 [ 28] [ 9] [D00000000] +14:28:56 [ 32] [ 6] [621354] +14:28:56 [ 35] [ 37] [6688990105033409=43071231340910800000] +14:28:56 [ 37] [ 12] [507904698947] +14:28:56 [ 41] [ 8] [18000800] +14:28:56 [ 42] [ 15] [NATIVE ] +14:28:56 [ 43] [ 40] [Bountai District Bountai LAO] +14:28:56 [ 49] [ 3] [418] +14:28:56 [ 52] [ 16] [3E4CA80227D1A724] +14:28:56 ============================================================================ +14:28:56 + + +waiting on router queue for slot.... +14:28:56 Sending to : +14:28:56 ============================================================================ +14:28:56 Sending to : +14:28:56 ============================================================================ +14:28:56 ============================================================================ +14:28:56 Slot Id : <483> +14:28:56 Transaction Type : REQUEST +14:28:56 Received From : +14:28:56 ============================================================================ +14:28:56 FNo. Len. Field Value +14:28:56 ============================================================================ +14:28:56 [ 1] [ 4] [0200] +14:28:56 [ 2] [ 16] [6688990105033409] +14:28:56 [ 3] [ 6] [301000] +14:28:56 [ 4] [ 12] [000000000000] +14:28:56 [ 7] [ 10] [0320142851] +14:28:56 [ 11] [ 6] [770569] +14:28:56 [ 12] [ 6] [142851] +14:28:56 [ 13] [ 4] [0320] +14:28:56 [ 15] [ 4] [0320] +14:28:56 [ 18] [ 4] [6011] +14:28:56 [ 22] [ 3] [900] +14:28:56 [ 25] [ 2] [02] +14:28:56 [ 28] [ 9] [D00000000] +14:28:56 [ 32] [ 6] [621354] +14:28:56 [ 35] [ 37] [6688990105033409=43071231340910800000] +14:28:56 [ 37] [ 12] [507904698947] +14:28:56 [ 41] [ 8] [18000800] +14:28:56 [ 42] [ 15] [NATIVE ] +14:28:56 [ 43] [ 40] [Bountai District Bountai LAO] +14:28:56 [ 49] [ 3] [418] +14:28:56 [ 52] [ 16] [3E4CA80227D1A724] +14:28:56 ============================================================================ +14:28:56 + + +waiting on router queue for slot.... +14:28:56 Sending to : +14:28:56 ============================================================================ +14:28:56 ============================================================================ +14:28:56 Slot Id : <483> +14:28:56 Transaction Type : REQUEST +14:28:56 Received From : +14:28:56 ============================================================================ +14:28:56 FNo. Len. Field Value +14:28:56 ============================================================================ +14:28:56 [ 1] [ 4] [0200] +14:28:56 [ 2] [ 16] [6688990105033409] +14:28:56 [ 3] [ 6] [301000] +14:28:56 [ 4] [ 12] [000000000000] +14:28:56 [ 7] [ 10] [0320142851] +14:28:56 [ 11] [ 6] [770569] +14:28:56 [ 12] [ 6] [142851] +14:28:56 [ 13] [ 4] [0320] +14:28:56 [ 15] [ 4] [0320] +14:28:56 [ 18] [ 4] [6011] +14:28:56 [ 22] [ 3] [900] +14:28:56 [ 25] [ 2] [02] +14:28:56 [ 28] [ 9] [D00000000] +14:28:56 [ 32] [ 6] [621354] +14:28:56 [ 35] [ 37] [6688990105033409=43071231340910800000] +14:28:56 [ 37] [ 12] [507904698947] +14:28:56 [ 41] [ 8] [18000800] +14:28:56 [ 42] [ 15] [NATIVE ] +14:28:56 [ 43] [ 40] [Bountai District Bountai LAO] +14:28:56 [ 49] [ 3] [418] +14:28:56 [ 52] [ 16] [BD27EA7C8ED76295] +14:28:56 ============================================================================ +14:28:56 + + +waiting on router queue for slot.... +14:28:56 Sending to : <4> +14:28:56 ============================================================================ +14:28:57 ============================================================================ +14:28:57 Slot Id : <483> +14:28:57 Transaction Type : RESPONSE +14:28:57 Received From : +14:28:57 ============================================================================ +14:28:57 FNo. Len. Field Value +14:28:57 ============================================================================ +14:28:57 [ 1] [ 4] [0210] +14:28:57 [ 2] [ 16] [6688990105033409] +14:28:57 [ 3] [ 6] [301000] +14:28:57 [ 4] [ 12] [000000000000] +14:28:57 [ 11] [ 6] [770569] +14:28:57 [ 12] [ 6] [142851] +14:28:57 [ 15] [ 4] [0320] +14:28:57 [ 18] [ 4] [6011] +14:28:57 [ 32] [ 6] [621354] +14:28:57 [ 35] [ 37] [6688990105033409=43071231340910800000] +14:28:57 [ 37] [ 12] [507904698947] +14:28:57 [ 38] [ 6] [030956] +14:28:57 [ 39] [ 2] [00] +14:28:57 [ 41] [ 8] [18000800] +14:28:57 [ 49] [ 3] [418] +14:28:57 [ 54] [ 20] [1002418C000033872020] +14:28:57 ============================================================================ +14:28:57 Sending to : +14:28:57 ============================================================================ +14:28:57 + + +waiting on router queue for slot.... +14:28:58 ============================================================================ +14:28:58 Slot Id : <486> +14:28:58 Transaction Type : REQUEST +14:28:58 Received From : +14:28:58 ============================================================================ +14:28:58 FNo. Len. Field Value +14:28:58 ============================================================================ +14:28:58 [ 1] [ 4] [0200] +14:28:58 [ 2] [ 16] [6688990030018756] +14:28:58 [ 3] [ 6] [010000] +14:28:58 [ 4] [ 12] [000100000000] +14:28:58 [ 7] [ 10] [0320142853] +14:28:58 [ 11] [ 6] [770574] +14:28:58 [ 12] [ 6] [142853] +14:28:58 [ 13] [ 4] [0320] +14:28:58 [ 15] [ 4] [0320] +14:28:58 [ 18] [ 4] [6011] +14:28:58 [ 22] [ 3] [900] +14:28:58 [ 25] [ 2] [02] +14:28:58 [ 28] [ 9] [D00002000] +14:28:58 [ 32] [ 6] [621354] +14:28:58 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:28:58 [ 37] [ 12] [507904660744] +14:28:58 [ 41] [ 8] [17001100] +14:28:58 [ 42] [ 15] [NATIVE ] +14:28:58 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:28:58 [ 49] [ 3] [418] +14:28:58 [ 52] [ 16] [14CBE7654C6164F4] +14:28:58 ============================================================================ +14:28:58 + + +waiting on router queue for slot.... +14:28:58 Sending to : +14:28:58 ============================================================================ +14:28:58 Sending to : +14:28:58 ============================================================================ +14:28:58 ============================================================================ +14:28:58 Slot Id : <486> +14:28:58 Transaction Type : REQUEST +14:28:58 Received From : +14:28:58 ============================================================================ +14:28:58 FNo. Len. Field Value +14:28:58 ============================================================================ +14:28:58 [ 1] [ 4] [0200] +14:28:58 [ 2] [ 16] [6688990030018756] +14:28:58 [ 3] [ 6] [010000] +14:28:58 [ 4] [ 12] [000100000000] +14:28:58 [ 7] [ 10] [0320142853] +14:28:58 [ 11] [ 6] [770574] +14:28:58 [ 12] [ 6] [142853] +14:28:58 [ 13] [ 4] [0320] +14:28:58 [ 15] [ 4] [0320] +14:28:58 [ 18] [ 4] [6011] +14:28:58 [ 22] [ 3] [900] +14:28:58 [ 25] [ 2] [02] +14:28:58 [ 28] [ 9] [D00002000] +14:28:58 [ 32] [ 6] [621354] +14:28:58 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:28:58 [ 37] [ 12] [507904660744] +14:28:58 [ 41] [ 8] [17001100] +14:28:58 [ 42] [ 15] [NATIVE ] +14:28:58 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:28:58 [ 49] [ 3] [418] +14:28:58 [ 52] [ 16] [14CBE7654C6164F4] +14:28:58 ============================================================================ +14:28:58 + + +waiting on router queue for slot.... +14:28:58 Sending to : +14:28:58 ============================================================================ +14:28:58 ============================================================================ +14:28:58 Slot Id : <486> +14:28:58 Transaction Type : REQUEST +14:28:58 Received From : +14:28:58 ============================================================================ +14:28:58 FNo. Len. Field Value +14:28:58 ============================================================================ +14:28:58 [ 1] [ 4] [0200] +14:28:58 [ 2] [ 16] [6688990030018756] +14:28:58 [ 3] [ 6] [010000] +14:28:58 [ 4] [ 12] [000100000000] +14:28:58 [ 7] [ 10] [0320142853] +14:28:58 [ 11] [ 6] [770574] +14:28:58 [ 12] [ 6] [142853] +14:28:58 [ 13] [ 4] [0320] +14:28:58 [ 15] [ 4] [0320] +14:28:58 [ 18] [ 4] [6011] +14:28:58 [ 22] [ 3] [900] +14:28:58 [ 25] [ 2] [02] +14:28:58 [ 28] [ 9] [D00002000] +14:28:58 [ 32] [ 6] [621354] +14:28:58 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:28:58 [ 37] [ 12] [507904660744] +14:28:58 [ 41] [ 8] [17001100] +14:28:58 [ 42] [ 15] [NATIVE ] +14:28:58 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:28:58 [ 49] [ 3] [418] +14:28:58 [ 52] [ 16] [C170D77DCA82B481] +14:28:58 ============================================================================ +14:28:58 + + +waiting on router queue for slot.... +14:28:58 Sending to : <4> +14:28:58 ============================================================================ +14:28:59 ============================================================================ +14:28:59 Slot Id : <483> +14:28:59 Transaction Type : RESPONSE +14:28:59 Received From : +14:28:59 ============================================================================ +14:28:59 FNo. Len. Field Value +14:28:59 ============================================================================ +14:28:59 [ 1] [ 4] [0210] +14:28:59 [ 2] [ 16] [6688990105033409] +14:28:59 [ 3] [ 6] [301000] +14:28:59 [ 4] [ 12] [000000000000] +14:28:59 [ 11] [ 6] [770569] +14:28:59 [ 12] [ 6] [142851] +14:28:59 [ 15] [ 4] [0320] +14:28:59 [ 18] [ 4] [6011] +14:28:59 [ 32] [ 6] [621354] +14:28:59 [ 35] [ 37] [6688990105033409=43071231340910800000] +14:28:59 [ 37] [ 12] [507904698947] +14:28:59 [ 38] [ 6] [030956] +14:28:59 [ 39] [ 2] [00] +14:28:59 [ 41] [ 8] [18000800] +14:28:59 [ 49] [ 3] [418] +14:28:59 [ 54] [ 20] [1002418C000033872020] +14:28:59 ============================================================================ +14:28:59 Calculate Source COMM Id = 0 +14:28:59 ============================================================================ +14:28:59 + + +waiting on router queue for slot.... +14:28:59 ============================================================================ +14:28:59 Slot Id : <486> +14:28:59 Transaction Type : RESPONSE +14:28:59 Received From : +14:28:59 ============================================================================ +14:28:59 FNo. Len. Field Value +14:28:59 ============================================================================ +14:28:59 [ 1] [ 4] [0210] +14:28:59 [ 2] [ 16] [6688990030018756] +14:28:59 [ 3] [ 6] [010000] +14:28:59 [ 4] [ 12] [000100000000] +14:28:59 [ 11] [ 6] [770574] +14:28:59 [ 12] [ 6] [142853] +14:28:59 [ 15] [ 4] [0320] +14:28:59 [ 18] [ 4] [6011] +14:28:59 [ 32] [ 6] [621354] +14:28:59 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:28:59 [ 37] [ 12] [507904660744] +14:28:59 [ 38] [ 6] [875129] +14:28:59 [ 39] [ 2] [00] +14:28:59 [ 41] [ 8] [17001100] +14:28:59 [ 49] [ 3] [418] +14:28:59 [ 54] [ 20] [0002418C000419200000] +14:28:59 ============================================================================ +14:28:59 Sending to : +14:28:59 ============================================================================ +14:28:59 + + +waiting on router queue for slot.... +14:29:00 ============================================================================ +14:29:00 Slot Id : <477> +14:29:00 Transaction Type : REQUEST +14:29:00 Received From : +14:29:00 ============================================================================ +14:29:00 FNo. Len. Field Value +14:29:00 ============================================================================ +14:29:00 [ 1] [ 4] [0800] +14:29:00 [ 7] [ 10] [0320072807] +14:29:00 [ 11] [ 6] [156794] +14:29:00 [ 70] [ 3] [301] +14:29:00 ============================================================================ +14:29:00 + + +waiting on router queue for slot.... +14:29:00 Sending to : +14:29:00 ============================================================================ +14:29:00 ============================================================================ +14:29:00 Slot Id : <477> +14:29:00 Transaction Type : RESPONSE +14:29:00 Received From : +14:29:00 ============================================================================ +14:29:00 FNo. Len. Field Value +14:29:00 ============================================================================ +14:29:00 [ 1] [ 4] [0810] +14:29:00 [ 7] [ 10] [0320072807] +14:29:00 [ 11] [ 6] [156794] +14:29:00 [ 39] [ 2] [00] +14:29:00 [ 70] [ 3] [301] +14:29:00 ============================================================================ +14:29:00 Calculate Source COMM Id = 2 +14:29:00 ============================================================================ +14:29:00 + + +waiting on router queue for slot.... +14:29:00 ============================================================================ +14:29:00 Slot Id : <486> +14:29:00 Transaction Type : RESPONSE +14:29:00 Received From : +14:29:00 ============================================================================ +14:29:00 FNo. Len. Field Value +14:29:00 ============================================================================ +14:29:00 [ 1] [ 4] [0210] +14:29:00 [ 2] [ 16] [6688990030018756] +14:29:00 [ 3] [ 6] [010000] +14:29:00 [ 4] [ 12] [000100000000] +14:29:00 [ 11] [ 6] [770574] +14:29:00 [ 12] [ 6] [142853] +14:29:00 [ 15] [ 4] [0320] +14:29:00 [ 18] [ 4] [6011] +14:29:00 [ 32] [ 6] [621354] +14:29:00 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:29:00 [ 37] [ 12] [507904660744] +14:29:00 [ 38] [ 6] [875129] +14:29:00 [ 39] [ 2] [00] +14:29:00 [ 41] [ 8] [17001100] +14:29:00 [ 49] [ 3] [418] +14:29:00 [ 54] [ 20] [0002418C000419200000] +14:29:00 ============================================================================ +14:29:00 Calculate Source COMM Id = 0 +14:29:00 ============================================================================ +14:29:00 + + +waiting on router queue for slot.... +14:29:11 ============================================================================ +14:29:11 Slot Id : <474> +14:29:11 Transaction Type : REQUEST +14:29:11 Received From : +14:29:11 ============================================================================ +14:29:11 FNo. Len. Field Value +14:29:11 ============================================================================ +14:29:11 [ 1] [ 4] [0800] +14:29:11 [ 7] [ 10] [0320072818] +14:29:11 [ 11] [ 6] [156795] +14:29:11 [ 70] [ 3] [301] +14:29:11 ============================================================================ +14:29:11 + + +waiting on router queue for slot.... +14:29:11 Sending to : +14:29:11 ============================================================================ +14:29:11 ============================================================================ +14:29:11 Slot Id : <474> +14:29:11 Transaction Type : RESPONSE +14:29:11 Received From : +14:29:11 ============================================================================ +14:29:11 FNo. Len. Field Value +14:29:11 ============================================================================ +14:29:11 [ 1] [ 4] [0810] +14:29:11 [ 7] [ 10] [0320072818] +14:29:11 [ 11] [ 6] [156795] +14:29:11 [ 39] [ 2] [00] +14:29:11 [ 70] [ 3] [301] +14:29:11 ============================================================================ +14:29:11 Calculate Source COMM Id = 2 +14:29:11 ============================================================================ +14:29:11 + + +waiting on router queue for slot.... +14:29:16 ============================================================================ +14:29:16 Slot Id : <472> +14:29:16 Transaction Type : REQUEST +14:29:16 Received From : +14:29:16 ============================================================================ +14:29:16 FNo. Len. Field Value +14:29:16 ============================================================================ +14:29:16 [ 1] [ 4] [0200] +14:29:16 [ 2] [ 16] [6213545000697734] +14:29:16 [ 3] [ 6] [301000] +14:29:16 [ 7] [ 10] [0320072822] +14:29:16 [ 11] [ 6] [269662] +14:29:16 [ 12] [ 6] [142822] +14:29:16 [ 13] [ 4] [0320] +14:29:16 [ 14] [ 4] [4912] +14:29:16 [ 15] [ 4] [0320] +14:29:16 [ 18] [ 4] [6011] +14:29:16 [ 19] [ 3] [418] +14:29:16 [ 22] [ 3] [021] +14:29:16 [ 25] [ 2] [01] +14:29:16 [ 32] [ 6] [180893] +14:29:16 [ 35] [ 32] [6213545000697734=491212019773975] +14:29:16 [ 37] [ 12] [507907269662] +14:29:16 [ 41] [ 8] [0221XKKM] +14:29:16 [ 42] [ 15] [999999 ] +14:29:16 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:29:16 [ 49] [ 3] [418] +14:29:16 [ 52] [ 16] [14BE3141B4FC2666] +14:29:16 ============================================================================ +14:29:16 + + +waiting on router queue for slot.... +14:29:16 Sending to : +14:29:16 ============================================================================ +14:29:16 Sending to : +14:29:16 ============================================================================ +14:29:16 ============================================================================ +14:29:16 Slot Id : <472> +14:29:16 Transaction Type : REQUEST +14:29:16 Received From : +14:29:16 ============================================================================ +14:29:16 FNo. Len. Field Value +14:29:16 ============================================================================ +14:29:16 [ 1] [ 4] [0200] +14:29:16 [ 2] [ 16] [6213545000697734] +14:29:16 [ 3] [ 6] [301000] +14:29:16 [ 7] [ 10] [0320072822] +14:29:16 [ 11] [ 6] [269662] +14:29:16 [ 12] [ 6] [142822] +14:29:16 [ 13] [ 4] [0320] +14:29:16 [ 14] [ 4] [4912] +14:29:16 [ 15] [ 4] [0320] +14:29:16 [ 18] [ 4] [6011] +14:29:16 [ 19] [ 3] [418] +14:29:16 [ 22] [ 3] [021] +14:29:16 [ 25] [ 2] [01] +14:29:16 [ 32] [ 6] [180893] +14:29:16 [ 35] [ 32] [6213545000697734=491212019773975] +14:29:16 [ 37] [ 12] [507907269662] +14:29:16 [ 41] [ 8] [0221XKKM] +14:29:16 [ 42] [ 15] [999999 ] +14:29:16 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:29:16 [ 49] [ 3] [418] +14:29:16 [ 52] [ 16] [14BE3141B4FC2666] +14:29:16 ============================================================================ +14:29:16 + + +waiting on router queue for slot.... +14:29:16 Sending to : +14:29:16 ============================================================================ +14:29:16 ============================================================================ +14:29:16 Slot Id : <472> +14:29:16 Transaction Type : REQUEST +14:29:16 Received From : +14:29:16 ============================================================================ +14:29:16 FNo. Len. Field Value +14:29:16 ============================================================================ +14:29:16 [ 1] [ 4] [0200] +14:29:16 [ 2] [ 16] [6213545000697734] +14:29:16 [ 3] [ 6] [301000] +14:29:16 [ 7] [ 10] [0320072822] +14:29:16 [ 11] [ 6] [269662] +14:29:16 [ 12] [ 6] [142822] +14:29:16 [ 13] [ 4] [0320] +14:29:16 [ 14] [ 4] [4912] +14:29:16 [ 15] [ 4] [0320] +14:29:16 [ 18] [ 4] [6011] +14:29:16 [ 19] [ 3] [418] +14:29:16 [ 22] [ 3] [021] +14:29:16 [ 25] [ 2] [01] +14:29:16 [ 32] [ 6] [180893] +14:29:16 [ 35] [ 32] [6213545000697734=491212019773975] +14:29:16 [ 37] [ 12] [507907269662] +14:29:16 [ 41] [ 8] [0221XKKM] +14:29:16 [ 42] [ 15] [999999 ] +14:29:16 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:29:16 [ 49] [ 3] [418] +14:29:16 [ 52] [ 16] [665233B07BC68AFB] +14:29:16 ============================================================================ +14:29:16 + + +waiting on router queue for slot.... +14:29:16 Sending to : <0> +14:29:16 ============================================================================ +14:29:17 ============================================================================ +14:29:17 Slot Id : <472> +14:29:17 Transaction Type : RESPONSE +14:29:17 Received From : +14:29:17 ============================================================================ +14:29:17 FNo. Len. Field Value +14:29:17 ============================================================================ +14:29:17 [ 1] [ 4] [0210] +14:29:17 [ 2] [ 16] [6213545000697734] +14:29:17 [ 3] [ 6] [301000] +14:29:17 [ 4] [ 12] [000000000000] +14:29:17 [ 7] [ 10] [0320072822] +14:29:17 [ 11] [ 6] [269662] +14:29:17 [ 12] [ 6] [142822] +14:29:17 [ 13] [ 4] [0320] +14:29:17 [ 15] [ 4] [0320] +14:29:17 [ 18] [ 4] [6011] +14:29:17 [ 19] [ 3] [418] +14:29:17 [ 32] [ 6] [180893] +14:29:17 [ 35] [ 32] [6213545000697734=491212019773975] +14:29:17 [ 37] [ 12] [507907269662] +14:29:17 [ 38] [ 6] [265480] +14:29:17 [ 39] [ 2] [00] +14:29:17 [ 41] [ 8] [0221XKKM] +14:29:17 [ 49] [ 3] [418] +14:29:17 [ 54] [ 40] [1001418C0003710950211002418C000371095021] +14:29:17 ============================================================================ +14:29:17 Sending to : +14:29:17 ============================================================================ +14:29:17 + + +waiting on router queue for slot.... +14:29:18 ============================================================================ +14:29:18 Slot Id : <472> +14:29:18 Transaction Type : RESPONSE +14:29:18 Received From : +14:29:18 ============================================================================ +14:29:18 FNo. Len. Field Value +14:29:18 ============================================================================ +14:29:18 [ 1] [ 4] [0210] +14:29:18 [ 2] [ 16] [6213545000697734] +14:29:18 [ 3] [ 6] [301000] +14:29:18 [ 4] [ 12] [000000000000] +14:29:18 [ 7] [ 10] [0320072822] +14:29:18 [ 11] [ 6] [269662] +14:29:18 [ 12] [ 6] [142822] +14:29:18 [ 13] [ 4] [0320] +14:29:18 [ 15] [ 4] [0320] +14:29:18 [ 18] [ 4] [6011] +14:29:18 [ 19] [ 3] [418] +14:29:18 [ 32] [ 6] [180893] +14:29:18 [ 35] [ 32] [6213545000697734=491212019773975] +14:29:18 [ 37] [ 12] [507907269662] +14:29:18 [ 38] [ 6] [265480] +14:29:18 [ 39] [ 2] [00] +14:29:18 [ 41] [ 8] [0221XKKM] +14:29:18 [ 49] [ 3] [418] +14:29:18 [ 54] [ 40] [1001418C0003710950211002418C000371095021] +14:29:18 ============================================================================ +14:29:18 Calculate Source COMM Id = 2 +14:29:18 ============================================================================ +14:29:18 + + +waiting on router queue for slot.... +14:29:32 ============================================================================ +14:29:32 Slot Id : <6> +14:29:32 Transaction Type : REQUEST +14:29:32 Received From : +14:29:32 ============================================================================ +14:29:32 FNo. Len. Field Value +14:29:32 ============================================================================ +14:29:32 [ 1] [ 4] [0800] +14:29:32 [ 7] [ 10] [0320072840] +14:29:32 [ 11] [ 6] [156796] +14:29:32 [ 70] [ 3] [301] +14:29:32 ============================================================================ +14:29:32 + + +waiting on router queue for slot.... +14:29:32 Sending to : +14:29:32 ============================================================================ +14:29:32 ============================================================================ +14:29:32 Slot Id : <6> +14:29:32 Transaction Type : RESPONSE +14:29:32 Received From : +14:29:32 ============================================================================ +14:29:32 FNo. Len. Field Value +14:29:32 ============================================================================ +14:29:32 [ 1] [ 4] [0810] +14:29:32 [ 7] [ 10] [0320072840] +14:29:32 [ 11] [ 6] [156796] +14:29:32 [ 39] [ 2] [00] +14:29:32 [ 70] [ 3] [301] +14:29:32 ============================================================================ +14:29:32 Calculate Source COMM Id = 2 +14:29:32 ============================================================================ +14:29:32 + + +waiting on router queue for slot.... +14:29:34 ============================================================================ +14:29:34 Slot Id : <492> +14:29:34 Transaction Type : REQUEST +14:29:34 Received From : +14:29:34 ============================================================================ +14:29:34 FNo. Len. Field Value +14:29:34 ============================================================================ +14:29:34 [ 1] [ 4] [0200] +14:29:34 [ 2] [ 16] [6688990106324609] +14:29:34 [ 3] [ 6] [011000] +14:29:34 [ 4] [ 12] [000100000000] +14:29:34 [ 7] [ 10] [0320142929] +14:29:34 [ 11] [ 6] [770730] +14:29:34 [ 12] [ 6] [142929] +14:29:34 [ 13] [ 4] [0320] +14:29:34 [ 15] [ 4] [0320] +14:29:34 [ 18] [ 4] [6011] +14:29:34 [ 22] [ 3] [900] +14:29:34 [ 25] [ 2] [02] +14:29:34 [ 28] [ 9] [D00002000] +14:29:34 [ 32] [ 6] [621354] +14:29:34 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:29:34 [ 37] [ 12] [507904645092] +14:29:34 [ 41] [ 8] [17000900] +14:29:34 [ 42] [ 15] [NATIVE ] +14:29:34 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:29:34 [ 49] [ 3] [418] +14:29:34 [ 52] [ 16] [0CCDAADC019EAFE1] +14:29:34 ============================================================================ +14:29:34 + + +waiting on router queue for slot.... +14:29:34 Sending to : +14:29:34 ============================================================================ +14:29:34 Sending to : +14:29:34 ============================================================================ +14:29:34 ============================================================================ +14:29:34 Slot Id : <485> +14:29:34 Transaction Type : REQUEST +14:29:34 Received From : +14:29:34 ============================================================================ +14:29:34 FNo. Len. Field Value +14:29:34 ============================================================================ +14:29:34 [ 1] [ 4] [0200] +14:29:34 [ 2] [ 16] [6688990104022007] +14:29:34 [ 3] [ 6] [010000] +14:29:34 [ 4] [ 12] [000010000000] +14:29:34 [ 7] [ 10] [0320072840] +14:29:34 [ 11] [ 6] [269664] +14:29:34 [ 12] [ 6] [142840] +14:29:34 [ 13] [ 4] [0320] +14:29:34 [ 14] [ 4] [4302] +14:29:34 [ 15] [ 4] [0320] +14:29:34 [ 18] [ 4] [6011] +14:29:34 [ 19] [ 3] [418] +14:29:34 [ 22] [ 3] [021] +14:29:34 [ 25] [ 2] [01] +14:29:34 [ 28] [ 9] [D00002000] +14:29:34 [ 32] [ 6] [180893] +14:29:34 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:29:34 [ 37] [ 12] [507907269664] +14:29:34 [ 41] [ 8] [0421BKPH] +14:29:34 [ 42] [ 15] [999999 ] +14:29:34 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:29:34 [ 49] [ 3] [418] +14:29:34 [ 52] [ 16] [473334DCBE911001] +14:29:34 ============================================================================ +14:29:34 + + +waiting on router queue for slot.... +14:29:34 Sending to : +14:29:34 ============================================================================ +14:29:34 Sending to : +14:29:34 ============================================================================ +14:29:34 ============================================================================ +14:29:34 Slot Id : <492> +14:29:34 Transaction Type : REQUEST +14:29:34 Received From : +14:29:34 ============================================================================ +14:29:34 FNo. Len. Field Value +14:29:34 ============================================================================ +14:29:34 [ 1] [ 4] [0200] +14:29:34 [ 2] [ 16] [6688990106324609] +14:29:34 [ 3] [ 6] [011000] +14:29:34 [ 4] [ 12] [000100000000] +14:29:34 [ 7] [ 10] [0320142929] +14:29:34 [ 11] [ 6] [770730] +14:29:34 [ 12] [ 6] [142929] +14:29:34 [ 13] [ 4] [0320] +14:29:34 [ 15] [ 4] [0320] +14:29:34 [ 18] [ 4] [6011] +14:29:34 [ 22] [ 3] [900] +14:29:34 [ 25] [ 2] [02] +14:29:34 [ 28] [ 9] [D00002000] +14:29:34 [ 32] [ 6] [621354] +14:29:34 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:29:34 [ 37] [ 12] [507904645092] +14:29:34 [ 41] [ 8] [17000900] +14:29:34 [ 42] [ 15] [NATIVE ] +14:29:34 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:29:34 [ 49] [ 3] [418] +14:29:34 [ 52] [ 16] [0CCDAADC019EAFE1] +14:29:34 ============================================================================ +14:29:34 + + +waiting on router queue for slot.... +14:29:34 Sending to : +14:29:34 ============================================================================ +14:29:34 ============================================================================ +14:29:34 Slot Id : <492> +14:29:34 Transaction Type : REQUEST +14:29:34 Received From : +14:29:34 ============================================================================ +14:29:34 FNo. Len. Field Value +14:29:34 ============================================================================ +14:29:34 [ 1] [ 4] [0200] +14:29:34 [ 2] [ 16] [6688990106324609] +14:29:34 [ 3] [ 6] [011000] +14:29:34 [ 4] [ 12] [000100000000] +14:29:34 [ 7] [ 10] [0320142929] +14:29:34 [ 11] [ 6] [770730] +14:29:34 [ 12] [ 6] [142929] +14:29:34 [ 13] [ 4] [0320] +14:29:34 [ 15] [ 4] [0320] +14:29:34 [ 18] [ 4] [6011] +14:29:34 [ 22] [ 3] [900] +14:29:34 [ 25] [ 2] [02] +14:29:34 [ 28] [ 9] [D00002000] +14:29:34 [ 32] [ 6] [621354] +14:29:34 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:29:34 [ 37] [ 12] [507904645092] +14:29:34 [ 41] [ 8] [17000900] +14:29:34 [ 42] [ 15] [NATIVE ] +14:29:34 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:29:34 [ 49] [ 3] [418] +14:29:34 [ 52] [ 16] [F4C3CE7967A18FE7] +14:29:34 ============================================================================ +14:29:34 + + +waiting on router queue for slot.... +14:29:34 Sending to : <4> +14:29:34 ============================================================================ +14:29:34 ============================================================================ +14:29:34 Slot Id : <485> +14:29:34 Transaction Type : REQUEST +14:29:34 Received From : +14:29:34 ============================================================================ +14:29:34 FNo. Len. Field Value +14:29:34 ============================================================================ +14:29:34 [ 1] [ 4] [0200] +14:29:34 [ 2] [ 16] [6688990104022007] +14:29:34 [ 3] [ 6] [010000] +14:29:34 [ 4] [ 12] [000010000000] +14:29:34 [ 7] [ 10] [0320072840] +14:29:34 [ 11] [ 6] [269664] +14:29:34 [ 12] [ 6] [142840] +14:29:34 [ 13] [ 4] [0320] +14:29:34 [ 14] [ 4] [4302] +14:29:34 [ 15] [ 4] [0320] +14:29:34 [ 18] [ 4] [6011] +14:29:34 [ 19] [ 3] [418] +14:29:34 [ 22] [ 3] [021] +14:29:34 [ 25] [ 2] [01] +14:29:34 [ 28] [ 9] [D00002000] +14:29:34 [ 32] [ 6] [180893] +14:29:34 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:29:34 [ 37] [ 12] [507907269664] +14:29:34 [ 41] [ 8] [0421BKPH] +14:29:34 [ 42] [ 15] [999999 ] +14:29:34 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:29:34 [ 49] [ 3] [418] +14:29:34 [ 52] [ 16] [473334DCBE911001] +14:29:34 ============================================================================ +14:29:34 + + +waiting on router queue for slot.... +14:29:34 Sending to : +14:29:34 ============================================================================ +14:29:34 ============================================================================ +14:29:34 Slot Id : <485> +14:29:34 Transaction Type : REQUEST +14:29:34 Received From : +14:29:34 ============================================================================ +14:29:34 FNo. Len. Field Value +14:29:34 ============================================================================ +14:29:34 [ 1] [ 4] [0200] +14:29:34 [ 2] [ 16] [6688990104022007] +14:29:34 [ 3] [ 6] [010000] +14:29:34 [ 4] [ 12] [000010000000] +14:29:34 [ 7] [ 10] [0320072840] +14:29:34 [ 11] [ 6] [269664] +14:29:34 [ 12] [ 6] [142840] +14:29:34 [ 13] [ 4] [0320] +14:29:34 [ 14] [ 4] [4302] +14:29:34 [ 15] [ 4] [0320] +14:29:34 [ 18] [ 4] [6011] +14:29:34 [ 19] [ 3] [418] +14:29:34 [ 22] [ 3] [021] +14:29:34 [ 25] [ 2] [01] +14:29:34 [ 28] [ 9] [D00002000] +14:29:34 [ 32] [ 6] [180893] +14:29:34 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:29:34 [ 37] [ 12] [507907269664] +14:29:34 [ 41] [ 8] [0421BKPH] +14:29:34 [ 42] [ 15] [999999 ] +14:29:34 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:29:34 [ 49] [ 3] [418] +14:29:34 [ 52] [ 16] [3F768CEE6B61742D] +14:29:34 ============================================================================ +14:29:34 + + +waiting on router queue for slot.... +14:29:34 Sending to : <0> +14:29:34 ============================================================================ +14:29:35 ============================================================================ +14:29:35 Slot Id : <485> +14:29:35 Transaction Type : RESPONSE +14:29:35 Received From : +14:29:35 ============================================================================ +14:29:35 FNo. Len. Field Value +14:29:35 ============================================================================ +14:29:35 [ 1] [ 4] [0210] +14:29:35 [ 2] [ 16] [6688990104022007] +14:29:35 [ 3] [ 6] [010000] +14:29:35 [ 4] [ 12] [000010000000] +14:29:35 [ 7] [ 10] [0320072840] +14:29:35 [ 11] [ 6] [269664] +14:29:35 [ 12] [ 6] [142840] +14:29:35 [ 13] [ 4] [0320] +14:29:35 [ 15] [ 4] [0320] +14:29:35 [ 18] [ 4] [6011] +14:29:35 [ 19] [ 3] [418] +14:29:35 [ 22] [ 3] [021] +14:29:35 [ 32] [ 6] [180893] +14:29:35 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:29:35 [ 37] [ 12] [507907269664] +14:29:35 [ 39] [ 2] [14] +14:29:35 [ 41] [ 8] [0421BKPH] +14:29:35 [ 49] [ 3] [418] +14:29:35 ============================================================================ +14:29:35 Sending to : +14:29:35 ============================================================================ +14:29:35 + + +waiting on router queue for slot.... +14:29:35 ============================================================================ +14:29:35 Slot Id : <492> +14:29:35 Transaction Type : RESPONSE +14:29:35 Received From : +14:29:35 ============================================================================ +14:29:35 FNo. Len. Field Value +14:29:35 ============================================================================ +14:29:35 [ 1] [ 4] [0210] +14:29:35 [ 2] [ 16] [6688990106324609] +14:29:35 [ 3] [ 6] [011000] +14:29:35 [ 4] [ 12] [000100000000] +14:29:35 [ 11] [ 6] [770730] +14:29:35 [ 12] [ 6] [142929] +14:29:35 [ 15] [ 4] [0320] +14:29:35 [ 18] [ 4] [6011] +14:29:35 [ 32] [ 6] [621354] +14:29:35 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:29:35 [ 37] [ 12] [507904645092] +14:29:35 [ 38] [ 6] [888230] +14:29:35 [ 39] [ 2] [00] +14:29:35 [ 41] [ 8] [17000900] +14:29:35 [ 49] [ 3] [418] +14:29:35 [ 54] [ 20] [1002418C000296704864] +14:29:35 ============================================================================ +14:29:35 Sending to : +14:29:35 ============================================================================ +14:29:35 + + +waiting on router queue for slot.... +14:29:36 ============================================================================ +14:29:36 Slot Id : <485> +14:29:36 Transaction Type : RESPONSE +14:29:36 Received From : +14:29:36 ============================================================================ +14:29:36 FNo. Len. Field Value +14:29:36 ============================================================================ +14:29:36 [ 1] [ 4] [0210] +14:29:36 [ 2] [ 16] [6688990104022007] +14:29:36 [ 3] [ 6] [010000] +14:29:36 [ 4] [ 12] [000010000000] +14:29:36 [ 7] [ 10] [0320072840] +14:29:36 [ 11] [ 6] [269664] +14:29:36 [ 12] [ 6] [142840] +14:29:36 [ 13] [ 4] [0320] +14:29:36 [ 15] [ 4] [0320] +14:29:36 [ 18] [ 4] [6011] +14:29:36 [ 19] [ 3] [418] +14:29:36 [ 22] [ 3] [021] +14:29:36 [ 32] [ 6] [180893] +14:29:36 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:29:36 [ 37] [ 12] [507907269664] +14:29:36 [ 39] [ 2] [14] +14:29:36 [ 41] [ 8] [0421BKPH] +14:29:36 [ 49] [ 3] [418] +14:29:36 ============================================================================ +14:29:36 Calculate Source COMM Id = 2 +14:29:36 ============================================================================ +14:29:36 + + +waiting on router queue for slot.... +14:29:37 ============================================================================ +14:29:37 Slot Id : <492> +14:29:37 Transaction Type : RESPONSE +14:29:37 Received From : +14:29:37 ============================================================================ +14:29:37 FNo. Len. Field Value +14:29:37 ============================================================================ +14:29:37 [ 1] [ 4] [0210] +14:29:37 [ 2] [ 16] [6688990106324609] +14:29:37 [ 3] [ 6] [011000] +14:29:37 [ 4] [ 12] [000100000000] +14:29:37 [ 11] [ 6] [770730] +14:29:37 [ 12] [ 6] [142929] +14:29:37 [ 15] [ 4] [0320] +14:29:37 [ 18] [ 4] [6011] +14:29:37 [ 32] [ 6] [621354] +14:29:37 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:29:37 [ 37] [ 12] [507904645092] +14:29:37 [ 38] [ 6] [888230] +14:29:37 [ 39] [ 2] [00] +14:29:37 [ 41] [ 8] [17000900] +14:29:37 [ 49] [ 3] [418] +14:29:37 [ 54] [ 20] [1002418C000296704864] +14:29:37 ============================================================================ +14:29:37 Calculate Source COMM Id = 0 +14:29:37 ============================================================================ +14:29:37 + + +waiting on router queue for slot.... +14:29:40 ============================================================================ +14:29:40 Slot Id : <14> +14:29:40 Transaction Type : REQUEST +14:29:40 Received From : +14:29:40 ============================================================================ +14:29:40 FNo. Len. Field Value +14:29:40 ============================================================================ +14:29:40 [ 1] [ 4] [0800] +14:29:40 [ 2] [ 5] [02531] +14:29:40 [ 3] [ 6] [579148] +14:29:40 [ 7] [ 10] [0320072940] +14:29:40 [ 11] [ 6] [807253] +14:29:40 [ 15] [ 10] [0320072940] +14:29:40 [ 37] [ 11] [57914807253] +14:29:40 [ 70] [ 3] [001] +14:29:40 ============================================================================ +14:29:40 + + +waiting on router queue for slot.... +14:29:40 ============================================================================ +14:29:40 Slot Id : <14> +14:29:40 Transaction Type : RESPONSE +14:29:40 Received From : +14:29:40 ============================================================================ +14:29:40 FNo. Len. Field Value +14:29:40 ============================================================================ +14:29:40 [ 1] [ 4] [0810] +14:29:40 [ 7] [ 10] [0320072940] +14:29:40 [ 11] [ 6] [807253] +14:29:40 [ 15] [ 4] [0320] +14:29:40 [ 37] [ 12] [57914807253] +14:29:40 [ 39] [ 2] [00] +14:29:40 [ 70] [ 3] [001] +14:29:40 ============================================================================ +14:29:40 Sending to : +14:29:40 ============================================================================ +14:29:40 + + +waiting on router queue for slot.... +14:29:40 ============================================================================ +14:29:40 Slot Id : <454> +14:29:40 Transaction Type : REQUEST +14:29:40 Received From : +14:29:40 ============================================================================ +14:29:40 FNo. Len. Field Value +14:29:40 ============================================================================ +14:29:40 [ 1] [ 4] [0200] +14:29:40 [ 2] [ 16] [6688990601482308] +14:29:40 [ 3] [ 6] [011000] +14:29:40 [ 4] [ 12] [000100000000] +14:29:40 [ 7] [ 10] [0320142936] +14:29:40 [ 11] [ 6] [770766] +14:29:40 [ 12] [ 6] [142936] +14:29:40 [ 13] [ 4] [0320] +14:29:40 [ 15] [ 4] [0320] +14:29:40 [ 18] [ 4] [6011] +14:29:40 [ 22] [ 3] [900] +14:29:40 [ 25] [ 2] [02] +14:29:40 [ 28] [ 9] [D00002000] +14:29:40 [ 32] [ 6] [621354] +14:29:40 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:29:40 [ 37] [ 12] [507904153949] +14:29:40 [ 41] [ 8] [20001000] +14:29:40 [ 42] [ 15] [NATIVE ] +14:29:40 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:29:40 [ 49] [ 3] [418] +14:29:40 [ 52] [ 16] [465C751FB1533BE4] +14:29:40 ============================================================================ +14:29:40 + + +waiting on router queue for slot.... +14:29:40 Sending to : +14:29:40 ============================================================================ +14:29:40 Sending to : +14:29:40 ============================================================================ +14:29:41 ============================================================================ +14:29:41 Slot Id : <454> +14:29:41 Transaction Type : REQUEST +14:29:41 Received From : +14:29:41 ============================================================================ +14:29:41 FNo. Len. Field Value +14:29:41 ============================================================================ +14:29:41 [ 1] [ 4] [0200] +14:29:41 [ 2] [ 16] [6688990601482308] +14:29:41 [ 3] [ 6] [011000] +14:29:41 [ 4] [ 12] [000100000000] +14:29:41 [ 7] [ 10] [0320142936] +14:29:41 [ 11] [ 6] [770766] +14:29:41 [ 12] [ 6] [142936] +14:29:41 [ 13] [ 4] [0320] +14:29:41 [ 15] [ 4] [0320] +14:29:41 [ 18] [ 4] [6011] +14:29:41 [ 22] [ 3] [900] +14:29:41 [ 25] [ 2] [02] +14:29:41 [ 28] [ 9] [D00002000] +14:29:41 [ 32] [ 6] [621354] +14:29:41 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:29:41 [ 37] [ 12] [507904153949] +14:29:41 [ 41] [ 8] [20001000] +14:29:41 [ 42] [ 15] [NATIVE ] +14:29:41 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:29:41 [ 49] [ 3] [418] +14:29:41 [ 52] [ 16] [465C751FB1533BE4] +14:29:41 ============================================================================ +14:29:41 + + +waiting on router queue for slot.... +14:29:41 Sending to : +14:29:41 ============================================================================ +14:29:41 ============================================================================ +14:29:41 Slot Id : <454> +14:29:41 Transaction Type : REQUEST +14:29:41 Received From : +14:29:41 ============================================================================ +14:29:41 FNo. Len. Field Value +14:29:41 ============================================================================ +14:29:41 [ 1] [ 4] [0200] +14:29:41 [ 2] [ 16] [6688990601482308] +14:29:41 [ 3] [ 6] [011000] +14:29:41 [ 4] [ 12] [000100000000] +14:29:41 [ 7] [ 10] [0320142936] +14:29:41 [ 11] [ 6] [770766] +14:29:41 [ 12] [ 6] [142936] +14:29:41 [ 13] [ 4] [0320] +14:29:41 [ 15] [ 4] [0320] +14:29:41 [ 18] [ 4] [6011] +14:29:41 [ 22] [ 3] [900] +14:29:41 [ 25] [ 2] [02] +14:29:41 [ 28] [ 9] [D00002000] +14:29:41 [ 32] [ 6] [621354] +14:29:41 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:29:41 [ 37] [ 12] [507904153949] +14:29:41 [ 41] [ 8] [20001000] +14:29:41 [ 42] [ 15] [NATIVE ] +14:29:41 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:29:41 [ 49] [ 3] [418] +14:29:41 [ 52] [ 16] [53BC927BCF4CBE07] +14:29:41 ============================================================================ +14:29:41 + + +waiting on router queue for slot.... +14:29:41 Sending to : <4> +14:29:41 ============================================================================ +14:29:42 ============================================================================ +14:29:42 Slot Id : <454> +14:29:42 Transaction Type : RESPONSE +14:29:42 Received From : +14:29:42 ============================================================================ +14:29:42 FNo. Len. Field Value +14:29:42 ============================================================================ +14:29:42 [ 1] [ 4] [0210] +14:29:42 [ 2] [ 16] [6688990601482308] +14:29:42 [ 3] [ 6] [011000] +14:29:42 [ 4] [ 12] [000100000000] +14:29:42 [ 11] [ 6] [770766] +14:29:42 [ 12] [ 6] [142936] +14:29:42 [ 15] [ 4] [0320] +14:29:42 [ 18] [ 4] [6011] +14:29:42 [ 32] [ 6] [621354] +14:29:42 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:29:42 [ 37] [ 12] [507904153949] +14:29:42 [ 38] [ 6] [604274] +14:29:42 [ 39] [ 2] [00] +14:29:42 [ 41] [ 8] [20001000] +14:29:42 [ 49] [ 3] [418] +14:29:42 [ 54] [ 20] [1002418C000093951125] +14:29:42 ============================================================================ +14:29:42 Sending to : +14:29:42 ============================================================================ +14:29:42 + + +waiting on router queue for slot.... +14:29:43 ============================================================================ +14:29:43 Slot Id : <454> +14:29:43 Transaction Type : RESPONSE +14:29:43 Received From : +14:29:43 ============================================================================ +14:29:43 FNo. Len. Field Value +14:29:43 ============================================================================ +14:29:43 [ 1] [ 4] [0210] +14:29:43 [ 2] [ 16] [6688990601482308] +14:29:43 [ 3] [ 6] [011000] +14:29:43 [ 4] [ 12] [000100000000] +14:29:43 [ 11] [ 6] [770766] +14:29:43 [ 12] [ 6] [142936] +14:29:43 [ 15] [ 4] [0320] +14:29:43 [ 18] [ 4] [6011] +14:29:43 [ 32] [ 6] [621354] +14:29:43 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:29:43 [ 37] [ 12] [507904153949] +14:29:43 [ 38] [ 6] [604274] +14:29:43 [ 39] [ 2] [00] +14:29:43 [ 41] [ 8] [20001000] +14:29:43 [ 49] [ 3] [418] +14:29:43 [ 54] [ 20] [1002418C000093951125] +14:29:43 ============================================================================ +14:29:43 Calculate Source COMM Id = 0 +14:29:43 ============================================================================ +14:29:43 + + +waiting on router queue for slot.... +14:29:44 ============================================================================ +14:29:44 Slot Id : <16> +14:29:44 Transaction Type : REQUEST +14:29:44 Received From : +14:29:44 ============================================================================ +14:29:44 FNo. Len. Field Value +14:29:44 ============================================================================ +14:29:44 [ 1] [ 4] [0800] +14:29:44 [ 7] [ 10] [0320214133] +14:29:44 [ 11] [ 6] [144133] +14:29:44 [ 37] [ 12] [57914144133] +14:29:44 [ 70] [ 3] [301] +14:29:44 ============================================================================ +14:29:44 + + +waiting on router queue for slot.... +14:29:44 Sending to : +14:29:44 ============================================================================ +14:29:44 ============================================================================ +14:29:44 Slot Id : <16> +14:29:44 Transaction Type : RESPONSE +14:29:44 Received From : +14:29:44 ============================================================================ +14:29:44 FNo. Len. Field Value +14:29:44 ============================================================================ +14:29:44 [ 1] [ 4] [0810] +14:29:44 [ 7] [ 10] [0320214133] +14:29:44 [ 11] [ 6] [144133] +14:29:44 [ 37] [ 12] [579141441330] +14:29:44 [ 39] [ 2] [00] +14:29:44 [ 70] [ 3] [810] +14:29:44 ============================================================================ +14:29:44 Calculate Source COMM Id = 6 +14:29:44 ============================================================================ +14:29:44 + + +waiting on router queue for slot.... +14:29:49 ============================================================================ +14:29:49 Slot Id : <13> +14:29:49 Transaction Type : REQUEST +14:29:49 Received From : +14:29:49 ============================================================================ +14:29:49 FNo. Len. Field Value +14:29:49 ============================================================================ +14:29:49 [ 1] [ 4] [0800] +14:29:49 [ 7] [ 10] [0320072856] +14:29:49 [ 11] [ 6] [156797] +14:29:49 [ 70] [ 3] [301] +14:29:49 ============================================================================ +14:29:49 + + +waiting on router queue for slot.... +14:29:49 Sending to : +14:29:49 ============================================================================ +14:29:49 ============================================================================ +14:29:49 Slot Id : <13> +14:29:49 Transaction Type : RESPONSE +14:29:49 Received From : +14:29:49 ============================================================================ +14:29:49 FNo. Len. Field Value +14:29:49 ============================================================================ +14:29:49 [ 1] [ 4] [0810] +14:29:49 [ 7] [ 10] [0320072856] +14:29:49 [ 11] [ 6] [156797] +14:29:49 [ 39] [ 2] [00] +14:29:49 [ 70] [ 3] [301] +14:29:49 ============================================================================ +14:29:49 Calculate Source COMM Id = 2 +14:29:49 ============================================================================ +14:29:49 + + +waiting on router queue for slot.... +14:29:55 ============================================================================ +14:29:55 Slot Id : <12> +14:29:55 Transaction Type : REQUEST +14:29:55 Received From : +14:29:55 ============================================================================ +14:29:55 FNo. Len. Field Value +14:29:55 ============================================================================ +14:29:55 [ 1] [ 4] [0800] +14:29:55 [ 7] [ 10] [0320073742] +14:29:55 [ 11] [ 6] [078444] +14:29:55 [ 37] [ 12] [57914078444] +14:29:55 [ 70] [ 3] [301] +14:29:55 ============================================================================ +14:29:55 + + +waiting on router queue for slot.... +14:29:55 Sending to : +14:29:55 ============================================================================ +14:29:55 ============================================================================ +14:29:55 Slot Id : <12> +14:29:55 Transaction Type : RESPONSE +14:29:55 Received From : +14:29:55 ============================================================================ +14:29:55 FNo. Len. Field Value +14:29:55 ============================================================================ +14:29:55 [ 1] [ 4] [0810] +14:29:55 [ 7] [ 10] [0320073742] +14:29:55 [ 11] [ 6] [078444] +14:29:55 [ 37] [ 12] [579140784440] +14:29:55 [ 39] [ 2] [00] +14:29:55 [ 70] [ 3] [810] +14:29:55 ============================================================================ +14:29:55 Calculate Source COMM Id = 1 +14:29:55 ============================================================================ +14:29:55 + + +waiting on router queue for slot.... +14:29:55 ============================================================================ +14:29:55 Slot Id : <469> +14:29:55 Transaction Type : REQUEST +14:29:55 Received From : +14:29:55 ============================================================================ +14:29:55 FNo. Len. Field Value +14:29:55 ============================================================================ +14:29:55 [ 1] [ 4] [0200] +14:29:55 [ 2] [ 16] [6688990104937907] +14:29:55 [ 3] [ 6] [011000] +14:29:55 [ 4] [ 12] [000040000000] +14:29:55 [ 7] [ 10] [0320142951] +14:29:55 [ 11] [ 6] [770817] +14:29:55 [ 12] [ 6] [142951] +14:29:55 [ 13] [ 4] [0320] +14:29:55 [ 15] [ 4] [0320] +14:29:55 [ 18] [ 4] [6011] +14:29:55 [ 22] [ 3] [900] +14:29:55 [ 25] [ 2] [02] +14:29:55 [ 28] [ 9] [D00002000] +14:29:55 [ 32] [ 6] [621354] +14:29:55 [ 35] [ 37] [6688990104937907=43061231790723200000] +14:29:55 [ 37] [ 12] [507905200886] +14:29:55 [ 41] [ 8] [07001700] +14:29:55 [ 42] [ 15] [NATIVE ] +14:29:55 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:29:55 [ 49] [ 3] [418] +14:29:55 [ 52] [ 16] [7ED67FA67B31C8BF] +14:29:55 ============================================================================ +14:29:55 + + +waiting on router queue for slot.... +14:29:55 Sending to : +14:29:55 ============================================================================ +14:29:55 Sending to : +14:29:55 ============================================================================ +14:29:56 ============================================================================ +14:29:56 Slot Id : <469> +14:29:56 Transaction Type : REQUEST +14:29:56 Received From : +14:29:56 ============================================================================ +14:29:56 FNo. Len. Field Value +14:29:56 ============================================================================ +14:29:56 [ 1] [ 4] [0200] +14:29:56 [ 2] [ 16] [6688990104937907] +14:29:56 [ 3] [ 6] [011000] +14:29:56 [ 4] [ 12] [000040000000] +14:29:56 [ 7] [ 10] [0320142951] +14:29:56 [ 11] [ 6] [770817] +14:29:56 [ 12] [ 6] [142951] +14:29:56 [ 13] [ 4] [0320] +14:29:56 [ 15] [ 4] [0320] +14:29:56 [ 18] [ 4] [6011] +14:29:56 [ 22] [ 3] [900] +14:29:56 [ 25] [ 2] [02] +14:29:56 [ 28] [ 9] [D00002000] +14:29:56 [ 32] [ 6] [621354] +14:29:56 [ 35] [ 37] [6688990104937907=43061231790723200000] +14:29:56 [ 37] [ 12] [507905200886] +14:29:56 [ 41] [ 8] [07001700] +14:29:56 [ 42] [ 15] [NATIVE ] +14:29:56 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:29:56 [ 49] [ 3] [418] +14:29:56 [ 52] [ 16] [7ED67FA67B31C8BF] +14:29:56 ============================================================================ +14:29:56 + + +waiting on router queue for slot.... +14:29:56 Sending to : +14:29:56 ============================================================================ +14:29:56 ============================================================================ +14:29:56 Slot Id : <469> +14:29:56 Transaction Type : REQUEST +14:29:56 Received From : +14:29:56 ============================================================================ +14:29:56 FNo. Len. Field Value +14:29:56 ============================================================================ +14:29:56 [ 1] [ 4] [0200] +14:29:56 [ 2] [ 16] [6688990104937907] +14:29:56 [ 3] [ 6] [011000] +14:29:56 [ 4] [ 12] [000040000000] +14:29:56 [ 7] [ 10] [0320142951] +14:29:56 [ 11] [ 6] [770817] +14:29:56 [ 12] [ 6] [142951] +14:29:56 [ 13] [ 4] [0320] +14:29:56 [ 15] [ 4] [0320] +14:29:56 [ 18] [ 4] [6011] +14:29:56 [ 22] [ 3] [900] +14:29:56 [ 25] [ 2] [02] +14:29:56 [ 28] [ 9] [D00002000] +14:29:56 [ 32] [ 6] [621354] +14:29:56 [ 35] [ 37] [6688990104937907=43061231790723200000] +14:29:56 [ 37] [ 12] [507905200886] +14:29:56 [ 41] [ 8] [07001700] +14:29:56 [ 42] [ 15] [NATIVE ] +14:29:56 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:29:56 [ 49] [ 3] [418] +14:29:56 [ 52] [ 16] [74E71F92E2364F21] +14:29:56 ============================================================================ +14:29:56 + + +waiting on router queue for slot.... +14:29:56 Sending to : <4> +14:29:56 ============================================================================ +14:29:57 ============================================================================ +14:29:57 Slot Id : <469> +14:29:57 Transaction Type : RESPONSE +14:29:57 Received From : +14:29:57 ============================================================================ +14:29:57 FNo. Len. Field Value +14:29:57 ============================================================================ +14:29:57 [ 1] [ 4] [0210] +14:29:57 [ 2] [ 16] [6688990104937907] +14:29:57 [ 3] [ 6] [011000] +14:29:57 [ 4] [ 12] [000040000000] +14:29:57 [ 11] [ 6] [770817] +14:29:57 [ 12] [ 6] [142951] +14:29:57 [ 15] [ 4] [0320] +14:29:57 [ 18] [ 4] [6011] +14:29:57 [ 32] [ 6] [621354] +14:29:57 [ 35] [ 37] [6688990104937907=43061231790723200000] +14:29:57 [ 37] [ 12] [507905200886] +14:29:57 [ 38] [ 6] [390867] +14:29:57 [ 39] [ 2] [00] +14:29:57 [ 41] [ 8] [07001700] +14:29:57 [ 49] [ 3] [418] +14:29:57 [ 54] [ 20] [1002418C000018167098] +14:29:57 ============================================================================ +14:29:57 Sending to : +14:29:57 ============================================================================ +14:29:57 + + +waiting on router queue for slot.... +14:29:58 ============================================================================ +14:29:58 Slot Id : <469> +14:29:58 Transaction Type : RESPONSE +14:29:58 Received From : +14:29:58 ============================================================================ +14:29:58 FNo. Len. Field Value +14:29:58 ============================================================================ +14:29:58 [ 1] [ 4] [0210] +14:29:58 [ 2] [ 16] [6688990104937907] +14:29:58 [ 3] [ 6] [011000] +14:29:58 [ 4] [ 12] [000040000000] +14:29:58 [ 11] [ 6] [770817] +14:29:58 [ 12] [ 6] [142951] +14:29:58 [ 15] [ 4] [0320] +14:29:58 [ 18] [ 4] [6011] +14:29:58 [ 32] [ 6] [621354] +14:29:58 [ 35] [ 37] [6688990104937907=43061231790723200000] +14:29:58 [ 37] [ 12] [507905200886] +14:29:58 [ 38] [ 6] [390867] +14:29:58 [ 39] [ 2] [00] +14:29:58 [ 41] [ 8] [07001700] +14:29:58 [ 49] [ 3] [418] +14:29:58 [ 54] [ 20] [1002418C000018167098] +14:29:58 ============================================================================ +14:29:58 Calculate Source COMM Id = 0 +14:29:58 ============================================================================ +14:29:58 + + +waiting on router queue for slot.... +14:30:00 ============================================================================ +14:30:00 Slot Id : <22> +14:30:00 Transaction Type : REQUEST +14:30:00 Received From : +14:30:00 ============================================================================ +14:30:00 FNo. Len. Field Value +14:30:00 ============================================================================ +14:30:00 [ 1] [ 4] [0800] +14:30:00 [ 7] [ 10] [0320072907] +14:30:00 [ 11] [ 6] [156798] +14:30:00 [ 70] [ 3] [301] +14:30:00 ============================================================================ +14:30:00 + + +waiting on router queue for slot.... +14:30:00 Sending to : +14:30:00 ============================================================================ +14:30:00 ============================================================================ +14:30:00 Slot Id : <22> +14:30:00 Transaction Type : RESPONSE +14:30:00 Received From : +14:30:00 ============================================================================ +14:30:00 FNo. Len. Field Value +14:30:00 ============================================================================ +14:30:00 [ 1] [ 4] [0810] +14:30:00 [ 7] [ 10] [0320072907] +14:30:00 [ 11] [ 6] [156798] +14:30:00 [ 39] [ 2] [00] +14:30:00 [ 70] [ 3] [301] +14:30:00 ============================================================================ +14:30:00 Calculate Source COMM Id = 2 +14:30:00 ============================================================================ +14:30:00 + + +waiting on router queue for slot.... +14:30:01 ============================================================================ +14:30:01 Slot Id : <494> +14:30:01 Transaction Type : REQUEST +14:30:01 Received From : +14:30:01 ============================================================================ +14:30:01 FNo. Len. Field Value +14:30:01 ============================================================================ +14:30:01 [ 1] [ 4] [0200] +14:30:01 [ 2] [ 16] [6688990030018756] +14:30:01 [ 3] [ 6] [010000] +14:30:01 [ 4] [ 12] [000100000000] +14:30:01 [ 7] [ 10] [0320142956] +14:30:01 [ 11] [ 6] [770840] +14:30:01 [ 12] [ 6] [142956] +14:30:01 [ 13] [ 4] [0320] +14:30:01 [ 15] [ 4] [0320] +14:30:01 [ 18] [ 4] [6011] +14:30:01 [ 22] [ 3] [900] +14:30:01 [ 25] [ 2] [02] +14:30:01 [ 28] [ 9] [D00002000] +14:30:01 [ 32] [ 6] [621354] +14:30:01 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:30:01 [ 37] [ 12] [507904660746] +14:30:01 [ 41] [ 8] [17001100] +14:30:01 [ 42] [ 15] [NATIVE ] +14:30:01 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:30:01 [ 49] [ 3] [418] +14:30:01 [ 52] [ 16] [14CBE7654C6164F4] +14:30:01 ============================================================================ +14:30:01 + + +waiting on router queue for slot.... +14:30:01 Sending to : +14:30:01 ============================================================================ +14:30:01 Sending to : +14:30:01 ============================================================================ +14:30:01 ============================================================================ +14:30:01 Slot Id : <494> +14:30:01 Transaction Type : REQUEST +14:30:01 Received From : +14:30:01 ============================================================================ +14:30:01 FNo. Len. Field Value +14:30:01 ============================================================================ +14:30:01 [ 1] [ 4] [0200] +14:30:01 [ 2] [ 16] [6688990030018756] +14:30:01 [ 3] [ 6] [010000] +14:30:01 [ 4] [ 12] [000100000000] +14:30:01 [ 7] [ 10] [0320142956] +14:30:01 [ 11] [ 6] [770840] +14:30:01 [ 12] [ 6] [142956] +14:30:01 [ 13] [ 4] [0320] +14:30:01 [ 15] [ 4] [0320] +14:30:01 [ 18] [ 4] [6011] +14:30:01 [ 22] [ 3] [900] +14:30:01 [ 25] [ 2] [02] +14:30:01 [ 28] [ 9] [D00002000] +14:30:01 [ 32] [ 6] [621354] +14:30:01 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:30:01 [ 37] [ 12] [507904660746] +14:30:01 [ 41] [ 8] [17001100] +14:30:01 [ 42] [ 15] [NATIVE ] +14:30:01 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:30:01 [ 49] [ 3] [418] +14:30:01 [ 52] [ 16] [14CBE7654C6164F4] +14:30:01 ============================================================================ +14:30:01 + + +waiting on router queue for slot.... +14:30:01 Sending to : +14:30:01 ============================================================================ +14:30:01 ============================================================================ +14:30:01 Slot Id : <494> +14:30:01 Transaction Type : REQUEST +14:30:01 Received From : +14:30:01 ============================================================================ +14:30:01 FNo. Len. Field Value +14:30:01 ============================================================================ +14:30:01 [ 1] [ 4] [0200] +14:30:01 [ 2] [ 16] [6688990030018756] +14:30:01 [ 3] [ 6] [010000] +14:30:01 [ 4] [ 12] [000100000000] +14:30:01 [ 7] [ 10] [0320142956] +14:30:01 [ 11] [ 6] [770840] +14:30:01 [ 12] [ 6] [142956] +14:30:01 [ 13] [ 4] [0320] +14:30:01 [ 15] [ 4] [0320] +14:30:01 [ 18] [ 4] [6011] +14:30:01 [ 22] [ 3] [900] +14:30:01 [ 25] [ 2] [02] +14:30:01 [ 28] [ 9] [D00002000] +14:30:01 [ 32] [ 6] [621354] +14:30:01 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:30:01 [ 37] [ 12] [507904660746] +14:30:01 [ 41] [ 8] [17001100] +14:30:01 [ 42] [ 15] [NATIVE ] +14:30:01 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:30:01 [ 49] [ 3] [418] +14:30:01 [ 52] [ 16] [C170D77DCA82B481] +14:30:01 ============================================================================ +14:30:01 + + +waiting on router queue for slot.... +14:30:01 Sending to : <4> +14:30:01 ============================================================================ +14:30:02 ============================================================================ +14:30:02 Slot Id : <494> +14:30:02 Transaction Type : RESPONSE +14:30:02 Received From : +14:30:02 ============================================================================ +14:30:02 FNo. Len. Field Value +14:30:02 ============================================================================ +14:30:02 [ 1] [ 4] [0210] +14:30:02 [ 2] [ 16] [6688990030018756] +14:30:02 [ 3] [ 6] [010000] +14:30:02 [ 4] [ 12] [000100000000] +14:30:02 [ 11] [ 6] [770840] +14:30:02 [ 12] [ 6] [142956] +14:30:02 [ 15] [ 4] [0320] +14:30:02 [ 18] [ 4] [6011] +14:30:02 [ 32] [ 6] [621354] +14:30:02 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:30:02 [ 37] [ 12] [507904660746] +14:30:02 [ 38] [ 6] [739358] +14:30:02 [ 39] [ 2] [00] +14:30:02 [ 41] [ 8] [17001100] +14:30:02 [ 49] [ 3] [418] +14:30:02 [ 54] [ 20] [0002418C000319000000] +14:30:02 ============================================================================ +14:30:02 Sending to : +14:30:02 ============================================================================ +14:30:02 + + +waiting on router queue for slot.... +14:30:02 ============================================================================ +14:30:02 Slot Id : <17> +14:30:02 Transaction Type : REQUEST +14:30:02 Received From : +14:30:02 ============================================================================ +14:30:02 FNo. Len. Field Value +14:30:02 ============================================================================ +14:30:02 [ 1] [ 4] [0200] +14:30:02 [ 2] [ 16] [6688990040038836] +14:30:02 [ 3] [ 6] [301000] +14:30:02 [ 4] [ 12] [000000000000] +14:30:02 [ 7] [ 10] [0320142958] +14:30:02 [ 11] [ 6] [770849] +14:30:02 [ 12] [ 6] [142958] +14:30:02 [ 13] [ 4] [0320] +14:30:02 [ 15] [ 4] [0320] +14:30:02 [ 18] [ 4] [6011] +14:30:02 [ 22] [ 3] [900] +14:30:02 [ 25] [ 2] [02] +14:30:02 [ 28] [ 9] [D00000000] +14:30:02 [ 32] [ 6] [621354] +14:30:02 [ 35] [ 37] [6688990040038836=97111261972514900000] +14:30:02 [ 37] [ 12] [507902747750] +14:30:02 [ 41] [ 8] [01006800] +14:30:02 [ 42] [ 15] [NATIVE ] +14:30:02 [ 43] [ 40] [M-POINT MART SIHOM ChanthaboulyLAO] +14:30:02 [ 49] [ 3] [418] +14:30:02 [ 52] [ 16] [99272E2E49394CBA] +14:30:02 ============================================================================ +14:30:02 + + +waiting on router queue for slot.... +14:30:02 Sending to : +14:30:02 ============================================================================ +14:30:02 Sending to : +14:30:02 ============================================================================ +14:30:02 ============================================================================ +14:30:02 Slot Id : <17> +14:30:02 Transaction Type : REQUEST +14:30:02 Received From : +14:30:02 ============================================================================ +14:30:02 FNo. Len. Field Value +14:30:02 ============================================================================ +14:30:02 [ 1] [ 4] [0200] +14:30:02 [ 2] [ 16] [6688990040038836] +14:30:02 [ 3] [ 6] [301000] +14:30:02 [ 4] [ 12] [000000000000] +14:30:02 [ 7] [ 10] [0320142958] +14:30:02 [ 11] [ 6] [770849] +14:30:02 [ 12] [ 6] [142958] +14:30:02 [ 13] [ 4] [0320] +14:30:02 [ 15] [ 4] [0320] +14:30:02 [ 18] [ 4] [6011] +14:30:02 [ 22] [ 3] [900] +14:30:02 [ 25] [ 2] [02] +14:30:02 [ 28] [ 9] [D00000000] +14:30:02 [ 32] [ 6] [621354] +14:30:02 [ 35] [ 37] [6688990040038836=97111261972514900000] +14:30:02 [ 37] [ 12] [507902747750] +14:30:02 [ 41] [ 8] [01006800] +14:30:02 [ 42] [ 15] [NATIVE ] +14:30:02 [ 43] [ 40] [M-POINT MART SIHOM ChanthaboulyLAO] +14:30:02 [ 49] [ 3] [418] +14:30:02 [ 52] [ 16] [99272E2E49394CBA] +14:30:02 ============================================================================ +14:30:02 + + +waiting on router queue for slot.... +14:30:02 Sending to : +14:30:02 ============================================================================ +14:30:02 ============================================================================ +14:30:02 Slot Id : <17> +14:30:02 Transaction Type : REQUEST +14:30:02 Received From : +14:30:02 ============================================================================ +14:30:02 FNo. Len. Field Value +14:30:02 ============================================================================ +14:30:02 [ 1] [ 4] [0200] +14:30:02 [ 2] [ 16] [6688990040038836] +14:30:02 [ 3] [ 6] [301000] +14:30:02 [ 4] [ 12] [000000000000] +14:30:02 [ 7] [ 10] [0320142958] +14:30:02 [ 11] [ 6] [770849] +14:30:02 [ 12] [ 6] [142958] +14:30:02 [ 13] [ 4] [0320] +14:30:02 [ 15] [ 4] [0320] +14:30:02 [ 18] [ 4] [6011] +14:30:02 [ 22] [ 3] [900] +14:30:02 [ 25] [ 2] [02] +14:30:02 [ 28] [ 9] [D00000000] +14:30:02 [ 32] [ 6] [621354] +14:30:02 [ 35] [ 37] [6688990040038836=97111261972514900000] +14:30:02 [ 37] [ 12] [507902747750] +14:30:02 [ 41] [ 8] [01006800] +14:30:02 [ 42] [ 15] [NATIVE ] +14:30:02 [ 43] [ 40] [M-POINT MART SIHOM ChanthaboulyLAO] +14:30:02 [ 49] [ 3] [418] +14:30:02 [ 52] [ 16] [F1FF207CBBE52DDB] +14:30:02 ============================================================================ +14:30:02 + + +waiting on router queue for slot.... +14:30:02 Sending to : <4> +14:30:02 ============================================================================ +14:30:03 ============================================================================ +14:30:03 Slot Id : <17> +14:30:03 Transaction Type : RESPONSE +14:30:03 Received From : +14:30:03 ============================================================================ +14:30:03 FNo. Len. Field Value +14:30:03 ============================================================================ +14:30:03 [ 1] [ 4] [0210] +14:30:03 [ 2] [ 16] [6688990040038836] +14:30:03 [ 3] [ 6] [301000] +14:30:03 [ 4] [ 12] [000000000000] +14:30:03 [ 11] [ 6] [770849] +14:30:03 [ 12] [ 6] [142958] +14:30:03 [ 15] [ 4] [0320] +14:30:03 [ 18] [ 4] [6011] +14:30:03 [ 32] [ 6] [621354] +14:30:03 [ 35] [ 37] [6688990040038836=97111261972514900000] +14:30:03 [ 37] [ 12] [507902747750] +14:30:03 [ 38] [ 6] [236118] +14:30:03 [ 39] [ 2] [00] +14:30:03 [ 41] [ 8] [01006800] +14:30:03 [ 49] [ 3] [418] +14:30:03 [ 54] [ 20] [1002418C000210378701] +14:30:03 ============================================================================ +14:30:03 Sending to : +14:30:03 ============================================================================ +14:30:03 + + +waiting on router queue for slot.... +14:30:03 ============================================================================ +14:30:03 Slot Id : <494> +14:30:03 Transaction Type : RESPONSE +14:30:03 Received From : +14:30:03 ============================================================================ +14:30:03 FNo. Len. Field Value +14:30:03 ============================================================================ +14:30:03 [ 1] [ 4] [0210] +14:30:03 [ 2] [ 16] [6688990030018756] +14:30:03 [ 3] [ 6] [010000] +14:30:03 [ 4] [ 12] [000100000000] +14:30:03 [ 11] [ 6] [770840] +14:30:03 [ 12] [ 6] [142956] +14:30:03 [ 15] [ 4] [0320] +14:30:03 [ 18] [ 4] [6011] +14:30:03 [ 32] [ 6] [621354] +14:30:03 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:30:03 [ 37] [ 12] [507904660746] +14:30:03 [ 38] [ 6] [739358] +14:30:03 [ 39] [ 2] [00] +14:30:03 [ 41] [ 8] [17001100] +14:30:03 [ 49] [ 3] [418] +14:30:03 [ 54] [ 20] [0002418C000319000000] +14:30:03 ============================================================================ +14:30:03 Calculate Source COMM Id = 0 +14:30:03 ============================================================================ +14:30:03 + + +waiting on router queue for slot.... +14:30:05 ============================================================================ +14:30:05 Slot Id : <17> +14:30:05 Transaction Type : RESPONSE +14:30:05 Received From : +14:30:05 ============================================================================ +14:30:05 FNo. Len. Field Value +14:30:05 ============================================================================ +14:30:05 [ 1] [ 4] [0210] +14:30:05 [ 2] [ 16] [6688990040038836] +14:30:05 [ 3] [ 6] [301000] +14:30:05 [ 4] [ 12] [000000000000] +14:30:05 [ 11] [ 6] [770849] +14:30:05 [ 12] [ 6] [142958] +14:30:05 [ 15] [ 4] [0320] +14:30:05 [ 18] [ 4] [6011] +14:30:05 [ 32] [ 6] [621354] +14:30:05 [ 35] [ 37] [6688990040038836=97111261972514900000] +14:30:05 [ 37] [ 12] [507902747750] +14:30:05 [ 38] [ 6] [236118] +14:30:05 [ 39] [ 2] [00] +14:30:05 [ 41] [ 8] [01006800] +14:30:05 [ 49] [ 3] [418] +14:30:05 [ 54] [ 20] [1002418C000210378701] +14:30:05 ============================================================================ +14:30:05 Calculate Source COMM Id = 0 +14:30:05 ============================================================================ +14:30:05 + + +waiting on router queue for slot.... +14:30:11 ============================================================================ +14:30:11 Slot Id : <491> +14:30:11 Transaction Type : REQUEST +14:30:11 Received From : +14:30:11 ============================================================================ +14:30:11 FNo. Len. Field Value +14:30:11 ============================================================================ +14:30:11 [ 1] [ 4] [0800] +14:30:11 [ 7] [ 10] [0320072918] +14:30:11 [ 11] [ 6] [156799] +14:30:11 [ 70] [ 3] [301] +14:30:11 ============================================================================ +14:30:11 + + +waiting on router queue for slot.... +14:30:11 Sending to : +14:30:11 ============================================================================ +14:30:11 ============================================================================ +14:30:11 Slot Id : <491> +14:30:11 Transaction Type : RESPONSE +14:30:11 Received From : +14:30:11 ============================================================================ +14:30:11 FNo. Len. Field Value +14:30:11 ============================================================================ +14:30:11 [ 1] [ 4] [0810] +14:30:11 [ 7] [ 10] [0320072918] +14:30:11 [ 11] [ 6] [156799] +14:30:11 [ 39] [ 2] [00] +14:30:11 [ 70] [ 3] [301] +14:30:11 ============================================================================ +14:30:11 Calculate Source COMM Id = 2 +14:30:11 ============================================================================ +14:30:11 + + +waiting on router queue for slot.... +14:30:20 ============================================================================ +14:30:20 Slot Id : <499> +14:30:20 Transaction Type : REQUEST +14:30:20 Received From : +14:30:20 ============================================================================ +14:30:20 FNo. Len. Field Value +14:30:20 ============================================================================ +14:30:20 [ 1] [ 4] [0200] +14:30:20 [ 2] [ 16] [6213545000106058] +14:30:20 [ 3] [ 6] [010000] +14:30:20 [ 4] [ 12] [000010000000] +14:30:20 [ 7] [ 10] [0320072925] +14:30:20 [ 11] [ 6] [269666] +14:30:20 [ 12] [ 6] [142925] +14:30:20 [ 13] [ 4] [0320] +14:30:20 [ 14] [ 4] [4912] +14:30:20 [ 15] [ 4] [0320] +14:30:20 [ 18] [ 4] [6011] +14:30:20 [ 19] [ 3] [418] +14:30:20 [ 22] [ 3] [021] +14:30:20 [ 25] [ 2] [01] +14:30:20 [ 28] [ 9] [D00002000] +14:30:20 [ 32] [ 6] [180893] +14:30:20 [ 35] [ 32] [6213545000106058=491212010605542] +14:30:20 [ 37] [ 12] [507907269666] +14:30:20 [ 41] [ 8] [0243VTKS] +14:30:20 [ 42] [ 15] [999999 ] +14:30:20 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +14:30:20 [ 49] [ 3] [418] +14:30:20 [ 52] [ 16] [3135F27860FEC194] +14:30:20 ============================================================================ +14:30:20 + + +waiting on router queue for slot.... +14:30:20 Sending to : +14:30:20 ============================================================================ +14:30:20 Sending to : +14:30:20 ============================================================================ +14:30:21 ============================================================================ +14:30:21 Slot Id : <499> +14:30:21 Transaction Type : REQUEST +14:30:21 Received From : +14:30:21 ============================================================================ +14:30:21 FNo. Len. Field Value +14:30:21 ============================================================================ +14:30:21 [ 1] [ 4] [0200] +14:30:21 [ 2] [ 16] [6213545000106058] +14:30:21 [ 3] [ 6] [010000] +14:30:21 [ 4] [ 12] [000010000000] +14:30:21 [ 7] [ 10] [0320072925] +14:30:21 [ 11] [ 6] [269666] +14:30:21 [ 12] [ 6] [142925] +14:30:21 [ 13] [ 4] [0320] +14:30:21 [ 14] [ 4] [4912] +14:30:21 [ 15] [ 4] [0320] +14:30:21 [ 18] [ 4] [6011] +14:30:21 [ 19] [ 3] [418] +14:30:21 [ 22] [ 3] [021] +14:30:21 [ 25] [ 2] [01] +14:30:21 [ 28] [ 9] [D00002000] +14:30:21 [ 32] [ 6] [180893] +14:30:21 [ 35] [ 32] [6213545000106058=491212010605542] +14:30:21 [ 37] [ 12] [507907269666] +14:30:21 [ 41] [ 8] [0243VTKS] +14:30:21 [ 42] [ 15] [999999 ] +14:30:21 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +14:30:21 [ 49] [ 3] [418] +14:30:21 [ 52] [ 16] [3135F27860FEC194] +14:30:21 ============================================================================ +14:30:21 + + +waiting on router queue for slot.... +14:30:21 Sending to : +14:30:21 ============================================================================ +14:30:21 ============================================================================ +14:30:21 Slot Id : <499> +14:30:21 Transaction Type : REQUEST +14:30:21 Received From : +14:30:21 ============================================================================ +14:30:21 FNo. Len. Field Value +14:30:21 ============================================================================ +14:30:21 [ 1] [ 4] [0200] +14:30:21 [ 2] [ 16] [6213545000106058] +14:30:21 [ 3] [ 6] [010000] +14:30:21 [ 4] [ 12] [000010000000] +14:30:21 [ 7] [ 10] [0320072925] +14:30:21 [ 11] [ 6] [269666] +14:30:21 [ 12] [ 6] [142925] +14:30:21 [ 13] [ 4] [0320] +14:30:21 [ 14] [ 4] [4912] +14:30:21 [ 15] [ 4] [0320] +14:30:21 [ 18] [ 4] [6011] +14:30:21 [ 19] [ 3] [418] +14:30:21 [ 22] [ 3] [021] +14:30:21 [ 25] [ 2] [01] +14:30:21 [ 28] [ 9] [D00002000] +14:30:21 [ 32] [ 6] [180893] +14:30:21 [ 35] [ 32] [6213545000106058=491212010605542] +14:30:21 [ 37] [ 12] [507907269666] +14:30:21 [ 41] [ 8] [0243VTKS] +14:30:21 [ 42] [ 15] [999999 ] +14:30:21 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +14:30:21 [ 49] [ 3] [418] +14:30:21 [ 52] [ 16] [EB78E3F88E4497EF] +14:30:21 ============================================================================ +14:30:21 + + +waiting on router queue for slot.... +14:30:21 Sending to : <0> +14:30:21 ============================================================================ +14:30:21 ============================================================================ +14:30:21 Slot Id : <10> +14:30:21 Transaction Type : REQUEST +14:30:21 Received From : +14:30:21 ============================================================================ +14:30:21 FNo. Len. Field Value +14:30:21 ============================================================================ +14:30:21 [ 1] [ 4] [0800] +14:30:21 [ 7] [ 10] [0320072929] +14:30:21 [ 11] [ 6] [156800] +14:30:21 [ 70] [ 3] [301] +14:30:21 ============================================================================ +14:30:21 + + +waiting on router queue for slot.... +14:30:21 Sending to : +14:30:21 ============================================================================ +14:30:21 ============================================================================ +14:30:21 Slot Id : <10> +14:30:21 Transaction Type : RESPONSE +14:30:21 Received From : +14:30:21 ============================================================================ +14:30:21 FNo. Len. Field Value +14:30:21 ============================================================================ +14:30:21 [ 1] [ 4] [0810] +14:30:21 [ 7] [ 10] [0320072929] +14:30:21 [ 11] [ 6] [156800] +14:30:21 [ 39] [ 2] [00] +14:30:21 [ 70] [ 3] [301] +14:30:21 ============================================================================ +14:30:21 Calculate Source COMM Id = 2 +14:30:21 ============================================================================ +14:30:21 + + +waiting on router queue for slot.... +14:30:21 ============================================================================ +14:30:21 Slot Id : <499> +14:30:21 Transaction Type : RESPONSE +14:30:21 Received From : +14:30:21 ============================================================================ +14:30:21 FNo. Len. Field Value +14:30:21 ============================================================================ +14:30:21 [ 1] [ 4] [0210] +14:30:21 [ 2] [ 16] [6213545000106058] +14:30:21 [ 3] [ 6] [010000] +14:30:21 [ 4] [ 12] [000010000000] +14:30:21 [ 7] [ 10] [0320072925] +14:30:21 [ 11] [ 6] [269666] +14:30:21 [ 12] [ 6] [142925] +14:30:21 [ 13] [ 4] [0320] +14:30:21 [ 15] [ 4] [0320] +14:30:21 [ 18] [ 4] [6011] +14:30:21 [ 19] [ 3] [418] +14:30:21 [ 32] [ 6] [180893] +14:30:21 [ 35] [ 32] [6213545000106058=491212010605542] +14:30:21 [ 37] [ 12] [507907269666] +14:30:21 [ 38] [ 6] [600844] +14:30:21 [ 39] [ 2] [00] +14:30:21 [ 41] [ 8] [0243VTKS] +14:30:21 [ 49] [ 3] [418] +14:30:21 [ 54] [ 40] [0001418C0001812901600002418C000181290160] +14:30:21 ============================================================================ +14:30:21 Sending to : +14:30:21 ============================================================================ +14:30:21 + + +waiting on router queue for slot.... +14:30:23 ============================================================================ +14:30:23 Slot Id : <499> +14:30:23 Transaction Type : RESPONSE +14:30:23 Received From : +14:30:23 ============================================================================ +14:30:23 FNo. Len. Field Value +14:30:23 ============================================================================ +14:30:23 [ 1] [ 4] [0210] +14:30:23 [ 2] [ 16] [6213545000106058] +14:30:23 [ 3] [ 6] [010000] +14:30:23 [ 4] [ 12] [000010000000] +14:30:23 [ 7] [ 10] [0320072925] +14:30:23 [ 11] [ 6] [269666] +14:30:23 [ 12] [ 6] [142925] +14:30:23 [ 13] [ 4] [0320] +14:30:23 [ 15] [ 4] [0320] +14:30:23 [ 18] [ 4] [6011] +14:30:23 [ 19] [ 3] [418] +14:30:23 [ 32] [ 6] [180893] +14:30:23 [ 35] [ 32] [6213545000106058=491212010605542] +14:30:23 [ 37] [ 12] [507907269666] +14:30:23 [ 38] [ 6] [600844] +14:30:23 [ 39] [ 2] [00] +14:30:23 [ 41] [ 8] [0243VTKS] +14:30:23 [ 49] [ 3] [418] +14:30:23 [ 54] [ 40] [0001418C0001812901600002418C000181290160] +14:30:23 ============================================================================ +14:30:23 Calculate Source COMM Id = 2 +14:30:23 ============================================================================ +14:30:23 + + +waiting on router queue for slot.... +14:30:34 ============================================================================ +14:30:34 Slot Id : <481> +14:30:34 Transaction Type : REQUEST +14:30:34 Received From : +14:30:34 ============================================================================ +14:30:34 FNo. Len. Field Value +14:30:34 ============================================================================ +14:30:34 [ 1] [ 4] [0200] +14:30:34 [ 2] [ 16] [6688990601482308] +14:30:34 [ 3] [ 6] [301000] +14:30:34 [ 4] [ 12] [000000000000] +14:30:34 [ 7] [ 10] [0320143029] +14:30:34 [ 11] [ 6] [770965] +14:30:34 [ 12] [ 6] [143029] +14:30:34 [ 13] [ 4] [0320] +14:30:34 [ 15] [ 4] [0320] +14:30:34 [ 18] [ 4] [6011] +14:30:34 [ 22] [ 3] [900] +14:30:34 [ 25] [ 2] [02] +14:30:34 [ 28] [ 9] [D00000000] +14:30:34 [ 32] [ 6] [621354] +14:30:34 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:30:34 [ 37] [ 12] [507904153950] +14:30:34 [ 41] [ 8] [20001000] +14:30:34 [ 42] [ 15] [NATIVE ] +14:30:34 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:30:34 [ 49] [ 3] [418] +14:30:34 [ 52] [ 16] [465C751FB1533BE4] +14:30:34 ============================================================================ +14:30:34 + + +waiting on router queue for slot.... +14:30:34 Sending to : +14:30:34 ============================================================================ +14:30:34 Sending to : +14:30:34 ============================================================================ +14:30:34 ============================================================================ +14:30:34 Slot Id : <481> +14:30:34 Transaction Type : REQUEST +14:30:34 Received From : +14:30:34 ============================================================================ +14:30:34 FNo. Len. Field Value +14:30:34 ============================================================================ +14:30:34 [ 1] [ 4] [0200] +14:30:34 [ 2] [ 16] [6688990601482308] +14:30:34 [ 3] [ 6] [301000] +14:30:34 [ 4] [ 12] [000000000000] +14:30:34 [ 7] [ 10] [0320143029] +14:30:34 [ 11] [ 6] [770965] +14:30:34 [ 12] [ 6] [143029] +14:30:34 [ 13] [ 4] [0320] +14:30:34 [ 15] [ 4] [0320] +14:30:34 [ 18] [ 4] [6011] +14:30:34 [ 22] [ 3] [900] +14:30:34 [ 25] [ 2] [02] +14:30:34 [ 28] [ 9] [D00000000] +14:30:34 [ 32] [ 6] [621354] +14:30:34 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:30:34 [ 37] [ 12] [507904153950] +14:30:34 [ 41] [ 8] [20001000] +14:30:34 [ 42] [ 15] [NATIVE ] +14:30:34 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:30:34 [ 49] [ 3] [418] +14:30:34 [ 52] [ 16] [465C751FB1533BE4] +14:30:34 ============================================================================ +14:30:34 + + +waiting on router queue for slot.... +14:30:34 Sending to : +14:30:34 ============================================================================ +14:30:34 ============================================================================ +14:30:34 Slot Id : <481> +14:30:34 Transaction Type : REQUEST +14:30:34 Received From : +14:30:34 ============================================================================ +14:30:34 FNo. Len. Field Value +14:30:34 ============================================================================ +14:30:34 [ 1] [ 4] [0200] +14:30:34 [ 2] [ 16] [6688990601482308] +14:30:34 [ 3] [ 6] [301000] +14:30:34 [ 4] [ 12] [000000000000] +14:30:34 [ 7] [ 10] [0320143029] +14:30:34 [ 11] [ 6] [770965] +14:30:34 [ 12] [ 6] [143029] +14:30:34 [ 13] [ 4] [0320] +14:30:34 [ 15] [ 4] [0320] +14:30:34 [ 18] [ 4] [6011] +14:30:34 [ 22] [ 3] [900] +14:30:34 [ 25] [ 2] [02] +14:30:34 [ 28] [ 9] [D00000000] +14:30:34 [ 32] [ 6] [621354] +14:30:34 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:30:34 [ 37] [ 12] [507904153950] +14:30:34 [ 41] [ 8] [20001000] +14:30:34 [ 42] [ 15] [NATIVE ] +14:30:34 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:30:34 [ 49] [ 3] [418] +14:30:34 [ 52] [ 16] [53BC927BCF4CBE07] +14:30:34 ============================================================================ +14:30:34 + + +waiting on router queue for slot.... +14:30:34 Sending to : <4> +14:30:34 ============================================================================ +14:30:35 ============================================================================ +14:30:35 Slot Id : <31> +14:30:35 Transaction Type : REQUEST +14:30:35 Received From : +14:30:35 ============================================================================ +14:30:35 FNo. Len. Field Value +14:30:35 ============================================================================ +14:30:35 [ 1] [ 4] [0200] +14:30:35 [ 2] [ 16] [6688990102133707] +14:30:35 [ 3] [ 6] [010000] +14:30:35 [ 4] [ 12] [000020000000] +14:30:35 [ 7] [ 10] [0320143030] +14:30:35 [ 11] [ 6] [770969] +14:30:35 [ 12] [ 6] [143030] +14:30:35 [ 13] [ 4] [0320] +14:30:35 [ 15] [ 4] [0320] +14:30:35 [ 18] [ 4] [6011] +14:30:35 [ 22] [ 3] [900] +14:30:35 [ 25] [ 2] [02] +14:30:35 [ 28] [ 9] [D00002000] +14:30:35 [ 32] [ 6] [621354] +14:30:35 [ 35] [ 37] [6688990102133707=42071231370759000000] +14:30:35 [ 37] [ 12] [507903856705] +14:30:35 [ 41] [ 8] [01010100] +14:30:35 [ 42] [ 15] [NATIVE ] +14:30:35 [ 43] [ 40] [Domestic Airport SikhottabongLAO] +14:30:35 [ 49] [ 3] [418] +14:30:35 [ 52] [ 16] [0A15F8A2607D1E9F] +14:30:35 ============================================================================ +14:30:35 + + +waiting on router queue for slot.... +14:30:35 Sending to : +14:30:35 ============================================================================ +14:30:35 Sending to : +14:30:35 ============================================================================ +14:30:35 ============================================================================ +14:30:35 Slot Id : <481> +14:30:35 Transaction Type : RESPONSE +14:30:35 Received From : +14:30:35 ============================================================================ +14:30:35 FNo. Len. Field Value +14:30:35 ============================================================================ +14:30:35 [ 1] [ 4] [0210] +14:30:35 [ 2] [ 16] [6688990601482308] +14:30:35 [ 3] [ 6] [301000] +14:30:35 [ 4] [ 12] [000000000000] +14:30:35 [ 11] [ 6] [770965] +14:30:35 [ 12] [ 6] [143029] +14:30:35 [ 15] [ 4] [0320] +14:30:35 [ 18] [ 4] [6011] +14:30:35 [ 32] [ 6] [621354] +14:30:35 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:30:35 [ 37] [ 12] [507904153950] +14:30:35 [ 38] [ 6] [917431] +14:30:35 [ 39] [ 2] [00] +14:30:35 [ 41] [ 8] [20001000] +14:30:35 [ 49] [ 3] [418] +14:30:35 [ 54] [ 20] [1002418C000093951125] +14:30:35 ============================================================================ +14:30:35 Sending to : +14:30:35 ============================================================================ +14:30:35 + + +waiting on router queue for slot.... +14:30:35 ============================================================================ +14:30:35 Slot Id : <31> +14:30:35 Transaction Type : REQUEST +14:30:35 Received From : +14:30:35 ============================================================================ +14:30:35 FNo. Len. Field Value +14:30:35 ============================================================================ +14:30:35 [ 1] [ 4] [0200] +14:30:35 [ 2] [ 16] [6688990102133707] +14:30:35 [ 3] [ 6] [010000] +14:30:35 [ 4] [ 12] [000020000000] +14:30:35 [ 7] [ 10] [0320143030] +14:30:35 [ 11] [ 6] [770969] +14:30:35 [ 12] [ 6] [143030] +14:30:35 [ 13] [ 4] [0320] +14:30:35 [ 15] [ 4] [0320] +14:30:35 [ 18] [ 4] [6011] +14:30:35 [ 22] [ 3] [900] +14:30:35 [ 25] [ 2] [02] +14:30:35 [ 28] [ 9] [D00002000] +14:30:35 [ 32] [ 6] [621354] +14:30:35 [ 35] [ 37] [6688990102133707=42071231370759000000] +14:30:35 [ 37] [ 12] [507903856705] +14:30:35 [ 41] [ 8] [01010100] +14:30:35 [ 42] [ 15] [NATIVE ] +14:30:35 [ 43] [ 40] [Domestic Airport SikhottabongLAO] +14:30:35 [ 49] [ 3] [418] +14:30:35 [ 52] [ 16] [0A15F8A2607D1E9F] +14:30:35 ============================================================================ +14:30:35 + + +waiting on router queue for slot.... +14:30:35 Sending to : +14:30:35 ============================================================================ +14:30:35 ============================================================================ +14:30:35 Slot Id : <31> +14:30:35 Transaction Type : REQUEST +14:30:35 Received From : +14:30:35 ============================================================================ +14:30:35 FNo. Len. Field Value +14:30:35 ============================================================================ +14:30:35 [ 1] [ 4] [0200] +14:30:35 [ 2] [ 16] [6688990102133707] +14:30:35 [ 3] [ 6] [010000] +14:30:35 [ 4] [ 12] [000020000000] +14:30:35 [ 7] [ 10] [0320143030] +14:30:35 [ 11] [ 6] [770969] +14:30:35 [ 12] [ 6] [143030] +14:30:35 [ 13] [ 4] [0320] +14:30:35 [ 15] [ 4] [0320] +14:30:35 [ 18] [ 4] [6011] +14:30:35 [ 22] [ 3] [900] +14:30:35 [ 25] [ 2] [02] +14:30:35 [ 28] [ 9] [D00002000] +14:30:35 [ 32] [ 6] [621354] +14:30:35 [ 35] [ 37] [6688990102133707=42071231370759000000] +14:30:35 [ 37] [ 12] [507903856705] +14:30:35 [ 41] [ 8] [01010100] +14:30:35 [ 42] [ 15] [NATIVE ] +14:30:35 [ 43] [ 40] [Domestic Airport SikhottabongLAO] +14:30:35 [ 49] [ 3] [418] +14:30:35 [ 52] [ 16] [25CA25D88D074841] +14:30:35 ============================================================================ +14:30:35 + + +waiting on router queue for slot.... +14:30:35 Sending to : <4> +14:30:35 ============================================================================ +14:30:36 ============================================================================ +14:30:36 Slot Id : <31> +14:30:36 Transaction Type : RESPONSE +14:30:36 Received From : +14:30:36 ============================================================================ +14:30:36 FNo. Len. Field Value +14:30:36 ============================================================================ +14:30:36 [ 1] [ 4] [0210] +14:30:36 [ 2] [ 16] [6688990102133707] +14:30:36 [ 3] [ 6] [010000] +14:30:36 [ 4] [ 12] [000020000000] +14:30:36 [ 11] [ 6] [770969] +14:30:36 [ 12] [ 6] [143030] +14:30:36 [ 15] [ 4] [0320] +14:30:36 [ 18] [ 4] [6011] +14:30:36 [ 32] [ 6] [621354] +14:30:36 [ 35] [ 37] [6688990102133707=42071231370759000000] +14:30:36 [ 37] [ 12] [507903856705] +14:30:36 [ 38] [ 6] [915246] +14:30:36 [ 39] [ 2] [00] +14:30:36 [ 41] [ 8] [01010100] +14:30:36 [ 49] [ 3] [418] +14:30:36 [ 54] [ 20] [0002418C000218805540] +14:30:36 ============================================================================ +14:30:36 Sending to : +14:30:36 ============================================================================ +14:30:36 + + +waiting on router queue for slot.... +14:30:36 ============================================================================ +14:30:36 Slot Id : <481> +14:30:36 Transaction Type : RESPONSE +14:30:36 Received From : +14:30:36 ============================================================================ +14:30:36 FNo. Len. Field Value +14:30:36 ============================================================================ +14:30:36 [ 1] [ 4] [0210] +14:30:36 [ 2] [ 16] [6688990601482308] +14:30:36 [ 3] [ 6] [301000] +14:30:36 [ 4] [ 12] [000000000000] +14:30:36 [ 11] [ 6] [770965] +14:30:36 [ 12] [ 6] [143029] +14:30:36 [ 15] [ 4] [0320] +14:30:36 [ 18] [ 4] [6011] +14:30:36 [ 32] [ 6] [621354] +14:30:36 [ 35] [ 37] [6688990601482308=41090061230899400000] +14:30:36 [ 37] [ 12] [507904153950] +14:30:36 [ 38] [ 6] [917431] +14:30:36 [ 39] [ 2] [00] +14:30:36 [ 41] [ 8] [20001000] +14:30:36 [ 49] [ 3] [418] +14:30:36 [ 54] [ 20] [1002418C000093951125] +14:30:36 ============================================================================ +14:30:36 Calculate Source COMM Id = 0 +14:30:36 ============================================================================ +14:30:36 + + +waiting on router queue for slot.... +14:30:38 ============================================================================ +14:30:38 Slot Id : <31> +14:30:38 Transaction Type : RESPONSE +14:30:38 Received From : +14:30:38 ============================================================================ +14:30:38 FNo. Len. Field Value +14:30:38 ============================================================================ +14:30:38 [ 1] [ 4] [0210] +14:30:38 [ 2] [ 16] [6688990102133707] +14:30:38 [ 3] [ 6] [010000] +14:30:38 [ 4] [ 12] [000020000000] +14:30:38 [ 11] [ 6] [770969] +14:30:38 [ 12] [ 6] [143030] +14:30:38 [ 15] [ 4] [0320] +14:30:38 [ 18] [ 4] [6011] +14:30:38 [ 32] [ 6] [621354] +14:30:38 [ 35] [ 37] [6688990102133707=42071231370759000000] +14:30:38 [ 37] [ 12] [507903856705] +14:30:38 [ 38] [ 6] [915246] +14:30:38 [ 39] [ 2] [00] +14:30:38 [ 41] [ 8] [01010100] +14:30:38 [ 49] [ 3] [418] +14:30:38 [ 54] [ 20] [0002418C000218805540] +14:30:38 ============================================================================ +14:30:38 Calculate Source COMM Id = 0 +14:30:38 ============================================================================ +14:30:38 + + +waiting on router queue for slot.... +14:30:38 ============================================================================ +14:30:38 Slot Id : <29> +14:30:38 Transaction Type : REQUEST +14:30:38 Received From : +14:30:38 ============================================================================ +14:30:38 FNo. Len. Field Value +14:30:38 ============================================================================ +14:30:38 [ 1] [ 4] [0800] +14:30:38 [ 7] [ 10] [0320072945] +14:30:38 [ 11] [ 6] [156801] +14:30:38 [ 70] [ 3] [301] +14:30:38 ============================================================================ +14:30:38 + + +waiting on router queue for slot.... +14:30:38 Sending to : +14:30:38 ============================================================================ +14:30:38 ============================================================================ +14:30:38 Slot Id : <29> +14:30:38 Transaction Type : RESPONSE +14:30:38 Received From : +14:30:38 ============================================================================ +14:30:38 FNo. Len. Field Value +14:30:38 ============================================================================ +14:30:38 [ 1] [ 4] [0810] +14:30:38 [ 7] [ 10] [0320072945] +14:30:38 [ 11] [ 6] [156801] +14:30:38 [ 39] [ 2] [00] +14:30:38 [ 70] [ 3] [301] +14:30:38 ============================================================================ +14:30:38 Calculate Source COMM Id = 2 +14:30:38 ============================================================================ +14:30:38 + + +waiting on router queue for slot.... +14:30:42 ============================================================================ +14:30:42 Slot Id : <23> +14:30:42 Transaction Type : REQUEST +14:30:42 Received From : +14:30:42 ============================================================================ +14:30:42 FNo. Len. Field Value +14:30:42 ============================================================================ +14:30:42 [ 1] [ 4] [0800] +14:30:42 [ 2] [ 5] [02531] +14:30:42 [ 3] [ 6] [579148] +14:30:42 [ 7] [ 10] [0320073042] +14:30:42 [ 11] [ 6] [807254] +14:30:42 [ 15] [ 10] [0320073042] +14:30:42 [ 37] [ 11] [57914807254] +14:30:42 [ 70] [ 3] [001] +14:30:42 ============================================================================ +14:30:42 + + +waiting on router queue for slot.... +14:30:42 ============================================================================ +14:30:42 Slot Id : <23> +14:30:42 Transaction Type : RESPONSE +14:30:42 Received From : +14:30:42 ============================================================================ +14:30:42 FNo. Len. Field Value +14:30:42 ============================================================================ +14:30:42 [ 1] [ 4] [0810] +14:30:42 [ 7] [ 10] [0320073042] +14:30:42 [ 11] [ 6] [807254] +14:30:42 [ 15] [ 4] [0320] +14:30:42 [ 37] [ 12] [57914807254] +14:30:42 [ 39] [ 2] [00] +14:30:42 [ 70] [ 3] [001] +14:30:42 ============================================================================ +14:30:42 Sending to : +14:30:42 ============================================================================ +14:30:42 + + +waiting on router queue for slot.... +14:30:44 ============================================================================ +14:30:44 Slot Id : <3> +14:30:44 Transaction Type : REQUEST +14:30:44 Received From : +14:30:44 ============================================================================ +14:30:44 FNo. Len. Field Value +14:30:44 ============================================================================ +14:30:44 [ 1] [ 4] [0200] +14:30:44 [ 2] [ 16] [6688990106324609] +14:30:44 [ 3] [ 6] [011000] +14:30:44 [ 4] [ 12] [000100000000] +14:30:44 [ 7] [ 10] [0320143039] +14:30:44 [ 11] [ 6] [771006] +14:30:44 [ 12] [ 6] [143039] +14:30:44 [ 13] [ 4] [0320] +14:30:44 [ 15] [ 4] [0320] +14:30:44 [ 18] [ 4] [6011] +14:30:44 [ 22] [ 3] [900] +14:30:44 [ 25] [ 2] [02] +14:30:44 [ 28] [ 9] [D00002000] +14:30:44 [ 32] [ 6] [621354] +14:30:44 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:30:44 [ 37] [ 12] [507904645094] +14:30:44 [ 41] [ 8] [17000900] +14:30:44 [ 42] [ 15] [NATIVE ] +14:30:44 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:30:44 [ 49] [ 3] [418] +14:30:44 [ 52] [ 16] [0CCDAADC019EAFE1] +14:30:44 ============================================================================ +14:30:44 + + +waiting on router queue for slot.... +14:30:44 Sending to : +14:30:44 ============================================================================ +14:30:44 Sending to : +14:30:44 ============================================================================ +14:30:44 ============================================================================ +14:30:44 Slot Id : <3> +14:30:44 Transaction Type : REQUEST +14:30:44 Received From : +14:30:44 ============================================================================ +14:30:44 FNo. Len. Field Value +14:30:44 ============================================================================ +14:30:44 [ 1] [ 4] [0200] +14:30:44 [ 2] [ 16] [6688990106324609] +14:30:44 [ 3] [ 6] [011000] +14:30:44 [ 4] [ 12] [000100000000] +14:30:44 [ 7] [ 10] [0320143039] +14:30:44 [ 11] [ 6] [771006] +14:30:44 [ 12] [ 6] [143039] +14:30:44 [ 13] [ 4] [0320] +14:30:44 [ 15] [ 4] [0320] +14:30:44 [ 18] [ 4] [6011] +14:30:44 [ 22] [ 3] [900] +14:30:44 [ 25] [ 2] [02] +14:30:44 [ 28] [ 9] [D00002000] +14:30:44 [ 32] [ 6] [621354] +14:30:44 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:30:44 [ 37] [ 12] [507904645094] +14:30:44 [ 41] [ 8] [17000900] +14:30:44 [ 42] [ 15] [NATIVE ] +14:30:44 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:30:44 [ 49] [ 3] [418] +14:30:44 [ 52] [ 16] [0CCDAADC019EAFE1] +14:30:44 ============================================================================ +14:30:44 + + +waiting on router queue for slot.... +14:30:44 Sending to : +14:30:44 ============================================================================ +14:30:44 ============================================================================ +14:30:44 Slot Id : <3> +14:30:44 Transaction Type : REQUEST +14:30:44 Received From : +14:30:44 ============================================================================ +14:30:44 FNo. Len. Field Value +14:30:44 ============================================================================ +14:30:44 [ 1] [ 4] [0200] +14:30:44 [ 2] [ 16] [6688990106324609] +14:30:44 [ 3] [ 6] [011000] +14:30:44 [ 4] [ 12] [000100000000] +14:30:44 [ 7] [ 10] [0320143039] +14:30:44 [ 11] [ 6] [771006] +14:30:44 [ 12] [ 6] [143039] +14:30:44 [ 13] [ 4] [0320] +14:30:44 [ 15] [ 4] [0320] +14:30:44 [ 18] [ 4] [6011] +14:30:44 [ 22] [ 3] [900] +14:30:44 [ 25] [ 2] [02] +14:30:44 [ 28] [ 9] [D00002000] +14:30:44 [ 32] [ 6] [621354] +14:30:44 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:30:44 [ 37] [ 12] [507904645094] +14:30:44 [ 41] [ 8] [17000900] +14:30:44 [ 42] [ 15] [NATIVE ] +14:30:44 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:30:44 [ 49] [ 3] [418] +14:30:44 [ 52] [ 16] [F4C3CE7967A18FE7] +14:30:44 ============================================================================ +14:30:44 + + +waiting on router queue for slot.... +14:30:44 Sending to : <4> +14:30:44 ============================================================================ +14:30:45 ============================================================================ +14:30:45 Slot Id : <3> +14:30:45 Transaction Type : RESPONSE +14:30:45 Received From : +14:30:45 ============================================================================ +14:30:45 FNo. Len. Field Value +14:30:45 ============================================================================ +14:30:45 [ 1] [ 4] [0210] +14:30:45 [ 2] [ 16] [6688990106324609] +14:30:45 [ 3] [ 6] [011000] +14:30:45 [ 4] [ 12] [000100000000] +14:30:45 [ 11] [ 6] [771006] +14:30:45 [ 12] [ 6] [143039] +14:30:45 [ 15] [ 4] [0320] +14:30:45 [ 18] [ 4] [6011] +14:30:45 [ 32] [ 6] [621354] +14:30:45 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:30:45 [ 37] [ 12] [507904645094] +14:30:45 [ 38] [ 6] [749018] +14:30:45 [ 39] [ 2] [00] +14:30:45 [ 41] [ 8] [17000900] +14:30:45 [ 49] [ 3] [418] +14:30:45 [ 54] [ 20] [1002418C000196504864] +14:30:45 ============================================================================ +14:30:45 Sending to : +14:30:45 ============================================================================ +14:30:45 + + +waiting on router queue for slot.... +14:30:47 ============================================================================ +14:30:47 Slot Id : <3> +14:30:47 Transaction Type : RESPONSE +14:30:47 Received From : +14:30:47 ============================================================================ +14:30:47 FNo. Len. Field Value +14:30:47 ============================================================================ +14:30:47 [ 1] [ 4] [0210] +14:30:47 [ 2] [ 16] [6688990106324609] +14:30:47 [ 3] [ 6] [011000] +14:30:47 [ 4] [ 12] [000100000000] +14:30:47 [ 11] [ 6] [771006] +14:30:47 [ 12] [ 6] [143039] +14:30:47 [ 15] [ 4] [0320] +14:30:47 [ 18] [ 4] [6011] +14:30:47 [ 32] [ 6] [621354] +14:30:47 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:30:47 [ 37] [ 12] [507904645094] +14:30:47 [ 38] [ 6] [749018] +14:30:47 [ 39] [ 2] [00] +14:30:47 [ 41] [ 8] [17000900] +14:30:47 [ 49] [ 3] [418] +14:30:47 [ 54] [ 20] [1002418C000196504864] +14:30:47 ============================================================================ +14:30:47 Calculate Source COMM Id = 0 +14:30:47 ============================================================================ +14:30:47 + + +waiting on router queue for slot.... +14:30:49 ============================================================================ +14:30:49 Slot Id : <11> +14:30:49 Transaction Type : REQUEST +14:30:49 Received From : +14:30:49 ============================================================================ +14:30:49 FNo. Len. Field Value +14:30:49 ============================================================================ +14:30:49 [ 1] [ 4] [0800] +14:30:49 [ 7] [ 10] [0320214238] +14:30:49 [ 11] [ 6] [144238] +14:30:49 [ 37] [ 12] [57914144238] +14:30:49 [ 70] [ 3] [301] +14:30:49 ============================================================================ +14:30:49 + + +waiting on router queue for slot.... +14:30:49 Sending to : +14:30:49 ============================================================================ +14:30:49 ============================================================================ +14:30:49 Slot Id : <11> +14:30:49 Transaction Type : RESPONSE +14:30:49 Received From : +14:30:49 ============================================================================ +14:30:49 FNo. Len. Field Value +14:30:49 ============================================================================ +14:30:49 [ 1] [ 4] [0810] +14:30:49 [ 7] [ 10] [0320214238] +14:30:49 [ 11] [ 6] [144238] +14:30:49 [ 37] [ 12] [579141442380] +14:30:49 [ 39] [ 2] [00] +14:30:49 [ 70] [ 3] [810] +14:30:49 ============================================================================ +14:30:49 Calculate Source COMM Id = 6 +14:30:49 ============================================================================ +14:30:49 + + +waiting on router queue for slot.... +14:30:52 ============================================================================ +14:30:52 Slot Id : <21> +14:30:52 Transaction Type : REQUEST +14:30:52 Received From : +14:30:52 ============================================================================ +14:30:52 FNo. Len. Field Value +14:30:52 ============================================================================ +14:30:52 [ 1] [ 4] [0200] +14:30:52 [ 2] [ 16] [6688990030018756] +14:30:52 [ 3] [ 6] [010000] +14:30:52 [ 4] [ 12] [000050000000] +14:30:52 [ 7] [ 10] [0320143047] +14:30:52 [ 11] [ 6] [771042] +14:30:52 [ 12] [ 6] [143047] +14:30:52 [ 13] [ 4] [0320] +14:30:52 [ 15] [ 4] [0320] +14:30:52 [ 18] [ 4] [6011] +14:30:52 [ 22] [ 3] [900] +14:30:52 [ 25] [ 2] [02] +14:30:52 [ 28] [ 9] [D00002000] +14:30:52 [ 32] [ 6] [621354] +14:30:52 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:30:52 [ 37] [ 12] [507904660748] +14:30:52 [ 41] [ 8] [17001100] +14:30:52 [ 42] [ 15] [NATIVE ] +14:30:52 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:30:52 [ 49] [ 3] [418] +14:30:52 [ 52] [ 16] [14CBE7654C6164F4] +14:30:52 ============================================================================ +14:30:52 + + +waiting on router queue for slot.... +14:30:52 Sending to : +14:30:52 ============================================================================ +14:30:52 Sending to : +14:30:52 ============================================================================ +14:30:52 ============================================================================ +14:30:52 Slot Id : <33> +14:30:52 Transaction Type : REQUEST +14:30:52 Received From : +14:30:52 ============================================================================ +14:30:52 FNo. Len. Field Value +14:30:52 ============================================================================ +14:30:52 [ 1] [ 4] [0200] +14:30:52 [ 2] [ 16] [6688990103743801] +14:30:52 [ 3] [ 6] [010000] +14:30:52 [ 4] [ 12] [000200000000] +14:30:52 [ 7] [ 10] [0320072959] +14:30:52 [ 11] [ 6] [269670] +14:30:52 [ 12] [ 6] [142959] +14:30:52 [ 13] [ 4] [0320] +14:30:52 [ 14] [ 4] [4302] +14:30:52 [ 15] [ 4] [0320] +14:30:52 [ 18] [ 4] [6011] +14:30:52 [ 19] [ 3] [418] +14:30:52 [ 22] [ 3] [021] +14:30:52 [ 25] [ 2] [01] +14:30:52 [ 28] [ 9] [D00002000] +14:30:52 [ 32] [ 6] [180893] +14:30:52 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:30:52 [ 37] [ 12] [507907269670] +14:30:52 [ 41] [ 8] [0221XKKM] +14:30:52 [ 42] [ 15] [999999 ] +14:30:52 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:30:52 [ 49] [ 3] [418] +14:30:52 [ 52] [ 16] [1777F3726DC8CD62] +14:30:52 ============================================================================ +14:30:52 + + +waiting on router queue for slot.... +14:30:52 Sending to : +14:30:52 ============================================================================ +14:30:52 Sending to : +14:30:52 ============================================================================ +14:30:52 ============================================================================ +14:30:52 Slot Id : <21> +14:30:52 Transaction Type : REQUEST +14:30:52 Received From : +14:30:52 ============================================================================ +14:30:52 FNo. Len. Field Value +14:30:52 ============================================================================ +14:30:52 [ 1] [ 4] [0200] +14:30:52 [ 2] [ 16] [6688990030018756] +14:30:52 [ 3] [ 6] [010000] +14:30:52 [ 4] [ 12] [000050000000] +14:30:52 [ 7] [ 10] [0320143047] +14:30:52 [ 11] [ 6] [771042] +14:30:52 [ 12] [ 6] [143047] +14:30:52 [ 13] [ 4] [0320] +14:30:52 [ 15] [ 4] [0320] +14:30:52 [ 18] [ 4] [6011] +14:30:52 [ 22] [ 3] [900] +14:30:52 [ 25] [ 2] [02] +14:30:52 [ 28] [ 9] [D00002000] +14:30:52 [ 32] [ 6] [621354] +14:30:52 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:30:52 [ 37] [ 12] [507904660748] +14:30:52 [ 41] [ 8] [17001100] +14:30:52 [ 42] [ 15] [NATIVE ] +14:30:52 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:30:52 [ 49] [ 3] [418] +14:30:52 [ 52] [ 16] [14CBE7654C6164F4] +14:30:52 ============================================================================ +14:30:52 + + +waiting on router queue for slot.... +14:30:52 Sending to : +14:30:52 ============================================================================ +14:30:52 ============================================================================ +14:30:52 Slot Id : <21> +14:30:52 Transaction Type : REQUEST +14:30:52 Received From : +14:30:52 ============================================================================ +14:30:52 FNo. Len. Field Value +14:30:52 ============================================================================ +14:30:52 [ 1] [ 4] [0200] +14:30:52 [ 2] [ 16] [6688990030018756] +14:30:52 [ 3] [ 6] [010000] +14:30:52 [ 4] [ 12] [000050000000] +14:30:52 [ 7] [ 10] [0320143047] +14:30:52 [ 11] [ 6] [771042] +14:30:52 [ 12] [ 6] [143047] +14:30:52 [ 13] [ 4] [0320] +14:30:52 [ 15] [ 4] [0320] +14:30:52 [ 18] [ 4] [6011] +14:30:52 [ 22] [ 3] [900] +14:30:52 [ 25] [ 2] [02] +14:30:52 [ 28] [ 9] [D00002000] +14:30:52 [ 32] [ 6] [621354] +14:30:52 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:30:52 [ 37] [ 12] [507904660748] +14:30:52 [ 41] [ 8] [17001100] +14:30:52 [ 42] [ 15] [NATIVE ] +14:30:52 [ 43] [ 40] [Xiengkhor District Xiengkhor LAO] +14:30:52 [ 49] [ 3] [418] +14:30:52 [ 52] [ 16] [C170D77DCA82B481] +14:30:52 ============================================================================ +14:30:52 + + +waiting on router queue for slot.... +14:30:52 Sending to : <4> +14:30:52 ============================================================================ +14:30:53 ============================================================================ +14:30:53 Slot Id : <33> +14:30:53 Transaction Type : REQUEST +14:30:53 Received From : +14:30:53 ============================================================================ +14:30:53 FNo. Len. Field Value +14:30:53 ============================================================================ +14:30:53 [ 1] [ 4] [0200] +14:30:53 [ 2] [ 16] [6688990103743801] +14:30:53 [ 3] [ 6] [010000] +14:30:53 [ 4] [ 12] [000200000000] +14:30:53 [ 7] [ 10] [0320072959] +14:30:53 [ 11] [ 6] [269670] +14:30:53 [ 12] [ 6] [142959] +14:30:53 [ 13] [ 4] [0320] +14:30:53 [ 14] [ 4] [4302] +14:30:53 [ 15] [ 4] [0320] +14:30:53 [ 18] [ 4] [6011] +14:30:53 [ 19] [ 3] [418] +14:30:53 [ 22] [ 3] [021] +14:30:53 [ 25] [ 2] [01] +14:30:53 [ 28] [ 9] [D00002000] +14:30:53 [ 32] [ 6] [180893] +14:30:53 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:30:53 [ 37] [ 12] [507907269670] +14:30:53 [ 41] [ 8] [0221XKKM] +14:30:53 [ 42] [ 15] [999999 ] +14:30:53 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:30:53 [ 49] [ 3] [418] +14:30:53 [ 52] [ 16] [1777F3726DC8CD62] +14:30:53 ============================================================================ +14:30:53 + + +waiting on router queue for slot.... +14:30:53 Sending to : +14:30:53 ============================================================================ +14:30:53 ============================================================================ +14:30:53 Slot Id : <33> +14:30:53 Transaction Type : REQUEST +14:30:53 Received From : +14:30:53 ============================================================================ +14:30:53 FNo. Len. Field Value +14:30:53 ============================================================================ +14:30:53 [ 1] [ 4] [0200] +14:30:53 [ 2] [ 16] [6688990103743801] +14:30:53 [ 3] [ 6] [010000] +14:30:53 [ 4] [ 12] [000200000000] +14:30:53 [ 7] [ 10] [0320072959] +14:30:53 [ 11] [ 6] [269670] +14:30:53 [ 12] [ 6] [142959] +14:30:53 [ 13] [ 4] [0320] +14:30:53 [ 14] [ 4] [4302] +14:30:53 [ 15] [ 4] [0320] +14:30:53 [ 18] [ 4] [6011] +14:30:53 [ 19] [ 3] [418] +14:30:53 [ 22] [ 3] [021] +14:30:53 [ 25] [ 2] [01] +14:30:53 [ 28] [ 9] [D00002000] +14:30:53 [ 32] [ 6] [180893] +14:30:53 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:30:53 [ 37] [ 12] [507907269670] +14:30:53 [ 41] [ 8] [0221XKKM] +14:30:53 [ 42] [ 15] [999999 ] +14:30:53 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:30:53 [ 49] [ 3] [418] +14:30:53 [ 52] [ 16] [DC473392EDA7F48C] +14:30:53 ============================================================================ +14:30:53 + + +waiting on router queue for slot.... +14:30:53 Sending to : <0> +14:30:53 ============================================================================ +14:30:53 ============================================================================ +14:30:53 Slot Id : <33> +14:30:53 Transaction Type : RESPONSE +14:30:53 Received From : +14:30:53 ============================================================================ +14:30:53 FNo. Len. Field Value +14:30:53 ============================================================================ +14:30:53 [ 1] [ 4] [0210] +14:30:53 [ 2] [ 16] [6688990103743801] +14:30:53 [ 3] [ 6] [010000] +14:30:53 [ 4] [ 12] [000200000000] +14:30:53 [ 7] [ 10] [0320072959] +14:30:53 [ 11] [ 6] [269670] +14:30:53 [ 12] [ 6] [142959] +14:30:53 [ 13] [ 4] [0320] +14:30:53 [ 15] [ 4] [0320] +14:30:53 [ 18] [ 4] [6011] +14:30:53 [ 19] [ 3] [418] +14:30:53 [ 22] [ 3] [021] +14:30:53 [ 32] [ 6] [180893] +14:30:53 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:30:53 [ 37] [ 12] [507907269670] +14:30:53 [ 39] [ 2] [61] +14:30:53 [ 41] [ 8] [0221XKKM] +14:30:53 [ 49] [ 3] [418] +14:30:53 ============================================================================ +14:30:53 Sending to : +14:30:53 ============================================================================ +14:30:53 + + +waiting on router queue for slot.... +14:30:53 ============================================================================ +14:30:53 Slot Id : <35> +14:30:53 Transaction Type : REQUEST +14:30:53 Received From : +14:30:53 ============================================================================ +14:30:53 FNo. Len. Field Value +14:30:53 ============================================================================ +14:30:53 [ 1] [ 4] [0800] +14:30:53 [ 7] [ 10] [0320073001] +14:30:53 [ 11] [ 6] [156802] +14:30:53 [ 70] [ 3] [301] +14:30:53 ============================================================================ +14:30:53 + + +waiting on router queue for slot.... +14:30:53 Sending to : +14:30:53 ============================================================================ +14:30:53 ============================================================================ +14:30:53 Slot Id : <35> +14:30:53 Transaction Type : RESPONSE +14:30:53 Received From : +14:30:53 ============================================================================ +14:30:53 FNo. Len. Field Value +14:30:53 ============================================================================ +14:30:53 [ 1] [ 4] [0810] +14:30:53 [ 7] [ 10] [0320073001] +14:30:53 [ 11] [ 6] [156802] +14:30:53 [ 39] [ 2] [00] +14:30:53 [ 70] [ 3] [301] +14:30:53 ============================================================================ +14:30:53 Calculate Source COMM Id = 2 +14:30:53 ============================================================================ +14:30:53 + + +waiting on router queue for slot.... +14:30:53 ============================================================================ +14:30:53 Slot Id : <21> +14:30:53 Transaction Type : RESPONSE +14:30:53 Received From : +14:30:53 ============================================================================ +14:30:53 FNo. Len. Field Value +14:30:53 ============================================================================ +14:30:53 [ 1] [ 4] [0210] +14:30:53 [ 2] [ 16] [6688990030018756] +14:30:53 [ 3] [ 6] [010000] +14:30:53 [ 4] [ 12] [000050000000] +14:30:53 [ 11] [ 6] [771042] +14:30:53 [ 12] [ 6] [143047] +14:30:53 [ 15] [ 4] [0320] +14:30:53 [ 18] [ 4] [6011] +14:30:53 [ 32] [ 6] [621354] +14:30:53 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:30:53 [ 37] [ 12] [507904660748] +14:30:53 [ 38] [ 6] [249245] +14:30:53 [ 39] [ 2] [00] +14:30:53 [ 41] [ 8] [17001100] +14:30:53 [ 49] [ 3] [418] +14:30:53 [ 54] [ 20] [0002418C000268800000] +14:30:53 ============================================================================ +14:30:53 Sending to : +14:30:53 ============================================================================ +14:30:53 + + +waiting on router queue for slot.... +14:30:54 ============================================================================ +14:30:54 Slot Id : <33> +14:30:54 Transaction Type : RESPONSE +14:30:54 Received From : +14:30:54 ============================================================================ +14:30:54 FNo. Len. Field Value +14:30:54 ============================================================================ +14:30:54 [ 1] [ 4] [0210] +14:30:54 [ 2] [ 16] [6688990103743801] +14:30:54 [ 3] [ 6] [010000] +14:30:54 [ 4] [ 12] [000200000000] +14:30:54 [ 7] [ 10] [0320072959] +14:30:54 [ 11] [ 6] [269670] +14:30:54 [ 12] [ 6] [142959] +14:30:54 [ 13] [ 4] [0320] +14:30:54 [ 15] [ 4] [0320] +14:30:54 [ 18] [ 4] [6011] +14:30:54 [ 19] [ 3] [418] +14:30:54 [ 22] [ 3] [021] +14:30:54 [ 32] [ 6] [180893] +14:30:54 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:30:54 [ 37] [ 12] [507907269670] +14:30:54 [ 39] [ 2] [61] +14:30:54 [ 41] [ 8] [0221XKKM] +14:30:54 [ 49] [ 3] [418] +14:30:54 ============================================================================ +14:30:54 Calculate Source COMM Id = 2 +14:30:54 ============================================================================ +14:30:54 + + +waiting on router queue for slot.... +14:30:55 ============================================================================ +14:30:55 Slot Id : <21> +14:30:55 Transaction Type : RESPONSE +14:30:55 Received From : +14:30:55 ============================================================================ +14:30:55 FNo. Len. Field Value +14:30:55 ============================================================================ +14:30:55 [ 1] [ 4] [0210] +14:30:55 [ 2] [ 16] [6688990030018756] +14:30:55 [ 3] [ 6] [010000] +14:30:55 [ 4] [ 12] [000050000000] +14:30:55 [ 11] [ 6] [771042] +14:30:55 [ 12] [ 6] [143047] +14:30:55 [ 15] [ 4] [0320] +14:30:55 [ 18] [ 4] [6011] +14:30:55 [ 32] [ 6] [621354] +14:30:55 [ 35] [ 37] [6688990030018756=98051261036122100000] +14:30:55 [ 37] [ 12] [507904660748] +14:30:55 [ 38] [ 6] [249245] +14:30:55 [ 39] [ 2] [00] +14:30:55 [ 41] [ 8] [17001100] +14:30:55 [ 49] [ 3] [418] +14:30:55 [ 54] [ 20] [0002418C000268800000] +14:30:55 ============================================================================ +14:30:55 Calculate Source COMM Id = 0 +14:30:55 ============================================================================ +14:30:55 + + +waiting on router queue for slot.... +14:31:04 ============================================================================ +14:31:04 Slot Id : <496> +14:31:04 Transaction Type : REQUEST +14:31:04 Received From : +14:31:04 ============================================================================ +14:31:04 FNo. Len. Field Value +14:31:04 ============================================================================ +14:31:04 [ 1] [ 4] [0800] +14:31:04 [ 7] [ 10] [0320073011] +14:31:04 [ 11] [ 6] [156803] +14:31:04 [ 70] [ 3] [301] +14:31:04 ============================================================================ +14:31:04 + + +waiting on router queue for slot.... +14:31:04 Sending to : +14:31:04 ============================================================================ +14:31:04 ============================================================================ +14:31:04 Slot Id : <496> +14:31:04 Transaction Type : RESPONSE +14:31:04 Received From : +14:31:04 ============================================================================ +14:31:04 FNo. Len. Field Value +14:31:04 ============================================================================ +14:31:04 [ 1] [ 4] [0810] +14:31:04 [ 7] [ 10] [0320073011] +14:31:04 [ 11] [ 6] [156803] +14:31:04 [ 39] [ 2] [00] +14:31:04 [ 70] [ 3] [301] +14:31:04 ============================================================================ +14:31:04 Calculate Source COMM Id = 2 +14:31:04 ============================================================================ +14:31:04 + + +waiting on router queue for slot.... +14:31:05 ============================================================================ +14:31:05 Slot Id : <461> +14:31:05 Transaction Type : REQUEST +14:31:05 Received From : +14:31:05 ============================================================================ +14:31:05 FNo. Len. Field Value +14:31:05 ============================================================================ +14:31:05 [ 1] [ 4] [0200] +14:31:05 [ 2] [ 16] [6213541000565088] +14:31:05 [ 3] [ 6] [300000] +14:31:05 [ 4] [ 12] [000000000000] +14:31:05 [ 7] [ 10] [0320142856] +14:31:05 [ 11] [ 6] [948587] +14:31:05 [ 12] [ 6] [142856] +14:31:05 [ 13] [ 4] [0320] +14:31:05 [ 15] [ 4] [0320] +14:31:05 [ 18] [ 4] [6011] +14:31:05 [ 19] [ 3] [418] +14:31:05 [ 22] [ 3] [021] +14:31:05 [ 25] [ 2] [01] +14:31:05 [ 28] [ 9] [D00000000] +14:31:05 [ 32] [ 6] [668899] +14:31:05 [ 35] [ 32] [6213541000565088=491212016508201] +14:31:05 [ 37] [ 12] [507901963615] +14:31:05 [ 41] [ 8] [03020019] +14:31:05 [ 42] [ 15] [APT ] +14:31:05 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:31:05 [ 49] [ 3] [418] +14:31:05 [ 52] [ 16] [A451502A1F24E72E] +14:31:05 ============================================================================ +14:31:05 + + +waiting on router queue for slot.... +14:31:05 Sending to : +14:31:05 ============================================================================ +14:31:05 Sending to : +14:31:05 ============================================================================ +14:31:06 ============================================================================ +14:31:06 Slot Id : <461> +14:31:06 Transaction Type : REQUEST +14:31:06 Received From : +14:31:06 ============================================================================ +14:31:06 FNo. Len. Field Value +14:31:06 ============================================================================ +14:31:06 [ 1] [ 4] [0200] +14:31:06 [ 2] [ 16] [6213541000565088] +14:31:06 [ 3] [ 6] [300000] +14:31:06 [ 4] [ 12] [000000000000] +14:31:06 [ 7] [ 10] [0320142856] +14:31:06 [ 11] [ 6] [948587] +14:31:06 [ 12] [ 6] [142856] +14:31:06 [ 13] [ 4] [0320] +14:31:06 [ 15] [ 4] [0320] +14:31:06 [ 18] [ 4] [6011] +14:31:06 [ 19] [ 3] [418] +14:31:06 [ 22] [ 3] [021] +14:31:06 [ 25] [ 2] [01] +14:31:06 [ 28] [ 9] [D00000000] +14:31:06 [ 32] [ 6] [668899] +14:31:06 [ 35] [ 32] [6213541000565088=491212016508201] +14:31:06 [ 37] [ 12] [507901963615] +14:31:06 [ 41] [ 8] [03020019] +14:31:06 [ 42] [ 15] [APT ] +14:31:06 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:31:06 [ 49] [ 3] [418] +14:31:06 [ 52] [ 16] [A451502A1F24E72E] +14:31:06 ============================================================================ +14:31:06 + + +waiting on router queue for slot.... +14:31:06 Sending to : +14:31:06 ============================================================================ +14:31:06 ============================================================================ +14:31:06 Slot Id : <461> +14:31:06 Transaction Type : REQUEST +14:31:06 Received From : +14:31:06 ============================================================================ +14:31:06 FNo. Len. Field Value +14:31:06 ============================================================================ +14:31:06 [ 1] [ 4] [0200] +14:31:06 [ 2] [ 16] [6213541000565088] +14:31:06 [ 3] [ 6] [300000] +14:31:06 [ 4] [ 12] [000000000000] +14:31:06 [ 7] [ 10] [0320142856] +14:31:06 [ 11] [ 6] [948587] +14:31:06 [ 12] [ 6] [142856] +14:31:06 [ 13] [ 4] [0320] +14:31:06 [ 15] [ 4] [0320] +14:31:06 [ 18] [ 4] [6011] +14:31:06 [ 19] [ 3] [418] +14:31:06 [ 22] [ 3] [021] +14:31:06 [ 25] [ 2] [01] +14:31:06 [ 28] [ 9] [D00000000] +14:31:06 [ 32] [ 6] [668899] +14:31:06 [ 35] [ 32] [6213541000565088=491212016508201] +14:31:06 [ 37] [ 12] [507901963615] +14:31:06 [ 41] [ 8] [03020019] +14:31:06 [ 42] [ 15] [APT ] +14:31:06 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:31:06 [ 49] [ 3] [418] +14:31:06 [ 52] [ 16] [A21783FDAE0B5F64] +14:31:06 ============================================================================ +14:31:06 + + +waiting on router queue for slot.... +14:31:06 Sending to : <0> +14:31:06 ============================================================================ +14:31:06 ============================================================================ +14:31:06 Slot Id : <461> +14:31:06 Transaction Type : RESPONSE +14:31:06 Received From : +14:31:06 ============================================================================ +14:31:06 FNo. Len. Field Value +14:31:06 ============================================================================ +14:31:06 [ 1] [ 4] [0210] +14:31:06 [ 2] [ 16] [6213541000565088] +14:31:06 [ 3] [ 6] [300000] +14:31:06 [ 4] [ 12] [000000000000] +14:31:06 [ 7] [ 10] [0320142856] +14:31:06 [ 11] [ 6] [948587] +14:31:06 [ 12] [ 6] [142856] +14:31:06 [ 13] [ 4] [0320] +14:31:06 [ 15] [ 4] [0320] +14:31:06 [ 18] [ 4] [6011] +14:31:06 [ 19] [ 3] [418] +14:31:06 [ 32] [ 6] [668899] +14:31:06 [ 35] [ 32] [6213541000565088=491212016508201] +14:31:06 [ 37] [ 12] [507901963615] +14:31:06 [ 38] [ 6] [521698] +14:31:06 [ 39] [ 2] [00] +14:31:06 [ 41] [ 8] [03020019] +14:31:06 [ 49] [ 3] [418] +14:31:06 [ 54] [ 40] [0001418C0000552274830002418C000055227483] +14:31:06 ============================================================================ +14:31:06 Sending to : +14:31:06 ============================================================================ +14:31:06 + + +waiting on router queue for slot.... +14:31:07 ============================================================================ +14:31:07 Slot Id : <461> +14:31:07 Transaction Type : RESPONSE +14:31:07 Received From : +14:31:07 ============================================================================ +14:31:07 FNo. Len. Field Value +14:31:07 ============================================================================ +14:31:07 [ 1] [ 4] [0210] +14:31:07 [ 2] [ 16] [6213541000565088] +14:31:07 [ 3] [ 6] [300000] +14:31:07 [ 4] [ 12] [000000000000] +14:31:07 [ 7] [ 10] [0320142856] +14:31:07 [ 11] [ 6] [948587] +14:31:07 [ 12] [ 6] [142856] +14:31:07 [ 13] [ 4] [0320] +14:31:07 [ 15] [ 4] [0320] +14:31:07 [ 18] [ 4] [6011] +14:31:07 [ 19] [ 3] [418] +14:31:07 [ 32] [ 6] [668899] +14:31:07 [ 35] [ 32] [6213541000565088=491212016508201] +14:31:07 [ 37] [ 12] [507901963615] +14:31:07 [ 38] [ 6] [521698] +14:31:07 [ 39] [ 2] [00] +14:31:07 [ 41] [ 8] [03020019] +14:31:07 [ 49] [ 3] [418] +14:31:07 [ 54] [ 40] [0001418C0000552274830002418C000055227483] +14:31:07 ============================================================================ +14:31:07 Calculate Source COMM Id = 4 +14:31:07 ============================================================================ +14:31:07 + + +waiting on router queue for slot.... +14:31:12 ============================================================================ +14:31:12 Slot Id : <37> +14:31:12 Transaction Type : REQUEST +14:31:12 Received From : +14:31:12 ============================================================================ +14:31:12 FNo. Len. Field Value +14:31:12 ============================================================================ +14:31:12 [ 1] [ 4] [0200] +14:31:12 [ 2] [ 16] [6688990104022007] +14:31:12 [ 3] [ 6] [301000] +14:31:12 [ 7] [ 10] [0320073019] +14:31:12 [ 11] [ 6] [269671] +14:31:12 [ 12] [ 6] [143019] +14:31:12 [ 13] [ 4] [0320] +14:31:12 [ 14] [ 4] [4302] +14:31:12 [ 15] [ 4] [0320] +14:31:12 [ 18] [ 4] [6011] +14:31:12 [ 19] [ 3] [418] +14:31:12 [ 22] [ 3] [021] +14:31:12 [ 25] [ 2] [01] +14:31:12 [ 32] [ 6] [180893] +14:31:12 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:31:12 [ 37] [ 12] [507907269671] +14:31:12 [ 41] [ 8] [0421BKPH] +14:31:12 [ 42] [ 15] [999999 ] +14:31:12 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:31:12 [ 49] [ 3] [418] +14:31:12 [ 52] [ 16] [473334DCBE911001] +14:31:12 ============================================================================ +14:31:12 + + +waiting on router queue for slot.... +14:31:12 Sending to : +14:31:12 ============================================================================ +14:31:12 Sending to : +14:31:12 ============================================================================ +14:31:13 ============================================================================ +14:31:13 Slot Id : <37> +14:31:13 Transaction Type : REQUEST +14:31:13 Received From : +14:31:13 ============================================================================ +14:31:13 FNo. Len. Field Value +14:31:13 ============================================================================ +14:31:13 [ 1] [ 4] [0200] +14:31:13 [ 2] [ 16] [6688990104022007] +14:31:13 [ 3] [ 6] [301000] +14:31:13 [ 7] [ 10] [0320073019] +14:31:13 [ 11] [ 6] [269671] +14:31:13 [ 12] [ 6] [143019] +14:31:13 [ 13] [ 4] [0320] +14:31:13 [ 14] [ 4] [4302] +14:31:13 [ 15] [ 4] [0320] +14:31:13 [ 18] [ 4] [6011] +14:31:13 [ 19] [ 3] [418] +14:31:13 [ 22] [ 3] [021] +14:31:13 [ 25] [ 2] [01] +14:31:13 [ 32] [ 6] [180893] +14:31:13 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:31:13 [ 37] [ 12] [507907269671] +14:31:13 [ 41] [ 8] [0421BKPH] +14:31:13 [ 42] [ 15] [999999 ] +14:31:13 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:31:13 [ 49] [ 3] [418] +14:31:13 [ 52] [ 16] [473334DCBE911001] +14:31:13 ============================================================================ +14:31:13 + + +waiting on router queue for slot.... +14:31:13 Sending to : +14:31:13 ============================================================================ +14:31:13 ============================================================================ +14:31:13 Slot Id : <37> +14:31:13 Transaction Type : REQUEST +14:31:13 Received From : +14:31:13 ============================================================================ +14:31:13 FNo. Len. Field Value +14:31:13 ============================================================================ +14:31:13 [ 1] [ 4] [0200] +14:31:13 [ 2] [ 16] [6688990104022007] +14:31:13 [ 3] [ 6] [301000] +14:31:13 [ 7] [ 10] [0320073019] +14:31:13 [ 11] [ 6] [269671] +14:31:13 [ 12] [ 6] [143019] +14:31:13 [ 13] [ 4] [0320] +14:31:13 [ 14] [ 4] [4302] +14:31:13 [ 15] [ 4] [0320] +14:31:13 [ 18] [ 4] [6011] +14:31:13 [ 19] [ 3] [418] +14:31:13 [ 22] [ 3] [021] +14:31:13 [ 25] [ 2] [01] +14:31:13 [ 32] [ 6] [180893] +14:31:13 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:31:13 [ 37] [ 12] [507907269671] +14:31:13 [ 41] [ 8] [0421BKPH] +14:31:13 [ 42] [ 15] [999999 ] +14:31:13 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:31:13 [ 49] [ 3] [418] +14:31:13 [ 52] [ 16] [3F768CEE6B61742D] +14:31:13 ============================================================================ +14:31:13 + + +waiting on router queue for slot.... +14:31:13 Sending to : <0> +14:31:13 ============================================================================ +14:31:13 ============================================================================ +14:31:13 Slot Id : <37> +14:31:13 Transaction Type : RESPONSE +14:31:13 Received From : +14:31:13 ============================================================================ +14:31:13 FNo. Len. Field Value +14:31:13 ============================================================================ +14:31:13 [ 1] [ 4] [0210] +14:31:13 [ 2] [ 16] [6688990104022007] +14:31:13 [ 3] [ 6] [301000] +14:31:13 [ 4] [ 12] [000000000000] +14:31:13 [ 7] [ 10] [0320073019] +14:31:13 [ 11] [ 6] [269671] +14:31:13 [ 12] [ 6] [143019] +14:31:13 [ 13] [ 4] [0320] +14:31:13 [ 15] [ 4] [0320] +14:31:13 [ 18] [ 4] [6011] +14:31:13 [ 19] [ 3] [418] +14:31:13 [ 22] [ 3] [021] +14:31:13 [ 32] [ 6] [180893] +14:31:13 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:31:13 [ 37] [ 12] [507907269671] +14:31:13 [ 39] [ 2] [14] +14:31:13 [ 41] [ 8] [0421BKPH] +14:31:13 [ 49] [ 3] [418] +14:31:13 ============================================================================ +14:31:13 Sending to : +14:31:13 ============================================================================ +14:31:13 + + +waiting on router queue for slot.... +14:31:14 ============================================================================ +14:31:14 Slot Id : <37> +14:31:14 Transaction Type : RESPONSE +14:31:14 Received From : +14:31:14 ============================================================================ +14:31:14 FNo. Len. Field Value +14:31:14 ============================================================================ +14:31:14 [ 1] [ 4] [0210] +14:31:14 [ 2] [ 16] [6688990104022007] +14:31:14 [ 3] [ 6] [301000] +14:31:14 [ 4] [ 12] [000000000000] +14:31:14 [ 7] [ 10] [0320073019] +14:31:14 [ 11] [ 6] [269671] +14:31:14 [ 12] [ 6] [143019] +14:31:14 [ 13] [ 4] [0320] +14:31:14 [ 15] [ 4] [0320] +14:31:14 [ 18] [ 4] [6011] +14:31:14 [ 19] [ 3] [418] +14:31:14 [ 22] [ 3] [021] +14:31:14 [ 32] [ 6] [180893] +14:31:14 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:31:14 [ 37] [ 12] [507907269671] +14:31:14 [ 39] [ 2] [14] +14:31:14 [ 41] [ 8] [0421BKPH] +14:31:14 [ 49] [ 3] [418] +14:31:14 ============================================================================ +14:31:14 Calculate Source COMM Id = 2 +14:31:14 ============================================================================ +14:31:14 + + +waiting on router queue for slot.... +14:31:15 ============================================================================ +14:31:15 Slot Id : <30> +14:31:15 Transaction Type : REQUEST +14:31:15 Received From : +14:31:15 ============================================================================ +14:31:15 FNo. Len. Field Value +14:31:15 ============================================================================ +14:31:15 [ 1] [ 4] [0800] +14:31:15 [ 7] [ 10] [0320073022] +14:31:15 [ 11] [ 6] [156804] +14:31:15 [ 70] [ 3] [301] +14:31:15 ============================================================================ +14:31:15 + + +waiting on router queue for slot.... +14:31:15 Sending to : +14:31:15 ============================================================================ +14:31:15 ============================================================================ +14:31:15 Slot Id : <30> +14:31:15 Transaction Type : RESPONSE +14:31:15 Received From : +14:31:15 ============================================================================ +14:31:15 FNo. Len. Field Value +14:31:15 ============================================================================ +14:31:15 [ 1] [ 4] [0810] +14:31:15 [ 7] [ 10] [0320073022] +14:31:15 [ 11] [ 6] [156804] +14:31:15 [ 39] [ 2] [00] +14:31:15 [ 70] [ 3] [301] +14:31:15 ============================================================================ +14:31:15 Calculate Source COMM Id = 2 +14:31:15 ============================================================================ +14:31:15 + + +waiting on router queue for slot.... +14:31:22 ============================================================================ +14:31:22 Slot Id : <9> +14:31:22 Transaction Type : REQUEST +14:31:22 Received From : +14:31:22 ============================================================================ +14:31:22 FNo. Len. Field Value +14:31:22 ============================================================================ +14:31:22 [ 1] [ 4] [0800] +14:31:22 [ 7] [ 10] [0320072912] +14:31:22 [ 11] [ 6] [087739] +14:31:22 [ 37] [ 12] [57914087739] +14:31:22 [ 70] [ 3] [301] +14:31:22 ============================================================================ +14:31:22 + + +waiting on router queue for slot.... +14:31:22 Sending to : +14:31:22 ============================================================================ +14:31:22 ============================================================================ +14:31:22 Slot Id : <9> +14:31:22 Transaction Type : RESPONSE +14:31:22 Received From : +14:31:22 ============================================================================ +14:31:22 FNo. Len. Field Value +14:31:22 ============================================================================ +14:31:22 [ 1] [ 4] [0810] +14:31:22 [ 7] [ 10] [0320072912] +14:31:22 [ 11] [ 6] [087739] +14:31:22 [ 37] [ 12] [579140877390] +14:31:22 [ 39] [ 2] [00] +14:31:22 [ 70] [ 3] [810] +14:31:22 ============================================================================ +14:31:22 Calculate Source COMM Id = 4 +14:31:22 ============================================================================ +14:31:22 + + +waiting on router queue for slot.... +14:31:28 ============================================================================ +14:31:28 Slot Id : <45> +14:31:28 Transaction Type : REQUEST +14:31:28 Received From : +14:31:28 ============================================================================ +14:31:28 FNo. Len. Field Value +14:31:28 ============================================================================ +14:31:28 [ 1] [ 4] [0800] +14:31:28 [ 7] [ 10] [0320073036] +14:31:28 [ 11] [ 6] [156805] +14:31:28 [ 70] [ 3] [301] +14:31:28 ============================================================================ +14:31:28 + + +waiting on router queue for slot.... +14:31:28 Sending to : +14:31:28 ============================================================================ +14:31:28 ============================================================================ +14:31:28 Slot Id : <45> +14:31:28 Transaction Type : RESPONSE +14:31:28 Received From : +14:31:28 ============================================================================ +14:31:28 FNo. Len. Field Value +14:31:28 ============================================================================ +14:31:28 [ 1] [ 4] [0810] +14:31:28 [ 7] [ 10] [0320073036] +14:31:28 [ 11] [ 6] [156805] +14:31:28 [ 39] [ 2] [00] +14:31:28 [ 70] [ 3] [301] +14:31:28 ============================================================================ +14:31:28 Calculate Source COMM Id = 2 +14:31:28 ============================================================================ +14:31:28 + + +waiting on router queue for slot.... +14:31:39 ============================================================================ +14:31:39 Slot Id : <36> +14:31:39 Transaction Type : REQUEST +14:31:39 Received From : +14:31:39 ============================================================================ +14:31:39 FNo. Len. Field Value +14:31:39 ============================================================================ +14:31:39 [ 1] [ 4] [0200] +14:31:39 [ 2] [ 16] [6213545000783559] +14:31:39 [ 3] [ 6] [301000] +14:31:39 [ 7] [ 10] [0320073046] +14:31:39 [ 11] [ 6] [269673] +14:31:39 [ 12] [ 6] [143046] +14:31:39 [ 13] [ 4] [0320] +14:31:39 [ 14] [ 4] [4912] +14:31:39 [ 15] [ 4] [0320] +14:31:39 [ 18] [ 4] [6011] +14:31:39 [ 19] [ 3] [418] +14:31:39 [ 22] [ 3] [021] +14:31:39 [ 25] [ 2] [01] +14:31:39 [ 32] [ 6] [180893] +14:31:39 [ 35] [ 32] [6213545000783559=491212018355778] +14:31:39 [ 37] [ 12] [507907269673] +14:31:39 [ 41] [ 8] [0122ATBR] +14:31:39 [ 42] [ 15] [999999 ] +14:31:39 [ 43] [ 40] [ATM ATTAPUE BRANCH LOCATION, Samakkhixay] +14:31:39 [ 49] [ 3] [418] +14:31:39 [ 52] [ 16] [887246F94F2CDC97] +14:31:39 ============================================================================ +14:31:39 + + +waiting on router queue for slot.... +14:31:39 Sending to : +14:31:39 ============================================================================ +14:31:39 Sending to : +14:31:39 ============================================================================ +14:31:39 ============================================================================ +14:31:39 Slot Id : <497> +14:31:39 Transaction Type : REQUEST +14:31:39 Received From : +14:31:39 ============================================================================ +14:31:39 FNo. Len. Field Value +14:31:39 ============================================================================ +14:31:39 [ 1] [ 4] [0200] +14:31:39 [ 2] [ 16] [6213545000170682] +14:31:39 [ 3] [ 6] [010000] +14:31:39 [ 4] [ 12] [000100000000] +14:31:39 [ 7] [ 10] [0320073046] +14:31:39 [ 11] [ 6] [269674] +14:31:39 [ 12] [ 6] [143046] +14:31:39 [ 13] [ 4] [0320] +14:31:39 [ 14] [ 4] [4912] +14:31:39 [ 15] [ 4] [0320] +14:31:39 [ 18] [ 4] [6011] +14:31:39 [ 19] [ 3] [418] +14:31:39 [ 22] [ 3] [021] +14:31:39 [ 25] [ 2] [01] +14:31:39 [ 28] [ 9] [D00002000] +14:31:39 [ 32] [ 6] [180893] +14:31:39 [ 35] [ 32] [6213545000170682=491212017068389] +14:31:39 [ 37] [ 12] [507907269674] +14:31:39 [ 41] [ 8] [0114XKBR] +14:31:39 [ 42] [ 15] [999999 ] +14:31:39 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:31:39 [ 49] [ 3] [418] +14:31:39 [ 52] [ 16] [59DD7DE8CDDE3092] +14:31:39 ============================================================================ +14:31:39 + + +waiting on router queue for slot.... +14:31:39 Sending to : +14:31:39 ============================================================================ +14:31:39 Sending to : +14:31:39 ============================================================================ +14:31:40 ============================================================================ +14:31:40 Slot Id : <36> +14:31:40 Transaction Type : REQUEST +14:31:40 Received From : +14:31:40 ============================================================================ +14:31:40 FNo. Len. Field Value +14:31:40 ============================================================================ +14:31:40 [ 1] [ 4] [0200] +14:31:40 [ 2] [ 16] [6213545000783559] +14:31:40 [ 3] [ 6] [301000] +14:31:40 [ 7] [ 10] [0320073046] +14:31:40 [ 11] [ 6] [269673] +14:31:40 [ 12] [ 6] [143046] +14:31:40 [ 13] [ 4] [0320] +14:31:40 [ 14] [ 4] [4912] +14:31:40 [ 15] [ 4] [0320] +14:31:40 [ 18] [ 4] [6011] +14:31:40 [ 19] [ 3] [418] +14:31:40 [ 22] [ 3] [021] +14:31:40 [ 25] [ 2] [01] +14:31:40 [ 32] [ 6] [180893] +14:31:40 [ 35] [ 32] [6213545000783559=491212018355778] +14:31:40 [ 37] [ 12] [507907269673] +14:31:40 [ 41] [ 8] [0122ATBR] +14:31:40 [ 42] [ 15] [999999 ] +14:31:40 [ 43] [ 40] [ATM ATTAPUE BRANCH LOCATION, Samakkhixay] +14:31:40 [ 49] [ 3] [418] +14:31:40 [ 52] [ 16] [887246F94F2CDC97] +14:31:40 ============================================================================ +14:31:40 + + +waiting on router queue for slot.... +14:31:40 Sending to : +14:31:40 ============================================================================ +14:31:40 ============================================================================ +14:31:40 Slot Id : <36> +14:31:40 Transaction Type : REQUEST +14:31:40 Received From : +14:31:40 ============================================================================ +14:31:40 FNo. Len. Field Value +14:31:40 ============================================================================ +14:31:40 [ 1] [ 4] [0200] +14:31:40 [ 2] [ 16] [6213545000783559] +14:31:40 [ 3] [ 6] [301000] +14:31:40 [ 7] [ 10] [0320073046] +14:31:40 [ 11] [ 6] [269673] +14:31:40 [ 12] [ 6] [143046] +14:31:40 [ 13] [ 4] [0320] +14:31:40 [ 14] [ 4] [4912] +14:31:40 [ 15] [ 4] [0320] +14:31:40 [ 18] [ 4] [6011] +14:31:40 [ 19] [ 3] [418] +14:31:40 [ 22] [ 3] [021] +14:31:40 [ 25] [ 2] [01] +14:31:40 [ 32] [ 6] [180893] +14:31:40 [ 35] [ 32] [6213545000783559=491212018355778] +14:31:40 [ 37] [ 12] [507907269673] +14:31:40 [ 41] [ 8] [0122ATBR] +14:31:40 [ 42] [ 15] [999999 ] +14:31:40 [ 43] [ 40] [ATM ATTAPUE BRANCH LOCATION, Samakkhixay] +14:31:40 [ 49] [ 3] [418] +14:31:40 [ 52] [ 16] [EDCC8B1B5B2E7D58] +14:31:40 ============================================================================ +14:31:40 + + +waiting on router queue for slot.... +14:31:40 Sending to : <0> +14:31:40 ============================================================================ +14:31:40 ============================================================================ +14:31:40 Slot Id : <497> +14:31:40 Transaction Type : REQUEST +14:31:40 Received From : +14:31:40 ============================================================================ +14:31:40 FNo. Len. Field Value +14:31:40 ============================================================================ +14:31:40 [ 1] [ 4] [0200] +14:31:40 [ 2] [ 16] [6213545000170682] +14:31:40 [ 3] [ 6] [010000] +14:31:40 [ 4] [ 12] [000100000000] +14:31:40 [ 7] [ 10] [0320073046] +14:31:40 [ 11] [ 6] [269674] +14:31:40 [ 12] [ 6] [143046] +14:31:40 [ 13] [ 4] [0320] +14:31:40 [ 14] [ 4] [4912] +14:31:40 [ 15] [ 4] [0320] +14:31:40 [ 18] [ 4] [6011] +14:31:40 [ 19] [ 3] [418] +14:31:40 [ 22] [ 3] [021] +14:31:40 [ 25] [ 2] [01] +14:31:40 [ 28] [ 9] [D00002000] +14:31:40 [ 32] [ 6] [180893] +14:31:40 [ 35] [ 32] [6213545000170682=491212017068389] +14:31:40 [ 37] [ 12] [507907269674] +14:31:40 [ 41] [ 8] [0114XKBR] +14:31:40 [ 42] [ 15] [999999 ] +14:31:40 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:31:40 [ 49] [ 3] [418] +14:31:40 [ 52] [ 16] [59DD7DE8CDDE3092] +14:31:40 ============================================================================ +14:31:40 + + +waiting on router queue for slot.... +14:31:40 Sending to : +14:31:40 ============================================================================ +14:31:40 ============================================================================ +14:31:40 Slot Id : <497> +14:31:40 Transaction Type : REQUEST +14:31:40 Received From : +14:31:40 ============================================================================ +14:31:40 FNo. Len. Field Value +14:31:40 ============================================================================ +14:31:40 [ 1] [ 4] [0200] +14:31:40 [ 2] [ 16] [6213545000170682] +14:31:40 [ 3] [ 6] [010000] +14:31:40 [ 4] [ 12] [000100000000] +14:31:40 [ 7] [ 10] [0320073046] +14:31:40 [ 11] [ 6] [269674] +14:31:40 [ 12] [ 6] [143046] +14:31:40 [ 13] [ 4] [0320] +14:31:40 [ 14] [ 4] [4912] +14:31:40 [ 15] [ 4] [0320] +14:31:40 [ 18] [ 4] [6011] +14:31:40 [ 19] [ 3] [418] +14:31:40 [ 22] [ 3] [021] +14:31:40 [ 25] [ 2] [01] +14:31:40 [ 28] [ 9] [D00002000] +14:31:40 [ 32] [ 6] [180893] +14:31:40 [ 35] [ 32] [6213545000170682=491212017068389] +14:31:40 [ 37] [ 12] [507907269674] +14:31:40 [ 41] [ 8] [0114XKBR] +14:31:40 [ 42] [ 15] [999999 ] +14:31:40 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:31:40 [ 49] [ 3] [418] +14:31:40 [ 52] [ 16] [9F6065A884A9AEC8] +14:31:40 ============================================================================ +14:31:40 + + +waiting on router queue for slot.... +14:31:40 Sending to : <0> +14:31:40 ============================================================================ +14:31:40 ============================================================================ +14:31:40 Slot Id : <36> +14:31:40 Transaction Type : RESPONSE +14:31:40 Received From : +14:31:40 ============================================================================ +14:31:40 FNo. Len. Field Value +14:31:40 ============================================================================ +14:31:40 [ 1] [ 4] [0210] +14:31:40 [ 2] [ 16] [6213545000783559] +14:31:40 [ 3] [ 6] [301000] +14:31:40 [ 4] [ 12] [000000000000] +14:31:40 [ 7] [ 10] [0320073046] +14:31:40 [ 11] [ 6] [269673] +14:31:40 [ 12] [ 6] [143046] +14:31:40 [ 13] [ 4] [0320] +14:31:40 [ 15] [ 4] [0320] +14:31:40 [ 18] [ 4] [6011] +14:31:40 [ 19] [ 3] [418] +14:31:40 [ 32] [ 6] [180893] +14:31:40 [ 35] [ 32] [6213545000783559=491212018355778] +14:31:40 [ 37] [ 12] [507907269673] +14:31:40 [ 38] [ 6] [544172] +14:31:40 [ 39] [ 2] [00] +14:31:40 [ 41] [ 8] [0122ATBR] +14:31:40 [ 49] [ 3] [418] +14:31:40 [ 54] [ 40] [1001418C0002919876781002418C000291987678] +14:31:40 ============================================================================ +14:31:40 Sending to : +14:31:40 ============================================================================ +14:31:40 + + +waiting on router queue for slot.... +14:31:40 ============================================================================ +14:31:40 Slot Id : <497> +14:31:40 Transaction Type : RESPONSE +14:31:40 Received From : +14:31:40 ============================================================================ +14:31:40 FNo. Len. Field Value +14:31:40 ============================================================================ +14:31:40 [ 1] [ 4] [0210] +14:31:40 [ 2] [ 16] [6213545000170682] +14:31:40 [ 3] [ 6] [010000] +14:31:40 [ 4] [ 12] [000100000000] +14:31:40 [ 7] [ 10] [0320073046] +14:31:40 [ 11] [ 6] [269674] +14:31:40 [ 12] [ 6] [143046] +14:31:40 [ 13] [ 4] [0320] +14:31:40 [ 15] [ 4] [0320] +14:31:40 [ 18] [ 4] [6011] +14:31:40 [ 19] [ 3] [418] +14:31:40 [ 32] [ 6] [180893] +14:31:40 [ 35] [ 32] [6213545000170682=491212017068389] +14:31:40 [ 37] [ 12] [507907269674] +14:31:40 [ 38] [ 6] [674436] +14:31:40 [ 39] [ 2] [00] +14:31:40 [ 41] [ 8] [0114XKBR] +14:31:40 [ 49] [ 3] [418] +14:31:40 [ 54] [ 40] [0001418C0001098897510002418C000109889751] +14:31:40 ============================================================================ +14:31:40 Sending to : +14:31:40 ============================================================================ +14:31:40 + + +waiting on router queue for slot.... +14:31:41 ============================================================================ +14:31:41 Slot Id : <36> +14:31:41 Transaction Type : RESPONSE +14:31:41 Received From : +14:31:41 ============================================================================ +14:31:41 FNo. Len. Field Value +14:31:41 ============================================================================ +14:31:41 [ 1] [ 4] [0210] +14:31:41 [ 2] [ 16] [6213545000783559] +14:31:41 [ 3] [ 6] [301000] +14:31:41 [ 4] [ 12] [000000000000] +14:31:41 [ 7] [ 10] [0320073046] +14:31:41 [ 11] [ 6] [269673] +14:31:41 [ 12] [ 6] [143046] +14:31:41 [ 13] [ 4] [0320] +14:31:41 [ 15] [ 4] [0320] +14:31:41 [ 18] [ 4] [6011] +14:31:41 [ 19] [ 3] [418] +14:31:41 [ 32] [ 6] [180893] +14:31:41 [ 35] [ 32] [6213545000783559=491212018355778] +14:31:41 [ 37] [ 12] [507907269673] +14:31:41 [ 38] [ 6] [544172] +14:31:41 [ 39] [ 2] [00] +14:31:41 [ 41] [ 8] [0122ATBR] +14:31:41 [ 49] [ 3] [418] +14:31:41 [ 54] [ 40] [1001418C0002919876781002418C000291987678] +14:31:41 ============================================================================ +14:31:41 Calculate Source COMM Id = 2 +14:31:41 ============================================================================ +14:31:41 + + +waiting on router queue for slot.... +14:31:43 ============================================================================ +14:31:43 Slot Id : <497> +14:31:43 Transaction Type : RESPONSE +14:31:43 Received From : +14:31:43 ============================================================================ +14:31:43 FNo. Len. Field Value +14:31:43 ============================================================================ +14:31:43 [ 1] [ 4] [0210] +14:31:43 [ 2] [ 16] [6213545000170682] +14:31:43 [ 3] [ 6] [010000] +14:31:43 [ 4] [ 12] [000100000000] +14:31:43 [ 7] [ 10] [0320073046] +14:31:43 [ 11] [ 6] [269674] +14:31:43 [ 12] [ 6] [143046] +14:31:43 [ 13] [ 4] [0320] +14:31:43 [ 15] [ 4] [0320] +14:31:43 [ 18] [ 4] [6011] +14:31:43 [ 19] [ 3] [418] +14:31:43 [ 32] [ 6] [180893] +14:31:43 [ 35] [ 32] [6213545000170682=491212017068389] +14:31:43 [ 37] [ 12] [507907269674] +14:31:43 [ 38] [ 6] [674436] +14:31:43 [ 39] [ 2] [00] +14:31:43 [ 41] [ 8] [0114XKBR] +14:31:43 [ 49] [ 3] [418] +14:31:43 [ 54] [ 40] [0001418C0001098897510002418C000109889751] +14:31:43 ============================================================================ +14:31:43 Calculate Source COMM Id = 2 +14:31:43 ============================================================================ +14:31:43 + + +waiting on router queue for slot.... +14:31:44 ============================================================================ +14:31:44 Slot Id : <18> +14:31:44 Transaction Type : REQUEST +14:31:44 Received From : +14:31:44 ============================================================================ +14:31:44 FNo. Len. Field Value +14:31:44 ============================================================================ +14:31:44 [ 1] [ 4] [0800] +14:31:44 [ 7] [ 10] [0320073051] +14:31:44 [ 11] [ 6] [156806] +14:31:44 [ 70] [ 3] [301] +14:31:44 ============================================================================ +14:31:44 + + +waiting on router queue for slot.... +14:31:44 Sending to : +14:31:44 ============================================================================ +14:31:44 ============================================================================ +14:31:44 Slot Id : <18> +14:31:44 Transaction Type : RESPONSE +14:31:44 Received From : +14:31:44 ============================================================================ +14:31:44 FNo. Len. Field Value +14:31:44 ============================================================================ +14:31:44 [ 1] [ 4] [0810] +14:31:44 [ 7] [ 10] [0320073051] +14:31:44 [ 11] [ 6] [156806] +14:31:44 [ 39] [ 2] [00] +14:31:44 [ 70] [ 3] [301] +14:31:44 ============================================================================ +14:31:44 Calculate Source COMM Id = 2 +14:31:44 ============================================================================ +14:31:44 + + +waiting on router queue for slot.... +14:31:44 ============================================================================ +14:31:44 Slot Id : <40> +14:31:44 Transaction Type : REQUEST +14:31:44 Received From : +14:31:44 ============================================================================ +14:31:44 FNo. Len. Field Value +14:31:44 ============================================================================ +14:31:44 [ 1] [ 4] [0800] +14:31:44 [ 2] [ 5] [02531] +14:31:44 [ 3] [ 6] [579148] +14:31:44 [ 7] [ 10] [0320073144] +14:31:44 [ 11] [ 6] [807255] +14:31:44 [ 15] [ 10] [0320073144] +14:31:44 [ 37] [ 11] [57914807255] +14:31:44 [ 70] [ 3] [001] +14:31:44 ============================================================================ +14:31:44 + + +waiting on router queue for slot.... +14:31:44 ============================================================================ +14:31:44 Slot Id : <40> +14:31:44 Transaction Type : RESPONSE +14:31:44 Received From : +14:31:44 ============================================================================ +14:31:44 FNo. Len. Field Value +14:31:44 ============================================================================ +14:31:44 [ 1] [ 4] [0810] +14:31:44 [ 7] [ 10] [0320073144] +14:31:44 [ 11] [ 6] [807255] +14:31:44 [ 15] [ 4] [0320] +14:31:44 [ 37] [ 12] [57914807255] +14:31:44 [ 39] [ 2] [00] +14:31:44 [ 70] [ 3] [001] +14:31:44 ============================================================================ +14:31:44 Sending to : +14:31:44 ============================================================================ +14:31:44 + + +waiting on router queue for slot.... +14:31:46 ============================================================================ +14:31:46 Slot Id : <467> +14:31:46 Transaction Type : REQUEST +14:31:46 Received From : +14:31:46 ============================================================================ +14:31:46 FNo. Len. Field Value +14:31:46 ============================================================================ +14:31:46 [ 1] [ 4] [0200] +14:31:46 [ 2] [ 16] [6213541000565088] +14:31:46 [ 3] [ 6] [302000] +14:31:46 [ 4] [ 12] [000000000000] +14:31:46 [ 7] [ 10] [0320142936] +14:31:46 [ 11] [ 6] [948609] +14:31:46 [ 12] [ 6] [142936] +14:31:46 [ 13] [ 4] [0320] +14:31:46 [ 15] [ 4] [0320] +14:31:46 [ 18] [ 4] [6011] +14:31:46 [ 19] [ 3] [418] +14:31:46 [ 22] [ 3] [021] +14:31:46 [ 25] [ 2] [01] +14:31:46 [ 28] [ 9] [D00000000] +14:31:46 [ 32] [ 6] [668899] +14:31:46 [ 35] [ 32] [6213541000565088=491212016508201] +14:31:46 [ 37] [ 12] [507901963616] +14:31:46 [ 41] [ 8] [03020019] +14:31:46 [ 42] [ 15] [APT ] +14:31:46 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:31:46 [ 49] [ 3] [418] +14:31:46 [ 52] [ 16] [A451502A1F24E72E] +14:31:46 ============================================================================ +14:31:46 + + +waiting on router queue for slot.... +14:31:46 Sending to : +14:31:46 ============================================================================ +14:31:46 Sending to : +14:31:46 ============================================================================ +14:31:46 ============================================================================ +14:31:46 Slot Id : <467> +14:31:46 Transaction Type : REQUEST +14:31:46 Received From : +14:31:46 ============================================================================ +14:31:46 FNo. Len. Field Value +14:31:46 ============================================================================ +14:31:46 [ 1] [ 4] [0200] +14:31:46 [ 2] [ 16] [6213541000565088] +14:31:46 [ 3] [ 6] [302000] +14:31:46 [ 4] [ 12] [000000000000] +14:31:46 [ 7] [ 10] [0320142936] +14:31:46 [ 11] [ 6] [948609] +14:31:46 [ 12] [ 6] [142936] +14:31:46 [ 13] [ 4] [0320] +14:31:46 [ 15] [ 4] [0320] +14:31:46 [ 18] [ 4] [6011] +14:31:46 [ 19] [ 3] [418] +14:31:46 [ 22] [ 3] [021] +14:31:46 [ 25] [ 2] [01] +14:31:46 [ 28] [ 9] [D00000000] +14:31:46 [ 32] [ 6] [668899] +14:31:46 [ 35] [ 32] [6213541000565088=491212016508201] +14:31:46 [ 37] [ 12] [507901963616] +14:31:46 [ 41] [ 8] [03020019] +14:31:46 [ 42] [ 15] [APT ] +14:31:46 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:31:46 [ 49] [ 3] [418] +14:31:46 [ 52] [ 16] [A451502A1F24E72E] +14:31:46 ============================================================================ +14:31:46 + + +waiting on router queue for slot.... +14:31:46 Sending to : +14:31:46 ============================================================================ +14:31:46 ============================================================================ +14:31:46 Slot Id : <467> +14:31:46 Transaction Type : REQUEST +14:31:46 Received From : +14:31:46 ============================================================================ +14:31:46 FNo. Len. Field Value +14:31:46 ============================================================================ +14:31:46 [ 1] [ 4] [0200] +14:31:46 [ 2] [ 16] [6213541000565088] +14:31:46 [ 3] [ 6] [302000] +14:31:46 [ 4] [ 12] [000000000000] +14:31:46 [ 7] [ 10] [0320142936] +14:31:46 [ 11] [ 6] [948609] +14:31:46 [ 12] [ 6] [142936] +14:31:46 [ 13] [ 4] [0320] +14:31:46 [ 15] [ 4] [0320] +14:31:46 [ 18] [ 4] [6011] +14:31:46 [ 19] [ 3] [418] +14:31:46 [ 22] [ 3] [021] +14:31:46 [ 25] [ 2] [01] +14:31:46 [ 28] [ 9] [D00000000] +14:31:46 [ 32] [ 6] [668899] +14:31:46 [ 35] [ 32] [6213541000565088=491212016508201] +14:31:46 [ 37] [ 12] [507901963616] +14:31:46 [ 41] [ 8] [03020019] +14:31:46 [ 42] [ 15] [APT ] +14:31:46 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:31:46 [ 49] [ 3] [418] +14:31:46 [ 52] [ 16] [A21783FDAE0B5F64] +14:31:46 ============================================================================ +14:31:46 + + +waiting on router queue for slot.... +14:31:46 Sending to : <0> +14:31:46 ============================================================================ +14:31:47 ============================================================================ +14:31:47 Slot Id : <467> +14:31:47 Transaction Type : RESPONSE +14:31:47 Received From : +14:31:47 ============================================================================ +14:31:47 FNo. Len. Field Value +14:31:47 ============================================================================ +14:31:47 [ 1] [ 4] [0210] +14:31:47 [ 2] [ 16] [6213541000565088] +14:31:47 [ 3] [ 6] [302000] +14:31:47 [ 4] [ 12] [000000000000] +14:31:47 [ 7] [ 10] [0320142936] +14:31:47 [ 11] [ 6] [948609] +14:31:47 [ 12] [ 6] [142936] +14:31:47 [ 13] [ 4] [0320] +14:31:47 [ 15] [ 4] [0320] +14:31:47 [ 18] [ 4] [6011] +14:31:47 [ 19] [ 3] [418] +14:31:47 [ 32] [ 6] [668899] +14:31:47 [ 35] [ 32] [6213541000565088=491212016508201] +14:31:47 [ 37] [ 12] [507901963616] +14:31:47 [ 38] [ 6] [207379] +14:31:47 [ 39] [ 2] [00] +14:31:47 [ 41] [ 8] [03020019] +14:31:47 [ 49] [ 3] [418] +14:31:47 [ 54] [ 40] [2001418C0000552274832002418C000055227483] +14:31:47 ============================================================================ +14:31:47 Sending to : +14:31:47 ============================================================================ +14:31:47 + + +waiting on router queue for slot.... +14:31:48 ============================================================================ +14:31:48 Slot Id : <467> +14:31:48 Transaction Type : RESPONSE +14:31:48 Received From : +14:31:48 ============================================================================ +14:31:48 FNo. Len. Field Value +14:31:48 ============================================================================ +14:31:48 [ 1] [ 4] [0210] +14:31:48 [ 2] [ 16] [6213541000565088] +14:31:48 [ 3] [ 6] [302000] +14:31:48 [ 4] [ 12] [000000000000] +14:31:48 [ 7] [ 10] [0320142936] +14:31:48 [ 11] [ 6] [948609] +14:31:48 [ 12] [ 6] [142936] +14:31:48 [ 13] [ 4] [0320] +14:31:48 [ 15] [ 4] [0320] +14:31:48 [ 18] [ 4] [6011] +14:31:48 [ 19] [ 3] [418] +14:31:48 [ 32] [ 6] [668899] +14:31:48 [ 35] [ 32] [6213541000565088=491212016508201] +14:31:48 [ 37] [ 12] [507901963616] +14:31:48 [ 38] [ 6] [207379] +14:31:48 [ 39] [ 2] [00] +14:31:48 [ 41] [ 8] [03020019] +14:31:48 [ 49] [ 3] [418] +14:31:48 [ 54] [ 40] [2001418C0000552274832002418C000055227483] +14:31:48 ============================================================================ +14:31:48 Calculate Source COMM Id = 4 +14:31:48 ============================================================================ +14:31:48 + + +waiting on router queue for slot.... +14:31:54 ============================================================================ +14:31:54 Slot Id : <8> +14:31:54 Transaction Type : REQUEST +14:31:54 Received From : +14:31:54 ============================================================================ +14:31:54 FNo. Len. Field Value +14:31:54 ============================================================================ +14:31:54 [ 1] [ 4] [0800] +14:31:54 [ 7] [ 10] [0320214343] +14:31:54 [ 11] [ 6] [144343] +14:31:54 [ 37] [ 12] [57914144343] +14:31:54 [ 70] [ 3] [301] +14:31:54 ============================================================================ +14:31:54 + + +waiting on router queue for slot.... +14:31:54 Sending to : +14:31:54 ============================================================================ +14:31:54 ============================================================================ +14:31:54 Slot Id : <8> +14:31:54 Transaction Type : RESPONSE +14:31:54 Received From : +14:31:54 ============================================================================ +14:31:54 FNo. Len. Field Value +14:31:54 ============================================================================ +14:31:54 [ 1] [ 4] [0810] +14:31:54 [ 7] [ 10] [0320214343] +14:31:54 [ 11] [ 6] [144343] +14:31:54 [ 37] [ 12] [579141443430] +14:31:54 [ 39] [ 2] [00] +14:31:54 [ 70] [ 3] [810] +14:31:54 ============================================================================ +14:31:54 Calculate Source COMM Id = 6 +14:31:54 ============================================================================ +14:31:54 + + +waiting on router queue for slot.... +14:31:55 ============================================================================ +14:31:55 Slot Id : <28> +14:31:55 Transaction Type : REQUEST +14:31:55 Received From : +14:31:55 ============================================================================ +14:31:55 FNo. Len. Field Value +14:31:55 ============================================================================ +14:31:55 [ 1] [ 4] [0200] +14:31:55 [ 2] [ 16] [1808930600013502] +14:31:55 [ 3] [ 6] [311000] +14:31:55 [ 4] [ 12] [000000000000] +14:31:55 [ 7] [ 10] [0320143942] +14:31:55 [ 11] [ 6] [009296] +14:31:55 [ 12] [ 6] [143942] +14:31:55 [ 13] [ 4] [0320] +14:31:55 [ 14] [ 4] [1803] +14:31:55 [ 15] [ 4] [0320] +14:31:55 [ 18] [ 4] [6011] +14:31:55 [ 22] [ 3] [900] +14:31:55 [ 25] [ 2] [02] +14:31:55 [ 28] [ 9] [000000000] +14:31:55 [ 32] [ 6] [220699] +14:31:55 [ 35] [ 27] [1808930600013502=1803500061] +14:31:55 [ 37] [ 12] [507900213257] +14:31:55 [ 41] [ 8] [05000100] +14:31:55 [ 42] [ 15] [APTRA ] +14:31:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:31:55 [ 49] [ 3] [418] +14:31:55 [ 52] [ 16] [ADEBA154E3280629] +14:31:55 ============================================================================ +14:31:55 + + +waiting on router queue for slot.... +14:31:55 Sending to : +14:31:55 ============================================================================ +14:31:55 Sending to : +14:31:55 ============================================================================ +14:31:55 ============================================================================ +14:31:55 Slot Id : <28> +14:31:55 Transaction Type : REQUEST +14:31:55 Received From : +14:31:55 ============================================================================ +14:31:55 FNo. Len. Field Value +14:31:55 ============================================================================ +14:31:55 [ 1] [ 4] [0200] +14:31:55 [ 2] [ 16] [1808930600013502] +14:31:55 [ 3] [ 6] [311000] +14:31:55 [ 4] [ 12] [000000000000] +14:31:55 [ 7] [ 10] [0320143942] +14:31:55 [ 11] [ 6] [009296] +14:31:55 [ 12] [ 6] [143942] +14:31:55 [ 13] [ 4] [0320] +14:31:55 [ 14] [ 4] [1803] +14:31:55 [ 15] [ 4] [0320] +14:31:55 [ 18] [ 4] [6011] +14:31:55 [ 22] [ 3] [900] +14:31:55 [ 25] [ 2] [02] +14:31:55 [ 28] [ 9] [000000000] +14:31:55 [ 32] [ 6] [220699] +14:31:55 [ 35] [ 27] [1808930600013502=1803500061] +14:31:55 [ 37] [ 12] [507900213257] +14:31:55 [ 41] [ 8] [05000100] +14:31:55 [ 42] [ 15] [APTRA ] +14:31:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:31:55 [ 49] [ 3] [418] +14:31:55 [ 52] [ 16] [ADEBA154E3280629] +14:31:55 ============================================================================ +14:31:55 + + +waiting on router queue for slot.... +14:31:55 Sending to : +14:31:55 ============================================================================ +14:31:55 ============================================================================ +14:31:55 Slot Id : <28> +14:31:55 Transaction Type : REQUEST +14:31:55 Received From : +14:31:55 ============================================================================ +14:31:55 FNo. Len. Field Value +14:31:55 ============================================================================ +14:31:55 [ 1] [ 4] [0200] +14:31:55 [ 2] [ 16] [1808930600013502] +14:31:55 [ 3] [ 6] [311000] +14:31:55 [ 4] [ 12] [000000000000] +14:31:55 [ 7] [ 10] [0320143942] +14:31:55 [ 11] [ 6] [009296] +14:31:55 [ 12] [ 6] [143942] +14:31:55 [ 13] [ 4] [0320] +14:31:55 [ 14] [ 4] [1803] +14:31:55 [ 15] [ 4] [0320] +14:31:55 [ 18] [ 4] [6011] +14:31:55 [ 22] [ 3] [900] +14:31:55 [ 25] [ 2] [02] +14:31:55 [ 28] [ 9] [000000000] +14:31:55 [ 32] [ 6] [220699] +14:31:55 [ 35] [ 27] [1808930600013502=1803500061] +14:31:55 [ 37] [ 12] [507900213257] +14:31:55 [ 41] [ 8] [05000100] +14:31:55 [ 42] [ 15] [APTRA ] +14:31:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:31:55 [ 49] [ 3] [418] +14:31:55 [ 52] [ 16] [4B2F9D9372E7BC80] +14:31:55 ============================================================================ +14:31:55 + + +waiting on router queue for slot.... +14:31:55 Sending to : <2> +14:31:55 ============================================================================ +14:32:01 ============================================================================ +14:32:01 Slot Id : <28> +14:32:01 Transaction Type : RESPONSE +14:32:01 Received From : +14:32:01 ============================================================================ +14:32:01 FNo. Len. Field Value +14:32:01 ============================================================================ +14:32:01 [ 1] [ 4] [0210] +14:32:01 [ 2] [ 16] [1808930600013502] +14:32:01 [ 3] [ 6] [301000] +14:32:01 [ 7] [ 10] [0320143942] +14:32:01 [ 11] [ 6] [009296] +14:32:01 [ 12] [ 6] [143942] +14:32:01 [ 13] [ 4] [0320] +14:32:01 [ 14] [ 4] [1803] +14:32:01 [ 19] [ 3] [418] +14:32:01 [ 32] [ 6] [220699] +14:32:01 [ 37] [ 12] [507900213257] +14:32:01 [ 38] [ 6] [009296] +14:32:01 [ 39] [ 2] [00] +14:32:01 [ 41] [ 8] [05000100] +14:32:01 [ 49] [ 3] [418] +14:32:01 [ 52] [ 16] [4B2F9D9372E7BC80] +14:32:01 [ 54] [ 20] [1002418C000460579500] +14:32:01 ============================================================================ +14:32:01 Sending to : +14:32:01 ============================================================================ +14:32:01 + + +waiting on router queue for slot.... +14:32:01 ============================================================================ +14:32:01 Slot Id : <43> +14:32:01 Transaction Type : REQUEST +14:32:01 Received From : +14:32:01 ============================================================================ +14:32:01 FNo. Len. Field Value +14:32:01 ============================================================================ +14:32:01 [ 1] [ 4] [0200] +14:32:01 [ 2] [ 16] [6688990104022007] +14:32:01 [ 3] [ 6] [010000] +14:32:01 [ 4] [ 12] [000010000000] +14:32:01 [ 7] [ 10] [0320073108] +14:32:01 [ 11] [ 6] [269677] +14:32:01 [ 12] [ 6] [143108] +14:32:01 [ 13] [ 4] [0320] +14:32:01 [ 14] [ 4] [4302] +14:32:01 [ 15] [ 4] [0320] +14:32:01 [ 18] [ 4] [6011] +14:32:01 [ 19] [ 3] [418] +14:32:01 [ 22] [ 3] [021] +14:32:01 [ 25] [ 2] [01] +14:32:01 [ 28] [ 9] [D00002000] +14:32:01 [ 32] [ 6] [180893] +14:32:01 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:32:01 [ 37] [ 12] [507907269677] +14:32:01 [ 41] [ 8] [0421BKPH] +14:32:01 [ 42] [ 15] [999999 ] +14:32:01 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:32:01 [ 49] [ 3] [418] +14:32:01 [ 52] [ 16] [473334DCBE911001] +14:32:01 ============================================================================ +14:32:01 + + +waiting on router queue for slot.... +14:32:01 Sending to : +14:32:01 ============================================================================ +14:32:01 Sending to : +14:32:01 ============================================================================ +14:32:02 ============================================================================ +14:32:02 Slot Id : <43> +14:32:02 Transaction Type : REQUEST +14:32:02 Received From : +14:32:02 ============================================================================ +14:32:02 FNo. Len. Field Value +14:32:02 ============================================================================ +14:32:02 [ 1] [ 4] [0200] +14:32:02 [ 2] [ 16] [6688990104022007] +14:32:02 [ 3] [ 6] [010000] +14:32:02 [ 4] [ 12] [000010000000] +14:32:02 [ 7] [ 10] [0320073108] +14:32:02 [ 11] [ 6] [269677] +14:32:02 [ 12] [ 6] [143108] +14:32:02 [ 13] [ 4] [0320] +14:32:02 [ 14] [ 4] [4302] +14:32:02 [ 15] [ 4] [0320] +14:32:02 [ 18] [ 4] [6011] +14:32:02 [ 19] [ 3] [418] +14:32:02 [ 22] [ 3] [021] +14:32:02 [ 25] [ 2] [01] +14:32:02 [ 28] [ 9] [D00002000] +14:32:02 [ 32] [ 6] [180893] +14:32:02 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:32:02 [ 37] [ 12] [507907269677] +14:32:02 [ 41] [ 8] [0421BKPH] +14:32:02 [ 42] [ 15] [999999 ] +14:32:02 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:32:02 [ 49] [ 3] [418] +14:32:02 [ 52] [ 16] [473334DCBE911001] +14:32:02 ============================================================================ +14:32:02 + + +waiting on router queue for slot.... +14:32:02 Sending to : +14:32:02 ============================================================================ +14:32:02 ============================================================================ +14:32:02 Slot Id : <43> +14:32:02 Transaction Type : REQUEST +14:32:02 Received From : +14:32:02 ============================================================================ +14:32:02 FNo. Len. Field Value +14:32:02 ============================================================================ +14:32:02 [ 1] [ 4] [0200] +14:32:02 [ 2] [ 16] [6688990104022007] +14:32:02 [ 3] [ 6] [010000] +14:32:02 [ 4] [ 12] [000010000000] +14:32:02 [ 7] [ 10] [0320073108] +14:32:02 [ 11] [ 6] [269677] +14:32:02 [ 12] [ 6] [143108] +14:32:02 [ 13] [ 4] [0320] +14:32:02 [ 14] [ 4] [4302] +14:32:02 [ 15] [ 4] [0320] +14:32:02 [ 18] [ 4] [6011] +14:32:02 [ 19] [ 3] [418] +14:32:02 [ 22] [ 3] [021] +14:32:02 [ 25] [ 2] [01] +14:32:02 [ 28] [ 9] [D00002000] +14:32:02 [ 32] [ 6] [180893] +14:32:02 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:32:02 [ 37] [ 12] [507907269677] +14:32:02 [ 41] [ 8] [0421BKPH] +14:32:02 [ 42] [ 15] [999999 ] +14:32:02 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:32:02 [ 49] [ 3] [418] +14:32:02 [ 52] [ 16] [3F768CEE6B61742D] +14:32:02 ============================================================================ +14:32:02 + + +waiting on router queue for slot.... +14:32:02 Sending to : <0> +14:32:02 ============================================================================ +14:32:02 ============================================================================ +14:32:02 Slot Id : <43> +14:32:02 Transaction Type : RESPONSE +14:32:02 Received From : +14:32:02 ============================================================================ +14:32:02 FNo. Len. Field Value +14:32:02 ============================================================================ +14:32:02 [ 1] [ 4] [0210] +14:32:02 [ 2] [ 16] [6688990104022007] +14:32:02 [ 3] [ 6] [010000] +14:32:02 [ 4] [ 12] [000010000000] +14:32:02 [ 7] [ 10] [0320073108] +14:32:02 [ 11] [ 6] [269677] +14:32:02 [ 12] [ 6] [143108] +14:32:02 [ 13] [ 4] [0320] +14:32:02 [ 15] [ 4] [0320] +14:32:02 [ 18] [ 4] [6011] +14:32:02 [ 19] [ 3] [418] +14:32:02 [ 22] [ 3] [021] +14:32:02 [ 32] [ 6] [180893] +14:32:02 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:32:02 [ 37] [ 12] [507907269677] +14:32:02 [ 39] [ 2] [14] +14:32:02 [ 41] [ 8] [0421BKPH] +14:32:02 [ 49] [ 3] [418] +14:32:02 ============================================================================ +14:32:02 Sending to : +14:32:02 ============================================================================ +14:32:02 + + +waiting on router queue for slot.... +14:32:02 ============================================================================ +14:32:02 Slot Id : <7> +14:32:02 Transaction Type : REQUEST +14:32:02 Received From : +14:32:02 ============================================================================ +14:32:02 FNo. Len. Field Value +14:32:02 ============================================================================ +14:32:02 [ 1] [ 4] [0200] +14:32:02 [ 2] [ 16] [6213541000565088] +14:32:02 [ 3] [ 6] [301000] +14:32:02 [ 4] [ 12] [000000000000] +14:32:02 [ 7] [ 10] [0320142953] +14:32:02 [ 11] [ 6] [948615] +14:32:02 [ 12] [ 6] [142953] +14:32:02 [ 13] [ 4] [0320] +14:32:02 [ 15] [ 4] [0320] +14:32:02 [ 18] [ 4] [6011] +14:32:02 [ 19] [ 3] [418] +14:32:02 [ 22] [ 3] [021] +14:32:02 [ 25] [ 2] [01] +14:32:02 [ 28] [ 9] [D00000000] +14:32:02 [ 32] [ 6] [668899] +14:32:02 [ 35] [ 32] [6213541000565088=491212016508201] +14:32:02 [ 37] [ 12] [507901963617] +14:32:02 [ 41] [ 8] [03020019] +14:32:02 [ 42] [ 15] [APT ] +14:32:02 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:32:02 [ 49] [ 3] [418] +14:32:02 [ 52] [ 16] [A451502A1F24E72E] +14:32:02 ============================================================================ +14:32:02 + + +waiting on router queue for slot.... +14:32:02 Sending to : +14:32:02 ============================================================================ +14:32:02 Sending to : +14:32:02 ============================================================================ +14:32:03 ============================================================================ +14:32:03 Slot Id : <7> +14:32:03 Transaction Type : REQUEST +14:32:03 Received From : +14:32:03 ============================================================================ +14:32:03 FNo. Len. Field Value +14:32:03 ============================================================================ +14:32:03 [ 1] [ 4] [0200] +14:32:03 [ 2] [ 16] [6213541000565088] +14:32:03 [ 3] [ 6] [301000] +14:32:03 [ 4] [ 12] [000000000000] +14:32:03 [ 7] [ 10] [0320142953] +14:32:03 [ 11] [ 6] [948615] +14:32:03 [ 12] [ 6] [142953] +14:32:03 [ 13] [ 4] [0320] +14:32:03 [ 15] [ 4] [0320] +14:32:03 [ 18] [ 4] [6011] +14:32:03 [ 19] [ 3] [418] +14:32:03 [ 22] [ 3] [021] +14:32:03 [ 25] [ 2] [01] +14:32:03 [ 28] [ 9] [D00000000] +14:32:03 [ 32] [ 6] [668899] +14:32:03 [ 35] [ 32] [6213541000565088=491212016508201] +14:32:03 [ 37] [ 12] [507901963617] +14:32:03 [ 41] [ 8] [03020019] +14:32:03 [ 42] [ 15] [APT ] +14:32:03 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:32:03 [ 49] [ 3] [418] +14:32:03 [ 52] [ 16] [A451502A1F24E72E] +14:32:03 ============================================================================ +14:32:03 + + +waiting on router queue for slot.... +14:32:03 Sending to : +14:32:03 ============================================================================ +14:32:03 ============================================================================ +14:32:03 Slot Id : <7> +14:32:03 Transaction Type : REQUEST +14:32:03 Received From : +14:32:03 ============================================================================ +14:32:03 FNo. Len. Field Value +14:32:03 ============================================================================ +14:32:03 [ 1] [ 4] [0200] +14:32:03 [ 2] [ 16] [6213541000565088] +14:32:03 [ 3] [ 6] [301000] +14:32:03 [ 4] [ 12] [000000000000] +14:32:03 [ 7] [ 10] [0320142953] +14:32:03 [ 11] [ 6] [948615] +14:32:03 [ 12] [ 6] [142953] +14:32:03 [ 13] [ 4] [0320] +14:32:03 [ 15] [ 4] [0320] +14:32:03 [ 18] [ 4] [6011] +14:32:03 [ 19] [ 3] [418] +14:32:03 [ 22] [ 3] [021] +14:32:03 [ 25] [ 2] [01] +14:32:03 [ 28] [ 9] [D00000000] +14:32:03 [ 32] [ 6] [668899] +14:32:03 [ 35] [ 32] [6213541000565088=491212016508201] +14:32:03 [ 37] [ 12] [507901963617] +14:32:03 [ 41] [ 8] [03020019] +14:32:03 [ 42] [ 15] [APT ] +14:32:03 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:32:03 [ 49] [ 3] [418] +14:32:03 [ 52] [ 16] [A21783FDAE0B5F64] +14:32:03 ============================================================================ +14:32:03 + + +waiting on router queue for slot.... +14:32:03 Sending to : <0> +14:32:03 ============================================================================ +14:32:03 ============================================================================ +14:32:03 Slot Id : <28> +14:32:03 Transaction Type : RESPONSE +14:32:03 Received From : +14:32:03 ============================================================================ +14:32:03 FNo. Len. Field Value +14:32:03 ============================================================================ +14:32:03 [ 1] [ 4] [0210] +14:32:03 [ 2] [ 16] [1808930600013502] +14:32:03 [ 3] [ 6] [301000] +14:32:03 [ 7] [ 10] [0320143942] +14:32:03 [ 11] [ 6] [009296] +14:32:03 [ 12] [ 6] [143942] +14:32:03 [ 13] [ 4] [0320] +14:32:03 [ 14] [ 4] [1803] +14:32:03 [ 19] [ 3] [418] +14:32:03 [ 32] [ 6] [220699] +14:32:03 [ 37] [ 12] [507900213257] +14:32:03 [ 38] [ 6] [009296] +14:32:03 [ 39] [ 2] [00] +14:32:03 [ 41] [ 8] [05000100] +14:32:03 [ 49] [ 3] [418] +14:32:03 [ 52] [ 16] [4B2F9D9372E7BC80] +14:32:03 [ 54] [ 20] [1002418C000460579500] +14:32:03 ============================================================================ +14:32:03 Calculate Source COMM Id = 1 +14:32:03 ============================================================================ +14:32:03 + + +waiting on router queue for slot.... +14:32:03 ============================================================================ +14:32:03 Slot Id : <7> +14:32:03 Transaction Type : RESPONSE +14:32:03 Received From : +14:32:03 ============================================================================ +14:32:03 FNo. Len. Field Value +14:32:03 ============================================================================ +14:32:03 [ 1] [ 4] [0210] +14:32:03 [ 2] [ 16] [6213541000565088] +14:32:03 [ 3] [ 6] [301000] +14:32:03 [ 4] [ 12] [000000000000] +14:32:03 [ 7] [ 10] [0320142953] +14:32:03 [ 11] [ 6] [948615] +14:32:03 [ 12] [ 6] [142953] +14:32:03 [ 13] [ 4] [0320] +14:32:03 [ 15] [ 4] [0320] +14:32:03 [ 18] [ 4] [6011] +14:32:03 [ 19] [ 3] [418] +14:32:03 [ 32] [ 6] [668899] +14:32:03 [ 35] [ 32] [6213541000565088=491212016508201] +14:32:03 [ 37] [ 12] [507901963617] +14:32:03 [ 38] [ 6] [691350] +14:32:03 [ 39] [ 2] [00] +14:32:03 [ 41] [ 8] [03020019] +14:32:03 [ 49] [ 3] [418] +14:32:03 [ 54] [ 40] [1001418C0000552274831002418C000055227483] +14:32:03 ============================================================================ +14:32:03 Sending to : +14:32:03 ============================================================================ +14:32:03 + + +waiting on router queue for slot.... +14:32:04 ============================================================================ +14:32:04 Slot Id : <43> +14:32:04 Transaction Type : RESPONSE +14:32:04 Received From : +14:32:04 ============================================================================ +14:32:04 FNo. Len. Field Value +14:32:04 ============================================================================ +14:32:04 [ 1] [ 4] [0210] +14:32:04 [ 2] [ 16] [6688990104022007] +14:32:04 [ 3] [ 6] [010000] +14:32:04 [ 4] [ 12] [000010000000] +14:32:04 [ 7] [ 10] [0320073108] +14:32:04 [ 11] [ 6] [269677] +14:32:04 [ 12] [ 6] [143108] +14:32:04 [ 13] [ 4] [0320] +14:32:04 [ 15] [ 4] [0320] +14:32:04 [ 18] [ 4] [6011] +14:32:04 [ 19] [ 3] [418] +14:32:04 [ 22] [ 3] [021] +14:32:04 [ 32] [ 6] [180893] +14:32:04 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:32:04 [ 37] [ 12] [507907269677] +14:32:04 [ 39] [ 2] [14] +14:32:04 [ 41] [ 8] [0421BKPH] +14:32:04 [ 49] [ 3] [418] +14:32:04 ============================================================================ +14:32:04 Calculate Source COMM Id = 2 +14:32:04 ============================================================================ +14:32:04 + + +waiting on router queue for slot.... +14:32:05 ============================================================================ +14:32:05 Slot Id : <7> +14:32:05 Transaction Type : RESPONSE +14:32:05 Received From : +14:32:05 ============================================================================ +14:32:05 FNo. Len. Field Value +14:32:05 ============================================================================ +14:32:05 [ 1] [ 4] [0210] +14:32:05 [ 2] [ 16] [6213541000565088] +14:32:05 [ 3] [ 6] [301000] +14:32:05 [ 4] [ 12] [000000000000] +14:32:05 [ 7] [ 10] [0320142953] +14:32:05 [ 11] [ 6] [948615] +14:32:05 [ 12] [ 6] [142953] +14:32:05 [ 13] [ 4] [0320] +14:32:05 [ 15] [ 4] [0320] +14:32:05 [ 18] [ 4] [6011] +14:32:05 [ 19] [ 3] [418] +14:32:05 [ 32] [ 6] [668899] +14:32:05 [ 35] [ 32] [6213541000565088=491212016508201] +14:32:05 [ 37] [ 12] [507901963617] +14:32:05 [ 38] [ 6] [691350] +14:32:05 [ 39] [ 2] [00] +14:32:05 [ 41] [ 8] [03020019] +14:32:05 [ 49] [ 3] [418] +14:32:05 [ 54] [ 40] [1001418C0000552274831002418C000055227483] +14:32:05 ============================================================================ +14:32:05 Calculate Source COMM Id = 4 +14:32:05 ============================================================================ +14:32:05 + + +waiting on router queue for slot.... +14:32:06 ============================================================================ +14:32:06 Slot Id : <52> +14:32:06 Transaction Type : REQUEST +14:32:06 Received From : +14:32:06 ============================================================================ +14:32:06 FNo. Len. Field Value +14:32:06 ============================================================================ +14:32:06 [ 1] [ 4] [0200] +14:32:06 [ 2] [ 16] [6688990106324609] +14:32:06 [ 3] [ 6] [011000] +14:32:06 [ 4] [ 12] [000090000000] +14:32:06 [ 7] [ 10] [0320143202] +14:32:06 [ 11] [ 6] [771316] +14:32:06 [ 12] [ 6] [143202] +14:32:06 [ 13] [ 4] [0320] +14:32:06 [ 15] [ 4] [0320] +14:32:06 [ 18] [ 4] [6011] +14:32:06 [ 22] [ 3] [900] +14:32:06 [ 25] [ 2] [02] +14:32:06 [ 28] [ 9] [D00002000] +14:32:06 [ 32] [ 6] [621354] +14:32:06 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:32:06 [ 37] [ 12] [507904645096] +14:32:06 [ 41] [ 8] [17000900] +14:32:06 [ 42] [ 15] [NATIVE ] +14:32:06 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:32:06 [ 49] [ 3] [418] +14:32:06 [ 52] [ 16] [0CCDAADC019EAFE1] +14:32:06 ============================================================================ +14:32:06 + + +waiting on router queue for slot.... +14:32:06 Sending to : +14:32:06 ============================================================================ +14:32:06 Sending to : +14:32:06 ============================================================================ +14:32:06 ============================================================================ +14:32:06 Slot Id : <52> +14:32:06 Transaction Type : REQUEST +14:32:06 Received From : +14:32:06 ============================================================================ +14:32:06 FNo. Len. Field Value +14:32:06 ============================================================================ +14:32:06 [ 1] [ 4] [0200] +14:32:06 [ 2] [ 16] [6688990106324609] +14:32:06 [ 3] [ 6] [011000] +14:32:06 [ 4] [ 12] [000090000000] +14:32:06 [ 7] [ 10] [0320143202] +14:32:06 [ 11] [ 6] [771316] +14:32:06 [ 12] [ 6] [143202] +14:32:06 [ 13] [ 4] [0320] +14:32:06 [ 15] [ 4] [0320] +14:32:06 [ 18] [ 4] [6011] +14:32:06 [ 22] [ 3] [900] +14:32:06 [ 25] [ 2] [02] +14:32:06 [ 28] [ 9] [D00002000] +14:32:06 [ 32] [ 6] [621354] +14:32:06 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:32:06 [ 37] [ 12] [507904645096] +14:32:06 [ 41] [ 8] [17000900] +14:32:06 [ 42] [ 15] [NATIVE ] +14:32:06 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:32:06 [ 49] [ 3] [418] +14:32:06 [ 52] [ 16] [0CCDAADC019EAFE1] +14:32:06 ============================================================================ +14:32:06 + + +waiting on router queue for slot.... +14:32:06 Sending to : +14:32:06 ============================================================================ +14:32:06 ============================================================================ +14:32:06 Slot Id : <52> +14:32:06 Transaction Type : REQUEST +14:32:06 Received From : +14:32:06 ============================================================================ +14:32:06 FNo. Len. Field Value +14:32:06 ============================================================================ +14:32:06 [ 1] [ 4] [0200] +14:32:06 [ 2] [ 16] [6688990106324609] +14:32:06 [ 3] [ 6] [011000] +14:32:06 [ 4] [ 12] [000090000000] +14:32:06 [ 7] [ 10] [0320143202] +14:32:06 [ 11] [ 6] [771316] +14:32:06 [ 12] [ 6] [143202] +14:32:06 [ 13] [ 4] [0320] +14:32:06 [ 15] [ 4] [0320] +14:32:06 [ 18] [ 4] [6011] +14:32:06 [ 22] [ 3] [900] +14:32:06 [ 25] [ 2] [02] +14:32:06 [ 28] [ 9] [D00002000] +14:32:06 [ 32] [ 6] [621354] +14:32:06 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:32:06 [ 37] [ 12] [507904645096] +14:32:06 [ 41] [ 8] [17000900] +14:32:06 [ 42] [ 15] [NATIVE ] +14:32:06 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:32:06 [ 49] [ 3] [418] +14:32:06 [ 52] [ 16] [F4C3CE7967A18FE7] +14:32:06 ============================================================================ +14:32:06 + + +waiting on router queue for slot.... +14:32:06 Sending to : <4> +14:32:06 ============================================================================ +14:32:09 ============================================================================ +14:32:09 Slot Id : <52> +14:32:09 Transaction Type : RESPONSE +14:32:09 Received From : +14:32:09 ============================================================================ +14:32:09 FNo. Len. Field Value +14:32:09 ============================================================================ +14:32:09 [ 1] [ 4] [0210] +14:32:09 [ 2] [ 16] [6688990106324609] +14:32:09 [ 3] [ 6] [011000] +14:32:09 [ 4] [ 12] [000090000000] +14:32:09 [ 11] [ 6] [771316] +14:32:09 [ 12] [ 6] [143202] +14:32:09 [ 15] [ 4] [0320] +14:32:09 [ 18] [ 4] [6011] +14:32:09 [ 32] [ 6] [621354] +14:32:09 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:32:09 [ 37] [ 12] [507904645096] +14:32:09 [ 38] [ 6] [256154] +14:32:09 [ 39] [ 2] [00] +14:32:09 [ 41] [ 8] [17000900] +14:32:09 [ 49] [ 3] [418] +14:32:09 [ 54] [ 20] [1002418C000106304864] +14:32:09 ============================================================================ +14:32:09 Sending to : +14:32:09 ============================================================================ +14:32:09 + + +waiting on router queue for slot.... +14:32:11 ============================================================================ +14:32:11 Slot Id : <52> +14:32:11 Transaction Type : RESPONSE +14:32:11 Received From : +14:32:11 ============================================================================ +14:32:11 FNo. Len. Field Value +14:32:11 ============================================================================ +14:32:11 [ 1] [ 4] [0210] +14:32:11 [ 2] [ 16] [6688990106324609] +14:32:11 [ 3] [ 6] [011000] +14:32:11 [ 4] [ 12] [000090000000] +14:32:11 [ 11] [ 6] [771316] +14:32:11 [ 12] [ 6] [143202] +14:32:11 [ 15] [ 4] [0320] +14:32:11 [ 18] [ 4] [6011] +14:32:11 [ 32] [ 6] [621354] +14:32:11 [ 35] [ 37] [6688990106324609=43121231460916000000] +14:32:11 [ 37] [ 12] [507904645096] +14:32:11 [ 38] [ 6] [256154] +14:32:11 [ 39] [ 2] [00] +14:32:11 [ 41] [ 8] [17000900] +14:32:11 [ 49] [ 3] [418] +14:32:11 [ 54] [ 20] [1002418C000106304864] +14:32:11 ============================================================================ +14:32:11 Calculate Source COMM Id = 0 +14:32:11 ============================================================================ +14:32:11 + + +waiting on router queue for slot.... +14:32:11 ============================================================================ +14:32:11 Slot Id : <50> +14:32:11 Transaction Type : REQUEST +14:32:11 Received From : +14:32:11 ============================================================================ +14:32:11 FNo. Len. Field Value +14:32:11 ============================================================================ +14:32:11 [ 1] [ 4] [0200] +14:32:11 [ 2] [ 16] [1808930700009590] +14:32:11 [ 3] [ 6] [011000] +14:32:11 [ 4] [ 12] [000015000000] +14:32:11 [ 7] [ 10] [0320143207] +14:32:11 [ 11] [ 6] [771339] +14:32:11 [ 12] [ 6] [143207] +14:32:11 [ 13] [ 4] [0320] +14:32:11 [ 15] [ 4] [0320] +14:32:11 [ 18] [ 4] [6011] +14:32:11 [ 22] [ 3] [900] +14:32:11 [ 25] [ 2] [02] +14:32:11 [ 28] [ 9] [D00002000] +14:32:11 [ 32] [ 6] [621354] +14:32:11 [ 35] [ 27] [1808930700009590=1803500413] +14:32:11 [ 37] [ 12] [507903335017] +14:32:11 [ 41] [ 8] [13001300] +14:32:11 [ 42] [ 15] [NATIVE ] +14:32:11 [ 43] [ 40] [Numngam Unit Paek LAO] +14:32:11 [ 49] [ 3] [418] +14:32:11 [ 52] [ 16] [72E6FEDEA98ACA7C] +14:32:11 ============================================================================ +14:32:11 + + +waiting on router queue for slot.... +14:32:11 Sending to : +14:32:11 ============================================================================ +14:32:11 Sending to : +14:32:11 ============================================================================ +14:32:12 ============================================================================ +14:32:12 Slot Id : <50> +14:32:12 Transaction Type : REQUEST +14:32:12 Received From : +14:32:12 ============================================================================ +14:32:12 FNo. Len. Field Value +14:32:12 ============================================================================ +14:32:12 [ 1] [ 4] [0200] +14:32:12 [ 2] [ 16] [1808930700009590] +14:32:12 [ 3] [ 6] [011000] +14:32:12 [ 4] [ 12] [000015000000] +14:32:12 [ 7] [ 10] [0320143207] +14:32:12 [ 11] [ 6] [771339] +14:32:12 [ 12] [ 6] [143207] +14:32:12 [ 13] [ 4] [0320] +14:32:12 [ 15] [ 4] [0320] +14:32:12 [ 18] [ 4] [6011] +14:32:12 [ 22] [ 3] [900] +14:32:12 [ 25] [ 2] [02] +14:32:12 [ 28] [ 9] [D00002000] +14:32:12 [ 32] [ 6] [621354] +14:32:12 [ 35] [ 27] [1808930700009590=1803500413] +14:32:12 [ 37] [ 12] [507903335017] +14:32:12 [ 41] [ 8] [13001300] +14:32:12 [ 42] [ 15] [NATIVE ] +14:32:12 [ 43] [ 40] [Numngam Unit Paek LAO] +14:32:12 [ 49] [ 3] [418] +14:32:12 [ 52] [ 16] [72E6FEDEA98ACA7C] +14:32:12 ============================================================================ +14:32:12 + + +waiting on router queue for slot.... +14:32:12 Sending to : +14:32:12 ============================================================================ +14:32:12 ============================================================================ +14:32:12 Slot Id : <50> +14:32:12 Transaction Type : REQUEST +14:32:12 Received From : +14:32:12 ============================================================================ +14:32:12 FNo. Len. Field Value +14:32:12 ============================================================================ +14:32:12 [ 1] [ 4] [0200] +14:32:12 [ 2] [ 16] [1808930700009590] +14:32:12 [ 3] [ 6] [011000] +14:32:12 [ 4] [ 12] [000015000000] +14:32:12 [ 7] [ 10] [0320143207] +14:32:12 [ 11] [ 6] [771339] +14:32:12 [ 12] [ 6] [143207] +14:32:12 [ 13] [ 4] [0320] +14:32:12 [ 15] [ 4] [0320] +14:32:12 [ 18] [ 4] [6011] +14:32:12 [ 22] [ 3] [900] +14:32:12 [ 25] [ 2] [02] +14:32:12 [ 28] [ 9] [D00002000] +14:32:12 [ 32] [ 6] [621354] +14:32:12 [ 35] [ 27] [1808930700009590=1803500413] +14:32:12 [ 37] [ 12] [507903335017] +14:32:12 [ 41] [ 8] [13001300] +14:32:12 [ 42] [ 15] [NATIVE ] +14:32:12 [ 43] [ 40] [Numngam Unit Paek LAO] +14:32:12 [ 49] [ 3] [418] +14:32:12 [ 52] [ 16] [5AC669B17D2F5775] +14:32:12 ============================================================================ +14:32:12 + + +waiting on router queue for slot.... +14:32:12 Sending to : <2> +14:32:12 ============================================================================ +14:32:15 ============================================================================ +14:32:15 Slot Id : <25> +14:32:15 Transaction Type : REQUEST +14:32:15 Received From : +14:32:15 ============================================================================ +14:32:15 FNo. Len. Field Value +14:32:15 ============================================================================ +14:32:15 [ 1] [ 4] [0200] +14:32:15 [ 2] [ 16] [6213544001068284] +14:32:15 [ 3] [ 6] [011000] +14:32:15 [ 4] [ 12] [000005000000] +14:32:15 [ 7] [ 10] [0320144002] +14:32:15 [ 11] [ 6] [168961] +14:32:15 [ 12] [ 6] [144002] +14:32:15 [ 13] [ 4] [0320] +14:32:15 [ 14] [ 4] [4912] +14:32:15 [ 15] [ 4] [0320] +14:32:15 [ 18] [ 4] [6011] +14:32:15 [ 22] [ 3] [900] +14:32:15 [ 25] [ 2] [02] +14:32:15 [ 28] [ 9] [D00002000] +14:32:15 [ 32] [ 6] [220699] +14:32:15 [ 35] [ 32] [6213544001068284=491212016828320] +14:32:15 [ 37] [ 12] [507900026371] +14:32:15 [ 41] [ 8] [01000200] +14:32:15 [ 42] [ 15] [APTRA ] +14:32:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:32:15 [ 49] [ 3] [418] +14:32:15 [ 52] [ 16] [C4A8007062172BFE] +14:32:15 ============================================================================ +14:32:15 + + +waiting on router queue for slot.... +14:32:15 Sending to : +14:32:15 ============================================================================ +14:32:15 Sending to : +14:32:15 ============================================================================ +14:32:15 ============================================================================ +14:32:15 Slot Id : <25> +14:32:15 Transaction Type : REQUEST +14:32:15 Received From : +14:32:15 ============================================================================ +14:32:15 FNo. Len. Field Value +14:32:15 ============================================================================ +14:32:15 [ 1] [ 4] [0200] +14:32:15 [ 2] [ 16] [6213544001068284] +14:32:15 [ 3] [ 6] [011000] +14:32:15 [ 4] [ 12] [000005000000] +14:32:15 [ 7] [ 10] [0320144002] +14:32:15 [ 11] [ 6] [168961] +14:32:15 [ 12] [ 6] [144002] +14:32:15 [ 13] [ 4] [0320] +14:32:15 [ 14] [ 4] [4912] +14:32:15 [ 15] [ 4] [0320] +14:32:15 [ 18] [ 4] [6011] +14:32:15 [ 22] [ 3] [900] +14:32:15 [ 25] [ 2] [02] +14:32:15 [ 28] [ 9] [D00002000] +14:32:15 [ 32] [ 6] [220699] +14:32:15 [ 35] [ 32] [6213544001068284=491212016828320] +14:32:15 [ 37] [ 12] [507900026371] +14:32:15 [ 41] [ 8] [01000200] +14:32:15 [ 42] [ 15] [APTRA ] +14:32:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:32:15 [ 49] [ 3] [418] +14:32:15 [ 52] [ 16] [C4A8007062172BFE] +14:32:15 ============================================================================ +14:32:15 + + +waiting on router queue for slot.... +14:32:15 Sending to : +14:32:15 ============================================================================ +14:32:15 ============================================================================ +14:32:15 Slot Id : <25> +14:32:15 Transaction Type : REQUEST +14:32:15 Received From : +14:32:15 ============================================================================ +14:32:15 FNo. Len. Field Value +14:32:15 ============================================================================ +14:32:15 [ 1] [ 4] [0200] +14:32:15 [ 2] [ 16] [6213544001068284] +14:32:15 [ 3] [ 6] [011000] +14:32:15 [ 4] [ 12] [000005000000] +14:32:15 [ 7] [ 10] [0320144002] +14:32:15 [ 11] [ 6] [168961] +14:32:15 [ 12] [ 6] [144002] +14:32:15 [ 13] [ 4] [0320] +14:32:15 [ 14] [ 4] [4912] +14:32:15 [ 15] [ 4] [0320] +14:32:15 [ 18] [ 4] [6011] +14:32:15 [ 22] [ 3] [900] +14:32:15 [ 25] [ 2] [02] +14:32:15 [ 28] [ 9] [D00002000] +14:32:15 [ 32] [ 6] [220699] +14:32:15 [ 35] [ 32] [6213544001068284=491212016828320] +14:32:15 [ 37] [ 12] [507900026371] +14:32:15 [ 41] [ 8] [01000200] +14:32:15 [ 42] [ 15] [APTRA ] +14:32:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:32:15 [ 49] [ 3] [418] +14:32:15 [ 52] [ 16] [EF8BE9E0A697A489] +14:32:15 ============================================================================ +14:32:15 + + +waiting on router queue for slot.... +14:32:15 Sending to : <0> +14:32:15 ============================================================================ +14:32:16 ============================================================================ +14:32:16 Slot Id : <25> +14:32:16 Transaction Type : RESPONSE +14:32:16 Received From : +14:32:16 ============================================================================ +14:32:16 FNo. Len. Field Value +14:32:16 ============================================================================ +14:32:16 [ 1] [ 4] [0210] +14:32:16 [ 2] [ 16] [6213544001068284] +14:32:16 [ 3] [ 6] [011000] +14:32:16 [ 4] [ 12] [000005000000] +14:32:16 [ 7] [ 10] [0320144002] +14:32:16 [ 11] [ 6] [168961] +14:32:16 [ 12] [ 6] [144002] +14:32:16 [ 13] [ 4] [0320] +14:32:16 [ 15] [ 4] [0320] +14:32:16 [ 18] [ 4] [6011] +14:32:16 [ 32] [ 6] [220699] +14:32:16 [ 35] [ 32] [6213544001068284=491212016828320] +14:32:16 [ 37] [ 12] [507900026371] +14:32:16 [ 38] [ 6] [134279] +14:32:16 [ 39] [ 2] [00] +14:32:16 [ 41] [ 8] [01000200] +14:32:16 [ 49] [ 3] [418] +14:32:16 [ 54] [ 40] [1001418C0000352865981002418C000035286598] +14:32:16 ============================================================================ +14:32:16 Sending to : +14:32:16 ============================================================================ +14:32:16 + + +waiting on router queue for slot.... +14:32:16 ============================================================================ +14:32:16 Slot Id : <50> +14:32:16 Transaction Type : RESPONSE +14:32:16 Received From : +14:32:16 ============================================================================ +14:32:16 FNo. Len. Field Value +14:32:16 ============================================================================ +14:32:16 [ 1] [ 4] [0210] +14:32:16 [ 2] [ 16] [1808930700009590] +14:32:16 [ 3] [ 6] [011000] +14:32:16 [ 4] [ 12] [000015000000] +14:32:16 [ 6] [ 12] [000015000000] +14:32:16 [ 7] [ 10] [0320143207] +14:32:16 [ 11] [ 6] [771339] +14:32:16 [ 12] [ 6] [143207] +14:32:16 [ 13] [ 4] [0320] +14:32:16 [ 18] [ 4] [6011] +14:32:16 [ 19] [ 3] [418] +14:32:16 [ 22] [ 3] [021] +14:32:16 [ 32] [ 6] [621354] +14:32:16 [ 35] [ 27] [1808930700009590=1803500413] +14:32:16 [ 37] [ 12] [507903335017] +14:32:16 [ 38] [ 6] [771339] +14:32:16 [ 39] [ 2] [51] +14:32:16 [ 41] [ 8] [13001300] +14:32:16 [ 49] [ 3] [418] +14:32:16 [ 52] [ 16] [5AC669B17D2F5775] +14:32:16 ============================================================================ +14:32:16 Sending to : +14:32:16 ============================================================================ +14:32:16 + + +waiting on router queue for slot.... +14:32:17 ============================================================================ +14:32:17 Slot Id : <25> +14:32:17 Transaction Type : RESPONSE +14:32:17 Received From : +14:32:17 ============================================================================ +14:32:17 FNo. Len. Field Value +14:32:17 ============================================================================ +14:32:17 [ 1] [ 4] [0210] +14:32:17 [ 2] [ 16] [6213544001068284] +14:32:17 [ 3] [ 6] [011000] +14:32:17 [ 4] [ 12] [000005000000] +14:32:17 [ 7] [ 10] [0320144002] +14:32:17 [ 11] [ 6] [168961] +14:32:17 [ 12] [ 6] [144002] +14:32:17 [ 13] [ 4] [0320] +14:32:17 [ 15] [ 4] [0320] +14:32:17 [ 18] [ 4] [6011] +14:32:17 [ 32] [ 6] [220699] +14:32:17 [ 35] [ 32] [6213544001068284=491212016828320] +14:32:17 [ 37] [ 12] [507900026371] +14:32:17 [ 38] [ 6] [134279] +14:32:17 [ 39] [ 2] [00] +14:32:17 [ 41] [ 8] [01000200] +14:32:17 [ 49] [ 3] [418] +14:32:17 [ 54] [ 40] [1001418C0000352865981002418C000035286598] +14:32:17 ============================================================================ +14:32:17 Calculate Source COMM Id = 1 +14:32:17 ============================================================================ +14:32:17 + + +waiting on router queue for slot.... +14:32:18 ============================================================================ +14:32:18 Slot Id : <50> +14:32:18 Transaction Type : RESPONSE +14:32:18 Received From : +14:32:18 ============================================================================ +14:32:18 FNo. Len. Field Value +14:32:18 ============================================================================ +14:32:18 [ 1] [ 4] [0210] +14:32:18 [ 2] [ 16] [1808930700009590] +14:32:18 [ 3] [ 6] [011000] +14:32:18 [ 4] [ 12] [000015000000] +14:32:18 [ 6] [ 12] [000015000000] +14:32:18 [ 7] [ 10] [0320143207] +14:32:18 [ 11] [ 6] [771339] +14:32:18 [ 12] [ 6] [143207] +14:32:18 [ 13] [ 4] [0320] +14:32:18 [ 18] [ 4] [6011] +14:32:18 [ 19] [ 3] [418] +14:32:18 [ 22] [ 3] [021] +14:32:18 [ 32] [ 6] [621354] +14:32:18 [ 35] [ 27] [1808930700009590=1803500413] +14:32:18 [ 37] [ 12] [507903335017] +14:32:18 [ 38] [ 6] [771339] +14:32:18 [ 39] [ 2] [51] +14:32:18 [ 41] [ 8] [13001300] +14:32:18 [ 49] [ 3] [418] +14:32:18 [ 52] [ 16] [5AC669B17D2F5775] +14:32:18 ============================================================================ +14:32:18 Calculate Source COMM Id = 0 +14:32:18 ============================================================================ +14:32:18 + + +waiting on router queue for slot.... +14:32:25 ============================================================================ +14:32:25 Slot Id : <61> +14:32:25 Transaction Type : REQUEST +14:32:25 Received From : +14:32:25 ============================================================================ +14:32:25 FNo. Len. Field Value +14:32:25 ============================================================================ +14:32:25 [ 1] [ 4] [0200] +14:32:25 [ 2] [ 16] [6688990106003203] +14:32:25 [ 3] [ 6] [301000] +14:32:25 [ 4] [ 12] [000000000000] +14:32:25 [ 7] [ 10] [0320143220] +14:32:25 [ 11] [ 6] [771395] +14:32:25 [ 12] [ 6] [143220] +14:32:25 [ 13] [ 4] [0320] +14:32:25 [ 15] [ 4] [0320] +14:32:25 [ 18] [ 4] [6011] +14:32:25 [ 22] [ 3] [900] +14:32:25 [ 25] [ 2] [02] +14:32:25 [ 28] [ 9] [D00000000] +14:32:25 [ 32] [ 6] [621354] +14:32:25 [ 35] [ 37] [6688990106003203=43111231320315700000] +14:32:25 [ 37] [ 12] [507903433319] +14:32:25 [ 41] [ 8] [06001600] +14:32:25 [ 42] [ 15] [NATIVE ] +14:32:25 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +14:32:25 [ 49] [ 3] [418] +14:32:25 [ 52] [ 16] [CBF74A9BFBE88620] +14:32:25 ============================================================================ +14:32:25 + + +waiting on router queue for slot.... +14:32:25 Sending to : +14:32:25 ============================================================================ +14:32:25 Sending to : +14:32:25 ============================================================================ +14:32:25 ============================================================================ +14:32:25 Slot Id : <61> +14:32:25 Transaction Type : REQUEST +14:32:25 Received From : +14:32:25 ============================================================================ +14:32:25 FNo. Len. Field Value +14:32:25 ============================================================================ +14:32:25 [ 1] [ 4] [0200] +14:32:25 [ 2] [ 16] [6688990106003203] +14:32:25 [ 3] [ 6] [301000] +14:32:25 [ 4] [ 12] [000000000000] +14:32:25 [ 7] [ 10] [0320143220] +14:32:25 [ 11] [ 6] [771395] +14:32:25 [ 12] [ 6] [143220] +14:32:25 [ 13] [ 4] [0320] +14:32:25 [ 15] [ 4] [0320] +14:32:25 [ 18] [ 4] [6011] +14:32:25 [ 22] [ 3] [900] +14:32:25 [ 25] [ 2] [02] +14:32:25 [ 28] [ 9] [D00000000] +14:32:25 [ 32] [ 6] [621354] +14:32:25 [ 35] [ 37] [6688990106003203=43111231320315700000] +14:32:25 [ 37] [ 12] [507903433319] +14:32:25 [ 41] [ 8] [06001600] +14:32:25 [ 42] [ 15] [NATIVE ] +14:32:25 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +14:32:25 [ 49] [ 3] [418] +14:32:25 [ 52] [ 16] [CBF74A9BFBE88620] +14:32:25 ============================================================================ +14:32:25 + + +waiting on router queue for slot.... +14:32:25 Sending to : +14:32:25 ============================================================================ +14:32:25 ============================================================================ +14:32:25 Slot Id : <61> +14:32:25 Transaction Type : REQUEST +14:32:25 Received From : +14:32:25 ============================================================================ +14:32:25 FNo. Len. Field Value +14:32:25 ============================================================================ +14:32:25 [ 1] [ 4] [0200] +14:32:25 [ 2] [ 16] [6688990106003203] +14:32:25 [ 3] [ 6] [301000] +14:32:25 [ 4] [ 12] [000000000000] +14:32:25 [ 7] [ 10] [0320143220] +14:32:25 [ 11] [ 6] [771395] +14:32:25 [ 12] [ 6] [143220] +14:32:25 [ 13] [ 4] [0320] +14:32:25 [ 15] [ 4] [0320] +14:32:25 [ 18] [ 4] [6011] +14:32:25 [ 22] [ 3] [900] +14:32:25 [ 25] [ 2] [02] +14:32:25 [ 28] [ 9] [D00000000] +14:32:25 [ 32] [ 6] [621354] +14:32:25 [ 35] [ 37] [6688990106003203=43111231320315700000] +14:32:25 [ 37] [ 12] [507903433319] +14:32:25 [ 41] [ 8] [06001600] +14:32:25 [ 42] [ 15] [NATIVE ] +14:32:25 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +14:32:25 [ 49] [ 3] [418] +14:32:25 [ 52] [ 16] [AF5D3D0489D7DA70] +14:32:25 ============================================================================ +14:32:25 + + +waiting on router queue for slot.... +14:32:25 Sending to : <4> +14:32:25 ============================================================================ +14:32:27 ============================================================================ +14:32:27 Slot Id : <61> +14:32:27 Transaction Type : RESPONSE +14:32:27 Received From : +14:32:27 ============================================================================ +14:32:27 FNo. Len. Field Value +14:32:27 ============================================================================ +14:32:27 [ 1] [ 4] [0210] +14:32:27 [ 2] [ 16] [6688990106003203] +14:32:27 [ 3] [ 6] [301000] +14:32:27 [ 4] [ 12] [000000000000] +14:32:27 [ 11] [ 6] [771395] +14:32:27 [ 12] [ 6] [143220] +14:32:27 [ 15] [ 4] [0320] +14:32:27 [ 18] [ 4] [6011] +14:32:27 [ 32] [ 6] [621354] +14:32:27 [ 35] [ 37] [6688990106003203=43111231320315700000] +14:32:27 [ 37] [ 12] [507903433319] +14:32:27 [ 38] [ 6] [132535] +14:32:27 [ 39] [ 2] [00] +14:32:27 [ 41] [ 8] [06001600] +14:32:27 [ 49] [ 3] [418] +14:32:27 [ 54] [ 20] [1002418C000452295984] +14:32:27 ============================================================================ +14:32:27 Sending to : +14:32:27 ============================================================================ +14:32:27 + + +waiting on router queue for slot.... +14:32:27 ============================================================================ +14:32:27 Slot Id : <44> +14:32:27 Transaction Type : REQUEST +14:32:27 Received From : +14:32:27 ============================================================================ +14:32:27 FNo. Len. Field Value +14:32:27 ============================================================================ +14:32:27 [ 1] [ 4] [0200] +14:32:27 [ 2] [ 16] [6213545000106058] +14:32:27 [ 3] [ 6] [010000] +14:32:27 [ 4] [ 12] [000010000000] +14:32:27 [ 7] [ 10] [0320073134] +14:32:27 [ 11] [ 6] [269682] +14:32:27 [ 12] [ 6] [143134] +14:32:27 [ 13] [ 4] [0320] +14:32:27 [ 14] [ 4] [4912] +14:32:27 [ 15] [ 4] [0320] +14:32:27 [ 18] [ 4] [6011] +14:32:27 [ 19] [ 3] [418] +14:32:27 [ 22] [ 3] [021] +14:32:27 [ 25] [ 2] [01] +14:32:27 [ 28] [ 9] [D00002000] +14:32:27 [ 32] [ 6] [180893] +14:32:27 [ 35] [ 32] [6213545000106058=491212010605542] +14:32:27 [ 37] [ 12] [507907269682] +14:32:27 [ 41] [ 8] [0243VTKS] +14:32:27 [ 42] [ 15] [999999 ] +14:32:27 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +14:32:27 [ 49] [ 3] [418] +14:32:27 [ 52] [ 16] [3135F27860FEC194] +14:32:27 ============================================================================ +14:32:27 + + +waiting on router queue for slot.... +14:32:27 Sending to : +14:32:27 ============================================================================ +14:32:27 Sending to : +14:32:27 ============================================================================ +14:32:27 ============================================================================ +14:32:27 Slot Id : <44> +14:32:27 Transaction Type : REQUEST +14:32:27 Received From : +14:32:27 ============================================================================ +14:32:27 FNo. Len. Field Value +14:32:27 ============================================================================ +14:32:27 [ 1] [ 4] [0200] +14:32:27 [ 2] [ 16] [6213545000106058] +14:32:27 [ 3] [ 6] [010000] +14:32:27 [ 4] [ 12] [000010000000] +14:32:27 [ 7] [ 10] [0320073134] +14:32:27 [ 11] [ 6] [269682] +14:32:27 [ 12] [ 6] [143134] +14:32:27 [ 13] [ 4] [0320] +14:32:27 [ 14] [ 4] [4912] +14:32:27 [ 15] [ 4] [0320] +14:32:27 [ 18] [ 4] [6011] +14:32:27 [ 19] [ 3] [418] +14:32:27 [ 22] [ 3] [021] +14:32:27 [ 25] [ 2] [01] +14:32:27 [ 28] [ 9] [D00002000] +14:32:27 [ 32] [ 6] [180893] +14:32:27 [ 35] [ 32] [6213545000106058=491212010605542] +14:32:27 [ 37] [ 12] [507907269682] +14:32:27 [ 41] [ 8] [0243VTKS] +14:32:27 [ 42] [ 15] [999999 ] +14:32:27 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +14:32:27 [ 49] [ 3] [418] +14:32:27 [ 52] [ 16] [3135F27860FEC194] +14:32:27 ============================================================================ +14:32:27 + + +waiting on router queue for slot.... +14:32:27 Sending to : +14:32:27 ============================================================================ +14:32:27 ============================================================================ +14:32:27 Slot Id : <44> +14:32:27 Transaction Type : REQUEST +14:32:27 Received From : +14:32:27 ============================================================================ +14:32:27 FNo. Len. Field Value +14:32:27 ============================================================================ +14:32:27 [ 1] [ 4] [0200] +14:32:27 [ 2] [ 16] [6213545000106058] +14:32:27 [ 3] [ 6] [010000] +14:32:27 [ 4] [ 12] [000010000000] +14:32:27 [ 7] [ 10] [0320073134] +14:32:27 [ 11] [ 6] [269682] +14:32:27 [ 12] [ 6] [143134] +14:32:27 [ 13] [ 4] [0320] +14:32:27 [ 14] [ 4] [4912] +14:32:27 [ 15] [ 4] [0320] +14:32:27 [ 18] [ 4] [6011] +14:32:27 [ 19] [ 3] [418] +14:32:27 [ 22] [ 3] [021] +14:32:27 [ 25] [ 2] [01] +14:32:27 [ 28] [ 9] [D00002000] +14:32:27 [ 32] [ 6] [180893] +14:32:27 [ 35] [ 32] [6213545000106058=491212010605542] +14:32:27 [ 37] [ 12] [507907269682] +14:32:27 [ 41] [ 8] [0243VTKS] +14:32:27 [ 42] [ 15] [999999 ] +14:32:27 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +14:32:27 [ 49] [ 3] [418] +14:32:27 [ 52] [ 16] [EB78E3F88E4497EF] +14:32:27 ============================================================================ +14:32:27 + + +waiting on router queue for slot.... +14:32:27 Sending to : <0> +14:32:27 ============================================================================ +14:32:28 ============================================================================ +14:32:28 Slot Id : <15> +14:32:28 Transaction Type : REQUEST +14:32:28 Received From : +14:32:28 ============================================================================ +14:32:28 FNo. Len. Field Value +14:32:28 ============================================================================ +14:32:28 [ 1] [ 4] [0200] +14:32:28 [ 2] [ 16] [6213541000565088] +14:32:28 [ 3] [ 6] [010000] +14:32:28 [ 4] [ 12] [000020000000] +14:32:28 [ 7] [ 10] [0320143018] +14:32:28 [ 11] [ 6] [948634] +14:32:28 [ 12] [ 6] [143018] +14:32:28 [ 13] [ 4] [0320] +14:32:28 [ 15] [ 4] [0320] +14:32:28 [ 18] [ 4] [6011] +14:32:28 [ 19] [ 3] [418] +14:32:28 [ 22] [ 3] [021] +14:32:28 [ 25] [ 2] [01] +14:32:28 [ 28] [ 9] [D00002000] +14:32:28 [ 32] [ 6] [668899] +14:32:28 [ 35] [ 32] [6213541000565088=491212016508201] +14:32:28 [ 37] [ 12] [507901963618] +14:32:28 [ 41] [ 8] [03020019] +14:32:28 [ 42] [ 15] [APT ] +14:32:28 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:32:28 [ 49] [ 3] [418] +14:32:28 [ 52] [ 16] [A451502A1F24E72E] +14:32:28 ============================================================================ +14:32:28 + + +waiting on router queue for slot.... +14:32:28 Sending to : +14:32:28 ============================================================================ +14:32:28 Sending to : +14:32:28 ============================================================================ +14:32:28 ============================================================================ +14:32:28 Slot Id : <15> +14:32:28 Transaction Type : REQUEST +14:32:28 Received From : +14:32:28 ============================================================================ +14:32:28 FNo. Len. Field Value +14:32:28 ============================================================================ +14:32:28 [ 1] [ 4] [0200] +14:32:28 [ 2] [ 16] [6213541000565088] +14:32:28 [ 3] [ 6] [010000] +14:32:28 [ 4] [ 12] [000020000000] +14:32:28 [ 7] [ 10] [0320143018] +14:32:28 [ 11] [ 6] [948634] +14:32:28 [ 12] [ 6] [143018] +14:32:28 [ 13] [ 4] [0320] +14:32:28 [ 15] [ 4] [0320] +14:32:28 [ 18] [ 4] [6011] +14:32:28 [ 19] [ 3] [418] +14:32:28 [ 22] [ 3] [021] +14:32:28 [ 25] [ 2] [01] +14:32:28 [ 28] [ 9] [D00002000] +14:32:28 [ 32] [ 6] [668899] +14:32:28 [ 35] [ 32] [6213541000565088=491212016508201] +14:32:28 [ 37] [ 12] [507901963618] +14:32:28 [ 41] [ 8] [03020019] +14:32:28 [ 42] [ 15] [APT ] +14:32:28 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:32:28 [ 49] [ 3] [418] +14:32:28 [ 52] [ 16] [A451502A1F24E72E] +14:32:28 ============================================================================ +14:32:28 + + +waiting on router queue for slot.... +14:32:28 Sending to : +14:32:28 ============================================================================ +14:32:28 ============================================================================ +14:32:28 Slot Id : <15> +14:32:28 Transaction Type : REQUEST +14:32:28 Received From : +14:32:28 ============================================================================ +14:32:28 FNo. Len. Field Value +14:32:28 ============================================================================ +14:32:28 [ 1] [ 4] [0200] +14:32:28 [ 2] [ 16] [6213541000565088] +14:32:28 [ 3] [ 6] [010000] +14:32:28 [ 4] [ 12] [000020000000] +14:32:28 [ 7] [ 10] [0320143018] +14:32:28 [ 11] [ 6] [948634] +14:32:28 [ 12] [ 6] [143018] +14:32:28 [ 13] [ 4] [0320] +14:32:28 [ 15] [ 4] [0320] +14:32:28 [ 18] [ 4] [6011] +14:32:28 [ 19] [ 3] [418] +14:32:28 [ 22] [ 3] [021] +14:32:28 [ 25] [ 2] [01] +14:32:28 [ 28] [ 9] [D00002000] +14:32:28 [ 32] [ 6] [668899] +14:32:28 [ 35] [ 32] [6213541000565088=491212016508201] +14:32:28 [ 37] [ 12] [507901963618] +14:32:28 [ 41] [ 8] [03020019] +14:32:28 [ 42] [ 15] [APT ] +14:32:28 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +14:32:28 [ 49] [ 3] [418] +14:32:28 [ 52] [ 16] [A21783FDAE0B5F64] +14:32:28 ============================================================================ +14:32:28 + + +waiting on router queue for slot.... +14:32:28 Sending to : <0> +14:32:28 ============================================================================ +14:32:28 ============================================================================ +14:32:28 Slot Id : <44> +14:32:28 Transaction Type : RESPONSE +14:32:28 Received From : +14:32:28 ============================================================================ +14:32:28 FNo. Len. Field Value +14:32:28 ============================================================================ +14:32:28 [ 1] [ 4] [0210] +14:32:28 [ 2] [ 16] [6213545000106058] +14:32:28 [ 3] [ 6] [010000] +14:32:28 [ 4] [ 12] [000010000000] +14:32:28 [ 7] [ 10] [0320073134] +14:32:28 [ 11] [ 6] [269682] +14:32:28 [ 12] [ 6] [143134] +14:32:28 [ 13] [ 4] [0320] +14:32:28 [ 15] [ 4] [0320] +14:32:28 [ 18] [ 4] [6011] +14:32:28 [ 19] [ 3] [418] +14:32:28 [ 32] [ 6] [180893] +14:32:28 [ 35] [ 32] [6213545000106058=491212010605542] +14:32:28 [ 37] [ 12] [507907269682] +14:32:28 [ 38] [ 6] [362893] +14:32:28 [ 39] [ 2] [00] +14:32:28 [ 41] [ 8] [0243VTKS] +14:32:28 [ 49] [ 3] [418] +14:32:28 [ 54] [ 40] [0001418C0001710901600002418C000171090160] +14:32:28 ============================================================================ +14:32:28 Sending to : +14:32:28 ============================================================================ +14:32:28 + + +waiting on router queue for slot.... +14:32:28 ============================================================================ +14:32:28 Slot Id : <61> +14:32:28 Transaction Type : RESPONSE +14:32:28 Received From : +14:32:28 ============================================================================ +14:32:28 FNo. Len. Field Value +14:32:28 ============================================================================ +14:32:28 [ 1] [ 4] [0210] +14:32:28 [ 2] [ 16] [6688990106003203] +14:32:28 [ 3] [ 6] [301000] +14:32:28 [ 4] [ 12] [000000000000] +14:32:28 [ 11] [ 6] [771395] +14:32:28 [ 12] [ 6] [143220] +14:32:28 [ 15] [ 4] [0320] +14:32:28 [ 18] [ 4] [6011] +14:32:28 [ 32] [ 6] [621354] +14:32:28 [ 35] [ 37] [6688990106003203=43111231320315700000] +14:32:28 [ 37] [ 12] [507903433319] +14:32:28 [ 38] [ 6] [132535] +14:32:28 [ 39] [ 2] [00] +14:32:28 [ 41] [ 8] [06001600] +14:32:28 [ 49] [ 3] [418] +14:32:28 [ 54] [ 20] [1002418C000452295984] +14:32:28 ============================================================================ +14:32:28 Calculate Source COMM Id = 0 +14:32:28 ============================================================================ +14:32:28 + + +waiting on router queue for slot.... +14:32:28 ============================================================================ +14:32:28 Slot Id : <55> +14:32:28 Transaction Type : REQUEST +14:32:28 Received From : +14:32:28 ============================================================================ +14:32:28 FNo. Len. Field Value +14:32:28 ============================================================================ +14:32:28 [ 1] [ 4] [0800] +14:32:28 [ 7] [ 10] [0320073135] +14:32:28 [ 11] [ 6] [156807] +14:32:28 [ 70] [ 3] [301] +14:32:28 ============================================================================ +14:32:28 + + +waiting on router queue for slot.... +14:32:28 Sending to : +14:32:28 ============================================================================ +14:32:28 ============================================================================ +14:32:28 Slot Id : <55> +14:32:28 Transaction Type : RESPONSE +14:32:28 Received From : +14:32:28 ============================================================================ +14:32:28 FNo. Len. Field Value +14:32:28 ============================================================================ +14:32:28 [ 1] [ 4] [0810] +14:32:28 [ 7] [ 10] [0320073135] +14:32:28 [ 11] [ 6] [156807] +14:32:28 [ 39] [ 2] [00] +14:32:28 [ 70] [ 3] [301] +14:32:28 ============================================================================ +14:32:28 Calculate Source COMM Id = 2 +14:32:28 ============================================================================ +14:32:28 + + +waiting on router queue for slot.... +14:32:28 ============================================================================ +14:32:28 Slot Id : <478> +14:32:28 Transaction Type : REQUEST +14:32:28 Received From : +14:32:28 ============================================================================ +14:32:28 FNo. Len. Field Value +14:32:28 ============================================================================ +14:32:28 [ 1] [ 4] [0200] +14:32:28 [ 2] [ 16] [6213545000783559] +14:32:28 [ 3] [ 6] [010000] +14:32:28 [ 4] [ 12] [000050000000] +14:32:28 [ 7] [ 10] [0320073134] +14:32:28 [ 11] [ 6] [269683] +14:32:28 [ 12] [ 6] [143134] +14:32:28 [ 13] [ 4] [0320] +14:32:28 [ 14] [ 4] [4912] +14:32:28 [ 15] [ 4] [0320] +14:32:28 [ 18] [ 4] [6011] +14:32:28 [ 19] [ 3] [418] +14:32:28 [ 22] [ 3] [021] +14:32:28 [ 25] [ 2] [01] +14:32:28 [ 28] [ 9] [D00002000] +14:32:28 [ 32] [ 6] [180893] +14:32:28 [ 35] [ 32] [6213545000783559=491212018355778] +14:32:28 [ 37] [ 12] [507907269683] +14:32:28 [ 41] [ 8] [0122ATBR] +14:32:28 [ 42] [ 15] [999999 ] +14:32:28 [ 43] [ 40] [ATM ATTAPUE BRANCH LOCATION, Samakkhixay] +14:32:28 [ 49] [ 3] [418] +14:32:28 [ 52] [ 16] [887246F94F2CDC97] +14:32:28 ============================================================================ +14:32:28 + + +waiting on router queue for slot.... +14:32:28 Sending to : +14:32:28 ============================================================================ +14:32:28 Sending to : +14:32:28 ============================================================================ +14:32:29 ============================================================================ +14:32:29 Slot Id : <15> +14:32:29 Transaction Type : RESPONSE +14:32:29 Received From : +14:32:29 ============================================================================ +14:32:29 FNo. Len. Field Value +14:32:29 ============================================================================ +14:32:29 [ 1] [ 4] [0210] +14:32:29 [ 2] [ 16] [6213541000565088] +14:32:29 [ 3] [ 6] [010000] +14:32:29 [ 4] [ 12] [000020000000] +14:32:29 [ 7] [ 10] [0320143018] +14:32:29 [ 11] [ 6] [948634] +14:32:29 [ 12] [ 6] [143018] +14:32:29 [ 13] [ 4] [0320] +14:32:29 [ 15] [ 4] [0320] +14:32:29 [ 18] [ 4] [6011] +14:32:29 [ 19] [ 3] [418] +14:32:29 [ 32] [ 6] [668899] +14:32:29 [ 35] [ 32] [6213541000565088=491212016508201] +14:32:29 [ 37] [ 12] [507901963618] +14:32:29 [ 38] [ 6] [930759] +14:32:29 [ 39] [ 2] [00] +14:32:29 [ 41] [ 8] [03020019] +14:32:29 [ 49] [ 3] [418] +14:32:29 [ 54] [ 40] [0001418C0000350274830002418C000035027483] +14:32:29 ============================================================================ +14:32:29 Sending to : +14:32:29 ============================================================================ +14:32:29 + + +waiting on router queue for slot.... +14:32:29 ============================================================================ +14:32:29 Slot Id : <478> +14:32:29 Transaction Type : REQUEST +14:32:29 Received From : +14:32:29 ============================================================================ +14:32:29 FNo. Len. Field Value +14:32:29 ============================================================================ +14:32:29 [ 1] [ 4] [0200] +14:32:29 [ 2] [ 16] [6213545000783559] +14:32:29 [ 3] [ 6] [010000] +14:32:29 [ 4] [ 12] [000050000000] +14:32:29 [ 7] [ 10] [0320073134] +14:32:29 [ 11] [ 6] [269683] +14:32:29 [ 12] [ 6] [143134] +14:32:29 [ 13] [ 4] [0320] +14:32:29 [ 14] [ 4] [4912] +14:32:29 [ 15] [ 4] [0320] +14:32:29 [ 18] [ 4] [6011] +14:32:29 [ 19] [ 3] [418] +14:32:29 [ 22] [ 3] [021] +14:32:29 [ 25] [ 2] [01] +14:32:29 [ 28] [ 9] [D00002000] +14:32:29 [ 32] [ 6] [180893] +14:32:29 [ 35] [ 32] [6213545000783559=491212018355778] +14:32:29 [ 37] [ 12] [507907269683] +14:32:29 [ 41] [ 8] [0122ATBR] +14:32:29 [ 42] [ 15] [999999 ] +14:32:29 [ 43] [ 40] [ATM ATTAPUE BRANCH LOCATION, Samakkhixay] +14:32:29 [ 49] [ 3] [418] +14:32:29 [ 52] [ 16] [887246F94F2CDC97] +14:32:29 ============================================================================ +14:32:29 + + +waiting on router queue for slot.... +14:32:29 Sending to : +14:32:29 ============================================================================ +14:32:29 ============================================================================ +14:32:29 Slot Id : <478> +14:32:29 Transaction Type : REQUEST +14:32:29 Received From : +14:32:29 ============================================================================ +14:32:29 FNo. Len. Field Value +14:32:29 ============================================================================ +14:32:29 [ 1] [ 4] [0200] +14:32:29 [ 2] [ 16] [6213545000783559] +14:32:29 [ 3] [ 6] [010000] +14:32:29 [ 4] [ 12] [000050000000] +14:32:29 [ 7] [ 10] [0320073134] +14:32:29 [ 11] [ 6] [269683] +14:32:29 [ 12] [ 6] [143134] +14:32:29 [ 13] [ 4] [0320] +14:32:29 [ 14] [ 4] [4912] +14:32:29 [ 15] [ 4] [0320] +14:32:29 [ 18] [ 4] [6011] +14:32:29 [ 19] [ 3] [418] +14:32:29 [ 22] [ 3] [021] +14:32:29 [ 25] [ 2] [01] +14:32:29 [ 28] [ 9] [D00002000] +14:32:29 [ 32] [ 6] [180893] +14:32:29 [ 35] [ 32] [6213545000783559=491212018355778] +14:32:29 [ 37] [ 12] [507907269683] +14:32:29 [ 41] [ 8] [0122ATBR] +14:32:29 [ 42] [ 15] [999999 ] +14:32:29 [ 43] [ 40] [ATM ATTAPUE BRANCH LOCATION, Samakkhixay] +14:32:29 [ 49] [ 3] [418] +14:32:29 [ 52] [ 16] [EDCC8B1B5B2E7D58] +14:32:29 ============================================================================ +14:32:29 + + +waiting on router queue for slot.... +14:32:29 Sending to : <0> +14:32:29 ============================================================================ +14:32:30 ============================================================================ +14:32:30 Slot Id : <478> +14:32:30 Transaction Type : RESPONSE +14:32:30 Received From : +14:32:30 ============================================================================ +14:32:30 FNo. Len. Field Value +14:32:30 ============================================================================ +14:32:30 [ 1] [ 4] [0210] +14:32:30 [ 2] [ 16] [6213545000783559] +14:32:30 [ 3] [ 6] [010000] +14:32:30 [ 4] [ 12] [000050000000] +14:32:30 [ 7] [ 10] [0320073134] +14:32:30 [ 11] [ 6] [269683] +14:32:30 [ 12] [ 6] [143134] +14:32:30 [ 13] [ 4] [0320] +14:32:30 [ 15] [ 4] [0320] +14:32:30 [ 18] [ 4] [6011] +14:32:30 [ 19] [ 3] [418] +14:32:30 [ 32] [ 6] [180893] +14:32:30 [ 35] [ 32] [6213545000783559=491212018355778] +14:32:30 [ 37] [ 12] [507907269683] +14:32:30 [ 38] [ 6] [695483] +14:32:30 [ 39] [ 2] [00] +14:32:30 [ 41] [ 8] [0122ATBR] +14:32:30 [ 49] [ 3] [418] +14:32:30 [ 54] [ 40] [0001418C0002417876780002418C000241787678] +14:32:30 ============================================================================ +14:32:30 Sending to : +14:32:30 ============================================================================ +14:32:30 + + +waiting on router queue for slot.... +14:32:30 ============================================================================ +14:32:30 Slot Id : <44> +14:32:30 Transaction Type : RESPONSE +14:32:30 Received From : +14:32:30 ============================================================================ +14:32:30 FNo. Len. Field Value +14:32:30 ============================================================================ +14:32:30 [ 1] [ 4] [0210] +14:32:30 [ 2] [ 16] [6213545000106058] +14:32:30 [ 3] [ 6] [010000] +14:32:30 [ 4] [ 12] [000010000000] +14:32:30 [ 7] [ 10] [0320073134] +14:32:30 [ 11] [ 6] [269682] +14:32:30 [ 12] [ 6] [143134] +14:32:30 [ 13] [ 4] [0320] +14:32:30 [ 15] [ 4] [0320] +14:32:30 [ 18] [ 4] [6011] +14:32:30 [ 19] [ 3] [418] +14:32:30 [ 32] [ 6] [180893] +14:32:30 [ 35] [ 32] [6213545000106058=491212010605542] +14:32:30 [ 37] [ 12] [507907269682] +14:32:30 [ 38] [ 6] [362893] +14:32:30 [ 39] [ 2] [00] +14:32:30 [ 41] [ 8] [0243VTKS] +14:32:30 [ 49] [ 3] [418] +14:32:30 [ 54] [ 40] [0001418C0001710901600002418C000171090160] +14:32:30 ============================================================================ +14:32:30 Calculate Source COMM Id = 2 +14:32:30 ============================================================================ +14:32:30 + + +waiting on router queue for slot.... +14:32:31 ============================================================================ +14:32:31 Slot Id : <478> +14:32:31 Transaction Type : RESPONSE +14:32:31 Received From : +14:32:31 ============================================================================ +14:32:31 FNo. Len. Field Value +14:32:31 ============================================================================ +14:32:31 [ 1] [ 4] [0210] +14:32:31 [ 2] [ 16] [6213545000783559] +14:32:31 [ 3] [ 6] [010000] +14:32:31 [ 4] [ 12] [000050000000] +14:32:31 [ 7] [ 10] [0320073134] +14:32:31 [ 11] [ 6] [269683] +14:32:31 [ 12] [ 6] [143134] +14:32:31 [ 13] [ 4] [0320] +14:32:31 [ 15] [ 4] [0320] +14:32:31 [ 18] [ 4] [6011] +14:32:31 [ 19] [ 3] [418] +14:32:31 [ 32] [ 6] [180893] +14:32:31 [ 35] [ 32] [6213545000783559=491212018355778] +14:32:31 [ 37] [ 12] [507907269683] +14:32:31 [ 38] [ 6] [695483] +14:32:31 [ 39] [ 2] [00] +14:32:31 [ 41] [ 8] [0122ATBR] +14:32:31 [ 49] [ 3] [418] +14:32:31 [ 54] [ 40] [0001418C0002417876780002418C000241787678] +14:32:31 ============================================================================ +14:32:31 Calculate Source COMM Id = 2 +14:32:31 ============================================================================ +14:32:31 + + +waiting on router queue for slot.... +14:32:33 ============================================================================ +14:32:33 Slot Id : <15> +14:32:33 Transaction Type : RESPONSE +14:32:33 Received From : +14:32:33 ============================================================================ +14:32:33 FNo. Len. Field Value +14:32:33 ============================================================================ +14:32:33 [ 1] [ 4] [0210] +14:32:33 [ 2] [ 16] [6213541000565088] +14:32:33 [ 3] [ 6] [010000] +14:32:33 [ 4] [ 12] [000020000000] +14:32:33 [ 7] [ 10] [0320143018] +14:32:33 [ 11] [ 6] [948634] +14:32:33 [ 12] [ 6] [143018] +14:32:33 [ 13] [ 4] [0320] +14:32:33 [ 15] [ 4] [0320] +14:32:33 [ 18] [ 4] [6011] +14:32:33 [ 19] [ 3] [418] +14:32:33 [ 32] [ 6] [668899] +14:32:33 [ 35] [ 32] [6213541000565088=491212016508201] +14:32:33 [ 37] [ 12] [507901963618] +14:32:33 [ 38] [ 6] [930759] +14:32:33 [ 39] [ 2] [00] +14:32:33 [ 41] [ 8] [03020019] +14:32:33 [ 49] [ 3] [418] +14:32:33 [ 54] [ 40] [0001418C0000350274830002418C000035027483] +14:32:33 ============================================================================ +14:32:33 Calculate Source COMM Id = 4 +14:32:33 ============================================================================ +14:32:33 + + +waiting on router queue for slot.... +14:32:42 ============================================================================ +14:32:42 Slot Id : <60> +14:32:42 Transaction Type : REQUEST +14:32:42 Received From : +14:32:42 ============================================================================ +14:32:42 FNo. Len. Field Value +14:32:42 ============================================================================ +14:32:42 [ 1] [ 4] [0200] +14:32:42 [ 2] [ 16] [6213545000170682] +14:32:42 [ 3] [ 6] [010000] +14:32:42 [ 4] [ 12] [000100000000] +14:32:42 [ 7] [ 10] [0320073146] +14:32:42 [ 11] [ 6] [269687] +14:32:42 [ 12] [ 6] [143146] +14:32:42 [ 13] [ 4] [0320] +14:32:42 [ 14] [ 4] [4912] +14:32:42 [ 15] [ 4] [0320] +14:32:42 [ 18] [ 4] [6011] +14:32:42 [ 19] [ 3] [418] +14:32:42 [ 22] [ 3] [021] +14:32:42 [ 25] [ 2] [01] +14:32:42 [ 28] [ 9] [D00002000] +14:32:42 [ 32] [ 6] [180893] +14:32:42 [ 35] [ 32] [6213545000170682=491212017068389] +14:32:42 [ 37] [ 12] [507907269687] +14:32:42 [ 41] [ 8] [0114XKBR] +14:32:42 [ 42] [ 15] [999999 ] +14:32:42 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:32:42 [ 49] [ 3] [418] +14:32:42 [ 52] [ 16] [59DD7DE8CDDE3092] +14:32:42 ============================================================================ +14:32:42 + + +waiting on router queue for slot.... +14:32:42 Sending to : +14:32:42 ============================================================================ +14:32:42 Sending to : +14:32:42 ============================================================================ +14:32:42 ============================================================================ +14:32:42 Slot Id : <60> +14:32:42 Transaction Type : REQUEST +14:32:42 Received From : +14:32:42 ============================================================================ +14:32:42 FNo. Len. Field Value +14:32:42 ============================================================================ +14:32:42 [ 1] [ 4] [0200] +14:32:42 [ 2] [ 16] [6213545000170682] +14:32:42 [ 3] [ 6] [010000] +14:32:42 [ 4] [ 12] [000100000000] +14:32:42 [ 7] [ 10] [0320073146] +14:32:42 [ 11] [ 6] [269687] +14:32:42 [ 12] [ 6] [143146] +14:32:42 [ 13] [ 4] [0320] +14:32:42 [ 14] [ 4] [4912] +14:32:42 [ 15] [ 4] [0320] +14:32:42 [ 18] [ 4] [6011] +14:32:42 [ 19] [ 3] [418] +14:32:42 [ 22] [ 3] [021] +14:32:42 [ 25] [ 2] [01] +14:32:42 [ 28] [ 9] [D00002000] +14:32:42 [ 32] [ 6] [180893] +14:32:42 [ 35] [ 32] [6213545000170682=491212017068389] +14:32:42 [ 37] [ 12] [507907269687] +14:32:42 [ 41] [ 8] [0114XKBR] +14:32:42 [ 42] [ 15] [999999 ] +14:32:42 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:32:42 [ 49] [ 3] [418] +14:32:42 [ 52] [ 16] [59DD7DE8CDDE3092] +14:32:42 ============================================================================ +14:32:42 + + +waiting on router queue for slot.... +14:32:42 Sending to : +14:32:42 ============================================================================ +14:32:42 ============================================================================ +14:32:42 Slot Id : <60> +14:32:42 Transaction Type : REQUEST +14:32:42 Received From : +14:32:42 ============================================================================ +14:32:42 FNo. Len. Field Value +14:32:42 ============================================================================ +14:32:42 [ 1] [ 4] [0200] +14:32:42 [ 2] [ 16] [6213545000170682] +14:32:42 [ 3] [ 6] [010000] +14:32:42 [ 4] [ 12] [000100000000] +14:32:42 [ 7] [ 10] [0320073146] +14:32:42 [ 11] [ 6] [269687] +14:32:42 [ 12] [ 6] [143146] +14:32:42 [ 13] [ 4] [0320] +14:32:42 [ 14] [ 4] [4912] +14:32:42 [ 15] [ 4] [0320] +14:32:42 [ 18] [ 4] [6011] +14:32:42 [ 19] [ 3] [418] +14:32:42 [ 22] [ 3] [021] +14:32:42 [ 25] [ 2] [01] +14:32:42 [ 28] [ 9] [D00002000] +14:32:42 [ 32] [ 6] [180893] +14:32:42 [ 35] [ 32] [6213545000170682=491212017068389] +14:32:42 [ 37] [ 12] [507907269687] +14:32:42 [ 41] [ 8] [0114XKBR] +14:32:42 [ 42] [ 15] [999999 ] +14:32:42 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:32:42 [ 49] [ 3] [418] +14:32:42 [ 52] [ 16] [9F6065A884A9AEC8] +14:32:42 ============================================================================ +14:32:42 + + +waiting on router queue for slot.... +14:32:42 Sending to : <0> +14:32:42 ============================================================================ +14:32:43 ============================================================================ +14:32:43 Slot Id : <60> +14:32:43 Transaction Type : RESPONSE +14:32:43 Received From : +14:32:43 ============================================================================ +14:32:43 FNo. Len. Field Value +14:32:43 ============================================================================ +14:32:43 [ 1] [ 4] [0210] +14:32:43 [ 2] [ 16] [6213545000170682] +14:32:43 [ 3] [ 6] [010000] +14:32:43 [ 4] [ 12] [000100000000] +14:32:43 [ 7] [ 10] [0320073146] +14:32:43 [ 11] [ 6] [269687] +14:32:43 [ 12] [ 6] [143146] +14:32:43 [ 13] [ 4] [0320] +14:32:43 [ 15] [ 4] [0320] +14:32:43 [ 18] [ 4] [6011] +14:32:43 [ 19] [ 3] [418] +14:32:43 [ 32] [ 6] [180893] +14:32:43 [ 35] [ 32] [6213545000170682=491212017068389] +14:32:43 [ 37] [ 12] [507907269687] +14:32:43 [ 38] [ 6] [038994] +14:32:43 [ 39] [ 2] [00] +14:32:43 [ 41] [ 8] [0114XKBR] +14:32:43 [ 49] [ 3] [418] +14:32:43 [ 54] [ 40] [0001418C0000096897510002418C000009689751] +14:32:43 ============================================================================ +14:32:43 Sending to : +14:32:43 ============================================================================ +14:32:43 + + +waiting on router queue for slot.... +14:32:43 ============================================================================ +14:32:43 Slot Id : <68> +14:32:43 Transaction Type : REQUEST +14:32:43 Received From : +14:32:43 ============================================================================ +14:32:43 FNo. Len. Field Value +14:32:43 ============================================================================ +14:32:43 [ 1] [ 4] [0800] +14:32:43 [ 7] [ 10] [0320073151] +14:32:43 [ 11] [ 6] [156808] +14:32:43 [ 70] [ 3] [301] +14:32:43 ============================================================================ +14:32:43 + + +waiting on router queue for slot.... +14:32:43 Sending to : +14:32:43 ============================================================================ +14:32:43 ============================================================================ +14:32:43 Slot Id : <68> +14:32:43 Transaction Type : RESPONSE +14:32:43 Received From : +14:32:43 ============================================================================ +14:32:43 FNo. Len. Field Value +14:32:43 ============================================================================ +14:32:43 [ 1] [ 4] [0810] +14:32:43 [ 7] [ 10] [0320073151] +14:32:43 [ 11] [ 6] [156808] +14:32:43 [ 39] [ 2] [00] +14:32:43 [ 70] [ 3] [301] +14:32:43 ============================================================================ +14:32:43 Calculate Source COMM Id = 2 +14:32:43 ============================================================================ +14:32:43 + + +waiting on router queue for slot.... +14:32:44 ============================================================================ +14:32:44 Slot Id : <60> +14:32:44 Transaction Type : RESPONSE +14:32:44 Received From : +14:32:44 ============================================================================ +14:32:44 FNo. Len. Field Value +14:32:44 ============================================================================ +14:32:44 [ 1] [ 4] [0210] +14:32:44 [ 2] [ 16] [6213545000170682] +14:32:44 [ 3] [ 6] [010000] +14:32:44 [ 4] [ 12] [000100000000] +14:32:44 [ 7] [ 10] [0320073146] +14:32:44 [ 11] [ 6] [269687] +14:32:44 [ 12] [ 6] [143146] +14:32:44 [ 13] [ 4] [0320] +14:32:44 [ 15] [ 4] [0320] +14:32:44 [ 18] [ 4] [6011] +14:32:44 [ 19] [ 3] [418] +14:32:44 [ 32] [ 6] [180893] +14:32:44 [ 35] [ 32] [6213545000170682=491212017068389] +14:32:44 [ 37] [ 12] [507907269687] +14:32:44 [ 38] [ 6] [038994] +14:32:44 [ 39] [ 2] [00] +14:32:44 [ 41] [ 8] [0114XKBR] +14:32:44 [ 49] [ 3] [418] +14:32:44 [ 54] [ 40] [0001418C0000096897510002418C000009689751] +14:32:44 ============================================================================ +14:32:44 Calculate Source COMM Id = 2 +14:32:44 ============================================================================ +14:32:44 + + +waiting on router queue for slot.... +14:32:46 ============================================================================ +14:32:46 Slot Id : <63> +14:32:46 Transaction Type : REQUEST +14:32:46 Received From : +14:32:46 ============================================================================ +14:32:46 FNo. Len. Field Value +14:32:46 ============================================================================ +14:32:46 [ 1] [ 4] [0800] +14:32:46 [ 2] [ 5] [02531] +14:32:46 [ 3] [ 6] [579148] +14:32:46 [ 7] [ 10] [0320073246] +14:32:46 [ 11] [ 6] [807256] +14:32:46 [ 15] [ 10] [0320073246] +14:32:46 [ 37] [ 11] [57914807256] +14:32:46 [ 70] [ 3] [001] +14:32:46 ============================================================================ +14:32:46 + + +waiting on router queue for slot.... +14:32:46 ============================================================================ +14:32:46 Slot Id : <63> +14:32:46 Transaction Type : RESPONSE +14:32:46 Received From : +14:32:46 ============================================================================ +14:32:46 FNo. Len. Field Value +14:32:46 ============================================================================ +14:32:46 [ 1] [ 4] [0810] +14:32:46 [ 7] [ 10] [0320073246] +14:32:46 [ 11] [ 6] [807256] +14:32:46 [ 15] [ 4] [0320] +14:32:46 [ 37] [ 12] [57914807256] +14:32:46 [ 39] [ 2] [00] +14:32:46 [ 70] [ 3] [001] +14:32:46 ============================================================================ +14:32:46 Sending to : +14:32:46 ============================================================================ +14:32:46 + + +waiting on router queue for slot.... +14:32:50 ============================================================================ +14:32:50 Slot Id : <73> +14:32:50 Transaction Type : REQUEST +14:32:50 Received From : +14:32:50 ============================================================================ +14:32:50 FNo. Len. Field Value +14:32:50 ============================================================================ +14:32:50 [ 1] [ 4] [0200] +14:32:50 [ 2] [ 16] [1808930700009590] +14:32:50 [ 3] [ 6] [301000] +14:32:50 [ 4] [ 12] [000000000000] +14:32:50 [ 7] [ 10] [0320143245] +14:32:50 [ 11] [ 6] [771467] +14:32:50 [ 12] [ 6] [143245] +14:32:50 [ 13] [ 4] [0320] +14:32:50 [ 15] [ 4] [0320] +14:32:50 [ 18] [ 4] [6011] +14:32:50 [ 22] [ 3] [900] +14:32:50 [ 25] [ 2] [02] +14:32:50 [ 28] [ 9] [D00000000] +14:32:50 [ 32] [ 6] [621354] +14:32:50 [ 35] [ 27] [1808930700009590=1803500413] +14:32:50 [ 37] [ 12] [507903335018] +14:32:50 [ 41] [ 8] [13001300] +14:32:50 [ 42] [ 15] [NATIVE ] +14:32:50 [ 43] [ 40] [Numngam Unit Paek LAO] +14:32:50 [ 49] [ 3] [418] +14:32:50 [ 52] [ 16] [72E6FEDEA98ACA7C] +14:32:50 ============================================================================ +14:32:50 + + +waiting on router queue for slot.... +14:32:50 Sending to : +14:32:50 ============================================================================ +14:32:50 Sending to : +14:32:50 ============================================================================ +14:32:50 ============================================================================ +14:32:50 Slot Id : <73> +14:32:50 Transaction Type : REQUEST +14:32:50 Received From : +14:32:50 ============================================================================ +14:32:50 FNo. Len. Field Value +14:32:50 ============================================================================ +14:32:50 [ 1] [ 4] [0200] +14:32:50 [ 2] [ 16] [1808930700009590] +14:32:50 [ 3] [ 6] [301000] +14:32:50 [ 4] [ 12] [000000000000] +14:32:50 [ 7] [ 10] [0320143245] +14:32:50 [ 11] [ 6] [771467] +14:32:50 [ 12] [ 6] [143245] +14:32:50 [ 13] [ 4] [0320] +14:32:50 [ 15] [ 4] [0320] +14:32:50 [ 18] [ 4] [6011] +14:32:50 [ 22] [ 3] [900] +14:32:50 [ 25] [ 2] [02] +14:32:50 [ 28] [ 9] [D00000000] +14:32:50 [ 32] [ 6] [621354] +14:32:50 [ 35] [ 27] [1808930700009590=1803500413] +14:32:50 [ 37] [ 12] [507903335018] +14:32:50 [ 41] [ 8] [13001300] +14:32:50 [ 42] [ 15] [NATIVE ] +14:32:50 [ 43] [ 40] [Numngam Unit Paek LAO] +14:32:50 [ 49] [ 3] [418] +14:32:50 [ 52] [ 16] [72E6FEDEA98ACA7C] +14:32:50 ============================================================================ +14:32:50 + + +waiting on router queue for slot.... +14:32:50 Sending to : +14:32:50 ============================================================================ +14:32:50 ============================================================================ +14:32:50 Slot Id : <73> +14:32:50 Transaction Type : REQUEST +14:32:50 Received From : +14:32:50 ============================================================================ +14:32:50 FNo. Len. Field Value +14:32:50 ============================================================================ +14:32:50 [ 1] [ 4] [0200] +14:32:50 [ 2] [ 16] [1808930700009590] +14:32:50 [ 3] [ 6] [301000] +14:32:50 [ 4] [ 12] [000000000000] +14:32:50 [ 7] [ 10] [0320143245] +14:32:50 [ 11] [ 6] [771467] +14:32:50 [ 12] [ 6] [143245] +14:32:50 [ 13] [ 4] [0320] +14:32:50 [ 15] [ 4] [0320] +14:32:50 [ 18] [ 4] [6011] +14:32:50 [ 22] [ 3] [900] +14:32:50 [ 25] [ 2] [02] +14:32:50 [ 28] [ 9] [D00000000] +14:32:50 [ 32] [ 6] [621354] +14:32:50 [ 35] [ 27] [1808930700009590=1803500413] +14:32:50 [ 37] [ 12] [507903335018] +14:32:50 [ 41] [ 8] [13001300] +14:32:50 [ 42] [ 15] [NATIVE ] +14:32:50 [ 43] [ 40] [Numngam Unit Paek LAO] +14:32:50 [ 49] [ 3] [418] +14:32:50 [ 52] [ 16] [5AC669B17D2F5775] +14:32:50 ============================================================================ +14:32:50 + + +waiting on router queue for slot.... +14:32:50 Sending to : <2> +14:32:50 ============================================================================ +14:32:55 ============================================================================ +14:32:55 Slot Id : <73> +14:32:55 Transaction Type : RESPONSE +14:32:55 Received From : +14:32:55 ============================================================================ +14:32:55 FNo. Len. Field Value +14:32:55 ============================================================================ +14:32:55 [ 1] [ 4] [0210] +14:32:55 [ 2] [ 16] [1808930700009590] +14:32:55 [ 3] [ 6] [301000] +14:32:55 [ 7] [ 10] [0320143245] +14:32:55 [ 11] [ 6] [771467] +14:32:55 [ 12] [ 6] [143245] +14:32:55 [ 13] [ 4] [0320] +14:32:55 [ 14] [ 4] [1803] +14:32:55 [ 19] [ 3] [418] +14:32:55 [ 32] [ 6] [621354] +14:32:55 [ 37] [ 12] [507903335018] +14:32:55 [ 38] [ 6] [771467] +14:32:55 [ 39] [ 2] [00] +14:32:55 [ 41] [ 8] [13001300] +14:32:55 [ 49] [ 3] [418] +14:32:55 [ 52] [ 16] [5AC669B17D2F5775] +14:32:55 [ 54] [ 20] [1002418C000004160200] +14:32:55 ============================================================================ +14:32:55 Sending to : +14:32:55 ============================================================================ +14:32:55 + + +waiting on router queue for slot.... +14:32:56 ============================================================================ +14:32:56 Slot Id : <73> +14:32:56 Transaction Type : RESPONSE +14:32:56 Received From : +14:32:56 ============================================================================ +14:32:56 FNo. Len. Field Value +14:32:56 ============================================================================ +14:32:56 [ 1] [ 4] [0210] +14:32:56 [ 2] [ 16] [1808930700009590] +14:32:56 [ 3] [ 6] [301000] +14:32:56 [ 7] [ 10] [0320143245] +14:32:56 [ 11] [ 6] [771467] +14:32:56 [ 12] [ 6] [143245] +14:32:56 [ 13] [ 4] [0320] +14:32:56 [ 14] [ 4] [1803] +14:32:56 [ 19] [ 3] [418] +14:32:56 [ 32] [ 6] [621354] +14:32:56 [ 37] [ 12] [507903335018] +14:32:56 [ 38] [ 6] [771467] +14:32:56 [ 39] [ 2] [00] +14:32:56 [ 41] [ 8] [13001300] +14:32:56 [ 49] [ 3] [418] +14:32:56 [ 52] [ 16] [5AC669B17D2F5775] +14:32:56 [ 54] [ 20] [1002418C000004160200] +14:32:56 ============================================================================ +14:32:56 Calculate Source COMM Id = 0 +14:32:56 ============================================================================ +14:32:56 + + +waiting on router queue for slot.... +14:32:59 ============================================================================ +14:32:59 Slot Id : <38> +14:32:59 Transaction Type : REQUEST +14:32:59 Received From : +14:32:59 ============================================================================ +14:32:59 FNo. Len. Field Value +14:32:59 ============================================================================ +14:32:59 [ 1] [ 4] [0800] +14:32:59 [ 7] [ 10] [0320214448] +14:32:59 [ 11] [ 6] [144448] +14:32:59 [ 37] [ 12] [57914144448] +14:32:59 [ 70] [ 3] [301] +14:32:59 ============================================================================ +14:32:59 + + +waiting on router queue for slot.... +14:32:59 Sending to : +14:32:59 ============================================================================ +14:32:59 ============================================================================ +14:32:59 Slot Id : <38> +14:32:59 Transaction Type : RESPONSE +14:32:59 Received From : +14:32:59 ============================================================================ +14:32:59 FNo. Len. Field Value +14:32:59 ============================================================================ +14:32:59 [ 1] [ 4] [0810] +14:32:59 [ 7] [ 10] [0320214448] +14:32:59 [ 11] [ 6] [144448] +14:32:59 [ 37] [ 12] [579141444480] +14:32:59 [ 39] [ 2] [00] +14:32:59 [ 70] [ 3] [810] +14:32:59 ============================================================================ +14:32:59 Calculate Source COMM Id = 6 +14:32:59 ============================================================================ +14:32:59 + + +waiting on router queue for slot.... +14:33:01 ============================================================================ +14:33:01 Slot Id : <41> +14:33:01 Transaction Type : REQUEST +14:33:01 Received From : +14:33:01 ============================================================================ +14:33:01 FNo. Len. Field Value +14:33:01 ============================================================================ +14:33:01 [ 1] [ 4] [0420] +14:33:01 [ 2] [ 16] [6688990103743801] +14:33:01 [ 3] [ 6] [010000] +14:33:01 [ 4] [ 12] [000100000000] +14:33:01 [ 7] [ 10] [0320073207] +14:33:01 [ 11] [ 6] [269684] +14:33:01 [ 12] [ 6] [143135] +14:33:01 [ 13] [ 4] [0320] +14:33:01 [ 14] [ 4] [4302] +14:33:01 [ 15] [ 4] [0320] +14:33:01 [ 18] [ 4] [6011] +14:33:01 [ 19] [ 3] [418] +14:33:01 [ 22] [ 3] [021] +14:33:01 [ 25] [ 2] [01] +14:33:01 [ 28] [ 9] [D00002000] +14:33:01 [ 32] [ 6] [180893] +14:33:01 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:33:01 [ 37] [ 12] [507907269684] +14:33:01 [ 39] [ 2] [68] +14:33:01 [ 41] [ 8] [0221XKKM] +14:33:01 [ 42] [ 15] [999999 ] +14:33:01 [ 49] [ 3] [418] +14:33:01 [ 90] [ 42] [ TES1+0000080000] +14:33:01 [104] [ 16] [0001808930000000] +14:33:01 ============================================================================ +14:33:01 + + +waiting on router queue for slot.... +14:33:01 Sending to : +14:33:01 ============================================================================ +14:33:03 ============================================================================ +14:33:03 Slot Id : <41> +14:33:03 Transaction Type : RESPONSE +14:33:03 Received From : +14:33:03 ============================================================================ +14:33:03 FNo. Len. Field Value +14:33:03 ============================================================================ +14:33:03 [ 1] [ 4] [0430] +14:33:03 [ 2] [ 16] [6688990103743801] +14:33:03 [ 3] [ 6] [010000] +14:33:03 [ 4] [ 12] [000100000000] +14:33:03 [ 7] [ 10] [0320073207] +14:33:03 [ 11] [ 6] [269684] +14:33:03 [ 12] [ 6] [143135] +14:33:03 [ 13] [ 4] [0320] +14:33:03 [ 14] [ 4] [4302] +14:33:03 [ 15] [ 4] [0320] +14:33:03 [ 18] [ 4] [6011] +14:33:03 [ 19] [ 3] [418] +14:33:03 [ 22] [ 3] [021] +14:33:03 [ 25] [ 2] [01] +14:33:03 [ 28] [ 9] [D00002000] +14:33:03 [ 32] [ 6] [180893] +14:33:03 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:33:03 [ 37] [ 12] [507907269684] +14:33:03 [ 39] [ 2] [00] +14:33:03 [ 41] [ 8] [0221XKKM] +14:33:03 [ 42] [ 15] [999999 ] +14:33:03 [ 49] [ 3] [418] +14:33:03 [ 90] [ 42] [ TES1+000008000004300200269684032014313500] +14:33:03 [104] [ 16] [0001808930000000] +14:33:03 ============================================================================ +14:33:03 Calculate Source COMM Id = 2 +14:33:03 ============================================================================ +14:33:03 + + +waiting on router queue for slot.... +14:33:06 ============================================================================ +14:33:06 Slot Id : <464> +14:33:06 Transaction Type : REQUEST +14:33:06 Received From : +14:33:06 ============================================================================ +14:33:06 FNo. Len. Field Value +14:33:06 ============================================================================ +14:33:06 [ 1] [ 4] [0200] +14:33:06 [ 2] [ 16] [6688990106003203] +14:33:06 [ 3] [ 6] [011000] +14:33:06 [ 4] [ 12] [000050000000] +14:33:06 [ 7] [ 10] [0320143301] +14:33:06 [ 11] [ 6] [771518] +14:33:06 [ 12] [ 6] [143301] +14:33:06 [ 13] [ 4] [0320] +14:33:06 [ 15] [ 4] [0320] +14:33:06 [ 18] [ 4] [6011] +14:33:06 [ 22] [ 3] [900] +14:33:06 [ 25] [ 2] [02] +14:33:06 [ 28] [ 9] [D00002000] +14:33:06 [ 32] [ 6] [621354] +14:33:06 [ 35] [ 37] [6688990106003203=43111231320315700000] +14:33:06 [ 37] [ 12] [507903433321] +14:33:06 [ 41] [ 8] [06001600] +14:33:06 [ 42] [ 15] [NATIVE ] +14:33:06 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +14:33:06 [ 49] [ 3] [418] +14:33:06 [ 52] [ 16] [CBF74A9BFBE88620] +14:33:06 ============================================================================ +14:33:06 + + +waiting on router queue for slot.... +14:33:06 Sending to : +14:33:06 ============================================================================ +14:33:06 Sending to : +14:33:06 ============================================================================ +14:33:06 ============================================================================ +14:33:06 Slot Id : <464> +14:33:06 Transaction Type : REQUEST +14:33:06 Received From : +14:33:06 ============================================================================ +14:33:06 FNo. Len. Field Value +14:33:06 ============================================================================ +14:33:06 [ 1] [ 4] [0200] +14:33:06 [ 2] [ 16] [6688990106003203] +14:33:06 [ 3] [ 6] [011000] +14:33:06 [ 4] [ 12] [000050000000] +14:33:06 [ 7] [ 10] [0320143301] +14:33:06 [ 11] [ 6] [771518] +14:33:06 [ 12] [ 6] [143301] +14:33:06 [ 13] [ 4] [0320] +14:33:06 [ 15] [ 4] [0320] +14:33:06 [ 18] [ 4] [6011] +14:33:06 [ 22] [ 3] [900] +14:33:06 [ 25] [ 2] [02] +14:33:06 [ 28] [ 9] [D00002000] +14:33:06 [ 32] [ 6] [621354] +14:33:06 [ 35] [ 37] [6688990106003203=43111231320315700000] +14:33:06 [ 37] [ 12] [507903433321] +14:33:06 [ 41] [ 8] [06001600] +14:33:06 [ 42] [ 15] [NATIVE ] +14:33:06 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +14:33:06 [ 49] [ 3] [418] +14:33:06 [ 52] [ 16] [CBF74A9BFBE88620] +14:33:06 ============================================================================ +14:33:06 + + +waiting on router queue for slot.... +14:33:06 Sending to : +14:33:06 ============================================================================ +14:33:06 ============================================================================ +14:33:06 Slot Id : <464> +14:33:06 Transaction Type : REQUEST +14:33:06 Received From : +14:33:06 ============================================================================ +14:33:06 FNo. Len. Field Value +14:33:06 ============================================================================ +14:33:06 [ 1] [ 4] [0200] +14:33:06 [ 2] [ 16] [6688990106003203] +14:33:06 [ 3] [ 6] [011000] +14:33:06 [ 4] [ 12] [000050000000] +14:33:06 [ 7] [ 10] [0320143301] +14:33:06 [ 11] [ 6] [771518] +14:33:06 [ 12] [ 6] [143301] +14:33:06 [ 13] [ 4] [0320] +14:33:06 [ 15] [ 4] [0320] +14:33:06 [ 18] [ 4] [6011] +14:33:06 [ 22] [ 3] [900] +14:33:06 [ 25] [ 2] [02] +14:33:06 [ 28] [ 9] [D00002000] +14:33:06 [ 32] [ 6] [621354] +14:33:06 [ 35] [ 37] [6688990106003203=43111231320315700000] +14:33:06 [ 37] [ 12] [507903433321] +14:33:06 [ 41] [ 8] [06001600] +14:33:06 [ 42] [ 15] [NATIVE ] +14:33:06 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +14:33:06 [ 49] [ 3] [418] +14:33:06 [ 52] [ 16] [AF5D3D0489D7DA70] +14:33:06 ============================================================================ +14:33:06 + + +waiting on router queue for slot.... +14:33:06 Sending to : <4> +14:33:06 ============================================================================ +14:33:07 ============================================================================ +14:33:07 Slot Id : <464> +14:33:07 Transaction Type : RESPONSE +14:33:07 Received From : +14:33:07 ============================================================================ +14:33:07 FNo. Len. Field Value +14:33:07 ============================================================================ +14:33:07 [ 1] [ 4] [0210] +14:33:07 [ 2] [ 16] [6688990106003203] +14:33:07 [ 3] [ 6] [011000] +14:33:07 [ 4] [ 12] [000050000000] +14:33:07 [ 11] [ 6] [771518] +14:33:07 [ 12] [ 6] [143301] +14:33:07 [ 15] [ 4] [0320] +14:33:07 [ 18] [ 4] [6011] +14:33:07 [ 32] [ 6] [621354] +14:33:07 [ 35] [ 37] [6688990106003203=43111231320315700000] +14:33:07 [ 37] [ 12] [507903433321] +14:33:07 [ 38] [ 6] [043861] +14:33:07 [ 39] [ 2] [00] +14:33:07 [ 41] [ 8] [06001600] +14:33:07 [ 49] [ 3] [418] +14:33:07 [ 54] [ 20] [1002418C000402095984] +14:33:07 ============================================================================ +14:33:07 Sending to : +14:33:07 ============================================================================ +14:33:07 + + +waiting on router queue for slot.... +14:33:09 ============================================================================ +14:33:09 Slot Id : <464> +14:33:09 Transaction Type : RESPONSE +14:33:09 Received From : +14:33:09 ============================================================================ +14:33:09 FNo. Len. Field Value +14:33:09 ============================================================================ +14:33:09 [ 1] [ 4] [0210] +14:33:09 [ 2] [ 16] [6688990106003203] +14:33:09 [ 3] [ 6] [011000] +14:33:09 [ 4] [ 12] [000050000000] +14:33:09 [ 11] [ 6] [771518] +14:33:09 [ 12] [ 6] [143301] +14:33:09 [ 15] [ 4] [0320] +14:33:09 [ 18] [ 4] [6011] +14:33:09 [ 32] [ 6] [621354] +14:33:09 [ 35] [ 37] [6688990106003203=43111231320315700000] +14:33:09 [ 37] [ 12] [507903433321] +14:33:09 [ 38] [ 6] [043861] +14:33:09 [ 39] [ 2] [00] +14:33:09 [ 41] [ 8] [06001600] +14:33:09 [ 49] [ 3] [418] +14:33:09 [ 54] [ 20] [1002418C000402095984] +14:33:09 ============================================================================ +14:33:09 Calculate Source COMM Id = 0 +14:33:09 ============================================================================ +14:33:09 + + +waiting on router queue for slot.... +14:33:16 ============================================================================ +14:33:16 Slot Id : <32> +14:33:16 Transaction Type : REQUEST +14:33:16 Received From : +14:33:16 ============================================================================ +14:33:16 FNo. Len. Field Value +14:33:16 ============================================================================ +14:33:16 [ 1] [ 4] [0800] +14:33:16 [ 7] [ 10] [0320073223] +14:33:16 [ 11] [ 6] [156809] +14:33:16 [ 70] [ 3] [301] +14:33:16 ============================================================================ +14:33:16 + + +waiting on router queue for slot.... +14:33:16 Sending to : +14:33:16 ============================================================================ +14:33:16 ============================================================================ +14:33:16 Slot Id : <32> +14:33:16 Transaction Type : RESPONSE +14:33:16 Received From : +14:33:16 ============================================================================ +14:33:16 FNo. Len. Field Value +14:33:16 ============================================================================ +14:33:16 [ 1] [ 4] [0810] +14:33:16 [ 7] [ 10] [0320073223] +14:33:16 [ 11] [ 6] [156809] +14:33:16 [ 39] [ 2] [00] +14:33:16 [ 70] [ 3] [301] +14:33:16 ============================================================================ +14:33:16 Calculate Source COMM Id = 2 +14:33:16 ============================================================================ +14:33:16 + + +waiting on router queue for slot.... +14:33:30 ============================================================================ +14:33:30 Slot Id : <487> +14:33:30 Transaction Type : REQUEST +14:33:30 Received From : +14:33:30 ============================================================================ +14:33:30 FNo. Len. Field Value +14:33:30 ============================================================================ +14:33:30 [ 1] [ 4] [0800] +14:33:30 [ 7] [ 10] [0320073236] +14:33:30 [ 11] [ 6] [156810] +14:33:30 [ 70] [ 3] [301] +14:33:30 ============================================================================ +14:33:30 + + +waiting on router queue for slot.... +14:33:30 Sending to : +14:33:30 ============================================================================ +14:33:30 ============================================================================ +14:33:30 Slot Id : <487> +14:33:30 Transaction Type : RESPONSE +14:33:30 Received From : +14:33:30 ============================================================================ +14:33:30 FNo. Len. Field Value +14:33:30 ============================================================================ +14:33:30 [ 1] [ 4] [0810] +14:33:30 [ 7] [ 10] [0320073236] +14:33:30 [ 11] [ 6] [156810] +14:33:30 [ 39] [ 2] [00] +14:33:30 [ 70] [ 3] [301] +14:33:30 ============================================================================ +14:33:30 Calculate Source COMM Id = 2 +14:33:30 ============================================================================ +14:33:30 + + +waiting on router queue for slot.... +14:33:34 ============================================================================ +14:33:34 Slot Id : <26> +14:33:34 Transaction Type : REQUEST +14:33:34 Received From : +14:33:34 ============================================================================ +14:33:34 FNo. Len. Field Value +14:33:34 ============================================================================ +14:33:34 [ 1] [ 4] [0200] +14:33:34 [ 2] [ 16] [6688990602799700] +14:33:34 [ 3] [ 6] [010000] +14:33:34 [ 4] [ 12] [000050000000] +14:33:34 [ 7] [ 10] [0320143330] +14:33:34 [ 11] [ 6] [771621] +14:33:34 [ 12] [ 6] [143330] +14:33:34 [ 13] [ 4] [0320] +14:33:34 [ 15] [ 4] [0320] +14:33:34 [ 18] [ 4] [6011] +14:33:34 [ 22] [ 3] [900] +14:33:34 [ 25] [ 2] [02] +14:33:34 [ 28] [ 9] [D00002000] +14:33:34 [ 32] [ 6] [621354] +14:33:34 [ 35] [ 37] [6688990602799700=43110061970020700000] +14:33:34 [ 37] [ 12] [507904153952] +14:33:34 [ 41] [ 8] [20001000] +14:33:34 [ 42] [ 15] [NATIVE ] +14:33:34 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:33:34 [ 49] [ 3] [418] +14:33:34 [ 52] [ 16] [6113917EAD0E6BF8] +14:33:34 ============================================================================ +14:33:34 + + +waiting on router queue for slot.... +14:33:34 Sending to : +14:33:34 ============================================================================ +14:33:34 Sending to : +14:33:34 ============================================================================ +14:33:35 ============================================================================ +14:33:35 Slot Id : <26> +14:33:35 Transaction Type : REQUEST +14:33:35 Received From : +14:33:35 ============================================================================ +14:33:35 FNo. Len. Field Value +14:33:35 ============================================================================ +14:33:35 [ 1] [ 4] [0200] +14:33:35 [ 2] [ 16] [6688990602799700] +14:33:35 [ 3] [ 6] [010000] +14:33:35 [ 4] [ 12] [000050000000] +14:33:35 [ 7] [ 10] [0320143330] +14:33:35 [ 11] [ 6] [771621] +14:33:35 [ 12] [ 6] [143330] +14:33:35 [ 13] [ 4] [0320] +14:33:35 [ 15] [ 4] [0320] +14:33:35 [ 18] [ 4] [6011] +14:33:35 [ 22] [ 3] [900] +14:33:35 [ 25] [ 2] [02] +14:33:35 [ 28] [ 9] [D00002000] +14:33:35 [ 32] [ 6] [621354] +14:33:35 [ 35] [ 37] [6688990602799700=43110061970020700000] +14:33:35 [ 37] [ 12] [507904153952] +14:33:35 [ 41] [ 8] [20001000] +14:33:35 [ 42] [ 15] [NATIVE ] +14:33:35 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:33:35 [ 49] [ 3] [418] +14:33:35 [ 52] [ 16] [6113917EAD0E6BF8] +14:33:35 ============================================================================ +14:33:35 + + +waiting on router queue for slot.... +14:33:35 Sending to : +14:33:35 ============================================================================ +14:33:35 ============================================================================ +14:33:35 Slot Id : <26> +14:33:35 Transaction Type : REQUEST +14:33:35 Received From : +14:33:35 ============================================================================ +14:33:35 FNo. Len. Field Value +14:33:35 ============================================================================ +14:33:35 [ 1] [ 4] [0200] +14:33:35 [ 2] [ 16] [6688990602799700] +14:33:35 [ 3] [ 6] [010000] +14:33:35 [ 4] [ 12] [000050000000] +14:33:35 [ 7] [ 10] [0320143330] +14:33:35 [ 11] [ 6] [771621] +14:33:35 [ 12] [ 6] [143330] +14:33:35 [ 13] [ 4] [0320] +14:33:35 [ 15] [ 4] [0320] +14:33:35 [ 18] [ 4] [6011] +14:33:35 [ 22] [ 3] [900] +14:33:35 [ 25] [ 2] [02] +14:33:35 [ 28] [ 9] [D00002000] +14:33:35 [ 32] [ 6] [621354] +14:33:35 [ 35] [ 37] [6688990602799700=43110061970020700000] +14:33:35 [ 37] [ 12] [507904153952] +14:33:35 [ 41] [ 8] [20001000] +14:33:35 [ 42] [ 15] [NATIVE ] +14:33:35 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +14:33:35 [ 49] [ 3] [418] +14:33:35 [ 52] [ 16] [551A3F6A9A95A1DE] +14:33:35 ============================================================================ +14:33:35 + + +waiting on router queue for slot.... +14:33:35 Sending to : <4> +14:33:35 ============================================================================ +14:33:36 ============================================================================ +14:33:36 Slot Id : <26> +14:33:36 Transaction Type : RESPONSE +14:33:36 Received From : +14:33:36 ============================================================================ +14:33:36 FNo. Len. Field Value +14:33:36 ============================================================================ +14:33:36 [ 1] [ 4] [0210] +14:33:36 [ 2] [ 16] [6688990602799700] +14:33:36 [ 3] [ 6] [010000] +14:33:36 [ 4] [ 12] [000050000000] +14:33:36 [ 11] [ 6] [771621] +14:33:36 [ 12] [ 6] [143330] +14:33:36 [ 15] [ 4] [0320] +14:33:36 [ 18] [ 4] [6011] +14:33:36 [ 32] [ 6] [621354] +14:33:36 [ 35] [ 37] [6688990602799700=43110061970020700000] +14:33:36 [ 37] [ 12] [507904153952] +14:33:36 [ 38] [ 6] [310120] +14:33:36 [ 39] [ 2] [00] +14:33:36 [ 41] [ 8] [20001000] +14:33:36 [ 49] [ 3] [418] +14:33:36 [ 54] [ 20] [0002418C000046492562] +14:33:36 ============================================================================ +14:33:36 Sending to : +14:33:36 ============================================================================ +14:33:36 + + +waiting on router queue for slot.... +14:33:37 ============================================================================ +14:33:37 Slot Id : <26> +14:33:37 Transaction Type : RESPONSE +14:33:37 Received From : +14:33:37 ============================================================================ +14:33:37 FNo. Len. Field Value +14:33:37 ============================================================================ +14:33:37 [ 1] [ 4] [0210] +14:33:37 [ 2] [ 16] [6688990602799700] +14:33:37 [ 3] [ 6] [010000] +14:33:37 [ 4] [ 12] [000050000000] +14:33:37 [ 11] [ 6] [771621] +14:33:37 [ 12] [ 6] [143330] +14:33:37 [ 15] [ 4] [0320] +14:33:37 [ 18] [ 4] [6011] +14:33:37 [ 32] [ 6] [621354] +14:33:37 [ 35] [ 37] [6688990602799700=43110061970020700000] +14:33:37 [ 37] [ 12] [507904153952] +14:33:37 [ 38] [ 6] [310120] +14:33:37 [ 39] [ 2] [00] +14:33:37 [ 41] [ 8] [20001000] +14:33:37 [ 49] [ 3] [418] +14:33:37 [ 54] [ 20] [0002418C000046492562] +14:33:37 ============================================================================ +14:33:37 Calculate Source COMM Id = 0 +14:33:37 ============================================================================ +14:33:37 + + +waiting on router queue for slot.... +14:33:37 ============================================================================ +14:33:37 Slot Id : <20> +14:33:37 Transaction Type : REQUEST +14:33:37 Received From : +14:33:37 ============================================================================ +14:33:37 FNo. Len. Field Value +14:33:37 ============================================================================ +14:33:37 [ 1] [ 4] [0200] +14:33:37 [ 2] [ 16] [6213545000526008] +14:33:37 [ 3] [ 6] [010000] +14:33:37 [ 4] [ 12] [000100000000] +14:33:37 [ 7] [ 10] [0320073242] +14:33:37 [ 11] [ 6] [269693] +14:33:37 [ 12] [ 6] [143242] +14:33:37 [ 13] [ 4] [0320] +14:33:37 [ 14] [ 4] [4912] +14:33:37 [ 15] [ 4] [0320] +14:33:37 [ 18] [ 4] [6011] +14:33:37 [ 19] [ 3] [418] +14:33:37 [ 22] [ 3] [021] +14:33:37 [ 25] [ 2] [01] +14:33:37 [ 28] [ 9] [D00002000] +14:33:37 [ 32] [ 6] [180893] +14:33:37 [ 35] [ 32] [6213545000526008=491212012600977] +14:33:37 [ 37] [ 12] [507907269693] +14:33:37 [ 41] [ 8] [0114XKBR] +14:33:37 [ 42] [ 15] [999999 ] +14:33:37 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:33:37 [ 49] [ 3] [418] +14:33:37 [ 52] [ 16] [8B208B6FED41ED2B] +14:33:37 ============================================================================ +14:33:37 + + +waiting on router queue for slot.... +14:33:37 Sending to : +14:33:37 ============================================================================ +14:33:37 Sending to : +14:33:37 ============================================================================ +14:33:37 ============================================================================ +14:33:37 Slot Id : <20> +14:33:37 Transaction Type : REQUEST +14:33:37 Received From : +14:33:37 ============================================================================ +14:33:37 FNo. Len. Field Value +14:33:37 ============================================================================ +14:33:37 [ 1] [ 4] [0200] +14:33:37 [ 2] [ 16] [6213545000526008] +14:33:37 [ 3] [ 6] [010000] +14:33:37 [ 4] [ 12] [000100000000] +14:33:37 [ 7] [ 10] [0320073242] +14:33:37 [ 11] [ 6] [269693] +14:33:37 [ 12] [ 6] [143242] +14:33:37 [ 13] [ 4] [0320] +14:33:37 [ 14] [ 4] [4912] +14:33:37 [ 15] [ 4] [0320] +14:33:37 [ 18] [ 4] [6011] +14:33:37 [ 19] [ 3] [418] +14:33:37 [ 22] [ 3] [021] +14:33:37 [ 25] [ 2] [01] +14:33:37 [ 28] [ 9] [D00002000] +14:33:37 [ 32] [ 6] [180893] +14:33:37 [ 35] [ 32] [6213545000526008=491212012600977] +14:33:37 [ 37] [ 12] [507907269693] +14:33:37 [ 41] [ 8] [0114XKBR] +14:33:37 [ 42] [ 15] [999999 ] +14:33:37 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:33:37 [ 49] [ 3] [418] +14:33:37 [ 52] [ 16] [8B208B6FED41ED2B] +14:33:37 ============================================================================ +14:33:37 + + +waiting on router queue for slot.... +14:33:37 Sending to : +14:33:37 ============================================================================ +14:33:37 ============================================================================ +14:33:37 Slot Id : <20> +14:33:37 Transaction Type : REQUEST +14:33:37 Received From : +14:33:37 ============================================================================ +14:33:37 FNo. Len. Field Value +14:33:37 ============================================================================ +14:33:37 [ 1] [ 4] [0200] +14:33:37 [ 2] [ 16] [6213545000526008] +14:33:37 [ 3] [ 6] [010000] +14:33:37 [ 4] [ 12] [000100000000] +14:33:37 [ 7] [ 10] [0320073242] +14:33:37 [ 11] [ 6] [269693] +14:33:37 [ 12] [ 6] [143242] +14:33:37 [ 13] [ 4] [0320] +14:33:37 [ 14] [ 4] [4912] +14:33:37 [ 15] [ 4] [0320] +14:33:37 [ 18] [ 4] [6011] +14:33:37 [ 19] [ 3] [418] +14:33:37 [ 22] [ 3] [021] +14:33:37 [ 25] [ 2] [01] +14:33:37 [ 28] [ 9] [D00002000] +14:33:37 [ 32] [ 6] [180893] +14:33:37 [ 35] [ 32] [6213545000526008=491212012600977] +14:33:37 [ 37] [ 12] [507907269693] +14:33:37 [ 41] [ 8] [0114XKBR] +14:33:37 [ 42] [ 15] [999999 ] +14:33:37 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:33:37 [ 49] [ 3] [418] +14:33:37 [ 52] [ 16] [CA73A8CE02A1FA93] +14:33:37 ============================================================================ +14:33:37 + + +waiting on router queue for slot.... +14:33:37 Sending to : <0> +14:33:37 ============================================================================ +14:33:38 ============================================================================ +14:33:38 Slot Id : <20> +14:33:38 Transaction Type : RESPONSE +14:33:38 Received From : +14:33:38 ============================================================================ +14:33:38 FNo. Len. Field Value +14:33:38 ============================================================================ +14:33:38 [ 1] [ 4] [0210] +14:33:38 [ 2] [ 16] [6213545000526008] +14:33:38 [ 3] [ 6] [010000] +14:33:38 [ 4] [ 12] [000100000000] +14:33:38 [ 7] [ 10] [0320073242] +14:33:38 [ 11] [ 6] [269693] +14:33:38 [ 12] [ 6] [143242] +14:33:38 [ 13] [ 4] [0320] +14:33:38 [ 15] [ 4] [0320] +14:33:38 [ 18] [ 4] [6011] +14:33:38 [ 19] [ 3] [418] +14:33:38 [ 32] [ 6] [180893] +14:33:38 [ 35] [ 32] [6213545000526008=491212012600977] +14:33:38 [ 37] [ 12] [507907269693] +14:33:38 [ 38] [ 6] [367585] +14:33:38 [ 39] [ 2] [00] +14:33:38 [ 41] [ 8] [0114XKBR] +14:33:38 [ 49] [ 3] [418] +14:33:38 [ 54] [ 40] [0001418C0002001414750002418C000200141475] +14:33:38 ============================================================================ +14:33:38 Sending to : +14:33:38 ============================================================================ +14:33:38 + + +waiting on router queue for slot.... +14:33:39 ============================================================================ +14:33:39 Slot Id : <20> +14:33:39 Transaction Type : RESPONSE +14:33:39 Received From : +14:33:39 ============================================================================ +14:33:39 FNo. Len. Field Value +14:33:39 ============================================================================ +14:33:39 [ 1] [ 4] [0210] +14:33:39 [ 2] [ 16] [6213545000526008] +14:33:39 [ 3] [ 6] [010000] +14:33:39 [ 4] [ 12] [000100000000] +14:33:39 [ 7] [ 10] [0320073242] +14:33:39 [ 11] [ 6] [269693] +14:33:39 [ 12] [ 6] [143242] +14:33:39 [ 13] [ 4] [0320] +14:33:39 [ 15] [ 4] [0320] +14:33:39 [ 18] [ 4] [6011] +14:33:39 [ 19] [ 3] [418] +14:33:39 [ 32] [ 6] [180893] +14:33:39 [ 35] [ 32] [6213545000526008=491212012600977] +14:33:39 [ 37] [ 12] [507907269693] +14:33:39 [ 38] [ 6] [367585] +14:33:39 [ 39] [ 2] [00] +14:33:39 [ 41] [ 8] [0114XKBR] +14:33:39 [ 49] [ 3] [418] +14:33:39 [ 54] [ 40] [0001418C0002001414750002418C000200141475] +14:33:39 ============================================================================ +14:33:39 Calculate Source COMM Id = 2 +14:33:39 ============================================================================ +14:33:39 + + +waiting on router queue for slot.... +14:33:44 ============================================================================ +14:33:44 Slot Id : <48> +14:33:44 Transaction Type : REQUEST +14:33:44 Received From : +14:33:44 ============================================================================ +14:33:44 FNo. Len. Field Value +14:33:44 ============================================================================ +14:33:44 [ 1] [ 4] [0200] +14:33:44 [ 2] [ 16] [1808930700009590] +14:33:44 [ 3] [ 6] [011000] +14:33:44 [ 4] [ 12] [000010000000] +14:33:44 [ 7] [ 10] [0320143340] +14:33:44 [ 11] [ 6] [771658] +14:33:44 [ 12] [ 6] [143340] +14:33:44 [ 13] [ 4] [0320] +14:33:44 [ 15] [ 4] [0320] +14:33:44 [ 18] [ 4] [6011] +14:33:44 [ 22] [ 3] [900] +14:33:44 [ 25] [ 2] [02] +14:33:44 [ 28] [ 9] [D00002000] +14:33:44 [ 32] [ 6] [621354] +14:33:44 [ 35] [ 27] [1808930700009590=1803500413] +14:33:44 [ 37] [ 12] [507903335020] +14:33:44 [ 41] [ 8] [13001300] +14:33:44 [ 42] [ 15] [NATIVE ] +14:33:44 [ 43] [ 40] [Numngam Unit Paek LAO] +14:33:44 [ 49] [ 3] [418] +14:33:44 [ 52] [ 16] [72E6FEDEA98ACA7C] +14:33:44 ============================================================================ +14:33:44 + + +waiting on router queue for slot.... +14:33:44 Sending to : +14:33:44 ============================================================================ +14:33:44 Sending to : +14:33:44 ============================================================================ +14:33:45 ============================================================================ +14:33:45 Slot Id : <48> +14:33:45 Transaction Type : REQUEST +14:33:45 Received From : +14:33:45 ============================================================================ +14:33:45 FNo. Len. Field Value +14:33:45 ============================================================================ +14:33:45 [ 1] [ 4] [0200] +14:33:45 [ 2] [ 16] [1808930700009590] +14:33:45 [ 3] [ 6] [011000] +14:33:45 [ 4] [ 12] [000010000000] +14:33:45 [ 7] [ 10] [0320143340] +14:33:45 [ 11] [ 6] [771658] +14:33:45 [ 12] [ 6] [143340] +14:33:45 [ 13] [ 4] [0320] +14:33:45 [ 15] [ 4] [0320] +14:33:45 [ 18] [ 4] [6011] +14:33:45 [ 22] [ 3] [900] +14:33:45 [ 25] [ 2] [02] +14:33:45 [ 28] [ 9] [D00002000] +14:33:45 [ 32] [ 6] [621354] +14:33:45 [ 35] [ 27] [1808930700009590=1803500413] +14:33:45 [ 37] [ 12] [507903335020] +14:33:45 [ 41] [ 8] [13001300] +14:33:45 [ 42] [ 15] [NATIVE ] +14:33:45 [ 43] [ 40] [Numngam Unit Paek LAO] +14:33:45 [ 49] [ 3] [418] +14:33:45 [ 52] [ 16] [72E6FEDEA98ACA7C] +14:33:45 ============================================================================ +14:33:45 + + +waiting on router queue for slot.... +14:33:45 Sending to : +14:33:45 ============================================================================ +14:33:45 ============================================================================ +14:33:45 Slot Id : <48> +14:33:45 Transaction Type : REQUEST +14:33:45 Received From : +14:33:45 ============================================================================ +14:33:45 FNo. Len. Field Value +14:33:45 ============================================================================ +14:33:45 [ 1] [ 4] [0200] +14:33:45 [ 2] [ 16] [1808930700009590] +14:33:45 [ 3] [ 6] [011000] +14:33:45 [ 4] [ 12] [000010000000] +14:33:45 [ 7] [ 10] [0320143340] +14:33:45 [ 11] [ 6] [771658] +14:33:45 [ 12] [ 6] [143340] +14:33:45 [ 13] [ 4] [0320] +14:33:45 [ 15] [ 4] [0320] +14:33:45 [ 18] [ 4] [6011] +14:33:45 [ 22] [ 3] [900] +14:33:45 [ 25] [ 2] [02] +14:33:45 [ 28] [ 9] [D00002000] +14:33:45 [ 32] [ 6] [621354] +14:33:45 [ 35] [ 27] [1808930700009590=1803500413] +14:33:45 [ 37] [ 12] [507903335020] +14:33:45 [ 41] [ 8] [13001300] +14:33:45 [ 42] [ 15] [NATIVE ] +14:33:45 [ 43] [ 40] [Numngam Unit Paek LAO] +14:33:45 [ 49] [ 3] [418] +14:33:45 [ 52] [ 16] [5AC669B17D2F5775] +14:33:45 ============================================================================ +14:33:45 + + +waiting on router queue for slot.... +14:33:45 Sending to : <2> +14:33:45 ============================================================================ +14:33:45 ============================================================================ +14:33:45 Slot Id : <46> +14:33:45 Transaction Type : REQUEST +14:33:45 Received From : +14:33:45 ============================================================================ +14:33:45 FNo. Len. Field Value +14:33:45 ============================================================================ +14:33:45 [ 1] [ 4] [0200] +14:33:45 [ 2] [ 16] [6688990040157180] +14:33:45 [ 3] [ 6] [011000] +14:33:45 [ 4] [ 12] [000074000000] +14:33:45 [ 7] [ 10] [0320143340] +14:33:45 [ 11] [ 6] [771661] +14:33:45 [ 12] [ 6] [143340] +14:33:45 [ 13] [ 4] [0320] +14:33:45 [ 15] [ 4] [0320] +14:33:45 [ 18] [ 4] [6011] +14:33:45 [ 22] [ 3] [900] +14:33:45 [ 25] [ 2] [02] +14:33:45 [ 28] [ 9] [D00002000] +14:33:45 [ 32] [ 6] [621354] +14:33:45 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:33:45 [ 37] [ 12] [507902539895] +14:33:45 [ 41] [ 8] [05003600] +14:33:45 [ 42] [ 15] [NATIVE ] +14:33:45 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:33:45 [ 49] [ 3] [418] +14:33:45 [ 52] [ 16] [5548B954CB1804D3] +14:33:45 ============================================================================ +14:33:45 + + +waiting on router queue for slot.... +14:33:45 Sending to : +14:33:45 ============================================================================ +14:33:45 Sending to : +14:33:45 ============================================================================ +14:33:45 ============================================================================ +14:33:45 Slot Id : <46> +14:33:45 Transaction Type : REQUEST +14:33:45 Received From : +14:33:45 ============================================================================ +14:33:45 FNo. Len. Field Value +14:33:45 ============================================================================ +14:33:45 [ 1] [ 4] [0200] +14:33:45 [ 2] [ 16] [6688990040157180] +14:33:45 [ 3] [ 6] [011000] +14:33:45 [ 4] [ 12] [000074000000] +14:33:45 [ 7] [ 10] [0320143340] +14:33:45 [ 11] [ 6] [771661] +14:33:45 [ 12] [ 6] [143340] +14:33:45 [ 13] [ 4] [0320] +14:33:45 [ 15] [ 4] [0320] +14:33:45 [ 18] [ 4] [6011] +14:33:45 [ 22] [ 3] [900] +14:33:45 [ 25] [ 2] [02] +14:33:45 [ 28] [ 9] [D00002000] +14:33:45 [ 32] [ 6] [621354] +14:33:45 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:33:45 [ 37] [ 12] [507902539895] +14:33:45 [ 41] [ 8] [05003600] +14:33:45 [ 42] [ 15] [NATIVE ] +14:33:45 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:33:45 [ 49] [ 3] [418] +14:33:45 [ 52] [ 16] [5548B954CB1804D3] +14:33:45 ============================================================================ +14:33:45 + + +waiting on router queue for slot.... +14:33:45 Sending to : +14:33:45 ============================================================================ +14:33:45 ============================================================================ +14:33:45 Slot Id : <46> +14:33:45 Transaction Type : REQUEST +14:33:45 Received From : +14:33:45 ============================================================================ +14:33:45 FNo. Len. Field Value +14:33:45 ============================================================================ +14:33:45 [ 1] [ 4] [0200] +14:33:45 [ 2] [ 16] [6688990040157180] +14:33:45 [ 3] [ 6] [011000] +14:33:45 [ 4] [ 12] [000074000000] +14:33:45 [ 7] [ 10] [0320143340] +14:33:45 [ 11] [ 6] [771661] +14:33:45 [ 12] [ 6] [143340] +14:33:45 [ 13] [ 4] [0320] +14:33:45 [ 15] [ 4] [0320] +14:33:45 [ 18] [ 4] [6011] +14:33:45 [ 22] [ 3] [900] +14:33:45 [ 25] [ 2] [02] +14:33:45 [ 28] [ 9] [D00002000] +14:33:45 [ 32] [ 6] [621354] +14:33:45 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:33:45 [ 37] [ 12] [507902539895] +14:33:45 [ 41] [ 8] [05003600] +14:33:45 [ 42] [ 15] [NATIVE ] +14:33:45 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:33:45 [ 49] [ 3] [418] +14:33:45 [ 52] [ 16] [C235E6F344B8EC2D] +14:33:45 ============================================================================ +14:33:45 + + +waiting on router queue for slot.... +14:33:45 Sending to : <4> +14:33:45 ============================================================================ +14:33:45 ============================================================================ +14:33:45 Slot Id : <46> +14:33:45 Transaction Type : RESPONSE +14:33:45 Received From : +14:33:45 ============================================================================ +14:33:45 FNo. Len. Field Value +14:33:45 ============================================================================ +14:33:45 [ 1] [ 4] [0210] +14:33:45 [ 2] [ 16] [6688990040157180] +14:33:45 [ 3] [ 6] [011000] +14:33:45 [ 4] [ 12] [000074000000] +14:33:45 [ 7] [ 10] [0320143340] +14:33:45 [ 11] [ 6] [771661] +14:33:45 [ 12] [ 6] [143340] +14:33:45 [ 13] [ 4] [0320] +14:33:45 [ 15] [ 4] [0320] +14:33:45 [ 18] [ 4] [6011] +14:33:45 [ 22] [ 3] [021] +14:33:45 [ 32] [ 6] [621354] +14:33:45 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:33:45 [ 37] [ 12] [507902539895] +14:33:45 [ 39] [ 2] [62] +14:33:45 [ 41] [ 8] [05003600] +14:33:45 [ 49] [ 3] [418] +14:33:45 ============================================================================ +14:33:45 Sending to : +14:33:45 ============================================================================ +14:33:45 + + +waiting on router queue for slot.... +14:33:46 ============================================================================ +14:33:46 Slot Id : <27> +14:33:46 Transaction Type : REQUEST +14:33:46 Received From : +14:33:46 ============================================================================ +14:33:46 FNo. Len. Field Value +14:33:46 ============================================================================ +14:33:46 [ 1] [ 4] [0200] +14:33:46 [ 2] [ 16] [6213545000106058] +14:33:46 [ 3] [ 6] [010000] +14:33:46 [ 4] [ 12] [000010000000] +14:33:46 [ 7] [ 10] [0320073251] +14:33:46 [ 11] [ 6] [269695] +14:33:46 [ 12] [ 6] [143251] +14:33:46 [ 13] [ 4] [0320] +14:33:46 [ 14] [ 4] [4912] +14:33:46 [ 15] [ 4] [0320] +14:33:46 [ 18] [ 4] [6011] +14:33:46 [ 19] [ 3] [418] +14:33:46 [ 22] [ 3] [021] +14:33:46 [ 25] [ 2] [01] +14:33:46 [ 28] [ 9] [D00002000] +14:33:46 [ 32] [ 6] [180893] +14:33:46 [ 35] [ 32] [6213545000106058=491212010605542] +14:33:46 [ 37] [ 12] [507907269695] +14:33:46 [ 41] [ 8] [0243VTKS] +14:33:46 [ 42] [ 15] [999999 ] +14:33:46 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +14:33:46 [ 49] [ 3] [418] +14:33:46 [ 52] [ 16] [3135F27860FEC194] +14:33:46 ============================================================================ +14:33:46 + + +waiting on router queue for slot.... +14:33:46 Sending to : +14:33:46 ============================================================================ +14:33:46 Sending to : +14:33:46 ============================================================================ +14:33:46 ============================================================================ +14:33:46 Slot Id : <46> +14:33:46 Transaction Type : RESPONSE +14:33:46 Received From : +14:33:46 ============================================================================ +14:33:46 FNo. Len. Field Value +14:33:46 ============================================================================ +14:33:46 [ 1] [ 4] [0210] +14:33:46 [ 2] [ 16] [6688990040157180] +14:33:46 [ 3] [ 6] [011000] +14:33:46 [ 4] [ 12] [000074000000] +14:33:46 [ 7] [ 10] [0320143340] +14:33:46 [ 11] [ 6] [771661] +14:33:46 [ 12] [ 6] [143340] +14:33:46 [ 13] [ 4] [0320] +14:33:46 [ 15] [ 4] [0320] +14:33:46 [ 18] [ 4] [6011] +14:33:46 [ 22] [ 3] [021] +14:33:46 [ 32] [ 6] [621354] +14:33:46 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:33:46 [ 37] [ 12] [507902539895] +14:33:46 [ 39] [ 2] [62] +14:33:46 [ 41] [ 8] [05003600] +14:33:46 [ 49] [ 3] [418] +14:33:46 ============================================================================ +14:33:46 Calculate Source COMM Id = 0 +14:33:46 ============================================================================ +14:33:46 + + +waiting on router queue for slot.... +14:33:47 ============================================================================ +14:33:47 Slot Id : <27> +14:33:47 Transaction Type : REQUEST +14:33:47 Received From : +14:33:47 ============================================================================ +14:33:47 FNo. Len. Field Value +14:33:47 ============================================================================ +14:33:47 [ 1] [ 4] [0200] +14:33:47 [ 2] [ 16] [6213545000106058] +14:33:47 [ 3] [ 6] [010000] +14:33:47 [ 4] [ 12] [000010000000] +14:33:47 [ 7] [ 10] [0320073251] +14:33:47 [ 11] [ 6] [269695] +14:33:47 [ 12] [ 6] [143251] +14:33:47 [ 13] [ 4] [0320] +14:33:47 [ 14] [ 4] [4912] +14:33:47 [ 15] [ 4] [0320] +14:33:47 [ 18] [ 4] [6011] +14:33:47 [ 19] [ 3] [418] +14:33:47 [ 22] [ 3] [021] +14:33:47 [ 25] [ 2] [01] +14:33:47 [ 28] [ 9] [D00002000] +14:33:47 [ 32] [ 6] [180893] +14:33:47 [ 35] [ 32] [6213545000106058=491212010605542] +14:33:47 [ 37] [ 12] [507907269695] +14:33:47 [ 41] [ 8] [0243VTKS] +14:33:47 [ 42] [ 15] [999999 ] +14:33:47 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +14:33:47 [ 49] [ 3] [418] +14:33:47 [ 52] [ 16] [3135F27860FEC194] +14:33:47 ============================================================================ +14:33:47 + + +waiting on router queue for slot.... +14:33:47 Sending to : +14:33:47 ============================================================================ +14:33:47 ============================================================================ +14:33:47 Slot Id : <27> +14:33:47 Transaction Type : REQUEST +14:33:47 Received From : +14:33:47 ============================================================================ +14:33:47 FNo. Len. Field Value +14:33:47 ============================================================================ +14:33:47 [ 1] [ 4] [0200] +14:33:47 [ 2] [ 16] [6213545000106058] +14:33:47 [ 3] [ 6] [010000] +14:33:47 [ 4] [ 12] [000010000000] +14:33:47 [ 7] [ 10] [0320073251] +14:33:47 [ 11] [ 6] [269695] +14:33:47 [ 12] [ 6] [143251] +14:33:47 [ 13] [ 4] [0320] +14:33:47 [ 14] [ 4] [4912] +14:33:47 [ 15] [ 4] [0320] +14:33:47 [ 18] [ 4] [6011] +14:33:47 [ 19] [ 3] [418] +14:33:47 [ 22] [ 3] [021] +14:33:47 [ 25] [ 2] [01] +14:33:47 [ 28] [ 9] [D00002000] +14:33:47 [ 32] [ 6] [180893] +14:33:47 [ 35] [ 32] [6213545000106058=491212010605542] +14:33:47 [ 37] [ 12] [507907269695] +14:33:47 [ 41] [ 8] [0243VTKS] +14:33:47 [ 42] [ 15] [999999 ] +14:33:47 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +14:33:47 [ 49] [ 3] [418] +14:33:47 [ 52] [ 16] [EB78E3F88E4497EF] +14:33:47 ============================================================================ +14:33:47 + + +waiting on router queue for slot.... +14:33:47 Sending to : <0> +14:33:47 ============================================================================ +14:33:47 ============================================================================ +14:33:47 Slot Id : <19> +14:33:47 Transaction Type : REQUEST +14:33:47 Received From : +14:33:47 ============================================================================ +14:33:47 FNo. Len. Field Value +14:33:47 ============================================================================ +14:33:47 [ 1] [ 4] [0200] +14:33:47 [ 2] [ 16] [6688990104022007] +14:33:47 [ 3] [ 6] [301000] +14:33:47 [ 7] [ 10] [0320073254] +14:33:47 [ 11] [ 6] [269697] +14:33:47 [ 12] [ 6] [143254] +14:33:47 [ 13] [ 4] [0320] +14:33:47 [ 14] [ 4] [4302] +14:33:47 [ 15] [ 4] [0320] +14:33:47 [ 18] [ 4] [6011] +14:33:47 [ 19] [ 3] [418] +14:33:47 [ 22] [ 3] [021] +14:33:47 [ 25] [ 2] [01] +14:33:47 [ 32] [ 6] [180893] +14:33:47 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:33:47 [ 37] [ 12] [507907269697] +14:33:47 [ 41] [ 8] [0421BKPH] +14:33:47 [ 42] [ 15] [999999 ] +14:33:47 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:33:47 [ 49] [ 3] [418] +14:33:47 [ 52] [ 16] [473334DCBE911001] +14:33:47 ============================================================================ +14:33:47 + + +waiting on router queue for slot.... +14:33:47 Sending to : +14:33:47 ============================================================================ +14:33:47 Sending to : +14:33:47 ============================================================================ +14:33:47 ============================================================================ +14:33:47 Slot Id : <27> +14:33:47 Transaction Type : RESPONSE +14:33:47 Received From : +14:33:47 ============================================================================ +14:33:47 FNo. Len. Field Value +14:33:47 ============================================================================ +14:33:47 [ 1] [ 4] [0210] +14:33:47 [ 2] [ 16] [6213545000106058] +14:33:47 [ 3] [ 6] [010000] +14:33:47 [ 4] [ 12] [000010000000] +14:33:47 [ 7] [ 10] [0320073251] +14:33:47 [ 11] [ 6] [269695] +14:33:47 [ 12] [ 6] [143251] +14:33:47 [ 13] [ 4] [0320] +14:33:47 [ 15] [ 4] [0320] +14:33:47 [ 18] [ 4] [6011] +14:33:47 [ 19] [ 3] [418] +14:33:47 [ 32] [ 6] [180893] +14:33:47 [ 35] [ 32] [6213545000106058=491212010605542] +14:33:47 [ 37] [ 12] [507907269695] +14:33:47 [ 38] [ 6] [518653] +14:33:47 [ 39] [ 2] [00] +14:33:47 [ 41] [ 8] [0243VTKS] +14:33:47 [ 49] [ 3] [418] +14:33:47 [ 54] [ 40] [0001418C0001608901600002418C000160890160] +14:33:47 ============================================================================ +14:33:47 Sending to : +14:33:47 ============================================================================ +14:33:47 + + +waiting on router queue for slot.... +14:33:48 ============================================================================ +14:33:48 Slot Id : <19> +14:33:48 Transaction Type : REQUEST +14:33:48 Received From : +14:33:48 ============================================================================ +14:33:48 FNo. Len. Field Value +14:33:48 ============================================================================ +14:33:48 [ 1] [ 4] [0200] +14:33:48 [ 2] [ 16] [6688990104022007] +14:33:48 [ 3] [ 6] [301000] +14:33:48 [ 7] [ 10] [0320073254] +14:33:48 [ 11] [ 6] [269697] +14:33:48 [ 12] [ 6] [143254] +14:33:48 [ 13] [ 4] [0320] +14:33:48 [ 14] [ 4] [4302] +14:33:48 [ 15] [ 4] [0320] +14:33:48 [ 18] [ 4] [6011] +14:33:48 [ 19] [ 3] [418] +14:33:48 [ 22] [ 3] [021] +14:33:48 [ 25] [ 2] [01] +14:33:48 [ 32] [ 6] [180893] +14:33:48 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:33:48 [ 37] [ 12] [507907269697] +14:33:48 [ 41] [ 8] [0421BKPH] +14:33:48 [ 42] [ 15] [999999 ] +14:33:48 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:33:48 [ 49] [ 3] [418] +14:33:48 [ 52] [ 16] [473334DCBE911001] +14:33:48 ============================================================================ +14:33:48 + + +waiting on router queue for slot.... +14:33:48 Sending to : +14:33:48 ============================================================================ +14:33:48 ============================================================================ +14:33:48 Slot Id : <19> +14:33:48 Transaction Type : REQUEST +14:33:48 Received From : +14:33:48 ============================================================================ +14:33:48 FNo. Len. Field Value +14:33:48 ============================================================================ +14:33:48 [ 1] [ 4] [0200] +14:33:48 [ 2] [ 16] [6688990104022007] +14:33:48 [ 3] [ 6] [301000] +14:33:48 [ 7] [ 10] [0320073254] +14:33:48 [ 11] [ 6] [269697] +14:33:48 [ 12] [ 6] [143254] +14:33:48 [ 13] [ 4] [0320] +14:33:48 [ 14] [ 4] [4302] +14:33:48 [ 15] [ 4] [0320] +14:33:48 [ 18] [ 4] [6011] +14:33:48 [ 19] [ 3] [418] +14:33:48 [ 22] [ 3] [021] +14:33:48 [ 25] [ 2] [01] +14:33:48 [ 32] [ 6] [180893] +14:33:48 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:33:48 [ 37] [ 12] [507907269697] +14:33:48 [ 41] [ 8] [0421BKPH] +14:33:48 [ 42] [ 15] [999999 ] +14:33:48 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:33:48 [ 49] [ 3] [418] +14:33:48 [ 52] [ 16] [3F768CEE6B61742D] +14:33:48 ============================================================================ +14:33:48 + + +waiting on router queue for slot.... +14:33:48 Sending to : <0> +14:33:48 ============================================================================ +14:33:48 ============================================================================ +14:33:48 Slot Id : <19> +14:33:48 Transaction Type : RESPONSE +14:33:48 Received From : +14:33:48 ============================================================================ +14:33:48 FNo. Len. Field Value +14:33:48 ============================================================================ +14:33:48 [ 1] [ 4] [0210] +14:33:48 [ 2] [ 16] [6688990104022007] +14:33:48 [ 3] [ 6] [301000] +14:33:48 [ 4] [ 12] [000000000000] +14:33:48 [ 7] [ 10] [0320073254] +14:33:48 [ 11] [ 6] [269697] +14:33:48 [ 12] [ 6] [143254] +14:33:48 [ 13] [ 4] [0320] +14:33:48 [ 15] [ 4] [0320] +14:33:48 [ 18] [ 4] [6011] +14:33:48 [ 19] [ 3] [418] +14:33:48 [ 22] [ 3] [021] +14:33:48 [ 32] [ 6] [180893] +14:33:48 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:33:48 [ 37] [ 12] [507907269697] +14:33:48 [ 39] [ 2] [14] +14:33:48 [ 41] [ 8] [0421BKPH] +14:33:48 [ 49] [ 3] [418] +14:33:48 ============================================================================ +14:33:48 Sending to : +14:33:48 ============================================================================ +14:33:48 + + +waiting on router queue for slot.... +14:33:48 ============================================================================ +14:33:48 Slot Id : <27> +14:33:48 Transaction Type : RESPONSE +14:33:48 Received From : +14:33:48 ============================================================================ +14:33:48 FNo. Len. Field Value +14:33:48 ============================================================================ +14:33:48 [ 1] [ 4] [0210] +14:33:48 [ 2] [ 16] [6213545000106058] +14:33:48 [ 3] [ 6] [010000] +14:33:48 [ 4] [ 12] [000010000000] +14:33:48 [ 7] [ 10] [0320073251] +14:33:48 [ 11] [ 6] [269695] +14:33:48 [ 12] [ 6] [143251] +14:33:48 [ 13] [ 4] [0320] +14:33:48 [ 15] [ 4] [0320] +14:33:48 [ 18] [ 4] [6011] +14:33:48 [ 19] [ 3] [418] +14:33:48 [ 32] [ 6] [180893] +14:33:48 [ 35] [ 32] [6213545000106058=491212010605542] +14:33:48 [ 37] [ 12] [507907269695] +14:33:48 [ 38] [ 6] [518653] +14:33:48 [ 39] [ 2] [00] +14:33:48 [ 41] [ 8] [0243VTKS] +14:33:48 [ 49] [ 3] [418] +14:33:48 [ 54] [ 40] [0001418C0001608901600002418C000160890160] +14:33:48 ============================================================================ +14:33:48 Calculate Source COMM Id = 2 +14:33:48 ============================================================================ +14:33:48 + + +waiting on router queue for slot.... +14:33:48 ============================================================================ +14:33:48 Slot Id : <69> +14:33:48 Transaction Type : REQUEST +14:33:48 Received From : +14:33:48 ============================================================================ +14:33:48 FNo. Len. Field Value +14:33:48 ============================================================================ +14:33:48 [ 1] [ 4] [0800] +14:33:48 [ 2] [ 5] [02531] +14:33:48 [ 3] [ 6] [579148] +14:33:48 [ 7] [ 10] [0320073348] +14:33:48 [ 11] [ 6] [807257] +14:33:48 [ 15] [ 10] [0320073348] +14:33:48 [ 37] [ 11] [57914807257] +14:33:48 [ 70] [ 3] [001] +14:33:48 ============================================================================ +14:33:48 + + +waiting on router queue for slot.... +14:33:48 ============================================================================ +14:33:48 Slot Id : <69> +14:33:48 Transaction Type : RESPONSE +14:33:48 Received From : +14:33:48 ============================================================================ +14:33:48 FNo. Len. Field Value +14:33:48 ============================================================================ +14:33:48 [ 1] [ 4] [0810] +14:33:48 [ 7] [ 10] [0320073348] +14:33:48 [ 11] [ 6] [807257] +14:33:48 [ 15] [ 4] [0320] +14:33:48 [ 37] [ 12] [57914807257] +14:33:48 [ 39] [ 2] [00] +14:33:48 [ 70] [ 3] [001] +14:33:48 ============================================================================ +14:33:48 Sending to : +14:33:48 ============================================================================ +14:33:48 + + +waiting on router queue for slot.... +14:33:48 ============================================================================ +14:33:48 Slot Id : <48> +14:33:48 Transaction Type : RESPONSE +14:33:48 Received From : +14:33:48 ============================================================================ +14:33:48 FNo. Len. Field Value +14:33:48 ============================================================================ +14:33:48 [ 1] [ 4] [0210] +14:33:48 [ 2] [ 16] [1808930700009590] +14:33:48 [ 3] [ 6] [011000] +14:33:48 [ 4] [ 12] [000010000000] +14:33:48 [ 6] [ 12] [000010000000] +14:33:48 [ 7] [ 10] [0320143340] +14:33:48 [ 11] [ 6] [771658] +14:33:48 [ 12] [ 6] [143340] +14:33:48 [ 13] [ 4] [0320] +14:33:48 [ 18] [ 4] [6011] +14:33:48 [ 19] [ 3] [418] +14:33:48 [ 22] [ 3] [021] +14:33:48 [ 32] [ 6] [621354] +14:33:48 [ 35] [ 27] [1808930700009590=1803500413] +14:33:48 [ 37] [ 12] [507903335020] +14:33:48 [ 38] [ 6] [771658] +14:33:48 [ 39] [ 2] [51] +14:33:48 [ 41] [ 8] [13001300] +14:33:48 [ 49] [ 3] [418] +14:33:48 [ 52] [ 16] [5AC669B17D2F5775] +14:33:48 ============================================================================ +14:33:48 Sending to : +14:33:48 ============================================================================ +14:33:48 + + +waiting on router queue for slot.... +14:33:49 ============================================================================ +14:33:49 Slot Id : <19> +14:33:49 Transaction Type : RESPONSE +14:33:49 Received From : +14:33:49 ============================================================================ +14:33:49 FNo. Len. Field Value +14:33:49 ============================================================================ +14:33:49 [ 1] [ 4] [0210] +14:33:49 [ 2] [ 16] [6688990104022007] +14:33:49 [ 3] [ 6] [301000] +14:33:49 [ 4] [ 12] [000000000000] +14:33:49 [ 7] [ 10] [0320073254] +14:33:49 [ 11] [ 6] [269697] +14:33:49 [ 12] [ 6] [143254] +14:33:49 [ 13] [ 4] [0320] +14:33:49 [ 15] [ 4] [0320] +14:33:49 [ 18] [ 4] [6011] +14:33:49 [ 19] [ 3] [418] +14:33:49 [ 22] [ 3] [021] +14:33:49 [ 32] [ 6] [180893] +14:33:49 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:33:49 [ 37] [ 12] [507907269697] +14:33:49 [ 39] [ 2] [14] +14:33:49 [ 41] [ 8] [0421BKPH] +14:33:49 [ 49] [ 3] [418] +14:33:49 ============================================================================ +14:33:49 Calculate Source COMM Id = 2 +14:33:49 ============================================================================ +14:33:49 + + +waiting on router queue for slot.... +14:33:50 ============================================================================ +14:33:50 Slot Id : <48> +14:33:50 Transaction Type : RESPONSE +14:33:50 Received From : +14:33:50 ============================================================================ +14:33:50 FNo. Len. Field Value +14:33:50 ============================================================================ +14:33:50 [ 1] [ 4] [0210] +14:33:50 [ 2] [ 16] [1808930700009590] +14:33:50 [ 3] [ 6] [011000] +14:33:50 [ 4] [ 12] [000010000000] +14:33:50 [ 6] [ 12] [000010000000] +14:33:50 [ 7] [ 10] [0320143340] +14:33:50 [ 11] [ 6] [771658] +14:33:50 [ 12] [ 6] [143340] +14:33:50 [ 13] [ 4] [0320] +14:33:50 [ 18] [ 4] [6011] +14:33:50 [ 19] [ 3] [418] +14:33:50 [ 22] [ 3] [021] +14:33:50 [ 32] [ 6] [621354] +14:33:50 [ 35] [ 27] [1808930700009590=1803500413] +14:33:50 [ 37] [ 12] [507903335020] +14:33:50 [ 38] [ 6] [771658] +14:33:50 [ 39] [ 2] [51] +14:33:50 [ 41] [ 8] [13001300] +14:33:50 [ 49] [ 3] [418] +14:33:50 [ 52] [ 16] [5AC669B17D2F5775] +14:33:50 ============================================================================ +14:33:50 Calculate Source COMM Id = 0 +14:33:50 ============================================================================ +14:33:50 + + +waiting on router queue for slot.... +14:33:57 ============================================================================ +14:33:57 Slot Id : <47> +14:33:57 Transaction Type : REQUEST +14:33:57 Received From : +14:33:57 ============================================================================ +14:33:57 FNo. Len. Field Value +14:33:57 ============================================================================ +14:33:57 [ 1] [ 4] [0200] +14:33:57 [ 2] [ 16] [6213545000697734] +14:33:57 [ 3] [ 6] [010000] +14:33:57 [ 4] [ 12] [000200000000] +14:33:57 [ 7] [ 10] [0320073304] +14:33:57 [ 11] [ 6] [269700] +14:33:57 [ 12] [ 6] [143304] +14:33:57 [ 13] [ 4] [0320] +14:33:57 [ 14] [ 4] [4912] +14:33:57 [ 15] [ 4] [0320] +14:33:57 [ 18] [ 4] [6011] +14:33:57 [ 19] [ 3] [418] +14:33:57 [ 22] [ 3] [021] +14:33:57 [ 25] [ 2] [01] +14:33:57 [ 28] [ 9] [D00002000] +14:33:57 [ 32] [ 6] [180893] +14:33:57 [ 35] [ 32] [6213545000697734=491212019773975] +14:33:57 [ 37] [ 12] [507907269700] +14:33:57 [ 41] [ 8] [0221XKKM] +14:33:57 [ 42] [ 15] [999999 ] +14:33:57 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:33:57 [ 49] [ 3] [418] +14:33:57 [ 52] [ 16] [14BE3141B4FC2666] +14:33:57 ============================================================================ +14:33:57 + + +waiting on router queue for slot.... +14:33:57 Sending to : +14:33:57 ============================================================================ +14:33:57 Sending to : +14:33:57 ============================================================================ +14:33:57 ============================================================================ +14:33:57 Slot Id : <47> +14:33:57 Transaction Type : REQUEST +14:33:57 Received From : +14:33:57 ============================================================================ +14:33:57 FNo. Len. Field Value +14:33:57 ============================================================================ +14:33:57 [ 1] [ 4] [0200] +14:33:57 [ 2] [ 16] [6213545000697734] +14:33:57 [ 3] [ 6] [010000] +14:33:57 [ 4] [ 12] [000200000000] +14:33:57 [ 7] [ 10] [0320073304] +14:33:57 [ 11] [ 6] [269700] +14:33:57 [ 12] [ 6] [143304] +14:33:57 [ 13] [ 4] [0320] +14:33:57 [ 14] [ 4] [4912] +14:33:57 [ 15] [ 4] [0320] +14:33:57 [ 18] [ 4] [6011] +14:33:57 [ 19] [ 3] [418] +14:33:57 [ 22] [ 3] [021] +14:33:57 [ 25] [ 2] [01] +14:33:57 [ 28] [ 9] [D00002000] +14:33:57 [ 32] [ 6] [180893] +14:33:57 [ 35] [ 32] [6213545000697734=491212019773975] +14:33:57 [ 37] [ 12] [507907269700] +14:33:57 [ 41] [ 8] [0221XKKM] +14:33:57 [ 42] [ 15] [999999 ] +14:33:57 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:33:57 [ 49] [ 3] [418] +14:33:57 [ 52] [ 16] [14BE3141B4FC2666] +14:33:57 ============================================================================ +14:33:57 + + +waiting on router queue for slot.... +14:33:57 Sending to : +14:33:57 ============================================================================ +14:33:57 ============================================================================ +14:33:57 Slot Id : <47> +14:33:57 Transaction Type : REQUEST +14:33:57 Received From : +14:33:57 ============================================================================ +14:33:57 FNo. Len. Field Value +14:33:57 ============================================================================ +14:33:57 [ 1] [ 4] [0200] +14:33:57 [ 2] [ 16] [6213545000697734] +14:33:57 [ 3] [ 6] [010000] +14:33:57 [ 4] [ 12] [000200000000] +14:33:57 [ 7] [ 10] [0320073304] +14:33:57 [ 11] [ 6] [269700] +14:33:57 [ 12] [ 6] [143304] +14:33:57 [ 13] [ 4] [0320] +14:33:57 [ 14] [ 4] [4912] +14:33:57 [ 15] [ 4] [0320] +14:33:57 [ 18] [ 4] [6011] +14:33:57 [ 19] [ 3] [418] +14:33:57 [ 22] [ 3] [021] +14:33:57 [ 25] [ 2] [01] +14:33:57 [ 28] [ 9] [D00002000] +14:33:57 [ 32] [ 6] [180893] +14:33:57 [ 35] [ 32] [6213545000697734=491212019773975] +14:33:57 [ 37] [ 12] [507907269700] +14:33:57 [ 41] [ 8] [0221XKKM] +14:33:57 [ 42] [ 15] [999999 ] +14:33:57 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:33:57 [ 49] [ 3] [418] +14:33:57 [ 52] [ 16] [665233B07BC68AFB] +14:33:57 ============================================================================ +14:33:57 + + +waiting on router queue for slot.... +14:33:57 Sending to : <0> +14:33:57 ============================================================================ +14:33:57 ============================================================================ +14:33:57 Slot Id : <47> +14:33:57 Transaction Type : RESPONSE +14:33:57 Received From : +14:33:57 ============================================================================ +14:33:57 FNo. Len. Field Value +14:33:57 ============================================================================ +14:33:57 [ 1] [ 4] [0210] +14:33:57 [ 2] [ 16] [6213545000697734] +14:33:57 [ 3] [ 6] [010000] +14:33:57 [ 4] [ 12] [000200000000] +14:33:57 [ 7] [ 10] [0320073304] +14:33:57 [ 11] [ 6] [269700] +14:33:57 [ 12] [ 6] [143304] +14:33:57 [ 13] [ 4] [0320] +14:33:57 [ 15] [ 4] [0320] +14:33:57 [ 18] [ 4] [6011] +14:33:57 [ 19] [ 3] [418] +14:33:57 [ 22] [ 3] [021] +14:33:57 [ 32] [ 6] [180893] +14:33:57 [ 35] [ 32] [6213545000697734=491212019773975] +14:33:57 [ 37] [ 12] [507907269700] +14:33:57 [ 39] [ 2] [61] +14:33:57 [ 41] [ 8] [0221XKKM] +14:33:57 [ 49] [ 3] [418] +14:33:57 ============================================================================ +14:33:57 Sending to : +14:33:57 ============================================================================ +14:33:57 + + +waiting on router queue for slot.... +14:33:58 ============================================================================ +14:33:58 Slot Id : <47> +14:33:58 Transaction Type : RESPONSE +14:33:58 Received From : +14:33:58 ============================================================================ +14:33:58 FNo. Len. Field Value +14:33:58 ============================================================================ +14:33:58 [ 1] [ 4] [0210] +14:33:58 [ 2] [ 16] [6213545000697734] +14:33:58 [ 3] [ 6] [010000] +14:33:58 [ 4] [ 12] [000200000000] +14:33:58 [ 7] [ 10] [0320073304] +14:33:58 [ 11] [ 6] [269700] +14:33:58 [ 12] [ 6] [143304] +14:33:58 [ 13] [ 4] [0320] +14:33:58 [ 15] [ 4] [0320] +14:33:58 [ 18] [ 4] [6011] +14:33:58 [ 19] [ 3] [418] +14:33:58 [ 22] [ 3] [021] +14:33:58 [ 32] [ 6] [180893] +14:33:58 [ 35] [ 32] [6213545000697734=491212019773975] +14:33:58 [ 37] [ 12] [507907269700] +14:33:58 [ 39] [ 2] [61] +14:33:58 [ 41] [ 8] [0221XKKM] +14:33:58 [ 49] [ 3] [418] +14:33:58 ============================================================================ +14:33:58 Calculate Source COMM Id = 2 +14:33:58 ============================================================================ +14:33:58 + + +waiting on router queue for slot.... +14:34:04 ============================================================================ +14:34:04 Slot Id : <78> +14:34:04 Transaction Type : REQUEST +14:34:04 Received From : +14:34:04 ============================================================================ +14:34:04 FNo. Len. Field Value +14:34:04 ============================================================================ +14:34:04 [ 1] [ 4] [0800] +14:34:04 [ 7] [ 10] [0320214553] +14:34:04 [ 11] [ 6] [144553] +14:34:04 [ 37] [ 12] [57914144553] +14:34:04 [ 70] [ 3] [301] +14:34:04 ============================================================================ +14:34:04 + + +waiting on router queue for slot.... +14:34:04 Sending to : +14:34:04 ============================================================================ +14:34:04 ============================================================================ +14:34:04 Slot Id : <78> +14:34:04 Transaction Type : RESPONSE +14:34:04 Received From : +14:34:04 ============================================================================ +14:34:04 FNo. Len. Field Value +14:34:04 ============================================================================ +14:34:04 [ 1] [ 4] [0810] +14:34:04 [ 7] [ 10] [0320214553] +14:34:04 [ 11] [ 6] [144553] +14:34:04 [ 37] [ 12] [579141445530] +14:34:04 [ 39] [ 2] [00] +14:34:04 [ 70] [ 3] [810] +14:34:04 ============================================================================ +14:34:04 Calculate Source COMM Id = 6 +14:34:04 ============================================================================ +14:34:04 + + +waiting on router queue for slot.... +14:34:13 ============================================================================ +14:34:13 Slot Id : <54> +14:34:13 Transaction Type : REQUEST +14:34:13 Received From : +14:34:13 ============================================================================ +14:34:13 FNo. Len. Field Value +14:34:14 ============================================================================ +14:34:14 [ 1] [ 4] [0800] +14:34:14 [ 7] [ 10] [0320073321] +14:34:14 [ 11] [ 6] [156811] +14:34:14 [ 70] [ 3] [301] +14:34:14 ============================================================================ +14:34:14 + + +waiting on router queue for slot.... +14:34:14 Sending to : +14:34:14 ============================================================================ +14:34:14 ============================================================================ +14:34:14 Slot Id : <54> +14:34:14 Transaction Type : RESPONSE +14:34:14 Received From : +14:34:14 ============================================================================ +14:34:14 FNo. Len. Field Value +14:34:14 ============================================================================ +14:34:14 [ 1] [ 4] [0810] +14:34:14 [ 7] [ 10] [0320073321] +14:34:14 [ 11] [ 6] [156811] +14:34:14 [ 39] [ 2] [00] +14:34:14 [ 70] [ 3] [301] +14:34:14 ============================================================================ +14:34:14 Calculate Source COMM Id = 2 +14:34:14 ============================================================================ +14:34:14 + + +waiting on router queue for slot.... +14:34:24 ============================================================================ +14:34:24 Slot Id : <81> +14:34:24 Transaction Type : REQUEST +14:34:24 Received From : +14:34:24 ============================================================================ +14:34:24 FNo. Len. Field Value +14:34:24 ============================================================================ +14:34:24 [ 1] [ 4] [0800] +14:34:24 [ 7] [ 10] [0320073332] +14:34:24 [ 11] [ 6] [156812] +14:34:24 [ 70] [ 3] [301] +14:34:24 ============================================================================ +14:34:24 + + +waiting on router queue for slot.... +14:34:24 Sending to : +14:34:24 ============================================================================ +14:34:24 ============================================================================ +14:34:24 Slot Id : <81> +14:34:24 Transaction Type : RESPONSE +14:34:24 Received From : +14:34:24 ============================================================================ +14:34:24 FNo. Len. Field Value +14:34:24 ============================================================================ +14:34:24 [ 1] [ 4] [0810] +14:34:24 [ 7] [ 10] [0320073332] +14:34:24 [ 11] [ 6] [156812] +14:34:24 [ 39] [ 2] [00] +14:34:24 [ 70] [ 3] [301] +14:34:24 ============================================================================ +14:34:24 Calculate Source COMM Id = 2 +14:34:24 ============================================================================ +14:34:24 + + +waiting on router queue for slot.... +14:34:24 ============================================================================ +14:34:24 Slot Id : <24> +14:34:24 Transaction Type : REQUEST +14:34:24 Received From : +14:34:24 ============================================================================ +14:34:24 FNo. Len. Field Value +14:34:24 ============================================================================ +14:34:24 [ 1] [ 4] [0200] +14:34:24 [ 2] [ 16] [6213545000526008] +14:34:24 [ 3] [ 6] [010000] +14:34:24 [ 4] [ 12] [000100000000] +14:34:24 [ 7] [ 10] [0320073331] +14:34:24 [ 11] [ 6] [269704] +14:34:24 [ 12] [ 6] [143331] +14:34:24 [ 13] [ 4] [0320] +14:34:24 [ 14] [ 4] [4912] +14:34:24 [ 15] [ 4] [0320] +14:34:24 [ 18] [ 4] [6011] +14:34:24 [ 19] [ 3] [418] +14:34:24 [ 22] [ 3] [021] +14:34:24 [ 25] [ 2] [01] +14:34:24 [ 28] [ 9] [D00002000] +14:34:24 [ 32] [ 6] [180893] +14:34:24 [ 35] [ 32] [6213545000526008=491212012600977] +14:34:24 [ 37] [ 12] [507907269704] +14:34:24 [ 41] [ 8] [0114XKBR] +14:34:24 [ 42] [ 15] [999999 ] +14:34:24 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:34:24 [ 49] [ 3] [418] +14:34:24 [ 52] [ 16] [8B208B6FED41ED2B] +14:34:24 ============================================================================ +14:34:24 + + +waiting on router queue for slot.... +14:34:24 Sending to : +14:34:24 ============================================================================ +14:34:24 Sending to : +14:34:24 ============================================================================ +14:34:24 ============================================================================ +14:34:24 Slot Id : <57> +14:34:24 Transaction Type : REQUEST +14:34:24 Received From : +14:34:24 ============================================================================ +14:34:24 FNo. Len. Field Value +14:34:24 ============================================================================ +14:34:24 [ 1] [ 4] [0800] +14:34:24 [ 7] [ 10] [0320073420] +14:34:24 [ 11] [ 6] [030666] +14:34:24 [ 37] [ 12] [507914030666] +14:34:24 [ 70] [ 3] [001] +14:34:24 ============================================================================ +14:34:24 + + +waiting on router queue for slot.... +14:34:24 Sending to : +14:34:24 ============================================================================ +14:34:24 ============================================================================ +14:34:24 Slot Id : <57> +14:34:24 Transaction Type : RESPONSE +14:34:24 Received From : +14:34:24 ============================================================================ +14:34:24 FNo. Len. Field Value +14:34:24 ============================================================================ +14:34:24 [ 1] [ 4] [0810] +14:34:24 [ 7] [ 10] [0320073420] +14:34:24 [ 11] [ 6] [030666] +14:34:24 [ 37] [ 12] [507914030666] +14:34:24 [ 39] [ 2] [00] +14:34:24 [ 70] [ 3] [001] +14:34:24 ============================================================================ +14:34:24 Calculate Source COMM Id = 0 +14:34:24 ============================================================================ +14:34:24 + + +waiting on router queue for slot.... +14:34:25 ============================================================================ +14:34:25 Slot Id : <24> +14:34:25 Transaction Type : REQUEST +14:34:25 Received From : +14:34:25 ============================================================================ +14:34:25 FNo. Len. Field Value +14:34:25 ============================================================================ +14:34:25 [ 1] [ 4] [0200] +14:34:25 [ 2] [ 16] [6213545000526008] +14:34:25 [ 3] [ 6] [010000] +14:34:25 [ 4] [ 12] [000100000000] +14:34:25 [ 7] [ 10] [0320073331] +14:34:25 [ 11] [ 6] [269704] +14:34:25 [ 12] [ 6] [143331] +14:34:25 [ 13] [ 4] [0320] +14:34:25 [ 14] [ 4] [4912] +14:34:25 [ 15] [ 4] [0320] +14:34:25 [ 18] [ 4] [6011] +14:34:25 [ 19] [ 3] [418] +14:34:25 [ 22] [ 3] [021] +14:34:25 [ 25] [ 2] [01] +14:34:25 [ 28] [ 9] [D00002000] +14:34:25 [ 32] [ 6] [180893] +14:34:25 [ 35] [ 32] [6213545000526008=491212012600977] +14:34:25 [ 37] [ 12] [507907269704] +14:34:25 [ 41] [ 8] [0114XKBR] +14:34:25 [ 42] [ 15] [999999 ] +14:34:25 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:34:25 [ 49] [ 3] [418] +14:34:25 [ 52] [ 16] [8B208B6FED41ED2B] +14:34:25 ============================================================================ +14:34:25 + + +waiting on router queue for slot.... +14:34:25 Sending to : +14:34:25 ============================================================================ +14:34:25 ============================================================================ +14:34:25 Slot Id : <24> +14:34:25 Transaction Type : REQUEST +14:34:25 Received From : +14:34:25 ============================================================================ +14:34:25 FNo. Len. Field Value +14:34:25 ============================================================================ +14:34:25 [ 1] [ 4] [0200] +14:34:25 [ 2] [ 16] [6213545000526008] +14:34:25 [ 3] [ 6] [010000] +14:34:25 [ 4] [ 12] [000100000000] +14:34:25 [ 7] [ 10] [0320073331] +14:34:25 [ 11] [ 6] [269704] +14:34:25 [ 12] [ 6] [143331] +14:34:25 [ 13] [ 4] [0320] +14:34:25 [ 14] [ 4] [4912] +14:34:25 [ 15] [ 4] [0320] +14:34:25 [ 18] [ 4] [6011] +14:34:25 [ 19] [ 3] [418] +14:34:25 [ 22] [ 3] [021] +14:34:25 [ 25] [ 2] [01] +14:34:25 [ 28] [ 9] [D00002000] +14:34:25 [ 32] [ 6] [180893] +14:34:25 [ 35] [ 32] [6213545000526008=491212012600977] +14:34:25 [ 37] [ 12] [507907269704] +14:34:25 [ 41] [ 8] [0114XKBR] +14:34:25 [ 42] [ 15] [999999 ] +14:34:25 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:34:25 [ 49] [ 3] [418] +14:34:25 [ 52] [ 16] [CA73A8CE02A1FA93] +14:34:25 ============================================================================ +14:34:25 + + +waiting on router queue for slot.... +14:34:25 Sending to : <0> +14:34:25 ============================================================================ +14:34:25 ============================================================================ +14:34:25 Slot Id : <24> +14:34:25 Transaction Type : RESPONSE +14:34:25 Received From : +14:34:25 ============================================================================ +14:34:25 FNo. Len. Field Value +14:34:25 ============================================================================ +14:34:25 [ 1] [ 4] [0210] +14:34:25 [ 2] [ 16] [6213545000526008] +14:34:25 [ 3] [ 6] [010000] +14:34:25 [ 4] [ 12] [000100000000] +14:34:25 [ 7] [ 10] [0320073331] +14:34:25 [ 11] [ 6] [269704] +14:34:25 [ 12] [ 6] [143331] +14:34:25 [ 13] [ 4] [0320] +14:34:25 [ 15] [ 4] [0320] +14:34:25 [ 18] [ 4] [6011] +14:34:25 [ 19] [ 3] [418] +14:34:25 [ 32] [ 6] [180893] +14:34:25 [ 35] [ 32] [6213545000526008=491212012600977] +14:34:25 [ 37] [ 12] [507907269704] +14:34:25 [ 38] [ 6] [538447] +14:34:25 [ 39] [ 2] [00] +14:34:25 [ 41] [ 8] [0114XKBR] +14:34:25 [ 49] [ 3] [418] +14:34:25 [ 54] [ 40] [0001418C0000999414750002418C000099941475] +14:34:25 ============================================================================ +14:34:25 Sending to : +14:34:25 ============================================================================ +14:34:25 + + +waiting on router queue for slot.... +14:34:27 ============================================================================ +14:34:27 Slot Id : <24> +14:34:27 Transaction Type : RESPONSE +14:34:27 Received From : +14:34:27 ============================================================================ +14:34:27 FNo. Len. Field Value +14:34:27 ============================================================================ +14:34:27 [ 1] [ 4] [0210] +14:34:27 [ 2] [ 16] [6213545000526008] +14:34:27 [ 3] [ 6] [010000] +14:34:27 [ 4] [ 12] [000100000000] +14:34:27 [ 7] [ 10] [0320073331] +14:34:27 [ 11] [ 6] [269704] +14:34:27 [ 12] [ 6] [143331] +14:34:27 [ 13] [ 4] [0320] +14:34:27 [ 15] [ 4] [0320] +14:34:27 [ 18] [ 4] [6011] +14:34:27 [ 19] [ 3] [418] +14:34:27 [ 32] [ 6] [180893] +14:34:27 [ 35] [ 32] [6213545000526008=491212012600977] +14:34:27 [ 37] [ 12] [507907269704] +14:34:27 [ 38] [ 6] [538447] +14:34:27 [ 39] [ 2] [00] +14:34:27 [ 41] [ 8] [0114XKBR] +14:34:27 [ 49] [ 3] [418] +14:34:27 [ 54] [ 40] [0001418C0000999414750002418C000099941475] +14:34:27 ============================================================================ +14:34:27 Calculate Source COMM Id = 2 +14:34:27 ============================================================================ +14:34:27 + + +waiting on router queue for slot.... +14:34:29 ============================================================================ +14:34:29 Slot Id : <42> +14:34:29 Transaction Type : REQUEST +14:34:29 Received From : +14:34:29 ============================================================================ +14:34:29 FNo. Len. Field Value +14:34:29 ============================================================================ +14:34:29 [ 1] [ 4] [0200] +14:34:29 [ 2] [ 16] [1808930700009590] +14:34:29 [ 3] [ 6] [011000] +14:34:29 [ 4] [ 12] [000002000000] +14:34:29 [ 7] [ 10] [0320143425] +14:34:29 [ 11] [ 6] [771793] +14:34:29 [ 12] [ 6] [143425] +14:34:29 [ 13] [ 4] [0320] +14:34:29 [ 15] [ 4] [0320] +14:34:29 [ 18] [ 4] [6011] +14:34:29 [ 22] [ 3] [900] +14:34:29 [ 25] [ 2] [02] +14:34:29 [ 28] [ 9] [D00002000] +14:34:29 [ 32] [ 6] [621354] +14:34:29 [ 35] [ 27] [1808930700009590=1803500413] +14:34:29 [ 37] [ 12] [507903335022] +14:34:29 [ 41] [ 8] [13001300] +14:34:29 [ 42] [ 15] [NATIVE ] +14:34:29 [ 43] [ 40] [Numngam Unit Paek LAO] +14:34:29 [ 49] [ 3] [418] +14:34:29 [ 52] [ 16] [72E6FEDEA98ACA7C] +14:34:29 ============================================================================ +14:34:29 + + +waiting on router queue for slot.... +14:34:29 Sending to : +14:34:29 ============================================================================ +14:34:29 Sending to : +14:34:29 ============================================================================ +14:34:30 ============================================================================ +14:34:30 Slot Id : <42> +14:34:30 Transaction Type : REQUEST +14:34:30 Received From : +14:34:30 ============================================================================ +14:34:30 FNo. Len. Field Value +14:34:30 ============================================================================ +14:34:30 [ 1] [ 4] [0200] +14:34:30 [ 2] [ 16] [1808930700009590] +14:34:30 [ 3] [ 6] [011000] +14:34:30 [ 4] [ 12] [000002000000] +14:34:30 [ 7] [ 10] [0320143425] +14:34:30 [ 11] [ 6] [771793] +14:34:30 [ 12] [ 6] [143425] +14:34:30 [ 13] [ 4] [0320] +14:34:30 [ 15] [ 4] [0320] +14:34:30 [ 18] [ 4] [6011] +14:34:30 [ 22] [ 3] [900] +14:34:30 [ 25] [ 2] [02] +14:34:30 [ 28] [ 9] [D00002000] +14:34:30 [ 32] [ 6] [621354] +14:34:30 [ 35] [ 27] [1808930700009590=1803500413] +14:34:30 [ 37] [ 12] [507903335022] +14:34:30 [ 41] [ 8] [13001300] +14:34:30 [ 42] [ 15] [NATIVE ] +14:34:30 [ 43] [ 40] [Numngam Unit Paek LAO] +14:34:30 [ 49] [ 3] [418] +14:34:30 [ 52] [ 16] [72E6FEDEA98ACA7C] +14:34:30 ============================================================================ +14:34:30 + + +waiting on router queue for slot.... +14:34:30 Sending to : +14:34:30 ============================================================================ +14:34:30 ============================================================================ +14:34:30 Slot Id : <42> +14:34:30 Transaction Type : REQUEST +14:34:30 Received From : +14:34:30 ============================================================================ +14:34:30 FNo. Len. Field Value +14:34:30 ============================================================================ +14:34:30 [ 1] [ 4] [0200] +14:34:30 [ 2] [ 16] [1808930700009590] +14:34:30 [ 3] [ 6] [011000] +14:34:30 [ 4] [ 12] [000002000000] +14:34:30 [ 7] [ 10] [0320143425] +14:34:30 [ 11] [ 6] [771793] +14:34:30 [ 12] [ 6] [143425] +14:34:30 [ 13] [ 4] [0320] +14:34:30 [ 15] [ 4] [0320] +14:34:30 [ 18] [ 4] [6011] +14:34:30 [ 22] [ 3] [900] +14:34:30 [ 25] [ 2] [02] +14:34:30 [ 28] [ 9] [D00002000] +14:34:30 [ 32] [ 6] [621354] +14:34:30 [ 35] [ 27] [1808930700009590=1803500413] +14:34:30 [ 37] [ 12] [507903335022] +14:34:30 [ 41] [ 8] [13001300] +14:34:30 [ 42] [ 15] [NATIVE ] +14:34:30 [ 43] [ 40] [Numngam Unit Paek LAO] +14:34:30 [ 49] [ 3] [418] +14:34:30 [ 52] [ 16] [5AC669B17D2F5775] +14:34:30 ============================================================================ +14:34:30 + + +waiting on router queue for slot.... +14:34:30 Sending to : <2> +14:34:30 ============================================================================ +14:34:36 ============================================================================ +14:34:36 Slot Id : <49> +14:34:36 Transaction Type : REQUEST +14:34:36 Received From : +14:34:36 ============================================================================ +14:34:36 FNo. Len. Field Value +14:34:36 ============================================================================ +14:34:36 [ 1] [ 4] [0200] +14:34:36 [ 2] [ 16] [6688990108428804] +14:34:36 [ 3] [ 6] [300000] +14:34:36 [ 4] [ 12] [000000000000] +14:34:36 [ 7] [ 10] [0320143431] +14:34:36 [ 11] [ 6] [771811] +14:34:36 [ 12] [ 6] [143431] +14:34:36 [ 13] [ 4] [0320] +14:34:36 [ 15] [ 4] [0320] +14:34:36 [ 18] [ 4] [6011] +14:34:36 [ 22] [ 3] [900] +14:34:36 [ 25] [ 2] [02] +14:34:36 [ 28] [ 9] [D00000000] +14:34:36 [ 32] [ 6] [621354] +14:34:36 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:34:36 [ 37] [ 12] [507903499492] +14:34:36 [ 41] [ 8] [06002200] +14:34:36 [ 42] [ 15] [NATIVE ] +14:34:36 [ 43] [ 40] [Beng Market Beng LAO] +14:34:36 [ 49] [ 3] [418] +14:34:36 [ 52] [ 16] [822E858D341464BE] +14:34:36 ============================================================================ +14:34:36 + + +waiting on router queue for slot.... +14:34:36 Sending to : +14:34:36 ============================================================================ +14:34:36 Sending to : +14:34:36 ============================================================================ +14:34:36 ============================================================================ +14:34:36 Slot Id : <49> +14:34:36 Transaction Type : REQUEST +14:34:36 Received From : +14:34:36 ============================================================================ +14:34:36 FNo. Len. Field Value +14:34:36 ============================================================================ +14:34:36 [ 1] [ 4] [0200] +14:34:36 [ 2] [ 16] [6688990108428804] +14:34:36 [ 3] [ 6] [300000] +14:34:36 [ 4] [ 12] [000000000000] +14:34:36 [ 7] [ 10] [0320143431] +14:34:36 [ 11] [ 6] [771811] +14:34:36 [ 12] [ 6] [143431] +14:34:36 [ 13] [ 4] [0320] +14:34:36 [ 15] [ 4] [0320] +14:34:36 [ 18] [ 4] [6011] +14:34:36 [ 22] [ 3] [900] +14:34:36 [ 25] [ 2] [02] +14:34:36 [ 28] [ 9] [D00000000] +14:34:36 [ 32] [ 6] [621354] +14:34:36 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:34:36 [ 37] [ 12] [507903499492] +14:34:36 [ 41] [ 8] [06002200] +14:34:36 [ 42] [ 15] [NATIVE ] +14:34:36 [ 43] [ 40] [Beng Market Beng LAO] +14:34:36 [ 49] [ 3] [418] +14:34:36 [ 52] [ 16] [822E858D341464BE] +14:34:36 ============================================================================ +14:34:36 + + +waiting on router queue for slot.... +14:34:36 Sending to : +14:34:36 ============================================================================ +14:34:36 ============================================================================ +14:34:36 Slot Id : <49> +14:34:36 Transaction Type : REQUEST +14:34:36 Received From : +14:34:36 ============================================================================ +14:34:36 FNo. Len. Field Value +14:34:36 ============================================================================ +14:34:36 [ 1] [ 4] [0200] +14:34:36 [ 2] [ 16] [6688990108428804] +14:34:36 [ 3] [ 6] [300000] +14:34:36 [ 4] [ 12] [000000000000] +14:34:36 [ 7] [ 10] [0320143431] +14:34:36 [ 11] [ 6] [771811] +14:34:36 [ 12] [ 6] [143431] +14:34:36 [ 13] [ 4] [0320] +14:34:36 [ 15] [ 4] [0320] +14:34:36 [ 18] [ 4] [6011] +14:34:36 [ 22] [ 3] [900] +14:34:36 [ 25] [ 2] [02] +14:34:36 [ 28] [ 9] [D00000000] +14:34:36 [ 32] [ 6] [621354] +14:34:36 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:34:36 [ 37] [ 12] [507903499492] +14:34:36 [ 41] [ 8] [06002200] +14:34:36 [ 42] [ 15] [NATIVE ] +14:34:36 [ 43] [ 40] [Beng Market Beng LAO] +14:34:36 [ 49] [ 3] [418] +14:34:36 [ 52] [ 16] [BDE320D8418423E6] +14:34:36 ============================================================================ +14:34:36 + + +waiting on router queue for slot.... +14:34:36 Sending to : <4> +14:34:36 ============================================================================ +14:34:38 ============================================================================ +14:34:38 Slot Id : <49> +14:34:38 Transaction Type : RESPONSE +14:34:38 Received From : +14:34:38 ============================================================================ +14:34:38 FNo. Len. Field Value +14:34:38 ============================================================================ +14:34:38 [ 1] [ 4] [0210] +14:34:38 [ 2] [ 16] [6688990108428804] +14:34:38 [ 3] [ 6] [300000] +14:34:38 [ 4] [ 12] [000000000000] +14:34:38 [ 11] [ 6] [771811] +14:34:38 [ 12] [ 6] [143431] +14:34:38 [ 15] [ 4] [0320] +14:34:38 [ 18] [ 4] [6011] +14:34:38 [ 32] [ 6] [621354] +14:34:38 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:34:38 [ 37] [ 12] [507903499492] +14:34:38 [ 38] [ 6] [847442] +14:34:38 [ 39] [ 2] [00] +14:34:38 [ 41] [ 8] [06002200] +14:34:38 [ 49] [ 3] [418] +14:34:38 [ 54] [ 20] [0002418C000343265107] +14:34:38 ============================================================================ +14:34:38 Sending to : +14:34:38 ============================================================================ +14:34:38 + + +waiting on router queue for slot.... +14:34:39 ============================================================================ +14:34:39 Slot Id : <42> +14:34:39 Transaction Type : RESPONSE +14:34:39 Received From : +14:34:39 ============================================================================ +14:34:39 FNo. Len. Field Value +14:34:39 ============================================================================ +14:34:39 [ 1] [ 4] [0210] +14:34:39 [ 2] [ 16] [1808930700009590] +14:34:39 [ 3] [ 6] [011000] +14:34:39 [ 4] [ 12] [000002000000] +14:34:39 [ 6] [ 12] [000002000000] +14:34:39 [ 7] [ 10] [0320143425] +14:34:39 [ 11] [ 6] [771793] +14:34:39 [ 12] [ 6] [143425] +14:34:39 [ 13] [ 4] [0320] +14:34:39 [ 18] [ 4] [6011] +14:34:39 [ 19] [ 3] [418] +14:34:39 [ 22] [ 3] [021] +14:34:39 [ 32] [ 6] [621354] +14:34:39 [ 35] [ 27] [1808930700009590=1803500413] +14:34:39 [ 37] [ 12] [507903335022] +14:34:39 [ 38] [ 6] [771793] +14:34:39 [ 39] [ 2] [00] +14:34:39 [ 41] [ 8] [13001300] +14:34:39 [ 49] [ 3] [418] +14:34:39 [ 52] [ 16] [5AC669B17D2F5775] +14:34:39 [ 54] [ 20] [1001418C000001960200] +14:34:39 ============================================================================ +14:34:39 Sending to : +14:34:39 ============================================================================ +14:34:39 + + +waiting on router queue for slot.... +14:34:39 ============================================================================ +14:34:39 Slot Id : <34> +14:34:39 Transaction Type : REQUEST +14:34:39 Received From : +14:34:39 ============================================================================ +14:34:39 FNo. Len. Field Value +14:34:39 ============================================================================ +14:34:39 [ 1] [ 4] [0200] +14:34:39 [ 2] [ 16] [6688990104022007] +14:34:39 [ 3] [ 6] [011000] +14:34:39 [ 4] [ 12] [000100000000] +14:34:39 [ 7] [ 10] [0320073345] +14:34:39 [ 11] [ 6] [269706] +14:34:39 [ 12] [ 6] [143345] +14:34:39 [ 13] [ 4] [0320] +14:34:39 [ 14] [ 4] [4302] +14:34:39 [ 15] [ 4] [0320] +14:34:39 [ 18] [ 4] [6011] +14:34:39 [ 19] [ 3] [418] +14:34:39 [ 22] [ 3] [021] +14:34:39 [ 25] [ 2] [01] +14:34:39 [ 28] [ 9] [D00002000] +14:34:39 [ 32] [ 6] [180893] +14:34:39 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:34:39 [ 37] [ 12] [507907269706] +14:34:39 [ 41] [ 8] [0421BKPH] +14:34:39 [ 42] [ 15] [999999 ] +14:34:39 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:34:39 [ 49] [ 3] [418] +14:34:39 [ 52] [ 16] [473334DCBE911001] +14:34:39 ============================================================================ +14:34:39 + + +waiting on router queue for slot.... +14:34:39 Sending to : +14:34:39 ============================================================================ +14:34:39 Sending to : +14:34:39 ============================================================================ +14:34:39 ============================================================================ +14:34:39 Slot Id : <88> +14:34:39 Transaction Type : REQUEST +14:34:39 Received From : +14:34:39 ============================================================================ +14:34:39 FNo. Len. Field Value +14:34:39 ============================================================================ +14:34:39 [ 1] [ 4] [0200] +14:34:39 [ 2] [ 16] [1808931400001408] +14:34:39 [ 3] [ 6] [011000] +14:34:39 [ 4] [ 12] [000015000000] +14:34:39 [ 7] [ 10] [0320143434] +14:34:39 [ 11] [ 6] [771821] +14:34:39 [ 12] [ 6] [143434] +14:34:39 [ 13] [ 4] [0320] +14:34:39 [ 15] [ 4] [0320] +14:34:39 [ 18] [ 4] [6011] +14:34:39 [ 22] [ 3] [900] +14:34:39 [ 25] [ 2] [02] +14:34:39 [ 28] [ 9] [D00002000] +14:34:39 [ 32] [ 6] [621354] +14:34:39 [ 35] [ 27] [1808931400001408=1803500864] +14:34:39 [ 37] [ 12] [507904698949] +14:34:39 [ 41] [ 8] [18000800] +14:34:39 [ 42] [ 15] [NATIVE ] +14:34:39 [ 43] [ 40] [Bountai District Bountai LAO] +14:34:39 [ 49] [ 3] [418] +14:34:39 [ 52] [ 16] [F6DA57702537ADEF] +14:34:39 ============================================================================ +14:34:39 + + +waiting on router queue for slot.... +14:34:39 Sending to : +14:34:39 ============================================================================ +14:34:39 Sending to : +14:34:39 ============================================================================ +14:34:39 ============================================================================ +14:34:39 Slot Id : <49> +14:34:39 Transaction Type : RESPONSE +14:34:39 Received From : +14:34:39 ============================================================================ +14:34:39 FNo. Len. Field Value +14:34:39 ============================================================================ +14:34:39 [ 1] [ 4] [0210] +14:34:39 [ 2] [ 16] [6688990108428804] +14:34:39 [ 3] [ 6] [300000] +14:34:39 [ 4] [ 12] [000000000000] +14:34:39 [ 11] [ 6] [771811] +14:34:39 [ 12] [ 6] [143431] +14:34:39 [ 15] [ 4] [0320] +14:34:39 [ 18] [ 4] [6011] +14:34:39 [ 32] [ 6] [621354] +14:34:39 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:34:39 [ 37] [ 12] [507903499492] +14:34:39 [ 38] [ 6] [847442] +14:34:39 [ 39] [ 2] [00] +14:34:39 [ 41] [ 8] [06002200] +14:34:39 [ 49] [ 3] [418] +14:34:39 [ 54] [ 20] [0002418C000343265107] +14:34:39 ============================================================================ +14:34:39 Calculate Source COMM Id = 0 +14:34:39 ============================================================================ +14:34:39 + + +waiting on router queue for slot.... +14:34:39 ============================================================================ +14:34:39 Slot Id : <34> +14:34:39 Transaction Type : REQUEST +14:34:39 Received From : +14:34:39 ============================================================================ +14:34:39 FNo. Len. Field Value +14:34:39 ============================================================================ +14:34:39 [ 1] [ 4] [0200] +14:34:39 [ 2] [ 16] [6688990104022007] +14:34:39 [ 3] [ 6] [011000] +14:34:39 [ 4] [ 12] [000100000000] +14:34:39 [ 7] [ 10] [0320073345] +14:34:39 [ 11] [ 6] [269706] +14:34:39 [ 12] [ 6] [143345] +14:34:39 [ 13] [ 4] [0320] +14:34:39 [ 14] [ 4] [4302] +14:34:39 [ 15] [ 4] [0320] +14:34:39 [ 18] [ 4] [6011] +14:34:39 [ 19] [ 3] [418] +14:34:39 [ 22] [ 3] [021] +14:34:39 [ 25] [ 2] [01] +14:34:39 [ 28] [ 9] [D00002000] +14:34:39 [ 32] [ 6] [180893] +14:34:39 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:34:39 [ 37] [ 12] [507907269706] +14:34:39 [ 41] [ 8] [0421BKPH] +14:34:39 [ 42] [ 15] [999999 ] +14:34:39 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:34:39 [ 49] [ 3] [418] +14:34:39 [ 52] [ 16] [473334DCBE911001] +14:34:39 ============================================================================ +14:34:39 + + +waiting on router queue for slot.... +14:34:39 Sending to : +14:34:39 ============================================================================ +14:34:39 ============================================================================ +14:34:39 Slot Id : <34> +14:34:39 Transaction Type : REQUEST +14:34:39 Received From : +14:34:39 ============================================================================ +14:34:39 FNo. Len. Field Value +14:34:39 ============================================================================ +14:34:39 [ 1] [ 4] [0200] +14:34:39 [ 2] [ 16] [6688990104022007] +14:34:39 [ 3] [ 6] [011000] +14:34:39 [ 4] [ 12] [000100000000] +14:34:39 [ 7] [ 10] [0320073345] +14:34:39 [ 11] [ 6] [269706] +14:34:39 [ 12] [ 6] [143345] +14:34:39 [ 13] [ 4] [0320] +14:34:39 [ 14] [ 4] [4302] +14:34:39 [ 15] [ 4] [0320] +14:34:39 [ 18] [ 4] [6011] +14:34:39 [ 19] [ 3] [418] +14:34:39 [ 22] [ 3] [021] +14:34:39 [ 25] [ 2] [01] +14:34:39 [ 28] [ 9] [D00002000] +14:34:39 [ 32] [ 6] [180893] +14:34:39 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:34:39 [ 37] [ 12] [507907269706] +14:34:39 [ 41] [ 8] [0421BKPH] +14:34:39 [ 42] [ 15] [999999 ] +14:34:39 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:34:39 [ 49] [ 3] [418] +14:34:39 [ 52] [ 16] [3F768CEE6B61742D] +14:34:39 ============================================================================ +14:34:39 + + +waiting on router queue for slot.... +14:34:39 Sending to : <0> +14:34:39 ============================================================================ +14:34:39 ============================================================================ +14:34:39 Slot Id : <34> +14:34:39 Transaction Type : RESPONSE +14:34:39 Received From : +14:34:39 ============================================================================ +14:34:39 FNo. Len. Field Value +14:34:39 ============================================================================ +14:34:39 [ 1] [ 4] [0210] +14:34:39 [ 2] [ 16] [6688990104022007] +14:34:39 [ 3] [ 6] [011000] +14:34:39 [ 4] [ 12] [000100000000] +14:34:39 [ 7] [ 10] [0320073345] +14:34:39 [ 11] [ 6] [269706] +14:34:39 [ 12] [ 6] [143345] +14:34:39 [ 13] [ 4] [0320] +14:34:39 [ 15] [ 4] [0320] +14:34:39 [ 18] [ 4] [6011] +14:34:39 [ 19] [ 3] [418] +14:34:39 [ 22] [ 3] [021] +14:34:39 [ 32] [ 6] [180893] +14:34:39 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:34:39 [ 37] [ 12] [507907269706] +14:34:39 [ 39] [ 2] [14] +14:34:39 [ 41] [ 8] [0421BKPH] +14:34:39 [ 49] [ 3] [418] +14:34:39 ============================================================================ +14:34:39 Sending to : +14:34:39 ============================================================================ +14:34:39 + + +waiting on router queue for slot.... +14:34:39 ============================================================================ +14:34:39 Slot Id : <88> +14:34:39 Transaction Type : REQUEST +14:34:39 Received From : +14:34:39 ============================================================================ +14:34:39 FNo. Len. Field Value +14:34:39 ============================================================================ +14:34:39 [ 1] [ 4] [0200] +14:34:39 [ 2] [ 16] [1808931400001408] +14:34:39 [ 3] [ 6] [011000] +14:34:39 [ 4] [ 12] [000015000000] +14:34:39 [ 7] [ 10] [0320143434] +14:34:39 [ 11] [ 6] [771821] +14:34:39 [ 12] [ 6] [143434] +14:34:39 [ 13] [ 4] [0320] +14:34:39 [ 15] [ 4] [0320] +14:34:39 [ 18] [ 4] [6011] +14:34:39 [ 22] [ 3] [900] +14:34:39 [ 25] [ 2] [02] +14:34:39 [ 28] [ 9] [D00002000] +14:34:39 [ 32] [ 6] [621354] +14:34:39 [ 35] [ 27] [1808931400001408=1803500864] +14:34:39 [ 37] [ 12] [507904698949] +14:34:39 [ 41] [ 8] [18000800] +14:34:39 [ 42] [ 15] [NATIVE ] +14:34:39 [ 43] [ 40] [Bountai District Bountai LAO] +14:34:39 [ 49] [ 3] [418] +14:34:39 [ 52] [ 16] [F6DA57702537ADEF] +14:34:39 ============================================================================ +14:34:39 + + +waiting on router queue for slot.... +14:34:39 Sending to : +14:34:39 ============================================================================ +14:34:39 ============================================================================ +14:34:39 Slot Id : <88> +14:34:39 Transaction Type : REQUEST +14:34:39 Received From : +14:34:39 ============================================================================ +14:34:39 FNo. Len. Field Value +14:34:39 ============================================================================ +14:34:39 [ 1] [ 4] [0200] +14:34:39 [ 2] [ 16] [1808931400001408] +14:34:39 [ 3] [ 6] [011000] +14:34:39 [ 4] [ 12] [000015000000] +14:34:39 [ 7] [ 10] [0320143434] +14:34:39 [ 11] [ 6] [771821] +14:34:39 [ 12] [ 6] [143434] +14:34:39 [ 13] [ 4] [0320] +14:34:39 [ 15] [ 4] [0320] +14:34:39 [ 18] [ 4] [6011] +14:34:39 [ 22] [ 3] [900] +14:34:39 [ 25] [ 2] [02] +14:34:39 [ 28] [ 9] [D00002000] +14:34:39 [ 32] [ 6] [621354] +14:34:39 [ 35] [ 27] [1808931400001408=1803500864] +14:34:39 [ 37] [ 12] [507904698949] +14:34:39 [ 41] [ 8] [18000800] +14:34:39 [ 42] [ 15] [NATIVE ] +14:34:39 [ 43] [ 40] [Bountai District Bountai LAO] +14:34:39 [ 49] [ 3] [418] +14:34:39 [ 52] [ 16] [DB89C953412A77CF] +14:34:39 ============================================================================ +14:34:39 + + +waiting on router queue for slot.... +14:34:39 Sending to : <2> +14:34:39 ============================================================================ +14:34:41 ============================================================================ +14:34:41 Slot Id : <42> +14:34:41 Transaction Type : RESPONSE +14:34:41 Received From : +14:34:41 ============================================================================ +14:34:41 FNo. Len. Field Value +14:34:41 ============================================================================ +14:34:41 [ 1] [ 4] [0210] +14:34:41 [ 2] [ 16] [1808930700009590] +14:34:41 [ 3] [ 6] [011000] +14:34:41 [ 4] [ 12] [000002000000] +14:34:41 [ 6] [ 12] [000002000000] +14:34:41 [ 7] [ 10] [0320143425] +14:34:41 [ 11] [ 6] [771793] +14:34:41 [ 12] [ 6] [143425] +14:34:41 [ 13] [ 4] [0320] +14:34:41 [ 18] [ 4] [6011] +14:34:41 [ 19] [ 3] [418] +14:34:41 [ 22] [ 3] [021] +14:34:41 [ 32] [ 6] [621354] +14:34:41 [ 35] [ 27] [1808930700009590=1803500413] +14:34:41 [ 37] [ 12] [507903335022] +14:34:41 [ 38] [ 6] [771793] +14:34:41 [ 39] [ 2] [00] +14:34:41 [ 41] [ 8] [13001300] +14:34:41 [ 49] [ 3] [418] +14:34:41 [ 52] [ 16] [5AC669B17D2F5775] +14:34:41 [ 54] [ 20] [1001418C000001960200] +14:34:41 ============================================================================ +14:34:41 Calculate Source COMM Id = 0 +14:34:41 ============================================================================ +14:34:41 + + +waiting on router queue for slot.... +14:34:41 ============================================================================ +14:34:41 Slot Id : <34> +14:34:41 Transaction Type : RESPONSE +14:34:41 Received From : +14:34:41 ============================================================================ +14:34:41 FNo. Len. Field Value +14:34:41 ============================================================================ +14:34:41 [ 1] [ 4] [0210] +14:34:41 [ 2] [ 16] [6688990104022007] +14:34:41 [ 3] [ 6] [011000] +14:34:41 [ 4] [ 12] [000100000000] +14:34:41 [ 7] [ 10] [0320073345] +14:34:41 [ 11] [ 6] [269706] +14:34:41 [ 12] [ 6] [143345] +14:34:41 [ 13] [ 4] [0320] +14:34:41 [ 15] [ 4] [0320] +14:34:41 [ 18] [ 4] [6011] +14:34:41 [ 19] [ 3] [418] +14:34:41 [ 22] [ 3] [021] +14:34:41 [ 32] [ 6] [180893] +14:34:41 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:34:41 [ 37] [ 12] [507907269706] +14:34:41 [ 39] [ 2] [14] +14:34:41 [ 41] [ 8] [0421BKPH] +14:34:41 [ 49] [ 3] [418] +14:34:41 ============================================================================ +14:34:41 Calculate Source COMM Id = 2 +14:34:41 ============================================================================ +14:34:41 + + +waiting on router queue for slot.... +14:34:45 ============================================================================ +14:34:45 Slot Id : <86> +14:34:45 Transaction Type : REQUEST +14:34:45 Received From : +14:34:45 ============================================================================ +14:34:45 FNo. Len. Field Value +14:34:45 ============================================================================ +14:34:45 [ 1] [ 4] [0200] +14:34:45 [ 2] [ 16] [1888880000011569] +14:34:45 [ 3] [ 6] [301000] +14:34:45 [ 4] [ 12] [000000000000] +14:34:45 [ 7] [ 10] [0320143441] +14:34:45 [ 11] [ 6] [771847] +14:34:45 [ 12] [ 6] [143441] +14:34:45 [ 13] [ 4] [0320] +14:34:45 [ 15] [ 4] [0320] +14:34:45 [ 18] [ 4] [6011] +14:34:45 [ 22] [ 3] [900] +14:34:45 [ 25] [ 2] [02] +14:34:45 [ 28] [ 9] [D00000000] +14:34:45 [ 32] [ 6] [621354] +14:34:45 [ 35] [ 32] [1888880000011569=000010100000862] +14:34:45 [ 37] [ 12] [507904412666] +14:34:45 [ 41] [ 8] [03004000] +14:34:45 [ 42] [ 15] [NATIVE ] +14:34:45 [ 43] [ 40] [Kaisone Unit KaisonephomvLAO] +14:34:45 [ 49] [ 3] [418] +14:34:45 [ 52] [ 16] [BF2D02A9BF50F04A] +14:34:45 ============================================================================ +14:34:45 + + +waiting on router queue for slot.... +14:34:45 Sending to : +14:34:45 ============================================================================ +14:34:45 Sending to : +14:34:45 ============================================================================ +14:34:46 ============================================================================ +14:34:46 Slot Id : <86> +14:34:46 Transaction Type : REQUEST +14:34:46 Received From : +14:34:46 ============================================================================ +14:34:46 FNo. Len. Field Value +14:34:46 ============================================================================ +14:34:46 [ 1] [ 4] [0200] +14:34:46 [ 2] [ 16] [1888880000011569] +14:34:46 [ 3] [ 6] [301000] +14:34:46 [ 4] [ 12] [000000000000] +14:34:46 [ 7] [ 10] [0320143441] +14:34:46 [ 11] [ 6] [771847] +14:34:46 [ 12] [ 6] [143441] +14:34:46 [ 13] [ 4] [0320] +14:34:46 [ 15] [ 4] [0320] +14:34:46 [ 18] [ 4] [6011] +14:34:46 [ 22] [ 3] [900] +14:34:46 [ 25] [ 2] [02] +14:34:46 [ 28] [ 9] [D00000000] +14:34:46 [ 32] [ 6] [621354] +14:34:46 [ 35] [ 32] [1888880000011569=000010100000862] +14:34:46 [ 37] [ 12] [507904412666] +14:34:46 [ 41] [ 8] [03004000] +14:34:46 [ 42] [ 15] [NATIVE ] +14:34:46 [ 43] [ 40] [Kaisone Unit KaisonephomvLAO] +14:34:46 [ 49] [ 3] [418] +14:34:46 [ 52] [ 16] [BF2D02A9BF50F04A] +14:34:46 ============================================================================ +14:34:46 + + +waiting on router queue for slot.... +14:34:46 Sending to : +14:34:46 ============================================================================ +14:34:46 ============================================================================ +14:34:46 Slot Id : <86> +14:34:46 Transaction Type : REQUEST +14:34:46 Received From : +14:34:46 ============================================================================ +14:34:46 FNo. Len. Field Value +14:34:46 ============================================================================ +14:34:46 [ 1] [ 4] [0200] +14:34:46 [ 2] [ 16] [1888880000011569] +14:34:46 [ 3] [ 6] [301000] +14:34:46 [ 4] [ 12] [000000000000] +14:34:46 [ 7] [ 10] [0320143441] +14:34:46 [ 11] [ 6] [771847] +14:34:46 [ 12] [ 6] [143441] +14:34:46 [ 13] [ 4] [0320] +14:34:46 [ 15] [ 4] [0320] +14:34:46 [ 18] [ 4] [6011] +14:34:46 [ 22] [ 3] [900] +14:34:46 [ 25] [ 2] [02] +14:34:46 [ 28] [ 9] [D00000000] +14:34:46 [ 32] [ 6] [621354] +14:34:46 [ 35] [ 32] [1888880000011569=000010100000862] +14:34:46 [ 37] [ 12] [507904412666] +14:34:46 [ 41] [ 8] [03004000] +14:34:46 [ 42] [ 15] [NATIVE ] +14:34:46 [ 43] [ 40] [Kaisone Unit KaisonephomvLAO] +14:34:46 [ 49] [ 3] [418] +14:34:46 [ 52] [ 16] [1DE3AD2BB2A9C74E] +14:34:46 ============================================================================ +14:34:46 + + +waiting on router queue for slot.... +14:34:46 Sending to : <5> +14:34:46 ============================================================================ +14:34:47 ============================================================================ +14:34:47 Slot Id : <88> +14:34:47 Transaction Type : RESPONSE +14:34:47 Received From : +14:34:47 ============================================================================ +14:34:47 FNo. Len. Field Value +14:34:47 ============================================================================ +14:34:47 [ 1] [ 4] [0210] +14:34:47 [ 2] [ 16] [1808931400001408] +14:34:47 [ 3] [ 6] [011000] +14:34:47 [ 4] [ 12] [000015000000] +14:34:47 [ 6] [ 12] [000015000000] +14:34:47 [ 7] [ 10] [0320143434] +14:34:47 [ 11] [ 6] [771821] +14:34:47 [ 12] [ 6] [143434] +14:34:47 [ 13] [ 4] [0320] +14:34:47 [ 18] [ 4] [6011] +14:34:47 [ 19] [ 3] [418] +14:34:47 [ 22] [ 3] [021] +14:34:47 [ 32] [ 6] [621354] +14:34:47 [ 35] [ 27] [1808931400001408=1803500864] +14:34:47 [ 37] [ 12] [507904698949] +14:34:47 [ 38] [ 6] [771821] +14:34:47 [ 39] [ 2] [00] +14:34:47 [ 41] [ 8] [18000800] +14:34:47 [ 49] [ 3] [418] +14:34:47 [ 52] [ 16] [DB89C953412A77CF] +14:34:47 [ 54] [ 20] [1001418C000179986400] +14:34:47 ============================================================================ +14:34:47 Sending to : +14:34:47 ============================================================================ +14:34:47 + + +waiting on router queue for slot.... +14:34:49 ============================================================================ +14:34:49 Slot Id : <88> +14:34:49 Transaction Type : RESPONSE +14:34:49 Received From : +14:34:49 ============================================================================ +14:34:49 FNo. Len. Field Value +14:34:49 ============================================================================ +14:34:49 [ 1] [ 4] [0210] +14:34:49 [ 2] [ 16] [1808931400001408] +14:34:49 [ 3] [ 6] [011000] +14:34:49 [ 4] [ 12] [000015000000] +14:34:49 [ 6] [ 12] [000015000000] +14:34:49 [ 7] [ 10] [0320143434] +14:34:49 [ 11] [ 6] [771821] +14:34:49 [ 12] [ 6] [143434] +14:34:49 [ 13] [ 4] [0320] +14:34:49 [ 18] [ 4] [6011] +14:34:49 [ 19] [ 3] [418] +14:34:49 [ 22] [ 3] [021] +14:34:49 [ 32] [ 6] [621354] +14:34:49 [ 35] [ 27] [1808931400001408=1803500864] +14:34:49 [ 37] [ 12] [507904698949] +14:34:49 [ 38] [ 6] [771821] +14:34:49 [ 39] [ 2] [00] +14:34:49 [ 41] [ 8] [18000800] +14:34:49 [ 49] [ 3] [418] +14:34:49 [ 52] [ 16] [DB89C953412A77CF] +14:34:49 [ 54] [ 20] [1001418C000179986400] +14:34:49 ============================================================================ +14:34:49 Calculate Source COMM Id = 0 +14:34:49 ============================================================================ +14:34:49 + + +waiting on router queue for slot.... +14:34:49 ============================================================================ +14:34:49 Slot Id : <86> +14:34:49 Transaction Type : RESPONSE +14:34:49 Received From : +14:34:49 ============================================================================ +14:34:49 FNo. Len. Field Value +14:34:49 ============================================================================ +14:34:49 [ 1] [ 4] [0210] +14:34:49 [ 2] [ 16] [1888880000011569] +14:34:49 [ 3] [ 6] [301000] +14:34:49 [ 4] [ 12] [000000000000] +14:34:49 [ 7] [ 10] [0320143441] +14:34:49 [ 11] [ 6] [771847] +14:34:49 [ 12] [ 6] [143441] +14:34:49 [ 13] [ 4] [0320] +14:34:49 [ 15] [ 4] [0320] +14:34:49 [ 18] [ 4] [6011] +14:34:49 [ 19] [ 3] [418] +14:34:49 [ 32] [ 6] [621354] +14:34:49 [ 37] [ 12] [507904412666] +14:34:49 [ 38] [ 6] [191668] +14:34:49 [ 39] [ 2] [00] +14:34:49 [ 41] [ 8] [03004000] +14:34:49 [ 49] [ 3] [418] +14:34:49 [ 54] [ 20] [1001840C000000020680] +14:34:49 ============================================================================ +14:34:49 Sending to : +14:34:49 ============================================================================ +14:34:49 + + +waiting on router queue for slot.... +14:34:50 ============================================================================ +14:34:50 Slot Id : <89> +14:34:50 Transaction Type : REQUEST +14:34:50 Received From : +14:34:50 ============================================================================ +14:34:50 FNo. Len. Field Value +14:34:50 ============================================================================ +14:34:50 [ 1] [ 4] [0800] +14:34:50 [ 2] [ 5] [02531] +14:34:50 [ 3] [ 6] [579148] +14:34:50 [ 7] [ 10] [0320073450] +14:34:50 [ 11] [ 6] [807258] +14:34:50 [ 15] [ 10] [0320073450] +14:34:50 [ 37] [ 11] [57914807258] +14:34:50 [ 70] [ 3] [001] +14:34:50 ============================================================================ +14:34:50 + + +waiting on router queue for slot.... +14:34:50 ============================================================================ +14:34:50 Slot Id : <89> +14:34:50 Transaction Type : RESPONSE +14:34:50 Received From : +14:34:50 ============================================================================ +14:34:50 FNo. Len. Field Value +14:34:50 ============================================================================ +14:34:50 [ 1] [ 4] [0810] +14:34:50 [ 7] [ 10] [0320073450] +14:34:50 [ 11] [ 6] [807258] +14:34:50 [ 15] [ 4] [0320] +14:34:50 [ 37] [ 12] [57914807258] +14:34:50 [ 39] [ 2] [00] +14:34:50 [ 70] [ 3] [001] +14:34:50 ============================================================================ +14:34:50 Sending to : +14:34:50 ============================================================================ +14:34:50 + + +waiting on router queue for slot.... +14:34:51 ============================================================================ +14:34:51 Slot Id : <86> +14:34:51 Transaction Type : RESPONSE +14:34:51 Received From : +14:34:51 ============================================================================ +14:34:51 FNo. Len. Field Value +14:34:51 ============================================================================ +14:34:51 [ 1] [ 4] [0210] +14:34:51 [ 2] [ 16] [1888880000011569] +14:34:51 [ 3] [ 6] [301000] +14:34:51 [ 4] [ 12] [000000000000] +14:34:51 [ 7] [ 10] [0320143441] +14:34:51 [ 11] [ 6] [771847] +14:34:51 [ 12] [ 6] [143441] +14:34:51 [ 13] [ 4] [0320] +14:34:51 [ 15] [ 4] [0320] +14:34:51 [ 18] [ 4] [6011] +14:34:51 [ 19] [ 3] [418] +14:34:51 [ 32] [ 6] [621354] +14:34:51 [ 37] [ 12] [507904412666] +14:34:51 [ 38] [ 6] [191668] +14:34:51 [ 39] [ 2] [00] +14:34:51 [ 41] [ 8] [03004000] +14:34:51 [ 49] [ 3] [418] +14:34:51 [ 54] [ 20] [1001840C000000020680] +14:34:51 ============================================================================ +14:34:51 Calculate Source COMM Id = 0 +14:34:51 ============================================================================ +14:34:51 + + +waiting on router queue for slot.... +14:34:55 ============================================================================ +14:34:55 Slot Id : <79> +14:34:55 Transaction Type : REQUEST +14:34:55 Received From : +14:34:55 ============================================================================ +14:34:55 FNo. Len. Field Value +14:34:55 ============================================================================ +14:34:55 [ 1] [ 4] [0800] +14:34:55 [ 7] [ 10] [0320074242] +14:34:55 [ 11] [ 6] [098734] +14:34:55 [ 37] [ 12] [57914098734] +14:34:55 [ 70] [ 3] [301] +14:34:55 ============================================================================ +14:34:55 + + +waiting on router queue for slot.... +14:34:55 Sending to : +14:34:55 ============================================================================ +14:34:55 ============================================================================ +14:34:55 Slot Id : <79> +14:34:55 Transaction Type : RESPONSE +14:34:55 Received From : +14:34:55 ============================================================================ +14:34:55 FNo. Len. Field Value +14:34:55 ============================================================================ +14:34:55 [ 1] [ 4] [0810] +14:34:55 [ 7] [ 10] [0320074242] +14:34:55 [ 11] [ 6] [098734] +14:34:55 [ 37] [ 12] [579140987340] +14:34:55 [ 39] [ 2] [00] +14:34:55 [ 70] [ 3] [810] +14:34:55 ============================================================================ +14:34:55 Calculate Source COMM Id = 1 +14:34:55 ============================================================================ +14:34:55 + + +waiting on router queue for slot.... +14:34:56 ============================================================================ +14:34:56 Slot Id : <84> +14:34:56 Transaction Type : REQUEST +14:34:56 Received From : +14:34:56 ============================================================================ +14:34:56 FNo. Len. Field Value +14:34:56 ============================================================================ +14:34:56 [ 1] [ 4] [0800] +14:34:56 [ 7] [ 10] [0320073403] +14:34:56 [ 11] [ 6] [156813] +14:34:56 [ 70] [ 3] [301] +14:34:56 ============================================================================ +14:34:56 + + +waiting on router queue for slot.... +14:34:56 Sending to : +14:34:56 ============================================================================ +14:34:56 ============================================================================ +14:34:56 Slot Id : <84> +14:34:56 Transaction Type : RESPONSE +14:34:56 Received From : +14:34:56 ============================================================================ +14:34:56 FNo. Len. Field Value +14:34:56 ============================================================================ +14:34:56 [ 1] [ 4] [0810] +14:34:56 [ 7] [ 10] [0320073403] +14:34:56 [ 11] [ 6] [156813] +14:34:56 [ 39] [ 2] [00] +14:34:56 [ 70] [ 3] [301] +14:34:56 ============================================================================ +14:34:56 Calculate Source COMM Id = 2 +14:34:56 ============================================================================ +14:34:56 + + +waiting on router queue for slot.... +14:35:08 ============================================================================ +14:35:08 Slot Id : <59> +14:35:08 Transaction Type : REQUEST +14:35:08 Received From : +14:35:08 ============================================================================ +14:35:08 FNo. Len. Field Value +14:35:08 ============================================================================ +14:35:08 [ 1] [ 4] [0800] +14:35:08 [ 7] [ 10] [0320073415] +14:35:08 [ 11] [ 6] [156814] +14:35:08 [ 70] [ 3] [301] +14:35:08 ============================================================================ +14:35:08 + + +waiting on router queue for slot.... +14:35:08 Sending to : +14:35:08 ============================================================================ +14:35:08 ============================================================================ +14:35:08 Slot Id : <59> +14:35:08 Transaction Type : RESPONSE +14:35:08 Received From : +14:35:08 ============================================================================ +14:35:08 FNo. Len. Field Value +14:35:08 ============================================================================ +14:35:08 [ 1] [ 4] [0810] +14:35:08 [ 7] [ 10] [0320073415] +14:35:08 [ 11] [ 6] [156814] +14:35:08 [ 39] [ 2] [00] +14:35:08 [ 70] [ 3] [301] +14:35:08 ============================================================================ +14:35:08 Calculate Source COMM Id = 2 +14:35:08 ============================================================================ +14:35:08 + + +waiting on router queue for slot.... +14:35:09 ============================================================================ +14:35:09 Slot Id : <5> +14:35:09 Transaction Type : REQUEST +14:35:09 Received From : +14:35:09 ============================================================================ +14:35:09 FNo. Len. Field Value +14:35:09 ============================================================================ +14:35:09 [ 1] [ 4] [0800] +14:35:09 [ 7] [ 10] [0320214658] +14:35:09 [ 11] [ 6] [144658] +14:35:09 [ 37] [ 12] [57914144658] +14:35:09 [ 70] [ 3] [301] +14:35:09 ============================================================================ +14:35:09 + + +waiting on router queue for slot.... +14:35:09 Sending to : +14:35:09 ============================================================================ +14:35:09 ============================================================================ +14:35:09 Slot Id : <5> +14:35:09 Transaction Type : RESPONSE +14:35:09 Received From : +14:35:09 ============================================================================ +14:35:09 FNo. Len. Field Value +14:35:09 ============================================================================ +14:35:09 [ 1] [ 4] [0810] +14:35:09 [ 7] [ 10] [0320214658] +14:35:09 [ 11] [ 6] [144658] +14:35:09 [ 37] [ 12] [579141446580] +14:35:09 [ 39] [ 2] [00] +14:35:09 [ 70] [ 3] [810] +14:35:09 ============================================================================ +14:35:09 Calculate Source COMM Id = 6 +14:35:09 ============================================================================ +14:35:09 + + +waiting on router queue for slot.... +14:35:19 ============================================================================ +14:35:19 Slot Id : <67> +14:35:19 Transaction Type : REQUEST +14:35:19 Received From : +14:35:19 ============================================================================ +14:35:19 FNo. Len. Field Value +14:35:19 ============================================================================ +14:35:19 [ 1] [ 4] [0800] +14:35:19 [ 7] [ 10] [0320073426] +14:35:19 [ 11] [ 6] [156815] +14:35:19 [ 70] [ 3] [301] +14:35:19 ============================================================================ +14:35:19 + + +waiting on router queue for slot.... +14:35:19 Sending to : +14:35:19 ============================================================================ +14:35:19 ============================================================================ +14:35:19 Slot Id : <67> +14:35:19 Transaction Type : RESPONSE +14:35:19 Received From : +14:35:19 ============================================================================ +14:35:19 FNo. Len. Field Value +14:35:19 ============================================================================ +14:35:19 [ 1] [ 4] [0810] +14:35:19 [ 7] [ 10] [0320073426] +14:35:19 [ 11] [ 6] [156815] +14:35:19 [ 39] [ 2] [00] +14:35:19 [ 70] [ 3] [301] +14:35:19 ============================================================================ +14:35:19 Calculate Source COMM Id = 2 +14:35:19 ============================================================================ +14:35:19 + + +waiting on router queue for slot.... +14:35:28 ============================================================================ +14:35:28 Slot Id : <62> +14:35:28 Transaction Type : REQUEST +14:35:28 Received From : +14:35:28 ============================================================================ +14:35:28 FNo. Len. Field Value +14:35:28 ============================================================================ +14:35:28 [ 1] [ 4] [0200] +14:35:28 [ 2] [ 16] [6688990104022007] +14:35:28 [ 3] [ 6] [010000] +14:35:28 [ 4] [ 12] [000010000000] +14:35:28 [ 7] [ 10] [0320073434] +14:35:28 [ 11] [ 6] [269712] +14:35:28 [ 12] [ 6] [143434] +14:35:28 [ 13] [ 4] [0320] +14:35:28 [ 14] [ 4] [4302] +14:35:28 [ 15] [ 4] [0320] +14:35:28 [ 18] [ 4] [6011] +14:35:28 [ 19] [ 3] [418] +14:35:28 [ 22] [ 3] [021] +14:35:28 [ 25] [ 2] [01] +14:35:28 [ 28] [ 9] [D00002000] +14:35:28 [ 32] [ 6] [180893] +14:35:28 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:35:28 [ 37] [ 12] [507907269712] +14:35:28 [ 41] [ 8] [0421BKPH] +14:35:28 [ 42] [ 15] [999999 ] +14:35:28 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:35:28 [ 49] [ 3] [418] +14:35:28 [ 52] [ 16] [473334DCBE911001] +14:35:28 ============================================================================ +14:35:28 + + +waiting on router queue for slot.... +14:35:28 Sending to : +14:35:28 ============================================================================ +14:35:28 Sending to : +14:35:28 ============================================================================ +14:35:28 ============================================================================ +14:35:28 Slot Id : <62> +14:35:28 Transaction Type : REQUEST +14:35:28 Received From : +14:35:28 ============================================================================ +14:35:28 FNo. Len. Field Value +14:35:28 ============================================================================ +14:35:28 [ 1] [ 4] [0200] +14:35:28 [ 2] [ 16] [6688990104022007] +14:35:28 [ 3] [ 6] [010000] +14:35:28 [ 4] [ 12] [000010000000] +14:35:28 [ 7] [ 10] [0320073434] +14:35:28 [ 11] [ 6] [269712] +14:35:28 [ 12] [ 6] [143434] +14:35:28 [ 13] [ 4] [0320] +14:35:28 [ 14] [ 4] [4302] +14:35:28 [ 15] [ 4] [0320] +14:35:28 [ 18] [ 4] [6011] +14:35:28 [ 19] [ 3] [418] +14:35:28 [ 22] [ 3] [021] +14:35:28 [ 25] [ 2] [01] +14:35:28 [ 28] [ 9] [D00002000] +14:35:28 [ 32] [ 6] [180893] +14:35:28 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:35:28 [ 37] [ 12] [507907269712] +14:35:28 [ 41] [ 8] [0421BKPH] +14:35:28 [ 42] [ 15] [999999 ] +14:35:28 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:35:28 [ 49] [ 3] [418] +14:35:28 [ 52] [ 16] [473334DCBE911001] +14:35:28 ============================================================================ +14:35:28 + + +waiting on router queue for slot.... +14:35:28 Sending to : +14:35:28 ============================================================================ +14:35:28 ============================================================================ +14:35:28 Slot Id : <62> +14:35:28 Transaction Type : REQUEST +14:35:28 Received From : +14:35:28 ============================================================================ +14:35:28 FNo. Len. Field Value +14:35:28 ============================================================================ +14:35:28 [ 1] [ 4] [0200] +14:35:28 [ 2] [ 16] [6688990104022007] +14:35:28 [ 3] [ 6] [010000] +14:35:28 [ 4] [ 12] [000010000000] +14:35:28 [ 7] [ 10] [0320073434] +14:35:28 [ 11] [ 6] [269712] +14:35:28 [ 12] [ 6] [143434] +14:35:28 [ 13] [ 4] [0320] +14:35:28 [ 14] [ 4] [4302] +14:35:28 [ 15] [ 4] [0320] +14:35:28 [ 18] [ 4] [6011] +14:35:28 [ 19] [ 3] [418] +14:35:28 [ 22] [ 3] [021] +14:35:28 [ 25] [ 2] [01] +14:35:28 [ 28] [ 9] [D00002000] +14:35:28 [ 32] [ 6] [180893] +14:35:28 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:35:28 [ 37] [ 12] [507907269712] +14:35:28 [ 41] [ 8] [0421BKPH] +14:35:28 [ 42] [ 15] [999999 ] +14:35:28 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:35:28 [ 49] [ 3] [418] +14:35:28 [ 52] [ 16] [3F768CEE6B61742D] +14:35:28 ============================================================================ +14:35:28 + + +waiting on router queue for slot.... +14:35:28 Sending to : <0> +14:35:28 ============================================================================ +14:35:28 ============================================================================ +14:35:28 Slot Id : <62> +14:35:28 Transaction Type : RESPONSE +14:35:28 Received From : +14:35:28 ============================================================================ +14:35:28 FNo. Len. Field Value +14:35:28 ============================================================================ +14:35:28 [ 1] [ 4] [0210] +14:35:28 [ 2] [ 16] [6688990104022007] +14:35:28 [ 3] [ 6] [010000] +14:35:28 [ 4] [ 12] [000010000000] +14:35:28 [ 7] [ 10] [0320073434] +14:35:28 [ 11] [ 6] [269712] +14:35:28 [ 12] [ 6] [143434] +14:35:28 [ 13] [ 4] [0320] +14:35:28 [ 15] [ 4] [0320] +14:35:28 [ 18] [ 4] [6011] +14:35:28 [ 19] [ 3] [418] +14:35:28 [ 22] [ 3] [021] +14:35:28 [ 32] [ 6] [180893] +14:35:28 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:35:28 [ 37] [ 12] [507907269712] +14:35:28 [ 39] [ 2] [14] +14:35:28 [ 41] [ 8] [0421BKPH] +14:35:28 [ 49] [ 3] [418] +14:35:28 ============================================================================ +14:35:28 Sending to : +14:35:28 ============================================================================ +14:35:28 + + +waiting on router queue for slot.... +14:35:29 ============================================================================ +14:35:29 Slot Id : <51> +14:35:29 Transaction Type : REQUEST +14:35:29 Received From : +14:35:29 ============================================================================ +14:35:29 FNo. Len. Field Value +14:35:29 ============================================================================ +14:35:29 [ 1] [ 4] [0200] +14:35:29 [ 2] [ 16] [6213545000526008] +14:35:29 [ 3] [ 6] [010000] +14:35:29 [ 4] [ 12] [000050000000] +14:35:29 [ 7] [ 10] [0320073435] +14:35:29 [ 11] [ 6] [269713] +14:35:29 [ 12] [ 6] [143435] +14:35:29 [ 13] [ 4] [0320] +14:35:29 [ 14] [ 4] [4912] +14:35:29 [ 15] [ 4] [0320] +14:35:29 [ 18] [ 4] [6011] +14:35:29 [ 19] [ 3] [418] +14:35:29 [ 22] [ 3] [021] +14:35:29 [ 25] [ 2] [01] +14:35:29 [ 28] [ 9] [D00002000] +14:35:29 [ 32] [ 6] [180893] +14:35:29 [ 35] [ 32] [6213545000526008=491212012600977] +14:35:29 [ 37] [ 12] [507907269713] +14:35:29 [ 41] [ 8] [0114XKBR] +14:35:29 [ 42] [ 15] [999999 ] +14:35:29 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:35:29 [ 49] [ 3] [418] +14:35:29 [ 52] [ 16] [8B208B6FED41ED2B] +14:35:29 ============================================================================ +14:35:29 + + +waiting on router queue for slot.... +14:35:29 Sending to : +14:35:29 ============================================================================ +14:35:29 Sending to : +14:35:29 ============================================================================ +14:35:29 ============================================================================ +14:35:29 Slot Id : <51> +14:35:29 Transaction Type : REQUEST +14:35:29 Received From : +14:35:29 ============================================================================ +14:35:29 FNo. Len. Field Value +14:35:29 ============================================================================ +14:35:29 [ 1] [ 4] [0200] +14:35:29 [ 2] [ 16] [6213545000526008] +14:35:29 [ 3] [ 6] [010000] +14:35:29 [ 4] [ 12] [000050000000] +14:35:29 [ 7] [ 10] [0320073435] +14:35:29 [ 11] [ 6] [269713] +14:35:29 [ 12] [ 6] [143435] +14:35:29 [ 13] [ 4] [0320] +14:35:29 [ 14] [ 4] [4912] +14:35:29 [ 15] [ 4] [0320] +14:35:29 [ 18] [ 4] [6011] +14:35:29 [ 19] [ 3] [418] +14:35:29 [ 22] [ 3] [021] +14:35:29 [ 25] [ 2] [01] +14:35:29 [ 28] [ 9] [D00002000] +14:35:29 [ 32] [ 6] [180893] +14:35:29 [ 35] [ 32] [6213545000526008=491212012600977] +14:35:29 [ 37] [ 12] [507907269713] +14:35:29 [ 41] [ 8] [0114XKBR] +14:35:29 [ 42] [ 15] [999999 ] +14:35:29 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:35:29 [ 49] [ 3] [418] +14:35:29 [ 52] [ 16] [8B208B6FED41ED2B] +14:35:29 ============================================================================ +14:35:29 + + +waiting on router queue for slot.... +14:35:29 Sending to : +14:35:29 ============================================================================ +14:35:29 ============================================================================ +14:35:29 Slot Id : <51> +14:35:29 Transaction Type : REQUEST +14:35:29 Received From : +14:35:29 ============================================================================ +14:35:29 FNo. Len. Field Value +14:35:29 ============================================================================ +14:35:29 [ 1] [ 4] [0200] +14:35:29 [ 2] [ 16] [6213545000526008] +14:35:29 [ 3] [ 6] [010000] +14:35:29 [ 4] [ 12] [000050000000] +14:35:29 [ 7] [ 10] [0320073435] +14:35:29 [ 11] [ 6] [269713] +14:35:29 [ 12] [ 6] [143435] +14:35:29 [ 13] [ 4] [0320] +14:35:29 [ 14] [ 4] [4912] +14:35:29 [ 15] [ 4] [0320] +14:35:29 [ 18] [ 4] [6011] +14:35:29 [ 19] [ 3] [418] +14:35:29 [ 22] [ 3] [021] +14:35:29 [ 25] [ 2] [01] +14:35:29 [ 28] [ 9] [D00002000] +14:35:29 [ 32] [ 6] [180893] +14:35:29 [ 35] [ 32] [6213545000526008=491212012600977] +14:35:29 [ 37] [ 12] [507907269713] +14:35:29 [ 41] [ 8] [0114XKBR] +14:35:29 [ 42] [ 15] [999999 ] +14:35:29 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +14:35:29 [ 49] [ 3] [418] +14:35:29 [ 52] [ 16] [CA73A8CE02A1FA93] +14:35:29 ============================================================================ +14:35:29 + + +waiting on router queue for slot.... +14:35:29 Sending to : <0> +14:35:29 ============================================================================ +14:35:29 ============================================================================ +14:35:29 Slot Id : <62> +14:35:29 Transaction Type : RESPONSE +14:35:29 Received From : +14:35:29 ============================================================================ +14:35:29 FNo. Len. Field Value +14:35:29 ============================================================================ +14:35:29 [ 1] [ 4] [0210] +14:35:29 [ 2] [ 16] [6688990104022007] +14:35:29 [ 3] [ 6] [010000] +14:35:29 [ 4] [ 12] [000010000000] +14:35:29 [ 7] [ 10] [0320073434] +14:35:29 [ 11] [ 6] [269712] +14:35:29 [ 12] [ 6] [143434] +14:35:29 [ 13] [ 4] [0320] +14:35:29 [ 15] [ 4] [0320] +14:35:29 [ 18] [ 4] [6011] +14:35:29 [ 19] [ 3] [418] +14:35:29 [ 22] [ 3] [021] +14:35:29 [ 32] [ 6] [180893] +14:35:29 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:35:29 [ 37] [ 12] [507907269712] +14:35:29 [ 39] [ 2] [14] +14:35:29 [ 41] [ 8] [0421BKPH] +14:35:29 [ 49] [ 3] [418] +14:35:29 ============================================================================ +14:35:29 Calculate Source COMM Id = 2 +14:35:29 ============================================================================ +14:35:29 + + +waiting on router queue for slot.... +14:35:30 ============================================================================ +14:35:30 Slot Id : <51> +14:35:30 Transaction Type : RESPONSE +14:35:30 Received From : +14:35:30 ============================================================================ +14:35:30 FNo. Len. Field Value +14:35:30 ============================================================================ +14:35:30 [ 1] [ 4] [0210] +14:35:30 [ 2] [ 16] [6213545000526008] +14:35:30 [ 3] [ 6] [010000] +14:35:30 [ 4] [ 12] [000050000000] +14:35:30 [ 7] [ 10] [0320073435] +14:35:30 [ 11] [ 6] [269713] +14:35:30 [ 12] [ 6] [143435] +14:35:30 [ 13] [ 4] [0320] +14:35:30 [ 15] [ 4] [0320] +14:35:30 [ 18] [ 4] [6011] +14:35:30 [ 19] [ 3] [418] +14:35:30 [ 32] [ 6] [180893] +14:35:30 [ 35] [ 32] [6213545000526008=491212012600977] +14:35:30 [ 37] [ 12] [507907269713] +14:35:30 [ 38] [ 6] [963666] +14:35:30 [ 39] [ 2] [00] +14:35:30 [ 41] [ 8] [0114XKBR] +14:35:30 [ 49] [ 3] [418] +14:35:30 [ 54] [ 40] [0001418C0000497414750002418C000049741475] +14:35:30 ============================================================================ +14:35:30 Sending to : +14:35:30 ============================================================================ +14:35:30 + + +waiting on router queue for slot.... +14:35:31 ============================================================================ +14:35:31 Slot Id : <51> +14:35:31 Transaction Type : RESPONSE +14:35:31 Received From : +14:35:31 ============================================================================ +14:35:31 FNo. Len. Field Value +14:35:31 ============================================================================ +14:35:31 [ 1] [ 4] [0210] +14:35:31 [ 2] [ 16] [6213545000526008] +14:35:31 [ 3] [ 6] [010000] +14:35:31 [ 4] [ 12] [000050000000] +14:35:31 [ 7] [ 10] [0320073435] +14:35:31 [ 11] [ 6] [269713] +14:35:31 [ 12] [ 6] [143435] +14:35:31 [ 13] [ 4] [0320] +14:35:31 [ 15] [ 4] [0320] +14:35:31 [ 18] [ 4] [6011] +14:35:31 [ 19] [ 3] [418] +14:35:31 [ 32] [ 6] [180893] +14:35:31 [ 35] [ 32] [6213545000526008=491212012600977] +14:35:31 [ 37] [ 12] [507907269713] +14:35:31 [ 38] [ 6] [963666] +14:35:31 [ 39] [ 2] [00] +14:35:31 [ 41] [ 8] [0114XKBR] +14:35:31 [ 49] [ 3] [418] +14:35:31 [ 54] [ 40] [0001418C0000497414750002418C000049741475] +14:35:31 ============================================================================ +14:35:31 Calculate Source COMM Id = 2 +14:35:31 ============================================================================ +14:35:31 + + +waiting on router queue for slot.... +14:35:39 ============================================================================ +14:35:39 Slot Id : <39> +14:35:39 Transaction Type : REQUEST +14:35:39 Received From : +14:35:39 ============================================================================ +14:35:39 FNo. Len. Field Value +14:35:39 ============================================================================ +14:35:39 [ 1] [ 4] [0200] +14:35:39 [ 2] [ 16] [6213545000697734] +14:35:39 [ 3] [ 6] [010000] +14:35:39 [ 4] [ 12] [000050000000] +14:35:39 [ 7] [ 10] [0320073444] +14:35:39 [ 11] [ 6] [269714] +14:35:39 [ 12] [ 6] [143444] +14:35:39 [ 13] [ 4] [0320] +14:35:39 [ 14] [ 4] [4912] +14:35:39 [ 15] [ 4] [0320] +14:35:39 [ 18] [ 4] [6011] +14:35:39 [ 19] [ 3] [418] +14:35:39 [ 22] [ 3] [021] +14:35:39 [ 25] [ 2] [01] +14:35:39 [ 28] [ 9] [D00002000] +14:35:39 [ 32] [ 6] [180893] +14:35:39 [ 35] [ 32] [6213545000697734=491212019773975] +14:35:39 [ 37] [ 12] [507907269714] +14:35:39 [ 41] [ 8] [0221XKKM] +14:35:39 [ 42] [ 15] [999999 ] +14:35:39 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:35:39 [ 49] [ 3] [418] +14:35:39 [ 52] [ 16] [14BE3141B4FC2666] +14:35:39 ============================================================================ +14:35:39 + + +waiting on router queue for slot.... +14:35:39 Sending to : +14:35:39 ============================================================================ +14:35:39 Sending to : +14:35:39 ============================================================================ +14:35:39 ============================================================================ +14:35:39 Slot Id : <39> +14:35:39 Transaction Type : REQUEST +14:35:39 Received From : +14:35:39 ============================================================================ +14:35:39 FNo. Len. Field Value +14:35:39 ============================================================================ +14:35:39 [ 1] [ 4] [0200] +14:35:39 [ 2] [ 16] [6213545000697734] +14:35:39 [ 3] [ 6] [010000] +14:35:39 [ 4] [ 12] [000050000000] +14:35:39 [ 7] [ 10] [0320073444] +14:35:39 [ 11] [ 6] [269714] +14:35:39 [ 12] [ 6] [143444] +14:35:39 [ 13] [ 4] [0320] +14:35:39 [ 14] [ 4] [4912] +14:35:39 [ 15] [ 4] [0320] +14:35:39 [ 18] [ 4] [6011] +14:35:39 [ 19] [ 3] [418] +14:35:39 [ 22] [ 3] [021] +14:35:39 [ 25] [ 2] [01] +14:35:39 [ 28] [ 9] [D00002000] +14:35:39 [ 32] [ 6] [180893] +14:35:39 [ 35] [ 32] [6213545000697734=491212019773975] +14:35:39 [ 37] [ 12] [507907269714] +14:35:39 [ 41] [ 8] [0221XKKM] +14:35:39 [ 42] [ 15] [999999 ] +14:35:39 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:35:39 [ 49] [ 3] [418] +14:35:39 [ 52] [ 16] [14BE3141B4FC2666] +14:35:39 ============================================================================ +14:35:39 + + +waiting on router queue for slot.... +14:35:39 Sending to : +14:35:39 ============================================================================ +14:35:39 ============================================================================ +14:35:39 Slot Id : <39> +14:35:39 Transaction Type : REQUEST +14:35:39 Received From : +14:35:39 ============================================================================ +14:35:39 FNo. Len. Field Value +14:35:39 ============================================================================ +14:35:39 [ 1] [ 4] [0200] +14:35:39 [ 2] [ 16] [6213545000697734] +14:35:39 [ 3] [ 6] [010000] +14:35:39 [ 4] [ 12] [000050000000] +14:35:39 [ 7] [ 10] [0320073444] +14:35:39 [ 11] [ 6] [269714] +14:35:39 [ 12] [ 6] [143444] +14:35:39 [ 13] [ 4] [0320] +14:35:39 [ 14] [ 4] [4912] +14:35:39 [ 15] [ 4] [0320] +14:35:39 [ 18] [ 4] [6011] +14:35:39 [ 19] [ 3] [418] +14:35:39 [ 22] [ 3] [021] +14:35:39 [ 25] [ 2] [01] +14:35:39 [ 28] [ 9] [D00002000] +14:35:39 [ 32] [ 6] [180893] +14:35:39 [ 35] [ 32] [6213545000697734=491212019773975] +14:35:39 [ 37] [ 12] [507907269714] +14:35:39 [ 41] [ 8] [0221XKKM] +14:35:39 [ 42] [ 15] [999999 ] +14:35:39 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:35:39 [ 49] [ 3] [418] +14:35:39 [ 52] [ 16] [665233B07BC68AFB] +14:35:39 ============================================================================ +14:35:39 + + +waiting on router queue for slot.... +14:35:39 Sending to : <0> +14:35:39 ============================================================================ +14:35:40 ============================================================================ +14:35:40 Slot Id : <39> +14:35:40 Transaction Type : RESPONSE +14:35:40 Received From : +14:35:40 ============================================================================ +14:35:40 FNo. Len. Field Value +14:35:40 ============================================================================ +14:35:40 [ 1] [ 4] [0210] +14:35:40 [ 2] [ 16] [6213545000697734] +14:35:40 [ 3] [ 6] [010000] +14:35:40 [ 4] [ 12] [000050000000] +14:35:40 [ 7] [ 10] [0320073444] +14:35:40 [ 11] [ 6] [269714] +14:35:40 [ 12] [ 6] [143444] +14:35:40 [ 13] [ 4] [0320] +14:35:40 [ 15] [ 4] [0320] +14:35:40 [ 18] [ 4] [6011] +14:35:40 [ 19] [ 3] [418] +14:35:40 [ 32] [ 6] [180893] +14:35:40 [ 35] [ 32] [6213545000697734=491212019773975] +14:35:40 [ 37] [ 12] [507907269714] +14:35:40 [ 38] [ 6] [915298] +14:35:40 [ 39] [ 2] [00] +14:35:40 [ 41] [ 8] [0221XKKM] +14:35:40 [ 49] [ 3] [418] +14:35:40 [ 54] [ 40] [0001418C0003208950210002418C000320895021] +14:35:40 ============================================================================ +14:35:40 Sending to : +14:35:40 ============================================================================ +14:35:40 + + +waiting on router queue for slot.... +14:35:41 ============================================================================ +14:35:41 Slot Id : <39> +14:35:41 Transaction Type : RESPONSE +14:35:41 Received From : +14:35:41 ============================================================================ +14:35:41 FNo. Len. Field Value +14:35:41 ============================================================================ +14:35:41 [ 1] [ 4] [0210] +14:35:41 [ 2] [ 16] [6213545000697734] +14:35:41 [ 3] [ 6] [010000] +14:35:41 [ 4] [ 12] [000050000000] +14:35:41 [ 7] [ 10] [0320073444] +14:35:41 [ 11] [ 6] [269714] +14:35:41 [ 12] [ 6] [143444] +14:35:41 [ 13] [ 4] [0320] +14:35:41 [ 15] [ 4] [0320] +14:35:41 [ 18] [ 4] [6011] +14:35:41 [ 19] [ 3] [418] +14:35:41 [ 32] [ 6] [180893] +14:35:41 [ 35] [ 32] [6213545000697734=491212019773975] +14:35:41 [ 37] [ 12] [507907269714] +14:35:41 [ 38] [ 6] [915298] +14:35:41 [ 39] [ 2] [00] +14:35:41 [ 41] [ 8] [0221XKKM] +14:35:41 [ 49] [ 3] [418] +14:35:41 [ 54] [ 40] [0001418C0003208950210002418C000320895021] +14:35:41 ============================================================================ +14:35:41 Calculate Source COMM Id = 2 +14:35:41 ============================================================================ +14:35:41 + + +waiting on router queue for slot.... +14:35:43 ============================================================================ +14:35:43 Slot Id : <56> +14:35:43 Transaction Type : REQUEST +14:35:43 Received From : +14:35:43 ============================================================================ +14:35:43 FNo. Len. Field Value +14:35:43 ============================================================================ +14:35:43 [ 1] [ 4] [0200] +14:35:43 [ 2] [ 16] [1888880000011569] +14:35:43 [ 3] [ 6] [011000] +14:35:43 [ 4] [ 12] [000060000000] +14:35:43 [ 7] [ 10] [0320143538] +14:35:43 [ 11] [ 6] [772025] +14:35:43 [ 12] [ 6] [143538] +14:35:43 [ 13] [ 4] [0320] +14:35:43 [ 15] [ 4] [0320] +14:35:43 [ 18] [ 4] [6011] +14:35:43 [ 22] [ 3] [900] +14:35:43 [ 25] [ 2] [02] +14:35:43 [ 28] [ 9] [D00002000] +14:35:43 [ 32] [ 6] [621354] +14:35:43 [ 35] [ 32] [1888880000011569=000010100000862] +14:35:43 [ 37] [ 12] [507904412668] +14:35:43 [ 41] [ 8] [03004000] +14:35:43 [ 42] [ 15] [NATIVE ] +14:35:43 [ 43] [ 40] [Kaisone Unit KaisonephomvLAO] +14:35:43 [ 49] [ 3] [418] +14:35:43 [ 52] [ 16] [BF2D02A9BF50F04A] +14:35:43 ============================================================================ +14:35:43 + + +waiting on router queue for slot.... +14:35:43 Sending to : +14:35:43 ============================================================================ +14:35:43 Sending to : +14:35:43 ============================================================================ +14:35:43 ============================================================================ +14:35:43 Slot Id : <56> +14:35:43 Transaction Type : REQUEST +14:35:43 Received From : +14:35:43 ============================================================================ +14:35:43 FNo. Len. Field Value +14:35:43 ============================================================================ +14:35:43 [ 1] [ 4] [0200] +14:35:43 [ 2] [ 16] [1888880000011569] +14:35:43 [ 3] [ 6] [011000] +14:35:43 [ 4] [ 12] [000060000000] +14:35:43 [ 7] [ 10] [0320143538] +14:35:43 [ 11] [ 6] [772025] +14:35:43 [ 12] [ 6] [143538] +14:35:43 [ 13] [ 4] [0320] +14:35:43 [ 15] [ 4] [0320] +14:35:43 [ 18] [ 4] [6011] +14:35:43 [ 22] [ 3] [900] +14:35:43 [ 25] [ 2] [02] +14:35:43 [ 28] [ 9] [D00002000] +14:35:43 [ 32] [ 6] [621354] +14:35:43 [ 35] [ 32] [1888880000011569=000010100000862] +14:35:43 [ 37] [ 12] [507904412668] +14:35:43 [ 41] [ 8] [03004000] +14:35:43 [ 42] [ 15] [NATIVE ] +14:35:43 [ 43] [ 40] [Kaisone Unit KaisonephomvLAO] +14:35:43 [ 49] [ 3] [418] +14:35:43 [ 52] [ 16] [BF2D02A9BF50F04A] +14:35:43 ============================================================================ +14:35:43 + + +waiting on router queue for slot.... +14:35:43 Sending to : +14:35:43 ============================================================================ +14:35:43 ============================================================================ +14:35:43 Slot Id : <56> +14:35:43 Transaction Type : REQUEST +14:35:43 Received From : +14:35:43 ============================================================================ +14:35:43 FNo. Len. Field Value +14:35:43 ============================================================================ +14:35:43 [ 1] [ 4] [0200] +14:35:43 [ 2] [ 16] [1888880000011569] +14:35:43 [ 3] [ 6] [011000] +14:35:43 [ 4] [ 12] [000060000000] +14:35:43 [ 7] [ 10] [0320143538] +14:35:43 [ 11] [ 6] [772025] +14:35:43 [ 12] [ 6] [143538] +14:35:43 [ 13] [ 4] [0320] +14:35:43 [ 15] [ 4] [0320] +14:35:43 [ 18] [ 4] [6011] +14:35:43 [ 22] [ 3] [900] +14:35:43 [ 25] [ 2] [02] +14:35:43 [ 28] [ 9] [D00002000] +14:35:43 [ 32] [ 6] [621354] +14:35:43 [ 35] [ 32] [1888880000011569=000010100000862] +14:35:43 [ 37] [ 12] [507904412668] +14:35:43 [ 41] [ 8] [03004000] +14:35:43 [ 42] [ 15] [NATIVE ] +14:35:43 [ 43] [ 40] [Kaisone Unit KaisonephomvLAO] +14:35:43 [ 49] [ 3] [418] +14:35:43 [ 52] [ 16] [1DE3AD2BB2A9C74E] +14:35:43 ============================================================================ +14:35:43 + + +waiting on router queue for slot.... +14:35:43 Sending to : <5> +14:35:43 ============================================================================ +14:35:51 ============================================================================ +14:35:51 Slot Id : <56> +14:35:51 Transaction Type : RESPONSE +14:35:51 Received From : +14:35:51 ============================================================================ +14:35:51 FNo. Len. Field Value +14:35:51 ============================================================================ +14:35:51 [ 1] [ 4] [0210] +14:35:51 [ 2] [ 16] [1888880000011569] +14:35:51 [ 3] [ 6] [011000] +14:35:51 [ 4] [ 12] [000060000000] +14:35:51 [ 7] [ 10] [0320143538] +14:35:51 [ 11] [ 6] [772025] +14:35:51 [ 12] [ 6] [143538] +14:35:51 [ 13] [ 4] [0320] +14:35:51 [ 15] [ 4] [0320] +14:35:51 [ 18] [ 4] [6011] +14:35:51 [ 19] [ 3] [418] +14:35:51 [ 32] [ 6] [621354] +14:35:51 [ 37] [ 12] [507904412668] +14:35:51 [ 38] [ 6] [482156] +14:35:51 [ 39] [ 2] [00] +14:35:51 [ 41] [ 8] [03004000] +14:35:51 [ 49] [ 3] [418] +14:35:51 [ 54] [ 0] [] +14:35:51 ============================================================================ +14:35:51 Sending to : +14:35:51 ============================================================================ +14:35:51 + + +waiting on router queue for slot.... +14:35:52 ============================================================================ +14:35:52 Slot Id : <99> +14:35:52 Transaction Type : REQUEST +14:35:52 Received From : +14:35:52 ============================================================================ +14:35:52 FNo. Len. Field Value +14:35:52 ============================================================================ +14:35:52 [ 1] [ 4] [0200] +14:35:52 [ 2] [ 16] [6688990104022007] +14:35:52 [ 3] [ 6] [301000] +14:35:52 [ 7] [ 10] [0320073458] +14:35:52 [ 11] [ 6] [269716] +14:35:52 [ 12] [ 6] [143458] +14:35:52 [ 13] [ 4] [0320] +14:35:52 [ 14] [ 4] [4302] +14:35:52 [ 15] [ 4] [0320] +14:35:52 [ 18] [ 4] [6011] +14:35:52 [ 19] [ 3] [418] +14:35:52 [ 22] [ 3] [021] +14:35:52 [ 25] [ 2] [01] +14:35:52 [ 32] [ 6] [180893] +14:35:52 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:35:52 [ 37] [ 12] [507907269716] +14:35:52 [ 41] [ 8] [0421BKPH] +14:35:52 [ 42] [ 15] [999999 ] +14:35:52 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:35:52 [ 49] [ 3] [418] +14:35:52 [ 52] [ 16] [473334DCBE911001] +14:35:52 ============================================================================ +14:35:52 + + +waiting on router queue for slot.... +14:35:52 Sending to : +14:35:52 ============================================================================ +14:35:52 Sending to : +14:35:52 ============================================================================ +14:35:52 ============================================================================ +14:35:52 Slot Id : <99> +14:35:52 Transaction Type : REQUEST +14:35:52 Received From : +14:35:52 ============================================================================ +14:35:52 FNo. Len. Field Value +14:35:52 ============================================================================ +14:35:52 [ 1] [ 4] [0200] +14:35:52 [ 2] [ 16] [6688990104022007] +14:35:52 [ 3] [ 6] [301000] +14:35:52 [ 7] [ 10] [0320073458] +14:35:52 [ 11] [ 6] [269716] +14:35:52 [ 12] [ 6] [143458] +14:35:52 [ 13] [ 4] [0320] +14:35:52 [ 14] [ 4] [4302] +14:35:52 [ 15] [ 4] [0320] +14:35:52 [ 18] [ 4] [6011] +14:35:52 [ 19] [ 3] [418] +14:35:52 [ 22] [ 3] [021] +14:35:52 [ 25] [ 2] [01] +14:35:52 [ 32] [ 6] [180893] +14:35:52 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:35:52 [ 37] [ 12] [507907269716] +14:35:52 [ 41] [ 8] [0421BKPH] +14:35:52 [ 42] [ 15] [999999 ] +14:35:52 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:35:52 [ 49] [ 3] [418] +14:35:52 [ 52] [ 16] [473334DCBE911001] +14:35:52 ============================================================================ +14:35:52 + + +waiting on router queue for slot.... +14:35:52 Sending to : +14:35:52 ============================================================================ +14:35:52 ============================================================================ +14:35:52 Slot Id : <99> +14:35:52 Transaction Type : REQUEST +14:35:52 Received From : +14:35:52 ============================================================================ +14:35:52 FNo. Len. Field Value +14:35:52 ============================================================================ +14:35:52 [ 1] [ 4] [0200] +14:35:52 [ 2] [ 16] [6688990104022007] +14:35:52 [ 3] [ 6] [301000] +14:35:52 [ 7] [ 10] [0320073458] +14:35:52 [ 11] [ 6] [269716] +14:35:52 [ 12] [ 6] [143458] +14:35:52 [ 13] [ 4] [0320] +14:35:52 [ 14] [ 4] [4302] +14:35:52 [ 15] [ 4] [0320] +14:35:52 [ 18] [ 4] [6011] +14:35:52 [ 19] [ 3] [418] +14:35:52 [ 22] [ 3] [021] +14:35:52 [ 25] [ 2] [01] +14:35:52 [ 32] [ 6] [180893] +14:35:52 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:35:52 [ 37] [ 12] [507907269716] +14:35:52 [ 41] [ 8] [0421BKPH] +14:35:52 [ 42] [ 15] [999999 ] +14:35:52 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +14:35:52 [ 49] [ 3] [418] +14:35:52 [ 52] [ 16] [3F768CEE6B61742D] +14:35:52 ============================================================================ +14:35:52 + + +waiting on router queue for slot.... +14:35:52 Sending to : <0> +14:35:52 ============================================================================ +14:35:52 ============================================================================ +14:35:52 Slot Id : <99> +14:35:52 Transaction Type : RESPONSE +14:35:52 Received From : +14:35:52 ============================================================================ +14:35:52 FNo. Len. Field Value +14:35:52 ============================================================================ +14:35:52 [ 1] [ 4] [0210] +14:35:52 [ 2] [ 16] [6688990104022007] +14:35:52 [ 3] [ 6] [301000] +14:35:52 [ 4] [ 12] [000000000000] +14:35:52 [ 7] [ 10] [0320073458] +14:35:52 [ 11] [ 6] [269716] +14:35:52 [ 12] [ 6] [143458] +14:35:52 [ 13] [ 4] [0320] +14:35:52 [ 15] [ 4] [0320] +14:35:52 [ 18] [ 4] [6011] +14:35:52 [ 19] [ 3] [418] +14:35:52 [ 22] [ 3] [021] +14:35:52 [ 32] [ 6] [180893] +14:35:52 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:35:52 [ 37] [ 12] [507907269716] +14:35:52 [ 39] [ 2] [14] +14:35:52 [ 41] [ 8] [0421BKPH] +14:35:52 [ 49] [ 3] [418] +14:35:52 ============================================================================ +14:35:52 Sending to : +14:35:52 ============================================================================ +14:35:52 + + +waiting on router queue for slot.... +14:35:52 ============================================================================ +14:35:52 Slot Id : <58> +14:35:52 Transaction Type : REQUEST +14:35:52 Received From : +14:35:52 ============================================================================ +14:35:52 FNo. Len. Field Value +14:35:52 ============================================================================ +14:35:52 [ 1] [ 4] [0800] +14:35:52 [ 2] [ 5] [02531] +14:35:52 [ 3] [ 6] [579148] +14:35:52 [ 7] [ 10] [0320073552] +14:35:52 [ 11] [ 6] [807259] +14:35:52 [ 15] [ 10] [0320073552] +14:35:52 [ 37] [ 11] [57914807259] +14:35:52 [ 70] [ 3] [001] +14:35:52 ============================================================================ +14:35:52 + + +waiting on router queue for slot.... +14:35:52 ============================================================================ +14:35:52 Slot Id : <58> +14:35:52 Transaction Type : RESPONSE +14:35:52 Received From : +14:35:52 ============================================================================ +14:35:52 FNo. Len. Field Value +14:35:52 ============================================================================ +14:35:52 [ 1] [ 4] [0810] +14:35:52 [ 7] [ 10] [0320073552] +14:35:52 [ 11] [ 6] [807259] +14:35:52 [ 15] [ 4] [0320] +14:35:52 [ 37] [ 12] [57914807259] +14:35:52 [ 39] [ 2] [00] +14:35:52 [ 70] [ 3] [001] +14:35:52 ============================================================================ +14:35:52 Sending to : +14:35:52 ============================================================================ +14:35:52 + + +waiting on router queue for slot.... +14:35:53 ============================================================================ +14:35:53 Slot Id : <56> +14:35:53 Transaction Type : RESPONSE +14:35:53 Received From : +14:35:53 ============================================================================ +14:35:53 FNo. Len. Field Value +14:35:53 ============================================================================ +14:35:53 [ 1] [ 4] [0210] +14:35:53 [ 2] [ 16] [1888880000011569] +14:35:53 [ 3] [ 6] [011000] +14:35:53 [ 4] [ 12] [000060000000] +14:35:53 [ 7] [ 10] [0320143538] +14:35:53 [ 11] [ 6] [772025] +14:35:53 [ 12] [ 6] [143538] +14:35:53 [ 13] [ 4] [0320] +14:35:53 [ 15] [ 4] [0320] +14:35:53 [ 18] [ 4] [6011] +14:35:53 [ 19] [ 3] [418] +14:35:53 [ 32] [ 6] [621354] +14:35:53 [ 37] [ 12] [507904412668] +14:35:53 [ 38] [ 6] [482156] +14:35:53 [ 39] [ 2] [00] +14:35:53 [ 41] [ 8] [03004000] +14:35:53 [ 49] [ 3] [418] +14:35:53 [ 54] [ 0] [] +14:35:53 ============================================================================ +14:35:53 Calculate Source COMM Id = 0 +14:35:53 ============================================================================ +14:35:53 + + +waiting on router queue for slot.... +14:35:54 ============================================================================ +14:35:54 Slot Id : <99> +14:35:54 Transaction Type : RESPONSE +14:35:54 Received From : +14:35:54 ============================================================================ +14:35:54 FNo. Len. Field Value +14:35:54 ============================================================================ +14:35:54 [ 1] [ 4] [0210] +14:35:54 [ 2] [ 16] [6688990104022007] +14:35:54 [ 3] [ 6] [301000] +14:35:54 [ 4] [ 12] [000000000000] +14:35:54 [ 7] [ 10] [0320073458] +14:35:54 [ 11] [ 6] [269716] +14:35:54 [ 12] [ 6] [143458] +14:35:54 [ 13] [ 4] [0320] +14:35:54 [ 15] [ 4] [0320] +14:35:54 [ 18] [ 4] [6011] +14:35:54 [ 19] [ 3] [418] +14:35:54 [ 22] [ 3] [021] +14:35:54 [ 32] [ 6] [180893] +14:35:54 [ 35] [ 37] [6688990104022007=43021231200745700000] +14:35:54 [ 37] [ 12] [507907269716] +14:35:54 [ 39] [ 2] [14] +14:35:54 [ 41] [ 8] [0421BKPH] +14:35:54 [ 49] [ 3] [418] +14:35:54 ============================================================================ +14:35:54 Calculate Source COMM Id = 2 +14:35:54 ============================================================================ +14:35:54 + + +waiting on router queue for slot.... +14:36:06 ============================================================================ +14:36:06 Slot Id : <82> +14:36:06 Transaction Type : REQUEST +14:36:06 Received From : +14:36:06 ============================================================================ +14:36:06 FNo. Len. Field Value +14:36:06 ============================================================================ +14:36:06 [ 1] [ 4] [0800] +14:36:06 [ 7] [ 10] [0320073513] +14:36:06 [ 11] [ 6] [156816] +14:36:06 [ 70] [ 3] [301] +14:36:06 ============================================================================ +14:36:06 + + +waiting on router queue for slot.... +14:36:06 Sending to : +14:36:06 ============================================================================ +14:36:06 ============================================================================ +14:36:06 Slot Id : <82> +14:36:06 Transaction Type : RESPONSE +14:36:06 Received From : +14:36:06 ============================================================================ +14:36:06 FNo. Len. Field Value +14:36:06 ============================================================================ +14:36:06 [ 1] [ 4] [0810] +14:36:06 [ 7] [ 10] [0320073513] +14:36:06 [ 11] [ 6] [156816] +14:36:06 [ 39] [ 2] [00] +14:36:06 [ 70] [ 3] [301] +14:36:06 ============================================================================ +14:36:06 Calculate Source COMM Id = 2 +14:36:06 ============================================================================ +14:36:06 + + +waiting on router queue for slot.... +14:36:09 ============================================================================ +14:36:09 Slot Id : <64> +14:36:09 Transaction Type : REQUEST +14:36:09 Received From : +14:36:09 ============================================================================ +14:36:09 FNo. Len. Field Value +14:36:09 ============================================================================ +14:36:09 [ 1] [ 4] [0200] +14:36:09 [ 2] [ 16] [6688990104333602] +14:36:09 [ 3] [ 6] [011000] +14:36:09 [ 4] [ 12] [000050000000] +14:36:09 [ 7] [ 10] [0320143604] +14:36:09 [ 11] [ 6] [772126] +14:36:09 [ 12] [ 6] [143604] +14:36:09 [ 13] [ 4] [0320] +14:36:09 [ 15] [ 4] [0320] +14:36:09 [ 18] [ 4] [6011] +14:36:09 [ 22] [ 3] [900] +14:36:09 [ 25] [ 2] [02] +14:36:09 [ 28] [ 9] [D00002000] +14:36:09 [ 32] [ 6] [621354] +14:36:09 [ 35] [ 37] [6688990104333602=43031231360273100000] +14:36:09 [ 37] [ 12] [507904635717] +14:36:09 [ 41] [ 8] [17000800] +14:36:09 [ 42] [ 15] [NATIVE ] +14:36:09 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:36:09 [ 49] [ 3] [418] +14:36:09 [ 52] [ 16] [389CA3166BFA265A] +14:36:09 ============================================================================ +14:36:09 + + +waiting on router queue for slot.... +14:36:09 Sending to : +14:36:09 ============================================================================ +14:36:09 Sending to : +14:36:09 ============================================================================ +14:36:09 ============================================================================ +14:36:09 Slot Id : <64> +14:36:09 Transaction Type : REQUEST +14:36:09 Received From : +14:36:09 ============================================================================ +14:36:09 FNo. Len. Field Value +14:36:09 ============================================================================ +14:36:09 [ 1] [ 4] [0200] +14:36:09 [ 2] [ 16] [6688990104333602] +14:36:09 [ 3] [ 6] [011000] +14:36:09 [ 4] [ 12] [000050000000] +14:36:09 [ 7] [ 10] [0320143604] +14:36:09 [ 11] [ 6] [772126] +14:36:09 [ 12] [ 6] [143604] +14:36:09 [ 13] [ 4] [0320] +14:36:09 [ 15] [ 4] [0320] +14:36:09 [ 18] [ 4] [6011] +14:36:09 [ 22] [ 3] [900] +14:36:09 [ 25] [ 2] [02] +14:36:09 [ 28] [ 9] [D00002000] +14:36:09 [ 32] [ 6] [621354] +14:36:09 [ 35] [ 37] [6688990104333602=43031231360273100000] +14:36:09 [ 37] [ 12] [507904635717] +14:36:09 [ 41] [ 8] [17000800] +14:36:09 [ 42] [ 15] [NATIVE ] +14:36:09 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:36:09 [ 49] [ 3] [418] +14:36:09 [ 52] [ 16] [389CA3166BFA265A] +14:36:09 ============================================================================ +14:36:09 + + +waiting on router queue for slot.... +14:36:09 Sending to : +14:36:09 ============================================================================ +14:36:09 ============================================================================ +14:36:09 Slot Id : <64> +14:36:09 Transaction Type : REQUEST +14:36:09 Received From : +14:36:09 ============================================================================ +14:36:09 FNo. Len. Field Value +14:36:09 ============================================================================ +14:36:09 [ 1] [ 4] [0200] +14:36:09 [ 2] [ 16] [6688990104333602] +14:36:09 [ 3] [ 6] [011000] +14:36:09 [ 4] [ 12] [000050000000] +14:36:09 [ 7] [ 10] [0320143604] +14:36:09 [ 11] [ 6] [772126] +14:36:09 [ 12] [ 6] [143604] +14:36:09 [ 13] [ 4] [0320] +14:36:09 [ 15] [ 4] [0320] +14:36:09 [ 18] [ 4] [6011] +14:36:09 [ 22] [ 3] [900] +14:36:09 [ 25] [ 2] [02] +14:36:09 [ 28] [ 9] [D00002000] +14:36:09 [ 32] [ 6] [621354] +14:36:09 [ 35] [ 37] [6688990104333602=43031231360273100000] +14:36:09 [ 37] [ 12] [507904635717] +14:36:09 [ 41] [ 8] [17000800] +14:36:09 [ 42] [ 15] [NATIVE ] +14:36:09 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:36:09 [ 49] [ 3] [418] +14:36:09 [ 52] [ 16] [014883C901067BF6] +14:36:09 ============================================================================ +14:36:09 + + +waiting on router queue for slot.... +14:36:09 Sending to : <4> +14:36:09 ============================================================================ +14:36:10 ============================================================================ +14:36:10 Slot Id : <64> +14:36:10 Transaction Type : RESPONSE +14:36:10 Received From : +14:36:10 ============================================================================ +14:36:10 FNo. Len. Field Value +14:36:10 ============================================================================ +14:36:10 [ 1] [ 4] [0210] +14:36:10 [ 2] [ 16] [6688990104333602] +14:36:10 [ 3] [ 6] [011000] +14:36:10 [ 4] [ 12] [000050000000] +14:36:10 [ 11] [ 6] [772126] +14:36:10 [ 12] [ 6] [143604] +14:36:10 [ 15] [ 4] [0320] +14:36:10 [ 18] [ 4] [6011] +14:36:10 [ 32] [ 6] [621354] +14:36:10 [ 35] [ 37] [6688990104333602=43031231360273100000] +14:36:10 [ 37] [ 12] [507904635717] +14:36:10 [ 38] [ 6] [665288] +14:36:10 [ 39] [ 2] [00] +14:36:10 [ 41] [ 8] [17000800] +14:36:10 [ 49] [ 3] [418] +14:36:10 [ 54] [ 20] [1002418C000481163778] +14:36:10 ============================================================================ +14:36:10 Sending to : +14:36:10 ============================================================================ +14:36:10 + + +waiting on router queue for slot.... +14:36:12 ============================================================================ +14:36:12 Slot Id : <64> +14:36:12 Transaction Type : RESPONSE +14:36:12 Received From : +14:36:12 ============================================================================ +14:36:12 FNo. Len. Field Value +14:36:12 ============================================================================ +14:36:12 [ 1] [ 4] [0210] +14:36:12 [ 2] [ 16] [6688990104333602] +14:36:12 [ 3] [ 6] [011000] +14:36:12 [ 4] [ 12] [000050000000] +14:36:12 [ 11] [ 6] [772126] +14:36:12 [ 12] [ 6] [143604] +14:36:12 [ 15] [ 4] [0320] +14:36:12 [ 18] [ 4] [6011] +14:36:12 [ 32] [ 6] [621354] +14:36:12 [ 35] [ 37] [6688990104333602=43031231360273100000] +14:36:12 [ 37] [ 12] [507904635717] +14:36:12 [ 38] [ 6] [665288] +14:36:12 [ 39] [ 2] [00] +14:36:12 [ 41] [ 8] [17000800] +14:36:12 [ 49] [ 3] [418] +14:36:12 [ 54] [ 20] [1002418C000481163778] +14:36:12 ============================================================================ +14:36:12 Calculate Source COMM Id = 0 +14:36:12 ============================================================================ +14:36:12 + + +waiting on router queue for slot.... +14:36:14 ============================================================================ +14:36:14 Slot Id : <93> +14:36:14 Transaction Type : REQUEST +14:36:14 Received From : +14:36:14 ============================================================================ +14:36:14 FNo. Len. Field Value +14:36:14 ============================================================================ +14:36:14 [ 1] [ 4] [0800] +14:36:14 [ 7] [ 10] [0320214803] +14:36:14 [ 11] [ 6] [144803] +14:36:14 [ 37] [ 12] [57914144803] +14:36:14 [ 70] [ 3] [301] +14:36:14 ============================================================================ +14:36:14 + + +waiting on router queue for slot.... +14:36:14 Sending to : +14:36:14 ============================================================================ +14:36:14 ============================================================================ +14:36:14 Slot Id : <93> +14:36:14 Transaction Type : RESPONSE +14:36:14 Received From : +14:36:14 ============================================================================ +14:36:14 FNo. Len. Field Value +14:36:14 ============================================================================ +14:36:14 [ 1] [ 4] [0810] +14:36:14 [ 7] [ 10] [0320214803] +14:36:14 [ 11] [ 6] [144803] +14:36:14 [ 37] [ 12] [579141448030] +14:36:14 [ 39] [ 2] [00] +14:36:14 [ 70] [ 3] [810] +14:36:14 ============================================================================ +14:36:14 Calculate Source COMM Id = 6 +14:36:14 ============================================================================ +14:36:14 + + +waiting on router queue for slot.... +14:36:15 ============================================================================ +14:36:15 Slot Id : <100> +14:36:15 Transaction Type : REQUEST +14:36:15 Received From : +14:36:15 ============================================================================ +14:36:15 FNo. Len. Field Value +14:36:15 ============================================================================ +14:36:15 [ 1] [ 4] [0200] +14:36:15 [ 2] [ 16] [6688990100044203] +14:36:15 [ 3] [ 6] [012000] +14:36:15 [ 4] [ 12] [000050000000] +14:36:15 [ 7] [ 10] [0320143611] +14:36:15 [ 11] [ 6] [772157] +14:36:15 [ 12] [ 6] [143611] +14:36:15 [ 13] [ 4] [0320] +14:36:15 [ 15] [ 4] [0320] +14:36:15 [ 18] [ 4] [6011] +14:36:15 [ 22] [ 3] [900] +14:36:15 [ 25] [ 2] [02] +14:36:15 [ 28] [ 9] [D00002000] +14:36:15 [ 32] [ 6] [621354] +14:36:15 [ 35] [ 37] [6688990100044203=40111231420393900000] +14:36:15 [ 37] [ 12] [507902553409] +14:36:15 [ 41] [ 8] [05003800] +14:36:15 [ 42] [ 15] [NATIVE ] +14:36:15 [ 43] [ 40] [BAN NONGKHIET Muangngoi LAO] +14:36:15 [ 49] [ 3] [418] +14:36:15 [ 52] [ 16] [7E38145DED86BF3A] +14:36:15 ============================================================================ +14:36:15 + + +waiting on router queue for slot.... +14:36:15 Sending to : +14:36:15 ============================================================================ +14:36:15 Sending to : +14:36:15 ============================================================================ +14:36:16 ============================================================================ +14:36:16 Slot Id : <100> +14:36:16 Transaction Type : REQUEST +14:36:16 Received From : +14:36:16 ============================================================================ +14:36:16 FNo. Len. Field Value +14:36:16 ============================================================================ +14:36:16 [ 1] [ 4] [0200] +14:36:16 [ 2] [ 16] [6688990100044203] +14:36:16 [ 3] [ 6] [012000] +14:36:16 [ 4] [ 12] [000050000000] +14:36:16 [ 7] [ 10] [0320143611] +14:36:16 [ 11] [ 6] [772157] +14:36:16 [ 12] [ 6] [143611] +14:36:16 [ 13] [ 4] [0320] +14:36:16 [ 15] [ 4] [0320] +14:36:16 [ 18] [ 4] [6011] +14:36:16 [ 22] [ 3] [900] +14:36:16 [ 25] [ 2] [02] +14:36:16 [ 28] [ 9] [D00002000] +14:36:16 [ 32] [ 6] [621354] +14:36:16 [ 35] [ 37] [6688990100044203=40111231420393900000] +14:36:16 [ 37] [ 12] [507902553409] +14:36:16 [ 41] [ 8] [05003800] +14:36:16 [ 42] [ 15] [NATIVE ] +14:36:16 [ 43] [ 40] [BAN NONGKHIET Muangngoi LAO] +14:36:16 [ 49] [ 3] [418] +14:36:16 [ 52] [ 16] [7E38145DED86BF3A] +14:36:16 ============================================================================ +14:36:16 + + +waiting on router queue for slot.... +14:36:16 Sending to : +14:36:16 ============================================================================ +14:36:16 ============================================================================ +14:36:16 Slot Id : <100> +14:36:16 Transaction Type : REQUEST +14:36:16 Received From : +14:36:16 ============================================================================ +14:36:16 FNo. Len. Field Value +14:36:16 ============================================================================ +14:36:16 [ 1] [ 4] [0200] +14:36:16 [ 2] [ 16] [6688990100044203] +14:36:16 [ 3] [ 6] [012000] +14:36:16 [ 4] [ 12] [000050000000] +14:36:16 [ 7] [ 10] [0320143611] +14:36:16 [ 11] [ 6] [772157] +14:36:16 [ 12] [ 6] [143611] +14:36:16 [ 13] [ 4] [0320] +14:36:16 [ 15] [ 4] [0320] +14:36:16 [ 18] [ 4] [6011] +14:36:16 [ 22] [ 3] [900] +14:36:16 [ 25] [ 2] [02] +14:36:16 [ 28] [ 9] [D00002000] +14:36:16 [ 32] [ 6] [621354] +14:36:16 [ 35] [ 37] [6688990100044203=40111231420393900000] +14:36:16 [ 37] [ 12] [507902553409] +14:36:16 [ 41] [ 8] [05003800] +14:36:16 [ 42] [ 15] [NATIVE ] +14:36:16 [ 43] [ 40] [BAN NONGKHIET Muangngoi LAO] +14:36:16 [ 49] [ 3] [418] +14:36:16 [ 52] [ 16] [364E74FB94E37DEE] +14:36:16 ============================================================================ +14:36:16 + + +waiting on router queue for slot.... +14:36:16 Sending to : <4> +14:36:16 ============================================================================ +14:36:17 ============================================================================ +14:36:17 Slot Id : <100> +14:36:17 Transaction Type : RESPONSE +14:36:17 Received From : +14:36:17 ============================================================================ +14:36:17 FNo. Len. Field Value +14:36:17 ============================================================================ +14:36:17 [ 1] [ 4] [0210] +14:36:17 [ 2] [ 16] [6688990100044203] +14:36:17 [ 3] [ 6] [012000] +14:36:17 [ 4] [ 12] [000050000000] +14:36:17 [ 11] [ 6] [772157] +14:36:17 [ 12] [ 6] [143611] +14:36:17 [ 15] [ 4] [0320] +14:36:17 [ 18] [ 4] [6011] +14:36:17 [ 32] [ 6] [621354] +14:36:17 [ 35] [ 37] [6688990100044203=40111231420393900000] +14:36:17 [ 37] [ 12] [507902553409] +14:36:17 [ 38] [ 6] [370026] +14:36:17 [ 39] [ 2] [00] +14:36:17 [ 41] [ 8] [05003800] +14:36:17 [ 49] [ 3] [418] +14:36:17 [ 54] [ 20] [2002418C000067848922] +14:36:17 ============================================================================ +14:36:17 Sending to : +14:36:17 ============================================================================ +14:36:17 + + +waiting on router queue for slot.... +14:36:17 ============================================================================ +14:36:17 Slot Id : <91> +14:36:17 Transaction Type : REQUEST +14:36:17 Received From : +14:36:17 ============================================================================ +14:36:17 FNo. Len. Field Value +14:36:17 ============================================================================ +14:36:17 [ 1] [ 4] [0800] +14:36:17 [ 7] [ 10] [0320073524] +14:36:17 [ 11] [ 6] [156817] +14:36:17 [ 70] [ 3] [301] +14:36:17 ============================================================================ +14:36:17 + + +waiting on router queue for slot.... +14:36:17 Sending to : +14:36:17 ============================================================================ +14:36:17 ============================================================================ +14:36:17 Slot Id : <91> +14:36:17 Transaction Type : RESPONSE +14:36:17 Received From : +14:36:17 ============================================================================ +14:36:17 FNo. Len. Field Value +14:36:17 ============================================================================ +14:36:17 [ 1] [ 4] [0810] +14:36:17 [ 7] [ 10] [0320073524] +14:36:17 [ 11] [ 6] [156817] +14:36:17 [ 39] [ 2] [00] +14:36:17 [ 70] [ 3] [301] +14:36:17 ============================================================================ +14:36:17 Calculate Source COMM Id = 2 +14:36:17 ============================================================================ +14:36:17 + + +waiting on router queue for slot.... +14:36:18 ============================================================================ +14:36:18 Slot Id : <100> +14:36:18 Transaction Type : RESPONSE +14:36:18 Received From : +14:36:18 ============================================================================ +14:36:18 FNo. Len. Field Value +14:36:18 ============================================================================ +14:36:18 [ 1] [ 4] [0210] +14:36:18 [ 2] [ 16] [6688990100044203] +14:36:18 [ 3] [ 6] [012000] +14:36:18 [ 4] [ 12] [000050000000] +14:36:18 [ 11] [ 6] [772157] +14:36:18 [ 12] [ 6] [143611] +14:36:18 [ 15] [ 4] [0320] +14:36:18 [ 18] [ 4] [6011] +14:36:18 [ 32] [ 6] [621354] +14:36:18 [ 35] [ 37] [6688990100044203=40111231420393900000] +14:36:18 [ 37] [ 12] [507902553409] +14:36:18 [ 38] [ 6] [370026] +14:36:18 [ 39] [ 2] [00] +14:36:18 [ 41] [ 8] [05003800] +14:36:18 [ 49] [ 3] [418] +14:36:18 [ 54] [ 20] [2002418C000067848922] +14:36:18 ============================================================================ +14:36:18 Calculate Source COMM Id = 0 +14:36:18 ============================================================================ +14:36:18 + + +waiting on router queue for slot.... +14:36:21 ============================================================================ +14:36:21 Slot Id : <65> +14:36:21 Transaction Type : REQUEST +14:36:21 Received From : +14:36:21 ============================================================================ +14:36:21 FNo. Len. Field Value +14:36:21 ============================================================================ +14:36:21 [ 1] [ 4] [0800] +14:36:21 [ 7] [ 10] [0320073412] +14:36:21 [ 11] [ 6] [027675] +14:36:21 [ 37] [ 12] [57914027675] +14:36:21 [ 70] [ 3] [301] +14:36:21 ============================================================================ +14:36:21 + + +waiting on router queue for slot.... +14:36:21 Sending to : +14:36:21 ============================================================================ +14:36:21 ============================================================================ +14:36:21 Slot Id : <65> +14:36:21 Transaction Type : RESPONSE +14:36:21 Received From : +14:36:21 ============================================================================ +14:36:21 FNo. Len. Field Value +14:36:21 ============================================================================ +14:36:21 [ 1] [ 4] [0810] +14:36:21 [ 7] [ 10] [0320073412] +14:36:21 [ 11] [ 6] [027675] +14:36:21 [ 37] [ 12] [579140276750] +14:36:21 [ 39] [ 2] [00] +14:36:21 [ 70] [ 3] [810] +14:36:21 ============================================================================ +14:36:21 Calculate Source COMM Id = 4 +14:36:21 ============================================================================ +14:36:21 + + +waiting on router queue for slot.... +14:36:23 ============================================================================ +14:36:23 Slot Id : <72> +14:36:23 Transaction Type : REQUEST +14:36:23 Received From : +14:36:23 ============================================================================ +14:36:23 FNo. Len. Field Value +14:36:23 ============================================================================ +14:36:23 [ 1] [ 4] [0200] +14:36:23 [ 2] [ 16] [6688990108347509] +14:36:23 [ 3] [ 6] [010000] +14:36:23 [ 4] [ 12] [000010000000] +14:36:23 [ 7] [ 10] [0320073530] +14:36:23 [ 11] [ 6] [269719] +14:36:23 [ 12] [ 6] [143530] +14:36:23 [ 13] [ 4] [0320] +14:36:23 [ 14] [ 4] [4406] +14:36:23 [ 15] [ 4] [0320] +14:36:23 [ 18] [ 4] [6011] +14:36:23 [ 19] [ 3] [418] +14:36:23 [ 22] [ 3] [021] +14:36:23 [ 25] [ 2] [01] +14:36:23 [ 28] [ 9] [D00002000] +14:36:23 [ 32] [ 6] [180893] +14:36:23 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:36:23 [ 37] [ 12] [507907269719] +14:36:23 [ 41] [ 8] [0321LNTV] +14:36:23 [ 42] [ 15] [999999 ] +14:36:23 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:36:23 [ 49] [ 3] [418] +14:36:23 [ 52] [ 16] [A22216D88F7969BC] +14:36:23 ============================================================================ +14:36:23 + + +waiting on router queue for slot.... +14:36:23 Sending to : +14:36:23 ============================================================================ +14:36:23 Sending to : +14:36:23 ============================================================================ +14:36:24 ============================================================================ +14:36:24 Slot Id : <72> +14:36:24 Transaction Type : REQUEST +14:36:24 Received From : +14:36:24 ============================================================================ +14:36:24 FNo. Len. Field Value +14:36:24 ============================================================================ +14:36:24 [ 1] [ 4] [0200] +14:36:24 [ 2] [ 16] [6688990108347509] +14:36:24 [ 3] [ 6] [010000] +14:36:24 [ 4] [ 12] [000010000000] +14:36:24 [ 7] [ 10] [0320073530] +14:36:24 [ 11] [ 6] [269719] +14:36:24 [ 12] [ 6] [143530] +14:36:24 [ 13] [ 4] [0320] +14:36:24 [ 14] [ 4] [4406] +14:36:24 [ 15] [ 4] [0320] +14:36:24 [ 18] [ 4] [6011] +14:36:24 [ 19] [ 3] [418] +14:36:24 [ 22] [ 3] [021] +14:36:24 [ 25] [ 2] [01] +14:36:24 [ 28] [ 9] [D00002000] +14:36:24 [ 32] [ 6] [180893] +14:36:24 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:36:24 [ 37] [ 12] [507907269719] +14:36:24 [ 41] [ 8] [0321LNTV] +14:36:24 [ 42] [ 15] [999999 ] +14:36:24 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:36:24 [ 49] [ 3] [418] +14:36:24 [ 52] [ 16] [A22216D88F7969BC] +14:36:24 ============================================================================ +14:36:24 + + +waiting on router queue for slot.... +14:36:24 Sending to : +14:36:24 ============================================================================ +14:36:24 ============================================================================ +14:36:24 Slot Id : <72> +14:36:24 Transaction Type : REQUEST +14:36:24 Received From : +14:36:24 ============================================================================ +14:36:24 FNo. Len. Field Value +14:36:24 ============================================================================ +14:36:24 [ 1] [ 4] [0200] +14:36:24 [ 2] [ 16] [6688990108347509] +14:36:24 [ 3] [ 6] [010000] +14:36:24 [ 4] [ 12] [000010000000] +14:36:24 [ 7] [ 10] [0320073530] +14:36:24 [ 11] [ 6] [269719] +14:36:24 [ 12] [ 6] [143530] +14:36:24 [ 13] [ 4] [0320] +14:36:24 [ 14] [ 4] [4406] +14:36:24 [ 15] [ 4] [0320] +14:36:24 [ 18] [ 4] [6011] +14:36:24 [ 19] [ 3] [418] +14:36:24 [ 22] [ 3] [021] +14:36:24 [ 25] [ 2] [01] +14:36:24 [ 28] [ 9] [D00002000] +14:36:24 [ 32] [ 6] [180893] +14:36:24 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:36:24 [ 37] [ 12] [507907269719] +14:36:24 [ 41] [ 8] [0321LNTV] +14:36:24 [ 42] [ 15] [999999 ] +14:36:24 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:36:24 [ 49] [ 3] [418] +14:36:24 [ 52] [ 16] [A28BB920A21B80D5] +14:36:24 ============================================================================ +14:36:24 + + +waiting on router queue for slot.... +14:36:24 Sending to : <0> +14:36:24 ============================================================================ +14:36:24 ============================================================================ +14:36:24 Slot Id : <72> +14:36:24 Transaction Type : RESPONSE +14:36:24 Received From : +14:36:24 ============================================================================ +14:36:24 FNo. Len. Field Value +14:36:24 ============================================================================ +14:36:24 [ 1] [ 4] [0210] +14:36:24 [ 2] [ 16] [6688990108347509] +14:36:24 [ 3] [ 6] [010000] +14:36:24 [ 4] [ 12] [000010000000] +14:36:24 [ 7] [ 10] [0320073530] +14:36:24 [ 11] [ 6] [269719] +14:36:24 [ 12] [ 6] [143530] +14:36:24 [ 13] [ 4] [0320] +14:36:24 [ 15] [ 4] [0320] +14:36:24 [ 18] [ 4] [6011] +14:36:24 [ 19] [ 3] [418] +14:36:24 [ 22] [ 3] [021] +14:36:24 [ 32] [ 6] [180893] +14:36:24 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:36:24 [ 37] [ 12] [507907269719] +14:36:24 [ 39] [ 2] [14] +14:36:24 [ 41] [ 8] [0321LNTV] +14:36:24 [ 49] [ 3] [418] +14:36:24 ============================================================================ +14:36:24 Sending to : +14:36:24 ============================================================================ +14:36:24 + + +waiting on router queue for slot.... +14:36:25 ============================================================================ +14:36:25 Slot Id : <72> +14:36:25 Transaction Type : RESPONSE +14:36:25 Received From : +14:36:25 ============================================================================ +14:36:25 FNo. Len. Field Value +14:36:25 ============================================================================ +14:36:25 [ 1] [ 4] [0210] +14:36:25 [ 2] [ 16] [6688990108347509] +14:36:25 [ 3] [ 6] [010000] +14:36:25 [ 4] [ 12] [000010000000] +14:36:25 [ 7] [ 10] [0320073530] +14:36:25 [ 11] [ 6] [269719] +14:36:25 [ 12] [ 6] [143530] +14:36:25 [ 13] [ 4] [0320] +14:36:25 [ 15] [ 4] [0320] +14:36:25 [ 18] [ 4] [6011] +14:36:25 [ 19] [ 3] [418] +14:36:25 [ 22] [ 3] [021] +14:36:25 [ 32] [ 6] [180893] +14:36:25 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:36:25 [ 37] [ 12] [507907269719] +14:36:25 [ 39] [ 2] [14] +14:36:25 [ 41] [ 8] [0321LNTV] +14:36:25 [ 49] [ 3] [418] +14:36:25 ============================================================================ +14:36:25 Calculate Source COMM Id = 2 +14:36:25 ============================================================================ +14:36:25 + + +waiting on router queue for slot.... +14:36:37 ============================================================================ +14:36:37 Slot Id : <106> +14:36:37 Transaction Type : REQUEST +14:36:37 Received From : +14:36:37 ============================================================================ +14:36:37 FNo. Len. Field Value +14:36:37 ============================================================================ +14:36:37 [ 1] [ 4] [0200] +14:36:37 [ 2] [ 16] [6688990108428804] +14:36:37 [ 3] [ 6] [010000] +14:36:37 [ 4] [ 12] [000100000000] +14:36:37 [ 7] [ 10] [0320143633] +14:36:37 [ 11] [ 6] [772259] +14:36:37 [ 12] [ 6] [143633] +14:36:37 [ 13] [ 4] [0320] +14:36:37 [ 15] [ 4] [0320] +14:36:37 [ 18] [ 4] [6011] +14:36:37 [ 22] [ 3] [900] +14:36:37 [ 25] [ 2] [02] +14:36:37 [ 28] [ 9] [D00002000] +14:36:37 [ 32] [ 6] [621354] +14:36:37 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:36:37 [ 37] [ 12] [507903499495] +14:36:37 [ 41] [ 8] [06002200] +14:36:37 [ 42] [ 15] [NATIVE ] +14:36:37 [ 43] [ 40] [Beng Market Beng LAO] +14:36:37 [ 49] [ 3] [418] +14:36:37 [ 52] [ 16] [822E858D341464BE] +14:36:37 ============================================================================ +14:36:37 + + +waiting on router queue for slot.... +14:36:37 Sending to : +14:36:37 ============================================================================ +14:36:37 Sending to : +14:36:37 ============================================================================ +14:36:37 ============================================================================ +14:36:37 Slot Id : <106> +14:36:37 Transaction Type : REQUEST +14:36:37 Received From : +14:36:37 ============================================================================ +14:36:37 FNo. Len. Field Value +14:36:37 ============================================================================ +14:36:37 [ 1] [ 4] [0200] +14:36:37 [ 2] [ 16] [6688990108428804] +14:36:37 [ 3] [ 6] [010000] +14:36:37 [ 4] [ 12] [000100000000] +14:36:37 [ 7] [ 10] [0320143633] +14:36:37 [ 11] [ 6] [772259] +14:36:37 [ 12] [ 6] [143633] +14:36:37 [ 13] [ 4] [0320] +14:36:37 [ 15] [ 4] [0320] +14:36:37 [ 18] [ 4] [6011] +14:36:37 [ 22] [ 3] [900] +14:36:37 [ 25] [ 2] [02] +14:36:37 [ 28] [ 9] [D00002000] +14:36:37 [ 32] [ 6] [621354] +14:36:37 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:36:37 [ 37] [ 12] [507903499495] +14:36:37 [ 41] [ 8] [06002200] +14:36:37 [ 42] [ 15] [NATIVE ] +14:36:37 [ 43] [ 40] [Beng Market Beng LAO] +14:36:37 [ 49] [ 3] [418] +14:36:37 [ 52] [ 16] [822E858D341464BE] +14:36:37 ============================================================================ +14:36:37 + + +waiting on router queue for slot.... +14:36:37 Sending to : +14:36:37 ============================================================================ +14:36:37 ============================================================================ +14:36:37 Slot Id : <106> +14:36:37 Transaction Type : REQUEST +14:36:37 Received From : +14:36:37 ============================================================================ +14:36:37 FNo. Len. Field Value +14:36:37 ============================================================================ +14:36:37 [ 1] [ 4] [0200] +14:36:37 [ 2] [ 16] [6688990108428804] +14:36:37 [ 3] [ 6] [010000] +14:36:37 [ 4] [ 12] [000100000000] +14:36:37 [ 7] [ 10] [0320143633] +14:36:37 [ 11] [ 6] [772259] +14:36:37 [ 12] [ 6] [143633] +14:36:37 [ 13] [ 4] [0320] +14:36:37 [ 15] [ 4] [0320] +14:36:37 [ 18] [ 4] [6011] +14:36:37 [ 22] [ 3] [900] +14:36:37 [ 25] [ 2] [02] +14:36:37 [ 28] [ 9] [D00002000] +14:36:37 [ 32] [ 6] [621354] +14:36:37 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:36:37 [ 37] [ 12] [507903499495] +14:36:37 [ 41] [ 8] [06002200] +14:36:37 [ 42] [ 15] [NATIVE ] +14:36:37 [ 43] [ 40] [Beng Market Beng LAO] +14:36:37 [ 49] [ 3] [418] +14:36:37 [ 52] [ 16] [BDE320D8418423E6] +14:36:37 ============================================================================ +14:36:37 + + +waiting on router queue for slot.... +14:36:37 Sending to : <4> +14:36:37 ============================================================================ +14:36:38 ============================================================================ +14:36:38 Slot Id : <76> +14:36:38 Transaction Type : REQUEST +14:36:38 Received From : +14:36:38 ============================================================================ +14:36:38 FNo. Len. Field Value +14:36:38 ============================================================================ +14:36:38 [ 1] [ 4] [0800] +14:36:38 [ 7] [ 10] [0320073545] +14:36:38 [ 11] [ 6] [156818] +14:36:38 [ 70] [ 3] [301] +14:36:38 ============================================================================ +14:36:38 + + +waiting on router queue for slot.... +14:36:38 Sending to : +14:36:38 ============================================================================ +14:36:38 ============================================================================ +14:36:38 Slot Id : <76> +14:36:38 Transaction Type : RESPONSE +14:36:38 Received From : +14:36:38 ============================================================================ +14:36:38 FNo. Len. Field Value +14:36:38 ============================================================================ +14:36:38 [ 1] [ 4] [0810] +14:36:38 [ 7] [ 10] [0320073545] +14:36:38 [ 11] [ 6] [156818] +14:36:38 [ 39] [ 2] [00] +14:36:38 [ 70] [ 3] [301] +14:36:38 ============================================================================ +14:36:38 Calculate Source COMM Id = 2 +14:36:38 ============================================================================ +14:36:38 + + +waiting on router queue for slot.... +14:36:39 ============================================================================ +14:36:39 Slot Id : <106> +14:36:39 Transaction Type : RESPONSE +14:36:39 Received From : +14:36:39 ============================================================================ +14:36:39 FNo. Len. Field Value +14:36:39 ============================================================================ +14:36:39 [ 1] [ 4] [0210] +14:36:39 [ 2] [ 16] [6688990108428804] +14:36:39 [ 3] [ 6] [010000] +14:36:39 [ 4] [ 12] [000100000000] +14:36:39 [ 11] [ 6] [772259] +14:36:39 [ 12] [ 6] [143633] +14:36:39 [ 15] [ 4] [0320] +14:36:39 [ 18] [ 4] [6011] +14:36:39 [ 32] [ 6] [621354] +14:36:39 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:36:39 [ 37] [ 12] [507903499495] +14:36:39 [ 38] [ 6] [254436] +14:36:39 [ 39] [ 2] [00] +14:36:39 [ 41] [ 8] [06002200] +14:36:39 [ 49] [ 3] [418] +14:36:39 [ 54] [ 20] [0002418C000243065107] +14:36:39 ============================================================================ +14:36:39 Sending to : +14:36:39 ============================================================================ +14:36:39 + + +waiting on router queue for slot.... +14:36:40 ============================================================================ +14:36:40 Slot Id : <106> +14:36:40 Transaction Type : RESPONSE +14:36:40 Received From : +14:36:40 ============================================================================ +14:36:40 FNo. Len. Field Value +14:36:40 ============================================================================ +14:36:40 [ 1] [ 4] [0210] +14:36:40 [ 2] [ 16] [6688990108428804] +14:36:40 [ 3] [ 6] [010000] +14:36:40 [ 4] [ 12] [000100000000] +14:36:40 [ 11] [ 6] [772259] +14:36:40 [ 12] [ 6] [143633] +14:36:40 [ 15] [ 4] [0320] +14:36:40 [ 18] [ 4] [6011] +14:36:40 [ 32] [ 6] [621354] +14:36:40 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:36:40 [ 37] [ 12] [507903499495] +14:36:40 [ 38] [ 6] [254436] +14:36:40 [ 39] [ 2] [00] +14:36:40 [ 41] [ 8] [06002200] +14:36:40 [ 49] [ 3] [418] +14:36:40 [ 54] [ 20] [0002418C000243065107] +14:36:40 ============================================================================ +14:36:40 Calculate Source COMM Id = 0 +14:36:40 ============================================================================ +14:36:40 + + +waiting on router queue for slot.... +14:36:44 ============================================================================ +14:36:44 Slot Id : <114> +14:36:44 Transaction Type : REQUEST +14:36:44 Received From : +14:36:44 ============================================================================ +14:36:44 FNo. Len. Field Value +14:36:44 ============================================================================ +14:36:44 [ 1] [ 4] [0200] +14:36:44 [ 2] [ 16] [1888880000011569] +14:36:44 [ 3] [ 6] [011000] +14:36:44 [ 4] [ 12] [000060000000] +14:36:44 [ 7] [ 10] [0320143639] +14:36:44 [ 11] [ 6] [772289] +14:36:44 [ 12] [ 6] [143639] +14:36:44 [ 13] [ 4] [0320] +14:36:44 [ 15] [ 4] [0320] +14:36:44 [ 18] [ 4] [6011] +14:36:44 [ 22] [ 3] [900] +14:36:44 [ 25] [ 2] [02] +14:36:44 [ 28] [ 9] [D00002000] +14:36:44 [ 32] [ 6] [621354] +14:36:44 [ 35] [ 32] [1888880000011569=000010100000862] +14:36:44 [ 37] [ 12] [507904412670] +14:36:44 [ 41] [ 8] [03004000] +14:36:44 [ 42] [ 15] [NATIVE ] +14:36:44 [ 43] [ 40] [Kaisone Unit KaisonephomvLAO] +14:36:44 [ 49] [ 3] [418] +14:36:44 [ 52] [ 16] [BF2D02A9BF50F04A] +14:36:44 ============================================================================ +14:36:44 + + +waiting on router queue for slot.... +14:36:44 Sending to : +14:36:44 ============================================================================ +14:36:44 Sending to : +14:36:44 ============================================================================ +14:36:44 ============================================================================ +14:36:44 Slot Id : <114> +14:36:44 Transaction Type : REQUEST +14:36:44 Received From : +14:36:44 ============================================================================ +14:36:44 FNo. Len. Field Value +14:36:44 ============================================================================ +14:36:44 [ 1] [ 4] [0200] +14:36:44 [ 2] [ 16] [1888880000011569] +14:36:44 [ 3] [ 6] [011000] +14:36:44 [ 4] [ 12] [000060000000] +14:36:44 [ 7] [ 10] [0320143639] +14:36:44 [ 11] [ 6] [772289] +14:36:44 [ 12] [ 6] [143639] +14:36:44 [ 13] [ 4] [0320] +14:36:44 [ 15] [ 4] [0320] +14:36:44 [ 18] [ 4] [6011] +14:36:44 [ 22] [ 3] [900] +14:36:44 [ 25] [ 2] [02] +14:36:44 [ 28] [ 9] [D00002000] +14:36:44 [ 32] [ 6] [621354] +14:36:44 [ 35] [ 32] [1888880000011569=000010100000862] +14:36:44 [ 37] [ 12] [507904412670] +14:36:44 [ 41] [ 8] [03004000] +14:36:44 [ 42] [ 15] [NATIVE ] +14:36:44 [ 43] [ 40] [Kaisone Unit KaisonephomvLAO] +14:36:44 [ 49] [ 3] [418] +14:36:44 [ 52] [ 16] [BF2D02A9BF50F04A] +14:36:44 ============================================================================ +14:36:44 + + +waiting on router queue for slot.... +14:36:44 Sending to : +14:36:44 ============================================================================ +14:36:44 ============================================================================ +14:36:44 Slot Id : <114> +14:36:44 Transaction Type : REQUEST +14:36:44 Received From : +14:36:44 ============================================================================ +14:36:44 FNo. Len. Field Value +14:36:44 ============================================================================ +14:36:44 [ 1] [ 4] [0200] +14:36:44 [ 2] [ 16] [1888880000011569] +14:36:44 [ 3] [ 6] [011000] +14:36:44 [ 4] [ 12] [000060000000] +14:36:44 [ 7] [ 10] [0320143639] +14:36:44 [ 11] [ 6] [772289] +14:36:44 [ 12] [ 6] [143639] +14:36:44 [ 13] [ 4] [0320] +14:36:44 [ 15] [ 4] [0320] +14:36:44 [ 18] [ 4] [6011] +14:36:44 [ 22] [ 3] [900] +14:36:44 [ 25] [ 2] [02] +14:36:44 [ 28] [ 9] [D00002000] +14:36:44 [ 32] [ 6] [621354] +14:36:44 [ 35] [ 32] [1888880000011569=000010100000862] +14:36:44 [ 37] [ 12] [507904412670] +14:36:44 [ 41] [ 8] [03004000] +14:36:44 [ 42] [ 15] [NATIVE ] +14:36:44 [ 43] [ 40] [Kaisone Unit KaisonephomvLAO] +14:36:44 [ 49] [ 3] [418] +14:36:44 [ 52] [ 16] [1DE3AD2BB2A9C74E] +14:36:44 ============================================================================ +14:36:44 + + +waiting on router queue for slot.... +14:36:44 Sending to : <5> +14:36:44 ============================================================================ +14:36:48 ============================================================================ +14:36:48 Slot Id : <114> +14:36:48 Transaction Type : RESPONSE +14:36:48 Received From : +14:36:48 ============================================================================ +14:36:48 FNo. Len. Field Value +14:36:48 ============================================================================ +14:36:48 [ 1] [ 4] [0210] +14:36:48 [ 2] [ 16] [1888880000011569] +14:36:48 [ 3] [ 6] [011000] +14:36:48 [ 4] [ 12] [000060000000] +14:36:48 [ 7] [ 10] [0320143639] +14:36:48 [ 11] [ 6] [772289] +14:36:48 [ 12] [ 6] [143639] +14:36:48 [ 13] [ 4] [0320] +14:36:48 [ 15] [ 4] [0320] +14:36:48 [ 18] [ 4] [6011] +14:36:48 [ 19] [ 3] [418] +14:36:48 [ 32] [ 6] [621354] +14:36:48 [ 37] [ 12] [507904412670] +14:36:48 [ 38] [ 6] [903595] +14:36:48 [ 39] [ 2] [00] +14:36:48 [ 41] [ 8] [03004000] +14:36:48 [ 49] [ 3] [418] +14:36:48 [ 54] [ 0] [] +14:36:48 ============================================================================ +14:36:48 Sending to : +14:36:48 ============================================================================ +14:36:48 + + +waiting on router queue for slot.... +14:36:49 ============================================================================ +14:36:49 Slot Id : <66> +14:36:49 Transaction Type : REQUEST +14:36:49 Received From : +14:36:49 ============================================================================ +14:36:49 FNo. Len. Field Value +14:36:49 ============================================================================ +14:36:49 [ 1] [ 4] [0200] +14:36:49 [ 2] [ 16] [6213548000368991] +14:36:49 [ 3] [ 6] [010000] +14:36:49 [ 4] [ 12] [000010000000] +14:36:49 [ 7] [ 10] [0320143439] +14:36:49 [ 11] [ 6] [948750] +14:36:49 [ 12] [ 6] [143439] +14:36:49 [ 13] [ 4] [0320] +14:36:49 [ 15] [ 4] [0320] +14:36:49 [ 18] [ 4] [6011] +14:36:49 [ 19] [ 3] [418] +14:36:49 [ 22] [ 3] [021] +14:36:49 [ 25] [ 2] [01] +14:36:49 [ 28] [ 9] [D00002000] +14:36:49 [ 32] [ 6] [668899] +14:36:49 [ 35] [ 32] [6213548000368991=180512016899616] +14:36:49 [ 37] [ 12] [507900196126] +14:36:49 [ 41] [ 8] [03001003] +14:36:49 [ 42] [ 15] [APT ] +14:36:49 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +14:36:49 [ 49] [ 3] [418] +14:36:49 [ 52] [ 16] [850FDF8F87564D55] +14:36:49 ============================================================================ +14:36:49 + + +waiting on router queue for slot.... +14:36:49 Sending to : +14:36:49 ============================================================================ +14:36:49 Sending to : +14:36:49 ============================================================================ +14:36:49 ============================================================================ +14:36:49 Slot Id : <66> +14:36:49 Transaction Type : REQUEST +14:36:49 Received From : +14:36:49 ============================================================================ +14:36:49 FNo. Len. Field Value +14:36:49 ============================================================================ +14:36:49 [ 1] [ 4] [0200] +14:36:49 [ 2] [ 16] [6213548000368991] +14:36:49 [ 3] [ 6] [010000] +14:36:49 [ 4] [ 12] [000010000000] +14:36:49 [ 7] [ 10] [0320143439] +14:36:49 [ 11] [ 6] [948750] +14:36:49 [ 12] [ 6] [143439] +14:36:49 [ 13] [ 4] [0320] +14:36:49 [ 15] [ 4] [0320] +14:36:49 [ 18] [ 4] [6011] +14:36:49 [ 19] [ 3] [418] +14:36:49 [ 22] [ 3] [021] +14:36:49 [ 25] [ 2] [01] +14:36:49 [ 28] [ 9] [D00002000] +14:36:49 [ 32] [ 6] [668899] +14:36:49 [ 35] [ 32] [6213548000368991=180512016899616] +14:36:49 [ 37] [ 12] [507900196126] +14:36:49 [ 41] [ 8] [03001003] +14:36:49 [ 42] [ 15] [APT ] +14:36:49 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +14:36:49 [ 49] [ 3] [418] +14:36:49 [ 52] [ 16] [850FDF8F87564D55] +14:36:49 ============================================================================ +14:36:49 + + +waiting on router queue for slot.... +14:36:49 Sending to : +14:36:49 ============================================================================ +14:36:49 ============================================================================ +14:36:49 Slot Id : <66> +14:36:49 Transaction Type : REQUEST +14:36:49 Received From : +14:36:49 ============================================================================ +14:36:49 FNo. Len. Field Value +14:36:49 ============================================================================ +14:36:49 [ 1] [ 4] [0200] +14:36:49 [ 2] [ 16] [6213548000368991] +14:36:49 [ 3] [ 6] [010000] +14:36:49 [ 4] [ 12] [000010000000] +14:36:49 [ 7] [ 10] [0320143439] +14:36:49 [ 11] [ 6] [948750] +14:36:49 [ 12] [ 6] [143439] +14:36:49 [ 13] [ 4] [0320] +14:36:49 [ 15] [ 4] [0320] +14:36:49 [ 18] [ 4] [6011] +14:36:49 [ 19] [ 3] [418] +14:36:49 [ 22] [ 3] [021] +14:36:49 [ 25] [ 2] [01] +14:36:49 [ 28] [ 9] [D00002000] +14:36:49 [ 32] [ 6] [668899] +14:36:49 [ 35] [ 32] [6213548000368991=180512016899616] +14:36:49 [ 37] [ 12] [507900196126] +14:36:49 [ 41] [ 8] [03001003] +14:36:49 [ 42] [ 15] [APT ] +14:36:49 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +14:36:49 [ 49] [ 3] [418] +14:36:49 [ 52] [ 16] [2E4F5AD31D70AC03] +14:36:49 ============================================================================ +14:36:49 + + +waiting on router queue for slot.... +14:36:49 Sending to : <0> +14:36:49 ============================================================================ +14:36:49 ============================================================================ +14:36:49 Slot Id : <114> +14:36:49 Transaction Type : RESPONSE +14:36:49 Received From : +14:36:49 ============================================================================ +14:36:49 FNo. Len. Field Value +14:36:49 ============================================================================ +14:36:49 [ 1] [ 4] [0210] +14:36:49 [ 2] [ 16] [1888880000011569] +14:36:49 [ 3] [ 6] [011000] +14:36:49 [ 4] [ 12] [000060000000] +14:36:49 [ 7] [ 10] [0320143639] +14:36:49 [ 11] [ 6] [772289] +14:36:49 [ 12] [ 6] [143639] +14:36:49 [ 13] [ 4] [0320] +14:36:49 [ 15] [ 4] [0320] +14:36:49 [ 18] [ 4] [6011] +14:36:49 [ 19] [ 3] [418] +14:36:49 [ 32] [ 6] [621354] +14:36:49 [ 37] [ 12] [507904412670] +14:36:49 [ 38] [ 6] [903595] +14:36:49 [ 39] [ 2] [00] +14:36:49 [ 41] [ 8] [03004000] +14:36:49 [ 49] [ 3] [418] +14:36:49 [ 54] [ 0] [] +14:36:49 ============================================================================ +14:36:49 Calculate Source COMM Id = 0 +14:36:49 ============================================================================ +14:36:49 + + +waiting on router queue for slot.... +14:36:49 ============================================================================ +14:36:49 Slot Id : <66> +14:36:49 Transaction Type : RESPONSE +14:36:49 Received From : +14:36:49 ============================================================================ +14:36:49 FNo. Len. Field Value +14:36:49 ============================================================================ +14:36:49 [ 1] [ 4] [0210] +14:36:49 [ 2] [ 16] [6213548000368991] +14:36:49 [ 3] [ 6] [010000] +14:36:49 [ 4] [ 12] [000010000000] +14:36:49 [ 7] [ 10] [0320143439] +14:36:49 [ 11] [ 6] [948750] +14:36:49 [ 12] [ 6] [143439] +14:36:49 [ 13] [ 4] [0320] +14:36:49 [ 15] [ 4] [0320] +14:36:49 [ 18] [ 4] [6011] +14:36:49 [ 19] [ 3] [418] +14:36:49 [ 32] [ 6] [668899] +14:36:49 [ 35] [ 32] [6213548000368991=180512016899616] +14:36:49 [ 37] [ 12] [507900196126] +14:36:49 [ 38] [ 6] [948750] +14:36:49 [ 39] [ 2] [51] +14:36:49 [ 41] [ 8] [03001003] +14:36:49 [ 49] [ 3] [418] +14:36:49 [ 54] [ 40] [0001418C0000134424070002418C000013442407] +14:36:49 ============================================================================ +14:36:49 Sending to : +14:36:49 ============================================================================ +14:36:49 + + +waiting on router queue for slot.... +14:36:50 ============================================================================ +14:36:50 Slot Id : <90> +14:36:50 Transaction Type : REQUEST +14:36:50 Received From : +14:36:50 ============================================================================ +14:36:50 FNo. Len. Field Value +14:36:50 ============================================================================ +14:36:50 [ 1] [ 4] [0800] +14:36:50 [ 7] [ 10] [0320073556] +14:36:50 [ 11] [ 6] [156819] +14:36:50 [ 70] [ 3] [301] +14:36:50 ============================================================================ +14:36:50 + + +waiting on router queue for slot.... +14:36:50 Sending to : +14:36:50 ============================================================================ +14:36:50 ============================================================================ +14:36:50 Slot Id : <90> +14:36:50 Transaction Type : RESPONSE +14:36:50 Received From : +14:36:50 ============================================================================ +14:36:50 FNo. Len. Field Value +14:36:50 ============================================================================ +14:36:50 [ 1] [ 4] [0810] +14:36:50 [ 7] [ 10] [0320073556] +14:36:50 [ 11] [ 6] [156819] +14:36:50 [ 39] [ 2] [00] +14:36:50 [ 70] [ 3] [301] +14:36:50 ============================================================================ +14:36:50 Calculate Source COMM Id = 2 +14:36:50 ============================================================================ +14:36:50 + + +waiting on router queue for slot.... +14:36:50 ============================================================================ +14:36:50 Slot Id : <66> +14:36:50 Transaction Type : RESPONSE +14:36:50 Received From : +14:36:50 ============================================================================ +14:36:50 FNo. Len. Field Value +14:36:50 ============================================================================ +14:36:50 [ 1] [ 4] [0210] +14:36:50 [ 2] [ 16] [6213548000368991] +14:36:50 [ 3] [ 6] [010000] +14:36:50 [ 4] [ 12] [000010000000] +14:36:50 [ 7] [ 10] [0320143439] +14:36:50 [ 11] [ 6] [948750] +14:36:50 [ 12] [ 6] [143439] +14:36:50 [ 13] [ 4] [0320] +14:36:50 [ 15] [ 4] [0320] +14:36:50 [ 18] [ 4] [6011] +14:36:50 [ 19] [ 3] [418] +14:36:50 [ 32] [ 6] [668899] +14:36:50 [ 35] [ 32] [6213548000368991=180512016899616] +14:36:50 [ 37] [ 12] [507900196126] +14:36:50 [ 38] [ 6] [948750] +14:36:50 [ 39] [ 2] [51] +14:36:50 [ 41] [ 8] [03001003] +14:36:50 [ 49] [ 3] [418] +14:36:50 [ 54] [ 40] [0001418C0000134424070002418C000013442407] +14:36:50 ============================================================================ +14:36:50 Calculate Source COMM Id = 4 +14:36:50 ============================================================================ +14:36:50 + + +waiting on router queue for slot.... +14:36:54 ============================================================================ +14:36:54 Slot Id : <83> +14:36:54 Transaction Type : REQUEST +14:36:54 Received From : +14:36:54 ============================================================================ +14:36:54 FNo. Len. Field Value +14:36:54 ============================================================================ +14:36:54 [ 1] [ 4] [0800] +14:36:54 [ 2] [ 5] [02531] +14:36:54 [ 3] [ 6] [579148] +14:36:54 [ 7] [ 10] [0320073654] +14:36:54 [ 11] [ 6] [807260] +14:36:54 [ 15] [ 10] [0320073654] +14:36:54 [ 37] [ 11] [57914807260] +14:36:54 [ 70] [ 3] [001] +14:36:54 ============================================================================ +14:36:54 + + +waiting on router queue for slot.... +14:36:54 ============================================================================ +14:36:54 Slot Id : <83> +14:36:54 Transaction Type : RESPONSE +14:36:54 Received From : +14:36:54 ============================================================================ +14:36:54 FNo. Len. Field Value +14:36:54 ============================================================================ +14:36:54 [ 1] [ 4] [0810] +14:36:54 [ 7] [ 10] [0320073654] +14:36:54 [ 11] [ 6] [807260] +14:36:54 [ 15] [ 4] [0320] +14:36:54 [ 37] [ 12] [57914807260] +14:36:54 [ 39] [ 2] [00] +14:36:54 [ 70] [ 3] [001] +14:36:54 ============================================================================ +14:36:54 Sending to : +14:36:54 ============================================================================ +14:36:54 + + +waiting on router queue for slot.... +14:36:57 ============================================================================ +14:36:57 Slot Id : <118> +14:36:57 Transaction Type : REQUEST +14:36:57 Received From : +14:36:57 ============================================================================ +14:36:57 FNo. Len. Field Value +14:36:57 ============================================================================ +14:36:57 [ 1] [ 4] [0200] +14:36:57 [ 2] [ 16] [6688990103743801] +14:36:57 [ 3] [ 6] [010000] +14:36:57 [ 4] [ 12] [000050000000] +14:36:57 [ 7] [ 10] [0320073604] +14:36:57 [ 11] [ 6] [269722] +14:36:57 [ 12] [ 6] [143604] +14:36:57 [ 13] [ 4] [0320] +14:36:57 [ 14] [ 4] [4302] +14:36:57 [ 15] [ 4] [0320] +14:36:57 [ 18] [ 4] [6011] +14:36:57 [ 19] [ 3] [418] +14:36:57 [ 22] [ 3] [021] +14:36:57 [ 25] [ 2] [01] +14:36:57 [ 28] [ 9] [D00002000] +14:36:57 [ 32] [ 6] [180893] +14:36:57 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:36:57 [ 37] [ 12] [507907269722] +14:36:57 [ 41] [ 8] [0221XKKM] +14:36:57 [ 42] [ 15] [999999 ] +14:36:57 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:36:57 [ 49] [ 3] [418] +14:36:57 [ 52] [ 16] [1777F3726DC8CD62] +14:36:57 ============================================================================ +14:36:57 + + +waiting on router queue for slot.... +14:36:57 Sending to : +14:36:57 ============================================================================ +14:36:57 Sending to : +14:36:57 ============================================================================ +14:36:58 ============================================================================ +14:36:58 Slot Id : <118> +14:36:58 Transaction Type : REQUEST +14:36:58 Received From : +14:36:58 ============================================================================ +14:36:58 FNo. Len. Field Value +14:36:58 ============================================================================ +14:36:58 [ 1] [ 4] [0200] +14:36:58 [ 2] [ 16] [6688990103743801] +14:36:58 [ 3] [ 6] [010000] +14:36:58 [ 4] [ 12] [000050000000] +14:36:58 [ 7] [ 10] [0320073604] +14:36:58 [ 11] [ 6] [269722] +14:36:58 [ 12] [ 6] [143604] +14:36:58 [ 13] [ 4] [0320] +14:36:58 [ 14] [ 4] [4302] +14:36:58 [ 15] [ 4] [0320] +14:36:58 [ 18] [ 4] [6011] +14:36:58 [ 19] [ 3] [418] +14:36:58 [ 22] [ 3] [021] +14:36:58 [ 25] [ 2] [01] +14:36:58 [ 28] [ 9] [D00002000] +14:36:58 [ 32] [ 6] [180893] +14:36:58 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:36:58 [ 37] [ 12] [507907269722] +14:36:58 [ 41] [ 8] [0221XKKM] +14:36:58 [ 42] [ 15] [999999 ] +14:36:58 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:36:58 [ 49] [ 3] [418] +14:36:58 [ 52] [ 16] [1777F3726DC8CD62] +14:36:58 ============================================================================ +14:36:58 + + +waiting on router queue for slot.... +14:36:58 Sending to : +14:36:58 ============================================================================ +14:36:58 ============================================================================ +14:36:58 Slot Id : <118> +14:36:58 Transaction Type : REQUEST +14:36:58 Received From : +14:36:58 ============================================================================ +14:36:58 FNo. Len. Field Value +14:36:58 ============================================================================ +14:36:58 [ 1] [ 4] [0200] +14:36:58 [ 2] [ 16] [6688990103743801] +14:36:58 [ 3] [ 6] [010000] +14:36:58 [ 4] [ 12] [000050000000] +14:36:58 [ 7] [ 10] [0320073604] +14:36:58 [ 11] [ 6] [269722] +14:36:58 [ 12] [ 6] [143604] +14:36:58 [ 13] [ 4] [0320] +14:36:58 [ 14] [ 4] [4302] +14:36:58 [ 15] [ 4] [0320] +14:36:58 [ 18] [ 4] [6011] +14:36:58 [ 19] [ 3] [418] +14:36:58 [ 22] [ 3] [021] +14:36:58 [ 25] [ 2] [01] +14:36:58 [ 28] [ 9] [D00002000] +14:36:58 [ 32] [ 6] [180893] +14:36:58 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:36:58 [ 37] [ 12] [507907269722] +14:36:58 [ 41] [ 8] [0221XKKM] +14:36:58 [ 42] [ 15] [999999 ] +14:36:58 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:36:58 [ 49] [ 3] [418] +14:36:58 [ 52] [ 16] [DC473392EDA7F48C] +14:36:58 ============================================================================ +14:36:58 + + +waiting on router queue for slot.... +14:36:58 Sending to : <0> +14:36:58 ============================================================================ +14:36:58 ============================================================================ +14:36:58 Slot Id : <118> +14:36:58 Transaction Type : RESPONSE +14:36:58 Received From : +14:36:58 ============================================================================ +14:36:58 FNo. Len. Field Value +14:36:58 ============================================================================ +14:36:58 [ 1] [ 4] [0210] +14:36:58 [ 2] [ 16] [6688990103743801] +14:36:58 [ 3] [ 6] [010000] +14:36:58 [ 4] [ 12] [000050000000] +14:36:58 [ 7] [ 10] [0320073604] +14:36:58 [ 11] [ 6] [269722] +14:36:58 [ 12] [ 6] [143604] +14:36:58 [ 13] [ 4] [0320] +14:36:58 [ 15] [ 4] [0320] +14:36:58 [ 18] [ 4] [6011] +14:36:58 [ 19] [ 3] [418] +14:36:58 [ 22] [ 3] [021] +14:36:58 [ 32] [ 6] [180893] +14:36:58 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:36:58 [ 37] [ 12] [507907269722] +14:36:58 [ 39] [ 2] [14] +14:36:58 [ 41] [ 8] [0221XKKM] +14:36:58 [ 49] [ 3] [418] +14:36:58 ============================================================================ +14:36:58 Sending to : +14:36:58 ============================================================================ +14:36:58 + + +waiting on router queue for slot.... +14:36:59 ============================================================================ +14:36:59 Slot Id : <118> +14:36:59 Transaction Type : RESPONSE +14:36:59 Received From : +14:36:59 ============================================================================ +14:36:59 FNo. Len. Field Value +14:36:59 ============================================================================ +14:36:59 [ 1] [ 4] [0210] +14:36:59 [ 2] [ 16] [6688990103743801] +14:36:59 [ 3] [ 6] [010000] +14:36:59 [ 4] [ 12] [000050000000] +14:36:59 [ 7] [ 10] [0320073604] +14:36:59 [ 11] [ 6] [269722] +14:36:59 [ 12] [ 6] [143604] +14:36:59 [ 13] [ 4] [0320] +14:36:59 [ 15] [ 4] [0320] +14:36:59 [ 18] [ 4] [6011] +14:36:59 [ 19] [ 3] [418] +14:36:59 [ 22] [ 3] [021] +14:36:59 [ 32] [ 6] [180893] +14:36:59 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:36:59 [ 37] [ 12] [507907269722] +14:36:59 [ 39] [ 2] [14] +14:36:59 [ 41] [ 8] [0221XKKM] +14:36:59 [ 49] [ 3] [418] +14:36:59 ============================================================================ +14:36:59 Calculate Source COMM Id = 2 +14:36:59 ============================================================================ +14:36:59 + + +waiting on router queue for slot.... +14:37:12 ============================================================================ +14:37:12 Slot Id : <74> +14:37:12 Transaction Type : REQUEST +14:37:12 Received From : +14:37:12 ============================================================================ +14:37:12 FNo. Len. Field Value +14:37:12 ============================================================================ +14:37:12 [ 1] [ 4] [0200] +14:37:12 [ 2] [ 16] [6213548000368991] +14:37:12 [ 3] [ 6] [300000] +14:37:12 [ 4] [ 12] [000000000000] +14:37:12 [ 7] [ 10] [0320143502] +14:37:12 [ 11] [ 6] [948759] +14:37:12 [ 12] [ 6] [143502] +14:37:12 [ 13] [ 4] [0320] +14:37:12 [ 15] [ 4] [0320] +14:37:12 [ 18] [ 4] [6011] +14:37:12 [ 19] [ 3] [418] +14:37:12 [ 22] [ 3] [021] +14:37:12 [ 25] [ 2] [01] +14:37:12 [ 28] [ 9] [D00000000] +14:37:12 [ 32] [ 6] [668899] +14:37:12 [ 35] [ 32] [6213548000368991=180512016899616] +14:37:12 [ 37] [ 12] [507900196127] +14:37:12 [ 41] [ 8] [03001003] +14:37:12 [ 42] [ 15] [APT ] +14:37:12 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +14:37:12 [ 49] [ 3] [418] +14:37:12 [ 52] [ 16] [850FDF8F87564D55] +14:37:12 ============================================================================ +14:37:12 + + +waiting on router queue for slot.... +14:37:12 Sending to : +14:37:12 ============================================================================ +14:37:12 Sending to : +14:37:12 ============================================================================ +14:37:12 ============================================================================ +14:37:12 Slot Id : <74> +14:37:12 Transaction Type : REQUEST +14:37:12 Received From : +14:37:12 ============================================================================ +14:37:12 FNo. Len. Field Value +14:37:12 ============================================================================ +14:37:12 [ 1] [ 4] [0200] +14:37:12 [ 2] [ 16] [6213548000368991] +14:37:12 [ 3] [ 6] [300000] +14:37:12 [ 4] [ 12] [000000000000] +14:37:12 [ 7] [ 10] [0320143502] +14:37:12 [ 11] [ 6] [948759] +14:37:12 [ 12] [ 6] [143502] +14:37:12 [ 13] [ 4] [0320] +14:37:12 [ 15] [ 4] [0320] +14:37:12 [ 18] [ 4] [6011] +14:37:12 [ 19] [ 3] [418] +14:37:12 [ 22] [ 3] [021] +14:37:12 [ 25] [ 2] [01] +14:37:12 [ 28] [ 9] [D00000000] +14:37:12 [ 32] [ 6] [668899] +14:37:12 [ 35] [ 32] [6213548000368991=180512016899616] +14:37:12 [ 37] [ 12] [507900196127] +14:37:12 [ 41] [ 8] [03001003] +14:37:12 [ 42] [ 15] [APT ] +14:37:12 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +14:37:12 [ 49] [ 3] [418] +14:37:12 [ 52] [ 16] [850FDF8F87564D55] +14:37:12 ============================================================================ +14:37:12 + + +waiting on router queue for slot.... +14:37:12 Sending to : +14:37:12 ============================================================================ +14:37:12 ============================================================================ +14:37:12 Slot Id : <74> +14:37:12 Transaction Type : REQUEST +14:37:12 Received From : +14:37:12 ============================================================================ +14:37:12 FNo. Len. Field Value +14:37:12 ============================================================================ +14:37:12 [ 1] [ 4] [0200] +14:37:12 [ 2] [ 16] [6213548000368991] +14:37:12 [ 3] [ 6] [300000] +14:37:12 [ 4] [ 12] [000000000000] +14:37:12 [ 7] [ 10] [0320143502] +14:37:12 [ 11] [ 6] [948759] +14:37:12 [ 12] [ 6] [143502] +14:37:12 [ 13] [ 4] [0320] +14:37:12 [ 15] [ 4] [0320] +14:37:12 [ 18] [ 4] [6011] +14:37:12 [ 19] [ 3] [418] +14:37:12 [ 22] [ 3] [021] +14:37:12 [ 25] [ 2] [01] +14:37:12 [ 28] [ 9] [D00000000] +14:37:12 [ 32] [ 6] [668899] +14:37:12 [ 35] [ 32] [6213548000368991=180512016899616] +14:37:12 [ 37] [ 12] [507900196127] +14:37:12 [ 41] [ 8] [03001003] +14:37:12 [ 42] [ 15] [APT ] +14:37:12 [ 43] [ 40] [ 150 HOSPITAL SAYSETTHA 15] +14:37:12 [ 49] [ 3] [418] +14:37:12 [ 52] [ 16] [2E4F5AD31D70AC03] +14:37:12 ============================================================================ +14:37:12 + + +waiting on router queue for slot.... +14:37:12 Sending to : <0> +14:37:12 ============================================================================ +14:37:13 ============================================================================ +14:37:13 Slot Id : <74> +14:37:13 Transaction Type : RESPONSE +14:37:13 Received From : +14:37:13 ============================================================================ +14:37:13 FNo. Len. Field Value +14:37:13 ============================================================================ +14:37:13 [ 1] [ 4] [0210] +14:37:13 [ 2] [ 16] [6213548000368991] +14:37:13 [ 3] [ 6] [300000] +14:37:13 [ 4] [ 12] [000000000000] +14:37:13 [ 7] [ 10] [0320143502] +14:37:13 [ 11] [ 6] [948759] +14:37:13 [ 12] [ 6] [143502] +14:37:13 [ 13] [ 4] [0320] +14:37:13 [ 15] [ 4] [0320] +14:37:13 [ 18] [ 4] [6011] +14:37:13 [ 19] [ 3] [418] +14:37:13 [ 32] [ 6] [668899] +14:37:13 [ 35] [ 32] [6213548000368991=180512016899616] +14:37:13 [ 37] [ 12] [507900196127] +14:37:13 [ 38] [ 6] [028649] +14:37:13 [ 39] [ 2] [00] +14:37:13 [ 41] [ 8] [03001003] +14:37:13 [ 49] [ 3] [418] +14:37:13 [ 54] [ 40] [0001418C0000134424070002418C000013442407] +14:37:13 ============================================================================ +14:37:13 Sending to : +14:37:13 ============================================================================ +14:37:13 + + +waiting on router queue for slot.... +14:37:14 ============================================================================ +14:37:14 Slot Id : <74> +14:37:14 Transaction Type : RESPONSE +14:37:14 Received From : +14:37:14 ============================================================================ +14:37:14 FNo. Len. Field Value +14:37:14 ============================================================================ +14:37:14 [ 1] [ 4] [0210] +14:37:14 [ 2] [ 16] [6213548000368991] +14:37:14 [ 3] [ 6] [300000] +14:37:14 [ 4] [ 12] [000000000000] +14:37:14 [ 7] [ 10] [0320143502] +14:37:14 [ 11] [ 6] [948759] +14:37:14 [ 12] [ 6] [143502] +14:37:14 [ 13] [ 4] [0320] +14:37:14 [ 15] [ 4] [0320] +14:37:14 [ 18] [ 4] [6011] +14:37:14 [ 19] [ 3] [418] +14:37:14 [ 32] [ 6] [668899] +14:37:14 [ 35] [ 32] [6213548000368991=180512016899616] +14:37:14 [ 37] [ 12] [507900196127] +14:37:14 [ 38] [ 6] [028649] +14:37:14 [ 39] [ 2] [00] +14:37:14 [ 41] [ 8] [03001003] +14:37:14 [ 49] [ 3] [418] +14:37:14 [ 54] [ 40] [0001418C0000134424070002418C000013442407] +14:37:14 ============================================================================ +14:37:14 Calculate Source COMM Id = 4 +14:37:14 ============================================================================ +14:37:14 + + +waiting on router queue for slot.... +14:37:15 ============================================================================ +14:37:15 Slot Id : <107> +14:37:15 Transaction Type : REQUEST +14:37:15 Received From : +14:37:15 ============================================================================ +14:37:15 FNo. Len. Field Value +14:37:15 ============================================================================ +14:37:15 [ 1] [ 4] [0800] +14:37:15 [ 7] [ 10] [0320073622] +14:37:15 [ 11] [ 6] [156820] +14:37:15 [ 70] [ 3] [301] +14:37:15 ============================================================================ +14:37:15 + + +waiting on router queue for slot.... +14:37:15 Sending to : +14:37:15 ============================================================================ +14:37:15 ============================================================================ +14:37:15 Slot Id : <107> +14:37:15 Transaction Type : RESPONSE +14:37:15 Received From : +14:37:15 ============================================================================ +14:37:15 FNo. Len. Field Value +14:37:15 ============================================================================ +14:37:15 [ 1] [ 4] [0810] +14:37:15 [ 7] [ 10] [0320073622] +14:37:15 [ 11] [ 6] [156820] +14:37:15 [ 39] [ 2] [00] +14:37:15 [ 70] [ 3] [301] +14:37:15 ============================================================================ +14:37:15 Calculate Source COMM Id = 2 +14:37:15 ============================================================================ +14:37:15 + + +waiting on router queue for slot.... +14:37:19 ============================================================================ +14:37:19 Slot Id : <121> +14:37:19 Transaction Type : REQUEST +14:37:19 Received From : +14:37:19 ============================================================================ +14:37:19 FNo. Len. Field Value +14:37:19 ============================================================================ +14:37:19 [ 1] [ 4] [0800] +14:37:19 [ 7] [ 10] [0320214908] +14:37:19 [ 11] [ 6] [144908] +14:37:19 [ 37] [ 12] [57914144908] +14:37:19 [ 70] [ 3] [301] +14:37:19 ============================================================================ +14:37:19 + + +waiting on router queue for slot.... +14:37:19 Sending to : +14:37:19 ============================================================================ +14:37:19 ============================================================================ +14:37:19 Slot Id : <121> +14:37:19 Transaction Type : RESPONSE +14:37:19 Received From : +14:37:19 ============================================================================ +14:37:19 FNo. Len. Field Value +14:37:19 ============================================================================ +14:37:19 [ 1] [ 4] [0810] +14:37:19 [ 7] [ 10] [0320214908] +14:37:19 [ 11] [ 6] [144908] +14:37:19 [ 37] [ 12] [579141449080] +14:37:19 [ 39] [ 2] [00] +14:37:19 [ 70] [ 3] [810] +14:37:19 ============================================================================ +14:37:19 Calculate Source COMM Id = 6 +14:37:19 ============================================================================ +14:37:19 + + +waiting on router queue for slot.... +14:37:25 ============================================================================ +14:37:25 Slot Id : <115> +14:37:25 Transaction Type : REQUEST +14:37:25 Received From : +14:37:25 ============================================================================ +14:37:25 FNo. Len. Field Value +14:37:25 ============================================================================ +14:37:25 [ 1] [ 4] [0200] +14:37:25 [ 2] [ 16] [6688990040157180] +14:37:25 [ 3] [ 6] [011000] +14:37:25 [ 4] [ 12] [000074000000] +14:37:25 [ 7] [ 10] [0320143721] +14:37:25 [ 11] [ 6] [772452] +14:37:25 [ 12] [ 6] [143721] +14:37:25 [ 13] [ 4] [0320] +14:37:25 [ 15] [ 4] [0320] +14:37:25 [ 18] [ 4] [6011] +14:37:25 [ 22] [ 3] [900] +14:37:25 [ 25] [ 2] [02] +14:37:25 [ 28] [ 9] [D00002000] +14:37:25 [ 32] [ 6] [621354] +14:37:25 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:37:25 [ 37] [ 12] [507902539897] +14:37:25 [ 41] [ 8] [05003600] +14:37:25 [ 42] [ 15] [NATIVE ] +14:37:25 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:37:25 [ 49] [ 3] [418] +14:37:25 [ 52] [ 16] [5548B954CB1804D3] +14:37:25 ============================================================================ +14:37:25 + + +waiting on router queue for slot.... +14:37:25 Sending to : +14:37:25 ============================================================================ +14:37:25 Sending to : +14:37:25 ============================================================================ +14:37:26 ============================================================================ +14:37:26 Slot Id : <115> +14:37:26 Transaction Type : REQUEST +14:37:26 Received From : +14:37:26 ============================================================================ +14:37:26 FNo. Len. Field Value +14:37:26 ============================================================================ +14:37:26 [ 1] [ 4] [0200] +14:37:26 [ 2] [ 16] [6688990040157180] +14:37:26 [ 3] [ 6] [011000] +14:37:26 [ 4] [ 12] [000074000000] +14:37:26 [ 7] [ 10] [0320143721] +14:37:26 [ 11] [ 6] [772452] +14:37:26 [ 12] [ 6] [143721] +14:37:26 [ 13] [ 4] [0320] +14:37:26 [ 15] [ 4] [0320] +14:37:26 [ 18] [ 4] [6011] +14:37:26 [ 22] [ 3] [900] +14:37:26 [ 25] [ 2] [02] +14:37:26 [ 28] [ 9] [D00002000] +14:37:26 [ 32] [ 6] [621354] +14:37:26 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:37:26 [ 37] [ 12] [507902539897] +14:37:26 [ 41] [ 8] [05003600] +14:37:26 [ 42] [ 15] [NATIVE ] +14:37:26 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:37:26 [ 49] [ 3] [418] +14:37:26 [ 52] [ 16] [5548B954CB1804D3] +14:37:26 ============================================================================ +14:37:26 + + +waiting on router queue for slot.... +14:37:26 Sending to : +14:37:26 ============================================================================ +14:37:26 ============================================================================ +14:37:26 Slot Id : <115> +14:37:26 Transaction Type : REQUEST +14:37:26 Received From : +14:37:26 ============================================================================ +14:37:26 FNo. Len. Field Value +14:37:26 ============================================================================ +14:37:26 [ 1] [ 4] [0200] +14:37:26 [ 2] [ 16] [6688990040157180] +14:37:26 [ 3] [ 6] [011000] +14:37:26 [ 4] [ 12] [000074000000] +14:37:26 [ 7] [ 10] [0320143721] +14:37:26 [ 11] [ 6] [772452] +14:37:26 [ 12] [ 6] [143721] +14:37:26 [ 13] [ 4] [0320] +14:37:26 [ 15] [ 4] [0320] +14:37:26 [ 18] [ 4] [6011] +14:37:26 [ 22] [ 3] [900] +14:37:26 [ 25] [ 2] [02] +14:37:26 [ 28] [ 9] [D00002000] +14:37:26 [ 32] [ 6] [621354] +14:37:26 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:37:26 [ 37] [ 12] [507902539897] +14:37:26 [ 41] [ 8] [05003600] +14:37:26 [ 42] [ 15] [NATIVE ] +14:37:26 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:37:26 [ 49] [ 3] [418] +14:37:26 [ 52] [ 16] [C235E6F344B8EC2D] +14:37:26 ============================================================================ +14:37:26 + + +waiting on router queue for slot.... +14:37:26 Sending to : <4> +14:37:26 ============================================================================ +14:37:26 ============================================================================ +14:37:26 Slot Id : <115> +14:37:26 Transaction Type : RESPONSE +14:37:26 Received From : +14:37:26 ============================================================================ +14:37:26 FNo. Len. Field Value +14:37:26 ============================================================================ +14:37:26 [ 1] [ 4] [0210] +14:37:26 [ 2] [ 16] [6688990040157180] +14:37:26 [ 3] [ 6] [011000] +14:37:26 [ 4] [ 12] [000074000000] +14:37:26 [ 7] [ 10] [0320143721] +14:37:26 [ 11] [ 6] [772452] +14:37:26 [ 12] [ 6] [143721] +14:37:26 [ 13] [ 4] [0320] +14:37:26 [ 15] [ 4] [0320] +14:37:26 [ 18] [ 4] [6011] +14:37:26 [ 22] [ 3] [021] +14:37:26 [ 32] [ 6] [621354] +14:37:26 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:37:26 [ 37] [ 12] [507902539897] +14:37:26 [ 39] [ 2] [62] +14:37:26 [ 41] [ 8] [05003600] +14:37:26 [ 49] [ 3] [418] +14:37:26 ============================================================================ +14:37:26 Sending to : +14:37:26 ============================================================================ +14:37:26 + + +waiting on router queue for slot.... +14:37:27 ============================================================================ +14:37:27 Slot Id : <115> +14:37:27 Transaction Type : RESPONSE +14:37:27 Received From : +14:37:27 ============================================================================ +14:37:27 FNo. Len. Field Value +14:37:27 ============================================================================ +14:37:27 [ 1] [ 4] [0210] +14:37:27 [ 2] [ 16] [6688990040157180] +14:37:27 [ 3] [ 6] [011000] +14:37:27 [ 4] [ 12] [000074000000] +14:37:27 [ 7] [ 10] [0320143721] +14:37:27 [ 11] [ 6] [772452] +14:37:27 [ 12] [ 6] [143721] +14:37:27 [ 13] [ 4] [0320] +14:37:27 [ 15] [ 4] [0320] +14:37:27 [ 18] [ 4] [6011] +14:37:27 [ 22] [ 3] [021] +14:37:27 [ 32] [ 6] [621354] +14:37:27 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:37:27 [ 37] [ 12] [507902539897] +14:37:27 [ 39] [ 2] [62] +14:37:27 [ 41] [ 8] [05003600] +14:37:27 [ 49] [ 3] [418] +14:37:27 ============================================================================ +14:37:27 Calculate Source COMM Id = 0 +14:37:27 ============================================================================ +14:37:27 + + +waiting on router queue for slot.... +14:37:31 ============================================================================ +14:37:31 Slot Id : <92> +14:37:31 Transaction Type : REQUEST +14:37:31 Received From : +14:37:31 ============================================================================ +14:37:31 FNo. Len. Field Value +14:37:31 ============================================================================ +14:37:31 [ 1] [ 4] [0800] +14:37:31 [ 7] [ 10] [0320073638] +14:37:31 [ 11] [ 6] [156821] +14:37:31 [ 70] [ 3] [301] +14:37:31 ============================================================================ +14:37:31 + + +waiting on router queue for slot.... +14:37:31 Sending to : +14:37:31 ============================================================================ +14:37:31 ============================================================================ +14:37:31 Slot Id : <92> +14:37:31 Transaction Type : RESPONSE +14:37:31 Received From : +14:37:31 ============================================================================ +14:37:31 FNo. Len. Field Value +14:37:31 ============================================================================ +14:37:31 [ 1] [ 4] [0810] +14:37:31 [ 7] [ 10] [0320073638] +14:37:31 [ 11] [ 6] [156821] +14:37:31 [ 39] [ 2] [00] +14:37:31 [ 70] [ 3] [301] +14:37:31 ============================================================================ +14:37:31 Calculate Source COMM Id = 2 +14:37:31 ============================================================================ +14:37:31 + + +waiting on router queue for slot.... +14:37:39 ============================================================================ +14:37:39 Slot Id : <108> +14:37:39 Transaction Type : REQUEST +14:37:39 Received From : +14:37:39 ============================================================================ +14:37:39 FNo. Len. Field Value +14:37:39 ============================================================================ +14:37:39 [ 1] [ 4] [0200] +14:37:39 [ 2] [ 16] [6688990103743801] +14:37:39 [ 3] [ 6] [010000] +14:37:39 [ 4] [ 12] [000050000000] +14:37:39 [ 7] [ 10] [0320073646] +14:37:39 [ 11] [ 6] [269724] +14:37:39 [ 12] [ 6] [143646] +14:37:39 [ 13] [ 4] [0320] +14:37:39 [ 14] [ 4] [4302] +14:37:39 [ 15] [ 4] [0320] +14:37:39 [ 18] [ 4] [6011] +14:37:39 [ 19] [ 3] [418] +14:37:39 [ 22] [ 3] [021] +14:37:39 [ 25] [ 2] [01] +14:37:39 [ 28] [ 9] [D00002000] +14:37:39 [ 32] [ 6] [180893] +14:37:39 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:37:39 [ 37] [ 12] [507907269724] +14:37:39 [ 41] [ 8] [0221XKKM] +14:37:39 [ 42] [ 15] [999999 ] +14:37:39 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:37:39 [ 49] [ 3] [418] +14:37:39 [ 52] [ 16] [1777F3726DC8CD62] +14:37:39 ============================================================================ +14:37:39 + + +waiting on router queue for slot.... +14:37:39 Sending to : +14:37:39 ============================================================================ +14:37:39 Sending to : +14:37:39 ============================================================================ +14:37:40 ============================================================================ +14:37:40 Slot Id : <108> +14:37:40 Transaction Type : REQUEST +14:37:40 Received From : +14:37:40 ============================================================================ +14:37:40 FNo. Len. Field Value +14:37:40 ============================================================================ +14:37:40 [ 1] [ 4] [0200] +14:37:40 [ 2] [ 16] [6688990103743801] +14:37:40 [ 3] [ 6] [010000] +14:37:40 [ 4] [ 12] [000050000000] +14:37:40 [ 7] [ 10] [0320073646] +14:37:40 [ 11] [ 6] [269724] +14:37:40 [ 12] [ 6] [143646] +14:37:40 [ 13] [ 4] [0320] +14:37:40 [ 14] [ 4] [4302] +14:37:40 [ 15] [ 4] [0320] +14:37:40 [ 18] [ 4] [6011] +14:37:40 [ 19] [ 3] [418] +14:37:40 [ 22] [ 3] [021] +14:37:40 [ 25] [ 2] [01] +14:37:40 [ 28] [ 9] [D00002000] +14:37:40 [ 32] [ 6] [180893] +14:37:40 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:37:40 [ 37] [ 12] [507907269724] +14:37:40 [ 41] [ 8] [0221XKKM] +14:37:40 [ 42] [ 15] [999999 ] +14:37:40 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:37:40 [ 49] [ 3] [418] +14:37:40 [ 52] [ 16] [1777F3726DC8CD62] +14:37:40 ============================================================================ +14:37:40 + + +waiting on router queue for slot.... +14:37:40 Sending to : +14:37:40 ============================================================================ +14:37:40 ============================================================================ +14:37:40 Slot Id : <108> +14:37:40 Transaction Type : REQUEST +14:37:40 Received From : +14:37:40 ============================================================================ +14:37:40 FNo. Len. Field Value +14:37:40 ============================================================================ +14:37:40 [ 1] [ 4] [0200] +14:37:40 [ 2] [ 16] [6688990103743801] +14:37:40 [ 3] [ 6] [010000] +14:37:40 [ 4] [ 12] [000050000000] +14:37:40 [ 7] [ 10] [0320073646] +14:37:40 [ 11] [ 6] [269724] +14:37:40 [ 12] [ 6] [143646] +14:37:40 [ 13] [ 4] [0320] +14:37:40 [ 14] [ 4] [4302] +14:37:40 [ 15] [ 4] [0320] +14:37:40 [ 18] [ 4] [6011] +14:37:40 [ 19] [ 3] [418] +14:37:40 [ 22] [ 3] [021] +14:37:40 [ 25] [ 2] [01] +14:37:40 [ 28] [ 9] [D00002000] +14:37:40 [ 32] [ 6] [180893] +14:37:40 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:37:40 [ 37] [ 12] [507907269724] +14:37:40 [ 41] [ 8] [0221XKKM] +14:37:40 [ 42] [ 15] [999999 ] +14:37:40 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:37:40 [ 49] [ 3] [418] +14:37:40 [ 52] [ 16] [DC473392EDA7F48C] +14:37:40 ============================================================================ +14:37:40 + + +waiting on router queue for slot.... +14:37:40 Sending to : <0> +14:37:40 ============================================================================ +14:37:40 ============================================================================ +14:37:40 Slot Id : <108> +14:37:40 Transaction Type : RESPONSE +14:37:40 Received From : +14:37:40 ============================================================================ +14:37:40 FNo. Len. Field Value +14:37:40 ============================================================================ +14:37:40 [ 1] [ 4] [0210] +14:37:40 [ 2] [ 16] [6688990103743801] +14:37:40 [ 3] [ 6] [010000] +14:37:40 [ 4] [ 12] [000050000000] +14:37:40 [ 7] [ 10] [0320073646] +14:37:40 [ 11] [ 6] [269724] +14:37:40 [ 12] [ 6] [143646] +14:37:40 [ 13] [ 4] [0320] +14:37:40 [ 15] [ 4] [0320] +14:37:40 [ 18] [ 4] [6011] +14:37:40 [ 19] [ 3] [418] +14:37:40 [ 22] [ 3] [021] +14:37:40 [ 32] [ 6] [180893] +14:37:40 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:37:40 [ 37] [ 12] [507907269724] +14:37:40 [ 39] [ 2] [14] +14:37:40 [ 41] [ 8] [0221XKKM] +14:37:40 [ 49] [ 3] [418] +14:37:40 ============================================================================ +14:37:40 Sending to : +14:37:40 ============================================================================ +14:37:40 + + +waiting on router queue for slot.... +14:37:41 ============================================================================ +14:37:41 Slot Id : <108> +14:37:41 Transaction Type : RESPONSE +14:37:41 Received From : +14:37:41 ============================================================================ +14:37:41 FNo. Len. Field Value +14:37:41 ============================================================================ +14:37:41 [ 1] [ 4] [0210] +14:37:41 [ 2] [ 16] [6688990103743801] +14:37:41 [ 3] [ 6] [010000] +14:37:41 [ 4] [ 12] [000050000000] +14:37:41 [ 7] [ 10] [0320073646] +14:37:41 [ 11] [ 6] [269724] +14:37:41 [ 12] [ 6] [143646] +14:37:41 [ 13] [ 4] [0320] +14:37:41 [ 15] [ 4] [0320] +14:37:41 [ 18] [ 4] [6011] +14:37:41 [ 19] [ 3] [418] +14:37:41 [ 22] [ 3] [021] +14:37:41 [ 32] [ 6] [180893] +14:37:41 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:37:41 [ 37] [ 12] [507907269724] +14:37:41 [ 39] [ 2] [14] +14:37:41 [ 41] [ 8] [0221XKKM] +14:37:41 [ 49] [ 3] [418] +14:37:41 ============================================================================ +14:37:41 Calculate Source COMM Id = 2 +14:37:41 ============================================================================ +14:37:41 + + +waiting on router queue for slot.... +14:37:45 ============================================================================ +14:37:45 Slot Id : <113> +14:37:45 Transaction Type : REQUEST +14:37:45 Received From : +14:37:45 ============================================================================ +14:37:45 FNo. Len. Field Value +14:37:45 ============================================================================ +14:37:45 [ 1] [ 4] [0200] +14:37:45 [ 2] [ 16] [6688990603028703] +14:37:45 [ 3] [ 6] [301000] +14:37:45 [ 4] [ 12] [000000000000] +14:37:45 [ 7] [ 10] [0320143741] +14:37:45 [ 11] [ 6] [772545] +14:37:45 [ 12] [ 6] [143741] +14:37:45 [ 13] [ 4] [0320] +14:37:45 [ 15] [ 4] [0320] +14:37:45 [ 18] [ 4] [6011] +14:37:45 [ 22] [ 3] [900] +14:37:45 [ 25] [ 2] [02] +14:37:45 [ 28] [ 9] [D00000000] +14:37:45 [ 32] [ 6] [621354] +14:37:45 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:37:45 [ 37] [ 12] [507904743906] +14:37:45 [ 41] [ 8] [07001000] +14:37:45 [ 42] [ 15] [NATIVE ] +14:37:45 [ 43] [ 40] [LNT Branch02 Namtar LAO] +14:37:45 [ 49] [ 3] [418] +14:37:45 [ 52] [ 16] [C24EAF7387258530] +14:37:45 ============================================================================ +14:37:45 + + +waiting on router queue for slot.... +14:37:45 Sending to : +14:37:45 ============================================================================ +14:37:45 Sending to : +14:37:45 ============================================================================ +14:37:46 ============================================================================ +14:37:46 Slot Id : <113> +14:37:46 Transaction Type : REQUEST +14:37:46 Received From : +14:37:46 ============================================================================ +14:37:46 FNo. Len. Field Value +14:37:46 ============================================================================ +14:37:46 [ 1] [ 4] [0200] +14:37:46 [ 2] [ 16] [6688990603028703] +14:37:46 [ 3] [ 6] [301000] +14:37:46 [ 4] [ 12] [000000000000] +14:37:46 [ 7] [ 10] [0320143741] +14:37:46 [ 11] [ 6] [772545] +14:37:46 [ 12] [ 6] [143741] +14:37:46 [ 13] [ 4] [0320] +14:37:46 [ 15] [ 4] [0320] +14:37:46 [ 18] [ 4] [6011] +14:37:46 [ 22] [ 3] [900] +14:37:46 [ 25] [ 2] [02] +14:37:46 [ 28] [ 9] [D00000000] +14:37:46 [ 32] [ 6] [621354] +14:37:46 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:37:46 [ 37] [ 12] [507904743906] +14:37:46 [ 41] [ 8] [07001000] +14:37:46 [ 42] [ 15] [NATIVE ] +14:37:46 [ 43] [ 40] [LNT Branch02 Namtar LAO] +14:37:46 [ 49] [ 3] [418] +14:37:46 [ 52] [ 16] [C24EAF7387258530] +14:37:46 ============================================================================ +14:37:46 + + +waiting on router queue for slot.... +14:37:46 Sending to : +14:37:46 ============================================================================ +14:37:46 ============================================================================ +14:37:46 Slot Id : <113> +14:37:46 Transaction Type : REQUEST +14:37:46 Received From : +14:37:46 ============================================================================ +14:37:46 FNo. Len. Field Value +14:37:46 ============================================================================ +14:37:46 [ 1] [ 4] [0200] +14:37:46 [ 2] [ 16] [6688990603028703] +14:37:46 [ 3] [ 6] [301000] +14:37:46 [ 4] [ 12] [000000000000] +14:37:46 [ 7] [ 10] [0320143741] +14:37:46 [ 11] [ 6] [772545] +14:37:46 [ 12] [ 6] [143741] +14:37:46 [ 13] [ 4] [0320] +14:37:46 [ 15] [ 4] [0320] +14:37:46 [ 18] [ 4] [6011] +14:37:46 [ 22] [ 3] [900] +14:37:46 [ 25] [ 2] [02] +14:37:46 [ 28] [ 9] [D00000000] +14:37:46 [ 32] [ 6] [621354] +14:37:46 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:37:46 [ 37] [ 12] [507904743906] +14:37:46 [ 41] [ 8] [07001000] +14:37:46 [ 42] [ 15] [NATIVE ] +14:37:46 [ 43] [ 40] [LNT Branch02 Namtar LAO] +14:37:46 [ 49] [ 3] [418] +14:37:46 [ 52] [ 16] [8EED4002B97D240C] +14:37:46 ============================================================================ +14:37:46 + + +waiting on router queue for slot.... +14:37:46 Sending to : <4> +14:37:46 ============================================================================ +14:37:47 ============================================================================ +14:37:47 Slot Id : <113> +14:37:47 Transaction Type : RESPONSE +14:37:47 Received From : +14:37:47 ============================================================================ +14:37:47 FNo. Len. Field Value +14:37:47 ============================================================================ +14:37:47 [ 1] [ 4] [0210] +14:37:47 [ 2] [ 16] [6688990603028703] +14:37:47 [ 3] [ 6] [301000] +14:37:47 [ 4] [ 12] [000000000000] +14:37:47 [ 11] [ 6] [772545] +14:37:47 [ 12] [ 6] [143741] +14:37:47 [ 15] [ 4] [0320] +14:37:47 [ 18] [ 4] [6011] +14:37:47 [ 32] [ 6] [621354] +14:37:47 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:37:47 [ 37] [ 12] [507904743906] +14:37:47 [ 38] [ 6] [628323] +14:37:47 [ 39] [ 2] [00] +14:37:47 [ 41] [ 8] [07001000] +14:37:47 [ 49] [ 3] [418] +14:37:47 [ 54] [ 20] [1002418C000542546549] +14:37:47 ============================================================================ +14:37:47 Sending to : +14:37:47 ============================================================================ +14:37:47 + + +waiting on router queue for slot.... +14:37:48 ============================================================================ +14:37:48 Slot Id : <113> +14:37:48 Transaction Type : RESPONSE +14:37:48 Received From : +14:37:48 ============================================================================ +14:37:48 FNo. Len. Field Value +14:37:48 ============================================================================ +14:37:48 [ 1] [ 4] [0210] +14:37:48 [ 2] [ 16] [6688990603028703] +14:37:48 [ 3] [ 6] [301000] +14:37:48 [ 4] [ 12] [000000000000] +14:37:48 [ 11] [ 6] [772545] +14:37:48 [ 12] [ 6] [143741] +14:37:48 [ 15] [ 4] [0320] +14:37:48 [ 18] [ 4] [6011] +14:37:48 [ 32] [ 6] [621354] +14:37:48 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:37:48 [ 37] [ 12] [507904743906] +14:37:48 [ 38] [ 6] [628323] +14:37:48 [ 39] [ 2] [00] +14:37:48 [ 41] [ 8] [07001000] +14:37:48 [ 49] [ 3] [418] +14:37:48 [ 54] [ 20] [1002418C000542546549] +14:37:48 ============================================================================ +14:37:48 Calculate Source COMM Id = 0 +14:37:48 ============================================================================ +14:37:48 + + +waiting on router queue for slot.... +14:37:48 ============================================================================ +14:37:48 Slot Id : <94> +14:37:48 Transaction Type : REQUEST +14:37:48 Received From : +14:37:48 ============================================================================ +14:37:48 FNo. Len. Field Value +14:37:48 ============================================================================ +14:37:48 [ 1] [ 4] [0200] +14:37:48 [ 2] [ 16] [6688990108428804] +14:37:48 [ 3] [ 6] [010000] +14:37:48 [ 4] [ 12] [000100000000] +14:37:48 [ 7] [ 10] [0320143744] +14:37:48 [ 11] [ 6] [772548] +14:37:48 [ 12] [ 6] [143744] +14:37:48 [ 13] [ 4] [0320] +14:37:48 [ 15] [ 4] [0320] +14:37:48 [ 18] [ 4] [6011] +14:37:48 [ 22] [ 3] [900] +14:37:48 [ 25] [ 2] [02] +14:37:48 [ 28] [ 9] [D00002000] +14:37:48 [ 32] [ 6] [621354] +14:37:48 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:37:48 [ 37] [ 12] [507903499497] +14:37:48 [ 41] [ 8] [06002200] +14:37:48 [ 42] [ 15] [NATIVE ] +14:37:48 [ 43] [ 40] [Beng Market Beng LAO] +14:37:48 [ 49] [ 3] [418] +14:37:48 [ 52] [ 16] [822E858D341464BE] +14:37:48 ============================================================================ +14:37:48 + + +waiting on router queue for slot.... +14:37:48 Sending to : +14:37:48 ============================================================================ +14:37:48 Sending to : +14:37:48 ============================================================================ +14:37:49 ============================================================================ +14:37:49 Slot Id : <94> +14:37:49 Transaction Type : REQUEST +14:37:49 Received From : +14:37:49 ============================================================================ +14:37:49 FNo. Len. Field Value +14:37:49 ============================================================================ +14:37:49 [ 1] [ 4] [0200] +14:37:49 [ 2] [ 16] [6688990108428804] +14:37:49 [ 3] [ 6] [010000] +14:37:49 [ 4] [ 12] [000100000000] +14:37:49 [ 7] [ 10] [0320143744] +14:37:49 [ 11] [ 6] [772548] +14:37:49 [ 12] [ 6] [143744] +14:37:49 [ 13] [ 4] [0320] +14:37:49 [ 15] [ 4] [0320] +14:37:49 [ 18] [ 4] [6011] +14:37:49 [ 22] [ 3] [900] +14:37:49 [ 25] [ 2] [02] +14:37:49 [ 28] [ 9] [D00002000] +14:37:49 [ 32] [ 6] [621354] +14:37:49 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:37:49 [ 37] [ 12] [507903499497] +14:37:49 [ 41] [ 8] [06002200] +14:37:49 [ 42] [ 15] [NATIVE ] +14:37:49 [ 43] [ 40] [Beng Market Beng LAO] +14:37:49 [ 49] [ 3] [418] +14:37:49 [ 52] [ 16] [822E858D341464BE] +14:37:49 ============================================================================ +14:37:49 + + +waiting on router queue for slot.... +14:37:49 Sending to : +14:37:49 ============================================================================ +14:37:49 ============================================================================ +14:37:49 Slot Id : <94> +14:37:49 Transaction Type : REQUEST +14:37:49 Received From : +14:37:49 ============================================================================ +14:37:49 FNo. Len. Field Value +14:37:49 ============================================================================ +14:37:49 [ 1] [ 4] [0200] +14:37:49 [ 2] [ 16] [6688990108428804] +14:37:49 [ 3] [ 6] [010000] +14:37:49 [ 4] [ 12] [000100000000] +14:37:49 [ 7] [ 10] [0320143744] +14:37:49 [ 11] [ 6] [772548] +14:37:49 [ 12] [ 6] [143744] +14:37:49 [ 13] [ 4] [0320] +14:37:49 [ 15] [ 4] [0320] +14:37:49 [ 18] [ 4] [6011] +14:37:49 [ 22] [ 3] [900] +14:37:49 [ 25] [ 2] [02] +14:37:49 [ 28] [ 9] [D00002000] +14:37:49 [ 32] [ 6] [621354] +14:37:49 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:37:49 [ 37] [ 12] [507903499497] +14:37:49 [ 41] [ 8] [06002200] +14:37:49 [ 42] [ 15] [NATIVE ] +14:37:49 [ 43] [ 40] [Beng Market Beng LAO] +14:37:49 [ 49] [ 3] [418] +14:37:49 [ 52] [ 16] [BDE320D8418423E6] +14:37:49 ============================================================================ +14:37:49 + + +waiting on router queue for slot.... +14:37:49 Sending to : <4> +14:37:49 ============================================================================ +14:37:50 ============================================================================ +14:37:50 Slot Id : <94> +14:37:50 Transaction Type : RESPONSE +14:37:50 Received From : +14:37:50 ============================================================================ +14:37:50 FNo. Len. Field Value +14:37:50 ============================================================================ +14:37:50 [ 1] [ 4] [0210] +14:37:50 [ 2] [ 16] [6688990108428804] +14:37:50 [ 3] [ 6] [010000] +14:37:50 [ 4] [ 12] [000100000000] +14:37:50 [ 11] [ 6] [772548] +14:37:50 [ 12] [ 6] [143744] +14:37:50 [ 15] [ 4] [0320] +14:37:50 [ 18] [ 4] [6011] +14:37:50 [ 32] [ 6] [621354] +14:37:50 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:37:50 [ 37] [ 12] [507903499497] +14:37:50 [ 38] [ 6] [524225] +14:37:50 [ 39] [ 2] [00] +14:37:50 [ 41] [ 8] [06002200] +14:37:50 [ 49] [ 3] [418] +14:37:50 [ 54] [ 20] [0002418C000142865107] +14:37:50 ============================================================================ +14:37:50 Sending to : +14:37:50 ============================================================================ +14:37:50 + + +waiting on router queue for slot.... +14:37:51 ============================================================================ +14:37:51 Slot Id : <94> +14:37:51 Transaction Type : RESPONSE +14:37:51 Received From : +14:37:51 ============================================================================ +14:37:51 FNo. Len. Field Value +14:37:51 ============================================================================ +14:37:51 [ 1] [ 4] [0210] +14:37:51 [ 2] [ 16] [6688990108428804] +14:37:51 [ 3] [ 6] [010000] +14:37:51 [ 4] [ 12] [000100000000] +14:37:51 [ 11] [ 6] [772548] +14:37:51 [ 12] [ 6] [143744] +14:37:51 [ 15] [ 4] [0320] +14:37:51 [ 18] [ 4] [6011] +14:37:51 [ 32] [ 6] [621354] +14:37:51 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:37:51 [ 37] [ 12] [507903499497] +14:37:51 [ 38] [ 6] [524225] +14:37:51 [ 39] [ 2] [00] +14:37:51 [ 41] [ 8] [06002200] +14:37:51 [ 49] [ 3] [418] +14:37:51 [ 54] [ 20] [0002418C000142865107] +14:37:51 ============================================================================ +14:37:51 Calculate Source COMM Id = 0 +14:37:51 ============================================================================ +14:37:51 + + +waiting on router queue for slot.... +14:37:52 ============================================================================ +14:37:52 Slot Id : <127> +14:37:52 Transaction Type : REQUEST +14:37:52 Received From : +14:37:52 ============================================================================ +14:37:52 FNo. Len. Field Value +14:37:52 ============================================================================ +14:37:52 [ 1] [ 4] [0800] +14:37:52 [ 7] [ 10] [0320073700] +14:37:52 [ 11] [ 6] [156822] +14:37:52 [ 70] [ 3] [301] +14:37:52 ============================================================================ +14:37:52 + + +waiting on router queue for slot.... +14:37:52 Sending to : +14:37:52 ============================================================================ +14:37:52 ============================================================================ +14:37:52 Slot Id : <127> +14:37:52 Transaction Type : RESPONSE +14:37:52 Received From : +14:37:52 ============================================================================ +14:37:52 FNo. Len. Field Value +14:37:52 ============================================================================ +14:37:52 [ 1] [ 4] [0810] +14:37:52 [ 7] [ 10] [0320073700] +14:37:52 [ 11] [ 6] [156822] +14:37:52 [ 39] [ 2] [00] +14:37:52 [ 70] [ 3] [301] +14:37:52 ============================================================================ +14:37:52 Calculate Source COMM Id = 2 +14:37:52 ============================================================================ +14:37:52 + + +waiting on router queue for slot.... +14:37:56 ============================================================================ +14:37:56 Slot Id : <75> +14:37:56 Transaction Type : REQUEST +14:37:56 Received From : +14:37:56 ============================================================================ +14:37:56 FNo. Len. Field Value +14:37:56 ============================================================================ +14:37:56 [ 1] [ 4] [0800] +14:37:56 [ 2] [ 5] [02531] +14:37:56 [ 3] [ 6] [579148] +14:37:56 [ 7] [ 10] [0320073756] +14:37:56 [ 11] [ 6] [807261] +14:37:56 [ 15] [ 10] [0320073756] +14:37:56 [ 37] [ 11] [57914807261] +14:37:56 [ 70] [ 3] [001] +14:37:56 ============================================================================ +14:37:56 + + +waiting on router queue for slot.... +14:37:56 ============================================================================ +14:37:56 Slot Id : <75> +14:37:56 Transaction Type : RESPONSE +14:37:56 Received From : +14:37:56 ============================================================================ +14:37:56 FNo. Len. Field Value +14:37:56 ============================================================================ +14:37:56 [ 1] [ 4] [0810] +14:37:56 [ 7] [ 10] [0320073756] +14:37:56 [ 11] [ 6] [807261] +14:37:56 [ 15] [ 4] [0320] +14:37:56 [ 37] [ 12] [57914807261] +14:37:56 [ 39] [ 2] [00] +14:37:56 [ 70] [ 3] [001] +14:37:56 ============================================================================ +14:37:56 Sending to : +14:37:56 ============================================================================ +14:37:56 + + +waiting on router queue for slot.... +14:38:03 ============================================================================ +14:38:03 Slot Id : <95> +14:38:03 Transaction Type : REQUEST +14:38:03 Received From : +14:38:03 ============================================================================ +14:38:03 FNo. Len. Field Value +14:38:03 ============================================================================ +14:38:03 [ 1] [ 4] [0800] +14:38:03 [ 7] [ 10] [0320073710] +14:38:03 [ 11] [ 6] [156823] +14:38:03 [ 70] [ 3] [301] +14:38:03 ============================================================================ +14:38:03 + + +waiting on router queue for slot.... +14:38:03 Sending to : +14:38:03 ============================================================================ +14:38:03 ============================================================================ +14:38:03 Slot Id : <95> +14:38:03 Transaction Type : RESPONSE +14:38:03 Received From : +14:38:03 ============================================================================ +14:38:03 FNo. Len. Field Value +14:38:03 ============================================================================ +14:38:03 [ 1] [ 4] [0810] +14:38:03 [ 7] [ 10] [0320073710] +14:38:03 [ 11] [ 6] [156823] +14:38:03 [ 39] [ 2] [00] +14:38:03 [ 70] [ 3] [301] +14:38:03 ============================================================================ +14:38:03 Calculate Source COMM Id = 2 +14:38:03 ============================================================================ +14:38:03 + + +waiting on router queue for slot.... +14:38:07 ============================================================================ +14:38:07 Slot Id : <53> +14:38:07 Transaction Type : REQUEST +14:38:07 Received From : +14:38:07 ============================================================================ +14:38:07 FNo. Len. Field Value +14:38:07 ============================================================================ +14:38:07 [ 1] [ 4] [0200] +14:38:07 [ 2] [ 16] [6688990040120675] +14:38:07 [ 3] [ 6] [010000] +14:38:07 [ 4] [ 12] [000100000000] +14:38:07 [ 7] [ 10] [0320143802] +14:38:07 [ 11] [ 6] [772605] +14:38:07 [ 12] [ 6] [143802] +14:38:07 [ 13] [ 4] [0320] +14:38:07 [ 15] [ 4] [0320] +14:38:07 [ 18] [ 4] [6011] +14:38:07 [ 22] [ 3] [900] +14:38:07 [ 25] [ 2] [02] +14:38:07 [ 28] [ 9] [D00002000] +14:38:07 [ 32] [ 6] [621354] +14:38:07 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:38:07 [ 37] [ 12] [507904719671] +14:38:07 [ 41] [ 8] [18001000] +14:38:07 [ 42] [ 15] [NATIVE ] +14:38:07 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:38:07 [ 49] [ 3] [418] +14:38:07 [ 52] [ 16] [A6041F96050175F3] +14:38:07 ============================================================================ +14:38:07 + + +waiting on router queue for slot.... +14:38:07 Sending to : +14:38:07 ============================================================================ +14:38:07 Sending to : +14:38:07 ============================================================================ +14:38:07 ============================================================================ +14:38:07 Slot Id : <53> +14:38:07 Transaction Type : REQUEST +14:38:07 Received From : +14:38:07 ============================================================================ +14:38:07 FNo. Len. Field Value +14:38:07 ============================================================================ +14:38:07 [ 1] [ 4] [0200] +14:38:07 [ 2] [ 16] [6688990040120675] +14:38:07 [ 3] [ 6] [010000] +14:38:07 [ 4] [ 12] [000100000000] +14:38:07 [ 7] [ 10] [0320143802] +14:38:07 [ 11] [ 6] [772605] +14:38:07 [ 12] [ 6] [143802] +14:38:07 [ 13] [ 4] [0320] +14:38:07 [ 15] [ 4] [0320] +14:38:07 [ 18] [ 4] [6011] +14:38:07 [ 22] [ 3] [900] +14:38:07 [ 25] [ 2] [02] +14:38:07 [ 28] [ 9] [D00002000] +14:38:07 [ 32] [ 6] [621354] +14:38:07 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:38:07 [ 37] [ 12] [507904719671] +14:38:07 [ 41] [ 8] [18001000] +14:38:07 [ 42] [ 15] [NATIVE ] +14:38:07 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:38:07 [ 49] [ 3] [418] +14:38:07 [ 52] [ 16] [A6041F96050175F3] +14:38:07 ============================================================================ +14:38:07 + + +waiting on router queue for slot.... +14:38:07 Sending to : +14:38:07 ============================================================================ +14:38:07 ============================================================================ +14:38:07 Slot Id : <53> +14:38:07 Transaction Type : REQUEST +14:38:07 Received From : +14:38:07 ============================================================================ +14:38:07 FNo. Len. Field Value +14:38:07 ============================================================================ +14:38:07 [ 1] [ 4] [0200] +14:38:07 [ 2] [ 16] [6688990040120675] +14:38:07 [ 3] [ 6] [010000] +14:38:07 [ 4] [ 12] [000100000000] +14:38:07 [ 7] [ 10] [0320143802] +14:38:07 [ 11] [ 6] [772605] +14:38:07 [ 12] [ 6] [143802] +14:38:07 [ 13] [ 4] [0320] +14:38:07 [ 15] [ 4] [0320] +14:38:07 [ 18] [ 4] [6011] +14:38:07 [ 22] [ 3] [900] +14:38:07 [ 25] [ 2] [02] +14:38:07 [ 28] [ 9] [D00002000] +14:38:07 [ 32] [ 6] [621354] +14:38:07 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:38:07 [ 37] [ 12] [507904719671] +14:38:07 [ 41] [ 8] [18001000] +14:38:07 [ 42] [ 15] [NATIVE ] +14:38:07 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:38:07 [ 49] [ 3] [418] +14:38:07 [ 52] [ 16] [03880449A9B4CDB6] +14:38:07 ============================================================================ +14:38:07 + + +waiting on router queue for slot.... +14:38:07 Sending to : <4> +14:38:07 ============================================================================ +14:38:08 ============================================================================ +14:38:08 Slot Id : <53> +14:38:08 Transaction Type : RESPONSE +14:38:08 Received From : +14:38:08 ============================================================================ +14:38:08 FNo. Len. Field Value +14:38:08 ============================================================================ +14:38:08 [ 1] [ 4] [0210] +14:38:08 [ 2] [ 16] [6688990040120675] +14:38:08 [ 3] [ 6] [010000] +14:38:08 [ 4] [ 12] [000100000000] +14:38:08 [ 11] [ 6] [772605] +14:38:08 [ 12] [ 6] [143802] +14:38:08 [ 15] [ 4] [0320] +14:38:08 [ 18] [ 4] [6011] +14:38:08 [ 32] [ 6] [621354] +14:38:08 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:38:08 [ 37] [ 12] [507904719671] +14:38:08 [ 38] [ 6] [706565] +14:38:08 [ 39] [ 2] [00] +14:38:08 [ 41] [ 8] [18001000] +14:38:08 [ 49] [ 3] [418] +14:38:08 [ 54] [ 20] [0002418C000170163051] +14:38:08 ============================================================================ +14:38:08 Sending to : +14:38:08 ============================================================================ +14:38:08 + + +waiting on router queue for slot.... +14:38:09 ============================================================================ +14:38:09 Slot Id : <53> +14:38:09 Transaction Type : RESPONSE +14:38:09 Received From : +14:38:09 ============================================================================ +14:38:09 FNo. Len. Field Value +14:38:09 ============================================================================ +14:38:09 [ 1] [ 4] [0210] +14:38:09 [ 2] [ 16] [6688990040120675] +14:38:09 [ 3] [ 6] [010000] +14:38:09 [ 4] [ 12] [000100000000] +14:38:09 [ 11] [ 6] [772605] +14:38:09 [ 12] [ 6] [143802] +14:38:09 [ 15] [ 4] [0320] +14:38:09 [ 18] [ 4] [6011] +14:38:09 [ 32] [ 6] [621354] +14:38:09 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:38:09 [ 37] [ 12] [507904719671] +14:38:09 [ 38] [ 6] [706565] +14:38:09 [ 39] [ 2] [00] +14:38:09 [ 41] [ 8] [18001000] +14:38:09 [ 49] [ 3] [418] +14:38:09 [ 54] [ 20] [0002418C000170163051] +14:38:09 ============================================================================ +14:38:09 Calculate Source COMM Id = 0 +14:38:09 ============================================================================ +14:38:09 + + +waiting on router queue for slot.... +14:38:12 ============================================================================ +14:38:12 Slot Id : <125> +14:38:12 Transaction Type : REQUEST +14:38:12 Received From : +14:38:12 ============================================================================ +14:38:12 FNo. Len. Field Value +14:38:12 ============================================================================ +14:38:12 [ 1] [ 4] [0200] +14:38:12 [ 2] [ 16] [6213544001687026] +14:38:12 [ 3] [ 6] [011000] +14:38:12 [ 4] [ 12] [000030000000] +14:38:12 [ 7] [ 10] [0320073718] +14:38:12 [ 11] [ 6] [269726] +14:38:12 [ 12] [ 6] [143718] +14:38:12 [ 13] [ 4] [0320] +14:38:12 [ 14] [ 4] [4912] +14:38:12 [ 15] [ 4] [0320] +14:38:12 [ 18] [ 4] [6011] +14:38:12 [ 19] [ 3] [418] +14:38:12 [ 22] [ 3] [021] +14:38:12 [ 25] [ 2] [01] +14:38:12 [ 28] [ 9] [D00002000] +14:38:12 [ 32] [ 6] [180893] +14:38:12 [ 35] [ 32] [6213544001687026=491212018702110] +14:38:12 [ 37] [ 12] [507907269726] +14:38:12 [ 41] [ 8] [0141HQBR] +14:38:12 [ 42] [ 15] [999999 ] +14:38:12 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +14:38:12 [ 49] [ 3] [418] +14:38:12 [ 52] [ 16] [C6ACE9F9FD55AE97] +14:38:12 ============================================================================ +14:38:12 + + +waiting on router queue for slot.... +14:38:12 Sending to : +14:38:12 ============================================================================ +14:38:12 Sending to : +14:38:12 ============================================================================ +14:38:12 ============================================================================ +14:38:12 Slot Id : <125> +14:38:12 Transaction Type : REQUEST +14:38:12 Received From : +14:38:12 ============================================================================ +14:38:12 FNo. Len. Field Value +14:38:12 ============================================================================ +14:38:12 [ 1] [ 4] [0200] +14:38:12 [ 2] [ 16] [6213544001687026] +14:38:12 [ 3] [ 6] [011000] +14:38:12 [ 4] [ 12] [000030000000] +14:38:12 [ 7] [ 10] [0320073718] +14:38:12 [ 11] [ 6] [269726] +14:38:12 [ 12] [ 6] [143718] +14:38:12 [ 13] [ 4] [0320] +14:38:12 [ 14] [ 4] [4912] +14:38:12 [ 15] [ 4] [0320] +14:38:12 [ 18] [ 4] [6011] +14:38:12 [ 19] [ 3] [418] +14:38:12 [ 22] [ 3] [021] +14:38:12 [ 25] [ 2] [01] +14:38:12 [ 28] [ 9] [D00002000] +14:38:12 [ 32] [ 6] [180893] +14:38:12 [ 35] [ 32] [6213544001687026=491212018702110] +14:38:12 [ 37] [ 12] [507907269726] +14:38:12 [ 41] [ 8] [0141HQBR] +14:38:12 [ 42] [ 15] [999999 ] +14:38:12 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +14:38:12 [ 49] [ 3] [418] +14:38:12 [ 52] [ 16] [C6ACE9F9FD55AE97] +14:38:12 ============================================================================ +14:38:12 + + +waiting on router queue for slot.... +14:38:12 Sending to : +14:38:12 ============================================================================ +14:38:12 ============================================================================ +14:38:12 Slot Id : <125> +14:38:12 Transaction Type : REQUEST +14:38:12 Received From : +14:38:12 ============================================================================ +14:38:12 FNo. Len. Field Value +14:38:12 ============================================================================ +14:38:12 [ 1] [ 4] [0200] +14:38:12 [ 2] [ 16] [6213544001687026] +14:38:12 [ 3] [ 6] [011000] +14:38:12 [ 4] [ 12] [000030000000] +14:38:12 [ 7] [ 10] [0320073718] +14:38:12 [ 11] [ 6] [269726] +14:38:12 [ 12] [ 6] [143718] +14:38:12 [ 13] [ 4] [0320] +14:38:12 [ 14] [ 4] [4912] +14:38:12 [ 15] [ 4] [0320] +14:38:12 [ 18] [ 4] [6011] +14:38:12 [ 19] [ 3] [418] +14:38:12 [ 22] [ 3] [021] +14:38:12 [ 25] [ 2] [01] +14:38:12 [ 28] [ 9] [D00002000] +14:38:12 [ 32] [ 6] [180893] +14:38:12 [ 35] [ 32] [6213544001687026=491212018702110] +14:38:12 [ 37] [ 12] [507907269726] +14:38:12 [ 41] [ 8] [0141HQBR] +14:38:12 [ 42] [ 15] [999999 ] +14:38:12 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +14:38:12 [ 49] [ 3] [418] +14:38:12 [ 52] [ 16] [E8777E3E2D762058] +14:38:12 ============================================================================ +14:38:12 + + +waiting on router queue for slot.... +14:38:12 Sending to : <0> +14:38:12 ============================================================================ +14:38:13 ============================================================================ +14:38:13 Slot Id : <125> +14:38:13 Transaction Type : RESPONSE +14:38:13 Received From : +14:38:13 ============================================================================ +14:38:13 FNo. Len. Field Value +14:38:13 ============================================================================ +14:38:13 [ 1] [ 4] [0210] +14:38:13 [ 2] [ 16] [6213544001687026] +14:38:13 [ 3] [ 6] [011000] +14:38:13 [ 4] [ 12] [000030000000] +14:38:13 [ 7] [ 10] [0320073718] +14:38:13 [ 11] [ 6] [269726] +14:38:13 [ 12] [ 6] [143718] +14:38:13 [ 13] [ 4] [0320] +14:38:13 [ 15] [ 4] [0320] +14:38:13 [ 18] [ 4] [6011] +14:38:13 [ 19] [ 3] [418] +14:38:13 [ 32] [ 6] [180893] +14:38:13 [ 35] [ 32] [6213544001687026=491212018702110] +14:38:13 [ 37] [ 12] [507907269726] +14:38:13 [ 38] [ 6] [976418] +14:38:13 [ 39] [ 2] [00] +14:38:13 [ 41] [ 8] [0141HQBR] +14:38:13 [ 49] [ 3] [418] +14:38:13 [ 54] [ 40] [1001418C0012680072501002418C001268007250] +14:38:13 ============================================================================ +14:38:13 Sending to : +14:38:13 ============================================================================ +14:38:13 + + +waiting on router queue for slot.... +14:38:14 ============================================================================ +14:38:14 Slot Id : <98> +14:38:14 Transaction Type : REQUEST +14:38:14 Received From : +14:38:14 ============================================================================ +14:38:14 FNo. Len. Field Value +14:38:14 ============================================================================ +14:38:14 [ 1] [ 4] [0800] +14:38:14 [ 7] [ 10] [0320073720] +14:38:14 [ 11] [ 6] [156824] +14:38:14 [ 70] [ 3] [301] +14:38:14 ============================================================================ +14:38:14 + + +waiting on router queue for slot.... +14:38:14 Sending to : +14:38:14 ============================================================================ +14:38:14 ============================================================================ +14:38:14 Slot Id : <98> +14:38:14 Transaction Type : RESPONSE +14:38:14 Received From : +14:38:14 ============================================================================ +14:38:14 FNo. Len. Field Value +14:38:14 ============================================================================ +14:38:14 [ 1] [ 4] [0810] +14:38:14 [ 7] [ 10] [0320073720] +14:38:14 [ 11] [ 6] [156824] +14:38:14 [ 39] [ 2] [00] +14:38:14 [ 70] [ 3] [301] +14:38:14 ============================================================================ +14:38:14 Calculate Source COMM Id = 2 +14:38:14 ============================================================================ +14:38:14 + + +waiting on router queue for slot.... +14:38:14 ============================================================================ +14:38:14 Slot Id : <125> +14:38:14 Transaction Type : RESPONSE +14:38:14 Received From : +14:38:14 ============================================================================ +14:38:14 FNo. Len. Field Value +14:38:14 ============================================================================ +14:38:14 [ 1] [ 4] [0210] +14:38:14 [ 2] [ 16] [6213544001687026] +14:38:14 [ 3] [ 6] [011000] +14:38:14 [ 4] [ 12] [000030000000] +14:38:14 [ 7] [ 10] [0320073718] +14:38:14 [ 11] [ 6] [269726] +14:38:14 [ 12] [ 6] [143718] +14:38:14 [ 13] [ 4] [0320] +14:38:14 [ 15] [ 4] [0320] +14:38:14 [ 18] [ 4] [6011] +14:38:14 [ 19] [ 3] [418] +14:38:14 [ 32] [ 6] [180893] +14:38:14 [ 35] [ 32] [6213544001687026=491212018702110] +14:38:14 [ 37] [ 12] [507907269726] +14:38:14 [ 38] [ 6] [976418] +14:38:14 [ 39] [ 2] [00] +14:38:14 [ 41] [ 8] [0141HQBR] +14:38:14 [ 49] [ 3] [418] +14:38:14 [ 54] [ 40] [1001418C0012680072501002418C001268007250] +14:38:14 ============================================================================ +14:38:14 Calculate Source COMM Id = 2 +14:38:14 ============================================================================ +14:38:14 + + +waiting on router queue for slot.... +14:38:24 ============================================================================ +14:38:24 Slot Id : <134> +14:38:24 Transaction Type : REQUEST +14:38:24 Received From : +14:38:24 ============================================================================ +14:38:24 FNo. Len. Field Value +14:38:24 ============================================================================ +14:38:24 [ 1] [ 4] [0800] +14:38:24 [ 7] [ 10] [0320215013] +14:38:24 [ 11] [ 6] [145013] +14:38:24 [ 37] [ 12] [57914145013] +14:38:24 [ 70] [ 3] [301] +14:38:24 ============================================================================ +14:38:24 + + +waiting on router queue for slot.... +14:38:24 Sending to : +14:38:24 ============================================================================ +14:38:24 ============================================================================ +14:38:24 Slot Id : <134> +14:38:24 Transaction Type : RESPONSE +14:38:24 Received From : +14:38:24 ============================================================================ +14:38:24 FNo. Len. Field Value +14:38:24 ============================================================================ +14:38:24 [ 1] [ 4] [0810] +14:38:24 [ 7] [ 10] [0320215013] +14:38:24 [ 11] [ 6] [145013] +14:38:24 [ 37] [ 12] [579141450130] +14:38:24 [ 39] [ 2] [00] +14:38:24 [ 70] [ 3] [810] +14:38:24 ============================================================================ +14:38:24 Calculate Source COMM Id = 6 +14:38:24 ============================================================================ +14:38:24 + + +waiting on router queue for slot.... +14:38:29 ============================================================================ +14:38:29 Slot Id : <103> +14:38:29 Transaction Type : REQUEST +14:38:29 Received From : +14:38:29 ============================================================================ +14:38:29 FNo. Len. Field Value +14:38:29 ============================================================================ +14:38:29 [ 1] [ 4] [0800] +14:38:29 [ 7] [ 10] [0320073737] +14:38:29 [ 11] [ 6] [156825] +14:38:29 [ 70] [ 3] [301] +14:38:29 ============================================================================ +14:38:29 + + +waiting on router queue for slot.... +14:38:29 Sending to : +14:38:29 ============================================================================ +14:38:29 ============================================================================ +14:38:29 Slot Id : <103> +14:38:29 Transaction Type : RESPONSE +14:38:29 Received From : +14:38:29 ============================================================================ +14:38:29 FNo. Len. Field Value +14:38:29 ============================================================================ +14:38:29 [ 1] [ 4] [0810] +14:38:29 [ 7] [ 10] [0320073737] +14:38:29 [ 11] [ 6] [156825] +14:38:29 [ 39] [ 2] [00] +14:38:29 [ 70] [ 3] [301] +14:38:29 ============================================================================ +14:38:29 Calculate Source COMM Id = 2 +14:38:29 ============================================================================ +14:38:29 + + +waiting on router queue for slot.... +14:38:33 ============================================================================ +14:38:33 Slot Id : <101> +14:38:33 Transaction Type : REQUEST +14:38:33 Received From : +14:38:33 ============================================================================ +14:38:33 FNo. Len. Field Value +14:38:33 ============================================================================ +14:38:33 [ 1] [ 4] [0200] +14:38:33 [ 2] [ 16] [6688990103743801] +14:38:33 [ 3] [ 6] [010000] +14:38:33 [ 4] [ 12] [000050000000] +14:38:33 [ 7] [ 10] [0320073740] +14:38:33 [ 11] [ 6] [269730] +14:38:33 [ 12] [ 6] [143740] +14:38:33 [ 13] [ 4] [0320] +14:38:33 [ 14] [ 4] [4302] +14:38:33 [ 15] [ 4] [0320] +14:38:33 [ 18] [ 4] [6011] +14:38:33 [ 19] [ 3] [418] +14:38:33 [ 22] [ 3] [021] +14:38:33 [ 25] [ 2] [01] +14:38:33 [ 28] [ 9] [D00002000] +14:38:33 [ 32] [ 6] [180893] +14:38:33 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:38:33 [ 37] [ 12] [507907269730] +14:38:33 [ 41] [ 8] [0221XKKM] +14:38:33 [ 42] [ 15] [999999 ] +14:38:33 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:38:33 [ 49] [ 3] [418] +14:38:33 [ 52] [ 16] [1777F3726DC8CD62] +14:38:33 ============================================================================ +14:38:33 + + +waiting on router queue for slot.... +14:38:33 Sending to : +14:38:33 ============================================================================ +14:38:33 Sending to : +14:38:33 ============================================================================ +14:38:33 ============================================================================ +14:38:33 Slot Id : <101> +14:38:33 Transaction Type : REQUEST +14:38:33 Received From : +14:38:33 ============================================================================ +14:38:33 FNo. Len. Field Value +14:38:33 ============================================================================ +14:38:33 [ 1] [ 4] [0200] +14:38:33 [ 2] [ 16] [6688990103743801] +14:38:33 [ 3] [ 6] [010000] +14:38:33 [ 4] [ 12] [000050000000] +14:38:33 [ 7] [ 10] [0320073740] +14:38:33 [ 11] [ 6] [269730] +14:38:33 [ 12] [ 6] [143740] +14:38:33 [ 13] [ 4] [0320] +14:38:33 [ 14] [ 4] [4302] +14:38:33 [ 15] [ 4] [0320] +14:38:33 [ 18] [ 4] [6011] +14:38:33 [ 19] [ 3] [418] +14:38:33 [ 22] [ 3] [021] +14:38:33 [ 25] [ 2] [01] +14:38:33 [ 28] [ 9] [D00002000] +14:38:33 [ 32] [ 6] [180893] +14:38:33 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:38:33 [ 37] [ 12] [507907269730] +14:38:33 [ 41] [ 8] [0221XKKM] +14:38:33 [ 42] [ 15] [999999 ] +14:38:33 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:38:33 [ 49] [ 3] [418] +14:38:33 [ 52] [ 16] [1777F3726DC8CD62] +14:38:33 ============================================================================ +14:38:33 + + +waiting on router queue for slot.... +14:38:33 Sending to : +14:38:33 ============================================================================ +14:38:33 ============================================================================ +14:38:33 Slot Id : <101> +14:38:33 Transaction Type : REQUEST +14:38:33 Received From : +14:38:33 ============================================================================ +14:38:33 FNo. Len. Field Value +14:38:33 ============================================================================ +14:38:33 [ 1] [ 4] [0200] +14:38:33 [ 2] [ 16] [6688990103743801] +14:38:33 [ 3] [ 6] [010000] +14:38:33 [ 4] [ 12] [000050000000] +14:38:33 [ 7] [ 10] [0320073740] +14:38:33 [ 11] [ 6] [269730] +14:38:33 [ 12] [ 6] [143740] +14:38:33 [ 13] [ 4] [0320] +14:38:33 [ 14] [ 4] [4302] +14:38:33 [ 15] [ 4] [0320] +14:38:33 [ 18] [ 4] [6011] +14:38:33 [ 19] [ 3] [418] +14:38:33 [ 22] [ 3] [021] +14:38:33 [ 25] [ 2] [01] +14:38:33 [ 28] [ 9] [D00002000] +14:38:33 [ 32] [ 6] [180893] +14:38:33 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:38:33 [ 37] [ 12] [507907269730] +14:38:33 [ 41] [ 8] [0221XKKM] +14:38:33 [ 42] [ 15] [999999 ] +14:38:33 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:38:33 [ 49] [ 3] [418] +14:38:33 [ 52] [ 16] [DC473392EDA7F48C] +14:38:33 ============================================================================ +14:38:33 + + +waiting on router queue for slot.... +14:38:33 Sending to : <0> +14:38:33 ============================================================================ +14:38:33 ============================================================================ +14:38:33 Slot Id : <101> +14:38:33 Transaction Type : RESPONSE +14:38:33 Received From : +14:38:33 ============================================================================ +14:38:33 FNo. Len. Field Value +14:38:33 ============================================================================ +14:38:33 [ 1] [ 4] [0210] +14:38:33 [ 2] [ 16] [6688990103743801] +14:38:33 [ 3] [ 6] [010000] +14:38:33 [ 4] [ 12] [000050000000] +14:38:33 [ 7] [ 10] [0320073740] +14:38:33 [ 11] [ 6] [269730] +14:38:33 [ 12] [ 6] [143740] +14:38:33 [ 13] [ 4] [0320] +14:38:33 [ 15] [ 4] [0320] +14:38:33 [ 18] [ 4] [6011] +14:38:33 [ 19] [ 3] [418] +14:38:33 [ 22] [ 3] [021] +14:38:33 [ 32] [ 6] [180893] +14:38:33 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:38:33 [ 37] [ 12] [507907269730] +14:38:33 [ 39] [ 2] [14] +14:38:33 [ 41] [ 8] [0221XKKM] +14:38:33 [ 49] [ 3] [418] +14:38:33 ============================================================================ +14:38:33 Sending to : +14:38:33 ============================================================================ +14:38:33 + + +waiting on router queue for slot.... +14:38:34 ============================================================================ +14:38:34 Slot Id : <101> +14:38:34 Transaction Type : RESPONSE +14:38:34 Received From : +14:38:34 ============================================================================ +14:38:34 FNo. Len. Field Value +14:38:34 ============================================================================ +14:38:34 [ 1] [ 4] [0210] +14:38:34 [ 2] [ 16] [6688990103743801] +14:38:34 [ 3] [ 6] [010000] +14:38:34 [ 4] [ 12] [000050000000] +14:38:34 [ 7] [ 10] [0320073740] +14:38:34 [ 11] [ 6] [269730] +14:38:34 [ 12] [ 6] [143740] +14:38:34 [ 13] [ 4] [0320] +14:38:34 [ 15] [ 4] [0320] +14:38:34 [ 18] [ 4] [6011] +14:38:34 [ 19] [ 3] [418] +14:38:34 [ 22] [ 3] [021] +14:38:34 [ 32] [ 6] [180893] +14:38:34 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:38:34 [ 37] [ 12] [507907269730] +14:38:34 [ 39] [ 2] [14] +14:38:34 [ 41] [ 8] [0221XKKM] +14:38:34 [ 49] [ 3] [418] +14:38:34 ============================================================================ +14:38:34 Calculate Source COMM Id = 2 +14:38:34 ============================================================================ +14:38:34 + + +waiting on router queue for slot.... +14:38:36 ============================================================================ +14:38:36 Slot Id : <96> +14:38:36 Transaction Type : REQUEST +14:38:36 Received From : +14:38:36 ============================================================================ +14:38:36 FNo. Len. Field Value +14:38:36 ============================================================================ +14:38:36 [ 1] [ 4] [0200] +14:38:36 [ 2] [ 16] [1808930100005743] +14:38:36 [ 3] [ 6] [011000] +14:38:36 [ 4] [ 12] [000020000000] +14:38:36 [ 7] [ 10] [0320143831] +14:38:36 [ 11] [ 6] [772685] +14:38:36 [ 12] [ 6] [143831] +14:38:36 [ 13] [ 4] [0320] +14:38:36 [ 15] [ 4] [0320] +14:38:36 [ 18] [ 4] [6011] +14:38:36 [ 22] [ 3] [900] +14:38:36 [ 25] [ 2] [02] +14:38:36 [ 28] [ 9] [D00002000] +14:38:36 [ 32] [ 6] [621354] +14:38:36 [ 35] [ 27] [1808930100005743=1803500041] +14:38:36 [ 37] [ 12] [507903587147] +14:38:36 [ 41] [ 8] [09001500] +14:38:36 [ 42] [ 15] [NATIVE ] +14:38:36 [ 43] [ 40] [Friendship Bridge Xaythany LAO] +14:38:36 [ 49] [ 3] [418] +14:38:36 [ 52] [ 16] [200816DD7EABB815] +14:38:36 ============================================================================ +14:38:36 + + +waiting on router queue for slot.... +14:38:36 Sending to : +14:38:36 ============================================================================ +14:38:36 Sending to : +14:38:36 ============================================================================ +14:38:36 ============================================================================ +14:38:36 Slot Id : <96> +14:38:36 Transaction Type : REQUEST +14:38:36 Received From : +14:38:36 ============================================================================ +14:38:36 FNo. Len. Field Value +14:38:36 ============================================================================ +14:38:36 [ 1] [ 4] [0200] +14:38:36 [ 2] [ 16] [1808930100005743] +14:38:36 [ 3] [ 6] [011000] +14:38:36 [ 4] [ 12] [000020000000] +14:38:36 [ 7] [ 10] [0320143831] +14:38:36 [ 11] [ 6] [772685] +14:38:36 [ 12] [ 6] [143831] +14:38:36 [ 13] [ 4] [0320] +14:38:36 [ 15] [ 4] [0320] +14:38:36 [ 18] [ 4] [6011] +14:38:36 [ 22] [ 3] [900] +14:38:36 [ 25] [ 2] [02] +14:38:36 [ 28] [ 9] [D00002000] +14:38:36 [ 32] [ 6] [621354] +14:38:36 [ 35] [ 27] [1808930100005743=1803500041] +14:38:36 [ 37] [ 12] [507903587147] +14:38:36 [ 41] [ 8] [09001500] +14:38:36 [ 42] [ 15] [NATIVE ] +14:38:36 [ 43] [ 40] [Friendship Bridge Xaythany LAO] +14:38:36 [ 49] [ 3] [418] +14:38:36 [ 52] [ 16] [200816DD7EABB815] +14:38:36 ============================================================================ +14:38:36 + + +waiting on router queue for slot.... +14:38:36 Sending to : +14:38:36 ============================================================================ +14:38:36 ============================================================================ +14:38:36 Slot Id : <96> +14:38:36 Transaction Type : REQUEST +14:38:36 Received From : +14:38:36 ============================================================================ +14:38:36 FNo. Len. Field Value +14:38:36 ============================================================================ +14:38:36 [ 1] [ 4] [0200] +14:38:36 [ 2] [ 16] [1808930100005743] +14:38:36 [ 3] [ 6] [011000] +14:38:36 [ 4] [ 12] [000020000000] +14:38:36 [ 7] [ 10] [0320143831] +14:38:36 [ 11] [ 6] [772685] +14:38:36 [ 12] [ 6] [143831] +14:38:36 [ 13] [ 4] [0320] +14:38:36 [ 15] [ 4] [0320] +14:38:36 [ 18] [ 4] [6011] +14:38:36 [ 22] [ 3] [900] +14:38:36 [ 25] [ 2] [02] +14:38:36 [ 28] [ 9] [D00002000] +14:38:36 [ 32] [ 6] [621354] +14:38:36 [ 35] [ 27] [1808930100005743=1803500041] +14:38:36 [ 37] [ 12] [507903587147] +14:38:36 [ 41] [ 8] [09001500] +14:38:36 [ 42] [ 15] [NATIVE ] +14:38:36 [ 43] [ 40] [Friendship Bridge Xaythany LAO] +14:38:36 [ 49] [ 3] [418] +14:38:36 [ 52] [ 16] [00A36486FD261AF9] +14:38:36 ============================================================================ +14:38:36 + + +waiting on router queue for slot.... +14:38:36 Sending to : <2> +14:38:36 ============================================================================ +14:38:39 ============================================================================ +14:38:39 Slot Id : <96> +14:38:39 Transaction Type : RESPONSE +14:38:39 Received From : +14:38:39 ============================================================================ +14:38:39 FNo. Len. Field Value +14:38:39 ============================================================================ +14:38:39 [ 1] [ 4] [0210] +14:38:39 [ 2] [ 16] [1808930100005743] +14:38:39 [ 3] [ 6] [011000] +14:38:39 [ 4] [ 12] [000020000000] +14:38:39 [ 6] [ 12] [000020000000] +14:38:39 [ 7] [ 10] [0320143831] +14:38:39 [ 11] [ 6] [772685] +14:38:39 [ 12] [ 6] [143831] +14:38:39 [ 13] [ 4] [0320] +14:38:39 [ 18] [ 4] [6011] +14:38:39 [ 19] [ 3] [418] +14:38:39 [ 22] [ 3] [021] +14:38:39 [ 32] [ 6] [621354] +14:38:39 [ 35] [ 27] [1808930100005743=1803500041] +14:38:39 [ 37] [ 12] [507903587147] +14:38:39 [ 38] [ 6] [772685] +14:38:39 [ 39] [ 2] [00] +14:38:39 [ 41] [ 8] [09001500] +14:38:39 [ 49] [ 3] [418] +14:38:39 [ 52] [ 16] [00A36486FD261AF9] +14:38:39 [ 54] [ 20] [1001418C000017100000] +14:38:39 ============================================================================ +14:38:39 Sending to : +14:38:39 ============================================================================ +14:38:39 + + +waiting on router queue for slot.... +14:38:41 ============================================================================ +14:38:41 Slot Id : <96> +14:38:41 Transaction Type : RESPONSE +14:38:41 Received From : +14:38:41 ============================================================================ +14:38:41 FNo. Len. Field Value +14:38:41 ============================================================================ +14:38:41 [ 1] [ 4] [0210] +14:38:41 [ 2] [ 16] [1808930100005743] +14:38:41 [ 3] [ 6] [011000] +14:38:41 [ 4] [ 12] [000020000000] +14:38:41 [ 6] [ 12] [000020000000] +14:38:41 [ 7] [ 10] [0320143831] +14:38:41 [ 11] [ 6] [772685] +14:38:41 [ 12] [ 6] [143831] +14:38:41 [ 13] [ 4] [0320] +14:38:41 [ 18] [ 4] [6011] +14:38:41 [ 19] [ 3] [418] +14:38:41 [ 22] [ 3] [021] +14:38:41 [ 32] [ 6] [621354] +14:38:41 [ 35] [ 27] [1808930100005743=1803500041] +14:38:41 [ 37] [ 12] [507903587147] +14:38:41 [ 38] [ 6] [772685] +14:38:41 [ 39] [ 2] [00] +14:38:41 [ 41] [ 8] [09001500] +14:38:41 [ 49] [ 3] [418] +14:38:41 [ 52] [ 16] [00A36486FD261AF9] +14:38:41 [ 54] [ 20] [1001418C000017100000] +14:38:41 ============================================================================ +14:38:41 Calculate Source COMM Id = 0 +14:38:41 ============================================================================ +14:38:41 + + +waiting on router queue for slot.... +14:38:53 ============================================================================ +14:38:53 Slot Id : <77> +14:38:53 Transaction Type : REQUEST +14:38:53 Received From : +14:38:53 ============================================================================ +14:38:53 FNo. Len. Field Value +14:38:53 ============================================================================ +14:38:53 [ 1] [ 4] [0800] +14:38:53 [ 7] [ 10] [0320073758] +14:38:53 [ 11] [ 6] [156826] +14:38:53 [ 70] [ 3] [301] +14:38:53 ============================================================================ +14:38:53 + + +waiting on router queue for slot.... +14:38:53 Sending to : +14:38:53 ============================================================================ +14:38:53 ============================================================================ +14:38:53 Slot Id : <77> +14:38:53 Transaction Type : RESPONSE +14:38:53 Received From : +14:38:53 ============================================================================ +14:38:53 FNo. Len. Field Value +14:38:53 ============================================================================ +14:38:53 [ 1] [ 4] [0810] +14:38:53 [ 7] [ 10] [0320073758] +14:38:53 [ 11] [ 6] [156826] +14:38:53 [ 39] [ 2] [00] +14:38:53 [ 70] [ 3] [301] +14:38:53 ============================================================================ +14:38:53 Calculate Source COMM Id = 2 +14:38:53 ============================================================================ +14:38:53 + + +waiting on router queue for slot.... +14:38:58 ============================================================================ +14:38:58 Slot Id : <71> +14:38:58 Transaction Type : REQUEST +14:38:58 Received From : +14:38:58 ============================================================================ +14:38:58 FNo. Len. Field Value +14:38:58 ============================================================================ +14:38:58 [ 1] [ 4] [0800] +14:38:58 [ 2] [ 5] [02531] +14:38:58 [ 3] [ 6] [579148] +14:38:58 [ 7] [ 10] [0320073858] +14:38:58 [ 11] [ 6] [807262] +14:38:58 [ 15] [ 10] [0320073858] +14:38:58 [ 37] [ 11] [57914807262] +14:38:58 [ 70] [ 3] [001] +14:38:58 ============================================================================ +14:38:58 + + +waiting on router queue for slot.... +14:38:58 ============================================================================ +14:38:58 Slot Id : <71> +14:38:58 Transaction Type : RESPONSE +14:38:58 Received From : +14:38:58 ============================================================================ +14:38:58 FNo. Len. Field Value +14:38:58 ============================================================================ +14:38:58 [ 1] [ 4] [0810] +14:38:58 [ 7] [ 10] [0320073858] +14:38:58 [ 11] [ 6] [807262] +14:38:58 [ 15] [ 4] [0320] +14:38:58 [ 37] [ 12] [57914807262] +14:38:58 [ 39] [ 2] [00] +14:38:58 [ 70] [ 3] [001] +14:38:58 ============================================================================ +14:38:58 Sending to : +14:38:58 ============================================================================ +14:38:58 + + +waiting on router queue for slot.... +14:39:00 ============================================================================ +14:39:00 Slot Id : <70> +14:39:00 Transaction Type : REQUEST +14:39:00 Received From : +14:39:00 ============================================================================ +14:39:00 FNo. Len. Field Value +14:39:00 ============================================================================ +14:39:00 [ 1] [ 4] [0200] +14:39:00 [ 2] [ 16] [6688990108428804] +14:39:00 [ 3] [ 6] [010000] +14:39:00 [ 4] [ 12] [000100000000] +14:39:00 [ 7] [ 10] [0320143855] +14:39:00 [ 11] [ 6] [772788] +14:39:00 [ 12] [ 6] [143855] +14:39:00 [ 13] [ 4] [0320] +14:39:00 [ 15] [ 4] [0320] +14:39:00 [ 18] [ 4] [6011] +14:39:00 [ 22] [ 3] [900] +14:39:00 [ 25] [ 2] [02] +14:39:00 [ 28] [ 9] [D00002000] +14:39:00 [ 32] [ 6] [621354] +14:39:00 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:39:00 [ 37] [ 12] [507903499499] +14:39:00 [ 41] [ 8] [06002200] +14:39:00 [ 42] [ 15] [NATIVE ] +14:39:00 [ 43] [ 40] [Beng Market Beng LAO] +14:39:00 [ 49] [ 3] [418] +14:39:00 [ 52] [ 16] [822E858D341464BE] +14:39:00 ============================================================================ +14:39:00 + + +waiting on router queue for slot.... +14:39:00 Sending to : +14:39:00 ============================================================================ +14:39:00 Sending to : +14:39:00 ============================================================================ +14:39:00 ============================================================================ +14:39:00 Slot Id : <70> +14:39:00 Transaction Type : REQUEST +14:39:00 Received From : +14:39:00 ============================================================================ +14:39:00 FNo. Len. Field Value +14:39:00 ============================================================================ +14:39:00 [ 1] [ 4] [0200] +14:39:00 [ 2] [ 16] [6688990108428804] +14:39:00 [ 3] [ 6] [010000] +14:39:00 [ 4] [ 12] [000100000000] +14:39:00 [ 7] [ 10] [0320143855] +14:39:00 [ 11] [ 6] [772788] +14:39:00 [ 12] [ 6] [143855] +14:39:00 [ 13] [ 4] [0320] +14:39:00 [ 15] [ 4] [0320] +14:39:00 [ 18] [ 4] [6011] +14:39:00 [ 22] [ 3] [900] +14:39:00 [ 25] [ 2] [02] +14:39:00 [ 28] [ 9] [D00002000] +14:39:00 [ 32] [ 6] [621354] +14:39:00 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:39:00 [ 37] [ 12] [507903499499] +14:39:00 [ 41] [ 8] [06002200] +14:39:00 [ 42] [ 15] [NATIVE ] +14:39:00 [ 43] [ 40] [Beng Market Beng LAO] +14:39:00 [ 49] [ 3] [418] +14:39:00 [ 52] [ 16] [822E858D341464BE] +14:39:00 ============================================================================ +14:39:00 + + +waiting on router queue for slot.... +14:39:00 Sending to : +14:39:00 ============================================================================ +14:39:00 ============================================================================ +14:39:00 Slot Id : <70> +14:39:00 Transaction Type : REQUEST +14:39:00 Received From : +14:39:00 ============================================================================ +14:39:00 FNo. Len. Field Value +14:39:00 ============================================================================ +14:39:00 [ 1] [ 4] [0200] +14:39:00 [ 2] [ 16] [6688990108428804] +14:39:00 [ 3] [ 6] [010000] +14:39:00 [ 4] [ 12] [000100000000] +14:39:00 [ 7] [ 10] [0320143855] +14:39:00 [ 11] [ 6] [772788] +14:39:00 [ 12] [ 6] [143855] +14:39:00 [ 13] [ 4] [0320] +14:39:00 [ 15] [ 4] [0320] +14:39:00 [ 18] [ 4] [6011] +14:39:00 [ 22] [ 3] [900] +14:39:00 [ 25] [ 2] [02] +14:39:00 [ 28] [ 9] [D00002000] +14:39:00 [ 32] [ 6] [621354] +14:39:00 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:39:00 [ 37] [ 12] [507903499499] +14:39:00 [ 41] [ 8] [06002200] +14:39:00 [ 42] [ 15] [NATIVE ] +14:39:00 [ 43] [ 40] [Beng Market Beng LAO] +14:39:00 [ 49] [ 3] [418] +14:39:00 [ 52] [ 16] [BDE320D8418423E6] +14:39:00 ============================================================================ +14:39:00 + + +waiting on router queue for slot.... +14:39:00 Sending to : <4> +14:39:00 ============================================================================ +14:39:01 ============================================================================ +14:39:01 Slot Id : <70> +14:39:01 Transaction Type : RESPONSE +14:39:01 Received From : +14:39:01 ============================================================================ +14:39:01 FNo. Len. Field Value +14:39:01 ============================================================================ +14:39:01 [ 1] [ 4] [0210] +14:39:01 [ 2] [ 16] [6688990108428804] +14:39:01 [ 3] [ 6] [010000] +14:39:01 [ 4] [ 12] [000100000000] +14:39:01 [ 11] [ 6] [772788] +14:39:01 [ 12] [ 6] [143855] +14:39:01 [ 15] [ 4] [0320] +14:39:01 [ 18] [ 4] [6011] +14:39:01 [ 32] [ 6] [621354] +14:39:01 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:39:01 [ 37] [ 12] [507903499499] +14:39:01 [ 38] [ 6] [057660] +14:39:01 [ 39] [ 2] [00] +14:39:01 [ 41] [ 8] [06002200] +14:39:01 [ 49] [ 3] [418] +14:39:01 [ 54] [ 20] [0002418C000042665107] +14:39:01 ============================================================================ +14:39:01 Sending to : +14:39:01 ============================================================================ +14:39:01 + + +waiting on router queue for slot.... +14:39:03 ============================================================================ +14:39:03 Slot Id : <70> +14:39:03 Transaction Type : RESPONSE +14:39:03 Received From : +14:39:03 ============================================================================ +14:39:03 FNo. Len. Field Value +14:39:03 ============================================================================ +14:39:03 [ 1] [ 4] [0210] +14:39:03 [ 2] [ 16] [6688990108428804] +14:39:03 [ 3] [ 6] [010000] +14:39:03 [ 4] [ 12] [000100000000] +14:39:03 [ 11] [ 6] [772788] +14:39:03 [ 12] [ 6] [143855] +14:39:03 [ 15] [ 4] [0320] +14:39:03 [ 18] [ 4] [6011] +14:39:03 [ 32] [ 6] [621354] +14:39:03 [ 35] [ 37] [6688990108428804=44061231880450700000] +14:39:03 [ 37] [ 12] [507903499499] +14:39:03 [ 38] [ 6] [057660] +14:39:03 [ 39] [ 2] [00] +14:39:03 [ 41] [ 8] [06002200] +14:39:03 [ 49] [ 3] [418] +14:39:03 [ 54] [ 20] [0002418C000042665107] +14:39:03 ============================================================================ +14:39:03 Calculate Source COMM Id = 0 +14:39:03 ============================================================================ +14:39:03 + + +waiting on router queue for slot.... +14:39:04 ============================================================================ +14:39:04 Slot Id : <102> +14:39:04 Transaction Type : REQUEST +14:39:04 Received From : +14:39:04 ============================================================================ +14:39:04 FNo. Len. Field Value +14:39:04 ============================================================================ +14:39:04 [ 1] [ 4] [0200] +14:39:04 [ 2] [ 16] [6688990108347509] +14:39:04 [ 3] [ 6] [301000] +14:39:04 [ 7] [ 10] [0320073811] +14:39:04 [ 11] [ 6] [269733] +14:39:04 [ 12] [ 6] [143811] +14:39:04 [ 13] [ 4] [0320] +14:39:04 [ 14] [ 4] [4406] +14:39:04 [ 15] [ 4] [0320] +14:39:04 [ 18] [ 4] [6011] +14:39:04 [ 19] [ 3] [418] +14:39:04 [ 22] [ 3] [021] +14:39:04 [ 25] [ 2] [01] +14:39:04 [ 32] [ 6] [180893] +14:39:04 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:39:04 [ 37] [ 12] [507907269733] +14:39:04 [ 41] [ 8] [0321LNTV] +14:39:04 [ 42] [ 15] [999999 ] +14:39:04 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:39:04 [ 49] [ 3] [418] +14:39:04 [ 52] [ 16] [A22216D88F7969BC] +14:39:04 ============================================================================ +14:39:04 + + +waiting on router queue for slot.... +14:39:04 Sending to : +14:39:04 ============================================================================ +14:39:04 Sending to : +14:39:04 ============================================================================ +14:39:04 ============================================================================ +14:39:04 Slot Id : <102> +14:39:04 Transaction Type : REQUEST +14:39:04 Received From : +14:39:04 ============================================================================ +14:39:04 FNo. Len. Field Value +14:39:04 ============================================================================ +14:39:04 [ 1] [ 4] [0200] +14:39:04 [ 2] [ 16] [6688990108347509] +14:39:04 [ 3] [ 6] [301000] +14:39:04 [ 7] [ 10] [0320073811] +14:39:04 [ 11] [ 6] [269733] +14:39:04 [ 12] [ 6] [143811] +14:39:04 [ 13] [ 4] [0320] +14:39:04 [ 14] [ 4] [4406] +14:39:04 [ 15] [ 4] [0320] +14:39:04 [ 18] [ 4] [6011] +14:39:04 [ 19] [ 3] [418] +14:39:04 [ 22] [ 3] [021] +14:39:04 [ 25] [ 2] [01] +14:39:04 [ 32] [ 6] [180893] +14:39:04 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:39:04 [ 37] [ 12] [507907269733] +14:39:04 [ 41] [ 8] [0321LNTV] +14:39:04 [ 42] [ 15] [999999 ] +14:39:04 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:39:04 [ 49] [ 3] [418] +14:39:04 [ 52] [ 16] [A22216D88F7969BC] +14:39:04 ============================================================================ +14:39:04 + + +waiting on router queue for slot.... +14:39:04 Sending to : +14:39:04 ============================================================================ +14:39:04 ============================================================================ +14:39:04 Slot Id : <102> +14:39:04 Transaction Type : REQUEST +14:39:04 Received From : +14:39:04 ============================================================================ +14:39:04 FNo. Len. Field Value +14:39:04 ============================================================================ +14:39:04 [ 1] [ 4] [0200] +14:39:04 [ 2] [ 16] [6688990108347509] +14:39:04 [ 3] [ 6] [301000] +14:39:04 [ 7] [ 10] [0320073811] +14:39:04 [ 11] [ 6] [269733] +14:39:04 [ 12] [ 6] [143811] +14:39:04 [ 13] [ 4] [0320] +14:39:04 [ 14] [ 4] [4406] +14:39:04 [ 15] [ 4] [0320] +14:39:04 [ 18] [ 4] [6011] +14:39:04 [ 19] [ 3] [418] +14:39:04 [ 22] [ 3] [021] +14:39:04 [ 25] [ 2] [01] +14:39:04 [ 32] [ 6] [180893] +14:39:04 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:39:04 [ 37] [ 12] [507907269733] +14:39:04 [ 41] [ 8] [0321LNTV] +14:39:04 [ 42] [ 15] [999999 ] +14:39:04 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:39:04 [ 49] [ 3] [418] +14:39:04 [ 52] [ 16] [A28BB920A21B80D5] +14:39:04 ============================================================================ +14:39:04 + + +waiting on router queue for slot.... +14:39:04 Sending to : <0> +14:39:04 ============================================================================ +14:39:04 ============================================================================ +14:39:04 Slot Id : <102> +14:39:04 Transaction Type : RESPONSE +14:39:04 Received From : +14:39:04 ============================================================================ +14:39:04 FNo. Len. Field Value +14:39:04 ============================================================================ +14:39:04 [ 1] [ 4] [0210] +14:39:04 [ 2] [ 16] [6688990108347509] +14:39:04 [ 3] [ 6] [301000] +14:39:04 [ 4] [ 12] [000000000000] +14:39:04 [ 7] [ 10] [0320073811] +14:39:04 [ 11] [ 6] [269733] +14:39:04 [ 12] [ 6] [143811] +14:39:04 [ 13] [ 4] [0320] +14:39:04 [ 15] [ 4] [0320] +14:39:04 [ 18] [ 4] [6011] +14:39:04 [ 19] [ 3] [418] +14:39:04 [ 22] [ 3] [021] +14:39:04 [ 32] [ 6] [180893] +14:39:04 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:39:04 [ 37] [ 12] [507907269733] +14:39:04 [ 39] [ 2] [14] +14:39:04 [ 41] [ 8] [0321LNTV] +14:39:04 [ 49] [ 3] [418] +14:39:04 ============================================================================ +14:39:04 Sending to : +14:39:04 ============================================================================ +14:39:04 + + +waiting on router queue for slot.... +14:39:05 ============================================================================ +14:39:05 Slot Id : <109> +14:39:05 Transaction Type : REQUEST +14:39:05 Received From : +14:39:05 ============================================================================ +14:39:05 FNo. Len. Field Value +14:39:05 ============================================================================ +14:39:05 [ 1] [ 4] [0800] +14:39:05 [ 7] [ 10] [0320073813] +14:39:05 [ 11] [ 6] [156827] +14:39:05 [ 70] [ 3] [301] +14:39:05 ============================================================================ +14:39:05 + + +waiting on router queue for slot.... +14:39:05 Sending to : +14:39:05 ============================================================================ +14:39:05 ============================================================================ +14:39:05 Slot Id : <109> +14:39:05 Transaction Type : RESPONSE +14:39:05 Received From : +14:39:05 ============================================================================ +14:39:05 FNo. Len. Field Value +14:39:05 ============================================================================ +14:39:05 [ 1] [ 4] [0810] +14:39:05 [ 7] [ 10] [0320073813] +14:39:05 [ 11] [ 6] [156827] +14:39:05 [ 39] [ 2] [00] +14:39:05 [ 70] [ 3] [301] +14:39:05 ============================================================================ +14:39:05 Calculate Source COMM Id = 2 +14:39:05 ============================================================================ +14:39:05 + + +waiting on router queue for slot.... +14:39:05 ============================================================================ +14:39:05 Slot Id : <102> +14:39:05 Transaction Type : RESPONSE +14:39:05 Received From : +14:39:05 ============================================================================ +14:39:05 FNo. Len. Field Value +14:39:05 ============================================================================ +14:39:05 [ 1] [ 4] [0210] +14:39:05 [ 2] [ 16] [6688990108347509] +14:39:05 [ 3] [ 6] [301000] +14:39:05 [ 4] [ 12] [000000000000] +14:39:05 [ 7] [ 10] [0320073811] +14:39:05 [ 11] [ 6] [269733] +14:39:05 [ 12] [ 6] [143811] +14:39:05 [ 13] [ 4] [0320] +14:39:05 [ 15] [ 4] [0320] +14:39:05 [ 18] [ 4] [6011] +14:39:05 [ 19] [ 3] [418] +14:39:05 [ 22] [ 3] [021] +14:39:05 [ 32] [ 6] [180893] +14:39:05 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:39:05 [ 37] [ 12] [507907269733] +14:39:05 [ 39] [ 2] [14] +14:39:05 [ 41] [ 8] [0321LNTV] +14:39:05 [ 49] [ 3] [418] +14:39:05 ============================================================================ +14:39:05 Calculate Source COMM Id = 2 +14:39:05 ============================================================================ +14:39:05 + + +waiting on router queue for slot.... +14:39:06 ============================================================================ +14:39:06 Slot Id : <136> +14:39:06 Transaction Type : REQUEST +14:39:06 Received From : +14:39:06 ============================================================================ +14:39:06 FNo. Len. Field Value +14:39:06 ============================================================================ +14:39:06 [ 1] [ 4] [0200] +14:39:06 [ 2] [ 16] [6213548000229136] +14:39:06 [ 3] [ 6] [010000] +14:39:06 [ 4] [ 12] [000010000000] +14:39:06 [ 7] [ 10] [0320143656] +14:39:06 [ 11] [ 6] [948800] +14:39:06 [ 12] [ 6] [143656] +14:39:06 [ 13] [ 4] [0320] +14:39:06 [ 15] [ 4] [0320] +14:39:06 [ 18] [ 4] [6011] +14:39:06 [ 19] [ 3] [418] +14:39:06 [ 22] [ 3] [021] +14:39:06 [ 25] [ 2] [01] +14:39:06 [ 28] [ 9] [D00002000] +14:39:06 [ 32] [ 6] [668899] +14:39:06 [ 35] [ 32] [6213548000229136=180112012913682] +14:39:06 [ 37] [ 12] [507901955660] +14:39:06 [ 41] [ 8] [03020018] +14:39:06 [ 42] [ 15] [APT ] +14:39:06 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +14:39:06 [ 49] [ 3] [418] +14:39:06 [ 52] [ 16] [E0F1EB69099C4958] +14:39:06 ============================================================================ +14:39:06 + + +waiting on router queue for slot.... +14:39:06 Sending to : +14:39:06 ============================================================================ +14:39:06 Sending to : +14:39:06 ============================================================================ +14:39:06 ============================================================================ +14:39:06 Slot Id : <136> +14:39:06 Transaction Type : REQUEST +14:39:06 Received From : +14:39:06 ============================================================================ +14:39:06 FNo. Len. Field Value +14:39:06 ============================================================================ +14:39:06 [ 1] [ 4] [0200] +14:39:06 [ 2] [ 16] [6213548000229136] +14:39:06 [ 3] [ 6] [010000] +14:39:06 [ 4] [ 12] [000010000000] +14:39:06 [ 7] [ 10] [0320143656] +14:39:06 [ 11] [ 6] [948800] +14:39:06 [ 12] [ 6] [143656] +14:39:06 [ 13] [ 4] [0320] +14:39:06 [ 15] [ 4] [0320] +14:39:06 [ 18] [ 4] [6011] +14:39:06 [ 19] [ 3] [418] +14:39:06 [ 22] [ 3] [021] +14:39:06 [ 25] [ 2] [01] +14:39:06 [ 28] [ 9] [D00002000] +14:39:06 [ 32] [ 6] [668899] +14:39:06 [ 35] [ 32] [6213548000229136=180112012913682] +14:39:06 [ 37] [ 12] [507901955660] +14:39:06 [ 41] [ 8] [03020018] +14:39:06 [ 42] [ 15] [APT ] +14:39:06 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +14:39:06 [ 49] [ 3] [418] +14:39:06 [ 52] [ 16] [E0F1EB69099C4958] +14:39:06 ============================================================================ +14:39:06 + + +waiting on router queue for slot.... +14:39:06 Sending to : +14:39:06 ============================================================================ +14:39:06 ============================================================================ +14:39:06 Slot Id : <136> +14:39:06 Transaction Type : REQUEST +14:39:06 Received From : +14:39:06 ============================================================================ +14:39:06 FNo. Len. Field Value +14:39:06 ============================================================================ +14:39:06 [ 1] [ 4] [0200] +14:39:06 [ 2] [ 16] [6213548000229136] +14:39:06 [ 3] [ 6] [010000] +14:39:06 [ 4] [ 12] [000010000000] +14:39:06 [ 7] [ 10] [0320143656] +14:39:06 [ 11] [ 6] [948800] +14:39:06 [ 12] [ 6] [143656] +14:39:06 [ 13] [ 4] [0320] +14:39:06 [ 15] [ 4] [0320] +14:39:06 [ 18] [ 4] [6011] +14:39:06 [ 19] [ 3] [418] +14:39:06 [ 22] [ 3] [021] +14:39:06 [ 25] [ 2] [01] +14:39:06 [ 28] [ 9] [D00002000] +14:39:06 [ 32] [ 6] [668899] +14:39:06 [ 35] [ 32] [6213548000229136=180112012913682] +14:39:06 [ 37] [ 12] [507901955660] +14:39:06 [ 41] [ 8] [03020018] +14:39:06 [ 42] [ 15] [APT ] +14:39:06 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +14:39:06 [ 49] [ 3] [418] +14:39:06 [ 52] [ 16] [1F18AD7B80956D70] +14:39:06 ============================================================================ +14:39:06 + + +waiting on router queue for slot.... +14:39:06 Sending to : <0> +14:39:06 ============================================================================ +14:39:08 ============================================================================ +14:39:08 Slot Id : <136> +14:39:08 Transaction Type : RESPONSE +14:39:08 Received From : +14:39:08 ============================================================================ +14:39:08 FNo. Len. Field Value +14:39:08 ============================================================================ +14:39:08 [ 1] [ 4] [0210] +14:39:08 [ 2] [ 16] [6213548000229136] +14:39:08 [ 3] [ 6] [010000] +14:39:08 [ 4] [ 12] [000010000000] +14:39:08 [ 7] [ 10] [0320143656] +14:39:08 [ 11] [ 6] [948800] +14:39:08 [ 12] [ 6] [143656] +14:39:08 [ 13] [ 4] [0320] +14:39:08 [ 15] [ 4] [0320] +14:39:08 [ 18] [ 4] [6011] +14:39:08 [ 19] [ 3] [418] +14:39:08 [ 32] [ 6] [668899] +14:39:08 [ 35] [ 32] [6213548000229136=180112012913682] +14:39:08 [ 37] [ 12] [507901955660] +14:39:08 [ 38] [ 6] [000252] +14:39:08 [ 39] [ 2] [00] +14:39:08 [ 41] [ 8] [03020018] +14:39:08 [ 49] [ 3] [418] +14:39:08 [ 54] [ 40] [0001418C0000051612820002418C000005161282] +14:39:08 ============================================================================ +14:39:08 Sending to : +14:39:08 ============================================================================ +14:39:08 + + +waiting on router queue for slot.... +14:39:09 ============================================================================ +14:39:09 Slot Id : <136> +14:39:09 Transaction Type : RESPONSE +14:39:09 Received From : +14:39:09 ============================================================================ +14:39:09 FNo. Len. Field Value +14:39:09 ============================================================================ +14:39:09 [ 1] [ 4] [0210] +14:39:09 [ 2] [ 16] [6213548000229136] +14:39:09 [ 3] [ 6] [010000] +14:39:09 [ 4] [ 12] [000010000000] +14:39:09 [ 7] [ 10] [0320143656] +14:39:09 [ 11] [ 6] [948800] +14:39:09 [ 12] [ 6] [143656] +14:39:09 [ 13] [ 4] [0320] +14:39:09 [ 15] [ 4] [0320] +14:39:09 [ 18] [ 4] [6011] +14:39:09 [ 19] [ 3] [418] +14:39:09 [ 32] [ 6] [668899] +14:39:09 [ 35] [ 32] [6213548000229136=180112012913682] +14:39:09 [ 37] [ 12] [507901955660] +14:39:09 [ 38] [ 6] [000252] +14:39:09 [ 39] [ 2] [00] +14:39:09 [ 41] [ 8] [03020018] +14:39:09 [ 49] [ 3] [418] +14:39:09 [ 54] [ 40] [0001418C0000051612820002418C000005161282] +14:39:09 ============================================================================ +14:39:09 Calculate Source COMM Id = 4 +14:39:09 ============================================================================ +14:39:09 + + +waiting on router queue for slot.... +14:39:10 ============================================================================ +14:39:10 Slot Id : <85> +14:39:10 Transaction Type : REQUEST +14:39:10 Received From : +14:39:10 ============================================================================ +14:39:10 FNo. Len. Field Value +14:39:10 ============================================================================ +14:39:10 [ 1] [ 4] [0200] +14:39:10 [ 2] [ 16] [6688990040120675] +14:39:10 [ 3] [ 6] [010000] +14:39:10 [ 4] [ 12] [000100000000] +14:39:10 [ 7] [ 10] [0320143906] +14:39:10 [ 11] [ 6] [772826] +14:39:10 [ 12] [ 6] [143906] +14:39:10 [ 13] [ 4] [0320] +14:39:10 [ 15] [ 4] [0320] +14:39:10 [ 18] [ 4] [6011] +14:39:10 [ 22] [ 3] [900] +14:39:10 [ 25] [ 2] [02] +14:39:10 [ 28] [ 9] [D00002000] +14:39:10 [ 32] [ 6] [621354] +14:39:10 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:39:10 [ 37] [ 12] [507904719673] +14:39:10 [ 41] [ 8] [18001000] +14:39:10 [ 42] [ 15] [NATIVE ] +14:39:10 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:39:10 [ 49] [ 3] [418] +14:39:10 [ 52] [ 16] [A6041F96050175F3] +14:39:10 ============================================================================ +14:39:10 + + +waiting on router queue for slot.... +14:39:10 Sending to : +14:39:10 ============================================================================ +14:39:10 Sending to : +14:39:10 ============================================================================ +14:39:11 ============================================================================ +14:39:11 Slot Id : <85> +14:39:11 Transaction Type : REQUEST +14:39:11 Received From : +14:39:11 ============================================================================ +14:39:11 FNo. Len. Field Value +14:39:11 ============================================================================ +14:39:11 [ 1] [ 4] [0200] +14:39:11 [ 2] [ 16] [6688990040120675] +14:39:11 [ 3] [ 6] [010000] +14:39:11 [ 4] [ 12] [000100000000] +14:39:11 [ 7] [ 10] [0320143906] +14:39:11 [ 11] [ 6] [772826] +14:39:11 [ 12] [ 6] [143906] +14:39:11 [ 13] [ 4] [0320] +14:39:11 [ 15] [ 4] [0320] +14:39:11 [ 18] [ 4] [6011] +14:39:11 [ 22] [ 3] [900] +14:39:11 [ 25] [ 2] [02] +14:39:11 [ 28] [ 9] [D00002000] +14:39:11 [ 32] [ 6] [621354] +14:39:11 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:39:11 [ 37] [ 12] [507904719673] +14:39:11 [ 41] [ 8] [18001000] +14:39:11 [ 42] [ 15] [NATIVE ] +14:39:11 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:39:11 [ 49] [ 3] [418] +14:39:11 [ 52] [ 16] [A6041F96050175F3] +14:39:11 ============================================================================ +14:39:11 + + +waiting on router queue for slot.... +14:39:11 Sending to : +14:39:11 ============================================================================ +14:39:11 ============================================================================ +14:39:11 Slot Id : <85> +14:39:11 Transaction Type : REQUEST +14:39:11 Received From : +14:39:11 ============================================================================ +14:39:11 FNo. Len. Field Value +14:39:11 ============================================================================ +14:39:11 [ 1] [ 4] [0200] +14:39:11 [ 2] [ 16] [6688990040120675] +14:39:11 [ 3] [ 6] [010000] +14:39:11 [ 4] [ 12] [000100000000] +14:39:11 [ 7] [ 10] [0320143906] +14:39:11 [ 11] [ 6] [772826] +14:39:11 [ 12] [ 6] [143906] +14:39:11 [ 13] [ 4] [0320] +14:39:11 [ 15] [ 4] [0320] +14:39:11 [ 18] [ 4] [6011] +14:39:11 [ 22] [ 3] [900] +14:39:11 [ 25] [ 2] [02] +14:39:11 [ 28] [ 9] [D00002000] +14:39:11 [ 32] [ 6] [621354] +14:39:11 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:39:11 [ 37] [ 12] [507904719673] +14:39:11 [ 41] [ 8] [18001000] +14:39:11 [ 42] [ 15] [NATIVE ] +14:39:11 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:39:11 [ 49] [ 3] [418] +14:39:11 [ 52] [ 16] [03880449A9B4CDB6] +14:39:11 ============================================================================ +14:39:11 + + +waiting on router queue for slot.... +14:39:11 Sending to : <4> +14:39:11 ============================================================================ +14:39:12 ============================================================================ +14:39:12 Slot Id : <85> +14:39:12 Transaction Type : RESPONSE +14:39:12 Received From : +14:39:12 ============================================================================ +14:39:12 FNo. Len. Field Value +14:39:12 ============================================================================ +14:39:12 [ 1] [ 4] [0210] +14:39:12 [ 2] [ 16] [6688990040120675] +14:39:12 [ 3] [ 6] [010000] +14:39:12 [ 4] [ 12] [000100000000] +14:39:12 [ 11] [ 6] [772826] +14:39:12 [ 12] [ 6] [143906] +14:39:12 [ 15] [ 4] [0320] +14:39:12 [ 18] [ 4] [6011] +14:39:12 [ 32] [ 6] [621354] +14:39:12 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:39:12 [ 37] [ 12] [507904719673] +14:39:12 [ 38] [ 6] [499019] +14:39:12 [ 39] [ 2] [00] +14:39:12 [ 41] [ 8] [18001000] +14:39:12 [ 49] [ 3] [418] +14:39:12 [ 54] [ 20] [0002418C000069963051] +14:39:12 ============================================================================ +14:39:12 Sending to : +14:39:12 ============================================================================ +14:39:12 + + +waiting on router queue for slot.... +14:39:13 ============================================================================ +14:39:13 Slot Id : <85> +14:39:13 Transaction Type : RESPONSE +14:39:13 Received From : +14:39:13 ============================================================================ +14:39:13 FNo. Len. Field Value +14:39:13 ============================================================================ +14:39:13 [ 1] [ 4] [0210] +14:39:13 [ 2] [ 16] [6688990040120675] +14:39:13 [ 3] [ 6] [010000] +14:39:13 [ 4] [ 12] [000100000000] +14:39:13 [ 11] [ 6] [772826] +14:39:13 [ 12] [ 6] [143906] +14:39:13 [ 15] [ 4] [0320] +14:39:13 [ 18] [ 4] [6011] +14:39:13 [ 32] [ 6] [621354] +14:39:13 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:39:13 [ 37] [ 12] [507904719673] +14:39:13 [ 38] [ 6] [499019] +14:39:13 [ 39] [ 2] [00] +14:39:13 [ 41] [ 8] [18001000] +14:39:13 [ 49] [ 3] [418] +14:39:13 [ 54] [ 20] [0002418C000069963051] +14:39:13 ============================================================================ +14:39:13 Calculate Source COMM Id = 0 +14:39:13 ============================================================================ +14:39:13 + + +waiting on router queue for slot.... +14:39:16 ============================================================================ +14:39:16 Slot Id : <129> +14:39:16 Transaction Type : REQUEST +14:39:16 Received From : +14:39:16 ============================================================================ +14:39:16 FNo. Len. Field Value +14:39:16 ============================================================================ +14:39:16 [ 1] [ 4] [0800] +14:39:16 [ 7] [ 10] [0320143903] +14:39:16 [ 11] [ 6] [081085] +14:39:16 [ 37] [ 12] [507914081085] +14:39:16 [ 70] [ 3] [ ] +14:39:16 ============================================================================ +14:39:16 + + +waiting on router queue for slot.... +14:39:16 Sending to : +14:39:16 ============================================================================ +14:39:16 ============================================================================ +14:39:16 Slot Id : <129> +14:39:16 Transaction Type : RESPONSE +14:39:16 Received From : +14:39:16 ============================================================================ +14:39:16 FNo. Len. Field Value +14:39:16 ============================================================================ +14:39:16 [ 1] [ 4] [0810] +14:39:16 [ 7] [ 10] [0320143903] +14:39:16 [ 11] [ 6] [081085] +14:39:16 [ 37] [ 12] [507914081085] +14:39:16 [ 39] [ 2] [91] +14:39:16 [ 70] [ 3] [ ] +14:39:16 ============================================================================ +14:39:16 Calculate Source COMM Id = 3 +14:39:16 ============================================================================ +14:39:16 + + +waiting on router queue for slot.... +14:39:16 ============================================================================ +14:39:16 Slot Id : <87> +14:39:16 Transaction Type : REQUEST +14:39:16 Received From : +14:39:16 ============================================================================ +14:39:16 FNo. Len. Field Value +14:39:16 ============================================================================ +14:39:16 [ 1] [ 4] [0800] +14:39:16 [ 7] [ 10] [0320073824] +14:39:16 [ 11] [ 6] [156828] +14:39:16 [ 70] [ 3] [301] +14:39:16 ============================================================================ +14:39:16 + + +waiting on router queue for slot.... +14:39:16 Sending to : +14:39:16 ============================================================================ +14:39:16 ============================================================================ +14:39:16 Slot Id : <87> +14:39:16 Transaction Type : RESPONSE +14:39:16 Received From : +14:39:16 ============================================================================ +14:39:16 FNo. Len. Field Value +14:39:16 ============================================================================ +14:39:16 [ 1] [ 4] [0810] +14:39:16 [ 7] [ 10] [0320073824] +14:39:16 [ 11] [ 6] [156828] +14:39:16 [ 39] [ 2] [00] +14:39:16 [ 70] [ 3] [301] +14:39:16 ============================================================================ +14:39:16 Calculate Source COMM Id = 2 +14:39:16 ============================================================================ +14:39:16 + + +waiting on router queue for slot.... +14:39:24 ============================================================================ +14:39:24 Slot Id : <105> +14:39:24 Transaction Type : REQUEST +14:39:24 Received From : +14:39:24 ============================================================================ +14:39:24 FNo. Len. Field Value +14:39:24 ============================================================================ +14:39:24 [ 1] [ 4] [0200] +14:39:24 [ 2] [ 16] [6688990103743801] +14:39:24 [ 3] [ 6] [010000] +14:39:24 [ 4] [ 12] [000050000000] +14:39:24 [ 7] [ 10] [0320073831] +14:39:24 [ 11] [ 6] [269738] +14:39:24 [ 12] [ 6] [143831] +14:39:24 [ 13] [ 4] [0320] +14:39:24 [ 14] [ 4] [4302] +14:39:24 [ 15] [ 4] [0320] +14:39:24 [ 18] [ 4] [6011] +14:39:24 [ 19] [ 3] [418] +14:39:24 [ 22] [ 3] [021] +14:39:24 [ 25] [ 2] [01] +14:39:24 [ 28] [ 9] [D00002000] +14:39:24 [ 32] [ 6] [180893] +14:39:24 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:39:24 [ 37] [ 12] [507907269738] +14:39:24 [ 41] [ 8] [0221XKKM] +14:39:24 [ 42] [ 15] [999999 ] +14:39:24 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:39:24 [ 49] [ 3] [418] +14:39:24 [ 52] [ 16] [1777F3726DC8CD62] +14:39:24 ============================================================================ +14:39:24 + + +waiting on router queue for slot.... +14:39:24 Sending to : +14:39:24 ============================================================================ +14:39:24 Sending to : +14:39:24 ============================================================================ +14:39:25 ============================================================================ +14:39:25 Slot Id : <105> +14:39:25 Transaction Type : REQUEST +14:39:25 Received From : +14:39:25 ============================================================================ +14:39:25 FNo. Len. Field Value +14:39:25 ============================================================================ +14:39:25 [ 1] [ 4] [0200] +14:39:25 [ 2] [ 16] [6688990103743801] +14:39:25 [ 3] [ 6] [010000] +14:39:25 [ 4] [ 12] [000050000000] +14:39:25 [ 7] [ 10] [0320073831] +14:39:25 [ 11] [ 6] [269738] +14:39:25 [ 12] [ 6] [143831] +14:39:25 [ 13] [ 4] [0320] +14:39:25 [ 14] [ 4] [4302] +14:39:25 [ 15] [ 4] [0320] +14:39:25 [ 18] [ 4] [6011] +14:39:25 [ 19] [ 3] [418] +14:39:25 [ 22] [ 3] [021] +14:39:25 [ 25] [ 2] [01] +14:39:25 [ 28] [ 9] [D00002000] +14:39:25 [ 32] [ 6] [180893] +14:39:25 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:39:25 [ 37] [ 12] [507907269738] +14:39:25 [ 41] [ 8] [0221XKKM] +14:39:25 [ 42] [ 15] [999999 ] +14:39:25 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:39:25 [ 49] [ 3] [418] +14:39:25 [ 52] [ 16] [1777F3726DC8CD62] +14:39:25 ============================================================================ +14:39:25 + + +waiting on router queue for slot.... +14:39:25 Sending to : +14:39:25 ============================================================================ +14:39:25 ============================================================================ +14:39:25 Slot Id : <105> +14:39:25 Transaction Type : REQUEST +14:39:25 Received From : +14:39:25 ============================================================================ +14:39:25 FNo. Len. Field Value +14:39:25 ============================================================================ +14:39:25 [ 1] [ 4] [0200] +14:39:25 [ 2] [ 16] [6688990103743801] +14:39:25 [ 3] [ 6] [010000] +14:39:25 [ 4] [ 12] [000050000000] +14:39:25 [ 7] [ 10] [0320073831] +14:39:25 [ 11] [ 6] [269738] +14:39:25 [ 12] [ 6] [143831] +14:39:25 [ 13] [ 4] [0320] +14:39:25 [ 14] [ 4] [4302] +14:39:25 [ 15] [ 4] [0320] +14:39:25 [ 18] [ 4] [6011] +14:39:25 [ 19] [ 3] [418] +14:39:25 [ 22] [ 3] [021] +14:39:25 [ 25] [ 2] [01] +14:39:25 [ 28] [ 9] [D00002000] +14:39:25 [ 32] [ 6] [180893] +14:39:25 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:39:25 [ 37] [ 12] [507907269738] +14:39:25 [ 41] [ 8] [0221XKKM] +14:39:25 [ 42] [ 15] [999999 ] +14:39:25 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:39:25 [ 49] [ 3] [418] +14:39:25 [ 52] [ 16] [DC473392EDA7F48C] +14:39:25 ============================================================================ +14:39:25 + + +waiting on router queue for slot.... +14:39:25 Sending to : <0> +14:39:25 ============================================================================ +14:39:25 ============================================================================ +14:39:25 Slot Id : <105> +14:39:25 Transaction Type : RESPONSE +14:39:25 Received From : +14:39:25 ============================================================================ +14:39:25 FNo. Len. Field Value +14:39:25 ============================================================================ +14:39:25 [ 1] [ 4] [0210] +14:39:25 [ 2] [ 16] [6688990103743801] +14:39:25 [ 3] [ 6] [010000] +14:39:25 [ 4] [ 12] [000050000000] +14:39:25 [ 7] [ 10] [0320073831] +14:39:25 [ 11] [ 6] [269738] +14:39:25 [ 12] [ 6] [143831] +14:39:25 [ 13] [ 4] [0320] +14:39:25 [ 15] [ 4] [0320] +14:39:25 [ 18] [ 4] [6011] +14:39:25 [ 19] [ 3] [418] +14:39:25 [ 22] [ 3] [021] +14:39:25 [ 32] [ 6] [180893] +14:39:25 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:39:25 [ 37] [ 12] [507907269738] +14:39:25 [ 39] [ 2] [14] +14:39:25 [ 41] [ 8] [0221XKKM] +14:39:25 [ 49] [ 3] [418] +14:39:25 ============================================================================ +14:39:25 Sending to : +14:39:25 ============================================================================ +14:39:25 + + +waiting on router queue for slot.... +14:39:26 ============================================================================ +14:39:26 Slot Id : <105> +14:39:26 Transaction Type : RESPONSE +14:39:26 Received From : +14:39:26 ============================================================================ +14:39:26 FNo. Len. Field Value +14:39:26 ============================================================================ +14:39:26 [ 1] [ 4] [0210] +14:39:26 [ 2] [ 16] [6688990103743801] +14:39:26 [ 3] [ 6] [010000] +14:39:26 [ 4] [ 12] [000050000000] +14:39:26 [ 7] [ 10] [0320073831] +14:39:26 [ 11] [ 6] [269738] +14:39:26 [ 12] [ 6] [143831] +14:39:26 [ 13] [ 4] [0320] +14:39:26 [ 15] [ 4] [0320] +14:39:26 [ 18] [ 4] [6011] +14:39:26 [ 19] [ 3] [418] +14:39:26 [ 22] [ 3] [021] +14:39:26 [ 32] [ 6] [180893] +14:39:26 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:39:26 [ 37] [ 12] [507907269738] +14:39:26 [ 39] [ 2] [14] +14:39:26 [ 41] [ 8] [0221XKKM] +14:39:26 [ 49] [ 3] [418] +14:39:26 ============================================================================ +14:39:26 Calculate Source COMM Id = 2 +14:39:26 ============================================================================ +14:39:26 + + +waiting on router queue for slot.... +14:39:29 ============================================================================ +14:39:29 Slot Id : <131> +14:39:29 Transaction Type : REQUEST +14:39:29 Received From : +14:39:29 ============================================================================ +14:39:29 FNo. Len. Field Value +14:39:29 ============================================================================ +14:39:29 [ 1] [ 4] [0800] +14:39:29 [ 7] [ 10] [0320215118] +14:39:29 [ 11] [ 6] [145118] +14:39:29 [ 37] [ 12] [57914145118] +14:39:29 [ 70] [ 3] [301] +14:39:29 ============================================================================ +14:39:29 + + +waiting on router queue for slot.... +14:39:29 Sending to : +14:39:29 ============================================================================ +14:39:29 ============================================================================ +14:39:29 Slot Id : <131> +14:39:29 Transaction Type : RESPONSE +14:39:29 Received From : +14:39:29 ============================================================================ +14:39:29 FNo. Len. Field Value +14:39:29 ============================================================================ +14:39:29 [ 1] [ 4] [0810] +14:39:29 [ 7] [ 10] [0320215118] +14:39:29 [ 11] [ 6] [145118] +14:39:29 [ 37] [ 12] [579141451180] +14:39:29 [ 39] [ 2] [00] +14:39:29 [ 70] [ 3] [810] +14:39:29 ============================================================================ +14:39:29 Calculate Source COMM Id = 6 +14:39:29 ============================================================================ +14:39:29 + + +waiting on router queue for slot.... +14:39:37 ============================================================================ +14:39:37 Slot Id : <104> +14:39:37 Transaction Type : REQUEST +14:39:37 Received From : +14:39:37 ============================================================================ +14:39:37 FNo. Len. Field Value +14:39:37 ============================================================================ +14:39:37 [ 1] [ 4] [0800] +14:39:37 [ 7] [ 10] [0320073845] +14:39:37 [ 11] [ 6] [156829] +14:39:37 [ 70] [ 3] [301] +14:39:37 ============================================================================ +14:39:37 + + +waiting on router queue for slot.... +14:39:37 Sending to : +14:39:37 ============================================================================ +14:39:37 ============================================================================ +14:39:37 Slot Id : <104> +14:39:37 Transaction Type : RESPONSE +14:39:37 Received From : +14:39:37 ============================================================================ +14:39:37 FNo. Len. Field Value +14:39:37 ============================================================================ +14:39:37 [ 1] [ 4] [0810] +14:39:37 [ 7] [ 10] [0320073845] +14:39:37 [ 11] [ 6] [156829] +14:39:37 [ 39] [ 2] [00] +14:39:37 [ 70] [ 3] [301] +14:39:37 ============================================================================ +14:39:37 Calculate Source COMM Id = 2 +14:39:37 ============================================================================ +14:39:37 + + +waiting on router queue for slot.... +14:39:43 ============================================================================ +14:39:43 Slot Id : <138> +14:39:43 Transaction Type : REQUEST +14:39:43 Received From : +14:39:43 ============================================================================ +14:39:43 FNo. Len. Field Value +14:39:43 ============================================================================ +14:39:43 [ 1] [ 4] [0200] +14:39:43 [ 2] [ 16] [6688990108337500] +14:39:43 [ 3] [ 6] [011000] +14:39:43 [ 4] [ 12] [000080000000] +14:39:43 [ 7] [ 10] [0320073850] +14:39:43 [ 11] [ 6] [269743] +14:39:43 [ 12] [ 6] [143850] +14:39:43 [ 13] [ 4] [0320] +14:39:43 [ 14] [ 4] [4406] +14:39:43 [ 15] [ 4] [0320] +14:39:43 [ 18] [ 4] [6011] +14:39:43 [ 19] [ 3] [418] +14:39:43 [ 22] [ 3] [021] +14:39:43 [ 25] [ 2] [01] +14:39:43 [ 28] [ 9] [D00002000] +14:39:43 [ 32] [ 6] [180893] +14:39:43 [ 35] [ 37] [6688990108337500=44061231750057400000] +14:39:43 [ 37] [ 12] [507907269743] +14:39:43 [ 41] [ 8] [0261PSL1] +14:39:43 [ 42] [ 15] [999999 ] +14:39:43 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +14:39:43 [ 49] [ 3] [418] +14:39:43 [ 52] [ 16] [D31F1565E0A34B7A] +14:39:43 ============================================================================ +14:39:43 + + +waiting on router queue for slot.... +14:39:43 Sending to : +14:39:43 ============================================================================ +14:39:43 Sending to : +14:39:43 ============================================================================ +14:39:43 ============================================================================ +14:39:43 Slot Id : <138> +14:39:43 Transaction Type : REQUEST +14:39:43 Received From : +14:39:43 ============================================================================ +14:39:43 FNo. Len. Field Value +14:39:43 ============================================================================ +14:39:43 [ 1] [ 4] [0200] +14:39:43 [ 2] [ 16] [6688990108337500] +14:39:43 [ 3] [ 6] [011000] +14:39:43 [ 4] [ 12] [000080000000] +14:39:43 [ 7] [ 10] [0320073850] +14:39:43 [ 11] [ 6] [269743] +14:39:43 [ 12] [ 6] [143850] +14:39:43 [ 13] [ 4] [0320] +14:39:43 [ 14] [ 4] [4406] +14:39:43 [ 15] [ 4] [0320] +14:39:43 [ 18] [ 4] [6011] +14:39:43 [ 19] [ 3] [418] +14:39:43 [ 22] [ 3] [021] +14:39:43 [ 25] [ 2] [01] +14:39:43 [ 28] [ 9] [D00002000] +14:39:43 [ 32] [ 6] [180893] +14:39:43 [ 35] [ 37] [6688990108337500=44061231750057400000] +14:39:43 [ 37] [ 12] [507907269743] +14:39:43 [ 41] [ 8] [0261PSL1] +14:39:43 [ 42] [ 15] [999999 ] +14:39:43 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +14:39:43 [ 49] [ 3] [418] +14:39:43 [ 52] [ 16] [D31F1565E0A34B7A] +14:39:43 ============================================================================ +14:39:43 + + +waiting on router queue for slot.... +14:39:43 Sending to : +14:39:43 ============================================================================ +14:39:43 ============================================================================ +14:39:43 Slot Id : <138> +14:39:43 Transaction Type : REQUEST +14:39:43 Received From : +14:39:43 ============================================================================ +14:39:43 FNo. Len. Field Value +14:39:43 ============================================================================ +14:39:43 [ 1] [ 4] [0200] +14:39:43 [ 2] [ 16] [6688990108337500] +14:39:43 [ 3] [ 6] [011000] +14:39:43 [ 4] [ 12] [000080000000] +14:39:43 [ 7] [ 10] [0320073850] +14:39:43 [ 11] [ 6] [269743] +14:39:43 [ 12] [ 6] [143850] +14:39:43 [ 13] [ 4] [0320] +14:39:43 [ 14] [ 4] [4406] +14:39:43 [ 15] [ 4] [0320] +14:39:43 [ 18] [ 4] [6011] +14:39:43 [ 19] [ 3] [418] +14:39:43 [ 22] [ 3] [021] +14:39:43 [ 25] [ 2] [01] +14:39:43 [ 28] [ 9] [D00002000] +14:39:43 [ 32] [ 6] [180893] +14:39:43 [ 35] [ 37] [6688990108337500=44061231750057400000] +14:39:43 [ 37] [ 12] [507907269743] +14:39:43 [ 41] [ 8] [0261PSL1] +14:39:43 [ 42] [ 15] [999999 ] +14:39:43 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +14:39:43 [ 49] [ 3] [418] +14:39:43 [ 52] [ 16] [5AAC9CCF2FDF9615] +14:39:43 ============================================================================ +14:39:43 + + +waiting on router queue for slot.... +14:39:43 Sending to : <0> +14:39:43 ============================================================================ +14:39:43 ============================================================================ +14:39:43 Slot Id : <138> +14:39:43 Transaction Type : RESPONSE +14:39:43 Received From : +14:39:43 ============================================================================ +14:39:43 FNo. Len. Field Value +14:39:43 ============================================================================ +14:39:43 [ 1] [ 4] [0210] +14:39:43 [ 2] [ 16] [6688990108337500] +14:39:43 [ 3] [ 6] [011000] +14:39:43 [ 4] [ 12] [000080000000] +14:39:43 [ 7] [ 10] [0320073850] +14:39:43 [ 11] [ 6] [269743] +14:39:43 [ 12] [ 6] [143850] +14:39:43 [ 13] [ 4] [0320] +14:39:43 [ 15] [ 4] [0320] +14:39:43 [ 18] [ 4] [6011] +14:39:43 [ 19] [ 3] [418] +14:39:43 [ 22] [ 3] [021] +14:39:43 [ 32] [ 6] [180893] +14:39:43 [ 35] [ 37] [6688990108337500=44061231750057400000] +14:39:43 [ 37] [ 12] [507907269743] +14:39:43 [ 39] [ 2] [14] +14:39:43 [ 41] [ 8] [0261PSL1] +14:39:43 [ 49] [ 3] [418] +14:39:43 ============================================================================ +14:39:43 Sending to : +14:39:43 ============================================================================ +14:39:43 + + +waiting on router queue for slot.... +14:39:44 ============================================================================ +14:39:44 Slot Id : <138> +14:39:44 Transaction Type : RESPONSE +14:39:44 Received From : +14:39:44 ============================================================================ +14:39:44 FNo. Len. Field Value +14:39:44 ============================================================================ +14:39:44 [ 1] [ 4] [0210] +14:39:44 [ 2] [ 16] [6688990108337500] +14:39:44 [ 3] [ 6] [011000] +14:39:44 [ 4] [ 12] [000080000000] +14:39:44 [ 7] [ 10] [0320073850] +14:39:44 [ 11] [ 6] [269743] +14:39:44 [ 12] [ 6] [143850] +14:39:44 [ 13] [ 4] [0320] +14:39:44 [ 15] [ 4] [0320] +14:39:44 [ 18] [ 4] [6011] +14:39:44 [ 19] [ 3] [418] +14:39:44 [ 22] [ 3] [021] +14:39:44 [ 32] [ 6] [180893] +14:39:44 [ 35] [ 37] [6688990108337500=44061231750057400000] +14:39:44 [ 37] [ 12] [507907269743] +14:39:44 [ 39] [ 2] [14] +14:39:44 [ 41] [ 8] [0261PSL1] +14:39:44 [ 49] [ 3] [418] +14:39:44 ============================================================================ +14:39:44 Calculate Source COMM Id = 2 +14:39:44 ============================================================================ +14:39:44 + + +waiting on router queue for slot.... +14:39:54 ============================================================================ +14:39:54 Slot Id : <112> +14:39:54 Transaction Type : REQUEST +14:39:54 Received From : +14:39:54 ============================================================================ +14:39:54 FNo. Len. Field Value +14:39:54 ============================================================================ +14:39:54 [ 1] [ 4] [0200] +14:39:54 [ 2] [ 16] [6688990103675904] +14:39:54 [ 3] [ 6] [012000] +14:39:54 [ 4] [ 12] [000100000000] +14:39:54 [ 7] [ 10] [0320143949] +14:39:54 [ 11] [ 6] [772958] +14:39:54 [ 12] [ 6] [143949] +14:39:54 [ 13] [ 4] [0320] +14:39:54 [ 15] [ 4] [0320] +14:39:54 [ 18] [ 4] [6011] +14:39:54 [ 22] [ 3] [900] +14:39:54 [ 25] [ 2] [02] +14:39:54 [ 28] [ 9] [D00002000] +14:39:54 [ 32] [ 6] [621354] +14:39:54 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:39:54 [ 37] [ 12] [507903372951] +14:39:54 [ 41] [ 8] [13001700] +14:39:54 [ 42] [ 15] [NATIVE ] +14:39:54 [ 43] [ 40] [Khoun District Khoun LAO] +14:39:54 [ 49] [ 3] [418] +14:39:54 [ 52] [ 16] [507726A0C5EC58F4] +14:39:54 ============================================================================ +14:39:54 + + +waiting on router queue for slot.... +14:39:54 Sending to : +14:39:54 ============================================================================ +14:39:54 Sending to : +14:39:54 ============================================================================ +14:39:54 ============================================================================ +14:39:54 Slot Id : <112> +14:39:54 Transaction Type : REQUEST +14:39:54 Received From : +14:39:54 ============================================================================ +14:39:54 FNo. Len. Field Value +14:39:54 ============================================================================ +14:39:54 [ 1] [ 4] [0200] +14:39:54 [ 2] [ 16] [6688990103675904] +14:39:54 [ 3] [ 6] [012000] +14:39:54 [ 4] [ 12] [000100000000] +14:39:54 [ 7] [ 10] [0320143949] +14:39:54 [ 11] [ 6] [772958] +14:39:54 [ 12] [ 6] [143949] +14:39:54 [ 13] [ 4] [0320] +14:39:54 [ 15] [ 4] [0320] +14:39:54 [ 18] [ 4] [6011] +14:39:54 [ 22] [ 3] [900] +14:39:54 [ 25] [ 2] [02] +14:39:54 [ 28] [ 9] [D00002000] +14:39:54 [ 32] [ 6] [621354] +14:39:54 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:39:54 [ 37] [ 12] [507903372951] +14:39:54 [ 41] [ 8] [13001700] +14:39:54 [ 42] [ 15] [NATIVE ] +14:39:54 [ 43] [ 40] [Khoun District Khoun LAO] +14:39:54 [ 49] [ 3] [418] +14:39:54 [ 52] [ 16] [507726A0C5EC58F4] +14:39:54 ============================================================================ +14:39:54 + + +waiting on router queue for slot.... +14:39:54 Sending to : +14:39:54 ============================================================================ +14:39:54 ============================================================================ +14:39:54 Slot Id : <112> +14:39:54 Transaction Type : REQUEST +14:39:54 Received From : +14:39:54 ============================================================================ +14:39:54 FNo. Len. Field Value +14:39:54 ============================================================================ +14:39:54 [ 1] [ 4] [0200] +14:39:54 [ 2] [ 16] [6688990103675904] +14:39:54 [ 3] [ 6] [012000] +14:39:54 [ 4] [ 12] [000100000000] +14:39:54 [ 7] [ 10] [0320143949] +14:39:54 [ 11] [ 6] [772958] +14:39:54 [ 12] [ 6] [143949] +14:39:54 [ 13] [ 4] [0320] +14:39:54 [ 15] [ 4] [0320] +14:39:54 [ 18] [ 4] [6011] +14:39:54 [ 22] [ 3] [900] +14:39:54 [ 25] [ 2] [02] +14:39:54 [ 28] [ 9] [D00002000] +14:39:54 [ 32] [ 6] [621354] +14:39:54 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:39:54 [ 37] [ 12] [507903372951] +14:39:54 [ 41] [ 8] [13001700] +14:39:54 [ 42] [ 15] [NATIVE ] +14:39:54 [ 43] [ 40] [Khoun District Khoun LAO] +14:39:54 [ 49] [ 3] [418] +14:39:54 [ 52] [ 16] [DAED5DC3F1C7C202] +14:39:54 ============================================================================ +14:39:54 + + +waiting on router queue for slot.... +14:39:54 Sending to : <4> +14:39:54 ============================================================================ +14:39:54 ============================================================================ +14:39:54 Slot Id : <112> +14:39:54 Transaction Type : RESPONSE +14:39:54 Received From : +14:39:54 ============================================================================ +14:39:54 FNo. Len. Field Value +14:39:54 ============================================================================ +14:39:54 [ 1] [ 4] [0210] +14:39:54 [ 2] [ 16] [6688990103675904] +14:39:54 [ 3] [ 6] [012000] +14:39:54 [ 4] [ 12] [000100000000] +14:39:54 [ 7] [ 10] [0320143949] +14:39:54 [ 11] [ 6] [772958] +14:39:54 [ 12] [ 6] [143949] +14:39:54 [ 13] [ 4] [0320] +14:39:54 [ 15] [ 4] [0320] +14:39:54 [ 18] [ 4] [6011] +14:39:54 [ 22] [ 3] [021] +14:39:54 [ 32] [ 6] [621354] +14:39:54 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:39:54 [ 37] [ 12] [507903372951] +14:39:54 [ 38] [ 6] [143745] +14:39:54 [ 39] [ 2] [55] +14:39:54 [ 41] [ 8] [13001700] +14:39:54 [ 49] [ 3] [418] +14:39:54 ============================================================================ +14:39:54 Sending to : +14:39:54 ============================================================================ +14:39:54 + + +waiting on router queue for slot.... +14:39:55 ============================================================================ +14:39:55 Slot Id : <116> +14:39:55 Transaction Type : REQUEST +14:39:55 Received From : +14:39:55 ============================================================================ +14:39:55 FNo. Len. Field Value +14:39:55 ============================================================================ +14:39:55 [ 1] [ 4] [0800] +14:39:55 [ 7] [ 10] [0320074742] +14:39:55 [ 11] [ 6] [032821] +14:39:55 [ 37] [ 12] [57914032821] +14:39:55 [ 70] [ 3] [301] +14:39:55 ============================================================================ +14:39:55 + + +waiting on router queue for slot.... +14:39:55 Sending to : +14:39:55 ============================================================================ +14:39:55 ============================================================================ +14:39:55 Slot Id : <116> +14:39:55 Transaction Type : RESPONSE +14:39:55 Received From : +14:39:55 ============================================================================ +14:39:55 FNo. Len. Field Value +14:39:55 ============================================================================ +14:39:55 [ 1] [ 4] [0810] +14:39:55 [ 7] [ 10] [0320074742] +14:39:55 [ 11] [ 6] [032821] +14:39:55 [ 37] [ 12] [579140328210] +14:39:55 [ 39] [ 2] [00] +14:39:55 [ 70] [ 3] [810] +14:39:55 ============================================================================ +14:39:55 Calculate Source COMM Id = 1 +14:39:55 ============================================================================ +14:39:55 + + +waiting on router queue for slot.... +14:39:56 ============================================================================ +14:39:56 Slot Id : <112> +14:39:56 Transaction Type : RESPONSE +14:39:56 Received From : +14:39:56 ============================================================================ +14:39:56 FNo. Len. Field Value +14:39:56 ============================================================================ +14:39:56 [ 1] [ 4] [0210] +14:39:56 [ 2] [ 16] [6688990103675904] +14:39:56 [ 3] [ 6] [012000] +14:39:56 [ 4] [ 12] [000100000000] +14:39:56 [ 7] [ 10] [0320143949] +14:39:56 [ 11] [ 6] [772958] +14:39:56 [ 12] [ 6] [143949] +14:39:56 [ 13] [ 4] [0320] +14:39:56 [ 15] [ 4] [0320] +14:39:56 [ 18] [ 4] [6011] +14:39:56 [ 22] [ 3] [021] +14:39:56 [ 32] [ 6] [621354] +14:39:56 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:39:56 [ 37] [ 12] [507903372951] +14:39:56 [ 38] [ 6] [143745] +14:39:56 [ 39] [ 2] [55] +14:39:56 [ 41] [ 8] [13001700] +14:39:56 [ 49] [ 3] [418] +14:39:56 ============================================================================ +14:39:56 Calculate Source COMM Id = 0 +14:39:56 ============================================================================ +14:39:56 + + +waiting on router queue for slot.... +14:39:59 ============================================================================ +14:39:59 Slot Id : <97> +14:39:59 Transaction Type : REQUEST +14:39:59 Received From : +14:39:59 ============================================================================ +14:39:59 FNo. Len. Field Value +14:39:59 ============================================================================ +14:39:59 [ 1] [ 4] [0800] +14:39:59 [ 7] [ 10] [0320073906] +14:39:59 [ 11] [ 6] [156830] +14:39:59 [ 70] [ 3] [301] +14:39:59 ============================================================================ +14:39:59 + + +waiting on router queue for slot.... +14:39:59 Sending to : +14:39:59 ============================================================================ +14:39:59 ============================================================================ +14:39:59 Slot Id : <97> +14:39:59 Transaction Type : RESPONSE +14:39:59 Received From : +14:39:59 ============================================================================ +14:39:59 FNo. Len. Field Value +14:39:59 ============================================================================ +14:39:59 [ 1] [ 4] [0810] +14:39:59 [ 7] [ 10] [0320073906] +14:39:59 [ 11] [ 6] [156830] +14:39:59 [ 39] [ 2] [00] +14:39:59 [ 70] [ 3] [301] +14:39:59 ============================================================================ +14:39:59 Calculate Source COMM Id = 2 +14:39:59 ============================================================================ +14:39:59 + + +waiting on router queue for slot.... +14:40:00 ============================================================================ +14:40:00 Slot Id : <140> +14:40:00 Transaction Type : REQUEST +14:40:00 Received From : +14:40:00 ============================================================================ +14:40:00 FNo. Len. Field Value +14:40:00 ============================================================================ +14:40:00 [ 1] [ 4] [0800] +14:40:00 [ 2] [ 5] [02531] +14:40:00 [ 3] [ 6] [579148] +14:40:00 [ 7] [ 10] [0320074000] +14:40:00 [ 11] [ 6] [807263] +14:40:00 [ 15] [ 10] [0320074000] +14:40:00 [ 37] [ 11] [57914807263] +14:40:00 [ 70] [ 3] [001] +14:40:00 ============================================================================ +14:40:00 + + +waiting on router queue for slot.... +14:40:00 ============================================================================ +14:40:00 Slot Id : <140> +14:40:00 Transaction Type : RESPONSE +14:40:00 Received From : +14:40:00 ============================================================================ +14:40:00 FNo. Len. Field Value +14:40:00 ============================================================================ +14:40:00 [ 1] [ 4] [0810] +14:40:00 [ 7] [ 10] [0320074000] +14:40:00 [ 11] [ 6] [807263] +14:40:00 [ 15] [ 4] [0320] +14:40:00 [ 37] [ 12] [57914807263] +14:40:00 [ 39] [ 2] [00] +14:40:00 [ 70] [ 3] [001] +14:40:00 ============================================================================ +14:40:00 Sending to : +14:40:00 ============================================================================ +14:40:00 + + +waiting on router queue for slot.... +14:40:14 ============================================================================ +14:40:14 Slot Id : <111> +14:40:14 Transaction Type : REQUEST +14:40:14 Received From : +14:40:14 ============================================================================ +14:40:14 FNo. Len. Field Value +14:40:14 ============================================================================ +14:40:14 [ 1] [ 4] [0800] +14:40:14 [ 7] [ 10] [0320073921] +14:40:14 [ 11] [ 6] [156831] +14:40:14 [ 70] [ 3] [301] +14:40:14 ============================================================================ +14:40:14 + + +waiting on router queue for slot.... +14:40:14 Sending to : +14:40:14 ============================================================================ +14:40:14 ============================================================================ +14:40:14 Slot Id : <111> +14:40:14 Transaction Type : RESPONSE +14:40:14 Received From : +14:40:14 ============================================================================ +14:40:14 FNo. Len. Field Value +14:40:14 ============================================================================ +14:40:14 [ 1] [ 4] [0810] +14:40:14 [ 7] [ 10] [0320073921] +14:40:14 [ 11] [ 6] [156831] +14:40:14 [ 39] [ 2] [00] +14:40:14 [ 70] [ 3] [301] +14:40:14 ============================================================================ +14:40:14 Calculate Source COMM Id = 2 +14:40:14 ============================================================================ +14:40:14 + + +waiting on router queue for slot.... +14:40:25 ============================================================================ +14:40:25 Slot Id : <117> +14:40:25 Transaction Type : REQUEST +14:40:25 Received From : +14:40:25 ============================================================================ +14:40:25 FNo. Len. Field Value +14:40:25 ============================================================================ +14:40:25 [ 1] [ 4] [0800] +14:40:25 [ 7] [ 10] [0320073932] +14:40:25 [ 11] [ 6] [156832] +14:40:25 [ 70] [ 3] [301] +14:40:25 ============================================================================ +14:40:25 + + +waiting on router queue for slot.... +14:40:25 Sending to : +14:40:25 ============================================================================ +14:40:25 ============================================================================ +14:40:25 Slot Id : <117> +14:40:25 Transaction Type : RESPONSE +14:40:25 Received From : +14:40:25 ============================================================================ +14:40:25 FNo. Len. Field Value +14:40:25 ============================================================================ +14:40:25 [ 1] [ 4] [0810] +14:40:25 [ 7] [ 10] [0320073932] +14:40:25 [ 11] [ 6] [156832] +14:40:25 [ 39] [ 2] [00] +14:40:25 [ 70] [ 3] [301] +14:40:25 ============================================================================ +14:40:25 Calculate Source COMM Id = 2 +14:40:25 ============================================================================ +14:40:25 + + +waiting on router queue for slot.... +14:40:26 ============================================================================ +14:40:26 Slot Id : <124> +14:40:26 Transaction Type : REQUEST +14:40:26 Received From : +14:40:26 ============================================================================ +14:40:26 FNo. Len. Field Value +14:40:26 ============================================================================ +14:40:26 [ 1] [ 4] [0200] +14:40:26 [ 2] [ 16] [6213541000440092] +14:40:26 [ 3] [ 6] [301000] +14:40:26 [ 4] [ 12] [000000000000] +14:40:26 [ 7] [ 10] [0320144046] +14:40:26 [ 11] [ 6] [207393] +14:40:26 [ 12] [ 6] [144230] +14:40:26 [ 13] [ 4] [0320] +14:40:26 [ 14] [ 4] [4912] +14:40:26 [ 15] [ 4] [0320] +14:40:26 [ 18] [ 4] [6011] +14:40:26 [ 19] [ 3] [418] +14:40:26 [ 22] [ 3] [021] +14:40:26 [ 25] [ 2] [01] +14:40:26 [ 28] [ 9] [D00000000] +14:40:26 [ 32] [ 6] [198901] +14:40:26 [ 35] [ 32] [6213541000440092=491212014009056] +14:40:26 [ 37] [ 12] [507914207393] +14:40:26 [ 41] [ 8] [00002222] +14:40:26 [ 42] [ 15] [000000041002222] +14:40:26 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +14:40:26 [ 49] [ 3] [418] +14:40:26 [ 52] [ 16] [A13BD0DE8AA14D32] +14:40:26 ============================================================================ +14:40:26 + + +waiting on router queue for slot.... +14:40:26 Sending to : +14:40:26 ============================================================================ +14:40:26 Sending to : +14:40:26 ============================================================================ +14:40:26 ============================================================================ +14:40:26 Slot Id : <124> +14:40:26 Transaction Type : REQUEST +14:40:26 Received From : +14:40:26 ============================================================================ +14:40:26 FNo. Len. Field Value +14:40:26 ============================================================================ +14:40:26 [ 1] [ 4] [0200] +14:40:26 [ 2] [ 16] [6213541000440092] +14:40:26 [ 3] [ 6] [301000] +14:40:26 [ 4] [ 12] [000000000000] +14:40:26 [ 7] [ 10] [0320144046] +14:40:26 [ 11] [ 6] [207393] +14:40:26 [ 12] [ 6] [144230] +14:40:26 [ 13] [ 4] [0320] +14:40:26 [ 14] [ 4] [4912] +14:40:26 [ 15] [ 4] [0320] +14:40:26 [ 18] [ 4] [6011] +14:40:26 [ 19] [ 3] [418] +14:40:26 [ 22] [ 3] [021] +14:40:26 [ 25] [ 2] [01] +14:40:26 [ 28] [ 9] [D00000000] +14:40:26 [ 32] [ 6] [198901] +14:40:26 [ 35] [ 32] [6213541000440092=491212014009056] +14:40:26 [ 37] [ 12] [507914207393] +14:40:26 [ 41] [ 8] [00002222] +14:40:26 [ 42] [ 15] [000000041002222] +14:40:26 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +14:40:26 [ 49] [ 3] [418] +14:40:26 [ 52] [ 16] [A13BD0DE8AA14D32] +14:40:26 ============================================================================ +14:40:26 + + +waiting on router queue for slot.... +14:40:26 Sending to : +14:40:26 ============================================================================ +14:40:26 ============================================================================ +14:40:26 Slot Id : <124> +14:40:26 Transaction Type : REQUEST +14:40:26 Received From : +14:40:26 ============================================================================ +14:40:26 FNo. Len. Field Value +14:40:26 ============================================================================ +14:40:26 [ 1] [ 4] [0200] +14:40:26 [ 2] [ 16] [6213541000440092] +14:40:26 [ 3] [ 6] [301000] +14:40:26 [ 4] [ 12] [000000000000] +14:40:26 [ 7] [ 10] [0320144046] +14:40:26 [ 11] [ 6] [207393] +14:40:26 [ 12] [ 6] [144230] +14:40:26 [ 13] [ 4] [0320] +14:40:26 [ 14] [ 4] [4912] +14:40:26 [ 15] [ 4] [0320] +14:40:26 [ 18] [ 4] [6011] +14:40:26 [ 19] [ 3] [418] +14:40:26 [ 22] [ 3] [021] +14:40:26 [ 25] [ 2] [01] +14:40:26 [ 28] [ 9] [D00000000] +14:40:26 [ 32] [ 6] [198901] +14:40:26 [ 35] [ 32] [6213541000440092=491212014009056] +14:40:26 [ 37] [ 12] [507914207393] +14:40:26 [ 41] [ 8] [00002222] +14:40:26 [ 42] [ 15] [000000041002222] +14:40:26 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +14:40:26 [ 49] [ 3] [418] +14:40:26 [ 52] [ 16] [A56FC3DE830D3E6F] +14:40:26 ============================================================================ +14:40:26 + + +waiting on router queue for slot.... +14:40:26 Sending to : <0> +14:40:26 ============================================================================ +14:40:26 ============================================================================ +14:40:26 Slot Id : <124> +14:40:26 Transaction Type : RESPONSE +14:40:26 Received From : +14:40:26 ============================================================================ +14:40:26 FNo. Len. Field Value +14:40:26 ============================================================================ +14:40:26 [ 1] [ 4] [0210] +14:40:26 [ 2] [ 16] [6213541000440092] +14:40:26 [ 3] [ 6] [301000] +14:40:26 [ 4] [ 12] [000000000000] +14:40:26 [ 7] [ 10] [0320144046] +14:40:26 [ 11] [ 6] [207393] +14:40:26 [ 12] [ 6] [144230] +14:40:26 [ 13] [ 4] [0320] +14:40:26 [ 15] [ 4] [0320] +14:40:26 [ 18] [ 4] [6011] +14:40:26 [ 19] [ 3] [418] +14:40:26 [ 32] [ 6] [198901] +14:40:26 [ 35] [ 32] [6213541000440092=491212014009056] +14:40:26 [ 37] [ 12] [507914207393] +14:40:26 [ 38] [ 6] [744071] +14:40:26 [ 39] [ 2] [00] +14:40:26 [ 41] [ 8] [00002222] +14:40:26 [ 49] [ 3] [418] +14:40:26 [ 54] [ 40] [1001418C0001527469951002418C000152746995] +14:40:26 ============================================================================ +14:40:26 Sending to : +14:40:26 ============================================================================ +14:40:26 + + +waiting on router queue for slot.... +14:40:28 ============================================================================ +14:40:28 Slot Id : <124> +14:40:28 Transaction Type : RESPONSE +14:40:28 Received From : +14:40:28 ============================================================================ +14:40:28 FNo. Len. Field Value +14:40:28 ============================================================================ +14:40:28 [ 1] [ 4] [0210] +14:40:28 [ 2] [ 16] [6213541000440092] +14:40:28 [ 3] [ 6] [301000] +14:40:28 [ 4] [ 12] [000000000000] +14:40:28 [ 7] [ 10] [0320144046] +14:40:28 [ 11] [ 6] [207393] +14:40:28 [ 12] [ 6] [144230] +14:40:28 [ 13] [ 4] [0320] +14:40:28 [ 15] [ 4] [0320] +14:40:28 [ 18] [ 4] [6011] +14:40:28 [ 19] [ 3] [418] +14:40:28 [ 32] [ 6] [198901] +14:40:28 [ 35] [ 32] [6213541000440092=491212014009056] +14:40:28 [ 37] [ 12] [507914207393] +14:40:28 [ 38] [ 6] [744071] +14:40:28 [ 39] [ 2] [00] +14:40:28 [ 41] [ 8] [00002222] +14:40:28 [ 49] [ 3] [418] +14:40:28 [ 54] [ 40] [1001418C0001527469951002418C000152746995] +14:40:28 ============================================================================ +14:40:28 Calculate Source COMM Id = 5 +14:40:28 ============================================================================ +14:40:28 + + +waiting on router queue for slot.... +14:40:29 ============================================================================ +14:40:29 Slot Id : <80> +14:40:29 Transaction Type : REQUEST +14:40:29 Received From : +14:40:29 ============================================================================ +14:40:29 FNo. Len. Field Value +14:40:29 ============================================================================ +14:40:29 [ 1] [ 4] [0200] +14:40:29 [ 2] [ 16] [6213541000661333] +14:40:29 [ 3] [ 6] [010000] +14:40:29 [ 4] [ 12] [000100000000] +14:40:29 [ 7] [ 10] [0320143820] +14:40:29 [ 11] [ 6] [948825] +14:40:29 [ 12] [ 6] [143820] +14:40:29 [ 13] [ 4] [0320] +14:40:29 [ 15] [ 4] [0320] +14:40:29 [ 18] [ 4] [6011] +14:40:29 [ 19] [ 3] [418] +14:40:29 [ 22] [ 3] [021] +14:40:29 [ 25] [ 2] [01] +14:40:29 [ 28] [ 9] [D00002000] +14:40:29 [ 32] [ 6] [668899] +14:40:29 [ 35] [ 32] [6213541000661333=491212016133298] +14:40:29 [ 37] [ 12] [507901565345] +14:40:29 [ 41] [ 8] [03615001] +14:40:29 [ 42] [ 15] [APT ] +14:40:29 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:40:29 [ 49] [ 3] [418] +14:40:29 [ 52] [ 16] [5C602BD06D3E3299] +14:40:29 ============================================================================ +14:40:29 + + +waiting on router queue for slot.... +14:40:29 Sending to : +14:40:29 ============================================================================ +14:40:29 Sending to : +14:40:29 ============================================================================ +14:40:30 ============================================================================ +14:40:30 Slot Id : <80> +14:40:30 Transaction Type : REQUEST +14:40:30 Received From : +14:40:30 ============================================================================ +14:40:30 FNo. Len. Field Value +14:40:30 ============================================================================ +14:40:30 [ 1] [ 4] [0200] +14:40:30 [ 2] [ 16] [6213541000661333] +14:40:30 [ 3] [ 6] [010000] +14:40:30 [ 4] [ 12] [000100000000] +14:40:30 [ 7] [ 10] [0320143820] +14:40:30 [ 11] [ 6] [948825] +14:40:30 [ 12] [ 6] [143820] +14:40:30 [ 13] [ 4] [0320] +14:40:30 [ 15] [ 4] [0320] +14:40:30 [ 18] [ 4] [6011] +14:40:30 [ 19] [ 3] [418] +14:40:30 [ 22] [ 3] [021] +14:40:30 [ 25] [ 2] [01] +14:40:30 [ 28] [ 9] [D00002000] +14:40:30 [ 32] [ 6] [668899] +14:40:30 [ 35] [ 32] [6213541000661333=491212016133298] +14:40:30 [ 37] [ 12] [507901565345] +14:40:30 [ 41] [ 8] [03615001] +14:40:30 [ 42] [ 15] [APT ] +14:40:30 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:40:30 [ 49] [ 3] [418] +14:40:30 [ 52] [ 16] [5C602BD06D3E3299] +14:40:30 ============================================================================ +14:40:30 + + +waiting on router queue for slot.... +14:40:30 Sending to : +14:40:30 ============================================================================ +14:40:30 ============================================================================ +14:40:30 Slot Id : <80> +14:40:30 Transaction Type : REQUEST +14:40:30 Received From : +14:40:30 ============================================================================ +14:40:30 FNo. Len. Field Value +14:40:30 ============================================================================ +14:40:30 [ 1] [ 4] [0200] +14:40:30 [ 2] [ 16] [6213541000661333] +14:40:30 [ 3] [ 6] [010000] +14:40:30 [ 4] [ 12] [000100000000] +14:40:30 [ 7] [ 10] [0320143820] +14:40:30 [ 11] [ 6] [948825] +14:40:30 [ 12] [ 6] [143820] +14:40:30 [ 13] [ 4] [0320] +14:40:30 [ 15] [ 4] [0320] +14:40:30 [ 18] [ 4] [6011] +14:40:30 [ 19] [ 3] [418] +14:40:30 [ 22] [ 3] [021] +14:40:30 [ 25] [ 2] [01] +14:40:30 [ 28] [ 9] [D00002000] +14:40:30 [ 32] [ 6] [668899] +14:40:30 [ 35] [ 32] [6213541000661333=491212016133298] +14:40:30 [ 37] [ 12] [507901565345] +14:40:30 [ 41] [ 8] [03615001] +14:40:30 [ 42] [ 15] [APT ] +14:40:30 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:40:30 [ 49] [ 3] [418] +14:40:30 [ 52] [ 16] [8B69CDB0ACB8C6C2] +14:40:30 ============================================================================ +14:40:30 + + +waiting on router queue for slot.... +14:40:30 Sending to : <0> +14:40:30 ============================================================================ +14:40:31 ============================================================================ +14:40:31 Slot Id : <80> +14:40:31 Transaction Type : RESPONSE +14:40:31 Received From : +14:40:31 ============================================================================ +14:40:31 FNo. Len. Field Value +14:40:31 ============================================================================ +14:40:31 [ 1] [ 4] [0210] +14:40:31 [ 2] [ 16] [6213541000661333] +14:40:31 [ 3] [ 6] [010000] +14:40:31 [ 4] [ 12] [000100000000] +14:40:31 [ 7] [ 10] [0320143820] +14:40:31 [ 11] [ 6] [948825] +14:40:31 [ 12] [ 6] [143820] +14:40:31 [ 13] [ 4] [0320] +14:40:31 [ 15] [ 4] [0320] +14:40:31 [ 18] [ 4] [6011] +14:40:31 [ 19] [ 3] [418] +14:40:31 [ 32] [ 6] [668899] +14:40:31 [ 35] [ 32] [6213541000661333=491212016133298] +14:40:31 [ 37] [ 12] [507901565345] +14:40:31 [ 38] [ 6] [432172] +14:40:31 [ 39] [ 2] [00] +14:40:31 [ 41] [ 8] [03615001] +14:40:31 [ 49] [ 3] [418] +14:40:31 [ 54] [ 40] [0001418C0001841682200002418C000184168220] +14:40:31 ============================================================================ +14:40:31 Sending to : +14:40:31 ============================================================================ +14:40:31 + + +waiting on router queue for slot.... +14:40:31 ============================================================================ +14:40:31 Slot Id : <161> +14:40:31 Transaction Type : REQUEST +14:40:31 Received From : +14:40:31 ============================================================================ +14:40:31 FNo. Len. Field Value +14:40:31 ============================================================================ +14:40:31 [ 1] [ 4] [0200] +14:40:31 [ 2] [ 16] [6688990108429307] +14:40:31 [ 3] [ 6] [010000] +14:40:31 [ 4] [ 12] [000100000000] +14:40:31 [ 7] [ 10] [0320144026] +14:40:31 [ 11] [ 6] [773073] +14:40:31 [ 12] [ 6] [144026] +14:40:31 [ 13] [ 4] [0320] +14:40:31 [ 15] [ 4] [0320] +14:40:31 [ 18] [ 4] [6011] +14:40:31 [ 22] [ 3] [900] +14:40:31 [ 25] [ 2] [02] +14:40:31 [ 28] [ 9] [D00002000] +14:40:31 [ 32] [ 6] [621354] +14:40:31 [ 35] [ 37] [6688990108429307=44061231930780300000] +14:40:31 [ 37] [ 12] [507903499501] +14:40:31 [ 41] [ 8] [06002200] +14:40:31 [ 42] [ 15] [NATIVE ] +14:40:31 [ 43] [ 40] [Beng Market Beng LAO] +14:40:31 [ 49] [ 3] [418] +14:40:31 [ 52] [ 16] [C447EFA50FF059ED] +14:40:31 ============================================================================ +14:40:31 + + +waiting on router queue for slot.... +14:40:31 Sending to : +14:40:31 ============================================================================ +14:40:31 Sending to : +14:40:31 ============================================================================ +14:40:31 ============================================================================ +14:40:31 Slot Id : <161> +14:40:31 Transaction Type : REQUEST +14:40:31 Received From : +14:40:31 ============================================================================ +14:40:31 FNo. Len. Field Value +14:40:31 ============================================================================ +14:40:31 [ 1] [ 4] [0200] +14:40:31 [ 2] [ 16] [6688990108429307] +14:40:31 [ 3] [ 6] [010000] +14:40:31 [ 4] [ 12] [000100000000] +14:40:31 [ 7] [ 10] [0320144026] +14:40:31 [ 11] [ 6] [773073] +14:40:31 [ 12] [ 6] [144026] +14:40:31 [ 13] [ 4] [0320] +14:40:31 [ 15] [ 4] [0320] +14:40:31 [ 18] [ 4] [6011] +14:40:31 [ 22] [ 3] [900] +14:40:31 [ 25] [ 2] [02] +14:40:31 [ 28] [ 9] [D00002000] +14:40:31 [ 32] [ 6] [621354] +14:40:31 [ 35] [ 37] [6688990108429307=44061231930780300000] +14:40:31 [ 37] [ 12] [507903499501] +14:40:31 [ 41] [ 8] [06002200] +14:40:31 [ 42] [ 15] [NATIVE ] +14:40:31 [ 43] [ 40] [Beng Market Beng LAO] +14:40:31 [ 49] [ 3] [418] +14:40:31 [ 52] [ 16] [C447EFA50FF059ED] +14:40:31 ============================================================================ +14:40:31 + + +waiting on router queue for slot.... +14:40:31 Sending to : +14:40:31 ============================================================================ +14:40:31 ============================================================================ +14:40:31 Slot Id : <161> +14:40:31 Transaction Type : REQUEST +14:40:31 Received From : +14:40:31 ============================================================================ +14:40:31 FNo. Len. Field Value +14:40:31 ============================================================================ +14:40:31 [ 1] [ 4] [0200] +14:40:31 [ 2] [ 16] [6688990108429307] +14:40:31 [ 3] [ 6] [010000] +14:40:31 [ 4] [ 12] [000100000000] +14:40:31 [ 7] [ 10] [0320144026] +14:40:31 [ 11] [ 6] [773073] +14:40:31 [ 12] [ 6] [144026] +14:40:31 [ 13] [ 4] [0320] +14:40:31 [ 15] [ 4] [0320] +14:40:31 [ 18] [ 4] [6011] +14:40:31 [ 22] [ 3] [900] +14:40:31 [ 25] [ 2] [02] +14:40:31 [ 28] [ 9] [D00002000] +14:40:31 [ 32] [ 6] [621354] +14:40:31 [ 35] [ 37] [6688990108429307=44061231930780300000] +14:40:31 [ 37] [ 12] [507903499501] +14:40:31 [ 41] [ 8] [06002200] +14:40:31 [ 42] [ 15] [NATIVE ] +14:40:31 [ 43] [ 40] [Beng Market Beng LAO] +14:40:31 [ 49] [ 3] [418] +14:40:31 [ 52] [ 16] [2243FA4460D847A1] +14:40:31 ============================================================================ +14:40:31 + + +waiting on router queue for slot.... +14:40:31 Sending to : <4> +14:40:31 ============================================================================ +14:40:32 ============================================================================ +14:40:32 Slot Id : <80> +14:40:32 Transaction Type : RESPONSE +14:40:32 Received From : +14:40:32 ============================================================================ +14:40:32 FNo. Len. Field Value +14:40:32 ============================================================================ +14:40:32 [ 1] [ 4] [0210] +14:40:32 [ 2] [ 16] [6213541000661333] +14:40:32 [ 3] [ 6] [010000] +14:40:32 [ 4] [ 12] [000100000000] +14:40:32 [ 7] [ 10] [0320143820] +14:40:32 [ 11] [ 6] [948825] +14:40:32 [ 12] [ 6] [143820] +14:40:32 [ 13] [ 4] [0320] +14:40:32 [ 15] [ 4] [0320] +14:40:32 [ 18] [ 4] [6011] +14:40:32 [ 19] [ 3] [418] +14:40:32 [ 32] [ 6] [668899] +14:40:32 [ 35] [ 32] [6213541000661333=491212016133298] +14:40:32 [ 37] [ 12] [507901565345] +14:40:32 [ 38] [ 6] [432172] +14:40:32 [ 39] [ 2] [00] +14:40:32 [ 41] [ 8] [03615001] +14:40:32 [ 49] [ 3] [418] +14:40:32 [ 54] [ 40] [0001418C0001841682200002418C000184168220] +14:40:32 ============================================================================ +14:40:32 Calculate Source COMM Id = 4 +14:40:32 ============================================================================ +14:40:32 + + +waiting on router queue for slot.... +14:40:32 ============================================================================ +14:40:32 Slot Id : <161> +14:40:32 Transaction Type : RESPONSE +14:40:32 Received From : +14:40:32 ============================================================================ +14:40:32 FNo. Len. Field Value +14:40:32 ============================================================================ +14:40:32 [ 1] [ 4] [0210] +14:40:32 [ 2] [ 16] [6688990108429307] +14:40:32 [ 3] [ 6] [010000] +14:40:32 [ 4] [ 12] [000100000000] +14:40:32 [ 11] [ 6] [773073] +14:40:32 [ 12] [ 6] [144026] +14:40:32 [ 15] [ 4] [0320] +14:40:32 [ 18] [ 4] [6011] +14:40:32 [ 32] [ 6] [621354] +14:40:32 [ 35] [ 37] [6688990108429307=44061231930780300000] +14:40:32 [ 37] [ 12] [507903499501] +14:40:32 [ 38] [ 6] [141785] +14:40:32 [ 39] [ 2] [00] +14:40:32 [ 41] [ 8] [06002200] +14:40:32 [ 49] [ 3] [418] +14:40:32 [ 54] [ 20] [0002418C000289372379] +14:40:32 ============================================================================ +14:40:32 Sending to : +14:40:32 ============================================================================ +14:40:32 + + +waiting on router queue for slot.... +14:40:34 ============================================================================ +14:40:34 Slot Id : <161> +14:40:34 Transaction Type : RESPONSE +14:40:34 Received From : +14:40:34 ============================================================================ +14:40:34 FNo. Len. Field Value +14:40:34 ============================================================================ +14:40:34 [ 1] [ 4] [0210] +14:40:34 [ 2] [ 16] [6688990108429307] +14:40:34 [ 3] [ 6] [010000] +14:40:34 [ 4] [ 12] [000100000000] +14:40:34 [ 11] [ 6] [773073] +14:40:34 [ 12] [ 6] [144026] +14:40:34 [ 15] [ 4] [0320] +14:40:34 [ 18] [ 4] [6011] +14:40:34 [ 32] [ 6] [621354] +14:40:34 [ 35] [ 37] [6688990108429307=44061231930780300000] +14:40:34 [ 37] [ 12] [507903499501] +14:40:34 [ 38] [ 6] [141785] +14:40:34 [ 39] [ 2] [00] +14:40:34 [ 41] [ 8] [06002200] +14:40:34 [ 49] [ 3] [418] +14:40:34 [ 54] [ 20] [0002418C000289372379] +14:40:34 ============================================================================ +14:40:34 Calculate Source COMM Id = 0 +14:40:34 ============================================================================ +14:40:34 + + +waiting on router queue for slot.... +14:40:34 ============================================================================ +14:40:34 Slot Id : <147> +14:40:34 Transaction Type : REQUEST +14:40:34 Received From : +14:40:34 ============================================================================ +14:40:34 FNo. Len. Field Value +14:40:34 ============================================================================ +14:40:34 [ 1] [ 4] [0200] +14:40:34 [ 2] [ 16] [6688990040120675] +14:40:34 [ 3] [ 6] [010000] +14:40:34 [ 4] [ 12] [000070000000] +14:40:34 [ 7] [ 10] [0320144029] +14:40:34 [ 11] [ 6] [773084] +14:40:34 [ 12] [ 6] [144029] +14:40:34 [ 13] [ 4] [0320] +14:40:34 [ 15] [ 4] [0320] +14:40:34 [ 18] [ 4] [6011] +14:40:34 [ 22] [ 3] [900] +14:40:34 [ 25] [ 2] [02] +14:40:34 [ 28] [ 9] [D00002000] +14:40:34 [ 32] [ 6] [621354] +14:40:34 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:40:34 [ 37] [ 12] [507904719675] +14:40:34 [ 41] [ 8] [18001000] +14:40:34 [ 42] [ 15] [NATIVE ] +14:40:34 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:40:34 [ 49] [ 3] [418] +14:40:34 [ 52] [ 16] [A6041F96050175F3] +14:40:34 ============================================================================ +14:40:34 + + +waiting on router queue for slot.... +14:40:34 Sending to : +14:40:34 ============================================================================ +14:40:34 Sending to : +14:40:34 ============================================================================ +14:40:34 ============================================================================ +14:40:34 Slot Id : <123> +14:40:34 Transaction Type : REQUEST +14:40:34 Received From : +14:40:34 ============================================================================ +14:40:34 FNo. Len. Field Value +14:40:34 ============================================================================ +14:40:34 [ 1] [ 4] [0800] +14:40:34 [ 7] [ 10] [0320215223] +14:40:34 [ 11] [ 6] [145223] +14:40:34 [ 37] [ 12] [57914145223] +14:40:34 [ 70] [ 3] [301] +14:40:34 ============================================================================ +14:40:34 + + +waiting on router queue for slot.... +14:40:34 Sending to : +14:40:34 ============================================================================ +14:40:34 ============================================================================ +14:40:34 Slot Id : <123> +14:40:34 Transaction Type : RESPONSE +14:40:34 Received From : +14:40:34 ============================================================================ +14:40:34 FNo. Len. Field Value +14:40:34 ============================================================================ +14:40:34 [ 1] [ 4] [0810] +14:40:34 [ 7] [ 10] [0320215223] +14:40:34 [ 11] [ 6] [145223] +14:40:34 [ 37] [ 12] [579141452230] +14:40:34 [ 39] [ 2] [00] +14:40:34 [ 70] [ 3] [810] +14:40:34 ============================================================================ +14:40:34 Calculate Source COMM Id = 6 +14:40:34 ============================================================================ +14:40:34 + + +waiting on router queue for slot.... +14:40:34 ============================================================================ +14:40:34 Slot Id : <147> +14:40:34 Transaction Type : REQUEST +14:40:34 Received From : +14:40:34 ============================================================================ +14:40:34 FNo. Len. Field Value +14:40:34 ============================================================================ +14:40:34 [ 1] [ 4] [0200] +14:40:34 [ 2] [ 16] [6688990040120675] +14:40:34 [ 3] [ 6] [010000] +14:40:34 [ 4] [ 12] [000070000000] +14:40:34 [ 7] [ 10] [0320144029] +14:40:34 [ 11] [ 6] [773084] +14:40:34 [ 12] [ 6] [144029] +14:40:34 [ 13] [ 4] [0320] +14:40:34 [ 15] [ 4] [0320] +14:40:34 [ 18] [ 4] [6011] +14:40:34 [ 22] [ 3] [900] +14:40:34 [ 25] [ 2] [02] +14:40:34 [ 28] [ 9] [D00002000] +14:40:34 [ 32] [ 6] [621354] +14:40:34 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:40:34 [ 37] [ 12] [507904719675] +14:40:34 [ 41] [ 8] [18001000] +14:40:34 [ 42] [ 15] [NATIVE ] +14:40:34 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:40:34 [ 49] [ 3] [418] +14:40:34 [ 52] [ 16] [A6041F96050175F3] +14:40:34 ============================================================================ +14:40:34 + + +waiting on router queue for slot.... +14:40:34 Sending to : +14:40:34 ============================================================================ +14:40:34 ============================================================================ +14:40:34 Slot Id : <147> +14:40:34 Transaction Type : REQUEST +14:40:34 Received From : +14:40:34 ============================================================================ +14:40:34 FNo. Len. Field Value +14:40:34 ============================================================================ +14:40:34 [ 1] [ 4] [0200] +14:40:34 [ 2] [ 16] [6688990040120675] +14:40:34 [ 3] [ 6] [010000] +14:40:34 [ 4] [ 12] [000070000000] +14:40:34 [ 7] [ 10] [0320144029] +14:40:34 [ 11] [ 6] [773084] +14:40:34 [ 12] [ 6] [144029] +14:40:34 [ 13] [ 4] [0320] +14:40:34 [ 15] [ 4] [0320] +14:40:34 [ 18] [ 4] [6011] +14:40:34 [ 22] [ 3] [900] +14:40:34 [ 25] [ 2] [02] +14:40:34 [ 28] [ 9] [D00002000] +14:40:34 [ 32] [ 6] [621354] +14:40:34 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:40:34 [ 37] [ 12] [507904719675] +14:40:34 [ 41] [ 8] [18001000] +14:40:34 [ 42] [ 15] [NATIVE ] +14:40:34 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:40:34 [ 49] [ 3] [418] +14:40:34 [ 52] [ 16] [03880449A9B4CDB6] +14:40:34 ============================================================================ +14:40:34 + + +waiting on router queue for slot.... +14:40:34 Sending to : <4> +14:40:34 ============================================================================ +14:40:35 ============================================================================ +14:40:35 Slot Id : <147> +14:40:35 Transaction Type : RESPONSE +14:40:35 Received From : +14:40:35 ============================================================================ +14:40:35 FNo. Len. Field Value +14:40:35 ============================================================================ +14:40:35 [ 1] [ 4] [0210] +14:40:35 [ 2] [ 16] [6688990040120675] +14:40:35 [ 3] [ 6] [010000] +14:40:35 [ 4] [ 12] [000070000000] +14:40:35 [ 11] [ 6] [773084] +14:40:35 [ 12] [ 6] [144029] +14:40:35 [ 15] [ 4] [0320] +14:40:35 [ 18] [ 4] [6011] +14:40:35 [ 32] [ 6] [621354] +14:40:35 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:40:35 [ 37] [ 12] [507904719675] +14:40:35 [ 39] [ 2] [51] +14:40:35 [ 41] [ 8] [18001000] +14:40:35 [ 49] [ 3] [418] +14:40:35 [ 54] [ 0] [] +14:40:35 ============================================================================ +14:40:35 Sending to : +14:40:35 ============================================================================ +14:40:35 + + +waiting on router queue for slot.... +14:40:37 ============================================================================ +14:40:37 Slot Id : <147> +14:40:37 Transaction Type : RESPONSE +14:40:37 Received From : +14:40:37 ============================================================================ +14:40:37 FNo. Len. Field Value +14:40:37 ============================================================================ +14:40:37 [ 1] [ 4] [0210] +14:40:37 [ 2] [ 16] [6688990040120675] +14:40:37 [ 3] [ 6] [010000] +14:40:37 [ 4] [ 12] [000070000000] +14:40:37 [ 11] [ 6] [773084] +14:40:37 [ 12] [ 6] [144029] +14:40:37 [ 15] [ 4] [0320] +14:40:37 [ 18] [ 4] [6011] +14:40:37 [ 32] [ 6] [621354] +14:40:37 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:40:37 [ 37] [ 12] [507904719675] +14:40:37 [ 39] [ 2] [51] +14:40:37 [ 41] [ 8] [18001000] +14:40:37 [ 49] [ 3] [418] +14:40:37 [ 54] [ 0] [] +14:40:37 ============================================================================ +14:40:37 Calculate Source COMM Id = 0 +14:40:37 ============================================================================ +14:40:37 + + +waiting on router queue for slot.... +14:40:41 ============================================================================ +14:40:41 Slot Id : <162> +14:40:41 Transaction Type : REQUEST +14:40:41 Received From : +14:40:41 ============================================================================ +14:40:41 FNo. Len. Field Value +14:40:41 ============================================================================ +14:40:41 [ 1] [ 4] [0800] +14:40:41 [ 7] [ 10] [0320073948] +14:40:41 [ 11] [ 6] [156833] +14:40:41 [ 70] [ 3] [301] +14:40:41 ============================================================================ +14:40:41 + + +waiting on router queue for slot.... +14:40:41 Sending to : +14:40:41 ============================================================================ +14:40:41 ============================================================================ +14:40:41 Slot Id : <162> +14:40:41 Transaction Type : RESPONSE +14:40:41 Received From : +14:40:41 ============================================================================ +14:40:41 FNo. Len. Field Value +14:40:41 ============================================================================ +14:40:41 [ 1] [ 4] [0810] +14:40:41 [ 7] [ 10] [0320073948] +14:40:41 [ 11] [ 6] [156833] +14:40:41 [ 39] [ 2] [00] +14:40:41 [ 70] [ 3] [301] +14:40:41 ============================================================================ +14:40:41 Calculate Source COMM Id = 2 +14:40:41 ============================================================================ +14:40:41 + + +waiting on router queue for slot.... +14:40:42 ============================================================================ +14:40:42 Slot Id : <122> +14:40:42 Transaction Type : REQUEST +14:40:42 Received From : +14:40:42 ============================================================================ +14:40:42 FNo. Len. Field Value +14:40:42 ============================================================================ +14:40:42 [ 1] [ 4] [0200] +14:40:42 [ 2] [ 16] [6688990603028703] +14:40:42 [ 3] [ 6] [013000] +14:40:42 [ 4] [ 12] [000100000000] +14:40:42 [ 7] [ 10] [0320144038] +14:40:42 [ 11] [ 6] [773115] +14:40:42 [ 12] [ 6] [144038] +14:40:42 [ 13] [ 4] [0320] +14:40:42 [ 15] [ 4] [0320] +14:40:42 [ 18] [ 4] [6011] +14:40:42 [ 22] [ 3] [900] +14:40:42 [ 25] [ 2] [02] +14:40:42 [ 28] [ 9] [D00002000] +14:40:42 [ 32] [ 6] [621354] +14:40:42 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:40:42 [ 37] [ 12] [507904731468] +14:40:42 [ 41] [ 8] [07000900] +14:40:42 [ 42] [ 15] [NATIVE ] +14:40:42 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:40:42 [ 49] [ 3] [418] +14:40:42 [ 52] [ 16] [C24EAF7387258530] +14:40:42 ============================================================================ +14:40:42 + + +waiting on router queue for slot.... +14:40:42 Sending to : +14:40:42 ============================================================================ +14:40:42 Sending to : +14:40:42 ============================================================================ +14:40:43 ============================================================================ +14:40:43 Slot Id : <122> +14:40:43 Transaction Type : REQUEST +14:40:43 Received From : +14:40:43 ============================================================================ +14:40:43 FNo. Len. Field Value +14:40:43 ============================================================================ +14:40:43 [ 1] [ 4] [0200] +14:40:43 [ 2] [ 16] [6688990603028703] +14:40:43 [ 3] [ 6] [013000] +14:40:43 [ 4] [ 12] [000100000000] +14:40:43 [ 7] [ 10] [0320144038] +14:40:43 [ 11] [ 6] [773115] +14:40:43 [ 12] [ 6] [144038] +14:40:43 [ 13] [ 4] [0320] +14:40:43 [ 15] [ 4] [0320] +14:40:43 [ 18] [ 4] [6011] +14:40:43 [ 22] [ 3] [900] +14:40:43 [ 25] [ 2] [02] +14:40:43 [ 28] [ 9] [D00002000] +14:40:43 [ 32] [ 6] [621354] +14:40:43 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:40:43 [ 37] [ 12] [507904731468] +14:40:43 [ 41] [ 8] [07000900] +14:40:43 [ 42] [ 15] [NATIVE ] +14:40:43 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:40:43 [ 49] [ 3] [418] +14:40:43 [ 52] [ 16] [C24EAF7387258530] +14:40:43 ============================================================================ +14:40:43 + + +waiting on router queue for slot.... +14:40:43 Sending to : +14:40:43 ============================================================================ +14:40:43 ============================================================================ +14:40:43 Slot Id : <122> +14:40:43 Transaction Type : REQUEST +14:40:43 Received From : +14:40:43 ============================================================================ +14:40:43 FNo. Len. Field Value +14:40:43 ============================================================================ +14:40:43 [ 1] [ 4] [0200] +14:40:43 [ 2] [ 16] [6688990603028703] +14:40:43 [ 3] [ 6] [013000] +14:40:43 [ 4] [ 12] [000100000000] +14:40:43 [ 7] [ 10] [0320144038] +14:40:43 [ 11] [ 6] [773115] +14:40:43 [ 12] [ 6] [144038] +14:40:43 [ 13] [ 4] [0320] +14:40:43 [ 15] [ 4] [0320] +14:40:43 [ 18] [ 4] [6011] +14:40:43 [ 22] [ 3] [900] +14:40:43 [ 25] [ 2] [02] +14:40:43 [ 28] [ 9] [D00002000] +14:40:43 [ 32] [ 6] [621354] +14:40:43 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:40:43 [ 37] [ 12] [507904731468] +14:40:43 [ 41] [ 8] [07000900] +14:40:43 [ 42] [ 15] [NATIVE ] +14:40:43 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:40:43 [ 49] [ 3] [418] +14:40:43 [ 52] [ 16] [8EED4002B97D240C] +14:40:43 ============================================================================ +14:40:43 + + +waiting on router queue for slot.... +14:40:43 Sending to : <4> +14:40:43 ============================================================================ +14:40:44 ============================================================================ +14:40:44 Slot Id : <122> +14:40:44 Transaction Type : RESPONSE +14:40:44 Received From : +14:40:44 ============================================================================ +14:40:44 FNo. Len. Field Value +14:40:44 ============================================================================ +14:40:44 [ 1] [ 4] [0210] +14:40:44 [ 2] [ 16] [6688990603028703] +14:40:44 [ 3] [ 6] [013000] +14:40:44 [ 4] [ 12] [000100000000] +14:40:44 [ 11] [ 6] [773115] +14:40:44 [ 12] [ 6] [144038] +14:40:44 [ 15] [ 4] [0320] +14:40:44 [ 18] [ 4] [6011] +14:40:44 [ 32] [ 6] [621354] +14:40:44 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:40:44 [ 37] [ 12] [507904731468] +14:40:44 [ 38] [ 6] [297043] +14:40:44 [ 39] [ 2] [00] +14:40:44 [ 41] [ 8] [07000900] +14:40:44 [ 49] [ 3] [418] +14:40:44 [ 54] [ 20] [3002418C000442346549] +14:40:44 ============================================================================ +14:40:44 Sending to : +14:40:44 ============================================================================ +14:40:44 + + +waiting on router queue for slot.... +14:40:44 ============================================================================ +14:40:44 Slot Id : <132> +14:40:44 Transaction Type : REQUEST +14:40:44 Received From : +14:40:44 ============================================================================ +14:40:44 FNo. Len. Field Value +14:40:44 ============================================================================ +14:40:44 [ 1] [ 4] [0200] +14:40:44 [ 2] [ 16] [6688990103744106] +14:40:44 [ 3] [ 6] [010000] +14:40:44 [ 4] [ 12] [000050000000] +14:40:44 [ 7] [ 10] [0320073951] +14:40:44 [ 11] [ 6] [269752] +14:40:44 [ 12] [ 6] [143951] +14:40:44 [ 13] [ 4] [0320] +14:40:44 [ 14] [ 4] [4302] +14:40:44 [ 15] [ 4] [0320] +14:40:44 [ 18] [ 4] [6011] +14:40:44 [ 19] [ 3] [418] +14:40:44 [ 22] [ 3] [021] +14:40:44 [ 25] [ 2] [01] +14:40:44 [ 28] [ 9] [D00002000] +14:40:44 [ 32] [ 6] [180893] +14:40:44 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:40:44 [ 37] [ 12] [507907269752] +14:40:44 [ 41] [ 8] [0221XKKM] +14:40:44 [ 42] [ 15] [999999 ] +14:40:44 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:40:44 [ 49] [ 3] [418] +14:40:44 [ 52] [ 16] [FA23E29B6187E46D] +14:40:44 ============================================================================ +14:40:44 + + +waiting on router queue for slot.... +14:40:44 Sending to : +14:40:44 ============================================================================ +14:40:44 Sending to : +14:40:44 ============================================================================ +14:40:45 ============================================================================ +14:40:45 Slot Id : <132> +14:40:45 Transaction Type : REQUEST +14:40:45 Received From : +14:40:45 ============================================================================ +14:40:45 FNo. Len. Field Value +14:40:45 ============================================================================ +14:40:45 [ 1] [ 4] [0200] +14:40:45 [ 2] [ 16] [6688990103744106] +14:40:45 [ 3] [ 6] [010000] +14:40:45 [ 4] [ 12] [000050000000] +14:40:45 [ 7] [ 10] [0320073951] +14:40:45 [ 11] [ 6] [269752] +14:40:45 [ 12] [ 6] [143951] +14:40:45 [ 13] [ 4] [0320] +14:40:45 [ 14] [ 4] [4302] +14:40:45 [ 15] [ 4] [0320] +14:40:45 [ 18] [ 4] [6011] +14:40:45 [ 19] [ 3] [418] +14:40:45 [ 22] [ 3] [021] +14:40:45 [ 25] [ 2] [01] +14:40:45 [ 28] [ 9] [D00002000] +14:40:45 [ 32] [ 6] [180893] +14:40:45 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:40:45 [ 37] [ 12] [507907269752] +14:40:45 [ 41] [ 8] [0221XKKM] +14:40:45 [ 42] [ 15] [999999 ] +14:40:45 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:40:45 [ 49] [ 3] [418] +14:40:45 [ 52] [ 16] [FA23E29B6187E46D] +14:40:45 ============================================================================ +14:40:45 + + +waiting on router queue for slot.... +14:40:45 Sending to : +14:40:45 ============================================================================ +14:40:45 ============================================================================ +14:40:45 Slot Id : <132> +14:40:45 Transaction Type : REQUEST +14:40:45 Received From : +14:40:45 ============================================================================ +14:40:45 FNo. Len. Field Value +14:40:45 ============================================================================ +14:40:45 [ 1] [ 4] [0200] +14:40:45 [ 2] [ 16] [6688990103744106] +14:40:45 [ 3] [ 6] [010000] +14:40:45 [ 4] [ 12] [000050000000] +14:40:45 [ 7] [ 10] [0320073951] +14:40:45 [ 11] [ 6] [269752] +14:40:45 [ 12] [ 6] [143951] +14:40:45 [ 13] [ 4] [0320] +14:40:45 [ 14] [ 4] [4302] +14:40:45 [ 15] [ 4] [0320] +14:40:45 [ 18] [ 4] [6011] +14:40:45 [ 19] [ 3] [418] +14:40:45 [ 22] [ 3] [021] +14:40:45 [ 25] [ 2] [01] +14:40:45 [ 28] [ 9] [D00002000] +14:40:45 [ 32] [ 6] [180893] +14:40:45 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:40:45 [ 37] [ 12] [507907269752] +14:40:45 [ 41] [ 8] [0221XKKM] +14:40:45 [ 42] [ 15] [999999 ] +14:40:45 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +14:40:45 [ 49] [ 3] [418] +14:40:45 [ 52] [ 16] [8ADBDF1D777B6AFA] +14:40:45 ============================================================================ +14:40:45 + + +waiting on router queue for slot.... +14:40:45 Sending to : <0> +14:40:45 ============================================================================ +14:40:45 ============================================================================ +14:40:45 Slot Id : <132> +14:40:45 Transaction Type : RESPONSE +14:40:45 Received From : +14:40:45 ============================================================================ +14:40:45 FNo. Len. Field Value +14:40:45 ============================================================================ +14:40:45 [ 1] [ 4] [0210] +14:40:45 [ 2] [ 16] [6688990103744106] +14:40:45 [ 3] [ 6] [010000] +14:40:45 [ 4] [ 12] [000050000000] +14:40:45 [ 7] [ 10] [0320073951] +14:40:45 [ 11] [ 6] [269752] +14:40:45 [ 12] [ 6] [143951] +14:40:45 [ 13] [ 4] [0320] +14:40:45 [ 15] [ 4] [0320] +14:40:45 [ 18] [ 4] [6011] +14:40:45 [ 19] [ 3] [418] +14:40:45 [ 22] [ 3] [021] +14:40:45 [ 32] [ 6] [180893] +14:40:45 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:40:45 [ 37] [ 12] [507907269752] +14:40:45 [ 39] [ 2] [14] +14:40:45 [ 41] [ 8] [0221XKKM] +14:40:45 [ 49] [ 3] [418] +14:40:45 ============================================================================ +14:40:45 Sending to : +14:40:45 ============================================================================ +14:40:45 + + +waiting on router queue for slot.... +14:40:45 ============================================================================ +14:40:45 Slot Id : <122> +14:40:45 Transaction Type : RESPONSE +14:40:45 Received From : +14:40:45 ============================================================================ +14:40:45 FNo. Len. Field Value +14:40:45 ============================================================================ +14:40:45 [ 1] [ 4] [0210] +14:40:45 [ 2] [ 16] [6688990603028703] +14:40:45 [ 3] [ 6] [013000] +14:40:45 [ 4] [ 12] [000100000000] +14:40:45 [ 11] [ 6] [773115] +14:40:45 [ 12] [ 6] [144038] +14:40:45 [ 15] [ 4] [0320] +14:40:45 [ 18] [ 4] [6011] +14:40:45 [ 32] [ 6] [621354] +14:40:45 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:40:45 [ 37] [ 12] [507904731468] +14:40:45 [ 38] [ 6] [297043] +14:40:45 [ 39] [ 2] [00] +14:40:45 [ 41] [ 8] [07000900] +14:40:45 [ 49] [ 3] [418] +14:40:45 [ 54] [ 20] [3002418C000442346549] +14:40:45 ============================================================================ +14:40:45 Calculate Source COMM Id = 0 +14:40:45 ============================================================================ +14:40:45 + + +waiting on router queue for slot.... +14:40:46 ============================================================================ +14:40:46 Slot Id : <132> +14:40:46 Transaction Type : RESPONSE +14:40:46 Received From : +14:40:46 ============================================================================ +14:40:46 FNo. Len. Field Value +14:40:46 ============================================================================ +14:40:46 [ 1] [ 4] [0210] +14:40:46 [ 2] [ 16] [6688990103744106] +14:40:46 [ 3] [ 6] [010000] +14:40:46 [ 4] [ 12] [000050000000] +14:40:46 [ 7] [ 10] [0320073951] +14:40:46 [ 11] [ 6] [269752] +14:40:46 [ 12] [ 6] [143951] +14:40:46 [ 13] [ 4] [0320] +14:40:46 [ 15] [ 4] [0320] +14:40:46 [ 18] [ 4] [6011] +14:40:46 [ 19] [ 3] [418] +14:40:46 [ 22] [ 3] [021] +14:40:46 [ 32] [ 6] [180893] +14:40:46 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:40:46 [ 37] [ 12] [507907269752] +14:40:46 [ 39] [ 2] [14] +14:40:46 [ 41] [ 8] [0221XKKM] +14:40:46 [ 49] [ 3] [418] +14:40:46 ============================================================================ +14:40:46 Calculate Source COMM Id = 2 +14:40:46 ============================================================================ +14:40:46 + + +waiting on router queue for slot.... +14:40:47 ============================================================================ +14:40:47 Slot Id : <145> +14:40:47 Transaction Type : REQUEST +14:40:47 Received From : +14:40:47 ============================================================================ +14:40:47 FNo. Len. Field Value +14:40:47 ============================================================================ +14:40:47 [ 1] [ 4] [0200] +14:40:47 [ 2] [ 16] [6213541000440092] +14:40:47 [ 3] [ 6] [011000] +14:40:47 [ 4] [ 12] [000050000000] +14:40:47 [ 7] [ 10] [0320144108] +14:40:47 [ 11] [ 6] [207399] +14:40:47 [ 12] [ 6] [144251] +14:40:47 [ 13] [ 4] [0320] +14:40:47 [ 14] [ 4] [4912] +14:40:47 [ 15] [ 4] [0320] +14:40:47 [ 18] [ 4] [6011] +14:40:47 [ 19] [ 3] [418] +14:40:47 [ 22] [ 3] [021] +14:40:47 [ 25] [ 2] [01] +14:40:47 [ 28] [ 9] [D00002000] +14:40:47 [ 32] [ 6] [198901] +14:40:47 [ 35] [ 32] [6213541000440092=491212014009056] +14:40:47 [ 37] [ 12] [507914207399] +14:40:47 [ 41] [ 8] [00002222] +14:40:47 [ 42] [ 15] [000000041002222] +14:40:47 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +14:40:47 [ 49] [ 3] [418] +14:40:47 [ 52] [ 16] [A13BD0DE8AA14D32] +14:40:47 ============================================================================ +14:40:47 + + +waiting on router queue for slot.... +14:40:47 Sending to : +14:40:47 ============================================================================ +14:40:47 Sending to : +14:40:47 ============================================================================ +14:40:48 ============================================================================ +14:40:48 Slot Id : <145> +14:40:48 Transaction Type : REQUEST +14:40:48 Received From : +14:40:48 ============================================================================ +14:40:48 FNo. Len. Field Value +14:40:48 ============================================================================ +14:40:48 [ 1] [ 4] [0200] +14:40:48 [ 2] [ 16] [6213541000440092] +14:40:48 [ 3] [ 6] [011000] +14:40:48 [ 4] [ 12] [000050000000] +14:40:48 [ 7] [ 10] [0320144108] +14:40:48 [ 11] [ 6] [207399] +14:40:48 [ 12] [ 6] [144251] +14:40:48 [ 13] [ 4] [0320] +14:40:48 [ 14] [ 4] [4912] +14:40:48 [ 15] [ 4] [0320] +14:40:48 [ 18] [ 4] [6011] +14:40:48 [ 19] [ 3] [418] +14:40:48 [ 22] [ 3] [021] +14:40:48 [ 25] [ 2] [01] +14:40:48 [ 28] [ 9] [D00002000] +14:40:48 [ 32] [ 6] [198901] +14:40:48 [ 35] [ 32] [6213541000440092=491212014009056] +14:40:48 [ 37] [ 12] [507914207399] +14:40:48 [ 41] [ 8] [00002222] +14:40:48 [ 42] [ 15] [000000041002222] +14:40:48 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +14:40:48 [ 49] [ 3] [418] +14:40:48 [ 52] [ 16] [A13BD0DE8AA14D32] +14:40:48 ============================================================================ +14:40:48 + + +waiting on router queue for slot.... +14:40:48 Sending to : +14:40:48 ============================================================================ +14:40:48 ============================================================================ +14:40:48 Slot Id : <145> +14:40:48 Transaction Type : REQUEST +14:40:48 Received From : +14:40:48 ============================================================================ +14:40:48 FNo. Len. Field Value +14:40:48 ============================================================================ +14:40:48 [ 1] [ 4] [0200] +14:40:48 [ 2] [ 16] [6213541000440092] +14:40:48 [ 3] [ 6] [011000] +14:40:48 [ 4] [ 12] [000050000000] +14:40:48 [ 7] [ 10] [0320144108] +14:40:48 [ 11] [ 6] [207399] +14:40:48 [ 12] [ 6] [144251] +14:40:48 [ 13] [ 4] [0320] +14:40:48 [ 14] [ 4] [4912] +14:40:48 [ 15] [ 4] [0320] +14:40:48 [ 18] [ 4] [6011] +14:40:48 [ 19] [ 3] [418] +14:40:48 [ 22] [ 3] [021] +14:40:48 [ 25] [ 2] [01] +14:40:48 [ 28] [ 9] [D00002000] +14:40:48 [ 32] [ 6] [198901] +14:40:48 [ 35] [ 32] [6213541000440092=491212014009056] +14:40:48 [ 37] [ 12] [507914207399] +14:40:48 [ 41] [ 8] [00002222] +14:40:48 [ 42] [ 15] [000000041002222] +14:40:48 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +14:40:48 [ 49] [ 3] [418] +14:40:48 [ 52] [ 16] [A56FC3DE830D3E6F] +14:40:48 ============================================================================ +14:40:48 + + +waiting on router queue for slot.... +14:40:48 Sending to : <0> +14:40:48 ============================================================================ +14:40:49 ============================================================================ +14:40:49 Slot Id : <145> +14:40:49 Transaction Type : RESPONSE +14:40:49 Received From : +14:40:49 ============================================================================ +14:40:49 FNo. Len. Field Value +14:40:49 ============================================================================ +14:40:49 [ 1] [ 4] [0210] +14:40:49 [ 2] [ 16] [6213541000440092] +14:40:49 [ 3] [ 6] [011000] +14:40:49 [ 4] [ 12] [000050000000] +14:40:49 [ 7] [ 10] [0320144108] +14:40:49 [ 11] [ 6] [207399] +14:40:49 [ 12] [ 6] [144251] +14:40:49 [ 13] [ 4] [0320] +14:40:49 [ 15] [ 4] [0320] +14:40:49 [ 18] [ 4] [6011] +14:40:49 [ 19] [ 3] [418] +14:40:49 [ 32] [ 6] [198901] +14:40:49 [ 35] [ 32] [6213541000440092=491212014009056] +14:40:49 [ 37] [ 12] [507914207399] +14:40:49 [ 38] [ 6] [490036] +14:40:49 [ 39] [ 2] [00] +14:40:49 [ 41] [ 8] [00002222] +14:40:49 [ 49] [ 3] [418] +14:40:49 [ 54] [ 40] [1001418C0001025469951002418C000102546995] +14:40:49 ============================================================================ +14:40:49 Sending to : +14:40:49 ============================================================================ +14:40:49 + + +waiting on router queue for slot.... +14:40:51 ============================================================================ +14:40:51 Slot Id : <145> +14:40:51 Transaction Type : RESPONSE +14:40:51 Received From : +14:40:51 ============================================================================ +14:40:51 FNo. Len. Field Value +14:40:51 ============================================================================ +14:40:51 [ 1] [ 4] [0210] +14:40:51 [ 2] [ 16] [6213541000440092] +14:40:51 [ 3] [ 6] [011000] +14:40:51 [ 4] [ 12] [000050000000] +14:40:51 [ 7] [ 10] [0320144108] +14:40:51 [ 11] [ 6] [207399] +14:40:51 [ 12] [ 6] [144251] +14:40:51 [ 13] [ 4] [0320] +14:40:51 [ 15] [ 4] [0320] +14:40:51 [ 18] [ 4] [6011] +14:40:51 [ 19] [ 3] [418] +14:40:51 [ 32] [ 6] [198901] +14:40:51 [ 35] [ 32] [6213541000440092=491212014009056] +14:40:51 [ 37] [ 12] [507914207399] +14:40:51 [ 38] [ 6] [490036] +14:40:51 [ 39] [ 2] [00] +14:40:51 [ 41] [ 8] [00002222] +14:40:51 [ 49] [ 3] [418] +14:40:51 [ 54] [ 40] [1001418C0001025469951002418C000102546995] +14:40:51 ============================================================================ +14:40:51 Calculate Source COMM Id = 5 +14:40:51 ============================================================================ +14:40:51 + + +waiting on router queue for slot.... +14:40:54 ============================================================================ +14:40:54 Slot Id : <158> +14:40:54 Transaction Type : REQUEST +14:40:54 Received From : +14:40:54 ============================================================================ +14:40:54 FNo. Len. Field Value +14:40:54 ============================================================================ +14:40:54 [ 1] [ 4] [0200] +14:40:54 [ 2] [ 16] [6688990103675904] +14:40:54 [ 3] [ 6] [012000] +14:40:54 [ 4] [ 12] [000100000000] +14:40:54 [ 7] [ 10] [0320144049] +14:40:54 [ 11] [ 6] [773156] +14:40:54 [ 12] [ 6] [144049] +14:40:54 [ 13] [ 4] [0320] +14:40:54 [ 15] [ 4] [0320] +14:40:54 [ 18] [ 4] [6011] +14:40:54 [ 22] [ 3] [900] +14:40:54 [ 25] [ 2] [02] +14:40:54 [ 28] [ 9] [D00002000] +14:40:54 [ 32] [ 6] [621354] +14:40:54 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:40:54 [ 37] [ 12] [507903372953] +14:40:54 [ 41] [ 8] [13001700] +14:40:54 [ 42] [ 15] [NATIVE ] +14:40:54 [ 43] [ 40] [Khoun District Khoun LAO] +14:40:54 [ 49] [ 3] [418] +14:40:54 [ 52] [ 16] [08DB8634C4E04069] +14:40:54 ============================================================================ +14:40:54 + + +waiting on router queue for slot.... +14:40:54 Sending to : +14:40:54 ============================================================================ +14:40:54 Sending to : +14:40:54 ============================================================================ +14:40:54 ============================================================================ +14:40:54 Slot Id : <158> +14:40:54 Transaction Type : REQUEST +14:40:54 Received From : +14:40:54 ============================================================================ +14:40:54 FNo. Len. Field Value +14:40:54 ============================================================================ +14:40:54 [ 1] [ 4] [0200] +14:40:54 [ 2] [ 16] [6688990103675904] +14:40:54 [ 3] [ 6] [012000] +14:40:54 [ 4] [ 12] [000100000000] +14:40:54 [ 7] [ 10] [0320144049] +14:40:54 [ 11] [ 6] [773156] +14:40:54 [ 12] [ 6] [144049] +14:40:54 [ 13] [ 4] [0320] +14:40:54 [ 15] [ 4] [0320] +14:40:54 [ 18] [ 4] [6011] +14:40:54 [ 22] [ 3] [900] +14:40:54 [ 25] [ 2] [02] +14:40:54 [ 28] [ 9] [D00002000] +14:40:54 [ 32] [ 6] [621354] +14:40:54 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:40:54 [ 37] [ 12] [507903372953] +14:40:54 [ 41] [ 8] [13001700] +14:40:54 [ 42] [ 15] [NATIVE ] +14:40:54 [ 43] [ 40] [Khoun District Khoun LAO] +14:40:54 [ 49] [ 3] [418] +14:40:54 [ 52] [ 16] [08DB8634C4E04069] +14:40:54 ============================================================================ +14:40:54 + + +waiting on router queue for slot.... +14:40:54 Sending to : +14:40:54 ============================================================================ +14:40:55 ============================================================================ +14:40:55 Slot Id : <158> +14:40:55 Transaction Type : REQUEST +14:40:55 Received From : +14:40:55 ============================================================================ +14:40:55 FNo. Len. Field Value +14:40:55 ============================================================================ +14:40:55 [ 1] [ 4] [0200] +14:40:55 [ 2] [ 16] [6688990103675904] +14:40:55 [ 3] [ 6] [012000] +14:40:55 [ 4] [ 12] [000100000000] +14:40:55 [ 7] [ 10] [0320144049] +14:40:55 [ 11] [ 6] [773156] +14:40:55 [ 12] [ 6] [144049] +14:40:55 [ 13] [ 4] [0320] +14:40:55 [ 15] [ 4] [0320] +14:40:55 [ 18] [ 4] [6011] +14:40:55 [ 22] [ 3] [900] +14:40:55 [ 25] [ 2] [02] +14:40:55 [ 28] [ 9] [D00002000] +14:40:55 [ 32] [ 6] [621354] +14:40:55 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:40:55 [ 37] [ 12] [507903372953] +14:40:55 [ 41] [ 8] [13001700] +14:40:55 [ 42] [ 15] [NATIVE ] +14:40:55 [ 43] [ 40] [Khoun District Khoun LAO] +14:40:55 [ 49] [ 3] [418] +14:40:55 [ 52] [ 16] [5D3D25650FA4756B] +14:40:55 ============================================================================ +14:40:55 + + +waiting on router queue for slot.... +14:40:55 Sending to : <4> +14:40:55 ============================================================================ +14:40:55 ============================================================================ +14:40:55 Slot Id : <154> +14:40:55 Transaction Type : REQUEST +14:40:55 Received From : +14:40:55 ============================================================================ +14:40:55 FNo. Len. Field Value +14:40:55 ============================================================================ +14:40:55 [ 1] [ 4] [0200] +14:40:55 [ 2] [ 16] [6688990108337500] +14:40:55 [ 3] [ 6] [012000] +14:40:55 [ 4] [ 12] [000080000000] +14:40:55 [ 7] [ 10] [0320074001] +14:40:55 [ 11] [ 6] [269754] +14:40:55 [ 12] [ 6] [144001] +14:40:55 [ 13] [ 4] [0320] +14:40:55 [ 14] [ 4] [4406] +14:40:55 [ 15] [ 4] [0320] +14:40:55 [ 18] [ 4] [6011] +14:40:55 [ 19] [ 3] [418] +14:40:55 [ 22] [ 3] [021] +14:40:55 [ 25] [ 2] [01] +14:40:55 [ 28] [ 9] [D00002000] +14:40:55 [ 32] [ 6] [180893] +14:40:55 [ 35] [ 37] [6688990108337500=44061231750057400000] +14:40:55 [ 37] [ 12] [507907269754] +14:40:55 [ 41] [ 8] [0261PSL1] +14:40:55 [ 42] [ 15] [999999 ] +14:40:55 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +14:40:55 [ 49] [ 3] [418] +14:40:55 [ 52] [ 16] [D31F1565E0A34B7A] +14:40:55 ============================================================================ +14:40:55 + + +waiting on router queue for slot.... +14:40:55 Sending to : +14:40:55 ============================================================================ +14:40:55 Sending to : +14:40:55 ============================================================================ +14:40:55 ============================================================================ +14:40:55 Slot Id : <154> +14:40:55 Transaction Type : REQUEST +14:40:55 Received From : +14:40:55 ============================================================================ +14:40:55 FNo. Len. Field Value +14:40:55 ============================================================================ +14:40:55 [ 1] [ 4] [0200] +14:40:55 [ 2] [ 16] [6688990108337500] +14:40:55 [ 3] [ 6] [012000] +14:40:55 [ 4] [ 12] [000080000000] +14:40:55 [ 7] [ 10] [0320074001] +14:40:55 [ 11] [ 6] [269754] +14:40:55 [ 12] [ 6] [144001] +14:40:55 [ 13] [ 4] [0320] +14:40:55 [ 14] [ 4] [4406] +14:40:55 [ 15] [ 4] [0320] +14:40:55 [ 18] [ 4] [6011] +14:40:55 [ 19] [ 3] [418] +14:40:55 [ 22] [ 3] [021] +14:40:55 [ 25] [ 2] [01] +14:40:55 [ 28] [ 9] [D00002000] +14:40:55 [ 32] [ 6] [180893] +14:40:55 [ 35] [ 37] [6688990108337500=44061231750057400000] +14:40:55 [ 37] [ 12] [507907269754] +14:40:55 [ 41] [ 8] [0261PSL1] +14:40:55 [ 42] [ 15] [999999 ] +14:40:55 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +14:40:55 [ 49] [ 3] [418] +14:40:55 [ 52] [ 16] [D31F1565E0A34B7A] +14:40:55 ============================================================================ +14:40:55 + + +waiting on router queue for slot.... +14:40:55 Sending to : +14:40:55 ============================================================================ +14:40:55 ============================================================================ +14:40:55 Slot Id : <154> +14:40:55 Transaction Type : REQUEST +14:40:55 Received From : +14:40:55 ============================================================================ +14:40:55 FNo. Len. Field Value +14:40:55 ============================================================================ +14:40:55 [ 1] [ 4] [0200] +14:40:55 [ 2] [ 16] [6688990108337500] +14:40:55 [ 3] [ 6] [012000] +14:40:55 [ 4] [ 12] [000080000000] +14:40:55 [ 7] [ 10] [0320074001] +14:40:55 [ 11] [ 6] [269754] +14:40:55 [ 12] [ 6] [144001] +14:40:55 [ 13] [ 4] [0320] +14:40:55 [ 14] [ 4] [4406] +14:40:55 [ 15] [ 4] [0320] +14:40:55 [ 18] [ 4] [6011] +14:40:55 [ 19] [ 3] [418] +14:40:55 [ 22] [ 3] [021] +14:40:55 [ 25] [ 2] [01] +14:40:55 [ 28] [ 9] [D00002000] +14:40:55 [ 32] [ 6] [180893] +14:40:55 [ 35] [ 37] [6688990108337500=44061231750057400000] +14:40:55 [ 37] [ 12] [507907269754] +14:40:55 [ 41] [ 8] [0261PSL1] +14:40:55 [ 42] [ 15] [999999 ] +14:40:55 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +14:40:55 [ 49] [ 3] [418] +14:40:55 [ 52] [ 16] [5AAC9CCF2FDF9615] +14:40:55 ============================================================================ +14:40:55 + + +waiting on router queue for slot.... +14:40:55 Sending to : <0> +14:40:55 ============================================================================ +14:40:55 ============================================================================ +14:40:55 Slot Id : <154> +14:40:55 Transaction Type : RESPONSE +14:40:55 Received From : +14:40:55 ============================================================================ +14:40:55 FNo. Len. Field Value +14:40:55 ============================================================================ +14:40:55 [ 1] [ 4] [0210] +14:40:55 [ 2] [ 16] [6688990108337500] +14:40:55 [ 3] [ 6] [012000] +14:40:55 [ 4] [ 12] [000080000000] +14:40:55 [ 7] [ 10] [0320074001] +14:40:55 [ 11] [ 6] [269754] +14:40:55 [ 12] [ 6] [144001] +14:40:55 [ 13] [ 4] [0320] +14:40:55 [ 15] [ 4] [0320] +14:40:55 [ 18] [ 4] [6011] +14:40:55 [ 19] [ 3] [418] +14:40:55 [ 22] [ 3] [021] +14:40:55 [ 32] [ 6] [180893] +14:40:55 [ 35] [ 37] [6688990108337500=44061231750057400000] +14:40:55 [ 37] [ 12] [507907269754] +14:40:55 [ 39] [ 2] [14] +14:40:55 [ 41] [ 8] [0261PSL1] +14:40:55 [ 49] [ 3] [418] +14:40:55 ============================================================================ +14:40:55 Sending to : +14:40:55 ============================================================================ +14:40:55 + + +waiting on router queue for slot.... +14:40:56 ============================================================================ +14:40:56 Slot Id : <158> +14:40:56 Transaction Type : RESPONSE +14:40:56 Received From : +14:40:56 ============================================================================ +14:40:56 FNo. Len. Field Value +14:40:56 ============================================================================ +14:40:56 [ 1] [ 4] [0210] +14:40:56 [ 2] [ 16] [6688990103675904] +14:40:56 [ 3] [ 6] [012000] +14:40:56 [ 4] [ 12] [000100000000] +14:40:56 [ 11] [ 6] [773156] +14:40:56 [ 12] [ 6] [144049] +14:40:56 [ 15] [ 4] [0320] +14:40:56 [ 18] [ 4] [6011] +14:40:56 [ 32] [ 6] [621354] +14:40:56 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:40:56 [ 37] [ 12] [507903372953] +14:40:56 [ 38] [ 6] [254509] +14:40:56 [ 39] [ 2] [00] +14:40:56 [ 41] [ 8] [13001700] +14:40:56 [ 49] [ 3] [418] +14:40:56 [ 54] [ 20] [2002418C000715682261] +14:40:56 ============================================================================ +14:40:56 Sending to : +14:40:56 ============================================================================ +14:40:56 + + +waiting on router queue for slot.... +14:40:56 ============================================================================ +14:40:56 Slot Id : <154> +14:40:56 Transaction Type : RESPONSE +14:40:56 Received From : +14:40:56 ============================================================================ +14:40:56 FNo. Len. Field Value +14:40:56 ============================================================================ +14:40:56 [ 1] [ 4] [0210] +14:40:56 [ 2] [ 16] [6688990108337500] +14:40:56 [ 3] [ 6] [012000] +14:40:56 [ 4] [ 12] [000080000000] +14:40:56 [ 7] [ 10] [0320074001] +14:40:56 [ 11] [ 6] [269754] +14:40:56 [ 12] [ 6] [144001] +14:40:56 [ 13] [ 4] [0320] +14:40:56 [ 15] [ 4] [0320] +14:40:56 [ 18] [ 4] [6011] +14:40:56 [ 19] [ 3] [418] +14:40:56 [ 22] [ 3] [021] +14:40:56 [ 32] [ 6] [180893] +14:40:56 [ 35] [ 37] [6688990108337500=44061231750057400000] +14:40:56 [ 37] [ 12] [507907269754] +14:40:56 [ 39] [ 2] [14] +14:40:56 [ 41] [ 8] [0261PSL1] +14:40:56 [ 49] [ 3] [418] +14:40:56 ============================================================================ +14:40:56 Calculate Source COMM Id = 2 +14:40:56 ============================================================================ +14:40:56 + + +waiting on router queue for slot.... +14:40:58 ============================================================================ +14:40:58 Slot Id : <158> +14:40:58 Transaction Type : RESPONSE +14:40:58 Received From : +14:40:58 ============================================================================ +14:40:58 FNo. Len. Field Value +14:40:58 ============================================================================ +14:40:58 [ 1] [ 4] [0210] +14:40:58 [ 2] [ 16] [6688990103675904] +14:40:58 [ 3] [ 6] [012000] +14:40:58 [ 4] [ 12] [000100000000] +14:40:58 [ 11] [ 6] [773156] +14:40:58 [ 12] [ 6] [144049] +14:40:58 [ 15] [ 4] [0320] +14:40:58 [ 18] [ 4] [6011] +14:40:58 [ 32] [ 6] [621354] +14:40:58 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:40:58 [ 37] [ 12] [507903372953] +14:40:58 [ 38] [ 6] [254509] +14:40:58 [ 39] [ 2] [00] +14:40:58 [ 41] [ 8] [13001700] +14:40:58 [ 49] [ 3] [418] +14:40:58 [ 54] [ 20] [2002418C000715682261] +14:40:58 ============================================================================ +14:40:58 Calculate Source COMM Id = 0 +14:40:58 ============================================================================ +14:40:58 + + +waiting on router queue for slot.... +14:41:02 ============================================================================ +14:41:02 Slot Id : <143> +14:41:02 Transaction Type : REQUEST +14:41:02 Received From : +14:41:02 ============================================================================ +14:41:02 FNo. Len. Field Value +14:41:02 ============================================================================ +14:41:02 [ 1] [ 4] [0800] +14:41:02 [ 2] [ 5] [02531] +14:41:02 [ 3] [ 6] [579148] +14:41:02 [ 7] [ 10] [0320074102] +14:41:02 [ 11] [ 6] [807264] +14:41:02 [ 15] [ 10] [0320074102] +14:41:02 [ 37] [ 11] [57914807264] +14:41:02 [ 70] [ 3] [001] +14:41:02 ============================================================================ +14:41:02 + + +waiting on router queue for slot.... +14:41:02 ============================================================================ +14:41:02 Slot Id : <143> +14:41:02 Transaction Type : RESPONSE +14:41:02 Received From : +14:41:02 ============================================================================ +14:41:02 FNo. Len. Field Value +14:41:02 ============================================================================ +14:41:02 [ 1] [ 4] [0810] +14:41:02 [ 7] [ 10] [0320074102] +14:41:02 [ 11] [ 6] [807264] +14:41:02 [ 15] [ 4] [0320] +14:41:02 [ 37] [ 12] [57914807264] +14:41:02 [ 39] [ 2] [00] +14:41:02 [ 70] [ 3] [001] +14:41:02 ============================================================================ +14:41:02 Sending to : +14:41:02 ============================================================================ +14:41:02 + + +waiting on router queue for slot.... +14:41:06 ============================================================================ +14:41:06 Slot Id : <166> +14:41:06 Transaction Type : REQUEST +14:41:06 Received From : +14:41:06 ============================================================================ +14:41:06 FNo. Len. Field Value +14:41:06 ============================================================================ +14:41:06 [ 1] [ 4] [0200] +14:41:06 [ 2] [ 16] [6688990103833305] +14:41:06 [ 3] [ 6] [300000] +14:41:06 [ 4] [ 12] [000000000000] +14:41:06 [ 7] [ 10] [0320144102] +14:41:06 [ 11] [ 6] [773186] +14:41:06 [ 12] [ 6] [144102] +14:41:06 [ 13] [ 4] [0320] +14:41:06 [ 15] [ 4] [0320] +14:41:06 [ 18] [ 4] [6011] +14:41:06 [ 22] [ 3] [900] +14:41:06 [ 25] [ 2] [02] +14:41:06 [ 28] [ 9] [D00000000] +14:41:06 [ 32] [ 6] [621354] +14:41:06 [ 35] [ 37] [6688990103833305=43021231330506000000] +14:41:06 [ 37] [ 12] [507904645102] +14:41:06 [ 41] [ 8] [17000900] +14:41:06 [ 42] [ 15] [NATIVE ] +14:41:06 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:41:06 [ 49] [ 3] [418] +14:41:06 [ 52] [ 16] [7C90B2A4CF85E0F8] +14:41:06 ============================================================================ +14:41:06 + + +waiting on router queue for slot.... +14:41:06 Sending to : +14:41:06 ============================================================================ +14:41:06 Sending to : +14:41:06 ============================================================================ +14:41:07 ============================================================================ +14:41:07 Slot Id : <166> +14:41:07 Transaction Type : REQUEST +14:41:07 Received From : +14:41:07 ============================================================================ +14:41:07 FNo. Len. Field Value +14:41:07 ============================================================================ +14:41:07 [ 1] [ 4] [0200] +14:41:07 [ 2] [ 16] [6688990103833305] +14:41:07 [ 3] [ 6] [300000] +14:41:07 [ 4] [ 12] [000000000000] +14:41:07 [ 7] [ 10] [0320144102] +14:41:07 [ 11] [ 6] [773186] +14:41:07 [ 12] [ 6] [144102] +14:41:07 [ 13] [ 4] [0320] +14:41:07 [ 15] [ 4] [0320] +14:41:07 [ 18] [ 4] [6011] +14:41:07 [ 22] [ 3] [900] +14:41:07 [ 25] [ 2] [02] +14:41:07 [ 28] [ 9] [D00000000] +14:41:07 [ 32] [ 6] [621354] +14:41:07 [ 35] [ 37] [6688990103833305=43021231330506000000] +14:41:07 [ 37] [ 12] [507904645102] +14:41:07 [ 41] [ 8] [17000900] +14:41:07 [ 42] [ 15] [NATIVE ] +14:41:07 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:41:07 [ 49] [ 3] [418] +14:41:07 [ 52] [ 16] [7C90B2A4CF85E0F8] +14:41:07 ============================================================================ +14:41:07 + + +waiting on router queue for slot.... +14:41:07 Sending to : +14:41:07 ============================================================================ +14:41:07 ============================================================================ +14:41:07 Slot Id : <166> +14:41:07 Transaction Type : REQUEST +14:41:07 Received From : +14:41:07 ============================================================================ +14:41:07 FNo. Len. Field Value +14:41:07 ============================================================================ +14:41:07 [ 1] [ 4] [0200] +14:41:07 [ 2] [ 16] [6688990103833305] +14:41:07 [ 3] [ 6] [300000] +14:41:07 [ 4] [ 12] [000000000000] +14:41:07 [ 7] [ 10] [0320144102] +14:41:07 [ 11] [ 6] [773186] +14:41:07 [ 12] [ 6] [144102] +14:41:07 [ 13] [ 4] [0320] +14:41:07 [ 15] [ 4] [0320] +14:41:07 [ 18] [ 4] [6011] +14:41:07 [ 22] [ 3] [900] +14:41:07 [ 25] [ 2] [02] +14:41:07 [ 28] [ 9] [D00000000] +14:41:07 [ 32] [ 6] [621354] +14:41:07 [ 35] [ 37] [6688990103833305=43021231330506000000] +14:41:07 [ 37] [ 12] [507904645102] +14:41:07 [ 41] [ 8] [17000900] +14:41:07 [ 42] [ 15] [NATIVE ] +14:41:07 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:41:07 [ 49] [ 3] [418] +14:41:07 [ 52] [ 16] [99CB69FE0E95563E] +14:41:07 ============================================================================ +14:41:07 + + +waiting on router queue for slot.... +14:41:07 Sending to : <4> +14:41:07 ============================================================================ +14:41:08 ============================================================================ +14:41:08 Slot Id : <153> +14:41:08 Transaction Type : REQUEST +14:41:08 Received From : +14:41:08 ============================================================================ +14:41:08 FNo. Len. Field Value +14:41:08 ============================================================================ +14:41:08 [ 1] [ 4] [0200] +14:41:08 [ 2] [ 16] [1808931700010158] +14:41:08 [ 3] [ 6] [301000] +14:41:08 [ 4] [ 12] [000000000000] +14:41:08 [ 7] [ 10] [0320144103] +14:41:08 [ 11] [ 6] [773188] +14:41:08 [ 12] [ 6] [144103] +14:41:08 [ 13] [ 4] [0320] +14:41:08 [ 15] [ 4] [0320] +14:41:08 [ 18] [ 4] [6011] +14:41:08 [ 22] [ 3] [900] +14:41:08 [ 25] [ 2] [02] +14:41:08 [ 28] [ 9] [D00000000] +14:41:08 [ 32] [ 6] [621354] +14:41:08 [ 35] [ 27] [1808931700010158=1803500595] +14:41:08 [ 37] [ 12] [507904795681] +14:41:08 [ 41] [ 8] [07001500] +14:41:08 [ 42] [ 15] [NATIVE ] +14:41:08 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +14:41:08 [ 49] [ 3] [418] +14:41:08 [ 52] [ 16] [B173495D66DF5D1A] +14:41:08 ============================================================================ +14:41:08 + + +waiting on router queue for slot.... +14:41:08 Sending to : +14:41:08 ============================================================================ +14:41:08 Sending to : +14:41:08 ============================================================================ +14:41:08 ============================================================================ +14:41:08 Slot Id : <166> +14:41:08 Transaction Type : RESPONSE +14:41:08 Received From : +14:41:08 ============================================================================ +14:41:08 FNo. Len. Field Value +14:41:08 ============================================================================ +14:41:08 [ 1] [ 4] [0210] +14:41:08 [ 2] [ 16] [6688990103833305] +14:41:08 [ 3] [ 6] [300000] +14:41:08 [ 4] [ 12] [000000000000] +14:41:08 [ 11] [ 6] [773186] +14:41:08 [ 12] [ 6] [144102] +14:41:08 [ 15] [ 4] [0320] +14:41:08 [ 18] [ 4] [6011] +14:41:08 [ 32] [ 6] [621354] +14:41:08 [ 35] [ 37] [6688990103833305=43021231330506000000] +14:41:08 [ 37] [ 12] [507904645102] +14:41:08 [ 38] [ 6] [496592] +14:41:08 [ 39] [ 2] [00] +14:41:08 [ 41] [ 8] [17000900] +14:41:08 [ 49] [ 3] [418] +14:41:08 [ 54] [ 20] [0002418C000300341511] +14:41:08 ============================================================================ +14:41:08 Sending to : +14:41:08 ============================================================================ +14:41:08 + + +waiting on router queue for slot.... +14:41:08 ============================================================================ +14:41:08 Slot Id : <153> +14:41:08 Transaction Type : REQUEST +14:41:08 Received From : +14:41:08 ============================================================================ +14:41:08 FNo. Len. Field Value +14:41:08 ============================================================================ +14:41:08 [ 1] [ 4] [0200] +14:41:08 [ 2] [ 16] [1808931700010158] +14:41:08 [ 3] [ 6] [301000] +14:41:08 [ 4] [ 12] [000000000000] +14:41:08 [ 7] [ 10] [0320144103] +14:41:08 [ 11] [ 6] [773188] +14:41:08 [ 12] [ 6] [144103] +14:41:08 [ 13] [ 4] [0320] +14:41:08 [ 15] [ 4] [0320] +14:41:08 [ 18] [ 4] [6011] +14:41:08 [ 22] [ 3] [900] +14:41:08 [ 25] [ 2] [02] +14:41:08 [ 28] [ 9] [D00000000] +14:41:08 [ 32] [ 6] [621354] +14:41:08 [ 35] [ 27] [1808931700010158=1803500595] +14:41:08 [ 37] [ 12] [507904795681] +14:41:08 [ 41] [ 8] [07001500] +14:41:08 [ 42] [ 15] [NATIVE ] +14:41:08 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +14:41:08 [ 49] [ 3] [418] +14:41:08 [ 52] [ 16] [B173495D66DF5D1A] +14:41:08 ============================================================================ +14:41:08 + + +waiting on router queue for slot.... +14:41:08 Sending to : +14:41:08 ============================================================================ +14:41:08 ============================================================================ +14:41:08 Slot Id : <153> +14:41:08 Transaction Type : REQUEST +14:41:08 Received From : +14:41:08 ============================================================================ +14:41:08 FNo. Len. Field Value +14:41:08 ============================================================================ +14:41:08 [ 1] [ 4] [0200] +14:41:08 [ 2] [ 16] [1808931700010158] +14:41:08 [ 3] [ 6] [301000] +14:41:08 [ 4] [ 12] [000000000000] +14:41:08 [ 7] [ 10] [0320144103] +14:41:08 [ 11] [ 6] [773188] +14:41:08 [ 12] [ 6] [144103] +14:41:08 [ 13] [ 4] [0320] +14:41:08 [ 15] [ 4] [0320] +14:41:08 [ 18] [ 4] [6011] +14:41:08 [ 22] [ 3] [900] +14:41:08 [ 25] [ 2] [02] +14:41:08 [ 28] [ 9] [D00000000] +14:41:08 [ 32] [ 6] [621354] +14:41:08 [ 35] [ 27] [1808931700010158=1803500595] +14:41:08 [ 37] [ 12] [507904795681] +14:41:08 [ 41] [ 8] [07001500] +14:41:08 [ 42] [ 15] [NATIVE ] +14:41:08 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +14:41:08 [ 49] [ 3] [418] +14:41:08 [ 52] [ 16] [C4ACF49E5F11058B] +14:41:08 ============================================================================ +14:41:08 + + +waiting on router queue for slot.... +14:41:08 Sending to : <2> +14:41:08 ============================================================================ +14:41:09 ============================================================================ +14:41:09 Slot Id : <166> +14:41:09 Transaction Type : RESPONSE +14:41:09 Received From : +14:41:09 ============================================================================ +14:41:09 FNo. Len. Field Value +14:41:09 ============================================================================ +14:41:09 [ 1] [ 4] [0210] +14:41:09 [ 2] [ 16] [6688990103833305] +14:41:09 [ 3] [ 6] [300000] +14:41:09 [ 4] [ 12] [000000000000] +14:41:09 [ 11] [ 6] [773186] +14:41:09 [ 12] [ 6] [144102] +14:41:09 [ 15] [ 4] [0320] +14:41:09 [ 18] [ 4] [6011] +14:41:09 [ 32] [ 6] [621354] +14:41:09 [ 35] [ 37] [6688990103833305=43021231330506000000] +14:41:09 [ 37] [ 12] [507904645102] +14:41:09 [ 38] [ 6] [496592] +14:41:09 [ 39] [ 2] [00] +14:41:09 [ 41] [ 8] [17000900] +14:41:09 [ 49] [ 3] [418] +14:41:09 [ 54] [ 20] [0002418C000300341511] +14:41:09 ============================================================================ +14:41:09 Calculate Source COMM Id = 0 +14:41:09 ============================================================================ +14:41:09 + + +waiting on router queue for slot.... +14:41:12 ============================================================================ +14:41:12 Slot Id : <153> +14:41:12 Transaction Type : RESPONSE +14:41:12 Received From : +14:41:12 ============================================================================ +14:41:12 FNo. Len. Field Value +14:41:12 ============================================================================ +14:41:12 [ 1] [ 4] [0210] +14:41:12 [ 2] [ 16] [1808931700010158] +14:41:12 [ 3] [ 6] [301000] +14:41:12 [ 7] [ 10] [0320144103] +14:41:12 [ 11] [ 6] [773188] +14:41:12 [ 12] [ 6] [144103] +14:41:12 [ 13] [ 4] [0320] +14:41:12 [ 14] [ 4] [1803] +14:41:12 [ 19] [ 3] [418] +14:41:12 [ 32] [ 6] [621354] +14:41:12 [ 37] [ 12] [507904795681] +14:41:12 [ 38] [ 6] [773188] +14:41:12 [ 39] [ 2] [00] +14:41:12 [ 41] [ 8] [07001500] +14:41:12 [ 49] [ 3] [418] +14:41:12 [ 52] [ 16] [C4ACF49E5F11058B] +14:41:12 [ 54] [ 20] [1002418C000307661800] +14:41:12 ============================================================================ +14:41:12 Sending to : +14:41:12 ============================================================================ +14:41:12 + + +waiting on router queue for slot.... +14:41:14 ============================================================================ +14:41:14 Slot Id : <153> +14:41:14 Transaction Type : RESPONSE +14:41:14 Received From : +14:41:14 ============================================================================ +14:41:14 FNo. Len. Field Value +14:41:14 ============================================================================ +14:41:14 [ 1] [ 4] [0210] +14:41:14 [ 2] [ 16] [1808931700010158] +14:41:14 [ 3] [ 6] [301000] +14:41:14 [ 7] [ 10] [0320144103] +14:41:14 [ 11] [ 6] [773188] +14:41:14 [ 12] [ 6] [144103] +14:41:14 [ 13] [ 4] [0320] +14:41:14 [ 14] [ 4] [1803] +14:41:14 [ 19] [ 3] [418] +14:41:14 [ 32] [ 6] [621354] +14:41:14 [ 37] [ 12] [507904795681] +14:41:14 [ 38] [ 6] [773188] +14:41:14 [ 39] [ 2] [00] +14:41:14 [ 41] [ 8] [07001500] +14:41:14 [ 49] [ 3] [418] +14:41:14 [ 52] [ 16] [C4ACF49E5F11058B] +14:41:14 [ 54] [ 20] [1002418C000307661800] +14:41:14 ============================================================================ +14:41:14 Calculate Source COMM Id = 0 +14:41:14 ============================================================================ +14:41:14 + + +waiting on router queue for slot.... +14:41:19 ============================================================================ +14:41:19 Slot Id : <133> +14:41:19 Transaction Type : REQUEST +14:41:19 Received From : +14:41:19 ============================================================================ +14:41:19 FNo. Len. Field Value +14:41:19 ============================================================================ +14:41:19 [ 1] [ 4] [0200] +14:41:19 [ 2] [ 16] [6688990040120675] +14:41:19 [ 3] [ 6] [300000] +14:41:19 [ 4] [ 12] [000000000000] +14:41:19 [ 7] [ 10] [0320144114] +14:41:19 [ 11] [ 6] [773227] +14:41:19 [ 12] [ 6] [144114] +14:41:19 [ 13] [ 4] [0320] +14:41:19 [ 15] [ 4] [0320] +14:41:19 [ 18] [ 4] [6011] +14:41:19 [ 22] [ 3] [900] +14:41:19 [ 25] [ 2] [02] +14:41:19 [ 28] [ 9] [D00000000] +14:41:19 [ 32] [ 6] [621354] +14:41:19 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:41:19 [ 37] [ 12] [507904719676] +14:41:19 [ 41] [ 8] [18001000] +14:41:19 [ 42] [ 15] [NATIVE ] +14:41:19 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:41:19 [ 49] [ 3] [418] +14:41:19 [ 52] [ 16] [A6041F96050175F3] +14:41:19 ============================================================================ +14:41:19 + + +waiting on router queue for slot.... +14:41:19 Sending to : +14:41:19 ============================================================================ +14:41:19 Sending to : +14:41:19 ============================================================================ +14:41:19 ============================================================================ +14:41:19 Slot Id : <133> +14:41:19 Transaction Type : REQUEST +14:41:19 Received From : +14:41:19 ============================================================================ +14:41:19 FNo. Len. Field Value +14:41:19 ============================================================================ +14:41:19 [ 1] [ 4] [0200] +14:41:19 [ 2] [ 16] [6688990040120675] +14:41:19 [ 3] [ 6] [300000] +14:41:19 [ 4] [ 12] [000000000000] +14:41:19 [ 7] [ 10] [0320144114] +14:41:19 [ 11] [ 6] [773227] +14:41:19 [ 12] [ 6] [144114] +14:41:19 [ 13] [ 4] [0320] +14:41:19 [ 15] [ 4] [0320] +14:41:19 [ 18] [ 4] [6011] +14:41:19 [ 22] [ 3] [900] +14:41:19 [ 25] [ 2] [02] +14:41:19 [ 28] [ 9] [D00000000] +14:41:19 [ 32] [ 6] [621354] +14:41:19 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:41:19 [ 37] [ 12] [507904719676] +14:41:19 [ 41] [ 8] [18001000] +14:41:19 [ 42] [ 15] [NATIVE ] +14:41:19 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:41:19 [ 49] [ 3] [418] +14:41:19 [ 52] [ 16] [A6041F96050175F3] +14:41:19 ============================================================================ +14:41:19 + + +waiting on router queue for slot.... +14:41:19 Sending to : +14:41:19 ============================================================================ +14:41:19 ============================================================================ +14:41:19 Slot Id : <133> +14:41:19 Transaction Type : REQUEST +14:41:19 Received From : +14:41:19 ============================================================================ +14:41:19 FNo. Len. Field Value +14:41:19 ============================================================================ +14:41:19 [ 1] [ 4] [0200] +14:41:19 [ 2] [ 16] [6688990040120675] +14:41:19 [ 3] [ 6] [300000] +14:41:19 [ 4] [ 12] [000000000000] +14:41:19 [ 7] [ 10] [0320144114] +14:41:19 [ 11] [ 6] [773227] +14:41:19 [ 12] [ 6] [144114] +14:41:19 [ 13] [ 4] [0320] +14:41:19 [ 15] [ 4] [0320] +14:41:19 [ 18] [ 4] [6011] +14:41:19 [ 22] [ 3] [900] +14:41:19 [ 25] [ 2] [02] +14:41:19 [ 28] [ 9] [D00000000] +14:41:19 [ 32] [ 6] [621354] +14:41:19 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:41:19 [ 37] [ 12] [507904719676] +14:41:19 [ 41] [ 8] [18001000] +14:41:19 [ 42] [ 15] [NATIVE ] +14:41:19 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:41:19 [ 49] [ 3] [418] +14:41:19 [ 52] [ 16] [03880449A9B4CDB6] +14:41:19 ============================================================================ +14:41:19 + + +waiting on router queue for slot.... +14:41:19 Sending to : <4> +14:41:19 ============================================================================ +14:41:20 ============================================================================ +14:41:20 Slot Id : <133> +14:41:20 Transaction Type : RESPONSE +14:41:20 Received From : +14:41:20 ============================================================================ +14:41:20 FNo. Len. Field Value +14:41:20 ============================================================================ +14:41:20 [ 1] [ 4] [0210] +14:41:20 [ 2] [ 16] [6688990040120675] +14:41:20 [ 3] [ 6] [300000] +14:41:20 [ 4] [ 12] [000000000000] +14:41:20 [ 11] [ 6] [773227] +14:41:20 [ 12] [ 6] [144114] +14:41:20 [ 15] [ 4] [0320] +14:41:20 [ 18] [ 4] [6011] +14:41:20 [ 32] [ 6] [621354] +14:41:20 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:41:20 [ 37] [ 12] [507904719676] +14:41:20 [ 38] [ 6] [948759] +14:41:20 [ 39] [ 2] [00] +14:41:20 [ 41] [ 8] [18001000] +14:41:20 [ 49] [ 3] [418] +14:41:20 [ 54] [ 20] [0002418C000069963051] +14:41:20 ============================================================================ +14:41:20 Sending to : +14:41:20 ============================================================================ +14:41:20 + + +waiting on router queue for slot.... +14:41:21 ============================================================================ +14:41:21 Slot Id : <120> +14:41:21 Transaction Type : REQUEST +14:41:21 Received From : +14:41:21 ============================================================================ +14:41:21 FNo. Len. Field Value +14:41:21 ============================================================================ +14:41:21 [ 1] [ 4] [0800] +14:41:21 [ 7] [ 10] [0320073912] +14:41:21 [ 11] [ 6] [079586] +14:41:21 [ 37] [ 12] [57914079586] +14:41:21 [ 70] [ 3] [301] +14:41:21 ============================================================================ +14:41:21 + + +waiting on router queue for slot.... +14:41:21 Sending to : +14:41:21 ============================================================================ +14:41:21 ============================================================================ +14:41:21 Slot Id : <120> +14:41:21 Transaction Type : RESPONSE +14:41:21 Received From : +14:41:21 ============================================================================ +14:41:21 FNo. Len. Field Value +14:41:21 ============================================================================ +14:41:21 [ 1] [ 4] [0810] +14:41:21 [ 7] [ 10] [0320073912] +14:41:21 [ 11] [ 6] [079586] +14:41:21 [ 37] [ 12] [579140795860] +14:41:21 [ 39] [ 2] [00] +14:41:21 [ 70] [ 3] [810] +14:41:21 ============================================================================ +14:41:21 Calculate Source COMM Id = 4 +14:41:21 ============================================================================ +14:41:21 + + +waiting on router queue for slot.... +14:41:22 ============================================================================ +14:41:22 Slot Id : <133> +14:41:22 Transaction Type : RESPONSE +14:41:22 Received From : +14:41:22 ============================================================================ +14:41:22 FNo. Len. Field Value +14:41:22 ============================================================================ +14:41:22 [ 1] [ 4] [0210] +14:41:22 [ 2] [ 16] [6688990040120675] +14:41:22 [ 3] [ 6] [300000] +14:41:22 [ 4] [ 12] [000000000000] +14:41:22 [ 11] [ 6] [773227] +14:41:22 [ 12] [ 6] [144114] +14:41:22 [ 15] [ 4] [0320] +14:41:22 [ 18] [ 4] [6011] +14:41:22 [ 32] [ 6] [621354] +14:41:22 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:41:22 [ 37] [ 12] [507904719676] +14:41:22 [ 38] [ 6] [948759] +14:41:22 [ 39] [ 2] [00] +14:41:22 [ 41] [ 8] [18001000] +14:41:22 [ 49] [ 3] [418] +14:41:22 [ 54] [ 20] [0002418C000069963051] +14:41:22 ============================================================================ +14:41:22 Calculate Source COMM Id = 0 +14:41:22 ============================================================================ +14:41:22 + + +waiting on router queue for slot.... +14:41:23 ============================================================================ +14:41:23 Slot Id : <110> +14:41:23 Transaction Type : REQUEST +14:41:23 Received From : +14:41:23 ============================================================================ +14:41:23 FNo. Len. Field Value +14:41:23 ============================================================================ +14:41:23 [ 1] [ 4] [0800] +14:41:23 [ 7] [ 10] [0320074030] +14:41:23 [ 11] [ 6] [156834] +14:41:23 [ 70] [ 3] [301] +14:41:23 ============================================================================ +14:41:23 + + +waiting on router queue for slot.... +14:41:23 Sending to : +14:41:23 ============================================================================ +14:41:23 ============================================================================ +14:41:23 Slot Id : <110> +14:41:23 Transaction Type : RESPONSE +14:41:23 Received From : +14:41:23 ============================================================================ +14:41:23 FNo. Len. Field Value +14:41:23 ============================================================================ +14:41:23 [ 1] [ 4] [0810] +14:41:23 [ 7] [ 10] [0320074030] +14:41:23 [ 11] [ 6] [156834] +14:41:23 [ 39] [ 2] [00] +14:41:23 [ 70] [ 3] [301] +14:41:23 ============================================================================ +14:41:23 Calculate Source COMM Id = 2 +14:41:23 ============================================================================ +14:41:23 + + +waiting on router queue for slot.... +14:41:35 ============================================================================ +14:41:35 Slot Id : <150> +14:41:35 Transaction Type : REQUEST +14:41:35 Received From : +14:41:35 ============================================================================ +14:41:35 FNo. Len. Field Value +14:41:35 ============================================================================ +14:41:35 [ 1] [ 4] [0800] +14:41:35 [ 7] [ 10] [0320074042] +14:41:35 [ 11] [ 6] [156835] +14:41:35 [ 70] [ 3] [301] +14:41:35 ============================================================================ +14:41:35 + + +waiting on router queue for slot.... +14:41:35 Sending to : +14:41:35 ============================================================================ +14:41:35 ============================================================================ +14:41:35 Slot Id : <150> +14:41:35 Transaction Type : RESPONSE +14:41:35 Received From : +14:41:35 ============================================================================ +14:41:35 FNo. Len. Field Value +14:41:35 ============================================================================ +14:41:35 [ 1] [ 4] [0810] +14:41:35 [ 7] [ 10] [0320074042] +14:41:35 [ 11] [ 6] [156835] +14:41:35 [ 39] [ 2] [00] +14:41:35 [ 70] [ 3] [301] +14:41:35 ============================================================================ +14:41:35 Calculate Source COMM Id = 2 +14:41:35 ============================================================================ +14:41:35 + + +waiting on router queue for slot.... +14:41:39 ============================================================================ +14:41:39 Slot Id : <142> +14:41:39 Transaction Type : REQUEST +14:41:39 Received From : +14:41:39 ============================================================================ +14:41:39 FNo. Len. Field Value +14:41:39 ============================================================================ +14:41:39 [ 1] [ 4] [0800] +14:41:39 [ 7] [ 10] [0320215328] +14:41:39 [ 11] [ 6] [145328] +14:41:39 [ 37] [ 12] [57914145328] +14:41:39 [ 70] [ 3] [301] +14:41:39 ============================================================================ +14:41:39 + + +waiting on router queue for slot.... +14:41:39 Sending to : +14:41:39 ============================================================================ +14:41:39 ============================================================================ +14:41:39 Slot Id : <142> +14:41:39 Transaction Type : RESPONSE +14:41:39 Received From : +14:41:39 ============================================================================ +14:41:39 FNo. Len. Field Value +14:41:39 ============================================================================ +14:41:39 [ 1] [ 4] [0810] +14:41:39 [ 7] [ 10] [0320215328] +14:41:39 [ 11] [ 6] [145328] +14:41:39 [ 37] [ 12] [579141453280] +14:41:39 [ 39] [ 2] [00] +14:41:39 [ 70] [ 3] [810] +14:41:39 ============================================================================ +14:41:39 Calculate Source COMM Id = 6 +14:41:39 ============================================================================ +14:41:39 + + +waiting on router queue for slot.... +14:41:47 ============================================================================ +14:41:47 Slot Id : <130> +14:41:47 Transaction Type : REQUEST +14:41:47 Received From : +14:41:47 ============================================================================ +14:41:47 FNo. Len. Field Value +14:41:47 ============================================================================ +14:41:47 [ 1] [ 4] [0200] +14:41:47 [ 2] [ 16] [6213541000661333] +14:41:47 [ 3] [ 6] [010000] +14:41:47 [ 4] [ 12] [000100000000] +14:41:47 [ 7] [ 10] [0320143937] +14:41:47 [ 11] [ 6] [948866] +14:41:47 [ 12] [ 6] [143937] +14:41:47 [ 13] [ 4] [0320] +14:41:47 [ 15] [ 4] [0320] +14:41:47 [ 18] [ 4] [6011] +14:41:47 [ 19] [ 3] [418] +14:41:47 [ 22] [ 3] [021] +14:41:47 [ 25] [ 2] [01] +14:41:47 [ 28] [ 9] [D00002000] +14:41:47 [ 32] [ 6] [668899] +14:41:47 [ 35] [ 32] [6213541000661333=491212016133298] +14:41:47 [ 37] [ 12] [507901565347] +14:41:47 [ 41] [ 8] [03615001] +14:41:47 [ 42] [ 15] [APT ] +14:41:47 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:41:47 [ 49] [ 3] [418] +14:41:47 [ 52] [ 16] [5C602BD06D3E3299] +14:41:47 ============================================================================ +14:41:47 + + +waiting on router queue for slot.... +14:41:47 Sending to : +14:41:47 ============================================================================ +14:41:47 Sending to : +14:41:47 ============================================================================ +14:41:47 ============================================================================ +14:41:47 Slot Id : <130> +14:41:47 Transaction Type : REQUEST +14:41:47 Received From : +14:41:47 ============================================================================ +14:41:47 FNo. Len. Field Value +14:41:47 ============================================================================ +14:41:47 [ 1] [ 4] [0200] +14:41:47 [ 2] [ 16] [6213541000661333] +14:41:47 [ 3] [ 6] [010000] +14:41:47 [ 4] [ 12] [000100000000] +14:41:47 [ 7] [ 10] [0320143937] +14:41:47 [ 11] [ 6] [948866] +14:41:47 [ 12] [ 6] [143937] +14:41:47 [ 13] [ 4] [0320] +14:41:47 [ 15] [ 4] [0320] +14:41:47 [ 18] [ 4] [6011] +14:41:47 [ 19] [ 3] [418] +14:41:47 [ 22] [ 3] [021] +14:41:47 [ 25] [ 2] [01] +14:41:47 [ 28] [ 9] [D00002000] +14:41:47 [ 32] [ 6] [668899] +14:41:47 [ 35] [ 32] [6213541000661333=491212016133298] +14:41:47 [ 37] [ 12] [507901565347] +14:41:47 [ 41] [ 8] [03615001] +14:41:47 [ 42] [ 15] [APT ] +14:41:47 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:41:47 [ 49] [ 3] [418] +14:41:47 [ 52] [ 16] [5C602BD06D3E3299] +14:41:47 ============================================================================ +14:41:47 + + +waiting on router queue for slot.... +14:41:47 Sending to : +14:41:47 ============================================================================ +14:41:47 ============================================================================ +14:41:47 Slot Id : <130> +14:41:47 Transaction Type : REQUEST +14:41:47 Received From : +14:41:47 ============================================================================ +14:41:47 FNo. Len. Field Value +14:41:47 ============================================================================ +14:41:47 [ 1] [ 4] [0200] +14:41:47 [ 2] [ 16] [6213541000661333] +14:41:47 [ 3] [ 6] [010000] +14:41:47 [ 4] [ 12] [000100000000] +14:41:47 [ 7] [ 10] [0320143937] +14:41:47 [ 11] [ 6] [948866] +14:41:47 [ 12] [ 6] [143937] +14:41:47 [ 13] [ 4] [0320] +14:41:47 [ 15] [ 4] [0320] +14:41:47 [ 18] [ 4] [6011] +14:41:47 [ 19] [ 3] [418] +14:41:47 [ 22] [ 3] [021] +14:41:47 [ 25] [ 2] [01] +14:41:47 [ 28] [ 9] [D00002000] +14:41:47 [ 32] [ 6] [668899] +14:41:47 [ 35] [ 32] [6213541000661333=491212016133298] +14:41:47 [ 37] [ 12] [507901565347] +14:41:47 [ 41] [ 8] [03615001] +14:41:47 [ 42] [ 15] [APT ] +14:41:47 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:41:47 [ 49] [ 3] [418] +14:41:47 [ 52] [ 16] [8B69CDB0ACB8C6C2] +14:41:47 ============================================================================ +14:41:47 + + +waiting on router queue for slot.... +14:41:47 Sending to : <0> +14:41:47 ============================================================================ +14:41:48 ============================================================================ +14:41:48 Slot Id : <130> +14:41:48 Transaction Type : RESPONSE +14:41:48 Received From : +14:41:48 ============================================================================ +14:41:48 FNo. Len. Field Value +14:41:48 ============================================================================ +14:41:48 [ 1] [ 4] [0210] +14:41:48 [ 2] [ 16] [6213541000661333] +14:41:48 [ 3] [ 6] [010000] +14:41:48 [ 4] [ 12] [000100000000] +14:41:48 [ 7] [ 10] [0320143937] +14:41:48 [ 11] [ 6] [948866] +14:41:48 [ 12] [ 6] [143937] +14:41:48 [ 13] [ 4] [0320] +14:41:48 [ 15] [ 4] [0320] +14:41:48 [ 18] [ 4] [6011] +14:41:48 [ 19] [ 3] [418] +14:41:48 [ 32] [ 6] [668899] +14:41:48 [ 35] [ 32] [6213541000661333=491212016133298] +14:41:48 [ 37] [ 12] [507901565347] +14:41:48 [ 38] [ 6] [238715] +14:41:48 [ 39] [ 2] [00] +14:41:48 [ 41] [ 8] [03615001] +14:41:48 [ 49] [ 3] [418] +14:41:48 [ 54] [ 40] [0001418C0000839682200002418C000083968220] +14:41:48 ============================================================================ +14:41:48 Sending to : +14:41:48 ============================================================================ +14:41:48 + + +waiting on router queue for slot.... +14:41:50 ============================================================================ +14:41:50 Slot Id : <130> +14:41:50 Transaction Type : RESPONSE +14:41:50 Received From : +14:41:50 ============================================================================ +14:41:50 FNo. Len. Field Value +14:41:50 ============================================================================ +14:41:50 [ 1] [ 4] [0210] +14:41:50 [ 2] [ 16] [6213541000661333] +14:41:50 [ 3] [ 6] [010000] +14:41:50 [ 4] [ 12] [000100000000] +14:41:50 [ 7] [ 10] [0320143937] +14:41:50 [ 11] [ 6] [948866] +14:41:50 [ 12] [ 6] [143937] +14:41:50 [ 13] [ 4] [0320] +14:41:50 [ 15] [ 4] [0320] +14:41:50 [ 18] [ 4] [6011] +14:41:50 [ 19] [ 3] [418] +14:41:50 [ 32] [ 6] [668899] +14:41:50 [ 35] [ 32] [6213541000661333=491212016133298] +14:41:50 [ 37] [ 12] [507901565347] +14:41:50 [ 38] [ 6] [238715] +14:41:50 [ 39] [ 2] [00] +14:41:50 [ 41] [ 8] [03615001] +14:41:50 [ 49] [ 3] [418] +14:41:50 [ 54] [ 40] [0001418C0000839682200002418C000083968220] +14:41:50 ============================================================================ +14:41:50 Calculate Source COMM Id = 4 +14:41:50 ============================================================================ +14:41:50 + + +waiting on router queue for slot.... +14:41:51 ============================================================================ +14:41:51 Slot Id : <167> +14:41:51 Transaction Type : REQUEST +14:41:51 Received From : +14:41:51 ============================================================================ +14:41:51 FNo. Len. Field Value +14:41:51 ============================================================================ +14:41:51 [ 1] [ 4] [0200] +14:41:51 [ 2] [ 16] [6213545000687479] +14:41:51 [ 3] [ 6] [301000] +14:41:51 [ 7] [ 10] [0320074058] +14:41:51 [ 11] [ 6] [269761] +14:41:51 [ 12] [ 6] [144058] +14:41:51 [ 13] [ 4] [0320] +14:41:51 [ 14] [ 4] [4912] +14:41:51 [ 15] [ 4] [0320] +14:41:51 [ 18] [ 4] [6011] +14:41:51 [ 19] [ 3] [418] +14:41:51 [ 22] [ 3] [021] +14:41:51 [ 25] [ 2] [01] +14:41:51 [ 32] [ 6] [180893] +14:41:51 [ 35] [ 32] [6213545000687479=491212018747139] +14:41:51 [ 37] [ 12] [507907269761] +14:41:51 [ 41] [ 8] [0363CPSH] +14:41:51 [ 42] [ 15] [999999 ] +14:41:51 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +14:41:51 [ 49] [ 3] [418] +14:41:51 [ 52] [ 16] [84929276D148A80B] +14:41:51 ============================================================================ +14:41:51 + + +waiting on router queue for slot.... +14:41:51 Sending to : +14:41:51 ============================================================================ +14:41:51 Sending to : +14:41:51 ============================================================================ +14:41:51 ============================================================================ +14:41:51 Slot Id : <159> +14:41:51 Transaction Type : REQUEST +14:41:51 Received From : +14:41:51 ============================================================================ +14:41:51 FNo. Len. Field Value +14:41:51 ============================================================================ +14:41:51 [ 1] [ 4] [0800] +14:41:51 [ 7] [ 10] [0320074058] +14:41:51 [ 11] [ 6] [156836] +14:41:51 [ 70] [ 3] [301] +14:41:51 ============================================================================ +14:41:51 + + +waiting on router queue for slot.... +14:41:51 Sending to : +14:41:51 ============================================================================ +14:41:51 ============================================================================ +14:41:51 Slot Id : <159> +14:41:51 Transaction Type : RESPONSE +14:41:51 Received From : +14:41:51 ============================================================================ +14:41:51 FNo. Len. Field Value +14:41:51 ============================================================================ +14:41:51 [ 1] [ 4] [0810] +14:41:51 [ 7] [ 10] [0320074058] +14:41:51 [ 11] [ 6] [156836] +14:41:51 [ 39] [ 2] [00] +14:41:51 [ 70] [ 3] [301] +14:41:51 ============================================================================ +14:41:51 Calculate Source COMM Id = 2 +14:41:51 ============================================================================ +14:41:51 + + +waiting on router queue for slot.... +14:41:51 ============================================================================ +14:41:51 Slot Id : <167> +14:41:51 Transaction Type : REQUEST +14:41:51 Received From : +14:41:51 ============================================================================ +14:41:51 FNo. Len. Field Value +14:41:51 ============================================================================ +14:41:51 [ 1] [ 4] [0200] +14:41:51 [ 2] [ 16] [6213545000687479] +14:41:51 [ 3] [ 6] [301000] +14:41:51 [ 7] [ 10] [0320074058] +14:41:51 [ 11] [ 6] [269761] +14:41:51 [ 12] [ 6] [144058] +14:41:51 [ 13] [ 4] [0320] +14:41:51 [ 14] [ 4] [4912] +14:41:51 [ 15] [ 4] [0320] +14:41:51 [ 18] [ 4] [6011] +14:41:51 [ 19] [ 3] [418] +14:41:51 [ 22] [ 3] [021] +14:41:51 [ 25] [ 2] [01] +14:41:51 [ 32] [ 6] [180893] +14:41:51 [ 35] [ 32] [6213545000687479=491212018747139] +14:41:51 [ 37] [ 12] [507907269761] +14:41:51 [ 41] [ 8] [0363CPSH] +14:41:51 [ 42] [ 15] [999999 ] +14:41:51 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +14:41:51 [ 49] [ 3] [418] +14:41:51 [ 52] [ 16] [84929276D148A80B] +14:41:51 ============================================================================ +14:41:51 + + +waiting on router queue for slot.... +14:41:51 Sending to : +14:41:51 ============================================================================ +14:41:51 ============================================================================ +14:41:51 Slot Id : <167> +14:41:51 Transaction Type : REQUEST +14:41:51 Received From : +14:41:51 ============================================================================ +14:41:51 FNo. Len. Field Value +14:41:51 ============================================================================ +14:41:51 [ 1] [ 4] [0200] +14:41:51 [ 2] [ 16] [6213545000687479] +14:41:51 [ 3] [ 6] [301000] +14:41:51 [ 7] [ 10] [0320074058] +14:41:51 [ 11] [ 6] [269761] +14:41:51 [ 12] [ 6] [144058] +14:41:51 [ 13] [ 4] [0320] +14:41:51 [ 14] [ 4] [4912] +14:41:51 [ 15] [ 4] [0320] +14:41:51 [ 18] [ 4] [6011] +14:41:51 [ 19] [ 3] [418] +14:41:51 [ 22] [ 3] [021] +14:41:51 [ 25] [ 2] [01] +14:41:51 [ 32] [ 6] [180893] +14:41:51 [ 35] [ 32] [6213545000687479=491212018747139] +14:41:51 [ 37] [ 12] [507907269761] +14:41:51 [ 41] [ 8] [0363CPSH] +14:41:51 [ 42] [ 15] [999999 ] +14:41:51 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +14:41:51 [ 49] [ 3] [418] +14:41:51 [ 52] [ 16] [A7FF84CA1E7EBCB9] +14:41:51 ============================================================================ +14:41:51 + + +waiting on router queue for slot.... +14:41:51 Sending to : <0> +14:41:51 ============================================================================ +14:41:52 ============================================================================ +14:41:52 Slot Id : <167> +14:41:52 Transaction Type : RESPONSE +14:41:52 Received From : +14:41:52 ============================================================================ +14:41:52 FNo. Len. Field Value +14:41:52 ============================================================================ +14:41:52 [ 1] [ 4] [0210] +14:41:52 [ 2] [ 16] [6213545000687479] +14:41:52 [ 3] [ 6] [301000] +14:41:52 [ 4] [ 12] [000000000000] +14:41:52 [ 7] [ 10] [0320074058] +14:41:52 [ 11] [ 6] [269761] +14:41:52 [ 12] [ 6] [144058] +14:41:52 [ 13] [ 4] [0320] +14:41:52 [ 15] [ 4] [0320] +14:41:52 [ 18] [ 4] [6011] +14:41:52 [ 19] [ 3] [418] +14:41:52 [ 32] [ 6] [180893] +14:41:52 [ 35] [ 32] [6213545000687479=491212018747139] +14:41:52 [ 37] [ 12] [507907269761] +14:41:52 [ 38] [ 6] [801006] +14:41:52 [ 39] [ 2] [00] +14:41:52 [ 41] [ 8] [0363CPSH] +14:41:52 [ 49] [ 3] [418] +14:41:52 [ 54] [ 40] [1001418C0001474289431002418C000147428943] +14:41:52 ============================================================================ +14:41:52 Sending to : +14:41:52 ============================================================================ +14:41:52 + + +waiting on router queue for slot.... +14:41:53 ============================================================================ +14:41:53 Slot Id : <137> +14:41:53 Transaction Type : REQUEST +14:41:53 Received From : +14:41:53 ============================================================================ +14:41:53 FNo. Len. Field Value +14:41:53 ============================================================================ +14:41:53 [ 1] [ 4] [0200] +14:41:53 [ 2] [ 16] [6688990040157180] +14:41:53 [ 3] [ 6] [011000] +14:41:53 [ 4] [ 12] [000074000000] +14:41:53 [ 7] [ 10] [0320144148] +14:41:53 [ 11] [ 6] [773345] +14:41:53 [ 12] [ 6] [144148] +14:41:53 [ 13] [ 4] [0320] +14:41:53 [ 15] [ 4] [0320] +14:41:53 [ 18] [ 4] [6011] +14:41:53 [ 22] [ 3] [900] +14:41:53 [ 25] [ 2] [02] +14:41:53 [ 28] [ 9] [D00002000] +14:41:53 [ 32] [ 6] [621354] +14:41:53 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:41:53 [ 37] [ 12] [507902539899] +14:41:53 [ 41] [ 8] [05003600] +14:41:53 [ 42] [ 15] [NATIVE ] +14:41:53 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:41:53 [ 49] [ 3] [418] +14:41:53 [ 52] [ 16] [5548B954CB1804D3] +14:41:53 ============================================================================ +14:41:53 + + +waiting on router queue for slot.... +14:41:53 Sending to : +14:41:53 ============================================================================ +14:41:53 Sending to : +14:41:53 ============================================================================ +14:41:53 ============================================================================ +14:41:53 Slot Id : <137> +14:41:53 Transaction Type : REQUEST +14:41:53 Received From : +14:41:53 ============================================================================ +14:41:53 FNo. Len. Field Value +14:41:53 ============================================================================ +14:41:53 [ 1] [ 4] [0200] +14:41:53 [ 2] [ 16] [6688990040157180] +14:41:53 [ 3] [ 6] [011000] +14:41:53 [ 4] [ 12] [000074000000] +14:41:53 [ 7] [ 10] [0320144148] +14:41:53 [ 11] [ 6] [773345] +14:41:53 [ 12] [ 6] [144148] +14:41:53 [ 13] [ 4] [0320] +14:41:53 [ 15] [ 4] [0320] +14:41:53 [ 18] [ 4] [6011] +14:41:53 [ 22] [ 3] [900] +14:41:53 [ 25] [ 2] [02] +14:41:53 [ 28] [ 9] [D00002000] +14:41:53 [ 32] [ 6] [621354] +14:41:53 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:41:53 [ 37] [ 12] [507902539899] +14:41:53 [ 41] [ 8] [05003600] +14:41:53 [ 42] [ 15] [NATIVE ] +14:41:53 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:41:53 [ 49] [ 3] [418] +14:41:53 [ 52] [ 16] [5548B954CB1804D3] +14:41:53 ============================================================================ +14:41:53 + + +waiting on router queue for slot.... +14:41:53 Sending to : +14:41:53 ============================================================================ +14:41:53 ============================================================================ +14:41:53 Slot Id : <137> +14:41:53 Transaction Type : REQUEST +14:41:53 Received From : +14:41:53 ============================================================================ +14:41:53 FNo. Len. Field Value +14:41:53 ============================================================================ +14:41:53 [ 1] [ 4] [0200] +14:41:53 [ 2] [ 16] [6688990040157180] +14:41:53 [ 3] [ 6] [011000] +14:41:53 [ 4] [ 12] [000074000000] +14:41:53 [ 7] [ 10] [0320144148] +14:41:53 [ 11] [ 6] [773345] +14:41:53 [ 12] [ 6] [144148] +14:41:53 [ 13] [ 4] [0320] +14:41:53 [ 15] [ 4] [0320] +14:41:53 [ 18] [ 4] [6011] +14:41:53 [ 22] [ 3] [900] +14:41:53 [ 25] [ 2] [02] +14:41:53 [ 28] [ 9] [D00002000] +14:41:53 [ 32] [ 6] [621354] +14:41:53 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:41:53 [ 37] [ 12] [507902539899] +14:41:53 [ 41] [ 8] [05003600] +14:41:53 [ 42] [ 15] [NATIVE ] +14:41:53 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:41:53 [ 49] [ 3] [418] +14:41:53 [ 52] [ 16] [C235E6F344B8EC2D] +14:41:53 ============================================================================ +14:41:53 + + +waiting on router queue for slot.... +14:41:53 Sending to : <4> +14:41:53 ============================================================================ +14:41:53 ============================================================================ +14:41:53 Slot Id : <137> +14:41:53 Transaction Type : RESPONSE +14:41:53 Received From : +14:41:53 ============================================================================ +14:41:53 FNo. Len. Field Value +14:41:53 ============================================================================ +14:41:53 [ 1] [ 4] [0210] +14:41:53 [ 2] [ 16] [6688990040157180] +14:41:53 [ 3] [ 6] [011000] +14:41:53 [ 4] [ 12] [000074000000] +14:41:53 [ 7] [ 10] [0320144148] +14:41:53 [ 11] [ 6] [773345] +14:41:53 [ 12] [ 6] [144148] +14:41:53 [ 13] [ 4] [0320] +14:41:53 [ 15] [ 4] [0320] +14:41:53 [ 18] [ 4] [6011] +14:41:53 [ 22] [ 3] [021] +14:41:53 [ 32] [ 6] [621354] +14:41:53 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:41:53 [ 37] [ 12] [507902539899] +14:41:53 [ 39] [ 2] [62] +14:41:53 [ 41] [ 8] [05003600] +14:41:53 [ 49] [ 3] [418] +14:41:53 ============================================================================ +14:41:53 Sending to : +14:41:53 ============================================================================ +14:41:53 + + +waiting on router queue for slot.... +14:41:54 ============================================================================ +14:41:54 Slot Id : <167> +14:41:54 Transaction Type : RESPONSE +14:41:54 Received From : +14:41:54 ============================================================================ +14:41:54 FNo. Len. Field Value +14:41:54 ============================================================================ +14:41:54 [ 1] [ 4] [0210] +14:41:54 [ 2] [ 16] [6213545000687479] +14:41:54 [ 3] [ 6] [301000] +14:41:54 [ 4] [ 12] [000000000000] +14:41:54 [ 7] [ 10] [0320074058] +14:41:54 [ 11] [ 6] [269761] +14:41:54 [ 12] [ 6] [144058] +14:41:54 [ 13] [ 4] [0320] +14:41:54 [ 15] [ 4] [0320] +14:41:54 [ 18] [ 4] [6011] +14:41:54 [ 19] [ 3] [418] +14:41:54 [ 32] [ 6] [180893] +14:41:54 [ 35] [ 32] [6213545000687479=491212018747139] +14:41:54 [ 37] [ 12] [507907269761] +14:41:54 [ 38] [ 6] [801006] +14:41:54 [ 39] [ 2] [00] +14:41:54 [ 41] [ 8] [0363CPSH] +14:41:54 [ 49] [ 3] [418] +14:41:54 [ 54] [ 40] [1001418C0001474289431002418C000147428943] +14:41:54 ============================================================================ +14:41:54 Calculate Source COMM Id = 2 +14:41:54 ============================================================================ +14:41:54 + + +waiting on router queue for slot.... +14:41:54 ============================================================================ +14:41:54 Slot Id : <175> +14:41:54 Transaction Type : REQUEST +14:41:54 Received From : +14:41:54 ============================================================================ +14:41:54 FNo. Len. Field Value +14:41:54 ============================================================================ +14:41:54 [ 1] [ 4] [0200] +14:41:54 [ 2] [ 16] [6688990108429307] +14:41:54 [ 3] [ 6] [010000] +14:41:54 [ 4] [ 12] [000020000000] +14:41:54 [ 7] [ 10] [0320144149] +14:41:54 [ 11] [ 6] [773348] +14:41:54 [ 12] [ 6] [144149] +14:41:54 [ 13] [ 4] [0320] +14:41:54 [ 15] [ 4] [0320] +14:41:54 [ 18] [ 4] [6011] +14:41:54 [ 22] [ 3] [900] +14:41:54 [ 25] [ 2] [02] +14:41:54 [ 28] [ 9] [D00002000] +14:41:54 [ 32] [ 6] [621354] +14:41:54 [ 35] [ 37] [6688990108429307=44061231930780300000] +14:41:54 [ 37] [ 12] [507903499503] +14:41:54 [ 41] [ 8] [06002200] +14:41:54 [ 42] [ 15] [NATIVE ] +14:41:54 [ 43] [ 40] [Beng Market Beng LAO] +14:41:54 [ 49] [ 3] [418] +14:41:54 [ 52] [ 16] [C447EFA50FF059ED] +14:41:54 ============================================================================ +14:41:54 + + +waiting on router queue for slot.... +14:41:54 Sending to : +14:41:54 ============================================================================ +14:41:54 Sending to : +14:41:54 ============================================================================ +14:41:54 ============================================================================ +14:41:54 Slot Id : <175> +14:41:54 Transaction Type : REQUEST +14:41:54 Received From : +14:41:54 ============================================================================ +14:41:54 FNo. Len. Field Value +14:41:54 ============================================================================ +14:41:54 [ 1] [ 4] [0200] +14:41:54 [ 2] [ 16] [6688990108429307] +14:41:54 [ 3] [ 6] [010000] +14:41:54 [ 4] [ 12] [000020000000] +14:41:54 [ 7] [ 10] [0320144149] +14:41:54 [ 11] [ 6] [773348] +14:41:54 [ 12] [ 6] [144149] +14:41:54 [ 13] [ 4] [0320] +14:41:54 [ 15] [ 4] [0320] +14:41:54 [ 18] [ 4] [6011] +14:41:54 [ 22] [ 3] [900] +14:41:54 [ 25] [ 2] [02] +14:41:54 [ 28] [ 9] [D00002000] +14:41:54 [ 32] [ 6] [621354] +14:41:54 [ 35] [ 37] [6688990108429307=44061231930780300000] +14:41:54 [ 37] [ 12] [507903499503] +14:41:54 [ 41] [ 8] [06002200] +14:41:54 [ 42] [ 15] [NATIVE ] +14:41:54 [ 43] [ 40] [Beng Market Beng LAO] +14:41:54 [ 49] [ 3] [418] +14:41:54 [ 52] [ 16] [C447EFA50FF059ED] +14:41:54 ============================================================================ +14:41:54 + + +waiting on router queue for slot.... +14:41:54 Sending to : +14:41:54 ============================================================================ +14:41:54 ============================================================================ +14:41:54 Slot Id : <175> +14:41:54 Transaction Type : REQUEST +14:41:54 Received From : +14:41:54 ============================================================================ +14:41:54 FNo. Len. Field Value +14:41:54 ============================================================================ +14:41:54 [ 1] [ 4] [0200] +14:41:54 [ 2] [ 16] [6688990108429307] +14:41:54 [ 3] [ 6] [010000] +14:41:54 [ 4] [ 12] [000020000000] +14:41:54 [ 7] [ 10] [0320144149] +14:41:54 [ 11] [ 6] [773348] +14:41:54 [ 12] [ 6] [144149] +14:41:54 [ 13] [ 4] [0320] +14:41:54 [ 15] [ 4] [0320] +14:41:54 [ 18] [ 4] [6011] +14:41:54 [ 22] [ 3] [900] +14:41:54 [ 25] [ 2] [02] +14:41:54 [ 28] [ 9] [D00002000] +14:41:54 [ 32] [ 6] [621354] +14:41:54 [ 35] [ 37] [6688990108429307=44061231930780300000] +14:41:54 [ 37] [ 12] [507903499503] +14:41:54 [ 41] [ 8] [06002200] +14:41:54 [ 42] [ 15] [NATIVE ] +14:41:54 [ 43] [ 40] [Beng Market Beng LAO] +14:41:54 [ 49] [ 3] [418] +14:41:54 [ 52] [ 16] [2243FA4460D847A1] +14:41:54 ============================================================================ +14:41:54 + + +waiting on router queue for slot.... +14:41:54 Sending to : <4> +14:41:54 ============================================================================ +14:41:55 ============================================================================ +14:41:55 Slot Id : <137> +14:41:55 Transaction Type : RESPONSE +14:41:55 Received From : +14:41:55 ============================================================================ +14:41:55 FNo. Len. Field Value +14:41:55 ============================================================================ +14:41:55 [ 1] [ 4] [0210] +14:41:55 [ 2] [ 16] [6688990040157180] +14:41:55 [ 3] [ 6] [011000] +14:41:55 [ 4] [ 12] [000074000000] +14:41:55 [ 7] [ 10] [0320144148] +14:41:55 [ 11] [ 6] [773345] +14:41:55 [ 12] [ 6] [144148] +14:41:55 [ 13] [ 4] [0320] +14:41:55 [ 15] [ 4] [0320] +14:41:55 [ 18] [ 4] [6011] +14:41:55 [ 22] [ 3] [021] +14:41:55 [ 32] [ 6] [621354] +14:41:55 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:41:55 [ 37] [ 12] [507902539899] +14:41:55 [ 39] [ 2] [62] +14:41:55 [ 41] [ 8] [05003600] +14:41:55 [ 49] [ 3] [418] +14:41:55 ============================================================================ +14:41:55 Calculate Source COMM Id = 0 +14:41:55 ============================================================================ +14:41:55 + + +waiting on router queue for slot.... +14:41:55 ============================================================================ +14:41:55 Slot Id : <175> +14:41:55 Transaction Type : RESPONSE +14:41:55 Received From : +14:41:55 ============================================================================ +14:41:55 FNo. Len. Field Value +14:41:55 ============================================================================ +14:41:55 [ 1] [ 4] [0210] +14:41:55 [ 2] [ 16] [6688990108429307] +14:41:55 [ 3] [ 6] [010000] +14:41:55 [ 4] [ 12] [000020000000] +14:41:55 [ 11] [ 6] [773348] +14:41:55 [ 12] [ 6] [144149] +14:41:55 [ 15] [ 4] [0320] +14:41:55 [ 18] [ 4] [6011] +14:41:55 [ 32] [ 6] [621354] +14:41:55 [ 35] [ 37] [6688990108429307=44061231930780300000] +14:41:55 [ 37] [ 12] [507903499503] +14:41:55 [ 38] [ 6] [856020] +14:41:55 [ 39] [ 2] [00] +14:41:55 [ 41] [ 8] [06002200] +14:41:55 [ 49] [ 3] [418] +14:41:55 [ 54] [ 20] [0002418C000269172379] +14:41:55 ============================================================================ +14:41:55 Sending to : +14:41:55 ============================================================================ +14:41:55 + + +waiting on router queue for slot.... +14:41:56 ============================================================================ +14:41:56 Slot Id : <146> +14:41:56 Transaction Type : REQUEST +14:41:56 Received From : +14:41:56 ============================================================================ +14:41:56 FNo. Len. Field Value +14:41:56 ============================================================================ +14:41:56 [ 1] [ 4] [0200] +14:41:56 [ 2] [ 16] [6688990103833305] +14:41:56 [ 3] [ 6] [300000] +14:41:56 [ 4] [ 12] [000000000000] +14:41:56 [ 7] [ 10] [0320144151] +14:41:56 [ 11] [ 6] [773352] +14:41:56 [ 12] [ 6] [144151] +14:41:56 [ 13] [ 4] [0320] +14:41:56 [ 15] [ 4] [0320] +14:41:56 [ 18] [ 4] [6011] +14:41:56 [ 22] [ 3] [900] +14:41:56 [ 25] [ 2] [02] +14:41:56 [ 28] [ 9] [D00000000] +14:41:56 [ 32] [ 6] [621354] +14:41:56 [ 35] [ 37] [6688990103833305=43021231330506000000] +14:41:56 [ 37] [ 12] [507904645103] +14:41:56 [ 41] [ 8] [17000900] +14:41:56 [ 42] [ 15] [NATIVE ] +14:41:56 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:41:56 [ 49] [ 3] [418] +14:41:56 [ 52] [ 16] [7C90B2A4CF85E0F8] +14:41:56 ============================================================================ +14:41:56 + + +waiting on router queue for slot.... +14:41:56 Sending to : +14:41:56 ============================================================================ +14:41:56 Sending to : +14:41:56 ============================================================================ +14:41:56 ============================================================================ +14:41:56 Slot Id : <146> +14:41:56 Transaction Type : REQUEST +14:41:56 Received From : +14:41:56 ============================================================================ +14:41:56 FNo. Len. Field Value +14:41:56 ============================================================================ +14:41:56 [ 1] [ 4] [0200] +14:41:56 [ 2] [ 16] [6688990103833305] +14:41:56 [ 3] [ 6] [300000] +14:41:56 [ 4] [ 12] [000000000000] +14:41:56 [ 7] [ 10] [0320144151] +14:41:56 [ 11] [ 6] [773352] +14:41:56 [ 12] [ 6] [144151] +14:41:56 [ 13] [ 4] [0320] +14:41:56 [ 15] [ 4] [0320] +14:41:56 [ 18] [ 4] [6011] +14:41:56 [ 22] [ 3] [900] +14:41:56 [ 25] [ 2] [02] +14:41:56 [ 28] [ 9] [D00000000] +14:41:56 [ 32] [ 6] [621354] +14:41:56 [ 35] [ 37] [6688990103833305=43021231330506000000] +14:41:56 [ 37] [ 12] [507904645103] +14:41:56 [ 41] [ 8] [17000900] +14:41:56 [ 42] [ 15] [NATIVE ] +14:41:56 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:41:56 [ 49] [ 3] [418] +14:41:56 [ 52] [ 16] [7C90B2A4CF85E0F8] +14:41:56 ============================================================================ +14:41:56 + + +waiting on router queue for slot.... +14:41:56 Sending to : +14:41:56 ============================================================================ +14:41:56 ============================================================================ +14:41:56 Slot Id : <146> +14:41:56 Transaction Type : REQUEST +14:41:56 Received From : +14:41:56 ============================================================================ +14:41:56 FNo. Len. Field Value +14:41:56 ============================================================================ +14:41:56 [ 1] [ 4] [0200] +14:41:56 [ 2] [ 16] [6688990103833305] +14:41:56 [ 3] [ 6] [300000] +14:41:56 [ 4] [ 12] [000000000000] +14:41:56 [ 7] [ 10] [0320144151] +14:41:56 [ 11] [ 6] [773352] +14:41:56 [ 12] [ 6] [144151] +14:41:56 [ 13] [ 4] [0320] +14:41:56 [ 15] [ 4] [0320] +14:41:56 [ 18] [ 4] [6011] +14:41:56 [ 22] [ 3] [900] +14:41:56 [ 25] [ 2] [02] +14:41:56 [ 28] [ 9] [D00000000] +14:41:56 [ 32] [ 6] [621354] +14:41:56 [ 35] [ 37] [6688990103833305=43021231330506000000] +14:41:56 [ 37] [ 12] [507904645103] +14:41:56 [ 41] [ 8] [17000900] +14:41:56 [ 42] [ 15] [NATIVE ] +14:41:56 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +14:41:56 [ 49] [ 3] [418] +14:41:56 [ 52] [ 16] [99CB69FE0E95563E] +14:41:56 ============================================================================ +14:41:56 + + +waiting on router queue for slot.... +14:41:56 Sending to : <4> +14:41:56 ============================================================================ +14:41:57 ============================================================================ +14:41:57 Slot Id : <175> +14:41:57 Transaction Type : RESPONSE +14:41:57 Received From : +14:41:57 ============================================================================ +14:41:57 FNo. Len. Field Value +14:41:57 ============================================================================ +14:41:57 [ 1] [ 4] [0210] +14:41:57 [ 2] [ 16] [6688990108429307] +14:41:57 [ 3] [ 6] [010000] +14:41:57 [ 4] [ 12] [000020000000] +14:41:57 [ 11] [ 6] [773348] +14:41:57 [ 12] [ 6] [144149] +14:41:57 [ 15] [ 4] [0320] +14:41:57 [ 18] [ 4] [6011] +14:41:57 [ 32] [ 6] [621354] +14:41:57 [ 35] [ 37] [6688990108429307=44061231930780300000] +14:41:57 [ 37] [ 12] [507903499503] +14:41:57 [ 38] [ 6] [856020] +14:41:57 [ 39] [ 2] [00] +14:41:57 [ 41] [ 8] [06002200] +14:41:57 [ 49] [ 3] [418] +14:41:57 [ 54] [ 20] [0002418C000269172379] +14:41:57 ============================================================================ +14:41:57 Calculate Source COMM Id = 0 +14:41:57 ============================================================================ +14:41:57 + + +waiting on router queue for slot.... +14:41:57 ============================================================================ +14:41:57 Slot Id : <146> +14:41:57 Transaction Type : RESPONSE +14:41:57 Received From : +14:41:57 ============================================================================ +14:41:57 FNo. Len. Field Value +14:41:57 ============================================================================ +14:41:57 [ 1] [ 4] [0210] +14:41:57 [ 2] [ 16] [6688990103833305] +14:41:57 [ 3] [ 6] [300000] +14:41:57 [ 4] [ 12] [000000000000] +14:41:57 [ 11] [ 6] [773352] +14:41:57 [ 12] [ 6] [144151] +14:41:57 [ 15] [ 4] [0320] +14:41:57 [ 18] [ 4] [6011] +14:41:57 [ 32] [ 6] [621354] +14:41:57 [ 35] [ 37] [6688990103833305=43021231330506000000] +14:41:57 [ 37] [ 12] [507904645103] +14:41:57 [ 38] [ 6] [684625] +14:41:57 [ 39] [ 2] [00] +14:41:57 [ 41] [ 8] [17000900] +14:41:57 [ 49] [ 3] [418] +14:41:57 [ 54] [ 20] [0002418C000300341511] +14:41:57 ============================================================================ +14:41:57 Sending to : +14:41:57 ============================================================================ +14:41:57 + + +waiting on router queue for slot.... +14:41:58 ============================================================================ +14:41:58 Slot Id : <146> +14:41:58 Transaction Type : RESPONSE +14:41:58 Received From : +14:41:58 ============================================================================ +14:41:58 FNo. Len. Field Value +14:41:58 ============================================================================ +14:41:58 [ 1] [ 4] [0210] +14:41:58 [ 2] [ 16] [6688990103833305] +14:41:58 [ 3] [ 6] [300000] +14:41:58 [ 4] [ 12] [000000000000] +14:41:58 [ 11] [ 6] [773352] +14:41:58 [ 12] [ 6] [144151] +14:41:58 [ 15] [ 4] [0320] +14:41:58 [ 18] [ 4] [6011] +14:41:58 [ 32] [ 6] [621354] +14:41:58 [ 35] [ 37] [6688990103833305=43021231330506000000] +14:41:58 [ 37] [ 12] [507904645103] +14:41:58 [ 38] [ 6] [684625] +14:41:58 [ 39] [ 2] [00] +14:41:58 [ 41] [ 8] [17000900] +14:41:58 [ 49] [ 3] [418] +14:41:58 [ 54] [ 20] [0002418C000300341511] +14:41:58 ============================================================================ +14:41:58 Calculate Source COMM Id = 0 +14:41:58 ============================================================================ +14:41:58 + + +waiting on router queue for slot.... +14:41:59 ============================================================================ +14:41:59 Slot Id : <128> +14:41:59 Transaction Type : REQUEST +14:41:59 Received From : +14:41:59 ============================================================================ +14:41:59 FNo. Len. Field Value +14:41:59 ============================================================================ +14:41:59 [ 1] [ 4] [0200] +14:41:59 [ 2] [ 16] [6688990104705304] +14:41:59 [ 3] [ 6] [010000] +14:41:59 [ 4] [ 12] [000050000000] +14:41:59 [ 7] [ 10] [0320074105] +14:41:59 [ 11] [ 6] [269763] +14:41:59 [ 12] [ 6] [144105] +14:41:59 [ 13] [ 4] [0320] +14:41:59 [ 14] [ 4] [4305] +14:41:59 [ 15] [ 4] [0320] +14:41:59 [ 18] [ 4] [6011] +14:41:59 [ 19] [ 3] [418] +14:41:59 [ 22] [ 3] [021] +14:41:59 [ 25] [ 2] [01] +14:41:59 [ 28] [ 9] [D00002000] +14:41:59 [ 32] [ 6] [180893] +14:41:59 [ 35] [ 37] [6688990104705304=43051231530465400000] +14:41:59 [ 37] [ 12] [507907269763] +14:41:59 [ 41] [ 8] [0261PSL1] +14:41:59 [ 42] [ 15] [999999 ] +14:41:59 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +14:41:59 [ 49] [ 3] [418] +14:41:59 [ 52] [ 16] [7018CF4ABBC2E23B] +14:41:59 ============================================================================ +14:41:59 + + +waiting on router queue for slot.... +14:41:59 Sending to : +14:41:59 ============================================================================ +14:41:59 Sending to : +14:41:59 ============================================================================ +14:42:00 ============================================================================ +14:42:00 Slot Id : <128> +14:42:00 Transaction Type : REQUEST +14:42:00 Received From : +14:42:00 ============================================================================ +14:42:00 FNo. Len. Field Value +14:42:00 ============================================================================ +14:42:00 [ 1] [ 4] [0200] +14:42:00 [ 2] [ 16] [6688990104705304] +14:42:00 [ 3] [ 6] [010000] +14:42:00 [ 4] [ 12] [000050000000] +14:42:00 [ 7] [ 10] [0320074105] +14:42:00 [ 11] [ 6] [269763] +14:42:00 [ 12] [ 6] [144105] +14:42:00 [ 13] [ 4] [0320] +14:42:00 [ 14] [ 4] [4305] +14:42:00 [ 15] [ 4] [0320] +14:42:00 [ 18] [ 4] [6011] +14:42:00 [ 19] [ 3] [418] +14:42:00 [ 22] [ 3] [021] +14:42:00 [ 25] [ 2] [01] +14:42:00 [ 28] [ 9] [D00002000] +14:42:00 [ 32] [ 6] [180893] +14:42:00 [ 35] [ 37] [6688990104705304=43051231530465400000] +14:42:00 [ 37] [ 12] [507907269763] +14:42:00 [ 41] [ 8] [0261PSL1] +14:42:00 [ 42] [ 15] [999999 ] +14:42:00 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +14:42:00 [ 49] [ 3] [418] +14:42:00 [ 52] [ 16] [7018CF4ABBC2E23B] +14:42:00 ============================================================================ +14:42:00 + + +waiting on router queue for slot.... +14:42:00 Sending to : +14:42:00 ============================================================================ +14:42:00 ============================================================================ +14:42:00 Slot Id : <128> +14:42:00 Transaction Type : REQUEST +14:42:00 Received From : +14:42:00 ============================================================================ +14:42:00 FNo. Len. Field Value +14:42:00 ============================================================================ +14:42:00 [ 1] [ 4] [0200] +14:42:00 [ 2] [ 16] [6688990104705304] +14:42:00 [ 3] [ 6] [010000] +14:42:00 [ 4] [ 12] [000050000000] +14:42:00 [ 7] [ 10] [0320074105] +14:42:00 [ 11] [ 6] [269763] +14:42:00 [ 12] [ 6] [144105] +14:42:00 [ 13] [ 4] [0320] +14:42:00 [ 14] [ 4] [4305] +14:42:00 [ 15] [ 4] [0320] +14:42:00 [ 18] [ 4] [6011] +14:42:00 [ 19] [ 3] [418] +14:42:00 [ 22] [ 3] [021] +14:42:00 [ 25] [ 2] [01] +14:42:00 [ 28] [ 9] [D00002000] +14:42:00 [ 32] [ 6] [180893] +14:42:00 [ 35] [ 37] [6688990104705304=43051231530465400000] +14:42:00 [ 37] [ 12] [507907269763] +14:42:00 [ 41] [ 8] [0261PSL1] +14:42:00 [ 42] [ 15] [999999 ] +14:42:00 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +14:42:00 [ 49] [ 3] [418] +14:42:00 [ 52] [ 16] [EE0219CBD8450BAD] +14:42:00 ============================================================================ +14:42:00 + + +waiting on router queue for slot.... +14:42:00 Sending to : <0> +14:42:00 ============================================================================ +14:42:00 ============================================================================ +14:42:00 Slot Id : <170> +14:42:00 Transaction Type : REQUEST +14:42:00 Received From : +14:42:00 ============================================================================ +14:42:00 FNo. Len. Field Value +14:42:00 ============================================================================ +14:42:00 [ 1] [ 4] [0200] +14:42:00 [ 2] [ 16] [6688990603028703] +14:42:00 [ 3] [ 6] [013000] +14:42:00 [ 4] [ 12] [000100000000] +14:42:00 [ 7] [ 10] [0320144156] +14:42:00 [ 11] [ 6] [773363] +14:42:00 [ 12] [ 6] [144156] +14:42:00 [ 13] [ 4] [0320] +14:42:00 [ 15] [ 4] [0320] +14:42:00 [ 18] [ 4] [6011] +14:42:00 [ 22] [ 3] [900] +14:42:00 [ 25] [ 2] [02] +14:42:00 [ 28] [ 9] [D00002000] +14:42:00 [ 32] [ 6] [621354] +14:42:00 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:42:00 [ 37] [ 12] [507904731470] +14:42:00 [ 41] [ 8] [07000900] +14:42:00 [ 42] [ 15] [NATIVE ] +14:42:00 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:42:00 [ 49] [ 3] [418] +14:42:00 [ 52] [ 16] [C24EAF7387258530] +14:42:00 ============================================================================ +14:42:00 + + +waiting on router queue for slot.... +14:42:00 Sending to : +14:42:00 ============================================================================ +14:42:00 Sending to : +14:42:00 ============================================================================ +14:42:01 ============================================================================ +14:42:01 Slot Id : <128> +14:42:01 Transaction Type : RESPONSE +14:42:01 Received From : +14:42:01 ============================================================================ +14:42:01 FNo. Len. Field Value +14:42:01 ============================================================================ +14:42:01 [ 1] [ 4] [0210] +14:42:01 [ 2] [ 16] [6688990104705304] +14:42:01 [ 3] [ 6] [010000] +14:42:01 [ 4] [ 12] [000050000000] +14:42:01 [ 7] [ 10] [0320074105] +14:42:01 [ 11] [ 6] [269763] +14:42:01 [ 12] [ 6] [144105] +14:42:01 [ 13] [ 4] [0320] +14:42:01 [ 15] [ 4] [0320] +14:42:01 [ 18] [ 4] [6011] +14:42:01 [ 19] [ 3] [418] +14:42:01 [ 22] [ 3] [021] +14:42:01 [ 32] [ 6] [180893] +14:42:01 [ 35] [ 37] [6688990104705304=43051231530465400000] +14:42:01 [ 37] [ 12] [507907269763] +14:42:01 [ 39] [ 2] [14] +14:42:01 [ 41] [ 8] [0261PSL1] +14:42:01 [ 49] [ 3] [418] +14:42:01 ============================================================================ +14:42:01 Sending to : +14:42:01 ============================================================================ +14:42:01 + + +waiting on router queue for slot.... +14:42:01 ============================================================================ +14:42:01 Slot Id : <170> +14:42:01 Transaction Type : REQUEST +14:42:01 Received From : +14:42:01 ============================================================================ +14:42:01 FNo. Len. Field Value +14:42:01 ============================================================================ +14:42:01 [ 1] [ 4] [0200] +14:42:01 [ 2] [ 16] [6688990603028703] +14:42:01 [ 3] [ 6] [013000] +14:42:01 [ 4] [ 12] [000100000000] +14:42:01 [ 7] [ 10] [0320144156] +14:42:01 [ 11] [ 6] [773363] +14:42:01 [ 12] [ 6] [144156] +14:42:01 [ 13] [ 4] [0320] +14:42:01 [ 15] [ 4] [0320] +14:42:01 [ 18] [ 4] [6011] +14:42:01 [ 22] [ 3] [900] +14:42:01 [ 25] [ 2] [02] +14:42:01 [ 28] [ 9] [D00002000] +14:42:01 [ 32] [ 6] [621354] +14:42:01 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:42:01 [ 37] [ 12] [507904731470] +14:42:01 [ 41] [ 8] [07000900] +14:42:01 [ 42] [ 15] [NATIVE ] +14:42:01 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:42:01 [ 49] [ 3] [418] +14:42:01 [ 52] [ 16] [C24EAF7387258530] +14:42:01 ============================================================================ +14:42:01 + + +waiting on router queue for slot.... +14:42:01 Sending to : +14:42:01 ============================================================================ +14:42:01 ============================================================================ +14:42:01 Slot Id : <170> +14:42:01 Transaction Type : REQUEST +14:42:01 Received From : +14:42:01 ============================================================================ +14:42:01 FNo. Len. Field Value +14:42:01 ============================================================================ +14:42:01 [ 1] [ 4] [0200] +14:42:01 [ 2] [ 16] [6688990603028703] +14:42:01 [ 3] [ 6] [013000] +14:42:01 [ 4] [ 12] [000100000000] +14:42:01 [ 7] [ 10] [0320144156] +14:42:01 [ 11] [ 6] [773363] +14:42:01 [ 12] [ 6] [144156] +14:42:01 [ 13] [ 4] [0320] +14:42:01 [ 15] [ 4] [0320] +14:42:01 [ 18] [ 4] [6011] +14:42:01 [ 22] [ 3] [900] +14:42:01 [ 25] [ 2] [02] +14:42:01 [ 28] [ 9] [D00002000] +14:42:01 [ 32] [ 6] [621354] +14:42:01 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:42:01 [ 37] [ 12] [507904731470] +14:42:01 [ 41] [ 8] [07000900] +14:42:01 [ 42] [ 15] [NATIVE ] +14:42:01 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:42:01 [ 49] [ 3] [418] +14:42:01 [ 52] [ 16] [8EED4002B97D240C] +14:42:01 ============================================================================ +14:42:01 + + +waiting on router queue for slot.... +14:42:01 Sending to : <4> +14:42:01 ============================================================================ +14:42:02 ============================================================================ +14:42:02 Slot Id : <128> +14:42:02 Transaction Type : RESPONSE +14:42:02 Received From : +14:42:02 ============================================================================ +14:42:02 FNo. Len. Field Value +14:42:02 ============================================================================ +14:42:02 [ 1] [ 4] [0210] +14:42:02 [ 2] [ 16] [6688990104705304] +14:42:02 [ 3] [ 6] [010000] +14:42:02 [ 4] [ 12] [000050000000] +14:42:02 [ 7] [ 10] [0320074105] +14:42:02 [ 11] [ 6] [269763] +14:42:02 [ 12] [ 6] [144105] +14:42:02 [ 13] [ 4] [0320] +14:42:02 [ 15] [ 4] [0320] +14:42:02 [ 18] [ 4] [6011] +14:42:02 [ 19] [ 3] [418] +14:42:02 [ 22] [ 3] [021] +14:42:02 [ 32] [ 6] [180893] +14:42:02 [ 35] [ 37] [6688990104705304=43051231530465400000] +14:42:02 [ 37] [ 12] [507907269763] +14:42:02 [ 39] [ 2] [14] +14:42:02 [ 41] [ 8] [0261PSL1] +14:42:02 [ 49] [ 3] [418] +14:42:02 ============================================================================ +14:42:02 Calculate Source COMM Id = 2 +14:42:02 ============================================================================ +14:42:02 + + +waiting on router queue for slot.... +14:42:02 ============================================================================ +14:42:02 Slot Id : <170> +14:42:02 Transaction Type : RESPONSE +14:42:02 Received From : +14:42:02 ============================================================================ +14:42:02 FNo. Len. Field Value +14:42:02 ============================================================================ +14:42:02 [ 1] [ 4] [0210] +14:42:02 [ 2] [ 16] [6688990603028703] +14:42:02 [ 3] [ 6] [013000] +14:42:02 [ 4] [ 12] [000100000000] +14:42:02 [ 11] [ 6] [773363] +14:42:02 [ 12] [ 6] [144156] +14:42:02 [ 15] [ 4] [0320] +14:42:02 [ 18] [ 4] [6011] +14:42:02 [ 32] [ 6] [621354] +14:42:02 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:42:02 [ 37] [ 12] [507904731470] +14:42:02 [ 38] [ 6] [418893] +14:42:02 [ 39] [ 2] [00] +14:42:02 [ 41] [ 8] [07000900] +14:42:02 [ 49] [ 3] [418] +14:42:02 [ 54] [ 20] [3002418C000342146549] +14:42:02 ============================================================================ +14:42:02 Sending to : +14:42:02 ============================================================================ +14:42:02 + + +waiting on router queue for slot.... +14:42:03 ============================================================================ +14:42:03 Slot Id : <170> +14:42:03 Transaction Type : RESPONSE +14:42:03 Received From : +14:42:03 ============================================================================ +14:42:03 FNo. Len. Field Value +14:42:03 ============================================================================ +14:42:03 [ 1] [ 4] [0210] +14:42:03 [ 2] [ 16] [6688990603028703] +14:42:03 [ 3] [ 6] [013000] +14:42:03 [ 4] [ 12] [000100000000] +14:42:03 [ 11] [ 6] [773363] +14:42:03 [ 12] [ 6] [144156] +14:42:03 [ 15] [ 4] [0320] +14:42:03 [ 18] [ 4] [6011] +14:42:03 [ 32] [ 6] [621354] +14:42:03 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:42:03 [ 37] [ 12] [507904731470] +14:42:03 [ 38] [ 6] [418893] +14:42:03 [ 39] [ 2] [00] +14:42:03 [ 41] [ 8] [07000900] +14:42:03 [ 49] [ 3] [418] +14:42:03 [ 54] [ 20] [3002418C000342146549] +14:42:03 ============================================================================ +14:42:03 Calculate Source COMM Id = 0 +14:42:03 ============================================================================ +14:42:03 + + +waiting on router queue for slot.... +14:42:04 ============================================================================ +14:42:04 Slot Id : <141> +14:42:04 Transaction Type : REQUEST +14:42:04 Received From : +14:42:04 ============================================================================ +14:42:04 FNo. Len. Field Value +14:42:04 ============================================================================ +14:42:04 [ 1] [ 4] [0200] +14:42:04 [ 2] [ 16] [2206990000134775] +14:42:04 [ 3] [ 6] [010000] +14:42:04 [ 4] [ 12] [000100000000] +14:42:04 [ 7] [ 10] [0320074109] +14:42:04 [ 11] [ 6] [269765] +14:42:04 [ 12] [ 6] [144109] +14:42:04 [ 13] [ 4] [0320] +14:42:04 [ 14] [ 4] [1902] +14:42:04 [ 15] [ 4] [0320] +14:42:04 [ 18] [ 4] [6011] +14:42:04 [ 19] [ 3] [418] +14:42:04 [ 22] [ 3] [021] +14:42:04 [ 25] [ 2] [01] +14:42:04 [ 28] [ 9] [D00002000] +14:42:04 [ 32] [ 6] [180893] +14:42:04 [ 35] [ 32] [2206990000134775=190212812827004] +14:42:04 [ 37] [ 12] [507907269765] +14:42:04 [ 41] [ 8] [0102SAPA] +14:42:04 [ 42] [ 15] [999999 ] +14:42:04 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +14:42:04 [ 49] [ 3] [418] +14:42:04 [ 52] [ 16] [A35011BEC1329CE7] +14:42:04 ============================================================================ +14:42:04 + + +waiting on router queue for slot.... +14:42:04 Sending to : +14:42:04 ============================================================================ +14:42:04 Sending to : +14:42:04 ============================================================================ +14:42:04 ============================================================================ +14:42:04 Slot Id : <141> +14:42:04 Transaction Type : REQUEST +14:42:04 Received From : +14:42:04 ============================================================================ +14:42:04 FNo. Len. Field Value +14:42:04 ============================================================================ +14:42:04 [ 1] [ 4] [0200] +14:42:04 [ 2] [ 16] [2206990000134775] +14:42:04 [ 3] [ 6] [010000] +14:42:04 [ 4] [ 12] [000100000000] +14:42:04 [ 7] [ 10] [0320074109] +14:42:04 [ 11] [ 6] [269765] +14:42:04 [ 12] [ 6] [144109] +14:42:04 [ 13] [ 4] [0320] +14:42:04 [ 14] [ 4] [1902] +14:42:04 [ 15] [ 4] [0320] +14:42:04 [ 18] [ 4] [6011] +14:42:04 [ 19] [ 3] [418] +14:42:04 [ 22] [ 3] [021] +14:42:04 [ 25] [ 2] [01] +14:42:04 [ 28] [ 9] [D00002000] +14:42:04 [ 32] [ 6] [180893] +14:42:04 [ 35] [ 32] [2206990000134775=190212812827004] +14:42:04 [ 37] [ 12] [507907269765] +14:42:04 [ 41] [ 8] [0102SAPA] +14:42:04 [ 42] [ 15] [999999 ] +14:42:04 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +14:42:04 [ 49] [ 3] [418] +14:42:04 [ 52] [ 16] [A35011BEC1329CE7] +14:42:04 ============================================================================ +14:42:04 + + +waiting on router queue for slot.... +14:42:04 Sending to : +14:42:04 ============================================================================ +14:42:04 ============================================================================ +14:42:04 Slot Id : <141> +14:42:04 Transaction Type : REQUEST +14:42:04 Received From : +14:42:04 ============================================================================ +14:42:04 FNo. Len. Field Value +14:42:04 ============================================================================ +14:42:04 [ 1] [ 4] [0200] +14:42:04 [ 2] [ 16] [2206990000134775] +14:42:04 [ 3] [ 6] [010000] +14:42:04 [ 4] [ 12] [000100000000] +14:42:04 [ 7] [ 10] [0320074109] +14:42:04 [ 11] [ 6] [269765] +14:42:04 [ 12] [ 6] [144109] +14:42:04 [ 13] [ 4] [0320] +14:42:04 [ 14] [ 4] [1902] +14:42:04 [ 15] [ 4] [0320] +14:42:04 [ 18] [ 4] [6011] +14:42:04 [ 19] [ 3] [418] +14:42:04 [ 22] [ 3] [021] +14:42:04 [ 25] [ 2] [01] +14:42:04 [ 28] [ 9] [D00002000] +14:42:04 [ 32] [ 6] [180893] +14:42:04 [ 35] [ 32] [2206990000134775=190212812827004] +14:42:04 [ 37] [ 12] [507907269765] +14:42:04 [ 41] [ 8] [0102SAPA] +14:42:04 [ 42] [ 15] [999999 ] +14:42:04 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +14:42:04 [ 49] [ 3] [418] +14:42:04 [ 52] [ 16] [8A86A11323FB1C55] +14:42:04 ============================================================================ +14:42:04 + + +waiting on router queue for slot.... +14:42:04 Sending to : <1> +14:42:04 ============================================================================ +14:42:04 ============================================================================ +14:42:04 Slot Id : <157> +14:42:04 Transaction Type : REQUEST +14:42:04 Received From : +14:42:04 ============================================================================ +14:42:04 FNo. Len. Field Value +14:42:04 ============================================================================ +14:42:04 [ 1] [ 4] [0800] +14:42:04 [ 2] [ 5] [02531] +14:42:04 [ 3] [ 6] [579148] +14:42:04 [ 7] [ 10] [0320074204] +14:42:04 [ 11] [ 6] [807265] +14:42:04 [ 15] [ 10] [0320074204] +14:42:04 [ 37] [ 11] [57914807265] +14:42:04 [ 70] [ 3] [001] +14:42:04 ============================================================================ +14:42:04 + + +waiting on router queue for slot.... +14:42:04 ============================================================================ +14:42:04 Slot Id : <157> +14:42:04 Transaction Type : RESPONSE +14:42:04 Received From : +14:42:04 ============================================================================ +14:42:04 FNo. Len. Field Value +14:42:04 ============================================================================ +14:42:04 [ 1] [ 4] [0810] +14:42:04 [ 7] [ 10] [0320074204] +14:42:04 [ 11] [ 6] [807265] +14:42:04 [ 15] [ 4] [0320] +14:42:04 [ 37] [ 12] [57914807265] +14:42:04 [ 39] [ 2] [00] +14:42:04 [ 70] [ 3] [001] +14:42:04 ============================================================================ +14:42:04 Sending to : +14:42:04 ============================================================================ +14:42:04 + + +waiting on router queue for slot.... +14:42:06 ============================================================================ +14:42:06 Slot Id : <141> +14:42:06 Transaction Type : RESPONSE +14:42:06 Received From : +14:42:06 ============================================================================ +14:42:06 FNo. Len. Field Value +14:42:06 ============================================================================ +14:42:06 [ 1] [ 4] [0210] +14:42:06 [ 2] [ 16] [2206990000134775] +14:42:06 [ 3] [ 6] [010000] +14:42:06 [ 4] [ 12] [000100000000] +14:42:06 [ 7] [ 10] [0320074109] +14:42:06 [ 11] [ 6] [269765] +14:42:06 [ 12] [ 6] [144109] +14:42:06 [ 13] [ 4] [0320] +14:42:06 [ 15] [ 4] [0320] +14:42:06 [ 18] [ 4] [6011] +14:42:06 [ 32] [ 6] [180893] +14:42:06 [ 35] [ 32] [2206990000134775=190212812827004] +14:42:06 [ 37] [ 12] [507907269765] +14:42:06 [ 38] [ 6] [644200] +14:42:06 [ 39] [ 2] [00] +14:42:06 [ 41] [ 8] [0102SAPA] +14:42:06 [ 49] [ 3] [418] +14:42:06 [ 54] [ 40] [0001418C0001367084000002418C000136708400] +14:42:06 ============================================================================ +14:42:06 Sending to : +14:42:06 ============================================================================ +14:42:06 + + +waiting on router queue for slot.... +14:42:08 ============================================================================ +14:42:08 Slot Id : <141> +14:42:08 Transaction Type : RESPONSE +14:42:08 Received From : +14:42:08 ============================================================================ +14:42:08 FNo. Len. Field Value +14:42:08 ============================================================================ +14:42:08 [ 1] [ 4] [0210] +14:42:08 [ 2] [ 16] [2206990000134775] +14:42:08 [ 3] [ 6] [010000] +14:42:08 [ 4] [ 12] [000100000000] +14:42:08 [ 7] [ 10] [0320074109] +14:42:08 [ 11] [ 6] [269765] +14:42:08 [ 12] [ 6] [144109] +14:42:08 [ 13] [ 4] [0320] +14:42:08 [ 15] [ 4] [0320] +14:42:08 [ 18] [ 4] [6011] +14:42:08 [ 32] [ 6] [180893] +14:42:08 [ 35] [ 32] [2206990000134775=190212812827004] +14:42:08 [ 37] [ 12] [507907269765] +14:42:08 [ 38] [ 6] [644200] +14:42:08 [ 39] [ 2] [00] +14:42:08 [ 41] [ 8] [0102SAPA] +14:42:08 [ 49] [ 3] [418] +14:42:08 [ 54] [ 40] [0001418C0001367084000002418C000136708400] +14:42:08 ============================================================================ +14:42:08 Calculate Source COMM Id = 2 +14:42:08 ============================================================================ +14:42:08 + + +waiting on router queue for slot.... +14:42:15 ============================================================================ +14:42:15 Slot Id : <151> +14:42:15 Transaction Type : REQUEST +14:42:15 Received From : +14:42:15 ============================================================================ +14:42:15 FNo. Len. Field Value +14:42:15 ============================================================================ +14:42:15 [ 1] [ 4] [0200] +14:42:15 [ 2] [ 16] [6213545000687479] +14:42:15 [ 3] [ 6] [010000] +14:42:15 [ 4] [ 12] [000050000000] +14:42:15 [ 7] [ 10] [0320074122] +14:42:15 [ 11] [ 6] [269768] +14:42:15 [ 12] [ 6] [144122] +14:42:15 [ 13] [ 4] [0320] +14:42:15 [ 14] [ 4] [4912] +14:42:15 [ 15] [ 4] [0320] +14:42:15 [ 18] [ 4] [6011] +14:42:15 [ 19] [ 3] [418] +14:42:15 [ 22] [ 3] [021] +14:42:15 [ 25] [ 2] [01] +14:42:15 [ 28] [ 9] [D00002000] +14:42:15 [ 32] [ 6] [180893] +14:42:15 [ 35] [ 32] [6213545000687479=491212018747139] +14:42:15 [ 37] [ 12] [507907269768] +14:42:15 [ 41] [ 8] [0363CPSH] +14:42:15 [ 42] [ 15] [999999 ] +14:42:15 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +14:42:15 [ 49] [ 3] [418] +14:42:15 [ 52] [ 16] [84929276D148A80B] +14:42:15 ============================================================================ +14:42:15 + + +waiting on router queue for slot.... +14:42:15 Sending to : +14:42:15 ============================================================================ +14:42:15 Sending to : +14:42:15 ============================================================================ +14:42:15 ============================================================================ +14:42:15 Slot Id : <151> +14:42:15 Transaction Type : REQUEST +14:42:15 Received From : +14:42:15 ============================================================================ +14:42:15 FNo. Len. Field Value +14:42:15 ============================================================================ +14:42:15 [ 1] [ 4] [0200] +14:42:15 [ 2] [ 16] [6213545000687479] +14:42:15 [ 3] [ 6] [010000] +14:42:15 [ 4] [ 12] [000050000000] +14:42:15 [ 7] [ 10] [0320074122] +14:42:15 [ 11] [ 6] [269768] +14:42:15 [ 12] [ 6] [144122] +14:42:15 [ 13] [ 4] [0320] +14:42:15 [ 14] [ 4] [4912] +14:42:15 [ 15] [ 4] [0320] +14:42:15 [ 18] [ 4] [6011] +14:42:15 [ 19] [ 3] [418] +14:42:15 [ 22] [ 3] [021] +14:42:15 [ 25] [ 2] [01] +14:42:15 [ 28] [ 9] [D00002000] +14:42:15 [ 32] [ 6] [180893] +14:42:15 [ 35] [ 32] [6213545000687479=491212018747139] +14:42:15 [ 37] [ 12] [507907269768] +14:42:15 [ 41] [ 8] [0363CPSH] +14:42:15 [ 42] [ 15] [999999 ] +14:42:15 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +14:42:15 [ 49] [ 3] [418] +14:42:15 [ 52] [ 16] [84929276D148A80B] +14:42:15 ============================================================================ +14:42:15 + + +waiting on router queue for slot.... +14:42:15 Sending to : +14:42:15 ============================================================================ +14:42:15 ============================================================================ +14:42:15 Slot Id : <151> +14:42:15 Transaction Type : REQUEST +14:42:15 Received From : +14:42:15 ============================================================================ +14:42:15 FNo. Len. Field Value +14:42:15 ============================================================================ +14:42:15 [ 1] [ 4] [0200] +14:42:15 [ 2] [ 16] [6213545000687479] +14:42:15 [ 3] [ 6] [010000] +14:42:15 [ 4] [ 12] [000050000000] +14:42:15 [ 7] [ 10] [0320074122] +14:42:15 [ 11] [ 6] [269768] +14:42:15 [ 12] [ 6] [144122] +14:42:15 [ 13] [ 4] [0320] +14:42:15 [ 14] [ 4] [4912] +14:42:15 [ 15] [ 4] [0320] +14:42:15 [ 18] [ 4] [6011] +14:42:15 [ 19] [ 3] [418] +14:42:15 [ 22] [ 3] [021] +14:42:15 [ 25] [ 2] [01] +14:42:15 [ 28] [ 9] [D00002000] +14:42:15 [ 32] [ 6] [180893] +14:42:15 [ 35] [ 32] [6213545000687479=491212018747139] +14:42:15 [ 37] [ 12] [507907269768] +14:42:15 [ 41] [ 8] [0363CPSH] +14:42:15 [ 42] [ 15] [999999 ] +14:42:15 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +14:42:15 [ 49] [ 3] [418] +14:42:15 [ 52] [ 16] [A7FF84CA1E7EBCB9] +14:42:15 ============================================================================ +14:42:15 + + +waiting on router queue for slot.... +14:42:15 Sending to : <0> +14:42:15 ============================================================================ +14:42:16 ============================================================================ +14:42:16 Slot Id : <151> +14:42:16 Transaction Type : RESPONSE +14:42:16 Received From : +14:42:16 ============================================================================ +14:42:16 FNo. Len. Field Value +14:42:16 ============================================================================ +14:42:16 [ 1] [ 4] [0210] +14:42:16 [ 2] [ 16] [6213545000687479] +14:42:16 [ 3] [ 6] [010000] +14:42:16 [ 4] [ 12] [000050000000] +14:42:16 [ 7] [ 10] [0320074122] +14:42:16 [ 11] [ 6] [269768] +14:42:16 [ 12] [ 6] [144122] +14:42:16 [ 13] [ 4] [0320] +14:42:16 [ 15] [ 4] [0320] +14:42:16 [ 18] [ 4] [6011] +14:42:16 [ 19] [ 3] [418] +14:42:16 [ 32] [ 6] [180893] +14:42:16 [ 35] [ 32] [6213545000687479=491212018747139] +14:42:16 [ 37] [ 12] [507907269768] +14:42:16 [ 38] [ 6] [898044] +14:42:16 [ 39] [ 2] [00] +14:42:16 [ 41] [ 8] [0363CPSH] +14:42:16 [ 49] [ 3] [418] +14:42:16 [ 54] [ 40] [0001418C0000972289430002418C000097228943] +14:42:16 ============================================================================ +14:42:16 Sending to : +14:42:16 ============================================================================ +14:42:16 + + +waiting on router queue for slot.... +14:42:17 ============================================================================ +14:42:17 Slot Id : <151> +14:42:17 Transaction Type : RESPONSE +14:42:17 Received From : +14:42:17 ============================================================================ +14:42:17 FNo. Len. Field Value +14:42:17 ============================================================================ +14:42:17 [ 1] [ 4] [0210] +14:42:17 [ 2] [ 16] [6213545000687479] +14:42:17 [ 3] [ 6] [010000] +14:42:17 [ 4] [ 12] [000050000000] +14:42:17 [ 7] [ 10] [0320074122] +14:42:17 [ 11] [ 6] [269768] +14:42:17 [ 12] [ 6] [144122] +14:42:17 [ 13] [ 4] [0320] +14:42:17 [ 15] [ 4] [0320] +14:42:17 [ 18] [ 4] [6011] +14:42:17 [ 19] [ 3] [418] +14:42:17 [ 32] [ 6] [180893] +14:42:17 [ 35] [ 32] [6213545000687479=491212018747139] +14:42:17 [ 37] [ 12] [507907269768] +14:42:17 [ 38] [ 6] [898044] +14:42:17 [ 39] [ 2] [00] +14:42:17 [ 41] [ 8] [0363CPSH] +14:42:17 [ 49] [ 3] [418] +14:42:17 [ 54] [ 40] [0001418C0000972289430002418C000097228943] +14:42:17 ============================================================================ +14:42:17 Calculate Source COMM Id = 2 +14:42:17 ============================================================================ +14:42:17 + + +waiting on router queue for slot.... +14:42:27 ============================================================================ +14:42:27 Slot Id : <172> +14:42:27 Transaction Type : REQUEST +14:42:27 Received From : +14:42:27 ============================================================================ +14:42:27 FNo. Len. Field Value +14:42:27 ============================================================================ +14:42:27 [ 1] [ 4] [0200] +14:42:27 [ 2] [ 16] [6213543000217264] +14:42:27 [ 3] [ 6] [311000] +14:42:27 [ 4] [ 12] [000000000000] +14:42:27 [ 7] [ 10] [0320145014] +14:42:27 [ 11] [ 6] [999937] +14:42:27 [ 12] [ 6] [145014] +14:42:27 [ 13] [ 4] [0320] +14:42:27 [ 14] [ 4] [4912] +14:42:27 [ 15] [ 4] [0320] +14:42:27 [ 18] [ 4] [6011] +14:42:27 [ 22] [ 3] [900] +14:42:27 [ 25] [ 2] [02] +14:42:27 [ 28] [ 9] [000000000] +14:42:27 [ 32] [ 6] [220699] +14:42:27 [ 35] [ 32] [6213543000217264=491212011726633] +14:42:27 [ 37] [ 12] [507900281352] +14:42:27 [ 41] [ 8] [10000100] +14:42:27 [ 42] [ 15] [APTRA ] +14:42:27 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:42:27 [ 49] [ 3] [418] +14:42:27 [ 52] [ 16] [E367F771A9F60CAC] +14:42:27 ============================================================================ +14:42:27 + + +waiting on router queue for slot.... +14:42:27 Sending to : +14:42:27 ============================================================================ +14:42:27 Sending to : +14:42:27 ============================================================================ +14:42:27 ============================================================================ +14:42:27 Slot Id : <172> +14:42:27 Transaction Type : REQUEST +14:42:27 Received From : +14:42:27 ============================================================================ +14:42:27 FNo. Len. Field Value +14:42:27 ============================================================================ +14:42:27 [ 1] [ 4] [0200] +14:42:27 [ 2] [ 16] [6213543000217264] +14:42:27 [ 3] [ 6] [311000] +14:42:27 [ 4] [ 12] [000000000000] +14:42:27 [ 7] [ 10] [0320145014] +14:42:27 [ 11] [ 6] [999937] +14:42:27 [ 12] [ 6] [145014] +14:42:27 [ 13] [ 4] [0320] +14:42:27 [ 14] [ 4] [4912] +14:42:27 [ 15] [ 4] [0320] +14:42:27 [ 18] [ 4] [6011] +14:42:27 [ 22] [ 3] [900] +14:42:27 [ 25] [ 2] [02] +14:42:27 [ 28] [ 9] [000000000] +14:42:27 [ 32] [ 6] [220699] +14:42:27 [ 35] [ 32] [6213543000217264=491212011726633] +14:42:27 [ 37] [ 12] [507900281352] +14:42:27 [ 41] [ 8] [10000100] +14:42:27 [ 42] [ 15] [APTRA ] +14:42:27 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:42:27 [ 49] [ 3] [418] +14:42:27 [ 52] [ 16] [E367F771A9F60CAC] +14:42:27 ============================================================================ +14:42:27 + + +waiting on router queue for slot.... +14:42:27 Sending to : +14:42:27 ============================================================================ +14:42:27 ============================================================================ +14:42:27 Slot Id : <172> +14:42:27 Transaction Type : REQUEST +14:42:27 Received From : +14:42:27 ============================================================================ +14:42:27 FNo. Len. Field Value +14:42:27 ============================================================================ +14:42:27 [ 1] [ 4] [0200] +14:42:27 [ 2] [ 16] [6213543000217264] +14:42:27 [ 3] [ 6] [311000] +14:42:27 [ 4] [ 12] [000000000000] +14:42:27 [ 7] [ 10] [0320145014] +14:42:27 [ 11] [ 6] [999937] +14:42:27 [ 12] [ 6] [145014] +14:42:27 [ 13] [ 4] [0320] +14:42:27 [ 14] [ 4] [4912] +14:42:27 [ 15] [ 4] [0320] +14:42:27 [ 18] [ 4] [6011] +14:42:27 [ 22] [ 3] [900] +14:42:27 [ 25] [ 2] [02] +14:42:27 [ 28] [ 9] [000000000] +14:42:27 [ 32] [ 6] [220699] +14:42:27 [ 35] [ 32] [6213543000217264=491212011726633] +14:42:27 [ 37] [ 12] [507900281352] +14:42:27 [ 41] [ 8] [10000100] +14:42:27 [ 42] [ 15] [APTRA ] +14:42:27 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:42:27 [ 49] [ 3] [418] +14:42:27 [ 52] [ 16] [99CFFDD2A4A8DEDC] +14:42:27 ============================================================================ +14:42:27 + + +waiting on router queue for slot.... +14:42:27 Sending to : <0> +14:42:27 ============================================================================ +14:42:27 ============================================================================ +14:42:27 Slot Id : <172> +14:42:27 Transaction Type : RESPONSE +14:42:27 Received From : +14:42:27 ============================================================================ +14:42:27 FNo. Len. Field Value +14:42:27 ============================================================================ +14:42:27 [ 1] [ 4] [0210] +14:42:27 [ 2] [ 16] [6213543000217264] +14:42:27 [ 3] [ 6] [311000] +14:42:27 [ 4] [ 12] [000000000000] +14:42:27 [ 7] [ 10] [0320145014] +14:42:27 [ 11] [ 6] [999937] +14:42:27 [ 12] [ 6] [145014] +14:42:27 [ 13] [ 4] [0320] +14:42:27 [ 15] [ 4] [0320] +14:42:27 [ 18] [ 4] [6011] +14:42:27 [ 22] [ 3] [900] +14:42:27 [ 32] [ 6] [220699] +14:42:27 [ 35] [ 32] [6213543000217264=491212011726633] +14:42:27 [ 37] [ 12] [507900281352] +14:42:27 [ 38] [ 6] [144223] +14:42:27 [ 39] [ 2] [55] +14:42:27 [ 41] [ 8] [10000100] +14:42:27 [ 49] [ 3] [418] +14:42:27 ============================================================================ +14:42:27 Sending to : +14:42:27 ============================================================================ +14:42:27 + + +waiting on router queue for slot.... +14:42:29 ============================================================================ +14:42:29 Slot Id : <172> +14:42:29 Transaction Type : RESPONSE +14:42:29 Received From : +14:42:29 ============================================================================ +14:42:29 FNo. Len. Field Value +14:42:29 ============================================================================ +14:42:29 [ 1] [ 4] [0210] +14:42:29 [ 2] [ 16] [6213543000217264] +14:42:29 [ 3] [ 6] [311000] +14:42:29 [ 4] [ 12] [000000000000] +14:42:29 [ 7] [ 10] [0320145014] +14:42:29 [ 11] [ 6] [999937] +14:42:29 [ 12] [ 6] [145014] +14:42:29 [ 13] [ 4] [0320] +14:42:29 [ 15] [ 4] [0320] +14:42:29 [ 18] [ 4] [6011] +14:42:29 [ 22] [ 3] [900] +14:42:29 [ 32] [ 6] [220699] +14:42:29 [ 35] [ 32] [6213543000217264=491212011726633] +14:42:29 [ 37] [ 12] [507900281352] +14:42:29 [ 38] [ 6] [144223] +14:42:29 [ 39] [ 2] [55] +14:42:29 [ 41] [ 8] [10000100] +14:42:29 [ 49] [ 3] [418] +14:42:29 ============================================================================ +14:42:29 Calculate Source COMM Id = 1 +14:42:29 ============================================================================ +14:42:29 + + +waiting on router queue for slot.... +14:42:31 ============================================================================ +14:42:31 Slot Id : <164> +14:42:31 Transaction Type : REQUEST +14:42:31 Received From : +14:42:31 ============================================================================ +14:42:31 FNo. Len. Field Value +14:42:31 ============================================================================ +14:42:31 [ 1] [ 4] [0200] +14:42:31 [ 2] [ 16] [6688990040120675] +14:42:31 [ 3] [ 6] [010000] +14:42:31 [ 4] [ 12] [000060000000] +14:42:31 [ 7] [ 10] [0320144227] +14:42:31 [ 11] [ 6] [773487] +14:42:31 [ 12] [ 6] [144227] +14:42:31 [ 13] [ 4] [0320] +14:42:31 [ 15] [ 4] [0320] +14:42:31 [ 18] [ 4] [6011] +14:42:31 [ 22] [ 3] [900] +14:42:31 [ 25] [ 2] [02] +14:42:31 [ 28] [ 9] [D00002000] +14:42:31 [ 32] [ 6] [621354] +14:42:31 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:42:31 [ 37] [ 12] [507904719678] +14:42:31 [ 41] [ 8] [18001000] +14:42:31 [ 42] [ 15] [NATIVE ] +14:42:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:42:31 [ 49] [ 3] [418] +14:42:31 [ 52] [ 16] [A6041F96050175F3] +14:42:31 ============================================================================ +14:42:31 + + +waiting on router queue for slot.... +14:42:31 Sending to : +14:42:31 ============================================================================ +14:42:31 Sending to : +14:42:31 ============================================================================ +14:42:32 ============================================================================ +14:42:32 Slot Id : <164> +14:42:32 Transaction Type : REQUEST +14:42:32 Received From : +14:42:32 ============================================================================ +14:42:32 FNo. Len. Field Value +14:42:32 ============================================================================ +14:42:32 [ 1] [ 4] [0200] +14:42:32 [ 2] [ 16] [6688990040120675] +14:42:32 [ 3] [ 6] [010000] +14:42:32 [ 4] [ 12] [000060000000] +14:42:32 [ 7] [ 10] [0320144227] +14:42:32 [ 11] [ 6] [773487] +14:42:32 [ 12] [ 6] [144227] +14:42:32 [ 13] [ 4] [0320] +14:42:32 [ 15] [ 4] [0320] +14:42:32 [ 18] [ 4] [6011] +14:42:32 [ 22] [ 3] [900] +14:42:32 [ 25] [ 2] [02] +14:42:32 [ 28] [ 9] [D00002000] +14:42:32 [ 32] [ 6] [621354] +14:42:32 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:42:32 [ 37] [ 12] [507904719678] +14:42:32 [ 41] [ 8] [18001000] +14:42:32 [ 42] [ 15] [NATIVE ] +14:42:32 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:42:32 [ 49] [ 3] [418] +14:42:32 [ 52] [ 16] [A6041F96050175F3] +14:42:32 ============================================================================ +14:42:32 + + +waiting on router queue for slot.... +14:42:32 Sending to : +14:42:32 ============================================================================ +14:42:32 ============================================================================ +14:42:32 Slot Id : <164> +14:42:32 Transaction Type : REQUEST +14:42:32 Received From : +14:42:32 ============================================================================ +14:42:32 FNo. Len. Field Value +14:42:32 ============================================================================ +14:42:32 [ 1] [ 4] [0200] +14:42:32 [ 2] [ 16] [6688990040120675] +14:42:32 [ 3] [ 6] [010000] +14:42:32 [ 4] [ 12] [000060000000] +14:42:32 [ 7] [ 10] [0320144227] +14:42:32 [ 11] [ 6] [773487] +14:42:32 [ 12] [ 6] [144227] +14:42:32 [ 13] [ 4] [0320] +14:42:32 [ 15] [ 4] [0320] +14:42:32 [ 18] [ 4] [6011] +14:42:32 [ 22] [ 3] [900] +14:42:32 [ 25] [ 2] [02] +14:42:32 [ 28] [ 9] [D00002000] +14:42:32 [ 32] [ 6] [621354] +14:42:32 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:42:32 [ 37] [ 12] [507904719678] +14:42:32 [ 41] [ 8] [18001000] +14:42:32 [ 42] [ 15] [NATIVE ] +14:42:32 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:42:32 [ 49] [ 3] [418] +14:42:32 [ 52] [ 16] [03880449A9B4CDB6] +14:42:32 ============================================================================ +14:42:32 + + +waiting on router queue for slot.... +14:42:32 Sending to : <4> +14:42:32 ============================================================================ +14:42:32 ============================================================================ +14:42:32 Slot Id : <171> +14:42:32 Transaction Type : REQUEST +14:42:32 Received From : +14:42:32 ============================================================================ +14:42:32 FNo. Len. Field Value +14:42:32 ============================================================================ +14:42:32 [ 1] [ 4] [0800] +14:42:32 [ 7] [ 10] [0320074139] +14:42:32 [ 11] [ 6] [156837] +14:42:32 [ 70] [ 3] [301] +14:42:32 ============================================================================ +14:42:32 + + +waiting on router queue for slot.... +14:42:32 Sending to : +14:42:32 ============================================================================ +14:42:32 ============================================================================ +14:42:32 Slot Id : <171> +14:42:32 Transaction Type : RESPONSE +14:42:32 Received From : +14:42:32 ============================================================================ +14:42:32 FNo. Len. Field Value +14:42:32 ============================================================================ +14:42:32 [ 1] [ 4] [0810] +14:42:32 [ 7] [ 10] [0320074139] +14:42:32 [ 11] [ 6] [156837] +14:42:32 [ 39] [ 2] [00] +14:42:32 [ 70] [ 3] [301] +14:42:32 ============================================================================ +14:42:32 Calculate Source COMM Id = 2 +14:42:32 ============================================================================ +14:42:32 + + +waiting on router queue for slot.... +14:42:33 ============================================================================ +14:42:33 Slot Id : <164> +14:42:33 Transaction Type : RESPONSE +14:42:33 Received From : +14:42:33 ============================================================================ +14:42:33 FNo. Len. Field Value +14:42:33 ============================================================================ +14:42:33 [ 1] [ 4] [0210] +14:42:33 [ 2] [ 16] [6688990040120675] +14:42:33 [ 3] [ 6] [010000] +14:42:33 [ 4] [ 12] [000060000000] +14:42:33 [ 11] [ 6] [773487] +14:42:33 [ 12] [ 6] [144227] +14:42:33 [ 15] [ 4] [0320] +14:42:33 [ 18] [ 4] [6011] +14:42:33 [ 32] [ 6] [621354] +14:42:33 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:42:33 [ 37] [ 12] [507904719678] +14:42:33 [ 38] [ 6] [335100] +14:42:33 [ 39] [ 2] [00] +14:42:33 [ 41] [ 8] [18001000] +14:42:33 [ 49] [ 3] [418] +14:42:33 [ 54] [ 20] [0002418C000009763051] +14:42:33 ============================================================================ +14:42:33 Sending to : +14:42:33 ============================================================================ +14:42:33 + + +waiting on router queue for slot.... +14:42:34 ============================================================================ +14:42:34 Slot Id : <164> +14:42:34 Transaction Type : RESPONSE +14:42:34 Received From : +14:42:34 ============================================================================ +14:42:34 FNo. Len. Field Value +14:42:34 ============================================================================ +14:42:34 [ 1] [ 4] [0210] +14:42:34 [ 2] [ 16] [6688990040120675] +14:42:34 [ 3] [ 6] [010000] +14:42:34 [ 4] [ 12] [000060000000] +14:42:34 [ 11] [ 6] [773487] +14:42:34 [ 12] [ 6] [144227] +14:42:34 [ 15] [ 4] [0320] +14:42:34 [ 18] [ 4] [6011] +14:42:34 [ 32] [ 6] [621354] +14:42:34 [ 35] [ 37] [6688990040120675=98031261125747000000] +14:42:34 [ 37] [ 12] [507904719678] +14:42:34 [ 38] [ 6] [335100] +14:42:34 [ 39] [ 2] [00] +14:42:34 [ 41] [ 8] [18001000] +14:42:34 [ 49] [ 3] [418] +14:42:34 [ 54] [ 20] [0002418C000009763051] +14:42:34 ============================================================================ +14:42:34 Calculate Source COMM Id = 0 +14:42:34 ============================================================================ +14:42:34 + + +waiting on router queue for slot.... +14:42:36 ============================================================================ +14:42:36 Slot Id : <186> +14:42:36 Transaction Type : REQUEST +14:42:36 Received From : +14:42:36 ============================================================================ +14:42:36 FNo. Len. Field Value +14:42:36 ============================================================================ +14:42:36 [ 1] [ 4] [0200] +14:42:36 [ 2] [ 16] [6688990103675904] +14:42:36 [ 3] [ 6] [012000] +14:42:36 [ 4] [ 12] [000100000000] +14:42:36 [ 7] [ 10] [0320144231] +14:42:36 [ 11] [ 6] [773503] +14:42:36 [ 12] [ 6] [144231] +14:42:36 [ 13] [ 4] [0320] +14:42:36 [ 15] [ 4] [0320] +14:42:36 [ 18] [ 4] [6011] +14:42:36 [ 22] [ 3] [900] +14:42:36 [ 25] [ 2] [02] +14:42:36 [ 28] [ 9] [D00002000] +14:42:36 [ 32] [ 6] [621354] +14:42:36 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:42:36 [ 37] [ 12] [507903372956] +14:42:36 [ 41] [ 8] [13001700] +14:42:36 [ 42] [ 15] [NATIVE ] +14:42:36 [ 43] [ 40] [Khoun District Khoun LAO] +14:42:36 [ 49] [ 3] [418] +14:42:36 [ 52] [ 16] [08DB8634C4E04069] +14:42:36 ============================================================================ +14:42:36 + + +waiting on router queue for slot.... +14:42:36 Sending to : +14:42:36 ============================================================================ +14:42:36 Sending to : +14:42:36 ============================================================================ +14:42:36 ============================================================================ +14:42:36 Slot Id : <186> +14:42:36 Transaction Type : REQUEST +14:42:36 Received From : +14:42:36 ============================================================================ +14:42:36 FNo. Len. Field Value +14:42:36 ============================================================================ +14:42:36 [ 1] [ 4] [0200] +14:42:36 [ 2] [ 16] [6688990103675904] +14:42:36 [ 3] [ 6] [012000] +14:42:36 [ 4] [ 12] [000100000000] +14:42:36 [ 7] [ 10] [0320144231] +14:42:36 [ 11] [ 6] [773503] +14:42:36 [ 12] [ 6] [144231] +14:42:36 [ 13] [ 4] [0320] +14:42:36 [ 15] [ 4] [0320] +14:42:36 [ 18] [ 4] [6011] +14:42:36 [ 22] [ 3] [900] +14:42:36 [ 25] [ 2] [02] +14:42:36 [ 28] [ 9] [D00002000] +14:42:36 [ 32] [ 6] [621354] +14:42:36 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:42:36 [ 37] [ 12] [507903372956] +14:42:36 [ 41] [ 8] [13001700] +14:42:36 [ 42] [ 15] [NATIVE ] +14:42:36 [ 43] [ 40] [Khoun District Khoun LAO] +14:42:36 [ 49] [ 3] [418] +14:42:36 [ 52] [ 16] [08DB8634C4E04069] +14:42:36 ============================================================================ +14:42:36 + + +waiting on router queue for slot.... +14:42:36 Sending to : +14:42:36 ============================================================================ +14:42:36 ============================================================================ +14:42:36 Slot Id : <186> +14:42:36 Transaction Type : REQUEST +14:42:36 Received From : +14:42:36 ============================================================================ +14:42:36 FNo. Len. Field Value +14:42:36 ============================================================================ +14:42:36 [ 1] [ 4] [0200] +14:42:36 [ 2] [ 16] [6688990103675904] +14:42:36 [ 3] [ 6] [012000] +14:42:36 [ 4] [ 12] [000100000000] +14:42:36 [ 7] [ 10] [0320144231] +14:42:36 [ 11] [ 6] [773503] +14:42:36 [ 12] [ 6] [144231] +14:42:36 [ 13] [ 4] [0320] +14:42:36 [ 15] [ 4] [0320] +14:42:36 [ 18] [ 4] [6011] +14:42:36 [ 22] [ 3] [900] +14:42:36 [ 25] [ 2] [02] +14:42:36 [ 28] [ 9] [D00002000] +14:42:36 [ 32] [ 6] [621354] +14:42:36 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:42:36 [ 37] [ 12] [507903372956] +14:42:36 [ 41] [ 8] [13001700] +14:42:36 [ 42] [ 15] [NATIVE ] +14:42:36 [ 43] [ 40] [Khoun District Khoun LAO] +14:42:36 [ 49] [ 3] [418] +14:42:36 [ 52] [ 16] [5D3D25650FA4756B] +14:42:36 ============================================================================ +14:42:36 + + +waiting on router queue for slot.... +14:42:36 Sending to : <4> +14:42:36 ============================================================================ +14:42:37 ============================================================================ +14:42:37 Slot Id : <186> +14:42:37 Transaction Type : RESPONSE +14:42:37 Received From : +14:42:37 ============================================================================ +14:42:37 FNo. Len. Field Value +14:42:37 ============================================================================ +14:42:37 [ 1] [ 4] [0210] +14:42:37 [ 2] [ 16] [6688990103675904] +14:42:37 [ 3] [ 6] [012000] +14:42:37 [ 4] [ 12] [000100000000] +14:42:37 [ 11] [ 6] [773503] +14:42:37 [ 12] [ 6] [144231] +14:42:37 [ 15] [ 4] [0320] +14:42:37 [ 18] [ 4] [6011] +14:42:37 [ 32] [ 6] [621354] +14:42:37 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:42:37 [ 37] [ 12] [507903372956] +14:42:37 [ 38] [ 6] [899089] +14:42:37 [ 39] [ 2] [00] +14:42:37 [ 41] [ 8] [13001700] +14:42:37 [ 49] [ 3] [418] +14:42:37 [ 54] [ 20] [2002418C000615482261] +14:42:37 ============================================================================ +14:42:37 Sending to : +14:42:37 ============================================================================ +14:42:37 + + +waiting on router queue for slot.... +14:42:39 ============================================================================ +14:42:39 Slot Id : <186> +14:42:39 Transaction Type : RESPONSE +14:42:39 Received From : +14:42:39 ============================================================================ +14:42:39 FNo. Len. Field Value +14:42:39 ============================================================================ +14:42:39 [ 1] [ 4] [0210] +14:42:39 [ 2] [ 16] [6688990103675904] +14:42:39 [ 3] [ 6] [012000] +14:42:39 [ 4] [ 12] [000100000000] +14:42:39 [ 11] [ 6] [773503] +14:42:39 [ 12] [ 6] [144231] +14:42:39 [ 15] [ 4] [0320] +14:42:39 [ 18] [ 4] [6011] +14:42:39 [ 32] [ 6] [621354] +14:42:39 [ 35] [ 37] [6688990103675904=43011231590402400000] +14:42:39 [ 37] [ 12] [507903372956] +14:42:39 [ 38] [ 6] [899089] +14:42:39 [ 39] [ 2] [00] +14:42:39 [ 41] [ 8] [13001700] +14:42:39 [ 49] [ 3] [418] +14:42:39 [ 54] [ 20] [2002418C000615482261] +14:42:39 ============================================================================ +14:42:39 Calculate Source COMM Id = 0 +14:42:39 ============================================================================ +14:42:39 + + +waiting on router queue for slot.... +14:42:43 ============================================================================ +14:42:43 Slot Id : <126> +14:42:43 Transaction Type : REQUEST +14:42:43 Received From : +14:42:43 ============================================================================ +14:42:43 FNo. Len. Field Value +14:42:43 ============================================================================ +14:42:43 [ 1] [ 4] [0800] +14:42:43 [ 7] [ 10] [0320074150] +14:42:43 [ 11] [ 6] [156838] +14:42:43 [ 70] [ 3] [301] +14:42:43 ============================================================================ +14:42:43 + + +waiting on router queue for slot.... +14:42:43 Sending to : +14:42:43 ============================================================================ +14:42:43 ============================================================================ +14:42:43 Slot Id : <126> +14:42:43 Transaction Type : RESPONSE +14:42:43 Received From : +14:42:43 ============================================================================ +14:42:43 FNo. Len. Field Value +14:42:43 ============================================================================ +14:42:43 [ 1] [ 4] [0810] +14:42:43 [ 7] [ 10] [0320074150] +14:42:43 [ 11] [ 6] [156838] +14:42:43 [ 39] [ 2] [00] +14:42:43 [ 70] [ 3] [301] +14:42:43 ============================================================================ +14:42:43 Calculate Source COMM Id = 2 +14:42:43 ============================================================================ +14:42:43 + + +waiting on router queue for slot.... +14:42:44 ============================================================================ +14:42:44 Slot Id : <148> +14:42:44 Transaction Type : REQUEST +14:42:44 Received From : +14:42:44 ============================================================================ +14:42:44 FNo. Len. Field Value +14:42:44 ============================================================================ +14:42:44 [ 1] [ 4] [0800] +14:42:44 [ 7] [ 10] [0320215433] +14:42:44 [ 11] [ 6] [145433] +14:42:44 [ 37] [ 12] [57914145433] +14:42:44 [ 70] [ 3] [301] +14:42:44 ============================================================================ +14:42:44 + + +waiting on router queue for slot.... +14:42:44 Sending to : +14:42:44 ============================================================================ +14:42:44 ============================================================================ +14:42:44 Slot Id : <148> +14:42:44 Transaction Type : RESPONSE +14:42:44 Received From : +14:42:44 ============================================================================ +14:42:44 FNo. Len. Field Value +14:42:44 ============================================================================ +14:42:44 [ 1] [ 4] [0810] +14:42:44 [ 7] [ 10] [0320215433] +14:42:44 [ 11] [ 6] [145433] +14:42:44 [ 37] [ 12] [579141454330] +14:42:44 [ 39] [ 2] [00] +14:42:44 [ 70] [ 3] [810] +14:42:44 ============================================================================ +14:42:44 Calculate Source COMM Id = 6 +14:42:44 ============================================================================ +14:42:44 + + +waiting on router queue for slot.... +14:42:44 ============================================================================ +14:42:44 Slot Id : <182> +14:42:44 Transaction Type : REQUEST +14:42:44 Received From : +14:42:44 ============================================================================ +14:42:44 FNo. Len. Field Value +14:42:44 ============================================================================ +14:42:44 [ 1] [ 4] [0420] +14:42:44 [ 2] [ 16] [6213541000661333] +14:42:44 [ 3] [ 6] [010000] +14:42:44 [ 4] [ 12] [000100000000] +14:42:44 [ 7] [ 10] [0320143937] +14:42:44 [ 11] [ 6] [948866] +14:42:44 [ 12] [ 6] [143937] +14:42:44 [ 13] [ 4] [0320] +14:42:44 [ 15] [ 4] [0320] +14:42:44 [ 18] [ 4] [6011] +14:42:44 [ 19] [ 3] [418] +14:42:44 [ 22] [ 3] [021] +14:42:44 [ 25] [ 2] [01] +14:42:44 [ 28] [ 9] [C00002000] +14:42:44 [ 32] [ 6] [668899] +14:42:44 [ 35] [ 32] [6213541000661333=491212016133298] +14:42:44 [ 37] [ 12] [507901565347] +14:42:44 [ 39] [ 2] [00] +14:42:44 [ 41] [ 8] [03615001] +14:42:44 [ 42] [ 15] [APT ] +14:42:44 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:42:44 [ 49] [ 3] [418] +14:42:44 [ 51] [ 3] [418] +14:42:44 [ 52] [ 16] [866EC73E46571CFD] +14:42:44 [ 90] [ 42] [020094886603201439370000066889900000000000] +14:42:44 ============================================================================ +14:42:44 + + +waiting on router queue for slot.... +14:42:44 Sending to : +14:42:44 ============================================================================ +14:42:48 ============================================================================ +14:42:48 Slot Id : <182> +14:42:48 Transaction Type : RESPONSE +14:42:48 Received From : +14:42:48 ============================================================================ +14:42:48 FNo. Len. Field Value +14:42:48 ============================================================================ +14:42:48 [ 1] [ 4] [0430] +14:42:48 [ 2] [ 16] [6213541000661333] +14:42:48 [ 3] [ 6] [010000] +14:42:48 [ 4] [ 12] [000100000000] +14:42:48 [ 7] [ 10] [0320143937] +14:42:48 [ 11] [ 6] [948866] +14:42:48 [ 12] [ 6] [143937] +14:42:48 [ 13] [ 4] [0320] +14:42:48 [ 15] [ 4] [0320] +14:42:48 [ 18] [ 4] [6011] +14:42:48 [ 19] [ 3] [418] +14:42:48 [ 22] [ 3] [021] +14:42:48 [ 25] [ 2] [01] +14:42:48 [ 28] [ 9] [C00002000] +14:42:48 [ 32] [ 6] [668899] +14:42:48 [ 35] [ 32] [6213541000661333=491212016133298] +14:42:48 [ 37] [ 12] [507901565347] +14:42:48 [ 39] [ 2] [00] +14:42:48 [ 41] [ 8] [03615001] +14:42:48 [ 42] [ 15] [APT ] +14:42:48 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:42:48 [ 49] [ 3] [418] +14:42:48 [ 51] [ 3] [418] +14:42:48 [ 52] [ 16] [866EC73E46571CFD] +14:42:48 [ 90] [ 42] [020094886603201439370000066889900000000000] +14:42:48 ============================================================================ +14:42:48 Calculate Source COMM Id = 4 +14:42:48 ============================================================================ +14:42:48 + + +waiting on router queue for slot.... +14:42:54 ============================================================================ +14:42:54 Slot Id : <119> +14:42:54 Transaction Type : REQUEST +14:42:54 Received From : +14:42:54 ============================================================================ +14:42:54 FNo. Len. Field Value +14:42:54 ============================================================================ +14:42:54 [ 1] [ 4] [0800] +14:42:54 [ 7] [ 10] [0320074201] +14:42:54 [ 11] [ 6] [156839] +14:42:54 [ 70] [ 3] [301] +14:42:54 ============================================================================ +14:42:54 + + +waiting on router queue for slot.... +14:42:54 Sending to : +14:42:54 ============================================================================ +14:42:54 ============================================================================ +14:42:54 Slot Id : <119> +14:42:54 Transaction Type : RESPONSE +14:42:54 Received From : +14:42:54 ============================================================================ +14:42:54 FNo. Len. Field Value +14:42:54 ============================================================================ +14:42:54 [ 1] [ 4] [0810] +14:42:54 [ 7] [ 10] [0320074201] +14:42:54 [ 11] [ 6] [156839] +14:42:54 [ 39] [ 2] [00] +14:42:54 [ 70] [ 3] [301] +14:42:54 ============================================================================ +14:42:54 Calculate Source COMM Id = 2 +14:42:54 ============================================================================ +14:42:54 + + +waiting on router queue for slot.... +14:42:56 ============================================================================ +14:42:56 Slot Id : <139> +14:42:56 Transaction Type : REQUEST +14:42:56 Received From : +14:42:56 ============================================================================ +14:42:56 FNo. Len. Field Value +14:42:56 ============================================================================ +14:42:56 [ 1] [ 4] [0200] +14:42:56 [ 2] [ 16] [6213543000217264] +14:42:56 [ 3] [ 6] [311000] +14:42:56 [ 4] [ 12] [000000000000] +14:42:56 [ 7] [ 10] [0320145043] +14:42:56 [ 11] [ 6] [999943] +14:42:56 [ 12] [ 6] [145043] +14:42:56 [ 13] [ 4] [0320] +14:42:56 [ 14] [ 4] [4912] +14:42:56 [ 15] [ 4] [0320] +14:42:56 [ 18] [ 4] [6011] +14:42:56 [ 22] [ 3] [900] +14:42:56 [ 25] [ 2] [02] +14:42:56 [ 28] [ 9] [000000000] +14:42:56 [ 32] [ 6] [220699] +14:42:56 [ 35] [ 32] [6213543000217264=491212011726633] +14:42:56 [ 37] [ 12] [507900281354] +14:42:56 [ 41] [ 8] [10000100] +14:42:56 [ 42] [ 15] [APTRA ] +14:42:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:42:56 [ 49] [ 3] [418] +14:42:56 [ 52] [ 16] [389FDA22A1EC5A23] +14:42:56 ============================================================================ +14:42:56 + + +waiting on router queue for slot.... +14:42:56 Sending to : +14:42:56 ============================================================================ +14:42:56 Sending to : +14:42:56 ============================================================================ +14:42:56 ============================================================================ +14:42:56 Slot Id : <139> +14:42:56 Transaction Type : REQUEST +14:42:56 Received From : +14:42:56 ============================================================================ +14:42:56 FNo. Len. Field Value +14:42:56 ============================================================================ +14:42:56 [ 1] [ 4] [0200] +14:42:56 [ 2] [ 16] [6213543000217264] +14:42:56 [ 3] [ 6] [311000] +14:42:56 [ 4] [ 12] [000000000000] +14:42:56 [ 7] [ 10] [0320145043] +14:42:56 [ 11] [ 6] [999943] +14:42:56 [ 12] [ 6] [145043] +14:42:56 [ 13] [ 4] [0320] +14:42:56 [ 14] [ 4] [4912] +14:42:56 [ 15] [ 4] [0320] +14:42:56 [ 18] [ 4] [6011] +14:42:56 [ 22] [ 3] [900] +14:42:56 [ 25] [ 2] [02] +14:42:56 [ 28] [ 9] [000000000] +14:42:56 [ 32] [ 6] [220699] +14:42:56 [ 35] [ 32] [6213543000217264=491212011726633] +14:42:56 [ 37] [ 12] [507900281354] +14:42:56 [ 41] [ 8] [10000100] +14:42:56 [ 42] [ 15] [APTRA ] +14:42:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:42:56 [ 49] [ 3] [418] +14:42:56 [ 52] [ 16] [389FDA22A1EC5A23] +14:42:56 ============================================================================ +14:42:56 + + +waiting on router queue for slot.... +14:42:56 Sending to : +14:42:56 ============================================================================ +14:42:56 ============================================================================ +14:42:56 Slot Id : <139> +14:42:56 Transaction Type : REQUEST +14:42:56 Received From : +14:42:56 ============================================================================ +14:42:56 FNo. Len. Field Value +14:42:56 ============================================================================ +14:42:56 [ 1] [ 4] [0200] +14:42:56 [ 2] [ 16] [6213543000217264] +14:42:56 [ 3] [ 6] [311000] +14:42:56 [ 4] [ 12] [000000000000] +14:42:56 [ 7] [ 10] [0320145043] +14:42:56 [ 11] [ 6] [999943] +14:42:56 [ 12] [ 6] [145043] +14:42:56 [ 13] [ 4] [0320] +14:42:56 [ 14] [ 4] [4912] +14:42:56 [ 15] [ 4] [0320] +14:42:56 [ 18] [ 4] [6011] +14:42:56 [ 22] [ 3] [900] +14:42:56 [ 25] [ 2] [02] +14:42:56 [ 28] [ 9] [000000000] +14:42:56 [ 32] [ 6] [220699] +14:42:56 [ 35] [ 32] [6213543000217264=491212011726633] +14:42:56 [ 37] [ 12] [507900281354] +14:42:56 [ 41] [ 8] [10000100] +14:42:56 [ 42] [ 15] [APTRA ] +14:42:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:42:56 [ 49] [ 3] [418] +14:42:56 [ 52] [ 16] [1A5930D2AEC8BA2F] +14:42:56 ============================================================================ +14:42:56 + + +waiting on router queue for slot.... +14:42:56 Sending to : <0> +14:42:56 ============================================================================ +14:42:57 ============================================================================ +14:42:57 Slot Id : <139> +14:42:57 Transaction Type : RESPONSE +14:42:57 Received From : +14:42:57 ============================================================================ +14:42:57 FNo. Len. Field Value +14:42:57 ============================================================================ +14:42:57 [ 1] [ 4] [0210] +14:42:57 [ 2] [ 16] [6213543000217264] +14:42:57 [ 3] [ 6] [311000] +14:42:57 [ 4] [ 12] [000000000000] +14:42:57 [ 7] [ 10] [0320145043] +14:42:57 [ 11] [ 6] [999943] +14:42:57 [ 12] [ 6] [145043] +14:42:57 [ 13] [ 4] [0320] +14:42:57 [ 15] [ 4] [0320] +14:42:57 [ 18] [ 4] [6011] +14:42:57 [ 32] [ 6] [220699] +14:42:57 [ 35] [ 32] [6213543000217264=491212011726633] +14:42:57 [ 37] [ 12] [507900281354] +14:42:57 [ 38] [ 6] [340098] +14:42:57 [ 39] [ 2] [00] +14:42:57 [ 41] [ 8] [10000100] +14:42:57 [ 49] [ 3] [418] +14:42:57 [ 54] [ 40] [1001418C0000155708151002418C000015570815] +14:42:57 ============================================================================ +14:42:57 Sending to : +14:42:57 ============================================================================ +14:42:57 + + +waiting on router queue for slot.... +14:42:58 ============================================================================ +14:42:58 Slot Id : <139> +14:42:58 Transaction Type : RESPONSE +14:42:58 Received From : +14:42:58 ============================================================================ +14:42:58 FNo. Len. Field Value +14:42:58 ============================================================================ +14:42:58 [ 1] [ 4] [0210] +14:42:58 [ 2] [ 16] [6213543000217264] +14:42:58 [ 3] [ 6] [311000] +14:42:58 [ 4] [ 12] [000000000000] +14:42:58 [ 7] [ 10] [0320145043] +14:42:58 [ 11] [ 6] [999943] +14:42:58 [ 12] [ 6] [145043] +14:42:58 [ 13] [ 4] [0320] +14:42:58 [ 15] [ 4] [0320] +14:42:58 [ 18] [ 4] [6011] +14:42:58 [ 32] [ 6] [220699] +14:42:58 [ 35] [ 32] [6213543000217264=491212011726633] +14:42:58 [ 37] [ 12] [507900281354] +14:42:58 [ 38] [ 6] [340098] +14:42:58 [ 39] [ 2] [00] +14:42:58 [ 41] [ 8] [10000100] +14:42:58 [ 49] [ 3] [418] +14:42:58 [ 54] [ 40] [1001418C0000155708151002418C000015570815] +14:42:58 ============================================================================ +14:42:58 Calculate Source COMM Id = 1 +14:42:58 ============================================================================ +14:42:58 + + +waiting on router queue for slot.... +14:43:05 ============================================================================ +14:43:05 Slot Id : <202> +14:43:05 Transaction Type : REQUEST +14:43:05 Received From : +14:43:05 ============================================================================ +14:43:05 FNo. Len. Field Value +14:43:05 ============================================================================ +14:43:05 [ 1] [ 4] [0200] +14:43:05 [ 2] [ 16] [6688990040157180] +14:43:05 [ 3] [ 6] [011000] +14:43:05 [ 4] [ 12] [000074000000] +14:43:05 [ 7] [ 10] [0320144301] +14:43:05 [ 11] [ 6] [773625] +14:43:05 [ 12] [ 6] [144301] +14:43:05 [ 13] [ 4] [0320] +14:43:05 [ 15] [ 4] [0320] +14:43:05 [ 18] [ 4] [6011] +14:43:05 [ 22] [ 3] [900] +14:43:05 [ 25] [ 2] [02] +14:43:05 [ 28] [ 9] [D00002000] +14:43:05 [ 32] [ 6] [621354] +14:43:05 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:43:05 [ 37] [ 12] [507902539901] +14:43:05 [ 41] [ 8] [05003600] +14:43:05 [ 42] [ 15] [NATIVE ] +14:43:05 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:43:05 [ 49] [ 3] [418] +14:43:05 [ 52] [ 16] [DC0025D6E8211B84] +14:43:05 ============================================================================ +14:43:05 + + +waiting on router queue for slot.... +14:43:05 Sending to : +14:43:05 ============================================================================ +14:43:05 Sending to : +14:43:05 ============================================================================ +14:43:06 ============================================================================ +14:43:06 Slot Id : <202> +14:43:06 Transaction Type : REQUEST +14:43:06 Received From : +14:43:06 ============================================================================ +14:43:06 FNo. Len. Field Value +14:43:06 ============================================================================ +14:43:06 [ 1] [ 4] [0200] +14:43:06 [ 2] [ 16] [6688990040157180] +14:43:06 [ 3] [ 6] [011000] +14:43:06 [ 4] [ 12] [000074000000] +14:43:06 [ 7] [ 10] [0320144301] +14:43:06 [ 11] [ 6] [773625] +14:43:06 [ 12] [ 6] [144301] +14:43:06 [ 13] [ 4] [0320] +14:43:06 [ 15] [ 4] [0320] +14:43:06 [ 18] [ 4] [6011] +14:43:06 [ 22] [ 3] [900] +14:43:06 [ 25] [ 2] [02] +14:43:06 [ 28] [ 9] [D00002000] +14:43:06 [ 32] [ 6] [621354] +14:43:06 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:43:06 [ 37] [ 12] [507902539901] +14:43:06 [ 41] [ 8] [05003600] +14:43:06 [ 42] [ 15] [NATIVE ] +14:43:06 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:43:06 [ 49] [ 3] [418] +14:43:06 [ 52] [ 16] [DC0025D6E8211B84] +14:43:06 ============================================================================ +14:43:06 + + +waiting on router queue for slot.... +14:43:06 Sending to : +14:43:06 ============================================================================ +14:43:06 ============================================================================ +14:43:06 Slot Id : <202> +14:43:06 Transaction Type : REQUEST +14:43:06 Received From : +14:43:06 ============================================================================ +14:43:06 FNo. Len. Field Value +14:43:06 ============================================================================ +14:43:06 [ 1] [ 4] [0200] +14:43:06 [ 2] [ 16] [6688990040157180] +14:43:06 [ 3] [ 6] [011000] +14:43:06 [ 4] [ 12] [000074000000] +14:43:06 [ 7] [ 10] [0320144301] +14:43:06 [ 11] [ 6] [773625] +14:43:06 [ 12] [ 6] [144301] +14:43:06 [ 13] [ 4] [0320] +14:43:06 [ 15] [ 4] [0320] +14:43:06 [ 18] [ 4] [6011] +14:43:06 [ 22] [ 3] [900] +14:43:06 [ 25] [ 2] [02] +14:43:06 [ 28] [ 9] [D00002000] +14:43:06 [ 32] [ 6] [621354] +14:43:06 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:43:06 [ 37] [ 12] [507902539901] +14:43:06 [ 41] [ 8] [05003600] +14:43:06 [ 42] [ 15] [NATIVE ] +14:43:06 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:43:06 [ 49] [ 3] [418] +14:43:06 [ 52] [ 16] [6B09FBF5D156B32D] +14:43:06 ============================================================================ +14:43:06 + + +waiting on router queue for slot.... +14:43:06 Sending to : <4> +14:43:06 ============================================================================ +14:43:06 ============================================================================ +14:43:06 Slot Id : <202> +14:43:06 Transaction Type : RESPONSE +14:43:06 Received From : +14:43:06 ============================================================================ +14:43:06 FNo. Len. Field Value +14:43:06 ============================================================================ +14:43:06 [ 1] [ 4] [0210] +14:43:06 [ 2] [ 16] [6688990040157180] +14:43:06 [ 3] [ 6] [011000] +14:43:06 [ 4] [ 12] [000074000000] +14:43:06 [ 7] [ 10] [0320144301] +14:43:06 [ 11] [ 6] [773625] +14:43:06 [ 12] [ 6] [144301] +14:43:06 [ 13] [ 4] [0320] +14:43:06 [ 15] [ 4] [0320] +14:43:06 [ 18] [ 4] [6011] +14:43:06 [ 22] [ 3] [021] +14:43:06 [ 32] [ 6] [621354] +14:43:06 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:43:06 [ 37] [ 12] [507902539901] +14:43:06 [ 39] [ 2] [62] +14:43:06 [ 41] [ 8] [05003600] +14:43:06 [ 49] [ 3] [418] +14:43:06 ============================================================================ +14:43:06 Sending to : +14:43:06 ============================================================================ +14:43:06 + + +waiting on router queue for slot.... +14:43:06 ============================================================================ +14:43:06 Slot Id : <176> +14:43:06 Transaction Type : REQUEST +14:43:06 Received From : +14:43:06 ============================================================================ +14:43:06 FNo. Len. Field Value +14:43:06 ============================================================================ +14:43:06 [ 1] [ 4] [0800] +14:43:06 [ 2] [ 5] [02531] +14:43:06 [ 3] [ 6] [579148] +14:43:06 [ 7] [ 10] [0320074306] +14:43:06 [ 11] [ 6] [807266] +14:43:06 [ 15] [ 10] [0320074306] +14:43:06 [ 37] [ 11] [57914807266] +14:43:06 [ 70] [ 3] [001] +14:43:06 ============================================================================ +14:43:06 + + +waiting on router queue for slot.... +14:43:06 ============================================================================ +14:43:06 Slot Id : <176> +14:43:06 Transaction Type : RESPONSE +14:43:06 Received From : +14:43:06 ============================================================================ +14:43:06 FNo. Len. Field Value +14:43:06 ============================================================================ +14:43:06 [ 1] [ 4] [0810] +14:43:06 [ 7] [ 10] [0320074306] +14:43:06 [ 11] [ 6] [807266] +14:43:06 [ 15] [ 4] [0320] +14:43:06 [ 37] [ 12] [57914807266] +14:43:06 [ 39] [ 2] [00] +14:43:06 [ 70] [ 3] [001] +14:43:06 ============================================================================ +14:43:06 Sending to : +14:43:06 ============================================================================ +14:43:06 + + +waiting on router queue for slot.... +14:43:07 ============================================================================ +14:43:07 Slot Id : <202> +14:43:07 Transaction Type : RESPONSE +14:43:07 Received From : +14:43:07 ============================================================================ +14:43:07 FNo. Len. Field Value +14:43:07 ============================================================================ +14:43:07 [ 1] [ 4] [0210] +14:43:07 [ 2] [ 16] [6688990040157180] +14:43:07 [ 3] [ 6] [011000] +14:43:07 [ 4] [ 12] [000074000000] +14:43:07 [ 7] [ 10] [0320144301] +14:43:07 [ 11] [ 6] [773625] +14:43:07 [ 12] [ 6] [144301] +14:43:07 [ 13] [ 4] [0320] +14:43:07 [ 15] [ 4] [0320] +14:43:07 [ 18] [ 4] [6011] +14:43:07 [ 22] [ 3] [021] +14:43:07 [ 32] [ 6] [621354] +14:43:07 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:43:07 [ 37] [ 12] [507902539901] +14:43:07 [ 39] [ 2] [62] +14:43:07 [ 41] [ 8] [05003600] +14:43:07 [ 49] [ 3] [418] +14:43:07 ============================================================================ +14:43:07 Calculate Source COMM Id = 0 +14:43:07 ============================================================================ +14:43:07 + + +waiting on router queue for slot.... +14:43:10 ============================================================================ +14:43:10 Slot Id : <187> +14:43:10 Transaction Type : REQUEST +14:43:10 Received From : +14:43:10 ============================================================================ +14:43:10 FNo. Len. Field Value +14:43:10 ============================================================================ +14:43:10 [ 1] [ 4] [0800] +14:43:10 [ 7] [ 10] [0320074217] +14:43:10 [ 11] [ 6] [156840] +14:43:10 [ 70] [ 3] [301] +14:43:10 ============================================================================ +14:43:10 + + +waiting on router queue for slot.... +14:43:10 Sending to : +14:43:10 ============================================================================ +14:43:10 ============================================================================ +14:43:10 Slot Id : <187> +14:43:10 Transaction Type : RESPONSE +14:43:10 Received From : +14:43:10 ============================================================================ +14:43:10 FNo. Len. Field Value +14:43:10 ============================================================================ +14:43:10 [ 1] [ 4] [0810] +14:43:10 [ 7] [ 10] [0320074217] +14:43:10 [ 11] [ 6] [156840] +14:43:10 [ 39] [ 2] [00] +14:43:10 [ 70] [ 3] [301] +14:43:10 ============================================================================ +14:43:10 Calculate Source COMM Id = 2 +14:43:10 ============================================================================ +14:43:10 + + +waiting on router queue for slot.... +14:43:12 ============================================================================ +14:43:12 Slot Id : <156> +14:43:12 Transaction Type : REQUEST +14:43:12 Received From : +14:43:12 ============================================================================ +14:43:12 FNo. Len. Field Value +14:43:12 ============================================================================ +14:43:12 [ 1] [ 4] [0200] +14:43:12 [ 2] [ 16] [1808931700010158] +14:43:12 [ 3] [ 6] [011000] +14:43:12 [ 4] [ 12] [000100000000] +14:43:12 [ 7] [ 10] [0320144308] +14:43:12 [ 11] [ 6] [773656] +14:43:12 [ 12] [ 6] [144308] +14:43:12 [ 13] [ 4] [0320] +14:43:12 [ 15] [ 4] [0320] +14:43:12 [ 18] [ 4] [6011] +14:43:12 [ 22] [ 3] [900] +14:43:12 [ 25] [ 2] [02] +14:43:12 [ 28] [ 9] [D00002000] +14:43:12 [ 32] [ 6] [621354] +14:43:12 [ 35] [ 27] [1808931700010158=1803500595] +14:43:12 [ 37] [ 12] [507904795684] +14:43:12 [ 41] [ 8] [07001500] +14:43:12 [ 42] [ 15] [NATIVE ] +14:43:12 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +14:43:12 [ 49] [ 3] [418] +14:43:12 [ 52] [ 16] [B173495D66DF5D1A] +14:43:12 ============================================================================ +14:43:12 + + +waiting on router queue for slot.... +14:43:12 Sending to : +14:43:12 ============================================================================ +14:43:12 Sending to : +14:43:12 ============================================================================ +14:43:13 ============================================================================ +14:43:13 Slot Id : <156> +14:43:13 Transaction Type : REQUEST +14:43:13 Received From : +14:43:13 ============================================================================ +14:43:13 FNo. Len. Field Value +14:43:13 ============================================================================ +14:43:13 [ 1] [ 4] [0200] +14:43:13 [ 2] [ 16] [1808931700010158] +14:43:13 [ 3] [ 6] [011000] +14:43:13 [ 4] [ 12] [000100000000] +14:43:13 [ 7] [ 10] [0320144308] +14:43:13 [ 11] [ 6] [773656] +14:43:13 [ 12] [ 6] [144308] +14:43:13 [ 13] [ 4] [0320] +14:43:13 [ 15] [ 4] [0320] +14:43:13 [ 18] [ 4] [6011] +14:43:13 [ 22] [ 3] [900] +14:43:13 [ 25] [ 2] [02] +14:43:13 [ 28] [ 9] [D00002000] +14:43:13 [ 32] [ 6] [621354] +14:43:13 [ 35] [ 27] [1808931700010158=1803500595] +14:43:13 [ 37] [ 12] [507904795684] +14:43:13 [ 41] [ 8] [07001500] +14:43:13 [ 42] [ 15] [NATIVE ] +14:43:13 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +14:43:13 [ 49] [ 3] [418] +14:43:13 [ 52] [ 16] [B173495D66DF5D1A] +14:43:13 ============================================================================ +14:43:13 + + +waiting on router queue for slot.... +14:43:13 Sending to : +14:43:13 ============================================================================ +14:43:13 ============================================================================ +14:43:13 Slot Id : <156> +14:43:13 Transaction Type : REQUEST +14:43:13 Received From : +14:43:13 ============================================================================ +14:43:13 FNo. Len. Field Value +14:43:13 ============================================================================ +14:43:13 [ 1] [ 4] [0200] +14:43:13 [ 2] [ 16] [1808931700010158] +14:43:13 [ 3] [ 6] [011000] +14:43:13 [ 4] [ 12] [000100000000] +14:43:13 [ 7] [ 10] [0320144308] +14:43:13 [ 11] [ 6] [773656] +14:43:13 [ 12] [ 6] [144308] +14:43:13 [ 13] [ 4] [0320] +14:43:13 [ 15] [ 4] [0320] +14:43:13 [ 18] [ 4] [6011] +14:43:13 [ 22] [ 3] [900] +14:43:13 [ 25] [ 2] [02] +14:43:13 [ 28] [ 9] [D00002000] +14:43:13 [ 32] [ 6] [621354] +14:43:13 [ 35] [ 27] [1808931700010158=1803500595] +14:43:13 [ 37] [ 12] [507904795684] +14:43:13 [ 41] [ 8] [07001500] +14:43:13 [ 42] [ 15] [NATIVE ] +14:43:13 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +14:43:13 [ 49] [ 3] [418] +14:43:13 [ 52] [ 16] [C4ACF49E5F11058B] +14:43:13 ============================================================================ +14:43:13 + + +waiting on router queue for slot.... +14:43:13 Sending to : <2> +14:43:13 ============================================================================ +14:43:15 ============================================================================ +14:43:15 Slot Id : <160> +14:43:15 Transaction Type : REQUEST +14:43:15 Received From : +14:43:15 ============================================================================ +14:43:15 FNo. Len. Field Value +14:43:15 ============================================================================ +14:43:15 [ 1] [ 4] [0200] +14:43:15 [ 2] [ 16] [6213544001521373] +14:43:15 [ 3] [ 6] [300000] +14:43:15 [ 4] [ 12] [000000000000] +14:43:15 [ 7] [ 10] [0320144106] +14:43:15 [ 11] [ 6] [948904] +14:43:15 [ 12] [ 6] [144106] +14:43:15 [ 13] [ 4] [0320] +14:43:15 [ 15] [ 4] [0320] +14:43:15 [ 18] [ 4] [6011] +14:43:15 [ 19] [ 3] [418] +14:43:15 [ 22] [ 3] [021] +14:43:15 [ 25] [ 2] [01] +14:43:15 [ 28] [ 9] [D00000000] +14:43:15 [ 32] [ 6] [668899] +14:43:15 [ 35] [ 32] [6213544001521373=491212012137257] +14:43:15 [ 37] [ 12] [507902093350] +14:43:15 [ 41] [ 8] [03020021] +14:43:15 [ 42] [ 15] [APT ] +14:43:15 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +14:43:15 [ 49] [ 3] [418] +14:43:15 [ 52] [ 16] [D740CE36CB06EB80] +14:43:15 ============================================================================ +14:43:15 + + +waiting on router queue for slot.... +14:43:15 Sending to : +14:43:15 ============================================================================ +14:43:15 Sending to : +14:43:15 ============================================================================ +14:43:16 ============================================================================ +14:43:16 Slot Id : <160> +14:43:16 Transaction Type : REQUEST +14:43:16 Received From : +14:43:16 ============================================================================ +14:43:16 FNo. Len. Field Value +14:43:16 ============================================================================ +14:43:16 [ 1] [ 4] [0200] +14:43:16 [ 2] [ 16] [6213544001521373] +14:43:16 [ 3] [ 6] [300000] +14:43:16 [ 4] [ 12] [000000000000] +14:43:16 [ 7] [ 10] [0320144106] +14:43:16 [ 11] [ 6] [948904] +14:43:16 [ 12] [ 6] [144106] +14:43:16 [ 13] [ 4] [0320] +14:43:16 [ 15] [ 4] [0320] +14:43:16 [ 18] [ 4] [6011] +14:43:16 [ 19] [ 3] [418] +14:43:16 [ 22] [ 3] [021] +14:43:16 [ 25] [ 2] [01] +14:43:16 [ 28] [ 9] [D00000000] +14:43:16 [ 32] [ 6] [668899] +14:43:16 [ 35] [ 32] [6213544001521373=491212012137257] +14:43:16 [ 37] [ 12] [507902093350] +14:43:16 [ 41] [ 8] [03020021] +14:43:16 [ 42] [ 15] [APT ] +14:43:16 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +14:43:16 [ 49] [ 3] [418] +14:43:16 [ 52] [ 16] [D740CE36CB06EB80] +14:43:16 ============================================================================ +14:43:16 + + +waiting on router queue for slot.... +14:43:16 Sending to : +14:43:16 ============================================================================ +14:43:16 ============================================================================ +14:43:16 Slot Id : <160> +14:43:16 Transaction Type : REQUEST +14:43:16 Received From : +14:43:16 ============================================================================ +14:43:16 FNo. Len. Field Value +14:43:16 ============================================================================ +14:43:16 [ 1] [ 4] [0200] +14:43:16 [ 2] [ 16] [6213544001521373] +14:43:16 [ 3] [ 6] [300000] +14:43:16 [ 4] [ 12] [000000000000] +14:43:16 [ 7] [ 10] [0320144106] +14:43:16 [ 11] [ 6] [948904] +14:43:16 [ 12] [ 6] [144106] +14:43:16 [ 13] [ 4] [0320] +14:43:16 [ 15] [ 4] [0320] +14:43:16 [ 18] [ 4] [6011] +14:43:16 [ 19] [ 3] [418] +14:43:16 [ 22] [ 3] [021] +14:43:16 [ 25] [ 2] [01] +14:43:16 [ 28] [ 9] [D00000000] +14:43:16 [ 32] [ 6] [668899] +14:43:16 [ 35] [ 32] [6213544001521373=491212012137257] +14:43:16 [ 37] [ 12] [507902093350] +14:43:16 [ 41] [ 8] [03020021] +14:43:16 [ 42] [ 15] [APT ] +14:43:16 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +14:43:16 [ 49] [ 3] [418] +14:43:16 [ 52] [ 16] [C2DCAD566BEC18C9] +14:43:16 ============================================================================ +14:43:16 + + +waiting on router queue for slot.... +14:43:16 Sending to : <0> +14:43:16 ============================================================================ +14:43:16 ============================================================================ +14:43:16 Slot Id : <160> +14:43:16 Transaction Type : RESPONSE +14:43:16 Received From : +14:43:16 ============================================================================ +14:43:16 FNo. Len. Field Value +14:43:16 ============================================================================ +14:43:16 [ 1] [ 4] [0210] +14:43:16 [ 2] [ 16] [6213544001521373] +14:43:16 [ 3] [ 6] [300000] +14:43:16 [ 4] [ 12] [000000000000] +14:43:16 [ 7] [ 10] [0320144106] +14:43:16 [ 11] [ 6] [948904] +14:43:16 [ 12] [ 6] [144106] +14:43:16 [ 13] [ 4] [0320] +14:43:16 [ 15] [ 4] [0320] +14:43:16 [ 18] [ 4] [6011] +14:43:16 [ 19] [ 3] [418] +14:43:16 [ 32] [ 6] [668899] +14:43:16 [ 35] [ 32] [6213544001521373=491212012137257] +14:43:16 [ 37] [ 12] [507902093350] +14:43:16 [ 38] [ 6] [606780] +14:43:16 [ 39] [ 2] [00] +14:43:16 [ 41] [ 8] [03020021] +14:43:16 [ 49] [ 3] [418] +14:43:16 [ 54] [ 40] [0001418C0000592233910002418C000059223391] +14:43:16 ============================================================================ +14:43:16 Sending to : +14:43:16 ============================================================================ +14:43:16 + + +waiting on router queue for slot.... +14:43:17 ============================================================================ +14:43:17 Slot Id : <160> +14:43:17 Transaction Type : RESPONSE +14:43:17 Received From : +14:43:17 ============================================================================ +14:43:17 FNo. Len. Field Value +14:43:17 ============================================================================ +14:43:17 [ 1] [ 4] [0210] +14:43:17 [ 2] [ 16] [6213544001521373] +14:43:17 [ 3] [ 6] [300000] +14:43:17 [ 4] [ 12] [000000000000] +14:43:17 [ 7] [ 10] [0320144106] +14:43:17 [ 11] [ 6] [948904] +14:43:17 [ 12] [ 6] [144106] +14:43:17 [ 13] [ 4] [0320] +14:43:17 [ 15] [ 4] [0320] +14:43:17 [ 18] [ 4] [6011] +14:43:17 [ 19] [ 3] [418] +14:43:17 [ 32] [ 6] [668899] +14:43:17 [ 35] [ 32] [6213544001521373=491212012137257] +14:43:17 [ 37] [ 12] [507902093350] +14:43:17 [ 38] [ 6] [606780] +14:43:17 [ 39] [ 2] [00] +14:43:17 [ 41] [ 8] [03020021] +14:43:17 [ 49] [ 3] [418] +14:43:17 [ 54] [ 40] [0001418C0000592233910002418C000059223391] +14:43:17 ============================================================================ +14:43:17 Calculate Source COMM Id = 4 +14:43:17 ============================================================================ +14:43:17 + + +waiting on router queue for slot.... +14:43:18 ============================================================================ +14:43:18 Slot Id : <144> +14:43:18 Transaction Type : REQUEST +14:43:18 Received From : +14:43:18 ============================================================================ +14:43:18 FNo. Len. Field Value +14:43:18 ============================================================================ +14:43:18 [ 1] [ 4] [0200] +14:43:18 [ 2] [ 16] [6213545000096911] +14:43:18 [ 3] [ 6] [302000] +14:43:18 [ 7] [ 10] [0320074225] +14:43:18 [ 11] [ 6] [269773] +14:43:18 [ 12] [ 6] [144225] +14:43:18 [ 13] [ 4] [0320] +14:43:18 [ 14] [ 4] [4912] +14:43:18 [ 15] [ 4] [0320] +14:43:18 [ 18] [ 4] [6011] +14:43:18 [ 19] [ 3] [418] +14:43:18 [ 22] [ 3] [021] +14:43:18 [ 25] [ 2] [01] +14:43:18 [ 32] [ 6] [180893] +14:43:18 [ 35] [ 32] [6213545000096911=491212019691520] +14:43:18 [ 37] [ 12] [507907269773] +14:43:18 [ 41] [ 8] [0112CPBR] +14:43:18 [ 42] [ 15] [999999 ] +14:43:18 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:43:18 [ 49] [ 3] [418] +14:43:18 [ 52] [ 16] [2E09678A63B812C7] +14:43:18 ============================================================================ +14:43:18 + + +waiting on router queue for slot.... +14:43:18 Sending to : +14:43:18 ============================================================================ +14:43:18 Sending to : +14:43:18 ============================================================================ +14:43:18 ============================================================================ +14:43:18 Slot Id : <144> +14:43:18 Transaction Type : REQUEST +14:43:18 Received From : +14:43:18 ============================================================================ +14:43:18 FNo. Len. Field Value +14:43:18 ============================================================================ +14:43:18 [ 1] [ 4] [0200] +14:43:18 [ 2] [ 16] [6213545000096911] +14:43:18 [ 3] [ 6] [302000] +14:43:18 [ 7] [ 10] [0320074225] +14:43:18 [ 11] [ 6] [269773] +14:43:18 [ 12] [ 6] [144225] +14:43:18 [ 13] [ 4] [0320] +14:43:18 [ 14] [ 4] [4912] +14:43:18 [ 15] [ 4] [0320] +14:43:18 [ 18] [ 4] [6011] +14:43:18 [ 19] [ 3] [418] +14:43:18 [ 22] [ 3] [021] +14:43:18 [ 25] [ 2] [01] +14:43:18 [ 32] [ 6] [180893] +14:43:18 [ 35] [ 32] [6213545000096911=491212019691520] +14:43:18 [ 37] [ 12] [507907269773] +14:43:18 [ 41] [ 8] [0112CPBR] +14:43:18 [ 42] [ 15] [999999 ] +14:43:18 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:43:18 [ 49] [ 3] [418] +14:43:18 [ 52] [ 16] [2E09678A63B812C7] +14:43:18 ============================================================================ +14:43:18 + + +waiting on router queue for slot.... +14:43:18 Sending to : +14:43:18 ============================================================================ +14:43:18 ============================================================================ +14:43:18 Slot Id : <144> +14:43:18 Transaction Type : REQUEST +14:43:18 Received From : +14:43:18 ============================================================================ +14:43:18 FNo. Len. Field Value +14:43:18 ============================================================================ +14:43:18 [ 1] [ 4] [0200] +14:43:18 [ 2] [ 16] [6213545000096911] +14:43:18 [ 3] [ 6] [302000] +14:43:18 [ 7] [ 10] [0320074225] +14:43:18 [ 11] [ 6] [269773] +14:43:18 [ 12] [ 6] [144225] +14:43:18 [ 13] [ 4] [0320] +14:43:18 [ 14] [ 4] [4912] +14:43:18 [ 15] [ 4] [0320] +14:43:18 [ 18] [ 4] [6011] +14:43:18 [ 19] [ 3] [418] +14:43:18 [ 22] [ 3] [021] +14:43:18 [ 25] [ 2] [01] +14:43:18 [ 32] [ 6] [180893] +14:43:18 [ 35] [ 32] [6213545000096911=491212019691520] +14:43:18 [ 37] [ 12] [507907269773] +14:43:18 [ 41] [ 8] [0112CPBR] +14:43:18 [ 42] [ 15] [999999 ] +14:43:18 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:43:18 [ 49] [ 3] [418] +14:43:18 [ 52] [ 16] [916B4D5FAD120EF4] +14:43:18 ============================================================================ +14:43:18 + + +waiting on router queue for slot.... +14:43:18 Sending to : <0> +14:43:18 ============================================================================ +14:43:19 ============================================================================ +14:43:19 Slot Id : <144> +14:43:19 Transaction Type : RESPONSE +14:43:19 Received From : +14:43:19 ============================================================================ +14:43:19 FNo. Len. Field Value +14:43:19 ============================================================================ +14:43:19 [ 1] [ 4] [0210] +14:43:19 [ 2] [ 16] [6213545000096911] +14:43:19 [ 3] [ 6] [302000] +14:43:19 [ 4] [ 12] [000000000000] +14:43:19 [ 7] [ 10] [0320074225] +14:43:19 [ 11] [ 6] [269773] +14:43:19 [ 12] [ 6] [144225] +14:43:19 [ 13] [ 4] [0320] +14:43:19 [ 15] [ 4] [0320] +14:43:19 [ 18] [ 4] [6011] +14:43:19 [ 19] [ 3] [418] +14:43:19 [ 32] [ 6] [180893] +14:43:19 [ 35] [ 32] [6213545000096911=491212019691520] +14:43:19 [ 37] [ 12] [507907269773] +14:43:19 [ 38] [ 6] [857241] +14:43:19 [ 39] [ 2] [00] +14:43:19 [ 41] [ 8] [0112CPBR] +14:43:19 [ 49] [ 3] [418] +14:43:19 [ 54] [ 40] [2001418C0002396499242002418C000239649924] +14:43:19 ============================================================================ +14:43:19 Sending to : +14:43:19 ============================================================================ +14:43:19 + + +waiting on router queue for slot.... +14:43:19 ============================================================================ +14:43:19 Slot Id : <156> +14:43:19 Transaction Type : RESPONSE +14:43:19 Received From : +14:43:19 ============================================================================ +14:43:19 FNo. Len. Field Value +14:43:19 ============================================================================ +14:43:19 [ 1] [ 4] [0210] +14:43:19 [ 2] [ 16] [1808931700010158] +14:43:19 [ 3] [ 6] [011000] +14:43:19 [ 4] [ 12] [000100000000] +14:43:19 [ 6] [ 12] [000100000000] +14:43:19 [ 7] [ 10] [0320144308] +14:43:19 [ 11] [ 6] [773656] +14:43:19 [ 12] [ 6] [144308] +14:43:19 [ 13] [ 4] [0320] +14:43:19 [ 18] [ 4] [6011] +14:43:19 [ 19] [ 3] [418] +14:43:19 [ 22] [ 3] [021] +14:43:19 [ 32] [ 6] [621354] +14:43:19 [ 35] [ 27] [1808931700010158=1803500595] +14:43:19 [ 37] [ 12] [507904795684] +14:43:19 [ 38] [ 6] [773656] +14:43:19 [ 39] [ 2] [00] +14:43:19 [ 41] [ 8] [07001500] +14:43:19 [ 49] [ 3] [418] +14:43:19 [ 52] [ 16] [C4ACF49E5F11058B] +14:43:19 [ 54] [ 20] [1001418C000207461800] +14:43:19 ============================================================================ +14:43:19 Sending to : +14:43:19 ============================================================================ +14:43:19 + + +waiting on router queue for slot.... +14:43:20 ============================================================================ +14:43:20 Slot Id : <144> +14:43:20 Transaction Type : RESPONSE +14:43:20 Received From : +14:43:20 ============================================================================ +14:43:20 FNo. Len. Field Value +14:43:20 ============================================================================ +14:43:20 [ 1] [ 4] [0210] +14:43:20 [ 2] [ 16] [6213545000096911] +14:43:20 [ 3] [ 6] [302000] +14:43:20 [ 4] [ 12] [000000000000] +14:43:20 [ 7] [ 10] [0320074225] +14:43:20 [ 11] [ 6] [269773] +14:43:20 [ 12] [ 6] [144225] +14:43:20 [ 13] [ 4] [0320] +14:43:20 [ 15] [ 4] [0320] +14:43:20 [ 18] [ 4] [6011] +14:43:20 [ 19] [ 3] [418] +14:43:20 [ 32] [ 6] [180893] +14:43:20 [ 35] [ 32] [6213545000096911=491212019691520] +14:43:20 [ 37] [ 12] [507907269773] +14:43:20 [ 38] [ 6] [857241] +14:43:20 [ 39] [ 2] [00] +14:43:20 [ 41] [ 8] [0112CPBR] +14:43:20 [ 49] [ 3] [418] +14:43:20 [ 54] [ 40] [2001418C0002396499242002418C000239649924] +14:43:20 ============================================================================ +14:43:20 Calculate Source COMM Id = 2 +14:43:20 ============================================================================ +14:43:20 + + +waiting on router queue for slot.... +14:43:21 ============================================================================ +14:43:21 Slot Id : <156> +14:43:21 Transaction Type : RESPONSE +14:43:21 Received From : +14:43:21 ============================================================================ +14:43:21 FNo. Len. Field Value +14:43:21 ============================================================================ +14:43:21 [ 1] [ 4] [0210] +14:43:21 [ 2] [ 16] [1808931700010158] +14:43:21 [ 3] [ 6] [011000] +14:43:21 [ 4] [ 12] [000100000000] +14:43:21 [ 6] [ 12] [000100000000] +14:43:21 [ 7] [ 10] [0320144308] +14:43:21 [ 11] [ 6] [773656] +14:43:21 [ 12] [ 6] [144308] +14:43:21 [ 13] [ 4] [0320] +14:43:21 [ 18] [ 4] [6011] +14:43:21 [ 19] [ 3] [418] +14:43:21 [ 22] [ 3] [021] +14:43:21 [ 32] [ 6] [621354] +14:43:21 [ 35] [ 27] [1808931700010158=1803500595] +14:43:21 [ 37] [ 12] [507904795684] +14:43:21 [ 38] [ 6] [773656] +14:43:21 [ 39] [ 2] [00] +14:43:21 [ 41] [ 8] [07001500] +14:43:21 [ 49] [ 3] [418] +14:43:21 [ 52] [ 16] [C4ACF49E5F11058B] +14:43:21 [ 54] [ 20] [1001418C000207461800] +14:43:21 ============================================================================ +14:43:21 Calculate Source COMM Id = 0 +14:43:21 ============================================================================ +14:43:21 + + +waiting on router queue for slot.... +14:43:29 ============================================================================ +14:43:29 Slot Id : <203> +14:43:29 Transaction Type : REQUEST +14:43:29 Received From : +14:43:29 ============================================================================ +14:43:29 FNo. Len. Field Value +14:43:29 ============================================================================ +14:43:29 [ 1] [ 4] [0200] +14:43:29 [ 2] [ 16] [6213543000217264] +14:43:29 [ 3] [ 6] [011000] +14:43:29 [ 4] [ 12] [000010000000] +14:43:29 [ 7] [ 10] [0320145116] +14:43:29 [ 11] [ 6] [999944] +14:43:29 [ 12] [ 6] [145116] +14:43:29 [ 13] [ 4] [0320] +14:43:29 [ 14] [ 4] [4912] +14:43:29 [ 15] [ 4] [0320] +14:43:29 [ 18] [ 4] [6011] +14:43:29 [ 22] [ 3] [900] +14:43:29 [ 25] [ 2] [02] +14:43:29 [ 28] [ 9] [D00002000] +14:43:29 [ 32] [ 6] [220699] +14:43:29 [ 35] [ 32] [6213543000217264=491212011726633] +14:43:29 [ 37] [ 12] [507900281355] +14:43:29 [ 41] [ 8] [10000100] +14:43:29 [ 42] [ 15] [APTRA ] +14:43:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:43:29 [ 49] [ 3] [418] +14:43:29 [ 52] [ 16] [389FDA22A1EC5A23] +14:43:29 ============================================================================ +14:43:29 + + +waiting on router queue for slot.... +14:43:29 Sending to : +14:43:29 ============================================================================ +14:43:29 Sending to : +14:43:29 ============================================================================ +14:43:29 ============================================================================ +14:43:29 Slot Id : <203> +14:43:29 Transaction Type : REQUEST +14:43:29 Received From : +14:43:29 ============================================================================ +14:43:29 FNo. Len. Field Value +14:43:29 ============================================================================ +14:43:29 [ 1] [ 4] [0200] +14:43:29 [ 2] [ 16] [6213543000217264] +14:43:29 [ 3] [ 6] [011000] +14:43:29 [ 4] [ 12] [000010000000] +14:43:29 [ 7] [ 10] [0320145116] +14:43:29 [ 11] [ 6] [999944] +14:43:29 [ 12] [ 6] [145116] +14:43:29 [ 13] [ 4] [0320] +14:43:29 [ 14] [ 4] [4912] +14:43:29 [ 15] [ 4] [0320] +14:43:29 [ 18] [ 4] [6011] +14:43:29 [ 22] [ 3] [900] +14:43:29 [ 25] [ 2] [02] +14:43:29 [ 28] [ 9] [D00002000] +14:43:29 [ 32] [ 6] [220699] +14:43:29 [ 35] [ 32] [6213543000217264=491212011726633] +14:43:29 [ 37] [ 12] [507900281355] +14:43:29 [ 41] [ 8] [10000100] +14:43:29 [ 42] [ 15] [APTRA ] +14:43:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:43:29 [ 49] [ 3] [418] +14:43:29 [ 52] [ 16] [389FDA22A1EC5A23] +14:43:29 ============================================================================ +14:43:29 + + +waiting on router queue for slot.... +14:43:29 Sending to : +14:43:29 ============================================================================ +14:43:29 ============================================================================ +14:43:29 Slot Id : <203> +14:43:29 Transaction Type : REQUEST +14:43:29 Received From : +14:43:29 ============================================================================ +14:43:29 FNo. Len. Field Value +14:43:29 ============================================================================ +14:43:29 [ 1] [ 4] [0200] +14:43:29 [ 2] [ 16] [6213543000217264] +14:43:29 [ 3] [ 6] [011000] +14:43:29 [ 4] [ 12] [000010000000] +14:43:29 [ 7] [ 10] [0320145116] +14:43:29 [ 11] [ 6] [999944] +14:43:29 [ 12] [ 6] [145116] +14:43:29 [ 13] [ 4] [0320] +14:43:29 [ 14] [ 4] [4912] +14:43:29 [ 15] [ 4] [0320] +14:43:29 [ 18] [ 4] [6011] +14:43:29 [ 22] [ 3] [900] +14:43:29 [ 25] [ 2] [02] +14:43:29 [ 28] [ 9] [D00002000] +14:43:29 [ 32] [ 6] [220699] +14:43:29 [ 35] [ 32] [6213543000217264=491212011726633] +14:43:29 [ 37] [ 12] [507900281355] +14:43:29 [ 41] [ 8] [10000100] +14:43:29 [ 42] [ 15] [APTRA ] +14:43:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:43:29 [ 49] [ 3] [418] +14:43:29 [ 52] [ 16] [1A5930D2AEC8BA2F] +14:43:29 ============================================================================ +14:43:29 + + +waiting on router queue for slot.... +14:43:29 Sending to : <0> +14:43:29 ============================================================================ +14:43:30 ============================================================================ +14:43:30 Slot Id : <203> +14:43:30 Transaction Type : RESPONSE +14:43:30 Received From : +14:43:30 ============================================================================ +14:43:30 FNo. Len. Field Value +14:43:30 ============================================================================ +14:43:30 [ 1] [ 4] [0210] +14:43:30 [ 2] [ 16] [6213543000217264] +14:43:30 [ 3] [ 6] [011000] +14:43:30 [ 4] [ 12] [000010000000] +14:43:30 [ 7] [ 10] [0320145116] +14:43:30 [ 11] [ 6] [999944] +14:43:30 [ 12] [ 6] [145116] +14:43:30 [ 13] [ 4] [0320] +14:43:30 [ 15] [ 4] [0320] +14:43:30 [ 18] [ 4] [6011] +14:43:30 [ 32] [ 6] [220699] +14:43:30 [ 35] [ 32] [6213543000217264=491212011726633] +14:43:30 [ 37] [ 12] [507900281355] +14:43:30 [ 38] [ 6] [009623] +14:43:30 [ 39] [ 2] [00] +14:43:30 [ 41] [ 8] [10000100] +14:43:30 [ 49] [ 3] [418] +14:43:30 [ 54] [ 40] [1001418C0000053708151002418C000005370815] +14:43:30 ============================================================================ +14:43:30 Sending to : +14:43:30 ============================================================================ +14:43:30 + + +waiting on router queue for slot.... +14:43:31 ============================================================================ +14:43:31 Slot Id : <203> +14:43:31 Transaction Type : RESPONSE +14:43:31 Received From : +14:43:31 ============================================================================ +14:43:31 FNo. Len. Field Value +14:43:31 ============================================================================ +14:43:31 [ 1] [ 4] [0210] +14:43:31 [ 2] [ 16] [6213543000217264] +14:43:31 [ 3] [ 6] [011000] +14:43:31 [ 4] [ 12] [000010000000] +14:43:31 [ 7] [ 10] [0320145116] +14:43:31 [ 11] [ 6] [999944] +14:43:31 [ 12] [ 6] [145116] +14:43:31 [ 13] [ 4] [0320] +14:43:31 [ 15] [ 4] [0320] +14:43:31 [ 18] [ 4] [6011] +14:43:31 [ 32] [ 6] [220699] +14:43:31 [ 35] [ 32] [6213543000217264=491212011726633] +14:43:31 [ 37] [ 12] [507900281355] +14:43:31 [ 38] [ 6] [009623] +14:43:31 [ 39] [ 2] [00] +14:43:31 [ 41] [ 8] [10000100] +14:43:31 [ 49] [ 3] [418] +14:43:31 [ 54] [ 40] [1001418C0000053708151002418C000005370815] +14:43:31 ============================================================================ +14:43:31 Calculate Source COMM Id = 1 +14:43:31 ============================================================================ +14:43:31 + + +waiting on router queue for slot.... +14:43:32 ============================================================================ +14:43:32 Slot Id : <163> +14:43:32 Transaction Type : REQUEST +14:43:32 Received From : +14:43:32 ============================================================================ +14:43:32 FNo. Len. Field Value +14:43:32 ============================================================================ +14:43:32 [ 1] [ 4] [0800] +14:43:32 [ 7] [ 10] [0320074239] +14:43:32 [ 11] [ 6] [156841] +14:43:32 [ 70] [ 3] [301] +14:43:32 ============================================================================ +14:43:32 + + +waiting on router queue for slot.... +14:43:32 Sending to : +14:43:32 ============================================================================ +14:43:32 ============================================================================ +14:43:32 Slot Id : <163> +14:43:32 Transaction Type : RESPONSE +14:43:32 Received From : +14:43:32 ============================================================================ +14:43:32 FNo. Len. Field Value +14:43:32 ============================================================================ +14:43:32 [ 1] [ 4] [0810] +14:43:32 [ 7] [ 10] [0320074239] +14:43:32 [ 11] [ 6] [156841] +14:43:32 [ 39] [ 2] [00] +14:43:32 [ 70] [ 3] [301] +14:43:32 ============================================================================ +14:43:32 Calculate Source COMM Id = 2 +14:43:32 ============================================================================ +14:43:32 + + +waiting on router queue for slot.... +14:43:35 ============================================================================ +14:43:35 Slot Id : <179> +14:43:35 Transaction Type : REQUEST +14:43:35 Received From : +14:43:35 ============================================================================ +14:43:35 FNo. Len. Field Value +14:43:35 ============================================================================ +14:43:35 [ 1] [ 4] [0200] +14:43:35 [ 2] [ 16] [6688990603028703] +14:43:35 [ 3] [ 6] [012000] +14:43:35 [ 4] [ 12] [000100000000] +14:43:35 [ 7] [ 10] [0320144330] +14:43:35 [ 11] [ 6] [773727] +14:43:35 [ 12] [ 6] [144330] +14:43:35 [ 13] [ 4] [0320] +14:43:35 [ 15] [ 4] [0320] +14:43:35 [ 18] [ 4] [6011] +14:43:35 [ 22] [ 3] [900] +14:43:35 [ 25] [ 2] [02] +14:43:35 [ 28] [ 9] [D00002000] +14:43:35 [ 32] [ 6] [621354] +14:43:35 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:43:35 [ 37] [ 12] [507904731473] +14:43:35 [ 41] [ 8] [07000900] +14:43:35 [ 42] [ 15] [NATIVE ] +14:43:35 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:43:35 [ 49] [ 3] [418] +14:43:35 [ 52] [ 16] [C24EAF7387258530] +14:43:35 ============================================================================ +14:43:35 + + +waiting on router queue for slot.... +14:43:35 Sending to : +14:43:35 ============================================================================ +14:43:35 Sending to : +14:43:35 ============================================================================ +14:43:35 ============================================================================ +14:43:35 Slot Id : <179> +14:43:35 Transaction Type : REQUEST +14:43:35 Received From : +14:43:35 ============================================================================ +14:43:35 FNo. Len. Field Value +14:43:35 ============================================================================ +14:43:35 [ 1] [ 4] [0200] +14:43:35 [ 2] [ 16] [6688990603028703] +14:43:35 [ 3] [ 6] [012000] +14:43:35 [ 4] [ 12] [000100000000] +14:43:35 [ 7] [ 10] [0320144330] +14:43:35 [ 11] [ 6] [773727] +14:43:35 [ 12] [ 6] [144330] +14:43:35 [ 13] [ 4] [0320] +14:43:35 [ 15] [ 4] [0320] +14:43:35 [ 18] [ 4] [6011] +14:43:35 [ 22] [ 3] [900] +14:43:35 [ 25] [ 2] [02] +14:43:35 [ 28] [ 9] [D00002000] +14:43:35 [ 32] [ 6] [621354] +14:43:35 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:43:35 [ 37] [ 12] [507904731473] +14:43:35 [ 41] [ 8] [07000900] +14:43:35 [ 42] [ 15] [NATIVE ] +14:43:35 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:43:35 [ 49] [ 3] [418] +14:43:35 [ 52] [ 16] [C24EAF7387258530] +14:43:35 ============================================================================ +14:43:35 + + +waiting on router queue for slot.... +14:43:35 Sending to : +14:43:35 ============================================================================ +14:43:35 ============================================================================ +14:43:35 Slot Id : <179> +14:43:35 Transaction Type : REQUEST +14:43:35 Received From : +14:43:35 ============================================================================ +14:43:35 FNo. Len. Field Value +14:43:35 ============================================================================ +14:43:35 [ 1] [ 4] [0200] +14:43:35 [ 2] [ 16] [6688990603028703] +14:43:35 [ 3] [ 6] [012000] +14:43:35 [ 4] [ 12] [000100000000] +14:43:35 [ 7] [ 10] [0320144330] +14:43:35 [ 11] [ 6] [773727] +14:43:35 [ 12] [ 6] [144330] +14:43:35 [ 13] [ 4] [0320] +14:43:35 [ 15] [ 4] [0320] +14:43:35 [ 18] [ 4] [6011] +14:43:35 [ 22] [ 3] [900] +14:43:35 [ 25] [ 2] [02] +14:43:35 [ 28] [ 9] [D00002000] +14:43:35 [ 32] [ 6] [621354] +14:43:35 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:43:35 [ 37] [ 12] [507904731473] +14:43:35 [ 41] [ 8] [07000900] +14:43:35 [ 42] [ 15] [NATIVE ] +14:43:35 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:43:35 [ 49] [ 3] [418] +14:43:35 [ 52] [ 16] [8EED4002B97D240C] +14:43:35 ============================================================================ +14:43:35 + + +waiting on router queue for slot.... +14:43:35 Sending to : <4> +14:43:35 ============================================================================ +14:43:37 ============================================================================ +14:43:37 Slot Id : <179> +14:43:37 Transaction Type : RESPONSE +14:43:37 Received From : +14:43:37 ============================================================================ +14:43:37 FNo. Len. Field Value +14:43:37 ============================================================================ +14:43:37 [ 1] [ 4] [0210] +14:43:37 [ 2] [ 16] [6688990603028703] +14:43:37 [ 3] [ 6] [012000] +14:43:37 [ 4] [ 12] [000100000000] +14:43:37 [ 11] [ 6] [773727] +14:43:37 [ 12] [ 6] [144330] +14:43:37 [ 15] [ 4] [0320] +14:43:37 [ 18] [ 4] [6011] +14:43:37 [ 32] [ 6] [621354] +14:43:37 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:43:37 [ 37] [ 12] [507904731473] +14:43:37 [ 38] [ 6] [045279] +14:43:37 [ 39] [ 2] [00] +14:43:37 [ 41] [ 8] [07000900] +14:43:37 [ 49] [ 3] [418] +14:43:37 [ 54] [ 20] [2002418C000241946549] +14:43:37 ============================================================================ +14:43:37 Sending to : +14:43:37 ============================================================================ +14:43:37 + + +waiting on router queue for slot.... +14:43:38 ============================================================================ +14:43:38 Slot Id : <179> +14:43:38 Transaction Type : RESPONSE +14:43:38 Received From : +14:43:38 ============================================================================ +14:43:38 FNo. Len. Field Value +14:43:38 ============================================================================ +14:43:38 [ 1] [ 4] [0210] +14:43:38 [ 2] [ 16] [6688990603028703] +14:43:38 [ 3] [ 6] [012000] +14:43:38 [ 4] [ 12] [000100000000] +14:43:38 [ 11] [ 6] [773727] +14:43:38 [ 12] [ 6] [144330] +14:43:38 [ 15] [ 4] [0320] +14:43:38 [ 18] [ 4] [6011] +14:43:38 [ 32] [ 6] [621354] +14:43:38 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:43:38 [ 37] [ 12] [507904731473] +14:43:38 [ 38] [ 6] [045279] +14:43:38 [ 39] [ 2] [00] +14:43:38 [ 41] [ 8] [07000900] +14:43:38 [ 49] [ 3] [418] +14:43:38 [ 54] [ 20] [2002418C000241946549] +14:43:38 ============================================================================ +14:43:38 Calculate Source COMM Id = 0 +14:43:38 ============================================================================ +14:43:38 + + +waiting on router queue for slot.... +14:43:41 ============================================================================ +14:43:41 Slot Id : <204> +14:43:41 Transaction Type : REQUEST +14:43:41 Received From : +14:43:41 ============================================================================ +14:43:41 FNo. Len. Field Value +14:43:41 ============================================================================ +14:43:41 [ 1] [ 4] [0200] +14:43:41 [ 2] [ 16] [6688990602713503] +14:43:41 [ 3] [ 6] [010000] +14:43:41 [ 4] [ 12] [000010000000] +14:43:41 [ 7] [ 10] [0320074247] +14:43:41 [ 11] [ 6] [269776] +14:43:41 [ 12] [ 6] [144247] +14:43:41 [ 13] [ 4] [0320] +14:43:41 [ 14] [ 4] [4310] +14:43:41 [ 15] [ 4] [0320] +14:43:41 [ 18] [ 4] [6011] +14:43:41 [ 19] [ 3] [418] +14:43:41 [ 22] [ 3] [021] +14:43:41 [ 25] [ 2] [01] +14:43:41 [ 28] [ 9] [D00002000] +14:43:41 [ 32] [ 6] [180893] +14:43:41 [ 35] [ 37] [6688990602713503=43100061350391300000] +14:43:41 [ 37] [ 12] [507907269776] +14:43:41 [ 41] [ 8] [0201ADD1] +14:43:41 [ 42] [ 15] [999999 ] +14:43:41 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:43:41 [ 49] [ 3] [418] +14:43:41 [ 52] [ 16] [989BA95288938FED] +14:43:41 ============================================================================ +14:43:41 + + +waiting on router queue for slot.... +14:43:41 Sending to : +14:43:41 ============================================================================ +14:43:41 Sending to : +14:43:41 ============================================================================ +14:43:41 ============================================================================ +14:43:41 Slot Id : <204> +14:43:41 Transaction Type : REQUEST +14:43:41 Received From : +14:43:41 ============================================================================ +14:43:41 FNo. Len. Field Value +14:43:41 ============================================================================ +14:43:41 [ 1] [ 4] [0200] +14:43:41 [ 2] [ 16] [6688990602713503] +14:43:41 [ 3] [ 6] [010000] +14:43:41 [ 4] [ 12] [000010000000] +14:43:41 [ 7] [ 10] [0320074247] +14:43:41 [ 11] [ 6] [269776] +14:43:41 [ 12] [ 6] [144247] +14:43:41 [ 13] [ 4] [0320] +14:43:41 [ 14] [ 4] [4310] +14:43:41 [ 15] [ 4] [0320] +14:43:41 [ 18] [ 4] [6011] +14:43:41 [ 19] [ 3] [418] +14:43:41 [ 22] [ 3] [021] +14:43:41 [ 25] [ 2] [01] +14:43:41 [ 28] [ 9] [D00002000] +14:43:41 [ 32] [ 6] [180893] +14:43:41 [ 35] [ 37] [6688990602713503=43100061350391300000] +14:43:41 [ 37] [ 12] [507907269776] +14:43:41 [ 41] [ 8] [0201ADD1] +14:43:41 [ 42] [ 15] [999999 ] +14:43:41 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:43:41 [ 49] [ 3] [418] +14:43:41 [ 52] [ 16] [989BA95288938FED] +14:43:41 ============================================================================ +14:43:41 + + +waiting on router queue for slot.... +14:43:41 Sending to : +14:43:41 ============================================================================ +14:43:41 ============================================================================ +14:43:41 Slot Id : <204> +14:43:41 Transaction Type : REQUEST +14:43:41 Received From : +14:43:41 ============================================================================ +14:43:41 FNo. Len. Field Value +14:43:41 ============================================================================ +14:43:41 [ 1] [ 4] [0200] +14:43:41 [ 2] [ 16] [6688990602713503] +14:43:41 [ 3] [ 6] [010000] +14:43:41 [ 4] [ 12] [000010000000] +14:43:41 [ 7] [ 10] [0320074247] +14:43:41 [ 11] [ 6] [269776] +14:43:41 [ 12] [ 6] [144247] +14:43:41 [ 13] [ 4] [0320] +14:43:41 [ 14] [ 4] [4310] +14:43:41 [ 15] [ 4] [0320] +14:43:41 [ 18] [ 4] [6011] +14:43:41 [ 19] [ 3] [418] +14:43:41 [ 22] [ 3] [021] +14:43:41 [ 25] [ 2] [01] +14:43:41 [ 28] [ 9] [D00002000] +14:43:41 [ 32] [ 6] [180893] +14:43:41 [ 35] [ 37] [6688990602713503=43100061350391300000] +14:43:41 [ 37] [ 12] [507907269776] +14:43:41 [ 41] [ 8] [0201ADD1] +14:43:41 [ 42] [ 15] [999999 ] +14:43:41 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:43:41 [ 49] [ 3] [418] +14:43:41 [ 52] [ 16] [F94719202648C13D] +14:43:41 ============================================================================ +14:43:41 + + +waiting on router queue for slot.... +14:43:41 Sending to : <0> +14:43:41 ============================================================================ +14:43:41 ============================================================================ +14:43:41 Slot Id : <204> +14:43:41 Transaction Type : RESPONSE +14:43:41 Received From : +14:43:41 ============================================================================ +14:43:41 FNo. Len. Field Value +14:43:41 ============================================================================ +14:43:41 [ 1] [ 4] [0210] +14:43:41 [ 2] [ 16] [6688990602713503] +14:43:41 [ 3] [ 6] [010000] +14:43:41 [ 4] [ 12] [000010000000] +14:43:41 [ 7] [ 10] [0320074247] +14:43:41 [ 11] [ 6] [269776] +14:43:41 [ 12] [ 6] [144247] +14:43:41 [ 13] [ 4] [0320] +14:43:41 [ 15] [ 4] [0320] +14:43:41 [ 18] [ 4] [6011] +14:43:41 [ 19] [ 3] [418] +14:43:41 [ 22] [ 3] [021] +14:43:41 [ 32] [ 6] [180893] +14:43:41 [ 35] [ 37] [6688990602713503=43100061350391300000] +14:43:41 [ 37] [ 12] [507907269776] +14:43:41 [ 39] [ 2] [14] +14:43:41 [ 41] [ 8] [0201ADD1] +14:43:41 [ 49] [ 3] [418] +14:43:41 ============================================================================ +14:43:41 Sending to : +14:43:41 ============================================================================ +14:43:41 + + +waiting on router queue for slot.... +14:43:42 ============================================================================ +14:43:42 Slot Id : <204> +14:43:42 Transaction Type : RESPONSE +14:43:42 Received From : +14:43:42 ============================================================================ +14:43:42 FNo. Len. Field Value +14:43:42 ============================================================================ +14:43:42 [ 1] [ 4] [0210] +14:43:42 [ 2] [ 16] [6688990602713503] +14:43:42 [ 3] [ 6] [010000] +14:43:42 [ 4] [ 12] [000010000000] +14:43:42 [ 7] [ 10] [0320074247] +14:43:42 [ 11] [ 6] [269776] +14:43:42 [ 12] [ 6] [144247] +14:43:42 [ 13] [ 4] [0320] +14:43:42 [ 15] [ 4] [0320] +14:43:42 [ 18] [ 4] [6011] +14:43:42 [ 19] [ 3] [418] +14:43:42 [ 22] [ 3] [021] +14:43:42 [ 32] [ 6] [180893] +14:43:42 [ 35] [ 37] [6688990602713503=43100061350391300000] +14:43:42 [ 37] [ 12] [507907269776] +14:43:42 [ 39] [ 2] [14] +14:43:42 [ 41] [ 8] [0201ADD1] +14:43:42 [ 49] [ 3] [418] +14:43:42 ============================================================================ +14:43:42 Calculate Source COMM Id = 2 +14:43:42 ============================================================================ +14:43:42 + + +waiting on router queue for slot.... +14:43:43 ============================================================================ +14:43:43 Slot Id : <135> +14:43:43 Transaction Type : REQUEST +14:43:43 Received From : +14:43:43 ============================================================================ +14:43:43 FNo. Len. Field Value +14:43:43 ============================================================================ +14:43:43 [ 1] [ 4] [0800] +14:43:43 [ 7] [ 10] [0320074250] +14:43:43 [ 11] [ 6] [156842] +14:43:43 [ 70] [ 3] [301] +14:43:43 ============================================================================ +14:43:43 + + +waiting on router queue for slot.... +14:43:43 Sending to : +14:43:43 ============================================================================ +14:43:43 ============================================================================ +14:43:43 Slot Id : <135> +14:43:43 Transaction Type : RESPONSE +14:43:43 Received From : +14:43:43 ============================================================================ +14:43:43 FNo. Len. Field Value +14:43:43 ============================================================================ +14:43:43 [ 1] [ 4] [0810] +14:43:43 [ 7] [ 10] [0320074250] +14:43:43 [ 11] [ 6] [156842] +14:43:43 [ 39] [ 2] [00] +14:43:43 [ 70] [ 3] [301] +14:43:43 ============================================================================ +14:43:43 Calculate Source COMM Id = 2 +14:43:43 ============================================================================ +14:43:43 + + +waiting on router queue for slot.... +14:43:47 ============================================================================ +14:43:47 Slot Id : <192> +14:43:47 Transaction Type : REQUEST +14:43:47 Received From : +14:43:47 ============================================================================ +14:43:47 FNo. Len. Field Value +14:43:47 ============================================================================ +14:43:47 [ 1] [ 4] [0200] +14:43:47 [ 2] [ 16] [6688990040135517] +14:43:47 [ 3] [ 6] [010000] +14:43:47 [ 4] [ 12] [000100000000] +14:43:47 [ 7] [ 10] [0320144342] +14:43:47 [ 11] [ 6] [773766] +14:43:47 [ 12] [ 6] [144342] +14:43:47 [ 13] [ 4] [0320] +14:43:47 [ 15] [ 4] [0320] +14:43:47 [ 18] [ 4] [6011] +14:43:47 [ 22] [ 3] [900] +14:43:47 [ 25] [ 2] [02] +14:43:47 [ 28] [ 9] [D00002000] +14:43:47 [ 32] [ 6] [621354] +14:43:47 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:43:47 [ 37] [ 12] [507904719680] +14:43:47 [ 41] [ 8] [18001000] +14:43:47 [ 42] [ 15] [NATIVE ] +14:43:47 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:43:47 [ 49] [ 3] [418] +14:43:47 [ 52] [ 16] [B2AA00523B1FF68E] +14:43:47 ============================================================================ +14:43:47 + + +waiting on router queue for slot.... +14:43:47 Sending to : +14:43:47 ============================================================================ +14:43:47 Sending to : +14:43:47 ============================================================================ +14:43:47 ============================================================================ +14:43:47 Slot Id : <192> +14:43:47 Transaction Type : REQUEST +14:43:47 Received From : +14:43:47 ============================================================================ +14:43:47 FNo. Len. Field Value +14:43:47 ============================================================================ +14:43:47 [ 1] [ 4] [0200] +14:43:47 [ 2] [ 16] [6688990040135517] +14:43:47 [ 3] [ 6] [010000] +14:43:47 [ 4] [ 12] [000100000000] +14:43:47 [ 7] [ 10] [0320144342] +14:43:47 [ 11] [ 6] [773766] +14:43:47 [ 12] [ 6] [144342] +14:43:47 [ 13] [ 4] [0320] +14:43:47 [ 15] [ 4] [0320] +14:43:47 [ 18] [ 4] [6011] +14:43:47 [ 22] [ 3] [900] +14:43:47 [ 25] [ 2] [02] +14:43:47 [ 28] [ 9] [D00002000] +14:43:47 [ 32] [ 6] [621354] +14:43:47 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:43:47 [ 37] [ 12] [507904719680] +14:43:47 [ 41] [ 8] [18001000] +14:43:47 [ 42] [ 15] [NATIVE ] +14:43:47 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:43:47 [ 49] [ 3] [418] +14:43:47 [ 52] [ 16] [B2AA00523B1FF68E] +14:43:47 ============================================================================ +14:43:47 + + +waiting on router queue for slot.... +14:43:47 Sending to : +14:43:47 ============================================================================ +14:43:47 ============================================================================ +14:43:47 Slot Id : <192> +14:43:47 Transaction Type : REQUEST +14:43:47 Received From : +14:43:47 ============================================================================ +14:43:47 FNo. Len. Field Value +14:43:47 ============================================================================ +14:43:47 [ 1] [ 4] [0200] +14:43:47 [ 2] [ 16] [6688990040135517] +14:43:47 [ 3] [ 6] [010000] +14:43:47 [ 4] [ 12] [000100000000] +14:43:47 [ 7] [ 10] [0320144342] +14:43:47 [ 11] [ 6] [773766] +14:43:47 [ 12] [ 6] [144342] +14:43:47 [ 13] [ 4] [0320] +14:43:47 [ 15] [ 4] [0320] +14:43:47 [ 18] [ 4] [6011] +14:43:47 [ 22] [ 3] [900] +14:43:47 [ 25] [ 2] [02] +14:43:47 [ 28] [ 9] [D00002000] +14:43:47 [ 32] [ 6] [621354] +14:43:47 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:43:47 [ 37] [ 12] [507904719680] +14:43:47 [ 41] [ 8] [18001000] +14:43:47 [ 42] [ 15] [NATIVE ] +14:43:47 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:43:47 [ 49] [ 3] [418] +14:43:47 [ 52] [ 16] [E4292B036CF5E720] +14:43:47 ============================================================================ +14:43:47 + + +waiting on router queue for slot.... +14:43:47 Sending to : <4> +14:43:47 ============================================================================ +14:43:48 ============================================================================ +14:43:48 Slot Id : <192> +14:43:48 Transaction Type : RESPONSE +14:43:48 Received From : +14:43:48 ============================================================================ +14:43:48 FNo. Len. Field Value +14:43:48 ============================================================================ +14:43:48 [ 1] [ 4] [0210] +14:43:48 [ 2] [ 16] [6688990040135517] +14:43:48 [ 3] [ 6] [010000] +14:43:48 [ 4] [ 12] [000100000000] +14:43:48 [ 11] [ 6] [773766] +14:43:48 [ 12] [ 6] [144342] +14:43:48 [ 15] [ 4] [0320] +14:43:48 [ 18] [ 4] [6011] +14:43:48 [ 32] [ 6] [621354] +14:43:48 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:43:48 [ 37] [ 12] [507904719680] +14:43:48 [ 38] [ 6] [664183] +14:43:48 [ 39] [ 2] [00] +14:43:48 [ 41] [ 8] [18001000] +14:43:48 [ 49] [ 3] [418] +14:43:48 [ 54] [ 20] [0002418C000175388817] +14:43:48 ============================================================================ +14:43:48 Sending to : +14:43:48 ============================================================================ +14:43:48 + + +waiting on router queue for slot.... +14:43:49 ============================================================================ +14:43:49 Slot Id : <152> +14:43:49 Transaction Type : REQUEST +14:43:49 Received From : +14:43:49 ============================================================================ +14:43:49 FNo. Len. Field Value +14:43:49 ============================================================================ +14:43:49 [ 1] [ 4] [0800] +14:43:49 [ 7] [ 10] [0320215538] +14:43:49 [ 11] [ 6] [145538] +14:43:49 [ 37] [ 12] [57914145538] +14:43:49 [ 70] [ 3] [301] +14:43:49 ============================================================================ +14:43:49 + + +waiting on router queue for slot.... +14:43:49 Sending to : +14:43:49 ============================================================================ +14:43:49 ============================================================================ +14:43:49 Slot Id : <152> +14:43:49 Transaction Type : RESPONSE +14:43:49 Received From : +14:43:49 ============================================================================ +14:43:49 FNo. Len. Field Value +14:43:49 ============================================================================ +14:43:49 [ 1] [ 4] [0810] +14:43:49 [ 7] [ 10] [0320215538] +14:43:49 [ 11] [ 6] [145538] +14:43:49 [ 37] [ 12] [579141455380] +14:43:49 [ 39] [ 2] [00] +14:43:49 [ 70] [ 3] [810] +14:43:49 ============================================================================ +14:43:49 Calculate Source COMM Id = 6 +14:43:49 ============================================================================ +14:43:49 + + +waiting on router queue for slot.... +14:43:49 ============================================================================ +14:43:49 Slot Id : <192> +14:43:49 Transaction Type : RESPONSE +14:43:49 Received From : +14:43:49 ============================================================================ +14:43:49 FNo. Len. Field Value +14:43:49 ============================================================================ +14:43:49 [ 1] [ 4] [0210] +14:43:49 [ 2] [ 16] [6688990040135517] +14:43:49 [ 3] [ 6] [010000] +14:43:49 [ 4] [ 12] [000100000000] +14:43:49 [ 11] [ 6] [773766] +14:43:49 [ 12] [ 6] [144342] +14:43:49 [ 15] [ 4] [0320] +14:43:49 [ 18] [ 4] [6011] +14:43:49 [ 32] [ 6] [621354] +14:43:49 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:43:49 [ 37] [ 12] [507904719680] +14:43:49 [ 38] [ 6] [664183] +14:43:49 [ 39] [ 2] [00] +14:43:49 [ 41] [ 8] [18001000] +14:43:49 [ 49] [ 3] [418] +14:43:49 [ 54] [ 20] [0002418C000175388817] +14:43:49 ============================================================================ +14:43:49 Calculate Source COMM Id = 0 +14:43:49 ============================================================================ +14:43:49 + + +waiting on router queue for slot.... +14:43:53 ============================================================================ +14:43:53 Slot Id : <191> +14:43:53 Transaction Type : REQUEST +14:43:53 Received From : +14:43:53 ============================================================================ +14:43:53 FNo. Len. Field Value +14:43:53 ============================================================================ +14:43:53 [ 1] [ 4] [0800] +14:43:53 [ 7] [ 10] [0320074300] +14:43:53 [ 11] [ 6] [156843] +14:43:53 [ 70] [ 3] [301] +14:43:53 ============================================================================ +14:43:53 + + +waiting on router queue for slot.... +14:43:53 Sending to : +14:43:53 ============================================================================ +14:43:53 ============================================================================ +14:43:53 Slot Id : <191> +14:43:53 Transaction Type : RESPONSE +14:43:53 Received From : +14:43:53 ============================================================================ +14:43:53 FNo. Len. Field Value +14:43:53 ============================================================================ +14:43:53 [ 1] [ 4] [0810] +14:43:53 [ 7] [ 10] [0320074300] +14:43:53 [ 11] [ 6] [156843] +14:43:53 [ 39] [ 2] [00] +14:43:53 [ 70] [ 3] [301] +14:43:53 ============================================================================ +14:43:53 Calculate Source COMM Id = 2 +14:43:53 ============================================================================ +14:43:53 + + +waiting on router queue for slot.... +14:43:56 ============================================================================ +14:43:56 Slot Id : <190> +14:43:56 Transaction Type : REQUEST +14:43:56 Received From : +14:43:56 ============================================================================ +14:43:56 FNo. Len. Field Value +14:43:56 ============================================================================ +14:43:56 [ 1] [ 4] [0200] +14:43:56 [ 2] [ 16] [6688990108347509] +14:43:56 [ 3] [ 6] [011000] +14:43:56 [ 4] [ 12] [000012000000] +14:43:56 [ 7] [ 10] [0320074303] +14:43:56 [ 11] [ 6] [269779] +14:43:56 [ 12] [ 6] [144303] +14:43:56 [ 13] [ 4] [0320] +14:43:56 [ 14] [ 4] [4406] +14:43:56 [ 15] [ 4] [0320] +14:43:56 [ 18] [ 4] [6011] +14:43:56 [ 19] [ 3] [418] +14:43:56 [ 22] [ 3] [021] +14:43:56 [ 25] [ 2] [01] +14:43:56 [ 28] [ 9] [D00002000] +14:43:56 [ 32] [ 6] [180893] +14:43:56 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:43:56 [ 37] [ 12] [507907269779] +14:43:56 [ 41] [ 8] [0321LNTV] +14:43:56 [ 42] [ 15] [999999 ] +14:43:56 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:43:56 [ 49] [ 3] [418] +14:43:56 [ 52] [ 16] [A22216D88F7969BC] +14:43:56 ============================================================================ +14:43:56 + + +waiting on router queue for slot.... +14:43:56 Sending to : +14:43:56 ============================================================================ +14:43:56 Sending to : +14:43:56 ============================================================================ +14:43:56 ============================================================================ +14:43:56 Slot Id : <190> +14:43:56 Transaction Type : REQUEST +14:43:56 Received From : +14:43:56 ============================================================================ +14:43:56 FNo. Len. Field Value +14:43:56 ============================================================================ +14:43:56 [ 1] [ 4] [0200] +14:43:56 [ 2] [ 16] [6688990108347509] +14:43:56 [ 3] [ 6] [011000] +14:43:56 [ 4] [ 12] [000012000000] +14:43:56 [ 7] [ 10] [0320074303] +14:43:56 [ 11] [ 6] [269779] +14:43:56 [ 12] [ 6] [144303] +14:43:56 [ 13] [ 4] [0320] +14:43:56 [ 14] [ 4] [4406] +14:43:56 [ 15] [ 4] [0320] +14:43:56 [ 18] [ 4] [6011] +14:43:56 [ 19] [ 3] [418] +14:43:56 [ 22] [ 3] [021] +14:43:56 [ 25] [ 2] [01] +14:43:56 [ 28] [ 9] [D00002000] +14:43:56 [ 32] [ 6] [180893] +14:43:56 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:43:56 [ 37] [ 12] [507907269779] +14:43:56 [ 41] [ 8] [0321LNTV] +14:43:56 [ 42] [ 15] [999999 ] +14:43:56 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:43:56 [ 49] [ 3] [418] +14:43:56 [ 52] [ 16] [A22216D88F7969BC] +14:43:56 ============================================================================ +14:43:56 + + +waiting on router queue for slot.... +14:43:56 Sending to : +14:43:56 ============================================================================ +14:43:56 ============================================================================ +14:43:56 Slot Id : <190> +14:43:56 Transaction Type : REQUEST +14:43:56 Received From : +14:43:56 ============================================================================ +14:43:56 FNo. Len. Field Value +14:43:56 ============================================================================ +14:43:56 [ 1] [ 4] [0200] +14:43:56 [ 2] [ 16] [6688990108347509] +14:43:56 [ 3] [ 6] [011000] +14:43:56 [ 4] [ 12] [000012000000] +14:43:56 [ 7] [ 10] [0320074303] +14:43:56 [ 11] [ 6] [269779] +14:43:56 [ 12] [ 6] [144303] +14:43:56 [ 13] [ 4] [0320] +14:43:56 [ 14] [ 4] [4406] +14:43:56 [ 15] [ 4] [0320] +14:43:56 [ 18] [ 4] [6011] +14:43:56 [ 19] [ 3] [418] +14:43:56 [ 22] [ 3] [021] +14:43:56 [ 25] [ 2] [01] +14:43:56 [ 28] [ 9] [D00002000] +14:43:56 [ 32] [ 6] [180893] +14:43:56 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:43:56 [ 37] [ 12] [507907269779] +14:43:56 [ 41] [ 8] [0321LNTV] +14:43:56 [ 42] [ 15] [999999 ] +14:43:56 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:43:56 [ 49] [ 3] [418] +14:43:56 [ 52] [ 16] [A28BB920A21B80D5] +14:43:56 ============================================================================ +14:43:56 + + +waiting on router queue for slot.... +14:43:56 Sending to : <0> +14:43:56 ============================================================================ +14:43:56 ============================================================================ +14:43:56 Slot Id : <190> +14:43:56 Transaction Type : RESPONSE +14:43:56 Received From : +14:43:56 ============================================================================ +14:43:56 FNo. Len. Field Value +14:43:56 ============================================================================ +14:43:56 [ 1] [ 4] [0210] +14:43:56 [ 2] [ 16] [6688990108347509] +14:43:56 [ 3] [ 6] [011000] +14:43:56 [ 4] [ 12] [000012000000] +14:43:56 [ 7] [ 10] [0320074303] +14:43:56 [ 11] [ 6] [269779] +14:43:56 [ 12] [ 6] [144303] +14:43:56 [ 13] [ 4] [0320] +14:43:56 [ 15] [ 4] [0320] +14:43:56 [ 18] [ 4] [6011] +14:43:56 [ 19] [ 3] [418] +14:43:56 [ 22] [ 3] [021] +14:43:56 [ 32] [ 6] [180893] +14:43:56 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:43:56 [ 37] [ 12] [507907269779] +14:43:56 [ 39] [ 2] [14] +14:43:56 [ 41] [ 8] [0321LNTV] +14:43:56 [ 49] [ 3] [418] +14:43:56 ============================================================================ +14:43:56 Sending to : +14:43:56 ============================================================================ +14:43:56 + + +waiting on router queue for slot.... +14:43:57 ============================================================================ +14:43:57 Slot Id : <196> +14:43:57 Transaction Type : REQUEST +14:43:57 Received From : +14:43:57 ============================================================================ +14:43:57 FNo. Len. Field Value +14:43:57 ============================================================================ +14:43:57 [ 1] [ 4] [0200] +14:43:57 [ 2] [ 16] [6213545000096911] +14:43:57 [ 3] [ 6] [010000] +14:43:57 [ 4] [ 12] [000200000000] +14:43:57 [ 7] [ 10] [0320074304] +14:43:57 [ 11] [ 6] [269780] +14:43:57 [ 12] [ 6] [144304] +14:43:57 [ 13] [ 4] [0320] +14:43:57 [ 14] [ 4] [4912] +14:43:57 [ 15] [ 4] [0320] +14:43:57 [ 18] [ 4] [6011] +14:43:57 [ 19] [ 3] [418] +14:43:57 [ 22] [ 3] [021] +14:43:57 [ 25] [ 2] [01] +14:43:57 [ 28] [ 9] [D00002000] +14:43:57 [ 32] [ 6] [180893] +14:43:57 [ 35] [ 32] [6213545000096911=491212019691520] +14:43:57 [ 37] [ 12] [507907269780] +14:43:57 [ 41] [ 8] [0112CPBR] +14:43:57 [ 42] [ 15] [999999 ] +14:43:57 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:43:57 [ 49] [ 3] [418] +14:43:57 [ 52] [ 16] [2E09678A63B812C7] +14:43:57 ============================================================================ +14:43:57 + + +waiting on router queue for slot.... +14:43:57 Sending to : +14:43:57 ============================================================================ +14:43:57 Sending to : +14:43:57 ============================================================================ +14:43:57 ============================================================================ +14:43:57 Slot Id : <190> +14:43:57 Transaction Type : RESPONSE +14:43:57 Received From : +14:43:57 ============================================================================ +14:43:57 FNo. Len. Field Value +14:43:57 ============================================================================ +14:43:57 [ 1] [ 4] [0210] +14:43:57 [ 2] [ 16] [6688990108347509] +14:43:57 [ 3] [ 6] [011000] +14:43:57 [ 4] [ 12] [000012000000] +14:43:57 [ 7] [ 10] [0320074303] +14:43:57 [ 11] [ 6] [269779] +14:43:57 [ 12] [ 6] [144303] +14:43:57 [ 13] [ 4] [0320] +14:43:57 [ 15] [ 4] [0320] +14:43:57 [ 18] [ 4] [6011] +14:43:57 [ 19] [ 3] [418] +14:43:57 [ 22] [ 3] [021] +14:43:57 [ 32] [ 6] [180893] +14:43:57 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:43:57 [ 37] [ 12] [507907269779] +14:43:57 [ 39] [ 2] [14] +14:43:57 [ 41] [ 8] [0321LNTV] +14:43:57 [ 49] [ 3] [418] +14:43:57 ============================================================================ +14:43:57 Calculate Source COMM Id = 2 +14:43:57 ============================================================================ +14:43:57 + + +waiting on router queue for slot.... +14:43:58 ============================================================================ +14:43:58 Slot Id : <155> +14:43:58 Transaction Type : REQUEST +14:43:58 Received From : +14:43:58 ============================================================================ +14:43:58 FNo. Len. Field Value +14:43:58 ============================================================================ +14:43:58 [ 1] [ 4] [0200] +14:43:58 [ 2] [ 16] [6213541000661333] +14:43:58 [ 3] [ 6] [010000] +14:43:58 [ 4] [ 12] [000100000000] +14:43:58 [ 7] [ 10] [0320144148] +14:43:58 [ 11] [ 6] [948921] +14:43:58 [ 12] [ 6] [144148] +14:43:58 [ 13] [ 4] [0320] +14:43:58 [ 15] [ 4] [0320] +14:43:58 [ 18] [ 4] [6011] +14:43:58 [ 19] [ 3] [418] +14:43:58 [ 22] [ 3] [021] +14:43:58 [ 25] [ 2] [01] +14:43:58 [ 28] [ 9] [D00002000] +14:43:58 [ 32] [ 6] [668899] +14:43:58 [ 35] [ 32] [6213541000661333=491212016133298] +14:43:58 [ 37] [ 12] [507901565349] +14:43:58 [ 41] [ 8] [03615001] +14:43:58 [ 42] [ 15] [APT ] +14:43:58 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:43:58 [ 49] [ 3] [418] +14:43:58 [ 52] [ 16] [5C602BD06D3E3299] +14:43:58 ============================================================================ +14:43:58 + + +waiting on router queue for slot.... +14:43:58 Sending to : +14:43:58 ============================================================================ +14:43:58 Sending to : +14:43:58 ============================================================================ +14:43:58 ============================================================================ +14:43:58 Slot Id : <196> +14:43:58 Transaction Type : REQUEST +14:43:58 Received From : +14:43:58 ============================================================================ +14:43:58 FNo. Len. Field Value +14:43:58 ============================================================================ +14:43:58 [ 1] [ 4] [0200] +14:43:58 [ 2] [ 16] [6213545000096911] +14:43:58 [ 3] [ 6] [010000] +14:43:58 [ 4] [ 12] [000200000000] +14:43:58 [ 7] [ 10] [0320074304] +14:43:58 [ 11] [ 6] [269780] +14:43:58 [ 12] [ 6] [144304] +14:43:58 [ 13] [ 4] [0320] +14:43:58 [ 14] [ 4] [4912] +14:43:58 [ 15] [ 4] [0320] +14:43:58 [ 18] [ 4] [6011] +14:43:58 [ 19] [ 3] [418] +14:43:58 [ 22] [ 3] [021] +14:43:58 [ 25] [ 2] [01] +14:43:58 [ 28] [ 9] [D00002000] +14:43:58 [ 32] [ 6] [180893] +14:43:58 [ 35] [ 32] [6213545000096911=491212019691520] +14:43:58 [ 37] [ 12] [507907269780] +14:43:58 [ 41] [ 8] [0112CPBR] +14:43:58 [ 42] [ 15] [999999 ] +14:43:58 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:43:58 [ 49] [ 3] [418] +14:43:58 [ 52] [ 16] [2E09678A63B812C7] +14:43:58 ============================================================================ +14:43:58 + + +waiting on router queue for slot.... +14:43:58 Sending to : +14:43:58 ============================================================================ +14:43:58 ============================================================================ +14:43:58 Slot Id : <196> +14:43:58 Transaction Type : REQUEST +14:43:58 Received From : +14:43:58 ============================================================================ +14:43:58 FNo. Len. Field Value +14:43:58 ============================================================================ +14:43:58 [ 1] [ 4] [0200] +14:43:58 [ 2] [ 16] [6213545000096911] +14:43:58 [ 3] [ 6] [010000] +14:43:58 [ 4] [ 12] [000200000000] +14:43:58 [ 7] [ 10] [0320074304] +14:43:58 [ 11] [ 6] [269780] +14:43:58 [ 12] [ 6] [144304] +14:43:58 [ 13] [ 4] [0320] +14:43:58 [ 14] [ 4] [4912] +14:43:58 [ 15] [ 4] [0320] +14:43:58 [ 18] [ 4] [6011] +14:43:58 [ 19] [ 3] [418] +14:43:58 [ 22] [ 3] [021] +14:43:58 [ 25] [ 2] [01] +14:43:58 [ 28] [ 9] [D00002000] +14:43:58 [ 32] [ 6] [180893] +14:43:58 [ 35] [ 32] [6213545000096911=491212019691520] +14:43:58 [ 37] [ 12] [507907269780] +14:43:58 [ 41] [ 8] [0112CPBR] +14:43:58 [ 42] [ 15] [999999 ] +14:43:58 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:43:58 [ 49] [ 3] [418] +14:43:58 [ 52] [ 16] [916B4D5FAD120EF4] +14:43:58 ============================================================================ +14:43:58 + + +waiting on router queue for slot.... +14:43:58 Sending to : <0> +14:43:58 ============================================================================ +14:43:58 ============================================================================ +14:43:58 Slot Id : <196> +14:43:58 Transaction Type : RESPONSE +14:43:58 Received From : +14:43:58 ============================================================================ +14:43:58 FNo. Len. Field Value +14:43:58 ============================================================================ +14:43:58 [ 1] [ 4] [0210] +14:43:58 [ 2] [ 16] [6213545000096911] +14:43:58 [ 3] [ 6] [010000] +14:43:58 [ 4] [ 12] [000200000000] +14:43:58 [ 7] [ 10] [0320074304] +14:43:58 [ 11] [ 6] [269780] +14:43:58 [ 12] [ 6] [144304] +14:43:58 [ 13] [ 4] [0320] +14:43:58 [ 15] [ 4] [0320] +14:43:58 [ 18] [ 4] [6011] +14:43:58 [ 19] [ 3] [418] +14:43:58 [ 22] [ 3] [021] +14:43:58 [ 32] [ 6] [180893] +14:43:58 [ 35] [ 32] [6213545000096911=491212019691520] +14:43:58 [ 37] [ 12] [507907269780] +14:43:58 [ 39] [ 2] [61] +14:43:58 [ 41] [ 8] [0112CPBR] +14:43:58 [ 49] [ 3] [418] +14:43:58 ============================================================================ +14:43:58 Sending to : +14:43:58 ============================================================================ +14:43:58 + + +waiting on router queue for slot.... +14:43:58 ============================================================================ +14:43:58 Slot Id : <155> +14:43:58 Transaction Type : REQUEST +14:43:58 Received From : +14:43:58 ============================================================================ +14:43:58 FNo. Len. Field Value +14:43:58 ============================================================================ +14:43:58 [ 1] [ 4] [0200] +14:43:58 [ 2] [ 16] [6213541000661333] +14:43:58 [ 3] [ 6] [010000] +14:43:58 [ 4] [ 12] [000100000000] +14:43:58 [ 7] [ 10] [0320144148] +14:43:58 [ 11] [ 6] [948921] +14:43:58 [ 12] [ 6] [144148] +14:43:58 [ 13] [ 4] [0320] +14:43:58 [ 15] [ 4] [0320] +14:43:58 [ 18] [ 4] [6011] +14:43:58 [ 19] [ 3] [418] +14:43:58 [ 22] [ 3] [021] +14:43:58 [ 25] [ 2] [01] +14:43:58 [ 28] [ 9] [D00002000] +14:43:58 [ 32] [ 6] [668899] +14:43:58 [ 35] [ 32] [6213541000661333=491212016133298] +14:43:58 [ 37] [ 12] [507901565349] +14:43:58 [ 41] [ 8] [03615001] +14:43:58 [ 42] [ 15] [APT ] +14:43:58 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:43:58 [ 49] [ 3] [418] +14:43:58 [ 52] [ 16] [5C602BD06D3E3299] +14:43:58 ============================================================================ +14:43:58 + + +waiting on router queue for slot.... +14:43:58 Sending to : +14:43:58 ============================================================================ +14:43:58 ============================================================================ +14:43:58 Slot Id : <155> +14:43:58 Transaction Type : REQUEST +14:43:58 Received From : +14:43:58 ============================================================================ +14:43:58 FNo. Len. Field Value +14:43:58 ============================================================================ +14:43:58 [ 1] [ 4] [0200] +14:43:58 [ 2] [ 16] [6213541000661333] +14:43:58 [ 3] [ 6] [010000] +14:43:58 [ 4] [ 12] [000100000000] +14:43:58 [ 7] [ 10] [0320144148] +14:43:58 [ 11] [ 6] [948921] +14:43:58 [ 12] [ 6] [144148] +14:43:58 [ 13] [ 4] [0320] +14:43:58 [ 15] [ 4] [0320] +14:43:58 [ 18] [ 4] [6011] +14:43:58 [ 19] [ 3] [418] +14:43:58 [ 22] [ 3] [021] +14:43:58 [ 25] [ 2] [01] +14:43:58 [ 28] [ 9] [D00002000] +14:43:58 [ 32] [ 6] [668899] +14:43:58 [ 35] [ 32] [6213541000661333=491212016133298] +14:43:58 [ 37] [ 12] [507901565349] +14:43:58 [ 41] [ 8] [03615001] +14:43:58 [ 42] [ 15] [APT ] +14:43:58 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:43:58 [ 49] [ 3] [418] +14:43:58 [ 52] [ 16] [8B69CDB0ACB8C6C2] +14:43:58 ============================================================================ +14:43:58 + + +waiting on router queue for slot.... +14:43:58 Sending to : <0> +14:43:58 ============================================================================ +14:43:59 ============================================================================ +14:43:59 Slot Id : <155> +14:43:59 Transaction Type : RESPONSE +14:43:59 Received From : +14:43:59 ============================================================================ +14:43:59 FNo. Len. Field Value +14:43:59 ============================================================================ +14:43:59 [ 1] [ 4] [0210] +14:43:59 [ 2] [ 16] [6213541000661333] +14:43:59 [ 3] [ 6] [010000] +14:43:59 [ 4] [ 12] [000100000000] +14:43:59 [ 7] [ 10] [0320144148] +14:43:59 [ 11] [ 6] [948921] +14:43:59 [ 12] [ 6] [144148] +14:43:59 [ 13] [ 4] [0320] +14:43:59 [ 15] [ 4] [0320] +14:43:59 [ 18] [ 4] [6011] +14:43:59 [ 19] [ 3] [418] +14:43:59 [ 32] [ 6] [668899] +14:43:59 [ 35] [ 32] [6213541000661333=491212016133298] +14:43:59 [ 37] [ 12] [507901565349] +14:43:59 [ 38] [ 6] [948921] +14:43:59 [ 39] [ 2] [51] +14:43:59 [ 41] [ 8] [03615001] +14:43:59 [ 49] [ 3] [418] +14:43:59 [ 54] [ 40] [0001418C0000839682200002418C000083968220] +14:43:59 ============================================================================ +14:43:59 Sending to : +14:43:59 ============================================================================ +14:43:59 + + +waiting on router queue for slot.... +14:43:59 ============================================================================ +14:43:59 Slot Id : <196> +14:43:59 Transaction Type : RESPONSE +14:43:59 Received From : +14:43:59 ============================================================================ +14:43:59 FNo. Len. Field Value +14:43:59 ============================================================================ +14:43:59 [ 1] [ 4] [0210] +14:43:59 [ 2] [ 16] [6213545000096911] +14:43:59 [ 3] [ 6] [010000] +14:43:59 [ 4] [ 12] [000200000000] +14:43:59 [ 7] [ 10] [0320074304] +14:43:59 [ 11] [ 6] [269780] +14:43:59 [ 12] [ 6] [144304] +14:43:59 [ 13] [ 4] [0320] +14:43:59 [ 15] [ 4] [0320] +14:43:59 [ 18] [ 4] [6011] +14:43:59 [ 19] [ 3] [418] +14:43:59 [ 22] [ 3] [021] +14:43:59 [ 32] [ 6] [180893] +14:43:59 [ 35] [ 32] [6213545000096911=491212019691520] +14:43:59 [ 37] [ 12] [507907269780] +14:43:59 [ 39] [ 2] [61] +14:43:59 [ 41] [ 8] [0112CPBR] +14:43:59 [ 49] [ 3] [418] +14:43:59 ============================================================================ +14:43:59 Calculate Source COMM Id = 2 +14:43:59 ============================================================================ +14:43:59 + + +waiting on router queue for slot.... +14:44:00 ============================================================================ +14:44:00 Slot Id : <155> +14:44:00 Transaction Type : RESPONSE +14:44:00 Received From : +14:44:00 ============================================================================ +14:44:00 FNo. Len. Field Value +14:44:00 ============================================================================ +14:44:00 [ 1] [ 4] [0210] +14:44:00 [ 2] [ 16] [6213541000661333] +14:44:00 [ 3] [ 6] [010000] +14:44:00 [ 4] [ 12] [000100000000] +14:44:00 [ 7] [ 10] [0320144148] +14:44:00 [ 11] [ 6] [948921] +14:44:00 [ 12] [ 6] [144148] +14:44:00 [ 13] [ 4] [0320] +14:44:00 [ 15] [ 4] [0320] +14:44:00 [ 18] [ 4] [6011] +14:44:00 [ 19] [ 3] [418] +14:44:00 [ 32] [ 6] [668899] +14:44:00 [ 35] [ 32] [6213541000661333=491212016133298] +14:44:00 [ 37] [ 12] [507901565349] +14:44:00 [ 38] [ 6] [948921] +14:44:00 [ 39] [ 2] [51] +14:44:00 [ 41] [ 8] [03615001] +14:44:00 [ 49] [ 3] [418] +14:44:00 [ 54] [ 40] [0001418C0000839682200002418C000083968220] +14:44:00 ============================================================================ +14:44:00 Calculate Source COMM Id = 4 +14:44:00 ============================================================================ +14:44:00 + + +waiting on router queue for slot.... +14:44:00 ============================================================================ +14:44:00 Slot Id : <198> +14:44:00 Transaction Type : REQUEST +14:44:00 Received From : +14:44:00 ============================================================================ +14:44:00 FNo. Len. Field Value +14:44:00 ============================================================================ +14:44:00 [ 0] [ 4] [0420] +14:44:00 [ 1] [ 4] [0420] +14:44:00 [ 2] [ 16] [6213541000661333] +14:44:00 [ 3] [ 6] [010000] +14:44:00 [ 4] [ 12] [000100000000] +14:44:00 [ 6] [ 12] [000100000000] +14:44:00 [ 7] [ 10] [0320143937] +14:44:00 [ 11] [ 6] [948866] +14:44:00 [ 12] [ 6] [143937] +14:44:00 [ 13] [ 4] [0320] +14:44:00 [ 15] [ 4] [0320] +14:44:00 [ 18] [ 4] [6011] +14:44:00 [ 19] [ 3] [418] +14:44:00 [ 22] [ 3] [021] +14:44:00 [ 25] [ 2] [01] +14:44:00 [ 28] [ 9] [D00002000] +14:44:00 [ 32] [ 6] [668899] +14:44:00 [ 35] [ 32] [6213541000661333=491212016133298] +14:44:00 [ 37] [ 12] [507901565347] +14:44:00 [ 41] [ 8] [03615001] +14:44:00 [ 42] [ 15] [APT ] +14:44:00 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:44:00 [ 49] [ 3] [418] +14:44:00 [ 52] [ 16] [5C602BD06D3E3299] +14:44:00 ============================================================================ +14:44:00 + + +waiting on router queue for slot.... +14:44:00 ============================================================================ +14:44:00 Slot Id : <198> +14:44:00 Transaction Type : RESPONSE +14:44:00 Received From : +14:44:00 ============================================================================ +14:44:00 FNo. Len. Field Value +14:44:00 ============================================================================ +14:44:00 [ 1] [ 4] [0430] +14:44:00 [ 2] [ 16] [6213541000661333] +14:44:00 [ 3] [ 6] [010000] +14:44:00 [ 4] [ 12] [000100000000] +14:44:00 [ 7] [ 10] [0320143937] +14:44:00 [ 11] [ 6] [948866] +14:44:00 [ 19] [ 3] [418] +14:44:00 [ 32] [ 6] [668899] +14:44:00 [ 35] [ 32] [6213541000661333=491212016133298] +14:44:00 [ 37] [ 12] [507901565347] +14:44:00 [ 39] [ 2] [00] +14:44:00 [ 41] [ 8] [03615001] +14:44:00 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:44:00 [ 49] [ 3] [418] +14:44:00 [ 90] [ 42] [020094886603201439370000066889900000000000] +14:44:00 ============================================================================ +14:44:00 Successfully send the slot [198] To REVERSAL Process +14:44:00 + + +waiting on router queue for slot.... +14:44:02 ============================================================================ +14:44:02 Slot Id : <181> +14:44:02 Transaction Type : REQUEST +14:44:02 Received From : +14:44:02 ============================================================================ +14:44:02 FNo. Len. Field Value +14:44:02 ============================================================================ +14:44:02 [ 1] [ 4] [0200] +14:44:02 [ 2] [ 16] [6213544001521373] +14:44:02 [ 3] [ 6] [010000] +14:44:02 [ 4] [ 12] [000010000000] +14:44:02 [ 7] [ 10] [0320144152] +14:44:02 [ 11] [ 6] [948922] +14:44:02 [ 12] [ 6] [144152] +14:44:02 [ 13] [ 4] [0320] +14:44:02 [ 15] [ 4] [0320] +14:44:02 [ 18] [ 4] [6011] +14:44:02 [ 19] [ 3] [418] +14:44:02 [ 22] [ 3] [021] +14:44:02 [ 25] [ 2] [01] +14:44:02 [ 28] [ 9] [D00002000] +14:44:02 [ 32] [ 6] [668899] +14:44:02 [ 35] [ 32] [6213544001521373=491212012137257] +14:44:02 [ 37] [ 12] [507902093352] +14:44:02 [ 41] [ 8] [03020021] +14:44:02 [ 42] [ 15] [APT ] +14:44:02 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +14:44:02 [ 49] [ 3] [418] +14:44:02 [ 52] [ 16] [D740CE36CB06EB80] +14:44:02 ============================================================================ +14:44:02 + + +waiting on router queue for slot.... +14:44:02 Sending to : +14:44:02 ============================================================================ +14:44:02 Sending to : +14:44:02 ============================================================================ +14:44:02 ============================================================================ +14:44:02 Slot Id : <181> +14:44:02 Transaction Type : REQUEST +14:44:02 Received From : +14:44:02 ============================================================================ +14:44:02 FNo. Len. Field Value +14:44:02 ============================================================================ +14:44:02 [ 1] [ 4] [0200] +14:44:02 [ 2] [ 16] [6213544001521373] +14:44:02 [ 3] [ 6] [010000] +14:44:02 [ 4] [ 12] [000010000000] +14:44:02 [ 7] [ 10] [0320144152] +14:44:02 [ 11] [ 6] [948922] +14:44:02 [ 12] [ 6] [144152] +14:44:02 [ 13] [ 4] [0320] +14:44:02 [ 15] [ 4] [0320] +14:44:02 [ 18] [ 4] [6011] +14:44:02 [ 19] [ 3] [418] +14:44:02 [ 22] [ 3] [021] +14:44:02 [ 25] [ 2] [01] +14:44:02 [ 28] [ 9] [D00002000] +14:44:02 [ 32] [ 6] [668899] +14:44:02 [ 35] [ 32] [6213544001521373=491212012137257] +14:44:02 [ 37] [ 12] [507902093352] +14:44:02 [ 41] [ 8] [03020021] +14:44:02 [ 42] [ 15] [APT ] +14:44:02 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +14:44:02 [ 49] [ 3] [418] +14:44:02 [ 52] [ 16] [D740CE36CB06EB80] +14:44:02 ============================================================================ +14:44:02 + + +waiting on router queue for slot.... +14:44:02 Sending to : +14:44:02 ============================================================================ +14:44:02 ============================================================================ +14:44:02 Slot Id : <181> +14:44:02 Transaction Type : REQUEST +14:44:02 Received From : +14:44:02 ============================================================================ +14:44:02 FNo. Len. Field Value +14:44:02 ============================================================================ +14:44:02 [ 1] [ 4] [0200] +14:44:02 [ 2] [ 16] [6213544001521373] +14:44:02 [ 3] [ 6] [010000] +14:44:02 [ 4] [ 12] [000010000000] +14:44:02 [ 7] [ 10] [0320144152] +14:44:02 [ 11] [ 6] [948922] +14:44:02 [ 12] [ 6] [144152] +14:44:02 [ 13] [ 4] [0320] +14:44:02 [ 15] [ 4] [0320] +14:44:02 [ 18] [ 4] [6011] +14:44:02 [ 19] [ 3] [418] +14:44:02 [ 22] [ 3] [021] +14:44:02 [ 25] [ 2] [01] +14:44:02 [ 28] [ 9] [D00002000] +14:44:02 [ 32] [ 6] [668899] +14:44:02 [ 35] [ 32] [6213544001521373=491212012137257] +14:44:02 [ 37] [ 12] [507902093352] +14:44:02 [ 41] [ 8] [03020021] +14:44:02 [ 42] [ 15] [APT ] +14:44:02 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +14:44:02 [ 49] [ 3] [418] +14:44:02 [ 52] [ 16] [C2DCAD566BEC18C9] +14:44:02 ============================================================================ +14:44:02 + + +waiting on router queue for slot.... +14:44:02 Sending to : <0> +14:44:02 ============================================================================ +14:44:04 ============================================================================ +14:44:04 Slot Id : <181> +14:44:04 Transaction Type : RESPONSE +14:44:04 Received From : +14:44:04 ============================================================================ +14:44:04 FNo. Len. Field Value +14:44:04 ============================================================================ +14:44:04 [ 1] [ 4] [0210] +14:44:04 [ 2] [ 16] [6213544001521373] +14:44:04 [ 3] [ 6] [010000] +14:44:04 [ 4] [ 12] [000010000000] +14:44:04 [ 7] [ 10] [0320144152] +14:44:04 [ 11] [ 6] [948922] +14:44:04 [ 12] [ 6] [144152] +14:44:04 [ 13] [ 4] [0320] +14:44:04 [ 15] [ 4] [0320] +14:44:04 [ 18] [ 4] [6011] +14:44:04 [ 19] [ 3] [418] +14:44:04 [ 32] [ 6] [668899] +14:44:04 [ 35] [ 32] [6213544001521373=491212012137257] +14:44:04 [ 37] [ 12] [507902093352] +14:44:04 [ 38] [ 6] [905167] +14:44:04 [ 39] [ 2] [00] +14:44:04 [ 41] [ 8] [03020021] +14:44:04 [ 49] [ 3] [418] +14:44:04 [ 54] [ 40] [0001418C0000490233910002418C000049023391] +14:44:04 ============================================================================ +14:44:04 Sending to : +14:44:04 ============================================================================ +14:44:04 + + +waiting on router queue for slot.... +14:44:05 ============================================================================ +14:44:05 Slot Id : <181> +14:44:05 Transaction Type : RESPONSE +14:44:05 Received From : +14:44:05 ============================================================================ +14:44:05 FNo. Len. Field Value +14:44:05 ============================================================================ +14:44:05 [ 1] [ 4] [0210] +14:44:05 [ 2] [ 16] [6213544001521373] +14:44:05 [ 3] [ 6] [010000] +14:44:05 [ 4] [ 12] [000010000000] +14:44:05 [ 7] [ 10] [0320144152] +14:44:05 [ 11] [ 6] [948922] +14:44:05 [ 12] [ 6] [144152] +14:44:05 [ 13] [ 4] [0320] +14:44:05 [ 15] [ 4] [0320] +14:44:05 [ 18] [ 4] [6011] +14:44:05 [ 19] [ 3] [418] +14:44:05 [ 32] [ 6] [668899] +14:44:05 [ 35] [ 32] [6213544001521373=491212012137257] +14:44:05 [ 37] [ 12] [507902093352] +14:44:05 [ 38] [ 6] [905167] +14:44:05 [ 39] [ 2] [00] +14:44:05 [ 41] [ 8] [03020021] +14:44:05 [ 49] [ 3] [418] +14:44:05 [ 54] [ 40] [0001418C0000490233910002418C000049023391] +14:44:05 ============================================================================ +14:44:05 Calculate Source COMM Id = 4 +14:44:05 ============================================================================ +14:44:05 + + +waiting on router queue for slot.... +14:44:08 ============================================================================ +14:44:08 Slot Id : <201> +14:44:08 Transaction Type : REQUEST +14:44:08 Received From : +14:44:08 ============================================================================ +14:44:08 FNo. Len. Field Value +14:44:08 ============================================================================ +14:44:08 [ 1] [ 4] [0800] +14:44:08 [ 2] [ 5] [02531] +14:44:08 [ 3] [ 6] [579148] +14:44:08 [ 7] [ 10] [0320074408] +14:44:08 [ 11] [ 6] [807267] +14:44:08 [ 15] [ 10] [0320074408] +14:44:08 [ 37] [ 11] [57914807267] +14:44:08 [ 70] [ 3] [001] +14:44:08 ============================================================================ +14:44:08 + + +waiting on router queue for slot.... +14:44:08 ============================================================================ +14:44:08 Slot Id : <201> +14:44:08 Transaction Type : RESPONSE +14:44:08 Received From : +14:44:08 ============================================================================ +14:44:08 FNo. Len. Field Value +14:44:08 ============================================================================ +14:44:08 [ 1] [ 4] [0810] +14:44:08 [ 7] [ 10] [0320074408] +14:44:08 [ 11] [ 6] [807267] +14:44:08 [ 15] [ 4] [0320] +14:44:08 [ 37] [ 12] [57914807267] +14:44:08 [ 39] [ 2] [00] +14:44:08 [ 70] [ 3] [001] +14:44:08 ============================================================================ +14:44:08 Sending to : +14:44:08 ============================================================================ +14:44:08 + + +waiting on router queue for slot.... +14:44:14 ============================================================================ +14:44:14 Slot Id : <214> +14:44:14 Transaction Type : REQUEST +14:44:14 Received From : +14:44:14 ============================================================================ +14:44:14 FNo. Len. Field Value +14:44:14 ============================================================================ +14:44:14 [ 1] [ 4] [0200] +14:44:14 [ 2] [ 16] [1808930900010323] +14:44:14 [ 3] [ 6] [301000] +14:44:14 [ 4] [ 12] [000000000000] +14:44:14 [ 7] [ 10] [0320144410] +14:44:14 [ 11] [ 6] [773881] +14:44:14 [ 12] [ 6] [144410] +14:44:14 [ 13] [ 4] [0320] +14:44:14 [ 15] [ 4] [0320] +14:44:14 [ 18] [ 4] [6011] +14:44:14 [ 22] [ 3] [900] +14:44:14 [ 25] [ 2] [02] +14:44:14 [ 28] [ 9] [D00000000] +14:44:14 [ 32] [ 6] [621354] +14:44:14 [ 35] [ 27] [1808930900010323=1803500052] +14:44:14 [ 37] [ 12] [507902606076] +14:44:14 [ 41] [ 8] [05004300] +14:44:14 [ 42] [ 15] [NATIVE ] +14:44:14 [ 43] [ 40] [Ka deng office LuangprabangLAO] +14:44:14 [ 49] [ 3] [418] +14:44:14 [ 52] [ 16] [EF9A1D733731EDDF] +14:44:14 ============================================================================ +14:44:14 + + +waiting on router queue for slot.... +14:44:14 Sending to : +14:44:14 ============================================================================ +14:44:14 Sending to : +14:44:14 ============================================================================ +14:44:14 ============================================================================ +14:44:14 Slot Id : <165> +14:44:14 Transaction Type : REQUEST +14:44:14 Received From : +14:44:14 ============================================================================ +14:44:14 FNo. Len. Field Value +14:44:14 ============================================================================ +14:44:14 [ 1] [ 4] [0800] +14:44:14 [ 7] [ 10] [0320074321] +14:44:14 [ 11] [ 6] [156844] +14:44:14 [ 70] [ 3] [301] +14:44:14 ============================================================================ +14:44:14 + + +waiting on router queue for slot.... +14:44:14 Sending to : +14:44:14 ============================================================================ +14:44:14 ============================================================================ +14:44:14 Slot Id : <165> +14:44:14 Transaction Type : RESPONSE +14:44:14 Received From : +14:44:14 ============================================================================ +14:44:14 FNo. Len. Field Value +14:44:14 ============================================================================ +14:44:14 [ 1] [ 4] [0810] +14:44:14 [ 7] [ 10] [0320074321] +14:44:14 [ 11] [ 6] [156844] +14:44:14 [ 39] [ 2] [00] +14:44:14 [ 70] [ 3] [301] +14:44:14 ============================================================================ +14:44:14 Calculate Source COMM Id = 2 +14:44:14 ============================================================================ +14:44:14 + + +waiting on router queue for slot.... +14:44:15 ============================================================================ +14:44:15 Slot Id : <214> +14:44:15 Transaction Type : REQUEST +14:44:15 Received From : +14:44:15 ============================================================================ +14:44:15 FNo. Len. Field Value +14:44:15 ============================================================================ +14:44:15 [ 1] [ 4] [0200] +14:44:15 [ 2] [ 16] [1808930900010323] +14:44:15 [ 3] [ 6] [301000] +14:44:15 [ 4] [ 12] [000000000000] +14:44:15 [ 7] [ 10] [0320144410] +14:44:15 [ 11] [ 6] [773881] +14:44:15 [ 12] [ 6] [144410] +14:44:15 [ 13] [ 4] [0320] +14:44:15 [ 15] [ 4] [0320] +14:44:15 [ 18] [ 4] [6011] +14:44:15 [ 22] [ 3] [900] +14:44:15 [ 25] [ 2] [02] +14:44:15 [ 28] [ 9] [D00000000] +14:44:15 [ 32] [ 6] [621354] +14:44:15 [ 35] [ 27] [1808930900010323=1803500052] +14:44:15 [ 37] [ 12] [507902606076] +14:44:15 [ 41] [ 8] [05004300] +14:44:15 [ 42] [ 15] [NATIVE ] +14:44:15 [ 43] [ 40] [Ka deng office LuangprabangLAO] +14:44:15 [ 49] [ 3] [418] +14:44:15 [ 52] [ 16] [EF9A1D733731EDDF] +14:44:15 ============================================================================ +14:44:15 + + +waiting on router queue for slot.... +14:44:15 Sending to : +14:44:15 ============================================================================ +14:44:15 ============================================================================ +14:44:15 Slot Id : <214> +14:44:15 Transaction Type : REQUEST +14:44:15 Received From : +14:44:15 ============================================================================ +14:44:15 FNo. Len. Field Value +14:44:15 ============================================================================ +14:44:15 [ 1] [ 4] [0200] +14:44:15 [ 2] [ 16] [1808930900010323] +14:44:15 [ 3] [ 6] [301000] +14:44:15 [ 4] [ 12] [000000000000] +14:44:15 [ 7] [ 10] [0320144410] +14:44:15 [ 11] [ 6] [773881] +14:44:15 [ 12] [ 6] [144410] +14:44:15 [ 13] [ 4] [0320] +14:44:15 [ 15] [ 4] [0320] +14:44:15 [ 18] [ 4] [6011] +14:44:15 [ 22] [ 3] [900] +14:44:15 [ 25] [ 2] [02] +14:44:15 [ 28] [ 9] [D00000000] +14:44:15 [ 32] [ 6] [621354] +14:44:15 [ 35] [ 27] [1808930900010323=1803500052] +14:44:15 [ 37] [ 12] [507902606076] +14:44:15 [ 41] [ 8] [05004300] +14:44:15 [ 42] [ 15] [NATIVE ] +14:44:15 [ 43] [ 40] [Ka deng office LuangprabangLAO] +14:44:15 [ 49] [ 3] [418] +14:44:15 [ 52] [ 16] [5AE7DDF5F5520E75] +14:44:15 ============================================================================ +14:44:15 + + +waiting on router queue for slot.... +14:44:15 Sending to : <2> +14:44:15 ============================================================================ +14:44:19 ============================================================================ +14:44:19 Slot Id : <214> +14:44:19 Transaction Type : RESPONSE +14:44:19 Received From : +14:44:19 ============================================================================ +14:44:19 FNo. Len. Field Value +14:44:19 ============================================================================ +14:44:19 [ 1] [ 4] [0210] +14:44:19 [ 2] [ 16] [1808930900010323] +14:44:19 [ 3] [ 6] [301000] +14:44:19 [ 7] [ 10] [0320144410] +14:44:19 [ 11] [ 6] [773881] +14:44:19 [ 12] [ 6] [144410] +14:44:19 [ 13] [ 4] [0320] +14:44:19 [ 14] [ 4] [1803] +14:44:19 [ 19] [ 3] [418] +14:44:19 [ 32] [ 6] [621354] +14:44:19 [ 37] [ 12] [507902606076] +14:44:19 [ 38] [ 6] [773881] +14:44:19 [ 39] [ 2] [00] +14:44:19 [ 41] [ 8] [05004300] +14:44:19 [ 49] [ 3] [418] +14:44:19 [ 52] [ 16] [5AE7DDF5F5520E75] +14:44:19 [ 54] [ 20] [1002418C000042368600] +14:44:19 ============================================================================ +14:44:19 Sending to : +14:44:19 ============================================================================ +14:44:19 + + +waiting on router queue for slot.... +14:44:20 ============================================================================ +14:44:20 Slot Id : <214> +14:44:20 Transaction Type : RESPONSE +14:44:20 Received From : +14:44:20 ============================================================================ +14:44:20 FNo. Len. Field Value +14:44:20 ============================================================================ +14:44:20 [ 1] [ 4] [0210] +14:44:20 [ 2] [ 16] [1808930900010323] +14:44:20 [ 3] [ 6] [301000] +14:44:20 [ 7] [ 10] [0320144410] +14:44:20 [ 11] [ 6] [773881] +14:44:20 [ 12] [ 6] [144410] +14:44:20 [ 13] [ 4] [0320] +14:44:20 [ 14] [ 4] [1803] +14:44:20 [ 19] [ 3] [418] +14:44:20 [ 32] [ 6] [621354] +14:44:20 [ 37] [ 12] [507902606076] +14:44:20 [ 38] [ 6] [773881] +14:44:20 [ 39] [ 2] [00] +14:44:20 [ 41] [ 8] [05004300] +14:44:20 [ 49] [ 3] [418] +14:44:20 [ 52] [ 16] [5AE7DDF5F5520E75] +14:44:20 [ 54] [ 20] [1002418C000042368600] +14:44:20 ============================================================================ +14:44:20 Calculate Source COMM Id = 0 +14:44:20 ============================================================================ +14:44:20 + + +waiting on router queue for slot.... +14:44:23 ============================================================================ +14:44:23 Slot Id : <209> +14:44:23 Transaction Type : REQUEST +14:44:23 Received From : +14:44:23 ============================================================================ +14:44:23 FNo. Len. Field Value +14:44:23 ============================================================================ +14:44:23 [ 1] [ 4] [0200] +14:44:23 [ 2] [ 16] [6213541000661333] +14:44:23 [ 3] [ 6] [010000] +14:44:23 [ 4] [ 12] [000100000000] +14:44:23 [ 7] [ 10] [0320144214] +14:44:23 [ 11] [ 6] [948926] +14:44:23 [ 12] [ 6] [144214] +14:44:23 [ 13] [ 4] [0320] +14:44:23 [ 15] [ 4] [0320] +14:44:23 [ 18] [ 4] [6011] +14:44:23 [ 19] [ 3] [418] +14:44:23 [ 22] [ 3] [021] +14:44:23 [ 25] [ 2] [01] +14:44:23 [ 28] [ 9] [D00002000] +14:44:23 [ 32] [ 6] [668899] +14:44:23 [ 35] [ 32] [6213541000661333=491212016133298] +14:44:23 [ 37] [ 12] [507901565350] +14:44:23 [ 41] [ 8] [03615001] +14:44:23 [ 42] [ 15] [APT ] +14:44:23 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:44:23 [ 49] [ 3] [418] +14:44:23 [ 52] [ 16] [5C602BD06D3E3299] +14:44:23 ============================================================================ +14:44:23 + + +waiting on router queue for slot.... +14:44:24 Sending to : +14:44:24 ============================================================================ +14:44:24 Sending to : +14:44:24 ============================================================================ +14:44:24 ============================================================================ +14:44:24 Slot Id : <209> +14:44:24 Transaction Type : REQUEST +14:44:24 Received From : +14:44:24 ============================================================================ +14:44:24 FNo. Len. Field Value +14:44:24 ============================================================================ +14:44:24 [ 1] [ 4] [0200] +14:44:24 [ 2] [ 16] [6213541000661333] +14:44:24 [ 3] [ 6] [010000] +14:44:24 [ 4] [ 12] [000100000000] +14:44:24 [ 7] [ 10] [0320144214] +14:44:24 [ 11] [ 6] [948926] +14:44:24 [ 12] [ 6] [144214] +14:44:24 [ 13] [ 4] [0320] +14:44:24 [ 15] [ 4] [0320] +14:44:24 [ 18] [ 4] [6011] +14:44:24 [ 19] [ 3] [418] +14:44:24 [ 22] [ 3] [021] +14:44:24 [ 25] [ 2] [01] +14:44:24 [ 28] [ 9] [D00002000] +14:44:24 [ 32] [ 6] [668899] +14:44:24 [ 35] [ 32] [6213541000661333=491212016133298] +14:44:24 [ 37] [ 12] [507901565350] +14:44:24 [ 41] [ 8] [03615001] +14:44:24 [ 42] [ 15] [APT ] +14:44:24 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:44:24 [ 49] [ 3] [418] +14:44:24 [ 52] [ 16] [5C602BD06D3E3299] +14:44:24 ============================================================================ +14:44:24 + + +waiting on router queue for slot.... +14:44:24 Sending to : +14:44:24 ============================================================================ +14:44:24 ============================================================================ +14:44:24 Slot Id : <209> +14:44:24 Transaction Type : REQUEST +14:44:24 Received From : +14:44:24 ============================================================================ +14:44:24 FNo. Len. Field Value +14:44:24 ============================================================================ +14:44:24 [ 1] [ 4] [0200] +14:44:24 [ 2] [ 16] [6213541000661333] +14:44:24 [ 3] [ 6] [010000] +14:44:24 [ 4] [ 12] [000100000000] +14:44:24 [ 7] [ 10] [0320144214] +14:44:24 [ 11] [ 6] [948926] +14:44:24 [ 12] [ 6] [144214] +14:44:24 [ 13] [ 4] [0320] +14:44:24 [ 15] [ 4] [0320] +14:44:24 [ 18] [ 4] [6011] +14:44:24 [ 19] [ 3] [418] +14:44:24 [ 22] [ 3] [021] +14:44:24 [ 25] [ 2] [01] +14:44:24 [ 28] [ 9] [D00002000] +14:44:24 [ 32] [ 6] [668899] +14:44:24 [ 35] [ 32] [6213541000661333=491212016133298] +14:44:24 [ 37] [ 12] [507901565350] +14:44:24 [ 41] [ 8] [03615001] +14:44:24 [ 42] [ 15] [APT ] +14:44:24 [ 43] [ 40] [ PAKSONG UNIT CHAMPASAK L] +14:44:24 [ 49] [ 3] [418] +14:44:24 [ 52] [ 16] [8B69CDB0ACB8C6C2] +14:44:24 ============================================================================ +14:44:24 + + +waiting on router queue for slot.... +14:44:24 Sending to : <0> +14:44:24 ============================================================================ +14:44:24 ============================================================================ +14:44:24 Slot Id : <194> +14:44:24 Transaction Type : REQUEST +14:44:24 Received From : +14:44:24 ============================================================================ +14:44:24 FNo. Len. Field Value +14:44:24 ============================================================================ +14:44:24 [ 1] [ 4] [0200] +14:44:24 [ 2] [ 16] [1808931700010158] +14:44:24 [ 3] [ 6] [011000] +14:44:24 [ 4] [ 12] [000100000000] +14:44:24 [ 7] [ 10] [0320144420] +14:44:24 [ 11] [ 6] [773919] +14:44:24 [ 12] [ 6] [144420] +14:44:24 [ 13] [ 4] [0320] +14:44:24 [ 15] [ 4] [0320] +14:44:24 [ 18] [ 4] [6011] +14:44:24 [ 22] [ 3] [900] +14:44:24 [ 25] [ 2] [02] +14:44:24 [ 28] [ 9] [D00002000] +14:44:24 [ 32] [ 6] [621354] +14:44:24 [ 35] [ 27] [1808931700010158=1803500595] +14:44:24 [ 37] [ 12] [507904795686] +14:44:24 [ 41] [ 8] [07001500] +14:44:24 [ 42] [ 15] [NATIVE ] +14:44:24 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +14:44:24 [ 49] [ 3] [418] +14:44:24 [ 52] [ 16] [B173495D66DF5D1A] +14:44:24 ============================================================================ +14:44:24 + + +waiting on router queue for slot.... +14:44:24 Sending to : +14:44:24 ============================================================================ +14:44:24 Sending to : +14:44:24 ============================================================================ +14:44:25 ============================================================================ +14:44:25 Slot Id : <194> +14:44:25 Transaction Type : REQUEST +14:44:25 Received From : +14:44:25 ============================================================================ +14:44:25 FNo. Len. Field Value +14:44:25 ============================================================================ +14:44:25 [ 1] [ 4] [0200] +14:44:25 [ 2] [ 16] [1808931700010158] +14:44:25 [ 3] [ 6] [011000] +14:44:25 [ 4] [ 12] [000100000000] +14:44:25 [ 7] [ 10] [0320144420] +14:44:25 [ 11] [ 6] [773919] +14:44:25 [ 12] [ 6] [144420] +14:44:25 [ 13] [ 4] [0320] +14:44:25 [ 15] [ 4] [0320] +14:44:25 [ 18] [ 4] [6011] +14:44:25 [ 22] [ 3] [900] +14:44:25 [ 25] [ 2] [02] +14:44:25 [ 28] [ 9] [D00002000] +14:44:25 [ 32] [ 6] [621354] +14:44:25 [ 35] [ 27] [1808931700010158=1803500595] +14:44:25 [ 37] [ 12] [507904795686] +14:44:25 [ 41] [ 8] [07001500] +14:44:25 [ 42] [ 15] [NATIVE ] +14:44:25 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +14:44:25 [ 49] [ 3] [418] +14:44:25 [ 52] [ 16] [B173495D66DF5D1A] +14:44:25 ============================================================================ +14:44:25 + + +waiting on router queue for slot.... +14:44:25 Sending to : +14:44:25 ============================================================================ +14:44:25 ============================================================================ +14:44:25 Slot Id : <194> +14:44:25 Transaction Type : REQUEST +14:44:25 Received From : +14:44:25 ============================================================================ +14:44:25 FNo. Len. Field Value +14:44:25 ============================================================================ +14:44:25 [ 1] [ 4] [0200] +14:44:25 [ 2] [ 16] [1808931700010158] +14:44:25 [ 3] [ 6] [011000] +14:44:25 [ 4] [ 12] [000100000000] +14:44:25 [ 7] [ 10] [0320144420] +14:44:25 [ 11] [ 6] [773919] +14:44:25 [ 12] [ 6] [144420] +14:44:25 [ 13] [ 4] [0320] +14:44:25 [ 15] [ 4] [0320] +14:44:25 [ 18] [ 4] [6011] +14:44:25 [ 22] [ 3] [900] +14:44:25 [ 25] [ 2] [02] +14:44:25 [ 28] [ 9] [D00002000] +14:44:25 [ 32] [ 6] [621354] +14:44:25 [ 35] [ 27] [1808931700010158=1803500595] +14:44:25 [ 37] [ 12] [507904795686] +14:44:25 [ 41] [ 8] [07001500] +14:44:25 [ 42] [ 15] [NATIVE ] +14:44:25 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +14:44:25 [ 49] [ 3] [418] +14:44:25 [ 52] [ 16] [C4ACF49E5F11058B] +14:44:25 ============================================================================ +14:44:25 + + +waiting on router queue for slot.... +14:44:25 ============================================================================ +14:44:25 Slot Id : <209> +14:44:25 Transaction Type : RESPONSE +14:44:25 Received From : +14:44:25 ============================================================================ +14:44:25 FNo. Len. Field Value +14:44:25 ============================================================================ +14:44:25 [ 1] [ 4] [0210] +14:44:25 [ 2] [ 16] [6213541000661333] +14:44:25 [ 3] [ 6] [010000] +14:44:25 [ 4] [ 12] [000100000000] +14:44:25 [ 7] [ 10] [0320144214] +14:44:25 [ 11] [ 6] [948926] +14:44:25 [ 12] [ 6] [144214] +14:44:25 [ 13] [ 4] [0320] +14:44:25 [ 15] [ 4] [0320] +14:44:25 [ 18] [ 4] [6011] +14:44:25 [ 19] [ 3] [418] +14:44:25 [ 32] [ 6] [668899] +14:44:25 [ 35] [ 32] [6213541000661333=491212016133298] +14:44:25 [ 37] [ 12] [507901565350] +14:44:25 [ 38] [ 6] [752169] +14:44:25 [ 39] [ 2] [00] +14:44:25 Sending to : <2> +14:44:25 ============================================================================ +14:44:25 [ 41] [ 8] [03615001] +14:44:25 [ 49] [ 3] [418] +14:44:25 [ 54] [ 40] [0001418C0000839682200002418C000083968220] +14:44:25 ============================================================================ +14:44:25 Sending to : +14:44:25 ============================================================================ +14:44:25 + + +waiting on router queue for slot.... +14:44:26 ============================================================================ +14:44:26 Slot Id : <209> +14:44:26 Transaction Type : RESPONSE +14:44:26 Received From : +14:44:26 ============================================================================ +14:44:26 FNo. Len. Field Value +14:44:26 ============================================================================ +14:44:26 [ 1] [ 4] [0210] +14:44:26 [ 2] [ 16] [6213541000661333] +14:44:26 [ 3] [ 6] [010000] +14:44:26 [ 4] [ 12] [000100000000] +14:44:26 [ 7] [ 10] [0320144214] +14:44:26 [ 11] [ 6] [948926] +14:44:26 [ 12] [ 6] [144214] +14:44:26 [ 13] [ 4] [0320] +14:44:26 [ 15] [ 4] [0320] +14:44:26 [ 18] [ 4] [6011] +14:44:26 [ 19] [ 3] [418] +14:44:26 [ 32] [ 6] [668899] +14:44:26 [ 35] [ 32] [6213541000661333=491212016133298] +14:44:26 [ 37] [ 12] [507901565350] +14:44:26 [ 38] [ 6] [752169] +14:44:26 [ 39] [ 2] [00] +14:44:26 [ 41] [ 8] [03615001] +14:44:26 [ 49] [ 3] [418] +14:44:26 [ 54] [ 40] [0001418C0000839682200002418C000083968220] +14:44:26 ============================================================================ +14:44:26 Calculate Source COMM Id = 4 +14:44:26 ============================================================================ +14:44:26 + + +waiting on router queue for slot.... +14:44:27 ============================================================================ +14:44:27 Slot Id : <195> +14:44:27 Transaction Type : REQUEST +14:44:27 Received From : +14:44:27 ============================================================================ +14:44:27 FNo. Len. Field Value +14:44:27 ============================================================================ +14:44:27 [ 1] [ 4] [0200] +14:44:27 [ 2] [ 16] [6213545000096911] +14:44:27 [ 3] [ 6] [010000] +14:44:27 [ 4] [ 12] [000100000000] +14:44:27 [ 7] [ 10] [0320074333] +14:44:27 [ 11] [ 6] [269784] +14:44:27 [ 12] [ 6] [144333] +14:44:27 [ 13] [ 4] [0320] +14:44:27 [ 14] [ 4] [4912] +14:44:27 [ 15] [ 4] [0320] +14:44:27 [ 18] [ 4] [6011] +14:44:27 [ 19] [ 3] [418] +14:44:27 [ 22] [ 3] [021] +14:44:27 [ 25] [ 2] [01] +14:44:27 [ 28] [ 9] [D00002000] +14:44:27 [ 32] [ 6] [180893] +14:44:27 [ 35] [ 32] [6213545000096911=491212019691520] +14:44:27 [ 37] [ 12] [507907269784] +14:44:27 [ 41] [ 8] [0112CPBR] +14:44:27 [ 42] [ 15] [999999 ] +14:44:27 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:44:27 [ 49] [ 3] [418] +14:44:27 [ 52] [ 16] [2E09678A63B812C7] +14:44:27 ============================================================================ +14:44:27 + + +waiting on router queue for slot.... +14:44:27 Sending to : +14:44:27 ============================================================================ +14:44:27 Sending to : +14:44:27 ============================================================================ +14:44:27 ============================================================================ +14:44:27 Slot Id : <195> +14:44:27 Transaction Type : REQUEST +14:44:27 Received From : +14:44:27 ============================================================================ +14:44:27 FNo. Len. Field Value +14:44:27 ============================================================================ +14:44:27 [ 1] [ 4] [0200] +14:44:27 [ 2] [ 16] [6213545000096911] +14:44:27 [ 3] [ 6] [010000] +14:44:27 [ 4] [ 12] [000100000000] +14:44:27 [ 7] [ 10] [0320074333] +14:44:27 [ 11] [ 6] [269784] +14:44:27 [ 12] [ 6] [144333] +14:44:27 [ 13] [ 4] [0320] +14:44:27 [ 14] [ 4] [4912] +14:44:27 [ 15] [ 4] [0320] +14:44:27 [ 18] [ 4] [6011] +14:44:27 [ 19] [ 3] [418] +14:44:27 [ 22] [ 3] [021] +14:44:27 [ 25] [ 2] [01] +14:44:27 [ 28] [ 9] [D00002000] +14:44:27 [ 32] [ 6] [180893] +14:44:27 [ 35] [ 32] [6213545000096911=491212019691520] +14:44:27 [ 37] [ 12] [507907269784] +14:44:27 [ 41] [ 8] [0112CPBR] +14:44:27 [ 42] [ 15] [999999 ] +14:44:27 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:44:27 [ 49] [ 3] [418] +14:44:27 [ 52] [ 16] [2E09678A63B812C7] +14:44:27 ============================================================================ +14:44:27 + + +waiting on router queue for slot.... +14:44:27 Sending to : +14:44:27 ============================================================================ +14:44:27 ============================================================================ +14:44:27 Slot Id : <195> +14:44:27 Transaction Type : REQUEST +14:44:27 Received From : +14:44:27 ============================================================================ +14:44:27 FNo. Len. Field Value +14:44:27 ============================================================================ +14:44:27 [ 1] [ 4] [0200] +14:44:27 [ 2] [ 16] [6213545000096911] +14:44:27 [ 3] [ 6] [010000] +14:44:27 [ 4] [ 12] [000100000000] +14:44:27 [ 7] [ 10] [0320074333] +14:44:27 [ 11] [ 6] [269784] +14:44:27 [ 12] [ 6] [144333] +14:44:27 [ 13] [ 4] [0320] +14:44:27 [ 14] [ 4] [4912] +14:44:27 [ 15] [ 4] [0320] +14:44:27 [ 18] [ 4] [6011] +14:44:27 [ 19] [ 3] [418] +14:44:27 [ 22] [ 3] [021] +14:44:27 [ 25] [ 2] [01] +14:44:27 [ 28] [ 9] [D00002000] +14:44:27 [ 32] [ 6] [180893] +14:44:27 [ 35] [ 32] [6213545000096911=491212019691520] +14:44:27 [ 37] [ 12] [507907269784] +14:44:27 [ 41] [ 8] [0112CPBR] +14:44:27 [ 42] [ 15] [999999 ] +14:44:27 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:44:27 [ 49] [ 3] [418] +14:44:27 [ 52] [ 16] [916B4D5FAD120EF4] +14:44:27 ============================================================================ +14:44:27 + + +waiting on router queue for slot.... +14:44:27 Sending to : <0> +14:44:27 ============================================================================ +14:44:28 ============================================================================ +14:44:28 Slot Id : <195> +14:44:28 Transaction Type : RESPONSE +14:44:28 Received From : +14:44:28 ============================================================================ +14:44:28 FNo. Len. Field Value +14:44:28 ============================================================================ +14:44:28 [ 1] [ 4] [0210] +14:44:28 [ 2] [ 16] [6213545000096911] +14:44:28 [ 3] [ 6] [010000] +14:44:28 [ 4] [ 12] [000100000000] +14:44:28 [ 7] [ 10] [0320074333] +14:44:28 [ 11] [ 6] [269784] +14:44:28 [ 12] [ 6] [144333] +14:44:28 [ 13] [ 4] [0320] +14:44:28 [ 15] [ 4] [0320] +14:44:28 [ 18] [ 4] [6011] +14:44:28 [ 19] [ 3] [418] +14:44:28 [ 32] [ 6] [180893] +14:44:28 [ 35] [ 32] [6213545000096911=491212019691520] +14:44:28 [ 37] [ 12] [507907269784] +14:44:28 [ 38] [ 6] [882109] +14:44:28 [ 39] [ 2] [00] +14:44:28 [ 41] [ 8] [0112CPBR] +14:44:28 [ 49] [ 3] [418] +14:44:28 [ 54] [ 40] [0001418C0001394499240002418C000139449924] +14:44:28 ============================================================================ +14:44:28 Sending to : +14:44:28 ============================================================================ +14:44:28 + + +waiting on router queue for slot.... +14:44:29 ============================================================================ +14:44:29 Slot Id : <195> +14:44:29 Transaction Type : RESPONSE +14:44:29 Received From : +14:44:29 ============================================================================ +14:44:29 FNo. Len. Field Value +14:44:29 ============================================================================ +14:44:29 [ 1] [ 4] [0210] +14:44:29 [ 2] [ 16] [6213545000096911] +14:44:29 [ 3] [ 6] [010000] +14:44:29 [ 4] [ 12] [000100000000] +14:44:29 [ 7] [ 10] [0320074333] +14:44:29 [ 11] [ 6] [269784] +14:44:29 [ 12] [ 6] [144333] +14:44:29 [ 13] [ 4] [0320] +14:44:29 [ 15] [ 4] [0320] +14:44:29 [ 18] [ 4] [6011] +14:44:29 [ 19] [ 3] [418] +14:44:29 [ 32] [ 6] [180893] +14:44:29 [ 35] [ 32] [6213545000096911=491212019691520] +14:44:29 [ 37] [ 12] [507907269784] +14:44:29 [ 38] [ 6] [882109] +14:44:29 [ 39] [ 2] [00] +14:44:29 [ 41] [ 8] [0112CPBR] +14:44:29 [ 49] [ 3] [418] +14:44:29 [ 54] [ 40] [0001418C0001394499240002418C000139449924] +14:44:29 ============================================================================ +14:44:29 Calculate Source COMM Id = 2 +14:44:29 ============================================================================ +14:44:29 + + +waiting on router queue for slot.... +14:44:32 ============================================================================ +14:44:32 Slot Id : <194> +14:44:32 Transaction Type : RESPONSE +14:44:32 Received From : +14:44:32 ============================================================================ +14:44:32 FNo. Len. Field Value +14:44:32 ============================================================================ +14:44:32 [ 1] [ 4] [0210] +14:44:32 [ 2] [ 16] [1808931700010158] +14:44:32 [ 3] [ 6] [011000] +14:44:32 [ 4] [ 12] [000100000000] +14:44:32 [ 6] [ 12] [000100000000] +14:44:32 [ 7] [ 10] [0320144420] +14:44:32 [ 11] [ 6] [773919] +14:44:32 [ 12] [ 6] [144420] +14:44:32 [ 13] [ 4] [0320] +14:44:32 [ 18] [ 4] [6011] +14:44:32 [ 19] [ 3] [418] +14:44:32 [ 22] [ 3] [021] +14:44:32 [ 32] [ 6] [621354] +14:44:32 [ 35] [ 27] [1808931700010158=1803500595] +14:44:32 [ 37] [ 12] [507904795686] +14:44:32 [ 38] [ 6] [773919] +14:44:32 [ 39] [ 2] [00] +14:44:32 [ 41] [ 8] [07001500] +14:44:32 [ 49] [ 3] [418] +14:44:32 [ 52] [ 16] [C4ACF49E5F11058B] +14:44:32 [ 54] [ 20] [1001418C000107261800] +14:44:32 ============================================================================ +14:44:32 Sending to : +14:44:32 ============================================================================ +14:44:32 + + +waiting on router queue for slot.... +14:44:33 ============================================================================ +14:44:33 Slot Id : <194> +14:44:33 Transaction Type : RESPONSE +14:44:33 Received From : +14:44:33 ============================================================================ +14:44:33 FNo. Len. Field Value +14:44:33 ============================================================================ +14:44:33 [ 1] [ 4] [0210] +14:44:33 [ 2] [ 16] [1808931700010158] +14:44:33 [ 3] [ 6] [011000] +14:44:33 [ 4] [ 12] [000100000000] +14:44:33 [ 6] [ 12] [000100000000] +14:44:33 [ 7] [ 10] [0320144420] +14:44:33 [ 11] [ 6] [773919] +14:44:33 [ 12] [ 6] [144420] +14:44:33 [ 13] [ 4] [0320] +14:44:33 [ 18] [ 4] [6011] +14:44:33 [ 19] [ 3] [418] +14:44:33 [ 22] [ 3] [021] +14:44:33 [ 32] [ 6] [621354] +14:44:33 [ 35] [ 27] [1808931700010158=1803500595] +14:44:33 [ 37] [ 12] [507904795686] +14:44:33 [ 38] [ 6] [773919] +14:44:33 [ 39] [ 2] [00] +14:44:33 [ 41] [ 8] [07001500] +14:44:33 [ 49] [ 3] [418] +14:44:33 [ 52] [ 16] [C4ACF49E5F11058B] +14:44:33 [ 54] [ 20] [1001418C000107261800] +14:44:33 ============================================================================ +14:44:33 Calculate Source COMM Id = 0 +14:44:33 ============================================================================ +14:44:33 + + +waiting on router queue for slot.... +14:44:40 ============================================================================ +14:44:40 Slot Id : <178> +14:44:40 Transaction Type : REQUEST +14:44:40 Received From : +14:44:40 ============================================================================ +14:44:40 FNo. Len. Field Value +14:44:40 ============================================================================ +14:44:40 [ 1] [ 4] [0200] +14:44:40 [ 2] [ 16] [6688990108347509] +14:44:40 [ 3] [ 6] [011000] +14:44:40 [ 4] [ 12] [000020000000] +14:44:40 [ 7] [ 10] [0320074346] +14:44:40 [ 11] [ 6] [269787] +14:44:40 [ 12] [ 6] [144346] +14:44:40 [ 13] [ 4] [0320] +14:44:40 [ 14] [ 4] [4406] +14:44:40 [ 15] [ 4] [0320] +14:44:40 [ 18] [ 4] [6011] +14:44:40 [ 19] [ 3] [418] +14:44:40 [ 22] [ 3] [021] +14:44:40 [ 25] [ 2] [01] +14:44:40 [ 28] [ 9] [D00002000] +14:44:40 [ 32] [ 6] [180893] +14:44:40 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:44:40 [ 37] [ 12] [507907269787] +14:44:40 [ 41] [ 8] [0321LNTV] +14:44:40 [ 42] [ 15] [999999 ] +14:44:40 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:44:40 [ 49] [ 3] [418] +14:44:40 [ 52] [ 16] [A22216D88F7969BC] +14:44:40 ============================================================================ +14:44:40 + + +waiting on router queue for slot.... +14:44:40 Sending to : +14:44:40 ============================================================================ +14:44:40 Sending to : +14:44:40 ============================================================================ +14:44:40 ============================================================================ +14:44:40 Slot Id : <178> +14:44:40 Transaction Type : REQUEST +14:44:40 Received From : +14:44:40 ============================================================================ +14:44:40 FNo. Len. Field Value +14:44:40 ============================================================================ +14:44:40 [ 1] [ 4] [0200] +14:44:40 [ 2] [ 16] [6688990108347509] +14:44:40 [ 3] [ 6] [011000] +14:44:40 [ 4] [ 12] [000020000000] +14:44:40 [ 7] [ 10] [0320074346] +14:44:40 [ 11] [ 6] [269787] +14:44:40 [ 12] [ 6] [144346] +14:44:40 [ 13] [ 4] [0320] +14:44:40 [ 14] [ 4] [4406] +14:44:40 [ 15] [ 4] [0320] +14:44:40 [ 18] [ 4] [6011] +14:44:40 [ 19] [ 3] [418] +14:44:40 [ 22] [ 3] [021] +14:44:40 [ 25] [ 2] [01] +14:44:40 [ 28] [ 9] [D00002000] +14:44:40 [ 32] [ 6] [180893] +14:44:40 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:44:40 [ 37] [ 12] [507907269787] +14:44:40 [ 41] [ 8] [0321LNTV] +14:44:40 [ 42] [ 15] [999999 ] +14:44:40 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:44:40 [ 49] [ 3] [418] +14:44:40 [ 52] [ 16] [A22216D88F7969BC] +14:44:40 ============================================================================ +14:44:40 + + +waiting on router queue for slot.... +14:44:40 Sending to : +14:44:40 ============================================================================ +14:44:40 ============================================================================ +14:44:40 Slot Id : <178> +14:44:40 Transaction Type : REQUEST +14:44:40 Received From : +14:44:40 ============================================================================ +14:44:40 FNo. Len. Field Value +14:44:40 ============================================================================ +14:44:40 [ 1] [ 4] [0200] +14:44:40 [ 2] [ 16] [6688990108347509] +14:44:40 [ 3] [ 6] [011000] +14:44:40 [ 4] [ 12] [000020000000] +14:44:40 [ 7] [ 10] [0320074346] +14:44:40 [ 11] [ 6] [269787] +14:44:40 [ 12] [ 6] [144346] +14:44:40 [ 13] [ 4] [0320] +14:44:40 [ 14] [ 4] [4406] +14:44:40 [ 15] [ 4] [0320] +14:44:40 [ 18] [ 4] [6011] +14:44:40 [ 19] [ 3] [418] +14:44:40 [ 22] [ 3] [021] +14:44:40 [ 25] [ 2] [01] +14:44:40 [ 28] [ 9] [D00002000] +14:44:40 [ 32] [ 6] [180893] +14:44:40 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:44:40 [ 37] [ 12] [507907269787] +14:44:40 [ 41] [ 8] [0321LNTV] +14:44:40 [ 42] [ 15] [999999 ] +14:44:40 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:44:40 [ 49] [ 3] [418] +14:44:40 [ 52] [ 16] [A28BB920A21B80D5] +14:44:40 ============================================================================ +14:44:40 + + +waiting on router queue for slot.... +14:44:40 Sending to : <0> +14:44:40 ============================================================================ +14:44:40 ============================================================================ +14:44:40 Slot Id : <178> +14:44:40 Transaction Type : RESPONSE +14:44:40 Received From : +14:44:40 ============================================================================ +14:44:40 FNo. Len. Field Value +14:44:40 ============================================================================ +14:44:40 [ 1] [ 4] [0210] +14:44:40 [ 2] [ 16] [6688990108347509] +14:44:40 [ 3] [ 6] [011000] +14:44:40 [ 4] [ 12] [000020000000] +14:44:40 [ 7] [ 10] [0320074346] +14:44:40 [ 11] [ 6] [269787] +14:44:40 [ 12] [ 6] [144346] +14:44:40 [ 13] [ 4] [0320] +14:44:40 [ 15] [ 4] [0320] +14:44:40 [ 18] [ 4] [6011] +14:44:40 [ 19] [ 3] [418] +14:44:40 [ 22] [ 3] [021] +14:44:40 [ 32] [ 6] [180893] +14:44:40 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:44:40 [ 37] [ 12] [507907269787] +14:44:40 [ 39] [ 2] [14] +14:44:40 [ 41] [ 8] [0321LNTV] +14:44:40 [ 49] [ 3] [418] +14:44:40 ============================================================================ +14:44:40 Sending to : +14:44:40 ============================================================================ +14:44:40 + + +waiting on router queue for slot.... +14:44:40 ============================================================================ +14:44:40 Slot Id : <184> +14:44:40 Transaction Type : REQUEST +14:44:40 Received From : +14:44:40 ============================================================================ +14:44:40 FNo. Len. Field Value +14:44:40 ============================================================================ +14:44:40 [ 1] [ 4] [0200] +14:44:40 [ 2] [ 16] [6213544001993598] +14:44:40 [ 3] [ 6] [011000] +14:44:40 [ 4] [ 12] [000002000000] +14:44:40 [ 7] [ 10] [0320144501] +14:44:40 [ 11] [ 6] [207435] +14:44:40 [ 12] [ 6] [144645] +14:44:40 [ 13] [ 4] [0320] +14:44:40 [ 14] [ 4] [4912] +14:44:40 [ 15] [ 4] [0320] +14:44:40 [ 18] [ 4] [6011] +14:44:40 [ 19] [ 3] [418] +14:44:40 [ 22] [ 3] [021] +14:44:40 [ 25] [ 2] [01] +14:44:40 [ 28] [ 9] [D00002000] +14:44:40 [ 32] [ 6] [198901] +14:44:40 [ 35] [ 32] [6213544001993598=491212019359063] +14:44:40 [ 37] [ 12] [507914207435] +14:44:40 [ 41] [ 8] [00002222] +14:44:40 [ 42] [ 15] [000000041002222] +14:44:40 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +14:44:40 [ 49] [ 3] [418] +14:44:40 [ 52] [ 16] [80969D51E7B73675] +14:44:40 ============================================================================ +14:44:40 + + +waiting on router queue for slot.... +14:44:40 Sending to : +14:44:40 ============================================================================ +14:44:40 Sending to : +14:44:40 ============================================================================ +14:44:41 ============================================================================ +14:44:41 Slot Id : <184> +14:44:41 Transaction Type : REQUEST +14:44:41 Received From : +14:44:41 ============================================================================ +14:44:41 FNo. Len. Field Value +14:44:41 ============================================================================ +14:44:41 [ 1] [ 4] [0200] +14:44:41 [ 2] [ 16] [6213544001993598] +14:44:41 [ 3] [ 6] [011000] +14:44:41 [ 4] [ 12] [000002000000] +14:44:41 [ 7] [ 10] [0320144501] +14:44:41 [ 11] [ 6] [207435] +14:44:41 [ 12] [ 6] [144645] +14:44:41 [ 13] [ 4] [0320] +14:44:41 [ 14] [ 4] [4912] +14:44:41 [ 15] [ 4] [0320] +14:44:41 [ 18] [ 4] [6011] +14:44:41 [ 19] [ 3] [418] +14:44:41 [ 22] [ 3] [021] +14:44:41 [ 25] [ 2] [01] +14:44:41 [ 28] [ 9] [D00002000] +14:44:41 [ 32] [ 6] [198901] +14:44:41 [ 35] [ 32] [6213544001993598=491212019359063] +14:44:41 [ 37] [ 12] [507914207435] +14:44:41 [ 41] [ 8] [00002222] +14:44:41 [ 42] [ 15] [000000041002222] +14:44:41 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +14:44:41 [ 49] [ 3] [418] +14:44:41 [ 52] [ 16] [80969D51E7B73675] +14:44:41 ============================================================================ +14:44:41 + + +waiting on router queue for slot.... +14:44:41 Sending to : +14:44:41 ============================================================================ +14:44:41 ============================================================================ +14:44:41 Slot Id : <184> +14:44:41 Transaction Type : REQUEST +14:44:41 Received From : +14:44:41 ============================================================================ +14:44:41 FNo. Len. Field Value +14:44:41 ============================================================================ +14:44:41 [ 1] [ 4] [0200] +14:44:41 [ 2] [ 16] [6213544001993598] +14:44:41 [ 3] [ 6] [011000] +14:44:41 [ 4] [ 12] [000002000000] +14:44:41 [ 7] [ 10] [0320144501] +14:44:41 [ 11] [ 6] [207435] +14:44:41 [ 12] [ 6] [144645] +14:44:41 [ 13] [ 4] [0320] +14:44:41 [ 14] [ 4] [4912] +14:44:41 [ 15] [ 4] [0320] +14:44:41 [ 18] [ 4] [6011] +14:44:41 [ 19] [ 3] [418] +14:44:41 [ 22] [ 3] [021] +14:44:41 [ 25] [ 2] [01] +14:44:41 [ 28] [ 9] [D00002000] +14:44:41 [ 32] [ 6] [198901] +14:44:41 [ 35] [ 32] [6213544001993598=491212019359063] +14:44:41 [ 37] [ 12] [507914207435] +14:44:41 [ 41] [ 8] [00002222] +14:44:41 [ 42] [ 15] [000000041002222] +14:44:41 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +14:44:41 [ 49] [ 3] [418] +14:44:41 [ 52] [ 16] [F1D2916751B978EE] +14:44:41 ============================================================================ +14:44:41 + + +waiting on router queue for slot.... +14:44:41 Sending to : <0> +14:44:41 ============================================================================ +14:44:41 ============================================================================ +14:44:41 Slot Id : <206> +14:44:41 Transaction Type : REQUEST +14:44:41 Received From : +14:44:41 ============================================================================ +14:44:41 FNo. Len. Field Value +14:44:41 ============================================================================ +14:44:41 [ 1] [ 4] [0800] +14:44:41 [ 7] [ 10] [0320074348] +14:44:41 [ 11] [ 6] [156845] +14:44:41 [ 70] [ 3] [301] +14:44:41 ============================================================================ +14:44:41 + + +waiting on router queue for slot.... +14:44:41 Sending to : +14:44:41 ============================================================================ +14:44:41 ============================================================================ +14:44:41 Slot Id : <206> +14:44:41 Transaction Type : RESPONSE +14:44:41 Received From : +14:44:41 ============================================================================ +14:44:41 FNo. Len. Field Value +14:44:41 ============================================================================ +14:44:41 [ 1] [ 4] [0810] +14:44:41 [ 7] [ 10] [0320074348] +14:44:41 [ 11] [ 6] [156845] +14:44:41 [ 39] [ 2] [00] +14:44:41 [ 70] [ 3] [301] +14:44:41 ============================================================================ +14:44:41 Calculate Source COMM Id = 2 +14:44:41 ============================================================================ +14:44:41 + + +waiting on router queue for slot.... +14:44:41 ============================================================================ +14:44:41 Slot Id : <178> +14:44:41 Transaction Type : RESPONSE +14:44:41 Received From : +14:44:41 ============================================================================ +14:44:41 FNo. Len. Field Value +14:44:41 ============================================================================ +14:44:41 [ 1] [ 4] [0210] +14:44:41 [ 2] [ 16] [6688990108347509] +14:44:41 [ 3] [ 6] [011000] +14:44:41 [ 4] [ 12] [000020000000] +14:44:41 [ 7] [ 10] [0320074346] +14:44:41 [ 11] [ 6] [269787] +14:44:41 [ 12] [ 6] [144346] +14:44:41 [ 13] [ 4] [0320] +14:44:41 [ 15] [ 4] [0320] +14:44:41 [ 18] [ 4] [6011] +14:44:41 [ 19] [ 3] [418] +14:44:41 [ 22] [ 3] [021] +14:44:41 [ 32] [ 6] [180893] +14:44:41 [ 35] [ 37] [6688990108347509=44061231750975800000] +14:44:41 [ 37] [ 12] [507907269787] +14:44:41 [ 39] [ 2] [14] +14:44:41 [ 41] [ 8] [0321LNTV] +14:44:41 [ 49] [ 3] [418] +14:44:41 ============================================================================ +14:44:41 Calculate Source COMM Id = 2 +14:44:41 ============================================================================ +14:44:41 + + +waiting on router queue for slot.... +14:44:41 ============================================================================ +14:44:41 Slot Id : <184> +14:44:41 Transaction Type : RESPONSE +14:44:41 Received From : +14:44:41 ============================================================================ +14:44:41 FNo. Len. Field Value +14:44:41 ============================================================================ +14:44:41 [ 1] [ 4] [0210] +14:44:41 [ 2] [ 16] [6213544001993598] +14:44:41 [ 3] [ 6] [011000] +14:44:41 [ 4] [ 12] [000002000000] +14:44:41 [ 7] [ 10] [0320144501] +14:44:41 [ 11] [ 6] [207435] +14:44:41 [ 12] [ 6] [144645] +14:44:41 [ 13] [ 4] [0320] +14:44:41 [ 15] [ 4] [0320] +14:44:41 [ 18] [ 4] [6011] +14:44:41 [ 19] [ 3] [418] +14:44:41 [ 32] [ 6] [198901] +14:44:41 [ 35] [ 32] [6213544001993598=491212019359063] +14:44:41 [ 37] [ 12] [507914207435] +14:44:41 [ 38] [ 6] [621009] +14:44:41 [ 39] [ 2] [00] +14:44:41 [ 41] [ 8] [00002222] +14:44:41 [ 49] [ 3] [418] +14:44:41 [ 54] [ 40] [1001418C0000667635981002418C000066763598] +14:44:41 ============================================================================ +14:44:41 Sending to : +14:44:41 ============================================================================ +14:44:41 + + +waiting on router queue for slot.... +14:44:43 ============================================================================ +14:44:43 Slot Id : <184> +14:44:43 Transaction Type : RESPONSE +14:44:43 Received From : +14:44:43 ============================================================================ +14:44:43 FNo. Len. Field Value +14:44:43 ============================================================================ +14:44:43 [ 1] [ 4] [0210] +14:44:43 [ 2] [ 16] [6213544001993598] +14:44:43 [ 3] [ 6] [011000] +14:44:43 [ 4] [ 12] [000002000000] +14:44:43 [ 7] [ 10] [0320144501] +14:44:43 [ 11] [ 6] [207435] +14:44:43 [ 12] [ 6] [144645] +14:44:43 [ 13] [ 4] [0320] +14:44:43 [ 15] [ 4] [0320] +14:44:43 [ 18] [ 4] [6011] +14:44:43 [ 19] [ 3] [418] +14:44:43 [ 32] [ 6] [198901] +14:44:43 [ 35] [ 32] [6213544001993598=491212019359063] +14:44:43 [ 37] [ 12] [507914207435] +14:44:43 [ 38] [ 6] [621009] +14:44:43 [ 39] [ 2] [00] +14:44:43 [ 41] [ 8] [00002222] +14:44:43 [ 49] [ 3] [418] +14:44:43 [ 54] [ 40] [1001418C0000667635981002418C000066763598] +14:44:43 ============================================================================ +14:44:43 Calculate Source COMM Id = 5 +14:44:43 ============================================================================ +14:44:43 + + +waiting on router queue for slot.... +14:44:46 ============================================================================ +14:44:46 Slot Id : <213> +14:44:46 Transaction Type : REQUEST +14:44:46 Received From : +14:44:46 ============================================================================ +14:44:46 FNo. Len. Field Value +14:44:46 ============================================================================ +14:44:46 [ 1] [ 4] [0200] +14:44:46 [ 2] [ 16] [6688990108514306] +14:44:46 [ 3] [ 6] [010000] +14:44:46 [ 4] [ 12] [000100000000] +14:44:46 [ 7] [ 10] [0320074353] +14:44:46 [ 11] [ 6] [269790] +14:44:46 [ 12] [ 6] [144353] +14:44:46 [ 13] [ 4] [0320] +14:44:46 [ 14] [ 4] [4406] +14:44:46 [ 15] [ 4] [0320] +14:44:46 [ 18] [ 4] [6011] +14:44:46 [ 19] [ 3] [418] +14:44:46 [ 22] [ 3] [021] +14:44:46 [ 25] [ 2] [01] +14:44:46 [ 28] [ 9] [D00002000] +14:44:46 [ 32] [ 6] [180893] +14:44:46 [ 35] [ 37] [6688990108514306=44061231430687100000] +14:44:46 [ 37] [ 12] [507907269790] +14:44:46 [ 41] [ 8] [0201ADD1] +14:44:46 [ 42] [ 15] [999999 ] +14:44:46 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:44:46 [ 49] [ 3] [418] +14:44:46 [ 52] [ 16] [8BB944AF649BAE0E] +14:44:46 ============================================================================ +14:44:46 + + +waiting on router queue for slot.... +14:44:46 Sending to : +14:44:46 ============================================================================ +14:44:46 Sending to : +14:44:46 ============================================================================ +14:44:47 ============================================================================ +14:44:47 Slot Id : <213> +14:44:47 Transaction Type : REQUEST +14:44:47 Received From : +14:44:47 ============================================================================ +14:44:47 FNo. Len. Field Value +14:44:47 ============================================================================ +14:44:47 [ 1] [ 4] [0200] +14:44:47 [ 2] [ 16] [6688990108514306] +14:44:47 [ 3] [ 6] [010000] +14:44:47 [ 4] [ 12] [000100000000] +14:44:47 [ 7] [ 10] [0320074353] +14:44:47 [ 11] [ 6] [269790] +14:44:47 [ 12] [ 6] [144353] +14:44:47 [ 13] [ 4] [0320] +14:44:47 [ 14] [ 4] [4406] +14:44:47 [ 15] [ 4] [0320] +14:44:47 [ 18] [ 4] [6011] +14:44:47 [ 19] [ 3] [418] +14:44:47 [ 22] [ 3] [021] +14:44:47 [ 25] [ 2] [01] +14:44:47 [ 28] [ 9] [D00002000] +14:44:47 [ 32] [ 6] [180893] +14:44:47 [ 35] [ 37] [6688990108514306=44061231430687100000] +14:44:47 [ 37] [ 12] [507907269790] +14:44:47 [ 41] [ 8] [0201ADD1] +14:44:47 [ 42] [ 15] [999999 ] +14:44:47 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:44:47 [ 49] [ 3] [418] +14:44:47 [ 52] [ 16] [8BB944AF649BAE0E] +14:44:47 ============================================================================ +14:44:47 + + +waiting on router queue for slot.... +14:44:47 Sending to : +14:44:47 ============================================================================ +14:44:47 ============================================================================ +14:44:47 Slot Id : <213> +14:44:47 Transaction Type : REQUEST +14:44:47 Received From : +14:44:47 ============================================================================ +14:44:47 FNo. Len. Field Value +14:44:47 ============================================================================ +14:44:47 [ 1] [ 4] [0200] +14:44:47 [ 2] [ 16] [6688990108514306] +14:44:47 [ 3] [ 6] [010000] +14:44:47 [ 4] [ 12] [000100000000] +14:44:47 [ 7] [ 10] [0320074353] +14:44:47 [ 11] [ 6] [269790] +14:44:47 [ 12] [ 6] [144353] +14:44:47 [ 13] [ 4] [0320] +14:44:47 [ 14] [ 4] [4406] +14:44:47 [ 15] [ 4] [0320] +14:44:47 [ 18] [ 4] [6011] +14:44:47 [ 19] [ 3] [418] +14:44:47 [ 22] [ 3] [021] +14:44:47 [ 25] [ 2] [01] +14:44:47 [ 28] [ 9] [D00002000] +14:44:47 [ 32] [ 6] [180893] +14:44:47 [ 35] [ 37] [6688990108514306=44061231430687100000] +14:44:47 [ 37] [ 12] [507907269790] +14:44:47 [ 41] [ 8] [0201ADD1] +14:44:47 [ 42] [ 15] [999999 ] +14:44:47 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:44:47 [ 49] [ 3] [418] +14:44:47 [ 52] [ 16] [4DE860F5B0AA529B] +14:44:47 ============================================================================ +14:44:47 + + +waiting on router queue for slot.... +14:44:47 Sending to : <0> +14:44:47 ============================================================================ +14:44:47 ============================================================================ +14:44:47 Slot Id : <213> +14:44:47 Transaction Type : RESPONSE +14:44:47 Received From : +14:44:47 ============================================================================ +14:44:47 FNo. Len. Field Value +14:44:47 ============================================================================ +14:44:47 [ 1] [ 4] [0210] +14:44:47 [ 2] [ 16] [6688990108514306] +14:44:47 [ 3] [ 6] [010000] +14:44:47 [ 4] [ 12] [000100000000] +14:44:47 [ 7] [ 10] [0320074353] +14:44:47 [ 11] [ 6] [269790] +14:44:47 [ 12] [ 6] [144353] +14:44:47 [ 13] [ 4] [0320] +14:44:47 [ 15] [ 4] [0320] +14:44:47 [ 18] [ 4] [6011] +14:44:47 [ 19] [ 3] [418] +14:44:47 [ 22] [ 3] [021] +14:44:47 [ 32] [ 6] [180893] +14:44:47 [ 35] [ 37] [6688990108514306=44061231430687100000] +14:44:47 [ 37] [ 12] [507907269790] +14:44:47 [ 39] [ 2] [14] +14:44:47 [ 41] [ 8] [0201ADD1] +14:44:47 [ 49] [ 3] [418] +14:44:47 ============================================================================ +14:44:47 Sending to : +14:44:47 ============================================================================ +14:44:47 + + +waiting on router queue for slot.... +14:44:48 ============================================================================ +14:44:48 Slot Id : <213> +14:44:48 Transaction Type : RESPONSE +14:44:48 Received From : +14:44:48 ============================================================================ +14:44:48 FNo. Len. Field Value +14:44:48 ============================================================================ +14:44:48 [ 1] [ 4] [0210] +14:44:48 [ 2] [ 16] [6688990108514306] +14:44:48 [ 3] [ 6] [010000] +14:44:48 [ 4] [ 12] [000100000000] +14:44:48 [ 7] [ 10] [0320074353] +14:44:48 [ 11] [ 6] [269790] +14:44:48 [ 12] [ 6] [144353] +14:44:48 [ 13] [ 4] [0320] +14:44:48 [ 15] [ 4] [0320] +14:44:48 [ 18] [ 4] [6011] +14:44:48 [ 19] [ 3] [418] +14:44:48 [ 22] [ 3] [021] +14:44:48 [ 32] [ 6] [180893] +14:44:48 [ 35] [ 37] [6688990108514306=44061231430687100000] +14:44:48 [ 37] [ 12] [507907269790] +14:44:48 [ 39] [ 2] [14] +14:44:48 [ 41] [ 8] [0201ADD1] +14:44:48 [ 49] [ 3] [418] +14:44:48 ============================================================================ +14:44:48 Calculate Source COMM Id = 2 +14:44:48 ============================================================================ +14:44:48 + + +waiting on router queue for slot.... +14:44:54 ============================================================================ +14:44:54 Slot Id : <193> +14:44:54 Transaction Type : REQUEST +14:44:54 Received From : +14:44:54 ============================================================================ +14:44:54 FNo. Len. Field Value +14:44:54 ============================================================================ +14:44:54 [ 1] [ 4] [0800] +14:44:54 [ 7] [ 10] [0320215643] +14:44:54 [ 11] [ 6] [145643] +14:44:54 [ 37] [ 12] [57914145643] +14:44:54 [ 70] [ 3] [301] +14:44:54 ============================================================================ +14:44:54 + + +waiting on router queue for slot.... +14:44:54 Sending to : +14:44:54 ============================================================================ +14:44:54 ============================================================================ +14:44:54 Slot Id : <193> +14:44:54 Transaction Type : RESPONSE +14:44:54 Received From : +14:44:54 ============================================================================ +14:44:54 FNo. Len. Field Value +14:44:54 ============================================================================ +14:44:54 [ 1] [ 4] [0810] +14:44:54 [ 7] [ 10] [0320215643] +14:44:54 [ 11] [ 6] [145643] +14:44:54 [ 37] [ 12] [579141456430] +14:44:54 [ 39] [ 2] [00] +14:44:54 [ 70] [ 3] [810] +14:44:54 ============================================================================ +14:44:54 Calculate Source COMM Id = 6 +14:44:54 ============================================================================ +14:44:54 + + +waiting on router queue for slot.... +14:44:55 ============================================================================ +14:44:55 Slot Id : <212> +14:44:55 Transaction Type : REQUEST +14:44:55 Received From : +14:44:55 ============================================================================ +14:44:55 FNo. Len. Field Value +14:44:55 ============================================================================ +14:44:55 [ 1] [ 4] [0800] +14:44:55 [ 7] [ 10] [0320075242] +14:44:55 [ 11] [ 6] [011038] +14:44:55 [ 37] [ 12] [57914011038] +14:44:55 [ 70] [ 3] [301] +14:44:55 ============================================================================ +14:44:55 + + +waiting on router queue for slot.... +14:44:55 Sending to : +14:44:55 ============================================================================ +14:44:55 ============================================================================ +14:44:55 Slot Id : <212> +14:44:55 Transaction Type : RESPONSE +14:44:55 Received From : +14:44:55 ============================================================================ +14:44:55 FNo. Len. Field Value +14:44:55 ============================================================================ +14:44:55 [ 1] [ 4] [0810] +14:44:55 [ 7] [ 10] [0320075242] +14:44:55 [ 11] [ 6] [011038] +14:44:55 [ 37] [ 12] [579140110380] +14:44:55 [ 39] [ 2] [00] +14:44:55 [ 70] [ 3] [810] +14:44:55 ============================================================================ +14:44:55 Calculate Source COMM Id = 1 +14:44:55 ============================================================================ +14:44:55 + + +waiting on router queue for slot.... +14:44:59 ============================================================================ +14:44:59 Slot Id : <221> +14:44:59 Transaction Type : REQUEST +14:44:59 Received From : +14:44:59 ============================================================================ +14:44:59 FNo. Len. Field Value +14:44:59 ============================================================================ +14:44:59 [ 1] [ 4] [0200] +14:44:59 [ 2] [ 16] [6688990108430503] +14:44:59 [ 3] [ 6] [300000] +14:44:59 [ 4] [ 12] [000000000000] +14:44:59 [ 7] [ 10] [0320144455] +14:44:59 [ 11] [ 6] [774052] +14:44:59 [ 12] [ 6] [144455] +14:44:59 [ 13] [ 4] [0320] +14:44:59 [ 15] [ 4] [0320] +14:44:59 [ 18] [ 4] [6011] +14:44:59 [ 22] [ 3] [900] +14:44:59 [ 25] [ 2] [02] +14:44:59 [ 28] [ 9] [D00000000] +14:44:59 [ 32] [ 6] [621354] +14:44:59 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:44:59 [ 37] [ 12] [507903499504] +14:44:59 [ 41] [ 8] [06002200] +14:44:59 [ 42] [ 15] [NATIVE ] +14:44:59 [ 43] [ 40] [Beng Market Beng LAO] +14:44:59 [ 49] [ 3] [418] +14:44:59 [ 52] [ 16] [C7B63C92FBC10BF3] +14:44:59 ============================================================================ +14:44:59 + + +waiting on router queue for slot.... +14:44:59 Sending to : +14:44:59 ============================================================================ +14:44:59 Sending to : +14:44:59 ============================================================================ +14:45:00 ============================================================================ +14:45:00 Slot Id : <221> +14:45:00 Transaction Type : REQUEST +14:45:00 Received From : +14:45:00 ============================================================================ +14:45:00 FNo. Len. Field Value +14:45:00 ============================================================================ +14:45:00 [ 1] [ 4] [0200] +14:45:00 [ 2] [ 16] [6688990108430503] +14:45:00 [ 3] [ 6] [300000] +14:45:00 [ 4] [ 12] [000000000000] +14:45:00 [ 7] [ 10] [0320144455] +14:45:00 [ 11] [ 6] [774052] +14:45:00 [ 12] [ 6] [144455] +14:45:00 [ 13] [ 4] [0320] +14:45:00 [ 15] [ 4] [0320] +14:45:00 [ 18] [ 4] [6011] +14:45:00 [ 22] [ 3] [900] +14:45:00 [ 25] [ 2] [02] +14:45:00 [ 28] [ 9] [D00000000] +14:45:00 [ 32] [ 6] [621354] +14:45:00 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:45:00 [ 37] [ 12] [507903499504] +14:45:00 [ 41] [ 8] [06002200] +14:45:00 [ 42] [ 15] [NATIVE ] +14:45:00 [ 43] [ 40] [Beng Market Beng LAO] +14:45:00 [ 49] [ 3] [418] +14:45:00 [ 52] [ 16] [C7B63C92FBC10BF3] +14:45:00 ============================================================================ +14:45:00 + + +waiting on router queue for slot.... +14:45:00 Sending to : +14:45:00 ============================================================================ +14:45:00 ============================================================================ +14:45:00 Slot Id : <221> +14:45:00 Transaction Type : REQUEST +14:45:00 Received From : +14:45:00 ============================================================================ +14:45:00 FNo. Len. Field Value +14:45:00 ============================================================================ +14:45:00 [ 1] [ 4] [0200] +14:45:00 [ 2] [ 16] [6688990108430503] +14:45:00 [ 3] [ 6] [300000] +14:45:00 [ 4] [ 12] [000000000000] +14:45:00 [ 7] [ 10] [0320144455] +14:45:00 [ 11] [ 6] [774052] +14:45:00 [ 12] [ 6] [144455] +14:45:00 [ 13] [ 4] [0320] +14:45:00 [ 15] [ 4] [0320] +14:45:00 [ 18] [ 4] [6011] +14:45:00 [ 22] [ 3] [900] +14:45:00 [ 25] [ 2] [02] +14:45:00 [ 28] [ 9] [D00000000] +14:45:00 [ 32] [ 6] [621354] +14:45:00 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:45:00 [ 37] [ 12] [507903499504] +14:45:00 [ 41] [ 8] [06002200] +14:45:00 [ 42] [ 15] [NATIVE ] +14:45:00 [ 43] [ 40] [Beng Market Beng LAO] +14:45:00 [ 49] [ 3] [418] +14:45:00 [ 52] [ 16] [6EB8918F0BC2E700] +14:45:00 ============================================================================ +14:45:00 + + +waiting on router queue for slot.... +14:45:00 Sending to : <4> +14:45:00 ============================================================================ +14:45:00 ============================================================================ +14:45:00 Slot Id : <207> +14:45:00 Transaction Type : REQUEST +14:45:00 Received From : +14:45:00 ============================================================================ +14:45:00 FNo. Len. Field Value +14:45:00 ============================================================================ +14:45:00 [ 1] [ 4] [0200] +14:45:00 [ 2] [ 16] [1808930900010323] +14:45:00 [ 3] [ 6] [011000] +14:45:00 [ 4] [ 12] [000010000000] +14:45:00 [ 7] [ 10] [0320144455] +14:45:00 [ 11] [ 6] [774055] +14:45:00 [ 12] [ 6] [144455] +14:45:00 [ 13] [ 4] [0320] +14:45:00 [ 15] [ 4] [0320] +14:45:00 [ 18] [ 4] [6011] +14:45:00 [ 22] [ 3] [900] +14:45:00 [ 25] [ 2] [02] +14:45:00 [ 28] [ 9] [D00002000] +14:45:00 [ 32] [ 6] [621354] +14:45:00 [ 35] [ 27] [1808930900010323=1803500052] +14:45:00 [ 37] [ 12] [507902606078] +14:45:00 [ 41] [ 8] [05004300] +14:45:00 [ 42] [ 15] [NATIVE ] +14:45:00 [ 43] [ 40] [Ka deng office LuangprabangLAO] +14:45:00 [ 49] [ 3] [418] +14:45:00 [ 52] [ 16] [EF9A1D733731EDDF] +14:45:00 ============================================================================ +14:45:00 + + +waiting on router queue for slot.... +14:45:00 Sending to : +14:45:00 ============================================================================ +14:45:00 Sending to : +14:45:00 ============================================================================ +14:45:00 ============================================================================ +14:45:00 Slot Id : <207> +14:45:00 Transaction Type : REQUEST +14:45:00 Received From : +14:45:00 ============================================================================ +14:45:00 FNo. Len. Field Value +14:45:00 ============================================================================ +14:45:00 [ 1] [ 4] [0200] +14:45:00 [ 2] [ 16] [1808930900010323] +14:45:00 [ 3] [ 6] [011000] +14:45:00 [ 4] [ 12] [000010000000] +14:45:00 [ 7] [ 10] [0320144455] +14:45:00 [ 11] [ 6] [774055] +14:45:00 [ 12] [ 6] [144455] +14:45:00 [ 13] [ 4] [0320] +14:45:00 [ 15] [ 4] [0320] +14:45:00 [ 18] [ 4] [6011] +14:45:00 [ 22] [ 3] [900] +14:45:00 [ 25] [ 2] [02] +14:45:00 [ 28] [ 9] [D00002000] +14:45:00 [ 32] [ 6] [621354] +14:45:00 [ 35] [ 27] [1808930900010323=1803500052] +14:45:00 [ 37] [ 12] [507902606078] +14:45:00 [ 41] [ 8] [05004300] +14:45:00 [ 42] [ 15] [NATIVE ] +14:45:00 [ 43] [ 40] [Ka deng office LuangprabangLAO] +14:45:00 [ 49] [ 3] [418] +14:45:00 [ 52] [ 16] [EF9A1D733731EDDF] +14:45:00 ============================================================================ +14:45:00 + + +waiting on router queue for slot.... +14:45:00 Sending to : +14:45:00 ============================================================================ +14:45:00 ============================================================================ +14:45:00 Slot Id : <207> +14:45:00 Transaction Type : REQUEST +14:45:00 Received From : +14:45:00 ============================================================================ +14:45:00 FNo. Len. Field Value +14:45:00 ============================================================================ +14:45:00 [ 1] [ 4] [0200] +14:45:00 [ 2] [ 16] [1808930900010323] +14:45:00 [ 3] [ 6] [011000] +14:45:00 [ 4] [ 12] [000010000000] +14:45:00 [ 7] [ 10] [0320144455] +14:45:00 [ 11] [ 6] [774055] +14:45:00 [ 12] [ 6] [144455] +14:45:00 [ 13] [ 4] [0320] +14:45:00 [ 15] [ 4] [0320] +14:45:00 [ 18] [ 4] [6011] +14:45:00 [ 22] [ 3] [900] +14:45:00 [ 25] [ 2] [02] +14:45:00 [ 28] [ 9] [D00002000] +14:45:00 [ 32] [ 6] [621354] +14:45:00 [ 35] [ 27] [1808930900010323=1803500052] +14:45:00 [ 37] [ 12] [507902606078] +14:45:00 [ 41] [ 8] [05004300] +14:45:00 [ 42] [ 15] [NATIVE ] +14:45:00 [ 43] [ 40] [Ka deng office LuangprabangLAO] +14:45:00 [ 49] [ 3] [418] +14:45:00 [ 52] [ 16] [5AE7DDF5F5520E75] +14:45:00 ============================================================================ +14:45:00 + + +waiting on router queue for slot.... +14:45:00 Sending to : <2> +14:45:00 ============================================================================ +14:45:01 ============================================================================ +14:45:01 Slot Id : <221> +14:45:01 Transaction Type : RESPONSE +14:45:01 Received From : +14:45:01 ============================================================================ +14:45:01 FNo. Len. Field Value +14:45:01 ============================================================================ +14:45:01 [ 1] [ 4] [0210] +14:45:01 [ 2] [ 16] [6688990108430503] +14:45:01 [ 3] [ 6] [300000] +14:45:01 [ 4] [ 12] [000000000000] +14:45:01 [ 11] [ 6] [774052] +14:45:01 [ 12] [ 6] [144455] +14:45:01 [ 15] [ 4] [0320] +14:45:01 [ 18] [ 4] [6011] +14:45:01 [ 32] [ 6] [621354] +14:45:01 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:45:01 [ 37] [ 12] [507903499504] +14:45:01 [ 38] [ 6] [307249] +14:45:01 [ 39] [ 2] [00] +14:45:01 [ 41] [ 8] [06002200] +14:45:01 [ 49] [ 3] [418] +14:45:01 [ 54] [ 20] [0002418C000447807192] +14:45:01 ============================================================================ +14:45:01 Sending to : +14:45:01 ============================================================================ +14:45:01 + + +waiting on router queue for slot.... +14:45:02 ============================================================================ +14:45:02 Slot Id : <221> +14:45:02 Transaction Type : RESPONSE +14:45:02 Received From : +14:45:02 ============================================================================ +14:45:02 FNo. Len. Field Value +14:45:02 ============================================================================ +14:45:02 [ 1] [ 4] [0210] +14:45:02 [ 2] [ 16] [6688990108430503] +14:45:02 [ 3] [ 6] [300000] +14:45:02 [ 4] [ 12] [000000000000] +14:45:02 [ 11] [ 6] [774052] +14:45:02 [ 12] [ 6] [144455] +14:45:02 [ 15] [ 4] [0320] +14:45:02 [ 18] [ 4] [6011] +14:45:02 [ 32] [ 6] [621354] +14:45:02 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:45:02 [ 37] [ 12] [507903499504] +14:45:02 [ 38] [ 6] [307249] +14:45:02 [ 39] [ 2] [00] +14:45:02 [ 41] [ 8] [06002200] +14:45:02 [ 49] [ 3] [418] +14:45:02 [ 54] [ 20] [0002418C000447807192] +14:45:02 ============================================================================ +14:45:02 Calculate Source COMM Id = 0 +14:45:02 ============================================================================ +14:45:02 + + +waiting on router queue for slot.... +14:45:06 ============================================================================ +14:45:06 Slot Id : <207> +14:45:06 Transaction Type : RESPONSE +14:45:06 Received From : +14:45:06 ============================================================================ +14:45:06 FNo. Len. Field Value +14:45:06 ============================================================================ +14:45:06 [ 1] [ 4] [0210] +14:45:06 [ 2] [ 16] [1808930900010323] +14:45:06 [ 3] [ 6] [011000] +14:45:06 [ 4] [ 12] [000010000000] +14:45:06 [ 6] [ 12] [000010000000] +14:45:06 [ 7] [ 10] [0320144455] +14:45:06 [ 11] [ 6] [774055] +14:45:06 [ 12] [ 6] [144455] +14:45:06 [ 13] [ 4] [0320] +14:45:06 [ 18] [ 4] [6011] +14:45:06 [ 19] [ 3] [418] +14:45:06 [ 22] [ 3] [021] +14:45:06 [ 32] [ 6] [621354] +14:45:06 [ 35] [ 27] [1808930900010323=1803500052] +14:45:06 [ 37] [ 12] [507902606078] +14:45:06 [ 38] [ 6] [774055] +14:45:06 [ 39] [ 2] [00] +14:45:06 [ 41] [ 8] [05004300] +14:45:06 [ 49] [ 3] [418] +14:45:06 [ 52] [ 16] [5AE7DDF5F5520E75] +14:45:06 [ 54] [ 20] [1001418C000032168600] +14:45:06 ============================================================================ +14:45:06 Sending to : +14:45:06 ============================================================================ +14:45:06 + + +waiting on router queue for slot.... +14:45:07 ============================================================================ +14:45:07 Slot Id : <207> +14:45:07 Transaction Type : RESPONSE +14:45:07 Received From : +14:45:07 ============================================================================ +14:45:07 FNo. Len. Field Value +14:45:07 ============================================================================ +14:45:07 [ 1] [ 4] [0210] +14:45:07 [ 2] [ 16] [1808930900010323] +14:45:07 [ 3] [ 6] [011000] +14:45:07 [ 4] [ 12] [000010000000] +14:45:07 [ 6] [ 12] [000010000000] +14:45:07 [ 7] [ 10] [0320144455] +14:45:07 [ 11] [ 6] [774055] +14:45:07 [ 12] [ 6] [144455] +14:45:07 [ 13] [ 4] [0320] +14:45:07 [ 18] [ 4] [6011] +14:45:07 [ 19] [ 3] [418] +14:45:07 [ 22] [ 3] [021] +14:45:07 [ 32] [ 6] [621354] +14:45:07 [ 35] [ 27] [1808930900010323=1803500052] +14:45:07 [ 37] [ 12] [507902606078] +14:45:07 [ 38] [ 6] [774055] +14:45:07 [ 39] [ 2] [00] +14:45:07 [ 41] [ 8] [05004300] +14:45:07 [ 49] [ 3] [418] +14:45:07 [ 52] [ 16] [5AE7DDF5F5520E75] +14:45:07 [ 54] [ 20] [1001418C000032168600] +14:45:07 ============================================================================ +14:45:07 Calculate Source COMM Id = 0 +14:45:07 ============================================================================ +14:45:07 + + +waiting on router queue for slot.... +14:45:10 ============================================================================ +14:45:10 Slot Id : <208> +14:45:10 Transaction Type : REQUEST +14:45:10 Received From : +14:45:10 ============================================================================ +14:45:10 FNo. Len. Field Value +14:45:10 ============================================================================ +14:45:10 [ 1] [ 4] [0200] +14:45:10 [ 2] [ 16] [6688990603028703] +14:45:10 [ 3] [ 6] [013000] +14:45:10 [ 4] [ 12] [000100000000] +14:45:10 [ 7] [ 10] [0320144505] +14:45:10 [ 11] [ 6] [774097] +14:45:10 [ 12] [ 6] [144505] +14:45:10 [ 13] [ 4] [0320] +14:45:10 [ 15] [ 4] [0320] +14:45:10 [ 18] [ 4] [6011] +14:45:10 [ 22] [ 3] [900] +14:45:10 [ 25] [ 2] [02] +14:45:10 [ 28] [ 9] [D00002000] +14:45:10 [ 32] [ 6] [621354] +14:45:10 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:45:10 [ 37] [ 12] [507904731476] +14:45:10 [ 41] [ 8] [07000900] +14:45:10 [ 42] [ 15] [NATIVE ] +14:45:10 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:45:10 [ 49] [ 3] [418] +14:45:10 [ 52] [ 16] [C24EAF7387258530] +14:45:10 ============================================================================ +14:45:10 + + +waiting on router queue for slot.... +14:45:10 Sending to : +14:45:10 ============================================================================ +14:45:10 Sending to : +14:45:10 ============================================================================ +14:45:10 ============================================================================ +14:45:10 Slot Id : <208> +14:45:10 Transaction Type : REQUEST +14:45:10 Received From : +14:45:10 ============================================================================ +14:45:10 FNo. Len. Field Value +14:45:10 ============================================================================ +14:45:10 [ 1] [ 4] [0200] +14:45:10 [ 2] [ 16] [6688990603028703] +14:45:10 [ 3] [ 6] [013000] +14:45:10 [ 4] [ 12] [000100000000] +14:45:10 [ 7] [ 10] [0320144505] +14:45:10 [ 11] [ 6] [774097] +14:45:10 [ 12] [ 6] [144505] +14:45:10 [ 13] [ 4] [0320] +14:45:10 [ 15] [ 4] [0320] +14:45:10 [ 18] [ 4] [6011] +14:45:10 [ 22] [ 3] [900] +14:45:10 [ 25] [ 2] [02] +14:45:10 [ 28] [ 9] [D00002000] +14:45:10 [ 32] [ 6] [621354] +14:45:10 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:45:10 [ 37] [ 12] [507904731476] +14:45:10 [ 41] [ 8] [07000900] +14:45:10 [ 42] [ 15] [NATIVE ] +14:45:10 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:45:10 [ 49] [ 3] [418] +14:45:10 [ 52] [ 16] [C24EAF7387258530] +14:45:10 ============================================================================ +14:45:10 + + +waiting on router queue for slot.... +14:45:10 Sending to : +14:45:10 ============================================================================ +14:45:10 ============================================================================ +14:45:10 Slot Id : <208> +14:45:10 Transaction Type : REQUEST +14:45:10 Received From : +14:45:10 ============================================================================ +14:45:10 FNo. Len. Field Value +14:45:10 ============================================================================ +14:45:10 [ 1] [ 4] [0200] +14:45:10 [ 2] [ 16] [6688990603028703] +14:45:10 [ 3] [ 6] [013000] +14:45:10 [ 4] [ 12] [000100000000] +14:45:10 [ 7] [ 10] [0320144505] +14:45:10 [ 11] [ 6] [774097] +14:45:10 [ 12] [ 6] [144505] +14:45:10 [ 13] [ 4] [0320] +14:45:10 [ 15] [ 4] [0320] +14:45:10 [ 18] [ 4] [6011] +14:45:10 [ 22] [ 3] [900] +14:45:10 [ 25] [ 2] [02] +14:45:10 [ 28] [ 9] [D00002000] +14:45:10 [ 32] [ 6] [621354] +14:45:10 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:45:10 [ 37] [ 12] [507904731476] +14:45:10 [ 41] [ 8] [07000900] +14:45:10 [ 42] [ 15] [NATIVE ] +14:45:10 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:45:10 [ 49] [ 3] [418] +14:45:10 [ 52] [ 16] [8EED4002B97D240C] +14:45:10 ============================================================================ +14:45:10 + + +waiting on router queue for slot.... +14:45:10 Sending to : <4> +14:45:10 ============================================================================ +14:45:10 ============================================================================ +14:45:10 Slot Id : <183> +14:45:10 Transaction Type : REQUEST +14:45:10 Received From : +14:45:10 ============================================================================ +14:45:10 FNo. Len. Field Value +14:45:10 ============================================================================ +14:45:10 [ 1] [ 4] [0800] +14:45:10 [ 2] [ 5] [02531] +14:45:10 [ 3] [ 6] [579148] +14:45:10 [ 7] [ 10] [0320074510] +14:45:10 [ 11] [ 6] [807268] +14:45:10 [ 15] [ 10] [0320074510] +14:45:10 [ 37] [ 11] [57914807268] +14:45:10 [ 70] [ 3] [001] +14:45:10 ============================================================================ +14:45:10 + + +waiting on router queue for slot.... +14:45:10 ============================================================================ +14:45:10 Slot Id : <183> +14:45:10 Transaction Type : RESPONSE +14:45:10 Received From : +14:45:10 ============================================================================ +14:45:10 FNo. Len. Field Value +14:45:10 ============================================================================ +14:45:10 [ 1] [ 4] [0810] +14:45:10 [ 7] [ 10] [0320074510] +14:45:10 [ 11] [ 6] [807268] +14:45:10 [ 15] [ 4] [0320] +14:45:10 [ 37] [ 12] [57914807268] +14:45:10 [ 39] [ 2] [00] +14:45:10 [ 70] [ 3] [001] +14:45:10 ============================================================================ +14:45:10 Sending to : +14:45:10 ============================================================================ +14:45:10 + + +waiting on router queue for slot.... +14:45:11 ============================================================================ +14:45:11 Slot Id : <208> +14:45:11 Transaction Type : RESPONSE +14:45:11 Received From : +14:45:11 ============================================================================ +14:45:11 FNo. Len. Field Value +14:45:11 ============================================================================ +14:45:11 [ 1] [ 4] [0210] +14:45:11 [ 2] [ 16] [6688990603028703] +14:45:11 [ 3] [ 6] [013000] +14:45:11 [ 4] [ 12] [000100000000] +14:45:11 [ 11] [ 6] [774097] +14:45:11 [ 12] [ 6] [144505] +14:45:11 [ 15] [ 4] [0320] +14:45:11 [ 18] [ 4] [6011] +14:45:11 [ 32] [ 6] [621354] +14:45:11 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:45:11 [ 37] [ 12] [507904731476] +14:45:11 [ 38] [ 6] [735913] +14:45:11 [ 39] [ 2] [00] +14:45:11 [ 41] [ 8] [07000900] +14:45:11 [ 49] [ 3] [418] +14:45:11 [ 54] [ 20] [3002418C000141746549] +14:45:11 ============================================================================ +14:45:11 Sending to : +14:45:11 ============================================================================ +14:45:11 + + +waiting on router queue for slot.... +14:45:13 ============================================================================ +14:45:13 Slot Id : <208> +14:45:13 Transaction Type : RESPONSE +14:45:13 Received From : +14:45:13 ============================================================================ +14:45:13 FNo. Len. Field Value +14:45:13 ============================================================================ +14:45:13 [ 1] [ 4] [0210] +14:45:13 [ 2] [ 16] [6688990603028703] +14:45:13 [ 3] [ 6] [013000] +14:45:13 [ 4] [ 12] [000100000000] +14:45:13 [ 11] [ 6] [774097] +14:45:13 [ 12] [ 6] [144505] +14:45:13 [ 15] [ 4] [0320] +14:45:13 [ 18] [ 4] [6011] +14:45:13 [ 32] [ 6] [621354] +14:45:13 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:45:13 [ 37] [ 12] [507904731476] +14:45:13 [ 38] [ 6] [735913] +14:45:13 [ 39] [ 2] [00] +14:45:13 [ 41] [ 8] [07000900] +14:45:13 [ 49] [ 3] [418] +14:45:13 [ 54] [ 20] [3002418C000141746549] +14:45:13 ============================================================================ +14:45:13 Calculate Source COMM Id = 0 +14:45:13 ============================================================================ +14:45:13 + + +waiting on router queue for slot.... +14:45:13 ============================================================================ +14:45:13 Slot Id : <230> +14:45:13 Transaction Type : REQUEST +14:45:13 Received From : +14:45:13 ============================================================================ +14:45:13 FNo. Len. Field Value +14:45:13 ============================================================================ +14:45:13 [ 1] [ 4] [0800] +14:45:13 [ 7] [ 10] [0320074421] +14:45:13 [ 11] [ 6] [156846] +14:45:13 [ 70] [ 3] [301] +14:45:13 ============================================================================ +14:45:13 + + +waiting on router queue for slot.... +14:45:13 Sending to : +14:45:13 ============================================================================ +14:45:13 ============================================================================ +14:45:13 Slot Id : <230> +14:45:13 Transaction Type : RESPONSE +14:45:13 Received From : +14:45:13 ============================================================================ +14:45:13 FNo. Len. Field Value +14:45:13 ============================================================================ +14:45:13 [ 1] [ 4] [0810] +14:45:13 [ 7] [ 10] [0320074421] +14:45:13 [ 11] [ 6] [156846] +14:45:13 [ 39] [ 2] [00] +14:45:13 [ 70] [ 3] [301] +14:45:13 ============================================================================ +14:45:13 Calculate Source COMM Id = 2 +14:45:13 ============================================================================ +14:45:13 + + +waiting on router queue for slot.... +14:45:16 ============================================================================ +14:45:16 Slot Id : <211> +14:45:16 Transaction Type : REQUEST +14:45:16 Received From : +14:45:16 ============================================================================ +14:45:16 FNo. Len. Field Value +14:45:16 ============================================================================ +14:45:16 [ 1] [ 4] [0200] +14:45:16 [ 2] [ 16] [6688990108514306] +14:45:16 [ 3] [ 6] [010000] +14:45:16 [ 4] [ 12] [000100000000] +14:45:16 [ 7] [ 10] [0320074423] +14:45:16 [ 11] [ 6] [269793] +14:45:16 [ 12] [ 6] [144423] +14:45:16 [ 13] [ 4] [0320] +14:45:16 [ 14] [ 4] [4406] +14:45:16 [ 15] [ 4] [0320] +14:45:16 [ 18] [ 4] [6011] +14:45:16 [ 19] [ 3] [418] +14:45:16 [ 22] [ 3] [021] +14:45:16 [ 25] [ 2] [01] +14:45:16 [ 28] [ 9] [D00002000] +14:45:16 [ 32] [ 6] [180893] +14:45:16 [ 35] [ 37] [6688990108514306=44061231430687100000] +14:45:16 [ 37] [ 12] [507907269793] +14:45:16 [ 41] [ 8] [0201ADD1] +14:45:16 [ 42] [ 15] [999999 ] +14:45:16 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:45:16 [ 49] [ 3] [418] +14:45:16 [ 52] [ 16] [8BB944AF649BAE0E] +14:45:16 ============================================================================ +14:45:16 + + +waiting on router queue for slot.... +14:45:16 Sending to : +14:45:16 ============================================================================ +14:45:16 Sending to : +14:45:16 ============================================================================ +14:45:16 ============================================================================ +14:45:16 Slot Id : <211> +14:45:16 Transaction Type : REQUEST +14:45:16 Received From : +14:45:16 ============================================================================ +14:45:16 FNo. Len. Field Value +14:45:16 ============================================================================ +14:45:16 [ 1] [ 4] [0200] +14:45:16 [ 2] [ 16] [6688990108514306] +14:45:16 [ 3] [ 6] [010000] +14:45:16 [ 4] [ 12] [000100000000] +14:45:16 [ 7] [ 10] [0320074423] +14:45:16 [ 11] [ 6] [269793] +14:45:16 [ 12] [ 6] [144423] +14:45:16 [ 13] [ 4] [0320] +14:45:16 [ 14] [ 4] [4406] +14:45:16 [ 15] [ 4] [0320] +14:45:16 [ 18] [ 4] [6011] +14:45:16 [ 19] [ 3] [418] +14:45:16 [ 22] [ 3] [021] +14:45:16 [ 25] [ 2] [01] +14:45:16 [ 28] [ 9] [D00002000] +14:45:16 [ 32] [ 6] [180893] +14:45:16 [ 35] [ 37] [6688990108514306=44061231430687100000] +14:45:16 [ 37] [ 12] [507907269793] +14:45:16 [ 41] [ 8] [0201ADD1] +14:45:16 [ 42] [ 15] [999999 ] +14:45:16 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:45:16 [ 49] [ 3] [418] +14:45:16 [ 52] [ 16] [8BB944AF649BAE0E] +14:45:16 ============================================================================ +14:45:16 + + +waiting on router queue for slot.... +14:45:16 Sending to : +14:45:16 ============================================================================ +14:45:16 ============================================================================ +14:45:16 Slot Id : <211> +14:45:16 Transaction Type : REQUEST +14:45:16 Received From : +14:45:16 ============================================================================ +14:45:16 FNo. Len. Field Value +14:45:16 ============================================================================ +14:45:16 [ 1] [ 4] [0200] +14:45:16 [ 2] [ 16] [6688990108514306] +14:45:16 [ 3] [ 6] [010000] +14:45:16 [ 4] [ 12] [000100000000] +14:45:16 [ 7] [ 10] [0320074423] +14:45:16 [ 11] [ 6] [269793] +14:45:16 [ 12] [ 6] [144423] +14:45:16 [ 13] [ 4] [0320] +14:45:16 [ 14] [ 4] [4406] +14:45:16 [ 15] [ 4] [0320] +14:45:16 [ 18] [ 4] [6011] +14:45:16 [ 19] [ 3] [418] +14:45:16 [ 22] [ 3] [021] +14:45:16 [ 25] [ 2] [01] +14:45:16 [ 28] [ 9] [D00002000] +14:45:16 [ 32] [ 6] [180893] +14:45:16 [ 35] [ 37] [6688990108514306=44061231430687100000] +14:45:16 [ 37] [ 12] [507907269793] +14:45:16 [ 41] [ 8] [0201ADD1] +14:45:16 [ 42] [ 15] [999999 ] +14:45:16 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +14:45:16 [ 49] [ 3] [418] +14:45:16 [ 52] [ 16] [4DE860F5B0AA529B] +14:45:16 ============================================================================ +14:45:16 + + +waiting on router queue for slot.... +14:45:16 Sending to : <0> +14:45:16 ============================================================================ +14:45:16 ============================================================================ +14:45:16 Slot Id : <211> +14:45:16 Transaction Type : RESPONSE +14:45:16 Received From : +14:45:16 ============================================================================ +14:45:16 FNo. Len. Field Value +14:45:16 ============================================================================ +14:45:16 [ 1] [ 4] [0210] +14:45:16 [ 2] [ 16] [6688990108514306] +14:45:16 [ 3] [ 6] [010000] +14:45:16 [ 4] [ 12] [000100000000] +14:45:16 [ 7] [ 10] [0320074423] +14:45:16 [ 11] [ 6] [269793] +14:45:16 [ 12] [ 6] [144423] +14:45:16 [ 13] [ 4] [0320] +14:45:16 [ 15] [ 4] [0320] +14:45:16 [ 18] [ 4] [6011] +14:45:16 [ 19] [ 3] [418] +14:45:16 [ 22] [ 3] [021] +14:45:16 [ 32] [ 6] [180893] +14:45:16 [ 35] [ 37] [6688990108514306=44061231430687100000] +14:45:16 [ 37] [ 12] [507907269793] +14:45:16 [ 39] [ 2] [14] +14:45:16 [ 41] [ 8] [0201ADD1] +14:45:16 [ 49] [ 3] [418] +14:45:16 ============================================================================ +14:45:16 Sending to : +14:45:16 ============================================================================ +14:45:16 + + +waiting on router queue for slot.... +14:45:17 ============================================================================ +14:45:17 Slot Id : <211> +14:45:17 Transaction Type : RESPONSE +14:45:17 Received From : +14:45:17 ============================================================================ +14:45:17 FNo. Len. Field Value +14:45:17 ============================================================================ +14:45:17 [ 1] [ 4] [0210] +14:45:17 [ 2] [ 16] [6688990108514306] +14:45:17 [ 3] [ 6] [010000] +14:45:17 [ 4] [ 12] [000100000000] +14:45:17 [ 7] [ 10] [0320074423] +14:45:17 [ 11] [ 6] [269793] +14:45:17 [ 12] [ 6] [144423] +14:45:17 [ 13] [ 4] [0320] +14:45:17 [ 15] [ 4] [0320] +14:45:17 [ 18] [ 4] [6011] +14:45:17 [ 19] [ 3] [418] +14:45:17 [ 22] [ 3] [021] +14:45:17 [ 32] [ 6] [180893] +14:45:17 [ 35] [ 37] [6688990108514306=44061231430687100000] +14:45:17 [ 37] [ 12] [507907269793] +14:45:17 [ 39] [ 2] [14] +14:45:17 [ 41] [ 8] [0201ADD1] +14:45:17 [ 49] [ 3] [418] +14:45:17 ============================================================================ +14:45:17 Calculate Source COMM Id = 2 +14:45:17 ============================================================================ +14:45:17 + + +waiting on router queue for slot.... +14:45:21 ============================================================================ +14:45:21 Slot Id : <169> +14:45:21 Transaction Type : REQUEST +14:45:21 Received From : +14:45:21 ============================================================================ +14:45:21 FNo. Len. Field Value +14:45:21 ============================================================================ +14:45:21 [ 1] [ 4] [0200] +14:45:21 [ 2] [ 16] [6213545000933931] +14:45:21 [ 3] [ 6] [010000] +14:45:21 [ 4] [ 12] [000050000000] +14:45:21 [ 7] [ 10] [0320144311] +14:45:21 [ 11] [ 6] [948946] +14:45:21 [ 12] [ 6] [144311] +14:45:21 [ 13] [ 4] [0320] +14:45:21 [ 15] [ 4] [0320] +14:45:21 [ 18] [ 4] [6011] +14:45:21 [ 19] [ 3] [418] +14:45:21 [ 22] [ 3] [021] +14:45:21 [ 25] [ 2] [01] +14:45:21 [ 28] [ 9] [D00002000] +14:45:21 [ 32] [ 6] [668899] +14:45:21 [ 35] [ 32] [6213545000933931=491212013393261] +14:45:21 [ 37] [ 12] [507900858401] +14:45:21 [ 41] [ 8] [03015004] +14:45:21 [ 42] [ 15] [APT ] +14:45:21 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +14:45:21 [ 49] [ 3] [418] +14:45:21 [ 52] [ 16] [21F4347987F1C1ED] +14:45:21 ============================================================================ +14:45:21 + + +waiting on router queue for slot.... +14:45:21 Sending to : +14:45:21 ============================================================================ +14:45:21 Sending to : +14:45:21 ============================================================================ +14:45:21 ============================================================================ +14:45:21 Slot Id : <169> +14:45:21 Transaction Type : REQUEST +14:45:21 Received From : +14:45:21 ============================================================================ +14:45:21 FNo. Len. Field Value +14:45:21 ============================================================================ +14:45:21 [ 1] [ 4] [0200] +14:45:21 [ 2] [ 16] [6213545000933931] +14:45:21 [ 3] [ 6] [010000] +14:45:21 [ 4] [ 12] [000050000000] +14:45:21 [ 7] [ 10] [0320144311] +14:45:21 [ 11] [ 6] [948946] +14:45:21 [ 12] [ 6] [144311] +14:45:21 [ 13] [ 4] [0320] +14:45:21 [ 15] [ 4] [0320] +14:45:21 [ 18] [ 4] [6011] +14:45:21 [ 19] [ 3] [418] +14:45:21 [ 22] [ 3] [021] +14:45:21 [ 25] [ 2] [01] +14:45:21 [ 28] [ 9] [D00002000] +14:45:21 [ 32] [ 6] [668899] +14:45:21 [ 35] [ 32] [6213545000933931=491212013393261] +14:45:21 [ 37] [ 12] [507900858401] +14:45:21 [ 41] [ 8] [03015004] +14:45:21 [ 42] [ 15] [APT ] +14:45:21 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +14:45:21 [ 49] [ 3] [418] +14:45:21 [ 52] [ 16] [21F4347987F1C1ED] +14:45:21 ============================================================================ +14:45:21 + + +waiting on router queue for slot.... +14:45:21 Sending to : +14:45:21 ============================================================================ +14:45:21 ============================================================================ +14:45:21 Slot Id : <169> +14:45:21 Transaction Type : REQUEST +14:45:21 Received From : +14:45:21 ============================================================================ +14:45:21 FNo. Len. Field Value +14:45:21 ============================================================================ +14:45:21 [ 1] [ 4] [0200] +14:45:21 [ 2] [ 16] [6213545000933931] +14:45:21 [ 3] [ 6] [010000] +14:45:21 [ 4] [ 12] [000050000000] +14:45:21 [ 7] [ 10] [0320144311] +14:45:21 [ 11] [ 6] [948946] +14:45:21 [ 12] [ 6] [144311] +14:45:21 [ 13] [ 4] [0320] +14:45:21 [ 15] [ 4] [0320] +14:45:21 [ 18] [ 4] [6011] +14:45:21 [ 19] [ 3] [418] +14:45:21 [ 22] [ 3] [021] +14:45:21 [ 25] [ 2] [01] +14:45:21 [ 28] [ 9] [D00002000] +14:45:21 [ 32] [ 6] [668899] +14:45:21 [ 35] [ 32] [6213545000933931=491212013393261] +14:45:21 [ 37] [ 12] [507900858401] +14:45:21 [ 41] [ 8] [03015004] +14:45:21 [ 42] [ 15] [APT ] +14:45:21 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +14:45:21 [ 49] [ 3] [418] +14:45:21 [ 52] [ 16] [84EEEFA358244140] +14:45:21 ============================================================================ +14:45:21 + + +waiting on router queue for slot.... +14:45:21 Sending to : <0> +14:45:21 ============================================================================ +14:45:22 ============================================================================ +14:45:22 Slot Id : <169> +14:45:22 Transaction Type : RESPONSE +14:45:22 Received From : +14:45:22 ============================================================================ +14:45:22 FNo. Len. Field Value +14:45:22 ============================================================================ +14:45:22 [ 1] [ 4] [0210] +14:45:22 [ 2] [ 16] [6213545000933931] +14:45:22 [ 3] [ 6] [010000] +14:45:22 [ 4] [ 12] [000050000000] +14:45:22 [ 7] [ 10] [0320144311] +14:45:22 [ 11] [ 6] [948946] +14:45:22 [ 12] [ 6] [144311] +14:45:22 [ 13] [ 4] [0320] +14:45:22 [ 15] [ 4] [0320] +14:45:22 [ 18] [ 4] [6011] +14:45:22 [ 19] [ 3] [418] +14:45:22 [ 32] [ 6] [668899] +14:45:22 [ 35] [ 32] [6213545000933931=491212013393261] +14:45:22 [ 37] [ 12] [507900858401] +14:45:22 [ 38] [ 6] [891757] +14:45:22 [ 39] [ 2] [00] +14:45:22 [ 41] [ 8] [03015004] +14:45:22 [ 49] [ 3] [418] +14:45:22 [ 54] [ 40] [0001418C0001330807010002418C000133080701] +14:45:22 ============================================================================ +14:45:22 Sending to : +14:45:22 ============================================================================ +14:45:22 + + +waiting on router queue for slot.... +14:45:23 ============================================================================ +14:45:23 Slot Id : <169> +14:45:23 Transaction Type : RESPONSE +14:45:23 Received From : +14:45:23 ============================================================================ +14:45:23 FNo. Len. Field Value +14:45:23 ============================================================================ +14:45:23 [ 1] [ 4] [0210] +14:45:23 [ 2] [ 16] [6213545000933931] +14:45:23 [ 3] [ 6] [010000] +14:45:23 [ 4] [ 12] [000050000000] +14:45:23 [ 7] [ 10] [0320144311] +14:45:23 [ 11] [ 6] [948946] +14:45:23 [ 12] [ 6] [144311] +14:45:23 [ 13] [ 4] [0320] +14:45:23 [ 15] [ 4] [0320] +14:45:23 [ 18] [ 4] [6011] +14:45:23 [ 19] [ 3] [418] +14:45:23 [ 32] [ 6] [668899] +14:45:23 [ 35] [ 32] [6213545000933931=491212013393261] +14:45:23 [ 37] [ 12] [507900858401] +14:45:23 [ 38] [ 6] [891757] +14:45:23 [ 39] [ 2] [00] +14:45:23 [ 41] [ 8] [03015004] +14:45:23 [ 49] [ 3] [418] +14:45:23 [ 54] [ 40] [0001418C0001330807010002418C000133080701] +14:45:23 ============================================================================ +14:45:23 Calculate Source COMM Id = 4 +14:45:23 ============================================================================ +14:45:23 + + +waiting on router queue for slot.... +14:45:30 ============================================================================ +14:45:30 Slot Id : <205> +14:45:30 Transaction Type : REQUEST +14:45:30 Received From : +14:45:30 ============================================================================ +14:45:30 FNo. Len. Field Value +14:45:30 ============================================================================ +14:45:30 [ 1] [ 4] [0800] +14:45:30 [ 7] [ 10] [0320074437] +14:45:30 [ 11] [ 6] [156847] +14:45:30 [ 70] [ 3] [301] +14:45:30 ============================================================================ +14:45:30 + + +waiting on router queue for slot.... +14:45:30 Sending to : +14:45:30 ============================================================================ +14:45:30 ============================================================================ +14:45:30 Slot Id : <205> +14:45:30 Transaction Type : RESPONSE +14:45:30 Received From : +14:45:30 ============================================================================ +14:45:30 FNo. Len. Field Value +14:45:30 ============================================================================ +14:45:30 [ 1] [ 4] [0810] +14:45:30 [ 7] [ 10] [0320074437] +14:45:30 [ 11] [ 6] [156847] +14:45:30 [ 39] [ 2] [00] +14:45:30 [ 70] [ 3] [301] +14:45:30 ============================================================================ +14:45:30 Calculate Source COMM Id = 2 +14:45:30 ============================================================================ +14:45:30 + + +waiting on router queue for slot.... +14:45:41 ============================================================================ +14:45:41 Slot Id : <185> +14:45:41 Transaction Type : REQUEST +14:45:41 Received From : +14:45:41 ============================================================================ +14:45:41 FNo. Len. Field Value +14:45:41 ============================================================================ +14:45:41 [ 1] [ 4] [0800] +14:45:41 [ 7] [ 10] [0320074448] +14:45:41 [ 11] [ 6] [156848] +14:45:41 [ 70] [ 3] [301] +14:45:41 ============================================================================ +14:45:41 + + +waiting on router queue for slot.... +14:45:41 Sending to : +14:45:41 ============================================================================ +14:45:41 ============================================================================ +14:45:41 Slot Id : <185> +14:45:41 Transaction Type : RESPONSE +14:45:41 Received From : +14:45:41 ============================================================================ +14:45:41 FNo. Len. Field Value +14:45:41 ============================================================================ +14:45:41 [ 1] [ 4] [0810] +14:45:41 [ 7] [ 10] [0320074448] +14:45:41 [ 11] [ 6] [156848] +14:45:41 [ 39] [ 2] [00] +14:45:41 [ 70] [ 3] [301] +14:45:41 ============================================================================ +14:45:41 Calculate Source COMM Id = 2 +14:45:41 ============================================================================ +14:45:41 + + +waiting on router queue for slot.... +14:45:48 ============================================================================ +14:45:48 Slot Id : <189> +14:45:48 Transaction Type : REQUEST +14:45:48 Received From : +14:45:48 ============================================================================ +14:45:48 FNo. Len. Field Value +14:45:48 ============================================================================ +14:45:48 [ 1] [ 4] [0200] +14:45:48 [ 2] [ 16] [6213548000169951] +14:45:48 [ 3] [ 6] [010000] +14:45:48 [ 4] [ 12] [000020000000] +14:45:48 [ 7] [ 10] [0320144339] +14:45:48 [ 11] [ 6] [948963] +14:45:48 [ 12] [ 6] [144339] +14:45:48 [ 13] [ 4] [0320] +14:45:48 [ 15] [ 4] [0320] +14:45:48 [ 18] [ 4] [6011] +14:45:48 [ 19] [ 3] [418] +14:45:48 [ 22] [ 3] [021] +14:45:48 [ 25] [ 2] [01] +14:45:48 [ 28] [ 9] [D00002000] +14:45:48 [ 32] [ 6] [668899] +14:45:48 [ 35] [ 32] [6213548000169951=131212016995296] +14:45:48 [ 37] [ 12] [507901203926] +14:45:48 [ 41] [ 8] [03020012] +14:45:48 [ 42] [ 15] [APT ] +14:45:48 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +14:45:48 [ 49] [ 3] [418] +14:45:48 [ 52] [ 16] [A78AC52358E52FA2] +14:45:48 ============================================================================ +14:45:48 + + +waiting on router queue for slot.... +14:45:48 Sending to : +14:45:48 ============================================================================ +14:45:48 Sending to : +14:45:48 ============================================================================ +14:45:49 ============================================================================ +14:45:49 Slot Id : <149> +14:45:49 Transaction Type : REQUEST +14:45:49 Received From : +14:45:49 ============================================================================ +14:45:49 FNo. Len. Field Value +14:45:49 ============================================================================ +14:45:49 [ 1] [ 4] [0200] +14:45:49 [ 2] [ 16] [6688990040135517] +14:45:49 [ 3] [ 6] [010000] +14:45:49 [ 4] [ 12] [000100000000] +14:45:49 [ 7] [ 10] [0320144544] +14:45:49 [ 11] [ 6] [774235] +14:45:49 [ 12] [ 6] [144544] +14:45:49 [ 13] [ 4] [0320] +14:45:49 [ 15] [ 4] [0320] +14:45:49 [ 18] [ 4] [6011] +14:45:49 [ 22] [ 3] [900] +14:45:49 [ 25] [ 2] [02] +14:45:49 [ 28] [ 9] [D00002000] +14:45:49 [ 32] [ 6] [621354] +14:45:49 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:45:49 [ 37] [ 12] [507904719685] +14:45:49 [ 41] [ 8] [18001000] +14:45:49 [ 42] [ 15] [NATIVE ] +14:45:49 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:45:49 [ 49] [ 3] [418] +14:45:49 [ 52] [ 16] [B2AA00523B1FF68E] +14:45:49 ============================================================================ +14:45:49 + + +waiting on router queue for slot.... +14:45:49 Sending to : +14:45:49 ============================================================================ +14:45:49 Sending to : +14:45:49 ============================================================================ +14:45:49 ============================================================================ +14:45:49 Slot Id : <189> +14:45:49 Transaction Type : REQUEST +14:45:49 Received From : +14:45:49 ============================================================================ +14:45:49 FNo. Len. Field Value +14:45:49 ============================================================================ +14:45:49 [ 1] [ 4] [0200] +14:45:49 [ 2] [ 16] [6213548000169951] +14:45:49 [ 3] [ 6] [010000] +14:45:49 [ 4] [ 12] [000020000000] +14:45:49 [ 7] [ 10] [0320144339] +14:45:49 [ 11] [ 6] [948963] +14:45:49 [ 12] [ 6] [144339] +14:45:49 [ 13] [ 4] [0320] +14:45:49 [ 15] [ 4] [0320] +14:45:49 [ 18] [ 4] [6011] +14:45:49 [ 19] [ 3] [418] +14:45:49 [ 22] [ 3] [021] +14:45:49 [ 25] [ 2] [01] +14:45:49 [ 28] [ 9] [D00002000] +14:45:49 [ 32] [ 6] [668899] +14:45:49 [ 35] [ 32] [6213548000169951=131212016995296] +14:45:49 [ 37] [ 12] [507901203926] +14:45:49 [ 41] [ 8] [03020012] +14:45:49 [ 42] [ 15] [APT ] +14:45:49 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +14:45:49 [ 49] [ 3] [418] +14:45:49 [ 52] [ 16] [A78AC52358E52FA2] +14:45:49 ============================================================================ +14:45:49 + + +waiting on router queue for slot.... +14:45:49 Sending to : +14:45:49 ============================================================================ +14:45:49 ============================================================================ +14:45:49 Slot Id : <189> +14:45:49 Transaction Type : REQUEST +14:45:49 Received From : +14:45:49 ============================================================================ +14:45:49 FNo. Len. Field Value +14:45:49 ============================================================================ +14:45:49 [ 1] [ 4] [0200] +14:45:49 [ 2] [ 16] [6213548000169951] +14:45:49 [ 3] [ 6] [010000] +14:45:49 [ 4] [ 12] [000020000000] +14:45:49 [ 7] [ 10] [0320144339] +14:45:49 [ 11] [ 6] [948963] +14:45:49 [ 12] [ 6] [144339] +14:45:49 [ 13] [ 4] [0320] +14:45:49 [ 15] [ 4] [0320] +14:45:49 [ 18] [ 4] [6011] +14:45:49 [ 19] [ 3] [418] +14:45:49 [ 22] [ 3] [021] +14:45:49 [ 25] [ 2] [01] +14:45:49 [ 28] [ 9] [D00002000] +14:45:49 [ 32] [ 6] [668899] +14:45:49 [ 35] [ 32] [6213548000169951=131212016995296] +14:45:49 [ 37] [ 12] [507901203926] +14:45:49 [ 41] [ 8] [03020012] +14:45:49 [ 42] [ 15] [APT ] +14:45:49 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +14:45:49 [ 49] [ 3] [418] +14:45:49 [ 52] [ 16] [50C78115B68352FB] +14:45:49 ============================================================================ +14:45:49 + + +waiting on router queue for slot.... +14:45:49 Sending to : <0> +14:45:49 ============================================================================ +14:45:49 ============================================================================ +14:45:49 Slot Id : <149> +14:45:49 Transaction Type : REQUEST +14:45:49 Received From : +14:45:49 ============================================================================ +14:45:49 FNo. Len. Field Value +14:45:49 ============================================================================ +14:45:49 [ 1] [ 4] [0200] +14:45:49 [ 2] [ 16] [6688990040135517] +14:45:49 [ 3] [ 6] [010000] +14:45:49 [ 4] [ 12] [000100000000] +14:45:49 [ 7] [ 10] [0320144544] +14:45:49 [ 11] [ 6] [774235] +14:45:49 [ 12] [ 6] [144544] +14:45:49 [ 13] [ 4] [0320] +14:45:49 [ 15] [ 4] [0320] +14:45:49 [ 18] [ 4] [6011] +14:45:49 [ 22] [ 3] [900] +14:45:49 [ 25] [ 2] [02] +14:45:49 [ 28] [ 9] [D00002000] +14:45:49 [ 32] [ 6] [621354] +14:45:49 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:45:49 [ 37] [ 12] [507904719685] +14:45:49 [ 41] [ 8] [18001000] +14:45:49 [ 42] [ 15] [NATIVE ] +14:45:49 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:45:49 [ 49] [ 3] [418] +14:45:49 [ 52] [ 16] [B2AA00523B1FF68E] +14:45:49 ============================================================================ +14:45:49 + + +waiting on router queue for slot.... +14:45:49 Sending to : +14:45:49 ============================================================================ +14:45:49 ============================================================================ +14:45:49 Slot Id : <149> +14:45:49 Transaction Type : REQUEST +14:45:49 Received From : +14:45:49 ============================================================================ +14:45:49 FNo. Len. Field Value +14:45:49 ============================================================================ +14:45:49 [ 1] [ 4] [0200] +14:45:49 [ 2] [ 16] [6688990040135517] +14:45:49 [ 3] [ 6] [010000] +14:45:49 [ 4] [ 12] [000100000000] +14:45:49 [ 7] [ 10] [0320144544] +14:45:49 [ 11] [ 6] [774235] +14:45:49 [ 12] [ 6] [144544] +14:45:49 [ 13] [ 4] [0320] +14:45:49 [ 15] [ 4] [0320] +14:45:49 [ 18] [ 4] [6011] +14:45:49 [ 22] [ 3] [900] +14:45:49 [ 25] [ 2] [02] +14:45:49 [ 28] [ 9] [D00002000] +14:45:49 [ 32] [ 6] [621354] +14:45:49 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:45:49 [ 37] [ 12] [507904719685] +14:45:49 [ 41] [ 8] [18001000] +14:45:49 [ 42] [ 15] [NATIVE ] +14:45:49 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:45:49 [ 49] [ 3] [418] +14:45:49 [ 52] [ 16] [E4292B036CF5E720] +14:45:49 ============================================================================ +14:45:49 + + +waiting on router queue for slot.... +14:45:49 Sending to : <4> +14:45:49 ============================================================================ +14:45:50 ============================================================================ +14:45:50 Slot Id : <189> +14:45:50 Transaction Type : RESPONSE +14:45:50 Received From : +14:45:50 ============================================================================ +14:45:50 FNo. Len. Field Value +14:45:50 ============================================================================ +14:45:50 [ 1] [ 4] [0210] +14:45:50 [ 2] [ 16] [6213548000169951] +14:45:50 [ 3] [ 6] [010000] +14:45:50 [ 4] [ 12] [000020000000] +14:45:50 [ 7] [ 10] [0320144339] +14:45:50 [ 11] [ 6] [948963] +14:45:50 [ 12] [ 6] [144339] +14:45:50 [ 13] [ 4] [0320] +14:45:50 [ 15] [ 4] [0320] +14:45:50 [ 18] [ 4] [6011] +14:45:50 [ 19] [ 3] [418] +14:45:50 [ 32] [ 6] [668899] +14:45:50 [ 35] [ 32] [6213548000169951=131212016995296] +14:45:50 [ 37] [ 12] [507901203926] +14:45:50 [ 38] [ 6] [682648] +14:45:50 [ 39] [ 2] [00] +14:45:50 [ 41] [ 8] [03020012] +14:45:50 [ 49] [ 3] [418] +14:45:50 [ 54] [ 40] [0001418C0000856204060002418C000085620406] +14:45:50 ============================================================================ +14:45:50 Sending to : +14:45:50 ============================================================================ +14:45:50 + + +waiting on router queue for slot.... +14:45:50 ============================================================================ +14:45:50 Slot Id : <149> +14:45:50 Transaction Type : RESPONSE +14:45:50 Received From : +14:45:50 ============================================================================ +14:45:50 FNo. Len. Field Value +14:45:50 ============================================================================ +14:45:50 [ 1] [ 4] [0210] +14:45:50 [ 2] [ 16] [6688990040135517] +14:45:50 [ 3] [ 6] [010000] +14:45:50 [ 4] [ 12] [000100000000] +14:45:50 [ 11] [ 6] [774235] +14:45:50 [ 12] [ 6] [144544] +14:45:50 [ 15] [ 4] [0320] +14:45:50 [ 18] [ 4] [6011] +14:45:50 [ 32] [ 6] [621354] +14:45:50 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:45:50 [ 37] [ 12] [507904719685] +14:45:50 [ 38] [ 6] [809117] +14:45:50 [ 39] [ 2] [00] +14:45:50 [ 41] [ 8] [18001000] +14:45:50 [ 49] [ 3] [418] +14:45:50 [ 54] [ 20] [0002418C000075188817] +14:45:50 ============================================================================ +14:45:50 Sending to : +14:45:50 ============================================================================ +14:45:50 + + +waiting on router queue for slot.... +14:45:51 ============================================================================ +14:45:51 Slot Id : <189> +14:45:51 Transaction Type : RESPONSE +14:45:51 Received From : +14:45:51 ============================================================================ +14:45:51 FNo. Len. Field Value +14:45:51 ============================================================================ +14:45:51 [ 1] [ 4] [0210] +14:45:51 [ 2] [ 16] [6213548000169951] +14:45:51 [ 3] [ 6] [010000] +14:45:51 [ 4] [ 12] [000020000000] +14:45:51 [ 7] [ 10] [0320144339] +14:45:51 [ 11] [ 6] [948963] +14:45:51 [ 12] [ 6] [144339] +14:45:51 [ 13] [ 4] [0320] +14:45:51 [ 15] [ 4] [0320] +14:45:51 [ 18] [ 4] [6011] +14:45:51 [ 19] [ 3] [418] +14:45:51 [ 32] [ 6] [668899] +14:45:51 [ 35] [ 32] [6213548000169951=131212016995296] +14:45:51 [ 37] [ 12] [507901203926] +14:45:51 [ 38] [ 6] [682648] +14:45:51 [ 39] [ 2] [00] +14:45:51 [ 41] [ 8] [03020012] +14:45:51 [ 49] [ 3] [418] +14:45:51 [ 54] [ 40] [0001418C0000856204060002418C000085620406] +14:45:51 ============================================================================ +14:45:51 Calculate Source COMM Id = 4 +14:45:51 ============================================================================ +14:45:51 + + +waiting on router queue for slot.... +14:45:53 ============================================================================ +14:45:53 Slot Id : <232> +14:45:53 Transaction Type : REQUEST +14:45:53 Received From : +14:45:53 ============================================================================ +14:45:53 FNo. Len. Field Value +14:45:53 ============================================================================ +14:45:53 [ 1] [ 4] [0800] +14:45:53 [ 7] [ 10] [0320074500] +14:45:53 [ 11] [ 6] [156849] +14:45:53 [ 70] [ 3] [301] +14:45:53 ============================================================================ +14:45:53 + + +waiting on router queue for slot.... +14:45:53 Sending to : +14:45:53 ============================================================================ +14:45:53 ============================================================================ +14:45:53 Slot Id : <232> +14:45:53 Transaction Type : RESPONSE +14:45:53 Received From : +14:45:53 ============================================================================ +14:45:53 FNo. Len. Field Value +14:45:53 ============================================================================ +14:45:53 [ 1] [ 4] [0810] +14:45:53 [ 7] [ 10] [0320074500] +14:45:53 [ 11] [ 6] [156849] +14:45:53 [ 39] [ 2] [00] +14:45:53 [ 70] [ 3] [301] +14:45:53 ============================================================================ +14:45:53 Calculate Source COMM Id = 2 +14:45:53 ============================================================================ +14:45:53 + + +waiting on router queue for slot.... +14:45:53 ============================================================================ +14:45:53 Slot Id : <149> +14:45:53 Transaction Type : RESPONSE +14:45:53 Received From : +14:45:53 ============================================================================ +14:45:53 FNo. Len. Field Value +14:45:53 ============================================================================ +14:45:53 [ 1] [ 4] [0210] +14:45:53 [ 2] [ 16] [6688990040135517] +14:45:53 [ 3] [ 6] [010000] +14:45:53 [ 4] [ 12] [000100000000] +14:45:53 [ 11] [ 6] [774235] +14:45:53 [ 12] [ 6] [144544] +14:45:53 [ 15] [ 4] [0320] +14:45:53 [ 18] [ 4] [6011] +14:45:53 [ 32] [ 6] [621354] +14:45:53 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:45:53 [ 37] [ 12] [507904719685] +14:45:53 [ 38] [ 6] [809117] +14:45:53 [ 39] [ 2] [00] +14:45:53 [ 41] [ 8] [18001000] +14:45:53 [ 49] [ 3] [418] +14:45:53 [ 54] [ 20] [0002418C000075188817] +14:45:53 ============================================================================ +14:45:53 Calculate Source COMM Id = 0 +14:45:53 ============================================================================ +14:45:53 + + +waiting on router queue for slot.... +14:45:53 ============================================================================ +14:45:53 Slot Id : <168> +14:45:53 Transaction Type : REQUEST +14:45:53 Received From : +14:45:53 ============================================================================ +14:45:53 FNo. Len. Field Value +14:45:53 ============================================================================ +14:45:53 [ 1] [ 4] [0200] +14:45:53 [ 2] [ 16] [6213544001759411] +14:45:53 [ 3] [ 6] [010000] +14:45:53 [ 4] [ 12] [000100000000] +14:45:53 [ 7] [ 10] [0320074459] +14:45:53 [ 11] [ 6] [269796] +14:45:53 [ 12] [ 6] [144459] +14:45:53 [ 13] [ 4] [0320] +14:45:53 [ 14] [ 4] [4912] +14:45:53 [ 15] [ 4] [0320] +14:45:53 [ 18] [ 4] [6011] +14:45:53 [ 19] [ 3] [418] +14:45:53 [ 22] [ 3] [021] +14:45:53 [ 25] [ 2] [01] +14:45:53 [ 28] [ 9] [D00002000] +14:45:53 [ 32] [ 6] [180893] +14:45:53 [ 35] [ 32] [6213544001759411=491212015941407] +14:45:53 [ 37] [ 12] [507907269796] +14:45:53 [ 41] [ 8] [0344SVKV] +14:45:53 [ 42] [ 15] [999999 ] +14:45:53 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +14:45:53 [ 49] [ 3] [418] +14:45:53 [ 52] [ 16] [7AFBC78B65ABDEBF] +14:45:53 ============================================================================ +14:45:53 + + +waiting on router queue for slot.... +14:45:53 Sending to : +14:45:53 ============================================================================ +14:45:53 Sending to : +14:45:53 ============================================================================ +14:45:53 ============================================================================ +14:45:53 Slot Id : <168> +14:45:53 Transaction Type : REQUEST +14:45:53 Received From : +14:45:53 ============================================================================ +14:45:53 FNo. Len. Field Value +14:45:53 ============================================================================ +14:45:53 [ 1] [ 4] [0200] +14:45:53 [ 2] [ 16] [6213544001759411] +14:45:53 [ 3] [ 6] [010000] +14:45:53 [ 4] [ 12] [000100000000] +14:45:53 [ 7] [ 10] [0320074459] +14:45:53 [ 11] [ 6] [269796] +14:45:53 [ 12] [ 6] [144459] +14:45:53 [ 13] [ 4] [0320] +14:45:53 [ 14] [ 4] [4912] +14:45:53 [ 15] [ 4] [0320] +14:45:53 [ 18] [ 4] [6011] +14:45:53 [ 19] [ 3] [418] +14:45:53 [ 22] [ 3] [021] +14:45:53 [ 25] [ 2] [01] +14:45:53 [ 28] [ 9] [D00002000] +14:45:53 [ 32] [ 6] [180893] +14:45:53 [ 35] [ 32] [6213544001759411=491212015941407] +14:45:53 [ 37] [ 12] [507907269796] +14:45:53 [ 41] [ 8] [0344SVKV] +14:45:53 [ 42] [ 15] [999999 ] +14:45:53 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +14:45:53 [ 49] [ 3] [418] +14:45:53 [ 52] [ 16] [7AFBC78B65ABDEBF] +14:45:53 ============================================================================ +14:45:53 + + +waiting on router queue for slot.... +14:45:53 Sending to : +14:45:53 ============================================================================ +14:45:53 ============================================================================ +14:45:53 Slot Id : <168> +14:45:53 Transaction Type : REQUEST +14:45:53 Received From : +14:45:53 ============================================================================ +14:45:53 FNo. Len. Field Value +14:45:53 ============================================================================ +14:45:53 [ 1] [ 4] [0200] +14:45:53 [ 2] [ 16] [6213544001759411] +14:45:53 [ 3] [ 6] [010000] +14:45:53 [ 4] [ 12] [000100000000] +14:45:53 [ 7] [ 10] [0320074459] +14:45:53 [ 11] [ 6] [269796] +14:45:53 [ 12] [ 6] [144459] +14:45:53 [ 13] [ 4] [0320] +14:45:53 [ 14] [ 4] [4912] +14:45:53 [ 15] [ 4] [0320] +14:45:53 [ 18] [ 4] [6011] +14:45:53 [ 19] [ 3] [418] +14:45:53 [ 22] [ 3] [021] +14:45:53 [ 25] [ 2] [01] +14:45:53 [ 28] [ 9] [D00002000] +14:45:53 [ 32] [ 6] [180893] +14:45:53 [ 35] [ 32] [6213544001759411=491212015941407] +14:45:53 [ 37] [ 12] [507907269796] +14:45:53 [ 41] [ 8] [0344SVKV] +14:45:53 [ 42] [ 15] [999999 ] +14:45:53 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +14:45:53 [ 49] [ 3] [418] +14:45:53 [ 52] [ 16] [2136D7B6C3137403] +14:45:53 ============================================================================ +14:45:53 + + +waiting on router queue for slot.... +14:45:53 Sending to : <0> +14:45:53 ============================================================================ +14:45:55 ============================================================================ +14:45:55 Slot Id : <168> +14:45:55 Transaction Type : RESPONSE +14:45:55 Received From : +14:45:55 ============================================================================ +14:45:55 FNo. Len. Field Value +14:45:55 ============================================================================ +14:45:55 [ 1] [ 4] [0210] +14:45:55 [ 2] [ 16] [6213544001759411] +14:45:55 [ 3] [ 6] [010000] +14:45:55 [ 4] [ 12] [000100000000] +14:45:55 [ 7] [ 10] [0320074459] +14:45:55 [ 11] [ 6] [269796] +14:45:55 [ 12] [ 6] [144459] +14:45:55 [ 13] [ 4] [0320] +14:45:55 [ 15] [ 4] [0320] +14:45:55 [ 18] [ 4] [6011] +14:45:55 [ 19] [ 3] [418] +14:45:55 [ 32] [ 6] [180893] +14:45:55 [ 35] [ 32] [6213544001759411=491212015941407] +14:45:55 [ 37] [ 12] [507907269796] +14:45:55 [ 38] [ 6] [269796] +14:45:55 [ 39] [ 2] [51] +14:45:55 [ 41] [ 8] [0344SVKV] +14:45:55 [ 49] [ 3] [418] +14:45:55 [ 54] [ 40] [0001418C0000050177280002418C000005017728] +14:45:55 ============================================================================ +14:45:55 Sending to : +14:45:55 ============================================================================ +14:45:55 + + +waiting on router queue for slot.... +14:45:57 ============================================================================ +14:45:57 Slot Id : <168> +14:45:57 Transaction Type : RESPONSE +14:45:57 Received From : +14:45:57 ============================================================================ +14:45:57 FNo. Len. Field Value +14:45:57 ============================================================================ +14:45:57 [ 1] [ 4] [0210] +14:45:57 [ 2] [ 16] [6213544001759411] +14:45:57 [ 3] [ 6] [010000] +14:45:57 [ 4] [ 12] [000100000000] +14:45:57 [ 7] [ 10] [0320074459] +14:45:57 [ 11] [ 6] [269796] +14:45:57 [ 12] [ 6] [144459] +14:45:57 [ 13] [ 4] [0320] +14:45:57 [ 15] [ 4] [0320] +14:45:57 [ 18] [ 4] [6011] +14:45:57 [ 19] [ 3] [418] +14:45:57 [ 32] [ 6] [180893] +14:45:57 [ 35] [ 32] [6213544001759411=491212015941407] +14:45:57 [ 37] [ 12] [507907269796] +14:45:57 [ 38] [ 6] [269796] +14:45:57 [ 39] [ 2] [51] +14:45:57 [ 41] [ 8] [0344SVKV] +14:45:57 [ 49] [ 3] [418] +14:45:57 [ 54] [ 40] [0001418C0000050177280002418C000005017728] +14:45:57 ============================================================================ +14:45:57 Calculate Source COMM Id = 2 +14:45:57 ============================================================================ +14:45:57 + + +waiting on router queue for slot.... +14:45:59 ============================================================================ +14:45:59 Slot Id : <180> +14:45:59 Transaction Type : REQUEST +14:45:59 Received From : +14:45:59 ============================================================================ +14:45:59 FNo. Len. Field Value +14:45:59 ============================================================================ +14:45:59 [ 1] [ 4] [0800] +14:45:59 [ 7] [ 10] [0320215748] +14:45:59 [ 11] [ 6] [145748] +14:45:59 [ 37] [ 12] [57914145748] +14:45:59 [ 70] [ 3] [301] +14:45:59 ============================================================================ +14:45:59 + + +waiting on router queue for slot.... +14:45:59 Sending to : +14:45:59 ============================================================================ +14:45:59 ============================================================================ +14:45:59 Slot Id : <180> +14:45:59 Transaction Type : RESPONSE +14:45:59 Received From : +14:45:59 ============================================================================ +14:45:59 FNo. Len. Field Value +14:45:59 ============================================================================ +14:45:59 [ 1] [ 4] [0810] +14:45:59 [ 7] [ 10] [0320215748] +14:45:59 [ 11] [ 6] [145748] +14:45:59 [ 37] [ 12] [579141457480] +14:45:59 [ 39] [ 2] [00] +14:45:59 [ 70] [ 3] [810] +14:45:59 ============================================================================ +14:45:59 Calculate Source COMM Id = 6 +14:45:59 ============================================================================ +14:45:59 + + +waiting on router queue for slot.... +14:46:03 ============================================================================ +14:46:03 Slot Id : <174> +14:46:03 Transaction Type : REQUEST +14:46:03 Received From : +14:46:03 ============================================================================ +14:46:03 FNo. Len. Field Value +14:46:03 ============================================================================ +14:46:03 [ 1] [ 4] [0200] +14:46:03 [ 2] [ 16] [6213545000096911] +14:46:03 [ 3] [ 6] [010000] +14:46:03 [ 4] [ 12] [000100000000] +14:46:03 [ 7] [ 10] [0320074509] +14:46:03 [ 11] [ 6] [269798] +14:46:03 [ 12] [ 6] [144509] +14:46:03 [ 13] [ 4] [0320] +14:46:03 [ 14] [ 4] [4912] +14:46:03 [ 15] [ 4] [0320] +14:46:03 [ 18] [ 4] [6011] +14:46:03 [ 19] [ 3] [418] +14:46:03 [ 22] [ 3] [021] +14:46:03 [ 25] [ 2] [01] +14:46:03 [ 28] [ 9] [D00002000] +14:46:03 [ 32] [ 6] [180893] +14:46:03 [ 35] [ 32] [6213545000096911=491212019691520] +14:46:03 [ 37] [ 12] [507907269798] +14:46:03 [ 41] [ 8] [0112CPBR] +14:46:03 [ 42] [ 15] [999999 ] +14:46:03 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:46:03 [ 49] [ 3] [418] +14:46:03 [ 52] [ 16] [2E09678A63B812C7] +14:46:03 ============================================================================ +14:46:03 + + +waiting on router queue for slot.... +14:46:03 Sending to : +14:46:03 ============================================================================ +14:46:03 Sending to : +14:46:03 ============================================================================ +14:46:03 ============================================================================ +14:46:03 Slot Id : <174> +14:46:03 Transaction Type : REQUEST +14:46:03 Received From : +14:46:03 ============================================================================ +14:46:03 FNo. Len. Field Value +14:46:03 ============================================================================ +14:46:03 [ 1] [ 4] [0200] +14:46:03 [ 2] [ 16] [6213545000096911] +14:46:03 [ 3] [ 6] [010000] +14:46:03 [ 4] [ 12] [000100000000] +14:46:03 [ 7] [ 10] [0320074509] +14:46:03 [ 11] [ 6] [269798] +14:46:03 [ 12] [ 6] [144509] +14:46:03 [ 13] [ 4] [0320] +14:46:03 [ 14] [ 4] [4912] +14:46:03 [ 15] [ 4] [0320] +14:46:03 [ 18] [ 4] [6011] +14:46:03 [ 19] [ 3] [418] +14:46:03 [ 22] [ 3] [021] +14:46:03 [ 25] [ 2] [01] +14:46:03 [ 28] [ 9] [D00002000] +14:46:03 [ 32] [ 6] [180893] +14:46:03 [ 35] [ 32] [6213545000096911=491212019691520] +14:46:03 [ 37] [ 12] [507907269798] +14:46:03 [ 41] [ 8] [0112CPBR] +14:46:03 [ 42] [ 15] [999999 ] +14:46:03 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:46:03 [ 49] [ 3] [418] +14:46:03 [ 52] [ 16] [2E09678A63B812C7] +14:46:03 ============================================================================ +14:46:03 + + +waiting on router queue for slot.... +14:46:03 Sending to : +14:46:03 ============================================================================ +14:46:03 ============================================================================ +14:46:03 Slot Id : <174> +14:46:03 Transaction Type : REQUEST +14:46:03 Received From : +14:46:03 ============================================================================ +14:46:03 FNo. Len. Field Value +14:46:03 ============================================================================ +14:46:03 [ 1] [ 4] [0200] +14:46:03 [ 2] [ 16] [6213545000096911] +14:46:03 [ 3] [ 6] [010000] +14:46:03 [ 4] [ 12] [000100000000] +14:46:03 [ 7] [ 10] [0320074509] +14:46:03 [ 11] [ 6] [269798] +14:46:03 [ 12] [ 6] [144509] +14:46:03 [ 13] [ 4] [0320] +14:46:03 [ 14] [ 4] [4912] +14:46:03 [ 15] [ 4] [0320] +14:46:03 [ 18] [ 4] [6011] +14:46:03 [ 19] [ 3] [418] +14:46:03 [ 22] [ 3] [021] +14:46:03 [ 25] [ 2] [01] +14:46:03 [ 28] [ 9] [D00002000] +14:46:03 [ 32] [ 6] [180893] +14:46:03 [ 35] [ 32] [6213545000096911=491212019691520] +14:46:03 [ 37] [ 12] [507907269798] +14:46:03 [ 41] [ 8] [0112CPBR] +14:46:03 [ 42] [ 15] [999999 ] +14:46:03 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:46:03 [ 49] [ 3] [418] +14:46:03 [ 52] [ 16] [916B4D5FAD120EF4] +14:46:03 ============================================================================ +14:46:03 + + +waiting on router queue for slot.... +14:46:03 Sending to : <0> +14:46:03 ============================================================================ +14:46:03 ============================================================================ +14:46:03 Slot Id : <174> +14:46:03 Transaction Type : RESPONSE +14:46:03 Received From : +14:46:03 ============================================================================ +14:46:03 FNo. Len. Field Value +14:46:03 ============================================================================ +14:46:03 [ 1] [ 4] [0210] +14:46:03 [ 2] [ 16] [6213545000096911] +14:46:03 [ 3] [ 6] [010000] +14:46:03 [ 4] [ 12] [000100000000] +14:46:03 [ 7] [ 10] [0320074509] +14:46:03 [ 11] [ 6] [269798] +14:46:03 [ 12] [ 6] [144509] +14:46:03 [ 13] [ 4] [0320] +14:46:03 [ 15] [ 4] [0320] +14:46:03 [ 18] [ 4] [6011] +14:46:03 [ 19] [ 3] [418] +14:46:03 [ 32] [ 6] [180893] +14:46:03 [ 35] [ 32] [6213545000096911=491212019691520] +14:46:03 [ 37] [ 12] [507907269798] +14:46:03 [ 38] [ 6] [776050] +14:46:03 [ 39] [ 2] [00] +14:46:03 [ 41] [ 8] [0112CPBR] +14:46:03 [ 49] [ 3] [418] +14:46:03 [ 54] [ 40] [0001418C0000392499240002418C000039249924] +14:46:03 ============================================================================ +14:46:03 Sending to : +14:46:03 ============================================================================ +14:46:03 + + +waiting on router queue for slot.... +14:46:05 ============================================================================ +14:46:05 Slot Id : <174> +14:46:05 Transaction Type : RESPONSE +14:46:05 Received From : +14:46:05 ============================================================================ +14:46:05 FNo. Len. Field Value +14:46:05 ============================================================================ +14:46:05 [ 1] [ 4] [0210] +14:46:05 [ 2] [ 16] [6213545000096911] +14:46:05 [ 3] [ 6] [010000] +14:46:05 [ 4] [ 12] [000100000000] +14:46:05 [ 7] [ 10] [0320074509] +14:46:05 [ 11] [ 6] [269798] +14:46:05 [ 12] [ 6] [144509] +14:46:05 [ 13] [ 4] [0320] +14:46:05 [ 15] [ 4] [0320] +14:46:05 [ 18] [ 4] [6011] +14:46:05 [ 19] [ 3] [418] +14:46:05 [ 32] [ 6] [180893] +14:46:05 [ 35] [ 32] [6213545000096911=491212019691520] +14:46:05 [ 37] [ 12] [507907269798] +14:46:05 [ 38] [ 6] [776050] +14:46:05 [ 39] [ 2] [00] +14:46:05 [ 41] [ 8] [0112CPBR] +14:46:05 [ 49] [ 3] [418] +14:46:05 [ 54] [ 40] [0001418C0000392499240002418C000039249924] +14:46:05 ============================================================================ +14:46:05 Calculate Source COMM Id = 2 +14:46:05 ============================================================================ +14:46:05 + + +waiting on router queue for slot.... +14:46:06 ============================================================================ +14:46:06 Slot Id : <222> +14:46:06 Transaction Type : REQUEST +14:46:06 Received From : +14:46:06 ============================================================================ +14:46:06 FNo. Len. Field Value +14:46:06 ============================================================================ +14:46:06 [ 1] [ 4] [0200] +14:46:06 [ 2] [ 16] [6688990603028703] +14:46:06 [ 3] [ 6] [013000] +14:46:06 [ 4] [ 12] [000100000000] +14:46:06 [ 7] [ 10] [0320144601] +14:46:06 [ 11] [ 6] [774309] +14:46:06 [ 12] [ 6] [144601] +14:46:06 [ 13] [ 4] [0320] +14:46:06 [ 15] [ 4] [0320] +14:46:06 [ 18] [ 4] [6011] +14:46:06 [ 22] [ 3] [900] +14:46:06 [ 25] [ 2] [02] +14:46:06 [ 28] [ 9] [D00002000] +14:46:06 [ 32] [ 6] [621354] +14:46:06 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:46:06 [ 37] [ 12] [507904743917] +14:46:06 [ 41] [ 8] [07001000] +14:46:06 [ 42] [ 15] [NATIVE ] +14:46:06 [ 43] [ 40] [LNT Branch02 Namtar LAO] +14:46:06 [ 49] [ 3] [418] +14:46:06 [ 52] [ 16] [C24EAF7387258530] +14:46:06 ============================================================================ +14:46:06 + + +waiting on router queue for slot.... +14:46:06 Sending to : +14:46:06 ============================================================================ +14:46:06 Sending to : +14:46:06 ============================================================================ +14:46:06 ============================================================================ +14:46:06 Slot Id : <222> +14:46:06 Transaction Type : REQUEST +14:46:06 Received From : +14:46:06 ============================================================================ +14:46:06 FNo. Len. Field Value +14:46:06 ============================================================================ +14:46:06 [ 1] [ 4] [0200] +14:46:06 [ 2] [ 16] [6688990603028703] +14:46:06 [ 3] [ 6] [013000] +14:46:06 [ 4] [ 12] [000100000000] +14:46:06 [ 7] [ 10] [0320144601] +14:46:06 [ 11] [ 6] [774309] +14:46:06 [ 12] [ 6] [144601] +14:46:06 [ 13] [ 4] [0320] +14:46:06 [ 15] [ 4] [0320] +14:46:06 [ 18] [ 4] [6011] +14:46:06 [ 22] [ 3] [900] +14:46:06 [ 25] [ 2] [02] +14:46:06 [ 28] [ 9] [D00002000] +14:46:06 [ 32] [ 6] [621354] +14:46:06 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:46:06 [ 37] [ 12] [507904743917] +14:46:06 [ 41] [ 8] [07001000] +14:46:06 [ 42] [ 15] [NATIVE ] +14:46:06 [ 43] [ 40] [LNT Branch02 Namtar LAO] +14:46:06 [ 49] [ 3] [418] +14:46:06 [ 52] [ 16] [C24EAF7387258530] +14:46:06 ============================================================================ +14:46:06 + + +waiting on router queue for slot.... +14:46:06 Sending to : +14:46:06 ============================================================================ +14:46:06 ============================================================================ +14:46:06 Slot Id : <222> +14:46:06 Transaction Type : REQUEST +14:46:06 Received From : +14:46:06 ============================================================================ +14:46:06 FNo. Len. Field Value +14:46:06 ============================================================================ +14:46:06 [ 1] [ 4] [0200] +14:46:06 [ 2] [ 16] [6688990603028703] +14:46:06 [ 3] [ 6] [013000] +14:46:06 [ 4] [ 12] [000100000000] +14:46:06 [ 7] [ 10] [0320144601] +14:46:06 [ 11] [ 6] [774309] +14:46:06 [ 12] [ 6] [144601] +14:46:06 [ 13] [ 4] [0320] +14:46:06 [ 15] [ 4] [0320] +14:46:06 [ 18] [ 4] [6011] +14:46:06 [ 22] [ 3] [900] +14:46:06 [ 25] [ 2] [02] +14:46:06 [ 28] [ 9] [D00002000] +14:46:06 [ 32] [ 6] [621354] +14:46:06 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:46:06 [ 37] [ 12] [507904743917] +14:46:06 [ 41] [ 8] [07001000] +14:46:06 [ 42] [ 15] [NATIVE ] +14:46:06 [ 43] [ 40] [LNT Branch02 Namtar LAO] +14:46:06 [ 49] [ 3] [418] +14:46:06 [ 52] [ 16] [8EED4002B97D240C] +14:46:06 ============================================================================ +14:46:06 + + +waiting on router queue for slot.... +14:46:06 Sending to : <4> +14:46:06 ============================================================================ +14:46:06 ============================================================================ +14:46:06 Slot Id : <222> +14:46:06 Transaction Type : RESPONSE +14:46:06 Received From : +14:46:06 ============================================================================ +14:46:06 FNo. Len. Field Value +14:46:06 ============================================================================ +14:46:06 [ 1] [ 4] [0210] +14:46:06 [ 2] [ 16] [6688990603028703] +14:46:06 [ 3] [ 6] [013000] +14:46:06 [ 4] [ 12] [000100000000] +14:46:06 [ 7] [ 10] [0320144601] +14:46:06 [ 11] [ 6] [774309] +14:46:06 [ 12] [ 6] [144601] +14:46:06 [ 13] [ 4] [0320] +14:46:06 [ 15] [ 4] [0320] +14:46:06 [ 18] [ 4] [6011] +14:46:06 [ 22] [ 3] [021] +14:46:06 [ 32] [ 6] [621354] +14:46:06 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:46:06 [ 37] [ 12] [507904743917] +14:46:06 [ 39] [ 2] [65] +14:46:06 [ 41] [ 8] [07001000] +14:46:06 [ 49] [ 3] [418] +14:46:06 ============================================================================ +14:46:06 Sending to : +14:46:06 ============================================================================ +14:46:06 + + +waiting on router queue for slot.... +14:46:07 ============================================================================ +14:46:07 Slot Id : <229> +14:46:07 Transaction Type : REQUEST +14:46:07 Received From : +14:46:07 ============================================================================ +14:46:07 FNo. Len. Field Value +14:46:07 ============================================================================ +14:46:07 [ 1] [ 4] [0200] +14:46:07 [ 2] [ 16] [6688990108430503] +14:46:07 [ 3] [ 6] [010000] +14:46:07 [ 4] [ 12] [000100000000] +14:46:07 [ 7] [ 10] [0320144603] +14:46:07 [ 11] [ 6] [774316] +14:46:07 [ 12] [ 6] [144603] +14:46:07 [ 13] [ 4] [0320] +14:46:07 [ 15] [ 4] [0320] +14:46:07 [ 18] [ 4] [6011] +14:46:07 [ 22] [ 3] [900] +14:46:07 [ 25] [ 2] [02] +14:46:07 [ 28] [ 9] [D00002000] +14:46:07 [ 32] [ 6] [621354] +14:46:07 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:46:07 [ 37] [ 12] [507903499506] +14:46:07 [ 41] [ 8] [06002200] +14:46:07 [ 42] [ 15] [NATIVE ] +14:46:07 [ 43] [ 40] [Beng Market Beng LAO] +14:46:07 [ 49] [ 3] [418] +14:46:07 [ 52] [ 16] [C7B63C92FBC10BF3] +14:46:07 ============================================================================ +14:46:07 + + +waiting on router queue for slot.... +14:46:07 Sending to : +14:46:07 ============================================================================ +14:46:07 Sending to : +14:46:07 ============================================================================ +14:46:08 ============================================================================ +14:46:08 Slot Id : <222> +14:46:08 Transaction Type : RESPONSE +14:46:08 Received From : +14:46:08 ============================================================================ +14:46:08 FNo. Len. Field Value +14:46:08 ============================================================================ +14:46:08 [ 1] [ 4] [0210] +14:46:08 [ 2] [ 16] [6688990603028703] +14:46:08 [ 3] [ 6] [013000] +14:46:08 [ 4] [ 12] [000100000000] +14:46:08 [ 7] [ 10] [0320144601] +14:46:08 [ 11] [ 6] [774309] +14:46:08 [ 12] [ 6] [144601] +14:46:08 [ 13] [ 4] [0320] +14:46:08 [ 15] [ 4] [0320] +14:46:08 [ 18] [ 4] [6011] +14:46:08 [ 22] [ 3] [021] +14:46:08 [ 32] [ 6] [621354] +14:46:08 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:46:08 [ 37] [ 12] [507904743917] +14:46:08 [ 39] [ 2] [65] +14:46:08 [ 41] [ 8] [07001000] +14:46:08 [ 49] [ 3] [418] +14:46:08 ============================================================================ +14:46:08 Calculate Source COMM Id = 0 +14:46:08 ============================================================================ +14:46:08 + + +waiting on router queue for slot.... +14:46:08 ============================================================================ +14:46:08 Slot Id : <229> +14:46:08 Transaction Type : REQUEST +14:46:08 Received From : +14:46:08 ============================================================================ +14:46:08 FNo. Len. Field Value +14:46:08 ============================================================================ +14:46:08 [ 1] [ 4] [0200] +14:46:08 [ 2] [ 16] [6688990108430503] +14:46:08 [ 3] [ 6] [010000] +14:46:08 [ 4] [ 12] [000100000000] +14:46:08 [ 7] [ 10] [0320144603] +14:46:08 [ 11] [ 6] [774316] +14:46:08 [ 12] [ 6] [144603] +14:46:08 [ 13] [ 4] [0320] +14:46:08 [ 15] [ 4] [0320] +14:46:08 [ 18] [ 4] [6011] +14:46:08 [ 22] [ 3] [900] +14:46:08 [ 25] [ 2] [02] +14:46:08 [ 28] [ 9] [D00002000] +14:46:08 [ 32] [ 6] [621354] +14:46:08 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:46:08 [ 37] [ 12] [507903499506] +14:46:08 [ 41] [ 8] [06002200] +14:46:08 [ 42] [ 15] [NATIVE ] +14:46:08 [ 43] [ 40] [Beng Market Beng LAO] +14:46:08 [ 49] [ 3] [418] +14:46:08 [ 52] [ 16] [C7B63C92FBC10BF3] +14:46:08 ============================================================================ +14:46:08 + + +waiting on router queue for slot.... +14:46:08 Sending to : +14:46:08 ============================================================================ +14:46:08 ============================================================================ +14:46:08 Slot Id : <229> +14:46:08 Transaction Type : REQUEST +14:46:08 Received From : +14:46:08 ============================================================================ +14:46:08 FNo. Len. Field Value +14:46:08 ============================================================================ +14:46:08 [ 1] [ 4] [0200] +14:46:08 [ 2] [ 16] [6688990108430503] +14:46:08 [ 3] [ 6] [010000] +14:46:08 [ 4] [ 12] [000100000000] +14:46:08 [ 7] [ 10] [0320144603] +14:46:08 [ 11] [ 6] [774316] +14:46:08 [ 12] [ 6] [144603] +14:46:08 [ 13] [ 4] [0320] +14:46:08 [ 15] [ 4] [0320] +14:46:08 [ 18] [ 4] [6011] +14:46:08 [ 22] [ 3] [900] +14:46:08 [ 25] [ 2] [02] +14:46:08 [ 28] [ 9] [D00002000] +14:46:08 [ 32] [ 6] [621354] +14:46:08 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:46:08 [ 37] [ 12] [507903499506] +14:46:08 [ 41] [ 8] [06002200] +14:46:08 [ 42] [ 15] [NATIVE ] +14:46:08 [ 43] [ 40] [Beng Market Beng LAO] +14:46:08 [ 49] [ 3] [418] +14:46:08 [ 52] [ 16] [6EB8918F0BC2E700] +14:46:08 ============================================================================ +14:46:08 + + +waiting on router queue for slot.... +14:46:08 Sending to : <4> +14:46:08 ============================================================================ +14:46:09 ============================================================================ +14:46:09 Slot Id : <229> +14:46:09 Transaction Type : RESPONSE +14:46:09 Received From : +14:46:09 ============================================================================ +14:46:09 FNo. Len. Field Value +14:46:09 ============================================================================ +14:46:09 [ 1] [ 4] [0210] +14:46:09 [ 2] [ 16] [6688990108430503] +14:46:09 [ 3] [ 6] [010000] +14:46:09 [ 4] [ 12] [000100000000] +14:46:09 [ 11] [ 6] [774316] +14:46:09 [ 12] [ 6] [144603] +14:46:09 [ 15] [ 4] [0320] +14:46:09 [ 18] [ 4] [6011] +14:46:09 [ 32] [ 6] [621354] +14:46:09 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:46:09 [ 37] [ 12] [507903499506] +14:46:09 [ 38] [ 6] [368498] +14:46:09 [ 39] [ 2] [00] +14:46:09 [ 41] [ 8] [06002200] +14:46:09 [ 49] [ 3] [418] +14:46:09 [ 54] [ 20] [0002418C000347607192] +14:46:09 ============================================================================ +14:46:09 Sending to : +14:46:09 ============================================================================ +14:46:09 + + +waiting on router queue for slot.... +14:46:10 ============================================================================ +14:46:10 Slot Id : <229> +14:46:10 Transaction Type : RESPONSE +14:46:10 Received From : +14:46:10 ============================================================================ +14:46:10 FNo. Len. Field Value +14:46:10 ============================================================================ +14:46:10 [ 1] [ 4] [0210] +14:46:10 [ 2] [ 16] [6688990108430503] +14:46:10 [ 3] [ 6] [010000] +14:46:10 [ 4] [ 12] [000100000000] +14:46:10 [ 11] [ 6] [774316] +14:46:10 [ 12] [ 6] [144603] +14:46:10 [ 15] [ 4] [0320] +14:46:10 [ 18] [ 4] [6011] +14:46:10 [ 32] [ 6] [621354] +14:46:10 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:46:10 [ 37] [ 12] [507903499506] +14:46:10 [ 38] [ 6] [368498] +14:46:10 [ 39] [ 2] [00] +14:46:10 [ 41] [ 8] [06002200] +14:46:10 [ 49] [ 3] [418] +14:46:10 [ 54] [ 20] [0002418C000347607192] +14:46:10 ============================================================================ +14:46:10 Calculate Source COMM Id = 0 +14:46:10 ============================================================================ +14:46:10 + + +waiting on router queue for slot.... +14:46:12 ============================================================================ +14:46:12 Slot Id : <173> +14:46:12 Transaction Type : REQUEST +14:46:12 Received From : +14:46:12 ============================================================================ +14:46:12 FNo. Len. Field Value +14:46:12 ============================================================================ +14:46:12 [ 1] [ 4] [0800] +14:46:12 [ 2] [ 5] [02531] +14:46:12 [ 3] [ 6] [579148] +14:46:12 [ 7] [ 10] [0320074612] +14:46:12 [ 11] [ 6] [807269] +14:46:12 [ 15] [ 10] [0320074612] +14:46:12 [ 37] [ 11] [57914807269] +14:46:12 [ 70] [ 3] [001] +14:46:12 ============================================================================ +14:46:12 + + +waiting on router queue for slot.... +14:46:12 ============================================================================ +14:46:12 Slot Id : <173> +14:46:12 Transaction Type : RESPONSE +14:46:12 Received From : +14:46:12 ============================================================================ +14:46:12 FNo. Len. Field Value +14:46:12 ============================================================================ +14:46:12 [ 1] [ 4] [0810] +14:46:12 [ 7] [ 10] [0320074612] +14:46:12 [ 11] [ 6] [807269] +14:46:12 [ 15] [ 4] [0320] +14:46:12 [ 37] [ 12] [57914807269] +14:46:12 [ 39] [ 2] [00] +14:46:12 [ 70] [ 3] [001] +14:46:12 ============================================================================ +14:46:12 Sending to : +14:46:12 ============================================================================ +14:46:12 + + +waiting on router queue for slot.... +14:46:16 ============================================================================ +14:46:16 Slot Id : <188> +14:46:16 Transaction Type : REQUEST +14:46:16 Received From : +14:46:16 ============================================================================ +14:46:16 FNo. Len. Field Value +14:46:16 ============================================================================ +14:46:16 [ 1] [ 4] [0200] +14:46:16 [ 2] [ 16] [6688990040142034] +14:46:16 [ 3] [ 6] [010000] +14:46:16 [ 4] [ 12] [000100000000] +14:46:16 [ 7] [ 10] [0320074523] +14:46:16 [ 11] [ 6] [269800] +14:46:16 [ 12] [ 6] [144523] +14:46:16 [ 13] [ 4] [0320] +14:46:16 [ 14] [ 4] [9804] +14:46:16 [ 15] [ 4] [0320] +14:46:16 [ 18] [ 4] [6011] +14:46:16 [ 19] [ 3] [418] +14:46:16 [ 22] [ 3] [021] +14:46:16 [ 25] [ 2] [01] +14:46:16 [ 28] [ 9] [D00002000] +14:46:16 [ 32] [ 6] [180893] +14:46:16 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:46:16 [ 37] [ 12] [507907269800] +14:46:16 [ 41] [ 8] [0321LNTV] +14:46:16 [ 42] [ 15] [999999 ] +14:46:16 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:46:16 [ 49] [ 3] [418] +14:46:16 [ 52] [ 16] [85E5EA747C95DEDA] +14:46:16 ============================================================================ +14:46:16 + + +waiting on router queue for slot.... +14:46:16 Sending to : +14:46:16 ============================================================================ +14:46:16 Sending to : +14:46:16 ============================================================================ +14:46:17 ============================================================================ +14:46:17 Slot Id : <188> +14:46:17 Transaction Type : REQUEST +14:46:17 Received From : +14:46:17 ============================================================================ +14:46:17 FNo. Len. Field Value +14:46:17 ============================================================================ +14:46:17 [ 1] [ 4] [0200] +14:46:17 [ 2] [ 16] [6688990040142034] +14:46:17 [ 3] [ 6] [010000] +14:46:17 [ 4] [ 12] [000100000000] +14:46:17 [ 7] [ 10] [0320074523] +14:46:17 [ 11] [ 6] [269800] +14:46:17 [ 12] [ 6] [144523] +14:46:17 [ 13] [ 4] [0320] +14:46:17 [ 14] [ 4] [9804] +14:46:17 [ 15] [ 4] [0320] +14:46:17 [ 18] [ 4] [6011] +14:46:17 [ 19] [ 3] [418] +14:46:17 [ 22] [ 3] [021] +14:46:17 [ 25] [ 2] [01] +14:46:17 [ 28] [ 9] [D00002000] +14:46:17 [ 32] [ 6] [180893] +14:46:17 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:46:17 [ 37] [ 12] [507907269800] +14:46:17 [ 41] [ 8] [0321LNTV] +14:46:17 [ 42] [ 15] [999999 ] +14:46:17 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:46:17 [ 49] [ 3] [418] +14:46:17 [ 52] [ 16] [85E5EA747C95DEDA] +14:46:17 ============================================================================ +14:46:17 + + +waiting on router queue for slot.... +14:46:17 Sending to : +14:46:17 ============================================================================ +14:46:17 ============================================================================ +14:46:17 Slot Id : <188> +14:46:17 Transaction Type : REQUEST +14:46:17 Received From : +14:46:17 ============================================================================ +14:46:17 FNo. Len. Field Value +14:46:17 ============================================================================ +14:46:17 [ 1] [ 4] [0200] +14:46:17 [ 2] [ 16] [6688990040142034] +14:46:17 [ 3] [ 6] [010000] +14:46:17 [ 4] [ 12] [000100000000] +14:46:17 [ 7] [ 10] [0320074523] +14:46:17 [ 11] [ 6] [269800] +14:46:17 [ 12] [ 6] [144523] +14:46:17 [ 13] [ 4] [0320] +14:46:17 [ 14] [ 4] [9804] +14:46:17 [ 15] [ 4] [0320] +14:46:17 [ 18] [ 4] [6011] +14:46:17 [ 19] [ 3] [418] +14:46:17 [ 22] [ 3] [021] +14:46:17 [ 25] [ 2] [01] +14:46:17 [ 28] [ 9] [D00002000] +14:46:17 [ 32] [ 6] [180893] +14:46:17 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:46:17 [ 37] [ 12] [507907269800] +14:46:17 [ 41] [ 8] [0321LNTV] +14:46:17 [ 42] [ 15] [999999 ] +14:46:17 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:46:17 [ 49] [ 3] [418] +14:46:17 [ 52] [ 16] [AE8DD56FD1C085B8] +14:46:17 ============================================================================ +14:46:17 + + +waiting on router queue for slot.... +14:46:17 Sending to : <0> +14:46:17 ============================================================================ +14:46:17 ============================================================================ +14:46:17 Slot Id : <188> +14:46:17 Transaction Type : RESPONSE +14:46:17 Received From : +14:46:17 ============================================================================ +14:46:17 FNo. Len. Field Value +14:46:17 ============================================================================ +14:46:17 [ 1] [ 4] [0210] +14:46:17 [ 2] [ 16] [6688990040142034] +14:46:17 [ 3] [ 6] [010000] +14:46:17 [ 4] [ 12] [000100000000] +14:46:17 [ 7] [ 10] [0320074523] +14:46:17 [ 11] [ 6] [269800] +14:46:17 [ 12] [ 6] [144523] +14:46:17 [ 13] [ 4] [0320] +14:46:17 [ 15] [ 4] [0320] +14:46:17 [ 18] [ 4] [6011] +14:46:17 [ 19] [ 3] [418] +14:46:17 [ 22] [ 3] [021] +14:46:17 [ 32] [ 6] [180893] +14:46:17 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:46:17 [ 37] [ 12] [507907269800] +14:46:17 [ 39] [ 2] [14] +14:46:17 [ 41] [ 8] [0321LNTV] +14:46:17 [ 49] [ 3] [418] +14:46:17 ============================================================================ +14:46:17 Sending to : +14:46:17 ============================================================================ +14:46:17 + + +waiting on router queue for slot.... +14:46:18 ============================================================================ +14:46:18 Slot Id : <188> +14:46:18 Transaction Type : RESPONSE +14:46:18 Received From : +14:46:18 ============================================================================ +14:46:18 FNo. Len. Field Value +14:46:18 ============================================================================ +14:46:18 [ 1] [ 4] [0210] +14:46:18 [ 2] [ 16] [6688990040142034] +14:46:18 [ 3] [ 6] [010000] +14:46:18 [ 4] [ 12] [000100000000] +14:46:18 [ 7] [ 10] [0320074523] +14:46:18 [ 11] [ 6] [269800] +14:46:18 [ 12] [ 6] [144523] +14:46:18 [ 13] [ 4] [0320] +14:46:18 [ 15] [ 4] [0320] +14:46:18 [ 18] [ 4] [6011] +14:46:18 [ 19] [ 3] [418] +14:46:18 [ 22] [ 3] [021] +14:46:18 [ 32] [ 6] [180893] +14:46:18 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:46:18 [ 37] [ 12] [507907269800] +14:46:18 [ 39] [ 2] [14] +14:46:18 [ 41] [ 8] [0321LNTV] +14:46:18 [ 49] [ 3] [418] +14:46:18 ============================================================================ +14:46:18 Calculate Source COMM Id = 2 +14:46:18 ============================================================================ +14:46:18 + + +waiting on router queue for slot.... +14:46:21 ============================================================================ +14:46:21 Slot Id : <223> +14:46:21 Transaction Type : REQUEST +14:46:21 Received From : +14:46:21 ============================================================================ +14:46:21 FNo. Len. Field Value +14:46:21 ============================================================================ +14:46:21 [ 1] [ 4] [0800] +14:46:21 [ 7] [ 10] [0320074412] +14:46:21 [ 11] [ 6] [025249] +14:46:21 [ 37] [ 12] [57914025249] +14:46:21 [ 70] [ 3] [301] +14:46:21 ============================================================================ +14:46:21 + + +waiting on router queue for slot.... +14:46:21 Sending to : +14:46:21 ============================================================================ +14:46:21 ============================================================================ +14:46:21 Slot Id : <223> +14:46:21 Transaction Type : RESPONSE +14:46:21 Received From : +14:46:21 ============================================================================ +14:46:21 FNo. Len. Field Value +14:46:21 ============================================================================ +14:46:21 [ 1] [ 4] [0810] +14:46:21 [ 7] [ 10] [0320074412] +14:46:21 [ 11] [ 6] [025249] +14:46:21 [ 37] [ 12] [579140252490] +14:46:21 [ 39] [ 2] [00] +14:46:21 [ 70] [ 3] [810] +14:46:21 ============================================================================ +14:46:21 Calculate Source COMM Id = 4 +14:46:21 ============================================================================ +14:46:21 + + +waiting on router queue for slot.... +14:46:30 ============================================================================ +14:46:30 Slot Id : <246> +14:46:30 Transaction Type : REQUEST +14:46:30 Received From : +14:46:30 ============================================================================ +14:46:30 FNo. Len. Field Value +14:46:30 ============================================================================ +14:46:30 [ 1] [ 4] [0800] +14:46:30 [ 7] [ 10] [0320074537] +14:46:30 [ 11] [ 6] [156850] +14:46:30 [ 70] [ 3] [301] +14:46:30 ============================================================================ +14:46:30 + + +waiting on router queue for slot.... +14:46:30 Sending to : +14:46:30 ============================================================================ +14:46:30 ============================================================================ +14:46:30 Slot Id : <246> +14:46:30 Transaction Type : RESPONSE +14:46:30 Received From : +14:46:30 ============================================================================ +14:46:30 FNo. Len. Field Value +14:46:30 ============================================================================ +14:46:30 [ 1] [ 4] [0810] +14:46:30 [ 7] [ 10] [0320074537] +14:46:30 [ 11] [ 6] [156850] +14:46:30 [ 39] [ 2] [00] +14:46:30 [ 70] [ 3] [301] +14:46:30 ============================================================================ +14:46:30 Calculate Source COMM Id = 2 +14:46:30 ============================================================================ +14:46:30 + + +waiting on router queue for slot.... +14:46:46 ============================================================================ +14:46:46 Slot Id : <215> +14:46:46 Transaction Type : REQUEST +14:46:46 Received From : +14:46:46 ============================================================================ +14:46:46 FNo. Len. Field Value +14:46:46 ============================================================================ +14:46:46 [ 1] [ 4] [0800] +14:46:46 [ 7] [ 10] [0320074553] +14:46:46 [ 11] [ 6] [156851] +14:46:46 [ 70] [ 3] [301] +14:46:46 ============================================================================ +14:46:46 + + +waiting on router queue for slot.... +14:46:46 Sending to : +14:46:46 ============================================================================ +14:46:46 ============================================================================ +14:46:46 Slot Id : <215> +14:46:46 Transaction Type : RESPONSE +14:46:46 Received From : +14:46:46 ============================================================================ +14:46:46 FNo. Len. Field Value +14:46:46 ============================================================================ +14:46:46 [ 1] [ 4] [0810] +14:46:46 [ 7] [ 10] [0320074553] +14:46:46 [ 11] [ 6] [156851] +14:46:46 [ 39] [ 2] [00] +14:46:46 [ 70] [ 3] [301] +14:46:46 ============================================================================ +14:46:46 Calculate Source COMM Id = 2 +14:46:46 ============================================================================ +14:46:46 + + +waiting on router queue for slot.... +14:46:51 ============================================================================ +14:46:51 Slot Id : <243> +14:46:51 Transaction Type : REQUEST +14:46:51 Received From : +14:46:51 ============================================================================ +14:46:51 FNo. Len. Field Value +14:46:51 ============================================================================ +14:46:51 [ 1] [ 4] [0200] +14:46:51 [ 2] [ 16] [6688990603028703] +14:46:51 [ 3] [ 6] [013000] +14:46:51 [ 4] [ 12] [000100000000] +14:46:51 [ 7] [ 10] [0320144646] +14:46:51 [ 11] [ 6] [774494] +14:46:51 [ 12] [ 6] [144646] +14:46:51 [ 13] [ 4] [0320] +14:46:51 [ 15] [ 4] [0320] +14:46:51 [ 18] [ 4] [6011] +14:46:51 [ 22] [ 3] [900] +14:46:51 [ 25] [ 2] [02] +14:46:51 [ 28] [ 9] [D00002000] +14:46:51 [ 32] [ 6] [621354] +14:46:51 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:46:51 [ 37] [ 12] [507904731478] +14:46:51 [ 41] [ 8] [07000900] +14:46:51 [ 42] [ 15] [NATIVE ] +14:46:51 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:46:51 [ 49] [ 3] [418] +14:46:51 [ 52] [ 16] [C24EAF7387258530] +14:46:51 ============================================================================ +14:46:51 + + +waiting on router queue for slot.... +14:46:51 Sending to : +14:46:51 ============================================================================ +14:46:51 Sending to : +14:46:51 ============================================================================ +14:46:51 ============================================================================ +14:46:51 Slot Id : <243> +14:46:51 Transaction Type : REQUEST +14:46:51 Received From : +14:46:51 ============================================================================ +14:46:51 FNo. Len. Field Value +14:46:51 ============================================================================ +14:46:51 [ 1] [ 4] [0200] +14:46:51 [ 2] [ 16] [6688990603028703] +14:46:51 [ 3] [ 6] [013000] +14:46:51 [ 4] [ 12] [000100000000] +14:46:51 [ 7] [ 10] [0320144646] +14:46:51 [ 11] [ 6] [774494] +14:46:51 [ 12] [ 6] [144646] +14:46:51 [ 13] [ 4] [0320] +14:46:51 [ 15] [ 4] [0320] +14:46:51 [ 18] [ 4] [6011] +14:46:51 [ 22] [ 3] [900] +14:46:51 [ 25] [ 2] [02] +14:46:51 [ 28] [ 9] [D00002000] +14:46:51 [ 32] [ 6] [621354] +14:46:51 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:46:51 [ 37] [ 12] [507904731478] +14:46:51 [ 41] [ 8] [07000900] +14:46:51 [ 42] [ 15] [NATIVE ] +14:46:51 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:46:51 [ 49] [ 3] [418] +14:46:51 [ 52] [ 16] [C24EAF7387258530] +14:46:51 ============================================================================ +14:46:51 + + +waiting on router queue for slot.... +14:46:51 Sending to : +14:46:51 ============================================================================ +14:46:51 ============================================================================ +14:46:51 Slot Id : <243> +14:46:51 Transaction Type : REQUEST +14:46:51 Received From : +14:46:51 ============================================================================ +14:46:51 FNo. Len. Field Value +14:46:51 ============================================================================ +14:46:51 [ 1] [ 4] [0200] +14:46:51 [ 2] [ 16] [6688990603028703] +14:46:51 [ 3] [ 6] [013000] +14:46:51 [ 4] [ 12] [000100000000] +14:46:51 [ 7] [ 10] [0320144646] +14:46:51 [ 11] [ 6] [774494] +14:46:51 [ 12] [ 6] [144646] +14:46:51 [ 13] [ 4] [0320] +14:46:51 [ 15] [ 4] [0320] +14:46:51 [ 18] [ 4] [6011] +14:46:51 [ 22] [ 3] [900] +14:46:51 [ 25] [ 2] [02] +14:46:51 [ 28] [ 9] [D00002000] +14:46:51 [ 32] [ 6] [621354] +14:46:51 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:46:51 [ 37] [ 12] [507904731478] +14:46:51 [ 41] [ 8] [07000900] +14:46:51 [ 42] [ 15] [NATIVE ] +14:46:51 [ 43] [ 40] [LNT Branch01 Namtar LAO] +14:46:51 [ 49] [ 3] [418] +14:46:51 [ 52] [ 16] [8EED4002B97D240C] +14:46:51 ============================================================================ +14:46:51 + + +waiting on router queue for slot.... +14:46:51 Sending to : <4> +14:46:51 ============================================================================ +14:46:51 ============================================================================ +14:46:51 Slot Id : <243> +14:46:51 Transaction Type : RESPONSE +14:46:51 Received From : +14:46:51 ============================================================================ +14:46:51 FNo. Len. Field Value +14:46:51 ============================================================================ +14:46:51 [ 1] [ 4] [0210] +14:46:51 [ 2] [ 16] [6688990603028703] +14:46:51 [ 3] [ 6] [013000] +14:46:51 [ 4] [ 12] [000100000000] +14:46:51 [ 7] [ 10] [0320144646] +14:46:51 [ 11] [ 6] [774494] +14:46:51 [ 12] [ 6] [144646] +14:46:51 [ 13] [ 4] [0320] +14:46:51 [ 15] [ 4] [0320] +14:46:51 [ 18] [ 4] [6011] +14:46:51 [ 22] [ 3] [021] +14:46:51 [ 32] [ 6] [621354] +14:46:51 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:46:51 [ 37] [ 12] [507904731478] +14:46:51 [ 39] [ 2] [65] +14:46:51 [ 41] [ 8] [07000900] +14:46:51 [ 49] [ 3] [418] +14:46:51 ============================================================================ +14:46:51 Sending to : +14:46:51 ============================================================================ +14:46:51 + + +waiting on router queue for slot.... +14:46:52 ============================================================================ +14:46:52 Slot Id : <243> +14:46:52 Transaction Type : RESPONSE +14:46:52 Received From : +14:46:52 ============================================================================ +14:46:52 FNo. Len. Field Value +14:46:52 ============================================================================ +14:46:52 [ 1] [ 4] [0210] +14:46:52 [ 2] [ 16] [6688990603028703] +14:46:52 [ 3] [ 6] [013000] +14:46:52 [ 4] [ 12] [000100000000] +14:46:52 [ 7] [ 10] [0320144646] +14:46:52 [ 11] [ 6] [774494] +14:46:52 [ 12] [ 6] [144646] +14:46:52 [ 13] [ 4] [0320] +14:46:52 [ 15] [ 4] [0320] +14:46:52 [ 18] [ 4] [6011] +14:46:52 [ 22] [ 3] [021] +14:46:52 [ 32] [ 6] [621354] +14:46:52 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:46:52 [ 37] [ 12] [507904731478] +14:46:52 [ 39] [ 2] [65] +14:46:52 [ 41] [ 8] [07000900] +14:46:52 [ 49] [ 3] [418] +14:46:52 ============================================================================ +14:46:52 Calculate Source COMM Id = 0 +14:46:52 ============================================================================ +14:46:52 + + +waiting on router queue for slot.... +14:46:55 ============================================================================ +14:46:55 Slot Id : <248> +14:46:55 Transaction Type : REQUEST +14:46:55 Received From : +14:46:55 ============================================================================ +14:46:55 FNo. Len. Field Value +14:46:55 ============================================================================ +14:46:55 [ 1] [ 4] [0200] +14:46:55 [ 2] [ 16] [6213545000096911] +14:46:55 [ 3] [ 6] [012000] +14:46:55 [ 4] [ 12] [000030000000] +14:46:55 [ 7] [ 10] [0320074602] +14:46:55 [ 11] [ 6] [269805] +14:46:55 [ 12] [ 6] [144602] +14:46:55 [ 13] [ 4] [0320] +14:46:55 [ 14] [ 4] [4912] +14:46:55 [ 15] [ 4] [0320] +14:46:55 [ 18] [ 4] [6011] +14:46:55 [ 19] [ 3] [418] +14:46:55 [ 22] [ 3] [021] +14:46:55 [ 25] [ 2] [01] +14:46:55 [ 28] [ 9] [D00002000] +14:46:55 [ 32] [ 6] [180893] +14:46:55 [ 35] [ 32] [6213545000096911=491212019691520] +14:46:55 [ 37] [ 12] [507907269805] +14:46:55 [ 41] [ 8] [0112CPBR] +14:46:55 [ 42] [ 15] [999999 ] +14:46:55 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:46:55 [ 49] [ 3] [418] +14:46:55 [ 52] [ 16] [2E09678A63B812C7] +14:46:55 ============================================================================ +14:46:55 + + +waiting on router queue for slot.... +14:46:55 Sending to : +14:46:55 ============================================================================ +14:46:55 Sending to : +14:46:55 ============================================================================ +14:46:55 ============================================================================ +14:46:55 Slot Id : <244> +14:46:55 Transaction Type : REQUEST +14:46:55 Received From : +14:46:55 ============================================================================ +14:46:55 FNo. Len. Field Value +14:46:55 ============================================================================ +14:46:55 [ 1] [ 4] [0200] +14:46:55 [ 2] [ 16] [6213544000074135] +14:46:55 [ 3] [ 6] [010000] +14:46:55 [ 4] [ 12] [000100000000] +14:46:55 [ 7] [ 10] [0320074602] +14:46:55 [ 11] [ 6] [269806] +14:46:55 [ 12] [ 6] [144602] +14:46:55 [ 13] [ 4] [0320] +14:46:55 [ 14] [ 4] [4912] +14:46:55 [ 15] [ 4] [0320] +14:46:55 [ 18] [ 4] [6011] +14:46:55 [ 19] [ 3] [418] +14:46:55 [ 22] [ 3] [021] +14:46:55 [ 25] [ 2] [01] +14:46:55 [ 28] [ 9] [D00002000] +14:46:55 [ 32] [ 6] [180893] +14:46:55 [ 35] [ 32] [6213544000074135=491212017413905] +14:46:55 [ 37] [ 12] [507907269806] +14:46:55 [ 41] [ 8] [0106NAXA] +14:46:55 [ 42] [ 15] [999999 ] +14:46:55 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:46:55 [ 49] [ 3] [418] +14:46:55 [ 52] [ 16] [7A660DA19C242BF2] +14:46:55 ============================================================================ +14:46:55 + + +waiting on router queue for slot.... +14:46:55 Sending to : +14:46:55 ============================================================================ +14:46:55 Sending to : +14:46:55 ============================================================================ +14:46:55 ============================================================================ +14:46:55 Slot Id : <248> +14:46:55 Transaction Type : REQUEST +14:46:55 Received From : +14:46:55 ============================================================================ +14:46:55 FNo. Len. Field Value +14:46:55 ============================================================================ +14:46:55 [ 1] [ 4] [0200] +14:46:55 [ 2] [ 16] [6213545000096911] +14:46:55 [ 3] [ 6] [012000] +14:46:55 [ 4] [ 12] [000030000000] +14:46:55 [ 7] [ 10] [0320074602] +14:46:55 [ 11] [ 6] [269805] +14:46:55 [ 12] [ 6] [144602] +14:46:55 [ 13] [ 4] [0320] +14:46:55 [ 14] [ 4] [4912] +14:46:55 [ 15] [ 4] [0320] +14:46:55 [ 18] [ 4] [6011] +14:46:55 [ 19] [ 3] [418] +14:46:55 [ 22] [ 3] [021] +14:46:55 [ 25] [ 2] [01] +14:46:55 [ 28] [ 9] [D00002000] +14:46:55 [ 32] [ 6] [180893] +14:46:55 [ 35] [ 32] [6213545000096911=491212019691520] +14:46:55 [ 37] [ 12] [507907269805] +14:46:55 [ 41] [ 8] [0112CPBR] +14:46:55 [ 42] [ 15] [999999 ] +14:46:55 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:46:55 [ 49] [ 3] [418] +14:46:55 [ 52] [ 16] [2E09678A63B812C7] +14:46:55 ============================================================================ +14:46:55 + + +waiting on router queue for slot.... +14:46:55 Sending to : +14:46:55 ============================================================================ +14:46:55 ============================================================================ +14:46:55 Slot Id : <248> +14:46:55 Transaction Type : REQUEST +14:46:55 Received From : +14:46:55 ============================================================================ +14:46:55 FNo. Len. Field Value +14:46:55 ============================================================================ +14:46:55 [ 1] [ 4] [0200] +14:46:55 [ 2] [ 16] [6213545000096911] +14:46:55 [ 3] [ 6] [012000] +14:46:55 [ 4] [ 12] [000030000000] +14:46:55 [ 7] [ 10] [0320074602] +14:46:55 [ 11] [ 6] [269805] +14:46:55 [ 12] [ 6] [144602] +14:46:55 [ 13] [ 4] [0320] +14:46:55 [ 14] [ 4] [4912] +14:46:55 [ 15] [ 4] [0320] +14:46:55 [ 18] [ 4] [6011] +14:46:55 [ 19] [ 3] [418] +14:46:55 [ 22] [ 3] [021] +14:46:55 [ 25] [ 2] [01] +14:46:55 [ 28] [ 9] [D00002000] +14:46:55 [ 32] [ 6] [180893] +14:46:55 [ 35] [ 32] [6213545000096911=491212019691520] +14:46:55 [ 37] [ 12] [507907269805] +14:46:55 [ 41] [ 8] [0112CPBR] +14:46:55 [ 42] [ 15] [999999 ] +14:46:55 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +14:46:55 [ 49] [ 3] [418] +14:46:55 [ 52] [ 16] [916B4D5FAD120EF4] +14:46:55 ============================================================================ +14:46:55 + + +waiting on router queue for slot.... +14:46:55 Sending to : <0> +14:46:55 ============================================================================ +14:46:55 ============================================================================ +14:46:55 Slot Id : <244> +14:46:55 Transaction Type : REQUEST +14:46:55 Received From : +14:46:55 ============================================================================ +14:46:55 FNo. Len. Field Value +14:46:55 ============================================================================ +14:46:55 [ 1] [ 4] [0200] +14:46:55 [ 2] [ 16] [6213544000074135] +14:46:55 [ 3] [ 6] [010000] +14:46:55 [ 4] [ 12] [000100000000] +14:46:55 [ 7] [ 10] [0320074602] +14:46:55 [ 11] [ 6] [269806] +14:46:55 [ 12] [ 6] [144602] +14:46:55 [ 13] [ 4] [0320] +14:46:55 [ 14] [ 4] [4912] +14:46:55 [ 15] [ 4] [0320] +14:46:55 [ 18] [ 4] [6011] +14:46:55 [ 19] [ 3] [418] +14:46:55 [ 22] [ 3] [021] +14:46:55 [ 25] [ 2] [01] +14:46:55 [ 28] [ 9] [D00002000] +14:46:55 [ 32] [ 6] [180893] +14:46:55 [ 35] [ 32] [6213544000074135=491212017413905] +14:46:55 [ 37] [ 12] [507907269806] +14:46:55 [ 41] [ 8] [0106NAXA] +14:46:55 [ 42] [ 15] [999999 ] +14:46:55 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:46:55 [ 49] [ 3] [418] +14:46:55 [ 52] [ 16] [7A660DA19C242BF2] +14:46:55 ============================================================================ +14:46:55 + + +waiting on router queue for slot.... +14:46:55 Sending to : +14:46:55 ============================================================================ +14:46:55 ============================================================================ +14:46:55 Slot Id : <244> +14:46:55 Transaction Type : REQUEST +14:46:55 Received From : +14:46:55 ============================================================================ +14:46:55 FNo. Len. Field Value +14:46:55 ============================================================================ +14:46:55 [ 1] [ 4] [0200] +14:46:55 [ 2] [ 16] [6213544000074135] +14:46:55 [ 3] [ 6] [010000] +14:46:55 [ 4] [ 12] [000100000000] +14:46:55 [ 7] [ 10] [0320074602] +14:46:55 [ 11] [ 6] [269806] +14:46:55 [ 12] [ 6] [144602] +14:46:55 [ 13] [ 4] [0320] +14:46:55 [ 14] [ 4] [4912] +14:46:55 [ 15] [ 4] [0320] +14:46:55 [ 18] [ 4] [6011] +14:46:55 [ 19] [ 3] [418] +14:46:55 [ 22] [ 3] [021] +14:46:55 [ 25] [ 2] [01] +14:46:55 [ 28] [ 9] [D00002000] +14:46:55 [ 32] [ 6] [180893] +14:46:55 [ 35] [ 32] [6213544000074135=491212017413905] +14:46:55 [ 37] [ 12] [507907269806] +14:46:55 [ 41] [ 8] [0106NAXA] +14:46:55 [ 42] [ 15] [999999 ] +14:46:55 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:46:55 [ 49] [ 3] [418] +14:46:55 [ 52] [ 16] [45341E05561F80C0] +14:46:55 ============================================================================ +14:46:55 + + +waiting on router queue for slot.... +14:46:55 Sending to : <0> +14:46:55 ============================================================================ +14:46:56 ============================================================================ +14:46:56 Slot Id : <248> +14:46:56 Transaction Type : RESPONSE +14:46:56 Received From : +14:46:56 ============================================================================ +14:46:56 FNo. Len. Field Value +14:46:56 ============================================================================ +14:46:56 [ 1] [ 4] [0210] +14:46:56 [ 2] [ 16] [6213545000096911] +14:46:56 [ 3] [ 6] [012000] +14:46:56 [ 4] [ 12] [000030000000] +14:46:56 [ 7] [ 10] [0320074602] +14:46:56 [ 11] [ 6] [269805] +14:46:56 [ 12] [ 6] [144602] +14:46:56 [ 13] [ 4] [0320] +14:46:56 [ 15] [ 4] [0320] +14:46:56 [ 18] [ 4] [6011] +14:46:56 [ 19] [ 3] [418] +14:46:56 [ 32] [ 6] [180893] +14:46:56 [ 35] [ 32] [6213545000096911=491212019691520] +14:46:56 [ 37] [ 12] [507907269805] +14:46:56 [ 38] [ 6] [884606] +14:46:56 [ 39] [ 2] [00] +14:46:56 [ 41] [ 8] [0112CPBR] +14:46:56 [ 49] [ 3] [418] +14:46:56 [ 54] [ 40] [2001418C0000090499242002418C000009049924] +14:46:56 ============================================================================ +14:46:56 Sending to : +14:46:56 ============================================================================ +14:46:56 + + +waiting on router queue for slot.... +14:46:56 ============================================================================ +14:46:56 Slot Id : <244> +14:46:56 Transaction Type : RESPONSE +14:46:56 Received From : +14:46:56 ============================================================================ +14:46:56 FNo. Len. Field Value +14:46:56 ============================================================================ +14:46:56 [ 1] [ 4] [0210] +14:46:56 [ 2] [ 16] [6213544000074135] +14:46:56 [ 3] [ 6] [010000] +14:46:56 [ 4] [ 12] [000100000000] +14:46:56 [ 7] [ 10] [0320074602] +14:46:56 [ 11] [ 6] [269806] +14:46:56 [ 12] [ 6] [144602] +14:46:56 [ 13] [ 4] [0320] +14:46:56 [ 15] [ 4] [0320] +14:46:56 [ 18] [ 4] [6011] +14:46:56 [ 19] [ 3] [418] +14:46:56 [ 32] [ 6] [180893] +14:46:56 [ 35] [ 32] [6213544000074135=491212017413905] +14:46:56 [ 37] [ 12] [507907269806] +14:46:56 [ 38] [ 6] [085383] +14:46:56 [ 39] [ 2] [00] +14:46:56 [ 41] [ 8] [0106NAXA] +14:46:56 [ 49] [ 3] [418] +14:46:56 [ 54] [ 40] [0001418C0008949327140002418C000894932714] +14:46:56 ============================================================================ +14:46:56 Sending to : +14:46:56 ============================================================================ +14:46:56 + + +waiting on router queue for slot.... +14:46:57 ============================================================================ +14:46:57 Slot Id : <248> +14:46:57 Transaction Type : RESPONSE +14:46:57 Received From : +14:46:57 ============================================================================ +14:46:57 FNo. Len. Field Value +14:46:57 ============================================================================ +14:46:57 [ 1] [ 4] [0210] +14:46:57 [ 2] [ 16] [6213545000096911] +14:46:57 [ 3] [ 6] [012000] +14:46:57 [ 4] [ 12] [000030000000] +14:46:57 [ 7] [ 10] [0320074602] +14:46:57 [ 11] [ 6] [269805] +14:46:57 [ 12] [ 6] [144602] +14:46:57 [ 13] [ 4] [0320] +14:46:57 [ 15] [ 4] [0320] +14:46:57 [ 18] [ 4] [6011] +14:46:57 [ 19] [ 3] [418] +14:46:57 [ 32] [ 6] [180893] +14:46:57 [ 35] [ 32] [6213545000096911=491212019691520] +14:46:57 [ 37] [ 12] [507907269805] +14:46:57 [ 38] [ 6] [884606] +14:46:57 [ 39] [ 2] [00] +14:46:57 [ 41] [ 8] [0112CPBR] +14:46:57 [ 49] [ 3] [418] +14:46:57 [ 54] [ 40] [2001418C0000090499242002418C000009049924] +14:46:57 ============================================================================ +14:46:57 Calculate Source COMM Id = 2 +14:46:57 ============================================================================ +14:46:57 + + +waiting on router queue for slot.... +14:46:59 ============================================================================ +14:46:59 Slot Id : <244> +14:46:59 Transaction Type : RESPONSE +14:46:59 Received From : +14:46:59 ============================================================================ +14:46:59 FNo. Len. Field Value +14:46:59 ============================================================================ +14:46:59 [ 1] [ 4] [0210] +14:46:59 [ 2] [ 16] [6213544000074135] +14:46:59 [ 3] [ 6] [010000] +14:46:59 [ 4] [ 12] [000100000000] +14:46:59 [ 7] [ 10] [0320074602] +14:46:59 [ 11] [ 6] [269806] +14:46:59 [ 12] [ 6] [144602] +14:46:59 [ 13] [ 4] [0320] +14:46:59 [ 15] [ 4] [0320] +14:46:59 [ 18] [ 4] [6011] +14:46:59 [ 19] [ 3] [418] +14:46:59 [ 32] [ 6] [180893] +14:46:59 [ 35] [ 32] [6213544000074135=491212017413905] +14:46:59 [ 37] [ 12] [507907269806] +14:46:59 [ 38] [ 6] [085383] +14:46:59 [ 39] [ 2] [00] +14:46:59 [ 41] [ 8] [0106NAXA] +14:46:59 [ 49] [ 3] [418] +14:46:59 [ 54] [ 40] [0001418C0008949327140002418C000894932714] +14:46:59 ============================================================================ +14:46:59 Calculate Source COMM Id = 2 +14:46:59 ============================================================================ +14:46:59 + + +waiting on router queue for slot.... +14:47:04 ============================================================================ +14:47:04 Slot Id : <235> +14:47:04 Transaction Type : REQUEST +14:47:04 Received From : +14:47:04 ============================================================================ +14:47:04 FNo. Len. Field Value +14:47:04 ============================================================================ +14:47:04 [ 1] [ 4] [0200] +14:47:04 [ 2] [ 16] [6688990040135517] +14:47:04 [ 3] [ 6] [010000] +14:47:04 [ 4] [ 12] [000070000000] +14:47:04 [ 7] [ 10] [0320144659] +14:47:04 [ 11] [ 6] [774544] +14:47:04 [ 12] [ 6] [144659] +14:47:04 [ 13] [ 4] [0320] +14:47:04 [ 15] [ 4] [0320] +14:47:04 [ 18] [ 4] [6011] +14:47:04 [ 22] [ 3] [900] +14:47:04 [ 25] [ 2] [02] +14:47:04 [ 28] [ 9] [D00002000] +14:47:04 [ 32] [ 6] [621354] +14:47:04 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:47:04 [ 37] [ 12] [507904719687] +14:47:04 [ 41] [ 8] [18001000] +14:47:04 [ 42] [ 15] [NATIVE ] +14:47:04 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:47:04 [ 49] [ 3] [418] +14:47:04 [ 52] [ 16] [B2AA00523B1FF68E] +14:47:04 ============================================================================ +14:47:04 + + +waiting on router queue for slot.... +14:47:04 Sending to : +14:47:04 ============================================================================ +14:47:04 Sending to : +14:47:04 ============================================================================ +14:47:04 ============================================================================ +14:47:04 Slot Id : <235> +14:47:04 Transaction Type : REQUEST +14:47:04 Received From : +14:47:04 ============================================================================ +14:47:04 FNo. Len. Field Value +14:47:04 ============================================================================ +14:47:04 [ 1] [ 4] [0200] +14:47:04 [ 2] [ 16] [6688990040135517] +14:47:04 [ 3] [ 6] [010000] +14:47:04 [ 4] [ 12] [000070000000] +14:47:04 [ 7] [ 10] [0320144659] +14:47:04 [ 11] [ 6] [774544] +14:47:04 [ 12] [ 6] [144659] +14:47:04 [ 13] [ 4] [0320] +14:47:04 [ 15] [ 4] [0320] +14:47:04 [ 18] [ 4] [6011] +14:47:04 [ 22] [ 3] [900] +14:47:04 [ 25] [ 2] [02] +14:47:04 [ 28] [ 9] [D00002000] +14:47:04 [ 32] [ 6] [621354] +14:47:04 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:47:04 [ 37] [ 12] [507904719687] +14:47:04 [ 41] [ 8] [18001000] +14:47:04 [ 42] [ 15] [NATIVE ] +14:47:04 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:47:04 [ 49] [ 3] [418] +14:47:04 [ 52] [ 16] [B2AA00523B1FF68E] +14:47:04 ============================================================================ +14:47:04 + + +waiting on router queue for slot.... +14:47:04 Sending to : +14:47:04 ============================================================================ +14:47:04 ============================================================================ +14:47:04 Slot Id : <235> +14:47:04 Transaction Type : REQUEST +14:47:04 Received From : +14:47:04 ============================================================================ +14:47:04 FNo. Len. Field Value +14:47:04 ============================================================================ +14:47:04 [ 1] [ 4] [0200] +14:47:04 [ 2] [ 16] [6688990040135517] +14:47:04 [ 3] [ 6] [010000] +14:47:04 [ 4] [ 12] [000070000000] +14:47:04 [ 7] [ 10] [0320144659] +14:47:04 [ 11] [ 6] [774544] +14:47:04 [ 12] [ 6] [144659] +14:47:04 [ 13] [ 4] [0320] +14:47:04 [ 15] [ 4] [0320] +14:47:04 [ 18] [ 4] [6011] +14:47:04 [ 22] [ 3] [900] +14:47:04 [ 25] [ 2] [02] +14:47:04 [ 28] [ 9] [D00002000] +14:47:04 [ 32] [ 6] [621354] +14:47:04 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:47:04 [ 37] [ 12] [507904719687] +14:47:04 [ 41] [ 8] [18001000] +14:47:04 [ 42] [ 15] [NATIVE ] +14:47:04 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:47:04 [ 49] [ 3] [418] +14:47:04 [ 52] [ 16] [E4292B036CF5E720] +14:47:04 ============================================================================ +14:47:04 + + +waiting on router queue for slot.... +14:47:04 Sending to : <4> +14:47:04 ============================================================================ +14:47:04 ============================================================================ +14:47:04 Slot Id : <227> +14:47:04 Transaction Type : REQUEST +14:47:04 Received From : +14:47:04 ============================================================================ +14:47:04 FNo. Len. Field Value +14:47:04 ============================================================================ +14:47:04 [ 1] [ 4] [0800] +14:47:04 [ 7] [ 10] [0320215853] +14:47:04 [ 11] [ 6] [145853] +14:47:04 [ 37] [ 12] [57914145853] +14:47:04 [ 70] [ 3] [301] +14:47:04 ============================================================================ +14:47:04 + + +waiting on router queue for slot.... +14:47:04 Sending to : +14:47:04 ============================================================================ +14:47:04 ============================================================================ +14:47:04 Slot Id : <227> +14:47:04 Transaction Type : RESPONSE +14:47:04 Received From : +14:47:04 ============================================================================ +14:47:04 FNo. Len. Field Value +14:47:04 ============================================================================ +14:47:04 [ 1] [ 4] [0810] +14:47:04 [ 7] [ 10] [0320215853] +14:47:04 [ 11] [ 6] [145853] +14:47:04 [ 37] [ 12] [579141458530] +14:47:04 [ 39] [ 2] [00] +14:47:04 [ 70] [ 3] [810] +14:47:04 ============================================================================ +14:47:04 Calculate Source COMM Id = 6 +14:47:04 ============================================================================ +14:47:04 + + +waiting on router queue for slot.... +14:47:05 ============================================================================ +14:47:05 Slot Id : <235> +14:47:05 Transaction Type : RESPONSE +14:47:05 Received From : +14:47:05 ============================================================================ +14:47:05 FNo. Len. Field Value +14:47:05 ============================================================================ +14:47:05 [ 1] [ 4] [0210] +14:47:05 [ 2] [ 16] [6688990040135517] +14:47:05 [ 3] [ 6] [010000] +14:47:05 [ 4] [ 12] [000070000000] +14:47:05 [ 11] [ 6] [774544] +14:47:05 [ 12] [ 6] [144659] +14:47:05 [ 15] [ 4] [0320] +14:47:05 [ 18] [ 4] [6011] +14:47:05 [ 32] [ 6] [621354] +14:47:05 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:47:05 [ 37] [ 12] [507904719687] +14:47:05 [ 38] [ 6] [785093] +14:47:05 [ 39] [ 2] [00] +14:47:05 [ 41] [ 8] [18001000] +14:47:05 [ 49] [ 3] [418] +14:47:05 [ 54] [ 20] [0002418C000004988817] +14:47:05 ============================================================================ +14:47:05 Sending to : +14:47:05 ============================================================================ +14:47:05 + + +waiting on router queue for slot.... +14:47:07 ============================================================================ +14:47:07 Slot Id : <235> +14:47:07 Transaction Type : RESPONSE +14:47:07 Received From : +14:47:07 ============================================================================ +14:47:07 FNo. Len. Field Value +14:47:07 ============================================================================ +14:47:07 [ 1] [ 4] [0210] +14:47:07 [ 2] [ 16] [6688990040135517] +14:47:07 [ 3] [ 6] [010000] +14:47:07 [ 4] [ 12] [000070000000] +14:47:07 [ 11] [ 6] [774544] +14:47:07 [ 12] [ 6] [144659] +14:47:07 [ 15] [ 4] [0320] +14:47:07 [ 18] [ 4] [6011] +14:47:07 [ 32] [ 6] [621354] +14:47:07 [ 35] [ 37] [6688990040135517=98041261219932000000] +14:47:07 [ 37] [ 12] [507904719687] +14:47:07 [ 38] [ 6] [785093] +14:47:07 [ 39] [ 2] [00] +14:47:07 [ 41] [ 8] [18001000] +14:47:07 [ 49] [ 3] [418] +14:47:07 [ 54] [ 20] [0002418C000004988817] +14:47:07 ============================================================================ +14:47:07 Calculate Source COMM Id = 0 +14:47:07 ============================================================================ +14:47:07 + + +waiting on router queue for slot.... +14:47:13 ============================================================================ +14:47:13 Slot Id : <251> +14:47:13 Transaction Type : REQUEST +14:47:13 Received From : +14:47:13 ============================================================================ +14:47:13 FNo. Len. Field Value +14:47:13 ============================================================================ +14:47:13 [ 1] [ 4] [0800] +14:47:13 [ 7] [ 10] [0320074620] +14:47:13 [ 11] [ 6] [156852] +14:47:13 [ 70] [ 3] [301] +14:47:13 ============================================================================ +14:47:13 + + +waiting on router queue for slot.... +14:47:13 Sending to : +14:47:13 ============================================================================ +14:47:13 ============================================================================ +14:47:13 Slot Id : <251> +14:47:13 Transaction Type : RESPONSE +14:47:13 Received From : +14:47:13 ============================================================================ +14:47:13 FNo. Len. Field Value +14:47:13 ============================================================================ +14:47:13 [ 1] [ 4] [0810] +14:47:13 [ 7] [ 10] [0320074620] +14:47:13 [ 11] [ 6] [156852] +14:47:13 [ 39] [ 2] [00] +14:47:13 [ 70] [ 3] [301] +14:47:13 ============================================================================ +14:47:13 Calculate Source COMM Id = 2 +14:47:13 ============================================================================ +14:47:13 + + +waiting on router queue for slot.... +14:47:14 ============================================================================ +14:47:14 Slot Id : <177> +14:47:14 Transaction Type : REQUEST +14:47:14 Received From : +14:47:14 ============================================================================ +14:47:14 FNo. Len. Field Value +14:47:14 ============================================================================ +14:47:14 [ 1] [ 4] [0800] +14:47:14 [ 2] [ 5] [02531] +14:47:14 [ 3] [ 6] [579148] +14:47:14 [ 7] [ 10] [0320074714] +14:47:14 [ 11] [ 6] [807270] +14:47:14 [ 15] [ 10] [0320074714] +14:47:14 [ 37] [ 11] [57914807270] +14:47:14 [ 70] [ 3] [001] +14:47:14 ============================================================================ +14:47:14 + + +waiting on router queue for slot.... +14:47:14 ============================================================================ +14:47:14 Slot Id : <177> +14:47:14 Transaction Type : RESPONSE +14:47:14 Received From : +14:47:14 ============================================================================ +14:47:14 FNo. Len. Field Value +14:47:14 ============================================================================ +14:47:14 [ 1] [ 4] [0810] +14:47:14 [ 7] [ 10] [0320074714] +14:47:14 [ 11] [ 6] [807270] +14:47:14 [ 15] [ 4] [0320] +14:47:14 [ 37] [ 12] [57914807270] +14:47:14 [ 39] [ 2] [00] +14:47:14 [ 70] [ 3] [001] +14:47:14 ============================================================================ +14:47:14 Sending to : +14:47:14 ============================================================================ +14:47:14 + + +waiting on router queue for slot.... +14:47:17 ============================================================================ +14:47:17 Slot Id : <250> +14:47:17 Transaction Type : REQUEST +14:47:17 Received From : +14:47:17 ============================================================================ +14:47:17 FNo. Len. Field Value +14:47:17 ============================================================================ +14:47:17 [ 1] [ 4] [0200] +14:47:17 [ 2] [ 16] [1808930600043293] +14:47:17 [ 3] [ 6] [301000] +14:47:17 [ 4] [ 12] [000000000000] +14:47:17 [ 7] [ 10] [0320144712] +14:47:17 [ 11] [ 6] [774592] +14:47:17 [ 12] [ 6] [144712] +14:47:17 [ 13] [ 4] [0320] +14:47:17 [ 15] [ 4] [0320] +14:47:17 [ 18] [ 4] [6011] +14:47:17 [ 22] [ 3] [900] +14:47:17 [ 25] [ 2] [02] +14:47:17 [ 28] [ 9] [D00000000] +14:47:17 [ 32] [ 6] [621354] +14:47:17 [ 35] [ 27] [1808930600043293=1803500067] +14:47:17 [ 37] [ 12] [507905057684] +14:47:17 [ 41] [ 8] [03004300] +14:47:17 [ 42] [ 15] [NATIVE ] +14:47:17 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +14:47:17 [ 49] [ 3] [418] +14:47:17 [ 52] [ 16] [4B7DFD736F87B640] +14:47:17 ============================================================================ +14:47:17 + + +waiting on router queue for slot.... +14:47:17 Sending to : +14:47:17 ============================================================================ +14:47:17 Sending to : +14:47:17 ============================================================================ +14:47:17 ============================================================================ +14:47:17 Slot Id : <250> +14:47:17 Transaction Type : REQUEST +14:47:17 Received From : +14:47:17 ============================================================================ +14:47:17 FNo. Len. Field Value +14:47:17 ============================================================================ +14:47:17 [ 1] [ 4] [0200] +14:47:17 [ 2] [ 16] [1808930600043293] +14:47:17 [ 3] [ 6] [301000] +14:47:17 [ 4] [ 12] [000000000000] +14:47:17 [ 7] [ 10] [0320144712] +14:47:17 [ 11] [ 6] [774592] +14:47:17 [ 12] [ 6] [144712] +14:47:17 [ 13] [ 4] [0320] +14:47:17 [ 15] [ 4] [0320] +14:47:17 [ 18] [ 4] [6011] +14:47:17 [ 22] [ 3] [900] +14:47:17 [ 25] [ 2] [02] +14:47:17 [ 28] [ 9] [D00000000] +14:47:17 [ 32] [ 6] [621354] +14:47:17 [ 35] [ 27] [1808930600043293=1803500067] +14:47:17 [ 37] [ 12] [507905057684] +14:47:17 [ 41] [ 8] [03004300] +14:47:17 [ 42] [ 15] [NATIVE ] +14:47:17 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +14:47:17 [ 49] [ 3] [418] +14:47:17 [ 52] [ 16] [4B7DFD736F87B640] +14:47:17 ============================================================================ +14:47:17 + + +waiting on router queue for slot.... +14:47:17 Sending to : +14:47:17 ============================================================================ +14:47:17 ============================================================================ +14:47:17 Slot Id : <250> +14:47:17 Transaction Type : REQUEST +14:47:17 Received From : +14:47:17 ============================================================================ +14:47:17 FNo. Len. Field Value +14:47:17 ============================================================================ +14:47:17 [ 1] [ 4] [0200] +14:47:17 [ 2] [ 16] [1808930600043293] +14:47:17 [ 3] [ 6] [301000] +14:47:17 [ 4] [ 12] [000000000000] +14:47:17 [ 7] [ 10] [0320144712] +14:47:17 [ 11] [ 6] [774592] +14:47:17 [ 12] [ 6] [144712] +14:47:17 [ 13] [ 4] [0320] +14:47:17 [ 15] [ 4] [0320] +14:47:17 [ 18] [ 4] [6011] +14:47:17 [ 22] [ 3] [900] +14:47:17 [ 25] [ 2] [02] +14:47:17 [ 28] [ 9] [D00000000] +14:47:17 [ 32] [ 6] [621354] +14:47:17 [ 35] [ 27] [1808930600043293=1803500067] +14:47:17 [ 37] [ 12] [507905057684] +14:47:17 [ 41] [ 8] [03004300] +14:47:17 [ 42] [ 15] [NATIVE ] +14:47:17 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +14:47:17 [ 49] [ 3] [418] +14:47:17 [ 52] [ 16] [23DE3D3687DCE508] +14:47:17 ============================================================================ +14:47:17 + + +waiting on router queue for slot.... +14:47:17 Sending to : <2> +14:47:17 ============================================================================ +14:47:18 ============================================================================ +14:47:18 Slot Id : <242> +14:47:18 Transaction Type : REQUEST +14:47:18 Received From : +14:47:18 ============================================================================ +14:47:18 FNo. Len. Field Value +14:47:18 ============================================================================ +14:47:18 [ 1] [ 4] [0200] +14:47:18 [ 2] [ 16] [6688990108430503] +14:47:18 [ 3] [ 6] [010000] +14:47:18 [ 4] [ 12] [000100000000] +14:47:18 [ 7] [ 10] [0320144713] +14:47:18 [ 11] [ 6] [774593] +14:47:18 [ 12] [ 6] [144713] +14:47:18 [ 13] [ 4] [0320] +14:47:18 [ 15] [ 4] [0320] +14:47:18 [ 18] [ 4] [6011] +14:47:18 [ 22] [ 3] [900] +14:47:18 [ 25] [ 2] [02] +14:47:18 [ 28] [ 9] [D00002000] +14:47:18 [ 32] [ 6] [621354] +14:47:18 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:47:18 [ 37] [ 12] [507903499508] +14:47:18 [ 41] [ 8] [06002200] +14:47:18 [ 42] [ 15] [NATIVE ] +14:47:18 [ 43] [ 40] [Beng Market Beng LAO] +14:47:18 [ 49] [ 3] [418] +14:47:18 [ 52] [ 16] [C7B63C92FBC10BF3] +14:47:18 ============================================================================ +14:47:18 + + +waiting on router queue for slot.... +14:47:18 Sending to : +14:47:18 ============================================================================ +14:47:18 Sending to : +14:47:18 ============================================================================ +14:47:18 ============================================================================ +14:47:18 Slot Id : <242> +14:47:18 Transaction Type : REQUEST +14:47:18 Received From : +14:47:18 ============================================================================ +14:47:18 FNo. Len. Field Value +14:47:18 ============================================================================ +14:47:18 [ 1] [ 4] [0200] +14:47:18 [ 2] [ 16] [6688990108430503] +14:47:18 [ 3] [ 6] [010000] +14:47:18 [ 4] [ 12] [000100000000] +14:47:18 [ 7] [ 10] [0320144713] +14:47:18 [ 11] [ 6] [774593] +14:47:18 [ 12] [ 6] [144713] +14:47:18 [ 13] [ 4] [0320] +14:47:18 [ 15] [ 4] [0320] +14:47:18 [ 18] [ 4] [6011] +14:47:18 [ 22] [ 3] [900] +14:47:18 [ 25] [ 2] [02] +14:47:18 [ 28] [ 9] [D00002000] +14:47:18 [ 32] [ 6] [621354] +14:47:18 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:47:18 [ 37] [ 12] [507903499508] +14:47:18 [ 41] [ 8] [06002200] +14:47:18 [ 42] [ 15] [NATIVE ] +14:47:18 [ 43] [ 40] [Beng Market Beng LAO] +14:47:18 [ 49] [ 3] [418] +14:47:18 [ 52] [ 16] [C7B63C92FBC10BF3] +14:47:18 ============================================================================ +14:47:18 + + +waiting on router queue for slot.... +14:47:18 Sending to : +14:47:18 ============================================================================ +14:47:18 ============================================================================ +14:47:18 Slot Id : <242> +14:47:18 Transaction Type : REQUEST +14:47:18 Received From : +14:47:18 ============================================================================ +14:47:18 FNo. Len. Field Value +14:47:18 ============================================================================ +14:47:18 [ 1] [ 4] [0200] +14:47:18 [ 2] [ 16] [6688990108430503] +14:47:18 [ 3] [ 6] [010000] +14:47:18 [ 4] [ 12] [000100000000] +14:47:18 [ 7] [ 10] [0320144713] +14:47:18 [ 11] [ 6] [774593] +14:47:18 [ 12] [ 6] [144713] +14:47:18 [ 13] [ 4] [0320] +14:47:18 [ 15] [ 4] [0320] +14:47:18 [ 18] [ 4] [6011] +14:47:18 [ 22] [ 3] [900] +14:47:18 [ 25] [ 2] [02] +14:47:18 [ 28] [ 9] [D00002000] +14:47:18 [ 32] [ 6] [621354] +14:47:18 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:47:18 [ 37] [ 12] [507903499508] +14:47:18 [ 41] [ 8] [06002200] +14:47:18 [ 42] [ 15] [NATIVE ] +14:47:18 [ 43] [ 40] [Beng Market Beng LAO] +14:47:18 [ 49] [ 3] [418] +14:47:18 [ 52] [ 16] [6EB8918F0BC2E700] +14:47:18 ============================================================================ +14:47:18 + + +waiting on router queue for slot.... +14:47:18 Sending to : <4> +14:47:18 ============================================================================ +14:47:20 ============================================================================ +14:47:20 Slot Id : <242> +14:47:20 Transaction Type : RESPONSE +14:47:20 Received From : +14:47:20 ============================================================================ +14:47:20 FNo. Len. Field Value +14:47:20 ============================================================================ +14:47:20 [ 1] [ 4] [0210] +14:47:20 [ 2] [ 16] [6688990108430503] +14:47:20 [ 3] [ 6] [010000] +14:47:20 [ 4] [ 12] [000100000000] +14:47:20 [ 11] [ 6] [774593] +14:47:20 [ 12] [ 6] [144713] +14:47:20 [ 15] [ 4] [0320] +14:47:20 [ 18] [ 4] [6011] +14:47:20 [ 32] [ 6] [621354] +14:47:20 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:47:20 [ 37] [ 12] [507903499508] +14:47:20 [ 38] [ 6] [672708] +14:47:20 [ 39] [ 2] [00] +14:47:20 [ 41] [ 8] [06002200] +14:47:20 [ 49] [ 3] [418] +14:47:20 [ 54] [ 20] [0002418C000247407192] +14:47:20 ============================================================================ +14:47:20 Sending to : +14:47:20 ============================================================================ +14:47:20 + + +waiting on router queue for slot.... +14:47:21 ============================================================================ +14:47:21 Slot Id : <250> +14:47:21 Transaction Type : RESPONSE +14:47:21 Received From : +14:47:21 ============================================================================ +14:47:21 FNo. Len. Field Value +14:47:21 ============================================================================ +14:47:21 [ 1] [ 4] [0210] +14:47:21 [ 2] [ 16] [1808930600043293] +14:47:21 [ 3] [ 6] [301000] +14:47:21 [ 7] [ 10] [0320144712] +14:47:21 [ 11] [ 6] [774592] +14:47:21 [ 12] [ 6] [144712] +14:47:21 [ 13] [ 4] [0320] +14:47:21 [ 14] [ 4] [1803] +14:47:21 [ 19] [ 3] [418] +14:47:21 [ 32] [ 6] [621354] +14:47:21 [ 37] [ 12] [507905057684] +14:47:21 [ 38] [ 6] [774592] +14:47:21 [ 39] [ 2] [00] +14:47:21 [ 41] [ 8] [03004300] +14:47:21 [ 49] [ 3] [418] +14:47:21 [ 52] [ 16] [23DE3D3687DCE508] +14:47:21 [ 54] [ 20] [1002418C000093877300] +14:47:21 ============================================================================ +14:47:21 Sending to : +14:47:21 ============================================================================ +14:47:21 + + +waiting on router queue for slot.... +14:47:21 ============================================================================ +14:47:21 Slot Id : <242> +14:47:21 Transaction Type : RESPONSE +14:47:21 Received From : +14:47:21 ============================================================================ +14:47:21 FNo. Len. Field Value +14:47:21 ============================================================================ +14:47:21 [ 1] [ 4] [0210] +14:47:21 [ 2] [ 16] [6688990108430503] +14:47:21 [ 3] [ 6] [010000] +14:47:21 [ 4] [ 12] [000100000000] +14:47:21 [ 11] [ 6] [774593] +14:47:21 [ 12] [ 6] [144713] +14:47:21 [ 15] [ 4] [0320] +14:47:21 [ 18] [ 4] [6011] +14:47:21 [ 32] [ 6] [621354] +14:47:21 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:47:21 [ 37] [ 12] [507903499508] +14:47:21 [ 38] [ 6] [672708] +14:47:21 [ 39] [ 2] [00] +14:47:21 [ 41] [ 8] [06002200] +14:47:21 [ 49] [ 3] [418] +14:47:21 [ 54] [ 20] [0002418C000247407192] +14:47:21 ============================================================================ +14:47:21 Calculate Source COMM Id = 0 +14:47:21 ============================================================================ +14:47:21 + + +waiting on router queue for slot.... +14:47:22 ============================================================================ +14:47:22 Slot Id : <226> +14:47:22 Transaction Type : REQUEST +14:47:22 Received From : +14:47:22 ============================================================================ +14:47:22 FNo. Len. Field Value +14:47:22 ============================================================================ +14:47:22 [ 1] [ 4] [0200] +14:47:22 [ 2] [ 16] [6688990603028703] +14:47:22 [ 3] [ 6] [303000] +14:47:22 [ 4] [ 12] [000000000000] +14:47:22 [ 7] [ 10] [0320144718] +14:47:22 [ 11] [ 6] [774616] +14:47:22 [ 12] [ 6] [144718] +14:47:22 [ 13] [ 4] [0320] +14:47:22 [ 15] [ 4] [0320] +14:47:22 [ 18] [ 4] [6011] +14:47:22 [ 22] [ 3] [900] +14:47:22 [ 25] [ 2] [02] +14:47:22 [ 28] [ 9] [D00000000] +14:47:22 [ 32] [ 6] [621354] +14:47:22 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:47:22 [ 37] [ 12] [507904743918] +14:47:22 [ 41] [ 8] [07001000] +14:47:22 [ 42] [ 15] [NATIVE ] +14:47:22 [ 43] [ 40] [LNT Branch02 Namtar LAO] +14:47:22 [ 49] [ 3] [418] +14:47:22 [ 52] [ 16] [C24EAF7387258530] +14:47:22 ============================================================================ +14:47:22 + + +waiting on router queue for slot.... +14:47:22 Sending to : +14:47:22 ============================================================================ +14:47:22 Sending to : +14:47:22 ============================================================================ +14:47:23 ============================================================================ +14:47:23 Slot Id : <226> +14:47:23 Transaction Type : REQUEST +14:47:23 Received From : +14:47:23 ============================================================================ +14:47:23 FNo. Len. Field Value +14:47:23 ============================================================================ +14:47:23 [ 1] [ 4] [0200] +14:47:23 [ 2] [ 16] [6688990603028703] +14:47:23 [ 3] [ 6] [303000] +14:47:23 [ 4] [ 12] [000000000000] +14:47:23 [ 7] [ 10] [0320144718] +14:47:23 [ 11] [ 6] [774616] +14:47:23 [ 12] [ 6] [144718] +14:47:23 [ 13] [ 4] [0320] +14:47:23 [ 15] [ 4] [0320] +14:47:23 [ 18] [ 4] [6011] +14:47:23 [ 22] [ 3] [900] +14:47:23 [ 25] [ 2] [02] +14:47:23 [ 28] [ 9] [D00000000] +14:47:23 [ 32] [ 6] [621354] +14:47:23 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:47:23 [ 37] [ 12] [507904743918] +14:47:23 [ 41] [ 8] [07001000] +14:47:23 [ 42] [ 15] [NATIVE ] +14:47:23 [ 43] [ 40] [LNT Branch02 Namtar LAO] +14:47:23 [ 49] [ 3] [418] +14:47:23 [ 52] [ 16] [C24EAF7387258530] +14:47:23 ============================================================================ +14:47:23 + + +waiting on router queue for slot.... +14:47:23 Sending to : +14:47:23 ============================================================================ +14:47:23 ============================================================================ +14:47:23 Slot Id : <226> +14:47:23 Transaction Type : REQUEST +14:47:23 Received From : +14:47:23 ============================================================================ +14:47:23 FNo. Len. Field Value +14:47:23 ============================================================================ +14:47:23 [ 1] [ 4] [0200] +14:47:23 [ 2] [ 16] [6688990603028703] +14:47:23 [ 3] [ 6] [303000] +14:47:23 [ 4] [ 12] [000000000000] +14:47:23 [ 7] [ 10] [0320144718] +14:47:23 [ 11] [ 6] [774616] +14:47:23 [ 12] [ 6] [144718] +14:47:23 [ 13] [ 4] [0320] +14:47:23 [ 15] [ 4] [0320] +14:47:23 [ 18] [ 4] [6011] +14:47:23 [ 22] [ 3] [900] +14:47:23 [ 25] [ 2] [02] +14:47:23 [ 28] [ 9] [D00000000] +14:47:23 [ 32] [ 6] [621354] +14:47:23 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:47:23 [ 37] [ 12] [507904743918] +14:47:23 [ 41] [ 8] [07001000] +14:47:23 [ 42] [ 15] [NATIVE ] +14:47:23 [ 43] [ 40] [LNT Branch02 Namtar LAO] +14:47:23 [ 49] [ 3] [418] +14:47:23 [ 52] [ 16] [8EED4002B97D240C] +14:47:23 ============================================================================ +14:47:23 + + +waiting on router queue for slot.... +14:47:23 Sending to : <4> +14:47:23 ============================================================================ +14:47:23 ============================================================================ +14:47:23 Slot Id : <250> +14:47:23 Transaction Type : RESPONSE +14:47:23 Received From : +14:47:23 ============================================================================ +14:47:23 FNo. Len. Field Value +14:47:23 ============================================================================ +14:47:23 [ 1] [ 4] [0210] +14:47:23 [ 2] [ 16] [1808930600043293] +14:47:23 [ 3] [ 6] [301000] +14:47:23 [ 7] [ 10] [0320144712] +14:47:23 [ 11] [ 6] [774592] +14:47:23 [ 12] [ 6] [144712] +14:47:23 [ 13] [ 4] [0320] +14:47:23 [ 14] [ 4] [1803] +14:47:23 [ 19] [ 3] [418] +14:47:23 [ 32] [ 6] [621354] +14:47:23 [ 37] [ 12] [507905057684] +14:47:23 [ 38] [ 6] [774592] +14:47:23 [ 39] [ 2] [00] +14:47:23 [ 41] [ 8] [03004300] +14:47:23 [ 49] [ 3] [418] +14:47:23 [ 52] [ 16] [23DE3D3687DCE508] +14:47:23 [ 54] [ 20] [1002418C000093877300] +14:47:23 ============================================================================ +14:47:23 Calculate Source COMM Id = 0 +14:47:23 ============================================================================ +14:47:23 + + +waiting on router queue for slot.... +14:47:24 ============================================================================ +14:47:24 Slot Id : <226> +14:47:24 Transaction Type : RESPONSE +14:47:24 Received From : +14:47:24 ============================================================================ +14:47:24 FNo. Len. Field Value +14:47:24 ============================================================================ +14:47:24 [ 1] [ 4] [0210] +14:47:24 [ 2] [ 16] [6688990603028703] +14:47:24 [ 3] [ 6] [303000] +14:47:24 [ 4] [ 12] [000000000000] +14:47:24 [ 11] [ 6] [774616] +14:47:24 [ 12] [ 6] [144718] +14:47:24 [ 15] [ 4] [0320] +14:47:24 [ 18] [ 4] [6011] +14:47:24 [ 32] [ 6] [621354] +14:47:24 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:47:24 [ 37] [ 12] [507904743918] +14:47:24 [ 38] [ 6] [354150] +14:47:24 [ 39] [ 2] [00] +14:47:24 [ 41] [ 8] [07001000] +14:47:24 [ 49] [ 3] [418] +14:47:24 [ 54] [ 20] [3002418C000141746549] +14:47:24 ============================================================================ +14:47:24 Sending to : +14:47:24 ============================================================================ +14:47:24 + + +waiting on router queue for slot.... +14:47:24 ============================================================================ +14:47:24 Slot Id : <226> +14:47:24 Transaction Type : RESPONSE +14:47:24 Received From : +14:47:24 ============================================================================ +14:47:24 FNo. Len. Field Value +14:47:24 ============================================================================ +14:47:24 [ 1] [ 4] [0210] +14:47:24 [ 2] [ 16] [6688990603028703] +14:47:24 [ 3] [ 6] [303000] +14:47:24 [ 4] [ 12] [000000000000] +14:47:24 [ 11] [ 6] [774616] +14:47:24 [ 12] [ 6] [144718] +14:47:24 [ 15] [ 4] [0320] +14:47:24 [ 18] [ 4] [6011] +14:47:24 [ 32] [ 6] [621354] +14:47:24 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:47:24 [ 37] [ 12] [507904743918] +14:47:24 [ 38] [ 6] [354150] +14:47:24 [ 39] [ 2] [00] +14:47:24 [ 41] [ 8] [07001000] +14:47:24 [ 49] [ 3] [418] +14:47:24 [ 54] [ 20] [3002418C000141746549] +14:47:24 ============================================================================ +14:47:24 Calculate Source COMM Id = 0 +14:47:24 ============================================================================ +14:47:24 + + +waiting on router queue for slot.... +14:47:33 ============================================================================ +14:47:33 Slot Id : <255> +14:47:33 Transaction Type : REQUEST +14:47:33 Received From : +14:47:33 ============================================================================ +14:47:33 FNo. Len. Field Value +14:47:33 ============================================================================ +14:47:33 [ 1] [ 4] [0800] +14:47:33 [ 7] [ 10] [0320074641] +14:47:33 [ 11] [ 6] [156853] +14:47:33 [ 70] [ 3] [301] +14:47:33 ============================================================================ +14:47:33 + + +waiting on router queue for slot.... +14:47:33 Sending to : +14:47:33 ============================================================================ +14:47:33 ============================================================================ +14:47:33 Slot Id : <255> +14:47:33 Transaction Type : RESPONSE +14:47:33 Received From : +14:47:33 ============================================================================ +14:47:33 FNo. Len. Field Value +14:47:33 ============================================================================ +14:47:33 [ 1] [ 4] [0810] +14:47:33 [ 7] [ 10] [0320074641] +14:47:33 [ 11] [ 6] [156853] +14:47:33 [ 39] [ 2] [00] +14:47:33 [ 70] [ 3] [301] +14:47:33 ============================================================================ +14:47:33 Calculate Source COMM Id = 2 +14:47:33 ============================================================================ +14:47:33 + + +waiting on router queue for slot.... +14:47:37 ============================================================================ +14:47:37 Slot Id : <233> +14:47:37 Transaction Type : REQUEST +14:47:37 Received From : +14:47:37 ============================================================================ +14:47:37 FNo. Len. Field Value +14:47:37 ============================================================================ +14:47:37 [ 1] [ 4] [0200] +14:47:37 [ 2] [ 16] [6688990040142034] +14:47:37 [ 3] [ 6] [010000] +14:47:37 [ 4] [ 12] [000100000000] +14:47:37 [ 7] [ 10] [0320074643] +14:47:37 [ 11] [ 6] [269812] +14:47:37 [ 12] [ 6] [144643] +14:47:37 [ 13] [ 4] [0320] +14:47:37 [ 14] [ 4] [9804] +14:47:37 [ 15] [ 4] [0320] +14:47:37 [ 18] [ 4] [6011] +14:47:37 [ 19] [ 3] [418] +14:47:37 [ 22] [ 3] [021] +14:47:37 [ 25] [ 2] [01] +14:47:37 [ 28] [ 9] [D00002000] +14:47:37 [ 32] [ 6] [180893] +14:47:37 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:47:37 [ 37] [ 12] [507907269812] +14:47:37 [ 41] [ 8] [0321LNTV] +14:47:37 [ 42] [ 15] [999999 ] +14:47:37 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:47:37 [ 49] [ 3] [418] +14:47:37 [ 52] [ 16] [F59506610A119122] +14:47:37 ============================================================================ +14:47:37 + + +waiting on router queue for slot.... +14:47:37 Sending to : +14:47:37 ============================================================================ +14:47:37 Sending to : +14:47:37 ============================================================================ +14:47:38 ============================================================================ +14:47:38 Slot Id : <233> +14:47:38 Transaction Type : REQUEST +14:47:38 Received From : +14:47:38 ============================================================================ +14:47:38 FNo. Len. Field Value +14:47:38 ============================================================================ +14:47:38 [ 1] [ 4] [0200] +14:47:38 [ 2] [ 16] [6688990040142034] +14:47:38 [ 3] [ 6] [010000] +14:47:38 [ 4] [ 12] [000100000000] +14:47:38 [ 7] [ 10] [0320074643] +14:47:38 [ 11] [ 6] [269812] +14:47:38 [ 12] [ 6] [144643] +14:47:38 [ 13] [ 4] [0320] +14:47:38 [ 14] [ 4] [9804] +14:47:38 [ 15] [ 4] [0320] +14:47:38 [ 18] [ 4] [6011] +14:47:38 [ 19] [ 3] [418] +14:47:38 [ 22] [ 3] [021] +14:47:38 [ 25] [ 2] [01] +14:47:38 [ 28] [ 9] [D00002000] +14:47:38 [ 32] [ 6] [180893] +14:47:38 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:47:38 [ 37] [ 12] [507907269812] +14:47:38 [ 41] [ 8] [0321LNTV] +14:47:38 [ 42] [ 15] [999999 ] +14:47:38 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:47:38 [ 49] [ 3] [418] +14:47:38 [ 52] [ 16] [F59506610A119122] +14:47:38 ============================================================================ +14:47:38 + + +waiting on router queue for slot.... +14:47:38 Sending to : +14:47:38 ============================================================================ +14:47:38 ============================================================================ +14:47:38 Slot Id : <233> +14:47:38 Transaction Type : REQUEST +14:47:38 Received From : +14:47:38 ============================================================================ +14:47:38 FNo. Len. Field Value +14:47:38 ============================================================================ +14:47:38 [ 1] [ 4] [0200] +14:47:38 [ 2] [ 16] [6688990040142034] +14:47:38 [ 3] [ 6] [010000] +14:47:38 [ 4] [ 12] [000100000000] +14:47:38 [ 7] [ 10] [0320074643] +14:47:38 [ 11] [ 6] [269812] +14:47:38 [ 12] [ 6] [144643] +14:47:38 [ 13] [ 4] [0320] +14:47:38 [ 14] [ 4] [9804] +14:47:38 [ 15] [ 4] [0320] +14:47:38 [ 18] [ 4] [6011] +14:47:38 [ 19] [ 3] [418] +14:47:38 [ 22] [ 3] [021] +14:47:38 [ 25] [ 2] [01] +14:47:38 [ 28] [ 9] [D00002000] +14:47:38 [ 32] [ 6] [180893] +14:47:38 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:47:38 [ 37] [ 12] [507907269812] +14:47:38 [ 41] [ 8] [0321LNTV] +14:47:38 [ 42] [ 15] [999999 ] +14:47:38 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:47:38 [ 49] [ 3] [418] +14:47:38 [ 52] [ 16] [78868CB537FF0CC9] +14:47:38 ============================================================================ +14:47:38 + + +waiting on router queue for slot.... +14:47:38 Sending to : <0> +14:47:38 ============================================================================ +14:47:38 ============================================================================ +14:47:38 Slot Id : <233> +14:47:38 Transaction Type : RESPONSE +14:47:38 Received From : +14:47:38 ============================================================================ +14:47:38 FNo. Len. Field Value +14:47:38 ============================================================================ +14:47:38 [ 1] [ 4] [0210] +14:47:38 [ 2] [ 16] [6688990040142034] +14:47:38 [ 3] [ 6] [010000] +14:47:38 [ 4] [ 12] [000100000000] +14:47:38 [ 7] [ 10] [0320074643] +14:47:38 [ 11] [ 6] [269812] +14:47:38 [ 12] [ 6] [144643] +14:47:38 [ 13] [ 4] [0320] +14:47:38 [ 15] [ 4] [0320] +14:47:38 [ 18] [ 4] [6011] +14:47:38 [ 19] [ 3] [418] +14:47:38 [ 22] [ 3] [021] +14:47:38 [ 32] [ 6] [180893] +14:47:38 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:47:38 [ 37] [ 12] [507907269812] +14:47:38 [ 39] [ 2] [14] +14:47:38 [ 41] [ 8] [0321LNTV] +14:47:38 [ 49] [ 3] [418] +14:47:38 ============================================================================ +14:47:38 Sending to : +14:47:38 ============================================================================ +14:47:38 + + +waiting on router queue for slot.... +14:47:39 ============================================================================ +14:47:39 Slot Id : <233> +14:47:39 Transaction Type : RESPONSE +14:47:39 Received From : +14:47:39 ============================================================================ +14:47:39 FNo. Len. Field Value +14:47:39 ============================================================================ +14:47:39 [ 1] [ 4] [0210] +14:47:39 [ 2] [ 16] [6688990040142034] +14:47:39 [ 3] [ 6] [010000] +14:47:39 [ 4] [ 12] [000100000000] +14:47:39 [ 7] [ 10] [0320074643] +14:47:39 [ 11] [ 6] [269812] +14:47:39 [ 12] [ 6] [144643] +14:47:39 [ 13] [ 4] [0320] +14:47:39 [ 15] [ 4] [0320] +14:47:39 [ 18] [ 4] [6011] +14:47:39 [ 19] [ 3] [418] +14:47:39 [ 22] [ 3] [021] +14:47:39 [ 32] [ 6] [180893] +14:47:39 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:47:39 [ 37] [ 12] [507907269812] +14:47:39 [ 39] [ 2] [14] +14:47:39 [ 41] [ 8] [0321LNTV] +14:47:39 [ 49] [ 3] [418] +14:47:39 ============================================================================ +14:47:39 Calculate Source COMM Id = 2 +14:47:39 ============================================================================ +14:47:39 + + +waiting on router queue for slot.... +14:47:41 ============================================================================ +14:47:41 Slot Id : <237> +14:47:41 Transaction Type : REQUEST +14:47:41 Received From : +14:47:41 ============================================================================ +14:47:41 FNo. Len. Field Value +14:47:41 ============================================================================ +14:47:41 [ 1] [ 4] [0200] +14:47:41 [ 2] [ 16] [6213544000074135] +14:47:41 [ 3] [ 6] [010000] +14:47:41 [ 4] [ 12] [000100000000] +14:47:41 [ 7] [ 10] [0320074647] +14:47:41 [ 11] [ 6] [269814] +14:47:41 [ 12] [ 6] [144647] +14:47:41 [ 13] [ 4] [0320] +14:47:41 [ 14] [ 4] [4912] +14:47:41 [ 15] [ 4] [0320] +14:47:41 [ 18] [ 4] [6011] +14:47:41 [ 19] [ 3] [418] +14:47:41 [ 22] [ 3] [021] +14:47:41 [ 25] [ 2] [01] +14:47:41 [ 28] [ 9] [D00002000] +14:47:41 [ 32] [ 6] [180893] +14:47:41 [ 35] [ 32] [6213544000074135=491212017413905] +14:47:41 [ 37] [ 12] [507907269814] +14:47:41 [ 41] [ 8] [0106NAXA] +14:47:41 [ 42] [ 15] [999999 ] +14:47:41 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:47:41 [ 49] [ 3] [418] +14:47:41 [ 52] [ 16] [7A660DA19C242BF2] +14:47:41 ============================================================================ +14:47:41 + + +waiting on router queue for slot.... +14:47:41 Sending to : +14:47:41 ============================================================================ +14:47:41 Sending to : +14:47:41 ============================================================================ +14:47:41 ============================================================================ +14:47:41 Slot Id : <237> +14:47:41 Transaction Type : REQUEST +14:47:41 Received From : +14:47:41 ============================================================================ +14:47:41 FNo. Len. Field Value +14:47:41 ============================================================================ +14:47:41 [ 1] [ 4] [0200] +14:47:41 [ 2] [ 16] [6213544000074135] +14:47:41 [ 3] [ 6] [010000] +14:47:41 [ 4] [ 12] [000100000000] +14:47:41 [ 7] [ 10] [0320074647] +14:47:41 [ 11] [ 6] [269814] +14:47:41 [ 12] [ 6] [144647] +14:47:41 [ 13] [ 4] [0320] +14:47:41 [ 14] [ 4] [4912] +14:47:41 [ 15] [ 4] [0320] +14:47:41 [ 18] [ 4] [6011] +14:47:41 [ 19] [ 3] [418] +14:47:41 [ 22] [ 3] [021] +14:47:41 [ 25] [ 2] [01] +14:47:41 [ 28] [ 9] [D00002000] +14:47:41 [ 32] [ 6] [180893] +14:47:41 [ 35] [ 32] [6213544000074135=491212017413905] +14:47:41 [ 37] [ 12] [507907269814] +14:47:41 [ 41] [ 8] [0106NAXA] +14:47:41 [ 42] [ 15] [999999 ] +14:47:41 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:47:41 [ 49] [ 3] [418] +14:47:41 [ 52] [ 16] [7A660DA19C242BF2] +14:47:41 ============================================================================ +14:47:41 + + +waiting on router queue for slot.... +14:47:41 Sending to : +14:47:41 ============================================================================ +14:47:41 ============================================================================ +14:47:41 Slot Id : <237> +14:47:41 Transaction Type : REQUEST +14:47:41 Received From : +14:47:41 ============================================================================ +14:47:41 FNo. Len. Field Value +14:47:41 ============================================================================ +14:47:41 [ 1] [ 4] [0200] +14:47:41 [ 2] [ 16] [6213544000074135] +14:47:41 [ 3] [ 6] [010000] +14:47:41 [ 4] [ 12] [000100000000] +14:47:41 [ 7] [ 10] [0320074647] +14:47:41 [ 11] [ 6] [269814] +14:47:41 [ 12] [ 6] [144647] +14:47:41 [ 13] [ 4] [0320] +14:47:41 [ 14] [ 4] [4912] +14:47:41 [ 15] [ 4] [0320] +14:47:41 [ 18] [ 4] [6011] +14:47:41 [ 19] [ 3] [418] +14:47:41 [ 22] [ 3] [021] +14:47:41 [ 25] [ 2] [01] +14:47:41 [ 28] [ 9] [D00002000] +14:47:41 [ 32] [ 6] [180893] +14:47:41 [ 35] [ 32] [6213544000074135=491212017413905] +14:47:41 [ 37] [ 12] [507907269814] +14:47:41 [ 41] [ 8] [0106NAXA] +14:47:41 [ 42] [ 15] [999999 ] +14:47:41 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:47:41 [ 49] [ 3] [418] +14:47:41 [ 52] [ 16] [45341E05561F80C0] +14:47:41 ============================================================================ +14:47:41 + + +waiting on router queue for slot.... +14:47:41 Sending to : <0> +14:47:41 ============================================================================ +14:47:42 ============================================================================ +14:47:42 Slot Id : <237> +14:47:42 Transaction Type : RESPONSE +14:47:42 Received From : +14:47:42 ============================================================================ +14:47:42 FNo. Len. Field Value +14:47:42 ============================================================================ +14:47:42 [ 1] [ 4] [0210] +14:47:42 [ 2] [ 16] [6213544000074135] +14:47:42 [ 3] [ 6] [010000] +14:47:42 [ 4] [ 12] [000100000000] +14:47:42 [ 7] [ 10] [0320074647] +14:47:42 [ 11] [ 6] [269814] +14:47:42 [ 12] [ 6] [144647] +14:47:42 [ 13] [ 4] [0320] +14:47:42 [ 15] [ 4] [0320] +14:47:42 [ 18] [ 4] [6011] +14:47:42 [ 19] [ 3] [418] +14:47:42 [ 32] [ 6] [180893] +14:47:42 [ 35] [ 32] [6213544000074135=491212017413905] +14:47:42 [ 37] [ 12] [507907269814] +14:47:42 [ 38] [ 6] [051811] +14:47:42 [ 39] [ 2] [00] +14:47:42 [ 41] [ 8] [0106NAXA] +14:47:42 [ 49] [ 3] [418] +14:47:42 [ 54] [ 40] [0001418C0007947327140002418C000794732714] +14:47:42 ============================================================================ +14:47:42 Sending to : +14:47:42 ============================================================================ +14:47:42 + + +waiting on router queue for slot.... +14:47:43 ============================================================================ +14:47:43 Slot Id : <237> +14:47:43 Transaction Type : RESPONSE +14:47:43 Received From : +14:47:43 ============================================================================ +14:47:43 FNo. Len. Field Value +14:47:43 ============================================================================ +14:47:43 [ 1] [ 4] [0210] +14:47:43 [ 2] [ 16] [6213544000074135] +14:47:43 [ 3] [ 6] [010000] +14:47:43 [ 4] [ 12] [000100000000] +14:47:43 [ 7] [ 10] [0320074647] +14:47:43 [ 11] [ 6] [269814] +14:47:43 [ 12] [ 6] [144647] +14:47:43 [ 13] [ 4] [0320] +14:47:43 [ 15] [ 4] [0320] +14:47:43 [ 18] [ 4] [6011] +14:47:43 [ 19] [ 3] [418] +14:47:43 [ 32] [ 6] [180893] +14:47:43 [ 35] [ 32] [6213544000074135=491212017413905] +14:47:43 [ 37] [ 12] [507907269814] +14:47:43 [ 38] [ 6] [051811] +14:47:43 [ 39] [ 2] [00] +14:47:43 [ 41] [ 8] [0106NAXA] +14:47:43 [ 49] [ 3] [418] +14:47:43 [ 54] [ 40] [0001418C0007947327140002418C000794732714] +14:47:43 ============================================================================ +14:47:43 Calculate Source COMM Id = 2 +14:47:43 ============================================================================ +14:47:43 + + +waiting on router queue for slot.... +14:47:56 ============================================================================ +14:47:56 Slot Id : <200> +14:47:56 Transaction Type : REQUEST +14:47:56 Received From : +14:47:56 ============================================================================ +14:47:56 FNo. Len. Field Value +14:47:56 ============================================================================ +14:47:56 [ 1] [ 4] [0800] +14:47:56 [ 7] [ 10] [0320074703] +14:47:56 [ 11] [ 6] [156854] +14:47:56 [ 70] [ 3] [301] +14:47:56 ============================================================================ +14:47:56 + + +waiting on router queue for slot.... +14:47:56 Sending to : +14:47:56 ============================================================================ +14:47:56 ============================================================================ +14:47:56 Slot Id : <200> +14:47:56 Transaction Type : RESPONSE +14:47:56 Received From : +14:47:56 ============================================================================ +14:47:56 FNo. Len. Field Value +14:47:56 ============================================================================ +14:47:56 [ 1] [ 4] [0810] +14:47:56 [ 7] [ 10] [0320074703] +14:47:56 [ 11] [ 6] [156854] +14:47:56 [ 39] [ 2] [00] +14:47:56 [ 70] [ 3] [301] +14:47:56 ============================================================================ +14:47:56 Calculate Source COMM Id = 2 +14:47:56 ============================================================================ +14:47:56 + + +waiting on router queue for slot.... +14:48:02 ============================================================================ +14:48:02 Slot Id : <238> +14:48:02 Transaction Type : REQUEST +14:48:02 Received From : +14:48:02 ============================================================================ +14:48:02 FNo. Len. Field Value +14:48:02 ============================================================================ +14:48:02 [ 1] [ 4] [0200] +14:48:02 [ 2] [ 16] [6213544002125901] +14:48:02 [ 3] [ 6] [011000] +14:48:02 [ 4] [ 12] [000020000000] +14:48:02 [ 7] [ 10] [0320074708] +14:48:02 [ 11] [ 6] [269817] +14:48:02 [ 12] [ 6] [144708] +14:48:02 [ 13] [ 4] [0320] +14:48:02 [ 14] [ 4] [4912] +14:48:02 [ 15] [ 4] [0320] +14:48:02 [ 18] [ 4] [6011] +14:48:02 [ 19] [ 3] [418] +14:48:02 [ 22] [ 3] [021] +14:48:02 [ 25] [ 2] [01] +14:48:02 [ 28] [ 9] [D00002000] +14:48:02 [ 32] [ 6] [180893] +14:48:02 [ 35] [ 32] [6213544002125901=491212012590746] +14:48:02 [ 37] [ 12] [507907269817] +14:48:02 [ 41] [ 8] [0343SVKP] +14:48:02 [ 42] [ 15] [999999 ] +14:48:02 [ 43] [ 40] [ATM SAVANNAKHET PHIN LOCATION, Phin, Lao] +14:48:02 [ 49] [ 3] [418] +14:48:02 [ 52] [ 16] [FB47B736401B223B] +14:48:02 ============================================================================ +14:48:02 + + +waiting on router queue for slot.... +14:48:02 Sending to : +14:48:02 ============================================================================ +14:48:02 Sending to : +14:48:02 ============================================================================ +14:48:02 ============================================================================ +14:48:02 Slot Id : <238> +14:48:02 Transaction Type : REQUEST +14:48:02 Received From : +14:48:02 ============================================================================ +14:48:02 FNo. Len. Field Value +14:48:02 ============================================================================ +14:48:02 [ 1] [ 4] [0200] +14:48:02 [ 2] [ 16] [6213544002125901] +14:48:02 [ 3] [ 6] [011000] +14:48:02 [ 4] [ 12] [000020000000] +14:48:02 [ 7] [ 10] [0320074708] +14:48:02 [ 11] [ 6] [269817] +14:48:02 [ 12] [ 6] [144708] +14:48:02 [ 13] [ 4] [0320] +14:48:02 [ 14] [ 4] [4912] +14:48:02 [ 15] [ 4] [0320] +14:48:02 [ 18] [ 4] [6011] +14:48:02 [ 19] [ 3] [418] +14:48:02 [ 22] [ 3] [021] +14:48:02 [ 25] [ 2] [01] +14:48:02 [ 28] [ 9] [D00002000] +14:48:02 [ 32] [ 6] [180893] +14:48:02 [ 35] [ 32] [6213544002125901=491212012590746] +14:48:02 [ 37] [ 12] [507907269817] +14:48:02 [ 41] [ 8] [0343SVKP] +14:48:02 [ 42] [ 15] [999999 ] +14:48:02 [ 43] [ 40] [ATM SAVANNAKHET PHIN LOCATION, Phin, Lao] +14:48:02 [ 49] [ 3] [418] +14:48:02 [ 52] [ 16] [FB47B736401B223B] +14:48:02 ============================================================================ +14:48:02 + + +waiting on router queue for slot.... +14:48:02 Sending to : +14:48:02 ============================================================================ +14:48:02 ============================================================================ +14:48:02 Slot Id : <238> +14:48:02 Transaction Type : REQUEST +14:48:02 Received From : +14:48:02 ============================================================================ +14:48:02 FNo. Len. Field Value +14:48:02 ============================================================================ +14:48:02 [ 1] [ 4] [0200] +14:48:02 [ 2] [ 16] [6213544002125901] +14:48:02 [ 3] [ 6] [011000] +14:48:02 [ 4] [ 12] [000020000000] +14:48:02 [ 7] [ 10] [0320074708] +14:48:02 [ 11] [ 6] [269817] +14:48:02 [ 12] [ 6] [144708] +14:48:02 [ 13] [ 4] [0320] +14:48:02 [ 14] [ 4] [4912] +14:48:02 [ 15] [ 4] [0320] +14:48:02 [ 18] [ 4] [6011] +14:48:02 [ 19] [ 3] [418] +14:48:02 [ 22] [ 3] [021] +14:48:02 [ 25] [ 2] [01] +14:48:02 [ 28] [ 9] [D00002000] +14:48:02 [ 32] [ 6] [180893] +14:48:02 [ 35] [ 32] [6213544002125901=491212012590746] +14:48:02 [ 37] [ 12] [507907269817] +14:48:02 [ 41] [ 8] [0343SVKP] +14:48:02 [ 42] [ 15] [999999 ] +14:48:02 [ 43] [ 40] [ATM SAVANNAKHET PHIN LOCATION, Phin, Lao] +14:48:02 [ 49] [ 3] [418] +14:48:02 [ 52] [ 16] [A008BEA1E3EFBE42] +14:48:02 ============================================================================ +14:48:02 + + +waiting on router queue for slot.... +14:48:02 Sending to : <0> +14:48:02 ============================================================================ +14:48:03 ============================================================================ +14:48:03 Slot Id : <238> +14:48:03 Transaction Type : RESPONSE +14:48:03 Received From : +14:48:03 ============================================================================ +14:48:03 FNo. Len. Field Value +14:48:03 ============================================================================ +14:48:03 [ 1] [ 4] [0210] +14:48:03 [ 2] [ 16] [6213544002125901] +14:48:03 [ 3] [ 6] [011000] +14:48:03 [ 4] [ 12] [000020000000] +14:48:03 [ 7] [ 10] [0320074708] +14:48:03 [ 11] [ 6] [269817] +14:48:03 [ 12] [ 6] [144708] +14:48:03 [ 13] [ 4] [0320] +14:48:03 [ 15] [ 4] [0320] +14:48:03 [ 18] [ 4] [6011] +14:48:03 [ 19] [ 3] [418] +14:48:03 [ 32] [ 6] [180893] +14:48:03 [ 35] [ 32] [6213544002125901=491212012590746] +14:48:03 [ 37] [ 12] [507907269817] +14:48:03 [ 38] [ 6] [816729] +14:48:03 [ 39] [ 2] [00] +14:48:03 [ 41] [ 8] [0343SVKP] +14:48:03 [ 49] [ 3] [418] +14:48:03 [ 54] [ 40] [1001418C0000110106851002418C000011010685] +14:48:03 ============================================================================ +14:48:03 Sending to : +14:48:03 ============================================================================ +14:48:03 + + +waiting on router queue for slot.... +14:48:04 ============================================================================ +14:48:04 Slot Id : <238> +14:48:04 Transaction Type : RESPONSE +14:48:04 Received From : +14:48:04 ============================================================================ +14:48:04 FNo. Len. Field Value +14:48:04 ============================================================================ +14:48:04 [ 1] [ 4] [0210] +14:48:04 [ 2] [ 16] [6213544002125901] +14:48:04 [ 3] [ 6] [011000] +14:48:04 [ 4] [ 12] [000020000000] +14:48:04 [ 7] [ 10] [0320074708] +14:48:04 [ 11] [ 6] [269817] +14:48:04 [ 12] [ 6] [144708] +14:48:04 [ 13] [ 4] [0320] +14:48:04 [ 15] [ 4] [0320] +14:48:04 [ 18] [ 4] [6011] +14:48:04 [ 19] [ 3] [418] +14:48:04 [ 32] [ 6] [180893] +14:48:04 [ 35] [ 32] [6213544002125901=491212012590746] +14:48:04 [ 37] [ 12] [507907269817] +14:48:04 [ 38] [ 6] [816729] +14:48:04 [ 39] [ 2] [00] +14:48:04 [ 41] [ 8] [0343SVKP] +14:48:04 [ 49] [ 3] [418] +14:48:04 [ 54] [ 40] [1001418C0000110106851002418C000011010685] +14:48:04 ============================================================================ +14:48:04 Calculate Source COMM Id = 2 +14:48:04 ============================================================================ +14:48:04 + + +waiting on router queue for slot.... +14:48:09 ============================================================================ +14:48:09 Slot Id : <216> +14:48:09 Transaction Type : REQUEST +14:48:09 Received From : +14:48:09 ============================================================================ +14:48:09 FNo. Len. Field Value +14:48:09 ============================================================================ +14:48:09 [ 1] [ 4] [0200] +14:48:09 [ 2] [ 16] [1808930600043293] +14:48:09 [ 3] [ 6] [011000] +14:48:09 [ 4] [ 12] [000023000000] +14:48:09 [ 7] [ 10] [0320144804] +14:48:09 [ 11] [ 6] [774782] +14:48:09 [ 12] [ 6] [144804] +14:48:09 [ 13] [ 4] [0320] +14:48:09 [ 15] [ 4] [0320] +14:48:09 [ 18] [ 4] [6011] +14:48:09 [ 22] [ 3] [900] +14:48:09 [ 25] [ 2] [02] +14:48:09 [ 28] [ 9] [D00002000] +14:48:09 [ 32] [ 6] [621354] +14:48:09 [ 35] [ 27] [1808930600043293=1803500067] +14:48:09 [ 37] [ 12] [507905057686] +14:48:09 [ 41] [ 8] [03004300] +14:48:09 [ 42] [ 15] [NATIVE ] +14:48:09 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +14:48:09 [ 49] [ 3] [418] +14:48:09 [ 52] [ 16] [4B7DFD736F87B640] +14:48:09 ============================================================================ +14:48:09 + + +waiting on router queue for slot.... +14:48:09 Sending to : +14:48:09 ============================================================================ +14:48:09 Sending to : +14:48:09 ============================================================================ +14:48:09 ============================================================================ +14:48:09 Slot Id : <216> +14:48:09 Transaction Type : REQUEST +14:48:09 Received From : +14:48:09 ============================================================================ +14:48:09 FNo. Len. Field Value +14:48:09 ============================================================================ +14:48:09 [ 1] [ 4] [0200] +14:48:09 [ 2] [ 16] [1808930600043293] +14:48:09 [ 3] [ 6] [011000] +14:48:09 [ 4] [ 12] [000023000000] +14:48:09 [ 7] [ 10] [0320144804] +14:48:09 [ 11] [ 6] [774782] +14:48:09 [ 12] [ 6] [144804] +14:48:09 [ 13] [ 4] [0320] +14:48:09 [ 15] [ 4] [0320] +14:48:09 [ 18] [ 4] [6011] +14:48:09 [ 22] [ 3] [900] +14:48:09 [ 25] [ 2] [02] +14:48:09 [ 28] [ 9] [D00002000] +14:48:09 [ 32] [ 6] [621354] +14:48:09 [ 35] [ 27] [1808930600043293=1803500067] +14:48:09 [ 37] [ 12] [507905057686] +14:48:09 [ 41] [ 8] [03004300] +14:48:09 [ 42] [ 15] [NATIVE ] +14:48:09 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +14:48:09 [ 49] [ 3] [418] +14:48:09 [ 52] [ 16] [4B7DFD736F87B640] +14:48:09 ============================================================================ +14:48:09 + + +waiting on router queue for slot.... +14:48:09 Sending to : +14:48:09 ============================================================================ +14:48:09 ============================================================================ +14:48:09 Slot Id : <216> +14:48:09 Transaction Type : REQUEST +14:48:09 Received From : +14:48:09 ============================================================================ +14:48:09 FNo. Len. Field Value +14:48:09 ============================================================================ +14:48:09 [ 1] [ 4] [0200] +14:48:09 [ 2] [ 16] [1808930600043293] +14:48:09 [ 3] [ 6] [011000] +14:48:09 [ 4] [ 12] [000023000000] +14:48:09 [ 7] [ 10] [0320144804] +14:48:09 [ 11] [ 6] [774782] +14:48:09 [ 12] [ 6] [144804] +14:48:09 [ 13] [ 4] [0320] +14:48:09 [ 15] [ 4] [0320] +14:48:09 [ 18] [ 4] [6011] +14:48:09 [ 22] [ 3] [900] +14:48:09 [ 25] [ 2] [02] +14:48:09 [ 28] [ 9] [D00002000] +14:48:09 [ 32] [ 6] [621354] +14:48:09 [ 35] [ 27] [1808930600043293=1803500067] +14:48:09 [ 37] [ 12] [507905057686] +14:48:09 [ 41] [ 8] [03004300] +14:48:09 [ 42] [ 15] [NATIVE ] +14:48:09 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +14:48:09 [ 49] [ 3] [418] +14:48:09 [ 52] [ 16] [23DE3D3687DCE508] +14:48:09 ============================================================================ +14:48:09 + + +waiting on router queue for slot.... +14:48:09 Sending to : <2> +14:48:09 ============================================================================ +14:48:09 ============================================================================ +14:48:09 Slot Id : <253> +14:48:09 Transaction Type : REQUEST +14:48:09 Received From : +14:48:09 ============================================================================ +14:48:09 FNo. Len. Field Value +14:48:09 ============================================================================ +14:48:09 [ 1] [ 4] [0200] +14:48:09 [ 2] [ 16] [6688990603028703] +14:48:09 [ 3] [ 6] [013000] +14:48:09 [ 4] [ 12] [000100000000] +14:48:09 [ 7] [ 10] [0320144804] +14:48:09 [ 11] [ 6] [774785] +14:48:09 [ 12] [ 6] [144804] +14:48:09 [ 13] [ 4] [0320] +14:48:09 [ 15] [ 4] [0320] +14:48:09 [ 18] [ 4] [6011] +14:48:09 [ 22] [ 3] [900] +14:48:09 [ 25] [ 2] [02] +14:48:09 [ 28] [ 9] [D00002000] +14:48:09 [ 32] [ 6] [621354] +14:48:09 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:48:09 [ 37] [ 12] [507904743920] +14:48:09 [ 41] [ 8] [07001000] +14:48:09 [ 42] [ 15] [NATIVE ] +14:48:09 [ 43] [ 40] [LNT Branch02 Namtar LAO] +14:48:09 [ 49] [ 3] [418] +14:48:09 [ 52] [ 16] [C24EAF7387258530] +14:48:09 ============================================================================ +14:48:09 + + +waiting on router queue for slot.... +14:48:09 Sending to : +14:48:09 ============================================================================ +14:48:09 Sending to : +14:48:09 ============================================================================ +14:48:09 ============================================================================ +14:48:09 Slot Id : <260> +14:48:09 Transaction Type : REQUEST +14:48:09 Received From : +14:48:09 ============================================================================ +14:48:09 FNo. Len. Field Value +14:48:09 ============================================================================ +14:48:09 [ 1] [ 4] [0800] +14:48:09 [ 7] [ 10] [0320215958] +14:48:09 [ 11] [ 6] [145958] +14:48:09 [ 37] [ 12] [57914145958] +14:48:09 [ 70] [ 3] [301] +14:48:09 ============================================================================ +14:48:09 + + +waiting on router queue for slot.... +14:48:09 Sending to : +14:48:09 ============================================================================ +14:48:09 ============================================================================ +14:48:09 Slot Id : <260> +14:48:09 Transaction Type : RESPONSE +14:48:09 Received From : +14:48:09 ============================================================================ +14:48:09 FNo. Len. Field Value +14:48:09 ============================================================================ +14:48:09 [ 1] [ 4] [0810] +14:48:09 [ 7] [ 10] [0320215958] +14:48:09 [ 11] [ 6] [145958] +14:48:09 [ 37] [ 12] [579141459580] +14:48:09 [ 39] [ 2] [00] +14:48:09 [ 70] [ 3] [810] +14:48:09 ============================================================================ +14:48:09 Calculate Source COMM Id = 6 +14:48:09 ============================================================================ +14:48:09 + + +waiting on router queue for slot.... +14:48:09 ============================================================================ +14:48:09 Slot Id : <253> +14:48:09 Transaction Type : REQUEST +14:48:09 Received From : +14:48:09 ============================================================================ +14:48:09 FNo. Len. Field Value +14:48:09 ============================================================================ +14:48:09 [ 1] [ 4] [0200] +14:48:09 [ 2] [ 16] [6688990603028703] +14:48:09 [ 3] [ 6] [013000] +14:48:09 [ 4] [ 12] [000100000000] +14:48:09 [ 7] [ 10] [0320144804] +14:48:09 [ 11] [ 6] [774785] +14:48:09 [ 12] [ 6] [144804] +14:48:09 [ 13] [ 4] [0320] +14:48:09 [ 15] [ 4] [0320] +14:48:09 [ 18] [ 4] [6011] +14:48:09 [ 22] [ 3] [900] +14:48:09 [ 25] [ 2] [02] +14:48:09 [ 28] [ 9] [D00002000] +14:48:09 [ 32] [ 6] [621354] +14:48:09 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:48:09 [ 37] [ 12] [507904743920] +14:48:09 [ 41] [ 8] [07001000] +14:48:09 [ 42] [ 15] [NATIVE ] +14:48:09 [ 43] [ 40] [LNT Branch02 Namtar LAO] +14:48:09 [ 49] [ 3] [418] +14:48:09 [ 52] [ 16] [C24EAF7387258530] +14:48:09 ============================================================================ +14:48:09 + + +waiting on router queue for slot.... +14:48:09 Sending to : +14:48:09 ============================================================================ +14:48:09 ============================================================================ +14:48:09 Slot Id : <253> +14:48:09 Transaction Type : REQUEST +14:48:09 Received From : +14:48:09 ============================================================================ +14:48:09 FNo. Len. Field Value +14:48:09 ============================================================================ +14:48:09 [ 1] [ 4] [0200] +14:48:09 [ 2] [ 16] [6688990603028703] +14:48:09 [ 3] [ 6] [013000] +14:48:09 [ 4] [ 12] [000100000000] +14:48:09 [ 7] [ 10] [0320144804] +14:48:09 [ 11] [ 6] [774785] +14:48:09 [ 12] [ 6] [144804] +14:48:09 [ 13] [ 4] [0320] +14:48:09 [ 15] [ 4] [0320] +14:48:09 [ 18] [ 4] [6011] +14:48:09 [ 22] [ 3] [900] +14:48:09 [ 25] [ 2] [02] +14:48:09 [ 28] [ 9] [D00002000] +14:48:09 [ 32] [ 6] [621354] +14:48:09 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:48:09 [ 37] [ 12] [507904743920] +14:48:09 [ 41] [ 8] [07001000] +14:48:09 [ 42] [ 15] [NATIVE ] +14:48:09 [ 43] [ 40] [LNT Branch02 Namtar LAO] +14:48:09 [ 49] [ 3] [418] +14:48:09 [ 52] [ 16] [8EED4002B97D240C] +14:48:09 ============================================================================ +14:48:09 + + +waiting on router queue for slot.... +14:48:09 Sending to : <4> +14:48:09 ============================================================================ +14:48:10 ============================================================================ +14:48:10 Slot Id : <253> +14:48:10 Transaction Type : RESPONSE +14:48:10 Received From : +14:48:10 ============================================================================ +14:48:10 FNo. Len. Field Value +14:48:10 ============================================================================ +14:48:10 [ 1] [ 4] [0210] +14:48:10 [ 2] [ 16] [6688990603028703] +14:48:10 [ 3] [ 6] [013000] +14:48:10 [ 4] [ 12] [000100000000] +14:48:10 [ 7] [ 10] [0320144804] +14:48:10 [ 11] [ 6] [774785] +14:48:10 [ 12] [ 6] [144804] +14:48:10 [ 13] [ 4] [0320] +14:48:10 [ 15] [ 4] [0320] +14:48:10 [ 18] [ 4] [6011] +14:48:10 [ 22] [ 3] [021] +14:48:10 [ 32] [ 6] [621354] +14:48:10 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:48:10 [ 37] [ 12] [507904743920] +14:48:10 [ 39] [ 2] [65] +14:48:10 [ 41] [ 8] [07001000] +14:48:10 [ 49] [ 3] [418] +14:48:10 ============================================================================ +14:48:10 Sending to : +14:48:10 ============================================================================ +14:48:10 + + +waiting on router queue for slot.... +14:48:11 ============================================================================ +14:48:11 Slot Id : <253> +14:48:11 Transaction Type : RESPONSE +14:48:11 Received From : +14:48:11 ============================================================================ +14:48:11 FNo. Len. Field Value +14:48:11 ============================================================================ +14:48:11 [ 1] [ 4] [0210] +14:48:11 [ 2] [ 16] [6688990603028703] +14:48:11 [ 3] [ 6] [013000] +14:48:11 [ 4] [ 12] [000100000000] +14:48:11 [ 7] [ 10] [0320144804] +14:48:11 [ 11] [ 6] [774785] +14:48:11 [ 12] [ 6] [144804] +14:48:11 [ 13] [ 4] [0320] +14:48:11 [ 15] [ 4] [0320] +14:48:11 [ 18] [ 4] [6011] +14:48:11 [ 22] [ 3] [021] +14:48:11 [ 32] [ 6] [621354] +14:48:11 [ 35] [ 37] [6688990603028703=44040061870366100000] +14:48:11 [ 37] [ 12] [507904743920] +14:48:11 [ 39] [ 2] [65] +14:48:11 [ 41] [ 8] [07001000] +14:48:11 [ 49] [ 3] [418] +14:48:11 ============================================================================ +14:48:11 Calculate Source COMM Id = 0 +14:48:11 ============================================================================ +14:48:11 + + +waiting on router queue for slot.... +14:48:15 ============================================================================ +14:48:15 Slot Id : <216> +14:48:15 Transaction Type : RESPONSE +14:48:15 Received From : +14:48:15 ============================================================================ +14:48:15 FNo. Len. Field Value +14:48:15 ============================================================================ +14:48:15 [ 1] [ 4] [0210] +14:48:15 [ 2] [ 16] [1808930600043293] +14:48:15 [ 3] [ 6] [011000] +14:48:15 [ 4] [ 12] [000023000000] +14:48:15 [ 6] [ 12] [000023000000] +14:48:15 [ 7] [ 10] [0320144804] +14:48:15 [ 11] [ 6] [774782] +14:48:15 [ 12] [ 6] [144804] +14:48:15 [ 13] [ 4] [0320] +14:48:15 [ 18] [ 4] [6011] +14:48:15 [ 19] [ 3] [418] +14:48:15 [ 22] [ 3] [021] +14:48:15 [ 32] [ 6] [621354] +14:48:15 [ 35] [ 27] [1808930600043293=1803500067] +14:48:15 [ 37] [ 12] [507905057686] +14:48:15 [ 38] [ 6] [774782] +14:48:15 [ 39] [ 2] [00] +14:48:15 [ 41] [ 8] [03004300] +14:48:15 [ 49] [ 3] [418] +14:48:15 [ 52] [ 16] [23DE3D3687DCE508] +14:48:15 [ 54] [ 20] [1001418C000070677300] +14:48:15 ============================================================================ +14:48:15 Sending to : +14:48:15 ============================================================================ +14:48:15 + + +waiting on router queue for slot.... +14:48:16 ============================================================================ +14:48:16 Slot Id : <216> +14:48:16 Transaction Type : RESPONSE +14:48:16 Received From : +14:48:16 ============================================================================ +14:48:16 FNo. Len. Field Value +14:48:16 ============================================================================ +14:48:16 [ 1] [ 4] [0210] +14:48:16 [ 2] [ 16] [1808930600043293] +14:48:16 [ 3] [ 6] [011000] +14:48:16 [ 4] [ 12] [000023000000] +14:48:16 [ 6] [ 12] [000023000000] +14:48:16 [ 7] [ 10] [0320144804] +14:48:16 [ 11] [ 6] [774782] +14:48:16 [ 12] [ 6] [144804] +14:48:16 [ 13] [ 4] [0320] +14:48:16 [ 18] [ 4] [6011] +14:48:16 [ 19] [ 3] [418] +14:48:16 [ 22] [ 3] [021] +14:48:16 [ 32] [ 6] [621354] +14:48:16 [ 35] [ 27] [1808930600043293=1803500067] +14:48:16 [ 37] [ 12] [507905057686] +14:48:16 [ 38] [ 6] [774782] +14:48:16 [ 39] [ 2] [00] +14:48:16 [ 41] [ 8] [03004300] +14:48:16 [ 49] [ 3] [418] +14:48:16 [ 52] [ 16] [23DE3D3687DCE508] +14:48:16 [ 54] [ 20] [1001418C000070677300] +14:48:16 ============================================================================ +14:48:16 Calculate Source COMM Id = 0 +14:48:16 ============================================================================ +14:48:16 + + +waiting on router queue for slot.... +14:48:16 ============================================================================ +14:48:16 Slot Id : <234> +14:48:16 Transaction Type : REQUEST +14:48:16 Received From : +14:48:16 ============================================================================ +14:48:16 FNo. Len. Field Value +14:48:16 ============================================================================ +14:48:16 [ 1] [ 4] [0800] +14:48:16 [ 2] [ 5] [02531] +14:48:16 [ 3] [ 6] [579148] +14:48:16 [ 7] [ 10] [0320074816] +14:48:16 [ 11] [ 6] [807271] +14:48:16 [ 15] [ 10] [0320074816] +14:48:16 [ 37] [ 11] [57914807271] +14:48:16 [ 70] [ 3] [001] +14:48:16 ============================================================================ +14:48:16 + + +waiting on router queue for slot.... +14:48:17 ============================================================================ +14:48:17 Slot Id : <234> +14:48:17 Transaction Type : RESPONSE +14:48:17 Received From : +14:48:17 ============================================================================ +14:48:17 FNo. Len. Field Value +14:48:17 ============================================================================ +14:48:17 [ 1] [ 4] [0810] +14:48:17 [ 7] [ 10] [0320074816] +14:48:17 [ 11] [ 6] [807271] +14:48:17 [ 15] [ 4] [0320] +14:48:17 [ 37] [ 12] [57914807271] +14:48:17 [ 39] [ 2] [00] +14:48:17 [ 70] [ 3] [001] +14:48:17 ============================================================================ +14:48:17 Sending to : +14:48:17 ============================================================================ +14:48:17 + + +waiting on router queue for slot.... +14:48:18 ============================================================================ +14:48:18 Slot Id : <249> +14:48:18 Transaction Type : REQUEST +14:48:18 Received From : +14:48:18 ============================================================================ +14:48:18 FNo. Len. Field Value +14:48:18 ============================================================================ +14:48:18 [ 1] [ 4] [0200] +14:48:18 [ 2] [ 16] [6688990108430503] +14:48:18 [ 3] [ 6] [010000] +14:48:18 [ 4] [ 12] [000100000000] +14:48:18 [ 7] [ 10] [0320144814] +14:48:18 [ 11] [ 6] [774817] +14:48:18 [ 12] [ 6] [144814] +14:48:18 [ 13] [ 4] [0320] +14:48:18 [ 15] [ 4] [0320] +14:48:18 [ 18] [ 4] [6011] +14:48:18 [ 22] [ 3] [900] +14:48:18 [ 25] [ 2] [02] +14:48:18 [ 28] [ 9] [D00002000] +14:48:18 [ 32] [ 6] [621354] +14:48:18 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:48:18 [ 37] [ 12] [507903499510] +14:48:18 [ 41] [ 8] [06002200] +14:48:18 [ 42] [ 15] [NATIVE ] +14:48:18 [ 43] [ 40] [Beng Market Beng LAO] +14:48:18 [ 49] [ 3] [418] +14:48:18 [ 52] [ 16] [C7B63C92FBC10BF3] +14:48:18 ============================================================================ +14:48:18 + + +waiting on router queue for slot.... +14:48:18 Sending to : +14:48:18 ============================================================================ +14:48:18 Sending to : +14:48:18 ============================================================================ +14:48:19 ============================================================================ +14:48:19 Slot Id : <249> +14:48:19 Transaction Type : REQUEST +14:48:19 Received From : +14:48:19 ============================================================================ +14:48:19 FNo. Len. Field Value +14:48:19 ============================================================================ +14:48:19 [ 1] [ 4] [0200] +14:48:19 [ 2] [ 16] [6688990108430503] +14:48:19 [ 3] [ 6] [010000] +14:48:19 [ 4] [ 12] [000100000000] +14:48:19 [ 7] [ 10] [0320144814] +14:48:19 [ 11] [ 6] [774817] +14:48:19 [ 12] [ 6] [144814] +14:48:19 [ 13] [ 4] [0320] +14:48:19 [ 15] [ 4] [0320] +14:48:19 [ 18] [ 4] [6011] +14:48:19 [ 22] [ 3] [900] +14:48:19 [ 25] [ 2] [02] +14:48:19 [ 28] [ 9] [D00002000] +14:48:19 [ 32] [ 6] [621354] +14:48:19 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:48:19 [ 37] [ 12] [507903499510] +14:48:19 [ 41] [ 8] [06002200] +14:48:19 [ 42] [ 15] [NATIVE ] +14:48:19 [ 43] [ 40] [Beng Market Beng LAO] +14:48:19 [ 49] [ 3] [418] +14:48:19 [ 52] [ 16] [C7B63C92FBC10BF3] +14:48:19 ============================================================================ +14:48:19 + + +waiting on router queue for slot.... +14:48:19 Sending to : +14:48:19 ============================================================================ +14:48:19 ============================================================================ +14:48:19 Slot Id : <249> +14:48:19 Transaction Type : REQUEST +14:48:19 Received From : +14:48:19 ============================================================================ +14:48:19 FNo. Len. Field Value +14:48:19 ============================================================================ +14:48:19 [ 1] [ 4] [0200] +14:48:19 [ 2] [ 16] [6688990108430503] +14:48:19 [ 3] [ 6] [010000] +14:48:19 [ 4] [ 12] [000100000000] +14:48:19 [ 7] [ 10] [0320144814] +14:48:19 [ 11] [ 6] [774817] +14:48:19 [ 12] [ 6] [144814] +14:48:19 [ 13] [ 4] [0320] +14:48:19 [ 15] [ 4] [0320] +14:48:19 [ 18] [ 4] [6011] +14:48:19 [ 22] [ 3] [900] +14:48:19 [ 25] [ 2] [02] +14:48:19 [ 28] [ 9] [D00002000] +14:48:19 [ 32] [ 6] [621354] +14:48:19 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:48:19 [ 37] [ 12] [507903499510] +14:48:19 [ 41] [ 8] [06002200] +14:48:19 [ 42] [ 15] [NATIVE ] +14:48:19 [ 43] [ 40] [Beng Market Beng LAO] +14:48:19 [ 49] [ 3] [418] +14:48:19 [ 52] [ 16] [6EB8918F0BC2E700] +14:48:19 ============================================================================ +14:48:19 + + +waiting on router queue for slot.... +14:48:19 Sending to : <4> +14:48:19 ============================================================================ +14:48:20 ============================================================================ +14:48:20 Slot Id : <249> +14:48:20 Transaction Type : RESPONSE +14:48:20 Received From : +14:48:20 ============================================================================ +14:48:20 FNo. Len. Field Value +14:48:20 ============================================================================ +14:48:20 [ 1] [ 4] [0210] +14:48:20 [ 2] [ 16] [6688990108430503] +14:48:20 [ 3] [ 6] [010000] +14:48:20 [ 4] [ 12] [000100000000] +14:48:20 [ 11] [ 6] [774817] +14:48:20 [ 12] [ 6] [144814] +14:48:20 [ 15] [ 4] [0320] +14:48:20 [ 18] [ 4] [6011] +14:48:20 [ 32] [ 6] [621354] +14:48:20 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:48:20 [ 37] [ 12] [507903499510] +14:48:20 [ 38] [ 6] [477848] +14:48:20 [ 39] [ 2] [00] +14:48:20 [ 41] [ 8] [06002200] +14:48:20 [ 49] [ 3] [418] +14:48:20 [ 54] [ 20] [0002418C000147207192] +14:48:20 ============================================================================ +14:48:20 Sending to : +14:48:20 ============================================================================ +14:48:20 + + +waiting on router queue for slot.... +14:48:20 ============================================================================ +14:48:20 Slot Id : <210> +14:48:20 Transaction Type : REQUEST +14:48:20 Received From : +14:48:20 ============================================================================ +14:48:20 FNo. Len. Field Value +14:48:20 ============================================================================ +14:48:20 [ 1] [ 4] [0200] +14:48:20 [ 2] [ 16] [6213544001001558] +14:48:20 [ 3] [ 6] [301000] +14:48:20 [ 4] [ 12] [000000000000] +14:48:20 [ 7] [ 10] [0320144610] +14:48:20 [ 11] [ 6] [949037] +14:48:20 [ 12] [ 6] [144610] +14:48:20 [ 13] [ 4] [0320] +14:48:20 [ 15] [ 4] [0320] +14:48:20 [ 18] [ 4] [6011] +14:48:20 [ 19] [ 3] [418] +14:48:20 [ 22] [ 3] [021] +14:48:20 [ 25] [ 2] [01] +14:48:20 [ 28] [ 9] [D00000000] +14:48:20 [ 32] [ 6] [668899] +14:48:20 [ 35] [ 32] [6213544001001558=491212010155405] +14:48:20 [ 37] [ 12] [507900858403] +14:48:20 [ 41] [ 8] [03015004] +14:48:20 [ 42] [ 15] [APT ] +14:48:20 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +14:48:20 [ 49] [ 3] [418] +14:48:20 [ 52] [ 16] [BAD8AD3D7D336157] +14:48:20 ============================================================================ +14:48:20 + + +waiting on router queue for slot.... +14:48:20 Sending to : +14:48:20 ============================================================================ +14:48:20 Sending to : +14:48:20 ============================================================================ +14:48:20 ============================================================================ +14:48:20 Slot Id : <210> +14:48:20 Transaction Type : REQUEST +14:48:20 Received From : +14:48:20 ============================================================================ +14:48:20 FNo. Len. Field Value +14:48:20 ============================================================================ +14:48:20 [ 1] [ 4] [0200] +14:48:20 [ 2] [ 16] [6213544001001558] +14:48:20 [ 3] [ 6] [301000] +14:48:20 [ 4] [ 12] [000000000000] +14:48:20 [ 7] [ 10] [0320144610] +14:48:20 [ 11] [ 6] [949037] +14:48:20 [ 12] [ 6] [144610] +14:48:20 [ 13] [ 4] [0320] +14:48:20 [ 15] [ 4] [0320] +14:48:20 [ 18] [ 4] [6011] +14:48:20 [ 19] [ 3] [418] +14:48:20 [ 22] [ 3] [021] +14:48:20 [ 25] [ 2] [01] +14:48:20 [ 28] [ 9] [D00000000] +14:48:20 [ 32] [ 6] [668899] +14:48:20 [ 35] [ 32] [6213544001001558=491212010155405] +14:48:20 [ 37] [ 12] [507900858403] +14:48:20 [ 41] [ 8] [03015004] +14:48:20 [ 42] [ 15] [APT ] +14:48:20 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +14:48:20 [ 49] [ 3] [418] +14:48:20 [ 52] [ 16] [BAD8AD3D7D336157] +14:48:20 ============================================================================ +14:48:20 + + +waiting on router queue for slot.... +14:48:20 Sending to : +14:48:20 ============================================================================ +14:48:20 ============================================================================ +14:48:20 Slot Id : <210> +14:48:20 Transaction Type : REQUEST +14:48:20 Received From : +14:48:20 ============================================================================ +14:48:20 FNo. Len. Field Value +14:48:20 ============================================================================ +14:48:20 [ 1] [ 4] [0200] +14:48:20 [ 2] [ 16] [6213544001001558] +14:48:20 [ 3] [ 6] [301000] +14:48:20 [ 4] [ 12] [000000000000] +14:48:20 [ 7] [ 10] [0320144610] +14:48:20 [ 11] [ 6] [949037] +14:48:20 [ 12] [ 6] [144610] +14:48:20 [ 13] [ 4] [0320] +14:48:20 [ 15] [ 4] [0320] +14:48:20 [ 18] [ 4] [6011] +14:48:20 [ 19] [ 3] [418] +14:48:20 [ 22] [ 3] [021] +14:48:20 [ 25] [ 2] [01] +14:48:20 [ 28] [ 9] [D00000000] +14:48:20 [ 32] [ 6] [668899] +14:48:20 [ 35] [ 32] [6213544001001558=491212010155405] +14:48:20 [ 37] [ 12] [507900858403] +14:48:20 [ 41] [ 8] [03015004] +14:48:20 [ 42] [ 15] [APT ] +14:48:20 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +14:48:20 [ 49] [ 3] [418] +14:48:20 [ 52] [ 16] [A60098ED3EA4EF4E] +14:48:20 ============================================================================ +14:48:20 + + +waiting on router queue for slot.... +14:48:20 Sending to : <0> +14:48:20 ============================================================================ +14:48:21 ============================================================================ +14:48:21 Slot Id : <210> +14:48:21 Transaction Type : RESPONSE +14:48:21 Received From : +14:48:21 ============================================================================ +14:48:21 FNo. Len. Field Value +14:48:21 ============================================================================ +14:48:21 [ 1] [ 4] [0210] +14:48:21 [ 2] [ 16] [6213544001001558] +14:48:21 [ 3] [ 6] [301000] +14:48:21 [ 4] [ 12] [000000000000] +14:48:21 [ 7] [ 10] [0320144610] +14:48:21 [ 11] [ 6] [949037] +14:48:21 [ 12] [ 6] [144610] +14:48:21 [ 13] [ 4] [0320] +14:48:21 [ 15] [ 4] [0320] +14:48:21 [ 18] [ 4] [6011] +14:48:21 [ 19] [ 3] [418] +14:48:21 [ 32] [ 6] [668899] +14:48:21 [ 35] [ 32] [6213544001001558=491212010155405] +14:48:21 [ 37] [ 12] [507900858403] +14:48:21 [ 38] [ 6] [253278] +14:48:21 [ 39] [ 2] [00] +14:48:21 [ 41] [ 8] [03015004] +14:48:21 [ 49] [ 3] [418] +14:48:21 [ 54] [ 40] [1001418C0004634981461002418C000463498146] +14:48:21 ============================================================================ +14:48:21 Sending to : +14:48:21 ============================================================================ +14:48:21 + + +waiting on router queue for slot.... +14:48:21 ============================================================================ +14:48:21 Slot Id : <249> +14:48:21 Transaction Type : RESPONSE +14:48:21 Received From : +14:48:21 ============================================================================ +14:48:21 FNo. Len. Field Value +14:48:21 ============================================================================ +14:48:21 [ 1] [ 4] [0210] +14:48:21 [ 2] [ 16] [6688990108430503] +14:48:21 [ 3] [ 6] [010000] +14:48:21 [ 4] [ 12] [000100000000] +14:48:21 [ 11] [ 6] [774817] +14:48:21 [ 12] [ 6] [144814] +14:48:21 [ 15] [ 4] [0320] +14:48:21 [ 18] [ 4] [6011] +14:48:21 [ 32] [ 6] [621354] +14:48:21 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:48:21 [ 37] [ 12] [507903499510] +14:48:21 [ 38] [ 6] [477848] +14:48:21 [ 39] [ 2] [00] +14:48:21 [ 41] [ 8] [06002200] +14:48:21 [ 49] [ 3] [418] +14:48:21 [ 54] [ 20] [0002418C000147207192] +14:48:21 ============================================================================ +14:48:21 Calculate Source COMM Id = 0 +14:48:21 ============================================================================ +14:48:21 + + +waiting on router queue for slot.... +14:48:22 ============================================================================ +14:48:22 Slot Id : <263> +14:48:22 Transaction Type : REQUEST +14:48:22 Received From : +14:48:22 ============================================================================ +14:48:22 FNo. Len. Field Value +14:48:22 ============================================================================ +14:48:22 [ 1] [ 4] [0800] +14:48:22 [ 7] [ 10] [0320074730] +14:48:22 [ 11] [ 6] [156855] +14:48:22 [ 70] [ 3] [301] +14:48:22 ============================================================================ +14:48:22 + + +waiting on router queue for slot.... +14:48:22 Sending to : +14:48:22 ============================================================================ +14:48:22 ============================================================================ +14:48:22 Slot Id : <263> +14:48:22 Transaction Type : RESPONSE +14:48:22 Received From : +14:48:22 ============================================================================ +14:48:22 FNo. Len. Field Value +14:48:22 ============================================================================ +14:48:22 [ 1] [ 4] [0810] +14:48:22 [ 7] [ 10] [0320074730] +14:48:22 [ 11] [ 6] [156855] +14:48:22 [ 39] [ 2] [00] +14:48:22 [ 70] [ 3] [301] +14:48:22 ============================================================================ +14:48:22 Calculate Source COMM Id = 2 +14:48:22 ============================================================================ +14:48:22 + + +waiting on router queue for slot.... +14:48:23 ============================================================================ +14:48:23 Slot Id : <210> +14:48:23 Transaction Type : RESPONSE +14:48:23 Received From : +14:48:23 ============================================================================ +14:48:23 FNo. Len. Field Value +14:48:23 ============================================================================ +14:48:23 [ 1] [ 4] [0210] +14:48:23 [ 2] [ 16] [6213544001001558] +14:48:23 [ 3] [ 6] [301000] +14:48:23 [ 4] [ 12] [000000000000] +14:48:23 [ 7] [ 10] [0320144610] +14:48:23 [ 11] [ 6] [949037] +14:48:23 [ 12] [ 6] [144610] +14:48:23 [ 13] [ 4] [0320] +14:48:23 [ 15] [ 4] [0320] +14:48:23 [ 18] [ 4] [6011] +14:48:23 [ 19] [ 3] [418] +14:48:23 [ 32] [ 6] [668899] +14:48:23 [ 35] [ 32] [6213544001001558=491212010155405] +14:48:23 [ 37] [ 12] [507900858403] +14:48:23 [ 38] [ 6] [253278] +14:48:23 [ 39] [ 2] [00] +14:48:23 [ 41] [ 8] [03015004] +14:48:23 [ 49] [ 3] [418] +14:48:23 [ 54] [ 40] [1001418C0004634981461002418C000463498146] +14:48:23 ============================================================================ +14:48:23 Calculate Source COMM Id = 4 +14:48:23 ============================================================================ +14:48:23 + + +waiting on router queue for slot.... +14:48:28 ============================================================================ +14:48:28 Slot Id : <259> +14:48:28 Transaction Type : REQUEST +14:48:28 Received From : +14:48:28 ============================================================================ +14:48:28 FNo. Len. Field Value +14:48:28 ============================================================================ +14:48:28 [ 1] [ 4] [0200] +14:48:28 [ 2] [ 16] [6213544000074135] +14:48:28 [ 3] [ 6] [010000] +14:48:28 [ 4] [ 12] [000100000000] +14:48:28 [ 7] [ 10] [0320074735] +14:48:28 [ 11] [ 6] [269824] +14:48:28 [ 12] [ 6] [144735] +14:48:28 [ 13] [ 4] [0320] +14:48:28 [ 14] [ 4] [4912] +14:48:28 [ 15] [ 4] [0320] +14:48:28 [ 18] [ 4] [6011] +14:48:28 [ 19] [ 3] [418] +14:48:28 [ 22] [ 3] [021] +14:48:28 [ 25] [ 2] [01] +14:48:28 [ 28] [ 9] [D00002000] +14:48:28 [ 32] [ 6] [180893] +14:48:28 [ 35] [ 32] [6213544000074135=491212017413905] +14:48:28 [ 37] [ 12] [507907269824] +14:48:28 [ 41] [ 8] [0106NAXA] +14:48:28 [ 42] [ 15] [999999 ] +14:48:28 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:48:28 [ 49] [ 3] [418] +14:48:28 [ 52] [ 16] [7A660DA19C242BF2] +14:48:28 ============================================================================ +14:48:28 + + +waiting on router queue for slot.... +14:48:28 Sending to : +14:48:28 ============================================================================ +14:48:28 Sending to : +14:48:28 ============================================================================ +14:48:28 ============================================================================ +14:48:28 Slot Id : <259> +14:48:28 Transaction Type : REQUEST +14:48:28 Received From : +14:48:28 ============================================================================ +14:48:28 FNo. Len. Field Value +14:48:28 ============================================================================ +14:48:28 [ 1] [ 4] [0200] +14:48:28 [ 2] [ 16] [6213544000074135] +14:48:28 [ 3] [ 6] [010000] +14:48:28 [ 4] [ 12] [000100000000] +14:48:28 [ 7] [ 10] [0320074735] +14:48:28 [ 11] [ 6] [269824] +14:48:28 [ 12] [ 6] [144735] +14:48:28 [ 13] [ 4] [0320] +14:48:28 [ 14] [ 4] [4912] +14:48:28 [ 15] [ 4] [0320] +14:48:28 [ 18] [ 4] [6011] +14:48:28 [ 19] [ 3] [418] +14:48:28 [ 22] [ 3] [021] +14:48:28 [ 25] [ 2] [01] +14:48:28 [ 28] [ 9] [D00002000] +14:48:28 [ 32] [ 6] [180893] +14:48:28 [ 35] [ 32] [6213544000074135=491212017413905] +14:48:28 [ 37] [ 12] [507907269824] +14:48:28 [ 41] [ 8] [0106NAXA] +14:48:28 [ 42] [ 15] [999999 ] +14:48:28 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:48:28 [ 49] [ 3] [418] +14:48:28 [ 52] [ 16] [7A660DA19C242BF2] +14:48:28 ============================================================================ +14:48:28 + + +waiting on router queue for slot.... +14:48:28 Sending to : +14:48:28 ============================================================================ +14:48:28 ============================================================================ +14:48:28 Slot Id : <259> +14:48:28 Transaction Type : REQUEST +14:48:28 Received From : +14:48:28 ============================================================================ +14:48:28 FNo. Len. Field Value +14:48:28 ============================================================================ +14:48:28 [ 1] [ 4] [0200] +14:48:28 [ 2] [ 16] [6213544000074135] +14:48:28 [ 3] [ 6] [010000] +14:48:28 [ 4] [ 12] [000100000000] +14:48:28 [ 7] [ 10] [0320074735] +14:48:28 [ 11] [ 6] [269824] +14:48:28 [ 12] [ 6] [144735] +14:48:28 [ 13] [ 4] [0320] +14:48:28 [ 14] [ 4] [4912] +14:48:28 [ 15] [ 4] [0320] +14:48:28 [ 18] [ 4] [6011] +14:48:28 [ 19] [ 3] [418] +14:48:28 [ 22] [ 3] [021] +14:48:28 [ 25] [ 2] [01] +14:48:28 [ 28] [ 9] [D00002000] +14:48:28 [ 32] [ 6] [180893] +14:48:28 [ 35] [ 32] [6213544000074135=491212017413905] +14:48:28 [ 37] [ 12] [507907269824] +14:48:28 [ 41] [ 8] [0106NAXA] +14:48:28 [ 42] [ 15] [999999 ] +14:48:28 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:48:28 [ 49] [ 3] [418] +14:48:28 [ 52] [ 16] [45341E05561F80C0] +14:48:28 ============================================================================ +14:48:28 + + +waiting on router queue for slot.... +14:48:28 Sending to : <0> +14:48:28 ============================================================================ +14:48:29 ============================================================================ +14:48:29 Slot Id : <259> +14:48:29 Transaction Type : RESPONSE +14:48:29 Received From : +14:48:29 ============================================================================ +14:48:29 FNo. Len. Field Value +14:48:29 ============================================================================ +14:48:29 [ 1] [ 4] [0210] +14:48:29 [ 2] [ 16] [6213544000074135] +14:48:29 [ 3] [ 6] [010000] +14:48:29 [ 4] [ 12] [000100000000] +14:48:29 [ 7] [ 10] [0320074735] +14:48:29 [ 11] [ 6] [269824] +14:48:29 [ 12] [ 6] [144735] +14:48:29 [ 13] [ 4] [0320] +14:48:29 [ 15] [ 4] [0320] +14:48:29 [ 18] [ 4] [6011] +14:48:29 [ 19] [ 3] [418] +14:48:29 [ 32] [ 6] [180893] +14:48:29 [ 35] [ 32] [6213544000074135=491212017413905] +14:48:29 [ 37] [ 12] [507907269824] +14:48:29 [ 38] [ 6] [300337] +14:48:29 [ 39] [ 2] [00] +14:48:29 [ 41] [ 8] [0106NAXA] +14:48:29 [ 49] [ 3] [418] +14:48:29 [ 54] [ 40] [0001418C0006945327140002418C000694532714] +14:48:29 ============================================================================ +14:48:29 Sending to : +14:48:29 ============================================================================ +14:48:29 + + +waiting on router queue for slot.... +14:48:30 ============================================================================ +14:48:30 Slot Id : <259> +14:48:30 Transaction Type : RESPONSE +14:48:30 Received From : +14:48:30 ============================================================================ +14:48:30 FNo. Len. Field Value +14:48:30 ============================================================================ +14:48:30 [ 1] [ 4] [0210] +14:48:30 [ 2] [ 16] [6213544000074135] +14:48:30 [ 3] [ 6] [010000] +14:48:30 [ 4] [ 12] [000100000000] +14:48:30 [ 7] [ 10] [0320074735] +14:48:30 [ 11] [ 6] [269824] +14:48:30 [ 12] [ 6] [144735] +14:48:30 [ 13] [ 4] [0320] +14:48:30 [ 15] [ 4] [0320] +14:48:30 [ 18] [ 4] [6011] +14:48:30 [ 19] [ 3] [418] +14:48:30 [ 32] [ 6] [180893] +14:48:30 [ 35] [ 32] [6213544000074135=491212017413905] +14:48:30 [ 37] [ 12] [507907269824] +14:48:30 [ 38] [ 6] [300337] +14:48:30 [ 39] [ 2] [00] +14:48:30 [ 41] [ 8] [0106NAXA] +14:48:30 [ 49] [ 3] [418] +14:48:30 [ 54] [ 40] [0001418C0006945327140002418C000694532714] +14:48:30 ============================================================================ +14:48:30 Calculate Source COMM Id = 2 +14:48:30 ============================================================================ +14:48:30 + + +waiting on router queue for slot.... +14:48:43 ============================================================================ +14:48:43 Slot Id : <261> +14:48:43 Transaction Type : REQUEST +14:48:43 Received From : +14:48:43 ============================================================================ +14:48:43 FNo. Len. Field Value +14:48:43 ============================================================================ +14:48:43 [ 1] [ 4] [0800] +14:48:43 [ 7] [ 10] [0320074751] +14:48:43 [ 11] [ 6] [156856] +14:48:43 [ 70] [ 3] [301] +14:48:43 ============================================================================ +14:48:43 + + +waiting on router queue for slot.... +14:48:43 Sending to : +14:48:43 ============================================================================ +14:48:43 ============================================================================ +14:48:43 Slot Id : <261> +14:48:43 Transaction Type : RESPONSE +14:48:43 Received From : +14:48:43 ============================================================================ +14:48:43 FNo. Len. Field Value +14:48:43 ============================================================================ +14:48:43 [ 1] [ 4] [0810] +14:48:43 [ 7] [ 10] [0320074751] +14:48:43 [ 11] [ 6] [156856] +14:48:43 [ 39] [ 2] [00] +14:48:43 [ 70] [ 3] [301] +14:48:43 ============================================================================ +14:48:43 Calculate Source COMM Id = 2 +14:48:43 ============================================================================ +14:48:43 + + +waiting on router queue for slot.... +14:48:51 ============================================================================ +14:48:51 Slot Id : <270> +14:48:51 Transaction Type : REQUEST +14:48:51 Received From : +14:48:51 ============================================================================ +14:48:51 FNo. Len. Field Value +14:48:51 ============================================================================ +14:48:51 [ 1] [ 4] [0200] +14:48:51 [ 2] [ 16] [6688990100966306] +14:48:51 [ 3] [ 6] [011000] +14:48:51 [ 4] [ 12] [000100000000] +14:48:51 [ 7] [ 10] [0320144846] +14:48:51 [ 11] [ 6] [774912] +14:48:51 [ 12] [ 6] [144846] +14:48:51 [ 13] [ 4] [0320] +14:48:51 [ 15] [ 4] [0320] +14:48:51 [ 18] [ 4] [6011] +14:48:51 [ 22] [ 3] [900] +14:48:51 [ 25] [ 2] [02] +14:48:51 [ 28] [ 9] [D00002000] +14:48:51 [ 32] [ 6] [621354] +14:48:51 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:48:51 [ 37] [ 12] [507904719689] +14:48:51 [ 41] [ 8] [18001000] +14:48:51 [ 42] [ 15] [NATIVE ] +14:48:51 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:48:51 [ 49] [ 3] [418] +14:48:51 [ 52] [ 16] [7B2CD2386E538D89] +14:48:51 ============================================================================ +14:48:51 + + +waiting on router queue for slot.... +14:48:51 Sending to : +14:48:51 ============================================================================ +14:48:51 Sending to : +14:48:51 ============================================================================ +14:48:51 ============================================================================ +14:48:51 Slot Id : <270> +14:48:51 Transaction Type : REQUEST +14:48:51 Received From : +14:48:51 ============================================================================ +14:48:51 FNo. Len. Field Value +14:48:51 ============================================================================ +14:48:51 [ 1] [ 4] [0200] +14:48:51 [ 2] [ 16] [6688990100966306] +14:48:51 [ 3] [ 6] [011000] +14:48:51 [ 4] [ 12] [000100000000] +14:48:51 [ 7] [ 10] [0320144846] +14:48:51 [ 11] [ 6] [774912] +14:48:51 [ 12] [ 6] [144846] +14:48:51 [ 13] [ 4] [0320] +14:48:51 [ 15] [ 4] [0320] +14:48:51 [ 18] [ 4] [6011] +14:48:51 [ 22] [ 3] [900] +14:48:51 [ 25] [ 2] [02] +14:48:51 [ 28] [ 9] [D00002000] +14:48:51 [ 32] [ 6] [621354] +14:48:51 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:48:51 [ 37] [ 12] [507904719689] +14:48:51 [ 41] [ 8] [18001000] +14:48:51 [ 42] [ 15] [NATIVE ] +14:48:51 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:48:51 [ 49] [ 3] [418] +14:48:51 [ 52] [ 16] [7B2CD2386E538D89] +14:48:51 ============================================================================ +14:48:51 + + +waiting on router queue for slot.... +14:48:51 Sending to : +14:48:51 ============================================================================ +14:48:51 ============================================================================ +14:48:51 Slot Id : <270> +14:48:51 Transaction Type : REQUEST +14:48:51 Received From : +14:48:51 ============================================================================ +14:48:51 FNo. Len. Field Value +14:48:51 ============================================================================ +14:48:51 [ 1] [ 4] [0200] +14:48:51 [ 2] [ 16] [6688990100966306] +14:48:51 [ 3] [ 6] [011000] +14:48:51 [ 4] [ 12] [000100000000] +14:48:51 [ 7] [ 10] [0320144846] +14:48:51 [ 11] [ 6] [774912] +14:48:51 [ 12] [ 6] [144846] +14:48:51 [ 13] [ 4] [0320] +14:48:51 [ 15] [ 4] [0320] +14:48:51 [ 18] [ 4] [6011] +14:48:51 [ 22] [ 3] [900] +14:48:51 [ 25] [ 2] [02] +14:48:51 [ 28] [ 9] [D00002000] +14:48:51 [ 32] [ 6] [621354] +14:48:51 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:48:51 [ 37] [ 12] [507904719689] +14:48:51 [ 41] [ 8] [18001000] +14:48:51 [ 42] [ 15] [NATIVE ] +14:48:51 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:48:51 [ 49] [ 3] [418] +14:48:51 [ 52] [ 16] [5E6AE48118060C4F] +14:48:51 ============================================================================ +14:48:51 + + +waiting on router queue for slot.... +14:48:51 Sending to : <4> +14:48:51 ============================================================================ +14:48:52 ============================================================================ +14:48:52 Slot Id : <270> +14:48:52 Transaction Type : RESPONSE +14:48:52 Received From : +14:48:52 ============================================================================ +14:48:52 FNo. Len. Field Value +14:48:52 ============================================================================ +14:48:52 [ 1] [ 4] [0210] +14:48:52 [ 2] [ 16] [6688990100966306] +14:48:52 [ 3] [ 6] [011000] +14:48:52 [ 4] [ 12] [000100000000] +14:48:52 [ 11] [ 6] [774912] +14:48:52 [ 12] [ 6] [144846] +14:48:52 [ 15] [ 4] [0320] +14:48:52 [ 18] [ 4] [6011] +14:48:52 [ 32] [ 6] [621354] +14:48:52 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:48:52 [ 37] [ 12] [507904719689] +14:48:52 [ 38] [ 6] [872143] +14:48:52 [ 39] [ 2] [00] +14:48:52 [ 41] [ 8] [18001000] +14:48:52 [ 49] [ 3] [418] +14:48:52 [ 54] [ 20] [1002418C000142670528] +14:48:52 ============================================================================ +14:48:52 Sending to : +14:48:52 ============================================================================ +14:48:52 + + +waiting on router queue for slot.... +14:48:54 ============================================================================ +14:48:54 Slot Id : <270> +14:48:54 Transaction Type : RESPONSE +14:48:54 Received From : +14:48:54 ============================================================================ +14:48:54 FNo. Len. Field Value +14:48:54 ============================================================================ +14:48:54 [ 1] [ 4] [0210] +14:48:54 [ 2] [ 16] [6688990100966306] +14:48:54 [ 3] [ 6] [011000] +14:48:54 [ 4] [ 12] [000100000000] +14:48:54 [ 11] [ 6] [774912] +14:48:54 [ 12] [ 6] [144846] +14:48:54 [ 15] [ 4] [0320] +14:48:54 [ 18] [ 4] [6011] +14:48:54 [ 32] [ 6] [621354] +14:48:54 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:48:54 [ 37] [ 12] [507904719689] +14:48:54 [ 38] [ 6] [872143] +14:48:54 [ 39] [ 2] [00] +14:48:54 [ 41] [ 8] [18001000] +14:48:54 [ 49] [ 3] [418] +14:48:54 [ 54] [ 20] [1002418C000142670528] +14:48:54 ============================================================================ +14:48:54 Calculate Source COMM Id = 0 +14:48:54 ============================================================================ +14:48:54 + + +waiting on router queue for slot.... +14:48:54 ============================================================================ +14:48:54 Slot Id : <225> +14:48:54 Transaction Type : REQUEST +14:48:54 Received From : +14:48:54 ============================================================================ +14:48:54 FNo. Len. Field Value +14:48:54 ============================================================================ +14:48:54 [ 1] [ 4] [0800] +14:48:54 [ 7] [ 10] [0320074801] +14:48:54 [ 11] [ 6] [156857] +14:48:54 [ 70] [ 3] [301] +14:48:54 ============================================================================ +14:48:54 + + +waiting on router queue for slot.... +14:48:54 Sending to : +14:48:54 ============================================================================ +14:48:54 ============================================================================ +14:48:54 Slot Id : <225> +14:48:54 Transaction Type : RESPONSE +14:48:54 Received From : +14:48:54 ============================================================================ +14:48:54 FNo. Len. Field Value +14:48:54 ============================================================================ +14:48:54 [ 1] [ 4] [0810] +14:48:54 [ 7] [ 10] [0320074801] +14:48:54 [ 11] [ 6] [156857] +14:48:54 [ 39] [ 2] [00] +14:48:54 [ 70] [ 3] [301] +14:48:54 ============================================================================ +14:48:54 Calculate Source COMM Id = 2 +14:48:54 ============================================================================ +14:48:54 + + +waiting on router queue for slot.... +14:49:05 ============================================================================ +14:49:05 Slot Id : <199> +14:49:05 Transaction Type : REQUEST +14:49:05 Received From : +14:49:05 ============================================================================ +14:49:05 FNo. Len. Field Value +14:49:05 ============================================================================ +14:49:05 [ 1] [ 4] [0800] +14:49:05 [ 7] [ 10] [0320074812] +14:49:05 [ 11] [ 6] [156858] +14:49:05 [ 70] [ 3] [301] +14:49:05 ============================================================================ +14:49:05 + + +waiting on router queue for slot.... +14:49:05 Sending to : +14:49:05 ============================================================================ +14:49:05 ============================================================================ +14:49:05 Slot Id : <199> +14:49:05 Transaction Type : RESPONSE +14:49:05 Received From : +14:49:05 ============================================================================ +14:49:05 FNo. Len. Field Value +14:49:05 ============================================================================ +14:49:05 [ 1] [ 4] [0810] +14:49:05 [ 7] [ 10] [0320074812] +14:49:05 [ 11] [ 6] [156858] +14:49:05 [ 39] [ 2] [00] +14:49:05 [ 70] [ 3] [301] +14:49:05 ============================================================================ +14:49:05 Calculate Source COMM Id = 2 +14:49:05 ============================================================================ +14:49:05 + + +waiting on router queue for slot.... +14:49:07 ============================================================================ +14:49:07 Slot Id : <269> +14:49:07 Transaction Type : REQUEST +14:49:07 Received From : +14:49:07 ============================================================================ +14:49:07 FNo. Len. Field Value +14:49:07 ============================================================================ +14:49:07 [ 1] [ 4] [0200] +14:49:07 [ 2] [ 16] [6213544000074135] +14:49:07 [ 3] [ 6] [010000] +14:49:07 [ 4] [ 12] [000100000000] +14:49:07 [ 7] [ 10] [0320074814] +14:49:07 [ 11] [ 6] [269830] +14:49:07 [ 12] [ 6] [144814] +14:49:07 [ 13] [ 4] [0320] +14:49:07 [ 14] [ 4] [4912] +14:49:07 [ 15] [ 4] [0320] +14:49:07 [ 18] [ 4] [6011] +14:49:07 [ 19] [ 3] [418] +14:49:07 [ 22] [ 3] [021] +14:49:07 [ 25] [ 2] [01] +14:49:07 [ 28] [ 9] [D00002000] +14:49:07 [ 32] [ 6] [180893] +14:49:07 [ 35] [ 32] [6213544000074135=491212017413905] +14:49:07 [ 37] [ 12] [507907269830] +14:49:07 [ 41] [ 8] [0106NAXA] +14:49:07 [ 42] [ 15] [999999 ] +14:49:07 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:49:07 [ 49] [ 3] [418] +14:49:07 [ 52] [ 16] [7A660DA19C242BF2] +14:49:07 ============================================================================ +14:49:07 + + +waiting on router queue for slot.... +14:49:07 Sending to : +14:49:07 ============================================================================ +14:49:07 Sending to : +14:49:07 ============================================================================ +14:49:08 ============================================================================ +14:49:08 Slot Id : <269> +14:49:08 Transaction Type : REQUEST +14:49:08 Received From : +14:49:08 ============================================================================ +14:49:08 FNo. Len. Field Value +14:49:08 ============================================================================ +14:49:08 [ 1] [ 4] [0200] +14:49:08 [ 2] [ 16] [6213544000074135] +14:49:08 [ 3] [ 6] [010000] +14:49:08 [ 4] [ 12] [000100000000] +14:49:08 [ 7] [ 10] [0320074814] +14:49:08 [ 11] [ 6] [269830] +14:49:08 [ 12] [ 6] [144814] +14:49:08 [ 13] [ 4] [0320] +14:49:08 [ 14] [ 4] [4912] +14:49:08 [ 15] [ 4] [0320] +14:49:08 [ 18] [ 4] [6011] +14:49:08 [ 19] [ 3] [418] +14:49:08 [ 22] [ 3] [021] +14:49:08 [ 25] [ 2] [01] +14:49:08 [ 28] [ 9] [D00002000] +14:49:08 [ 32] [ 6] [180893] +14:49:08 [ 35] [ 32] [6213544000074135=491212017413905] +14:49:08 [ 37] [ 12] [507907269830] +14:49:08 [ 41] [ 8] [0106NAXA] +14:49:08 [ 42] [ 15] [999999 ] +14:49:08 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:49:08 [ 49] [ 3] [418] +14:49:08 [ 52] [ 16] [7A660DA19C242BF2] +14:49:08 ============================================================================ +14:49:08 + + +waiting on router queue for slot.... +14:49:08 Sending to : +14:49:08 ============================================================================ +14:49:08 ============================================================================ +14:49:08 Slot Id : <269> +14:49:08 Transaction Type : REQUEST +14:49:08 Received From : +14:49:08 ============================================================================ +14:49:08 FNo. Len. Field Value +14:49:08 ============================================================================ +14:49:08 [ 1] [ 4] [0200] +14:49:08 [ 2] [ 16] [6213544000074135] +14:49:08 [ 3] [ 6] [010000] +14:49:08 [ 4] [ 12] [000100000000] +14:49:08 [ 7] [ 10] [0320074814] +14:49:08 [ 11] [ 6] [269830] +14:49:08 [ 12] [ 6] [144814] +14:49:08 [ 13] [ 4] [0320] +14:49:08 [ 14] [ 4] [4912] +14:49:08 [ 15] [ 4] [0320] +14:49:08 [ 18] [ 4] [6011] +14:49:08 [ 19] [ 3] [418] +14:49:08 [ 22] [ 3] [021] +14:49:08 [ 25] [ 2] [01] +14:49:08 [ 28] [ 9] [D00002000] +14:49:08 [ 32] [ 6] [180893] +14:49:08 [ 35] [ 32] [6213544000074135=491212017413905] +14:49:08 [ 37] [ 12] [507907269830] +14:49:08 [ 41] [ 8] [0106NAXA] +14:49:08 [ 42] [ 15] [999999 ] +14:49:08 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:49:08 [ 49] [ 3] [418] +14:49:08 [ 52] [ 16] [45341E05561F80C0] +14:49:08 ============================================================================ +14:49:08 + + +waiting on router queue for slot.... +14:49:08 Sending to : <0> +14:49:08 ============================================================================ +14:49:08 ============================================================================ +14:49:08 Slot Id : <269> +14:49:08 Transaction Type : RESPONSE +14:49:08 Received From : +14:49:08 ============================================================================ +14:49:08 FNo. Len. Field Value +14:49:08 ============================================================================ +14:49:08 [ 1] [ 4] [0210] +14:49:08 [ 2] [ 16] [6213544000074135] +14:49:08 [ 3] [ 6] [010000] +14:49:08 [ 4] [ 12] [000100000000] +14:49:08 [ 7] [ 10] [0320074814] +14:49:08 [ 11] [ 6] [269830] +14:49:08 [ 12] [ 6] [144814] +14:49:08 [ 13] [ 4] [0320] +14:49:08 [ 15] [ 4] [0320] +14:49:08 [ 18] [ 4] [6011] +14:49:08 [ 19] [ 3] [418] +14:49:08 [ 32] [ 6] [180893] +14:49:08 [ 35] [ 32] [6213544000074135=491212017413905] +14:49:08 [ 37] [ 12] [507907269830] +14:49:08 [ 38] [ 6] [736535] +14:49:08 [ 39] [ 2] [00] +14:49:08 [ 41] [ 8] [0106NAXA] +14:49:08 [ 49] [ 3] [418] +14:49:08 [ 54] [ 40] [0001418C0005943327140002418C000594332714] +14:49:08 ============================================================================ +14:49:08 Sending to : +14:49:08 ============================================================================ +14:49:08 + + +waiting on router queue for slot.... +14:49:10 ============================================================================ +14:49:10 Slot Id : <269> +14:49:10 Transaction Type : RESPONSE +14:49:10 Received From : +14:49:10 ============================================================================ +14:49:10 FNo. Len. Field Value +14:49:10 ============================================================================ +14:49:10 [ 1] [ 4] [0210] +14:49:10 [ 2] [ 16] [6213544000074135] +14:49:10 [ 3] [ 6] [010000] +14:49:10 [ 4] [ 12] [000100000000] +14:49:10 [ 7] [ 10] [0320074814] +14:49:10 [ 11] [ 6] [269830] +14:49:10 [ 12] [ 6] [144814] +14:49:10 [ 13] [ 4] [0320] +14:49:10 [ 15] [ 4] [0320] +14:49:10 [ 18] [ 4] [6011] +14:49:10 [ 19] [ 3] [418] +14:49:10 [ 32] [ 6] [180893] +14:49:10 [ 35] [ 32] [6213544000074135=491212017413905] +14:49:10 [ 37] [ 12] [507907269830] +14:49:10 [ 38] [ 6] [736535] +14:49:10 [ 39] [ 2] [00] +14:49:10 [ 41] [ 8] [0106NAXA] +14:49:10 [ 49] [ 3] [418] +14:49:10 [ 54] [ 40] [0001418C0005943327140002418C000594332714] +14:49:10 ============================================================================ +14:49:10 Calculate Source COMM Id = 2 +14:49:10 ============================================================================ +14:49:10 + + +waiting on router queue for slot.... +14:49:10 ============================================================================ +14:49:10 Slot Id : <240> +14:49:10 Transaction Type : REQUEST +14:49:10 Received From : +14:49:10 ============================================================================ +14:49:10 FNo. Len. Field Value +14:49:10 ============================================================================ +14:49:10 [ 1] [ 4] [0200] +14:49:10 [ 2] [ 16] [6213544001940581] +14:49:10 [ 3] [ 6] [010000] +14:49:10 [ 4] [ 12] [000100000000] +14:49:10 [ 7] [ 10] [0320145657] +14:49:10 [ 11] [ 6] [259274] +14:49:10 [ 12] [ 6] [145657] +14:49:10 [ 13] [ 4] [0320] +14:49:10 [ 14] [ 4] [4912] +14:49:10 [ 15] [ 4] [0320] +14:49:10 [ 18] [ 4] [6011] +14:49:10 [ 22] [ 3] [900] +14:49:10 [ 25] [ 2] [02] +14:49:10 [ 28] [ 9] [D00002000] +14:49:10 [ 32] [ 6] [220699] +14:49:10 [ 35] [ 32] [6213544001940581=491212014058837] +14:49:10 [ 37] [ 12] [507900040610] +14:49:10 [ 41] [ 8] [01000400] +14:49:10 [ 42] [ 15] [APTRA ] +14:49:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:49:10 [ 49] [ 3] [418] +14:49:10 [ 52] [ 16] [6BAC1F205713E807] +14:49:10 ============================================================================ +14:49:10 + + +waiting on router queue for slot.... +14:49:10 Sending to : +14:49:10 ============================================================================ +14:49:10 Sending to : +14:49:10 ============================================================================ +14:49:11 ============================================================================ +14:49:11 Slot Id : <240> +14:49:11 Transaction Type : REQUEST +14:49:11 Received From : +14:49:11 ============================================================================ +14:49:11 FNo. Len. Field Value +14:49:11 ============================================================================ +14:49:11 [ 1] [ 4] [0200] +14:49:11 [ 2] [ 16] [6213544001940581] +14:49:11 [ 3] [ 6] [010000] +14:49:11 [ 4] [ 12] [000100000000] +14:49:11 [ 7] [ 10] [0320145657] +14:49:11 [ 11] [ 6] [259274] +14:49:11 [ 12] [ 6] [145657] +14:49:11 [ 13] [ 4] [0320] +14:49:11 [ 14] [ 4] [4912] +14:49:11 [ 15] [ 4] [0320] +14:49:11 [ 18] [ 4] [6011] +14:49:11 [ 22] [ 3] [900] +14:49:11 [ 25] [ 2] [02] +14:49:11 [ 28] [ 9] [D00002000] +14:49:11 [ 32] [ 6] [220699] +14:49:11 [ 35] [ 32] [6213544001940581=491212014058837] +14:49:11 [ 37] [ 12] [507900040610] +14:49:11 [ 41] [ 8] [01000400] +14:49:11 [ 42] [ 15] [APTRA ] +14:49:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:49:11 [ 49] [ 3] [418] +14:49:11 [ 52] [ 16] [6BAC1F205713E807] +14:49:11 ============================================================================ +14:49:11 + + +waiting on router queue for slot.... +14:49:11 Sending to : +14:49:11 ============================================================================ +14:49:11 ============================================================================ +14:49:11 Slot Id : <240> +14:49:11 Transaction Type : REQUEST +14:49:11 Received From : +14:49:11 ============================================================================ +14:49:11 FNo. Len. Field Value +14:49:11 ============================================================================ +14:49:11 [ 1] [ 4] [0200] +14:49:11 [ 2] [ 16] [6213544001940581] +14:49:11 [ 3] [ 6] [010000] +14:49:11 [ 4] [ 12] [000100000000] +14:49:11 [ 7] [ 10] [0320145657] +14:49:11 [ 11] [ 6] [259274] +14:49:11 [ 12] [ 6] [145657] +14:49:11 [ 13] [ 4] [0320] +14:49:11 [ 14] [ 4] [4912] +14:49:11 [ 15] [ 4] [0320] +14:49:11 [ 18] [ 4] [6011] +14:49:11 [ 22] [ 3] [900] +14:49:11 [ 25] [ 2] [02] +14:49:11 [ 28] [ 9] [D00002000] +14:49:11 [ 32] [ 6] [220699] +14:49:11 [ 35] [ 32] [6213544001940581=491212014058837] +14:49:11 [ 37] [ 12] [507900040610] +14:49:11 [ 41] [ 8] [01000400] +14:49:11 [ 42] [ 15] [APTRA ] +14:49:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:49:11 [ 49] [ 3] [418] +14:49:11 [ 52] [ 16] [5707DE3304F6D61C] +14:49:11 ============================================================================ +14:49:11 + + +waiting on router queue for slot.... +14:49:11 Sending to : <0> +14:49:11 ============================================================================ +14:49:11 ============================================================================ +14:49:11 Slot Id : <240> +14:49:11 Transaction Type : RESPONSE +14:49:11 Received From : +14:49:11 ============================================================================ +14:49:11 FNo. Len. Field Value +14:49:11 ============================================================================ +14:49:11 [ 1] [ 4] [0210] +14:49:11 [ 2] [ 16] [6213544001940581] +14:49:11 [ 3] [ 6] [010000] +14:49:11 [ 4] [ 12] [000100000000] +14:49:11 [ 7] [ 10] [0320145657] +14:49:11 [ 11] [ 6] [259274] +14:49:11 [ 12] [ 6] [145657] +14:49:11 [ 13] [ 4] [0320] +14:49:11 [ 15] [ 4] [0320] +14:49:11 [ 18] [ 4] [6011] +14:49:11 [ 32] [ 6] [220699] +14:49:11 [ 35] [ 32] [6213544001940581=491212014058837] +14:49:11 [ 37] [ 12] [507900040610] +14:49:11 [ 38] [ 6] [455921] +14:49:11 [ 39] [ 2] [00] +14:49:11 [ 41] [ 8] [01000400] +14:49:11 [ 49] [ 3] [418] +14:49:11 [ 54] [ 40] [0001418C0005187299160002418C000518729916] +14:49:11 ============================================================================ +14:49:11 Sending to : +14:49:11 ============================================================================ +14:49:11 + + +waiting on router queue for slot.... +14:49:12 ============================================================================ +14:49:12 Slot Id : <240> +14:49:12 Transaction Type : RESPONSE +14:49:12 Received From : +14:49:12 ============================================================================ +14:49:12 FNo. Len. Field Value +14:49:12 ============================================================================ +14:49:12 [ 1] [ 4] [0210] +14:49:12 [ 2] [ 16] [6213544001940581] +14:49:12 [ 3] [ 6] [010000] +14:49:12 [ 4] [ 12] [000100000000] +14:49:12 [ 7] [ 10] [0320145657] +14:49:12 [ 11] [ 6] [259274] +14:49:12 [ 12] [ 6] [145657] +14:49:12 [ 13] [ 4] [0320] +14:49:12 [ 15] [ 4] [0320] +14:49:12 [ 18] [ 4] [6011] +14:49:12 [ 32] [ 6] [220699] +14:49:12 [ 35] [ 32] [6213544001940581=491212014058837] +14:49:12 [ 37] [ 12] [507900040610] +14:49:12 [ 38] [ 6] [455921] +14:49:12 [ 39] [ 2] [00] +14:49:12 [ 41] [ 8] [01000400] +14:49:12 [ 49] [ 3] [418] +14:49:12 [ 54] [ 40] [0001418C0005187299160002418C000518729916] +14:49:12 ============================================================================ +14:49:12 Calculate Source COMM Id = 1 +14:49:12 ============================================================================ +14:49:12 + + +waiting on router queue for slot.... +14:49:14 ============================================================================ +14:49:14 Slot Id : <275> +14:49:14 Transaction Type : REQUEST +14:49:14 Received From : +14:49:14 ============================================================================ +14:49:14 FNo. Len. Field Value +14:49:14 ============================================================================ +14:49:14 [ 1] [ 4] [0800] +14:49:14 [ 7] [ 10] [0320220104] +14:49:14 [ 11] [ 6] [150104] +14:49:14 [ 37] [ 12] [57915150104] +14:49:14 [ 70] [ 3] [301] +14:49:14 ============================================================================ +14:49:14 + + +waiting on router queue for slot.... +14:49:14 Sending to : +14:49:14 ============================================================================ +14:49:14 ============================================================================ +14:49:14 Slot Id : <275> +14:49:14 Transaction Type : RESPONSE +14:49:14 Received From : +14:49:14 ============================================================================ +14:49:14 FNo. Len. Field Value +14:49:14 ============================================================================ +14:49:14 [ 1] [ 4] [0810] +14:49:14 [ 7] [ 10] [0320220104] +14:49:14 [ 11] [ 6] [150104] +14:49:14 [ 37] [ 12] [579151501040] +14:49:14 [ 39] [ 2] [00] +14:49:14 [ 70] [ 3] [810] +14:49:14 ============================================================================ +14:49:14 Calculate Source COMM Id = 6 +14:49:14 ============================================================================ +14:49:14 + + +waiting on router queue for slot.... +14:49:17 ============================================================================ +14:49:17 Slot Id : <228> +14:49:17 Transaction Type : REQUEST +14:49:17 Received From : +14:49:17 ============================================================================ +14:49:17 FNo. Len. Field Value +14:49:17 ============================================================================ +14:49:17 [ 1] [ 4] [0200] +14:49:17 [ 2] [ 16] [6688990040082719] +14:49:17 [ 3] [ 6] [010000] +14:49:17 [ 4] [ 12] [000100000000] +14:49:17 [ 7] [ 10] [0320144913] +14:49:17 [ 11] [ 6] [775015] +14:49:17 [ 12] [ 6] [144913] +14:49:17 [ 13] [ 4] [0320] +14:49:17 [ 15] [ 4] [0320] +14:49:17 [ 18] [ 4] [6011] +14:49:17 [ 22] [ 3] [900] +14:49:17 [ 25] [ 2] [02] +14:49:17 [ 28] [ 9] [D00002000] +14:49:17 [ 32] [ 6] [621354] +14:49:17 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:49:17 [ 37] [ 12] [507904381151] +14:49:17 [ 41] [ 8] [03003700] +14:49:17 [ 42] [ 15] [NATIVE ] +14:49:17 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +14:49:17 [ 49] [ 3] [418] +14:49:17 [ 52] [ 16] [D28D8675129D3A36] +14:49:17 ============================================================================ +14:49:17 + + +waiting on router queue for slot.... +14:49:17 Sending to : +14:49:17 ============================================================================ +14:49:17 Sending to : +14:49:17 ============================================================================ +14:49:18 ============================================================================ +14:49:18 Slot Id : <228> +14:49:18 Transaction Type : REQUEST +14:49:18 Received From : +14:49:18 ============================================================================ +14:49:18 FNo. Len. Field Value +14:49:18 ============================================================================ +14:49:18 [ 1] [ 4] [0200] +14:49:18 [ 2] [ 16] [6688990040082719] +14:49:18 [ 3] [ 6] [010000] +14:49:18 [ 4] [ 12] [000100000000] +14:49:18 [ 7] [ 10] [0320144913] +14:49:18 [ 11] [ 6] [775015] +14:49:18 [ 12] [ 6] [144913] +14:49:18 [ 13] [ 4] [0320] +14:49:18 [ 15] [ 4] [0320] +14:49:18 [ 18] [ 4] [6011] +14:49:18 [ 22] [ 3] [900] +14:49:18 [ 25] [ 2] [02] +14:49:18 [ 28] [ 9] [D00002000] +14:49:18 [ 32] [ 6] [621354] +14:49:18 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:49:18 [ 37] [ 12] [507904381151] +14:49:18 [ 41] [ 8] [03003700] +14:49:18 [ 42] [ 15] [NATIVE ] +14:49:18 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +14:49:18 [ 49] [ 3] [418] +14:49:18 [ 52] [ 16] [D28D8675129D3A36] +14:49:18 ============================================================================ +14:49:18 + + +waiting on router queue for slot.... +14:49:18 Sending to : +14:49:18 ============================================================================ +14:49:18 ============================================================================ +14:49:18 Slot Id : <228> +14:49:18 Transaction Type : REQUEST +14:49:18 Received From : +14:49:18 ============================================================================ +14:49:18 FNo. Len. Field Value +14:49:18 ============================================================================ +14:49:18 [ 1] [ 4] [0200] +14:49:18 [ 2] [ 16] [6688990040082719] +14:49:18 [ 3] [ 6] [010000] +14:49:18 [ 4] [ 12] [000100000000] +14:49:18 [ 7] [ 10] [0320144913] +14:49:18 [ 11] [ 6] [775015] +14:49:18 [ 12] [ 6] [144913] +14:49:18 [ 13] [ 4] [0320] +14:49:18 [ 15] [ 4] [0320] +14:49:18 [ 18] [ 4] [6011] +14:49:18 [ 22] [ 3] [900] +14:49:18 [ 25] [ 2] [02] +14:49:18 [ 28] [ 9] [D00002000] +14:49:18 [ 32] [ 6] [621354] +14:49:18 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:49:18 [ 37] [ 12] [507904381151] +14:49:18 [ 41] [ 8] [03003700] +14:49:18 [ 42] [ 15] [NATIVE ] +14:49:18 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +14:49:18 [ 49] [ 3] [418] +14:49:18 [ 52] [ 16] [44D16A19BF409331] +14:49:18 ============================================================================ +14:49:18 + + +waiting on router queue for slot.... +14:49:18 Sending to : <4> +14:49:18 ============================================================================ +14:49:18 ============================================================================ +14:49:18 Slot Id : <197> +14:49:18 Transaction Type : REQUEST +14:49:18 Received From : +14:49:18 ============================================================================ +14:49:18 FNo. Len. Field Value +14:49:18 ============================================================================ +14:49:18 [ 1] [ 4] [0800] +14:49:18 [ 2] [ 5] [02531] +14:49:18 [ 3] [ 6] [579148] +14:49:18 [ 7] [ 10] [0320074918] +14:49:18 [ 11] [ 6] [807272] +14:49:18 [ 15] [ 10] [0320074918] +14:49:18 [ 37] [ 11] [57914807272] +14:49:18 [ 70] [ 3] [001] +14:49:18 ============================================================================ +14:49:18 + + +waiting on router queue for slot.... +14:49:18 ============================================================================ +14:49:18 Slot Id : <197> +14:49:18 Transaction Type : RESPONSE +14:49:18 Received From : +14:49:18 ============================================================================ +14:49:18 FNo. Len. Field Value +14:49:18 ============================================================================ +14:49:18 [ 1] [ 4] [0810] +14:49:18 [ 7] [ 10] [0320074918] +14:49:18 [ 11] [ 6] [807272] +14:49:18 [ 15] [ 4] [0320] +14:49:18 [ 37] [ 12] [57914807272] +14:49:18 [ 39] [ 2] [00] +14:49:18 [ 70] [ 3] [001] +14:49:18 ============================================================================ +14:49:18 Sending to : +14:49:18 ============================================================================ +14:49:18 + + +waiting on router queue for slot.... +14:49:19 ============================================================================ +14:49:19 Slot Id : <228> +14:49:19 Transaction Type : RESPONSE +14:49:19 Received From : +14:49:19 ============================================================================ +14:49:19 FNo. Len. Field Value +14:49:19 ============================================================================ +14:49:19 [ 1] [ 4] [0210] +14:49:19 [ 2] [ 16] [6688990040082719] +14:49:19 [ 3] [ 6] [010000] +14:49:19 [ 4] [ 12] [000100000000] +14:49:19 [ 11] [ 6] [775015] +14:49:19 [ 12] [ 6] [144913] +14:49:19 [ 15] [ 4] [0320] +14:49:19 [ 18] [ 4] [6011] +14:49:19 [ 32] [ 6] [621354] +14:49:19 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:49:19 [ 37] [ 12] [507904381151] +14:49:19 [ 38] [ 6] [488038] +14:49:19 [ 39] [ 2] [00] +14:49:19 [ 41] [ 8] [03003700] +14:49:19 [ 49] [ 3] [418] +14:49:19 [ 54] [ 20] [0002764C000001048138] +14:49:19 ============================================================================ +14:49:19 Sending to : +14:49:19 ============================================================================ +14:49:19 + + +waiting on router queue for slot.... +14:49:20 ============================================================================ +14:49:20 Slot Id : <228> +14:49:20 Transaction Type : RESPONSE +14:49:20 Received From : +14:49:20 ============================================================================ +14:49:20 FNo. Len. Field Value +14:49:20 ============================================================================ +14:49:20 [ 1] [ 4] [0210] +14:49:20 [ 2] [ 16] [6688990040082719] +14:49:20 [ 3] [ 6] [010000] +14:49:20 [ 4] [ 12] [000100000000] +14:49:20 [ 11] [ 6] [775015] +14:49:20 [ 12] [ 6] [144913] +14:49:20 [ 15] [ 4] [0320] +14:49:20 [ 18] [ 4] [6011] +14:49:20 [ 32] [ 6] [621354] +14:49:20 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:49:20 [ 37] [ 12] [507904381151] +14:49:20 [ 38] [ 6] [488038] +14:49:20 [ 39] [ 2] [00] +14:49:20 [ 41] [ 8] [03003700] +14:49:20 [ 49] [ 3] [418] +14:49:20 [ 54] [ 20] [0002764C000001048138] +14:49:20 ============================================================================ +14:49:20 Calculate Source COMM Id = 0 +14:49:20 ============================================================================ +14:49:20 + + +waiting on router queue for slot.... +14:49:23 ============================================================================ +14:49:23 Slot Id : <256> +14:49:23 Transaction Type : REQUEST +14:49:23 Received From : +14:49:23 ============================================================================ +14:49:23 FNo. Len. Field Value +14:49:23 ============================================================================ +14:49:23 [ 1] [ 4] [0800] +14:49:23 [ 7] [ 10] [0320074829] +14:49:23 [ 11] [ 6] [156859] +14:49:23 [ 70] [ 3] [301] +14:49:23 ============================================================================ +14:49:23 + + +waiting on router queue for slot.... +14:49:23 Sending to : +14:49:23 ============================================================================ +14:49:23 ============================================================================ +14:49:23 Slot Id : <256> +14:49:23 Transaction Type : RESPONSE +14:49:23 Received From : +14:49:23 ============================================================================ +14:49:23 FNo. Len. Field Value +14:49:23 ============================================================================ +14:49:23 [ 1] [ 4] [0810] +14:49:23 [ 7] [ 10] [0320074829] +14:49:23 [ 11] [ 6] [156859] +14:49:23 [ 39] [ 2] [00] +14:49:23 [ 70] [ 3] [301] +14:49:23 ============================================================================ +14:49:23 Calculate Source COMM Id = 2 +14:49:23 ============================================================================ +14:49:23 + + +waiting on router queue for slot.... +14:49:24 ============================================================================ +14:49:24 Slot Id : <218> +14:49:24 Transaction Type : REQUEST +14:49:24 Received From : +14:49:24 ============================================================================ +14:49:24 FNo. Len. Field Value +14:49:24 ============================================================================ +14:49:24 [ 1] [ 4] [0200] +14:49:24 [ 2] [ 16] [6213544001001558] +14:49:24 [ 3] [ 6] [010000] +14:49:24 [ 4] [ 12] [000100000000] +14:49:24 [ 7] [ 10] [0320144714] +14:49:24 [ 11] [ 6] [949067] +14:49:24 [ 12] [ 6] [144714] +14:49:24 [ 13] [ 4] [0320] +14:49:24 [ 15] [ 4] [0320] +14:49:24 [ 18] [ 4] [6011] +14:49:24 [ 19] [ 3] [418] +14:49:24 [ 22] [ 3] [021] +14:49:24 [ 25] [ 2] [01] +14:49:24 [ 28] [ 9] [D00002000] +14:49:24 [ 32] [ 6] [668899] +14:49:24 [ 35] [ 32] [6213544001001558=491212010155405] +14:49:24 [ 37] [ 12] [507900858404] +14:49:24 [ 41] [ 8] [03015004] +14:49:24 [ 42] [ 15] [APT ] +14:49:24 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +14:49:24 [ 49] [ 3] [418] +14:49:24 [ 52] [ 16] [BAD8AD3D7D336157] +14:49:24 ============================================================================ +14:49:24 + + +waiting on router queue for slot.... +14:49:24 Sending to : +14:49:24 ============================================================================ +14:49:24 Sending to : +14:49:24 ============================================================================ +14:49:24 ============================================================================ +14:49:24 Slot Id : <218> +14:49:24 Transaction Type : REQUEST +14:49:24 Received From : +14:49:24 ============================================================================ +14:49:24 FNo. Len. Field Value +14:49:24 ============================================================================ +14:49:24 [ 1] [ 4] [0200] +14:49:24 [ 2] [ 16] [6213544001001558] +14:49:24 [ 3] [ 6] [010000] +14:49:24 [ 4] [ 12] [000100000000] +14:49:24 [ 7] [ 10] [0320144714] +14:49:24 [ 11] [ 6] [949067] +14:49:24 [ 12] [ 6] [144714] +14:49:24 [ 13] [ 4] [0320] +14:49:24 [ 15] [ 4] [0320] +14:49:24 [ 18] [ 4] [6011] +14:49:24 [ 19] [ 3] [418] +14:49:24 [ 22] [ 3] [021] +14:49:24 [ 25] [ 2] [01] +14:49:24 [ 28] [ 9] [D00002000] +14:49:24 [ 32] [ 6] [668899] +14:49:24 [ 35] [ 32] [6213544001001558=491212010155405] +14:49:24 [ 37] [ 12] [507900858404] +14:49:24 [ 41] [ 8] [03015004] +14:49:24 [ 42] [ 15] [APT ] +14:49:24 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +14:49:24 [ 49] [ 3] [418] +14:49:24 [ 52] [ 16] [BAD8AD3D7D336157] +14:49:24 ============================================================================ +14:49:24 + + +waiting on router queue for slot.... +14:49:24 Sending to : +14:49:24 ============================================================================ +14:49:24 ============================================================================ +14:49:24 Slot Id : <218> +14:49:24 Transaction Type : REQUEST +14:49:24 Received From : +14:49:24 ============================================================================ +14:49:24 FNo. Len. Field Value +14:49:24 ============================================================================ +14:49:24 [ 1] [ 4] [0200] +14:49:24 [ 2] [ 16] [6213544001001558] +14:49:24 [ 3] [ 6] [010000] +14:49:24 [ 4] [ 12] [000100000000] +14:49:24 [ 7] [ 10] [0320144714] +14:49:24 [ 11] [ 6] [949067] +14:49:24 [ 12] [ 6] [144714] +14:49:24 [ 13] [ 4] [0320] +14:49:24 [ 15] [ 4] [0320] +14:49:24 [ 18] [ 4] [6011] +14:49:24 [ 19] [ 3] [418] +14:49:24 [ 22] [ 3] [021] +14:49:24 [ 25] [ 2] [01] +14:49:24 [ 28] [ 9] [D00002000] +14:49:24 [ 32] [ 6] [668899] +14:49:24 [ 35] [ 32] [6213544001001558=491212010155405] +14:49:24 [ 37] [ 12] [507900858404] +14:49:24 [ 41] [ 8] [03015004] +14:49:24 [ 42] [ 15] [APT ] +14:49:24 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +14:49:24 [ 49] [ 3] [418] +14:49:24 [ 52] [ 16] [A60098ED3EA4EF4E] +14:49:24 ============================================================================ +14:49:24 + + +waiting on router queue for slot.... +14:49:24 Sending to : <0> +14:49:24 ============================================================================ +14:49:25 ============================================================================ +14:49:25 Slot Id : <218> +14:49:25 Transaction Type : RESPONSE +14:49:25 Received From : +14:49:25 ============================================================================ +14:49:25 FNo. Len. Field Value +14:49:25 ============================================================================ +14:49:25 [ 1] [ 4] [0210] +14:49:25 [ 2] [ 16] [6213544001001558] +14:49:25 [ 3] [ 6] [010000] +14:49:25 [ 4] [ 12] [000100000000] +14:49:25 [ 7] [ 10] [0320144714] +14:49:25 [ 11] [ 6] [949067] +14:49:25 [ 12] [ 6] [144714] +14:49:25 [ 13] [ 4] [0320] +14:49:25 [ 15] [ 4] [0320] +14:49:25 [ 18] [ 4] [6011] +14:49:25 [ 19] [ 3] [418] +14:49:25 [ 32] [ 6] [668899] +14:49:25 [ 35] [ 32] [6213544001001558=491212010155405] +14:49:25 [ 37] [ 12] [507900858404] +14:49:25 [ 38] [ 6] [072285] +14:49:25 [ 39] [ 2] [00] +14:49:25 [ 41] [ 8] [03015004] +14:49:25 [ 49] [ 3] [418] +14:49:25 [ 54] [ 40] [0001418C0003632981460002418C000363298146] +14:49:25 ============================================================================ +14:49:25 Sending to : +14:49:25 ============================================================================ +14:49:25 + + +waiting on router queue for slot.... +14:49:26 ============================================================================ +14:49:26 Slot Id : <218> +14:49:26 Transaction Type : RESPONSE +14:49:26 Received From : +14:49:26 ============================================================================ +14:49:26 FNo. Len. Field Value +14:49:26 ============================================================================ +14:49:26 [ 1] [ 4] [0210] +14:49:26 [ 2] [ 16] [6213544001001558] +14:49:26 [ 3] [ 6] [010000] +14:49:26 [ 4] [ 12] [000100000000] +14:49:26 [ 7] [ 10] [0320144714] +14:49:26 [ 11] [ 6] [949067] +14:49:26 [ 12] [ 6] [144714] +14:49:26 [ 13] [ 4] [0320] +14:49:26 [ 15] [ 4] [0320] +14:49:26 [ 18] [ 4] [6011] +14:49:26 [ 19] [ 3] [418] +14:49:26 [ 32] [ 6] [668899] +14:49:26 [ 35] [ 32] [6213544001001558=491212010155405] +14:49:26 [ 37] [ 12] [507900858404] +14:49:26 [ 38] [ 6] [072285] +14:49:26 [ 39] [ 2] [00] +14:49:26 [ 41] [ 8] [03015004] +14:49:26 [ 49] [ 3] [418] +14:49:26 [ 54] [ 40] [0001418C0003632981460002418C000363298146] +14:49:26 ============================================================================ +14:49:26 Calculate Source COMM Id = 4 +14:49:26 ============================================================================ +14:49:26 + + +waiting on router queue for slot.... +14:49:31 ============================================================================ +14:49:31 Slot Id : <265> +14:49:31 Transaction Type : REQUEST +14:49:31 Received From : +14:49:31 ============================================================================ +14:49:31 FNo. Len. Field Value +14:49:31 ============================================================================ +14:49:31 [ 1] [ 4] [0200] +14:49:31 [ 2] [ 16] [6688990108430503] +14:49:31 [ 3] [ 6] [010000] +14:49:31 [ 4] [ 12] [000100000000] +14:49:31 [ 7] [ 10] [0320144926] +14:49:31 [ 11] [ 6] [775064] +14:49:31 [ 12] [ 6] [144926] +14:49:31 [ 13] [ 4] [0320] +14:49:31 [ 15] [ 4] [0320] +14:49:31 [ 18] [ 4] [6011] +14:49:31 [ 22] [ 3] [900] +14:49:31 [ 25] [ 2] [02] +14:49:31 [ 28] [ 9] [D00002000] +14:49:31 [ 32] [ 6] [621354] +14:49:31 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:49:31 [ 37] [ 12] [507903499512] +14:49:31 [ 41] [ 8] [06002200] +14:49:31 [ 42] [ 15] [NATIVE ] +14:49:31 [ 43] [ 40] [Beng Market Beng LAO] +14:49:31 [ 49] [ 3] [418] +14:49:31 [ 52] [ 16] [C7B63C92FBC10BF3] +14:49:31 ============================================================================ +14:49:31 + + +waiting on router queue for slot.... +14:49:31 Sending to : +14:49:31 ============================================================================ +14:49:31 Sending to : +14:49:31 ============================================================================ +14:49:31 ============================================================================ +14:49:31 Slot Id : <265> +14:49:31 Transaction Type : REQUEST +14:49:31 Received From : +14:49:31 ============================================================================ +14:49:31 FNo. Len. Field Value +14:49:31 ============================================================================ +14:49:31 [ 1] [ 4] [0200] +14:49:31 [ 2] [ 16] [6688990108430503] +14:49:31 [ 3] [ 6] [010000] +14:49:31 [ 4] [ 12] [000100000000] +14:49:31 [ 7] [ 10] [0320144926] +14:49:31 [ 11] [ 6] [775064] +14:49:31 [ 12] [ 6] [144926] +14:49:31 [ 13] [ 4] [0320] +14:49:31 [ 15] [ 4] [0320] +14:49:31 [ 18] [ 4] [6011] +14:49:31 [ 22] [ 3] [900] +14:49:31 [ 25] [ 2] [02] +14:49:31 [ 28] [ 9] [D00002000] +14:49:31 [ 32] [ 6] [621354] +14:49:31 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:49:31 [ 37] [ 12] [507903499512] +14:49:31 [ 41] [ 8] [06002200] +14:49:31 [ 42] [ 15] [NATIVE ] +14:49:31 [ 43] [ 40] [Beng Market Beng LAO] +14:49:31 [ 49] [ 3] [418] +14:49:31 [ 52] [ 16] [C7B63C92FBC10BF3] +14:49:31 ============================================================================ +14:49:31 + + +waiting on router queue for slot.... +14:49:31 Sending to : +14:49:31 ============================================================================ +14:49:31 ============================================================================ +14:49:31 Slot Id : <265> +14:49:31 Transaction Type : REQUEST +14:49:31 Received From : +14:49:31 ============================================================================ +14:49:31 FNo. Len. Field Value +14:49:31 ============================================================================ +14:49:31 [ 1] [ 4] [0200] +14:49:31 [ 2] [ 16] [6688990108430503] +14:49:31 [ 3] [ 6] [010000] +14:49:31 [ 4] [ 12] [000100000000] +14:49:31 [ 7] [ 10] [0320144926] +14:49:31 [ 11] [ 6] [775064] +14:49:31 [ 12] [ 6] [144926] +14:49:31 [ 13] [ 4] [0320] +14:49:31 [ 15] [ 4] [0320] +14:49:31 [ 18] [ 4] [6011] +14:49:31 [ 22] [ 3] [900] +14:49:31 [ 25] [ 2] [02] +14:49:31 [ 28] [ 9] [D00002000] +14:49:31 [ 32] [ 6] [621354] +14:49:31 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:49:31 [ 37] [ 12] [507903499512] +14:49:31 [ 41] [ 8] [06002200] +14:49:31 [ 42] [ 15] [NATIVE ] +14:49:31 [ 43] [ 40] [Beng Market Beng LAO] +14:49:31 [ 49] [ 3] [418] +14:49:31 [ 52] [ 16] [6EB8918F0BC2E700] +14:49:31 ============================================================================ +14:49:31 + + +waiting on router queue for slot.... +14:49:31 Sending to : <4> +14:49:31 ============================================================================ +14:49:32 ============================================================================ +14:49:32 Slot Id : <265> +14:49:32 Transaction Type : RESPONSE +14:49:32 Received From : +14:49:32 ============================================================================ +14:49:32 FNo. Len. Field Value +14:49:32 ============================================================================ +14:49:32 [ 1] [ 4] [0210] +14:49:32 [ 2] [ 16] [6688990108430503] +14:49:32 [ 3] [ 6] [010000] +14:49:32 [ 4] [ 12] [000100000000] +14:49:32 [ 11] [ 6] [775064] +14:49:32 [ 12] [ 6] [144926] +14:49:32 [ 15] [ 4] [0320] +14:49:32 [ 18] [ 4] [6011] +14:49:32 [ 32] [ 6] [621354] +14:49:32 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:49:32 [ 37] [ 12] [507903499512] +14:49:32 [ 38] [ 6] [057413] +14:49:32 [ 39] [ 2] [00] +14:49:32 [ 41] [ 8] [06002200] +14:49:32 [ 49] [ 3] [418] +14:49:32 [ 54] [ 20] [0002418C000047007192] +14:49:32 ============================================================================ +14:49:32 Sending to : +14:49:32 ============================================================================ +14:49:32 + + +waiting on router queue for slot.... +14:49:34 ============================================================================ +14:49:34 Slot Id : <265> +14:49:34 Transaction Type : RESPONSE +14:49:34 Received From : +14:49:34 ============================================================================ +14:49:34 FNo. Len. Field Value +14:49:34 ============================================================================ +14:49:34 [ 1] [ 4] [0210] +14:49:34 [ 2] [ 16] [6688990108430503] +14:49:34 [ 3] [ 6] [010000] +14:49:34 [ 4] [ 12] [000100000000] +14:49:34 [ 11] [ 6] [775064] +14:49:34 [ 12] [ 6] [144926] +14:49:34 [ 15] [ 4] [0320] +14:49:34 [ 18] [ 4] [6011] +14:49:34 [ 32] [ 6] [621354] +14:49:34 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:49:34 [ 37] [ 12] [507903499512] +14:49:34 [ 38] [ 6] [057413] +14:49:34 [ 39] [ 2] [00] +14:49:34 [ 41] [ 8] [06002200] +14:49:34 [ 49] [ 3] [418] +14:49:34 [ 54] [ 20] [0002418C000047007192] +14:49:34 ============================================================================ +14:49:34 Calculate Source COMM Id = 0 +14:49:34 ============================================================================ +14:49:34 + + +waiting on router queue for slot.... +14:49:38 ============================================================================ +14:49:38 Slot Id : <274> +14:49:38 Transaction Type : REQUEST +14:49:38 Received From : +14:49:38 ============================================================================ +14:49:38 FNo. Len. Field Value +14:49:38 ============================================================================ +14:49:38 [ 1] [ 4] [0800] +14:49:38 [ 7] [ 10] [0320074845] +14:49:38 [ 11] [ 6] [156860] +14:49:38 [ 70] [ 3] [301] +14:49:38 ============================================================================ +14:49:38 + + +waiting on router queue for slot.... +14:49:38 Sending to : +14:49:38 ============================================================================ +14:49:38 ============================================================================ +14:49:38 Slot Id : <274> +14:49:38 Transaction Type : RESPONSE +14:49:38 Received From : +14:49:38 ============================================================================ +14:49:38 FNo. Len. Field Value +14:49:38 ============================================================================ +14:49:38 [ 1] [ 4] [0810] +14:49:38 [ 7] [ 10] [0320074845] +14:49:38 [ 11] [ 6] [156860] +14:49:38 [ 39] [ 2] [00] +14:49:38 [ 70] [ 3] [301] +14:49:38 ============================================================================ +14:49:38 Calculate Source COMM Id = 2 +14:49:38 ============================================================================ +14:49:38 + + +waiting on router queue for slot.... +14:49:41 ============================================================================ +14:49:41 Slot Id : <247> +14:49:41 Transaction Type : REQUEST +14:49:41 Received From : +14:49:41 ============================================================================ +14:49:41 FNo. Len. Field Value +14:49:41 ============================================================================ +14:49:41 [ 1] [ 4] [0200] +14:49:41 [ 2] [ 16] [6688990040107649] +14:49:41 [ 3] [ 6] [011000] +14:49:41 [ 4] [ 12] [000020000000] +14:49:41 [ 7] [ 10] [0320144936] +14:49:41 [ 11] [ 6] [775109] +14:49:41 [ 12] [ 6] [144936] +14:49:41 [ 13] [ 4] [0320] +14:49:41 [ 15] [ 4] [0320] +14:49:41 [ 18] [ 4] [6011] +14:49:41 [ 22] [ 3] [900] +14:49:41 [ 25] [ 2] [02] +14:49:41 [ 28] [ 9] [D00002000] +14:49:41 [ 32] [ 6] [621354] +14:49:41 [ 35] [ 37] [6688990040107649=98031261191370600000] +14:49:41 [ 37] [ 12] [507905246799] +14:49:41 [ 41] [ 8] [01013300] +14:49:41 [ 42] [ 15] [NATIVE ] +14:49:41 [ 43] [ 40] [Dongnaxoktai Distric Vientiane LAO] +14:49:41 [ 49] [ 3] [418] +14:49:41 [ 52] [ 16] [AC1277B2CF63B3FD] +14:49:41 ============================================================================ +14:49:41 + + +waiting on router queue for slot.... +14:49:41 Sending to : +14:49:41 ============================================================================ +14:49:41 Sending to : +14:49:41 ============================================================================ +14:49:41 ============================================================================ +14:49:41 Slot Id : <247> +14:49:41 Transaction Type : REQUEST +14:49:41 Received From : +14:49:41 ============================================================================ +14:49:41 FNo. Len. Field Value +14:49:41 ============================================================================ +14:49:41 [ 1] [ 4] [0200] +14:49:41 [ 2] [ 16] [6688990040107649] +14:49:41 [ 3] [ 6] [011000] +14:49:41 [ 4] [ 12] [000020000000] +14:49:41 [ 7] [ 10] [0320144936] +14:49:41 [ 11] [ 6] [775109] +14:49:41 [ 12] [ 6] [144936] +14:49:41 [ 13] [ 4] [0320] +14:49:41 [ 15] [ 4] [0320] +14:49:41 [ 18] [ 4] [6011] +14:49:41 [ 22] [ 3] [900] +14:49:41 [ 25] [ 2] [02] +14:49:41 [ 28] [ 9] [D00002000] +14:49:41 [ 32] [ 6] [621354] +14:49:41 [ 35] [ 37] [6688990040107649=98031261191370600000] +14:49:41 [ 37] [ 12] [507905246799] +14:49:41 [ 41] [ 8] [01013300] +14:49:41 [ 42] [ 15] [NATIVE ] +14:49:41 [ 43] [ 40] [Dongnaxoktai Distric Vientiane LAO] +14:49:41 [ 49] [ 3] [418] +14:49:41 [ 52] [ 16] [AC1277B2CF63B3FD] +14:49:41 ============================================================================ +14:49:41 + + +waiting on router queue for slot.... +14:49:41 Sending to : +14:49:41 ============================================================================ +14:49:41 ============================================================================ +14:49:41 Slot Id : <247> +14:49:41 Transaction Type : REQUEST +14:49:41 Received From : +14:49:41 ============================================================================ +14:49:41 FNo. Len. Field Value +14:49:41 ============================================================================ +14:49:41 [ 1] [ 4] [0200] +14:49:41 [ 2] [ 16] [6688990040107649] +14:49:41 [ 3] [ 6] [011000] +14:49:41 [ 4] [ 12] [000020000000] +14:49:41 [ 7] [ 10] [0320144936] +14:49:41 [ 11] [ 6] [775109] +14:49:41 [ 12] [ 6] [144936] +14:49:41 [ 13] [ 4] [0320] +14:49:41 [ 15] [ 4] [0320] +14:49:41 [ 18] [ 4] [6011] +14:49:41 [ 22] [ 3] [900] +14:49:41 [ 25] [ 2] [02] +14:49:41 [ 28] [ 9] [D00002000] +14:49:41 [ 32] [ 6] [621354] +14:49:41 [ 35] [ 37] [6688990040107649=98031261191370600000] +14:49:41 [ 37] [ 12] [507905246799] +14:49:41 [ 41] [ 8] [01013300] +14:49:41 [ 42] [ 15] [NATIVE ] +14:49:41 [ 43] [ 40] [Dongnaxoktai Distric Vientiane LAO] +14:49:41 [ 49] [ 3] [418] +14:49:41 [ 52] [ 16] [5320E450DA9F422A] +14:49:41 ============================================================================ +14:49:41 + + +waiting on router queue for slot.... +14:49:41 Sending to : <4> +14:49:41 ============================================================================ +14:49:42 ============================================================================ +14:49:42 Slot Id : <247> +14:49:42 Transaction Type : RESPONSE +14:49:42 Received From : +14:49:42 ============================================================================ +14:49:42 FNo. Len. Field Value +14:49:42 ============================================================================ +14:49:42 [ 1] [ 4] [0210] +14:49:42 [ 2] [ 16] [6688990040107649] +14:49:42 [ 3] [ 6] [011000] +14:49:42 [ 4] [ 12] [000020000000] +14:49:42 [ 11] [ 6] [775109] +14:49:42 [ 12] [ 6] [144936] +14:49:42 [ 15] [ 4] [0320] +14:49:42 [ 18] [ 4] [6011] +14:49:42 [ 32] [ 6] [621354] +14:49:42 [ 35] [ 37] [6688990040107649=98031261191370600000] +14:49:42 [ 37] [ 12] [507905246799] +14:49:42 [ 38] [ 6] [847585] +14:49:42 [ 39] [ 2] [00] +14:49:42 [ 41] [ 8] [01013300] +14:49:42 [ 49] [ 3] [418] +14:49:42 [ 54] [ 20] [1002418C000389886028] +14:49:42 ============================================================================ +14:49:42 Sending to : +14:49:42 ============================================================================ +14:49:42 + + +waiting on router queue for slot.... +14:49:44 ============================================================================ +14:49:44 Slot Id : <247> +14:49:44 Transaction Type : RESPONSE +14:49:44 Received From : +14:49:44 ============================================================================ +14:49:44 FNo. Len. Field Value +14:49:44 ============================================================================ +14:49:44 [ 1] [ 4] [0210] +14:49:44 [ 2] [ 16] [6688990040107649] +14:49:44 [ 3] [ 6] [011000] +14:49:44 [ 4] [ 12] [000020000000] +14:49:44 [ 11] [ 6] [775109] +14:49:44 [ 12] [ 6] [144936] +14:49:44 [ 15] [ 4] [0320] +14:49:44 [ 18] [ 4] [6011] +14:49:44 [ 32] [ 6] [621354] +14:49:44 [ 35] [ 37] [6688990040107649=98031261191370600000] +14:49:44 [ 37] [ 12] [507905246799] +14:49:44 [ 38] [ 6] [847585] +14:49:44 [ 39] [ 2] [00] +14:49:44 [ 41] [ 8] [01013300] +14:49:44 [ 49] [ 3] [418] +14:49:44 [ 54] [ 20] [1002418C000389886028] +14:49:44 ============================================================================ +14:49:44 Calculate Source COMM Id = 0 +14:49:44 ============================================================================ +14:49:44 + + +waiting on router queue for slot.... +14:49:45 ============================================================================ +14:49:45 Slot Id : <279> +14:49:45 Transaction Type : REQUEST +14:49:45 Received From : +14:49:45 ============================================================================ +14:49:45 FNo. Len. Field Value +14:49:45 ============================================================================ +14:49:45 [ 1] [ 4] [0200] +14:49:45 [ 2] [ 16] [6688990040142034] +14:49:45 [ 3] [ 6] [010000] +14:49:45 [ 4] [ 12] [000100000000] +14:49:45 [ 7] [ 10] [0320074851] +14:49:45 [ 11] [ 6] [269834] +14:49:45 [ 12] [ 6] [144851] +14:49:45 [ 13] [ 4] [0320] +14:49:45 [ 14] [ 4] [9804] +14:49:45 [ 15] [ 4] [0320] +14:49:45 [ 18] [ 4] [6011] +14:49:45 [ 19] [ 3] [418] +14:49:45 [ 22] [ 3] [021] +14:49:45 [ 25] [ 2] [01] +14:49:45 [ 28] [ 9] [D00002000] +14:49:45 [ 32] [ 6] [180893] +14:49:45 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:49:45 [ 37] [ 12] [507907269834] +14:49:45 [ 41] [ 8] [0321LNTV] +14:49:45 [ 42] [ 15] [999999 ] +14:49:45 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:49:45 [ 49] [ 3] [418] +14:49:45 [ 52] [ 16] [85E5EA747C95DEDA] +14:49:45 ============================================================================ +14:49:45 + + +waiting on router queue for slot.... +14:49:45 Sending to : +14:49:45 ============================================================================ +14:49:45 Sending to : +14:49:45 ============================================================================ +14:49:45 ============================================================================ +14:49:45 Slot Id : <279> +14:49:45 Transaction Type : REQUEST +14:49:45 Received From : +14:49:45 ============================================================================ +14:49:45 FNo. Len. Field Value +14:49:45 ============================================================================ +14:49:45 [ 1] [ 4] [0200] +14:49:45 [ 2] [ 16] [6688990040142034] +14:49:45 [ 3] [ 6] [010000] +14:49:45 [ 4] [ 12] [000100000000] +14:49:45 [ 7] [ 10] [0320074851] +14:49:45 [ 11] [ 6] [269834] +14:49:45 [ 12] [ 6] [144851] +14:49:45 [ 13] [ 4] [0320] +14:49:45 [ 14] [ 4] [9804] +14:49:45 [ 15] [ 4] [0320] +14:49:45 [ 18] [ 4] [6011] +14:49:45 [ 19] [ 3] [418] +14:49:45 [ 22] [ 3] [021] +14:49:45 [ 25] [ 2] [01] +14:49:45 [ 28] [ 9] [D00002000] +14:49:45 [ 32] [ 6] [180893] +14:49:45 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:49:45 [ 37] [ 12] [507907269834] +14:49:45 [ 41] [ 8] [0321LNTV] +14:49:45 [ 42] [ 15] [999999 ] +14:49:45 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:49:45 [ 49] [ 3] [418] +14:49:45 [ 52] [ 16] [85E5EA747C95DEDA] +14:49:45 ============================================================================ +14:49:45 + + +waiting on router queue for slot.... +14:49:45 Sending to : +14:49:45 ============================================================================ +14:49:45 ============================================================================ +14:49:45 Slot Id : <279> +14:49:45 Transaction Type : REQUEST +14:49:45 Received From : +14:49:45 ============================================================================ +14:49:45 FNo. Len. Field Value +14:49:45 ============================================================================ +14:49:45 [ 1] [ 4] [0200] +14:49:45 [ 2] [ 16] [6688990040142034] +14:49:45 [ 3] [ 6] [010000] +14:49:45 [ 4] [ 12] [000100000000] +14:49:45 [ 7] [ 10] [0320074851] +14:49:45 [ 11] [ 6] [269834] +14:49:45 [ 12] [ 6] [144851] +14:49:45 [ 13] [ 4] [0320] +14:49:45 [ 14] [ 4] [9804] +14:49:45 [ 15] [ 4] [0320] +14:49:45 [ 18] [ 4] [6011] +14:49:45 [ 19] [ 3] [418] +14:49:45 [ 22] [ 3] [021] +14:49:45 [ 25] [ 2] [01] +14:49:45 [ 28] [ 9] [D00002000] +14:49:45 [ 32] [ 6] [180893] +14:49:45 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:49:45 [ 37] [ 12] [507907269834] +14:49:45 [ 41] [ 8] [0321LNTV] +14:49:45 [ 42] [ 15] [999999 ] +14:49:45 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:49:45 [ 49] [ 3] [418] +14:49:45 [ 52] [ 16] [AE8DD56FD1C085B8] +14:49:45 ============================================================================ +14:49:45 + + +waiting on router queue for slot.... +14:49:45 Sending to : <0> +14:49:45 ============================================================================ +14:49:46 ============================================================================ +14:49:46 Slot Id : <279> +14:49:46 Transaction Type : RESPONSE +14:49:46 Received From : +14:49:46 ============================================================================ +14:49:46 FNo. Len. Field Value +14:49:46 ============================================================================ +14:49:46 [ 1] [ 4] [0210] +14:49:46 [ 2] [ 16] [6688990040142034] +14:49:46 [ 3] [ 6] [010000] +14:49:46 [ 4] [ 12] [000100000000] +14:49:46 [ 7] [ 10] [0320074851] +14:49:46 [ 11] [ 6] [269834] +14:49:46 [ 12] [ 6] [144851] +14:49:46 [ 13] [ 4] [0320] +14:49:46 [ 15] [ 4] [0320] +14:49:46 [ 18] [ 4] [6011] +14:49:46 [ 19] [ 3] [418] +14:49:46 [ 22] [ 3] [021] +14:49:46 [ 32] [ 6] [180893] +14:49:46 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:49:46 [ 37] [ 12] [507907269834] +14:49:46 [ 39] [ 2] [14] +14:49:46 [ 41] [ 8] [0321LNTV] +14:49:46 [ 49] [ 3] [418] +14:49:46 ============================================================================ +14:49:46 Sending to : +14:49:46 ============================================================================ +14:49:46 + + +waiting on router queue for slot.... +14:49:47 ============================================================================ +14:49:47 Slot Id : <279> +14:49:47 Transaction Type : RESPONSE +14:49:47 Received From : +14:49:47 ============================================================================ +14:49:47 FNo. Len. Field Value +14:49:47 ============================================================================ +14:49:47 [ 1] [ 4] [0210] +14:49:47 [ 2] [ 16] [6688990040142034] +14:49:47 [ 3] [ 6] [010000] +14:49:47 [ 4] [ 12] [000100000000] +14:49:47 [ 7] [ 10] [0320074851] +14:49:47 [ 11] [ 6] [269834] +14:49:47 [ 12] [ 6] [144851] +14:49:47 [ 13] [ 4] [0320] +14:49:47 [ 15] [ 4] [0320] +14:49:47 [ 18] [ 4] [6011] +14:49:47 [ 19] [ 3] [418] +14:49:47 [ 22] [ 3] [021] +14:49:47 [ 32] [ 6] [180893] +14:49:47 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:49:47 [ 37] [ 12] [507907269834] +14:49:47 [ 39] [ 2] [14] +14:49:47 [ 41] [ 8] [0321LNTV] +14:49:47 [ 49] [ 3] [418] +14:49:47 ============================================================================ +14:49:47 Calculate Source COMM Id = 2 +14:49:47 ============================================================================ +14:49:47 + + +waiting on router queue for slot.... +14:49:51 ============================================================================ +14:49:51 Slot Id : <231> +14:49:51 Transaction Type : REQUEST +14:49:51 Received From : +14:49:51 ============================================================================ +14:49:51 FNo. Len. Field Value +14:49:51 ============================================================================ +14:49:51 [ 1] [ 4] [0200] +14:49:51 [ 2] [ 16] [6213544000074135] +14:49:51 [ 3] [ 6] [010000] +14:49:51 [ 4] [ 12] [000100000000] +14:49:51 [ 7] [ 10] [0320074857] +14:49:51 [ 11] [ 6] [269836] +14:49:51 [ 12] [ 6] [144857] +14:49:51 [ 13] [ 4] [0320] +14:49:51 [ 14] [ 4] [4912] +14:49:51 [ 15] [ 4] [0320] +14:49:51 [ 18] [ 4] [6011] +14:49:51 [ 19] [ 3] [418] +14:49:51 [ 22] [ 3] [021] +14:49:51 [ 25] [ 2] [01] +14:49:51 [ 28] [ 9] [D00002000] +14:49:51 [ 32] [ 6] [180893] +14:49:51 [ 35] [ 32] [6213544000074135=491212017413905] +14:49:51 [ 37] [ 12] [507907269836] +14:49:51 [ 41] [ 8] [0106NAXA] +14:49:51 [ 42] [ 15] [999999 ] +14:49:51 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:49:51 [ 49] [ 3] [418] +14:49:51 [ 52] [ 16] [7A660DA19C242BF2] +14:49:51 ============================================================================ +14:49:51 + + +waiting on router queue for slot.... +14:49:51 Sending to : +14:49:51 ============================================================================ +14:49:51 Sending to : +14:49:51 ============================================================================ +14:49:51 ============================================================================ +14:49:51 Slot Id : <273> +14:49:51 Transaction Type : REQUEST +14:49:51 Received From : +14:49:51 ============================================================================ +14:49:51 FNo. Len. Field Value +14:49:51 ============================================================================ +14:49:51 [ 1] [ 4] [0200] +14:49:51 [ 2] [ 16] [6688990040157180] +14:49:51 [ 3] [ 6] [301000] +14:49:51 [ 4] [ 12] [000000000000] +14:49:51 [ 7] [ 10] [0320144947] +14:49:51 [ 11] [ 6] [775175] +14:49:51 [ 12] [ 6] [144947] +14:49:51 [ 13] [ 4] [0320] +14:49:51 [ 15] [ 4] [0320] +14:49:51 [ 18] [ 4] [6011] +14:49:51 [ 22] [ 3] [900] +14:49:51 [ 25] [ 2] [02] +14:49:51 [ 28] [ 9] [D00000000] +14:49:51 [ 32] [ 6] [621354] +14:49:51 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:49:51 [ 37] [ 12] [507902539922] +14:49:51 [ 41] [ 8] [05003600] +14:49:51 [ 42] [ 15] [NATIVE ] +14:49:51 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:49:51 [ 49] [ 3] [418] +14:49:51 [ 52] [ 16] [5548B954CB1804D3] +14:49:51 ============================================================================ +14:49:51 + + +waiting on router queue for slot.... +14:49:51 Sending to : +14:49:51 ============================================================================ +14:49:51 Sending to : +14:49:51 ============================================================================ +14:49:51 ============================================================================ +14:49:51 Slot Id : <231> +14:49:51 Transaction Type : REQUEST +14:49:51 Received From : +14:49:51 ============================================================================ +14:49:51 FNo. Len. Field Value +14:49:51 ============================================================================ +14:49:51 [ 1] [ 4] [0200] +14:49:51 [ 2] [ 16] [6213544000074135] +14:49:51 [ 3] [ 6] [010000] +14:49:51 [ 4] [ 12] [000100000000] +14:49:51 [ 7] [ 10] [0320074857] +14:49:51 [ 11] [ 6] [269836] +14:49:51 [ 12] [ 6] [144857] +14:49:51 [ 13] [ 4] [0320] +14:49:51 [ 14] [ 4] [4912] +14:49:51 [ 15] [ 4] [0320] +14:49:51 [ 18] [ 4] [6011] +14:49:51 [ 19] [ 3] [418] +14:49:51 [ 22] [ 3] [021] +14:49:51 [ 25] [ 2] [01] +14:49:51 [ 28] [ 9] [D00002000] +14:49:51 [ 32] [ 6] [180893] +14:49:51 [ 35] [ 32] [6213544000074135=491212017413905] +14:49:51 [ 37] [ 12] [507907269836] +14:49:51 [ 41] [ 8] [0106NAXA] +14:49:51 [ 42] [ 15] [999999 ] +14:49:51 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:49:51 [ 49] [ 3] [418] +14:49:51 [ 52] [ 16] [7A660DA19C242BF2] +14:49:51 ============================================================================ +14:49:51 + + +waiting on router queue for slot.... +14:49:51 Sending to : +14:49:51 ============================================================================ +14:49:51 ============================================================================ +14:49:51 Slot Id : <231> +14:49:51 Transaction Type : REQUEST +14:49:51 Received From : +14:49:51 ============================================================================ +14:49:51 FNo. Len. Field Value +14:49:51 ============================================================================ +14:49:51 [ 1] [ 4] [0200] +14:49:51 [ 2] [ 16] [6213544000074135] +14:49:51 [ 3] [ 6] [010000] +14:49:51 [ 4] [ 12] [000100000000] +14:49:51 [ 7] [ 10] [0320074857] +14:49:51 [ 11] [ 6] [269836] +14:49:51 [ 12] [ 6] [144857] +14:49:51 [ 13] [ 4] [0320] +14:49:51 [ 14] [ 4] [4912] +14:49:51 [ 15] [ 4] [0320] +14:49:51 [ 18] [ 4] [6011] +14:49:51 [ 19] [ 3] [418] +14:49:51 [ 22] [ 3] [021] +14:49:51 [ 25] [ 2] [01] +14:49:51 [ 28] [ 9] [D00002000] +14:49:51 [ 32] [ 6] [180893] +14:49:51 [ 35] [ 32] [6213544000074135=491212017413905] +14:49:51 [ 37] [ 12] [507907269836] +14:49:51 [ 41] [ 8] [0106NAXA] +14:49:51 [ 42] [ 15] [999999 ] +14:49:51 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:49:51 [ 49] [ 3] [418] +14:49:51 [ 52] [ 16] [45341E05561F80C0] +14:49:51 ============================================================================ +14:49:51 + + +waiting on router queue for slot.... +14:49:51 Sending to : <0> +14:49:51 ============================================================================ +14:49:52 ============================================================================ +14:49:52 Slot Id : <273> +14:49:52 Transaction Type : REQUEST +14:49:52 Received From : +14:49:52 ============================================================================ +14:49:52 FNo. Len. Field Value +14:49:52 ============================================================================ +14:49:52 [ 1] [ 4] [0200] +14:49:52 [ 2] [ 16] [6688990040157180] +14:49:52 [ 3] [ 6] [301000] +14:49:52 [ 4] [ 12] [000000000000] +14:49:52 [ 7] [ 10] [0320144947] +14:49:52 [ 11] [ 6] [775175] +14:49:52 [ 12] [ 6] [144947] +14:49:52 [ 13] [ 4] [0320] +14:49:52 [ 15] [ 4] [0320] +14:49:52 [ 18] [ 4] [6011] +14:49:52 [ 22] [ 3] [900] +14:49:52 [ 25] [ 2] [02] +14:49:52 [ 28] [ 9] [D00000000] +14:49:52 [ 32] [ 6] [621354] +14:49:52 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:49:52 [ 37] [ 12] [507902539922] +14:49:52 [ 41] [ 8] [05003600] +14:49:52 [ 42] [ 15] [NATIVE ] +14:49:52 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:49:52 [ 49] [ 3] [418] +14:49:52 [ 52] [ 16] [5548B954CB1804D3] +14:49:52 ============================================================================ +14:49:52 + + +waiting on router queue for slot.... +14:49:52 Sending to : +14:49:52 ============================================================================ +14:49:52 ============================================================================ +14:49:52 Slot Id : <273> +14:49:52 Transaction Type : REQUEST +14:49:52 Received From : +14:49:52 ============================================================================ +14:49:52 FNo. Len. Field Value +14:49:52 ============================================================================ +14:49:52 [ 1] [ 4] [0200] +14:49:52 [ 2] [ 16] [6688990040157180] +14:49:52 [ 3] [ 6] [301000] +14:49:52 [ 4] [ 12] [000000000000] +14:49:52 [ 7] [ 10] [0320144947] +14:49:52 [ 11] [ 6] [775175] +14:49:52 [ 12] [ 6] [144947] +14:49:52 [ 13] [ 4] [0320] +14:49:52 [ 15] [ 4] [0320] +14:49:52 [ 18] [ 4] [6011] +14:49:52 [ 22] [ 3] [900] +14:49:52 [ 25] [ 2] [02] +14:49:52 [ 28] [ 9] [D00000000] +14:49:52 [ 32] [ 6] [621354] +14:49:52 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:49:52 [ 37] [ 12] [507902539922] +14:49:52 [ 41] [ 8] [05003600] +14:49:52 [ 42] [ 15] [NATIVE ] +14:49:52 [ 43] [ 40] [MOUANGNAN UNIT LuangprabangLAO] +14:49:52 [ 49] [ 3] [418] +14:49:52 [ 52] [ 16] [C235E6F344B8EC2D] +14:49:52 ============================================================================ +14:49:52 + + +waiting on router queue for slot.... +14:49:52 Sending to : <4> +14:49:52 ============================================================================ +14:49:52 ============================================================================ +14:49:52 Slot Id : <273> +14:49:52 Transaction Type : RESPONSE +14:49:52 Received From : +14:49:52 ============================================================================ +14:49:52 FNo. Len. Field Value +14:49:52 ============================================================================ +14:49:52 [ 1] [ 4] [0210] +14:49:52 [ 2] [ 16] [6688990040157180] +14:49:52 [ 3] [ 6] [301000] +14:49:52 [ 4] [ 12] [000000000000] +14:49:52 [ 7] [ 10] [0320144947] +14:49:52 [ 11] [ 6] [775175] +14:49:52 [ 12] [ 6] [144947] +14:49:52 [ 13] [ 4] [0320] +14:49:52 [ 15] [ 4] [0320] +14:49:52 [ 18] [ 4] [6011] +14:49:52 [ 22] [ 3] [021] +14:49:52 [ 32] [ 6] [621354] +14:49:52 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:49:52 [ 37] [ 12] [507902539922] +14:49:52 [ 39] [ 2] [62] +14:49:52 [ 41] [ 8] [05003600] +14:49:52 [ 49] [ 3] [418] +14:49:52 ============================================================================ +14:49:52 Sending to : +14:49:52 ============================================================================ +14:49:52 + + +waiting on router queue for slot.... +14:49:52 ============================================================================ +14:49:52 Slot Id : <231> +14:49:52 Transaction Type : RESPONSE +14:49:52 Received From : +14:49:52 ============================================================================ +14:49:52 FNo. Len. Field Value +14:49:52 ============================================================================ +14:49:52 [ 1] [ 4] [0210] +14:49:52 [ 2] [ 16] [6213544000074135] +14:49:52 [ 3] [ 6] [010000] +14:49:52 [ 4] [ 12] [000100000000] +14:49:52 [ 7] [ 10] [0320074857] +14:49:52 [ 11] [ 6] [269836] +14:49:52 [ 12] [ 6] [144857] +14:49:52 [ 13] [ 4] [0320] +14:49:52 [ 15] [ 4] [0320] +14:49:52 [ 18] [ 4] [6011] +14:49:52 [ 19] [ 3] [418] +14:49:52 [ 32] [ 6] [180893] +14:49:52 [ 35] [ 32] [6213544000074135=491212017413905] +14:49:52 [ 37] [ 12] [507907269836] +14:49:52 [ 38] [ 6] [321584] +14:49:52 [ 39] [ 2] [00] +14:49:52 [ 41] [ 8] [0106NAXA] +14:49:52 [ 49] [ 3] [418] +14:49:52 [ 54] [ 40] [0001418C0004941327140002418C000494132714] +14:49:52 ============================================================================ +14:49:52 Sending to : +14:49:52 ============================================================================ +14:49:52 + + +waiting on router queue for slot.... +14:49:53 ============================================================================ +14:49:53 Slot Id : <273> +14:49:53 Transaction Type : RESPONSE +14:49:53 Received From : +14:49:53 ============================================================================ +14:49:53 FNo. Len. Field Value +14:49:53 ============================================================================ +14:49:53 [ 1] [ 4] [0210] +14:49:53 [ 2] [ 16] [6688990040157180] +14:49:53 [ 3] [ 6] [301000] +14:49:53 [ 4] [ 12] [000000000000] +14:49:53 [ 7] [ 10] [0320144947] +14:49:53 [ 11] [ 6] [775175] +14:49:53 [ 12] [ 6] [144947] +14:49:53 [ 13] [ 4] [0320] +14:49:53 [ 15] [ 4] [0320] +14:49:53 [ 18] [ 4] [6011] +14:49:53 [ 22] [ 3] [021] +14:49:53 [ 32] [ 6] [621354] +14:49:53 [ 35] [ 37] [6688990040157180=98051261544465300000] +14:49:53 [ 37] [ 12] [507902539922] +14:49:53 [ 39] [ 2] [62] +14:49:53 [ 41] [ 8] [05003600] +14:49:53 [ 49] [ 3] [418] +14:49:53 ============================================================================ +14:49:53 Calculate Source COMM Id = 0 +14:49:53 ============================================================================ +14:49:53 + + +waiting on router queue for slot.... +14:49:54 ============================================================================ +14:49:54 Slot Id : <231> +14:49:54 Transaction Type : RESPONSE +14:49:54 Received From : +14:49:54 ============================================================================ +14:49:54 FNo. Len. Field Value +14:49:54 ============================================================================ +14:49:54 [ 1] [ 4] [0210] +14:49:54 [ 2] [ 16] [6213544000074135] +14:49:54 [ 3] [ 6] [010000] +14:49:54 [ 4] [ 12] [000100000000] +14:49:54 [ 7] [ 10] [0320074857] +14:49:54 [ 11] [ 6] [269836] +14:49:54 [ 12] [ 6] [144857] +14:49:54 [ 13] [ 4] [0320] +14:49:54 [ 15] [ 4] [0320] +14:49:54 [ 18] [ 4] [6011] +14:49:54 [ 19] [ 3] [418] +14:49:54 [ 32] [ 6] [180893] +14:49:54 [ 35] [ 32] [6213544000074135=491212017413905] +14:49:54 [ 37] [ 12] [507907269836] +14:49:54 [ 38] [ 6] [321584] +14:49:54 [ 39] [ 2] [00] +14:49:54 [ 41] [ 8] [0106NAXA] +14:49:54 [ 49] [ 3] [418] +14:49:54 [ 54] [ 40] [0001418C0004941327140002418C000494132714] +14:49:54 ============================================================================ +14:49:54 Calculate Source COMM Id = 2 +14:49:54 ============================================================================ +14:49:54 + + +waiting on router queue for slot.... +14:49:55 ============================================================================ +14:49:55 Slot Id : <264> +14:49:55 Transaction Type : REQUEST +14:49:55 Received From : +14:49:55 ============================================================================ +14:49:55 FNo. Len. Field Value +14:49:55 ============================================================================ +14:49:55 [ 1] [ 4] [0800] +14:49:55 [ 7] [ 10] [0320075742] +14:49:55 [ 11] [ 6] [017503] +14:49:55 [ 37] [ 12] [57914017503] +14:49:55 [ 70] [ 3] [301] +14:49:55 ============================================================================ +14:49:55 + + +waiting on router queue for slot.... +14:49:55 Sending to : +14:49:55 ============================================================================ +14:49:55 ============================================================================ +14:49:55 Slot Id : <264> +14:49:55 Transaction Type : RESPONSE +14:49:55 Received From : +14:49:55 ============================================================================ +14:49:55 FNo. Len. Field Value +14:49:55 ============================================================================ +14:49:55 [ 1] [ 4] [0810] +14:49:55 [ 7] [ 10] [0320075742] +14:49:55 [ 11] [ 6] [017503] +14:49:55 [ 37] [ 12] [579140175030] +14:49:55 [ 39] [ 2] [00] +14:49:55 [ 70] [ 3] [810] +14:49:55 ============================================================================ +14:49:55 Calculate Source COMM Id = 1 +14:49:55 ============================================================================ +14:49:55 + + +waiting on router queue for slot.... +14:50:05 ============================================================================ +14:50:05 Slot Id : <220> +14:50:05 Transaction Type : REQUEST +14:50:05 Received From : +14:50:05 ============================================================================ +14:50:05 FNo. Len. Field Value +14:50:05 ============================================================================ +14:50:05 [ 1] [ 4] [0800] +14:50:05 [ 7] [ 10] [0320144952] +14:50:05 [ 11] [ 6] [002658] +14:50:05 [ 37] [ 12] [507914002658] +14:50:05 [ 70] [ 3] [ ] +14:50:05 ============================================================================ +14:50:05 + + +waiting on router queue for slot.... +14:50:05 Sending to : +14:50:05 ============================================================================ +14:50:05 ============================================================================ +14:50:05 Slot Id : <220> +14:50:05 Transaction Type : RESPONSE +14:50:05 Received From : +14:50:05 ============================================================================ +14:50:05 FNo. Len. Field Value +14:50:05 ============================================================================ +14:50:05 [ 1] [ 4] [0810] +14:50:05 [ 7] [ 10] [0320144952] +14:50:05 [ 11] [ 6] [002658] +14:50:05 [ 37] [ 12] [507914002658] +14:50:05 [ 39] [ 2] [91] +14:50:05 [ 70] [ 3] [ ] +14:50:05 ============================================================================ +14:50:05 Calculate Source COMM Id = 3 +14:50:05 ============================================================================ +14:50:05 + + +waiting on router queue for slot.... +14:50:08 ============================================================================ +14:50:08 Slot Id : <254> +14:50:08 Transaction Type : REQUEST +14:50:08 Received From : +14:50:08 ============================================================================ +14:50:08 FNo. Len. Field Value +14:50:08 ============================================================================ +14:50:08 [ 1] [ 4] [0200] +14:50:08 [ 2] [ 16] [6688990102963509] +14:50:08 [ 3] [ 6] [011000] +14:50:08 [ 4] [ 12] [000050000000] +14:50:08 [ 7] [ 10] [0320145004] +14:50:08 [ 11] [ 6] [775237] +14:50:08 [ 12] [ 6] [145004] +14:50:08 [ 13] [ 4] [0320] +14:50:08 [ 15] [ 4] [0320] +14:50:08 [ 18] [ 4] [6011] +14:50:08 [ 22] [ 3] [900] +14:50:08 [ 25] [ 2] [02] +14:50:08 [ 28] [ 9] [D00002000] +14:50:08 [ 32] [ 6] [621354] +14:50:08 [ 35] [ 37] [6688990102963509=42111231350994700000] +14:50:08 [ 37] [ 12] [507902420542] +14:50:08 [ 41] [ 8] [05002600] +14:50:08 [ 42] [ 15] [NATIVE ] +14:50:08 [ 43] [ 40] [Thongchalern Unit LuangprabangLAO] +14:50:08 [ 49] [ 3] [418] +14:50:08 [ 52] [ 16] [77903D8C688AEB0D] +14:50:08 ============================================================================ +14:50:08 + + +waiting on router queue for slot.... +14:50:08 Sending to : +14:50:08 ============================================================================ +14:50:08 Sending to : +14:50:08 ============================================================================ +14:50:09 ============================================================================ +14:50:09 Slot Id : <254> +14:50:09 Transaction Type : REQUEST +14:50:09 Received From : +14:50:09 ============================================================================ +14:50:09 FNo. Len. Field Value +14:50:09 ============================================================================ +14:50:09 [ 1] [ 4] [0200] +14:50:09 [ 2] [ 16] [6688990102963509] +14:50:09 [ 3] [ 6] [011000] +14:50:09 [ 4] [ 12] [000050000000] +14:50:09 [ 7] [ 10] [0320145004] +14:50:09 [ 11] [ 6] [775237] +14:50:09 [ 12] [ 6] [145004] +14:50:09 [ 13] [ 4] [0320] +14:50:09 [ 15] [ 4] [0320] +14:50:09 [ 18] [ 4] [6011] +14:50:09 [ 22] [ 3] [900] +14:50:09 [ 25] [ 2] [02] +14:50:09 [ 28] [ 9] [D00002000] +14:50:09 [ 32] [ 6] [621354] +14:50:09 [ 35] [ 37] [6688990102963509=42111231350994700000] +14:50:09 [ 37] [ 12] [507902420542] +14:50:09 [ 41] [ 8] [05002600] +14:50:09 [ 42] [ 15] [NATIVE ] +14:50:09 [ 43] [ 40] [Thongchalern Unit LuangprabangLAO] +14:50:09 [ 49] [ 3] [418] +14:50:09 [ 52] [ 16] [77903D8C688AEB0D] +14:50:09 ============================================================================ +14:50:09 + + +waiting on router queue for slot.... +14:50:09 Sending to : +14:50:09 ============================================================================ +14:50:09 ============================================================================ +14:50:09 Slot Id : <254> +14:50:09 Transaction Type : REQUEST +14:50:09 Received From : +14:50:09 ============================================================================ +14:50:09 FNo. Len. Field Value +14:50:09 ============================================================================ +14:50:09 [ 1] [ 4] [0200] +14:50:09 [ 2] [ 16] [6688990102963509] +14:50:09 [ 3] [ 6] [011000] +14:50:09 [ 4] [ 12] [000050000000] +14:50:09 [ 7] [ 10] [0320145004] +14:50:09 [ 11] [ 6] [775237] +14:50:09 [ 12] [ 6] [145004] +14:50:09 [ 13] [ 4] [0320] +14:50:09 [ 15] [ 4] [0320] +14:50:09 [ 18] [ 4] [6011] +14:50:09 [ 22] [ 3] [900] +14:50:09 [ 25] [ 2] [02] +14:50:09 [ 28] [ 9] [D00002000] +14:50:09 [ 32] [ 6] [621354] +14:50:09 [ 35] [ 37] [6688990102963509=42111231350994700000] +14:50:09 [ 37] [ 12] [507902420542] +14:50:09 [ 41] [ 8] [05002600] +14:50:09 [ 42] [ 15] [NATIVE ] +14:50:09 [ 43] [ 40] [Thongchalern Unit LuangprabangLAO] +14:50:09 [ 49] [ 3] [418] +14:50:09 [ 52] [ 16] [070C83EF673ACF3E] +14:50:09 ============================================================================ +14:50:09 + + +waiting on router queue for slot.... +14:50:09 Sending to : <4> +14:50:09 ============================================================================ +14:50:09 ============================================================================ +14:50:09 Slot Id : <239> +14:50:09 Transaction Type : REQUEST +14:50:09 Received From : +14:50:09 ============================================================================ +14:50:09 FNo. Len. Field Value +14:50:09 ============================================================================ +14:50:09 [ 1] [ 4] [0800] +14:50:09 [ 7] [ 10] [0320074917] +14:50:09 [ 11] [ 6] [156861] +14:50:09 [ 70] [ 3] [301] +14:50:09 ============================================================================ +14:50:09 + + +waiting on router queue for slot.... +14:50:09 Sending to : +14:50:09 ============================================================================ +14:50:09 ============================================================================ +14:50:09 Slot Id : <239> +14:50:09 Transaction Type : RESPONSE +14:50:09 Received From : +14:50:09 ============================================================================ +14:50:09 FNo. Len. Field Value +14:50:09 ============================================================================ +14:50:09 [ 1] [ 4] [0810] +14:50:09 [ 7] [ 10] [0320074917] +14:50:09 [ 11] [ 6] [156861] +14:50:09 [ 39] [ 2] [00] +14:50:09 [ 70] [ 3] [301] +14:50:09 ============================================================================ +14:50:09 Calculate Source COMM Id = 2 +14:50:09 ============================================================================ +14:50:09 + + +waiting on router queue for slot.... +14:50:10 ============================================================================ +14:50:10 Slot Id : <254> +14:50:10 Transaction Type : RESPONSE +14:50:10 Received From : +14:50:10 ============================================================================ +14:50:10 FNo. Len. Field Value +14:50:10 ============================================================================ +14:50:10 [ 1] [ 4] [0210] +14:50:10 [ 2] [ 16] [6688990102963509] +14:50:10 [ 3] [ 6] [011000] +14:50:10 [ 4] [ 12] [000050000000] +14:50:10 [ 11] [ 6] [775237] +14:50:10 [ 12] [ 6] [145004] +14:50:10 [ 15] [ 4] [0320] +14:50:10 [ 18] [ 4] [6011] +14:50:10 [ 32] [ 6] [621354] +14:50:10 [ 35] [ 37] [6688990102963509=42111231350994700000] +14:50:10 [ 37] [ 12] [507902420542] +14:50:10 [ 38] [ 6] [379176] +14:50:10 [ 39] [ 2] [00] +14:50:10 [ 41] [ 8] [05002600] +14:50:10 [ 49] [ 3] [418] +14:50:10 [ 54] [ 20] [1002418C000116931781] +14:50:10 ============================================================================ +14:50:10 Sending to : +14:50:10 ============================================================================ +14:50:10 + + +waiting on router queue for slot.... +14:50:11 ============================================================================ +14:50:11 Slot Id : <254> +14:50:11 Transaction Type : RESPONSE +14:50:11 Received From : +14:50:11 ============================================================================ +14:50:11 FNo. Len. Field Value +14:50:11 ============================================================================ +14:50:11 [ 1] [ 4] [0210] +14:50:11 [ 2] [ 16] [6688990102963509] +14:50:11 [ 3] [ 6] [011000] +14:50:11 [ 4] [ 12] [000050000000] +14:50:11 [ 11] [ 6] [775237] +14:50:11 [ 12] [ 6] [145004] +14:50:11 [ 15] [ 4] [0320] +14:50:11 [ 18] [ 4] [6011] +14:50:11 [ 32] [ 6] [621354] +14:50:11 [ 35] [ 37] [6688990102963509=42111231350994700000] +14:50:11 [ 37] [ 12] [507902420542] +14:50:11 [ 38] [ 6] [379176] +14:50:11 [ 39] [ 2] [00] +14:50:11 [ 41] [ 8] [05002600] +14:50:11 [ 49] [ 3] [418] +14:50:11 [ 54] [ 20] [1002418C000116931781] +14:50:11 ============================================================================ +14:50:11 Calculate Source COMM Id = 0 +14:50:11 ============================================================================ +14:50:11 + + +waiting on router queue for slot.... +14:50:17 ============================================================================ +14:50:17 Slot Id : <282> +14:50:17 Transaction Type : REQUEST +14:50:17 Received From : +14:50:17 ============================================================================ +14:50:17 FNo. Len. Field Value +14:50:17 ============================================================================ +14:50:17 [ 1] [ 4] [0200] +14:50:17 [ 2] [ 16] [6688990100966306] +14:50:17 [ 3] [ 6] [011000] +14:50:17 [ 4] [ 12] [000100000000] +14:50:17 [ 7] [ 10] [0320145012] +14:50:17 [ 11] [ 6] [775262] +14:50:17 [ 12] [ 6] [145012] +14:50:17 [ 13] [ 4] [0320] +14:50:17 [ 15] [ 4] [0320] +14:50:17 [ 18] [ 4] [6011] +14:50:17 [ 22] [ 3] [900] +14:50:17 [ 25] [ 2] [02] +14:50:17 [ 28] [ 9] [D00002000] +14:50:17 [ 32] [ 6] [621354] +14:50:17 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:50:17 [ 37] [ 12] [507904719691] +14:50:17 [ 41] [ 8] [18001000] +14:50:17 [ 42] [ 15] [NATIVE ] +14:50:17 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:50:17 [ 49] [ 3] [418] +14:50:17 [ 52] [ 16] [7B2CD2386E538D89] +14:50:17 ============================================================================ +14:50:17 + + +waiting on router queue for slot.... +14:50:17 Sending to : +14:50:17 ============================================================================ +14:50:17 Sending to : +14:50:17 ============================================================================ +14:50:17 ============================================================================ +14:50:17 Slot Id : <282> +14:50:17 Transaction Type : REQUEST +14:50:17 Received From : +14:50:17 ============================================================================ +14:50:17 FNo. Len. Field Value +14:50:17 ============================================================================ +14:50:17 [ 1] [ 4] [0200] +14:50:17 [ 2] [ 16] [6688990100966306] +14:50:17 [ 3] [ 6] [011000] +14:50:17 [ 4] [ 12] [000100000000] +14:50:17 [ 7] [ 10] [0320145012] +14:50:17 [ 11] [ 6] [775262] +14:50:17 [ 12] [ 6] [145012] +14:50:17 [ 13] [ 4] [0320] +14:50:17 [ 15] [ 4] [0320] +14:50:17 [ 18] [ 4] [6011] +14:50:17 [ 22] [ 3] [900] +14:50:17 [ 25] [ 2] [02] +14:50:17 [ 28] [ 9] [D00002000] +14:50:17 [ 32] [ 6] [621354] +14:50:17 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:50:17 [ 37] [ 12] [507904719691] +14:50:17 [ 41] [ 8] [18001000] +14:50:17 [ 42] [ 15] [NATIVE ] +14:50:17 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:50:17 [ 49] [ 3] [418] +14:50:17 [ 52] [ 16] [7B2CD2386E538D89] +14:50:17 ============================================================================ +14:50:17 + + +waiting on router queue for slot.... +14:50:17 Sending to : +14:50:17 ============================================================================ +14:50:17 ============================================================================ +14:50:17 Slot Id : <282> +14:50:17 Transaction Type : REQUEST +14:50:17 Received From : +14:50:17 ============================================================================ +14:50:17 FNo. Len. Field Value +14:50:17 ============================================================================ +14:50:17 [ 1] [ 4] [0200] +14:50:17 [ 2] [ 16] [6688990100966306] +14:50:17 [ 3] [ 6] [011000] +14:50:17 [ 4] [ 12] [000100000000] +14:50:17 [ 7] [ 10] [0320145012] +14:50:17 [ 11] [ 6] [775262] +14:50:17 [ 12] [ 6] [145012] +14:50:17 [ 13] [ 4] [0320] +14:50:17 [ 15] [ 4] [0320] +14:50:17 [ 18] [ 4] [6011] +14:50:17 [ 22] [ 3] [900] +14:50:17 [ 25] [ 2] [02] +14:50:17 [ 28] [ 9] [D00002000] +14:50:17 [ 32] [ 6] [621354] +14:50:17 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:50:17 [ 37] [ 12] [507904719691] +14:50:17 [ 41] [ 8] [18001000] +14:50:17 [ 42] [ 15] [NATIVE ] +14:50:17 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:50:17 [ 49] [ 3] [418] +14:50:17 [ 52] [ 16] [5E6AE48118060C4F] +14:50:17 ============================================================================ +14:50:17 + + +waiting on router queue for slot.... +14:50:17 Sending to : <4> +14:50:17 ============================================================================ +14:50:18 ============================================================================ +14:50:18 Slot Id : <282> +14:50:18 Transaction Type : RESPONSE +14:50:18 Received From : +14:50:18 ============================================================================ +14:50:18 FNo. Len. Field Value +14:50:18 ============================================================================ +14:50:18 [ 1] [ 4] [0210] +14:50:18 [ 2] [ 16] [6688990100966306] +14:50:18 [ 3] [ 6] [011000] +14:50:18 [ 4] [ 12] [000100000000] +14:50:18 [ 11] [ 6] [775262] +14:50:18 [ 12] [ 6] [145012] +14:50:18 [ 15] [ 4] [0320] +14:50:18 [ 18] [ 4] [6011] +14:50:18 [ 32] [ 6] [621354] +14:50:18 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:50:18 [ 37] [ 12] [507904719691] +14:50:18 [ 38] [ 6] [053934] +14:50:18 [ 39] [ 2] [00] +14:50:18 [ 41] [ 8] [18001000] +14:50:18 [ 49] [ 3] [418] +14:50:18 [ 54] [ 20] [1002418C000042470528] +14:50:18 ============================================================================ +14:50:18 Sending to : +14:50:18 ============================================================================ +14:50:18 + + +waiting on router queue for slot.... +14:50:19 ============================================================================ +14:50:19 Slot Id : <272> +14:50:19 Transaction Type : REQUEST +14:50:19 Received From : +14:50:19 ============================================================================ +14:50:19 FNo. Len. Field Value +14:50:19 ============================================================================ +14:50:19 [ 1] [ 4] [0800] +14:50:19 [ 7] [ 10] [0320220209] +14:50:19 [ 11] [ 6] [150209] +14:50:19 [ 37] [ 12] [57915150209] +14:50:19 [ 70] [ 3] [301] +14:50:19 ============================================================================ +14:50:19 + + +waiting on router queue for slot.... +14:50:19 Sending to : +14:50:19 ============================================================================ +14:50:19 ============================================================================ +14:50:19 Slot Id : <272> +14:50:19 Transaction Type : RESPONSE +14:50:19 Received From : +14:50:19 ============================================================================ +14:50:19 FNo. Len. Field Value +14:50:19 ============================================================================ +14:50:19 [ 1] [ 4] [0810] +14:50:19 [ 7] [ 10] [0320220209] +14:50:19 [ 11] [ 6] [150209] +14:50:19 [ 37] [ 12] [579151502090] +14:50:19 [ 39] [ 2] [00] +14:50:19 [ 70] [ 3] [810] +14:50:19 ============================================================================ +14:50:19 Calculate Source COMM Id = 6 +14:50:19 ============================================================================ +14:50:19 + + +waiting on router queue for slot.... +14:50:20 ============================================================================ +14:50:20 Slot Id : <282> +14:50:20 Transaction Type : RESPONSE +14:50:20 Received From : +14:50:20 ============================================================================ +14:50:20 FNo. Len. Field Value +14:50:20 ============================================================================ +14:50:20 [ 1] [ 4] [0210] +14:50:20 [ 2] [ 16] [6688990100966306] +14:50:20 [ 3] [ 6] [011000] +14:50:20 [ 4] [ 12] [000100000000] +14:50:20 [ 11] [ 6] [775262] +14:50:20 [ 12] [ 6] [145012] +14:50:20 [ 15] [ 4] [0320] +14:50:20 [ 18] [ 4] [6011] +14:50:20 [ 32] [ 6] [621354] +14:50:20 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:50:20 [ 37] [ 12] [507904719691] +14:50:20 [ 38] [ 6] [053934] +14:50:20 [ 39] [ 2] [00] +14:50:20 [ 41] [ 8] [18001000] +14:50:20 [ 49] [ 3] [418] +14:50:20 [ 54] [ 20] [1002418C000042470528] +14:50:20 ============================================================================ +14:50:20 Calculate Source COMM Id = 0 +14:50:20 ============================================================================ +14:50:20 + + +waiting on router queue for slot.... +14:50:20 ============================================================================ +14:50:20 Slot Id : <276> +14:50:20 Transaction Type : REQUEST +14:50:20 Received From : +14:50:20 ============================================================================ +14:50:20 FNo. Len. Field Value +14:50:20 ============================================================================ +14:50:20 [ 1] [ 4] [0800] +14:50:20 [ 2] [ 5] [02531] +14:50:20 [ 3] [ 6] [579148] +14:50:20 [ 7] [ 10] [0320075020] +14:50:20 [ 11] [ 6] [807273] +14:50:20 [ 15] [ 10] [0320075020] +14:50:20 [ 37] [ 11] [57914807273] +14:50:20 [ 70] [ 3] [001] +14:50:20 ============================================================================ +14:50:20 + + +waiting on router queue for slot.... +14:50:20 ============================================================================ +14:50:20 Slot Id : <276> +14:50:20 Transaction Type : RESPONSE +14:50:20 Received From : +14:50:20 ============================================================================ +14:50:20 FNo. Len. Field Value +14:50:20 ============================================================================ +14:50:20 [ 1] [ 4] [0810] +14:50:20 [ 7] [ 10] [0320075020] +14:50:20 [ 11] [ 6] [807273] +14:50:20 [ 15] [ 4] [0320] +14:50:20 [ 37] [ 12] [57914807273] +14:50:20 [ 39] [ 2] [00] +14:50:20 [ 70] [ 3] [001] +14:50:20 ============================================================================ +14:50:20 Sending to : +14:50:20 ============================================================================ +14:50:20 + + +waiting on router queue for slot.... +14:50:21 ============================================================================ +14:50:21 Slot Id : <252> +14:50:21 Transaction Type : REQUEST +14:50:21 Received From : +14:50:21 ============================================================================ +14:50:21 FNo. Len. Field Value +14:50:21 ============================================================================ +14:50:21 [ 1] [ 4] [0800] +14:50:21 [ 7] [ 10] [0320074928] +14:50:21 [ 11] [ 6] [156862] +14:50:21 [ 70] [ 3] [301] +14:50:21 ============================================================================ +14:50:21 + + +waiting on router queue for slot.... +14:50:21 Sending to : +14:50:21 ============================================================================ +14:50:21 ============================================================================ +14:50:21 Slot Id : <252> +14:50:21 Transaction Type : RESPONSE +14:50:21 Received From : +14:50:21 ============================================================================ +14:50:21 FNo. Len. Field Value +14:50:21 ============================================================================ +14:50:21 [ 1] [ 4] [0810] +14:50:21 [ 7] [ 10] [0320074928] +14:50:21 [ 11] [ 6] [156862] +14:50:21 [ 39] [ 2] [00] +14:50:21 [ 70] [ 3] [301] +14:50:21 ============================================================================ +14:50:21 Calculate Source COMM Id = 2 +14:50:21 ============================================================================ +14:50:21 + + +waiting on router queue for slot.... +14:50:32 ============================================================================ +14:50:32 Slot Id : <280> +14:50:32 Transaction Type : REQUEST +14:50:32 Received From : +14:50:32 ============================================================================ +14:50:32 FNo. Len. Field Value +14:50:32 ============================================================================ +14:50:32 [ 1] [ 4] [0200] +14:50:32 [ 2] [ 16] [6688990108430503] +14:50:32 [ 3] [ 6] [010000] +14:50:32 [ 4] [ 12] [000020000000] +14:50:32 [ 7] [ 10] [0320145027] +14:50:32 [ 11] [ 6] [775324] +14:50:32 [ 12] [ 6] [145027] +14:50:32 [ 13] [ 4] [0320] +14:50:32 [ 15] [ 4] [0320] +14:50:32 [ 18] [ 4] [6011] +14:50:32 [ 22] [ 3] [900] +14:50:32 [ 25] [ 2] [02] +14:50:32 [ 28] [ 9] [D00002000] +14:50:32 [ 32] [ 6] [621354] +14:50:32 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:50:32 [ 37] [ 12] [507903499514] +14:50:32 [ 41] [ 8] [06002200] +14:50:32 [ 42] [ 15] [NATIVE ] +14:50:32 [ 43] [ 40] [Beng Market Beng LAO] +14:50:32 [ 49] [ 3] [418] +14:50:32 [ 52] [ 16] [C7B63C92FBC10BF3] +14:50:32 ============================================================================ +14:50:32 + + +waiting on router queue for slot.... +14:50:32 Sending to : +14:50:32 ============================================================================ +14:50:32 Sending to : +14:50:32 ============================================================================ +14:50:32 ============================================================================ +14:50:32 Slot Id : <280> +14:50:32 Transaction Type : REQUEST +14:50:32 Received From : +14:50:32 ============================================================================ +14:50:32 FNo. Len. Field Value +14:50:32 ============================================================================ +14:50:32 [ 1] [ 4] [0200] +14:50:32 [ 2] [ 16] [6688990108430503] +14:50:32 [ 3] [ 6] [010000] +14:50:32 [ 4] [ 12] [000020000000] +14:50:32 [ 7] [ 10] [0320145027] +14:50:32 [ 11] [ 6] [775324] +14:50:32 [ 12] [ 6] [145027] +14:50:32 [ 13] [ 4] [0320] +14:50:32 [ 15] [ 4] [0320] +14:50:32 [ 18] [ 4] [6011] +14:50:32 [ 22] [ 3] [900] +14:50:32 [ 25] [ 2] [02] +14:50:32 [ 28] [ 9] [D00002000] +14:50:32 [ 32] [ 6] [621354] +14:50:32 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:50:32 [ 37] [ 12] [507903499514] +14:50:32 [ 41] [ 8] [06002200] +14:50:32 [ 42] [ 15] [NATIVE ] +14:50:32 [ 43] [ 40] [Beng Market Beng LAO] +14:50:32 [ 49] [ 3] [418] +14:50:32 [ 52] [ 16] [C7B63C92FBC10BF3] +14:50:32 ============================================================================ +14:50:32 + + +waiting on router queue for slot.... +14:50:32 Sending to : +14:50:32 ============================================================================ +14:50:32 ============================================================================ +14:50:32 Slot Id : <280> +14:50:32 Transaction Type : REQUEST +14:50:32 Received From : +14:50:32 ============================================================================ +14:50:32 FNo. Len. Field Value +14:50:32 ============================================================================ +14:50:32 [ 1] [ 4] [0200] +14:50:32 [ 2] [ 16] [6688990108430503] +14:50:32 [ 3] [ 6] [010000] +14:50:32 [ 4] [ 12] [000020000000] +14:50:32 [ 7] [ 10] [0320145027] +14:50:32 [ 11] [ 6] [775324] +14:50:32 [ 12] [ 6] [145027] +14:50:32 [ 13] [ 4] [0320] +14:50:32 [ 15] [ 4] [0320] +14:50:32 [ 18] [ 4] [6011] +14:50:32 [ 22] [ 3] [900] +14:50:32 [ 25] [ 2] [02] +14:50:32 [ 28] [ 9] [D00002000] +14:50:32 [ 32] [ 6] [621354] +14:50:32 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:50:32 [ 37] [ 12] [507903499514] +14:50:32 [ 41] [ 8] [06002200] +14:50:32 [ 42] [ 15] [NATIVE ] +14:50:32 [ 43] [ 40] [Beng Market Beng LAO] +14:50:32 [ 49] [ 3] [418] +14:50:32 [ 52] [ 16] [6EB8918F0BC2E700] +14:50:32 ============================================================================ +14:50:32 + + +waiting on router queue for slot.... +14:50:32 Sending to : <4> +14:50:32 ============================================================================ +14:50:33 ============================================================================ +14:50:33 Slot Id : <280> +14:50:33 Transaction Type : RESPONSE +14:50:33 Received From : +14:50:33 ============================================================================ +14:50:33 FNo. Len. Field Value +14:50:33 ============================================================================ +14:50:33 [ 1] [ 4] [0210] +14:50:33 [ 2] [ 16] [6688990108430503] +14:50:33 [ 3] [ 6] [010000] +14:50:33 [ 4] [ 12] [000020000000] +14:50:33 [ 11] [ 6] [775324] +14:50:33 [ 12] [ 6] [145027] +14:50:33 [ 15] [ 4] [0320] +14:50:33 [ 18] [ 4] [6011] +14:50:33 [ 32] [ 6] [621354] +14:50:33 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:50:33 [ 37] [ 12] [507903499514] +14:50:33 [ 38] [ 6] [144810] +14:50:33 [ 39] [ 2] [00] +14:50:33 [ 41] [ 8] [06002200] +14:50:33 [ 49] [ 3] [418] +14:50:33 [ 54] [ 20] [0002418C000026807192] +14:50:33 ============================================================================ +14:50:33 Sending to : +14:50:33 ============================================================================ +14:50:33 + + +waiting on router queue for slot.... +14:50:35 ============================================================================ +14:50:35 Slot Id : <280> +14:50:35 Transaction Type : RESPONSE +14:50:35 Received From : +14:50:35 ============================================================================ +14:50:35 FNo. Len. Field Value +14:50:35 ============================================================================ +14:50:35 [ 1] [ 4] [0210] +14:50:35 [ 2] [ 16] [6688990108430503] +14:50:35 [ 3] [ 6] [010000] +14:50:35 [ 4] [ 12] [000020000000] +14:50:35 [ 11] [ 6] [775324] +14:50:35 [ 12] [ 6] [145027] +14:50:35 [ 15] [ 4] [0320] +14:50:35 [ 18] [ 4] [6011] +14:50:35 [ 32] [ 6] [621354] +14:50:35 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:50:35 [ 37] [ 12] [507903499514] +14:50:35 [ 38] [ 6] [144810] +14:50:35 [ 39] [ 2] [00] +14:50:35 [ 41] [ 8] [06002200] +14:50:35 [ 49] [ 3] [418] +14:50:35 [ 54] [ 20] [0002418C000026807192] +14:50:35 ============================================================================ +14:50:35 Calculate Source COMM Id = 0 +14:50:35 ============================================================================ +14:50:35 + + +waiting on router queue for slot.... +14:50:36 ============================================================================ +14:50:36 Slot Id : <266> +14:50:36 Transaction Type : REQUEST +14:50:36 Received From : +14:50:36 ============================================================================ +14:50:36 FNo. Len. Field Value +14:50:36 ============================================================================ +14:50:36 [ 1] [ 4] [0800] +14:50:36 [ 7] [ 10] [0320074943] +14:50:36 [ 11] [ 6] [156863] +14:50:36 [ 70] [ 3] [301] +14:50:36 ============================================================================ +14:50:36 + + +waiting on router queue for slot.... +14:50:36 Sending to : +14:50:36 ============================================================================ +14:50:36 ============================================================================ +14:50:36 Slot Id : <266> +14:50:36 Transaction Type : RESPONSE +14:50:36 Received From : +14:50:36 ============================================================================ +14:50:36 FNo. Len. Field Value +14:50:36 ============================================================================ +14:50:36 [ 1] [ 4] [0810] +14:50:36 [ 7] [ 10] [0320074943] +14:50:36 [ 11] [ 6] [156863] +14:50:36 [ 39] [ 2] [00] +14:50:36 [ 70] [ 3] [301] +14:50:36 ============================================================================ +14:50:36 Calculate Source COMM Id = 2 +14:50:36 ============================================================================ +14:50:36 + + +waiting on router queue for slot.... +14:50:38 ============================================================================ +14:50:38 Slot Id : <241> +14:50:38 Transaction Type : REQUEST +14:50:38 Received From : +14:50:38 ============================================================================ +14:50:38 FNo. Len. Field Value +14:50:38 ============================================================================ +14:50:38 [ 1] [ 4] [0200] +14:50:38 [ 2] [ 16] [6213544000074135] +14:50:38 [ 3] [ 6] [010000] +14:50:38 [ 4] [ 12] [000100000000] +14:50:38 [ 7] [ 10] [0320074943] +14:50:38 [ 11] [ 6] [269842] +14:50:38 [ 12] [ 6] [144943] +14:50:38 [ 13] [ 4] [0320] +14:50:38 [ 14] [ 4] [4912] +14:50:38 [ 15] [ 4] [0320] +14:50:38 [ 18] [ 4] [6011] +14:50:38 [ 19] [ 3] [418] +14:50:38 [ 22] [ 3] [021] +14:50:38 [ 25] [ 2] [01] +14:50:38 [ 28] [ 9] [D00002000] +14:50:38 [ 32] [ 6] [180893] +14:50:38 [ 35] [ 32] [6213544000074135=491212017413905] +14:50:38 [ 37] [ 12] [507907269842] +14:50:38 [ 41] [ 8] [0106NAXA] +14:50:38 [ 42] [ 15] [999999 ] +14:50:38 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:50:38 [ 49] [ 3] [418] +14:50:38 [ 52] [ 16] [7A660DA19C242BF2] +14:50:38 ============================================================================ +14:50:38 + + +waiting on router queue for slot.... +14:50:38 Sending to : +14:50:38 ============================================================================ +14:50:38 Sending to : +14:50:38 ============================================================================ +14:50:38 ============================================================================ +14:50:38 Slot Id : <241> +14:50:38 Transaction Type : REQUEST +14:50:38 Received From : +14:50:38 ============================================================================ +14:50:38 FNo. Len. Field Value +14:50:38 ============================================================================ +14:50:38 [ 1] [ 4] [0200] +14:50:38 [ 2] [ 16] [6213544000074135] +14:50:38 [ 3] [ 6] [010000] +14:50:38 [ 4] [ 12] [000100000000] +14:50:38 [ 7] [ 10] [0320074943] +14:50:38 [ 11] [ 6] [269842] +14:50:38 [ 12] [ 6] [144943] +14:50:38 [ 13] [ 4] [0320] +14:50:38 [ 14] [ 4] [4912] +14:50:38 [ 15] [ 4] [0320] +14:50:38 [ 18] [ 4] [6011] +14:50:38 [ 19] [ 3] [418] +14:50:38 [ 22] [ 3] [021] +14:50:38 [ 25] [ 2] [01] +14:50:38 [ 28] [ 9] [D00002000] +14:50:38 [ 32] [ 6] [180893] +14:50:38 [ 35] [ 32] [6213544000074135=491212017413905] +14:50:38 [ 37] [ 12] [507907269842] +14:50:38 [ 41] [ 8] [0106NAXA] +14:50:38 [ 42] [ 15] [999999 ] +14:50:38 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:50:38 [ 49] [ 3] [418] +14:50:38 [ 52] [ 16] [7A660DA19C242BF2] +14:50:38 ============================================================================ +14:50:38 + + +waiting on router queue for slot.... +14:50:38 Sending to : +14:50:38 ============================================================================ +14:50:38 ============================================================================ +14:50:38 Slot Id : <241> +14:50:38 Transaction Type : REQUEST +14:50:38 Received From : +14:50:38 ============================================================================ +14:50:38 FNo. Len. Field Value +14:50:38 ============================================================================ +14:50:38 [ 1] [ 4] [0200] +14:50:38 [ 2] [ 16] [6213544000074135] +14:50:38 [ 3] [ 6] [010000] +14:50:38 [ 4] [ 12] [000100000000] +14:50:38 [ 7] [ 10] [0320074943] +14:50:38 [ 11] [ 6] [269842] +14:50:38 [ 12] [ 6] [144943] +14:50:38 [ 13] [ 4] [0320] +14:50:38 [ 14] [ 4] [4912] +14:50:38 [ 15] [ 4] [0320] +14:50:38 [ 18] [ 4] [6011] +14:50:38 [ 19] [ 3] [418] +14:50:38 [ 22] [ 3] [021] +14:50:38 [ 25] [ 2] [01] +14:50:38 [ 28] [ 9] [D00002000] +14:50:38 [ 32] [ 6] [180893] +14:50:38 [ 35] [ 32] [6213544000074135=491212017413905] +14:50:38 [ 37] [ 12] [507907269842] +14:50:38 [ 41] [ 8] [0106NAXA] +14:50:38 [ 42] [ 15] [999999 ] +14:50:38 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +14:50:38 [ 49] [ 3] [418] +14:50:38 [ 52] [ 16] [45341E05561F80C0] +14:50:38 ============================================================================ +14:50:38 + + +waiting on router queue for slot.... +14:50:38 Sending to : <0> +14:50:38 ============================================================================ +14:50:39 ============================================================================ +14:50:39 Slot Id : <241> +14:50:39 Transaction Type : RESPONSE +14:50:39 Received From : +14:50:39 ============================================================================ +14:50:39 FNo. Len. Field Value +14:50:39 ============================================================================ +14:50:39 [ 1] [ 4] [0210] +14:50:39 [ 2] [ 16] [6213544000074135] +14:50:39 [ 3] [ 6] [010000] +14:50:39 [ 4] [ 12] [000100000000] +14:50:39 [ 7] [ 10] [0320074943] +14:50:39 [ 11] [ 6] [269842] +14:50:39 [ 12] [ 6] [144943] +14:50:39 [ 13] [ 4] [0320] +14:50:39 [ 15] [ 4] [0320] +14:50:39 [ 18] [ 4] [6011] +14:50:39 [ 19] [ 3] [418] +14:50:39 [ 32] [ 6] [180893] +14:50:39 [ 35] [ 32] [6213544000074135=491212017413905] +14:50:39 [ 37] [ 12] [507907269842] +14:50:39 [ 38] [ 6] [251211] +14:50:39 [ 39] [ 2] [00] +14:50:39 [ 41] [ 8] [0106NAXA] +14:50:39 [ 49] [ 3] [418] +14:50:39 [ 54] [ 40] [0001418C0003939327140002418C000393932714] +14:50:39 ============================================================================ +14:50:39 Sending to : +14:50:39 ============================================================================ +14:50:39 + + +waiting on router queue for slot.... +14:50:40 ============================================================================ +14:50:40 Slot Id : <284> +14:50:40 Transaction Type : REQUEST +14:50:40 Received From : +14:50:40 ============================================================================ +14:50:40 FNo. Len. Field Value +14:50:40 ============================================================================ +14:50:40 [ 1] [ 4] [0200] +14:50:40 [ 2] [ 16] [6688990040082719] +14:50:40 [ 3] [ 6] [010000] +14:50:40 [ 4] [ 12] [000100000000] +14:50:40 [ 7] [ 10] [0320145035] +14:50:40 [ 11] [ 6] [775350] +14:50:40 [ 12] [ 6] [145035] +14:50:40 [ 13] [ 4] [0320] +14:50:40 [ 15] [ 4] [0320] +14:50:40 [ 18] [ 4] [6011] +14:50:40 [ 22] [ 3] [900] +14:50:40 [ 25] [ 2] [02] +14:50:40 [ 28] [ 9] [D00002000] +14:50:40 [ 32] [ 6] [621354] +14:50:40 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:50:40 [ 37] [ 12] [507904381153] +14:50:40 [ 41] [ 8] [03003700] +14:50:40 [ 42] [ 15] [NATIVE ] +14:50:40 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +14:50:40 [ 49] [ 3] [418] +14:50:40 [ 52] [ 16] [D28D8675129D3A36] +14:50:40 ============================================================================ +14:50:40 + + +waiting on router queue for slot.... +14:50:40 Sending to : +14:50:40 ============================================================================ +14:50:40 Sending to : +14:50:40 ============================================================================ +14:50:40 ============================================================================ +14:50:40 Slot Id : <258> +14:50:40 Transaction Type : REQUEST +14:50:40 Received From : +14:50:40 ============================================================================ +14:50:40 FNo. Len. Field Value +14:50:40 ============================================================================ +14:50:40 [ 1] [ 4] [0200] +14:50:40 [ 2] [ 16] [6213544001940581] +14:50:40 [ 3] [ 6] [010000] +14:50:40 [ 4] [ 12] [000100000000] +14:50:40 [ 7] [ 10] [0320145827] +14:50:40 [ 11] [ 6] [259277] +14:50:40 [ 12] [ 6] [145827] +14:50:40 [ 13] [ 4] [0320] +14:50:40 [ 14] [ 4] [4912] +14:50:40 [ 15] [ 4] [0320] +14:50:40 [ 18] [ 4] [6011] +14:50:40 [ 22] [ 3] [900] +14:50:40 [ 25] [ 2] [02] +14:50:40 [ 28] [ 9] [D00002000] +14:50:40 [ 32] [ 6] [220699] +14:50:40 [ 35] [ 32] [6213544001940581=491212014058837] +14:50:40 [ 37] [ 12] [507900040612] +14:50:40 [ 41] [ 8] [01000400] +14:50:40 [ 42] [ 15] [APTRA ] +14:50:40 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:50:40 [ 49] [ 3] [418] +14:50:40 [ 52] [ 16] [6BAC1F205713E807] +14:50:40 ============================================================================ +14:50:40 + + +waiting on router queue for slot.... +14:50:40 Sending to : +14:50:40 ============================================================================ +14:50:40 Sending to : +14:50:40 ============================================================================ +14:50:40 ============================================================================ +14:50:40 Slot Id : <284> +14:50:40 Transaction Type : REQUEST +14:50:40 Received From : +14:50:40 ============================================================================ +14:50:40 FNo. Len. Field Value +14:50:40 ============================================================================ +14:50:40 [ 1] [ 4] [0200] +14:50:40 [ 2] [ 16] [6688990040082719] +14:50:40 [ 3] [ 6] [010000] +14:50:40 [ 4] [ 12] [000100000000] +14:50:40 [ 7] [ 10] [0320145035] +14:50:40 [ 11] [ 6] [775350] +14:50:40 [ 12] [ 6] [145035] +14:50:40 [ 13] [ 4] [0320] +14:50:40 [ 15] [ 4] [0320] +14:50:40 [ 18] [ 4] [6011] +14:50:40 [ 22] [ 3] [900] +14:50:40 [ 25] [ 2] [02] +14:50:40 [ 28] [ 9] [D00002000] +14:50:40 [ 32] [ 6] [621354] +14:50:40 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:50:40 [ 37] [ 12] [507904381153] +14:50:40 [ 41] [ 8] [03003700] +14:50:40 [ 42] [ 15] [NATIVE ] +14:50:40 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +14:50:40 [ 49] [ 3] [418] +14:50:40 [ 52] [ 16] [D28D8675129D3A36] +14:50:40 ============================================================================ +14:50:40 + + +waiting on router queue for slot.... +14:50:40 Sending to : +14:50:40 ============================================================================ +14:50:40 ============================================================================ +14:50:40 Slot Id : <284> +14:50:40 Transaction Type : REQUEST +14:50:40 Received From : +14:50:40 ============================================================================ +14:50:40 FNo. Len. Field Value +14:50:40 ============================================================================ +14:50:40 [ 1] [ 4] [0200] +14:50:40 [ 2] [ 16] [6688990040082719] +14:50:40 [ 3] [ 6] [010000] +14:50:40 [ 4] [ 12] [000100000000] +14:50:40 [ 7] [ 10] [0320145035] +14:50:40 [ 11] [ 6] [775350] +14:50:40 [ 12] [ 6] [145035] +14:50:40 [ 13] [ 4] [0320] +14:50:40 [ 15] [ 4] [0320] +14:50:40 [ 18] [ 4] [6011] +14:50:40 [ 22] [ 3] [900] +14:50:40 [ 25] [ 2] [02] +14:50:40 [ 28] [ 9] [D00002000] +14:50:40 [ 32] [ 6] [621354] +14:50:40 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:50:40 [ 37] [ 12] [507904381153] +14:50:40 [ 41] [ 8] [03003700] +14:50:40 [ 42] [ 15] [NATIVE ] +14:50:40 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +14:50:40 [ 49] [ 3] [418] +14:50:40 [ 52] [ 16] [44D16A19BF409331] +14:50:40 ============================================================================ +14:50:40 + + +waiting on router queue for slot.... +14:50:40 Sending to : <4> +14:50:40 ============================================================================ +14:50:40 ============================================================================ +14:50:40 Slot Id : <258> +14:50:40 Transaction Type : REQUEST +14:50:40 Received From : +14:50:40 ============================================================================ +14:50:40 FNo. Len. Field Value +14:50:40 ============================================================================ +14:50:40 [ 1] [ 4] [0200] +14:50:40 [ 2] [ 16] [6213544001940581] +14:50:40 [ 3] [ 6] [010000] +14:50:40 [ 4] [ 12] [000100000000] +14:50:40 [ 7] [ 10] [0320145827] +14:50:40 [ 11] [ 6] [259277] +14:50:40 [ 12] [ 6] [145827] +14:50:40 [ 13] [ 4] [0320] +14:50:40 [ 14] [ 4] [4912] +14:50:40 [ 15] [ 4] [0320] +14:50:40 [ 18] [ 4] [6011] +14:50:40 [ 22] [ 3] [900] +14:50:40 [ 25] [ 2] [02] +14:50:40 [ 28] [ 9] [D00002000] +14:50:40 [ 32] [ 6] [220699] +14:50:40 [ 35] [ 32] [6213544001940581=491212014058837] +14:50:40 [ 37] [ 12] [507900040612] +14:50:40 [ 41] [ 8] [01000400] +14:50:40 [ 42] [ 15] [APTRA ] +14:50:40 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:50:40 [ 49] [ 3] [418] +14:50:40 [ 52] [ 16] [6BAC1F205713E807] +14:50:40 ============================================================================ +14:50:40 + + +waiting on router queue for slot.... +14:50:40 Sending to : +14:50:40 ============================================================================ +14:50:40 ============================================================================ +14:50:40 Slot Id : <258> +14:50:40 Transaction Type : REQUEST +14:50:40 Received From : +14:50:40 ============================================================================ +14:50:40 FNo. Len. Field Value +14:50:40 ============================================================================ +14:50:40 [ 1] [ 4] [0200] +14:50:40 [ 2] [ 16] [6213544001940581] +14:50:40 [ 3] [ 6] [010000] +14:50:40 [ 4] [ 12] [000100000000] +14:50:40 [ 7] [ 10] [0320145827] +14:50:40 [ 11] [ 6] [259277] +14:50:40 [ 12] [ 6] [145827] +14:50:40 [ 13] [ 4] [0320] +14:50:40 [ 14] [ 4] [4912] +14:50:40 [ 15] [ 4] [0320] +14:50:40 [ 18] [ 4] [6011] +14:50:40 [ 22] [ 3] [900] +14:50:40 [ 25] [ 2] [02] +14:50:40 [ 28] [ 9] [D00002000] +14:50:40 [ 32] [ 6] [220699] +14:50:40 [ 35] [ 32] [6213544001940581=491212014058837] +14:50:40 [ 37] [ 12] [507900040612] +14:50:40 [ 41] [ 8] [01000400] +14:50:40 [ 42] [ 15] [APTRA ] +14:50:40 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:50:40 [ 49] [ 3] [418] +14:50:40 [ 52] [ 16] [5707DE3304F6D61C] +14:50:40 ============================================================================ +14:50:40 + + +waiting on router queue for slot.... +14:50:40 Sending to : <0> +14:50:40 ============================================================================ +14:50:40 ============================================================================ +14:50:40 Slot Id : <224> +14:50:40 Transaction Type : REQUEST +14:50:40 Received From : +14:50:40 ============================================================================ +14:50:40 FNo. Len. Field Value +14:50:40 ============================================================================ +14:50:40 [ 1] [ 4] [0200] +14:50:40 [ 2] [ 16] [6688990103185904] +14:50:40 [ 3] [ 6] [011000] +14:50:40 [ 4] [ 12] [000010000000] +14:50:40 [ 7] [ 10] [0320145036] +14:50:40 [ 11] [ 6] [775357] +14:50:40 [ 12] [ 6] [145036] +14:50:40 [ 13] [ 4] [0320] +14:50:40 [ 15] [ 4] [0320] +14:50:40 [ 18] [ 4] [6011] +14:50:40 [ 22] [ 3] [900] +14:50:40 [ 25] [ 2] [02] +14:50:40 [ 28] [ 9] [D00002000] +14:50:40 [ 32] [ 6] [621354] +14:50:40 [ 35] [ 37] [6688990103185904=42121231590437900000] +14:50:40 [ 37] [ 12] [507905200894] +14:50:40 [ 41] [ 8] [07001700] +14:50:40 [ 42] [ 15] [NATIVE ] +14:50:40 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:50:40 [ 49] [ 3] [418] +14:50:40 [ 52] [ 16] [9101F0D818D963B6] +14:50:40 ============================================================================ +14:50:40 + + +waiting on router queue for slot.... +14:50:40 Sending to : +14:50:40 ============================================================================ +14:50:40 Sending to : +14:50:40 ============================================================================ +14:50:40 ============================================================================ +14:50:40 Slot Id : <241> +14:50:40 Transaction Type : RESPONSE +14:50:40 Received From : +14:50:40 ============================================================================ +14:50:40 FNo. Len. Field Value +14:50:40 ============================================================================ +14:50:40 [ 1] [ 4] [0210] +14:50:40 [ 2] [ 16] [6213544000074135] +14:50:40 [ 3] [ 6] [010000] +14:50:40 [ 4] [ 12] [000100000000] +14:50:40 [ 7] [ 10] [0320074943] +14:50:40 [ 11] [ 6] [269842] +14:50:40 [ 12] [ 6] [144943] +14:50:40 [ 13] [ 4] [0320] +14:50:40 [ 15] [ 4] [0320] +14:50:40 [ 18] [ 4] [6011] +14:50:40 [ 19] [ 3] [418] +14:50:40 [ 32] [ 6] [180893] +14:50:40 [ 35] [ 32] [6213544000074135=491212017413905] +14:50:40 [ 37] [ 12] [507907269842] +14:50:40 [ 38] [ 6] [251211] +14:50:40 [ 39] [ 2] [00] +14:50:40 [ 41] [ 8] [0106NAXA] +14:50:40 [ 49] [ 3] [418] +14:50:40 [ 54] [ 40] [0001418C0003939327140002418C000393932714] +14:50:40 ============================================================================ +14:50:40 Calculate Source COMM Id = 2 +14:50:40 ============================================================================ +14:50:40 + + +waiting on router queue for slot.... +14:50:41 ============================================================================ +14:50:41 Slot Id : <258> +14:50:41 Transaction Type : RESPONSE +14:50:41 Received From : +14:50:41 ============================================================================ +14:50:41 FNo. Len. Field Value +14:50:41 ============================================================================ +14:50:41 [ 1] [ 4] [0210] +14:50:41 [ 2] [ 16] [6213544001940581] +14:50:41 [ 3] [ 6] [010000] +14:50:41 [ 4] [ 12] [000100000000] +14:50:41 [ 7] [ 10] [0320145827] +14:50:41 [ 11] [ 6] [259277] +14:50:41 [ 12] [ 6] [145827] +14:50:41 [ 13] [ 4] [0320] +14:50:41 [ 15] [ 4] [0320] +14:50:41 [ 18] [ 4] [6011] +14:50:41 [ 32] [ 6] [220699] +14:50:41 [ 35] [ 32] [6213544001940581=491212014058837] +14:50:41 [ 37] [ 12] [507900040612] +14:50:41 [ 38] [ 6] [065853] +14:50:41 [ 39] [ 2] [00] +14:50:41 [ 41] [ 8] [01000400] +14:50:41 [ 49] [ 3] [418] +14:50:41 [ 54] [ 40] [0001418C0004185299160002418C000418529916] +14:50:41 ============================================================================ +14:50:41 Sending to : +14:50:41 ============================================================================ +14:50:41 + + +waiting on router queue for slot.... +14:50:41 ============================================================================ +14:50:41 Slot Id : <224> +14:50:41 Transaction Type : REQUEST +14:50:41 Received From : +14:50:41 ============================================================================ +14:50:41 FNo. Len. Field Value +14:50:41 ============================================================================ +14:50:41 [ 1] [ 4] [0200] +14:50:41 [ 2] [ 16] [6688990103185904] +14:50:41 [ 3] [ 6] [011000] +14:50:41 [ 4] [ 12] [000010000000] +14:50:41 [ 7] [ 10] [0320145036] +14:50:41 [ 11] [ 6] [775357] +14:50:41 [ 12] [ 6] [145036] +14:50:41 [ 13] [ 4] [0320] +14:50:41 [ 15] [ 4] [0320] +14:50:41 [ 18] [ 4] [6011] +14:50:41 [ 22] [ 3] [900] +14:50:41 [ 25] [ 2] [02] +14:50:41 [ 28] [ 9] [D00002000] +14:50:41 [ 32] [ 6] [621354] +14:50:41 [ 35] [ 37] [6688990103185904=42121231590437900000] +14:50:41 [ 37] [ 12] [507905200894] +14:50:41 [ 41] [ 8] [07001700] +14:50:41 [ 42] [ 15] [NATIVE ] +14:50:41 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:50:41 [ 49] [ 3] [418] +14:50:41 [ 52] [ 16] [9101F0D818D963B6] +14:50:41 ============================================================================ +14:50:41 + + +waiting on router queue for slot.... +14:50:41 Sending to : +14:50:41 ============================================================================ +14:50:41 ============================================================================ +14:50:41 Slot Id : <224> +14:50:41 Transaction Type : REQUEST +14:50:41 Received From : +14:50:41 ============================================================================ +14:50:41 FNo. Len. Field Value +14:50:41 ============================================================================ +14:50:41 [ 1] [ 4] [0200] +14:50:41 [ 2] [ 16] [6688990103185904] +14:50:41 [ 3] [ 6] [011000] +14:50:41 [ 4] [ 12] [000010000000] +14:50:41 [ 7] [ 10] [0320145036] +14:50:41 [ 11] [ 6] [775357] +14:50:41 [ 12] [ 6] [145036] +14:50:41 [ 13] [ 4] [0320] +14:50:41 [ 15] [ 4] [0320] +14:50:41 [ 18] [ 4] [6011] +14:50:41 [ 22] [ 3] [900] +14:50:41 [ 25] [ 2] [02] +14:50:41 [ 28] [ 9] [D00002000] +14:50:41 [ 32] [ 6] [621354] +14:50:41 [ 35] [ 37] [6688990103185904=42121231590437900000] +14:50:41 [ 37] [ 12] [507905200894] +14:50:41 [ 41] [ 8] [07001700] +14:50:41 [ 42] [ 15] [NATIVE ] +14:50:41 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:50:41 [ 49] [ 3] [418] +14:50:41 [ 52] [ 16] [33ED98CBE3DC8733] +14:50:41 ============================================================================ +14:50:41 + + +waiting on router queue for slot.... +14:50:41 Sending to : <4> +14:50:41 ============================================================================ +14:50:41 ============================================================================ +14:50:41 Slot Id : <284> +14:50:41 Transaction Type : RESPONSE +14:50:41 Received From : +14:50:41 ============================================================================ +14:50:41 FNo. Len. Field Value +14:50:41 ============================================================================ +14:50:41 [ 1] [ 4] [0210] +14:50:41 [ 2] [ 16] [6688990040082719] +14:50:41 [ 3] [ 6] [010000] +14:50:41 [ 4] [ 12] [000100000000] +14:50:41 [ 11] [ 6] [775350] +14:50:41 [ 12] [ 6] [145035] +14:50:41 [ 15] [ 4] [0320] +14:50:41 [ 18] [ 4] [6011] +14:50:41 [ 32] [ 6] [621354] +14:50:41 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:50:41 [ 37] [ 12] [507904381153] +14:50:41 [ 38] [ 6] [762828] +14:50:41 [ 39] [ 2] [00] +14:50:41 [ 41] [ 8] [03003700] +14:50:41 [ 49] [ 3] [418] +14:50:41 [ 54] [ 20] [0002764C000000646376] +14:50:41 ============================================================================ +14:50:41 Sending to : +14:50:41 ============================================================================ +14:50:41 + + +waiting on router queue for slot.... +14:50:42 ============================================================================ +14:50:42 Slot Id : <224> +14:50:42 Transaction Type : RESPONSE +14:50:42 Received From : +14:50:42 ============================================================================ +14:50:42 FNo. Len. Field Value +14:50:42 ============================================================================ +14:50:42 [ 1] [ 4] [0210] +14:50:42 [ 2] [ 16] [6688990103185904] +14:50:42 [ 3] [ 6] [011000] +14:50:42 [ 4] [ 12] [000010000000] +14:50:42 [ 11] [ 6] [775357] +14:50:42 [ 12] [ 6] [145036] +14:50:42 [ 15] [ 4] [0320] +14:50:42 [ 18] [ 4] [6011] +14:50:42 [ 32] [ 6] [621354] +14:50:42 [ 35] [ 37] [6688990103185904=42121231590437900000] +14:50:42 [ 37] [ 12] [507905200894] +14:50:42 [ 38] [ 6] [508629] +14:50:42 [ 39] [ 2] [00] +14:50:42 [ 41] [ 8] [07001700] +14:50:42 [ 49] [ 3] [418] +14:50:42 [ 54] [ 20] [1002418C000051576011] +14:50:42 ============================================================================ +14:50:42 Sending to : +14:50:42 ============================================================================ +14:50:42 + + +waiting on router queue for slot.... +14:50:42 ============================================================================ +14:50:42 Slot Id : <258> +14:50:42 Transaction Type : RESPONSE +14:50:42 Received From : +14:50:42 ============================================================================ +14:50:42 FNo. Len. Field Value +14:50:42 ============================================================================ +14:50:42 [ 1] [ 4] [0210] +14:50:42 [ 2] [ 16] [6213544001940581] +14:50:42 [ 3] [ 6] [010000] +14:50:42 [ 4] [ 12] [000100000000] +14:50:42 [ 7] [ 10] [0320145827] +14:50:42 [ 11] [ 6] [259277] +14:50:42 [ 12] [ 6] [145827] +14:50:42 [ 13] [ 4] [0320] +14:50:42 [ 15] [ 4] [0320] +14:50:42 [ 18] [ 4] [6011] +14:50:42 [ 32] [ 6] [220699] +14:50:42 [ 35] [ 32] [6213544001940581=491212014058837] +14:50:42 [ 37] [ 12] [507900040612] +14:50:42 [ 38] [ 6] [065853] +14:50:42 [ 39] [ 2] [00] +14:50:42 [ 41] [ 8] [01000400] +14:50:42 [ 49] [ 3] [418] +14:50:42 [ 54] [ 40] [0001418C0004185299160002418C000418529916] +14:50:42 ============================================================================ +14:50:42 Calculate Source COMM Id = 1 +14:50:42 ============================================================================ +14:50:42 + + +waiting on router queue for slot.... +14:50:44 ============================================================================ +14:50:44 Slot Id : <224> +14:50:44 Transaction Type : RESPONSE +14:50:44 Received From : +14:50:44 ============================================================================ +14:50:44 FNo. Len. Field Value +14:50:44 ============================================================================ +14:50:44 [ 1] [ 4] [0210] +14:50:44 [ 2] [ 16] [6688990103185904] +14:50:44 [ 3] [ 6] [011000] +14:50:44 [ 4] [ 12] [000010000000] +14:50:44 [ 11] [ 6] [775357] +14:50:44 [ 12] [ 6] [145036] +14:50:44 [ 15] [ 4] [0320] +14:50:44 [ 18] [ 4] [6011] +14:50:44 [ 32] [ 6] [621354] +14:50:44 [ 35] [ 37] [6688990103185904=42121231590437900000] +14:50:44 [ 37] [ 12] [507905200894] +14:50:44 [ 38] [ 6] [508629] +14:50:44 [ 39] [ 2] [00] +14:50:44 [ 41] [ 8] [07001700] +14:50:44 [ 49] [ 3] [418] +14:50:44 [ 54] [ 20] [1002418C000051576011] +14:50:44 ============================================================================ +14:50:44 Calculate Source COMM Id = 0 +14:50:44 ============================================================================ +14:50:44 + + +waiting on router queue for slot.... +14:50:44 ============================================================================ +14:50:44 Slot Id : <219> +14:50:44 Transaction Type : REQUEST +14:50:44 Received From : +14:50:44 ============================================================================ +14:50:44 FNo. Len. Field Value +14:50:44 ============================================================================ +14:50:44 [ 1] [ 4] [0200] +14:50:44 [ 2] [ 16] [1808930800015935] +14:50:44 [ 3] [ 6] [011000] +14:50:44 [ 4] [ 12] [000020000000] +14:50:44 [ 7] [ 10] [0320145039] +14:50:44 [ 11] [ 6] [775380] +14:50:44 [ 12] [ 6] [145039] +14:50:44 [ 13] [ 4] [0320] +14:50:44 [ 15] [ 4] [0320] +14:50:44 [ 18] [ 4] [6011] +14:50:44 [ 22] [ 3] [900] +14:50:44 [ 25] [ 2] [02] +14:50:44 [ 28] [ 9] [D00002000] +14:50:44 [ 32] [ 6] [621354] +14:50:44 [ 35] [ 27] [1808930800015935=1803500025] +14:50:44 [ 37] [ 12] [507903032208] +14:50:44 [ 41] [ 8] [12002600] +14:50:44 [ 42] [ 15] [NATIVE ] +14:50:44 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +14:50:44 [ 49] [ 3] [418] +14:50:44 [ 52] [ 16] [E50FB13A74A47A45] +14:50:44 ============================================================================ +14:50:44 + + +waiting on router queue for slot.... +14:50:44 Sending to : +14:50:44 ============================================================================ +14:50:44 Sending to : +14:50:44 ============================================================================ +14:50:44 ============================================================================ +14:50:44 Slot Id : <219> +14:50:44 Transaction Type : REQUEST +14:50:44 Received From : +14:50:44 ============================================================================ +14:50:44 FNo. Len. Field Value +14:50:44 ============================================================================ +14:50:44 [ 1] [ 4] [0200] +14:50:44 [ 2] [ 16] [1808930800015935] +14:50:44 [ 3] [ 6] [011000] +14:50:44 [ 4] [ 12] [000020000000] +14:50:44 [ 7] [ 10] [0320145039] +14:50:44 [ 11] [ 6] [775380] +14:50:44 [ 12] [ 6] [145039] +14:50:44 [ 13] [ 4] [0320] +14:50:44 [ 15] [ 4] [0320] +14:50:44 [ 18] [ 4] [6011] +14:50:44 [ 22] [ 3] [900] +14:50:44 [ 25] [ 2] [02] +14:50:44 [ 28] [ 9] [D00002000] +14:50:44 [ 32] [ 6] [621354] +14:50:44 [ 35] [ 27] [1808930800015935=1803500025] +14:50:44 [ 37] [ 12] [507903032208] +14:50:44 [ 41] [ 8] [12002600] +14:50:44 [ 42] [ 15] [NATIVE ] +14:50:44 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +14:50:44 [ 49] [ 3] [418] +14:50:44 [ 52] [ 16] [E50FB13A74A47A45] +14:50:44 ============================================================================ +14:50:44 + + +waiting on router queue for slot.... +14:50:44 Sending to : +14:50:44 ============================================================================ +14:50:44 ============================================================================ +14:50:44 Slot Id : <219> +14:50:44 Transaction Type : REQUEST +14:50:44 Received From : +14:50:44 ============================================================================ +14:50:44 FNo. Len. Field Value +14:50:44 ============================================================================ +14:50:44 [ 1] [ 4] [0200] +14:50:44 [ 2] [ 16] [1808930800015935] +14:50:44 [ 3] [ 6] [011000] +14:50:44 [ 4] [ 12] [000020000000] +14:50:44 [ 7] [ 10] [0320145039] +14:50:44 [ 11] [ 6] [775380] +14:50:44 [ 12] [ 6] [145039] +14:50:44 [ 13] [ 4] [0320] +14:50:44 [ 15] [ 4] [0320] +14:50:44 [ 18] [ 4] [6011] +14:50:44 [ 22] [ 3] [900] +14:50:44 [ 25] [ 2] [02] +14:50:44 [ 28] [ 9] [D00002000] +14:50:44 [ 32] [ 6] [621354] +14:50:44 [ 35] [ 27] [1808930800015935=1803500025] +14:50:44 [ 37] [ 12] [507903032208] +14:50:44 [ 41] [ 8] [12002600] +14:50:44 [ 42] [ 15] [NATIVE ] +14:50:44 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +14:50:44 [ 49] [ 3] [418] +14:50:44 [ 52] [ 16] [EA4CDD10553878D4] +14:50:44 ============================================================================ +14:50:44 + + +waiting on router queue for slot.... +14:50:44 Sending to : <2> +14:50:44 ============================================================================ +14:50:46 ============================================================================ +14:50:46 Slot Id : <284> +14:50:46 Transaction Type : RESPONSE +14:50:46 Received From : +14:50:46 ============================================================================ +14:50:46 FNo. Len. Field Value +14:50:46 ============================================================================ +14:50:46 [ 1] [ 4] [0210] +14:50:46 [ 2] [ 16] [6688990040082719] +14:50:46 [ 3] [ 6] [010000] +14:50:46 [ 4] [ 12] [000100000000] +14:50:46 [ 11] [ 6] [775350] +14:50:46 [ 12] [ 6] [145035] +14:50:46 [ 15] [ 4] [0320] +14:50:46 [ 18] [ 4] [6011] +14:50:46 [ 32] [ 6] [621354] +14:50:46 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:50:46 [ 37] [ 12] [507904381153] +14:50:46 [ 38] [ 6] [762828] +14:50:46 [ 39] [ 2] [00] +14:50:46 [ 41] [ 8] [03003700] +14:50:46 [ 49] [ 3] [418] +14:50:46 [ 54] [ 20] [0002764C000000646376] +14:50:46 ============================================================================ +14:50:46 Calculate Source COMM Id = 0 +14:50:46 ============================================================================ +14:50:46 + + +waiting on router queue for slot.... +14:50:50 ============================================================================ +14:50:50 Slot Id : <219> +14:50:50 Transaction Type : RESPONSE +14:50:50 Received From : +14:50:50 ============================================================================ +14:50:50 FNo. Len. Field Value +14:50:50 ============================================================================ +14:50:50 [ 1] [ 4] [0210] +14:50:50 [ 2] [ 16] [1808930800015935] +14:50:50 [ 3] [ 6] [011000] +14:50:50 [ 4] [ 12] [000020000000] +14:50:50 [ 6] [ 12] [000020000000] +14:50:50 [ 7] [ 10] [0320145039] +14:50:50 [ 11] [ 6] [775380] +14:50:50 [ 12] [ 6] [145039] +14:50:50 [ 13] [ 4] [0320] +14:50:50 [ 18] [ 4] [6011] +14:50:50 [ 19] [ 3] [418] +14:50:50 [ 22] [ 3] [021] +14:50:50 [ 32] [ 6] [621354] +14:50:50 [ 35] [ 27] [1808930800015935=1803500025] +14:50:50 [ 37] [ 12] [507903032208] +14:50:50 [ 38] [ 6] [775380] +14:50:50 [ 39] [ 2] [00] +14:50:50 [ 41] [ 8] [12002600] +14:50:50 [ 49] [ 3] [418] +14:50:50 [ 52] [ 16] [EA4CDD10553878D4] +14:50:50 [ 54] [ 20] [1001418C000176479100] +14:50:50 ============================================================================ +14:50:50 Sending to : +14:50:50 ============================================================================ +14:50:50 + + +waiting on router queue for slot.... +14:50:52 ============================================================================ +14:50:52 Slot Id : <219> +14:50:52 Transaction Type : RESPONSE +14:50:52 Received From : +14:50:52 ============================================================================ +14:50:52 FNo. Len. Field Value +14:50:52 ============================================================================ +14:50:52 [ 1] [ 4] [0210] +14:50:52 [ 2] [ 16] [1808930800015935] +14:50:52 [ 3] [ 6] [011000] +14:50:52 [ 4] [ 12] [000020000000] +14:50:52 [ 6] [ 12] [000020000000] +14:50:52 [ 7] [ 10] [0320145039] +14:50:52 [ 11] [ 6] [775380] +14:50:52 [ 12] [ 6] [145039] +14:50:52 [ 13] [ 4] [0320] +14:50:52 [ 18] [ 4] [6011] +14:50:52 [ 19] [ 3] [418] +14:50:52 [ 22] [ 3] [021] +14:50:52 [ 32] [ 6] [621354] +14:50:52 [ 35] [ 27] [1808930800015935=1803500025] +14:50:52 [ 37] [ 12] [507903032208] +14:50:52 [ 38] [ 6] [775380] +14:50:52 [ 39] [ 2] [00] +14:50:52 [ 41] [ 8] [12002600] +14:50:52 [ 49] [ 3] [418] +14:50:52 [ 52] [ 16] [EA4CDD10553878D4] +14:50:52 [ 54] [ 20] [1001418C000176479100] +14:50:52 ============================================================================ +14:50:52 Calculate Source COMM Id = 0 +14:50:52 ============================================================================ +14:50:52 + + +waiting on router queue for slot.... +14:50:57 ============================================================================ +14:50:57 Slot Id : <287> +14:50:57 Transaction Type : REQUEST +14:50:57 Received From : +14:50:57 ============================================================================ +14:50:57 FNo. Len. Field Value +14:50:57 ============================================================================ +14:50:57 [ 1] [ 4] [0800] +14:50:57 [ 7] [ 10] [0320075005] +14:50:57 [ 11] [ 6] [156864] +14:50:57 [ 70] [ 3] [301] +14:50:57 ============================================================================ +14:50:57 + + +waiting on router queue for slot.... +14:50:57 Sending to : +14:50:57 ============================================================================ +14:50:57 ============================================================================ +14:50:57 Slot Id : <287> +14:50:57 Transaction Type : RESPONSE +14:50:57 Received From : +14:50:57 ============================================================================ +14:50:57 FNo. Len. Field Value +14:50:57 ============================================================================ +14:50:57 [ 1] [ 4] [0810] +14:50:57 [ 7] [ 10] [0320075005] +14:50:57 [ 11] [ 6] [156864] +14:50:57 [ 39] [ 2] [00] +14:50:57 [ 70] [ 3] [301] +14:50:57 ============================================================================ +14:50:57 Calculate Source COMM Id = 2 +14:50:57 ============================================================================ +14:50:57 + + +waiting on router queue for slot.... +14:51:07 ============================================================================ +14:51:07 Slot Id : <277> +14:51:07 Transaction Type : REQUEST +14:51:07 Received From : +14:51:07 ============================================================================ +14:51:07 FNo. Len. Field Value +14:51:07 ============================================================================ +14:51:07 [ 1] [ 4] [0800] +14:51:07 [ 7] [ 10] [0320075102] +14:51:07 [ 11] [ 6] [091249] +14:51:07 [ 37] [ 12] [507914091249] +14:51:07 [ 70] [ 3] [001] +14:51:07 ============================================================================ +14:51:07 + + +waiting on router queue for slot.... +14:51:07 Sending to : +14:51:07 ============================================================================ +14:51:07 ============================================================================ +14:51:07 Slot Id : <277> +14:51:07 Transaction Type : RESPONSE +14:51:07 Received From : +14:51:07 ============================================================================ +14:51:07 FNo. Len. Field Value +14:51:07 ============================================================================ +14:51:07 [ 1] [ 4] [0810] +14:51:07 [ 7] [ 10] [0320075102] +14:51:07 [ 11] [ 6] [091249] +14:51:07 [ 37] [ 12] [507914091249] +14:51:07 [ 39] [ 2] [00] +14:51:07 [ 70] [ 3] [001] +14:51:07 ============================================================================ +14:51:07 Calculate Source COMM Id = 0 +14:51:07 ============================================================================ +14:51:07 + + +waiting on router queue for slot.... +14:51:08 ============================================================================ +14:51:08 Slot Id : <290> +14:51:08 Transaction Type : REQUEST +14:51:08 Received From : +14:51:08 ============================================================================ +14:51:08 FNo. Len. Field Value +14:51:08 ============================================================================ +14:51:08 [ 1] [ 4] [0800] +14:51:08 [ 7] [ 10] [0320075015] +14:51:08 [ 11] [ 6] [156865] +14:51:08 [ 70] [ 3] [301] +14:51:08 ============================================================================ +14:51:08 + + +waiting on router queue for slot.... +14:51:08 Sending to : +14:51:08 ============================================================================ +14:51:08 ============================================================================ +14:51:08 Slot Id : <290> +14:51:08 Transaction Type : RESPONSE +14:51:08 Received From : +14:51:08 ============================================================================ +14:51:08 FNo. Len. Field Value +14:51:08 ============================================================================ +14:51:08 [ 1] [ 4] [0810] +14:51:08 [ 7] [ 10] [0320075015] +14:51:08 [ 11] [ 6] [156865] +14:51:08 [ 39] [ 2] [00] +14:51:08 [ 70] [ 3] [301] +14:51:08 ============================================================================ +14:51:08 Calculate Source COMM Id = 2 +14:51:08 ============================================================================ +14:51:08 + + +waiting on router queue for slot.... +14:51:19 ============================================================================ +14:51:19 Slot Id : <267> +14:51:19 Transaction Type : REQUEST +14:51:19 Received From : +14:51:19 ============================================================================ +14:51:19 FNo. Len. Field Value +14:51:19 ============================================================================ +14:51:19 [ 1] [ 4] [0800] +14:51:19 [ 7] [ 10] [0320075026] +14:51:19 [ 11] [ 6] [156866] +14:51:19 [ 70] [ 3] [301] +14:51:19 ============================================================================ +14:51:19 + + +waiting on router queue for slot.... +14:51:19 Sending to : +14:51:19 ============================================================================ +14:51:19 ============================================================================ +14:51:19 Slot Id : <267> +14:51:19 Transaction Type : RESPONSE +14:51:19 Received From : +14:51:19 ============================================================================ +14:51:19 FNo. Len. Field Value +14:51:19 ============================================================================ +14:51:19 [ 1] [ 4] [0810] +14:51:19 [ 7] [ 10] [0320075026] +14:51:19 [ 11] [ 6] [156866] +14:51:19 [ 39] [ 2] [00] +14:51:19 [ 70] [ 3] [301] +14:51:19 ============================================================================ +14:51:19 Calculate Source COMM Id = 2 +14:51:19 ============================================================================ +14:51:19 + + +waiting on router queue for slot.... +14:51:19 ============================================================================ +14:51:19 Slot Id : <294> +14:51:19 Transaction Type : REQUEST +14:51:19 Received From : +14:51:19 ============================================================================ +14:51:19 FNo. Len. Field Value +14:51:19 ============================================================================ +14:51:19 [ 1] [ 4] [0200] +14:51:19 [ 2] [ 16] [6688990108430503] +14:51:19 [ 3] [ 6] [300000] +14:51:19 [ 4] [ 12] [000000000000] +14:51:19 [ 7] [ 10] [0320145114] +14:51:19 [ 11] [ 6] [775524] +14:51:19 [ 12] [ 6] [145114] +14:51:19 [ 13] [ 4] [0320] +14:51:19 [ 15] [ 4] [0320] +14:51:19 [ 18] [ 4] [6011] +14:51:19 [ 22] [ 3] [900] +14:51:19 [ 25] [ 2] [02] +14:51:19 [ 28] [ 9] [D00000000] +14:51:19 [ 32] [ 6] [621354] +14:51:19 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:51:19 [ 37] [ 12] [507903499515] +14:51:19 [ 41] [ 8] [06002200] +14:51:19 [ 42] [ 15] [NATIVE ] +14:51:19 [ 43] [ 40] [Beng Market Beng LAO] +14:51:19 [ 49] [ 3] [418] +14:51:19 [ 52] [ 16] [C7B63C92FBC10BF3] +14:51:19 ============================================================================ +14:51:19 + + +waiting on router queue for slot.... +14:51:19 Sending to : +14:51:19 ============================================================================ +14:51:19 Sending to : +14:51:19 ============================================================================ +14:51:19 ============================================================================ +14:51:19 Slot Id : <294> +14:51:19 Transaction Type : REQUEST +14:51:19 Received From : +14:51:19 ============================================================================ +14:51:19 FNo. Len. Field Value +14:51:19 ============================================================================ +14:51:19 [ 1] [ 4] [0200] +14:51:19 [ 2] [ 16] [6688990108430503] +14:51:19 [ 3] [ 6] [300000] +14:51:19 [ 4] [ 12] [000000000000] +14:51:19 [ 7] [ 10] [0320145114] +14:51:19 [ 11] [ 6] [775524] +14:51:19 [ 12] [ 6] [145114] +14:51:19 [ 13] [ 4] [0320] +14:51:19 [ 15] [ 4] [0320] +14:51:19 [ 18] [ 4] [6011] +14:51:19 [ 22] [ 3] [900] +14:51:19 [ 25] [ 2] [02] +14:51:19 [ 28] [ 9] [D00000000] +14:51:19 [ 32] [ 6] [621354] +14:51:19 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:51:19 [ 37] [ 12] [507903499515] +14:51:19 [ 41] [ 8] [06002200] +14:51:19 [ 42] [ 15] [NATIVE ] +14:51:19 [ 43] [ 40] [Beng Market Beng LAO] +14:51:19 [ 49] [ 3] [418] +14:51:19 [ 52] [ 16] [C7B63C92FBC10BF3] +14:51:19 ============================================================================ +14:51:19 + + +waiting on router queue for slot.... +14:51:19 Sending to : +14:51:19 ============================================================================ +14:51:19 ============================================================================ +14:51:19 Slot Id : <294> +14:51:19 Transaction Type : REQUEST +14:51:19 Received From : +14:51:19 ============================================================================ +14:51:19 FNo. Len. Field Value +14:51:19 ============================================================================ +14:51:19 [ 1] [ 4] [0200] +14:51:19 [ 2] [ 16] [6688990108430503] +14:51:19 [ 3] [ 6] [300000] +14:51:19 [ 4] [ 12] [000000000000] +14:51:19 [ 7] [ 10] [0320145114] +14:51:19 [ 11] [ 6] [775524] +14:51:19 [ 12] [ 6] [145114] +14:51:19 [ 13] [ 4] [0320] +14:51:19 [ 15] [ 4] [0320] +14:51:19 [ 18] [ 4] [6011] +14:51:19 [ 22] [ 3] [900] +14:51:19 [ 25] [ 2] [02] +14:51:19 [ 28] [ 9] [D00000000] +14:51:19 [ 32] [ 6] [621354] +14:51:19 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:51:19 [ 37] [ 12] [507903499515] +14:51:19 [ 41] [ 8] [06002200] +14:51:19 [ 42] [ 15] [NATIVE ] +14:51:19 [ 43] [ 40] [Beng Market Beng LAO] +14:51:19 [ 49] [ 3] [418] +14:51:19 [ 52] [ 16] [6EB8918F0BC2E700] +14:51:19 ============================================================================ +14:51:19 + + +waiting on router queue for slot.... +14:51:19 Sending to : <4> +14:51:19 ============================================================================ +14:51:20 ============================================================================ +14:51:20 Slot Id : <294> +14:51:20 Transaction Type : RESPONSE +14:51:20 Received From : +14:51:20 ============================================================================ +14:51:20 FNo. Len. Field Value +14:51:20 ============================================================================ +14:51:20 [ 1] [ 4] [0210] +14:51:20 [ 2] [ 16] [6688990108430503] +14:51:20 [ 3] [ 6] [300000] +14:51:20 [ 4] [ 12] [000000000000] +14:51:20 [ 11] [ 6] [775524] +14:51:20 [ 12] [ 6] [145114] +14:51:20 [ 15] [ 4] [0320] +14:51:20 [ 18] [ 4] [6011] +14:51:20 [ 32] [ 6] [621354] +14:51:20 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:51:20 [ 37] [ 12] [507903499515] +14:51:20 [ 38] [ 6] [003471] +14:51:20 [ 39] [ 2] [00] +14:51:20 [ 41] [ 8] [06002200] +14:51:20 [ 49] [ 3] [418] +14:51:20 [ 54] [ 20] [0002418C000026807192] +14:51:20 ============================================================================ +14:51:20 Sending to : +14:51:20 ============================================================================ +14:51:20 + + +waiting on router queue for slot.... +14:51:21 ============================================================================ +14:51:21 Slot Id : <294> +14:51:21 Transaction Type : RESPONSE +14:51:21 Received From : +14:51:21 ============================================================================ +14:51:21 FNo. Len. Field Value +14:51:21 ============================================================================ +14:51:21 [ 1] [ 4] [0210] +14:51:21 [ 2] [ 16] [6688990108430503] +14:51:21 [ 3] [ 6] [300000] +14:51:21 [ 4] [ 12] [000000000000] +14:51:21 [ 11] [ 6] [775524] +14:51:21 [ 12] [ 6] [145114] +14:51:21 [ 15] [ 4] [0320] +14:51:21 [ 18] [ 4] [6011] +14:51:21 [ 32] [ 6] [621354] +14:51:21 [ 35] [ 37] [6688990108430503=44061231050345200000] +14:51:21 [ 37] [ 12] [507903499515] +14:51:21 [ 38] [ 6] [003471] +14:51:21 [ 39] [ 2] [00] +14:51:21 [ 41] [ 8] [06002200] +14:51:21 [ 49] [ 3] [418] +14:51:21 [ 54] [ 20] [0002418C000026807192] +14:51:21 ============================================================================ +14:51:21 Calculate Source COMM Id = 0 +14:51:21 ============================================================================ +14:51:21 + + +waiting on router queue for slot.... +14:51:21 ============================================================================ +14:51:21 Slot Id : <271> +14:51:21 Transaction Type : REQUEST +14:51:21 Received From : +14:51:21 ============================================================================ +14:51:21 FNo. Len. Field Value +14:51:21 ============================================================================ +14:51:21 [ 1] [ 4] [0800] +14:51:21 [ 7] [ 10] [0320074912] +14:51:21 [ 11] [ 6] [056764] +14:51:21 [ 37] [ 12] [57914056764] +14:51:21 [ 70] [ 3] [301] +14:51:21 ============================================================================ +14:51:21 + + +waiting on router queue for slot.... +14:51:21 Sending to : +14:51:21 ============================================================================ +14:51:21 ============================================================================ +14:51:21 Slot Id : <271> +14:51:21 Transaction Type : RESPONSE +14:51:21 Received From : +14:51:21 ============================================================================ +14:51:21 FNo. Len. Field Value +14:51:21 ============================================================================ +14:51:21 [ 1] [ 4] [0810] +14:51:21 [ 7] [ 10] [0320074912] +14:51:21 [ 11] [ 6] [056764] +14:51:21 [ 37] [ 12] [579140567640] +14:51:21 [ 39] [ 2] [00] +14:51:21 [ 70] [ 3] [810] +14:51:21 ============================================================================ +14:51:21 Calculate Source COMM Id = 4 +14:51:21 ============================================================================ +14:51:21 + + +waiting on router queue for slot.... +14:51:22 ============================================================================ +14:51:22 Slot Id : <245> +14:51:22 Transaction Type : REQUEST +14:51:22 Received From : +14:51:22 ============================================================================ +14:51:22 FNo. Len. Field Value +14:51:22 ============================================================================ +14:51:22 [ 1] [ 4] [0800] +14:51:22 [ 2] [ 5] [02531] +14:51:22 [ 3] [ 6] [579148] +14:51:22 [ 7] [ 10] [0320075122] +14:51:22 [ 11] [ 6] [807274] +14:51:22 [ 15] [ 10] [0320075122] +14:51:22 [ 37] [ 11] [57914807274] +14:51:22 [ 70] [ 3] [001] +14:51:22 ============================================================================ +14:51:22 + + +waiting on router queue for slot.... +14:51:22 ============================================================================ +14:51:22 Slot Id : <245> +14:51:22 Transaction Type : RESPONSE +14:51:22 Received From : +14:51:22 ============================================================================ +14:51:22 FNo. Len. Field Value +14:51:22 ============================================================================ +14:51:22 [ 1] [ 4] [0810] +14:51:22 [ 7] [ 10] [0320075122] +14:51:22 [ 11] [ 6] [807274] +14:51:22 [ 15] [ 4] [0320] +14:51:22 [ 37] [ 12] [57914807274] +14:51:22 [ 39] [ 2] [00] +14:51:22 [ 70] [ 3] [001] +14:51:22 ============================================================================ +14:51:22 Sending to : +14:51:22 ============================================================================ +14:51:22 + + +waiting on router queue for slot.... +14:51:25 ============================================================================ +14:51:25 Slot Id : <236> +14:51:25 Transaction Type : REQUEST +14:51:25 Received From : +14:51:25 ============================================================================ +14:51:25 FNo. Len. Field Value +14:51:25 ============================================================================ +14:51:25 [ 1] [ 4] [0800] +14:51:25 [ 7] [ 10] [0320220314] +14:51:25 [ 11] [ 6] [150314] +14:51:25 [ 37] [ 12] [57915150314] +14:51:25 [ 70] [ 3] [301] +14:51:25 ============================================================================ +14:51:25 + + +waiting on router queue for slot.... +14:51:25 Sending to : +14:51:25 ============================================================================ +14:51:25 ============================================================================ +14:51:25 Slot Id : <236> +14:51:25 Transaction Type : RESPONSE +14:51:25 Received From : +14:51:25 ============================================================================ +14:51:25 FNo. Len. Field Value +14:51:25 ============================================================================ +14:51:25 [ 1] [ 4] [0810] +14:51:25 [ 7] [ 10] [0320220314] +14:51:25 [ 11] [ 6] [150314] +14:51:25 [ 37] [ 12] [579151503140] +14:51:25 [ 39] [ 2] [00] +14:51:25 [ 70] [ 3] [810] +14:51:25 ============================================================================ +14:51:25 Calculate Source COMM Id = 6 +14:51:25 ============================================================================ +14:51:25 + + +waiting on router queue for slot.... +14:51:27 ============================================================================ +14:51:27 Slot Id : <303> +14:51:27 Transaction Type : REQUEST +14:51:27 Received From : +14:51:27 ============================================================================ +14:51:27 FNo. Len. Field Value +14:51:27 ============================================================================ +14:51:27 [ 1] [ 4] [0200] +14:51:27 [ 2] [ 16] [6213548000240059] +14:51:27 [ 3] [ 6] [301000] +14:51:27 [ 4] [ 12] [000000000000] +14:51:27 [ 7] [ 10] [0320144918] +14:51:27 [ 11] [ 6] [949117] +14:51:27 [ 12] [ 6] [144918] +14:51:27 [ 13] [ 4] [0320] +14:51:27 [ 15] [ 4] [0320] +14:51:27 [ 18] [ 4] [6011] +14:51:27 [ 19] [ 3] [418] +14:51:27 [ 22] [ 3] [021] +14:51:27 [ 25] [ 2] [01] +14:51:27 [ 28] [ 9] [D00000000] +14:51:27 [ 32] [ 6] [668899] +14:51:27 [ 35] [ 32] [6213548000240059=180112014005110] +14:51:27 [ 37] [ 12] [507900502457] +14:51:27 [ 41] [ 8] [03011001] +14:51:27 [ 42] [ 15] [APT ] +14:51:27 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +14:51:27 [ 49] [ 3] [418] +14:51:27 [ 52] [ 16] [39B5BD9A5913715E] +14:51:27 ============================================================================ +14:51:27 + + +waiting on router queue for slot.... +14:51:27 Sending to : +14:51:27 ============================================================================ +14:51:27 Sending to : +14:51:27 ============================================================================ +14:51:28 ============================================================================ +14:51:28 Slot Id : <303> +14:51:28 Transaction Type : REQUEST +14:51:28 Received From : +14:51:28 ============================================================================ +14:51:28 FNo. Len. Field Value +14:51:28 ============================================================================ +14:51:28 [ 1] [ 4] [0200] +14:51:28 [ 2] [ 16] [6213548000240059] +14:51:28 [ 3] [ 6] [301000] +14:51:28 [ 4] [ 12] [000000000000] +14:51:28 [ 7] [ 10] [0320144918] +14:51:28 [ 11] [ 6] [949117] +14:51:28 [ 12] [ 6] [144918] +14:51:28 [ 13] [ 4] [0320] +14:51:28 [ 15] [ 4] [0320] +14:51:28 [ 18] [ 4] [6011] +14:51:28 [ 19] [ 3] [418] +14:51:28 [ 22] [ 3] [021] +14:51:28 [ 25] [ 2] [01] +14:51:28 [ 28] [ 9] [D00000000] +14:51:28 [ 32] [ 6] [668899] +14:51:28 [ 35] [ 32] [6213548000240059=180112014005110] +14:51:28 [ 37] [ 12] [507900502457] +14:51:28 [ 41] [ 8] [03011001] +14:51:28 [ 42] [ 15] [APT ] +14:51:28 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +14:51:28 [ 49] [ 3] [418] +14:51:28 [ 52] [ 16] [39B5BD9A5913715E] +14:51:28 ============================================================================ +14:51:28 + + +waiting on router queue for slot.... +14:51:28 Sending to : +14:51:28 ============================================================================ +14:51:28 ============================================================================ +14:51:28 Slot Id : <303> +14:51:28 Transaction Type : REQUEST +14:51:28 Received From : +14:51:28 ============================================================================ +14:51:28 FNo. Len. Field Value +14:51:28 ============================================================================ +14:51:28 [ 1] [ 4] [0200] +14:51:28 [ 2] [ 16] [6213548000240059] +14:51:28 [ 3] [ 6] [301000] +14:51:28 [ 4] [ 12] [000000000000] +14:51:28 [ 7] [ 10] [0320144918] +14:51:28 [ 11] [ 6] [949117] +14:51:28 [ 12] [ 6] [144918] +14:51:28 [ 13] [ 4] [0320] +14:51:28 [ 15] [ 4] [0320] +14:51:28 [ 18] [ 4] [6011] +14:51:28 [ 19] [ 3] [418] +14:51:28 [ 22] [ 3] [021] +14:51:28 [ 25] [ 2] [01] +14:51:28 [ 28] [ 9] [D00000000] +14:51:28 [ 32] [ 6] [668899] +14:51:28 [ 35] [ 32] [6213548000240059=180112014005110] +14:51:28 [ 37] [ 12] [507900502457] +14:51:28 [ 41] [ 8] [03011001] +14:51:28 [ 42] [ 15] [APT ] +14:51:28 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +14:51:28 [ 49] [ 3] [418] +14:51:28 [ 52] [ 16] [05BD99737DAF28F7] +14:51:28 ============================================================================ +14:51:28 + + +waiting on router queue for slot.... +14:51:28 Sending to : <0> +14:51:28 ============================================================================ +14:51:28 ============================================================================ +14:51:28 Slot Id : <303> +14:51:28 Transaction Type : RESPONSE +14:51:28 Received From : +14:51:28 ============================================================================ +14:51:28 FNo. Len. Field Value +14:51:28 ============================================================================ +14:51:28 [ 1] [ 4] [0210] +14:51:28 [ 2] [ 16] [6213548000240059] +14:51:28 [ 3] [ 6] [301000] +14:51:28 [ 4] [ 12] [000000000000] +14:51:28 [ 7] [ 10] [0320144918] +14:51:28 [ 11] [ 6] [949117] +14:51:28 [ 12] [ 6] [144918] +14:51:28 [ 13] [ 4] [0320] +14:51:28 [ 15] [ 4] [0320] +14:51:28 [ 18] [ 4] [6011] +14:51:28 [ 19] [ 3] [418] +14:51:28 [ 32] [ 6] [668899] +14:51:28 [ 35] [ 32] [6213548000240059=180112014005110] +14:51:28 [ 37] [ 12] [507900502457] +14:51:28 [ 38] [ 6] [387372] +14:51:28 [ 39] [ 2] [00] +14:51:28 [ 41] [ 8] [03011001] +14:51:28 [ 49] [ 3] [418] +14:51:28 [ 54] [ 40] [1001418C0002621233451002418C000262123345] +14:51:28 ============================================================================ +14:51:28 Sending to : +14:51:28 ============================================================================ +14:51:28 + + +waiting on router queue for slot.... +14:51:29 ============================================================================ +14:51:29 Slot Id : <303> +14:51:29 Transaction Type : RESPONSE +14:51:29 Received From : +14:51:29 ============================================================================ +14:51:29 FNo. Len. Field Value +14:51:29 ============================================================================ +14:51:29 [ 1] [ 4] [0210] +14:51:29 [ 2] [ 16] [6213548000240059] +14:51:29 [ 3] [ 6] [301000] +14:51:29 [ 4] [ 12] [000000000000] +14:51:29 [ 7] [ 10] [0320144918] +14:51:29 [ 11] [ 6] [949117] +14:51:29 [ 12] [ 6] [144918] +14:51:29 [ 13] [ 4] [0320] +14:51:29 [ 15] [ 4] [0320] +14:51:29 [ 18] [ 4] [6011] +14:51:29 [ 19] [ 3] [418] +14:51:29 [ 32] [ 6] [668899] +14:51:29 [ 35] [ 32] [6213548000240059=180112014005110] +14:51:29 [ 37] [ 12] [507900502457] +14:51:29 [ 38] [ 6] [387372] +14:51:29 [ 39] [ 2] [00] +14:51:29 [ 41] [ 8] [03011001] +14:51:29 [ 49] [ 3] [418] +14:51:29 [ 54] [ 40] [1001418C0002621233451002418C000262123345] +14:51:29 ============================================================================ +14:51:29 Calculate Source COMM Id = 4 +14:51:29 ============================================================================ +14:51:29 + + +waiting on router queue for slot.... +14:51:30 ============================================================================ +14:51:30 Slot Id : <217> +14:51:30 Transaction Type : REQUEST +14:51:30 Received From : +14:51:30 ============================================================================ +14:51:30 FNo. Len. Field Value +14:51:30 ============================================================================ +14:51:30 [ 1] [ 4] [0800] +14:51:30 [ 7] [ 10] [0320075037] +14:51:30 [ 11] [ 6] [156867] +14:51:30 [ 70] [ 3] [301] +14:51:30 ============================================================================ +14:51:30 + + +waiting on router queue for slot.... +14:51:30 Sending to : +14:51:30 ============================================================================ +14:51:30 ============================================================================ +14:51:30 Slot Id : <217> +14:51:30 Transaction Type : RESPONSE +14:51:30 Received From : +14:51:30 ============================================================================ +14:51:30 FNo. Len. Field Value +14:51:30 ============================================================================ +14:51:30 [ 1] [ 4] [0810] +14:51:30 [ 7] [ 10] [0320075037] +14:51:30 [ 11] [ 6] [156867] +14:51:30 [ 39] [ 2] [00] +14:51:30 [ 70] [ 3] [301] +14:51:30 ============================================================================ +14:51:30 Calculate Source COMM Id = 2 +14:51:30 ============================================================================ +14:51:30 + + +waiting on router queue for slot.... +14:51:30 ============================================================================ +14:51:30 Slot Id : <298> +14:51:30 Transaction Type : REQUEST +14:51:30 Received From : +14:51:30 ============================================================================ +14:51:30 FNo. Len. Field Value +14:51:30 ============================================================================ +14:51:30 [ 1] [ 4] [0200] +14:51:30 [ 2] [ 16] [6688990100966306] +14:51:30 [ 3] [ 6] [301000] +14:51:30 [ 4] [ 12] [000000000000] +14:51:30 [ 7] [ 10] [0320145126] +14:51:30 [ 11] [ 6] [775569] +14:51:30 [ 12] [ 6] [145126] +14:51:30 [ 13] [ 4] [0320] +14:51:30 [ 15] [ 4] [0320] +14:51:30 [ 18] [ 4] [6011] +14:51:30 [ 22] [ 3] [900] +14:51:30 [ 25] [ 2] [02] +14:51:30 [ 28] [ 9] [D00000000] +14:51:30 [ 32] [ 6] [621354] +14:51:30 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:51:30 [ 37] [ 12] [507904719692] +14:51:30 [ 41] [ 8] [18001000] +14:51:30 [ 42] [ 15] [NATIVE ] +14:51:30 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:51:30 [ 49] [ 3] [418] +14:51:30 [ 52] [ 16] [7B2CD2386E538D89] +14:51:30 ============================================================================ +14:51:30 + + +waiting on router queue for slot.... +14:51:30 Sending to : +14:51:30 ============================================================================ +14:51:30 Sending to : +14:51:30 ============================================================================ +14:51:31 ============================================================================ +14:51:31 Slot Id : <298> +14:51:31 Transaction Type : REQUEST +14:51:31 Received From : +14:51:31 ============================================================================ +14:51:31 FNo. Len. Field Value +14:51:31 ============================================================================ +14:51:31 [ 1] [ 4] [0200] +14:51:31 [ 2] [ 16] [6688990100966306] +14:51:31 [ 3] [ 6] [301000] +14:51:31 [ 4] [ 12] [000000000000] +14:51:31 [ 7] [ 10] [0320145126] +14:51:31 [ 11] [ 6] [775569] +14:51:31 [ 12] [ 6] [145126] +14:51:31 [ 13] [ 4] [0320] +14:51:31 [ 15] [ 4] [0320] +14:51:31 [ 18] [ 4] [6011] +14:51:31 [ 22] [ 3] [900] +14:51:31 [ 25] [ 2] [02] +14:51:31 [ 28] [ 9] [D00000000] +14:51:31 [ 32] [ 6] [621354] +14:51:31 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:51:31 [ 37] [ 12] [507904719692] +14:51:31 [ 41] [ 8] [18001000] +14:51:31 [ 42] [ 15] [NATIVE ] +14:51:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:51:31 [ 49] [ 3] [418] +14:51:31 [ 52] [ 16] [7B2CD2386E538D89] +14:51:31 ============================================================================ +14:51:31 + + +waiting on router queue for slot.... +14:51:31 Sending to : +14:51:31 ============================================================================ +14:51:31 ============================================================================ +14:51:31 Slot Id : <298> +14:51:31 Transaction Type : REQUEST +14:51:31 Received From : +14:51:31 ============================================================================ +14:51:31 FNo. Len. Field Value +14:51:31 ============================================================================ +14:51:31 [ 1] [ 4] [0200] +14:51:31 [ 2] [ 16] [6688990100966306] +14:51:31 [ 3] [ 6] [301000] +14:51:31 [ 4] [ 12] [000000000000] +14:51:31 [ 7] [ 10] [0320145126] +14:51:31 [ 11] [ 6] [775569] +14:51:31 [ 12] [ 6] [145126] +14:51:31 [ 13] [ 4] [0320] +14:51:31 [ 15] [ 4] [0320] +14:51:31 [ 18] [ 4] [6011] +14:51:31 [ 22] [ 3] [900] +14:51:31 [ 25] [ 2] [02] +14:51:31 [ 28] [ 9] [D00000000] +14:51:31 [ 32] [ 6] [621354] +14:51:31 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:51:31 [ 37] [ 12] [507904719692] +14:51:31 [ 41] [ 8] [18001000] +14:51:31 [ 42] [ 15] [NATIVE ] +14:51:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:51:31 [ 49] [ 3] [418] +14:51:31 [ 52] [ 16] [5E6AE48118060C4F] +14:51:31 ============================================================================ +14:51:31 + + +waiting on router queue for slot.... +14:51:31 Sending to : <4> +14:51:31 ============================================================================ +14:51:32 ============================================================================ +14:51:32 Slot Id : <298> +14:51:32 Transaction Type : RESPONSE +14:51:32 Received From : +14:51:32 ============================================================================ +14:51:32 FNo. Len. Field Value +14:51:32 ============================================================================ +14:51:32 [ 1] [ 4] [0210] +14:51:32 [ 2] [ 16] [6688990100966306] +14:51:32 [ 3] [ 6] [301000] +14:51:32 [ 4] [ 12] [000000000000] +14:51:32 [ 11] [ 6] [775569] +14:51:32 [ 12] [ 6] [145126] +14:51:32 [ 15] [ 4] [0320] +14:51:32 [ 18] [ 4] [6011] +14:51:32 [ 32] [ 6] [621354] +14:51:32 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:51:32 [ 37] [ 12] [507904719692] +14:51:32 [ 38] [ 6] [345251] +14:51:32 [ 39] [ 2] [00] +14:51:32 [ 41] [ 8] [18001000] +14:51:32 [ 49] [ 3] [418] +14:51:32 [ 54] [ 20] [1002418C000042470528] +14:51:32 ============================================================================ +14:51:32 Sending to : +14:51:32 ============================================================================ +14:51:32 + + +waiting on router queue for slot.... +14:51:33 ============================================================================ +14:51:33 Slot Id : <298> +14:51:33 Transaction Type : RESPONSE +14:51:33 Received From : +14:51:33 ============================================================================ +14:51:33 FNo. Len. Field Value +14:51:33 ============================================================================ +14:51:33 [ 1] [ 4] [0210] +14:51:33 [ 2] [ 16] [6688990100966306] +14:51:33 [ 3] [ 6] [301000] +14:51:33 [ 4] [ 12] [000000000000] +14:51:33 [ 11] [ 6] [775569] +14:51:33 [ 12] [ 6] [145126] +14:51:33 [ 15] [ 4] [0320] +14:51:33 [ 18] [ 4] [6011] +14:51:33 [ 32] [ 6] [621354] +14:51:33 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:51:33 [ 37] [ 12] [507904719692] +14:51:33 [ 38] [ 6] [345251] +14:51:33 [ 39] [ 2] [00] +14:51:33 [ 41] [ 8] [18001000] +14:51:33 [ 49] [ 3] [418] +14:51:33 [ 54] [ 20] [1002418C000042470528] +14:51:33 ============================================================================ +14:51:33 Calculate Source COMM Id = 0 +14:51:33 ============================================================================ +14:51:33 + + +waiting on router queue for slot.... +14:51:40 ============================================================================ +14:51:40 Slot Id : <293> +14:51:40 Transaction Type : REQUEST +14:51:40 Received From : +14:51:40 ============================================================================ +14:51:40 FNo. Len. Field Value +14:51:40 ============================================================================ +14:51:40 [ 1] [ 4] [0800] +14:51:40 [ 7] [ 10] [0320075047] +14:51:40 [ 11] [ 6] [156868] +14:51:40 [ 70] [ 3] [301] +14:51:40 ============================================================================ +14:51:40 + + +waiting on router queue for slot.... +14:51:40 Sending to : +14:51:40 ============================================================================ +14:51:40 ============================================================================ +14:51:40 Slot Id : <293> +14:51:40 Transaction Type : RESPONSE +14:51:40 Received From : +14:51:40 ============================================================================ +14:51:40 FNo. Len. Field Value +14:51:40 ============================================================================ +14:51:40 [ 1] [ 4] [0810] +14:51:40 [ 7] [ 10] [0320075047] +14:51:40 [ 11] [ 6] [156868] +14:51:40 [ 39] [ 2] [00] +14:51:40 [ 70] [ 3] [301] +14:51:40 ============================================================================ +14:51:40 Calculate Source COMM Id = 2 +14:51:40 ============================================================================ +14:51:40 + + +waiting on router queue for slot.... +14:51:47 ============================================================================ +14:51:47 Slot Id : <299> +14:51:47 Transaction Type : REQUEST +14:51:47 Received From : +14:51:47 ============================================================================ +14:51:47 FNo. Len. Field Value +14:51:47 ============================================================================ +14:51:47 [ 1] [ 4] [0200] +14:51:47 [ 2] [ 16] [6688990040082719] +14:51:47 [ 3] [ 6] [010000] +14:51:47 [ 4] [ 12] [000080000000] +14:51:47 [ 7] [ 10] [0320145142] +14:51:47 [ 11] [ 6] [775642] +14:51:47 [ 12] [ 6] [145142] +14:51:47 [ 13] [ 4] [0320] +14:51:47 [ 15] [ 4] [0320] +14:51:47 [ 18] [ 4] [6011] +14:51:47 [ 22] [ 3] [900] +14:51:47 [ 25] [ 2] [02] +14:51:47 [ 28] [ 9] [D00002000] +14:51:47 [ 32] [ 6] [621354] +14:51:47 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:51:47 [ 37] [ 12] [507904381155] +14:51:47 [ 41] [ 8] [03003700] +14:51:47 [ 42] [ 15] [NATIVE ] +14:51:47 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +14:51:47 [ 49] [ 3] [418] +14:51:47 [ 52] [ 16] [D28D8675129D3A36] +14:51:47 ============================================================================ +14:51:47 + + +waiting on router queue for slot.... +14:51:47 Sending to : +14:51:47 ============================================================================ +14:51:47 Sending to : +14:51:47 ============================================================================ +14:51:47 ============================================================================ +14:51:47 Slot Id : <299> +14:51:47 Transaction Type : REQUEST +14:51:47 Received From : +14:51:47 ============================================================================ +14:51:47 FNo. Len. Field Value +14:51:47 ============================================================================ +14:51:47 [ 1] [ 4] [0200] +14:51:47 [ 2] [ 16] [6688990040082719] +14:51:47 [ 3] [ 6] [010000] +14:51:47 [ 4] [ 12] [000080000000] +14:51:47 [ 7] [ 10] [0320145142] +14:51:47 [ 11] [ 6] [775642] +14:51:47 [ 12] [ 6] [145142] +14:51:47 [ 13] [ 4] [0320] +14:51:47 [ 15] [ 4] [0320] +14:51:47 [ 18] [ 4] [6011] +14:51:47 [ 22] [ 3] [900] +14:51:47 [ 25] [ 2] [02] +14:51:47 [ 28] [ 9] [D00002000] +14:51:47 [ 32] [ 6] [621354] +14:51:47 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:51:47 [ 37] [ 12] [507904381155] +14:51:47 [ 41] [ 8] [03003700] +14:51:47 [ 42] [ 15] [NATIVE ] +14:51:47 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +14:51:47 [ 49] [ 3] [418] +14:51:47 [ 52] [ 16] [D28D8675129D3A36] +14:51:47 ============================================================================ +14:51:47 + + +waiting on router queue for slot.... +14:51:47 Sending to : +14:51:47 ============================================================================ +14:51:47 ============================================================================ +14:51:47 Slot Id : <299> +14:51:47 Transaction Type : REQUEST +14:51:47 Received From : +14:51:47 ============================================================================ +14:51:47 FNo. Len. Field Value +14:51:47 ============================================================================ +14:51:47 [ 1] [ 4] [0200] +14:51:47 [ 2] [ 16] [6688990040082719] +14:51:47 [ 3] [ 6] [010000] +14:51:47 [ 4] [ 12] [000080000000] +14:51:47 [ 7] [ 10] [0320145142] +14:51:47 [ 11] [ 6] [775642] +14:51:47 [ 12] [ 6] [145142] +14:51:47 [ 13] [ 4] [0320] +14:51:47 [ 15] [ 4] [0320] +14:51:47 [ 18] [ 4] [6011] +14:51:47 [ 22] [ 3] [900] +14:51:47 [ 25] [ 2] [02] +14:51:47 [ 28] [ 9] [D00002000] +14:51:47 [ 32] [ 6] [621354] +14:51:47 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:51:47 [ 37] [ 12] [507904381155] +14:51:47 [ 41] [ 8] [03003700] +14:51:47 [ 42] [ 15] [NATIVE ] +14:51:47 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +14:51:47 [ 49] [ 3] [418] +14:51:47 [ 52] [ 16] [44D16A19BF409331] +14:51:47 ============================================================================ +14:51:47 + + +waiting on router queue for slot.... +14:51:47 Sending to : <4> +14:51:47 ============================================================================ +14:51:48 ============================================================================ +14:51:48 Slot Id : <299> +14:51:48 Transaction Type : RESPONSE +14:51:48 Received From : +14:51:48 ============================================================================ +14:51:48 FNo. Len. Field Value +14:51:48 ============================================================================ +14:51:48 [ 1] [ 4] [0210] +14:51:48 [ 2] [ 16] [6688990040082719] +14:51:48 [ 3] [ 6] [010000] +14:51:48 [ 4] [ 12] [000080000000] +14:51:48 [ 11] [ 6] [775642] +14:51:48 [ 12] [ 6] [145142] +14:51:48 [ 15] [ 4] [0320] +14:51:48 [ 18] [ 4] [6011] +14:51:48 [ 32] [ 6] [621354] +14:51:48 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:51:48 [ 37] [ 12] [507904381155] +14:51:48 [ 38] [ 6] [159943] +14:51:48 [ 39] [ 2] [00] +14:51:48 [ 41] [ 8] [03003700] +14:51:48 [ 49] [ 3] [418] +14:51:48 [ 54] [ 20] [0002764C000000324806] +14:51:48 ============================================================================ +14:51:48 Sending to : +14:51:48 ============================================================================ +14:51:48 + + +waiting on router queue for slot.... +14:51:50 ============================================================================ +14:51:50 Slot Id : <299> +14:51:50 Transaction Type : RESPONSE +14:51:50 Received From : +14:51:50 ============================================================================ +14:51:50 FNo. Len. Field Value +14:51:50 ============================================================================ +14:51:50 [ 1] [ 4] [0210] +14:51:50 [ 2] [ 16] [6688990040082719] +14:51:50 [ 3] [ 6] [010000] +14:51:50 [ 4] [ 12] [000080000000] +14:51:50 [ 11] [ 6] [775642] +14:51:50 [ 12] [ 6] [145142] +14:51:50 [ 15] [ 4] [0320] +14:51:50 [ 18] [ 4] [6011] +14:51:50 [ 32] [ 6] [621354] +14:51:50 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:51:50 [ 37] [ 12] [507904381155] +14:51:50 [ 38] [ 6] [159943] +14:51:50 [ 39] [ 2] [00] +14:51:50 [ 41] [ 8] [03003700] +14:51:50 [ 49] [ 3] [418] +14:51:50 [ 54] [ 20] [0002764C000000324806] +14:51:50 ============================================================================ +14:51:50 Calculate Source COMM Id = 0 +14:51:50 ============================================================================ +14:51:50 + + +waiting on router queue for slot.... +14:51:50 ============================================================================ +14:51:50 Slot Id : <257> +14:51:50 Transaction Type : REQUEST +14:51:50 Received From : +14:51:50 ============================================================================ +14:51:50 FNo. Len. Field Value +14:51:50 ============================================================================ +14:51:50 [ 1] [ 4] [0800] +14:51:50 [ 7] [ 10] [0320075058] +14:51:50 [ 11] [ 6] [156869] +14:51:50 [ 70] [ 3] [301] +14:51:50 ============================================================================ +14:51:50 + + +waiting on router queue for slot.... +14:51:50 Sending to : +14:51:50 ============================================================================ +14:51:50 ============================================================================ +14:51:50 Slot Id : <257> +14:51:50 Transaction Type : RESPONSE +14:51:50 Received From : +14:51:50 ============================================================================ +14:51:50 FNo. Len. Field Value +14:51:50 ============================================================================ +14:51:50 [ 1] [ 4] [0810] +14:51:50 [ 7] [ 10] [0320075058] +14:51:50 [ 11] [ 6] [156869] +14:51:50 [ 39] [ 2] [00] +14:51:50 [ 70] [ 3] [301] +14:51:50 ============================================================================ +14:51:50 Calculate Source COMM Id = 2 +14:51:50 ============================================================================ +14:51:50 + + +waiting on router queue for slot.... +14:51:59 ============================================================================ +14:51:59 Slot Id : <278> +14:51:59 Transaction Type : REQUEST +14:51:59 Received From : +14:51:59 ============================================================================ +14:51:59 FNo. Len. Field Value +14:51:59 ============================================================================ +14:51:59 [ 1] [ 4] [0200] +14:51:59 [ 2] [ 16] [6213545000483754] +14:51:59 [ 3] [ 6] [010000] +14:51:59 [ 4] [ 12] [000030000000] +14:51:59 [ 7] [ 10] [0320144949] +14:51:59 [ 11] [ 6] [949126] +14:51:59 [ 12] [ 6] [144949] +14:51:59 [ 13] [ 4] [0320] +14:51:59 [ 15] [ 4] [0320] +14:51:59 [ 18] [ 4] [6011] +14:51:59 [ 19] [ 3] [418] +14:51:59 [ 22] [ 3] [021] +14:51:59 [ 25] [ 2] [01] +14:51:59 [ 28] [ 9] [D00002000] +14:51:59 [ 32] [ 6] [668899] +14:51:59 [ 35] [ 32] [6213545000483754=491212018375705] +14:51:59 [ 37] [ 12] [507902151054] +14:51:59 [ 41] [ 8] [03020025] +14:51:59 [ 42] [ 15] [APT ] +14:51:59 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +14:51:59 [ 49] [ 3] [418] +14:51:59 [ 52] [ 16] [4C022B9BCAA76CBE] +14:51:59 ============================================================================ +14:51:59 + + +waiting on router queue for slot.... +14:51:59 Sending to : +14:51:59 ============================================================================ +14:51:59 Sending to : +14:51:59 ============================================================================ +14:51:59 ============================================================================ +14:51:59 Slot Id : <281> +14:51:59 Transaction Type : REQUEST +14:51:59 Received From : +14:51:59 ============================================================================ +14:51:59 FNo. Len. Field Value +14:51:59 ============================================================================ +14:51:59 [ 1] [ 4] [0200] +14:51:59 [ 2] [ 16] [6213545001040652] +14:51:59 [ 3] [ 6] [011000] +14:51:59 [ 4] [ 12] [000050000000] +14:51:59 [ 7] [ 10] [0320145219] +14:51:59 [ 11] [ 6] [207521] +14:51:59 [ 12] [ 6] [151332] +14:51:59 [ 13] [ 4] [0320] +14:51:59 [ 14] [ 4] [4912] +14:51:59 [ 15] [ 4] [0320] +14:51:59 [ 18] [ 4] [6011] +14:51:59 [ 19] [ 3] [418] +14:51:59 [ 22] [ 3] [021] +14:51:59 [ 25] [ 2] [01] +14:51:59 [ 28] [ 9] [D00002000] +14:51:59 [ 32] [ 6] [198901] +14:51:59 [ 35] [ 32] [6213545001040652=491212014065360] +14:51:59 [ 37] [ 12] [507914207521] +14:51:59 [ 41] [ 8] [01529020] +14:51:59 [ 42] [ 15] [000000041529020] +14:51:59 [ 43] [ 40] [JDB ATM DIAMOND CUTTIN VN ] +14:51:59 [ 49] [ 3] [418] +14:51:59 [ 52] [ 16] [925E51CDB1202527] +14:51:59 ============================================================================ +14:51:59 + + +waiting on router queue for slot.... +14:51:59 Sending to : +14:51:59 ============================================================================ +14:51:59 Sending to : +14:51:59 ============================================================================ +14:51:59 ============================================================================ +14:51:59 Slot Id : <278> +14:51:59 Transaction Type : REQUEST +14:51:59 Received From : +14:51:59 ============================================================================ +14:51:59 FNo. Len. Field Value +14:51:59 ============================================================================ +14:51:59 [ 1] [ 4] [0200] +14:51:59 [ 2] [ 16] [6213545000483754] +14:51:59 [ 3] [ 6] [010000] +14:51:59 [ 4] [ 12] [000030000000] +14:51:59 [ 7] [ 10] [0320144949] +14:51:59 [ 11] [ 6] [949126] +14:51:59 [ 12] [ 6] [144949] +14:51:59 [ 13] [ 4] [0320] +14:51:59 [ 15] [ 4] [0320] +14:51:59 [ 18] [ 4] [6011] +14:51:59 [ 19] [ 3] [418] +14:51:59 [ 22] [ 3] [021] +14:51:59 [ 25] [ 2] [01] +14:51:59 [ 28] [ 9] [D00002000] +14:51:59 [ 32] [ 6] [668899] +14:51:59 [ 35] [ 32] [6213545000483754=491212018375705] +14:51:59 [ 37] [ 12] [507902151054] +14:51:59 [ 41] [ 8] [03020025] +14:51:59 [ 42] [ 15] [APT ] +14:51:59 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +14:51:59 [ 49] [ 3] [418] +14:51:59 [ 52] [ 16] [4C022B9BCAA76CBE] +14:51:59 ============================================================================ +14:51:59 + + +waiting on router queue for slot.... +14:51:59 Sending to : +14:51:59 ============================================================================ +14:51:59 ============================================================================ +14:51:59 Slot Id : <278> +14:51:59 Transaction Type : REQUEST +14:51:59 Received From : +14:51:59 ============================================================================ +14:51:59 FNo. Len. Field Value +14:51:59 ============================================================================ +14:51:59 [ 1] [ 4] [0200] +14:51:59 [ 2] [ 16] [6213545000483754] +14:51:59 [ 3] [ 6] [010000] +14:51:59 [ 4] [ 12] [000030000000] +14:51:59 [ 7] [ 10] [0320144949] +14:51:59 [ 11] [ 6] [949126] +14:51:59 [ 12] [ 6] [144949] +14:51:59 [ 13] [ 4] [0320] +14:51:59 [ 15] [ 4] [0320] +14:51:59 [ 18] [ 4] [6011] +14:51:59 [ 19] [ 3] [418] +14:51:59 [ 22] [ 3] [021] +14:51:59 [ 25] [ 2] [01] +14:51:59 [ 28] [ 9] [D00002000] +14:51:59 [ 32] [ 6] [668899] +14:51:59 [ 35] [ 32] [6213545000483754=491212018375705] +14:51:59 [ 37] [ 12] [507902151054] +14:51:59 [ 41] [ 8] [03020025] +14:51:59 [ 42] [ 15] [APT ] +14:51:59 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +14:51:59 [ 49] [ 3] [418] +14:51:59 [ 52] [ 16] [E38DCFEDFB97884E] +14:51:59 ============================================================================ +14:51:59 + + +waiting on router queue for slot.... +14:51:59 Sending to : <0> +14:51:59 ============================================================================ +14:51:59 ============================================================================ +14:51:59 Slot Id : <281> +14:51:59 Transaction Type : REQUEST +14:51:59 Received From : +14:51:59 ============================================================================ +14:51:59 FNo. Len. Field Value +14:51:59 ============================================================================ +14:51:59 [ 1] [ 4] [0200] +14:51:59 [ 2] [ 16] [6213545001040652] +14:51:59 [ 3] [ 6] [011000] +14:51:59 [ 4] [ 12] [000050000000] +14:51:59 [ 7] [ 10] [0320145219] +14:51:59 [ 11] [ 6] [207521] +14:51:59 [ 12] [ 6] [151332] +14:51:59 [ 13] [ 4] [0320] +14:51:59 [ 14] [ 4] [4912] +14:51:59 [ 15] [ 4] [0320] +14:51:59 [ 18] [ 4] [6011] +14:51:59 [ 19] [ 3] [418] +14:51:59 [ 22] [ 3] [021] +14:51:59 [ 25] [ 2] [01] +14:51:59 [ 28] [ 9] [D00002000] +14:51:59 [ 32] [ 6] [198901] +14:51:59 [ 35] [ 32] [6213545001040652=491212014065360] +14:51:59 [ 37] [ 12] [507914207521] +14:51:59 [ 41] [ 8] [01529020] +14:51:59 [ 42] [ 15] [000000041529020] +14:51:59 [ 43] [ 40] [JDB ATM DIAMOND CUTTIN VN ] +14:51:59 [ 49] [ 3] [418] +14:51:59 [ 52] [ 16] [925E51CDB1202527] +14:51:59 ============================================================================ +14:51:59 + + +waiting on router queue for slot.... +14:51:59 Sending to : +14:51:59 ============================================================================ +14:51:59 ============================================================================ +14:51:59 Slot Id : <281> +14:51:59 Transaction Type : REQUEST +14:51:59 Received From : +14:51:59 ============================================================================ +14:51:59 FNo. Len. Field Value +14:51:59 ============================================================================ +14:51:59 [ 1] [ 4] [0200] +14:51:59 [ 2] [ 16] [6213545001040652] +14:51:59 [ 3] [ 6] [011000] +14:51:59 [ 4] [ 12] [000050000000] +14:51:59 [ 7] [ 10] [0320145219] +14:51:59 [ 11] [ 6] [207521] +14:51:59 [ 12] [ 6] [151332] +14:51:59 [ 13] [ 4] [0320] +14:51:59 [ 14] [ 4] [4912] +14:51:59 [ 15] [ 4] [0320] +14:51:59 [ 18] [ 4] [6011] +14:51:59 [ 19] [ 3] [418] +14:51:59 [ 22] [ 3] [021] +14:51:59 [ 25] [ 2] [01] +14:51:59 [ 28] [ 9] [D00002000] +14:51:59 [ 32] [ 6] [198901] +14:51:59 [ 35] [ 32] [6213545001040652=491212014065360] +14:51:59 [ 37] [ 12] [507914207521] +14:51:59 [ 41] [ 8] [01529020] +14:51:59 [ 42] [ 15] [000000041529020] +14:51:59 [ 43] [ 40] [JDB ATM DIAMOND CUTTIN VN ] +14:51:59 [ 49] [ 3] [418] +14:51:59 [ 52] [ 16] [4530E7D1C5D03DE2] +14:51:59 ============================================================================ +14:51:59 + + +waiting on router queue for slot.... +14:51:59 Sending to : <0> +14:51:59 ============================================================================ +14:52:00 ============================================================================ +14:52:00 Slot Id : <278> +14:52:00 Transaction Type : RESPONSE +14:52:00 Received From : +14:52:00 ============================================================================ +14:52:00 FNo. Len. Field Value +14:52:00 ============================================================================ +14:52:00 [ 1] [ 4] [0210] +14:52:00 [ 2] [ 16] [6213545000483754] +14:52:00 [ 3] [ 6] [010000] +14:52:00 [ 4] [ 12] [000030000000] +14:52:00 [ 7] [ 10] [0320144949] +14:52:00 [ 11] [ 6] [949126] +14:52:00 [ 12] [ 6] [144949] +14:52:00 [ 13] [ 4] [0320] +14:52:00 [ 15] [ 4] [0320] +14:52:00 [ 18] [ 4] [6011] +14:52:00 [ 19] [ 3] [418] +14:52:00 [ 32] [ 6] [668899] +14:52:00 [ 35] [ 32] [6213545000483754=491212018375705] +14:52:00 [ 37] [ 12] [507902151054] +14:52:00 [ 38] [ 6] [815831] +14:52:00 [ 39] [ 2] [00] +14:52:00 [ 41] [ 8] [03020025] +14:52:00 [ 49] [ 3] [418] +14:52:00 [ 54] [ 40] [0001418C0004350336020002418C000435033602] +14:52:00 ============================================================================ +14:52:00 Sending to : +14:52:00 ============================================================================ +14:52:00 + + +waiting on router queue for slot.... +14:52:00 ============================================================================ +14:52:00 Slot Id : <281> +14:52:00 Transaction Type : RESPONSE +14:52:00 Received From : +14:52:00 ============================================================================ +14:52:00 FNo. Len. Field Value +14:52:00 ============================================================================ +14:52:00 [ 1] [ 4] [0210] +14:52:00 [ 2] [ 16] [6213545001040652] +14:52:00 [ 3] [ 6] [011000] +14:52:00 [ 4] [ 12] [000050000000] +14:52:00 [ 7] [ 10] [0320145219] +14:52:00 [ 11] [ 6] [207521] +14:52:00 [ 12] [ 6] [151332] +14:52:00 [ 13] [ 4] [0320] +14:52:00 [ 15] [ 4] [0320] +14:52:00 [ 18] [ 4] [6011] +14:52:00 [ 19] [ 3] [418] +14:52:00 [ 32] [ 6] [198901] +14:52:00 [ 35] [ 32] [6213545001040652=491212014065360] +14:52:00 [ 37] [ 12] [507914207521] +14:52:00 [ 38] [ 6] [930712] +14:52:00 [ 39] [ 2] [00] +14:52:00 [ 41] [ 8] [01529020] +14:52:00 [ 49] [ 3] [418] +14:52:00 [ 54] [ 40] [1001418C0000942323911002418C000094232391] +14:52:00 ============================================================================ +14:52:00 Sending to : +14:52:00 ============================================================================ +14:52:00 + + +waiting on router queue for slot.... +14:52:01 ============================================================================ +14:52:01 Slot Id : <278> +14:52:01 Transaction Type : RESPONSE +14:52:01 Received From : +14:52:01 ============================================================================ +14:52:01 FNo. Len. Field Value +14:52:01 ============================================================================ +14:52:01 [ 1] [ 4] [0210] +14:52:01 [ 2] [ 16] [6213545000483754] +14:52:01 [ 3] [ 6] [010000] +14:52:01 [ 4] [ 12] [000030000000] +14:52:01 [ 7] [ 10] [0320144949] +14:52:01 [ 11] [ 6] [949126] +14:52:01 [ 12] [ 6] [144949] +14:52:01 [ 13] [ 4] [0320] +14:52:01 [ 15] [ 4] [0320] +14:52:01 [ 18] [ 4] [6011] +14:52:01 [ 19] [ 3] [418] +14:52:01 [ 32] [ 6] [668899] +14:52:01 [ 35] [ 32] [6213545000483754=491212018375705] +14:52:01 [ 37] [ 12] [507902151054] +14:52:01 [ 38] [ 6] [815831] +14:52:01 [ 39] [ 2] [00] +14:52:01 [ 41] [ 8] [03020025] +14:52:01 [ 49] [ 3] [418] +14:52:01 [ 54] [ 40] [0001418C0004350336020002418C000435033602] +14:52:01 ============================================================================ +14:52:01 Calculate Source COMM Id = 4 +14:52:01 ============================================================================ +14:52:01 + + +waiting on router queue for slot.... +14:52:02 ============================================================================ +14:52:02 Slot Id : <281> +14:52:02 Transaction Type : RESPONSE +14:52:02 Received From : +14:52:02 ============================================================================ +14:52:02 FNo. Len. Field Value +14:52:02 ============================================================================ +14:52:02 [ 1] [ 4] [0210] +14:52:02 [ 2] [ 16] [6213545001040652] +14:52:02 [ 3] [ 6] [011000] +14:52:02 [ 4] [ 12] [000050000000] +14:52:02 [ 7] [ 10] [0320145219] +14:52:02 [ 11] [ 6] [207521] +14:52:02 [ 12] [ 6] [151332] +14:52:02 [ 13] [ 4] [0320] +14:52:02 [ 15] [ 4] [0320] +14:52:02 [ 18] [ 4] [6011] +14:52:02 [ 19] [ 3] [418] +14:52:02 [ 32] [ 6] [198901] +14:52:02 [ 35] [ 32] [6213545001040652=491212014065360] +14:52:02 [ 37] [ 12] [507914207521] +14:52:02 [ 38] [ 6] [930712] +14:52:02 [ 39] [ 2] [00] +14:52:02 [ 41] [ 8] [01529020] +14:52:02 [ 49] [ 3] [418] +14:52:02 [ 54] [ 40] [1001418C0000942323911002418C000094232391] +14:52:02 ============================================================================ +14:52:02 Calculate Source COMM Id = 5 +14:52:02 ============================================================================ +14:52:02 + + +waiting on router queue for slot.... +14:52:05 ============================================================================ +14:52:05 Slot Id : <300> +14:52:05 Transaction Type : REQUEST +14:52:05 Received From : +14:52:05 ============================================================================ +14:52:05 FNo. Len. Field Value +14:52:05 ============================================================================ +14:52:05 [ 1] [ 4] [0800] +14:52:05 [ 7] [ 10] [0320075113] +14:52:05 [ 11] [ 6] [156870] +14:52:05 [ 70] [ 3] [301] +14:52:05 ============================================================================ +14:52:05 + + +waiting on router queue for slot.... +14:52:05 Sending to : +14:52:05 ============================================================================ +14:52:05 ============================================================================ +14:52:05 Slot Id : <300> +14:52:05 Transaction Type : RESPONSE +14:52:05 Received From : +14:52:05 ============================================================================ +14:52:05 FNo. Len. Field Value +14:52:05 ============================================================================ +14:52:05 [ 1] [ 4] [0810] +14:52:05 [ 7] [ 10] [0320075113] +14:52:05 [ 11] [ 6] [156870] +14:52:05 [ 39] [ 2] [00] +14:52:05 [ 70] [ 3] [301] +14:52:05 ============================================================================ +14:52:05 Calculate Source COMM Id = 2 +14:52:05 ============================================================================ +14:52:05 + + +waiting on router queue for slot.... +14:52:11 ============================================================================ +14:52:11 Slot Id : <295> +14:52:11 Transaction Type : REQUEST +14:52:11 Received From : +14:52:11 ============================================================================ +14:52:11 FNo. Len. Field Value +14:52:11 ============================================================================ +14:52:11 [ 1] [ 4] [0200] +14:52:11 [ 2] [ 16] [6688990103743801] +14:52:11 [ 3] [ 6] [010000] +14:52:11 [ 4] [ 12] [000100000000] +14:52:11 [ 7] [ 10] [0320145206] +14:52:11 [ 11] [ 6] [775734] +14:52:11 [ 12] [ 6] [145206] +14:52:11 [ 13] [ 4] [0320] +14:52:11 [ 15] [ 4] [0320] +14:52:11 [ 18] [ 4] [6011] +14:52:11 [ 22] [ 3] [900] +14:52:11 [ 25] [ 2] [02] +14:52:11 [ 28] [ 9] [D00002000] +14:52:11 [ 32] [ 6] [621354] +14:52:11 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:52:11 [ 37] [ 12] [507903344977] +14:52:11 [ 41] [ 8] [13001400] +14:52:11 [ 42] [ 15] [NATIVE ] +14:52:11 [ 43] [ 40] [Kham Unit Kham LAO] +14:52:11 [ 49] [ 3] [418] +14:52:11 [ 52] [ 16] [DC473392EDA7F48C] +14:52:11 ============================================================================ +14:52:11 + + +waiting on router queue for slot.... +14:52:11 Sending to : +14:52:11 ============================================================================ +14:52:11 Sending to : +14:52:11 ============================================================================ +14:52:11 ============================================================================ +14:52:11 Slot Id : <295> +14:52:11 Transaction Type : REQUEST +14:52:11 Received From : +14:52:11 ============================================================================ +14:52:11 FNo. Len. Field Value +14:52:11 ============================================================================ +14:52:11 [ 1] [ 4] [0200] +14:52:11 [ 2] [ 16] [6688990103743801] +14:52:11 [ 3] [ 6] [010000] +14:52:11 [ 4] [ 12] [000100000000] +14:52:11 [ 7] [ 10] [0320145206] +14:52:11 [ 11] [ 6] [775734] +14:52:11 [ 12] [ 6] [145206] +14:52:11 [ 13] [ 4] [0320] +14:52:11 [ 15] [ 4] [0320] +14:52:11 [ 18] [ 4] [6011] +14:52:11 [ 22] [ 3] [900] +14:52:11 [ 25] [ 2] [02] +14:52:11 [ 28] [ 9] [D00002000] +14:52:11 [ 32] [ 6] [621354] +14:52:11 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:52:11 [ 37] [ 12] [507903344977] +14:52:11 [ 41] [ 8] [13001400] +14:52:11 [ 42] [ 15] [NATIVE ] +14:52:11 [ 43] [ 40] [Kham Unit Kham LAO] +14:52:11 [ 49] [ 3] [418] +14:52:11 [ 52] [ 16] [DC473392EDA7F48C] +14:52:11 ============================================================================ +14:52:11 + + +waiting on router queue for slot.... +14:52:11 Sending to : +14:52:11 ============================================================================ +14:52:11 ============================================================================ +14:52:11 Slot Id : <295> +14:52:11 Transaction Type : REQUEST +14:52:11 Received From : +14:52:11 ============================================================================ +14:52:11 FNo. Len. Field Value +14:52:11 ============================================================================ +14:52:11 [ 1] [ 4] [0200] +14:52:11 [ 2] [ 16] [6688990103743801] +14:52:11 [ 3] [ 6] [010000] +14:52:11 [ 4] [ 12] [000100000000] +14:52:11 [ 7] [ 10] [0320145206] +14:52:11 [ 11] [ 6] [775734] +14:52:11 [ 12] [ 6] [145206] +14:52:11 [ 13] [ 4] [0320] +14:52:11 [ 15] [ 4] [0320] +14:52:11 [ 18] [ 4] [6011] +14:52:11 [ 22] [ 3] [900] +14:52:11 [ 25] [ 2] [02] +14:52:11 [ 28] [ 9] [D00002000] +14:52:11 [ 32] [ 6] [621354] +14:52:11 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:52:11 [ 37] [ 12] [507903344977] +14:52:11 [ 41] [ 8] [13001400] +14:52:11 [ 42] [ 15] [NATIVE ] +14:52:11 [ 43] [ 40] [Kham Unit Kham LAO] +14:52:11 [ 49] [ 3] [418] +14:52:11 [ 52] [ 16] [B22DE698A99EA8B3] +14:52:11 ============================================================================ +14:52:11 + + +waiting on router queue for slot.... +14:52:11 Sending to : <4> +14:52:11 ============================================================================ +14:52:12 ============================================================================ +14:52:12 Slot Id : <295> +14:52:12 Transaction Type : RESPONSE +14:52:12 Received From : +14:52:12 ============================================================================ +14:52:12 FNo. Len. Field Value +14:52:12 ============================================================================ +14:52:12 [ 1] [ 4] [0210] +14:52:12 [ 2] [ 16] [6688990103743801] +14:52:12 [ 3] [ 6] [010000] +14:52:12 [ 4] [ 12] [000100000000] +14:52:12 [ 11] [ 6] [775734] +14:52:12 [ 12] [ 6] [145206] +14:52:12 [ 15] [ 4] [0320] +14:52:12 [ 18] [ 4] [6011] +14:52:12 [ 32] [ 6] [621354] +14:52:12 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:52:12 [ 37] [ 12] [507903344977] +14:52:12 [ 38] [ 6] [841677] +14:52:12 [ 39] [ 2] [00] +14:52:12 [ 41] [ 8] [13001400] +14:52:12 [ 49] [ 3] [418] +14:52:12 [ 54] [ 20] [0002418C001079750153] +14:52:12 ============================================================================ +14:52:12 Sending to : +14:52:12 ============================================================================ +14:52:12 + + +waiting on router queue for slot.... +14:52:14 ============================================================================ +14:52:14 Slot Id : <295> +14:52:14 Transaction Type : RESPONSE +14:52:14 Received From : +14:52:14 ============================================================================ +14:52:14 FNo. Len. Field Value +14:52:14 ============================================================================ +14:52:14 [ 1] [ 4] [0210] +14:52:14 [ 2] [ 16] [6688990103743801] +14:52:14 [ 3] [ 6] [010000] +14:52:14 [ 4] [ 12] [000100000000] +14:52:14 [ 11] [ 6] [775734] +14:52:14 [ 12] [ 6] [145206] +14:52:14 [ 15] [ 4] [0320] +14:52:14 [ 18] [ 4] [6011] +14:52:14 [ 32] [ 6] [621354] +14:52:14 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:52:14 [ 37] [ 12] [507903344977] +14:52:14 [ 38] [ 6] [841677] +14:52:14 [ 39] [ 2] [00] +14:52:14 [ 41] [ 8] [13001400] +14:52:14 [ 49] [ 3] [418] +14:52:14 [ 54] [ 20] [0002418C001079750153] +14:52:14 ============================================================================ +14:52:14 Calculate Source COMM Id = 0 +14:52:14 ============================================================================ +14:52:14 + + +waiting on router queue for slot.... +14:52:14 ============================================================================ +14:52:14 Slot Id : <296> +14:52:14 Transaction Type : REQUEST +14:52:14 Received From : +14:52:14 ============================================================================ +14:52:14 FNo. Len. Field Value +14:52:14 ============================================================================ +14:52:14 [ 1] [ 4] [0200] +14:52:14 [ 2] [ 16] [6213544001940581] +14:52:14 [ 3] [ 6] [010000] +14:52:14 [ 4] [ 12] [000100000000] +14:52:14 [ 7] [ 10] [0320150002] +14:52:14 [ 11] [ 6] [259280] +14:52:14 [ 12] [ 6] [150002] +14:52:14 [ 13] [ 4] [0320] +14:52:14 [ 14] [ 4] [4912] +14:52:14 [ 15] [ 4] [0320] +14:52:14 [ 18] [ 4] [6011] +14:52:14 [ 22] [ 3] [900] +14:52:14 [ 25] [ 2] [02] +14:52:14 [ 28] [ 9] [D00002000] +14:52:14 [ 32] [ 6] [220699] +14:52:14 [ 35] [ 32] [6213544001940581=491212014058837] +14:52:14 [ 37] [ 12] [507900040614] +14:52:14 [ 41] [ 8] [01000400] +14:52:14 [ 42] [ 15] [APTRA ] +14:52:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:52:14 [ 49] [ 3] [418] +14:52:14 [ 52] [ 16] [6BAC1F205713E807] +14:52:14 ============================================================================ +14:52:14 + + +waiting on router queue for slot.... +14:52:14 Sending to : +14:52:14 ============================================================================ +14:52:14 Sending to : +14:52:14 ============================================================================ +14:52:15 ============================================================================ +14:52:15 Slot Id : <296> +14:52:15 Transaction Type : REQUEST +14:52:15 Received From : +14:52:15 ============================================================================ +14:52:15 FNo. Len. Field Value +14:52:15 ============================================================================ +14:52:15 [ 1] [ 4] [0200] +14:52:15 [ 2] [ 16] [6213544001940581] +14:52:15 [ 3] [ 6] [010000] +14:52:15 [ 4] [ 12] [000100000000] +14:52:15 [ 7] [ 10] [0320150002] +14:52:15 [ 11] [ 6] [259280] +14:52:15 [ 12] [ 6] [150002] +14:52:15 [ 13] [ 4] [0320] +14:52:15 [ 14] [ 4] [4912] +14:52:15 [ 15] [ 4] [0320] +14:52:15 [ 18] [ 4] [6011] +14:52:15 [ 22] [ 3] [900] +14:52:15 [ 25] [ 2] [02] +14:52:15 [ 28] [ 9] [D00002000] +14:52:15 [ 32] [ 6] [220699] +14:52:15 [ 35] [ 32] [6213544001940581=491212014058837] +14:52:15 [ 37] [ 12] [507900040614] +14:52:15 [ 41] [ 8] [01000400] +14:52:15 [ 42] [ 15] [APTRA ] +14:52:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:52:15 [ 49] [ 3] [418] +14:52:15 [ 52] [ 16] [6BAC1F205713E807] +14:52:15 ============================================================================ +14:52:15 + + +waiting on router queue for slot.... +14:52:15 Sending to : +14:52:15 ============================================================================ +14:52:15 ============================================================================ +14:52:15 Slot Id : <296> +14:52:15 Transaction Type : REQUEST +14:52:15 Received From : +14:52:15 ============================================================================ +14:52:15 FNo. Len. Field Value +14:52:15 ============================================================================ +14:52:15 [ 1] [ 4] [0200] +14:52:15 [ 2] [ 16] [6213544001940581] +14:52:15 [ 3] [ 6] [010000] +14:52:15 [ 4] [ 12] [000100000000] +14:52:15 [ 7] [ 10] [0320150002] +14:52:15 [ 11] [ 6] [259280] +14:52:15 [ 12] [ 6] [150002] +14:52:15 [ 13] [ 4] [0320] +14:52:15 [ 14] [ 4] [4912] +14:52:15 [ 15] [ 4] [0320] +14:52:15 [ 18] [ 4] [6011] +14:52:15 [ 22] [ 3] [900] +14:52:15 [ 25] [ 2] [02] +14:52:15 [ 28] [ 9] [D00002000] +14:52:15 [ 32] [ 6] [220699] +14:52:15 [ 35] [ 32] [6213544001940581=491212014058837] +14:52:15 [ 37] [ 12] [507900040614] +14:52:15 [ 41] [ 8] [01000400] +14:52:15 [ 42] [ 15] [APTRA ] +14:52:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +14:52:15 [ 49] [ 3] [418] +14:52:15 [ 52] [ 16] [5707DE3304F6D61C] +14:52:15 ============================================================================ +14:52:15 + + +waiting on router queue for slot.... +14:52:15 Sending to : <0> +14:52:15 ============================================================================ +14:52:15 ============================================================================ +14:52:15 Slot Id : <296> +14:52:15 Transaction Type : RESPONSE +14:52:15 Received From : +14:52:15 ============================================================================ +14:52:15 FNo. Len. Field Value +14:52:15 ============================================================================ +14:52:15 [ 1] [ 4] [0210] +14:52:15 [ 2] [ 16] [6213544001940581] +14:52:15 [ 3] [ 6] [010000] +14:52:15 [ 4] [ 12] [000100000000] +14:52:15 [ 7] [ 10] [0320150002] +14:52:15 [ 11] [ 6] [259280] +14:52:15 [ 12] [ 6] [150002] +14:52:15 [ 13] [ 4] [0320] +14:52:15 [ 15] [ 4] [0320] +14:52:15 [ 18] [ 4] [6011] +14:52:15 [ 32] [ 6] [220699] +14:52:15 [ 35] [ 32] [6213544001940581=491212014058837] +14:52:15 [ 37] [ 12] [507900040614] +14:52:15 [ 38] [ 6] [525161] +14:52:15 [ 39] [ 2] [00] +14:52:15 [ 41] [ 8] [01000400] +14:52:15 [ 49] [ 3] [418] +14:52:15 [ 54] [ 40] [0001418C0003183299160002418C000318329916] +14:52:15 ============================================================================ +14:52:15 Sending to : +14:52:15 ============================================================================ +14:52:15 + + +waiting on router queue for slot.... +14:52:16 ============================================================================ +14:52:16 Slot Id : <308> +14:52:16 Transaction Type : REQUEST +14:52:16 Received From : +14:52:16 ============================================================================ +14:52:16 FNo. Len. Field Value +14:52:16 ============================================================================ +14:52:16 [ 1] [ 4] [0800] +14:52:16 [ 7] [ 10] [0320075123] +14:52:16 [ 11] [ 6] [156871] +14:52:16 [ 70] [ 3] [301] +14:52:16 ============================================================================ +14:52:16 + + +waiting on router queue for slot.... +14:52:16 Sending to : +14:52:16 ============================================================================ +14:52:16 ============================================================================ +14:52:16 Slot Id : <308> +14:52:16 Transaction Type : RESPONSE +14:52:16 Received From : +14:52:16 ============================================================================ +14:52:16 FNo. Len. Field Value +14:52:16 ============================================================================ +14:52:16 [ 1] [ 4] [0810] +14:52:16 [ 7] [ 10] [0320075123] +14:52:16 [ 11] [ 6] [156871] +14:52:16 [ 39] [ 2] [00] +14:52:16 [ 70] [ 3] [301] +14:52:16 ============================================================================ +14:52:16 Calculate Source COMM Id = 2 +14:52:16 ============================================================================ +14:52:16 + + +waiting on router queue for slot.... +14:52:16 ============================================================================ +14:52:16 Slot Id : <296> +14:52:16 Transaction Type : RESPONSE +14:52:16 Received From : +14:52:16 ============================================================================ +14:52:16 FNo. Len. Field Value +14:52:16 ============================================================================ +14:52:16 [ 1] [ 4] [0210] +14:52:16 [ 2] [ 16] [6213544001940581] +14:52:16 [ 3] [ 6] [010000] +14:52:16 [ 4] [ 12] [000100000000] +14:52:16 [ 7] [ 10] [0320150002] +14:52:16 [ 11] [ 6] [259280] +14:52:16 [ 12] [ 6] [150002] +14:52:16 [ 13] [ 4] [0320] +14:52:16 [ 15] [ 4] [0320] +14:52:16 [ 18] [ 4] [6011] +14:52:16 [ 32] [ 6] [220699] +14:52:16 [ 35] [ 32] [6213544001940581=491212014058837] +14:52:16 [ 37] [ 12] [507900040614] +14:52:16 [ 38] [ 6] [525161] +14:52:16 [ 39] [ 2] [00] +14:52:16 [ 41] [ 8] [01000400] +14:52:16 [ 49] [ 3] [418] +14:52:16 [ 54] [ 40] [0001418C0003183299160002418C000318329916] +14:52:16 ============================================================================ +14:52:16 Calculate Source COMM Id = 1 +14:52:16 ============================================================================ +14:52:16 + + +waiting on router queue for slot.... +14:52:24 ============================================================================ +14:52:24 Slot Id : <286> +14:52:24 Transaction Type : REQUEST +14:52:24 Received From : +14:52:24 ============================================================================ +14:52:24 FNo. Len. Field Value +14:52:24 ============================================================================ +14:52:24 [ 1] [ 4] [0800] +14:52:24 [ 2] [ 5] [02531] +14:52:24 [ 3] [ 6] [579148] +14:52:24 [ 7] [ 10] [0320075224] +14:52:24 [ 11] [ 6] [807275] +14:52:24 [ 15] [ 10] [0320075224] +14:52:24 [ 37] [ 11] [57914807275] +14:52:24 [ 70] [ 3] [001] +14:52:24 ============================================================================ +14:52:24 + + +waiting on router queue for slot.... +14:52:24 ============================================================================ +14:52:24 Slot Id : <286> +14:52:24 Transaction Type : RESPONSE +14:52:24 Received From : +14:52:24 ============================================================================ +14:52:24 FNo. Len. Field Value +14:52:24 ============================================================================ +14:52:24 [ 1] [ 4] [0810] +14:52:24 [ 7] [ 10] [0320075224] +14:52:24 [ 11] [ 6] [807275] +14:52:24 [ 15] [ 4] [0320] +14:52:24 [ 37] [ 12] [57914807275] +14:52:24 [ 39] [ 2] [00] +14:52:24 [ 70] [ 3] [001] +14:52:24 ============================================================================ +14:52:24 Sending to : +14:52:24 ============================================================================ +14:52:24 + + +waiting on router queue for slot.... +14:52:27 ============================================================================ +14:52:27 Slot Id : <283> +14:52:27 Transaction Type : REQUEST +14:52:27 Received From : +14:52:27 ============================================================================ +14:52:27 FNo. Len. Field Value +14:52:27 ============================================================================ +14:52:27 [ 1] [ 4] [0800] +14:52:27 [ 7] [ 10] [0320075135] +14:52:27 [ 11] [ 6] [156872] +14:52:27 [ 70] [ 3] [301] +14:52:27 ============================================================================ +14:52:27 + + +waiting on router queue for slot.... +14:52:27 Sending to : +14:52:27 ============================================================================ +14:52:27 ============================================================================ +14:52:27 Slot Id : <283> +14:52:27 Transaction Type : RESPONSE +14:52:27 Received From : +14:52:27 ============================================================================ +14:52:27 FNo. Len. Field Value +14:52:27 ============================================================================ +14:52:27 [ 1] [ 4] [0810] +14:52:27 [ 7] [ 10] [0320075135] +14:52:27 [ 11] [ 6] [156872] +14:52:27 [ 39] [ 2] [00] +14:52:27 [ 70] [ 3] [301] +14:52:27 ============================================================================ +14:52:27 Calculate Source COMM Id = 2 +14:52:27 ============================================================================ +14:52:27 + + +waiting on router queue for slot.... +14:52:31 ============================================================================ +14:52:31 Slot Id : <316> +14:52:31 Transaction Type : REQUEST +14:52:31 Received From : +14:52:31 ============================================================================ +14:52:31 FNo. Len. Field Value +14:52:31 ============================================================================ +14:52:31 [ 1] [ 4] [0800] +14:52:31 [ 7] [ 10] [0320220419] +14:52:31 [ 11] [ 6] [150419] +14:52:31 [ 37] [ 12] [57915150419] +14:52:31 [ 70] [ 3] [301] +14:52:31 ============================================================================ +14:52:31 + + +waiting on router queue for slot.... +14:52:31 Sending to : +14:52:31 ============================================================================ +14:52:31 ============================================================================ +14:52:31 Slot Id : <316> +14:52:31 Transaction Type : RESPONSE +14:52:31 Received From : +14:52:31 ============================================================================ +14:52:31 FNo. Len. Field Value +14:52:31 ============================================================================ +14:52:31 [ 1] [ 4] [0810] +14:52:31 [ 7] [ 10] [0320220419] +14:52:31 [ 11] [ 6] [150419] +14:52:31 [ 37] [ 12] [579151504190] +14:52:31 [ 39] [ 2] [00] +14:52:31 [ 70] [ 3] [810] +14:52:31 ============================================================================ +14:52:31 Calculate Source COMM Id = 6 +14:52:31 ============================================================================ +14:52:31 + + +waiting on router queue for slot.... +14:52:37 ============================================================================ +14:52:37 Slot Id : <312> +14:52:37 Transaction Type : REQUEST +14:52:37 Received From : +14:52:37 ============================================================================ +14:52:37 FNo. Len. Field Value +14:52:37 ============================================================================ +14:52:37 [ 1] [ 4] [0200] +14:52:37 [ 2] [ 16] [6688990100966306] +14:52:37 [ 3] [ 6] [011000] +14:52:37 [ 4] [ 12] [000040000000] +14:52:37 [ 7] [ 10] [0320145232] +14:52:37 [ 11] [ 6] [775840] +14:52:37 [ 12] [ 6] [145232] +14:52:37 [ 13] [ 4] [0320] +14:52:37 [ 15] [ 4] [0320] +14:52:37 [ 18] [ 4] [6011] +14:52:37 [ 22] [ 3] [900] +14:52:37 [ 25] [ 2] [02] +14:52:37 [ 28] [ 9] [D00002000] +14:52:37 [ 32] [ 6] [621354] +14:52:37 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:52:37 [ 37] [ 12] [507904719694] +14:52:37 [ 41] [ 8] [18001000] +14:52:37 [ 42] [ 15] [NATIVE ] +14:52:37 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:52:37 [ 49] [ 3] [418] +14:52:37 [ 52] [ 16] [7B2CD2386E538D89] +14:52:37 ============================================================================ +14:52:37 + + +waiting on router queue for slot.... +14:52:37 Sending to : +14:52:37 ============================================================================ +14:52:37 Sending to : +14:52:37 ============================================================================ +14:52:37 ============================================================================ +14:52:37 Slot Id : <312> +14:52:37 Transaction Type : REQUEST +14:52:37 Received From : +14:52:37 ============================================================================ +14:52:37 FNo. Len. Field Value +14:52:37 ============================================================================ +14:52:37 [ 1] [ 4] [0200] +14:52:37 [ 2] [ 16] [6688990100966306] +14:52:37 [ 3] [ 6] [011000] +14:52:37 [ 4] [ 12] [000040000000] +14:52:37 [ 7] [ 10] [0320145232] +14:52:37 [ 11] [ 6] [775840] +14:52:37 [ 12] [ 6] [145232] +14:52:37 [ 13] [ 4] [0320] +14:52:37 [ 15] [ 4] [0320] +14:52:37 [ 18] [ 4] [6011] +14:52:37 [ 22] [ 3] [900] +14:52:37 [ 25] [ 2] [02] +14:52:37 [ 28] [ 9] [D00002000] +14:52:37 [ 32] [ 6] [621354] +14:52:37 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:52:37 [ 37] [ 12] [507904719694] +14:52:37 [ 41] [ 8] [18001000] +14:52:37 [ 42] [ 15] [NATIVE ] +14:52:37 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:52:37 [ 49] [ 3] [418] +14:52:37 [ 52] [ 16] [7B2CD2386E538D89] +14:52:37 ============================================================================ +14:52:37 + + +waiting on router queue for slot.... +14:52:37 Sending to : +14:52:37 ============================================================================ +14:52:37 ============================================================================ +14:52:37 Slot Id : <312> +14:52:37 Transaction Type : REQUEST +14:52:37 Received From : +14:52:37 ============================================================================ +14:52:37 FNo. Len. Field Value +14:52:37 ============================================================================ +14:52:37 [ 1] [ 4] [0200] +14:52:37 [ 2] [ 16] [6688990100966306] +14:52:37 [ 3] [ 6] [011000] +14:52:37 [ 4] [ 12] [000040000000] +14:52:37 [ 7] [ 10] [0320145232] +14:52:37 [ 11] [ 6] [775840] +14:52:37 [ 12] [ 6] [145232] +14:52:37 [ 13] [ 4] [0320] +14:52:37 [ 15] [ 4] [0320] +14:52:37 [ 18] [ 4] [6011] +14:52:37 [ 22] [ 3] [900] +14:52:37 [ 25] [ 2] [02] +14:52:37 [ 28] [ 9] [D00002000] +14:52:37 [ 32] [ 6] [621354] +14:52:37 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:52:37 [ 37] [ 12] [507904719694] +14:52:37 [ 41] [ 8] [18001000] +14:52:37 [ 42] [ 15] [NATIVE ] +14:52:37 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:52:37 [ 49] [ 3] [418] +14:52:37 [ 52] [ 16] [5E6AE48118060C4F] +14:52:37 ============================================================================ +14:52:37 + + +waiting on router queue for slot.... +14:52:37 Sending to : <4> +14:52:37 ============================================================================ +14:52:38 ============================================================================ +14:52:38 Slot Id : <311> +14:52:38 Transaction Type : REQUEST +14:52:38 Received From : +14:52:38 ============================================================================ +14:52:38 FNo. Len. Field Value +14:52:38 ============================================================================ +14:52:38 [ 1] [ 4] [0800] +14:52:38 [ 7] [ 10] [0320075145] +14:52:38 [ 11] [ 6] [156873] +14:52:38 [ 70] [ 3] [301] +14:52:38 ============================================================================ +14:52:38 + + +waiting on router queue for slot.... +14:52:38 Sending to : +14:52:38 ============================================================================ +14:52:38 ============================================================================ +14:52:38 Slot Id : <311> +14:52:38 Transaction Type : RESPONSE +14:52:38 Received From : +14:52:38 ============================================================================ +14:52:38 FNo. Len. Field Value +14:52:38 ============================================================================ +14:52:38 [ 1] [ 4] [0810] +14:52:38 [ 7] [ 10] [0320075145] +14:52:38 [ 11] [ 6] [156873] +14:52:38 [ 39] [ 2] [00] +14:52:38 [ 70] [ 3] [301] +14:52:38 ============================================================================ +14:52:38 Calculate Source COMM Id = 2 +14:52:38 ============================================================================ +14:52:38 + + +waiting on router queue for slot.... +14:52:38 ============================================================================ +14:52:38 Slot Id : <312> +14:52:38 Transaction Type : RESPONSE +14:52:38 Received From : +14:52:38 ============================================================================ +14:52:38 FNo. Len. Field Value +14:52:38 ============================================================================ +14:52:38 [ 1] [ 4] [0210] +14:52:38 [ 2] [ 16] [6688990100966306] +14:52:38 [ 3] [ 6] [011000] +14:52:38 [ 4] [ 12] [000040000000] +14:52:38 [ 11] [ 6] [775840] +14:52:38 [ 12] [ 6] [145232] +14:52:38 [ 15] [ 4] [0320] +14:52:38 [ 18] [ 4] [6011] +14:52:38 [ 32] [ 6] [621354] +14:52:38 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:52:38 [ 37] [ 12] [507904719694] +14:52:38 [ 38] [ 6] [895861] +14:52:38 [ 39] [ 2] [00] +14:52:38 [ 41] [ 8] [18001000] +14:52:38 [ 49] [ 3] [418] +14:52:38 [ 54] [ 20] [1002418C000002270528] +14:52:38 ============================================================================ +14:52:38 Sending to : +14:52:38 ============================================================================ +14:52:38 + + +waiting on router queue for slot.... +14:52:40 ============================================================================ +14:52:40 Slot Id : <312> +14:52:40 Transaction Type : RESPONSE +14:52:40 Received From : +14:52:40 ============================================================================ +14:52:40 FNo. Len. Field Value +14:52:40 ============================================================================ +14:52:40 [ 1] [ 4] [0210] +14:52:40 [ 2] [ 16] [6688990100966306] +14:52:40 [ 3] [ 6] [011000] +14:52:40 [ 4] [ 12] [000040000000] +14:52:40 [ 11] [ 6] [775840] +14:52:40 [ 12] [ 6] [145232] +14:52:40 [ 15] [ 4] [0320] +14:52:40 [ 18] [ 4] [6011] +14:52:40 [ 32] [ 6] [621354] +14:52:40 [ 35] [ 37] [6688990100966306=41121231630673900000] +14:52:40 [ 37] [ 12] [507904719694] +14:52:40 [ 38] [ 6] [895861] +14:52:40 [ 39] [ 2] [00] +14:52:40 [ 41] [ 8] [18001000] +14:52:40 [ 49] [ 3] [418] +14:52:40 [ 54] [ 20] [1002418C000002270528] +14:52:40 ============================================================================ +14:52:40 Calculate Source COMM Id = 0 +14:52:40 ============================================================================ +14:52:40 + + +waiting on router queue for slot.... +14:52:44 ============================================================================ +14:52:44 Slot Id : <306> +14:52:44 Transaction Type : REQUEST +14:52:44 Received From : +14:52:44 ============================================================================ +14:52:44 FNo. Len. Field Value +14:52:44 ============================================================================ +14:52:44 [ 1] [ 4] [0200] +14:52:44 [ 2] [ 16] [6213541000348337] +14:52:44 [ 3] [ 6] [010000] +14:52:44 [ 4] [ 12] [000150000000] +14:52:44 [ 7] [ 10] [0320075149] +14:52:44 [ 11] [ 6] [269854] +14:52:44 [ 12] [ 6] [145149] +14:52:44 [ 13] [ 4] [0320] +14:52:44 [ 14] [ 4] [4912] +14:52:44 [ 15] [ 4] [0320] +14:52:44 [ 18] [ 4] [6011] +14:52:44 [ 19] [ 3] [418] +14:52:44 [ 22] [ 3] [021] +14:52:44 [ 25] [ 2] [01] +14:52:44 [ 28] [ 9] [D00002000] +14:52:44 [ 32] [ 6] [180893] +14:52:44 [ 35] [ 32] [6213541000348337=491212014833941] +14:52:44 [ 37] [ 12] [507907269854] +14:52:44 [ 41] [ 8] [0368KMMX] +14:52:44 [ 42] [ 15] [999999 ] +14:52:44 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +14:52:44 [ 49] [ 3] [418] +14:52:44 [ 52] [ 16] [E04C3FC7437F3DB0] +14:52:44 ============================================================================ +14:52:44 + + +waiting on router queue for slot.... +14:52:44 Sending to : +14:52:44 ============================================================================ +14:52:44 Sending to : +14:52:44 ============================================================================ +14:52:44 ============================================================================ +14:52:44 Slot Id : <306> +14:52:44 Transaction Type : REQUEST +14:52:44 Received From : +14:52:44 ============================================================================ +14:52:44 FNo. Len. Field Value +14:52:44 ============================================================================ +14:52:44 [ 1] [ 4] [0200] +14:52:44 [ 2] [ 16] [6213541000348337] +14:52:44 [ 3] [ 6] [010000] +14:52:44 [ 4] [ 12] [000150000000] +14:52:44 [ 7] [ 10] [0320075149] +14:52:44 [ 11] [ 6] [269854] +14:52:44 [ 12] [ 6] [145149] +14:52:44 [ 13] [ 4] [0320] +14:52:44 [ 14] [ 4] [4912] +14:52:44 [ 15] [ 4] [0320] +14:52:44 [ 18] [ 4] [6011] +14:52:44 [ 19] [ 3] [418] +14:52:44 [ 22] [ 3] [021] +14:52:44 [ 25] [ 2] [01] +14:52:44 [ 28] [ 9] [D00002000] +14:52:44 [ 32] [ 6] [180893] +14:52:44 [ 35] [ 32] [6213541000348337=491212014833941] +14:52:44 [ 37] [ 12] [507907269854] +14:52:44 [ 41] [ 8] [0368KMMX] +14:52:44 [ 42] [ 15] [999999 ] +14:52:44 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +14:52:44 [ 49] [ 3] [418] +14:52:44 [ 52] [ 16] [E04C3FC7437F3DB0] +14:52:44 ============================================================================ +14:52:44 + + +waiting on router queue for slot.... +14:52:44 Sending to : +14:52:44 ============================================================================ +14:52:44 ============================================================================ +14:52:44 Slot Id : <306> +14:52:44 Transaction Type : REQUEST +14:52:44 Received From : +14:52:44 ============================================================================ +14:52:44 FNo. Len. Field Value +14:52:44 ============================================================================ +14:52:44 [ 1] [ 4] [0200] +14:52:44 [ 2] [ 16] [6213541000348337] +14:52:44 [ 3] [ 6] [010000] +14:52:44 [ 4] [ 12] [000150000000] +14:52:44 [ 7] [ 10] [0320075149] +14:52:44 [ 11] [ 6] [269854] +14:52:44 [ 12] [ 6] [145149] +14:52:44 [ 13] [ 4] [0320] +14:52:44 [ 14] [ 4] [4912] +14:52:44 [ 15] [ 4] [0320] +14:52:44 [ 18] [ 4] [6011] +14:52:44 [ 19] [ 3] [418] +14:52:44 [ 22] [ 3] [021] +14:52:44 [ 25] [ 2] [01] +14:52:44 [ 28] [ 9] [D00002000] +14:52:44 [ 32] [ 6] [180893] +14:52:44 [ 35] [ 32] [6213541000348337=491212014833941] +14:52:44 [ 37] [ 12] [507907269854] +14:52:44 [ 41] [ 8] [0368KMMX] +14:52:44 [ 42] [ 15] [999999 ] +14:52:44 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +14:52:44 [ 49] [ 3] [418] +14:52:44 [ 52] [ 16] [F9AC64FDEDB23CF2] +14:52:44 ============================================================================ +14:52:44 + + +waiting on router queue for slot.... +14:52:44 Sending to : <0> +14:52:44 ============================================================================ +14:52:44 ============================================================================ +14:52:44 Slot Id : <306> +14:52:44 Transaction Type : RESPONSE +14:52:44 Received From : +14:52:44 ============================================================================ +14:52:44 FNo. Len. Field Value +14:52:44 ============================================================================ +14:52:44 [ 1] [ 4] [0210] +14:52:44 [ 2] [ 16] [6213541000348337] +14:52:44 [ 3] [ 6] [010000] +14:52:44 [ 4] [ 12] [000150000000] +14:52:44 [ 7] [ 10] [0320075149] +14:52:44 [ 11] [ 6] [269854] +14:52:44 [ 12] [ 6] [145149] +14:52:44 [ 13] [ 4] [0320] +14:52:44 [ 15] [ 4] [0320] +14:52:44 [ 18] [ 4] [6011] +14:52:44 [ 19] [ 3] [418] +14:52:44 [ 22] [ 3] [021] +14:52:44 [ 32] [ 6] [180893] +14:52:44 [ 35] [ 32] [6213541000348337=491212014833941] +14:52:44 [ 37] [ 12] [507907269854] +14:52:44 [ 39] [ 2] [61] +14:52:44 [ 41] [ 8] [0368KMMX] +14:52:44 [ 49] [ 3] [418] +14:52:44 ============================================================================ +14:52:44 Sending to : +14:52:44 ============================================================================ +14:52:44 + + +waiting on router queue for slot.... +14:52:45 ============================================================================ +14:52:45 Slot Id : <306> +14:52:45 Transaction Type : RESPONSE +14:52:45 Received From : +14:52:45 ============================================================================ +14:52:45 FNo. Len. Field Value +14:52:45 ============================================================================ +14:52:45 [ 1] [ 4] [0210] +14:52:45 [ 2] [ 16] [6213541000348337] +14:52:45 [ 3] [ 6] [010000] +14:52:45 [ 4] [ 12] [000150000000] +14:52:45 [ 7] [ 10] [0320075149] +14:52:45 [ 11] [ 6] [269854] +14:52:45 [ 12] [ 6] [145149] +14:52:45 [ 13] [ 4] [0320] +14:52:45 [ 15] [ 4] [0320] +14:52:45 [ 18] [ 4] [6011] +14:52:45 [ 19] [ 3] [418] +14:52:45 [ 22] [ 3] [021] +14:52:45 [ 32] [ 6] [180893] +14:52:45 [ 35] [ 32] [6213541000348337=491212014833941] +14:52:45 [ 37] [ 12] [507907269854] +14:52:45 [ 39] [ 2] [61] +14:52:45 [ 41] [ 8] [0368KMMX] +14:52:45 [ 49] [ 3] [418] +14:52:45 ============================================================================ +14:52:45 Calculate Source COMM Id = 2 +14:52:45 ============================================================================ +14:52:45 + + +waiting on router queue for slot.... +14:52:47 ============================================================================ +14:52:47 Slot Id : <310> +14:52:47 Transaction Type : REQUEST +14:52:47 Received From : +14:52:47 ============================================================================ +14:52:47 FNo. Len. Field Value +14:52:47 ============================================================================ +14:52:47 [ 1] [ 4] [0200] +14:52:47 [ 2] [ 16] [6688990040082719] +14:52:47 [ 3] [ 6] [010000] +14:52:47 [ 4] [ 12] [000010000000] +14:52:47 [ 7] [ 10] [0320145242] +14:52:47 [ 11] [ 6] [775887] +14:52:47 [ 12] [ 6] [145242] +14:52:47 [ 13] [ 4] [0320] +14:52:47 [ 15] [ 4] [0320] +14:52:47 [ 18] [ 4] [6011] +14:52:47 [ 22] [ 3] [900] +14:52:47 [ 25] [ 2] [02] +14:52:47 [ 28] [ 9] [D00002000] +14:52:47 [ 32] [ 6] [621354] +14:52:47 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:52:47 [ 37] [ 12] [507904381157] +14:52:47 [ 41] [ 8] [03003700] +14:52:47 [ 42] [ 15] [NATIVE ] +14:52:47 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +14:52:47 [ 49] [ 3] [418] +14:52:47 [ 52] [ 16] [D28D8675129D3A36] +14:52:47 ============================================================================ +14:52:47 + + +waiting on router queue for slot.... +14:52:47 Sending to : +14:52:47 ============================================================================ +14:52:47 Sending to : +14:52:47 ============================================================================ +14:52:47 ============================================================================ +14:52:47 Slot Id : <310> +14:52:47 Transaction Type : REQUEST +14:52:47 Received From : +14:52:47 ============================================================================ +14:52:47 FNo. Len. Field Value +14:52:47 ============================================================================ +14:52:47 [ 1] [ 4] [0200] +14:52:47 [ 2] [ 16] [6688990040082719] +14:52:47 [ 3] [ 6] [010000] +14:52:47 [ 4] [ 12] [000010000000] +14:52:47 [ 7] [ 10] [0320145242] +14:52:47 [ 11] [ 6] [775887] +14:52:47 [ 12] [ 6] [145242] +14:52:47 [ 13] [ 4] [0320] +14:52:47 [ 15] [ 4] [0320] +14:52:47 [ 18] [ 4] [6011] +14:52:47 [ 22] [ 3] [900] +14:52:47 [ 25] [ 2] [02] +14:52:47 [ 28] [ 9] [D00002000] +14:52:47 [ 32] [ 6] [621354] +14:52:47 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:52:47 [ 37] [ 12] [507904381157] +14:52:47 [ 41] [ 8] [03003700] +14:52:47 [ 42] [ 15] [NATIVE ] +14:52:47 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +14:52:47 [ 49] [ 3] [418] +14:52:47 [ 52] [ 16] [D28D8675129D3A36] +14:52:47 ============================================================================ +14:52:47 + + +waiting on router queue for slot.... +14:52:47 Sending to : +14:52:47 ============================================================================ +14:52:47 ============================================================================ +14:52:47 Slot Id : <310> +14:52:47 Transaction Type : REQUEST +14:52:47 Received From : +14:52:47 ============================================================================ +14:52:47 FNo. Len. Field Value +14:52:47 ============================================================================ +14:52:47 [ 1] [ 4] [0200] +14:52:47 [ 2] [ 16] [6688990040082719] +14:52:47 [ 3] [ 6] [010000] +14:52:47 [ 4] [ 12] [000010000000] +14:52:47 [ 7] [ 10] [0320145242] +14:52:47 [ 11] [ 6] [775887] +14:52:47 [ 12] [ 6] [145242] +14:52:47 [ 13] [ 4] [0320] +14:52:47 [ 15] [ 4] [0320] +14:52:47 [ 18] [ 4] [6011] +14:52:47 [ 22] [ 3] [900] +14:52:47 [ 25] [ 2] [02] +14:52:47 [ 28] [ 9] [D00002000] +14:52:47 [ 32] [ 6] [621354] +14:52:47 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:52:47 [ 37] [ 12] [507904381157] +14:52:47 [ 41] [ 8] [03003700] +14:52:47 [ 42] [ 15] [NATIVE ] +14:52:47 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +14:52:47 [ 49] [ 3] [418] +14:52:47 [ 52] [ 16] [44D16A19BF409331] +14:52:47 ============================================================================ +14:52:47 + + +waiting on router queue for slot.... +14:52:47 Sending to : <4> +14:52:47 ============================================================================ +14:52:49 ============================================================================ +14:52:49 Slot Id : <310> +14:52:49 Transaction Type : RESPONSE +14:52:49 Received From : +14:52:49 ============================================================================ +14:52:49 FNo. Len. Field Value +14:52:49 ============================================================================ +14:52:49 [ 1] [ 4] [0210] +14:52:49 [ 2] [ 16] [6688990040082719] +14:52:49 [ 3] [ 6] [010000] +14:52:49 [ 4] [ 12] [000010000000] +14:52:49 [ 11] [ 6] [775887] +14:52:49 [ 12] [ 6] [145242] +14:52:49 [ 15] [ 4] [0320] +14:52:49 [ 18] [ 4] [6011] +14:52:49 [ 32] [ 6] [621354] +14:52:49 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:52:49 [ 37] [ 12] [507904381157] +14:52:49 [ 38] [ 6] [813086] +14:52:49 [ 39] [ 2] [00] +14:52:49 [ 41] [ 8] [03003700] +14:52:49 [ 49] [ 3] [418] +14:52:49 [ 54] [ 0] [] +14:52:49 ============================================================================ +14:52:49 Sending to : +14:52:49 ============================================================================ +14:52:49 + + +waiting on router queue for slot.... +14:52:50 ============================================================================ +14:52:50 Slot Id : <310> +14:52:50 Transaction Type : RESPONSE +14:52:50 Received From : +14:52:50 ============================================================================ +14:52:50 FNo. Len. Field Value +14:52:50 ============================================================================ +14:52:50 [ 1] [ 4] [0210] +14:52:50 [ 2] [ 16] [6688990040082719] +14:52:50 [ 3] [ 6] [010000] +14:52:50 [ 4] [ 12] [000010000000] +14:52:50 [ 11] [ 6] [775887] +14:52:50 [ 12] [ 6] [145242] +14:52:50 [ 15] [ 4] [0320] +14:52:50 [ 18] [ 4] [6011] +14:52:50 [ 32] [ 6] [621354] +14:52:50 [ 35] [ 37] [6688990040082719=98011261386156500000] +14:52:50 [ 37] [ 12] [507904381157] +14:52:50 [ 38] [ 6] [813086] +14:52:50 [ 39] [ 2] [00] +14:52:50 [ 41] [ 8] [03003700] +14:52:50 [ 49] [ 3] [418] +14:52:50 [ 54] [ 0] [] +14:52:50 ============================================================================ +14:52:50 Calculate Source COMM Id = 0 +14:52:50 ============================================================================ +14:52:50 + + +waiting on router queue for slot.... +14:52:57 ============================================================================ +14:52:57 Slot Id : <307> +14:52:57 Transaction Type : REQUEST +14:52:57 Received From : +14:52:57 ============================================================================ +14:52:57 FNo. Len. Field Value +14:52:57 ============================================================================ +14:52:57 [ 1] [ 4] [0200] +14:52:57 [ 2] [ 16] [6213545000484166] +14:52:57 [ 3] [ 6] [010000] +14:52:57 [ 4] [ 12] [000023000000] +14:52:57 [ 7] [ 10] [0320145048] +14:52:57 [ 11] [ 6] [949152] +14:52:57 [ 12] [ 6] [145048] +14:52:57 [ 13] [ 4] [0320] +14:52:57 [ 15] [ 4] [0320] +14:52:57 [ 18] [ 4] [6011] +14:52:57 [ 19] [ 3] [418] +14:52:57 [ 22] [ 3] [021] +14:52:57 [ 25] [ 2] [01] +14:52:57 [ 28] [ 9] [D00002000] +14:52:57 [ 32] [ 6] [668899] +14:52:57 [ 35] [ 32] [6213545000484166=491212018416158] +14:52:57 [ 37] [ 12] [507902151056] +14:52:57 [ 41] [ 8] [03020025] +14:52:57 [ 42] [ 15] [APT ] +14:52:57 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +14:52:57 [ 49] [ 3] [418] +14:52:57 [ 52] [ 16] [4F1F1E6586F87684] +14:52:57 ============================================================================ +14:52:57 + + +waiting on router queue for slot.... +14:52:57 Sending to : +14:52:57 ============================================================================ +14:52:57 Sending to : +14:52:57 ============================================================================ +14:52:58 ============================================================================ +14:52:58 Slot Id : <307> +14:52:58 Transaction Type : REQUEST +14:52:58 Received From : +14:52:58 ============================================================================ +14:52:58 FNo. Len. Field Value +14:52:58 ============================================================================ +14:52:58 [ 1] [ 4] [0200] +14:52:58 [ 2] [ 16] [6213545000484166] +14:52:58 [ 3] [ 6] [010000] +14:52:58 [ 4] [ 12] [000023000000] +14:52:58 [ 7] [ 10] [0320145048] +14:52:58 [ 11] [ 6] [949152] +14:52:58 [ 12] [ 6] [145048] +14:52:58 [ 13] [ 4] [0320] +14:52:58 [ 15] [ 4] [0320] +14:52:58 [ 18] [ 4] [6011] +14:52:58 [ 19] [ 3] [418] +14:52:58 [ 22] [ 3] [021] +14:52:58 [ 25] [ 2] [01] +14:52:58 [ 28] [ 9] [D00002000] +14:52:58 [ 32] [ 6] [668899] +14:52:58 [ 35] [ 32] [6213545000484166=491212018416158] +14:52:58 [ 37] [ 12] [507902151056] +14:52:58 [ 41] [ 8] [03020025] +14:52:58 [ 42] [ 15] [APT ] +14:52:58 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +14:52:58 [ 49] [ 3] [418] +14:52:58 [ 52] [ 16] [4F1F1E6586F87684] +14:52:58 ============================================================================ +14:52:58 + + +waiting on router queue for slot.... +14:52:58 Sending to : +14:52:58 ============================================================================ +14:52:58 ============================================================================ +14:52:58 Slot Id : <307> +14:52:58 Transaction Type : REQUEST +14:52:58 Received From : +14:52:58 ============================================================================ +14:52:58 FNo. Len. Field Value +14:52:58 ============================================================================ +14:52:58 [ 1] [ 4] [0200] +14:52:58 [ 2] [ 16] [6213545000484166] +14:52:58 [ 3] [ 6] [010000] +14:52:58 [ 4] [ 12] [000023000000] +14:52:58 [ 7] [ 10] [0320145048] +14:52:58 [ 11] [ 6] [949152] +14:52:58 [ 12] [ 6] [145048] +14:52:58 [ 13] [ 4] [0320] +14:52:58 [ 15] [ 4] [0320] +14:52:58 [ 18] [ 4] [6011] +14:52:58 [ 19] [ 3] [418] +14:52:58 [ 22] [ 3] [021] +14:52:58 [ 25] [ 2] [01] +14:52:58 [ 28] [ 9] [D00002000] +14:52:58 [ 32] [ 6] [668899] +14:52:58 [ 35] [ 32] [6213545000484166=491212018416158] +14:52:58 [ 37] [ 12] [507902151056] +14:52:58 [ 41] [ 8] [03020025] +14:52:58 [ 42] [ 15] [APT ] +14:52:58 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +14:52:58 [ 49] [ 3] [418] +14:52:58 [ 52] [ 16] [85AD9B6A6FD370B1] +14:52:58 ============================================================================ +14:52:58 + + +waiting on router queue for slot.... +14:52:58 Sending to : <0> +14:52:58 ============================================================================ +14:52:58 ============================================================================ +14:52:58 Slot Id : <307> +14:52:58 Transaction Type : RESPONSE +14:52:58 Received From : +14:52:58 ============================================================================ +14:52:58 FNo. Len. Field Value +14:52:58 ============================================================================ +14:52:58 [ 1] [ 4] [0210] +14:52:58 [ 2] [ 16] [6213545000484166] +14:52:58 [ 3] [ 6] [010000] +14:52:58 [ 4] [ 12] [000023000000] +14:52:58 [ 7] [ 10] [0320145048] +14:52:58 [ 11] [ 6] [949152] +14:52:58 [ 12] [ 6] [145048] +14:52:58 [ 13] [ 4] [0320] +14:52:58 [ 15] [ 4] [0320] +14:52:58 [ 18] [ 4] [6011] +14:52:58 [ 19] [ 3] [418] +14:52:58 [ 32] [ 6] [668899] +14:52:58 [ 35] [ 32] [6213545000484166=491212018416158] +14:52:58 [ 37] [ 12] [507902151056] +14:52:58 [ 38] [ 6] [508689] +14:52:58 [ 39] [ 2] [00] +14:52:58 [ 41] [ 8] [03020025] +14:52:58 [ 49] [ 3] [418] +14:52:58 [ 54] [ 40] [0001418C0000057342160002418C000005734216] +14:52:58 ============================================================================ +14:52:58 Sending to : +14:52:58 ============================================================================ +14:52:58 + + +waiting on router queue for slot.... +14:52:59 ============================================================================ +14:52:59 Slot Id : <317> +14:52:59 Transaction Type : REQUEST +14:52:59 Received From : +14:52:59 ============================================================================ +14:52:59 FNo. Len. Field Value +14:52:59 ============================================================================ +14:52:59 [ 1] [ 4] [0800] +14:52:59 [ 7] [ 10] [0320075206] +14:52:59 [ 11] [ 6] [156874] +14:52:59 [ 70] [ 3] [301] +14:52:59 ============================================================================ +14:52:59 + + +waiting on router queue for slot.... +14:52:59 Sending to : +14:52:59 ============================================================================ +14:52:59 ============================================================================ +14:52:59 Slot Id : <317> +14:52:59 Transaction Type : RESPONSE +14:52:59 Received From : +14:52:59 ============================================================================ +14:52:59 FNo. Len. Field Value +14:52:59 ============================================================================ +14:52:59 [ 1] [ 4] [0810] +14:52:59 [ 7] [ 10] [0320075206] +14:52:59 [ 11] [ 6] [156874] +14:52:59 [ 39] [ 2] [00] +14:52:59 [ 70] [ 3] [301] +14:52:59 ============================================================================ +14:52:59 Calculate Source COMM Id = 2 +14:52:59 ============================================================================ +14:52:59 + + +waiting on router queue for slot.... +14:53:00 ============================================================================ +14:53:00 Slot Id : <307> +14:53:00 Transaction Type : RESPONSE +14:53:00 Received From : +14:53:00 ============================================================================ +14:53:00 FNo. Len. Field Value +14:53:00 ============================================================================ +14:53:00 [ 1] [ 4] [0210] +14:53:00 [ 2] [ 16] [6213545000484166] +14:53:00 [ 3] [ 6] [010000] +14:53:00 [ 4] [ 12] [000023000000] +14:53:00 [ 7] [ 10] [0320145048] +14:53:00 [ 11] [ 6] [949152] +14:53:00 [ 12] [ 6] [145048] +14:53:00 [ 13] [ 4] [0320] +14:53:00 [ 15] [ 4] [0320] +14:53:00 [ 18] [ 4] [6011] +14:53:00 [ 19] [ 3] [418] +14:53:00 [ 32] [ 6] [668899] +14:53:00 [ 35] [ 32] [6213545000484166=491212018416158] +14:53:00 [ 37] [ 12] [507902151056] +14:53:00 [ 38] [ 6] [508689] +14:53:00 [ 39] [ 2] [00] +14:53:00 [ 41] [ 8] [03020025] +14:53:00 [ 49] [ 3] [418] +14:53:00 [ 54] [ 40] [0001418C0000057342160002418C000005734216] +14:53:00 ============================================================================ +14:53:00 Calculate Source COMM Id = 4 +14:53:00 ============================================================================ +14:53:00 + + +waiting on router queue for slot.... +14:53:15 ============================================================================ +14:53:15 Slot Id : <288> +14:53:15 Transaction Type : REQUEST +14:53:15 Received From : +14:53:15 ============================================================================ +14:53:15 FNo. Len. Field Value +14:53:15 ============================================================================ +14:53:15 [ 1] [ 4] [0800] +14:53:15 [ 7] [ 10] [0320075222] +14:53:15 [ 11] [ 6] [156875] +14:53:15 [ 70] [ 3] [301] +14:53:15 ============================================================================ +14:53:15 + + +waiting on router queue for slot.... +14:53:15 Sending to : +14:53:15 ============================================================================ +14:53:15 ============================================================================ +14:53:15 Slot Id : <288> +14:53:15 Transaction Type : RESPONSE +14:53:15 Received From : +14:53:15 ============================================================================ +14:53:15 FNo. Len. Field Value +14:53:15 ============================================================================ +14:53:15 [ 1] [ 4] [0810] +14:53:15 [ 7] [ 10] [0320075222] +14:53:15 [ 11] [ 6] [156875] +14:53:15 [ 39] [ 2] [00] +14:53:15 [ 70] [ 3] [301] +14:53:15 ============================================================================ +14:53:15 Calculate Source COMM Id = 2 +14:53:15 ============================================================================ +14:53:15 + + +waiting on router queue for slot.... +14:53:16 ============================================================================ +14:53:16 Slot Id : <318> +14:53:16 Transaction Type : REQUEST +14:53:16 Received From : +14:53:16 ============================================================================ +14:53:16 FNo. Len. Field Value +14:53:16 ============================================================================ +14:53:16 [ 1] [ 4] [0200] +14:53:16 [ 2] [ 16] [6688990103743801] +14:53:16 [ 3] [ 6] [010000] +14:53:16 [ 4] [ 12] [000100000000] +14:53:16 [ 7] [ 10] [0320145312] +14:53:16 [ 11] [ 6] [776015] +14:53:16 [ 12] [ 6] [145312] +14:53:16 [ 13] [ 4] [0320] +14:53:16 [ 15] [ 4] [0320] +14:53:16 [ 18] [ 4] [6011] +14:53:16 [ 22] [ 3] [900] +14:53:16 [ 25] [ 2] [02] +14:53:16 [ 28] [ 9] [D00002000] +14:53:16 [ 32] [ 6] [621354] +14:53:16 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:53:16 [ 37] [ 12] [507903344979] +14:53:16 [ 41] [ 8] [13001400] +14:53:16 [ 42] [ 15] [NATIVE ] +14:53:16 [ 43] [ 40] [Kham Unit Kham LAO] +14:53:16 [ 49] [ 3] [418] +14:53:16 [ 52] [ 16] [DC473392EDA7F48C] +14:53:16 ============================================================================ +14:53:16 + + +waiting on router queue for slot.... +14:53:16 Sending to : +14:53:16 ============================================================================ +14:53:16 Sending to : +14:53:16 ============================================================================ +14:53:17 ============================================================================ +14:53:17 Slot Id : <318> +14:53:17 Transaction Type : REQUEST +14:53:17 Received From : +14:53:17 ============================================================================ +14:53:17 FNo. Len. Field Value +14:53:17 ============================================================================ +14:53:17 [ 1] [ 4] [0200] +14:53:17 [ 2] [ 16] [6688990103743801] +14:53:17 [ 3] [ 6] [010000] +14:53:17 [ 4] [ 12] [000100000000] +14:53:17 [ 7] [ 10] [0320145312] +14:53:17 [ 11] [ 6] [776015] +14:53:17 [ 12] [ 6] [145312] +14:53:17 [ 13] [ 4] [0320] +14:53:17 [ 15] [ 4] [0320] +14:53:17 [ 18] [ 4] [6011] +14:53:17 [ 22] [ 3] [900] +14:53:17 [ 25] [ 2] [02] +14:53:17 [ 28] [ 9] [D00002000] +14:53:17 [ 32] [ 6] [621354] +14:53:17 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:53:17 [ 37] [ 12] [507903344979] +14:53:17 [ 41] [ 8] [13001400] +14:53:17 [ 42] [ 15] [NATIVE ] +14:53:17 [ 43] [ 40] [Kham Unit Kham LAO] +14:53:17 [ 49] [ 3] [418] +14:53:17 [ 52] [ 16] [DC473392EDA7F48C] +14:53:17 ============================================================================ +14:53:17 + + +waiting on router queue for slot.... +14:53:17 Sending to : +14:53:17 ============================================================================ +14:53:17 ============================================================================ +14:53:17 Slot Id : <318> +14:53:17 Transaction Type : REQUEST +14:53:17 Received From : +14:53:17 ============================================================================ +14:53:17 FNo. Len. Field Value +14:53:17 ============================================================================ +14:53:17 [ 1] [ 4] [0200] +14:53:17 [ 2] [ 16] [6688990103743801] +14:53:17 [ 3] [ 6] [010000] +14:53:17 [ 4] [ 12] [000100000000] +14:53:17 [ 7] [ 10] [0320145312] +14:53:17 [ 11] [ 6] [776015] +14:53:17 [ 12] [ 6] [145312] +14:53:17 [ 13] [ 4] [0320] +14:53:17 [ 15] [ 4] [0320] +14:53:17 [ 18] [ 4] [6011] +14:53:17 [ 22] [ 3] [900] +14:53:17 [ 25] [ 2] [02] +14:53:17 [ 28] [ 9] [D00002000] +14:53:17 [ 32] [ 6] [621354] +14:53:17 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:53:17 [ 37] [ 12] [507903344979] +14:53:17 [ 41] [ 8] [13001400] +14:53:17 [ 42] [ 15] [NATIVE ] +14:53:17 [ 43] [ 40] [Kham Unit Kham LAO] +14:53:17 [ 49] [ 3] [418] +14:53:17 [ 52] [ 16] [B22DE698A99EA8B3] +14:53:17 ============================================================================ +14:53:17 + + +waiting on router queue for slot.... +14:53:17 Sending to : <4> +14:53:17 ============================================================================ +14:53:18 ============================================================================ +14:53:18 Slot Id : <318> +14:53:18 Transaction Type : RESPONSE +14:53:18 Received From : +14:53:18 ============================================================================ +14:53:18 FNo. Len. Field Value +14:53:18 ============================================================================ +14:53:18 [ 1] [ 4] [0210] +14:53:18 [ 2] [ 16] [6688990103743801] +14:53:18 [ 3] [ 6] [010000] +14:53:18 [ 4] [ 12] [000100000000] +14:53:18 [ 11] [ 6] [776015] +14:53:18 [ 12] [ 6] [145312] +14:53:18 [ 15] [ 4] [0320] +14:53:18 [ 18] [ 4] [6011] +14:53:18 [ 32] [ 6] [621354] +14:53:18 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:53:18 [ 37] [ 12] [507903344979] +14:53:18 [ 38] [ 6] [392861] +14:53:18 [ 39] [ 2] [00] +14:53:18 [ 41] [ 8] [13001400] +14:53:18 [ 49] [ 3] [418] +14:53:18 [ 54] [ 20] [0002418C000979550153] +14:53:18 ============================================================================ +14:53:18 Sending to : +14:53:18 ============================================================================ +14:53:18 + + +waiting on router queue for slot.... +14:53:19 ============================================================================ +14:53:19 Slot Id : <318> +14:53:19 Transaction Type : RESPONSE +14:53:19 Received From : +14:53:19 ============================================================================ +14:53:19 FNo. Len. Field Value +14:53:19 ============================================================================ +14:53:19 [ 1] [ 4] [0210] +14:53:19 [ 2] [ 16] [6688990103743801] +14:53:19 [ 3] [ 6] [010000] +14:53:19 [ 4] [ 12] [000100000000] +14:53:19 [ 11] [ 6] [776015] +14:53:19 [ 12] [ 6] [145312] +14:53:19 [ 15] [ 4] [0320] +14:53:19 [ 18] [ 4] [6011] +14:53:19 [ 32] [ 6] [621354] +14:53:19 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:53:19 [ 37] [ 12] [507903344979] +14:53:19 [ 38] [ 6] [392861] +14:53:19 [ 39] [ 2] [00] +14:53:19 [ 41] [ 8] [13001400] +14:53:19 [ 49] [ 3] [418] +14:53:19 [ 54] [ 20] [0002418C000979550153] +14:53:19 ============================================================================ +14:53:19 Calculate Source COMM Id = 0 +14:53:19 ============================================================================ +14:53:19 + + +waiting on router queue for slot.... +14:53:26 ============================================================================ +14:53:26 Slot Id : <322> +14:53:26 Transaction Type : REQUEST +14:53:26 Received From : +14:53:26 ============================================================================ +14:53:26 FNo. Len. Field Value +14:53:26 ============================================================================ +14:53:26 [ 1] [ 4] [0200] +14:53:26 [ 2] [ 16] [6213541000348337] +14:53:26 [ 3] [ 6] [010000] +14:53:26 [ 4] [ 12] [000100000000] +14:53:26 [ 7] [ 10] [0320075233] +14:53:26 [ 11] [ 6] [269857] +14:53:26 [ 12] [ 6] [145233] +14:53:26 [ 13] [ 4] [0320] +14:53:26 [ 14] [ 4] [4912] +14:53:26 [ 15] [ 4] [0320] +14:53:26 [ 18] [ 4] [6011] +14:53:26 [ 19] [ 3] [418] +14:53:26 [ 22] [ 3] [021] +14:53:26 [ 25] [ 2] [01] +14:53:26 [ 28] [ 9] [D00002000] +14:53:26 [ 32] [ 6] [180893] +14:53:26 [ 35] [ 32] [6213541000348337=491212014833941] +14:53:26 [ 37] [ 12] [507907269857] +14:53:26 [ 41] [ 8] [0368KMMX] +14:53:26 [ 42] [ 15] [999999 ] +14:53:26 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +14:53:26 [ 49] [ 3] [418] +14:53:26 [ 52] [ 16] [E04C3FC7437F3DB0] +14:53:26 ============================================================================ +14:53:26 + + +waiting on router queue for slot.... +14:53:26 Sending to : +14:53:26 ============================================================================ +14:53:26 Sending to : +14:53:26 ============================================================================ +14:53:26 ============================================================================ +14:53:26 Slot Id : <325> +14:53:26 Transaction Type : REQUEST +14:53:26 Received From : +14:53:26 ============================================================================ +14:53:26 FNo. Len. Field Value +14:53:26 ============================================================================ +14:53:26 [ 1] [ 4] [0800] +14:53:26 [ 2] [ 5] [02531] +14:53:26 [ 3] [ 6] [579148] +14:53:26 [ 7] [ 10] [0320075326] +14:53:26 [ 11] [ 6] [807276] +14:53:26 [ 15] [ 10] [0320075326] +14:53:26 [ 37] [ 11] [57914807276] +14:53:26 [ 70] [ 3] [001] +14:53:26 ============================================================================ +14:53:26 + + +waiting on router queue for slot.... +14:53:26 ============================================================================ +14:53:26 Slot Id : <325> +14:53:26 Transaction Type : RESPONSE +14:53:26 Received From : +14:53:26 ============================================================================ +14:53:26 FNo. Len. Field Value +14:53:26 ============================================================================ +14:53:26 [ 1] [ 4] [0810] +14:53:26 [ 7] [ 10] [0320075326] +14:53:26 [ 11] [ 6] [807276] +14:53:26 [ 15] [ 4] [0320] +14:53:26 [ 37] [ 12] [57914807276] +14:53:26 [ 39] [ 2] [00] +14:53:26 [ 70] [ 3] [001] +14:53:26 ============================================================================ +14:53:26 Sending to : +14:53:26 ============================================================================ +14:53:26 + + +waiting on router queue for slot.... +14:53:27 ============================================================================ +14:53:27 Slot Id : <322> +14:53:27 Transaction Type : REQUEST +14:53:27 Received From : +14:53:27 ============================================================================ +14:53:27 FNo. Len. Field Value +14:53:27 ============================================================================ +14:53:27 [ 1] [ 4] [0200] +14:53:27 [ 2] [ 16] [6213541000348337] +14:53:27 [ 3] [ 6] [010000] +14:53:27 [ 4] [ 12] [000100000000] +14:53:27 [ 7] [ 10] [0320075233] +14:53:27 [ 11] [ 6] [269857] +14:53:27 [ 12] [ 6] [145233] +14:53:27 [ 13] [ 4] [0320] +14:53:27 [ 14] [ 4] [4912] +14:53:27 [ 15] [ 4] [0320] +14:53:27 [ 18] [ 4] [6011] +14:53:27 [ 19] [ 3] [418] +14:53:27 [ 22] [ 3] [021] +14:53:27 [ 25] [ 2] [01] +14:53:27 [ 28] [ 9] [D00002000] +14:53:27 [ 32] [ 6] [180893] +14:53:27 [ 35] [ 32] [6213541000348337=491212014833941] +14:53:27 [ 37] [ 12] [507907269857] +14:53:27 [ 41] [ 8] [0368KMMX] +14:53:27 [ 42] [ 15] [999999 ] +14:53:27 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +14:53:27 [ 49] [ 3] [418] +14:53:27 [ 52] [ 16] [E04C3FC7437F3DB0] +14:53:27 ============================================================================ +14:53:27 + + +waiting on router queue for slot.... +14:53:27 Sending to : +14:53:27 ============================================================================ +14:53:27 ============================================================================ +14:53:27 Slot Id : <322> +14:53:27 Transaction Type : REQUEST +14:53:27 Received From : +14:53:27 ============================================================================ +14:53:27 FNo. Len. Field Value +14:53:27 ============================================================================ +14:53:27 [ 1] [ 4] [0200] +14:53:27 [ 2] [ 16] [6213541000348337] +14:53:27 [ 3] [ 6] [010000] +14:53:27 [ 4] [ 12] [000100000000] +14:53:27 [ 7] [ 10] [0320075233] +14:53:27 [ 11] [ 6] [269857] +14:53:27 [ 12] [ 6] [145233] +14:53:27 [ 13] [ 4] [0320] +14:53:27 [ 14] [ 4] [4912] +14:53:27 [ 15] [ 4] [0320] +14:53:27 [ 18] [ 4] [6011] +14:53:27 [ 19] [ 3] [418] +14:53:27 [ 22] [ 3] [021] +14:53:27 [ 25] [ 2] [01] +14:53:27 [ 28] [ 9] [D00002000] +14:53:27 [ 32] [ 6] [180893] +14:53:27 [ 35] [ 32] [6213541000348337=491212014833941] +14:53:27 [ 37] [ 12] [507907269857] +14:53:27 [ 41] [ 8] [0368KMMX] +14:53:27 [ 42] [ 15] [999999 ] +14:53:27 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +14:53:27 [ 49] [ 3] [418] +14:53:27 [ 52] [ 16] [F9AC64FDEDB23CF2] +14:53:27 ============================================================================ +14:53:27 + + +waiting on router queue for slot.... +14:53:27 Sending to : <0> +14:53:27 ============================================================================ +14:53:27 ============================================================================ +14:53:27 Slot Id : <322> +14:53:27 Transaction Type : RESPONSE +14:53:27 Received From : +14:53:27 ============================================================================ +14:53:27 FNo. Len. Field Value +14:53:27 ============================================================================ +14:53:27 [ 1] [ 4] [0210] +14:53:27 [ 2] [ 16] [6213541000348337] +14:53:27 [ 3] [ 6] [010000] +14:53:27 [ 4] [ 12] [000100000000] +14:53:27 [ 7] [ 10] [0320075233] +14:53:27 [ 11] [ 6] [269857] +14:53:27 [ 12] [ 6] [145233] +14:53:27 [ 13] [ 4] [0320] +14:53:27 [ 15] [ 4] [0320] +14:53:27 [ 18] [ 4] [6011] +14:53:27 [ 19] [ 3] [418] +14:53:27 [ 32] [ 6] [180893] +14:53:27 [ 35] [ 32] [6213541000348337=491212014833941] +14:53:27 [ 37] [ 12] [507907269857] +14:53:27 [ 38] [ 6] [387841] +14:53:27 [ 39] [ 2] [00] +14:53:27 [ 41] [ 8] [0368KMMX] +14:53:27 [ 49] [ 3] [418] +14:53:27 [ 54] [ 40] [0001418C0001072412900002418C000107241290] +14:53:27 ============================================================================ +14:53:27 Sending to : +14:53:27 ============================================================================ +14:53:27 + + +waiting on router queue for slot.... +14:53:29 ============================================================================ +14:53:29 Slot Id : <322> +14:53:29 Transaction Type : RESPONSE +14:53:29 Received From : +14:53:29 ============================================================================ +14:53:29 FNo. Len. Field Value +14:53:29 ============================================================================ +14:53:29 [ 1] [ 4] [0210] +14:53:29 [ 2] [ 16] [6213541000348337] +14:53:29 [ 3] [ 6] [010000] +14:53:29 [ 4] [ 12] [000100000000] +14:53:29 [ 7] [ 10] [0320075233] +14:53:29 [ 11] [ 6] [269857] +14:53:29 [ 12] [ 6] [145233] +14:53:29 [ 13] [ 4] [0320] +14:53:29 [ 15] [ 4] [0320] +14:53:29 [ 18] [ 4] [6011] +14:53:29 [ 19] [ 3] [418] +14:53:29 [ 32] [ 6] [180893] +14:53:29 [ 35] [ 32] [6213541000348337=491212014833941] +14:53:29 [ 37] [ 12] [507907269857] +14:53:29 [ 38] [ 6] [387841] +14:53:29 [ 39] [ 2] [00] +14:53:29 [ 41] [ 8] [0368KMMX] +14:53:29 [ 49] [ 3] [418] +14:53:29 [ 54] [ 40] [0001418C0001072412900002418C000107241290] +14:53:29 ============================================================================ +14:53:29 Calculate Source COMM Id = 2 +14:53:29 ============================================================================ +14:53:29 + + +waiting on router queue for slot.... +14:53:35 ============================================================================ +14:53:35 Slot Id : <304> +14:53:35 Transaction Type : REQUEST +14:53:35 Received From : +14:53:35 ============================================================================ +14:53:35 FNo. Len. Field Value +14:53:35 ============================================================================ +14:53:35 [ 1] [ 4] [0200] +14:53:35 [ 2] [ 16] [1808930600042188] +14:53:35 [ 3] [ 6] [301000] +14:53:35 [ 4] [ 12] [000000000000] +14:53:35 [ 7] [ 10] [0320145330] +14:53:35 [ 11] [ 6] [776091] +14:53:35 [ 12] [ 6] [145330] +14:53:35 [ 13] [ 4] [0320] +14:53:35 [ 15] [ 4] [0320] +14:53:35 [ 18] [ 4] [6011] +14:53:35 [ 22] [ 3] [900] +14:53:35 [ 25] [ 2] [02] +14:53:35 [ 28] [ 9] [D00000000] +14:53:35 [ 32] [ 6] [621354] +14:53:35 [ 35] [ 27] [1808930600042188=1803500207] +14:53:35 [ 37] [ 12] [507904377225] +14:53:35 [ 41] [ 8] [03003600] +14:53:35 [ 42] [ 15] [NATIVE ] +14:53:35 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +14:53:35 [ 49] [ 3] [418] +14:53:35 [ 52] [ 16] [A1D6828C96D52426] +14:53:35 ============================================================================ +14:53:35 + + +waiting on router queue for slot.... +14:53:35 Sending to : +14:53:35 ============================================================================ +14:53:35 Sending to : +14:53:35 ============================================================================ +14:53:35 ============================================================================ +14:53:35 Slot Id : <304> +14:53:35 Transaction Type : REQUEST +14:53:35 Received From : +14:53:35 ============================================================================ +14:53:35 FNo. Len. Field Value +14:53:35 ============================================================================ +14:53:35 [ 1] [ 4] [0200] +14:53:35 [ 2] [ 16] [1808930600042188] +14:53:35 [ 3] [ 6] [301000] +14:53:35 [ 4] [ 12] [000000000000] +14:53:35 [ 7] [ 10] [0320145330] +14:53:35 [ 11] [ 6] [776091] +14:53:35 [ 12] [ 6] [145330] +14:53:35 [ 13] [ 4] [0320] +14:53:35 [ 15] [ 4] [0320] +14:53:35 [ 18] [ 4] [6011] +14:53:35 [ 22] [ 3] [900] +14:53:35 [ 25] [ 2] [02] +14:53:35 [ 28] [ 9] [D00000000] +14:53:35 [ 32] [ 6] [621354] +14:53:35 [ 35] [ 27] [1808930600042188=1803500207] +14:53:35 [ 37] [ 12] [507904377225] +14:53:35 [ 41] [ 8] [03003600] +14:53:35 [ 42] [ 15] [NATIVE ] +14:53:35 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +14:53:35 [ 49] [ 3] [418] +14:53:35 [ 52] [ 16] [A1D6828C96D52426] +14:53:35 ============================================================================ +14:53:35 + + +waiting on router queue for slot.... +14:53:35 Sending to : +14:53:35 ============================================================================ +14:53:35 ============================================================================ +14:53:35 Slot Id : <304> +14:53:35 Transaction Type : REQUEST +14:53:35 Received From : +14:53:35 ============================================================================ +14:53:35 FNo. Len. Field Value +14:53:35 ============================================================================ +14:53:35 [ 1] [ 4] [0200] +14:53:35 [ 2] [ 16] [1808930600042188] +14:53:35 [ 3] [ 6] [301000] +14:53:35 [ 4] [ 12] [000000000000] +14:53:35 [ 7] [ 10] [0320145330] +14:53:35 [ 11] [ 6] [776091] +14:53:35 [ 12] [ 6] [145330] +14:53:35 [ 13] [ 4] [0320] +14:53:35 [ 15] [ 4] [0320] +14:53:35 [ 18] [ 4] [6011] +14:53:35 [ 22] [ 3] [900] +14:53:35 [ 25] [ 2] [02] +14:53:35 [ 28] [ 9] [D00000000] +14:53:35 [ 32] [ 6] [621354] +14:53:35 [ 35] [ 27] [1808930600042188=1803500207] +14:53:35 [ 37] [ 12] [507904377225] +14:53:35 [ 41] [ 8] [03003600] +14:53:35 [ 42] [ 15] [NATIVE ] +14:53:35 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +14:53:35 [ 49] [ 3] [418] +14:53:35 [ 52] [ 16] [13E822ED45555C06] +14:53:35 ============================================================================ +14:53:35 + + +waiting on router queue for slot.... +14:53:35 Sending to : <2> +14:53:35 ============================================================================ +14:53:36 ============================================================================ +14:53:36 Slot Id : <315> +14:53:36 Transaction Type : REQUEST +14:53:36 Received From : +14:53:36 ============================================================================ +14:53:36 FNo. Len. Field Value +14:53:36 ============================================================================ +14:53:36 [ 1] [ 4] [0800] +14:53:36 [ 7] [ 10] [0320220524] +14:53:36 [ 11] [ 6] [150524] +14:53:36 [ 37] [ 12] [57915150524] +14:53:36 [ 70] [ 3] [301] +14:53:36 ============================================================================ +14:53:36 + + +waiting on router queue for slot.... +14:53:36 Sending to : +14:53:36 ============================================================================ +14:53:36 ============================================================================ +14:53:36 Slot Id : <315> +14:53:36 Transaction Type : RESPONSE +14:53:36 Received From : +14:53:36 ============================================================================ +14:53:36 FNo. Len. Field Value +14:53:36 ============================================================================ +14:53:36 [ 1] [ 4] [0810] +14:53:36 [ 7] [ 10] [0320220524] +14:53:36 [ 11] [ 6] [150524] +14:53:36 [ 37] [ 12] [579151505240] +14:53:36 [ 39] [ 2] [00] +14:53:36 [ 70] [ 3] [810] +14:53:36 ============================================================================ +14:53:36 Calculate Source COMM Id = 6 +14:53:36 ============================================================================ +14:53:36 + + +waiting on router queue for slot.... +14:53:38 ============================================================================ +14:53:38 Slot Id : <304> +14:53:38 Transaction Type : RESPONSE +14:53:38 Received From : +14:53:38 ============================================================================ +14:53:38 FNo. Len. Field Value +14:53:38 ============================================================================ +14:53:38 [ 1] [ 4] [0210] +14:53:38 [ 2] [ 16] [1808930600042188] +14:53:38 [ 3] [ 6] [301000] +14:53:38 [ 7] [ 10] [0320145330] +14:53:38 [ 11] [ 6] [776091] +14:53:38 [ 12] [ 6] [145330] +14:53:38 [ 13] [ 4] [0320] +14:53:38 [ 14] [ 4] [1803] +14:53:38 [ 19] [ 3] [418] +14:53:38 [ 32] [ 6] [621354] +14:53:38 [ 37] [ 12] [507904377225] +14:53:38 [ 38] [ 6] [776091] +14:53:38 [ 39] [ 2] [00] +14:53:38 [ 41] [ 8] [03003600] +14:53:38 [ 49] [ 3] [418] +14:53:38 [ 52] [ 16] [13E822ED45555C06] +14:53:38 [ 54] [ 20] [1002418C000012169700] +14:53:38 ============================================================================ +14:53:38 Sending to : +14:53:38 ============================================================================ +14:53:38 + + +waiting on router queue for slot.... +14:53:40 ============================================================================ +14:53:40 Slot Id : <304> +14:53:40 Transaction Type : RESPONSE +14:53:40 Received From : +14:53:40 ============================================================================ +14:53:40 FNo. Len. Field Value +14:53:40 ============================================================================ +14:53:40 [ 1] [ 4] [0210] +14:53:40 [ 2] [ 16] [1808930600042188] +14:53:40 [ 3] [ 6] [301000] +14:53:40 [ 7] [ 10] [0320145330] +14:53:40 [ 11] [ 6] [776091] +14:53:40 [ 12] [ 6] [145330] +14:53:40 [ 13] [ 4] [0320] +14:53:40 [ 14] [ 4] [1803] +14:53:40 [ 19] [ 3] [418] +14:53:40 [ 32] [ 6] [621354] +14:53:40 [ 37] [ 12] [507904377225] +14:53:40 [ 38] [ 6] [776091] +14:53:40 [ 39] [ 2] [00] +14:53:40 [ 41] [ 8] [03003600] +14:53:40 [ 49] [ 3] [418] +14:53:40 [ 52] [ 16] [13E822ED45555C06] +14:53:40 [ 54] [ 20] [1002418C000012169700] +14:53:40 ============================================================================ +14:53:40 Calculate Source COMM Id = 0 +14:53:40 ============================================================================ +14:53:40 + + +waiting on router queue for slot.... +14:53:47 ============================================================================ +14:53:47 Slot Id : <285> +14:53:47 Transaction Type : REQUEST +14:53:47 Received From : +14:53:47 ============================================================================ +14:53:47 FNo. Len. Field Value +14:53:47 ============================================================================ +14:53:47 [ 1] [ 4] [0800] +14:53:47 [ 7] [ 10] [0320075254] +14:53:47 [ 11] [ 6] [156876] +14:53:47 [ 70] [ 3] [301] +14:53:47 ============================================================================ +14:53:47 + + +waiting on router queue for slot.... +14:53:47 Sending to : +14:53:47 ============================================================================ +14:53:47 ============================================================================ +14:53:47 Slot Id : <285> +14:53:47 Transaction Type : RESPONSE +14:53:47 Received From : +14:53:47 ============================================================================ +14:53:47 FNo. Len. Field Value +14:53:47 ============================================================================ +14:53:47 [ 1] [ 4] [0810] +14:53:47 [ 7] [ 10] [0320075254] +14:53:47 [ 11] [ 6] [156876] +14:53:47 [ 39] [ 2] [00] +14:53:47 [ 70] [ 3] [301] +14:53:47 ============================================================================ +14:53:47 Calculate Source COMM Id = 2 +14:53:47 ============================================================================ +14:53:47 + + +waiting on router queue for slot.... +14:53:56 ============================================================================ +14:53:56 Slot Id : <297> +14:53:56 Transaction Type : REQUEST +14:53:56 Received From : +14:53:56 ============================================================================ +14:53:56 FNo. Len. Field Value +14:53:56 ============================================================================ +14:53:56 [ 1] [ 4] [0200] +14:53:56 [ 2] [ 16] [6688990104344203] +14:53:56 [ 3] [ 6] [012000] +14:53:56 [ 4] [ 12] [000010000000] +14:53:56 [ 7] [ 10] [0320145352] +14:53:56 [ 11] [ 6] [776176] +14:53:56 [ 12] [ 6] [145352] +14:53:56 [ 13] [ 4] [0320] +14:53:56 [ 15] [ 4] [0320] +14:53:56 [ 18] [ 4] [6011] +14:53:56 [ 22] [ 3] [900] +14:53:56 [ 25] [ 2] [02] +14:53:56 [ 28] [ 9] [D00002000] +14:53:56 [ 32] [ 6] [621354] +14:53:56 [ 35] [ 37] [6688990104344203=43031231420315600000] +14:53:56 [ 37] [ 12] [507902916577] +14:53:56 [ 41] [ 8] [12001400] +14:53:56 [ 42] [ 15] [NATIVE ] +14:53:56 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +14:53:56 [ 49] [ 3] [418] +14:53:56 [ 52] [ 16] [70ECA06889889216] +14:53:56 ============================================================================ +14:53:56 + + +waiting on router queue for slot.... +14:53:56 Sending to : +14:53:56 ============================================================================ +14:53:56 Sending to : +14:53:56 ============================================================================ +14:53:56 ============================================================================ +14:53:56 Slot Id : <297> +14:53:56 Transaction Type : REQUEST +14:53:56 Received From : +14:53:56 ============================================================================ +14:53:56 FNo. Len. Field Value +14:53:56 ============================================================================ +14:53:56 [ 1] [ 4] [0200] +14:53:56 [ 2] [ 16] [6688990104344203] +14:53:56 [ 3] [ 6] [012000] +14:53:56 [ 4] [ 12] [000010000000] +14:53:56 [ 7] [ 10] [0320145352] +14:53:56 [ 11] [ 6] [776176] +14:53:56 [ 12] [ 6] [145352] +14:53:56 [ 13] [ 4] [0320] +14:53:56 [ 15] [ 4] [0320] +14:53:56 [ 18] [ 4] [6011] +14:53:56 [ 22] [ 3] [900] +14:53:56 [ 25] [ 2] [02] +14:53:56 [ 28] [ 9] [D00002000] +14:53:56 [ 32] [ 6] [621354] +14:53:56 [ 35] [ 37] [6688990104344203=43031231420315600000] +14:53:56 [ 37] [ 12] [507902916577] +14:53:56 [ 41] [ 8] [12001400] +14:53:56 [ 42] [ 15] [NATIVE ] +14:53:56 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +14:53:56 [ 49] [ 3] [418] +14:53:56 [ 52] [ 16] [70ECA06889889216] +14:53:56 ============================================================================ +14:53:56 + + +waiting on router queue for slot.... +14:53:56 Sending to : +14:53:56 ============================================================================ +14:53:57 ============================================================================ +14:53:57 Slot Id : <297> +14:53:57 Transaction Type : REQUEST +14:53:57 Received From : +14:53:57 ============================================================================ +14:53:57 FNo. Len. Field Value +14:53:57 ============================================================================ +14:53:57 [ 1] [ 4] [0200] +14:53:57 [ 2] [ 16] [6688990104344203] +14:53:57 [ 3] [ 6] [012000] +14:53:57 [ 4] [ 12] [000010000000] +14:53:57 [ 7] [ 10] [0320145352] +14:53:57 [ 11] [ 6] [776176] +14:53:57 [ 12] [ 6] [145352] +14:53:57 [ 13] [ 4] [0320] +14:53:57 [ 15] [ 4] [0320] +14:53:57 [ 18] [ 4] [6011] +14:53:57 [ 22] [ 3] [900] +14:53:57 [ 25] [ 2] [02] +14:53:57 [ 28] [ 9] [D00002000] +14:53:57 [ 32] [ 6] [621354] +14:53:57 [ 35] [ 37] [6688990104344203=43031231420315600000] +14:53:57 [ 37] [ 12] [507902916577] +14:53:57 [ 41] [ 8] [12001400] +14:53:57 [ 42] [ 15] [NATIVE ] +14:53:57 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +14:53:57 [ 49] [ 3] [418] +14:53:57 [ 52] [ 16] [88F663B3FE2EEA1E] +14:53:57 ============================================================================ +14:53:57 + + +waiting on router queue for slot.... +14:53:57 Sending to : <4> +14:53:57 ============================================================================ +14:53:58 ============================================================================ +14:53:58 Slot Id : <289> +14:53:58 Transaction Type : REQUEST +14:53:58 Received From : +14:53:58 ============================================================================ +14:53:58 FNo. Len. Field Value +14:53:58 ============================================================================ +14:53:58 [ 1] [ 4] [0800] +14:53:58 [ 7] [ 10] [0320075305] +14:53:58 [ 11] [ 6] [156877] +14:53:58 [ 70] [ 3] [301] +14:53:58 ============================================================================ +14:53:58 + + +waiting on router queue for slot.... +14:53:58 Sending to : +14:53:58 ============================================================================ +14:53:58 ============================================================================ +14:53:58 Slot Id : <289> +14:53:58 Transaction Type : RESPONSE +14:53:58 Received From : +14:53:58 ============================================================================ +14:53:58 FNo. Len. Field Value +14:53:58 ============================================================================ +14:53:58 [ 1] [ 4] [0810] +14:53:58 [ 7] [ 10] [0320075305] +14:53:58 [ 11] [ 6] [156877] +14:53:58 [ 39] [ 2] [00] +14:53:58 [ 70] [ 3] [301] +14:53:58 ============================================================================ +14:53:58 Calculate Source COMM Id = 2 +14:53:58 ============================================================================ +14:53:58 + + +waiting on router queue for slot.... +14:53:58 ============================================================================ +14:53:58 Slot Id : <297> +14:53:58 Transaction Type : RESPONSE +14:53:58 Received From : +14:53:58 ============================================================================ +14:53:58 FNo. Len. Field Value +14:53:58 ============================================================================ +14:53:58 [ 1] [ 4] [0210] +14:53:58 [ 2] [ 16] [6688990104344203] +14:53:58 [ 3] [ 6] [012000] +14:53:58 [ 4] [ 12] [000010000000] +14:53:58 [ 11] [ 6] [776176] +14:53:58 [ 12] [ 6] [145352] +14:53:58 [ 15] [ 4] [0320] +14:53:58 [ 18] [ 4] [6011] +14:53:58 [ 32] [ 6] [621354] +14:53:58 [ 35] [ 37] [6688990104344203=43031231420315600000] +14:53:58 [ 37] [ 12] [507902916577] +14:53:58 [ 38] [ 6] [206666] +14:53:58 [ 39] [ 2] [00] +14:53:58 [ 41] [ 8] [12001400] +14:53:58 [ 49] [ 3] [418] +14:53:58 [ 54] [ 20] [2002418C000173528339] +14:53:58 ============================================================================ +14:53:58 Sending to : +14:53:58 ============================================================================ +14:53:58 + + +waiting on router queue for slot.... +14:53:59 ============================================================================ +14:53:59 Slot Id : <297> +14:53:59 Transaction Type : RESPONSE +14:53:59 Received From : +14:53:59 ============================================================================ +14:53:59 FNo. Len. Field Value +14:53:59 ============================================================================ +14:53:59 [ 1] [ 4] [0210] +14:53:59 [ 2] [ 16] [6688990104344203] +14:53:59 [ 3] [ 6] [012000] +14:53:59 [ 4] [ 12] [000010000000] +14:53:59 [ 11] [ 6] [776176] +14:53:59 [ 12] [ 6] [145352] +14:53:59 [ 15] [ 4] [0320] +14:53:59 [ 18] [ 4] [6011] +14:53:59 [ 32] [ 6] [621354] +14:53:59 [ 35] [ 37] [6688990104344203=43031231420315600000] +14:53:59 [ 37] [ 12] [507902916577] +14:53:59 [ 38] [ 6] [206666] +14:53:59 [ 39] [ 2] [00] +14:53:59 [ 41] [ 8] [12001400] +14:53:59 [ 49] [ 3] [418] +14:53:59 [ 54] [ 20] [2002418C000173528339] +14:53:59 ============================================================================ +14:53:59 Calculate Source COMM Id = 0 +14:53:59 ============================================================================ +14:53:59 + + +waiting on router queue for slot.... +14:54:13 ============================================================================ +14:54:13 Slot Id : <326> +14:54:13 Transaction Type : REQUEST +14:54:13 Received From : +14:54:13 ============================================================================ +14:54:13 FNo. Len. Field Value +14:54:13 ============================================================================ +14:54:13 [ 1] [ 4] [0800] +14:54:13 [ 7] [ 10] [0320075320] +14:54:13 [ 11] [ 6] [156878] +14:54:13 [ 70] [ 3] [301] +14:54:13 ============================================================================ +14:54:13 + + +waiting on router queue for slot.... +14:54:13 Sending to : +14:54:13 ============================================================================ +14:54:13 ============================================================================ +14:54:13 Slot Id : <326> +14:54:13 Transaction Type : RESPONSE +14:54:13 Received From : +14:54:13 ============================================================================ +14:54:13 FNo. Len. Field Value +14:54:13 ============================================================================ +14:54:13 [ 1] [ 4] [0810] +14:54:13 [ 7] [ 10] [0320075320] +14:54:13 [ 11] [ 6] [156878] +14:54:13 [ 39] [ 2] [00] +14:54:13 [ 70] [ 3] [301] +14:54:13 ============================================================================ +14:54:13 Calculate Source COMM Id = 2 +14:54:13 ============================================================================ +14:54:13 + + +waiting on router queue for slot.... +14:54:15 ============================================================================ +14:54:15 Slot Id : <291> +14:54:15 Transaction Type : REQUEST +14:54:15 Received From : +14:54:15 ============================================================================ +14:54:15 FNo. Len. Field Value +14:54:15 ============================================================================ +14:54:15 [ 1] [ 4] [0200] +14:54:15 [ 2] [ 16] [1808930600042188] +14:54:15 [ 3] [ 6] [011000] +14:54:15 [ 4] [ 12] [000010000000] +14:54:15 [ 7] [ 10] [0320145411] +14:54:15 [ 11] [ 6] [776256] +14:54:15 [ 12] [ 6] [145411] +14:54:15 [ 13] [ 4] [0320] +14:54:15 [ 15] [ 4] [0320] +14:54:15 [ 18] [ 4] [6011] +14:54:15 [ 22] [ 3] [900] +14:54:15 [ 25] [ 2] [02] +14:54:15 [ 28] [ 9] [D00002000] +14:54:15 [ 32] [ 6] [621354] +14:54:15 [ 35] [ 27] [1808930600042188=1803500207] +14:54:15 [ 37] [ 12] [507904377227] +14:54:15 [ 41] [ 8] [03003600] +14:54:15 [ 42] [ 15] [NATIVE ] +14:54:15 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +14:54:15 [ 49] [ 3] [418] +14:54:15 [ 52] [ 16] [A1D6828C96D52426] +14:54:15 ============================================================================ +14:54:15 + + +waiting on router queue for slot.... +14:54:15 Sending to : +14:54:15 ============================================================================ +14:54:15 Sending to : +14:54:15 ============================================================================ +14:54:16 ============================================================================ +14:54:16 Slot Id : <291> +14:54:16 Transaction Type : REQUEST +14:54:16 Received From : +14:54:16 ============================================================================ +14:54:16 FNo. Len. Field Value +14:54:16 ============================================================================ +14:54:16 [ 1] [ 4] [0200] +14:54:16 [ 2] [ 16] [1808930600042188] +14:54:16 [ 3] [ 6] [011000] +14:54:16 [ 4] [ 12] [000010000000] +14:54:16 [ 7] [ 10] [0320145411] +14:54:16 [ 11] [ 6] [776256] +14:54:16 [ 12] [ 6] [145411] +14:54:16 [ 13] [ 4] [0320] +14:54:16 [ 15] [ 4] [0320] +14:54:16 [ 18] [ 4] [6011] +14:54:16 [ 22] [ 3] [900] +14:54:16 [ 25] [ 2] [02] +14:54:16 [ 28] [ 9] [D00002000] +14:54:16 [ 32] [ 6] [621354] +14:54:16 [ 35] [ 27] [1808930600042188=1803500207] +14:54:16 [ 37] [ 12] [507904377227] +14:54:16 [ 41] [ 8] [03003600] +14:54:16 [ 42] [ 15] [NATIVE ] +14:54:16 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +14:54:16 [ 49] [ 3] [418] +14:54:16 [ 52] [ 16] [A1D6828C96D52426] +14:54:16 ============================================================================ +14:54:16 + + +waiting on router queue for slot.... +14:54:16 Sending to : +14:54:16 ============================================================================ +14:54:16 ============================================================================ +14:54:16 Slot Id : <291> +14:54:16 Transaction Type : REQUEST +14:54:16 Received From : +14:54:16 ============================================================================ +14:54:16 FNo. Len. Field Value +14:54:16 ============================================================================ +14:54:16 [ 1] [ 4] [0200] +14:54:16 [ 2] [ 16] [1808930600042188] +14:54:16 [ 3] [ 6] [011000] +14:54:16 [ 4] [ 12] [000010000000] +14:54:16 [ 7] [ 10] [0320145411] +14:54:16 [ 11] [ 6] [776256] +14:54:16 [ 12] [ 6] [145411] +14:54:16 [ 13] [ 4] [0320] +14:54:16 [ 15] [ 4] [0320] +14:54:16 [ 18] [ 4] [6011] +14:54:16 [ 22] [ 3] [900] +14:54:16 [ 25] [ 2] [02] +14:54:16 [ 28] [ 9] [D00002000] +14:54:16 [ 32] [ 6] [621354] +14:54:16 [ 35] [ 27] [1808930600042188=1803500207] +14:54:16 [ 37] [ 12] [507904377227] +14:54:16 [ 41] [ 8] [03003600] +14:54:16 [ 42] [ 15] [NATIVE ] +14:54:16 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +14:54:16 [ 49] [ 3] [418] +14:54:16 [ 52] [ 16] [13E822ED45555C06] +14:54:16 ============================================================================ +14:54:16 + + +waiting on router queue for slot.... +14:54:16 Sending to : <2> +14:54:16 ============================================================================ +14:54:18 ============================================================================ +14:54:18 Slot Id : <301> +14:54:18 Transaction Type : REQUEST +14:54:18 Received From : +14:54:18 ============================================================================ +14:54:18 FNo. Len. Field Value +14:54:18 ============================================================================ +14:54:18 [ 1] [ 4] [0200] +14:54:18 [ 2] [ 16] [6688990103617203] +14:54:18 [ 3] [ 6] [010000] +14:54:18 [ 4] [ 12] [000010000000] +14:54:18 [ 7] [ 10] [0320145414] +14:54:18 [ 11] [ 6] [776269] +14:54:18 [ 12] [ 6] [145414] +14:54:18 [ 13] [ 4] [0320] +14:54:18 [ 15] [ 4] [0320] +14:54:18 [ 18] [ 4] [6011] +14:54:18 [ 22] [ 3] [900] +14:54:18 [ 25] [ 2] [02] +14:54:18 [ 28] [ 9] [D00002000] +14:54:18 [ 32] [ 6] [621354] +14:54:18 [ 35] [ 37] [6688990103617203=43011231720337700000] +14:54:18 [ 37] [ 12] [507903699684] +14:54:18 [ 41] [ 8] [05004500] +14:54:18 [ 42] [ 15] [NATIVE ] +14:54:18 [ 43] [ 40] [Tourism LuangprabangLAO] +14:54:18 [ 49] [ 3] [418] +14:54:18 [ 52] [ 16] [C79FBBE1C3B3CC6C] +14:54:18 ============================================================================ +14:54:18 + + +waiting on router queue for slot.... +14:54:18 Sending to : +14:54:18 ============================================================================ +14:54:18 Sending to : +14:54:18 ============================================================================ +14:54:19 ============================================================================ +14:54:19 Slot Id : <301> +14:54:19 Transaction Type : REQUEST +14:54:19 Received From : +14:54:19 ============================================================================ +14:54:19 FNo. Len. Field Value +14:54:19 ============================================================================ +14:54:19 [ 1] [ 4] [0200] +14:54:19 [ 2] [ 16] [6688990103617203] +14:54:19 [ 3] [ 6] [010000] +14:54:19 [ 4] [ 12] [000010000000] +14:54:19 [ 7] [ 10] [0320145414] +14:54:19 [ 11] [ 6] [776269] +14:54:19 [ 12] [ 6] [145414] +14:54:19 [ 13] [ 4] [0320] +14:54:19 [ 15] [ 4] [0320] +14:54:19 [ 18] [ 4] [6011] +14:54:19 [ 22] [ 3] [900] +14:54:19 [ 25] [ 2] [02] +14:54:19 [ 28] [ 9] [D00002000] +14:54:19 [ 32] [ 6] [621354] +14:54:19 [ 35] [ 37] [6688990103617203=43011231720337700000] +14:54:19 [ 37] [ 12] [507903699684] +14:54:19 [ 41] [ 8] [05004500] +14:54:19 [ 42] [ 15] [NATIVE ] +14:54:19 [ 43] [ 40] [Tourism LuangprabangLAO] +14:54:19 [ 49] [ 3] [418] +14:54:19 [ 52] [ 16] [C79FBBE1C3B3CC6C] +14:54:19 ============================================================================ +14:54:19 + + +waiting on router queue for slot.... +14:54:19 Sending to : +14:54:19 ============================================================================ +14:54:19 ============================================================================ +14:54:19 Slot Id : <301> +14:54:19 Transaction Type : REQUEST +14:54:19 Received From : +14:54:19 ============================================================================ +14:54:19 FNo. Len. Field Value +14:54:19 ============================================================================ +14:54:19 [ 1] [ 4] [0200] +14:54:19 [ 2] [ 16] [6688990103617203] +14:54:19 [ 3] [ 6] [010000] +14:54:19 [ 4] [ 12] [000010000000] +14:54:19 [ 7] [ 10] [0320145414] +14:54:19 [ 11] [ 6] [776269] +14:54:19 [ 12] [ 6] [145414] +14:54:19 [ 13] [ 4] [0320] +14:54:19 [ 15] [ 4] [0320] +14:54:19 [ 18] [ 4] [6011] +14:54:19 [ 22] [ 3] [900] +14:54:19 [ 25] [ 2] [02] +14:54:19 [ 28] [ 9] [D00002000] +14:54:19 [ 32] [ 6] [621354] +14:54:19 [ 35] [ 37] [6688990103617203=43011231720337700000] +14:54:19 [ 37] [ 12] [507903699684] +14:54:19 [ 41] [ 8] [05004500] +14:54:19 [ 42] [ 15] [NATIVE ] +14:54:19 [ 43] [ 40] [Tourism LuangprabangLAO] +14:54:19 [ 49] [ 3] [418] +14:54:19 [ 52] [ 16] [4C55901F93ED8AEC] +14:54:19 ============================================================================ +14:54:19 + + +waiting on router queue for slot.... +14:54:19 Sending to : <4> +14:54:19 ============================================================================ +14:54:20 ============================================================================ +14:54:20 Slot Id : <301> +14:54:20 Transaction Type : RESPONSE +14:54:20 Received From : +14:54:20 ============================================================================ +14:54:20 FNo. Len. Field Value +14:54:20 ============================================================================ +14:54:20 [ 1] [ 4] [0210] +14:54:20 [ 2] [ 16] [6688990103617203] +14:54:20 [ 3] [ 6] [010000] +14:54:20 [ 4] [ 12] [000010000000] +14:54:20 [ 11] [ 6] [776269] +14:54:20 [ 12] [ 6] [145414] +14:54:20 [ 15] [ 4] [0320] +14:54:20 [ 18] [ 4] [6011] +14:54:20 [ 32] [ 6] [621354] +14:54:20 [ 35] [ 37] [6688990103617203=43011231720337700000] +14:54:20 [ 37] [ 12] [507903699684] +14:54:20 [ 38] [ 6] [272039] +14:54:20 [ 39] [ 2] [00] +14:54:20 [ 41] [ 8] [05004500] +14:54:20 [ 49] [ 3] [418] +14:54:20 [ 54] [ 20] [0002418C001113442836] +14:54:20 ============================================================================ +14:54:20 Sending to : +14:54:20 ============================================================================ +14:54:20 + + +waiting on router queue for slot.... +14:54:20 ============================================================================ +14:54:20 Slot Id : <291> +14:54:20 Transaction Type : RESPONSE +14:54:20 Received From : +14:54:20 ============================================================================ +14:54:20 FNo. Len. Field Value +14:54:20 ============================================================================ +14:54:20 [ 1] [ 4] [0210] +14:54:20 [ 2] [ 16] [1808930600042188] +14:54:20 [ 3] [ 6] [011000] +14:54:20 [ 4] [ 12] [000010000000] +14:54:20 [ 6] [ 12] [000010000000] +14:54:20 [ 7] [ 10] [0320145411] +14:54:20 [ 11] [ 6] [776256] +14:54:20 [ 12] [ 6] [145411] +14:54:20 [ 13] [ 4] [0320] +14:54:20 [ 18] [ 4] [6011] +14:54:20 [ 19] [ 3] [418] +14:54:20 [ 22] [ 3] [021] +14:54:20 [ 32] [ 6] [621354] +14:54:20 [ 35] [ 27] [1808930600042188=1803500207] +14:54:20 [ 37] [ 12] [507904377227] +14:54:20 [ 38] [ 6] [776256] +14:54:20 [ 39] [ 2] [00] +14:54:20 [ 41] [ 8] [03003600] +14:54:20 [ 49] [ 3] [418] +14:54:20 [ 52] [ 16] [13E822ED45555C06] +14:54:20 [ 54] [ 20] [1001418C000001969700] +14:54:20 ============================================================================ +14:54:20 Sending to : +14:54:20 ============================================================================ +14:54:20 + + +waiting on router queue for slot.... +14:54:21 ============================================================================ +14:54:21 Slot Id : <301> +14:54:21 Transaction Type : RESPONSE +14:54:21 Received From : +14:54:21 ============================================================================ +14:54:21 FNo. Len. Field Value +14:54:21 ============================================================================ +14:54:21 [ 1] [ 4] [0210] +14:54:21 [ 2] [ 16] [6688990103617203] +14:54:21 [ 3] [ 6] [010000] +14:54:21 [ 4] [ 12] [000010000000] +14:54:21 [ 11] [ 6] [776269] +14:54:21 [ 12] [ 6] [145414] +14:54:21 [ 15] [ 4] [0320] +14:54:21 [ 18] [ 4] [6011] +14:54:21 [ 32] [ 6] [621354] +14:54:21 [ 35] [ 37] [6688990103617203=43011231720337700000] +14:54:21 [ 37] [ 12] [507903699684] +14:54:21 [ 38] [ 6] [272039] +14:54:21 [ 39] [ 2] [00] +14:54:21 [ 41] [ 8] [05004500] +14:54:21 [ 49] [ 3] [418] +14:54:21 [ 54] [ 20] [0002418C001113442836] +14:54:21 ============================================================================ +14:54:21 Calculate Source COMM Id = 0 +14:54:21 ============================================================================ +14:54:21 + + +waiting on router queue for slot.... +14:54:22 ============================================================================ +14:54:22 Slot Id : <327> +14:54:22 Transaction Type : REQUEST +14:54:22 Received From : +14:54:22 ============================================================================ +14:54:22 FNo. Len. Field Value +14:54:22 ============================================================================ +14:54:22 [ 1] [ 4] [0200] +14:54:22 [ 2] [ 16] [6213541000348337] +14:54:22 [ 3] [ 6] [010000] +14:54:22 [ 4] [ 12] [000050000000] +14:54:22 [ 7] [ 10] [0320075329] +14:54:22 [ 11] [ 6] [269862] +14:54:22 [ 12] [ 6] [145329] +14:54:22 [ 13] [ 4] [0320] +14:54:22 [ 14] [ 4] [4912] +14:54:22 [ 15] [ 4] [0320] +14:54:22 [ 18] [ 4] [6011] +14:54:22 [ 19] [ 3] [418] +14:54:22 [ 22] [ 3] [021] +14:54:22 [ 25] [ 2] [01] +14:54:22 [ 28] [ 9] [D00002000] +14:54:22 [ 32] [ 6] [180893] +14:54:22 [ 35] [ 32] [6213541000348337=491212014833941] +14:54:22 [ 37] [ 12] [507907269862] +14:54:22 [ 41] [ 8] [0368KMMX] +14:54:22 [ 42] [ 15] [999999 ] +14:54:22 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +14:54:22 [ 49] [ 3] [418] +14:54:22 [ 52] [ 16] [E04C3FC7437F3DB0] +14:54:22 ============================================================================ +14:54:22 + + +waiting on router queue for slot.... +14:54:22 Sending to : +14:54:22 ============================================================================ +14:54:22 Sending to : +14:54:22 ============================================================================ +14:54:23 ============================================================================ +14:54:23 Slot Id : <327> +14:54:23 Transaction Type : REQUEST +14:54:23 Received From : +14:54:23 ============================================================================ +14:54:23 FNo. Len. Field Value +14:54:23 ============================================================================ +14:54:23 [ 1] [ 4] [0200] +14:54:23 [ 2] [ 16] [6213541000348337] +14:54:23 [ 3] [ 6] [010000] +14:54:23 [ 4] [ 12] [000050000000] +14:54:23 [ 7] [ 10] [0320075329] +14:54:23 [ 11] [ 6] [269862] +14:54:23 [ 12] [ 6] [145329] +14:54:23 [ 13] [ 4] [0320] +14:54:23 [ 14] [ 4] [4912] +14:54:23 [ 15] [ 4] [0320] +14:54:23 [ 18] [ 4] [6011] +14:54:23 [ 19] [ 3] [418] +14:54:23 [ 22] [ 3] [021] +14:54:23 [ 25] [ 2] [01] +14:54:23 [ 28] [ 9] [D00002000] +14:54:23 [ 32] [ 6] [180893] +14:54:23 [ 35] [ 32] [6213541000348337=491212014833941] +14:54:23 [ 37] [ 12] [507907269862] +14:54:23 [ 41] [ 8] [0368KMMX] +14:54:23 [ 42] [ 15] [999999 ] +14:54:23 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +14:54:23 [ 49] [ 3] [418] +14:54:23 [ 52] [ 16] [E04C3FC7437F3DB0] +14:54:23 ============================================================================ +14:54:23 + + +waiting on router queue for slot.... +14:54:23 Sending to : +14:54:23 ============================================================================ +14:54:23 ============================================================================ +14:54:23 Slot Id : <327> +14:54:23 Transaction Type : REQUEST +14:54:23 Received From : +14:54:23 ============================================================================ +14:54:23 FNo. Len. Field Value +14:54:23 ============================================================================ +14:54:23 [ 1] [ 4] [0200] +14:54:23 [ 2] [ 16] [6213541000348337] +14:54:23 [ 3] [ 6] [010000] +14:54:23 [ 4] [ 12] [000050000000] +14:54:23 [ 7] [ 10] [0320075329] +14:54:23 [ 11] [ 6] [269862] +14:54:23 [ 12] [ 6] [145329] +14:54:23 [ 13] [ 4] [0320] +14:54:23 [ 14] [ 4] [4912] +14:54:23 [ 15] [ 4] [0320] +14:54:23 [ 18] [ 4] [6011] +14:54:23 [ 19] [ 3] [418] +14:54:23 [ 22] [ 3] [021] +14:54:23 [ 25] [ 2] [01] +14:54:23 [ 28] [ 9] [D00002000] +14:54:23 [ 32] [ 6] [180893] +14:54:23 [ 35] [ 32] [6213541000348337=491212014833941] +14:54:23 [ 37] [ 12] [507907269862] +14:54:23 [ 41] [ 8] [0368KMMX] +14:54:23 [ 42] [ 15] [999999 ] +14:54:23 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +14:54:23 [ 49] [ 3] [418] +14:54:23 [ 52] [ 16] [F9AC64FDEDB23CF2] +14:54:23 ============================================================================ +14:54:23 + + +waiting on router queue for slot.... +14:54:23 Sending to : <0> +14:54:23 ============================================================================ +14:54:23 ============================================================================ +14:54:23 Slot Id : <291> +14:54:23 Transaction Type : RESPONSE +14:54:23 Received From : +14:54:23 ============================================================================ +14:54:23 FNo. Len. Field Value +14:54:23 ============================================================================ +14:54:23 [ 1] [ 4] [0210] +14:54:23 [ 2] [ 16] [1808930600042188] +14:54:23 [ 3] [ 6] [011000] +14:54:23 [ 4] [ 12] [000010000000] +14:54:23 [ 6] [ 12] [000010000000] +14:54:23 [ 7] [ 10] [0320145411] +14:54:23 [ 11] [ 6] [776256] +14:54:23 [ 12] [ 6] [145411] +14:54:23 [ 13] [ 4] [0320] +14:54:23 [ 18] [ 4] [6011] +14:54:23 [ 19] [ 3] [418] +14:54:23 [ 22] [ 3] [021] +14:54:23 [ 32] [ 6] [621354] +14:54:23 [ 35] [ 27] [1808930600042188=1803500207] +14:54:23 [ 37] [ 12] [507904377227] +14:54:23 [ 38] [ 6] [776256] +14:54:23 [ 39] [ 2] [00] +14:54:23 [ 41] [ 8] [03003600] +14:54:23 [ 49] [ 3] [418] +14:54:23 [ 52] [ 16] [13E822ED45555C06] +14:54:23 [ 54] [ 20] [1001418C000001969700] +14:54:23 ============================================================================ +14:54:23 Calculate Source COMM Id = 0 +14:54:23 ============================================================================ +14:54:23 + + +waiting on router queue for slot.... +14:54:24 ============================================================================ +14:54:24 Slot Id : <327> +14:54:24 Transaction Type : RESPONSE +14:54:24 Received From : +14:54:24 ============================================================================ +14:54:24 FNo. Len. Field Value +14:54:24 ============================================================================ +14:54:24 [ 1] [ 4] [0210] +14:54:24 [ 2] [ 16] [6213541000348337] +14:54:24 [ 3] [ 6] [010000] +14:54:24 [ 4] [ 12] [000050000000] +14:54:24 [ 7] [ 10] [0320075329] +14:54:24 [ 11] [ 6] [269862] +14:54:24 [ 12] [ 6] [145329] +14:54:24 [ 13] [ 4] [0320] +14:54:24 [ 15] [ 4] [0320] +14:54:24 [ 18] [ 4] [6011] +14:54:24 [ 19] [ 3] [418] +14:54:24 [ 32] [ 6] [180893] +14:54:24 [ 35] [ 32] [6213541000348337=491212014833941] +14:54:24 [ 37] [ 12] [507907269862] +14:54:24 [ 38] [ 6] [510950] +14:54:24 [ 39] [ 2] [00] +14:54:24 [ 41] [ 8] [0368KMMX] +14:54:24 [ 49] [ 3] [418] +14:54:24 [ 54] [ 40] [0001418C0000570412900002418C000057041290] +14:54:24 ============================================================================ +14:54:24 Sending to : +14:54:24 ============================================================================ +14:54:24 + + +waiting on router queue for slot.... +14:54:26 ============================================================================ +14:54:26 Slot Id : <327> +14:54:26 Transaction Type : RESPONSE +14:54:26 Received From : +14:54:26 ============================================================================ +14:54:26 FNo. Len. Field Value +14:54:26 ============================================================================ +14:54:26 [ 1] [ 4] [0210] +14:54:26 [ 2] [ 16] [6213541000348337] +14:54:26 [ 3] [ 6] [010000] +14:54:26 [ 4] [ 12] [000050000000] +14:54:26 [ 7] [ 10] [0320075329] +14:54:26 [ 11] [ 6] [269862] +14:54:26 [ 12] [ 6] [145329] +14:54:26 [ 13] [ 4] [0320] +14:54:26 [ 15] [ 4] [0320] +14:54:26 [ 18] [ 4] [6011] +14:54:26 [ 19] [ 3] [418] +14:54:26 [ 32] [ 6] [180893] +14:54:26 [ 35] [ 32] [6213541000348337=491212014833941] +14:54:26 [ 37] [ 12] [507907269862] +14:54:26 [ 38] [ 6] [510950] +14:54:26 [ 39] [ 2] [00] +14:54:26 [ 41] [ 8] [0368KMMX] +14:54:26 [ 49] [ 3] [418] +14:54:26 [ 54] [ 40] [0001418C0000570412900002418C000057041290] +14:54:26 ============================================================================ +14:54:26 Calculate Source COMM Id = 2 +14:54:26 ============================================================================ +14:54:26 + + +waiting on router queue for slot.... +14:54:28 ============================================================================ +14:54:28 Slot Id : <305> +14:54:28 Transaction Type : REQUEST +14:54:28 Received From : +14:54:28 ============================================================================ +14:54:28 FNo. Len. Field Value +14:54:28 ============================================================================ +14:54:28 [ 1] [ 4] [0800] +14:54:28 [ 2] [ 5] [02531] +14:54:28 [ 3] [ 6] [579148] +14:54:28 [ 7] [ 10] [0320075428] +14:54:28 [ 11] [ 6] [807277] +14:54:28 [ 15] [ 10] [0320075428] +14:54:28 [ 37] [ 11] [57914807277] +14:54:28 [ 70] [ 3] [001] +14:54:28 ============================================================================ +14:54:28 + + +waiting on router queue for slot.... +14:54:28 ============================================================================ +14:54:28 Slot Id : <305> +14:54:28 Transaction Type : RESPONSE +14:54:28 Received From : +14:54:28 ============================================================================ +14:54:28 FNo. Len. Field Value +14:54:28 ============================================================================ +14:54:28 [ 1] [ 4] [0810] +14:54:28 [ 7] [ 10] [0320075428] +14:54:28 [ 11] [ 6] [807277] +14:54:28 [ 15] [ 4] [0320] +14:54:28 [ 37] [ 12] [57914807277] +14:54:28 [ 39] [ 2] [00] +14:54:28 [ 70] [ 3] [001] +14:54:28 ============================================================================ +14:54:28 Sending to : +14:54:28 ============================================================================ +14:54:28 + + +waiting on router queue for slot.... +14:54:38 ============================================================================ +14:54:38 Slot Id : <314> +14:54:38 Transaction Type : REQUEST +14:54:38 Received From : +14:54:38 ============================================================================ +14:54:38 FNo. Len. Field Value +14:54:38 ============================================================================ +14:54:38 [ 1] [ 4] [0200] +14:54:38 [ 2] [ 16] [6213545000000608] +14:54:38 [ 3] [ 6] [301000] +14:54:38 [ 4] [ 12] [000000000000] +14:54:38 [ 7] [ 10] [0320145458] +14:54:38 [ 11] [ 6] [207551] +14:54:38 [ 12] [ 6] [025309] +14:54:38 [ 13] [ 4] [0320] +14:54:38 [ 14] [ 4] [4912] +14:54:38 [ 15] [ 4] [0320] +14:54:38 [ 18] [ 4] [6011] +14:54:38 [ 19] [ 3] [418] +14:54:38 [ 22] [ 3] [021] +14:54:38 [ 25] [ 2] [01] +14:54:38 [ 28] [ 9] [D00000000] +14:54:38 [ 32] [ 6] [198901] +14:54:38 [ 35] [ 32] [6213545000000608=491212010060365] +14:54:38 [ 37] [ 12] [507914207551] +14:54:38 [ 41] [ 8] [01529031] +14:54:38 [ 42] [ 15] [000000041529031] +14:54:38 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:54:38 [ 49] [ 3] [418] +14:54:38 [ 52] [ 16] [2649391E89372AD3] +14:54:38 ============================================================================ +14:54:38 + + +waiting on router queue for slot.... +14:54:38 Sending to : +14:54:38 ============================================================================ +14:54:38 Sending to : +14:54:38 ============================================================================ +14:54:38 ============================================================================ +14:54:38 Slot Id : <314> +14:54:38 Transaction Type : REQUEST +14:54:38 Received From : +14:54:38 ============================================================================ +14:54:38 FNo. Len. Field Value +14:54:38 ============================================================================ +14:54:38 [ 1] [ 4] [0200] +14:54:38 [ 2] [ 16] [6213545000000608] +14:54:38 [ 3] [ 6] [301000] +14:54:38 [ 4] [ 12] [000000000000] +14:54:38 [ 7] [ 10] [0320145458] +14:54:38 [ 11] [ 6] [207551] +14:54:38 [ 12] [ 6] [025309] +14:54:38 [ 13] [ 4] [0320] +14:54:38 [ 14] [ 4] [4912] +14:54:38 [ 15] [ 4] [0320] +14:54:38 [ 18] [ 4] [6011] +14:54:38 [ 19] [ 3] [418] +14:54:38 [ 22] [ 3] [021] +14:54:38 [ 25] [ 2] [01] +14:54:38 [ 28] [ 9] [D00000000] +14:54:38 [ 32] [ 6] [198901] +14:54:38 [ 35] [ 32] [6213545000000608=491212010060365] +14:54:38 [ 37] [ 12] [507914207551] +14:54:38 [ 41] [ 8] [01529031] +14:54:38 [ 42] [ 15] [000000041529031] +14:54:38 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:54:38 [ 49] [ 3] [418] +14:54:38 [ 52] [ 16] [2649391E89372AD3] +14:54:38 ============================================================================ +14:54:38 + + +waiting on router queue for slot.... +14:54:38 Sending to : +14:54:38 ============================================================================ +14:54:38 ============================================================================ +14:54:38 Slot Id : <314> +14:54:38 Transaction Type : REQUEST +14:54:38 Received From : +14:54:38 ============================================================================ +14:54:38 FNo. Len. Field Value +14:54:38 ============================================================================ +14:54:38 [ 1] [ 4] [0200] +14:54:38 [ 2] [ 16] [6213545000000608] +14:54:38 [ 3] [ 6] [301000] +14:54:38 [ 4] [ 12] [000000000000] +14:54:38 [ 7] [ 10] [0320145458] +14:54:38 [ 11] [ 6] [207551] +14:54:38 [ 12] [ 6] [025309] +14:54:38 [ 13] [ 4] [0320] +14:54:38 [ 14] [ 4] [4912] +14:54:38 [ 15] [ 4] [0320] +14:54:38 [ 18] [ 4] [6011] +14:54:38 [ 19] [ 3] [418] +14:54:38 [ 22] [ 3] [021] +14:54:38 [ 25] [ 2] [01] +14:54:38 [ 28] [ 9] [D00000000] +14:54:38 [ 32] [ 6] [198901] +14:54:38 [ 35] [ 32] [6213545000000608=491212010060365] +14:54:38 [ 37] [ 12] [507914207551] +14:54:38 [ 41] [ 8] [01529031] +14:54:38 [ 42] [ 15] [000000041529031] +14:54:38 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:54:38 [ 49] [ 3] [418] +14:54:38 [ 52] [ 16] [57D8B9FACEA13D84] +14:54:38 ============================================================================ +14:54:38 + + +waiting on router queue for slot.... +14:54:38 Sending to : <0> +14:54:38 ============================================================================ +14:54:38 ============================================================================ +14:54:38 Slot Id : <314> +14:54:38 Transaction Type : RESPONSE +14:54:38 Received From : +14:54:38 ============================================================================ +14:54:38 FNo. Len. Field Value +14:54:38 ============================================================================ +14:54:38 [ 1] [ 4] [0210] +14:54:38 [ 2] [ 16] [6213545000000608] +14:54:38 [ 3] [ 6] [301000] +14:54:38 [ 4] [ 12] [000000000000] +14:54:38 [ 7] [ 10] [0320145458] +14:54:38 [ 11] [ 6] [207551] +14:54:38 [ 12] [ 6] [025309] +14:54:38 [ 13] [ 4] [0320] +14:54:38 [ 15] [ 4] [0320] +14:54:38 [ 18] [ 4] [6011] +14:54:38 [ 19] [ 3] [418] +14:54:38 [ 32] [ 6] [198901] +14:54:38 [ 35] [ 32] [6213545000000608=491212010060365] +14:54:38 [ 37] [ 12] [507914207551] +14:54:38 [ 38] [ 6] [801918] +14:54:38 [ 39] [ 2] [00] +14:54:38 [ 41] [ 8] [01529031] +14:54:38 [ 49] [ 3] [418] +14:54:38 [ 54] [ 40] [1001418C0006529764261002418C000652976426] +14:54:38 ============================================================================ +14:54:38 Sending to : +14:54:38 ============================================================================ +14:54:38 + + +waiting on router queue for slot.... +14:54:39 ============================================================================ +14:54:39 Slot Id : <302> +14:54:39 Transaction Type : REQUEST +14:54:39 Received From : +14:54:39 ============================================================================ +14:54:39 FNo. Len. Field Value +14:54:39 ============================================================================ +14:54:39 [ 1] [ 4] [0800] +14:54:39 [ 7] [ 10] [0320075346] +14:54:39 [ 11] [ 6] [156879] +14:54:39 [ 70] [ 3] [301] +14:54:39 ============================================================================ +14:54:39 + + +waiting on router queue for slot.... +14:54:39 Sending to : +14:54:39 ============================================================================ +14:54:39 ============================================================================ +14:54:39 Slot Id : <302> +14:54:39 Transaction Type : RESPONSE +14:54:39 Received From : +14:54:39 ============================================================================ +14:54:39 FNo. Len. Field Value +14:54:39 ============================================================================ +14:54:39 [ 1] [ 4] [0810] +14:54:39 [ 7] [ 10] [0320075346] +14:54:39 [ 11] [ 6] [156879] +14:54:39 [ 39] [ 2] [00] +14:54:39 [ 70] [ 3] [301] +14:54:39 ============================================================================ +14:54:39 Calculate Source COMM Id = 2 +14:54:39 ============================================================================ +14:54:39 + + +waiting on router queue for slot.... +14:54:40 ============================================================================ +14:54:40 Slot Id : <314> +14:54:40 Transaction Type : RESPONSE +14:54:40 Received From : +14:54:40 ============================================================================ +14:54:40 FNo. Len. Field Value +14:54:40 ============================================================================ +14:54:40 [ 1] [ 4] [0210] +14:54:40 [ 2] [ 16] [6213545000000608] +14:54:40 [ 3] [ 6] [301000] +14:54:40 [ 4] [ 12] [000000000000] +14:54:40 [ 7] [ 10] [0320145458] +14:54:40 [ 11] [ 6] [207551] +14:54:40 [ 12] [ 6] [025309] +14:54:40 [ 13] [ 4] [0320] +14:54:40 [ 15] [ 4] [0320] +14:54:40 [ 18] [ 4] [6011] +14:54:40 [ 19] [ 3] [418] +14:54:40 [ 32] [ 6] [198901] +14:54:40 [ 35] [ 32] [6213545000000608=491212010060365] +14:54:40 [ 37] [ 12] [507914207551] +14:54:40 [ 38] [ 6] [801918] +14:54:40 [ 39] [ 2] [00] +14:54:40 [ 41] [ 8] [01529031] +14:54:40 [ 49] [ 3] [418] +14:54:40 [ 54] [ 40] [1001418C0006529764261002418C000652976426] +14:54:40 ============================================================================ +14:54:40 Calculate Source COMM Id = 5 +14:54:40 ============================================================================ +14:54:40 + + +waiting on router queue for slot.... +14:54:41 ============================================================================ +14:54:41 Slot Id : <331> +14:54:41 Transaction Type : REQUEST +14:54:41 Received From : +14:54:41 ============================================================================ +14:54:41 FNo. Len. Field Value +14:54:41 ============================================================================ +14:54:41 [ 1] [ 4] [0800] +14:54:41 [ 7] [ 10] [0320220629] +14:54:41 [ 11] [ 6] [150629] +14:54:41 [ 37] [ 12] [57915150629] +14:54:41 [ 70] [ 3] [301] +14:54:41 ============================================================================ +14:54:41 + + +waiting on router queue for slot.... +14:54:41 Sending to : +14:54:41 ============================================================================ +14:54:41 ============================================================================ +14:54:41 Slot Id : <331> +14:54:41 Transaction Type : RESPONSE +14:54:41 Received From : +14:54:41 ============================================================================ +14:54:41 FNo. Len. Field Value +14:54:41 ============================================================================ +14:54:41 [ 1] [ 4] [0810] +14:54:41 [ 7] [ 10] [0320220629] +14:54:41 [ 11] [ 6] [150629] +14:54:41 [ 37] [ 12] [579151506290] +14:54:41 [ 39] [ 2] [00] +14:54:41 [ 70] [ 3] [810] +14:54:41 ============================================================================ +14:54:41 Calculate Source COMM Id = 6 +14:54:41 ============================================================================ +14:54:41 + + +waiting on router queue for slot.... +14:54:55 ============================================================================ +14:54:55 Slot Id : <292> +14:54:55 Transaction Type : REQUEST +14:54:55 Received From : +14:54:55 ============================================================================ +14:54:55 FNo. Len. Field Value +14:54:55 ============================================================================ +14:54:55 [ 1] [ 4] [0800] +14:54:55 [ 7] [ 10] [0320080242] +14:54:55 [ 11] [ 6] [015911] +14:54:55 [ 37] [ 12] [57915015911] +14:54:55 [ 70] [ 3] [301] +14:54:55 ============================================================================ +14:54:55 + + +waiting on router queue for slot.... +14:54:55 Sending to : +14:54:55 ============================================================================ +14:54:55 ============================================================================ +14:54:55 Slot Id : <292> +14:54:55 Transaction Type : RESPONSE +14:54:55 Received From : +14:54:55 ============================================================================ +14:54:55 FNo. Len. Field Value +14:54:55 ============================================================================ +14:54:55 [ 1] [ 4] [0810] +14:54:55 [ 7] [ 10] [0320080242] +14:54:55 [ 11] [ 6] [015911] +14:54:55 [ 37] [ 12] [579150159110] +14:54:55 [ 39] [ 2] [00] +14:54:55 [ 70] [ 3] [810] +14:54:55 ============================================================================ +14:54:55 Calculate Source COMM Id = 1 +14:54:55 ============================================================================ +14:54:55 + + +waiting on router queue for slot.... +14:54:55 ============================================================================ +14:54:55 Slot Id : <333> +14:54:55 Transaction Type : REQUEST +14:54:55 Received From : +14:54:55 ============================================================================ +14:54:55 FNo. Len. Field Value +14:54:55 ============================================================================ +14:54:55 [ 1] [ 4] [0800] +14:54:55 [ 7] [ 10] [0320075402] +14:54:55 [ 11] [ 6] [156880] +14:54:55 [ 70] [ 3] [301] +14:54:55 ============================================================================ +14:54:55 + + +waiting on router queue for slot.... +14:54:55 Sending to : +14:54:55 ============================================================================ +14:54:55 ============================================================================ +14:54:55 Slot Id : <333> +14:54:55 Transaction Type : RESPONSE +14:54:55 Received From : +14:54:55 ============================================================================ +14:54:55 FNo. Len. Field Value +14:54:55 ============================================================================ +14:54:55 [ 1] [ 4] [0810] +14:54:55 [ 7] [ 10] [0320075402] +14:54:55 [ 11] [ 6] [156880] +14:54:55 [ 39] [ 2] [00] +14:54:55 [ 70] [ 3] [301] +14:54:55 ============================================================================ +14:54:55 Calculate Source COMM Id = 2 +14:54:55 ============================================================================ +14:54:55 + + +waiting on router queue for slot.... +14:54:59 ============================================================================ +14:54:59 Slot Id : <335> +14:54:59 Transaction Type : REQUEST +14:54:59 Received From : +14:54:59 ============================================================================ +14:54:59 FNo. Len. Field Value +14:54:59 ============================================================================ +14:54:59 [ 1] [ 4] [0200] +14:54:59 [ 2] [ 16] [6213545000000608] +14:54:59 [ 3] [ 6] [011000] +14:54:59 [ 4] [ 12] [000100000000] +14:54:59 [ 7] [ 10] [0320145520] +14:54:59 [ 11] [ 6] [207557] +14:54:59 [ 12] [ 6] [025330] +14:54:59 [ 13] [ 4] [0320] +14:54:59 [ 14] [ 4] [4912] +14:54:59 [ 15] [ 4] [0320] +14:54:59 [ 18] [ 4] [6011] +14:54:59 [ 19] [ 3] [418] +14:54:59 [ 22] [ 3] [021] +14:54:59 [ 25] [ 2] [01] +14:54:59 [ 28] [ 9] [D00002000] +14:54:59 [ 32] [ 6] [198901] +14:54:59 [ 35] [ 32] [6213545000000608=491212010060365] +14:54:59 [ 37] [ 12] [507914207557] +14:54:59 [ 41] [ 8] [01529031] +14:54:59 [ 42] [ 15] [000000041529031] +14:54:59 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:54:59 [ 49] [ 3] [418] +14:54:59 [ 52] [ 16] [2649391E89372AD3] +14:54:59 ============================================================================ +14:54:59 + + +waiting on router queue for slot.... +14:54:59 Sending to : +14:54:59 ============================================================================ +14:54:59 Sending to : +14:54:59 ============================================================================ +14:54:59 ============================================================================ +14:54:59 Slot Id : <335> +14:54:59 Transaction Type : REQUEST +14:54:59 Received From : +14:54:59 ============================================================================ +14:54:59 FNo. Len. Field Value +14:54:59 ============================================================================ +14:54:59 [ 1] [ 4] [0200] +14:54:59 [ 2] [ 16] [6213545000000608] +14:54:59 [ 3] [ 6] [011000] +14:54:59 [ 4] [ 12] [000100000000] +14:54:59 [ 7] [ 10] [0320145520] +14:54:59 [ 11] [ 6] [207557] +14:54:59 [ 12] [ 6] [025330] +14:54:59 [ 13] [ 4] [0320] +14:54:59 [ 14] [ 4] [4912] +14:54:59 [ 15] [ 4] [0320] +14:54:59 [ 18] [ 4] [6011] +14:54:59 [ 19] [ 3] [418] +14:54:59 [ 22] [ 3] [021] +14:54:59 [ 25] [ 2] [01] +14:54:59 [ 28] [ 9] [D00002000] +14:54:59 [ 32] [ 6] [198901] +14:54:59 [ 35] [ 32] [6213545000000608=491212010060365] +14:54:59 [ 37] [ 12] [507914207557] +14:54:59 [ 41] [ 8] [01529031] +14:54:59 [ 42] [ 15] [000000041529031] +14:54:59 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:54:59 [ 49] [ 3] [418] +14:54:59 [ 52] [ 16] [2649391E89372AD3] +14:54:59 ============================================================================ +14:54:59 + + +waiting on router queue for slot.... +14:54:59 Sending to : +14:54:59 ============================================================================ +14:54:59 ============================================================================ +14:54:59 Slot Id : <335> +14:54:59 Transaction Type : REQUEST +14:54:59 Received From : +14:54:59 ============================================================================ +14:54:59 FNo. Len. Field Value +14:54:59 ============================================================================ +14:54:59 [ 1] [ 4] [0200] +14:54:59 [ 2] [ 16] [6213545000000608] +14:54:59 [ 3] [ 6] [011000] +14:54:59 [ 4] [ 12] [000100000000] +14:54:59 [ 7] [ 10] [0320145520] +14:54:59 [ 11] [ 6] [207557] +14:54:59 [ 12] [ 6] [025330] +14:54:59 [ 13] [ 4] [0320] +14:54:59 [ 14] [ 4] [4912] +14:54:59 [ 15] [ 4] [0320] +14:54:59 [ 18] [ 4] [6011] +14:54:59 [ 19] [ 3] [418] +14:54:59 [ 22] [ 3] [021] +14:54:59 [ 25] [ 2] [01] +14:54:59 [ 28] [ 9] [D00002000] +14:54:59 [ 32] [ 6] [198901] +14:54:59 [ 35] [ 32] [6213545000000608=491212010060365] +14:54:59 [ 37] [ 12] [507914207557] +14:54:59 [ 41] [ 8] [01529031] +14:54:59 [ 42] [ 15] [000000041529031] +14:54:59 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:54:59 [ 49] [ 3] [418] +14:54:59 [ 52] [ 16] [57D8B9FACEA13D84] +14:54:59 ============================================================================ +14:54:59 + + +waiting on router queue for slot.... +14:54:59 Sending to : <0> +14:54:59 ============================================================================ +14:55:00 ============================================================================ +14:55:00 Slot Id : <335> +14:55:00 Transaction Type : RESPONSE +14:55:00 Received From : +14:55:00 ============================================================================ +14:55:00 FNo. Len. Field Value +14:55:00 ============================================================================ +14:55:00 [ 1] [ 4] [0210] +14:55:00 [ 2] [ 16] [6213545000000608] +14:55:00 [ 3] [ 6] [011000] +14:55:00 [ 4] [ 12] [000100000000] +14:55:00 [ 7] [ 10] [0320145520] +14:55:00 [ 11] [ 6] [207557] +14:55:00 [ 12] [ 6] [025330] +14:55:00 [ 13] [ 4] [0320] +14:55:00 [ 15] [ 4] [0320] +14:55:00 [ 18] [ 4] [6011] +14:55:00 [ 19] [ 3] [418] +14:55:00 [ 32] [ 6] [198901] +14:55:00 [ 35] [ 32] [6213545000000608=491212010060365] +14:55:00 [ 37] [ 12] [507914207557] +14:55:00 [ 38] [ 6] [077382] +14:55:00 [ 39] [ 2] [00] +14:55:00 [ 41] [ 8] [01529031] +14:55:00 [ 49] [ 3] [418] +14:55:00 [ 54] [ 40] [1001418C0005527764261002418C000552776426] +14:55:00 ============================================================================ +14:55:00 Sending to : +14:55:00 ============================================================================ +14:55:00 + + +waiting on router queue for slot.... +14:55:01 ============================================================================ +14:55:01 Slot Id : <335> +14:55:01 Transaction Type : RESPONSE +14:55:01 Received From : +14:55:01 ============================================================================ +14:55:01 FNo. Len. Field Value +14:55:01 ============================================================================ +14:55:01 [ 1] [ 4] [0210] +14:55:01 [ 2] [ 16] [6213545000000608] +14:55:01 [ 3] [ 6] [011000] +14:55:01 [ 4] [ 12] [000100000000] +14:55:01 [ 7] [ 10] [0320145520] +14:55:01 [ 11] [ 6] [207557] +14:55:01 [ 12] [ 6] [025330] +14:55:01 [ 13] [ 4] [0320] +14:55:01 [ 15] [ 4] [0320] +14:55:01 [ 18] [ 4] [6011] +14:55:01 [ 19] [ 3] [418] +14:55:01 [ 32] [ 6] [198901] +14:55:01 [ 35] [ 32] [6213545000000608=491212010060365] +14:55:01 [ 37] [ 12] [507914207557] +14:55:01 [ 38] [ 6] [077382] +14:55:01 [ 39] [ 2] [00] +14:55:01 [ 41] [ 8] [01529031] +14:55:01 [ 49] [ 3] [418] +14:55:01 [ 54] [ 40] [1001418C0005527764261002418C000552776426] +14:55:01 ============================================================================ +14:55:01 Calculate Source COMM Id = 5 +14:55:01 ============================================================================ +14:55:01 + + +waiting on router queue for slot.... +14:55:05 ============================================================================ +14:55:05 Slot Id : <262> +14:55:05 Transaction Type : REQUEST +14:55:05 Received From : +14:55:05 ============================================================================ +14:55:05 FNo. Len. Field Value +14:55:05 ============================================================================ +14:55:05 [ 1] [ 4] [0200] +14:55:05 [ 2] [ 16] [6688990103743801] +14:55:05 [ 3] [ 6] [010000] +14:55:05 [ 4] [ 12] [000100000000] +14:55:05 [ 7] [ 10] [0320145500] +14:55:05 [ 11] [ 6] [776431] +14:55:05 [ 12] [ 6] [145500] +14:55:05 [ 13] [ 4] [0320] +14:55:05 [ 15] [ 4] [0320] +14:55:05 [ 18] [ 4] [6011] +14:55:05 [ 22] [ 3] [900] +14:55:05 [ 25] [ 2] [02] +14:55:05 [ 28] [ 9] [D00002000] +14:55:05 [ 32] [ 6] [621354] +14:55:05 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:55:05 [ 37] [ 12] [507903344981] +14:55:05 [ 41] [ 8] [13001400] +14:55:05 [ 42] [ 15] [NATIVE ] +14:55:05 [ 43] [ 40] [Kham Unit Kham LAO] +14:55:05 [ 49] [ 3] [418] +14:55:05 [ 52] [ 16] [DC473392EDA7F48C] +14:55:05 ============================================================================ +14:55:05 + + +waiting on router queue for slot.... +14:55:05 Sending to : +14:55:05 ============================================================================ +14:55:05 Sending to : +14:55:05 ============================================================================ +14:55:05 ============================================================================ +14:55:05 Slot Id : <262> +14:55:05 Transaction Type : REQUEST +14:55:05 Received From : +14:55:05 ============================================================================ +14:55:05 FNo. Len. Field Value +14:55:05 ============================================================================ +14:55:05 [ 1] [ 4] [0200] +14:55:05 [ 2] [ 16] [6688990103743801] +14:55:05 [ 3] [ 6] [010000] +14:55:05 [ 4] [ 12] [000100000000] +14:55:05 [ 7] [ 10] [0320145500] +14:55:05 [ 11] [ 6] [776431] +14:55:05 [ 12] [ 6] [145500] +14:55:05 [ 13] [ 4] [0320] +14:55:05 [ 15] [ 4] [0320] +14:55:05 [ 18] [ 4] [6011] +14:55:05 [ 22] [ 3] [900] +14:55:05 [ 25] [ 2] [02] +14:55:05 [ 28] [ 9] [D00002000] +14:55:05 [ 32] [ 6] [621354] +14:55:05 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:55:05 [ 37] [ 12] [507903344981] +14:55:05 [ 41] [ 8] [13001400] +14:55:05 [ 42] [ 15] [NATIVE ] +14:55:05 [ 43] [ 40] [Kham Unit Kham LAO] +14:55:05 [ 49] [ 3] [418] +14:55:05 [ 52] [ 16] [DC473392EDA7F48C] +14:55:05 ============================================================================ +14:55:05 + + +waiting on router queue for slot.... +14:55:05 Sending to : +14:55:05 ============================================================================ +14:55:05 ============================================================================ +14:55:05 Slot Id : <262> +14:55:05 Transaction Type : REQUEST +14:55:05 Received From : +14:55:05 ============================================================================ +14:55:05 FNo. Len. Field Value +14:55:05 ============================================================================ +14:55:05 [ 1] [ 4] [0200] +14:55:05 [ 2] [ 16] [6688990103743801] +14:55:05 [ 3] [ 6] [010000] +14:55:05 [ 4] [ 12] [000100000000] +14:55:05 [ 7] [ 10] [0320145500] +14:55:05 [ 11] [ 6] [776431] +14:55:05 [ 12] [ 6] [145500] +14:55:05 [ 13] [ 4] [0320] +14:55:05 [ 15] [ 4] [0320] +14:55:05 [ 18] [ 4] [6011] +14:55:05 [ 22] [ 3] [900] +14:55:05 [ 25] [ 2] [02] +14:55:05 [ 28] [ 9] [D00002000] +14:55:05 [ 32] [ 6] [621354] +14:55:05 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:55:05 [ 37] [ 12] [507903344981] +14:55:05 [ 41] [ 8] [13001400] +14:55:05 [ 42] [ 15] [NATIVE ] +14:55:05 [ 43] [ 40] [Kham Unit Kham LAO] +14:55:05 [ 49] [ 3] [418] +14:55:05 [ 52] [ 16] [B22DE698A99EA8B3] +14:55:05 ============================================================================ +14:55:05 + + +waiting on router queue for slot.... +14:55:05 Sending to : <4> +14:55:05 ============================================================================ +14:55:06 ============================================================================ +14:55:06 Slot Id : <262> +14:55:06 Transaction Type : RESPONSE +14:55:06 Received From : +14:55:06 ============================================================================ +14:55:06 FNo. Len. Field Value +14:55:06 ============================================================================ +14:55:06 [ 1] [ 4] [0210] +14:55:06 [ 2] [ 16] [6688990103743801] +14:55:06 [ 3] [ 6] [010000] +14:55:06 [ 4] [ 12] [000100000000] +14:55:06 [ 11] [ 6] [776431] +14:55:06 [ 12] [ 6] [145500] +14:55:06 [ 15] [ 4] [0320] +14:55:06 [ 18] [ 4] [6011] +14:55:06 [ 32] [ 6] [621354] +14:55:06 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:55:06 [ 37] [ 12] [507903344981] +14:55:06 [ 38] [ 6] [037004] +14:55:06 [ 39] [ 2] [00] +14:55:06 [ 41] [ 8] [13001400] +14:55:06 [ 49] [ 3] [418] +14:55:06 [ 54] [ 20] [0002418C000879350153] +14:55:06 ============================================================================ +14:55:06 Sending to : +14:55:06 ============================================================================ +14:55:06 + + +waiting on router queue for slot.... +14:55:08 ============================================================================ +14:55:08 Slot Id : <262> +14:55:08 Transaction Type : RESPONSE +14:55:08 Received From : +14:55:08 ============================================================================ +14:55:08 FNo. Len. Field Value +14:55:08 ============================================================================ +14:55:08 [ 1] [ 4] [0210] +14:55:08 [ 2] [ 16] [6688990103743801] +14:55:08 [ 3] [ 6] [010000] +14:55:08 [ 4] [ 12] [000100000000] +14:55:08 [ 11] [ 6] [776431] +14:55:08 [ 12] [ 6] [145500] +14:55:08 [ 15] [ 4] [0320] +14:55:08 [ 18] [ 4] [6011] +14:55:08 [ 32] [ 6] [621354] +14:55:08 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:55:08 [ 37] [ 12] [507903344981] +14:55:08 [ 38] [ 6] [037004] +14:55:08 [ 39] [ 2] [00] +14:55:08 [ 41] [ 8] [13001400] +14:55:08 [ 49] [ 3] [418] +14:55:08 [ 54] [ 20] [0002418C000879350153] +14:55:08 ============================================================================ +14:55:08 Calculate Source COMM Id = 0 +14:55:08 ============================================================================ +14:55:08 + + +waiting on router queue for slot.... +14:55:11 ============================================================================ +14:55:11 Slot Id : <334> +14:55:11 Transaction Type : REQUEST +14:55:11 Received From : +14:55:11 ============================================================================ +14:55:11 FNo. Len. Field Value +14:55:11 ============================================================================ +14:55:11 [ 1] [ 4] [0800] +14:55:11 [ 7] [ 10] [0320075418] +14:55:11 [ 11] [ 6] [156881] +14:55:11 [ 70] [ 3] [301] +14:55:11 ============================================================================ +14:55:11 + + +waiting on router queue for slot.... +14:55:11 Sending to : +14:55:11 ============================================================================ +14:55:11 ============================================================================ +14:55:11 Slot Id : <334> +14:55:11 Transaction Type : RESPONSE +14:55:11 Received From : +14:55:11 ============================================================================ +14:55:11 FNo. Len. Field Value +14:55:11 ============================================================================ +14:55:11 [ 1] [ 4] [0810] +14:55:11 [ 7] [ 10] [0320075418] +14:55:11 [ 11] [ 6] [156881] +14:55:11 [ 39] [ 2] [00] +14:55:11 [ 70] [ 3] [301] +14:55:11 ============================================================================ +14:55:11 Calculate Source COMM Id = 2 +14:55:11 ============================================================================ +14:55:11 + + +waiting on router queue for slot.... +14:55:22 ============================================================================ +14:55:22 Slot Id : <321> +14:55:22 Transaction Type : REQUEST +14:55:22 Received From : +14:55:22 ============================================================================ +14:55:22 FNo. Len. Field Value +14:55:22 ============================================================================ +14:55:22 [ 1] [ 4] [0800] +14:55:22 [ 7] [ 10] [0320075429] +14:55:22 [ 11] [ 6] [156882] +14:55:22 [ 70] [ 3] [301] +14:55:22 ============================================================================ +14:55:22 + + +waiting on router queue for slot.... +14:55:22 Sending to : +14:55:22 ============================================================================ +14:55:22 ============================================================================ +14:55:22 Slot Id : <321> +14:55:22 Transaction Type : RESPONSE +14:55:22 Received From : +14:55:22 ============================================================================ +14:55:22 FNo. Len. Field Value +14:55:22 ============================================================================ +14:55:22 [ 1] [ 4] [0810] +14:55:22 [ 7] [ 10] [0320075429] +14:55:22 [ 11] [ 6] [156882] +14:55:22 [ 39] [ 2] [00] +14:55:22 [ 70] [ 3] [301] +14:55:22 ============================================================================ +14:55:22 Calculate Source COMM Id = 2 +14:55:22 ============================================================================ +14:55:22 + + +waiting on router queue for slot.... +14:55:30 ============================================================================ +14:55:30 Slot Id : <336> +14:55:30 Transaction Type : REQUEST +14:55:30 Received From : +14:55:30 ============================================================================ +14:55:30 FNo. Len. Field Value +14:55:30 ============================================================================ +14:55:30 [ 1] [ 4] [0800] +14:55:30 [ 2] [ 5] [02531] +14:55:30 [ 3] [ 6] [579148] +14:55:30 [ 7] [ 10] [0320075530] +14:55:30 [ 11] [ 6] [807278] +14:55:30 [ 15] [ 10] [0320075530] +14:55:30 [ 37] [ 11] [57914807278] +14:55:30 [ 70] [ 3] [001] +14:55:30 ============================================================================ +14:55:30 + + +waiting on router queue for slot.... +14:55:30 ============================================================================ +14:55:30 Slot Id : <336> +14:55:30 Transaction Type : RESPONSE +14:55:30 Received From : +14:55:30 ============================================================================ +14:55:30 FNo. Len. Field Value +14:55:30 ============================================================================ +14:55:30 [ 1] [ 4] [0810] +14:55:30 [ 7] [ 10] [0320075530] +14:55:30 [ 11] [ 6] [807278] +14:55:30 [ 15] [ 4] [0320] +14:55:30 [ 37] [ 12] [57914807278] +14:55:30 [ 39] [ 2] [00] +14:55:30 [ 70] [ 3] [001] +14:55:30 ============================================================================ +14:55:30 Sending to : +14:55:30 ============================================================================ +14:55:30 + + +waiting on router queue for slot.... +14:55:33 ============================================================================ +14:55:33 Slot Id : <320> +14:55:33 Transaction Type : REQUEST +14:55:33 Received From : +14:55:33 ============================================================================ +14:55:33 FNo. Len. Field Value +14:55:33 ============================================================================ +14:55:33 [ 1] [ 4] [0800] +14:55:33 [ 7] [ 10] [0320075440] +14:55:33 [ 11] [ 6] [156883] +14:55:33 [ 70] [ 3] [301] +14:55:33 ============================================================================ +14:55:33 + + +waiting on router queue for slot.... +14:55:33 Sending to : +14:55:33 ============================================================================ +14:55:33 ============================================================================ +14:55:33 Slot Id : <320> +14:55:33 Transaction Type : RESPONSE +14:55:33 Received From : +14:55:33 ============================================================================ +14:55:33 FNo. Len. Field Value +14:55:33 ============================================================================ +14:55:33 [ 1] [ 4] [0810] +14:55:33 [ 7] [ 10] [0320075440] +14:55:33 [ 11] [ 6] [156883] +14:55:33 [ 39] [ 2] [00] +14:55:33 [ 70] [ 3] [301] +14:55:33 ============================================================================ +14:55:33 Calculate Source COMM Id = 2 +14:55:33 ============================================================================ +14:55:33 + + +waiting on router queue for slot.... +14:55:36 ============================================================================ +14:55:36 Slot Id : <342> +14:55:36 Transaction Type : REQUEST +14:55:36 Received From : +14:55:36 ============================================================================ +14:55:36 FNo. Len. Field Value +14:55:36 ============================================================================ +14:55:36 [ 1] [ 4] [0200] +14:55:36 [ 2] [ 16] [6213545000000608] +14:55:36 [ 3] [ 6] [011000] +14:55:36 [ 4] [ 12] [000100000000] +14:55:36 [ 7] [ 10] [0320145557] +14:55:36 [ 11] [ 6] [207565] +14:55:36 [ 12] [ 6] [025407] +14:55:36 [ 13] [ 4] [0320] +14:55:36 [ 14] [ 4] [4912] +14:55:36 [ 15] [ 4] [0320] +14:55:36 [ 18] [ 4] [6011] +14:55:36 [ 19] [ 3] [418] +14:55:36 [ 22] [ 3] [021] +14:55:36 [ 25] [ 2] [01] +14:55:36 [ 28] [ 9] [D00002000] +14:55:36 [ 32] [ 6] [198901] +14:55:36 [ 35] [ 32] [6213545000000608=491212010060365] +14:55:36 [ 37] [ 12] [507914207565] +14:55:36 [ 41] [ 8] [01529031] +14:55:36 [ 42] [ 15] [000000041529031] +14:55:36 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:55:36 [ 49] [ 3] [418] +14:55:36 [ 52] [ 16] [2649391E89372AD3] +14:55:36 ============================================================================ +14:55:36 + + +waiting on router queue for slot.... +14:55:36 Sending to : +14:55:36 ============================================================================ +14:55:36 Sending to : +14:55:36 ============================================================================ +14:55:36 ============================================================================ +14:55:36 Slot Id : <323> +14:55:36 Transaction Type : REQUEST +14:55:36 Received From : +14:55:36 ============================================================================ +14:55:36 FNo. Len. Field Value +14:55:36 ============================================================================ +14:55:36 [ 1] [ 4] [0200] +14:55:36 [ 2] [ 16] [6688990040000612] +14:55:36 [ 3] [ 6] [013000] +14:55:36 [ 4] [ 12] [000010000000] +14:55:36 [ 7] [ 10] [0320145531] +14:55:36 [ 11] [ 6] [776541] +14:55:36 [ 12] [ 6] [145531] +14:55:36 [ 13] [ 4] [0320] +14:55:36 [ 15] [ 4] [0320] +14:55:36 [ 18] [ 4] [6011] +14:55:36 [ 22] [ 3] [900] +14:55:36 [ 25] [ 2] [02] +14:55:36 [ 28] [ 9] [D00002000] +14:55:36 [ 32] [ 6] [621354] +14:55:36 [ 35] [ 37] [6688990040000612=97091261263533700000] +14:55:36 [ 37] [ 12] [507904769565] +14:55:36 [ 41] [ 8] [07001200] +14:55:36 [ 42] [ 15] [NATIVE ] +14:55:36 [ 43] [ 40] [Sangkhou College LNT Namtar LAO] +14:55:36 [ 49] [ 3] [418] +14:55:36 [ 52] [ 16] [D758EE2D09F918E0] +14:55:36 ============================================================================ +14:55:36 + + +waiting on router queue for slot.... +14:55:36 Sending to : +14:55:36 ============================================================================ +14:55:36 Sending to : +14:55:36 ============================================================================ +14:55:36 ============================================================================ +14:55:36 Slot Id : <342> +14:55:36 Transaction Type : REQUEST +14:55:36 Received From : +14:55:36 ============================================================================ +14:55:36 FNo. Len. Field Value +14:55:36 ============================================================================ +14:55:36 [ 1] [ 4] [0200] +14:55:36 [ 2] [ 16] [6213545000000608] +14:55:36 [ 3] [ 6] [011000] +14:55:36 [ 4] [ 12] [000100000000] +14:55:36 [ 7] [ 10] [0320145557] +14:55:36 [ 11] [ 6] [207565] +14:55:36 [ 12] [ 6] [025407] +14:55:36 [ 13] [ 4] [0320] +14:55:36 [ 14] [ 4] [4912] +14:55:36 [ 15] [ 4] [0320] +14:55:36 [ 18] [ 4] [6011] +14:55:36 [ 19] [ 3] [418] +14:55:36 [ 22] [ 3] [021] +14:55:36 [ 25] [ 2] [01] +14:55:36 [ 28] [ 9] [D00002000] +14:55:36 [ 32] [ 6] [198901] +14:55:36 [ 35] [ 32] [6213545000000608=491212010060365] +14:55:36 [ 37] [ 12] [507914207565] +14:55:36 [ 41] [ 8] [01529031] +14:55:36 [ 42] [ 15] [000000041529031] +14:55:36 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:55:36 [ 49] [ 3] [418] +14:55:36 [ 52] [ 16] [2649391E89372AD3] +14:55:36 ============================================================================ +14:55:36 + + +waiting on router queue for slot.... +14:55:36 Sending to : +14:55:36 ============================================================================ +14:55:36 ============================================================================ +14:55:36 Slot Id : <339> +14:55:36 Transaction Type : REQUEST +14:55:36 Received From : +14:55:36 ============================================================================ +14:55:36 FNo. Len. Field Value +14:55:36 ============================================================================ +14:55:36 [ 1] [ 4] [0200] +14:55:36 [ 2] [ 16] [6688990105247207] +14:55:36 [ 3] [ 6] [301000] +14:55:36 [ 4] [ 12] [000000000000] +14:55:36 [ 7] [ 10] [0320145532] +14:55:36 [ 11] [ 6] [776542] +14:55:36 [ 12] [ 6] [145532] +14:55:36 [ 13] [ 4] [0320] +14:55:36 [ 15] [ 4] [0320] +14:55:36 [ 18] [ 4] [6011] +14:55:36 [ 22] [ 3] [900] +14:55:36 [ 25] [ 2] [02] +14:55:36 [ 28] [ 9] [D00000000] +14:55:36 [ 32] [ 6] [621354] +14:55:36 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:55:36 [ 37] [ 12] [507904719695] +14:55:36 [ 41] [ 8] [18001000] +14:55:36 [ 42] [ 15] [NATIVE ] +14:55:36 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:55:36 [ 49] [ 3] [418] +14:55:36 [ 52] [ 16] [667459472C5E1498] +14:55:36 ============================================================================ +14:55:36 + + +waiting on router queue for slot.... +14:55:36 Sending to : +14:55:36 ============================================================================ +14:55:36 Sending to : +14:55:36 ============================================================================ +14:55:36 ============================================================================ +14:55:36 Slot Id : <342> +14:55:36 Transaction Type : REQUEST +14:55:36 Received From : +14:55:36 ============================================================================ +14:55:36 FNo. Len. Field Value +14:55:36 ============================================================================ +14:55:36 [ 1] [ 4] [0200] +14:55:36 [ 2] [ 16] [6213545000000608] +14:55:36 [ 3] [ 6] [011000] +14:55:36 [ 4] [ 12] [000100000000] +14:55:36 [ 7] [ 10] [0320145557] +14:55:36 [ 11] [ 6] [207565] +14:55:36 [ 12] [ 6] [025407] +14:55:36 [ 13] [ 4] [0320] +14:55:36 [ 14] [ 4] [4912] +14:55:36 [ 15] [ 4] [0320] +14:55:36 [ 18] [ 4] [6011] +14:55:36 [ 19] [ 3] [418] +14:55:36 [ 22] [ 3] [021] +14:55:36 [ 25] [ 2] [01] +14:55:36 [ 28] [ 9] [D00002000] +14:55:36 [ 32] [ 6] [198901] +14:55:36 [ 35] [ 32] [6213545000000608=491212010060365] +14:55:36 [ 37] [ 12] [507914207565] +14:55:36 [ 41] [ 8] [01529031] +14:55:36 [ 42] [ 15] [000000041529031] +14:55:36 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:55:36 [ 49] [ 3] [418] +14:55:36 [ 52] [ 16] [57D8B9FACEA13D84] +14:55:36 ============================================================================ +14:55:36 + + +waiting on router queue for slot.... +14:55:36 Sending to : <0> +14:55:36 ============================================================================ +14:55:36 ============================================================================ +14:55:36 Slot Id : <323> +14:55:36 Transaction Type : REQUEST +14:55:36 Received From : +14:55:36 ============================================================================ +14:55:36 FNo. Len. Field Value +14:55:36 ============================================================================ +14:55:36 [ 1] [ 4] [0200] +14:55:36 [ 2] [ 16] [6688990040000612] +14:55:36 [ 3] [ 6] [013000] +14:55:36 [ 4] [ 12] [000010000000] +14:55:36 [ 7] [ 10] [0320145531] +14:55:36 [ 11] [ 6] [776541] +14:55:36 [ 12] [ 6] [145531] +14:55:36 [ 13] [ 4] [0320] +14:55:36 [ 15] [ 4] [0320] +14:55:36 [ 18] [ 4] [6011] +14:55:36 [ 22] [ 3] [900] +14:55:36 [ 25] [ 2] [02] +14:55:36 [ 28] [ 9] [D00002000] +14:55:36 [ 32] [ 6] [621354] +14:55:36 [ 35] [ 37] [6688990040000612=97091261263533700000] +14:55:36 [ 37] [ 12] [507904769565] +14:55:36 [ 41] [ 8] [07001200] +14:55:36 [ 42] [ 15] [NATIVE ] +14:55:36 [ 43] [ 40] [Sangkhou College LNT Namtar LAO] +14:55:36 [ 49] [ 3] [418] +14:55:36 [ 52] [ 16] [D758EE2D09F918E0] +14:55:36 ============================================================================ +14:55:36 + + +waiting on router queue for slot.... +14:55:36 Sending to : +14:55:36 ============================================================================ +14:55:36 ============================================================================ +14:55:36 Slot Id : <323> +14:55:36 Transaction Type : REQUEST +14:55:36 Received From : +14:55:36 ============================================================================ +14:55:36 FNo. Len. Field Value +14:55:36 ============================================================================ +14:55:36 [ 1] [ 4] [0200] +14:55:36 [ 2] [ 16] [6688990040000612] +14:55:36 [ 3] [ 6] [013000] +14:55:36 [ 4] [ 12] [000010000000] +14:55:36 [ 7] [ 10] [0320145531] +14:55:36 [ 11] [ 6] [776541] +14:55:36 [ 12] [ 6] [145531] +14:55:36 [ 13] [ 4] [0320] +14:55:36 [ 15] [ 4] [0320] +14:55:36 [ 18] [ 4] [6011] +14:55:36 [ 22] [ 3] [900] +14:55:36 [ 25] [ 2] [02] +14:55:36 [ 28] [ 9] [D00002000] +14:55:36 [ 32] [ 6] [621354] +14:55:36 [ 35] [ 37] [6688990040000612=97091261263533700000] +14:55:36 [ 37] [ 12] [507904769565] +14:55:36 [ 41] [ 8] [07001200] +14:55:36 [ 42] [ 15] [NATIVE ] +14:55:36 [ 43] [ 40] [Sangkhou College LNT Namtar LAO] +14:55:36 [ 49] [ 3] [418] +14:55:36 [ 52] [ 16] [6C98BE9AD2164952] +14:55:36 ============================================================================ +14:55:36 + + +waiting on router queue for slot.... +14:55:36 Sending to : <4> +14:55:36 ============================================================================ +14:55:36 ============================================================================ +14:55:36 Slot Id : <339> +14:55:36 Transaction Type : REQUEST +14:55:36 Received From : +14:55:36 ============================================================================ +14:55:36 FNo. Len. Field Value +14:55:36 ============================================================================ +14:55:36 [ 1] [ 4] [0200] +14:55:36 [ 2] [ 16] [6688990105247207] +14:55:36 [ 3] [ 6] [301000] +14:55:36 [ 4] [ 12] [000000000000] +14:55:36 [ 7] [ 10] [0320145532] +14:55:36 [ 11] [ 6] [776542] +14:55:36 [ 12] [ 6] [145532] +14:55:36 [ 13] [ 4] [0320] +14:55:36 [ 15] [ 4] [0320] +14:55:36 [ 18] [ 4] [6011] +14:55:36 [ 22] [ 3] [900] +14:55:36 [ 25] [ 2] [02] +14:55:36 [ 28] [ 9] [D00000000] +14:55:36 [ 32] [ 6] [621354] +14:55:36 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:55:36 [ 37] [ 12] [507904719695] +14:55:36 [ 41] [ 8] [18001000] +14:55:36 [ 42] [ 15] [NATIVE ] +14:55:36 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:55:36 [ 49] [ 3] [418] +14:55:36 [ 52] [ 16] [667459472C5E1498] +14:55:36 ============================================================================ +14:55:36 + + +waiting on router queue for slot.... +14:55:36 Sending to : +14:55:36 ============================================================================ +14:55:36 ============================================================================ +14:55:36 Slot Id : <339> +14:55:36 Transaction Type : REQUEST +14:55:36 Received From : +14:55:36 ============================================================================ +14:55:36 FNo. Len. Field Value +14:55:36 ============================================================================ +14:55:36 [ 1] [ 4] [0200] +14:55:36 [ 2] [ 16] [6688990105247207] +14:55:36 [ 3] [ 6] [301000] +14:55:36 [ 4] [ 12] [000000000000] +14:55:36 [ 7] [ 10] [0320145532] +14:55:36 [ 11] [ 6] [776542] +14:55:36 [ 12] [ 6] [145532] +14:55:36 [ 13] [ 4] [0320] +14:55:36 [ 15] [ 4] [0320] +14:55:36 [ 18] [ 4] [6011] +14:55:36 [ 22] [ 3] [900] +14:55:36 [ 25] [ 2] [02] +14:55:36 [ 28] [ 9] [D00000000] +14:55:36 [ 32] [ 6] [621354] +14:55:36 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:55:36 [ 37] [ 12] [507904719695] +14:55:36 [ 41] [ 8] [18001000] +14:55:36 [ 42] [ 15] [NATIVE ] +14:55:36 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:55:36 [ 49] [ 3] [418] +14:55:36 [ 52] [ 16] [2740F324422C69C1] +14:55:36 ============================================================================ +14:55:36 + + +waiting on router queue for slot.... +14:55:37 Sending to : <4> +14:55:37 ============================================================================ +14:55:37 ============================================================================ +14:55:37 Slot Id : <342> +14:55:37 Transaction Type : RESPONSE +14:55:37 Received From : +14:55:37 ============================================================================ +14:55:37 FNo. Len. Field Value +14:55:37 ============================================================================ +14:55:37 [ 1] [ 4] [0210] +14:55:37 [ 2] [ 16] [6213545000000608] +14:55:37 [ 3] [ 6] [011000] +14:55:37 [ 4] [ 12] [000100000000] +14:55:37 [ 7] [ 10] [0320145557] +14:55:37 [ 11] [ 6] [207565] +14:55:37 [ 12] [ 6] [025407] +14:55:37 [ 13] [ 4] [0320] +14:55:37 [ 15] [ 4] [0320] +14:55:37 [ 18] [ 4] [6011] +14:55:37 [ 19] [ 3] [418] +14:55:37 [ 32] [ 6] [198901] +14:55:37 [ 35] [ 32] [6213545000000608=491212010060365] +14:55:37 [ 37] [ 12] [507914207565] +14:55:37 [ 38] [ 6] [013249] +14:55:37 [ 39] [ 2] [00] +14:55:37 [ 41] [ 8] [01529031] +14:55:37 [ 49] [ 3] [418] +14:55:37 [ 54] [ 40] [1001418C0004525764261002418C000452576426] +14:55:37 ============================================================================ +14:55:37 Sending to : +14:55:37 ============================================================================ +14:55:37 + + +waiting on router queue for slot.... +14:55:37 ============================================================================ +14:55:37 Slot Id : <323> +14:55:37 Transaction Type : RESPONSE +14:55:37 Received From : +14:55:37 ============================================================================ +14:55:37 FNo. Len. Field Value +14:55:37 ============================================================================ +14:55:37 [ 1] [ 4] [0210] +14:55:37 [ 2] [ 16] [6688990040000612] +14:55:37 [ 3] [ 6] [013000] +14:55:37 [ 4] [ 12] [000010000000] +14:55:37 [ 11] [ 6] [776541] +14:55:37 [ 12] [ 6] [145531] +14:55:37 [ 15] [ 4] [0320] +14:55:37 [ 18] [ 4] [6011] +14:55:37 [ 32] [ 6] [621354] +14:55:37 [ 35] [ 37] [6688990040000612=97091261263533700000] +14:55:37 [ 37] [ 12] [507904769565] +14:55:37 [ 38] [ 6] [116783] +14:55:37 [ 39] [ 2] [00] +14:55:37 [ 41] [ 8] [07001200] +14:55:37 [ 49] [ 3] [418] +14:55:37 [ 54] [ 20] [3002418C000046420879] +14:55:37 ============================================================================ +14:55:37 Sending to : +14:55:37 ============================================================================ +14:55:37 + + +waiting on router queue for slot.... +14:55:38 ============================================================================ +14:55:38 Slot Id : <339> +14:55:38 Transaction Type : RESPONSE +14:55:38 Received From : +14:55:38 ============================================================================ +14:55:38 FNo. Len. Field Value +14:55:38 ============================================================================ +14:55:38 [ 1] [ 4] [0210] +14:55:38 [ 2] [ 16] [6688990105247207] +14:55:38 [ 3] [ 6] [301000] +14:55:38 [ 4] [ 12] [000000000000] +14:55:38 [ 11] [ 6] [776542] +14:55:38 [ 12] [ 6] [145532] +14:55:38 [ 15] [ 4] [0320] +14:55:38 [ 18] [ 4] [6011] +14:55:38 [ 32] [ 6] [621354] +14:55:38 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:55:38 [ 37] [ 12] [507904719695] +14:55:38 [ 38] [ 6] [231385] +14:55:38 [ 39] [ 2] [00] +14:55:38 [ 41] [ 8] [18001000] +14:55:38 [ 49] [ 3] [418] +14:55:38 [ 54] [ 20] [1002418C000681156582] +14:55:38 ============================================================================ +14:55:38 Sending to : +14:55:38 ============================================================================ +14:55:38 + + +waiting on router queue for slot.... +14:55:38 ============================================================================ +14:55:38 Slot Id : <342> +14:55:38 Transaction Type : RESPONSE +14:55:38 Received From : +14:55:38 ============================================================================ +14:55:38 FNo. Len. Field Value +14:55:38 ============================================================================ +14:55:38 [ 1] [ 4] [0210] +14:55:38 [ 2] [ 16] [6213545000000608] +14:55:38 [ 3] [ 6] [011000] +14:55:38 [ 4] [ 12] [000100000000] +14:55:38 [ 7] [ 10] [0320145557] +14:55:38 [ 11] [ 6] [207565] +14:55:38 [ 12] [ 6] [025407] +14:55:38 [ 13] [ 4] [0320] +14:55:38 [ 15] [ 4] [0320] +14:55:38 [ 18] [ 4] [6011] +14:55:38 [ 19] [ 3] [418] +14:55:38 [ 32] [ 6] [198901] +14:55:38 [ 35] [ 32] [6213545000000608=491212010060365] +14:55:38 [ 37] [ 12] [507914207565] +14:55:38 [ 38] [ 6] [013249] +14:55:38 [ 39] [ 2] [00] +14:55:38 [ 41] [ 8] [01529031] +14:55:38 [ 49] [ 3] [418] +14:55:38 [ 54] [ 40] [1001418C0004525764261002418C000452576426] +14:55:38 ============================================================================ +14:55:38 Calculate Source COMM Id = 5 +14:55:38 ============================================================================ +14:55:38 + + +waiting on router queue for slot.... +14:55:40 ============================================================================ +14:55:40 Slot Id : <339> +14:55:40 Transaction Type : RESPONSE +14:55:40 Received From : +14:55:40 ============================================================================ +14:55:40 FNo. Len. Field Value +14:55:40 ============================================================================ +14:55:40 [ 1] [ 4] [0210] +14:55:40 [ 2] [ 16] [6688990105247207] +14:55:40 [ 3] [ 6] [301000] +14:55:40 [ 4] [ 12] [000000000000] +14:55:40 [ 11] [ 6] [776542] +14:55:40 [ 12] [ 6] [145532] +14:55:40 [ 15] [ 4] [0320] +14:55:40 [ 18] [ 4] [6011] +14:55:40 [ 32] [ 6] [621354] +14:55:40 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:55:40 [ 37] [ 12] [507904719695] +14:55:40 [ 38] [ 6] [231385] +14:55:40 [ 39] [ 2] [00] +14:55:40 [ 41] [ 8] [18001000] +14:55:40 [ 49] [ 3] [418] +14:55:40 [ 54] [ 20] [1002418C000681156582] +14:55:40 ============================================================================ +14:55:40 Calculate Source COMM Id = 0 +14:55:40 ============================================================================ +14:55:40 + + +waiting on router queue for slot.... +14:55:41 ============================================================================ +14:55:41 Slot Id : <323> +14:55:41 Transaction Type : RESPONSE +14:55:41 Received From : +14:55:41 ============================================================================ +14:55:41 FNo. Len. Field Value +14:55:41 ============================================================================ +14:55:41 [ 1] [ 4] [0210] +14:55:41 [ 2] [ 16] [6688990040000612] +14:55:41 [ 3] [ 6] [013000] +14:55:41 [ 4] [ 12] [000010000000] +14:55:41 [ 11] [ 6] [776541] +14:55:41 [ 12] [ 6] [145531] +14:55:41 [ 15] [ 4] [0320] +14:55:41 [ 18] [ 4] [6011] +14:55:41 [ 32] [ 6] [621354] +14:55:41 [ 35] [ 37] [6688990040000612=97091261263533700000] +14:55:41 [ 37] [ 12] [507904769565] +14:55:41 [ 38] [ 6] [116783] +14:55:41 [ 39] [ 2] [00] +14:55:41 [ 41] [ 8] [07001200] +14:55:41 [ 49] [ 3] [418] +14:55:41 [ 54] [ 20] [3002418C000046420879] +14:55:41 ============================================================================ +14:55:41 Calculate Source COMM Id = 0 +14:55:41 ============================================================================ +14:55:41 + + +waiting on router queue for slot.... +14:55:46 ============================================================================ +14:55:46 Slot Id : <268> +14:55:46 Transaction Type : REQUEST +14:55:46 Received From : +14:55:46 ============================================================================ +14:55:46 FNo. Len. Field Value +14:55:46 ============================================================================ +14:55:46 [ 1] [ 4] [0800] +14:55:46 [ 7] [ 10] [0320220734] +14:55:46 [ 11] [ 6] [150734] +14:55:46 [ 37] [ 12] [57915150734] +14:55:46 [ 70] [ 3] [301] +14:55:46 ============================================================================ +14:55:46 + + +waiting on router queue for slot.... +14:55:46 Sending to : +14:55:46 ============================================================================ +14:55:46 ============================================================================ +14:55:46 Slot Id : <268> +14:55:46 Transaction Type : RESPONSE +14:55:46 Received From : +14:55:46 ============================================================================ +14:55:46 FNo. Len. Field Value +14:55:46 ============================================================================ +14:55:46 [ 1] [ 4] [0810] +14:55:46 [ 7] [ 10] [0320220734] +14:55:46 [ 11] [ 6] [150734] +14:55:46 [ 37] [ 12] [579151507340] +14:55:46 [ 39] [ 2] [00] +14:55:46 [ 70] [ 3] [810] +14:55:46 ============================================================================ +14:55:46 Calculate Source COMM Id = 6 +14:55:46 ============================================================================ +14:55:46 + + +waiting on router queue for slot.... +14:55:48 ============================================================================ +14:55:48 Slot Id : <348> +14:55:48 Transaction Type : REQUEST +14:55:48 Received From : +14:55:48 ============================================================================ +14:55:48 FNo. Len. Field Value +14:55:48 ============================================================================ +14:55:48 [ 1] [ 4] [0200] +14:55:48 [ 2] [ 16] [1989010003184787] +14:55:48 [ 3] [ 6] [300000] +14:55:48 [ 4] [ 12] [000000000000] +14:55:48 [ 7] [ 10] [0320145544] +14:55:48 [ 11] [ 6] [776590] +14:55:48 [ 12] [ 6] [145544] +14:55:48 [ 13] [ 4] [0320] +14:55:48 [ 15] [ 4] [0320] +14:55:48 [ 18] [ 4] [6011] +14:55:48 [ 22] [ 3] [900] +14:55:48 [ 25] [ 2] [02] +14:55:48 [ 28] [ 9] [D00000000] +14:55:48 [ 32] [ 6] [621354] +14:55:48 [ 35] [ 32] [1989010003184787=000010100000215] +14:55:48 [ 37] [ 12] [507902764856] +14:55:48 [ 41] [ 8] [01007000] +14:55:48 [ 42] [ 15] [NATIVE ] +14:55:48 [ 43] [ 40] [NOVOTEL SikhottabongLAO] +14:55:48 [ 49] [ 3] [418] +14:55:48 [ 52] [ 16] [82D0F87E61C28F44] +14:55:48 ============================================================================ +14:55:48 + + +waiting on router queue for slot.... +14:55:48 Sending to : +14:55:48 ============================================================================ +14:55:48 Sending to : +14:55:48 ============================================================================ +14:55:49 ============================================================================ +14:55:49 Slot Id : <348> +14:55:49 Transaction Type : REQUEST +14:55:49 Received From : +14:55:49 ============================================================================ +14:55:49 FNo. Len. Field Value +14:55:49 ============================================================================ +14:55:49 [ 1] [ 4] [0200] +14:55:49 [ 2] [ 16] [1989010003184787] +14:55:49 [ 3] [ 6] [300000] +14:55:49 [ 4] [ 12] [000000000000] +14:55:49 [ 7] [ 10] [0320145544] +14:55:49 [ 11] [ 6] [776590] +14:55:49 [ 12] [ 6] [145544] +14:55:49 [ 13] [ 4] [0320] +14:55:49 [ 15] [ 4] [0320] +14:55:49 [ 18] [ 4] [6011] +14:55:49 [ 22] [ 3] [900] +14:55:49 [ 25] [ 2] [02] +14:55:49 [ 28] [ 9] [D00000000] +14:55:49 [ 32] [ 6] [621354] +14:55:49 [ 35] [ 32] [1989010003184787=000010100000215] +14:55:49 [ 37] [ 12] [507902764856] +14:55:49 [ 41] [ 8] [01007000] +14:55:49 [ 42] [ 15] [NATIVE ] +14:55:49 [ 43] [ 40] [NOVOTEL SikhottabongLAO] +14:55:49 [ 49] [ 3] [418] +14:55:49 [ 52] [ 16] [82D0F87E61C28F44] +14:55:49 ============================================================================ +14:55:49 + + +waiting on router queue for slot.... +14:55:49 Sending to : +14:55:49 ============================================================================ +14:55:49 ============================================================================ +14:55:49 Slot Id : <348> +14:55:49 Transaction Type : REQUEST +14:55:49 Received From : +14:55:49 ============================================================================ +14:55:49 FNo. Len. Field Value +14:55:49 ============================================================================ +14:55:49 [ 1] [ 4] [0200] +14:55:49 [ 2] [ 16] [1989010003184787] +14:55:49 [ 3] [ 6] [300000] +14:55:49 [ 4] [ 12] [000000000000] +14:55:49 [ 7] [ 10] [0320145544] +14:55:49 [ 11] [ 6] [776590] +14:55:49 [ 12] [ 6] [145544] +14:55:49 [ 13] [ 4] [0320] +14:55:49 [ 15] [ 4] [0320] +14:55:49 [ 18] [ 4] [6011] +14:55:49 [ 22] [ 3] [900] +14:55:49 [ 25] [ 2] [02] +14:55:49 [ 28] [ 9] [D00000000] +14:55:49 [ 32] [ 6] [621354] +14:55:49 [ 35] [ 32] [1989010003184787=000010100000215] +14:55:49 [ 37] [ 12] [507902764856] +14:55:49 [ 41] [ 8] [01007000] +14:55:49 [ 42] [ 15] [NATIVE ] +14:55:49 [ 43] [ 40] [NOVOTEL SikhottabongLAO] +14:55:49 [ 49] [ 3] [418] +14:55:49 [ 52] [ 16] [0AE4AB76D556B751] +14:55:49 ============================================================================ +14:55:49 + + +waiting on router queue for slot.... +14:55:49 Sending to : <5> +14:55:49 ============================================================================ +14:55:49 ============================================================================ +14:55:49 Slot Id : <341> +14:55:49 Transaction Type : REQUEST +14:55:49 Received From : +14:55:49 ============================================================================ +14:55:49 FNo. Len. Field Value +14:55:49 ============================================================================ +14:55:49 [ 1] [ 4] [0800] +14:55:49 [ 7] [ 10] [0320075457] +14:55:49 [ 11] [ 6] [156884] +14:55:49 [ 70] [ 3] [301] +14:55:49 ============================================================================ +14:55:49 + + +waiting on router queue for slot.... +14:55:49 Sending to : +14:55:49 ============================================================================ +14:55:49 ============================================================================ +14:55:49 Slot Id : <341> +14:55:49 Transaction Type : RESPONSE +14:55:49 Received From : +14:55:49 ============================================================================ +14:55:49 FNo. Len. Field Value +14:55:49 ============================================================================ +14:55:49 [ 1] [ 4] [0810] +14:55:49 [ 7] [ 10] [0320075457] +14:55:49 [ 11] [ 6] [156884] +14:55:49 [ 39] [ 2] [00] +14:55:49 [ 70] [ 3] [301] +14:55:49 ============================================================================ +14:55:49 Calculate Source COMM Id = 2 +14:55:49 ============================================================================ +14:55:49 + + +waiting on router queue for slot.... +14:55:50 ============================================================================ +14:55:50 Slot Id : <348> +14:55:50 Transaction Type : RESPONSE +14:55:50 Received From : +14:55:50 ============================================================================ +14:55:50 FNo. Len. Field Value +14:55:50 ============================================================================ +14:55:50 [ 1] [ 4] [0210] +14:55:50 [ 2] [ 16] [1989010003184787] +14:55:50 [ 3] [ 6] [300000] +14:55:50 [ 4] [ 12] [000000000000] +14:55:50 [ 7] [ 10] [0320145544] +14:55:50 [ 11] [ 6] [776590] +14:55:50 [ 12] [ 6] [145544] +14:55:50 [ 13] [ 4] [0320] +14:55:50 [ 15] [ 4] [0320] +14:55:50 [ 18] [ 4] [6011] +14:55:50 [ 19] [ 3] [418] +14:55:50 [ 32] [ 6] [621354] +14:55:50 [ 37] [ 12] [507902764856] +14:55:50 [ 38] [ 6] [791319] +14:55:50 [ 39] [ 2] [00] +14:55:50 [ 41] [ 8] [01007000] +14:55:50 [ 49] [ 3] [418] +14:55:50 [ 54] [ 20] [1001418C000104372000] +14:55:50 ============================================================================ +14:55:50 Sending to : +14:55:50 ============================================================================ +14:55:50 + + +waiting on router queue for slot.... +14:55:51 ============================================================================ +14:55:51 Slot Id : <348> +14:55:51 Transaction Type : RESPONSE +14:55:51 Received From : +14:55:51 ============================================================================ +14:55:51 FNo. Len. Field Value +14:55:51 ============================================================================ +14:55:51 [ 1] [ 4] [0210] +14:55:51 [ 2] [ 16] [1989010003184787] +14:55:51 [ 3] [ 6] [300000] +14:55:51 [ 4] [ 12] [000000000000] +14:55:51 [ 7] [ 10] [0320145544] +14:55:51 [ 11] [ 6] [776590] +14:55:51 [ 12] [ 6] [145544] +14:55:51 [ 13] [ 4] [0320] +14:55:51 [ 15] [ 4] [0320] +14:55:51 [ 18] [ 4] [6011] +14:55:51 [ 19] [ 3] [418] +14:55:51 [ 32] [ 6] [621354] +14:55:51 [ 37] [ 12] [507902764856] +14:55:51 [ 38] [ 6] [791319] +14:55:51 [ 39] [ 2] [00] +14:55:51 [ 41] [ 8] [01007000] +14:55:51 [ 49] [ 3] [418] +14:55:51 [ 54] [ 20] [1001418C000104372000] +14:55:51 ============================================================================ +14:55:51 Calculate Source COMM Id = 0 +14:55:51 ============================================================================ +14:55:51 + + +waiting on router queue for slot.... +14:56:01 ============================================================================ +14:56:01 Slot Id : <329> +14:56:01 Transaction Type : REQUEST +14:56:01 Received From : +14:56:01 ============================================================================ +14:56:01 FNo. Len. Field Value +14:56:01 ============================================================================ +14:56:01 [ 1] [ 4] [0800] +14:56:01 [ 7] [ 10] [0320075508] +14:56:01 [ 11] [ 6] [156885] +14:56:01 [ 70] [ 3] [301] +14:56:01 ============================================================================ +14:56:01 + + +waiting on router queue for slot.... +14:56:01 Sending to : +14:56:01 ============================================================================ +14:56:01 ============================================================================ +14:56:01 Slot Id : <329> +14:56:01 Transaction Type : RESPONSE +14:56:01 Received From : +14:56:01 ============================================================================ +14:56:01 FNo. Len. Field Value +14:56:01 ============================================================================ +14:56:01 [ 1] [ 4] [0810] +14:56:01 [ 7] [ 10] [0320075508] +14:56:01 [ 11] [ 6] [156885] +14:56:01 [ 39] [ 2] [00] +14:56:01 [ 70] [ 3] [301] +14:56:01 ============================================================================ +14:56:01 Calculate Source COMM Id = 2 +14:56:01 ============================================================================ +14:56:01 + + +waiting on router queue for slot.... +14:56:06 ============================================================================ +14:56:06 Slot Id : <309> +14:56:06 Transaction Type : REQUEST +14:56:06 Received From : +14:56:06 ============================================================================ +14:56:06 FNo. Len. Field Value +14:56:06 ============================================================================ +14:56:06 [ 1] [ 4] [0200] +14:56:06 [ 2] [ 16] [6688990103743801] +14:56:06 [ 3] [ 6] [010000] +14:56:06 [ 4] [ 12] [000100000000] +14:56:06 [ 7] [ 10] [0320145602] +14:56:06 [ 11] [ 6] [776663] +14:56:06 [ 12] [ 6] [145602] +14:56:06 [ 13] [ 4] [0320] +14:56:06 [ 15] [ 4] [0320] +14:56:06 [ 18] [ 4] [6011] +14:56:06 [ 22] [ 3] [900] +14:56:06 [ 25] [ 2] [02] +14:56:06 [ 28] [ 9] [D00002000] +14:56:06 [ 32] [ 6] [621354] +14:56:06 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:56:06 [ 37] [ 12] [507903344983] +14:56:06 [ 41] [ 8] [13001400] +14:56:06 [ 42] [ 15] [NATIVE ] +14:56:06 [ 43] [ 40] [Kham Unit Kham LAO] +14:56:06 [ 49] [ 3] [418] +14:56:06 [ 52] [ 16] [DC473392EDA7F48C] +14:56:06 ============================================================================ +14:56:06 + + +waiting on router queue for slot.... +14:56:06 Sending to : +14:56:06 ============================================================================ +14:56:06 Sending to : +14:56:06 ============================================================================ +14:56:07 ============================================================================ +14:56:07 Slot Id : <309> +14:56:07 Transaction Type : REQUEST +14:56:07 Received From : +14:56:07 ============================================================================ +14:56:07 FNo. Len. Field Value +14:56:07 ============================================================================ +14:56:07 [ 1] [ 4] [0200] +14:56:07 [ 2] [ 16] [6688990103743801] +14:56:07 [ 3] [ 6] [010000] +14:56:07 [ 4] [ 12] [000100000000] +14:56:07 [ 7] [ 10] [0320145602] +14:56:07 [ 11] [ 6] [776663] +14:56:07 [ 12] [ 6] [145602] +14:56:07 [ 13] [ 4] [0320] +14:56:07 [ 15] [ 4] [0320] +14:56:07 [ 18] [ 4] [6011] +14:56:07 [ 22] [ 3] [900] +14:56:07 [ 25] [ 2] [02] +14:56:07 [ 28] [ 9] [D00002000] +14:56:07 [ 32] [ 6] [621354] +14:56:07 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:56:07 [ 37] [ 12] [507903344983] +14:56:07 [ 41] [ 8] [13001400] +14:56:07 [ 42] [ 15] [NATIVE ] +14:56:07 [ 43] [ 40] [Kham Unit Kham LAO] +14:56:07 [ 49] [ 3] [418] +14:56:07 [ 52] [ 16] [DC473392EDA7F48C] +14:56:07 ============================================================================ +14:56:07 + + +waiting on router queue for slot.... +14:56:07 Sending to : +14:56:07 ============================================================================ +14:56:07 ============================================================================ +14:56:07 Slot Id : <309> +14:56:07 Transaction Type : REQUEST +14:56:07 Received From : +14:56:07 ============================================================================ +14:56:07 FNo. Len. Field Value +14:56:07 ============================================================================ +14:56:07 [ 1] [ 4] [0200] +14:56:07 [ 2] [ 16] [6688990103743801] +14:56:07 [ 3] [ 6] [010000] +14:56:07 [ 4] [ 12] [000100000000] +14:56:07 [ 7] [ 10] [0320145602] +14:56:07 [ 11] [ 6] [776663] +14:56:07 [ 12] [ 6] [145602] +14:56:07 [ 13] [ 4] [0320] +14:56:07 [ 15] [ 4] [0320] +14:56:07 [ 18] [ 4] [6011] +14:56:07 [ 22] [ 3] [900] +14:56:07 [ 25] [ 2] [02] +14:56:07 [ 28] [ 9] [D00002000] +14:56:07 [ 32] [ 6] [621354] +14:56:07 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:56:07 [ 37] [ 12] [507903344983] +14:56:07 [ 41] [ 8] [13001400] +14:56:07 [ 42] [ 15] [NATIVE ] +14:56:07 [ 43] [ 40] [Kham Unit Kham LAO] +14:56:07 [ 49] [ 3] [418] +14:56:07 [ 52] [ 16] [B22DE698A99EA8B3] +14:56:07 ============================================================================ +14:56:07 + + +waiting on router queue for slot.... +14:56:07 Sending to : <4> +14:56:07 ============================================================================ +14:56:08 ============================================================================ +14:56:08 Slot Id : <309> +14:56:08 Transaction Type : RESPONSE +14:56:08 Received From : +14:56:08 ============================================================================ +14:56:08 FNo. Len. Field Value +14:56:08 ============================================================================ +14:56:08 [ 1] [ 4] [0210] +14:56:08 [ 2] [ 16] [6688990103743801] +14:56:08 [ 3] [ 6] [010000] +14:56:08 [ 4] [ 12] [000100000000] +14:56:08 [ 11] [ 6] [776663] +14:56:08 [ 12] [ 6] [145602] +14:56:08 [ 15] [ 4] [0320] +14:56:08 [ 18] [ 4] [6011] +14:56:08 [ 32] [ 6] [621354] +14:56:08 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:56:08 [ 37] [ 12] [507903344983] +14:56:08 [ 38] [ 6] [524049] +14:56:08 [ 39] [ 2] [00] +14:56:08 [ 41] [ 8] [13001400] +14:56:08 [ 49] [ 3] [418] +14:56:08 [ 54] [ 20] [0002418C000779150153] +14:56:08 ============================================================================ +14:56:08 Sending to : +14:56:08 ============================================================================ +14:56:08 + + +waiting on router queue for slot.... +14:56:10 ============================================================================ +14:56:10 Slot Id : <309> +14:56:10 Transaction Type : RESPONSE +14:56:10 Received From : +14:56:10 ============================================================================ +14:56:10 FNo. Len. Field Value +14:56:10 ============================================================================ +14:56:10 [ 1] [ 4] [0210] +14:56:10 [ 2] [ 16] [6688990103743801] +14:56:10 [ 3] [ 6] [010000] +14:56:10 [ 4] [ 12] [000100000000] +14:56:10 [ 11] [ 6] [776663] +14:56:10 [ 12] [ 6] [145602] +14:56:10 [ 15] [ 4] [0320] +14:56:10 [ 18] [ 4] [6011] +14:56:10 [ 32] [ 6] [621354] +14:56:10 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:56:10 [ 37] [ 12] [507903344983] +14:56:10 [ 38] [ 6] [524049] +14:56:10 [ 39] [ 2] [00] +14:56:10 [ 41] [ 8] [13001400] +14:56:10 [ 49] [ 3] [418] +14:56:10 [ 54] [ 20] [0002418C000779150153] +14:56:10 ============================================================================ +14:56:10 Calculate Source COMM Id = 0 +14:56:10 ============================================================================ +14:56:10 + + +waiting on router queue for slot.... +14:56:11 ============================================================================ +14:56:11 Slot Id : <352> +14:56:11 Transaction Type : REQUEST +14:56:11 Received From : +14:56:11 ============================================================================ +14:56:11 FNo. Len. Field Value +14:56:11 ============================================================================ +14:56:11 [ 1] [ 4] [0200] +14:56:11 [ 2] [ 16] [6213545000000608] +14:56:11 [ 3] [ 6] [011000] +14:56:11 [ 4] [ 12] [000100000000] +14:56:11 [ 7] [ 10] [0320145631] +14:56:11 [ 11] [ 6] [207576] +14:56:11 [ 12] [ 6] [025441] +14:56:11 [ 13] [ 4] [0320] +14:56:11 [ 14] [ 4] [4912] +14:56:11 [ 15] [ 4] [0320] +14:56:11 [ 18] [ 4] [6011] +14:56:11 [ 19] [ 3] [418] +14:56:11 [ 22] [ 3] [021] +14:56:11 [ 25] [ 2] [01] +14:56:11 [ 28] [ 9] [D00002000] +14:56:11 [ 32] [ 6] [198901] +14:56:11 [ 35] [ 32] [6213545000000608=491212010060365] +14:56:11 [ 37] [ 12] [507914207576] +14:56:11 [ 41] [ 8] [01529031] +14:56:11 [ 42] [ 15] [000000041529031] +14:56:11 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:56:11 [ 49] [ 3] [418] +14:56:11 [ 52] [ 16] [2649391E89372AD3] +14:56:11 ============================================================================ +14:56:11 + + +waiting on router queue for slot.... +14:56:11 Sending to : +14:56:11 ============================================================================ +14:56:11 Sending to : +14:56:11 ============================================================================ +14:56:11 ============================================================================ +14:56:11 Slot Id : <352> +14:56:11 Transaction Type : REQUEST +14:56:11 Received From : +14:56:11 ============================================================================ +14:56:11 FNo. Len. Field Value +14:56:11 ============================================================================ +14:56:11 [ 1] [ 4] [0200] +14:56:11 [ 2] [ 16] [6213545000000608] +14:56:11 [ 3] [ 6] [011000] +14:56:11 [ 4] [ 12] [000100000000] +14:56:11 [ 7] [ 10] [0320145631] +14:56:11 [ 11] [ 6] [207576] +14:56:11 [ 12] [ 6] [025441] +14:56:11 [ 13] [ 4] [0320] +14:56:11 [ 14] [ 4] [4912] +14:56:11 [ 15] [ 4] [0320] +14:56:11 [ 18] [ 4] [6011] +14:56:11 [ 19] [ 3] [418] +14:56:11 [ 22] [ 3] [021] +14:56:11 [ 25] [ 2] [01] +14:56:11 [ 28] [ 9] [D00002000] +14:56:11 [ 32] [ 6] [198901] +14:56:11 [ 35] [ 32] [6213545000000608=491212010060365] +14:56:11 [ 37] [ 12] [507914207576] +14:56:11 [ 41] [ 8] [01529031] +14:56:11 [ 42] [ 15] [000000041529031] +14:56:11 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:56:11 [ 49] [ 3] [418] +14:56:11 [ 52] [ 16] [2649391E89372AD3] +14:56:11 ============================================================================ +14:56:11 + + +waiting on router queue for slot.... +14:56:11 Sending to : +14:56:11 ============================================================================ +14:56:11 ============================================================================ +14:56:11 Slot Id : <352> +14:56:11 Transaction Type : REQUEST +14:56:11 Received From : +14:56:11 ============================================================================ +14:56:11 FNo. Len. Field Value +14:56:11 ============================================================================ +14:56:11 [ 1] [ 4] [0200] +14:56:11 [ 2] [ 16] [6213545000000608] +14:56:11 [ 3] [ 6] [011000] +14:56:11 [ 4] [ 12] [000100000000] +14:56:11 [ 7] [ 10] [0320145631] +14:56:11 [ 11] [ 6] [207576] +14:56:11 [ 12] [ 6] [025441] +14:56:11 [ 13] [ 4] [0320] +14:56:11 [ 14] [ 4] [4912] +14:56:11 [ 15] [ 4] [0320] +14:56:11 [ 18] [ 4] [6011] +14:56:11 [ 19] [ 3] [418] +14:56:11 [ 22] [ 3] [021] +14:56:11 [ 25] [ 2] [01] +14:56:11 [ 28] [ 9] [D00002000] +14:56:11 [ 32] [ 6] [198901] +14:56:11 [ 35] [ 32] [6213545000000608=491212010060365] +14:56:11 [ 37] [ 12] [507914207576] +14:56:11 [ 41] [ 8] [01529031] +14:56:11 [ 42] [ 15] [000000041529031] +14:56:11 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:56:11 [ 49] [ 3] [418] +14:56:11 [ 52] [ 16] [57D8B9FACEA13D84] +14:56:11 ============================================================================ +14:56:11 + + +waiting on router queue for slot.... +14:56:11 Sending to : <0> +14:56:11 ============================================================================ +14:56:12 ============================================================================ +14:56:12 Slot Id : <352> +14:56:12 Transaction Type : RESPONSE +14:56:12 Received From : +14:56:12 ============================================================================ +14:56:12 FNo. Len. Field Value +14:56:12 ============================================================================ +14:56:12 [ 1] [ 4] [0210] +14:56:12 [ 2] [ 16] [6213545000000608] +14:56:12 [ 3] [ 6] [011000] +14:56:12 [ 4] [ 12] [000100000000] +14:56:12 [ 7] [ 10] [0320145631] +14:56:12 [ 11] [ 6] [207576] +14:56:12 [ 12] [ 6] [025441] +14:56:12 [ 13] [ 4] [0320] +14:56:12 [ 15] [ 4] [0320] +14:56:12 [ 18] [ 4] [6011] +14:56:12 [ 19] [ 3] [418] +14:56:12 [ 32] [ 6] [198901] +14:56:12 [ 35] [ 32] [6213545000000608=491212010060365] +14:56:12 [ 37] [ 12] [507914207576] +14:56:12 [ 38] [ 6] [705718] +14:56:12 [ 39] [ 2] [00] +14:56:12 [ 41] [ 8] [01529031] +14:56:12 [ 49] [ 3] [418] +14:56:12 [ 54] [ 40] [1001418C0003523764261002418C000352376426] +14:56:12 ============================================================================ +14:56:12 Sending to : +14:56:12 ============================================================================ +14:56:12 + + +waiting on router queue for slot.... +14:56:14 ============================================================================ +14:56:14 Slot Id : <352> +14:56:14 Transaction Type : RESPONSE +14:56:14 Received From : +14:56:14 ============================================================================ +14:56:14 FNo. Len. Field Value +14:56:14 ============================================================================ +14:56:14 [ 1] [ 4] [0210] +14:56:14 [ 2] [ 16] [6213545000000608] +14:56:14 [ 3] [ 6] [011000] +14:56:14 [ 4] [ 12] [000100000000] +14:56:14 [ 7] [ 10] [0320145631] +14:56:14 [ 11] [ 6] [207576] +14:56:14 [ 12] [ 6] [025441] +14:56:14 [ 13] [ 4] [0320] +14:56:14 [ 15] [ 4] [0320] +14:56:14 [ 18] [ 4] [6011] +14:56:14 [ 19] [ 3] [418] +14:56:14 [ 32] [ 6] [198901] +14:56:14 [ 35] [ 32] [6213545000000608=491212010060365] +14:56:14 [ 37] [ 12] [507914207576] +14:56:14 [ 38] [ 6] [705718] +14:56:14 [ 39] [ 2] [00] +14:56:14 [ 41] [ 8] [01529031] +14:56:14 [ 49] [ 3] [418] +14:56:14 [ 54] [ 40] [1001418C0003523764261002418C000352376426] +14:56:14 ============================================================================ +14:56:14 Calculate Source COMM Id = 5 +14:56:14 ============================================================================ +14:56:14 + + +waiting on router queue for slot.... +14:56:17 ============================================================================ +14:56:17 Slot Id : <328> +14:56:17 Transaction Type : REQUEST +14:56:17 Received From : +14:56:17 ============================================================================ +14:56:17 FNo. Len. Field Value +14:56:17 ============================================================================ +14:56:17 [ 1] [ 4] [0800] +14:56:17 [ 7] [ 10] [0320075524] +14:56:17 [ 11] [ 6] [156886] +14:56:17 [ 70] [ 3] [301] +14:56:17 ============================================================================ +14:56:17 + + +waiting on router queue for slot.... +14:56:17 Sending to : +14:56:17 ============================================================================ +14:56:17 ============================================================================ +14:56:17 Slot Id : <328> +14:56:17 Transaction Type : RESPONSE +14:56:17 Received From : +14:56:17 ============================================================================ +14:56:17 FNo. Len. Field Value +14:56:17 ============================================================================ +14:56:17 [ 1] [ 4] [0810] +14:56:17 [ 7] [ 10] [0320075524] +14:56:17 [ 11] [ 6] [156886] +14:56:17 [ 39] [ 2] [00] +14:56:17 [ 70] [ 3] [301] +14:56:17 ============================================================================ +14:56:17 Calculate Source COMM Id = 2 +14:56:17 ============================================================================ +14:56:17 + + +waiting on router queue for slot.... +14:56:22 ============================================================================ +14:56:22 Slot Id : <337> +14:56:22 Transaction Type : REQUEST +14:56:22 Received From : +14:56:22 ============================================================================ +14:56:22 FNo. Len. Field Value +14:56:22 ============================================================================ +14:56:22 [ 1] [ 4] [0800] +14:56:22 [ 7] [ 10] [0320075412] +14:56:22 [ 11] [ 6] [092782] +14:56:22 [ 37] [ 12] [57914092782] +14:56:22 [ 70] [ 3] [301] +14:56:22 ============================================================================ +14:56:22 + + +waiting on router queue for slot.... +14:56:22 Sending to : +14:56:22 ============================================================================ +14:56:22 ============================================================================ +14:56:22 Slot Id : <337> +14:56:22 Transaction Type : RESPONSE +14:56:22 Received From : +14:56:22 ============================================================================ +14:56:22 FNo. Len. Field Value +14:56:22 ============================================================================ +14:56:22 [ 1] [ 4] [0810] +14:56:22 [ 7] [ 10] [0320075412] +14:56:22 [ 11] [ 6] [092782] +14:56:22 [ 37] [ 12] [579140927820] +14:56:22 [ 39] [ 2] [00] +14:56:22 [ 70] [ 3] [810] +14:56:22 ============================================================================ +14:56:22 Calculate Source COMM Id = 4 +14:56:22 ============================================================================ +14:56:22 + + +waiting on router queue for slot.... +14:56:24 ============================================================================ +14:56:24 Slot Id : <347> +14:56:24 Transaction Type : REQUEST +14:56:24 Received From : +14:56:24 ============================================================================ +14:56:24 FNo. Len. Field Value +14:56:24 ============================================================================ +14:56:24 [ 1] [ 4] [0200] +14:56:24 [ 2] [ 16] [1989010003184787] +14:56:24 [ 3] [ 6] [300000] +14:56:24 [ 4] [ 12] [000000000000] +14:56:24 [ 7] [ 10] [0320145619] +14:56:24 [ 11] [ 6] [776736] +14:56:24 [ 12] [ 6] [145619] +14:56:24 [ 13] [ 4] [0320] +14:56:24 [ 15] [ 4] [0320] +14:56:24 [ 18] [ 4] [6011] +14:56:24 [ 22] [ 3] [900] +14:56:24 [ 25] [ 2] [02] +14:56:24 [ 28] [ 9] [D00000000] +14:56:24 [ 32] [ 6] [621354] +14:56:24 [ 35] [ 32] [1989010003184787=000010100000215] +14:56:24 [ 37] [ 12] [507902764857] +14:56:24 [ 41] [ 8] [01007000] +14:56:24 [ 42] [ 15] [NATIVE ] +14:56:24 [ 43] [ 40] [NOVOTEL SikhottabongLAO] +14:56:24 [ 49] [ 3] [418] +14:56:24 [ 52] [ 16] [82D0F87E61C28F44] +14:56:24 ============================================================================ +14:56:24 + + +waiting on router queue for slot.... +14:56:24 Sending to : +14:56:24 ============================================================================ +14:56:24 Sending to : +14:56:24 ============================================================================ +14:56:24 ============================================================================ +14:56:24 Slot Id : <347> +14:56:24 Transaction Type : REQUEST +14:56:24 Received From : +14:56:24 ============================================================================ +14:56:24 FNo. Len. Field Value +14:56:24 ============================================================================ +14:56:24 [ 1] [ 4] [0200] +14:56:24 [ 2] [ 16] [1989010003184787] +14:56:24 [ 3] [ 6] [300000] +14:56:24 [ 4] [ 12] [000000000000] +14:56:24 [ 7] [ 10] [0320145619] +14:56:24 [ 11] [ 6] [776736] +14:56:24 [ 12] [ 6] [145619] +14:56:24 [ 13] [ 4] [0320] +14:56:24 [ 15] [ 4] [0320] +14:56:24 [ 18] [ 4] [6011] +14:56:24 [ 22] [ 3] [900] +14:56:24 [ 25] [ 2] [02] +14:56:24 [ 28] [ 9] [D00000000] +14:56:24 [ 32] [ 6] [621354] +14:56:24 [ 35] [ 32] [1989010003184787=000010100000215] +14:56:24 [ 37] [ 12] [507902764857] +14:56:24 [ 41] [ 8] [01007000] +14:56:24 [ 42] [ 15] [NATIVE ] +14:56:24 [ 43] [ 40] [NOVOTEL SikhottabongLAO] +14:56:24 [ 49] [ 3] [418] +14:56:24 [ 52] [ 16] [82D0F87E61C28F44] +14:56:24 ============================================================================ +14:56:24 + + +waiting on router queue for slot.... +14:56:24 Sending to : +14:56:24 ============================================================================ +14:56:24 ============================================================================ +14:56:24 Slot Id : <347> +14:56:24 Transaction Type : REQUEST +14:56:24 Received From : +14:56:24 ============================================================================ +14:56:24 FNo. Len. Field Value +14:56:24 ============================================================================ +14:56:24 [ 1] [ 4] [0200] +14:56:24 [ 2] [ 16] [1989010003184787] +14:56:24 [ 3] [ 6] [300000] +14:56:24 [ 4] [ 12] [000000000000] +14:56:24 [ 7] [ 10] [0320145619] +14:56:24 [ 11] [ 6] [776736] +14:56:24 [ 12] [ 6] [145619] +14:56:24 [ 13] [ 4] [0320] +14:56:24 [ 15] [ 4] [0320] +14:56:24 [ 18] [ 4] [6011] +14:56:24 [ 22] [ 3] [900] +14:56:24 [ 25] [ 2] [02] +14:56:24 [ 28] [ 9] [D00000000] +14:56:24 [ 32] [ 6] [621354] +14:56:24 [ 35] [ 32] [1989010003184787=000010100000215] +14:56:24 [ 37] [ 12] [507902764857] +14:56:24 [ 41] [ 8] [01007000] +14:56:24 [ 42] [ 15] [NATIVE ] +14:56:24 [ 43] [ 40] [NOVOTEL SikhottabongLAO] +14:56:24 [ 49] [ 3] [418] +14:56:24 [ 52] [ 16] [0AE4AB76D556B751] +14:56:24 ============================================================================ +14:56:24 + + +waiting on router queue for slot.... +14:56:24 Sending to : <5> +14:56:24 ============================================================================ +14:56:25 ============================================================================ +14:56:25 Slot Id : <347> +14:56:25 Transaction Type : RESPONSE +14:56:25 Received From : +14:56:25 ============================================================================ +14:56:25 FNo. Len. Field Value +14:56:25 ============================================================================ +14:56:25 [ 1] [ 4] [0210] +14:56:25 [ 2] [ 16] [1989010003184787] +14:56:25 [ 3] [ 6] [300000] +14:56:25 [ 4] [ 12] [000000000000] +14:56:25 [ 7] [ 10] [0320145619] +14:56:25 [ 11] [ 6] [776736] +14:56:25 [ 12] [ 6] [145619] +14:56:25 [ 13] [ 4] [0320] +14:56:25 [ 15] [ 4] [0320] +14:56:25 [ 18] [ 4] [6011] +14:56:25 [ 19] [ 3] [418] +14:56:25 [ 32] [ 6] [621354] +14:56:25 [ 37] [ 12] [507902764857] +14:56:25 [ 38] [ 6] [191702] +14:56:25 [ 39] [ 2] [00] +14:56:25 [ 41] [ 8] [01007000] +14:56:25 [ 49] [ 3] [418] +14:56:25 [ 54] [ 20] [1001418C000104372000] +14:56:25 ============================================================================ +14:56:25 Sending to : +14:56:25 ============================================================================ +14:56:25 + + +waiting on router queue for slot.... +14:56:26 ============================================================================ +14:56:26 Slot Id : <347> +14:56:26 Transaction Type : RESPONSE +14:56:26 Received From : +14:56:26 ============================================================================ +14:56:26 FNo. Len. Field Value +14:56:26 ============================================================================ +14:56:26 [ 1] [ 4] [0210] +14:56:26 [ 2] [ 16] [1989010003184787] +14:56:26 [ 3] [ 6] [300000] +14:56:26 [ 4] [ 12] [000000000000] +14:56:26 [ 7] [ 10] [0320145619] +14:56:26 [ 11] [ 6] [776736] +14:56:26 [ 12] [ 6] [145619] +14:56:26 [ 13] [ 4] [0320] +14:56:26 [ 15] [ 4] [0320] +14:56:26 [ 18] [ 4] [6011] +14:56:26 [ 19] [ 3] [418] +14:56:26 [ 32] [ 6] [621354] +14:56:26 [ 37] [ 12] [507902764857] +14:56:26 [ 38] [ 6] [191702] +14:56:26 [ 39] [ 2] [00] +14:56:26 [ 41] [ 8] [01007000] +14:56:26 [ 49] [ 3] [418] +14:56:26 [ 54] [ 20] [1001418C000104372000] +14:56:26 ============================================================================ +14:56:26 Calculate Source COMM Id = 0 +14:56:26 ============================================================================ +14:56:26 + + +waiting on router queue for slot.... +14:56:32 ============================================================================ +14:56:32 Slot Id : <346> +14:56:32 Transaction Type : REQUEST +14:56:32 Received From : +14:56:32 ============================================================================ +14:56:32 FNo. Len. Field Value +14:56:32 ============================================================================ +14:56:32 [ 1] [ 4] [0800] +14:56:32 [ 2] [ 5] [02531] +14:56:32 [ 3] [ 6] [579148] +14:56:32 [ 7] [ 10] [0320075632] +14:56:32 [ 11] [ 6] [807279] +14:56:32 [ 15] [ 10] [0320075632] +14:56:32 [ 37] [ 11] [57914807279] +14:56:32 [ 70] [ 3] [001] +14:56:32 ============================================================================ +14:56:32 + + +waiting on router queue for slot.... +14:56:32 ============================================================================ +14:56:32 Slot Id : <346> +14:56:32 Transaction Type : RESPONSE +14:56:32 Received From : +14:56:32 ============================================================================ +14:56:32 FNo. Len. Field Value +14:56:32 ============================================================================ +14:56:32 [ 1] [ 4] [0810] +14:56:32 [ 7] [ 10] [0320075632] +14:56:32 [ 11] [ 6] [807279] +14:56:32 [ 15] [ 4] [0320] +14:56:32 [ 37] [ 12] [57914807279] +14:56:32 [ 39] [ 2] [00] +14:56:32 [ 70] [ 3] [001] +14:56:32 ============================================================================ +14:56:32 Sending to : +14:56:32 ============================================================================ +14:56:32 + + +waiting on router queue for slot.... +14:56:34 ============================================================================ +14:56:34 Slot Id : <350> +14:56:34 Transaction Type : REQUEST +14:56:34 Received From : +14:56:34 ============================================================================ +14:56:34 FNo. Len. Field Value +14:56:34 ============================================================================ +14:56:34 [ 1] [ 4] [0800] +14:56:34 [ 7] [ 10] [0320075540] +14:56:34 [ 11] [ 6] [156887] +14:56:34 [ 70] [ 3] [301] +14:56:34 ============================================================================ +14:56:34 + + +waiting on router queue for slot.... +14:56:34 Sending to : +14:56:34 ============================================================================ +14:56:34 ============================================================================ +14:56:34 Slot Id : <350> +14:56:34 Transaction Type : RESPONSE +14:56:34 Received From : +14:56:34 ============================================================================ +14:56:34 FNo. Len. Field Value +14:56:34 ============================================================================ +14:56:34 [ 1] [ 4] [0810] +14:56:34 [ 7] [ 10] [0320075540] +14:56:34 [ 11] [ 6] [156887] +14:56:34 [ 39] [ 2] [00] +14:56:34 [ 70] [ 3] [301] +14:56:34 ============================================================================ +14:56:34 Calculate Source COMM Id = 2 +14:56:34 ============================================================================ +14:56:34 + + +waiting on router queue for slot.... +14:56:40 ============================================================================ +14:56:40 Slot Id : <357> +14:56:40 Transaction Type : REQUEST +14:56:40 Received From : +14:56:40 ============================================================================ +14:56:40 FNo. Len. Field Value +14:56:40 ============================================================================ +14:56:40 [ 1] [ 4] [0200] +14:56:40 [ 2] [ 16] [6213544002138599] +14:56:40 [ 3] [ 6] [301000] +14:56:40 [ 4] [ 12] [000000000000] +14:56:40 [ 7] [ 10] [0320145701] +14:56:40 [ 11] [ 6] [207580] +14:56:40 [ 12] [ 6] [145207] +14:56:40 [ 13] [ 4] [0320] +14:56:40 [ 14] [ 4] [4912] +14:56:40 [ 15] [ 4] [0320] +14:56:40 [ 18] [ 4] [6011] +14:56:40 [ 19] [ 3] [418] +14:56:40 [ 22] [ 3] [021] +14:56:40 [ 25] [ 2] [01] +14:56:40 [ 28] [ 9] [D00000000] +14:56:40 [ 32] [ 6] [198901] +14:56:40 [ 35] [ 32] [6213544002138599=491212013859260] +14:56:40 [ 37] [ 12] [507914207580] +14:56:40 [ 41] [ 8] [19529001] +14:56:40 [ 42] [ 15] [000000041952901] +14:56:40 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +14:56:40 [ 49] [ 3] [418] +14:56:40 [ 52] [ 16] [4712728F3C842912] +14:56:40 ============================================================================ +14:56:40 + + +waiting on router queue for slot.... +14:56:40 Sending to : +14:56:40 ============================================================================ +14:56:40 Sending to : +14:56:40 ============================================================================ +14:56:41 ============================================================================ +14:56:41 Slot Id : <357> +14:56:41 Transaction Type : REQUEST +14:56:41 Received From : +14:56:41 ============================================================================ +14:56:41 FNo. Len. Field Value +14:56:41 ============================================================================ +14:56:41 [ 1] [ 4] [0200] +14:56:41 [ 2] [ 16] [6213544002138599] +14:56:41 [ 3] [ 6] [301000] +14:56:41 [ 4] [ 12] [000000000000] +14:56:41 [ 7] [ 10] [0320145701] +14:56:41 [ 11] [ 6] [207580] +14:56:41 [ 12] [ 6] [145207] +14:56:41 [ 13] [ 4] [0320] +14:56:41 [ 14] [ 4] [4912] +14:56:41 [ 15] [ 4] [0320] +14:56:41 [ 18] [ 4] [6011] +14:56:41 [ 19] [ 3] [418] +14:56:41 [ 22] [ 3] [021] +14:56:41 [ 25] [ 2] [01] +14:56:41 [ 28] [ 9] [D00000000] +14:56:41 [ 32] [ 6] [198901] +14:56:41 [ 35] [ 32] [6213544002138599=491212013859260] +14:56:41 [ 37] [ 12] [507914207580] +14:56:41 [ 41] [ 8] [19529001] +14:56:41 [ 42] [ 15] [000000041952901] +14:56:41 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +14:56:41 [ 49] [ 3] [418] +14:56:41 [ 52] [ 16] [4712728F3C842912] +14:56:41 ============================================================================ +14:56:41 + + +waiting on router queue for slot.... +14:56:41 Sending to : +14:56:41 ============================================================================ +14:56:41 ============================================================================ +14:56:41 Slot Id : <357> +14:56:41 Transaction Type : REQUEST +14:56:41 Received From : +14:56:41 ============================================================================ +14:56:41 FNo. Len. Field Value +14:56:41 ============================================================================ +14:56:41 [ 1] [ 4] [0200] +14:56:41 [ 2] [ 16] [6213544002138599] +14:56:41 [ 3] [ 6] [301000] +14:56:41 [ 4] [ 12] [000000000000] +14:56:41 [ 7] [ 10] [0320145701] +14:56:41 [ 11] [ 6] [207580] +14:56:41 [ 12] [ 6] [145207] +14:56:41 [ 13] [ 4] [0320] +14:56:41 [ 14] [ 4] [4912] +14:56:41 [ 15] [ 4] [0320] +14:56:41 [ 18] [ 4] [6011] +14:56:41 [ 19] [ 3] [418] +14:56:41 [ 22] [ 3] [021] +14:56:41 [ 25] [ 2] [01] +14:56:41 [ 28] [ 9] [D00000000] +14:56:41 [ 32] [ 6] [198901] +14:56:41 [ 35] [ 32] [6213544002138599=491212013859260] +14:56:41 [ 37] [ 12] [507914207580] +14:56:41 [ 41] [ 8] [19529001] +14:56:41 [ 42] [ 15] [000000041952901] +14:56:41 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +14:56:41 [ 49] [ 3] [418] +14:56:41 [ 52] [ 16] [0B40134E6CB415E9] +14:56:41 ============================================================================ +14:56:41 + + +waiting on router queue for slot.... +14:56:41 Sending to : <0> +14:56:41 ============================================================================ +14:56:41 ============================================================================ +14:56:41 Slot Id : <357> +14:56:41 Transaction Type : RESPONSE +14:56:41 Received From : +14:56:41 ============================================================================ +14:56:41 FNo. Len. Field Value +14:56:41 ============================================================================ +14:56:41 [ 1] [ 4] [0210] +14:56:41 [ 2] [ 16] [6213544002138599] +14:56:41 [ 3] [ 6] [301000] +14:56:41 [ 4] [ 12] [000000000000] +14:56:41 [ 7] [ 10] [0320145701] +14:56:41 [ 11] [ 6] [207580] +14:56:41 [ 12] [ 6] [145207] +14:56:41 [ 13] [ 4] [0320] +14:56:41 [ 15] [ 4] [0320] +14:56:41 [ 18] [ 4] [6011] +14:56:41 [ 19] [ 3] [418] +14:56:41 [ 32] [ 6] [198901] +14:56:41 [ 35] [ 32] [6213544002138599=491212013859260] +14:56:41 [ 37] [ 12] [507914207580] +14:56:41 [ 38] [ 6] [519102] +14:56:41 [ 39] [ 2] [00] +14:56:41 [ 41] [ 8] [19529001] +14:56:41 [ 49] [ 3] [418] +14:56:41 [ 54] [ 40] [1001418C0000593470001002418C000059347000] +14:56:41 ============================================================================ +14:56:41 Sending to : +14:56:41 ============================================================================ +14:56:41 + + +waiting on router queue for slot.... +14:56:42 ============================================================================ +14:56:42 Slot Id : <357> +14:56:42 Transaction Type : RESPONSE +14:56:42 Received From : +14:56:42 ============================================================================ +14:56:42 FNo. Len. Field Value +14:56:42 ============================================================================ +14:56:42 [ 1] [ 4] [0210] +14:56:42 [ 2] [ 16] [6213544002138599] +14:56:42 [ 3] [ 6] [301000] +14:56:42 [ 4] [ 12] [000000000000] +14:56:42 [ 7] [ 10] [0320145701] +14:56:42 [ 11] [ 6] [207580] +14:56:42 [ 12] [ 6] [145207] +14:56:42 [ 13] [ 4] [0320] +14:56:42 [ 15] [ 4] [0320] +14:56:42 [ 18] [ 4] [6011] +14:56:42 [ 19] [ 3] [418] +14:56:42 [ 32] [ 6] [198901] +14:56:42 [ 35] [ 32] [6213544002138599=491212013859260] +14:56:42 [ 37] [ 12] [507914207580] +14:56:42 [ 38] [ 6] [519102] +14:56:42 [ 39] [ 2] [00] +14:56:42 [ 41] [ 8] [19529001] +14:56:42 [ 49] [ 3] [418] +14:56:42 [ 54] [ 40] [1001418C0000593470001002418C000059347000] +14:56:42 ============================================================================ +14:56:42 Calculate Source COMM Id = 5 +14:56:42 ============================================================================ +14:56:42 + + +waiting on router queue for slot.... +14:56:43 ============================================================================ +14:56:43 Slot Id : <319> +14:56:43 Transaction Type : REQUEST +14:56:43 Received From : +14:56:43 ============================================================================ +14:56:43 FNo. Len. Field Value +14:56:43 ============================================================================ +14:56:43 [ 1] [ 4] [0200] +14:56:43 [ 2] [ 16] [6213545000000608] +14:56:43 [ 3] [ 6] [011000] +14:56:43 [ 4] [ 12] [000100000000] +14:56:43 [ 7] [ 10] [0320145703] +14:56:43 [ 11] [ 6] [207581] +14:56:43 [ 12] [ 6] [025514] +14:56:43 [ 13] [ 4] [0320] +14:56:43 [ 14] [ 4] [4912] +14:56:43 [ 15] [ 4] [0320] +14:56:43 [ 18] [ 4] [6011] +14:56:43 [ 19] [ 3] [418] +14:56:43 [ 22] [ 3] [021] +14:56:43 [ 25] [ 2] [01] +14:56:43 [ 28] [ 9] [D00002000] +14:56:43 [ 32] [ 6] [198901] +14:56:43 [ 35] [ 32] [6213545000000608=491212010060365] +14:56:43 [ 37] [ 12] [507914207581] +14:56:43 [ 41] [ 8] [01529031] +14:56:43 [ 42] [ 15] [000000041529031] +14:56:43 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:56:43 [ 49] [ 3] [418] +14:56:43 [ 52] [ 16] [2649391E89372AD3] +14:56:43 ============================================================================ +14:56:43 + + +waiting on router queue for slot.... +14:56:43 Sending to : +14:56:43 ============================================================================ +14:56:43 Sending to : +14:56:43 ============================================================================ +14:56:43 ============================================================================ +14:56:43 Slot Id : <319> +14:56:43 Transaction Type : REQUEST +14:56:43 Received From : +14:56:43 ============================================================================ +14:56:43 FNo. Len. Field Value +14:56:43 ============================================================================ +14:56:43 [ 1] [ 4] [0200] +14:56:43 [ 2] [ 16] [6213545000000608] +14:56:43 [ 3] [ 6] [011000] +14:56:43 [ 4] [ 12] [000100000000] +14:56:43 [ 7] [ 10] [0320145703] +14:56:43 [ 11] [ 6] [207581] +14:56:43 [ 12] [ 6] [025514] +14:56:43 [ 13] [ 4] [0320] +14:56:43 [ 14] [ 4] [4912] +14:56:43 [ 15] [ 4] [0320] +14:56:43 [ 18] [ 4] [6011] +14:56:43 [ 19] [ 3] [418] +14:56:43 [ 22] [ 3] [021] +14:56:43 [ 25] [ 2] [01] +14:56:43 [ 28] [ 9] [D00002000] +14:56:43 [ 32] [ 6] [198901] +14:56:43 [ 35] [ 32] [6213545000000608=491212010060365] +14:56:43 [ 37] [ 12] [507914207581] +14:56:43 [ 41] [ 8] [01529031] +14:56:43 [ 42] [ 15] [000000041529031] +14:56:43 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:56:43 [ 49] [ 3] [418] +14:56:43 [ 52] [ 16] [2649391E89372AD3] +14:56:43 ============================================================================ +14:56:43 + + +waiting on router queue for slot.... +14:56:43 Sending to : +14:56:43 ============================================================================ +14:56:43 ============================================================================ +14:56:43 Slot Id : <319> +14:56:43 Transaction Type : REQUEST +14:56:43 Received From : +14:56:43 ============================================================================ +14:56:43 FNo. Len. Field Value +14:56:43 ============================================================================ +14:56:43 [ 1] [ 4] [0200] +14:56:43 [ 2] [ 16] [6213545000000608] +14:56:43 [ 3] [ 6] [011000] +14:56:43 [ 4] [ 12] [000100000000] +14:56:43 [ 7] [ 10] [0320145703] +14:56:43 [ 11] [ 6] [207581] +14:56:43 [ 12] [ 6] [025514] +14:56:43 [ 13] [ 4] [0320] +14:56:43 [ 14] [ 4] [4912] +14:56:43 [ 15] [ 4] [0320] +14:56:43 [ 18] [ 4] [6011] +14:56:43 [ 19] [ 3] [418] +14:56:43 [ 22] [ 3] [021] +14:56:43 [ 25] [ 2] [01] +14:56:43 [ 28] [ 9] [D00002000] +14:56:43 [ 32] [ 6] [198901] +14:56:43 [ 35] [ 32] [6213545000000608=491212010060365] +14:56:43 [ 37] [ 12] [507914207581] +14:56:43 [ 41] [ 8] [01529031] +14:56:43 [ 42] [ 15] [000000041529031] +14:56:43 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:56:43 [ 49] [ 3] [418] +14:56:43 [ 52] [ 16] [57D8B9FACEA13D84] +14:56:43 ============================================================================ +14:56:43 + + +waiting on router queue for slot.... +14:56:43 Sending to : <0> +14:56:43 ============================================================================ +14:56:44 ============================================================================ +14:56:44 Slot Id : <319> +14:56:44 Transaction Type : RESPONSE +14:56:44 Received From : +14:56:44 ============================================================================ +14:56:44 FNo. Len. Field Value +14:56:44 ============================================================================ +14:56:44 [ 1] [ 4] [0210] +14:56:44 [ 2] [ 16] [6213545000000608] +14:56:44 [ 3] [ 6] [011000] +14:56:44 [ 4] [ 12] [000100000000] +14:56:44 [ 7] [ 10] [0320145703] +14:56:44 [ 11] [ 6] [207581] +14:56:44 [ 12] [ 6] [025514] +14:56:44 [ 13] [ 4] [0320] +14:56:44 [ 15] [ 4] [0320] +14:56:44 [ 18] [ 4] [6011] +14:56:44 [ 19] [ 3] [418] +14:56:44 [ 32] [ 6] [198901] +14:56:44 [ 35] [ 32] [6213545000000608=491212010060365] +14:56:44 [ 37] [ 12] [507914207581] +14:56:44 [ 38] [ 6] [966943] +14:56:44 [ 39] [ 2] [00] +14:56:44 [ 41] [ 8] [01529031] +14:56:44 [ 49] [ 3] [418] +14:56:44 [ 54] [ 40] [1001418C0002521764261002418C000252176426] +14:56:44 ============================================================================ +14:56:44 Sending to : +14:56:44 ============================================================================ +14:56:44 + + +waiting on router queue for slot.... +14:56:45 ============================================================================ +14:56:45 Slot Id : <319> +14:56:45 Transaction Type : RESPONSE +14:56:45 Received From : +14:56:45 ============================================================================ +14:56:45 FNo. Len. Field Value +14:56:45 ============================================================================ +14:56:45 [ 1] [ 4] [0210] +14:56:45 [ 2] [ 16] [6213545000000608] +14:56:45 [ 3] [ 6] [011000] +14:56:45 [ 4] [ 12] [000100000000] +14:56:45 [ 7] [ 10] [0320145703] +14:56:45 [ 11] [ 6] [207581] +14:56:45 [ 12] [ 6] [025514] +14:56:45 [ 13] [ 4] [0320] +14:56:45 [ 15] [ 4] [0320] +14:56:45 [ 18] [ 4] [6011] +14:56:45 [ 19] [ 3] [418] +14:56:45 [ 32] [ 6] [198901] +14:56:45 [ 35] [ 32] [6213545000000608=491212010060365] +14:56:45 [ 37] [ 12] [507914207581] +14:56:45 [ 38] [ 6] [966943] +14:56:45 [ 39] [ 2] [00] +14:56:45 [ 41] [ 8] [01529031] +14:56:45 [ 49] [ 3] [418] +14:56:45 [ 54] [ 40] [1001418C0002521764261002418C000252176426] +14:56:45 ============================================================================ +14:56:45 Calculate Source COMM Id = 5 +14:56:45 ============================================================================ +14:56:45 + + +waiting on router queue for slot.... +14:56:46 ============================================================================ +14:56:46 Slot Id : <356> +14:56:46 Transaction Type : REQUEST +14:56:46 Received From : +14:56:46 ============================================================================ +14:56:46 FNo. Len. Field Value +14:56:46 ============================================================================ +14:56:46 [ 1] [ 4] [0200] +14:56:46 [ 2] [ 16] [6688990105247207] +14:56:46 [ 3] [ 6] [011000] +14:56:46 [ 4] [ 12] [000100000000] +14:56:46 [ 7] [ 10] [0320145641] +14:56:46 [ 11] [ 6] [776825] +14:56:46 [ 12] [ 6] [145641] +14:56:46 [ 13] [ 4] [0320] +14:56:46 [ 15] [ 4] [0320] +14:56:46 [ 18] [ 4] [6011] +14:56:46 [ 22] [ 3] [900] +14:56:46 [ 25] [ 2] [02] +14:56:46 [ 28] [ 9] [D00002000] +14:56:46 [ 32] [ 6] [621354] +14:56:46 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:56:46 [ 37] [ 12] [507904719697] +14:56:46 [ 41] [ 8] [18001000] +14:56:46 [ 42] [ 15] [NATIVE ] +14:56:46 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:56:46 [ 49] [ 3] [418] +14:56:46 [ 52] [ 16] [667459472C5E1498] +14:56:46 ============================================================================ +14:56:46 + + +waiting on router queue for slot.... +14:56:46 Sending to : +14:56:46 ============================================================================ +14:56:46 Sending to : +14:56:46 ============================================================================ +14:56:46 ============================================================================ +14:56:46 Slot Id : <356> +14:56:46 Transaction Type : REQUEST +14:56:46 Received From : +14:56:46 ============================================================================ +14:56:46 FNo. Len. Field Value +14:56:46 ============================================================================ +14:56:46 [ 1] [ 4] [0200] +14:56:46 [ 2] [ 16] [6688990105247207] +14:56:46 [ 3] [ 6] [011000] +14:56:46 [ 4] [ 12] [000100000000] +14:56:46 [ 7] [ 10] [0320145641] +14:56:46 [ 11] [ 6] [776825] +14:56:46 [ 12] [ 6] [145641] +14:56:46 [ 13] [ 4] [0320] +14:56:46 [ 15] [ 4] [0320] +14:56:46 [ 18] [ 4] [6011] +14:56:46 [ 22] [ 3] [900] +14:56:46 [ 25] [ 2] [02] +14:56:46 [ 28] [ 9] [D00002000] +14:56:46 [ 32] [ 6] [621354] +14:56:46 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:56:46 [ 37] [ 12] [507904719697] +14:56:46 [ 41] [ 8] [18001000] +14:56:46 [ 42] [ 15] [NATIVE ] +14:56:46 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:56:46 [ 49] [ 3] [418] +14:56:46 [ 52] [ 16] [667459472C5E1498] +14:56:46 ============================================================================ +14:56:46 + + +waiting on router queue for slot.... +14:56:46 Sending to : +14:56:46 ============================================================================ +14:56:46 ============================================================================ +14:56:46 Slot Id : <356> +14:56:46 Transaction Type : REQUEST +14:56:46 Received From : +14:56:46 ============================================================================ +14:56:46 FNo. Len. Field Value +14:56:46 ============================================================================ +14:56:46 [ 1] [ 4] [0200] +14:56:46 [ 2] [ 16] [6688990105247207] +14:56:46 [ 3] [ 6] [011000] +14:56:46 [ 4] [ 12] [000100000000] +14:56:46 [ 7] [ 10] [0320145641] +14:56:46 [ 11] [ 6] [776825] +14:56:46 [ 12] [ 6] [145641] +14:56:46 [ 13] [ 4] [0320] +14:56:46 [ 15] [ 4] [0320] +14:56:46 [ 18] [ 4] [6011] +14:56:46 [ 22] [ 3] [900] +14:56:46 [ 25] [ 2] [02] +14:56:46 [ 28] [ 9] [D00002000] +14:56:46 [ 32] [ 6] [621354] +14:56:46 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:56:46 [ 37] [ 12] [507904719697] +14:56:46 [ 41] [ 8] [18001000] +14:56:46 [ 42] [ 15] [NATIVE ] +14:56:46 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:56:46 [ 49] [ 3] [418] +14:56:46 [ 52] [ 16] [2740F324422C69C1] +14:56:46 ============================================================================ +14:56:46 + + +waiting on router queue for slot.... +14:56:46 Sending to : <4> +14:56:46 ============================================================================ +14:56:47 ============================================================================ +14:56:47 Slot Id : <356> +14:56:47 Transaction Type : RESPONSE +14:56:47 Received From : +14:56:47 ============================================================================ +14:56:47 FNo. Len. Field Value +14:56:47 ============================================================================ +14:56:47 [ 1] [ 4] [0210] +14:56:47 [ 2] [ 16] [6688990105247207] +14:56:47 [ 3] [ 6] [011000] +14:56:47 [ 4] [ 12] [000100000000] +14:56:47 [ 11] [ 6] [776825] +14:56:47 [ 12] [ 6] [145641] +14:56:47 [ 15] [ 4] [0320] +14:56:47 [ 18] [ 4] [6011] +14:56:47 [ 32] [ 6] [621354] +14:56:47 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:56:47 [ 37] [ 12] [507904719697] +14:56:47 [ 38] [ 6] [119408] +14:56:47 [ 39] [ 2] [00] +14:56:47 [ 41] [ 8] [18001000] +14:56:47 [ 49] [ 3] [418] +14:56:47 [ 54] [ 20] [1002418C000580956582] +14:56:47 ============================================================================ +14:56:47 Sending to : +14:56:47 ============================================================================ +14:56:47 + + +waiting on router queue for slot.... +14:56:49 ============================================================================ +14:56:49 Slot Id : <356> +14:56:49 Transaction Type : RESPONSE +14:56:49 Received From : +14:56:49 ============================================================================ +14:56:49 FNo. Len. Field Value +14:56:49 ============================================================================ +14:56:49 [ 1] [ 4] [0210] +14:56:49 [ 2] [ 16] [6688990105247207] +14:56:49 [ 3] [ 6] [011000] +14:56:49 [ 4] [ 12] [000100000000] +14:56:49 [ 11] [ 6] [776825] +14:56:49 [ 12] [ 6] [145641] +14:56:49 [ 15] [ 4] [0320] +14:56:49 [ 18] [ 4] [6011] +14:56:49 [ 32] [ 6] [621354] +14:56:49 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:56:49 [ 37] [ 12] [507904719697] +14:56:49 [ 38] [ 6] [119408] +14:56:49 [ 39] [ 2] [00] +14:56:49 [ 41] [ 8] [18001000] +14:56:49 [ 49] [ 3] [418] +14:56:49 [ 54] [ 20] [1002418C000580956582] +14:56:49 ============================================================================ +14:56:49 Calculate Source COMM Id = 0 +14:56:49 ============================================================================ +14:56:49 + + +waiting on router queue for slot.... +14:56:49 ============================================================================ +14:56:49 Slot Id : <332> +14:56:49 Transaction Type : REQUEST +14:56:49 Received From : +14:56:49 ============================================================================ +14:56:49 FNo. Len. Field Value +14:56:49 ============================================================================ +14:56:49 [ 1] [ 4] [0800] +14:56:49 [ 7] [ 10] [0320075557] +14:56:49 [ 11] [ 6] [156888] +14:56:49 [ 70] [ 3] [301] +14:56:49 ============================================================================ +14:56:49 + + +waiting on router queue for slot.... +14:56:49 Sending to : +14:56:49 ============================================================================ +14:56:49 ============================================================================ +14:56:49 Slot Id : <332> +14:56:49 Transaction Type : RESPONSE +14:56:49 Received From : +14:56:49 ============================================================================ +14:56:49 FNo. Len. Field Value +14:56:49 ============================================================================ +14:56:49 [ 1] [ 4] [0810] +14:56:49 [ 7] [ 10] [0320075557] +14:56:49 [ 11] [ 6] [156888] +14:56:49 [ 39] [ 2] [00] +14:56:49 [ 70] [ 3] [301] +14:56:49 ============================================================================ +14:56:49 Calculate Source COMM Id = 2 +14:56:49 ============================================================================ +14:56:49 + + +waiting on router queue for slot.... +14:56:51 ============================================================================ +14:56:51 Slot Id : <330> +14:56:51 Transaction Type : REQUEST +14:56:51 Received From : +14:56:51 ============================================================================ +14:56:51 FNo. Len. Field Value +14:56:51 ============================================================================ +14:56:51 [ 1] [ 4] [0800] +14:56:51 [ 7] [ 10] [0320220839] +14:56:51 [ 11] [ 6] [150839] +14:56:51 [ 37] [ 12] [57915150839] +14:56:51 [ 70] [ 3] [301] +14:56:51 ============================================================================ +14:56:51 + + +waiting on router queue for slot.... +14:56:51 Sending to : +14:56:51 ============================================================================ +14:56:51 ============================================================================ +14:56:51 Slot Id : <330> +14:56:51 Transaction Type : RESPONSE +14:56:51 Received From : +14:56:51 ============================================================================ +14:56:51 FNo. Len. Field Value +14:56:51 ============================================================================ +14:56:51 [ 1] [ 4] [0810] +14:56:51 [ 7] [ 10] [0320220839] +14:56:51 [ 11] [ 6] [150839] +14:56:51 [ 37] [ 12] [579151508390] +14:56:51 [ 39] [ 2] [00] +14:56:51 [ 70] [ 3] [810] +14:56:51 ============================================================================ +14:56:51 Calculate Source COMM Id = 6 +14:56:51 ============================================================================ +14:56:51 + + +waiting on router queue for slot.... +14:56:51 ============================================================================ +14:56:51 Slot Id : <365> +14:56:51 Transaction Type : REQUEST +14:56:51 Received From : +14:56:51 ============================================================================ +14:56:51 FNo. Len. Field Value +14:56:51 ============================================================================ +14:56:51 [ 1] [ 4] [0200] +14:56:51 [ 2] [ 16] [6213541000720444] +14:56:51 [ 3] [ 6] [010000] +14:56:51 [ 4] [ 12] [000100000000] +14:56:51 [ 7] [ 10] [0320145442] +14:56:51 [ 11] [ 6] [949247] +14:56:51 [ 12] [ 6] [145442] +14:56:51 [ 13] [ 4] [0320] +14:56:51 [ 15] [ 4] [0320] +14:56:51 [ 18] [ 4] [6011] +14:56:51 [ 19] [ 3] [418] +14:56:51 [ 22] [ 3] [021] +14:56:51 [ 25] [ 2] [01] +14:56:51 [ 28] [ 9] [D00002000] +14:56:51 [ 32] [ 6] [668899] +14:56:51 [ 35] [ 32] [6213541000720444=491212012044255] +14:56:51 [ 37] [ 12] [507901841976] +14:56:51 [ 41] [ 8] [03009004] +14:56:51 [ 42] [ 15] [APT ] +14:56:51 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +14:56:51 [ 49] [ 3] [418] +14:56:51 [ 52] [ 16] [738BF4CC25DD00D4] +14:56:51 ============================================================================ +14:56:51 + + +waiting on router queue for slot.... +14:56:51 Sending to : +14:56:51 ============================================================================ +14:56:51 Sending to : +14:56:51 ============================================================================ +14:56:52 ============================================================================ +14:56:52 Slot Id : <365> +14:56:52 Transaction Type : REQUEST +14:56:52 Received From : +14:56:52 ============================================================================ +14:56:52 FNo. Len. Field Value +14:56:52 ============================================================================ +14:56:52 [ 1] [ 4] [0200] +14:56:52 [ 2] [ 16] [6213541000720444] +14:56:52 [ 3] [ 6] [010000] +14:56:52 [ 4] [ 12] [000100000000] +14:56:52 [ 7] [ 10] [0320145442] +14:56:52 [ 11] [ 6] [949247] +14:56:52 [ 12] [ 6] [145442] +14:56:52 [ 13] [ 4] [0320] +14:56:52 [ 15] [ 4] [0320] +14:56:52 [ 18] [ 4] [6011] +14:56:52 [ 19] [ 3] [418] +14:56:52 [ 22] [ 3] [021] +14:56:52 [ 25] [ 2] [01] +14:56:52 [ 28] [ 9] [D00002000] +14:56:52 [ 32] [ 6] [668899] +14:56:52 [ 35] [ 32] [6213541000720444=491212012044255] +14:56:52 [ 37] [ 12] [507901841976] +14:56:52 [ 41] [ 8] [03009004] +14:56:52 [ 42] [ 15] [APT ] +14:56:52 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +14:56:52 [ 49] [ 3] [418] +14:56:52 [ 52] [ 16] [738BF4CC25DD00D4] +14:56:52 ============================================================================ +14:56:52 + + +waiting on router queue for slot.... +14:56:52 Sending to : +14:56:52 ============================================================================ +14:56:52 ============================================================================ +14:56:52 Slot Id : <365> +14:56:52 Transaction Type : REQUEST +14:56:52 Received From : +14:56:52 ============================================================================ +14:56:52 FNo. Len. Field Value +14:56:52 ============================================================================ +14:56:52 [ 1] [ 4] [0200] +14:56:52 [ 2] [ 16] [6213541000720444] +14:56:52 [ 3] [ 6] [010000] +14:56:52 [ 4] [ 12] [000100000000] +14:56:52 [ 7] [ 10] [0320145442] +14:56:52 [ 11] [ 6] [949247] +14:56:52 [ 12] [ 6] [145442] +14:56:52 [ 13] [ 4] [0320] +14:56:52 [ 15] [ 4] [0320] +14:56:52 [ 18] [ 4] [6011] +14:56:52 [ 19] [ 3] [418] +14:56:52 [ 22] [ 3] [021] +14:56:52 [ 25] [ 2] [01] +14:56:52 [ 28] [ 9] [D00002000] +14:56:52 [ 32] [ 6] [668899] +14:56:52 [ 35] [ 32] [6213541000720444=491212012044255] +14:56:52 [ 37] [ 12] [507901841976] +14:56:52 [ 41] [ 8] [03009004] +14:56:52 [ 42] [ 15] [APT ] +14:56:52 [ 43] [ 40] [ THATHOME UNIT THATHOME ] +14:56:52 [ 49] [ 3] [418] +14:56:52 [ 52] [ 16] [E73F6F6712717471] +14:56:52 ============================================================================ +14:56:52 + + +waiting on router queue for slot.... +14:56:52 Sending to : <0> +14:56:52 ============================================================================ +14:56:52 ============================================================================ +14:56:52 Slot Id : <365> +14:56:52 Transaction Type : RESPONSE +14:56:52 Received From : +14:56:52 ============================================================================ +14:56:52 FNo. Len. Field Value +14:56:52 ============================================================================ +14:56:52 [ 1] [ 4] [0210] +14:56:52 [ 2] [ 16] [6213541000720444] +14:56:52 [ 3] [ 6] [010000] +14:56:52 [ 4] [ 12] [000100000000] +14:56:52 [ 7] [ 10] [0320145442] +14:56:52 [ 11] [ 6] [949247] +14:56:52 [ 12] [ 6] [145442] +14:56:52 [ 13] [ 4] [0320] +14:56:52 [ 15] [ 4] [0320] +14:56:52 [ 18] [ 4] [6011] +14:56:52 [ 19] [ 3] [418] +14:56:52 [ 32] [ 6] [668899] +14:56:52 [ 35] [ 32] [6213541000720444=491212012044255] +14:56:52 [ 37] [ 12] [507901841976] +14:56:52 [ 38] [ 6] [604232] +14:56:52 [ 39] [ 2] [00] +14:56:52 [ 41] [ 8] [03009004] +14:56:52 [ 49] [ 3] [418] +14:56:52 [ 54] [ 40] [0001418C0002116351710002418C000211635171] +14:56:52 ============================================================================ +14:56:52 Sending to : +14:56:52 ============================================================================ +14:56:52 + + +waiting on router queue for slot.... +14:56:54 ============================================================================ +14:56:54 Slot Id : <365> +14:56:54 Transaction Type : RESPONSE +14:56:54 Received From : +14:56:54 ============================================================================ +14:56:54 FNo. Len. Field Value +14:56:54 ============================================================================ +14:56:54 [ 1] [ 4] [0210] +14:56:54 [ 2] [ 16] [6213541000720444] +14:56:54 [ 3] [ 6] [010000] +14:56:54 [ 4] [ 12] [000100000000] +14:56:54 [ 7] [ 10] [0320145442] +14:56:54 [ 11] [ 6] [949247] +14:56:54 [ 12] [ 6] [145442] +14:56:54 [ 13] [ 4] [0320] +14:56:54 [ 15] [ 4] [0320] +14:56:54 [ 18] [ 4] [6011] +14:56:54 [ 19] [ 3] [418] +14:56:54 [ 32] [ 6] [668899] +14:56:54 [ 35] [ 32] [6213541000720444=491212012044255] +14:56:54 [ 37] [ 12] [507901841976] +14:56:54 [ 38] [ 6] [604232] +14:56:54 [ 39] [ 2] [00] +14:56:54 [ 41] [ 8] [03009004] +14:56:54 [ 49] [ 3] [418] +14:56:54 [ 54] [ 40] [0001418C0002116351710002418C000211635171] +14:56:54 ============================================================================ +14:56:54 Calculate Source COMM Id = 4 +14:56:54 ============================================================================ +14:56:54 + + +waiting on router queue for slot.... +14:57:00 ============================================================================ +14:57:00 Slot Id : <371> +14:57:00 Transaction Type : REQUEST +14:57:00 Received From : +14:57:00 ============================================================================ +14:57:00 FNo. Len. Field Value +14:57:00 ============================================================================ +14:57:00 [ 1] [ 4] [0800] +14:57:00 [ 7] [ 10] [0320075607] +14:57:00 [ 11] [ 6] [156889] +14:57:00 [ 70] [ 3] [301] +14:57:00 ============================================================================ +14:57:00 + + +waiting on router queue for slot.... +14:57:00 Sending to : +14:57:00 ============================================================================ +14:57:00 ============================================================================ +14:57:00 Slot Id : <371> +14:57:00 Transaction Type : RESPONSE +14:57:00 Received From : +14:57:00 ============================================================================ +14:57:00 FNo. Len. Field Value +14:57:00 ============================================================================ +14:57:00 [ 1] [ 4] [0810] +14:57:00 [ 7] [ 10] [0320075607] +14:57:00 [ 11] [ 6] [156889] +14:57:00 [ 39] [ 2] [00] +14:57:00 [ 70] [ 3] [301] +14:57:00 ============================================================================ +14:57:00 Calculate Source COMM Id = 2 +14:57:00 ============================================================================ +14:57:00 + + +waiting on router queue for slot.... +14:57:08 ============================================================================ +14:57:08 Slot Id : <366> +14:57:08 Transaction Type : REQUEST +14:57:08 Received From : +14:57:08 ============================================================================ +14:57:08 FNo. Len. Field Value +14:57:08 ============================================================================ +14:57:08 [ 1] [ 4] [0200] +14:57:08 [ 2] [ 16] [6688990103743801] +14:57:08 [ 3] [ 6] [010000] +14:57:08 [ 4] [ 12] [000050000000] +14:57:08 [ 7] [ 10] [0320145703] +14:57:08 [ 11] [ 6] [776901] +14:57:08 [ 12] [ 6] [145703] +14:57:08 [ 13] [ 4] [0320] +14:57:08 [ 15] [ 4] [0320] +14:57:08 [ 18] [ 4] [6011] +14:57:08 [ 22] [ 3] [900] +14:57:08 [ 25] [ 2] [02] +14:57:08 [ 28] [ 9] [D00002000] +14:57:08 [ 32] [ 6] [621354] +14:57:08 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:57:08 [ 37] [ 12] [507903344985] +14:57:08 [ 41] [ 8] [13001400] +14:57:08 [ 42] [ 15] [NATIVE ] +14:57:08 [ 43] [ 40] [Kham Unit Kham LAO] +14:57:08 [ 49] [ 3] [418] +14:57:08 [ 52] [ 16] [DC473392EDA7F48C] +14:57:08 ============================================================================ +14:57:08 + + +waiting on router queue for slot.... +14:57:08 Sending to : +14:57:08 ============================================================================ +14:57:08 Sending to : +14:57:08 ============================================================================ +14:57:08 ============================================================================ +14:57:08 Slot Id : <366> +14:57:08 Transaction Type : REQUEST +14:57:08 Received From : +14:57:08 ============================================================================ +14:57:08 FNo. Len. Field Value +14:57:08 ============================================================================ +14:57:08 [ 1] [ 4] [0200] +14:57:08 [ 2] [ 16] [6688990103743801] +14:57:08 [ 3] [ 6] [010000] +14:57:08 [ 4] [ 12] [000050000000] +14:57:08 [ 7] [ 10] [0320145703] +14:57:08 [ 11] [ 6] [776901] +14:57:08 [ 12] [ 6] [145703] +14:57:08 [ 13] [ 4] [0320] +14:57:08 [ 15] [ 4] [0320] +14:57:08 [ 18] [ 4] [6011] +14:57:08 [ 22] [ 3] [900] +14:57:08 [ 25] [ 2] [02] +14:57:08 [ 28] [ 9] [D00002000] +14:57:08 [ 32] [ 6] [621354] +14:57:08 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:57:08 [ 37] [ 12] [507903344985] +14:57:08 [ 41] [ 8] [13001400] +14:57:08 [ 42] [ 15] [NATIVE ] +14:57:08 [ 43] [ 40] [Kham Unit Kham LAO] +14:57:08 [ 49] [ 3] [418] +14:57:08 [ 52] [ 16] [DC473392EDA7F48C] +14:57:08 ============================================================================ +14:57:08 + + +waiting on router queue for slot.... +14:57:08 Sending to : +14:57:08 ============================================================================ +14:57:08 ============================================================================ +14:57:08 Slot Id : <366> +14:57:08 Transaction Type : REQUEST +14:57:08 Received From : +14:57:08 ============================================================================ +14:57:08 FNo. Len. Field Value +14:57:08 ============================================================================ +14:57:08 [ 1] [ 4] [0200] +14:57:08 [ 2] [ 16] [6688990103743801] +14:57:08 [ 3] [ 6] [010000] +14:57:08 [ 4] [ 12] [000050000000] +14:57:08 [ 7] [ 10] [0320145703] +14:57:08 [ 11] [ 6] [776901] +14:57:08 [ 12] [ 6] [145703] +14:57:08 [ 13] [ 4] [0320] +14:57:08 [ 15] [ 4] [0320] +14:57:08 [ 18] [ 4] [6011] +14:57:08 [ 22] [ 3] [900] +14:57:08 [ 25] [ 2] [02] +14:57:08 [ 28] [ 9] [D00002000] +14:57:08 [ 32] [ 6] [621354] +14:57:08 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:57:08 [ 37] [ 12] [507903344985] +14:57:08 [ 41] [ 8] [13001400] +14:57:08 [ 42] [ 15] [NATIVE ] +14:57:08 [ 43] [ 40] [Kham Unit Kham LAO] +14:57:08 [ 49] [ 3] [418] +14:57:08 [ 52] [ 16] [B22DE698A99EA8B3] +14:57:08 ============================================================================ +14:57:08 + + +waiting on router queue for slot.... +14:57:08 Sending to : <4> +14:57:08 ============================================================================ +14:57:09 ============================================================================ +14:57:09 Slot Id : <366> +14:57:09 Transaction Type : RESPONSE +14:57:09 Received From : +14:57:09 ============================================================================ +14:57:09 FNo. Len. Field Value +14:57:09 ============================================================================ +14:57:09 [ 1] [ 4] [0210] +14:57:09 [ 2] [ 16] [6688990103743801] +14:57:09 [ 3] [ 6] [010000] +14:57:09 [ 4] [ 12] [000050000000] +14:57:09 [ 11] [ 6] [776901] +14:57:09 [ 12] [ 6] [145703] +14:57:09 [ 15] [ 4] [0320] +14:57:09 [ 18] [ 4] [6011] +14:57:09 [ 32] [ 6] [621354] +14:57:09 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:57:09 [ 37] [ 12] [507903344985] +14:57:09 [ 38] [ 6] [842695] +14:57:09 [ 39] [ 2] [00] +14:57:09 [ 41] [ 8] [13001400] +14:57:09 [ 49] [ 3] [418] +14:57:09 [ 54] [ 20] [0002418C000728950153] +14:57:09 ============================================================================ +14:57:09 Sending to : +14:57:09 ============================================================================ +14:57:09 + + +waiting on router queue for slot.... +14:57:11 ============================================================================ +14:57:11 Slot Id : <366> +14:57:11 Transaction Type : RESPONSE +14:57:11 Received From : +14:57:11 ============================================================================ +14:57:11 FNo. Len. Field Value +14:57:11 ============================================================================ +14:57:11 [ 1] [ 4] [0210] +14:57:11 [ 2] [ 16] [6688990103743801] +14:57:11 [ 3] [ 6] [010000] +14:57:11 [ 4] [ 12] [000050000000] +14:57:11 [ 11] [ 6] [776901] +14:57:11 [ 12] [ 6] [145703] +14:57:11 [ 15] [ 4] [0320] +14:57:11 [ 18] [ 4] [6011] +14:57:11 [ 32] [ 6] [621354] +14:57:11 [ 35] [ 37] [6688990103743801=43021231380127100000] +14:57:11 [ 37] [ 12] [507903344985] +14:57:11 [ 38] [ 6] [842695] +14:57:11 [ 39] [ 2] [00] +14:57:11 [ 41] [ 8] [13001400] +14:57:11 [ 49] [ 3] [418] +14:57:11 [ 54] [ 20] [0002418C000728950153] +14:57:11 ============================================================================ +14:57:11 Calculate Source COMM Id = 0 +14:57:11 ============================================================================ +14:57:11 + + +waiting on router queue for slot.... +14:57:13 ============================================================================ +14:57:13 Slot Id : <313> +14:57:13 Transaction Type : REQUEST +14:57:13 Received From : +14:57:13 ============================================================================ +14:57:13 FNo. Len. Field Value +14:57:13 ============================================================================ +14:57:13 [ 1] [ 4] [0200] +14:57:13 [ 2] [ 16] [6213545000000608] +14:57:13 [ 3] [ 6] [011000] +14:57:13 [ 4] [ 12] [000100000000] +14:57:13 [ 7] [ 10] [0320145733] +14:57:13 [ 11] [ 6] [207583] +14:57:13 [ 12] [ 6] [025543] +14:57:13 [ 13] [ 4] [0320] +14:57:13 [ 14] [ 4] [4912] +14:57:13 [ 15] [ 4] [0320] +14:57:13 [ 18] [ 4] [6011] +14:57:13 [ 19] [ 3] [418] +14:57:13 [ 22] [ 3] [021] +14:57:13 [ 25] [ 2] [01] +14:57:13 [ 28] [ 9] [D00002000] +14:57:13 [ 32] [ 6] [198901] +14:57:13 [ 35] [ 32] [6213545000000608=491212010060365] +14:57:13 [ 37] [ 12] [507914207583] +14:57:13 [ 41] [ 8] [01529031] +14:57:13 [ 42] [ 15] [000000041529031] +14:57:13 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:57:13 [ 49] [ 3] [418] +14:57:13 [ 52] [ 16] [2649391E89372AD3] +14:57:13 ============================================================================ +14:57:13 + + +waiting on router queue for slot.... +14:57:13 Sending to : +14:57:13 ============================================================================ +14:57:13 Sending to : +14:57:13 ============================================================================ +14:57:13 ============================================================================ +14:57:13 Slot Id : <313> +14:57:13 Transaction Type : REQUEST +14:57:13 Received From : +14:57:13 ============================================================================ +14:57:13 FNo. Len. Field Value +14:57:13 ============================================================================ +14:57:13 [ 1] [ 4] [0200] +14:57:13 [ 2] [ 16] [6213545000000608] +14:57:13 [ 3] [ 6] [011000] +14:57:13 [ 4] [ 12] [000100000000] +14:57:13 [ 7] [ 10] [0320145733] +14:57:13 [ 11] [ 6] [207583] +14:57:13 [ 12] [ 6] [025543] +14:57:13 [ 13] [ 4] [0320] +14:57:13 [ 14] [ 4] [4912] +14:57:13 [ 15] [ 4] [0320] +14:57:13 [ 18] [ 4] [6011] +14:57:13 [ 19] [ 3] [418] +14:57:13 [ 22] [ 3] [021] +14:57:13 [ 25] [ 2] [01] +14:57:13 [ 28] [ 9] [D00002000] +14:57:13 [ 32] [ 6] [198901] +14:57:13 [ 35] [ 32] [6213545000000608=491212010060365] +14:57:13 [ 37] [ 12] [507914207583] +14:57:13 [ 41] [ 8] [01529031] +14:57:13 [ 42] [ 15] [000000041529031] +14:57:13 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:57:13 [ 49] [ 3] [418] +14:57:13 [ 52] [ 16] [2649391E89372AD3] +14:57:13 ============================================================================ +14:57:13 + + +waiting on router queue for slot.... +14:57:13 Sending to : +14:57:13 ============================================================================ +14:57:13 ============================================================================ +14:57:13 Slot Id : <313> +14:57:13 Transaction Type : REQUEST +14:57:13 Received From : +14:57:13 ============================================================================ +14:57:13 FNo. Len. Field Value +14:57:13 ============================================================================ +14:57:13 [ 1] [ 4] [0200] +14:57:13 [ 2] [ 16] [6213545000000608] +14:57:13 [ 3] [ 6] [011000] +14:57:13 [ 4] [ 12] [000100000000] +14:57:13 [ 7] [ 10] [0320145733] +14:57:13 [ 11] [ 6] [207583] +14:57:13 [ 12] [ 6] [025543] +14:57:13 [ 13] [ 4] [0320] +14:57:13 [ 14] [ 4] [4912] +14:57:13 [ 15] [ 4] [0320] +14:57:13 [ 18] [ 4] [6011] +14:57:13 [ 19] [ 3] [418] +14:57:13 [ 22] [ 3] [021] +14:57:13 [ 25] [ 2] [01] +14:57:13 [ 28] [ 9] [D00002000] +14:57:13 [ 32] [ 6] [198901] +14:57:13 [ 35] [ 32] [6213545000000608=491212010060365] +14:57:13 [ 37] [ 12] [507914207583] +14:57:13 [ 41] [ 8] [01529031] +14:57:13 [ 42] [ 15] [000000041529031] +14:57:13 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:57:13 [ 49] [ 3] [418] +14:57:13 [ 52] [ 16] [57D8B9FACEA13D84] +14:57:13 ============================================================================ +14:57:13 + + +waiting on router queue for slot.... +14:57:13 Sending to : <0> +14:57:13 ============================================================================ +14:57:14 ============================================================================ +14:57:14 Slot Id : <313> +14:57:14 Transaction Type : RESPONSE +14:57:14 Received From : +14:57:14 ============================================================================ +14:57:14 FNo. Len. Field Value +14:57:14 ============================================================================ +14:57:14 [ 1] [ 4] [0210] +14:57:14 [ 2] [ 16] [6213545000000608] +14:57:14 [ 3] [ 6] [011000] +14:57:14 [ 4] [ 12] [000100000000] +14:57:14 [ 7] [ 10] [0320145733] +14:57:14 [ 11] [ 6] [207583] +14:57:14 [ 12] [ 6] [025543] +14:57:14 [ 13] [ 4] [0320] +14:57:14 [ 15] [ 4] [0320] +14:57:14 [ 18] [ 4] [6011] +14:57:14 [ 19] [ 3] [418] +14:57:14 [ 32] [ 6] [198901] +14:57:14 [ 35] [ 32] [6213545000000608=491212010060365] +14:57:14 [ 37] [ 12] [507914207583] +14:57:14 [ 38] [ 6] [782288] +14:57:14 [ 39] [ 2] [00] +14:57:14 [ 41] [ 8] [01529031] +14:57:14 [ 49] [ 3] [418] +14:57:14 [ 54] [ 40] [1001418C0001519764261002418C000151976426] +14:57:14 ============================================================================ +14:57:14 Sending to : +14:57:14 ============================================================================ +14:57:14 + + +waiting on router queue for slot.... +14:57:15 ============================================================================ +14:57:15 Slot Id : <313> +14:57:15 Transaction Type : RESPONSE +14:57:15 Received From : +14:57:15 ============================================================================ +14:57:15 FNo. Len. Field Value +14:57:15 ============================================================================ +14:57:15 [ 1] [ 4] [0210] +14:57:15 [ 2] [ 16] [6213545000000608] +14:57:15 [ 3] [ 6] [011000] +14:57:15 [ 4] [ 12] [000100000000] +14:57:15 [ 7] [ 10] [0320145733] +14:57:15 [ 11] [ 6] [207583] +14:57:15 [ 12] [ 6] [025543] +14:57:15 [ 13] [ 4] [0320] +14:57:15 [ 15] [ 4] [0320] +14:57:15 [ 18] [ 4] [6011] +14:57:15 [ 19] [ 3] [418] +14:57:15 [ 32] [ 6] [198901] +14:57:15 [ 35] [ 32] [6213545000000608=491212010060365] +14:57:15 [ 37] [ 12] [507914207583] +14:57:15 [ 38] [ 6] [782288] +14:57:15 [ 39] [ 2] [00] +14:57:15 [ 41] [ 8] [01529031] +14:57:15 [ 49] [ 3] [418] +14:57:15 [ 54] [ 40] [1001418C0001519764261002418C000151976426] +14:57:15 ============================================================================ +14:57:15 Calculate Source COMM Id = 5 +14:57:15 ============================================================================ +14:57:15 + + +waiting on router queue for slot.... +14:57:16 ============================================================================ +14:57:16 Slot Id : <343> +14:57:16 Transaction Type : REQUEST +14:57:16 Received From : +14:57:16 ============================================================================ +14:57:16 FNo. Len. Field Value +14:57:16 ============================================================================ +14:57:16 [ 1] [ 4] [0800] +14:57:16 [ 7] [ 10] [0320075623] +14:57:16 [ 11] [ 6] [156890] +14:57:16 [ 70] [ 3] [301] +14:57:16 ============================================================================ +14:57:16 + + +waiting on router queue for slot.... +14:57:16 Sending to : +14:57:16 ============================================================================ +14:57:16 ============================================================================ +14:57:16 Slot Id : <343> +14:57:16 Transaction Type : RESPONSE +14:57:16 Received From : +14:57:16 ============================================================================ +14:57:16 FNo. Len. Field Value +14:57:16 ============================================================================ +14:57:16 [ 1] [ 4] [0810] +14:57:16 [ 7] [ 10] [0320075623] +14:57:16 [ 11] [ 6] [156890] +14:57:16 [ 39] [ 2] [00] +14:57:16 [ 70] [ 3] [301] +14:57:16 ============================================================================ +14:57:16 Calculate Source COMM Id = 2 +14:57:16 ============================================================================ +14:57:16 + + +waiting on router queue for slot.... +14:57:26 ============================================================================ +14:57:26 Slot Id : <378> +14:57:26 Transaction Type : REQUEST +14:57:26 Received From : +14:57:26 ============================================================================ +14:57:26 FNo. Len. Field Value +14:57:26 ============================================================================ +14:57:26 [ 1] [ 4] [0200] +14:57:26 [ 2] [ 16] [6213544002138599] +14:57:26 [ 3] [ 6] [011000] +14:57:26 [ 4] [ 12] [000020000000] +14:57:26 [ 7] [ 10] [0320145746] +14:57:26 [ 11] [ 6] [207588] +14:57:26 [ 12] [ 6] [145253] +14:57:26 [ 13] [ 4] [0320] +14:57:26 [ 14] [ 4] [4912] +14:57:26 [ 15] [ 4] [0320] +14:57:26 [ 18] [ 4] [6011] +14:57:26 [ 19] [ 3] [418] +14:57:26 [ 22] [ 3] [021] +14:57:26 [ 25] [ 2] [01] +14:57:26 [ 28] [ 9] [D00002000] +14:57:26 [ 32] [ 6] [198901] +14:57:26 [ 35] [ 32] [6213544002138599=491212013859260] +14:57:26 [ 37] [ 12] [507914207588] +14:57:26 [ 41] [ 8] [19529001] +14:57:26 [ 42] [ 15] [000000041952901] +14:57:26 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +14:57:26 [ 49] [ 3] [418] +14:57:26 [ 52] [ 16] [4712728F3C842912] +14:57:26 ============================================================================ +14:57:26 + + +waiting on router queue for slot.... +14:57:26 Sending to : +14:57:26 ============================================================================ +14:57:26 Sending to : +14:57:26 ============================================================================ +14:57:26 ============================================================================ +14:57:26 Slot Id : <378> +14:57:26 Transaction Type : REQUEST +14:57:26 Received From : +14:57:26 ============================================================================ +14:57:26 FNo. Len. Field Value +14:57:26 ============================================================================ +14:57:26 [ 1] [ 4] [0200] +14:57:26 [ 2] [ 16] [6213544002138599] +14:57:26 [ 3] [ 6] [011000] +14:57:26 [ 4] [ 12] [000020000000] +14:57:26 [ 7] [ 10] [0320145746] +14:57:26 [ 11] [ 6] [207588] +14:57:26 [ 12] [ 6] [145253] +14:57:26 [ 13] [ 4] [0320] +14:57:26 [ 14] [ 4] [4912] +14:57:26 [ 15] [ 4] [0320] +14:57:26 [ 18] [ 4] [6011] +14:57:26 [ 19] [ 3] [418] +14:57:26 [ 22] [ 3] [021] +14:57:26 [ 25] [ 2] [01] +14:57:26 [ 28] [ 9] [D00002000] +14:57:26 [ 32] [ 6] [198901] +14:57:26 [ 35] [ 32] [6213544002138599=491212013859260] +14:57:26 [ 37] [ 12] [507914207588] +14:57:26 [ 41] [ 8] [19529001] +14:57:26 [ 42] [ 15] [000000041952901] +14:57:26 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +14:57:26 [ 49] [ 3] [418] +14:57:26 [ 52] [ 16] [4712728F3C842912] +14:57:26 ============================================================================ +14:57:26 + + +waiting on router queue for slot.... +14:57:26 Sending to : +14:57:26 ============================================================================ +14:57:26 ============================================================================ +14:57:26 Slot Id : <378> +14:57:26 Transaction Type : REQUEST +14:57:26 Received From : +14:57:26 ============================================================================ +14:57:26 FNo. Len. Field Value +14:57:26 ============================================================================ +14:57:26 [ 1] [ 4] [0200] +14:57:26 [ 2] [ 16] [6213544002138599] +14:57:26 [ 3] [ 6] [011000] +14:57:26 [ 4] [ 12] [000020000000] +14:57:26 [ 7] [ 10] [0320145746] +14:57:26 [ 11] [ 6] [207588] +14:57:26 [ 12] [ 6] [145253] +14:57:26 [ 13] [ 4] [0320] +14:57:26 [ 14] [ 4] [4912] +14:57:26 [ 15] [ 4] [0320] +14:57:26 [ 18] [ 4] [6011] +14:57:26 [ 19] [ 3] [418] +14:57:26 [ 22] [ 3] [021] +14:57:26 [ 25] [ 2] [01] +14:57:26 [ 28] [ 9] [D00002000] +14:57:26 [ 32] [ 6] [198901] +14:57:26 [ 35] [ 32] [6213544002138599=491212013859260] +14:57:26 [ 37] [ 12] [507914207588] +14:57:26 [ 41] [ 8] [19529001] +14:57:26 [ 42] [ 15] [000000041952901] +14:57:26 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +14:57:26 [ 49] [ 3] [418] +14:57:26 [ 52] [ 16] [0B40134E6CB415E9] +14:57:26 ============================================================================ +14:57:26 + + +waiting on router queue for slot.... +14:57:26 Sending to : <0> +14:57:26 ============================================================================ +14:57:27 ============================================================================ +14:57:27 Slot Id : <378> +14:57:27 Transaction Type : RESPONSE +14:57:27 Received From : +14:57:27 ============================================================================ +14:57:27 FNo. Len. Field Value +14:57:27 ============================================================================ +14:57:27 [ 1] [ 4] [0210] +14:57:27 [ 2] [ 16] [6213544002138599] +14:57:27 [ 3] [ 6] [011000] +14:57:27 [ 4] [ 12] [000020000000] +14:57:27 [ 7] [ 10] [0320145746] +14:57:27 [ 11] [ 6] [207588] +14:57:27 [ 12] [ 6] [145253] +14:57:27 [ 13] [ 4] [0320] +14:57:27 [ 15] [ 4] [0320] +14:57:27 [ 18] [ 4] [6011] +14:57:27 [ 19] [ 3] [418] +14:57:27 [ 32] [ 6] [198901] +14:57:27 [ 35] [ 32] [6213544002138599=491212013859260] +14:57:27 [ 37] [ 12] [507914207588] +14:57:27 [ 38] [ 6] [754367] +14:57:27 [ 39] [ 2] [00] +14:57:27 [ 41] [ 8] [19529001] +14:57:27 [ 49] [ 3] [418] +14:57:27 [ 54] [ 40] [1001418C0000391470001002418C000039147000] +14:57:27 ============================================================================ +14:57:27 Sending to : +14:57:27 ============================================================================ +14:57:27 + + +waiting on router queue for slot.... +14:57:27 ============================================================================ +14:57:27 Slot Id : <345> +14:57:27 Transaction Type : REQUEST +14:57:27 Received From : +14:57:27 ============================================================================ +14:57:27 FNo. Len. Field Value +14:57:27 ============================================================================ +14:57:27 [ 1] [ 4] [0800] +14:57:27 [ 7] [ 10] [0320075634] +14:57:27 [ 11] [ 6] [156891] +14:57:27 [ 70] [ 3] [301] +14:57:27 ============================================================================ +14:57:27 + + +waiting on router queue for slot.... +14:57:27 Sending to : +14:57:27 ============================================================================ +14:57:27 ============================================================================ +14:57:27 Slot Id : <345> +14:57:27 Transaction Type : RESPONSE +14:57:27 Received From : +14:57:27 ============================================================================ +14:57:27 FNo. Len. Field Value +14:57:27 ============================================================================ +14:57:27 [ 1] [ 4] [0810] +14:57:27 [ 7] [ 10] [0320075634] +14:57:27 [ 11] [ 6] [156891] +14:57:27 [ 39] [ 2] [00] +14:57:27 [ 70] [ 3] [301] +14:57:27 ============================================================================ +14:57:27 Calculate Source COMM Id = 2 +14:57:27 ============================================================================ +14:57:27 + + +waiting on router queue for slot.... +14:57:28 ============================================================================ +14:57:28 Slot Id : <378> +14:57:28 Transaction Type : RESPONSE +14:57:28 Received From : +14:57:28 ============================================================================ +14:57:28 FNo. Len. Field Value +14:57:28 ============================================================================ +14:57:28 [ 1] [ 4] [0210] +14:57:28 [ 2] [ 16] [6213544002138599] +14:57:28 [ 3] [ 6] [011000] +14:57:28 [ 4] [ 12] [000020000000] +14:57:28 [ 7] [ 10] [0320145746] +14:57:28 [ 11] [ 6] [207588] +14:57:28 [ 12] [ 6] [145253] +14:57:28 [ 13] [ 4] [0320] +14:57:28 [ 15] [ 4] [0320] +14:57:28 [ 18] [ 4] [6011] +14:57:28 [ 19] [ 3] [418] +14:57:28 [ 32] [ 6] [198901] +14:57:28 [ 35] [ 32] [6213544002138599=491212013859260] +14:57:28 [ 37] [ 12] [507914207588] +14:57:28 [ 38] [ 6] [754367] +14:57:28 [ 39] [ 2] [00] +14:57:28 [ 41] [ 8] [19529001] +14:57:28 [ 49] [ 3] [418] +14:57:28 [ 54] [ 40] [1001418C0000391470001002418C000039147000] +14:57:28 ============================================================================ +14:57:28 Calculate Source COMM Id = 5 +14:57:28 ============================================================================ +14:57:28 + + +waiting on router queue for slot.... +14:57:33 ============================================================================ +14:57:33 Slot Id : <340> +14:57:33 Transaction Type : REQUEST +14:57:33 Received From : +14:57:33 ============================================================================ +14:57:33 FNo. Len. Field Value +14:57:33 ============================================================================ +14:57:33 [ 1] [ 4] [0200] +14:57:33 [ 2] [ 16] [6213541000208812] +14:57:33 [ 3] [ 6] [010000] +14:57:33 [ 4] [ 12] [000070000000] +14:57:33 [ 7] [ 10] [0320145523] +14:57:33 [ 11] [ 6] [949261] +14:57:33 [ 12] [ 6] [145523] +14:57:33 [ 13] [ 4] [0320] +14:57:33 [ 15] [ 4] [0320] +14:57:33 [ 18] [ 4] [6011] +14:57:33 [ 19] [ 3] [418] +14:57:33 [ 22] [ 3] [021] +14:57:33 [ 25] [ 2] [01] +14:57:33 [ 28] [ 9] [D00002000] +14:57:33 [ 32] [ 6] [668899] +14:57:33 [ 35] [ 32] [6213541000208812=491212010881876] +14:57:33 [ 37] [ 12] [507901416643] +14:57:33 [ 41] [ 8] [03011002] +14:57:33 [ 42] [ 15] [APT ] +14:57:33 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +14:57:33 [ 49] [ 3] [418] +14:57:33 [ 52] [ 16] [54194FF3B59E8D98] +14:57:33 ============================================================================ +14:57:33 + + +waiting on router queue for slot.... +14:57:33 Sending to : +14:57:33 ============================================================================ +14:57:33 Sending to : +14:57:33 ============================================================================ +14:57:33 ============================================================================ +14:57:33 Slot Id : <340> +14:57:33 Transaction Type : REQUEST +14:57:33 Received From : +14:57:33 ============================================================================ +14:57:33 FNo. Len. Field Value +14:57:33 ============================================================================ +14:57:33 [ 1] [ 4] [0200] +14:57:33 [ 2] [ 16] [6213541000208812] +14:57:33 [ 3] [ 6] [010000] +14:57:33 [ 4] [ 12] [000070000000] +14:57:33 [ 7] [ 10] [0320145523] +14:57:33 [ 11] [ 6] [949261] +14:57:33 [ 12] [ 6] [145523] +14:57:33 [ 13] [ 4] [0320] +14:57:33 [ 15] [ 4] [0320] +14:57:33 [ 18] [ 4] [6011] +14:57:33 [ 19] [ 3] [418] +14:57:33 [ 22] [ 3] [021] +14:57:33 [ 25] [ 2] [01] +14:57:33 [ 28] [ 9] [D00002000] +14:57:33 [ 32] [ 6] [668899] +14:57:33 [ 35] [ 32] [6213541000208812=491212010881876] +14:57:33 [ 37] [ 12] [507901416643] +14:57:33 [ 41] [ 8] [03011002] +14:57:33 [ 42] [ 15] [APT ] +14:57:33 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +14:57:33 [ 49] [ 3] [418] +14:57:33 [ 52] [ 16] [54194FF3B59E8D98] +14:57:33 ============================================================================ +14:57:33 + + +waiting on router queue for slot.... +14:57:33 Sending to : +14:57:33 ============================================================================ +14:57:33 ============================================================================ +14:57:33 Slot Id : <340> +14:57:33 Transaction Type : REQUEST +14:57:33 Received From : +14:57:33 ============================================================================ +14:57:33 FNo. Len. Field Value +14:57:33 ============================================================================ +14:57:33 [ 1] [ 4] [0200] +14:57:33 [ 2] [ 16] [6213541000208812] +14:57:33 [ 3] [ 6] [010000] +14:57:33 [ 4] [ 12] [000070000000] +14:57:33 [ 7] [ 10] [0320145523] +14:57:33 [ 11] [ 6] [949261] +14:57:33 [ 12] [ 6] [145523] +14:57:33 [ 13] [ 4] [0320] +14:57:33 [ 15] [ 4] [0320] +14:57:33 [ 18] [ 4] [6011] +14:57:33 [ 19] [ 3] [418] +14:57:33 [ 22] [ 3] [021] +14:57:33 [ 25] [ 2] [01] +14:57:33 [ 28] [ 9] [D00002000] +14:57:33 [ 32] [ 6] [668899] +14:57:33 [ 35] [ 32] [6213541000208812=491212010881876] +14:57:33 [ 37] [ 12] [507901416643] +14:57:33 [ 41] [ 8] [03011002] +14:57:33 [ 42] [ 15] [APT ] +14:57:33 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +14:57:33 [ 49] [ 3] [418] +14:57:33 [ 52] [ 16] [609F0A398BE7504C] +14:57:33 ============================================================================ +14:57:33 + + +waiting on router queue for slot.... +14:57:33 Sending to : <0> +14:57:33 ============================================================================ +14:57:33 ============================================================================ +14:57:33 Slot Id : <340> +14:57:33 Transaction Type : RESPONSE +14:57:33 Received From : +14:57:33 ============================================================================ +14:57:33 FNo. Len. Field Value +14:57:33 ============================================================================ +14:57:33 [ 1] [ 4] [0210] +14:57:33 [ 2] [ 16] [6213541000208812] +14:57:33 [ 3] [ 6] [010000] +14:57:33 [ 4] [ 12] [000070000000] +14:57:33 [ 7] [ 10] [0320145523] +14:57:33 [ 11] [ 6] [949261] +14:57:33 [ 12] [ 6] [145523] +14:57:33 [ 13] [ 4] [0320] +14:57:33 [ 15] [ 4] [0320] +14:57:33 [ 18] [ 4] [6011] +14:57:33 [ 19] [ 3] [418] +14:57:33 [ 22] [ 3] [021] +14:57:33 [ 32] [ 6] [668899] +14:57:33 [ 35] [ 32] [6213541000208812=491212010881876] +14:57:33 [ 37] [ 12] [507901416643] +14:57:33 [ 38] [ 6] [145729] +14:57:33 [ 39] [ 2] [55] +14:57:33 [ 41] [ 8] [03011002] +14:57:33 [ 49] [ 3] [418] +14:57:33 ============================================================================ +14:57:33 Sending to : +14:57:33 ============================================================================ +14:57:33 + + +waiting on router queue for slot.... +14:57:34 ============================================================================ +14:57:34 Slot Id : <340> +14:57:34 Transaction Type : RESPONSE +14:57:34 Received From : +14:57:34 ============================================================================ +14:57:34 FNo. Len. Field Value +14:57:34 ============================================================================ +14:57:34 [ 1] [ 4] [0210] +14:57:34 [ 2] [ 16] [6213541000208812] +14:57:34 [ 3] [ 6] [010000] +14:57:34 [ 4] [ 12] [000070000000] +14:57:34 [ 7] [ 10] [0320145523] +14:57:34 [ 11] [ 6] [949261] +14:57:34 [ 12] [ 6] [145523] +14:57:34 [ 13] [ 4] [0320] +14:57:34 [ 15] [ 4] [0320] +14:57:34 [ 18] [ 4] [6011] +14:57:34 [ 19] [ 3] [418] +14:57:34 [ 22] [ 3] [021] +14:57:34 [ 32] [ 6] [668899] +14:57:34 [ 35] [ 32] [6213541000208812=491212010881876] +14:57:34 [ 37] [ 12] [507901416643] +14:57:34 [ 38] [ 6] [145729] +14:57:34 [ 39] [ 2] [55] +14:57:34 [ 41] [ 8] [03011002] +14:57:34 [ 49] [ 3] [418] +14:57:34 ============================================================================ +14:57:34 Calculate Source COMM Id = 4 +14:57:34 ============================================================================ +14:57:34 + + +waiting on router queue for slot.... +14:57:34 ============================================================================ +14:57:34 Slot Id : <373> +14:57:34 Transaction Type : REQUEST +14:57:34 Received From : +14:57:34 ============================================================================ +14:57:34 FNo. Len. Field Value +14:57:34 ============================================================================ +14:57:34 [ 1] [ 4] [0800] +14:57:34 [ 2] [ 5] [02531] +14:57:34 [ 3] [ 6] [579148] +14:57:34 [ 7] [ 10] [0320075734] +14:57:34 [ 11] [ 6] [807280] +14:57:34 [ 15] [ 10] [0320075734] +14:57:34 [ 37] [ 11] [57914807280] +14:57:34 [ 70] [ 3] [001] +14:57:34 ============================================================================ +14:57:34 + + +waiting on router queue for slot.... +14:57:34 ============================================================================ +14:57:34 Slot Id : <373> +14:57:34 Transaction Type : RESPONSE +14:57:34 Received From : +14:57:34 ============================================================================ +14:57:34 FNo. Len. Field Value +14:57:34 ============================================================================ +14:57:34 [ 1] [ 4] [0810] +14:57:34 [ 7] [ 10] [0320075734] +14:57:34 [ 11] [ 6] [807280] +14:57:34 [ 15] [ 4] [0320] +14:57:34 [ 37] [ 12] [57914807280] +14:57:34 [ 39] [ 2] [00] +14:57:34 [ 70] [ 3] [001] +14:57:34 ============================================================================ +14:57:34 Sending to : +14:57:34 ============================================================================ +14:57:34 + + +waiting on router queue for slot.... +14:57:38 ============================================================================ +14:57:38 Slot Id : <324> +14:57:38 Transaction Type : REQUEST +14:57:38 Received From : +14:57:38 ============================================================================ +14:57:38 FNo. Len. Field Value +14:57:38 ============================================================================ +14:57:38 [ 1] [ 4] [0800] +14:57:38 [ 7] [ 10] [0320075645] +14:57:38 [ 11] [ 6] [156892] +14:57:38 [ 70] [ 3] [301] +14:57:38 ============================================================================ +14:57:38 + + +waiting on router queue for slot.... +14:57:38 Sending to : +14:57:38 ============================================================================ +14:57:38 ============================================================================ +14:57:38 Slot Id : <324> +14:57:38 Transaction Type : RESPONSE +14:57:38 Received From : +14:57:38 ============================================================================ +14:57:38 FNo. Len. Field Value +14:57:38 ============================================================================ +14:57:38 [ 1] [ 4] [0810] +14:57:38 [ 7] [ 10] [0320075645] +14:57:38 [ 11] [ 6] [156892] +14:57:38 [ 39] [ 2] [00] +14:57:38 [ 70] [ 3] [301] +14:57:38 ============================================================================ +14:57:38 Calculate Source COMM Id = 2 +14:57:38 ============================================================================ +14:57:38 + + +waiting on router queue for slot.... +14:57:49 ============================================================================ +14:57:49 Slot Id : <382> +14:57:49 Transaction Type : REQUEST +14:57:49 Received From : +14:57:49 ============================================================================ +14:57:49 FNo. Len. Field Value +14:57:49 ============================================================================ +14:57:49 [ 1] [ 4] [0800] +14:57:49 [ 7] [ 10] [0320075655] +14:57:49 [ 11] [ 6] [156893] +14:57:49 [ 70] [ 3] [301] +14:57:49 ============================================================================ +14:57:49 + + +waiting on router queue for slot.... +14:57:49 Sending to : +14:57:49 ============================================================================ +14:57:49 ============================================================================ +14:57:49 Slot Id : <382> +14:57:49 Transaction Type : RESPONSE +14:57:49 Received From : +14:57:49 ============================================================================ +14:57:49 FNo. Len. Field Value +14:57:49 ============================================================================ +14:57:49 [ 1] [ 4] [0810] +14:57:49 [ 7] [ 10] [0320075655] +14:57:49 [ 11] [ 6] [156893] +14:57:49 [ 39] [ 2] [00] +14:57:49 [ 70] [ 3] [301] +14:57:49 ============================================================================ +14:57:49 Calculate Source COMM Id = 2 +14:57:49 ============================================================================ +14:57:49 + + +waiting on router queue for slot.... +14:57:50 ============================================================================ +14:57:50 Slot Id : <355> +14:57:50 Transaction Type : REQUEST +14:57:50 Received From : +14:57:50 ============================================================================ +14:57:50 FNo. Len. Field Value +14:57:50 ============================================================================ +14:57:50 [ 1] [ 4] [0200] +14:57:50 [ 2] [ 16] [6213545000000608] +14:57:50 [ 3] [ 6] [011000] +14:57:50 [ 4] [ 12] [000020000000] +14:57:50 [ 7] [ 10] [0320145811] +14:57:50 [ 11] [ 6] [207595] +14:57:50 [ 12] [ 6] [025621] +14:57:50 [ 13] [ 4] [0320] +14:57:50 [ 14] [ 4] [4912] +14:57:50 [ 15] [ 4] [0320] +14:57:50 [ 18] [ 4] [6011] +14:57:50 [ 19] [ 3] [418] +14:57:50 [ 22] [ 3] [021] +14:57:50 [ 25] [ 2] [01] +14:57:50 [ 28] [ 9] [D00002000] +14:57:50 [ 32] [ 6] [198901] +14:57:50 [ 35] [ 32] [6213545000000608=491212010060365] +14:57:50 [ 37] [ 12] [507914207595] +14:57:50 [ 41] [ 8] [01529031] +14:57:50 [ 42] [ 15] [000000041529031] +14:57:50 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:57:50 [ 49] [ 3] [418] +14:57:50 [ 52] [ 16] [2649391E89372AD3] +14:57:50 ============================================================================ +14:57:50 + + +waiting on router queue for slot.... +14:57:50 Sending to : +14:57:50 ============================================================================ +14:57:50 Sending to : +14:57:50 ============================================================================ +14:57:51 ============================================================================ +14:57:51 Slot Id : <355> +14:57:51 Transaction Type : REQUEST +14:57:51 Received From : +14:57:51 ============================================================================ +14:57:51 FNo. Len. Field Value +14:57:51 ============================================================================ +14:57:51 [ 1] [ 4] [0200] +14:57:51 [ 2] [ 16] [6213545000000608] +14:57:51 [ 3] [ 6] [011000] +14:57:51 [ 4] [ 12] [000020000000] +14:57:51 [ 7] [ 10] [0320145811] +14:57:51 [ 11] [ 6] [207595] +14:57:51 [ 12] [ 6] [025621] +14:57:51 [ 13] [ 4] [0320] +14:57:51 [ 14] [ 4] [4912] +14:57:51 [ 15] [ 4] [0320] +14:57:51 [ 18] [ 4] [6011] +14:57:51 [ 19] [ 3] [418] +14:57:51 [ 22] [ 3] [021] +14:57:51 [ 25] [ 2] [01] +14:57:51 [ 28] [ 9] [D00002000] +14:57:51 [ 32] [ 6] [198901] +14:57:51 [ 35] [ 32] [6213545000000608=491212010060365] +14:57:51 [ 37] [ 12] [507914207595] +14:57:51 [ 41] [ 8] [01529031] +14:57:51 [ 42] [ 15] [000000041529031] +14:57:51 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:57:51 [ 49] [ 3] [418] +14:57:51 [ 52] [ 16] [2649391E89372AD3] +14:57:51 ============================================================================ +14:57:51 + + +waiting on router queue for slot.... +14:57:51 Sending to : +14:57:51 ============================================================================ +14:57:51 ============================================================================ +14:57:51 Slot Id : <355> +14:57:51 Transaction Type : REQUEST +14:57:51 Received From : +14:57:51 ============================================================================ +14:57:51 FNo. Len. Field Value +14:57:51 ============================================================================ +14:57:51 [ 1] [ 4] [0200] +14:57:51 [ 2] [ 16] [6213545000000608] +14:57:51 [ 3] [ 6] [011000] +14:57:51 [ 4] [ 12] [000020000000] +14:57:51 [ 7] [ 10] [0320145811] +14:57:51 [ 11] [ 6] [207595] +14:57:51 [ 12] [ 6] [025621] +14:57:51 [ 13] [ 4] [0320] +14:57:51 [ 14] [ 4] [4912] +14:57:51 [ 15] [ 4] [0320] +14:57:51 [ 18] [ 4] [6011] +14:57:51 [ 19] [ 3] [418] +14:57:51 [ 22] [ 3] [021] +14:57:51 [ 25] [ 2] [01] +14:57:51 [ 28] [ 9] [D00002000] +14:57:51 [ 32] [ 6] [198901] +14:57:51 [ 35] [ 32] [6213545000000608=491212010060365] +14:57:51 [ 37] [ 12] [507914207595] +14:57:51 [ 41] [ 8] [01529031] +14:57:51 [ 42] [ 15] [000000041529031] +14:57:51 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:57:51 [ 49] [ 3] [418] +14:57:51 [ 52] [ 16] [57D8B9FACEA13D84] +14:57:51 ============================================================================ +14:57:51 + + +waiting on router queue for slot.... +14:57:51 Sending to : <0> +14:57:51 ============================================================================ +14:57:51 ============================================================================ +14:57:51 Slot Id : <355> +14:57:51 Transaction Type : RESPONSE +14:57:51 Received From : +14:57:51 ============================================================================ +14:57:51 FNo. Len. Field Value +14:57:51 ============================================================================ +14:57:51 [ 1] [ 4] [0210] +14:57:51 [ 2] [ 16] [6213545000000608] +14:57:51 [ 3] [ 6] [011000] +14:57:51 [ 4] [ 12] [000020000000] +14:57:51 [ 7] [ 10] [0320145811] +14:57:51 [ 11] [ 6] [207595] +14:57:51 [ 12] [ 6] [025621] +14:57:51 [ 13] [ 4] [0320] +14:57:51 [ 15] [ 4] [0320] +14:57:51 [ 18] [ 4] [6011] +14:57:51 [ 19] [ 3] [418] +14:57:51 [ 32] [ 6] [198901] +14:57:51 [ 35] [ 32] [6213545000000608=491212010060365] +14:57:51 [ 37] [ 12] [507914207595] +14:57:51 [ 38] [ 6] [661713] +14:57:51 [ 39] [ 2] [00] +14:57:51 [ 41] [ 8] [01529031] +14:57:51 [ 49] [ 3] [418] +14:57:51 [ 54] [ 40] [1001418C0001317764261002418C000131776426] +14:57:51 ============================================================================ +14:57:51 Sending to : +14:57:51 ============================================================================ +14:57:51 + + +waiting on router queue for slot.... +14:57:53 ============================================================================ +14:57:53 Slot Id : <355> +14:57:53 Transaction Type : RESPONSE +14:57:53 Received From : +14:57:53 ============================================================================ +14:57:53 FNo. Len. Field Value +14:57:53 ============================================================================ +14:57:53 [ 1] [ 4] [0210] +14:57:53 [ 2] [ 16] [6213545000000608] +14:57:53 [ 3] [ 6] [011000] +14:57:53 [ 4] [ 12] [000020000000] +14:57:53 [ 7] [ 10] [0320145811] +14:57:53 [ 11] [ 6] [207595] +14:57:53 [ 12] [ 6] [025621] +14:57:53 [ 13] [ 4] [0320] +14:57:53 [ 15] [ 4] [0320] +14:57:53 [ 18] [ 4] [6011] +14:57:53 [ 19] [ 3] [418] +14:57:53 [ 32] [ 6] [198901] +14:57:53 [ 35] [ 32] [6213545000000608=491212010060365] +14:57:53 [ 37] [ 12] [507914207595] +14:57:53 [ 38] [ 6] [661713] +14:57:53 [ 39] [ 2] [00] +14:57:53 [ 41] [ 8] [01529031] +14:57:53 [ 49] [ 3] [418] +14:57:53 [ 54] [ 40] [1001418C0001317764261002418C000131776426] +14:57:53 ============================================================================ +14:57:53 Calculate Source COMM Id = 5 +14:57:53 ============================================================================ +14:57:53 + + +waiting on router queue for slot.... +14:57:56 ============================================================================ +14:57:56 Slot Id : <353> +14:57:56 Transaction Type : REQUEST +14:57:56 Received From : +14:57:56 ============================================================================ +14:57:56 FNo. Len. Field Value +14:57:56 ============================================================================ +14:57:56 [ 1] [ 4] [0800] +14:57:56 [ 7] [ 10] [0320220944] +14:57:56 [ 11] [ 6] [150944] +14:57:56 [ 37] [ 12] [57915150944] +14:57:56 [ 70] [ 3] [301] +14:57:56 ============================================================================ +14:57:56 + + +waiting on router queue for slot.... +14:57:56 Sending to : +14:57:56 ============================================================================ +14:57:56 ============================================================================ +14:57:56 Slot Id : <353> +14:57:56 Transaction Type : RESPONSE +14:57:56 Received From : +14:57:56 ============================================================================ +14:57:56 FNo. Len. Field Value +14:57:56 ============================================================================ +14:57:56 [ 1] [ 4] [0810] +14:57:56 [ 7] [ 10] [0320220944] +14:57:56 [ 11] [ 6] [150944] +14:57:56 [ 37] [ 12] [579151509440] +14:57:56 [ 39] [ 2] [00] +14:57:56 [ 70] [ 3] [810] +14:57:56 ============================================================================ +14:57:56 Calculate Source COMM Id = 6 +14:57:56 ============================================================================ +14:57:56 + + +waiting on router queue for slot.... +14:57:59 ============================================================================ +14:57:59 Slot Id : <344> +14:57:59 Transaction Type : REQUEST +14:57:59 Received From : +14:57:59 ============================================================================ +14:57:59 FNo. Len. Field Value +14:57:59 ============================================================================ +14:57:59 [ 1] [ 4] [0200] +14:57:59 [ 2] [ 16] [6688990105247207] +14:57:59 [ 3] [ 6] [011000] +14:57:59 [ 4] [ 12] [000100000000] +14:57:59 [ 7] [ 10] [0320145755] +14:57:59 [ 11] [ 6] [777102] +14:57:59 [ 12] [ 6] [145755] +14:57:59 [ 13] [ 4] [0320] +14:57:59 [ 15] [ 4] [0320] +14:57:59 [ 18] [ 4] [6011] +14:57:59 [ 22] [ 3] [900] +14:57:59 [ 25] [ 2] [02] +14:57:59 [ 28] [ 9] [D00002000] +14:57:59 [ 32] [ 6] [621354] +14:57:59 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:57:59 [ 37] [ 12] [507904719699] +14:57:59 [ 41] [ 8] [18001000] +14:57:59 [ 42] [ 15] [NATIVE ] +14:57:59 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:57:59 [ 49] [ 3] [418] +14:57:59 [ 52] [ 16] [667459472C5E1498] +14:57:59 ============================================================================ +14:57:59 + + +waiting on router queue for slot.... +14:57:59 Sending to : +14:57:59 ============================================================================ +14:57:59 Sending to : +14:57:59 ============================================================================ +14:58:00 ============================================================================ +14:58:00 Slot Id : <344> +14:58:00 Transaction Type : REQUEST +14:58:00 Received From : +14:58:00 ============================================================================ +14:58:00 FNo. Len. Field Value +14:58:00 ============================================================================ +14:58:00 [ 1] [ 4] [0200] +14:58:00 [ 2] [ 16] [6688990105247207] +14:58:00 [ 3] [ 6] [011000] +14:58:00 [ 4] [ 12] [000100000000] +14:58:00 [ 7] [ 10] [0320145755] +14:58:00 [ 11] [ 6] [777102] +14:58:00 [ 12] [ 6] [145755] +14:58:00 [ 13] [ 4] [0320] +14:58:00 [ 15] [ 4] [0320] +14:58:00 [ 18] [ 4] [6011] +14:58:00 [ 22] [ 3] [900] +14:58:00 [ 25] [ 2] [02] +14:58:00 [ 28] [ 9] [D00002000] +14:58:00 [ 32] [ 6] [621354] +14:58:00 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:58:00 [ 37] [ 12] [507904719699] +14:58:00 [ 41] [ 8] [18001000] +14:58:00 [ 42] [ 15] [NATIVE ] +14:58:00 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:58:00 [ 49] [ 3] [418] +14:58:00 [ 52] [ 16] [667459472C5E1498] +14:58:00 ============================================================================ +14:58:00 + + +waiting on router queue for slot.... +14:58:00 Sending to : +14:58:00 ============================================================================ +14:58:00 ============================================================================ +14:58:00 Slot Id : <344> +14:58:00 Transaction Type : REQUEST +14:58:00 Received From : +14:58:00 ============================================================================ +14:58:00 FNo. Len. Field Value +14:58:00 ============================================================================ +14:58:00 [ 1] [ 4] [0200] +14:58:00 [ 2] [ 16] [6688990105247207] +14:58:00 [ 3] [ 6] [011000] +14:58:00 [ 4] [ 12] [000100000000] +14:58:00 [ 7] [ 10] [0320145755] +14:58:00 [ 11] [ 6] [777102] +14:58:00 [ 12] [ 6] [145755] +14:58:00 [ 13] [ 4] [0320] +14:58:00 [ 15] [ 4] [0320] +14:58:00 [ 18] [ 4] [6011] +14:58:00 [ 22] [ 3] [900] +14:58:00 [ 25] [ 2] [02] +14:58:00 [ 28] [ 9] [D00002000] +14:58:00 [ 32] [ 6] [621354] +14:58:00 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:58:00 [ 37] [ 12] [507904719699] +14:58:00 [ 41] [ 8] [18001000] +14:58:00 [ 42] [ 15] [NATIVE ] +14:58:00 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:58:00 [ 49] [ 3] [418] +14:58:00 [ 52] [ 16] [2740F324422C69C1] +14:58:00 ============================================================================ +14:58:00 + + +waiting on router queue for slot.... +14:58:00 Sending to : <4> +14:58:00 ============================================================================ +14:58:01 ============================================================================ +14:58:01 Slot Id : <344> +14:58:01 Transaction Type : RESPONSE +14:58:01 Received From : +14:58:01 ============================================================================ +14:58:01 FNo. Len. Field Value +14:58:01 ============================================================================ +14:58:01 [ 1] [ 4] [0210] +14:58:01 [ 2] [ 16] [6688990105247207] +14:58:01 [ 3] [ 6] [011000] +14:58:01 [ 4] [ 12] [000100000000] +14:58:01 [ 11] [ 6] [777102] +14:58:01 [ 12] [ 6] [145755] +14:58:01 [ 15] [ 4] [0320] +14:58:01 [ 18] [ 4] [6011] +14:58:01 [ 32] [ 6] [621354] +14:58:01 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:58:01 [ 37] [ 12] [507904719699] +14:58:01 [ 38] [ 6] [437572] +14:58:01 [ 39] [ 2] [00] +14:58:01 [ 41] [ 8] [18001000] +14:58:01 [ 49] [ 3] [418] +14:58:01 [ 54] [ 20] [1002418C000480756582] +14:58:01 ============================================================================ +14:58:01 Sending to : +14:58:01 ============================================================================ +14:58:01 + + +waiting on router queue for slot.... +14:58:02 ============================================================================ +14:58:02 Slot Id : <344> +14:58:02 Transaction Type : RESPONSE +14:58:02 Received From : +14:58:02 ============================================================================ +14:58:02 FNo. Len. Field Value +14:58:02 ============================================================================ +14:58:02 [ 1] [ 4] [0210] +14:58:02 [ 2] [ 16] [6688990105247207] +14:58:02 [ 3] [ 6] [011000] +14:58:02 [ 4] [ 12] [000100000000] +14:58:02 [ 11] [ 6] [777102] +14:58:02 [ 12] [ 6] [145755] +14:58:02 [ 15] [ 4] [0320] +14:58:02 [ 18] [ 4] [6011] +14:58:02 [ 32] [ 6] [621354] +14:58:02 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:58:02 [ 37] [ 12] [507904719699] +14:58:02 [ 38] [ 6] [437572] +14:58:02 [ 39] [ 2] [00] +14:58:02 [ 41] [ 8] [18001000] +14:58:02 [ 49] [ 3] [418] +14:58:02 [ 54] [ 20] [1002418C000480756582] +14:58:02 ============================================================================ +14:58:02 Calculate Source COMM Id = 0 +14:58:02 ============================================================================ +14:58:02 + + +waiting on router queue for slot.... +14:58:03 ============================================================================ +14:58:03 Slot Id : <363> +14:58:03 Transaction Type : REQUEST +14:58:03 Received From : +14:58:03 ============================================================================ +14:58:03 FNo. Len. Field Value +14:58:03 ============================================================================ +14:58:03 [ 1] [ 4] [0800] +14:58:03 [ 7] [ 10] [0320075710] +14:58:03 [ 11] [ 6] [156894] +14:58:03 [ 70] [ 3] [301] +14:58:03 ============================================================================ +14:58:03 + + +waiting on router queue for slot.... +14:58:03 Sending to : +14:58:03 ============================================================================ +14:58:03 ============================================================================ +14:58:03 Slot Id : <363> +14:58:03 Transaction Type : RESPONSE +14:58:03 Received From : +14:58:03 ============================================================================ +14:58:03 FNo. Len. Field Value +14:58:03 ============================================================================ +14:58:03 [ 1] [ 4] [0810] +14:58:03 [ 7] [ 10] [0320075710] +14:58:03 [ 11] [ 6] [156894] +14:58:03 [ 39] [ 2] [00] +14:58:03 [ 70] [ 3] [301] +14:58:03 ============================================================================ +14:58:03 Calculate Source COMM Id = 2 +14:58:03 ============================================================================ +14:58:03 + + +waiting on router queue for slot.... +14:58:06 ============================================================================ +14:58:06 Slot Id : <370> +14:58:06 Transaction Type : REQUEST +14:58:06 Received From : +14:58:06 ============================================================================ +14:58:06 FNo. Len. Field Value +14:58:06 ============================================================================ +14:58:06 [ 1] [ 4] [0200] +14:58:06 [ 2] [ 16] [6688990104808306] +14:58:06 [ 3] [ 6] [011000] +14:58:06 [ 4] [ 12] [000010000000] +14:58:06 [ 7] [ 10] [0320145802] +14:58:06 [ 11] [ 6] [777127] +14:58:06 [ 12] [ 6] [145802] +14:58:06 [ 13] [ 4] [0320] +14:58:06 [ 15] [ 4] [0320] +14:58:06 [ 18] [ 4] [6011] +14:58:06 [ 22] [ 3] [900] +14:58:06 [ 25] [ 2] [02] +14:58:06 [ 28] [ 9] [D00002000] +14:58:06 [ 32] [ 6] [621354] +14:58:06 [ 35] [ 37] [6688990104808306=43051231830619200000] +14:58:06 [ 37] [ 12] [507905200896] +14:58:06 [ 41] [ 8] [07001700] +14:58:06 [ 42] [ 15] [NATIVE ] +14:58:06 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:58:06 [ 49] [ 3] [418] +14:58:06 [ 52] [ 16] [A90DD9758FAB38B7] +14:58:06 ============================================================================ +14:58:06 + + +waiting on router queue for slot.... +14:58:06 Sending to : +14:58:06 ============================================================================ +14:58:06 Sending to : +14:58:06 ============================================================================ +14:58:07 ============================================================================ +14:58:07 Slot Id : <370> +14:58:07 Transaction Type : REQUEST +14:58:07 Received From : +14:58:07 ============================================================================ +14:58:07 FNo. Len. Field Value +14:58:07 ============================================================================ +14:58:07 [ 1] [ 4] [0200] +14:58:07 [ 2] [ 16] [6688990104808306] +14:58:07 [ 3] [ 6] [011000] +14:58:07 [ 4] [ 12] [000010000000] +14:58:07 [ 7] [ 10] [0320145802] +14:58:07 [ 11] [ 6] [777127] +14:58:07 [ 12] [ 6] [145802] +14:58:07 [ 13] [ 4] [0320] +14:58:07 [ 15] [ 4] [0320] +14:58:07 [ 18] [ 4] [6011] +14:58:07 [ 22] [ 3] [900] +14:58:07 [ 25] [ 2] [02] +14:58:07 [ 28] [ 9] [D00002000] +14:58:07 [ 32] [ 6] [621354] +14:58:07 [ 35] [ 37] [6688990104808306=43051231830619200000] +14:58:07 [ 37] [ 12] [507905200896] +14:58:07 [ 41] [ 8] [07001700] +14:58:07 [ 42] [ 15] [NATIVE ] +14:58:07 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:58:07 [ 49] [ 3] [418] +14:58:07 [ 52] [ 16] [A90DD9758FAB38B7] +14:58:07 ============================================================================ +14:58:07 + + +waiting on router queue for slot.... +14:58:07 Sending to : +14:58:07 ============================================================================ +14:58:07 ============================================================================ +14:58:07 Slot Id : <370> +14:58:07 Transaction Type : REQUEST +14:58:07 Received From : +14:58:07 ============================================================================ +14:58:07 FNo. Len. Field Value +14:58:07 ============================================================================ +14:58:07 [ 1] [ 4] [0200] +14:58:07 [ 2] [ 16] [6688990104808306] +14:58:07 [ 3] [ 6] [011000] +14:58:07 [ 4] [ 12] [000010000000] +14:58:07 [ 7] [ 10] [0320145802] +14:58:07 [ 11] [ 6] [777127] +14:58:07 [ 12] [ 6] [145802] +14:58:07 [ 13] [ 4] [0320] +14:58:07 [ 15] [ 4] [0320] +14:58:07 [ 18] [ 4] [6011] +14:58:07 [ 22] [ 3] [900] +14:58:07 [ 25] [ 2] [02] +14:58:07 [ 28] [ 9] [D00002000] +14:58:07 [ 32] [ 6] [621354] +14:58:07 [ 35] [ 37] [6688990104808306=43051231830619200000] +14:58:07 [ 37] [ 12] [507905200896] +14:58:07 [ 41] [ 8] [07001700] +14:58:07 [ 42] [ 15] [NATIVE ] +14:58:07 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +14:58:07 [ 49] [ 3] [418] +14:58:07 [ 52] [ 16] [B78B10DF7487BBB0] +14:58:07 ============================================================================ +14:58:07 + + +waiting on router queue for slot.... +14:58:07 Sending to : <4> +14:58:07 ============================================================================ +14:58:08 ============================================================================ +14:58:08 Slot Id : <370> +14:58:08 Transaction Type : RESPONSE +14:58:08 Received From : +14:58:08 ============================================================================ +14:58:08 FNo. Len. Field Value +14:58:08 ============================================================================ +14:58:08 [ 1] [ 4] [0210] +14:58:08 [ 2] [ 16] [6688990104808306] +14:58:08 [ 3] [ 6] [011000] +14:58:08 [ 4] [ 12] [000010000000] +14:58:08 [ 11] [ 6] [777127] +14:58:08 [ 12] [ 6] [145802] +14:58:08 [ 15] [ 4] [0320] +14:58:08 [ 18] [ 4] [6011] +14:58:08 [ 32] [ 6] [621354] +14:58:08 [ 35] [ 37] [6688990104808306=43051231830619200000] +14:58:08 [ 37] [ 12] [507905200896] +14:58:08 [ 38] [ 6] [352626] +14:58:08 [ 39] [ 2] [00] +14:58:08 [ 41] [ 8] [07001700] +14:58:08 [ 49] [ 3] [418] +14:58:08 [ 54] [ 20] [1002418C000094942477] +14:58:08 ============================================================================ +14:58:08 Sending to : +14:58:08 ============================================================================ +14:58:08 + + +waiting on router queue for slot.... +14:58:09 ============================================================================ +14:58:09 Slot Id : <370> +14:58:09 Transaction Type : RESPONSE +14:58:09 Received From : +14:58:09 ============================================================================ +14:58:09 FNo. Len. Field Value +14:58:09 ============================================================================ +14:58:09 [ 1] [ 4] [0210] +14:58:09 [ 2] [ 16] [6688990104808306] +14:58:09 [ 3] [ 6] [011000] +14:58:09 [ 4] [ 12] [000010000000] +14:58:09 [ 11] [ 6] [777127] +14:58:09 [ 12] [ 6] [145802] +14:58:09 [ 15] [ 4] [0320] +14:58:09 [ 18] [ 4] [6011] +14:58:09 [ 32] [ 6] [621354] +14:58:09 [ 35] [ 37] [6688990104808306=43051231830619200000] +14:58:09 [ 37] [ 12] [507905200896] +14:58:09 [ 38] [ 6] [352626] +14:58:09 [ 39] [ 2] [00] +14:58:09 [ 41] [ 8] [07001700] +14:58:09 [ 49] [ 3] [418] +14:58:09 [ 54] [ 20] [1002418C000094942477] +14:58:09 ============================================================================ +14:58:09 Calculate Source COMM Id = 0 +14:58:09 ============================================================================ +14:58:09 + + +waiting on router queue for slot.... +14:58:10 ============================================================================ +14:58:10 Slot Id : <358> +14:58:10 Transaction Type : REQUEST +14:58:10 Received From : +14:58:10 ============================================================================ +14:58:10 FNo. Len. Field Value +14:58:10 ============================================================================ +14:58:10 [ 1] [ 4] [0200] +14:58:10 [ 2] [ 16] [6213541000208812] +14:58:10 [ 3] [ 6] [010000] +14:58:10 [ 4] [ 12] [000070000000] +14:58:10 [ 7] [ 10] [0320145601] +14:58:10 [ 11] [ 6] [949274] +14:58:10 [ 12] [ 6] [145601] +14:58:10 [ 13] [ 4] [0320] +14:58:10 [ 15] [ 4] [0320] +14:58:10 [ 18] [ 4] [6011] +14:58:10 [ 19] [ 3] [418] +14:58:10 [ 22] [ 3] [021] +14:58:10 [ 25] [ 2] [01] +14:58:10 [ 28] [ 9] [D00002000] +14:58:10 [ 32] [ 6] [668899] +14:58:10 [ 35] [ 32] [6213541000208812=491212010881876] +14:58:10 [ 37] [ 12] [507901416645] +14:58:10 [ 41] [ 8] [03011002] +14:58:10 [ 42] [ 15] [APT ] +14:58:10 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +14:58:10 [ 49] [ 3] [418] +14:58:10 [ 52] [ 16] [41EF84560A662F67] +14:58:10 ============================================================================ +14:58:10 + + +waiting on router queue for slot.... +14:58:10 Sending to : +14:58:10 ============================================================================ +14:58:10 Sending to : +14:58:10 ============================================================================ +14:58:11 ============================================================================ +14:58:11 Slot Id : <358> +14:58:11 Transaction Type : REQUEST +14:58:11 Received From : +14:58:11 ============================================================================ +14:58:11 FNo. Len. Field Value +14:58:11 ============================================================================ +14:58:11 [ 1] [ 4] [0200] +14:58:11 [ 2] [ 16] [6213541000208812] +14:58:11 [ 3] [ 6] [010000] +14:58:11 [ 4] [ 12] [000070000000] +14:58:11 [ 7] [ 10] [0320145601] +14:58:11 [ 11] [ 6] [949274] +14:58:11 [ 12] [ 6] [145601] +14:58:11 [ 13] [ 4] [0320] +14:58:11 [ 15] [ 4] [0320] +14:58:11 [ 18] [ 4] [6011] +14:58:11 [ 19] [ 3] [418] +14:58:11 [ 22] [ 3] [021] +14:58:11 [ 25] [ 2] [01] +14:58:11 [ 28] [ 9] [D00002000] +14:58:11 [ 32] [ 6] [668899] +14:58:11 [ 35] [ 32] [6213541000208812=491212010881876] +14:58:11 [ 37] [ 12] [507901416645] +14:58:11 [ 41] [ 8] [03011002] +14:58:11 [ 42] [ 15] [APT ] +14:58:11 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +14:58:11 [ 49] [ 3] [418] +14:58:11 [ 52] [ 16] [41EF84560A662F67] +14:58:11 ============================================================================ +14:58:11 + + +waiting on router queue for slot.... +14:58:11 Sending to : +14:58:11 ============================================================================ +14:58:11 ============================================================================ +14:58:11 Slot Id : <358> +14:58:11 Transaction Type : REQUEST +14:58:11 Received From : +14:58:11 ============================================================================ +14:58:11 FNo. Len. Field Value +14:58:11 ============================================================================ +14:58:11 [ 1] [ 4] [0200] +14:58:11 [ 2] [ 16] [6213541000208812] +14:58:11 [ 3] [ 6] [010000] +14:58:11 [ 4] [ 12] [000070000000] +14:58:11 [ 7] [ 10] [0320145601] +14:58:11 [ 11] [ 6] [949274] +14:58:11 [ 12] [ 6] [145601] +14:58:11 [ 13] [ 4] [0320] +14:58:11 [ 15] [ 4] [0320] +14:58:11 [ 18] [ 4] [6011] +14:58:11 [ 19] [ 3] [418] +14:58:11 [ 22] [ 3] [021] +14:58:11 [ 25] [ 2] [01] +14:58:11 [ 28] [ 9] [D00002000] +14:58:11 [ 32] [ 6] [668899] +14:58:11 [ 35] [ 32] [6213541000208812=491212010881876] +14:58:11 [ 37] [ 12] [507901416645] +14:58:11 [ 41] [ 8] [03011002] +14:58:11 [ 42] [ 15] [APT ] +14:58:11 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +14:58:11 [ 49] [ 3] [418] +14:58:11 [ 52] [ 16] [57D0954F1F3FB3F7] +14:58:11 ============================================================================ +14:58:11 + + +waiting on router queue for slot.... +14:58:11 Sending to : <0> +14:58:11 ============================================================================ +14:58:12 ============================================================================ +14:58:12 Slot Id : <358> +14:58:12 Transaction Type : RESPONSE +14:58:12 Received From : +14:58:12 ============================================================================ +14:58:12 FNo. Len. Field Value +14:58:12 ============================================================================ +14:58:12 [ 1] [ 4] [0210] +14:58:12 [ 2] [ 16] [6213541000208812] +14:58:12 [ 3] [ 6] [010000] +14:58:12 [ 4] [ 12] [000070000000] +14:58:12 [ 7] [ 10] [0320145601] +14:58:12 [ 11] [ 6] [949274] +14:58:12 [ 12] [ 6] [145601] +14:58:12 [ 13] [ 4] [0320] +14:58:12 [ 15] [ 4] [0320] +14:58:12 [ 18] [ 4] [6011] +14:58:12 [ 19] [ 3] [418] +14:58:12 [ 32] [ 6] [668899] +14:58:12 [ 35] [ 32] [6213541000208812=491212010881876] +14:58:12 [ 37] [ 12] [507901416645] +14:58:12 [ 38] [ 6] [573298] +14:58:12 [ 39] [ 2] [00] +14:58:12 [ 41] [ 8] [03011002] +14:58:12 [ 49] [ 3] [418] +14:58:12 [ 54] [ 40] [0001418C0012359819530002418C001235981953] +14:58:12 ============================================================================ +14:58:12 Sending to : +14:58:12 ============================================================================ +14:58:12 + + +waiting on router queue for slot.... +14:58:13 ============================================================================ +14:58:13 Slot Id : <369> +14:58:13 Transaction Type : REQUEST +14:58:13 Received From : +14:58:13 ============================================================================ +14:58:13 FNo. Len. Field Value +14:58:13 ============================================================================ +14:58:13 [ 1] [ 4] [0200] +14:58:13 [ 2] [ 16] [6688990040142034] +14:58:13 [ 3] [ 6] [010000] +14:58:13 [ 4] [ 12] [000100000000] +14:58:13 [ 7] [ 10] [0320075720] +14:58:13 [ 11] [ 6] [269886] +14:58:13 [ 12] [ 6] [145720] +14:58:13 [ 13] [ 4] [0320] +14:58:13 [ 14] [ 4] [9804] +14:58:13 [ 15] [ 4] [0320] +14:58:13 [ 18] [ 4] [6011] +14:58:13 [ 19] [ 3] [418] +14:58:13 [ 22] [ 3] [021] +14:58:13 [ 25] [ 2] [01] +14:58:13 [ 28] [ 9] [D00002000] +14:58:13 [ 32] [ 6] [180893] +14:58:13 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:58:13 [ 37] [ 12] [507907269886] +14:58:13 [ 41] [ 8] [0321LNTV] +14:58:13 [ 42] [ 15] [999999 ] +14:58:13 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:58:13 [ 49] [ 3] [418] +14:58:13 [ 52] [ 16] [F59506610A119122] +14:58:13 ============================================================================ +14:58:13 + + +waiting on router queue for slot.... +14:58:13 Sending to : +14:58:13 ============================================================================ +14:58:13 Sending to : +14:58:13 ============================================================================ +14:58:13 ============================================================================ +14:58:13 Slot Id : <358> +14:58:13 Transaction Type : RESPONSE +14:58:13 Received From : +14:58:13 ============================================================================ +14:58:13 FNo. Len. Field Value +14:58:13 ============================================================================ +14:58:13 [ 1] [ 4] [0210] +14:58:13 [ 2] [ 16] [6213541000208812] +14:58:13 [ 3] [ 6] [010000] +14:58:13 [ 4] [ 12] [000070000000] +14:58:13 [ 7] [ 10] [0320145601] +14:58:13 [ 11] [ 6] [949274] +14:58:13 [ 12] [ 6] [145601] +14:58:13 [ 13] [ 4] [0320] +14:58:13 [ 15] [ 4] [0320] +14:58:13 [ 18] [ 4] [6011] +14:58:13 [ 19] [ 3] [418] +14:58:13 [ 32] [ 6] [668899] +14:58:13 [ 35] [ 32] [6213541000208812=491212010881876] +14:58:13 [ 37] [ 12] [507901416645] +14:58:13 [ 38] [ 6] [573298] +14:58:13 [ 39] [ 2] [00] +14:58:13 [ 41] [ 8] [03011002] +14:58:13 [ 49] [ 3] [418] +14:58:13 [ 54] [ 40] [0001418C0012359819530002418C001235981953] +14:58:13 ============================================================================ +14:58:13 Calculate Source COMM Id = 4 +14:58:13 ============================================================================ +14:58:13 + + +waiting on router queue for slot.... +14:58:13 ============================================================================ +14:58:13 Slot Id : <369> +14:58:13 Transaction Type : REQUEST +14:58:13 Received From : +14:58:13 ============================================================================ +14:58:13 FNo. Len. Field Value +14:58:13 ============================================================================ +14:58:13 [ 1] [ 4] [0200] +14:58:13 [ 2] [ 16] [6688990040142034] +14:58:13 [ 3] [ 6] [010000] +14:58:13 [ 4] [ 12] [000100000000] +14:58:13 [ 7] [ 10] [0320075720] +14:58:13 [ 11] [ 6] [269886] +14:58:13 [ 12] [ 6] [145720] +14:58:13 [ 13] [ 4] [0320] +14:58:13 [ 14] [ 4] [9804] +14:58:13 [ 15] [ 4] [0320] +14:58:13 [ 18] [ 4] [6011] +14:58:13 [ 19] [ 3] [418] +14:58:13 [ 22] [ 3] [021] +14:58:13 [ 25] [ 2] [01] +14:58:13 [ 28] [ 9] [D00002000] +14:58:13 [ 32] [ 6] [180893] +14:58:13 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:58:13 [ 37] [ 12] [507907269886] +14:58:13 [ 41] [ 8] [0321LNTV] +14:58:13 [ 42] [ 15] [999999 ] +14:58:13 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:58:13 [ 49] [ 3] [418] +14:58:13 [ 52] [ 16] [F59506610A119122] +14:58:13 ============================================================================ +14:58:13 + + +waiting on router queue for slot.... +14:58:13 Sending to : +14:58:13 ============================================================================ +14:58:13 ============================================================================ +14:58:13 Slot Id : <369> +14:58:13 Transaction Type : REQUEST +14:58:13 Received From : +14:58:13 ============================================================================ +14:58:13 FNo. Len. Field Value +14:58:13 ============================================================================ +14:58:13 [ 1] [ 4] [0200] +14:58:13 [ 2] [ 16] [6688990040142034] +14:58:13 [ 3] [ 6] [010000] +14:58:13 [ 4] [ 12] [000100000000] +14:58:13 [ 7] [ 10] [0320075720] +14:58:13 [ 11] [ 6] [269886] +14:58:13 [ 12] [ 6] [145720] +14:58:13 [ 13] [ 4] [0320] +14:58:13 [ 14] [ 4] [9804] +14:58:13 [ 15] [ 4] [0320] +14:58:13 [ 18] [ 4] [6011] +14:58:13 [ 19] [ 3] [418] +14:58:13 [ 22] [ 3] [021] +14:58:13 [ 25] [ 2] [01] +14:58:13 [ 28] [ 9] [D00002000] +14:58:13 [ 32] [ 6] [180893] +14:58:13 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:58:13 [ 37] [ 12] [507907269886] +14:58:13 [ 41] [ 8] [0321LNTV] +14:58:13 [ 42] [ 15] [999999 ] +14:58:13 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +14:58:13 [ 49] [ 3] [418] +14:58:13 [ 52] [ 16] [78868CB537FF0CC9] +14:58:13 ============================================================================ +14:58:13 + + +waiting on router queue for slot.... +14:58:13 Sending to : <0> +14:58:13 ============================================================================ +14:58:13 ============================================================================ +14:58:13 Slot Id : <369> +14:58:13 Transaction Type : RESPONSE +14:58:13 Received From : +14:58:13 ============================================================================ +14:58:13 FNo. Len. Field Value +14:58:13 ============================================================================ +14:58:13 [ 1] [ 4] [0210] +14:58:13 [ 2] [ 16] [6688990040142034] +14:58:13 [ 3] [ 6] [010000] +14:58:13 [ 4] [ 12] [000100000000] +14:58:13 [ 7] [ 10] [0320075720] +14:58:13 [ 11] [ 6] [269886] +14:58:13 [ 12] [ 6] [145720] +14:58:13 [ 13] [ 4] [0320] +14:58:13 [ 15] [ 4] [0320] +14:58:13 [ 18] [ 4] [6011] +14:58:13 [ 19] [ 3] [418] +14:58:13 [ 22] [ 3] [021] +14:58:13 [ 32] [ 6] [180893] +14:58:13 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:58:13 [ 37] [ 12] [507907269886] +14:58:13 [ 39] [ 2] [14] +14:58:13 [ 41] [ 8] [0321LNTV] +14:58:13 [ 49] [ 3] [418] +14:58:13 ============================================================================ +14:58:13 Sending to : +14:58:13 ============================================================================ +14:58:13 + + +waiting on router queue for slot.... +14:58:14 ============================================================================ +14:58:14 Slot Id : <379> +14:58:14 Transaction Type : REQUEST +14:58:14 Received From : +14:58:14 ============================================================================ +14:58:14 FNo. Len. Field Value +14:58:14 ============================================================================ +14:58:14 [ 1] [ 4] [0800] +14:58:14 [ 7] [ 10] [0320075721] +14:58:14 [ 11] [ 6] [156895] +14:58:14 [ 70] [ 3] [301] +14:58:14 ============================================================================ +14:58:14 + + +waiting on router queue for slot.... +14:58:14 Sending to : +14:58:14 ============================================================================ +14:58:14 ============================================================================ +14:58:14 Slot Id : <379> +14:58:14 Transaction Type : RESPONSE +14:58:14 Received From : +14:58:14 ============================================================================ +14:58:14 FNo. Len. Field Value +14:58:14 ============================================================================ +14:58:14 [ 1] [ 4] [0810] +14:58:14 [ 7] [ 10] [0320075721] +14:58:14 [ 11] [ 6] [156895] +14:58:14 [ 39] [ 2] [00] +14:58:14 [ 70] [ 3] [301] +14:58:14 ============================================================================ +14:58:14 Calculate Source COMM Id = 2 +14:58:14 ============================================================================ +14:58:14 + + +waiting on router queue for slot.... +14:58:14 ============================================================================ +14:58:14 Slot Id : <369> +14:58:14 Transaction Type : RESPONSE +14:58:14 Received From : +14:58:14 ============================================================================ +14:58:14 FNo. Len. Field Value +14:58:14 ============================================================================ +14:58:14 [ 1] [ 4] [0210] +14:58:14 [ 2] [ 16] [6688990040142034] +14:58:14 [ 3] [ 6] [010000] +14:58:14 [ 4] [ 12] [000100000000] +14:58:14 [ 7] [ 10] [0320075720] +14:58:14 [ 11] [ 6] [269886] +14:58:14 [ 12] [ 6] [145720] +14:58:14 [ 13] [ 4] [0320] +14:58:14 [ 15] [ 4] [0320] +14:58:14 [ 18] [ 4] [6011] +14:58:14 [ 19] [ 3] [418] +14:58:14 [ 22] [ 3] [021] +14:58:14 [ 32] [ 6] [180893] +14:58:14 [ 35] [ 37] [6688990040142034=98041261089839000000] +14:58:14 [ 37] [ 12] [507907269886] +14:58:14 [ 39] [ 2] [14] +14:58:14 [ 41] [ 8] [0321LNTV] +14:58:14 [ 49] [ 3] [418] +14:58:14 ============================================================================ +14:58:14 Calculate Source COMM Id = 2 +14:58:14 ============================================================================ +14:58:14 + + +waiting on router queue for slot.... +14:58:16 ============================================================================ +14:58:16 Slot Id : <360> +14:58:16 Transaction Type : REQUEST +14:58:16 Received From : +14:58:16 ============================================================================ +14:58:16 FNo. Len. Field Value +14:58:16 ============================================================================ +14:58:16 [ 1] [ 4] [0200] +14:58:16 [ 2] [ 16] [6688990106047408] +14:58:16 [ 3] [ 6] [010000] +14:58:16 [ 4] [ 12] [000020000000] +14:58:16 [ 7] [ 10] [0320145811] +14:58:16 [ 11] [ 6] [777176] +14:58:16 [ 12] [ 6] [145811] +14:58:16 [ 13] [ 4] [0320] +14:58:16 [ 15] [ 4] [0320] +14:58:16 [ 18] [ 4] [6011] +14:58:16 [ 22] [ 3] [900] +14:58:16 [ 25] [ 2] [02] +14:58:16 [ 28] [ 9] [D00002000] +14:58:16 [ 32] [ 6] [621354] +14:58:16 [ 35] [ 37] [6688990106047408=43111231740833600000] +14:58:16 [ 37] [ 12] [507903499517] +14:58:16 [ 41] [ 8] [06002200] +14:58:16 [ 42] [ 15] [NATIVE ] +14:58:16 [ 43] [ 40] [Beng Market Beng LAO] +14:58:16 [ 49] [ 3] [418] +14:58:16 [ 52] [ 16] [E2385486EC4C0F2B] +14:58:16 ============================================================================ +14:58:16 + + +waiting on router queue for slot.... +14:58:16 Sending to : +14:58:16 ============================================================================ +14:58:16 Sending to : +14:58:16 ============================================================================ +14:58:16 ============================================================================ +14:58:16 Slot Id : <360> +14:58:16 Transaction Type : REQUEST +14:58:16 Received From : +14:58:16 ============================================================================ +14:58:16 FNo. Len. Field Value +14:58:16 ============================================================================ +14:58:16 [ 1] [ 4] [0200] +14:58:16 [ 2] [ 16] [6688990106047408] +14:58:16 [ 3] [ 6] [010000] +14:58:16 [ 4] [ 12] [000020000000] +14:58:16 [ 7] [ 10] [0320145811] +14:58:16 [ 11] [ 6] [777176] +14:58:16 [ 12] [ 6] [145811] +14:58:16 [ 13] [ 4] [0320] +14:58:16 [ 15] [ 4] [0320] +14:58:16 [ 18] [ 4] [6011] +14:58:16 [ 22] [ 3] [900] +14:58:16 [ 25] [ 2] [02] +14:58:16 [ 28] [ 9] [D00002000] +14:58:16 [ 32] [ 6] [621354] +14:58:16 [ 35] [ 37] [6688990106047408=43111231740833600000] +14:58:16 [ 37] [ 12] [507903499517] +14:58:16 [ 41] [ 8] [06002200] +14:58:16 [ 42] [ 15] [NATIVE ] +14:58:16 [ 43] [ 40] [Beng Market Beng LAO] +14:58:16 [ 49] [ 3] [418] +14:58:16 [ 52] [ 16] [E2385486EC4C0F2B] +14:58:16 ============================================================================ +14:58:16 + + +waiting on router queue for slot.... +14:58:16 Sending to : +14:58:16 ============================================================================ +14:58:16 ============================================================================ +14:58:16 Slot Id : <360> +14:58:16 Transaction Type : REQUEST +14:58:16 Received From : +14:58:16 ============================================================================ +14:58:16 FNo. Len. Field Value +14:58:16 ============================================================================ +14:58:16 [ 1] [ 4] [0200] +14:58:16 [ 2] [ 16] [6688990106047408] +14:58:16 [ 3] [ 6] [010000] +14:58:16 [ 4] [ 12] [000020000000] +14:58:16 [ 7] [ 10] [0320145811] +14:58:16 [ 11] [ 6] [777176] +14:58:16 [ 12] [ 6] [145811] +14:58:16 [ 13] [ 4] [0320] +14:58:16 [ 15] [ 4] [0320] +14:58:16 [ 18] [ 4] [6011] +14:58:16 [ 22] [ 3] [900] +14:58:16 [ 25] [ 2] [02] +14:58:16 [ 28] [ 9] [D00002000] +14:58:16 [ 32] [ 6] [621354] +14:58:16 [ 35] [ 37] [6688990106047408=43111231740833600000] +14:58:16 [ 37] [ 12] [507903499517] +14:58:16 [ 41] [ 8] [06002200] +14:58:16 [ 42] [ 15] [NATIVE ] +14:58:16 [ 43] [ 40] [Beng Market Beng LAO] +14:58:16 [ 49] [ 3] [418] +14:58:16 [ 52] [ 16] [73C80F4804BC337D] +14:58:16 ============================================================================ +14:58:16 + + +waiting on router queue for slot.... +14:58:16 Sending to : <4> +14:58:16 ============================================================================ +14:58:17 ============================================================================ +14:58:17 Slot Id : <360> +14:58:17 Transaction Type : RESPONSE +14:58:17 Received From : +14:58:17 ============================================================================ +14:58:17 FNo. Len. Field Value +14:58:17 ============================================================================ +14:58:17 [ 1] [ 4] [0210] +14:58:17 [ 2] [ 16] [6688990106047408] +14:58:17 [ 3] [ 6] [010000] +14:58:17 [ 4] [ 12] [000020000000] +14:58:17 [ 11] [ 6] [777176] +14:58:17 [ 12] [ 6] [145811] +14:58:17 [ 15] [ 4] [0320] +14:58:17 [ 18] [ 4] [6011] +14:58:17 [ 32] [ 6] [621354] +14:58:17 [ 35] [ 37] [6688990106047408=43111231740833600000] +14:58:17 [ 37] [ 12] [507903499517] +14:58:17 [ 38] [ 6] [016414] +14:58:17 [ 39] [ 2] [00] +14:58:17 [ 41] [ 8] [06002200] +14:58:17 [ 49] [ 3] [418] +14:58:17 [ 54] [ 20] [0002418C000317935520] +14:58:17 ============================================================================ +14:58:17 Sending to : +14:58:17 ============================================================================ +14:58:17 + + +waiting on router queue for slot.... +14:58:18 ============================================================================ +14:58:18 Slot Id : <338> +14:58:18 Transaction Type : REQUEST +14:58:18 Received From : +14:58:18 ============================================================================ +14:58:18 FNo. Len. Field Value +14:58:18 ============================================================================ +14:58:18 [ 1] [ 4] [0200] +14:58:18 [ 2] [ 16] [6688990105970303] +14:58:18 [ 3] [ 6] [012000] +14:58:18 [ 4] [ 12] [000100000000] +14:58:18 [ 7] [ 10] [0320145813] +14:58:18 [ 11] [ 6] [777185] +14:58:18 [ 12] [ 6] [145813] +14:58:18 [ 13] [ 4] [0320] +14:58:18 [ 15] [ 4] [0320] +14:58:18 [ 18] [ 4] [6011] +14:58:18 [ 22] [ 3] [900] +14:58:18 [ 25] [ 2] [02] +14:58:18 [ 28] [ 9] [D00002000] +14:58:18 [ 32] [ 6] [621354] +14:58:18 [ 35] [ 37] [6688990105970303=43111231030344900000] +14:58:18 [ 37] [ 12] [507904090209] +14:58:18 [ 41] [ 8] [08000600] +14:58:18 [ 42] [ 15] [NATIVE ] +14:58:18 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +14:58:18 [ 49] [ 3] [418] +14:58:18 [ 52] [ 16] [40078C2755853322] +14:58:18 ============================================================================ +14:58:18 + + +waiting on router queue for slot.... +14:58:18 Sending to : +14:58:18 ============================================================================ +14:58:18 Sending to : +14:58:18 ============================================================================ +14:58:18 ============================================================================ +14:58:18 Slot Id : <338> +14:58:18 Transaction Type : REQUEST +14:58:18 Received From : +14:58:18 ============================================================================ +14:58:18 FNo. Len. Field Value +14:58:18 ============================================================================ +14:58:18 [ 1] [ 4] [0200] +14:58:18 [ 2] [ 16] [6688990105970303] +14:58:18 [ 3] [ 6] [012000] +14:58:18 [ 4] [ 12] [000100000000] +14:58:18 [ 7] [ 10] [0320145813] +14:58:18 [ 11] [ 6] [777185] +14:58:18 [ 12] [ 6] [145813] +14:58:18 [ 13] [ 4] [0320] +14:58:18 [ 15] [ 4] [0320] +14:58:18 [ 18] [ 4] [6011] +14:58:18 [ 22] [ 3] [900] +14:58:18 [ 25] [ 2] [02] +14:58:18 [ 28] [ 9] [D00002000] +14:58:18 [ 32] [ 6] [621354] +14:58:18 [ 35] [ 37] [6688990105970303=43111231030344900000] +14:58:18 [ 37] [ 12] [507904090209] +14:58:18 [ 41] [ 8] [08000600] +14:58:18 [ 42] [ 15] [NATIVE ] +14:58:18 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +14:58:18 [ 49] [ 3] [418] +14:58:18 [ 52] [ 16] [40078C2755853322] +14:58:18 ============================================================================ +14:58:18 + + +waiting on router queue for slot.... +14:58:18 Sending to : +14:58:18 ============================================================================ +14:58:18 ============================================================================ +14:58:18 Slot Id : <338> +14:58:18 Transaction Type : REQUEST +14:58:18 Received From : +14:58:18 ============================================================================ +14:58:18 FNo. Len. Field Value +14:58:18 ============================================================================ +14:58:18 [ 1] [ 4] [0200] +14:58:18 [ 2] [ 16] [6688990105970303] +14:58:18 [ 3] [ 6] [012000] +14:58:18 [ 4] [ 12] [000100000000] +14:58:18 [ 7] [ 10] [0320145813] +14:58:18 [ 11] [ 6] [777185] +14:58:18 [ 12] [ 6] [145813] +14:58:18 [ 13] [ 4] [0320] +14:58:18 [ 15] [ 4] [0320] +14:58:18 [ 18] [ 4] [6011] +14:58:18 [ 22] [ 3] [900] +14:58:18 [ 25] [ 2] [02] +14:58:18 [ 28] [ 9] [D00002000] +14:58:18 [ 32] [ 6] [621354] +14:58:18 [ 35] [ 37] [6688990105970303=43111231030344900000] +14:58:18 [ 37] [ 12] [507904090209] +14:58:18 [ 41] [ 8] [08000600] +14:58:18 [ 42] [ 15] [NATIVE ] +14:58:18 [ 43] [ 40] [Attapeu Branch02 Samakyxay LAO] +14:58:18 [ 49] [ 3] [418] +14:58:18 [ 52] [ 16] [5EF532DC3B4CE937] +14:58:18 ============================================================================ +14:58:18 + + +waiting on router queue for slot.... +14:58:18 Sending to : <4> +14:58:18 ============================================================================ +14:58:19 ============================================================================ +14:58:19 Slot Id : <360> +14:58:19 Transaction Type : RESPONSE +14:58:19 Received From : +14:58:19 ============================================================================ +14:58:19 FNo. Len. Field Value +14:58:19 ============================================================================ +14:58:19 [ 1] [ 4] [0210] +14:58:19 [ 2] [ 16] [6688990106047408] +14:58:19 [ 3] [ 6] [010000] +14:58:19 [ 4] [ 12] [000020000000] +14:58:19 [ 11] [ 6] [777176] +14:58:19 [ 12] [ 6] [145811] +14:58:19 [ 15] [ 4] [0320] +14:58:19 [ 18] [ 4] [6011] +14:58:19 [ 32] [ 6] [621354] +14:58:19 [ 35] [ 37] [6688990106047408=43111231740833600000] +14:58:19 [ 37] [ 12] [507903499517] +14:58:19 [ 38] [ 6] [016414] +14:58:19 [ 39] [ 2] [00] +14:58:19 [ 41] [ 8] [06002200] +14:58:19 [ 49] [ 3] [418] +14:58:19 [ 54] [ 20] [0002418C000317935520] +14:58:19 ============================================================================ +14:58:19 Calculate Source COMM Id = 0 +14:58:19 ============================================================================ +14:58:19 + + +waiting on router queue for slot.... +14:58:19 ============================================================================ +14:58:19 Slot Id : <338> +14:58:19 Transaction Type : RESPONSE +14:58:19 Received From : +14:58:19 ============================================================================ +14:58:19 FNo. Len. Field Value +14:58:19 ============================================================================ +14:58:19 [ 1] [ 4] [0210] +14:58:19 [ 2] [ 16] [6688990105970303] +14:58:19 [ 3] [ 6] [012000] +14:58:19 [ 4] [ 12] [000100000000] +14:58:19 [ 11] [ 6] [777185] +14:58:19 [ 12] [ 6] [145813] +14:58:19 [ 15] [ 4] [0320] +14:58:19 [ 18] [ 4] [6011] +14:58:19 [ 32] [ 6] [621354] +14:58:19 [ 35] [ 37] [6688990105970303=43111231030344900000] +14:58:19 [ 37] [ 12] [507904090209] +14:58:19 [ 38] [ 6] [847572] +14:58:19 [ 39] [ 2] [00] +14:58:19 [ 41] [ 8] [08000600] +14:58:19 [ 49] [ 3] [418] +14:58:19 [ 54] [ 20] [2002418C000015572209] +14:58:19 ============================================================================ +14:58:19 Sending to : +14:58:19 ============================================================================ +14:58:19 + + +waiting on router queue for slot.... +14:58:19 ============================================================================ +14:58:19 Slot Id : <354> +14:58:19 Transaction Type : REQUEST +14:58:19 Received From : +14:58:19 ============================================================================ +14:58:19 FNo. Len. Field Value +14:58:19 ============================================================================ +14:58:19 [ 1] [ 4] [0200] +14:58:19 [ 2] [ 16] [6213545000000608] +14:58:19 [ 3] [ 6] [011000] +14:58:19 [ 4] [ 12] [000020000000] +14:58:19 [ 7] [ 10] [0320145840] +14:58:19 [ 11] [ 6] [207602] +14:58:19 [ 12] [ 6] [025650] +14:58:19 [ 13] [ 4] [0320] +14:58:19 [ 14] [ 4] [4912] +14:58:19 [ 15] [ 4] [0320] +14:58:19 [ 18] [ 4] [6011] +14:58:19 [ 19] [ 3] [418] +14:58:19 [ 22] [ 3] [021] +14:58:19 [ 25] [ 2] [01] +14:58:19 [ 28] [ 9] [D00002000] +14:58:19 [ 32] [ 6] [198901] +14:58:19 [ 35] [ 32] [6213545000000608=491212010060365] +14:58:19 [ 37] [ 12] [507914207602] +14:58:19 [ 41] [ 8] [01529031] +14:58:19 [ 42] [ 15] [000000041529031] +14:58:19 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:58:19 [ 49] [ 3] [418] +14:58:19 [ 52] [ 16] [2649391E89372AD3] +14:58:19 ============================================================================ +14:58:19 + + +waiting on router queue for slot.... +14:58:19 Sending to : +14:58:19 ============================================================================ +14:58:19 Sending to : +14:58:19 ============================================================================ +14:58:20 ============================================================================ +14:58:20 Slot Id : <354> +14:58:20 Transaction Type : REQUEST +14:58:20 Received From : +14:58:20 ============================================================================ +14:58:20 FNo. Len. Field Value +14:58:20 ============================================================================ +14:58:20 [ 1] [ 4] [0200] +14:58:20 [ 2] [ 16] [6213545000000608] +14:58:20 [ 3] [ 6] [011000] +14:58:20 [ 4] [ 12] [000020000000] +14:58:20 [ 7] [ 10] [0320145840] +14:58:20 [ 11] [ 6] [207602] +14:58:20 [ 12] [ 6] [025650] +14:58:20 [ 13] [ 4] [0320] +14:58:20 [ 14] [ 4] [4912] +14:58:20 [ 15] [ 4] [0320] +14:58:20 [ 18] [ 4] [6011] +14:58:20 [ 19] [ 3] [418] +14:58:20 [ 22] [ 3] [021] +14:58:20 [ 25] [ 2] [01] +14:58:20 [ 28] [ 9] [D00002000] +14:58:20 [ 32] [ 6] [198901] +14:58:20 [ 35] [ 32] [6213545000000608=491212010060365] +14:58:20 [ 37] [ 12] [507914207602] +14:58:20 [ 41] [ 8] [01529031] +14:58:20 [ 42] [ 15] [000000041529031] +14:58:20 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:58:20 [ 49] [ 3] [418] +14:58:20 [ 52] [ 16] [2649391E89372AD3] +14:58:20 ============================================================================ +14:58:20 + + +waiting on router queue for slot.... +14:58:20 Sending to : +14:58:20 ============================================================================ +14:58:20 ============================================================================ +14:58:20 Slot Id : <354> +14:58:20 Transaction Type : REQUEST +14:58:20 Received From : +14:58:20 ============================================================================ +14:58:20 FNo. Len. Field Value +14:58:20 ============================================================================ +14:58:20 [ 1] [ 4] [0200] +14:58:20 [ 2] [ 16] [6213545000000608] +14:58:20 [ 3] [ 6] [011000] +14:58:20 [ 4] [ 12] [000020000000] +14:58:20 [ 7] [ 10] [0320145840] +14:58:20 [ 11] [ 6] [207602] +14:58:20 [ 12] [ 6] [025650] +14:58:20 [ 13] [ 4] [0320] +14:58:20 [ 14] [ 4] [4912] +14:58:20 [ 15] [ 4] [0320] +14:58:20 [ 18] [ 4] [6011] +14:58:20 [ 19] [ 3] [418] +14:58:20 [ 22] [ 3] [021] +14:58:20 [ 25] [ 2] [01] +14:58:20 [ 28] [ 9] [D00002000] +14:58:20 [ 32] [ 6] [198901] +14:58:20 [ 35] [ 32] [6213545000000608=491212010060365] +14:58:20 [ 37] [ 12] [507914207602] +14:58:20 [ 41] [ 8] [01529031] +14:58:20 [ 42] [ 15] [000000041529031] +14:58:20 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:58:20 [ 49] [ 3] [418] +14:58:20 [ 52] [ 16] [57D8B9FACEA13D84] +14:58:20 ============================================================================ +14:58:20 + + +waiting on router queue for slot.... +14:58:20 Sending to : <0> +14:58:20 ============================================================================ +14:58:20 ============================================================================ +14:58:20 Slot Id : <354> +14:58:20 Transaction Type : RESPONSE +14:58:20 Received From : +14:58:20 ============================================================================ +14:58:20 FNo. Len. Field Value +14:58:20 ============================================================================ +14:58:20 [ 1] [ 4] [0210] +14:58:20 [ 2] [ 16] [6213545000000608] +14:58:20 [ 3] [ 6] [011000] +14:58:20 [ 4] [ 12] [000020000000] +14:58:20 [ 7] [ 10] [0320145840] +14:58:20 [ 11] [ 6] [207602] +14:58:20 [ 12] [ 6] [025650] +14:58:20 [ 13] [ 4] [0320] +14:58:20 [ 15] [ 4] [0320] +14:58:20 [ 18] [ 4] [6011] +14:58:20 [ 19] [ 3] [418] +14:58:20 [ 32] [ 6] [198901] +14:58:20 [ 35] [ 32] [6213545000000608=491212010060365] +14:58:20 [ 37] [ 12] [507914207602] +14:58:20 [ 38] [ 6] [646068] +14:58:20 [ 39] [ 2] [00] +14:58:20 [ 41] [ 8] [01529031] +14:58:20 [ 49] [ 3] [418] +14:58:20 [ 54] [ 40] [1001418C0001115764261002418C000111576426] +14:58:20 ============================================================================ +14:58:20 Sending to : +14:58:20 ============================================================================ +14:58:20 + + +waiting on router queue for slot.... +14:58:21 ============================================================================ +14:58:21 Slot Id : <338> +14:58:21 Transaction Type : RESPONSE +14:58:21 Received From : +14:58:21 ============================================================================ +14:58:21 FNo. Len. Field Value +14:58:21 ============================================================================ +14:58:21 [ 1] [ 4] [0210] +14:58:21 [ 2] [ 16] [6688990105970303] +14:58:21 [ 3] [ 6] [012000] +14:58:21 [ 4] [ 12] [000100000000] +14:58:21 [ 11] [ 6] [777185] +14:58:21 [ 12] [ 6] [145813] +14:58:21 [ 15] [ 4] [0320] +14:58:21 [ 18] [ 4] [6011] +14:58:21 [ 32] [ 6] [621354] +14:58:21 [ 35] [ 37] [6688990105970303=43111231030344900000] +14:58:21 [ 37] [ 12] [507904090209] +14:58:21 [ 38] [ 6] [847572] +14:58:21 [ 39] [ 2] [00] +14:58:21 [ 41] [ 8] [08000600] +14:58:21 [ 49] [ 3] [418] +14:58:21 [ 54] [ 20] [2002418C000015572209] +14:58:21 ============================================================================ +14:58:21 Calculate Source COMM Id = 0 +14:58:21 ============================================================================ +14:58:21 + + +waiting on router queue for slot.... +14:58:22 ============================================================================ +14:58:22 Slot Id : <354> +14:58:22 Transaction Type : RESPONSE +14:58:22 Received From : +14:58:22 ============================================================================ +14:58:22 FNo. Len. Field Value +14:58:22 ============================================================================ +14:58:22 [ 1] [ 4] [0210] +14:58:22 [ 2] [ 16] [6213545000000608] +14:58:22 [ 3] [ 6] [011000] +14:58:22 [ 4] [ 12] [000020000000] +14:58:22 [ 7] [ 10] [0320145840] +14:58:22 [ 11] [ 6] [207602] +14:58:22 [ 12] [ 6] [025650] +14:58:22 [ 13] [ 4] [0320] +14:58:22 [ 15] [ 4] [0320] +14:58:22 [ 18] [ 4] [6011] +14:58:22 [ 19] [ 3] [418] +14:58:22 [ 32] [ 6] [198901] +14:58:22 [ 35] [ 32] [6213545000000608=491212010060365] +14:58:22 [ 37] [ 12] [507914207602] +14:58:22 [ 38] [ 6] [646068] +14:58:22 [ 39] [ 2] [00] +14:58:22 [ 41] [ 8] [01529031] +14:58:22 [ 49] [ 3] [418] +14:58:22 [ 54] [ 40] [1001418C0001115764261002418C000111576426] +14:58:22 ============================================================================ +14:58:22 Calculate Source COMM Id = 5 +14:58:22 ============================================================================ +14:58:22 + + +waiting on router queue for slot.... +14:58:24 ============================================================================ +14:58:24 Slot Id : <396> +14:58:24 Transaction Type : REQUEST +14:58:24 Received From : +14:58:24 ============================================================================ +14:58:24 FNo. Len. Field Value +14:58:24 ============================================================================ +14:58:24 [ 1] [ 4] [0200] +14:58:24 [ 2] [ 16] [6688990103744106] +14:58:24 [ 3] [ 6] [010000] +14:58:24 [ 4] [ 12] [000100000000] +14:58:24 [ 7] [ 10] [0320145819] +14:58:24 [ 11] [ 6] [777211] +14:58:24 [ 12] [ 6] [145819] +14:58:24 [ 13] [ 4] [0320] +14:58:24 [ 15] [ 4] [0320] +14:58:24 [ 18] [ 4] [6011] +14:58:24 [ 22] [ 3] [900] +14:58:24 [ 25] [ 2] [02] +14:58:24 [ 28] [ 9] [D00002000] +14:58:24 [ 32] [ 6] [621354] +14:58:24 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:58:24 [ 37] [ 12] [507903344987] +14:58:24 [ 41] [ 8] [13001400] +14:58:24 [ 42] [ 15] [NATIVE ] +14:58:24 [ 43] [ 40] [Kham Unit Kham LAO] +14:58:24 [ 49] [ 3] [418] +14:58:24 [ 52] [ 16] [8ADBDF1D777B6AFA] +14:58:24 ============================================================================ +14:58:24 + + +waiting on router queue for slot.... +14:58:24 Sending to : +14:58:24 ============================================================================ +14:58:24 Sending to : +14:58:24 ============================================================================ +14:58:24 ============================================================================ +14:58:24 Slot Id : <396> +14:58:24 Transaction Type : REQUEST +14:58:24 Received From : +14:58:24 ============================================================================ +14:58:24 FNo. Len. Field Value +14:58:24 ============================================================================ +14:58:24 [ 1] [ 4] [0200] +14:58:24 [ 2] [ 16] [6688990103744106] +14:58:24 [ 3] [ 6] [010000] +14:58:24 [ 4] [ 12] [000100000000] +14:58:24 [ 7] [ 10] [0320145819] +14:58:24 [ 11] [ 6] [777211] +14:58:24 [ 12] [ 6] [145819] +14:58:24 [ 13] [ 4] [0320] +14:58:24 [ 15] [ 4] [0320] +14:58:24 [ 18] [ 4] [6011] +14:58:24 [ 22] [ 3] [900] +14:58:24 [ 25] [ 2] [02] +14:58:24 [ 28] [ 9] [D00002000] +14:58:24 [ 32] [ 6] [621354] +14:58:24 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:58:24 [ 37] [ 12] [507903344987] +14:58:24 [ 41] [ 8] [13001400] +14:58:24 [ 42] [ 15] [NATIVE ] +14:58:24 [ 43] [ 40] [Kham Unit Kham LAO] +14:58:24 [ 49] [ 3] [418] +14:58:24 [ 52] [ 16] [8ADBDF1D777B6AFA] +14:58:24 ============================================================================ +14:58:24 + + +waiting on router queue for slot.... +14:58:24 Sending to : +14:58:24 ============================================================================ +14:58:24 ============================================================================ +14:58:24 Slot Id : <396> +14:58:24 Transaction Type : REQUEST +14:58:24 Received From : +14:58:24 ============================================================================ +14:58:24 FNo. Len. Field Value +14:58:24 ============================================================================ +14:58:24 [ 1] [ 4] [0200] +14:58:24 [ 2] [ 16] [6688990103744106] +14:58:24 [ 3] [ 6] [010000] +14:58:24 [ 4] [ 12] [000100000000] +14:58:24 [ 7] [ 10] [0320145819] +14:58:24 [ 11] [ 6] [777211] +14:58:24 [ 12] [ 6] [145819] +14:58:24 [ 13] [ 4] [0320] +14:58:24 [ 15] [ 4] [0320] +14:58:24 [ 18] [ 4] [6011] +14:58:24 [ 22] [ 3] [900] +14:58:24 [ 25] [ 2] [02] +14:58:24 [ 28] [ 9] [D00002000] +14:58:24 [ 32] [ 6] [621354] +14:58:24 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:58:24 [ 37] [ 12] [507903344987] +14:58:24 [ 41] [ 8] [13001400] +14:58:24 [ 42] [ 15] [NATIVE ] +14:58:24 [ 43] [ 40] [Kham Unit Kham LAO] +14:58:24 [ 49] [ 3] [418] +14:58:24 [ 52] [ 16] [24E7681222A72DF5] +14:58:24 ============================================================================ +14:58:24 + + +waiting on router queue for slot.... +14:58:24 Sending to : <4> +14:58:24 ============================================================================ +14:58:25 ============================================================================ +14:58:25 Slot Id : <396> +14:58:25 Transaction Type : RESPONSE +14:58:25 Received From : +14:58:25 ============================================================================ +14:58:25 FNo. Len. Field Value +14:58:25 ============================================================================ +14:58:25 [ 1] [ 4] [0210] +14:58:25 [ 2] [ 16] [6688990103744106] +14:58:25 [ 3] [ 6] [010000] +14:58:25 [ 4] [ 12] [000100000000] +14:58:25 [ 11] [ 6] [777211] +14:58:25 [ 12] [ 6] [145819] +14:58:25 [ 15] [ 4] [0320] +14:58:25 [ 18] [ 4] [6011] +14:58:25 [ 32] [ 6] [621354] +14:58:25 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:58:25 [ 37] [ 12] [507903344987] +14:58:25 [ 38] [ 6] [047978] +14:58:25 [ 39] [ 2] [00] +14:58:25 [ 41] [ 8] [13001400] +14:58:25 [ 49] [ 3] [418] +14:58:25 [ 54] [ 20] [0002418C001105604006] +14:58:25 ============================================================================ +14:58:25 Sending to : +14:58:25 ============================================================================ +14:58:25 + + +waiting on router queue for slot.... +14:58:27 ============================================================================ +14:58:27 Slot Id : <396> +14:58:27 Transaction Type : RESPONSE +14:58:27 Received From : +14:58:27 ============================================================================ +14:58:27 FNo. Len. Field Value +14:58:27 ============================================================================ +14:58:27 [ 1] [ 4] [0210] +14:58:27 [ 2] [ 16] [6688990103744106] +14:58:27 [ 3] [ 6] [010000] +14:58:27 [ 4] [ 12] [000100000000] +14:58:27 [ 11] [ 6] [777211] +14:58:27 [ 12] [ 6] [145819] +14:58:27 [ 15] [ 4] [0320] +14:58:27 [ 18] [ 4] [6011] +14:58:27 [ 32] [ 6] [621354] +14:58:27 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:58:27 [ 37] [ 12] [507903344987] +14:58:27 [ 38] [ 6] [047978] +14:58:27 [ 39] [ 2] [00] +14:58:27 [ 41] [ 8] [13001400] +14:58:27 [ 49] [ 3] [418] +14:58:27 [ 54] [ 20] [0002418C001105604006] +14:58:27 ============================================================================ +14:58:27 Calculate Source COMM Id = 0 +14:58:27 ============================================================================ +14:58:27 + + +waiting on router queue for slot.... +14:58:30 ============================================================================ +14:58:30 Slot Id : <351> +14:58:30 Transaction Type : REQUEST +14:58:30 Received From : +14:58:30 ============================================================================ +14:58:30 FNo. Len. Field Value +14:58:30 ============================================================================ +14:58:30 [ 1] [ 4] [0800] +14:58:30 [ 7] [ 10] [0320075737] +14:58:30 [ 11] [ 6] [156896] +14:58:30 [ 70] [ 3] [301] +14:58:30 ============================================================================ +14:58:30 + + +waiting on router queue for slot.... +14:58:30 Sending to : +14:58:30 ============================================================================ +14:58:30 ============================================================================ +14:58:30 Slot Id : <351> +14:58:30 Transaction Type : RESPONSE +14:58:30 Received From : +14:58:30 ============================================================================ +14:58:30 FNo. Len. Field Value +14:58:30 ============================================================================ +14:58:30 [ 1] [ 4] [0810] +14:58:30 [ 7] [ 10] [0320075737] +14:58:30 [ 11] [ 6] [156896] +14:58:30 [ 39] [ 2] [00] +14:58:30 [ 70] [ 3] [301] +14:58:30 ============================================================================ +14:58:30 Calculate Source COMM Id = 2 +14:58:30 ============================================================================ +14:58:30 + + +waiting on router queue for slot.... +14:58:35 ============================================================================ +14:58:35 Slot Id : <389> +14:58:35 Transaction Type : REQUEST +14:58:35 Received From : +14:58:35 ============================================================================ +14:58:35 FNo. Len. Field Value +14:58:35 ============================================================================ +14:58:35 [ 1] [ 4] [0200] +14:58:35 [ 2] [ 16] [6688990103003107] +14:58:35 [ 3] [ 6] [010000] +14:58:35 [ 4] [ 12] [000030000000] +14:58:35 [ 7] [ 10] [0320145831] +14:58:35 [ 11] [ 6] [777252] +14:58:35 [ 12] [ 6] [145831] +14:58:35 [ 13] [ 4] [0320] +14:58:35 [ 15] [ 4] [0320] +14:58:35 [ 18] [ 4] [6011] +14:58:35 [ 22] [ 3] [900] +14:58:35 [ 25] [ 2] [02] +14:58:35 [ 28] [ 9] [D00002000] +14:58:35 [ 32] [ 6] [621354] +14:58:35 [ 35] [ 37] [6688990103003107=42111231310715500000] +14:58:35 [ 37] [ 12] [507904635727] +14:58:35 [ 41] [ 8] [17000800] +14:58:35 [ 42] [ 15] [NATIVE ] +14:58:35 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:58:35 [ 49] [ 3] [418] +14:58:35 [ 52] [ 16] [795EFA69EFEFB3B0] +14:58:35 ============================================================================ +14:58:35 + + +waiting on router queue for slot.... +14:58:35 Sending to : +14:58:35 ============================================================================ +14:58:35 Sending to : +14:58:35 ============================================================================ +14:58:36 ============================================================================ +14:58:36 Slot Id : <389> +14:58:36 Transaction Type : REQUEST +14:58:36 Received From : +14:58:36 ============================================================================ +14:58:36 FNo. Len. Field Value +14:58:36 ============================================================================ +14:58:36 [ 1] [ 4] [0200] +14:58:36 [ 2] [ 16] [6688990103003107] +14:58:36 [ 3] [ 6] [010000] +14:58:36 [ 4] [ 12] [000030000000] +14:58:36 [ 7] [ 10] [0320145831] +14:58:36 [ 11] [ 6] [777252] +14:58:36 [ 12] [ 6] [145831] +14:58:36 [ 13] [ 4] [0320] +14:58:36 [ 15] [ 4] [0320] +14:58:36 [ 18] [ 4] [6011] +14:58:36 [ 22] [ 3] [900] +14:58:36 [ 25] [ 2] [02] +14:58:36 [ 28] [ 9] [D00002000] +14:58:36 [ 32] [ 6] [621354] +14:58:36 [ 35] [ 37] [6688990103003107=42111231310715500000] +14:58:36 [ 37] [ 12] [507904635727] +14:58:36 [ 41] [ 8] [17000800] +14:58:36 [ 42] [ 15] [NATIVE ] +14:58:36 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:58:36 [ 49] [ 3] [418] +14:58:36 [ 52] [ 16] [795EFA69EFEFB3B0] +14:58:36 ============================================================================ +14:58:36 + + +waiting on router queue for slot.... +14:58:36 Sending to : +14:58:36 ============================================================================ +14:58:36 ============================================================================ +14:58:36 Slot Id : <389> +14:58:36 Transaction Type : REQUEST +14:58:36 Received From : +14:58:36 ============================================================================ +14:58:36 FNo. Len. Field Value +14:58:36 ============================================================================ +14:58:36 [ 1] [ 4] [0200] +14:58:36 [ 2] [ 16] [6688990103003107] +14:58:36 [ 3] [ 6] [010000] +14:58:36 [ 4] [ 12] [000030000000] +14:58:36 [ 7] [ 10] [0320145831] +14:58:36 [ 11] [ 6] [777252] +14:58:36 [ 12] [ 6] [145831] +14:58:36 [ 13] [ 4] [0320] +14:58:36 [ 15] [ 4] [0320] +14:58:36 [ 18] [ 4] [6011] +14:58:36 [ 22] [ 3] [900] +14:58:36 [ 25] [ 2] [02] +14:58:36 [ 28] [ 9] [D00002000] +14:58:36 [ 32] [ 6] [621354] +14:58:36 [ 35] [ 37] [6688990103003107=42111231310715500000] +14:58:36 [ 37] [ 12] [507904635727] +14:58:36 [ 41] [ 8] [17000800] +14:58:36 [ 42] [ 15] [NATIVE ] +14:58:36 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:58:36 [ 49] [ 3] [418] +14:58:36 [ 52] [ 16] [074F951C61C3DE47] +14:58:36 ============================================================================ +14:58:36 + + +waiting on router queue for slot.... +14:58:36 Sending to : <4> +14:58:36 ============================================================================ +14:58:36 ============================================================================ +14:58:36 Slot Id : <390> +14:58:36 Transaction Type : REQUEST +14:58:36 Received From : +14:58:36 ============================================================================ +14:58:36 FNo. Len. Field Value +14:58:36 ============================================================================ +14:58:36 [ 1] [ 4] [0800] +14:58:36 [ 2] [ 5] [02531] +14:58:36 [ 3] [ 6] [579148] +14:58:36 [ 7] [ 10] [0320075836] +14:58:36 [ 11] [ 6] [807281] +14:58:36 [ 15] [ 10] [0320075836] +14:58:36 [ 37] [ 11] [57914807281] +14:58:36 [ 70] [ 3] [001] +14:58:36 ============================================================================ +14:58:36 + + +waiting on router queue for slot.... +14:58:36 ============================================================================ +14:58:36 Slot Id : <390> +14:58:36 Transaction Type : RESPONSE +14:58:36 Received From : +14:58:36 ============================================================================ +14:58:36 FNo. Len. Field Value +14:58:36 ============================================================================ +14:58:36 [ 1] [ 4] [0810] +14:58:36 [ 7] [ 10] [0320075836] +14:58:36 [ 11] [ 6] [807281] +14:58:36 [ 15] [ 4] [0320] +14:58:36 [ 37] [ 12] [57914807281] +14:58:36 [ 39] [ 2] [00] +14:58:36 [ 70] [ 3] [001] +14:58:36 ============================================================================ +14:58:36 Sending to : +14:58:36 ============================================================================ +14:58:36 + + +waiting on router queue for slot.... +14:58:37 ============================================================================ +14:58:37 Slot Id : <389> +14:58:37 Transaction Type : RESPONSE +14:58:37 Received From : +14:58:37 ============================================================================ +14:58:37 FNo. Len. Field Value +14:58:37 ============================================================================ +14:58:37 [ 1] [ 4] [0210] +14:58:37 [ 2] [ 16] [6688990103003107] +14:58:37 [ 3] [ 6] [010000] +14:58:37 [ 4] [ 12] [000030000000] +14:58:37 [ 11] [ 6] [777252] +14:58:37 [ 12] [ 6] [145831] +14:58:37 [ 15] [ 4] [0320] +14:58:37 [ 18] [ 4] [6011] +14:58:37 [ 32] [ 6] [621354] +14:58:37 [ 35] [ 37] [6688990103003107=42111231310715500000] +14:58:37 [ 37] [ 12] [507904635727] +14:58:37 [ 38] [ 6] [259396] +14:58:37 [ 39] [ 2] [00] +14:58:37 [ 41] [ 8] [17000800] +14:58:37 [ 49] [ 3] [418] +14:58:37 [ 54] [ 20] [0002418C000031098640] +14:58:37 ============================================================================ +14:58:37 Sending to : +14:58:37 ============================================================================ +14:58:37 + + +waiting on router queue for slot.... +14:58:37 ============================================================================ +14:58:37 Slot Id : <361> +14:58:37 Transaction Type : REQUEST +14:58:37 Received From : +14:58:37 ============================================================================ +14:58:37 FNo. Len. Field Value +14:58:37 ============================================================================ +14:58:37 [ 1] [ 4] [0200] +14:58:37 [ 2] [ 16] [1989010003184787] +14:58:37 [ 3] [ 6] [012000] +14:58:37 [ 4] [ 12] [000010000000] +14:58:37 [ 7] [ 10] [0320145833] +14:58:37 [ 11] [ 6] [777257] +14:58:37 [ 12] [ 6] [145833] +14:58:37 [ 13] [ 4] [0320] +14:58:37 [ 15] [ 4] [0320] +14:58:37 [ 18] [ 4] [6011] +14:58:37 [ 22] [ 3] [900] +14:58:37 [ 25] [ 2] [02] +14:58:37 [ 28] [ 9] [D00002000] +14:58:37 [ 32] [ 6] [621354] +14:58:37 [ 35] [ 32] [1989010003184787=000010100000215] +14:58:37 [ 37] [ 12] [507902764863] +14:58:37 [ 41] [ 8] [01007000] +14:58:37 [ 42] [ 15] [NATIVE ] +14:58:37 [ 43] [ 40] [NOVOTEL SikhottabongLAO] +14:58:37 [ 49] [ 3] [418] +14:58:37 [ 52] [ 16] [D1D7F40D2899BB19] +14:58:37 ============================================================================ +14:58:37 + + +waiting on router queue for slot.... +14:58:37 Sending to : +14:58:37 ============================================================================ +14:58:37 Sending to : +14:58:37 ============================================================================ +14:58:38 ============================================================================ +14:58:38 Slot Id : <361> +14:58:38 Transaction Type : REQUEST +14:58:38 Received From : +14:58:38 ============================================================================ +14:58:38 FNo. Len. Field Value +14:58:38 ============================================================================ +14:58:38 [ 1] [ 4] [0200] +14:58:38 [ 2] [ 16] [1989010003184787] +14:58:38 [ 3] [ 6] [012000] +14:58:38 [ 4] [ 12] [000010000000] +14:58:38 [ 7] [ 10] [0320145833] +14:58:38 [ 11] [ 6] [777257] +14:58:38 [ 12] [ 6] [145833] +14:58:38 [ 13] [ 4] [0320] +14:58:38 [ 15] [ 4] [0320] +14:58:38 [ 18] [ 4] [6011] +14:58:38 [ 22] [ 3] [900] +14:58:38 [ 25] [ 2] [02] +14:58:38 [ 28] [ 9] [D00002000] +14:58:38 [ 32] [ 6] [621354] +14:58:38 [ 35] [ 32] [1989010003184787=000010100000215] +14:58:38 [ 37] [ 12] [507902764863] +14:58:38 [ 41] [ 8] [01007000] +14:58:38 [ 42] [ 15] [NATIVE ] +14:58:38 [ 43] [ 40] [NOVOTEL SikhottabongLAO] +14:58:38 [ 49] [ 3] [418] +14:58:38 [ 52] [ 16] [D1D7F40D2899BB19] +14:58:38 ============================================================================ +14:58:38 + + +waiting on router queue for slot.... +14:58:38 Sending to : +14:58:38 ============================================================================ +14:58:38 ============================================================================ +14:58:38 Slot Id : <361> +14:58:38 Transaction Type : REQUEST +14:58:38 Received From : +14:58:38 ============================================================================ +14:58:38 FNo. Len. Field Value +14:58:38 ============================================================================ +14:58:38 [ 1] [ 4] [0200] +14:58:38 [ 2] [ 16] [1989010003184787] +14:58:38 [ 3] [ 6] [012000] +14:58:38 [ 4] [ 12] [000010000000] +14:58:38 [ 7] [ 10] [0320145833] +14:58:38 [ 11] [ 6] [777257] +14:58:38 [ 12] [ 6] [145833] +14:58:38 [ 13] [ 4] [0320] +14:58:38 [ 15] [ 4] [0320] +14:58:38 [ 18] [ 4] [6011] +14:58:38 [ 22] [ 3] [900] +14:58:38 [ 25] [ 2] [02] +14:58:38 [ 28] [ 9] [D00002000] +14:58:38 [ 32] [ 6] [621354] +14:58:38 [ 35] [ 32] [1989010003184787=000010100000215] +14:58:38 [ 37] [ 12] [507902764863] +14:58:38 [ 41] [ 8] [01007000] +14:58:38 [ 42] [ 15] [NATIVE ] +14:58:38 [ 43] [ 40] [NOVOTEL SikhottabongLAO] +14:58:38 [ 49] [ 3] [418] +14:58:38 [ 52] [ 16] [9EE768D781628B70] +14:58:38 ============================================================================ +14:58:38 + + +waiting on router queue for slot.... +14:58:38 Sending to : <5> +14:58:38 ============================================================================ +14:58:38 ============================================================================ +14:58:38 Slot Id : <361> +14:58:38 Transaction Type : RESPONSE +14:58:38 Received From : +14:58:38 ============================================================================ +14:58:38 FNo. Len. Field Value +14:58:38 ============================================================================ +14:58:38 [ 1] [ 4] [0210] +14:58:38 [ 2] [ 16] [1989010003184787] +14:58:38 [ 3] [ 6] [012000] +14:58:38 [ 4] [ 12] [000010000000] +14:58:38 [ 7] [ 10] [0320145833] +14:58:38 [ 11] [ 6] [777257] +14:58:38 [ 12] [ 6] [145833] +14:58:38 [ 13] [ 4] [0320] +14:58:38 [ 15] [ 4] [0320] +14:58:38 [ 18] [ 4] [6011] +14:58:38 [ 19] [ 3] [418] +14:58:38 [ 32] [ 6] [621354] +14:58:38 [ 37] [ 12] [507902764863] +14:58:38 [ 38] [ 6] [000000] +14:58:38 [ 39] [ 2] [55] +14:58:38 [ 41] [ 8] [01007000] +14:58:38 [ 49] [ 3] [418] +14:58:38 ============================================================================ +14:58:38 Sending to : +14:58:38 ============================================================================ +14:58:38 + + +waiting on router queue for slot.... +14:58:38 ============================================================================ +14:58:38 Slot Id : <389> +14:58:38 Transaction Type : RESPONSE +14:58:38 Received From : +14:58:38 ============================================================================ +14:58:38 FNo. Len. Field Value +14:58:38 ============================================================================ +14:58:38 [ 1] [ 4] [0210] +14:58:38 [ 2] [ 16] [6688990103003107] +14:58:38 [ 3] [ 6] [010000] +14:58:38 [ 4] [ 12] [000030000000] +14:58:38 [ 11] [ 6] [777252] +14:58:38 [ 12] [ 6] [145831] +14:58:38 [ 15] [ 4] [0320] +14:58:38 [ 18] [ 4] [6011] +14:58:38 [ 32] [ 6] [621354] +14:58:38 [ 35] [ 37] [6688990103003107=42111231310715500000] +14:58:38 [ 37] [ 12] [507904635727] +14:58:38 [ 38] [ 6] [259396] +14:58:38 [ 39] [ 2] [00] +14:58:38 [ 41] [ 8] [17000800] +14:58:38 [ 49] [ 3] [418] +14:58:38 [ 54] [ 20] [0002418C000031098640] +14:58:38 ============================================================================ +14:58:38 Calculate Source COMM Id = 0 +14:58:38 ============================================================================ +14:58:38 + + +waiting on router queue for slot.... +14:58:39 ============================================================================ +14:58:39 Slot Id : <361> +14:58:39 Transaction Type : RESPONSE +14:58:39 Received From : +14:58:39 ============================================================================ +14:58:39 FNo. Len. Field Value +14:58:39 ============================================================================ +14:58:39 [ 1] [ 4] [0210] +14:58:39 [ 2] [ 16] [1989010003184787] +14:58:39 [ 3] [ 6] [012000] +14:58:39 [ 4] [ 12] [000010000000] +14:58:39 [ 7] [ 10] [0320145833] +14:58:39 [ 11] [ 6] [777257] +14:58:39 [ 12] [ 6] [145833] +14:58:39 [ 13] [ 4] [0320] +14:58:39 [ 15] [ 4] [0320] +14:58:39 [ 18] [ 4] [6011] +14:58:39 [ 19] [ 3] [418] +14:58:39 [ 32] [ 6] [621354] +14:58:39 [ 37] [ 12] [507902764863] +14:58:39 [ 38] [ 6] [000000] +14:58:39 [ 39] [ 2] [55] +14:58:39 [ 41] [ 8] [01007000] +14:58:39 [ 49] [ 3] [418] +14:58:39 ============================================================================ +14:58:39 Calculate Source COMM Id = 0 +14:58:39 ============================================================================ +14:58:39 + + +waiting on router queue for slot.... +14:58:41 ============================================================================ +14:58:41 Slot Id : <374> +14:58:41 Transaction Type : REQUEST +14:58:41 Received From : +14:58:41 ============================================================================ +14:58:41 FNo. Len. Field Value +14:58:41 ============================================================================ +14:58:41 [ 1] [ 4] [0800] +14:58:41 [ 7] [ 10] [0320075748] +14:58:41 [ 11] [ 6] [156897] +14:58:41 [ 70] [ 3] [301] +14:58:41 ============================================================================ +14:58:41 + + +waiting on router queue for slot.... +14:58:41 Sending to : +14:58:41 ============================================================================ +14:58:41 ============================================================================ +14:58:41 Slot Id : <374> +14:58:41 Transaction Type : RESPONSE +14:58:41 Received From : +14:58:41 ============================================================================ +14:58:41 FNo. Len. Field Value +14:58:41 ============================================================================ +14:58:41 [ 1] [ 4] [0810] +14:58:41 [ 7] [ 10] [0320075748] +14:58:41 [ 11] [ 6] [156897] +14:58:41 [ 39] [ 2] [00] +14:58:41 [ 70] [ 3] [301] +14:58:41 ============================================================================ +14:58:41 Calculate Source COMM Id = 2 +14:58:41 ============================================================================ +14:58:41 + + +waiting on router queue for slot.... +14:58:48 ============================================================================ +14:58:48 Slot Id : <359> +14:58:48 Transaction Type : REQUEST +14:58:48 Received From : +14:58:48 ============================================================================ +14:58:48 FNo. Len. Field Value +14:58:48 ============================================================================ +14:58:48 [ 1] [ 4] [0200] +14:58:48 [ 2] [ 16] [6213545000000608] +14:58:48 [ 3] [ 6] [011000] +14:58:48 [ 4] [ 12] [000100000000] +14:58:48 [ 7] [ 10] [0320145909] +14:58:48 [ 11] [ 6] [207611] +14:58:48 [ 12] [ 6] [025719] +14:58:48 [ 13] [ 4] [0320] +14:58:48 [ 14] [ 4] [4912] +14:58:48 [ 15] [ 4] [0320] +14:58:48 [ 18] [ 4] [6011] +14:58:48 [ 19] [ 3] [418] +14:58:48 [ 22] [ 3] [021] +14:58:48 [ 25] [ 2] [01] +14:58:48 [ 28] [ 9] [D00002000] +14:58:48 [ 32] [ 6] [198901] +14:58:48 [ 35] [ 32] [6213545000000608=491212010060365] +14:58:48 [ 37] [ 12] [507914207611] +14:58:48 [ 41] [ 8] [01529031] +14:58:48 [ 42] [ 15] [000000041529031] +14:58:48 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:58:48 [ 49] [ 3] [418] +14:58:48 [ 52] [ 16] [2649391E89372AD3] +14:58:48 ============================================================================ +14:58:48 + + +waiting on router queue for slot.... +14:58:48 Sending to : +14:58:48 ============================================================================ +14:58:48 Sending to : +14:58:48 ============================================================================ +14:58:48 ============================================================================ +14:58:48 Slot Id : <359> +14:58:48 Transaction Type : REQUEST +14:58:48 Received From : +14:58:48 ============================================================================ +14:58:48 FNo. Len. Field Value +14:58:48 ============================================================================ +14:58:48 [ 1] [ 4] [0200] +14:58:48 [ 2] [ 16] [6213545000000608] +14:58:48 [ 3] [ 6] [011000] +14:58:48 [ 4] [ 12] [000100000000] +14:58:48 [ 7] [ 10] [0320145909] +14:58:48 [ 11] [ 6] [207611] +14:58:48 [ 12] [ 6] [025719] +14:58:48 [ 13] [ 4] [0320] +14:58:48 [ 14] [ 4] [4912] +14:58:48 [ 15] [ 4] [0320] +14:58:48 [ 18] [ 4] [6011] +14:58:48 [ 19] [ 3] [418] +14:58:48 [ 22] [ 3] [021] +14:58:48 [ 25] [ 2] [01] +14:58:48 [ 28] [ 9] [D00002000] +14:58:48 [ 32] [ 6] [198901] +14:58:48 [ 35] [ 32] [6213545000000608=491212010060365] +14:58:48 [ 37] [ 12] [507914207611] +14:58:48 [ 41] [ 8] [01529031] +14:58:48 [ 42] [ 15] [000000041529031] +14:58:48 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:58:48 [ 49] [ 3] [418] +14:58:48 [ 52] [ 16] [2649391E89372AD3] +14:58:48 ============================================================================ +14:58:48 + + +waiting on router queue for slot.... +14:58:48 Sending to : +14:58:48 ============================================================================ +14:58:48 ============================================================================ +14:58:48 Slot Id : <359> +14:58:48 Transaction Type : REQUEST +14:58:48 Received From : +14:58:48 ============================================================================ +14:58:48 FNo. Len. Field Value +14:58:48 ============================================================================ +14:58:48 [ 1] [ 4] [0200] +14:58:48 [ 2] [ 16] [6213545000000608] +14:58:48 [ 3] [ 6] [011000] +14:58:48 [ 4] [ 12] [000100000000] +14:58:48 [ 7] [ 10] [0320145909] +14:58:48 [ 11] [ 6] [207611] +14:58:48 [ 12] [ 6] [025719] +14:58:48 [ 13] [ 4] [0320] +14:58:48 [ 14] [ 4] [4912] +14:58:48 [ 15] [ 4] [0320] +14:58:48 [ 18] [ 4] [6011] +14:58:48 [ 19] [ 3] [418] +14:58:48 [ 22] [ 3] [021] +14:58:48 [ 25] [ 2] [01] +14:58:48 [ 28] [ 9] [D00002000] +14:58:48 [ 32] [ 6] [198901] +14:58:48 [ 35] [ 32] [6213545000000608=491212010060365] +14:58:48 [ 37] [ 12] [507914207611] +14:58:48 [ 41] [ 8] [01529031] +14:58:48 [ 42] [ 15] [000000041529031] +14:58:48 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +14:58:48 [ 49] [ 3] [418] +14:58:48 [ 52] [ 16] [57D8B9FACEA13D84] +14:58:48 ============================================================================ +14:58:48 + + +waiting on router queue for slot.... +14:58:48 Sending to : <0> +14:58:48 ============================================================================ +14:58:49 ============================================================================ +14:58:49 Slot Id : <359> +14:58:49 Transaction Type : RESPONSE +14:58:49 Received From : +14:58:49 ============================================================================ +14:58:49 FNo. Len. Field Value +14:58:49 ============================================================================ +14:58:49 [ 1] [ 4] [0210] +14:58:49 [ 2] [ 16] [6213545000000608] +14:58:49 [ 3] [ 6] [011000] +14:58:49 [ 4] [ 12] [000100000000] +14:58:49 [ 7] [ 10] [0320145909] +14:58:49 [ 11] [ 6] [207611] +14:58:49 [ 12] [ 6] [025719] +14:58:49 [ 13] [ 4] [0320] +14:58:49 [ 15] [ 4] [0320] +14:58:49 [ 18] [ 4] [6011] +14:58:49 [ 19] [ 3] [418] +14:58:49 [ 32] [ 6] [198901] +14:58:49 [ 35] [ 32] [6213545000000608=491212010060365] +14:58:49 [ 37] [ 12] [507914207611] +14:58:49 [ 38] [ 6] [256552] +14:58:49 [ 39] [ 2] [00] +14:58:49 [ 41] [ 8] [01529031] +14:58:49 [ 49] [ 3] [418] +14:58:49 [ 54] [ 40] [1001418C0000113764261002418C000011376426] +14:58:49 ============================================================================ +14:58:49 Sending to : +14:58:49 ============================================================================ +14:58:49 + + +waiting on router queue for slot.... +14:58:50 ============================================================================ +14:58:50 Slot Id : <359> +14:58:50 Transaction Type : RESPONSE +14:58:50 Received From : +14:58:50 ============================================================================ +14:58:50 FNo. Len. Field Value +14:58:50 ============================================================================ +14:58:50 [ 1] [ 4] [0210] +14:58:50 [ 2] [ 16] [6213545000000608] +14:58:50 [ 3] [ 6] [011000] +14:58:50 [ 4] [ 12] [000100000000] +14:58:50 [ 7] [ 10] [0320145909] +14:58:50 [ 11] [ 6] [207611] +14:58:50 [ 12] [ 6] [025719] +14:58:50 [ 13] [ 4] [0320] +14:58:50 [ 15] [ 4] [0320] +14:58:50 [ 18] [ 4] [6011] +14:58:50 [ 19] [ 3] [418] +14:58:50 [ 32] [ 6] [198901] +14:58:50 [ 35] [ 32] [6213545000000608=491212010060365] +14:58:50 [ 37] [ 12] [507914207611] +14:58:50 [ 38] [ 6] [256552] +14:58:50 [ 39] [ 2] [00] +14:58:50 [ 41] [ 8] [01529031] +14:58:50 [ 49] [ 3] [418] +14:58:50 [ 54] [ 40] [1001418C0000113764261002418C000011376426] +14:58:50 ============================================================================ +14:58:50 Calculate Source COMM Id = 5 +14:58:50 ============================================================================ +14:58:50 + + +waiting on router queue for slot.... +14:58:57 ============================================================================ +14:58:57 Slot Id : <376> +14:58:57 Transaction Type : REQUEST +14:58:57 Received From : +14:58:57 ============================================================================ +14:58:57 FNo. Len. Field Value +14:58:57 ============================================================================ +14:58:57 [ 1] [ 4] [0800] +14:58:57 [ 7] [ 10] [0320075804] +14:58:57 [ 11] [ 6] [156898] +14:58:57 [ 70] [ 3] [301] +14:58:57 ============================================================================ +14:58:57 + + +waiting on router queue for slot.... +14:58:57 Sending to : +14:58:57 ============================================================================ +14:58:57 ============================================================================ +14:58:57 Slot Id : <376> +14:58:57 Transaction Type : RESPONSE +14:58:57 Received From : +14:58:57 ============================================================================ +14:58:57 FNo. Len. Field Value +14:58:57 ============================================================================ +14:58:57 [ 1] [ 4] [0810] +14:58:57 [ 7] [ 10] [0320075804] +14:58:57 [ 11] [ 6] [156898] +14:58:57 [ 39] [ 2] [00] +14:58:57 [ 70] [ 3] [301] +14:58:57 ============================================================================ +14:58:57 Calculate Source COMM Id = 2 +14:58:57 ============================================================================ +14:58:57 + + +waiting on router queue for slot.... +14:58:57 ============================================================================ +14:58:57 Slot Id : <410> +14:58:57 Transaction Type : REQUEST +14:58:57 Received From : +14:58:57 ============================================================================ +14:58:57 FNo. Len. Field Value +14:58:57 ============================================================================ +14:58:57 [ 1] [ 4] [0200] +14:58:57 [ 2] [ 16] [1989010003184787] +14:58:57 [ 3] [ 6] [012000] +14:58:57 [ 4] [ 12] [000010000000] +14:58:57 [ 7] [ 10] [0320145852] +14:58:57 [ 11] [ 6] [777327] +14:58:57 [ 12] [ 6] [145852] +14:58:57 [ 13] [ 4] [0320] +14:58:57 [ 15] [ 4] [0320] +14:58:57 [ 18] [ 4] [6011] +14:58:57 [ 22] [ 3] [900] +14:58:57 [ 25] [ 2] [02] +14:58:57 [ 28] [ 9] [D00002000] +14:58:57 [ 32] [ 6] [621354] +14:58:57 [ 35] [ 32] [1989010003184787=000010100000215] +14:58:57 [ 37] [ 12] [507902764865] +14:58:57 [ 41] [ 8] [01007000] +14:58:57 [ 42] [ 15] [NATIVE ] +14:58:57 [ 43] [ 40] [NOVOTEL SikhottabongLAO] +14:58:57 [ 49] [ 3] [418] +14:58:57 [ 52] [ 16] [82D0F87E61C28F44] +14:58:57 ============================================================================ +14:58:57 + + +waiting on router queue for slot.... +14:58:57 Sending to : +14:58:57 ============================================================================ +14:58:57 Sending to : +14:58:57 ============================================================================ +14:58:57 ============================================================================ +14:58:57 Slot Id : <410> +14:58:57 Transaction Type : REQUEST +14:58:57 Received From : +14:58:57 ============================================================================ +14:58:57 FNo. Len. Field Value +14:58:57 ============================================================================ +14:58:57 [ 1] [ 4] [0200] +14:58:57 [ 2] [ 16] [1989010003184787] +14:58:57 [ 3] [ 6] [012000] +14:58:57 [ 4] [ 12] [000010000000] +14:58:57 [ 7] [ 10] [0320145852] +14:58:57 [ 11] [ 6] [777327] +14:58:57 [ 12] [ 6] [145852] +14:58:57 [ 13] [ 4] [0320] +14:58:57 [ 15] [ 4] [0320] +14:58:57 [ 18] [ 4] [6011] +14:58:57 [ 22] [ 3] [900] +14:58:57 [ 25] [ 2] [02] +14:58:57 [ 28] [ 9] [D00002000] +14:58:57 [ 32] [ 6] [621354] +14:58:57 [ 35] [ 32] [1989010003184787=000010100000215] +14:58:57 [ 37] [ 12] [507902764865] +14:58:57 [ 41] [ 8] [01007000] +14:58:57 [ 42] [ 15] [NATIVE ] +14:58:57 [ 43] [ 40] [NOVOTEL SikhottabongLAO] +14:58:57 [ 49] [ 3] [418] +14:58:57 [ 52] [ 16] [82D0F87E61C28F44] +14:58:57 ============================================================================ +14:58:57 + + +waiting on router queue for slot.... +14:58:57 Sending to : +14:58:57 ============================================================================ +14:58:57 ============================================================================ +14:58:57 Slot Id : <410> +14:58:57 Transaction Type : REQUEST +14:58:57 Received From : +14:58:57 ============================================================================ +14:58:57 FNo. Len. Field Value +14:58:57 ============================================================================ +14:58:57 [ 1] [ 4] [0200] +14:58:57 [ 2] [ 16] [1989010003184787] +14:58:57 [ 3] [ 6] [012000] +14:58:57 [ 4] [ 12] [000010000000] +14:58:57 [ 7] [ 10] [0320145852] +14:58:57 [ 11] [ 6] [777327] +14:58:57 [ 12] [ 6] [145852] +14:58:57 [ 13] [ 4] [0320] +14:58:57 [ 15] [ 4] [0320] +14:58:57 [ 18] [ 4] [6011] +14:58:57 [ 22] [ 3] [900] +14:58:57 [ 25] [ 2] [02] +14:58:57 [ 28] [ 9] [D00002000] +14:58:57 [ 32] [ 6] [621354] +14:58:57 [ 35] [ 32] [1989010003184787=000010100000215] +14:58:57 [ 37] [ 12] [507902764865] +14:58:57 [ 41] [ 8] [01007000] +14:58:57 [ 42] [ 15] [NATIVE ] +14:58:57 [ 43] [ 40] [NOVOTEL SikhottabongLAO] +14:58:57 [ 49] [ 3] [418] +14:58:57 [ 52] [ 16] [0AE4AB76D556B751] +14:58:57 ============================================================================ +14:58:57 + + +waiting on router queue for slot.... +14:58:57 Sending to : <5> +14:58:57 ============================================================================ +14:59:01 ============================================================================ +14:59:01 Slot Id : <383> +14:59:01 Transaction Type : REQUEST +14:59:01 Received From : +14:59:01 ============================================================================ +14:59:01 FNo. Len. Field Value +14:59:01 ============================================================================ +14:59:01 [ 1] [ 4] [0800] +14:59:01 [ 7] [ 10] [0320221049] +14:59:01 [ 11] [ 6] [151049] +14:59:01 [ 37] [ 12] [57915151049] +14:59:01 [ 70] [ 3] [301] +14:59:01 ============================================================================ +14:59:01 + + +waiting on router queue for slot.... +14:59:01 Sending to : +14:59:01 ============================================================================ +14:59:01 ============================================================================ +14:59:01 Slot Id : <383> +14:59:01 Transaction Type : RESPONSE +14:59:01 Received From : +14:59:01 ============================================================================ +14:59:01 FNo. Len. Field Value +14:59:01 ============================================================================ +14:59:01 [ 1] [ 4] [0810] +14:59:01 [ 7] [ 10] [0320221049] +14:59:01 [ 11] [ 6] [151049] +14:59:01 [ 37] [ 12] [579151510490] +14:59:01 [ 39] [ 2] [00] +14:59:01 [ 70] [ 3] [810] +14:59:01 ============================================================================ +14:59:01 Calculate Source COMM Id = 6 +14:59:01 ============================================================================ +14:59:01 + + +waiting on router queue for slot.... +14:59:02 ============================================================================ +14:59:02 Slot Id : <410> +14:59:02 Transaction Type : RESPONSE +14:59:02 Received From : +14:59:02 ============================================================================ +14:59:02 FNo. Len. Field Value +14:59:02 ============================================================================ +14:59:02 [ 1] [ 4] [0210] +14:59:02 [ 2] [ 16] [1989010003184787] +14:59:02 [ 3] [ 6] [012000] +14:59:02 [ 4] [ 12] [000010000000] +14:59:02 [ 7] [ 10] [0320145852] +14:59:02 [ 11] [ 6] [777327] +14:59:02 [ 12] [ 6] [145852] +14:59:02 [ 13] [ 4] [0320] +14:59:02 [ 15] [ 4] [0320] +14:59:02 [ 18] [ 4] [6011] +14:59:02 [ 19] [ 3] [418] +14:59:02 [ 32] [ 6] [621354] +14:59:02 [ 37] [ 12] [507902764865] +14:59:02 [ 38] [ 6] [304213] +14:59:02 [ 39] [ 2] [00] +14:59:02 [ 41] [ 8] [01007000] +14:59:02 [ 49] [ 3] [418] +14:59:02 [ 54] [ 20] [2001418C000094172000] +14:59:02 ============================================================================ +14:59:02 Sending to : +14:59:02 ============================================================================ +14:59:02 + + +waiting on router queue for slot.... +14:59:04 ============================================================================ +14:59:04 Slot Id : <410> +14:59:04 Transaction Type : RESPONSE +14:59:04 Received From : +14:59:04 ============================================================================ +14:59:04 FNo. Len. Field Value +14:59:04 ============================================================================ +14:59:04 [ 1] [ 4] [0210] +14:59:04 [ 2] [ 16] [1989010003184787] +14:59:04 [ 3] [ 6] [012000] +14:59:04 [ 4] [ 12] [000010000000] +14:59:04 [ 7] [ 10] [0320145852] +14:59:04 [ 11] [ 6] [777327] +14:59:04 [ 12] [ 6] [145852] +14:59:04 [ 13] [ 4] [0320] +14:59:04 [ 15] [ 4] [0320] +14:59:04 [ 18] [ 4] [6011] +14:59:04 [ 19] [ 3] [418] +14:59:04 [ 32] [ 6] [621354] +14:59:04 [ 37] [ 12] [507902764865] +14:59:04 [ 38] [ 6] [304213] +14:59:04 [ 39] [ 2] [00] +14:59:04 [ 41] [ 8] [01007000] +14:59:04 [ 49] [ 3] [418] +14:59:04 [ 54] [ 20] [2001418C000094172000] +14:59:04 ============================================================================ +14:59:04 Calculate Source COMM Id = 0 +14:59:04 ============================================================================ +14:59:04 + + +waiting on router queue for slot.... +14:59:09 ============================================================================ +14:59:09 Slot Id : <395> +14:59:09 Transaction Type : REQUEST +14:59:09 Received From : +14:59:09 ============================================================================ +14:59:09 FNo. Len. Field Value +14:59:09 ============================================================================ +14:59:09 [ 1] [ 4] [0200] +14:59:09 [ 2] [ 16] [6688990105247207] +14:59:09 [ 3] [ 6] [011000] +14:59:09 [ 4] [ 12] [000100000000] +14:59:09 [ 7] [ 10] [0320145904] +14:59:09 [ 11] [ 6] [777375] +14:59:09 [ 12] [ 6] [145904] +14:59:09 [ 13] [ 4] [0320] +14:59:09 [ 15] [ 4] [0320] +14:59:09 [ 18] [ 4] [6011] +14:59:09 [ 22] [ 3] [900] +14:59:09 [ 25] [ 2] [02] +14:59:09 [ 28] [ 9] [D00002000] +14:59:09 [ 32] [ 6] [621354] +14:59:09 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:59:09 [ 37] [ 12] [507904719701] +14:59:09 [ 41] [ 8] [18001000] +14:59:09 [ 42] [ 15] [NATIVE ] +14:59:09 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:59:09 [ 49] [ 3] [418] +14:59:09 [ 52] [ 16] [667459472C5E1498] +14:59:09 ============================================================================ +14:59:09 + + +waiting on router queue for slot.... +14:59:09 Sending to : +14:59:09 ============================================================================ +14:59:09 Sending to : +14:59:09 ============================================================================ +14:59:09 ============================================================================ +14:59:09 Slot Id : <395> +14:59:09 Transaction Type : REQUEST +14:59:09 Received From : +14:59:09 ============================================================================ +14:59:09 FNo. Len. Field Value +14:59:09 ============================================================================ +14:59:09 [ 1] [ 4] [0200] +14:59:09 [ 2] [ 16] [6688990105247207] +14:59:09 [ 3] [ 6] [011000] +14:59:09 [ 4] [ 12] [000100000000] +14:59:09 [ 7] [ 10] [0320145904] +14:59:09 [ 11] [ 6] [777375] +14:59:09 [ 12] [ 6] [145904] +14:59:09 [ 13] [ 4] [0320] +14:59:09 [ 15] [ 4] [0320] +14:59:09 [ 18] [ 4] [6011] +14:59:09 [ 22] [ 3] [900] +14:59:09 [ 25] [ 2] [02] +14:59:09 [ 28] [ 9] [D00002000] +14:59:09 [ 32] [ 6] [621354] +14:59:09 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:59:09 [ 37] [ 12] [507904719701] +14:59:09 [ 41] [ 8] [18001000] +14:59:09 [ 42] [ 15] [NATIVE ] +14:59:09 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:59:09 [ 49] [ 3] [418] +14:59:09 [ 52] [ 16] [667459472C5E1498] +14:59:09 ============================================================================ +14:59:09 + + +waiting on router queue for slot.... +14:59:09 Sending to : +14:59:09 ============================================================================ +14:59:09 ============================================================================ +14:59:09 Slot Id : <395> +14:59:09 Transaction Type : REQUEST +14:59:09 Received From : +14:59:09 ============================================================================ +14:59:09 FNo. Len. Field Value +14:59:09 ============================================================================ +14:59:09 [ 1] [ 4] [0200] +14:59:09 [ 2] [ 16] [6688990105247207] +14:59:09 [ 3] [ 6] [011000] +14:59:09 [ 4] [ 12] [000100000000] +14:59:09 [ 7] [ 10] [0320145904] +14:59:09 [ 11] [ 6] [777375] +14:59:09 [ 12] [ 6] [145904] +14:59:09 [ 13] [ 4] [0320] +14:59:09 [ 15] [ 4] [0320] +14:59:09 [ 18] [ 4] [6011] +14:59:09 [ 22] [ 3] [900] +14:59:09 [ 25] [ 2] [02] +14:59:09 [ 28] [ 9] [D00002000] +14:59:09 [ 32] [ 6] [621354] +14:59:09 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:59:09 [ 37] [ 12] [507904719701] +14:59:09 [ 41] [ 8] [18001000] +14:59:09 [ 42] [ 15] [NATIVE ] +14:59:09 [ 43] [ 40] [Khoua Unit Khoua LAO] +14:59:09 [ 49] [ 3] [418] +14:59:09 [ 52] [ 16] [2740F324422C69C1] +14:59:09 ============================================================================ +14:59:09 + + +waiting on router queue for slot.... +14:59:09 Sending to : <4> +14:59:09 ============================================================================ +14:59:10 ============================================================================ +14:59:10 Slot Id : <395> +14:59:10 Transaction Type : RESPONSE +14:59:10 Received From : +14:59:10 ============================================================================ +14:59:10 FNo. Len. Field Value +14:59:10 ============================================================================ +14:59:10 [ 1] [ 4] [0210] +14:59:10 [ 2] [ 16] [6688990105247207] +14:59:10 [ 3] [ 6] [011000] +14:59:10 [ 4] [ 12] [000100000000] +14:59:10 [ 11] [ 6] [777375] +14:59:10 [ 12] [ 6] [145904] +14:59:10 [ 15] [ 4] [0320] +14:59:10 [ 18] [ 4] [6011] +14:59:10 [ 32] [ 6] [621354] +14:59:10 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:59:10 [ 37] [ 12] [507904719701] +14:59:10 [ 38] [ 6] [606078] +14:59:10 [ 39] [ 2] [00] +14:59:10 [ 41] [ 8] [18001000] +14:59:10 [ 49] [ 3] [418] +14:59:10 [ 54] [ 20] [1002418C000380556582] +14:59:10 ============================================================================ +14:59:10 Sending to : +14:59:10 ============================================================================ +14:59:10 + + +waiting on router queue for slot.... +14:59:12 ============================================================================ +14:59:12 Slot Id : <395> +14:59:12 Transaction Type : RESPONSE +14:59:12 Received From : +14:59:12 ============================================================================ +14:59:12 FNo. Len. Field Value +14:59:12 ============================================================================ +14:59:12 [ 1] [ 4] [0210] +14:59:12 [ 2] [ 16] [6688990105247207] +14:59:12 [ 3] [ 6] [011000] +14:59:12 [ 4] [ 12] [000100000000] +14:59:12 [ 11] [ 6] [777375] +14:59:12 [ 12] [ 6] [145904] +14:59:12 [ 15] [ 4] [0320] +14:59:12 [ 18] [ 4] [6011] +14:59:12 [ 32] [ 6] [621354] +14:59:12 [ 35] [ 37] [6688990105247207=43081231720789000000] +14:59:12 [ 37] [ 12] [507904719701] +14:59:12 [ 38] [ 6] [606078] +14:59:12 [ 39] [ 2] [00] +14:59:12 [ 41] [ 8] [18001000] +14:59:12 [ 49] [ 3] [418] +14:59:12 [ 54] [ 20] [1002418C000380556582] +14:59:12 ============================================================================ +14:59:12 Calculate Source COMM Id = 0 +14:59:12 ============================================================================ +14:59:12 + + +waiting on router queue for slot.... +14:59:13 ============================================================================ +14:59:13 Slot Id : <393> +14:59:13 Transaction Type : REQUEST +14:59:13 Received From : +14:59:13 ============================================================================ +14:59:13 FNo. Len. Field Value +14:59:13 ============================================================================ +14:59:13 [ 1] [ 4] [0200] +14:59:13 [ 2] [ 16] [1808931300012539] +14:59:13 [ 3] [ 6] [301000] +14:59:13 [ 4] [ 12] [000000000000] +14:59:13 [ 7] [ 10] [0320145703] +14:59:13 [ 11] [ 6] [949302] +14:59:13 [ 12] [ 6] [145703] +14:59:13 [ 13] [ 4] [0320] +14:59:13 [ 15] [ 4] [0320] +14:59:13 [ 18] [ 4] [6011] +14:59:13 [ 19] [ 3] [418] +14:59:13 [ 22] [ 3] [021] +14:59:13 [ 25] [ 2] [01] +14:59:13 [ 28] [ 9] [D00000000] +14:59:13 [ 32] [ 6] [668899] +14:59:13 [ 35] [ 27] [1808931300012539=1803500667] +14:59:13 [ 37] [ 12] [507902531939] +14:59:13 [ 41] [ 8] [03020033] +14:59:13 [ 42] [ 15] [APT ] +14:59:13 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +14:59:13 [ 49] [ 3] [418] +14:59:13 [ 52] [ 16] [0D4E2B4080C64BFD] +14:59:13 ============================================================================ +14:59:13 + + +waiting on router queue for slot.... +14:59:13 Sending to : +14:59:13 ============================================================================ +14:59:13 Sending to : +14:59:13 ============================================================================ +14:59:13 ============================================================================ +14:59:13 Slot Id : <400> +14:59:13 Transaction Type : REQUEST +14:59:13 Received From : +14:59:13 ============================================================================ +14:59:13 FNo. Len. Field Value +14:59:13 ============================================================================ +14:59:13 [ 1] [ 4] [0800] +14:59:13 [ 7] [ 10] [0320075820] +14:59:13 [ 11] [ 6] [156899] +14:59:13 [ 70] [ 3] [301] +14:59:13 ============================================================================ +14:59:13 + + +waiting on router queue for slot.... +14:59:13 Sending to : +14:59:13 ============================================================================ +14:59:13 ============================================================================ +14:59:13 Slot Id : <400> +14:59:13 Transaction Type : RESPONSE +14:59:13 Received From : +14:59:13 ============================================================================ +14:59:13 FNo. Len. Field Value +14:59:13 ============================================================================ +14:59:13 [ 1] [ 4] [0810] +14:59:13 [ 7] [ 10] [0320075820] +14:59:13 [ 11] [ 6] [156899] +14:59:13 [ 39] [ 2] [00] +14:59:13 [ 70] [ 3] [301] +14:59:13 ============================================================================ +14:59:13 Calculate Source COMM Id = 2 +14:59:13 ============================================================================ +14:59:13 + + +waiting on router queue for slot.... +14:59:13 ============================================================================ +14:59:13 Slot Id : <393> +14:59:13 Transaction Type : REQUEST +14:59:13 Received From : +14:59:13 ============================================================================ +14:59:13 FNo. Len. Field Value +14:59:13 ============================================================================ +14:59:13 [ 1] [ 4] [0200] +14:59:13 [ 2] [ 16] [1808931300012539] +14:59:13 [ 3] [ 6] [301000] +14:59:13 [ 4] [ 12] [000000000000] +14:59:13 [ 7] [ 10] [0320145703] +14:59:13 [ 11] [ 6] [949302] +14:59:13 [ 12] [ 6] [145703] +14:59:13 [ 13] [ 4] [0320] +14:59:13 [ 15] [ 4] [0320] +14:59:13 [ 18] [ 4] [6011] +14:59:13 [ 19] [ 3] [418] +14:59:13 [ 22] [ 3] [021] +14:59:13 [ 25] [ 2] [01] +14:59:13 [ 28] [ 9] [D00000000] +14:59:13 [ 32] [ 6] [668899] +14:59:13 [ 35] [ 27] [1808931300012539=1803500667] +14:59:13 [ 37] [ 12] [507902531939] +14:59:13 [ 41] [ 8] [03020033] +14:59:13 [ 42] [ 15] [APT ] +14:59:13 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +14:59:13 [ 49] [ 3] [418] +14:59:13 [ 52] [ 16] [0D4E2B4080C64BFD] +14:59:13 ============================================================================ +14:59:13 + + +waiting on router queue for slot.... +14:59:13 Sending to : +14:59:13 ============================================================================ +14:59:13 ============================================================================ +14:59:13 Slot Id : <393> +14:59:13 Transaction Type : REQUEST +14:59:13 Received From : +14:59:13 ============================================================================ +14:59:13 FNo. Len. Field Value +14:59:13 ============================================================================ +14:59:13 [ 1] [ 4] [0200] +14:59:13 [ 2] [ 16] [1808931300012539] +14:59:13 [ 3] [ 6] [301000] +14:59:13 [ 4] [ 12] [000000000000] +14:59:13 [ 7] [ 10] [0320145703] +14:59:13 [ 11] [ 6] [949302] +14:59:13 [ 12] [ 6] [145703] +14:59:13 [ 13] [ 4] [0320] +14:59:13 [ 15] [ 4] [0320] +14:59:13 [ 18] [ 4] [6011] +14:59:13 [ 19] [ 3] [418] +14:59:13 [ 22] [ 3] [021] +14:59:13 [ 25] [ 2] [01] +14:59:13 [ 28] [ 9] [D00000000] +14:59:13 [ 32] [ 6] [668899] +14:59:13 [ 35] [ 27] [1808931300012539=1803500667] +14:59:13 [ 37] [ 12] [507902531939] +14:59:13 [ 41] [ 8] [03020033] +14:59:13 [ 42] [ 15] [APT ] +14:59:13 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +14:59:13 [ 49] [ 3] [418] +14:59:13 [ 52] [ 16] [8E2BB5D04C503F77] +14:59:13 ============================================================================ +14:59:13 + + +waiting on router queue for slot.... +14:59:13 Sending to : <2> +14:59:13 ============================================================================ +14:59:16 ============================================================================ +14:59:16 Slot Id : <393> +14:59:16 Transaction Type : RESPONSE +14:59:16 Received From : +14:59:16 ============================================================================ +14:59:16 FNo. Len. Field Value +14:59:16 ============================================================================ +14:59:16 [ 1] [ 4] [0210] +14:59:16 [ 2] [ 16] [1808931300012539] +14:59:16 [ 3] [ 6] [301000] +14:59:16 [ 7] [ 10] [0320145703] +14:59:16 [ 11] [ 6] [949302] +14:59:16 [ 12] [ 6] [145703] +14:59:16 [ 13] [ 4] [0320] +14:59:16 [ 14] [ 4] [1803] +14:59:16 [ 19] [ 3] [418] +14:59:16 [ 32] [ 6] [668899] +14:59:16 [ 37] [ 12] [507902531939] +14:59:16 [ 38] [ 6] [949302] +14:59:16 [ 39] [ 2] [00] +14:59:16 [ 41] [ 8] [03020033] +14:59:16 [ 49] [ 3] [418] +14:59:16 [ 52] [ 16] [8E2BB5D04C503F77] +14:59:16 [ 54] [ 20] [1002418C000023379600] +14:59:16 ============================================================================ +14:59:16 Sending to : +14:59:16 ============================================================================ +14:59:16 + + +waiting on router queue for slot.... +14:59:18 ============================================================================ +14:59:18 Slot Id : <393> +14:59:18 Transaction Type : RESPONSE +14:59:18 Received From : +14:59:18 ============================================================================ +14:59:18 FNo. Len. Field Value +14:59:18 ============================================================================ +14:59:18 [ 1] [ 4] [0210] +14:59:18 [ 2] [ 16] [1808931300012539] +14:59:18 [ 3] [ 6] [301000] +14:59:18 [ 7] [ 10] [0320145703] +14:59:18 [ 11] [ 6] [949302] +14:59:18 [ 12] [ 6] [145703] +14:59:18 [ 13] [ 4] [0320] +14:59:18 [ 14] [ 4] [1803] +14:59:18 [ 19] [ 3] [418] +14:59:18 [ 32] [ 6] [668899] +14:59:18 [ 37] [ 12] [507902531939] +14:59:18 [ 38] [ 6] [949302] +14:59:18 [ 39] [ 2] [00] +14:59:18 [ 41] [ 8] [03020033] +14:59:18 [ 49] [ 3] [418] +14:59:18 [ 52] [ 16] [8E2BB5D04C503F77] +14:59:18 [ 54] [ 20] [1002418C000023379600] +14:59:18 ============================================================================ +14:59:18 Calculate Source COMM Id = 4 +14:59:18 ============================================================================ +14:59:18 + + +waiting on router queue for slot.... +14:59:29 ============================================================================ +14:59:29 Slot Id : <397> +14:59:29 Transaction Type : REQUEST +14:59:29 Received From : +14:59:29 ============================================================================ +14:59:29 FNo. Len. Field Value +14:59:29 ============================================================================ +14:59:29 [ 1] [ 4] [0800] +14:59:29 [ 7] [ 10] [0320075836] +14:59:29 [ 11] [ 6] [156900] +14:59:29 [ 70] [ 3] [301] +14:59:29 ============================================================================ +14:59:29 + + +waiting on router queue for slot.... +14:59:29 Sending to : +14:59:29 ============================================================================ +14:59:29 ============================================================================ +14:59:29 Slot Id : <397> +14:59:29 Transaction Type : RESPONSE +14:59:29 Received From : +14:59:29 ============================================================================ +14:59:29 FNo. Len. Field Value +14:59:29 ============================================================================ +14:59:29 [ 1] [ 4] [0810] +14:59:29 [ 7] [ 10] [0320075836] +14:59:29 [ 11] [ 6] [156900] +14:59:29 [ 39] [ 2] [00] +14:59:29 [ 70] [ 3] [301] +14:59:29 ============================================================================ +14:59:29 Calculate Source COMM Id = 2 +14:59:29 ============================================================================ +14:59:29 + + +waiting on router queue for slot.... +14:59:31 ============================================================================ +14:59:31 Slot Id : <413> +14:59:31 Transaction Type : REQUEST +14:59:31 Received From : +14:59:31 ============================================================================ +14:59:31 FNo. Len. Field Value +14:59:31 ============================================================================ +14:59:31 [ 1] [ 4] [0200] +14:59:31 [ 2] [ 16] [6688990103744106] +14:59:31 [ 3] [ 6] [010000] +14:59:31 [ 4] [ 12] [000100000000] +14:59:31 [ 7] [ 10] [0320145927] +14:59:31 [ 11] [ 6] [777464] +14:59:31 [ 12] [ 6] [145927] +14:59:31 [ 13] [ 4] [0320] +14:59:31 [ 15] [ 4] [0320] +14:59:31 [ 18] [ 4] [6011] +14:59:31 [ 22] [ 3] [900] +14:59:31 [ 25] [ 2] [02] +14:59:31 [ 28] [ 9] [D00002000] +14:59:31 [ 32] [ 6] [621354] +14:59:31 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:59:31 [ 37] [ 12] [507903344989] +14:59:31 [ 41] [ 8] [13001400] +14:59:31 [ 42] [ 15] [NATIVE ] +14:59:31 [ 43] [ 40] [Kham Unit Kham LAO] +14:59:31 [ 49] [ 3] [418] +14:59:31 [ 52] [ 16] [8ADBDF1D777B6AFA] +14:59:31 ============================================================================ +14:59:31 + + +waiting on router queue for slot.... +14:59:31 Sending to : +14:59:31 ============================================================================ +14:59:31 Sending to : +14:59:31 ============================================================================ +14:59:32 ============================================================================ +14:59:32 Slot Id : <413> +14:59:32 Transaction Type : REQUEST +14:59:32 Received From : +14:59:32 ============================================================================ +14:59:32 FNo. Len. Field Value +14:59:32 ============================================================================ +14:59:32 [ 1] [ 4] [0200] +14:59:32 [ 2] [ 16] [6688990103744106] +14:59:32 [ 3] [ 6] [010000] +14:59:32 [ 4] [ 12] [000100000000] +14:59:32 [ 7] [ 10] [0320145927] +14:59:32 [ 11] [ 6] [777464] +14:59:32 [ 12] [ 6] [145927] +14:59:32 [ 13] [ 4] [0320] +14:59:32 [ 15] [ 4] [0320] +14:59:32 [ 18] [ 4] [6011] +14:59:32 [ 22] [ 3] [900] +14:59:32 [ 25] [ 2] [02] +14:59:32 [ 28] [ 9] [D00002000] +14:59:32 [ 32] [ 6] [621354] +14:59:32 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:59:32 [ 37] [ 12] [507903344989] +14:59:32 [ 41] [ 8] [13001400] +14:59:32 [ 42] [ 15] [NATIVE ] +14:59:32 [ 43] [ 40] [Kham Unit Kham LAO] +14:59:32 [ 49] [ 3] [418] +14:59:32 [ 52] [ 16] [8ADBDF1D777B6AFA] +14:59:32 ============================================================================ +14:59:32 + + +waiting on router queue for slot.... +14:59:32 Sending to : +14:59:32 ============================================================================ +14:59:32 ============================================================================ +14:59:32 Slot Id : <413> +14:59:32 Transaction Type : REQUEST +14:59:32 Received From : +14:59:32 ============================================================================ +14:59:32 FNo. Len. Field Value +14:59:32 ============================================================================ +14:59:32 [ 1] [ 4] [0200] +14:59:32 [ 2] [ 16] [6688990103744106] +14:59:32 [ 3] [ 6] [010000] +14:59:32 [ 4] [ 12] [000100000000] +14:59:32 [ 7] [ 10] [0320145927] +14:59:32 [ 11] [ 6] [777464] +14:59:32 [ 12] [ 6] [145927] +14:59:32 [ 13] [ 4] [0320] +14:59:32 [ 15] [ 4] [0320] +14:59:32 [ 18] [ 4] [6011] +14:59:32 [ 22] [ 3] [900] +14:59:32 [ 25] [ 2] [02] +14:59:32 [ 28] [ 9] [D00002000] +14:59:32 [ 32] [ 6] [621354] +14:59:32 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:59:32 [ 37] [ 12] [507903344989] +14:59:32 [ 41] [ 8] [13001400] +14:59:32 [ 42] [ 15] [NATIVE ] +14:59:32 [ 43] [ 40] [Kham Unit Kham LAO] +14:59:32 [ 49] [ 3] [418] +14:59:32 [ 52] [ 16] [24E7681222A72DF5] +14:59:32 ============================================================================ +14:59:32 + + +waiting on router queue for slot.... +14:59:32 Sending to : <4> +14:59:32 ============================================================================ +14:59:33 ============================================================================ +14:59:33 Slot Id : <413> +14:59:33 Transaction Type : RESPONSE +14:59:33 Received From : +14:59:33 ============================================================================ +14:59:33 FNo. Len. Field Value +14:59:33 ============================================================================ +14:59:33 [ 1] [ 4] [0210] +14:59:33 [ 2] [ 16] [6688990103744106] +14:59:33 [ 3] [ 6] [010000] +14:59:33 [ 4] [ 12] [000100000000] +14:59:33 [ 11] [ 6] [777464] +14:59:33 [ 12] [ 6] [145927] +14:59:33 [ 15] [ 4] [0320] +14:59:33 [ 18] [ 4] [6011] +14:59:33 [ 32] [ 6] [621354] +14:59:33 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:59:33 [ 37] [ 12] [507903344989] +14:59:33 [ 38] [ 6] [393954] +14:59:33 [ 39] [ 2] [00] +14:59:33 [ 41] [ 8] [13001400] +14:59:33 [ 49] [ 3] [418] +14:59:33 [ 54] [ 20] [0002418C001005404006] +14:59:33 ============================================================================ +14:59:33 Sending to : +14:59:33 ============================================================================ +14:59:33 + + +waiting on router queue for slot.... +14:59:34 ============================================================================ +14:59:34 Slot Id : <413> +14:59:34 Transaction Type : RESPONSE +14:59:34 Received From : +14:59:34 ============================================================================ +14:59:34 FNo. Len. Field Value +14:59:34 ============================================================================ +14:59:34 [ 1] [ 4] [0210] +14:59:34 [ 2] [ 16] [6688990103744106] +14:59:34 [ 3] [ 6] [010000] +14:59:34 [ 4] [ 12] [000100000000] +14:59:34 [ 11] [ 6] [777464] +14:59:34 [ 12] [ 6] [145927] +14:59:34 [ 15] [ 4] [0320] +14:59:34 [ 18] [ 4] [6011] +14:59:34 [ 32] [ 6] [621354] +14:59:34 [ 35] [ 37] [6688990103744106=43021231410685400000] +14:59:34 [ 37] [ 12] [507903344989] +14:59:34 [ 38] [ 6] [393954] +14:59:34 [ 39] [ 2] [00] +14:59:34 [ 41] [ 8] [13001400] +14:59:34 [ 49] [ 3] [418] +14:59:34 [ 54] [ 20] [0002418C001005404006] +14:59:34 ============================================================================ +14:59:34 Calculate Source COMM Id = 0 +14:59:34 ============================================================================ +14:59:34 + + +waiting on router queue for slot.... +14:59:36 ============================================================================ +14:59:36 Slot Id : <349> +14:59:36 Transaction Type : REQUEST +14:59:36 Received From : +14:59:36 ============================================================================ +14:59:36 FNo. Len. Field Value +14:59:36 ============================================================================ +14:59:36 [ 1] [ 4] [0200] +14:59:36 [ 2] [ 16] [1808931300012539] +14:59:36 [ 3] [ 6] [010000] +14:59:36 [ 4] [ 12] [000010000000] +14:59:36 [ 7] [ 10] [0320145727] +14:59:36 [ 11] [ 6] [949311] +14:59:36 [ 12] [ 6] [145727] +14:59:36 [ 13] [ 4] [0320] +14:59:36 [ 15] [ 4] [0320] +14:59:36 [ 18] [ 4] [6011] +14:59:36 [ 19] [ 3] [418] +14:59:36 [ 22] [ 3] [021] +14:59:36 [ 25] [ 2] [01] +14:59:36 [ 28] [ 9] [D00002000] +14:59:36 [ 32] [ 6] [668899] +14:59:36 [ 35] [ 27] [1808931300012539=1803500667] +14:59:36 [ 37] [ 12] [507902531940] +14:59:36 [ 41] [ 8] [03020033] +14:59:36 [ 42] [ 15] [APT ] +14:59:36 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +14:59:36 [ 49] [ 3] [418] +14:59:36 [ 52] [ 16] [0D4E2B4080C64BFD] +14:59:36 ============================================================================ +14:59:36 + + +waiting on router queue for slot.... +14:59:36 Sending to : +14:59:36 ============================================================================ +14:59:36 Sending to : +14:59:36 ============================================================================ +14:59:37 ============================================================================ +14:59:37 Slot Id : <349> +14:59:37 Transaction Type : REQUEST +14:59:37 Received From : +14:59:37 ============================================================================ +14:59:37 FNo. Len. Field Value +14:59:37 ============================================================================ +14:59:37 [ 1] [ 4] [0200] +14:59:37 [ 2] [ 16] [1808931300012539] +14:59:37 [ 3] [ 6] [010000] +14:59:37 [ 4] [ 12] [000010000000] +14:59:37 [ 7] [ 10] [0320145727] +14:59:37 [ 11] [ 6] [949311] +14:59:37 [ 12] [ 6] [145727] +14:59:37 [ 13] [ 4] [0320] +14:59:37 [ 15] [ 4] [0320] +14:59:37 [ 18] [ 4] [6011] +14:59:37 [ 19] [ 3] [418] +14:59:37 [ 22] [ 3] [021] +14:59:37 [ 25] [ 2] [01] +14:59:37 [ 28] [ 9] [D00002000] +14:59:37 [ 32] [ 6] [668899] +14:59:37 [ 35] [ 27] [1808931300012539=1803500667] +14:59:37 [ 37] [ 12] [507902531940] +14:59:37 [ 41] [ 8] [03020033] +14:59:37 [ 42] [ 15] [APT ] +14:59:37 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +14:59:37 [ 49] [ 3] [418] +14:59:37 [ 52] [ 16] [0D4E2B4080C64BFD] +14:59:37 ============================================================================ +14:59:37 + + +waiting on router queue for slot.... +14:59:37 Sending to : +14:59:37 ============================================================================ +14:59:37 ============================================================================ +14:59:37 Slot Id : <349> +14:59:37 Transaction Type : REQUEST +14:59:37 Received From : +14:59:37 ============================================================================ +14:59:37 FNo. Len. Field Value +14:59:37 ============================================================================ +14:59:37 [ 1] [ 4] [0200] +14:59:37 [ 2] [ 16] [1808931300012539] +14:59:37 [ 3] [ 6] [010000] +14:59:37 [ 4] [ 12] [000010000000] +14:59:37 [ 7] [ 10] [0320145727] +14:59:37 [ 11] [ 6] [949311] +14:59:37 [ 12] [ 6] [145727] +14:59:37 [ 13] [ 4] [0320] +14:59:37 [ 15] [ 4] [0320] +14:59:37 [ 18] [ 4] [6011] +14:59:37 [ 19] [ 3] [418] +14:59:37 [ 22] [ 3] [021] +14:59:37 [ 25] [ 2] [01] +14:59:37 [ 28] [ 9] [D00002000] +14:59:37 [ 32] [ 6] [668899] +14:59:37 [ 35] [ 27] [1808931300012539=1803500667] +14:59:37 [ 37] [ 12] [507902531940] +14:59:37 [ 41] [ 8] [03020033] +14:59:37 [ 42] [ 15] [APT ] +14:59:37 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +14:59:37 [ 49] [ 3] [418] +14:59:37 [ 52] [ 16] [8E2BB5D04C503F77] +14:59:37 ============================================================================ +14:59:37 + + +waiting on router queue for slot.... +14:59:37 Sending to : <2> +14:59:37 ============================================================================ +14:59:38 ============================================================================ +14:59:38 Slot Id : <394> +14:59:38 Transaction Type : REQUEST +14:59:38 Received From : +14:59:38 ============================================================================ +14:59:38 FNo. Len. Field Value +14:59:38 ============================================================================ +14:59:38 [ 1] [ 4] [0800] +14:59:38 [ 2] [ 5] [02531] +14:59:38 [ 3] [ 6] [579148] +14:59:38 [ 7] [ 10] [0320075938] +14:59:38 [ 11] [ 6] [807282] +14:59:38 [ 15] [ 10] [0320075938] +14:59:38 [ 37] [ 11] [57914807282] +14:59:38 [ 70] [ 3] [001] +14:59:38 ============================================================================ +14:59:38 + + +waiting on router queue for slot.... +14:59:38 ============================================================================ +14:59:38 Slot Id : <394> +14:59:38 Transaction Type : RESPONSE +14:59:38 Received From : +14:59:38 ============================================================================ +14:59:38 FNo. Len. Field Value +14:59:38 ============================================================================ +14:59:38 [ 1] [ 4] [0810] +14:59:38 [ 7] [ 10] [0320075938] +14:59:38 [ 11] [ 6] [807282] +14:59:38 [ 15] [ 4] [0320] +14:59:38 [ 37] [ 12] [57914807282] +14:59:38 [ 39] [ 2] [00] +14:59:38 [ 70] [ 3] [001] +14:59:38 ============================================================================ +14:59:38 Sending to : +14:59:38 ============================================================================ +14:59:38 + + +waiting on router queue for slot.... +14:59:40 ============================================================================ +14:59:40 Slot Id : <414> +14:59:40 Transaction Type : REQUEST +14:59:40 Received From : +14:59:40 ============================================================================ +14:59:40 FNo. Len. Field Value +14:59:40 ============================================================================ +14:59:40 [ 1] [ 4] [0200] +14:59:40 [ 2] [ 16] [6688990101789202] +14:59:40 [ 3] [ 6] [010000] +14:59:40 [ 4] [ 12] [000100000000] +14:59:40 [ 7] [ 10] [0320145935] +14:59:40 [ 11] [ 6] [777490] +14:59:40 [ 12] [ 6] [145935] +14:59:40 [ 13] [ 4] [0320] +14:59:40 [ 15] [ 4] [0320] +14:59:40 [ 18] [ 4] [6011] +14:59:40 [ 22] [ 3] [900] +14:59:40 [ 25] [ 2] [02] +14:59:40 [ 28] [ 9] [D00002000] +14:59:40 [ 32] [ 6] [621354] +14:59:40 [ 35] [ 37] [6688990101789202=42051231920204300000] +14:59:40 [ 37] [ 12] [507904635729] +14:59:40 [ 41] [ 8] [17000800] +14:59:40 [ 42] [ 15] [NATIVE ] +14:59:40 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:59:40 [ 49] [ 3] [418] +14:59:40 [ 52] [ 16] [4C82B4D1FCD36787] +14:59:40 ============================================================================ +14:59:40 + + +waiting on router queue for slot.... +14:59:40 Sending to : +14:59:40 ============================================================================ +14:59:40 Sending to : +14:59:40 ============================================================================ +14:59:40 ============================================================================ +14:59:40 Slot Id : <414> +14:59:40 Transaction Type : REQUEST +14:59:40 Received From : +14:59:40 ============================================================================ +14:59:40 FNo. Len. Field Value +14:59:40 ============================================================================ +14:59:40 [ 1] [ 4] [0200] +14:59:40 [ 2] [ 16] [6688990101789202] +14:59:40 [ 3] [ 6] [010000] +14:59:40 [ 4] [ 12] [000100000000] +14:59:40 [ 7] [ 10] [0320145935] +14:59:40 [ 11] [ 6] [777490] +14:59:40 [ 12] [ 6] [145935] +14:59:40 [ 13] [ 4] [0320] +14:59:40 [ 15] [ 4] [0320] +14:59:40 [ 18] [ 4] [6011] +14:59:40 [ 22] [ 3] [900] +14:59:40 [ 25] [ 2] [02] +14:59:40 [ 28] [ 9] [D00002000] +14:59:40 [ 32] [ 6] [621354] +14:59:40 [ 35] [ 37] [6688990101789202=42051231920204300000] +14:59:40 [ 37] [ 12] [507904635729] +14:59:40 [ 41] [ 8] [17000800] +14:59:40 [ 42] [ 15] [NATIVE ] +14:59:40 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:59:40 [ 49] [ 3] [418] +14:59:40 [ 52] [ 16] [4C82B4D1FCD36787] +14:59:40 ============================================================================ +14:59:40 + + +waiting on router queue for slot.... +14:59:40 Sending to : +14:59:40 ============================================================================ +14:59:40 ============================================================================ +14:59:40 Slot Id : <414> +14:59:40 Transaction Type : REQUEST +14:59:40 Received From : +14:59:40 ============================================================================ +14:59:40 FNo. Len. Field Value +14:59:40 ============================================================================ +14:59:40 [ 1] [ 4] [0200] +14:59:40 [ 2] [ 16] [6688990101789202] +14:59:40 [ 3] [ 6] [010000] +14:59:40 [ 4] [ 12] [000100000000] +14:59:40 [ 7] [ 10] [0320145935] +14:59:40 [ 11] [ 6] [777490] +14:59:40 [ 12] [ 6] [145935] +14:59:40 [ 13] [ 4] [0320] +14:59:40 [ 15] [ 4] [0320] +14:59:40 [ 18] [ 4] [6011] +14:59:40 [ 22] [ 3] [900] +14:59:40 [ 25] [ 2] [02] +14:59:40 [ 28] [ 9] [D00002000] +14:59:40 [ 32] [ 6] [621354] +14:59:40 [ 35] [ 37] [6688990101789202=42051231920204300000] +14:59:40 [ 37] [ 12] [507904635729] +14:59:40 [ 41] [ 8] [17000800] +14:59:40 [ 42] [ 15] [NATIVE ] +14:59:40 [ 43] [ 40] [Ban Nakhai Naxay LAO] +14:59:40 [ 49] [ 3] [418] +14:59:40 [ 52] [ 16] [B763F1BB0130F7D6] +14:59:40 ============================================================================ +14:59:40 + + +waiting on router queue for slot.... +14:59:40 Sending to : <4> +14:59:40 ============================================================================ +14:59:41 ============================================================================ +14:59:41 Slot Id : <414> +14:59:41 Transaction Type : RESPONSE +14:59:41 Received From : +14:59:41 ============================================================================ +14:59:41 FNo. Len. Field Value +14:59:41 ============================================================================ +14:59:41 [ 1] [ 4] [0210] +14:59:41 [ 2] [ 16] [6688990101789202] +14:59:41 [ 3] [ 6] [010000] +14:59:41 [ 4] [ 12] [000100000000] +14:59:41 [ 11] [ 6] [777490] +14:59:41 [ 12] [ 6] [145935] +14:59:41 [ 15] [ 4] [0320] +14:59:41 [ 18] [ 4] [6011] +14:59:41 [ 32] [ 6] [621354] +14:59:41 [ 35] [ 37] [6688990101789202=42051231920204300000] +14:59:41 [ 37] [ 12] [507904635729] +14:59:41 [ 38] [ 6] [586979] +14:59:41 [ 39] [ 2] [00] +14:59:41 [ 41] [ 8] [17000800] +14:59:41 [ 49] [ 3] [418] +14:59:41 [ 54] [ 20] [0002418C000239680050] +14:59:41 ============================================================================ +14:59:41 Sending to : +14:59:41 ============================================================================ +14:59:41 + + +waiting on router queue for slot.... +14:59:42 ============================================================================ +14:59:42 Slot Id : <414> +14:59:42 Transaction Type : RESPONSE +14:59:42 Received From : +14:59:42 ============================================================================ +14:59:42 FNo. Len. Field Value +14:59:42 ============================================================================ +14:59:42 [ 1] [ 4] [0210] +14:59:42 [ 2] [ 16] [6688990101789202] +14:59:42 [ 3] [ 6] [010000] +14:59:42 [ 4] [ 12] [000100000000] +14:59:42 [ 11] [ 6] [777490] +14:59:42 [ 12] [ 6] [145935] +14:59:42 [ 15] [ 4] [0320] +14:59:42 [ 18] [ 4] [6011] +14:59:42 [ 32] [ 6] [621354] +14:59:42 [ 35] [ 37] [6688990101789202=42051231920204300000] +14:59:42 [ 37] [ 12] [507904635729] +14:59:42 [ 38] [ 6] [586979] +14:59:42 [ 39] [ 2] [00] +14:59:42 [ 41] [ 8] [17000800] +14:59:42 [ 49] [ 3] [418] +14:59:42 [ 54] [ 20] [0002418C000239680050] +14:59:42 ============================================================================ +14:59:42 Calculate Source COMM Id = 0 +14:59:42 ============================================================================ +14:59:42 + + +waiting on router queue for slot.... +14:59:43 ============================================================================ +14:59:43 Slot Id : <349> +14:59:43 Transaction Type : RESPONSE +14:59:43 Received From : +14:59:43 ============================================================================ +14:59:43 FNo. Len. Field Value +14:59:43 ============================================================================ +14:59:43 [ 1] [ 4] [0210] +14:59:43 [ 2] [ 16] [1808931300012539] +14:59:43 [ 3] [ 6] [010000] +14:59:43 [ 4] [ 12] [000010000000] +14:59:43 [ 6] [ 12] [000010000000] +14:59:43 [ 7] [ 10] [0320145727] +14:59:43 [ 11] [ 6] [949311] +14:59:43 [ 12] [ 6] [145727] +14:59:43 [ 13] [ 4] [0320] +14:59:43 [ 18] [ 4] [6011] +14:59:43 [ 19] [ 3] [418] +14:59:43 [ 22] [ 3] [021] +14:59:43 [ 32] [ 6] [668899] +14:59:43 [ 35] [ 27] [1808931300012539=1803500667] +14:59:43 [ 37] [ 12] [507902531940] +14:59:43 [ 38] [ 6] [949311] +14:59:43 [ 39] [ 2] [00] +14:59:43 [ 41] [ 8] [03020033] +14:59:43 [ 49] [ 3] [418] +14:59:43 [ 52] [ 16] [8E2BB5D04C503F77] +14:59:43 [ 54] [ 20] [1001418C000013179600] +14:59:43 ============================================================================ +14:59:43 Sending to : +14:59:43 ============================================================================ +14:59:43 + + +waiting on router queue for slot.... +14:59:44 ============================================================================ +14:59:44 Slot Id : <349> +14:59:44 Transaction Type : RESPONSE +14:59:44 Received From : +14:59:44 ============================================================================ +14:59:44 FNo. Len. Field Value +14:59:44 ============================================================================ +14:59:44 [ 1] [ 4] [0210] +14:59:44 [ 2] [ 16] [1808931300012539] +14:59:44 [ 3] [ 6] [010000] +14:59:44 [ 4] [ 12] [000010000000] +14:59:44 [ 6] [ 12] [000010000000] +14:59:44 [ 7] [ 10] [0320145727] +14:59:44 [ 11] [ 6] [949311] +14:59:44 [ 12] [ 6] [145727] +14:59:44 [ 13] [ 4] [0320] +14:59:44 [ 18] [ 4] [6011] +14:59:44 [ 19] [ 3] [418] +14:59:44 [ 22] [ 3] [021] +14:59:44 [ 32] [ 6] [668899] +14:59:44 [ 35] [ 27] [1808931300012539=1803500667] +14:59:44 [ 37] [ 12] [507902531940] +14:59:44 [ 38] [ 6] [949311] +14:59:44 [ 39] [ 2] [00] +14:59:44 [ 41] [ 8] [03020033] +14:59:44 [ 49] [ 3] [418] +14:59:44 [ 52] [ 16] [8E2BB5D04C503F77] +14:59:44 [ 54] [ 20] [1001418C000013179600] +14:59:44 ============================================================================ +14:59:44 Calculate Source COMM Id = 4 +14:59:44 ============================================================================ +14:59:44 + + +waiting on router queue for slot.... +14:59:45 ============================================================================ +14:59:45 Slot Id : <387> +14:59:45 Transaction Type : REQUEST +14:59:45 Received From : +14:59:45 ============================================================================ +14:59:45 FNo. Len. Field Value +14:59:45 ============================================================================ +14:59:45 [ 1] [ 4] [0200] +14:59:45 [ 2] [ 16] [1808930800007320] +14:59:45 [ 3] [ 6] [011000] +14:59:45 [ 4] [ 12] [000100000000] +14:59:45 [ 7] [ 10] [0320145940] +14:59:45 [ 11] [ 6] [777514] +14:59:45 [ 12] [ 6] [145940] +14:59:45 [ 13] [ 4] [0320] +14:59:45 [ 15] [ 4] [0320] +14:59:45 [ 18] [ 4] [6011] +14:59:45 [ 22] [ 3] [900] +14:59:45 [ 25] [ 2] [02] +14:59:45 [ 28] [ 9] [D00002000] +14:59:45 [ 32] [ 6] [621354] +14:59:45 [ 35] [ 27] [1808930800007320=1803500910] +14:59:45 [ 37] [ 12] [507902916579] +14:59:45 [ 41] [ 8] [12001400] +14:59:45 [ 42] [ 15] [NATIVE ] +14:59:45 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +14:59:45 [ 49] [ 3] [418] +14:59:45 [ 52] [ 16] [8E6558B816FCF163] +14:59:45 ============================================================================ +14:59:45 + + +waiting on router queue for slot.... +14:59:45 Sending to : +14:59:45 ============================================================================ +14:59:45 Sending to : +14:59:45 ============================================================================ +14:59:45 ============================================================================ +14:59:45 Slot Id : <387> +14:59:45 Transaction Type : REQUEST +14:59:45 Received From : +14:59:45 ============================================================================ +14:59:45 FNo. Len. Field Value +14:59:45 ============================================================================ +14:59:45 [ 1] [ 4] [0200] +14:59:45 [ 2] [ 16] [1808930800007320] +14:59:45 [ 3] [ 6] [011000] +14:59:45 [ 4] [ 12] [000100000000] +14:59:45 [ 7] [ 10] [0320145940] +14:59:45 [ 11] [ 6] [777514] +14:59:45 [ 12] [ 6] [145940] +14:59:45 [ 13] [ 4] [0320] +14:59:45 [ 15] [ 4] [0320] +14:59:45 [ 18] [ 4] [6011] +14:59:45 [ 22] [ 3] [900] +14:59:45 [ 25] [ 2] [02] +14:59:45 [ 28] [ 9] [D00002000] +14:59:45 [ 32] [ 6] [621354] +14:59:45 [ 35] [ 27] [1808930800007320=1803500910] +14:59:45 [ 37] [ 12] [507902916579] +14:59:45 [ 41] [ 8] [12001400] +14:59:45 [ 42] [ 15] [NATIVE ] +14:59:45 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +14:59:45 [ 49] [ 3] [418] +14:59:45 [ 52] [ 16] [8E6558B816FCF163] +14:59:45 ============================================================================ +14:59:45 + + +waiting on router queue for slot.... +14:59:45 Sending to : +14:59:45 ============================================================================ +14:59:45 ============================================================================ +14:59:45 Slot Id : <387> +14:59:45 Transaction Type : REQUEST +14:59:45 Received From : +14:59:45 ============================================================================ +14:59:45 FNo. Len. Field Value +14:59:45 ============================================================================ +14:59:45 [ 1] [ 4] [0200] +14:59:45 [ 2] [ 16] [1808930800007320] +14:59:45 [ 3] [ 6] [011000] +14:59:45 [ 4] [ 12] [000100000000] +14:59:45 [ 7] [ 10] [0320145940] +14:59:45 [ 11] [ 6] [777514] +14:59:45 [ 12] [ 6] [145940] +14:59:45 [ 13] [ 4] [0320] +14:59:45 [ 15] [ 4] [0320] +14:59:45 [ 18] [ 4] [6011] +14:59:45 [ 22] [ 3] [900] +14:59:45 [ 25] [ 2] [02] +14:59:45 [ 28] [ 9] [D00002000] +14:59:45 [ 32] [ 6] [621354] +14:59:45 [ 35] [ 27] [1808930800007320=1803500910] +14:59:45 [ 37] [ 12] [507902916579] +14:59:45 [ 41] [ 8] [12001400] +14:59:45 [ 42] [ 15] [NATIVE ] +14:59:45 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +14:59:45 [ 49] [ 3] [418] +14:59:45 [ 52] [ 16] [BBB62FFAF89E34AC] +14:59:45 ============================================================================ +14:59:45 + + +waiting on router queue for slot.... +14:59:45 Sending to : <2> +14:59:45 ============================================================================ +14:59:48 ============================================================================ +14:59:48 Slot Id : <399> +14:59:48 Transaction Type : REQUEST +14:59:48 Received From : +14:59:48 ============================================================================ +14:59:48 FNo. Len. Field Value +14:59:48 ============================================================================ +14:59:48 [ 1] [ 4] [0200] +14:59:48 [ 2] [ 16] [6688990102368303] +14:59:48 [ 3] [ 6] [300000] +14:59:48 [ 4] [ 12] [000000000000] +14:59:48 [ 7] [ 10] [0320145944] +14:59:48 [ 11] [ 6] [777525] +14:59:48 [ 12] [ 6] [145944] +14:59:48 [ 13] [ 4] [0320] +14:59:48 [ 15] [ 4] [0320] +14:59:48 [ 18] [ 4] [6011] +14:59:48 [ 22] [ 3] [900] +14:59:48 [ 25] [ 2] [02] +14:59:48 [ 28] [ 9] [D00000000] +14:59:48 [ 32] [ 6] [621354] +14:59:48 [ 35] [ 37] [6688990102368303=42081231830359500000] +14:59:48 [ 37] [ 12] [507902925741] +14:59:48 [ 41] [ 8] [12001500] +14:59:48 [ 42] [ 15] [NATIVE ] +14:59:48 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +14:59:48 [ 49] [ 3] [418] +14:59:48 [ 52] [ 16] [0F3BD719AE7BE2EF] +14:59:48 ============================================================================ +14:59:48 + + +waiting on router queue for slot.... +14:59:48 Sending to : +14:59:48 ============================================================================ +14:59:48 Sending to : +14:59:48 ============================================================================ +14:59:49 ============================================================================ +14:59:49 Slot Id : <399> +14:59:49 Transaction Type : REQUEST +14:59:49 Received From : +14:59:49 ============================================================================ +14:59:49 FNo. Len. Field Value +14:59:49 ============================================================================ +14:59:49 [ 1] [ 4] [0200] +14:59:49 [ 2] [ 16] [6688990102368303] +14:59:49 [ 3] [ 6] [300000] +14:59:49 [ 4] [ 12] [000000000000] +14:59:49 [ 7] [ 10] [0320145944] +14:59:49 [ 11] [ 6] [777525] +14:59:49 [ 12] [ 6] [145944] +14:59:49 [ 13] [ 4] [0320] +14:59:49 [ 15] [ 4] [0320] +14:59:49 [ 18] [ 4] [6011] +14:59:49 [ 22] [ 3] [900] +14:59:49 [ 25] [ 2] [02] +14:59:49 [ 28] [ 9] [D00000000] +14:59:49 [ 32] [ 6] [621354] +14:59:49 [ 35] [ 37] [6688990102368303=42081231830359500000] +14:59:49 [ 37] [ 12] [507902925741] +14:59:49 [ 41] [ 8] [12001500] +14:59:49 [ 42] [ 15] [NATIVE ] +14:59:49 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +14:59:49 [ 49] [ 3] [418] +14:59:49 [ 52] [ 16] [0F3BD719AE7BE2EF] +14:59:49 ============================================================================ +14:59:49 + + +waiting on router queue for slot.... +14:59:49 Sending to : +14:59:49 ============================================================================ +14:59:49 ============================================================================ +14:59:49 Slot Id : <399> +14:59:49 Transaction Type : REQUEST +14:59:49 Received From : +14:59:49 ============================================================================ +14:59:49 FNo. Len. Field Value +14:59:49 ============================================================================ +14:59:49 [ 1] [ 4] [0200] +14:59:49 [ 2] [ 16] [6688990102368303] +14:59:49 [ 3] [ 6] [300000] +14:59:49 [ 4] [ 12] [000000000000] +14:59:49 [ 7] [ 10] [0320145944] +14:59:49 [ 11] [ 6] [777525] +14:59:49 [ 12] [ 6] [145944] +14:59:49 [ 13] [ 4] [0320] +14:59:49 [ 15] [ 4] [0320] +14:59:49 [ 18] [ 4] [6011] +14:59:49 [ 22] [ 3] [900] +14:59:49 [ 25] [ 2] [02] +14:59:49 [ 28] [ 9] [D00000000] +14:59:49 [ 32] [ 6] [621354] +14:59:49 [ 35] [ 37] [6688990102368303=42081231830359500000] +14:59:49 [ 37] [ 12] [507902925741] +14:59:49 [ 41] [ 8] [12001500] +14:59:49 [ 42] [ 15] [NATIVE ] +14:59:49 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +14:59:49 [ 49] [ 3] [418] +14:59:49 [ 52] [ 16] [21F6DE9D9DD0BA16] +14:59:49 ============================================================================ +14:59:49 + + +waiting on router queue for slot.... +14:59:49 Sending to : <4> +14:59:49 ============================================================================ +14:59:50 ============================================================================ +14:59:50 Slot Id : <399> +14:59:50 Transaction Type : RESPONSE +14:59:50 Received From : +14:59:50 ============================================================================ +14:59:50 FNo. Len. Field Value +14:59:50 ============================================================================ +14:59:50 [ 1] [ 4] [0210] +14:59:50 [ 2] [ 16] [6688990102368303] +14:59:50 [ 3] [ 6] [300000] +14:59:50 [ 4] [ 12] [000000000000] +14:59:50 [ 11] [ 6] [777525] +14:59:50 [ 12] [ 6] [145944] +14:59:50 [ 15] [ 4] [0320] +14:59:50 [ 18] [ 4] [6011] +14:59:50 [ 32] [ 6] [621354] +14:59:50 [ 35] [ 37] [6688990102368303=42081231830359500000] +14:59:50 [ 37] [ 12] [507902925741] +14:59:50 [ 38] [ 6] [273395] +14:59:50 [ 39] [ 2] [00] +14:59:50 [ 41] [ 8] [12001500] +14:59:50 [ 49] [ 3] [418] +14:59:50 [ 54] [ 20] [0002418C000140551648] +14:59:50 ============================================================================ +14:59:50 Sending to : +14:59:50 ============================================================================ +14:59:50 + + +waiting on router queue for slot.... +14:59:51 ============================================================================ +14:59:51 Slot Id : <399> +14:59:51 Transaction Type : RESPONSE +14:59:51 Received From : +14:59:51 ============================================================================ +14:59:51 FNo. Len. Field Value +14:59:51 ============================================================================ +14:59:51 [ 1] [ 4] [0210] +14:59:51 [ 2] [ 16] [6688990102368303] +14:59:51 [ 3] [ 6] [300000] +14:59:51 [ 4] [ 12] [000000000000] +14:59:51 [ 11] [ 6] [777525] +14:59:51 [ 12] [ 6] [145944] +14:59:51 [ 15] [ 4] [0320] +14:59:51 [ 18] [ 4] [6011] +14:59:51 [ 32] [ 6] [621354] +14:59:51 [ 35] [ 37] [6688990102368303=42081231830359500000] +14:59:51 [ 37] [ 12] [507902925741] +14:59:51 [ 38] [ 6] [273395] +14:59:51 [ 39] [ 2] [00] +14:59:51 [ 41] [ 8] [12001500] +14:59:51 [ 49] [ 3] [418] +14:59:51 [ 54] [ 20] [0002418C000140551648] +14:59:51 ============================================================================ +14:59:51 Calculate Source COMM Id = 0 +14:59:51 ============================================================================ +14:59:51 + + +waiting on router queue for slot.... +14:59:52 ============================================================================ +14:59:52 Slot Id : <387> +14:59:52 Transaction Type : RESPONSE +14:59:52 Received From : +14:59:52 ============================================================================ +14:59:52 FNo. Len. Field Value +14:59:52 ============================================================================ +14:59:52 [ 1] [ 4] [0210] +14:59:52 [ 2] [ 16] [1808930800007320] +14:59:52 [ 3] [ 6] [011000] +14:59:52 [ 4] [ 12] [000100000000] +14:59:52 [ 6] [ 12] [000100000000] +14:59:52 [ 7] [ 10] [0320145940] +14:59:52 [ 11] [ 6] [777514] +14:59:52 [ 12] [ 6] [145940] +14:59:52 [ 13] [ 4] [0320] +14:59:52 [ 18] [ 4] [6011] +14:59:52 [ 19] [ 3] [418] +14:59:52 [ 22] [ 3] [021] +14:59:52 [ 32] [ 6] [621354] +14:59:52 [ 35] [ 27] [1808930800007320=1803500910] +14:59:52 [ 37] [ 12] [507902916579] +14:59:52 [ 38] [ 6] [777514] +14:59:52 [ 39] [ 2] [00] +14:59:52 [ 41] [ 8] [12001400] +14:59:52 [ 49] [ 3] [418] +14:59:52 [ 52] [ 16] [BBB62FFAF89E34AC] +14:59:52 [ 54] [ 20] [1001418C000302635100] +14:59:52 ============================================================================ +14:59:52 Sending to : +14:59:52 ============================================================================ +14:59:52 + + +waiting on router queue for slot.... +14:59:53 ============================================================================ +14:59:53 Slot Id : <387> +14:59:53 Transaction Type : RESPONSE +14:59:53 Received From : +14:59:53 ============================================================================ +14:59:53 FNo. Len. Field Value +14:59:53 ============================================================================ +14:59:53 [ 1] [ 4] [0210] +14:59:53 [ 2] [ 16] [1808930800007320] +14:59:53 [ 3] [ 6] [011000] +14:59:53 [ 4] [ 12] [000100000000] +14:59:53 [ 6] [ 12] [000100000000] +14:59:53 [ 7] [ 10] [0320145940] +14:59:53 [ 11] [ 6] [777514] +14:59:53 [ 12] [ 6] [145940] +14:59:53 [ 13] [ 4] [0320] +14:59:53 [ 18] [ 4] [6011] +14:59:53 [ 19] [ 3] [418] +14:59:53 [ 22] [ 3] [021] +14:59:53 [ 32] [ 6] [621354] +14:59:53 [ 35] [ 27] [1808930800007320=1803500910] +14:59:53 [ 37] [ 12] [507902916579] +14:59:53 [ 38] [ 6] [777514] +14:59:53 [ 39] [ 2] [00] +14:59:53 [ 41] [ 8] [12001400] +14:59:53 [ 49] [ 3] [418] +14:59:53 [ 52] [ 16] [BBB62FFAF89E34AC] +14:59:53 [ 54] [ 20] [1001418C000302635100] +14:59:53 ============================================================================ +14:59:53 Calculate Source COMM Id = 0 +14:59:53 ============================================================================ +14:59:53 + + +waiting on router queue for slot.... +14:59:55 ============================================================================ +14:59:55 Slot Id : <418> +14:59:55 Transaction Type : REQUEST +14:59:55 Received From : +14:59:55 ============================================================================ +14:59:55 FNo. Len. Field Value +14:59:55 ============================================================================ +14:59:55 [ 1] [ 4] [0800] +14:59:55 [ 7] [ 10] [0320080742] +14:59:55 [ 11] [ 6] [017541] +14:59:55 [ 37] [ 12] [57915017541] +14:59:55 [ 70] [ 3] [301] +14:59:55 ============================================================================ +14:59:55 + + +waiting on router queue for slot.... +14:59:55 Sending to : +14:59:55 ============================================================================ +14:59:55 ============================================================================ +14:59:55 Slot Id : <418> +14:59:55 Transaction Type : RESPONSE +14:59:55 Received From : +14:59:55 ============================================================================ +14:59:55 FNo. Len. Field Value +14:59:55 ============================================================================ +14:59:55 [ 1] [ 4] [0810] +14:59:55 [ 7] [ 10] [0320080742] +14:59:55 [ 11] [ 6] [017541] +14:59:55 [ 37] [ 12] [579150175410] +14:59:55 [ 39] [ 2] [00] +14:59:55 [ 70] [ 3] [810] +14:59:55 ============================================================================ +14:59:55 Calculate Source COMM Id = 1 +14:59:55 ============================================================================ +14:59:55 + + +waiting on router queue for slot.... +14:59:57 ============================================================================ +14:59:57 Slot Id : <372> +14:59:57 Transaction Type : REQUEST +14:59:57 Received From : +14:59:57 ============================================================================ +14:59:57 FNo. Len. Field Value +14:59:57 ============================================================================ +14:59:57 [ 1] [ 4] [0200] +14:59:57 [ 2] [ 16] [6213543000161488] +14:59:57 [ 3] [ 6] [301000] +14:59:57 [ 4] [ 12] [000000000000] +14:59:57 [ 7] [ 10] [0320145747] +14:59:57 [ 11] [ 6] [949320] +14:59:57 [ 12] [ 6] [145747] +14:59:57 [ 13] [ 4] [0320] +14:59:57 [ 15] [ 4] [0320] +14:59:57 [ 18] [ 4] [6011] +14:59:57 [ 19] [ 3] [418] +14:59:57 [ 22] [ 3] [021] +14:59:57 [ 25] [ 2] [01] +14:59:57 [ 28] [ 9] [D00000000] +14:59:57 [ 32] [ 6] [668899] +14:59:57 [ 35] [ 32] [6213543000161488=491212016148586] +14:59:57 [ 37] [ 12] [507902556287] +14:59:57 [ 41] [ 8] [03016004] +14:59:57 [ 42] [ 15] [APT ] +14:59:57 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +14:59:57 [ 49] [ 3] [418] +14:59:57 [ 52] [ 16] [FE06F851D3E63FB5] +14:59:57 ============================================================================ +14:59:57 + + +waiting on router queue for slot.... +14:59:57 Sending to : +14:59:57 ============================================================================ +14:59:57 Sending to : +14:59:57 ============================================================================ +14:59:57 ============================================================================ +14:59:57 Slot Id : <368> +14:59:57 Transaction Type : REQUEST +14:59:57 Received From : +14:59:57 ============================================================================ +14:59:57 FNo. Len. Field Value +14:59:57 ============================================================================ +14:59:57 [ 1] [ 4] [0800] +14:59:57 [ 7] [ 10] [0320075904] +14:59:57 [ 11] [ 6] [156901] +14:59:57 [ 70] [ 3] [301] +14:59:57 ============================================================================ +14:59:57 + + +waiting on router queue for slot.... +14:59:57 Sending to : +14:59:57 ============================================================================ +14:59:57 ============================================================================ +14:59:57 Slot Id : <368> +14:59:57 Transaction Type : RESPONSE +14:59:57 Received From : +14:59:57 ============================================================================ +14:59:57 FNo. Len. Field Value +14:59:57 ============================================================================ +14:59:57 [ 1] [ 4] [0810] +14:59:57 [ 7] [ 10] [0320075904] +14:59:57 [ 11] [ 6] [156901] +14:59:57 [ 39] [ 2] [00] +14:59:57 [ 70] [ 3] [301] +14:59:57 ============================================================================ +14:59:57 Calculate Source COMM Id = 2 +14:59:57 ============================================================================ +14:59:57 + + +waiting on router queue for slot.... +14:59:57 ============================================================================ +14:59:57 Slot Id : <372> +14:59:57 Transaction Type : REQUEST +14:59:57 Received From : +14:59:57 ============================================================================ +14:59:57 FNo. Len. Field Value +14:59:57 ============================================================================ +14:59:57 [ 1] [ 4] [0200] +14:59:57 [ 2] [ 16] [6213543000161488] +14:59:57 [ 3] [ 6] [301000] +14:59:57 [ 4] [ 12] [000000000000] +14:59:57 [ 7] [ 10] [0320145747] +14:59:57 [ 11] [ 6] [949320] +14:59:57 [ 12] [ 6] [145747] +14:59:57 [ 13] [ 4] [0320] +14:59:57 [ 15] [ 4] [0320] +14:59:57 [ 18] [ 4] [6011] +14:59:57 [ 19] [ 3] [418] +14:59:57 [ 22] [ 3] [021] +14:59:57 [ 25] [ 2] [01] +14:59:57 [ 28] [ 9] [D00000000] +14:59:57 [ 32] [ 6] [668899] +14:59:57 [ 35] [ 32] [6213543000161488=491212016148586] +14:59:57 [ 37] [ 12] [507902556287] +14:59:57 [ 41] [ 8] [03016004] +14:59:57 [ 42] [ 15] [APT ] +14:59:57 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +14:59:57 [ 49] [ 3] [418] +14:59:57 [ 52] [ 16] [FE06F851D3E63FB5] +14:59:57 ============================================================================ +14:59:57 + + +waiting on router queue for slot.... +14:59:57 Sending to : +14:59:57 ============================================================================ +14:59:57 ============================================================================ +14:59:57 Slot Id : <372> +14:59:57 Transaction Type : REQUEST +14:59:57 Received From : +14:59:57 ============================================================================ +14:59:57 FNo. Len. Field Value +14:59:57 ============================================================================ +14:59:57 [ 1] [ 4] [0200] +14:59:57 [ 2] [ 16] [6213543000161488] +14:59:57 [ 3] [ 6] [301000] +14:59:57 [ 4] [ 12] [000000000000] +14:59:57 [ 7] [ 10] [0320145747] +14:59:57 [ 11] [ 6] [949320] +14:59:57 [ 12] [ 6] [145747] +14:59:57 [ 13] [ 4] [0320] +14:59:57 [ 15] [ 4] [0320] +14:59:57 [ 18] [ 4] [6011] +14:59:57 [ 19] [ 3] [418] +14:59:57 [ 22] [ 3] [021] +14:59:57 [ 25] [ 2] [01] +14:59:57 [ 28] [ 9] [D00000000] +14:59:57 [ 32] [ 6] [668899] +14:59:57 [ 35] [ 32] [6213543000161488=491212016148586] +14:59:57 [ 37] [ 12] [507902556287] +14:59:57 [ 41] [ 8] [03016004] +14:59:57 [ 42] [ 15] [APT ] +14:59:57 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +14:59:57 [ 49] [ 3] [418] +14:59:57 [ 52] [ 16] [C8A1C2347D94A541] +14:59:57 ============================================================================ +14:59:57 + + +waiting on router queue for slot.... +14:59:57 Sending to : <0> +14:59:57 ============================================================================ +14:59:58 ============================================================================ +14:59:58 Slot Id : <372> +14:59:58 Transaction Type : RESPONSE +14:59:58 Received From : +14:59:58 ============================================================================ +14:59:58 FNo. Len. Field Value +14:59:58 ============================================================================ +14:59:58 [ 1] [ 4] [0210] +14:59:58 [ 2] [ 16] [6213543000161488] +14:59:58 [ 3] [ 6] [301000] +14:59:58 [ 4] [ 12] [000000000000] +14:59:58 [ 7] [ 10] [0320145747] +14:59:58 [ 11] [ 6] [949320] +14:59:58 [ 12] [ 6] [145747] +14:59:58 [ 13] [ 4] [0320] +14:59:58 [ 15] [ 4] [0320] +14:59:58 [ 18] [ 4] [6011] +14:59:58 [ 19] [ 3] [418] +14:59:58 [ 32] [ 6] [668899] +14:59:58 [ 35] [ 32] [6213543000161488=491212016148586] +14:59:58 [ 37] [ 12] [507902556287] +14:59:58 [ 38] [ 6] [884975] +14:59:58 [ 39] [ 2] [00] +14:59:58 [ 41] [ 8] [03016004] +14:59:58 [ 49] [ 3] [418] +14:59:58 [ 54] [ 40] [1001418C0000649173711002418C000064917371] +14:59:58 ============================================================================ +14:59:58 Sending to : +14:59:58 ============================================================================ +14:59:58 + + +waiting on router queue for slot.... +14:59:59 ============================================================================ +14:59:59 Slot Id : <372> +14:59:59 Transaction Type : RESPONSE +14:59:59 Received From : +14:59:59 ============================================================================ +14:59:59 FNo. Len. Field Value +14:59:59 ============================================================================ +14:59:59 [ 1] [ 4] [0210] +14:59:59 [ 2] [ 16] [6213543000161488] +14:59:59 [ 3] [ 6] [301000] +14:59:59 [ 4] [ 12] [000000000000] +14:59:59 [ 7] [ 10] [0320145747] +14:59:59 [ 11] [ 6] [949320] +14:59:59 [ 12] [ 6] [145747] +14:59:59 [ 13] [ 4] [0320] +14:59:59 [ 15] [ 4] [0320] +14:59:59 [ 18] [ 4] [6011] +14:59:59 [ 19] [ 3] [418] +14:59:59 [ 32] [ 6] [668899] +14:59:59 [ 35] [ 32] [6213543000161488=491212016148586] +14:59:59 [ 37] [ 12] [507902556287] +14:59:59 [ 38] [ 6] [884975] +14:59:59 [ 39] [ 2] [00] +14:59:59 [ 41] [ 8] [03016004] +14:59:59 [ 49] [ 3] [418] +14:59:59 [ 54] [ 40] [1001418C0000649173711002418C000064917371] +14:59:59 ============================================================================ +14:59:59 Calculate Source COMM Id = 4 +14:59:59 ============================================================================ +14:59:59 + + +waiting on router queue for slot.... +15:00:06 ============================================================================ +15:00:06 Slot Id : <419> +15:00:06 Transaction Type : REQUEST +15:00:06 Received From : +15:00:06 ============================================================================ +15:00:06 FNo. Len. Field Value +15:00:06 ============================================================================ +15:00:06 [ 1] [ 4] [0800] +15:00:06 [ 7] [ 10] [0320221154] +15:00:06 [ 11] [ 6] [151154] +15:00:06 [ 37] [ 12] [57915151154] +15:00:06 [ 70] [ 3] [301] +15:00:06 ============================================================================ +15:00:06 + + +waiting on router queue for slot.... +15:00:06 Sending to : +15:00:06 ============================================================================ +15:00:06 ============================================================================ +15:00:06 Slot Id : <419> +15:00:06 Transaction Type : RESPONSE +15:00:06 Received From : +15:00:06 ============================================================================ +15:00:06 FNo. Len. Field Value +15:00:06 ============================================================================ +15:00:06 [ 1] [ 4] [0810] +15:00:06 [ 7] [ 10] [0320221154] +15:00:06 [ 11] [ 6] [151154] +15:00:06 [ 37] [ 12] [579151511540] +15:00:06 [ 39] [ 2] [00] +15:00:06 [ 70] [ 3] [810] +15:00:06 ============================================================================ +15:00:06 Calculate Source COMM Id = 6 +15:00:06 ============================================================================ +15:00:06 + + +waiting on router queue for slot.... +15:00:07 ============================================================================ +15:00:07 Slot Id : <406> +15:00:07 Transaction Type : REQUEST +15:00:07 Received From : +15:00:07 ============================================================================ +15:00:07 FNo. Len. Field Value +15:00:07 ============================================================================ +15:00:07 [ 1] [ 4] [0800] +15:00:07 [ 7] [ 10] [0320075915] +15:00:07 [ 11] [ 6] [156902] +15:00:07 [ 70] [ 3] [301] +15:00:07 ============================================================================ +15:00:07 + + +waiting on router queue for slot.... +15:00:07 Sending to : +15:00:07 ============================================================================ +15:00:07 ============================================================================ +15:00:07 Slot Id : <406> +15:00:07 Transaction Type : RESPONSE +15:00:07 Received From : +15:00:07 ============================================================================ +15:00:07 FNo. Len. Field Value +15:00:07 ============================================================================ +15:00:07 [ 1] [ 4] [0810] +15:00:07 [ 7] [ 10] [0320075915] +15:00:07 [ 11] [ 6] [156902] +15:00:07 [ 39] [ 2] [00] +15:00:07 [ 70] [ 3] [301] +15:00:07 ============================================================================ +15:00:07 Calculate Source COMM Id = 2 +15:00:07 ============================================================================ +15:00:07 + + +waiting on router queue for slot.... +15:00:19 ============================================================================ +15:00:19 Slot Id : <411> +15:00:19 Transaction Type : REQUEST +15:00:19 Received From : +15:00:19 ============================================================================ +15:00:19 FNo. Len. Field Value +15:00:19 ============================================================================ +15:00:19 [ 1] [ 4] [0800] +15:00:19 [ 7] [ 10] [0320075926] +15:00:19 [ 11] [ 6] [156903] +15:00:19 [ 70] [ 3] [301] +15:00:19 ============================================================================ +15:00:19 + + +waiting on router queue for slot.... +15:00:19 Sending to : +15:00:19 ============================================================================ +15:00:19 ============================================================================ +15:00:19 Slot Id : <411> +15:00:19 Transaction Type : RESPONSE +15:00:19 Received From : +15:00:19 ============================================================================ +15:00:19 FNo. Len. Field Value +15:00:19 ============================================================================ +15:00:19 [ 1] [ 4] [0810] +15:00:19 [ 7] [ 10] [0320075926] +15:00:19 [ 11] [ 6] [156903] +15:00:19 [ 39] [ 2] [00] +15:00:19 [ 70] [ 3] [301] +15:00:19 ============================================================================ +15:00:19 Calculate Source COMM Id = 2 +15:00:19 ============================================================================ +15:00:19 + + +waiting on router queue for slot.... +15:00:26 ============================================================================ +15:00:26 Slot Id : <407> +15:00:26 Transaction Type : REQUEST +15:00:26 Received From : +15:00:26 ============================================================================ +15:00:26 FNo. Len. Field Value +15:00:26 ============================================================================ +15:00:26 [ 1] [ 4] [0200] +15:00:26 [ 2] [ 16] [6213545000719561] +15:00:26 [ 3] [ 6] [010000] +15:00:26 [ 4] [ 12] [000050000000] +15:00:26 [ 7] [ 10] [0320145817] +15:00:26 [ 11] [ 6] [949333] +15:00:26 [ 12] [ 6] [145817] +15:00:26 [ 13] [ 4] [0320] +15:00:26 [ 15] [ 4] [0320] +15:00:26 [ 18] [ 4] [6011] +15:00:26 [ 19] [ 3] [418] +15:00:26 [ 22] [ 3] [021] +15:00:26 [ 25] [ 2] [01] +15:00:26 [ 28] [ 9] [D00002000] +15:00:26 [ 32] [ 6] [668899] +15:00:26 [ 35] [ 32] [6213545000719561=491212011956243] +15:00:26 [ 37] [ 12] [507901947259] +15:00:26 [ 41] [ 8] [03020017] +15:00:26 [ 42] [ 15] [APT ] +15:00:26 [ 43] [ 40] [ SYSAVATH HOTEL CHANTHABOY] +15:00:26 [ 49] [ 3] [418] +15:00:26 [ 52] [ 16] [A22C64A86B71EF3F] +15:00:26 ============================================================================ +15:00:26 + + +waiting on router queue for slot.... +15:00:26 Sending to : +15:00:26 ============================================================================ +15:00:26 Sending to : +15:00:26 ============================================================================ +15:00:27 ============================================================================ +15:00:27 Slot Id : <407> +15:00:27 Transaction Type : REQUEST +15:00:27 Received From : +15:00:27 ============================================================================ +15:00:27 FNo. Len. Field Value +15:00:27 ============================================================================ +15:00:27 [ 1] [ 4] [0200] +15:00:27 [ 2] [ 16] [6213545000719561] +15:00:27 [ 3] [ 6] [010000] +15:00:27 [ 4] [ 12] [000050000000] +15:00:27 [ 7] [ 10] [0320145817] +15:00:27 [ 11] [ 6] [949333] +15:00:27 [ 12] [ 6] [145817] +15:00:27 [ 13] [ 4] [0320] +15:00:27 [ 15] [ 4] [0320] +15:00:27 [ 18] [ 4] [6011] +15:00:27 [ 19] [ 3] [418] +15:00:27 [ 22] [ 3] [021] +15:00:27 [ 25] [ 2] [01] +15:00:27 [ 28] [ 9] [D00002000] +15:00:27 [ 32] [ 6] [668899] +15:00:27 [ 35] [ 32] [6213545000719561=491212011956243] +15:00:27 [ 37] [ 12] [507901947259] +15:00:27 [ 41] [ 8] [03020017] +15:00:27 [ 42] [ 15] [APT ] +15:00:27 [ 43] [ 40] [ SYSAVATH HOTEL CHANTHABOY] +15:00:27 [ 49] [ 3] [418] +15:00:27 [ 52] [ 16] [A22C64A86B71EF3F] +15:00:27 ============================================================================ +15:00:27 + + +waiting on router queue for slot.... +15:00:27 Sending to : +15:00:27 ============================================================================ +15:00:27 ============================================================================ +15:00:27 Slot Id : <407> +15:00:27 Transaction Type : REQUEST +15:00:27 Received From : +15:00:27 ============================================================================ +15:00:27 FNo. Len. Field Value +15:00:27 ============================================================================ +15:00:27 [ 1] [ 4] [0200] +15:00:27 [ 2] [ 16] [6213545000719561] +15:00:27 [ 3] [ 6] [010000] +15:00:27 [ 4] [ 12] [000050000000] +15:00:27 [ 7] [ 10] [0320145817] +15:00:27 [ 11] [ 6] [949333] +15:00:27 [ 12] [ 6] [145817] +15:00:27 [ 13] [ 4] [0320] +15:00:27 [ 15] [ 4] [0320] +15:00:27 [ 18] [ 4] [6011] +15:00:27 [ 19] [ 3] [418] +15:00:27 [ 22] [ 3] [021] +15:00:27 [ 25] [ 2] [01] +15:00:27 [ 28] [ 9] [D00002000] +15:00:27 [ 32] [ 6] [668899] +15:00:27 [ 35] [ 32] [6213545000719561=491212011956243] +15:00:27 [ 37] [ 12] [507901947259] +15:00:27 [ 41] [ 8] [03020017] +15:00:27 [ 42] [ 15] [APT ] +15:00:27 [ 43] [ 40] [ SYSAVATH HOTEL CHANTHABOY] +15:00:27 [ 49] [ 3] [418] +15:00:27 [ 52] [ 16] [06DDB6808C63AC56] +15:00:27 ============================================================================ +15:00:27 + + +waiting on router queue for slot.... +15:00:27 Sending to : <0> +15:00:27 ============================================================================ +15:00:28 ============================================================================ +15:00:28 Slot Id : <407> +15:00:28 Transaction Type : RESPONSE +15:00:28 Received From : +15:00:28 ============================================================================ +15:00:28 FNo. Len. Field Value +15:00:28 ============================================================================ +15:00:28 [ 1] [ 4] [0210] +15:00:28 [ 2] [ 16] [6213545000719561] +15:00:28 [ 3] [ 6] [010000] +15:00:28 [ 4] [ 12] [000050000000] +15:00:28 [ 7] [ 10] [0320145817] +15:00:28 [ 11] [ 6] [949333] +15:00:28 [ 12] [ 6] [145817] +15:00:28 [ 13] [ 4] [0320] +15:00:28 [ 15] [ 4] [0320] +15:00:28 [ 18] [ 4] [6011] +15:00:28 [ 19] [ 3] [418] +15:00:28 [ 32] [ 6] [668899] +15:00:28 [ 35] [ 32] [6213545000719561=491212011956243] +15:00:28 [ 37] [ 12] [507901947259] +15:00:28 [ 38] [ 6] [582778] +15:00:28 [ 39] [ 2] [00] +15:00:28 [ 41] [ 8] [03020017] +15:00:28 [ 49] [ 3] [418] +15:00:28 [ 54] [ 40] [0001418C0004245184550002418C000424518455] +15:00:28 ============================================================================ +15:00:28 Sending to : +15:00:28 ============================================================================ +15:00:28 + + +waiting on router queue for slot.... +15:00:29 ============================================================================ +15:00:29 Slot Id : <407> +15:00:29 Transaction Type : RESPONSE +15:00:29 Received From : +15:00:29 ============================================================================ +15:00:29 FNo. Len. Field Value +15:00:29 ============================================================================ +15:00:29 [ 1] [ 4] [0210] +15:00:29 [ 2] [ 16] [6213545000719561] +15:00:29 [ 3] [ 6] [010000] +15:00:29 [ 4] [ 12] [000050000000] +15:00:29 [ 7] [ 10] [0320145817] +15:00:29 [ 11] [ 6] [949333] +15:00:29 [ 12] [ 6] [145817] +15:00:29 [ 13] [ 4] [0320] +15:00:29 [ 15] [ 4] [0320] +15:00:29 [ 18] [ 4] [6011] +15:00:29 [ 19] [ 3] [418] +15:00:29 [ 32] [ 6] [668899] +15:00:29 [ 35] [ 32] [6213545000719561=491212011956243] +15:00:29 [ 37] [ 12] [507901947259] +15:00:29 [ 38] [ 6] [582778] +15:00:29 [ 39] [ 2] [00] +15:00:29 [ 41] [ 8] [03020017] +15:00:29 [ 49] [ 3] [418] +15:00:29 [ 54] [ 40] [0001418C0004245184550002418C000424518455] +15:00:29 ============================================================================ +15:00:29 Calculate Source COMM Id = 4 +15:00:29 ============================================================================ +15:00:29 + + +waiting on router queue for slot.... +15:00:31 ============================================================================ +15:00:31 Slot Id : <380> +15:00:31 Transaction Type : REQUEST +15:00:31 Received From : +15:00:31 ============================================================================ +15:00:31 FNo. Len. Field Value +15:00:31 ============================================================================ +15:00:31 [ 1] [ 4] [0800] +15:00:31 [ 7] [ 10] [0320075938] +15:00:31 [ 11] [ 6] [156904] +15:00:31 [ 70] [ 3] [301] +15:00:31 ============================================================================ +15:00:31 + + +waiting on router queue for slot.... +15:00:31 Sending to : +15:00:31 ============================================================================ +15:00:31 ============================================================================ +15:00:31 Slot Id : <380> +15:00:31 Transaction Type : RESPONSE +15:00:31 Received From : +15:00:31 ============================================================================ +15:00:31 FNo. Len. Field Value +15:00:31 ============================================================================ +15:00:31 [ 1] [ 4] [0810] +15:00:31 [ 7] [ 10] [0320075938] +15:00:31 [ 11] [ 6] [156904] +15:00:31 [ 39] [ 2] [00] +15:00:31 [ 70] [ 3] [301] +15:00:31 ============================================================================ +15:00:31 Calculate Source COMM Id = 2 +15:00:31 ============================================================================ +15:00:31 + + +waiting on router queue for slot.... +15:00:40 ============================================================================ +15:00:40 Slot Id : <384> +15:00:40 Transaction Type : REQUEST +15:00:40 Received From : +15:00:40 ============================================================================ +15:00:40 FNo. Len. Field Value +15:00:40 ============================================================================ +15:00:40 [ 1] [ 4] [0200] +15:00:40 [ 2] [ 16] [6688990101789202] +15:00:40 [ 3] [ 6] [010000] +15:00:40 [ 4] [ 12] [000100000000] +15:00:40 [ 7] [ 10] [0320150036] +15:00:40 [ 11] [ 6] [777755] +15:00:40 [ 12] [ 6] [150036] +15:00:40 [ 13] [ 4] [0320] +15:00:40 [ 15] [ 4] [0320] +15:00:40 [ 18] [ 4] [6011] +15:00:40 [ 22] [ 3] [900] +15:00:40 [ 25] [ 2] [02] +15:00:40 [ 28] [ 9] [D00002000] +15:00:40 [ 32] [ 6] [621354] +15:00:40 [ 35] [ 37] [6688990101789202=42051231920204300000] +15:00:40 [ 37] [ 12] [507904635731] +15:00:40 [ 41] [ 8] [17000800] +15:00:40 [ 42] [ 15] [NATIVE ] +15:00:40 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:00:40 [ 49] [ 3] [418] +15:00:40 [ 52] [ 16] [4C82B4D1FCD36787] +15:00:40 ============================================================================ +15:00:40 + + +waiting on router queue for slot.... +15:00:40 Sending to : +15:00:40 ============================================================================ +15:00:40 Sending to : +15:00:40 ============================================================================ +15:00:40 ============================================================================ +15:00:40 Slot Id : <416> +15:00:40 Transaction Type : REQUEST +15:00:40 Received From : +15:00:40 ============================================================================ +15:00:40 FNo. Len. Field Value +15:00:40 ============================================================================ +15:00:40 [ 1] [ 4] [0800] +15:00:40 [ 2] [ 5] [02531] +15:00:40 [ 3] [ 6] [579158] +15:00:40 [ 7] [ 10] [0320080040] +15:00:40 [ 11] [ 6] [807283] +15:00:40 [ 15] [ 10] [0320080040] +15:00:40 [ 37] [ 11] [57915807283] +15:00:40 [ 70] [ 3] [001] +15:00:40 ============================================================================ +15:00:40 + + +waiting on router queue for slot.... +15:00:40 ============================================================================ +15:00:40 Slot Id : <416> +15:00:40 Transaction Type : RESPONSE +15:00:40 Received From : +15:00:40 ============================================================================ +15:00:40 FNo. Len. Field Value +15:00:40 ============================================================================ +15:00:40 [ 1] [ 4] [0810] +15:00:40 [ 7] [ 10] [0320080040] +15:00:40 [ 11] [ 6] [807283] +15:00:40 [ 15] [ 4] [0320] +15:00:40 [ 37] [ 12] [57915807283] +15:00:40 [ 39] [ 2] [00] +15:00:40 [ 70] [ 3] [001] +15:00:40 ============================================================================ +15:00:40 Sending to : +15:00:40 ============================================================================ +15:00:40 + + +waiting on router queue for slot.... +15:00:40 ============================================================================ +15:00:40 Slot Id : <384> +15:00:40 Transaction Type : REQUEST +15:00:40 Received From : +15:00:40 ============================================================================ +15:00:40 FNo. Len. Field Value +15:00:40 ============================================================================ +15:00:40 [ 1] [ 4] [0200] +15:00:40 [ 2] [ 16] [6688990101789202] +15:00:40 [ 3] [ 6] [010000] +15:00:40 [ 4] [ 12] [000100000000] +15:00:40 [ 7] [ 10] [0320150036] +15:00:40 [ 11] [ 6] [777755] +15:00:40 [ 12] [ 6] [150036] +15:00:40 [ 13] [ 4] [0320] +15:00:40 [ 15] [ 4] [0320] +15:00:40 [ 18] [ 4] [6011] +15:00:40 [ 22] [ 3] [900] +15:00:40 [ 25] [ 2] [02] +15:00:40 [ 28] [ 9] [D00002000] +15:00:40 [ 32] [ 6] [621354] +15:00:40 [ 35] [ 37] [6688990101789202=42051231920204300000] +15:00:40 [ 37] [ 12] [507904635731] +15:00:40 [ 41] [ 8] [17000800] +15:00:40 [ 42] [ 15] [NATIVE ] +15:00:40 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:00:40 [ 49] [ 3] [418] +15:00:40 [ 52] [ 16] [4C82B4D1FCD36787] +15:00:40 ============================================================================ +15:00:40 + + +waiting on router queue for slot.... +15:00:40 Sending to : +15:00:40 ============================================================================ +15:00:41 ============================================================================ +15:00:41 Slot Id : <384> +15:00:41 Transaction Type : REQUEST +15:00:41 Received From : +15:00:41 ============================================================================ +15:00:41 FNo. Len. Field Value +15:00:41 ============================================================================ +15:00:41 [ 1] [ 4] [0200] +15:00:41 [ 2] [ 16] [6688990101789202] +15:00:41 [ 3] [ 6] [010000] +15:00:41 [ 4] [ 12] [000100000000] +15:00:41 [ 7] [ 10] [0320150036] +15:00:41 [ 11] [ 6] [777755] +15:00:41 [ 12] [ 6] [150036] +15:00:41 [ 13] [ 4] [0320] +15:00:41 [ 15] [ 4] [0320] +15:00:41 [ 18] [ 4] [6011] +15:00:41 [ 22] [ 3] [900] +15:00:41 [ 25] [ 2] [02] +15:00:41 [ 28] [ 9] [D00002000] +15:00:41 [ 32] [ 6] [621354] +15:00:41 [ 35] [ 37] [6688990101789202=42051231920204300000] +15:00:41 [ 37] [ 12] [507904635731] +15:00:41 [ 41] [ 8] [17000800] +15:00:41 [ 42] [ 15] [NATIVE ] +15:00:41 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:00:41 [ 49] [ 3] [418] +15:00:41 [ 52] [ 16] [B763F1BB0130F7D6] +15:00:41 ============================================================================ +15:00:41 + + +waiting on router queue for slot.... +15:00:41 Sending to : <4> +15:00:41 ============================================================================ +15:00:42 ============================================================================ +15:00:42 Slot Id : <384> +15:00:42 Transaction Type : RESPONSE +15:00:42 Received From : +15:00:42 ============================================================================ +15:00:42 FNo. Len. Field Value +15:00:42 ============================================================================ +15:00:42 [ 1] [ 4] [0210] +15:00:42 [ 2] [ 16] [6688990101789202] +15:00:42 [ 3] [ 6] [010000] +15:00:42 [ 4] [ 12] [000100000000] +15:00:42 [ 11] [ 6] [777755] +15:00:42 [ 12] [ 6] [150036] +15:00:42 [ 15] [ 4] [0320] +15:00:42 [ 18] [ 4] [6011] +15:00:42 [ 32] [ 6] [621354] +15:00:42 [ 35] [ 37] [6688990101789202=42051231920204300000] +15:00:42 [ 37] [ 12] [507904635731] +15:00:42 [ 38] [ 6] [194097] +15:00:42 [ 39] [ 2] [00] +15:00:42 [ 41] [ 8] [17000800] +15:00:42 [ 49] [ 3] [418] +15:00:42 [ 54] [ 20] [0002418C000139480050] +15:00:42 ============================================================================ +15:00:42 Sending to : +15:00:42 ============================================================================ +15:00:42 + + +waiting on router queue for slot.... +15:00:42 ============================================================================ +15:00:42 Slot Id : <381> +15:00:42 Transaction Type : REQUEST +15:00:42 Received From : +15:00:42 ============================================================================ +15:00:42 FNo. Len. Field Value +15:00:42 ============================================================================ +15:00:42 [ 1] [ 4] [0200] +15:00:42 [ 2] [ 16] [6213543000178672] +15:00:42 [ 3] [ 6] [011000] +15:00:42 [ 4] [ 12] [000050000000] +15:00:42 [ 7] [ 10] [0320150829] +15:00:42 [ 11] [ 6] [168963] +15:00:42 [ 12] [ 6] [150829] +15:00:42 [ 13] [ 4] [0320] +15:00:42 [ 14] [ 4] [4912] +15:00:42 [ 15] [ 4] [0320] +15:00:42 [ 18] [ 4] [6011] +15:00:42 [ 22] [ 3] [900] +15:00:42 [ 25] [ 2] [02] +15:00:42 [ 28] [ 9] [D00002000] +15:00:42 [ 32] [ 6] [220699] +15:00:42 [ 35] [ 32] [6213543000178672=491212017867112] +15:00:42 [ 37] [ 12] [507900026373] +15:00:42 [ 41] [ 8] [01000200] +15:00:42 [ 42] [ 15] [APTRA ] +15:00:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:00:42 [ 49] [ 3] [418] +15:00:42 [ 52] [ 16] [D2D3A895D1C6B441] +15:00:42 ============================================================================ +15:00:42 + + +waiting on router queue for slot.... +15:00:42 Sending to : +15:00:42 ============================================================================ +15:00:42 Sending to : +15:00:42 ============================================================================ +15:00:42 ============================================================================ +15:00:42 Slot Id : <420> +15:00:42 Transaction Type : REQUEST +15:00:42 Received From : +15:00:42 ============================================================================ +15:00:42 FNo. Len. Field Value +15:00:42 ============================================================================ +15:00:42 [ 1] [ 4] [0200] +15:00:42 [ 2] [ 16] [6688990103744106] +15:00:42 [ 3] [ 6] [010000] +15:00:42 [ 4] [ 12] [000100000000] +15:00:42 [ 7] [ 10] [0320150037] +15:00:42 [ 11] [ 6] [777761] +15:00:42 [ 12] [ 6] [150037] +15:00:42 [ 13] [ 4] [0320] +15:00:42 [ 15] [ 4] [0320] +15:00:42 [ 18] [ 4] [6011] +15:00:42 [ 22] [ 3] [900] +15:00:42 [ 25] [ 2] [02] +15:00:42 [ 28] [ 9] [D00002000] +15:00:42 [ 32] [ 6] [621354] +15:00:42 [ 35] [ 37] [6688990103744106=43021231410685400000] +15:00:42 [ 37] [ 12] [507903344991] +15:00:42 [ 41] [ 8] [13001400] +15:00:42 [ 42] [ 15] [NATIVE ] +15:00:42 [ 43] [ 40] [Kham Unit Kham LAO] +15:00:42 [ 49] [ 3] [418] +15:00:42 [ 52] [ 16] [8ADBDF1D777B6AFA] +15:00:42 ============================================================================ +15:00:42 + + +waiting on router queue for slot.... +15:00:42 Sending to : +15:00:42 ============================================================================ +15:00:42 Sending to : +15:00:42 ============================================================================ +15:00:42 ============================================================================ +15:00:42 Slot Id : <381> +15:00:42 Transaction Type : REQUEST +15:00:42 Received From : +15:00:42 ============================================================================ +15:00:42 FNo. Len. Field Value +15:00:42 ============================================================================ +15:00:42 [ 1] [ 4] [0200] +15:00:42 [ 2] [ 16] [6213543000178672] +15:00:42 [ 3] [ 6] [011000] +15:00:42 [ 4] [ 12] [000050000000] +15:00:42 [ 7] [ 10] [0320150829] +15:00:42 [ 11] [ 6] [168963] +15:00:42 [ 12] [ 6] [150829] +15:00:42 [ 13] [ 4] [0320] +15:00:42 [ 14] [ 4] [4912] +15:00:42 [ 15] [ 4] [0320] +15:00:42 [ 18] [ 4] [6011] +15:00:42 [ 22] [ 3] [900] +15:00:42 [ 25] [ 2] [02] +15:00:42 [ 28] [ 9] [D00002000] +15:00:42 [ 32] [ 6] [220699] +15:00:42 [ 35] [ 32] [6213543000178672=491212017867112] +15:00:42 [ 37] [ 12] [507900026373] +15:00:42 [ 41] [ 8] [01000200] +15:00:42 [ 42] [ 15] [APTRA ] +15:00:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:00:42 [ 49] [ 3] [418] +15:00:42 [ 52] [ 16] [D2D3A895D1C6B441] +15:00:42 ============================================================================ +15:00:42 + + +waiting on router queue for slot.... +15:00:42 Sending to : +15:00:42 ============================================================================ +15:00:42 ============================================================================ +15:00:42 Slot Id : <381> +15:00:42 Transaction Type : REQUEST +15:00:42 Received From : +15:00:42 ============================================================================ +15:00:42 FNo. Len. Field Value +15:00:42 ============================================================================ +15:00:42 [ 1] [ 4] [0200] +15:00:42 [ 2] [ 16] [6213543000178672] +15:00:42 [ 3] [ 6] [011000] +15:00:42 [ 4] [ 12] [000050000000] +15:00:42 [ 7] [ 10] [0320150829] +15:00:42 [ 11] [ 6] [168963] +15:00:42 [ 12] [ 6] [150829] +15:00:42 [ 13] [ 4] [0320] +15:00:42 [ 14] [ 4] [4912] +15:00:42 [ 15] [ 4] [0320] +15:00:42 [ 18] [ 4] [6011] +15:00:42 [ 22] [ 3] [900] +15:00:42 [ 25] [ 2] [02] +15:00:42 [ 28] [ 9] [D00002000] +15:00:42 [ 32] [ 6] [220699] +15:00:42 [ 35] [ 32] [6213543000178672=491212017867112] +15:00:42 [ 37] [ 12] [507900026373] +15:00:42 [ 41] [ 8] [01000200] +15:00:42 [ 42] [ 15] [APTRA ] +15:00:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:00:42 [ 49] [ 3] [418] +15:00:42 [ 52] [ 16] [E2DB0A1B178A0C1C] +15:00:42 ============================================================================ +15:00:42 + + +waiting on router queue for slot.... +15:00:42 Sending to : <0> +15:00:42 ============================================================================ +15:00:42 ============================================================================ +15:00:42 Slot Id : <420> +15:00:42 Transaction Type : REQUEST +15:00:42 Received From : +15:00:42 ============================================================================ +15:00:42 FNo. Len. Field Value +15:00:42 ============================================================================ +15:00:42 [ 1] [ 4] [0200] +15:00:42 [ 2] [ 16] [6688990103744106] +15:00:42 [ 3] [ 6] [010000] +15:00:42 [ 4] [ 12] [000100000000] +15:00:42 [ 7] [ 10] [0320150037] +15:00:42 [ 11] [ 6] [777761] +15:00:42 [ 12] [ 6] [150037] +15:00:42 [ 13] [ 4] [0320] +15:00:42 [ 15] [ 4] [0320] +15:00:42 [ 18] [ 4] [6011] +15:00:42 [ 22] [ 3] [900] +15:00:42 [ 25] [ 2] [02] +15:00:42 [ 28] [ 9] [D00002000] +15:00:42 [ 32] [ 6] [621354] +15:00:42 [ 35] [ 37] [6688990103744106=43021231410685400000] +15:00:42 [ 37] [ 12] [507903344991] +15:00:42 [ 41] [ 8] [13001400] +15:00:42 [ 42] [ 15] [NATIVE ] +15:00:42 [ 43] [ 40] [Kham Unit Kham LAO] +15:00:42 [ 49] [ 3] [418] +15:00:42 [ 52] [ 16] [8ADBDF1D777B6AFA] +15:00:42 ============================================================================ +15:00:42 + + +waiting on router queue for slot.... +15:00:42 Sending to : +15:00:42 ============================================================================ +15:00:42 ============================================================================ +15:00:42 Slot Id : <420> +15:00:42 Transaction Type : REQUEST +15:00:42 Received From : +15:00:42 ============================================================================ +15:00:42 FNo. Len. Field Value +15:00:42 ============================================================================ +15:00:42 [ 1] [ 4] [0200] +15:00:42 [ 2] [ 16] [6688990103744106] +15:00:42 [ 3] [ 6] [010000] +15:00:42 [ 4] [ 12] [000100000000] +15:00:42 [ 7] [ 10] [0320150037] +15:00:42 [ 11] [ 6] [777761] +15:00:42 [ 12] [ 6] [150037] +15:00:42 [ 13] [ 4] [0320] +15:00:42 [ 15] [ 4] [0320] +15:00:42 [ 18] [ 4] [6011] +15:00:42 [ 22] [ 3] [900] +15:00:42 [ 25] [ 2] [02] +15:00:42 [ 28] [ 9] [D00002000] +15:00:42 [ 32] [ 6] [621354] +15:00:42 [ 35] [ 37] [6688990103744106=43021231410685400000] +15:00:42 [ 37] [ 12] [507903344991] +15:00:42 [ 41] [ 8] [13001400] +15:00:42 [ 42] [ 15] [NATIVE ] +15:00:42 [ 43] [ 40] [Kham Unit Kham LAO] +15:00:42 [ 49] [ 3] [418] +15:00:42 [ 52] [ 16] [24E7681222A72DF5] +15:00:42 ============================================================================ +15:00:42 + + +waiting on router queue for slot.... +15:00:42 Sending to : <4> +15:00:42 ============================================================================ +15:00:43 ============================================================================ +15:00:43 Slot Id : <381> +15:00:43 Transaction Type : RESPONSE +15:00:43 Received From : +15:00:43 ============================================================================ +15:00:43 FNo. Len. Field Value +15:00:43 ============================================================================ +15:00:43 [ 1] [ 4] [0210] +15:00:43 [ 2] [ 16] [6213543000178672] +15:00:43 [ 3] [ 6] [011000] +15:00:43 [ 4] [ 12] [000050000000] +15:00:43 [ 7] [ 10] [0320150829] +15:00:43 [ 11] [ 6] [168963] +15:00:43 [ 12] [ 6] [150829] +15:00:43 [ 13] [ 4] [0320] +15:00:43 [ 15] [ 4] [0320] +15:00:43 [ 18] [ 4] [6011] +15:00:43 [ 32] [ 6] [220699] +15:00:43 [ 35] [ 32] [6213543000178672=491212017867112] +15:00:43 [ 37] [ 12] [507900026373] +15:00:43 [ 38] [ 6] [847071] +15:00:43 [ 39] [ 2] [00] +15:00:43 [ 41] [ 8] [01000200] +15:00:43 [ 49] [ 3] [418] +15:00:43 [ 54] [ 40] [1001418C0001542279461002418C000154227946] +15:00:43 ============================================================================ +15:00:43 Sending to : +15:00:43 ============================================================================ +15:00:43 + + +waiting on router queue for slot.... +15:00:43 ============================================================================ +15:00:43 Slot Id : <384> +15:00:43 Transaction Type : RESPONSE +15:00:43 Received From : +15:00:43 ============================================================================ +15:00:43 FNo. Len. Field Value +15:00:43 ============================================================================ +15:00:43 [ 1] [ 4] [0210] +15:00:43 [ 2] [ 16] [6688990101789202] +15:00:43 [ 3] [ 6] [010000] +15:00:43 [ 4] [ 12] [000100000000] +15:00:43 [ 11] [ 6] [777755] +15:00:43 [ 12] [ 6] [150036] +15:00:43 [ 15] [ 4] [0320] +15:00:43 [ 18] [ 4] [6011] +15:00:43 [ 32] [ 6] [621354] +15:00:43 [ 35] [ 37] [6688990101789202=42051231920204300000] +15:00:43 [ 37] [ 12] [507904635731] +15:00:43 [ 38] [ 6] [194097] +15:00:43 [ 39] [ 2] [00] +15:00:43 [ 41] [ 8] [17000800] +15:00:43 [ 49] [ 3] [418] +15:00:43 [ 54] [ 20] [0002418C000139480050] +15:00:43 ============================================================================ +15:00:43 Calculate Source COMM Id = 0 +15:00:43 ============================================================================ +15:00:43 + + +waiting on router queue for slot.... +15:00:43 ============================================================================ +15:00:43 Slot Id : <420> +15:00:43 Transaction Type : RESPONSE +15:00:43 Received From : +15:00:43 ============================================================================ +15:00:43 FNo. Len. Field Value +15:00:43 ============================================================================ +15:00:43 [ 1] [ 4] [0210] +15:00:43 [ 2] [ 16] [6688990103744106] +15:00:43 [ 3] [ 6] [010000] +15:00:43 [ 4] [ 12] [000100000000] +15:00:43 [ 11] [ 6] [777761] +15:00:43 [ 12] [ 6] [150037] +15:00:43 [ 15] [ 4] [0320] +15:00:43 [ 18] [ 4] [6011] +15:00:43 [ 32] [ 6] [621354] +15:00:43 [ 35] [ 37] [6688990103744106=43021231410685400000] +15:00:43 [ 37] [ 12] [507903344991] +15:00:43 [ 38] [ 6] [924521] +15:00:43 [ 39] [ 2] [00] +15:00:43 [ 41] [ 8] [13001400] +15:00:43 [ 49] [ 3] [418] +15:00:43 [ 54] [ 20] [0002418C000905204006] +15:00:43 ============================================================================ +15:00:43 Sending to : +15:00:43 ============================================================================ +15:00:43 + + +waiting on router queue for slot.... +15:00:44 ============================================================================ +15:00:44 Slot Id : <415> +15:00:44 Transaction Type : REQUEST +15:00:44 Received From : +15:00:44 ============================================================================ +15:00:44 FNo. Len. Field Value +15:00:44 ============================================================================ +15:00:44 [ 1] [ 4] [0200] +15:00:44 [ 2] [ 16] [6688990102368303] +15:00:44 [ 3] [ 6] [010000] +15:00:44 [ 4] [ 12] [000020000000] +15:00:44 [ 7] [ 10] [0320150039] +15:00:44 [ 11] [ 6] [777764] +15:00:44 [ 12] [ 6] [150039] +15:00:44 [ 13] [ 4] [0320] +15:00:44 [ 15] [ 4] [0320] +15:00:44 [ 18] [ 4] [6011] +15:00:44 [ 22] [ 3] [900] +15:00:44 [ 25] [ 2] [02] +15:00:44 [ 28] [ 9] [D00002000] +15:00:44 [ 32] [ 6] [621354] +15:00:44 [ 35] [ 37] [6688990102368303=42081231830359500000] +15:00:44 [ 37] [ 12] [507902925743] +15:00:44 [ 41] [ 8] [12001500] +15:00:44 [ 42] [ 15] [NATIVE ] +15:00:44 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +15:00:44 [ 49] [ 3] [418] +15:00:44 [ 52] [ 16] [0F3BD719AE7BE2EF] +15:00:44 ============================================================================ +15:00:44 + + +waiting on router queue for slot.... +15:00:44 Sending to : +15:00:44 ============================================================================ +15:00:44 Sending to : +15:00:44 ============================================================================ +15:00:44 ============================================================================ +15:00:44 Slot Id : <415> +15:00:44 Transaction Type : REQUEST +15:00:44 Received From : +15:00:44 ============================================================================ +15:00:44 FNo. Len. Field Value +15:00:44 ============================================================================ +15:00:44 [ 1] [ 4] [0200] +15:00:44 [ 2] [ 16] [6688990102368303] +15:00:44 [ 3] [ 6] [010000] +15:00:44 [ 4] [ 12] [000020000000] +15:00:44 [ 7] [ 10] [0320150039] +15:00:44 [ 11] [ 6] [777764] +15:00:44 [ 12] [ 6] [150039] +15:00:44 [ 13] [ 4] [0320] +15:00:44 [ 15] [ 4] [0320] +15:00:44 [ 18] [ 4] [6011] +15:00:44 [ 22] [ 3] [900] +15:00:44 [ 25] [ 2] [02] +15:00:44 [ 28] [ 9] [D00002000] +15:00:44 [ 32] [ 6] [621354] +15:00:44 [ 35] [ 37] [6688990102368303=42081231830359500000] +15:00:44 [ 37] [ 12] [507902925743] +15:00:44 [ 41] [ 8] [12001500] +15:00:44 [ 42] [ 15] [NATIVE ] +15:00:44 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +15:00:44 [ 49] [ 3] [418] +15:00:44 [ 52] [ 16] [0F3BD719AE7BE2EF] +15:00:44 ============================================================================ +15:00:44 + + +waiting on router queue for slot.... +15:00:44 Sending to : +15:00:44 ============================================================================ +15:00:44 ============================================================================ +15:00:44 Slot Id : <415> +15:00:44 Transaction Type : REQUEST +15:00:44 Received From : +15:00:44 ============================================================================ +15:00:44 FNo. Len. Field Value +15:00:44 ============================================================================ +15:00:44 [ 1] [ 4] [0200] +15:00:44 [ 2] [ 16] [6688990102368303] +15:00:44 [ 3] [ 6] [010000] +15:00:44 [ 4] [ 12] [000020000000] +15:00:44 [ 7] [ 10] [0320150039] +15:00:44 [ 11] [ 6] [777764] +15:00:44 [ 12] [ 6] [150039] +15:00:44 [ 13] [ 4] [0320] +15:00:44 [ 15] [ 4] [0320] +15:00:44 [ 18] [ 4] [6011] +15:00:44 [ 22] [ 3] [900] +15:00:44 [ 25] [ 2] [02] +15:00:44 [ 28] [ 9] [D00002000] +15:00:44 [ 32] [ 6] [621354] +15:00:44 [ 35] [ 37] [6688990102368303=42081231830359500000] +15:00:44 [ 37] [ 12] [507902925743] +15:00:44 [ 41] [ 8] [12001500] +15:00:44 [ 42] [ 15] [NATIVE ] +15:00:44 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +15:00:44 [ 49] [ 3] [418] +15:00:44 [ 52] [ 16] [21F6DE9D9DD0BA16] +15:00:44 ============================================================================ +15:00:44 + + +waiting on router queue for slot.... +15:00:44 Sending to : <4> +15:00:44 ============================================================================ +15:00:45 ============================================================================ +15:00:45 Slot Id : <381> +15:00:45 Transaction Type : RESPONSE +15:00:45 Received From : +15:00:45 ============================================================================ +15:00:45 FNo. Len. Field Value +15:00:45 ============================================================================ +15:00:45 [ 1] [ 4] [0210] +15:00:45 [ 2] [ 16] [6213543000178672] +15:00:45 [ 3] [ 6] [011000] +15:00:45 [ 4] [ 12] [000050000000] +15:00:45 [ 7] [ 10] [0320150829] +15:00:45 [ 11] [ 6] [168963] +15:00:45 [ 12] [ 6] [150829] +15:00:45 [ 13] [ 4] [0320] +15:00:45 [ 15] [ 4] [0320] +15:00:45 [ 18] [ 4] [6011] +15:00:45 [ 32] [ 6] [220699] +15:00:45 [ 35] [ 32] [6213543000178672=491212017867112] +15:00:45 [ 37] [ 12] [507900026373] +15:00:45 [ 38] [ 6] [847071] +15:00:45 [ 39] [ 2] [00] +15:00:45 [ 41] [ 8] [01000200] +15:00:45 [ 49] [ 3] [418] +15:00:45 [ 54] [ 40] [1001418C0001542279461002418C000154227946] +15:00:45 ============================================================================ +15:00:45 Calculate Source COMM Id = 1 +15:00:45 ============================================================================ +15:00:45 + + +waiting on router queue for slot.... +15:00:46 ============================================================================ +15:00:46 Slot Id : <415> +15:00:46 Transaction Type : RESPONSE +15:00:46 Received From : +15:00:46 ============================================================================ +15:00:46 FNo. Len. Field Value +15:00:46 ============================================================================ +15:00:46 [ 1] [ 4] [0210] +15:00:46 [ 2] [ 16] [6688990102368303] +15:00:46 [ 3] [ 6] [010000] +15:00:46 [ 4] [ 12] [000020000000] +15:00:46 [ 11] [ 6] [777764] +15:00:46 [ 12] [ 6] [150039] +15:00:46 [ 15] [ 4] [0320] +15:00:46 [ 18] [ 4] [6011] +15:00:46 [ 32] [ 6] [621354] +15:00:46 [ 35] [ 37] [6688990102368303=42081231830359500000] +15:00:46 [ 37] [ 12] [507902925743] +15:00:46 [ 38] [ 6] [142633] +15:00:46 [ 39] [ 2] [00] +15:00:46 [ 41] [ 8] [12001500] +15:00:46 [ 49] [ 3] [418] +15:00:46 [ 54] [ 20] [0002418C000120351648] +15:00:46 ============================================================================ +15:00:46 Sending to : +15:00:46 ============================================================================ +15:00:46 + + +waiting on router queue for slot.... +15:00:46 ============================================================================ +15:00:46 Slot Id : <401> +15:00:46 Transaction Type : REQUEST +15:00:46 Received From : +15:00:46 ============================================================================ +15:00:46 FNo. Len. Field Value +15:00:46 ============================================================================ +15:00:46 [ 1] [ 4] [0800] +15:00:46 [ 7] [ 10] [0320075953] +15:00:46 [ 11] [ 6] [156905] +15:00:46 [ 70] [ 3] [301] +15:00:46 ============================================================================ +15:00:46 + + +waiting on router queue for slot.... +15:00:46 Sending to : +15:00:46 ============================================================================ +15:00:46 ============================================================================ +15:00:46 Slot Id : <401> +15:00:46 Transaction Type : RESPONSE +15:00:46 Received From : +15:00:46 ============================================================================ +15:00:46 FNo. Len. Field Value +15:00:46 ============================================================================ +15:00:46 [ 1] [ 4] [0810] +15:00:46 [ 7] [ 10] [0320075953] +15:00:46 [ 11] [ 6] [156905] +15:00:46 [ 39] [ 2] [00] +15:00:46 [ 70] [ 3] [301] +15:00:46 ============================================================================ +15:00:46 Calculate Source COMM Id = 2 +15:00:46 ============================================================================ +15:00:46 + + +waiting on router queue for slot.... +15:00:47 ============================================================================ +15:00:47 Slot Id : <420> +15:00:47 Transaction Type : RESPONSE +15:00:47 Received From : +15:00:47 ============================================================================ +15:00:47 FNo. Len. Field Value +15:00:47 ============================================================================ +15:00:47 [ 1] [ 4] [0210] +15:00:47 [ 2] [ 16] [6688990103744106] +15:00:47 [ 3] [ 6] [010000] +15:00:47 [ 4] [ 12] [000100000000] +15:00:47 [ 11] [ 6] [777761] +15:00:47 [ 12] [ 6] [150037] +15:00:47 [ 15] [ 4] [0320] +15:00:47 [ 18] [ 4] [6011] +15:00:47 [ 32] [ 6] [621354] +15:00:47 [ 35] [ 37] [6688990103744106=43021231410685400000] +15:00:47 [ 37] [ 12] [507903344991] +15:00:47 [ 38] [ 6] [924521] +15:00:47 [ 39] [ 2] [00] +15:00:47 [ 41] [ 8] [13001400] +15:00:47 [ 49] [ 3] [418] +15:00:47 [ 54] [ 20] [0002418C000905204006] +15:00:47 ============================================================================ +15:00:47 Calculate Source COMM Id = 0 +15:00:47 ============================================================================ +15:00:47 + + +waiting on router queue for slot.... +15:00:48 ============================================================================ +15:00:48 Slot Id : <415> +15:00:48 Transaction Type : RESPONSE +15:00:48 Received From : +15:00:48 ============================================================================ +15:00:48 FNo. Len. Field Value +15:00:48 ============================================================================ +15:00:48 [ 1] [ 4] [0210] +15:00:48 [ 2] [ 16] [6688990102368303] +15:00:48 [ 3] [ 6] [010000] +15:00:48 [ 4] [ 12] [000020000000] +15:00:48 [ 11] [ 6] [777764] +15:00:48 [ 12] [ 6] [150039] +15:00:48 [ 15] [ 4] [0320] +15:00:48 [ 18] [ 4] [6011] +15:00:48 [ 32] [ 6] [621354] +15:00:48 [ 35] [ 37] [6688990102368303=42081231830359500000] +15:00:48 [ 37] [ 12] [507902925743] +15:00:48 [ 38] [ 6] [142633] +15:00:48 [ 39] [ 2] [00] +15:00:48 [ 41] [ 8] [12001500] +15:00:48 [ 49] [ 3] [418] +15:00:48 [ 54] [ 20] [0002418C000120351648] +15:00:48 ============================================================================ +15:00:48 Calculate Source COMM Id = 0 +15:00:48 ============================================================================ +15:00:48 + + +waiting on router queue for slot.... +15:00:51 ============================================================================ +15:00:51 Slot Id : <398> +15:00:51 Transaction Type : REQUEST +15:00:51 Received From : +15:00:51 ============================================================================ +15:00:51 FNo. Len. Field Value +15:00:51 ============================================================================ +15:00:51 [ 1] [ 4] [0800] +15:00:51 [ 7] [ 10] [0320150037] +15:00:51 [ 11] [ 6] [024618] +15:00:51 [ 37] [ 12] [507915024618] +15:00:51 [ 70] [ 3] [ ] +15:00:51 ============================================================================ +15:00:51 + + +waiting on router queue for slot.... +15:00:51 Sending to : +15:00:51 ============================================================================ +15:00:51 ============================================================================ +15:00:51 Slot Id : <398> +15:00:51 Transaction Type : RESPONSE +15:00:51 Received From : +15:00:51 ============================================================================ +15:00:51 FNo. Len. Field Value +15:00:51 ============================================================================ +15:00:51 [ 1] [ 4] [0810] +15:00:51 [ 7] [ 10] [0320150037] +15:00:51 [ 11] [ 6] [024618] +15:00:51 [ 37] [ 12] [507915024618] +15:00:51 [ 39] [ 2] [91] +15:00:51 [ 70] [ 3] [ ] +15:00:51 ============================================================================ +15:00:51 Calculate Source COMM Id = 3 +15:00:51 ============================================================================ +15:00:51 + + +waiting on router queue for slot.... +15:00:55 ============================================================================ +15:00:55 Slot Id : <425> +15:00:55 Transaction Type : REQUEST +15:00:55 Received From : +15:00:55 ============================================================================ +15:00:55 FNo. Len. Field Value +15:00:55 ============================================================================ +15:00:55 [ 1] [ 4] [0200] +15:00:55 [ 2] [ 16] [6688990103110605] +15:00:55 [ 3] [ 6] [011000] +15:00:55 [ 4] [ 12] [000100000000] +15:00:55 [ 7] [ 10] [0320150050] +15:00:55 [ 11] [ 6] [777807] +15:00:55 [ 12] [ 6] [150050] +15:00:55 [ 13] [ 4] [0320] +15:00:55 [ 15] [ 4] [0320] +15:00:55 [ 18] [ 4] [6011] +15:00:55 [ 22] [ 3] [900] +15:00:55 [ 25] [ 2] [02] +15:00:55 [ 28] [ 9] [D00002000] +15:00:55 [ 32] [ 6] [621354] +15:00:55 [ 35] [ 37] [6688990103110605=42121231060517500000] +15:00:55 [ 37] [ 12] [507902916581] +15:00:55 [ 41] [ 8] [12001400] +15:00:55 [ 42] [ 15] [NATIVE ] +15:00:55 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:00:55 [ 49] [ 3] [418] +15:00:55 [ 52] [ 16] [7F849FA1DBC1ADF9] +15:00:55 ============================================================================ +15:00:55 + + +waiting on router queue for slot.... +15:00:55 Sending to : +15:00:55 ============================================================================ +15:00:55 Sending to : +15:00:55 ============================================================================ +15:00:55 ============================================================================ +15:00:55 Slot Id : <425> +15:00:55 Transaction Type : REQUEST +15:00:55 Received From : +15:00:55 ============================================================================ +15:00:55 FNo. Len. Field Value +15:00:55 ============================================================================ +15:00:55 [ 1] [ 4] [0200] +15:00:55 [ 2] [ 16] [6688990103110605] +15:00:55 [ 3] [ 6] [011000] +15:00:55 [ 4] [ 12] [000100000000] +15:00:55 [ 7] [ 10] [0320150050] +15:00:55 [ 11] [ 6] [777807] +15:00:55 [ 12] [ 6] [150050] +15:00:55 [ 13] [ 4] [0320] +15:00:55 [ 15] [ 4] [0320] +15:00:55 [ 18] [ 4] [6011] +15:00:55 [ 22] [ 3] [900] +15:00:55 [ 25] [ 2] [02] +15:00:55 [ 28] [ 9] [D00002000] +15:00:55 [ 32] [ 6] [621354] +15:00:55 [ 35] [ 37] [6688990103110605=42121231060517500000] +15:00:55 [ 37] [ 12] [507902916581] +15:00:55 [ 41] [ 8] [12001400] +15:00:55 [ 42] [ 15] [NATIVE ] +15:00:55 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:00:55 [ 49] [ 3] [418] +15:00:55 [ 52] [ 16] [7F849FA1DBC1ADF9] +15:00:55 ============================================================================ +15:00:55 + + +waiting on router queue for slot.... +15:00:55 Sending to : +15:00:55 ============================================================================ +15:00:55 ============================================================================ +15:00:55 Slot Id : <425> +15:00:55 Transaction Type : REQUEST +15:00:55 Received From : +15:00:55 ============================================================================ +15:00:55 FNo. Len. Field Value +15:00:55 ============================================================================ +15:00:55 [ 1] [ 4] [0200] +15:00:55 [ 2] [ 16] [6688990103110605] +15:00:55 [ 3] [ 6] [011000] +15:00:55 [ 4] [ 12] [000100000000] +15:00:55 [ 7] [ 10] [0320150050] +15:00:55 [ 11] [ 6] [777807] +15:00:55 [ 12] [ 6] [150050] +15:00:55 [ 13] [ 4] [0320] +15:00:55 [ 15] [ 4] [0320] +15:00:55 [ 18] [ 4] [6011] +15:00:55 [ 22] [ 3] [900] +15:00:55 [ 25] [ 2] [02] +15:00:55 [ 28] [ 9] [D00002000] +15:00:55 [ 32] [ 6] [621354] +15:00:55 [ 35] [ 37] [6688990103110605=42121231060517500000] +15:00:55 [ 37] [ 12] [507902916581] +15:00:55 [ 41] [ 8] [12001400] +15:00:55 [ 42] [ 15] [NATIVE ] +15:00:55 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:00:55 [ 49] [ 3] [418] +15:00:55 [ 52] [ 16] [F4F8EE2CFF015DF1] +15:00:55 ============================================================================ +15:00:55 + + +waiting on router queue for slot.... +15:00:55 Sending to : <4> +15:00:55 ============================================================================ +15:00:56 ============================================================================ +15:00:56 Slot Id : <425> +15:00:56 Transaction Type : RESPONSE +15:00:56 Received From : +15:00:56 ============================================================================ +15:00:56 FNo. Len. Field Value +15:00:56 ============================================================================ +15:00:56 [ 1] [ 4] [0210] +15:00:56 [ 2] [ 16] [6688990103110605] +15:00:56 [ 3] [ 6] [011000] +15:00:56 [ 4] [ 12] [000100000000] +15:00:56 [ 11] [ 6] [777807] +15:00:56 [ 12] [ 6] [150050] +15:00:56 [ 15] [ 4] [0320] +15:00:56 [ 18] [ 4] [6011] +15:00:56 [ 32] [ 6] [621354] +15:00:56 [ 35] [ 37] [6688990103110605=42121231060517500000] +15:00:56 [ 37] [ 12] [507902916581] +15:00:56 [ 38] [ 6] [916218] +15:00:56 [ 39] [ 2] [00] +15:00:56 [ 41] [ 8] [12001400] +15:00:56 [ 49] [ 3] [418] +15:00:56 [ 54] [ 20] [1002418C000108604844] +15:00:56 ============================================================================ +15:00:56 Sending to : +15:00:56 ============================================================================ +15:00:56 + + +waiting on router queue for slot.... +15:00:57 ============================================================================ +15:00:57 Slot Id : <433> +15:00:57 Transaction Type : REQUEST +15:00:57 Received From : +15:00:57 ============================================================================ +15:00:57 FNo. Len. Field Value +15:00:57 ============================================================================ +15:00:57 [ 1] [ 4] [0800] +15:00:57 [ 7] [ 10] [0320080004] +15:00:57 [ 11] [ 6] [156906] +15:00:57 [ 70] [ 3] [301] +15:00:57 ============================================================================ +15:00:57 + + +waiting on router queue for slot.... +15:00:57 Sending to : +15:00:57 ============================================================================ +15:00:57 ============================================================================ +15:00:57 Slot Id : <433> +15:00:57 Transaction Type : RESPONSE +15:00:57 Received From : +15:00:57 ============================================================================ +15:00:57 FNo. Len. Field Value +15:00:57 ============================================================================ +15:00:57 [ 1] [ 4] [0810] +15:00:57 [ 7] [ 10] [0320080004] +15:00:57 [ 11] [ 6] [156906] +15:00:57 [ 39] [ 2] [00] +15:00:57 [ 70] [ 3] [301] +15:00:57 ============================================================================ +15:00:57 Calculate Source COMM Id = 2 +15:00:57 ============================================================================ +15:00:57 + + +waiting on router queue for slot.... +15:00:58 ============================================================================ +15:00:58 Slot Id : <425> +15:00:58 Transaction Type : RESPONSE +15:00:58 Received From : +15:00:58 ============================================================================ +15:00:58 FNo. Len. Field Value +15:00:58 ============================================================================ +15:00:58 [ 1] [ 4] [0210] +15:00:58 [ 2] [ 16] [6688990103110605] +15:00:58 [ 3] [ 6] [011000] +15:00:58 [ 4] [ 12] [000100000000] +15:00:58 [ 11] [ 6] [777807] +15:00:58 [ 12] [ 6] [150050] +15:00:58 [ 15] [ 4] [0320] +15:00:58 [ 18] [ 4] [6011] +15:00:58 [ 32] [ 6] [621354] +15:00:58 [ 35] [ 37] [6688990103110605=42121231060517500000] +15:00:58 [ 37] [ 12] [507902916581] +15:00:58 [ 38] [ 6] [916218] +15:00:58 [ 39] [ 2] [00] +15:00:58 [ 41] [ 8] [12001400] +15:00:58 [ 49] [ 3] [418] +15:00:58 [ 54] [ 20] [1002418C000108604844] +15:00:58 ============================================================================ +15:00:58 Calculate Source COMM Id = 0 +15:00:58 ============================================================================ +15:00:58 + + +waiting on router queue for slot.... +15:01:03 ============================================================================ +15:01:03 Slot Id : <388> +15:01:03 Transaction Type : REQUEST +15:01:03 Received From : +15:01:03 ============================================================================ +15:01:03 FNo. Len. Field Value +15:01:03 ============================================================================ +15:01:03 [ 1] [ 4] [0200] +15:01:03 [ 2] [ 16] [1808930100005172] +15:01:03 [ 3] [ 6] [011000] +15:01:03 [ 4] [ 12] [000010000000] +15:01:03 [ 7] [ 10] [0320150058] +15:01:03 [ 11] [ 6] [777835] +15:01:03 [ 12] [ 6] [150058] +15:01:03 [ 13] [ 4] [0320] +15:01:03 [ 15] [ 4] [0320] +15:01:03 [ 18] [ 4] [6011] +15:01:03 [ 22] [ 3] [900] +15:01:03 [ 25] [ 2] [02] +15:01:03 [ 28] [ 9] [D00002000] +15:01:03 [ 32] [ 6] [621354] +15:01:03 [ 35] [ 27] [1808930100005172=1803500620] +15:01:03 [ 37] [ 12] [507903856722] +15:01:03 [ 41] [ 8] [01010100] +15:01:03 [ 42] [ 15] [NATIVE ] +15:01:03 [ 43] [ 40] [Domestic Airport SikhottabongLAO] +15:01:03 [ 49] [ 3] [418] +15:01:03 [ 52] [ 16] [F50CA83B80850EC2] +15:01:03 ============================================================================ +15:01:03 + + +waiting on router queue for slot.... +15:01:03 Sending to : +15:01:03 ============================================================================ +15:01:03 Sending to : +15:01:03 ============================================================================ +15:01:03 ============================================================================ +15:01:03 Slot Id : <388> +15:01:03 Transaction Type : REQUEST +15:01:03 Received From : +15:01:03 ============================================================================ +15:01:03 FNo. Len. Field Value +15:01:03 ============================================================================ +15:01:03 [ 1] [ 4] [0200] +15:01:03 [ 2] [ 16] [1808930100005172] +15:01:03 [ 3] [ 6] [011000] +15:01:03 [ 4] [ 12] [000010000000] +15:01:03 [ 7] [ 10] [0320150058] +15:01:03 [ 11] [ 6] [777835] +15:01:03 [ 12] [ 6] [150058] +15:01:03 [ 13] [ 4] [0320] +15:01:03 [ 15] [ 4] [0320] +15:01:03 [ 18] [ 4] [6011] +15:01:03 [ 22] [ 3] [900] +15:01:03 [ 25] [ 2] [02] +15:01:03 [ 28] [ 9] [D00002000] +15:01:03 [ 32] [ 6] [621354] +15:01:03 [ 35] [ 27] [1808930100005172=1803500620] +15:01:03 [ 37] [ 12] [507903856722] +15:01:03 [ 41] [ 8] [01010100] +15:01:03 [ 42] [ 15] [NATIVE ] +15:01:03 [ 43] [ 40] [Domestic Airport SikhottabongLAO] +15:01:03 [ 49] [ 3] [418] +15:01:03 [ 52] [ 16] [F50CA83B80850EC2] +15:01:03 ============================================================================ +15:01:03 + + +waiting on router queue for slot.... +15:01:03 Sending to : +15:01:03 ============================================================================ +15:01:03 ============================================================================ +15:01:03 Slot Id : <388> +15:01:03 Transaction Type : REQUEST +15:01:03 Received From : +15:01:03 ============================================================================ +15:01:03 FNo. Len. Field Value +15:01:03 ============================================================================ +15:01:03 [ 1] [ 4] [0200] +15:01:03 [ 2] [ 16] [1808930100005172] +15:01:03 [ 3] [ 6] [011000] +15:01:03 [ 4] [ 12] [000010000000] +15:01:03 [ 7] [ 10] [0320150058] +15:01:03 [ 11] [ 6] [777835] +15:01:03 [ 12] [ 6] [150058] +15:01:03 [ 13] [ 4] [0320] +15:01:03 [ 15] [ 4] [0320] +15:01:03 [ 18] [ 4] [6011] +15:01:03 [ 22] [ 3] [900] +15:01:03 [ 25] [ 2] [02] +15:01:03 [ 28] [ 9] [D00002000] +15:01:03 [ 32] [ 6] [621354] +15:01:03 [ 35] [ 27] [1808930100005172=1803500620] +15:01:03 [ 37] [ 12] [507903856722] +15:01:03 [ 41] [ 8] [01010100] +15:01:03 [ 42] [ 15] [NATIVE ] +15:01:03 [ 43] [ 40] [Domestic Airport SikhottabongLAO] +15:01:03 [ 49] [ 3] [418] +15:01:03 [ 52] [ 16] [4051B3FEE5E6918D] +15:01:03 ============================================================================ +15:01:03 + + +waiting on router queue for slot.... +15:01:03 Sending to : <2> +15:01:03 ============================================================================ +15:01:11 ============================================================================ +15:01:11 Slot Id : <364> +15:01:11 Transaction Type : REQUEST +15:01:11 Received From : +15:01:11 ============================================================================ +15:01:11 FNo. Len. Field Value +15:01:11 ============================================================================ +15:01:11 [ 1] [ 4] [0800] +15:01:11 [ 7] [ 10] [0320221259] +15:01:11 [ 11] [ 6] [151259] +15:01:11 [ 37] [ 12] [57915151259] +15:01:11 [ 70] [ 3] [301] +15:01:11 ============================================================================ +15:01:11 + + +waiting on router queue for slot.... +15:01:11 Sending to : +15:01:11 ============================================================================ +15:01:11 ============================================================================ +15:01:11 Slot Id : <364> +15:01:11 Transaction Type : RESPONSE +15:01:11 Received From : +15:01:11 ============================================================================ +15:01:11 FNo. Len. Field Value +15:01:11 ============================================================================ +15:01:11 [ 1] [ 4] [0810] +15:01:11 [ 7] [ 10] [0320221259] +15:01:11 [ 11] [ 6] [151259] +15:01:11 [ 37] [ 12] [579151512590] +15:01:11 [ 39] [ 2] [00] +15:01:11 [ 70] [ 3] [810] +15:01:11 ============================================================================ +15:01:11 Calculate Source COMM Id = 6 +15:01:11 ============================================================================ +15:01:11 + + +waiting on router queue for slot.... +15:01:11 ============================================================================ +15:01:11 Slot Id : <388> +15:01:11 Transaction Type : RESPONSE +15:01:11 Received From : +15:01:11 ============================================================================ +15:01:11 FNo. Len. Field Value +15:01:11 ============================================================================ +15:01:11 [ 1] [ 4] [0210] +15:01:11 [ 2] [ 16] [1808930100005172] +15:01:11 [ 3] [ 6] [011000] +15:01:11 [ 4] [ 12] [000010000000] +15:01:11 [ 6] [ 12] [000010000000] +15:01:11 [ 7] [ 10] [0320150058] +15:01:11 [ 11] [ 6] [777835] +15:01:11 [ 12] [ 6] [150058] +15:01:11 [ 13] [ 4] [0320] +15:01:11 [ 18] [ 4] [6011] +15:01:11 [ 19] [ 3] [418] +15:01:11 [ 22] [ 3] [021] +15:01:11 [ 32] [ 6] [621354] +15:01:11 [ 35] [ 27] [1808930100005172=1803500620] +15:01:11 [ 37] [ 12] [507903856722] +15:01:11 [ 38] [ 6] [777835] +15:01:11 [ 39] [ 2] [00] +15:01:11 [ 41] [ 8] [01010100] +15:01:11 [ 49] [ 3] [418] +15:01:11 [ 52] [ 16] [4051B3FEE5E6918D] +15:01:11 [ 54] [ 20] [1001418C000072730800] +15:01:11 ============================================================================ +15:01:11 Sending to : +15:01:11 ============================================================================ +15:01:11 + + +waiting on router queue for slot.... +15:01:13 ============================================================================ +15:01:13 Slot Id : <388> +15:01:13 Transaction Type : RESPONSE +15:01:13 Received From : +15:01:13 ============================================================================ +15:01:13 FNo. Len. Field Value +15:01:13 ============================================================================ +15:01:13 [ 1] [ 4] [0210] +15:01:13 [ 2] [ 16] [1808930100005172] +15:01:13 [ 3] [ 6] [011000] +15:01:13 [ 4] [ 12] [000010000000] +15:01:13 [ 6] [ 12] [000010000000] +15:01:13 [ 7] [ 10] [0320150058] +15:01:13 [ 11] [ 6] [777835] +15:01:13 [ 12] [ 6] [150058] +15:01:13 [ 13] [ 4] [0320] +15:01:13 [ 18] [ 4] [6011] +15:01:13 [ 19] [ 3] [418] +15:01:13 [ 22] [ 3] [021] +15:01:13 [ 32] [ 6] [621354] +15:01:13 [ 35] [ 27] [1808930100005172=1803500620] +15:01:13 [ 37] [ 12] [507903856722] +15:01:13 [ 38] [ 6] [777835] +15:01:13 [ 39] [ 2] [00] +15:01:13 [ 41] [ 8] [01010100] +15:01:13 [ 49] [ 3] [418] +15:01:13 [ 52] [ 16] [4051B3FEE5E6918D] +15:01:13 [ 54] [ 20] [1001418C000072730800] +15:01:13 ============================================================================ +15:01:13 Calculate Source COMM Id = 0 +15:01:13 ============================================================================ +15:01:13 + + +waiting on router queue for slot.... +15:01:18 ============================================================================ +15:01:18 Slot Id : <367> +15:01:18 Transaction Type : REQUEST +15:01:18 Received From : +15:01:18 ============================================================================ +15:01:18 FNo. Len. Field Value +15:01:18 ============================================================================ +15:01:18 [ 1] [ 4] [0200] +15:01:18 [ 2] [ 16] [1808930300020096] +15:01:18 [ 3] [ 6] [011000] +15:01:18 [ 4] [ 12] [000100000000] +15:01:18 [ 7] [ 10] [0320150905] +15:01:18 [ 11] [ 6] [021173] +15:01:18 [ 12] [ 6] [150905] +15:01:18 [ 13] [ 4] [0320] +15:01:18 [ 14] [ 4] [1803] +15:01:18 [ 15] [ 4] [0320] +15:01:18 [ 18] [ 4] [6011] +15:01:18 [ 22] [ 3] [900] +15:01:18 [ 25] [ 2] [02] +15:01:18 [ 28] [ 9] [D00002000] +15:01:18 [ 32] [ 6] [220699] +15:01:18 [ 35] [ 27] [1808930300020096=1803500821] +15:01:18 [ 37] [ 12] [507900263120] +15:01:18 [ 41] [ 8] [01001400] +15:01:18 [ 42] [ 15] [APTRA ] +15:01:18 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:01:18 [ 49] [ 3] [418] +15:01:18 [ 52] [ 16] [F83A5BFC314B1547] +15:01:18 ============================================================================ +15:01:18 + + +waiting on router queue for slot.... +15:01:18 Sending to : +15:01:18 ============================================================================ +15:01:18 Sending to : +15:01:18 ============================================================================ +15:01:18 ============================================================================ +15:01:18 Slot Id : <367> +15:01:18 Transaction Type : REQUEST +15:01:18 Received From : +15:01:18 ============================================================================ +15:01:18 FNo. Len. Field Value +15:01:18 ============================================================================ +15:01:18 [ 1] [ 4] [0200] +15:01:18 [ 2] [ 16] [1808930300020096] +15:01:18 [ 3] [ 6] [011000] +15:01:18 [ 4] [ 12] [000100000000] +15:01:18 [ 7] [ 10] [0320150905] +15:01:18 [ 11] [ 6] [021173] +15:01:18 [ 12] [ 6] [150905] +15:01:18 [ 13] [ 4] [0320] +15:01:18 [ 14] [ 4] [1803] +15:01:18 [ 15] [ 4] [0320] +15:01:18 [ 18] [ 4] [6011] +15:01:18 [ 22] [ 3] [900] +15:01:18 [ 25] [ 2] [02] +15:01:18 [ 28] [ 9] [D00002000] +15:01:18 [ 32] [ 6] [220699] +15:01:18 [ 35] [ 27] [1808930300020096=1803500821] +15:01:18 [ 37] [ 12] [507900263120] +15:01:18 [ 41] [ 8] [01001400] +15:01:18 [ 42] [ 15] [APTRA ] +15:01:18 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:01:18 [ 49] [ 3] [418] +15:01:18 [ 52] [ 16] [F83A5BFC314B1547] +15:01:18 ============================================================================ +15:01:18 + + +waiting on router queue for slot.... +15:01:18 Sending to : +15:01:18 ============================================================================ +15:01:18 ============================================================================ +15:01:18 Slot Id : <367> +15:01:18 Transaction Type : REQUEST +15:01:18 Received From : +15:01:18 ============================================================================ +15:01:18 FNo. Len. Field Value +15:01:18 ============================================================================ +15:01:18 [ 1] [ 4] [0200] +15:01:18 [ 2] [ 16] [1808930300020096] +15:01:18 [ 3] [ 6] [011000] +15:01:18 [ 4] [ 12] [000100000000] +15:01:18 [ 7] [ 10] [0320150905] +15:01:18 [ 11] [ 6] [021173] +15:01:18 [ 12] [ 6] [150905] +15:01:18 [ 13] [ 4] [0320] +15:01:18 [ 14] [ 4] [1803] +15:01:18 [ 15] [ 4] [0320] +15:01:18 [ 18] [ 4] [6011] +15:01:18 [ 22] [ 3] [900] +15:01:18 [ 25] [ 2] [02] +15:01:18 [ 28] [ 9] [D00002000] +15:01:18 [ 32] [ 6] [220699] +15:01:18 [ 35] [ 27] [1808930300020096=1803500821] +15:01:18 [ 37] [ 12] [507900263120] +15:01:18 [ 41] [ 8] [01001400] +15:01:18 [ 42] [ 15] [APTRA ] +15:01:18 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:01:18 [ 49] [ 3] [418] +15:01:18 [ 52] [ 16] [8C1A1A1D99178545] +15:01:18 ============================================================================ +15:01:18 + + +waiting on router queue for slot.... +15:01:18 Sending to : <2> +15:01:18 ============================================================================ +15:01:20 ============================================================================ +15:01:20 Slot Id : <430> +15:01:20 Transaction Type : REQUEST +15:01:20 Received From : +15:01:20 ============================================================================ +15:01:20 FNo. Len. Field Value +15:01:20 ============================================================================ +15:01:20 [ 1] [ 4] [0800] +15:01:20 [ 7] [ 10] [0320080027] +15:01:20 [ 11] [ 6] [156907] +15:01:20 [ 70] [ 3] [301] +15:01:20 ============================================================================ +15:01:20 + + +waiting on router queue for slot.... +15:01:20 Sending to : +15:01:20 ============================================================================ +15:01:20 ============================================================================ +15:01:20 Slot Id : <430> +15:01:20 Transaction Type : RESPONSE +15:01:20 Received From : +15:01:20 ============================================================================ +15:01:20 FNo. Len. Field Value +15:01:20 ============================================================================ +15:01:20 [ 1] [ 4] [0810] +15:01:20 [ 7] [ 10] [0320080027] +15:01:20 [ 11] [ 6] [156907] +15:01:20 [ 39] [ 2] [00] +15:01:20 [ 70] [ 3] [301] +15:01:20 ============================================================================ +15:01:20 Calculate Source COMM Id = 2 +15:01:20 ============================================================================ +15:01:20 + + +waiting on router queue for slot.... +15:01:22 ============================================================================ +15:01:22 Slot Id : <409> +15:01:22 Transaction Type : REQUEST +15:01:22 Received From : +15:01:22 ============================================================================ +15:01:22 FNo. Len. Field Value +15:01:22 ============================================================================ +15:01:22 [ 1] [ 4] [0800] +15:01:22 [ 7] [ 10] [0320075912] +15:01:22 [ 11] [ 6] [041519] +15:01:22 [ 37] [ 12] [57914041519] +15:01:22 [ 70] [ 3] [301] +15:01:22 ============================================================================ +15:01:22 + + +waiting on router queue for slot.... +15:01:22 Sending to : +15:01:22 ============================================================================ +15:01:22 ============================================================================ +15:01:22 Slot Id : <409> +15:01:22 Transaction Type : RESPONSE +15:01:22 Received From : +15:01:22 ============================================================================ +15:01:22 FNo. Len. Field Value +15:01:22 ============================================================================ +15:01:22 [ 1] [ 4] [0810] +15:01:22 [ 7] [ 10] [0320075912] +15:01:22 [ 11] [ 6] [041519] +15:01:22 [ 37] [ 12] [579140415190] +15:01:22 [ 39] [ 2] [00] +15:01:22 [ 70] [ 3] [810] +15:01:22 ============================================================================ +15:01:22 Calculate Source COMM Id = 4 +15:01:22 ============================================================================ +15:01:22 + + +waiting on router queue for slot.... +15:01:27 ============================================================================ +15:01:27 Slot Id : <367> +15:01:27 Transaction Type : RESPONSE +15:01:27 Received From : +15:01:27 ============================================================================ +15:01:27 FNo. Len. Field Value +15:01:27 ============================================================================ +15:01:27 [ 1] [ 4] [0210] +15:01:27 [ 2] [ 16] [1808930300020096] +15:01:27 [ 3] [ 6] [011000] +15:01:27 [ 4] [ 12] [000100000000] +15:01:27 [ 6] [ 12] [000100000000] +15:01:27 [ 7] [ 10] [0320150905] +15:01:27 [ 11] [ 6] [021173] +15:01:27 [ 12] [ 6] [150905] +15:01:27 [ 13] [ 4] [0320] +15:01:27 [ 14] [ 4] [1803] +15:01:27 [ 18] [ 4] [6011] +15:01:27 [ 19] [ 3] [418] +15:01:27 [ 22] [ 3] [021] +15:01:27 [ 32] [ 6] [220699] +15:01:27 [ 35] [ 27] [1808930300020096=1803500821] +15:01:27 [ 37] [ 12] [507900263120] +15:01:27 [ 38] [ 6] [021173] +15:01:27 [ 39] [ 2] [00] +15:01:27 [ 41] [ 8] [01001400] +15:01:27 [ 49] [ 3] [418] +15:01:27 [ 52] [ 16] [8C1A1A1D99178545] +15:01:27 [ 54] [ 20] [1001418C000339263400] +15:01:27 ============================================================================ +15:01:27 Sending to : +15:01:27 ============================================================================ +15:01:27 + + +waiting on router queue for slot.... +15:01:28 ============================================================================ +15:01:28 Slot Id : <367> +15:01:28 Transaction Type : RESPONSE +15:01:28 Received From : +15:01:28 ============================================================================ +15:01:28 FNo. Len. Field Value +15:01:28 ============================================================================ +15:01:28 [ 1] [ 4] [0210] +15:01:28 [ 2] [ 16] [1808930300020096] +15:01:28 [ 3] [ 6] [011000] +15:01:28 [ 4] [ 12] [000100000000] +15:01:28 [ 6] [ 12] [000100000000] +15:01:28 [ 7] [ 10] [0320150905] +15:01:28 [ 11] [ 6] [021173] +15:01:28 [ 12] [ 6] [150905] +15:01:28 [ 13] [ 4] [0320] +15:01:28 [ 14] [ 4] [1803] +15:01:28 [ 18] [ 4] [6011] +15:01:28 [ 19] [ 3] [418] +15:01:28 [ 22] [ 3] [021] +15:01:28 [ 32] [ 6] [220699] +15:01:28 [ 35] [ 27] [1808930300020096=1803500821] +15:01:28 [ 37] [ 12] [507900263120] +15:01:28 [ 38] [ 6] [021173] +15:01:28 [ 39] [ 2] [00] +15:01:28 [ 41] [ 8] [01001400] +15:01:28 [ 49] [ 3] [418] +15:01:28 [ 52] [ 16] [8C1A1A1D99178545] +15:01:28 [ 54] [ 20] [1001418C000339263400] +15:01:28 ============================================================================ +15:01:28 Calculate Source COMM Id = 1 +15:01:28 ============================================================================ +15:01:28 + + +waiting on router queue for slot.... +15:01:33 ============================================================================ +15:01:33 Slot Id : <441> +15:01:33 Transaction Type : REQUEST +15:01:33 Received From : +15:01:33 ============================================================================ +15:01:33 FNo. Len. Field Value +15:01:33 ============================================================================ +15:01:33 [ 1] [ 4] [0800] +15:01:33 [ 7] [ 10] [0320080040] +15:01:33 [ 11] [ 6] [156908] +15:01:33 [ 70] [ 3] [301] +15:01:33 ============================================================================ +15:01:33 + + +waiting on router queue for slot.... +15:01:33 Sending to : +15:01:33 ============================================================================ +15:01:33 ============================================================================ +15:01:33 Slot Id : <441> +15:01:33 Transaction Type : RESPONSE +15:01:33 Received From : +15:01:33 ============================================================================ +15:01:33 FNo. Len. Field Value +15:01:33 ============================================================================ +15:01:33 [ 1] [ 4] [0810] +15:01:33 [ 7] [ 10] [0320080040] +15:01:33 [ 11] [ 6] [156908] +15:01:33 [ 39] [ 2] [00] +15:01:33 [ 70] [ 3] [301] +15:01:33 ============================================================================ +15:01:33 Calculate Source COMM Id = 2 +15:01:33 ============================================================================ +15:01:33 + + +waiting on router queue for slot.... +15:01:34 ============================================================================ +15:01:34 Slot Id : <437> +15:01:34 Transaction Type : REQUEST +15:01:34 Received From : +15:01:34 ============================================================================ +15:01:34 FNo. Len. Field Value +15:01:34 ============================================================================ +15:01:34 [ 1] [ 4] [0200] +15:01:34 [ 2] [ 16] [6213545000023170] +15:01:34 [ 3] [ 6] [010000] +15:01:34 [ 4] [ 12] [000100000000] +15:01:34 [ 7] [ 10] [0320080040] +15:01:34 [ 11] [ 6] [269898] +15:01:34 [ 12] [ 6] [150040] +15:01:34 [ 13] [ 4] [0320] +15:01:34 [ 14] [ 4] [4912] +15:01:34 [ 15] [ 4] [0320] +15:01:34 [ 18] [ 4] [6011] +15:01:34 [ 19] [ 3] [418] +15:01:34 [ 22] [ 3] [021] +15:01:34 [ 25] [ 2] [01] +15:01:34 [ 28] [ 9] [D00002000] +15:01:34 [ 32] [ 6] [180893] +15:01:34 [ 35] [ 32] [6213545000023170=491212012317510] +15:01:34 [ 37] [ 12] [507908269898] +15:01:34 [ 41] [ 8] [0243VTKS] +15:01:34 [ 42] [ 15] [999999 ] +15:01:34 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:01:34 [ 49] [ 3] [418] +15:01:34 [ 52] [ 16] [D9CD5EAC5DA4D3B2] +15:01:34 ============================================================================ +15:01:34 + + +waiting on router queue for slot.... +15:01:34 Sending to : +15:01:34 ============================================================================ +15:01:34 Sending to : +15:01:34 ============================================================================ +15:01:35 ============================================================================ +15:01:35 Slot Id : <437> +15:01:35 Transaction Type : REQUEST +15:01:35 Received From : +15:01:35 ============================================================================ +15:01:35 FNo. Len. Field Value +15:01:35 ============================================================================ +15:01:35 [ 1] [ 4] [0200] +15:01:35 [ 2] [ 16] [6213545000023170] +15:01:35 [ 3] [ 6] [010000] +15:01:35 [ 4] [ 12] [000100000000] +15:01:35 [ 7] [ 10] [0320080040] +15:01:35 [ 11] [ 6] [269898] +15:01:35 [ 12] [ 6] [150040] +15:01:35 [ 13] [ 4] [0320] +15:01:35 [ 14] [ 4] [4912] +15:01:35 [ 15] [ 4] [0320] +15:01:35 [ 18] [ 4] [6011] +15:01:35 [ 19] [ 3] [418] +15:01:35 [ 22] [ 3] [021] +15:01:35 [ 25] [ 2] [01] +15:01:35 [ 28] [ 9] [D00002000] +15:01:35 [ 32] [ 6] [180893] +15:01:35 [ 35] [ 32] [6213545000023170=491212012317510] +15:01:35 [ 37] [ 12] [507908269898] +15:01:35 [ 41] [ 8] [0243VTKS] +15:01:35 [ 42] [ 15] [999999 ] +15:01:35 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:01:35 [ 49] [ 3] [418] +15:01:35 [ 52] [ 16] [D9CD5EAC5DA4D3B2] +15:01:35 ============================================================================ +15:01:35 + + +waiting on router queue for slot.... +15:01:35 Sending to : +15:01:35 ============================================================================ +15:01:35 ============================================================================ +15:01:35 Slot Id : <437> +15:01:35 Transaction Type : REQUEST +15:01:35 Received From : +15:01:35 ============================================================================ +15:01:35 FNo. Len. Field Value +15:01:35 ============================================================================ +15:01:35 [ 1] [ 4] [0200] +15:01:35 [ 2] [ 16] [6213545000023170] +15:01:35 [ 3] [ 6] [010000] +15:01:35 [ 4] [ 12] [000100000000] +15:01:35 [ 7] [ 10] [0320080040] +15:01:35 [ 11] [ 6] [269898] +15:01:35 [ 12] [ 6] [150040] +15:01:35 [ 13] [ 4] [0320] +15:01:35 [ 14] [ 4] [4912] +15:01:35 [ 15] [ 4] [0320] +15:01:35 [ 18] [ 4] [6011] +15:01:35 [ 19] [ 3] [418] +15:01:35 [ 22] [ 3] [021] +15:01:35 [ 25] [ 2] [01] +15:01:35 [ 28] [ 9] [D00002000] +15:01:35 [ 32] [ 6] [180893] +15:01:35 [ 35] [ 32] [6213545000023170=491212012317510] +15:01:35 [ 37] [ 12] [507908269898] +15:01:35 [ 41] [ 8] [0243VTKS] +15:01:35 [ 42] [ 15] [999999 ] +15:01:35 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:01:35 [ 49] [ 3] [418] +15:01:35 [ 52] [ 16] [7B0D5BC8F4C69F8C] +15:01:35 ============================================================================ +15:01:35 + + +waiting on router queue for slot.... +15:01:35 Sending to : <0> +15:01:35 ============================================================================ +15:01:35 ============================================================================ +15:01:35 Slot Id : <437> +15:01:35 Transaction Type : RESPONSE +15:01:35 Received From : +15:01:35 ============================================================================ +15:01:35 FNo. Len. Field Value +15:01:35 ============================================================================ +15:01:35 [ 1] [ 4] [0210] +15:01:35 [ 2] [ 16] [6213545000023170] +15:01:35 [ 3] [ 6] [010000] +15:01:35 [ 4] [ 12] [000100000000] +15:01:35 [ 7] [ 10] [0320080040] +15:01:35 [ 11] [ 6] [269898] +15:01:35 [ 12] [ 6] [150040] +15:01:35 [ 13] [ 4] [0320] +15:01:35 [ 15] [ 4] [0320] +15:01:35 [ 18] [ 4] [6011] +15:01:35 [ 19] [ 3] [418] +15:01:35 [ 32] [ 6] [180893] +15:01:35 [ 35] [ 32] [6213545000023170=491212012317510] +15:01:35 [ 37] [ 12] [507908269898] +15:01:35 [ 38] [ 6] [559942] +15:01:35 [ 39] [ 2] [00] +15:01:35 [ 41] [ 8] [0243VTKS] +15:01:35 [ 49] [ 3] [418] +15:01:35 [ 54] [ 40] [0001418C0000615585090002418C000061558509] +15:01:35 ============================================================================ +15:01:35 Sending to : +15:01:35 ============================================================================ +15:01:35 + + +waiting on router queue for slot.... +15:01:37 ============================================================================ +15:01:37 Slot Id : <437> +15:01:37 Transaction Type : RESPONSE +15:01:37 Received From : +15:01:37 ============================================================================ +15:01:37 FNo. Len. Field Value +15:01:37 ============================================================================ +15:01:37 [ 1] [ 4] [0210] +15:01:37 [ 2] [ 16] [6213545000023170] +15:01:37 [ 3] [ 6] [010000] +15:01:37 [ 4] [ 12] [000100000000] +15:01:37 [ 7] [ 10] [0320080040] +15:01:37 [ 11] [ 6] [269898] +15:01:37 [ 12] [ 6] [150040] +15:01:37 [ 13] [ 4] [0320] +15:01:37 [ 15] [ 4] [0320] +15:01:37 [ 18] [ 4] [6011] +15:01:37 [ 19] [ 3] [418] +15:01:37 [ 32] [ 6] [180893] +15:01:37 [ 35] [ 32] [6213545000023170=491212012317510] +15:01:37 [ 37] [ 12] [507908269898] +15:01:37 [ 38] [ 6] [559942] +15:01:37 [ 39] [ 2] [00] +15:01:37 [ 41] [ 8] [0243VTKS] +15:01:37 [ 49] [ 3] [418] +15:01:37 [ 54] [ 40] [0001418C0000615585090002418C000061558509] +15:01:37 ============================================================================ +15:01:37 Calculate Source COMM Id = 2 +15:01:37 ============================================================================ +15:01:37 + + +waiting on router queue for slot.... +15:01:37 ============================================================================ +15:01:37 Slot Id : <402> +15:01:37 Transaction Type : REQUEST +15:01:37 Received From : +15:01:37 ============================================================================ +15:01:37 FNo. Len. Field Value +15:01:37 ============================================================================ +15:01:37 [ 1] [ 4] [0200] +15:01:37 [ 2] [ 16] [6688990101789202] +15:01:37 [ 3] [ 6] [010000] +15:01:37 [ 4] [ 12] [000100000000] +15:01:37 [ 7] [ 10] [0320150133] +15:01:37 [ 11] [ 6] [777945] +15:01:37 [ 12] [ 6] [150133] +15:01:37 [ 13] [ 4] [0320] +15:01:37 [ 15] [ 4] [0320] +15:01:37 [ 18] [ 4] [6011] +15:01:37 [ 22] [ 3] [900] +15:01:37 [ 25] [ 2] [02] +15:01:37 [ 28] [ 9] [D00002000] +15:01:37 [ 32] [ 6] [621354] +15:01:37 [ 35] [ 37] [6688990101789202=42051231920204300000] +15:01:37 [ 37] [ 12] [507904635733] +15:01:37 [ 41] [ 8] [17000800] +15:01:37 [ 42] [ 15] [NATIVE ] +15:01:37 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:01:37 [ 49] [ 3] [418] +15:01:37 [ 52] [ 16] [4C82B4D1FCD36787] +15:01:37 ============================================================================ +15:01:37 + + +waiting on router queue for slot.... +15:01:37 Sending to : +15:01:37 ============================================================================ +15:01:37 Sending to : +15:01:37 ============================================================================ +15:01:38 ============================================================================ +15:01:38 Slot Id : <402> +15:01:38 Transaction Type : REQUEST +15:01:38 Received From : +15:01:38 ============================================================================ +15:01:38 FNo. Len. Field Value +15:01:38 ============================================================================ +15:01:38 [ 1] [ 4] [0200] +15:01:38 [ 2] [ 16] [6688990101789202] +15:01:38 [ 3] [ 6] [010000] +15:01:38 [ 4] [ 12] [000100000000] +15:01:38 [ 7] [ 10] [0320150133] +15:01:38 [ 11] [ 6] [777945] +15:01:38 [ 12] [ 6] [150133] +15:01:38 [ 13] [ 4] [0320] +15:01:38 [ 15] [ 4] [0320] +15:01:38 [ 18] [ 4] [6011] +15:01:38 [ 22] [ 3] [900] +15:01:38 [ 25] [ 2] [02] +15:01:38 [ 28] [ 9] [D00002000] +15:01:38 [ 32] [ 6] [621354] +15:01:38 [ 35] [ 37] [6688990101789202=42051231920204300000] +15:01:38 [ 37] [ 12] [507904635733] +15:01:38 [ 41] [ 8] [17000800] +15:01:38 [ 42] [ 15] [NATIVE ] +15:01:38 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:01:38 [ 49] [ 3] [418] +15:01:38 [ 52] [ 16] [4C82B4D1FCD36787] +15:01:38 ============================================================================ +15:01:38 + + +waiting on router queue for slot.... +15:01:38 Sending to : +15:01:38 ============================================================================ +15:01:38 ============================================================================ +15:01:38 Slot Id : <402> +15:01:38 Transaction Type : REQUEST +15:01:38 Received From : +15:01:38 ============================================================================ +15:01:38 FNo. Len. Field Value +15:01:38 ============================================================================ +15:01:38 [ 1] [ 4] [0200] +15:01:38 [ 2] [ 16] [6688990101789202] +15:01:38 [ 3] [ 6] [010000] +15:01:38 [ 4] [ 12] [000100000000] +15:01:38 [ 7] [ 10] [0320150133] +15:01:38 [ 11] [ 6] [777945] +15:01:38 [ 12] [ 6] [150133] +15:01:38 [ 13] [ 4] [0320] +15:01:38 [ 15] [ 4] [0320] +15:01:38 [ 18] [ 4] [6011] +15:01:38 [ 22] [ 3] [900] +15:01:38 [ 25] [ 2] [02] +15:01:38 [ 28] [ 9] [D00002000] +15:01:38 [ 32] [ 6] [621354] +15:01:38 [ 35] [ 37] [6688990101789202=42051231920204300000] +15:01:38 [ 37] [ 12] [507904635733] +15:01:38 [ 41] [ 8] [17000800] +15:01:38 [ 42] [ 15] [NATIVE ] +15:01:38 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:01:38 [ 49] [ 3] [418] +15:01:38 [ 52] [ 16] [B763F1BB0130F7D6] +15:01:38 ============================================================================ +15:01:38 + + +waiting on router queue for slot.... +15:01:38 Sending to : <4> +15:01:38 ============================================================================ +15:01:39 ============================================================================ +15:01:39 Slot Id : <402> +15:01:39 Transaction Type : RESPONSE +15:01:39 Received From : +15:01:39 ============================================================================ +15:01:39 FNo. Len. Field Value +15:01:39 ============================================================================ +15:01:39 [ 1] [ 4] [0210] +15:01:39 [ 2] [ 16] [6688990101789202] +15:01:39 [ 3] [ 6] [010000] +15:01:39 [ 4] [ 12] [000100000000] +15:01:39 [ 11] [ 6] [777945] +15:01:39 [ 12] [ 6] [150133] +15:01:39 [ 15] [ 4] [0320] +15:01:39 [ 18] [ 4] [6011] +15:01:39 [ 32] [ 6] [621354] +15:01:39 [ 35] [ 37] [6688990101789202=42051231920204300000] +15:01:39 [ 37] [ 12] [507904635733] +15:01:39 [ 38] [ 6] [461544] +15:01:39 [ 39] [ 2] [00] +15:01:39 [ 41] [ 8] [17000800] +15:01:39 [ 49] [ 3] [418] +15:01:39 [ 54] [ 20] [0002418C000039280050] +15:01:39 ============================================================================ +15:01:39 Sending to : +15:01:39 ============================================================================ +15:01:39 + + +waiting on router queue for slot.... +15:01:40 ============================================================================ +15:01:40 Slot Id : <402> +15:01:40 Transaction Type : RESPONSE +15:01:40 Received From : +15:01:40 ============================================================================ +15:01:40 FNo. Len. Field Value +15:01:40 ============================================================================ +15:01:40 [ 1] [ 4] [0210] +15:01:40 [ 2] [ 16] [6688990101789202] +15:01:40 [ 3] [ 6] [010000] +15:01:40 [ 4] [ 12] [000100000000] +15:01:40 [ 11] [ 6] [777945] +15:01:40 [ 12] [ 6] [150133] +15:01:40 [ 15] [ 4] [0320] +15:01:40 [ 18] [ 4] [6011] +15:01:40 [ 32] [ 6] [621354] +15:01:40 [ 35] [ 37] [6688990101789202=42051231920204300000] +15:01:40 [ 37] [ 12] [507904635733] +15:01:40 [ 38] [ 6] [461544] +15:01:40 [ 39] [ 2] [00] +15:01:40 [ 41] [ 8] [17000800] +15:01:40 [ 49] [ 3] [418] +15:01:40 [ 54] [ 20] [0002418C000039280050] +15:01:40 ============================================================================ +15:01:40 Calculate Source COMM Id = 0 +15:01:40 ============================================================================ +15:01:40 + + +waiting on router queue for slot.... +15:01:42 ============================================================================ +15:01:42 Slot Id : <403> +15:01:42 Transaction Type : REQUEST +15:01:42 Received From : +15:01:42 ============================================================================ +15:01:42 FNo. Len. Field Value +15:01:42 ============================================================================ +15:01:42 [ 1] [ 4] [0800] +15:01:42 [ 2] [ 5] [02531] +15:01:42 [ 3] [ 6] [579158] +15:01:42 [ 7] [ 10] [0320080142] +15:01:42 [ 11] [ 6] [807284] +15:01:42 [ 15] [ 10] [0320080142] +15:01:42 [ 37] [ 11] [57915807284] +15:01:42 [ 70] [ 3] [001] +15:01:42 ============================================================================ +15:01:42 + + +waiting on router queue for slot.... +15:01:42 ============================================================================ +15:01:42 Slot Id : <403> +15:01:42 Transaction Type : RESPONSE +15:01:42 Received From : +15:01:42 ============================================================================ +15:01:42 FNo. Len. Field Value +15:01:42 ============================================================================ +15:01:42 [ 1] [ 4] [0810] +15:01:42 [ 7] [ 10] [0320080142] +15:01:42 [ 11] [ 6] [807284] +15:01:42 [ 15] [ 4] [0320] +15:01:42 [ 37] [ 12] [57915807284] +15:01:42 [ 39] [ 2] [00] +15:01:42 [ 70] [ 3] [001] +15:01:42 ============================================================================ +15:01:42 Sending to : +15:01:42 ============================================================================ +15:01:42 + + +waiting on router queue for slot.... +15:01:49 ============================================================================ +15:01:49 Slot Id : <408> +15:01:49 Transaction Type : REQUEST +15:01:49 Received From : +15:01:49 ============================================================================ +15:01:49 FNo. Len. Field Value +15:01:49 ============================================================================ +15:01:49 [ 1] [ 4] [0800] +15:01:49 [ 7] [ 10] [0320080056] +15:01:49 [ 11] [ 6] [156909] +15:01:49 [ 70] [ 3] [301] +15:01:49 ============================================================================ +15:01:49 + + +waiting on router queue for slot.... +15:01:49 Sending to : +15:01:49 ============================================================================ +15:01:49 ============================================================================ +15:01:49 Slot Id : <408> +15:01:49 Transaction Type : RESPONSE +15:01:49 Received From : +15:01:49 ============================================================================ +15:01:49 FNo. Len. Field Value +15:01:49 ============================================================================ +15:01:49 [ 1] [ 4] [0810] +15:01:49 [ 7] [ 10] [0320080056] +15:01:49 [ 11] [ 6] [156909] +15:01:49 [ 39] [ 2] [00] +15:01:49 [ 70] [ 3] [301] +15:01:49 ============================================================================ +15:01:49 Calculate Source COMM Id = 2 +15:01:49 ============================================================================ +15:01:49 + + +waiting on router queue for slot.... +15:01:52 ============================================================================ +15:01:52 Slot Id : <362> +15:01:52 Transaction Type : REQUEST +15:01:52 Received From : +15:01:52 ============================================================================ +15:01:52 FNo. Len. Field Value +15:01:52 ============================================================================ +15:01:52 [ 1] [ 4] [0200] +15:01:52 [ 2] [ 16] [6213544000305851] +15:01:52 [ 3] [ 6] [310000] +15:01:52 [ 4] [ 12] [000000000000] +15:01:52 [ 7] [ 10] [0320150939] +15:01:52 [ 11] [ 6] [168965] +15:01:52 [ 12] [ 6] [150939] +15:01:52 [ 13] [ 4] [0320] +15:01:52 [ 14] [ 4] [4912] +15:01:52 [ 15] [ 4] [0320] +15:01:52 [ 18] [ 4] [6011] +15:01:52 [ 22] [ 3] [900] +15:01:52 [ 25] [ 2] [02] +15:01:52 [ 28] [ 9] [000000000] +15:01:52 [ 32] [ 6] [220699] +15:01:52 [ 35] [ 32] [6213544000305851=491212010585339] +15:01:52 [ 37] [ 12] [507900026375] +15:01:52 [ 41] [ 8] [01000200] +15:01:52 [ 42] [ 15] [APTRA ] +15:01:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:01:52 [ 49] [ 3] [418] +15:01:52 [ 52] [ 16] [283599130F83030E] +15:01:52 ============================================================================ +15:01:52 + + +waiting on router queue for slot.... +15:01:52 Sending to : +15:01:52 ============================================================================ +15:01:52 Sending to : +15:01:52 ============================================================================ +15:01:53 ============================================================================ +15:01:53 Slot Id : <362> +15:01:53 Transaction Type : REQUEST +15:01:53 Received From : +15:01:53 ============================================================================ +15:01:53 FNo. Len. Field Value +15:01:53 ============================================================================ +15:01:53 [ 1] [ 4] [0200] +15:01:53 [ 2] [ 16] [6213544000305851] +15:01:53 [ 3] [ 6] [310000] +15:01:53 [ 4] [ 12] [000000000000] +15:01:53 [ 7] [ 10] [0320150939] +15:01:53 [ 11] [ 6] [168965] +15:01:53 [ 12] [ 6] [150939] +15:01:53 [ 13] [ 4] [0320] +15:01:53 [ 14] [ 4] [4912] +15:01:53 [ 15] [ 4] [0320] +15:01:53 [ 18] [ 4] [6011] +15:01:53 [ 22] [ 3] [900] +15:01:53 [ 25] [ 2] [02] +15:01:53 [ 28] [ 9] [000000000] +15:01:53 [ 32] [ 6] [220699] +15:01:53 [ 35] [ 32] [6213544000305851=491212010585339] +15:01:53 [ 37] [ 12] [507900026375] +15:01:53 [ 41] [ 8] [01000200] +15:01:53 [ 42] [ 15] [APTRA ] +15:01:53 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:01:53 [ 49] [ 3] [418] +15:01:53 [ 52] [ 16] [283599130F83030E] +15:01:53 ============================================================================ +15:01:53 + + +waiting on router queue for slot.... +15:01:53 Sending to : +15:01:53 ============================================================================ +15:01:53 ============================================================================ +15:01:53 Slot Id : <362> +15:01:53 Transaction Type : REQUEST +15:01:53 Received From : +15:01:53 ============================================================================ +15:01:53 FNo. Len. Field Value +15:01:53 ============================================================================ +15:01:53 [ 1] [ 4] [0200] +15:01:53 [ 2] [ 16] [6213544000305851] +15:01:53 [ 3] [ 6] [310000] +15:01:53 [ 4] [ 12] [000000000000] +15:01:53 [ 7] [ 10] [0320150939] +15:01:53 [ 11] [ 6] [168965] +15:01:53 [ 12] [ 6] [150939] +15:01:53 [ 13] [ 4] [0320] +15:01:53 [ 14] [ 4] [4912] +15:01:53 [ 15] [ 4] [0320] +15:01:53 [ 18] [ 4] [6011] +15:01:53 [ 22] [ 3] [900] +15:01:53 [ 25] [ 2] [02] +15:01:53 [ 28] [ 9] [000000000] +15:01:53 [ 32] [ 6] [220699] +15:01:53 [ 35] [ 32] [6213544000305851=491212010585339] +15:01:53 [ 37] [ 12] [507900026375] +15:01:53 [ 41] [ 8] [01000200] +15:01:53 [ 42] [ 15] [APTRA ] +15:01:53 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:01:53 [ 49] [ 3] [418] +15:01:53 [ 52] [ 16] [AABA8835C39E1502] +15:01:53 ============================================================================ +15:01:53 + + +waiting on router queue for slot.... +15:01:53 Sending to : <0> +15:01:53 ============================================================================ +15:01:53 ============================================================================ +15:01:53 Slot Id : <362> +15:01:53 Transaction Type : RESPONSE +15:01:53 Received From : +15:01:53 ============================================================================ +15:01:53 FNo. Len. Field Value +15:01:53 ============================================================================ +15:01:53 [ 1] [ 4] [0210] +15:01:53 [ 2] [ 16] [6213544000305851] +15:01:53 [ 3] [ 6] [310000] +15:01:53 [ 4] [ 12] [000000000000] +15:01:53 [ 7] [ 10] [0320150939] +15:01:53 [ 11] [ 6] [168965] +15:01:53 [ 12] [ 6] [150939] +15:01:53 [ 13] [ 4] [0320] +15:01:53 [ 15] [ 4] [0320] +15:01:53 [ 18] [ 4] [6011] +15:01:53 [ 32] [ 6] [220699] +15:01:53 [ 35] [ 32] [6213544000305851=491212010585339] +15:01:53 [ 37] [ 12] [507900026375] +15:01:53 [ 38] [ 6] [368716] +15:01:53 [ 39] [ 2] [00] +15:01:53 [ 41] [ 8] [01000200] +15:01:53 [ 49] [ 3] [418] +15:01:53 [ 54] [ 40] [0001418C0000196875360002418C000019687536] +15:01:53 ============================================================================ +15:01:53 Sending to : +15:01:53 ============================================================================ +15:01:53 + + +waiting on router queue for slot.... +15:01:54 ============================================================================ +15:01:54 Slot Id : <385> +15:01:54 Transaction Type : REQUEST +15:01:54 Received From : +15:01:54 ============================================================================ +15:01:54 FNo. Len. Field Value +15:01:54 ============================================================================ +15:01:54 [ 1] [ 4] [0200] +15:01:54 [ 2] [ 16] [6688990103744106] +15:01:54 [ 3] [ 6] [010000] +15:01:54 [ 4] [ 12] [000100000000] +15:01:54 [ 7] [ 10] [0320150150] +15:01:54 [ 11] [ 6] [778010] +15:01:54 [ 12] [ 6] [150150] +15:01:54 [ 13] [ 4] [0320] +15:01:54 [ 15] [ 4] [0320] +15:01:54 [ 18] [ 4] [6011] +15:01:54 [ 22] [ 3] [900] +15:01:54 [ 25] [ 2] [02] +15:01:54 [ 28] [ 9] [D00002000] +15:01:54 [ 32] [ 6] [621354] +15:01:54 [ 35] [ 37] [6688990103744106=43021231410685400000] +15:01:54 [ 37] [ 12] [507903344993] +15:01:54 [ 41] [ 8] [13001400] +15:01:54 [ 42] [ 15] [NATIVE ] +15:01:54 [ 43] [ 40] [Kham Unit Kham LAO] +15:01:54 [ 49] [ 3] [418] +15:01:54 [ 52] [ 16] [8ADBDF1D777B6AFA] +15:01:54 ============================================================================ +15:01:54 + + +waiting on router queue for slot.... +15:01:54 Sending to : +15:01:54 ============================================================================ +15:01:54 Sending to : +15:01:54 ============================================================================ +15:01:54 ============================================================================ +15:01:54 Slot Id : <362> +15:01:54 Transaction Type : RESPONSE +15:01:54 Received From : +15:01:54 ============================================================================ +15:01:54 FNo. Len. Field Value +15:01:54 ============================================================================ +15:01:54 [ 1] [ 4] [0210] +15:01:54 [ 2] [ 16] [6213544000305851] +15:01:54 [ 3] [ 6] [310000] +15:01:54 [ 4] [ 12] [000000000000] +15:01:54 [ 7] [ 10] [0320150939] +15:01:54 [ 11] [ 6] [168965] +15:01:54 [ 12] [ 6] [150939] +15:01:54 [ 13] [ 4] [0320] +15:01:54 [ 15] [ 4] [0320] +15:01:54 [ 18] [ 4] [6011] +15:01:54 [ 32] [ 6] [220699] +15:01:54 [ 35] [ 32] [6213544000305851=491212010585339] +15:01:54 [ 37] [ 12] [507900026375] +15:01:54 [ 38] [ 6] [368716] +15:01:54 [ 39] [ 2] [00] +15:01:54 [ 41] [ 8] [01000200] +15:01:54 [ 49] [ 3] [418] +15:01:54 [ 54] [ 40] [0001418C0000196875360002418C000019687536] +15:01:54 ============================================================================ +15:01:54 Calculate Source COMM Id = 1 +15:01:54 ============================================================================ +15:01:54 + + +waiting on router queue for slot.... +15:01:55 ============================================================================ +15:01:55 Slot Id : <385> +15:01:55 Transaction Type : REQUEST +15:01:55 Received From : +15:01:55 ============================================================================ +15:01:55 FNo. Len. Field Value +15:01:55 ============================================================================ +15:01:55 [ 1] [ 4] [0200] +15:01:55 [ 2] [ 16] [6688990103744106] +15:01:55 [ 3] [ 6] [010000] +15:01:55 [ 4] [ 12] [000100000000] +15:01:55 [ 7] [ 10] [0320150150] +15:01:55 [ 11] [ 6] [778010] +15:01:55 [ 12] [ 6] [150150] +15:01:55 [ 13] [ 4] [0320] +15:01:55 [ 15] [ 4] [0320] +15:01:55 [ 18] [ 4] [6011] +15:01:55 [ 22] [ 3] [900] +15:01:55 [ 25] [ 2] [02] +15:01:55 [ 28] [ 9] [D00002000] +15:01:55 [ 32] [ 6] [621354] +15:01:55 [ 35] [ 37] [6688990103744106=43021231410685400000] +15:01:55 [ 37] [ 12] [507903344993] +15:01:55 [ 41] [ 8] [13001400] +15:01:55 [ 42] [ 15] [NATIVE ] +15:01:55 [ 43] [ 40] [Kham Unit Kham LAO] +15:01:55 [ 49] [ 3] [418] +15:01:55 [ 52] [ 16] [8ADBDF1D777B6AFA] +15:01:55 ============================================================================ +15:01:55 + + +waiting on router queue for slot.... +15:01:55 Sending to : +15:01:55 ============================================================================ +15:01:55 ============================================================================ +15:01:55 Slot Id : <385> +15:01:55 Transaction Type : REQUEST +15:01:55 Received From : +15:01:55 ============================================================================ +15:01:55 FNo. Len. Field Value +15:01:55 ============================================================================ +15:01:55 [ 1] [ 4] [0200] +15:01:55 [ 2] [ 16] [6688990103744106] +15:01:55 [ 3] [ 6] [010000] +15:01:55 [ 4] [ 12] [000100000000] +15:01:55 [ 7] [ 10] [0320150150] +15:01:55 [ 11] [ 6] [778010] +15:01:55 [ 12] [ 6] [150150] +15:01:55 [ 13] [ 4] [0320] +15:01:55 [ 15] [ 4] [0320] +15:01:55 [ 18] [ 4] [6011] +15:01:55 [ 22] [ 3] [900] +15:01:55 [ 25] [ 2] [02] +15:01:55 [ 28] [ 9] [D00002000] +15:01:55 [ 32] [ 6] [621354] +15:01:55 [ 35] [ 37] [6688990103744106=43021231410685400000] +15:01:55 [ 37] [ 12] [507903344993] +15:01:55 [ 41] [ 8] [13001400] +15:01:55 [ 42] [ 15] [NATIVE ] +15:01:55 [ 43] [ 40] [Kham Unit Kham LAO] +15:01:55 [ 49] [ 3] [418] +15:01:55 [ 52] [ 16] [24E7681222A72DF5] +15:01:55 ============================================================================ +15:01:55 + + +waiting on router queue for slot.... +15:01:55 Sending to : <4> +15:01:55 ============================================================================ +15:01:57 ============================================================================ +15:01:57 Slot Id : <385> +15:01:57 Transaction Type : RESPONSE +15:01:57 Received From : +15:01:57 ============================================================================ +15:01:57 FNo. Len. Field Value +15:01:57 ============================================================================ +15:01:57 [ 1] [ 4] [0210] +15:01:57 [ 2] [ 16] [6688990103744106] +15:01:57 [ 3] [ 6] [010000] +15:01:57 [ 4] [ 12] [000100000000] +15:01:57 [ 11] [ 6] [778010] +15:01:57 [ 12] [ 6] [150150] +15:01:57 [ 15] [ 4] [0320] +15:01:57 [ 18] [ 4] [6011] +15:01:57 [ 32] [ 6] [621354] +15:01:57 [ 35] [ 37] [6688990103744106=43021231410685400000] +15:01:57 [ 37] [ 12] [507903344993] +15:01:57 [ 38] [ 6] [381411] +15:01:57 [ 39] [ 2] [00] +15:01:57 [ 41] [ 8] [13001400] +15:01:57 [ 49] [ 3] [418] +15:01:57 [ 54] [ 20] [0002418C000805004006] +15:01:57 ============================================================================ +15:01:57 Sending to : +15:01:57 ============================================================================ +15:01:57 + + +waiting on router queue for slot.... +15:01:58 ============================================================================ +15:01:58 Slot Id : <375> +15:01:58 Transaction Type : REQUEST +15:01:58 Received From : +15:01:58 ============================================================================ +15:01:58 FNo. Len. Field Value +15:01:58 ============================================================================ +15:01:58 [ 1] [ 4] [0200] +15:01:58 [ 2] [ 16] [6688990103110605] +15:01:58 [ 3] [ 6] [011000] +15:01:58 [ 4] [ 12] [000080000000] +15:01:58 [ 7] [ 10] [0320150153] +15:01:58 [ 11] [ 6] [778024] +15:01:58 [ 12] [ 6] [150153] +15:01:58 [ 13] [ 4] [0320] +15:01:58 [ 15] [ 4] [0320] +15:01:58 [ 18] [ 4] [6011] +15:01:58 [ 22] [ 3] [900] +15:01:58 [ 25] [ 2] [02] +15:01:58 [ 28] [ 9] [D00002000] +15:01:58 [ 32] [ 6] [621354] +15:01:58 [ 35] [ 37] [6688990103110605=42121231060517500000] +15:01:58 [ 37] [ 12] [507902916583] +15:01:58 [ 41] [ 8] [12001400] +15:01:58 [ 42] [ 15] [NATIVE ] +15:01:58 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:01:58 [ 49] [ 3] [418] +15:01:58 [ 52] [ 16] [7F849FA1DBC1ADF9] +15:01:58 ============================================================================ +15:01:58 + + +waiting on router queue for slot.... +15:01:58 Sending to : +15:01:58 ============================================================================ +15:01:58 Sending to : +15:01:58 ============================================================================ +15:01:58 ============================================================================ +15:01:58 Slot Id : <385> +15:01:58 Transaction Type : RESPONSE +15:01:58 Received From : +15:01:58 ============================================================================ +15:01:58 FNo. Len. Field Value +15:01:58 ============================================================================ +15:01:58 [ 1] [ 4] [0210] +15:01:58 [ 2] [ 16] [6688990103744106] +15:01:58 [ 3] [ 6] [010000] +15:01:58 [ 4] [ 12] [000100000000] +15:01:58 [ 11] [ 6] [778010] +15:01:58 [ 12] [ 6] [150150] +15:01:58 [ 15] [ 4] [0320] +15:01:58 [ 18] [ 4] [6011] +15:01:58 [ 32] [ 6] [621354] +15:01:58 [ 35] [ 37] [6688990103744106=43021231410685400000] +15:01:58 [ 37] [ 12] [507903344993] +15:01:58 [ 38] [ 6] [381411] +15:01:58 [ 39] [ 2] [00] +15:01:58 [ 41] [ 8] [13001400] +15:01:58 [ 49] [ 3] [418] +15:01:58 [ 54] [ 20] [0002418C000805004006] +15:01:58 ============================================================================ +15:01:58 Calculate Source COMM Id = 0 +15:01:58 ============================================================================ +15:01:58 + + +waiting on router queue for slot.... +15:01:58 ============================================================================ +15:01:58 Slot Id : <375> +15:01:58 Transaction Type : REQUEST +15:01:58 Received From : +15:01:58 ============================================================================ +15:01:58 FNo. Len. Field Value +15:01:58 ============================================================================ +15:01:58 [ 1] [ 4] [0200] +15:01:58 [ 2] [ 16] [6688990103110605] +15:01:58 [ 3] [ 6] [011000] +15:01:58 [ 4] [ 12] [000080000000] +15:01:58 [ 7] [ 10] [0320150153] +15:01:58 [ 11] [ 6] [778024] +15:01:58 [ 12] [ 6] [150153] +15:01:58 [ 13] [ 4] [0320] +15:01:58 [ 15] [ 4] [0320] +15:01:58 [ 18] [ 4] [6011] +15:01:58 [ 22] [ 3] [900] +15:01:58 [ 25] [ 2] [02] +15:01:58 [ 28] [ 9] [D00002000] +15:01:58 [ 32] [ 6] [621354] +15:01:58 [ 35] [ 37] [6688990103110605=42121231060517500000] +15:01:58 [ 37] [ 12] [507902916583] +15:01:58 [ 41] [ 8] [12001400] +15:01:58 [ 42] [ 15] [NATIVE ] +15:01:58 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:01:58 [ 49] [ 3] [418] +15:01:58 [ 52] [ 16] [7F849FA1DBC1ADF9] +15:01:58 ============================================================================ +15:01:58 + + +waiting on router queue for slot.... +15:01:58 Sending to : +15:01:58 ============================================================================ +15:01:58 ============================================================================ +15:01:58 Slot Id : <375> +15:01:58 Transaction Type : REQUEST +15:01:58 Received From : +15:01:58 ============================================================================ +15:01:58 FNo. Len. Field Value +15:01:58 ============================================================================ +15:01:58 [ 1] [ 4] [0200] +15:01:58 [ 2] [ 16] [6688990103110605] +15:01:58 [ 3] [ 6] [011000] +15:01:58 [ 4] [ 12] [000080000000] +15:01:58 [ 7] [ 10] [0320150153] +15:01:58 [ 11] [ 6] [778024] +15:01:58 [ 12] [ 6] [150153] +15:01:58 [ 13] [ 4] [0320] +15:01:58 [ 15] [ 4] [0320] +15:01:58 [ 18] [ 4] [6011] +15:01:58 [ 22] [ 3] [900] +15:01:58 [ 25] [ 2] [02] +15:01:58 [ 28] [ 9] [D00002000] +15:01:58 [ 32] [ 6] [621354] +15:01:58 [ 35] [ 37] [6688990103110605=42121231060517500000] +15:01:58 [ 37] [ 12] [507902916583] +15:01:58 [ 41] [ 8] [12001400] +15:01:58 [ 42] [ 15] [NATIVE ] +15:01:58 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:01:58 [ 49] [ 3] [418] +15:01:58 [ 52] [ 16] [F4F8EE2CFF015DF1] +15:01:58 ============================================================================ +15:01:58 + + +waiting on router queue for slot.... +15:01:58 Sending to : <4> +15:01:58 ============================================================================ +15:01:59 ============================================================================ +15:01:59 Slot Id : <375> +15:01:59 Transaction Type : RESPONSE +15:01:59 Received From : +15:01:59 ============================================================================ +15:01:59 FNo. Len. Field Value +15:01:59 ============================================================================ +15:01:59 [ 1] [ 4] [0210] +15:01:59 [ 2] [ 16] [6688990103110605] +15:01:59 [ 3] [ 6] [011000] +15:01:59 [ 4] [ 12] [000080000000] +15:01:59 [ 11] [ 6] [778024] +15:01:59 [ 12] [ 6] [150153] +15:01:59 [ 15] [ 4] [0320] +15:01:59 [ 18] [ 4] [6011] +15:01:59 [ 32] [ 6] [621354] +15:01:59 [ 35] [ 37] [6688990103110605=42121231060517500000] +15:01:59 [ 37] [ 12] [507902916583] +15:01:59 [ 38] [ 6] [141808] +15:01:59 [ 39] [ 2] [00] +15:01:59 [ 41] [ 8] [12001400] +15:01:59 [ 49] [ 3] [418] +15:01:59 [ 54] [ 20] [1002418C000028404844] +15:01:59 ============================================================================ +15:01:59 Sending to : +15:01:59 ============================================================================ +15:01:59 + + +waiting on router queue for slot.... +15:02:01 ============================================================================ +15:02:01 Slot Id : <392> +15:02:01 Transaction Type : REQUEST +15:02:01 Received From : +15:02:01 ============================================================================ +15:02:01 FNo. Len. Field Value +15:02:01 ============================================================================ +15:02:01 [ 1] [ 4] [0800] +15:02:01 [ 7] [ 10] [0320080108] +15:02:01 [ 11] [ 6] [156910] +15:02:01 [ 70] [ 3] [301] +15:02:01 ============================================================================ +15:02:01 + + +waiting on router queue for slot.... +15:02:01 Sending to : +15:02:01 ============================================================================ +15:02:01 ============================================================================ +15:02:01 Slot Id : <392> +15:02:01 Transaction Type : RESPONSE +15:02:01 Received From : +15:02:01 ============================================================================ +15:02:01 FNo. Len. Field Value +15:02:01 ============================================================================ +15:02:01 [ 1] [ 4] [0810] +15:02:01 [ 7] [ 10] [0320080108] +15:02:01 [ 11] [ 6] [156910] +15:02:01 [ 39] [ 2] [00] +15:02:01 [ 70] [ 3] [301] +15:02:01 ============================================================================ +15:02:01 Calculate Source COMM Id = 2 +15:02:01 ============================================================================ +15:02:01 + + +waiting on router queue for slot.... +15:02:01 ============================================================================ +15:02:01 Slot Id : <375> +15:02:01 Transaction Type : RESPONSE +15:02:01 Received From : +15:02:01 ============================================================================ +15:02:01 FNo. Len. Field Value +15:02:01 ============================================================================ +15:02:01 [ 1] [ 4] [0210] +15:02:01 [ 2] [ 16] [6688990103110605] +15:02:01 [ 3] [ 6] [011000] +15:02:01 [ 4] [ 12] [000080000000] +15:02:01 [ 11] [ 6] [778024] +15:02:01 [ 12] [ 6] [150153] +15:02:01 [ 15] [ 4] [0320] +15:02:01 [ 18] [ 4] [6011] +15:02:01 [ 32] [ 6] [621354] +15:02:01 [ 35] [ 37] [6688990103110605=42121231060517500000] +15:02:01 [ 37] [ 12] [507902916583] +15:02:01 [ 38] [ 6] [141808] +15:02:01 [ 39] [ 2] [00] +15:02:01 [ 41] [ 8] [12001400] +15:02:01 [ 49] [ 3] [418] +15:02:01 [ 54] [ 20] [1002418C000028404844] +15:02:01 ============================================================================ +15:02:01 Calculate Source COMM Id = 0 +15:02:01 ============================================================================ +15:02:01 + + +waiting on router queue for slot.... +15:02:09 ============================================================================ +15:02:09 Slot Id : <412> +15:02:09 Transaction Type : REQUEST +15:02:09 Received From : +15:02:09 ============================================================================ +15:02:09 FNo. Len. Field Value +15:02:09 ============================================================================ +15:02:09 [ 1] [ 4] [0200] +15:02:09 [ 2] [ 16] [6213544001993598] +15:02:09 [ 3] [ 6] [011000] +15:02:09 [ 4] [ 12] [000005000000] +15:02:09 [ 7] [ 10] [0320150229] +15:02:09 [ 11] [ 6] [207649] +15:02:09 [ 12] [ 6] [150413] +15:02:09 [ 13] [ 4] [0320] +15:02:09 [ 14] [ 4] [4912] +15:02:09 [ 15] [ 4] [0320] +15:02:09 [ 18] [ 4] [6011] +15:02:09 [ 19] [ 3] [418] +15:02:09 [ 22] [ 3] [021] +15:02:09 [ 25] [ 2] [01] +15:02:09 [ 28] [ 9] [D00002000] +15:02:09 [ 32] [ 6] [198901] +15:02:09 [ 35] [ 32] [6213544001993598=491212019359063] +15:02:09 [ 37] [ 12] [507915207649] +15:02:09 [ 41] [ 8] [00002222] +15:02:09 [ 42] [ 15] [000000041002222] +15:02:09 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:02:09 [ 49] [ 3] [418] +15:02:09 [ 52] [ 16] [80969D51E7B73675] +15:02:09 ============================================================================ +15:02:09 + + +waiting on router queue for slot.... +15:02:09 Sending to : +15:02:09 ============================================================================ +15:02:09 Sending to : +15:02:09 ============================================================================ +15:02:09 ============================================================================ +15:02:09 Slot Id : <412> +15:02:09 Transaction Type : REQUEST +15:02:09 Received From : +15:02:09 ============================================================================ +15:02:09 FNo. Len. Field Value +15:02:09 ============================================================================ +15:02:09 [ 1] [ 4] [0200] +15:02:09 [ 2] [ 16] [6213544001993598] +15:02:09 [ 3] [ 6] [011000] +15:02:09 [ 4] [ 12] [000005000000] +15:02:09 [ 7] [ 10] [0320150229] +15:02:09 [ 11] [ 6] [207649] +15:02:09 [ 12] [ 6] [150413] +15:02:09 [ 13] [ 4] [0320] +15:02:09 [ 14] [ 4] [4912] +15:02:09 [ 15] [ 4] [0320] +15:02:09 [ 18] [ 4] [6011] +15:02:09 [ 19] [ 3] [418] +15:02:09 [ 22] [ 3] [021] +15:02:09 [ 25] [ 2] [01] +15:02:09 [ 28] [ 9] [D00002000] +15:02:09 [ 32] [ 6] [198901] +15:02:09 [ 35] [ 32] [6213544001993598=491212019359063] +15:02:09 [ 37] [ 12] [507915207649] +15:02:09 [ 41] [ 8] [00002222] +15:02:09 [ 42] [ 15] [000000041002222] +15:02:09 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:02:09 [ 49] [ 3] [418] +15:02:09 [ 52] [ 16] [80969D51E7B73675] +15:02:09 ============================================================================ +15:02:09 + + +waiting on router queue for slot.... +15:02:09 Sending to : +15:02:09 ============================================================================ +15:02:09 ============================================================================ +15:02:09 Slot Id : <412> +15:02:09 Transaction Type : REQUEST +15:02:09 Received From : +15:02:09 ============================================================================ +15:02:09 FNo. Len. Field Value +15:02:09 ============================================================================ +15:02:09 [ 1] [ 4] [0200] +15:02:09 [ 2] [ 16] [6213544001993598] +15:02:09 [ 3] [ 6] [011000] +15:02:09 [ 4] [ 12] [000005000000] +15:02:09 [ 7] [ 10] [0320150229] +15:02:09 [ 11] [ 6] [207649] +15:02:09 [ 12] [ 6] [150413] +15:02:09 [ 13] [ 4] [0320] +15:02:09 [ 14] [ 4] [4912] +15:02:09 [ 15] [ 4] [0320] +15:02:09 [ 18] [ 4] [6011] +15:02:09 [ 19] [ 3] [418] +15:02:09 [ 22] [ 3] [021] +15:02:09 [ 25] [ 2] [01] +15:02:09 [ 28] [ 9] [D00002000] +15:02:09 [ 32] [ 6] [198901] +15:02:09 [ 35] [ 32] [6213544001993598=491212019359063] +15:02:09 [ 37] [ 12] [507915207649] +15:02:09 [ 41] [ 8] [00002222] +15:02:09 [ 42] [ 15] [000000041002222] +15:02:09 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:02:09 [ 49] [ 3] [418] +15:02:09 [ 52] [ 16] [F1D2916751B978EE] +15:02:09 ============================================================================ +15:02:09 + + +waiting on router queue for slot.... +15:02:09 Sending to : <0> +15:02:09 ============================================================================ +15:02:10 ============================================================================ +15:02:10 Slot Id : <412> +15:02:10 Transaction Type : RESPONSE +15:02:10 Received From : +15:02:10 ============================================================================ +15:02:10 FNo. Len. Field Value +15:02:10 ============================================================================ +15:02:10 [ 1] [ 4] [0210] +15:02:10 [ 2] [ 16] [6213544001993598] +15:02:10 [ 3] [ 6] [011000] +15:02:10 [ 4] [ 12] [000005000000] +15:02:10 [ 7] [ 10] [0320150229] +15:02:10 [ 11] [ 6] [207649] +15:02:10 [ 12] [ 6] [150413] +15:02:10 [ 13] [ 4] [0320] +15:02:10 [ 15] [ 4] [0320] +15:02:10 [ 18] [ 4] [6011] +15:02:10 [ 19] [ 3] [418] +15:02:10 [ 32] [ 6] [198901] +15:02:10 [ 35] [ 32] [6213544001993598=491212019359063] +15:02:10 [ 37] [ 12] [507915207649] +15:02:10 [ 38] [ 6] [937832] +15:02:10 [ 39] [ 2] [00] +15:02:10 [ 41] [ 8] [00002222] +15:02:10 [ 49] [ 3] [418] +15:02:10 [ 54] [ 40] [1001418C0000615635981002418C000061563598] +15:02:10 ============================================================================ +15:02:10 Sending to : +15:02:10 ============================================================================ +15:02:10 + + +waiting on router queue for slot.... +15:02:11 ============================================================================ +15:02:11 Slot Id : <412> +15:02:11 Transaction Type : RESPONSE +15:02:11 Received From : +15:02:11 ============================================================================ +15:02:11 FNo. Len. Field Value +15:02:11 ============================================================================ +15:02:11 [ 1] [ 4] [0210] +15:02:11 [ 2] [ 16] [6213544001993598] +15:02:11 [ 3] [ 6] [011000] +15:02:11 [ 4] [ 12] [000005000000] +15:02:11 [ 7] [ 10] [0320150229] +15:02:11 [ 11] [ 6] [207649] +15:02:11 [ 12] [ 6] [150413] +15:02:11 [ 13] [ 4] [0320] +15:02:11 [ 15] [ 4] [0320] +15:02:11 [ 18] [ 4] [6011] +15:02:11 [ 19] [ 3] [418] +15:02:11 [ 32] [ 6] [198901] +15:02:11 [ 35] [ 32] [6213544001993598=491212019359063] +15:02:11 [ 37] [ 12] [507915207649] +15:02:11 [ 38] [ 6] [937832] +15:02:11 [ 39] [ 2] [00] +15:02:11 [ 41] [ 8] [00002222] +15:02:11 [ 49] [ 3] [418] +15:02:11 [ 54] [ 40] [1001418C0000615635981002418C000061563598] +15:02:11 ============================================================================ +15:02:11 Calculate Source COMM Id = 5 +15:02:11 ============================================================================ +15:02:11 + + +waiting on router queue for slot.... +15:02:11 ============================================================================ +15:02:11 Slot Id : <450> +15:02:11 Transaction Type : REQUEST +15:02:11 Received From : +15:02:11 ============================================================================ +15:02:11 FNo. Len. Field Value +15:02:11 ============================================================================ +15:02:11 [ 1] [ 4] [0800] +15:02:11 [ 7] [ 10] [0320080118] +15:02:11 [ 11] [ 6] [156911] +15:02:11 [ 70] [ 3] [301] +15:02:11 ============================================================================ +15:02:11 + + +waiting on router queue for slot.... +15:02:11 Sending to : +15:02:11 ============================================================================ +15:02:11 ============================================================================ +15:02:11 Slot Id : <450> +15:02:11 Transaction Type : RESPONSE +15:02:11 Received From : +15:02:11 ============================================================================ +15:02:11 FNo. Len. Field Value +15:02:11 ============================================================================ +15:02:11 [ 1] [ 4] [0810] +15:02:11 [ 7] [ 10] [0320080118] +15:02:11 [ 11] [ 6] [156911] +15:02:11 [ 39] [ 2] [00] +15:02:11 [ 70] [ 3] [301] +15:02:11 ============================================================================ +15:02:11 Calculate Source COMM Id = 2 +15:02:11 ============================================================================ +15:02:11 + + +waiting on router queue for slot.... +15:02:13 ============================================================================ +15:02:13 Slot Id : <447> +15:02:13 Transaction Type : REQUEST +15:02:13 Received From : +15:02:13 ============================================================================ +15:02:13 FNo. Len. Field Value +15:02:13 ============================================================================ +15:02:13 [ 1] [ 4] [0200] +15:02:13 [ 2] [ 16] [6213544000248143] +15:02:13 [ 3] [ 6] [301000] +15:02:13 [ 4] [ 12] [000000000000] +15:02:13 [ 7] [ 10] [0320150004] +15:02:13 [ 11] [ 6] [949376] +15:02:13 [ 12] [ 6] [150004] +15:02:13 [ 13] [ 4] [0320] +15:02:13 [ 15] [ 4] [0320] +15:02:13 [ 18] [ 4] [6011] +15:02:13 [ 19] [ 3] [418] +15:02:13 [ 22] [ 3] [021] +15:02:13 [ 25] [ 2] [01] +15:02:13 [ 28] [ 9] [D00000000] +15:02:13 [ 32] [ 6] [668899] +15:02:13 [ 35] [ 32] [6213544000248143=491212014814592] +15:02:13 [ 37] [ 12] [507900080527] +15:02:13 [ 41] [ 8] [03020001] +15:02:13 [ 42] [ 15] [APT ] +15:02:13 [ 43] [ 40] [ HEAD OFFICE 01 CHANTHABOU] +15:02:13 [ 49] [ 3] [418] +15:02:13 [ 52] [ 16] [BC474F134385F040] +15:02:13 ============================================================================ +15:02:13 + + +waiting on router queue for slot.... +15:02:13 Sending to : +15:02:13 ============================================================================ +15:02:13 Sending to : +15:02:13 ============================================================================ +15:02:14 ============================================================================ +15:02:14 Slot Id : <447> +15:02:14 Transaction Type : REQUEST +15:02:14 Received From : +15:02:14 ============================================================================ +15:02:14 FNo. Len. Field Value +15:02:14 ============================================================================ +15:02:14 [ 1] [ 4] [0200] +15:02:14 [ 2] [ 16] [6213544000248143] +15:02:14 [ 3] [ 6] [301000] +15:02:14 [ 4] [ 12] [000000000000] +15:02:14 [ 7] [ 10] [0320150004] +15:02:14 [ 11] [ 6] [949376] +15:02:14 [ 12] [ 6] [150004] +15:02:14 [ 13] [ 4] [0320] +15:02:14 [ 15] [ 4] [0320] +15:02:14 [ 18] [ 4] [6011] +15:02:14 [ 19] [ 3] [418] +15:02:14 [ 22] [ 3] [021] +15:02:14 [ 25] [ 2] [01] +15:02:14 [ 28] [ 9] [D00000000] +15:02:14 [ 32] [ 6] [668899] +15:02:14 [ 35] [ 32] [6213544000248143=491212014814592] +15:02:14 [ 37] [ 12] [507900080527] +15:02:14 [ 41] [ 8] [03020001] +15:02:14 [ 42] [ 15] [APT ] +15:02:14 [ 43] [ 40] [ HEAD OFFICE 01 CHANTHABOU] +15:02:14 [ 49] [ 3] [418] +15:02:14 [ 52] [ 16] [BC474F134385F040] +15:02:14 ============================================================================ +15:02:14 + + +waiting on router queue for slot.... +15:02:14 Sending to : +15:02:14 ============================================================================ +15:02:14 ============================================================================ +15:02:14 Slot Id : <447> +15:02:14 Transaction Type : REQUEST +15:02:14 Received From : +15:02:14 ============================================================================ +15:02:14 FNo. Len. Field Value +15:02:14 ============================================================================ +15:02:14 [ 1] [ 4] [0200] +15:02:14 [ 2] [ 16] [6213544000248143] +15:02:14 [ 3] [ 6] [301000] +15:02:14 [ 4] [ 12] [000000000000] +15:02:14 [ 7] [ 10] [0320150004] +15:02:14 [ 11] [ 6] [949376] +15:02:14 [ 12] [ 6] [150004] +15:02:14 [ 13] [ 4] [0320] +15:02:14 [ 15] [ 4] [0320] +15:02:14 [ 18] [ 4] [6011] +15:02:14 [ 19] [ 3] [418] +15:02:14 [ 22] [ 3] [021] +15:02:14 [ 25] [ 2] [01] +15:02:14 [ 28] [ 9] [D00000000] +15:02:14 [ 32] [ 6] [668899] +15:02:14 [ 35] [ 32] [6213544000248143=491212014814592] +15:02:14 [ 37] [ 12] [507900080527] +15:02:14 [ 41] [ 8] [03020001] +15:02:14 [ 42] [ 15] [APT ] +15:02:14 [ 43] [ 40] [ HEAD OFFICE 01 CHANTHABOU] +15:02:14 [ 49] [ 3] [418] +15:02:14 [ 52] [ 16] [6BC39F6400650491] +15:02:14 ============================================================================ +15:02:14 + + +waiting on router queue for slot.... +15:02:14 Sending to : <0> +15:02:14 ============================================================================ +15:02:14 ============================================================================ +15:02:14 Slot Id : <447> +15:02:14 Transaction Type : RESPONSE +15:02:14 Received From : +15:02:14 ============================================================================ +15:02:14 FNo. Len. Field Value +15:02:14 ============================================================================ +15:02:14 [ 1] [ 4] [0210] +15:02:14 [ 2] [ 16] [6213544000248143] +15:02:14 [ 3] [ 6] [301000] +15:02:14 [ 4] [ 12] [000000000000] +15:02:14 [ 7] [ 10] [0320150004] +15:02:14 [ 11] [ 6] [949376] +15:02:14 [ 12] [ 6] [150004] +15:02:14 [ 13] [ 4] [0320] +15:02:14 [ 15] [ 4] [0320] +15:02:14 [ 18] [ 4] [6011] +15:02:14 [ 19] [ 3] [418] +15:02:14 [ 32] [ 6] [668899] +15:02:14 [ 35] [ 32] [6213544000248143=491212014814592] +15:02:14 [ 37] [ 12] [507900080527] +15:02:14 [ 38] [ 6] [536944] +15:02:14 [ 39] [ 2] [00] +15:02:14 [ 41] [ 8] [03020001] +15:02:14 [ 49] [ 3] [418] +15:02:14 [ 54] [ 40] [1001418C0007853975921002418C000785397592] +15:02:14 ============================================================================ +15:02:14 Sending to : +15:02:14 ============================================================================ +15:02:14 + + +waiting on router queue for slot.... +15:02:16 ============================================================================ +15:02:16 Slot Id : <447> +15:02:16 Transaction Type : RESPONSE +15:02:16 Received From : +15:02:16 ============================================================================ +15:02:16 FNo. Len. Field Value +15:02:16 ============================================================================ +15:02:16 [ 1] [ 4] [0210] +15:02:16 [ 2] [ 16] [6213544000248143] +15:02:16 [ 3] [ 6] [301000] +15:02:16 [ 4] [ 12] [000000000000] +15:02:16 [ 7] [ 10] [0320150004] +15:02:16 [ 11] [ 6] [949376] +15:02:16 [ 12] [ 6] [150004] +15:02:16 [ 13] [ 4] [0320] +15:02:16 [ 15] [ 4] [0320] +15:02:16 [ 18] [ 4] [6011] +15:02:16 [ 19] [ 3] [418] +15:02:16 [ 32] [ 6] [668899] +15:02:16 [ 35] [ 32] [6213544000248143=491212014814592] +15:02:16 [ 37] [ 12] [507900080527] +15:02:16 [ 38] [ 6] [536944] +15:02:16 [ 39] [ 2] [00] +15:02:16 [ 41] [ 8] [03020001] +15:02:16 [ 49] [ 3] [418] +15:02:16 [ 54] [ 40] [1001418C0007853975921002418C000785397592] +15:02:16 ============================================================================ +15:02:16 Calculate Source COMM Id = 4 +15:02:16 ============================================================================ +15:02:16 + + +waiting on router queue for slot.... +15:02:16 ============================================================================ +15:02:16 Slot Id : <417> +15:02:16 Transaction Type : REQUEST +15:02:16 Received From : +15:02:16 ============================================================================ +15:02:16 FNo. Len. Field Value +15:02:16 ============================================================================ +15:02:16 [ 1] [ 4] [0800] +15:02:16 [ 7] [ 10] [0320221404] +15:02:16 [ 11] [ 6] [151404] +15:02:16 [ 37] [ 12] [57915151404] +15:02:16 [ 70] [ 3] [301] +15:02:16 ============================================================================ +15:02:16 + + +waiting on router queue for slot.... +15:02:16 Sending to : +15:02:16 ============================================================================ +15:02:16 ============================================================================ +15:02:16 Slot Id : <417> +15:02:16 Transaction Type : RESPONSE +15:02:16 Received From : +15:02:16 ============================================================================ +15:02:16 FNo. Len. Field Value +15:02:16 ============================================================================ +15:02:16 [ 1] [ 4] [0810] +15:02:16 [ 7] [ 10] [0320221404] +15:02:16 [ 11] [ 6] [151404] +15:02:16 [ 37] [ 12] [579151514040] +15:02:16 [ 39] [ 2] [00] +15:02:16 [ 70] [ 3] [810] +15:02:16 ============================================================================ +15:02:16 Calculate Source COMM Id = 6 +15:02:16 ============================================================================ +15:02:16 + + +waiting on router queue for slot.... +15:02:17 ============================================================================ +15:02:17 Slot Id : <391> +15:02:17 Transaction Type : REQUEST +15:02:17 Received From : +15:02:17 ============================================================================ +15:02:17 FNo. Len. Field Value +15:02:17 ============================================================================ +15:02:17 [ 1] [ 4] [0200] +15:02:17 [ 2] [ 16] [6213545000586192] +15:02:17 [ 3] [ 6] [301000] +15:02:17 [ 7] [ 10] [0320080123] +15:02:17 [ 11] [ 6] [269900] +15:02:17 [ 12] [ 6] [150123] +15:02:17 [ 13] [ 4] [0320] +15:02:17 [ 14] [ 4] [4912] +15:02:17 [ 15] [ 4] [0320] +15:02:17 [ 18] [ 4] [6011] +15:02:17 [ 19] [ 3] [418] +15:02:17 [ 22] [ 3] [021] +15:02:17 [ 25] [ 2] [01] +15:02:17 [ 32] [ 6] [180893] +15:02:17 [ 35] [ 32] [6213545000586192=491212018619847] +15:02:17 [ 37] [ 12] [507908269900] +15:02:17 [ 41] [ 8] [0441VT52] +15:02:17 [ 42] [ 15] [999999 ] +15:02:17 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:02:17 [ 49] [ 3] [418] +15:02:17 [ 52] [ 16] [9F6AB744EF634A77] +15:02:17 ============================================================================ +15:02:17 + + +waiting on router queue for slot.... +15:02:17 Sending to : +15:02:17 ============================================================================ +15:02:17 Sending to : +15:02:17 ============================================================================ +15:02:17 ============================================================================ +15:02:17 Slot Id : <391> +15:02:17 Transaction Type : REQUEST +15:02:17 Received From : +15:02:17 ============================================================================ +15:02:17 FNo. Len. Field Value +15:02:17 ============================================================================ +15:02:17 [ 1] [ 4] [0200] +15:02:17 [ 2] [ 16] [6213545000586192] +15:02:17 [ 3] [ 6] [301000] +15:02:17 [ 7] [ 10] [0320080123] +15:02:17 [ 11] [ 6] [269900] +15:02:17 [ 12] [ 6] [150123] +15:02:17 [ 13] [ 4] [0320] +15:02:17 [ 14] [ 4] [4912] +15:02:17 [ 15] [ 4] [0320] +15:02:17 [ 18] [ 4] [6011] +15:02:17 [ 19] [ 3] [418] +15:02:17 [ 22] [ 3] [021] +15:02:17 [ 25] [ 2] [01] +15:02:17 [ 32] [ 6] [180893] +15:02:17 [ 35] [ 32] [6213545000586192=491212018619847] +15:02:17 [ 37] [ 12] [507908269900] +15:02:17 [ 41] [ 8] [0441VT52] +15:02:17 [ 42] [ 15] [999999 ] +15:02:17 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:02:17 [ 49] [ 3] [418] +15:02:17 [ 52] [ 16] [9F6AB744EF634A77] +15:02:17 ============================================================================ +15:02:17 + + +waiting on router queue for slot.... +15:02:17 Sending to : +15:02:17 ============================================================================ +15:02:17 ============================================================================ +15:02:17 Slot Id : <391> +15:02:17 Transaction Type : REQUEST +15:02:17 Received From : +15:02:17 ============================================================================ +15:02:17 FNo. Len. Field Value +15:02:17 ============================================================================ +15:02:17 [ 1] [ 4] [0200] +15:02:17 [ 2] [ 16] [6213545000586192] +15:02:17 [ 3] [ 6] [301000] +15:02:17 [ 7] [ 10] [0320080123] +15:02:17 [ 11] [ 6] [269900] +15:02:17 [ 12] [ 6] [150123] +15:02:17 [ 13] [ 4] [0320] +15:02:17 [ 14] [ 4] [4912] +15:02:17 [ 15] [ 4] [0320] +15:02:17 [ 18] [ 4] [6011] +15:02:17 [ 19] [ 3] [418] +15:02:17 [ 22] [ 3] [021] +15:02:17 [ 25] [ 2] [01] +15:02:17 [ 32] [ 6] [180893] +15:02:17 [ 35] [ 32] [6213545000586192=491212018619847] +15:02:17 [ 37] [ 12] [507908269900] +15:02:17 [ 41] [ 8] [0441VT52] +15:02:17 [ 42] [ 15] [999999 ] +15:02:17 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:02:17 [ 49] [ 3] [418] +15:02:17 [ 52] [ 16] [E25DA1855E2E5CF3] +15:02:17 ============================================================================ +15:02:17 + + +waiting on router queue for slot.... +15:02:17 Sending to : <0> +15:02:17 ============================================================================ +15:02:17 ============================================================================ +15:02:17 Slot Id : <391> +15:02:17 Transaction Type : RESPONSE +15:02:17 Received From : +15:02:17 ============================================================================ +15:02:17 FNo. Len. Field Value +15:02:17 ============================================================================ +15:02:17 [ 1] [ 4] [0210] +15:02:17 [ 2] [ 16] [6213545000586192] +15:02:17 [ 3] [ 6] [301000] +15:02:17 [ 4] [ 12] [000000000000] +15:02:17 [ 7] [ 10] [0320080123] +15:02:17 [ 11] [ 6] [269900] +15:02:17 [ 12] [ 6] [150123] +15:02:17 [ 13] [ 4] [0320] +15:02:17 [ 15] [ 4] [0320] +15:02:17 [ 18] [ 4] [6011] +15:02:17 [ 19] [ 3] [418] +15:02:17 [ 32] [ 6] [180893] +15:02:17 [ 35] [ 32] [6213545000586192=491212018619847] +15:02:17 [ 37] [ 12] [507908269900] +15:02:17 [ 38] [ 6] [802133] +15:02:17 [ 39] [ 2] [00] +15:02:17 [ 41] [ 8] [0441VT52] +15:02:17 [ 49] [ 3] [418] +15:02:17 [ 54] [ 40] [1001418C0000140860111002418C000014086011] +15:02:17 ============================================================================ +15:02:17 Sending to : +15:02:17 ============================================================================ +15:02:17 + + +waiting on router queue for slot.... +15:02:18 ============================================================================ +15:02:18 Slot Id : <391> +15:02:18 Transaction Type : RESPONSE +15:02:18 Received From : +15:02:18 ============================================================================ +15:02:18 FNo. Len. Field Value +15:02:18 ============================================================================ +15:02:18 [ 1] [ 4] [0210] +15:02:18 [ 2] [ 16] [6213545000586192] +15:02:18 [ 3] [ 6] [301000] +15:02:18 [ 4] [ 12] [000000000000] +15:02:18 [ 7] [ 10] [0320080123] +15:02:18 [ 11] [ 6] [269900] +15:02:18 [ 12] [ 6] [150123] +15:02:18 [ 13] [ 4] [0320] +15:02:18 [ 15] [ 4] [0320] +15:02:18 [ 18] [ 4] [6011] +15:02:18 [ 19] [ 3] [418] +15:02:18 [ 32] [ 6] [180893] +15:02:18 [ 35] [ 32] [6213545000586192=491212018619847] +15:02:18 [ 37] [ 12] [507908269900] +15:02:18 [ 38] [ 6] [802133] +15:02:18 [ 39] [ 2] [00] +15:02:18 [ 41] [ 8] [0441VT52] +15:02:18 [ 49] [ 3] [418] +15:02:18 [ 54] [ 40] [1001418C0000140860111002418C000014086011] +15:02:18 ============================================================================ +15:02:18 Calculate Source COMM Id = 2 +15:02:18 ============================================================================ +15:02:18 + + +waiting on router queue for slot.... +15:02:29 ============================================================================ +15:02:29 Slot Id : <443> +15:02:29 Transaction Type : REQUEST +15:02:29 Received From : +15:02:29 ============================================================================ +15:02:29 FNo. Len. Field Value +15:02:29 ============================================================================ +15:02:29 [ 1] [ 4] [0200] +15:02:29 [ 2] [ 16] [6213545000023170] +15:02:29 [ 3] [ 6] [010000] +15:02:29 [ 4] [ 12] [000050000000] +15:02:29 [ 7] [ 10] [0320080136] +15:02:29 [ 11] [ 6] [269903] +15:02:29 [ 12] [ 6] [150136] +15:02:29 [ 13] [ 4] [0320] +15:02:29 [ 14] [ 4] [4912] +15:02:29 [ 15] [ 4] [0320] +15:02:29 [ 18] [ 4] [6011] +15:02:29 [ 19] [ 3] [418] +15:02:29 [ 22] [ 3] [021] +15:02:29 [ 25] [ 2] [01] +15:02:29 [ 28] [ 9] [D00002000] +15:02:29 [ 32] [ 6] [180893] +15:02:29 [ 35] [ 32] [6213545000023170=491212012317510] +15:02:29 [ 37] [ 12] [507908269903] +15:02:29 [ 41] [ 8] [0243VTKS] +15:02:29 [ 42] [ 15] [999999 ] +15:02:29 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:02:29 [ 49] [ 3] [418] +15:02:29 [ 52] [ 16] [D9CD5EAC5DA4D3B2] +15:02:29 ============================================================================ +15:02:29 + + +waiting on router queue for slot.... +15:02:29 Sending to : +15:02:29 ============================================================================ +15:02:29 Sending to : +15:02:29 ============================================================================ +15:02:29 ============================================================================ +15:02:29 Slot Id : <443> +15:02:29 Transaction Type : REQUEST +15:02:29 Received From : +15:02:29 ============================================================================ +15:02:29 FNo. Len. Field Value +15:02:29 ============================================================================ +15:02:29 [ 1] [ 4] [0200] +15:02:29 [ 2] [ 16] [6213545000023170] +15:02:29 [ 3] [ 6] [010000] +15:02:29 [ 4] [ 12] [000050000000] +15:02:29 [ 7] [ 10] [0320080136] +15:02:29 [ 11] [ 6] [269903] +15:02:29 [ 12] [ 6] [150136] +15:02:29 [ 13] [ 4] [0320] +15:02:29 [ 14] [ 4] [4912] +15:02:29 [ 15] [ 4] [0320] +15:02:29 [ 18] [ 4] [6011] +15:02:29 [ 19] [ 3] [418] +15:02:29 [ 22] [ 3] [021] +15:02:29 [ 25] [ 2] [01] +15:02:29 [ 28] [ 9] [D00002000] +15:02:29 [ 32] [ 6] [180893] +15:02:29 [ 35] [ 32] [6213545000023170=491212012317510] +15:02:29 [ 37] [ 12] [507908269903] +15:02:29 [ 41] [ 8] [0243VTKS] +15:02:29 [ 42] [ 15] [999999 ] +15:02:29 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:02:29 [ 49] [ 3] [418] +15:02:29 [ 52] [ 16] [D9CD5EAC5DA4D3B2] +15:02:29 ============================================================================ +15:02:29 + + +waiting on router queue for slot.... +15:02:29 Sending to : +15:02:29 ============================================================================ +15:02:29 ============================================================================ +15:02:29 Slot Id : <443> +15:02:29 Transaction Type : REQUEST +15:02:29 Received From : +15:02:29 ============================================================================ +15:02:29 FNo. Len. Field Value +15:02:29 ============================================================================ +15:02:29 [ 1] [ 4] [0200] +15:02:29 [ 2] [ 16] [6213545000023170] +15:02:29 [ 3] [ 6] [010000] +15:02:29 [ 4] [ 12] [000050000000] +15:02:29 [ 7] [ 10] [0320080136] +15:02:29 [ 11] [ 6] [269903] +15:02:29 [ 12] [ 6] [150136] +15:02:29 [ 13] [ 4] [0320] +15:02:29 [ 14] [ 4] [4912] +15:02:29 [ 15] [ 4] [0320] +15:02:29 [ 18] [ 4] [6011] +15:02:29 [ 19] [ 3] [418] +15:02:29 [ 22] [ 3] [021] +15:02:29 [ 25] [ 2] [01] +15:02:29 [ 28] [ 9] [D00002000] +15:02:29 [ 32] [ 6] [180893] +15:02:29 [ 35] [ 32] [6213545000023170=491212012317510] +15:02:29 [ 37] [ 12] [507908269903] +15:02:29 [ 41] [ 8] [0243VTKS] +15:02:29 [ 42] [ 15] [999999 ] +15:02:29 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:02:29 [ 49] [ 3] [418] +15:02:29 [ 52] [ 16] [7B0D5BC8F4C69F8C] +15:02:29 ============================================================================ +15:02:29 + + +waiting on router queue for slot.... +15:02:29 Sending to : <0> +15:02:29 ============================================================================ +15:02:30 ============================================================================ +15:02:30 Slot Id : <443> +15:02:30 Transaction Type : RESPONSE +15:02:30 Received From : +15:02:30 ============================================================================ +15:02:30 FNo. Len. Field Value +15:02:30 ============================================================================ +15:02:30 [ 1] [ 4] [0210] +15:02:30 [ 2] [ 16] [6213545000023170] +15:02:30 [ 3] [ 6] [010000] +15:02:30 [ 4] [ 12] [000050000000] +15:02:30 [ 7] [ 10] [0320080136] +15:02:30 [ 11] [ 6] [269903] +15:02:30 [ 12] [ 6] [150136] +15:02:30 [ 13] [ 4] [0320] +15:02:30 [ 15] [ 4] [0320] +15:02:30 [ 18] [ 4] [6011] +15:02:30 [ 19] [ 3] [418] +15:02:30 [ 32] [ 6] [180893] +15:02:30 [ 35] [ 32] [6213545000023170=491212012317510] +15:02:30 [ 37] [ 12] [507908269903] +15:02:30 [ 38] [ 6] [052934] +15:02:30 [ 39] [ 2] [00] +15:02:30 [ 41] [ 8] [0243VTKS] +15:02:30 [ 49] [ 3] [418] +15:02:30 [ 54] [ 40] [0001418C0000113585090002418C000011358509] +15:02:30 ============================================================================ +15:02:30 Sending to : +15:02:30 ============================================================================ +15:02:30 + + +waiting on router queue for slot.... +15:02:30 ============================================================================ +15:02:30 Slot Id : <405> +15:02:30 Transaction Type : REQUEST +15:02:30 Received From : +15:02:30 ============================================================================ +15:02:30 FNo. Len. Field Value +15:02:30 ============================================================================ +15:02:30 [ 1] [ 4] [0200] +15:02:30 [ 2] [ 16] [1808930100005172] +15:02:30 [ 3] [ 6] [301000] +15:02:30 [ 4] [ 12] [000000000000] +15:02:30 [ 7] [ 10] [0320150225] +15:02:30 [ 11] [ 6] [778140] +15:02:30 [ 12] [ 6] [150225] +15:02:30 [ 13] [ 4] [0320] +15:02:30 [ 15] [ 4] [0320] +15:02:30 [ 18] [ 4] [6011] +15:02:30 [ 22] [ 3] [900] +15:02:30 [ 25] [ 2] [02] +15:02:30 [ 28] [ 9] [D00000000] +15:02:30 [ 32] [ 6] [621354] +15:02:30 [ 35] [ 27] [1808930100005172=1803500620] +15:02:30 [ 37] [ 12] [507903856723] +15:02:30 [ 41] [ 8] [01010100] +15:02:30 [ 42] [ 15] [NATIVE ] +15:02:30 [ 43] [ 40] [Domestic Airport SikhottabongLAO] +15:02:30 [ 49] [ 3] [418] +15:02:30 [ 52] [ 16] [F50CA83B80850EC2] +15:02:30 ============================================================================ +15:02:30 + + +waiting on router queue for slot.... +15:02:30 Sending to : +15:02:30 ============================================================================ +15:02:30 Sending to : +15:02:30 ============================================================================ +15:02:30 ============================================================================ +15:02:30 Slot Id : <405> +15:02:30 Transaction Type : REQUEST +15:02:30 Received From : +15:02:30 ============================================================================ +15:02:30 FNo. Len. Field Value +15:02:30 ============================================================================ +15:02:30 [ 1] [ 4] [0200] +15:02:30 [ 2] [ 16] [1808930100005172] +15:02:30 [ 3] [ 6] [301000] +15:02:30 [ 4] [ 12] [000000000000] +15:02:30 [ 7] [ 10] [0320150225] +15:02:30 [ 11] [ 6] [778140] +15:02:30 [ 12] [ 6] [150225] +15:02:30 [ 13] [ 4] [0320] +15:02:30 [ 15] [ 4] [0320] +15:02:30 [ 18] [ 4] [6011] +15:02:30 [ 22] [ 3] [900] +15:02:30 [ 25] [ 2] [02] +15:02:30 [ 28] [ 9] [D00000000] +15:02:30 [ 32] [ 6] [621354] +15:02:30 [ 35] [ 27] [1808930100005172=1803500620] +15:02:30 [ 37] [ 12] [507903856723] +15:02:30 [ 41] [ 8] [01010100] +15:02:30 [ 42] [ 15] [NATIVE ] +15:02:30 [ 43] [ 40] [Domestic Airport SikhottabongLAO] +15:02:30 [ 49] [ 3] [418] +15:02:30 [ 52] [ 16] [F50CA83B80850EC2] +15:02:30 ============================================================================ +15:02:30 + + +waiting on router queue for slot.... +15:02:30 Sending to : +15:02:30 ============================================================================ +15:02:30 ============================================================================ +15:02:30 Slot Id : <405> +15:02:30 Transaction Type : REQUEST +15:02:30 Received From : +15:02:30 ============================================================================ +15:02:30 FNo. Len. Field Value +15:02:30 ============================================================================ +15:02:30 [ 1] [ 4] [0200] +15:02:30 [ 2] [ 16] [1808930100005172] +15:02:30 [ 3] [ 6] [301000] +15:02:30 [ 4] [ 12] [000000000000] +15:02:30 [ 7] [ 10] [0320150225] +15:02:30 [ 11] [ 6] [778140] +15:02:30 [ 12] [ 6] [150225] +15:02:30 [ 13] [ 4] [0320] +15:02:30 [ 15] [ 4] [0320] +15:02:30 [ 18] [ 4] [6011] +15:02:30 [ 22] [ 3] [900] +15:02:30 [ 25] [ 2] [02] +15:02:30 [ 28] [ 9] [D00000000] +15:02:30 [ 32] [ 6] [621354] +15:02:30 [ 35] [ 27] [1808930100005172=1803500620] +15:02:30 [ 37] [ 12] [507903856723] +15:02:30 [ 41] [ 8] [01010100] +15:02:30 [ 42] [ 15] [NATIVE ] +15:02:30 [ 43] [ 40] [Domestic Airport SikhottabongLAO] +15:02:30 [ 49] [ 3] [418] +15:02:30 [ 52] [ 16] [4051B3FEE5E6918D] +15:02:30 ============================================================================ +15:02:30 + + +waiting on router queue for slot.... +15:02:30 Sending to : <2> +15:02:30 ============================================================================ +15:02:31 ============================================================================ +15:02:31 Slot Id : <443> +15:02:31 Transaction Type : RESPONSE +15:02:31 Received From : +15:02:31 ============================================================================ +15:02:31 FNo. Len. Field Value +15:02:31 ============================================================================ +15:02:31 [ 1] [ 4] [0210] +15:02:31 [ 2] [ 16] [6213545000023170] +15:02:31 [ 3] [ 6] [010000] +15:02:31 [ 4] [ 12] [000050000000] +15:02:31 [ 7] [ 10] [0320080136] +15:02:31 [ 11] [ 6] [269903] +15:02:31 [ 12] [ 6] [150136] +15:02:31 [ 13] [ 4] [0320] +15:02:31 [ 15] [ 4] [0320] +15:02:31 [ 18] [ 4] [6011] +15:02:31 [ 19] [ 3] [418] +15:02:31 [ 32] [ 6] [180893] +15:02:31 [ 35] [ 32] [6213545000023170=491212012317510] +15:02:31 [ 37] [ 12] [507908269903] +15:02:31 [ 38] [ 6] [052934] +15:02:31 [ 39] [ 2] [00] +15:02:31 [ 41] [ 8] [0243VTKS] +15:02:31 [ 49] [ 3] [418] +15:02:31 [ 54] [ 40] [0001418C0000113585090002418C000011358509] +15:02:31 ============================================================================ +15:02:31 Calculate Source COMM Id = 2 +15:02:31 ============================================================================ +15:02:31 + + +waiting on router queue for slot.... +15:02:33 ============================================================================ +15:02:33 Slot Id : <377> +15:02:33 Transaction Type : REQUEST +15:02:33 Received From : +15:02:33 ============================================================================ +15:02:33 FNo. Len. Field Value +15:02:33 ============================================================================ +15:02:33 [ 1] [ 4] [0200] +15:02:33 [ 2] [ 16] [6213544000248143] +15:02:33 [ 3] [ 6] [010000] +15:02:33 [ 4] [ 12] [000100000000] +15:02:33 [ 7] [ 10] [0320150023] +15:02:33 [ 11] [ 6] [949380] +15:02:33 [ 12] [ 6] [150023] +15:02:33 [ 13] [ 4] [0320] +15:02:33 [ 15] [ 4] [0320] +15:02:33 [ 18] [ 4] [6011] +15:02:33 [ 19] [ 3] [418] +15:02:33 [ 22] [ 3] [021] +15:02:33 [ 25] [ 2] [01] +15:02:33 [ 28] [ 9] [D00002000] +15:02:33 [ 32] [ 6] [668899] +15:02:33 [ 35] [ 32] [6213544000248143=491212014814592] +15:02:33 [ 37] [ 12] [507900080528] +15:02:33 [ 41] [ 8] [03020001] +15:02:33 [ 42] [ 15] [APT ] +15:02:33 [ 43] [ 40] [ HEAD OFFICE 01 CHANTHABOU] +15:02:33 [ 49] [ 3] [418] +15:02:33 [ 52] [ 16] [BC474F134385F040] +15:02:33 ============================================================================ +15:02:33 + + +waiting on router queue for slot.... +15:02:33 Sending to : +15:02:33 ============================================================================ +15:02:33 Sending to : +15:02:33 ============================================================================ +15:02:33 ============================================================================ +15:02:33 Slot Id : <377> +15:02:33 Transaction Type : REQUEST +15:02:33 Received From : +15:02:33 ============================================================================ +15:02:33 FNo. Len. Field Value +15:02:33 ============================================================================ +15:02:33 [ 1] [ 4] [0200] +15:02:33 [ 2] [ 16] [6213544000248143] +15:02:33 [ 3] [ 6] [010000] +15:02:33 [ 4] [ 12] [000100000000] +15:02:33 [ 7] [ 10] [0320150023] +15:02:33 [ 11] [ 6] [949380] +15:02:33 [ 12] [ 6] [150023] +15:02:33 [ 13] [ 4] [0320] +15:02:33 [ 15] [ 4] [0320] +15:02:33 [ 18] [ 4] [6011] +15:02:33 [ 19] [ 3] [418] +15:02:33 [ 22] [ 3] [021] +15:02:33 [ 25] [ 2] [01] +15:02:33 [ 28] [ 9] [D00002000] +15:02:33 [ 32] [ 6] [668899] +15:02:33 [ 35] [ 32] [6213544000248143=491212014814592] +15:02:33 [ 37] [ 12] [507900080528] +15:02:33 [ 41] [ 8] [03020001] +15:02:33 [ 42] [ 15] [APT ] +15:02:33 [ 43] [ 40] [ HEAD OFFICE 01 CHANTHABOU] +15:02:33 [ 49] [ 3] [418] +15:02:33 [ 52] [ 16] [BC474F134385F040] +15:02:33 ============================================================================ +15:02:33 + + +waiting on router queue for slot.... +15:02:33 Sending to : +15:02:33 ============================================================================ +15:02:33 ============================================================================ +15:02:33 Slot Id : <377> +15:02:33 Transaction Type : REQUEST +15:02:33 Received From : +15:02:33 ============================================================================ +15:02:33 FNo. Len. Field Value +15:02:33 ============================================================================ +15:02:33 [ 1] [ 4] [0200] +15:02:33 [ 2] [ 16] [6213544000248143] +15:02:33 [ 3] [ 6] [010000] +15:02:33 [ 4] [ 12] [000100000000] +15:02:33 [ 7] [ 10] [0320150023] +15:02:33 [ 11] [ 6] [949380] +15:02:33 [ 12] [ 6] [150023] +15:02:33 [ 13] [ 4] [0320] +15:02:33 [ 15] [ 4] [0320] +15:02:33 [ 18] [ 4] [6011] +15:02:33 [ 19] [ 3] [418] +15:02:33 [ 22] [ 3] [021] +15:02:33 [ 25] [ 2] [01] +15:02:33 [ 28] [ 9] [D00002000] +15:02:33 [ 32] [ 6] [668899] +15:02:33 [ 35] [ 32] [6213544000248143=491212014814592] +15:02:33 [ 37] [ 12] [507900080528] +15:02:33 [ 41] [ 8] [03020001] +15:02:33 [ 42] [ 15] [APT ] +15:02:33 [ 43] [ 40] [ HEAD OFFICE 01 CHANTHABOU] +15:02:33 [ 49] [ 3] [418] +15:02:33 [ 52] [ 16] [6BC39F6400650491] +15:02:33 ============================================================================ +15:02:33 + + +waiting on router queue for slot.... +15:02:33 Sending to : <0> +15:02:33 ============================================================================ +15:02:34 ============================================================================ +15:02:34 Slot Id : <405> +15:02:34 Transaction Type : RESPONSE +15:02:34 Received From : +15:02:34 ============================================================================ +15:02:34 FNo. Len. Field Value +15:02:34 ============================================================================ +15:02:34 [ 1] [ 4] [0210] +15:02:34 [ 2] [ 16] [1808930100005172] +15:02:34 [ 3] [ 6] [301000] +15:02:34 [ 7] [ 10] [0320150225] +15:02:34 [ 11] [ 6] [778140] +15:02:34 [ 12] [ 6] [150225] +15:02:34 [ 13] [ 4] [0320] +15:02:34 [ 14] [ 4] [1803] +15:02:34 [ 19] [ 3] [418] +15:02:34 [ 32] [ 6] [621354] +15:02:34 [ 37] [ 12] [507903856723] +15:02:34 [ 38] [ 6] [778140] +15:02:34 [ 39] [ 2] [00] +15:02:34 [ 41] [ 8] [01010100] +15:02:34 [ 49] [ 3] [418] +15:02:34 [ 52] [ 16] [4051B3FEE5E6918D] +15:02:34 [ 54] [ 20] [1002418C000072730800] +15:02:34 ============================================================================ +15:02:34 Sending to : +15:02:34 ============================================================================ +15:02:34 + + +waiting on router queue for slot.... +15:02:35 ============================================================================ +15:02:35 Slot Id : <377> +15:02:35 Transaction Type : RESPONSE +15:02:35 Received From : +15:02:35 ============================================================================ +15:02:35 FNo. Len. Field Value +15:02:35 ============================================================================ +15:02:35 [ 1] [ 4] [0210] +15:02:35 [ 2] [ 16] [6213544000248143] +15:02:35 [ 3] [ 6] [010000] +15:02:35 [ 4] [ 12] [000100000000] +15:02:35 [ 7] [ 10] [0320150023] +15:02:35 [ 11] [ 6] [949380] +15:02:35 [ 12] [ 6] [150023] +15:02:35 [ 13] [ 4] [0320] +15:02:35 [ 15] [ 4] [0320] +15:02:35 [ 18] [ 4] [6011] +15:02:35 [ 19] [ 3] [418] +15:02:35 [ 32] [ 6] [668899] +15:02:35 [ 35] [ 32] [6213544000248143=491212014814592] +15:02:35 [ 37] [ 12] [507900080528] +15:02:35 [ 38] [ 6] [979145] +15:02:35 [ 39] [ 2] [00] +15:02:35 [ 41] [ 8] [03020001] +15:02:35 [ 49] [ 3] [418] +15:02:35 [ 54] [ 40] [0001418C0006851975920002418C000685197592] +15:02:35 ============================================================================ +15:02:35 Sending to : +15:02:35 ============================================================================ +15:02:35 + + +waiting on router queue for slot.... +15:02:36 ============================================================================ +15:02:36 Slot Id : <405> +15:02:36 Transaction Type : RESPONSE +15:02:36 Received From : +15:02:36 ============================================================================ +15:02:36 FNo. Len. Field Value +15:02:36 ============================================================================ +15:02:36 [ 1] [ 4] [0210] +15:02:36 [ 2] [ 16] [1808930100005172] +15:02:36 [ 3] [ 6] [301000] +15:02:36 [ 7] [ 10] [0320150225] +15:02:36 [ 11] [ 6] [778140] +15:02:36 [ 12] [ 6] [150225] +15:02:36 [ 13] [ 4] [0320] +15:02:36 [ 14] [ 4] [1803] +15:02:36 [ 19] [ 3] [418] +15:02:36 [ 32] [ 6] [621354] +15:02:36 [ 37] [ 12] [507903856723] +15:02:36 [ 38] [ 6] [778140] +15:02:36 [ 39] [ 2] [00] +15:02:36 [ 41] [ 8] [01010100] +15:02:36 [ 49] [ 3] [418] +15:02:36 [ 52] [ 16] [4051B3FEE5E6918D] +15:02:36 [ 54] [ 20] [1002418C000072730800] +15:02:36 ============================================================================ +15:02:36 Calculate Source COMM Id = 0 +15:02:36 ============================================================================ +15:02:36 + + +waiting on router queue for slot.... +15:02:37 ============================================================================ +15:02:37 Slot Id : <377> +15:02:37 Transaction Type : RESPONSE +15:02:37 Received From : +15:02:37 ============================================================================ +15:02:37 FNo. Len. Field Value +15:02:37 ============================================================================ +15:02:37 [ 1] [ 4] [0210] +15:02:37 [ 2] [ 16] [6213544000248143] +15:02:37 [ 3] [ 6] [010000] +15:02:37 [ 4] [ 12] [000100000000] +15:02:37 [ 7] [ 10] [0320150023] +15:02:37 [ 11] [ 6] [949380] +15:02:37 [ 12] [ 6] [150023] +15:02:37 [ 13] [ 4] [0320] +15:02:37 [ 15] [ 4] [0320] +15:02:37 [ 18] [ 4] [6011] +15:02:37 [ 19] [ 3] [418] +15:02:37 [ 32] [ 6] [668899] +15:02:37 [ 35] [ 32] [6213544000248143=491212014814592] +15:02:37 [ 37] [ 12] [507900080528] +15:02:37 [ 38] [ 6] [979145] +15:02:37 [ 39] [ 2] [00] +15:02:37 [ 41] [ 8] [03020001] +15:02:37 [ 49] [ 3] [418] +15:02:37 [ 54] [ 40] [0001418C0006851975920002418C000685197592] +15:02:37 ============================================================================ +15:02:37 Calculate Source COMM Id = 4 +15:02:37 ============================================================================ +15:02:37 + + +waiting on router queue for slot.... +15:02:39 ============================================================================ +15:02:39 Slot Id : <386> +15:02:39 Transaction Type : REQUEST +15:02:39 Received From : +15:02:39 ============================================================================ +15:02:39 FNo. Len. Field Value +15:02:39 ============================================================================ +15:02:39 [ 1] [ 4] [0200] +15:02:39 [ 2] [ 16] [6213544000305851] +15:02:39 [ 3] [ 6] [010000] +15:02:39 [ 4] [ 12] [000014000000] +15:02:39 [ 7] [ 10] [0320151026] +15:02:39 [ 11] [ 6] [168966] +15:02:39 [ 12] [ 6] [151026] +15:02:39 [ 13] [ 4] [0320] +15:02:39 [ 14] [ 4] [4912] +15:02:39 [ 15] [ 4] [0320] +15:02:39 [ 18] [ 4] [6011] +15:02:39 [ 22] [ 3] [900] +15:02:39 [ 25] [ 2] [02] +15:02:39 [ 28] [ 9] [D00002000] +15:02:39 [ 32] [ 6] [220699] +15:02:39 [ 35] [ 32] [6213544000305851=491212010585339] +15:02:39 [ 37] [ 12] [507900026376] +15:02:39 [ 41] [ 8] [01000200] +15:02:39 [ 42] [ 15] [APTRA ] +15:02:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:02:39 [ 49] [ 3] [418] +15:02:39 [ 52] [ 16] [283599130F83030E] +15:02:39 ============================================================================ +15:02:39 + + +waiting on router queue for slot.... +15:02:39 Sending to : +15:02:39 ============================================================================ +15:02:39 Sending to : +15:02:39 ============================================================================ +15:02:40 ============================================================================ +15:02:40 Slot Id : <386> +15:02:40 Transaction Type : REQUEST +15:02:40 Received From : +15:02:40 ============================================================================ +15:02:40 FNo. Len. Field Value +15:02:40 ============================================================================ +15:02:40 [ 1] [ 4] [0200] +15:02:40 [ 2] [ 16] [6213544000305851] +15:02:40 [ 3] [ 6] [010000] +15:02:40 [ 4] [ 12] [000014000000] +15:02:40 [ 7] [ 10] [0320151026] +15:02:40 [ 11] [ 6] [168966] +15:02:40 [ 12] [ 6] [151026] +15:02:40 [ 13] [ 4] [0320] +15:02:40 [ 14] [ 4] [4912] +15:02:40 [ 15] [ 4] [0320] +15:02:40 [ 18] [ 4] [6011] +15:02:40 [ 22] [ 3] [900] +15:02:40 [ 25] [ 2] [02] +15:02:40 [ 28] [ 9] [D00002000] +15:02:40 [ 32] [ 6] [220699] +15:02:40 [ 35] [ 32] [6213544000305851=491212010585339] +15:02:40 [ 37] [ 12] [507900026376] +15:02:40 [ 41] [ 8] [01000200] +15:02:40 [ 42] [ 15] [APTRA ] +15:02:40 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:02:40 [ 49] [ 3] [418] +15:02:40 [ 52] [ 16] [283599130F83030E] +15:02:40 ============================================================================ +15:02:40 + + +waiting on router queue for slot.... +15:02:40 Sending to : +15:02:40 ============================================================================ +15:02:40 ============================================================================ +15:02:40 Slot Id : <386> +15:02:40 Transaction Type : REQUEST +15:02:40 Received From : +15:02:40 ============================================================================ +15:02:40 FNo. Len. Field Value +15:02:40 ============================================================================ +15:02:40 [ 1] [ 4] [0200] +15:02:40 [ 2] [ 16] [6213544000305851] +15:02:40 [ 3] [ 6] [010000] +15:02:40 [ 4] [ 12] [000014000000] +15:02:40 [ 7] [ 10] [0320151026] +15:02:40 [ 11] [ 6] [168966] +15:02:40 [ 12] [ 6] [151026] +15:02:40 [ 13] [ 4] [0320] +15:02:40 [ 14] [ 4] [4912] +15:02:40 [ 15] [ 4] [0320] +15:02:40 [ 18] [ 4] [6011] +15:02:40 [ 22] [ 3] [900] +15:02:40 [ 25] [ 2] [02] +15:02:40 [ 28] [ 9] [D00002000] +15:02:40 [ 32] [ 6] [220699] +15:02:40 [ 35] [ 32] [6213544000305851=491212010585339] +15:02:40 [ 37] [ 12] [507900026376] +15:02:40 [ 41] [ 8] [01000200] +15:02:40 [ 42] [ 15] [APTRA ] +15:02:40 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:02:40 [ 49] [ 3] [418] +15:02:40 [ 52] [ 16] [AABA8835C39E1502] +15:02:40 ============================================================================ +15:02:40 + + +waiting on router queue for slot.... +15:02:40 Sending to : <0> +15:02:40 ============================================================================ +15:02:40 ============================================================================ +15:02:40 Slot Id : <386> +15:02:40 Transaction Type : RESPONSE +15:02:40 Received From : +15:02:40 ============================================================================ +15:02:40 FNo. Len. Field Value +15:02:40 ============================================================================ +15:02:40 [ 1] [ 4] [0210] +15:02:40 [ 2] [ 16] [6213544000305851] +15:02:40 [ 3] [ 6] [010000] +15:02:40 [ 4] [ 12] [000014000000] +15:02:40 [ 7] [ 10] [0320151026] +15:02:40 [ 11] [ 6] [168966] +15:02:40 [ 12] [ 6] [151026] +15:02:40 [ 13] [ 4] [0320] +15:02:40 [ 15] [ 4] [0320] +15:02:40 [ 18] [ 4] [6011] +15:02:40 [ 32] [ 6] [220699] +15:02:40 [ 35] [ 32] [6213544000305851=491212010585339] +15:02:40 [ 37] [ 12] [507900026376] +15:02:40 [ 38] [ 6] [326687] +15:02:40 [ 39] [ 2] [00] +15:02:40 [ 41] [ 8] [01000200] +15:02:40 [ 49] [ 3] [418] +15:02:40 [ 54] [ 40] [0001418C0000054875360002418C000005487536] +15:02:40 ============================================================================ +15:02:40 Sending to : +15:02:40 ============================================================================ +15:02:40 + + +waiting on router queue for slot.... +15:02:42 ============================================================================ +15:02:42 Slot Id : <386> +15:02:42 Transaction Type : RESPONSE +15:02:42 Received From : +15:02:42 ============================================================================ +15:02:42 FNo. Len. Field Value +15:02:42 ============================================================================ +15:02:42 [ 1] [ 4] [0210] +15:02:42 [ 2] [ 16] [6213544000305851] +15:02:42 [ 3] [ 6] [010000] +15:02:42 [ 4] [ 12] [000014000000] +15:02:42 [ 7] [ 10] [0320151026] +15:02:42 [ 11] [ 6] [168966] +15:02:42 [ 12] [ 6] [151026] +15:02:42 [ 13] [ 4] [0320] +15:02:42 [ 15] [ 4] [0320] +15:02:42 [ 18] [ 4] [6011] +15:02:42 [ 32] [ 6] [220699] +15:02:42 [ 35] [ 32] [6213544000305851=491212010585339] +15:02:42 [ 37] [ 12] [507900026376] +15:02:42 [ 38] [ 6] [326687] +15:02:42 [ 39] [ 2] [00] +15:02:42 [ 41] [ 8] [01000200] +15:02:42 [ 49] [ 3] [418] +15:02:42 [ 54] [ 40] [0001418C0000054875360002418C000005487536] +15:02:42 ============================================================================ +15:02:42 Calculate Source COMM Id = 1 +15:02:42 ============================================================================ +15:02:42 + + +waiting on router queue for slot.... +15:02:44 ============================================================================ +15:02:44 Slot Id : <429> +15:02:44 Transaction Type : REQUEST +15:02:44 Received From : +15:02:44 ============================================================================ +15:02:44 FNo. Len. Field Value +15:02:44 ============================================================================ +15:02:44 [ 1] [ 4] [0800] +15:02:44 [ 2] [ 5] [02531] +15:02:44 [ 3] [ 6] [579158] +15:02:44 [ 7] [ 10] [0320080244] +15:02:44 [ 11] [ 6] [807285] +15:02:44 [ 15] [ 10] [0320080244] +15:02:44 [ 37] [ 11] [57915807285] +15:02:44 [ 70] [ 3] [001] +15:02:44 ============================================================================ +15:02:44 + + +waiting on router queue for slot.... +15:02:44 ============================================================================ +15:02:44 Slot Id : <429> +15:02:44 Transaction Type : RESPONSE +15:02:44 Received From : +15:02:44 ============================================================================ +15:02:44 FNo. Len. Field Value +15:02:44 ============================================================================ +15:02:44 [ 1] [ 4] [0810] +15:02:44 [ 7] [ 10] [0320080244] +15:02:44 [ 11] [ 6] [807285] +15:02:44 [ 15] [ 4] [0320] +15:02:44 [ 37] [ 12] [57915807285] +15:02:44 [ 39] [ 2] [00] +15:02:44 [ 70] [ 3] [001] +15:02:44 ============================================================================ +15:02:44 Sending to : +15:02:44 ============================================================================ +15:02:44 + + +waiting on router queue for slot.... +15:02:46 ============================================================================ +15:02:46 Slot Id : <446> +15:02:46 Transaction Type : REQUEST +15:02:46 Received From : +15:02:46 ============================================================================ +15:02:46 FNo. Len. Field Value +15:02:46 ============================================================================ +15:02:46 [ 1] [ 4] [0200] +15:02:46 [ 2] [ 16] [6213544001993598] +15:02:46 [ 3] [ 6] [011000] +15:02:46 [ 4] [ 12] [000005000000] +15:02:46 [ 7] [ 10] [0320150307] +15:02:46 [ 11] [ 6] [207660] +15:02:46 [ 12] [ 6] [150450] +15:02:46 [ 13] [ 4] [0320] +15:02:46 [ 14] [ 4] [4912] +15:02:46 [ 15] [ 4] [0320] +15:02:46 [ 18] [ 4] [6011] +15:02:46 [ 19] [ 3] [418] +15:02:46 [ 22] [ 3] [021] +15:02:46 [ 25] [ 2] [01] +15:02:46 [ 28] [ 9] [D00002000] +15:02:46 [ 32] [ 6] [198901] +15:02:46 [ 35] [ 32] [6213544001993598=491212019359063] +15:02:46 [ 37] [ 12] [507915207660] +15:02:46 [ 41] [ 8] [00002222] +15:02:46 [ 42] [ 15] [000000041002222] +15:02:46 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:02:46 [ 49] [ 3] [418] +15:02:46 [ 52] [ 16] [80969D51E7B73675] +15:02:46 ============================================================================ +15:02:46 + + +waiting on router queue for slot.... +15:02:46 Sending to : +15:02:46 ============================================================================ +15:02:46 Sending to : +15:02:46 ============================================================================ +15:02:46 ============================================================================ +15:02:46 Slot Id : <446> +15:02:46 Transaction Type : REQUEST +15:02:46 Received From : +15:02:46 ============================================================================ +15:02:46 FNo. Len. Field Value +15:02:46 ============================================================================ +15:02:46 [ 1] [ 4] [0200] +15:02:46 [ 2] [ 16] [6213544001993598] +15:02:46 [ 3] [ 6] [011000] +15:02:46 [ 4] [ 12] [000005000000] +15:02:46 [ 7] [ 10] [0320150307] +15:02:46 [ 11] [ 6] [207660] +15:02:46 [ 12] [ 6] [150450] +15:02:46 [ 13] [ 4] [0320] +15:02:46 [ 14] [ 4] [4912] +15:02:46 [ 15] [ 4] [0320] +15:02:46 [ 18] [ 4] [6011] +15:02:46 [ 19] [ 3] [418] +15:02:46 [ 22] [ 3] [021] +15:02:46 [ 25] [ 2] [01] +15:02:46 [ 28] [ 9] [D00002000] +15:02:46 [ 32] [ 6] [198901] +15:02:46 [ 35] [ 32] [6213544001993598=491212019359063] +15:02:46 [ 37] [ 12] [507915207660] +15:02:46 [ 41] [ 8] [00002222] +15:02:46 [ 42] [ 15] [000000041002222] +15:02:46 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:02:46 [ 49] [ 3] [418] +15:02:46 [ 52] [ 16] [80969D51E7B73675] +15:02:46 ============================================================================ +15:02:46 + + +waiting on router queue for slot.... +15:02:46 Sending to : +15:02:46 ============================================================================ +15:02:46 ============================================================================ +15:02:46 Slot Id : <446> +15:02:46 Transaction Type : REQUEST +15:02:46 Received From : +15:02:46 ============================================================================ +15:02:46 FNo. Len. Field Value +15:02:46 ============================================================================ +15:02:46 [ 1] [ 4] [0200] +15:02:46 [ 2] [ 16] [6213544001993598] +15:02:46 [ 3] [ 6] [011000] +15:02:46 [ 4] [ 12] [000005000000] +15:02:46 [ 7] [ 10] [0320150307] +15:02:46 [ 11] [ 6] [207660] +15:02:46 [ 12] [ 6] [150450] +15:02:46 [ 13] [ 4] [0320] +15:02:46 [ 14] [ 4] [4912] +15:02:46 [ 15] [ 4] [0320] +15:02:46 [ 18] [ 4] [6011] +15:02:46 [ 19] [ 3] [418] +15:02:46 [ 22] [ 3] [021] +15:02:46 [ 25] [ 2] [01] +15:02:46 [ 28] [ 9] [D00002000] +15:02:46 [ 32] [ 6] [198901] +15:02:46 [ 35] [ 32] [6213544001993598=491212019359063] +15:02:46 [ 37] [ 12] [507915207660] +15:02:46 [ 41] [ 8] [00002222] +15:02:46 [ 42] [ 15] [000000041002222] +15:02:46 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:02:46 [ 49] [ 3] [418] +15:02:46 [ 52] [ 16] [F1D2916751B978EE] +15:02:46 ============================================================================ +15:02:46 + + +waiting on router queue for slot.... +15:02:46 Sending to : <0> +15:02:46 ============================================================================ +15:02:47 ============================================================================ +15:02:47 Slot Id : <446> +15:02:47 Transaction Type : RESPONSE +15:02:47 Received From : +15:02:47 ============================================================================ +15:02:47 FNo. Len. Field Value +15:02:47 ============================================================================ +15:02:47 [ 1] [ 4] [0210] +15:02:47 [ 2] [ 16] [6213544001993598] +15:02:47 [ 3] [ 6] [011000] +15:02:47 [ 4] [ 12] [000005000000] +15:02:47 [ 7] [ 10] [0320150307] +15:02:47 [ 11] [ 6] [207660] +15:02:47 [ 12] [ 6] [150450] +15:02:47 [ 13] [ 4] [0320] +15:02:47 [ 15] [ 4] [0320] +15:02:47 [ 18] [ 4] [6011] +15:02:47 [ 19] [ 3] [418] +15:02:47 [ 32] [ 6] [198901] +15:02:47 [ 35] [ 32] [6213544001993598=491212019359063] +15:02:47 [ 37] [ 12] [507915207660] +15:02:47 [ 38] [ 6] [110715] +15:02:47 [ 39] [ 2] [00] +15:02:47 [ 41] [ 8] [00002222] +15:02:47 [ 49] [ 3] [418] +15:02:47 [ 54] [ 40] [1001418C0000563635981002418C000056363598] +15:02:47 ============================================================================ +15:02:47 Sending to : +15:02:47 ============================================================================ +15:02:47 + + +waiting on router queue for slot.... +15:02:48 ============================================================================ +15:02:48 Slot Id : <456> +15:02:48 Transaction Type : REQUEST +15:02:48 Received From : +15:02:48 ============================================================================ +15:02:48 FNo. Len. Field Value +15:02:48 ============================================================================ +15:02:48 [ 1] [ 4] [0800] +15:02:48 [ 7] [ 10] [0320080154] +15:02:48 [ 11] [ 6] [156912] +15:02:48 [ 70] [ 3] [301] +15:02:48 ============================================================================ +15:02:48 + + +waiting on router queue for slot.... +15:02:48 Sending to : +15:02:48 ============================================================================ +15:02:48 ============================================================================ +15:02:48 Slot Id : <456> +15:02:48 Transaction Type : RESPONSE +15:02:48 Received From : +15:02:48 ============================================================================ +15:02:48 FNo. Len. Field Value +15:02:48 ============================================================================ +15:02:48 [ 1] [ 4] [0810] +15:02:48 [ 7] [ 10] [0320080154] +15:02:48 [ 11] [ 6] [156912] +15:02:48 [ 39] [ 2] [00] +15:02:48 [ 70] [ 3] [301] +15:02:48 ============================================================================ +15:02:48 Calculate Source COMM Id = 2 +15:02:48 ============================================================================ +15:02:48 + + +waiting on router queue for slot.... +15:02:48 ============================================================================ +15:02:48 Slot Id : <446> +15:02:48 Transaction Type : RESPONSE +15:02:48 Received From : +15:02:48 ============================================================================ +15:02:48 FNo. Len. Field Value +15:02:48 ============================================================================ +15:02:48 [ 1] [ 4] [0210] +15:02:48 [ 2] [ 16] [6213544001993598] +15:02:48 [ 3] [ 6] [011000] +15:02:48 [ 4] [ 12] [000005000000] +15:02:48 [ 7] [ 10] [0320150307] +15:02:48 [ 11] [ 6] [207660] +15:02:48 [ 12] [ 6] [150450] +15:02:48 [ 13] [ 4] [0320] +15:02:48 [ 15] [ 4] [0320] +15:02:48 [ 18] [ 4] [6011] +15:02:48 [ 19] [ 3] [418] +15:02:48 [ 32] [ 6] [198901] +15:02:48 [ 35] [ 32] [6213544001993598=491212019359063] +15:02:48 [ 37] [ 12] [507915207660] +15:02:48 [ 38] [ 6] [110715] +15:02:48 [ 39] [ 2] [00] +15:02:48 [ 41] [ 8] [00002222] +15:02:48 [ 49] [ 3] [418] +15:02:48 [ 54] [ 40] [1001418C0000563635981002418C000056363598] +15:02:48 ============================================================================ +15:02:48 Calculate Source COMM Id = 5 +15:02:48 ============================================================================ +15:02:48 + + +waiting on router queue for slot.... +15:03:02 ============================================================================ +15:03:02 Slot Id : <404> +15:03:02 Transaction Type : REQUEST +15:03:02 Received From : +15:03:02 ============================================================================ +15:03:02 FNo. Len. Field Value +15:03:02 ============================================================================ +15:03:02 [ 1] [ 4] [0200] +15:03:02 [ 2] [ 16] [6213541000665953] +15:03:02 [ 3] [ 6] [010000] +15:03:02 [ 4] [ 12] [000050000000] +15:03:02 [ 7] [ 10] [0320150052] +15:03:02 [ 11] [ 6] [949392] +15:03:02 [ 12] [ 6] [150052] +15:03:02 [ 13] [ 4] [0320] +15:03:02 [ 15] [ 4] [0320] +15:03:02 [ 18] [ 4] [6011] +15:03:02 [ 19] [ 3] [418] +15:03:02 [ 22] [ 3] [021] +15:03:02 [ 25] [ 2] [01] +15:03:02 [ 28] [ 9] [D00002000] +15:03:02 [ 32] [ 6] [668899] +15:03:02 [ 35] [ 32] [6213541000665953=491212016595330] +15:03:02 [ 37] [ 12] [507902151058] +15:03:02 [ 41] [ 8] [03020025] +15:03:02 [ 42] [ 15] [APT ] +15:03:02 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +15:03:02 [ 49] [ 3] [418] +15:03:02 [ 52] [ 16] [B802CF18476381B3] +15:03:02 ============================================================================ +15:03:02 + + +waiting on router queue for slot.... +15:03:02 Sending to : +15:03:02 ============================================================================ +15:03:02 Sending to : +15:03:02 ============================================================================ +15:03:02 ============================================================================ +15:03:02 Slot Id : <404> +15:03:02 Transaction Type : REQUEST +15:03:02 Received From : +15:03:02 ============================================================================ +15:03:02 FNo. Len. Field Value +15:03:02 ============================================================================ +15:03:02 [ 1] [ 4] [0200] +15:03:02 [ 2] [ 16] [6213541000665953] +15:03:02 [ 3] [ 6] [010000] +15:03:02 [ 4] [ 12] [000050000000] +15:03:02 [ 7] [ 10] [0320150052] +15:03:02 [ 11] [ 6] [949392] +15:03:02 [ 12] [ 6] [150052] +15:03:02 [ 13] [ 4] [0320] +15:03:02 [ 15] [ 4] [0320] +15:03:02 [ 18] [ 4] [6011] +15:03:02 [ 19] [ 3] [418] +15:03:02 [ 22] [ 3] [021] +15:03:02 [ 25] [ 2] [01] +15:03:02 [ 28] [ 9] [D00002000] +15:03:02 [ 32] [ 6] [668899] +15:03:02 [ 35] [ 32] [6213541000665953=491212016595330] +15:03:02 [ 37] [ 12] [507902151058] +15:03:02 [ 41] [ 8] [03020025] +15:03:02 [ 42] [ 15] [APT ] +15:03:02 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +15:03:02 [ 49] [ 3] [418] +15:03:02 [ 52] [ 16] [B802CF18476381B3] +15:03:02 ============================================================================ +15:03:02 + + +waiting on router queue for slot.... +15:03:02 Sending to : +15:03:02 ============================================================================ +15:03:02 ============================================================================ +15:03:02 Slot Id : <404> +15:03:02 Transaction Type : REQUEST +15:03:02 Received From : +15:03:02 ============================================================================ +15:03:02 FNo. Len. Field Value +15:03:02 ============================================================================ +15:03:02 [ 1] [ 4] [0200] +15:03:02 [ 2] [ 16] [6213541000665953] +15:03:02 [ 3] [ 6] [010000] +15:03:02 [ 4] [ 12] [000050000000] +15:03:02 [ 7] [ 10] [0320150052] +15:03:02 [ 11] [ 6] [949392] +15:03:02 [ 12] [ 6] [150052] +15:03:02 [ 13] [ 4] [0320] +15:03:02 [ 15] [ 4] [0320] +15:03:02 [ 18] [ 4] [6011] +15:03:02 [ 19] [ 3] [418] +15:03:02 [ 22] [ 3] [021] +15:03:02 [ 25] [ 2] [01] +15:03:02 [ 28] [ 9] [D00002000] +15:03:02 [ 32] [ 6] [668899] +15:03:02 [ 35] [ 32] [6213541000665953=491212016595330] +15:03:02 [ 37] [ 12] [507902151058] +15:03:02 [ 41] [ 8] [03020025] +15:03:02 [ 42] [ 15] [APT ] +15:03:02 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +15:03:02 [ 49] [ 3] [418] +15:03:02 [ 52] [ 16] [A18EFB71BEA63746] +15:03:02 ============================================================================ +15:03:02 + + +waiting on router queue for slot.... +15:03:02 Sending to : <0> +15:03:02 ============================================================================ +15:03:03 ============================================================================ +15:03:03 Slot Id : <404> +15:03:03 Transaction Type : RESPONSE +15:03:03 Received From : +15:03:03 ============================================================================ +15:03:03 FNo. Len. Field Value +15:03:03 ============================================================================ +15:03:03 [ 1] [ 4] [0210] +15:03:03 [ 2] [ 16] [6213541000665953] +15:03:03 [ 3] [ 6] [010000] +15:03:03 [ 4] [ 12] [000050000000] +15:03:03 [ 7] [ 10] [0320150052] +15:03:03 [ 11] [ 6] [949392] +15:03:03 [ 12] [ 6] [150052] +15:03:03 [ 13] [ 4] [0320] +15:03:03 [ 15] [ 4] [0320] +15:03:03 [ 18] [ 4] [6011] +15:03:03 [ 19] [ 3] [418] +15:03:03 [ 32] [ 6] [668899] +15:03:03 [ 35] [ 32] [6213541000665953=491212016595330] +15:03:03 [ 37] [ 12] [507902151058] +15:03:03 [ 38] [ 6] [949392] +15:03:03 [ 39] [ 2] [51] +15:03:03 [ 41] [ 8] [03020025] +15:03:03 [ 49] [ 3] [418] +15:03:03 [ 54] [ 40] [0001418C0000089520410002418C000008952041] +15:03:03 ============================================================================ +15:03:03 Sending to : +15:03:03 ============================================================================ +15:03:03 + + +waiting on router queue for slot.... +15:03:03 ============================================================================ +15:03:03 Slot Id : <424> +15:03:03 Transaction Type : REQUEST +15:03:03 Received From : +15:03:03 ============================================================================ +15:03:03 FNo. Len. Field Value +15:03:03 ============================================================================ +15:03:03 [ 1] [ 4] [0800] +15:03:03 [ 7] [ 10] [0320080210] +15:03:03 [ 11] [ 6] [156913] +15:03:03 [ 70] [ 3] [301] +15:03:03 ============================================================================ +15:03:03 + + +waiting on router queue for slot.... +15:03:03 Sending to : +15:03:03 ============================================================================ +15:03:03 ============================================================================ +15:03:03 Slot Id : <424> +15:03:03 Transaction Type : RESPONSE +15:03:03 Received From : +15:03:03 ============================================================================ +15:03:03 FNo. Len. Field Value +15:03:03 ============================================================================ +15:03:03 [ 1] [ 4] [0810] +15:03:03 [ 7] [ 10] [0320080210] +15:03:03 [ 11] [ 6] [156913] +15:03:03 [ 39] [ 2] [00] +15:03:03 [ 70] [ 3] [301] +15:03:03 ============================================================================ +15:03:03 Calculate Source COMM Id = 2 +15:03:03 ============================================================================ +15:03:03 + + +waiting on router queue for slot.... +15:03:04 ============================================================================ +15:03:04 Slot Id : <404> +15:03:04 Transaction Type : RESPONSE +15:03:04 Received From : +15:03:04 ============================================================================ +15:03:04 FNo. Len. Field Value +15:03:04 ============================================================================ +15:03:04 [ 1] [ 4] [0210] +15:03:04 [ 2] [ 16] [6213541000665953] +15:03:04 [ 3] [ 6] [010000] +15:03:04 [ 4] [ 12] [000050000000] +15:03:04 [ 7] [ 10] [0320150052] +15:03:04 [ 11] [ 6] [949392] +15:03:04 [ 12] [ 6] [150052] +15:03:04 [ 13] [ 4] [0320] +15:03:04 [ 15] [ 4] [0320] +15:03:04 [ 18] [ 4] [6011] +15:03:04 [ 19] [ 3] [418] +15:03:04 [ 32] [ 6] [668899] +15:03:04 [ 35] [ 32] [6213541000665953=491212016595330] +15:03:04 [ 37] [ 12] [507902151058] +15:03:04 [ 38] [ 6] [949392] +15:03:04 [ 39] [ 2] [51] +15:03:04 [ 41] [ 8] [03020025] +15:03:04 [ 49] [ 3] [418] +15:03:04 [ 54] [ 40] [0001418C0000089520410002418C000008952041] +15:03:04 ============================================================================ +15:03:04 Calculate Source COMM Id = 4 +15:03:04 ============================================================================ +15:03:04 + + +waiting on router queue for slot.... +15:03:07 ============================================================================ +15:03:07 Slot Id : <445> +15:03:07 Transaction Type : REQUEST +15:03:07 Received From : +15:03:07 ============================================================================ +15:03:07 FNo. Len. Field Value +15:03:07 ============================================================================ +15:03:07 [ 1] [ 4] [0200] +15:03:07 [ 2] [ 16] [6688990103558605] +15:03:07 [ 3] [ 6] [301000] +15:03:07 [ 4] [ 12] [000000000000] +15:03:07 [ 7] [ 10] [0320150302] +15:03:07 [ 11] [ 6] [778278] +15:03:07 [ 12] [ 6] [150302] +15:03:07 [ 13] [ 4] [0320] +15:03:07 [ 15] [ 4] [0320] +15:03:07 [ 18] [ 4] [6011] +15:03:07 [ 22] [ 3] [900] +15:03:07 [ 25] [ 2] [02] +15:03:07 [ 28] [ 9] [D00000000] +15:03:07 [ 32] [ 6] [621354] +15:03:07 [ 35] [ 37] [6688990103558605=43011231860596200000] +15:03:07 [ 37] [ 12] [507904698953] +15:03:07 [ 41] [ 8] [18000800] +15:03:07 [ 42] [ 15] [NATIVE ] +15:03:07 [ 43] [ 40] [Bountai District Bountai LAO] +15:03:07 [ 49] [ 3] [418] +15:03:07 [ 52] [ 16] [655AC2E7FD32122B] +15:03:07 ============================================================================ +15:03:07 + + +waiting on router queue for slot.... +15:03:07 Sending to : +15:03:07 ============================================================================ +15:03:07 Sending to : +15:03:07 ============================================================================ +15:03:07 ============================================================================ +15:03:07 Slot Id : <445> +15:03:07 Transaction Type : REQUEST +15:03:07 Received From : +15:03:07 ============================================================================ +15:03:07 FNo. Len. Field Value +15:03:07 ============================================================================ +15:03:07 [ 1] [ 4] [0200] +15:03:07 [ 2] [ 16] [6688990103558605] +15:03:07 [ 3] [ 6] [301000] +15:03:07 [ 4] [ 12] [000000000000] +15:03:07 [ 7] [ 10] [0320150302] +15:03:07 [ 11] [ 6] [778278] +15:03:07 [ 12] [ 6] [150302] +15:03:07 [ 13] [ 4] [0320] +15:03:07 [ 15] [ 4] [0320] +15:03:07 [ 18] [ 4] [6011] +15:03:07 [ 22] [ 3] [900] +15:03:07 [ 25] [ 2] [02] +15:03:07 [ 28] [ 9] [D00000000] +15:03:07 [ 32] [ 6] [621354] +15:03:07 [ 35] [ 37] [6688990103558605=43011231860596200000] +15:03:07 [ 37] [ 12] [507904698953] +15:03:07 [ 41] [ 8] [18000800] +15:03:07 [ 42] [ 15] [NATIVE ] +15:03:07 [ 43] [ 40] [Bountai District Bountai LAO] +15:03:07 [ 49] [ 3] [418] +15:03:07 [ 52] [ 16] [655AC2E7FD32122B] +15:03:07 ============================================================================ +15:03:07 + + +waiting on router queue for slot.... +15:03:07 Sending to : +15:03:07 ============================================================================ +15:03:07 ============================================================================ +15:03:07 Slot Id : <445> +15:03:07 Transaction Type : REQUEST +15:03:07 Received From : +15:03:07 ============================================================================ +15:03:07 FNo. Len. Field Value +15:03:07 ============================================================================ +15:03:07 [ 1] [ 4] [0200] +15:03:07 [ 2] [ 16] [6688990103558605] +15:03:07 [ 3] [ 6] [301000] +15:03:07 [ 4] [ 12] [000000000000] +15:03:07 [ 7] [ 10] [0320150302] +15:03:07 [ 11] [ 6] [778278] +15:03:07 [ 12] [ 6] [150302] +15:03:07 [ 13] [ 4] [0320] +15:03:07 [ 15] [ 4] [0320] +15:03:07 [ 18] [ 4] [6011] +15:03:07 [ 22] [ 3] [900] +15:03:07 [ 25] [ 2] [02] +15:03:07 [ 28] [ 9] [D00000000] +15:03:07 [ 32] [ 6] [621354] +15:03:07 [ 35] [ 37] [6688990103558605=43011231860596200000] +15:03:07 [ 37] [ 12] [507904698953] +15:03:07 [ 41] [ 8] [18000800] +15:03:07 [ 42] [ 15] [NATIVE ] +15:03:07 [ 43] [ 40] [Bountai District Bountai LAO] +15:03:07 [ 49] [ 3] [418] +15:03:07 [ 52] [ 16] [C3F51EB3A330DE15] +15:03:07 ============================================================================ +15:03:07 + + +waiting on router queue for slot.... +15:03:07 Sending to : <4> +15:03:07 ============================================================================ +15:03:08 ============================================================================ +15:03:08 Slot Id : <445> +15:03:08 Transaction Type : RESPONSE +15:03:08 Received From : +15:03:08 ============================================================================ +15:03:08 FNo. Len. Field Value +15:03:08 ============================================================================ +15:03:08 [ 1] [ 4] [0210] +15:03:08 [ 2] [ 16] [6688990103558605] +15:03:08 [ 3] [ 6] [301000] +15:03:08 [ 4] [ 12] [000000000000] +15:03:08 [ 11] [ 6] [778278] +15:03:08 [ 12] [ 6] [150302] +15:03:08 [ 15] [ 4] [0320] +15:03:08 [ 18] [ 4] [6011] +15:03:08 [ 32] [ 6] [621354] +15:03:08 [ 35] [ 37] [6688990103558605=43011231860596200000] +15:03:08 [ 37] [ 12] [507904698953] +15:03:08 [ 38] [ 6] [155861] +15:03:08 [ 39] [ 2] [00] +15:03:08 [ 41] [ 8] [18000800] +15:03:08 [ 49] [ 3] [418] +15:03:08 [ 54] [ 20] [1002418C000487550722] +15:03:08 ============================================================================ +15:03:08 Sending to : +15:03:08 ============================================================================ +15:03:08 + + +waiting on router queue for slot.... +15:03:08 ============================================================================ +15:03:08 Slot Id : <435> +15:03:08 Transaction Type : REQUEST +15:03:08 Received From : +15:03:08 ============================================================================ +15:03:08 FNo. Len. Field Value +15:03:08 ============================================================================ +15:03:08 [ 1] [ 4] [0200] +15:03:08 [ 2] [ 16] [6688990104524309] +15:03:08 [ 3] [ 6] [011000] +15:03:08 [ 4] [ 12] [000030000000] +15:03:08 [ 7] [ 10] [0320150304] +15:03:08 [ 11] [ 6] [778283] +15:03:08 [ 12] [ 6] [150304] +15:03:08 [ 13] [ 4] [0320] +15:03:08 [ 15] [ 4] [0320] +15:03:08 [ 18] [ 4] [6011] +15:03:08 [ 22] [ 3] [900] +15:03:08 [ 25] [ 2] [02] +15:03:08 [ 28] [ 9] [D00002000] +15:03:08 [ 32] [ 6] [621354] +15:03:08 [ 35] [ 37] [6688990104524309=43041231430950900000] +15:03:08 [ 37] [ 12] [507904807782] +15:03:08 [ 41] [ 8] [07001600] +15:03:08 [ 42] [ 15] [NATIVE ] +15:03:08 [ 43] [ 40] [Long District Long LAO] +15:03:08 [ 49] [ 3] [418] +15:03:08 [ 52] [ 16] [63BE826B6447708D] +15:03:08 ============================================================================ +15:03:08 + + +waiting on router queue for slot.... +15:03:08 Sending to : +15:03:08 ============================================================================ +15:03:08 Sending to : +15:03:08 ============================================================================ +15:03:09 ============================================================================ +15:03:09 Slot Id : <438> +15:03:09 Transaction Type : REQUEST +15:03:09 Received From : +15:03:09 ============================================================================ +15:03:09 FNo. Len. Field Value +15:03:09 ============================================================================ +15:03:09 [ 1] [ 4] [0200] +15:03:09 [ 2] [ 16] [6688990103743207] +15:03:09 [ 3] [ 6] [010000] +15:03:09 [ 4] [ 12] [000050000000] +15:03:09 [ 7] [ 10] [0320150304] +15:03:09 [ 11] [ 6] [778284] +15:03:09 [ 12] [ 6] [150304] +15:03:09 [ 13] [ 4] [0320] +15:03:09 [ 15] [ 4] [0320] +15:03:09 [ 18] [ 4] [6011] +15:03:09 [ 22] [ 3] [900] +15:03:09 [ 25] [ 2] [02] +15:03:09 [ 28] [ 9] [D00002000] +15:03:09 [ 32] [ 6] [621354] +15:03:09 [ 35] [ 37] [6688990103743207=43021231320741800000] +15:03:09 [ 37] [ 12] [507903344995] +15:03:09 [ 41] [ 8] [13001400] +15:03:09 [ 42] [ 15] [NATIVE ] +15:03:09 [ 43] [ 40] [Kham Unit Kham LAO] +15:03:09 [ 49] [ 3] [418] +15:03:09 [ 52] [ 16] [127B0EB15FAC38D8] +15:03:09 ============================================================================ +15:03:09 + + +waiting on router queue for slot.... +15:03:09 Sending to : +15:03:09 ============================================================================ +15:03:09 Sending to : +15:03:09 ============================================================================ +15:03:09 ============================================================================ +15:03:09 Slot Id : <435> +15:03:09 Transaction Type : REQUEST +15:03:09 Received From : +15:03:09 ============================================================================ +15:03:09 FNo. Len. Field Value +15:03:09 ============================================================================ +15:03:09 [ 1] [ 4] [0200] +15:03:09 [ 2] [ 16] [6688990104524309] +15:03:09 [ 3] [ 6] [011000] +15:03:09 [ 4] [ 12] [000030000000] +15:03:09 [ 7] [ 10] [0320150304] +15:03:09 [ 11] [ 6] [778283] +15:03:09 [ 12] [ 6] [150304] +15:03:09 [ 13] [ 4] [0320] +15:03:09 [ 15] [ 4] [0320] +15:03:09 [ 18] [ 4] [6011] +15:03:09 [ 22] [ 3] [900] +15:03:09 [ 25] [ 2] [02] +15:03:09 [ 28] [ 9] [D00002000] +15:03:09 [ 32] [ 6] [621354] +15:03:09 [ 35] [ 37] [6688990104524309=43041231430950900000] +15:03:09 [ 37] [ 12] [507904807782] +15:03:09 [ 41] [ 8] [07001600] +15:03:09 [ 42] [ 15] [NATIVE ] +15:03:09 [ 43] [ 40] [Long District Long LAO] +15:03:09 [ 49] [ 3] [418] +15:03:09 [ 52] [ 16] [63BE826B6447708D] +15:03:09 ============================================================================ +15:03:09 + + +waiting on router queue for slot.... +15:03:09 Sending to : +15:03:09 ============================================================================ +15:03:09 ============================================================================ +15:03:09 Slot Id : <435> +15:03:09 Transaction Type : REQUEST +15:03:09 Received From : +15:03:09 ============================================================================ +15:03:09 FNo. Len. Field Value +15:03:09 ============================================================================ +15:03:09 [ 1] [ 4] [0200] +15:03:09 [ 2] [ 16] [6688990104524309] +15:03:09 [ 3] [ 6] [011000] +15:03:09 [ 4] [ 12] [000030000000] +15:03:09 [ 7] [ 10] [0320150304] +15:03:09 [ 11] [ 6] [778283] +15:03:09 [ 12] [ 6] [150304] +15:03:09 [ 13] [ 4] [0320] +15:03:09 [ 15] [ 4] [0320] +15:03:09 [ 18] [ 4] [6011] +15:03:09 [ 22] [ 3] [900] +15:03:09 [ 25] [ 2] [02] +15:03:09 [ 28] [ 9] [D00002000] +15:03:09 [ 32] [ 6] [621354] +15:03:09 [ 35] [ 37] [6688990104524309=43041231430950900000] +15:03:09 [ 37] [ 12] [507904807782] +15:03:09 [ 41] [ 8] [07001600] +15:03:09 [ 42] [ 15] [NATIVE ] +15:03:09 [ 43] [ 40] [Long District Long LAO] +15:03:09 [ 49] [ 3] [418] +15:03:09 [ 52] [ 16] [93395D6B287FB146] +15:03:09 ============================================================================ +15:03:09 + + +waiting on router queue for slot.... +15:03:09 Sending to : <4> +15:03:09 ============================================================================ +15:03:09 ============================================================================ +15:03:09 Slot Id : <438> +15:03:09 Transaction Type : REQUEST +15:03:09 Received From : +15:03:09 ============================================================================ +15:03:09 FNo. Len. Field Value +15:03:09 ============================================================================ +15:03:09 [ 1] [ 4] [0200] +15:03:09 [ 2] [ 16] [6688990103743207] +15:03:09 [ 3] [ 6] [010000] +15:03:09 [ 4] [ 12] [000050000000] +15:03:09 [ 7] [ 10] [0320150304] +15:03:09 [ 11] [ 6] [778284] +15:03:09 [ 12] [ 6] [150304] +15:03:09 [ 13] [ 4] [0320] +15:03:09 [ 15] [ 4] [0320] +15:03:09 [ 18] [ 4] [6011] +15:03:09 [ 22] [ 3] [900] +15:03:09 [ 25] [ 2] [02] +15:03:09 [ 28] [ 9] [D00002000] +15:03:09 [ 32] [ 6] [621354] +15:03:09 [ 35] [ 37] [6688990103743207=43021231320741800000] +15:03:09 [ 37] [ 12] [507903344995] +15:03:09 [ 41] [ 8] [13001400] +15:03:09 [ 42] [ 15] [NATIVE ] +15:03:09 [ 43] [ 40] [Kham Unit Kham LAO] +15:03:09 [ 49] [ 3] [418] +15:03:09 [ 52] [ 16] [127B0EB15FAC38D8] +15:03:09 ============================================================================ +15:03:09 + + +waiting on router queue for slot.... +15:03:09 Sending to : +15:03:09 ============================================================================ +15:03:09 ============================================================================ +15:03:09 Slot Id : <438> +15:03:09 Transaction Type : REQUEST +15:03:09 Received From : +15:03:09 ============================================================================ +15:03:09 FNo. Len. Field Value +15:03:09 ============================================================================ +15:03:09 [ 1] [ 4] [0200] +15:03:09 [ 2] [ 16] [6688990103743207] +15:03:09 [ 3] [ 6] [010000] +15:03:09 [ 4] [ 12] [000050000000] +15:03:09 [ 7] [ 10] [0320150304] +15:03:09 [ 11] [ 6] [778284] +15:03:09 [ 12] [ 6] [150304] +15:03:09 [ 13] [ 4] [0320] +15:03:09 [ 15] [ 4] [0320] +15:03:09 [ 18] [ 4] [6011] +15:03:09 [ 22] [ 3] [900] +15:03:09 [ 25] [ 2] [02] +15:03:09 [ 28] [ 9] [D00002000] +15:03:09 [ 32] [ 6] [621354] +15:03:09 [ 35] [ 37] [6688990103743207=43021231320741800000] +15:03:09 [ 37] [ 12] [507903344995] +15:03:09 [ 41] [ 8] [13001400] +15:03:09 [ 42] [ 15] [NATIVE ] +15:03:09 [ 43] [ 40] [Kham Unit Kham LAO] +15:03:09 [ 49] [ 3] [418] +15:03:09 [ 52] [ 16] [D761D2DDE1671450] +15:03:09 ============================================================================ +15:03:09 + + +waiting on router queue for slot.... +15:03:09 Sending to : <4> +15:03:09 ============================================================================ +15:03:10 ============================================================================ +15:03:10 Slot Id : <445> +15:03:10 Transaction Type : RESPONSE +15:03:10 Received From : +15:03:10 ============================================================================ +15:03:10 FNo. Len. Field Value +15:03:10 ============================================================================ +15:03:10 [ 1] [ 4] [0210] +15:03:10 [ 2] [ 16] [6688990103558605] +15:03:10 [ 3] [ 6] [301000] +15:03:10 [ 4] [ 12] [000000000000] +15:03:10 [ 11] [ 6] [778278] +15:03:10 [ 12] [ 6] [150302] +15:03:10 [ 15] [ 4] [0320] +15:03:10 [ 18] [ 4] [6011] +15:03:10 [ 32] [ 6] [621354] +15:03:10 [ 35] [ 37] [6688990103558605=43011231860596200000] +15:03:10 [ 37] [ 12] [507904698953] +15:03:10 [ 38] [ 6] [155861] +15:03:10 [ 39] [ 2] [00] +15:03:10 [ 41] [ 8] [18000800] +15:03:10 [ 49] [ 3] [418] +15:03:10 [ 54] [ 20] [1002418C000487550722] +15:03:10 ============================================================================ +15:03:10 Calculate Source COMM Id = 0 +15:03:10 ============================================================================ +15:03:10 + + +waiting on router queue for slot.... +15:03:11 ============================================================================ +15:03:11 Slot Id : <435> +15:03:11 Transaction Type : RESPONSE +15:03:11 Received From : +15:03:11 ============================================================================ +15:03:11 FNo. Len. Field Value +15:03:11 ============================================================================ +15:03:11 [ 1] [ 4] [0210] +15:03:11 [ 2] [ 16] [6688990104524309] +15:03:11 [ 3] [ 6] [011000] +15:03:11 [ 4] [ 12] [000030000000] +15:03:11 [ 11] [ 6] [778283] +15:03:11 [ 12] [ 6] [150304] +15:03:11 [ 15] [ 4] [0320] +15:03:11 [ 18] [ 4] [6011] +15:03:11 [ 32] [ 6] [621354] +15:03:11 [ 35] [ 37] [6688990104524309=43041231430950900000] +15:03:11 [ 37] [ 12] [507904807782] +15:03:11 [ 38] [ 6] [465440] +15:03:11 [ 39] [ 2] [00] +15:03:11 [ 41] [ 8] [07001600] +15:03:11 [ 49] [ 3] [418] +15:03:11 [ 54] [ 20] [1002418C000107983870] +15:03:11 ============================================================================ +15:03:11 Sending to : +15:03:11 ============================================================================ +15:03:11 + + +waiting on router queue for slot.... +15:03:11 ============================================================================ +15:03:11 Slot Id : <438> +15:03:11 Transaction Type : RESPONSE +15:03:11 Received From : +15:03:11 ============================================================================ +15:03:11 FNo. Len. Field Value +15:03:11 ============================================================================ +15:03:11 [ 1] [ 4] [0210] +15:03:11 [ 2] [ 16] [6688990103743207] +15:03:11 [ 3] [ 6] [010000] +15:03:11 [ 4] [ 12] [000050000000] +15:03:11 [ 11] [ 6] [778284] +15:03:11 [ 12] [ 6] [150304] +15:03:11 [ 15] [ 4] [0320] +15:03:11 [ 18] [ 4] [6011] +15:03:11 [ 32] [ 6] [621354] +15:03:11 [ 35] [ 37] [6688990103743207=43021231320741800000] +15:03:11 [ 37] [ 12] [507903344995] +15:03:11 [ 38] [ 6] [673962] +15:03:11 [ 39] [ 2] [00] +15:03:11 [ 41] [ 8] [13001400] +15:03:11 [ 49] [ 3] [418] +15:03:11 [ 54] [ 20] [0002418C000523289768] +15:03:11 ============================================================================ +15:03:11 Sending to : +15:03:11 ============================================================================ +15:03:11 + + +waiting on router queue for slot.... +15:03:12 ============================================================================ +15:03:12 Slot Id : <442> +15:03:12 Transaction Type : REQUEST +15:03:12 Received From : +15:03:12 ============================================================================ +15:03:12 FNo. Len. Field Value +15:03:12 ============================================================================ +15:03:12 [ 1] [ 4] [0200] +15:03:12 [ 2] [ 16] [6213541000665953] +15:03:12 [ 3] [ 6] [301000] +15:03:12 [ 4] [ 12] [000000000000] +15:03:12 [ 7] [ 10] [0320150103] +15:03:12 [ 11] [ 6] [949398] +15:03:12 [ 12] [ 6] [150103] +15:03:12 [ 13] [ 4] [0320] +15:03:12 [ 15] [ 4] [0320] +15:03:12 [ 18] [ 4] [6011] +15:03:12 [ 19] [ 3] [418] +15:03:12 [ 22] [ 3] [021] +15:03:12 [ 25] [ 2] [01] +15:03:12 [ 28] [ 9] [D00000000] +15:03:12 [ 32] [ 6] [668899] +15:03:12 [ 35] [ 32] [6213541000665953=491212016595330] +15:03:12 [ 37] [ 12] [507902151059] +15:03:12 [ 41] [ 8] [03020025] +15:03:12 [ 42] [ 15] [APT ] +15:03:12 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +15:03:12 [ 49] [ 3] [418] +15:03:12 [ 52] [ 16] [B802CF18476381B3] +15:03:12 ============================================================================ +15:03:12 + + +waiting on router queue for slot.... +15:03:12 Sending to : +15:03:12 ============================================================================ +15:03:12 Sending to : +15:03:12 ============================================================================ +15:03:13 ============================================================================ +15:03:13 Slot Id : <435> +15:03:13 Transaction Type : RESPONSE +15:03:13 Received From : +15:03:13 ============================================================================ +15:03:13 FNo. Len. Field Value +15:03:13 ============================================================================ +15:03:13 [ 1] [ 4] [0210] +15:03:13 [ 2] [ 16] [6688990104524309] +15:03:13 [ 3] [ 6] [011000] +15:03:13 [ 4] [ 12] [000030000000] +15:03:13 [ 11] [ 6] [778283] +15:03:13 [ 12] [ 6] [150304] +15:03:13 [ 15] [ 4] [0320] +15:03:13 [ 18] [ 4] [6011] +15:03:13 [ 32] [ 6] [621354] +15:03:13 [ 35] [ 37] [6688990104524309=43041231430950900000] +15:03:13 [ 37] [ 12] [507904807782] +15:03:13 [ 38] [ 6] [465440] +15:03:13 [ 39] [ 2] [00] +15:03:13 [ 41] [ 8] [07001600] +15:03:13 [ 49] [ 3] [418] +15:03:13 [ 54] [ 20] [1002418C000107983870] +15:03:13 ============================================================================ +15:03:13 Calculate Source COMM Id = 0 +15:03:13 ============================================================================ +15:03:13 + + +waiting on router queue for slot.... +15:03:13 ============================================================================ +15:03:13 Slot Id : <442> +15:03:13 Transaction Type : REQUEST +15:03:13 Received From : +15:03:13 ============================================================================ +15:03:13 FNo. Len. Field Value +15:03:13 ============================================================================ +15:03:13 [ 1] [ 4] [0200] +15:03:13 [ 2] [ 16] [6213541000665953] +15:03:13 [ 3] [ 6] [301000] +15:03:13 [ 4] [ 12] [000000000000] +15:03:13 [ 7] [ 10] [0320150103] +15:03:13 [ 11] [ 6] [949398] +15:03:13 [ 12] [ 6] [150103] +15:03:13 [ 13] [ 4] [0320] +15:03:13 [ 15] [ 4] [0320] +15:03:13 [ 18] [ 4] [6011] +15:03:13 [ 19] [ 3] [418] +15:03:13 [ 22] [ 3] [021] +15:03:13 [ 25] [ 2] [01] +15:03:13 [ 28] [ 9] [D00000000] +15:03:13 [ 32] [ 6] [668899] +15:03:13 [ 35] [ 32] [6213541000665953=491212016595330] +15:03:13 [ 37] [ 12] [507902151059] +15:03:13 [ 41] [ 8] [03020025] +15:03:13 [ 42] [ 15] [APT ] +15:03:13 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +15:03:13 [ 49] [ 3] [418] +15:03:13 [ 52] [ 16] [B802CF18476381B3] +15:03:13 ============================================================================ +15:03:13 + + +waiting on router queue for slot.... +15:03:13 Sending to : +15:03:13 ============================================================================ +15:03:13 ============================================================================ +15:03:13 Slot Id : <442> +15:03:13 Transaction Type : REQUEST +15:03:13 Received From : +15:03:13 ============================================================================ +15:03:13 FNo. Len. Field Value +15:03:13 ============================================================================ +15:03:13 [ 1] [ 4] [0200] +15:03:13 [ 2] [ 16] [6213541000665953] +15:03:13 [ 3] [ 6] [301000] +15:03:13 [ 4] [ 12] [000000000000] +15:03:13 [ 7] [ 10] [0320150103] +15:03:13 [ 11] [ 6] [949398] +15:03:13 [ 12] [ 6] [150103] +15:03:13 [ 13] [ 4] [0320] +15:03:13 [ 15] [ 4] [0320] +15:03:13 [ 18] [ 4] [6011] +15:03:13 [ 19] [ 3] [418] +15:03:13 [ 22] [ 3] [021] +15:03:13 [ 25] [ 2] [01] +15:03:13 [ 28] [ 9] [D00000000] +15:03:13 [ 32] [ 6] [668899] +15:03:13 [ 35] [ 32] [6213541000665953=491212016595330] +15:03:13 [ 37] [ 12] [507902151059] +15:03:13 [ 41] [ 8] [03020025] +15:03:13 [ 42] [ 15] [APT ] +15:03:13 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +15:03:13 [ 49] [ 3] [418] +15:03:13 [ 52] [ 16] [A18EFB71BEA63746] +15:03:13 ============================================================================ +15:03:13 + + +waiting on router queue for slot.... +15:03:13 Sending to : <0> +15:03:13 ============================================================================ +15:03:13 ============================================================================ +15:03:13 Slot Id : <442> +15:03:13 Transaction Type : RESPONSE +15:03:13 Received From : +15:03:13 ============================================================================ +15:03:13 FNo. Len. Field Value +15:03:13 ============================================================================ +15:03:13 [ 1] [ 4] [0210] +15:03:13 [ 2] [ 16] [6213541000665953] +15:03:13 [ 3] [ 6] [301000] +15:03:13 [ 4] [ 12] [000000000000] +15:03:13 [ 7] [ 10] [0320150103] +15:03:13 [ 11] [ 6] [949398] +15:03:13 [ 12] [ 6] [150103] +15:03:13 [ 13] [ 4] [0320] +15:03:13 [ 15] [ 4] [0320] +15:03:13 [ 18] [ 4] [6011] +15:03:13 [ 19] [ 3] [418] +15:03:13 [ 32] [ 6] [668899] +15:03:13 [ 35] [ 32] [6213541000665953=491212016595330] +15:03:13 [ 37] [ 12] [507902151059] +15:03:13 [ 38] [ 6] [662654] +15:03:13 [ 39] [ 2] [00] +15:03:13 [ 41] [ 8] [03020025] +15:03:13 [ 49] [ 3] [418] +15:03:13 [ 54] [ 40] [1001418C0000089520411002418C000008952041] +15:03:13 ============================================================================ +15:03:13 Sending to : +15:03:13 ============================================================================ +15:03:13 + + +waiting on router queue for slot.... +15:03:14 ============================================================================ +15:03:14 Slot Id : <434> +15:03:14 Transaction Type : REQUEST +15:03:14 Received From : +15:03:14 ============================================================================ +15:03:14 FNo. Len. Field Value +15:03:14 ============================================================================ +15:03:14 [ 1] [ 4] [0800] +15:03:14 [ 7] [ 10] [0320080221] +15:03:14 [ 11] [ 6] [156914] +15:03:14 [ 70] [ 3] [301] +15:03:14 ============================================================================ +15:03:14 + + +waiting on router queue for slot.... +15:03:14 Sending to : +15:03:14 ============================================================================ +15:03:14 ============================================================================ +15:03:14 Slot Id : <434> +15:03:14 Transaction Type : RESPONSE +15:03:14 Received From : +15:03:14 ============================================================================ +15:03:14 FNo. Len. Field Value +15:03:14 ============================================================================ +15:03:14 [ 1] [ 4] [0810] +15:03:14 [ 7] [ 10] [0320080221] +15:03:14 [ 11] [ 6] [156914] +15:03:14 [ 39] [ 2] [00] +15:03:14 [ 70] [ 3] [301] +15:03:14 ============================================================================ +15:03:14 Calculate Source COMM Id = 2 +15:03:14 ============================================================================ +15:03:14 + + +waiting on router queue for slot.... +15:03:14 ============================================================================ +15:03:14 Slot Id : <438> +15:03:14 Transaction Type : RESPONSE +15:03:14 Received From : +15:03:14 ============================================================================ +15:03:14 FNo. Len. Field Value +15:03:14 ============================================================================ +15:03:14 [ 1] [ 4] [0210] +15:03:14 [ 2] [ 16] [6688990103743207] +15:03:14 [ 3] [ 6] [010000] +15:03:14 [ 4] [ 12] [000050000000] +15:03:14 [ 11] [ 6] [778284] +15:03:14 [ 12] [ 6] [150304] +15:03:14 [ 15] [ 4] [0320] +15:03:14 [ 18] [ 4] [6011] +15:03:14 [ 32] [ 6] [621354] +15:03:14 [ 35] [ 37] [6688990103743207=43021231320741800000] +15:03:14 [ 37] [ 12] [507903344995] +15:03:14 [ 38] [ 6] [673962] +15:03:14 [ 39] [ 2] [00] +15:03:14 [ 41] [ 8] [13001400] +15:03:14 [ 49] [ 3] [418] +15:03:14 [ 54] [ 20] [0002418C000523289768] +15:03:14 ============================================================================ +15:03:14 Calculate Source COMM Id = 0 +15:03:14 ============================================================================ +15:03:14 + + +waiting on router queue for slot.... +15:03:16 ============================================================================ +15:03:16 Slot Id : <442> +15:03:16 Transaction Type : RESPONSE +15:03:16 Received From : +15:03:16 ============================================================================ +15:03:16 FNo. Len. Field Value +15:03:16 ============================================================================ +15:03:16 [ 1] [ 4] [0210] +15:03:16 [ 2] [ 16] [6213541000665953] +15:03:16 [ 3] [ 6] [301000] +15:03:16 [ 4] [ 12] [000000000000] +15:03:16 [ 7] [ 10] [0320150103] +15:03:16 [ 11] [ 6] [949398] +15:03:16 [ 12] [ 6] [150103] +15:03:16 [ 13] [ 4] [0320] +15:03:16 [ 15] [ 4] [0320] +15:03:16 [ 18] [ 4] [6011] +15:03:16 [ 19] [ 3] [418] +15:03:16 [ 32] [ 6] [668899] +15:03:16 [ 35] [ 32] [6213541000665953=491212016595330] +15:03:16 [ 37] [ 12] [507902151059] +15:03:16 [ 38] [ 6] [662654] +15:03:16 [ 39] [ 2] [00] +15:03:16 [ 41] [ 8] [03020025] +15:03:16 [ 49] [ 3] [418] +15:03:16 [ 54] [ 40] [1001418C0000089520411002418C000008952041] +15:03:16 ============================================================================ +15:03:16 Calculate Source COMM Id = 4 +15:03:16 ============================================================================ +15:03:16 + + +waiting on router queue for slot.... +15:03:17 ============================================================================ +15:03:17 Slot Id : <427> +15:03:17 Transaction Type : REQUEST +15:03:17 Received From : +15:03:17 ============================================================================ +15:03:17 FNo. Len. Field Value +15:03:17 ============================================================================ +15:03:17 [ 1] [ 4] [0200] +15:03:17 [ 2] [ 16] [6213544001993598] +15:03:17 [ 3] [ 6] [011000] +15:03:17 [ 4] [ 12] [000005000000] +15:03:17 [ 7] [ 10] [0320150337] +15:03:17 [ 11] [ 6] [207666] +15:03:17 [ 12] [ 6] [150521] +15:03:17 [ 13] [ 4] [0320] +15:03:17 [ 14] [ 4] [4912] +15:03:17 [ 15] [ 4] [0320] +15:03:17 [ 18] [ 4] [6011] +15:03:17 [ 19] [ 3] [418] +15:03:17 [ 22] [ 3] [021] +15:03:17 [ 25] [ 2] [01] +15:03:17 [ 28] [ 9] [D00002000] +15:03:17 [ 32] [ 6] [198901] +15:03:17 [ 35] [ 32] [6213544001993598=491212019359063] +15:03:17 [ 37] [ 12] [507915207666] +15:03:17 [ 41] [ 8] [00002222] +15:03:17 [ 42] [ 15] [000000041002222] +15:03:17 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:03:17 [ 49] [ 3] [418] +15:03:17 [ 52] [ 16] [80969D51E7B73675] +15:03:17 ============================================================================ +15:03:17 + + +waiting on router queue for slot.... +15:03:17 Sending to : +15:03:17 ============================================================================ +15:03:17 Sending to : +15:03:17 ============================================================================ +15:03:17 ============================================================================ +15:03:17 Slot Id : <427> +15:03:17 Transaction Type : REQUEST +15:03:17 Received From : +15:03:17 ============================================================================ +15:03:17 FNo. Len. Field Value +15:03:17 ============================================================================ +15:03:17 [ 1] [ 4] [0200] +15:03:17 [ 2] [ 16] [6213544001993598] +15:03:17 [ 3] [ 6] [011000] +15:03:17 [ 4] [ 12] [000005000000] +15:03:17 [ 7] [ 10] [0320150337] +15:03:17 [ 11] [ 6] [207666] +15:03:17 [ 12] [ 6] [150521] +15:03:17 [ 13] [ 4] [0320] +15:03:17 [ 14] [ 4] [4912] +15:03:17 [ 15] [ 4] [0320] +15:03:17 [ 18] [ 4] [6011] +15:03:17 [ 19] [ 3] [418] +15:03:17 [ 22] [ 3] [021] +15:03:17 [ 25] [ 2] [01] +15:03:17 [ 28] [ 9] [D00002000] +15:03:17 [ 32] [ 6] [198901] +15:03:17 [ 35] [ 32] [6213544001993598=491212019359063] +15:03:17 [ 37] [ 12] [507915207666] +15:03:17 [ 41] [ 8] [00002222] +15:03:17 [ 42] [ 15] [000000041002222] +15:03:17 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:03:17 [ 49] [ 3] [418] +15:03:17 [ 52] [ 16] [80969D51E7B73675] +15:03:17 ============================================================================ +15:03:17 + + +waiting on router queue for slot.... +15:03:17 Sending to : +15:03:17 ============================================================================ +15:03:17 ============================================================================ +15:03:17 Slot Id : <427> +15:03:17 Transaction Type : REQUEST +15:03:17 Received From : +15:03:17 ============================================================================ +15:03:17 FNo. Len. Field Value +15:03:17 ============================================================================ +15:03:17 [ 1] [ 4] [0200] +15:03:17 [ 2] [ 16] [6213544001993598] +15:03:17 [ 3] [ 6] [011000] +15:03:17 [ 4] [ 12] [000005000000] +15:03:17 [ 7] [ 10] [0320150337] +15:03:17 [ 11] [ 6] [207666] +15:03:17 [ 12] [ 6] [150521] +15:03:17 [ 13] [ 4] [0320] +15:03:17 [ 14] [ 4] [4912] +15:03:17 [ 15] [ 4] [0320] +15:03:17 [ 18] [ 4] [6011] +15:03:17 [ 19] [ 3] [418] +15:03:17 [ 22] [ 3] [021] +15:03:17 [ 25] [ 2] [01] +15:03:17 [ 28] [ 9] [D00002000] +15:03:17 [ 32] [ 6] [198901] +15:03:17 [ 35] [ 32] [6213544001993598=491212019359063] +15:03:17 [ 37] [ 12] [507915207666] +15:03:17 [ 41] [ 8] [00002222] +15:03:17 [ 42] [ 15] [000000041002222] +15:03:17 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:03:17 [ 49] [ 3] [418] +15:03:17 [ 52] [ 16] [F1D2916751B978EE] +15:03:17 ============================================================================ +15:03:17 + + +waiting on router queue for slot.... +15:03:17 Sending to : <0> +15:03:17 ============================================================================ +15:03:19 ============================================================================ +15:03:19 Slot Id : <427> +15:03:19 Transaction Type : RESPONSE +15:03:19 Received From : +15:03:19 ============================================================================ +15:03:19 FNo. Len. Field Value +15:03:19 ============================================================================ +15:03:19 [ 1] [ 4] [0210] +15:03:19 [ 2] [ 16] [6213544001993598] +15:03:19 [ 3] [ 6] [011000] +15:03:19 [ 4] [ 12] [000005000000] +15:03:19 [ 7] [ 10] [0320150337] +15:03:19 [ 11] [ 6] [207666] +15:03:19 [ 12] [ 6] [150521] +15:03:19 [ 13] [ 4] [0320] +15:03:19 [ 15] [ 4] [0320] +15:03:19 [ 18] [ 4] [6011] +15:03:19 [ 19] [ 3] [418] +15:03:19 [ 32] [ 6] [198901] +15:03:19 [ 35] [ 32] [6213544001993598=491212019359063] +15:03:19 [ 37] [ 12] [507915207666] +15:03:19 [ 38] [ 6] [799917] +15:03:19 [ 39] [ 2] [00] +15:03:19 [ 41] [ 8] [00002222] +15:03:19 [ 49] [ 3] [418] +15:03:19 [ 54] [ 40] [1001418C0000511635981002418C000051163598] +15:03:19 ============================================================================ +15:03:19 Sending to : +15:03:19 ============================================================================ +15:03:19 + + +waiting on router queue for slot.... +15:03:20 ============================================================================ +15:03:20 Slot Id : <427> +15:03:20 Transaction Type : RESPONSE +15:03:20 Received From : +15:03:20 ============================================================================ +15:03:20 FNo. Len. Field Value +15:03:20 ============================================================================ +15:03:20 [ 1] [ 4] [0210] +15:03:20 [ 2] [ 16] [6213544001993598] +15:03:20 [ 3] [ 6] [011000] +15:03:20 [ 4] [ 12] [000005000000] +15:03:20 [ 7] [ 10] [0320150337] +15:03:20 [ 11] [ 6] [207666] +15:03:20 [ 12] [ 6] [150521] +15:03:20 [ 13] [ 4] [0320] +15:03:20 [ 15] [ 4] [0320] +15:03:20 [ 18] [ 4] [6011] +15:03:20 [ 19] [ 3] [418] +15:03:20 [ 32] [ 6] [198901] +15:03:20 [ 35] [ 32] [6213544001993598=491212019359063] +15:03:20 [ 37] [ 12] [507915207666] +15:03:20 [ 38] [ 6] [799917] +15:03:20 [ 39] [ 2] [00] +15:03:20 [ 41] [ 8] [00002222] +15:03:20 [ 49] [ 3] [418] +15:03:20 [ 54] [ 40] [1001418C0000511635981002418C000051163598] +15:03:20 ============================================================================ +15:03:20 Calculate Source COMM Id = 5 +15:03:20 ============================================================================ +15:03:20 + + +waiting on router queue for slot.... +15:03:21 ============================================================================ +15:03:21 Slot Id : <428> +15:03:21 Transaction Type : REQUEST +15:03:21 Received From : +15:03:21 ============================================================================ +15:03:21 FNo. Len. Field Value +15:03:21 ============================================================================ +15:03:21 [ 1] [ 4] [0800] +15:03:21 [ 7] [ 10] [0320221509] +15:03:21 [ 11] [ 6] [151509] +15:03:21 [ 37] [ 12] [57915151509] +15:03:21 [ 70] [ 3] [301] +15:03:21 ============================================================================ +15:03:21 + + +waiting on router queue for slot.... +15:03:21 Sending to : +15:03:21 ============================================================================ +15:03:21 ============================================================================ +15:03:21 Slot Id : <428> +15:03:21 Transaction Type : RESPONSE +15:03:21 Received From : +15:03:21 ============================================================================ +15:03:21 FNo. Len. Field Value +15:03:21 ============================================================================ +15:03:21 [ 1] [ 4] [0810] +15:03:21 [ 7] [ 10] [0320221509] +15:03:21 [ 11] [ 6] [151509] +15:03:21 [ 37] [ 12] [579151515090] +15:03:21 [ 39] [ 2] [00] +15:03:21 [ 70] [ 3] [810] +15:03:21 ============================================================================ +15:03:21 Calculate Source COMM Id = 6 +15:03:21 ============================================================================ +15:03:21 + + +waiting on router queue for slot.... +15:03:24 ============================================================================ +15:03:24 Slot Id : <462> +15:03:24 Transaction Type : REQUEST +15:03:24 Received From : +15:03:24 ============================================================================ +15:03:24 FNo. Len. Field Value +15:03:24 ============================================================================ +15:03:24 [ 1] [ 4] [0800] +15:03:24 [ 7] [ 10] [0320080231] +15:03:24 [ 11] [ 6] [156915] +15:03:24 [ 70] [ 3] [301] +15:03:24 ============================================================================ +15:03:24 + + +waiting on router queue for slot.... +15:03:24 Sending to : +15:03:24 ============================================================================ +15:03:24 ============================================================================ +15:03:24 Slot Id : <462> +15:03:24 Transaction Type : RESPONSE +15:03:24 Received From : +15:03:24 ============================================================================ +15:03:24 FNo. Len. Field Value +15:03:24 ============================================================================ +15:03:24 [ 1] [ 4] [0810] +15:03:24 [ 7] [ 10] [0320080231] +15:03:24 [ 11] [ 6] [156915] +15:03:24 [ 39] [ 2] [00] +15:03:24 [ 70] [ 3] [301] +15:03:24 ============================================================================ +15:03:24 Calculate Source COMM Id = 2 +15:03:24 ============================================================================ +15:03:24 + + +waiting on router queue for slot.... +15:03:39 ============================================================================ +15:03:39 Slot Id : <451> +15:03:39 Transaction Type : REQUEST +15:03:39 Received From : +15:03:39 ============================================================================ +15:03:39 FNo. Len. Field Value +15:03:39 ============================================================================ +15:03:39 [ 1] [ 4] [0800] +15:03:39 [ 7] [ 10] [0320080246] +15:03:39 [ 11] [ 6] [156916] +15:03:39 [ 70] [ 3] [301] +15:03:39 ============================================================================ +15:03:39 + + +waiting on router queue for slot.... +15:03:39 Sending to : +15:03:39 ============================================================================ +15:03:39 ============================================================================ +15:03:39 Slot Id : <451> +15:03:39 Transaction Type : RESPONSE +15:03:39 Received From : +15:03:39 ============================================================================ +15:03:39 FNo. Len. Field Value +15:03:39 ============================================================================ +15:03:39 [ 1] [ 4] [0810] +15:03:39 [ 7] [ 10] [0320080246] +15:03:39 [ 11] [ 6] [156916] +15:03:39 [ 39] [ 2] [00] +15:03:39 [ 70] [ 3] [301] +15:03:39 ============================================================================ +15:03:39 Calculate Source COMM Id = 2 +15:03:39 ============================================================================ +15:03:39 + + +waiting on router queue for slot.... +15:03:46 ============================================================================ +15:03:46 Slot Id : <431> +15:03:46 Transaction Type : REQUEST +15:03:46 Received From : +15:03:46 ============================================================================ +15:03:46 FNo. Len. Field Value +15:03:46 ============================================================================ +15:03:46 [ 1] [ 4] [0800] +15:03:46 [ 2] [ 5] [02531] +15:03:46 [ 3] [ 6] [579158] +15:03:46 [ 7] [ 10] [0320080346] +15:03:46 [ 11] [ 6] [807286] +15:03:46 [ 15] [ 10] [0320080346] +15:03:46 [ 37] [ 11] [57915807286] +15:03:46 [ 70] [ 3] [001] +15:03:46 ============================================================================ +15:03:46 + + +waiting on router queue for slot.... +15:03:46 ============================================================================ +15:03:46 Slot Id : <431> +15:03:46 Transaction Type : RESPONSE +15:03:46 Received From : +15:03:46 ============================================================================ +15:03:46 FNo. Len. Field Value +15:03:46 ============================================================================ +15:03:46 [ 1] [ 4] [0810] +15:03:46 [ 7] [ 10] [0320080346] +15:03:46 [ 11] [ 6] [807286] +15:03:46 [ 15] [ 4] [0320] +15:03:46 [ 37] [ 12] [57915807286] +15:03:46 [ 39] [ 2] [00] +15:03:46 [ 70] [ 3] [001] +15:03:46 ============================================================================ +15:03:46 Sending to : +15:03:46 ============================================================================ +15:03:46 + + +waiting on router queue for slot.... +15:03:49 ============================================================================ +15:03:49 Slot Id : <421> +15:03:49 Transaction Type : REQUEST +15:03:49 Received From : +15:03:49 ============================================================================ +15:03:49 FNo. Len. Field Value +15:03:49 ============================================================================ +15:03:49 [ 1] [ 4] [0800] +15:03:49 [ 7] [ 10] [0320080257] +15:03:49 [ 11] [ 6] [156917] +15:03:49 [ 70] [ 3] [301] +15:03:49 ============================================================================ +15:03:49 + + +waiting on router queue for slot.... +15:03:49 Sending to : +15:03:49 ============================================================================ +15:03:49 ============================================================================ +15:03:49 Slot Id : <421> +15:03:49 Transaction Type : RESPONSE +15:03:49 Received From : +15:03:49 ============================================================================ +15:03:49 FNo. Len. Field Value +15:03:49 ============================================================================ +15:03:49 [ 1] [ 4] [0810] +15:03:49 [ 7] [ 10] [0320080257] +15:03:49 [ 11] [ 6] [156917] +15:03:49 [ 39] [ 2] [00] +15:03:49 [ 70] [ 3] [301] +15:03:49 ============================================================================ +15:03:49 Calculate Source COMM Id = 2 +15:03:49 ============================================================================ +15:03:49 + + +waiting on router queue for slot.... +15:03:52 ============================================================================ +15:03:52 Slot Id : <457> +15:03:52 Transaction Type : REQUEST +15:03:52 Received From : +15:03:52 ============================================================================ +15:03:52 FNo. Len. Field Value +15:03:52 ============================================================================ +15:03:52 [ 1] [ 4] [0200] +15:03:52 [ 2] [ 16] [6213544001993598] +15:03:52 [ 3] [ 6] [011000] +15:03:52 [ 4] [ 12] [000005000000] +15:03:52 [ 7] [ 10] [0320150412] +15:03:52 [ 11] [ 6] [207674] +15:03:52 [ 12] [ 6] [150556] +15:03:52 [ 13] [ 4] [0320] +15:03:52 [ 14] [ 4] [4912] +15:03:52 [ 15] [ 4] [0320] +15:03:52 [ 18] [ 4] [6011] +15:03:52 [ 19] [ 3] [418] +15:03:52 [ 22] [ 3] [021] +15:03:52 [ 25] [ 2] [01] +15:03:52 [ 28] [ 9] [D00002000] +15:03:52 [ 32] [ 6] [198901] +15:03:52 [ 35] [ 32] [6213544001993598=491212019359063] +15:03:52 [ 37] [ 12] [507915207674] +15:03:52 [ 41] [ 8] [00002222] +15:03:52 [ 42] [ 15] [000000041002222] +15:03:52 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:03:52 [ 49] [ 3] [418] +15:03:52 [ 52] [ 16] [80969D51E7B73675] +15:03:52 ============================================================================ +15:03:52 + + +waiting on router queue for slot.... +15:03:52 Sending to : +15:03:52 ============================================================================ +15:03:52 Sending to : +15:03:52 ============================================================================ +15:03:52 ============================================================================ +15:03:52 Slot Id : <457> +15:03:52 Transaction Type : REQUEST +15:03:52 Received From : +15:03:52 ============================================================================ +15:03:52 FNo. Len. Field Value +15:03:52 ============================================================================ +15:03:52 [ 1] [ 4] [0200] +15:03:52 [ 2] [ 16] [6213544001993598] +15:03:52 [ 3] [ 6] [011000] +15:03:52 [ 4] [ 12] [000005000000] +15:03:52 [ 7] [ 10] [0320150412] +15:03:52 [ 11] [ 6] [207674] +15:03:52 [ 12] [ 6] [150556] +15:03:52 [ 13] [ 4] [0320] +15:03:52 [ 14] [ 4] [4912] +15:03:52 [ 15] [ 4] [0320] +15:03:52 [ 18] [ 4] [6011] +15:03:52 [ 19] [ 3] [418] +15:03:52 [ 22] [ 3] [021] +15:03:52 [ 25] [ 2] [01] +15:03:52 [ 28] [ 9] [D00002000] +15:03:52 [ 32] [ 6] [198901] +15:03:52 [ 35] [ 32] [6213544001993598=491212019359063] +15:03:52 [ 37] [ 12] [507915207674] +15:03:52 [ 41] [ 8] [00002222] +15:03:52 [ 42] [ 15] [000000041002222] +15:03:52 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:03:52 [ 49] [ 3] [418] +15:03:52 [ 52] [ 16] [80969D51E7B73675] +15:03:52 ============================================================================ +15:03:52 + + +waiting on router queue for slot.... +15:03:52 Sending to : +15:03:52 ============================================================================ +15:03:52 ============================================================================ +15:03:52 Slot Id : <457> +15:03:52 Transaction Type : REQUEST +15:03:52 Received From : +15:03:52 ============================================================================ +15:03:52 FNo. Len. Field Value +15:03:52 ============================================================================ +15:03:52 [ 1] [ 4] [0200] +15:03:52 [ 2] [ 16] [6213544001993598] +15:03:52 [ 3] [ 6] [011000] +15:03:52 [ 4] [ 12] [000005000000] +15:03:52 [ 7] [ 10] [0320150412] +15:03:52 [ 11] [ 6] [207674] +15:03:52 [ 12] [ 6] [150556] +15:03:52 [ 13] [ 4] [0320] +15:03:52 [ 14] [ 4] [4912] +15:03:52 [ 15] [ 4] [0320] +15:03:52 [ 18] [ 4] [6011] +15:03:52 [ 19] [ 3] [418] +15:03:52 [ 22] [ 3] [021] +15:03:52 [ 25] [ 2] [01] +15:03:52 [ 28] [ 9] [D00002000] +15:03:52 [ 32] [ 6] [198901] +15:03:52 [ 35] [ 32] [6213544001993598=491212019359063] +15:03:52 [ 37] [ 12] [507915207674] +15:03:52 [ 41] [ 8] [00002222] +15:03:52 [ 42] [ 15] [000000041002222] +15:03:52 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:03:52 [ 49] [ 3] [418] +15:03:52 [ 52] [ 16] [F1D2916751B978EE] +15:03:52 ============================================================================ +15:03:52 + + +waiting on router queue for slot.... +15:03:52 Sending to : <0> +15:03:52 ============================================================================ +15:03:52 ============================================================================ +15:03:52 Slot Id : <457> +15:03:52 Transaction Type : RESPONSE +15:03:52 Received From : +15:03:52 ============================================================================ +15:03:52 FNo. Len. Field Value +15:03:52 ============================================================================ +15:03:52 [ 1] [ 4] [0210] +15:03:52 [ 2] [ 16] [6213544001993598] +15:03:52 [ 3] [ 6] [011000] +15:03:52 [ 4] [ 12] [000005000000] +15:03:52 [ 7] [ 10] [0320150412] +15:03:52 [ 11] [ 6] [207674] +15:03:52 [ 12] [ 6] [150556] +15:03:52 [ 13] [ 4] [0320] +15:03:52 [ 15] [ 4] [0320] +15:03:52 [ 18] [ 4] [6011] +15:03:52 [ 19] [ 3] [418] +15:03:52 [ 32] [ 6] [198901] +15:03:52 [ 35] [ 32] [6213544001993598=491212019359063] +15:03:52 [ 37] [ 12] [507915207674] +15:03:52 [ 38] [ 6] [754428] +15:03:52 [ 39] [ 2] [00] +15:03:52 [ 41] [ 8] [00002222] +15:03:52 [ 49] [ 3] [418] +15:03:52 [ 54] [ 40] [1001418C0000459635981002418C000045963598] +15:03:52 ============================================================================ +15:03:52 Sending to : +15:03:52 ============================================================================ +15:03:52 + + +waiting on router queue for slot.... +15:03:54 ============================================================================ +15:03:54 Slot Id : <457> +15:03:54 Transaction Type : RESPONSE +15:03:54 Received From : +15:03:54 ============================================================================ +15:03:54 FNo. Len. Field Value +15:03:54 ============================================================================ +15:03:54 [ 1] [ 4] [0210] +15:03:54 [ 2] [ 16] [6213544001993598] +15:03:54 [ 3] [ 6] [011000] +15:03:54 [ 4] [ 12] [000005000000] +15:03:54 [ 7] [ 10] [0320150412] +15:03:54 [ 11] [ 6] [207674] +15:03:54 [ 12] [ 6] [150556] +15:03:54 [ 13] [ 4] [0320] +15:03:54 [ 15] [ 4] [0320] +15:03:54 [ 18] [ 4] [6011] +15:03:54 [ 19] [ 3] [418] +15:03:54 [ 32] [ 6] [198901] +15:03:54 [ 35] [ 32] [6213544001993598=491212019359063] +15:03:54 [ 37] [ 12] [507915207674] +15:03:54 [ 38] [ 6] [754428] +15:03:54 [ 39] [ 2] [00] +15:03:54 [ 41] [ 8] [00002222] +15:03:54 [ 49] [ 3] [418] +15:03:54 [ 54] [ 40] [1001418C0000459635981002418C000045963598] +15:03:54 ============================================================================ +15:03:54 Calculate Source COMM Id = 5 +15:03:54 ============================================================================ +15:03:54 + + +waiting on router queue for slot.... +15:03:56 ============================================================================ +15:03:56 Slot Id : <426> +15:03:56 Transaction Type : REQUEST +15:03:56 Received From : +15:03:56 ============================================================================ +15:03:56 FNo. Len. Field Value +15:03:56 ============================================================================ +15:03:56 [ 1] [ 4] [0200] +15:03:56 [ 2] [ 16] [6688990104012701] +15:03:56 [ 3] [ 6] [010000] +15:03:56 [ 4] [ 12] [000010000000] +15:03:56 [ 7] [ 10] [0320150351] +15:03:56 [ 11] [ 6] [778443] +15:03:56 [ 12] [ 6] [150351] +15:03:56 [ 13] [ 4] [0320] +15:03:56 [ 15] [ 4] [0320] +15:03:56 [ 18] [ 4] [6011] +15:03:56 [ 22] [ 3] [900] +15:03:56 [ 25] [ 2] [02] +15:03:56 [ 28] [ 9] [D00002000] +15:03:56 [ 32] [ 6] [621354] +15:03:56 [ 35] [ 37] [6688990104012701=43021231270172400000] +15:03:56 [ 37] [ 12] [507904645105] +15:03:56 [ 41] [ 8] [17000900] +15:03:56 [ 42] [ 15] [NATIVE ] +15:03:56 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +15:03:56 [ 49] [ 3] [418] +15:03:56 [ 52] [ 16] [5E50619DFED98AF8] +15:03:56 ============================================================================ +15:03:56 + + +waiting on router queue for slot.... +15:03:56 Sending to : +15:03:56 ============================================================================ +15:03:56 Sending to : +15:03:56 ============================================================================ +15:03:56 ============================================================================ +15:03:56 Slot Id : <426> +15:03:56 Transaction Type : REQUEST +15:03:56 Received From : +15:03:56 ============================================================================ +15:03:56 FNo. Len. Field Value +15:03:56 ============================================================================ +15:03:56 [ 1] [ 4] [0200] +15:03:56 [ 2] [ 16] [6688990104012701] +15:03:56 [ 3] [ 6] [010000] +15:03:56 [ 4] [ 12] [000010000000] +15:03:56 [ 7] [ 10] [0320150351] +15:03:56 [ 11] [ 6] [778443] +15:03:56 [ 12] [ 6] [150351] +15:03:56 [ 13] [ 4] [0320] +15:03:56 [ 15] [ 4] [0320] +15:03:56 [ 18] [ 4] [6011] +15:03:56 [ 22] [ 3] [900] +15:03:56 [ 25] [ 2] [02] +15:03:56 [ 28] [ 9] [D00002000] +15:03:56 [ 32] [ 6] [621354] +15:03:56 [ 35] [ 37] [6688990104012701=43021231270172400000] +15:03:56 [ 37] [ 12] [507904645105] +15:03:56 [ 41] [ 8] [17000900] +15:03:56 [ 42] [ 15] [NATIVE ] +15:03:56 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +15:03:56 [ 49] [ 3] [418] +15:03:56 [ 52] [ 16] [5E50619DFED98AF8] +15:03:56 ============================================================================ +15:03:56 + + +waiting on router queue for slot.... +15:03:56 Sending to : +15:03:56 ============================================================================ +15:03:56 ============================================================================ +15:03:56 Slot Id : <426> +15:03:56 Transaction Type : REQUEST +15:03:56 Received From : +15:03:56 ============================================================================ +15:03:56 FNo. Len. Field Value +15:03:56 ============================================================================ +15:03:56 [ 1] [ 4] [0200] +15:03:56 [ 2] [ 16] [6688990104012701] +15:03:56 [ 3] [ 6] [010000] +15:03:56 [ 4] [ 12] [000010000000] +15:03:56 [ 7] [ 10] [0320150351] +15:03:56 [ 11] [ 6] [778443] +15:03:56 [ 12] [ 6] [150351] +15:03:56 [ 13] [ 4] [0320] +15:03:56 [ 15] [ 4] [0320] +15:03:56 [ 18] [ 4] [6011] +15:03:56 [ 22] [ 3] [900] +15:03:56 [ 25] [ 2] [02] +15:03:56 [ 28] [ 9] [D00002000] +15:03:56 [ 32] [ 6] [621354] +15:03:56 [ 35] [ 37] [6688990104012701=43021231270172400000] +15:03:56 [ 37] [ 12] [507904645105] +15:03:56 [ 41] [ 8] [17000900] +15:03:56 [ 42] [ 15] [NATIVE ] +15:03:56 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +15:03:56 [ 49] [ 3] [418] +15:03:56 [ 52] [ 16] [DEF493CA07D1DC8F] +15:03:56 ============================================================================ +15:03:56 + + +waiting on router queue for slot.... +15:03:56 Sending to : <4> +15:03:56 ============================================================================ +15:03:57 ============================================================================ +15:03:57 Slot Id : <426> +15:03:57 Transaction Type : RESPONSE +15:03:57 Received From : +15:03:57 ============================================================================ +15:03:57 FNo. Len. Field Value +15:03:57 ============================================================================ +15:03:57 [ 1] [ 4] [0210] +15:03:57 [ 2] [ 16] [6688990104012701] +15:03:57 [ 3] [ 6] [010000] +15:03:57 [ 4] [ 12] [000010000000] +15:03:57 [ 11] [ 6] [778443] +15:03:57 [ 12] [ 6] [150351] +15:03:57 [ 15] [ 4] [0320] +15:03:57 [ 18] [ 4] [6011] +15:03:57 [ 32] [ 6] [621354] +15:03:57 [ 35] [ 37] [6688990104012701=43021231270172400000] +15:03:57 [ 37] [ 12] [507904645105] +15:03:57 [ 38] [ 6] [909139] +15:03:57 [ 39] [ 2] [00] +15:03:57 [ 41] [ 8] [17000900] +15:03:57 [ 49] [ 3] [418] +15:03:57 [ 54] [ 20] [0002418C000013318375] +15:03:57 ============================================================================ +15:03:57 Sending to : +15:03:57 ============================================================================ +15:03:57 + + +waiting on router queue for slot.... +15:03:59 ============================================================================ +15:03:59 Slot Id : <426> +15:03:59 Transaction Type : RESPONSE +15:03:59 Received From : +15:03:59 ============================================================================ +15:03:59 FNo. Len. Field Value +15:03:59 ============================================================================ +15:03:59 [ 1] [ 4] [0210] +15:03:59 [ 2] [ 16] [6688990104012701] +15:03:59 [ 3] [ 6] [010000] +15:03:59 [ 4] [ 12] [000010000000] +15:03:59 [ 11] [ 6] [778443] +15:03:59 [ 12] [ 6] [150351] +15:03:59 [ 15] [ 4] [0320] +15:03:59 [ 18] [ 4] [6011] +15:03:59 [ 32] [ 6] [621354] +15:03:59 [ 35] [ 37] [6688990104012701=43021231270172400000] +15:03:59 [ 37] [ 12] [507904645105] +15:03:59 [ 38] [ 6] [909139] +15:03:59 [ 39] [ 2] [00] +15:03:59 [ 41] [ 8] [17000900] +15:03:59 [ 49] [ 3] [418] +15:03:59 [ 54] [ 20] [0002418C000013318375] +15:03:59 ============================================================================ +15:03:59 Calculate Source COMM Id = 0 +15:03:59 ============================================================================ +15:03:59 + + +waiting on router queue for slot.... +15:04:01 ============================================================================ +15:04:01 Slot Id : <465> +15:04:01 Transaction Type : REQUEST +15:04:01 Received From : +15:04:01 ============================================================================ +15:04:01 FNo. Len. Field Value +15:04:01 ============================================================================ +15:04:01 [ 1] [ 4] [0200] +15:04:01 [ 2] [ 16] [6688990103084008] +15:04:01 [ 3] [ 6] [301000] +15:04:01 [ 4] [ 12] [000000000000] +15:04:01 [ 7] [ 10] [0320150356] +15:04:01 [ 11] [ 6] [778463] +15:04:01 [ 12] [ 6] [150356] +15:04:01 [ 13] [ 4] [0320] +15:04:01 [ 15] [ 4] [0320] +15:04:01 [ 18] [ 4] [6011] +15:04:01 [ 22] [ 3] [900] +15:04:01 [ 25] [ 2] [02] +15:04:01 [ 28] [ 9] [D00002000] +15:04:01 [ 32] [ 6] [621354] +15:04:01 [ 35] [ 37] [6688990103084008=42121231400857300000] +15:04:01 [ 37] [ 12] [507904719712] +15:04:01 [ 41] [ 8] [18001000] +15:04:01 [ 42] [ 15] [NATIVE ] +15:04:01 [ 43] [ 40] [Khoua Unit Khoua LAO] +15:04:01 [ 49] [ 3] [418] +15:04:01 [ 52] [ 16] [855D858B5CAE4147] +15:04:01 ============================================================================ +15:04:01 + + +waiting on router queue for slot.... +15:04:01 Sending to : +15:04:01 ============================================================================ +15:04:01 Sending to : +15:04:01 ============================================================================ +15:04:01 ============================================================================ +15:04:01 Slot Id : <465> +15:04:01 Transaction Type : REQUEST +15:04:01 Received From : +15:04:01 ============================================================================ +15:04:01 FNo. Len. Field Value +15:04:01 ============================================================================ +15:04:01 [ 1] [ 4] [0200] +15:04:01 [ 2] [ 16] [6688990103084008] +15:04:01 [ 3] [ 6] [301000] +15:04:01 [ 4] [ 12] [000000000000] +15:04:01 [ 7] [ 10] [0320150356] +15:04:01 [ 11] [ 6] [778463] +15:04:01 [ 12] [ 6] [150356] +15:04:01 [ 13] [ 4] [0320] +15:04:01 [ 15] [ 4] [0320] +15:04:01 [ 18] [ 4] [6011] +15:04:01 [ 22] [ 3] [900] +15:04:01 [ 25] [ 2] [02] +15:04:01 [ 28] [ 9] [D00002000] +15:04:01 [ 32] [ 6] [621354] +15:04:01 [ 35] [ 37] [6688990103084008=42121231400857300000] +15:04:01 [ 37] [ 12] [507904719712] +15:04:01 [ 41] [ 8] [18001000] +15:04:01 [ 42] [ 15] [NATIVE ] +15:04:01 [ 43] [ 40] [Khoua Unit Khoua LAO] +15:04:01 [ 49] [ 3] [418] +15:04:01 [ 52] [ 16] [855D858B5CAE4147] +15:04:01 ============================================================================ +15:04:01 + + +waiting on router queue for slot.... +15:04:01 Sending to : +15:04:01 ============================================================================ +15:04:01 ============================================================================ +15:04:01 Slot Id : <465> +15:04:01 Transaction Type : REQUEST +15:04:01 Received From : +15:04:01 ============================================================================ +15:04:01 FNo. Len. Field Value +15:04:01 ============================================================================ +15:04:01 [ 1] [ 4] [0200] +15:04:01 [ 2] [ 16] [6688990103084008] +15:04:01 [ 3] [ 6] [301000] +15:04:01 [ 4] [ 12] [000000000000] +15:04:01 [ 7] [ 10] [0320150356] +15:04:01 [ 11] [ 6] [778463] +15:04:01 [ 12] [ 6] [150356] +15:04:01 [ 13] [ 4] [0320] +15:04:01 [ 15] [ 4] [0320] +15:04:01 [ 18] [ 4] [6011] +15:04:01 [ 22] [ 3] [900] +15:04:01 [ 25] [ 2] [02] +15:04:01 [ 28] [ 9] [D00002000] +15:04:01 [ 32] [ 6] [621354] +15:04:01 [ 35] [ 37] [6688990103084008=42121231400857300000] +15:04:01 [ 37] [ 12] [507904719712] +15:04:01 [ 41] [ 8] [18001000] +15:04:01 [ 42] [ 15] [NATIVE ] +15:04:01 [ 43] [ 40] [Khoua Unit Khoua LAO] +15:04:01 [ 49] [ 3] [418] +15:04:01 [ 52] [ 16] [BCCE8F7AD8113D4A] +15:04:01 ============================================================================ +15:04:01 + + +waiting on router queue for slot.... +15:04:01 Sending to : <4> +15:04:01 ============================================================================ +15:04:02 ============================================================================ +15:04:02 Slot Id : <465> +15:04:02 Transaction Type : RESPONSE +15:04:02 Received From : +15:04:02 ============================================================================ +15:04:02 FNo. Len. Field Value +15:04:02 ============================================================================ +15:04:02 [ 1] [ 4] [0210] +15:04:02 [ 2] [ 16] [6688990103084008] +15:04:02 [ 3] [ 6] [301000] +15:04:02 [ 4] [ 12] [000000000000] +15:04:02 [ 11] [ 6] [778463] +15:04:02 [ 12] [ 6] [150356] +15:04:02 [ 15] [ 4] [0320] +15:04:02 [ 18] [ 4] [6011] +15:04:02 [ 32] [ 6] [621354] +15:04:02 [ 35] [ 37] [6688990103084008=42121231400857300000] +15:04:02 [ 37] [ 12] [507904719712] +15:04:02 [ 38] [ 6] [794071] +15:04:02 [ 39] [ 2] [00] +15:04:02 [ 41] [ 8] [18001000] +15:04:02 [ 49] [ 3] [418] +15:04:02 [ 54] [ 20] [1002418C000281678766] +15:04:02 ============================================================================ +15:04:02 Sending to : +15:04:02 ============================================================================ +15:04:02 + + +waiting on router queue for slot.... +15:04:02 ============================================================================ +15:04:02 Slot Id : <422> +15:04:02 Transaction Type : REQUEST +15:04:02 Received From : +15:04:02 ============================================================================ +15:04:02 FNo. Len. Field Value +15:04:02 ============================================================================ +15:04:02 [ 1] [ 4] [0800] +15:04:02 [ 7] [ 10] [0320080309] +15:04:02 [ 11] [ 6] [156918] +15:04:02 [ 70] [ 3] [301] +15:04:02 ============================================================================ +15:04:02 + + +waiting on router queue for slot.... +15:04:02 Sending to : +15:04:02 ============================================================================ +15:04:02 ============================================================================ +15:04:02 Slot Id : <422> +15:04:02 Transaction Type : RESPONSE +15:04:02 Received From : +15:04:02 ============================================================================ +15:04:02 FNo. Len. Field Value +15:04:02 ============================================================================ +15:04:02 [ 1] [ 4] [0810] +15:04:02 [ 7] [ 10] [0320080309] +15:04:02 [ 11] [ 6] [156918] +15:04:02 [ 39] [ 2] [00] +15:04:02 [ 70] [ 3] [301] +15:04:02 ============================================================================ +15:04:02 Calculate Source COMM Id = 2 +15:04:02 ============================================================================ +15:04:02 + + +waiting on router queue for slot.... +15:04:03 ============================================================================ +15:04:03 Slot Id : <465> +15:04:03 Transaction Type : RESPONSE +15:04:03 Received From : +15:04:03 ============================================================================ +15:04:03 FNo. Len. Field Value +15:04:03 ============================================================================ +15:04:03 [ 1] [ 4] [0210] +15:04:03 [ 2] [ 16] [6688990103084008] +15:04:03 [ 3] [ 6] [301000] +15:04:03 [ 4] [ 12] [000000000000] +15:04:03 [ 11] [ 6] [778463] +15:04:03 [ 12] [ 6] [150356] +15:04:03 [ 15] [ 4] [0320] +15:04:03 [ 18] [ 4] [6011] +15:04:03 [ 32] [ 6] [621354] +15:04:03 [ 35] [ 37] [6688990103084008=42121231400857300000] +15:04:03 [ 37] [ 12] [507904719712] +15:04:03 [ 38] [ 6] [794071] +15:04:03 [ 39] [ 2] [00] +15:04:03 [ 41] [ 8] [18001000] +15:04:03 [ 49] [ 3] [418] +15:04:03 [ 54] [ 20] [1002418C000281678766] +15:04:03 ============================================================================ +15:04:03 Calculate Source COMM Id = 0 +15:04:03 ============================================================================ +15:04:03 + + +waiting on router queue for slot.... +15:04:06 ============================================================================ +15:04:06 Slot Id : <444> +15:04:06 Transaction Type : REQUEST +15:04:06 Received From : +15:04:06 ============================================================================ +15:04:06 FNo. Len. Field Value +15:04:06 ============================================================================ +15:04:06 [ 1] [ 4] [0200] +15:04:06 [ 2] [ 16] [6213541000665953] +15:04:06 [ 3] [ 6] [301000] +15:04:06 [ 4] [ 12] [000000000000] +15:04:06 [ 7] [ 10] [0320150157] +15:04:06 [ 11] [ 6] [949420] +15:04:06 [ 12] [ 6] [150157] +15:04:06 [ 13] [ 4] [0320] +15:04:06 [ 15] [ 4] [0320] +15:04:06 [ 18] [ 4] [6011] +15:04:06 [ 19] [ 3] [418] +15:04:06 [ 22] [ 3] [021] +15:04:06 [ 25] [ 2] [01] +15:04:06 [ 28] [ 9] [D00000000] +15:04:06 [ 32] [ 6] [668899] +15:04:06 [ 35] [ 32] [6213541000665953=491212016595330] +15:04:06 [ 37] [ 12] [507902151061] +15:04:06 [ 41] [ 8] [03020025] +15:04:06 [ 42] [ 15] [APT ] +15:04:06 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +15:04:06 [ 49] [ 3] [418] +15:04:06 [ 52] [ 16] [B802CF18476381B3] +15:04:06 ============================================================================ +15:04:06 + + +waiting on router queue for slot.... +15:04:06 Sending to : +15:04:06 ============================================================================ +15:04:06 Sending to : +15:04:06 ============================================================================ +15:04:07 ============================================================================ +15:04:07 Slot Id : <444> +15:04:07 Transaction Type : REQUEST +15:04:07 Received From : +15:04:07 ============================================================================ +15:04:07 FNo. Len. Field Value +15:04:07 ============================================================================ +15:04:07 [ 1] [ 4] [0200] +15:04:07 [ 2] [ 16] [6213541000665953] +15:04:07 [ 3] [ 6] [301000] +15:04:07 [ 4] [ 12] [000000000000] +15:04:07 [ 7] [ 10] [0320150157] +15:04:07 [ 11] [ 6] [949420] +15:04:07 [ 12] [ 6] [150157] +15:04:07 [ 13] [ 4] [0320] +15:04:07 [ 15] [ 4] [0320] +15:04:07 [ 18] [ 4] [6011] +15:04:07 [ 19] [ 3] [418] +15:04:07 [ 22] [ 3] [021] +15:04:07 [ 25] [ 2] [01] +15:04:07 [ 28] [ 9] [D00000000] +15:04:07 [ 32] [ 6] [668899] +15:04:07 [ 35] [ 32] [6213541000665953=491212016595330] +15:04:07 [ 37] [ 12] [507902151061] +15:04:07 [ 41] [ 8] [03020025] +15:04:07 [ 42] [ 15] [APT ] +15:04:07 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +15:04:07 [ 49] [ 3] [418] +15:04:07 [ 52] [ 16] [B802CF18476381B3] +15:04:07 ============================================================================ +15:04:07 + + +waiting on router queue for slot.... +15:04:07 Sending to : +15:04:07 ============================================================================ +15:04:07 ============================================================================ +15:04:07 Slot Id : <444> +15:04:07 Transaction Type : REQUEST +15:04:07 Received From : +15:04:07 ============================================================================ +15:04:07 FNo. Len. Field Value +15:04:07 ============================================================================ +15:04:07 [ 1] [ 4] [0200] +15:04:07 [ 2] [ 16] [6213541000665953] +15:04:07 [ 3] [ 6] [301000] +15:04:07 [ 4] [ 12] [000000000000] +15:04:07 [ 7] [ 10] [0320150157] +15:04:07 [ 11] [ 6] [949420] +15:04:07 [ 12] [ 6] [150157] +15:04:07 [ 13] [ 4] [0320] +15:04:07 [ 15] [ 4] [0320] +15:04:07 [ 18] [ 4] [6011] +15:04:07 [ 19] [ 3] [418] +15:04:07 [ 22] [ 3] [021] +15:04:07 [ 25] [ 2] [01] +15:04:07 [ 28] [ 9] [D00000000] +15:04:07 [ 32] [ 6] [668899] +15:04:07 [ 35] [ 32] [6213541000665953=491212016595330] +15:04:07 [ 37] [ 12] [507902151061] +15:04:07 [ 41] [ 8] [03020025] +15:04:07 [ 42] [ 15] [APT ] +15:04:07 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +15:04:07 [ 49] [ 3] [418] +15:04:07 [ 52] [ 16] [A18EFB71BEA63746] +15:04:07 ============================================================================ +15:04:07 + + +waiting on router queue for slot.... +15:04:07 Sending to : <0> +15:04:07 ============================================================================ +15:04:07 ============================================================================ +15:04:07 Slot Id : <444> +15:04:07 Transaction Type : RESPONSE +15:04:07 Received From : +15:04:07 ============================================================================ +15:04:07 FNo. Len. Field Value +15:04:07 ============================================================================ +15:04:07 [ 1] [ 4] [0210] +15:04:07 [ 2] [ 16] [6213541000665953] +15:04:07 [ 3] [ 6] [301000] +15:04:07 [ 4] [ 12] [000000000000] +15:04:07 [ 7] [ 10] [0320150157] +15:04:07 [ 11] [ 6] [949420] +15:04:07 [ 12] [ 6] [150157] +15:04:07 [ 13] [ 4] [0320] +15:04:07 [ 15] [ 4] [0320] +15:04:07 [ 18] [ 4] [6011] +15:04:07 [ 19] [ 3] [418] +15:04:07 [ 22] [ 3] [021] +15:04:07 [ 32] [ 6] [668899] +15:04:07 [ 35] [ 32] [6213541000665953=491212016595330] +15:04:07 [ 37] [ 12] [507902151061] +15:04:07 [ 39] [ 2] [05] +15:04:07 [ 41] [ 8] [03020025] +15:04:07 [ 49] [ 3] [418] +15:04:07 ============================================================================ +15:04:07 Sending to : +15:04:07 ============================================================================ +15:04:07 + + +waiting on router queue for slot.... +15:04:08 ============================================================================ +15:04:08 Slot Id : <444> +15:04:08 Transaction Type : RESPONSE +15:04:08 Received From : +15:04:08 ============================================================================ +15:04:08 FNo. Len. Field Value +15:04:08 ============================================================================ +15:04:08 [ 1] [ 4] [0210] +15:04:08 [ 2] [ 16] [6213541000665953] +15:04:08 [ 3] [ 6] [301000] +15:04:08 [ 4] [ 12] [000000000000] +15:04:08 [ 7] [ 10] [0320150157] +15:04:08 [ 11] [ 6] [949420] +15:04:08 [ 12] [ 6] [150157] +15:04:08 [ 13] [ 4] [0320] +15:04:08 [ 15] [ 4] [0320] +15:04:08 [ 18] [ 4] [6011] +15:04:08 [ 19] [ 3] [418] +15:04:08 [ 22] [ 3] [021] +15:04:08 [ 32] [ 6] [668899] +15:04:08 [ 35] [ 32] [6213541000665953=491212016595330] +15:04:08 [ 37] [ 12] [507902151061] +15:04:08 [ 39] [ 2] [05] +15:04:08 [ 41] [ 8] [03020025] +15:04:08 [ 49] [ 3] [418] +15:04:08 ============================================================================ +15:04:08 Calculate Source COMM Id = 4 +15:04:08 ============================================================================ +15:04:08 + + +waiting on router queue for slot.... +15:04:10 ============================================================================ +15:04:10 Slot Id : <436> +15:04:10 Transaction Type : REQUEST +15:04:10 Received From : +15:04:10 ============================================================================ +15:04:10 FNo. Len. Field Value +15:04:10 ============================================================================ +15:04:10 [ 1] [ 4] [0200] +15:04:10 [ 2] [ 16] [6688990040042481] +15:04:10 [ 3] [ 6] [300000] +15:04:10 [ 4] [ 12] [000000000000] +15:04:10 [ 7] [ 10] [0320150405] +15:04:10 [ 11] [ 6] [778484] +15:04:10 [ 12] [ 6] [150405] +15:04:10 [ 13] [ 4] [0320] +15:04:10 [ 15] [ 4] [0320] +15:04:10 [ 18] [ 4] [6011] +15:04:10 [ 22] [ 3] [900] +15:04:10 [ 25] [ 2] [02] +15:04:10 [ 28] [ 9] [D00000000] +15:04:10 [ 32] [ 6] [621354] +15:04:10 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:04:10 [ 37] [ 12] [507905335161] +15:04:10 [ 41] [ 8] [05004700] +15:04:10 [ 42] [ 15] [NATIVE ] +15:04:10 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:04:10 [ 49] [ 3] [418] +15:04:10 [ 52] [ 16] [E8E0C48DE95763E3] +15:04:10 ============================================================================ +15:04:10 + + +waiting on router queue for slot.... +15:04:10 Sending to : +15:04:10 ============================================================================ +15:04:10 Sending to : +15:04:10 ============================================================================ +15:04:10 ============================================================================ +15:04:10 Slot Id : <436> +15:04:10 Transaction Type : REQUEST +15:04:10 Received From : +15:04:10 ============================================================================ +15:04:10 FNo. Len. Field Value +15:04:10 ============================================================================ +15:04:10 [ 1] [ 4] [0200] +15:04:10 [ 2] [ 16] [6688990040042481] +15:04:10 [ 3] [ 6] [300000] +15:04:10 [ 4] [ 12] [000000000000] +15:04:10 [ 7] [ 10] [0320150405] +15:04:10 [ 11] [ 6] [778484] +15:04:10 [ 12] [ 6] [150405] +15:04:10 [ 13] [ 4] [0320] +15:04:10 [ 15] [ 4] [0320] +15:04:10 [ 18] [ 4] [6011] +15:04:10 [ 22] [ 3] [900] +15:04:10 [ 25] [ 2] [02] +15:04:10 [ 28] [ 9] [D00000000] +15:04:10 [ 32] [ 6] [621354] +15:04:10 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:04:10 [ 37] [ 12] [507905335161] +15:04:10 [ 41] [ 8] [05004700] +15:04:10 [ 42] [ 15] [NATIVE ] +15:04:10 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:04:10 [ 49] [ 3] [418] +15:04:10 [ 52] [ 16] [E8E0C48DE95763E3] +15:04:10 ============================================================================ +15:04:10 + + +waiting on router queue for slot.... +15:04:10 Sending to : +15:04:10 ============================================================================ +15:04:10 ============================================================================ +15:04:10 Slot Id : <436> +15:04:10 Transaction Type : REQUEST +15:04:10 Received From : +15:04:10 ============================================================================ +15:04:10 FNo. Len. Field Value +15:04:10 ============================================================================ +15:04:10 [ 1] [ 4] [0200] +15:04:10 [ 2] [ 16] [6688990040042481] +15:04:10 [ 3] [ 6] [300000] +15:04:10 [ 4] [ 12] [000000000000] +15:04:10 [ 7] [ 10] [0320150405] +15:04:10 [ 11] [ 6] [778484] +15:04:10 [ 12] [ 6] [150405] +15:04:10 [ 13] [ 4] [0320] +15:04:10 [ 15] [ 4] [0320] +15:04:10 [ 18] [ 4] [6011] +15:04:10 [ 22] [ 3] [900] +15:04:10 [ 25] [ 2] [02] +15:04:10 [ 28] [ 9] [D00000000] +15:04:10 [ 32] [ 6] [621354] +15:04:10 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:04:10 [ 37] [ 12] [507905335161] +15:04:10 [ 41] [ 8] [05004700] +15:04:10 [ 42] [ 15] [NATIVE ] +15:04:10 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:04:10 [ 49] [ 3] [418] +15:04:10 [ 52] [ 16] [360D72F66C5B5754] +15:04:10 ============================================================================ +15:04:10 + + +waiting on router queue for slot.... +15:04:10 Sending to : <4> +15:04:10 ============================================================================ +15:04:11 ============================================================================ +15:04:11 Slot Id : <436> +15:04:11 Transaction Type : RESPONSE +15:04:11 Received From : +15:04:11 ============================================================================ +15:04:11 FNo. Len. Field Value +15:04:11 ============================================================================ +15:04:11 [ 1] [ 4] [0210] +15:04:11 [ 2] [ 16] [6688990040042481] +15:04:11 [ 3] [ 6] [300000] +15:04:11 [ 4] [ 12] [000000000000] +15:04:11 [ 11] [ 6] [778484] +15:04:11 [ 12] [ 6] [150405] +15:04:11 [ 15] [ 4] [0320] +15:04:11 [ 18] [ 4] [6011] +15:04:11 [ 32] [ 6] [621354] +15:04:11 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:04:11 [ 37] [ 12] [507905335161] +15:04:11 [ 38] [ 6] [890713] +15:04:11 [ 39] [ 2] [00] +15:04:11 [ 41] [ 8] [05004700] +15:04:11 [ 49] [ 3] [418] +15:04:11 [ 54] [ 20] [0002418C000013929001] +15:04:11 ============================================================================ +15:04:11 Sending to : +15:04:11 ============================================================================ +15:04:11 + + +waiting on router queue for slot.... +15:04:13 ============================================================================ +15:04:13 Slot Id : <436> +15:04:13 Transaction Type : RESPONSE +15:04:13 Received From : +15:04:13 ============================================================================ +15:04:13 FNo. Len. Field Value +15:04:13 ============================================================================ +15:04:13 [ 1] [ 4] [0210] +15:04:13 [ 2] [ 16] [6688990040042481] +15:04:13 [ 3] [ 6] [300000] +15:04:13 [ 4] [ 12] [000000000000] +15:04:13 [ 11] [ 6] [778484] +15:04:13 [ 12] [ 6] [150405] +15:04:13 [ 15] [ 4] [0320] +15:04:13 [ 18] [ 4] [6011] +15:04:13 [ 32] [ 6] [621354] +15:04:13 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:04:13 [ 37] [ 12] [507905335161] +15:04:13 [ 38] [ 6] [890713] +15:04:13 [ 39] [ 2] [00] +15:04:13 [ 41] [ 8] [05004700] +15:04:13 [ 49] [ 3] [418] +15:04:13 [ 54] [ 20] [0002418C000013929001] +15:04:13 ============================================================================ +15:04:13 Calculate Source COMM Id = 0 +15:04:13 ============================================================================ +15:04:13 + + +waiting on router queue for slot.... +15:04:18 ============================================================================ +15:04:18 Slot Id : <423> +15:04:18 Transaction Type : REQUEST +15:04:18 Received From : +15:04:18 ============================================================================ +15:04:18 FNo. Len. Field Value +15:04:18 ============================================================================ +15:04:18 [ 1] [ 4] [0800] +15:04:18 [ 7] [ 10] [0320080325] +15:04:18 [ 11] [ 6] [156919] +15:04:18 [ 70] [ 3] [301] +15:04:18 ============================================================================ +15:04:18 + + +waiting on router queue for slot.... +15:04:18 Sending to : +15:04:18 ============================================================================ +15:04:18 ============================================================================ +15:04:18 Slot Id : <423> +15:04:18 Transaction Type : RESPONSE +15:04:18 Received From : +15:04:18 ============================================================================ +15:04:18 FNo. Len. Field Value +15:04:18 ============================================================================ +15:04:18 [ 1] [ 4] [0810] +15:04:18 [ 7] [ 10] [0320080325] +15:04:18 [ 11] [ 6] [156919] +15:04:18 [ 39] [ 2] [00] +15:04:18 [ 70] [ 3] [301] +15:04:18 ============================================================================ +15:04:18 Calculate Source COMM Id = 2 +15:04:18 ============================================================================ +15:04:18 + + +waiting on router queue for slot.... +15:04:26 ============================================================================ +15:04:26 Slot Id : <458> +15:04:26 Transaction Type : REQUEST +15:04:26 Received From : +15:04:26 ============================================================================ +15:04:26 FNo. Len. Field Value +15:04:26 ============================================================================ +15:04:26 [ 1] [ 4] [0800] +15:04:26 [ 7] [ 10] [0320221614] +15:04:26 [ 11] [ 6] [151614] +15:04:26 [ 37] [ 12] [57915151614] +15:04:26 [ 70] [ 3] [301] +15:04:26 ============================================================================ +15:04:26 + + +waiting on router queue for slot.... +15:04:26 Sending to : +15:04:26 ============================================================================ +15:04:26 ============================================================================ +15:04:26 Slot Id : <458> +15:04:26 Transaction Type : RESPONSE +15:04:26 Received From : +15:04:26 ============================================================================ +15:04:26 FNo. Len. Field Value +15:04:26 ============================================================================ +15:04:26 [ 1] [ 4] [0810] +15:04:26 [ 7] [ 10] [0320221614] +15:04:26 [ 11] [ 6] [151614] +15:04:26 [ 37] [ 12] [579151516140] +15:04:26 [ 39] [ 2] [00] +15:04:26 [ 70] [ 3] [810] +15:04:26 ============================================================================ +15:04:26 Calculate Source COMM Id = 6 +15:04:26 ============================================================================ +15:04:26 + + +waiting on router queue for slot.... +15:04:28 ============================================================================ +15:04:28 Slot Id : <439> +15:04:28 Transaction Type : REQUEST +15:04:28 Received From : +15:04:28 ============================================================================ +15:04:28 FNo. Len. Field Value +15:04:28 ============================================================================ +15:04:28 [ 1] [ 4] [0200] +15:04:28 [ 2] [ 16] [6213544001993598] +15:04:28 [ 3] [ 6] [011000] +15:04:28 [ 4] [ 12] [000010000000] +15:04:28 [ 7] [ 10] [0320150449] +15:04:28 [ 11] [ 6] [207681] +15:04:28 [ 12] [ 6] [150633] +15:04:28 [ 13] [ 4] [0320] +15:04:28 [ 14] [ 4] [4912] +15:04:28 [ 15] [ 4] [0320] +15:04:28 [ 18] [ 4] [6011] +15:04:28 [ 19] [ 3] [418] +15:04:28 [ 22] [ 3] [021] +15:04:28 [ 25] [ 2] [01] +15:04:28 [ 28] [ 9] [D00002000] +15:04:28 [ 32] [ 6] [198901] +15:04:28 [ 35] [ 32] [6213544001993598=491212019359063] +15:04:28 [ 37] [ 12] [507915207681] +15:04:28 [ 41] [ 8] [00002222] +15:04:28 [ 42] [ 15] [000000041002222] +15:04:28 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:04:28 [ 49] [ 3] [418] +15:04:28 [ 52] [ 16] [80969D51E7B73675] +15:04:28 ============================================================================ +15:04:28 + + +waiting on router queue for slot.... +15:04:28 Sending to : +15:04:28 ============================================================================ +15:04:28 Sending to : +15:04:28 ============================================================================ +15:04:29 ============================================================================ +15:04:29 Slot Id : <439> +15:04:29 Transaction Type : REQUEST +15:04:29 Received From : +15:04:29 ============================================================================ +15:04:29 FNo. Len. Field Value +15:04:29 ============================================================================ +15:04:29 [ 1] [ 4] [0200] +15:04:29 [ 2] [ 16] [6213544001993598] +15:04:29 [ 3] [ 6] [011000] +15:04:29 [ 4] [ 12] [000010000000] +15:04:29 [ 7] [ 10] [0320150449] +15:04:29 [ 11] [ 6] [207681] +15:04:29 [ 12] [ 6] [150633] +15:04:29 [ 13] [ 4] [0320] +15:04:29 [ 14] [ 4] [4912] +15:04:29 [ 15] [ 4] [0320] +15:04:29 [ 18] [ 4] [6011] +15:04:29 [ 19] [ 3] [418] +15:04:29 [ 22] [ 3] [021] +15:04:29 [ 25] [ 2] [01] +15:04:29 [ 28] [ 9] [D00002000] +15:04:29 [ 32] [ 6] [198901] +15:04:29 [ 35] [ 32] [6213544001993598=491212019359063] +15:04:29 [ 37] [ 12] [507915207681] +15:04:29 [ 41] [ 8] [00002222] +15:04:29 [ 42] [ 15] [000000041002222] +15:04:29 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:04:29 [ 49] [ 3] [418] +15:04:29 [ 52] [ 16] [80969D51E7B73675] +15:04:29 ============================================================================ +15:04:29 + + +waiting on router queue for slot.... +15:04:29 Sending to : +15:04:29 ============================================================================ +15:04:29 ============================================================================ +15:04:29 Slot Id : <439> +15:04:29 Transaction Type : REQUEST +15:04:29 Received From : +15:04:29 ============================================================================ +15:04:29 FNo. Len. Field Value +15:04:29 ============================================================================ +15:04:29 [ 1] [ 4] [0200] +15:04:29 [ 2] [ 16] [6213544001993598] +15:04:29 [ 3] [ 6] [011000] +15:04:29 [ 4] [ 12] [000010000000] +15:04:29 [ 7] [ 10] [0320150449] +15:04:29 [ 11] [ 6] [207681] +15:04:29 [ 12] [ 6] [150633] +15:04:29 [ 13] [ 4] [0320] +15:04:29 [ 14] [ 4] [4912] +15:04:29 [ 15] [ 4] [0320] +15:04:29 [ 18] [ 4] [6011] +15:04:29 [ 19] [ 3] [418] +15:04:29 [ 22] [ 3] [021] +15:04:29 [ 25] [ 2] [01] +15:04:29 [ 28] [ 9] [D00002000] +15:04:29 [ 32] [ 6] [198901] +15:04:29 [ 35] [ 32] [6213544001993598=491212019359063] +15:04:29 [ 37] [ 12] [507915207681] +15:04:29 [ 41] [ 8] [00002222] +15:04:29 [ 42] [ 15] [000000041002222] +15:04:29 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:04:29 [ 49] [ 3] [418] +15:04:29 [ 52] [ 16] [F1D2916751B978EE] +15:04:29 ============================================================================ +15:04:29 + + +waiting on router queue for slot.... +15:04:29 Sending to : <0> +15:04:29 ============================================================================ +15:04:29 ============================================================================ +15:04:29 Slot Id : <439> +15:04:29 Transaction Type : RESPONSE +15:04:29 Received From : +15:04:29 ============================================================================ +15:04:29 FNo. Len. Field Value +15:04:29 ============================================================================ +15:04:29 [ 1] [ 4] [0210] +15:04:29 [ 2] [ 16] [6213544001993598] +15:04:29 [ 3] [ 6] [011000] +15:04:29 [ 4] [ 12] [000010000000] +15:04:29 [ 7] [ 10] [0320150449] +15:04:29 [ 11] [ 6] [207681] +15:04:29 [ 12] [ 6] [150633] +15:04:29 [ 13] [ 4] [0320] +15:04:29 [ 15] [ 4] [0320] +15:04:29 [ 18] [ 4] [6011] +15:04:29 [ 19] [ 3] [418] +15:04:29 [ 32] [ 6] [198901] +15:04:29 [ 35] [ 32] [6213544001993598=491212019359063] +15:04:29 [ 37] [ 12] [507915207681] +15:04:29 [ 38] [ 6] [631620] +15:04:29 [ 39] [ 2] [00] +15:04:29 [ 41] [ 8] [00002222] +15:04:29 [ 49] [ 3] [418] +15:04:29 [ 54] [ 40] [1001418C0000357635981002418C000035763598] +15:04:29 ============================================================================ +15:04:29 Sending to : +15:04:29 ============================================================================ +15:04:29 + + +waiting on router queue for slot.... +15:04:31 ============================================================================ +15:04:31 Slot Id : <439> +15:04:31 Transaction Type : RESPONSE +15:04:31 Received From : +15:04:31 ============================================================================ +15:04:31 FNo. Len. Field Value +15:04:31 ============================================================================ +15:04:31 [ 1] [ 4] [0210] +15:04:31 [ 2] [ 16] [6213544001993598] +15:04:31 [ 3] [ 6] [011000] +15:04:31 [ 4] [ 12] [000010000000] +15:04:31 [ 7] [ 10] [0320150449] +15:04:31 [ 11] [ 6] [207681] +15:04:31 [ 12] [ 6] [150633] +15:04:31 [ 13] [ 4] [0320] +15:04:31 [ 15] [ 4] [0320] +15:04:31 [ 18] [ 4] [6011] +15:04:31 [ 19] [ 3] [418] +15:04:31 [ 32] [ 6] [198901] +15:04:31 [ 35] [ 32] [6213544001993598=491212019359063] +15:04:31 [ 37] [ 12] [507915207681] +15:04:31 [ 38] [ 6] [631620] +15:04:31 [ 39] [ 2] [00] +15:04:31 [ 41] [ 8] [00002222] +15:04:31 [ 49] [ 3] [418] +15:04:31 [ 54] [ 40] [1001418C0000357635981002418C000035763598] +15:04:31 ============================================================================ +15:04:31 Calculate Source COMM Id = 5 +15:04:31 ============================================================================ +15:04:31 + + +waiting on router queue for slot.... +15:04:33 ============================================================================ +15:04:33 Slot Id : <459> +15:04:33 Transaction Type : REQUEST +15:04:33 Received From : +15:04:33 ============================================================================ +15:04:33 FNo. Len. Field Value +15:04:33 ============================================================================ +15:04:33 [ 1] [ 4] [0800] +15:04:33 [ 7] [ 10] [0320080341] +15:04:33 [ 11] [ 6] [156920] +15:04:33 [ 70] [ 3] [301] +15:04:33 ============================================================================ +15:04:33 + + +waiting on router queue for slot.... +15:04:33 Sending to : +15:04:33 ============================================================================ +15:04:33 ============================================================================ +15:04:33 Slot Id : <459> +15:04:33 Transaction Type : RESPONSE +15:04:33 Received From : +15:04:33 ============================================================================ +15:04:33 FNo. Len. Field Value +15:04:33 ============================================================================ +15:04:33 [ 1] [ 4] [0810] +15:04:33 [ 7] [ 10] [0320080341] +15:04:33 [ 11] [ 6] [156920] +15:04:33 [ 39] [ 2] [00] +15:04:33 [ 70] [ 3] [301] +15:04:33 ============================================================================ +15:04:33 Calculate Source COMM Id = 2 +15:04:33 ============================================================================ +15:04:33 + + +waiting on router queue for slot.... +15:04:44 ============================================================================ +15:04:44 Slot Id : <452> +15:04:44 Transaction Type : REQUEST +15:04:44 Received From : +15:04:44 ============================================================================ +15:04:44 FNo. Len. Field Value +15:04:44 ============================================================================ +15:04:44 [ 1] [ 4] [0800] +15:04:44 [ 7] [ 10] [0320080351] +15:04:44 [ 11] [ 6] [156921] +15:04:44 [ 70] [ 3] [301] +15:04:44 ============================================================================ +15:04:44 + + +waiting on router queue for slot.... +15:04:44 Sending to : +15:04:44 ============================================================================ +15:04:44 ============================================================================ +15:04:44 Slot Id : <452> +15:04:44 Transaction Type : RESPONSE +15:04:44 Received From : +15:04:44 ============================================================================ +15:04:44 FNo. Len. Field Value +15:04:44 ============================================================================ +15:04:44 [ 1] [ 4] [0810] +15:04:44 [ 7] [ 10] [0320080351] +15:04:44 [ 11] [ 6] [156921] +15:04:44 [ 39] [ 2] [00] +15:04:44 [ 70] [ 3] [301] +15:04:44 ============================================================================ +15:04:44 Calculate Source COMM Id = 2 +15:04:44 ============================================================================ +15:04:44 + + +waiting on router queue for slot.... +15:04:47 ============================================================================ +15:04:47 Slot Id : <466> +15:04:47 Transaction Type : REQUEST +15:04:47 Received From : +15:04:47 ============================================================================ +15:04:47 FNo. Len. Field Value +15:04:47 ============================================================================ +15:04:47 [ 1] [ 4] [0200] +15:04:47 [ 2] [ 16] [6688990602636506] +15:04:47 [ 3] [ 6] [300000] +15:04:47 [ 4] [ 12] [000000000000] +15:04:47 [ 7] [ 10] [0320150443] +15:04:47 [ 11] [ 6] [778626] +15:04:47 [ 12] [ 6] [150443] +15:04:47 [ 13] [ 4] [0320] +15:04:47 [ 15] [ 4] [0320] +15:04:47 [ 18] [ 4] [6011] +15:04:47 [ 22] [ 3] [900] +15:04:47 [ 25] [ 2] [02] +15:04:47 [ 28] [ 9] [D00000000] +15:04:47 [ 32] [ 6] [621354] +15:04:47 [ 35] [ 37] [6688990602636506=43100061650672400000] +15:04:47 [ 37] [ 12] [507903008101] +15:04:47 [ 41] [ 8] [12002300] +15:04:47 [ 42] [ 15] [NATIVE ] +15:04:47 [ 43] [ 40] [PAKLAI UNIT01 Xayabouly LAO] +15:04:47 [ 49] [ 3] [418] +15:04:47 [ 52] [ 16] [54C46161EBC94BD2] +15:04:47 ============================================================================ +15:04:47 + + +waiting on router queue for slot.... +15:04:47 Sending to : +15:04:47 ============================================================================ +15:04:47 Sending to : +15:04:47 ============================================================================ +15:04:48 ============================================================================ +15:04:48 Slot Id : <466> +15:04:48 Transaction Type : REQUEST +15:04:48 Received From : +15:04:48 ============================================================================ +15:04:48 FNo. Len. Field Value +15:04:48 ============================================================================ +15:04:48 [ 1] [ 4] [0200] +15:04:48 [ 2] [ 16] [6688990602636506] +15:04:48 [ 3] [ 6] [300000] +15:04:48 [ 4] [ 12] [000000000000] +15:04:48 [ 7] [ 10] [0320150443] +15:04:48 [ 11] [ 6] [778626] +15:04:48 [ 12] [ 6] [150443] +15:04:48 [ 13] [ 4] [0320] +15:04:48 [ 15] [ 4] [0320] +15:04:48 [ 18] [ 4] [6011] +15:04:48 [ 22] [ 3] [900] +15:04:48 [ 25] [ 2] [02] +15:04:48 [ 28] [ 9] [D00000000] +15:04:48 [ 32] [ 6] [621354] +15:04:48 [ 35] [ 37] [6688990602636506=43100061650672400000] +15:04:48 [ 37] [ 12] [507903008101] +15:04:48 [ 41] [ 8] [12002300] +15:04:48 [ 42] [ 15] [NATIVE ] +15:04:48 [ 43] [ 40] [PAKLAI UNIT01 Xayabouly LAO] +15:04:48 [ 49] [ 3] [418] +15:04:48 [ 52] [ 16] [54C46161EBC94BD2] +15:04:48 ============================================================================ +15:04:48 + + +waiting on router queue for slot.... +15:04:48 Sending to : +15:04:48 ============================================================================ +15:04:48 ============================================================================ +15:04:48 Slot Id : <466> +15:04:48 Transaction Type : REQUEST +15:04:48 Received From : +15:04:48 ============================================================================ +15:04:48 FNo. Len. Field Value +15:04:48 ============================================================================ +15:04:48 [ 1] [ 4] [0200] +15:04:48 [ 2] [ 16] [6688990602636506] +15:04:48 [ 3] [ 6] [300000] +15:04:48 [ 4] [ 12] [000000000000] +15:04:48 [ 7] [ 10] [0320150443] +15:04:48 [ 11] [ 6] [778626] +15:04:48 [ 12] [ 6] [150443] +15:04:48 [ 13] [ 4] [0320] +15:04:48 [ 15] [ 4] [0320] +15:04:48 [ 18] [ 4] [6011] +15:04:48 [ 22] [ 3] [900] +15:04:48 [ 25] [ 2] [02] +15:04:48 [ 28] [ 9] [D00000000] +15:04:48 [ 32] [ 6] [621354] +15:04:48 [ 35] [ 37] [6688990602636506=43100061650672400000] +15:04:48 [ 37] [ 12] [507903008101] +15:04:48 [ 41] [ 8] [12002300] +15:04:48 [ 42] [ 15] [NATIVE ] +15:04:48 [ 43] [ 40] [PAKLAI UNIT01 Xayabouly LAO] +15:04:48 [ 49] [ 3] [418] +15:04:48 [ 52] [ 16] [235BE2B29D000851] +15:04:48 ============================================================================ +15:04:48 + + +waiting on router queue for slot.... +15:04:48 Sending to : <4> +15:04:48 ============================================================================ +15:04:48 ============================================================================ +15:04:48 Slot Id : <455> +15:04:48 Transaction Type : REQUEST +15:04:48 Received From : +15:04:48 ============================================================================ +15:04:48 FNo. Len. Field Value +15:04:48 ============================================================================ +15:04:48 [ 1] [ 4] [0800] +15:04:48 [ 2] [ 5] [02531] +15:04:48 [ 3] [ 6] [579158] +15:04:48 [ 7] [ 10] [0320080448] +15:04:48 [ 11] [ 6] [807287] +15:04:48 [ 15] [ 10] [0320080448] +15:04:48 [ 37] [ 11] [57915807287] +15:04:48 [ 70] [ 3] [001] +15:04:48 ============================================================================ +15:04:48 + + +waiting on router queue for slot.... +15:04:48 ============================================================================ +15:04:48 Slot Id : <455> +15:04:48 Transaction Type : RESPONSE +15:04:48 Received From : +15:04:48 ============================================================================ +15:04:48 FNo. Len. Field Value +15:04:48 ============================================================================ +15:04:48 [ 1] [ 4] [0810] +15:04:48 [ 7] [ 10] [0320080448] +15:04:48 [ 11] [ 6] [807287] +15:04:48 [ 15] [ 4] [0320] +15:04:48 [ 37] [ 12] [57915807287] +15:04:48 [ 39] [ 2] [00] +15:04:48 [ 70] [ 3] [001] +15:04:48 ============================================================================ +15:04:48 Sending to : +15:04:48 ============================================================================ +15:04:48 + + +waiting on router queue for slot.... +15:04:49 ============================================================================ +15:04:49 Slot Id : <466> +15:04:49 Transaction Type : RESPONSE +15:04:49 Received From : +15:04:49 ============================================================================ +15:04:49 FNo. Len. Field Value +15:04:49 ============================================================================ +15:04:49 [ 1] [ 4] [0210] +15:04:49 [ 2] [ 16] [6688990602636506] +15:04:49 [ 3] [ 6] [300000] +15:04:49 [ 4] [ 12] [000000000000] +15:04:49 [ 11] [ 6] [778626] +15:04:49 [ 12] [ 6] [150443] +15:04:49 [ 15] [ 4] [0320] +15:04:49 [ 18] [ 4] [6011] +15:04:49 [ 32] [ 6] [621354] +15:04:49 [ 35] [ 37] [6688990602636506=43100061650672400000] +15:04:49 [ 37] [ 12] [507903008101] +15:04:49 [ 38] [ 6] [321927] +15:04:49 [ 39] [ 2] [00] +15:04:49 [ 41] [ 8] [12002300] +15:04:49 [ 49] [ 3] [418] +15:04:49 [ 54] [ 20] [0002418C000266632416] +15:04:49 ============================================================================ +15:04:49 Sending to : +15:04:49 ============================================================================ +15:04:49 + + +waiting on router queue for slot.... +15:04:50 ============================================================================ +15:04:50 Slot Id : <466> +15:04:50 Transaction Type : RESPONSE +15:04:50 Received From : +15:04:50 ============================================================================ +15:04:50 FNo. Len. Field Value +15:04:50 ============================================================================ +15:04:50 [ 1] [ 4] [0210] +15:04:50 [ 2] [ 16] [6688990602636506] +15:04:50 [ 3] [ 6] [300000] +15:04:50 [ 4] [ 12] [000000000000] +15:04:50 [ 11] [ 6] [778626] +15:04:50 [ 12] [ 6] [150443] +15:04:50 [ 15] [ 4] [0320] +15:04:50 [ 18] [ 4] [6011] +15:04:50 [ 32] [ 6] [621354] +15:04:50 [ 35] [ 37] [6688990602636506=43100061650672400000] +15:04:50 [ 37] [ 12] [507903008101] +15:04:50 [ 38] [ 6] [321927] +15:04:50 [ 39] [ 2] [00] +15:04:50 [ 41] [ 8] [12002300] +15:04:50 [ 49] [ 3] [418] +15:04:50 [ 54] [ 20] [0002418C000266632416] +15:04:50 ============================================================================ +15:04:50 Calculate Source COMM Id = 0 +15:04:50 ============================================================================ +15:04:50 + + +waiting on router queue for slot.... +15:04:54 ============================================================================ +15:04:54 Slot Id : <468> +15:04:54 Transaction Type : REQUEST +15:04:54 Received From : +15:04:54 ============================================================================ +15:04:54 FNo. Len. Field Value +15:04:54 ============================================================================ +15:04:54 [ 1] [ 4] [0800] +15:04:54 [ 7] [ 10] [0320080402] +15:04:54 [ 11] [ 6] [156922] +15:04:54 [ 70] [ 3] [301] +15:04:54 ============================================================================ +15:04:54 + + +waiting on router queue for slot.... +15:04:54 Sending to : +15:04:54 ============================================================================ +15:04:54 ============================================================================ +15:04:54 Slot Id : <468> +15:04:54 Transaction Type : RESPONSE +15:04:54 Received From : +15:04:54 ============================================================================ +15:04:54 FNo. Len. Field Value +15:04:54 ============================================================================ +15:04:54 [ 1] [ 4] [0810] +15:04:54 [ 7] [ 10] [0320080402] +15:04:54 [ 11] [ 6] [156922] +15:04:54 [ 39] [ 2] [00] +15:04:54 [ 70] [ 3] [301] +15:04:54 ============================================================================ +15:04:54 Calculate Source COMM Id = 2 +15:04:54 ============================================================================ +15:04:54 + + +waiting on router queue for slot.... +15:04:55 ============================================================================ +15:04:55 Slot Id : <475> +15:04:55 Transaction Type : REQUEST +15:04:55 Received From : +15:04:55 ============================================================================ +15:04:55 FNo. Len. Field Value +15:04:55 ============================================================================ +15:04:55 [ 1] [ 4] [0800] +15:04:55 [ 7] [ 10] [0320081242] +15:04:55 [ 11] [ 6] [009996] +15:04:55 [ 37] [ 12] [57915009996] +15:04:55 [ 70] [ 3] [301] +15:04:55 ============================================================================ +15:04:55 + + +waiting on router queue for slot.... +15:04:55 Sending to : +15:04:55 ============================================================================ +15:04:55 ============================================================================ +15:04:55 Slot Id : <475> +15:04:55 Transaction Type : RESPONSE +15:04:55 Received From : +15:04:55 ============================================================================ +15:04:55 FNo. Len. Field Value +15:04:55 ============================================================================ +15:04:55 [ 1] [ 4] [0810] +15:04:55 [ 7] [ 10] [0320081242] +15:04:55 [ 11] [ 6] [009996] +15:04:55 [ 37] [ 12] [579150099960] +15:04:55 [ 39] [ 2] [00] +15:04:55 [ 70] [ 3] [810] +15:04:55 ============================================================================ +15:04:55 Calculate Source COMM Id = 1 +15:04:55 ============================================================================ +15:04:55 + + +waiting on router queue for slot.... +15:04:57 ============================================================================ +15:04:57 Slot Id : <449> +15:04:57 Transaction Type : REQUEST +15:04:57 Received From : +15:04:57 ============================================================================ +15:04:57 FNo. Len. Field Value +15:04:57 ============================================================================ +15:04:57 [ 1] [ 4] [0200] +15:04:57 [ 2] [ 16] [1808930200039634] +15:04:57 [ 3] [ 6] [011000] +15:04:57 [ 4] [ 12] [000100000000] +15:04:57 [ 7] [ 10] [0320150452] +15:04:57 [ 11] [ 6] [778657] +15:04:57 [ 12] [ 6] [150452] +15:04:57 [ 13] [ 4] [0320] +15:04:57 [ 15] [ 4] [0320] +15:04:57 [ 18] [ 4] [6011] +15:04:57 [ 22] [ 3] [900] +15:04:57 [ 25] [ 2] [02] +15:04:57 [ 28] [ 9] [D00002000] +15:04:57 [ 32] [ 6] [621354] +15:04:57 [ 35] [ 27] [1808930200039634=1803500048] +15:04:57 [ 37] [ 12] [507905213915] +15:04:57 [ 41] [ 8] [01013000] +15:04:57 [ 42] [ 15] [NATIVE ] +15:04:57 [ 43] [ 40] [Sokpaluang Electric Vientiane LAO] +15:04:57 [ 49] [ 3] [418] +15:04:57 [ 52] [ 16] [B5E708F5C809C30C] +15:04:57 ============================================================================ +15:04:57 + + +waiting on router queue for slot.... +15:04:57 Sending to : +15:04:57 ============================================================================ +15:04:57 Sending to : +15:04:57 ============================================================================ +15:04:57 ============================================================================ +15:04:57 Slot Id : <449> +15:04:57 Transaction Type : REQUEST +15:04:57 Received From : +15:04:57 ============================================================================ +15:04:57 FNo. Len. Field Value +15:04:57 ============================================================================ +15:04:57 [ 1] [ 4] [0200] +15:04:57 [ 2] [ 16] [1808930200039634] +15:04:57 [ 3] [ 6] [011000] +15:04:57 [ 4] [ 12] [000100000000] +15:04:57 [ 7] [ 10] [0320150452] +15:04:57 [ 11] [ 6] [778657] +15:04:57 [ 12] [ 6] [150452] +15:04:57 [ 13] [ 4] [0320] +15:04:57 [ 15] [ 4] [0320] +15:04:57 [ 18] [ 4] [6011] +15:04:57 [ 22] [ 3] [900] +15:04:57 [ 25] [ 2] [02] +15:04:57 [ 28] [ 9] [D00002000] +15:04:57 [ 32] [ 6] [621354] +15:04:57 [ 35] [ 27] [1808930200039634=1803500048] +15:04:57 [ 37] [ 12] [507905213915] +15:04:57 [ 41] [ 8] [01013000] +15:04:57 [ 42] [ 15] [NATIVE ] +15:04:57 [ 43] [ 40] [Sokpaluang Electric Vientiane LAO] +15:04:57 [ 49] [ 3] [418] +15:04:57 [ 52] [ 16] [B5E708F5C809C30C] +15:04:57 ============================================================================ +15:04:57 + + +waiting on router queue for slot.... +15:04:57 Sending to : +15:04:57 ============================================================================ +15:04:57 ============================================================================ +15:04:57 Slot Id : <449> +15:04:57 Transaction Type : REQUEST +15:04:57 Received From : +15:04:57 ============================================================================ +15:04:57 FNo. Len. Field Value +15:04:57 ============================================================================ +15:04:57 [ 1] [ 4] [0200] +15:04:57 [ 2] [ 16] [1808930200039634] +15:04:57 [ 3] [ 6] [011000] +15:04:57 [ 4] [ 12] [000100000000] +15:04:57 [ 7] [ 10] [0320150452] +15:04:57 [ 11] [ 6] [778657] +15:04:57 [ 12] [ 6] [150452] +15:04:57 [ 13] [ 4] [0320] +15:04:57 [ 15] [ 4] [0320] +15:04:57 [ 18] [ 4] [6011] +15:04:57 [ 22] [ 3] [900] +15:04:57 [ 25] [ 2] [02] +15:04:57 [ 28] [ 9] [D00002000] +15:04:57 [ 32] [ 6] [621354] +15:04:57 [ 35] [ 27] [1808930200039634=1803500048] +15:04:57 [ 37] [ 12] [507905213915] +15:04:57 [ 41] [ 8] [01013000] +15:04:57 [ 42] [ 15] [NATIVE ] +15:04:57 [ 43] [ 40] [Sokpaluang Electric Vientiane LAO] +15:04:57 [ 49] [ 3] [418] +15:04:57 [ 52] [ 16] [7DC972C339049A89] +15:04:57 ============================================================================ +15:04:57 + + +waiting on router queue for slot.... +15:04:57 Sending to : <2> +15:04:57 ============================================================================ +15:04:58 ============================================================================ +15:04:58 Slot Id : <440> +15:04:58 Transaction Type : REQUEST +15:04:58 Received From : +15:04:58 ============================================================================ +15:04:58 FNo. Len. Field Value +15:04:58 ============================================================================ +15:04:58 [ 1] [ 4] [0200] +15:04:58 [ 2] [ 16] [6213544001993598] +15:04:58 [ 3] [ 6] [011000] +15:04:58 [ 4] [ 12] [000010000000] +15:04:58 [ 7] [ 10] [0320150518] +15:04:58 [ 11] [ 6] [207689] +15:04:58 [ 12] [ 6] [150702] +15:04:58 [ 13] [ 4] [0320] +15:04:58 [ 14] [ 4] [4912] +15:04:58 [ 15] [ 4] [0320] +15:04:58 [ 18] [ 4] [6011] +15:04:58 [ 19] [ 3] [418] +15:04:58 [ 22] [ 3] [021] +15:04:58 [ 25] [ 2] [01] +15:04:58 [ 28] [ 9] [D00002000] +15:04:58 [ 32] [ 6] [198901] +15:04:58 [ 35] [ 32] [6213544001993598=491212019359063] +15:04:58 [ 37] [ 12] [507915207689] +15:04:58 [ 41] [ 8] [00002222] +15:04:58 [ 42] [ 15] [000000041002222] +15:04:58 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:04:58 [ 49] [ 3] [418] +15:04:58 [ 52] [ 16] [80969D51E7B73675] +15:04:58 ============================================================================ +15:04:58 + + +waiting on router queue for slot.... +15:04:58 Sending to : +15:04:58 ============================================================================ +15:04:58 Sending to : +15:04:58 ============================================================================ +15:04:58 ============================================================================ +15:04:58 Slot Id : <440> +15:04:58 Transaction Type : REQUEST +15:04:58 Received From : +15:04:58 ============================================================================ +15:04:58 FNo. Len. Field Value +15:04:58 ============================================================================ +15:04:58 [ 1] [ 4] [0200] +15:04:58 [ 2] [ 16] [6213544001993598] +15:04:58 [ 3] [ 6] [011000] +15:04:58 [ 4] [ 12] [000010000000] +15:04:58 [ 7] [ 10] [0320150518] +15:04:58 [ 11] [ 6] [207689] +15:04:58 [ 12] [ 6] [150702] +15:04:58 [ 13] [ 4] [0320] +15:04:58 [ 14] [ 4] [4912] +15:04:58 [ 15] [ 4] [0320] +15:04:58 [ 18] [ 4] [6011] +15:04:58 [ 19] [ 3] [418] +15:04:58 [ 22] [ 3] [021] +15:04:58 [ 25] [ 2] [01] +15:04:58 [ 28] [ 9] [D00002000] +15:04:58 [ 32] [ 6] [198901] +15:04:58 [ 35] [ 32] [6213544001993598=491212019359063] +15:04:58 [ 37] [ 12] [507915207689] +15:04:58 [ 41] [ 8] [00002222] +15:04:58 [ 42] [ 15] [000000041002222] +15:04:58 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:04:58 [ 49] [ 3] [418] +15:04:58 [ 52] [ 16] [80969D51E7B73675] +15:04:58 ============================================================================ +15:04:58 + + +waiting on router queue for slot.... +15:04:58 Sending to : +15:04:58 ============================================================================ +15:04:58 ============================================================================ +15:04:58 Slot Id : <440> +15:04:58 Transaction Type : REQUEST +15:04:58 Received From : +15:04:58 ============================================================================ +15:04:58 FNo. Len. Field Value +15:04:58 ============================================================================ +15:04:58 [ 1] [ 4] [0200] +15:04:58 [ 2] [ 16] [6213544001993598] +15:04:58 [ 3] [ 6] [011000] +15:04:58 [ 4] [ 12] [000010000000] +15:04:58 [ 7] [ 10] [0320150518] +15:04:58 [ 11] [ 6] [207689] +15:04:58 [ 12] [ 6] [150702] +15:04:58 [ 13] [ 4] [0320] +15:04:58 [ 14] [ 4] [4912] +15:04:58 [ 15] [ 4] [0320] +15:04:58 [ 18] [ 4] [6011] +15:04:58 [ 19] [ 3] [418] +15:04:58 [ 22] [ 3] [021] +15:04:58 [ 25] [ 2] [01] +15:04:58 [ 28] [ 9] [D00002000] +15:04:58 [ 32] [ 6] [198901] +15:04:58 [ 35] [ 32] [6213544001993598=491212019359063] +15:04:58 [ 37] [ 12] [507915207689] +15:04:58 [ 41] [ 8] [00002222] +15:04:58 [ 42] [ 15] [000000041002222] +15:04:58 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +15:04:58 [ 49] [ 3] [418] +15:04:58 [ 52] [ 16] [F1D2916751B978EE] +15:04:58 ============================================================================ +15:04:58 + + +waiting on router queue for slot.... +15:04:58 Sending to : <0> +15:04:58 ============================================================================ +15:04:59 ============================================================================ +15:04:59 Slot Id : <440> +15:04:59 Transaction Type : RESPONSE +15:04:59 Received From : +15:04:59 ============================================================================ +15:04:59 FNo. Len. Field Value +15:04:59 ============================================================================ +15:04:59 [ 1] [ 4] [0210] +15:04:59 [ 2] [ 16] [6213544001993598] +15:04:59 [ 3] [ 6] [011000] +15:04:59 [ 4] [ 12] [000010000000] +15:04:59 [ 7] [ 10] [0320150518] +15:04:59 [ 11] [ 6] [207689] +15:04:59 [ 12] [ 6] [150702] +15:04:59 [ 13] [ 4] [0320] +15:04:59 [ 15] [ 4] [0320] +15:04:59 [ 18] [ 4] [6011] +15:04:59 [ 19] [ 3] [418] +15:04:59 [ 32] [ 6] [198901] +15:04:59 [ 35] [ 32] [6213544001993598=491212019359063] +15:04:59 [ 37] [ 12] [507915207689] +15:04:59 [ 38] [ 6] [898319] +15:04:59 [ 39] [ 2] [00] +15:04:59 [ 41] [ 8] [00002222] +15:04:59 [ 49] [ 3] [418] +15:04:59 [ 54] [ 40] [1001418C0000255635981002418C000025563598] +15:04:59 ============================================================================ +15:04:59 Sending to : +15:04:59 ============================================================================ +15:04:59 + + +waiting on router queue for slot.... +15:05:00 ============================================================================ +15:05:00 Slot Id : <440> +15:05:00 Transaction Type : RESPONSE +15:05:00 Received From : +15:05:00 ============================================================================ +15:05:00 FNo. Len. Field Value +15:05:00 ============================================================================ +15:05:00 [ 1] [ 4] [0210] +15:05:00 [ 2] [ 16] [6213544001993598] +15:05:00 [ 3] [ 6] [011000] +15:05:00 [ 4] [ 12] [000010000000] +15:05:00 [ 7] [ 10] [0320150518] +15:05:00 [ 11] [ 6] [207689] +15:05:00 [ 12] [ 6] [150702] +15:05:00 [ 13] [ 4] [0320] +15:05:00 [ 15] [ 4] [0320] +15:05:00 [ 18] [ 4] [6011] +15:05:00 [ 19] [ 3] [418] +15:05:00 [ 32] [ 6] [198901] +15:05:00 [ 35] [ 32] [6213544001993598=491212019359063] +15:05:00 [ 37] [ 12] [507915207689] +15:05:00 [ 38] [ 6] [898319] +15:05:00 [ 39] [ 2] [00] +15:05:00 [ 41] [ 8] [00002222] +15:05:00 [ 49] [ 3] [418] +15:05:00 [ 54] [ 40] [1001418C0000255635981002418C000025563598] +15:05:00 ============================================================================ +15:05:00 Calculate Source COMM Id = 5 +15:05:00 ============================================================================ +15:05:00 + + +waiting on router queue for slot.... +15:05:01 ============================================================================ +15:05:01 Slot Id : <449> +15:05:01 Transaction Type : RESPONSE +15:05:01 Received From : +15:05:01 ============================================================================ +15:05:01 FNo. Len. Field Value +15:05:01 ============================================================================ +15:05:01 [ 1] [ 4] [0210] +15:05:01 [ 2] [ 16] [1808930200039634] +15:05:01 [ 3] [ 6] [011000] +15:05:01 [ 4] [ 12] [000100000000] +15:05:01 [ 6] [ 12] [000100000000] +15:05:01 [ 7] [ 10] [0320150452] +15:05:01 [ 11] [ 6] [778657] +15:05:01 [ 12] [ 6] [150452] +15:05:01 [ 13] [ 4] [0320] +15:05:01 [ 18] [ 4] [6011] +15:05:01 [ 19] [ 3] [418] +15:05:01 [ 22] [ 3] [021] +15:05:01 [ 32] [ 6] [621354] +15:05:01 [ 35] [ 27] [1808930200039634=1803500048] +15:05:01 [ 37] [ 12] [507905213915] +15:05:01 [ 38] [ 6] [778657] +15:05:01 [ 39] [ 2] [51] +15:05:01 [ 41] [ 8] [01013000] +15:05:01 [ 49] [ 3] [418] +15:05:01 [ 52] [ 16] [7DC972C339049A89] +15:05:01 ============================================================================ +15:05:01 Sending to : +15:05:01 ============================================================================ +15:05:01 + + +waiting on router queue for slot.... +15:05:02 ============================================================================ +15:05:02 Slot Id : <449> +15:05:02 Transaction Type : RESPONSE +15:05:02 Received From : +15:05:02 ============================================================================ +15:05:02 FNo. Len. Field Value +15:05:02 ============================================================================ +15:05:02 [ 1] [ 4] [0210] +15:05:02 [ 2] [ 16] [1808930200039634] +15:05:02 [ 3] [ 6] [011000] +15:05:02 [ 4] [ 12] [000100000000] +15:05:02 [ 6] [ 12] [000100000000] +15:05:02 [ 7] [ 10] [0320150452] +15:05:02 [ 11] [ 6] [778657] +15:05:02 [ 12] [ 6] [150452] +15:05:02 [ 13] [ 4] [0320] +15:05:02 [ 18] [ 4] [6011] +15:05:02 [ 19] [ 3] [418] +15:05:02 [ 22] [ 3] [021] +15:05:02 [ 32] [ 6] [621354] +15:05:02 [ 35] [ 27] [1808930200039634=1803500048] +15:05:02 [ 37] [ 12] [507905213915] +15:05:02 [ 38] [ 6] [778657] +15:05:02 [ 39] [ 2] [51] +15:05:02 [ 41] [ 8] [01013000] +15:05:02 [ 49] [ 3] [418] +15:05:02 [ 52] [ 16] [7DC972C339049A89] +15:05:02 ============================================================================ +15:05:02 Calculate Source COMM Id = 0 +15:05:02 ============================================================================ +15:05:02 + + +waiting on router queue for slot.... +15:05:11 ============================================================================ +15:05:11 Slot Id : <482> +15:05:11 Transaction Type : REQUEST +15:05:11 Received From : +15:05:11 ============================================================================ +15:05:11 FNo. Len. Field Value +15:05:11 ============================================================================ +15:05:11 [ 1] [ 4] [0800] +15:05:11 [ 7] [ 10] [0320080418] +15:05:11 [ 11] [ 6] [156923] +15:05:11 [ 70] [ 3] [301] +15:05:11 ============================================================================ +15:05:11 + + +waiting on router queue for slot.... +15:05:11 Sending to : +15:05:11 ============================================================================ +15:05:11 ============================================================================ +15:05:11 Slot Id : <482> +15:05:11 Transaction Type : RESPONSE +15:05:11 Received From : +15:05:11 ============================================================================ +15:05:11 FNo. Len. Field Value +15:05:11 ============================================================================ +15:05:11 [ 1] [ 4] [0810] +15:05:11 [ 7] [ 10] [0320080418] +15:05:11 [ 11] [ 6] [156923] +15:05:11 [ 39] [ 2] [00] +15:05:11 [ 70] [ 3] [301] +15:05:11 ============================================================================ +15:05:11 Calculate Source COMM Id = 2 +15:05:11 ============================================================================ +15:05:11 + + +waiting on router queue for slot.... +15:05:17 ============================================================================ +15:05:17 Slot Id : <460> +15:05:17 Transaction Type : REQUEST +15:05:17 Received From : +15:05:17 ============================================================================ +15:05:17 FNo. Len. Field Value +15:05:17 ============================================================================ +15:05:17 [ 1] [ 4] [0200] +15:05:17 [ 2] [ 16] [6688990040042481] +15:05:17 [ 3] [ 6] [010000] +15:05:17 [ 4] [ 12] [000012000000] +15:05:17 [ 7] [ 10] [0320150512] +15:05:17 [ 11] [ 6] [778737] +15:05:17 [ 12] [ 6] [150512] +15:05:17 [ 13] [ 4] [0320] +15:05:17 [ 15] [ 4] [0320] +15:05:17 [ 18] [ 4] [6011] +15:05:17 [ 22] [ 3] [900] +15:05:17 [ 25] [ 2] [02] +15:05:17 [ 28] [ 9] [D00002000] +15:05:17 [ 32] [ 6] [621354] +15:05:17 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:05:17 [ 37] [ 12] [507905335163] +15:05:17 [ 41] [ 8] [05004700] +15:05:17 [ 42] [ 15] [NATIVE ] +15:05:17 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:05:17 [ 49] [ 3] [418] +15:05:17 [ 52] [ 16] [E8E0C48DE95763E3] +15:05:17 ============================================================================ +15:05:17 + + +waiting on router queue for slot.... +15:05:17 Sending to : +15:05:17 ============================================================================ +15:05:17 Sending to : +15:05:17 ============================================================================ +15:05:17 ============================================================================ +15:05:17 Slot Id : <460> +15:05:17 Transaction Type : REQUEST +15:05:17 Received From : +15:05:17 ============================================================================ +15:05:17 FNo. Len. Field Value +15:05:17 ============================================================================ +15:05:17 [ 1] [ 4] [0200] +15:05:17 [ 2] [ 16] [6688990040042481] +15:05:17 [ 3] [ 6] [010000] +15:05:17 [ 4] [ 12] [000012000000] +15:05:17 [ 7] [ 10] [0320150512] +15:05:17 [ 11] [ 6] [778737] +15:05:17 [ 12] [ 6] [150512] +15:05:17 [ 13] [ 4] [0320] +15:05:17 [ 15] [ 4] [0320] +15:05:17 [ 18] [ 4] [6011] +15:05:17 [ 22] [ 3] [900] +15:05:17 [ 25] [ 2] [02] +15:05:17 [ 28] [ 9] [D00002000] +15:05:17 [ 32] [ 6] [621354] +15:05:17 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:05:17 [ 37] [ 12] [507905335163] +15:05:17 [ 41] [ 8] [05004700] +15:05:17 [ 42] [ 15] [NATIVE ] +15:05:17 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:05:17 [ 49] [ 3] [418] +15:05:17 [ 52] [ 16] [E8E0C48DE95763E3] +15:05:17 ============================================================================ +15:05:17 + + +waiting on router queue for slot.... +15:05:17 Sending to : +15:05:17 ============================================================================ +15:05:17 ============================================================================ +15:05:17 Slot Id : <460> +15:05:17 Transaction Type : REQUEST +15:05:17 Received From : +15:05:17 ============================================================================ +15:05:17 FNo. Len. Field Value +15:05:17 ============================================================================ +15:05:17 [ 1] [ 4] [0200] +15:05:17 [ 2] [ 16] [6688990040042481] +15:05:17 [ 3] [ 6] [010000] +15:05:17 [ 4] [ 12] [000012000000] +15:05:17 [ 7] [ 10] [0320150512] +15:05:17 [ 11] [ 6] [778737] +15:05:17 [ 12] [ 6] [150512] +15:05:17 [ 13] [ 4] [0320] +15:05:17 [ 15] [ 4] [0320] +15:05:17 [ 18] [ 4] [6011] +15:05:17 [ 22] [ 3] [900] +15:05:17 [ 25] [ 2] [02] +15:05:17 [ 28] [ 9] [D00002000] +15:05:17 [ 32] [ 6] [621354] +15:05:17 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:05:17 [ 37] [ 12] [507905335163] +15:05:17 [ 41] [ 8] [05004700] +15:05:17 [ 42] [ 15] [NATIVE ] +15:05:17 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:05:17 [ 49] [ 3] [418] +15:05:17 [ 52] [ 16] [360D72F66C5B5754] +15:05:17 ============================================================================ +15:05:17 + + +waiting on router queue for slot.... +15:05:17 Sending to : <4> +15:05:17 ============================================================================ +15:05:17 ============================================================================ +15:05:17 Slot Id : <460> +15:05:17 Transaction Type : RESPONSE +15:05:17 Received From : +15:05:17 ============================================================================ +15:05:17 FNo. Len. Field Value +15:05:17 ============================================================================ +15:05:17 [ 1] [ 4] [0210] +15:05:17 [ 2] [ 16] [6688990040042481] +15:05:17 [ 3] [ 6] [010000] +15:05:17 [ 4] [ 12] [000012000000] +15:05:17 [ 11] [ 6] [778737] +15:05:17 [ 12] [ 6] [150512] +15:05:17 [ 15] [ 4] [0320] +15:05:17 [ 18] [ 4] [6011] +15:05:17 [ 32] [ 6] [621354] +15:05:17 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:05:17 [ 37] [ 12] [507905335163] +15:05:17 [ 39] [ 2] [51] +15:05:17 [ 41] [ 8] [05004700] +15:05:17 [ 49] [ 3] [418] +15:05:17 [ 54] [ 0] [] +15:05:17 ============================================================================ +15:05:17 Sending to : +15:05:17 ============================================================================ +15:05:17 + + +waiting on router queue for slot.... +15:05:19 ============================================================================ +15:05:19 Slot Id : <460> +15:05:19 Transaction Type : RESPONSE +15:05:19 Received From : +15:05:19 ============================================================================ +15:05:19 FNo. Len. Field Value +15:05:19 ============================================================================ +15:05:19 [ 1] [ 4] [0210] +15:05:19 [ 2] [ 16] [6688990040042481] +15:05:19 [ 3] [ 6] [010000] +15:05:19 [ 4] [ 12] [000012000000] +15:05:19 [ 11] [ 6] [778737] +15:05:19 [ 12] [ 6] [150512] +15:05:19 [ 15] [ 4] [0320] +15:05:19 [ 18] [ 4] [6011] +15:05:19 [ 32] [ 6] [621354] +15:05:19 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:05:19 [ 37] [ 12] [507905335163] +15:05:19 [ 39] [ 2] [51] +15:05:19 [ 41] [ 8] [05004700] +15:05:19 [ 49] [ 3] [418] +15:05:19 [ 54] [ 0] [] +15:05:19 ============================================================================ +15:05:19 Calculate Source COMM Id = 0 +15:05:19 ============================================================================ +15:05:19 + + +waiting on router queue for slot.... +15:05:26 ============================================================================ +15:05:26 Slot Id : <432> +15:05:26 Transaction Type : REQUEST +15:05:26 Received From : +15:05:26 ============================================================================ +15:05:26 FNo. Len. Field Value +15:05:26 ============================================================================ +15:05:26 [ 1] [ 4] [0800] +15:05:26 [ 7] [ 10] [0320080434] +15:05:26 [ 11] [ 6] [156924] +15:05:26 [ 70] [ 3] [301] +15:05:26 ============================================================================ +15:05:26 + + +waiting on router queue for slot.... +15:05:26 Sending to : +15:05:26 ============================================================================ +15:05:26 ============================================================================ +15:05:26 Slot Id : <432> +15:05:26 Transaction Type : RESPONSE +15:05:26 Received From : +15:05:26 ============================================================================ +15:05:26 FNo. Len. Field Value +15:05:26 ============================================================================ +15:05:26 [ 1] [ 4] [0810] +15:05:26 [ 7] [ 10] [0320080434] +15:05:26 [ 11] [ 6] [156924] +15:05:26 [ 39] [ 2] [00] +15:05:26 [ 70] [ 3] [301] +15:05:26 ============================================================================ +15:05:26 Calculate Source COMM Id = 2 +15:05:26 ============================================================================ +15:05:26 + + +waiting on router queue for slot.... +15:05:31 ============================================================================ +15:05:31 Slot Id : <495> +15:05:31 Transaction Type : REQUEST +15:05:31 Received From : +15:05:31 ============================================================================ +15:05:31 FNo. Len. Field Value +15:05:31 ============================================================================ +15:05:31 [ 1] [ 4] [0800] +15:05:31 [ 7] [ 10] [0320221719] +15:05:31 [ 11] [ 6] [151719] +15:05:31 [ 37] [ 12] [57915151719] +15:05:31 [ 70] [ 3] [301] +15:05:31 ============================================================================ +15:05:31 + + +waiting on router queue for slot.... +15:05:31 Sending to : +15:05:31 ============================================================================ +15:05:31 ============================================================================ +15:05:31 Slot Id : <495> +15:05:31 Transaction Type : RESPONSE +15:05:31 Received From : +15:05:31 ============================================================================ +15:05:31 FNo. Len. Field Value +15:05:31 ============================================================================ +15:05:31 [ 1] [ 4] [0810] +15:05:31 [ 7] [ 10] [0320221719] +15:05:31 [ 11] [ 6] [151719] +15:05:31 [ 37] [ 12] [579151517190] +15:05:31 [ 39] [ 2] [00] +15:05:31 [ 70] [ 3] [810] +15:05:31 ============================================================================ +15:05:31 Calculate Source COMM Id = 6 +15:05:31 ============================================================================ +15:05:31 + + +waiting on router queue for slot.... +15:05:33 ============================================================================ +15:05:33 Slot Id : <453> +15:05:33 Transaction Type : REQUEST +15:05:33 Received From : +15:05:33 ============================================================================ +15:05:33 FNo. Len. Field Value +15:05:33 ============================================================================ +15:05:33 [ 1] [ 4] [0200] +15:05:33 [ 2] [ 16] [6213545001033715] +15:05:33 [ 3] [ 6] [010000] +15:05:33 [ 4] [ 12] [000020000000] +15:05:33 [ 7] [ 10] [0320150323] +15:05:33 [ 11] [ 6] [949448] +15:05:33 [ 12] [ 6] [150323] +15:05:33 [ 13] [ 4] [0320] +15:05:33 [ 15] [ 4] [0320] +15:05:33 [ 18] [ 4] [6011] +15:05:33 [ 19] [ 3] [418] +15:05:33 [ 22] [ 3] [021] +15:05:33 [ 25] [ 2] [01] +15:05:33 [ 28] [ 9] [D00002000] +15:05:33 [ 32] [ 6] [668899] +15:05:33 [ 35] [ 32] [6213545001033715=491212013371793] +15:05:33 [ 37] [ 12] [507901416649] +15:05:33 [ 41] [ 8] [03011002] +15:05:33 [ 42] [ 15] [APT ] +15:05:33 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +15:05:33 [ 49] [ 3] [418] +15:05:33 [ 52] [ 16] [2455B0F2B382ED38] +15:05:33 ============================================================================ +15:05:33 + + +waiting on router queue for slot.... +15:05:33 Sending to : +15:05:33 ============================================================================ +15:05:33 Sending to : +15:05:33 ============================================================================ +15:05:33 ============================================================================ +15:05:33 Slot Id : <453> +15:05:33 Transaction Type : REQUEST +15:05:33 Received From : +15:05:33 ============================================================================ +15:05:33 FNo. Len. Field Value +15:05:33 ============================================================================ +15:05:33 [ 1] [ 4] [0200] +15:05:33 [ 2] [ 16] [6213545001033715] +15:05:33 [ 3] [ 6] [010000] +15:05:33 [ 4] [ 12] [000020000000] +15:05:33 [ 7] [ 10] [0320150323] +15:05:33 [ 11] [ 6] [949448] +15:05:33 [ 12] [ 6] [150323] +15:05:33 [ 13] [ 4] [0320] +15:05:33 [ 15] [ 4] [0320] +15:05:33 [ 18] [ 4] [6011] +15:05:33 [ 19] [ 3] [418] +15:05:33 [ 22] [ 3] [021] +15:05:33 [ 25] [ 2] [01] +15:05:33 [ 28] [ 9] [D00002000] +15:05:33 [ 32] [ 6] [668899] +15:05:33 [ 35] [ 32] [6213545001033715=491212013371793] +15:05:33 [ 37] [ 12] [507901416649] +15:05:33 [ 41] [ 8] [03011002] +15:05:33 [ 42] [ 15] [APT ] +15:05:33 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +15:05:33 [ 49] [ 3] [418] +15:05:33 [ 52] [ 16] [2455B0F2B382ED38] +15:05:33 ============================================================================ +15:05:33 + + +waiting on router queue for slot.... +15:05:33 Sending to : +15:05:33 ============================================================================ +15:05:33 ============================================================================ +15:05:33 Slot Id : <453> +15:05:33 Transaction Type : REQUEST +15:05:33 Received From : +15:05:33 ============================================================================ +15:05:33 FNo. Len. Field Value +15:05:33 ============================================================================ +15:05:33 [ 1] [ 4] [0200] +15:05:33 [ 2] [ 16] [6213545001033715] +15:05:33 [ 3] [ 6] [010000] +15:05:33 [ 4] [ 12] [000020000000] +15:05:33 [ 7] [ 10] [0320150323] +15:05:33 [ 11] [ 6] [949448] +15:05:33 [ 12] [ 6] [150323] +15:05:33 [ 13] [ 4] [0320] +15:05:33 [ 15] [ 4] [0320] +15:05:33 [ 18] [ 4] [6011] +15:05:33 [ 19] [ 3] [418] +15:05:33 [ 22] [ 3] [021] +15:05:33 [ 25] [ 2] [01] +15:05:33 [ 28] [ 9] [D00002000] +15:05:33 [ 32] [ 6] [668899] +15:05:33 [ 35] [ 32] [6213545001033715=491212013371793] +15:05:33 [ 37] [ 12] [507901416649] +15:05:33 [ 41] [ 8] [03011002] +15:05:33 [ 42] [ 15] [APT ] +15:05:33 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +15:05:33 [ 49] [ 3] [418] +15:05:33 [ 52] [ 16] [E32920494F5A7119] +15:05:33 ============================================================================ +15:05:33 + + +waiting on router queue for slot.... +15:05:33 Sending to : <0> +15:05:33 ============================================================================ +15:05:33 ============================================================================ +15:05:33 Slot Id : <488> +15:05:33 Transaction Type : REQUEST +15:05:33 Received From : +15:05:33 ============================================================================ +15:05:33 FNo. Len. Field Value +15:05:33 ============================================================================ +15:05:33 [ 1] [ 4] [0200] +15:05:33 [ 2] [ 16] [1808931300012745] +15:05:33 [ 3] [ 6] [011000] +15:05:33 [ 4] [ 12] [000100000000] +15:05:33 [ 7] [ 10] [0320150529] +15:05:33 [ 11] [ 6] [778796] +15:05:33 [ 12] [ 6] [150529] +15:05:33 [ 13] [ 4] [0320] +15:05:33 [ 15] [ 4] [0320] +15:05:33 [ 18] [ 4] [6011] +15:05:33 [ 22] [ 3] [900] +15:05:33 [ 25] [ 2] [02] +15:05:33 [ 28] [ 9] [D00002000] +15:05:33 [ 32] [ 6] [621354] +15:05:33 [ 35] [ 27] [1808931300012745=1803500076] +15:05:33 [ 37] [ 12] [507904989318] +15:05:33 [ 41] [ 8] [01012300] +15:05:33 [ 42] [ 15] [NATIVE ] +15:05:33 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:05:33 [ 49] [ 3] [418] +15:05:33 [ 52] [ 16] [E083E171B1C17587] +15:05:33 ============================================================================ +15:05:33 + + +waiting on router queue for slot.... +15:05:33 Sending to : +15:05:33 ============================================================================ +15:05:33 Sending to : +15:05:33 ============================================================================ +15:05:34 ============================================================================ +15:05:34 Slot Id : <453> +15:05:34 Transaction Type : RESPONSE +15:05:34 Received From : +15:05:34 ============================================================================ +15:05:34 FNo. Len. Field Value +15:05:34 ============================================================================ +15:05:34 [ 1] [ 4] [0210] +15:05:34 [ 2] [ 16] [6213545001033715] +15:05:34 [ 3] [ 6] [010000] +15:05:34 [ 4] [ 12] [000020000000] +15:05:34 [ 7] [ 10] [0320150323] +15:05:34 [ 11] [ 6] [949448] +15:05:34 [ 12] [ 6] [150323] +15:05:34 [ 13] [ 4] [0320] +15:05:34 [ 15] [ 4] [0320] +15:05:34 [ 18] [ 4] [6011] +15:05:34 [ 19] [ 3] [418] +15:05:34 [ 32] [ 6] [668899] +15:05:34 [ 35] [ 32] [6213545001033715=491212013371793] +15:05:34 [ 37] [ 12] [507901416649] +15:05:34 [ 38] [ 6] [862399] +15:05:34 [ 39] [ 2] [00] +15:05:34 [ 41] [ 8] [03011002] +15:05:34 [ 49] [ 3] [418] +15:05:34 [ 54] [ 40] [0001418C0000298870200002418C000029887020] +15:05:34 ============================================================================ +15:05:34 Sending to : +15:05:34 ============================================================================ +15:05:34 + + +waiting on router queue for slot.... +15:05:34 ============================================================================ +15:05:34 Slot Id : <488> +15:05:34 Transaction Type : REQUEST +15:05:34 Received From : +15:05:34 ============================================================================ +15:05:34 FNo. Len. Field Value +15:05:34 ============================================================================ +15:05:34 [ 1] [ 4] [0200] +15:05:34 [ 2] [ 16] [1808931300012745] +15:05:34 [ 3] [ 6] [011000] +15:05:34 [ 4] [ 12] [000100000000] +15:05:34 [ 7] [ 10] [0320150529] +15:05:34 [ 11] [ 6] [778796] +15:05:34 [ 12] [ 6] [150529] +15:05:34 [ 13] [ 4] [0320] +15:05:34 [ 15] [ 4] [0320] +15:05:34 [ 18] [ 4] [6011] +15:05:34 [ 22] [ 3] [900] +15:05:34 [ 25] [ 2] [02] +15:05:34 [ 28] [ 9] [D00002000] +15:05:34 [ 32] [ 6] [621354] +15:05:34 [ 35] [ 27] [1808931300012745=1803500076] +15:05:34 [ 37] [ 12] [507904989318] +15:05:34 [ 41] [ 8] [01012300] +15:05:34 [ 42] [ 15] [NATIVE ] +15:05:34 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:05:34 [ 49] [ 3] [418] +15:05:34 [ 52] [ 16] [E083E171B1C17587] +15:05:34 ============================================================================ +15:05:34 + + +waiting on router queue for slot.... +15:05:34 Sending to : +15:05:34 ============================================================================ +15:05:34 ============================================================================ +15:05:34 Slot Id : <488> +15:05:34 Transaction Type : REQUEST +15:05:34 Received From : +15:05:34 ============================================================================ +15:05:34 FNo. Len. Field Value +15:05:34 ============================================================================ +15:05:34 [ 1] [ 4] [0200] +15:05:34 [ 2] [ 16] [1808931300012745] +15:05:34 [ 3] [ 6] [011000] +15:05:34 [ 4] [ 12] [000100000000] +15:05:34 [ 7] [ 10] [0320150529] +15:05:34 [ 11] [ 6] [778796] +15:05:34 [ 12] [ 6] [150529] +15:05:34 [ 13] [ 4] [0320] +15:05:34 [ 15] [ 4] [0320] +15:05:34 [ 18] [ 4] [6011] +15:05:34 [ 22] [ 3] [900] +15:05:34 [ 25] [ 2] [02] +15:05:34 [ 28] [ 9] [D00002000] +15:05:34 [ 32] [ 6] [621354] +15:05:34 [ 35] [ 27] [1808931300012745=1803500076] +15:05:34 [ 37] [ 12] [507904989318] +15:05:34 [ 41] [ 8] [01012300] +15:05:34 [ 42] [ 15] [NATIVE ] +15:05:34 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:05:34 [ 49] [ 3] [418] +15:05:34 [ 52] [ 16] [1A686361C36EB197] +15:05:34 ============================================================================ +15:05:34 + + +waiting on router queue for slot.... +15:05:34 Sending to : <2> +15:05:34 ============================================================================ +15:05:35 ============================================================================ +15:05:35 Slot Id : <453> +15:05:35 Transaction Type : RESPONSE +15:05:35 Received From : +15:05:35 ============================================================================ +15:05:35 FNo. Len. Field Value +15:05:35 ============================================================================ +15:05:35 [ 1] [ 4] [0210] +15:05:35 [ 2] [ 16] [6213545001033715] +15:05:35 [ 3] [ 6] [010000] +15:05:35 [ 4] [ 12] [000020000000] +15:05:35 [ 7] [ 10] [0320150323] +15:05:35 [ 11] [ 6] [949448] +15:05:35 [ 12] [ 6] [150323] +15:05:35 [ 13] [ 4] [0320] +15:05:35 [ 15] [ 4] [0320] +15:05:35 [ 18] [ 4] [6011] +15:05:35 [ 19] [ 3] [418] +15:05:35 [ 32] [ 6] [668899] +15:05:35 [ 35] [ 32] [6213545001033715=491212013371793] +15:05:35 [ 37] [ 12] [507901416649] +15:05:35 [ 38] [ 6] [862399] +15:05:35 [ 39] [ 2] [00] +15:05:35 [ 41] [ 8] [03011002] +15:05:35 [ 49] [ 3] [418] +15:05:35 [ 54] [ 40] [0001418C0000298870200002418C000029887020] +15:05:35 ============================================================================ +15:05:35 Calculate Source COMM Id = 4 +15:05:35 ============================================================================ +15:05:35 + + +waiting on router queue for slot.... +15:05:35 ============================================================================ +15:05:35 Slot Id : <470> +15:05:35 Transaction Type : REQUEST +15:05:35 Received From : +15:05:35 ============================================================================ +15:05:35 FNo. Len. Field Value +15:05:35 ============================================================================ +15:05:35 [ 1] [ 4] [0200] +15:05:35 [ 2] [ 16] [1808930200039634] +15:05:35 [ 3] [ 6] [301000] +15:05:35 [ 4] [ 12] [000000000000] +15:05:35 [ 7] [ 10] [0320150531] +15:05:35 [ 11] [ 6] [778802] +15:05:35 [ 12] [ 6] [150531] +15:05:35 [ 13] [ 4] [0320] +15:05:35 [ 15] [ 4] [0320] +15:05:35 [ 18] [ 4] [6011] +15:05:35 [ 22] [ 3] [900] +15:05:35 [ 25] [ 2] [02] +15:05:35 [ 28] [ 9] [D00000000] +15:05:35 [ 32] [ 6] [621354] +15:05:35 [ 35] [ 27] [1808930200039634=1803500048] +15:05:35 [ 37] [ 12] [507905213916] +15:05:35 [ 41] [ 8] [01013000] +15:05:35 [ 42] [ 15] [NATIVE ] +15:05:35 [ 43] [ 40] [Sokpaluang Electric Vientiane LAO] +15:05:35 [ 49] [ 3] [418] +15:05:35 [ 52] [ 16] [B5E708F5C809C30C] +15:05:35 ============================================================================ +15:05:35 + + +waiting on router queue for slot.... +15:05:35 Sending to : +15:05:35 ============================================================================ +15:05:35 Sending to : +15:05:35 ============================================================================ +15:05:36 ============================================================================ +15:05:36 Slot Id : <470> +15:05:36 Transaction Type : REQUEST +15:05:36 Received From : +15:05:36 ============================================================================ +15:05:36 FNo. Len. Field Value +15:05:36 ============================================================================ +15:05:36 [ 1] [ 4] [0200] +15:05:36 [ 2] [ 16] [1808930200039634] +15:05:36 [ 3] [ 6] [301000] +15:05:36 [ 4] [ 12] [000000000000] +15:05:36 [ 7] [ 10] [0320150531] +15:05:36 [ 11] [ 6] [778802] +15:05:36 [ 12] [ 6] [150531] +15:05:36 [ 13] [ 4] [0320] +15:05:36 [ 15] [ 4] [0320] +15:05:36 [ 18] [ 4] [6011] +15:05:36 [ 22] [ 3] [900] +15:05:36 [ 25] [ 2] [02] +15:05:36 [ 28] [ 9] [D00000000] +15:05:36 [ 32] [ 6] [621354] +15:05:36 [ 35] [ 27] [1808930200039634=1803500048] +15:05:36 [ 37] [ 12] [507905213916] +15:05:36 [ 41] [ 8] [01013000] +15:05:36 [ 42] [ 15] [NATIVE ] +15:05:36 [ 43] [ 40] [Sokpaluang Electric Vientiane LAO] +15:05:36 [ 49] [ 3] [418] +15:05:36 [ 52] [ 16] [B5E708F5C809C30C] +15:05:36 ============================================================================ +15:05:36 + + +waiting on router queue for slot.... +15:05:36 Sending to : +15:05:36 ============================================================================ +15:05:36 ============================================================================ +15:05:36 Slot Id : <470> +15:05:36 Transaction Type : REQUEST +15:05:36 Received From : +15:05:36 ============================================================================ +15:05:36 FNo. Len. Field Value +15:05:36 ============================================================================ +15:05:36 [ 1] [ 4] [0200] +15:05:36 [ 2] [ 16] [1808930200039634] +15:05:36 [ 3] [ 6] [301000] +15:05:36 [ 4] [ 12] [000000000000] +15:05:36 [ 7] [ 10] [0320150531] +15:05:36 [ 11] [ 6] [778802] +15:05:36 [ 12] [ 6] [150531] +15:05:36 [ 13] [ 4] [0320] +15:05:36 [ 15] [ 4] [0320] +15:05:36 [ 18] [ 4] [6011] +15:05:36 [ 22] [ 3] [900] +15:05:36 [ 25] [ 2] [02] +15:05:36 [ 28] [ 9] [D00000000] +15:05:36 [ 32] [ 6] [621354] +15:05:36 [ 35] [ 27] [1808930200039634=1803500048] +15:05:36 [ 37] [ 12] [507905213916] +15:05:36 [ 41] [ 8] [01013000] +15:05:36 [ 42] [ 15] [NATIVE ] +15:05:36 [ 43] [ 40] [Sokpaluang Electric Vientiane LAO] +15:05:36 [ 49] [ 3] [418] +15:05:36 [ 52] [ 16] [7DC972C339049A89] +15:05:36 ============================================================================ +15:05:36 + + +waiting on router queue for slot.... +15:05:36 Sending to : <2> +15:05:36 ============================================================================ +15:05:38 ============================================================================ +15:05:38 Slot Id : <488> +15:05:38 Transaction Type : RESPONSE +15:05:38 Received From : +15:05:38 ============================================================================ +15:05:38 FNo. Len. Field Value +15:05:38 ============================================================================ +15:05:38 [ 1] [ 4] [0210] +15:05:38 [ 2] [ 16] [1808931300012745] +15:05:38 [ 3] [ 6] [011000] +15:05:38 [ 4] [ 12] [000100000000] +15:05:38 [ 6] [ 12] [000100000000] +15:05:38 [ 7] [ 10] [0320150529] +15:05:38 [ 11] [ 6] [778796] +15:05:38 [ 12] [ 6] [150529] +15:05:38 [ 13] [ 4] [0320] +15:05:38 [ 18] [ 4] [6011] +15:05:38 [ 19] [ 3] [418] +15:05:38 [ 22] [ 3] [021] +15:05:38 [ 32] [ 6] [621354] +15:05:38 [ 35] [ 27] [1808931300012745=1803500076] +15:05:38 [ 37] [ 12] [507904989318] +15:05:38 [ 38] [ 6] [778796] +15:05:38 [ 39] [ 2] [00] +15:05:38 [ 41] [ 8] [01012300] +15:05:38 [ 49] [ 3] [418] +15:05:38 [ 52] [ 16] [1A686361C36EB197] +15:05:38 [ 54] [ 20] [1001418C000406200600] +15:05:38 ============================================================================ +15:05:38 Sending to : +15:05:38 ============================================================================ +15:05:38 + + +waiting on router queue for slot.... +15:05:39 ============================================================================ +15:05:39 Slot Id : <470> +15:05:39 Transaction Type : RESPONSE +15:05:39 Received From : +15:05:39 ============================================================================ +15:05:39 FNo. Len. Field Value +15:05:39 ============================================================================ +15:05:39 [ 1] [ 4] [0210] +15:05:39 [ 2] [ 16] [1808930200039634] +15:05:39 [ 3] [ 6] [301000] +15:05:39 [ 7] [ 10] [0320150531] +15:05:39 [ 11] [ 6] [778802] +15:05:39 [ 12] [ 6] [150531] +15:05:39 [ 13] [ 4] [0320] +15:05:39 [ 14] [ 4] [1803] +15:05:39 [ 19] [ 3] [418] +15:05:39 [ 32] [ 6] [621354] +15:05:39 [ 37] [ 12] [507905213916] +15:05:39 [ 38] [ 6] [778802] +15:05:39 [ 39] [ 2] [00] +15:05:39 [ 41] [ 8] [01013000] +15:05:39 [ 49] [ 3] [418] +15:05:39 [ 52] [ 16] [7DC972C339049A89] +15:05:39 [ 54] [ 20] [1002418C000097538300] +15:05:39 ============================================================================ +15:05:39 Sending to : +15:05:39 ============================================================================ +15:05:39 + + +waiting on router queue for slot.... +15:05:39 ============================================================================ +15:05:39 Slot Id : <488> +15:05:39 Transaction Type : RESPONSE +15:05:39 Received From : +15:05:39 ============================================================================ +15:05:39 FNo. Len. Field Value +15:05:39 ============================================================================ +15:05:39 [ 1] [ 4] [0210] +15:05:39 [ 2] [ 16] [1808931300012745] +15:05:39 [ 3] [ 6] [011000] +15:05:39 [ 4] [ 12] [000100000000] +15:05:39 [ 6] [ 12] [000100000000] +15:05:39 [ 7] [ 10] [0320150529] +15:05:39 [ 11] [ 6] [778796] +15:05:39 [ 12] [ 6] [150529] +15:05:39 [ 13] [ 4] [0320] +15:05:39 [ 18] [ 4] [6011] +15:05:39 [ 19] [ 3] [418] +15:05:39 [ 22] [ 3] [021] +15:05:39 [ 32] [ 6] [621354] +15:05:39 [ 35] [ 27] [1808931300012745=1803500076] +15:05:39 [ 37] [ 12] [507904989318] +15:05:39 [ 38] [ 6] [778796] +15:05:39 [ 39] [ 2] [00] +15:05:39 [ 41] [ 8] [01012300] +15:05:39 [ 49] [ 3] [418] +15:05:39 [ 52] [ 16] [1A686361C36EB197] +15:05:39 [ 54] [ 20] [1001418C000406200600] +15:05:39 ============================================================================ +15:05:39 Calculate Source COMM Id = 0 +15:05:39 ============================================================================ +15:05:39 + + +waiting on router queue for slot.... +15:05:40 ============================================================================ +15:05:40 Slot Id : <470> +15:05:40 Transaction Type : RESPONSE +15:05:40 Received From : +15:05:40 ============================================================================ +15:05:40 FNo. Len. Field Value +15:05:40 ============================================================================ +15:05:40 [ 1] [ 4] [0210] +15:05:40 [ 2] [ 16] [1808930200039634] +15:05:40 [ 3] [ 6] [301000] +15:05:40 [ 7] [ 10] [0320150531] +15:05:40 [ 11] [ 6] [778802] +15:05:40 [ 12] [ 6] [150531] +15:05:40 [ 13] [ 4] [0320] +15:05:40 [ 14] [ 4] [1803] +15:05:40 [ 19] [ 3] [418] +15:05:40 [ 32] [ 6] [621354] +15:05:40 [ 37] [ 12] [507905213916] +15:05:40 [ 38] [ 6] [778802] +15:05:40 [ 39] [ 2] [00] +15:05:40 [ 41] [ 8] [01013000] +15:05:40 [ 49] [ 3] [418] +15:05:40 [ 52] [ 16] [7DC972C339049A89] +15:05:40 [ 54] [ 20] [1002418C000097538300] +15:05:40 ============================================================================ +15:05:40 Calculate Source COMM Id = 0 +15:05:40 ============================================================================ +15:05:40 + + +waiting on router queue for slot.... +15:05:41 ============================================================================ +15:05:41 Slot Id : <484> +15:05:41 Transaction Type : REQUEST +15:05:41 Received From : +15:05:41 ============================================================================ +15:05:41 FNo. Len. Field Value +15:05:41 ============================================================================ +15:05:41 [ 1] [ 4] [0200] +15:05:41 [ 2] [ 16] [6688990602636506] +15:05:41 [ 3] [ 6] [010000] +15:05:41 [ 4] [ 12] [000100000000] +15:05:41 [ 7] [ 10] [0320150537] +15:05:41 [ 11] [ 6] [778828] +15:05:41 [ 12] [ 6] [150537] +15:05:41 [ 13] [ 4] [0320] +15:05:41 [ 15] [ 4] [0320] +15:05:41 [ 18] [ 4] [6011] +15:05:41 [ 22] [ 3] [900] +15:05:41 [ 25] [ 2] [02] +15:05:41 [ 28] [ 9] [D00002000] +15:05:41 [ 32] [ 6] [621354] +15:05:41 [ 35] [ 37] [6688990602636506=43100061650672400000] +15:05:41 [ 37] [ 12] [507903008103] +15:05:41 [ 41] [ 8] [12002300] +15:05:41 [ 42] [ 15] [NATIVE ] +15:05:41 [ 43] [ 40] [PAKLAI UNIT01 Xayabouly LAO] +15:05:41 [ 49] [ 3] [418] +15:05:41 [ 52] [ 16] [54C46161EBC94BD2] +15:05:41 ============================================================================ +15:05:41 + + +waiting on router queue for slot.... +15:05:41 Sending to : +15:05:41 ============================================================================ +15:05:41 Sending to : +15:05:41 ============================================================================ +15:05:42 ============================================================================ +15:05:42 Slot Id : <484> +15:05:42 Transaction Type : REQUEST +15:05:42 Received From : +15:05:42 ============================================================================ +15:05:42 FNo. Len. Field Value +15:05:42 ============================================================================ +15:05:42 [ 1] [ 4] [0200] +15:05:42 [ 2] [ 16] [6688990602636506] +15:05:42 [ 3] [ 6] [010000] +15:05:42 [ 4] [ 12] [000100000000] +15:05:42 [ 7] [ 10] [0320150537] +15:05:42 [ 11] [ 6] [778828] +15:05:42 [ 12] [ 6] [150537] +15:05:42 [ 13] [ 4] [0320] +15:05:42 [ 15] [ 4] [0320] +15:05:42 [ 18] [ 4] [6011] +15:05:42 [ 22] [ 3] [900] +15:05:42 [ 25] [ 2] [02] +15:05:42 [ 28] [ 9] [D00002000] +15:05:42 [ 32] [ 6] [621354] +15:05:42 [ 35] [ 37] [6688990602636506=43100061650672400000] +15:05:42 [ 37] [ 12] [507903008103] +15:05:42 [ 41] [ 8] [12002300] +15:05:42 [ 42] [ 15] [NATIVE ] +15:05:42 [ 43] [ 40] [PAKLAI UNIT01 Xayabouly LAO] +15:05:42 [ 49] [ 3] [418] +15:05:42 [ 52] [ 16] [54C46161EBC94BD2] +15:05:42 ============================================================================ +15:05:42 + + +waiting on router queue for slot.... +15:05:42 Sending to : +15:05:42 ============================================================================ +15:05:42 ============================================================================ +15:05:42 Slot Id : <484> +15:05:42 Transaction Type : REQUEST +15:05:42 Received From : +15:05:42 ============================================================================ +15:05:42 FNo. Len. Field Value +15:05:42 ============================================================================ +15:05:42 [ 1] [ 4] [0200] +15:05:42 [ 2] [ 16] [6688990602636506] +15:05:42 [ 3] [ 6] [010000] +15:05:42 [ 4] [ 12] [000100000000] +15:05:42 [ 7] [ 10] [0320150537] +15:05:42 [ 11] [ 6] [778828] +15:05:42 [ 12] [ 6] [150537] +15:05:42 [ 13] [ 4] [0320] +15:05:42 [ 15] [ 4] [0320] +15:05:42 [ 18] [ 4] [6011] +15:05:42 [ 22] [ 3] [900] +15:05:42 [ 25] [ 2] [02] +15:05:42 [ 28] [ 9] [D00002000] +15:05:42 [ 32] [ 6] [621354] +15:05:42 [ 35] [ 37] [6688990602636506=43100061650672400000] +15:05:42 [ 37] [ 12] [507903008103] +15:05:42 [ 41] [ 8] [12002300] +15:05:42 [ 42] [ 15] [NATIVE ] +15:05:42 [ 43] [ 40] [PAKLAI UNIT01 Xayabouly LAO] +15:05:42 [ 49] [ 3] [418] +15:05:42 [ 52] [ 16] [235BE2B29D000851] +15:05:42 ============================================================================ +15:05:42 + + +waiting on router queue for slot.... +15:05:42 Sending to : <4> +15:05:42 ============================================================================ +15:05:43 ============================================================================ +15:05:43 Slot Id : <484> +15:05:43 Transaction Type : RESPONSE +15:05:43 Received From : +15:05:43 ============================================================================ +15:05:43 FNo. Len. Field Value +15:05:43 ============================================================================ +15:05:43 [ 1] [ 4] [0210] +15:05:43 [ 2] [ 16] [6688990602636506] +15:05:43 [ 3] [ 6] [010000] +15:05:43 [ 4] [ 12] [000100000000] +15:05:43 [ 11] [ 6] [778828] +15:05:43 [ 12] [ 6] [150537] +15:05:43 [ 15] [ 4] [0320] +15:05:43 [ 18] [ 4] [6011] +15:05:43 [ 32] [ 6] [621354] +15:05:43 [ 35] [ 37] [6688990602636506=43100061650672400000] +15:05:43 [ 37] [ 12] [507903008103] +15:05:43 [ 38] [ 6] [399968] +15:05:43 [ 39] [ 2] [00] +15:05:43 [ 41] [ 8] [12002300] +15:05:43 [ 49] [ 3] [418] +15:05:43 [ 54] [ 20] [0002418C000166432416] +15:05:43 ============================================================================ +15:05:43 Sending to : +15:05:43 ============================================================================ +15:05:43 + + +waiting on router queue for slot.... +15:05:44 ============================================================================ +15:05:44 Slot Id : <484> +15:05:44 Transaction Type : RESPONSE +15:05:44 Received From : +15:05:44 ============================================================================ +15:05:44 FNo. Len. Field Value +15:05:44 ============================================================================ +15:05:44 [ 1] [ 4] [0210] +15:05:44 [ 2] [ 16] [6688990602636506] +15:05:44 [ 3] [ 6] [010000] +15:05:44 [ 4] [ 12] [000100000000] +15:05:44 [ 11] [ 6] [778828] +15:05:44 [ 12] [ 6] [150537] +15:05:44 [ 15] [ 4] [0320] +15:05:44 [ 18] [ 4] [6011] +15:05:44 [ 32] [ 6] [621354] +15:05:44 [ 35] [ 37] [6688990602636506=43100061650672400000] +15:05:44 [ 37] [ 12] [507903008103] +15:05:44 [ 38] [ 6] [399968] +15:05:44 [ 39] [ 2] [00] +15:05:44 [ 41] [ 8] [12002300] +15:05:44 [ 49] [ 3] [418] +15:05:44 [ 54] [ 20] [0002418C000166432416] +15:05:44 ============================================================================ +15:05:44 Calculate Source COMM Id = 0 +15:05:44 ============================================================================ +15:05:44 + + +waiting on router queue for slot.... +15:05:48 ============================================================================ +15:05:48 Slot Id : <463> +15:05:48 Transaction Type : REQUEST +15:05:48 Received From : +15:05:48 ============================================================================ +15:05:48 FNo. Len. Field Value +15:05:48 ============================================================================ +15:05:48 [ 1] [ 4] [0800] +15:05:48 [ 7] [ 10] [0320080455] +15:05:48 [ 11] [ 6] [156925] +15:05:48 [ 70] [ 3] [301] +15:05:48 ============================================================================ +15:05:48 + + +waiting on router queue for slot.... +15:05:48 Sending to : +15:05:48 ============================================================================ +15:05:48 ============================================================================ +15:05:48 Slot Id : <463> +15:05:48 Transaction Type : RESPONSE +15:05:48 Received From : +15:05:48 ============================================================================ +15:05:48 FNo. Len. Field Value +15:05:48 ============================================================================ +15:05:48 [ 1] [ 4] [0810] +15:05:48 [ 7] [ 10] [0320080455] +15:05:48 [ 11] [ 6] [156925] +15:05:48 [ 39] [ 2] [00] +15:05:48 [ 70] [ 3] [301] +15:05:48 ============================================================================ +15:05:48 Calculate Source COMM Id = 2 +15:05:48 ============================================================================ +15:05:48 + + +waiting on router queue for slot.... +15:05:50 ============================================================================ +15:05:50 Slot Id : <490> +15:05:50 Transaction Type : REQUEST +15:05:50 Received From : +15:05:50 ============================================================================ +15:05:50 FNo. Len. Field Value +15:05:50 ============================================================================ +15:05:50 [ 1] [ 4] [0800] +15:05:50 [ 2] [ 5] [02531] +15:05:50 [ 3] [ 6] [579158] +15:05:50 [ 7] [ 10] [0320080550] +15:05:50 [ 11] [ 6] [807288] +15:05:50 [ 15] [ 10] [0320080550] +15:05:50 [ 37] [ 11] [57915807288] +15:05:50 [ 70] [ 3] [001] +15:05:50 ============================================================================ +15:05:50 + + +waiting on router queue for slot.... +15:05:50 ============================================================================ +15:05:50 Slot Id : <490> +15:05:50 Transaction Type : RESPONSE +15:05:50 Received From : +15:05:50 ============================================================================ +15:05:50 FNo. Len. Field Value +15:05:50 ============================================================================ +15:05:50 [ 1] [ 4] [0810] +15:05:50 [ 7] [ 10] [0320080550] +15:05:50 [ 11] [ 6] [807288] +15:05:50 [ 15] [ 4] [0320] +15:05:50 [ 37] [ 12] [57915807288] +15:05:50 [ 39] [ 2] [00] +15:05:50 [ 70] [ 3] [001] +15:05:50 ============================================================================ +15:05:50 Sending to : +15:05:50 ============================================================================ +15:05:50 + + +waiting on router queue for slot.... +15:05:51 ============================================================================ +15:05:51 Slot Id : <480> +15:05:51 Transaction Type : REQUEST +15:05:51 Received From : +15:05:51 ============================================================================ +15:05:51 FNo. Len. Field Value +15:05:51 ============================================================================ +15:05:51 [ 1] [ 4] [0200] +15:05:51 [ 2] [ 16] [6688990105649402] +15:05:51 [ 3] [ 6] [010000] +15:05:51 [ 4] [ 12] [000070000000] +15:05:51 [ 7] [ 10] [0320150547] +15:05:51 [ 11] [ 6] [778860] +15:05:51 [ 12] [ 6] [150547] +15:05:51 [ 13] [ 4] [0320] +15:05:51 [ 15] [ 4] [0320] +15:05:51 [ 18] [ 4] [6011] +15:05:51 [ 22] [ 3] [900] +15:05:51 [ 25] [ 2] [02] +15:05:51 [ 28] [ 9] [D00002000] +15:05:51 [ 32] [ 6] [621354] +15:05:51 [ 35] [ 37] [6688990105649402=43101231940207600000] +15:05:51 [ 37] [ 12] [507904635735] +15:05:51 [ 41] [ 8] [17000800] +15:05:51 [ 42] [ 15] [NATIVE ] +15:05:51 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:05:51 [ 49] [ 3] [418] +15:05:51 [ 52] [ 16] [708BB755AFB3B349] +15:05:51 ============================================================================ +15:05:51 + + +waiting on router queue for slot.... +15:05:51 Sending to : +15:05:51 ============================================================================ +15:05:51 Sending to : +15:05:51 ============================================================================ +15:05:52 ============================================================================ +15:05:52 Slot Id : <480> +15:05:52 Transaction Type : REQUEST +15:05:52 Received From : +15:05:52 ============================================================================ +15:05:52 FNo. Len. Field Value +15:05:52 ============================================================================ +15:05:52 [ 1] [ 4] [0200] +15:05:52 [ 2] [ 16] [6688990105649402] +15:05:52 [ 3] [ 6] [010000] +15:05:52 [ 4] [ 12] [000070000000] +15:05:52 [ 7] [ 10] [0320150547] +15:05:52 [ 11] [ 6] [778860] +15:05:52 [ 12] [ 6] [150547] +15:05:52 [ 13] [ 4] [0320] +15:05:52 [ 15] [ 4] [0320] +15:05:52 [ 18] [ 4] [6011] +15:05:52 [ 22] [ 3] [900] +15:05:52 [ 25] [ 2] [02] +15:05:52 [ 28] [ 9] [D00002000] +15:05:52 [ 32] [ 6] [621354] +15:05:52 [ 35] [ 37] [6688990105649402=43101231940207600000] +15:05:52 [ 37] [ 12] [507904635735] +15:05:52 [ 41] [ 8] [17000800] +15:05:52 [ 42] [ 15] [NATIVE ] +15:05:52 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:05:52 [ 49] [ 3] [418] +15:05:52 [ 52] [ 16] [708BB755AFB3B349] +15:05:52 ============================================================================ +15:05:52 + + +waiting on router queue for slot.... +15:05:52 Sending to : +15:05:52 ============================================================================ +15:05:52 ============================================================================ +15:05:52 Slot Id : <480> +15:05:52 Transaction Type : REQUEST +15:05:52 Received From : +15:05:52 ============================================================================ +15:05:52 FNo. Len. Field Value +15:05:52 ============================================================================ +15:05:52 [ 1] [ 4] [0200] +15:05:52 [ 2] [ 16] [6688990105649402] +15:05:52 [ 3] [ 6] [010000] +15:05:52 [ 4] [ 12] [000070000000] +15:05:52 [ 7] [ 10] [0320150547] +15:05:52 [ 11] [ 6] [778860] +15:05:52 [ 12] [ 6] [150547] +15:05:52 [ 13] [ 4] [0320] +15:05:52 [ 15] [ 4] [0320] +15:05:52 [ 18] [ 4] [6011] +15:05:52 [ 22] [ 3] [900] +15:05:52 [ 25] [ 2] [02] +15:05:52 [ 28] [ 9] [D00002000] +15:05:52 [ 32] [ 6] [621354] +15:05:52 [ 35] [ 37] [6688990105649402=43101231940207600000] +15:05:52 [ 37] [ 12] [507904635735] +15:05:52 [ 41] [ 8] [17000800] +15:05:52 [ 42] [ 15] [NATIVE ] +15:05:52 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:05:52 [ 49] [ 3] [418] +15:05:52 [ 52] [ 16] [D2481882E35C32A9] +15:05:52 ============================================================================ +15:05:52 + + +waiting on router queue for slot.... +15:05:52 Sending to : <4> +15:05:52 ============================================================================ +15:05:53 ============================================================================ +15:05:53 Slot Id : <480> +15:05:53 Transaction Type : RESPONSE +15:05:53 Received From : +15:05:53 ============================================================================ +15:05:53 FNo. Len. Field Value +15:05:53 ============================================================================ +15:05:53 [ 1] [ 4] [0210] +15:05:53 [ 2] [ 16] [6688990105649402] +15:05:53 [ 3] [ 6] [010000] +15:05:53 [ 4] [ 12] [000070000000] +15:05:53 [ 11] [ 6] [778860] +15:05:53 [ 12] [ 6] [150547] +15:05:53 [ 15] [ 4] [0320] +15:05:53 [ 18] [ 4] [6011] +15:05:53 [ 32] [ 6] [621354] +15:05:53 [ 35] [ 37] [6688990105649402=43101231940207600000] +15:05:53 [ 37] [ 12] [507904635735] +15:05:53 [ 38] [ 6] [396484] +15:05:53 [ 39] [ 2] [00] +15:05:53 [ 41] [ 8] [17000800] +15:05:53 [ 49] [ 3] [418] +15:05:53 [ 54] [ 20] [0002418C000399122652] +15:05:53 ============================================================================ +15:05:53 Sending to : +15:05:53 ============================================================================ +15:05:53 + + +waiting on router queue for slot.... +15:05:54 ============================================================================ +15:05:54 Slot Id : <480> +15:05:54 Transaction Type : RESPONSE +15:05:54 Received From : +15:05:54 ============================================================================ +15:05:54 FNo. Len. Field Value +15:05:54 ============================================================================ +15:05:54 [ 1] [ 4] [0210] +15:05:54 [ 2] [ 16] [6688990105649402] +15:05:54 [ 3] [ 6] [010000] +15:05:54 [ 4] [ 12] [000070000000] +15:05:54 [ 11] [ 6] [778860] +15:05:54 [ 12] [ 6] [150547] +15:05:54 [ 15] [ 4] [0320] +15:05:54 [ 18] [ 4] [6011] +15:05:54 [ 32] [ 6] [621354] +15:05:54 [ 35] [ 37] [6688990105649402=43101231940207600000] +15:05:54 [ 37] [ 12] [507904635735] +15:05:54 [ 38] [ 6] [396484] +15:05:54 [ 39] [ 2] [00] +15:05:54 [ 41] [ 8] [17000800] +15:05:54 [ 49] [ 3] [418] +15:05:54 [ 54] [ 20] [0002418C000399122652] +15:05:54 ============================================================================ +15:05:54 Calculate Source COMM Id = 0 +15:05:54 ============================================================================ +15:05:54 + + +waiting on router queue for slot.... +15:05:57 ============================================================================ +15:05:57 Slot Id : <448> +15:05:57 Transaction Type : REQUEST +15:05:57 Received From : +15:05:57 ============================================================================ +15:05:57 FNo. Len. Field Value +15:05:57 ============================================================================ +15:05:57 [ 1] [ 4] [0200] +15:05:57 [ 2] [ 16] [6213541000119340] +15:05:57 [ 3] [ 6] [010000] +15:05:57 [ 4] [ 12] [000010000000] +15:05:57 [ 7] [ 10] [0320080504] +15:05:57 [ 11] [ 6] [269914] +15:05:57 [ 12] [ 6] [150504] +15:05:57 [ 13] [ 4] [0320] +15:05:57 [ 14] [ 4] [4912] +15:05:57 [ 15] [ 4] [0320] +15:05:57 [ 18] [ 4] [6011] +15:05:57 [ 19] [ 3] [418] +15:05:57 [ 22] [ 3] [021] +15:05:57 [ 25] [ 2] [01] +15:05:57 [ 28] [ 9] [D00002000] +15:05:57 [ 32] [ 6] [180893] +15:05:57 [ 35] [ 32] [6213541000119340=491212011934090] +15:05:57 [ 37] [ 12] [507908269914] +15:05:57 [ 41] [ 8] [0342KMXF] +15:05:57 [ 42] [ 15] [999999 ] +15:05:57 [ 43] [ 40] [ATM KHAMMUAN XEBUNGFAI LOCATION, Xebangf] +15:05:57 [ 49] [ 3] [418] +15:05:57 [ 52] [ 16] [A563D1E33D79C10A] +15:05:57 ============================================================================ +15:05:57 + + +waiting on router queue for slot.... +15:05:57 Sending to : +15:05:57 ============================================================================ +15:05:57 Sending to : +15:05:57 ============================================================================ +15:05:57 ============================================================================ +15:05:57 Slot Id : <448> +15:05:57 Transaction Type : REQUEST +15:05:57 Received From : +15:05:57 ============================================================================ +15:05:57 FNo. Len. Field Value +15:05:57 ============================================================================ +15:05:57 [ 1] [ 4] [0200] +15:05:57 [ 2] [ 16] [6213541000119340] +15:05:57 [ 3] [ 6] [010000] +15:05:57 [ 4] [ 12] [000010000000] +15:05:57 [ 7] [ 10] [0320080504] +15:05:57 [ 11] [ 6] [269914] +15:05:57 [ 12] [ 6] [150504] +15:05:57 [ 13] [ 4] [0320] +15:05:57 [ 14] [ 4] [4912] +15:05:57 [ 15] [ 4] [0320] +15:05:57 [ 18] [ 4] [6011] +15:05:57 [ 19] [ 3] [418] +15:05:57 [ 22] [ 3] [021] +15:05:57 [ 25] [ 2] [01] +15:05:57 [ 28] [ 9] [D00002000] +15:05:57 [ 32] [ 6] [180893] +15:05:57 [ 35] [ 32] [6213541000119340=491212011934090] +15:05:57 [ 37] [ 12] [507908269914] +15:05:57 [ 41] [ 8] [0342KMXF] +15:05:57 [ 42] [ 15] [999999 ] +15:05:57 [ 43] [ 40] [ATM KHAMMUAN XEBUNGFAI LOCATION, Xebangf] +15:05:57 [ 49] [ 3] [418] +15:05:57 [ 52] [ 16] [A563D1E33D79C10A] +15:05:57 ============================================================================ +15:05:57 + + +waiting on router queue for slot.... +15:05:57 Sending to : +15:05:57 ============================================================================ +15:05:57 ============================================================================ +15:05:57 Slot Id : <448> +15:05:57 Transaction Type : REQUEST +15:05:57 Received From : +15:05:57 ============================================================================ +15:05:57 FNo. Len. Field Value +15:05:57 ============================================================================ +15:05:57 [ 1] [ 4] [0200] +15:05:57 [ 2] [ 16] [6213541000119340] +15:05:57 [ 3] [ 6] [010000] +15:05:57 [ 4] [ 12] [000010000000] +15:05:57 [ 7] [ 10] [0320080504] +15:05:57 [ 11] [ 6] [269914] +15:05:57 [ 12] [ 6] [150504] +15:05:57 [ 13] [ 4] [0320] +15:05:57 [ 14] [ 4] [4912] +15:05:57 [ 15] [ 4] [0320] +15:05:57 [ 18] [ 4] [6011] +15:05:57 [ 19] [ 3] [418] +15:05:57 [ 22] [ 3] [021] +15:05:57 [ 25] [ 2] [01] +15:05:57 [ 28] [ 9] [D00002000] +15:05:57 [ 32] [ 6] [180893] +15:05:57 [ 35] [ 32] [6213541000119340=491212011934090] +15:05:57 [ 37] [ 12] [507908269914] +15:05:57 [ 41] [ 8] [0342KMXF] +15:05:57 [ 42] [ 15] [999999 ] +15:05:57 [ 43] [ 40] [ATM KHAMMUAN XEBUNGFAI LOCATION, Xebangf] +15:05:57 [ 49] [ 3] [418] +15:05:57 [ 52] [ 16] [CFAE6B8C571EB484] +15:05:57 ============================================================================ +15:05:57 + + +waiting on router queue for slot.... +15:05:57 Sending to : <0> +15:05:57 ============================================================================ +15:05:58 ============================================================================ +15:05:58 Slot Id : <448> +15:05:58 Transaction Type : RESPONSE +15:05:58 Received From : +15:05:58 ============================================================================ +15:05:58 FNo. Len. Field Value +15:05:58 ============================================================================ +15:05:58 [ 1] [ 4] [0210] +15:05:58 [ 2] [ 16] [6213541000119340] +15:05:58 [ 3] [ 6] [010000] +15:05:58 [ 4] [ 12] [000010000000] +15:05:58 [ 7] [ 10] [0320080504] +15:05:58 [ 11] [ 6] [269914] +15:05:58 [ 12] [ 6] [150504] +15:05:58 [ 13] [ 4] [0320] +15:05:58 [ 15] [ 4] [0320] +15:05:58 [ 18] [ 4] [6011] +15:05:58 [ 19] [ 3] [418] +15:05:58 [ 32] [ 6] [180893] +15:05:58 [ 35] [ 32] [6213541000119340=491212011934090] +15:05:58 [ 37] [ 12] [507908269914] +15:05:58 [ 38] [ 6] [091286] +15:05:58 [ 39] [ 2] [00] +15:05:58 [ 41] [ 8] [0342KMXF] +15:05:58 [ 49] [ 3] [418] +15:05:58 [ 54] [ 40] [0001418C0000383045270002418C000038304527] +15:05:58 ============================================================================ +15:05:58 Sending to : +15:05:58 ============================================================================ +15:05:58 + + +waiting on router queue for slot.... +15:06:00 ============================================================================ +15:06:00 Slot Id : <448> +15:06:00 Transaction Type : RESPONSE +15:06:00 Received From : +15:06:00 ============================================================================ +15:06:00 FNo. Len. Field Value +15:06:00 ============================================================================ +15:06:00 [ 1] [ 4] [0210] +15:06:00 [ 2] [ 16] [6213541000119340] +15:06:00 [ 3] [ 6] [010000] +15:06:00 [ 4] [ 12] [000010000000] +15:06:00 [ 7] [ 10] [0320080504] +15:06:00 [ 11] [ 6] [269914] +15:06:00 [ 12] [ 6] [150504] +15:06:00 [ 13] [ 4] [0320] +15:06:00 [ 15] [ 4] [0320] +15:06:00 [ 18] [ 4] [6011] +15:06:00 [ 19] [ 3] [418] +15:06:00 [ 32] [ 6] [180893] +15:06:00 [ 35] [ 32] [6213541000119340=491212011934090] +15:06:00 [ 37] [ 12] [507908269914] +15:06:00 [ 38] [ 6] [091286] +15:06:00 [ 39] [ 2] [00] +15:06:00 [ 41] [ 8] [0342KMXF] +15:06:00 [ 49] [ 3] [418] +15:06:00 [ 54] [ 40] [0001418C0000383045270002418C000038304527] +15:06:00 ============================================================================ +15:06:00 Calculate Source COMM Id = 2 +15:06:00 ============================================================================ +15:06:00 + + +waiting on router queue for slot.... +15:06:01 ============================================================================ +15:06:01 Slot Id : <471> +15:06:01 Transaction Type : REQUEST +15:06:01 Received From : +15:06:01 ============================================================================ +15:06:01 FNo. Len. Field Value +15:06:01 ============================================================================ +15:06:01 [ 1] [ 4] [0200] +15:06:01 [ 2] [ 16] [6688990040042481] +15:06:01 [ 3] [ 6] [010000] +15:06:01 [ 4] [ 12] [000010000000] +15:06:01 [ 7] [ 10] [0320150556] +15:06:01 [ 11] [ 6] [778897] +15:06:01 [ 12] [ 6] [150556] +15:06:01 [ 13] [ 4] [0320] +15:06:01 [ 15] [ 4] [0320] +15:06:01 [ 18] [ 4] [6011] +15:06:01 [ 22] [ 3] [900] +15:06:01 [ 25] [ 2] [02] +15:06:01 [ 28] [ 9] [D00002000] +15:06:01 [ 32] [ 6] [621354] +15:06:01 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:06:01 [ 37] [ 12] [507905335165] +15:06:01 [ 41] [ 8] [05004700] +15:06:01 [ 42] [ 15] [NATIVE ] +15:06:01 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:06:01 [ 49] [ 3] [418] +15:06:01 [ 52] [ 16] [E8E0C48DE95763E3] +15:06:01 ============================================================================ +15:06:01 + + +waiting on router queue for slot.... +15:06:01 Sending to : +15:06:01 ============================================================================ +15:06:01 Sending to : +15:06:01 ============================================================================ +15:06:01 ============================================================================ +15:06:01 Slot Id : <471> +15:06:01 Transaction Type : REQUEST +15:06:01 Received From : +15:06:01 ============================================================================ +15:06:01 FNo. Len. Field Value +15:06:01 ============================================================================ +15:06:01 [ 1] [ 4] [0200] +15:06:01 [ 2] [ 16] [6688990040042481] +15:06:01 [ 3] [ 6] [010000] +15:06:01 [ 4] [ 12] [000010000000] +15:06:01 [ 7] [ 10] [0320150556] +15:06:01 [ 11] [ 6] [778897] +15:06:01 [ 12] [ 6] [150556] +15:06:01 [ 13] [ 4] [0320] +15:06:01 [ 15] [ 4] [0320] +15:06:01 [ 18] [ 4] [6011] +15:06:01 [ 22] [ 3] [900] +15:06:01 [ 25] [ 2] [02] +15:06:01 [ 28] [ 9] [D00002000] +15:06:01 [ 32] [ 6] [621354] +15:06:01 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:06:01 [ 37] [ 12] [507905335165] +15:06:01 [ 41] [ 8] [05004700] +15:06:01 [ 42] [ 15] [NATIVE ] +15:06:01 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:06:01 [ 49] [ 3] [418] +15:06:01 [ 52] [ 16] [E8E0C48DE95763E3] +15:06:01 ============================================================================ +15:06:01 + + +waiting on router queue for slot.... +15:06:01 Sending to : +15:06:01 ============================================================================ +15:06:01 ============================================================================ +15:06:01 Slot Id : <471> +15:06:01 Transaction Type : REQUEST +15:06:01 Received From : +15:06:01 ============================================================================ +15:06:01 FNo. Len. Field Value +15:06:01 ============================================================================ +15:06:01 [ 1] [ 4] [0200] +15:06:01 [ 2] [ 16] [6688990040042481] +15:06:01 [ 3] [ 6] [010000] +15:06:01 [ 4] [ 12] [000010000000] +15:06:01 [ 7] [ 10] [0320150556] +15:06:01 [ 11] [ 6] [778897] +15:06:01 [ 12] [ 6] [150556] +15:06:01 [ 13] [ 4] [0320] +15:06:01 [ 15] [ 4] [0320] +15:06:01 [ 18] [ 4] [6011] +15:06:01 [ 22] [ 3] [900] +15:06:01 [ 25] [ 2] [02] +15:06:01 [ 28] [ 9] [D00002000] +15:06:01 [ 32] [ 6] [621354] +15:06:01 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:06:01 [ 37] [ 12] [507905335165] +15:06:01 [ 41] [ 8] [05004700] +15:06:01 [ 42] [ 15] [NATIVE ] +15:06:01 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:06:01 [ 49] [ 3] [418] +15:06:01 [ 52] [ 16] [360D72F66C5B5754] +15:06:01 ============================================================================ +15:06:01 + + +waiting on router queue for slot.... +15:06:01 Sending to : <4> +15:06:01 ============================================================================ +15:06:02 ============================================================================ +15:06:02 Slot Id : <471> +15:06:02 Transaction Type : RESPONSE +15:06:02 Received From : +15:06:02 ============================================================================ +15:06:02 FNo. Len. Field Value +15:06:02 ============================================================================ +15:06:02 [ 1] [ 4] [0210] +15:06:02 [ 2] [ 16] [6688990040042481] +15:06:02 [ 3] [ 6] [010000] +15:06:02 [ 4] [ 12] [000010000000] +15:06:02 [ 11] [ 6] [778897] +15:06:02 [ 12] [ 6] [150556] +15:06:02 [ 15] [ 4] [0320] +15:06:02 [ 18] [ 4] [6011] +15:06:02 [ 32] [ 6] [621354] +15:06:02 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:06:02 [ 37] [ 12] [507905335165] +15:06:02 [ 38] [ 6] [040356] +15:06:02 [ 39] [ 2] [00] +15:06:02 [ 41] [ 8] [05004700] +15:06:02 [ 49] [ 3] [418] +15:06:02 [ 54] [ 20] [0002418C000003729001] +15:06:02 ============================================================================ +15:06:02 Sending to : +15:06:02 ============================================================================ +15:06:02 + + +waiting on router queue for slot.... +15:06:04 ============================================================================ +15:06:04 Slot Id : <471> +15:06:04 Transaction Type : RESPONSE +15:06:04 Received From : +15:06:04 ============================================================================ +15:06:04 FNo. Len. Field Value +15:06:04 ============================================================================ +15:06:04 [ 1] [ 4] [0210] +15:06:04 [ 2] [ 16] [6688990040042481] +15:06:04 [ 3] [ 6] [010000] +15:06:04 [ 4] [ 12] [000010000000] +15:06:04 [ 11] [ 6] [778897] +15:06:04 [ 12] [ 6] [150556] +15:06:04 [ 15] [ 4] [0320] +15:06:04 [ 18] [ 4] [6011] +15:06:04 [ 32] [ 6] [621354] +15:06:04 [ 35] [ 37] [6688990040042481=97121261048072900000] +15:06:04 [ 37] [ 12] [507905335165] +15:06:04 [ 38] [ 6] [040356] +15:06:04 [ 39] [ 2] [00] +15:06:04 [ 41] [ 8] [05004700] +15:06:04 [ 49] [ 3] [418] +15:06:04 [ 54] [ 20] [0002418C000003729001] +15:06:04 ============================================================================ +15:06:04 Calculate Source COMM Id = 0 +15:06:04 ============================================================================ +15:06:04 + + +waiting on router queue for slot.... +15:06:12 ============================================================================ +15:06:12 Slot Id : <479> +15:06:12 Transaction Type : REQUEST +15:06:12 Received From : +15:06:12 ============================================================================ +15:06:12 FNo. Len. Field Value +15:06:12 ============================================================================ +15:06:12 [ 1] [ 4] [0200] +15:06:12 [ 2] [ 16] [6688990103406409] +15:06:12 [ 3] [ 6] [301000] +15:06:12 [ 7] [ 10] [0320080519] +15:06:12 [ 11] [ 6] [269915] +15:06:12 [ 12] [ 6] [150519] +15:06:12 [ 13] [ 4] [0320] +15:06:12 [ 14] [ 4] [4301] +15:06:12 [ 15] [ 4] [0320] +15:06:12 [ 18] [ 4] [6011] +15:06:12 [ 19] [ 3] [418] +15:06:12 [ 22] [ 3] [021] +15:06:12 [ 25] [ 2] [01] +15:06:12 [ 32] [ 6] [180893] +15:06:12 [ 35] [ 37] [6688990103406409=43011231640925900000] +15:06:12 [ 37] [ 12] [507908269915] +15:06:12 [ 41] [ 8] [0264UDXH] +15:06:12 [ 42] [ 15] [999999 ] +15:06:12 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +15:06:12 [ 49] [ 3] [418] +15:06:12 [ 52] [ 16] [7CEF71AC3DEAB576] +15:06:12 ============================================================================ +15:06:12 + + +waiting on router queue for slot.... +15:06:12 Sending to : +15:06:12 ============================================================================ +15:06:12 Sending to : +15:06:12 ============================================================================ +15:06:12 ============================================================================ +15:06:12 Slot Id : <479> +15:06:12 Transaction Type : REQUEST +15:06:12 Received From : +15:06:12 ============================================================================ +15:06:12 FNo. Len. Field Value +15:06:12 ============================================================================ +15:06:12 [ 1] [ 4] [0200] +15:06:12 [ 2] [ 16] [6688990103406409] +15:06:12 [ 3] [ 6] [301000] +15:06:12 [ 7] [ 10] [0320080519] +15:06:12 [ 11] [ 6] [269915] +15:06:12 [ 12] [ 6] [150519] +15:06:12 [ 13] [ 4] [0320] +15:06:12 [ 14] [ 4] [4301] +15:06:12 [ 15] [ 4] [0320] +15:06:12 [ 18] [ 4] [6011] +15:06:12 [ 19] [ 3] [418] +15:06:12 [ 22] [ 3] [021] +15:06:12 [ 25] [ 2] [01] +15:06:12 [ 32] [ 6] [180893] +15:06:12 [ 35] [ 37] [6688990103406409=43011231640925900000] +15:06:12 [ 37] [ 12] [507908269915] +15:06:12 [ 41] [ 8] [0264UDXH] +15:06:12 [ 42] [ 15] [999999 ] +15:06:12 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +15:06:12 [ 49] [ 3] [418] +15:06:12 [ 52] [ 16] [7CEF71AC3DEAB576] +15:06:12 ============================================================================ +15:06:12 + + +waiting on router queue for slot.... +15:06:12 Sending to : +15:06:12 ============================================================================ +15:06:12 ============================================================================ +15:06:12 Slot Id : <479> +15:06:12 Transaction Type : REQUEST +15:06:12 Received From : +15:06:12 ============================================================================ +15:06:12 FNo. Len. Field Value +15:06:12 ============================================================================ +15:06:12 [ 1] [ 4] [0200] +15:06:12 [ 2] [ 16] [6688990103406409] +15:06:12 [ 3] [ 6] [301000] +15:06:12 [ 7] [ 10] [0320080519] +15:06:12 [ 11] [ 6] [269915] +15:06:12 [ 12] [ 6] [150519] +15:06:12 [ 13] [ 4] [0320] +15:06:12 [ 14] [ 4] [4301] +15:06:12 [ 15] [ 4] [0320] +15:06:12 [ 18] [ 4] [6011] +15:06:12 [ 19] [ 3] [418] +15:06:12 [ 22] [ 3] [021] +15:06:12 [ 25] [ 2] [01] +15:06:12 [ 32] [ 6] [180893] +15:06:12 [ 35] [ 37] [6688990103406409=43011231640925900000] +15:06:12 [ 37] [ 12] [507908269915] +15:06:12 [ 41] [ 8] [0264UDXH] +15:06:12 [ 42] [ 15] [999999 ] +15:06:12 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +15:06:12 [ 49] [ 3] [418] +15:06:12 [ 52] [ 16] [39CD6EBB0DD71D28] +15:06:12 ============================================================================ +15:06:12 + + +waiting on router queue for slot.... +15:06:12 Sending to : <0> +15:06:12 ============================================================================ +15:06:12 ============================================================================ +15:06:12 Slot Id : <479> +15:06:12 Transaction Type : RESPONSE +15:06:12 Received From : +15:06:12 ============================================================================ +15:06:12 FNo. Len. Field Value +15:06:12 ============================================================================ +15:06:12 [ 1] [ 4] [0210] +15:06:12 [ 2] [ 16] [6688990103406409] +15:06:12 [ 3] [ 6] [301000] +15:06:12 [ 4] [ 12] [000000000000] +15:06:12 [ 7] [ 10] [0320080519] +15:06:12 [ 11] [ 6] [269915] +15:06:12 [ 12] [ 6] [150519] +15:06:12 [ 13] [ 4] [0320] +15:06:12 [ 15] [ 4] [0320] +15:06:12 [ 18] [ 4] [6011] +15:06:12 [ 19] [ 3] [418] +15:06:12 [ 22] [ 3] [021] +15:06:12 [ 32] [ 6] [180893] +15:06:12 [ 35] [ 37] [6688990103406409=43011231640925900000] +15:06:12 [ 37] [ 12] [507908269915] +15:06:12 [ 39] [ 2] [14] +15:06:12 [ 41] [ 8] [0264UDXH] +15:06:12 [ 49] [ 3] [418] +15:06:12 ============================================================================ +15:06:12 Sending to : +15:06:12 ============================================================================ +15:06:12 + + +waiting on router queue for slot.... +15:06:13 ============================================================================ +15:06:13 Slot Id : <479> +15:06:13 Transaction Type : RESPONSE +15:06:13 Received From : +15:06:13 ============================================================================ +15:06:13 FNo. Len. Field Value +15:06:13 ============================================================================ +15:06:13 [ 1] [ 4] [0210] +15:06:13 [ 2] [ 16] [6688990103406409] +15:06:13 [ 3] [ 6] [301000] +15:06:13 [ 4] [ 12] [000000000000] +15:06:13 [ 7] [ 10] [0320080519] +15:06:13 [ 11] [ 6] [269915] +15:06:13 [ 12] [ 6] [150519] +15:06:13 [ 13] [ 4] [0320] +15:06:13 [ 15] [ 4] [0320] +15:06:13 [ 18] [ 4] [6011] +15:06:13 [ 19] [ 3] [418] +15:06:13 [ 22] [ 3] [021] +15:06:13 [ 32] [ 6] [180893] +15:06:13 [ 35] [ 37] [6688990103406409=43011231640925900000] +15:06:13 [ 37] [ 12] [507908269915] +15:06:13 [ 39] [ 2] [14] +15:06:13 [ 41] [ 8] [0264UDXH] +15:06:13 [ 49] [ 3] [418] +15:06:13 ============================================================================ +15:06:13 Calculate Source COMM Id = 2 +15:06:13 ============================================================================ +15:06:13 + + +waiting on router queue for slot.... +15:06:22 ============================================================================ +15:06:22 Slot Id : <0> +15:06:22 Transaction Type : REQUEST +15:06:22 Received From : +15:06:22 ============================================================================ +15:06:22 FNo. Len. Field Value +15:06:22 ============================================================================ +15:06:22 [ 1] [ 4] [0800] +15:06:22 [ 7] [ 10] [0320080412] +15:06:22 [ 11] [ 6] [096594] +15:06:22 [ 37] [ 12] [57915096594] +15:06:22 [ 70] [ 3] [301] +15:06:22 ============================================================================ +15:06:22 + + +waiting on router queue for slot.... +15:06:22 Sending to : +15:06:22 ============================================================================ +15:06:22 ============================================================================ +15:06:22 Slot Id : <0> +15:06:22 Transaction Type : RESPONSE +15:06:22 Received From : +15:06:22 ============================================================================ +15:06:22 FNo. Len. Field Value +15:06:22 ============================================================================ +15:06:22 [ 1] [ 4] [0810] +15:06:22 [ 7] [ 10] [0320080412] +15:06:22 [ 11] [ 6] [096594] +15:06:22 [ 37] [ 12] [579150965940] +15:06:22 [ 39] [ 2] [00] +15:06:22 [ 70] [ 3] [810] +15:06:22 ============================================================================ +15:06:22 Calculate Source COMM Id = 4 +15:06:22 ============================================================================ +15:06:22 + + +waiting on router queue for slot.... +15:06:25 ============================================================================ +15:06:25 Slot Id : <2> +15:06:25 Transaction Type : REQUEST +15:06:25 Received From : +15:06:25 ============================================================================ +15:06:25 FNo. Len. Field Value +15:06:25 ============================================================================ +15:06:25 [ 1] [ 4] [0800] +15:06:25 [ 7] [ 10] [0320080532] +15:06:25 [ 11] [ 6] [156926] +15:06:25 [ 70] [ 3] [301] +15:06:25 ============================================================================ +15:06:25 + + +waiting on router queue for slot.... +15:06:25 Sending to : +15:06:25 ============================================================================ +15:06:25 ============================================================================ +15:06:25 Slot Id : <2> +15:06:25 Transaction Type : RESPONSE +15:06:25 Received From : +15:06:25 ============================================================================ +15:06:25 FNo. Len. Field Value +15:06:25 ============================================================================ +15:06:25 [ 1] [ 4] [0810] +15:06:25 [ 7] [ 10] [0320080532] +15:06:25 [ 11] [ 6] [156926] +15:06:25 [ 39] [ 2] [00] +15:06:25 [ 70] [ 3] [301] +15:06:25 ============================================================================ +15:06:25 Calculate Source COMM Id = 2 +15:06:25 ============================================================================ +15:06:25 + + +waiting on router queue for slot.... +15:06:36 ============================================================================ +15:06:36 Slot Id : <493> +15:06:36 Transaction Type : REQUEST +15:06:36 Received From : +15:06:36 ============================================================================ +15:06:36 FNo. Len. Field Value +15:06:36 ============================================================================ +15:06:36 [ 1] [ 4] [0800] +15:06:36 [ 7] [ 10] [0320221824] +15:06:36 [ 11] [ 6] [151824] +15:06:36 [ 37] [ 12] [57915151824] +15:06:36 [ 70] [ 3] [301] +15:06:36 ============================================================================ +15:06:36 + + +waiting on router queue for slot.... +15:06:36 Sending to : +15:06:36 ============================================================================ +15:06:36 ============================================================================ +15:06:36 Slot Id : <493> +15:06:36 Transaction Type : RESPONSE +15:06:36 Received From : +15:06:36 ============================================================================ +15:06:36 FNo. Len. Field Value +15:06:36 ============================================================================ +15:06:36 [ 1] [ 4] [0810] +15:06:36 [ 7] [ 10] [0320221824] +15:06:36 [ 11] [ 6] [151824] +15:06:36 [ 37] [ 12] [579151518240] +15:06:36 [ 39] [ 2] [00] +15:06:36 [ 70] [ 3] [810] +15:06:36 ============================================================================ +15:06:36 Calculate Source COMM Id = 6 +15:06:36 ============================================================================ +15:06:36 + + +waiting on router queue for slot.... +15:06:37 ============================================================================ +15:06:37 Slot Id : <4> +15:06:37 Transaction Type : REQUEST +15:06:37 Received From : +15:06:37 ============================================================================ +15:06:37 FNo. Len. Field Value +15:06:37 ============================================================================ +15:06:37 [ 1] [ 4] [0800] +15:06:37 [ 7] [ 10] [0320080544] +15:06:37 [ 11] [ 6] [156927] +15:06:37 [ 70] [ 3] [301] +15:06:37 ============================================================================ +15:06:37 + + +waiting on router queue for slot.... +15:06:37 Sending to : +15:06:37 ============================================================================ +15:06:37 ============================================================================ +15:06:37 Slot Id : <4> +15:06:37 Transaction Type : RESPONSE +15:06:37 Received From : +15:06:37 ============================================================================ +15:06:37 FNo. Len. Field Value +15:06:37 ============================================================================ +15:06:37 [ 1] [ 4] [0810] +15:06:37 [ 7] [ 10] [0320080544] +15:06:37 [ 11] [ 6] [156927] +15:06:37 [ 39] [ 2] [00] +15:06:37 [ 70] [ 3] [301] +15:06:37 ============================================================================ +15:06:37 Calculate Source COMM Id = 2 +15:06:37 ============================================================================ +15:06:37 + + +waiting on router queue for slot.... +15:06:39 ============================================================================ +15:06:39 Slot Id : <1> +15:06:39 Transaction Type : REQUEST +15:06:39 Received From : +15:06:39 ============================================================================ +15:06:39 FNo. Len. Field Value +15:06:39 ============================================================================ +15:06:39 [ 1] [ 4] [0200] +15:06:39 [ 2] [ 16] [1808930200039634] +15:06:39 [ 3] [ 6] [011000] +15:06:39 [ 4] [ 12] [000070000000] +15:06:39 [ 7] [ 10] [0320150634] +15:06:39 [ 11] [ 6] [779043] +15:06:39 [ 12] [ 6] [150634] +15:06:39 [ 13] [ 4] [0320] +15:06:39 [ 15] [ 4] [0320] +15:06:39 [ 18] [ 4] [6011] +15:06:39 [ 22] [ 3] [900] +15:06:39 [ 25] [ 2] [02] +15:06:39 [ 28] [ 9] [D00002000] +15:06:39 [ 32] [ 6] [621354] +15:06:39 [ 35] [ 27] [1808930200039634=1803500048] +15:06:39 [ 37] [ 12] [507905213918] +15:06:39 [ 41] [ 8] [01013000] +15:06:39 [ 42] [ 15] [NATIVE ] +15:06:39 [ 43] [ 40] [Sokpaluang Electric Vientiane LAO] +15:06:39 [ 49] [ 3] [418] +15:06:39 [ 52] [ 16] [B5E708F5C809C30C] +15:06:39 ============================================================================ +15:06:39 + + +waiting on router queue for slot.... +15:06:39 Sending to : +15:06:39 ============================================================================ +15:06:39 Sending to : +15:06:39 ============================================================================ +15:06:39 ============================================================================ +15:06:39 Slot Id : <1> +15:06:39 Transaction Type : REQUEST +15:06:39 Received From : +15:06:39 ============================================================================ +15:06:39 FNo. Len. Field Value +15:06:39 ============================================================================ +15:06:39 [ 1] [ 4] [0200] +15:06:39 [ 2] [ 16] [1808930200039634] +15:06:39 [ 3] [ 6] [011000] +15:06:39 [ 4] [ 12] [000070000000] +15:06:39 [ 7] [ 10] [0320150634] +15:06:39 [ 11] [ 6] [779043] +15:06:39 [ 12] [ 6] [150634] +15:06:39 [ 13] [ 4] [0320] +15:06:39 [ 15] [ 4] [0320] +15:06:39 [ 18] [ 4] [6011] +15:06:39 [ 22] [ 3] [900] +15:06:39 [ 25] [ 2] [02] +15:06:39 [ 28] [ 9] [D00002000] +15:06:39 [ 32] [ 6] [621354] +15:06:39 [ 35] [ 27] [1808930200039634=1803500048] +15:06:39 [ 37] [ 12] [507905213918] +15:06:39 [ 41] [ 8] [01013000] +15:06:39 [ 42] [ 15] [NATIVE ] +15:06:39 [ 43] [ 40] [Sokpaluang Electric Vientiane LAO] +15:06:39 [ 49] [ 3] [418] +15:06:39 [ 52] [ 16] [B5E708F5C809C30C] +15:06:39 ============================================================================ +15:06:39 + + +waiting on router queue for slot.... +15:06:39 Sending to : +15:06:39 ============================================================================ +15:06:39 ============================================================================ +15:06:39 Slot Id : <1> +15:06:39 Transaction Type : REQUEST +15:06:39 Received From : +15:06:39 ============================================================================ +15:06:39 FNo. Len. Field Value +15:06:39 ============================================================================ +15:06:39 [ 1] [ 4] [0200] +15:06:39 [ 2] [ 16] [1808930200039634] +15:06:39 [ 3] [ 6] [011000] +15:06:39 [ 4] [ 12] [000070000000] +15:06:39 [ 7] [ 10] [0320150634] +15:06:39 [ 11] [ 6] [779043] +15:06:39 [ 12] [ 6] [150634] +15:06:39 [ 13] [ 4] [0320] +15:06:39 [ 15] [ 4] [0320] +15:06:39 [ 18] [ 4] [6011] +15:06:39 [ 22] [ 3] [900] +15:06:39 [ 25] [ 2] [02] +15:06:39 [ 28] [ 9] [D00002000] +15:06:39 [ 32] [ 6] [621354] +15:06:39 [ 35] [ 27] [1808930200039634=1803500048] +15:06:39 [ 37] [ 12] [507905213918] +15:06:39 [ 41] [ 8] [01013000] +15:06:39 [ 42] [ 15] [NATIVE ] +15:06:39 [ 43] [ 40] [Sokpaluang Electric Vientiane LAO] +15:06:39 [ 49] [ 3] [418] +15:06:39 [ 52] [ 16] [7DC972C339049A89] +15:06:39 ============================================================================ +15:06:39 + + +waiting on router queue for slot.... +15:06:39 Sending to : <2> +15:06:39 ============================================================================ +15:06:43 ============================================================================ +15:06:43 Slot Id : <1> +15:06:43 Transaction Type : RESPONSE +15:06:43 Received From : +15:06:43 ============================================================================ +15:06:43 FNo. Len. Field Value +15:06:43 ============================================================================ +15:06:43 [ 1] [ 4] [0210] +15:06:43 [ 2] [ 16] [1808930200039634] +15:06:43 [ 3] [ 6] [011000] +15:06:43 [ 4] [ 12] [000070000000] +15:06:43 [ 6] [ 12] [000070000000] +15:06:43 [ 7] [ 10] [0320150634] +15:06:43 [ 11] [ 6] [779043] +15:06:43 [ 12] [ 6] [150634] +15:06:43 [ 13] [ 4] [0320] +15:06:43 [ 18] [ 4] [6011] +15:06:43 [ 19] [ 3] [418] +15:06:43 [ 22] [ 3] [021] +15:06:43 [ 32] [ 6] [621354] +15:06:43 [ 35] [ 27] [1808930200039634=1803500048] +15:06:43 [ 37] [ 12] [507905213918] +15:06:43 [ 38] [ 6] [779043] +15:06:43 [ 39] [ 2] [00] +15:06:43 [ 41] [ 8] [01013000] +15:06:43 [ 49] [ 3] [418] +15:06:43 [ 52] [ 16] [7DC972C339049A89] +15:06:43 [ 54] [ 20] [1001418C000027338300] +15:06:43 ============================================================================ +15:06:43 Sending to : +15:06:43 ============================================================================ +15:06:43 + + +waiting on router queue for slot.... +15:06:43 ============================================================================ +15:06:43 Slot Id : <498> +15:06:43 Transaction Type : REQUEST +15:06:43 Received From : +15:06:43 ============================================================================ +15:06:43 FNo. Len. Field Value +15:06:43 ============================================================================ +15:06:43 [ 1] [ 4] [0200] +15:06:43 [ 2] [ 16] [1808931300012745] +15:06:43 [ 3] [ 6] [011000] +15:06:43 [ 4] [ 12] [000100000000] +15:06:43 [ 7] [ 10] [0320150638] +15:06:43 [ 11] [ 6] [779054] +15:06:43 [ 12] [ 6] [150638] +15:06:43 [ 13] [ 4] [0320] +15:06:43 [ 15] [ 4] [0320] +15:06:43 [ 18] [ 4] [6011] +15:06:43 [ 22] [ 3] [900] +15:06:43 [ 25] [ 2] [02] +15:06:43 [ 28] [ 9] [D00002000] +15:06:43 [ 32] [ 6] [621354] +15:06:43 [ 35] [ 27] [1808931300012745=1803500076] +15:06:43 [ 37] [ 12] [507904989320] +15:06:43 [ 41] [ 8] [01012300] +15:06:43 [ 42] [ 15] [NATIVE ] +15:06:43 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:06:43 [ 49] [ 3] [418] +15:06:43 [ 52] [ 16] [E083E171B1C17587] +15:06:43 ============================================================================ +15:06:43 + + +waiting on router queue for slot.... +15:06:43 Sending to : +15:06:43 ============================================================================ +15:06:43 Sending to : +15:06:43 ============================================================================ +15:06:43 ============================================================================ +15:06:43 Slot Id : <498> +15:06:43 Transaction Type : REQUEST +15:06:43 Received From : +15:06:43 ============================================================================ +15:06:43 FNo. Len. Field Value +15:06:43 ============================================================================ +15:06:43 [ 1] [ 4] [0200] +15:06:43 [ 2] [ 16] [1808931300012745] +15:06:43 [ 3] [ 6] [011000] +15:06:43 [ 4] [ 12] [000100000000] +15:06:43 [ 7] [ 10] [0320150638] +15:06:43 [ 11] [ 6] [779054] +15:06:43 [ 12] [ 6] [150638] +15:06:43 [ 13] [ 4] [0320] +15:06:43 [ 15] [ 4] [0320] +15:06:43 [ 18] [ 4] [6011] +15:06:43 [ 22] [ 3] [900] +15:06:43 [ 25] [ 2] [02] +15:06:43 [ 28] [ 9] [D00002000] +15:06:43 [ 32] [ 6] [621354] +15:06:43 [ 35] [ 27] [1808931300012745=1803500076] +15:06:43 [ 37] [ 12] [507904989320] +15:06:43 [ 41] [ 8] [01012300] +15:06:43 [ 42] [ 15] [NATIVE ] +15:06:43 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:06:43 [ 49] [ 3] [418] +15:06:43 [ 52] [ 16] [E083E171B1C17587] +15:06:43 ============================================================================ +15:06:43 + + +waiting on router queue for slot.... +15:06:43 Sending to : +15:06:43 ============================================================================ +15:06:43 ============================================================================ +15:06:43 Slot Id : <498> +15:06:43 Transaction Type : REQUEST +15:06:43 Received From : +15:06:43 ============================================================================ +15:06:43 FNo. Len. Field Value +15:06:43 ============================================================================ +15:06:43 [ 1] [ 4] [0200] +15:06:43 [ 2] [ 16] [1808931300012745] +15:06:43 [ 3] [ 6] [011000] +15:06:43 [ 4] [ 12] [000100000000] +15:06:43 [ 7] [ 10] [0320150638] +15:06:43 [ 11] [ 6] [779054] +15:06:43 [ 12] [ 6] [150638] +15:06:43 [ 13] [ 4] [0320] +15:06:43 [ 15] [ 4] [0320] +15:06:43 [ 18] [ 4] [6011] +15:06:43 [ 22] [ 3] [900] +15:06:43 [ 25] [ 2] [02] +15:06:43 [ 28] [ 9] [D00002000] +15:06:43 [ 32] [ 6] [621354] +15:06:43 [ 35] [ 27] [1808931300012745=1803500076] +15:06:43 [ 37] [ 12] [507904989320] +15:06:43 [ 41] [ 8] [01012300] +15:06:43 [ 42] [ 15] [NATIVE ] +15:06:43 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:06:43 [ 49] [ 3] [418] +15:06:43 [ 52] [ 16] [1A686361C36EB197] +15:06:43 ============================================================================ +15:06:43 + + +waiting on router queue for slot.... +15:06:43 Sending to : <2> +15:06:43 ============================================================================ +15:06:44 ============================================================================ +15:06:44 Slot Id : <1> +15:06:44 Transaction Type : RESPONSE +15:06:44 Received From : +15:06:44 ============================================================================ +15:06:44 FNo. Len. Field Value +15:06:44 ============================================================================ +15:06:44 [ 1] [ 4] [0210] +15:06:44 [ 2] [ 16] [1808930200039634] +15:06:44 [ 3] [ 6] [011000] +15:06:44 [ 4] [ 12] [000070000000] +15:06:44 [ 6] [ 12] [000070000000] +15:06:44 [ 7] [ 10] [0320150634] +15:06:44 [ 11] [ 6] [779043] +15:06:44 [ 12] [ 6] [150634] +15:06:44 [ 13] [ 4] [0320] +15:06:44 [ 18] [ 4] [6011] +15:06:44 [ 19] [ 3] [418] +15:06:44 [ 22] [ 3] [021] +15:06:44 [ 32] [ 6] [621354] +15:06:44 [ 35] [ 27] [1808930200039634=1803500048] +15:06:44 [ 37] [ 12] [507905213918] +15:06:44 [ 38] [ 6] [779043] +15:06:44 [ 39] [ 2] [00] +15:06:44 [ 41] [ 8] [01013000] +15:06:44 [ 49] [ 3] [418] +15:06:44 [ 52] [ 16] [7DC972C339049A89] +15:06:44 [ 54] [ 20] [1001418C000027338300] +15:06:44 ============================================================================ +15:06:44 Calculate Source COMM Id = 0 +15:06:44 ============================================================================ +15:06:44 + + +waiting on router queue for slot.... +15:06:47 ============================================================================ +15:06:47 Slot Id : <498> +15:06:47 Transaction Type : RESPONSE +15:06:47 Received From : +15:06:47 ============================================================================ +15:06:47 FNo. Len. Field Value +15:06:47 ============================================================================ +15:06:47 [ 1] [ 4] [0210] +15:06:47 [ 2] [ 16] [1808931300012745] +15:06:47 [ 3] [ 6] [011000] +15:06:47 [ 4] [ 12] [000100000000] +15:06:47 [ 6] [ 12] [000100000000] +15:06:47 [ 7] [ 10] [0320150638] +15:06:47 [ 11] [ 6] [779054] +15:06:47 [ 12] [ 6] [150638] +15:06:47 [ 13] [ 4] [0320] +15:06:47 [ 18] [ 4] [6011] +15:06:47 [ 19] [ 3] [418] +15:06:47 [ 22] [ 3] [021] +15:06:47 [ 32] [ 6] [621354] +15:06:47 [ 35] [ 27] [1808931300012745=1803500076] +15:06:47 [ 37] [ 12] [507904989320] +15:06:47 [ 38] [ 6] [779054] +15:06:47 [ 39] [ 2] [00] +15:06:47 [ 41] [ 8] [01012300] +15:06:47 [ 49] [ 3] [418] +15:06:47 [ 52] [ 16] [1A686361C36EB197] +15:06:47 [ 54] [ 20] [1001418C000306000600] +15:06:47 ============================================================================ +15:06:47 Sending to : +15:06:47 ============================================================================ +15:06:47 + + +waiting on router queue for slot.... +15:06:48 ============================================================================ +15:06:48 Slot Id : <498> +15:06:48 Transaction Type : RESPONSE +15:06:48 Received From : +15:06:48 ============================================================================ +15:06:48 FNo. Len. Field Value +15:06:48 ============================================================================ +15:06:48 [ 1] [ 4] [0210] +15:06:48 [ 2] [ 16] [1808931300012745] +15:06:48 [ 3] [ 6] [011000] +15:06:48 [ 4] [ 12] [000100000000] +15:06:48 [ 6] [ 12] [000100000000] +15:06:48 [ 7] [ 10] [0320150638] +15:06:48 [ 11] [ 6] [779054] +15:06:48 [ 12] [ 6] [150638] +15:06:48 [ 13] [ 4] [0320] +15:06:48 [ 18] [ 4] [6011] +15:06:48 [ 19] [ 3] [418] +15:06:48 [ 22] [ 3] [021] +15:06:48 [ 32] [ 6] [621354] +15:06:48 [ 35] [ 27] [1808931300012745=1803500076] +15:06:48 [ 37] [ 12] [507904989320] +15:06:48 [ 38] [ 6] [779054] +15:06:48 [ 39] [ 2] [00] +15:06:48 [ 41] [ 8] [01012300] +15:06:48 [ 49] [ 3] [418] +15:06:48 [ 52] [ 16] [1A686361C36EB197] +15:06:48 [ 54] [ 20] [1001418C000306000600] +15:06:48 ============================================================================ +15:06:48 Calculate Source COMM Id = 0 +15:06:48 ============================================================================ +15:06:48 + + +waiting on router queue for slot.... +15:06:52 ============================================================================ +15:06:52 Slot Id : <473> +15:06:52 Transaction Type : REQUEST +15:06:52 Received From : +15:06:52 ============================================================================ +15:06:52 FNo. Len. Field Value +15:06:52 ============================================================================ +15:06:52 [ 1] [ 4] [0800] +15:06:52 [ 2] [ 5] [02531] +15:06:52 [ 3] [ 6] [579158] +15:06:52 [ 7] [ 10] [0320080652] +15:06:52 [ 11] [ 6] [807289] +15:06:52 [ 15] [ 10] [0320080652] +15:06:52 [ 37] [ 11] [57915807289] +15:06:52 [ 70] [ 3] [001] +15:06:52 ============================================================================ +15:06:52 + + +waiting on router queue for slot.... +15:06:52 ============================================================================ +15:06:52 Slot Id : <473> +15:06:52 Transaction Type : RESPONSE +15:06:52 Received From : +15:06:52 ============================================================================ +15:06:52 FNo. Len. Field Value +15:06:52 ============================================================================ +15:06:52 [ 1] [ 4] [0810] +15:06:52 [ 7] [ 10] [0320080652] +15:06:52 [ 11] [ 6] [807289] +15:06:52 [ 15] [ 4] [0320] +15:06:52 [ 37] [ 12] [57915807289] +15:06:52 [ 39] [ 2] [00] +15:06:52 [ 70] [ 3] [001] +15:06:52 ============================================================================ +15:06:52 Sending to : +15:06:52 ============================================================================ +15:06:52 + + +waiting on router queue for slot.... +15:06:58 ============================================================================ +15:06:58 Slot Id : <476> +15:06:58 Transaction Type : REQUEST +15:06:58 Received From : +15:06:58 ============================================================================ +15:06:58 FNo. Len. Field Value +15:06:58 ============================================================================ +15:06:58 [ 1] [ 4] [0800] +15:06:58 [ 7] [ 10] [0320080605] +15:06:58 [ 11] [ 6] [156928] +15:06:58 [ 70] [ 3] [301] +15:06:58 ============================================================================ +15:06:58 + + +waiting on router queue for slot.... +15:06:58 Sending to : +15:06:58 ============================================================================ +15:06:58 ============================================================================ +15:06:58 Slot Id : <476> +15:06:58 Transaction Type : RESPONSE +15:06:58 Received From : +15:06:58 ============================================================================ +15:06:58 FNo. Len. Field Value +15:06:58 ============================================================================ +15:06:58 [ 1] [ 4] [0810] +15:06:58 [ 7] [ 10] [0320080605] +15:06:58 [ 11] [ 6] [156928] +15:06:58 [ 39] [ 2] [00] +15:06:58 [ 70] [ 3] [301] +15:06:58 ============================================================================ +15:06:58 Calculate Source COMM Id = 2 +15:06:58 ============================================================================ +15:06:58 + + +waiting on router queue for slot.... +15:07:06 ============================================================================ +15:07:06 Slot Id : <489> +15:07:06 Transaction Type : REQUEST +15:07:06 Received From : +15:07:06 ============================================================================ +15:07:06 FNo. Len. Field Value +15:07:06 ============================================================================ +15:07:06 [ 1] [ 4] [0200] +15:07:06 [ 2] [ 16] [6688990040082719] +15:07:06 [ 3] [ 6] [010000] +15:07:06 [ 4] [ 12] [000040000000] +15:07:06 [ 7] [ 10] [0320150701] +15:07:06 [ 11] [ 6] [779139] +15:07:06 [ 12] [ 6] [150701] +15:07:06 [ 13] [ 4] [0320] +15:07:06 [ 15] [ 4] [0320] +15:07:06 [ 18] [ 4] [6011] +15:07:06 [ 22] [ 3] [900] +15:07:06 [ 25] [ 2] [02] +15:07:06 [ 28] [ 9] [D00002000] +15:07:06 [ 32] [ 6] [621354] +15:07:06 [ 35] [ 37] [6688990040082719=98011261386156500000] +15:07:06 [ 37] [ 12] [507904381192] +15:07:06 [ 41] [ 8] [03003700] +15:07:06 [ 42] [ 15] [NATIVE ] +15:07:06 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +15:07:06 [ 49] [ 3] [418] +15:07:06 [ 52] [ 16] [D28D8675129D3A36] +15:07:06 ============================================================================ +15:07:06 + + +waiting on router queue for slot.... +15:07:06 Sending to : +15:07:06 ============================================================================ +15:07:06 Sending to : +15:07:06 ============================================================================ +15:07:06 ============================================================================ +15:07:06 Slot Id : <489> +15:07:06 Transaction Type : REQUEST +15:07:06 Received From : +15:07:06 ============================================================================ +15:07:06 FNo. Len. Field Value +15:07:06 ============================================================================ +15:07:06 [ 1] [ 4] [0200] +15:07:06 [ 2] [ 16] [6688990040082719] +15:07:06 [ 3] [ 6] [010000] +15:07:06 [ 4] [ 12] [000040000000] +15:07:06 [ 7] [ 10] [0320150701] +15:07:06 [ 11] [ 6] [779139] +15:07:06 [ 12] [ 6] [150701] +15:07:06 [ 13] [ 4] [0320] +15:07:06 [ 15] [ 4] [0320] +15:07:06 [ 18] [ 4] [6011] +15:07:06 [ 22] [ 3] [900] +15:07:06 [ 25] [ 2] [02] +15:07:06 [ 28] [ 9] [D00002000] +15:07:06 [ 32] [ 6] [621354] +15:07:06 [ 35] [ 37] [6688990040082719=98011261386156500000] +15:07:06 [ 37] [ 12] [507904381192] +15:07:06 [ 41] [ 8] [03003700] +15:07:06 [ 42] [ 15] [NATIVE ] +15:07:06 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +15:07:06 [ 49] [ 3] [418] +15:07:06 [ 52] [ 16] [D28D8675129D3A36] +15:07:06 ============================================================================ +15:07:06 + + +waiting on router queue for slot.... +15:07:06 Sending to : +15:07:06 ============================================================================ +15:07:06 ============================================================================ +15:07:06 Slot Id : <489> +15:07:06 Transaction Type : REQUEST +15:07:06 Received From : +15:07:06 ============================================================================ +15:07:06 FNo. Len. Field Value +15:07:06 ============================================================================ +15:07:06 [ 1] [ 4] [0200] +15:07:06 [ 2] [ 16] [6688990040082719] +15:07:06 [ 3] [ 6] [010000] +15:07:06 [ 4] [ 12] [000040000000] +15:07:06 [ 7] [ 10] [0320150701] +15:07:06 [ 11] [ 6] [779139] +15:07:06 [ 12] [ 6] [150701] +15:07:06 [ 13] [ 4] [0320] +15:07:06 [ 15] [ 4] [0320] +15:07:06 [ 18] [ 4] [6011] +15:07:06 [ 22] [ 3] [900] +15:07:06 [ 25] [ 2] [02] +15:07:06 [ 28] [ 9] [D00002000] +15:07:06 [ 32] [ 6] [621354] +15:07:06 [ 35] [ 37] [6688990040082719=98011261386156500000] +15:07:06 [ 37] [ 12] [507904381192] +15:07:06 [ 41] [ 8] [03003700] +15:07:06 [ 42] [ 15] [NATIVE ] +15:07:06 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +15:07:06 [ 49] [ 3] [418] +15:07:06 [ 52] [ 16] [44D16A19BF409331] +15:07:06 ============================================================================ +15:07:06 + + +waiting on router queue for slot.... +15:07:06 Sending to : <4> +15:07:06 ============================================================================ +15:07:07 ============================================================================ +15:07:07 Slot Id : <489> +15:07:07 Transaction Type : RESPONSE +15:07:07 Received From : +15:07:07 ============================================================================ +15:07:07 FNo. Len. Field Value +15:07:07 ============================================================================ +15:07:07 [ 1] [ 4] [0210] +15:07:07 [ 2] [ 16] [6688990040082719] +15:07:07 [ 3] [ 6] [010000] +15:07:07 [ 4] [ 12] [000040000000] +15:07:07 [ 11] [ 6] [779139] +15:07:07 [ 12] [ 6] [150701] +15:07:07 [ 15] [ 4] [0320] +15:07:07 [ 18] [ 4] [6011] +15:07:07 [ 32] [ 6] [621354] +15:07:07 [ 35] [ 37] [6688990040082719=98011261386156500000] +15:07:07 [ 37] [ 12] [507904381192] +15:07:07 [ 38] [ 6] [044005] +15:07:07 [ 39] [ 2] [00] +15:07:07 [ 41] [ 8] [03003700] +15:07:07 [ 49] [ 3] [418] +15:07:07 [ 54] [ 20] [0002764C000000122725] +15:07:07 ============================================================================ +15:07:07 Sending to : +15:07:07 ============================================================================ +15:07:07 + + +waiting on router queue for slot.... +15:07:09 ============================================================================ +15:07:09 Slot Id : <489> +15:07:09 Transaction Type : RESPONSE +15:07:09 Received From : +15:07:09 ============================================================================ +15:07:09 FNo. Len. Field Value +15:07:09 ============================================================================ +15:07:09 [ 1] [ 4] [0210] +15:07:09 [ 2] [ 16] [6688990040082719] +15:07:09 [ 3] [ 6] [010000] +15:07:09 [ 4] [ 12] [000040000000] +15:07:09 [ 11] [ 6] [779139] +15:07:09 [ 12] [ 6] [150701] +15:07:09 [ 15] [ 4] [0320] +15:07:09 [ 18] [ 4] [6011] +15:07:09 [ 32] [ 6] [621354] +15:07:09 [ 35] [ 37] [6688990040082719=98011261386156500000] +15:07:09 [ 37] [ 12] [507904381192] +15:07:09 [ 38] [ 6] [044005] +15:07:09 [ 39] [ 2] [00] +15:07:09 [ 41] [ 8] [03003700] +15:07:09 [ 49] [ 3] [418] +15:07:09 [ 54] [ 20] [0002764C000000122725] +15:07:09 ============================================================================ +15:07:09 Calculate Source COMM Id = 0 +15:07:09 ============================================================================ +15:07:09 + + +waiting on router queue for slot.... +15:07:09 ============================================================================ +15:07:09 Slot Id : <477> +15:07:09 Transaction Type : REQUEST +15:07:09 Received From : +15:07:09 ============================================================================ +15:07:09 FNo. Len. Field Value +15:07:09 ============================================================================ +15:07:09 [ 1] [ 4] [0800] +15:07:09 [ 7] [ 10] [0320080616] +15:07:09 [ 11] [ 6] [156929] +15:07:09 [ 70] [ 3] [301] +15:07:09 ============================================================================ +15:07:09 + + +waiting on router queue for slot.... +15:07:09 Sending to : +15:07:09 ============================================================================ +15:07:09 ============================================================================ +15:07:09 Slot Id : <477> +15:07:09 Transaction Type : RESPONSE +15:07:09 Received From : +15:07:09 ============================================================================ +15:07:09 FNo. Len. Field Value +15:07:09 ============================================================================ +15:07:09 [ 1] [ 4] [0810] +15:07:09 [ 7] [ 10] [0320080616] +15:07:09 [ 11] [ 6] [156929] +15:07:09 [ 39] [ 2] [00] +15:07:09 [ 70] [ 3] [301] +15:07:09 ============================================================================ +15:07:09 Calculate Source COMM Id = 2 +15:07:09 ============================================================================ +15:07:09 + + +waiting on router queue for slot.... +15:07:14 ============================================================================ +15:07:14 Slot Id : <483> +15:07:14 Transaction Type : REQUEST +15:07:14 Received From : +15:07:14 ============================================================================ +15:07:14 FNo. Len. Field Value +15:07:14 ============================================================================ +15:07:14 [ 1] [ 4] [0200] +15:07:14 [ 2] [ 16] [6213545000384630] +15:07:14 [ 3] [ 6] [300000] +15:07:14 [ 4] [ 12] [000000000000] +15:07:14 [ 7] [ 10] [0320150504] +15:07:14 [ 11] [ 6] [949492] +15:07:14 [ 12] [ 6] [150504] +15:07:14 [ 13] [ 4] [0320] +15:07:14 [ 15] [ 4] [0320] +15:07:14 [ 18] [ 4] [6011] +15:07:14 [ 19] [ 3] [418] +15:07:14 [ 22] [ 3] [021] +15:07:14 [ 25] [ 2] [01] +15:07:14 [ 28] [ 9] [D00000000] +15:07:14 [ 32] [ 6] [668899] +15:07:14 [ 35] [ 32] [6213545000384630=491212018463282] +15:07:14 [ 37] [ 12] [507900957537] +15:07:14 [ 41] [ 8] [03310001] +15:07:14 [ 42] [ 15] [APT ] +15:07:14 [ 43] [ 40] [ THALATH THALATH LAO] +15:07:14 [ 49] [ 3] [418] +15:07:14 [ 52] [ 16] [5F02CC3DD69698C1] +15:07:14 ============================================================================ +15:07:14 + + +waiting on router queue for slot.... +15:07:14 Sending to : +15:07:14 ============================================================================ +15:07:14 Sending to : +15:07:14 ============================================================================ +15:07:14 ============================================================================ +15:07:14 Slot Id : <483> +15:07:14 Transaction Type : REQUEST +15:07:14 Received From : +15:07:14 ============================================================================ +15:07:14 FNo. Len. Field Value +15:07:14 ============================================================================ +15:07:14 [ 1] [ 4] [0200] +15:07:14 [ 2] [ 16] [6213545000384630] +15:07:14 [ 3] [ 6] [300000] +15:07:14 [ 4] [ 12] [000000000000] +15:07:14 [ 7] [ 10] [0320150504] +15:07:14 [ 11] [ 6] [949492] +15:07:14 [ 12] [ 6] [150504] +15:07:14 [ 13] [ 4] [0320] +15:07:14 [ 15] [ 4] [0320] +15:07:14 [ 18] [ 4] [6011] +15:07:14 [ 19] [ 3] [418] +15:07:14 [ 22] [ 3] [021] +15:07:14 [ 25] [ 2] [01] +15:07:14 [ 28] [ 9] [D00000000] +15:07:14 [ 32] [ 6] [668899] +15:07:14 [ 35] [ 32] [6213545000384630=491212018463282] +15:07:14 [ 37] [ 12] [507900957537] +15:07:14 [ 41] [ 8] [03310001] +15:07:14 [ 42] [ 15] [APT ] +15:07:14 [ 43] [ 40] [ THALATH THALATH LAO] +15:07:14 [ 49] [ 3] [418] +15:07:14 [ 52] [ 16] [5F02CC3DD69698C1] +15:07:14 ============================================================================ +15:07:14 + + +waiting on router queue for slot.... +15:07:14 Sending to : +15:07:14 ============================================================================ +15:07:14 ============================================================================ +15:07:14 Slot Id : <483> +15:07:14 Transaction Type : REQUEST +15:07:14 Received From : +15:07:14 ============================================================================ +15:07:14 FNo. Len. Field Value +15:07:14 ============================================================================ +15:07:14 [ 1] [ 4] [0200] +15:07:14 [ 2] [ 16] [6213545000384630] +15:07:14 [ 3] [ 6] [300000] +15:07:14 [ 4] [ 12] [000000000000] +15:07:14 [ 7] [ 10] [0320150504] +15:07:14 [ 11] [ 6] [949492] +15:07:14 [ 12] [ 6] [150504] +15:07:14 [ 13] [ 4] [0320] +15:07:14 [ 15] [ 4] [0320] +15:07:14 [ 18] [ 4] [6011] +15:07:14 [ 19] [ 3] [418] +15:07:14 [ 22] [ 3] [021] +15:07:14 [ 25] [ 2] [01] +15:07:14 [ 28] [ 9] [D00000000] +15:07:14 [ 32] [ 6] [668899] +15:07:14 [ 35] [ 32] [6213545000384630=491212018463282] +15:07:14 [ 37] [ 12] [507900957537] +15:07:14 [ 41] [ 8] [03310001] +15:07:14 [ 42] [ 15] [APT ] +15:07:14 [ 43] [ 40] [ THALATH THALATH LAO] +15:07:14 [ 49] [ 3] [418] +15:07:14 [ 52] [ 16] [55E6FE469AC2D641] +15:07:14 ============================================================================ +15:07:14 + + +waiting on router queue for slot.... +15:07:14 Sending to : <0> +15:07:14 ============================================================================ +15:07:14 ============================================================================ +15:07:14 Slot Id : <483> +15:07:14 Transaction Type : RESPONSE +15:07:14 Received From : +15:07:14 ============================================================================ +15:07:14 FNo. Len. Field Value +15:07:14 ============================================================================ +15:07:14 [ 1] [ 4] [0210] +15:07:14 [ 2] [ 16] [6213545000384630] +15:07:14 [ 3] [ 6] [300000] +15:07:14 [ 4] [ 12] [000000000000] +15:07:14 [ 7] [ 10] [0320150504] +15:07:14 [ 11] [ 6] [949492] +15:07:14 [ 12] [ 6] [150504] +15:07:14 [ 13] [ 4] [0320] +15:07:14 [ 15] [ 4] [0320] +15:07:14 [ 18] [ 4] [6011] +15:07:14 [ 19] [ 3] [418] +15:07:14 [ 32] [ 6] [668899] +15:07:14 [ 35] [ 32] [6213545000384630=491212018463282] +15:07:14 [ 37] [ 12] [507900957537] +15:07:14 [ 38] [ 6] [822720] +15:07:14 [ 39] [ 2] [00] +15:07:14 [ 41] [ 8] [03310001] +15:07:14 [ 49] [ 3] [418] +15:07:14 [ 54] [ 40] [0001418C0001657127590002418C000165712759] +15:07:14 ============================================================================ +15:07:14 Sending to : +15:07:14 ============================================================================ +15:07:14 + + +waiting on router queue for slot.... +15:07:16 ============================================================================ +15:07:16 Slot Id : <483> +15:07:16 Transaction Type : RESPONSE +15:07:16 Received From : +15:07:16 ============================================================================ +15:07:16 FNo. Len. Field Value +15:07:16 ============================================================================ +15:07:16 [ 1] [ 4] [0210] +15:07:16 [ 2] [ 16] [6213545000384630] +15:07:16 [ 3] [ 6] [300000] +15:07:16 [ 4] [ 12] [000000000000] +15:07:16 [ 7] [ 10] [0320150504] +15:07:16 [ 11] [ 6] [949492] +15:07:16 [ 12] [ 6] [150504] +15:07:16 [ 13] [ 4] [0320] +15:07:16 [ 15] [ 4] [0320] +15:07:16 [ 18] [ 4] [6011] +15:07:16 [ 19] [ 3] [418] +15:07:16 [ 32] [ 6] [668899] +15:07:16 [ 35] [ 32] [6213545000384630=491212018463282] +15:07:16 [ 37] [ 12] [507900957537] +15:07:16 [ 38] [ 6] [822720] +15:07:16 [ 39] [ 2] [00] +15:07:16 [ 41] [ 8] [03310001] +15:07:16 [ 49] [ 3] [418] +15:07:16 [ 54] [ 40] [0001418C0001657127590002418C000165712759] +15:07:16 ============================================================================ +15:07:16 Calculate Source COMM Id = 4 +15:07:16 ============================================================================ +15:07:16 + + +waiting on router queue for slot.... +15:07:21 ============================================================================ +15:07:21 Slot Id : <486> +15:07:21 Transaction Type : REQUEST +15:07:21 Received From : +15:07:21 ============================================================================ +15:07:21 FNo. Len. Field Value +15:07:21 ============================================================================ +15:07:21 [ 1] [ 4] [0800] +15:07:21 [ 7] [ 10] [0320080628] +15:07:21 [ 11] [ 6] [156930] +15:07:21 [ 70] [ 3] [301] +15:07:21 ============================================================================ +15:07:21 + + +waiting on router queue for slot.... +15:07:21 Sending to : +15:07:21 ============================================================================ +15:07:21 ============================================================================ +15:07:21 Slot Id : <486> +15:07:21 Transaction Type : RESPONSE +15:07:21 Received From : +15:07:21 ============================================================================ +15:07:21 FNo. Len. Field Value +15:07:21 ============================================================================ +15:07:21 [ 1] [ 4] [0810] +15:07:21 [ 7] [ 10] [0320080628] +15:07:21 [ 11] [ 6] [156930] +15:07:21 [ 39] [ 2] [00] +15:07:21 [ 70] [ 3] [301] +15:07:21 ============================================================================ +15:07:21 Calculate Source COMM Id = 2 +15:07:21 ============================================================================ +15:07:21 + + +waiting on router queue for slot.... +15:07:29 ============================================================================ +15:07:29 Slot Id : <474> +15:07:29 Transaction Type : REQUEST +15:07:29 Received From : +15:07:29 ============================================================================ +15:07:29 FNo. Len. Field Value +15:07:29 ============================================================================ +15:07:29 [ 1] [ 4] [0200] +15:07:29 [ 2] [ 16] [6688990103406409] +15:07:29 [ 3] [ 6] [010000] +15:07:29 [ 4] [ 12] [000010000000] +15:07:29 [ 7] [ 10] [0320080635] +15:07:29 [ 11] [ 6] [269920] +15:07:29 [ 12] [ 6] [150635] +15:07:29 [ 13] [ 4] [0320] +15:07:29 [ 14] [ 4] [4301] +15:07:29 [ 15] [ 4] [0320] +15:07:29 [ 18] [ 4] [6011] +15:07:29 [ 19] [ 3] [418] +15:07:29 [ 22] [ 3] [021] +15:07:29 [ 25] [ 2] [01] +15:07:29 [ 28] [ 9] [D00002000] +15:07:29 [ 32] [ 6] [180893] +15:07:29 [ 35] [ 37] [6688990103406409=43011231640925900000] +15:07:29 [ 37] [ 12] [507908269920] +15:07:29 [ 41] [ 8] [0264UDXH] +15:07:29 [ 42] [ 15] [999999 ] +15:07:29 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +15:07:29 [ 49] [ 3] [418] +15:07:29 [ 52] [ 16] [7CEF71AC3DEAB576] +15:07:29 ============================================================================ +15:07:29 + + +waiting on router queue for slot.... +15:07:29 Sending to : +15:07:29 ============================================================================ +15:07:29 Sending to : +15:07:29 ============================================================================ +15:07:29 ============================================================================ +15:07:29 Slot Id : <474> +15:07:29 Transaction Type : REQUEST +15:07:29 Received From : +15:07:29 ============================================================================ +15:07:29 FNo. Len. Field Value +15:07:29 ============================================================================ +15:07:29 [ 1] [ 4] [0200] +15:07:29 [ 2] [ 16] [6688990103406409] +15:07:29 [ 3] [ 6] [010000] +15:07:29 [ 4] [ 12] [000010000000] +15:07:29 [ 7] [ 10] [0320080635] +15:07:29 [ 11] [ 6] [269920] +15:07:29 [ 12] [ 6] [150635] +15:07:29 [ 13] [ 4] [0320] +15:07:29 [ 14] [ 4] [4301] +15:07:29 [ 15] [ 4] [0320] +15:07:29 [ 18] [ 4] [6011] +15:07:29 [ 19] [ 3] [418] +15:07:29 [ 22] [ 3] [021] +15:07:29 [ 25] [ 2] [01] +15:07:29 [ 28] [ 9] [D00002000] +15:07:29 [ 32] [ 6] [180893] +15:07:29 [ 35] [ 37] [6688990103406409=43011231640925900000] +15:07:29 [ 37] [ 12] [507908269920] +15:07:29 [ 41] [ 8] [0264UDXH] +15:07:29 [ 42] [ 15] [999999 ] +15:07:29 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +15:07:29 [ 49] [ 3] [418] +15:07:29 [ 52] [ 16] [7CEF71AC3DEAB576] +15:07:29 ============================================================================ +15:07:29 + + +waiting on router queue for slot.... +15:07:29 Sending to : +15:07:29 ============================================================================ +15:07:29 ============================================================================ +15:07:29 Slot Id : <474> +15:07:29 Transaction Type : REQUEST +15:07:29 Received From : +15:07:29 ============================================================================ +15:07:29 FNo. Len. Field Value +15:07:29 ============================================================================ +15:07:29 [ 1] [ 4] [0200] +15:07:29 [ 2] [ 16] [6688990103406409] +15:07:29 [ 3] [ 6] [010000] +15:07:29 [ 4] [ 12] [000010000000] +15:07:29 [ 7] [ 10] [0320080635] +15:07:29 [ 11] [ 6] [269920] +15:07:29 [ 12] [ 6] [150635] +15:07:29 [ 13] [ 4] [0320] +15:07:29 [ 14] [ 4] [4301] +15:07:29 [ 15] [ 4] [0320] +15:07:29 [ 18] [ 4] [6011] +15:07:29 [ 19] [ 3] [418] +15:07:29 [ 22] [ 3] [021] +15:07:29 [ 25] [ 2] [01] +15:07:29 [ 28] [ 9] [D00002000] +15:07:29 [ 32] [ 6] [180893] +15:07:29 [ 35] [ 37] [6688990103406409=43011231640925900000] +15:07:29 [ 37] [ 12] [507908269920] +15:07:29 [ 41] [ 8] [0264UDXH] +15:07:29 [ 42] [ 15] [999999 ] +15:07:29 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +15:07:29 [ 49] [ 3] [418] +15:07:29 [ 52] [ 16] [39CD6EBB0DD71D28] +15:07:29 ============================================================================ +15:07:29 + + +waiting on router queue for slot.... +15:07:29 Sending to : <0> +15:07:29 ============================================================================ +15:07:29 ============================================================================ +15:07:29 Slot Id : <474> +15:07:29 Transaction Type : RESPONSE +15:07:29 Received From : +15:07:29 ============================================================================ +15:07:29 FNo. Len. Field Value +15:07:29 ============================================================================ +15:07:29 [ 1] [ 4] [0210] +15:07:29 [ 2] [ 16] [6688990103406409] +15:07:29 [ 3] [ 6] [010000] +15:07:29 [ 4] [ 12] [000010000000] +15:07:29 [ 7] [ 10] [0320080635] +15:07:29 [ 11] [ 6] [269920] +15:07:29 [ 12] [ 6] [150635] +15:07:29 [ 13] [ 4] [0320] +15:07:29 [ 15] [ 4] [0320] +15:07:29 [ 18] [ 4] [6011] +15:07:29 [ 19] [ 3] [418] +15:07:29 [ 22] [ 3] [021] +15:07:29 [ 32] [ 6] [180893] +15:07:29 [ 35] [ 37] [6688990103406409=43011231640925900000] +15:07:29 [ 37] [ 12] [507908269920] +15:07:29 [ 39] [ 2] [14] +15:07:29 [ 41] [ 8] [0264UDXH] +15:07:29 [ 49] [ 3] [418] +15:07:29 ============================================================================ +15:07:29 Sending to : +15:07:29 ============================================================================ +15:07:29 + + +waiting on router queue for slot.... +15:07:30 ============================================================================ +15:07:30 Slot Id : <474> +15:07:30 Transaction Type : RESPONSE +15:07:30 Received From : +15:07:30 ============================================================================ +15:07:30 FNo. Len. Field Value +15:07:30 ============================================================================ +15:07:30 [ 1] [ 4] [0210] +15:07:30 [ 2] [ 16] [6688990103406409] +15:07:30 [ 3] [ 6] [010000] +15:07:30 [ 4] [ 12] [000010000000] +15:07:30 [ 7] [ 10] [0320080635] +15:07:30 [ 11] [ 6] [269920] +15:07:30 [ 12] [ 6] [150635] +15:07:30 [ 13] [ 4] [0320] +15:07:30 [ 15] [ 4] [0320] +15:07:30 [ 18] [ 4] [6011] +15:07:30 [ 19] [ 3] [418] +15:07:30 [ 22] [ 3] [021] +15:07:30 [ 32] [ 6] [180893] +15:07:30 [ 35] [ 37] [6688990103406409=43011231640925900000] +15:07:30 [ 37] [ 12] [507908269920] +15:07:30 [ 39] [ 2] [14] +15:07:30 [ 41] [ 8] [0264UDXH] +15:07:30 [ 49] [ 3] [418] +15:07:30 ============================================================================ +15:07:30 Calculate Source COMM Id = 2 +15:07:30 ============================================================================ +15:07:30 + + +waiting on router queue for slot.... +15:07:37 ============================================================================ +15:07:37 Slot Id : <472> +15:07:37 Transaction Type : REQUEST +15:07:37 Received From : +15:07:37 ============================================================================ +15:07:37 FNo. Len. Field Value +15:07:37 ============================================================================ +15:07:37 [ 1] [ 4] [0200] +15:07:37 [ 2] [ 16] [6213544002037478] +15:07:37 [ 3] [ 6] [010000] +15:07:37 [ 4] [ 12] [000020000000] +15:07:37 [ 7] [ 10] [0320150527] +15:07:37 [ 11] [ 6] [949503] +15:07:37 [ 12] [ 6] [150527] +15:07:37 [ 13] [ 4] [0320] +15:07:37 [ 15] [ 4] [0320] +15:07:37 [ 18] [ 4] [6011] +15:07:37 [ 19] [ 3] [418] +15:07:37 [ 22] [ 3] [021] +15:07:37 [ 25] [ 2] [01] +15:07:37 [ 28] [ 9] [D00002000] +15:07:37 [ 32] [ 6] [668899] +15:07:37 [ 35] [ 32] [6213544002037478=491212013747220] +15:07:37 [ 37] [ 12] [507900146732] +15:07:37 [ 41] [ 8] [03020005] +15:07:37 [ 42] [ 15] [APT ] +15:07:37 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +15:07:37 [ 49] [ 3] [418] +15:07:37 [ 52] [ 16] [54E805C0006106DC] +15:07:37 ============================================================================ +15:07:37 + + +waiting on router queue for slot.... +15:07:37 Sending to : +15:07:37 ============================================================================ +15:07:37 Sending to : +15:07:37 ============================================================================ +15:07:37 ============================================================================ +15:07:37 Slot Id : <472> +15:07:37 Transaction Type : REQUEST +15:07:37 Received From : +15:07:37 ============================================================================ +15:07:37 FNo. Len. Field Value +15:07:37 ============================================================================ +15:07:37 [ 1] [ 4] [0200] +15:07:37 [ 2] [ 16] [6213544002037478] +15:07:37 [ 3] [ 6] [010000] +15:07:37 [ 4] [ 12] [000020000000] +15:07:37 [ 7] [ 10] [0320150527] +15:07:37 [ 11] [ 6] [949503] +15:07:37 [ 12] [ 6] [150527] +15:07:37 [ 13] [ 4] [0320] +15:07:37 [ 15] [ 4] [0320] +15:07:37 [ 18] [ 4] [6011] +15:07:37 [ 19] [ 3] [418] +15:07:37 [ 22] [ 3] [021] +15:07:37 [ 25] [ 2] [01] +15:07:37 [ 28] [ 9] [D00002000] +15:07:37 [ 32] [ 6] [668899] +15:07:37 [ 35] [ 32] [6213544002037478=491212013747220] +15:07:37 [ 37] [ 12] [507900146732] +15:07:37 [ 41] [ 8] [03020005] +15:07:37 [ 42] [ 15] [APT ] +15:07:37 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +15:07:37 [ 49] [ 3] [418] +15:07:37 [ 52] [ 16] [54E805C0006106DC] +15:07:37 ============================================================================ +15:07:37 + + +waiting on router queue for slot.... +15:07:37 Sending to : +15:07:37 ============================================================================ +15:07:37 ============================================================================ +15:07:37 Slot Id : <472> +15:07:37 Transaction Type : REQUEST +15:07:37 Received From : +15:07:37 ============================================================================ +15:07:37 FNo. Len. Field Value +15:07:37 ============================================================================ +15:07:37 [ 1] [ 4] [0200] +15:07:37 [ 2] [ 16] [6213544002037478] +15:07:37 [ 3] [ 6] [010000] +15:07:37 [ 4] [ 12] [000020000000] +15:07:37 [ 7] [ 10] [0320150527] +15:07:37 [ 11] [ 6] [949503] +15:07:37 [ 12] [ 6] [150527] +15:07:37 [ 13] [ 4] [0320] +15:07:37 [ 15] [ 4] [0320] +15:07:37 [ 18] [ 4] [6011] +15:07:37 [ 19] [ 3] [418] +15:07:37 [ 22] [ 3] [021] +15:07:37 [ 25] [ 2] [01] +15:07:37 [ 28] [ 9] [D00002000] +15:07:37 [ 32] [ 6] [668899] +15:07:37 [ 35] [ 32] [6213544002037478=491212013747220] +15:07:37 [ 37] [ 12] [507900146732] +15:07:37 [ 41] [ 8] [03020005] +15:07:37 [ 42] [ 15] [APT ] +15:07:37 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +15:07:37 [ 49] [ 3] [418] +15:07:37 [ 52] [ 16] [BDD074B6DEAB63EE] +15:07:37 ============================================================================ +15:07:37 + + +waiting on router queue for slot.... +15:07:37 Sending to : <0> +15:07:37 ============================================================================ +15:07:38 ============================================================================ +15:07:38 Slot Id : <472> +15:07:38 Transaction Type : RESPONSE +15:07:38 Received From : +15:07:38 ============================================================================ +15:07:38 FNo. Len. Field Value +15:07:38 ============================================================================ +15:07:38 [ 1] [ 4] [0210] +15:07:38 [ 2] [ 16] [6213544002037478] +15:07:38 [ 3] [ 6] [010000] +15:07:38 [ 4] [ 12] [000020000000] +15:07:38 [ 7] [ 10] [0320150527] +15:07:38 [ 11] [ 6] [949503] +15:07:38 [ 12] [ 6] [150527] +15:07:38 [ 13] [ 4] [0320] +15:07:38 [ 15] [ 4] [0320] +15:07:38 [ 18] [ 4] [6011] +15:07:38 [ 19] [ 3] [418] +15:07:38 [ 32] [ 6] [668899] +15:07:38 [ 35] [ 32] [6213544002037478=491212013747220] +15:07:38 [ 37] [ 12] [507900146732] +15:07:38 [ 38] [ 6] [809091] +15:07:38 [ 39] [ 2] [00] +15:07:38 [ 41] [ 8] [03020005] +15:07:38 [ 49] [ 3] [418] +15:07:38 [ 54] [ 40] [0001418C0000368896980002418C000036889698] +15:07:38 ============================================================================ +15:07:38 Sending to : +15:07:38 ============================================================================ +15:07:38 + + +waiting on router queue for slot.... +15:07:39 ============================================================================ +15:07:39 Slot Id : <472> +15:07:39 Transaction Type : RESPONSE +15:07:39 Received From : +15:07:39 ============================================================================ +15:07:39 FNo. Len. Field Value +15:07:39 ============================================================================ +15:07:39 [ 1] [ 4] [0210] +15:07:39 [ 2] [ 16] [6213544002037478] +15:07:39 [ 3] [ 6] [010000] +15:07:39 [ 4] [ 12] [000020000000] +15:07:39 [ 7] [ 10] [0320150527] +15:07:39 [ 11] [ 6] [949503] +15:07:39 [ 12] [ 6] [150527] +15:07:39 [ 13] [ 4] [0320] +15:07:39 [ 15] [ 4] [0320] +15:07:39 [ 18] [ 4] [6011] +15:07:39 [ 19] [ 3] [418] +15:07:39 [ 32] [ 6] [668899] +15:07:39 [ 35] [ 32] [6213544002037478=491212013747220] +15:07:39 [ 37] [ 12] [507900146732] +15:07:39 [ 38] [ 6] [809091] +15:07:39 [ 39] [ 2] [00] +15:07:39 [ 41] [ 8] [03020005] +15:07:39 [ 49] [ 3] [418] +15:07:39 [ 54] [ 40] [0001418C0000368896980002418C000036889698] +15:07:39 ============================================================================ +15:07:39 Calculate Source COMM Id = 4 +15:07:39 ============================================================================ +15:07:39 + + +waiting on router queue for slot.... +15:07:41 ============================================================================ +15:07:41 Slot Id : <6> +15:07:41 Transaction Type : REQUEST +15:07:41 Received From : +15:07:41 ============================================================================ +15:07:41 FNo. Len. Field Value +15:07:41 ============================================================================ +15:07:41 [ 1] [ 4] [0200] +15:07:41 [ 2] [ 16] [6688990101814901] +15:07:41 [ 3] [ 6] [010000] +15:07:41 [ 4] [ 12] [000100000000] +15:07:41 [ 7] [ 10] [0320150737] +15:07:41 [ 11] [ 6] [779274] +15:07:41 [ 12] [ 6] [150737] +15:07:41 [ 13] [ 4] [0320] +15:07:41 [ 15] [ 4] [0320] +15:07:41 [ 18] [ 4] [6011] +15:07:41 [ 22] [ 3] [900] +15:07:41 [ 25] [ 2] [02] +15:07:41 [ 28] [ 9] [D00002000] +15:07:41 [ 32] [ 6] [621354] +15:07:41 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:07:41 [ 37] [ 12] [507904635737] +15:07:41 [ 41] [ 8] [17000800] +15:07:41 [ 42] [ 15] [NATIVE ] +15:07:41 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:07:41 [ 49] [ 3] [418] +15:07:41 [ 52] [ 16] [023A7BB3154447D9] +15:07:41 ============================================================================ +15:07:41 + + +waiting on router queue for slot.... +15:07:41 Sending to : +15:07:41 ============================================================================ +15:07:41 Sending to : +15:07:41 ============================================================================ +15:07:41 ============================================================================ +15:07:41 Slot Id : <485> +15:07:41 Transaction Type : REQUEST +15:07:41 Received From : +15:07:41 ============================================================================ +15:07:41 FNo. Len. Field Value +15:07:41 ============================================================================ +15:07:41 [ 1] [ 4] [0800] +15:07:41 [ 7] [ 10] [0320221929] +15:07:41 [ 11] [ 6] [151929] +15:07:41 [ 37] [ 12] [57915151929] +15:07:41 [ 70] [ 3] [301] +15:07:41 ============================================================================ +15:07:41 + + +waiting on router queue for slot.... +15:07:41 Sending to : +15:07:41 ============================================================================ +15:07:41 ============================================================================ +15:07:41 Slot Id : <485> +15:07:41 Transaction Type : RESPONSE +15:07:41 Received From : +15:07:41 ============================================================================ +15:07:41 FNo. Len. Field Value +15:07:41 ============================================================================ +15:07:41 [ 1] [ 4] [0810] +15:07:41 [ 7] [ 10] [0320221929] +15:07:41 [ 11] [ 6] [151929] +15:07:41 [ 37] [ 12] [579151519290] +15:07:41 [ 39] [ 2] [00] +15:07:41 [ 70] [ 3] [810] +15:07:41 ============================================================================ +15:07:41 Calculate Source COMM Id = 6 +15:07:41 ============================================================================ +15:07:41 + + +waiting on router queue for slot.... +15:07:42 ============================================================================ +15:07:42 Slot Id : <6> +15:07:42 Transaction Type : REQUEST +15:07:42 Received From : +15:07:42 ============================================================================ +15:07:42 FNo. Len. Field Value +15:07:42 ============================================================================ +15:07:42 [ 1] [ 4] [0200] +15:07:42 [ 2] [ 16] [6688990101814901] +15:07:42 [ 3] [ 6] [010000] +15:07:42 [ 4] [ 12] [000100000000] +15:07:42 [ 7] [ 10] [0320150737] +15:07:42 [ 11] [ 6] [779274] +15:07:42 [ 12] [ 6] [150737] +15:07:42 [ 13] [ 4] [0320] +15:07:42 [ 15] [ 4] [0320] +15:07:42 [ 18] [ 4] [6011] +15:07:42 [ 22] [ 3] [900] +15:07:42 [ 25] [ 2] [02] +15:07:42 [ 28] [ 9] [D00002000] +15:07:42 [ 32] [ 6] [621354] +15:07:42 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:07:42 [ 37] [ 12] [507904635737] +15:07:42 [ 41] [ 8] [17000800] +15:07:42 [ 42] [ 15] [NATIVE ] +15:07:42 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:07:42 [ 49] [ 3] [418] +15:07:42 [ 52] [ 16] [023A7BB3154447D9] +15:07:42 ============================================================================ +15:07:42 + + +waiting on router queue for slot.... +15:07:42 Sending to : +15:07:42 ============================================================================ +15:07:42 ============================================================================ +15:07:42 Slot Id : <6> +15:07:42 Transaction Type : REQUEST +15:07:42 Received From : +15:07:42 ============================================================================ +15:07:42 FNo. Len. Field Value +15:07:42 ============================================================================ +15:07:42 [ 1] [ 4] [0200] +15:07:42 [ 2] [ 16] [6688990101814901] +15:07:42 [ 3] [ 6] [010000] +15:07:42 [ 4] [ 12] [000100000000] +15:07:42 [ 7] [ 10] [0320150737] +15:07:42 [ 11] [ 6] [779274] +15:07:42 [ 12] [ 6] [150737] +15:07:42 [ 13] [ 4] [0320] +15:07:42 [ 15] [ 4] [0320] +15:07:42 [ 18] [ 4] [6011] +15:07:42 [ 22] [ 3] [900] +15:07:42 [ 25] [ 2] [02] +15:07:42 [ 28] [ 9] [D00002000] +15:07:42 [ 32] [ 6] [621354] +15:07:42 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:07:42 [ 37] [ 12] [507904635737] +15:07:42 [ 41] [ 8] [17000800] +15:07:42 [ 42] [ 15] [NATIVE ] +15:07:42 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:07:42 [ 49] [ 3] [418] +15:07:42 [ 52] [ 16] [69DF151F7689BFC2] +15:07:42 ============================================================================ +15:07:42 + + +waiting on router queue for slot.... +15:07:42 Sending to : <4> +15:07:42 ============================================================================ +15:07:42 ============================================================================ +15:07:42 Slot Id : <492> +15:07:42 Transaction Type : REQUEST +15:07:42 Received From : +15:07:42 ============================================================================ +15:07:42 FNo. Len. Field Value +15:07:42 ============================================================================ +15:07:42 [ 1] [ 4] [0200] +15:07:42 [ 2] [ 16] [1808930200039634] +15:07:42 [ 3] [ 6] [011000] +15:07:42 [ 4] [ 12] [000020000000] +15:07:42 [ 7] [ 10] [0320150737] +15:07:42 [ 11] [ 6] [779283] +15:07:42 [ 12] [ 6] [150737] +15:07:42 [ 13] [ 4] [0320] +15:07:42 [ 15] [ 4] [0320] +15:07:42 [ 18] [ 4] [6011] +15:07:42 [ 22] [ 3] [900] +15:07:42 [ 25] [ 2] [02] +15:07:42 [ 28] [ 9] [D00002000] +15:07:42 [ 32] [ 6] [621354] +15:07:42 [ 35] [ 27] [1808930200039634=1803500048] +15:07:42 [ 37] [ 12] [507905213920] +15:07:42 [ 41] [ 8] [01013000] +15:07:42 [ 42] [ 15] [NATIVE ] +15:07:42 [ 43] [ 40] [Sokpaluang Electric Vientiane LAO] +15:07:42 [ 49] [ 3] [418] +15:07:42 [ 52] [ 16] [B5E708F5C809C30C] +15:07:42 ============================================================================ +15:07:42 + + +waiting on router queue for slot.... +15:07:42 Sending to : +15:07:42 ============================================================================ +15:07:42 Sending to : +15:07:42 ============================================================================ +15:07:42 ============================================================================ +15:07:42 Slot Id : <492> +15:07:42 Transaction Type : REQUEST +15:07:42 Received From : +15:07:42 ============================================================================ +15:07:42 FNo. Len. Field Value +15:07:42 ============================================================================ +15:07:42 [ 1] [ 4] [0200] +15:07:42 [ 2] [ 16] [1808930200039634] +15:07:42 [ 3] [ 6] [011000] +15:07:42 [ 4] [ 12] [000020000000] +15:07:42 [ 7] [ 10] [0320150737] +15:07:42 [ 11] [ 6] [779283] +15:07:42 [ 12] [ 6] [150737] +15:07:42 [ 13] [ 4] [0320] +15:07:42 [ 15] [ 4] [0320] +15:07:42 [ 18] [ 4] [6011] +15:07:42 [ 22] [ 3] [900] +15:07:42 [ 25] [ 2] [02] +15:07:42 [ 28] [ 9] [D00002000] +15:07:42 [ 32] [ 6] [621354] +15:07:42 [ 35] [ 27] [1808930200039634=1803500048] +15:07:42 [ 37] [ 12] [507905213920] +15:07:42 [ 41] [ 8] [01013000] +15:07:42 [ 42] [ 15] [NATIVE ] +15:07:42 [ 43] [ 40] [Sokpaluang Electric Vientiane LAO] +15:07:42 [ 49] [ 3] [418] +15:07:42 [ 52] [ 16] [B5E708F5C809C30C] +15:07:42 ============================================================================ +15:07:42 + + +waiting on router queue for slot.... +15:07:42 Sending to : +15:07:42 ============================================================================ +15:07:42 ============================================================================ +15:07:42 Slot Id : <492> +15:07:42 Transaction Type : REQUEST +15:07:42 Received From : +15:07:42 ============================================================================ +15:07:42 FNo. Len. Field Value +15:07:42 ============================================================================ +15:07:42 [ 1] [ 4] [0200] +15:07:42 [ 2] [ 16] [1808930200039634] +15:07:42 [ 3] [ 6] [011000] +15:07:42 [ 4] [ 12] [000020000000] +15:07:42 [ 7] [ 10] [0320150737] +15:07:42 [ 11] [ 6] [779283] +15:07:42 [ 12] [ 6] [150737] +15:07:42 [ 13] [ 4] [0320] +15:07:42 [ 15] [ 4] [0320] +15:07:42 [ 18] [ 4] [6011] +15:07:42 [ 22] [ 3] [900] +15:07:42 [ 25] [ 2] [02] +15:07:42 [ 28] [ 9] [D00002000] +15:07:42 [ 32] [ 6] [621354] +15:07:42 [ 35] [ 27] [1808930200039634=1803500048] +15:07:42 [ 37] [ 12] [507905213920] +15:07:42 [ 41] [ 8] [01013000] +15:07:42 [ 42] [ 15] [NATIVE ] +15:07:42 [ 43] [ 40] [Sokpaluang Electric Vientiane LAO] +15:07:42 [ 49] [ 3] [418] +15:07:42 [ 52] [ 16] [7DC972C339049A89] +15:07:42 ============================================================================ +15:07:42 + + +waiting on router queue for slot.... +15:07:42 Sending to : <2> +15:07:42 ============================================================================ +15:07:43 ============================================================================ +15:07:43 Slot Id : <6> +15:07:43 Transaction Type : RESPONSE +15:07:43 Received From : +15:07:43 ============================================================================ +15:07:43 FNo. Len. Field Value +15:07:43 ============================================================================ +15:07:43 [ 1] [ 4] [0210] +15:07:43 [ 2] [ 16] [6688990101814901] +15:07:43 [ 3] [ 6] [010000] +15:07:43 [ 4] [ 12] [000100000000] +15:07:43 [ 11] [ 6] [779274] +15:07:43 [ 12] [ 6] [150737] +15:07:43 [ 15] [ 4] [0320] +15:07:43 [ 18] [ 4] [6011] +15:07:43 [ 32] [ 6] [621354] +15:07:43 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:07:43 [ 37] [ 12] [507904635737] +15:07:43 [ 38] [ 6] [317979] +15:07:43 [ 39] [ 2] [00] +15:07:43 [ 41] [ 8] [17000800] +15:07:43 [ 49] [ 3] [418] +15:07:43 [ 54] [ 0] [] +15:07:43 ============================================================================ +15:07:43 Sending to : +15:07:43 ============================================================================ +15:07:43 + + +waiting on router queue for slot.... +15:07:44 ============================================================================ +15:07:44 Slot Id : <14> +15:07:44 Transaction Type : REQUEST +15:07:44 Received From : +15:07:44 ============================================================================ +15:07:44 FNo. Len. Field Value +15:07:44 ============================================================================ +15:07:44 [ 1] [ 4] [0800] +15:07:44 [ 7] [ 10] [0320080650] +15:07:44 [ 11] [ 6] [156931] +15:07:44 [ 70] [ 3] [301] +15:07:44 ============================================================================ +15:07:44 + + +waiting on router queue for slot.... +15:07:44 Sending to : +15:07:44 ============================================================================ +15:07:44 ============================================================================ +15:07:44 Slot Id : <14> +15:07:44 Transaction Type : RESPONSE +15:07:44 Received From : +15:07:44 ============================================================================ +15:07:44 FNo. Len. Field Value +15:07:44 ============================================================================ +15:07:44 [ 1] [ 4] [0810] +15:07:44 [ 7] [ 10] [0320080650] +15:07:44 [ 11] [ 6] [156931] +15:07:44 [ 39] [ 2] [00] +15:07:44 [ 70] [ 3] [301] +15:07:44 ============================================================================ +15:07:44 Calculate Source COMM Id = 2 +15:07:44 ============================================================================ +15:07:44 + + +waiting on router queue for slot.... +15:07:44 ============================================================================ +15:07:44 Slot Id : <6> +15:07:44 Transaction Type : RESPONSE +15:07:44 Received From : +15:07:44 ============================================================================ +15:07:44 FNo. Len. Field Value +15:07:44 ============================================================================ +15:07:44 [ 1] [ 4] [0210] +15:07:44 [ 2] [ 16] [6688990101814901] +15:07:44 [ 3] [ 6] [010000] +15:07:44 [ 4] [ 12] [000100000000] +15:07:44 [ 11] [ 6] [779274] +15:07:44 [ 12] [ 6] [150737] +15:07:44 [ 15] [ 4] [0320] +15:07:44 [ 18] [ 4] [6011] +15:07:44 [ 32] [ 6] [621354] +15:07:44 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:07:44 [ 37] [ 12] [507904635737] +15:07:44 [ 38] [ 6] [317979] +15:07:44 [ 39] [ 2] [00] +15:07:44 [ 41] [ 8] [17000800] +15:07:44 [ 49] [ 3] [418] +15:07:44 [ 54] [ 0] [] +15:07:44 ============================================================================ +15:07:44 Calculate Source COMM Id = 0 +15:07:44 ============================================================================ +15:07:44 + + +waiting on router queue for slot.... +15:07:48 ============================================================================ +15:07:48 Slot Id : <492> +15:07:48 Transaction Type : RESPONSE +15:07:48 Received From : +15:07:48 ============================================================================ +15:07:48 FNo. Len. Field Value +15:07:48 ============================================================================ +15:07:48 [ 1] [ 4] [0210] +15:07:48 [ 2] [ 16] [1808930200039634] +15:07:48 [ 3] [ 6] [011000] +15:07:48 [ 4] [ 12] [000020000000] +15:07:48 [ 6] [ 12] [000020000000] +15:07:48 [ 7] [ 10] [0320150737] +15:07:48 [ 11] [ 6] [779283] +15:07:48 [ 12] [ 6] [150737] +15:07:48 [ 13] [ 4] [0320] +15:07:48 [ 18] [ 4] [6011] +15:07:48 [ 19] [ 3] [418] +15:07:48 [ 22] [ 3] [021] +15:07:48 [ 32] [ 6] [621354] +15:07:48 [ 35] [ 27] [1808930200039634=1803500048] +15:07:48 [ 37] [ 12] [507905213920] +15:07:48 [ 38] [ 6] [779283] +15:07:48 [ 39] [ 2] [00] +15:07:48 [ 41] [ 8] [01013000] +15:07:48 [ 49] [ 3] [418] +15:07:48 [ 52] [ 16] [7DC972C339049A89] +15:07:48 [ 54] [ 20] [1001418C000007138300] +15:07:48 ============================================================================ +15:07:48 Sending to : +15:07:48 ============================================================================ +15:07:48 + + +waiting on router queue for slot.... +15:07:49 ============================================================================ +15:07:49 Slot Id : <16> +15:07:49 Transaction Type : REQUEST +15:07:49 Received From : +15:07:49 ============================================================================ +15:07:49 FNo. Len. Field Value +15:07:49 ============================================================================ +15:07:49 [ 1] [ 4] [0800] +15:07:49 [ 7] [ 10] [0320080744] +15:07:49 [ 11] [ 6] [096055] +15:07:49 [ 37] [ 12] [507915096055] +15:07:49 [ 70] [ 3] [001] +15:07:49 ============================================================================ +15:07:49 + + +waiting on router queue for slot.... +15:07:49 Sending to : +15:07:49 ============================================================================ +15:07:49 ============================================================================ +15:07:49 Slot Id : <16> +15:07:49 Transaction Type : RESPONSE +15:07:49 Received From : +15:07:49 ============================================================================ +15:07:49 FNo. Len. Field Value +15:07:49 ============================================================================ +15:07:49 [ 1] [ 4] [0810] +15:07:49 [ 7] [ 10] [0320080744] +15:07:49 [ 11] [ 6] [096055] +15:07:49 [ 37] [ 12] [507915096055] +15:07:49 [ 39] [ 2] [00] +15:07:49 [ 70] [ 3] [001] +15:07:49 ============================================================================ +15:07:49 Calculate Source COMM Id = 0 +15:07:49 ============================================================================ +15:07:49 + + +waiting on router queue for slot.... +15:07:49 ============================================================================ +15:07:49 Slot Id : <492> +15:07:49 Transaction Type : RESPONSE +15:07:49 Received From : +15:07:49 ============================================================================ +15:07:49 FNo. Len. Field Value +15:07:49 ============================================================================ +15:07:49 [ 1] [ 4] [0210] +15:07:49 [ 2] [ 16] [1808930200039634] +15:07:49 [ 3] [ 6] [011000] +15:07:49 [ 4] [ 12] [000020000000] +15:07:49 [ 6] [ 12] [000020000000] +15:07:49 [ 7] [ 10] [0320150737] +15:07:49 [ 11] [ 6] [779283] +15:07:49 [ 12] [ 6] [150737] +15:07:49 [ 13] [ 4] [0320] +15:07:49 [ 18] [ 4] [6011] +15:07:49 [ 19] [ 3] [418] +15:07:49 [ 22] [ 3] [021] +15:07:49 [ 32] [ 6] [621354] +15:07:49 [ 35] [ 27] [1808930200039634=1803500048] +15:07:49 [ 37] [ 12] [507905213920] +15:07:49 [ 38] [ 6] [779283] +15:07:49 [ 39] [ 2] [00] +15:07:49 [ 41] [ 8] [01013000] +15:07:49 [ 49] [ 3] [418] +15:07:49 [ 52] [ 16] [7DC972C339049A89] +15:07:49 [ 54] [ 20] [1001418C000007138300] +15:07:49 ============================================================================ +15:07:49 Calculate Source COMM Id = 0 +15:07:49 ============================================================================ +15:07:49 + + +waiting on router queue for slot.... +15:07:54 ============================================================================ +15:07:54 Slot Id : <454> +15:07:54 Transaction Type : REQUEST +15:07:54 Received From : +15:07:54 ============================================================================ +15:07:54 FNo. Len. Field Value +15:07:54 ============================================================================ +15:07:54 [ 1] [ 4] [0800] +15:07:54 [ 2] [ 5] [02531] +15:07:54 [ 3] [ 6] [579158] +15:07:54 [ 7] [ 10] [0320080754] +15:07:54 [ 11] [ 6] [807290] +15:07:54 [ 15] [ 10] [0320080754] +15:07:54 [ 37] [ 11] [57915807290] +15:07:54 [ 70] [ 3] [001] +15:07:54 ============================================================================ +15:07:54 + + +waiting on router queue for slot.... +15:07:54 ============================================================================ +15:07:54 Slot Id : <454> +15:07:54 Transaction Type : RESPONSE +15:07:54 Received From : +15:07:54 ============================================================================ +15:07:54 FNo. Len. Field Value +15:07:54 ============================================================================ +15:07:54 [ 1] [ 4] [0810] +15:07:54 [ 7] [ 10] [0320080754] +15:07:54 [ 11] [ 6] [807290] +15:07:54 [ 15] [ 4] [0320] +15:07:54 [ 37] [ 12] [57915807290] +15:07:54 [ 39] [ 2] [00] +15:07:54 [ 70] [ 3] [001] +15:07:54 ============================================================================ +15:07:54 Sending to : +15:07:54 ============================================================================ +15:07:54 + + +waiting on router queue for slot.... +15:07:55 ============================================================================ +15:07:55 Slot Id : <13> +15:07:55 Transaction Type : REQUEST +15:07:55 Received From : +15:07:55 ============================================================================ +15:07:55 FNo. Len. Field Value +15:07:55 ============================================================================ +15:07:55 [ 1] [ 4] [0200] +15:07:55 [ 2] [ 16] [1808931300012745] +15:07:55 [ 3] [ 6] [011000] +15:07:55 [ 4] [ 12] [000100000000] +15:07:55 [ 7] [ 10] [0320150750] +15:07:55 [ 11] [ 6] [779318] +15:07:55 [ 12] [ 6] [150750] +15:07:55 [ 13] [ 4] [0320] +15:07:55 [ 15] [ 4] [0320] +15:07:55 [ 18] [ 4] [6011] +15:07:55 [ 22] [ 3] [900] +15:07:55 [ 25] [ 2] [02] +15:07:55 [ 28] [ 9] [D00002000] +15:07:55 [ 32] [ 6] [621354] +15:07:55 [ 35] [ 27] [1808931300012745=1803500076] +15:07:55 [ 37] [ 12] [507904989322] +15:07:55 [ 41] [ 8] [01012300] +15:07:55 [ 42] [ 15] [NATIVE ] +15:07:55 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:07:55 [ 49] [ 3] [418] +15:07:55 [ 52] [ 16] [E083E171B1C17587] +15:07:55 ============================================================================ +15:07:55 + + +waiting on router queue for slot.... +15:07:55 Sending to : +15:07:55 ============================================================================ +15:07:55 Sending to : +15:07:55 ============================================================================ +15:07:55 ============================================================================ +15:07:55 Slot Id : <13> +15:07:55 Transaction Type : REQUEST +15:07:55 Received From : +15:07:55 ============================================================================ +15:07:55 FNo. Len. Field Value +15:07:55 ============================================================================ +15:07:55 [ 1] [ 4] [0200] +15:07:55 [ 2] [ 16] [1808931300012745] +15:07:55 [ 3] [ 6] [011000] +15:07:55 [ 4] [ 12] [000100000000] +15:07:55 [ 7] [ 10] [0320150750] +15:07:55 [ 11] [ 6] [779318] +15:07:55 [ 12] [ 6] [150750] +15:07:55 [ 13] [ 4] [0320] +15:07:55 [ 15] [ 4] [0320] +15:07:55 [ 18] [ 4] [6011] +15:07:55 [ 22] [ 3] [900] +15:07:55 [ 25] [ 2] [02] +15:07:55 [ 28] [ 9] [D00002000] +15:07:55 [ 32] [ 6] [621354] +15:07:55 [ 35] [ 27] [1808931300012745=1803500076] +15:07:55 [ 37] [ 12] [507904989322] +15:07:55 [ 41] [ 8] [01012300] +15:07:55 [ 42] [ 15] [NATIVE ] +15:07:55 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:07:55 [ 49] [ 3] [418] +15:07:55 [ 52] [ 16] [E083E171B1C17587] +15:07:55 ============================================================================ +15:07:55 + + +waiting on router queue for slot.... +15:07:55 Sending to : +15:07:55 ============================================================================ +15:07:55 ============================================================================ +15:07:55 Slot Id : <13> +15:07:55 Transaction Type : REQUEST +15:07:55 Received From : +15:07:55 ============================================================================ +15:07:55 FNo. Len. Field Value +15:07:55 ============================================================================ +15:07:55 [ 1] [ 4] [0200] +15:07:55 [ 2] [ 16] [1808931300012745] +15:07:55 [ 3] [ 6] [011000] +15:07:55 [ 4] [ 12] [000100000000] +15:07:55 [ 7] [ 10] [0320150750] +15:07:55 [ 11] [ 6] [779318] +15:07:55 [ 12] [ 6] [150750] +15:07:55 [ 13] [ 4] [0320] +15:07:55 [ 15] [ 4] [0320] +15:07:55 [ 18] [ 4] [6011] +15:07:55 [ 22] [ 3] [900] +15:07:55 [ 25] [ 2] [02] +15:07:55 [ 28] [ 9] [D00002000] +15:07:55 [ 32] [ 6] [621354] +15:07:55 [ 35] [ 27] [1808931300012745=1803500076] +15:07:55 [ 37] [ 12] [507904989322] +15:07:55 [ 41] [ 8] [01012300] +15:07:55 [ 42] [ 15] [NATIVE ] +15:07:55 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:07:55 [ 49] [ 3] [418] +15:07:55 [ 52] [ 16] [1A686361C36EB197] +15:07:55 ============================================================================ +15:07:55 + + +waiting on router queue for slot.... +15:07:55 Sending to : <2> +15:07:55 ============================================================================ +15:08:00 ============================================================================ +15:08:00 Slot Id : <13> +15:08:00 Transaction Type : RESPONSE +15:08:00 Received From : +15:08:00 ============================================================================ +15:08:00 FNo. Len. Field Value +15:08:00 ============================================================================ +15:08:00 [ 1] [ 4] [0210] +15:08:00 [ 2] [ 16] [1808931300012745] +15:08:00 [ 3] [ 6] [011000] +15:08:00 [ 4] [ 12] [000100000000] +15:08:00 [ 6] [ 12] [000100000000] +15:08:00 [ 7] [ 10] [0320150750] +15:08:00 [ 11] [ 6] [779318] +15:08:00 [ 12] [ 6] [150750] +15:08:00 [ 13] [ 4] [0320] +15:08:00 [ 18] [ 4] [6011] +15:08:00 [ 19] [ 3] [418] +15:08:00 [ 22] [ 3] [021] +15:08:00 [ 32] [ 6] [621354] +15:08:00 [ 35] [ 27] [1808931300012745=1803500076] +15:08:00 [ 37] [ 12] [507904989322] +15:08:00 [ 38] [ 6] [779318] +15:08:00 [ 39] [ 2] [00] +15:08:00 [ 41] [ 8] [01012300] +15:08:00 [ 49] [ 3] [418] +15:08:00 [ 52] [ 16] [1A686361C36EB197] +15:08:00 [ 54] [ 20] [1001418C000205800600] +15:08:00 ============================================================================ +15:08:00 Sending to : +15:08:00 ============================================================================ +15:08:00 + + +waiting on router queue for slot.... +15:08:01 ============================================================================ +15:08:01 Slot Id : <13> +15:08:01 Transaction Type : RESPONSE +15:08:01 Received From : +15:08:01 ============================================================================ +15:08:01 FNo. Len. Field Value +15:08:01 ============================================================================ +15:08:01 [ 1] [ 4] [0210] +15:08:01 [ 2] [ 16] [1808931300012745] +15:08:01 [ 3] [ 6] [011000] +15:08:01 [ 4] [ 12] [000100000000] +15:08:01 [ 6] [ 12] [000100000000] +15:08:01 [ 7] [ 10] [0320150750] +15:08:01 [ 11] [ 6] [779318] +15:08:01 [ 12] [ 6] [150750] +15:08:01 [ 13] [ 4] [0320] +15:08:01 [ 18] [ 4] [6011] +15:08:01 [ 19] [ 3] [418] +15:08:01 [ 22] [ 3] [021] +15:08:01 [ 32] [ 6] [621354] +15:08:01 [ 35] [ 27] [1808931300012745=1803500076] +15:08:01 [ 37] [ 12] [507904989322] +15:08:01 [ 38] [ 6] [779318] +15:08:01 [ 39] [ 2] [00] +15:08:01 [ 41] [ 8] [01012300] +15:08:01 [ 49] [ 3] [418] +15:08:01 [ 52] [ 16] [1A686361C36EB197] +15:08:01 [ 54] [ 20] [1001418C000205800600] +15:08:01 ============================================================================ +15:08:01 Calculate Source COMM Id = 0 +15:08:01 ============================================================================ +15:08:01 + + +waiting on router queue for slot.... +15:08:09 ============================================================================ +15:08:09 Slot Id : <12> +15:08:09 Transaction Type : REQUEST +15:08:09 Received From : +15:08:09 ============================================================================ +15:08:09 FNo. Len. Field Value +15:08:09 ============================================================================ +15:08:09 [ 1] [ 4] [0800] +15:08:09 [ 7] [ 10] [0320080716] +15:08:09 [ 11] [ 6] [156932] +15:08:09 [ 70] [ 3] [301] +15:08:09 ============================================================================ +15:08:09 + + +waiting on router queue for slot.... +15:08:09 Sending to : +15:08:09 ============================================================================ +15:08:09 ============================================================================ +15:08:09 Slot Id : <12> +15:08:09 Transaction Type : RESPONSE +15:08:09 Received From : +15:08:09 ============================================================================ +15:08:09 FNo. Len. Field Value +15:08:09 ============================================================================ +15:08:09 [ 1] [ 4] [0810] +15:08:09 [ 7] [ 10] [0320080716] +15:08:09 [ 11] [ 6] [156932] +15:08:09 [ 39] [ 2] [00] +15:08:09 [ 70] [ 3] [301] +15:08:09 ============================================================================ +15:08:09 Calculate Source COMM Id = 2 +15:08:09 ============================================================================ +15:08:09 + + +waiting on router queue for slot.... +15:08:09 ============================================================================ +15:08:09 Slot Id : <22> +15:08:09 Transaction Type : REQUEST +15:08:09 Received From : +15:08:09 ============================================================================ +15:08:09 FNo. Len. Field Value +15:08:09 ============================================================================ +15:08:09 [ 1] [ 4] [0200] +15:08:09 [ 2] [ 16] [6213545000384630] +15:08:09 [ 3] [ 6] [302000] +15:08:09 [ 4] [ 12] [000000000000] +15:08:09 [ 7] [ 10] [0320150600] +15:08:09 [ 11] [ 6] [949515] +15:08:09 [ 12] [ 6] [150600] +15:08:09 [ 13] [ 4] [0320] +15:08:09 [ 15] [ 4] [0320] +15:08:09 [ 18] [ 4] [6011] +15:08:09 [ 19] [ 3] [418] +15:08:09 [ 22] [ 3] [021] +15:08:09 [ 25] [ 2] [01] +15:08:09 [ 28] [ 9] [D00000000] +15:08:09 [ 32] [ 6] [668899] +15:08:09 [ 35] [ 32] [6213545000384630=491212018463282] +15:08:09 [ 37] [ 12] [507900957539] +15:08:09 [ 41] [ 8] [03310001] +15:08:09 [ 42] [ 15] [APT ] +15:08:09 [ 43] [ 40] [ THALATH THALATH LAO] +15:08:09 [ 49] [ 3] [418] +15:08:09 [ 52] [ 16] [5F02CC3DD69698C1] +15:08:09 ============================================================================ +15:08:09 + + +waiting on router queue for slot.... +15:08:09 Sending to : +15:08:09 ============================================================================ +15:08:09 Sending to : +15:08:09 ============================================================================ +15:08:10 ============================================================================ +15:08:10 Slot Id : <22> +15:08:10 Transaction Type : REQUEST +15:08:10 Received From : +15:08:10 ============================================================================ +15:08:10 FNo. Len. Field Value +15:08:10 ============================================================================ +15:08:10 [ 1] [ 4] [0200] +15:08:10 [ 2] [ 16] [6213545000384630] +15:08:10 [ 3] [ 6] [302000] +15:08:10 [ 4] [ 12] [000000000000] +15:08:10 [ 7] [ 10] [0320150600] +15:08:10 [ 11] [ 6] [949515] +15:08:10 [ 12] [ 6] [150600] +15:08:10 [ 13] [ 4] [0320] +15:08:10 [ 15] [ 4] [0320] +15:08:10 [ 18] [ 4] [6011] +15:08:10 [ 19] [ 3] [418] +15:08:10 [ 22] [ 3] [021] +15:08:10 [ 25] [ 2] [01] +15:08:10 [ 28] [ 9] [D00000000] +15:08:10 [ 32] [ 6] [668899] +15:08:10 [ 35] [ 32] [6213545000384630=491212018463282] +15:08:10 [ 37] [ 12] [507900957539] +15:08:10 [ 41] [ 8] [03310001] +15:08:10 [ 42] [ 15] [APT ] +15:08:10 [ 43] [ 40] [ THALATH THALATH LAO] +15:08:10 [ 49] [ 3] [418] +15:08:10 [ 52] [ 16] [5F02CC3DD69698C1] +15:08:10 ============================================================================ +15:08:10 + + +waiting on router queue for slot.... +15:08:10 Sending to : +15:08:10 ============================================================================ +15:08:10 ============================================================================ +15:08:10 Slot Id : <22> +15:08:10 Transaction Type : REQUEST +15:08:10 Received From : +15:08:10 ============================================================================ +15:08:10 FNo. Len. Field Value +15:08:10 ============================================================================ +15:08:10 [ 1] [ 4] [0200] +15:08:10 [ 2] [ 16] [6213545000384630] +15:08:10 [ 3] [ 6] [302000] +15:08:10 [ 4] [ 12] [000000000000] +15:08:10 [ 7] [ 10] [0320150600] +15:08:10 [ 11] [ 6] [949515] +15:08:10 [ 12] [ 6] [150600] +15:08:10 [ 13] [ 4] [0320] +15:08:10 [ 15] [ 4] [0320] +15:08:10 [ 18] [ 4] [6011] +15:08:10 [ 19] [ 3] [418] +15:08:10 [ 22] [ 3] [021] +15:08:10 [ 25] [ 2] [01] +15:08:10 [ 28] [ 9] [D00000000] +15:08:10 [ 32] [ 6] [668899] +15:08:10 [ 35] [ 32] [6213545000384630=491212018463282] +15:08:10 [ 37] [ 12] [507900957539] +15:08:10 [ 41] [ 8] [03310001] +15:08:10 [ 42] [ 15] [APT ] +15:08:10 [ 43] [ 40] [ THALATH THALATH LAO] +15:08:10 [ 49] [ 3] [418] +15:08:10 [ 52] [ 16] [55E6FE469AC2D641] +15:08:10 ============================================================================ +15:08:10 + + +waiting on router queue for slot.... +15:08:10 Sending to : <0> +15:08:10 ============================================================================ +15:08:10 ============================================================================ +15:08:10 Slot Id : <22> +15:08:10 Transaction Type : RESPONSE +15:08:10 Received From : +15:08:10 ============================================================================ +15:08:10 FNo. Len. Field Value +15:08:10 ============================================================================ +15:08:10 [ 1] [ 4] [0210] +15:08:10 [ 2] [ 16] [6213545000384630] +15:08:10 [ 3] [ 6] [302000] +15:08:10 [ 4] [ 12] [000000000000] +15:08:10 [ 7] [ 10] [0320150600] +15:08:10 [ 11] [ 6] [949515] +15:08:10 [ 12] [ 6] [150600] +15:08:10 [ 13] [ 4] [0320] +15:08:10 [ 15] [ 4] [0320] +15:08:10 [ 18] [ 4] [6011] +15:08:10 [ 19] [ 3] [418] +15:08:10 [ 32] [ 6] [668899] +15:08:10 [ 35] [ 32] [6213545000384630=491212018463282] +15:08:10 [ 37] [ 12] [507900957539] +15:08:10 [ 38] [ 6] [538396] +15:08:10 [ 39] [ 2] [00] +15:08:10 [ 41] [ 8] [03310001] +15:08:10 [ 49] [ 3] [418] +15:08:10 [ 54] [ 40] [2001418C0001657127592002418C000165712759] +15:08:10 ============================================================================ +15:08:10 Sending to : +15:08:10 ============================================================================ +15:08:10 + + +waiting on router queue for slot.... +15:08:12 ============================================================================ +15:08:12 Slot Id : <22> +15:08:12 Transaction Type : RESPONSE +15:08:12 Received From : +15:08:12 ============================================================================ +15:08:12 FNo. Len. Field Value +15:08:12 ============================================================================ +15:08:12 [ 1] [ 4] [0210] +15:08:12 [ 2] [ 16] [6213545000384630] +15:08:12 [ 3] [ 6] [302000] +15:08:12 [ 4] [ 12] [000000000000] +15:08:12 [ 7] [ 10] [0320150600] +15:08:12 [ 11] [ 6] [949515] +15:08:12 [ 12] [ 6] [150600] +15:08:12 [ 13] [ 4] [0320] +15:08:12 [ 15] [ 4] [0320] +15:08:12 [ 18] [ 4] [6011] +15:08:12 [ 19] [ 3] [418] +15:08:12 [ 32] [ 6] [668899] +15:08:12 [ 35] [ 32] [6213545000384630=491212018463282] +15:08:12 [ 37] [ 12] [507900957539] +15:08:12 [ 38] [ 6] [538396] +15:08:12 [ 39] [ 2] [00] +15:08:12 [ 41] [ 8] [03310001] +15:08:12 [ 49] [ 3] [418] +15:08:12 [ 54] [ 40] [2001418C0001657127592002418C000165712759] +15:08:12 ============================================================================ +15:08:12 Calculate Source COMM Id = 4 +15:08:12 ============================================================================ +15:08:12 + + +waiting on router queue for slot.... +15:08:13 ============================================================================ +15:08:13 Slot Id : <469> +15:08:13 Transaction Type : REQUEST +15:08:13 Received From : +15:08:13 ============================================================================ +15:08:13 FNo. Len. Field Value +15:08:13 ============================================================================ +15:08:13 [ 1] [ 4] [0200] +15:08:13 [ 2] [ 16] [6213545000095913] +15:08:13 [ 3] [ 6] [012000] +15:08:13 [ 4] [ 12] [000100000000] +15:08:13 [ 7] [ 10] [0320151600] +15:08:13 [ 11] [ 6] [079110] +15:08:13 [ 12] [ 6] [151600] +15:08:13 [ 13] [ 4] [0320] +15:08:13 [ 14] [ 4] [4912] +15:08:13 [ 15] [ 4] [0320] +15:08:13 [ 18] [ 4] [6011] +15:08:13 [ 22] [ 3] [900] +15:08:13 [ 25] [ 2] [02] +15:08:13 [ 28] [ 9] [D00002000] +15:08:13 [ 32] [ 6] [220699] +15:08:13 [ 35] [ 32] [6213545000095913=491212019591128] +15:08:13 [ 37] [ 12] [507900132975] +15:08:13 [ 41] [ 8] [03000100] +15:08:13 [ 42] [ 15] [APTRA ] +15:08:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:08:13 [ 49] [ 3] [418] +15:08:13 [ 52] [ 16] [B71C479FEF30629B] +15:08:13 ============================================================================ +15:08:13 + + +waiting on router queue for slot.... +15:08:13 Sending to : +15:08:13 ============================================================================ +15:08:13 Sending to : +15:08:13 ============================================================================ +15:08:13 ============================================================================ +15:08:13 Slot Id : <494> +15:08:13 Transaction Type : REQUEST +15:08:13 Received From : +15:08:13 ============================================================================ +15:08:13 FNo. Len. Field Value +15:08:13 ============================================================================ +15:08:13 [ 1] [ 4] [0200] +15:08:13 [ 2] [ 16] [6688990040082719] +15:08:13 [ 3] [ 6] [010000] +15:08:13 [ 4] [ 12] [000010000000] +15:08:13 [ 7] [ 10] [0320150808] +15:08:13 [ 11] [ 6] [779383] +15:08:13 [ 12] [ 6] [150808] +15:08:13 [ 13] [ 4] [0320] +15:08:13 [ 15] [ 4] [0320] +15:08:13 [ 18] [ 4] [6011] +15:08:13 [ 22] [ 3] [900] +15:08:13 [ 25] [ 2] [02] +15:08:13 [ 28] [ 9] [D00002000] +15:08:13 [ 32] [ 6] [621354] +15:08:13 [ 35] [ 37] [6688990040082719=98011261386156500000] +15:08:13 [ 37] [ 12] [507904381194] +15:08:13 [ 41] [ 8] [03003700] +15:08:13 [ 42] [ 15] [NATIVE ] +15:08:13 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +15:08:13 [ 49] [ 3] [418] +15:08:13 [ 52] [ 16] [D28D8675129D3A36] +15:08:13 ============================================================================ +15:08:13 + + +waiting on router queue for slot.... +15:08:13 Sending to : +15:08:13 ============================================================================ +15:08:13 Sending to : +15:08:13 ============================================================================ +15:08:13 ============================================================================ +15:08:13 Slot Id : <494> +15:08:13 Transaction Type : REQUEST +15:08:13 Received From : +15:08:13 ============================================================================ +15:08:13 FNo. Len. Field Value +15:08:13 ============================================================================ +15:08:13 [ 1] [ 4] [0200] +15:08:13 [ 2] [ 16] [6688990040082719] +15:08:13 [ 3] [ 6] [010000] +15:08:13 [ 4] [ 12] [000010000000] +15:08:13 [ 7] [ 10] [0320150808] +15:08:13 [ 11] [ 6] [779383] +15:08:13 [ 12] [ 6] [150808] +15:08:13 [ 13] [ 4] [0320] +15:08:13 [ 15] [ 4] [0320] +15:08:13 [ 18] [ 4] [6011] +15:08:13 [ 22] [ 3] [900] +15:08:13 [ 25] [ 2] [02] +15:08:13 [ 28] [ 9] [D00002000] +15:08:13 [ 32] [ 6] [621354] +15:08:13 [ 35] [ 37] [6688990040082719=98011261386156500000] +15:08:13 [ 37] [ 12] [507904381194] +15:08:13 [ 41] [ 8] [03003700] +15:08:13 [ 42] [ 15] [NATIVE ] +15:08:13 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +15:08:13 [ 49] [ 3] [418] +15:08:13 [ 52] [ 16] [D28D8675129D3A36] +15:08:13 ============================================================================ +15:08:13 + + +waiting on router queue for slot.... +15:08:13 ============================================================================ +15:08:13 Slot Id : <469> +15:08:13 Transaction Type : REQUEST +15:08:13 Received From : +15:08:13 ============================================================================ +15:08:13 FNo. Len. Field Value +15:08:13 ============================================================================ +15:08:13 [ 1] [ 4] [0200] +15:08:13 [ 2] [ 16] [6213545000095913] +15:08:13 [ 3] [ 6] [012000] +15:08:13 [ 4] [ 12] [000100000000] +15:08:13 [ 7] [ 10] [0320151600] +15:08:13 [ 11] [ 6] [079110] +15:08:13 [ 12] [ 6] [151600] +15:08:13 [ 13] [ 4] [0320] +15:08:13 [ 14] [ 4] [4912] +15:08:13 [ 15] [ 4] [0320] +15:08:13 [ 18] [ 4] [6011] +15:08:13 [ 22] [ 3] [900] +15:08:13 [ 25] [ 2] [02] +15:08:13 [ 28] [ 9] [D00002000] +15:08:13 [ 32] [ 6] [220699] +15:08:13 [ 35] [ 32] [6213545000095913=491212019591128] +15:08:13 [ 37] [ 12] [507900132975] +15:08:13 [ 41] [ 8] [03000100] +15:08:13 [ 42] [ 15] [APTRA ] +15:08:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:08:13 Sending to : +15:08:13 [ 49] [ 3] [418] +15:08:13 ============================================================================ +15:08:13 [ 52] [ 16] [B71C479FEF30629B] +15:08:13 ============================================================================ +15:08:13 + + +waiting on router queue for slot.... +15:08:13 Sending to : +15:08:13 ============================================================================ +15:08:13 ============================================================================ +15:08:13 Slot Id : <469> +15:08:13 Transaction Type : REQUEST +15:08:13 Received From : +15:08:13 ============================================================================ +15:08:13 FNo. Len. Field Value +15:08:13 ============================================================================ +15:08:13 [ 1] [ 4] [0200] +15:08:13 [ 2] [ 16] [6213545000095913] +15:08:13 [ 3] [ 6] [012000] +15:08:13 [ 4] [ 12] [000100000000] +15:08:13 [ 7] [ 10] [0320151600] +15:08:13 [ 11] [ 6] [079110] +15:08:13 [ 12] [ 6] [151600] +15:08:13 [ 13] [ 4] [0320] +15:08:13 [ 14] [ 4] [4912] +15:08:13 [ 15] [ 4] [0320] +15:08:13 [ 18] [ 4] [6011] +15:08:13 [ 22] [ 3] [900] +15:08:13 [ 25] [ 2] [02] +15:08:13 [ 28] [ 9] [D00002000] +15:08:13 [ 32] [ 6] [220699] +15:08:13 [ 35] [ 32] [6213545000095913=491212019591128] +15:08:13 [ 37] [ 12] [507900132975] +15:08:13 [ 41] [ 8] [03000100] +15:08:13 [ 42] [ 15] [APTRA ] +15:08:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:08:13 [ 49] [ 3] [418] +15:08:13 [ 52] [ 16] [A10B4884E7052879] +15:08:13 ============================================================================ +15:08:13 + + +waiting on router queue for slot.... +15:08:13 Sending to : <0> +15:08:13 ============================================================================ +15:08:13 ============================================================================ +15:08:13 Slot Id : <494> +15:08:13 Transaction Type : REQUEST +15:08:13 Received From : +15:08:13 ============================================================================ +15:08:13 FNo. Len. Field Value +15:08:13 ============================================================================ +15:08:13 [ 1] [ 4] [0200] +15:08:13 [ 2] [ 16] [6688990040082719] +15:08:13 [ 3] [ 6] [010000] +15:08:13 [ 4] [ 12] [000010000000] +15:08:13 [ 7] [ 10] [0320150808] +15:08:13 [ 11] [ 6] [779383] +15:08:13 [ 12] [ 6] [150808] +15:08:13 [ 13] [ 4] [0320] +15:08:13 [ 15] [ 4] [0320] +15:08:13 [ 18] [ 4] [6011] +15:08:13 [ 22] [ 3] [900] +15:08:13 [ 25] [ 2] [02] +15:08:13 [ 28] [ 9] [D00002000] +15:08:13 [ 32] [ 6] [621354] +15:08:13 [ 35] [ 37] [6688990040082719=98011261386156500000] +15:08:13 [ 37] [ 12] [507904381194] +15:08:13 [ 41] [ 8] [03003700] +15:08:13 [ 42] [ 15] [NATIVE ] +15:08:13 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +15:08:13 [ 49] [ 3] [418] +15:08:13 [ 52] [ 16] [44D16A19BF409331] +15:08:13 ============================================================================ +15:08:13 + + +waiting on router queue for slot.... +15:08:13 Sending to : <4> +15:08:13 ============================================================================ +15:08:15 ============================================================================ +15:08:15 Slot Id : <469> +15:08:15 Transaction Type : RESPONSE +15:08:15 Received From : +15:08:15 ============================================================================ +15:08:15 FNo. Len. Field Value +15:08:15 ============================================================================ +15:08:15 [ 1] [ 4] [0210] +15:08:15 [ 2] [ 16] [6213545000095913] +15:08:15 [ 3] [ 6] [012000] +15:08:15 [ 4] [ 12] [000100000000] +15:08:15 [ 7] [ 10] [0320151600] +15:08:15 [ 11] [ 6] [079110] +15:08:15 [ 12] [ 6] [151600] +15:08:15 [ 13] [ 4] [0320] +15:08:15 [ 15] [ 4] [0320] +15:08:15 [ 18] [ 4] [6011] +15:08:15 [ 32] [ 6] [220699] +15:08:15 [ 35] [ 32] [6213545000095913=491212019591128] +15:08:15 [ 37] [ 12] [507900132975] +15:08:15 [ 38] [ 6] [812224] +15:08:15 [ 39] [ 2] [00] +15:08:15 [ 41] [ 8] [03000100] +15:08:15 [ 49] [ 3] [418] +15:08:15 [ 54] [ 40] [2001418C0002291523782002418C000229152378] +15:08:15 ============================================================================ +15:08:15 Sending to : +15:08:15 ============================================================================ +15:08:15 + + +waiting on router queue for slot.... +15:08:15 ============================================================================ +15:08:15 Slot Id : <494> +15:08:15 Transaction Type : RESPONSE +15:08:15 Received From : +15:08:15 ============================================================================ +15:08:15 FNo. Len. Field Value +15:08:15 ============================================================================ +15:08:15 [ 1] [ 4] [0210] +15:08:15 [ 2] [ 16] [6688990040082719] +15:08:15 [ 3] [ 6] [010000] +15:08:15 [ 4] [ 12] [000010000000] +15:08:15 [ 11] [ 6] [779383] +15:08:15 [ 12] [ 6] [150808] +15:08:15 [ 15] [ 4] [0320] +15:08:15 [ 18] [ 4] [6011] +15:08:15 [ 32] [ 6] [621354] +15:08:15 [ 35] [ 37] [6688990040082719=98011261386156500000] +15:08:15 [ 37] [ 12] [507904381194] +15:08:15 [ 38] [ 6] [681166] +15:08:15 [ 39] [ 2] [00] +15:08:15 [ 41] [ 8] [03003700] +15:08:15 [ 49] [ 3] [418] +15:08:15 [ 54] [ 20] [0002764C000000081829] +15:08:15 ============================================================================ +15:08:15 Sending to : +15:08:15 ============================================================================ +15:08:15 + + +waiting on router queue for slot.... +15:08:16 ============================================================================ +15:08:16 Slot Id : <469> +15:08:16 Transaction Type : RESPONSE +15:08:16 Received From : +15:08:16 ============================================================================ +15:08:16 FNo. Len. Field Value +15:08:16 ============================================================================ +15:08:16 [ 1] [ 4] [0210] +15:08:16 [ 2] [ 16] [6213545000095913] +15:08:16 [ 3] [ 6] [012000] +15:08:16 [ 4] [ 12] [000100000000] +15:08:16 [ 7] [ 10] [0320151600] +15:08:16 [ 11] [ 6] [079110] +15:08:16 [ 12] [ 6] [151600] +15:08:16 [ 13] [ 4] [0320] +15:08:16 [ 15] [ 4] [0320] +15:08:16 [ 18] [ 4] [6011] +15:08:16 [ 32] [ 6] [220699] +15:08:16 [ 35] [ 32] [6213545000095913=491212019591128] +15:08:16 [ 37] [ 12] [507900132975] +15:08:16 [ 38] [ 6] [812224] +15:08:16 [ 39] [ 2] [00] +15:08:16 [ 41] [ 8] [03000100] +15:08:16 [ 49] [ 3] [418] +15:08:16 [ 54] [ 40] [2001418C0002291523782002418C000229152378] +15:08:16 ============================================================================ +15:08:16 Calculate Source COMM Id = 1 +15:08:16 ============================================================================ +15:08:16 + + +waiting on router queue for slot.... +15:08:17 ============================================================================ +15:08:17 Slot Id : <494> +15:08:17 Transaction Type : RESPONSE +15:08:17 Received From : +15:08:17 ============================================================================ +15:08:17 FNo. Len. Field Value +15:08:17 ============================================================================ +15:08:17 [ 1] [ 4] [0210] +15:08:17 [ 2] [ 16] [6688990040082719] +15:08:17 [ 3] [ 6] [010000] +15:08:17 [ 4] [ 12] [000010000000] +15:08:17 [ 11] [ 6] [779383] +15:08:17 [ 12] [ 6] [150808] +15:08:17 [ 15] [ 4] [0320] +15:08:17 [ 18] [ 4] [6011] +15:08:17 [ 32] [ 6] [621354] +15:08:17 [ 35] [ 37] [6688990040082719=98011261386156500000] +15:08:17 [ 37] [ 12] [507904381194] +15:08:17 [ 38] [ 6] [681166] +15:08:17 [ 39] [ 2] [00] +15:08:17 [ 41] [ 8] [03003700] +15:08:17 [ 49] [ 3] [418] +15:08:17 [ 54] [ 20] [0002764C000000081829] +15:08:17 ============================================================================ +15:08:17 Calculate Source COMM Id = 0 +15:08:17 ============================================================================ +15:08:17 + + +waiting on router queue for slot.... +15:08:19 ============================================================================ +15:08:19 Slot Id : <17> +15:08:19 Transaction Type : REQUEST +15:08:19 Received From : +15:08:19 ============================================================================ +15:08:19 FNo. Len. Field Value +15:08:19 ============================================================================ +15:08:19 [ 1] [ 4] [0800] +15:08:19 [ 7] [ 10] [0320080726] +15:08:19 [ 11] [ 6] [156933] +15:08:19 [ 70] [ 3] [301] +15:08:19 ============================================================================ +15:08:19 + + +waiting on router queue for slot.... +15:08:19 Sending to : +15:08:19 ============================================================================ +15:08:19 ============================================================================ +15:08:19 Slot Id : <17> +15:08:19 Transaction Type : RESPONSE +15:08:19 Received From : +15:08:19 ============================================================================ +15:08:19 FNo. Len. Field Value +15:08:19 ============================================================================ +15:08:19 [ 1] [ 4] [0810] +15:08:19 [ 7] [ 10] [0320080726] +15:08:19 [ 11] [ 6] [156933] +15:08:19 [ 39] [ 2] [00] +15:08:19 [ 70] [ 3] [301] +15:08:19 ============================================================================ +15:08:19 Calculate Source COMM Id = 2 +15:08:19 ============================================================================ +15:08:19 + + +waiting on router queue for slot.... +15:08:22 ============================================================================ +15:08:22 Slot Id : <491> +15:08:22 Transaction Type : REQUEST +15:08:22 Received From : +15:08:22 ============================================================================ +15:08:22 FNo. Len. Field Value +15:08:22 ============================================================================ +15:08:22 [ 1] [ 4] [0200] +15:08:22 [ 2] [ 16] [6688990107678706] +15:08:22 [ 3] [ 6] [011000] +15:08:22 [ 4] [ 12] [000015000000] +15:08:22 [ 7] [ 10] [0320150818] +15:08:22 [ 11] [ 6] [779417] +15:08:22 [ 12] [ 6] [150818] +15:08:22 [ 13] [ 4] [0320] +15:08:22 [ 15] [ 4] [0320] +15:08:22 [ 18] [ 4] [6011] +15:08:22 [ 22] [ 3] [900] +15:08:22 [ 25] [ 2] [02] +15:08:22 [ 28] [ 9] [D00002000] +15:08:22 [ 32] [ 6] [621354] +15:08:22 [ 35] [ 37] [6688990107678706=44041231870667200000] +15:08:22 [ 37] [ 12] [507902474621] +15:08:22 [ 41] [ 8] [05003000] +15:08:22 [ 42] [ 15] [NATIVE ] +15:08:22 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +15:08:22 [ 49] [ 3] [418] +15:08:22 [ 52] [ 16] [91BBE662C624CFED] +15:08:22 ============================================================================ +15:08:22 + + +waiting on router queue for slot.... +15:08:22 Sending to : +15:08:22 ============================================================================ +15:08:22 Sending to : +15:08:22 ============================================================================ +15:08:23 ============================================================================ +15:08:23 Slot Id : <491> +15:08:23 Transaction Type : REQUEST +15:08:23 Received From : +15:08:23 ============================================================================ +15:08:23 FNo. Len. Field Value +15:08:23 ============================================================================ +15:08:23 [ 1] [ 4] [0200] +15:08:23 [ 2] [ 16] [6688990107678706] +15:08:23 [ 3] [ 6] [011000] +15:08:23 [ 4] [ 12] [000015000000] +15:08:23 [ 7] [ 10] [0320150818] +15:08:23 [ 11] [ 6] [779417] +15:08:23 [ 12] [ 6] [150818] +15:08:23 [ 13] [ 4] [0320] +15:08:23 [ 15] [ 4] [0320] +15:08:23 [ 18] [ 4] [6011] +15:08:23 [ 22] [ 3] [900] +15:08:23 [ 25] [ 2] [02] +15:08:23 [ 28] [ 9] [D00002000] +15:08:23 [ 32] [ 6] [621354] +15:08:23 [ 35] [ 37] [6688990107678706=44041231870667200000] +15:08:23 [ 37] [ 12] [507902474621] +15:08:23 [ 41] [ 8] [05003000] +15:08:23 [ 42] [ 15] [NATIVE ] +15:08:23 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +15:08:23 [ 49] [ 3] [418] +15:08:23 [ 52] [ 16] [91BBE662C624CFED] +15:08:23 ============================================================================ +15:08:23 + + +waiting on router queue for slot.... +15:08:23 Sending to : +15:08:23 ============================================================================ +15:08:23 ============================================================================ +15:08:23 Slot Id : <491> +15:08:23 Transaction Type : REQUEST +15:08:23 Received From : +15:08:23 ============================================================================ +15:08:23 FNo. Len. Field Value +15:08:23 ============================================================================ +15:08:23 [ 1] [ 4] [0200] +15:08:23 [ 2] [ 16] [6688990107678706] +15:08:23 [ 3] [ 6] [011000] +15:08:23 [ 4] [ 12] [000015000000] +15:08:23 [ 7] [ 10] [0320150818] +15:08:23 [ 11] [ 6] [779417] +15:08:23 [ 12] [ 6] [150818] +15:08:23 [ 13] [ 4] [0320] +15:08:23 [ 15] [ 4] [0320] +15:08:23 [ 18] [ 4] [6011] +15:08:23 [ 22] [ 3] [900] +15:08:23 [ 25] [ 2] [02] +15:08:23 [ 28] [ 9] [D00002000] +15:08:23 [ 32] [ 6] [621354] +15:08:23 [ 35] [ 37] [6688990107678706=44041231870667200000] +15:08:23 [ 37] [ 12] [507902474621] +15:08:23 [ 41] [ 8] [05003000] +15:08:23 [ 42] [ 15] [NATIVE ] +15:08:23 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +15:08:23 [ 49] [ 3] [418] +15:08:23 [ 52] [ 16] [0F769F4163257C9B] +15:08:23 ============================================================================ +15:08:23 + + +waiting on router queue for slot.... +15:08:23 Sending to : <4> +15:08:23 ============================================================================ +15:08:24 ============================================================================ +15:08:24 Slot Id : <491> +15:08:24 Transaction Type : RESPONSE +15:08:24 Received From : +15:08:24 ============================================================================ +15:08:24 FNo. Len. Field Value +15:08:24 ============================================================================ +15:08:24 [ 1] [ 4] [0210] +15:08:24 [ 2] [ 16] [6688990107678706] +15:08:24 [ 3] [ 6] [011000] +15:08:24 [ 4] [ 12] [000015000000] +15:08:24 [ 11] [ 6] [779417] +15:08:24 [ 12] [ 6] [150818] +15:08:24 [ 15] [ 4] [0320] +15:08:24 [ 18] [ 4] [6011] +15:08:24 [ 32] [ 6] [621354] +15:08:24 [ 35] [ 37] [6688990107678706=44041231870667200000] +15:08:24 [ 37] [ 12] [507902474621] +15:08:24 [ 38] [ 6] [501462] +15:08:24 [ 39] [ 2] [00] +15:08:24 [ 41] [ 8] [05003000] +15:08:24 [ 49] [ 3] [418] +15:08:24 [ 54] [ 20] [1002418C000022476457] +15:08:24 ============================================================================ +15:08:24 Sending to : +15:08:24 ============================================================================ +15:08:24 + + +waiting on router queue for slot.... +15:08:26 ============================================================================ +15:08:26 Slot Id : <491> +15:08:26 Transaction Type : RESPONSE +15:08:26 Received From : +15:08:26 ============================================================================ +15:08:26 FNo. Len. Field Value +15:08:26 ============================================================================ +15:08:26 [ 1] [ 4] [0210] +15:08:26 [ 2] [ 16] [6688990107678706] +15:08:26 [ 3] [ 6] [011000] +15:08:26 [ 4] [ 12] [000015000000] +15:08:26 [ 11] [ 6] [779417] +15:08:26 [ 12] [ 6] [150818] +15:08:26 [ 15] [ 4] [0320] +15:08:26 [ 18] [ 4] [6011] +15:08:26 [ 32] [ 6] [621354] +15:08:26 [ 35] [ 37] [6688990107678706=44041231870667200000] +15:08:26 [ 37] [ 12] [507902474621] +15:08:26 [ 38] [ 6] [501462] +15:08:26 [ 39] [ 2] [00] +15:08:26 [ 41] [ 8] [05003000] +15:08:26 [ 49] [ 3] [418] +15:08:26 [ 54] [ 20] [1002418C000022476457] +15:08:26 ============================================================================ +15:08:26 Calculate Source COMM Id = 0 +15:08:26 ============================================================================ +15:08:26 + + +waiting on router queue for slot.... +15:08:31 ============================================================================ +15:08:31 Slot Id : <10> +15:08:31 Transaction Type : REQUEST +15:08:31 Received From : +15:08:31 ============================================================================ +15:08:31 FNo. Len. Field Value +15:08:31 ============================================================================ +15:08:31 [ 1] [ 4] [0200] +15:08:31 [ 2] [ 16] [6213545000384630] +15:08:31 [ 3] [ 6] [010000] +15:08:31 [ 4] [ 12] [000050000000] +15:08:31 [ 7] [ 10] [0320150621] +15:08:31 [ 11] [ 6] [949523] +15:08:31 [ 12] [ 6] [150621] +15:08:31 [ 13] [ 4] [0320] +15:08:31 [ 15] [ 4] [0320] +15:08:31 [ 18] [ 4] [6011] +15:08:31 [ 19] [ 3] [418] +15:08:31 [ 22] [ 3] [021] +15:08:31 [ 25] [ 2] [01] +15:08:31 [ 28] [ 9] [D00002000] +15:08:31 [ 32] [ 6] [668899] +15:08:31 [ 35] [ 32] [6213545000384630=491212018463282] +15:08:31 [ 37] [ 12] [507900957540] +15:08:31 [ 41] [ 8] [03310001] +15:08:31 [ 42] [ 15] [APT ] +15:08:31 [ 43] [ 40] [ THALATH THALATH LAO] +15:08:31 [ 49] [ 3] [418] +15:08:31 [ 52] [ 16] [5F02CC3DD69698C1] +15:08:31 ============================================================================ +15:08:31 + + +waiting on router queue for slot.... +15:08:31 Sending to : +15:08:31 ============================================================================ +15:08:31 Sending to : +15:08:31 ============================================================================ +15:08:31 ============================================================================ +15:08:31 Slot Id : <10> +15:08:31 Transaction Type : REQUEST +15:08:31 Received From : +15:08:31 ============================================================================ +15:08:31 FNo. Len. Field Value +15:08:31 ============================================================================ +15:08:31 [ 1] [ 4] [0200] +15:08:31 [ 2] [ 16] [6213545000384630] +15:08:31 [ 3] [ 6] [010000] +15:08:31 [ 4] [ 12] [000050000000] +15:08:31 [ 7] [ 10] [0320150621] +15:08:31 [ 11] [ 6] [949523] +15:08:31 [ 12] [ 6] [150621] +15:08:31 [ 13] [ 4] [0320] +15:08:31 [ 15] [ 4] [0320] +15:08:31 [ 18] [ 4] [6011] +15:08:31 [ 19] [ 3] [418] +15:08:31 [ 22] [ 3] [021] +15:08:31 [ 25] [ 2] [01] +15:08:31 [ 28] [ 9] [D00002000] +15:08:31 [ 32] [ 6] [668899] +15:08:31 [ 35] [ 32] [6213545000384630=491212018463282] +15:08:31 [ 37] [ 12] [507900957540] +15:08:31 [ 41] [ 8] [03310001] +15:08:31 [ 42] [ 15] [APT ] +15:08:31 [ 43] [ 40] [ THALATH THALATH LAO] +15:08:31 [ 49] [ 3] [418] +15:08:31 [ 52] [ 16] [5F02CC3DD69698C1] +15:08:31 ============================================================================ +15:08:31 + + +waiting on router queue for slot.... +15:08:31 Sending to : +15:08:31 ============================================================================ +15:08:31 ============================================================================ +15:08:31 Slot Id : <10> +15:08:31 Transaction Type : REQUEST +15:08:31 Received From : +15:08:31 ============================================================================ +15:08:31 FNo. Len. Field Value +15:08:31 ============================================================================ +15:08:31 [ 1] [ 4] [0200] +15:08:31 [ 2] [ 16] [6213545000384630] +15:08:31 [ 3] [ 6] [010000] +15:08:31 [ 4] [ 12] [000050000000] +15:08:31 [ 7] [ 10] [0320150621] +15:08:31 [ 11] [ 6] [949523] +15:08:31 [ 12] [ 6] [150621] +15:08:31 [ 13] [ 4] [0320] +15:08:31 [ 15] [ 4] [0320] +15:08:31 [ 18] [ 4] [6011] +15:08:31 [ 19] [ 3] [418] +15:08:31 [ 22] [ 3] [021] +15:08:31 [ 25] [ 2] [01] +15:08:31 [ 28] [ 9] [D00002000] +15:08:31 [ 32] [ 6] [668899] +15:08:31 [ 35] [ 32] [6213545000384630=491212018463282] +15:08:31 [ 37] [ 12] [507900957540] +15:08:31 [ 41] [ 8] [03310001] +15:08:31 [ 42] [ 15] [APT ] +15:08:31 [ 43] [ 40] [ THALATH THALATH LAO] +15:08:31 [ 49] [ 3] [418] +15:08:31 [ 52] [ 16] [55E6FE469AC2D641] +15:08:31 ============================================================================ +15:08:31 + + +waiting on router queue for slot.... +15:08:31 Sending to : <0> +15:08:31 ============================================================================ +15:08:32 ============================================================================ +15:08:32 Slot Id : <10> +15:08:32 Transaction Type : RESPONSE +15:08:32 Received From : +15:08:32 ============================================================================ +15:08:32 FNo. Len. Field Value +15:08:32 ============================================================================ +15:08:32 [ 1] [ 4] [0210] +15:08:32 [ 2] [ 16] [6213545000384630] +15:08:32 [ 3] [ 6] [010000] +15:08:32 [ 4] [ 12] [000050000000] +15:08:32 [ 7] [ 10] [0320150621] +15:08:32 [ 11] [ 6] [949523] +15:08:32 [ 12] [ 6] [150621] +15:08:32 [ 13] [ 4] [0320] +15:08:32 [ 15] [ 4] [0320] +15:08:32 [ 18] [ 4] [6011] +15:08:32 [ 19] [ 3] [418] +15:08:32 [ 32] [ 6] [668899] +15:08:32 [ 35] [ 32] [6213545000384630=491212018463282] +15:08:32 [ 37] [ 12] [507900957540] +15:08:32 [ 38] [ 6] [050250] +15:08:32 [ 39] [ 2] [00] +15:08:32 [ 41] [ 8] [03310001] +15:08:32 [ 49] [ 3] [418] +15:08:32 [ 54] [ 40] [0001418C0001155127590002418C000115512759] +15:08:32 ============================================================================ +15:08:32 Sending to : +15:08:32 ============================================================================ +15:08:32 + + +waiting on router queue for slot.... +15:08:33 ============================================================================ +15:08:33 Slot Id : <10> +15:08:33 Transaction Type : RESPONSE +15:08:33 Received From : +15:08:33 ============================================================================ +15:08:33 FNo. Len. Field Value +15:08:33 ============================================================================ +15:08:33 [ 1] [ 4] [0210] +15:08:33 [ 2] [ 16] [6213545000384630] +15:08:33 [ 3] [ 6] [010000] +15:08:33 [ 4] [ 12] [000050000000] +15:08:33 [ 7] [ 10] [0320150621] +15:08:33 [ 11] [ 6] [949523] +15:08:33 [ 12] [ 6] [150621] +15:08:33 [ 13] [ 4] [0320] +15:08:33 [ 15] [ 4] [0320] +15:08:33 [ 18] [ 4] [6011] +15:08:33 [ 19] [ 3] [418] +15:08:33 [ 32] [ 6] [668899] +15:08:33 [ 35] [ 32] [6213545000384630=491212018463282] +15:08:33 [ 37] [ 12] [507900957540] +15:08:33 [ 38] [ 6] [050250] +15:08:33 [ 39] [ 2] [00] +15:08:33 [ 41] [ 8] [03310001] +15:08:33 [ 49] [ 3] [418] +15:08:33 [ 54] [ 40] [0001418C0001155127590002418C000115512759] +15:08:33 ============================================================================ +15:08:33 Calculate Source COMM Id = 4 +15:08:33 ============================================================================ +15:08:33 + + +waiting on router queue for slot.... +15:08:36 ============================================================================ +15:08:36 Slot Id : <499> +15:08:36 Transaction Type : REQUEST +15:08:36 Received From : +15:08:36 ============================================================================ +15:08:36 FNo. Len. Field Value +15:08:36 ============================================================================ +15:08:36 [ 1] [ 4] [0800] +15:08:36 [ 7] [ 10] [0320080743] +15:08:36 [ 11] [ 6] [156934] +15:08:36 [ 70] [ 3] [301] +15:08:36 ============================================================================ +15:08:36 + + +waiting on router queue for slot.... +15:08:36 Sending to : +15:08:36 ============================================================================ +15:08:36 ============================================================================ +15:08:36 Slot Id : <499> +15:08:36 Transaction Type : RESPONSE +15:08:36 Received From : +15:08:36 ============================================================================ +15:08:36 FNo. Len. Field Value +15:08:36 ============================================================================ +15:08:36 [ 1] [ 4] [0810] +15:08:36 [ 7] [ 10] [0320080743] +15:08:36 [ 11] [ 6] [156934] +15:08:36 [ 39] [ 2] [00] +15:08:36 [ 70] [ 3] [301] +15:08:36 ============================================================================ +15:08:36 Calculate Source COMM Id = 2 +15:08:36 ============================================================================ +15:08:36 + + +waiting on router queue for slot.... +15:08:46 ============================================================================ +15:08:46 Slot Id : <29> +15:08:46 Transaction Type : REQUEST +15:08:46 Received From : +15:08:46 ============================================================================ +15:08:46 FNo. Len. Field Value +15:08:46 ============================================================================ +15:08:46 [ 1] [ 4] [0800] +15:08:46 [ 7] [ 10] [0320222034] +15:08:46 [ 11] [ 6] [152034] +15:08:46 [ 37] [ 12] [57915152034] +15:08:46 [ 70] [ 3] [301] +15:08:46 ============================================================================ +15:08:46 + + +waiting on router queue for slot.... +15:08:46 Sending to : +15:08:46 ============================================================================ +15:08:46 ============================================================================ +15:08:46 Slot Id : <29> +15:08:46 Transaction Type : RESPONSE +15:08:46 Received From : +15:08:46 ============================================================================ +15:08:46 FNo. Len. Field Value +15:08:46 ============================================================================ +15:08:46 [ 1] [ 4] [0810] +15:08:46 [ 7] [ 10] [0320222034] +15:08:46 [ 11] [ 6] [152034] +15:08:46 [ 37] [ 12] [579151520340] +15:08:46 [ 39] [ 2] [00] +15:08:46 [ 70] [ 3] [810] +15:08:46 ============================================================================ +15:08:46 Calculate Source COMM Id = 6 +15:08:46 ============================================================================ +15:08:46 + + +waiting on router queue for slot.... +15:08:48 ============================================================================ +15:08:48 Slot Id : <481> +15:08:48 Transaction Type : REQUEST +15:08:48 Received From : +15:08:48 ============================================================================ +15:08:48 FNo. Len. Field Value +15:08:48 ============================================================================ +15:08:48 [ 1] [ 4] [0800] +15:08:48 [ 7] [ 10] [0320080755] +15:08:48 [ 11] [ 6] [156935] +15:08:48 [ 70] [ 3] [301] +15:08:48 ============================================================================ +15:08:48 + + +waiting on router queue for slot.... +15:08:48 Sending to : +15:08:48 ============================================================================ +15:08:48 ============================================================================ +15:08:48 Slot Id : <481> +15:08:48 Transaction Type : RESPONSE +15:08:48 Received From : +15:08:48 ============================================================================ +15:08:48 FNo. Len. Field Value +15:08:48 ============================================================================ +15:08:48 [ 1] [ 4] [0810] +15:08:48 [ 7] [ 10] [0320080755] +15:08:48 [ 11] [ 6] [156935] +15:08:48 [ 39] [ 2] [00] +15:08:48 [ 70] [ 3] [301] +15:08:48 ============================================================================ +15:08:48 Calculate Source COMM Id = 2 +15:08:48 ============================================================================ +15:08:48 + + +waiting on router queue for slot.... +15:08:56 ============================================================================ +15:08:56 Slot Id : <31> +15:08:56 Transaction Type : REQUEST +15:08:56 Received From : +15:08:56 ============================================================================ +15:08:56 FNo. Len. Field Value +15:08:56 ============================================================================ +15:08:56 [ 1] [ 4] [0800] +15:08:56 [ 2] [ 5] [02531] +15:08:56 [ 3] [ 6] [579158] +15:08:56 [ 7] [ 10] [0320080856] +15:08:56 [ 11] [ 6] [807291] +15:08:56 [ 15] [ 10] [0320080856] +15:08:56 [ 37] [ 11] [57915807291] +15:08:56 [ 70] [ 3] [001] +15:08:56 ============================================================================ +15:08:56 + + +waiting on router queue for slot.... +15:08:56 ============================================================================ +15:08:56 Slot Id : <31> +15:08:56 Transaction Type : RESPONSE +15:08:56 Received From : +15:08:56 ============================================================================ +15:08:56 FNo. Len. Field Value +15:08:56 ============================================================================ +15:08:56 [ 1] [ 4] [0810] +15:08:56 [ 7] [ 10] [0320080856] +15:08:56 [ 11] [ 6] [807291] +15:08:56 [ 15] [ 4] [0320] +15:08:56 [ 37] [ 12] [57915807291] +15:08:56 [ 39] [ 2] [00] +15:08:56 [ 70] [ 3] [001] +15:08:56 ============================================================================ +15:08:56 Sending to : +15:08:56 ============================================================================ +15:08:56 + + +waiting on router queue for slot.... +15:08:58 ============================================================================ +15:08:58 Slot Id : <23> +15:08:58 Transaction Type : REQUEST +15:08:58 Received From : +15:08:58 ============================================================================ +15:08:58 FNo. Len. Field Value +15:08:58 ============================================================================ +15:08:58 [ 1] [ 4] [0800] +15:08:58 [ 7] [ 10] [0320080806] +15:08:58 [ 11] [ 6] [156936] +15:08:58 [ 70] [ 3] [301] +15:08:58 ============================================================================ +15:08:58 + + +waiting on router queue for slot.... +15:08:58 Sending to : +15:08:58 ============================================================================ +15:08:58 ============================================================================ +15:08:58 Slot Id : <23> +15:08:58 Transaction Type : RESPONSE +15:08:58 Received From : +15:08:58 ============================================================================ +15:08:58 FNo. Len. Field Value +15:08:58 ============================================================================ +15:08:58 [ 1] [ 4] [0810] +15:08:58 [ 7] [ 10] [0320080806] +15:08:58 [ 11] [ 6] [156936] +15:08:58 [ 39] [ 2] [00] +15:08:58 [ 70] [ 3] [301] +15:08:58 ============================================================================ +15:08:58 Calculate Source COMM Id = 2 +15:08:58 ============================================================================ +15:08:58 + + +waiting on router queue for slot.... +15:09:00 ============================================================================ +15:09:00 Slot Id : <11> +15:09:00 Transaction Type : REQUEST +15:09:00 Received From : +15:09:00 ============================================================================ +15:09:00 FNo. Len. Field Value +15:09:00 ============================================================================ +15:09:00 [ 1] [ 4] [0200] +15:09:00 [ 2] [ 16] [6688990101814901] +15:09:00 [ 3] [ 6] [010000] +15:09:00 [ 4] [ 12] [000100000000] +15:09:00 [ 7] [ 10] [0320150855] +15:09:00 [ 11] [ 6] [779576] +15:09:00 [ 12] [ 6] [150855] +15:09:00 [ 13] [ 4] [0320] +15:09:00 [ 15] [ 4] [0320] +15:09:00 [ 18] [ 4] [6011] +15:09:00 [ 22] [ 3] [900] +15:09:00 [ 25] [ 2] [02] +15:09:00 [ 28] [ 9] [D00002000] +15:09:00 [ 32] [ 6] [621354] +15:09:00 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:09:00 [ 37] [ 12] [507904635739] +15:09:00 [ 41] [ 8] [17000800] +15:09:00 [ 42] [ 15] [NATIVE ] +15:09:00 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:09:00 [ 49] [ 3] [418] +15:09:00 [ 52] [ 16] [023A7BB3154447D9] +15:09:00 ============================================================================ +15:09:00 + + +waiting on router queue for slot.... +15:09:00 Sending to : +15:09:00 ============================================================================ +15:09:00 Sending to : +15:09:00 ============================================================================ +15:09:00 ============================================================================ +15:09:00 Slot Id : <11> +15:09:00 Transaction Type : REQUEST +15:09:00 Received From : +15:09:00 ============================================================================ +15:09:00 FNo. Len. Field Value +15:09:00 ============================================================================ +15:09:00 [ 1] [ 4] [0200] +15:09:00 [ 2] [ 16] [6688990101814901] +15:09:00 [ 3] [ 6] [010000] +15:09:00 [ 4] [ 12] [000100000000] +15:09:00 [ 7] [ 10] [0320150855] +15:09:00 [ 11] [ 6] [779576] +15:09:00 [ 12] [ 6] [150855] +15:09:00 [ 13] [ 4] [0320] +15:09:00 [ 15] [ 4] [0320] +15:09:00 [ 18] [ 4] [6011] +15:09:00 [ 22] [ 3] [900] +15:09:00 [ 25] [ 2] [02] +15:09:00 [ 28] [ 9] [D00002000] +15:09:00 [ 32] [ 6] [621354] +15:09:00 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:09:00 [ 37] [ 12] [507904635739] +15:09:00 [ 41] [ 8] [17000800] +15:09:00 [ 42] [ 15] [NATIVE ] +15:09:00 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:09:00 [ 49] [ 3] [418] +15:09:00 [ 52] [ 16] [023A7BB3154447D9] +15:09:00 ============================================================================ +15:09:00 + + +waiting on router queue for slot.... +15:09:00 Sending to : +15:09:00 ============================================================================ +15:09:00 ============================================================================ +15:09:00 Slot Id : <11> +15:09:00 Transaction Type : REQUEST +15:09:00 Received From : +15:09:00 ============================================================================ +15:09:00 FNo. Len. Field Value +15:09:00 ============================================================================ +15:09:00 [ 1] [ 4] [0200] +15:09:00 [ 2] [ 16] [6688990101814901] +15:09:00 [ 3] [ 6] [010000] +15:09:00 [ 4] [ 12] [000100000000] +15:09:00 [ 7] [ 10] [0320150855] +15:09:00 [ 11] [ 6] [779576] +15:09:00 [ 12] [ 6] [150855] +15:09:00 [ 13] [ 4] [0320] +15:09:00 [ 15] [ 4] [0320] +15:09:00 [ 18] [ 4] [6011] +15:09:00 [ 22] [ 3] [900] +15:09:00 [ 25] [ 2] [02] +15:09:00 [ 28] [ 9] [D00002000] +15:09:00 [ 32] [ 6] [621354] +15:09:00 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:09:00 [ 37] [ 12] [507904635739] +15:09:00 [ 41] [ 8] [17000800] +15:09:00 [ 42] [ 15] [NATIVE ] +15:09:00 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:09:00 [ 49] [ 3] [418] +15:09:00 [ 52] [ 16] [69DF151F7689BFC2] +15:09:00 ============================================================================ +15:09:00 + + +waiting on router queue for slot.... +15:09:00 Sending to : <4> +15:09:00 ============================================================================ +15:09:01 ============================================================================ +15:09:01 Slot Id : <11> +15:09:01 Transaction Type : RESPONSE +15:09:01 Received From : +15:09:01 ============================================================================ +15:09:01 FNo. Len. Field Value +15:09:01 ============================================================================ +15:09:01 [ 1] [ 4] [0210] +15:09:01 [ 2] [ 16] [6688990101814901] +15:09:01 [ 3] [ 6] [010000] +15:09:01 [ 4] [ 12] [000100000000] +15:09:01 [ 11] [ 6] [779576] +15:09:01 [ 12] [ 6] [150855] +15:09:01 [ 15] [ 4] [0320] +15:09:01 [ 18] [ 4] [6011] +15:09:01 [ 32] [ 6] [621354] +15:09:01 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:09:01 [ 37] [ 12] [507904635739] +15:09:01 [ 38] [ 6] [576089] +15:09:01 [ 39] [ 2] [00] +15:09:01 [ 41] [ 8] [17000800] +15:09:01 [ 49] [ 3] [418] +15:09:01 [ 54] [ 20] [0002418C000114621324] +15:09:01 ============================================================================ +15:09:01 Sending to : +15:09:01 ============================================================================ +15:09:01 + + +waiting on router queue for slot.... +15:09:02 ============================================================================ +15:09:02 Slot Id : <11> +15:09:02 Transaction Type : RESPONSE +15:09:02 Received From : +15:09:02 ============================================================================ +15:09:02 FNo. Len. Field Value +15:09:02 ============================================================================ +15:09:02 [ 1] [ 4] [0210] +15:09:02 [ 2] [ 16] [6688990101814901] +15:09:02 [ 3] [ 6] [010000] +15:09:02 [ 4] [ 12] [000100000000] +15:09:02 [ 11] [ 6] [779576] +15:09:02 [ 12] [ 6] [150855] +15:09:02 [ 15] [ 4] [0320] +15:09:02 [ 18] [ 4] [6011] +15:09:02 [ 32] [ 6] [621354] +15:09:02 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:09:02 [ 37] [ 12] [507904635739] +15:09:02 [ 38] [ 6] [576089] +15:09:02 [ 39] [ 2] [00] +15:09:02 [ 41] [ 8] [17000800] +15:09:02 [ 49] [ 3] [418] +15:09:02 [ 54] [ 20] [0002418C000114621324] +15:09:02 ============================================================================ +15:09:02 Calculate Source COMM Id = 0 +15:09:02 ============================================================================ +15:09:02 + + +waiting on router queue for slot.... +15:09:05 ============================================================================ +15:09:05 Slot Id : <3> +15:09:05 Transaction Type : REQUEST +15:09:05 Received From : +15:09:05 ============================================================================ +15:09:05 FNo. Len. Field Value +15:09:05 ============================================================================ +15:09:05 [ 1] [ 4] [0200] +15:09:05 [ 2] [ 16] [1808931300012745] +15:09:05 [ 3] [ 6] [011000] +15:09:05 [ 4] [ 12] [000100000000] +15:09:05 [ 7] [ 10] [0320150900] +15:09:05 [ 11] [ 6] [779597] +15:09:05 [ 12] [ 6] [150900] +15:09:05 [ 13] [ 4] [0320] +15:09:05 [ 15] [ 4] [0320] +15:09:05 [ 18] [ 4] [6011] +15:09:05 [ 22] [ 3] [900] +15:09:05 [ 25] [ 2] [02] +15:09:05 [ 28] [ 9] [D00002000] +15:09:05 [ 32] [ 6] [621354] +15:09:05 [ 35] [ 27] [1808931300012745=1803500076] +15:09:05 [ 37] [ 12] [507904989324] +15:09:05 [ 41] [ 8] [01012300] +15:09:05 [ 42] [ 15] [NATIVE ] +15:09:05 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:09:05 [ 49] [ 3] [418] +15:09:05 [ 52] [ 16] [E083E171B1C17587] +15:09:05 ============================================================================ +15:09:05 + + +waiting on router queue for slot.... +15:09:05 Sending to : +15:09:05 ============================================================================ +15:09:05 Sending to : +15:09:05 ============================================================================ +15:09:05 ============================================================================ +15:09:05 Slot Id : <3> +15:09:05 Transaction Type : REQUEST +15:09:05 Received From : +15:09:05 ============================================================================ +15:09:05 FNo. Len. Field Value +15:09:05 ============================================================================ +15:09:05 [ 1] [ 4] [0200] +15:09:05 [ 2] [ 16] [1808931300012745] +15:09:05 [ 3] [ 6] [011000] +15:09:05 [ 4] [ 12] [000100000000] +15:09:05 [ 7] [ 10] [0320150900] +15:09:05 [ 11] [ 6] [779597] +15:09:05 [ 12] [ 6] [150900] +15:09:05 [ 13] [ 4] [0320] +15:09:05 [ 15] [ 4] [0320] +15:09:05 [ 18] [ 4] [6011] +15:09:05 [ 22] [ 3] [900] +15:09:05 [ 25] [ 2] [02] +15:09:05 [ 28] [ 9] [D00002000] +15:09:05 [ 32] [ 6] [621354] +15:09:05 [ 35] [ 27] [1808931300012745=1803500076] +15:09:05 [ 37] [ 12] [507904989324] +15:09:05 [ 41] [ 8] [01012300] +15:09:05 [ 42] [ 15] [NATIVE ] +15:09:05 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:09:05 [ 49] [ 3] [418] +15:09:05 [ 52] [ 16] [E083E171B1C17587] +15:09:05 ============================================================================ +15:09:05 + + +waiting on router queue for slot.... +15:09:05 Sending to : +15:09:05 ============================================================================ +15:09:05 ============================================================================ +15:09:05 Slot Id : <3> +15:09:05 Transaction Type : REQUEST +15:09:05 Received From : +15:09:05 ============================================================================ +15:09:05 FNo. Len. Field Value +15:09:05 ============================================================================ +15:09:05 [ 1] [ 4] [0200] +15:09:05 [ 2] [ 16] [1808931300012745] +15:09:05 [ 3] [ 6] [011000] +15:09:05 [ 4] [ 12] [000100000000] +15:09:05 [ 7] [ 10] [0320150900] +15:09:05 [ 11] [ 6] [779597] +15:09:05 [ 12] [ 6] [150900] +15:09:05 [ 13] [ 4] [0320] +15:09:05 [ 15] [ 4] [0320] +15:09:05 [ 18] [ 4] [6011] +15:09:05 [ 22] [ 3] [900] +15:09:05 [ 25] [ 2] [02] +15:09:05 [ 28] [ 9] [D00002000] +15:09:05 [ 32] [ 6] [621354] +15:09:05 [ 35] [ 27] [1808931300012745=1803500076] +15:09:05 [ 37] [ 12] [507904989324] +15:09:05 [ 41] [ 8] [01012300] +15:09:05 [ 42] [ 15] [NATIVE ] +15:09:05 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:09:05 [ 49] [ 3] [418] +15:09:05 [ 52] [ 16] [1A686361C36EB197] +15:09:05 ============================================================================ +15:09:05 + + +waiting on router queue for slot.... +15:09:05 Sending to : <2> +15:09:05 ============================================================================ +15:09:08 ============================================================================ +15:09:08 Slot Id : <3> +15:09:08 Transaction Type : RESPONSE +15:09:08 Received From : +15:09:08 ============================================================================ +15:09:08 FNo. Len. Field Value +15:09:08 ============================================================================ +15:09:08 [ 1] [ 4] [0210] +15:09:08 [ 2] [ 16] [1808931300012745] +15:09:08 [ 3] [ 6] [011000] +15:09:08 [ 4] [ 12] [000100000000] +15:09:08 [ 6] [ 12] [000100000000] +15:09:08 [ 7] [ 10] [0320150900] +15:09:08 [ 11] [ 6] [779597] +15:09:08 [ 12] [ 6] [150900] +15:09:08 [ 13] [ 4] [0320] +15:09:08 [ 18] [ 4] [6011] +15:09:08 [ 19] [ 3] [418] +15:09:08 [ 22] [ 3] [021] +15:09:08 [ 32] [ 6] [621354] +15:09:08 [ 35] [ 27] [1808931300012745=1803500076] +15:09:08 [ 37] [ 12] [507904989324] +15:09:08 [ 38] [ 6] [779597] +15:09:08 [ 39] [ 2] [00] +15:09:08 [ 41] [ 8] [01012300] +15:09:08 [ 49] [ 3] [418] +15:09:08 [ 52] [ 16] [1A686361C36EB197] +15:09:08 [ 54] [ 20] [1001418C000105600600] +15:09:08 ============================================================================ +15:09:08 Sending to : +15:09:08 ============================================================================ +15:09:08 + + +waiting on router queue for slot.... +15:09:09 ============================================================================ +15:09:09 Slot Id : <3> +15:09:09 Transaction Type : RESPONSE +15:09:09 Received From : +15:09:09 ============================================================================ +15:09:09 FNo. Len. Field Value +15:09:09 ============================================================================ +15:09:09 [ 1] [ 4] [0210] +15:09:09 [ 2] [ 16] [1808931300012745] +15:09:09 [ 3] [ 6] [011000] +15:09:09 [ 4] [ 12] [000100000000] +15:09:09 [ 6] [ 12] [000100000000] +15:09:09 [ 7] [ 10] [0320150900] +15:09:09 [ 11] [ 6] [779597] +15:09:09 [ 12] [ 6] [150900] +15:09:09 [ 13] [ 4] [0320] +15:09:09 [ 18] [ 4] [6011] +15:09:09 [ 19] [ 3] [418] +15:09:09 [ 22] [ 3] [021] +15:09:09 [ 32] [ 6] [621354] +15:09:09 [ 35] [ 27] [1808931300012745=1803500076] +15:09:09 [ 37] [ 12] [507904989324] +15:09:09 [ 38] [ 6] [779597] +15:09:09 [ 39] [ 2] [00] +15:09:09 [ 41] [ 8] [01012300] +15:09:09 [ 49] [ 3] [418] +15:09:09 [ 52] [ 16] [1A686361C36EB197] +15:09:09 [ 54] [ 20] [1001418C000105600600] +15:09:09 ============================================================================ +15:09:09 Calculate Source COMM Id = 0 +15:09:09 ============================================================================ +15:09:09 + + +waiting on router queue for slot.... +15:09:20 ============================================================================ +15:09:20 Slot Id : <35> +15:09:20 Transaction Type : REQUEST +15:09:20 Received From : +15:09:20 ============================================================================ +15:09:20 FNo. Len. Field Value +15:09:20 ============================================================================ +15:09:20 [ 1] [ 4] [0800] +15:09:20 [ 7] [ 10] [0320080827] +15:09:20 [ 11] [ 6] [156937] +15:09:20 [ 70] [ 3] [301] +15:09:20 ============================================================================ +15:09:20 + + +waiting on router queue for slot.... +15:09:20 Sending to : +15:09:20 ============================================================================ +15:09:20 ============================================================================ +15:09:20 Slot Id : <35> +15:09:20 Transaction Type : RESPONSE +15:09:20 Received From : +15:09:20 ============================================================================ +15:09:20 FNo. Len. Field Value +15:09:20 ============================================================================ +15:09:20 [ 1] [ 4] [0810] +15:09:20 [ 7] [ 10] [0320080827] +15:09:20 [ 11] [ 6] [156937] +15:09:20 [ 39] [ 2] [00] +15:09:20 [ 70] [ 3] [301] +15:09:20 ============================================================================ +15:09:20 Calculate Source COMM Id = 2 +15:09:20 ============================================================================ +15:09:20 + + +waiting on router queue for slot.... +15:09:30 ============================================================================ +15:09:30 Slot Id : <33> +15:09:30 Transaction Type : REQUEST +15:09:30 Received From : +15:09:30 ============================================================================ +15:09:30 FNo. Len. Field Value +15:09:30 ============================================================================ +15:09:30 [ 1] [ 4] [0800] +15:09:30 [ 7] [ 10] [0320080838] +15:09:30 [ 11] [ 6] [156938] +15:09:30 [ 70] [ 3] [301] +15:09:30 ============================================================================ +15:09:30 + + +waiting on router queue for slot.... +15:09:30 Sending to : +15:09:30 ============================================================================ +15:09:30 ============================================================================ +15:09:30 Slot Id : <33> +15:09:30 Transaction Type : RESPONSE +15:09:30 Received From : +15:09:30 ============================================================================ +15:09:30 FNo. Len. Field Value +15:09:30 ============================================================================ +15:09:30 [ 1] [ 4] [0810] +15:09:30 [ 7] [ 10] [0320080838] +15:09:30 [ 11] [ 6] [156938] +15:09:30 [ 39] [ 2] [00] +15:09:30 [ 70] [ 3] [301] +15:09:30 ============================================================================ +15:09:30 Calculate Source COMM Id = 2 +15:09:30 ============================================================================ +15:09:30 + + +waiting on router queue for slot.... +15:09:40 ============================================================================ +15:09:40 Slot Id : <21> +15:09:40 Transaction Type : REQUEST +15:09:40 Received From : +15:09:40 ============================================================================ +15:09:40 FNo. Len. Field Value +15:09:40 ============================================================================ +15:09:40 [ 1] [ 4] [0800] +15:09:40 [ 7] [ 10] [0320080848] +15:09:40 [ 11] [ 6] [156939] +15:09:40 [ 70] [ 3] [301] +15:09:40 ============================================================================ +15:09:40 + + +waiting on router queue for slot.... +15:09:40 Sending to : +15:09:40 ============================================================================ +15:09:40 ============================================================================ +15:09:40 Slot Id : <21> +15:09:40 Transaction Type : RESPONSE +15:09:40 Received From : +15:09:40 ============================================================================ +15:09:40 FNo. Len. Field Value +15:09:40 ============================================================================ +15:09:40 [ 1] [ 4] [0810] +15:09:40 [ 7] [ 10] [0320080848] +15:09:40 [ 11] [ 6] [156939] +15:09:40 [ 39] [ 2] [00] +15:09:40 [ 70] [ 3] [301] +15:09:40 ============================================================================ +15:09:40 Calculate Source COMM Id = 2 +15:09:40 ============================================================================ +15:09:40 + + +waiting on router queue for slot.... +15:09:51 ============================================================================ +15:09:51 Slot Id : <496> +15:09:51 Transaction Type : REQUEST +15:09:51 Received From : +15:09:51 ============================================================================ +15:09:51 FNo. Len. Field Value +15:09:51 ============================================================================ +15:09:51 [ 1] [ 4] [0800] +15:09:51 [ 7] [ 10] [0320222139] +15:09:51 [ 11] [ 6] [152139] +15:09:51 [ 37] [ 12] [57915152139] +15:09:51 [ 70] [ 3] [301] +15:09:51 ============================================================================ +15:09:51 + + +waiting on router queue for slot.... +15:09:51 Sending to : +15:09:51 ============================================================================ +15:09:51 ============================================================================ +15:09:51 Slot Id : <496> +15:09:51 Transaction Type : RESPONSE +15:09:51 Received From : +15:09:51 ============================================================================ +15:09:51 FNo. Len. Field Value +15:09:51 ============================================================================ +15:09:51 [ 1] [ 4] [0810] +15:09:51 [ 7] [ 10] [0320222139] +15:09:51 [ 11] [ 6] [152139] +15:09:51 [ 37] [ 12] [579151521390] +15:09:51 [ 39] [ 2] [00] +15:09:51 [ 70] [ 3] [810] +15:09:51 ============================================================================ +15:09:51 Calculate Source COMM Id = 6 +15:09:51 ============================================================================ +15:09:51 + + +waiting on router queue for slot.... +15:09:52 ============================================================================ +15:09:52 Slot Id : <461> +15:09:52 Transaction Type : REQUEST +15:09:52 Received From : +15:09:52 ============================================================================ +15:09:52 FNo. Len. Field Value +15:09:52 ============================================================================ +15:09:52 [ 1] [ 4] [0200] +15:09:52 [ 2] [ 16] [6213545000095913] +15:09:52 [ 3] [ 6] [010000] +15:09:52 [ 4] [ 12] [000100000000] +15:09:52 [ 7] [ 10] [0320150743] +15:09:52 [ 11] [ 6] [949562] +15:09:52 [ 12] [ 6] [150743] +15:09:52 [ 13] [ 4] [0320] +15:09:52 [ 15] [ 4] [0320] +15:09:52 [ 18] [ 4] [6011] +15:09:52 [ 19] [ 3] [418] +15:09:52 [ 22] [ 3] [021] +15:09:52 [ 25] [ 2] [01] +15:09:52 [ 28] [ 9] [D00002000] +15:09:52 [ 32] [ 6] [668899] +15:09:52 [ 35] [ 32] [6213545000095913=491212019591128] +15:09:52 [ 37] [ 12] [507900823616] +15:09:52 [ 41] [ 8] [03015001] +15:09:52 [ 42] [ 15] [APT ] +15:09:52 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +15:09:52 [ 49] [ 3] [418] +15:09:52 [ 52] [ 16] [5B179CD67F19703A] +15:09:52 ============================================================================ +15:09:52 + + +waiting on router queue for slot.... +15:09:52 Sending to : +15:09:52 ============================================================================ +15:09:52 Sending to : +15:09:52 ============================================================================ +15:09:53 ============================================================================ +15:09:53 Slot Id : <461> +15:09:53 Transaction Type : REQUEST +15:09:53 Received From : +15:09:53 ============================================================================ +15:09:53 FNo. Len. Field Value +15:09:53 ============================================================================ +15:09:53 [ 1] [ 4] [0200] +15:09:53 [ 2] [ 16] [6213545000095913] +15:09:53 [ 3] [ 6] [010000] +15:09:53 [ 4] [ 12] [000100000000] +15:09:53 [ 7] [ 10] [0320150743] +15:09:53 [ 11] [ 6] [949562] +15:09:53 [ 12] [ 6] [150743] +15:09:53 [ 13] [ 4] [0320] +15:09:53 [ 15] [ 4] [0320] +15:09:53 [ 18] [ 4] [6011] +15:09:53 [ 19] [ 3] [418] +15:09:53 [ 22] [ 3] [021] +15:09:53 [ 25] [ 2] [01] +15:09:53 [ 28] [ 9] [D00002000] +15:09:53 [ 32] [ 6] [668899] +15:09:53 [ 35] [ 32] [6213545000095913=491212019591128] +15:09:53 [ 37] [ 12] [507900823616] +15:09:53 [ 41] [ 8] [03015001] +15:09:53 [ 42] [ 15] [APT ] +15:09:53 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +15:09:53 [ 49] [ 3] [418] +15:09:53 [ 52] [ 16] [5B179CD67F19703A] +15:09:53 ============================================================================ +15:09:53 + + +waiting on router queue for slot.... +15:09:53 Sending to : +15:09:53 ============================================================================ +15:09:53 ============================================================================ +15:09:53 Slot Id : <461> +15:09:53 Transaction Type : REQUEST +15:09:53 Received From : +15:09:53 ============================================================================ +15:09:53 FNo. Len. Field Value +15:09:53 ============================================================================ +15:09:53 [ 1] [ 4] [0200] +15:09:53 [ 2] [ 16] [6213545000095913] +15:09:53 [ 3] [ 6] [010000] +15:09:53 [ 4] [ 12] [000100000000] +15:09:53 [ 7] [ 10] [0320150743] +15:09:53 [ 11] [ 6] [949562] +15:09:53 [ 12] [ 6] [150743] +15:09:53 [ 13] [ 4] [0320] +15:09:53 [ 15] [ 4] [0320] +15:09:53 [ 18] [ 4] [6011] +15:09:53 [ 19] [ 3] [418] +15:09:53 [ 22] [ 3] [021] +15:09:53 [ 25] [ 2] [01] +15:09:53 [ 28] [ 9] [D00002000] +15:09:53 [ 32] [ 6] [668899] +15:09:53 [ 35] [ 32] [6213545000095913=491212019591128] +15:09:53 [ 37] [ 12] [507900823616] +15:09:53 [ 41] [ 8] [03015001] +15:09:53 [ 42] [ 15] [APT ] +15:09:53 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +15:09:53 [ 49] [ 3] [418] +15:09:53 [ 52] [ 16] [A10B4884E7052879] +15:09:53 ============================================================================ +15:09:53 + + +waiting on router queue for slot.... +15:09:53 Sending to : <0> +15:09:53 ============================================================================ +15:09:53 ============================================================================ +15:09:53 Slot Id : <461> +15:09:53 Transaction Type : RESPONSE +15:09:53 Received From : +15:09:53 ============================================================================ +15:09:53 FNo. Len. Field Value +15:09:53 ============================================================================ +15:09:53 [ 1] [ 4] [0210] +15:09:53 [ 2] [ 16] [6213545000095913] +15:09:53 [ 3] [ 6] [010000] +15:09:53 [ 4] [ 12] [000100000000] +15:09:53 [ 7] [ 10] [0320150743] +15:09:53 [ 11] [ 6] [949562] +15:09:53 [ 12] [ 6] [150743] +15:09:53 [ 13] [ 4] [0320] +15:09:53 [ 15] [ 4] [0320] +15:09:53 [ 18] [ 4] [6011] +15:09:53 [ 19] [ 3] [418] +15:09:53 [ 32] [ 6] [668899] +15:09:53 [ 35] [ 32] [6213545000095913=491212019591128] +15:09:53 [ 37] [ 12] [507900823616] +15:09:53 [ 38] [ 6] [657841] +15:09:53 [ 39] [ 2] [00] +15:09:53 [ 41] [ 8] [03015001] +15:09:53 [ 49] [ 3] [418] +15:09:53 [ 54] [ 40] [0001418C0001289523780002418C000128952378] +15:09:53 ============================================================================ +15:09:53 Sending to : +15:09:53 ============================================================================ +15:09:53 + + +waiting on router queue for slot.... +15:09:55 ============================================================================ +15:09:55 Slot Id : <461> +15:09:55 Transaction Type : RESPONSE +15:09:55 Received From : +15:09:55 ============================================================================ +15:09:55 FNo. Len. Field Value +15:09:55 ============================================================================ +15:09:55 [ 1] [ 4] [0210] +15:09:55 [ 2] [ 16] [6213545000095913] +15:09:55 [ 3] [ 6] [010000] +15:09:55 [ 4] [ 12] [000100000000] +15:09:55 [ 7] [ 10] [0320150743] +15:09:55 [ 11] [ 6] [949562] +15:09:55 [ 12] [ 6] [150743] +15:09:55 [ 13] [ 4] [0320] +15:09:55 [ 15] [ 4] [0320] +15:09:55 [ 18] [ 4] [6011] +15:09:55 [ 19] [ 3] [418] +15:09:55 [ 32] [ 6] [668899] +15:09:55 [ 35] [ 32] [6213545000095913=491212019591128] +15:09:55 [ 37] [ 12] [507900823616] +15:09:55 [ 38] [ 6] [657841] +15:09:55 [ 39] [ 2] [00] +15:09:55 [ 41] [ 8] [03015001] +15:09:55 [ 49] [ 3] [418] +15:09:55 [ 54] [ 40] [0001418C0001289523780002418C000128952378] +15:09:55 ============================================================================ +15:09:55 Calculate Source COMM Id = 4 +15:09:55 ============================================================================ +15:09:55 + + +waiting on router queue for slot.... +15:09:55 ============================================================================ +15:09:55 Slot Id : <30> +15:09:55 Transaction Type : REQUEST +15:09:55 Received From : +15:09:55 ============================================================================ +15:09:55 FNo. Len. Field Value +15:09:55 ============================================================================ +15:09:55 [ 1] [ 4] [0800] +15:09:55 [ 7] [ 10] [0320081742] +15:09:55 [ 11] [ 6] [060058] +15:09:55 [ 37] [ 12] [57915060058] +15:09:55 [ 70] [ 3] [301] +15:09:55 ============================================================================ +15:09:55 + + +waiting on router queue for slot.... +15:09:55 Sending to : +15:09:55 ============================================================================ +15:09:55 ============================================================================ +15:09:55 Slot Id : <30> +15:09:55 Transaction Type : RESPONSE +15:09:55 Received From : +15:09:55 ============================================================================ +15:09:55 FNo. Len. Field Value +15:09:55 ============================================================================ +15:09:55 [ 1] [ 4] [0810] +15:09:55 [ 7] [ 10] [0320081742] +15:09:55 [ 11] [ 6] [060058] +15:09:55 [ 37] [ 12] [579150600580] +15:09:55 [ 39] [ 2] [00] +15:09:55 [ 70] [ 3] [810] +15:09:55 ============================================================================ +15:09:55 Calculate Source COMM Id = 1 +15:09:55 ============================================================================ +15:09:55 + + +waiting on router queue for slot.... +15:09:56 ============================================================================ +15:09:56 Slot Id : <37> +15:09:56 Transaction Type : REQUEST +15:09:56 Received From : +15:09:56 ============================================================================ +15:09:56 FNo. Len. Field Value +15:09:56 ============================================================================ +15:09:56 [ 1] [ 4] [0800] +15:09:56 [ 7] [ 10] [0320080903] +15:09:56 [ 11] [ 6] [156940] +15:09:56 [ 70] [ 3] [301] +15:09:56 ============================================================================ +15:09:56 + + +waiting on router queue for slot.... +15:09:56 Sending to : +15:09:56 ============================================================================ +15:09:56 ============================================================================ +15:09:56 Slot Id : <37> +15:09:56 Transaction Type : RESPONSE +15:09:56 Received From : +15:09:56 ============================================================================ +15:09:56 FNo. Len. Field Value +15:09:56 ============================================================================ +15:09:56 [ 1] [ 4] [0810] +15:09:56 [ 7] [ 10] [0320080903] +15:09:56 [ 11] [ 6] [156940] +15:09:56 [ 39] [ 2] [00] +15:09:56 [ 70] [ 3] [301] +15:09:56 ============================================================================ +15:09:56 Calculate Source COMM Id = 2 +15:09:56 ============================================================================ +15:09:56 + + +waiting on router queue for slot.... +15:09:58 ============================================================================ +15:09:58 Slot Id : <9> +15:09:58 Transaction Type : REQUEST +15:09:58 Received From : +15:09:58 ============================================================================ +15:09:58 FNo. Len. Field Value +15:09:58 ============================================================================ +15:09:58 [ 1] [ 4] [0800] +15:09:58 [ 2] [ 5] [02531] +15:09:58 [ 3] [ 6] [579158] +15:09:58 [ 7] [ 10] [0320080958] +15:09:58 [ 11] [ 6] [807292] +15:09:58 [ 15] [ 10] [0320080958] +15:09:58 [ 37] [ 11] [57915807292] +15:09:58 [ 70] [ 3] [001] +15:09:58 ============================================================================ +15:09:58 + + +waiting on router queue for slot.... +15:09:58 ============================================================================ +15:09:58 Slot Id : <9> +15:09:58 Transaction Type : RESPONSE +15:09:58 Received From : +15:09:58 ============================================================================ +15:09:58 FNo. Len. Field Value +15:09:58 ============================================================================ +15:09:58 [ 1] [ 4] [0810] +15:09:58 [ 7] [ 10] [0320080958] +15:09:58 [ 11] [ 6] [807292] +15:09:58 [ 15] [ 4] [0320] +15:09:58 [ 37] [ 12] [57915807292] +15:09:58 [ 39] [ 2] [00] +15:09:58 [ 70] [ 3] [001] +15:09:58 ============================================================================ +15:09:58 Sending to : +15:09:58 ============================================================================ +15:09:58 + + +waiting on router queue for slot.... +15:10:06 ============================================================================ +15:10:06 Slot Id : <45> +15:10:06 Transaction Type : REQUEST +15:10:06 Received From : +15:10:06 ============================================================================ +15:10:06 FNo. Len. Field Value +15:10:06 ============================================================================ +15:10:06 [ 1] [ 4] [0800] +15:10:06 [ 7] [ 10] [0320080914] +15:10:06 [ 11] [ 6] [156941] +15:10:06 [ 70] [ 3] [301] +15:10:06 ============================================================================ +15:10:06 + + +waiting on router queue for slot.... +15:10:06 Sending to : +15:10:06 ============================================================================ +15:10:06 ============================================================================ +15:10:06 Slot Id : <45> +15:10:06 Transaction Type : RESPONSE +15:10:06 Received From : +15:10:06 ============================================================================ +15:10:06 FNo. Len. Field Value +15:10:06 ============================================================================ +15:10:06 [ 1] [ 4] [0810] +15:10:06 [ 7] [ 10] [0320080914] +15:10:06 [ 11] [ 6] [156941] +15:10:06 [ 39] [ 2] [00] +15:10:06 [ 70] [ 3] [301] +15:10:06 ============================================================================ +15:10:06 Calculate Source COMM Id = 2 +15:10:06 ============================================================================ +15:10:06 + + +waiting on router queue for slot.... +15:10:09 ============================================================================ +15:10:09 Slot Id : <36> +15:10:09 Transaction Type : REQUEST +15:10:09 Received From : +15:10:09 ============================================================================ +15:10:09 FNo. Len. Field Value +15:10:09 ============================================================================ +15:10:09 [ 1] [ 4] [0200] +15:10:09 [ 2] [ 16] [6213545000845085] +15:10:09 [ 3] [ 6] [010000] +15:10:09 [ 4] [ 12] [000010000000] +15:10:09 [ 7] [ 10] [0320080916] +15:10:09 [ 11] [ 6] [269926] +15:10:09 [ 12] [ 6] [150916] +15:10:09 [ 13] [ 4] [0320] +15:10:09 [ 14] [ 4] [4912] +15:10:09 [ 15] [ 4] [0320] +15:10:09 [ 18] [ 4] [6011] +15:10:09 [ 19] [ 3] [418] +15:10:09 [ 22] [ 3] [021] +15:10:09 [ 25] [ 2] [01] +15:10:09 [ 28] [ 9] [D00002000] +15:10:09 [ 32] [ 6] [180893] +15:10:09 [ 35] [ 32] [6213545000845085=491212014508421] +15:10:09 [ 37] [ 12] [507908269926] +15:10:09 [ 41] [ 8] [0465UDNM] +15:10:09 [ 42] [ 15] [999999 ] +15:10:09 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +15:10:09 [ 49] [ 3] [418] +15:10:09 [ 52] [ 16] [7A4C078AF5AD0C64] +15:10:09 ============================================================================ +15:10:09 + + +waiting on router queue for slot.... +15:10:09 Sending to : +15:10:09 ============================================================================ +15:10:09 Sending to : +15:10:09 ============================================================================ +15:10:10 ============================================================================ +15:10:10 Slot Id : <36> +15:10:10 Transaction Type : REQUEST +15:10:10 Received From : +15:10:10 ============================================================================ +15:10:10 FNo. Len. Field Value +15:10:10 ============================================================================ +15:10:10 [ 1] [ 4] [0200] +15:10:10 [ 2] [ 16] [6213545000845085] +15:10:10 [ 3] [ 6] [010000] +15:10:10 [ 4] [ 12] [000010000000] +15:10:10 [ 7] [ 10] [0320080916] +15:10:10 [ 11] [ 6] [269926] +15:10:10 [ 12] [ 6] [150916] +15:10:10 [ 13] [ 4] [0320] +15:10:10 [ 14] [ 4] [4912] +15:10:10 [ 15] [ 4] [0320] +15:10:10 [ 18] [ 4] [6011] +15:10:10 [ 19] [ 3] [418] +15:10:10 [ 22] [ 3] [021] +15:10:10 [ 25] [ 2] [01] +15:10:10 [ 28] [ 9] [D00002000] +15:10:10 [ 32] [ 6] [180893] +15:10:10 [ 35] [ 32] [6213545000845085=491212014508421] +15:10:10 [ 37] [ 12] [507908269926] +15:10:10 [ 41] [ 8] [0465UDNM] +15:10:10 [ 42] [ 15] [999999 ] +15:10:10 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +15:10:10 [ 49] [ 3] [418] +15:10:10 [ 52] [ 16] [7A4C078AF5AD0C64] +15:10:10 ============================================================================ +15:10:10 + + +waiting on router queue for slot.... +15:10:10 Sending to : +15:10:10 ============================================================================ +15:10:10 ============================================================================ +15:10:10 Slot Id : <36> +15:10:10 Transaction Type : REQUEST +15:10:10 Received From : +15:10:10 ============================================================================ +15:10:10 FNo. Len. Field Value +15:10:10 ============================================================================ +15:10:10 [ 1] [ 4] [0200] +15:10:10 [ 2] [ 16] [6213545000845085] +15:10:10 [ 3] [ 6] [010000] +15:10:10 [ 4] [ 12] [000010000000] +15:10:10 [ 7] [ 10] [0320080916] +15:10:10 [ 11] [ 6] [269926] +15:10:10 [ 12] [ 6] [150916] +15:10:10 [ 13] [ 4] [0320] +15:10:10 [ 14] [ 4] [4912] +15:10:10 [ 15] [ 4] [0320] +15:10:10 [ 18] [ 4] [6011] +15:10:10 [ 19] [ 3] [418] +15:10:10 [ 22] [ 3] [021] +15:10:10 [ 25] [ 2] [01] +15:10:10 [ 28] [ 9] [D00002000] +15:10:10 [ 32] [ 6] [180893] +15:10:10 [ 35] [ 32] [6213545000845085=491212014508421] +15:10:10 [ 37] [ 12] [507908269926] +15:10:10 [ 41] [ 8] [0465UDNM] +15:10:10 [ 42] [ 15] [999999 ] +15:10:10 [ 43] [ 40] [ATM NARMOR OUDOMXAI, Namor, Lao People ] +15:10:10 [ 49] [ 3] [418] +15:10:10 [ 52] [ 16] [37D18F51591FE069] +15:10:10 ============================================================================ +15:10:10 + + +waiting on router queue for slot.... +15:10:10 Sending to : <0> +15:10:10 ============================================================================ +15:10:10 ============================================================================ +15:10:10 Slot Id : <36> +15:10:10 Transaction Type : RESPONSE +15:10:10 Received From : +15:10:10 ============================================================================ +15:10:10 FNo. Len. Field Value +15:10:10 ============================================================================ +15:10:10 [ 1] [ 4] [0210] +15:10:10 [ 2] [ 16] [6213545000845085] +15:10:10 [ 3] [ 6] [010000] +15:10:10 [ 4] [ 12] [000010000000] +15:10:10 [ 7] [ 10] [0320080916] +15:10:10 [ 11] [ 6] [269926] +15:10:10 [ 12] [ 6] [150916] +15:10:10 [ 13] [ 4] [0320] +15:10:10 [ 15] [ 4] [0320] +15:10:10 [ 18] [ 4] [6011] +15:10:10 [ 19] [ 3] [418] +15:10:10 [ 32] [ 6] [180893] +15:10:10 [ 35] [ 32] [6213545000845085=491212014508421] +15:10:10 [ 37] [ 12] [507908269926] +15:10:10 [ 38] [ 6] [269926] +15:10:10 [ 39] [ 2] [51] +15:10:10 [ 41] [ 8] [0465UDNM] +15:10:10 [ 49] [ 3] [418] +15:10:10 [ 54] [ 40] [0001418C0000141661100002418C000014166110] +15:10:10 ============================================================================ +15:10:10 Sending to : +15:10:10 ============================================================================ +15:10:10 + + +waiting on router queue for slot.... +15:10:11 ============================================================================ +15:10:11 Slot Id : <36> +15:10:11 Transaction Type : RESPONSE +15:10:11 Received From : +15:10:11 ============================================================================ +15:10:11 FNo. Len. Field Value +15:10:11 ============================================================================ +15:10:11 [ 1] [ 4] [0210] +15:10:11 [ 2] [ 16] [6213545000845085] +15:10:11 [ 3] [ 6] [010000] +15:10:11 [ 4] [ 12] [000010000000] +15:10:11 [ 7] [ 10] [0320080916] +15:10:11 [ 11] [ 6] [269926] +15:10:11 [ 12] [ 6] [150916] +15:10:11 [ 13] [ 4] [0320] +15:10:11 [ 15] [ 4] [0320] +15:10:11 [ 18] [ 4] [6011] +15:10:11 [ 19] [ 3] [418] +15:10:11 [ 32] [ 6] [180893] +15:10:11 [ 35] [ 32] [6213545000845085=491212014508421] +15:10:11 [ 37] [ 12] [507908269926] +15:10:11 [ 38] [ 6] [269926] +15:10:11 [ 39] [ 2] [51] +15:10:11 [ 41] [ 8] [0465UDNM] +15:10:11 [ 49] [ 3] [418] +15:10:11 [ 54] [ 40] [0001418C0000141661100002418C000014166110] +15:10:11 ============================================================================ +15:10:11 Calculate Source COMM Id = 2 +15:10:11 ============================================================================ +15:10:11 + + +waiting on router queue for slot.... +15:10:23 ============================================================================ +15:10:23 Slot Id : <18> +15:10:23 Transaction Type : REQUEST +15:10:23 Received From : +15:10:23 ============================================================================ +15:10:23 FNo. Len. Field Value +15:10:23 ============================================================================ +15:10:23 [ 1] [ 4] [0800] +15:10:23 [ 7] [ 10] [0320080930] +15:10:23 [ 11] [ 6] [156942] +15:10:23 [ 70] [ 3] [301] +15:10:23 ============================================================================ +15:10:23 + + +waiting on router queue for slot.... +15:10:23 Sending to : +15:10:23 ============================================================================ +15:10:23 ============================================================================ +15:10:23 Slot Id : <18> +15:10:23 Transaction Type : RESPONSE +15:10:23 Received From : +15:10:23 ============================================================================ +15:10:23 FNo. Len. Field Value +15:10:23 ============================================================================ +15:10:23 [ 1] [ 4] [0810] +15:10:23 [ 7] [ 10] [0320080930] +15:10:23 [ 11] [ 6] [156942] +15:10:23 [ 39] [ 2] [00] +15:10:23 [ 70] [ 3] [301] +15:10:23 ============================================================================ +15:10:23 Calculate Source COMM Id = 2 +15:10:23 ============================================================================ +15:10:23 + + +waiting on router queue for slot.... +15:10:27 ============================================================================ +15:10:27 Slot Id : <497> +15:10:27 Transaction Type : REQUEST +15:10:27 Received From : +15:10:27 ============================================================================ +15:10:27 FNo. Len. Field Value +15:10:27 ============================================================================ +15:10:27 [ 1] [ 4] [0200] +15:10:27 [ 2] [ 16] [1808931300012745] +15:10:27 [ 3] [ 6] [012000] +15:10:27 [ 4] [ 12] [000100000000] +15:10:27 [ 7] [ 10] [0320151023] +15:10:27 [ 11] [ 6] [779878] +15:10:27 [ 12] [ 6] [151023] +15:10:27 [ 13] [ 4] [0320] +15:10:27 [ 15] [ 4] [0320] +15:10:27 [ 18] [ 4] [6011] +15:10:27 [ 22] [ 3] [900] +15:10:27 [ 25] [ 2] [02] +15:10:27 [ 28] [ 9] [D00002000] +15:10:27 [ 32] [ 6] [621354] +15:10:27 [ 35] [ 27] [1808931300012745=1803500076] +15:10:27 [ 37] [ 12] [507904989328] +15:10:27 [ 41] [ 8] [01012300] +15:10:27 [ 42] [ 15] [NATIVE ] +15:10:27 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:10:27 [ 49] [ 3] [418] +15:10:27 [ 52] [ 16] [E083E171B1C17587] +15:10:27 ============================================================================ +15:10:27 + + +waiting on router queue for slot.... +15:10:27 Sending to : +15:10:27 ============================================================================ +15:10:27 Sending to : +15:10:27 ============================================================================ +15:10:28 ============================================================================ +15:10:28 Slot Id : <497> +15:10:28 Transaction Type : REQUEST +15:10:28 Received From : +15:10:28 ============================================================================ +15:10:28 FNo. Len. Field Value +15:10:28 ============================================================================ +15:10:28 [ 1] [ 4] [0200] +15:10:28 [ 2] [ 16] [1808931300012745] +15:10:28 [ 3] [ 6] [012000] +15:10:28 [ 4] [ 12] [000100000000] +15:10:28 [ 7] [ 10] [0320151023] +15:10:28 [ 11] [ 6] [779878] +15:10:28 [ 12] [ 6] [151023] +15:10:28 [ 13] [ 4] [0320] +15:10:28 [ 15] [ 4] [0320] +15:10:28 [ 18] [ 4] [6011] +15:10:28 [ 22] [ 3] [900] +15:10:28 [ 25] [ 2] [02] +15:10:28 [ 28] [ 9] [D00002000] +15:10:28 [ 32] [ 6] [621354] +15:10:28 [ 35] [ 27] [1808931300012745=1803500076] +15:10:28 [ 37] [ 12] [507904989328] +15:10:28 [ 41] [ 8] [01012300] +15:10:28 [ 42] [ 15] [NATIVE ] +15:10:28 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:10:28 [ 49] [ 3] [418] +15:10:28 [ 52] [ 16] [E083E171B1C17587] +15:10:28 ============================================================================ +15:10:28 + + +waiting on router queue for slot.... +15:10:28 Sending to : +15:10:28 ============================================================================ +15:10:28 ============================================================================ +15:10:28 Slot Id : <497> +15:10:28 Transaction Type : REQUEST +15:10:28 Received From : +15:10:28 ============================================================================ +15:10:28 FNo. Len. Field Value +15:10:28 ============================================================================ +15:10:28 [ 1] [ 4] [0200] +15:10:28 [ 2] [ 16] [1808931300012745] +15:10:28 [ 3] [ 6] [012000] +15:10:28 [ 4] [ 12] [000100000000] +15:10:28 [ 7] [ 10] [0320151023] +15:10:28 [ 11] [ 6] [779878] +15:10:28 [ 12] [ 6] [151023] +15:10:28 [ 13] [ 4] [0320] +15:10:28 [ 15] [ 4] [0320] +15:10:28 [ 18] [ 4] [6011] +15:10:28 [ 22] [ 3] [900] +15:10:28 [ 25] [ 2] [02] +15:10:28 [ 28] [ 9] [D00002000] +15:10:28 [ 32] [ 6] [621354] +15:10:28 [ 35] [ 27] [1808931300012745=1803500076] +15:10:28 [ 37] [ 12] [507904989328] +15:10:28 [ 41] [ 8] [01012300] +15:10:28 [ 42] [ 15] [NATIVE ] +15:10:28 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:10:28 [ 49] [ 3] [418] +15:10:28 [ 52] [ 16] [1A686361C36EB197] +15:10:28 ============================================================================ +15:10:28 + + +waiting on router queue for slot.... +15:10:28 Sending to : <2> +15:10:28 ============================================================================ +15:10:31 ============================================================================ +15:10:31 Slot Id : <497> +15:10:31 Transaction Type : RESPONSE +15:10:31 Received From : +15:10:31 ============================================================================ +15:10:31 FNo. Len. Field Value +15:10:31 ============================================================================ +15:10:31 [ 1] [ 4] [0210] +15:10:31 [ 2] [ 16] [1808931300012745] +15:10:31 [ 3] [ 6] [012000] +15:10:31 [ 4] [ 12] [000100000000] +15:10:31 [ 7] [ 10] [0320151023] +15:10:31 [ 11] [ 6] [779878] +15:10:31 [ 12] [ 6] [151023] +15:10:31 [ 13] [ 4] [0320] +15:10:31 [ 18] [ 4] [6011] +15:10:31 [ 19] [ 3] [418] +15:10:31 [ 22] [ 3] [021] +15:10:31 [ 28] [ 9] [D00002000] +15:10:31 [ 32] [ 6] [621354] +15:10:31 [ 35] [ 27] [1808931300012745=1803500076] +15:10:31 [ 37] [ 12] [507904989328] +15:10:31 [ 39] [ 2] [42] +15:10:31 [ 41] [ 8] [01012300] +15:10:31 [ 49] [ 3] [418] +15:10:31 [ 52] [ 16] [1A686361C36EB197] +15:10:31 ============================================================================ +15:10:31 Sending to : +15:10:31 ============================================================================ +15:10:31 + + +waiting on router queue for slot.... +15:10:32 ============================================================================ +15:10:32 Slot Id : <497> +15:10:32 Transaction Type : RESPONSE +15:10:32 Received From : +15:10:32 ============================================================================ +15:10:32 FNo. Len. Field Value +15:10:32 ============================================================================ +15:10:32 [ 1] [ 4] [0210] +15:10:32 [ 2] [ 16] [1808931300012745] +15:10:32 [ 3] [ 6] [012000] +15:10:32 [ 4] [ 12] [000100000000] +15:10:32 [ 7] [ 10] [0320151023] +15:10:32 [ 11] [ 6] [779878] +15:10:32 [ 12] [ 6] [151023] +15:10:32 [ 13] [ 4] [0320] +15:10:32 [ 18] [ 4] [6011] +15:10:32 [ 19] [ 3] [418] +15:10:32 [ 22] [ 3] [021] +15:10:32 [ 28] [ 9] [D00002000] +15:10:32 [ 32] [ 6] [621354] +15:10:32 [ 35] [ 27] [1808931300012745=1803500076] +15:10:32 [ 37] [ 12] [507904989328] +15:10:32 [ 39] [ 2] [42] +15:10:32 [ 41] [ 8] [01012300] +15:10:32 [ 49] [ 3] [418] +15:10:32 [ 52] [ 16] [1A686361C36EB197] +15:10:32 ============================================================================ +15:10:32 Calculate Source COMM Id = 0 +15:10:32 ============================================================================ +15:10:32 + + +waiting on router queue for slot.... +15:10:45 ============================================================================ +15:10:45 Slot Id : <40> +15:10:45 Transaction Type : REQUEST +15:10:45 Received From : +15:10:45 ============================================================================ +15:10:45 FNo. Len. Field Value +15:10:45 ============================================================================ +15:10:45 [ 1] [ 4] [0800] +15:10:45 [ 7] [ 10] [0320080952] +15:10:45 [ 11] [ 6] [156943] +15:10:45 [ 70] [ 3] [301] +15:10:45 ============================================================================ +15:10:45 + + +waiting on router queue for slot.... +15:10:45 Sending to : +15:10:45 ============================================================================ +15:10:45 ============================================================================ +15:10:45 Slot Id : <40> +15:10:45 Transaction Type : RESPONSE +15:10:45 Received From : +15:10:45 ============================================================================ +15:10:45 FNo. Len. Field Value +15:10:45 ============================================================================ +15:10:45 [ 1] [ 4] [0810] +15:10:45 [ 7] [ 10] [0320080952] +15:10:45 [ 11] [ 6] [156943] +15:10:45 [ 39] [ 2] [00] +15:10:45 [ 70] [ 3] [301] +15:10:45 ============================================================================ +15:10:45 Calculate Source COMM Id = 2 +15:10:45 ============================================================================ +15:10:45 + + +waiting on router queue for slot.... +15:10:52 ============================================================================ +15:10:52 Slot Id : <467> +15:10:52 Transaction Type : REQUEST +15:10:52 Received From : +15:10:52 ============================================================================ +15:10:52 FNo. Len. Field Value +15:10:52 ============================================================================ +15:10:52 [ 1] [ 4] [0200] +15:10:52 [ 2] [ 16] [6688990101814901] +15:10:52 [ 3] [ 6] [010000] +15:10:52 [ 4] [ 12] [000100000000] +15:10:52 [ 7] [ 10] [0320151047] +15:10:52 [ 11] [ 6] [779960] +15:10:52 [ 12] [ 6] [151047] +15:10:52 [ 13] [ 4] [0320] +15:10:52 [ 15] [ 4] [0320] +15:10:52 [ 18] [ 4] [6011] +15:10:52 [ 22] [ 3] [900] +15:10:52 [ 25] [ 2] [02] +15:10:52 [ 28] [ 9] [D00002000] +15:10:52 [ 32] [ 6] [621354] +15:10:52 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:10:52 [ 37] [ 12] [507904635741] +15:10:52 [ 41] [ 8] [17000800] +15:10:52 [ 42] [ 15] [NATIVE ] +15:10:52 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:10:52 [ 49] [ 3] [418] +15:10:52 [ 52] [ 16] [023A7BB3154447D9] +15:10:52 ============================================================================ +15:10:52 + + +waiting on router queue for slot.... +15:10:52 Sending to : +15:10:52 ============================================================================ +15:10:52 Sending to : +15:10:52 ============================================================================ +15:10:52 ============================================================================ +15:10:52 Slot Id : <467> +15:10:52 Transaction Type : REQUEST +15:10:52 Received From : +15:10:52 ============================================================================ +15:10:52 FNo. Len. Field Value +15:10:52 ============================================================================ +15:10:52 [ 1] [ 4] [0200] +15:10:52 [ 2] [ 16] [6688990101814901] +15:10:52 [ 3] [ 6] [010000] +15:10:52 [ 4] [ 12] [000100000000] +15:10:52 [ 7] [ 10] [0320151047] +15:10:52 [ 11] [ 6] [779960] +15:10:52 [ 12] [ 6] [151047] +15:10:52 [ 13] [ 4] [0320] +15:10:52 [ 15] [ 4] [0320] +15:10:52 [ 18] [ 4] [6011] +15:10:52 [ 22] [ 3] [900] +15:10:52 [ 25] [ 2] [02] +15:10:52 [ 28] [ 9] [D00002000] +15:10:52 [ 32] [ 6] [621354] +15:10:52 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:10:52 [ 37] [ 12] [507904635741] +15:10:52 [ 41] [ 8] [17000800] +15:10:52 [ 42] [ 15] [NATIVE ] +15:10:52 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:10:52 [ 49] [ 3] [418] +15:10:52 [ 52] [ 16] [023A7BB3154447D9] +15:10:52 ============================================================================ +15:10:52 + + +waiting on router queue for slot.... +15:10:52 Sending to : +15:10:52 ============================================================================ +15:10:52 ============================================================================ +15:10:52 Slot Id : <467> +15:10:52 Transaction Type : REQUEST +15:10:52 Received From : +15:10:52 ============================================================================ +15:10:52 FNo. Len. Field Value +15:10:52 ============================================================================ +15:10:52 [ 1] [ 4] [0200] +15:10:52 [ 2] [ 16] [6688990101814901] +15:10:52 [ 3] [ 6] [010000] +15:10:52 [ 4] [ 12] [000100000000] +15:10:52 [ 7] [ 10] [0320151047] +15:10:52 [ 11] [ 6] [779960] +15:10:52 [ 12] [ 6] [151047] +15:10:52 [ 13] [ 4] [0320] +15:10:52 [ 15] [ 4] [0320] +15:10:52 [ 18] [ 4] [6011] +15:10:52 [ 22] [ 3] [900] +15:10:52 [ 25] [ 2] [02] +15:10:52 [ 28] [ 9] [D00002000] +15:10:52 [ 32] [ 6] [621354] +15:10:52 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:10:52 [ 37] [ 12] [507904635741] +15:10:52 [ 41] [ 8] [17000800] +15:10:52 [ 42] [ 15] [NATIVE ] +15:10:52 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:10:52 [ 49] [ 3] [418] +15:10:52 [ 52] [ 16] [69DF151F7689BFC2] +15:10:52 ============================================================================ +15:10:52 + + +waiting on router queue for slot.... +15:10:52 Sending to : <4> +15:10:52 ============================================================================ +15:10:54 ============================================================================ +15:10:54 Slot Id : <467> +15:10:54 Transaction Type : RESPONSE +15:10:54 Received From : +15:10:54 ============================================================================ +15:10:54 FNo. Len. Field Value +15:10:54 ============================================================================ +15:10:54 [ 1] [ 4] [0210] +15:10:54 [ 2] [ 16] [6688990101814901] +15:10:54 [ 3] [ 6] [010000] +15:10:54 [ 4] [ 12] [000100000000] +15:10:54 [ 11] [ 6] [779960] +15:10:54 [ 12] [ 6] [151047] +15:10:54 [ 15] [ 4] [0320] +15:10:54 [ 18] [ 4] [6011] +15:10:54 [ 32] [ 6] [621354] +15:10:54 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:10:54 [ 37] [ 12] [507904635741] +15:10:54 [ 38] [ 6] [946514] +15:10:54 [ 39] [ 2] [00] +15:10:54 [ 41] [ 8] [17000800] +15:10:54 [ 49] [ 3] [418] +15:10:54 [ 54] [ 20] [0002418C000014421324] +15:10:54 ============================================================================ +15:10:54 Sending to : +15:10:54 ============================================================================ +15:10:54 + + +waiting on router queue for slot.... +15:10:55 ============================================================================ +15:10:55 Slot Id : <467> +15:10:55 Transaction Type : RESPONSE +15:10:55 Received From : +15:10:55 ============================================================================ +15:10:55 FNo. Len. Field Value +15:10:55 ============================================================================ +15:10:55 [ 1] [ 4] [0210] +15:10:55 [ 2] [ 16] [6688990101814901] +15:10:55 [ 3] [ 6] [010000] +15:10:55 [ 4] [ 12] [000100000000] +15:10:55 [ 11] [ 6] [779960] +15:10:55 [ 12] [ 6] [151047] +15:10:55 [ 15] [ 4] [0320] +15:10:55 [ 18] [ 4] [6011] +15:10:55 [ 32] [ 6] [621354] +15:10:55 [ 35] [ 37] [6688990101814901=42051231490122700000] +15:10:55 [ 37] [ 12] [507904635741] +15:10:55 [ 38] [ 6] [946514] +15:10:55 [ 39] [ 2] [00] +15:10:55 [ 41] [ 8] [17000800] +15:10:55 [ 49] [ 3] [418] +15:10:55 [ 54] [ 20] [0002418C000014421324] +15:10:55 ============================================================================ +15:10:55 Calculate Source COMM Id = 0 +15:10:55 ============================================================================ +15:10:55 + + +waiting on router queue for slot.... +15:10:56 ============================================================================ +15:10:56 Slot Id : <8> +15:10:56 Transaction Type : REQUEST +15:10:56 Received From : +15:10:56 ============================================================================ +15:10:56 FNo. Len. Field Value +15:10:56 ============================================================================ +15:10:56 [ 1] [ 4] [0800] +15:10:56 [ 7] [ 10] [0320081003] +15:10:56 [ 11] [ 6] [156944] +15:10:56 [ 70] [ 3] [301] +15:10:56 ============================================================================ +15:10:56 + + +waiting on router queue for slot.... +15:10:56 Sending to : +15:10:56 ============================================================================ +15:10:56 ============================================================================ +15:10:56 Slot Id : <8> +15:10:56 Transaction Type : RESPONSE +15:10:56 Received From : +15:10:56 ============================================================================ +15:10:56 FNo. Len. Field Value +15:10:56 ============================================================================ +15:10:56 [ 1] [ 4] [0810] +15:10:56 [ 7] [ 10] [0320081003] +15:10:56 [ 11] [ 6] [156944] +15:10:56 [ 39] [ 2] [00] +15:10:56 [ 70] [ 3] [301] +15:10:56 ============================================================================ +15:10:56 Calculate Source COMM Id = 2 +15:10:56 ============================================================================ +15:10:56 + + +waiting on router queue for slot.... +15:10:56 ============================================================================ +15:10:56 Slot Id : <28> +15:10:56 Transaction Type : REQUEST +15:10:56 Received From : +15:10:56 ============================================================================ +15:10:56 FNo. Len. Field Value +15:10:56 ============================================================================ +15:10:56 [ 1] [ 4] [0800] +15:10:56 [ 7] [ 10] [0320222244] +15:10:56 [ 11] [ 6] [152244] +15:10:56 [ 37] [ 12] [57915152244] +15:10:56 [ 70] [ 3] [301] +15:10:56 ============================================================================ +15:10:56 + + +waiting on router queue for slot.... +15:10:56 Sending to : +15:10:56 ============================================================================ +15:10:56 ============================================================================ +15:10:56 Slot Id : <28> +15:10:56 Transaction Type : RESPONSE +15:10:56 Received From : +15:10:56 ============================================================================ +15:10:56 FNo. Len. Field Value +15:10:56 ============================================================================ +15:10:56 [ 1] [ 4] [0810] +15:10:56 [ 7] [ 10] [0320222244] +15:10:56 [ 11] [ 6] [152244] +15:10:56 [ 37] [ 12] [579151522440] +15:10:56 [ 39] [ 2] [00] +15:10:56 [ 70] [ 3] [810] +15:10:56 ============================================================================ +15:10:56 Calculate Source COMM Id = 6 +15:10:56 ============================================================================ +15:10:56 + + +waiting on router queue for slot.... +15:11:00 ============================================================================ +15:11:00 Slot Id : <43> +15:11:00 Transaction Type : REQUEST +15:11:00 Received From : +15:11:00 ============================================================================ +15:11:00 FNo. Len. Field Value +15:11:00 ============================================================================ +15:11:00 [ 1] [ 4] [0800] +15:11:00 [ 2] [ 5] [02531] +15:11:00 [ 3] [ 6] [579158] +15:11:00 [ 7] [ 10] [0320081100] +15:11:00 [ 11] [ 6] [807293] +15:11:00 [ 15] [ 10] [0320081100] +15:11:00 [ 37] [ 11] [57915807293] +15:11:00 [ 70] [ 3] [001] +15:11:00 ============================================================================ +15:11:00 + + +waiting on router queue for slot.... +15:11:00 ============================================================================ +15:11:00 Slot Id : <43> +15:11:00 Transaction Type : RESPONSE +15:11:00 Received From : +15:11:00 ============================================================================ +15:11:00 FNo. Len. Field Value +15:11:00 ============================================================================ +15:11:00 [ 1] [ 4] [0810] +15:11:00 [ 7] [ 10] [0320081100] +15:11:00 [ 11] [ 6] [807293] +15:11:00 [ 15] [ 4] [0320] +15:11:00 [ 37] [ 12] [57915807293] +15:11:00 [ 39] [ 2] [00] +15:11:00 [ 70] [ 3] [001] +15:11:00 ============================================================================ +15:11:00 Sending to : +15:11:00 ============================================================================ +15:11:00 + + +waiting on router queue for slot.... +15:11:08 ============================================================================ +15:11:08 Slot Id : <7> +15:11:08 Transaction Type : REQUEST +15:11:08 Received From : +15:11:08 ============================================================================ +15:11:08 FNo. Len. Field Value +15:11:08 ============================================================================ +15:11:08 [ 1] [ 4] [0800] +15:11:08 [ 7] [ 10] [0320081015] +15:11:08 [ 11] [ 6] [156945] +15:11:08 [ 70] [ 3] [301] +15:11:08 ============================================================================ +15:11:08 + + +waiting on router queue for slot.... +15:11:08 Sending to : +15:11:08 ============================================================================ +15:11:08 ============================================================================ +15:11:08 Slot Id : <7> +15:11:08 Transaction Type : RESPONSE +15:11:08 Received From : +15:11:08 ============================================================================ +15:11:08 FNo. Len. Field Value +15:11:08 ============================================================================ +15:11:08 [ 1] [ 4] [0810] +15:11:08 [ 7] [ 10] [0320081015] +15:11:08 [ 11] [ 6] [156945] +15:11:08 [ 39] [ 2] [00] +15:11:08 [ 70] [ 3] [301] +15:11:08 ============================================================================ +15:11:08 Calculate Source COMM Id = 2 +15:11:08 ============================================================================ +15:11:08 + + +waiting on router queue for slot.... +15:11:22 ============================================================================ +15:11:22 Slot Id : <52> +15:11:22 Transaction Type : REQUEST +15:11:22 Received From : +15:11:22 ============================================================================ +15:11:22 FNo. Len. Field Value +15:11:22 ============================================================================ +15:11:22 [ 1] [ 4] [0800] +15:11:22 [ 7] [ 10] [0320080912] +15:11:22 [ 11] [ 6] [035756] +15:11:22 [ 37] [ 12] [57915035756] +15:11:22 [ 70] [ 3] [301] +15:11:22 ============================================================================ +15:11:22 + + +waiting on router queue for slot.... +15:11:22 Sending to : +15:11:22 ============================================================================ +15:11:22 ============================================================================ +15:11:22 Slot Id : <52> +15:11:22 Transaction Type : RESPONSE +15:11:22 Received From : +15:11:22 ============================================================================ +15:11:22 FNo. Len. Field Value +15:11:22 ============================================================================ +15:11:22 [ 1] [ 4] [0810] +15:11:22 [ 7] [ 10] [0320080912] +15:11:22 [ 11] [ 6] [035756] +15:11:22 [ 37] [ 12] [579150357560] +15:11:22 [ 39] [ 2] [00] +15:11:22 [ 70] [ 3] [810] +15:11:22 ============================================================================ +15:11:22 Calculate Source COMM Id = 4 +15:11:22 ============================================================================ +15:11:22 + + +waiting on router queue for slot.... +15:11:24 ============================================================================ +15:11:24 Slot Id : <25> +15:11:24 Transaction Type : REQUEST +15:11:24 Received From : +15:11:24 ============================================================================ +15:11:24 FNo. Len. Field Value +15:11:24 ============================================================================ +15:11:24 [ 1] [ 4] [0800] +15:11:24 [ 7] [ 10] [0320081031] +15:11:24 [ 11] [ 6] [156946] +15:11:24 [ 70] [ 3] [301] +15:11:24 ============================================================================ +15:11:24 + + +waiting on router queue for slot.... +15:11:24 Sending to : +15:11:24 ============================================================================ +15:11:24 ============================================================================ +15:11:24 Slot Id : <25> +15:11:24 Transaction Type : RESPONSE +15:11:24 Received From : +15:11:24 ============================================================================ +15:11:24 FNo. Len. Field Value +15:11:24 ============================================================================ +15:11:24 [ 1] [ 4] [0810] +15:11:24 [ 7] [ 10] [0320081031] +15:11:24 [ 11] [ 6] [156946] +15:11:24 [ 39] [ 2] [00] +15:11:24 [ 70] [ 3] [301] +15:11:24 ============================================================================ +15:11:24 Calculate Source COMM Id = 2 +15:11:24 ============================================================================ +15:11:24 + + +waiting on router queue for slot.... +15:11:28 ============================================================================ +15:11:28 Slot Id : <50> +15:11:28 Transaction Type : REQUEST +15:11:28 Received From : +15:11:28 ============================================================================ +15:11:28 FNo. Len. Field Value +15:11:28 ============================================================================ +15:11:28 [ 1] [ 4] [0200] +15:11:28 [ 2] [ 16] [1808931300012745] +15:11:28 [ 3] [ 6] [011000] +15:11:28 [ 4] [ 12] [000095000000] +15:11:28 [ 7] [ 10] [0320151124] +15:11:28 [ 11] [ 6] [780107] +15:11:28 [ 12] [ 6] [151124] +15:11:28 [ 13] [ 4] [0320] +15:11:28 [ 15] [ 4] [0320] +15:11:28 [ 18] [ 4] [6011] +15:11:28 [ 22] [ 3] [900] +15:11:28 [ 25] [ 2] [02] +15:11:28 [ 28] [ 9] [D00002000] +15:11:28 [ 32] [ 6] [621354] +15:11:28 [ 35] [ 27] [1808931300012745=1803500076] +15:11:28 [ 37] [ 12] [507904989330] +15:11:28 [ 41] [ 8] [01012300] +15:11:28 [ 42] [ 15] [NATIVE ] +15:11:28 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:11:28 [ 49] [ 3] [418] +15:11:28 [ 52] [ 16] [E083E171B1C17587] +15:11:28 ============================================================================ +15:11:28 + + +waiting on router queue for slot.... +15:11:28 Sending to : +15:11:28 ============================================================================ +15:11:28 Sending to : +15:11:28 ============================================================================ +15:11:29 ============================================================================ +15:11:29 Slot Id : <50> +15:11:29 Transaction Type : REQUEST +15:11:29 Received From : +15:11:29 ============================================================================ +15:11:29 FNo. Len. Field Value +15:11:29 ============================================================================ +15:11:29 [ 1] [ 4] [0200] +15:11:29 [ 2] [ 16] [1808931300012745] +15:11:29 [ 3] [ 6] [011000] +15:11:29 [ 4] [ 12] [000095000000] +15:11:29 [ 7] [ 10] [0320151124] +15:11:29 [ 11] [ 6] [780107] +15:11:29 [ 12] [ 6] [151124] +15:11:29 [ 13] [ 4] [0320] +15:11:29 [ 15] [ 4] [0320] +15:11:29 [ 18] [ 4] [6011] +15:11:29 [ 22] [ 3] [900] +15:11:29 [ 25] [ 2] [02] +15:11:29 [ 28] [ 9] [D00002000] +15:11:29 [ 32] [ 6] [621354] +15:11:29 [ 35] [ 27] [1808931300012745=1803500076] +15:11:29 [ 37] [ 12] [507904989330] +15:11:29 [ 41] [ 8] [01012300] +15:11:29 [ 42] [ 15] [NATIVE ] +15:11:29 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:11:29 [ 49] [ 3] [418] +15:11:29 [ 52] [ 16] [E083E171B1C17587] +15:11:29 ============================================================================ +15:11:29 + + +waiting on router queue for slot.... +15:11:29 Sending to : +15:11:29 ============================================================================ +15:11:29 ============================================================================ +15:11:29 Slot Id : <50> +15:11:29 Transaction Type : REQUEST +15:11:29 Received From : +15:11:29 ============================================================================ +15:11:29 FNo. Len. Field Value +15:11:29 ============================================================================ +15:11:29 [ 1] [ 4] [0200] +15:11:29 [ 2] [ 16] [1808931300012745] +15:11:29 [ 3] [ 6] [011000] +15:11:29 [ 4] [ 12] [000095000000] +15:11:29 [ 7] [ 10] [0320151124] +15:11:29 [ 11] [ 6] [780107] +15:11:29 [ 12] [ 6] [151124] +15:11:29 [ 13] [ 4] [0320] +15:11:29 [ 15] [ 4] [0320] +15:11:29 [ 18] [ 4] [6011] +15:11:29 [ 22] [ 3] [900] +15:11:29 [ 25] [ 2] [02] +15:11:29 [ 28] [ 9] [D00002000] +15:11:29 [ 32] [ 6] [621354] +15:11:29 [ 35] [ 27] [1808931300012745=1803500076] +15:11:29 [ 37] [ 12] [507904989330] +15:11:29 [ 41] [ 8] [01012300] +15:11:29 [ 42] [ 15] [NATIVE ] +15:11:29 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +15:11:29 [ 49] [ 3] [418] +15:11:29 [ 52] [ 16] [1A686361C36EB197] +15:11:29 ============================================================================ +15:11:29 + + +waiting on router queue for slot.... +15:11:29 Sending to : <2> +15:11:29 ============================================================================ +15:11:31 ============================================================================ +15:11:31 Slot Id : <50> +15:11:31 Transaction Type : RESPONSE +15:11:31 Received From : +15:11:31 ============================================================================ +15:11:31 FNo. Len. Field Value +15:11:31 ============================================================================ +15:11:31 [ 1] [ 4] [0210] +15:11:31 [ 2] [ 16] [1808931300012745] +15:11:31 [ 3] [ 6] [011000] +15:11:31 [ 4] [ 12] [000095000000] +15:11:31 [ 6] [ 12] [000095000000] +15:11:31 [ 7] [ 10] [0320151124] +15:11:31 [ 11] [ 6] [780107] +15:11:31 [ 12] [ 6] [151124] +15:11:31 [ 13] [ 4] [0320] +15:11:31 [ 18] [ 4] [6011] +15:11:31 [ 19] [ 3] [418] +15:11:31 [ 22] [ 3] [021] +15:11:31 [ 32] [ 6] [621354] +15:11:31 [ 35] [ 27] [1808931300012745=1803500076] +15:11:31 [ 37] [ 12] [507904989330] +15:11:31 [ 38] [ 6] [780107] +15:11:31 [ 39] [ 2] [00] +15:11:31 [ 41] [ 8] [01012300] +15:11:31 [ 49] [ 3] [418] +15:11:31 [ 52] [ 16] [1A686361C36EB197] +15:11:31 [ 54] [ 20] [1001418C000010400600] +15:11:31 ============================================================================ +15:11:31 Sending to : +15:11:31 ============================================================================ +15:11:31 + + +waiting on router queue for slot.... +15:11:33 ============================================================================ +15:11:33 Slot Id : <50> +15:11:33 Transaction Type : RESPONSE +15:11:33 Received From : +15:11:33 ============================================================================ +15:11:33 FNo. Len. Field Value +15:11:33 ============================================================================ +15:11:33 [ 1] [ 4] [0210] +15:11:33 [ 2] [ 16] [1808931300012745] +15:11:33 [ 3] [ 6] [011000] +15:11:33 [ 4] [ 12] [000095000000] +15:11:33 [ 6] [ 12] [000095000000] +15:11:33 [ 7] [ 10] [0320151124] +15:11:33 [ 11] [ 6] [780107] +15:11:33 [ 12] [ 6] [151124] +15:11:33 [ 13] [ 4] [0320] +15:11:33 [ 18] [ 4] [6011] +15:11:33 [ 19] [ 3] [418] +15:11:33 [ 22] [ 3] [021] +15:11:33 [ 32] [ 6] [621354] +15:11:33 [ 35] [ 27] [1808931300012745=1803500076] +15:11:33 [ 37] [ 12] [507904989330] +15:11:33 [ 38] [ 6] [780107] +15:11:33 [ 39] [ 2] [00] +15:11:33 [ 41] [ 8] [01012300] +15:11:33 [ 49] [ 3] [418] +15:11:33 [ 52] [ 16] [1A686361C36EB197] +15:11:33 [ 54] [ 20] [1001418C000010400600] +15:11:33 ============================================================================ +15:11:33 Calculate Source COMM Id = 0 +15:11:33 ============================================================================ +15:11:33 + + +waiting on router queue for slot.... +15:11:37 ============================================================================ +15:11:37 Slot Id : <55> +15:11:37 Transaction Type : REQUEST +15:11:37 Received From : +15:11:37 ============================================================================ +15:11:37 FNo. Len. Field Value +15:11:37 ============================================================================ +15:11:37 [ 1] [ 4] [0800] +15:11:37 [ 7] [ 10] [0320151123] +15:11:37 [ 11] [ 6] [048043] +15:11:37 [ 37] [ 12] [507915048043] +15:11:37 [ 70] [ 3] [ ] +15:11:37 ============================================================================ +15:11:37 + + +waiting on router queue for slot.... +15:11:37 Sending to : +15:11:37 ============================================================================ +15:11:37 ============================================================================ +15:11:37 Slot Id : <55> +15:11:37 Transaction Type : RESPONSE +15:11:37 Received From : +15:11:37 ============================================================================ +15:11:37 FNo. Len. Field Value +15:11:37 ============================================================================ +15:11:37 [ 1] [ 4] [0810] +15:11:37 [ 7] [ 10] [0320151123] +15:11:37 [ 11] [ 6] [048043] +15:11:37 [ 37] [ 12] [507915048043] +15:11:37 [ 39] [ 2] [91] +15:11:37 [ 70] [ 3] [ ] +15:11:37 ============================================================================ +15:11:37 Calculate Source COMM Id = 3 +15:11:37 ============================================================================ +15:11:37 + + +waiting on router queue for slot.... +15:11:39 ============================================================================ +15:11:39 Slot Id : <61> +15:11:39 Transaction Type : REQUEST +15:11:39 Received From : +15:11:39 ============================================================================ +15:11:39 FNo. Len. Field Value +15:11:39 ============================================================================ +15:11:39 [ 1] [ 4] [0800] +15:11:39 [ 7] [ 10] [0320081046] +15:11:39 [ 11] [ 6] [156947] +15:11:39 [ 70] [ 3] [301] +15:11:39 ============================================================================ +15:11:39 + + +waiting on router queue for slot.... +15:11:39 Sending to : +15:11:39 ============================================================================ +15:11:39 ============================================================================ +15:11:39 Slot Id : <61> +15:11:39 Transaction Type : RESPONSE +15:11:39 Received From : +15:11:39 ============================================================================ +15:11:39 FNo. Len. Field Value +15:11:39 ============================================================================ +15:11:39 [ 1] [ 4] [0810] +15:11:39 [ 7] [ 10] [0320081046] +15:11:39 [ 11] [ 6] [156947] +15:11:39 [ 39] [ 2] [00] +15:11:39 [ 70] [ 3] [301] +15:11:39 ============================================================================ +15:11:39 Calculate Source COMM Id = 2 +15:11:39 ============================================================================ +15:11:39 + + +waiting on router queue for slot.... +15:11:50 ============================================================================ +15:11:50 Slot Id : <44> +15:11:50 Transaction Type : REQUEST +15:11:50 Received From : +15:11:50 ============================================================================ +15:11:50 FNo. Len. Field Value +15:11:50 ============================================================================ +15:11:50 [ 1] [ 4] [0800] +15:11:50 [ 7] [ 10] [0320081057] +15:11:50 [ 11] [ 6] [156948] +15:11:50 [ 70] [ 3] [301] +15:11:50 ============================================================================ +15:11:50 + + +waiting on router queue for slot.... +15:11:50 Sending to : +15:11:50 ============================================================================ +15:11:50 ============================================================================ +15:11:50 Slot Id : <44> +15:11:50 Transaction Type : RESPONSE +15:11:50 Received From : +15:11:50 ============================================================================ +15:11:50 FNo. Len. Field Value +15:11:50 ============================================================================ +15:11:50 [ 1] [ 4] [0810] +15:11:50 [ 7] [ 10] [0320081057] +15:11:50 [ 11] [ 6] [156948] +15:11:50 [ 39] [ 2] [00] +15:11:50 [ 70] [ 3] [301] +15:11:50 ============================================================================ +15:11:50 Calculate Source COMM Id = 2 +15:11:50 ============================================================================ +15:11:50 + + +waiting on router queue for slot.... +15:12:00 ============================================================================ +15:12:00 Slot Id : <478> +15:12:00 Transaction Type : REQUEST +15:12:00 Received From : +15:12:00 ============================================================================ +15:12:00 FNo. Len. Field Value +15:12:00 ============================================================================ +15:12:00 [ 1] [ 4] [0800] +15:12:00 [ 7] [ 10] [0320081108] +15:12:00 [ 11] [ 6] [156949] +15:12:00 [ 70] [ 3] [301] +15:12:00 ============================================================================ +15:12:00 + + +waiting on router queue for slot.... +15:12:00 Sending to : +15:12:00 ============================================================================ +15:12:00 ============================================================================ +15:12:00 Slot Id : <478> +15:12:00 Transaction Type : RESPONSE +15:12:00 Received From : +15:12:00 ============================================================================ +15:12:00 FNo. Len. Field Value +15:12:00 ============================================================================ +15:12:00 [ 1] [ 4] [0810] +15:12:00 [ 7] [ 10] [0320081108] +15:12:00 [ 11] [ 6] [156949] +15:12:00 [ 39] [ 2] [00] +15:12:00 [ 70] [ 3] [301] +15:12:00 ============================================================================ +15:12:00 Calculate Source COMM Id = 2 +15:12:00 ============================================================================ +15:12:00 + + +waiting on router queue for slot.... +15:12:01 ============================================================================ +15:12:01 Slot Id : <15> +15:12:01 Transaction Type : REQUEST +15:12:01 Received From : +15:12:01 ============================================================================ +15:12:01 FNo. Len. Field Value +15:12:01 ============================================================================ +15:12:01 [ 1] [ 4] [0800] +15:12:01 [ 7] [ 10] [0320222349] +15:12:01 [ 11] [ 6] [152349] +15:12:01 [ 37] [ 12] [57915152349] +15:12:01 [ 70] [ 3] [301] +15:12:01 ============================================================================ +15:12:01 + + +waiting on router queue for slot.... +15:12:01 Sending to : +15:12:01 ============================================================================ +15:12:01 ============================================================================ +15:12:01 Slot Id : <15> +15:12:01 Transaction Type : RESPONSE +15:12:01 Received From : +15:12:01 ============================================================================ +15:12:01 FNo. Len. Field Value +15:12:01 ============================================================================ +15:12:01 [ 1] [ 4] [0810] +15:12:01 [ 7] [ 10] [0320222349] +15:12:01 [ 11] [ 6] [152349] +15:12:01 [ 37] [ 12] [579151523490] +15:12:01 [ 39] [ 2] [00] +15:12:01 [ 70] [ 3] [810] +15:12:01 ============================================================================ +15:12:01 Calculate Source COMM Id = 6 +15:12:01 ============================================================================ +15:12:01 + + +waiting on router queue for slot.... +15:12:02 ============================================================================ +15:12:02 Slot Id : <68> +15:12:02 Transaction Type : REQUEST +15:12:02 Received From : +15:12:02 ============================================================================ +15:12:02 FNo. Len. Field Value +15:12:02 ============================================================================ +15:12:02 [ 1] [ 4] [0800] +15:12:02 [ 2] [ 5] [02531] +15:12:02 [ 3] [ 6] [579158] +15:12:02 [ 7] [ 10] [0320081202] +15:12:02 [ 11] [ 6] [807294] +15:12:02 [ 15] [ 10] [0320081202] +15:12:02 [ 37] [ 11] [57915807294] +15:12:02 [ 70] [ 3] [001] +15:12:02 ============================================================================ +15:12:02 + + +waiting on router queue for slot.... +15:12:02 ============================================================================ +15:12:02 Slot Id : <68> +15:12:02 Transaction Type : RESPONSE +15:12:02 Received From : +15:12:02 ============================================================================ +15:12:02 FNo. Len. Field Value +15:12:02 ============================================================================ +15:12:02 [ 1] [ 4] [0810] +15:12:02 [ 7] [ 10] [0320081202] +15:12:02 [ 11] [ 6] [807294] +15:12:02 [ 15] [ 4] [0320] +15:12:02 [ 37] [ 12] [57915807294] +15:12:02 [ 39] [ 2] [00] +15:12:02 [ 70] [ 3] [001] +15:12:02 ============================================================================ +15:12:02 Sending to : +15:12:02 ============================================================================ +15:12:02 + + +waiting on router queue for slot.... +15:12:11 ============================================================================ +15:12:11 Slot Id : <60> +15:12:11 Transaction Type : REQUEST +15:12:11 Received From : +15:12:11 ============================================================================ +15:12:11 FNo. Len. Field Value +15:12:11 ============================================================================ +15:12:11 [ 1] [ 4] [0800] +15:12:11 [ 7] [ 10] [0320081118] +15:12:11 [ 11] [ 6] [156950] +15:12:11 [ 70] [ 3] [301] +15:12:11 ============================================================================ +15:12:11 + + +waiting on router queue for slot.... +15:12:11 Sending to : +15:12:11 ============================================================================ +15:12:11 ============================================================================ +15:12:11 Slot Id : <60> +15:12:11 Transaction Type : RESPONSE +15:12:11 Received From : +15:12:11 ============================================================================ +15:12:11 FNo. Len. Field Value +15:12:11 ============================================================================ +15:12:11 [ 1] [ 4] [0810] +15:12:11 [ 7] [ 10] [0320081118] +15:12:11 [ 11] [ 6] [156950] +15:12:11 [ 39] [ 2] [00] +15:12:11 [ 70] [ 3] [301] +15:12:11 ============================================================================ +15:12:11 Calculate Source COMM Id = 2 +15:12:11 ============================================================================ +15:12:11 + + +waiting on router queue for slot.... +15:12:12 ============================================================================ +15:12:12 Slot Id : <63> +15:12:12 Transaction Type : REQUEST +15:12:12 Received From : +15:12:12 ============================================================================ +15:12:12 FNo. Len. Field Value +15:12:12 ============================================================================ +15:12:12 [ 1] [ 4] [0200] +15:12:12 [ 2] [ 16] [6213545000316400] +15:12:12 [ 3] [ 6] [010000] +15:12:12 [ 4] [ 12] [000100000000] +15:12:12 [ 7] [ 10] [0320081118] +15:12:12 [ 11] [ 6] [269939] +15:12:12 [ 12] [ 6] [151118] +15:12:12 [ 13] [ 4] [0320] +15:12:12 [ 14] [ 4] [4912] +15:12:12 [ 15] [ 4] [0320] +15:12:12 [ 18] [ 4] [6011] +15:12:12 [ 19] [ 3] [418] +15:12:12 [ 22] [ 3] [021] +15:12:12 [ 25] [ 2] [01] +15:12:12 [ 28] [ 9] [D00002000] +15:12:12 [ 32] [ 6] [180893] +15:12:12 [ 35] [ 32] [6213545000316400=491212011640109] +15:12:12 [ 37] [ 12] [507908269939] +15:12:12 [ 41] [ 8] [0261PSL1] +15:12:12 [ 42] [ 15] [999999 ] +15:12:12 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +15:12:12 [ 49] [ 3] [418] +15:12:12 [ 52] [ 16] [91FF037078217ED9] +15:12:12 ============================================================================ +15:12:12 + + +waiting on router queue for slot.... +15:12:12 Sending to : +15:12:12 ============================================================================ +15:12:12 Sending to : +15:12:12 ============================================================================ +15:12:12 ============================================================================ +15:12:12 Slot Id : <63> +15:12:12 Transaction Type : REQUEST +15:12:12 Received From : +15:12:12 ============================================================================ +15:12:12 FNo. Len. Field Value +15:12:12 ============================================================================ +15:12:12 [ 1] [ 4] [0200] +15:12:12 [ 2] [ 16] [6213545000316400] +15:12:12 [ 3] [ 6] [010000] +15:12:12 [ 4] [ 12] [000100000000] +15:12:12 [ 7] [ 10] [0320081118] +15:12:12 [ 11] [ 6] [269939] +15:12:12 [ 12] [ 6] [151118] +15:12:12 [ 13] [ 4] [0320] +15:12:12 [ 14] [ 4] [4912] +15:12:12 [ 15] [ 4] [0320] +15:12:12 [ 18] [ 4] [6011] +15:12:12 [ 19] [ 3] [418] +15:12:12 [ 22] [ 3] [021] +15:12:12 [ 25] [ 2] [01] +15:12:12 [ 28] [ 9] [D00002000] +15:12:12 [ 32] [ 6] [180893] +15:12:12 [ 35] [ 32] [6213545000316400=491212011640109] +15:12:12 [ 37] [ 12] [507908269939] +15:12:12 [ 41] [ 8] [0261PSL1] +15:12:12 [ 42] [ 15] [999999 ] +15:12:12 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +15:12:12 [ 49] [ 3] [418] +15:12:12 [ 52] [ 16] [91FF037078217ED9] +15:12:12 ============================================================================ +15:12:12 + + +waiting on router queue for slot.... +15:12:12 Sending to : +15:12:12 ============================================================================ +15:12:12 ============================================================================ +15:12:12 Slot Id : <63> +15:12:12 Transaction Type : REQUEST +15:12:12 Received From : +15:12:12 ============================================================================ +15:12:12 FNo. Len. Field Value +15:12:12 ============================================================================ +15:12:12 [ 1] [ 4] [0200] +15:12:12 [ 2] [ 16] [6213545000316400] +15:12:12 [ 3] [ 6] [010000] +15:12:12 [ 4] [ 12] [000100000000] +15:12:12 [ 7] [ 10] [0320081118] +15:12:12 [ 11] [ 6] [269939] +15:12:12 [ 12] [ 6] [151118] +15:12:12 [ 13] [ 4] [0320] +15:12:12 [ 14] [ 4] [4912] +15:12:12 [ 15] [ 4] [0320] +15:12:12 [ 18] [ 4] [6011] +15:12:12 [ 19] [ 3] [418] +15:12:12 [ 22] [ 3] [021] +15:12:12 [ 25] [ 2] [01] +15:12:12 [ 28] [ 9] [D00002000] +15:12:12 [ 32] [ 6] [180893] +15:12:12 [ 35] [ 32] [6213545000316400=491212011640109] +15:12:12 [ 37] [ 12] [507908269939] +15:12:12 [ 41] [ 8] [0261PSL1] +15:12:12 [ 42] [ 15] [999999 ] +15:12:12 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +15:12:12 [ 49] [ 3] [418] +15:12:12 [ 52] [ 16] [8F0D09531EE0A8A1] +15:12:12 ============================================================================ +15:12:12 + + +waiting on router queue for slot.... +15:12:12 Sending to : <0> +15:12:12 ============================================================================ +15:12:13 ============================================================================ +15:12:13 Slot Id : <63> +15:12:13 Transaction Type : RESPONSE +15:12:13 Received From : +15:12:13 ============================================================================ +15:12:13 FNo. Len. Field Value +15:12:13 ============================================================================ +15:12:13 [ 1] [ 4] [0210] +15:12:13 [ 2] [ 16] [6213545000316400] +15:12:13 [ 3] [ 6] [010000] +15:12:13 [ 4] [ 12] [000100000000] +15:12:13 [ 7] [ 10] [0320081118] +15:12:13 [ 11] [ 6] [269939] +15:12:13 [ 12] [ 6] [151118] +15:12:13 [ 13] [ 4] [0320] +15:12:13 [ 15] [ 4] [0320] +15:12:13 [ 18] [ 4] [6011] +15:12:13 [ 19] [ 3] [418] +15:12:13 [ 32] [ 6] [180893] +15:12:13 [ 35] [ 32] [6213545000316400=491212011640109] +15:12:13 [ 37] [ 12] [507908269939] +15:12:13 [ 38] [ 6] [714174] +15:12:13 [ 39] [ 2] [00] +15:12:13 [ 41] [ 8] [0261PSL1] +15:12:13 [ 49] [ 3] [418] +15:12:13 [ 54] [ 40] [0001418C0001277451800002418C000127745180] +15:12:13 ============================================================================ +15:12:13 Sending to : +15:12:13 ============================================================================ +15:12:13 + + +waiting on router queue for slot.... +15:12:14 ============================================================================ +15:12:14 Slot Id : <63> +15:12:14 Transaction Type : RESPONSE +15:12:14 Received From : +15:12:14 ============================================================================ +15:12:14 FNo. Len. Field Value +15:12:14 ============================================================================ +15:12:14 [ 1] [ 4] [0210] +15:12:14 [ 2] [ 16] [6213545000316400] +15:12:14 [ 3] [ 6] [010000] +15:12:14 [ 4] [ 12] [000100000000] +15:12:14 [ 7] [ 10] [0320081118] +15:12:14 [ 11] [ 6] [269939] +15:12:14 [ 12] [ 6] [151118] +15:12:14 [ 13] [ 4] [0320] +15:12:14 [ 15] [ 4] [0320] +15:12:14 [ 18] [ 4] [6011] +15:12:14 [ 19] [ 3] [418] +15:12:14 [ 32] [ 6] [180893] +15:12:14 [ 35] [ 32] [6213545000316400=491212011640109] +15:12:14 [ 37] [ 12] [507908269939] +15:12:14 [ 38] [ 6] [714174] +15:12:14 [ 39] [ 2] [00] +15:12:14 [ 41] [ 8] [0261PSL1] +15:12:14 [ 49] [ 3] [418] +15:12:14 [ 54] [ 40] [0001418C0001277451800002418C000127745180] +15:12:14 ============================================================================ +15:12:14 Calculate Source COMM Id = 2 +15:12:14 ============================================================================ +15:12:14 + + +waiting on router queue for slot.... +15:12:20 ============================================================================ +15:12:20 Slot Id : <73> +15:12:20 Transaction Type : REQUEST +15:12:20 Received From : +15:12:20 ============================================================================ +15:12:20 FNo. Len. Field Value +15:12:20 ============================================================================ +15:12:20 [ 1] [ 4] [0200] +15:12:20 [ 2] [ 16] [6213544002037460] +15:12:20 [ 3] [ 6] [010000] +15:12:20 [ 4] [ 12] [000005000000] +15:12:20 [ 7] [ 10] [0320151010] +15:12:20 [ 11] [ 6] [949622] +15:12:20 [ 12] [ 6] [151010] +15:12:20 [ 13] [ 4] [0320] +15:12:20 [ 15] [ 4] [0320] +15:12:20 [ 18] [ 4] [6011] +15:12:20 [ 19] [ 3] [418] +15:12:20 [ 22] [ 3] [021] +15:12:20 [ 25] [ 2] [01] +15:12:20 [ 28] [ 9] [D00002000] +15:12:20 [ 32] [ 6] [668899] +15:12:20 [ 35] [ 32] [6213544002037460=491212013746272] +15:12:20 [ 37] [ 12] [507900146737] +15:12:20 [ 41] [ 8] [03020005] +15:12:20 [ 42] [ 15] [APT ] +15:12:20 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +15:12:20 [ 49] [ 3] [418] +15:12:20 [ 52] [ 16] [552DD22112681F2F] +15:12:20 ============================================================================ +15:12:20 + + +waiting on router queue for slot.... +15:12:20 Sending to : +15:12:20 ============================================================================ +15:12:20 Sending to : +15:12:20 ============================================================================ +15:12:20 ============================================================================ +15:12:20 Slot Id : <73> +15:12:20 Transaction Type : REQUEST +15:12:20 Received From : +15:12:20 ============================================================================ +15:12:20 FNo. Len. Field Value +15:12:20 ============================================================================ +15:12:20 [ 1] [ 4] [0200] +15:12:20 [ 2] [ 16] [6213544002037460] +15:12:20 [ 3] [ 6] [010000] +15:12:20 [ 4] [ 12] [000005000000] +15:12:20 [ 7] [ 10] [0320151010] +15:12:20 [ 11] [ 6] [949622] +15:12:20 [ 12] [ 6] [151010] +15:12:20 [ 13] [ 4] [0320] +15:12:20 [ 15] [ 4] [0320] +15:12:20 [ 18] [ 4] [6011] +15:12:20 [ 19] [ 3] [418] +15:12:20 [ 22] [ 3] [021] +15:12:20 [ 25] [ 2] [01] +15:12:20 [ 28] [ 9] [D00002000] +15:12:20 [ 32] [ 6] [668899] +15:12:20 [ 35] [ 32] [6213544002037460=491212013746272] +15:12:20 [ 37] [ 12] [507900146737] +15:12:20 [ 41] [ 8] [03020005] +15:12:20 [ 42] [ 15] [APT ] +15:12:20 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +15:12:20 [ 49] [ 3] [418] +15:12:20 [ 52] [ 16] [552DD22112681F2F] +15:12:20 ============================================================================ +15:12:20 + + +waiting on router queue for slot.... +15:12:20 Sending to : +15:12:20 ============================================================================ +15:12:20 ============================================================================ +15:12:20 Slot Id : <73> +15:12:20 Transaction Type : REQUEST +15:12:20 Received From : +15:12:20 ============================================================================ +15:12:20 FNo. Len. Field Value +15:12:20 ============================================================================ +15:12:20 [ 1] [ 4] [0200] +15:12:20 [ 2] [ 16] [6213544002037460] +15:12:20 [ 3] [ 6] [010000] +15:12:20 [ 4] [ 12] [000005000000] +15:12:20 [ 7] [ 10] [0320151010] +15:12:20 [ 11] [ 6] [949622] +15:12:20 [ 12] [ 6] [151010] +15:12:20 [ 13] [ 4] [0320] +15:12:20 [ 15] [ 4] [0320] +15:12:20 [ 18] [ 4] [6011] +15:12:20 [ 19] [ 3] [418] +15:12:20 [ 22] [ 3] [021] +15:12:20 [ 25] [ 2] [01] +15:12:20 [ 28] [ 9] [D00002000] +15:12:20 [ 32] [ 6] [668899] +15:12:20 [ 35] [ 32] [6213544002037460=491212013746272] +15:12:20 [ 37] [ 12] [507900146737] +15:12:20 [ 41] [ 8] [03020005] +15:12:20 [ 42] [ 15] [APT ] +15:12:20 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +15:12:20 [ 49] [ 3] [418] +15:12:20 [ 52] [ 16] [5347086FFB932885] +15:12:20 ============================================================================ +15:12:20 + + +waiting on router queue for slot.... +15:12:20 Sending to : <0> +15:12:20 ============================================================================ +15:12:20 ============================================================================ +15:12:20 Slot Id : <73> +15:12:20 Transaction Type : RESPONSE +15:12:20 Received From : +15:12:20 ============================================================================ +15:12:20 FNo. Len. Field Value +15:12:20 ============================================================================ +15:12:20 [ 1] [ 4] [0210] +15:12:20 [ 2] [ 16] [6213544002037460] +15:12:20 [ 3] [ 6] [010000] +15:12:20 [ 4] [ 12] [000005000000] +15:12:20 [ 7] [ 10] [0320151010] +15:12:20 [ 11] [ 6] [949622] +15:12:20 [ 12] [ 6] [151010] +15:12:20 [ 13] [ 4] [0320] +15:12:20 [ 15] [ 4] [0320] +15:12:20 [ 18] [ 4] [6011] +15:12:20 [ 19] [ 3] [418] +15:12:20 [ 32] [ 6] [668899] +15:12:20 [ 35] [ 32] [6213544002037460=491212013746272] +15:12:20 [ 37] [ 12] [507900146737] +15:12:20 [ 38] [ 6] [949622] +15:12:20 [ 39] [ 2] [51] +15:12:20 [ 41] [ 8] [03020005] +15:12:20 [ 49] [ 3] [418] +15:12:20 [ 54] [ 40] [0001418C0000081951700002418C000008195170] +15:12:20 ============================================================================ +15:12:20 Sending to : +15:12:20 ============================================================================ +15:12:20 + + +waiting on router queue for slot.... +15:12:21 ============================================================================ +15:12:21 Slot Id : <73> +15:12:21 Transaction Type : RESPONSE +15:12:21 Received From : +15:12:21 ============================================================================ +15:12:21 FNo. Len. Field Value +15:12:21 ============================================================================ +15:12:21 [ 1] [ 4] [0210] +15:12:21 [ 2] [ 16] [6213544002037460] +15:12:21 [ 3] [ 6] [010000] +15:12:21 [ 4] [ 12] [000005000000] +15:12:21 [ 7] [ 10] [0320151010] +15:12:21 [ 11] [ 6] [949622] +15:12:21 [ 12] [ 6] [151010] +15:12:21 [ 13] [ 4] [0320] +15:12:21 [ 15] [ 4] [0320] +15:12:21 [ 18] [ 4] [6011] +15:12:21 [ 19] [ 3] [418] +15:12:21 [ 32] [ 6] [668899] +15:12:21 [ 35] [ 32] [6213544002037460=491212013746272] +15:12:21 [ 37] [ 12] [507900146737] +15:12:21 [ 38] [ 6] [949622] +15:12:21 [ 39] [ 2] [51] +15:12:21 [ 41] [ 8] [03020005] +15:12:21 [ 49] [ 3] [418] +15:12:21 [ 54] [ 40] [0001418C0000081951700002418C000008195170] +15:12:21 ============================================================================ +15:12:21 Calculate Source COMM Id = 4 +15:12:21 ============================================================================ +15:12:21 + + +waiting on router queue for slot.... +15:12:24 ============================================================================ +15:12:24 Slot Id : <38> +15:12:24 Transaction Type : REQUEST +15:12:24 Received From : +15:12:24 ============================================================================ +15:12:24 FNo. Len. Field Value +15:12:24 ============================================================================ +15:12:24 [ 1] [ 4] [0200] +15:12:24 [ 2] [ 16] [6213544001750584] +15:12:24 [ 3] [ 6] [011000] +15:12:24 [ 4] [ 12] [000020000000] +15:12:24 [ 7] [ 10] [0320081131] +15:12:24 [ 11] [ 6] [269941] +15:12:24 [ 12] [ 6] [151131] +15:12:24 [ 13] [ 4] [0320] +15:12:24 [ 14] [ 4] [4912] +15:12:24 [ 15] [ 4] [0320] +15:12:24 [ 18] [ 4] [6011] +15:12:24 [ 19] [ 3] [418] +15:12:24 [ 22] [ 3] [021] +15:12:24 [ 25] [ 2] [01] +15:12:24 [ 28] [ 9] [D00002000] +15:12:24 [ 32] [ 6] [180893] +15:12:24 [ 35] [ 32] [6213544001750584=491212015058753] +15:12:24 [ 37] [ 12] [507908269941] +15:12:24 [ 41] [ 8] [0441VT52] +15:12:24 [ 42] [ 15] [999999 ] +15:12:24 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:12:24 [ 49] [ 3] [418] +15:12:24 [ 52] [ 16] [FCD6C6417458B170] +15:12:24 ============================================================================ +15:12:24 + + +waiting on router queue for slot.... +15:12:24 Sending to : +15:12:24 ============================================================================ +15:12:24 Sending to : +15:12:24 ============================================================================ +15:12:24 ============================================================================ +15:12:24 Slot Id : <38> +15:12:24 Transaction Type : REQUEST +15:12:24 Received From : +15:12:24 ============================================================================ +15:12:24 FNo. Len. Field Value +15:12:24 ============================================================================ +15:12:24 [ 1] [ 4] [0200] +15:12:24 [ 2] [ 16] [6213544001750584] +15:12:24 [ 3] [ 6] [011000] +15:12:24 [ 4] [ 12] [000020000000] +15:12:24 [ 7] [ 10] [0320081131] +15:12:24 [ 11] [ 6] [269941] +15:12:24 [ 12] [ 6] [151131] +15:12:24 [ 13] [ 4] [0320] +15:12:24 [ 14] [ 4] [4912] +15:12:24 [ 15] [ 4] [0320] +15:12:24 [ 18] [ 4] [6011] +15:12:24 [ 19] [ 3] [418] +15:12:24 [ 22] [ 3] [021] +15:12:24 [ 25] [ 2] [01] +15:12:24 [ 28] [ 9] [D00002000] +15:12:24 [ 32] [ 6] [180893] +15:12:24 [ 35] [ 32] [6213544001750584=491212015058753] +15:12:24 [ 37] [ 12] [507908269941] +15:12:24 [ 41] [ 8] [0441VT52] +15:12:24 [ 42] [ 15] [999999 ] +15:12:24 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:12:24 [ 49] [ 3] [418] +15:12:24 [ 52] [ 16] [FCD6C6417458B170] +15:12:24 ============================================================================ +15:12:24 + + +waiting on router queue for slot.... +15:12:24 Sending to : +15:12:24 ============================================================================ +15:12:24 ============================================================================ +15:12:24 Slot Id : <38> +15:12:24 Transaction Type : REQUEST +15:12:24 Received From : +15:12:24 ============================================================================ +15:12:24 FNo. Len. Field Value +15:12:24 ============================================================================ +15:12:24 [ 1] [ 4] [0200] +15:12:24 [ 2] [ 16] [6213544001750584] +15:12:24 [ 3] [ 6] [011000] +15:12:24 [ 4] [ 12] [000020000000] +15:12:24 [ 7] [ 10] [0320081131] +15:12:24 [ 11] [ 6] [269941] +15:12:24 [ 12] [ 6] [151131] +15:12:24 [ 13] [ 4] [0320] +15:12:24 [ 14] [ 4] [4912] +15:12:24 [ 15] [ 4] [0320] +15:12:24 [ 18] [ 4] [6011] +15:12:24 [ 19] [ 3] [418] +15:12:24 [ 22] [ 3] [021] +15:12:24 [ 25] [ 2] [01] +15:12:24 [ 28] [ 9] [D00002000] +15:12:24 [ 32] [ 6] [180893] +15:12:24 [ 35] [ 32] [6213544001750584=491212015058753] +15:12:24 [ 37] [ 12] [507908269941] +15:12:24 [ 41] [ 8] [0441VT52] +15:12:24 [ 42] [ 15] [999999 ] +15:12:24 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:12:24 [ 49] [ 3] [418] +15:12:24 [ 52] [ 16] [7DA2F04EEC65C5C2] +15:12:24 ============================================================================ +15:12:24 + + +waiting on router queue for slot.... +15:12:24 Sending to : <0> +15:12:24 ============================================================================ +15:12:25 ============================================================================ +15:12:25 Slot Id : <38> +15:12:25 Transaction Type : RESPONSE +15:12:25 Received From : +15:12:25 ============================================================================ +15:12:25 FNo. Len. Field Value +15:12:25 ============================================================================ +15:12:25 [ 1] [ 4] [0210] +15:12:25 [ 2] [ 16] [6213544001750584] +15:12:25 [ 3] [ 6] [011000] +15:12:25 [ 4] [ 12] [000020000000] +15:12:25 [ 7] [ 10] [0320081131] +15:12:25 [ 11] [ 6] [269941] +15:12:25 [ 12] [ 6] [151131] +15:12:25 [ 13] [ 4] [0320] +15:12:25 [ 15] [ 4] [0320] +15:12:25 [ 18] [ 4] [6011] +15:12:25 [ 19] [ 3] [418] +15:12:25 [ 32] [ 6] [180893] +15:12:25 [ 35] [ 32] [6213544001750584=491212015058753] +15:12:25 [ 37] [ 12] [507908269941] +15:12:25 [ 38] [ 6] [791185] +15:12:25 [ 39] [ 2] [00] +15:12:25 [ 41] [ 8] [0441VT52] +15:12:25 [ 49] [ 3] [418] +15:12:25 [ 54] [ 40] [1001418C0000967783481002418C000096778348] +15:12:25 ============================================================================ +15:12:25 Sending to : +15:12:25 ============================================================================ +15:12:25 + + +waiting on router queue for slot.... +15:12:26 ============================================================================ +15:12:26 Slot Id : <38> +15:12:26 Transaction Type : RESPONSE +15:12:26 Received From : +15:12:26 ============================================================================ +15:12:26 FNo. Len. Field Value +15:12:26 ============================================================================ +15:12:26 [ 1] [ 4] [0210] +15:12:26 [ 2] [ 16] [6213544001750584] +15:12:26 [ 3] [ 6] [011000] +15:12:26 [ 4] [ 12] [000020000000] +15:12:26 [ 7] [ 10] [0320081131] +15:12:26 [ 11] [ 6] [269941] +15:12:26 [ 12] [ 6] [151131] +15:12:26 [ 13] [ 4] [0320] +15:12:26 [ 15] [ 4] [0320] +15:12:26 [ 18] [ 4] [6011] +15:12:26 [ 19] [ 3] [418] +15:12:26 [ 32] [ 6] [180893] +15:12:26 [ 35] [ 32] [6213544001750584=491212015058753] +15:12:26 [ 37] [ 12] [507908269941] +15:12:26 [ 38] [ 6] [791185] +15:12:26 [ 39] [ 2] [00] +15:12:26 [ 41] [ 8] [0441VT52] +15:12:26 [ 49] [ 3] [418] +15:12:26 [ 54] [ 40] [1001418C0000967783481002418C000096778348] +15:12:26 ============================================================================ +15:12:26 Calculate Source COMM Id = 2 +15:12:26 ============================================================================ +15:12:26 + + +waiting on router queue for slot.... +15:12:34 ============================================================================ +15:12:34 Slot Id : <41> +15:12:34 Transaction Type : REQUEST +15:12:34 Received From : +15:12:34 ============================================================================ +15:12:34 FNo. Len. Field Value +15:12:34 ============================================================================ +15:12:34 [ 1] [ 4] [0200] +15:12:34 [ 2] [ 16] [6213544001993275] +15:12:34 [ 3] [ 6] [011000] +15:12:34 [ 4] [ 12] [000030000000] +15:12:34 [ 7] [ 10] [0320152021] +15:12:34 [ 11] [ 6] [079114] +15:12:34 [ 12] [ 6] [152021] +15:12:34 [ 13] [ 4] [0320] +15:12:34 [ 14] [ 4] [4912] +15:12:34 [ 15] [ 4] [0320] +15:12:34 [ 18] [ 4] [6011] +15:12:34 [ 22] [ 3] [900] +15:12:34 [ 25] [ 2] [02] +15:12:34 [ 28] [ 9] [D00002000] +15:12:34 [ 32] [ 6] [220699] +15:12:34 [ 35] [ 32] [6213544001993275=491212019327522] +15:12:34 [ 37] [ 12] [507900132977] +15:12:34 [ 41] [ 8] [03000100] +15:12:34 [ 42] [ 15] [APTRA ] +15:12:34 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:12:34 [ 49] [ 3] [418] +15:12:34 [ 52] [ 16] [915EBF34F7DCB3C6] +15:12:34 ============================================================================ +15:12:34 + + +waiting on router queue for slot.... +15:12:34 Sending to : +15:12:34 ============================================================================ +15:12:34 Sending to : +15:12:34 ============================================================================ +15:12:35 ============================================================================ +15:12:35 Slot Id : <41> +15:12:35 Transaction Type : REQUEST +15:12:35 Received From : +15:12:35 ============================================================================ +15:12:35 FNo. Len. Field Value +15:12:35 ============================================================================ +15:12:35 [ 1] [ 4] [0200] +15:12:35 [ 2] [ 16] [6213544001993275] +15:12:35 [ 3] [ 6] [011000] +15:12:35 [ 4] [ 12] [000030000000] +15:12:35 [ 7] [ 10] [0320152021] +15:12:35 [ 11] [ 6] [079114] +15:12:35 [ 12] [ 6] [152021] +15:12:35 [ 13] [ 4] [0320] +15:12:35 [ 14] [ 4] [4912] +15:12:35 [ 15] [ 4] [0320] +15:12:35 [ 18] [ 4] [6011] +15:12:35 [ 22] [ 3] [900] +15:12:35 [ 25] [ 2] [02] +15:12:35 [ 28] [ 9] [D00002000] +15:12:35 [ 32] [ 6] [220699] +15:12:35 [ 35] [ 32] [6213544001993275=491212019327522] +15:12:35 [ 37] [ 12] [507900132977] +15:12:35 [ 41] [ 8] [03000100] +15:12:35 [ 42] [ 15] [APTRA ] +15:12:35 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:12:35 [ 49] [ 3] [418] +15:12:35 [ 52] [ 16] [915EBF34F7DCB3C6] +15:12:35 ============================================================================ +15:12:35 + + +waiting on router queue for slot.... +15:12:35 Sending to : +15:12:35 ============================================================================ +15:12:35 ============================================================================ +15:12:35 Slot Id : <41> +15:12:35 Transaction Type : REQUEST +15:12:35 Received From : +15:12:35 ============================================================================ +15:12:35 FNo. Len. Field Value +15:12:35 ============================================================================ +15:12:35 [ 1] [ 4] [0200] +15:12:35 [ 2] [ 16] [6213544001993275] +15:12:35 [ 3] [ 6] [011000] +15:12:35 [ 4] [ 12] [000030000000] +15:12:35 [ 7] [ 10] [0320152021] +15:12:35 [ 11] [ 6] [079114] +15:12:35 [ 12] [ 6] [152021] +15:12:35 [ 13] [ 4] [0320] +15:12:35 [ 14] [ 4] [4912] +15:12:35 [ 15] [ 4] [0320] +15:12:35 [ 18] [ 4] [6011] +15:12:35 [ 22] [ 3] [900] +15:12:35 [ 25] [ 2] [02] +15:12:35 [ 28] [ 9] [D00002000] +15:12:35 [ 32] [ 6] [220699] +15:12:35 [ 35] [ 32] [6213544001993275=491212019327522] +15:12:35 [ 37] [ 12] [507900132977] +15:12:35 [ 41] [ 8] [03000100] +15:12:35 [ 42] [ 15] [APTRA ] +15:12:35 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:12:35 [ 49] [ 3] [418] +15:12:35 [ 52] [ 16] [99E5FE6EC07A3EEE] +15:12:35 ============================================================================ +15:12:35 + + +waiting on router queue for slot.... +15:12:35 Sending to : <0> +15:12:35 ============================================================================ +15:12:35 ============================================================================ +15:12:35 Slot Id : <41> +15:12:35 Transaction Type : RESPONSE +15:12:35 Received From : +15:12:35 ============================================================================ +15:12:35 FNo. Len. Field Value +15:12:35 ============================================================================ +15:12:35 [ 1] [ 4] [0210] +15:12:35 [ 2] [ 16] [6213544001993275] +15:12:35 [ 3] [ 6] [011000] +15:12:35 [ 4] [ 12] [000030000000] +15:12:35 [ 7] [ 10] [0320152021] +15:12:35 [ 11] [ 6] [079114] +15:12:35 [ 12] [ 6] [152021] +15:12:35 [ 13] [ 4] [0320] +15:12:35 [ 15] [ 4] [0320] +15:12:35 [ 18] [ 4] [6011] +15:12:35 [ 32] [ 6] [220699] +15:12:35 [ 35] [ 32] [6213544001993275=491212019327522] +15:12:35 [ 37] [ 12] [507900132977] +15:12:35 [ 38] [ 6] [395615] +15:12:35 [ 39] [ 2] [00] +15:12:35 [ 41] [ 8] [03000100] +15:12:35 [ 49] [ 3] [418] +15:12:35 [ 54] [ 40] [1001418C0001300433401002418C000130043340] +15:12:35 ============================================================================ +15:12:35 Sending to : +15:12:35 ============================================================================ +15:12:35 + + +waiting on router queue for slot.... +15:12:37 ============================================================================ +15:12:37 Slot Id : <41> +15:12:37 Transaction Type : RESPONSE +15:12:37 Received From : +15:12:37 ============================================================================ +15:12:37 FNo. Len. Field Value +15:12:37 ============================================================================ +15:12:37 [ 1] [ 4] [0210] +15:12:37 [ 2] [ 16] [6213544001993275] +15:12:37 [ 3] [ 6] [011000] +15:12:37 [ 4] [ 12] [000030000000] +15:12:37 [ 7] [ 10] [0320152021] +15:12:37 [ 11] [ 6] [079114] +15:12:37 [ 12] [ 6] [152021] +15:12:37 [ 13] [ 4] [0320] +15:12:37 [ 15] [ 4] [0320] +15:12:37 [ 18] [ 4] [6011] +15:12:37 [ 32] [ 6] [220699] +15:12:37 [ 35] [ 32] [6213544001993275=491212019327522] +15:12:37 [ 37] [ 12] [507900132977] +15:12:37 [ 38] [ 6] [395615] +15:12:37 [ 39] [ 2] [00] +15:12:37 [ 41] [ 8] [03000100] +15:12:37 [ 49] [ 3] [418] +15:12:37 [ 54] [ 40] [1001418C0001300433401002418C000130043340] +15:12:37 ============================================================================ +15:12:37 Calculate Source COMM Id = 1 +15:12:37 ============================================================================ +15:12:37 + + +waiting on router queue for slot.... +15:12:42 ============================================================================ +15:12:42 Slot Id : <464> +15:12:42 Transaction Type : REQUEST +15:12:42 Received From : +15:12:42 ============================================================================ +15:12:42 FNo. Len. Field Value +15:12:42 ============================================================================ +15:12:42 [ 1] [ 4] [0800] +15:12:42 [ 7] [ 10] [0320081149] +15:12:42 [ 11] [ 6] [156951] +15:12:42 [ 70] [ 3] [301] +15:12:42 ============================================================================ +15:12:42 + + +waiting on router queue for slot.... +15:12:42 Sending to : +15:12:42 ============================================================================ +15:12:42 ============================================================================ +15:12:42 Slot Id : <464> +15:12:42 Transaction Type : RESPONSE +15:12:42 Received From : +15:12:42 ============================================================================ +15:12:42 FNo. Len. Field Value +15:12:42 ============================================================================ +15:12:42 [ 1] [ 4] [0810] +15:12:42 [ 7] [ 10] [0320081149] +15:12:42 [ 11] [ 6] [156951] +15:12:42 [ 39] [ 2] [00] +15:12:42 [ 70] [ 3] [301] +15:12:42 ============================================================================ +15:12:42 Calculate Source COMM Id = 2 +15:12:42 ============================================================================ +15:12:42 + + +waiting on router queue for slot.... +15:12:46 ============================================================================ +15:12:46 Slot Id : <32> +15:12:46 Transaction Type : REQUEST +15:12:46 Received From : +15:12:46 ============================================================================ +15:12:46 FNo. Len. Field Value +15:12:46 ============================================================================ +15:12:46 [ 1] [ 4] [0200] +15:12:46 [ 2] [ 16] [6688990106009200] +15:12:46 [ 3] [ 6] [012000] +15:12:46 [ 4] [ 12] [000010000000] +15:12:46 [ 7] [ 10] [0320151241] +15:12:46 [ 11] [ 6] [780327] +15:12:46 [ 12] [ 6] [151241] +15:12:46 [ 13] [ 4] [0320] +15:12:46 [ 15] [ 4] [0320] +15:12:46 [ 18] [ 4] [6011] +15:12:46 [ 22] [ 3] [900] +15:12:46 [ 25] [ 2] [02] +15:12:46 [ 28] [ 9] [D00002000] +15:12:46 [ 32] [ 6] [621354] +15:12:46 [ 35] [ 37] [6688990106009200=43111231920056800000] +15:12:46 [ 37] [ 12] [507902474623] +15:12:46 [ 41] [ 8] [05003000] +15:12:46 [ 42] [ 15] [NATIVE ] +15:12:46 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +15:12:46 [ 49] [ 3] [418] +15:12:46 [ 52] [ 16] [7D302C5BCA3DBC1B] +15:12:46 ============================================================================ +15:12:46 + + +waiting on router queue for slot.... +15:12:46 Sending to : +15:12:46 ============================================================================ +15:12:46 Sending to : +15:12:46 ============================================================================ +15:12:46 ============================================================================ +15:12:46 Slot Id : <32> +15:12:46 Transaction Type : REQUEST +15:12:46 Received From : +15:12:46 ============================================================================ +15:12:46 FNo. Len. Field Value +15:12:46 ============================================================================ +15:12:46 [ 1] [ 4] [0200] +15:12:46 [ 2] [ 16] [6688990106009200] +15:12:46 [ 3] [ 6] [012000] +15:12:46 [ 4] [ 12] [000010000000] +15:12:46 [ 7] [ 10] [0320151241] +15:12:46 [ 11] [ 6] [780327] +15:12:46 [ 12] [ 6] [151241] +15:12:46 [ 13] [ 4] [0320] +15:12:46 [ 15] [ 4] [0320] +15:12:46 [ 18] [ 4] [6011] +15:12:46 [ 22] [ 3] [900] +15:12:46 [ 25] [ 2] [02] +15:12:46 [ 28] [ 9] [D00002000] +15:12:46 [ 32] [ 6] [621354] +15:12:46 [ 35] [ 37] [6688990106009200=43111231920056800000] +15:12:46 [ 37] [ 12] [507902474623] +15:12:46 [ 41] [ 8] [05003000] +15:12:46 [ 42] [ 15] [NATIVE ] +15:12:46 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +15:12:46 [ 49] [ 3] [418] +15:12:46 [ 52] [ 16] [7D302C5BCA3DBC1B] +15:12:46 ============================================================================ +15:12:46 + + +waiting on router queue for slot.... +15:12:46 Sending to : +15:12:46 ============================================================================ +15:12:46 ============================================================================ +15:12:46 Slot Id : <32> +15:12:46 Transaction Type : REQUEST +15:12:46 Received From : +15:12:46 ============================================================================ +15:12:46 FNo. Len. Field Value +15:12:46 ============================================================================ +15:12:46 [ 1] [ 4] [0200] +15:12:46 [ 2] [ 16] [6688990106009200] +15:12:46 [ 3] [ 6] [012000] +15:12:46 [ 4] [ 12] [000010000000] +15:12:46 [ 7] [ 10] [0320151241] +15:12:46 [ 11] [ 6] [780327] +15:12:46 [ 12] [ 6] [151241] +15:12:46 [ 13] [ 4] [0320] +15:12:46 [ 15] [ 4] [0320] +15:12:46 [ 18] [ 4] [6011] +15:12:46 [ 22] [ 3] [900] +15:12:46 [ 25] [ 2] [02] +15:12:46 [ 28] [ 9] [D00002000] +15:12:46 [ 32] [ 6] [621354] +15:12:46 [ 35] [ 37] [6688990106009200=43111231920056800000] +15:12:46 [ 37] [ 12] [507902474623] +15:12:46 [ 41] [ 8] [05003000] +15:12:46 [ 42] [ 15] [NATIVE ] +15:12:46 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +15:12:46 [ 49] [ 3] [418] +15:12:46 [ 52] [ 16] [C37079D2E50C2730] +15:12:46 ============================================================================ +15:12:46 + + +waiting on router queue for slot.... +15:12:46 Sending to : <4> +15:12:46 ============================================================================ +15:12:48 ============================================================================ +15:12:48 Slot Id : <32> +15:12:48 Transaction Type : RESPONSE +15:12:48 Received From : +15:12:48 ============================================================================ +15:12:48 FNo. Len. Field Value +15:12:48 ============================================================================ +15:12:48 [ 1] [ 4] [0210] +15:12:48 [ 2] [ 16] [6688990106009200] +15:12:48 [ 3] [ 6] [012000] +15:12:48 [ 4] [ 12] [000010000000] +15:12:48 [ 11] [ 6] [780327] +15:12:48 [ 12] [ 6] [151241] +15:12:48 [ 15] [ 4] [0320] +15:12:48 [ 18] [ 4] [6011] +15:12:48 [ 32] [ 6] [621354] +15:12:48 [ 35] [ 37] [6688990106009200=43111231920056800000] +15:12:48 [ 37] [ 12] [507902474623] +15:12:48 [ 38] [ 6] [085367] +15:12:48 [ 39] [ 2] [00] +15:12:48 [ 41] [ 8] [05003000] +15:12:48 [ 49] [ 3] [418] +15:12:48 [ 54] [ 20] [2002418C000002300934] +15:12:48 ============================================================================ +15:12:48 Sending to : +15:12:48 ============================================================================ +15:12:48 + + +waiting on router queue for slot.... +15:12:49 ============================================================================ +15:12:49 Slot Id : <32> +15:12:49 Transaction Type : RESPONSE +15:12:49 Received From : +15:12:49 ============================================================================ +15:12:49 FNo. Len. Field Value +15:12:49 ============================================================================ +15:12:49 [ 1] [ 4] [0210] +15:12:49 [ 2] [ 16] [6688990106009200] +15:12:49 [ 3] [ 6] [012000] +15:12:49 [ 4] [ 12] [000010000000] +15:12:49 [ 11] [ 6] [780327] +15:12:49 [ 12] [ 6] [151241] +15:12:49 [ 15] [ 4] [0320] +15:12:49 [ 18] [ 4] [6011] +15:12:49 [ 32] [ 6] [621354] +15:12:49 [ 35] [ 37] [6688990106009200=43111231920056800000] +15:12:49 [ 37] [ 12] [507902474623] +15:12:49 [ 38] [ 6] [085367] +15:12:49 [ 39] [ 2] [00] +15:12:49 [ 41] [ 8] [05003000] +15:12:49 [ 49] [ 3] [418] +15:12:49 [ 54] [ 20] [2002418C000002300934] +15:12:49 ============================================================================ +15:12:49 Calculate Source COMM Id = 0 +15:12:49 ============================================================================ +15:12:49 + + +waiting on router queue for slot.... +15:12:52 ============================================================================ +15:12:52 Slot Id : <487> +15:12:52 Transaction Type : REQUEST +15:12:52 Received From : +15:12:52 ============================================================================ +15:12:52 FNo. Len. Field Value +15:12:52 ============================================================================ +15:12:52 [ 1] [ 4] [0200] +15:12:52 [ 2] [ 16] [6213544000891991] +15:12:52 [ 3] [ 6] [010000] +15:12:52 [ 4] [ 12] [000010000000] +15:12:52 [ 7] [ 10] [0320151042] +15:12:52 [ 11] [ 6] [949641] +15:12:52 [ 12] [ 6] [151042] +15:12:52 [ 13] [ 4] [0320] +15:12:52 [ 15] [ 4] [0320] +15:12:52 [ 18] [ 4] [6011] +15:12:52 [ 19] [ 3] [418] +15:12:52 [ 22] [ 3] [021] +15:12:52 [ 25] [ 2] [01] +15:12:52 [ 28] [ 9] [D00002000] +15:12:52 [ 32] [ 6] [668899] +15:12:52 [ 35] [ 32] [6213544000891991=491212019199940] +15:12:52 [ 37] [ 12] [507902093362] +15:12:52 [ 41] [ 8] [03020021] +15:12:52 [ 42] [ 15] [APT ] +15:12:52 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +15:12:52 [ 49] [ 3] [418] +15:12:52 [ 52] [ 16] [512E54A236740967] +15:12:52 ============================================================================ +15:12:52 + + +waiting on router queue for slot.... +15:12:52 Sending to : +15:12:52 ============================================================================ +15:12:52 Sending to : +15:12:52 ============================================================================ +15:12:52 ============================================================================ +15:12:52 Slot Id : <487> +15:12:52 Transaction Type : REQUEST +15:12:52 Received From : +15:12:52 ============================================================================ +15:12:52 FNo. Len. Field Value +15:12:52 ============================================================================ +15:12:52 [ 1] [ 4] [0200] +15:12:52 [ 2] [ 16] [6213544000891991] +15:12:52 [ 3] [ 6] [010000] +15:12:52 [ 4] [ 12] [000010000000] +15:12:52 [ 7] [ 10] [0320151042] +15:12:52 [ 11] [ 6] [949641] +15:12:52 [ 12] [ 6] [151042] +15:12:52 [ 13] [ 4] [0320] +15:12:52 [ 15] [ 4] [0320] +15:12:52 [ 18] [ 4] [6011] +15:12:52 [ 19] [ 3] [418] +15:12:52 [ 22] [ 3] [021] +15:12:52 [ 25] [ 2] [01] +15:12:52 [ 28] [ 9] [D00002000] +15:12:52 [ 32] [ 6] [668899] +15:12:52 [ 35] [ 32] [6213544000891991=491212019199940] +15:12:52 [ 37] [ 12] [507902093362] +15:12:52 [ 41] [ 8] [03020021] +15:12:52 [ 42] [ 15] [APT ] +15:12:52 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +15:12:52 [ 49] [ 3] [418] +15:12:52 [ 52] [ 16] [512E54A236740967] +15:12:52 ============================================================================ +15:12:52 + + +waiting on router queue for slot.... +15:12:52 Sending to : +15:12:52 ============================================================================ +15:12:52 ============================================================================ +15:12:52 Slot Id : <487> +15:12:52 Transaction Type : REQUEST +15:12:52 Received From : +15:12:52 ============================================================================ +15:12:52 FNo. Len. Field Value +15:12:52 ============================================================================ +15:12:52 [ 1] [ 4] [0200] +15:12:52 [ 2] [ 16] [6213544000891991] +15:12:52 [ 3] [ 6] [010000] +15:12:52 [ 4] [ 12] [000010000000] +15:12:52 [ 7] [ 10] [0320151042] +15:12:52 [ 11] [ 6] [949641] +15:12:52 [ 12] [ 6] [151042] +15:12:52 [ 13] [ 4] [0320] +15:12:52 [ 15] [ 4] [0320] +15:12:52 [ 18] [ 4] [6011] +15:12:52 [ 19] [ 3] [418] +15:12:52 [ 22] [ 3] [021] +15:12:52 [ 25] [ 2] [01] +15:12:52 [ 28] [ 9] [D00002000] +15:12:52 [ 32] [ 6] [668899] +15:12:52 [ 35] [ 32] [6213544000891991=491212019199940] +15:12:52 [ 37] [ 12] [507902093362] +15:12:52 [ 41] [ 8] [03020021] +15:12:52 [ 42] [ 15] [APT ] +15:12:52 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +15:12:52 [ 49] [ 3] [418] +15:12:52 [ 52] [ 16] [5657975C55E4F05F] +15:12:52 ============================================================================ +15:12:52 + + +waiting on router queue for slot.... +15:12:52 Sending to : <0> +15:12:52 ============================================================================ +15:12:52 ============================================================================ +15:12:52 Slot Id : <487> +15:12:52 Transaction Type : RESPONSE +15:12:52 Received From : +15:12:52 ============================================================================ +15:12:52 FNo. Len. Field Value +15:12:52 ============================================================================ +15:12:52 [ 1] [ 4] [0210] +15:12:52 [ 2] [ 16] [6213544000891991] +15:12:52 [ 3] [ 6] [010000] +15:12:52 [ 4] [ 12] [000010000000] +15:12:52 [ 7] [ 10] [0320151042] +15:12:52 [ 11] [ 6] [949641] +15:12:52 [ 12] [ 6] [151042] +15:12:52 [ 13] [ 4] [0320] +15:12:52 [ 15] [ 4] [0320] +15:12:52 [ 18] [ 4] [6011] +15:12:52 [ 19] [ 3] [418] +15:12:52 [ 32] [ 6] [668899] +15:12:52 [ 35] [ 32] [6213544000891991=491212019199940] +15:12:52 [ 37] [ 12] [507902093362] +15:12:52 [ 38] [ 6] [667488] +15:12:52 [ 39] [ 2] [00] +15:12:52 [ 41] [ 8] [03020021] +15:12:52 [ 49] [ 3] [418] +15:12:52 [ 54] [ 40] [0001418C0000050093390002418C000005009339] +15:12:52 ============================================================================ +15:12:52 Sending to : +15:12:52 ============================================================================ +15:12:52 + + +waiting on router queue for slot.... +15:12:54 ============================================================================ +15:12:54 Slot Id : <487> +15:12:54 Transaction Type : RESPONSE +15:12:54 Received From : +15:12:54 ============================================================================ +15:12:54 FNo. Len. Field Value +15:12:54 ============================================================================ +15:12:54 [ 1] [ 4] [0210] +15:12:54 [ 2] [ 16] [6213544000891991] +15:12:54 [ 3] [ 6] [010000] +15:12:54 [ 4] [ 12] [000010000000] +15:12:54 [ 7] [ 10] [0320151042] +15:12:54 [ 11] [ 6] [949641] +15:12:54 [ 12] [ 6] [151042] +15:12:54 [ 13] [ 4] [0320] +15:12:54 [ 15] [ 4] [0320] +15:12:54 [ 18] [ 4] [6011] +15:12:54 [ 19] [ 3] [418] +15:12:54 [ 32] [ 6] [668899] +15:12:54 [ 35] [ 32] [6213544000891991=491212019199940] +15:12:54 [ 37] [ 12] [507902093362] +15:12:54 [ 38] [ 6] [667488] +15:12:54 [ 39] [ 2] [00] +15:12:54 [ 41] [ 8] [03020021] +15:12:54 [ 49] [ 3] [418] +15:12:54 [ 54] [ 40] [0001418C0000050093390002418C000005009339] +15:12:54 ============================================================================ +15:12:54 Calculate Source COMM Id = 4 +15:12:54 ============================================================================ +15:12:54 + + +waiting on router queue for slot.... +15:12:56 ============================================================================ +15:12:56 Slot Id : <26> +15:12:56 Transaction Type : REQUEST +15:12:56 Received From : +15:12:56 ============================================================================ +15:12:56 FNo. Len. Field Value +15:12:56 ============================================================================ +15:12:56 [ 1] [ 4] [0800] +15:12:56 [ 7] [ 10] [0320081203] +15:12:56 [ 11] [ 6] [156952] +15:12:56 [ 70] [ 3] [301] +15:12:56 ============================================================================ +15:12:56 + + +waiting on router queue for slot.... +15:12:56 Sending to : +15:12:56 ============================================================================ +15:12:56 ============================================================================ +15:12:56 Slot Id : <26> +15:12:56 Transaction Type : RESPONSE +15:12:56 Received From : +15:12:56 ============================================================================ +15:12:56 FNo. Len. Field Value +15:12:56 ============================================================================ +15:12:56 [ 1] [ 4] [0810] +15:12:56 [ 7] [ 10] [0320081203] +15:12:56 [ 11] [ 6] [156952] +15:12:56 [ 39] [ 2] [00] +15:12:56 [ 70] [ 3] [301] +15:12:56 ============================================================================ +15:12:56 Calculate Source COMM Id = 2 +15:12:56 ============================================================================ +15:12:56 + + +waiting on router queue for slot.... +15:12:58 ============================================================================ +15:12:58 Slot Id : <20> +15:12:58 Transaction Type : REQUEST +15:12:58 Received From : +15:12:58 ============================================================================ +15:12:58 FNo. Len. Field Value +15:12:58 ============================================================================ +15:12:58 [ 1] [ 4] [0200] +15:12:58 [ 2] [ 16] [6688990103833305] +15:12:58 [ 3] [ 6] [010000] +15:12:58 [ 4] [ 12] [000010000000] +15:12:58 [ 7] [ 10] [0320151253] +15:12:58 [ 11] [ 6] [780375] +15:12:58 [ 12] [ 6] [151253] +15:12:58 [ 13] [ 4] [0320] +15:12:58 [ 15] [ 4] [0320] +15:12:58 [ 18] [ 4] [6011] +15:12:58 [ 22] [ 3] [900] +15:12:58 [ 25] [ 2] [02] +15:12:58 [ 28] [ 9] [D00002000] +15:12:58 [ 32] [ 6] [621354] +15:12:58 [ 35] [ 37] [6688990103833305=43021231330506000000] +15:12:58 [ 37] [ 12] [507904645113] +15:12:58 [ 41] [ 8] [17000900] +15:12:58 [ 42] [ 15] [NATIVE ] +15:12:58 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +15:12:58 [ 49] [ 3] [418] +15:12:58 [ 52] [ 16] [7C90B2A4CF85E0F8] +15:12:58 ============================================================================ +15:12:58 + + +waiting on router queue for slot.... +15:12:58 Sending to : +15:12:58 ============================================================================ +15:12:58 Sending to : +15:12:58 ============================================================================ +15:12:58 ============================================================================ +15:12:58 Slot Id : <20> +15:12:58 Transaction Type : REQUEST +15:12:58 Received From : +15:12:58 ============================================================================ +15:12:58 FNo. Len. Field Value +15:12:58 ============================================================================ +15:12:58 [ 1] [ 4] [0200] +15:12:58 [ 2] [ 16] [6688990103833305] +15:12:58 [ 3] [ 6] [010000] +15:12:58 [ 4] [ 12] [000010000000] +15:12:58 [ 7] [ 10] [0320151253] +15:12:58 [ 11] [ 6] [780375] +15:12:58 [ 12] [ 6] [151253] +15:12:58 [ 13] [ 4] [0320] +15:12:58 [ 15] [ 4] [0320] +15:12:58 [ 18] [ 4] [6011] +15:12:58 [ 22] [ 3] [900] +15:12:58 [ 25] [ 2] [02] +15:12:58 [ 28] [ 9] [D00002000] +15:12:58 [ 32] [ 6] [621354] +15:12:58 [ 35] [ 37] [6688990103833305=43021231330506000000] +15:12:58 [ 37] [ 12] [507904645113] +15:12:58 [ 41] [ 8] [17000900] +15:12:58 [ 42] [ 15] [NATIVE ] +15:12:58 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +15:12:58 [ 49] [ 3] [418] +15:12:58 [ 52] [ 16] [7C90B2A4CF85E0F8] +15:12:58 ============================================================================ +15:12:58 + + +waiting on router queue for slot.... +15:12:58 Sending to : +15:12:58 ============================================================================ +15:12:58 ============================================================================ +15:12:58 Slot Id : <20> +15:12:58 Transaction Type : REQUEST +15:12:58 Received From : +15:12:58 ============================================================================ +15:12:58 FNo. Len. Field Value +15:12:58 ============================================================================ +15:12:58 [ 1] [ 4] [0200] +15:12:58 [ 2] [ 16] [6688990103833305] +15:12:58 [ 3] [ 6] [010000] +15:12:58 [ 4] [ 12] [000010000000] +15:12:58 [ 7] [ 10] [0320151253] +15:12:58 [ 11] [ 6] [780375] +15:12:58 [ 12] [ 6] [151253] +15:12:58 [ 13] [ 4] [0320] +15:12:58 [ 15] [ 4] [0320] +15:12:58 [ 18] [ 4] [6011] +15:12:58 [ 22] [ 3] [900] +15:12:58 [ 25] [ 2] [02] +15:12:58 [ 28] [ 9] [D00002000] +15:12:58 [ 32] [ 6] [621354] +15:12:58 [ 35] [ 37] [6688990103833305=43021231330506000000] +15:12:58 [ 37] [ 12] [507904645113] +15:12:58 [ 41] [ 8] [17000900] +15:12:58 [ 42] [ 15] [NATIVE ] +15:12:58 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +15:12:58 [ 49] [ 3] [418] +15:12:58 [ 52] [ 16] [99CB69FE0E95563E] +15:12:58 ============================================================================ +15:12:58 + + +waiting on router queue for slot.... +15:12:58 Sending to : <4> +15:12:58 ============================================================================ +15:13:00 ============================================================================ +15:13:00 Slot Id : <20> +15:13:00 Transaction Type : RESPONSE +15:13:00 Received From : +15:13:00 ============================================================================ +15:13:00 FNo. Len. Field Value +15:13:00 ============================================================================ +15:13:00 [ 1] [ 4] [0210] +15:13:00 [ 2] [ 16] [6688990103833305] +15:13:00 [ 3] [ 6] [010000] +15:13:00 [ 4] [ 12] [000010000000] +15:13:00 [ 11] [ 6] [780375] +15:13:00 [ 12] [ 6] [151253] +15:13:00 [ 15] [ 4] [0320] +15:13:00 [ 18] [ 4] [6011] +15:13:00 [ 32] [ 6] [621354] +15:13:00 [ 35] [ 37] [6688990103833305=43021231330506000000] +15:13:00 [ 37] [ 12] [507904645113] +15:13:00 [ 38] [ 6] [844339] +15:13:00 [ 39] [ 2] [00] +15:13:00 [ 41] [ 8] [17000900] +15:13:00 [ 49] [ 3] [418] +15:13:00 [ 54] [ 20] [0002418C000290141511] +15:13:00 ============================================================================ +15:13:00 Sending to : +15:13:00 ============================================================================ +15:13:00 + + +waiting on router queue for slot.... +15:13:02 ============================================================================ +15:13:02 Slot Id : <20> +15:13:02 Transaction Type : RESPONSE +15:13:02 Received From : +15:13:02 ============================================================================ +15:13:02 FNo. Len. Field Value +15:13:02 ============================================================================ +15:13:02 [ 1] [ 4] [0210] +15:13:02 [ 2] [ 16] [6688990103833305] +15:13:02 [ 3] [ 6] [010000] +15:13:02 [ 4] [ 12] [000010000000] +15:13:02 [ 11] [ 6] [780375] +15:13:02 [ 12] [ 6] [151253] +15:13:02 [ 15] [ 4] [0320] +15:13:02 [ 18] [ 4] [6011] +15:13:02 [ 32] [ 6] [621354] +15:13:02 [ 35] [ 37] [6688990103833305=43021231330506000000] +15:13:02 [ 37] [ 12] [507904645113] +15:13:02 [ 38] [ 6] [844339] +15:13:02 [ 39] [ 2] [00] +15:13:02 [ 41] [ 8] [17000900] +15:13:02 [ 49] [ 3] [418] +15:13:02 [ 54] [ 20] [0002418C000290141511] +15:13:02 ============================================================================ +15:13:02 Calculate Source COMM Id = 0 +15:13:02 ============================================================================ +15:13:02 + + +waiting on router queue for slot.... +15:13:04 ============================================================================ +15:13:04 Slot Id : <46> +15:13:04 Transaction Type : REQUEST +15:13:04 Received From : +15:13:04 ============================================================================ +15:13:04 FNo. Len. Field Value +15:13:04 ============================================================================ +15:13:04 [ 1] [ 4] [0800] +15:13:04 [ 2] [ 5] [02531] +15:13:04 [ 3] [ 6] [579158] +15:13:04 [ 7] [ 10] [0320081304] +15:13:04 [ 11] [ 6] [807295] +15:13:04 [ 15] [ 10] [0320081304] +15:13:04 [ 37] [ 11] [57915807295] +15:13:04 [ 70] [ 3] [001] +15:13:04 ============================================================================ +15:13:04 + + +waiting on router queue for slot.... +15:13:04 ============================================================================ +15:13:04 Slot Id : <46> +15:13:04 Transaction Type : RESPONSE +15:13:04 Received From : +15:13:04 ============================================================================ +15:13:04 FNo. Len. Field Value +15:13:04 ============================================================================ +15:13:04 [ 1] [ 4] [0810] +15:13:04 [ 7] [ 10] [0320081304] +15:13:04 [ 11] [ 6] [807295] +15:13:04 [ 15] [ 4] [0320] +15:13:04 [ 37] [ 12] [57915807295] +15:13:04 [ 39] [ 2] [00] +15:13:04 [ 70] [ 3] [001] +15:13:04 ============================================================================ +15:13:04 Sending to : +15:13:04 ============================================================================ +15:13:04 + + +waiting on router queue for slot.... +15:13:06 ============================================================================ +15:13:06 Slot Id : <69> +15:13:06 Transaction Type : REQUEST +15:13:06 Received From : +15:13:06 ============================================================================ +15:13:06 FNo. Len. Field Value +15:13:06 ============================================================================ +15:13:06 [ 1] [ 4] [0800] +15:13:06 [ 7] [ 10] [0320222454] +15:13:06 [ 11] [ 6] [152454] +15:13:06 [ 37] [ 12] [57915152454] +15:13:06 [ 70] [ 3] [301] +15:13:06 ============================================================================ +15:13:06 + + +waiting on router queue for slot.... +15:13:06 Sending to : +15:13:06 ============================================================================ +15:13:06 ============================================================================ +15:13:06 Slot Id : <69> +15:13:06 Transaction Type : RESPONSE +15:13:06 Received From : +15:13:06 ============================================================================ +15:13:06 FNo. Len. Field Value +15:13:06 ============================================================================ +15:13:06 [ 1] [ 4] [0810] +15:13:06 [ 7] [ 10] [0320222454] +15:13:06 [ 11] [ 6] [152454] +15:13:06 [ 37] [ 12] [579151524540] +15:13:06 [ 39] [ 2] [00] +15:13:06 [ 70] [ 3] [810] +15:13:06 ============================================================================ +15:13:06 Calculate Source COMM Id = 6 +15:13:06 ============================================================================ +15:13:06 + + +waiting on router queue for slot.... +15:13:07 ============================================================================ +15:13:07 Slot Id : <27> +15:13:07 Transaction Type : REQUEST +15:13:07 Received From : +15:13:07 ============================================================================ +15:13:07 FNo. Len. Field Value +15:13:07 ============================================================================ +15:13:07 [ 1] [ 4] [0800] +15:13:07 [ 7] [ 10] [0320081214] +15:13:07 [ 11] [ 6] [156953] +15:13:07 [ 70] [ 3] [301] +15:13:07 ============================================================================ +15:13:07 + + +waiting on router queue for slot.... +15:13:07 Sending to : +15:13:07 ============================================================================ +15:13:07 ============================================================================ +15:13:07 Slot Id : <27> +15:13:07 Transaction Type : RESPONSE +15:13:07 Received From : +15:13:07 ============================================================================ +15:13:07 FNo. Len. Field Value +15:13:07 ============================================================================ +15:13:07 [ 1] [ 4] [0810] +15:13:07 [ 7] [ 10] [0320081214] +15:13:07 [ 11] [ 6] [156953] +15:13:07 [ 39] [ 2] [00] +15:13:07 [ 70] [ 3] [301] +15:13:07 ============================================================================ +15:13:07 Calculate Source COMM Id = 2 +15:13:07 ============================================================================ +15:13:07 + + +waiting on router queue for slot.... +15:13:09 ============================================================================ +15:13:09 Slot Id : <19> +15:13:09 Transaction Type : REQUEST +15:13:09 Received From : +15:13:09 ============================================================================ +15:13:09 FNo. Len. Field Value +15:13:09 ============================================================================ +15:13:09 [ 1] [ 4] [0200] +15:13:09 [ 2] [ 16] [6213545000438329] +15:13:09 [ 3] [ 6] [301000] +15:13:09 [ 4] [ 12] [000000000000] +15:13:09 [ 7] [ 10] [0320151329] +15:13:09 [ 11] [ 6] [207781] +15:13:09 [ 12] [ 6] [031140] +15:13:09 [ 13] [ 4] [0320] +15:13:09 [ 14] [ 4] [4912] +15:13:09 [ 15] [ 4] [0320] +15:13:09 [ 18] [ 4] [6011] +15:13:09 [ 19] [ 3] [418] +15:13:09 [ 22] [ 3] [021] +15:13:09 [ 25] [ 2] [01] +15:13:09 [ 28] [ 9] [D00000000] +15:13:09 [ 32] [ 6] [198901] +15:13:09 [ 35] [ 32] [6213545000438329=491212013832528] +15:13:09 [ 37] [ 12] [507915207781] +15:13:09 [ 41] [ 8] [01529031] +15:13:09 [ 42] [ 15] [000000041529031] +15:13:09 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:13:09 [ 49] [ 3] [418] +15:13:09 [ 52] [ 16] [993071C002B27208] +15:13:09 ============================================================================ +15:13:09 + + +waiting on router queue for slot.... +15:13:09 Sending to : +15:13:09 ============================================================================ +15:13:09 Sending to : +15:13:09 ============================================================================ +15:13:09 ============================================================================ +15:13:09 Slot Id : <19> +15:13:09 Transaction Type : REQUEST +15:13:09 Received From : +15:13:09 ============================================================================ +15:13:09 FNo. Len. Field Value +15:13:09 ============================================================================ +15:13:09 [ 1] [ 4] [0200] +15:13:09 [ 2] [ 16] [6213545000438329] +15:13:09 [ 3] [ 6] [301000] +15:13:09 [ 4] [ 12] [000000000000] +15:13:09 [ 7] [ 10] [0320151329] +15:13:09 [ 11] [ 6] [207781] +15:13:09 [ 12] [ 6] [031140] +15:13:09 [ 13] [ 4] [0320] +15:13:09 [ 14] [ 4] [4912] +15:13:09 [ 15] [ 4] [0320] +15:13:09 [ 18] [ 4] [6011] +15:13:09 [ 19] [ 3] [418] +15:13:09 [ 22] [ 3] [021] +15:13:09 [ 25] [ 2] [01] +15:13:09 [ 28] [ 9] [D00000000] +15:13:09 [ 32] [ 6] [198901] +15:13:09 [ 35] [ 32] [6213545000438329=491212013832528] +15:13:09 [ 37] [ 12] [507915207781] +15:13:09 [ 41] [ 8] [01529031] +15:13:09 [ 42] [ 15] [000000041529031] +15:13:09 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:13:09 [ 49] [ 3] [418] +15:13:09 [ 52] [ 16] [993071C002B27208] +15:13:09 ============================================================================ +15:13:09 + + +waiting on router queue for slot.... +15:13:09 Sending to : +15:13:09 ============================================================================ +15:13:09 ============================================================================ +15:13:09 Slot Id : <19> +15:13:09 Transaction Type : REQUEST +15:13:09 Received From : +15:13:09 ============================================================================ +15:13:09 FNo. Len. Field Value +15:13:09 ============================================================================ +15:13:09 [ 1] [ 4] [0200] +15:13:09 [ 2] [ 16] [6213545000438329] +15:13:09 [ 3] [ 6] [301000] +15:13:09 [ 4] [ 12] [000000000000] +15:13:09 [ 7] [ 10] [0320151329] +15:13:09 [ 11] [ 6] [207781] +15:13:09 [ 12] [ 6] [031140] +15:13:09 [ 13] [ 4] [0320] +15:13:09 [ 14] [ 4] [4912] +15:13:09 [ 15] [ 4] [0320] +15:13:09 [ 18] [ 4] [6011] +15:13:09 [ 19] [ 3] [418] +15:13:09 [ 22] [ 3] [021] +15:13:09 [ 25] [ 2] [01] +15:13:09 [ 28] [ 9] [D00000000] +15:13:09 [ 32] [ 6] [198901] +15:13:09 [ 35] [ 32] [6213545000438329=491212013832528] +15:13:09 [ 37] [ 12] [507915207781] +15:13:09 [ 41] [ 8] [01529031] +15:13:09 [ 42] [ 15] [000000041529031] +15:13:09 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:13:09 [ 49] [ 3] [418] +15:13:09 [ 52] [ 16] [2688F6FAF72D51ED] +15:13:09 ============================================================================ +15:13:09 + + +waiting on router queue for slot.... +15:13:09 Sending to : <0> +15:13:09 ============================================================================ +15:13:10 ============================================================================ +15:13:10 Slot Id : <19> +15:13:10 Transaction Type : RESPONSE +15:13:10 Received From : +15:13:10 ============================================================================ +15:13:10 FNo. Len. Field Value +15:13:10 ============================================================================ +15:13:10 [ 1] [ 4] [0210] +15:13:10 [ 2] [ 16] [6213545000438329] +15:13:10 [ 3] [ 6] [301000] +15:13:10 [ 4] [ 12] [000000000000] +15:13:10 [ 7] [ 10] [0320151329] +15:13:10 [ 11] [ 6] [207781] +15:13:10 [ 12] [ 6] [031140] +15:13:10 [ 13] [ 4] [0320] +15:13:10 [ 15] [ 4] [0320] +15:13:10 [ 18] [ 4] [6011] +15:13:10 [ 19] [ 3] [418] +15:13:10 [ 32] [ 6] [198901] +15:13:10 [ 35] [ 32] [6213545000438329=491212013832528] +15:13:10 [ 37] [ 12] [507915207781] +15:13:10 [ 38] [ 6] [986972] +15:13:10 [ 39] [ 2] [00] +15:13:10 [ 41] [ 8] [01529031] +15:13:10 [ 49] [ 3] [418] +15:13:10 [ 54] [ 40] [1001418C0003021309731002418C000302130973] +15:13:10 ============================================================================ +15:13:10 Sending to : +15:13:10 ============================================================================ +15:13:10 + + +waiting on router queue for slot.... +15:13:11 ============================================================================ +15:13:11 Slot Id : <19> +15:13:11 Transaction Type : RESPONSE +15:13:11 Received From : +15:13:11 ============================================================================ +15:13:11 FNo. Len. Field Value +15:13:11 ============================================================================ +15:13:11 [ 1] [ 4] [0210] +15:13:11 [ 2] [ 16] [6213545000438329] +15:13:11 [ 3] [ 6] [301000] +15:13:11 [ 4] [ 12] [000000000000] +15:13:11 [ 7] [ 10] [0320151329] +15:13:11 [ 11] [ 6] [207781] +15:13:11 [ 12] [ 6] [031140] +15:13:11 [ 13] [ 4] [0320] +15:13:11 [ 15] [ 4] [0320] +15:13:11 [ 18] [ 4] [6011] +15:13:11 [ 19] [ 3] [418] +15:13:11 [ 32] [ 6] [198901] +15:13:11 [ 35] [ 32] [6213545000438329=491212013832528] +15:13:11 [ 37] [ 12] [507915207781] +15:13:11 [ 38] [ 6] [986972] +15:13:11 [ 39] [ 2] [00] +15:13:11 [ 41] [ 8] [01529031] +15:13:11 [ 49] [ 3] [418] +15:13:11 [ 54] [ 40] [1001418C0003021309731002418C000302130973] +15:13:11 ============================================================================ +15:13:11 Calculate Source COMM Id = 5 +15:13:11 ============================================================================ +15:13:11 + + +waiting on router queue for slot.... +15:13:20 ============================================================================ +15:13:20 Slot Id : <48> +15:13:20 Transaction Type : REQUEST +15:13:20 Received From : +15:13:20 ============================================================================ +15:13:20 FNo. Len. Field Value +15:13:20 ============================================================================ +15:13:20 [ 1] [ 4] [0800] +15:13:20 [ 7] [ 10] [0320081226] +15:13:20 [ 11] [ 6] [156954] +15:13:20 [ 70] [ 3] [301] +15:13:20 ============================================================================ +15:13:20 + + +waiting on router queue for slot.... +15:13:20 Sending to : +15:13:20 ============================================================================ +15:13:20 ============================================================================ +15:13:20 Slot Id : <48> +15:13:20 Transaction Type : RESPONSE +15:13:20 Received From : +15:13:20 ============================================================================ +15:13:20 FNo. Len. Field Value +15:13:20 ============================================================================ +15:13:20 [ 1] [ 4] [0810] +15:13:20 [ 7] [ 10] [0320081226] +15:13:20 [ 11] [ 6] [156954] +15:13:20 [ 39] [ 2] [00] +15:13:20 [ 70] [ 3] [301] +15:13:20 ============================================================================ +15:13:20 Calculate Source COMM Id = 2 +15:13:20 ============================================================================ +15:13:20 + + +waiting on router queue for slot.... +15:13:35 ============================================================================ +15:13:35 Slot Id : <47> +15:13:35 Transaction Type : REQUEST +15:13:35 Received From : +15:13:35 ============================================================================ +15:13:35 FNo. Len. Field Value +15:13:35 ============================================================================ +15:13:35 [ 1] [ 4] [0800] +15:13:35 [ 7] [ 10] [0320081242] +15:13:35 [ 11] [ 6] [156955] +15:13:35 [ 70] [ 3] [301] +15:13:35 ============================================================================ +15:13:35 + + +waiting on router queue for slot.... +15:13:35 Sending to : +15:13:35 ============================================================================ +15:13:35 ============================================================================ +15:13:35 Slot Id : <47> +15:13:35 Transaction Type : RESPONSE +15:13:35 Received From : +15:13:35 ============================================================================ +15:13:35 FNo. Len. Field Value +15:13:35 ============================================================================ +15:13:35 [ 1] [ 4] [0810] +15:13:35 [ 7] [ 10] [0320081242] +15:13:35 [ 11] [ 6] [156955] +15:13:35 [ 39] [ 2] [00] +15:13:35 [ 70] [ 3] [301] +15:13:35 ============================================================================ +15:13:35 Calculate Source COMM Id = 2 +15:13:35 ============================================================================ +15:13:35 + + +waiting on router queue for slot.... +15:13:41 ============================================================================ +15:13:41 Slot Id : <78> +15:13:41 Transaction Type : REQUEST +15:13:41 Received From : +15:13:41 ============================================================================ +15:13:41 FNo. Len. Field Value +15:13:41 ============================================================================ +15:13:41 [ 1] [ 4] [0200] +15:13:41 [ 2] [ 16] [6688990040041962] +15:13:41 [ 3] [ 6] [010000] +15:13:41 [ 4] [ 12] [000060000000] +15:13:41 [ 7] [ 10] [0320151336] +15:13:41 [ 11] [ 6] [780527] +15:13:41 [ 12] [ 6] [151336] +15:13:41 [ 13] [ 4] [0320] +15:13:41 [ 15] [ 4] [0320] +15:13:41 [ 18] [ 4] [6011] +15:13:41 [ 22] [ 3] [900] +15:13:41 [ 25] [ 2] [02] +15:13:41 [ 28] [ 9] [D00002000] +15:13:41 [ 32] [ 6] [621354] +15:13:41 [ 35] [ 37] [6688990040041962=97121261514911700000] +15:13:41 [ 37] [ 12] [507905335167] +15:13:41 [ 41] [ 8] [05004700] +15:13:41 [ 42] [ 15] [NATIVE ] +15:13:41 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:13:41 [ 49] [ 3] [418] +15:13:41 [ 52] [ 16] [B8759AD14BAF81F7] +15:13:41 ============================================================================ +15:13:41 + + +waiting on router queue for slot.... +15:13:41 Sending to : +15:13:41 ============================================================================ +15:13:41 Sending to : +15:13:41 ============================================================================ +15:13:41 ============================================================================ +15:13:41 Slot Id : <78> +15:13:41 Transaction Type : REQUEST +15:13:41 Received From : +15:13:41 ============================================================================ +15:13:41 FNo. Len. Field Value +15:13:41 ============================================================================ +15:13:41 [ 1] [ 4] [0200] +15:13:41 [ 2] [ 16] [6688990040041962] +15:13:41 [ 3] [ 6] [010000] +15:13:41 [ 4] [ 12] [000060000000] +15:13:41 [ 7] [ 10] [0320151336] +15:13:41 [ 11] [ 6] [780527] +15:13:41 [ 12] [ 6] [151336] +15:13:41 [ 13] [ 4] [0320] +15:13:41 [ 15] [ 4] [0320] +15:13:41 [ 18] [ 4] [6011] +15:13:41 [ 22] [ 3] [900] +15:13:41 [ 25] [ 2] [02] +15:13:41 [ 28] [ 9] [D00002000] +15:13:41 [ 32] [ 6] [621354] +15:13:41 [ 35] [ 37] [6688990040041962=97121261514911700000] +15:13:41 [ 37] [ 12] [507905335167] +15:13:41 [ 41] [ 8] [05004700] +15:13:41 [ 42] [ 15] [NATIVE ] +15:13:41 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:13:41 [ 49] [ 3] [418] +15:13:41 [ 52] [ 16] [B8759AD14BAF81F7] +15:13:41 ============================================================================ +15:13:41 + + +waiting on router queue for slot.... +15:13:41 Sending to : +15:13:41 ============================================================================ +15:13:41 ============================================================================ +15:13:41 Slot Id : <78> +15:13:41 Transaction Type : REQUEST +15:13:41 Received From : +15:13:41 ============================================================================ +15:13:41 FNo. Len. Field Value +15:13:41 ============================================================================ +15:13:41 [ 1] [ 4] [0200] +15:13:41 [ 2] [ 16] [6688990040041962] +15:13:41 [ 3] [ 6] [010000] +15:13:41 [ 4] [ 12] [000060000000] +15:13:41 [ 7] [ 10] [0320151336] +15:13:41 [ 11] [ 6] [780527] +15:13:41 [ 12] [ 6] [151336] +15:13:41 [ 13] [ 4] [0320] +15:13:41 [ 15] [ 4] [0320] +15:13:41 [ 18] [ 4] [6011] +15:13:41 [ 22] [ 3] [900] +15:13:41 [ 25] [ 2] [02] +15:13:41 [ 28] [ 9] [D00002000] +15:13:41 [ 32] [ 6] [621354] +15:13:41 [ 35] [ 37] [6688990040041962=97121261514911700000] +15:13:41 [ 37] [ 12] [507905335167] +15:13:41 [ 41] [ 8] [05004700] +15:13:41 [ 42] [ 15] [NATIVE ] +15:13:41 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:13:41 [ 49] [ 3] [418] +15:13:41 [ 52] [ 16] [7A9734D5B23631B6] +15:13:41 ============================================================================ +15:13:41 + + +waiting on router queue for slot.... +15:13:41 Sending to : <4> +15:13:41 ============================================================================ +15:13:43 ============================================================================ +15:13:43 Slot Id : <78> +15:13:43 Transaction Type : RESPONSE +15:13:43 Received From : +15:13:43 ============================================================================ +15:13:43 FNo. Len. Field Value +15:13:43 ============================================================================ +15:13:43 [ 1] [ 4] [0210] +15:13:43 [ 2] [ 16] [6688990040041962] +15:13:43 [ 3] [ 6] [010000] +15:13:43 [ 4] [ 12] [000060000000] +15:13:43 [ 11] [ 6] [780527] +15:13:43 [ 12] [ 6] [151336] +15:13:43 [ 15] [ 4] [0320] +15:13:43 [ 18] [ 4] [6011] +15:13:43 [ 32] [ 6] [621354] +15:13:43 [ 35] [ 37] [6688990040041962=97121261514911700000] +15:13:43 [ 37] [ 12] [507905335167] +15:13:43 [ 38] [ 6] [717705] +15:13:43 [ 39] [ 2] [00] +15:13:43 [ 41] [ 8] [05004700] +15:13:43 [ 49] [ 3] [418] +15:13:43 [ 54] [ 20] [0002418C000457155023] +15:13:43 ============================================================================ +15:13:43 Sending to : +15:13:43 ============================================================================ +15:13:43 + + +waiting on router queue for slot.... +15:13:44 ============================================================================ +15:13:44 Slot Id : <78> +15:13:44 Transaction Type : RESPONSE +15:13:44 Received From : +15:13:44 ============================================================================ +15:13:44 FNo. Len. Field Value +15:13:44 ============================================================================ +15:13:44 [ 1] [ 4] [0210] +15:13:44 [ 2] [ 16] [6688990040041962] +15:13:44 [ 3] [ 6] [010000] +15:13:44 [ 4] [ 12] [000060000000] +15:13:44 [ 11] [ 6] [780527] +15:13:44 [ 12] [ 6] [151336] +15:13:44 [ 15] [ 4] [0320] +15:13:44 [ 18] [ 4] [6011] +15:13:44 [ 32] [ 6] [621354] +15:13:44 [ 35] [ 37] [6688990040041962=97121261514911700000] +15:13:44 [ 37] [ 12] [507905335167] +15:13:44 [ 38] [ 6] [717705] +15:13:44 [ 39] [ 2] [00] +15:13:44 [ 41] [ 8] [05004700] +15:13:44 [ 49] [ 3] [418] +15:13:44 [ 54] [ 20] [0002418C000457155023] +15:13:44 ============================================================================ +15:13:44 Calculate Source COMM Id = 0 +15:13:44 ============================================================================ +15:13:44 + + +waiting on router queue for slot.... +15:13:46 ============================================================================ +15:13:46 Slot Id : <54> +15:13:46 Transaction Type : REQUEST +15:13:46 Received From : +15:13:46 ============================================================================ +15:13:46 FNo. Len. Field Value +15:13:46 ============================================================================ +15:13:46 [ 1] [ 4] [0800] +15:13:46 [ 7] [ 10] [0320081253] +15:13:46 [ 11] [ 6] [156956] +15:13:46 [ 70] [ 3] [301] +15:13:46 ============================================================================ +15:13:46 + + +waiting on router queue for slot.... +15:13:46 Sending to : +15:13:46 ============================================================================ +15:13:46 ============================================================================ +15:13:46 Slot Id : <54> +15:13:46 Transaction Type : RESPONSE +15:13:46 Received From : +15:13:46 ============================================================================ +15:13:46 FNo. Len. Field Value +15:13:46 ============================================================================ +15:13:46 [ 1] [ 4] [0810] +15:13:46 [ 7] [ 10] [0320081253] +15:13:46 [ 11] [ 6] [156956] +15:13:46 [ 39] [ 2] [00] +15:13:46 [ 70] [ 3] [301] +15:13:46 ============================================================================ +15:13:46 Calculate Source COMM Id = 2 +15:13:46 ============================================================================ +15:13:46 + + +waiting on router queue for slot.... +15:13:49 ============================================================================ +15:13:49 Slot Id : <81> +15:13:49 Transaction Type : REQUEST +15:13:49 Received From : +15:13:49 ============================================================================ +15:13:49 FNo. Len. Field Value +15:13:49 ============================================================================ +15:13:49 [ 1] [ 4] [0200] +15:13:49 [ 2] [ 16] [6688990603040005] +15:13:49 [ 3] [ 6] [010000] +15:13:49 [ 4] [ 12] [000100000000] +15:13:49 [ 7] [ 10] [0320081255] +15:13:49 [ 11] [ 6] [269948] +15:13:49 [ 12] [ 6] [151255] +15:13:49 [ 13] [ 4] [0320] +15:13:49 [ 14] [ 4] [4404] +15:13:49 [ 15] [ 4] [0320] +15:13:49 [ 18] [ 4] [6011] +15:13:49 [ 19] [ 3] [418] +15:13:49 [ 22] [ 3] [021] +15:13:49 [ 25] [ 2] [01] +15:13:49 [ 28] [ 9] [D00002000] +15:13:49 [ 32] [ 6] [180893] +15:13:49 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:13:49 [ 37] [ 12] [507908269948] +15:13:49 [ 41] [ 8] [0369SLVL] +15:13:49 [ 42] [ 15] [999999 ] +15:13:49 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +15:13:49 [ 49] [ 3] [418] +15:13:49 [ 52] [ 16] [073CDBEAC2DE723E] +15:13:49 ============================================================================ +15:13:49 + + +waiting on router queue for slot.... +15:13:49 Sending to : +15:13:49 ============================================================================ +15:13:49 Sending to : +15:13:49 ============================================================================ +15:13:50 ============================================================================ +15:13:50 Slot Id : <81> +15:13:50 Transaction Type : REQUEST +15:13:50 Received From : +15:13:50 ============================================================================ +15:13:50 FNo. Len. Field Value +15:13:50 ============================================================================ +15:13:50 [ 1] [ 4] [0200] +15:13:50 [ 2] [ 16] [6688990603040005] +15:13:50 [ 3] [ 6] [010000] +15:13:50 [ 4] [ 12] [000100000000] +15:13:50 [ 7] [ 10] [0320081255] +15:13:50 [ 11] [ 6] [269948] +15:13:50 [ 12] [ 6] [151255] +15:13:50 [ 13] [ 4] [0320] +15:13:50 [ 14] [ 4] [4404] +15:13:50 [ 15] [ 4] [0320] +15:13:50 [ 18] [ 4] [6011] +15:13:50 [ 19] [ 3] [418] +15:13:50 [ 22] [ 3] [021] +15:13:50 [ 25] [ 2] [01] +15:13:50 [ 28] [ 9] [D00002000] +15:13:50 [ 32] [ 6] [180893] +15:13:50 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:13:50 [ 37] [ 12] [507908269948] +15:13:50 [ 41] [ 8] [0369SLVL] +15:13:50 [ 42] [ 15] [999999 ] +15:13:50 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +15:13:50 [ 49] [ 3] [418] +15:13:50 [ 52] [ 16] [073CDBEAC2DE723E] +15:13:50 ============================================================================ +15:13:50 + + +waiting on router queue for slot.... +15:13:50 Sending to : +15:13:50 ============================================================================ +15:13:50 ============================================================================ +15:13:50 Slot Id : <81> +15:13:50 Transaction Type : REQUEST +15:13:50 Received From : +15:13:50 ============================================================================ +15:13:50 FNo. Len. Field Value +15:13:50 ============================================================================ +15:13:50 [ 1] [ 4] [0200] +15:13:50 [ 2] [ 16] [6688990603040005] +15:13:50 [ 3] [ 6] [010000] +15:13:50 [ 4] [ 12] [000100000000] +15:13:50 [ 7] [ 10] [0320081255] +15:13:50 [ 11] [ 6] [269948] +15:13:50 [ 12] [ 6] [151255] +15:13:50 [ 13] [ 4] [0320] +15:13:50 [ 14] [ 4] [4404] +15:13:50 [ 15] [ 4] [0320] +15:13:50 [ 18] [ 4] [6011] +15:13:50 [ 19] [ 3] [418] +15:13:50 [ 22] [ 3] [021] +15:13:50 [ 25] [ 2] [01] +15:13:50 [ 28] [ 9] [D00002000] +15:13:50 [ 32] [ 6] [180893] +15:13:50 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:13:50 [ 37] [ 12] [507908269948] +15:13:50 [ 41] [ 8] [0369SLVL] +15:13:50 [ 42] [ 15] [999999 ] +15:13:50 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +15:13:50 [ 49] [ 3] [418] +15:13:50 [ 52] [ 16] [A6DB8AE3BE499A0A] +15:13:50 ============================================================================ +15:13:50 + + +waiting on router queue for slot.... +15:13:50 Sending to : <0> +15:13:50 ============================================================================ +15:13:50 ============================================================================ +15:13:50 Slot Id : <81> +15:13:50 Transaction Type : RESPONSE +15:13:50 Received From : +15:13:50 ============================================================================ +15:13:50 FNo. Len. Field Value +15:13:50 ============================================================================ +15:13:50 [ 1] [ 4] [0210] +15:13:50 [ 2] [ 16] [6688990603040005] +15:13:50 [ 3] [ 6] [010000] +15:13:50 [ 4] [ 12] [000100000000] +15:13:50 [ 7] [ 10] [0320081255] +15:13:50 [ 11] [ 6] [269948] +15:13:50 [ 12] [ 6] [151255] +15:13:50 [ 13] [ 4] [0320] +15:13:50 [ 15] [ 4] [0320] +15:13:50 [ 18] [ 4] [6011] +15:13:50 [ 19] [ 3] [418] +15:13:50 [ 22] [ 3] [021] +15:13:50 [ 32] [ 6] [180893] +15:13:50 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:13:50 [ 37] [ 12] [507908269948] +15:13:50 [ 39] [ 2] [14] +15:13:50 [ 41] [ 8] [0369SLVL] +15:13:50 [ 49] [ 3] [418] +15:13:50 ============================================================================ +15:13:50 Sending to : +15:13:50 ============================================================================ +15:13:50 + + +waiting on router queue for slot.... +15:13:51 ============================================================================ +15:13:51 Slot Id : <81> +15:13:51 Transaction Type : RESPONSE +15:13:51 Received From : +15:13:51 ============================================================================ +15:13:51 FNo. Len. Field Value +15:13:51 ============================================================================ +15:13:51 [ 1] [ 4] [0210] +15:13:51 [ 2] [ 16] [6688990603040005] +15:13:51 [ 3] [ 6] [010000] +15:13:51 [ 4] [ 12] [000100000000] +15:13:51 [ 7] [ 10] [0320081255] +15:13:51 [ 11] [ 6] [269948] +15:13:51 [ 12] [ 6] [151255] +15:13:51 [ 13] [ 4] [0320] +15:13:51 [ 15] [ 4] [0320] +15:13:51 [ 18] [ 4] [6011] +15:13:51 [ 19] [ 3] [418] +15:13:51 [ 22] [ 3] [021] +15:13:51 [ 32] [ 6] [180893] +15:13:51 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:13:51 [ 37] [ 12] [507908269948] +15:13:51 [ 39] [ 2] [14] +15:13:51 [ 41] [ 8] [0369SLVL] +15:13:51 [ 49] [ 3] [418] +15:13:51 ============================================================================ +15:13:51 Calculate Source COMM Id = 2 +15:13:51 ============================================================================ +15:13:51 + + +waiting on router queue for slot.... +15:13:57 ============================================================================ +15:13:57 Slot Id : <57> +15:13:57 Transaction Type : REQUEST +15:13:57 Received From : +15:13:57 ============================================================================ +15:13:57 FNo. Len. Field Value +15:13:57 ============================================================================ +15:13:57 [ 1] [ 4] [0200] +15:13:57 [ 2] [ 16] [1808931300034475] +15:13:57 [ 3] [ 6] [011000] +15:13:57 [ 4] [ 12] [000010000000] +15:13:57 [ 7] [ 10] [0320151353] +15:13:57 [ 11] [ 6] [780593] +15:13:57 [ 12] [ 6] [151353] +15:13:57 [ 13] [ 4] [0320] +15:13:57 [ 15] [ 4] [0320] +15:13:57 [ 18] [ 4] [6011] +15:13:57 [ 22] [ 3] [900] +15:13:57 [ 25] [ 2] [02] +15:13:57 [ 28] [ 9] [D00002000] +15:13:57 [ 32] [ 6] [621354] +15:13:57 [ 35] [ 27] [1808931300034475=1803500436] +15:13:57 [ 37] [ 12] [507904015471] +15:13:57 [ 41] [ 8] [01011700] +15:13:57 [ 42] [ 15] [NATIVE ] +15:13:57 [ 43] [ 40] [Souksavath College Xaythany LAO] +15:13:57 [ 49] [ 3] [418] +15:13:57 [ 52] [ 16] [2BD5DC3E06A8112F] +15:13:57 ============================================================================ +15:13:57 + + +waiting on router queue for slot.... +15:13:57 Sending to : +15:13:57 ============================================================================ +15:13:57 Sending to : +15:13:57 ============================================================================ +15:13:58 ============================================================================ +15:13:58 Slot Id : <57> +15:13:58 Transaction Type : REQUEST +15:13:58 Received From : +15:13:58 ============================================================================ +15:13:58 FNo. Len. Field Value +15:13:58 ============================================================================ +15:13:58 [ 1] [ 4] [0200] +15:13:58 [ 2] [ 16] [1808931300034475] +15:13:58 [ 3] [ 6] [011000] +15:13:58 [ 4] [ 12] [000010000000] +15:13:58 [ 7] [ 10] [0320151353] +15:13:58 [ 11] [ 6] [780593] +15:13:58 [ 12] [ 6] [151353] +15:13:58 [ 13] [ 4] [0320] +15:13:58 [ 15] [ 4] [0320] +15:13:58 [ 18] [ 4] [6011] +15:13:58 [ 22] [ 3] [900] +15:13:58 [ 25] [ 2] [02] +15:13:58 [ 28] [ 9] [D00002000] +15:13:58 [ 32] [ 6] [621354] +15:13:58 [ 35] [ 27] [1808931300034475=1803500436] +15:13:58 [ 37] [ 12] [507904015471] +15:13:58 [ 41] [ 8] [01011700] +15:13:58 [ 42] [ 15] [NATIVE ] +15:13:58 [ 43] [ 40] [Souksavath College Xaythany LAO] +15:13:58 [ 49] [ 3] [418] +15:13:58 [ 52] [ 16] [2BD5DC3E06A8112F] +15:13:58 ============================================================================ +15:13:58 + + +waiting on router queue for slot.... +15:13:58 Sending to : +15:13:58 ============================================================================ +15:13:58 ============================================================================ +15:13:58 Slot Id : <57> +15:13:58 Transaction Type : REQUEST +15:13:58 Received From : +15:13:58 ============================================================================ +15:13:58 FNo. Len. Field Value +15:13:58 ============================================================================ +15:13:58 [ 1] [ 4] [0200] +15:13:58 [ 2] [ 16] [1808931300034475] +15:13:58 [ 3] [ 6] [011000] +15:13:58 [ 4] [ 12] [000010000000] +15:13:58 [ 7] [ 10] [0320151353] +15:13:58 [ 11] [ 6] [780593] +15:13:58 [ 12] [ 6] [151353] +15:13:58 [ 13] [ 4] [0320] +15:13:58 [ 15] [ 4] [0320] +15:13:58 [ 18] [ 4] [6011] +15:13:58 [ 22] [ 3] [900] +15:13:58 [ 25] [ 2] [02] +15:13:58 [ 28] [ 9] [D00002000] +15:13:58 [ 32] [ 6] [621354] +15:13:58 [ 35] [ 27] [1808931300034475=1803500436] +15:13:58 [ 37] [ 12] [507904015471] +15:13:58 [ 41] [ 8] [01011700] +15:13:58 [ 42] [ 15] [NATIVE ] +15:13:58 [ 43] [ 40] [Souksavath College Xaythany LAO] +15:13:58 [ 49] [ 3] [418] +15:13:58 [ 52] [ 16] [6E661AB6059B6873] +15:13:58 ============================================================================ +15:13:58 + + +waiting on router queue for slot.... +15:13:58 Sending to : <2> +15:13:58 ============================================================================ +15:14:02 ============================================================================ +15:14:02 Slot Id : <57> +15:14:02 Transaction Type : RESPONSE +15:14:02 Received From : +15:14:02 ============================================================================ +15:14:02 FNo. Len. Field Value +15:14:02 ============================================================================ +15:14:02 [ 1] [ 4] [0210] +15:14:02 [ 2] [ 16] [1808931300034475] +15:14:02 [ 3] [ 6] [011000] +15:14:02 [ 4] [ 12] [000010000000] +15:14:02 [ 6] [ 12] [000010000000] +15:14:02 [ 7] [ 10] [0320151353] +15:14:02 [ 11] [ 6] [780593] +15:14:02 [ 12] [ 6] [151353] +15:14:02 [ 13] [ 4] [0320] +15:14:02 [ 18] [ 4] [6011] +15:14:02 [ 19] [ 3] [418] +15:14:02 [ 22] [ 3] [021] +15:14:02 [ 32] [ 6] [621354] +15:14:02 [ 35] [ 27] [1808931300034475=1803500436] +15:14:02 [ 37] [ 12] [507904015471] +15:14:02 [ 38] [ 6] [780593] +15:14:02 [ 39] [ 2] [00] +15:14:02 [ 41] [ 8] [01011700] +15:14:02 [ 49] [ 3] [418] +15:14:02 [ 52] [ 16] [6E661AB6059B6873] +15:14:02 [ 54] [ 20] [1001418C000022701200] +15:14:02 ============================================================================ +15:14:02 Sending to : +15:14:02 ============================================================================ +15:14:02 + + +waiting on router queue for slot.... +15:14:04 ============================================================================ +15:14:04 Slot Id : <57> +15:14:04 Transaction Type : RESPONSE +15:14:04 Received From : +15:14:04 ============================================================================ +15:14:04 FNo. Len. Field Value +15:14:04 ============================================================================ +15:14:04 [ 1] [ 4] [0210] +15:14:04 [ 2] [ 16] [1808931300034475] +15:14:04 [ 3] [ 6] [011000] +15:14:04 [ 4] [ 12] [000010000000] +15:14:04 [ 6] [ 12] [000010000000] +15:14:04 [ 7] [ 10] [0320151353] +15:14:04 [ 11] [ 6] [780593] +15:14:04 [ 12] [ 6] [151353] +15:14:04 [ 13] [ 4] [0320] +15:14:04 [ 18] [ 4] [6011] +15:14:04 [ 19] [ 3] [418] +15:14:04 [ 22] [ 3] [021] +15:14:04 [ 32] [ 6] [621354] +15:14:04 [ 35] [ 27] [1808931300034475=1803500436] +15:14:04 [ 37] [ 12] [507904015471] +15:14:04 [ 38] [ 6] [780593] +15:14:04 [ 39] [ 2] [00] +15:14:04 [ 41] [ 8] [01011700] +15:14:04 [ 49] [ 3] [418] +15:14:04 [ 52] [ 16] [6E661AB6059B6873] +15:14:04 [ 54] [ 20] [1001418C000022701200] +15:14:04 ============================================================================ +15:14:04 Calculate Source COMM Id = 0 +15:14:04 ============================================================================ +15:14:04 + + +waiting on router queue for slot.... +15:14:06 ============================================================================ +15:14:06 Slot Id : <24> +15:14:06 Transaction Type : REQUEST +15:14:06 Received From : +15:14:06 ============================================================================ +15:14:06 FNo. Len. Field Value +15:14:06 ============================================================================ +15:14:06 [ 1] [ 4] [0800] +15:14:06 [ 2] [ 5] [02531] +15:14:06 [ 3] [ 6] [579158] +15:14:06 [ 7] [ 10] [0320081406] +15:14:06 [ 11] [ 6] [807296] +15:14:06 [ 15] [ 10] [0320081406] +15:14:06 [ 37] [ 11] [57915807296] +15:14:06 [ 70] [ 3] [001] +15:14:06 ============================================================================ +15:14:06 + + +waiting on router queue for slot.... +15:14:06 ============================================================================ +15:14:06 Slot Id : <24> +15:14:06 Transaction Type : RESPONSE +15:14:06 Received From : +15:14:06 ============================================================================ +15:14:06 FNo. Len. Field Value +15:14:06 ============================================================================ +15:14:06 [ 1] [ 4] [0810] +15:14:06 [ 7] [ 10] [0320081406] +15:14:06 [ 11] [ 6] [807296] +15:14:06 [ 15] [ 4] [0320] +15:14:06 [ 37] [ 12] [57915807296] +15:14:06 [ 39] [ 2] [00] +15:14:06 [ 70] [ 3] [001] +15:14:06 ============================================================================ +15:14:06 Sending to : +15:14:06 ============================================================================ +15:14:06 + + +waiting on router queue for slot.... +15:14:11 ============================================================================ +15:14:11 Slot Id : <49> +15:14:11 Transaction Type : REQUEST +15:14:11 Received From : +15:14:11 ============================================================================ +15:14:11 FNo. Len. Field Value +15:14:11 ============================================================================ +15:14:11 [ 1] [ 4] [0800] +15:14:11 [ 7] [ 10] [0320081318] +15:14:11 [ 11] [ 6] [156957] +15:14:11 [ 70] [ 3] [301] +15:14:11 ============================================================================ +15:14:11 + + +waiting on router queue for slot.... +15:14:11 Sending to : +15:14:11 ============================================================================ +15:14:11 ============================================================================ +15:14:11 Slot Id : <49> +15:14:11 Transaction Type : RESPONSE +15:14:11 Received From : +15:14:11 ============================================================================ +15:14:11 FNo. Len. Field Value +15:14:11 ============================================================================ +15:14:11 [ 1] [ 4] [0810] +15:14:11 [ 7] [ 10] [0320081318] +15:14:11 [ 11] [ 6] [156957] +15:14:11 [ 39] [ 2] [00] +15:14:11 [ 70] [ 3] [301] +15:14:11 ============================================================================ +15:14:11 Calculate Source COMM Id = 2 +15:14:11 ============================================================================ +15:14:11 + + +waiting on router queue for slot.... +15:14:11 ============================================================================ +15:14:11 Slot Id : <42> +15:14:11 Transaction Type : REQUEST +15:14:11 Received From : +15:14:11 ============================================================================ +15:14:11 FNo. Len. Field Value +15:14:11 ============================================================================ +15:14:11 [ 1] [ 4] [0800] +15:14:11 [ 7] [ 10] [0320222559] +15:14:11 [ 11] [ 6] [152559] +15:14:11 [ 37] [ 12] [57915152559] +15:14:11 [ 70] [ 3] [301] +15:14:11 ============================================================================ +15:14:11 + + +waiting on router queue for slot.... +15:14:11 Sending to : +15:14:11 ============================================================================ +15:14:11 ============================================================================ +15:14:11 Slot Id : <42> +15:14:11 Transaction Type : RESPONSE +15:14:11 Received From : +15:14:11 ============================================================================ +15:14:11 FNo. Len. Field Value +15:14:11 ============================================================================ +15:14:11 [ 1] [ 4] [0810] +15:14:11 [ 7] [ 10] [0320222559] +15:14:11 [ 11] [ 6] [152559] +15:14:11 [ 37] [ 12] [579151525590] +15:14:11 [ 39] [ 2] [00] +15:14:11 [ 70] [ 3] [810] +15:14:11 ============================================================================ +15:14:11 Calculate Source COMM Id = 6 +15:14:11 ============================================================================ +15:14:11 + + +waiting on router queue for slot.... +15:14:22 ============================================================================ +15:14:22 Slot Id : <34> +15:14:22 Transaction Type : REQUEST +15:14:22 Received From : +15:14:22 ============================================================================ +15:14:22 FNo. Len. Field Value +15:14:22 ============================================================================ +15:14:22 [ 1] [ 4] [0800] +15:14:22 [ 7] [ 10] [0320081329] +15:14:22 [ 11] [ 6] [156958] +15:14:22 [ 70] [ 3] [301] +15:14:22 ============================================================================ +15:14:22 + + +waiting on router queue for slot.... +15:14:22 Sending to : +15:14:22 ============================================================================ +15:14:22 ============================================================================ +15:14:22 Slot Id : <34> +15:14:22 Transaction Type : RESPONSE +15:14:22 Received From : +15:14:22 ============================================================================ +15:14:22 FNo. Len. Field Value +15:14:22 ============================================================================ +15:14:22 [ 1] [ 4] [0810] +15:14:22 [ 7] [ 10] [0320081329] +15:14:22 [ 11] [ 6] [156958] +15:14:22 [ 39] [ 2] [00] +15:14:22 [ 70] [ 3] [301] +15:14:22 ============================================================================ +15:14:22 Calculate Source COMM Id = 2 +15:14:22 ============================================================================ +15:14:22 + + +waiting on router queue for slot.... +15:14:30 ============================================================================ +15:14:30 Slot Id : <88> +15:14:30 Transaction Type : REQUEST +15:14:30 Received From : +15:14:30 ============================================================================ +15:14:30 FNo. Len. Field Value +15:14:30 ============================================================================ +15:14:30 [ 1] [ 4] [0200] +15:14:30 [ 2] [ 16] [6688990106360009] +15:14:30 [ 3] [ 6] [012000] +15:14:30 [ 4] [ 12] [000040000000] +15:14:30 [ 7] [ 10] [0320151426] +15:14:30 [ 11] [ 6] [780708] +15:14:30 [ 12] [ 6] [151426] +15:14:30 [ 13] [ 4] [0320] +15:14:30 [ 15] [ 4] [0320] +15:14:30 [ 18] [ 4] [6011] +15:14:30 [ 22] [ 3] [900] +15:14:30 [ 25] [ 2] [02] +15:14:30 [ 28] [ 9] [D00002000] +15:14:30 [ 32] [ 6] [621354] +15:14:30 [ 35] [ 37] [6688990106360009=43121231000942700000] +15:14:30 [ 37] [ 12] [507904755367] +15:14:30 [ 41] [ 8] [07001100] +15:14:30 [ 42] [ 15] [NATIVE ] +15:14:30 [ 43] [ 40] [Industry Market Namtar LAO] +15:14:30 [ 49] [ 3] [418] +15:14:30 [ 52] [ 16] [41C25A601C65DE44] +15:14:30 ============================================================================ +15:14:30 + + +waiting on router queue for slot.... +15:14:30 Sending to : +15:14:30 ============================================================================ +15:14:30 Sending to : +15:14:30 ============================================================================ +15:14:31 ============================================================================ +15:14:31 Slot Id : <88> +15:14:31 Transaction Type : REQUEST +15:14:31 Received From : +15:14:31 ============================================================================ +15:14:31 FNo. Len. Field Value +15:14:31 ============================================================================ +15:14:31 [ 1] [ 4] [0200] +15:14:31 [ 2] [ 16] [6688990106360009] +15:14:31 [ 3] [ 6] [012000] +15:14:31 [ 4] [ 12] [000040000000] +15:14:31 [ 7] [ 10] [0320151426] +15:14:31 [ 11] [ 6] [780708] +15:14:31 [ 12] [ 6] [151426] +15:14:31 [ 13] [ 4] [0320] +15:14:31 [ 15] [ 4] [0320] +15:14:31 [ 18] [ 4] [6011] +15:14:31 [ 22] [ 3] [900] +15:14:31 [ 25] [ 2] [02] +15:14:31 [ 28] [ 9] [D00002000] +15:14:31 [ 32] [ 6] [621354] +15:14:31 [ 35] [ 37] [6688990106360009=43121231000942700000] +15:14:31 [ 37] [ 12] [507904755367] +15:14:31 [ 41] [ 8] [07001100] +15:14:31 [ 42] [ 15] [NATIVE ] +15:14:31 [ 43] [ 40] [Industry Market Namtar LAO] +15:14:31 [ 49] [ 3] [418] +15:14:31 [ 52] [ 16] [41C25A601C65DE44] +15:14:31 ============================================================================ +15:14:31 + + +waiting on router queue for slot.... +15:14:31 Sending to : +15:14:31 ============================================================================ +15:14:31 ============================================================================ +15:14:31 Slot Id : <88> +15:14:31 Transaction Type : REQUEST +15:14:31 Received From : +15:14:31 ============================================================================ +15:14:31 FNo. Len. Field Value +15:14:31 ============================================================================ +15:14:31 [ 1] [ 4] [0200] +15:14:31 [ 2] [ 16] [6688990106360009] +15:14:31 [ 3] [ 6] [012000] +15:14:31 [ 4] [ 12] [000040000000] +15:14:31 [ 7] [ 10] [0320151426] +15:14:31 [ 11] [ 6] [780708] +15:14:31 [ 12] [ 6] [151426] +15:14:31 [ 13] [ 4] [0320] +15:14:31 [ 15] [ 4] [0320] +15:14:31 [ 18] [ 4] [6011] +15:14:31 [ 22] [ 3] [900] +15:14:31 [ 25] [ 2] [02] +15:14:31 [ 28] [ 9] [D00002000] +15:14:31 [ 32] [ 6] [621354] +15:14:31 [ 35] [ 37] [6688990106360009=43121231000942700000] +15:14:31 [ 37] [ 12] [507904755367] +15:14:31 [ 41] [ 8] [07001100] +15:14:31 [ 42] [ 15] [NATIVE ] +15:14:31 [ 43] [ 40] [Industry Market Namtar LAO] +15:14:31 [ 49] [ 3] [418] +15:14:31 [ 52] [ 16] [BDD3F97384E9751E] +15:14:31 ============================================================================ +15:14:31 + + +waiting on router queue for slot.... +15:14:31 Sending to : <4> +15:14:31 ============================================================================ +15:14:33 ============================================================================ +15:14:33 Slot Id : <88> +15:14:33 Transaction Type : RESPONSE +15:14:33 Received From : +15:14:33 ============================================================================ +15:14:33 FNo. Len. Field Value +15:14:33 ============================================================================ +15:14:33 [ 1] [ 4] [0210] +15:14:33 [ 2] [ 16] [6688990106360009] +15:14:33 [ 3] [ 6] [012000] +15:14:33 [ 4] [ 12] [000040000000] +15:14:33 [ 11] [ 6] [780708] +15:14:33 [ 12] [ 6] [151426] +15:14:33 [ 15] [ 4] [0320] +15:14:33 [ 18] [ 4] [6011] +15:14:33 [ 32] [ 6] [621354] +15:14:33 [ 35] [ 37] [6688990106360009=43121231000942700000] +15:14:33 [ 37] [ 12] [507904755367] +15:14:33 [ 38] [ 6] [494027] +15:14:33 [ 39] [ 2] [00] +15:14:33 [ 41] [ 8] [07001100] +15:14:33 [ 49] [ 3] [418] +15:14:33 [ 54] [ 20] [2002418C000106443133] +15:14:33 ============================================================================ +15:14:33 Sending to : +15:14:33 ============================================================================ +15:14:33 + + +waiting on router queue for slot.... +15:14:34 ============================================================================ +15:14:34 Slot Id : <88> +15:14:34 Transaction Type : RESPONSE +15:14:34 Received From : +15:14:34 ============================================================================ +15:14:34 FNo. Len. Field Value +15:14:34 ============================================================================ +15:14:34 [ 1] [ 4] [0210] +15:14:34 [ 2] [ 16] [6688990106360009] +15:14:34 [ 3] [ 6] [012000] +15:14:34 [ 4] [ 12] [000040000000] +15:14:34 [ 11] [ 6] [780708] +15:14:34 [ 12] [ 6] [151426] +15:14:34 [ 15] [ 4] [0320] +15:14:34 [ 18] [ 4] [6011] +15:14:34 [ 32] [ 6] [621354] +15:14:34 [ 35] [ 37] [6688990106360009=43121231000942700000] +15:14:34 [ 37] [ 12] [507904755367] +15:14:34 [ 38] [ 6] [494027] +15:14:34 [ 39] [ 2] [00] +15:14:34 [ 41] [ 8] [07001100] +15:14:34 [ 49] [ 3] [418] +15:14:34 [ 54] [ 20] [2002418C000106443133] +15:14:34 ============================================================================ +15:14:34 Calculate Source COMM Id = 0 +15:14:34 ============================================================================ +15:14:34 + + +waiting on router queue for slot.... +15:14:36 ============================================================================ +15:14:36 Slot Id : <89> +15:14:36 Transaction Type : REQUEST +15:14:36 Received From : +15:14:36 ============================================================================ +15:14:36 FNo. Len. Field Value +15:14:36 ============================================================================ +15:14:36 [ 1] [ 4] [0200] +15:14:36 [ 2] [ 16] [6688990603040005] +15:14:36 [ 3] [ 6] [010000] +15:14:36 [ 4] [ 12] [000050000000] +15:14:36 [ 7] [ 10] [0320081343] +15:14:36 [ 11] [ 6] [269952] +15:14:36 [ 12] [ 6] [151343] +15:14:36 [ 13] [ 4] [0320] +15:14:36 [ 14] [ 4] [4404] +15:14:36 [ 15] [ 4] [0320] +15:14:36 [ 18] [ 4] [6011] +15:14:36 [ 19] [ 3] [418] +15:14:36 [ 22] [ 3] [021] +15:14:36 [ 25] [ 2] [01] +15:14:36 [ 28] [ 9] [D00002000] +15:14:36 [ 32] [ 6] [180893] +15:14:36 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:14:36 [ 37] [ 12] [507908269952] +15:14:36 [ 41] [ 8] [0369SLVL] +15:14:36 [ 42] [ 15] [999999 ] +15:14:36 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +15:14:36 [ 49] [ 3] [418] +15:14:36 [ 52] [ 16] [073CDBEAC2DE723E] +15:14:36 ============================================================================ +15:14:36 + + +waiting on router queue for slot.... +15:14:36 Sending to : +15:14:36 ============================================================================ +15:14:36 Sending to : +15:14:36 ============================================================================ +15:14:36 ============================================================================ +15:14:36 Slot Id : <89> +15:14:36 Transaction Type : REQUEST +15:14:36 Received From : +15:14:36 ============================================================================ +15:14:36 FNo. Len. Field Value +15:14:36 ============================================================================ +15:14:36 [ 1] [ 4] [0200] +15:14:36 [ 2] [ 16] [6688990603040005] +15:14:36 [ 3] [ 6] [010000] +15:14:36 [ 4] [ 12] [000050000000] +15:14:36 [ 7] [ 10] [0320081343] +15:14:36 [ 11] [ 6] [269952] +15:14:36 [ 12] [ 6] [151343] +15:14:36 [ 13] [ 4] [0320] +15:14:36 [ 14] [ 4] [4404] +15:14:36 [ 15] [ 4] [0320] +15:14:36 [ 18] [ 4] [6011] +15:14:36 [ 19] [ 3] [418] +15:14:36 [ 22] [ 3] [021] +15:14:36 [ 25] [ 2] [01] +15:14:36 [ 28] [ 9] [D00002000] +15:14:36 [ 32] [ 6] [180893] +15:14:36 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:14:36 [ 37] [ 12] [507908269952] +15:14:36 [ 41] [ 8] [0369SLVL] +15:14:36 [ 42] [ 15] [999999 ] +15:14:36 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +15:14:36 [ 49] [ 3] [418] +15:14:36 [ 52] [ 16] [073CDBEAC2DE723E] +15:14:36 ============================================================================ +15:14:36 + + +waiting on router queue for slot.... +15:14:36 Sending to : +15:14:36 ============================================================================ +15:14:36 ============================================================================ +15:14:36 Slot Id : <89> +15:14:36 Transaction Type : REQUEST +15:14:36 Received From : +15:14:36 ============================================================================ +15:14:36 FNo. Len. Field Value +15:14:36 ============================================================================ +15:14:36 [ 1] [ 4] [0200] +15:14:36 [ 2] [ 16] [6688990603040005] +15:14:36 [ 3] [ 6] [010000] +15:14:36 [ 4] [ 12] [000050000000] +15:14:36 [ 7] [ 10] [0320081343] +15:14:36 [ 11] [ 6] [269952] +15:14:36 [ 12] [ 6] [151343] +15:14:36 [ 13] [ 4] [0320] +15:14:36 [ 14] [ 4] [4404] +15:14:36 [ 15] [ 4] [0320] +15:14:36 [ 18] [ 4] [6011] +15:14:36 [ 19] [ 3] [418] +15:14:36 [ 22] [ 3] [021] +15:14:36 [ 25] [ 2] [01] +15:14:36 [ 28] [ 9] [D00002000] +15:14:36 [ 32] [ 6] [180893] +15:14:36 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:14:36 [ 37] [ 12] [507908269952] +15:14:36 [ 41] [ 8] [0369SLVL] +15:14:36 [ 42] [ 15] [999999 ] +15:14:36 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +15:14:36 [ 49] [ 3] [418] +15:14:36 [ 52] [ 16] [A6DB8AE3BE499A0A] +15:14:36 ============================================================================ +15:14:36 + + +waiting on router queue for slot.... +15:14:36 Sending to : <0> +15:14:36 ============================================================================ +15:14:37 ============================================================================ +15:14:37 Slot Id : <89> +15:14:37 Transaction Type : RESPONSE +15:14:37 Received From : +15:14:37 ============================================================================ +15:14:37 FNo. Len. Field Value +15:14:37 ============================================================================ +15:14:37 [ 1] [ 4] [0210] +15:14:37 [ 2] [ 16] [6688990603040005] +15:14:37 [ 3] [ 6] [010000] +15:14:37 [ 4] [ 12] [000050000000] +15:14:37 [ 7] [ 10] [0320081343] +15:14:37 [ 11] [ 6] [269952] +15:14:37 [ 12] [ 6] [151343] +15:14:37 [ 13] [ 4] [0320] +15:14:37 [ 15] [ 4] [0320] +15:14:37 [ 18] [ 4] [6011] +15:14:37 [ 19] [ 3] [418] +15:14:37 [ 22] [ 3] [021] +15:14:37 [ 32] [ 6] [180893] +15:14:37 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:14:37 [ 37] [ 12] [507908269952] +15:14:37 [ 39] [ 2] [14] +15:14:37 [ 41] [ 8] [0369SLVL] +15:14:37 [ 49] [ 3] [418] +15:14:37 ============================================================================ +15:14:37 Sending to : +15:14:37 ============================================================================ +15:14:37 + + +waiting on router queue for slot.... +15:14:37 ============================================================================ +15:14:37 Slot Id : <86> +15:14:37 Transaction Type : REQUEST +15:14:37 Received From : +15:14:37 ============================================================================ +15:14:37 FNo. Len. Field Value +15:14:37 ============================================================================ +15:14:37 [ 1] [ 4] [0800] +15:14:37 [ 7] [ 10] [0320081344] +15:14:37 [ 11] [ 6] [156959] +15:14:37 [ 70] [ 3] [301] +15:14:37 ============================================================================ +15:14:37 + + +waiting on router queue for slot.... +15:14:37 Sending to : +15:14:37 ============================================================================ +15:14:37 ============================================================================ +15:14:37 Slot Id : <86> +15:14:37 Transaction Type : RESPONSE +15:14:37 Received From : +15:14:37 ============================================================================ +15:14:37 FNo. Len. Field Value +15:14:37 ============================================================================ +15:14:37 [ 1] [ 4] [0810] +15:14:37 [ 7] [ 10] [0320081344] +15:14:37 [ 11] [ 6] [156959] +15:14:37 [ 39] [ 2] [00] +15:14:37 [ 70] [ 3] [301] +15:14:37 ============================================================================ +15:14:37 Calculate Source COMM Id = 2 +15:14:37 ============================================================================ +15:14:37 + + +waiting on router queue for slot.... +15:14:39 ============================================================================ +15:14:39 Slot Id : <89> +15:14:39 Transaction Type : RESPONSE +15:14:39 Received From : +15:14:39 ============================================================================ +15:14:39 FNo. Len. Field Value +15:14:39 ============================================================================ +15:14:39 [ 1] [ 4] [0210] +15:14:39 [ 2] [ 16] [6688990603040005] +15:14:39 [ 3] [ 6] [010000] +15:14:39 [ 4] [ 12] [000050000000] +15:14:39 [ 7] [ 10] [0320081343] +15:14:39 [ 11] [ 6] [269952] +15:14:39 [ 12] [ 6] [151343] +15:14:39 [ 13] [ 4] [0320] +15:14:39 [ 15] [ 4] [0320] +15:14:39 [ 18] [ 4] [6011] +15:14:39 [ 19] [ 3] [418] +15:14:39 [ 22] [ 3] [021] +15:14:39 [ 32] [ 6] [180893] +15:14:39 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:14:39 [ 37] [ 12] [507908269952] +15:14:39 [ 39] [ 2] [14] +15:14:39 [ 41] [ 8] [0369SLVL] +15:14:39 [ 49] [ 3] [418] +15:14:39 ============================================================================ +15:14:39 Calculate Source COMM Id = 2 +15:14:39 ============================================================================ +15:14:39 + + +waiting on router queue for slot.... +15:14:44 ============================================================================ +15:14:44 Slot Id : <79> +15:14:44 Transaction Type : REQUEST +15:14:44 Received From : +15:14:44 ============================================================================ +15:14:44 FNo. Len. Field Value +15:14:44 ============================================================================ +15:14:44 [ 1] [ 4] [0200] +15:14:44 [ 2] [ 16] [6688990105511404] +15:14:44 [ 3] [ 6] [301000] +15:14:44 [ 4] [ 12] [000000000000] +15:14:44 [ 7] [ 10] [0320151440] +15:14:44 [ 11] [ 6] [780758] +15:14:44 [ 12] [ 6] [151440] +15:14:44 [ 13] [ 4] [0320] +15:14:44 [ 15] [ 4] [0320] +15:14:44 [ 18] [ 4] [6011] +15:14:44 [ 22] [ 3] [900] +15:14:44 [ 25] [ 2] [02] +15:14:44 [ 28] [ 9] [D00000000] +15:14:44 [ 32] [ 6] [621354] +15:14:44 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:14:44 [ 37] [ 12] [507903032252] +15:14:44 [ 41] [ 8] [12002600] +15:14:44 [ 42] [ 15] [NATIVE ] +15:14:44 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +15:14:44 [ 49] [ 3] [418] +15:14:44 [ 52] [ 16] [CCEE5547B2654291] +15:14:44 ============================================================================ +15:14:44 + + +waiting on router queue for slot.... +15:14:44 Sending to : +15:14:44 ============================================================================ +15:14:44 Sending to : +15:14:44 ============================================================================ +15:14:45 ============================================================================ +15:14:45 Slot Id : <79> +15:14:45 Transaction Type : REQUEST +15:14:45 Received From : +15:14:45 ============================================================================ +15:14:45 FNo. Len. Field Value +15:14:45 ============================================================================ +15:14:45 [ 1] [ 4] [0200] +15:14:45 [ 2] [ 16] [6688990105511404] +15:14:45 [ 3] [ 6] [301000] +15:14:45 [ 4] [ 12] [000000000000] +15:14:45 [ 7] [ 10] [0320151440] +15:14:45 [ 11] [ 6] [780758] +15:14:45 [ 12] [ 6] [151440] +15:14:45 [ 13] [ 4] [0320] +15:14:45 [ 15] [ 4] [0320] +15:14:45 [ 18] [ 4] [6011] +15:14:45 [ 22] [ 3] [900] +15:14:45 [ 25] [ 2] [02] +15:14:45 [ 28] [ 9] [D00000000] +15:14:45 [ 32] [ 6] [621354] +15:14:45 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:14:45 [ 37] [ 12] [507903032252] +15:14:45 [ 41] [ 8] [12002600] +15:14:45 [ 42] [ 15] [NATIVE ] +15:14:45 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +15:14:45 [ 49] [ 3] [418] +15:14:45 [ 52] [ 16] [CCEE5547B2654291] +15:14:45 ============================================================================ +15:14:45 + + +waiting on router queue for slot.... +15:14:45 Sending to : +15:14:45 ============================================================================ +15:14:45 ============================================================================ +15:14:45 Slot Id : <79> +15:14:45 Transaction Type : REQUEST +15:14:45 Received From : +15:14:45 ============================================================================ +15:14:45 FNo. Len. Field Value +15:14:45 ============================================================================ +15:14:45 [ 1] [ 4] [0200] +15:14:45 [ 2] [ 16] [6688990105511404] +15:14:45 [ 3] [ 6] [301000] +15:14:45 [ 4] [ 12] [000000000000] +15:14:45 [ 7] [ 10] [0320151440] +15:14:45 [ 11] [ 6] [780758] +15:14:45 [ 12] [ 6] [151440] +15:14:45 [ 13] [ 4] [0320] +15:14:45 [ 15] [ 4] [0320] +15:14:45 [ 18] [ 4] [6011] +15:14:45 [ 22] [ 3] [900] +15:14:45 [ 25] [ 2] [02] +15:14:45 [ 28] [ 9] [D00000000] +15:14:45 [ 32] [ 6] [621354] +15:14:45 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:14:45 [ 37] [ 12] [507903032252] +15:14:45 [ 41] [ 8] [12002600] +15:14:45 [ 42] [ 15] [NATIVE ] +15:14:45 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +15:14:45 [ 49] [ 3] [418] +15:14:45 [ 52] [ 16] [9D4889D79A877A12] +15:14:45 ============================================================================ +15:14:45 + + +waiting on router queue for slot.... +15:14:45 Sending to : <4> +15:14:45 ============================================================================ +15:14:45 ============================================================================ +15:14:45 Slot Id : <84> +15:14:45 Transaction Type : REQUEST +15:14:45 Received From : +15:14:45 ============================================================================ +15:14:45 FNo. Len. Field Value +15:14:45 ============================================================================ +15:14:45 [ 1] [ 4] [0200] +15:14:45 [ 2] [ 16] [1808930500013867] +15:14:45 [ 3] [ 6] [300000] +15:14:45 [ 4] [ 12] [000000000000] +15:14:45 [ 7] [ 10] [0320151235] +15:14:45 [ 11] [ 6] [949694] +15:14:45 [ 12] [ 6] [151235] +15:14:45 [ 13] [ 4] [0320] +15:14:45 [ 15] [ 4] [0320] +15:14:45 [ 18] [ 4] [6011] +15:14:45 [ 19] [ 3] [418] +15:14:45 [ 22] [ 3] [021] +15:14:45 [ 25] [ 2] [01] +15:14:45 [ 28] [ 9] [D00000000] +15:14:45 [ 32] [ 6] [668899] +15:14:45 [ 35] [ 27] [1808930500013867=1803500896] +15:14:45 [ 37] [ 12] [507901489336] +15:14:45 [ 41] [ 8] [03515001] +15:14:45 [ 42] [ 15] [APT ] +15:14:45 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +15:14:45 [ 49] [ 3] [418] +15:14:45 [ 52] [ 16] [7D5B287918AD4D33] +15:14:45 ============================================================================ +15:14:45 + + +waiting on router queue for slot.... +15:14:45 Sending to : +15:14:45 ============================================================================ +15:14:45 Sending to : +15:14:45 ============================================================================ +15:14:45 ============================================================================ +15:14:45 Slot Id : <84> +15:14:45 Transaction Type : REQUEST +15:14:45 Received From : +15:14:45 ============================================================================ +15:14:45 FNo. Len. Field Value +15:14:45 ============================================================================ +15:14:45 [ 1] [ 4] [0200] +15:14:45 [ 2] [ 16] [1808930500013867] +15:14:45 [ 3] [ 6] [300000] +15:14:45 [ 4] [ 12] [000000000000] +15:14:45 [ 7] [ 10] [0320151235] +15:14:45 [ 11] [ 6] [949694] +15:14:45 [ 12] [ 6] [151235] +15:14:45 [ 13] [ 4] [0320] +15:14:45 [ 15] [ 4] [0320] +15:14:45 [ 18] [ 4] [6011] +15:14:45 [ 19] [ 3] [418] +15:14:45 [ 22] [ 3] [021] +15:14:45 [ 25] [ 2] [01] +15:14:45 [ 28] [ 9] [D00000000] +15:14:45 [ 32] [ 6] [668899] +15:14:45 [ 35] [ 27] [1808930500013867=1803500896] +15:14:45 [ 37] [ 12] [507901489336] +15:14:45 [ 41] [ 8] [03515001] +15:14:45 [ 42] [ 15] [APT ] +15:14:45 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +15:14:45 [ 49] [ 3] [418] +15:14:45 [ 52] [ 16] [7D5B287918AD4D33] +15:14:45 ============================================================================ +15:14:45 + + +waiting on router queue for slot.... +15:14:45 Sending to : +15:14:45 ============================================================================ +15:14:45 ============================================================================ +15:14:45 Slot Id : <84> +15:14:45 Transaction Type : REQUEST +15:14:45 Received From : +15:14:45 ============================================================================ +15:14:45 FNo. Len. Field Value +15:14:45 ============================================================================ +15:14:45 [ 1] [ 4] [0200] +15:14:45 [ 2] [ 16] [1808930500013867] +15:14:45 [ 3] [ 6] [300000] +15:14:45 [ 4] [ 12] [000000000000] +15:14:45 [ 7] [ 10] [0320151235] +15:14:45 [ 11] [ 6] [949694] +15:14:45 [ 12] [ 6] [151235] +15:14:45 [ 13] [ 4] [0320] +15:14:45 [ 15] [ 4] [0320] +15:14:45 [ 18] [ 4] [6011] +15:14:45 [ 19] [ 3] [418] +15:14:45 [ 22] [ 3] [021] +15:14:45 [ 25] [ 2] [01] +15:14:45 [ 28] [ 9] [D00000000] +15:14:45 [ 32] [ 6] [668899] +15:14:45 [ 35] [ 27] [1808930500013867=1803500896] +15:14:45 [ 37] [ 12] [507901489336] +15:14:45 [ 41] [ 8] [03515001] +15:14:45 [ 42] [ 15] [APT ] +15:14:45 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +15:14:45 [ 49] [ 3] [418] +15:14:45 [ 52] [ 16] [EC0E6C1012A5A0F5] +15:14:45 ============================================================================ +15:14:45 + + +waiting on router queue for slot.... +15:14:45 Sending to : <2> +15:14:45 ============================================================================ +15:14:46 ============================================================================ +15:14:46 Slot Id : <79> +15:14:46 Transaction Type : RESPONSE +15:14:46 Received From : +15:14:46 ============================================================================ +15:14:46 FNo. Len. Field Value +15:14:46 ============================================================================ +15:14:46 [ 1] [ 4] [0210] +15:14:46 [ 2] [ 16] [6688990105511404] +15:14:46 [ 3] [ 6] [301000] +15:14:46 [ 4] [ 12] [000000000000] +15:14:46 [ 11] [ 6] [780758] +15:14:46 [ 12] [ 6] [151440] +15:14:46 [ 15] [ 4] [0320] +15:14:46 [ 18] [ 4] [6011] +15:14:46 [ 32] [ 6] [621354] +15:14:46 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:14:46 [ 37] [ 12] [507903032252] +15:14:46 [ 38] [ 6] [360101] +15:14:46 [ 39] [ 2] [00] +15:14:46 [ 41] [ 8] [12002600] +15:14:46 [ 49] [ 3] [418] +15:14:46 [ 54] [ 20] [1002418C000124962402] +15:14:46 ============================================================================ +15:14:46 Sending to : +15:14:46 ============================================================================ +15:14:46 + + +waiting on router queue for slot.... +15:14:47 ============================================================================ +15:14:47 Slot Id : <79> +15:14:47 Transaction Type : RESPONSE +15:14:47 Received From : +15:14:47 ============================================================================ +15:14:47 FNo. Len. Field Value +15:14:47 ============================================================================ +15:14:47 [ 1] [ 4] [0210] +15:14:47 [ 2] [ 16] [6688990105511404] +15:14:47 [ 3] [ 6] [301000] +15:14:47 [ 4] [ 12] [000000000000] +15:14:47 [ 11] [ 6] [780758] +15:14:47 [ 12] [ 6] [151440] +15:14:47 [ 15] [ 4] [0320] +15:14:47 [ 18] [ 4] [6011] +15:14:47 [ 32] [ 6] [621354] +15:14:47 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:14:47 [ 37] [ 12] [507903032252] +15:14:47 [ 38] [ 6] [360101] +15:14:47 [ 39] [ 2] [00] +15:14:47 [ 41] [ 8] [12002600] +15:14:47 [ 49] [ 3] [418] +15:14:47 [ 54] [ 20] [1002418C000124962402] +15:14:47 ============================================================================ +15:14:47 Calculate Source COMM Id = 0 +15:14:47 ============================================================================ +15:14:47 + + +waiting on router queue for slot.... +15:14:50 ============================================================================ +15:14:50 Slot Id : <84> +15:14:50 Transaction Type : RESPONSE +15:14:50 Received From : +15:14:50 ============================================================================ +15:14:50 FNo. Len. Field Value +15:14:50 ============================================================================ +15:14:50 [ 1] [ 4] [0210] +15:14:50 [ 2] [ 16] [1808930500013867] +15:14:50 [ 3] [ 6] [300000] +15:14:50 [ 7] [ 10] [0320151235] +15:14:50 [ 11] [ 6] [949694] +15:14:50 [ 12] [ 6] [151235] +15:14:50 [ 13] [ 4] [0320] +15:14:50 [ 14] [ 4] [1803] +15:14:50 [ 19] [ 3] [418] +15:14:50 [ 32] [ 6] [668899] +15:14:50 [ 37] [ 12] [507901489336] +15:14:50 [ 38] [ 6] [949694] +15:14:50 [ 39] [ 2] [00] +15:14:50 [ 41] [ 8] [03515001] +15:14:50 [ 49] [ 3] [418] +15:14:50 [ 52] [ 16] [EC0E6C1012A5A0F5] +15:14:50 [ 54] [ 20] [0002418C000006159200] +15:14:50 ============================================================================ +15:14:50 Sending to : +15:14:50 ============================================================================ +15:14:50 + + +waiting on router queue for slot.... +15:14:52 ============================================================================ +15:14:52 Slot Id : <84> +15:14:52 Transaction Type : RESPONSE +15:14:52 Received From : +15:14:52 ============================================================================ +15:14:52 FNo. Len. Field Value +15:14:52 ============================================================================ +15:14:52 [ 1] [ 4] [0210] +15:14:52 [ 2] [ 16] [1808930500013867] +15:14:52 [ 3] [ 6] [300000] +15:14:52 [ 7] [ 10] [0320151235] +15:14:52 [ 11] [ 6] [949694] +15:14:52 [ 12] [ 6] [151235] +15:14:52 [ 13] [ 4] [0320] +15:14:52 [ 14] [ 4] [1803] +15:14:52 [ 19] [ 3] [418] +15:14:52 [ 32] [ 6] [668899] +15:14:52 [ 37] [ 12] [507901489336] +15:14:52 [ 38] [ 6] [949694] +15:14:52 [ 39] [ 2] [00] +15:14:52 [ 41] [ 8] [03515001] +15:14:52 [ 49] [ 3] [418] +15:14:52 [ 52] [ 16] [EC0E6C1012A5A0F5] +15:14:52 [ 54] [ 20] [0002418C000006159200] +15:14:52 ============================================================================ +15:14:52 Calculate Source COMM Id = 4 +15:14:52 ============================================================================ +15:14:52 + + +waiting on router queue for slot.... +15:14:55 ============================================================================ +15:14:55 Slot Id : <59> +15:14:55 Transaction Type : REQUEST +15:14:55 Received From : +15:14:55 ============================================================================ +15:14:55 FNo. Len. Field Value +15:14:55 ============================================================================ +15:14:55 [ 1] [ 4] [0800] +15:14:55 [ 7] [ 10] [0320082242] +15:14:55 [ 11] [ 6] [007230] +15:14:55 [ 37] [ 12] [57915007230] +15:14:55 [ 70] [ 3] [301] +15:14:55 ============================================================================ +15:14:55 + + +waiting on router queue for slot.... +15:14:55 Sending to : +15:14:55 ============================================================================ +15:14:55 ============================================================================ +15:14:55 Slot Id : <59> +15:14:55 Transaction Type : RESPONSE +15:14:55 Received From : +15:14:55 ============================================================================ +15:14:55 FNo. Len. Field Value +15:14:55 ============================================================================ +15:14:55 [ 1] [ 4] [0810] +15:14:55 [ 7] [ 10] [0320082242] +15:14:55 [ 11] [ 6] [007230] +15:14:55 [ 37] [ 12] [579150072300] +15:14:55 [ 39] [ 2] [00] +15:14:55 [ 70] [ 3] [810] +15:14:55 ============================================================================ +15:14:55 Calculate Source COMM Id = 1 +15:14:55 ============================================================================ +15:14:55 + + +waiting on router queue for slot.... +15:14:59 ============================================================================ +15:14:59 Slot Id : <5> +15:14:59 Transaction Type : REQUEST +15:14:59 Received From : +15:14:59 ============================================================================ +15:14:59 FNo. Len. Field Value +15:14:59 ============================================================================ +15:14:59 [ 1] [ 4] [0800] +15:14:59 [ 7] [ 10] [0320081406] +15:14:59 [ 11] [ 6] [156960] +15:14:59 [ 70] [ 3] [301] +15:14:59 ============================================================================ +15:14:59 + + +waiting on router queue for slot.... +15:14:59 Sending to : +15:14:59 ============================================================================ +15:14:59 ============================================================================ +15:14:59 Slot Id : <5> +15:14:59 Transaction Type : RESPONSE +15:14:59 Received From : +15:14:59 ============================================================================ +15:14:59 FNo. Len. Field Value +15:14:59 ============================================================================ +15:14:59 [ 1] [ 4] [0810] +15:14:59 [ 7] [ 10] [0320081406] +15:14:59 [ 11] [ 6] [156960] +15:14:59 [ 39] [ 2] [00] +15:14:59 [ 70] [ 3] [301] +15:14:59 ============================================================================ +15:14:59 Calculate Source COMM Id = 2 +15:14:59 ============================================================================ +15:14:59 + + +waiting on router queue for slot.... +15:15:08 ============================================================================ +15:15:08 Slot Id : <67> +15:15:08 Transaction Type : REQUEST +15:15:08 Received From : +15:15:08 ============================================================================ +15:15:08 FNo. Len. Field Value +15:15:08 ============================================================================ +15:15:08 [ 1] [ 4] [0800] +15:15:08 [ 2] [ 5] [02531] +15:15:08 [ 3] [ 6] [579158] +15:15:08 [ 7] [ 10] [0320081508] +15:15:08 [ 11] [ 6] [807297] +15:15:08 [ 15] [ 10] [0320081508] +15:15:08 [ 37] [ 11] [57915807297] +15:15:08 [ 70] [ 3] [001] +15:15:08 ============================================================================ +15:15:08 + + +waiting on router queue for slot.... +15:15:08 ============================================================================ +15:15:08 Slot Id : <67> +15:15:08 Transaction Type : RESPONSE +15:15:08 Received From : +15:15:08 ============================================================================ +15:15:08 FNo. Len. Field Value +15:15:08 ============================================================================ +15:15:08 [ 1] [ 4] [0810] +15:15:08 [ 7] [ 10] [0320081508] +15:15:08 [ 11] [ 6] [807297] +15:15:08 [ 15] [ 4] [0320] +15:15:08 [ 37] [ 12] [57915807297] +15:15:08 [ 39] [ 2] [00] +15:15:08 [ 70] [ 3] [001] +15:15:08 ============================================================================ +15:15:08 Sending to : +15:15:08 ============================================================================ +15:15:08 + + +waiting on router queue for slot.... +15:15:11 ============================================================================ +15:15:11 Slot Id : <62> +15:15:11 Transaction Type : REQUEST +15:15:11 Received From : +15:15:11 ============================================================================ +15:15:11 FNo. Len. Field Value +15:15:11 ============================================================================ +15:15:11 [ 1] [ 4] [0800] +15:15:11 [ 7] [ 10] [0320081417] +15:15:11 [ 11] [ 6] [156961] +15:15:11 [ 70] [ 3] [301] +15:15:11 ============================================================================ +15:15:11 + + +waiting on router queue for slot.... +15:15:11 Sending to : +15:15:11 ============================================================================ +15:15:11 ============================================================================ +15:15:11 Slot Id : <62> +15:15:11 Transaction Type : RESPONSE +15:15:11 Received From : +15:15:11 ============================================================================ +15:15:11 FNo. Len. Field Value +15:15:11 ============================================================================ +15:15:11 [ 1] [ 4] [0810] +15:15:11 [ 7] [ 10] [0320081417] +15:15:11 [ 11] [ 6] [156961] +15:15:11 [ 39] [ 2] [00] +15:15:11 [ 70] [ 3] [301] +15:15:11 ============================================================================ +15:15:11 Calculate Source COMM Id = 2 +15:15:11 ============================================================================ +15:15:11 + + +waiting on router queue for slot.... +15:15:16 ============================================================================ +15:15:16 Slot Id : <51> +15:15:16 Transaction Type : REQUEST +15:15:16 Received From : +15:15:16 ============================================================================ +15:15:16 FNo. Len. Field Value +15:15:16 ============================================================================ +15:15:16 [ 1] [ 4] [0200] +15:15:16 [ 2] [ 16] [6213541000612047] +15:15:16 [ 3] [ 6] [301000] +15:15:16 [ 7] [ 10] [0320081423] +15:15:16 [ 11] [ 6] [269954] +15:15:16 [ 12] [ 6] [151423] +15:15:16 [ 13] [ 4] [0320] +15:15:16 [ 14] [ 4] [4912] +15:15:16 [ 15] [ 4] [0320] +15:15:16 [ 18] [ 4] [6011] +15:15:16 [ 19] [ 3] [418] +15:15:16 [ 22] [ 3] [021] +15:15:16 [ 25] [ 2] [01] +15:15:16 [ 32] [ 6] [180893] +15:15:16 [ 35] [ 32] [6213541000612047=491212011204309] +15:15:16 [ 37] [ 12] [507908269954] +15:15:16 [ 41] [ 8] [0441VT52] +15:15:16 [ 42] [ 15] [999999 ] +15:15:16 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:15:16 [ 49] [ 3] [418] +15:15:16 [ 52] [ 16] [5ACBA62F34E98C19] +15:15:16 ============================================================================ +15:15:16 + + +waiting on router queue for slot.... +15:15:16 Sending to : +15:15:16 ============================================================================ +15:15:16 Sending to : +15:15:16 ============================================================================ +15:15:16 ============================================================================ +15:15:16 Slot Id : <39> +15:15:16 Transaction Type : REQUEST +15:15:16 Received From : +15:15:16 ============================================================================ +15:15:16 FNo. Len. Field Value +15:15:16 ============================================================================ +15:15:16 [ 1] [ 4] [0800] +15:15:16 [ 7] [ 10] [0320222704] +15:15:16 [ 11] [ 6] [152704] +15:15:16 [ 37] [ 12] [57915152704] +15:15:16 [ 70] [ 3] [301] +15:15:16 ============================================================================ +15:15:16 + + +waiting on router queue for slot.... +15:15:16 Sending to : +15:15:16 ============================================================================ +15:15:16 ============================================================================ +15:15:16 Slot Id : <39> +15:15:16 Transaction Type : RESPONSE +15:15:16 Received From : +15:15:16 ============================================================================ +15:15:16 FNo. Len. Field Value +15:15:16 ============================================================================ +15:15:16 [ 1] [ 4] [0810] +15:15:16 [ 7] [ 10] [0320222704] +15:15:16 [ 11] [ 6] [152704] +15:15:16 [ 37] [ 12] [579151527040] +15:15:16 [ 39] [ 2] [00] +15:15:16 [ 70] [ 3] [810] +15:15:16 ============================================================================ +15:15:16 Calculate Source COMM Id = 6 +15:15:16 ============================================================================ +15:15:16 + + +waiting on router queue for slot.... +15:15:17 ============================================================================ +15:15:17 Slot Id : <51> +15:15:17 Transaction Type : REQUEST +15:15:17 Received From : +15:15:17 ============================================================================ +15:15:17 FNo. Len. Field Value +15:15:17 ============================================================================ +15:15:17 [ 1] [ 4] [0200] +15:15:17 [ 2] [ 16] [6213541000612047] +15:15:17 [ 3] [ 6] [301000] +15:15:17 [ 7] [ 10] [0320081423] +15:15:17 [ 11] [ 6] [269954] +15:15:17 [ 12] [ 6] [151423] +15:15:17 [ 13] [ 4] [0320] +15:15:17 [ 14] [ 4] [4912] +15:15:17 [ 15] [ 4] [0320] +15:15:17 [ 18] [ 4] [6011] +15:15:17 [ 19] [ 3] [418] +15:15:17 [ 22] [ 3] [021] +15:15:17 [ 25] [ 2] [01] +15:15:17 [ 32] [ 6] [180893] +15:15:17 [ 35] [ 32] [6213541000612047=491212011204309] +15:15:17 [ 37] [ 12] [507908269954] +15:15:17 [ 41] [ 8] [0441VT52] +15:15:17 [ 42] [ 15] [999999 ] +15:15:17 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:15:17 [ 49] [ 3] [418] +15:15:17 [ 52] [ 16] [5ACBA62F34E98C19] +15:15:17 ============================================================================ +15:15:17 + + +waiting on router queue for slot.... +15:15:17 Sending to : +15:15:17 ============================================================================ +15:15:17 ============================================================================ +15:15:17 Slot Id : <51> +15:15:17 Transaction Type : REQUEST +15:15:17 Received From : +15:15:17 ============================================================================ +15:15:17 FNo. Len. Field Value +15:15:17 ============================================================================ +15:15:17 [ 1] [ 4] [0200] +15:15:17 [ 2] [ 16] [6213541000612047] +15:15:17 [ 3] [ 6] [301000] +15:15:17 [ 7] [ 10] [0320081423] +15:15:17 [ 11] [ 6] [269954] +15:15:17 [ 12] [ 6] [151423] +15:15:17 [ 13] [ 4] [0320] +15:15:17 [ 14] [ 4] [4912] +15:15:17 [ 15] [ 4] [0320] +15:15:17 [ 18] [ 4] [6011] +15:15:17 [ 19] [ 3] [418] +15:15:17 [ 22] [ 3] [021] +15:15:17 [ 25] [ 2] [01] +15:15:17 [ 32] [ 6] [180893] +15:15:17 [ 35] [ 32] [6213541000612047=491212011204309] +15:15:17 [ 37] [ 12] [507908269954] +15:15:17 [ 41] [ 8] [0441VT52] +15:15:17 [ 42] [ 15] [999999 ] +15:15:17 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:15:17 [ 49] [ 3] [418] +15:15:17 [ 52] [ 16] [4CF30DF06DB0F713] +15:15:17 ============================================================================ +15:15:17 + + +waiting on router queue for slot.... +15:15:17 Sending to : <0> +15:15:17 ============================================================================ +15:15:17 ============================================================================ +15:15:17 Slot Id : <58> +15:15:17 Transaction Type : REQUEST +15:15:17 Received From : +15:15:17 ============================================================================ +15:15:17 FNo. Len. Field Value +15:15:17 ============================================================================ +15:15:17 [ 1] [ 4] [0200] +15:15:17 [ 2] [ 16] [6688990104677404] +15:15:17 [ 3] [ 6] [301000] +15:15:17 [ 4] [ 12] [000000000000] +15:15:17 [ 7] [ 10] [0320151512] +15:15:17 [ 11] [ 6] [780852] +15:15:17 [ 12] [ 6] [151512] +15:15:17 [ 13] [ 4] [0320] +15:15:17 [ 15] [ 4] [0320] +15:15:17 [ 18] [ 4] [6011] +15:15:17 [ 22] [ 3] [900] +15:15:17 [ 25] [ 2] [02] +15:15:17 [ 28] [ 9] [D00000000] +15:15:17 [ 32] [ 6] [621354] +15:15:17 [ 35] [ 37] [6688990104677404=43051231740436700000] +15:15:17 [ 37] [ 12] [507904789449] +15:15:17 [ 41] [ 8] [07001400] +15:15:17 [ 42] [ 15] [NATIVE ] +15:15:17 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +15:15:17 [ 49] [ 3] [418] +15:15:17 [ 52] [ 16] [55B28ADB6E0BE6C9] +15:15:17 ============================================================================ +15:15:17 + + +waiting on router queue for slot.... +15:15:17 Sending to : +15:15:17 ============================================================================ +15:15:17 Sending to : +15:15:17 ============================================================================ +15:15:17 ============================================================================ +15:15:17 Slot Id : <51> +15:15:17 Transaction Type : RESPONSE +15:15:17 Received From : +15:15:17 ============================================================================ +15:15:17 FNo. Len. Field Value +15:15:17 ============================================================================ +15:15:17 [ 1] [ 4] [0210] +15:15:17 [ 2] [ 16] [6213541000612047] +15:15:17 [ 3] [ 6] [301000] +15:15:17 [ 4] [ 12] [000000000000] +15:15:17 [ 7] [ 10] [0320081423] +15:15:17 [ 11] [ 6] [269954] +15:15:17 [ 12] [ 6] [151423] +15:15:17 [ 13] [ 4] [0320] +15:15:17 [ 15] [ 4] [0320] +15:15:17 [ 18] [ 4] [6011] +15:15:17 [ 19] [ 3] [418] +15:15:17 [ 32] [ 6] [180893] +15:15:17 [ 35] [ 32] [6213541000612047=491212011204309] +15:15:17 [ 37] [ 12] [507908269954] +15:15:17 [ 38] [ 6] [559612] +15:15:17 [ 39] [ 2] [00] +15:15:17 [ 41] [ 8] [0441VT52] +15:15:17 [ 49] [ 3] [418] +15:15:17 [ 54] [ 40] [1001418C0000812835271002418C000081283527] +15:15:17 ============================================================================ +15:15:17 Sending to : +15:15:17 ============================================================================ +15:15:17 + + +waiting on router queue for slot.... +15:15:17 ============================================================================ +15:15:17 Slot Id : <58> +15:15:17 Transaction Type : REQUEST +15:15:17 Received From : +15:15:17 ============================================================================ +15:15:17 FNo. Len. Field Value +15:15:17 ============================================================================ +15:15:17 [ 1] [ 4] [0200] +15:15:17 [ 2] [ 16] [6688990104677404] +15:15:17 [ 3] [ 6] [301000] +15:15:17 [ 4] [ 12] [000000000000] +15:15:17 [ 7] [ 10] [0320151512] +15:15:17 [ 11] [ 6] [780852] +15:15:17 [ 12] [ 6] [151512] +15:15:17 [ 13] [ 4] [0320] +15:15:17 [ 15] [ 4] [0320] +15:15:17 [ 18] [ 4] [6011] +15:15:17 [ 22] [ 3] [900] +15:15:17 [ 25] [ 2] [02] +15:15:17 [ 28] [ 9] [D00000000] +15:15:17 [ 32] [ 6] [621354] +15:15:17 [ 35] [ 37] [6688990104677404=43051231740436700000] +15:15:17 [ 37] [ 12] [507904789449] +15:15:17 [ 41] [ 8] [07001400] +15:15:17 [ 42] [ 15] [NATIVE ] +15:15:17 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +15:15:17 [ 49] [ 3] [418] +15:15:17 [ 52] [ 16] [55B28ADB6E0BE6C9] +15:15:17 ============================================================================ +15:15:17 + + +waiting on router queue for slot.... +15:15:17 Sending to : +15:15:17 ============================================================================ +15:15:17 ============================================================================ +15:15:17 Slot Id : <58> +15:15:17 Transaction Type : REQUEST +15:15:17 Received From : +15:15:17 ============================================================================ +15:15:17 FNo. Len. Field Value +15:15:17 ============================================================================ +15:15:17 [ 1] [ 4] [0200] +15:15:17 [ 2] [ 16] [6688990104677404] +15:15:17 [ 3] [ 6] [301000] +15:15:17 [ 4] [ 12] [000000000000] +15:15:17 [ 7] [ 10] [0320151512] +15:15:17 [ 11] [ 6] [780852] +15:15:17 [ 12] [ 6] [151512] +15:15:17 [ 13] [ 4] [0320] +15:15:17 [ 15] [ 4] [0320] +15:15:17 [ 18] [ 4] [6011] +15:15:17 [ 22] [ 3] [900] +15:15:17 [ 25] [ 2] [02] +15:15:17 [ 28] [ 9] [D00000000] +15:15:17 [ 32] [ 6] [621354] +15:15:17 [ 35] [ 37] [6688990104677404=43051231740436700000] +15:15:17 [ 37] [ 12] [507904789449] +15:15:17 [ 41] [ 8] [07001400] +15:15:17 [ 42] [ 15] [NATIVE ] +15:15:17 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +15:15:17 [ 49] [ 3] [418] +15:15:17 [ 52] [ 16] [85B733E1FDEF33A2] +15:15:17 ============================================================================ +15:15:17 + + +waiting on router queue for slot.... +15:15:17 Sending to : <4> +15:15:17 ============================================================================ +15:15:18 ============================================================================ +15:15:18 Slot Id : <58> +15:15:18 Transaction Type : RESPONSE +15:15:18 Received From : +15:15:18 ============================================================================ +15:15:18 FNo. Len. Field Value +15:15:18 ============================================================================ +15:15:18 [ 1] [ 4] [0210] +15:15:18 [ 2] [ 16] [6688990104677404] +15:15:18 [ 3] [ 6] [301000] +15:15:18 [ 4] [ 12] [000000000000] +15:15:18 [ 11] [ 6] [780852] +15:15:18 [ 12] [ 6] [151512] +15:15:18 [ 15] [ 4] [0320] +15:15:18 [ 18] [ 4] [6011] +15:15:18 [ 32] [ 6] [621354] +15:15:18 [ 35] [ 37] [6688990104677404=43051231740436700000] +15:15:18 [ 37] [ 12] [507904789449] +15:15:18 [ 38] [ 6] [856221] +15:15:18 [ 39] [ 2] [00] +15:15:18 [ 41] [ 8] [07001400] +15:15:18 [ 49] [ 3] [418] +15:15:18 [ 54] [ 20] [1002418C001004477002] +15:15:18 ============================================================================ +15:15:18 Sending to : +15:15:18 ============================================================================ +15:15:18 + + +waiting on router queue for slot.... +15:15:19 ============================================================================ +15:15:19 Slot Id : <51> +15:15:19 Transaction Type : RESPONSE +15:15:19 Received From : +15:15:19 ============================================================================ +15:15:19 FNo. Len. Field Value +15:15:19 ============================================================================ +15:15:19 [ 1] [ 4] [0210] +15:15:19 [ 2] [ 16] [6213541000612047] +15:15:19 [ 3] [ 6] [301000] +15:15:19 [ 4] [ 12] [000000000000] +15:15:19 [ 7] [ 10] [0320081423] +15:15:19 [ 11] [ 6] [269954] +15:15:19 [ 12] [ 6] [151423] +15:15:19 [ 13] [ 4] [0320] +15:15:19 [ 15] [ 4] [0320] +15:15:19 [ 18] [ 4] [6011] +15:15:19 [ 19] [ 3] [418] +15:15:19 [ 32] [ 6] [180893] +15:15:19 [ 35] [ 32] [6213541000612047=491212011204309] +15:15:19 [ 37] [ 12] [507908269954] +15:15:19 [ 38] [ 6] [559612] +15:15:19 [ 39] [ 2] [00] +15:15:19 [ 41] [ 8] [0441VT52] +15:15:19 [ 49] [ 3] [418] +15:15:19 [ 54] [ 40] [1001418C0000812835271002418C000081283527] +15:15:19 ============================================================================ +15:15:19 Calculate Source COMM Id = 2 +15:15:19 ============================================================================ +15:15:19 + + +waiting on router queue for slot.... +15:15:19 ============================================================================ +15:15:19 Slot Id : <56> +15:15:19 Transaction Type : REQUEST +15:15:19 Received From : +15:15:19 ============================================================================ +15:15:19 FNo. Len. Field Value +15:15:19 ============================================================================ +15:15:19 [ 1] [ 4] [0200] +15:15:19 [ 2] [ 16] [8888884000021920] +15:15:19 [ 3] [ 6] [010000] +15:15:19 [ 4] [ 12] [000010000000] +15:15:19 [ 7] [ 10] [0320152306] +15:15:19 [ 11] [ 6] [223740] +15:15:19 [ 12] [ 6] [152306] +15:15:19 [ 13] [ 4] [0320] +15:15:19 [ 14] [ 4] [1603] +15:15:19 [ 15] [ 4] [0320] +15:15:19 [ 18] [ 4] [6011] +15:15:19 [ 22] [ 3] [900] +15:15:19 [ 25] [ 2] [02] +15:15:19 [ 28] [ 9] [D00002000] +15:15:19 [ 32] [ 6] [220699] +15:15:19 [ 35] [ 32] [8888884000021920=160399912192508] +15:15:19 [ 37] [ 12] [507900118770] +15:15:19 [ 41] [ 8] [01001100] +15:15:19 [ 42] [ 15] [APTRA ] +15:15:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:15:19 [ 49] [ 3] [418] +15:15:19 [ 52] [ 16] [32B8B509678B1B74] +15:15:19 ============================================================================ +15:15:19 + + +waiting on router queue for slot.... +15:15:19 Sending to : +15:15:19 ============================================================================ +15:15:19 Sending to : +15:15:19 ============================================================================ +15:15:19 ============================================================================ +15:15:19 Slot Id : <56> +15:15:19 Transaction Type : REQUEST +15:15:19 Received From : +15:15:19 ============================================================================ +15:15:19 FNo. Len. Field Value +15:15:19 ============================================================================ +15:15:19 [ 1] [ 4] [0200] +15:15:19 [ 2] [ 16] [8888884000021920] +15:15:19 [ 3] [ 6] [010000] +15:15:19 [ 4] [ 12] [000010000000] +15:15:19 [ 7] [ 10] [0320152306] +15:15:19 [ 11] [ 6] [223740] +15:15:19 [ 12] [ 6] [152306] +15:15:19 [ 13] [ 4] [0320] +15:15:19 [ 14] [ 4] [1603] +15:15:19 [ 15] [ 4] [0320] +15:15:19 [ 18] [ 4] [6011] +15:15:19 [ 22] [ 3] [900] +15:15:19 [ 25] [ 2] [02] +15:15:19 [ 28] [ 9] [D00002000] +15:15:19 [ 32] [ 6] [220699] +15:15:19 [ 35] [ 32] [8888884000021920=160399912192508] +15:15:19 [ 37] [ 12] [507900118770] +15:15:19 [ 41] [ 8] [01001100] +15:15:19 [ 42] [ 15] [APTRA ] +15:15:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:15:19 [ 49] [ 3] [418] +15:15:19 [ 52] [ 16] [32B8B509678B1B74] +15:15:19 ============================================================================ +15:15:19 + + +waiting on router queue for slot.... +15:15:19 Sending to : +15:15:19 ============================================================================ +15:15:20 ============================================================================ +15:15:20 Slot Id : <56> +15:15:20 Transaction Type : REQUEST +15:15:20 Received From : +15:15:20 ============================================================================ +15:15:20 FNo. Len. Field Value +15:15:20 ============================================================================ +15:15:20 [ 1] [ 4] [0200] +15:15:20 [ 2] [ 16] [8888884000021920] +15:15:20 [ 3] [ 6] [010000] +15:15:20 [ 4] [ 12] [000010000000] +15:15:20 [ 7] [ 10] [0320152306] +15:15:20 [ 11] [ 6] [223740] +15:15:20 [ 12] [ 6] [152306] +15:15:20 [ 13] [ 4] [0320] +15:15:20 [ 14] [ 4] [1603] +15:15:20 [ 15] [ 4] [0320] +15:15:20 [ 18] [ 4] [6011] +15:15:20 [ 22] [ 3] [900] +15:15:20 [ 25] [ 2] [02] +15:15:20 [ 28] [ 9] [D00002000] +15:15:20 [ 32] [ 6] [220699] +15:15:20 [ 35] [ 32] [8888884000021920=160399912192508] +15:15:20 [ 37] [ 12] [507900118770] +15:15:20 [ 41] [ 8] [01001100] +15:15:20 [ 42] [ 15] [APTRA ] +15:15:20 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:15:20 [ 49] [ 3] [418] +15:15:20 [ 52] [ 16] [C23949D4F49BD19B] +15:15:20 ============================================================================ +15:15:20 + + +waiting on router queue for slot.... +15:15:20 Sending to : <0> +15:15:20 ============================================================================ +15:15:20 ============================================================================ +15:15:20 Slot Id : <56> +15:15:20 Transaction Type : RESPONSE +15:15:20 Received From : +15:15:20 ============================================================================ +15:15:20 FNo. Len. Field Value +15:15:20 ============================================================================ +15:15:20 [ 1] [ 4] [0210] +15:15:20 [ 2] [ 16] [8888884000021920] +15:15:20 [ 3] [ 6] [010000] +15:15:20 [ 4] [ 12] [000010000000] +15:15:20 [ 7] [ 10] [0320152306] +15:15:20 [ 11] [ 6] [223740] +15:15:20 [ 12] [ 6] [152306] +15:15:20 [ 13] [ 4] [0320] +15:15:20 [ 15] [ 4] [0320] +15:15:20 [ 18] [ 4] [6011] +15:15:20 [ 32] [ 6] [220699] +15:15:20 [ 35] [ 32] [8888884000021920=160399912192508] +15:15:20 [ 37] [ 12] [507900118770] +15:15:20 [ 38] [ 6] [223740] +15:15:20 [ 39] [ 2] [51] +15:15:20 [ 41] [ 8] [01001100] +15:15:20 [ 49] [ 3] [418] +15:15:20 [ 54] [ 40] [0001418C0000057233890002418C000005723389] +15:15:20 ============================================================================ +15:15:20 Sending to : +15:15:20 ============================================================================ +15:15:20 + + +waiting on router queue for slot.... +15:15:20 ============================================================================ +15:15:20 Slot Id : <58> +15:15:20 Transaction Type : RESPONSE +15:15:20 Received From : +15:15:20 ============================================================================ +15:15:20 FNo. Len. Field Value +15:15:20 ============================================================================ +15:15:20 [ 1] [ 4] [0210] +15:15:20 [ 2] [ 16] [6688990104677404] +15:15:20 [ 3] [ 6] [301000] +15:15:20 [ 4] [ 12] [000000000000] +15:15:20 [ 11] [ 6] [780852] +15:15:20 [ 12] [ 6] [151512] +15:15:20 [ 15] [ 4] [0320] +15:15:20 [ 18] [ 4] [6011] +15:15:20 [ 32] [ 6] [621354] +15:15:20 [ 35] [ 37] [6688990104677404=43051231740436700000] +15:15:20 [ 37] [ 12] [507904789449] +15:15:20 [ 38] [ 6] [856221] +15:15:20 [ 39] [ 2] [00] +15:15:20 [ 41] [ 8] [07001400] +15:15:20 [ 49] [ 3] [418] +15:15:20 [ 54] [ 20] [1002418C001004477002] +15:15:20 ============================================================================ +15:15:20 Calculate Source COMM Id = 0 +15:15:20 ============================================================================ +15:15:20 + + +waiting on router queue for slot.... +15:15:21 ============================================================================ +15:15:21 Slot Id : <56> +15:15:21 Transaction Type : RESPONSE +15:15:21 Received From : +15:15:21 ============================================================================ +15:15:21 FNo. Len. Field Value +15:15:21 ============================================================================ +15:15:21 [ 1] [ 4] [0210] +15:15:21 [ 2] [ 16] [8888884000021920] +15:15:21 [ 3] [ 6] [010000] +15:15:21 [ 4] [ 12] [000010000000] +15:15:21 [ 7] [ 10] [0320152306] +15:15:21 [ 11] [ 6] [223740] +15:15:21 [ 12] [ 6] [152306] +15:15:21 [ 13] [ 4] [0320] +15:15:21 [ 15] [ 4] [0320] +15:15:21 [ 18] [ 4] [6011] +15:15:21 [ 32] [ 6] [220699] +15:15:21 [ 35] [ 32] [8888884000021920=160399912192508] +15:15:21 [ 37] [ 12] [507900118770] +15:15:21 [ 38] [ 6] [223740] +15:15:21 [ 39] [ 2] [51] +15:15:21 [ 41] [ 8] [01001100] +15:15:21 [ 49] [ 3] [418] +15:15:21 [ 54] [ 40] [0001418C0000057233890002418C000005723389] +15:15:21 ============================================================================ +15:15:21 Calculate Source COMM Id = 1 +15:15:21 ============================================================================ +15:15:21 + + +waiting on router queue for slot.... +15:15:30 ============================================================================ +15:15:30 Slot Id : <99> +15:15:30 Transaction Type : REQUEST +15:15:30 Received From : +15:15:30 ============================================================================ +15:15:30 FNo. Len. Field Value +15:15:30 ============================================================================ +15:15:30 [ 1] [ 4] [0200] +15:15:30 [ 2] [ 16] [6688990603040005] +15:15:30 [ 3] [ 6] [010000] +15:15:30 [ 4] [ 12] [000050000000] +15:15:30 [ 7] [ 10] [0320081435] +15:15:30 [ 11] [ 6] [269956] +15:15:30 [ 12] [ 6] [151435] +15:15:30 [ 13] [ 4] [0320] +15:15:30 [ 14] [ 4] [4404] +15:15:30 [ 15] [ 4] [0320] +15:15:30 [ 18] [ 4] [6011] +15:15:30 [ 19] [ 3] [418] +15:15:30 [ 22] [ 3] [021] +15:15:30 [ 25] [ 2] [01] +15:15:30 [ 28] [ 9] [D00002000] +15:15:30 [ 32] [ 6] [180893] +15:15:30 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:15:30 [ 37] [ 12] [507908269956] +15:15:30 [ 41] [ 8] [0369SLVL] +15:15:30 [ 42] [ 15] [999999 ] +15:15:30 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +15:15:30 [ 49] [ 3] [418] +15:15:30 [ 52] [ 16] [073CDBEAC2DE723E] +15:15:30 ============================================================================ +15:15:30 + + +waiting on router queue for slot.... +15:15:30 Sending to : +15:15:30 ============================================================================ +15:15:30 Sending to : +15:15:30 ============================================================================ +15:15:31 ============================================================================ +15:15:31 Slot Id : <99> +15:15:31 Transaction Type : REQUEST +15:15:31 Received From : +15:15:31 ============================================================================ +15:15:31 FNo. Len. Field Value +15:15:31 ============================================================================ +15:15:31 [ 1] [ 4] [0200] +15:15:31 [ 2] [ 16] [6688990603040005] +15:15:31 [ 3] [ 6] [010000] +15:15:31 [ 4] [ 12] [000050000000] +15:15:31 [ 7] [ 10] [0320081435] +15:15:31 [ 11] [ 6] [269956] +15:15:31 [ 12] [ 6] [151435] +15:15:31 [ 13] [ 4] [0320] +15:15:31 [ 14] [ 4] [4404] +15:15:31 [ 15] [ 4] [0320] +15:15:31 [ 18] [ 4] [6011] +15:15:31 [ 19] [ 3] [418] +15:15:31 [ 22] [ 3] [021] +15:15:31 [ 25] [ 2] [01] +15:15:31 [ 28] [ 9] [D00002000] +15:15:31 [ 32] [ 6] [180893] +15:15:31 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:15:31 [ 37] [ 12] [507908269956] +15:15:31 [ 41] [ 8] [0369SLVL] +15:15:31 [ 42] [ 15] [999999 ] +15:15:31 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +15:15:31 [ 49] [ 3] [418] +15:15:31 [ 52] [ 16] [073CDBEAC2DE723E] +15:15:31 ============================================================================ +15:15:31 + + +waiting on router queue for slot.... +15:15:31 Sending to : +15:15:31 ============================================================================ +15:15:31 ============================================================================ +15:15:31 Slot Id : <99> +15:15:31 Transaction Type : REQUEST +15:15:31 Received From : +15:15:31 ============================================================================ +15:15:31 FNo. Len. Field Value +15:15:31 ============================================================================ +15:15:31 [ 1] [ 4] [0200] +15:15:31 [ 2] [ 16] [6688990603040005] +15:15:31 [ 3] [ 6] [010000] +15:15:31 [ 4] [ 12] [000050000000] +15:15:31 [ 7] [ 10] [0320081435] +15:15:31 [ 11] [ 6] [269956] +15:15:31 [ 12] [ 6] [151435] +15:15:31 [ 13] [ 4] [0320] +15:15:31 [ 14] [ 4] [4404] +15:15:31 [ 15] [ 4] [0320] +15:15:31 [ 18] [ 4] [6011] +15:15:31 [ 19] [ 3] [418] +15:15:31 [ 22] [ 3] [021] +15:15:31 [ 25] [ 2] [01] +15:15:31 [ 28] [ 9] [D00002000] +15:15:31 [ 32] [ 6] [180893] +15:15:31 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:15:31 [ 37] [ 12] [507908269956] +15:15:31 [ 41] [ 8] [0369SLVL] +15:15:31 [ 42] [ 15] [999999 ] +15:15:31 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +15:15:31 [ 49] [ 3] [418] +15:15:31 [ 52] [ 16] [A6DB8AE3BE499A0A] +15:15:31 ============================================================================ +15:15:31 + + +waiting on router queue for slot.... +15:15:31 Sending to : <0> +15:15:31 ============================================================================ +15:15:31 ============================================================================ +15:15:31 Slot Id : <99> +15:15:31 Transaction Type : RESPONSE +15:15:31 Received From : +15:15:31 ============================================================================ +15:15:31 FNo. Len. Field Value +15:15:31 ============================================================================ +15:15:31 [ 1] [ 4] [0210] +15:15:31 [ 2] [ 16] [6688990603040005] +15:15:31 [ 3] [ 6] [010000] +15:15:31 [ 4] [ 12] [000050000000] +15:15:31 [ 7] [ 10] [0320081435] +15:15:31 [ 11] [ 6] [269956] +15:15:31 [ 12] [ 6] [151435] +15:15:31 [ 13] [ 4] [0320] +15:15:31 [ 15] [ 4] [0320] +15:15:31 [ 18] [ 4] [6011] +15:15:31 [ 19] [ 3] [418] +15:15:31 [ 22] [ 3] [021] +15:15:31 [ 32] [ 6] [180893] +15:15:31 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:15:31 [ 37] [ 12] [507908269956] +15:15:31 [ 39] [ 2] [14] +15:15:31 [ 41] [ 8] [0369SLVL] +15:15:31 [ 49] [ 3] [418] +15:15:31 ============================================================================ +15:15:31 Sending to : +15:15:31 ============================================================================ +15:15:31 + + +waiting on router queue for slot.... +15:15:31 ============================================================================ +15:15:31 Slot Id : <82> +15:15:31 Transaction Type : REQUEST +15:15:31 Received From : +15:15:31 ============================================================================ +15:15:31 FNo. Len. Field Value +15:15:31 ============================================================================ +15:15:31 [ 1] [ 4] [0800] +15:15:31 [ 7] [ 10] [0320081438] +15:15:31 [ 11] [ 6] [156962] +15:15:31 [ 70] [ 3] [301] +15:15:31 ============================================================================ +15:15:31 + + +waiting on router queue for slot.... +15:15:31 Sending to : +15:15:31 ============================================================================ +15:15:31 ============================================================================ +15:15:31 Slot Id : <82> +15:15:31 Transaction Type : RESPONSE +15:15:31 Received From : +15:15:31 ============================================================================ +15:15:31 FNo. Len. Field Value +15:15:31 ============================================================================ +15:15:31 [ 1] [ 4] [0810] +15:15:31 [ 7] [ 10] [0320081438] +15:15:31 [ 11] [ 6] [156962] +15:15:31 [ 39] [ 2] [00] +15:15:31 [ 70] [ 3] [301] +15:15:31 ============================================================================ +15:15:31 Calculate Source COMM Id = 2 +15:15:31 ============================================================================ +15:15:31 + + +waiting on router queue for slot.... +15:15:32 ============================================================================ +15:15:32 Slot Id : <99> +15:15:32 Transaction Type : RESPONSE +15:15:32 Received From : +15:15:32 ============================================================================ +15:15:32 FNo. Len. Field Value +15:15:32 ============================================================================ +15:15:32 [ 1] [ 4] [0210] +15:15:32 [ 2] [ 16] [6688990603040005] +15:15:32 [ 3] [ 6] [010000] +15:15:32 [ 4] [ 12] [000050000000] +15:15:32 [ 7] [ 10] [0320081435] +15:15:32 [ 11] [ 6] [269956] +15:15:32 [ 12] [ 6] [151435] +15:15:32 [ 13] [ 4] [0320] +15:15:32 [ 15] [ 4] [0320] +15:15:32 [ 18] [ 4] [6011] +15:15:32 [ 19] [ 3] [418] +15:15:32 [ 22] [ 3] [021] +15:15:32 [ 32] [ 6] [180893] +15:15:32 [ 35] [ 37] [6688990603040005=44040061000535300000] +15:15:32 [ 37] [ 12] [507908269956] +15:15:32 [ 39] [ 2] [14] +15:15:32 [ 41] [ 8] [0369SLVL] +15:15:32 [ 49] [ 3] [418] +15:15:32 ============================================================================ +15:15:32 Calculate Source COMM Id = 2 +15:15:32 ============================================================================ +15:15:32 + + +waiting on router queue for slot.... +15:15:39 ============================================================================ +15:15:39 Slot Id : <93> +15:15:39 Transaction Type : REQUEST +15:15:39 Received From : +15:15:39 ============================================================================ +15:15:39 FNo. Len. Field Value +15:15:39 ============================================================================ +15:15:39 [ 1] [ 4] [0420] +15:15:39 [ 2] [ 16] [6213545000095913] +15:15:39 [ 3] [ 6] [012000] +15:15:39 [ 4] [ 12] [000100000000] +15:15:39 [ 7] [ 10] [0320151600] +15:15:39 [ 11] [ 6] [079110] +15:15:39 [ 12] [ 6] [151600] +15:15:39 [ 13] [ 4] [0320] +15:15:39 [ 14] [ 4] [4912] +15:15:39 [ 15] [ 4] [0320] +15:15:39 [ 18] [ 4] [6011] +15:15:39 [ 22] [ 3] [900] +15:15:39 [ 25] [ 2] [02] +15:15:39 [ 28] [ 9] [C00002000] +15:15:39 [ 32] [ 6] [220699] +15:15:39 [ 35] [ 32] [6213545000095913=491212019591128] +15:15:39 [ 37] [ 12] [507900132975] +15:15:39 [ 39] [ 2] [00] +15:15:39 [ 41] [ 8] [03000100] +15:15:39 [ 42] [ 15] [APTRA ] +15:15:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:15:39 [ 49] [ 3] [418] +15:15:39 [ 90] [ 42] [020007911003201516000000022069900000000000] +15:15:39 ============================================================================ +15:15:39 + + +waiting on router queue for slot.... +15:15:39 Sending to : +15:15:39 ============================================================================ +15:15:43 ============================================================================ +15:15:43 Slot Id : <93> +15:15:43 Transaction Type : RESPONSE +15:15:43 Received From : +15:15:43 ============================================================================ +15:15:43 FNo. Len. Field Value +15:15:43 ============================================================================ +15:15:43 [ 1] [ 4] [0430] +15:15:43 [ 2] [ 16] [6213545000095913] +15:15:43 [ 3] [ 6] [012000] +15:15:43 [ 4] [ 12] [000100000000] +15:15:43 [ 7] [ 10] [0320151600] +15:15:43 [ 11] [ 6] [079110] +15:15:43 [ 12] [ 6] [151600] +15:15:43 [ 13] [ 4] [0320] +15:15:43 [ 14] [ 4] [4912] +15:15:43 [ 15] [ 4] [0320] +15:15:43 [ 18] [ 4] [6011] +15:15:43 [ 22] [ 3] [900] +15:15:43 [ 25] [ 2] [02] +15:15:43 [ 28] [ 9] [C00002000] +15:15:43 [ 32] [ 6] [220699] +15:15:43 [ 35] [ 32] [6213545000095913=491212019591128] +15:15:43 [ 37] [ 12] [507900132975] +15:15:43 [ 39] [ 2] [00] +15:15:43 [ 41] [ 8] [03000100] +15:15:43 [ 42] [ 15] [APTRA ] +15:15:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:15:43 [ 49] [ 3] [418] +15:15:43 [ 90] [ 42] [020007911003201516000000022069900000000000] +15:15:43 ============================================================================ +15:15:43 Calculate Source COMM Id = 1 +15:15:43 ============================================================================ +15:15:43 + + +waiting on router queue for slot.... +15:15:47 ============================================================================ +15:15:47 Slot Id : <64> +15:15:47 Transaction Type : REQUEST +15:15:47 Received From : +15:15:47 ============================================================================ +15:15:47 FNo. Len. Field Value +15:15:47 ============================================================================ +15:15:47 [ 1] [ 4] [0200] +15:15:47 [ 2] [ 16] [6688990105511404] +15:15:47 [ 3] [ 6] [011000] +15:15:47 [ 4] [ 12] [000100000000] +15:15:47 [ 7] [ 10] [0320151542] +15:15:47 [ 11] [ 6] [780968] +15:15:47 [ 12] [ 6] [151542] +15:15:47 [ 13] [ 4] [0320] +15:15:47 [ 15] [ 4] [0320] +15:15:47 [ 18] [ 4] [6011] +15:15:47 [ 22] [ 3] [900] +15:15:47 [ 25] [ 2] [02] +15:15:47 [ 28] [ 9] [D00002000] +15:15:47 [ 32] [ 6] [621354] +15:15:47 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:15:47 [ 37] [ 12] [507903032254] +15:15:47 [ 41] [ 8] [12002600] +15:15:47 [ 42] [ 15] [NATIVE ] +15:15:47 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +15:15:47 [ 49] [ 3] [418] +15:15:47 [ 52] [ 16] [CCEE5547B2654291] +15:15:47 ============================================================================ +15:15:47 + + +waiting on router queue for slot.... +15:15:47 Sending to : +15:15:47 ============================================================================ +15:15:47 Sending to : +15:15:47 ============================================================================ +15:15:47 ============================================================================ +15:15:47 Slot Id : <64> +15:15:47 Transaction Type : REQUEST +15:15:47 Received From : +15:15:47 ============================================================================ +15:15:47 FNo. Len. Field Value +15:15:47 ============================================================================ +15:15:47 [ 1] [ 4] [0200] +15:15:47 [ 2] [ 16] [6688990105511404] +15:15:47 [ 3] [ 6] [011000] +15:15:47 [ 4] [ 12] [000100000000] +15:15:47 [ 7] [ 10] [0320151542] +15:15:47 [ 11] [ 6] [780968] +15:15:47 [ 12] [ 6] [151542] +15:15:47 [ 13] [ 4] [0320] +15:15:47 [ 15] [ 4] [0320] +15:15:47 [ 18] [ 4] [6011] +15:15:47 [ 22] [ 3] [900] +15:15:47 [ 25] [ 2] [02] +15:15:47 [ 28] [ 9] [D00002000] +15:15:47 [ 32] [ 6] [621354] +15:15:47 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:15:47 [ 37] [ 12] [507903032254] +15:15:47 [ 41] [ 8] [12002600] +15:15:47 [ 42] [ 15] [NATIVE ] +15:15:47 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +15:15:47 [ 49] [ 3] [418] +15:15:47 [ 52] [ 16] [CCEE5547B2654291] +15:15:47 ============================================================================ +15:15:47 + + +waiting on router queue for slot.... +15:15:47 Sending to : +15:15:47 ============================================================================ +15:15:47 ============================================================================ +15:15:47 Slot Id : <91> +15:15:47 Transaction Type : REQUEST +15:15:47 Received From : +15:15:47 ============================================================================ +15:15:47 FNo. Len. Field Value +15:15:47 ============================================================================ +15:15:47 [ 1] [ 4] [0800] +15:15:47 [ 7] [ 10] [0320081454] +15:15:47 [ 11] [ 6] [156963] +15:15:47 [ 70] [ 3] [301] +15:15:47 ============================================================================ +15:15:47 + + +waiting on router queue for slot.... +15:15:47 Sending to : +15:15:47 ============================================================================ +15:15:47 ============================================================================ +15:15:47 Slot Id : <91> +15:15:47 Transaction Type : RESPONSE +15:15:47 Received From : +15:15:47 ============================================================================ +15:15:47 FNo. Len. Field Value +15:15:47 ============================================================================ +15:15:47 [ 1] [ 4] [0810] +15:15:47 [ 7] [ 10] [0320081454] +15:15:47 [ 11] [ 6] [156963] +15:15:47 [ 39] [ 2] [00] +15:15:47 [ 70] [ 3] [301] +15:15:47 ============================================================================ +15:15:47 Calculate Source COMM Id = 2 +15:15:47 ============================================================================ +15:15:47 + + +waiting on router queue for slot.... +15:15:48 ============================================================================ +15:15:48 Slot Id : <64> +15:15:48 Transaction Type : REQUEST +15:15:48 Received From : +15:15:48 ============================================================================ +15:15:48 FNo. Len. Field Value +15:15:48 ============================================================================ +15:15:48 [ 1] [ 4] [0200] +15:15:48 [ 2] [ 16] [6688990105511404] +15:15:48 [ 3] [ 6] [011000] +15:15:48 [ 4] [ 12] [000100000000] +15:15:48 [ 7] [ 10] [0320151542] +15:15:48 [ 11] [ 6] [780968] +15:15:48 [ 12] [ 6] [151542] +15:15:48 [ 13] [ 4] [0320] +15:15:48 [ 15] [ 4] [0320] +15:15:48 [ 18] [ 4] [6011] +15:15:48 [ 22] [ 3] [900] +15:15:48 [ 25] [ 2] [02] +15:15:48 [ 28] [ 9] [D00002000] +15:15:48 [ 32] [ 6] [621354] +15:15:48 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:15:48 [ 37] [ 12] [507903032254] +15:15:48 [ 41] [ 8] [12002600] +15:15:48 [ 42] [ 15] [NATIVE ] +15:15:48 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +15:15:48 [ 49] [ 3] [418] +15:15:48 [ 52] [ 16] [9D4889D79A877A12] +15:15:48 ============================================================================ +15:15:48 + + +waiting on router queue for slot.... +15:15:48 Sending to : <4> +15:15:48 ============================================================================ +15:15:49 ============================================================================ +15:15:49 Slot Id : <64> +15:15:49 Transaction Type : RESPONSE +15:15:49 Received From : +15:15:49 ============================================================================ +15:15:49 FNo. Len. Field Value +15:15:49 ============================================================================ +15:15:49 [ 1] [ 4] [0210] +15:15:49 [ 2] [ 16] [6688990105511404] +15:15:49 [ 3] [ 6] [011000] +15:15:49 [ 4] [ 12] [000100000000] +15:15:49 [ 11] [ 6] [780968] +15:15:49 [ 12] [ 6] [151542] +15:15:49 [ 15] [ 4] [0320] +15:15:49 [ 18] [ 4] [6011] +15:15:49 [ 32] [ 6] [621354] +15:15:49 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:15:49 [ 37] [ 12] [507903032254] +15:15:49 [ 38] [ 6] [140581] +15:15:49 [ 39] [ 2] [00] +15:15:49 [ 41] [ 8] [12002600] +15:15:49 [ 49] [ 3] [418] +15:15:49 [ 54] [ 20] [1002418C000024762402] +15:15:49 ============================================================================ +15:15:49 Sending to : +15:15:49 ============================================================================ +15:15:49 + + +waiting on router queue for slot.... +15:15:50 ============================================================================ +15:15:50 Slot Id : <64> +15:15:50 Transaction Type : RESPONSE +15:15:50 Received From : +15:15:50 ============================================================================ +15:15:50 FNo. Len. Field Value +15:15:50 ============================================================================ +15:15:50 [ 1] [ 4] [0210] +15:15:50 [ 2] [ 16] [6688990105511404] +15:15:50 [ 3] [ 6] [011000] +15:15:50 [ 4] [ 12] [000100000000] +15:15:50 [ 11] [ 6] [780968] +15:15:50 [ 12] [ 6] [151542] +15:15:50 [ 15] [ 4] [0320] +15:15:50 [ 18] [ 4] [6011] +15:15:50 [ 32] [ 6] [621354] +15:15:50 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:15:50 [ 37] [ 12] [507903032254] +15:15:50 [ 38] [ 6] [140581] +15:15:50 [ 39] [ 2] [00] +15:15:50 [ 41] [ 8] [12002600] +15:15:50 [ 49] [ 3] [418] +15:15:50 [ 54] [ 20] [1002418C000024762402] +15:15:50 ============================================================================ +15:15:50 Calculate Source COMM Id = 0 +15:15:50 ============================================================================ +15:15:50 + + +waiting on router queue for slot.... +15:16:02 ============================================================================ +15:16:02 Slot Id : <100> +15:16:02 Transaction Type : REQUEST +15:16:02 Received From : +15:16:02 ============================================================================ +15:16:02 FNo. Len. Field Value +15:16:02 ============================================================================ +15:16:02 [ 1] [ 4] [0200] +15:16:02 [ 2] [ 16] [1234010100182306] +15:16:02 [ 3] [ 6] [301000] +15:16:02 [ 4] [ 12] [000000000000] +15:16:02 [ 7] [ 10] [0320151556] +15:16:02 [ 11] [ 6] [781021] +15:16:02 [ 12] [ 6] [151556] +15:16:02 [ 13] [ 4] [0320] +15:16:02 [ 15] [ 4] [0320] +15:16:02 [ 18] [ 4] [6011] +15:16:02 [ 22] [ 3] [900] +15:16:02 [ 25] [ 2] [02] +15:16:02 [ 28] [ 9] [D00000000] +15:16:02 [ 32] [ 6] [621354] +15:16:02 [ 35] [ 32] [1234010100182306=160500018230000] +15:16:02 [ 37] [ 12] [507904381205] +15:16:02 [ 41] [ 8] [03003700] +15:16:02 [ 42] [ 15] [NATIVE ] +15:16:02 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +15:16:02 [ 49] [ 3] [418] +15:16:02 [ 52] [ 16] [3BF445779ED23AC4] +15:16:02 ============================================================================ +15:16:02 + + +waiting on router queue for slot.... +15:16:02 Sending to : +15:16:02 ============================================================================ +15:16:02 Sending to : +15:16:02 ============================================================================ +15:16:02 ============================================================================ +15:16:02 Slot Id : <100> +15:16:02 Transaction Type : REQUEST +15:16:02 Received From : +15:16:02 ============================================================================ +15:16:02 FNo. Len. Field Value +15:16:02 ============================================================================ +15:16:02 [ 1] [ 4] [0200] +15:16:02 [ 2] [ 16] [1234010100182306] +15:16:02 [ 3] [ 6] [301000] +15:16:02 [ 4] [ 12] [000000000000] +15:16:02 [ 7] [ 10] [0320151556] +15:16:02 [ 11] [ 6] [781021] +15:16:02 [ 12] [ 6] [151556] +15:16:02 [ 13] [ 4] [0320] +15:16:02 [ 15] [ 4] [0320] +15:16:02 [ 18] [ 4] [6011] +15:16:02 [ 22] [ 3] [900] +15:16:02 [ 25] [ 2] [02] +15:16:02 [ 28] [ 9] [D00000000] +15:16:02 [ 32] [ 6] [621354] +15:16:02 [ 35] [ 32] [1234010100182306=160500018230000] +15:16:02 [ 37] [ 12] [507904381205] +15:16:02 [ 41] [ 8] [03003700] +15:16:02 [ 42] [ 15] [NATIVE ] +15:16:02 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +15:16:02 [ 49] [ 3] [418] +15:16:02 [ 52] [ 16] [3BF445779ED23AC4] +15:16:02 ============================================================================ +15:16:02 + + +waiting on router queue for slot.... +15:16:02 Sending to : +15:16:02 ============================================================================ +15:16:02 ============================================================================ +15:16:02 Slot Id : <100> +15:16:02 Transaction Type : REQUEST +15:16:02 Received From : +15:16:02 ============================================================================ +15:16:02 FNo. Len. Field Value +15:16:02 ============================================================================ +15:16:02 [ 1] [ 4] [0200] +15:16:02 [ 2] [ 16] [1234010100182306] +15:16:02 [ 3] [ 6] [301000] +15:16:02 [ 4] [ 12] [000000000000] +15:16:02 [ 7] [ 10] [0320151556] +15:16:02 [ 11] [ 6] [781021] +15:16:02 [ 12] [ 6] [151556] +15:16:02 [ 13] [ 4] [0320] +15:16:02 [ 15] [ 4] [0320] +15:16:02 [ 18] [ 4] [6011] +15:16:02 [ 22] [ 3] [900] +15:16:02 [ 25] [ 2] [02] +15:16:02 [ 28] [ 9] [D00000000] +15:16:02 [ 32] [ 6] [621354] +15:16:02 [ 35] [ 32] [1234010100182306=160500018230000] +15:16:02 [ 37] [ 12] [507904381205] +15:16:02 [ 41] [ 8] [03003700] +15:16:02 [ 42] [ 15] [NATIVE ] +15:16:02 [ 43] [ 40] [Seno Market OuthoumphoneLAO] +15:16:02 [ 49] [ 3] [418] +15:16:02 [ 52] [ 16] [8762F39DDC7A2D59] +15:16:02 ============================================================================ +15:16:02 + + +waiting on router queue for slot.... +15:16:02 Sending to : <6> +15:16:02 ============================================================================ +15:16:02 ============================================================================ +15:16:02 Slot Id : <100> +15:16:02 Transaction Type : RESPONSE +15:16:02 Received From : +15:16:02 ============================================================================ +15:16:02 FNo. Len. Field Value +15:16:02 ============================================================================ +15:16:02 [ 1] [ 4] [0210] +15:16:02 [ 2] [ 16] [1234010100182306] +15:16:02 [ 3] [ 6] [301000] +15:16:02 [ 4] [ 12] [000000000000] +15:16:02 [ 7] [ 10] [0320151556] +15:16:02 [ 11] [ 6] [781021] +15:16:02 [ 12] [ 6] [151556] +15:16:02 [ 13] [ 4] [0320] +15:16:02 [ 15] [ 4] [0320] +15:16:02 [ 18] [ 4] [6011] +15:16:02 [ 19] [ 3] [418] +15:16:02 [ 22] [ 3] [900] +15:16:02 [ 32] [ 6] [621354] +15:16:02 [ 35] [ 32] [1234010100182306=160500018230000] +15:16:02 [ 37] [ 12] [507904381205] +15:16:02 [ 39] [ 2] [56] +15:16:02 [ 41] [ 8] [03003700] +15:16:02 [ 49] [ 3] [418] +15:16:02 ============================================================================ +15:16:02 Sending to : +15:16:02 ============================================================================ +15:16:02 + + +waiting on router queue for slot.... +15:16:02 ============================================================================ +15:16:02 Slot Id : <65> +15:16:02 Transaction Type : REQUEST +15:16:02 Received From : +15:16:02 ============================================================================ +15:16:02 FNo. Len. Field Value +15:16:02 ============================================================================ +15:16:02 [ 1] [ 4] [0800] +15:16:02 [ 7] [ 10] [0320081510] +15:16:02 [ 11] [ 6] [156964] +15:16:02 [ 70] [ 3] [301] +15:16:02 ============================================================================ +15:16:02 + + +waiting on router queue for slot.... +15:16:02 Sending to : +15:16:02 ============================================================================ +15:16:02 ============================================================================ +15:16:02 Slot Id : <65> +15:16:02 Transaction Type : RESPONSE +15:16:02 Received From : +15:16:02 ============================================================================ +15:16:02 FNo. Len. Field Value +15:16:02 ============================================================================ +15:16:02 [ 1] [ 4] [0810] +15:16:02 [ 7] [ 10] [0320081510] +15:16:02 [ 11] [ 6] [156964] +15:16:02 [ 39] [ 2] [00] +15:16:02 [ 70] [ 3] [301] +15:16:02 ============================================================================ +15:16:02 Calculate Source COMM Id = 2 +15:16:02 ============================================================================ +15:16:02 + + +waiting on router queue for slot.... +15:16:03 ============================================================================ +15:16:03 Slot Id : <100> +15:16:03 Transaction Type : RESPONSE +15:16:03 Received From : +15:16:03 ============================================================================ +15:16:03 FNo. Len. Field Value +15:16:03 ============================================================================ +15:16:03 [ 1] [ 4] [0210] +15:16:03 [ 2] [ 16] [1234010100182306] +15:16:03 [ 3] [ 6] [301000] +15:16:03 [ 4] [ 12] [000000000000] +15:16:03 [ 7] [ 10] [0320151556] +15:16:03 [ 11] [ 6] [781021] +15:16:03 [ 12] [ 6] [151556] +15:16:03 [ 13] [ 4] [0320] +15:16:03 [ 15] [ 4] [0320] +15:16:03 [ 18] [ 4] [6011] +15:16:03 [ 19] [ 3] [418] +15:16:03 [ 22] [ 3] [900] +15:16:03 [ 32] [ 6] [621354] +15:16:03 [ 35] [ 32] [1234010100182306=160500018230000] +15:16:03 [ 37] [ 12] [507904381205] +15:16:03 [ 39] [ 2] [56] +15:16:03 [ 41] [ 8] [03003700] +15:16:03 [ 49] [ 3] [418] +15:16:03 ============================================================================ +15:16:03 Calculate Source COMM Id = 0 +15:16:03 ============================================================================ +15:16:03 + + +waiting on router queue for slot.... +15:16:04 ============================================================================ +15:16:04 Slot Id : <72> +15:16:04 Transaction Type : REQUEST +15:16:04 Received From : +15:16:04 ============================================================================ +15:16:04 FNo. Len. Field Value +15:16:04 ============================================================================ +15:16:04 [ 1] [ 4] [0200] +15:16:04 [ 2] [ 16] [6213545000268809] +15:16:04 [ 3] [ 6] [010000] +15:16:04 [ 4] [ 12] [000100000000] +15:16:04 [ 7] [ 10] [0320151354] +15:16:04 [ 11] [ 6] [949729] +15:16:04 [ 12] [ 6] [151354] +15:16:04 [ 13] [ 4] [0320] +15:16:04 [ 15] [ 4] [0320] +15:16:04 [ 18] [ 4] [6011] +15:16:04 [ 19] [ 3] [418] +15:16:04 [ 22] [ 3] [021] +15:16:04 [ 25] [ 2] [01] +15:16:04 [ 28] [ 9] [D00002000] +15:16:04 [ 32] [ 6] [668899] +15:16:04 [ 35] [ 32] [6213545000268809=491212016880593] +15:16:04 [ 37] [ 12] [507900204610] +15:16:04 [ 41] [ 8] [03001004] +15:16:04 [ 42] [ 15] [APT ] +15:16:04 [ 43] [ 40] [ LDB SERVICE UNIT IN BOL C] +15:16:04 [ 49] [ 3] [418] +15:16:04 [ 52] [ 16] [B6054604C2B480CA] +15:16:04 ============================================================================ +15:16:04 + + +waiting on router queue for slot.... +15:16:04 Sending to : +15:16:04 ============================================================================ +15:16:04 Sending to : +15:16:04 ============================================================================ +15:16:04 ============================================================================ +15:16:04 Slot Id : <72> +15:16:04 Transaction Type : REQUEST +15:16:04 Received From : +15:16:04 ============================================================================ +15:16:04 FNo. Len. Field Value +15:16:04 ============================================================================ +15:16:04 [ 1] [ 4] [0200] +15:16:04 [ 2] [ 16] [6213545000268809] +15:16:04 [ 3] [ 6] [010000] +15:16:04 [ 4] [ 12] [000100000000] +15:16:04 [ 7] [ 10] [0320151354] +15:16:04 [ 11] [ 6] [949729] +15:16:04 [ 12] [ 6] [151354] +15:16:04 [ 13] [ 4] [0320] +15:16:04 [ 15] [ 4] [0320] +15:16:04 [ 18] [ 4] [6011] +15:16:04 [ 19] [ 3] [418] +15:16:04 [ 22] [ 3] [021] +15:16:04 [ 25] [ 2] [01] +15:16:04 [ 28] [ 9] [D00002000] +15:16:04 [ 32] [ 6] [668899] +15:16:04 [ 35] [ 32] [6213545000268809=491212016880593] +15:16:04 [ 37] [ 12] [507900204610] +15:16:04 [ 41] [ 8] [03001004] +15:16:04 [ 42] [ 15] [APT ] +15:16:04 [ 43] [ 40] [ LDB SERVICE UNIT IN BOL C] +15:16:04 [ 49] [ 3] [418] +15:16:04 [ 52] [ 16] [B6054604C2B480CA] +15:16:04 ============================================================================ +15:16:04 + + +waiting on router queue for slot.... +15:16:04 Sending to : +15:16:04 ============================================================================ +15:16:04 ============================================================================ +15:16:04 Slot Id : <72> +15:16:04 Transaction Type : REQUEST +15:16:04 Received From : +15:16:04 ============================================================================ +15:16:04 FNo. Len. Field Value +15:16:04 ============================================================================ +15:16:04 [ 1] [ 4] [0200] +15:16:04 [ 2] [ 16] [6213545000268809] +15:16:04 [ 3] [ 6] [010000] +15:16:04 [ 4] [ 12] [000100000000] +15:16:04 [ 7] [ 10] [0320151354] +15:16:04 [ 11] [ 6] [949729] +15:16:04 [ 12] [ 6] [151354] +15:16:04 [ 13] [ 4] [0320] +15:16:04 [ 15] [ 4] [0320] +15:16:04 [ 18] [ 4] [6011] +15:16:04 [ 19] [ 3] [418] +15:16:04 [ 22] [ 3] [021] +15:16:04 [ 25] [ 2] [01] +15:16:04 [ 28] [ 9] [D00002000] +15:16:04 [ 32] [ 6] [668899] +15:16:04 [ 35] [ 32] [6213545000268809=491212016880593] +15:16:04 [ 37] [ 12] [507900204610] +15:16:04 [ 41] [ 8] [03001004] +15:16:04 [ 42] [ 15] [APT ] +15:16:04 [ 43] [ 40] [ LDB SERVICE UNIT IN BOL C] +15:16:04 [ 49] [ 3] [418] +15:16:04 [ 52] [ 16] [C96960D16A5B3FB4] +15:16:04 ============================================================================ +15:16:04 + + +waiting on router queue for slot.... +15:16:04 Sending to : <0> +15:16:04 ============================================================================ +15:16:05 ============================================================================ +15:16:05 Slot Id : <72> +15:16:05 Transaction Type : RESPONSE +15:16:05 Received From : +15:16:05 ============================================================================ +15:16:05 FNo. Len. Field Value +15:16:05 ============================================================================ +15:16:05 [ 1] [ 4] [0210] +15:16:05 [ 2] [ 16] [6213545000268809] +15:16:05 [ 3] [ 6] [010000] +15:16:05 [ 4] [ 12] [000100000000] +15:16:05 [ 7] [ 10] [0320151354] +15:16:05 [ 11] [ 6] [949729] +15:16:05 [ 12] [ 6] [151354] +15:16:05 [ 13] [ 4] [0320] +15:16:05 [ 15] [ 4] [0320] +15:16:05 [ 18] [ 4] [6011] +15:16:05 [ 19] [ 3] [418] +15:16:05 [ 32] [ 6] [668899] +15:16:05 [ 35] [ 32] [6213545000268809=491212016880593] +15:16:05 [ 37] [ 12] [507900204610] +15:16:05 [ 38] [ 6] [926431] +15:16:05 [ 39] [ 2] [00] +15:16:05 [ 41] [ 8] [03001004] +15:16:05 [ 49] [ 3] [418] +15:16:05 [ 54] [ 40] [0001418C0024874320650002418C002487432065] +15:16:05 ============================================================================ +15:16:05 Sending to : +15:16:05 ============================================================================ +15:16:05 + + +waiting on router queue for slot.... +15:16:06 ============================================================================ +15:16:06 Slot Id : <72> +15:16:06 Transaction Type : RESPONSE +15:16:06 Received From : +15:16:06 ============================================================================ +15:16:06 FNo. Len. Field Value +15:16:06 ============================================================================ +15:16:06 [ 1] [ 4] [0210] +15:16:06 [ 2] [ 16] [6213545000268809] +15:16:06 [ 3] [ 6] [010000] +15:16:06 [ 4] [ 12] [000100000000] +15:16:06 [ 7] [ 10] [0320151354] +15:16:06 [ 11] [ 6] [949729] +15:16:06 [ 12] [ 6] [151354] +15:16:06 [ 13] [ 4] [0320] +15:16:06 [ 15] [ 4] [0320] +15:16:06 [ 18] [ 4] [6011] +15:16:06 [ 19] [ 3] [418] +15:16:06 [ 32] [ 6] [668899] +15:16:06 [ 35] [ 32] [6213545000268809=491212016880593] +15:16:06 [ 37] [ 12] [507900204610] +15:16:06 [ 38] [ 6] [926431] +15:16:06 [ 39] [ 2] [00] +15:16:06 [ 41] [ 8] [03001004] +15:16:06 [ 49] [ 3] [418] +15:16:06 [ 54] [ 40] [0001418C0024874320650002418C002487432065] +15:16:06 ============================================================================ +15:16:06 Calculate Source COMM Id = 4 +15:16:06 ============================================================================ +15:16:06 + + +waiting on router queue for slot.... +15:16:10 ============================================================================ +15:16:10 Slot Id : <76> +15:16:10 Transaction Type : REQUEST +15:16:10 Received From : +15:16:10 ============================================================================ +15:16:10 FNo. Len. Field Value +15:16:10 ============================================================================ +15:16:10 [ 1] [ 4] [0800] +15:16:10 [ 2] [ 5] [02531] +15:16:10 [ 3] [ 6] [579158] +15:16:10 [ 7] [ 10] [0320081610] +15:16:10 [ 11] [ 6] [807298] +15:16:10 [ 15] [ 10] [0320081610] +15:16:10 [ 37] [ 11] [57915807298] +15:16:10 [ 70] [ 3] [001] +15:16:10 ============================================================================ +15:16:10 + + +waiting on router queue for slot.... +15:16:10 ============================================================================ +15:16:10 Slot Id : <76> +15:16:10 Transaction Type : RESPONSE +15:16:10 Received From : +15:16:10 ============================================================================ +15:16:10 FNo. Len. Field Value +15:16:10 ============================================================================ +15:16:10 [ 1] [ 4] [0810] +15:16:10 [ 7] [ 10] [0320081610] +15:16:10 [ 11] [ 6] [807298] +15:16:10 [ 15] [ 4] [0320] +15:16:10 [ 37] [ 12] [57915807298] +15:16:10 [ 39] [ 2] [00] +15:16:10 [ 70] [ 3] [001] +15:16:10 ============================================================================ +15:16:10 Sending to : +15:16:10 ============================================================================ +15:16:10 + + +waiting on router queue for slot.... +15:16:13 ============================================================================ +15:16:13 Slot Id : <106> +15:16:13 Transaction Type : REQUEST +15:16:13 Received From : +15:16:13 ============================================================================ +15:16:13 FNo. Len. Field Value +15:16:13 ============================================================================ +15:16:13 [ 1] [ 4] [0800] +15:16:13 [ 7] [ 10] [0320081520] +15:16:13 [ 11] [ 6] [156965] +15:16:13 [ 70] [ 3] [301] +15:16:13 ============================================================================ +15:16:13 + + +waiting on router queue for slot.... +15:16:13 Sending to : +15:16:13 ============================================================================ +15:16:13 ============================================================================ +15:16:13 Slot Id : <106> +15:16:13 Transaction Type : RESPONSE +15:16:13 Received From : +15:16:13 ============================================================================ +15:16:13 FNo. Len. Field Value +15:16:13 ============================================================================ +15:16:13 [ 1] [ 4] [0810] +15:16:13 [ 7] [ 10] [0320081520] +15:16:13 [ 11] [ 6] [156965] +15:16:13 [ 39] [ 2] [00] +15:16:13 [ 70] [ 3] [301] +15:16:13 ============================================================================ +15:16:13 Calculate Source COMM Id = 2 +15:16:13 ============================================================================ +15:16:13 + + +waiting on router queue for slot.... +15:16:21 ============================================================================ +15:16:21 Slot Id : <90> +15:16:21 Transaction Type : REQUEST +15:16:21 Received From : +15:16:21 ============================================================================ +15:16:21 FNo. Len. Field Value +15:16:21 ============================================================================ +15:16:21 [ 1] [ 4] [0800] +15:16:21 [ 7] [ 10] [0320222810] +15:16:21 [ 11] [ 6] [152810] +15:16:21 [ 37] [ 12] [57915152810] +15:16:21 [ 70] [ 3] [301] +15:16:21 ============================================================================ +15:16:21 + + +waiting on router queue for slot.... +15:16:21 Sending to : +15:16:21 ============================================================================ +15:16:21 ============================================================================ +15:16:21 Slot Id : <90> +15:16:21 Transaction Type : RESPONSE +15:16:21 Received From : +15:16:21 ============================================================================ +15:16:21 FNo. Len. Field Value +15:16:21 ============================================================================ +15:16:21 [ 1] [ 4] [0810] +15:16:21 [ 7] [ 10] [0320222810] +15:16:21 [ 11] [ 6] [152810] +15:16:21 [ 37] [ 12] [579151528100] +15:16:21 [ 39] [ 2] [00] +15:16:21 [ 70] [ 3] [810] +15:16:21 ============================================================================ +15:16:21 Calculate Source COMM Id = 6 +15:16:21 ============================================================================ +15:16:21 + + +waiting on router queue for slot.... +15:16:22 ============================================================================ +15:16:22 Slot Id : <114> +15:16:22 Transaction Type : REQUEST +15:16:22 Received From : +15:16:22 ============================================================================ +15:16:22 FNo. Len. Field Value +15:16:22 ============================================================================ +15:16:22 [ 1] [ 4] [0800] +15:16:22 [ 7] [ 10] [0320081412] +15:16:22 [ 11] [ 6] [047206] +15:16:22 [ 37] [ 12] [57915047206] +15:16:22 [ 70] [ 3] [301] +15:16:22 ============================================================================ +15:16:22 + + +waiting on router queue for slot.... +15:16:22 Sending to : +15:16:22 ============================================================================ +15:16:22 ============================================================================ +15:16:22 Slot Id : <114> +15:16:22 Transaction Type : RESPONSE +15:16:22 Received From : +15:16:22 ============================================================================ +15:16:22 FNo. Len. Field Value +15:16:22 ============================================================================ +15:16:22 [ 1] [ 4] [0810] +15:16:22 [ 7] [ 10] [0320081412] +15:16:22 [ 11] [ 6] [047206] +15:16:22 [ 37] [ 12] [579150472060] +15:16:22 [ 39] [ 2] [00] +15:16:22 [ 70] [ 3] [810] +15:16:22 ============================================================================ +15:16:22 Calculate Source COMM Id = 4 +15:16:22 ============================================================================ +15:16:22 + + +waiting on router queue for slot.... +15:16:24 ============================================================================ +15:16:24 Slot Id : <66> +15:16:24 Transaction Type : REQUEST +15:16:24 Received From : +15:16:24 ============================================================================ +15:16:24 FNo. Len. Field Value +15:16:24 ============================================================================ +15:16:24 [ 1] [ 4] [0800] +15:16:24 [ 7] [ 10] [0320081531] +15:16:24 [ 11] [ 6] [156966] +15:16:24 [ 70] [ 3] [301] +15:16:24 ============================================================================ +15:16:24 + + +waiting on router queue for slot.... +15:16:24 Sending to : +15:16:24 ============================================================================ +15:16:24 ============================================================================ +15:16:24 Slot Id : <66> +15:16:24 Transaction Type : RESPONSE +15:16:24 Received From : +15:16:24 ============================================================================ +15:16:24 FNo. Len. Field Value +15:16:24 ============================================================================ +15:16:24 [ 1] [ 4] [0810] +15:16:24 [ 7] [ 10] [0320081531] +15:16:24 [ 11] [ 6] [156966] +15:16:24 [ 39] [ 2] [00] +15:16:24 [ 70] [ 3] [301] +15:16:24 ============================================================================ +15:16:24 Calculate Source COMM Id = 2 +15:16:24 ============================================================================ +15:16:24 + + +waiting on router queue for slot.... +15:16:38 ============================================================================ +15:16:38 Slot Id : <83> +15:16:38 Transaction Type : REQUEST +15:16:38 Received From : +15:16:38 ============================================================================ +15:16:38 FNo. Len. Field Value +15:16:38 ============================================================================ +15:16:38 [ 1] [ 4] [0200] +15:16:38 [ 2] [ 16] [6213544002041124] +15:16:38 [ 3] [ 6] [300000] +15:16:38 [ 4] [ 12] [000000000000] +15:16:38 [ 7] [ 10] [0320152826] +15:16:38 [ 11] [ 6] [412279] +15:16:38 [ 12] [ 6] [152826] +15:16:38 [ 13] [ 4] [0320] +15:16:38 [ 14] [ 4] [1249] +15:16:38 [ 15] [ 4] [0320] +15:16:38 [ 18] [ 4] [6011] +15:16:38 [ 19] [ 3] [418] +15:16:38 [ 22] [ 3] [021] +15:16:38 [ 25] [ 2] [01] +15:16:38 [ 28] [ 9] [D00000000] +15:16:38 [ 32] [ 6] [123401] +15:16:38 [ 35] [ 32] [6213544002041124=491212014112957] +15:16:38 [ 37] [ 12] [507900059970] +15:16:38 [ 41] [ 8] [01000400] +15:16:38 [ 42] [ 15] [APT ] +15:16:38 [ 43] [ 40] [LAOS CHUNGJIENG LAOS LAO] +15:16:38 [ 49] [ 3] [418] +15:16:38 [ 52] [ 16] [63B1B8B820025AF5] +15:16:38 ============================================================================ +15:16:38 Sending to : +15:16:38 ============================================================================ +15:16:38 + + +waiting on router queue for slot.... +15:16:38 Sending to : +15:16:38 ============================================================================ +15:16:38 ============================================================================ +15:16:38 Slot Id : <83> +15:16:38 Transaction Type : REQUEST +15:16:38 Received From : +15:16:38 ============================================================================ +15:16:38 FNo. Len. Field Value +15:16:38 ============================================================================ +15:16:38 [ 1] [ 4] [0200] +15:16:38 [ 2] [ 16] [6213544002041124] +15:16:38 [ 3] [ 6] [300000] +15:16:38 [ 4] [ 12] [000000000000] +15:16:38 [ 7] [ 10] [0320152826] +15:16:38 [ 11] [ 6] [412279] +15:16:38 [ 12] [ 6] [152826] +15:16:38 [ 13] [ 4] [0320] +15:16:38 [ 14] [ 4] [1249] +15:16:38 [ 15] [ 4] [0320] +15:16:38 [ 18] [ 4] [6011] +15:16:38 [ 19] [ 3] [418] +15:16:38 [ 22] [ 3] [021] +15:16:38 [ 25] [ 2] [01] +15:16:38 [ 28] [ 9] [D00000000] +15:16:38 [ 32] [ 6] [123401] +15:16:38 [ 35] [ 32] [6213544002041124=491212014112957] +15:16:38 [ 37] [ 12] [507900059970] +15:16:38 [ 41] [ 8] [01000400] +15:16:38 [ 42] [ 15] [APT ] +15:16:38 [ 43] [ 40] [LAOS CHUNGJIENG LAOS LAO] +15:16:38 [ 49] [ 3] [418] +15:16:38 [ 52] [ 16] [63B1B8B820025AF5] +15:16:38 ============================================================================ +15:16:38 + + +waiting on router queue for slot.... +15:16:38 Sending to : +15:16:38 ============================================================================ +15:16:38 ============================================================================ +15:16:38 Slot Id : <83> +15:16:38 Transaction Type : REQUEST +15:16:38 Received From : +15:16:38 ============================================================================ +15:16:38 FNo. Len. Field Value +15:16:38 ============================================================================ +15:16:38 [ 1] [ 4] [0200] +15:16:38 [ 2] [ 16] [6213544002041124] +15:16:38 [ 3] [ 6] [300000] +15:16:38 [ 4] [ 12] [000000000000] +15:16:38 [ 7] [ 10] [0320152826] +15:16:38 [ 11] [ 6] [412279] +15:16:38 [ 12] [ 6] [152826] +15:16:38 [ 13] [ 4] [0320] +15:16:38 [ 14] [ 4] [1249] +15:16:38 [ 15] [ 4] [0320] +15:16:38 [ 18] [ 4] [6011] +15:16:38 [ 19] [ 3] [418] +15:16:38 [ 22] [ 3] [021] +15:16:38 [ 25] [ 2] [01] +15:16:38 [ 28] [ 9] [D00000000] +15:16:38 [ 32] [ 6] [123401] +15:16:38 [ 35] [ 32] [6213544002041124=491212014112957] +15:16:38 [ 37] [ 12] [507900059970] +15:16:38 [ 41] [ 8] [01000400] +15:16:38 [ 42] [ 15] [APT ] +15:16:38 [ 43] [ 40] [LAOS CHUNGJIENG LAOS LAO] +15:16:38 [ 49] [ 3] [418] +15:16:38 [ 52] [ 16] [B8E0716AC80BBB67] +15:16:38 ============================================================================ +15:16:38 + + +waiting on router queue for slot.... +15:16:38 Sending to : <0> +15:16:38 ============================================================================ +15:16:38 ============================================================================ +15:16:38 Slot Id : <83> +15:16:38 Transaction Type : RESPONSE +15:16:38 Received From : +15:16:38 ============================================================================ +15:16:38 FNo. Len. Field Value +15:16:38 ============================================================================ +15:16:38 [ 1] [ 4] [0210] +15:16:38 [ 2] [ 16] [6213544002041124] +15:16:38 [ 3] [ 6] [300000] +15:16:38 [ 4] [ 12] [000000000000] +15:16:38 [ 7] [ 10] [0320152826] +15:16:38 [ 11] [ 6] [412279] +15:16:38 [ 12] [ 6] [152826] +15:16:38 [ 13] [ 4] [0320] +15:16:38 [ 15] [ 4] [0320] +15:16:38 [ 18] [ 4] [6011] +15:16:38 [ 19] [ 3] [418] +15:16:38 [ 22] [ 3] [021] +15:16:38 [ 32] [ 6] [123401] +15:16:38 [ 35] [ 32] [6213544002041124=491212014112957] +15:16:38 [ 37] [ 12] [507900059970] +15:16:38 [ 38] [ 6] [151634] +15:16:38 [ 39] [ 2] [55] +15:16:38 [ 41] [ 8] [01000400] +15:16:38 [ 49] [ 3] [418] +15:16:38 ============================================================================ +15:16:38 Sending to : +15:16:38 ============================================================================ +15:16:38 + + +waiting on router queue for slot.... +15:16:39 ============================================================================ +15:16:39 Slot Id : <118> +15:16:39 Transaction Type : REQUEST +15:16:39 Received From : +15:16:39 ============================================================================ +15:16:39 FNo. Len. Field Value +15:16:39 ============================================================================ +15:16:39 [ 1] [ 4] [0800] +15:16:39 [ 7] [ 10] [0320081546] +15:16:39 [ 11] [ 6] [156967] +15:16:39 [ 70] [ 3] [301] +15:16:39 ============================================================================ +15:16:39 + + +waiting on router queue for slot.... +15:16:39 Sending to : +15:16:39 ============================================================================ +15:16:39 ============================================================================ +15:16:39 Slot Id : <118> +15:16:39 Transaction Type : RESPONSE +15:16:39 Received From : +15:16:39 ============================================================================ +15:16:39 FNo. Len. Field Value +15:16:39 ============================================================================ +15:16:39 [ 1] [ 4] [0810] +15:16:39 [ 7] [ 10] [0320081546] +15:16:39 [ 11] [ 6] [156967] +15:16:39 [ 39] [ 2] [00] +15:16:39 [ 70] [ 3] [301] +15:16:39 ============================================================================ +15:16:39 Calculate Source COMM Id = 2 +15:16:39 ============================================================================ +15:16:39 + + +waiting on router queue for slot.... +15:16:39 ============================================================================ +15:16:39 Slot Id : <83> +15:16:39 Transaction Type : RESPONSE +15:16:39 Received From : +15:16:39 ============================================================================ +15:16:39 FNo. Len. Field Value +15:16:39 ============================================================================ +15:16:39 [ 1] [ 4] [0210] +15:16:39 [ 2] [ 16] [6213544002041124] +15:16:39 [ 3] [ 6] [300000] +15:16:39 [ 4] [ 12] [000000000000] +15:16:39 [ 7] [ 10] [0320152826] +15:16:39 [ 11] [ 6] [412279] +15:16:39 [ 12] [ 6] [152826] +15:16:39 [ 13] [ 4] [0320] +15:16:39 [ 15] [ 4] [0320] +15:16:39 [ 18] [ 4] [6011] +15:16:39 [ 19] [ 3] [418] +15:16:39 [ 22] [ 3] [021] +15:16:39 [ 32] [ 6] [123401] +15:16:39 [ 35] [ 32] [6213544002041124=491212014112957] +15:16:39 [ 37] [ 12] [507900059970] +15:16:39 [ 38] [ 6] [151634] +15:16:39 [ 39] [ 2] [55] +15:16:39 [ 41] [ 8] [01000400] +15:16:39 [ 49] [ 3] [418] +15:16:39 ============================================================================ +15:16:39 Calculate Source COMM Id = 6 +15:16:39 ============================================================================ +15:16:39 + + +waiting on router queue for slot.... +15:16:44 ============================================================================ +15:16:44 Slot Id : <107> +15:16:44 Transaction Type : REQUEST +15:16:44 Received From : +15:16:44 ============================================================================ +15:16:44 FNo. Len. Field Value +15:16:44 ============================================================================ +15:16:44 [ 1] [ 4] [0200] +15:16:44 [ 2] [ 16] [1808930200014553] +15:16:44 [ 3] [ 6] [010000] +15:16:44 [ 4] [ 12] [000010000000] +15:16:44 [ 7] [ 10] [0320151639] +15:16:44 [ 11] [ 6] [781219] +15:16:44 [ 12] [ 6] [151639] +15:16:44 [ 13] [ 4] [0320] +15:16:44 [ 15] [ 4] [0320] +15:16:44 [ 18] [ 4] [6011] +15:16:44 [ 22] [ 3] [900] +15:16:44 [ 25] [ 2] [02] +15:16:44 [ 28] [ 9] [D00002000] +15:16:44 [ 32] [ 6] [621354] +15:16:44 [ 35] [ 27] [1808930200014553=1803500341] +15:16:44 [ 37] [ 12] [507904910953] +15:16:44 [ 41] [ 8] [02002500] +15:16:44 [ 42] [ 15] [NATIVE ] +15:16:44 [ 43] [ 40] [Songkhone Unit Hinboun LAO] +15:16:44 [ 49] [ 3] [418] +15:16:44 [ 52] [ 16] [0FAC4B95D5A2018E] +15:16:44 ============================================================================ +15:16:44 + + +waiting on router queue for slot.... +15:16:44 Sending to : +15:16:44 ============================================================================ +15:16:44 Sending to : +15:16:44 ============================================================================ +15:16:44 ============================================================================ +15:16:44 Slot Id : <107> +15:16:44 Transaction Type : REQUEST +15:16:44 Received From : +15:16:44 ============================================================================ +15:16:44 FNo. Len. Field Value +15:16:44 ============================================================================ +15:16:44 [ 1] [ 4] [0200] +15:16:44 [ 2] [ 16] [1808930200014553] +15:16:44 [ 3] [ 6] [010000] +15:16:44 [ 4] [ 12] [000010000000] +15:16:44 [ 7] [ 10] [0320151639] +15:16:44 [ 11] [ 6] [781219] +15:16:44 [ 12] [ 6] [151639] +15:16:44 [ 13] [ 4] [0320] +15:16:44 [ 15] [ 4] [0320] +15:16:44 [ 18] [ 4] [6011] +15:16:44 [ 22] [ 3] [900] +15:16:44 [ 25] [ 2] [02] +15:16:44 [ 28] [ 9] [D00002000] +15:16:44 [ 32] [ 6] [621354] +15:16:44 [ 35] [ 27] [1808930200014553=1803500341] +15:16:44 [ 37] [ 12] [507904910953] +15:16:44 [ 41] [ 8] [02002500] +15:16:44 [ 42] [ 15] [NATIVE ] +15:16:44 [ 43] [ 40] [Songkhone Unit Hinboun LAO] +15:16:44 [ 49] [ 3] [418] +15:16:44 [ 52] [ 16] [0FAC4B95D5A2018E] +15:16:44 ============================================================================ +15:16:44 + + +waiting on router queue for slot.... +15:16:44 Sending to : +15:16:44 ============================================================================ +15:16:44 ============================================================================ +15:16:44 Slot Id : <107> +15:16:44 Transaction Type : REQUEST +15:16:44 Received From : +15:16:44 ============================================================================ +15:16:44 FNo. Len. Field Value +15:16:44 ============================================================================ +15:16:44 [ 1] [ 4] [0200] +15:16:44 [ 2] [ 16] [1808930200014553] +15:16:44 [ 3] [ 6] [010000] +15:16:44 [ 4] [ 12] [000010000000] +15:16:44 [ 7] [ 10] [0320151639] +15:16:44 [ 11] [ 6] [781219] +15:16:44 [ 12] [ 6] [151639] +15:16:44 [ 13] [ 4] [0320] +15:16:44 [ 15] [ 4] [0320] +15:16:44 [ 18] [ 4] [6011] +15:16:44 [ 22] [ 3] [900] +15:16:44 [ 25] [ 2] [02] +15:16:44 [ 28] [ 9] [D00002000] +15:16:44 [ 32] [ 6] [621354] +15:16:44 [ 35] [ 27] [1808930200014553=1803500341] +15:16:44 [ 37] [ 12] [507904910953] +15:16:44 [ 41] [ 8] [02002500] +15:16:44 [ 42] [ 15] [NATIVE ] +15:16:44 [ 43] [ 40] [Songkhone Unit Hinboun LAO] +15:16:44 [ 49] [ 3] [418] +15:16:44 [ 52] [ 16] [B7C90329C544A42A] +15:16:44 ============================================================================ +15:16:44 + + +waiting on router queue for slot.... +15:16:44 Sending to : <2> +15:16:44 ============================================================================ +15:16:49 ============================================================================ +15:16:49 Slot Id : <107> +15:16:49 Transaction Type : RESPONSE +15:16:49 Received From : +15:16:49 ============================================================================ +15:16:49 FNo. Len. Field Value +15:16:49 ============================================================================ +15:16:49 [ 1] [ 4] [0210] +15:16:49 [ 2] [ 16] [1808930200014553] +15:16:49 [ 3] [ 6] [010000] +15:16:49 [ 4] [ 12] [000010000000] +15:16:49 [ 6] [ 12] [000010000000] +15:16:49 [ 7] [ 10] [0320151639] +15:16:49 [ 11] [ 6] [781219] +15:16:49 [ 12] [ 6] [151639] +15:16:49 [ 13] [ 4] [0320] +15:16:49 [ 18] [ 4] [6011] +15:16:49 [ 19] [ 3] [418] +15:16:49 [ 22] [ 3] [021] +15:16:49 [ 32] [ 6] [621354] +15:16:49 [ 35] [ 27] [1808930200014553=1803500341] +15:16:49 [ 37] [ 12] [507904910953] +15:16:49 [ 38] [ 6] [781219] +15:16:49 [ 39] [ 2] [00] +15:16:49 [ 41] [ 8] [02002500] +15:16:49 [ 49] [ 3] [418] +15:16:49 [ 52] [ 16] [B7C90329C544A42A] +15:16:49 [ 54] [ 20] [1001418C000063362800] +15:16:49 ============================================================================ +15:16:49 Sending to : +15:16:49 ============================================================================ +15:16:49 + + +waiting on router queue for slot.... +15:16:51 ============================================================================ +15:16:51 Slot Id : <107> +15:16:51 Transaction Type : RESPONSE +15:16:51 Received From : +15:16:51 ============================================================================ +15:16:51 FNo. Len. Field Value +15:16:51 ============================================================================ +15:16:51 [ 1] [ 4] [0210] +15:16:51 [ 2] [ 16] [1808930200014553] +15:16:51 [ 3] [ 6] [010000] +15:16:51 [ 4] [ 12] [000010000000] +15:16:51 [ 6] [ 12] [000010000000] +15:16:51 [ 7] [ 10] [0320151639] +15:16:51 [ 11] [ 6] [781219] +15:16:51 [ 12] [ 6] [151639] +15:16:51 [ 13] [ 4] [0320] +15:16:51 [ 18] [ 4] [6011] +15:16:51 [ 19] [ 3] [418] +15:16:51 [ 22] [ 3] [021] +15:16:51 [ 32] [ 6] [621354] +15:16:51 [ 35] [ 27] [1808930200014553=1803500341] +15:16:51 [ 37] [ 12] [507904910953] +15:16:51 [ 38] [ 6] [781219] +15:16:51 [ 39] [ 2] [00] +15:16:51 [ 41] [ 8] [02002500] +15:16:51 [ 49] [ 3] [418] +15:16:51 [ 52] [ 16] [B7C90329C544A42A] +15:16:51 [ 54] [ 20] [1001418C000063362800] +15:16:51 ============================================================================ +15:16:51 Calculate Source COMM Id = 0 +15:16:51 ============================================================================ +15:16:51 + + +waiting on router queue for slot.... +15:16:53 ============================================================================ +15:16:53 Slot Id : <74> +15:16:53 Transaction Type : REQUEST +15:16:53 Received From : +15:16:53 ============================================================================ +15:16:53 FNo. Len. Field Value +15:16:53 ============================================================================ +15:16:53 [ 1] [ 4] [0200] +15:16:53 [ 2] [ 16] [6688990105511404] +15:16:53 [ 3] [ 6] [011000] +15:16:53 [ 4] [ 12] [000020000000] +15:16:53 [ 7] [ 10] [0320151648] +15:16:53 [ 11] [ 6] [781250] +15:16:53 [ 12] [ 6] [151648] +15:16:53 [ 13] [ 4] [0320] +15:16:53 [ 15] [ 4] [0320] +15:16:53 [ 18] [ 4] [6011] +15:16:53 [ 22] [ 3] [900] +15:16:53 [ 25] [ 2] [02] +15:16:53 [ 28] [ 9] [D00002000] +15:16:53 [ 32] [ 6] [621354] +15:16:53 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:16:53 [ 37] [ 12] [507903032256] +15:16:53 [ 41] [ 8] [12002600] +15:16:53 [ 42] [ 15] [NATIVE ] +15:16:53 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +15:16:53 [ 49] [ 3] [418] +15:16:53 [ 52] [ 16] [CCEE5547B2654291] +15:16:53 ============================================================================ +15:16:53 + + +waiting on router queue for slot.... +15:16:53 Sending to : +15:16:53 ============================================================================ +15:16:53 Sending to : +15:16:53 ============================================================================ +15:16:53 ============================================================================ +15:16:53 Slot Id : <74> +15:16:53 Transaction Type : REQUEST +15:16:53 Received From : +15:16:53 ============================================================================ +15:16:53 FNo. Len. Field Value +15:16:53 ============================================================================ +15:16:53 [ 1] [ 4] [0200] +15:16:53 [ 2] [ 16] [6688990105511404] +15:16:53 [ 3] [ 6] [011000] +15:16:53 [ 4] [ 12] [000020000000] +15:16:53 [ 7] [ 10] [0320151648] +15:16:53 [ 11] [ 6] [781250] +15:16:53 [ 12] [ 6] [151648] +15:16:53 [ 13] [ 4] [0320] +15:16:53 [ 15] [ 4] [0320] +15:16:53 [ 18] [ 4] [6011] +15:16:53 [ 22] [ 3] [900] +15:16:53 [ 25] [ 2] [02] +15:16:53 [ 28] [ 9] [D00002000] +15:16:53 [ 32] [ 6] [621354] +15:16:53 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:16:53 [ 37] [ 12] [507903032256] +15:16:53 [ 41] [ 8] [12002600] +15:16:53 [ 42] [ 15] [NATIVE ] +15:16:53 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +15:16:53 [ 49] [ 3] [418] +15:16:53 [ 52] [ 16] [CCEE5547B2654291] +15:16:53 ============================================================================ +15:16:53 + + +waiting on router queue for slot.... +15:16:53 Sending to : +15:16:53 ============================================================================ +15:16:53 ============================================================================ +15:16:53 Slot Id : <74> +15:16:53 Transaction Type : REQUEST +15:16:53 Received From : +15:16:53 ============================================================================ +15:16:53 FNo. Len. Field Value +15:16:53 ============================================================================ +15:16:53 [ 1] [ 4] [0200] +15:16:53 [ 2] [ 16] [6688990105511404] +15:16:53 [ 3] [ 6] [011000] +15:16:53 [ 4] [ 12] [000020000000] +15:16:53 [ 7] [ 10] [0320151648] +15:16:53 [ 11] [ 6] [781250] +15:16:53 [ 12] [ 6] [151648] +15:16:53 [ 13] [ 4] [0320] +15:16:53 [ 15] [ 4] [0320] +15:16:53 [ 18] [ 4] [6011] +15:16:53 [ 22] [ 3] [900] +15:16:53 [ 25] [ 2] [02] +15:16:53 [ 28] [ 9] [D00002000] +15:16:53 [ 32] [ 6] [621354] +15:16:53 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:16:53 [ 37] [ 12] [507903032256] +15:16:53 [ 41] [ 8] [12002600] +15:16:53 [ 42] [ 15] [NATIVE ] +15:16:53 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +15:16:53 [ 49] [ 3] [418] +15:16:53 [ 52] [ 16] [9D4889D79A877A12] +15:16:53 ============================================================================ +15:16:53 + + +waiting on router queue for slot.... +15:16:53 Sending to : <4> +15:16:53 ============================================================================ +15:16:55 ============================================================================ +15:16:55 Slot Id : <74> +15:16:55 Transaction Type : RESPONSE +15:16:55 Received From : +15:16:55 ============================================================================ +15:16:55 FNo. Len. Field Value +15:16:55 ============================================================================ +15:16:55 [ 1] [ 4] [0210] +15:16:55 [ 2] [ 16] [6688990105511404] +15:16:55 [ 3] [ 6] [011000] +15:16:55 [ 4] [ 12] [000020000000] +15:16:55 [ 11] [ 6] [781250] +15:16:55 [ 12] [ 6] [151648] +15:16:55 [ 15] [ 4] [0320] +15:16:55 [ 18] [ 4] [6011] +15:16:55 [ 32] [ 6] [621354] +15:16:55 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:16:55 [ 37] [ 12] [507903032256] +15:16:55 [ 38] [ 6] [929229] +15:16:55 [ 39] [ 2] [00] +15:16:55 [ 41] [ 8] [12002600] +15:16:55 [ 49] [ 3] [418] +15:16:55 [ 54] [ 20] [1002418C000004562402] +15:16:55 ============================================================================ +15:16:55 Sending to : +15:16:55 ============================================================================ +15:16:55 + + +waiting on router queue for slot.... +15:16:55 ============================================================================ +15:16:55 Slot Id : <121> +15:16:55 Transaction Type : REQUEST +15:16:55 Received From : +15:16:55 ============================================================================ +15:16:55 FNo. Len. Field Value +15:16:55 ============================================================================ +15:16:55 [ 0] [ 4] [0420] +15:16:55 [ 1] [ 4] [0420] +15:16:55 [ 2] [ 16] [6213545000095913] +15:16:55 [ 3] [ 6] [012000] +15:16:55 [ 4] [ 12] [000100000000] +15:16:55 [ 6] [ 12] [000100000000] +15:16:55 [ 7] [ 10] [0320151600] +15:16:55 [ 11] [ 6] [079110] +15:16:55 [ 12] [ 6] [151600] +15:16:55 [ 13] [ 4] [0320] +15:16:55 [ 14] [ 4] [4912] +15:16:55 [ 15] [ 4] [0320] +15:16:55 [ 18] [ 4] [6011] +15:16:55 [ 22] [ 3] [900] +15:16:55 [ 25] [ 2] [02] +15:16:55 [ 28] [ 9] [D00002000] +15:16:55 [ 32] [ 6] [220699] +15:16:55 [ 35] [ 32] [6213545000095913=491212019591128] +15:16:55 [ 37] [ 12] [507900132975] +15:16:55 [ 39] [ 2] [00] +15:16:55 [ 41] [ 8] [03000100] +15:16:55 [ 42] [ 15] [APTRA ] +15:16:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:16:55 [ 49] [ 3] [418] +15:16:55 [ 52] [ 16] [B71C479FEF30629B] +15:16:55 ============================================================================ +15:16:55 + + +waiting on router queue for slot.... +15:16:55 ============================================================================ +15:16:55 Slot Id : <115> +15:16:55 Transaction Type : REQUEST +15:16:55 Received From : +15:16:55 ============================================================================ +15:16:55 FNo. Len. Field Value +15:16:55 ============================================================================ +15:16:55 [ 1] [ 4] [0800] +15:16:55 [ 7] [ 10] [0320081602] +15:16:55 [ 11] [ 6] [156968] +15:16:55 [ 70] [ 3] [301] +15:16:55 ============================================================================ +15:16:55 + + +waiting on router queue for slot.... +15:16:55 Sending to : +15:16:55 ============================================================================ +15:16:55 ============================================================================ +15:16:55 Slot Id : <115> +15:16:55 Transaction Type : RESPONSE +15:16:55 Received From : +15:16:55 ============================================================================ +15:16:55 FNo. Len. Field Value +15:16:55 ============================================================================ +15:16:55 [ 1] [ 4] [0810] +15:16:55 [ 7] [ 10] [0320081602] +15:16:55 [ 11] [ 6] [156968] +15:16:55 [ 39] [ 2] [00] +15:16:55 [ 70] [ 3] [301] +15:16:55 ============================================================================ +15:16:55 Calculate Source COMM Id = 2 +15:16:55 ============================================================================ +15:16:55 + + +waiting on router queue for slot.... +15:16:55 ============================================================================ +15:16:55 Slot Id : <121> +15:16:55 Transaction Type : RESPONSE +15:16:55 Received From : +15:16:55 ============================================================================ +15:16:55 FNo. Len. Field Value +15:16:55 ============================================================================ +15:16:55 [ 1] [ 4] [0430] +15:16:55 [ 2] [ 16] [6213545000095913] +15:16:55 [ 3] [ 6] [012000] +15:16:55 [ 4] [ 12] [000100000000] +15:16:55 [ 7] [ 10] [0320151600] +15:16:55 [ 11] [ 6] [079110] +15:16:55 [ 32] [ 6] [220699] +15:16:55 [ 35] [ 32] [6213545000095913=491212019591128] +15:16:55 [ 37] [ 12] [507900132975] +15:16:55 [ 39] [ 2] [00] +15:16:55 [ 41] [ 8] [03000100] +15:16:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:16:55 [ 49] [ 3] [418] +15:16:55 [ 90] [ 42] [020007911003201516000000022069900000000000] +15:16:55 ============================================================================ +15:16:55 Successfully send the slot [121] To REVERSAL Process +15:16:55 + + +waiting on router queue for slot.... +15:16:56 ============================================================================ +15:16:56 Slot Id : <74> +15:16:56 Transaction Type : RESPONSE +15:16:56 Received From : +15:16:56 ============================================================================ +15:16:56 FNo. Len. Field Value +15:16:56 ============================================================================ +15:16:56 [ 1] [ 4] [0210] +15:16:56 [ 2] [ 16] [6688990105511404] +15:16:56 [ 3] [ 6] [011000] +15:16:56 [ 4] [ 12] [000020000000] +15:16:56 [ 11] [ 6] [781250] +15:16:56 [ 12] [ 6] [151648] +15:16:56 [ 15] [ 4] [0320] +15:16:56 [ 18] [ 4] [6011] +15:16:56 [ 32] [ 6] [621354] +15:16:56 [ 35] [ 37] [6688990105511404=43091231140487300000] +15:16:56 [ 37] [ 12] [507903032256] +15:16:56 [ 38] [ 6] [929229] +15:16:56 [ 39] [ 2] [00] +15:16:56 [ 41] [ 8] [12002600] +15:16:56 [ 49] [ 3] [418] +15:16:56 [ 54] [ 20] [1002418C000004562402] +15:16:56 ============================================================================ +15:16:56 Calculate Source COMM Id = 0 +15:16:56 ============================================================================ +15:16:56 + + +waiting on router queue for slot.... +15:16:58 ============================================================================ +15:16:58 Slot Id : <92> +15:16:58 Transaction Type : REQUEST +15:16:58 Received From : +15:16:58 ============================================================================ +15:16:58 FNo. Len. Field Value +15:16:58 ============================================================================ +15:16:58 [ 1] [ 4] [0200] +15:16:58 [ 2] [ 16] [6688990104677305] +15:16:58 [ 3] [ 6] [301000] +15:16:58 [ 4] [ 12] [000000000000] +15:16:58 [ 7] [ 10] [0320151653] +15:16:58 [ 11] [ 6] [781274] +15:16:58 [ 12] [ 6] [151653] +15:16:58 [ 13] [ 4] [0320] +15:16:58 [ 15] [ 4] [0320] +15:16:58 [ 18] [ 4] [6011] +15:16:58 [ 22] [ 3] [900] +15:16:58 [ 25] [ 2] [02] +15:16:58 [ 28] [ 9] [D00000000] +15:16:58 [ 32] [ 6] [621354] +15:16:58 [ 35] [ 37] [6688990104677305=43051231730544400000] +15:16:58 [ 37] [ 12] [507904789450] +15:16:58 [ 41] [ 8] [07001400] +15:16:58 [ 42] [ 15] [NATIVE ] +15:16:58 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +15:16:58 [ 49] [ 3] [418] +15:16:58 [ 52] [ 16] [7F0738643A80D7A5] +15:16:58 ============================================================================ +15:16:58 + + +waiting on router queue for slot.... +15:16:58 Sending to : +15:16:58 ============================================================================ +15:16:58 Sending to : +15:16:58 ============================================================================ +15:16:58 ============================================================================ +15:16:58 Slot Id : <92> +15:16:58 Transaction Type : REQUEST +15:16:58 Received From : +15:16:58 ============================================================================ +15:16:58 FNo. Len. Field Value +15:16:58 ============================================================================ +15:16:58 [ 1] [ 4] [0200] +15:16:58 [ 2] [ 16] [6688990104677305] +15:16:58 [ 3] [ 6] [301000] +15:16:58 [ 4] [ 12] [000000000000] +15:16:58 [ 7] [ 10] [0320151653] +15:16:58 [ 11] [ 6] [781274] +15:16:58 [ 12] [ 6] [151653] +15:16:58 [ 13] [ 4] [0320] +15:16:58 [ 15] [ 4] [0320] +15:16:58 [ 18] [ 4] [6011] +15:16:58 [ 22] [ 3] [900] +15:16:58 [ 25] [ 2] [02] +15:16:58 [ 28] [ 9] [D00000000] +15:16:58 [ 32] [ 6] [621354] +15:16:58 [ 35] [ 37] [6688990104677305=43051231730544400000] +15:16:58 [ 37] [ 12] [507904789450] +15:16:58 [ 41] [ 8] [07001400] +15:16:58 [ 42] [ 15] [NATIVE ] +15:16:58 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +15:16:58 [ 49] [ 3] [418] +15:16:58 [ 52] [ 16] [7F0738643A80D7A5] +15:16:58 ============================================================================ +15:16:58 + + +waiting on router queue for slot.... +15:16:58 Sending to : +15:16:58 ============================================================================ +15:16:58 ============================================================================ +15:16:58 Slot Id : <92> +15:16:58 Transaction Type : REQUEST +15:16:58 Received From : +15:16:58 ============================================================================ +15:16:58 FNo. Len. Field Value +15:16:58 ============================================================================ +15:16:58 [ 1] [ 4] [0200] +15:16:58 [ 2] [ 16] [6688990104677305] +15:16:58 [ 3] [ 6] [301000] +15:16:58 [ 4] [ 12] [000000000000] +15:16:58 [ 7] [ 10] [0320151653] +15:16:58 [ 11] [ 6] [781274] +15:16:58 [ 12] [ 6] [151653] +15:16:58 [ 13] [ 4] [0320] +15:16:58 [ 15] [ 4] [0320] +15:16:58 [ 18] [ 4] [6011] +15:16:58 [ 22] [ 3] [900] +15:16:58 [ 25] [ 2] [02] +15:16:58 [ 28] [ 9] [D00000000] +15:16:58 [ 32] [ 6] [621354] +15:16:58 [ 35] [ 37] [6688990104677305=43051231730544400000] +15:16:58 [ 37] [ 12] [507904789450] +15:16:58 [ 41] [ 8] [07001400] +15:16:58 [ 42] [ 15] [NATIVE ] +15:16:58 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +15:16:58 [ 49] [ 3] [418] +15:16:58 [ 52] [ 16] [E911FDA6EBC43B76] +15:16:58 ============================================================================ +15:16:58 + + +waiting on router queue for slot.... +15:16:58 Sending to : <4> +15:16:58 ============================================================================ +15:16:59 ============================================================================ +15:16:59 Slot Id : <92> +15:16:59 Transaction Type : RESPONSE +15:16:59 Received From : +15:16:59 ============================================================================ +15:16:59 FNo. Len. Field Value +15:16:59 ============================================================================ +15:16:59 [ 1] [ 4] [0210] +15:16:59 [ 2] [ 16] [6688990104677305] +15:16:59 [ 3] [ 6] [301000] +15:16:59 [ 4] [ 12] [000000000000] +15:16:59 [ 11] [ 6] [781274] +15:16:59 [ 12] [ 6] [151653] +15:16:59 [ 15] [ 4] [0320] +15:16:59 [ 18] [ 4] [6011] +15:16:59 [ 32] [ 6] [621354] +15:16:59 [ 35] [ 37] [6688990104677305=43051231730544400000] +15:16:59 [ 37] [ 12] [507904789450] +15:16:59 [ 38] [ 6] [740686] +15:16:59 [ 39] [ 2] [00] +15:16:59 [ 41] [ 8] [07001400] +15:16:59 [ 49] [ 3] [418] +15:16:59 [ 54] [ 20] [1002418C000922917623] +15:16:59 ============================================================================ +15:16:59 Sending to : +15:16:59 ============================================================================ +15:16:59 + + +waiting on router queue for slot.... +15:17:01 ============================================================================ +15:17:01 Slot Id : <92> +15:17:01 Transaction Type : RESPONSE +15:17:01 Received From : +15:17:01 ============================================================================ +15:17:01 FNo. Len. Field Value +15:17:01 ============================================================================ +15:17:01 [ 1] [ 4] [0210] +15:17:01 [ 2] [ 16] [6688990104677305] +15:17:01 [ 3] [ 6] [301000] +15:17:01 [ 4] [ 12] [000000000000] +15:17:01 [ 11] [ 6] [781274] +15:17:01 [ 12] [ 6] [151653] +15:17:01 [ 15] [ 4] [0320] +15:17:01 [ 18] [ 4] [6011] +15:17:01 [ 32] [ 6] [621354] +15:17:01 [ 35] [ 37] [6688990104677305=43051231730544400000] +15:17:01 [ 37] [ 12] [507904789450] +15:17:01 [ 38] [ 6] [740686] +15:17:01 [ 39] [ 2] [00] +15:17:01 [ 41] [ 8] [07001400] +15:17:01 [ 49] [ 3] [418] +15:17:01 [ 54] [ 20] [1002418C000922917623] +15:17:01 ============================================================================ +15:17:01 Calculate Source COMM Id = 0 +15:17:01 ============================================================================ +15:17:01 + + +waiting on router queue for slot.... +15:17:06 ============================================================================ +15:17:06 Slot Id : <108> +15:17:06 Transaction Type : REQUEST +15:17:06 Received From : +15:17:06 ============================================================================ +15:17:06 FNo. Len. Field Value +15:17:06 ============================================================================ +15:17:06 [ 1] [ 4] [0200] +15:17:06 [ 2] [ 16] [6688990102595608] +15:17:06 [ 3] [ 6] [010000] +15:17:06 [ 4] [ 12] [000005000000] +15:17:06 [ 7] [ 10] [0320151701] +15:17:06 [ 11] [ 6] [781314] +15:17:06 [ 12] [ 6] [151701] +15:17:06 [ 13] [ 4] [0320] +15:17:06 [ 15] [ 4] [0320] +15:17:06 [ 18] [ 4] [6011] +15:17:06 [ 22] [ 3] [900] +15:17:06 [ 25] [ 2] [02] +15:17:06 [ 28] [ 9] [D00002000] +15:17:06 [ 32] [ 6] [621354] +15:17:06 [ 35] [ 37] [6688990102595608=42091231560891700000] +15:17:06 [ 37] [ 12] [507902916588] +15:17:06 [ 41] [ 8] [12001400] +15:17:06 [ 42] [ 15] [NATIVE ] +15:17:06 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:17:06 [ 49] [ 3] [418] +15:17:06 [ 52] [ 16] [80B2B08647EE0796] +15:17:06 ============================================================================ +15:17:06 + + +waiting on router queue for slot.... +15:17:06 Sending to : +15:17:06 ============================================================================ +15:17:06 Sending to : +15:17:06 ============================================================================ +15:17:06 ============================================================================ +15:17:06 Slot Id : <108> +15:17:06 Transaction Type : REQUEST +15:17:06 Received From : +15:17:06 ============================================================================ +15:17:06 FNo. Len. Field Value +15:17:06 ============================================================================ +15:17:06 [ 1] [ 4] [0200] +15:17:06 [ 2] [ 16] [6688990102595608] +15:17:06 [ 3] [ 6] [010000] +15:17:06 [ 4] [ 12] [000005000000] +15:17:06 [ 7] [ 10] [0320151701] +15:17:06 [ 11] [ 6] [781314] +15:17:06 [ 12] [ 6] [151701] +15:17:06 [ 13] [ 4] [0320] +15:17:06 [ 15] [ 4] [0320] +15:17:06 [ 18] [ 4] [6011] +15:17:06 [ 22] [ 3] [900] +15:17:06 [ 25] [ 2] [02] +15:17:06 [ 28] [ 9] [D00002000] +15:17:06 [ 32] [ 6] [621354] +15:17:06 [ 35] [ 37] [6688990102595608=42091231560891700000] +15:17:06 [ 37] [ 12] [507902916588] +15:17:06 [ 41] [ 8] [12001400] +15:17:06 [ 42] [ 15] [NATIVE ] +15:17:06 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:17:06 [ 49] [ 3] [418] +15:17:06 [ 52] [ 16] [80B2B08647EE0796] +15:17:06 ============================================================================ +15:17:06 + + +waiting on router queue for slot.... +15:17:06 Sending to : +15:17:06 ============================================================================ +15:17:06 ============================================================================ +15:17:06 Slot Id : <108> +15:17:06 Transaction Type : REQUEST +15:17:06 Received From : +15:17:06 ============================================================================ +15:17:06 FNo. Len. Field Value +15:17:06 ============================================================================ +15:17:06 [ 1] [ 4] [0200] +15:17:06 [ 2] [ 16] [6688990102595608] +15:17:06 [ 3] [ 6] [010000] +15:17:06 [ 4] [ 12] [000005000000] +15:17:06 [ 7] [ 10] [0320151701] +15:17:06 [ 11] [ 6] [781314] +15:17:06 [ 12] [ 6] [151701] +15:17:06 [ 13] [ 4] [0320] +15:17:06 [ 15] [ 4] [0320] +15:17:06 [ 18] [ 4] [6011] +15:17:06 [ 22] [ 3] [900] +15:17:06 [ 25] [ 2] [02] +15:17:06 [ 28] [ 9] [D00002000] +15:17:06 [ 32] [ 6] [621354] +15:17:06 [ 35] [ 37] [6688990102595608=42091231560891700000] +15:17:06 [ 37] [ 12] [507902916588] +15:17:06 [ 41] [ 8] [12001400] +15:17:06 [ 42] [ 15] [NATIVE ] +15:17:06 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:17:06 [ 49] [ 3] [418] +15:17:06 [ 52] [ 16] [39BC412B95EAFC2F] +15:17:06 ============================================================================ +15:17:06 + + +waiting on router queue for slot.... +15:17:06 Sending to : <4> +15:17:06 ============================================================================ +15:17:07 ============================================================================ +15:17:07 Slot Id : <108> +15:17:07 Transaction Type : RESPONSE +15:17:07 Received From : +15:17:07 ============================================================================ +15:17:07 FNo. Len. Field Value +15:17:07 ============================================================================ +15:17:07 [ 1] [ 4] [0210] +15:17:07 [ 2] [ 16] [6688990102595608] +15:17:07 [ 3] [ 6] [010000] +15:17:07 [ 4] [ 12] [000005000000] +15:17:07 [ 11] [ 6] [781314] +15:17:07 [ 12] [ 6] [151701] +15:17:07 [ 15] [ 4] [0320] +15:17:07 [ 18] [ 4] [6011] +15:17:07 [ 32] [ 6] [621354] +15:17:07 [ 35] [ 37] [6688990102595608=42091231560891700000] +15:17:07 [ 37] [ 12] [507902916588] +15:17:07 [ 38] [ 6] [762393] +15:17:07 [ 39] [ 2] [00] +15:17:07 [ 41] [ 8] [12001400] +15:17:07 [ 49] [ 3] [418] +15:17:07 [ 54] [ 20] [0002418C000019332566] +15:17:07 ============================================================================ +15:17:07 Sending to : +15:17:07 ============================================================================ +15:17:07 + + +waiting on router queue for slot.... +15:17:09 ============================================================================ +15:17:09 Slot Id : <108> +15:17:09 Transaction Type : RESPONSE +15:17:09 Received From : +15:17:09 ============================================================================ +15:17:09 FNo. Len. Field Value +15:17:09 ============================================================================ +15:17:09 [ 1] [ 4] [0210] +15:17:09 [ 2] [ 16] [6688990102595608] +15:17:09 [ 3] [ 6] [010000] +15:17:09 [ 4] [ 12] [000005000000] +15:17:09 [ 11] [ 6] [781314] +15:17:09 [ 12] [ 6] [151701] +15:17:09 [ 15] [ 4] [0320] +15:17:09 [ 18] [ 4] [6011] +15:17:09 [ 32] [ 6] [621354] +15:17:09 [ 35] [ 37] [6688990102595608=42091231560891700000] +15:17:09 [ 37] [ 12] [507902916588] +15:17:09 [ 38] [ 6] [762393] +15:17:09 [ 39] [ 2] [00] +15:17:09 [ 41] [ 8] [12001400] +15:17:09 [ 49] [ 3] [418] +15:17:09 [ 54] [ 20] [0002418C000019332566] +15:17:09 ============================================================================ +15:17:09 Calculate Source COMM Id = 0 +15:17:09 ============================================================================ +15:17:09 + + +waiting on router queue for slot.... +15:17:11 ============================================================================ +15:17:11 Slot Id : <113> +15:17:11 Transaction Type : REQUEST +15:17:11 Received From : +15:17:11 ============================================================================ +15:17:11 FNo. Len. Field Value +15:17:11 ============================================================================ +15:17:11 [ 1] [ 4] [0800] +15:17:11 [ 7] [ 10] [0320081618] +15:17:11 [ 11] [ 6] [156969] +15:17:11 [ 70] [ 3] [301] +15:17:11 ============================================================================ +15:17:11 + + +waiting on router queue for slot.... +15:17:11 Sending to : +15:17:11 ============================================================================ +15:17:11 ============================================================================ +15:17:11 Slot Id : <113> +15:17:11 Transaction Type : RESPONSE +15:17:11 Received From : +15:17:11 ============================================================================ +15:17:11 FNo. Len. Field Value +15:17:11 ============================================================================ +15:17:11 [ 1] [ 4] [0810] +15:17:11 [ 7] [ 10] [0320081618] +15:17:11 [ 11] [ 6] [156969] +15:17:11 [ 39] [ 2] [00] +15:17:11 [ 70] [ 3] [301] +15:17:11 ============================================================================ +15:17:11 Calculate Source COMM Id = 2 +15:17:11 ============================================================================ +15:17:11 + + +waiting on router queue for slot.... +15:17:12 ============================================================================ +15:17:12 Slot Id : <127> +15:17:12 Transaction Type : REQUEST +15:17:12 Received From : +15:17:12 ============================================================================ +15:17:12 FNo. Len. Field Value +15:17:12 ============================================================================ +15:17:12 [ 1] [ 4] [0200] +15:17:12 [ 2] [ 16] [6688990040035915] +15:17:12 [ 3] [ 6] [011000] +15:17:12 [ 4] [ 12] [000200000000] +15:17:12 [ 7] [ 10] [0320151733] +15:17:12 [ 11] [ 6] [207827] +15:17:12 [ 12] [ 6] [031543] +15:17:12 [ 13] [ 4] [0320] +15:17:12 [ 14] [ 4] [9711] +15:17:12 [ 15] [ 4] [0320] +15:17:12 [ 18] [ 4] [6011] +15:17:12 [ 19] [ 3] [418] +15:17:12 [ 22] [ 3] [021] +15:17:12 [ 25] [ 2] [01] +15:17:12 [ 28] [ 9] [D00002000] +15:17:12 [ 32] [ 6] [198901] +15:17:12 [ 35] [ 37] [6688990040035915=97111261369775200000] +15:17:12 [ 37] [ 12] [507915207827] +15:17:12 [ 41] [ 8] [01529031] +15:17:12 [ 42] [ 15] [000000041529031] +15:17:12 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:17:12 [ 49] [ 3] [418] +15:17:12 [ 52] [ 16] [C89FA47B46157C94] +15:17:12 ============================================================================ +15:17:12 + + +waiting on router queue for slot.... +15:17:12 Sending to : +15:17:12 ============================================================================ +15:17:12 Sending to : +15:17:12 ============================================================================ +15:17:12 ============================================================================ +15:17:12 Slot Id : <94> +15:17:12 Transaction Type : REQUEST +15:17:12 Received From : +15:17:12 ============================================================================ +15:17:12 FNo. Len. Field Value +15:17:12 ============================================================================ +15:17:12 [ 1] [ 4] [0800] +15:17:12 [ 2] [ 5] [02531] +15:17:12 [ 3] [ 6] [579158] +15:17:12 [ 7] [ 10] [0320081712] +15:17:12 [ 11] [ 6] [807299] +15:17:12 [ 15] [ 10] [0320081712] +15:17:12 [ 37] [ 11] [57915807299] +15:17:12 [ 70] [ 3] [001] +15:17:12 ============================================================================ +15:17:12 + + +waiting on router queue for slot.... +15:17:13 ============================================================================ +15:17:13 Slot Id : <94> +15:17:13 Transaction Type : RESPONSE +15:17:13 Received From : +15:17:13 ============================================================================ +15:17:13 FNo. Len. Field Value +15:17:13 ============================================================================ +15:17:13 [ 1] [ 4] [0810] +15:17:13 [ 7] [ 10] [0320081712] +15:17:13 [ 11] [ 6] [807299] +15:17:13 [ 15] [ 4] [0320] +15:17:13 [ 37] [ 12] [57915807299] +15:17:13 [ 39] [ 2] [00] +15:17:13 [ 70] [ 3] [001] +15:17:13 ============================================================================ +15:17:13 Sending to : +15:17:13 ============================================================================ +15:17:13 + + +waiting on router queue for slot.... +15:17:13 ============================================================================ +15:17:13 Slot Id : <127> +15:17:13 Transaction Type : REQUEST +15:17:13 Received From : +15:17:13 ============================================================================ +15:17:13 FNo. Len. Field Value +15:17:13 ============================================================================ +15:17:13 [ 1] [ 4] [0200] +15:17:13 [ 2] [ 16] [6688990040035915] +15:17:13 [ 3] [ 6] [011000] +15:17:13 [ 4] [ 12] [000200000000] +15:17:13 [ 7] [ 10] [0320151733] +15:17:13 [ 11] [ 6] [207827] +15:17:13 [ 12] [ 6] [031543] +15:17:13 [ 13] [ 4] [0320] +15:17:13 [ 14] [ 4] [9711] +15:17:13 [ 15] [ 4] [0320] +15:17:13 [ 18] [ 4] [6011] +15:17:13 [ 19] [ 3] [418] +15:17:13 [ 22] [ 3] [021] +15:17:13 [ 25] [ 2] [01] +15:17:13 [ 28] [ 9] [D00002000] +15:17:13 [ 32] [ 6] [198901] +15:17:13 [ 35] [ 37] [6688990040035915=97111261369775200000] +15:17:13 [ 37] [ 12] [507915207827] +15:17:13 [ 41] [ 8] [01529031] +15:17:13 [ 42] [ 15] [000000041529031] +15:17:13 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:17:13 [ 49] [ 3] [418] +15:17:13 [ 52] [ 16] [C89FA47B46157C94] +15:17:13 ============================================================================ +15:17:13 + + +waiting on router queue for slot.... +15:17:13 Sending to : +15:17:13 ============================================================================ +15:17:13 ============================================================================ +15:17:13 Slot Id : <127> +15:17:13 Transaction Type : REQUEST +15:17:13 Received From : +15:17:13 ============================================================================ +15:17:13 FNo. Len. Field Value +15:17:13 ============================================================================ +15:17:13 [ 1] [ 4] [0200] +15:17:13 [ 2] [ 16] [6688990040035915] +15:17:13 [ 3] [ 6] [011000] +15:17:13 [ 4] [ 12] [000200000000] +15:17:13 [ 7] [ 10] [0320151733] +15:17:13 [ 11] [ 6] [207827] +15:17:13 [ 12] [ 6] [031543] +15:17:13 [ 13] [ 4] [0320] +15:17:13 [ 14] [ 4] [9711] +15:17:13 [ 15] [ 4] [0320] +15:17:13 [ 18] [ 4] [6011] +15:17:13 [ 19] [ 3] [418] +15:17:13 [ 22] [ 3] [021] +15:17:13 [ 25] [ 2] [01] +15:17:13 [ 28] [ 9] [D00002000] +15:17:13 [ 32] [ 6] [198901] +15:17:13 [ 35] [ 37] [6688990040035915=97111261369775200000] +15:17:13 [ 37] [ 12] [507915207827] +15:17:13 [ 41] [ 8] [01529031] +15:17:13 [ 42] [ 15] [000000041529031] +15:17:13 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:17:13 [ 49] [ 3] [418] +15:17:13 [ 52] [ 16] [CD6DD946DCFA3CD9] +15:17:13 ============================================================================ +15:17:13 + + +waiting on router queue for slot.... +15:17:13 Sending to : <4> +15:17:13 ============================================================================ +15:17:13 ============================================================================ +15:17:13 Slot Id : <127> +15:17:13 Transaction Type : RESPONSE +15:17:13 Received From : +15:17:13 ============================================================================ +15:17:13 FNo. Len. Field Value +15:17:13 ============================================================================ +15:17:13 [ 1] [ 4] [0210] +15:17:13 [ 2] [ 16] [6688990040035915] +15:17:13 [ 3] [ 6] [011000] +15:17:13 [ 4] [ 12] [000200000000] +15:17:13 [ 7] [ 10] [0320151733] +15:17:13 [ 11] [ 6] [207827] +15:17:13 [ 12] [ 6] [031543] +15:17:13 [ 13] [ 4] [0320] +15:17:13 [ 15] [ 4] [0320] +15:17:13 [ 18] [ 4] [6011] +15:17:13 [ 22] [ 3] [021] +15:17:13 [ 32] [ 6] [198901] +15:17:13 [ 35] [ 37] [6688990040035915=97111261369775200000] +15:17:13 [ 37] [ 12] [507915207827] +15:17:13 [ 39] [ 2] [64] +15:17:13 [ 41] [ 8] [01529031] +15:17:13 [ 49] [ 3] [418] +15:17:13 ============================================================================ +15:17:13 Sending to : +15:17:13 ============================================================================ +15:17:13 + + +waiting on router queue for slot.... +15:17:14 ============================================================================ +15:17:14 Slot Id : <127> +15:17:14 Transaction Type : RESPONSE +15:17:14 Received From : +15:17:14 ============================================================================ +15:17:14 FNo. Len. Field Value +15:17:14 ============================================================================ +15:17:14 [ 1] [ 4] [0210] +15:17:14 [ 2] [ 16] [6688990040035915] +15:17:14 [ 3] [ 6] [011000] +15:17:14 [ 4] [ 12] [000200000000] +15:17:14 [ 7] [ 10] [0320151733] +15:17:14 [ 11] [ 6] [207827] +15:17:14 [ 12] [ 6] [031543] +15:17:14 [ 13] [ 4] [0320] +15:17:14 [ 15] [ 4] [0320] +15:17:14 [ 18] [ 4] [6011] +15:17:14 [ 22] [ 3] [021] +15:17:14 [ 32] [ 6] [198901] +15:17:14 [ 35] [ 37] [6688990040035915=97111261369775200000] +15:17:14 [ 37] [ 12] [507915207827] +15:17:14 [ 39] [ 2] [64] +15:17:14 [ 41] [ 8] [01529031] +15:17:14 [ 49] [ 3] [418] +15:17:14 ============================================================================ +15:17:14 Calculate Source COMM Id = 5 +15:17:14 ============================================================================ +15:17:14 + + +waiting on router queue for slot.... +15:17:22 ============================================================================ +15:17:22 Slot Id : <75> +15:17:22 Transaction Type : REQUEST +15:17:22 Received From : +15:17:22 ============================================================================ +15:17:22 FNo. Len. Field Value +15:17:22 ============================================================================ +15:17:22 [ 1] [ 4] [0800] +15:17:22 [ 7] [ 10] [0320081629] +15:17:22 [ 11] [ 6] [156970] +15:17:22 [ 70] [ 3] [301] +15:17:22 ============================================================================ +15:17:22 + + +waiting on router queue for slot.... +15:17:22 Sending to : +15:17:22 ============================================================================ +15:17:22 ============================================================================ +15:17:22 Slot Id : <75> +15:17:22 Transaction Type : RESPONSE +15:17:22 Received From : +15:17:22 ============================================================================ +15:17:22 FNo. Len. Field Value +15:17:22 ============================================================================ +15:17:22 [ 1] [ 4] [0810] +15:17:22 [ 7] [ 10] [0320081629] +15:17:22 [ 11] [ 6] [156970] +15:17:22 [ 39] [ 2] [00] +15:17:22 [ 70] [ 3] [301] +15:17:22 ============================================================================ +15:17:22 Calculate Source COMM Id = 2 +15:17:22 ============================================================================ +15:17:22 + + +waiting on router queue for slot.... +15:17:26 ============================================================================ +15:17:26 Slot Id : <95> +15:17:26 Transaction Type : REQUEST +15:17:26 Received From : +15:17:26 ============================================================================ +15:17:26 FNo. Len. Field Value +15:17:26 ============================================================================ +15:17:26 [ 1] [ 4] [0800] +15:17:26 [ 7] [ 10] [0320222915] +15:17:26 [ 11] [ 6] [152915] +15:17:26 [ 37] [ 12] [57915152915] +15:17:26 [ 70] [ 3] [301] +15:17:26 ============================================================================ +15:17:26 + + +waiting on router queue for slot.... +15:17:26 Sending to : +15:17:26 ============================================================================ +15:17:26 ============================================================================ +15:17:26 Slot Id : <95> +15:17:26 Transaction Type : RESPONSE +15:17:26 Received From : +15:17:26 ============================================================================ +15:17:26 FNo. Len. Field Value +15:17:26 ============================================================================ +15:17:26 [ 1] [ 4] [0810] +15:17:26 [ 7] [ 10] [0320222915] +15:17:26 [ 11] [ 6] [152915] +15:17:26 [ 37] [ 12] [579151529150] +15:17:26 [ 39] [ 2] [00] +15:17:26 [ 70] [ 3] [810] +15:17:26 ============================================================================ +15:17:26 Calculate Source COMM Id = 6 +15:17:26 ============================================================================ +15:17:26 + + +waiting on router queue for slot.... +15:17:28 ============================================================================ +15:17:28 Slot Id : <53> +15:17:28 Transaction Type : REQUEST +15:17:28 Received From : +15:17:28 ============================================================================ +15:17:28 FNo. Len. Field Value +15:17:28 ============================================================================ +15:17:28 [ 1] [ 4] [0200] +15:17:28 [ 2] [ 16] [6688990100660305] +15:17:28 [ 3] [ 6] [011000] +15:17:28 [ 4] [ 12] [000030000000] +15:17:28 [ 7] [ 10] [0320151721] +15:17:28 [ 11] [ 6] [781408] +15:17:28 [ 12] [ 6] [151721] +15:17:28 [ 13] [ 4] [0320] +15:17:28 [ 15] [ 4] [0320] +15:17:28 [ 18] [ 4] [6011] +15:17:28 [ 22] [ 3] [900] +15:17:28 [ 25] [ 2] [02] +15:17:28 [ 28] [ 9] [D00002000] +15:17:28 [ 32] [ 6] [621354] +15:17:28 [ 35] [ 37] [6688990100660305=41091231030595400000] +15:17:28 [ 37] [ 12] [507903433331] +15:17:28 [ 41] [ 8] [06001600] +15:17:28 [ 42] [ 15] [NATIVE ] +15:17:28 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +15:17:28 [ 49] [ 3] [418] +15:17:28 [ 52] [ 16] [F5E1D01B344A8F77] +15:17:28 ============================================================================ +15:17:28 + + +waiting on router queue for slot.... +15:17:28 Sending to : +15:17:28 ============================================================================ +15:17:28 Sending to : +15:17:28 ============================================================================ +15:17:28 ============================================================================ +15:17:28 Slot Id : <53> +15:17:28 Transaction Type : REQUEST +15:17:28 Received From : +15:17:28 ============================================================================ +15:17:28 FNo. Len. Field Value +15:17:28 ============================================================================ +15:17:28 [ 1] [ 4] [0200] +15:17:28 [ 2] [ 16] [6688990100660305] +15:17:28 [ 3] [ 6] [011000] +15:17:28 [ 4] [ 12] [000030000000] +15:17:28 [ 7] [ 10] [0320151721] +15:17:28 [ 11] [ 6] [781408] +15:17:28 [ 12] [ 6] [151721] +15:17:28 [ 13] [ 4] [0320] +15:17:28 [ 15] [ 4] [0320] +15:17:28 [ 18] [ 4] [6011] +15:17:28 [ 22] [ 3] [900] +15:17:28 [ 25] [ 2] [02] +15:17:28 [ 28] [ 9] [D00002000] +15:17:28 [ 32] [ 6] [621354] +15:17:28 [ 35] [ 37] [6688990100660305=41091231030595400000] +15:17:28 [ 37] [ 12] [507903433331] +15:17:28 [ 41] [ 8] [06001600] +15:17:28 [ 42] [ 15] [NATIVE ] +15:17:28 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +15:17:28 [ 49] [ 3] [418] +15:17:28 [ 52] [ 16] [F5E1D01B344A8F77] +15:17:28 ============================================================================ +15:17:28 + + +waiting on router queue for slot.... +15:17:28 Sending to : +15:17:28 ============================================================================ +15:17:28 ============================================================================ +15:17:28 Slot Id : <53> +15:17:28 Transaction Type : REQUEST +15:17:28 Received From : +15:17:28 ============================================================================ +15:17:28 FNo. Len. Field Value +15:17:28 ============================================================================ +15:17:28 [ 1] [ 4] [0200] +15:17:28 [ 2] [ 16] [6688990100660305] +15:17:28 [ 3] [ 6] [011000] +15:17:28 [ 4] [ 12] [000030000000] +15:17:28 [ 7] [ 10] [0320151721] +15:17:28 [ 11] [ 6] [781408] +15:17:28 [ 12] [ 6] [151721] +15:17:28 [ 13] [ 4] [0320] +15:17:28 [ 15] [ 4] [0320] +15:17:28 [ 18] [ 4] [6011] +15:17:28 [ 22] [ 3] [900] +15:17:28 [ 25] [ 2] [02] +15:17:28 [ 28] [ 9] [D00002000] +15:17:28 [ 32] [ 6] [621354] +15:17:28 [ 35] [ 37] [6688990100660305=41091231030595400000] +15:17:28 [ 37] [ 12] [507903433331] +15:17:28 [ 41] [ 8] [06001600] +15:17:28 [ 42] [ 15] [NATIVE ] +15:17:28 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +15:17:28 [ 49] [ 3] [418] +15:17:28 [ 52] [ 16] [36AB2AC3D354E610] +15:17:28 ============================================================================ +15:17:28 + + +waiting on router queue for slot.... +15:17:28 Sending to : <4> +15:17:28 ============================================================================ +15:17:30 ============================================================================ +15:17:30 Slot Id : <53> +15:17:30 Transaction Type : RESPONSE +15:17:30 Received From : +15:17:30 ============================================================================ +15:17:30 FNo. Len. Field Value +15:17:30 ============================================================================ +15:17:30 [ 1] [ 4] [0210] +15:17:30 [ 2] [ 16] [6688990100660305] +15:17:30 [ 3] [ 6] [011000] +15:17:30 [ 4] [ 12] [000030000000] +15:17:30 [ 11] [ 6] [781408] +15:17:30 [ 12] [ 6] [151721] +15:17:30 [ 15] [ 4] [0320] +15:17:30 [ 18] [ 4] [6011] +15:17:30 [ 32] [ 6] [621354] +15:17:30 [ 35] [ 37] [6688990100660305=41091231030595400000] +15:17:30 [ 37] [ 12] [507903433331] +15:17:30 [ 38] [ 6] [958241] +15:17:30 [ 39] [ 2] [00] +15:17:30 [ 41] [ 8] [06001600] +15:17:30 [ 49] [ 3] [418] +15:17:30 [ 54] [ 20] [1002418C001035908381] +15:17:30 ============================================================================ +15:17:30 Sending to : +15:17:30 ============================================================================ +15:17:30 + + +waiting on router queue for slot.... +15:17:31 ============================================================================ +15:17:31 Slot Id : <53> +15:17:31 Transaction Type : RESPONSE +15:17:31 Received From : +15:17:31 ============================================================================ +15:17:31 FNo. Len. Field Value +15:17:31 ============================================================================ +15:17:31 [ 1] [ 4] [0210] +15:17:31 [ 2] [ 16] [6688990100660305] +15:17:31 [ 3] [ 6] [011000] +15:17:31 [ 4] [ 12] [000030000000] +15:17:31 [ 11] [ 6] [781408] +15:17:31 [ 12] [ 6] [151721] +15:17:31 [ 15] [ 4] [0320] +15:17:31 [ 18] [ 4] [6011] +15:17:31 [ 32] [ 6] [621354] +15:17:31 [ 35] [ 37] [6688990100660305=41091231030595400000] +15:17:31 [ 37] [ 12] [507903433331] +15:17:31 [ 38] [ 6] [958241] +15:17:31 [ 39] [ 2] [00] +15:17:31 [ 41] [ 8] [06001600] +15:17:31 [ 49] [ 3] [418] +15:17:31 [ 54] [ 20] [1002418C001035908381] +15:17:31 ============================================================================ +15:17:31 Calculate Source COMM Id = 0 +15:17:31 ============================================================================ +15:17:31 + + +waiting on router queue for slot.... +15:17:33 ============================================================================ +15:17:33 Slot Id : <98> +15:17:33 Transaction Type : REQUEST +15:17:33 Received From : +15:17:33 ============================================================================ +15:17:33 FNo. Len. Field Value +15:17:33 ============================================================================ +15:17:33 [ 1] [ 4] [0800] +15:17:33 [ 7] [ 10] [0320081640] +15:17:33 [ 11] [ 6] [156971] +15:17:33 [ 70] [ 3] [301] +15:17:33 ============================================================================ +15:17:33 + + +waiting on router queue for slot.... +15:17:33 Sending to : +15:17:33 ============================================================================ +15:17:33 ============================================================================ +15:17:33 Slot Id : <98> +15:17:33 Transaction Type : RESPONSE +15:17:33 Received From : +15:17:33 ============================================================================ +15:17:33 FNo. Len. Field Value +15:17:33 ============================================================================ +15:17:33 [ 1] [ 4] [0810] +15:17:33 [ 7] [ 10] [0320081640] +15:17:33 [ 11] [ 6] [156971] +15:17:33 [ 39] [ 2] [00] +15:17:33 [ 70] [ 3] [301] +15:17:33 ============================================================================ +15:17:33 Calculate Source COMM Id = 2 +15:17:33 ============================================================================ +15:17:33 + + +waiting on router queue for slot.... +15:17:36 ============================================================================ +15:17:36 Slot Id : <125> +15:17:36 Transaction Type : REQUEST +15:17:36 Received From : +15:17:36 ============================================================================ +15:17:36 FNo. Len. Field Value +15:17:36 ============================================================================ +15:17:36 [ 1] [ 4] [0200] +15:17:36 [ 2] [ 16] [6213545000488563] +15:17:36 [ 3] [ 6] [310000] +15:17:36 [ 4] [ 12] [000000000000] +15:17:36 [ 7] [ 10] [0320152524] +15:17:36 [ 11] [ 6] [079118] +15:17:36 [ 12] [ 6] [152524] +15:17:36 [ 13] [ 4] [0320] +15:17:36 [ 14] [ 4] [4912] +15:17:36 [ 15] [ 4] [0320] +15:17:36 [ 18] [ 4] [6011] +15:17:36 [ 22] [ 3] [900] +15:17:36 [ 25] [ 2] [02] +15:17:36 [ 28] [ 9] [000000000] +15:17:36 [ 32] [ 6] [220699] +15:17:36 [ 35] [ 32] [6213545000488563=491212018856125] +15:17:36 [ 37] [ 12] [507900132979] +15:17:36 [ 41] [ 8] [03000100] +15:17:36 [ 42] [ 15] [APTRA ] +15:17:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:17:36 [ 49] [ 3] [418] +15:17:36 [ 52] [ 16] [EE37A9712A907530] +15:17:36 ============================================================================ +15:17:36 + + +waiting on router queue for slot.... +15:17:36 Sending to : +15:17:36 ============================================================================ +15:17:36 Sending to : +15:17:36 ============================================================================ +15:17:37 ============================================================================ +15:17:37 Slot Id : <125> +15:17:37 Transaction Type : REQUEST +15:17:37 Received From : +15:17:37 ============================================================================ +15:17:37 FNo. Len. Field Value +15:17:37 ============================================================================ +15:17:37 [ 1] [ 4] [0200] +15:17:37 [ 2] [ 16] [6213545000488563] +15:17:37 [ 3] [ 6] [310000] +15:17:37 [ 4] [ 12] [000000000000] +15:17:37 [ 7] [ 10] [0320152524] +15:17:37 [ 11] [ 6] [079118] +15:17:37 [ 12] [ 6] [152524] +15:17:37 [ 13] [ 4] [0320] +15:17:37 [ 14] [ 4] [4912] +15:17:37 [ 15] [ 4] [0320] +15:17:37 [ 18] [ 4] [6011] +15:17:37 [ 22] [ 3] [900] +15:17:37 [ 25] [ 2] [02] +15:17:37 [ 28] [ 9] [000000000] +15:17:37 [ 32] [ 6] [220699] +15:17:37 [ 35] [ 32] [6213545000488563=491212018856125] +15:17:37 [ 37] [ 12] [507900132979] +15:17:37 [ 41] [ 8] [03000100] +15:17:37 [ 42] [ 15] [APTRA ] +15:17:37 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:17:37 [ 49] [ 3] [418] +15:17:37 [ 52] [ 16] [EE37A9712A907530] +15:17:37 ============================================================================ +15:17:37 + + +waiting on router queue for slot.... +15:17:37 Sending to : +15:17:37 ============================================================================ +15:17:37 ============================================================================ +15:17:37 Slot Id : <125> +15:17:37 Transaction Type : REQUEST +15:17:37 Received From : +15:17:37 ============================================================================ +15:17:37 FNo. Len. Field Value +15:17:37 ============================================================================ +15:17:37 [ 1] [ 4] [0200] +15:17:37 [ 2] [ 16] [6213545000488563] +15:17:37 [ 3] [ 6] [310000] +15:17:37 [ 4] [ 12] [000000000000] +15:17:37 [ 7] [ 10] [0320152524] +15:17:37 [ 11] [ 6] [079118] +15:17:37 [ 12] [ 6] [152524] +15:17:37 [ 13] [ 4] [0320] +15:17:37 [ 14] [ 4] [4912] +15:17:37 [ 15] [ 4] [0320] +15:17:37 [ 18] [ 4] [6011] +15:17:37 [ 22] [ 3] [900] +15:17:37 [ 25] [ 2] [02] +15:17:37 [ 28] [ 9] [000000000] +15:17:37 [ 32] [ 6] [220699] +15:17:37 [ 35] [ 32] [6213545000488563=491212018856125] +15:17:37 [ 37] [ 12] [507900132979] +15:17:37 [ 41] [ 8] [03000100] +15:17:37 [ 42] [ 15] [APTRA ] +15:17:37 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:17:37 [ 49] [ 3] [418] +15:17:37 [ 52] [ 16] [F6BE06F127C28A2B] +15:17:37 ============================================================================ +15:17:37 + + +waiting on router queue for slot.... +15:17:37 Sending to : <0> +15:17:37 ============================================================================ +15:17:37 ============================================================================ +15:17:37 Slot Id : <125> +15:17:37 Transaction Type : RESPONSE +15:17:37 Received From : +15:17:37 ============================================================================ +15:17:37 FNo. Len. Field Value +15:17:37 ============================================================================ +15:17:37 [ 1] [ 4] [0210] +15:17:37 [ 2] [ 16] [6213545000488563] +15:17:37 [ 3] [ 6] [310000] +15:17:37 [ 4] [ 12] [000000000000] +15:17:37 [ 7] [ 10] [0320152524] +15:17:37 [ 11] [ 6] [079118] +15:17:37 [ 12] [ 6] [152524] +15:17:37 [ 13] [ 4] [0320] +15:17:37 [ 15] [ 4] [0320] +15:17:37 [ 18] [ 4] [6011] +15:17:37 [ 32] [ 6] [220699] +15:17:37 [ 35] [ 32] [6213545000488563=491212018856125] +15:17:37 [ 37] [ 12] [507900132979] +15:17:37 [ 38] [ 6] [597037] +15:17:37 [ 39] [ 2] [00] +15:17:37 [ 41] [ 8] [03000100] +15:17:37 [ 49] [ 3] [418] +15:17:37 [ 54] [ 40] [0001418C0000050190460002418C000005019046] +15:17:37 ============================================================================ +15:17:37 Sending to : +15:17:37 ============================================================================ +15:17:37 + + +waiting on router queue for slot.... +15:17:39 ============================================================================ +15:17:39 Slot Id : <125> +15:17:39 Transaction Type : RESPONSE +15:17:39 Received From : +15:17:39 ============================================================================ +15:17:39 FNo. Len. Field Value +15:17:39 ============================================================================ +15:17:39 [ 1] [ 4] [0210] +15:17:39 [ 2] [ 16] [6213545000488563] +15:17:39 [ 3] [ 6] [310000] +15:17:39 [ 4] [ 12] [000000000000] +15:17:39 [ 7] [ 10] [0320152524] +15:17:39 [ 11] [ 6] [079118] +15:17:39 [ 12] [ 6] [152524] +15:17:39 [ 13] [ 4] [0320] +15:17:39 [ 15] [ 4] [0320] +15:17:39 [ 18] [ 4] [6011] +15:17:39 [ 32] [ 6] [220699] +15:17:39 [ 35] [ 32] [6213545000488563=491212018856125] +15:17:39 [ 37] [ 12] [507900132979] +15:17:39 [ 38] [ 6] [597037] +15:17:39 [ 39] [ 2] [00] +15:17:39 [ 41] [ 8] [03000100] +15:17:39 [ 49] [ 3] [418] +15:17:39 [ 54] [ 40] [0001418C0000050190460002418C000005019046] +15:17:39 ============================================================================ +15:17:39 Calculate Source COMM Id = 1 +15:17:39 ============================================================================ +15:17:39 + + +waiting on router queue for slot.... +15:17:43 ============================================================================ +15:17:43 Slot Id : <134> +15:17:43 Transaction Type : REQUEST +15:17:43 Received From : +15:17:43 ============================================================================ +15:17:43 FNo. Len. Field Value +15:17:43 ============================================================================ +15:17:43 [ 1] [ 4] [0800] +15:17:43 [ 7] [ 10] [0320081650] +15:17:43 [ 11] [ 6] [156972] +15:17:43 [ 70] [ 3] [301] +15:17:43 ============================================================================ +15:17:43 + + +waiting on router queue for slot.... +15:17:43 Sending to : +15:17:43 ============================================================================ +15:17:43 ============================================================================ +15:17:43 Slot Id : <134> +15:17:43 Transaction Type : RESPONSE +15:17:43 Received From : +15:17:43 ============================================================================ +15:17:43 FNo. Len. Field Value +15:17:43 ============================================================================ +15:17:43 [ 1] [ 4] [0810] +15:17:43 [ 7] [ 10] [0320081650] +15:17:43 [ 11] [ 6] [156972] +15:17:43 [ 39] [ 2] [00] +15:17:43 [ 70] [ 3] [301] +15:17:43 ============================================================================ +15:17:43 Calculate Source COMM Id = 2 +15:17:43 ============================================================================ +15:17:43 + + +waiting on router queue for slot.... +15:17:46 ============================================================================ +15:17:46 Slot Id : <103> +15:17:46 Transaction Type : REQUEST +15:17:46 Received From : +15:17:46 ============================================================================ +15:17:46 FNo. Len. Field Value +15:17:46 ============================================================================ +15:17:46 [ 1] [ 4] [0200] +15:17:46 [ 2] [ 16] [6688990040035915] +15:17:46 [ 3] [ 6] [011000] +15:17:46 [ 4] [ 12] [000020000000] +15:17:46 [ 7] [ 10] [0320151807] +15:17:46 [ 11] [ 6] [207835] +15:17:46 [ 12] [ 6] [031617] +15:17:46 [ 13] [ 4] [0320] +15:17:46 [ 14] [ 4] [9711] +15:17:46 [ 15] [ 4] [0320] +15:17:46 [ 18] [ 4] [6011] +15:17:46 [ 19] [ 3] [418] +15:17:46 [ 22] [ 3] [021] +15:17:46 [ 25] [ 2] [01] +15:17:46 [ 28] [ 9] [D00002000] +15:17:46 [ 32] [ 6] [198901] +15:17:46 [ 35] [ 37] [6688990040035915=97111261369775200000] +15:17:46 [ 37] [ 12] [507915207835] +15:17:46 [ 41] [ 8] [01529031] +15:17:46 [ 42] [ 15] [000000041529031] +15:17:46 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:17:46 [ 49] [ 3] [418] +15:17:46 [ 52] [ 16] [C89FA47B46157C94] +15:17:46 ============================================================================ +15:17:46 + + +waiting on router queue for slot.... +15:17:46 Sending to : +15:17:46 ============================================================================ +15:17:46 Sending to : +15:17:46 ============================================================================ +15:17:46 ============================================================================ +15:17:46 Slot Id : <103> +15:17:46 Transaction Type : REQUEST +15:17:46 Received From : +15:17:46 ============================================================================ +15:17:46 FNo. Len. Field Value +15:17:46 ============================================================================ +15:17:46 [ 1] [ 4] [0200] +15:17:46 [ 2] [ 16] [6688990040035915] +15:17:46 [ 3] [ 6] [011000] +15:17:46 [ 4] [ 12] [000020000000] +15:17:46 [ 7] [ 10] [0320151807] +15:17:46 [ 11] [ 6] [207835] +15:17:46 [ 12] [ 6] [031617] +15:17:46 [ 13] [ 4] [0320] +15:17:46 [ 14] [ 4] [9711] +15:17:46 [ 15] [ 4] [0320] +15:17:46 [ 18] [ 4] [6011] +15:17:46 [ 19] [ 3] [418] +15:17:46 [ 22] [ 3] [021] +15:17:46 [ 25] [ 2] [01] +15:17:46 [ 28] [ 9] [D00002000] +15:17:46 [ 32] [ 6] [198901] +15:17:46 [ 35] [ 37] [6688990040035915=97111261369775200000] +15:17:46 [ 37] [ 12] [507915207835] +15:17:46 [ 41] [ 8] [01529031] +15:17:46 [ 42] [ 15] [000000041529031] +15:17:46 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:17:46 [ 49] [ 3] [418] +15:17:46 [ 52] [ 16] [C89FA47B46157C94] +15:17:46 ============================================================================ +15:17:46 + + +waiting on router queue for slot.... +15:17:46 Sending to : +15:17:46 ============================================================================ +15:17:47 ============================================================================ +15:17:47 Slot Id : <103> +15:17:47 Transaction Type : REQUEST +15:17:47 Received From : +15:17:47 ============================================================================ +15:17:47 FNo. Len. Field Value +15:17:47 ============================================================================ +15:17:47 [ 1] [ 4] [0200] +15:17:47 [ 2] [ 16] [6688990040035915] +15:17:47 [ 3] [ 6] [011000] +15:17:47 [ 4] [ 12] [000020000000] +15:17:47 [ 7] [ 10] [0320151807] +15:17:47 [ 11] [ 6] [207835] +15:17:47 [ 12] [ 6] [031617] +15:17:47 [ 13] [ 4] [0320] +15:17:47 [ 14] [ 4] [9711] +15:17:47 [ 15] [ 4] [0320] +15:17:47 [ 18] [ 4] [6011] +15:17:47 [ 19] [ 3] [418] +15:17:47 [ 22] [ 3] [021] +15:17:47 [ 25] [ 2] [01] +15:17:47 [ 28] [ 9] [D00002000] +15:17:47 [ 32] [ 6] [198901] +15:17:47 [ 35] [ 37] [6688990040035915=97111261369775200000] +15:17:47 [ 37] [ 12] [507915207835] +15:17:47 [ 41] [ 8] [01529031] +15:17:47 [ 42] [ 15] [000000041529031] +15:17:47 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:17:47 [ 49] [ 3] [418] +15:17:47 [ 52] [ 16] [CD6DD946DCFA3CD9] +15:17:47 ============================================================================ +15:17:47 + + +waiting on router queue for slot.... +15:17:47 Sending to : <4> +15:17:47 ============================================================================ +15:17:48 ============================================================================ +15:17:48 Slot Id : <103> +15:17:48 Transaction Type : RESPONSE +15:17:48 Received From : +15:17:48 ============================================================================ +15:17:48 FNo. Len. Field Value +15:17:48 ============================================================================ +15:17:48 [ 1] [ 4] [0210] +15:17:48 [ 2] [ 16] [6688990040035915] +15:17:48 [ 3] [ 6] [011000] +15:17:48 [ 4] [ 12] [000020000000] +15:17:48 [ 11] [ 6] [207835] +15:17:48 [ 12] [ 6] [031617] +15:17:48 [ 15] [ 4] [0320] +15:17:48 [ 18] [ 4] [6011] +15:17:48 [ 32] [ 6] [198901] +15:17:48 [ 35] [ 37] [6688990040035915=97111261369775200000] +15:17:48 [ 37] [ 12] [507915207835] +15:17:48 [ 38] [ 6] [140406] +15:17:48 [ 39] [ 2] [00] +15:17:48 [ 41] [ 8] [01529031] +15:17:48 [ 49] [ 3] [418] +15:17:48 [ 54] [ 20] [1002418C000077150093] +15:17:48 ============================================================================ +15:17:48 Sending to : +15:17:48 ============================================================================ +15:17:48 + + +waiting on router queue for slot.... +15:17:49 ============================================================================ +15:17:49 Slot Id : <103> +15:17:49 Transaction Type : RESPONSE +15:17:49 Received From : +15:17:49 ============================================================================ +15:17:49 FNo. Len. Field Value +15:17:49 ============================================================================ +15:17:49 [ 1] [ 4] [0210] +15:17:49 [ 2] [ 16] [6688990040035915] +15:17:49 [ 3] [ 6] [011000] +15:17:49 [ 4] [ 12] [000020000000] +15:17:49 [ 11] [ 6] [207835] +15:17:49 [ 12] [ 6] [031617] +15:17:49 [ 15] [ 4] [0320] +15:17:49 [ 18] [ 4] [6011] +15:17:49 [ 32] [ 6] [198901] +15:17:49 [ 35] [ 37] [6688990040035915=97111261369775200000] +15:17:49 [ 37] [ 12] [507915207835] +15:17:49 [ 38] [ 6] [140406] +15:17:49 [ 39] [ 2] [00] +15:17:49 [ 41] [ 8] [01529031] +15:17:49 [ 49] [ 3] [418] +15:17:49 [ 54] [ 20] [1002418C000077150093] +15:17:49 ============================================================================ +15:17:49 Calculate Source COMM Id = 5 +15:17:49 ============================================================================ +15:17:49 + + +waiting on router queue for slot.... +15:17:51 ============================================================================ +15:17:51 Slot Id : <101> +15:17:51 Transaction Type : REQUEST +15:17:51 Received From : +15:17:51 ============================================================================ +15:17:51 FNo. Len. Field Value +15:17:51 ============================================================================ +15:17:51 [ 1] [ 4] [0200] +15:17:51 [ 2] [ 16] [6688990104677305] +15:17:51 [ 3] [ 6] [010000] +15:17:51 [ 4] [ 12] [000010000000] +15:17:51 [ 7] [ 10] [0320151746] +15:17:51 [ 11] [ 6] [781514] +15:17:51 [ 12] [ 6] [151746] +15:17:51 [ 13] [ 4] [0320] +15:17:51 [ 15] [ 4] [0320] +15:17:51 [ 18] [ 4] [6011] +15:17:51 [ 22] [ 3] [900] +15:17:51 [ 25] [ 2] [02] +15:17:51 [ 28] [ 9] [D00002000] +15:17:51 [ 32] [ 6] [621354] +15:17:51 [ 35] [ 37] [6688990104677305=43051231730544400000] +15:17:51 [ 37] [ 12] [507904789452] +15:17:51 [ 41] [ 8] [07001400] +15:17:51 [ 42] [ 15] [NATIVE ] +15:17:51 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +15:17:51 [ 49] [ 3] [418] +15:17:51 [ 52] [ 16] [7F0738643A80D7A5] +15:17:51 ============================================================================ +15:17:51 + + +waiting on router queue for slot.... +15:17:51 Sending to : +15:17:51 ============================================================================ +15:17:51 Sending to : +15:17:51 ============================================================================ +15:17:51 ============================================================================ +15:17:51 Slot Id : <101> +15:17:51 Transaction Type : REQUEST +15:17:51 Received From : +15:17:51 ============================================================================ +15:17:51 FNo. Len. Field Value +15:17:51 ============================================================================ +15:17:51 [ 1] [ 4] [0200] +15:17:51 [ 2] [ 16] [6688990104677305] +15:17:51 [ 3] [ 6] [010000] +15:17:51 [ 4] [ 12] [000010000000] +15:17:51 [ 7] [ 10] [0320151746] +15:17:51 [ 11] [ 6] [781514] +15:17:51 [ 12] [ 6] [151746] +15:17:51 [ 13] [ 4] [0320] +15:17:51 [ 15] [ 4] [0320] +15:17:51 [ 18] [ 4] [6011] +15:17:51 [ 22] [ 3] [900] +15:17:51 [ 25] [ 2] [02] +15:17:51 [ 28] [ 9] [D00002000] +15:17:51 [ 32] [ 6] [621354] +15:17:51 [ 35] [ 37] [6688990104677305=43051231730544400000] +15:17:51 [ 37] [ 12] [507904789452] +15:17:51 [ 41] [ 8] [07001400] +15:17:51 [ 42] [ 15] [NATIVE ] +15:17:51 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +15:17:51 [ 49] [ 3] [418] +15:17:51 [ 52] [ 16] [7F0738643A80D7A5] +15:17:51 ============================================================================ +15:17:51 + + +waiting on router queue for slot.... +15:17:51 Sending to : +15:17:51 ============================================================================ +15:17:51 ============================================================================ +15:17:51 Slot Id : <101> +15:17:51 Transaction Type : REQUEST +15:17:51 Received From : +15:17:51 ============================================================================ +15:17:51 FNo. Len. Field Value +15:17:51 ============================================================================ +15:17:51 [ 1] [ 4] [0200] +15:17:51 [ 2] [ 16] [6688990104677305] +15:17:51 [ 3] [ 6] [010000] +15:17:51 [ 4] [ 12] [000010000000] +15:17:51 [ 7] [ 10] [0320151746] +15:17:51 [ 11] [ 6] [781514] +15:17:51 [ 12] [ 6] [151746] +15:17:51 [ 13] [ 4] [0320] +15:17:51 [ 15] [ 4] [0320] +15:17:51 [ 18] [ 4] [6011] +15:17:51 [ 22] [ 3] [900] +15:17:51 [ 25] [ 2] [02] +15:17:51 [ 28] [ 9] [D00002000] +15:17:51 [ 32] [ 6] [621354] +15:17:51 [ 35] [ 37] [6688990104677305=43051231730544400000] +15:17:51 [ 37] [ 12] [507904789452] +15:17:51 [ 41] [ 8] [07001400] +15:17:51 [ 42] [ 15] [NATIVE ] +15:17:51 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +15:17:51 [ 49] [ 3] [418] +15:17:51 [ 52] [ 16] [E911FDA6EBC43B76] +15:17:51 ============================================================================ +15:17:51 + + +waiting on router queue for slot.... +15:17:51 Sending to : <4> +15:17:51 ============================================================================ +15:17:53 ============================================================================ +15:17:53 Slot Id : <101> +15:17:53 Transaction Type : RESPONSE +15:17:53 Received From : +15:17:53 ============================================================================ +15:17:53 FNo. Len. Field Value +15:17:53 ============================================================================ +15:17:53 [ 1] [ 4] [0210] +15:17:53 [ 2] [ 16] [6688990104677305] +15:17:53 [ 3] [ 6] [010000] +15:17:53 [ 4] [ 12] [000010000000] +15:17:53 [ 11] [ 6] [781514] +15:17:53 [ 12] [ 6] [151746] +15:17:53 [ 15] [ 4] [0320] +15:17:53 [ 18] [ 4] [6011] +15:17:53 [ 32] [ 6] [621354] +15:17:53 [ 35] [ 37] [6688990104677305=43051231730544400000] +15:17:53 [ 37] [ 12] [507904789452] +15:17:53 [ 38] [ 6] [703940] +15:17:53 [ 39] [ 2] [00] +15:17:53 [ 41] [ 8] [07001400] +15:17:53 [ 49] [ 3] [418] +15:17:53 [ 54] [ 20] [0002418C000912717623] +15:17:53 ============================================================================ +15:17:53 Sending to : +15:17:53 ============================================================================ +15:17:53 + + +waiting on router queue for slot.... +15:17:54 ============================================================================ +15:17:54 Slot Id : <96> +15:17:54 Transaction Type : REQUEST +15:17:54 Received From : +15:17:54 ============================================================================ +15:17:54 FNo. Len. Field Value +15:17:54 ============================================================================ +15:17:54 [ 1] [ 4] [0800] +15:17:54 [ 7] [ 10] [0320081701] +15:17:54 [ 11] [ 6] [156973] +15:17:54 [ 70] [ 3] [301] +15:17:54 ============================================================================ +15:17:54 + + +waiting on router queue for slot.... +15:17:54 Sending to : +15:17:54 ============================================================================ +15:17:54 ============================================================================ +15:17:54 Slot Id : <96> +15:17:54 Transaction Type : RESPONSE +15:17:54 Received From : +15:17:54 ============================================================================ +15:17:54 FNo. Len. Field Value +15:17:54 ============================================================================ +15:17:54 [ 1] [ 4] [0810] +15:17:54 [ 7] [ 10] [0320081701] +15:17:54 [ 11] [ 6] [156973] +15:17:54 [ 39] [ 2] [00] +15:17:54 [ 70] [ 3] [301] +15:17:54 ============================================================================ +15:17:54 Calculate Source COMM Id = 2 +15:17:54 ============================================================================ +15:17:54 + + +waiting on router queue for slot.... +15:17:54 ============================================================================ +15:17:54 Slot Id : <101> +15:17:54 Transaction Type : RESPONSE +15:17:54 Received From : +15:17:54 ============================================================================ +15:17:54 FNo. Len. Field Value +15:17:54 ============================================================================ +15:17:54 [ 1] [ 4] [0210] +15:17:54 [ 2] [ 16] [6688990104677305] +15:17:54 [ 3] [ 6] [010000] +15:17:54 [ 4] [ 12] [000010000000] +15:17:54 [ 11] [ 6] [781514] +15:17:54 [ 12] [ 6] [151746] +15:17:54 [ 15] [ 4] [0320] +15:17:54 [ 18] [ 4] [6011] +15:17:54 [ 32] [ 6] [621354] +15:17:54 [ 35] [ 37] [6688990104677305=43051231730544400000] +15:17:54 [ 37] [ 12] [507904789452] +15:17:54 [ 38] [ 6] [703940] +15:17:54 [ 39] [ 2] [00] +15:17:54 [ 41] [ 8] [07001400] +15:17:54 [ 49] [ 3] [418] +15:17:54 [ 54] [ 20] [0002418C000912717623] +15:17:54 ============================================================================ +15:17:54 Calculate Source COMM Id = 0 +15:17:54 ============================================================================ +15:17:54 + + +waiting on router queue for slot.... +15:18:06 ============================================================================ +15:18:06 Slot Id : <77> +15:18:06 Transaction Type : REQUEST +15:18:06 Received From : +15:18:06 ============================================================================ +15:18:06 FNo. Len. Field Value +15:18:06 ============================================================================ +15:18:06 [ 1] [ 4] [0800] +15:18:06 [ 7] [ 10] [0320081712] +15:18:06 [ 11] [ 6] [156974] +15:18:06 [ 70] [ 3] [301] +15:18:06 ============================================================================ +15:18:06 + + +waiting on router queue for slot.... +15:18:06 Sending to : +15:18:06 ============================================================================ +15:18:06 ============================================================================ +15:18:06 Slot Id : <77> +15:18:06 Transaction Type : RESPONSE +15:18:06 Received From : +15:18:06 ============================================================================ +15:18:06 FNo. Len. Field Value +15:18:06 ============================================================================ +15:18:06 [ 1] [ 4] [0810] +15:18:06 [ 7] [ 10] [0320081712] +15:18:06 [ 11] [ 6] [156974] +15:18:06 [ 39] [ 2] [00] +15:18:06 [ 70] [ 3] [301] +15:18:06 ============================================================================ +15:18:06 Calculate Source COMM Id = 2 +15:18:06 ============================================================================ +15:18:06 + + +waiting on router queue for slot.... +15:18:14 ============================================================================ +15:18:14 Slot Id : <71> +15:18:14 Transaction Type : REQUEST +15:18:14 Received From : +15:18:14 ============================================================================ +15:18:14 FNo. Len. Field Value +15:18:14 ============================================================================ +15:18:14 [ 1] [ 4] [0800] +15:18:14 [ 2] [ 5] [02531] +15:18:14 [ 3] [ 6] [579158] +15:18:14 [ 7] [ 10] [0320081814] +15:18:14 [ 11] [ 6] [807300] +15:18:14 [ 15] [ 10] [0320081814] +15:18:14 [ 37] [ 11] [57915807300] +15:18:14 [ 70] [ 3] [001] +15:18:14 ============================================================================ +15:18:14 + + +waiting on router queue for slot.... +15:18:15 ============================================================================ +15:18:15 Slot Id : <71> +15:18:15 Transaction Type : RESPONSE +15:18:15 Received From : +15:18:15 ============================================================================ +15:18:15 FNo. Len. Field Value +15:18:15 ============================================================================ +15:18:15 [ 1] [ 4] [0810] +15:18:15 [ 7] [ 10] [0320081814] +15:18:15 [ 11] [ 6] [807300] +15:18:15 [ 15] [ 4] [0320] +15:18:15 [ 37] [ 12] [57915807300] +15:18:15 [ 39] [ 2] [00] +15:18:15 [ 70] [ 3] [001] +15:18:15 ============================================================================ +15:18:15 Sending to : +15:18:15 ============================================================================ +15:18:15 + + +waiting on router queue for slot.... +15:18:20 ============================================================================ +15:18:20 Slot Id : <109> +15:18:20 Transaction Type : REQUEST +15:18:20 Received From : +15:18:20 ============================================================================ +15:18:20 FNo. Len. Field Value +15:18:20 ============================================================================ +15:18:20 [ 1] [ 4] [0800] +15:18:20 [ 7] [ 10] [0320081728] +15:18:20 [ 11] [ 6] [156975] +15:18:20 [ 70] [ 3] [301] +15:18:20 ============================================================================ +15:18:20 + + +waiting on router queue for slot.... +15:18:20 Sending to : +15:18:20 ============================================================================ +15:18:20 ============================================================================ +15:18:20 Slot Id : <109> +15:18:20 Transaction Type : RESPONSE +15:18:20 Received From : +15:18:20 ============================================================================ +15:18:20 FNo. Len. Field Value +15:18:20 ============================================================================ +15:18:20 [ 1] [ 4] [0810] +15:18:20 [ 7] [ 10] [0320081728] +15:18:20 [ 11] [ 6] [156975] +15:18:20 [ 39] [ 2] [00] +15:18:20 [ 70] [ 3] [301] +15:18:20 ============================================================================ +15:18:20 Calculate Source COMM Id = 2 +15:18:20 ============================================================================ +15:18:20 + + +waiting on router queue for slot.... +15:18:24 ============================================================================ +15:18:24 Slot Id : <70> +15:18:24 Transaction Type : REQUEST +15:18:24 Received From : +15:18:24 ============================================================================ +15:18:24 FNo. Len. Field Value +15:18:24 ============================================================================ +15:18:24 [ 1] [ 4] [0200] +15:18:24 [ 2] [ 16] [6213544001740148] +15:18:24 [ 3] [ 6] [011000] +15:18:24 [ 4] [ 12] [000010000000] +15:18:24 [ 7] [ 10] [0320152611] +15:18:24 [ 11] [ 6] [189025] +15:18:24 [ 12] [ 6] [152611] +15:18:24 [ 13] [ 4] [0320] +15:18:24 [ 14] [ 4] [4912] +15:18:24 [ 15] [ 4] [0320] +15:18:24 [ 18] [ 4] [6011] +15:18:24 [ 22] [ 3] [900] +15:18:24 [ 25] [ 2] [02] +15:18:24 [ 28] [ 9] [D00002000] +15:18:24 [ 32] [ 6] [220699] +15:18:24 [ 35] [ 32] [6213544001740148=491212014014862] +15:18:24 [ 37] [ 12] [507900084365] +15:18:24 [ 41] [ 8] [01000800] +15:18:24 [ 42] [ 15] [APTRA ] +15:18:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:18:24 [ 49] [ 3] [418] +15:18:24 [ 52] [ 16] [AA030412B95B8936] +15:18:24 ============================================================================ +15:18:24 + + +waiting on router queue for slot.... +15:18:24 Sending to : +15:18:24 ============================================================================ +15:18:24 Sending to : +15:18:24 ============================================================================ +15:18:25 ============================================================================ +15:18:25 Slot Id : <70> +15:18:25 Transaction Type : REQUEST +15:18:25 Received From : +15:18:25 ============================================================================ +15:18:25 FNo. Len. Field Value +15:18:25 ============================================================================ +15:18:25 [ 1] [ 4] [0200] +15:18:25 [ 2] [ 16] [6213544001740148] +15:18:25 [ 3] [ 6] [011000] +15:18:25 [ 4] [ 12] [000010000000] +15:18:25 [ 7] [ 10] [0320152611] +15:18:25 [ 11] [ 6] [189025] +15:18:25 [ 12] [ 6] [152611] +15:18:25 [ 13] [ 4] [0320] +15:18:25 [ 14] [ 4] [4912] +15:18:25 [ 15] [ 4] [0320] +15:18:25 [ 18] [ 4] [6011] +15:18:25 [ 22] [ 3] [900] +15:18:25 [ 25] [ 2] [02] +15:18:25 [ 28] [ 9] [D00002000] +15:18:25 [ 32] [ 6] [220699] +15:18:25 [ 35] [ 32] [6213544001740148=491212014014862] +15:18:25 [ 37] [ 12] [507900084365] +15:18:25 [ 41] [ 8] [01000800] +15:18:25 [ 42] [ 15] [APTRA ] +15:18:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:18:25 [ 49] [ 3] [418] +15:18:25 [ 52] [ 16] [AA030412B95B8936] +15:18:25 ============================================================================ +15:18:25 + + +waiting on router queue for slot.... +15:18:25 Sending to : +15:18:25 ============================================================================ +15:18:25 ============================================================================ +15:18:25 Slot Id : <70> +15:18:25 Transaction Type : REQUEST +15:18:25 Received From : +15:18:25 ============================================================================ +15:18:25 FNo. Len. Field Value +15:18:25 ============================================================================ +15:18:25 [ 1] [ 4] [0200] +15:18:25 [ 2] [ 16] [6213544001740148] +15:18:25 [ 3] [ 6] [011000] +15:18:25 [ 4] [ 12] [000010000000] +15:18:25 [ 7] [ 10] [0320152611] +15:18:25 [ 11] [ 6] [189025] +15:18:25 [ 12] [ 6] [152611] +15:18:25 [ 13] [ 4] [0320] +15:18:25 [ 14] [ 4] [4912] +15:18:25 [ 15] [ 4] [0320] +15:18:25 [ 18] [ 4] [6011] +15:18:25 [ 22] [ 3] [900] +15:18:25 [ 25] [ 2] [02] +15:18:25 [ 28] [ 9] [D00002000] +15:18:25 [ 32] [ 6] [220699] +15:18:25 [ 35] [ 32] [6213544001740148=491212014014862] +15:18:25 [ 37] [ 12] [507900084365] +15:18:25 [ 41] [ 8] [01000800] +15:18:25 [ 42] [ 15] [APTRA ] +15:18:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:18:25 [ 49] [ 3] [418] +15:18:25 [ 52] [ 16] [7F7D3F7164D0FDB7] +15:18:25 ============================================================================ +15:18:25 + + +waiting on router queue for slot.... +15:18:25 Sending to : <0> +15:18:25 ============================================================================ +15:18:25 ============================================================================ +15:18:25 Slot Id : <70> +15:18:25 Transaction Type : RESPONSE +15:18:25 Received From : +15:18:25 ============================================================================ +15:18:25 FNo. Len. Field Value +15:18:25 ============================================================================ +15:18:25 [ 1] [ 4] [0210] +15:18:25 [ 2] [ 16] [6213544001740148] +15:18:25 [ 3] [ 6] [011000] +15:18:25 [ 4] [ 12] [000010000000] +15:18:25 [ 7] [ 10] [0320152611] +15:18:25 [ 11] [ 6] [189025] +15:18:25 [ 12] [ 6] [152611] +15:18:25 [ 13] [ 4] [0320] +15:18:25 [ 15] [ 4] [0320] +15:18:25 [ 18] [ 4] [6011] +15:18:25 [ 32] [ 6] [220699] +15:18:25 [ 35] [ 32] [6213544001740148=491212014014862] +15:18:25 [ 37] [ 12] [507900084365] +15:18:25 [ 38] [ 6] [413178] +15:18:25 [ 39] [ 2] [00] +15:18:25 [ 41] [ 8] [01000800] +15:18:25 [ 49] [ 3] [418] +15:18:25 [ 54] [ 40] [1001418C0002007829921002418C000200782992] +15:18:25 ============================================================================ +15:18:25 Sending to : +15:18:25 ============================================================================ +15:18:25 + + +waiting on router queue for slot.... +15:18:27 ============================================================================ +15:18:27 Slot Id : <70> +15:18:27 Transaction Type : RESPONSE +15:18:27 Received From : +15:18:27 ============================================================================ +15:18:27 FNo. Len. Field Value +15:18:27 ============================================================================ +15:18:27 [ 1] [ 4] [0210] +15:18:27 [ 2] [ 16] [6213544001740148] +15:18:27 [ 3] [ 6] [011000] +15:18:27 [ 4] [ 12] [000010000000] +15:18:27 [ 7] [ 10] [0320152611] +15:18:27 [ 11] [ 6] [189025] +15:18:27 [ 12] [ 6] [152611] +15:18:27 [ 13] [ 4] [0320] +15:18:27 [ 15] [ 4] [0320] +15:18:27 [ 18] [ 4] [6011] +15:18:27 [ 32] [ 6] [220699] +15:18:27 [ 35] [ 32] [6213544001740148=491212014014862] +15:18:27 [ 37] [ 12] [507900084365] +15:18:27 [ 38] [ 6] [413178] +15:18:27 [ 39] [ 2] [00] +15:18:27 [ 41] [ 8] [01000800] +15:18:27 [ 49] [ 3] [418] +15:18:27 [ 54] [ 40] [1001418C0002007829921002418C000200782992] +15:18:27 ============================================================================ +15:18:27 Calculate Source COMM Id = 1 +15:18:27 ============================================================================ +15:18:27 + + +waiting on router queue for slot.... +15:18:32 ============================================================================ +15:18:32 Slot Id : <102> +15:18:32 Transaction Type : REQUEST +15:18:32 Received From : +15:18:32 ============================================================================ +15:18:32 FNo. Len. Field Value +15:18:32 ============================================================================ +15:18:32 [ 1] [ 4] [0800] +15:18:32 [ 7] [ 10] [0320223020] +15:18:32 [ 11] [ 6] [153020] +15:18:32 [ 37] [ 12] [57915153020] +15:18:32 [ 70] [ 3] [301] +15:18:32 ============================================================================ +15:18:32 + + +waiting on router queue for slot.... +15:18:32 Sending to : +15:18:32 ============================================================================ +15:18:32 ============================================================================ +15:18:32 Slot Id : <102> +15:18:32 Transaction Type : RESPONSE +15:18:32 Received From : +15:18:32 ============================================================================ +15:18:32 FNo. Len. Field Value +15:18:32 ============================================================================ +15:18:32 [ 1] [ 4] [0810] +15:18:32 [ 7] [ 10] [0320223020] +15:18:32 [ 11] [ 6] [153020] +15:18:32 [ 37] [ 12] [579151530200] +15:18:32 [ 39] [ 2] [00] +15:18:32 [ 70] [ 3] [810] +15:18:32 ============================================================================ +15:18:32 Calculate Source COMM Id = 6 +15:18:32 ============================================================================ +15:18:32 + + +waiting on router queue for slot.... +15:18:37 ============================================================================ +15:18:37 Slot Id : <136> +15:18:37 Transaction Type : REQUEST +15:18:37 Received From : +15:18:37 ============================================================================ +15:18:37 FNo. Len. Field Value +15:18:37 ============================================================================ +15:18:37 [ 1] [ 4] [0800] +15:18:37 [ 7] [ 10] [0320081744] +15:18:37 [ 11] [ 6] [156976] +15:18:37 [ 70] [ 3] [301] +15:18:37 ============================================================================ +15:18:37 + + +waiting on router queue for slot.... +15:18:37 Sending to : +15:18:37 ============================================================================ +15:18:37 ============================================================================ +15:18:37 Slot Id : <136> +15:18:37 Transaction Type : RESPONSE +15:18:37 Received From : +15:18:37 ============================================================================ +15:18:37 FNo. Len. Field Value +15:18:37 ============================================================================ +15:18:37 [ 1] [ 4] [0810] +15:18:37 [ 7] [ 10] [0320081744] +15:18:37 [ 11] [ 6] [156976] +15:18:37 [ 39] [ 2] [00] +15:18:37 [ 70] [ 3] [301] +15:18:37 ============================================================================ +15:18:37 Calculate Source COMM Id = 2 +15:18:37 ============================================================================ +15:18:37 + + +waiting on router queue for slot.... +15:18:48 ============================================================================ +15:18:48 Slot Id : <85> +15:18:48 Transaction Type : REQUEST +15:18:48 Received From : +15:18:48 ============================================================================ +15:18:48 FNo. Len. Field Value +15:18:48 ============================================================================ +15:18:48 [ 1] [ 4] [0800] +15:18:48 [ 7] [ 10] [0320081755] +15:18:48 [ 11] [ 6] [156977] +15:18:48 [ 70] [ 3] [301] +15:18:48 ============================================================================ +15:18:48 + + +waiting on router queue for slot.... +15:18:48 Sending to : +15:18:48 ============================================================================ +15:18:48 ============================================================================ +15:18:48 Slot Id : <85> +15:18:48 Transaction Type : RESPONSE +15:18:48 Received From : +15:18:48 ============================================================================ +15:18:48 FNo. Len. Field Value +15:18:48 ============================================================================ +15:18:48 [ 1] [ 4] [0810] +15:18:48 [ 7] [ 10] [0320081755] +15:18:48 [ 11] [ 6] [156977] +15:18:48 [ 39] [ 2] [00] +15:18:48 [ 70] [ 3] [301] +15:18:48 ============================================================================ +15:18:48 Calculate Source COMM Id = 2 +15:18:48 ============================================================================ +15:18:48 + + +waiting on router queue for slot.... +15:18:49 ============================================================================ +15:18:49 Slot Id : <129> +15:18:49 Transaction Type : REQUEST +15:18:49 Received From : +15:18:49 ============================================================================ +15:18:49 FNo. Len. Field Value +15:18:49 ============================================================================ +15:18:49 [ 1] [ 4] [0200] +15:18:49 [ 2] [ 16] [6213545000614952] +15:18:49 [ 3] [ 6] [010000] +15:18:49 [ 4] [ 12] [000050000000] +15:18:49 [ 7] [ 10] [0320081755] +15:18:49 [ 11] [ 6] [269969] +15:18:49 [ 12] [ 6] [151755] +15:18:49 [ 13] [ 4] [0320] +15:18:49 [ 14] [ 4] [4912] +15:18:49 [ 15] [ 4] [0320] +15:18:49 [ 18] [ 4] [6011] +15:18:49 [ 19] [ 3] [418] +15:18:49 [ 22] [ 3] [021] +15:18:49 [ 25] [ 2] [01] +15:18:49 [ 28] [ 9] [D00002000] +15:18:49 [ 32] [ 6] [180893] +15:18:49 [ 35] [ 32] [6213545000614952=491212011495561] +15:18:49 [ 37] [ 12] [507908269969] +15:18:49 [ 41] [ 8] [0442VTVK] +15:18:49 [ 42] [ 15] [999999 ] +15:18:49 [ 43] [ 40] [ATM PHONMEE VIENTIANE LOCATION, Viengkha] +15:18:49 [ 49] [ 3] [418] +15:18:49 [ 52] [ 16] [6AE298B48F86EB7E] +15:18:49 ============================================================================ +15:18:49 + + +waiting on router queue for slot.... +15:18:49 Sending to : +15:18:49 ============================================================================ +15:18:49 Sending to : +15:18:49 ============================================================================ +15:18:49 ============================================================================ +15:18:49 Slot Id : <129> +15:18:49 Transaction Type : REQUEST +15:18:49 Received From : +15:18:49 ============================================================================ +15:18:49 FNo. Len. Field Value +15:18:49 ============================================================================ +15:18:49 [ 1] [ 4] [0200] +15:18:49 [ 2] [ 16] [6213545000614952] +15:18:49 [ 3] [ 6] [010000] +15:18:49 [ 4] [ 12] [000050000000] +15:18:49 [ 7] [ 10] [0320081755] +15:18:49 [ 11] [ 6] [269969] +15:18:49 [ 12] [ 6] [151755] +15:18:49 [ 13] [ 4] [0320] +15:18:49 [ 14] [ 4] [4912] +15:18:49 [ 15] [ 4] [0320] +15:18:49 [ 18] [ 4] [6011] +15:18:49 [ 19] [ 3] [418] +15:18:49 [ 22] [ 3] [021] +15:18:49 [ 25] [ 2] [01] +15:18:49 [ 28] [ 9] [D00002000] +15:18:49 [ 32] [ 6] [180893] +15:18:49 [ 35] [ 32] [6213545000614952=491212011495561] +15:18:49 [ 37] [ 12] [507908269969] +15:18:49 [ 41] [ 8] [0442VTVK] +15:18:49 [ 42] [ 15] [999999 ] +15:18:49 [ 43] [ 40] [ATM PHONMEE VIENTIANE LOCATION, Viengkha] +15:18:49 [ 49] [ 3] [418] +15:18:49 [ 52] [ 16] [6AE298B48F86EB7E] +15:18:49 ============================================================================ +15:18:49 + + +waiting on router queue for slot.... +15:18:49 Sending to : +15:18:49 ============================================================================ +15:18:49 ============================================================================ +15:18:49 Slot Id : <129> +15:18:49 Transaction Type : REQUEST +15:18:49 Received From : +15:18:49 ============================================================================ +15:18:49 FNo. Len. Field Value +15:18:49 ============================================================================ +15:18:49 [ 1] [ 4] [0200] +15:18:49 [ 2] [ 16] [6213545000614952] +15:18:49 [ 3] [ 6] [010000] +15:18:49 [ 4] [ 12] [000050000000] +15:18:49 [ 7] [ 10] [0320081755] +15:18:49 [ 11] [ 6] [269969] +15:18:49 [ 12] [ 6] [151755] +15:18:49 [ 13] [ 4] [0320] +15:18:49 [ 14] [ 4] [4912] +15:18:49 [ 15] [ 4] [0320] +15:18:49 [ 18] [ 4] [6011] +15:18:49 [ 19] [ 3] [418] +15:18:49 [ 22] [ 3] [021] +15:18:49 [ 25] [ 2] [01] +15:18:49 [ 28] [ 9] [D00002000] +15:18:49 [ 32] [ 6] [180893] +15:18:49 [ 35] [ 32] [6213545000614952=491212011495561] +15:18:49 [ 37] [ 12] [507908269969] +15:18:49 [ 41] [ 8] [0442VTVK] +15:18:49 [ 42] [ 15] [999999 ] +15:18:49 [ 43] [ 40] [ATM PHONMEE VIENTIANE LOCATION, Viengkha] +15:18:49 [ 49] [ 3] [418] +15:18:49 [ 52] [ 16] [B5C201C83B266F38] +15:18:49 ============================================================================ +15:18:49 + + +waiting on router queue for slot.... +15:18:49 Sending to : <0> +15:18:49 ============================================================================ +15:18:50 ============================================================================ +15:18:50 Slot Id : <129> +15:18:50 Transaction Type : RESPONSE +15:18:50 Received From : +15:18:50 ============================================================================ +15:18:50 FNo. Len. Field Value +15:18:50 ============================================================================ +15:18:50 [ 1] [ 4] [0210] +15:18:50 [ 2] [ 16] [6213545000614952] +15:18:50 [ 3] [ 6] [010000] +15:18:50 [ 4] [ 12] [000050000000] +15:18:50 [ 7] [ 10] [0320081755] +15:18:50 [ 11] [ 6] [269969] +15:18:50 [ 12] [ 6] [151755] +15:18:50 [ 13] [ 4] [0320] +15:18:50 [ 15] [ 4] [0320] +15:18:50 [ 18] [ 4] [6011] +15:18:50 [ 19] [ 3] [418] +15:18:50 [ 32] [ 6] [180893] +15:18:50 [ 35] [ 32] [6213545000614952=491212011495561] +15:18:50 [ 37] [ 12] [507908269969] +15:18:50 [ 38] [ 6] [979976] +15:18:50 [ 39] [ 2] [00] +15:18:50 [ 41] [ 8] [0442VTVK] +15:18:50 [ 49] [ 3] [418] +15:18:50 [ 54] [ 40] [0001418C0002905979190002418C000290597919] +15:18:50 ============================================================================ +15:18:50 Sending to : +15:18:50 ============================================================================ +15:18:50 + + +waiting on router queue for slot.... +15:18:52 ============================================================================ +15:18:52 Slot Id : <129> +15:18:52 Transaction Type : RESPONSE +15:18:52 Received From : +15:18:52 ============================================================================ +15:18:52 FNo. Len. Field Value +15:18:52 ============================================================================ +15:18:52 [ 1] [ 4] [0210] +15:18:52 [ 2] [ 16] [6213545000614952] +15:18:52 [ 3] [ 6] [010000] +15:18:52 [ 4] [ 12] [000050000000] +15:18:52 [ 7] [ 10] [0320081755] +15:18:52 [ 11] [ 6] [269969] +15:18:52 [ 12] [ 6] [151755] +15:18:52 [ 13] [ 4] [0320] +15:18:52 [ 15] [ 4] [0320] +15:18:52 [ 18] [ 4] [6011] +15:18:52 [ 19] [ 3] [418] +15:18:52 [ 32] [ 6] [180893] +15:18:52 [ 35] [ 32] [6213545000614952=491212011495561] +15:18:52 [ 37] [ 12] [507908269969] +15:18:52 [ 38] [ 6] [979976] +15:18:52 [ 39] [ 2] [00] +15:18:52 [ 41] [ 8] [0442VTVK] +15:18:52 [ 49] [ 3] [418] +15:18:52 [ 54] [ 40] [0001418C0002905979190002418C000290597919] +15:18:52 ============================================================================ +15:18:52 Calculate Source COMM Id = 2 +15:18:52 ============================================================================ +15:18:52 + + +waiting on router queue for slot.... +15:19:04 ============================================================================ +15:19:04 Slot Id : <87> +15:19:04 Transaction Type : REQUEST +15:19:04 Received From : +15:19:04 ============================================================================ +15:19:04 FNo. Len. Field Value +15:19:04 ============================================================================ +15:19:04 [ 1] [ 4] [0800] +15:19:04 [ 7] [ 10] [0320081810] +15:19:04 [ 11] [ 6] [156978] +15:19:04 [ 70] [ 3] [301] +15:19:04 ============================================================================ +15:19:04 + + +waiting on router queue for slot.... +15:19:04 Sending to : +15:19:04 ============================================================================ +15:19:04 ============================================================================ +15:19:04 Slot Id : <87> +15:19:04 Transaction Type : RESPONSE +15:19:04 Received From : +15:19:04 ============================================================================ +15:19:04 FNo. Len. Field Value +15:19:04 ============================================================================ +15:19:04 [ 1] [ 4] [0810] +15:19:04 [ 7] [ 10] [0320081810] +15:19:04 [ 11] [ 6] [156978] +15:19:04 [ 39] [ 2] [00] +15:19:04 [ 70] [ 3] [301] +15:19:04 ============================================================================ +15:19:04 Calculate Source COMM Id = 2 +15:19:04 ============================================================================ +15:19:04 + + +waiting on router queue for slot.... +15:19:16 ============================================================================ +15:19:16 Slot Id : <105> +15:19:16 Transaction Type : REQUEST +15:19:16 Received From : +15:19:16 ============================================================================ +15:19:16 FNo. Len. Field Value +15:19:16 ============================================================================ +15:19:16 [ 1] [ 4] [0800] +15:19:16 [ 2] [ 5] [02531] +15:19:16 [ 3] [ 6] [579158] +15:19:16 [ 7] [ 10] [0320081916] +15:19:16 [ 11] [ 6] [807301] +15:19:16 [ 15] [ 10] [0320081916] +15:19:16 [ 37] [ 11] [57915807301] +15:19:16 [ 70] [ 3] [001] +15:19:16 ============================================================================ +15:19:16 + + +waiting on router queue for slot.... +15:19:17 ============================================================================ +15:19:17 Slot Id : <105> +15:19:17 Transaction Type : RESPONSE +15:19:17 Received From : +15:19:17 ============================================================================ +15:19:17 FNo. Len. Field Value +15:19:17 ============================================================================ +15:19:17 [ 1] [ 4] [0810] +15:19:17 [ 7] [ 10] [0320081916] +15:19:17 [ 11] [ 6] [807301] +15:19:17 [ 15] [ 4] [0320] +15:19:17 [ 37] [ 12] [57915807301] +15:19:17 [ 39] [ 2] [00] +15:19:17 [ 70] [ 3] [001] +15:19:17 ============================================================================ +15:19:17 Sending to : +15:19:17 ============================================================================ +15:19:17 + + +waiting on router queue for slot.... +15:19:19 ============================================================================ +15:19:19 Slot Id : <131> +15:19:19 Transaction Type : REQUEST +15:19:19 Received From : +15:19:19 ============================================================================ +15:19:19 FNo. Len. Field Value +15:19:19 ============================================================================ +15:19:19 [ 1] [ 4] [0800] +15:19:19 [ 7] [ 10] [0320081826] +15:19:19 [ 11] [ 6] [156979] +15:19:19 [ 70] [ 3] [301] +15:19:19 ============================================================================ +15:19:19 + + +waiting on router queue for slot.... +15:19:19 Sending to : +15:19:19 ============================================================================ +15:19:19 ============================================================================ +15:19:19 Slot Id : <131> +15:19:19 Transaction Type : RESPONSE +15:19:19 Received From : +15:19:19 ============================================================================ +15:19:19 FNo. Len. Field Value +15:19:19 ============================================================================ +15:19:19 [ 1] [ 4] [0810] +15:19:19 [ 7] [ 10] [0320081826] +15:19:19 [ 11] [ 6] [156979] +15:19:19 [ 39] [ 2] [00] +15:19:19 [ 70] [ 3] [301] +15:19:19 ============================================================================ +15:19:19 Calculate Source COMM Id = 2 +15:19:19 ============================================================================ +15:19:19 + + +waiting on router queue for slot.... +15:19:32 ============================================================================ +15:19:32 Slot Id : <104> +15:19:32 Transaction Type : REQUEST +15:19:32 Received From : +15:19:32 ============================================================================ +15:19:32 FNo. Len. Field Value +15:19:32 ============================================================================ +15:19:32 [ 1] [ 4] [0200] +15:19:32 [ 2] [ 16] [6688990102077201] +15:19:32 [ 3] [ 6] [010000] +15:19:32 [ 4] [ 12] [000030000000] +15:19:32 [ 7] [ 10] [0320151928] +15:19:32 [ 11] [ 6] [781949] +15:19:32 [ 12] [ 6] [151928] +15:19:32 [ 13] [ 4] [0320] +15:19:32 [ 15] [ 4] [0320] +15:19:32 [ 18] [ 4] [6011] +15:19:32 [ 22] [ 3] [900] +15:19:32 [ 25] [ 2] [02] +15:19:32 [ 28] [ 9] [D00002000] +15:19:32 [ 32] [ 6] [621354] +15:19:32 [ 35] [ 37] [6688990102077201=42061231720179200000] +15:19:32 [ 37] [ 12] [507904635746] +15:19:32 [ 41] [ 8] [17000800] +15:19:32 [ 42] [ 15] [NATIVE ] +15:19:32 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:19:32 [ 49] [ 3] [418] +15:19:32 [ 52] [ 16] [191AAB77B71D78EB] +15:19:32 ============================================================================ +15:19:32 + + +waiting on router queue for slot.... +15:19:32 Sending to : +15:19:32 ============================================================================ +15:19:32 Sending to : +15:19:32 ============================================================================ +15:19:33 ============================================================================ +15:19:33 Slot Id : <104> +15:19:33 Transaction Type : REQUEST +15:19:33 Received From : +15:19:33 ============================================================================ +15:19:33 FNo. Len. Field Value +15:19:33 ============================================================================ +15:19:33 [ 1] [ 4] [0200] +15:19:33 [ 2] [ 16] [6688990102077201] +15:19:33 [ 3] [ 6] [010000] +15:19:33 [ 4] [ 12] [000030000000] +15:19:33 [ 7] [ 10] [0320151928] +15:19:33 [ 11] [ 6] [781949] +15:19:33 [ 12] [ 6] [151928] +15:19:33 [ 13] [ 4] [0320] +15:19:33 [ 15] [ 4] [0320] +15:19:33 [ 18] [ 4] [6011] +15:19:33 [ 22] [ 3] [900] +15:19:33 [ 25] [ 2] [02] +15:19:33 [ 28] [ 9] [D00002000] +15:19:33 [ 32] [ 6] [621354] +15:19:33 [ 35] [ 37] [6688990102077201=42061231720179200000] +15:19:33 [ 37] [ 12] [507904635746] +15:19:33 [ 41] [ 8] [17000800] +15:19:33 [ 42] [ 15] [NATIVE ] +15:19:33 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:19:33 [ 49] [ 3] [418] +15:19:33 [ 52] [ 16] [191AAB77B71D78EB] +15:19:33 ============================================================================ +15:19:33 + + +waiting on router queue for slot.... +15:19:33 Sending to : +15:19:33 ============================================================================ +15:19:33 ============================================================================ +15:19:33 Slot Id : <104> +15:19:33 Transaction Type : REQUEST +15:19:33 Received From : +15:19:33 ============================================================================ +15:19:33 FNo. Len. Field Value +15:19:33 ============================================================================ +15:19:33 [ 1] [ 4] [0200] +15:19:33 [ 2] [ 16] [6688990102077201] +15:19:33 [ 3] [ 6] [010000] +15:19:33 [ 4] [ 12] [000030000000] +15:19:33 [ 7] [ 10] [0320151928] +15:19:33 [ 11] [ 6] [781949] +15:19:33 [ 12] [ 6] [151928] +15:19:33 [ 13] [ 4] [0320] +15:19:33 [ 15] [ 4] [0320] +15:19:33 [ 18] [ 4] [6011] +15:19:33 [ 22] [ 3] [900] +15:19:33 [ 25] [ 2] [02] +15:19:33 [ 28] [ 9] [D00002000] +15:19:33 [ 32] [ 6] [621354] +15:19:33 [ 35] [ 37] [6688990102077201=42061231720179200000] +15:19:33 [ 37] [ 12] [507904635746] +15:19:33 [ 41] [ 8] [17000800] +15:19:33 [ 42] [ 15] [NATIVE ] +15:19:33 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:19:33 [ 49] [ 3] [418] +15:19:33 [ 52] [ 16] [87A24944E4E5DED5] +15:19:33 ============================================================================ +15:19:33 + + +waiting on router queue for slot.... +15:19:33 Sending to : <4> +15:19:33 ============================================================================ +15:19:34 ============================================================================ +15:19:34 Slot Id : <104> +15:19:34 Transaction Type : RESPONSE +15:19:34 Received From : +15:19:34 ============================================================================ +15:19:34 FNo. Len. Field Value +15:19:34 ============================================================================ +15:19:34 [ 1] [ 4] [0210] +15:19:34 [ 2] [ 16] [6688990102077201] +15:19:34 [ 3] [ 6] [010000] +15:19:34 [ 4] [ 12] [000030000000] +15:19:34 [ 11] [ 6] [781949] +15:19:34 [ 12] [ 6] [151928] +15:19:34 [ 15] [ 4] [0320] +15:19:34 [ 18] [ 4] [6011] +15:19:34 [ 32] [ 6] [621354] +15:19:34 [ 35] [ 37] [6688990102077201=42061231720179200000] +15:19:34 [ 37] [ 12] [507904635746] +15:19:34 [ 38] [ 6] [266548] +15:19:34 [ 39] [ 2] [00] +15:19:34 [ 41] [ 8] [17000800] +15:19:34 [ 49] [ 3] [418] +15:19:34 [ 54] [ 20] [0002418C000256450311] +15:19:34 ============================================================================ +15:19:34 Sending to : +15:19:34 ============================================================================ +15:19:34 + + +waiting on router queue for slot.... +15:19:35 ============================================================================ +15:19:35 Slot Id : <138> +15:19:35 Transaction Type : REQUEST +15:19:35 Received From : +15:19:35 ============================================================================ +15:19:35 FNo. Len. Field Value +15:19:35 ============================================================================ +15:19:35 [ 1] [ 4] [0800] +15:19:35 [ 7] [ 10] [0320081842] +15:19:35 [ 11] [ 6] [156980] +15:19:35 [ 70] [ 3] [301] +15:19:35 ============================================================================ +15:19:35 + + +waiting on router queue for slot.... +15:19:35 Sending to : +15:19:35 ============================================================================ +15:19:35 ============================================================================ +15:19:35 Slot Id : <138> +15:19:35 Transaction Type : RESPONSE +15:19:35 Received From : +15:19:35 ============================================================================ +15:19:35 FNo. Len. Field Value +15:19:35 ============================================================================ +15:19:35 [ 1] [ 4] [0810] +15:19:35 [ 7] [ 10] [0320081842] +15:19:35 [ 11] [ 6] [156980] +15:19:35 [ 39] [ 2] [00] +15:19:35 [ 70] [ 3] [301] +15:19:35 ============================================================================ +15:19:35 Calculate Source COMM Id = 2 +15:19:35 ============================================================================ +15:19:35 + + +waiting on router queue for slot.... +15:19:36 ============================================================================ +15:19:36 Slot Id : <104> +15:19:36 Transaction Type : RESPONSE +15:19:36 Received From : +15:19:36 ============================================================================ +15:19:36 FNo. Len. Field Value +15:19:36 ============================================================================ +15:19:36 [ 1] [ 4] [0210] +15:19:36 [ 2] [ 16] [6688990102077201] +15:19:36 [ 3] [ 6] [010000] +15:19:36 [ 4] [ 12] [000030000000] +15:19:36 [ 11] [ 6] [781949] +15:19:36 [ 12] [ 6] [151928] +15:19:36 [ 15] [ 4] [0320] +15:19:36 [ 18] [ 4] [6011] +15:19:36 [ 32] [ 6] [621354] +15:19:36 [ 35] [ 37] [6688990102077201=42061231720179200000] +15:19:36 [ 37] [ 12] [507904635746] +15:19:36 [ 38] [ 6] [266548] +15:19:36 [ 39] [ 2] [00] +15:19:36 [ 41] [ 8] [17000800] +15:19:36 [ 49] [ 3] [418] +15:19:36 [ 54] [ 20] [0002418C000256450311] +15:19:36 ============================================================================ +15:19:36 Calculate Source COMM Id = 0 +15:19:36 ============================================================================ +15:19:36 + + +waiting on router queue for slot.... +15:19:37 ============================================================================ +15:19:37 Slot Id : <116> +15:19:37 Transaction Type : REQUEST +15:19:37 Received From : +15:19:37 ============================================================================ +15:19:37 FNo. Len. Field Value +15:19:37 ============================================================================ +15:19:37 [ 1] [ 4] [0800] +15:19:37 [ 7] [ 10] [0320223125] +15:19:37 [ 11] [ 6] [153125] +15:19:37 [ 37] [ 12] [57915153125] +15:19:37 [ 70] [ 3] [301] +15:19:37 ============================================================================ +15:19:37 + + +waiting on router queue for slot.... +15:19:37 Sending to : +15:19:37 ============================================================================ +15:19:37 ============================================================================ +15:19:37 Slot Id : <116> +15:19:37 Transaction Type : RESPONSE +15:19:37 Received From : +15:19:37 ============================================================================ +15:19:37 FNo. Len. Field Value +15:19:37 ============================================================================ +15:19:37 [ 1] [ 4] [0810] +15:19:37 [ 7] [ 10] [0320223125] +15:19:37 [ 11] [ 6] [153125] +15:19:37 [ 37] [ 12] [579151531250] +15:19:37 [ 39] [ 2] [00] +15:19:37 [ 70] [ 3] [810] +15:19:37 ============================================================================ +15:19:37 Calculate Source COMM Id = 6 +15:19:37 ============================================================================ +15:19:37 + + +waiting on router queue for slot.... +15:19:46 ============================================================================ +15:19:46 Slot Id : <112> +15:19:46 Transaction Type : REQUEST +15:19:46 Received From : +15:19:46 ============================================================================ +15:19:46 FNo. Len. Field Value +15:19:46 ============================================================================ +15:19:46 [ 1] [ 4] [0800] +15:19:46 [ 7] [ 10] [0320081853] +15:19:46 [ 11] [ 6] [156981] +15:19:46 [ 70] [ 3] [301] +15:19:46 ============================================================================ +15:19:46 + + +waiting on router queue for slot.... +15:19:46 Sending to : +15:19:46 ============================================================================ +15:19:46 ============================================================================ +15:19:46 Slot Id : <112> +15:19:46 Transaction Type : RESPONSE +15:19:46 Received From : +15:19:46 ============================================================================ +15:19:46 FNo. Len. Field Value +15:19:46 ============================================================================ +15:19:46 [ 1] [ 4] [0810] +15:19:46 [ 7] [ 10] [0320081853] +15:19:46 [ 11] [ 6] [156981] +15:19:46 [ 39] [ 2] [00] +15:19:46 [ 70] [ 3] [301] +15:19:46 ============================================================================ +15:19:46 Calculate Source COMM Id = 2 +15:19:46 ============================================================================ +15:19:46 + + +waiting on router queue for slot.... +15:19:55 ============================================================================ +15:19:55 Slot Id : <97> +15:19:55 Transaction Type : REQUEST +15:19:55 Received From : +15:19:55 ============================================================================ +15:19:55 FNo. Len. Field Value +15:19:55 ============================================================================ +15:19:55 [ 1] [ 4] [0800] +15:19:55 [ 7] [ 10] [0320082742] +15:19:55 [ 11] [ 6] [079805] +15:19:55 [ 37] [ 12] [57915079805] +15:19:55 [ 70] [ 3] [301] +15:19:55 ============================================================================ +15:19:55 + + +waiting on router queue for slot.... +15:19:55 Sending to : +15:19:55 ============================================================================ +15:19:55 ============================================================================ +15:19:55 Slot Id : <97> +15:19:55 Transaction Type : RESPONSE +15:19:55 Received From : +15:19:55 ============================================================================ +15:19:55 FNo. Len. Field Value +15:19:55 ============================================================================ +15:19:55 [ 1] [ 4] [0810] +15:19:55 [ 7] [ 10] [0320082742] +15:19:55 [ 11] [ 6] [079805] +15:19:55 [ 37] [ 12] [579150798050] +15:19:55 [ 39] [ 2] [00] +15:19:55 [ 70] [ 3] [810] +15:19:55 ============================================================================ +15:19:55 Calculate Source COMM Id = 1 +15:19:55 ============================================================================ +15:19:55 + + +waiting on router queue for slot.... +15:19:58 ============================================================================ +15:19:58 Slot Id : <140> +15:19:58 Transaction Type : REQUEST +15:19:58 Received From : +15:19:58 ============================================================================ +15:19:58 FNo. Len. Field Value +15:19:58 ============================================================================ +15:19:58 [ 1] [ 4] [0800] +15:19:58 [ 7] [ 10] [0320081905] +15:19:58 [ 11] [ 6] [156982] +15:19:58 [ 70] [ 3] [301] +15:19:58 ============================================================================ +15:19:58 + + +waiting on router queue for slot.... +15:19:58 Sending to : +15:19:58 ============================================================================ +15:19:58 ============================================================================ +15:19:58 Slot Id : <140> +15:19:58 Transaction Type : RESPONSE +15:19:58 Received From : +15:19:58 ============================================================================ +15:19:58 FNo. Len. Field Value +15:19:58 ============================================================================ +15:19:58 [ 1] [ 4] [0810] +15:19:58 [ 7] [ 10] [0320081905] +15:19:58 [ 11] [ 6] [156982] +15:19:58 [ 39] [ 2] [00] +15:19:58 [ 70] [ 3] [301] +15:19:58 ============================================================================ +15:19:58 Calculate Source COMM Id = 2 +15:19:58 ============================================================================ +15:19:58 + + +waiting on router queue for slot.... +15:19:59 ============================================================================ +15:19:59 Slot Id : <111> +15:19:59 Transaction Type : REQUEST +15:19:59 Received From : +15:19:59 ============================================================================ +15:19:59 FNo. Len. Field Value +15:19:59 ============================================================================ +15:19:59 [ 1] [ 4] [0200] +15:19:59 [ 2] [ 16] [6213544000688611] +15:19:59 [ 3] [ 6] [011000] +15:19:59 [ 4] [ 12] [000020000000] +15:19:59 [ 7] [ 10] [0320081905] +15:19:59 [ 11] [ 6] [269974] +15:19:59 [ 12] [ 6] [151905] +15:19:59 [ 13] [ 4] [0320] +15:19:59 [ 14] [ 4] [4912] +15:19:59 [ 15] [ 4] [0320] +15:19:59 [ 18] [ 4] [6011] +15:19:59 [ 19] [ 3] [418] +15:19:59 [ 22] [ 3] [021] +15:19:59 [ 25] [ 2] [01] +15:19:59 [ 28] [ 9] [D00002000] +15:19:59 [ 32] [ 6] [180893] +15:19:59 [ 35] [ 32] [6213544000688611=491212018861755] +15:19:59 [ 37] [ 12] [507908269974] +15:19:59 [ 41] [ 8] [0361BLTB] +15:19:59 [ 42] [ 15] [999999 ] +15:19:59 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +15:19:59 [ 49] [ 3] [418] +15:19:59 [ 52] [ 16] [7CCB03D421528D04] +15:19:59 ============================================================================ +15:19:59 + + +waiting on router queue for slot.... +15:19:59 Sending to : +15:19:59 ============================================================================ +15:19:59 Sending to : +15:19:59 ============================================================================ +15:19:59 ============================================================================ +15:19:59 Slot Id : <111> +15:19:59 Transaction Type : REQUEST +15:19:59 Received From : +15:19:59 ============================================================================ +15:19:59 FNo. Len. Field Value +15:19:59 ============================================================================ +15:19:59 [ 1] [ 4] [0200] +15:19:59 [ 2] [ 16] [6213544000688611] +15:19:59 [ 3] [ 6] [011000] +15:19:59 [ 4] [ 12] [000020000000] +15:19:59 [ 7] [ 10] [0320081905] +15:19:59 [ 11] [ 6] [269974] +15:19:59 [ 12] [ 6] [151905] +15:19:59 [ 13] [ 4] [0320] +15:19:59 [ 14] [ 4] [4912] +15:19:59 [ 15] [ 4] [0320] +15:19:59 [ 18] [ 4] [6011] +15:19:59 [ 19] [ 3] [418] +15:19:59 [ 22] [ 3] [021] +15:19:59 [ 25] [ 2] [01] +15:19:59 [ 28] [ 9] [D00002000] +15:19:59 [ 32] [ 6] [180893] +15:19:59 [ 35] [ 32] [6213544000688611=491212018861755] +15:19:59 [ 37] [ 12] [507908269974] +15:19:59 [ 41] [ 8] [0361BLTB] +15:19:59 [ 42] [ 15] [999999 ] +15:19:59 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +15:19:59 [ 49] [ 3] [418] +15:19:59 [ 52] [ 16] [7CCB03D421528D04] +15:19:59 ============================================================================ +15:19:59 + + +waiting on router queue for slot.... +15:19:59 Sending to : +15:19:59 ============================================================================ +15:19:59 ============================================================================ +15:19:59 Slot Id : <111> +15:19:59 Transaction Type : REQUEST +15:19:59 Received From : +15:19:59 ============================================================================ +15:19:59 FNo. Len. Field Value +15:19:59 ============================================================================ +15:19:59 [ 1] [ 4] [0200] +15:19:59 [ 2] [ 16] [6213544000688611] +15:19:59 [ 3] [ 6] [011000] +15:19:59 [ 4] [ 12] [000020000000] +15:19:59 [ 7] [ 10] [0320081905] +15:19:59 [ 11] [ 6] [269974] +15:19:59 [ 12] [ 6] [151905] +15:19:59 [ 13] [ 4] [0320] +15:19:59 [ 14] [ 4] [4912] +15:19:59 [ 15] [ 4] [0320] +15:19:59 [ 18] [ 4] [6011] +15:19:59 [ 19] [ 3] [418] +15:19:59 [ 22] [ 3] [021] +15:19:59 [ 25] [ 2] [01] +15:19:59 [ 28] [ 9] [D00002000] +15:19:59 [ 32] [ 6] [180893] +15:19:59 [ 35] [ 32] [6213544000688611=491212018861755] +15:19:59 [ 37] [ 12] [507908269974] +15:19:59 [ 41] [ 8] [0361BLTB] +15:19:59 [ 42] [ 15] [999999 ] +15:19:59 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +15:19:59 [ 49] [ 3] [418] +15:19:59 [ 52] [ 16] [70764BFDF5C8855D] +15:19:59 ============================================================================ +15:19:59 + + +waiting on router queue for slot.... +15:19:59 Sending to : <0> +15:19:59 ============================================================================ +15:20:00 ============================================================================ +15:20:00 Slot Id : <111> +15:20:00 Transaction Type : RESPONSE +15:20:00 Received From : +15:20:00 ============================================================================ +15:20:00 FNo. Len. Field Value +15:20:00 ============================================================================ +15:20:00 [ 1] [ 4] [0210] +15:20:00 [ 2] [ 16] [6213544000688611] +15:20:00 [ 3] [ 6] [011000] +15:20:00 [ 4] [ 12] [000020000000] +15:20:00 [ 7] [ 10] [0320081905] +15:20:00 [ 11] [ 6] [269974] +15:20:00 [ 12] [ 6] [151905] +15:20:00 [ 13] [ 4] [0320] +15:20:00 [ 15] [ 4] [0320] +15:20:00 [ 18] [ 4] [6011] +15:20:00 [ 19] [ 3] [418] +15:20:00 [ 32] [ 6] [180893] +15:20:00 [ 35] [ 32] [6213544000688611=491212018861755] +15:20:00 [ 37] [ 12] [507908269974] +15:20:00 [ 38] [ 6] [972763] +15:20:00 [ 39] [ 2] [00] +15:20:00 [ 41] [ 8] [0361BLTB] +15:20:00 [ 49] [ 3] [418] +15:20:00 [ 54] [ 40] [1001418C0000641067141002418C000064106714] +15:20:00 ============================================================================ +15:20:00 Sending to : +15:20:00 ============================================================================ +15:20:00 + + +waiting on router queue for slot.... +15:20:01 ============================================================================ +15:20:01 Slot Id : <111> +15:20:01 Transaction Type : RESPONSE +15:20:01 Received From : +15:20:01 ============================================================================ +15:20:01 FNo. Len. Field Value +15:20:01 ============================================================================ +15:20:01 [ 1] [ 4] [0210] +15:20:01 [ 2] [ 16] [6213544000688611] +15:20:01 [ 3] [ 6] [011000] +15:20:01 [ 4] [ 12] [000020000000] +15:20:01 [ 7] [ 10] [0320081905] +15:20:01 [ 11] [ 6] [269974] +15:20:01 [ 12] [ 6] [151905] +15:20:01 [ 13] [ 4] [0320] +15:20:01 [ 15] [ 4] [0320] +15:20:01 [ 18] [ 4] [6011] +15:20:01 [ 19] [ 3] [418] +15:20:01 [ 32] [ 6] [180893] +15:20:01 [ 35] [ 32] [6213544000688611=491212018861755] +15:20:01 [ 37] [ 12] [507908269974] +15:20:01 [ 38] [ 6] [972763] +15:20:01 [ 39] [ 2] [00] +15:20:01 [ 41] [ 8] [0361BLTB] +15:20:01 [ 49] [ 3] [418] +15:20:01 [ 54] [ 40] [1001418C0000641067141002418C000064106714] +15:20:01 ============================================================================ +15:20:01 Calculate Source COMM Id = 2 +15:20:01 ============================================================================ +15:20:01 + + +waiting on router queue for slot.... +15:20:06 ============================================================================ +15:20:06 Slot Id : <117> +15:20:06 Transaction Type : REQUEST +15:20:06 Received From : +15:20:06 ============================================================================ +15:20:06 FNo. Len. Field Value +15:20:06 ============================================================================ +15:20:06 [ 1] [ 4] [0200] +15:20:06 [ 2] [ 16] [1888880000030635] +15:20:06 [ 3] [ 6] [011000] +15:20:06 [ 4] [ 12] [000100000000] +15:20:06 [ 7] [ 10] [0320152002] +15:20:06 [ 11] [ 6] [782111] +15:20:06 [ 12] [ 6] [152002] +15:20:06 [ 13] [ 4] [0320] +15:20:06 [ 15] [ 4] [0320] +15:20:06 [ 18] [ 4] [6011] +15:20:06 [ 22] [ 3] [900] +15:20:06 [ 25] [ 2] [02] +15:20:06 [ 28] [ 9] [D00002000] +15:20:06 [ 32] [ 6] [621354] +15:20:06 [ 35] [ 32] [1888880000030635=000010100000943] +15:20:06 [ 37] [ 12] [507903986682] +15:20:06 [ 41] [ 8] [01011400] +15:20:06 [ 42] [ 15] [NATIVE ] +15:20:06 [ 43] [ 40] [Sangchieng Market SikhottabongLAO] +15:20:06 [ 49] [ 3] [418] +15:20:06 [ 52] [ 16] [172C418C2701B82A] +15:20:06 ============================================================================ +15:20:06 + + +waiting on router queue for slot.... +15:20:06 Sending to : +15:20:06 ============================================================================ +15:20:06 Sending to : +15:20:06 ============================================================================ +15:20:07 ============================================================================ +15:20:07 Slot Id : <117> +15:20:07 Transaction Type : REQUEST +15:20:07 Received From : +15:20:07 ============================================================================ +15:20:07 FNo. Len. Field Value +15:20:07 ============================================================================ +15:20:07 [ 1] [ 4] [0200] +15:20:07 [ 2] [ 16] [1888880000030635] +15:20:07 [ 3] [ 6] [011000] +15:20:07 [ 4] [ 12] [000100000000] +15:20:07 [ 7] [ 10] [0320152002] +15:20:07 [ 11] [ 6] [782111] +15:20:07 [ 12] [ 6] [152002] +15:20:07 [ 13] [ 4] [0320] +15:20:07 [ 15] [ 4] [0320] +15:20:07 [ 18] [ 4] [6011] +15:20:07 [ 22] [ 3] [900] +15:20:07 [ 25] [ 2] [02] +15:20:07 [ 28] [ 9] [D00002000] +15:20:07 [ 32] [ 6] [621354] +15:20:07 [ 35] [ 32] [1888880000030635=000010100000943] +15:20:07 [ 37] [ 12] [507903986682] +15:20:07 [ 41] [ 8] [01011400] +15:20:07 [ 42] [ 15] [NATIVE ] +15:20:07 [ 43] [ 40] [Sangchieng Market SikhottabongLAO] +15:20:07 [ 49] [ 3] [418] +15:20:07 [ 52] [ 16] [172C418C2701B82A] +15:20:07 ============================================================================ +15:20:07 + + +waiting on router queue for slot.... +15:20:07 Sending to : +15:20:07 ============================================================================ +15:20:07 ============================================================================ +15:20:07 Slot Id : <117> +15:20:07 Transaction Type : REQUEST +15:20:07 Received From : +15:20:07 ============================================================================ +15:20:07 FNo. Len. Field Value +15:20:07 ============================================================================ +15:20:07 [ 1] [ 4] [0200] +15:20:07 [ 2] [ 16] [1888880000030635] +15:20:07 [ 3] [ 6] [011000] +15:20:07 [ 4] [ 12] [000100000000] +15:20:07 [ 7] [ 10] [0320152002] +15:20:07 [ 11] [ 6] [782111] +15:20:07 [ 12] [ 6] [152002] +15:20:07 [ 13] [ 4] [0320] +15:20:07 [ 15] [ 4] [0320] +15:20:07 [ 18] [ 4] [6011] +15:20:07 [ 22] [ 3] [900] +15:20:07 [ 25] [ 2] [02] +15:20:07 [ 28] [ 9] [D00002000] +15:20:07 [ 32] [ 6] [621354] +15:20:07 [ 35] [ 32] [1888880000030635=000010100000943] +15:20:07 [ 37] [ 12] [507903986682] +15:20:07 [ 41] [ 8] [01011400] +15:20:07 [ 42] [ 15] [NATIVE ] +15:20:07 [ 43] [ 40] [Sangchieng Market SikhottabongLAO] +15:20:07 [ 49] [ 3] [418] +15:20:07 [ 52] [ 16] [46297B8E17203314] +15:20:07 ============================================================================ +15:20:07 + + +waiting on router queue for slot.... +15:20:07 Sending to : <5> +15:20:07 ============================================================================ +15:20:14 ============================================================================ +15:20:14 Slot Id : <124> +15:20:14 Transaction Type : REQUEST +15:20:14 Received From : +15:20:14 ============================================================================ +15:20:14 FNo. Len. Field Value +15:20:14 ============================================================================ +15:20:14 [ 1] [ 4] [0800] +15:20:14 [ 7] [ 10] [0320081921] +15:20:14 [ 11] [ 6] [156983] +15:20:14 [ 70] [ 3] [301] +15:20:14 ============================================================================ +15:20:14 + + +waiting on router queue for slot.... +15:20:14 Sending to : +15:20:14 ============================================================================ +15:20:14 ============================================================================ +15:20:14 Slot Id : <124> +15:20:14 Transaction Type : RESPONSE +15:20:14 Received From : +15:20:14 ============================================================================ +15:20:14 FNo. Len. Field Value +15:20:14 ============================================================================ +15:20:14 [ 1] [ 4] [0810] +15:20:14 [ 7] [ 10] [0320081921] +15:20:14 [ 11] [ 6] [156983] +15:20:14 [ 39] [ 2] [00] +15:20:14 [ 70] [ 3] [301] +15:20:14 ============================================================================ +15:20:14 Calculate Source COMM Id = 2 +15:20:14 ============================================================================ +15:20:14 + + +waiting on router queue for slot.... +15:20:15 ============================================================================ +15:20:15 Slot Id : <117> +15:20:15 Transaction Type : RESPONSE +15:20:15 Received From : +15:20:15 ============================================================================ +15:20:15 FNo. Len. Field Value +15:20:15 ============================================================================ +15:20:15 [ 1] [ 4] [0210] +15:20:15 [ 2] [ 16] [1888880000030635] +15:20:15 [ 3] [ 6] [011000] +15:20:15 [ 4] [ 12] [000100000000] +15:20:15 [ 7] [ 10] [0320152002] +15:20:15 [ 11] [ 6] [782111] +15:20:15 [ 12] [ 6] [152002] +15:20:15 [ 13] [ 4] [0320] +15:20:15 [ 15] [ 4] [0320] +15:20:15 [ 18] [ 4] [6011] +15:20:15 [ 19] [ 3] [418] +15:20:15 [ 32] [ 6] [621354] +15:20:15 [ 37] [ 12] [507903986682] +15:20:15 [ 38] [ 6] [684290] +15:20:15 [ 39] [ 2] [00] +15:20:15 [ 41] [ 8] [01011400] +15:20:15 [ 49] [ 3] [418] +15:20:15 [ 54] [ 0] [] +15:20:15 ============================================================================ +15:20:15 Sending to : +15:20:15 ============================================================================ +15:20:15 + + +waiting on router queue for slot.... +15:20:16 ============================================================================ +15:20:16 Slot Id : <117> +15:20:16 Transaction Type : RESPONSE +15:20:16 Received From : +15:20:16 ============================================================================ +15:20:16 FNo. Len. Field Value +15:20:16 ============================================================================ +15:20:16 [ 1] [ 4] [0210] +15:20:16 [ 2] [ 16] [1888880000030635] +15:20:16 [ 3] [ 6] [011000] +15:20:16 [ 4] [ 12] [000100000000] +15:20:16 [ 7] [ 10] [0320152002] +15:20:16 [ 11] [ 6] [782111] +15:20:16 [ 12] [ 6] [152002] +15:20:16 [ 13] [ 4] [0320] +15:20:16 [ 15] [ 4] [0320] +15:20:16 [ 18] [ 4] [6011] +15:20:16 [ 19] [ 3] [418] +15:20:16 [ 32] [ 6] [621354] +15:20:16 [ 37] [ 12] [507903986682] +15:20:16 [ 38] [ 6] [684290] +15:20:16 [ 39] [ 2] [00] +15:20:16 [ 41] [ 8] [01011400] +15:20:16 [ 49] [ 3] [418] +15:20:16 [ 54] [ 0] [] +15:20:16 ============================================================================ +15:20:16 Calculate Source COMM Id = 0 +15:20:16 ============================================================================ +15:20:16 + + +waiting on router queue for slot.... +15:20:16 ============================================================================ +15:20:16 Slot Id : <123> +15:20:16 Transaction Type : REQUEST +15:20:16 Received From : +15:20:16 ============================================================================ +15:20:16 FNo. Len. Field Value +15:20:16 ============================================================================ +15:20:16 [ 1] [ 4] [0200] +15:20:16 [ 2] [ 16] [6213548000097756] +15:20:16 [ 3] [ 6] [011000] +15:20:16 [ 4] [ 12] [000010000000] +15:20:16 [ 7] [ 10] [0320152037] +15:20:16 [ 11] [ 6] [207868] +15:20:16 [ 12] [ 6] [031847] +15:20:16 [ 13] [ 4] [0320] +15:20:16 [ 14] [ 4] [1309] +15:20:16 [ 15] [ 4] [0320] +15:20:16 [ 18] [ 4] [6011] +15:20:16 [ 19] [ 3] [418] +15:20:16 [ 22] [ 3] [021] +15:20:16 [ 25] [ 2] [01] +15:20:16 [ 28] [ 9] [D00002000] +15:20:16 [ 32] [ 6] [198901] +15:20:16 [ 35] [ 32] [6213548000097756=130912019775669] +15:20:16 [ 37] [ 12] [507915207868] +15:20:16 [ 41] [ 8] [01529031] +15:20:16 [ 42] [ 15] [000000041529031] +15:20:16 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:20:16 [ 49] [ 3] [418] +15:20:16 [ 52] [ 16] [9557D8C07CE3323E] +15:20:16 ============================================================================ +15:20:16 + + +waiting on router queue for slot.... +15:20:16 Sending to : +15:20:16 ============================================================================ +15:20:16 Sending to : +15:20:16 ============================================================================ +15:20:17 ============================================================================ +15:20:17 Slot Id : <123> +15:20:17 Transaction Type : REQUEST +15:20:17 Received From : +15:20:17 ============================================================================ +15:20:17 FNo. Len. Field Value +15:20:17 ============================================================================ +15:20:17 [ 1] [ 4] [0200] +15:20:17 [ 2] [ 16] [6213548000097756] +15:20:17 [ 3] [ 6] [011000] +15:20:17 [ 4] [ 12] [000010000000] +15:20:17 [ 7] [ 10] [0320152037] +15:20:17 [ 11] [ 6] [207868] +15:20:17 [ 12] [ 6] [031847] +15:20:17 [ 13] [ 4] [0320] +15:20:17 [ 14] [ 4] [1309] +15:20:17 [ 15] [ 4] [0320] +15:20:17 [ 18] [ 4] [6011] +15:20:17 [ 19] [ 3] [418] +15:20:17 [ 22] [ 3] [021] +15:20:17 [ 25] [ 2] [01] +15:20:17 [ 28] [ 9] [D00002000] +15:20:17 [ 32] [ 6] [198901] +15:20:17 [ 35] [ 32] [6213548000097756=130912019775669] +15:20:17 [ 37] [ 12] [507915207868] +15:20:17 [ 41] [ 8] [01529031] +15:20:17 [ 42] [ 15] [000000041529031] +15:20:17 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:20:17 [ 49] [ 3] [418] +15:20:17 [ 52] [ 16] [9557D8C07CE3323E] +15:20:17 ============================================================================ +15:20:17 + + +waiting on router queue for slot.... +15:20:17 Sending to : +15:20:17 ============================================================================ +15:20:17 ============================================================================ +15:20:17 Slot Id : <123> +15:20:17 Transaction Type : REQUEST +15:20:17 Received From : +15:20:17 ============================================================================ +15:20:17 FNo. Len. Field Value +15:20:17 ============================================================================ +15:20:17 [ 1] [ 4] [0200] +15:20:17 [ 2] [ 16] [6213548000097756] +15:20:17 [ 3] [ 6] [011000] +15:20:17 [ 4] [ 12] [000010000000] +15:20:17 [ 7] [ 10] [0320152037] +15:20:17 [ 11] [ 6] [207868] +15:20:17 [ 12] [ 6] [031847] +15:20:17 [ 13] [ 4] [0320] +15:20:17 [ 14] [ 4] [1309] +15:20:17 [ 15] [ 4] [0320] +15:20:17 [ 18] [ 4] [6011] +15:20:17 [ 19] [ 3] [418] +15:20:17 [ 22] [ 3] [021] +15:20:17 [ 25] [ 2] [01] +15:20:17 [ 28] [ 9] [D00002000] +15:20:17 [ 32] [ 6] [198901] +15:20:17 [ 35] [ 32] [6213548000097756=130912019775669] +15:20:17 [ 37] [ 12] [507915207868] +15:20:17 [ 41] [ 8] [01529031] +15:20:17 [ 42] [ 15] [000000041529031] +15:20:17 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:20:17 [ 49] [ 3] [418] +15:20:17 [ 52] [ 16] [C95F60E4F231923E] +15:20:17 ============================================================================ +15:20:17 + + +waiting on router queue for slot.... +15:20:17 Sending to : <0> +15:20:17 ============================================================================ +15:20:17 ============================================================================ +15:20:17 Slot Id : <123> +15:20:17 Transaction Type : RESPONSE +15:20:17 Received From : +15:20:17 ============================================================================ +15:20:17 FNo. Len. Field Value +15:20:17 ============================================================================ +15:20:17 [ 1] [ 4] [0210] +15:20:17 [ 2] [ 16] [6213548000097756] +15:20:17 [ 3] [ 6] [011000] +15:20:17 [ 4] [ 12] [000010000000] +15:20:17 [ 7] [ 10] [0320152037] +15:20:17 [ 11] [ 6] [207868] +15:20:17 [ 12] [ 6] [031847] +15:20:17 [ 13] [ 4] [0320] +15:20:17 [ 15] [ 4] [0320] +15:20:17 [ 18] [ 4] [6011] +15:20:17 [ 19] [ 3] [418] +15:20:17 [ 32] [ 6] [198901] +15:20:17 [ 35] [ 32] [6213548000097756=130912019775669] +15:20:17 [ 37] [ 12] [507915207868] +15:20:17 [ 38] [ 6] [558078] +15:20:17 [ 39] [ 2] [00] +15:20:17 [ 41] [ 8] [01529031] +15:20:17 [ 49] [ 3] [418] +15:20:17 [ 54] [ 40] [1001418C0000382370311002418C000038237031] +15:20:17 ============================================================================ +15:20:17 Sending to : +15:20:17 ============================================================================ +15:20:17 + + +waiting on router queue for slot.... +15:20:18 ============================================================================ +15:20:18 Slot Id : <123> +15:20:18 Transaction Type : RESPONSE +15:20:18 Received From : +15:20:18 ============================================================================ +15:20:18 FNo. Len. Field Value +15:20:18 ============================================================================ +15:20:18 [ 1] [ 4] [0210] +15:20:18 [ 2] [ 16] [6213548000097756] +15:20:18 [ 3] [ 6] [011000] +15:20:18 [ 4] [ 12] [000010000000] +15:20:18 [ 7] [ 10] [0320152037] +15:20:18 [ 11] [ 6] [207868] +15:20:18 [ 12] [ 6] [031847] +15:20:18 [ 13] [ 4] [0320] +15:20:18 [ 15] [ 4] [0320] +15:20:18 [ 18] [ 4] [6011] +15:20:18 [ 19] [ 3] [418] +15:20:18 [ 32] [ 6] [198901] +15:20:18 [ 35] [ 32] [6213548000097756=130912019775669] +15:20:18 [ 37] [ 12] [507915207868] +15:20:18 [ 38] [ 6] [558078] +15:20:18 [ 39] [ 2] [00] +15:20:18 [ 41] [ 8] [01529031] +15:20:18 [ 49] [ 3] [418] +15:20:18 [ 54] [ 40] [1001418C0000382370311002418C000038237031] +15:20:18 ============================================================================ +15:20:18 Calculate Source COMM Id = 5 +15:20:18 ============================================================================ +15:20:18 + + +waiting on router queue for slot.... +15:20:18 ============================================================================ +15:20:18 Slot Id : <80> +15:20:18 Transaction Type : REQUEST +15:20:18 Received From : +15:20:18 ============================================================================ +15:20:18 FNo. Len. Field Value +15:20:18 ============================================================================ +15:20:18 [ 1] [ 4] [0800] +15:20:18 [ 2] [ 5] [02531] +15:20:18 [ 3] [ 6] [579158] +15:20:18 [ 7] [ 10] [0320082018] +15:20:18 [ 11] [ 6] [807302] +15:20:18 [ 15] [ 10] [0320082018] +15:20:18 [ 37] [ 11] [57915807302] +15:20:18 [ 70] [ 3] [001] +15:20:18 ============================================================================ +15:20:18 + + +waiting on router queue for slot.... +15:20:19 ============================================================================ +15:20:19 Slot Id : <80> +15:20:19 Transaction Type : RESPONSE +15:20:19 Received From : +15:20:19 ============================================================================ +15:20:19 FNo. Len. Field Value +15:20:19 ============================================================================ +15:20:19 [ 1] [ 4] [0810] +15:20:19 [ 7] [ 10] [0320082018] +15:20:19 [ 11] [ 6] [807302] +15:20:19 [ 15] [ 4] [0320] +15:20:19 [ 37] [ 12] [57915807302] +15:20:19 [ 39] [ 2] [00] +15:20:19 [ 70] [ 3] [001] +15:20:19 ============================================================================ +15:20:19 Sending to : +15:20:19 ============================================================================ +15:20:19 + + +waiting on router queue for slot.... +15:20:19 ============================================================================ +15:20:19 Slot Id : <161> +15:20:19 Transaction Type : REQUEST +15:20:19 Received From : +15:20:19 ============================================================================ +15:20:19 FNo. Len. Field Value +15:20:19 ============================================================================ +15:20:19 [ 1] [ 4] [0420] +15:20:19 [ 2] [ 16] [6213544001993275] +15:20:19 [ 3] [ 6] [011000] +15:20:19 [ 4] [ 12] [000030000000] +15:20:19 [ 7] [ 10] [0320152021] +15:20:19 [ 11] [ 6] [079114] +15:20:19 [ 12] [ 6] [152021] +15:20:19 [ 13] [ 4] [0320] +15:20:19 [ 14] [ 4] [4912] +15:20:19 [ 15] [ 4] [0320] +15:20:19 [ 18] [ 4] [6011] +15:20:19 [ 22] [ 3] [900] +15:20:19 [ 25] [ 2] [02] +15:20:19 [ 28] [ 9] [C00002000] +15:20:19 [ 32] [ 6] [220699] +15:20:19 [ 35] [ 32] [6213544001993275=491212019327522] +15:20:19 [ 37] [ 12] [507900132977] +15:20:19 [ 39] [ 2] [00] +15:20:19 [ 41] [ 8] [03000100] +15:20:19 [ 42] [ 15] [APTRA ] +15:20:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:20:19 [ 49] [ 3] [418] +15:20:19 [ 90] [ 42] [020007911403201520210000022069900000000000] +15:20:19 ============================================================================ +15:20:19 + + +waiting on router queue for slot.... +15:20:19 Sending to : +15:20:19 ============================================================================ +15:20:23 ============================================================================ +15:20:23 Slot Id : <161> +15:20:23 Transaction Type : RESPONSE +15:20:23 Received From : +15:20:23 ============================================================================ +15:20:23 FNo. Len. Field Value +15:20:23 ============================================================================ +15:20:23 [ 1] [ 4] [0430] +15:20:23 [ 2] [ 16] [6213544001993275] +15:20:23 [ 3] [ 6] [011000] +15:20:23 [ 4] [ 12] [000030000000] +15:20:23 [ 7] [ 10] [0320152021] +15:20:23 [ 11] [ 6] [079114] +15:20:23 [ 12] [ 6] [152021] +15:20:23 [ 13] [ 4] [0320] +15:20:23 [ 14] [ 4] [4912] +15:20:23 [ 15] [ 4] [0320] +15:20:23 [ 18] [ 4] [6011] +15:20:23 [ 22] [ 3] [900] +15:20:23 [ 25] [ 2] [02] +15:20:23 [ 28] [ 9] [C00002000] +15:20:23 [ 32] [ 6] [220699] +15:20:23 [ 35] [ 32] [6213544001993275=491212019327522] +15:20:23 [ 37] [ 12] [507900132977] +15:20:23 [ 39] [ 2] [00] +15:20:23 [ 41] [ 8] [03000100] +15:20:23 [ 42] [ 15] [APTRA ] +15:20:23 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:20:23 [ 49] [ 3] [418] +15:20:23 [ 90] [ 42] [020007911403201520210000022069900000000000] +15:20:23 ============================================================================ +15:20:23 Calculate Source COMM Id = 1 +15:20:23 ============================================================================ +15:20:23 + + +waiting on router queue for slot.... +15:20:30 ============================================================================ +15:20:30 Slot Id : <147> +15:20:30 Transaction Type : REQUEST +15:20:30 Received From : +15:20:30 ============================================================================ +15:20:30 FNo. Len. Field Value +15:20:30 ============================================================================ +15:20:30 [ 1] [ 4] [0800] +15:20:30 [ 7] [ 10] [0320081936] +15:20:30 [ 11] [ 6] [156984] +15:20:30 [ 70] [ 3] [301] +15:20:30 ============================================================================ +15:20:30 + + +waiting on router queue for slot.... +15:20:30 Sending to : +15:20:30 ============================================================================ +15:20:30 ============================================================================ +15:20:30 Slot Id : <147> +15:20:30 Transaction Type : RESPONSE +15:20:30 Received From : +15:20:30 ============================================================================ +15:20:30 FNo. Len. Field Value +15:20:30 ============================================================================ +15:20:30 [ 1] [ 4] [0810] +15:20:30 [ 7] [ 10] [0320081936] +15:20:30 [ 11] [ 6] [156984] +15:20:30 [ 39] [ 2] [00] +15:20:30 [ 70] [ 3] [301] +15:20:30 ============================================================================ +15:20:30 Calculate Source COMM Id = 2 +15:20:30 ============================================================================ +15:20:30 + + +waiting on router queue for slot.... +15:20:42 ============================================================================ +15:20:42 Slot Id : <162> +15:20:42 Transaction Type : REQUEST +15:20:42 Received From : +15:20:42 ============================================================================ +15:20:42 FNo. Len. Field Value +15:20:42 ============================================================================ +15:20:42 [ 1] [ 4] [0800] +15:20:42 [ 7] [ 10] [0320223230] +15:20:42 [ 11] [ 6] [153230] +15:20:42 [ 37] [ 12] [57915153230] +15:20:42 [ 70] [ 3] [301] +15:20:42 ============================================================================ +15:20:42 + + +waiting on router queue for slot.... +15:20:42 Sending to : +15:20:42 ============================================================================ +15:20:42 ============================================================================ +15:20:42 Slot Id : <162> +15:20:42 Transaction Type : RESPONSE +15:20:42 Received From : +15:20:42 ============================================================================ +15:20:42 FNo. Len. Field Value +15:20:42 ============================================================================ +15:20:42 [ 1] [ 4] [0810] +15:20:42 [ 7] [ 10] [0320223230] +15:20:42 [ 11] [ 6] [153230] +15:20:42 [ 37] [ 12] [579151532300] +15:20:42 [ 39] [ 2] [00] +15:20:42 [ 70] [ 3] [810] +15:20:42 ============================================================================ +15:20:42 Calculate Source COMM Id = 6 +15:20:42 ============================================================================ +15:20:42 + + +waiting on router queue for slot.... +15:20:44 ============================================================================ +15:20:44 Slot Id : <132> +15:20:44 Transaction Type : REQUEST +15:20:44 Received From : +15:20:44 ============================================================================ +15:20:44 FNo. Len. Field Value +15:20:44 ============================================================================ +15:20:44 [ 1] [ 4] [0800] +15:20:44 [ 7] [ 10] [0320081951] +15:20:44 [ 11] [ 6] [156985] +15:20:44 [ 70] [ 3] [301] +15:20:44 ============================================================================ +15:20:44 + + +waiting on router queue for slot.... +15:20:44 Sending to : +15:20:44 ============================================================================ +15:20:44 ============================================================================ +15:20:44 Slot Id : <132> +15:20:44 Transaction Type : RESPONSE +15:20:44 Received From : +15:20:44 ============================================================================ +15:20:44 FNo. Len. Field Value +15:20:44 ============================================================================ +15:20:44 [ 1] [ 4] [0810] +15:20:44 [ 7] [ 10] [0320081951] +15:20:44 [ 11] [ 6] [156985] +15:20:44 [ 39] [ 2] [00] +15:20:44 [ 70] [ 3] [301] +15:20:44 ============================================================================ +15:20:44 Calculate Source COMM Id = 2 +15:20:44 ============================================================================ +15:20:44 + + +waiting on router queue for slot.... +15:20:55 ============================================================================ +15:20:55 Slot Id : <122> +15:20:55 Transaction Type : REQUEST +15:20:55 Received From : +15:20:55 ============================================================================ +15:20:55 FNo. Len. Field Value +15:20:55 ============================================================================ +15:20:55 [ 1] [ 4] [0800] +15:20:55 [ 7] [ 10] [0320082002] +15:20:55 [ 11] [ 6] [156986] +15:20:55 [ 70] [ 3] [301] +15:20:55 ============================================================================ +15:20:55 + + +waiting on router queue for slot.... +15:20:55 Sending to : +15:20:55 ============================================================================ +15:20:55 ============================================================================ +15:20:55 Slot Id : <122> +15:20:55 Transaction Type : RESPONSE +15:20:55 Received From : +15:20:55 ============================================================================ +15:20:55 FNo. Len. Field Value +15:20:55 ============================================================================ +15:20:55 [ 1] [ 4] [0810] +15:20:55 [ 7] [ 10] [0320082002] +15:20:55 [ 11] [ 6] [156986] +15:20:55 [ 39] [ 2] [00] +15:20:55 [ 70] [ 3] [301] +15:20:55 ============================================================================ +15:20:55 Calculate Source COMM Id = 2 +15:20:55 ============================================================================ +15:20:55 + + +waiting on router queue for slot.... +15:21:11 ============================================================================ +15:21:11 Slot Id : <145> +15:21:11 Transaction Type : REQUEST +15:21:11 Received From : +15:21:11 ============================================================================ +15:21:11 FNo. Len. Field Value +15:21:11 ============================================================================ +15:21:11 [ 1] [ 4] [0800] +15:21:11 [ 7] [ 10] [0320082018] +15:21:11 [ 11] [ 6] [156987] +15:21:11 [ 70] [ 3] [301] +15:21:11 ============================================================================ +15:21:11 + + +waiting on router queue for slot.... +15:21:11 Sending to : +15:21:11 ============================================================================ +15:21:11 ============================================================================ +15:21:11 Slot Id : <145> +15:21:11 Transaction Type : RESPONSE +15:21:11 Received From : +15:21:11 ============================================================================ +15:21:11 FNo. Len. Field Value +15:21:11 ============================================================================ +15:21:11 [ 1] [ 4] [0810] +15:21:11 [ 7] [ 10] [0320082018] +15:21:11 [ 11] [ 6] [156987] +15:21:11 [ 39] [ 2] [00] +15:21:11 [ 70] [ 3] [301] +15:21:11 ============================================================================ +15:21:11 Calculate Source COMM Id = 2 +15:21:11 ============================================================================ +15:21:11 + + +waiting on router queue for slot.... +15:21:19 ============================================================================ +15:21:19 Slot Id : <154> +15:21:19 Transaction Type : REQUEST +15:21:19 Received From : +15:21:19 ============================================================================ +15:21:19 FNo. Len. Field Value +15:21:19 ============================================================================ +15:21:19 [ 1] [ 4] [0200] +15:21:19 [ 2] [ 16] [1888880000030635] +15:21:19 [ 3] [ 6] [011000] +15:21:19 [ 4] [ 12] [000100000000] +15:21:19 [ 7] [ 10] [0320152114] +15:21:19 [ 11] [ 6] [782411] +15:21:19 [ 12] [ 6] [152114] +15:21:19 [ 13] [ 4] [0320] +15:21:19 [ 15] [ 4] [0320] +15:21:19 [ 18] [ 4] [6011] +15:21:19 [ 22] [ 3] [900] +15:21:19 [ 25] [ 2] [02] +15:21:19 [ 28] [ 9] [D00002000] +15:21:19 [ 32] [ 6] [621354] +15:21:19 [ 35] [ 32] [1888880000030635=000010100000943] +15:21:19 [ 37] [ 12] [507903986684] +15:21:19 [ 41] [ 8] [01011400] +15:21:19 [ 42] [ 15] [NATIVE ] +15:21:19 [ 43] [ 40] [Sangchieng Market SikhottabongLAO] +15:21:19 [ 49] [ 3] [418] +15:21:19 [ 52] [ 16] [172C418C2701B82A] +15:21:19 ============================================================================ +15:21:19 + + +waiting on router queue for slot.... +15:21:19 Sending to : +15:21:19 ============================================================================ +15:21:19 Sending to : +15:21:19 ============================================================================ +15:21:19 ============================================================================ +15:21:19 Slot Id : <154> +15:21:19 Transaction Type : REQUEST +15:21:19 Received From : +15:21:19 ============================================================================ +15:21:19 FNo. Len. Field Value +15:21:19 ============================================================================ +15:21:19 [ 1] [ 4] [0200] +15:21:19 [ 2] [ 16] [1888880000030635] +15:21:19 [ 3] [ 6] [011000] +15:21:19 [ 4] [ 12] [000100000000] +15:21:19 [ 7] [ 10] [0320152114] +15:21:19 [ 11] [ 6] [782411] +15:21:19 [ 12] [ 6] [152114] +15:21:19 [ 13] [ 4] [0320] +15:21:19 [ 15] [ 4] [0320] +15:21:19 [ 18] [ 4] [6011] +15:21:19 [ 22] [ 3] [900] +15:21:19 [ 25] [ 2] [02] +15:21:19 [ 28] [ 9] [D00002000] +15:21:19 [ 32] [ 6] [621354] +15:21:19 [ 35] [ 32] [1888880000030635=000010100000943] +15:21:19 [ 37] [ 12] [507903986684] +15:21:19 [ 41] [ 8] [01011400] +15:21:19 [ 42] [ 15] [NATIVE ] +15:21:19 [ 43] [ 40] [Sangchieng Market SikhottabongLAO] +15:21:19 [ 49] [ 3] [418] +15:21:19 [ 52] [ 16] [172C418C2701B82A] +15:21:19 ============================================================================ +15:21:19 + + +waiting on router queue for slot.... +15:21:19 Sending to : +15:21:19 ============================================================================ +15:21:19 ============================================================================ +15:21:19 Slot Id : <154> +15:21:19 Transaction Type : REQUEST +15:21:19 Received From : +15:21:19 ============================================================================ +15:21:19 FNo. Len. Field Value +15:21:19 ============================================================================ +15:21:19 [ 1] [ 4] [0200] +15:21:19 [ 2] [ 16] [1888880000030635] +15:21:19 [ 3] [ 6] [011000] +15:21:19 [ 4] [ 12] [000100000000] +15:21:19 [ 7] [ 10] [0320152114] +15:21:19 [ 11] [ 6] [782411] +15:21:19 [ 12] [ 6] [152114] +15:21:19 [ 13] [ 4] [0320] +15:21:19 [ 15] [ 4] [0320] +15:21:19 [ 18] [ 4] [6011] +15:21:19 [ 22] [ 3] [900] +15:21:19 [ 25] [ 2] [02] +15:21:19 [ 28] [ 9] [D00002000] +15:21:19 [ 32] [ 6] [621354] +15:21:19 [ 35] [ 32] [1888880000030635=000010100000943] +15:21:19 [ 37] [ 12] [507903986684] +15:21:19 [ 41] [ 8] [01011400] +15:21:19 [ 42] [ 15] [NATIVE ] +15:21:19 [ 43] [ 40] [Sangchieng Market SikhottabongLAO] +15:21:19 [ 49] [ 3] [418] +15:21:19 [ 52] [ 16] [46297B8E17203314] +15:21:19 ============================================================================ +15:21:19 + + +waiting on router queue for slot.... +15:21:19 Sending to : <5> +15:21:19 ============================================================================ +15:21:20 ============================================================================ +15:21:20 Slot Id : <158> +15:21:20 Transaction Type : REQUEST +15:21:20 Received From : +15:21:20 ============================================================================ +15:21:20 FNo. Len. Field Value +15:21:20 ============================================================================ +15:21:20 [ 1] [ 4] [0800] +15:21:20 [ 2] [ 5] [02531] +15:21:20 [ 3] [ 6] [579158] +15:21:20 [ 7] [ 10] [0320082120] +15:21:20 [ 11] [ 6] [807303] +15:21:20 [ 15] [ 10] [0320082120] +15:21:20 [ 37] [ 11] [57915807303] +15:21:20 [ 70] [ 3] [001] +15:21:20 ============================================================================ +15:21:20 + + +waiting on router queue for slot.... +15:21:21 ============================================================================ +15:21:21 Slot Id : <158> +15:21:21 Transaction Type : RESPONSE +15:21:21 Received From : +15:21:21 ============================================================================ +15:21:21 FNo. Len. Field Value +15:21:21 ============================================================================ +15:21:21 [ 1] [ 4] [0810] +15:21:21 [ 7] [ 10] [0320082120] +15:21:21 [ 11] [ 6] [807303] +15:21:21 [ 15] [ 4] [0320] +15:21:21 [ 37] [ 12] [57915807303] +15:21:21 [ 39] [ 2] [00] +15:21:21 [ 70] [ 3] [001] +15:21:21 ============================================================================ +15:21:21 Sending to : +15:21:21 ============================================================================ +15:21:21 + + +waiting on router queue for slot.... +15:21:22 ============================================================================ +15:21:22 Slot Id : <143> +15:21:22 Transaction Type : REQUEST +15:21:22 Received From : +15:21:22 ============================================================================ +15:21:22 FNo. Len. Field Value +15:21:22 ============================================================================ +15:21:22 [ 1] [ 4] [0800] +15:21:22 [ 7] [ 10] [0320082029] +15:21:22 [ 11] [ 6] [156988] +15:21:22 [ 70] [ 3] [301] +15:21:22 ============================================================================ +15:21:22 + + +waiting on router queue for slot.... +15:21:22 Sending to : +15:21:22 ============================================================================ +15:21:22 ============================================================================ +15:21:22 Slot Id : <143> +15:21:22 Transaction Type : RESPONSE +15:21:22 Received From : +15:21:22 ============================================================================ +15:21:22 FNo. Len. Field Value +15:21:22 ============================================================================ +15:21:22 [ 1] [ 4] [0810] +15:21:22 [ 7] [ 10] [0320082029] +15:21:22 [ 11] [ 6] [156988] +15:21:22 [ 39] [ 2] [00] +15:21:22 [ 70] [ 3] [301] +15:21:22 ============================================================================ +15:21:22 Calculate Source COMM Id = 2 +15:21:22 ============================================================================ +15:21:22 + + +waiting on router queue for slot.... +15:21:22 ============================================================================ +15:21:22 Slot Id : <166> +15:21:22 Transaction Type : REQUEST +15:21:22 Received From : +15:21:22 ============================================================================ +15:21:22 FNo. Len. Field Value +15:21:22 ============================================================================ +15:21:22 [ 1] [ 4] [0800] +15:21:22 [ 7] [ 10] [0320081912] +15:21:22 [ 11] [ 6] [027821] +15:21:22 [ 37] [ 12] [57915027821] +15:21:22 [ 70] [ 3] [301] +15:21:22 ============================================================================ +15:21:22 + + +waiting on router queue for slot.... +15:21:22 Sending to : +15:21:22 ============================================================================ +15:21:22 ============================================================================ +15:21:22 Slot Id : <166> +15:21:22 Transaction Type : RESPONSE +15:21:22 Received From : +15:21:22 ============================================================================ +15:21:22 FNo. Len. Field Value +15:21:22 ============================================================================ +15:21:22 [ 1] [ 4] [0810] +15:21:22 [ 7] [ 10] [0320081912] +15:21:22 [ 11] [ 6] [027821] +15:21:22 [ 37] [ 12] [579150278210] +15:21:22 [ 39] [ 2] [00] +15:21:22 [ 70] [ 3] [810] +15:21:22 ============================================================================ +15:21:22 Calculate Source COMM Id = 4 +15:21:22 ============================================================================ +15:21:22 + + +waiting on router queue for slot.... +15:21:23 ============================================================================ +15:21:23 Slot Id : <154> +15:21:23 Transaction Type : RESPONSE +15:21:23 Received From : +15:21:23 ============================================================================ +15:21:23 FNo. Len. Field Value +15:21:23 ============================================================================ +15:21:23 [ 1] [ 4] [0210] +15:21:23 [ 2] [ 16] [1888880000030635] +15:21:23 [ 3] [ 6] [011000] +15:21:23 [ 4] [ 12] [000100000000] +15:21:23 [ 7] [ 10] [0320152114] +15:21:23 [ 11] [ 6] [782411] +15:21:23 [ 12] [ 6] [152114] +15:21:23 [ 13] [ 4] [0320] +15:21:23 [ 15] [ 4] [0320] +15:21:23 [ 18] [ 4] [6011] +15:21:23 [ 19] [ 3] [418] +15:21:23 [ 32] [ 6] [621354] +15:21:23 [ 37] [ 12] [507903986684] +15:21:23 [ 38] [ 6] [184358] +15:21:23 [ 39] [ 2] [00] +15:21:23 [ 41] [ 8] [01011400] +15:21:23 [ 49] [ 3] [418] +15:21:23 [ 54] [ 0] [] +15:21:23 ============================================================================ +15:21:23 Sending to : +15:21:23 ============================================================================ +15:21:23 + + +waiting on router queue for slot.... +15:21:24 ============================================================================ +15:21:24 Slot Id : <154> +15:21:24 Transaction Type : RESPONSE +15:21:24 Received From : +15:21:24 ============================================================================ +15:21:24 FNo. Len. Field Value +15:21:24 ============================================================================ +15:21:24 [ 1] [ 4] [0210] +15:21:24 [ 2] [ 16] [1888880000030635] +15:21:24 [ 3] [ 6] [011000] +15:21:24 [ 4] [ 12] [000100000000] +15:21:24 [ 7] [ 10] [0320152114] +15:21:24 [ 11] [ 6] [782411] +15:21:24 [ 12] [ 6] [152114] +15:21:24 [ 13] [ 4] [0320] +15:21:24 [ 15] [ 4] [0320] +15:21:24 [ 18] [ 4] [6011] +15:21:24 [ 19] [ 3] [418] +15:21:24 [ 32] [ 6] [621354] +15:21:24 [ 37] [ 12] [507903986684] +15:21:24 [ 38] [ 6] [184358] +15:21:24 [ 39] [ 2] [00] +15:21:24 [ 41] [ 8] [01011400] +15:21:24 [ 49] [ 3] [418] +15:21:24 [ 54] [ 0] [] +15:21:24 ============================================================================ +15:21:24 Calculate Source COMM Id = 0 +15:21:24 ============================================================================ +15:21:24 + + +waiting on router queue for slot.... +15:21:32 ============================================================================ +15:21:32 Slot Id : <153> +15:21:32 Transaction Type : REQUEST +15:21:32 Received From : +15:21:32 ============================================================================ +15:21:32 FNo. Len. Field Value +15:21:32 ============================================================================ +15:21:32 [ 1] [ 4] [0800] +15:21:32 [ 7] [ 10] [0320082039] +15:21:32 [ 11] [ 6] [156989] +15:21:32 [ 70] [ 3] [301] +15:21:32 ============================================================================ +15:21:32 + + +waiting on router queue for slot.... +15:21:32 Sending to : +15:21:32 ============================================================================ +15:21:32 ============================================================================ +15:21:32 Slot Id : <153> +15:21:32 Transaction Type : RESPONSE +15:21:32 Received From : +15:21:32 ============================================================================ +15:21:32 FNo. Len. Field Value +15:21:32 ============================================================================ +15:21:32 [ 1] [ 4] [0810] +15:21:32 [ 7] [ 10] [0320082039] +15:21:32 [ 11] [ 6] [156989] +15:21:32 [ 39] [ 2] [00] +15:21:32 [ 70] [ 3] [301] +15:21:32 ============================================================================ +15:21:32 Calculate Source COMM Id = 2 +15:21:32 ============================================================================ +15:21:32 + + +waiting on router queue for slot.... +15:21:36 ============================================================================ +15:21:36 Slot Id : <120> +15:21:36 Transaction Type : REQUEST +15:21:36 Received From : +15:21:36 ============================================================================ +15:21:36 FNo. Len. Field Value +15:21:36 ============================================================================ +15:21:36 [ 0] [ 4] [0420] +15:21:36 [ 1] [ 4] [0420] +15:21:36 [ 2] [ 16] [6213544001993275] +15:21:36 [ 3] [ 6] [011000] +15:21:36 [ 4] [ 12] [000030000000] +15:21:36 [ 6] [ 12] [000030000000] +15:21:36 [ 7] [ 10] [0320152021] +15:21:36 [ 11] [ 6] [079114] +15:21:36 [ 12] [ 6] [152021] +15:21:36 [ 13] [ 4] [0320] +15:21:36 [ 14] [ 4] [4912] +15:21:36 [ 15] [ 4] [0320] +15:21:36 [ 18] [ 4] [6011] +15:21:36 [ 22] [ 3] [900] +15:21:36 [ 25] [ 2] [02] +15:21:36 [ 28] [ 9] [D00002000] +15:21:36 [ 32] [ 6] [220699] +15:21:36 [ 35] [ 32] [6213544001993275=491212019327522] +15:21:36 [ 37] [ 12] [507900132977] +15:21:36 [ 39] [ 2] [00] +15:21:36 [ 41] [ 8] [03000100] +15:21:36 [ 42] [ 15] [APTRA ] +15:21:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:21:36 [ 49] [ 3] [418] +15:21:36 [ 52] [ 16] [915EBF34F7DCB3C6] +15:21:36 ============================================================================ +15:21:36 + + +waiting on router queue for slot.... +15:21:36 ============================================================================ +15:21:36 Slot Id : <120> +15:21:36 Transaction Type : RESPONSE +15:21:36 Received From : +15:21:36 ============================================================================ +15:21:36 FNo. Len. Field Value +15:21:36 ============================================================================ +15:21:36 [ 1] [ 4] [0430] +15:21:36 [ 2] [ 16] [6213544001993275] +15:21:36 [ 3] [ 6] [011000] +15:21:36 [ 4] [ 12] [000030000000] +15:21:36 [ 7] [ 10] [0320152021] +15:21:36 [ 11] [ 6] [079114] +15:21:36 [ 32] [ 6] [220699] +15:21:36 [ 35] [ 32] [6213544001993275=491212019327522] +15:21:36 [ 37] [ 12] [507900132977] +15:21:36 [ 39] [ 2] [00] +15:21:36 [ 41] [ 8] [03000100] +15:21:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:21:36 [ 49] [ 3] [418] +15:21:36 [ 90] [ 42] [020007911403201520210000022069900000000000] +15:21:36 ============================================================================ +15:21:36 Successfully send the slot [120] To REVERSAL Process +15:21:36 + + +waiting on router queue for slot.... +15:21:46 ============================================================================ +15:21:46 Slot Id : <110> +15:21:46 Transaction Type : REQUEST +15:21:46 Received From : +15:21:46 ============================================================================ +15:21:46 FNo. Len. Field Value +15:21:46 ============================================================================ +15:21:46 [ 1] [ 4] [0200] +15:21:46 [ 2] [ 16] [6688990107700609] +15:21:46 [ 3] [ 6] [301000] +15:21:46 [ 4] [ 12] [000000000000] +15:21:46 [ 7] [ 10] [0320152141] +15:21:46 [ 11] [ 6] [782504] +15:21:46 [ 12] [ 6] [152141] +15:21:46 [ 13] [ 4] [0320] +15:21:46 [ 15] [ 4] [0320] +15:21:46 [ 18] [ 4] [6011] +15:21:46 [ 22] [ 3] [900] +15:21:46 [ 25] [ 2] [02] +15:21:46 [ 28] [ 9] [D00000000] +15:21:46 [ 32] [ 6] [621354] +15:21:46 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:21:46 [ 37] [ 12] [507902812896] +15:21:46 [ 41] [ 8] [01007500] +15:21:46 [ 42] [ 15] [NATIVE ] +15:21:46 [ 43] [ 40] [M-Point Sisaket Sisattanak LAO] +15:21:46 [ 49] [ 3] [418] +15:21:46 [ 52] [ 16] [9A2807BB2C6D1906] +15:21:46 ============================================================================ +15:21:46 + + +waiting on router queue for slot.... +15:21:46 Sending to : +15:21:46 ============================================================================ +15:21:46 Sending to : +15:21:46 ============================================================================ +15:21:46 ============================================================================ +15:21:46 Slot Id : <110> +15:21:46 Transaction Type : REQUEST +15:21:46 Received From : +15:21:46 ============================================================================ +15:21:46 FNo. Len. Field Value +15:21:46 ============================================================================ +15:21:46 [ 1] [ 4] [0200] +15:21:46 [ 2] [ 16] [6688990107700609] +15:21:46 [ 3] [ 6] [301000] +15:21:46 [ 4] [ 12] [000000000000] +15:21:46 [ 7] [ 10] [0320152141] +15:21:46 [ 11] [ 6] [782504] +15:21:46 [ 12] [ 6] [152141] +15:21:46 [ 13] [ 4] [0320] +15:21:46 [ 15] [ 4] [0320] +15:21:46 [ 18] [ 4] [6011] +15:21:46 [ 22] [ 3] [900] +15:21:46 [ 25] [ 2] [02] +15:21:46 [ 28] [ 9] [D00000000] +15:21:46 [ 32] [ 6] [621354] +15:21:46 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:21:46 [ 37] [ 12] [507902812896] +15:21:46 [ 41] [ 8] [01007500] +15:21:46 [ 42] [ 15] [NATIVE ] +15:21:46 [ 43] [ 40] [M-Point Sisaket Sisattanak LAO] +15:21:46 [ 49] [ 3] [418] +15:21:46 [ 52] [ 16] [9A2807BB2C6D1906] +15:21:46 ============================================================================ +15:21:46 + + +waiting on router queue for slot.... +15:21:46 Sending to : +15:21:46 ============================================================================ +15:21:46 ============================================================================ +15:21:46 Slot Id : <110> +15:21:46 Transaction Type : REQUEST +15:21:46 Received From : +15:21:46 ============================================================================ +15:21:46 FNo. Len. Field Value +15:21:46 ============================================================================ +15:21:46 [ 1] [ 4] [0200] +15:21:46 [ 2] [ 16] [6688990107700609] +15:21:46 [ 3] [ 6] [301000] +15:21:46 [ 4] [ 12] [000000000000] +15:21:46 [ 7] [ 10] [0320152141] +15:21:46 [ 11] [ 6] [782504] +15:21:46 [ 12] [ 6] [152141] +15:21:46 [ 13] [ 4] [0320] +15:21:46 [ 15] [ 4] [0320] +15:21:46 [ 18] [ 4] [6011] +15:21:46 [ 22] [ 3] [900] +15:21:46 [ 25] [ 2] [02] +15:21:46 [ 28] [ 9] [D00000000] +15:21:46 [ 32] [ 6] [621354] +15:21:46 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:21:46 [ 37] [ 12] [507902812896] +15:21:46 [ 41] [ 8] [01007500] +15:21:46 [ 42] [ 15] [NATIVE ] +15:21:46 [ 43] [ 40] [M-Point Sisaket Sisattanak LAO] +15:21:46 [ 49] [ 3] [418] +15:21:46 [ 52] [ 16] [161CD0DDB715EB81] +15:21:46 ============================================================================ +15:21:46 + + +waiting on router queue for slot.... +15:21:46 Sending to : <4> +15:21:46 ============================================================================ +15:21:47 ============================================================================ +15:21:47 Slot Id : <133> +15:21:47 Transaction Type : REQUEST +15:21:47 Received From : +15:21:47 ============================================================================ +15:21:47 FNo. Len. Field Value +15:21:47 ============================================================================ +15:21:47 [ 1] [ 4] [0800] +15:21:47 [ 7] [ 10] [0320223335] +15:21:47 [ 11] [ 6] [153335] +15:21:47 [ 37] [ 12] [57915153335] +15:21:47 [ 70] [ 3] [301] +15:21:47 ============================================================================ +15:21:47 + + +waiting on router queue for slot.... +15:21:47 Sending to : +15:21:47 ============================================================================ +15:21:47 ============================================================================ +15:21:47 Slot Id : <133> +15:21:47 Transaction Type : RESPONSE +15:21:47 Received From : +15:21:47 ============================================================================ +15:21:47 FNo. Len. Field Value +15:21:47 ============================================================================ +15:21:47 [ 1] [ 4] [0810] +15:21:47 [ 7] [ 10] [0320223335] +15:21:47 [ 11] [ 6] [153335] +15:21:47 [ 37] [ 12] [579151533350] +15:21:47 [ 39] [ 2] [00] +15:21:47 [ 70] [ 3] [810] +15:21:47 ============================================================================ +15:21:47 Calculate Source COMM Id = 6 +15:21:47 ============================================================================ +15:21:47 + + +waiting on router queue for slot.... +15:21:47 ============================================================================ +15:21:47 Slot Id : <110> +15:21:47 Transaction Type : RESPONSE +15:21:47 Received From : +15:21:47 ============================================================================ +15:21:47 FNo. Len. Field Value +15:21:47 ============================================================================ +15:21:47 [ 1] [ 4] [0210] +15:21:47 [ 2] [ 16] [6688990107700609] +15:21:47 [ 3] [ 6] [301000] +15:21:47 [ 4] [ 12] [000000000000] +15:21:47 [ 11] [ 6] [782504] +15:21:47 [ 12] [ 6] [152141] +15:21:47 [ 15] [ 4] [0320] +15:21:47 [ 18] [ 4] [6011] +15:21:47 [ 32] [ 6] [621354] +15:21:47 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:21:47 [ 37] [ 12] [507902812896] +15:21:47 [ 38] [ 6] [510010] +15:21:47 [ 39] [ 2] [00] +15:21:47 [ 41] [ 8] [01007500] +15:21:47 [ 49] [ 3] [418] +15:21:47 [ 54] [ 20] [1002418C000002343237] +15:21:47 ============================================================================ +15:21:47 Sending to : +15:21:47 ============================================================================ +15:21:47 + + +waiting on router queue for slot.... +15:21:48 ============================================================================ +15:21:48 Slot Id : <150> +15:21:48 Transaction Type : REQUEST +15:21:48 Received From : +15:21:48 ============================================================================ +15:21:48 FNo. Len. Field Value +15:21:48 ============================================================================ +15:21:48 [ 1] [ 4] [0800] +15:21:48 [ 7] [ 10] [0320082055] +15:21:48 [ 11] [ 6] [156990] +15:21:48 [ 70] [ 3] [301] +15:21:48 ============================================================================ +15:21:48 + + +waiting on router queue for slot.... +15:21:48 Sending to : +15:21:48 ============================================================================ +15:21:48 ============================================================================ +15:21:48 Slot Id : <150> +15:21:48 Transaction Type : RESPONSE +15:21:48 Received From : +15:21:48 ============================================================================ +15:21:48 FNo. Len. Field Value +15:21:48 ============================================================================ +15:21:48 [ 1] [ 4] [0810] +15:21:48 [ 7] [ 10] [0320082055] +15:21:48 [ 11] [ 6] [156990] +15:21:48 [ 39] [ 2] [00] +15:21:48 [ 70] [ 3] [301] +15:21:48 ============================================================================ +15:21:48 Calculate Source COMM Id = 2 +15:21:48 ============================================================================ +15:21:48 + + +waiting on router queue for slot.... +15:21:48 ============================================================================ +15:21:48 Slot Id : <110> +15:21:48 Transaction Type : RESPONSE +15:21:48 Received From : +15:21:48 ============================================================================ +15:21:48 FNo. Len. Field Value +15:21:48 ============================================================================ +15:21:48 [ 1] [ 4] [0210] +15:21:48 [ 2] [ 16] [6688990107700609] +15:21:48 [ 3] [ 6] [301000] +15:21:48 [ 4] [ 12] [000000000000] +15:21:48 [ 11] [ 6] [782504] +15:21:48 [ 12] [ 6] [152141] +15:21:48 [ 15] [ 4] [0320] +15:21:48 [ 18] [ 4] [6011] +15:21:48 [ 32] [ 6] [621354] +15:21:48 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:21:48 [ 37] [ 12] [507902812896] +15:21:48 [ 38] [ 6] [510010] +15:21:48 [ 39] [ 2] [00] +15:21:48 [ 41] [ 8] [01007500] +15:21:48 [ 49] [ 3] [418] +15:21:48 [ 54] [ 20] [1002418C000002343237] +15:21:48 ============================================================================ +15:21:48 Calculate Source COMM Id = 0 +15:21:48 ============================================================================ +15:21:48 + + +waiting on router queue for slot.... +15:21:49 ============================================================================ +15:21:49 Slot Id : <142> +15:21:49 Transaction Type : REQUEST +15:21:49 Received From : +15:21:49 ============================================================================ +15:21:49 FNo. Len. Field Value +15:21:49 ============================================================================ +15:21:49 [ 1] [ 4] [0200] +15:21:49 [ 2] [ 16] [1888880000047142] +15:21:49 [ 3] [ 6] [011000] +15:21:49 [ 4] [ 12] [000050000000] +15:21:49 [ 7] [ 10] [0320152144] +15:21:49 [ 11] [ 6] [782523] +15:21:49 [ 12] [ 6] [152144] +15:21:49 [ 13] [ 4] [0320] +15:21:49 [ 15] [ 4] [0320] +15:21:49 [ 18] [ 4] [6011] +15:21:49 [ 22] [ 3] [900] +15:21:49 [ 25] [ 2] [02] +15:21:49 [ 28] [ 9] [D00002000] +15:21:49 [ 32] [ 6] [621354] +15:21:49 [ 35] [ 32] [1888880000047142=000010100000561] +15:21:49 [ 37] [ 12] [507902546779] +15:21:49 [ 41] [ 8] [05003700] +15:21:49 [ 42] [ 15] [NATIVE ] +15:21:49 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +15:21:49 [ 49] [ 3] [418] +15:21:49 [ 52] [ 16] [B01C56C3F16E5151] +15:21:49 ============================================================================ +15:21:49 + + +waiting on router queue for slot.... +15:21:49 Sending to : +15:21:49 ============================================================================ +15:21:49 Sending to : +15:21:49 ============================================================================ +15:21:49 ============================================================================ +15:21:49 Slot Id : <142> +15:21:49 Transaction Type : REQUEST +15:21:49 Received From : +15:21:49 ============================================================================ +15:21:49 FNo. Len. Field Value +15:21:49 ============================================================================ +15:21:49 [ 1] [ 4] [0200] +15:21:49 [ 2] [ 16] [1888880000047142] +15:21:49 [ 3] [ 6] [011000] +15:21:49 [ 4] [ 12] [000050000000] +15:21:49 [ 7] [ 10] [0320152144] +15:21:49 [ 11] [ 6] [782523] +15:21:49 [ 12] [ 6] [152144] +15:21:49 [ 13] [ 4] [0320] +15:21:49 [ 15] [ 4] [0320] +15:21:49 [ 18] [ 4] [6011] +15:21:49 [ 22] [ 3] [900] +15:21:49 [ 25] [ 2] [02] +15:21:49 [ 28] [ 9] [D00002000] +15:21:49 [ 32] [ 6] [621354] +15:21:49 [ 35] [ 32] [1888880000047142=000010100000561] +15:21:49 [ 37] [ 12] [507902546779] +15:21:49 [ 41] [ 8] [05003700] +15:21:49 [ 42] [ 15] [NATIVE ] +15:21:49 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +15:21:49 [ 49] [ 3] [418] +15:21:49 [ 52] [ 16] [B01C56C3F16E5151] +15:21:49 ============================================================================ +15:21:49 + + +waiting on router queue for slot.... +15:21:49 Sending to : +15:21:49 ============================================================================ +15:21:49 ============================================================================ +15:21:49 Slot Id : <142> +15:21:49 Transaction Type : REQUEST +15:21:49 Received From : +15:21:49 ============================================================================ +15:21:49 FNo. Len. Field Value +15:21:49 ============================================================================ +15:21:49 [ 1] [ 4] [0200] +15:21:49 [ 2] [ 16] [1888880000047142] +15:21:49 [ 3] [ 6] [011000] +15:21:49 [ 4] [ 12] [000050000000] +15:21:49 [ 7] [ 10] [0320152144] +15:21:49 [ 11] [ 6] [782523] +15:21:49 [ 12] [ 6] [152144] +15:21:49 [ 13] [ 4] [0320] +15:21:49 [ 15] [ 4] [0320] +15:21:49 [ 18] [ 4] [6011] +15:21:49 [ 22] [ 3] [900] +15:21:49 [ 25] [ 2] [02] +15:21:49 [ 28] [ 9] [D00002000] +15:21:49 [ 32] [ 6] [621354] +15:21:49 [ 35] [ 32] [1888880000047142=000010100000561] +15:21:49 [ 37] [ 12] [507902546779] +15:21:49 [ 41] [ 8] [05003700] +15:21:49 [ 42] [ 15] [NATIVE ] +15:21:49 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +15:21:49 [ 49] [ 3] [418] +15:21:49 [ 52] [ 16] [9852A9F3C953CB62] +15:21:49 ============================================================================ +15:21:49 + + +waiting on router queue for slot.... +15:21:49 Sending to : <5> +15:21:49 ============================================================================ +15:21:57 ============================================================================ +15:21:57 Slot Id : <142> +15:21:57 Transaction Type : RESPONSE +15:21:57 Received From : +15:21:57 ============================================================================ +15:21:57 FNo. Len. Field Value +15:21:57 ============================================================================ +15:21:57 [ 1] [ 4] [0210] +15:21:57 [ 2] [ 16] [1888880000047142] +15:21:57 [ 3] [ 6] [011000] +15:21:57 [ 4] [ 12] [000050000000] +15:21:57 [ 7] [ 10] [0320152144] +15:21:57 [ 11] [ 6] [782523] +15:21:57 [ 12] [ 6] [152144] +15:21:57 [ 13] [ 4] [0320] +15:21:57 [ 15] [ 4] [0320] +15:21:57 [ 18] [ 4] [6011] +15:21:57 [ 19] [ 3] [418] +15:21:57 [ 32] [ 6] [621354] +15:21:57 [ 37] [ 12] [507902546779] +15:21:57 [ 38] [ 6] [403497] +15:21:57 [ 39] [ 2] [00] +15:21:57 [ 41] [ 8] [05003700] +15:21:57 [ 49] [ 3] [418] +15:21:57 [ 54] [ 0] [] +15:21:57 ============================================================================ +15:21:57 Sending to : +15:21:57 ============================================================================ +15:21:57 + + +waiting on router queue for slot.... +15:21:59 ============================================================================ +15:21:59 Slot Id : <142> +15:21:59 Transaction Type : RESPONSE +15:21:59 Received From : +15:21:59 ============================================================================ +15:21:59 FNo. Len. Field Value +15:21:59 ============================================================================ +15:21:59 [ 1] [ 4] [0210] +15:21:59 [ 2] [ 16] [1888880000047142] +15:21:59 [ 3] [ 6] [011000] +15:21:59 [ 4] [ 12] [000050000000] +15:21:59 [ 7] [ 10] [0320152144] +15:21:59 [ 11] [ 6] [782523] +15:21:59 [ 12] [ 6] [152144] +15:21:59 [ 13] [ 4] [0320] +15:21:59 [ 15] [ 4] [0320] +15:21:59 [ 18] [ 4] [6011] +15:21:59 [ 19] [ 3] [418] +15:21:59 [ 32] [ 6] [621354] +15:21:59 [ 37] [ 12] [507902546779] +15:21:59 [ 38] [ 6] [403497] +15:21:59 [ 39] [ 2] [00] +15:21:59 [ 41] [ 8] [05003700] +15:21:59 [ 49] [ 3] [418] +15:21:59 [ 54] [ 0] [] +15:21:59 ============================================================================ +15:21:59 Calculate Source COMM Id = 0 +15:21:59 ============================================================================ +15:21:59 + + +waiting on router queue for slot.... +15:22:00 ============================================================================ +15:22:00 Slot Id : <159> +15:22:00 Transaction Type : REQUEST +15:22:00 Received From : +15:22:00 ============================================================================ +15:22:00 FNo. Len. Field Value +15:22:00 ============================================================================ +15:22:00 [ 1] [ 4] [0800] +15:22:00 [ 7] [ 10] [0320082105] +15:22:00 [ 11] [ 6] [156991] +15:22:00 [ 70] [ 3] [301] +15:22:00 ============================================================================ +15:22:00 + + +waiting on router queue for slot.... +15:22:00 Sending to : +15:22:00 ============================================================================ +15:22:00 ============================================================================ +15:22:00 Slot Id : <159> +15:22:00 Transaction Type : RESPONSE +15:22:00 Received From : +15:22:00 ============================================================================ +15:22:00 FNo. Len. Field Value +15:22:00 ============================================================================ +15:22:00 [ 1] [ 4] [0810] +15:22:00 [ 7] [ 10] [0320082105] +15:22:00 [ 11] [ 6] [156991] +15:22:00 [ 39] [ 2] [00] +15:22:00 [ 70] [ 3] [301] +15:22:00 ============================================================================ +15:22:00 Calculate Source COMM Id = 2 +15:22:00 ============================================================================ +15:22:00 + + +waiting on router queue for slot.... +15:22:15 ============================================================================ +15:22:15 Slot Id : <130> +15:22:15 Transaction Type : REQUEST +15:22:15 Received From : +15:22:15 ============================================================================ +15:22:15 FNo. Len. Field Value +15:22:15 ============================================================================ +15:22:15 [ 1] [ 4] [0800] +15:22:15 [ 7] [ 10] [0320082121] +15:22:15 [ 11] [ 6] [156992] +15:22:15 [ 70] [ 3] [301] +15:22:15 ============================================================================ +15:22:15 + + +waiting on router queue for slot.... +15:22:15 Sending to : +15:22:15 ============================================================================ +15:22:15 ============================================================================ +15:22:15 Slot Id : <130> +15:22:15 Transaction Type : RESPONSE +15:22:15 Received From : +15:22:15 ============================================================================ +15:22:15 FNo. Len. Field Value +15:22:15 ============================================================================ +15:22:15 [ 1] [ 4] [0810] +15:22:15 [ 7] [ 10] [0320082121] +15:22:15 [ 11] [ 6] [156992] +15:22:15 [ 39] [ 2] [00] +15:22:15 [ 70] [ 3] [301] +15:22:15 ============================================================================ +15:22:15 Calculate Source COMM Id = 2 +15:22:15 ============================================================================ +15:22:15 + + +waiting on router queue for slot.... +15:22:16 ============================================================================ +15:22:16 Slot Id : <167> +15:22:16 Transaction Type : REQUEST +15:22:16 Received From : +15:22:16 ============================================================================ +15:22:16 FNo. Len. Field Value +15:22:16 ============================================================================ +15:22:16 [ 1] [ 4] [0200] +15:22:16 [ 2] [ 16] [6688990107131904] +15:22:16 [ 3] [ 6] [011000] +15:22:16 [ 4] [ 12] [000010000000] +15:22:16 [ 7] [ 10] [0320152212] +15:22:16 [ 11] [ 6] [782646] +15:22:16 [ 12] [ 6] [152212] +15:22:16 [ 13] [ 4] [0320] +15:22:16 [ 15] [ 4] [0320] +15:22:16 [ 18] [ 4] [6011] +15:22:16 [ 22] [ 3] [900] +15:22:16 [ 25] [ 2] [02] +15:22:16 [ 28] [ 9] [D00002000] +15:22:16 [ 32] [ 6] [621354] +15:22:16 [ 35] [ 37] [6688990107131904=44021231190441100000] +15:22:16 [ 37] [ 12] [507903345056] +15:22:16 [ 41] [ 8] [13001400] +15:22:16 [ 42] [ 15] [NATIVE ] +15:22:16 [ 43] [ 40] [Kham Unit Kham LAO] +15:22:16 [ 49] [ 3] [418] +15:22:16 [ 52] [ 16] [AE863780A8D8DB7F] +15:22:16 ============================================================================ +15:22:16 + + +waiting on router queue for slot.... +15:22:16 Sending to : +15:22:16 ============================================================================ +15:22:16 Sending to : +15:22:16 ============================================================================ +15:22:17 ============================================================================ +15:22:17 Slot Id : <167> +15:22:17 Transaction Type : REQUEST +15:22:17 Received From : +15:22:17 ============================================================================ +15:22:17 FNo. Len. Field Value +15:22:17 ============================================================================ +15:22:17 [ 1] [ 4] [0200] +15:22:17 [ 2] [ 16] [6688990107131904] +15:22:17 [ 3] [ 6] [011000] +15:22:17 [ 4] [ 12] [000010000000] +15:22:17 [ 7] [ 10] [0320152212] +15:22:17 [ 11] [ 6] [782646] +15:22:17 [ 12] [ 6] [152212] +15:22:17 [ 13] [ 4] [0320] +15:22:17 [ 15] [ 4] [0320] +15:22:17 [ 18] [ 4] [6011] +15:22:17 [ 22] [ 3] [900] +15:22:17 [ 25] [ 2] [02] +15:22:17 [ 28] [ 9] [D00002000] +15:22:17 [ 32] [ 6] [621354] +15:22:17 [ 35] [ 37] [6688990107131904=44021231190441100000] +15:22:17 [ 37] [ 12] [507903345056] +15:22:17 [ 41] [ 8] [13001400] +15:22:17 [ 42] [ 15] [NATIVE ] +15:22:17 [ 43] [ 40] [Kham Unit Kham LAO] +15:22:17 [ 49] [ 3] [418] +15:22:17 [ 52] [ 16] [AE863780A8D8DB7F] +15:22:17 ============================================================================ +15:22:17 + + +waiting on router queue for slot.... +15:22:17 Sending to : +15:22:17 ============================================================================ +15:22:17 ============================================================================ +15:22:17 Slot Id : <167> +15:22:17 Transaction Type : REQUEST +15:22:17 Received From : +15:22:17 ============================================================================ +15:22:17 FNo. Len. Field Value +15:22:17 ============================================================================ +15:22:17 [ 1] [ 4] [0200] +15:22:17 [ 2] [ 16] [6688990107131904] +15:22:17 [ 3] [ 6] [011000] +15:22:17 [ 4] [ 12] [000010000000] +15:22:17 [ 7] [ 10] [0320152212] +15:22:17 [ 11] [ 6] [782646] +15:22:17 [ 12] [ 6] [152212] +15:22:17 [ 13] [ 4] [0320] +15:22:17 [ 15] [ 4] [0320] +15:22:17 [ 18] [ 4] [6011] +15:22:17 [ 22] [ 3] [900] +15:22:17 [ 25] [ 2] [02] +15:22:17 [ 28] [ 9] [D00002000] +15:22:17 [ 32] [ 6] [621354] +15:22:17 [ 35] [ 37] [6688990107131904=44021231190441100000] +15:22:17 [ 37] [ 12] [507903345056] +15:22:17 [ 41] [ 8] [13001400] +15:22:17 [ 42] [ 15] [NATIVE ] +15:22:17 [ 43] [ 40] [Kham Unit Kham LAO] +15:22:17 [ 49] [ 3] [418] +15:22:17 [ 52] [ 16] [97E72F4C096D8A70] +15:22:17 ============================================================================ +15:22:17 + + +waiting on router queue for slot.... +15:22:17 Sending to : <4> +15:22:17 ============================================================================ +15:22:18 ============================================================================ +15:22:18 Slot Id : <167> +15:22:18 Transaction Type : RESPONSE +15:22:18 Received From : +15:22:18 ============================================================================ +15:22:18 FNo. Len. Field Value +15:22:18 ============================================================================ +15:22:18 [ 1] [ 4] [0210] +15:22:18 [ 2] [ 16] [6688990107131904] +15:22:18 [ 3] [ 6] [011000] +15:22:18 [ 4] [ 12] [000010000000] +15:22:18 [ 11] [ 6] [782646] +15:22:18 [ 12] [ 6] [152212] +15:22:18 [ 15] [ 4] [0320] +15:22:18 [ 18] [ 4] [6011] +15:22:18 [ 32] [ 6] [621354] +15:22:18 [ 35] [ 37] [6688990107131904=44021231190441100000] +15:22:18 [ 37] [ 12] [507903345056] +15:22:18 [ 38] [ 6] [480615] +15:22:18 [ 39] [ 2] [00] +15:22:18 [ 41] [ 8] [13001400] +15:22:18 [ 49] [ 3] [418] +15:22:18 [ 54] [ 20] [1002418C000399951232] +15:22:18 ============================================================================ +15:22:18 Sending to : +15:22:18 ============================================================================ +15:22:18 + + +waiting on router queue for slot.... +15:22:19 ============================================================================ +15:22:19 Slot Id : <167> +15:22:19 Transaction Type : RESPONSE +15:22:19 Received From : +15:22:19 ============================================================================ +15:22:19 FNo. Len. Field Value +15:22:19 ============================================================================ +15:22:19 [ 1] [ 4] [0210] +15:22:19 [ 2] [ 16] [6688990107131904] +15:22:19 [ 3] [ 6] [011000] +15:22:19 [ 4] [ 12] [000010000000] +15:22:19 [ 11] [ 6] [782646] +15:22:19 [ 12] [ 6] [152212] +15:22:19 [ 15] [ 4] [0320] +15:22:19 [ 18] [ 4] [6011] +15:22:19 [ 32] [ 6] [621354] +15:22:19 [ 35] [ 37] [6688990107131904=44021231190441100000] +15:22:19 [ 37] [ 12] [507903345056] +15:22:19 [ 38] [ 6] [480615] +15:22:19 [ 39] [ 2] [00] +15:22:19 [ 41] [ 8] [13001400] +15:22:19 [ 49] [ 3] [418] +15:22:19 [ 54] [ 20] [1002418C000399951232] +15:22:19 ============================================================================ +15:22:19 Calculate Source COMM Id = 0 +15:22:19 ============================================================================ +15:22:19 + + +waiting on router queue for slot.... +15:22:20 ============================================================================ +15:22:20 Slot Id : <137> +15:22:20 Transaction Type : REQUEST +15:22:20 Received From : +15:22:20 ============================================================================ +15:22:20 FNo. Len. Field Value +15:22:20 ============================================================================ +15:22:20 [ 1] [ 4] [0200] +15:22:20 [ 2] [ 16] [6688990040030726] +15:22:20 [ 3] [ 6] [011000] +15:22:20 [ 4] [ 12] [000010000000] +15:22:20 [ 7] [ 10] [0320152216] +15:22:20 [ 11] [ 6] [782655] +15:22:20 [ 12] [ 6] [152216] +15:22:20 [ 13] [ 4] [0320] +15:22:20 [ 15] [ 4] [0320] +15:22:20 [ 18] [ 4] [6011] +15:22:20 [ 22] [ 3] [900] +15:22:20 [ 25] [ 2] [02] +15:22:20 [ 28] [ 9] [D00002000] +15:22:20 [ 32] [ 6] [621354] +15:22:20 [ 35] [ 37] [6688990040030726=97111261355201100000] +15:22:20 [ 37] [ 12] [507904755372] +15:22:20 [ 41] [ 8] [07001100] +15:22:20 [ 42] [ 15] [NATIVE ] +15:22:20 [ 43] [ 40] [Industry Market Namtar LAO] +15:22:20 [ 49] [ 3] [418] +15:22:20 [ 52] [ 16] [46A72125BE5AB429] +15:22:20 ============================================================================ +15:22:20 + + +waiting on router queue for slot.... +15:22:20 Sending to : +15:22:20 ============================================================================ +15:22:20 Sending to : +15:22:20 ============================================================================ +15:22:21 ============================================================================ +15:22:21 Slot Id : <137> +15:22:21 Transaction Type : REQUEST +15:22:21 Received From : +15:22:21 ============================================================================ +15:22:21 FNo. Len. Field Value +15:22:21 ============================================================================ +15:22:21 [ 1] [ 4] [0200] +15:22:21 [ 2] [ 16] [6688990040030726] +15:22:21 [ 3] [ 6] [011000] +15:22:21 [ 4] [ 12] [000010000000] +15:22:21 [ 7] [ 10] [0320152216] +15:22:21 [ 11] [ 6] [782655] +15:22:21 [ 12] [ 6] [152216] +15:22:21 [ 13] [ 4] [0320] +15:22:21 [ 15] [ 4] [0320] +15:22:21 [ 18] [ 4] [6011] +15:22:21 [ 22] [ 3] [900] +15:22:21 [ 25] [ 2] [02] +15:22:21 [ 28] [ 9] [D00002000] +15:22:21 [ 32] [ 6] [621354] +15:22:21 [ 35] [ 37] [6688990040030726=97111261355201100000] +15:22:21 [ 37] [ 12] [507904755372] +15:22:21 [ 41] [ 8] [07001100] +15:22:21 [ 42] [ 15] [NATIVE ] +15:22:21 [ 43] [ 40] [Industry Market Namtar LAO] +15:22:21 [ 49] [ 3] [418] +15:22:21 [ 52] [ 16] [46A72125BE5AB429] +15:22:21 ============================================================================ +15:22:21 + + +waiting on router queue for slot.... +15:22:21 Sending to : +15:22:21 ============================================================================ +15:22:21 ============================================================================ +15:22:21 Slot Id : <137> +15:22:21 Transaction Type : REQUEST +15:22:21 Received From : +15:22:21 ============================================================================ +15:22:21 FNo. Len. Field Value +15:22:21 ============================================================================ +15:22:21 [ 1] [ 4] [0200] +15:22:21 [ 2] [ 16] [6688990040030726] +15:22:21 [ 3] [ 6] [011000] +15:22:21 [ 4] [ 12] [000010000000] +15:22:21 [ 7] [ 10] [0320152216] +15:22:21 [ 11] [ 6] [782655] +15:22:21 [ 12] [ 6] [152216] +15:22:21 [ 13] [ 4] [0320] +15:22:21 [ 15] [ 4] [0320] +15:22:21 [ 18] [ 4] [6011] +15:22:21 [ 22] [ 3] [900] +15:22:21 [ 25] [ 2] [02] +15:22:21 [ 28] [ 9] [D00002000] +15:22:21 [ 32] [ 6] [621354] +15:22:21 [ 35] [ 37] [6688990040030726=97111261355201100000] +15:22:21 [ 37] [ 12] [507904755372] +15:22:21 [ 41] [ 8] [07001100] +15:22:21 [ 42] [ 15] [NATIVE ] +15:22:21 [ 43] [ 40] [Industry Market Namtar LAO] +15:22:21 [ 49] [ 3] [418] +15:22:21 [ 52] [ 16] [7E1CA2717C0983D1] +15:22:21 ============================================================================ +15:22:21 + + +waiting on router queue for slot.... +15:22:21 Sending to : <4> +15:22:21 ============================================================================ +15:22:22 ============================================================================ +15:22:22 Slot Id : <137> +15:22:22 Transaction Type : RESPONSE +15:22:22 Received From : +15:22:22 ============================================================================ +15:22:22 FNo. Len. Field Value +15:22:22 ============================================================================ +15:22:22 [ 1] [ 4] [0210] +15:22:22 [ 2] [ 16] [6688990040030726] +15:22:22 [ 3] [ 6] [011000] +15:22:22 [ 4] [ 12] [000010000000] +15:22:22 [ 11] [ 6] [782655] +15:22:22 [ 12] [ 6] [152216] +15:22:22 [ 15] [ 4] [0320] +15:22:22 [ 18] [ 4] [6011] +15:22:22 [ 32] [ 6] [621354] +15:22:22 [ 35] [ 37] [6688990040030726=97111261355201100000] +15:22:22 [ 37] [ 12] [507904755372] +15:22:22 [ 38] [ 6] [197204] +15:22:22 [ 39] [ 2] [00] +15:22:22 [ 41] [ 8] [07001100] +15:22:22 [ 49] [ 3] [418] +15:22:22 [ 54] [ 20] [1002418C000082318863] +15:22:22 ============================================================================ +15:22:22 Sending to : +15:22:22 ============================================================================ +15:22:22 + + +waiting on router queue for slot.... +15:22:22 ============================================================================ +15:22:22 Slot Id : <175> +15:22:22 Transaction Type : REQUEST +15:22:22 Received From : +15:22:22 ============================================================================ +15:22:22 FNo. Len. Field Value +15:22:22 ============================================================================ +15:22:22 [ 1] [ 4] [0800] +15:22:22 [ 2] [ 5] [02531] +15:22:22 [ 3] [ 6] [579158] +15:22:22 [ 7] [ 10] [0320082222] +15:22:22 [ 11] [ 6] [807304] +15:22:22 [ 15] [ 10] [0320082222] +15:22:22 [ 37] [ 11] [57915807304] +15:22:22 [ 70] [ 3] [001] +15:22:22 ============================================================================ +15:22:22 + + +waiting on router queue for slot.... +15:22:23 ============================================================================ +15:22:23 Slot Id : <175> +15:22:23 Transaction Type : RESPONSE +15:22:23 Received From : +15:22:23 ============================================================================ +15:22:23 FNo. Len. Field Value +15:22:23 ============================================================================ +15:22:23 [ 1] [ 4] [0810] +15:22:23 [ 7] [ 10] [0320082222] +15:22:23 [ 11] [ 6] [807304] +15:22:23 [ 15] [ 4] [0320] +15:22:23 [ 37] [ 12] [57915807304] +15:22:23 [ 39] [ 2] [00] +15:22:23 [ 70] [ 3] [001] +15:22:23 ============================================================================ +15:22:23 Sending to : +15:22:23 ============================================================================ +15:22:23 + + +waiting on router queue for slot.... +15:22:23 ============================================================================ +15:22:23 Slot Id : <146> +15:22:23 Transaction Type : REQUEST +15:22:23 Received From : +15:22:23 ============================================================================ +15:22:23 FNo. Len. Field Value +15:22:23 ============================================================================ +15:22:23 [ 1] [ 4] [0800] +15:22:23 [ 7] [ 10] [0320152209] +15:22:23 [ 11] [ 6] [070880] +15:22:23 [ 37] [ 12] [507915070880] +15:22:23 [ 70] [ 3] [ ] +15:22:23 ============================================================================ +15:22:23 + + +waiting on router queue for slot.... +15:22:23 Sending to : +15:22:23 ============================================================================ +15:22:23 ============================================================================ +15:22:23 Slot Id : <146> +15:22:23 Transaction Type : RESPONSE +15:22:23 Received From : +15:22:23 ============================================================================ +15:22:23 FNo. Len. Field Value +15:22:23 ============================================================================ +15:22:23 [ 1] [ 4] [0810] +15:22:23 [ 7] [ 10] [0320152209] +15:22:23 [ 11] [ 6] [070880] +15:22:23 [ 37] [ 12] [507915070880] +15:22:23 [ 39] [ 2] [91] +15:22:23 [ 70] [ 3] [ ] +15:22:23 ============================================================================ +15:22:23 Calculate Source COMM Id = 3 +15:22:23 ============================================================================ +15:22:23 + + +waiting on router queue for slot.... +15:22:24 ============================================================================ +15:22:24 Slot Id : <137> +15:22:24 Transaction Type : RESPONSE +15:22:24 Received From : +15:22:24 ============================================================================ +15:22:24 FNo. Len. Field Value +15:22:24 ============================================================================ +15:22:24 [ 1] [ 4] [0210] +15:22:24 [ 2] [ 16] [6688990040030726] +15:22:24 [ 3] [ 6] [011000] +15:22:24 [ 4] [ 12] [000010000000] +15:22:24 [ 11] [ 6] [782655] +15:22:24 [ 12] [ 6] [152216] +15:22:24 [ 15] [ 4] [0320] +15:22:24 [ 18] [ 4] [6011] +15:22:24 [ 32] [ 6] [621354] +15:22:24 [ 35] [ 37] [6688990040030726=97111261355201100000] +15:22:24 [ 37] [ 12] [507904755372] +15:22:24 [ 38] [ 6] [197204] +15:22:24 [ 39] [ 2] [00] +15:22:24 [ 41] [ 8] [07001100] +15:22:24 [ 49] [ 3] [418] +15:22:24 [ 54] [ 20] [1002418C000082318863] +15:22:24 ============================================================================ +15:22:24 Calculate Source COMM Id = 0 +15:22:24 ============================================================================ +15:22:24 + + +waiting on router queue for slot.... +15:22:26 ============================================================================ +15:22:26 Slot Id : <128> +15:22:26 Transaction Type : REQUEST +15:22:26 Received From : +15:22:26 ============================================================================ +15:22:26 FNo. Len. Field Value +15:22:26 ============================================================================ +15:22:26 [ 1] [ 4] [0200] +15:22:26 [ 2] [ 16] [1888880000030635] +15:22:26 [ 3] [ 6] [011000] +15:22:26 [ 4] [ 12] [000050000000] +15:22:26 [ 7] [ 10] [0320152221] +15:22:26 [ 11] [ 6] [782674] +15:22:26 [ 12] [ 6] [152221] +15:22:26 [ 13] [ 4] [0320] +15:22:26 [ 15] [ 4] [0320] +15:22:26 [ 18] [ 4] [6011] +15:22:26 [ 22] [ 3] [900] +15:22:26 [ 25] [ 2] [02] +15:22:26 [ 28] [ 9] [D00002000] +15:22:26 [ 32] [ 6] [621354] +15:22:26 [ 35] [ 32] [1888880000030635=000010100000943] +15:22:26 [ 37] [ 12] [507903986686] +15:22:26 [ 41] [ 8] [01011400] +15:22:26 [ 42] [ 15] [NATIVE ] +15:22:26 [ 43] [ 40] [Sangchieng Market SikhottabongLAO] +15:22:26 [ 49] [ 3] [418] +15:22:26 [ 52] [ 16] [172C418C2701B82A] +15:22:26 ============================================================================ +15:22:26 + + +waiting on router queue for slot.... +15:22:26 Sending to : +15:22:26 ============================================================================ +15:22:26 Sending to : +15:22:26 ============================================================================ +15:22:26 ============================================================================ +15:22:26 Slot Id : <128> +15:22:26 Transaction Type : REQUEST +15:22:26 Received From : +15:22:26 ============================================================================ +15:22:26 FNo. Len. Field Value +15:22:26 ============================================================================ +15:22:26 [ 1] [ 4] [0200] +15:22:26 [ 2] [ 16] [1888880000030635] +15:22:26 [ 3] [ 6] [011000] +15:22:26 [ 4] [ 12] [000050000000] +15:22:26 [ 7] [ 10] [0320152221] +15:22:26 [ 11] [ 6] [782674] +15:22:26 [ 12] [ 6] [152221] +15:22:26 [ 13] [ 4] [0320] +15:22:26 [ 15] [ 4] [0320] +15:22:26 [ 18] [ 4] [6011] +15:22:26 [ 22] [ 3] [900] +15:22:26 [ 25] [ 2] [02] +15:22:26 [ 28] [ 9] [D00002000] +15:22:26 [ 32] [ 6] [621354] +15:22:26 [ 35] [ 32] [1888880000030635=000010100000943] +15:22:26 [ 37] [ 12] [507903986686] +15:22:26 [ 41] [ 8] [01011400] +15:22:26 [ 42] [ 15] [NATIVE ] +15:22:26 [ 43] [ 40] [Sangchieng Market SikhottabongLAO] +15:22:26 [ 49] [ 3] [418] +15:22:26 [ 52] [ 16] [172C418C2701B82A] +15:22:26 ============================================================================ +15:22:26 + + +waiting on router queue for slot.... +15:22:26 Sending to : +15:22:26 ============================================================================ +15:22:26 ============================================================================ +15:22:26 Slot Id : <128> +15:22:26 Transaction Type : REQUEST +15:22:26 Received From : +15:22:26 ============================================================================ +15:22:26 FNo. Len. Field Value +15:22:26 ============================================================================ +15:22:26 [ 1] [ 4] [0200] +15:22:26 [ 2] [ 16] [1888880000030635] +15:22:26 [ 3] [ 6] [011000] +15:22:26 [ 4] [ 12] [000050000000] +15:22:26 [ 7] [ 10] [0320152221] +15:22:26 [ 11] [ 6] [782674] +15:22:26 [ 12] [ 6] [152221] +15:22:26 [ 13] [ 4] [0320] +15:22:26 [ 15] [ 4] [0320] +15:22:26 [ 18] [ 4] [6011] +15:22:26 [ 22] [ 3] [900] +15:22:26 [ 25] [ 2] [02] +15:22:26 [ 28] [ 9] [D00002000] +15:22:26 [ 32] [ 6] [621354] +15:22:26 [ 35] [ 32] [1888880000030635=000010100000943] +15:22:26 [ 37] [ 12] [507903986686] +15:22:26 [ 41] [ 8] [01011400] +15:22:26 [ 42] [ 15] [NATIVE ] +15:22:26 [ 43] [ 40] [Sangchieng Market SikhottabongLAO] +15:22:26 [ 49] [ 3] [418] +15:22:26 [ 52] [ 16] [46297B8E17203314] +15:22:26 ============================================================================ +15:22:26 + + +waiting on router queue for slot.... +15:22:26 Sending to : <5> +15:22:26 ============================================================================ +15:22:29 ============================================================================ +15:22:29 Slot Id : <128> +15:22:29 Transaction Type : RESPONSE +15:22:29 Received From : +15:22:29 ============================================================================ +15:22:29 FNo. Len. Field Value +15:22:29 ============================================================================ +15:22:29 [ 1] [ 4] [0210] +15:22:29 [ 2] [ 16] [1888880000030635] +15:22:29 [ 3] [ 6] [011000] +15:22:29 [ 4] [ 12] [000050000000] +15:22:29 [ 7] [ 10] [0320152221] +15:22:29 [ 11] [ 6] [782674] +15:22:29 [ 12] [ 6] [152221] +15:22:29 [ 13] [ 4] [0320] +15:22:29 [ 15] [ 4] [0320] +15:22:29 [ 18] [ 4] [6011] +15:22:29 [ 19] [ 3] [418] +15:22:29 [ 32] [ 6] [621354] +15:22:29 [ 37] [ 12] [507903986686] +15:22:29 [ 38] [ 6] [402071] +15:22:29 [ 39] [ 2] [00] +15:22:29 [ 41] [ 8] [01011400] +15:22:29 [ 49] [ 3] [418] +15:22:29 [ 54] [ 0] [] +15:22:29 ============================================================================ +15:22:29 Sending to : +15:22:29 ============================================================================ +15:22:29 + + +waiting on router queue for slot.... +15:22:29 ============================================================================ +15:22:29 Slot Id : <170> +15:22:29 Transaction Type : REQUEST +15:22:29 Received From : +15:22:29 ============================================================================ +15:22:29 FNo. Len. Field Value +15:22:29 ============================================================================ +15:22:29 [ 1] [ 4] [0800] +15:22:29 [ 7] [ 10] [0320082137] +15:22:29 [ 11] [ 6] [156993] +15:22:29 [ 70] [ 3] [301] +15:22:29 ============================================================================ +15:22:29 + + +waiting on router queue for slot.... +15:22:29 Sending to : +15:22:29 ============================================================================ +15:22:29 ============================================================================ +15:22:29 Slot Id : <170> +15:22:29 Transaction Type : RESPONSE +15:22:29 Received From : +15:22:29 ============================================================================ +15:22:29 FNo. Len. Field Value +15:22:29 ============================================================================ +15:22:29 [ 1] [ 4] [0810] +15:22:29 [ 7] [ 10] [0320082137] +15:22:29 [ 11] [ 6] [156993] +15:22:29 [ 39] [ 2] [00] +15:22:29 [ 70] [ 3] [301] +15:22:29 ============================================================================ +15:22:29 Calculate Source COMM Id = 2 +15:22:29 ============================================================================ +15:22:29 + + +waiting on router queue for slot.... +15:22:31 ============================================================================ +15:22:31 Slot Id : <128> +15:22:31 Transaction Type : RESPONSE +15:22:31 Received From : +15:22:31 ============================================================================ +15:22:31 FNo. Len. Field Value +15:22:31 ============================================================================ +15:22:31 [ 1] [ 4] [0210] +15:22:31 [ 2] [ 16] [1888880000030635] +15:22:31 [ 3] [ 6] [011000] +15:22:31 [ 4] [ 12] [000050000000] +15:22:31 [ 7] [ 10] [0320152221] +15:22:31 [ 11] [ 6] [782674] +15:22:31 [ 12] [ 6] [152221] +15:22:31 [ 13] [ 4] [0320] +15:22:31 [ 15] [ 4] [0320] +15:22:31 [ 18] [ 4] [6011] +15:22:31 [ 19] [ 3] [418] +15:22:31 [ 32] [ 6] [621354] +15:22:31 [ 37] [ 12] [507903986686] +15:22:31 [ 38] [ 6] [402071] +15:22:31 [ 39] [ 2] [00] +15:22:31 [ 41] [ 8] [01011400] +15:22:31 [ 49] [ 3] [418] +15:22:31 [ 54] [ 0] [] +15:22:31 ============================================================================ +15:22:31 Calculate Source COMM Id = 0 +15:22:31 ============================================================================ +15:22:31 + + +waiting on router queue for slot.... +15:22:41 ============================================================================ +15:22:41 Slot Id : <157> +15:22:41 Transaction Type : REQUEST +15:22:41 Received From : +15:22:41 ============================================================================ +15:22:41 FNo. Len. Field Value +15:22:41 ============================================================================ +15:22:41 [ 1] [ 4] [0200] +15:22:41 [ 2] [ 16] [6688990103268106] +15:22:41 [ 3] [ 6] [010000] +15:22:41 [ 4] [ 12] [000100000000] +15:22:41 [ 7] [ 10] [0320082146] +15:22:41 [ 11] [ 6] [269986] +15:22:41 [ 12] [ 6] [152146] +15:22:41 [ 13] [ 4] [0320] +15:22:41 [ 14] [ 4] [4212] +15:22:41 [ 15] [ 4] [0320] +15:22:41 [ 18] [ 4] [6011] +15:22:41 [ 19] [ 3] [418] +15:22:41 [ 22] [ 3] [021] +15:22:41 [ 25] [ 2] [01] +15:22:41 [ 28] [ 9] [D00002000] +15:22:41 [ 32] [ 6] [180893] +15:22:41 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:22:41 [ 37] [ 12] [507908269986] +15:22:41 [ 41] [ 8] [0263UDXB] +15:22:41 [ 42] [ 15] [999999 ] +15:22:41 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:22:41 [ 49] [ 3] [418] +15:22:41 [ 52] [ 16] [DEE7B0EE55C1B641] +15:22:41 ============================================================================ +15:22:41 + + +waiting on router queue for slot.... +15:22:41 Sending to : +15:22:41 ============================================================================ +15:22:41 Sending to : +15:22:41 ============================================================================ +15:22:41 ============================================================================ +15:22:41 Slot Id : <157> +15:22:41 Transaction Type : REQUEST +15:22:41 Received From : +15:22:41 ============================================================================ +15:22:41 FNo. Len. Field Value +15:22:41 ============================================================================ +15:22:41 [ 1] [ 4] [0200] +15:22:41 [ 2] [ 16] [6688990103268106] +15:22:41 [ 3] [ 6] [010000] +15:22:41 [ 4] [ 12] [000100000000] +15:22:41 [ 7] [ 10] [0320082146] +15:22:41 [ 11] [ 6] [269986] +15:22:41 [ 12] [ 6] [152146] +15:22:41 [ 13] [ 4] [0320] +15:22:41 [ 14] [ 4] [4212] +15:22:41 [ 15] [ 4] [0320] +15:22:41 [ 18] [ 4] [6011] +15:22:41 [ 19] [ 3] [418] +15:22:41 [ 22] [ 3] [021] +15:22:41 [ 25] [ 2] [01] +15:22:41 [ 28] [ 9] [D00002000] +15:22:41 [ 32] [ 6] [180893] +15:22:41 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:22:41 [ 37] [ 12] [507908269986] +15:22:41 [ 41] [ 8] [0263UDXB] +15:22:41 [ 42] [ 15] [999999 ] +15:22:41 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:22:41 [ 49] [ 3] [418] +15:22:41 [ 52] [ 16] [DEE7B0EE55C1B641] +15:22:41 ============================================================================ +15:22:41 + + +waiting on router queue for slot.... +15:22:41 Sending to : +15:22:41 ============================================================================ +15:22:41 ============================================================================ +15:22:41 Slot Id : <157> +15:22:41 Transaction Type : REQUEST +15:22:41 Received From : +15:22:41 ============================================================================ +15:22:41 FNo. Len. Field Value +15:22:41 ============================================================================ +15:22:41 [ 1] [ 4] [0200] +15:22:41 [ 2] [ 16] [6688990103268106] +15:22:41 [ 3] [ 6] [010000] +15:22:41 [ 4] [ 12] [000100000000] +15:22:41 [ 7] [ 10] [0320082146] +15:22:41 [ 11] [ 6] [269986] +15:22:41 [ 12] [ 6] [152146] +15:22:41 [ 13] [ 4] [0320] +15:22:41 [ 14] [ 4] [4212] +15:22:41 [ 15] [ 4] [0320] +15:22:41 [ 18] [ 4] [6011] +15:22:41 [ 19] [ 3] [418] +15:22:41 [ 22] [ 3] [021] +15:22:41 [ 25] [ 2] [01] +15:22:41 [ 28] [ 9] [D00002000] +15:22:41 [ 32] [ 6] [180893] +15:22:41 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:22:41 [ 37] [ 12] [507908269986] +15:22:41 [ 41] [ 8] [0263UDXB] +15:22:41 [ 42] [ 15] [999999 ] +15:22:41 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:22:41 [ 49] [ 3] [418] +15:22:41 [ 52] [ 16] [D956652F186B87D5] +15:22:41 ============================================================================ +15:22:41 + + +waiting on router queue for slot.... +15:22:41 Sending to : <0> +15:22:41 ============================================================================ +15:22:41 ============================================================================ +15:22:41 Slot Id : <157> +15:22:41 Transaction Type : RESPONSE +15:22:41 Received From : +15:22:41 ============================================================================ +15:22:41 FNo. Len. Field Value +15:22:41 ============================================================================ +15:22:41 [ 1] [ 4] [0210] +15:22:41 [ 2] [ 16] [6688990103268106] +15:22:41 [ 3] [ 6] [010000] +15:22:41 [ 4] [ 12] [000100000000] +15:22:41 [ 7] [ 10] [0320082146] +15:22:41 [ 11] [ 6] [269986] +15:22:41 [ 12] [ 6] [152146] +15:22:41 [ 13] [ 4] [0320] +15:22:41 [ 15] [ 4] [0320] +15:22:41 [ 18] [ 4] [6011] +15:22:41 [ 19] [ 3] [418] +15:22:41 [ 22] [ 3] [021] +15:22:41 [ 32] [ 6] [180893] +15:22:41 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:22:41 [ 37] [ 12] [507908269986] +15:22:41 [ 39] [ 2] [14] +15:22:41 [ 41] [ 8] [0263UDXB] +15:22:41 [ 49] [ 3] [418] +15:22:41 ============================================================================ +15:22:41 Sending to : +15:22:41 ============================================================================ +15:22:41 + + +waiting on router queue for slot.... +15:22:43 ============================================================================ +15:22:43 Slot Id : <157> +15:22:43 Transaction Type : RESPONSE +15:22:43 Received From : +15:22:43 ============================================================================ +15:22:43 FNo. Len. Field Value +15:22:43 ============================================================================ +15:22:43 [ 1] [ 4] [0210] +15:22:43 [ 2] [ 16] [6688990103268106] +15:22:43 [ 3] [ 6] [010000] +15:22:43 [ 4] [ 12] [000100000000] +15:22:43 [ 7] [ 10] [0320082146] +15:22:43 [ 11] [ 6] [269986] +15:22:43 [ 12] [ 6] [152146] +15:22:43 [ 13] [ 4] [0320] +15:22:43 [ 15] [ 4] [0320] +15:22:43 [ 18] [ 4] [6011] +15:22:43 [ 19] [ 3] [418] +15:22:43 [ 22] [ 3] [021] +15:22:43 [ 32] [ 6] [180893] +15:22:43 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:22:43 [ 37] [ 12] [507908269986] +15:22:43 [ 39] [ 2] [14] +15:22:43 [ 41] [ 8] [0263UDXB] +15:22:43 [ 49] [ 3] [418] +15:22:43 ============================================================================ +15:22:43 Calculate Source COMM Id = 2 +15:22:43 ============================================================================ +15:22:43 + + +waiting on router queue for slot.... +15:22:52 ============================================================================ +15:22:52 Slot Id : <141> +15:22:52 Transaction Type : REQUEST +15:22:52 Received From : +15:22:52 ============================================================================ +15:22:52 FNo. Len. Field Value +15:22:52 ============================================================================ +15:22:52 [ 1] [ 4] [0800] +15:22:52 [ 7] [ 10] [0320223440] +15:22:52 [ 11] [ 6] [153440] +15:22:52 [ 37] [ 12] [57915153440] +15:22:52 [ 70] [ 3] [301] +15:22:52 ============================================================================ +15:22:52 + + +waiting on router queue for slot.... +15:22:52 Sending to : +15:22:52 ============================================================================ +15:22:52 ============================================================================ +15:22:52 Slot Id : <141> +15:22:52 Transaction Type : RESPONSE +15:22:52 Received From : +15:22:52 ============================================================================ +15:22:52 FNo. Len. Field Value +15:22:52 ============================================================================ +15:22:52 [ 1] [ 4] [0810] +15:22:52 [ 7] [ 10] [0320223440] +15:22:52 [ 11] [ 6] [153440] +15:22:52 [ 37] [ 12] [579151534400] +15:22:52 [ 39] [ 2] [00] +15:22:52 [ 70] [ 3] [810] +15:22:52 ============================================================================ +15:22:52 Calculate Source COMM Id = 6 +15:22:52 ============================================================================ +15:22:52 + + +waiting on router queue for slot.... +15:22:56 ============================================================================ +15:22:56 Slot Id : <151> +15:22:56 Transaction Type : REQUEST +15:22:56 Received From : +15:22:56 ============================================================================ +15:22:56 FNo. Len. Field Value +15:22:56 ============================================================================ +15:22:56 [ 1] [ 4] [0800] +15:22:56 [ 7] [ 10] [0320082202] +15:22:56 [ 11] [ 6] [156994] +15:22:56 [ 70] [ 3] [301] +15:22:56 ============================================================================ +15:22:56 + + +waiting on router queue for slot.... +15:22:56 Sending to : +15:22:56 ============================================================================ +15:22:56 ============================================================================ +15:22:56 Slot Id : <151> +15:22:56 Transaction Type : RESPONSE +15:22:56 Received From : +15:22:56 ============================================================================ +15:22:56 FNo. Len. Field Value +15:22:56 ============================================================================ +15:22:56 [ 1] [ 4] [0810] +15:22:56 [ 7] [ 10] [0320082202] +15:22:56 [ 11] [ 6] [156994] +15:22:56 [ 39] [ 2] [00] +15:22:56 [ 70] [ 3] [301] +15:22:56 ============================================================================ +15:22:56 Calculate Source COMM Id = 2 +15:22:56 ============================================================================ +15:22:56 + + +waiting on router queue for slot.... +15:23:03 ============================================================================ +15:23:03 Slot Id : <172> +15:23:03 Transaction Type : REQUEST +15:23:03 Received From : +15:23:03 ============================================================================ +15:23:03 FNo. Len. Field Value +15:23:03 ============================================================================ +15:23:03 [ 1] [ 4] [0200] +15:23:03 [ 2] [ 16] [6688990107700609] +15:23:03 [ 3] [ 6] [012000] +15:23:03 [ 4] [ 12] [000010000000] +15:23:03 [ 7] [ 10] [0320152258] +15:23:03 [ 11] [ 6] [782839] +15:23:03 [ 12] [ 6] [152258] +15:23:03 [ 13] [ 4] [0320] +15:23:03 [ 15] [ 4] [0320] +15:23:03 [ 18] [ 4] [6011] +15:23:03 [ 22] [ 3] [900] +15:23:03 [ 25] [ 2] [02] +15:23:03 [ 28] [ 9] [D00002000] +15:23:03 [ 32] [ 6] [621354] +15:23:03 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:23:03 [ 37] [ 12] [507902812899] +15:23:03 [ 41] [ 8] [01007500] +15:23:03 [ 42] [ 15] [NATIVE ] +15:23:03 [ 43] [ 40] [M-Point Sisaket Sisattanak LAO] +15:23:03 [ 49] [ 3] [418] +15:23:03 [ 52] [ 16] [9A2807BB2C6D1906] +15:23:03 ============================================================================ +15:23:03 + + +waiting on router queue for slot.... +15:23:03 Sending to : +15:23:03 ============================================================================ +15:23:03 Sending to : +15:23:03 ============================================================================ +15:23:03 ============================================================================ +15:23:03 Slot Id : <172> +15:23:03 Transaction Type : REQUEST +15:23:03 Received From : +15:23:03 ============================================================================ +15:23:03 FNo. Len. Field Value +15:23:03 ============================================================================ +15:23:03 [ 1] [ 4] [0200] +15:23:03 [ 2] [ 16] [6688990107700609] +15:23:03 [ 3] [ 6] [012000] +15:23:03 [ 4] [ 12] [000010000000] +15:23:03 [ 7] [ 10] [0320152258] +15:23:03 [ 11] [ 6] [782839] +15:23:03 [ 12] [ 6] [152258] +15:23:03 [ 13] [ 4] [0320] +15:23:03 [ 15] [ 4] [0320] +15:23:03 [ 18] [ 4] [6011] +15:23:03 [ 22] [ 3] [900] +15:23:03 [ 25] [ 2] [02] +15:23:03 [ 28] [ 9] [D00002000] +15:23:03 [ 32] [ 6] [621354] +15:23:03 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:23:03 [ 37] [ 12] [507902812899] +15:23:03 [ 41] [ 8] [01007500] +15:23:03 [ 42] [ 15] [NATIVE ] +15:23:03 [ 43] [ 40] [M-Point Sisaket Sisattanak LAO] +15:23:03 [ 49] [ 3] [418] +15:23:03 [ 52] [ 16] [9A2807BB2C6D1906] +15:23:03 ============================================================================ +15:23:03 + + +waiting on router queue for slot.... +15:23:03 Sending to : +15:23:03 ============================================================================ +15:23:03 ============================================================================ +15:23:03 Slot Id : <172> +15:23:03 Transaction Type : REQUEST +15:23:03 Received From : +15:23:03 ============================================================================ +15:23:03 FNo. Len. Field Value +15:23:03 ============================================================================ +15:23:03 [ 1] [ 4] [0200] +15:23:03 [ 2] [ 16] [6688990107700609] +15:23:03 [ 3] [ 6] [012000] +15:23:03 [ 4] [ 12] [000010000000] +15:23:03 [ 7] [ 10] [0320152258] +15:23:03 [ 11] [ 6] [782839] +15:23:03 [ 12] [ 6] [152258] +15:23:03 [ 13] [ 4] [0320] +15:23:03 [ 15] [ 4] [0320] +15:23:03 [ 18] [ 4] [6011] +15:23:03 [ 22] [ 3] [900] +15:23:03 [ 25] [ 2] [02] +15:23:03 [ 28] [ 9] [D00002000] +15:23:03 [ 32] [ 6] [621354] +15:23:03 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:23:03 [ 37] [ 12] [507902812899] +15:23:03 [ 41] [ 8] [01007500] +15:23:03 [ 42] [ 15] [NATIVE ] +15:23:03 [ 43] [ 40] [M-Point Sisaket Sisattanak LAO] +15:23:03 [ 49] [ 3] [418] +15:23:03 [ 52] [ 16] [161CD0DDB715EB81] +15:23:03 ============================================================================ +15:23:03 + + +waiting on router queue for slot.... +15:23:03 Sending to : <4> +15:23:03 ============================================================================ +15:23:03 ============================================================================ +15:23:03 Slot Id : <172> +15:23:03 Transaction Type : RESPONSE +15:23:03 Received From : +15:23:03 ============================================================================ +15:23:03 FNo. Len. Field Value +15:23:03 ============================================================================ +15:23:03 [ 1] [ 4] [0210] +15:23:03 [ 2] [ 16] [6688990107700609] +15:23:03 [ 3] [ 6] [012000] +15:23:03 [ 4] [ 12] [000010000000] +15:23:03 [ 11] [ 6] [782839] +15:23:03 [ 12] [ 6] [152258] +15:23:03 [ 15] [ 4] [0320] +15:23:03 [ 18] [ 4] [6011] +15:23:03 [ 32] [ 6] [621354] +15:23:03 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:23:03 [ 37] [ 12] [507902812899] +15:23:03 [ 39] [ 2] [51] +15:23:03 [ 41] [ 8] [01007500] +15:23:03 [ 49] [ 3] [418] +15:23:03 [ 54] [ 0] [] +15:23:03 ============================================================================ +15:23:03 Sending to : +15:23:03 ============================================================================ +15:23:03 + + +waiting on router queue for slot.... +15:23:04 ============================================================================ +15:23:04 Slot Id : <172> +15:23:04 Transaction Type : RESPONSE +15:23:04 Received From : +15:23:04 ============================================================================ +15:23:04 FNo. Len. Field Value +15:23:04 ============================================================================ +15:23:04 [ 1] [ 4] [0210] +15:23:04 [ 2] [ 16] [6688990107700609] +15:23:04 [ 3] [ 6] [012000] +15:23:04 [ 4] [ 12] [000010000000] +15:23:04 [ 11] [ 6] [782839] +15:23:04 [ 12] [ 6] [152258] +15:23:04 [ 15] [ 4] [0320] +15:23:04 [ 18] [ 4] [6011] +15:23:04 [ 32] [ 6] [621354] +15:23:04 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:23:04 [ 37] [ 12] [507902812899] +15:23:04 [ 39] [ 2] [51] +15:23:04 [ 41] [ 8] [01007500] +15:23:04 [ 49] [ 3] [418] +15:23:04 [ 54] [ 0] [] +15:23:04 ============================================================================ +15:23:04 Calculate Source COMM Id = 0 +15:23:04 ============================================================================ +15:23:04 + + +waiting on router queue for slot.... +15:23:11 ============================================================================ +15:23:11 Slot Id : <171> +15:23:11 Transaction Type : REQUEST +15:23:11 Received From : +15:23:11 ============================================================================ +15:23:11 FNo. Len. Field Value +15:23:11 ============================================================================ +15:23:11 [ 1] [ 4] [0800] +15:23:11 [ 7] [ 10] [0320082218] +15:23:11 [ 11] [ 6] [156995] +15:23:11 [ 70] [ 3] [301] +15:23:11 ============================================================================ +15:23:11 + + +waiting on router queue for slot.... +15:23:11 Sending to : +15:23:11 ============================================================================ +15:23:11 ============================================================================ +15:23:11 Slot Id : <171> +15:23:11 Transaction Type : RESPONSE +15:23:11 Received From : +15:23:11 ============================================================================ +15:23:11 FNo. Len. Field Value +15:23:11 ============================================================================ +15:23:11 [ 1] [ 4] [0810] +15:23:11 [ 7] [ 10] [0320082218] +15:23:11 [ 11] [ 6] [156995] +15:23:11 [ 39] [ 2] [00] +15:23:11 [ 70] [ 3] [301] +15:23:11 ============================================================================ +15:23:11 Calculate Source COMM Id = 2 +15:23:11 ============================================================================ +15:23:11 + + +waiting on router queue for slot.... +15:23:21 ============================================================================ +15:23:21 Slot Id : <164> +15:23:21 Transaction Type : REQUEST +15:23:21 Received From : +15:23:21 ============================================================================ +15:23:21 FNo. Len. Field Value +15:23:21 ============================================================================ +15:23:21 [ 1] [ 4] [0200] +15:23:21 [ 2] [ 16] [6688990103268106] +15:23:21 [ 3] [ 6] [010000] +15:23:21 [ 4] [ 12] [000100000000] +15:23:21 [ 7] [ 10] [0320082227] +15:23:21 [ 11] [ 6] [269990] +15:23:21 [ 12] [ 6] [152227] +15:23:21 [ 13] [ 4] [0320] +15:23:21 [ 14] [ 4] [4212] +15:23:21 [ 15] [ 4] [0320] +15:23:21 [ 18] [ 4] [6011] +15:23:21 [ 19] [ 3] [418] +15:23:21 [ 22] [ 3] [021] +15:23:21 [ 25] [ 2] [01] +15:23:21 [ 28] [ 9] [D00002000] +15:23:21 [ 32] [ 6] [180893] +15:23:21 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:23:21 [ 37] [ 12] [507908269990] +15:23:21 [ 41] [ 8] [0263UDXB] +15:23:21 [ 42] [ 15] [999999 ] +15:23:21 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:23:21 [ 49] [ 3] [418] +15:23:21 [ 52] [ 16] [DEE7B0EE55C1B641] +15:23:21 ============================================================================ +15:23:21 + + +waiting on router queue for slot.... +15:23:21 Sending to : +15:23:21 ============================================================================ +15:23:21 Sending to : +15:23:21 ============================================================================ +15:23:21 ============================================================================ +15:23:21 Slot Id : <164> +15:23:21 Transaction Type : REQUEST +15:23:21 Received From : +15:23:21 ============================================================================ +15:23:21 FNo. Len. Field Value +15:23:21 ============================================================================ +15:23:21 [ 1] [ 4] [0200] +15:23:21 [ 2] [ 16] [6688990103268106] +15:23:21 [ 3] [ 6] [010000] +15:23:21 [ 4] [ 12] [000100000000] +15:23:21 [ 7] [ 10] [0320082227] +15:23:21 [ 11] [ 6] [269990] +15:23:21 [ 12] [ 6] [152227] +15:23:21 [ 13] [ 4] [0320] +15:23:21 [ 14] [ 4] [4212] +15:23:21 [ 15] [ 4] [0320] +15:23:21 [ 18] [ 4] [6011] +15:23:21 [ 19] [ 3] [418] +15:23:21 [ 22] [ 3] [021] +15:23:21 [ 25] [ 2] [01] +15:23:21 [ 28] [ 9] [D00002000] +15:23:21 [ 32] [ 6] [180893] +15:23:21 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:23:21 [ 37] [ 12] [507908269990] +15:23:21 [ 41] [ 8] [0263UDXB] +15:23:21 [ 42] [ 15] [999999 ] +15:23:21 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:23:21 [ 49] [ 3] [418] +15:23:21 [ 52] [ 16] [DEE7B0EE55C1B641] +15:23:21 ============================================================================ +15:23:21 + + +waiting on router queue for slot.... +15:23:21 Sending to : +15:23:21 ============================================================================ +15:23:21 ============================================================================ +15:23:21 Slot Id : <164> +15:23:21 Transaction Type : REQUEST +15:23:21 Received From : +15:23:21 ============================================================================ +15:23:21 FNo. Len. Field Value +15:23:21 ============================================================================ +15:23:21 [ 1] [ 4] [0200] +15:23:21 [ 2] [ 16] [6688990103268106] +15:23:21 [ 3] [ 6] [010000] +15:23:21 [ 4] [ 12] [000100000000] +15:23:21 [ 7] [ 10] [0320082227] +15:23:21 [ 11] [ 6] [269990] +15:23:21 [ 12] [ 6] [152227] +15:23:21 [ 13] [ 4] [0320] +15:23:21 [ 14] [ 4] [4212] +15:23:21 [ 15] [ 4] [0320] +15:23:21 [ 18] [ 4] [6011] +15:23:21 [ 19] [ 3] [418] +15:23:21 [ 22] [ 3] [021] +15:23:21 [ 25] [ 2] [01] +15:23:21 [ 28] [ 9] [D00002000] +15:23:21 [ 32] [ 6] [180893] +15:23:21 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:23:21 [ 37] [ 12] [507908269990] +15:23:21 [ 41] [ 8] [0263UDXB] +15:23:21 [ 42] [ 15] [999999 ] +15:23:21 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:23:21 [ 49] [ 3] [418] +15:23:21 [ 52] [ 16] [D956652F186B87D5] +15:23:21 ============================================================================ +15:23:21 + + +waiting on router queue for slot.... +15:23:21 Sending to : <0> +15:23:21 ============================================================================ +15:23:21 ============================================================================ +15:23:21 Slot Id : <164> +15:23:21 Transaction Type : RESPONSE +15:23:21 Received From : +15:23:21 ============================================================================ +15:23:21 FNo. Len. Field Value +15:23:21 ============================================================================ +15:23:21 [ 1] [ 4] [0210] +15:23:21 [ 2] [ 16] [6688990103268106] +15:23:21 [ 3] [ 6] [010000] +15:23:21 [ 4] [ 12] [000100000000] +15:23:21 [ 7] [ 10] [0320082227] +15:23:21 [ 11] [ 6] [269990] +15:23:21 [ 12] [ 6] [152227] +15:23:21 [ 13] [ 4] [0320] +15:23:21 [ 15] [ 4] [0320] +15:23:21 [ 18] [ 4] [6011] +15:23:21 [ 19] [ 3] [418] +15:23:21 [ 22] [ 3] [021] +15:23:21 [ 32] [ 6] [180893] +15:23:21 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:23:21 [ 37] [ 12] [507908269990] +15:23:21 [ 39] [ 2] [14] +15:23:21 [ 41] [ 8] [0263UDXB] +15:23:21 [ 49] [ 3] [418] +15:23:21 ============================================================================ +15:23:21 Sending to : +15:23:21 ============================================================================ +15:23:21 + + +waiting on router queue for slot.... +15:23:22 ============================================================================ +15:23:22 Slot Id : <186> +15:23:22 Transaction Type : REQUEST +15:23:22 Received From : +15:23:22 ============================================================================ +15:23:22 FNo. Len. Field Value +15:23:22 ============================================================================ +15:23:22 [ 1] [ 4] [0800] +15:23:22 [ 7] [ 10] [0320082229] +15:23:22 [ 11] [ 6] [156996] +15:23:22 [ 70] [ 3] [301] +15:23:22 ============================================================================ +15:23:22 + + +waiting on router queue for slot.... +15:23:22 Sending to : +15:23:22 ============================================================================ +15:23:22 ============================================================================ +15:23:22 Slot Id : <186> +15:23:22 Transaction Type : RESPONSE +15:23:22 Received From : +15:23:22 ============================================================================ +15:23:22 FNo. Len. Field Value +15:23:22 ============================================================================ +15:23:22 [ 1] [ 4] [0810] +15:23:22 [ 7] [ 10] [0320082229] +15:23:22 [ 11] [ 6] [156996] +15:23:22 [ 39] [ 2] [00] +15:23:22 [ 70] [ 3] [301] +15:23:22 ============================================================================ +15:23:22 Calculate Source COMM Id = 2 +15:23:22 ============================================================================ +15:23:22 + + +waiting on router queue for slot.... +15:23:23 ============================================================================ +15:23:23 Slot Id : <164> +15:23:23 Transaction Type : RESPONSE +15:23:23 Received From : +15:23:23 ============================================================================ +15:23:23 FNo. Len. Field Value +15:23:23 ============================================================================ +15:23:23 [ 1] [ 4] [0210] +15:23:23 [ 2] [ 16] [6688990103268106] +15:23:23 [ 3] [ 6] [010000] +15:23:23 [ 4] [ 12] [000100000000] +15:23:23 [ 7] [ 10] [0320082227] +15:23:23 [ 11] [ 6] [269990] +15:23:23 [ 12] [ 6] [152227] +15:23:23 [ 13] [ 4] [0320] +15:23:23 [ 15] [ 4] [0320] +15:23:23 [ 18] [ 4] [6011] +15:23:23 [ 19] [ 3] [418] +15:23:23 [ 22] [ 3] [021] +15:23:23 [ 32] [ 6] [180893] +15:23:23 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:23:23 [ 37] [ 12] [507908269990] +15:23:23 [ 39] [ 2] [14] +15:23:23 [ 41] [ 8] [0263UDXB] +15:23:23 [ 49] [ 3] [418] +15:23:23 ============================================================================ +15:23:23 Calculate Source COMM Id = 2 +15:23:23 ============================================================================ +15:23:23 + + +waiting on router queue for slot.... +15:23:25 ============================================================================ +15:23:25 Slot Id : <126> +15:23:25 Transaction Type : REQUEST +15:23:25 Received From : +15:23:25 ============================================================================ +15:23:25 FNo. Len. Field Value +15:23:25 ============================================================================ +15:23:25 [ 1] [ 4] [0800] +15:23:25 [ 2] [ 5] [02531] +15:23:25 [ 3] [ 6] [579158] +15:23:25 [ 7] [ 10] [0320082324] +15:23:25 [ 11] [ 6] [807305] +15:23:25 [ 15] [ 10] [0320082324] +15:23:25 [ 37] [ 11] [57915807305] +15:23:25 [ 70] [ 3] [001] +15:23:25 ============================================================================ +15:23:25 + + +waiting on router queue for slot.... +15:23:25 ============================================================================ +15:23:25 Slot Id : <126> +15:23:25 Transaction Type : RESPONSE +15:23:25 Received From : +15:23:25 ============================================================================ +15:23:25 FNo. Len. Field Value +15:23:25 ============================================================================ +15:23:25 [ 1] [ 4] [0810] +15:23:25 [ 7] [ 10] [0320082324] +15:23:25 [ 11] [ 6] [807305] +15:23:25 [ 15] [ 4] [0320] +15:23:25 [ 37] [ 12] [57915807305] +15:23:25 [ 39] [ 2] [00] +15:23:25 [ 70] [ 3] [001] +15:23:25 ============================================================================ +15:23:25 Sending to : +15:23:25 ============================================================================ +15:23:25 + + +waiting on router queue for slot.... +15:23:37 ============================================================================ +15:23:37 Slot Id : <148> +15:23:37 Transaction Type : REQUEST +15:23:37 Received From : +15:23:37 ============================================================================ +15:23:37 FNo. Len. Field Value +15:23:37 ============================================================================ +15:23:37 [ 1] [ 4] [0800] +15:23:37 [ 7] [ 10] [0320082245] +15:23:37 [ 11] [ 6] [156997] +15:23:37 [ 70] [ 3] [301] +15:23:37 ============================================================================ +15:23:37 + + +waiting on router queue for slot.... +15:23:37 Sending to : +15:23:37 ============================================================================ +15:23:37 ============================================================================ +15:23:37 Slot Id : <148> +15:23:37 Transaction Type : RESPONSE +15:23:37 Received From : +15:23:37 ============================================================================ +15:23:37 FNo. Len. Field Value +15:23:37 ============================================================================ +15:23:37 [ 1] [ 4] [0810] +15:23:37 [ 7] [ 10] [0320082245] +15:23:37 [ 11] [ 6] [156997] +15:23:37 [ 39] [ 2] [00] +15:23:37 [ 70] [ 3] [301] +15:23:37 ============================================================================ +15:23:37 Calculate Source COMM Id = 2 +15:23:37 ============================================================================ +15:23:37 + + +waiting on router queue for slot.... +15:23:48 ============================================================================ +15:23:48 Slot Id : <182> +15:23:48 Transaction Type : REQUEST +15:23:48 Received From : +15:23:48 ============================================================================ +15:23:48 FNo. Len. Field Value +15:23:48 ============================================================================ +15:23:48 [ 1] [ 4] [0200] +15:23:48 [ 2] [ 16] [1888880000030684] +15:23:48 [ 3] [ 6] [011000] +15:23:48 [ 4] [ 12] [000010000000] +15:23:48 [ 7] [ 10] [0320152344] +15:23:48 [ 11] [ 6] [783023] +15:23:48 [ 12] [ 6] [152344] +15:23:48 [ 13] [ 4] [0320] +15:23:48 [ 15] [ 4] [0320] +15:23:48 [ 18] [ 4] [6011] +15:23:48 [ 22] [ 3] [900] +15:23:48 [ 25] [ 2] [02] +15:23:48 [ 28] [ 9] [D00002000] +15:23:48 [ 32] [ 6] [621354] +15:23:48 [ 35] [ 32] [1888880000030684=000010100000052] +15:23:48 [ 37] [ 12] [507904755374] +15:23:48 [ 41] [ 8] [07001100] +15:23:48 [ 42] [ 15] [NATIVE ] +15:23:48 [ 43] [ 40] [Industry Market Namtar LAO] +15:23:48 [ 49] [ 3] [418] +15:23:48 [ 52] [ 16] [FEB63CAFDD0EB3C8] +15:23:48 ============================================================================ +15:23:48 + + +waiting on router queue for slot.... +15:23:48 Sending to : +15:23:48 ============================================================================ +15:23:48 Sending to : +15:23:48 ============================================================================ +15:23:49 ============================================================================ +15:23:49 Slot Id : <182> +15:23:49 Transaction Type : REQUEST +15:23:49 Received From : +15:23:49 ============================================================================ +15:23:49 FNo. Len. Field Value +15:23:49 ============================================================================ +15:23:49 [ 1] [ 4] [0200] +15:23:49 [ 2] [ 16] [1888880000030684] +15:23:49 [ 3] [ 6] [011000] +15:23:49 [ 4] [ 12] [000010000000] +15:23:49 [ 7] [ 10] [0320152344] +15:23:49 [ 11] [ 6] [783023] +15:23:49 [ 12] [ 6] [152344] +15:23:49 [ 13] [ 4] [0320] +15:23:49 [ 15] [ 4] [0320] +15:23:49 [ 18] [ 4] [6011] +15:23:49 [ 22] [ 3] [900] +15:23:49 [ 25] [ 2] [02] +15:23:49 [ 28] [ 9] [D00002000] +15:23:49 [ 32] [ 6] [621354] +15:23:49 [ 35] [ 32] [1888880000030684=000010100000052] +15:23:49 [ 37] [ 12] [507904755374] +15:23:49 [ 41] [ 8] [07001100] +15:23:49 [ 42] [ 15] [NATIVE ] +15:23:49 [ 43] [ 40] [Industry Market Namtar LAO] +15:23:49 [ 49] [ 3] [418] +15:23:49 [ 52] [ 16] [FEB63CAFDD0EB3C8] +15:23:49 ============================================================================ +15:23:49 + + +waiting on router queue for slot.... +15:23:49 Sending to : +15:23:49 ============================================================================ +15:23:49 ============================================================================ +15:23:49 Slot Id : <182> +15:23:49 Transaction Type : REQUEST +15:23:49 Received From : +15:23:49 ============================================================================ +15:23:49 FNo. Len. Field Value +15:23:49 ============================================================================ +15:23:49 [ 1] [ 4] [0200] +15:23:49 [ 2] [ 16] [1888880000030684] +15:23:49 [ 3] [ 6] [011000] +15:23:49 [ 4] [ 12] [000010000000] +15:23:49 [ 7] [ 10] [0320152344] +15:23:49 [ 11] [ 6] [783023] +15:23:49 [ 12] [ 6] [152344] +15:23:49 [ 13] [ 4] [0320] +15:23:49 [ 15] [ 4] [0320] +15:23:49 [ 18] [ 4] [6011] +15:23:49 [ 22] [ 3] [900] +15:23:49 [ 25] [ 2] [02] +15:23:49 [ 28] [ 9] [D00002000] +15:23:49 [ 32] [ 6] [621354] +15:23:49 [ 35] [ 32] [1888880000030684=000010100000052] +15:23:49 [ 37] [ 12] [507904755374] +15:23:49 [ 41] [ 8] [07001100] +15:23:49 [ 42] [ 15] [NATIVE ] +15:23:49 [ 43] [ 40] [Industry Market Namtar LAO] +15:23:49 [ 49] [ 3] [418] +15:23:49 [ 52] [ 16] [53FBE6B83419A87E] +15:23:49 ============================================================================ +15:23:49 + + +waiting on router queue for slot.... +15:23:49 Sending to : <5> +15:23:49 ============================================================================ +15:23:52 ============================================================================ +15:23:52 Slot Id : <119> +15:23:52 Transaction Type : REQUEST +15:23:52 Received From : +15:23:52 ============================================================================ +15:23:52 FNo. Len. Field Value +15:23:52 ============================================================================ +15:23:52 [ 1] [ 4] [0200] +15:23:52 [ 2] [ 16] [6213544002073283] +15:23:52 [ 3] [ 6] [311000] +15:23:52 [ 4] [ 12] [000000000000] +15:23:52 [ 7] [ 10] [0320153139] +15:23:52 [ 11] [ 6] [009792] +15:23:52 [ 12] [ 6] [153139] +15:23:52 [ 13] [ 4] [0320] +15:23:52 [ 14] [ 4] [4912] +15:23:52 [ 15] [ 4] [0320] +15:23:52 [ 18] [ 4] [6011] +15:23:52 [ 22] [ 3] [900] +15:23:52 [ 25] [ 2] [02] +15:23:52 [ 28] [ 9] [000000000] +15:23:52 [ 32] [ 6] [220699] +15:23:52 [ 35] [ 32] [6213544002073283=491212017328199] +15:23:52 [ 37] [ 12] [507900270562] +15:23:52 [ 41] [ 8] [01001500] +15:23:52 [ 42] [ 15] [APTRA ] +15:23:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:23:52 [ 49] [ 3] [418] +15:23:52 [ 52] [ 16] [E615DF8711FFFEE8] +15:23:52 ============================================================================ +15:23:52 + + +waiting on router queue for slot.... +15:23:52 Sending to : +15:23:52 ============================================================================ +15:23:52 Sending to : +15:23:52 ============================================================================ +15:23:52 ============================================================================ +15:23:52 Slot Id : <119> +15:23:52 Transaction Type : REQUEST +15:23:52 Received From : +15:23:52 ============================================================================ +15:23:52 FNo. Len. Field Value +15:23:52 ============================================================================ +15:23:52 [ 1] [ 4] [0200] +15:23:52 [ 2] [ 16] [6213544002073283] +15:23:52 [ 3] [ 6] [311000] +15:23:52 [ 4] [ 12] [000000000000] +15:23:52 [ 7] [ 10] [0320153139] +15:23:52 [ 11] [ 6] [009792] +15:23:52 [ 12] [ 6] [153139] +15:23:52 [ 13] [ 4] [0320] +15:23:52 [ 14] [ 4] [4912] +15:23:52 [ 15] [ 4] [0320] +15:23:52 [ 18] [ 4] [6011] +15:23:52 [ 22] [ 3] [900] +15:23:52 [ 25] [ 2] [02] +15:23:52 [ 28] [ 9] [000000000] +15:23:52 [ 32] [ 6] [220699] +15:23:52 [ 35] [ 32] [6213544002073283=491212017328199] +15:23:52 [ 37] [ 12] [507900270562] +15:23:52 [ 41] [ 8] [01001500] +15:23:52 [ 42] [ 15] [APTRA ] +15:23:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:23:52 [ 49] [ 3] [418] +15:23:52 [ 52] [ 16] [E615DF8711FFFEE8] +15:23:52 ============================================================================ +15:23:52 + + +waiting on router queue for slot.... +15:23:52 Sending to : +15:23:52 ============================================================================ +15:23:52 ============================================================================ +15:23:52 Slot Id : <119> +15:23:52 Transaction Type : REQUEST +15:23:52 Received From : +15:23:52 ============================================================================ +15:23:52 FNo. Len. Field Value +15:23:52 ============================================================================ +15:23:52 [ 1] [ 4] [0200] +15:23:52 [ 2] [ 16] [6213544002073283] +15:23:52 [ 3] [ 6] [311000] +15:23:52 [ 4] [ 12] [000000000000] +15:23:52 [ 7] [ 10] [0320153139] +15:23:52 [ 11] [ 6] [009792] +15:23:52 [ 12] [ 6] [153139] +15:23:52 [ 13] [ 4] [0320] +15:23:52 [ 14] [ 4] [4912] +15:23:52 [ 15] [ 4] [0320] +15:23:52 [ 18] [ 4] [6011] +15:23:52 [ 22] [ 3] [900] +15:23:52 [ 25] [ 2] [02] +15:23:52 [ 28] [ 9] [000000000] +15:23:52 [ 32] [ 6] [220699] +15:23:52 [ 35] [ 32] [6213544002073283=491212017328199] +15:23:52 [ 37] [ 12] [507900270562] +15:23:52 [ 41] [ 8] [01001500] +15:23:52 [ 42] [ 15] [APTRA ] +15:23:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:23:52 [ 49] [ 3] [418] +15:23:52 [ 52] [ 16] [BB1C2DF287564FB2] +15:23:52 ============================================================================ +15:23:52 + + +waiting on router queue for slot.... +15:23:52 Sending to : <0> +15:23:52 ============================================================================ +15:23:52 ============================================================================ +15:23:52 Slot Id : <119> +15:23:52 Transaction Type : RESPONSE +15:23:52 Received From : +15:23:52 ============================================================================ +15:23:52 FNo. Len. Field Value +15:23:52 ============================================================================ +15:23:52 [ 1] [ 4] [0210] +15:23:52 [ 2] [ 16] [6213544002073283] +15:23:52 [ 3] [ 6] [311000] +15:23:52 [ 4] [ 12] [000000000000] +15:23:52 [ 7] [ 10] [0320153139] +15:23:52 [ 11] [ 6] [009792] +15:23:52 [ 12] [ 6] [153139] +15:23:52 [ 13] [ 4] [0320] +15:23:52 [ 15] [ 4] [0320] +15:23:52 [ 18] [ 4] [6011] +15:23:52 [ 32] [ 6] [220699] +15:23:52 [ 35] [ 32] [6213544002073283=491212017328199] +15:23:52 [ 37] [ 12] [507900270562] +15:23:52 [ 38] [ 6] [820299] +15:23:52 [ 39] [ 2] [00] +15:23:52 [ 41] [ 8] [01001500] +15:23:52 [ 49] [ 3] [418] +15:23:52 [ 54] [ 40] [1001418C0001111220971002418C000111122097] +15:23:52 ============================================================================ +15:23:52 Sending to : +15:23:52 ============================================================================ +15:23:52 + + +waiting on router queue for slot.... +15:23:53 ============================================================================ +15:23:53 Slot Id : <139> +15:23:53 Transaction Type : REQUEST +15:23:53 Received From : +15:23:53 ============================================================================ +15:23:53 FNo. Len. Field Value +15:23:53 ============================================================================ +15:23:53 [ 1] [ 4] [0800] +15:23:53 [ 7] [ 10] [0320082301] +15:23:53 [ 11] [ 6] [156998] +15:23:53 [ 70] [ 3] [301] +15:23:53 ============================================================================ +15:23:53 + + +waiting on router queue for slot.... +15:23:53 Sending to : +15:23:53 ============================================================================ +15:23:53 ============================================================================ +15:23:53 Slot Id : <139> +15:23:53 Transaction Type : RESPONSE +15:23:53 Received From : +15:23:53 ============================================================================ +15:23:53 FNo. Len. Field Value +15:23:53 ============================================================================ +15:23:53 [ 1] [ 4] [0810] +15:23:53 [ 7] [ 10] [0320082301] +15:23:53 [ 11] [ 6] [156998] +15:23:53 [ 39] [ 2] [00] +15:23:53 [ 70] [ 3] [301] +15:23:53 ============================================================================ +15:23:53 Calculate Source COMM Id = 2 +15:23:53 ============================================================================ +15:23:53 + + +waiting on router queue for slot.... +15:23:54 ============================================================================ +15:23:54 Slot Id : <119> +15:23:54 Transaction Type : RESPONSE +15:23:54 Received From : +15:23:54 ============================================================================ +15:23:54 FNo. Len. Field Value +15:23:54 ============================================================================ +15:23:54 [ 1] [ 4] [0210] +15:23:54 [ 2] [ 16] [6213544002073283] +15:23:54 [ 3] [ 6] [311000] +15:23:54 [ 4] [ 12] [000000000000] +15:23:54 [ 7] [ 10] [0320153139] +15:23:54 [ 11] [ 6] [009792] +15:23:54 [ 12] [ 6] [153139] +15:23:54 [ 13] [ 4] [0320] +15:23:54 [ 15] [ 4] [0320] +15:23:54 [ 18] [ 4] [6011] +15:23:54 [ 32] [ 6] [220699] +15:23:54 [ 35] [ 32] [6213544002073283=491212017328199] +15:23:54 [ 37] [ 12] [507900270562] +15:23:54 [ 38] [ 6] [820299] +15:23:54 [ 39] [ 2] [00] +15:23:54 [ 41] [ 8] [01001500] +15:23:54 [ 49] [ 3] [418] +15:23:54 [ 54] [ 40] [1001418C0001111220971002418C000111122097] +15:23:54 ============================================================================ +15:23:54 Calculate Source COMM Id = 1 +15:23:54 ============================================================================ +15:23:54 + + +waiting on router queue for slot.... +15:23:54 ============================================================================ +15:23:54 Slot Id : <176> +15:23:54 Transaction Type : REQUEST +15:23:54 Received From : +15:23:54 ============================================================================ +15:23:54 FNo. Len. Field Value +15:23:54 ============================================================================ +15:23:54 [ 1] [ 4] [0200] +15:23:54 [ 2] [ 16] [6688990040112748] +15:23:54 [ 3] [ 6] [011000] +15:23:54 [ 4] [ 12] [000030000000] +15:23:54 [ 7] [ 10] [0320152350] +15:23:54 [ 11] [ 6] [783049] +15:23:54 [ 12] [ 6] [152350] +15:23:54 [ 13] [ 4] [0320] +15:23:54 [ 15] [ 4] [0320] +15:23:54 [ 18] [ 4] [6011] +15:23:54 [ 22] [ 3] [900] +15:23:54 [ 25] [ 2] [02] +15:23:54 [ 28] [ 9] [D00002000] +15:23:54 [ 32] [ 6] [621354] +15:23:54 [ 35] [ 37] [6688990040112748=98031261513567900000] +15:23:54 [ 37] [ 12] [507903345058] +15:23:54 [ 41] [ 8] [13001400] +15:23:54 [ 42] [ 15] [NATIVE ] +15:23:54 [ 43] [ 40] [Kham Unit Kham LAO] +15:23:54 [ 49] [ 3] [418] +15:23:54 [ 52] [ 16] [90F2401045884DF7] +15:23:54 ============================================================================ +15:23:54 + + +waiting on router queue for slot.... +15:23:54 Sending to : +15:23:54 ============================================================================ +15:23:54 Sending to : +15:23:54 ============================================================================ +15:23:55 ============================================================================ +15:23:55 Slot Id : <176> +15:23:55 Transaction Type : REQUEST +15:23:55 Received From : +15:23:55 ============================================================================ +15:23:55 FNo. Len. Field Value +15:23:55 ============================================================================ +15:23:55 [ 1] [ 4] [0200] +15:23:55 [ 2] [ 16] [6688990040112748] +15:23:55 [ 3] [ 6] [011000] +15:23:55 [ 4] [ 12] [000030000000] +15:23:55 [ 7] [ 10] [0320152350] +15:23:55 [ 11] [ 6] [783049] +15:23:55 [ 12] [ 6] [152350] +15:23:55 [ 13] [ 4] [0320] +15:23:55 [ 15] [ 4] [0320] +15:23:55 [ 18] [ 4] [6011] +15:23:55 [ 22] [ 3] [900] +15:23:55 [ 25] [ 2] [02] +15:23:55 [ 28] [ 9] [D00002000] +15:23:55 [ 32] [ 6] [621354] +15:23:55 [ 35] [ 37] [6688990040112748=98031261513567900000] +15:23:55 [ 37] [ 12] [507903345058] +15:23:55 [ 41] [ 8] [13001400] +15:23:55 [ 42] [ 15] [NATIVE ] +15:23:55 [ 43] [ 40] [Kham Unit Kham LAO] +15:23:55 [ 49] [ 3] [418] +15:23:55 [ 52] [ 16] [90F2401045884DF7] +15:23:55 ============================================================================ +15:23:55 + + +waiting on router queue for slot.... +15:23:55 Sending to : +15:23:55 ============================================================================ +15:23:55 ============================================================================ +15:23:55 Slot Id : <176> +15:23:55 Transaction Type : REQUEST +15:23:55 Received From : +15:23:55 ============================================================================ +15:23:55 FNo. Len. Field Value +15:23:55 ============================================================================ +15:23:55 [ 1] [ 4] [0200] +15:23:55 [ 2] [ 16] [6688990040112748] +15:23:55 [ 3] [ 6] [011000] +15:23:55 [ 4] [ 12] [000030000000] +15:23:55 [ 7] [ 10] [0320152350] +15:23:55 [ 11] [ 6] [783049] +15:23:55 [ 12] [ 6] [152350] +15:23:55 [ 13] [ 4] [0320] +15:23:55 [ 15] [ 4] [0320] +15:23:55 [ 18] [ 4] [6011] +15:23:55 [ 22] [ 3] [900] +15:23:55 [ 25] [ 2] [02] +15:23:55 [ 28] [ 9] [D00002000] +15:23:55 [ 32] [ 6] [621354] +15:23:55 [ 35] [ 37] [6688990040112748=98031261513567900000] +15:23:55 [ 37] [ 12] [507903345058] +15:23:55 [ 41] [ 8] [13001400] +15:23:55 [ 42] [ 15] [NATIVE ] +15:23:55 [ 43] [ 40] [Kham Unit Kham LAO] +15:23:55 [ 49] [ 3] [418] +15:23:55 [ 52] [ 16] [9AE2E892B3FD3E7B] +15:23:55 ============================================================================ +15:23:55 + + +waiting on router queue for slot.... +15:23:55 Sending to : <4> +15:23:55 ============================================================================ +15:23:56 ============================================================================ +15:23:56 Slot Id : <176> +15:23:56 Transaction Type : RESPONSE +15:23:56 Received From : +15:23:56 ============================================================================ +15:23:56 FNo. Len. Field Value +15:23:56 ============================================================================ +15:23:56 [ 1] [ 4] [0210] +15:23:56 [ 2] [ 16] [6688990040112748] +15:23:56 [ 3] [ 6] [011000] +15:23:56 [ 4] [ 12] [000030000000] +15:23:56 [ 11] [ 6] [783049] +15:23:56 [ 12] [ 6] [152350] +15:23:56 [ 15] [ 4] [0320] +15:23:56 [ 18] [ 4] [6011] +15:23:56 [ 32] [ 6] [621354] +15:23:56 [ 35] [ 37] [6688990040112748=98031261513567900000] +15:23:56 [ 37] [ 12] [507903345058] +15:23:56 [ 38] [ 6] [281860] +15:23:56 [ 39] [ 2] [00] +15:23:56 [ 41] [ 8] [13001400] +15:23:56 [ 49] [ 3] [418] +15:23:56 [ 54] [ 20] [1002418C000303471612] +15:23:56 ============================================================================ +15:23:56 Sending to : +15:23:56 ============================================================================ +15:23:56 + + +waiting on router queue for slot.... +15:23:57 ============================================================================ +15:23:57 Slot Id : <182> +15:23:57 Transaction Type : RESPONSE +15:23:57 Received From : +15:23:57 ============================================================================ +15:23:57 FNo. Len. Field Value +15:23:57 ============================================================================ +15:23:57 [ 1] [ 4] [0210] +15:23:57 [ 2] [ 16] [1888880000030684] +15:23:57 [ 3] [ 6] [011000] +15:23:57 [ 4] [ 12] [000010000000] +15:23:57 [ 7] [ 10] [0320152344] +15:23:57 [ 11] [ 6] [783023] +15:23:57 [ 12] [ 6] [152344] +15:23:57 [ 13] [ 4] [0320] +15:23:57 [ 15] [ 4] [0320] +15:23:57 [ 18] [ 4] [6011] +15:23:57 [ 19] [ 3] [418] +15:23:57 [ 32] [ 6] [621354] +15:23:57 [ 37] [ 12] [507904755374] +15:23:57 [ 38] [ 6] [981748] +15:23:57 [ 39] [ 2] [00] +15:23:57 [ 41] [ 8] [07001100] +15:23:57 [ 49] [ 3] [418] +15:23:57 [ 54] [ 0] [] +15:23:57 ============================================================================ +15:23:57 Sending to : +15:23:57 ============================================================================ +15:23:57 + + +waiting on router queue for slot.... +15:23:57 ============================================================================ +15:23:57 Slot Id : <202> +15:23:57 Transaction Type : REQUEST +15:23:57 Received From : +15:23:57 ============================================================================ +15:23:57 FNo. Len. Field Value +15:23:57 ============================================================================ +15:23:57 [ 1] [ 4] [0800] +15:23:57 [ 7] [ 10] [0320223545] +15:23:57 [ 11] [ 6] [153545] +15:23:57 [ 37] [ 12] [57915153545] +15:23:57 [ 70] [ 3] [301] +15:23:57 ============================================================================ +15:23:57 + + +waiting on router queue for slot.... +15:23:57 Sending to : +15:23:57 ============================================================================ +15:23:57 ============================================================================ +15:23:57 Slot Id : <202> +15:23:57 Transaction Type : RESPONSE +15:23:57 Received From : +15:23:57 ============================================================================ +15:23:57 FNo. Len. Field Value +15:23:57 ============================================================================ +15:23:57 [ 1] [ 4] [0810] +15:23:57 [ 7] [ 10] [0320223545] +15:23:57 [ 11] [ 6] [153545] +15:23:57 [ 37] [ 12] [579151535450] +15:23:57 [ 39] [ 2] [00] +15:23:57 [ 70] [ 3] [810] +15:23:57 ============================================================================ +15:23:57 Calculate Source COMM Id = 6 +15:23:57 ============================================================================ +15:23:57 + + +waiting on router queue for slot.... +15:23:57 ============================================================================ +15:23:57 Slot Id : <176> +15:23:57 Transaction Type : RESPONSE +15:23:57 Received From : +15:23:57 ============================================================================ +15:23:57 FNo. Len. Field Value +15:23:57 ============================================================================ +15:23:57 [ 1] [ 4] [0210] +15:23:57 [ 2] [ 16] [6688990040112748] +15:23:57 [ 3] [ 6] [011000] +15:23:57 [ 4] [ 12] [000030000000] +15:23:57 [ 11] [ 6] [783049] +15:23:57 [ 12] [ 6] [152350] +15:23:57 [ 15] [ 4] [0320] +15:23:57 [ 18] [ 4] [6011] +15:23:57 [ 32] [ 6] [621354] +15:23:57 [ 35] [ 37] [6688990040112748=98031261513567900000] +15:23:57 [ 37] [ 12] [507903345058] +15:23:57 [ 38] [ 6] [281860] +15:23:57 [ 39] [ 2] [00] +15:23:57 [ 41] [ 8] [13001400] +15:23:57 [ 49] [ 3] [418] +15:23:57 [ 54] [ 20] [1002418C000303471612] +15:23:57 ============================================================================ +15:23:57 Calculate Source COMM Id = 0 +15:23:57 ============================================================================ +15:23:57 + + +waiting on router queue for slot.... +15:23:59 ============================================================================ +15:23:59 Slot Id : <182> +15:23:59 Transaction Type : RESPONSE +15:23:59 Received From : +15:23:59 ============================================================================ +15:23:59 FNo. Len. Field Value +15:23:59 ============================================================================ +15:23:59 [ 1] [ 4] [0210] +15:23:59 [ 2] [ 16] [1888880000030684] +15:23:59 [ 3] [ 6] [011000] +15:23:59 [ 4] [ 12] [000010000000] +15:23:59 [ 7] [ 10] [0320152344] +15:23:59 [ 11] [ 6] [783023] +15:23:59 [ 12] [ 6] [152344] +15:23:59 [ 13] [ 4] [0320] +15:23:59 [ 15] [ 4] [0320] +15:23:59 [ 18] [ 4] [6011] +15:23:59 [ 19] [ 3] [418] +15:23:59 [ 32] [ 6] [621354] +15:23:59 [ 37] [ 12] [507904755374] +15:23:59 [ 38] [ 6] [981748] +15:23:59 [ 39] [ 2] [00] +15:23:59 [ 41] [ 8] [07001100] +15:23:59 [ 49] [ 3] [418] +15:23:59 [ 54] [ 0] [] +15:23:59 ============================================================================ +15:23:59 Calculate Source COMM Id = 0 +15:23:59 ============================================================================ +15:23:59 + + +waiting on router queue for slot.... +15:24:04 ============================================================================ +15:24:04 Slot Id : <187> +15:24:04 Transaction Type : REQUEST +15:24:04 Received From : +15:24:04 ============================================================================ +15:24:04 FNo. Len. Field Value +15:24:04 ============================================================================ +15:24:04 [ 1] [ 4] [0800] +15:24:04 [ 7] [ 10] [0320082311] +15:24:04 [ 11] [ 6] [156999] +15:24:04 [ 70] [ 3] [301] +15:24:04 ============================================================================ +15:24:04 + + +waiting on router queue for slot.... +15:24:04 Sending to : +15:24:04 ============================================================================ +15:24:04 ============================================================================ +15:24:04 Slot Id : <187> +15:24:04 Transaction Type : RESPONSE +15:24:04 Received From : +15:24:04 ============================================================================ +15:24:04 FNo. Len. Field Value +15:24:04 ============================================================================ +15:24:04 [ 1] [ 4] [0810] +15:24:04 [ 7] [ 10] [0320082311] +15:24:04 [ 11] [ 6] [156999] +15:24:04 [ 39] [ 2] [00] +15:24:04 [ 70] [ 3] [301] +15:24:04 ============================================================================ +15:24:04 Calculate Source COMM Id = 2 +15:24:04 ============================================================================ +15:24:04 + + +waiting on router queue for slot.... +15:24:08 ============================================================================ +15:24:08 Slot Id : <160> +15:24:08 Transaction Type : REQUEST +15:24:08 Received From : +15:24:08 ============================================================================ +15:24:08 FNo. Len. Field Value +15:24:08 ============================================================================ +15:24:08 [ 1] [ 4] [0200] +15:24:08 [ 2] [ 16] [6688990107700609] +15:24:08 [ 3] [ 6] [301000] +15:24:08 [ 4] [ 12] [000000000000] +15:24:08 [ 7] [ 10] [0320152403] +15:24:08 [ 11] [ 6] [783107] +15:24:08 [ 12] [ 6] [152403] +15:24:08 [ 13] [ 4] [0320] +15:24:08 [ 15] [ 4] [0320] +15:24:08 [ 18] [ 4] [6011] +15:24:08 [ 22] [ 3] [900] +15:24:08 [ 25] [ 2] [02] +15:24:08 [ 28] [ 9] [D00000000] +15:24:08 [ 32] [ 6] [621354] +15:24:08 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:24:08 [ 37] [ 12] [507902812900] +15:24:08 [ 41] [ 8] [01007500] +15:24:08 [ 42] [ 15] [NATIVE ] +15:24:08 [ 43] [ 40] [M-Point Sisaket Sisattanak LAO] +15:24:08 [ 49] [ 3] [418] +15:24:08 [ 52] [ 16] [9A2807BB2C6D1906] +15:24:08 ============================================================================ +15:24:08 + + +waiting on router queue for slot.... +15:24:08 Sending to : +15:24:08 ============================================================================ +15:24:08 Sending to : +15:24:08 ============================================================================ +15:24:08 ============================================================================ +15:24:08 Slot Id : <160> +15:24:08 Transaction Type : REQUEST +15:24:08 Received From : +15:24:08 ============================================================================ +15:24:08 FNo. Len. Field Value +15:24:08 ============================================================================ +15:24:08 [ 1] [ 4] [0200] +15:24:08 [ 2] [ 16] [6688990107700609] +15:24:08 [ 3] [ 6] [301000] +15:24:08 [ 4] [ 12] [000000000000] +15:24:08 [ 7] [ 10] [0320152403] +15:24:08 [ 11] [ 6] [783107] +15:24:08 [ 12] [ 6] [152403] +15:24:08 [ 13] [ 4] [0320] +15:24:08 [ 15] [ 4] [0320] +15:24:08 [ 18] [ 4] [6011] +15:24:08 [ 22] [ 3] [900] +15:24:08 [ 25] [ 2] [02] +15:24:08 [ 28] [ 9] [D00000000] +15:24:08 [ 32] [ 6] [621354] +15:24:08 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:24:08 [ 37] [ 12] [507902812900] +15:24:08 [ 41] [ 8] [01007500] +15:24:08 [ 42] [ 15] [NATIVE ] +15:24:08 [ 43] [ 40] [M-Point Sisaket Sisattanak LAO] +15:24:08 [ 49] [ 3] [418] +15:24:08 [ 52] [ 16] [9A2807BB2C6D1906] +15:24:08 ============================================================================ +15:24:08 + + +waiting on router queue for slot.... +15:24:08 Sending to : +15:24:08 ============================================================================ +15:24:08 ============================================================================ +15:24:08 Slot Id : <160> +15:24:08 Transaction Type : REQUEST +15:24:08 Received From : +15:24:08 ============================================================================ +15:24:08 FNo. Len. Field Value +15:24:08 ============================================================================ +15:24:08 [ 1] [ 4] [0200] +15:24:08 [ 2] [ 16] [6688990107700609] +15:24:08 [ 3] [ 6] [301000] +15:24:08 [ 4] [ 12] [000000000000] +15:24:08 [ 7] [ 10] [0320152403] +15:24:08 [ 11] [ 6] [783107] +15:24:08 [ 12] [ 6] [152403] +15:24:08 [ 13] [ 4] [0320] +15:24:08 [ 15] [ 4] [0320] +15:24:08 [ 18] [ 4] [6011] +15:24:08 [ 22] [ 3] [900] +15:24:08 [ 25] [ 2] [02] +15:24:08 [ 28] [ 9] [D00000000] +15:24:08 [ 32] [ 6] [621354] +15:24:08 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:24:08 [ 37] [ 12] [507902812900] +15:24:08 [ 41] [ 8] [01007500] +15:24:08 [ 42] [ 15] [NATIVE ] +15:24:08 [ 43] [ 40] [M-Point Sisaket Sisattanak LAO] +15:24:08 [ 49] [ 3] [418] +15:24:08 [ 52] [ 16] [161CD0DDB715EB81] +15:24:08 ============================================================================ +15:24:08 + + +waiting on router queue for slot.... +15:24:08 Sending to : <4> +15:24:08 ============================================================================ +15:24:09 ============================================================================ +15:24:09 Slot Id : <160> +15:24:09 Transaction Type : RESPONSE +15:24:09 Received From : +15:24:09 ============================================================================ +15:24:09 FNo. Len. Field Value +15:24:09 ============================================================================ +15:24:09 [ 1] [ 4] [0210] +15:24:09 [ 2] [ 16] [6688990107700609] +15:24:09 [ 3] [ 6] [301000] +15:24:09 [ 4] [ 12] [000000000000] +15:24:09 [ 11] [ 6] [783107] +15:24:09 [ 12] [ 6] [152403] +15:24:09 [ 15] [ 4] [0320] +15:24:09 [ 18] [ 4] [6011] +15:24:09 [ 32] [ 6] [621354] +15:24:09 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:24:09 [ 37] [ 12] [507902812900] +15:24:09 [ 38] [ 6] [973564] +15:24:09 [ 39] [ 2] [00] +15:24:09 [ 41] [ 8] [01007500] +15:24:09 [ 49] [ 3] [418] +15:24:09 [ 54] [ 20] [1002418C000002343237] +15:24:09 ============================================================================ +15:24:09 Sending to : +15:24:09 ============================================================================ +15:24:09 + + +waiting on router queue for slot.... +15:24:11 ============================================================================ +15:24:11 Slot Id : <160> +15:24:11 Transaction Type : RESPONSE +15:24:11 Received From : +15:24:11 ============================================================================ +15:24:11 FNo. Len. Field Value +15:24:11 ============================================================================ +15:24:11 [ 1] [ 4] [0210] +15:24:11 [ 2] [ 16] [6688990107700609] +15:24:11 [ 3] [ 6] [301000] +15:24:11 [ 4] [ 12] [000000000000] +15:24:11 [ 11] [ 6] [783107] +15:24:11 [ 12] [ 6] [152403] +15:24:11 [ 15] [ 4] [0320] +15:24:11 [ 18] [ 4] [6011] +15:24:11 [ 32] [ 6] [621354] +15:24:11 [ 35] [ 37] [6688990107700609=44041231060968100000] +15:24:11 [ 37] [ 12] [507902812900] +15:24:11 [ 38] [ 6] [973564] +15:24:11 [ 39] [ 2] [00] +15:24:11 [ 41] [ 8] [01007500] +15:24:11 [ 49] [ 3] [418] +15:24:11 [ 54] [ 20] [1002418C000002343237] +15:24:11 ============================================================================ +15:24:11 Calculate Source COMM Id = 0 +15:24:11 ============================================================================ +15:24:11 + + +waiting on router queue for slot.... +15:24:11 ============================================================================ +15:24:11 Slot Id : <144> +15:24:11 Transaction Type : REQUEST +15:24:11 Received From : +15:24:11 ============================================================================ +15:24:11 FNo. Len. Field Value +15:24:11 ============================================================================ +15:24:11 [ 1] [ 4] [0200] +15:24:11 [ 2] [ 16] [6213544001564316] +15:24:11 [ 3] [ 6] [301000] +15:24:11 [ 4] [ 12] [000000000000] +15:24:11 [ 7] [ 10] [0320152202] +15:24:11 [ 11] [ 6] [949951] +15:24:11 [ 12] [ 6] [152202] +15:24:11 [ 13] [ 4] [0320] +15:24:11 [ 15] [ 4] [0320] +15:24:11 [ 18] [ 4] [6011] +15:24:11 [ 19] [ 3] [418] +15:24:11 [ 22] [ 3] [021] +15:24:11 [ 25] [ 2] [01] +15:24:11 [ 28] [ 9] [D00000000] +15:24:11 [ 32] [ 6] [668899] +15:24:11 [ 35] [ 32] [6213544001564316=491212016431278] +15:24:11 [ 37] [ 12] [507902531951] +15:24:11 [ 41] [ 8] [03020033] +15:24:11 [ 42] [ 15] [APT ] +15:24:11 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +15:24:11 [ 49] [ 3] [418] +15:24:11 [ 52] [ 16] [DD555A3EC030575C] +15:24:11 ============================================================================ +15:24:11 + + +waiting on router queue for slot.... +15:24:11 Sending to : +15:24:11 ============================================================================ +15:24:11 Sending to : +15:24:11 ============================================================================ +15:24:12 ============================================================================ +15:24:12 Slot Id : <144> +15:24:12 Transaction Type : REQUEST +15:24:12 Received From : +15:24:12 ============================================================================ +15:24:12 FNo. Len. Field Value +15:24:12 ============================================================================ +15:24:12 [ 1] [ 4] [0200] +15:24:12 [ 2] [ 16] [6213544001564316] +15:24:12 [ 3] [ 6] [301000] +15:24:12 [ 4] [ 12] [000000000000] +15:24:12 [ 7] [ 10] [0320152202] +15:24:12 [ 11] [ 6] [949951] +15:24:12 [ 12] [ 6] [152202] +15:24:12 [ 13] [ 4] [0320] +15:24:12 [ 15] [ 4] [0320] +15:24:12 [ 18] [ 4] [6011] +15:24:12 [ 19] [ 3] [418] +15:24:12 [ 22] [ 3] [021] +15:24:12 [ 25] [ 2] [01] +15:24:12 [ 28] [ 9] [D00000000] +15:24:12 [ 32] [ 6] [668899] +15:24:12 [ 35] [ 32] [6213544001564316=491212016431278] +15:24:12 [ 37] [ 12] [507902531951] +15:24:12 [ 41] [ 8] [03020033] +15:24:12 [ 42] [ 15] [APT ] +15:24:12 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +15:24:12 [ 49] [ 3] [418] +15:24:12 [ 52] [ 16] [DD555A3EC030575C] +15:24:12 ============================================================================ +15:24:12 + + +waiting on router queue for slot.... +15:24:12 Sending to : +15:24:12 ============================================================================ +15:24:12 ============================================================================ +15:24:12 Slot Id : <144> +15:24:12 Transaction Type : REQUEST +15:24:12 Received From : +15:24:12 ============================================================================ +15:24:12 FNo. Len. Field Value +15:24:12 ============================================================================ +15:24:12 [ 1] [ 4] [0200] +15:24:12 [ 2] [ 16] [6213544001564316] +15:24:12 [ 3] [ 6] [301000] +15:24:12 [ 4] [ 12] [000000000000] +15:24:12 [ 7] [ 10] [0320152202] +15:24:12 [ 11] [ 6] [949951] +15:24:12 [ 12] [ 6] [152202] +15:24:12 [ 13] [ 4] [0320] +15:24:12 [ 15] [ 4] [0320] +15:24:12 [ 18] [ 4] [6011] +15:24:12 [ 19] [ 3] [418] +15:24:12 [ 22] [ 3] [021] +15:24:12 [ 25] [ 2] [01] +15:24:12 [ 28] [ 9] [D00000000] +15:24:12 [ 32] [ 6] [668899] +15:24:12 [ 35] [ 32] [6213544001564316=491212016431278] +15:24:12 [ 37] [ 12] [507902531951] +15:24:12 [ 41] [ 8] [03020033] +15:24:12 [ 42] [ 15] [APT ] +15:24:12 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +15:24:12 [ 49] [ 3] [418] +15:24:12 [ 52] [ 16] [2803AC539A47F710] +15:24:12 ============================================================================ +15:24:12 + + +waiting on router queue for slot.... +15:24:12 Sending to : <0> +15:24:12 ============================================================================ +15:24:12 ============================================================================ +15:24:12 Slot Id : <144> +15:24:12 Transaction Type : RESPONSE +15:24:12 Received From : +15:24:12 ============================================================================ +15:24:12 FNo. Len. Field Value +15:24:12 ============================================================================ +15:24:12 [ 1] [ 4] [0210] +15:24:12 [ 2] [ 16] [6213544001564316] +15:24:12 [ 3] [ 6] [301000] +15:24:12 [ 4] [ 12] [000000000000] +15:24:12 [ 7] [ 10] [0320152202] +15:24:12 [ 11] [ 6] [949951] +15:24:12 [ 12] [ 6] [152202] +15:24:12 [ 13] [ 4] [0320] +15:24:12 [ 15] [ 4] [0320] +15:24:12 [ 18] [ 4] [6011] +15:24:12 [ 19] [ 3] [418] +15:24:12 [ 32] [ 6] [668899] +15:24:12 [ 35] [ 32] [6213544001564316=491212016431278] +15:24:12 [ 37] [ 12] [507902531951] +15:24:12 [ 38] [ 6] [599815] +15:24:12 [ 39] [ 2] [00] +15:24:12 [ 41] [ 8] [03020033] +15:24:12 [ 49] [ 3] [418] +15:24:12 [ 54] [ 40] [1001418C0040076946371002418C004007694637] +15:24:12 ============================================================================ +15:24:12 Sending to : +15:24:12 ============================================================================ +15:24:12 + + +waiting on router queue for slot.... +15:24:13 ============================================================================ +15:24:13 Slot Id : <144> +15:24:13 Transaction Type : RESPONSE +15:24:13 Received From : +15:24:13 ============================================================================ +15:24:13 FNo. Len. Field Value +15:24:13 ============================================================================ +15:24:13 [ 1] [ 4] [0210] +15:24:13 [ 2] [ 16] [6213544001564316] +15:24:13 [ 3] [ 6] [301000] +15:24:13 [ 4] [ 12] [000000000000] +15:24:13 [ 7] [ 10] [0320152202] +15:24:13 [ 11] [ 6] [949951] +15:24:13 [ 12] [ 6] [152202] +15:24:13 [ 13] [ 4] [0320] +15:24:13 [ 15] [ 4] [0320] +15:24:13 [ 18] [ 4] [6011] +15:24:13 [ 19] [ 3] [418] +15:24:13 [ 32] [ 6] [668899] +15:24:13 [ 35] [ 32] [6213544001564316=491212016431278] +15:24:13 [ 37] [ 12] [507902531951] +15:24:13 [ 38] [ 6] [599815] +15:24:13 [ 39] [ 2] [00] +15:24:13 [ 41] [ 8] [03020033] +15:24:13 [ 49] [ 3] [418] +15:24:13 [ 54] [ 40] [1001418C0040076946371002418C004007694637] +15:24:13 ============================================================================ +15:24:13 Calculate Source COMM Id = 4 +15:24:13 ============================================================================ +15:24:13 + + +waiting on router queue for slot.... +15:24:20 ============================================================================ +15:24:20 Slot Id : <156> +15:24:20 Transaction Type : REQUEST +15:24:20 Received From : +15:24:20 ============================================================================ +15:24:20 FNo. Len. Field Value +15:24:20 ============================================================================ +15:24:20 [ 1] [ 4] [0800] +15:24:20 [ 7] [ 10] [0320082327] +15:24:20 [ 11] [ 6] [157000] +15:24:20 [ 70] [ 3] [301] +15:24:20 ============================================================================ +15:24:20 + + +waiting on router queue for slot.... +15:24:20 Sending to : +15:24:20 ============================================================================ +15:24:20 ============================================================================ +15:24:20 Slot Id : <156> +15:24:20 Transaction Type : RESPONSE +15:24:20 Received From : +15:24:20 ============================================================================ +15:24:20 FNo. Len. Field Value +15:24:20 ============================================================================ +15:24:20 [ 1] [ 4] [0810] +15:24:20 [ 7] [ 10] [0320082327] +15:24:20 [ 11] [ 6] [157000] +15:24:20 [ 39] [ 2] [00] +15:24:20 [ 70] [ 3] [301] +15:24:20 ============================================================================ +15:24:20 Calculate Source COMM Id = 2 +15:24:20 ============================================================================ +15:24:20 + + +waiting on router queue for slot.... +15:24:27 ============================================================================ +15:24:27 Slot Id : <163> +15:24:27 Transaction Type : REQUEST +15:24:27 Received From : +15:24:27 ============================================================================ +15:24:27 FNo. Len. Field Value +15:24:27 ============================================================================ +15:24:27 [ 1] [ 4] [0800] +15:24:27 [ 2] [ 5] [02531] +15:24:27 [ 3] [ 6] [579158] +15:24:27 [ 7] [ 10] [0320082427] +15:24:27 [ 11] [ 6] [807306] +15:24:27 [ 15] [ 10] [0320082427] +15:24:27 [ 37] [ 11] [57915807306] +15:24:27 [ 70] [ 3] [001] +15:24:27 ============================================================================ +15:24:27 + + +waiting on router queue for slot.... +15:24:27 ============================================================================ +15:24:27 Slot Id : <163> +15:24:27 Transaction Type : RESPONSE +15:24:27 Received From : +15:24:27 ============================================================================ +15:24:27 FNo. Len. Field Value +15:24:27 ============================================================================ +15:24:27 [ 1] [ 4] [0810] +15:24:27 [ 7] [ 10] [0320082427] +15:24:27 [ 11] [ 6] [807306] +15:24:27 [ 15] [ 4] [0320] +15:24:27 [ 37] [ 12] [57915807306] +15:24:27 [ 39] [ 2] [00] +15:24:27 [ 70] [ 3] [001] +15:24:27 ============================================================================ +15:24:27 Sending to : +15:24:27 ============================================================================ +15:24:27 + + +waiting on router queue for slot.... +15:24:31 ============================================================================ +15:24:31 Slot Id : <203> +15:24:31 Transaction Type : REQUEST +15:24:31 Received From : +15:24:31 ============================================================================ +15:24:31 FNo. Len. Field Value +15:24:31 ============================================================================ +15:24:31 [ 1] [ 4] [0800] +15:24:31 [ 7] [ 10] [0320082338] +15:24:31 [ 11] [ 6] [157001] +15:24:31 [ 70] [ 3] [301] +15:24:31 ============================================================================ +15:24:31 + + +waiting on router queue for slot.... +15:24:31 Sending to : +15:24:31 ============================================================================ +15:24:31 ============================================================================ +15:24:31 Slot Id : <203> +15:24:31 Transaction Type : RESPONSE +15:24:31 Received From : +15:24:31 ============================================================================ +15:24:31 FNo. Len. Field Value +15:24:31 ============================================================================ +15:24:31 [ 1] [ 4] [0810] +15:24:31 [ 7] [ 10] [0320082338] +15:24:31 [ 11] [ 6] [157001] +15:24:31 [ 39] [ 2] [00] +15:24:31 [ 70] [ 3] [301] +15:24:31 ============================================================================ +15:24:31 Calculate Source COMM Id = 2 +15:24:31 ============================================================================ +15:24:31 + + +waiting on router queue for slot.... +15:24:31 ============================================================================ +15:24:31 Slot Id : <179> +15:24:31 Transaction Type : REQUEST +15:24:31 Received From : +15:24:31 ============================================================================ +15:24:31 FNo. Len. Field Value +15:24:31 ============================================================================ +15:24:31 [ 1] [ 4] [0800] +15:24:31 [ 7] [ 10] [0320082426] +15:24:31 [ 11] [ 6] [013112] +15:24:31 [ 37] [ 12] [507915013112] +15:24:31 [ 70] [ 3] [001] +15:24:31 ============================================================================ +15:24:31 + + +waiting on router queue for slot.... +15:24:31 Sending to : +15:24:31 ============================================================================ +15:24:31 ============================================================================ +15:24:31 Slot Id : <179> +15:24:31 Transaction Type : RESPONSE +15:24:31 Received From : +15:24:31 ============================================================================ +15:24:31 FNo. Len. Field Value +15:24:31 ============================================================================ +15:24:31 [ 1] [ 4] [0810] +15:24:31 [ 7] [ 10] [0320082426] +15:24:31 [ 11] [ 6] [013112] +15:24:31 [ 37] [ 12] [507915013112] +15:24:31 [ 39] [ 2] [00] +15:24:31 [ 70] [ 3] [001] +15:24:31 ============================================================================ +15:24:31 Calculate Source COMM Id = 0 +15:24:31 ============================================================================ +15:24:31 + + +waiting on router queue for slot.... +15:24:47 ============================================================================ +15:24:47 Slot Id : <135> +15:24:47 Transaction Type : REQUEST +15:24:47 Received From : +15:24:47 ============================================================================ +15:24:47 FNo. Len. Field Value +15:24:47 ============================================================================ +15:24:47 [ 1] [ 4] [0200] +15:24:47 [ 2] [ 16] [6688990103268106] +15:24:47 [ 3] [ 6] [010000] +15:24:47 [ 4] [ 12] [000100000000] +15:24:47 [ 7] [ 10] [0320082353] +15:24:47 [ 11] [ 6] [269999] +15:24:47 [ 12] [ 6] [152353] +15:24:47 [ 13] [ 4] [0320] +15:24:47 [ 14] [ 4] [4212] +15:24:47 [ 15] [ 4] [0320] +15:24:47 [ 18] [ 4] [6011] +15:24:47 [ 19] [ 3] [418] +15:24:47 [ 22] [ 3] [021] +15:24:47 [ 25] [ 2] [01] +15:24:47 [ 28] [ 9] [D00002000] +15:24:47 [ 32] [ 6] [180893] +15:24:47 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:24:47 [ 37] [ 12] [507908269999] +15:24:47 [ 41] [ 8] [0263UDXB] +15:24:47 [ 42] [ 15] [999999 ] +15:24:47 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:24:47 [ 49] [ 3] [418] +15:24:47 [ 52] [ 16] [DEE7B0EE55C1B641] +15:24:47 ============================================================================ +15:24:47 + + +waiting on router queue for slot.... +15:24:47 Sending to : +15:24:47 ============================================================================ +15:24:47 Sending to : +15:24:47 ============================================================================ +15:24:47 ============================================================================ +15:24:47 Slot Id : <135> +15:24:47 Transaction Type : REQUEST +15:24:47 Received From : +15:24:47 ============================================================================ +15:24:47 FNo. Len. Field Value +15:24:47 ============================================================================ +15:24:47 [ 1] [ 4] [0200] +15:24:47 [ 2] [ 16] [6688990103268106] +15:24:47 [ 3] [ 6] [010000] +15:24:47 [ 4] [ 12] [000100000000] +15:24:47 [ 7] [ 10] [0320082353] +15:24:47 [ 11] [ 6] [269999] +15:24:47 [ 12] [ 6] [152353] +15:24:47 [ 13] [ 4] [0320] +15:24:47 [ 14] [ 4] [4212] +15:24:47 [ 15] [ 4] [0320] +15:24:47 [ 18] [ 4] [6011] +15:24:47 [ 19] [ 3] [418] +15:24:47 [ 22] [ 3] [021] +15:24:47 [ 25] [ 2] [01] +15:24:47 [ 28] [ 9] [D00002000] +15:24:47 [ 32] [ 6] [180893] +15:24:47 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:24:47 [ 37] [ 12] [507908269999] +15:24:47 [ 41] [ 8] [0263UDXB] +15:24:47 [ 42] [ 15] [999999 ] +15:24:47 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:24:47 [ 49] [ 3] [418] +15:24:47 [ 52] [ 16] [DEE7B0EE55C1B641] +15:24:47 ============================================================================ +15:24:47 + + +waiting on router queue for slot.... +15:24:47 Sending to : +15:24:47 ============================================================================ +15:24:47 ============================================================================ +15:24:47 Slot Id : <135> +15:24:47 Transaction Type : REQUEST +15:24:47 Received From : +15:24:47 ============================================================================ +15:24:47 FNo. Len. Field Value +15:24:47 ============================================================================ +15:24:47 [ 1] [ 4] [0200] +15:24:47 [ 2] [ 16] [6688990103268106] +15:24:47 [ 3] [ 6] [010000] +15:24:47 [ 4] [ 12] [000100000000] +15:24:47 [ 7] [ 10] [0320082353] +15:24:47 [ 11] [ 6] [269999] +15:24:47 [ 12] [ 6] [152353] +15:24:47 [ 13] [ 4] [0320] +15:24:47 [ 14] [ 4] [4212] +15:24:47 [ 15] [ 4] [0320] +15:24:47 [ 18] [ 4] [6011] +15:24:47 [ 19] [ 3] [418] +15:24:47 [ 22] [ 3] [021] +15:24:47 [ 25] [ 2] [01] +15:24:47 [ 28] [ 9] [D00002000] +15:24:47 [ 32] [ 6] [180893] +15:24:47 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:24:47 [ 37] [ 12] [507908269999] +15:24:47 [ 41] [ 8] [0263UDXB] +15:24:47 [ 42] [ 15] [999999 ] +15:24:47 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:24:47 [ 49] [ 3] [418] +15:24:47 [ 52] [ 16] [D956652F186B87D5] +15:24:47 ============================================================================ +15:24:47 + + +waiting on router queue for slot.... +15:24:47 Sending to : <0> +15:24:47 ============================================================================ +15:24:47 ============================================================================ +15:24:47 Slot Id : <135> +15:24:47 Transaction Type : RESPONSE +15:24:47 Received From : +15:24:47 ============================================================================ +15:24:47 FNo. Len. Field Value +15:24:47 ============================================================================ +15:24:47 [ 1] [ 4] [0210] +15:24:47 [ 2] [ 16] [6688990103268106] +15:24:47 [ 3] [ 6] [010000] +15:24:47 [ 4] [ 12] [000100000000] +15:24:47 [ 7] [ 10] [0320082353] +15:24:47 [ 11] [ 6] [269999] +15:24:47 [ 12] [ 6] [152353] +15:24:47 [ 13] [ 4] [0320] +15:24:47 [ 15] [ 4] [0320] +15:24:47 [ 18] [ 4] [6011] +15:24:47 [ 19] [ 3] [418] +15:24:47 [ 22] [ 3] [021] +15:24:47 [ 32] [ 6] [180893] +15:24:47 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:24:47 [ 37] [ 12] [507908269999] +15:24:47 [ 39] [ 2] [14] +15:24:47 [ 41] [ 8] [0263UDXB] +15:24:47 [ 49] [ 3] [418] +15:24:47 ============================================================================ +15:24:47 Sending to : +15:24:47 ============================================================================ +15:24:47 + + +waiting on router queue for slot.... +15:24:48 ============================================================================ +15:24:48 Slot Id : <204> +15:24:48 Transaction Type : REQUEST +15:24:48 Received From : +15:24:48 ============================================================================ +15:24:48 FNo. Len. Field Value +15:24:48 ============================================================================ +15:24:48 [ 1] [ 4] [0800] +15:24:48 [ 7] [ 10] [0320082355] +15:24:48 [ 11] [ 6] [157002] +15:24:48 [ 70] [ 3] [301] +15:24:48 ============================================================================ +15:24:48 + + +waiting on router queue for slot.... +15:24:48 Sending to : +15:24:48 ============================================================================ +15:24:48 ============================================================================ +15:24:48 Slot Id : <204> +15:24:48 Transaction Type : RESPONSE +15:24:48 Received From : +15:24:48 ============================================================================ +15:24:48 FNo. Len. Field Value +15:24:48 ============================================================================ +15:24:48 [ 1] [ 4] [0810] +15:24:48 [ 7] [ 10] [0320082355] +15:24:48 [ 11] [ 6] [157002] +15:24:48 [ 39] [ 2] [00] +15:24:48 [ 70] [ 3] [301] +15:24:48 ============================================================================ +15:24:48 Calculate Source COMM Id = 2 +15:24:48 ============================================================================ +15:24:48 + + +waiting on router queue for slot.... +15:24:48 ============================================================================ +15:24:48 Slot Id : <135> +15:24:48 Transaction Type : RESPONSE +15:24:48 Received From : +15:24:48 ============================================================================ +15:24:48 FNo. Len. Field Value +15:24:48 ============================================================================ +15:24:48 [ 1] [ 4] [0210] +15:24:48 [ 2] [ 16] [6688990103268106] +15:24:48 [ 3] [ 6] [010000] +15:24:48 [ 4] [ 12] [000100000000] +15:24:48 [ 7] [ 10] [0320082353] +15:24:48 [ 11] [ 6] [269999] +15:24:48 [ 12] [ 6] [152353] +15:24:48 [ 13] [ 4] [0320] +15:24:48 [ 15] [ 4] [0320] +15:24:48 [ 18] [ 4] [6011] +15:24:48 [ 19] [ 3] [418] +15:24:48 [ 22] [ 3] [021] +15:24:48 [ 32] [ 6] [180893] +15:24:48 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:24:48 [ 37] [ 12] [507908269999] +15:24:48 [ 39] [ 2] [14] +15:24:48 [ 41] [ 8] [0263UDXB] +15:24:48 [ 49] [ 3] [418] +15:24:48 ============================================================================ +15:24:48 Calculate Source COMM Id = 2 +15:24:48 ============================================================================ +15:24:48 + + +waiting on router queue for slot.... +15:24:50 ============================================================================ +15:24:50 Slot Id : <152> +15:24:50 Transaction Type : REQUEST +15:24:50 Received From : +15:24:50 ============================================================================ +15:24:50 FNo. Len. Field Value +15:24:50 ============================================================================ +15:24:50 [ 1] [ 4] [0200] +15:24:50 [ 2] [ 16] [1808930600045587] +15:24:50 [ 3] [ 6] [011000] +15:24:50 [ 4] [ 12] [000020000000] +15:24:50 [ 7] [ 10] [0320152446] +15:24:50 [ 11] [ 6] [783282] +15:24:50 [ 12] [ 6] [152446] +15:24:50 [ 13] [ 4] [0320] +15:24:50 [ 15] [ 4] [0320] +15:24:50 [ 18] [ 4] [6011] +15:24:50 [ 22] [ 3] [900] +15:24:50 [ 25] [ 2] [02] +15:24:50 [ 28] [ 9] [D00002000] +15:24:50 [ 32] [ 6] [621354] +15:24:50 [ 35] [ 27] [1808930600045587=1803500781] +15:24:50 [ 37] [ 12] [507904273398] +15:24:50 [ 41] [ 8] [03002600] +15:24:50 [ 42] [ 15] [NATIVE ] +15:24:50 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +15:24:50 [ 49] [ 3] [418] +15:24:50 [ 52] [ 16] [7FEDBFFF8ECAE30E] +15:24:50 ============================================================================ +15:24:50 + + +waiting on router queue for slot.... +15:24:50 Sending to : +15:24:50 ============================================================================ +15:24:50 Sending to : +15:24:50 ============================================================================ +15:24:51 ============================================================================ +15:24:51 Slot Id : <152> +15:24:51 Transaction Type : REQUEST +15:24:51 Received From : +15:24:51 ============================================================================ +15:24:51 FNo. Len. Field Value +15:24:51 ============================================================================ +15:24:51 [ 1] [ 4] [0200] +15:24:51 [ 2] [ 16] [1808930600045587] +15:24:51 [ 3] [ 6] [011000] +15:24:51 [ 4] [ 12] [000020000000] +15:24:51 [ 7] [ 10] [0320152446] +15:24:51 [ 11] [ 6] [783282] +15:24:51 [ 12] [ 6] [152446] +15:24:51 [ 13] [ 4] [0320] +15:24:51 [ 15] [ 4] [0320] +15:24:51 [ 18] [ 4] [6011] +15:24:51 [ 22] [ 3] [900] +15:24:51 [ 25] [ 2] [02] +15:24:51 [ 28] [ 9] [D00002000] +15:24:51 [ 32] [ 6] [621354] +15:24:51 [ 35] [ 27] [1808930600045587=1803500781] +15:24:51 [ 37] [ 12] [507904273398] +15:24:51 [ 41] [ 8] [03002600] +15:24:51 [ 42] [ 15] [NATIVE ] +15:24:51 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +15:24:51 [ 49] [ 3] [418] +15:24:51 [ 52] [ 16] [7FEDBFFF8ECAE30E] +15:24:51 ============================================================================ +15:24:51 + + +waiting on router queue for slot.... +15:24:51 Sending to : +15:24:51 ============================================================================ +15:24:51 ============================================================================ +15:24:51 Slot Id : <152> +15:24:51 Transaction Type : REQUEST +15:24:51 Received From : +15:24:51 ============================================================================ +15:24:51 FNo. Len. Field Value +15:24:51 ============================================================================ +15:24:51 [ 1] [ 4] [0200] +15:24:51 [ 2] [ 16] [1808930600045587] +15:24:51 [ 3] [ 6] [011000] +15:24:51 [ 4] [ 12] [000020000000] +15:24:51 [ 7] [ 10] [0320152446] +15:24:51 [ 11] [ 6] [783282] +15:24:51 [ 12] [ 6] [152446] +15:24:51 [ 13] [ 4] [0320] +15:24:51 [ 15] [ 4] [0320] +15:24:51 [ 18] [ 4] [6011] +15:24:51 [ 22] [ 3] [900] +15:24:51 [ 25] [ 2] [02] +15:24:51 [ 28] [ 9] [D00002000] +15:24:51 [ 32] [ 6] [621354] +15:24:51 [ 35] [ 27] [1808930600045587=1803500781] +15:24:51 [ 37] [ 12] [507904273398] +15:24:51 [ 41] [ 8] [03002600] +15:24:51 [ 42] [ 15] [NATIVE ] +15:24:51 [ 43] [ 40] [Seno Unit OuthoumphoneLAO] +15:24:51 [ 49] [ 3] [418] +15:24:51 [ 52] [ 16] [B4B1159C95619E88] +15:24:51 ============================================================================ +15:24:51 + + +waiting on router queue for slot.... +15:24:51 Sending to : <2> +15:24:51 ============================================================================ +15:24:51 ============================================================================ +15:24:51 Slot Id : <192> +15:24:51 Transaction Type : REQUEST +15:24:51 Received From : +15:24:51 ============================================================================ +15:24:51 FNo. Len. Field Value +15:24:51 ============================================================================ +15:24:51 [ 1] [ 4] [0200] +15:24:51 [ 2] [ 16] [2206990000130245] +15:24:51 [ 3] [ 6] [011000] +15:24:51 [ 4] [ 12] [000010000000] +15:24:51 [ 7] [ 10] [0320152447] +15:24:51 [ 11] [ 6] [783286] +15:24:51 [ 12] [ 6] [152447] +15:24:51 [ 13] [ 4] [0320] +15:24:51 [ 15] [ 4] [0320] +15:24:51 [ 18] [ 4] [6011] +15:24:51 [ 22] [ 3] [900] +15:24:51 [ 25] [ 2] [02] +15:24:51 [ 28] [ 9] [D00002000] +15:24:51 [ 32] [ 6] [621354] +15:24:51 [ 35] [ 32] [2206990000130245=980412611173902] +15:24:51 [ 37] [ 12] [507902806365] +15:24:51 [ 41] [ 8] [01007400] +15:24:51 [ 42] [ 15] [NATIVE ] +15:24:51 [ 43] [ 40] [M-Point Nong Douang SikhottabongLAO] +15:24:51 [ 49] [ 3] [418] +15:24:51 [ 52] [ 16] [1CF714341F7B1FF0] +15:24:51 ============================================================================ +15:24:51 + + +waiting on router queue for slot.... +15:24:51 Sending to : +15:24:51 ============================================================================ +15:24:51 Sending to : +15:24:51 ============================================================================ +15:24:52 ============================================================================ +15:24:52 Slot Id : <192> +15:24:52 Transaction Type : REQUEST +15:24:52 Received From : +15:24:52 ============================================================================ +15:24:52 FNo. Len. Field Value +15:24:52 ============================================================================ +15:24:52 [ 1] [ 4] [0200] +15:24:52 [ 2] [ 16] [2206990000130245] +15:24:52 [ 3] [ 6] [011000] +15:24:52 [ 4] [ 12] [000010000000] +15:24:52 [ 7] [ 10] [0320152447] +15:24:52 [ 11] [ 6] [783286] +15:24:52 [ 12] [ 6] [152447] +15:24:52 [ 13] [ 4] [0320] +15:24:52 [ 15] [ 4] [0320] +15:24:52 [ 18] [ 4] [6011] +15:24:52 [ 22] [ 3] [900] +15:24:52 [ 25] [ 2] [02] +15:24:52 [ 28] [ 9] [D00002000] +15:24:52 [ 32] [ 6] [621354] +15:24:52 [ 35] [ 32] [2206990000130245=980412611173902] +15:24:52 [ 37] [ 12] [507902806365] +15:24:52 [ 41] [ 8] [01007400] +15:24:52 [ 42] [ 15] [NATIVE ] +15:24:52 [ 43] [ 40] [M-Point Nong Douang SikhottabongLAO] +15:24:52 [ 49] [ 3] [418] +15:24:52 [ 52] [ 16] [1CF714341F7B1FF0] +15:24:52 ============================================================================ +15:24:52 + + +waiting on router queue for slot.... +15:24:52 Sending to : +15:24:52 ============================================================================ +15:24:52 ============================================================================ +15:24:52 Slot Id : <192> +15:24:52 Transaction Type : REQUEST +15:24:52 Received From : +15:24:52 ============================================================================ +15:24:52 FNo. Len. Field Value +15:24:52 ============================================================================ +15:24:52 [ 1] [ 4] [0200] +15:24:52 [ 2] [ 16] [2206990000130245] +15:24:52 [ 3] [ 6] [011000] +15:24:52 [ 4] [ 12] [000010000000] +15:24:52 [ 7] [ 10] [0320152447] +15:24:52 [ 11] [ 6] [783286] +15:24:52 [ 12] [ 6] [152447] +15:24:52 [ 13] [ 4] [0320] +15:24:52 [ 15] [ 4] [0320] +15:24:52 [ 18] [ 4] [6011] +15:24:52 [ 22] [ 3] [900] +15:24:52 [ 25] [ 2] [02] +15:24:52 [ 28] [ 9] [D00002000] +15:24:52 [ 32] [ 6] [621354] +15:24:52 [ 35] [ 32] [2206990000130245=980412611173902] +15:24:52 [ 37] [ 12] [507902806365] +15:24:52 [ 41] [ 8] [01007400] +15:24:52 [ 42] [ 15] [NATIVE ] +15:24:52 [ 43] [ 40] [M-Point Nong Douang SikhottabongLAO] +15:24:52 [ 49] [ 3] [418] +15:24:52 [ 52] [ 16] [BDDE79F68135869F] +15:24:52 ============================================================================ +15:24:52 + + +waiting on router queue for slot.... +15:24:52 Sending to : <1> +15:24:52 ============================================================================ +15:24:54 ============================================================================ +15:24:54 Slot Id : <192> +15:24:54 Transaction Type : RESPONSE +15:24:54 Received From : +15:24:54 ============================================================================ +15:24:54 FNo. Len. Field Value +15:24:54 ============================================================================ +15:24:54 [ 1] [ 4] [0210] +15:24:54 [ 2] [ 16] [2206990000130245] +15:24:54 [ 3] [ 6] [011000] +15:24:54 [ 4] [ 12] [000010000000] +15:24:54 [ 7] [ 10] [0320152447] +15:24:54 [ 11] [ 6] [783286] +15:24:54 [ 12] [ 6] [152447] +15:24:54 [ 13] [ 4] [0320] +15:24:54 [ 15] [ 4] [0320] +15:24:54 [ 18] [ 4] [6011] +15:24:54 [ 32] [ 6] [621354] +15:24:54 [ 35] [ 32] [2206990000130245=980412611173902] +15:24:54 [ 37] [ 12] [507902806365] +15:24:54 [ 38] [ 6] [385267] +15:24:54 [ 39] [ 2] [00] +15:24:54 [ 41] [ 8] [01007400] +15:24:54 [ 49] [ 3] [418] +15:24:54 [ 54] [ 40] [1001418C0000498000001002418C000049800000] +15:24:54 ============================================================================ +15:24:54 Sending to : +15:24:54 ============================================================================ +15:24:54 + + +waiting on router queue for slot.... +15:24:55 ============================================================================ +15:24:55 Slot Id : <191> +15:24:55 Transaction Type : REQUEST +15:24:55 Received From : +15:24:55 ============================================================================ +15:24:55 FNo. Len. Field Value +15:24:55 ============================================================================ +15:24:55 [ 1] [ 4] [0800] +15:24:55 [ 7] [ 10] [0320083242] +15:24:55 [ 11] [ 6] [094436] +15:24:55 [ 37] [ 12] [57915094436] +15:24:55 [ 70] [ 3] [301] +15:24:55 ============================================================================ +15:24:55 + + +waiting on router queue for slot.... +15:24:55 Sending to : +15:24:55 ============================================================================ +15:24:55 ============================================================================ +15:24:55 Slot Id : <191> +15:24:55 Transaction Type : RESPONSE +15:24:55 Received From : +15:24:55 ============================================================================ +15:24:55 FNo. Len. Field Value +15:24:55 ============================================================================ +15:24:55 [ 1] [ 4] [0810] +15:24:55 [ 7] [ 10] [0320083242] +15:24:55 [ 11] [ 6] [094436] +15:24:55 [ 37] [ 12] [579150944360] +15:24:55 [ 39] [ 2] [00] +15:24:55 [ 70] [ 3] [810] +15:24:55 ============================================================================ +15:24:55 Calculate Source COMM Id = 1 +15:24:55 ============================================================================ +15:24:55 + + +waiting on router queue for slot.... +15:24:56 ============================================================================ +15:24:56 Slot Id : <192> +15:24:56 Transaction Type : RESPONSE +15:24:56 Received From : +15:24:56 ============================================================================ +15:24:56 FNo. Len. Field Value +15:24:56 ============================================================================ +15:24:56 [ 1] [ 4] [0210] +15:24:56 [ 2] [ 16] [2206990000130245] +15:24:56 [ 3] [ 6] [011000] +15:24:56 [ 4] [ 12] [000010000000] +15:24:56 [ 7] [ 10] [0320152447] +15:24:56 [ 11] [ 6] [783286] +15:24:56 [ 12] [ 6] [152447] +15:24:56 [ 13] [ 4] [0320] +15:24:56 [ 15] [ 4] [0320] +15:24:56 [ 18] [ 4] [6011] +15:24:56 [ 32] [ 6] [621354] +15:24:56 [ 35] [ 32] [2206990000130245=980412611173902] +15:24:56 [ 37] [ 12] [507902806365] +15:24:56 [ 38] [ 6] [385267] +15:24:56 [ 39] [ 2] [00] +15:24:56 [ 41] [ 8] [01007400] +15:24:56 [ 49] [ 3] [418] +15:24:56 [ 54] [ 40] [1001418C0000498000001002418C000049800000] +15:24:56 ============================================================================ +15:24:56 Calculate Source COMM Id = 0 +15:24:56 ============================================================================ +15:24:56 + + +waiting on router queue for slot.... +15:24:56 ============================================================================ +15:24:56 Slot Id : <152> +15:24:56 Transaction Type : RESPONSE +15:24:56 Received From : +15:24:56 ============================================================================ +15:24:56 FNo. Len. Field Value +15:24:56 ============================================================================ +15:24:56 [ 1] [ 4] [0210] +15:24:56 [ 2] [ 16] [1808930600045587] +15:24:56 [ 3] [ 6] [011000] +15:24:56 [ 4] [ 12] [000020000000] +15:24:56 [ 6] [ 12] [000020000000] +15:24:56 [ 7] [ 10] [0320152446] +15:24:56 [ 11] [ 6] [783282] +15:24:56 [ 12] [ 6] [152446] +15:24:56 [ 13] [ 4] [0320] +15:24:56 [ 18] [ 4] [6011] +15:24:56 [ 19] [ 3] [418] +15:24:56 [ 22] [ 3] [021] +15:24:56 [ 32] [ 6] [621354] +15:24:56 [ 35] [ 27] [1808930600045587=1803500781] +15:24:56 [ 37] [ 12] [507904273398] +15:24:56 [ 38] [ 6] [783282] +15:24:56 [ 39] [ 2] [00] +15:24:56 [ 41] [ 8] [03002600] +15:24:56 [ 49] [ 3] [418] +15:24:56 [ 52] [ 16] [B4B1159C95619E88] +15:24:56 [ 54] [ 20] [1001418C000189350900] +15:24:56 ============================================================================ +15:24:56 Sending to : +15:24:56 ============================================================================ +15:24:56 + + +waiting on router queue for slot.... +15:24:57 ============================================================================ +15:24:57 Slot Id : <152> +15:24:57 Transaction Type : RESPONSE +15:24:57 Received From : +15:24:57 ============================================================================ +15:24:57 FNo. Len. Field Value +15:24:57 ============================================================================ +15:24:57 [ 1] [ 4] [0210] +15:24:57 [ 2] [ 16] [1808930600045587] +15:24:57 [ 3] [ 6] [011000] +15:24:57 [ 4] [ 12] [000020000000] +15:24:57 [ 6] [ 12] [000020000000] +15:24:57 [ 7] [ 10] [0320152446] +15:24:57 [ 11] [ 6] [783282] +15:24:57 [ 12] [ 6] [152446] +15:24:57 [ 13] [ 4] [0320] +15:24:57 [ 18] [ 4] [6011] +15:24:57 [ 19] [ 3] [418] +15:24:57 [ 22] [ 3] [021] +15:24:57 [ 32] [ 6] [621354] +15:24:57 [ 35] [ 27] [1808930600045587=1803500781] +15:24:57 [ 37] [ 12] [507904273398] +15:24:57 [ 38] [ 6] [783282] +15:24:57 [ 39] [ 2] [00] +15:24:57 [ 41] [ 8] [03002600] +15:24:57 [ 49] [ 3] [418] +15:24:57 [ 52] [ 16] [B4B1159C95619E88] +15:24:57 [ 54] [ 20] [1001418C000189350900] +15:24:57 ============================================================================ +15:24:57 Calculate Source COMM Id = 0 +15:24:57 ============================================================================ +15:24:57 + + +waiting on router queue for slot.... +15:25:02 ============================================================================ +15:25:02 Slot Id : <190> +15:25:02 Transaction Type : REQUEST +15:25:02 Received From : +15:25:02 ============================================================================ +15:25:02 FNo. Len. Field Value +15:25:02 ============================================================================ +15:25:02 [ 1] [ 4] [0800] +15:25:02 [ 7] [ 10] [0320223650] +15:25:02 [ 11] [ 6] [153650] +15:25:02 [ 37] [ 12] [57915153650] +15:25:02 [ 70] [ 3] [301] +15:25:02 ============================================================================ +15:25:02 + + +waiting on router queue for slot.... +15:25:02 Sending to : +15:25:02 ============================================================================ +15:25:02 ============================================================================ +15:25:02 Slot Id : <190> +15:25:02 Transaction Type : RESPONSE +15:25:02 Received From : +15:25:02 ============================================================================ +15:25:02 FNo. Len. Field Value +15:25:02 ============================================================================ +15:25:02 [ 1] [ 4] [0810] +15:25:02 [ 7] [ 10] [0320223650] +15:25:02 [ 11] [ 6] [153650] +15:25:02 [ 37] [ 12] [579151536500] +15:25:02 [ 39] [ 2] [00] +15:25:02 [ 70] [ 3] [810] +15:25:02 ============================================================================ +15:25:02 Calculate Source COMM Id = 6 +15:25:02 ============================================================================ +15:25:02 + + +waiting on router queue for slot.... +15:25:06 ============================================================================ +15:25:06 Slot Id : <198> +15:25:06 Transaction Type : REQUEST +15:25:06 Received From : +15:25:06 ============================================================================ +15:25:06 FNo. Len. Field Value +15:25:06 ============================================================================ +15:25:06 [ 1] [ 4] [0800] +15:25:06 [ 7] [ 10] [0320082412] +15:25:06 [ 11] [ 6] [157003] +15:25:06 [ 70] [ 3] [301] +15:25:06 ============================================================================ +15:25:06 + + +waiting on router queue for slot.... +15:25:06 Sending to : +15:25:06 ============================================================================ +15:25:06 ============================================================================ +15:25:06 Slot Id : <198> +15:25:06 Transaction Type : RESPONSE +15:25:06 Received From : +15:25:06 ============================================================================ +15:25:06 FNo. Len. Field Value +15:25:06 ============================================================================ +15:25:06 [ 1] [ 4] [0810] +15:25:06 [ 7] [ 10] [0320082412] +15:25:06 [ 11] [ 6] [157003] +15:25:06 [ 39] [ 2] [00] +15:25:06 [ 70] [ 3] [301] +15:25:06 ============================================================================ +15:25:06 Calculate Source COMM Id = 2 +15:25:06 ============================================================================ +15:25:06 + + +waiting on router queue for slot.... +15:25:19 ============================================================================ +15:25:19 Slot Id : <196> +15:25:19 Transaction Type : REQUEST +15:25:19 Received From : +15:25:19 ============================================================================ +15:25:19 FNo. Len. Field Value +15:25:19 ============================================================================ +15:25:19 [ 1] [ 4] [0800] +15:25:19 [ 7] [ 10] [0320082426] +15:25:19 [ 11] [ 6] [157004] +15:25:19 [ 70] [ 3] [301] +15:25:19 ============================================================================ +15:25:19 + + +waiting on router queue for slot.... +15:25:19 Sending to : +15:25:19 ============================================================================ +15:25:19 ============================================================================ +15:25:19 Slot Id : <196> +15:25:19 Transaction Type : RESPONSE +15:25:19 Received From : +15:25:19 ============================================================================ +15:25:19 FNo. Len. Field Value +15:25:19 ============================================================================ +15:25:19 [ 1] [ 4] [0810] +15:25:19 [ 7] [ 10] [0320082426] +15:25:19 [ 11] [ 6] [157004] +15:25:19 [ 39] [ 2] [00] +15:25:19 [ 70] [ 3] [301] +15:25:19 ============================================================================ +15:25:19 Calculate Source COMM Id = 2 +15:25:19 ============================================================================ +15:25:19 + + +waiting on router queue for slot.... +15:25:29 ============================================================================ +15:25:29 Slot Id : <155> +15:25:29 Transaction Type : REQUEST +15:25:29 Received From : +15:25:29 ============================================================================ +15:25:29 FNo. Len. Field Value +15:25:29 ============================================================================ +15:25:29 [ 1] [ 4] [0800] +15:25:29 [ 2] [ 5] [02531] +15:25:29 [ 3] [ 6] [579158] +15:25:29 [ 7] [ 10] [0320082529] +15:25:29 [ 11] [ 6] [807307] +15:25:29 [ 15] [ 10] [0320082529] +15:25:29 [ 37] [ 11] [57915807307] +15:25:29 [ 70] [ 3] [001] +15:25:29 ============================================================================ +15:25:29 + + +waiting on router queue for slot.... +15:25:29 ============================================================================ +15:25:29 Slot Id : <155> +15:25:29 Transaction Type : RESPONSE +15:25:29 Received From : +15:25:29 ============================================================================ +15:25:29 FNo. Len. Field Value +15:25:29 ============================================================================ +15:25:29 [ 1] [ 4] [0810] +15:25:29 [ 7] [ 10] [0320082529] +15:25:29 [ 11] [ 6] [807307] +15:25:29 [ 15] [ 4] [0320] +15:25:29 [ 37] [ 12] [57915807307] +15:25:29 [ 39] [ 2] [00] +15:25:29 [ 70] [ 3] [001] +15:25:29 ============================================================================ +15:25:29 Sending to : +15:25:29 ============================================================================ +15:25:29 + + +waiting on router queue for slot.... +15:25:30 ============================================================================ +15:25:30 Slot Id : <181> +15:25:30 Transaction Type : REQUEST +15:25:30 Received From : +15:25:30 ============================================================================ +15:25:30 FNo. Len. Field Value +15:25:30 ============================================================================ +15:25:30 [ 1] [ 4] [0800] +15:25:30 [ 7] [ 10] [0320082437] +15:25:30 [ 11] [ 6] [157005] +15:25:30 [ 70] [ 3] [301] +15:25:30 ============================================================================ +15:25:30 + + +waiting on router queue for slot.... +15:25:30 Sending to : +15:25:30 ============================================================================ +15:25:30 ============================================================================ +15:25:30 Slot Id : <181> +15:25:30 Transaction Type : RESPONSE +15:25:30 Received From : +15:25:30 ============================================================================ +15:25:30 FNo. Len. Field Value +15:25:30 ============================================================================ +15:25:30 [ 1] [ 4] [0810] +15:25:30 [ 7] [ 10] [0320082437] +15:25:30 [ 11] [ 6] [157005] +15:25:30 [ 39] [ 2] [00] +15:25:30 [ 70] [ 3] [301] +15:25:30 ============================================================================ +15:25:30 Calculate Source COMM Id = 2 +15:25:30 ============================================================================ +15:25:30 + + +waiting on router queue for slot.... +15:25:34 ============================================================================ +15:25:34 Slot Id : <201> +15:25:34 Transaction Type : REQUEST +15:25:34 Received From : +15:25:34 ============================================================================ +15:25:34 FNo. Len. Field Value +15:25:34 ============================================================================ +15:25:34 [ 1] [ 4] [0200] +15:25:34 [ 2] [ 16] [6688990030008559] +15:25:34 [ 3] [ 6] [011000] +15:25:34 [ 4] [ 12] [000007000000] +15:25:34 [ 7] [ 10] [0320152529] +15:25:34 [ 11] [ 6] [783444] +15:25:34 [ 12] [ 6] [152529] +15:25:34 [ 13] [ 4] [0320] +15:25:34 [ 15] [ 4] [0320] +15:25:34 [ 18] [ 4] [6011] +15:25:34 [ 22] [ 3] [900] +15:25:34 [ 25] [ 2] [02] +15:25:34 [ 28] [ 9] [D00002000] +15:25:34 [ 32] [ 6] [621354] +15:25:34 [ 35] [ 37] [6688990030008559=98011261194155000000] +15:25:34 [ 37] [ 12] [507905335176] +15:25:34 [ 41] [ 8] [05004700] +15:25:34 [ 42] [ 15] [NATIVE ] +15:25:34 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:25:34 [ 49] [ 3] [418] +15:25:34 [ 52] [ 16] [EEF157D338387A75] +15:25:34 ============================================================================ +15:25:34 + + +waiting on router queue for slot.... +15:25:34 Sending to : +15:25:34 ============================================================================ +15:25:34 Sending to : +15:25:34 ============================================================================ +15:25:34 ============================================================================ +15:25:34 Slot Id : <201> +15:25:34 Transaction Type : REQUEST +15:25:34 Received From : +15:25:34 ============================================================================ +15:25:34 FNo. Len. Field Value +15:25:34 ============================================================================ +15:25:34 [ 1] [ 4] [0200] +15:25:34 [ 2] [ 16] [6688990030008559] +15:25:34 [ 3] [ 6] [011000] +15:25:34 [ 4] [ 12] [000007000000] +15:25:34 [ 7] [ 10] [0320152529] +15:25:34 [ 11] [ 6] [783444] +15:25:34 [ 12] [ 6] [152529] +15:25:34 [ 13] [ 4] [0320] +15:25:34 [ 15] [ 4] [0320] +15:25:34 [ 18] [ 4] [6011] +15:25:34 [ 22] [ 3] [900] +15:25:34 [ 25] [ 2] [02] +15:25:34 [ 28] [ 9] [D00002000] +15:25:34 [ 32] [ 6] [621354] +15:25:34 [ 35] [ 37] [6688990030008559=98011261194155000000] +15:25:34 [ 37] [ 12] [507905335176] +15:25:34 [ 41] [ 8] [05004700] +15:25:34 [ 42] [ 15] [NATIVE ] +15:25:34 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:25:34 [ 49] [ 3] [418] +15:25:34 [ 52] [ 16] [EEF157D338387A75] +15:25:34 ============================================================================ +15:25:34 + + +waiting on router queue for slot.... +15:25:34 Sending to : +15:25:34 ============================================================================ +15:25:34 ============================================================================ +15:25:34 Slot Id : <201> +15:25:34 Transaction Type : REQUEST +15:25:34 Received From : +15:25:34 ============================================================================ +15:25:34 FNo. Len. Field Value +15:25:34 ============================================================================ +15:25:34 [ 1] [ 4] [0200] +15:25:34 [ 2] [ 16] [6688990030008559] +15:25:34 [ 3] [ 6] [011000] +15:25:34 [ 4] [ 12] [000007000000] +15:25:34 [ 7] [ 10] [0320152529] +15:25:34 [ 11] [ 6] [783444] +15:25:34 [ 12] [ 6] [152529] +15:25:34 [ 13] [ 4] [0320] +15:25:34 [ 15] [ 4] [0320] +15:25:34 [ 18] [ 4] [6011] +15:25:34 [ 22] [ 3] [900] +15:25:34 [ 25] [ 2] [02] +15:25:34 [ 28] [ 9] [D00002000] +15:25:34 [ 32] [ 6] [621354] +15:25:34 [ 35] [ 37] [6688990030008559=98011261194155000000] +15:25:34 [ 37] [ 12] [507905335176] +15:25:34 [ 41] [ 8] [05004700] +15:25:34 [ 42] [ 15] [NATIVE ] +15:25:34 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:25:34 [ 49] [ 3] [418] +15:25:34 [ 52] [ 16] [EC0AE5DD80E6E53C] +15:25:34 ============================================================================ +15:25:34 + + +waiting on router queue for slot.... +15:25:34 Sending to : <4> +15:25:34 ============================================================================ +15:25:35 ============================================================================ +15:25:35 Slot Id : <201> +15:25:35 Transaction Type : RESPONSE +15:25:35 Received From : +15:25:35 ============================================================================ +15:25:35 FNo. Len. Field Value +15:25:35 ============================================================================ +15:25:35 [ 1] [ 4] [0210] +15:25:35 [ 2] [ 16] [6688990030008559] +15:25:35 [ 3] [ 6] [011000] +15:25:35 [ 4] [ 12] [000007000000] +15:25:35 [ 11] [ 6] [783444] +15:25:35 [ 12] [ 6] [152529] +15:25:35 [ 15] [ 4] [0320] +15:25:35 [ 18] [ 4] [6011] +15:25:35 [ 32] [ 6] [621354] +15:25:35 [ 35] [ 37] [6688990030008559=98011261194155000000] +15:25:35 [ 37] [ 12] [507905335176] +15:25:35 [ 38] [ 6] [568475] +15:25:35 [ 39] [ 2] [00] +15:25:35 [ 41] [ 8] [05004700] +15:25:35 [ 49] [ 3] [418] +15:25:35 [ 54] [ 20] [1002418C000087700000] +15:25:35 ============================================================================ +15:25:35 Sending to : +15:25:35 ============================================================================ +15:25:35 + + +waiting on router queue for slot.... +15:25:37 ============================================================================ +15:25:37 Slot Id : <201> +15:25:37 Transaction Type : RESPONSE +15:25:37 Received From : +15:25:37 ============================================================================ +15:25:37 FNo. Len. Field Value +15:25:37 ============================================================================ +15:25:37 [ 1] [ 4] [0210] +15:25:37 [ 2] [ 16] [6688990030008559] +15:25:37 [ 3] [ 6] [011000] +15:25:37 [ 4] [ 12] [000007000000] +15:25:37 [ 11] [ 6] [783444] +15:25:37 [ 12] [ 6] [152529] +15:25:37 [ 15] [ 4] [0320] +15:25:37 [ 18] [ 4] [6011] +15:25:37 [ 32] [ 6] [621354] +15:25:37 [ 35] [ 37] [6688990030008559=98011261194155000000] +15:25:37 [ 37] [ 12] [507905335176] +15:25:37 [ 38] [ 6] [568475] +15:25:37 [ 39] [ 2] [00] +15:25:37 [ 41] [ 8] [05004700] +15:25:37 [ 49] [ 3] [418] +15:25:37 [ 54] [ 20] [1002418C000087700000] +15:25:37 ============================================================================ +15:25:37 Calculate Source COMM Id = 0 +15:25:37 ============================================================================ +15:25:37 + + +waiting on router queue for slot.... +15:25:38 ============================================================================ +15:25:38 Slot Id : <165> +15:25:38 Transaction Type : REQUEST +15:25:38 Received From : +15:25:38 ============================================================================ +15:25:38 FNo. Len. Field Value +15:25:38 ============================================================================ +15:25:38 [ 1] [ 4] [0200] +15:25:38 [ 2] [ 16] [6688990040102327] +15:25:38 [ 3] [ 6] [012000] +15:25:38 [ 4] [ 12] [000100000000] +15:25:38 [ 7] [ 10] [0320152534] +15:25:38 [ 11] [ 6] [783463] +15:25:38 [ 12] [ 6] [152534] +15:25:38 [ 13] [ 4] [0320] +15:25:38 [ 15] [ 4] [0320] +15:25:38 [ 18] [ 4] [6011] +15:25:38 [ 22] [ 3] [900] +15:25:38 [ 25] [ 2] [02] +15:25:38 [ 28] [ 9] [D00002000] +15:25:38 [ 32] [ 6] [621354] +15:25:38 [ 35] [ 37] [6688990040102327=98031261490392600000] +15:25:38 [ 37] [ 12] [507904653509] +15:25:38 [ 41] [ 8] [17001000] +15:25:38 [ 42] [ 15] [NATIVE ] +15:25:38 [ 43] [ 40] [Sum Market Samneua LAO] +15:25:38 [ 49] [ 3] [418] +15:25:38 [ 52] [ 16] [E36E52B2E57D4472] +15:25:38 ============================================================================ +15:25:38 + + +waiting on router queue for slot.... +15:25:38 Sending to : +15:25:38 ============================================================================ +15:25:38 Sending to : +15:25:38 ============================================================================ +15:25:39 ============================================================================ +15:25:39 Slot Id : <165> +15:25:39 Transaction Type : REQUEST +15:25:39 Received From : +15:25:39 ============================================================================ +15:25:39 FNo. Len. Field Value +15:25:39 ============================================================================ +15:25:39 [ 1] [ 4] [0200] +15:25:39 [ 2] [ 16] [6688990040102327] +15:25:39 [ 3] [ 6] [012000] +15:25:39 [ 4] [ 12] [000100000000] +15:25:39 [ 7] [ 10] [0320152534] +15:25:39 [ 11] [ 6] [783463] +15:25:39 [ 12] [ 6] [152534] +15:25:39 [ 13] [ 4] [0320] +15:25:39 [ 15] [ 4] [0320] +15:25:39 [ 18] [ 4] [6011] +15:25:39 [ 22] [ 3] [900] +15:25:39 [ 25] [ 2] [02] +15:25:39 [ 28] [ 9] [D00002000] +15:25:39 [ 32] [ 6] [621354] +15:25:39 [ 35] [ 37] [6688990040102327=98031261490392600000] +15:25:39 [ 37] [ 12] [507904653509] +15:25:39 [ 41] [ 8] [17001000] +15:25:39 [ 42] [ 15] [NATIVE ] +15:25:39 [ 43] [ 40] [Sum Market Samneua LAO] +15:25:39 [ 49] [ 3] [418] +15:25:39 [ 52] [ 16] [E36E52B2E57D4472] +15:25:39 ============================================================================ +15:25:39 + + +waiting on router queue for slot.... +15:25:39 Sending to : +15:25:39 ============================================================================ +15:25:39 ============================================================================ +15:25:39 Slot Id : <165> +15:25:39 Transaction Type : REQUEST +15:25:39 Received From : +15:25:39 ============================================================================ +15:25:39 FNo. Len. Field Value +15:25:39 ============================================================================ +15:25:39 [ 1] [ 4] [0200] +15:25:39 [ 2] [ 16] [6688990040102327] +15:25:39 [ 3] [ 6] [012000] +15:25:39 [ 4] [ 12] [000100000000] +15:25:39 [ 7] [ 10] [0320152534] +15:25:39 [ 11] [ 6] [783463] +15:25:39 [ 12] [ 6] [152534] +15:25:39 [ 13] [ 4] [0320] +15:25:39 [ 15] [ 4] [0320] +15:25:39 [ 18] [ 4] [6011] +15:25:39 [ 22] [ 3] [900] +15:25:39 [ 25] [ 2] [02] +15:25:39 [ 28] [ 9] [D00002000] +15:25:39 [ 32] [ 6] [621354] +15:25:39 [ 35] [ 37] [6688990040102327=98031261490392600000] +15:25:39 [ 37] [ 12] [507904653509] +15:25:39 [ 41] [ 8] [17001000] +15:25:39 [ 42] [ 15] [NATIVE ] +15:25:39 [ 43] [ 40] [Sum Market Samneua LAO] +15:25:39 [ 49] [ 3] [418] +15:25:39 [ 52] [ 16] [36EC1436AD953556] +15:25:39 ============================================================================ +15:25:39 + + +waiting on router queue for slot.... +15:25:39 Sending to : <4> +15:25:39 ============================================================================ +15:25:39 ============================================================================ +15:25:39 Slot Id : <214> +15:25:39 Transaction Type : REQUEST +15:25:39 Received From : +15:25:39 ============================================================================ +15:25:39 FNo. Len. Field Value +15:25:39 ============================================================================ +15:25:39 [ 1] [ 4] [0200] +15:25:39 [ 2] [ 16] [2206990000004747] +15:25:39 [ 3] [ 6] [010000] +15:25:39 [ 4] [ 12] [000020000000] +15:25:39 [ 7] [ 10] [0320152535] +15:25:39 [ 11] [ 6] [783466] +15:25:39 [ 12] [ 6] [152535] +15:25:39 [ 13] [ 4] [0320] +15:25:39 [ 15] [ 4] [0320] +15:25:39 [ 18] [ 4] [6011] +15:25:39 [ 22] [ 3] [900] +15:25:39 [ 25] [ 2] [02] +15:25:39 [ 28] [ 9] [D00002000] +15:25:39 [ 32] [ 6] [621354] +15:25:39 [ 35] [ 32] [2206990000004747=951112617714680] +15:25:39 [ 37] [ 12] [507903058691] +15:25:39 [ 41] [ 8] [01008500] +15:25:39 [ 42] [ 15] [NATIVE ] +15:25:39 [ 43] [ 40] [MOF ChanthaboulyLAO] +15:25:39 [ 49] [ 3] [418] +15:25:39 [ 52] [ 16] [B28AB0FF0031E2CE] +15:25:39 ============================================================================ +15:25:39 + + +waiting on router queue for slot.... +15:25:39 Sending to : +15:25:39 ============================================================================ +15:25:39 Sending to : +15:25:39 ============================================================================ +15:25:40 ============================================================================ +15:25:40 Slot Id : <165> +15:25:40 Transaction Type : RESPONSE +15:25:40 Received From : +15:25:40 ============================================================================ +15:25:40 FNo. Len. Field Value +15:25:40 ============================================================================ +15:25:40 [ 1] [ 4] [0210] +15:25:40 [ 2] [ 16] [6688990040102327] +15:25:40 [ 3] [ 6] [012000] +15:25:40 [ 4] [ 12] [000100000000] +15:25:40 [ 11] [ 6] [783463] +15:25:40 [ 12] [ 6] [152534] +15:25:40 [ 15] [ 4] [0320] +15:25:40 [ 18] [ 4] [6011] +15:25:40 [ 32] [ 6] [621354] +15:25:40 [ 35] [ 37] [6688990040102327=98031261490392600000] +15:25:40 [ 37] [ 12] [507904653509] +15:25:40 [ 39] [ 2] [51] +15:25:40 [ 41] [ 8] [17001000] +15:25:40 [ 49] [ 3] [418] +15:25:40 [ 54] [ 0] [] +15:25:40 ============================================================================ +15:25:40 Sending to : +15:25:40 ============================================================================ +15:25:40 + + +waiting on router queue for slot.... +15:25:40 ============================================================================ +15:25:40 Slot Id : <214> +15:25:40 Transaction Type : REQUEST +15:25:40 Received From : +15:25:40 ============================================================================ +15:25:40 FNo. Len. Field Value +15:25:40 ============================================================================ +15:25:40 [ 1] [ 4] [0200] +15:25:40 [ 2] [ 16] [2206990000004747] +15:25:40 [ 3] [ 6] [010000] +15:25:40 [ 4] [ 12] [000020000000] +15:25:40 [ 7] [ 10] [0320152535] +15:25:40 [ 11] [ 6] [783466] +15:25:40 [ 12] [ 6] [152535] +15:25:40 [ 13] [ 4] [0320] +15:25:40 [ 15] [ 4] [0320] +15:25:40 [ 18] [ 4] [6011] +15:25:40 [ 22] [ 3] [900] +15:25:40 [ 25] [ 2] [02] +15:25:40 [ 28] [ 9] [D00002000] +15:25:40 [ 32] [ 6] [621354] +15:25:40 [ 35] [ 32] [2206990000004747=951112617714680] +15:25:40 [ 37] [ 12] [507903058691] +15:25:40 [ 41] [ 8] [01008500] +15:25:40 [ 42] [ 15] [NATIVE ] +15:25:40 [ 43] [ 40] [MOF ChanthaboulyLAO] +15:25:40 [ 49] [ 3] [418] +15:25:40 [ 52] [ 16] [B28AB0FF0031E2CE] +15:25:40 ============================================================================ +15:25:40 + + +waiting on router queue for slot.... +15:25:40 Sending to : +15:25:40 ============================================================================ +15:25:40 ============================================================================ +15:25:40 Slot Id : <214> +15:25:40 Transaction Type : REQUEST +15:25:40 Received From : +15:25:40 ============================================================================ +15:25:40 FNo. Len. Field Value +15:25:40 ============================================================================ +15:25:40 [ 1] [ 4] [0200] +15:25:40 [ 2] [ 16] [2206990000004747] +15:25:40 [ 3] [ 6] [010000] +15:25:40 [ 4] [ 12] [000020000000] +15:25:40 [ 7] [ 10] [0320152535] +15:25:40 [ 11] [ 6] [783466] +15:25:40 [ 12] [ 6] [152535] +15:25:40 [ 13] [ 4] [0320] +15:25:40 [ 15] [ 4] [0320] +15:25:40 [ 18] [ 4] [6011] +15:25:40 [ 22] [ 3] [900] +15:25:40 [ 25] [ 2] [02] +15:25:40 [ 28] [ 9] [D00002000] +15:25:40 [ 32] [ 6] [621354] +15:25:40 [ 35] [ 32] [2206990000004747=951112617714680] +15:25:40 [ 37] [ 12] [507903058691] +15:25:40 [ 41] [ 8] [01008500] +15:25:40 [ 42] [ 15] [NATIVE ] +15:25:40 [ 43] [ 40] [MOF ChanthaboulyLAO] +15:25:40 [ 49] [ 3] [418] +15:25:40 [ 52] [ 16] [A679B23AA9EA4133] +15:25:40 ============================================================================ +15:25:40 + + +waiting on router queue for slot.... +15:25:40 Sending to : <1> +15:25:40 ============================================================================ +15:25:41 ============================================================================ +15:25:41 Slot Id : <165> +15:25:41 Transaction Type : RESPONSE +15:25:41 Received From : +15:25:41 ============================================================================ +15:25:41 FNo. Len. Field Value +15:25:41 ============================================================================ +15:25:41 [ 1] [ 4] [0210] +15:25:41 [ 2] [ 16] [6688990040102327] +15:25:41 [ 3] [ 6] [012000] +15:25:41 [ 4] [ 12] [000100000000] +15:25:41 [ 11] [ 6] [783463] +15:25:41 [ 12] [ 6] [152534] +15:25:41 [ 15] [ 4] [0320] +15:25:41 [ 18] [ 4] [6011] +15:25:41 [ 32] [ 6] [621354] +15:25:41 [ 35] [ 37] [6688990040102327=98031261490392600000] +15:25:41 [ 37] [ 12] [507904653509] +15:25:41 [ 39] [ 2] [51] +15:25:41 [ 41] [ 8] [17001000] +15:25:41 [ 49] [ 3] [418] +15:25:41 [ 54] [ 0] [] +15:25:41 ============================================================================ +15:25:41 Calculate Source COMM Id = 0 +15:25:41 ============================================================================ +15:25:41 + + +waiting on router queue for slot.... +15:25:41 ============================================================================ +15:25:41 Slot Id : <209> +15:25:41 Transaction Type : REQUEST +15:25:41 Received From : +15:25:41 ============================================================================ +15:25:41 FNo. Len. Field Value +15:25:41 ============================================================================ +15:25:41 [ 1] [ 4] [0800] +15:25:41 [ 7] [ 10] [0320082448] +15:25:41 [ 11] [ 6] [157006] +15:25:41 [ 70] [ 3] [301] +15:25:41 ============================================================================ +15:25:41 + + +waiting on router queue for slot.... +15:25:41 Sending to : +15:25:41 ============================================================================ +15:25:41 ============================================================================ +15:25:41 Slot Id : <209> +15:25:41 Transaction Type : RESPONSE +15:25:41 Received From : +15:25:41 ============================================================================ +15:25:41 FNo. Len. Field Value +15:25:41 ============================================================================ +15:25:41 [ 1] [ 4] [0810] +15:25:41 [ 7] [ 10] [0320082448] +15:25:41 [ 11] [ 6] [157006] +15:25:41 [ 39] [ 2] [00] +15:25:41 [ 70] [ 3] [301] +15:25:41 ============================================================================ +15:25:41 Calculate Source COMM Id = 2 +15:25:41 ============================================================================ +15:25:41 + + +waiting on router queue for slot.... +15:25:42 ============================================================================ +15:25:42 Slot Id : <214> +15:25:42 Transaction Type : RESPONSE +15:25:42 Received From : +15:25:42 ============================================================================ +15:25:42 FNo. Len. Field Value +15:25:42 ============================================================================ +15:25:42 [ 1] [ 4] [0210] +15:25:42 [ 2] [ 16] [2206990000004747] +15:25:42 [ 3] [ 6] [010000] +15:25:42 [ 4] [ 12] [000020000000] +15:25:42 [ 7] [ 10] [0320152535] +15:25:42 [ 11] [ 6] [783466] +15:25:42 [ 12] [ 6] [152535] +15:25:42 [ 13] [ 4] [0320] +15:25:42 [ 15] [ 4] [0320] +15:25:42 [ 18] [ 4] [6011] +15:25:42 [ 32] [ 6] [621354] +15:25:42 [ 35] [ 32] [2206990000004747=951112617714680] +15:25:42 [ 37] [ 12] [507903058691] +15:25:42 [ 38] [ 6] [295561] +15:25:42 [ 39] [ 2] [00] +15:25:42 [ 41] [ 8] [01008500] +15:25:42 [ 49] [ 3] [418] +15:25:42 [ 54] [ 40] [0001418C0000122133000002418C000012213300] +15:25:42 ============================================================================ +15:25:42 Sending to : +15:25:42 ============================================================================ +15:25:42 + + +waiting on router queue for slot.... +15:25:43 ============================================================================ +15:25:43 Slot Id : <214> +15:25:43 Transaction Type : RESPONSE +15:25:43 Received From : +15:25:43 ============================================================================ +15:25:43 FNo. Len. Field Value +15:25:43 ============================================================================ +15:25:43 [ 1] [ 4] [0210] +15:25:43 [ 2] [ 16] [2206990000004747] +15:25:43 [ 3] [ 6] [010000] +15:25:43 [ 4] [ 12] [000020000000] +15:25:43 [ 7] [ 10] [0320152535] +15:25:43 [ 11] [ 6] [783466] +15:25:43 [ 12] [ 6] [152535] +15:25:43 [ 13] [ 4] [0320] +15:25:43 [ 15] [ 4] [0320] +15:25:43 [ 18] [ 4] [6011] +15:25:43 [ 32] [ 6] [621354] +15:25:43 [ 35] [ 32] [2206990000004747=951112617714680] +15:25:43 [ 37] [ 12] [507903058691] +15:25:43 [ 38] [ 6] [295561] +15:25:43 [ 39] [ 2] [00] +15:25:43 [ 41] [ 8] [01008500] +15:25:43 [ 49] [ 3] [418] +15:25:43 [ 54] [ 40] [0001418C0000122133000002418C000012213300] +15:25:43 ============================================================================ +15:25:43 Calculate Source COMM Id = 0 +15:25:43 ============================================================================ +15:25:43 + + +waiting on router queue for slot.... +15:25:51 ============================================================================ +15:25:51 Slot Id : <195> +15:25:51 Transaction Type : REQUEST +15:25:51 Received From : +15:25:51 ============================================================================ +15:25:51 FNo. Len. Field Value +15:25:51 ============================================================================ +15:25:51 [ 1] [ 4] [0800] +15:25:51 [ 7] [ 10] [0320082458] +15:25:51 [ 11] [ 6] [157007] +15:25:51 [ 70] [ 3] [301] +15:25:51 ============================================================================ +15:25:51 + + +waiting on router queue for slot.... +15:25:51 Sending to : +15:25:51 ============================================================================ +15:25:51 ============================================================================ +15:25:51 Slot Id : <195> +15:25:51 Transaction Type : RESPONSE +15:25:51 Received From : +15:25:51 ============================================================================ +15:25:51 FNo. Len. Field Value +15:25:51 ============================================================================ +15:25:51 [ 1] [ 4] [0810] +15:25:51 [ 7] [ 10] [0320082458] +15:25:51 [ 11] [ 6] [157007] +15:25:51 [ 39] [ 2] [00] +15:25:51 [ 70] [ 3] [301] +15:25:51 ============================================================================ +15:25:51 Calculate Source COMM Id = 2 +15:25:51 ============================================================================ +15:25:51 + + +waiting on router queue for slot.... +15:26:02 ============================================================================ +15:26:02 Slot Id : <194> +15:26:02 Transaction Type : REQUEST +15:26:02 Received From : +15:26:02 ============================================================================ +15:26:02 FNo. Len. Field Value +15:26:02 ============================================================================ +15:26:02 [ 1] [ 4] [0200] +15:26:02 [ 2] [ 16] [6688990105629008] +15:26:02 [ 3] [ 6] [012000] +15:26:02 [ 4] [ 12] [000030000000] +15:26:02 [ 7] [ 10] [0320152558] +15:26:02 [ 11] [ 6] [783547] +15:26:02 [ 12] [ 6] [152558] +15:26:02 [ 13] [ 4] [0320] +15:26:02 [ 15] [ 4] [0320] +15:26:02 [ 18] [ 4] [6011] +15:26:02 [ 22] [ 3] [900] +15:26:02 [ 25] [ 2] [02] +15:26:02 [ 28] [ 9] [D00002000] +15:26:02 [ 32] [ 6] [621354] +15:26:02 [ 35] [ 37] [6688990105629008=43101231900834500000] +15:26:02 [ 37] [ 12] [507903405904] +15:26:02 [ 41] [ 8] [06001300] +15:26:02 [ 42] [ 15] [NATIVE ] +15:26:02 [ 43] [ 40] [Oudomxay Final Xay LAO] +15:26:02 [ 49] [ 3] [418] +15:26:02 [ 52] [ 16] [F1079D3897FF8B2A] +15:26:02 ============================================================================ +15:26:02 + + +waiting on router queue for slot.... +15:26:02 Sending to : +15:26:02 ============================================================================ +15:26:02 Sending to : +15:26:02 ============================================================================ +15:26:03 ============================================================================ +15:26:03 Slot Id : <194> +15:26:03 Transaction Type : REQUEST +15:26:03 Received From : +15:26:03 ============================================================================ +15:26:03 FNo. Len. Field Value +15:26:03 ============================================================================ +15:26:03 [ 1] [ 4] [0200] +15:26:03 [ 2] [ 16] [6688990105629008] +15:26:03 [ 3] [ 6] [012000] +15:26:03 [ 4] [ 12] [000030000000] +15:26:03 [ 7] [ 10] [0320152558] +15:26:03 [ 11] [ 6] [783547] +15:26:03 [ 12] [ 6] [152558] +15:26:03 [ 13] [ 4] [0320] +15:26:03 [ 15] [ 4] [0320] +15:26:03 [ 18] [ 4] [6011] +15:26:03 [ 22] [ 3] [900] +15:26:03 [ 25] [ 2] [02] +15:26:03 [ 28] [ 9] [D00002000] +15:26:03 [ 32] [ 6] [621354] +15:26:03 [ 35] [ 37] [6688990105629008=43101231900834500000] +15:26:03 [ 37] [ 12] [507903405904] +15:26:03 [ 41] [ 8] [06001300] +15:26:03 [ 42] [ 15] [NATIVE ] +15:26:03 [ 43] [ 40] [Oudomxay Final Xay LAO] +15:26:03 [ 49] [ 3] [418] +15:26:03 [ 52] [ 16] [F1079D3897FF8B2A] +15:26:03 ============================================================================ +15:26:03 + + +waiting on router queue for slot.... +15:26:03 Sending to : +15:26:03 ============================================================================ +15:26:03 ============================================================================ +15:26:03 Slot Id : <194> +15:26:03 Transaction Type : REQUEST +15:26:03 Received From : +15:26:03 ============================================================================ +15:26:03 FNo. Len. Field Value +15:26:03 ============================================================================ +15:26:03 [ 1] [ 4] [0200] +15:26:03 [ 2] [ 16] [6688990105629008] +15:26:03 [ 3] [ 6] [012000] +15:26:03 [ 4] [ 12] [000030000000] +15:26:03 [ 7] [ 10] [0320152558] +15:26:03 [ 11] [ 6] [783547] +15:26:03 [ 12] [ 6] [152558] +15:26:03 [ 13] [ 4] [0320] +15:26:03 [ 15] [ 4] [0320] +15:26:03 [ 18] [ 4] [6011] +15:26:03 [ 22] [ 3] [900] +15:26:03 [ 25] [ 2] [02] +15:26:03 [ 28] [ 9] [D00002000] +15:26:03 [ 32] [ 6] [621354] +15:26:03 [ 35] [ 37] [6688990105629008=43101231900834500000] +15:26:03 [ 37] [ 12] [507903405904] +15:26:03 [ 41] [ 8] [06001300] +15:26:03 [ 42] [ 15] [NATIVE ] +15:26:03 [ 43] [ 40] [Oudomxay Final Xay LAO] +15:26:03 [ 49] [ 3] [418] +15:26:03 [ 52] [ 16] [BAEEAFAB323494AA] +15:26:03 ============================================================================ +15:26:03 + + +waiting on router queue for slot.... +15:26:03 Sending to : <4> +15:26:03 ============================================================================ +15:26:04 ============================================================================ +15:26:04 Slot Id : <194> +15:26:04 Transaction Type : RESPONSE +15:26:04 Received From : +15:26:04 ============================================================================ +15:26:04 FNo. Len. Field Value +15:26:04 ============================================================================ +15:26:04 [ 1] [ 4] [0210] +15:26:04 [ 2] [ 16] [6688990105629008] +15:26:04 [ 3] [ 6] [012000] +15:26:04 [ 4] [ 12] [000030000000] +15:26:04 [ 11] [ 6] [783547] +15:26:04 [ 12] [ 6] [152558] +15:26:04 [ 15] [ 4] [0320] +15:26:04 [ 18] [ 4] [6011] +15:26:04 [ 32] [ 6] [621354] +15:26:04 [ 35] [ 37] [6688990105629008=43101231900834500000] +15:26:04 [ 37] [ 12] [507903405904] +15:26:04 [ 38] [ 6] [207777] +15:26:04 [ 39] [ 2] [00] +15:26:04 [ 41] [ 8] [06001300] +15:26:04 [ 49] [ 3] [418] +15:26:04 [ 54] [ 20] [2002418C000074704795] +15:26:04 ============================================================================ +15:26:04 Sending to : +15:26:04 ============================================================================ +15:26:04 + + +waiting on router queue for slot.... +15:26:04 ============================================================================ +15:26:04 Slot Id : <206> +15:26:04 Transaction Type : REQUEST +15:26:04 Received From : +15:26:04 ============================================================================ +15:26:04 FNo. Len. Field Value +15:26:04 ============================================================================ +15:26:04 [ 1] [ 4] [0200] +15:26:04 [ 2] [ 16] [2206990000130245] +15:26:04 [ 3] [ 6] [011000] +15:26:04 [ 4] [ 12] [000030000000] +15:26:04 [ 7] [ 10] [0320152600] +15:26:04 [ 11] [ 6] [783554] +15:26:04 [ 12] [ 6] [152600] +15:26:04 [ 13] [ 4] [0320] +15:26:04 [ 15] [ 4] [0320] +15:26:04 [ 18] [ 4] [6011] +15:26:04 [ 22] [ 3] [900] +15:26:04 [ 25] [ 2] [02] +15:26:04 [ 28] [ 9] [D00002000] +15:26:04 [ 32] [ 6] [621354] +15:26:04 [ 35] [ 32] [2206990000130245=980412611173902] +15:26:04 [ 37] [ 12] [507902806367] +15:26:04 [ 41] [ 8] [01007400] +15:26:04 [ 42] [ 15] [NATIVE ] +15:26:04 [ 43] [ 40] [M-Point Nong Douang SikhottabongLAO] +15:26:04 [ 49] [ 3] [418] +15:26:04 [ 52] [ 16] [1CF714341F7B1FF0] +15:26:04 ============================================================================ +15:26:04 + + +waiting on router queue for slot.... +15:26:04 Sending to : +15:26:04 ============================================================================ +15:26:04 Sending to : +15:26:04 ============================================================================ +15:26:05 ============================================================================ +15:26:05 Slot Id : <206> +15:26:05 Transaction Type : REQUEST +15:26:05 Received From : +15:26:05 ============================================================================ +15:26:05 FNo. Len. Field Value +15:26:05 ============================================================================ +15:26:05 [ 1] [ 4] [0200] +15:26:05 [ 2] [ 16] [2206990000130245] +15:26:05 [ 3] [ 6] [011000] +15:26:05 [ 4] [ 12] [000030000000] +15:26:05 [ 7] [ 10] [0320152600] +15:26:05 [ 11] [ 6] [783554] +15:26:05 [ 12] [ 6] [152600] +15:26:05 [ 13] [ 4] [0320] +15:26:05 [ 15] [ 4] [0320] +15:26:05 [ 18] [ 4] [6011] +15:26:05 [ 22] [ 3] [900] +15:26:05 [ 25] [ 2] [02] +15:26:05 [ 28] [ 9] [D00002000] +15:26:05 [ 32] [ 6] [621354] +15:26:05 [ 35] [ 32] [2206990000130245=980412611173902] +15:26:05 [ 37] [ 12] [507902806367] +15:26:05 [ 41] [ 8] [01007400] +15:26:05 [ 42] [ 15] [NATIVE ] +15:26:05 [ 43] [ 40] [M-Point Nong Douang SikhottabongLAO] +15:26:05 [ 49] [ 3] [418] +15:26:05 [ 52] [ 16] [1CF714341F7B1FF0] +15:26:05 ============================================================================ +15:26:05 + + +waiting on router queue for slot.... +15:26:05 Sending to : +15:26:05 ============================================================================ +15:26:05 ============================================================================ +15:26:05 Slot Id : <206> +15:26:05 Transaction Type : REQUEST +15:26:05 Received From : +15:26:05 ============================================================================ +15:26:05 FNo. Len. Field Value +15:26:05 ============================================================================ +15:26:05 [ 1] [ 4] [0200] +15:26:05 [ 2] [ 16] [2206990000130245] +15:26:05 [ 3] [ 6] [011000] +15:26:05 [ 4] [ 12] [000030000000] +15:26:05 [ 7] [ 10] [0320152600] +15:26:05 [ 11] [ 6] [783554] +15:26:05 [ 12] [ 6] [152600] +15:26:05 [ 13] [ 4] [0320] +15:26:05 [ 15] [ 4] [0320] +15:26:05 [ 18] [ 4] [6011] +15:26:05 [ 22] [ 3] [900] +15:26:05 [ 25] [ 2] [02] +15:26:05 [ 28] [ 9] [D00002000] +15:26:05 [ 32] [ 6] [621354] +15:26:05 [ 35] [ 32] [2206990000130245=980412611173902] +15:26:05 [ 37] [ 12] [507902806367] +15:26:05 [ 41] [ 8] [01007400] +15:26:05 [ 42] [ 15] [NATIVE ] +15:26:05 [ 43] [ 40] [M-Point Nong Douang SikhottabongLAO] +15:26:05 [ 49] [ 3] [418] +15:26:05 [ 52] [ 16] [BDDE79F68135869F] +15:26:05 ============================================================================ +15:26:05 + + +waiting on router queue for slot.... +15:26:05 Sending to : <1> +15:26:05 ============================================================================ +15:26:05 ============================================================================ +15:26:05 Slot Id : <194> +15:26:05 Transaction Type : RESPONSE +15:26:05 Received From : +15:26:05 ============================================================================ +15:26:05 FNo. Len. Field Value +15:26:05 ============================================================================ +15:26:05 [ 1] [ 4] [0210] +15:26:05 [ 2] [ 16] [6688990105629008] +15:26:05 [ 3] [ 6] [012000] +15:26:05 [ 4] [ 12] [000030000000] +15:26:05 [ 11] [ 6] [783547] +15:26:05 [ 12] [ 6] [152558] +15:26:05 [ 15] [ 4] [0320] +15:26:05 [ 18] [ 4] [6011] +15:26:05 [ 32] [ 6] [621354] +15:26:05 [ 35] [ 37] [6688990105629008=43101231900834500000] +15:26:05 [ 37] [ 12] [507903405904] +15:26:05 [ 38] [ 6] [207777] +15:26:05 [ 39] [ 2] [00] +15:26:05 [ 41] [ 8] [06001300] +15:26:05 [ 49] [ 3] [418] +15:26:05 [ 54] [ 20] [2002418C000074704795] +15:26:05 ============================================================================ +15:26:05 Calculate Source COMM Id = 0 +15:26:05 ============================================================================ +15:26:05 + + +waiting on router queue for slot.... +15:26:07 ============================================================================ +15:26:07 Slot Id : <178> +15:26:07 Transaction Type : REQUEST +15:26:07 Received From : +15:26:07 ============================================================================ +15:26:07 FNo. Len. Field Value +15:26:07 ============================================================================ +15:26:07 [ 1] [ 4] [0800] +15:26:07 [ 7] [ 10] [0320223755] +15:26:07 [ 11] [ 6] [153755] +15:26:07 [ 37] [ 12] [57915153755] +15:26:07 [ 70] [ 3] [301] +15:26:07 ============================================================================ +15:26:07 + + +waiting on router queue for slot.... +15:26:07 Sending to : +15:26:07 ============================================================================ +15:26:07 ============================================================================ +15:26:07 Slot Id : <178> +15:26:07 Transaction Type : RESPONSE +15:26:07 Received From : +15:26:07 ============================================================================ +15:26:07 FNo. Len. Field Value +15:26:07 ============================================================================ +15:26:07 [ 1] [ 4] [0810] +15:26:07 [ 7] [ 10] [0320223755] +15:26:07 [ 11] [ 6] [153755] +15:26:07 [ 37] [ 12] [579151537550] +15:26:07 [ 39] [ 2] [00] +15:26:07 [ 70] [ 3] [810] +15:26:07 ============================================================================ +15:26:07 Calculate Source COMM Id = 6 +15:26:07 ============================================================================ +15:26:07 + + +waiting on router queue for slot.... +15:26:07 ============================================================================ +15:26:07 Slot Id : <206> +15:26:07 Transaction Type : RESPONSE +15:26:07 Received From : +15:26:07 ============================================================================ +15:26:07 FNo. Len. Field Value +15:26:07 ============================================================================ +15:26:07 [ 1] [ 4] [0210] +15:26:07 [ 2] [ 16] [2206990000130245] +15:26:07 [ 3] [ 6] [011000] +15:26:07 [ 4] [ 12] [000030000000] +15:26:07 [ 7] [ 10] [0320152600] +15:26:07 [ 11] [ 6] [783554] +15:26:07 [ 12] [ 6] [152600] +15:26:07 [ 13] [ 4] [0320] +15:26:07 [ 15] [ 4] [0320] +15:26:07 [ 18] [ 4] [6011] +15:26:07 [ 32] [ 6] [621354] +15:26:07 [ 35] [ 32] [2206990000130245=980412611173902] +15:26:07 [ 37] [ 12] [507902806367] +15:26:07 [ 38] [ 6] [428141] +15:26:07 [ 39] [ 2] [00] +15:26:07 [ 41] [ 8] [01007400] +15:26:07 [ 49] [ 3] [418] +15:26:07 [ 54] [ 40] [1001418C0000196000001002418C000019600000] +15:26:07 ============================================================================ +15:26:07 Sending to : +15:26:07 ============================================================================ +15:26:07 + + +waiting on router queue for slot.... +15:26:07 ============================================================================ +15:26:07 Slot Id : <184> +15:26:07 Transaction Type : REQUEST +15:26:07 Received From : +15:26:07 ============================================================================ +15:26:07 FNo. Len. Field Value +15:26:07 ============================================================================ +15:26:07 [ 1] [ 4] [0800] +15:26:07 [ 7] [ 10] [0320082514] +15:26:07 [ 11] [ 6] [157008] +15:26:07 [ 70] [ 3] [301] +15:26:07 ============================================================================ +15:26:07 + + +waiting on router queue for slot.... +15:26:07 Sending to : +15:26:07 ============================================================================ +15:26:07 ============================================================================ +15:26:07 Slot Id : <184> +15:26:07 Transaction Type : RESPONSE +15:26:07 Received From : +15:26:07 ============================================================================ +15:26:07 FNo. Len. Field Value +15:26:07 ============================================================================ +15:26:07 [ 1] [ 4] [0810] +15:26:07 [ 7] [ 10] [0320082514] +15:26:07 [ 11] [ 6] [157008] +15:26:07 [ 39] [ 2] [00] +15:26:07 [ 70] [ 3] [301] +15:26:07 ============================================================================ +15:26:07 Calculate Source COMM Id = 2 +15:26:07 ============================================================================ +15:26:07 + + +waiting on router queue for slot.... +15:26:08 ============================================================================ +15:26:08 Slot Id : <206> +15:26:08 Transaction Type : RESPONSE +15:26:08 Received From : +15:26:08 ============================================================================ +15:26:08 FNo. Len. Field Value +15:26:08 ============================================================================ +15:26:08 [ 1] [ 4] [0210] +15:26:08 [ 2] [ 16] [2206990000130245] +15:26:08 [ 3] [ 6] [011000] +15:26:08 [ 4] [ 12] [000030000000] +15:26:08 [ 7] [ 10] [0320152600] +15:26:08 [ 11] [ 6] [783554] +15:26:08 [ 12] [ 6] [152600] +15:26:08 [ 13] [ 4] [0320] +15:26:08 [ 15] [ 4] [0320] +15:26:08 [ 18] [ 4] [6011] +15:26:08 [ 32] [ 6] [621354] +15:26:08 [ 35] [ 32] [2206990000130245=980412611173902] +15:26:08 [ 37] [ 12] [507902806367] +15:26:08 [ 38] [ 6] [428141] +15:26:08 [ 39] [ 2] [00] +15:26:08 [ 41] [ 8] [01007400] +15:26:08 [ 49] [ 3] [418] +15:26:08 [ 54] [ 40] [1001418C0000196000001002418C000019600000] +15:26:08 ============================================================================ +15:26:08 Calculate Source COMM Id = 0 +15:26:08 ============================================================================ +15:26:08 + + +waiting on router queue for slot.... +15:26:18 ============================================================================ +15:26:18 Slot Id : <213> +15:26:18 Transaction Type : REQUEST +15:26:18 Received From : +15:26:18 ============================================================================ +15:26:18 FNo. Len. Field Value +15:26:18 ============================================================================ +15:26:18 [ 1] [ 4] [0800] +15:26:18 [ 7] [ 10] [0320082525] +15:26:18 [ 11] [ 6] [157009] +15:26:18 [ 70] [ 3] [301] +15:26:18 ============================================================================ +15:26:18 + + +waiting on router queue for slot.... +15:26:18 Sending to : +15:26:18 ============================================================================ +15:26:18 ============================================================================ +15:26:18 Slot Id : <213> +15:26:18 Transaction Type : RESPONSE +15:26:18 Received From : +15:26:18 ============================================================================ +15:26:18 FNo. Len. Field Value +15:26:18 ============================================================================ +15:26:18 [ 1] [ 4] [0810] +15:26:18 [ 7] [ 10] [0320082525] +15:26:18 [ 11] [ 6] [157009] +15:26:18 [ 39] [ 2] [00] +15:26:18 [ 70] [ 3] [301] +15:26:18 ============================================================================ +15:26:18 Calculate Source COMM Id = 2 +15:26:18 ============================================================================ +15:26:18 + + +waiting on router queue for slot.... +15:26:22 ============================================================================ +15:26:22 Slot Id : <193> +15:26:22 Transaction Type : REQUEST +15:26:22 Received From : +15:26:22 ============================================================================ +15:26:22 FNo. Len. Field Value +15:26:22 ============================================================================ +15:26:22 [ 1] [ 4] [0800] +15:26:22 [ 7] [ 10] [0320082412] +15:26:22 [ 11] [ 6] [000442] +15:26:22 [ 37] [ 12] [57915000442] +15:26:22 [ 70] [ 3] [301] +15:26:22 ============================================================================ +15:26:22 + + +waiting on router queue for slot.... +15:26:22 Sending to : +15:26:22 ============================================================================ +15:26:22 ============================================================================ +15:26:22 Slot Id : <193> +15:26:22 Transaction Type : RESPONSE +15:26:22 Received From : +15:26:22 ============================================================================ +15:26:22 FNo. Len. Field Value +15:26:22 ============================================================================ +15:26:22 [ 1] [ 4] [0810] +15:26:22 [ 7] [ 10] [0320082412] +15:26:22 [ 11] [ 6] [000442] +15:26:22 [ 37] [ 12] [579150004420] +15:26:22 [ 39] [ 2] [00] +15:26:22 [ 70] [ 3] [810] +15:26:22 ============================================================================ +15:26:22 Calculate Source COMM Id = 4 +15:26:22 ============================================================================ +15:26:22 + + +waiting on router queue for slot.... +15:26:23 ============================================================================ +15:26:23 Slot Id : <212> +15:26:23 Transaction Type : REQUEST +15:26:23 Received From : +15:26:23 ============================================================================ +15:26:23 FNo. Len. Field Value +15:26:23 ============================================================================ +15:26:23 [ 1] [ 4] [0200] +15:26:23 [ 2] [ 16] [2206990000004747] +15:26:23 [ 3] [ 6] [300000] +15:26:23 [ 4] [ 12] [000000000000] +15:26:23 [ 7] [ 10] [0320152618] +15:26:23 [ 11] [ 6] [783617] +15:26:23 [ 12] [ 6] [152618] +15:26:23 [ 13] [ 4] [0320] +15:26:23 [ 15] [ 4] [0320] +15:26:23 [ 18] [ 4] [6011] +15:26:23 [ 22] [ 3] [900] +15:26:23 [ 25] [ 2] [02] +15:26:23 [ 28] [ 9] [D00000000] +15:26:23 [ 32] [ 6] [621354] +15:26:23 [ 35] [ 32] [2206990000004747=951112617714680] +15:26:23 [ 37] [ 12] [507903058692] +15:26:23 [ 41] [ 8] [01008500] +15:26:23 [ 42] [ 15] [NATIVE ] +15:26:23 [ 43] [ 40] [MOF ChanthaboulyLAO] +15:26:23 [ 49] [ 3] [418] +15:26:23 [ 52] [ 16] [B28AB0FF0031E2CE] +15:26:23 ============================================================================ +15:26:23 + + +waiting on router queue for slot.... +15:26:23 Sending to : +15:26:23 ============================================================================ +15:26:23 Sending to : +15:26:23 ============================================================================ +15:26:23 ============================================================================ +15:26:23 Slot Id : <212> +15:26:23 Transaction Type : REQUEST +15:26:23 Received From : +15:26:23 ============================================================================ +15:26:23 FNo. Len. Field Value +15:26:23 ============================================================================ +15:26:23 [ 1] [ 4] [0200] +15:26:23 [ 2] [ 16] [2206990000004747] +15:26:23 [ 3] [ 6] [300000] +15:26:23 [ 4] [ 12] [000000000000] +15:26:23 [ 7] [ 10] [0320152618] +15:26:23 [ 11] [ 6] [783617] +15:26:23 [ 12] [ 6] [152618] +15:26:23 [ 13] [ 4] [0320] +15:26:23 [ 15] [ 4] [0320] +15:26:23 [ 18] [ 4] [6011] +15:26:23 [ 22] [ 3] [900] +15:26:23 [ 25] [ 2] [02] +15:26:23 [ 28] [ 9] [D00000000] +15:26:23 [ 32] [ 6] [621354] +15:26:23 [ 35] [ 32] [2206990000004747=951112617714680] +15:26:23 [ 37] [ 12] [507903058692] +15:26:23 [ 41] [ 8] [01008500] +15:26:23 [ 42] [ 15] [NATIVE ] +15:26:23 [ 43] [ 40] [MOF ChanthaboulyLAO] +15:26:23 [ 49] [ 3] [418] +15:26:23 [ 52] [ 16] [B28AB0FF0031E2CE] +15:26:23 ============================================================================ +15:26:23 + + +waiting on router queue for slot.... +15:26:23 Sending to : +15:26:23 ============================================================================ +15:26:23 ============================================================================ +15:26:23 Slot Id : <212> +15:26:23 Transaction Type : REQUEST +15:26:23 Received From : +15:26:23 ============================================================================ +15:26:23 FNo. Len. Field Value +15:26:23 ============================================================================ +15:26:23 [ 1] [ 4] [0200] +15:26:23 [ 2] [ 16] [2206990000004747] +15:26:23 [ 3] [ 6] [300000] +15:26:23 [ 4] [ 12] [000000000000] +15:26:23 [ 7] [ 10] [0320152618] +15:26:23 [ 11] [ 6] [783617] +15:26:23 [ 12] [ 6] [152618] +15:26:23 [ 13] [ 4] [0320] +15:26:23 [ 15] [ 4] [0320] +15:26:23 [ 18] [ 4] [6011] +15:26:23 [ 22] [ 3] [900] +15:26:23 [ 25] [ 2] [02] +15:26:23 [ 28] [ 9] [D00000000] +15:26:23 [ 32] [ 6] [621354] +15:26:23 [ 35] [ 32] [2206990000004747=951112617714680] +15:26:23 [ 37] [ 12] [507903058692] +15:26:23 [ 41] [ 8] [01008500] +15:26:23 [ 42] [ 15] [NATIVE ] +15:26:23 [ 43] [ 40] [MOF ChanthaboulyLAO] +15:26:23 [ 49] [ 3] [418] +15:26:23 [ 52] [ 16] [A679B23AA9EA4133] +15:26:23 ============================================================================ +15:26:23 + + +waiting on router queue for slot.... +15:26:23 Sending to : <1> +15:26:23 ============================================================================ +15:26:24 ============================================================================ +15:26:24 Slot Id : <221> +15:26:24 Transaction Type : REQUEST +15:26:24 Received From : +15:26:24 ============================================================================ +15:26:24 FNo. Len. Field Value +15:26:24 ============================================================================ +15:26:24 [ 1] [ 4] [0200] +15:26:24 [ 2] [ 16] [6688990040115956] +15:26:24 [ 3] [ 6] [012000] +15:26:24 [ 4] [ 12] [000100000000] +15:26:24 [ 7] [ 10] [0320152620] +15:26:24 [ 11] [ 6] [783625] +15:26:24 [ 12] [ 6] [152620] +15:26:24 [ 13] [ 4] [0320] +15:26:24 [ 15] [ 4] [0320] +15:26:24 [ 18] [ 4] [6011] +15:26:24 [ 22] [ 3] [900] +15:26:24 [ 25] [ 2] [02] +15:26:24 [ 28] [ 9] [D00002000] +15:26:24 [ 32] [ 6] [621354] +15:26:24 [ 35] [ 37] [6688990040115956=98031261471597100000] +15:26:24 [ 37] [ 12] [507902474636] +15:26:24 [ 41] [ 8] [05003000] +15:26:24 [ 42] [ 15] [NATIVE ] +15:26:24 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +15:26:24 [ 49] [ 3] [418] +15:26:24 [ 52] [ 16] [B3C683E7ECABA0C6] +15:26:24 ============================================================================ +15:26:24 + + +waiting on router queue for slot.... +15:26:24 Sending to : +15:26:24 ============================================================================ +15:26:24 Sending to : +15:26:24 ============================================================================ +15:26:25 ============================================================================ +15:26:25 Slot Id : <212> +15:26:25 Transaction Type : RESPONSE +15:26:25 Received From : +15:26:25 ============================================================================ +15:26:25 FNo. Len. Field Value +15:26:25 ============================================================================ +15:26:25 [ 1] [ 4] [0210] +15:26:25 [ 2] [ 16] [2206990000004747] +15:26:25 [ 3] [ 6] [300000] +15:26:25 [ 4] [ 12] [000000000000] +15:26:25 [ 7] [ 10] [0320152618] +15:26:25 [ 11] [ 6] [783617] +15:26:25 [ 12] [ 6] [152618] +15:26:25 [ 13] [ 4] [0320] +15:26:25 [ 15] [ 4] [0320] +15:26:25 [ 18] [ 4] [6011] +15:26:25 [ 32] [ 6] [621354] +15:26:25 [ 35] [ 32] [2206990000004747=951112617714680] +15:26:25 [ 37] [ 12] [507903058692] +15:26:25 [ 38] [ 6] [539573] +15:26:25 [ 39] [ 2] [00] +15:26:25 [ 41] [ 8] [01008500] +15:26:25 [ 49] [ 3] [418] +15:26:25 [ 54] [ 40] [0001418C0000122133000002418C000012213300] +15:26:25 ============================================================================ +15:26:25 Sending to : +15:26:25 ============================================================================ +15:26:25 + + +waiting on router queue for slot.... +15:26:25 ============================================================================ +15:26:25 Slot Id : <221> +15:26:25 Transaction Type : REQUEST +15:26:25 Received From : +15:26:25 ============================================================================ +15:26:25 FNo. Len. Field Value +15:26:25 ============================================================================ +15:26:25 [ 1] [ 4] [0200] +15:26:25 [ 2] [ 16] [6688990040115956] +15:26:25 [ 3] [ 6] [012000] +15:26:25 [ 4] [ 12] [000100000000] +15:26:25 [ 7] [ 10] [0320152620] +15:26:25 [ 11] [ 6] [783625] +15:26:25 [ 12] [ 6] [152620] +15:26:25 [ 13] [ 4] [0320] +15:26:25 [ 15] [ 4] [0320] +15:26:25 [ 18] [ 4] [6011] +15:26:25 [ 22] [ 3] [900] +15:26:25 [ 25] [ 2] [02] +15:26:25 [ 28] [ 9] [D00002000] +15:26:25 [ 32] [ 6] [621354] +15:26:25 [ 35] [ 37] [6688990040115956=98031261471597100000] +15:26:25 [ 37] [ 12] [507902474636] +15:26:25 [ 41] [ 8] [05003000] +15:26:25 [ 42] [ 15] [NATIVE ] +15:26:25 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +15:26:25 [ 49] [ 3] [418] +15:26:25 [ 52] [ 16] [B3C683E7ECABA0C6] +15:26:25 ============================================================================ +15:26:25 + + +waiting on router queue for slot.... +15:26:25 Sending to : +15:26:25 ============================================================================ +15:26:25 ============================================================================ +15:26:25 Slot Id : <221> +15:26:25 Transaction Type : REQUEST +15:26:25 Received From : +15:26:25 ============================================================================ +15:26:25 FNo. Len. Field Value +15:26:25 ============================================================================ +15:26:25 [ 1] [ 4] [0200] +15:26:25 [ 2] [ 16] [6688990040115956] +15:26:25 [ 3] [ 6] [012000] +15:26:25 [ 4] [ 12] [000100000000] +15:26:25 [ 7] [ 10] [0320152620] +15:26:25 [ 11] [ 6] [783625] +15:26:25 [ 12] [ 6] [152620] +15:26:25 [ 13] [ 4] [0320] +15:26:25 [ 15] [ 4] [0320] +15:26:25 [ 18] [ 4] [6011] +15:26:25 [ 22] [ 3] [900] +15:26:25 [ 25] [ 2] [02] +15:26:25 [ 28] [ 9] [D00002000] +15:26:25 [ 32] [ 6] [621354] +15:26:25 [ 35] [ 37] [6688990040115956=98031261471597100000] +15:26:25 [ 37] [ 12] [507902474636] +15:26:25 [ 41] [ 8] [05003000] +15:26:25 [ 42] [ 15] [NATIVE ] +15:26:25 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +15:26:25 [ 49] [ 3] [418] +15:26:25 [ 52] [ 16] [255B73A21EC9353F] +15:26:25 ============================================================================ +15:26:25 + + +waiting on router queue for slot.... +15:26:25 Sending to : <4> +15:26:25 ============================================================================ +15:26:26 ============================================================================ +15:26:26 Slot Id : <221> +15:26:26 Transaction Type : RESPONSE +15:26:26 Received From : +15:26:26 ============================================================================ +15:26:26 FNo. Len. Field Value +15:26:26 ============================================================================ +15:26:26 [ 1] [ 4] [0210] +15:26:26 [ 2] [ 16] [6688990040115956] +15:26:26 [ 3] [ 6] [012000] +15:26:26 [ 4] [ 12] [000100000000] +15:26:26 [ 11] [ 6] [783625] +15:26:26 [ 12] [ 6] [152620] +15:26:26 [ 15] [ 4] [0320] +15:26:26 [ 18] [ 4] [6011] +15:26:26 [ 32] [ 6] [621354] +15:26:26 [ 35] [ 37] [6688990040115956=98031261471597100000] +15:26:26 [ 37] [ 12] [507902474636] +15:26:26 [ 38] [ 6] [353622] +15:26:26 [ 39] [ 2] [00] +15:26:26 [ 41] [ 8] [05003000] +15:26:26 [ 49] [ 3] [418] +15:26:26 [ 54] [ 20] [2002418C000088839452] +15:26:26 ============================================================================ +15:26:26 Sending to : +15:26:26 ============================================================================ +15:26:26 + + +waiting on router queue for slot.... +15:26:26 ============================================================================ +15:26:26 Slot Id : <212> +15:26:26 Transaction Type : RESPONSE +15:26:26 Received From : +15:26:26 ============================================================================ +15:26:26 FNo. Len. Field Value +15:26:26 ============================================================================ +15:26:26 [ 1] [ 4] [0210] +15:26:26 [ 2] [ 16] [2206990000004747] +15:26:26 [ 3] [ 6] [300000] +15:26:26 [ 4] [ 12] [000000000000] +15:26:26 [ 7] [ 10] [0320152618] +15:26:26 [ 11] [ 6] [783617] +15:26:26 [ 12] [ 6] [152618] +15:26:26 [ 13] [ 4] [0320] +15:26:26 [ 15] [ 4] [0320] +15:26:26 [ 18] [ 4] [6011] +15:26:26 [ 32] [ 6] [621354] +15:26:26 [ 35] [ 32] [2206990000004747=951112617714680] +15:26:26 [ 37] [ 12] [507903058692] +15:26:26 [ 38] [ 6] [539573] +15:26:26 [ 39] [ 2] [00] +15:26:26 [ 41] [ 8] [01008500] +15:26:26 [ 49] [ 3] [418] +15:26:26 [ 54] [ 40] [0001418C0000122133000002418C000012213300] +15:26:26 ============================================================================ +15:26:26 Calculate Source COMM Id = 0 +15:26:26 ============================================================================ +15:26:26 + + +waiting on router queue for slot.... +15:26:28 ============================================================================ +15:26:28 Slot Id : <221> +15:26:28 Transaction Type : RESPONSE +15:26:28 Received From : +15:26:28 ============================================================================ +15:26:28 FNo. Len. Field Value +15:26:28 ============================================================================ +15:26:28 [ 1] [ 4] [0210] +15:26:28 [ 2] [ 16] [6688990040115956] +15:26:28 [ 3] [ 6] [012000] +15:26:28 [ 4] [ 12] [000100000000] +15:26:28 [ 11] [ 6] [783625] +15:26:28 [ 12] [ 6] [152620] +15:26:28 [ 15] [ 4] [0320] +15:26:28 [ 18] [ 4] [6011] +15:26:28 [ 32] [ 6] [621354] +15:26:28 [ 35] [ 37] [6688990040115956=98031261471597100000] +15:26:28 [ 37] [ 12] [507902474636] +15:26:28 [ 38] [ 6] [353622] +15:26:28 [ 39] [ 2] [00] +15:26:28 [ 41] [ 8] [05003000] +15:26:28 [ 49] [ 3] [418] +15:26:28 [ 54] [ 20] [2002418C000088839452] +15:26:28 ============================================================================ +15:26:28 Calculate Source COMM Id = 0 +15:26:28 ============================================================================ +15:26:28 + + +waiting on router queue for slot.... +15:26:29 ============================================================================ +15:26:29 Slot Id : <207> +15:26:29 Transaction Type : REQUEST +15:26:29 Received From : +15:26:29 ============================================================================ +15:26:29 FNo. Len. Field Value +15:26:29 ============================================================================ +15:26:29 [ 1] [ 4] [0800] +15:26:29 [ 7] [ 10] [0320082537] +15:26:29 [ 11] [ 6] [157010] +15:26:29 [ 70] [ 3] [301] +15:26:29 ============================================================================ +15:26:29 + + +waiting on router queue for slot.... +15:26:29 Sending to : +15:26:29 ============================================================================ +15:26:29 ============================================================================ +15:26:29 Slot Id : <207> +15:26:29 Transaction Type : RESPONSE +15:26:29 Received From : +15:26:29 ============================================================================ +15:26:29 FNo. Len. Field Value +15:26:29 ============================================================================ +15:26:29 [ 1] [ 4] [0810] +15:26:29 [ 7] [ 10] [0320082537] +15:26:29 [ 11] [ 6] [157010] +15:26:29 [ 39] [ 2] [00] +15:26:29 [ 70] [ 3] [301] +15:26:29 ============================================================================ +15:26:29 Calculate Source COMM Id = 2 +15:26:29 ============================================================================ +15:26:29 + + +waiting on router queue for slot.... +15:26:31 ============================================================================ +15:26:31 Slot Id : <183> +15:26:31 Transaction Type : REQUEST +15:26:31 Received From : +15:26:31 ============================================================================ +15:26:31 FNo. Len. Field Value +15:26:31 ============================================================================ +15:26:31 [ 1] [ 4] [0800] +15:26:31 [ 2] [ 5] [02531] +15:26:31 [ 3] [ 6] [579158] +15:26:31 [ 7] [ 10] [0320082631] +15:26:31 [ 11] [ 6] [807308] +15:26:31 [ 15] [ 10] [0320082631] +15:26:31 [ 37] [ 11] [57915807308] +15:26:31 [ 70] [ 3] [001] +15:26:31 ============================================================================ +15:26:31 + + +waiting on router queue for slot.... +15:26:31 ============================================================================ +15:26:31 Slot Id : <183> +15:26:31 Transaction Type : RESPONSE +15:26:31 Received From : +15:26:31 ============================================================================ +15:26:31 FNo. Len. Field Value +15:26:31 ============================================================================ +15:26:31 [ 1] [ 4] [0810] +15:26:31 [ 7] [ 10] [0320082631] +15:26:31 [ 11] [ 6] [807308] +15:26:31 [ 15] [ 4] [0320] +15:26:31 [ 37] [ 12] [57915807308] +15:26:31 [ 39] [ 2] [00] +15:26:31 [ 70] [ 3] [001] +15:26:31 ============================================================================ +15:26:31 Sending to : +15:26:31 ============================================================================ +15:26:31 + + +waiting on router queue for slot.... +15:26:35 ============================================================================ +15:26:35 Slot Id : <230> +15:26:35 Transaction Type : REQUEST +15:26:35 Received From : +15:26:35 ============================================================================ +15:26:35 FNo. Len. Field Value +15:26:35 ============================================================================ +15:26:35 [ 1] [ 4] [0200] +15:26:35 [ 2] [ 16] [6213541000435050] +15:26:35 [ 3] [ 6] [010000] +15:26:35 [ 4] [ 12] [000200000000] +15:26:35 [ 7] [ 10] [0320082542] +15:26:35 [ 11] [ 6] [270012] +15:26:35 [ 12] [ 6] [152542] +15:26:35 [ 13] [ 4] [0320] +15:26:35 [ 14] [ 4] [4912] +15:26:35 [ 15] [ 4] [0320] +15:26:35 [ 18] [ 4] [6011] +15:26:35 [ 19] [ 3] [418] +15:26:35 [ 22] [ 3] [021] +15:26:35 [ 25] [ 2] [01] +15:26:35 [ 28] [ 9] [D00002000] +15:26:35 [ 32] [ 6] [180893] +15:26:35 [ 35] [ 32] [6213541000435050=491212013505813] +15:26:35 [ 37] [ 12] [507908270012] +15:26:35 [ 41] [ 8] [0401XSBR] +15:26:35 [ 42] [ 15] [999999 ] +15:26:35 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +15:26:35 [ 49] [ 3] [418] +15:26:35 [ 52] [ 16] [E79B7FC42A1759DF] +15:26:35 ============================================================================ +15:26:35 + + +waiting on router queue for slot.... +15:26:35 Sending to : +15:26:35 ============================================================================ +15:26:35 Sending to : +15:26:35 ============================================================================ +15:26:35 ============================================================================ +15:26:35 Slot Id : <230> +15:26:35 Transaction Type : REQUEST +15:26:35 Received From : +15:26:35 ============================================================================ +15:26:35 FNo. Len. Field Value +15:26:35 ============================================================================ +15:26:35 [ 1] [ 4] [0200] +15:26:35 [ 2] [ 16] [6213541000435050] +15:26:35 [ 3] [ 6] [010000] +15:26:35 [ 4] [ 12] [000200000000] +15:26:35 [ 7] [ 10] [0320082542] +15:26:35 [ 11] [ 6] [270012] +15:26:35 [ 12] [ 6] [152542] +15:26:35 [ 13] [ 4] [0320] +15:26:35 [ 14] [ 4] [4912] +15:26:35 [ 15] [ 4] [0320] +15:26:35 [ 18] [ 4] [6011] +15:26:35 [ 19] [ 3] [418] +15:26:35 [ 22] [ 3] [021] +15:26:35 [ 25] [ 2] [01] +15:26:35 [ 28] [ 9] [D00002000] +15:26:35 [ 32] [ 6] [180893] +15:26:35 [ 35] [ 32] [6213541000435050=491212013505813] +15:26:35 [ 37] [ 12] [507908270012] +15:26:35 [ 41] [ 8] [0401XSBR] +15:26:35 [ 42] [ 15] [999999 ] +15:26:35 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +15:26:35 [ 49] [ 3] [418] +15:26:35 [ 52] [ 16] [E79B7FC42A1759DF] +15:26:35 ============================================================================ +15:26:35 + + +waiting on router queue for slot.... +15:26:35 Sending to : +15:26:35 ============================================================================ +15:26:35 ============================================================================ +15:26:35 Slot Id : <230> +15:26:35 Transaction Type : REQUEST +15:26:35 Received From : +15:26:35 ============================================================================ +15:26:35 FNo. Len. Field Value +15:26:35 ============================================================================ +15:26:35 [ 1] [ 4] [0200] +15:26:35 [ 2] [ 16] [6213541000435050] +15:26:35 [ 3] [ 6] [010000] +15:26:35 [ 4] [ 12] [000200000000] +15:26:35 [ 7] [ 10] [0320082542] +15:26:35 [ 11] [ 6] [270012] +15:26:35 [ 12] [ 6] [152542] +15:26:35 [ 13] [ 4] [0320] +15:26:35 [ 14] [ 4] [4912] +15:26:35 [ 15] [ 4] [0320] +15:26:35 [ 18] [ 4] [6011] +15:26:35 [ 19] [ 3] [418] +15:26:35 [ 22] [ 3] [021] +15:26:35 [ 25] [ 2] [01] +15:26:35 [ 28] [ 9] [D00002000] +15:26:35 [ 32] [ 6] [180893] +15:26:35 [ 35] [ 32] [6213541000435050=491212013505813] +15:26:35 [ 37] [ 12] [507908270012] +15:26:35 [ 41] [ 8] [0401XSBR] +15:26:35 [ 42] [ 15] [999999 ] +15:26:35 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +15:26:35 [ 49] [ 3] [418] +15:26:35 [ 52] [ 16] [CBA85BA0F2CC5FD2] +15:26:35 ============================================================================ +15:26:35 + + +waiting on router queue for slot.... +15:26:35 Sending to : <0> +15:26:35 ============================================================================ +15:26:35 ============================================================================ +15:26:35 Slot Id : <230> +15:26:35 Transaction Type : RESPONSE +15:26:35 Received From : +15:26:35 ============================================================================ +15:26:35 FNo. Len. Field Value +15:26:35 ============================================================================ +15:26:35 [ 1] [ 4] [0210] +15:26:35 [ 2] [ 16] [6213541000435050] +15:26:35 [ 3] [ 6] [010000] +15:26:35 [ 4] [ 12] [000200000000] +15:26:35 [ 7] [ 10] [0320082542] +15:26:35 [ 11] [ 6] [270012] +15:26:35 [ 12] [ 6] [152542] +15:26:35 [ 13] [ 4] [0320] +15:26:35 [ 15] [ 4] [0320] +15:26:35 [ 18] [ 4] [6011] +15:26:35 [ 19] [ 3] [418] +15:26:35 [ 22] [ 3] [021] +15:26:35 [ 32] [ 6] [180893] +15:26:35 [ 35] [ 32] [6213541000435050=491212013505813] +15:26:35 [ 37] [ 12] [507908270012] +15:26:35 [ 39] [ 2] [61] +15:26:35 [ 41] [ 8] [0401XSBR] +15:26:35 [ 49] [ 3] [418] +15:26:35 ============================================================================ +15:26:35 Sending to : +15:26:35 ============================================================================ +15:26:35 + + +waiting on router queue for slot.... +15:26:36 ============================================================================ +15:26:36 Slot Id : <230> +15:26:36 Transaction Type : RESPONSE +15:26:36 Received From : +15:26:36 ============================================================================ +15:26:36 FNo. Len. Field Value +15:26:36 ============================================================================ +15:26:36 [ 1] [ 4] [0210] +15:26:36 [ 2] [ 16] [6213541000435050] +15:26:36 [ 3] [ 6] [010000] +15:26:36 [ 4] [ 12] [000200000000] +15:26:36 [ 7] [ 10] [0320082542] +15:26:36 [ 11] [ 6] [270012] +15:26:36 [ 12] [ 6] [152542] +15:26:36 [ 13] [ 4] [0320] +15:26:36 [ 15] [ 4] [0320] +15:26:36 [ 18] [ 4] [6011] +15:26:36 [ 19] [ 3] [418] +15:26:36 [ 22] [ 3] [021] +15:26:36 [ 32] [ 6] [180893] +15:26:36 [ 35] [ 32] [6213541000435050=491212013505813] +15:26:36 [ 37] [ 12] [507908270012] +15:26:36 [ 39] [ 2] [61] +15:26:36 [ 41] [ 8] [0401XSBR] +15:26:36 [ 49] [ 3] [418] +15:26:36 ============================================================================ +15:26:36 Calculate Source COMM Id = 2 +15:26:36 ============================================================================ +15:26:36 + + +waiting on router queue for slot.... +15:26:50 ============================================================================ +15:26:50 Slot Id : <208> +15:26:50 Transaction Type : REQUEST +15:26:50 Received From : +15:26:50 ============================================================================ +15:26:50 FNo. Len. Field Value +15:26:50 ============================================================================ +15:26:50 [ 1] [ 4] [0800] +15:26:50 [ 7] [ 10] [0320082557] +15:26:50 [ 11] [ 6] [157011] +15:26:50 [ 70] [ 3] [301] +15:26:50 ============================================================================ +15:26:50 + + +waiting on router queue for slot.... +15:26:50 Sending to : +15:26:50 ============================================================================ +15:26:50 ============================================================================ +15:26:50 Slot Id : <208> +15:26:50 Transaction Type : RESPONSE +15:26:50 Received From : +15:26:50 ============================================================================ +15:26:50 FNo. Len. Field Value +15:26:50 ============================================================================ +15:26:50 [ 1] [ 4] [0810] +15:26:50 [ 7] [ 10] [0320082557] +15:26:50 [ 11] [ 6] [157011] +15:26:50 [ 39] [ 2] [00] +15:26:50 [ 70] [ 3] [301] +15:26:50 ============================================================================ +15:26:50 Calculate Source COMM Id = 2 +15:26:50 ============================================================================ +15:26:50 + + +waiting on router queue for slot.... +15:27:07 ============================================================================ +15:27:07 Slot Id : <211> +15:27:07 Transaction Type : REQUEST +15:27:07 Received From : +15:27:07 ============================================================================ +15:27:07 FNo. Len. Field Value +15:27:07 ============================================================================ +15:27:07 [ 1] [ 4] [0800] +15:27:07 [ 7] [ 10] [0320082614] +15:27:07 [ 11] [ 6] [157012] +15:27:07 [ 70] [ 3] [301] +15:27:07 ============================================================================ +15:27:07 + + +waiting on router queue for slot.... +15:27:07 Sending to : +15:27:07 ============================================================================ +15:27:07 ============================================================================ +15:27:07 Slot Id : <211> +15:27:07 Transaction Type : RESPONSE +15:27:07 Received From : +15:27:07 ============================================================================ +15:27:07 FNo. Len. Field Value +15:27:07 ============================================================================ +15:27:07 [ 1] [ 4] [0810] +15:27:07 [ 7] [ 10] [0320082614] +15:27:07 [ 11] [ 6] [157012] +15:27:07 [ 39] [ 2] [00] +15:27:07 [ 70] [ 3] [301] +15:27:07 ============================================================================ +15:27:07 Calculate Source COMM Id = 2 +15:27:07 ============================================================================ +15:27:07 + + +waiting on router queue for slot.... +15:27:12 ============================================================================ +15:27:12 Slot Id : <169> +15:27:12 Transaction Type : REQUEST +15:27:12 Received From : +15:27:12 ============================================================================ +15:27:12 FNo. Len. Field Value +15:27:12 ============================================================================ +15:27:12 [ 1] [ 4] [0800] +15:27:12 [ 7] [ 10] [0320223900] +15:27:12 [ 11] [ 6] [153900] +15:27:12 [ 37] [ 12] [57915153900] +15:27:12 [ 70] [ 3] [301] +15:27:12 ============================================================================ +15:27:12 + + +waiting on router queue for slot.... +15:27:12 Sending to : +15:27:12 ============================================================================ +15:27:12 ============================================================================ +15:27:12 Slot Id : <169> +15:27:12 Transaction Type : RESPONSE +15:27:12 Received From : +15:27:12 ============================================================================ +15:27:12 FNo. Len. Field Value +15:27:12 ============================================================================ +15:27:12 [ 1] [ 4] [0810] +15:27:12 [ 7] [ 10] [0320223900] +15:27:12 [ 11] [ 6] [153900] +15:27:12 [ 37] [ 12] [579151539000] +15:27:12 [ 39] [ 2] [00] +15:27:12 [ 70] [ 3] [810] +15:27:12 ============================================================================ +15:27:12 Calculate Source COMM Id = 6 +15:27:12 ============================================================================ +15:27:12 + + +waiting on router queue for slot.... +15:27:17 ============================================================================ +15:27:17 Slot Id : <205> +15:27:17 Transaction Type : REQUEST +15:27:17 Received From : +15:27:17 ============================================================================ +15:27:17 FNo. Len. Field Value +15:27:17 ============================================================================ +15:27:17 [ 1] [ 4] [0800] +15:27:17 [ 7] [ 10] [0320082624] +15:27:17 [ 11] [ 6] [157013] +15:27:17 [ 70] [ 3] [301] +15:27:17 ============================================================================ +15:27:17 + + +waiting on router queue for slot.... +15:27:17 Sending to : +15:27:17 ============================================================================ +15:27:17 ============================================================================ +15:27:17 Slot Id : <205> +15:27:17 Transaction Type : RESPONSE +15:27:17 Received From : +15:27:17 ============================================================================ +15:27:17 FNo. Len. Field Value +15:27:17 ============================================================================ +15:27:17 [ 1] [ 4] [0810] +15:27:17 [ 7] [ 10] [0320082624] +15:27:17 [ 11] [ 6] [157013] +15:27:17 [ 39] [ 2] [00] +15:27:17 [ 70] [ 3] [301] +15:27:17 ============================================================================ +15:27:17 Calculate Source COMM Id = 2 +15:27:17 ============================================================================ +15:27:17 + + +waiting on router queue for slot.... +15:27:20 ============================================================================ +15:27:20 Slot Id : <185> +15:27:20 Transaction Type : REQUEST +15:27:20 Received From : +15:27:20 ============================================================================ +15:27:20 FNo. Len. Field Value +15:27:20 ============================================================================ +15:27:20 [ 1] [ 4] [0200] +15:27:20 [ 2] [ 16] [6213541000435050] +15:27:20 [ 3] [ 6] [010000] +15:27:20 [ 4] [ 12] [000100000000] +15:27:20 [ 7] [ 10] [0320082627] +15:27:20 [ 11] [ 6] [270017] +15:27:20 [ 12] [ 6] [152627] +15:27:20 [ 13] [ 4] [0320] +15:27:20 [ 14] [ 4] [4912] +15:27:20 [ 15] [ 4] [0320] +15:27:20 [ 18] [ 4] [6011] +15:27:20 [ 19] [ 3] [418] +15:27:20 [ 22] [ 3] [021] +15:27:20 [ 25] [ 2] [01] +15:27:20 [ 28] [ 9] [D00002000] +15:27:20 [ 32] [ 6] [180893] +15:27:20 [ 35] [ 32] [6213541000435050=491212013505813] +15:27:20 [ 37] [ 12] [507908270017] +15:27:20 [ 41] [ 8] [0401XSBR] +15:27:20 [ 42] [ 15] [999999 ] +15:27:20 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +15:27:20 [ 49] [ 3] [418] +15:27:20 [ 52] [ 16] [E79B7FC42A1759DF] +15:27:20 ============================================================================ +15:27:20 + + +waiting on router queue for slot.... +15:27:20 Sending to : +15:27:20 ============================================================================ +15:27:20 Sending to : +15:27:20 ============================================================================ +15:27:21 ============================================================================ +15:27:21 Slot Id : <185> +15:27:21 Transaction Type : REQUEST +15:27:21 Received From : +15:27:21 ============================================================================ +15:27:21 FNo. Len. Field Value +15:27:21 ============================================================================ +15:27:21 [ 1] [ 4] [0200] +15:27:21 [ 2] [ 16] [6213541000435050] +15:27:21 [ 3] [ 6] [010000] +15:27:21 [ 4] [ 12] [000100000000] +15:27:21 [ 7] [ 10] [0320082627] +15:27:21 [ 11] [ 6] [270017] +15:27:21 [ 12] [ 6] [152627] +15:27:21 [ 13] [ 4] [0320] +15:27:21 [ 14] [ 4] [4912] +15:27:21 [ 15] [ 4] [0320] +15:27:21 [ 18] [ 4] [6011] +15:27:21 [ 19] [ 3] [418] +15:27:21 [ 22] [ 3] [021] +15:27:21 [ 25] [ 2] [01] +15:27:21 [ 28] [ 9] [D00002000] +15:27:21 [ 32] [ 6] [180893] +15:27:21 [ 35] [ 32] [6213541000435050=491212013505813] +15:27:21 [ 37] [ 12] [507908270017] +15:27:21 [ 41] [ 8] [0401XSBR] +15:27:21 [ 42] [ 15] [999999 ] +15:27:21 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +15:27:21 [ 49] [ 3] [418] +15:27:21 [ 52] [ 16] [E79B7FC42A1759DF] +15:27:21 ============================================================================ +15:27:21 + + +waiting on router queue for slot.... +15:27:21 Sending to : +15:27:21 ============================================================================ +15:27:21 ============================================================================ +15:27:21 Slot Id : <185> +15:27:21 Transaction Type : REQUEST +15:27:21 Received From : +15:27:21 ============================================================================ +15:27:21 FNo. Len. Field Value +15:27:21 ============================================================================ +15:27:21 [ 1] [ 4] [0200] +15:27:21 [ 2] [ 16] [6213541000435050] +15:27:21 [ 3] [ 6] [010000] +15:27:21 [ 4] [ 12] [000100000000] +15:27:21 [ 7] [ 10] [0320082627] +15:27:21 [ 11] [ 6] [270017] +15:27:21 [ 12] [ 6] [152627] +15:27:21 [ 13] [ 4] [0320] +15:27:21 [ 14] [ 4] [4912] +15:27:21 [ 15] [ 4] [0320] +15:27:21 [ 18] [ 4] [6011] +15:27:21 [ 19] [ 3] [418] +15:27:21 [ 22] [ 3] [021] +15:27:21 [ 25] [ 2] [01] +15:27:21 [ 28] [ 9] [D00002000] +15:27:21 [ 32] [ 6] [180893] +15:27:21 [ 35] [ 32] [6213541000435050=491212013505813] +15:27:21 [ 37] [ 12] [507908270017] +15:27:21 [ 41] [ 8] [0401XSBR] +15:27:21 [ 42] [ 15] [999999 ] +15:27:21 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +15:27:21 [ 49] [ 3] [418] +15:27:21 [ 52] [ 16] [CBA85BA0F2CC5FD2] +15:27:21 ============================================================================ +15:27:21 + + +waiting on router queue for slot.... +15:27:21 Sending to : <0> +15:27:21 ============================================================================ +15:27:21 ============================================================================ +15:27:21 Slot Id : <185> +15:27:21 Transaction Type : RESPONSE +15:27:21 Received From : +15:27:21 ============================================================================ +15:27:21 FNo. Len. Field Value +15:27:21 ============================================================================ +15:27:21 [ 1] [ 4] [0210] +15:27:21 [ 2] [ 16] [6213541000435050] +15:27:21 [ 3] [ 6] [010000] +15:27:21 [ 4] [ 12] [000100000000] +15:27:21 [ 7] [ 10] [0320082627] +15:27:21 [ 11] [ 6] [270017] +15:27:21 [ 12] [ 6] [152627] +15:27:21 [ 13] [ 4] [0320] +15:27:21 [ 15] [ 4] [0320] +15:27:21 [ 18] [ 4] [6011] +15:27:21 [ 19] [ 3] [418] +15:27:21 [ 32] [ 6] [180893] +15:27:21 [ 35] [ 32] [6213541000435050=491212013505813] +15:27:21 [ 37] [ 12] [507908270017] +15:27:21 [ 38] [ 6] [486923] +15:27:21 [ 39] [ 2] [00] +15:27:21 [ 41] [ 8] [0401XSBR] +15:27:21 [ 49] [ 3] [418] +15:27:21 [ 54] [ 40] [0001418C0016982736910002418C001698273691] +15:27:21 ============================================================================ +15:27:21 Sending to : +15:27:21 ============================================================================ +15:27:21 + + +waiting on router queue for slot.... +15:27:23 ============================================================================ +15:27:23 Slot Id : <185> +15:27:23 Transaction Type : RESPONSE +15:27:23 Received From : +15:27:23 ============================================================================ +15:27:23 FNo. Len. Field Value +15:27:23 ============================================================================ +15:27:23 [ 1] [ 4] [0210] +15:27:23 [ 2] [ 16] [6213541000435050] +15:27:23 [ 3] [ 6] [010000] +15:27:23 [ 4] [ 12] [000100000000] +15:27:23 [ 7] [ 10] [0320082627] +15:27:23 [ 11] [ 6] [270017] +15:27:23 [ 12] [ 6] [152627] +15:27:23 [ 13] [ 4] [0320] +15:27:23 [ 15] [ 4] [0320] +15:27:23 [ 18] [ 4] [6011] +15:27:23 [ 19] [ 3] [418] +15:27:23 [ 32] [ 6] [180893] +15:27:23 [ 35] [ 32] [6213541000435050=491212013505813] +15:27:23 [ 37] [ 12] [507908270017] +15:27:23 [ 38] [ 6] [486923] +15:27:23 [ 39] [ 2] [00] +15:27:23 [ 41] [ 8] [0401XSBR] +15:27:23 [ 49] [ 3] [418] +15:27:23 [ 54] [ 40] [0001418C0016982736910002418C001698273691] +15:27:23 ============================================================================ +15:27:23 Calculate Source COMM Id = 2 +15:27:23 ============================================================================ +15:27:23 + + +waiting on router queue for slot.... +15:27:33 ============================================================================ +15:27:33 Slot Id : <232> +15:27:33 Transaction Type : REQUEST +15:27:33 Received From : +15:27:33 ============================================================================ +15:27:33 FNo. Len. Field Value +15:27:33 ============================================================================ +15:27:33 [ 1] [ 4] [0800] +15:27:33 [ 2] [ 5] [02531] +15:27:33 [ 3] [ 6] [579158] +15:27:33 [ 7] [ 10] [0320082733] +15:27:33 [ 11] [ 6] [807309] +15:27:33 [ 15] [ 10] [0320082733] +15:27:33 [ 37] [ 11] [57915807309] +15:27:33 [ 70] [ 3] [001] +15:27:33 ============================================================================ +15:27:33 + + +waiting on router queue for slot.... +15:27:33 ============================================================================ +15:27:33 Slot Id : <232> +15:27:33 Transaction Type : RESPONSE +15:27:33 Received From : +15:27:33 ============================================================================ +15:27:33 FNo. Len. Field Value +15:27:33 ============================================================================ +15:27:33 [ 1] [ 4] [0810] +15:27:33 [ 7] [ 10] [0320082733] +15:27:33 [ 11] [ 6] [807309] +15:27:33 [ 15] [ 4] [0320] +15:27:33 [ 37] [ 12] [57915807309] +15:27:33 [ 39] [ 2] [00] +15:27:33 [ 70] [ 3] [001] +15:27:33 ============================================================================ +15:27:33 Sending to : +15:27:33 ============================================================================ +15:27:33 + + +waiting on router queue for slot.... +15:27:33 ============================================================================ +15:27:33 Slot Id : <189> +15:27:33 Transaction Type : REQUEST +15:27:33 Received From : +15:27:33 ============================================================================ +15:27:33 FNo. Len. Field Value +15:27:33 ============================================================================ +15:27:33 [ 1] [ 4] [0200] +15:27:33 [ 2] [ 16] [6213545000204853] +15:27:33 [ 3] [ 6] [010000] +15:27:33 [ 4] [ 12] [000020000000] +15:27:33 [ 7] [ 10] [0320152523] +15:27:33 [ 11] [ 6] [950035] +15:27:33 [ 12] [ 6] [152523] +15:27:33 [ 13] [ 4] [0320] +15:27:33 [ 15] [ 4] [0320] +15:27:33 [ 18] [ 4] [6011] +15:27:33 [ 19] [ 3] [418] +15:27:33 [ 22] [ 3] [021] +15:27:33 [ 25] [ 2] [01] +15:27:33 [ 28] [ 9] [D00002000] +15:27:33 [ 32] [ 6] [668899] +15:27:33 [ 35] [ 32] [6213545000204853=491212010485368] +15:27:33 [ 37] [ 12] [507902556307] +15:27:33 [ 41] [ 8] [03016004] +15:27:33 [ 42] [ 15] [APT ] +15:27:33 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +15:27:33 [ 49] [ 3] [418] +15:27:33 [ 52] [ 16] [598FCBF58460745D] +15:27:33 ============================================================================ +15:27:33 + + +waiting on router queue for slot.... +15:27:33 Sending to : +15:27:33 ============================================================================ +15:27:33 Sending to : +15:27:33 ============================================================================ +15:27:33 ============================================================================ +15:27:33 Slot Id : <189> +15:27:33 Transaction Type : REQUEST +15:27:33 Received From : +15:27:33 ============================================================================ +15:27:33 FNo. Len. Field Value +15:27:33 ============================================================================ +15:27:33 [ 1] [ 4] [0200] +15:27:33 [ 2] [ 16] [6213545000204853] +15:27:33 [ 3] [ 6] [010000] +15:27:33 [ 4] [ 12] [000020000000] +15:27:33 [ 7] [ 10] [0320152523] +15:27:33 [ 11] [ 6] [950035] +15:27:33 [ 12] [ 6] [152523] +15:27:33 [ 13] [ 4] [0320] +15:27:33 [ 15] [ 4] [0320] +15:27:33 [ 18] [ 4] [6011] +15:27:33 [ 19] [ 3] [418] +15:27:33 [ 22] [ 3] [021] +15:27:33 [ 25] [ 2] [01] +15:27:33 [ 28] [ 9] [D00002000] +15:27:33 [ 32] [ 6] [668899] +15:27:33 [ 35] [ 32] [6213545000204853=491212010485368] +15:27:33 [ 37] [ 12] [507902556307] +15:27:33 [ 41] [ 8] [03016004] +15:27:33 [ 42] [ 15] [APT ] +15:27:33 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +15:27:33 [ 49] [ 3] [418] +15:27:33 [ 52] [ 16] [598FCBF58460745D] +15:27:33 ============================================================================ +15:27:33 + + +waiting on router queue for slot.... +15:27:33 Sending to : +15:27:33 ============================================================================ +15:27:33 ============================================================================ +15:27:33 Slot Id : <189> +15:27:33 Transaction Type : REQUEST +15:27:33 Received From : +15:27:33 ============================================================================ +15:27:33 FNo. Len. Field Value +15:27:33 ============================================================================ +15:27:33 [ 1] [ 4] [0200] +15:27:33 [ 2] [ 16] [6213545000204853] +15:27:33 [ 3] [ 6] [010000] +15:27:33 [ 4] [ 12] [000020000000] +15:27:33 [ 7] [ 10] [0320152523] +15:27:33 [ 11] [ 6] [950035] +15:27:33 [ 12] [ 6] [152523] +15:27:33 [ 13] [ 4] [0320] +15:27:33 [ 15] [ 4] [0320] +15:27:33 [ 18] [ 4] [6011] +15:27:33 [ 19] [ 3] [418] +15:27:33 [ 22] [ 3] [021] +15:27:33 [ 25] [ 2] [01] +15:27:33 [ 28] [ 9] [D00002000] +15:27:33 [ 32] [ 6] [668899] +15:27:33 [ 35] [ 32] [6213545000204853=491212010485368] +15:27:33 [ 37] [ 12] [507902556307] +15:27:33 [ 41] [ 8] [03016004] +15:27:33 [ 42] [ 15] [APT ] +15:27:33 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +15:27:33 [ 49] [ 3] [418] +15:27:33 [ 52] [ 16] [CEA39DCEA19A703D] +15:27:33 ============================================================================ +15:27:33 + + +waiting on router queue for slot.... +15:27:33 Sending to : <0> +15:27:33 ============================================================================ +15:27:34 ============================================================================ +15:27:34 Slot Id : <189> +15:27:34 Transaction Type : RESPONSE +15:27:34 Received From : +15:27:34 ============================================================================ +15:27:34 FNo. Len. Field Value +15:27:34 ============================================================================ +15:27:34 [ 1] [ 4] [0210] +15:27:34 [ 2] [ 16] [6213545000204853] +15:27:34 [ 3] [ 6] [010000] +15:27:34 [ 4] [ 12] [000020000000] +15:27:34 [ 7] [ 10] [0320152523] +15:27:34 [ 11] [ 6] [950035] +15:27:34 [ 12] [ 6] [152523] +15:27:34 [ 13] [ 4] [0320] +15:27:34 [ 15] [ 4] [0320] +15:27:34 [ 18] [ 4] [6011] +15:27:34 [ 19] [ 3] [418] +15:27:34 [ 32] [ 6] [668899] +15:27:34 [ 35] [ 32] [6213545000204853=491212010485368] +15:27:34 [ 37] [ 12] [507902556307] +15:27:34 [ 38] [ 6] [950035] +15:27:34 [ 39] [ 2] [51] +15:27:34 [ 41] [ 8] [03016004] +15:27:34 [ 49] [ 3] [418] +15:27:34 [ 54] [ 40] [0001418C0000246685810002418C000024668581] +15:27:34 ============================================================================ +15:27:34 Sending to : +15:27:34 ============================================================================ +15:27:34 + + +waiting on router queue for slot.... +15:27:35 ============================================================================ +15:27:35 Slot Id : <189> +15:27:35 Transaction Type : RESPONSE +15:27:35 Received From : +15:27:35 ============================================================================ +15:27:35 FNo. Len. Field Value +15:27:35 ============================================================================ +15:27:35 [ 1] [ 4] [0210] +15:27:35 [ 2] [ 16] [6213545000204853] +15:27:35 [ 3] [ 6] [010000] +15:27:35 [ 4] [ 12] [000020000000] +15:27:35 [ 7] [ 10] [0320152523] +15:27:35 [ 11] [ 6] [950035] +15:27:35 [ 12] [ 6] [152523] +15:27:35 [ 13] [ 4] [0320] +15:27:35 [ 15] [ 4] [0320] +15:27:35 [ 18] [ 4] [6011] +15:27:35 [ 19] [ 3] [418] +15:27:35 [ 32] [ 6] [668899] +15:27:35 [ 35] [ 32] [6213545000204853=491212010485368] +15:27:35 [ 37] [ 12] [507902556307] +15:27:35 [ 38] [ 6] [950035] +15:27:35 [ 39] [ 2] [51] +15:27:35 [ 41] [ 8] [03016004] +15:27:35 [ 49] [ 3] [418] +15:27:35 [ 54] [ 40] [0001418C0000246685810002418C000024668581] +15:27:35 ============================================================================ +15:27:35 Calculate Source COMM Id = 4 +15:27:35 ============================================================================ +15:27:35 + + +waiting on router queue for slot.... +15:27:39 ============================================================================ +15:27:39 Slot Id : <149> +15:27:39 Transaction Type : REQUEST +15:27:39 Received From : +15:27:39 ============================================================================ +15:27:39 FNo. Len. Field Value +15:27:39 ============================================================================ +15:27:39 [ 1] [ 4] [0800] +15:27:39 [ 7] [ 10] [0320082646] +15:27:39 [ 11] [ 6] [157014] +15:27:39 [ 70] [ 3] [301] +15:27:39 ============================================================================ +15:27:39 + + +waiting on router queue for slot.... +15:27:39 Sending to : +15:27:39 ============================================================================ +15:27:39 ============================================================================ +15:27:39 Slot Id : <149> +15:27:39 Transaction Type : RESPONSE +15:27:39 Received From : +15:27:39 ============================================================================ +15:27:39 FNo. Len. Field Value +15:27:39 ============================================================================ +15:27:39 [ 1] [ 4] [0810] +15:27:39 [ 7] [ 10] [0320082646] +15:27:39 [ 11] [ 6] [157014] +15:27:39 [ 39] [ 2] [00] +15:27:39 [ 70] [ 3] [301] +15:27:39 ============================================================================ +15:27:39 Calculate Source COMM Id = 2 +15:27:39 ============================================================================ +15:27:39 + + +waiting on router queue for slot.... +15:27:55 ============================================================================ +15:27:55 Slot Id : <168> +15:27:55 Transaction Type : REQUEST +15:27:55 Received From : +15:27:55 ============================================================================ +15:27:55 FNo. Len. Field Value +15:27:55 ============================================================================ +15:27:55 [ 1] [ 4] [0800] +15:27:55 [ 7] [ 10] [0320082702] +15:27:55 [ 11] [ 6] [157015] +15:27:55 [ 70] [ 3] [301] +15:27:55 ============================================================================ +15:27:55 + + +waiting on router queue for slot.... +15:27:55 Sending to : +15:27:55 ============================================================================ +15:27:55 ============================================================================ +15:27:55 Slot Id : <168> +15:27:55 Transaction Type : RESPONSE +15:27:55 Received From : +15:27:55 ============================================================================ +15:27:55 FNo. Len. Field Value +15:27:55 ============================================================================ +15:27:55 [ 1] [ 4] [0810] +15:27:55 [ 7] [ 10] [0320082702] +15:27:55 [ 11] [ 6] [157015] +15:27:55 [ 39] [ 2] [00] +15:27:55 [ 70] [ 3] [301] +15:27:55 ============================================================================ +15:27:55 Calculate Source COMM Id = 2 +15:27:55 ============================================================================ +15:27:55 + + +waiting on router queue for slot.... +15:27:57 ============================================================================ +15:27:57 Slot Id : <180> +15:27:57 Transaction Type : REQUEST +15:27:57 Received From : +15:27:57 ============================================================================ +15:27:57 FNo. Len. Field Value +15:27:57 ============================================================================ +15:27:57 [ 1] [ 4] [0200] +15:27:57 [ 2] [ 16] [6688990040102335] +15:27:57 [ 3] [ 6] [010000] +15:27:57 [ 4] [ 12] [000100000000] +15:27:57 [ 7] [ 10] [0320152752] +15:27:57 [ 11] [ 6] [783994] +15:27:57 [ 12] [ 6] [152752] +15:27:57 [ 13] [ 4] [0320] +15:27:57 [ 15] [ 4] [0320] +15:27:57 [ 18] [ 4] [6011] +15:27:57 [ 22] [ 3] [900] +15:27:57 [ 25] [ 2] [02] +15:27:57 [ 28] [ 9] [D00002000] +15:27:57 [ 32] [ 6] [621354] +15:27:57 [ 35] [ 37] [6688990040102335=98031261970125000000] +15:27:57 [ 37] [ 12] [507904653514] +15:27:57 [ 41] [ 8] [17001000] +15:27:57 [ 42] [ 15] [NATIVE ] +15:27:57 [ 43] [ 40] [Sum Market Samneua LAO] +15:27:57 [ 49] [ 3] [418] +15:27:57 [ 52] [ 16] [8FBAEC503EE70578] +15:27:57 ============================================================================ +15:27:57 + + +waiting on router queue for slot.... +15:27:57 Sending to : +15:27:57 ============================================================================ +15:27:57 Sending to : +15:27:57 ============================================================================ +15:27:57 ============================================================================ +15:27:57 Slot Id : <180> +15:27:57 Transaction Type : REQUEST +15:27:57 Received From : +15:27:57 ============================================================================ +15:27:57 FNo. Len. Field Value +15:27:57 ============================================================================ +15:27:57 [ 1] [ 4] [0200] +15:27:57 [ 2] [ 16] [6688990040102335] +15:27:57 [ 3] [ 6] [010000] +15:27:57 [ 4] [ 12] [000100000000] +15:27:57 [ 7] [ 10] [0320152752] +15:27:57 [ 11] [ 6] [783994] +15:27:57 [ 12] [ 6] [152752] +15:27:57 [ 13] [ 4] [0320] +15:27:57 [ 15] [ 4] [0320] +15:27:57 [ 18] [ 4] [6011] +15:27:57 [ 22] [ 3] [900] +15:27:57 [ 25] [ 2] [02] +15:27:57 [ 28] [ 9] [D00002000] +15:27:57 [ 32] [ 6] [621354] +15:27:57 [ 35] [ 37] [6688990040102335=98031261970125000000] +15:27:57 [ 37] [ 12] [507904653514] +15:27:57 [ 41] [ 8] [17001000] +15:27:57 [ 42] [ 15] [NATIVE ] +15:27:57 [ 43] [ 40] [Sum Market Samneua LAO] +15:27:57 [ 49] [ 3] [418] +15:27:57 [ 52] [ 16] [8FBAEC503EE70578] +15:27:57 ============================================================================ +15:27:57 + + +waiting on router queue for slot.... +15:27:57 Sending to : +15:27:57 ============================================================================ +15:27:57 ============================================================================ +15:27:57 Slot Id : <180> +15:27:57 Transaction Type : REQUEST +15:27:57 Received From : +15:27:57 ============================================================================ +15:27:57 FNo. Len. Field Value +15:27:57 ============================================================================ +15:27:57 [ 1] [ 4] [0200] +15:27:57 [ 2] [ 16] [6688990040102335] +15:27:57 [ 3] [ 6] [010000] +15:27:57 [ 4] [ 12] [000100000000] +15:27:57 [ 7] [ 10] [0320152752] +15:27:57 [ 11] [ 6] [783994] +15:27:57 [ 12] [ 6] [152752] +15:27:57 [ 13] [ 4] [0320] +15:27:57 [ 15] [ 4] [0320] +15:27:57 [ 18] [ 4] [6011] +15:27:57 [ 22] [ 3] [900] +15:27:57 [ 25] [ 2] [02] +15:27:57 [ 28] [ 9] [D00002000] +15:27:57 [ 32] [ 6] [621354] +15:27:57 [ 35] [ 37] [6688990040102335=98031261970125000000] +15:27:57 [ 37] [ 12] [507904653514] +15:27:57 [ 41] [ 8] [17001000] +15:27:57 [ 42] [ 15] [NATIVE ] +15:27:57 [ 43] [ 40] [Sum Market Samneua LAO] +15:27:57 [ 49] [ 3] [418] +15:27:57 [ 52] [ 16] [E4FB3520A768CCE3] +15:27:57 ============================================================================ +15:27:57 + + +waiting on router queue for slot.... +15:27:57 Sending to : <4> +15:27:57 ============================================================================ +15:27:58 ============================================================================ +15:27:58 Slot Id : <174> +15:27:58 Transaction Type : REQUEST +15:27:58 Received From : +15:27:58 ============================================================================ +15:27:58 FNo. Len. Field Value +15:27:58 ============================================================================ +15:27:58 [ 1] [ 4] [0200] +15:27:58 [ 2] [ 16] [6688990040115956] +15:27:58 [ 3] [ 6] [012000] +15:27:58 [ 4] [ 12] [000050000000] +15:27:58 [ 7] [ 10] [0320152753] +15:27:58 [ 11] [ 6] [783997] +15:27:58 [ 12] [ 6] [152753] +15:27:58 [ 13] [ 4] [0320] +15:27:58 [ 15] [ 4] [0320] +15:27:58 [ 18] [ 4] [6011] +15:27:58 [ 22] [ 3] [900] +15:27:58 [ 25] [ 2] [02] +15:27:58 [ 28] [ 9] [D00002000] +15:27:58 [ 32] [ 6] [621354] +15:27:58 [ 35] [ 37] [6688990040115956=98031261471597100000] +15:27:58 [ 37] [ 12] [507902474638] +15:27:58 [ 41] [ 8] [05003000] +15:27:58 [ 42] [ 15] [NATIVE ] +15:27:58 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +15:27:58 [ 49] [ 3] [418] +15:27:58 [ 52] [ 16] [B3C683E7ECABA0C6] +15:27:58 ============================================================================ +15:27:58 + + +waiting on router queue for slot.... +15:27:58 Sending to : +15:27:58 ============================================================================ +15:27:58 Sending to : +15:27:58 ============================================================================ +15:27:58 ============================================================================ +15:27:58 Slot Id : <174> +15:27:58 Transaction Type : REQUEST +15:27:58 Received From : +15:27:58 ============================================================================ +15:27:58 FNo. Len. Field Value +15:27:58 ============================================================================ +15:27:58 [ 1] [ 4] [0200] +15:27:58 [ 2] [ 16] [6688990040115956] +15:27:58 [ 3] [ 6] [012000] +15:27:58 [ 4] [ 12] [000050000000] +15:27:58 [ 7] [ 10] [0320152753] +15:27:58 [ 11] [ 6] [783997] +15:27:58 [ 12] [ 6] [152753] +15:27:58 [ 13] [ 4] [0320] +15:27:58 [ 15] [ 4] [0320] +15:27:58 [ 18] [ 4] [6011] +15:27:58 [ 22] [ 3] [900] +15:27:58 [ 25] [ 2] [02] +15:27:58 [ 28] [ 9] [D00002000] +15:27:58 [ 32] [ 6] [621354] +15:27:58 [ 35] [ 37] [6688990040115956=98031261471597100000] +15:27:58 [ 37] [ 12] [507902474638] +15:27:58 [ 41] [ 8] [05003000] +15:27:58 [ 42] [ 15] [NATIVE ] +15:27:58 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +15:27:58 [ 49] [ 3] [418] +15:27:58 [ 52] [ 16] [B3C683E7ECABA0C6] +15:27:58 ============================================================================ +15:27:58 + + +waiting on router queue for slot.... +15:27:58 Sending to : +15:27:58 ============================================================================ +15:27:58 ============================================================================ +15:27:58 Slot Id : <174> +15:27:58 Transaction Type : REQUEST +15:27:58 Received From : +15:27:58 ============================================================================ +15:27:58 FNo. Len. Field Value +15:27:58 ============================================================================ +15:27:58 [ 1] [ 4] [0200] +15:27:58 [ 2] [ 16] [6688990040115956] +15:27:58 [ 3] [ 6] [012000] +15:27:58 [ 4] [ 12] [000050000000] +15:27:58 [ 7] [ 10] [0320152753] +15:27:58 [ 11] [ 6] [783997] +15:27:58 [ 12] [ 6] [152753] +15:27:58 [ 13] [ 4] [0320] +15:27:58 [ 15] [ 4] [0320] +15:27:58 [ 18] [ 4] [6011] +15:27:58 [ 22] [ 3] [900] +15:27:58 [ 25] [ 2] [02] +15:27:58 [ 28] [ 9] [D00002000] +15:27:58 [ 32] [ 6] [621354] +15:27:58 [ 35] [ 37] [6688990040115956=98031261471597100000] +15:27:58 [ 37] [ 12] [507902474638] +15:27:58 [ 41] [ 8] [05003000] +15:27:58 [ 42] [ 15] [NATIVE ] +15:27:58 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +15:27:58 [ 49] [ 3] [418] +15:27:58 [ 52] [ 16] [255B73A21EC9353F] +15:27:58 ============================================================================ +15:27:58 + + +waiting on router queue for slot.... +15:27:58 Sending to : <4> +15:27:58 ============================================================================ +15:27:59 ============================================================================ +15:27:59 Slot Id : <180> +15:27:59 Transaction Type : RESPONSE +15:27:59 Received From : +15:27:59 ============================================================================ +15:27:59 FNo. Len. Field Value +15:27:59 ============================================================================ +15:27:59 [ 1] [ 4] [0210] +15:27:59 [ 2] [ 16] [6688990040102335] +15:27:59 [ 3] [ 6] [010000] +15:27:59 [ 4] [ 12] [000100000000] +15:27:59 [ 11] [ 6] [783994] +15:27:59 [ 12] [ 6] [152752] +15:27:59 [ 15] [ 4] [0320] +15:27:59 [ 18] [ 4] [6011] +15:27:59 [ 32] [ 6] [621354] +15:27:59 [ 35] [ 37] [6688990040102335=98031261970125000000] +15:27:59 [ 37] [ 12] [507904653514] +15:27:59 [ 38] [ 6] [019192] +15:27:59 [ 39] [ 2] [00] +15:27:59 [ 41] [ 8] [17001000] +15:27:59 [ 49] [ 3] [418] +15:27:59 [ 54] [ 20] [0002418C000582258383] +15:27:59 ============================================================================ +15:27:59 Sending to : +15:27:59 ============================================================================ +15:27:59 + + +waiting on router queue for slot.... +15:27:59 ============================================================================ +15:27:59 Slot Id : <222> +15:27:59 Transaction Type : REQUEST +15:27:59 Received From : +15:27:59 ============================================================================ +15:27:59 FNo. Len. Field Value +15:27:59 ============================================================================ +15:27:59 [ 1] [ 4] [0200] +15:27:59 [ 2] [ 16] [6213544000547759] +15:27:59 [ 3] [ 6] [010000] +15:27:59 [ 4] [ 12] [000050000000] +15:27:59 [ 7] [ 10] [0320152549] +15:27:59 [ 11] [ 6] [950043] +15:27:59 [ 12] [ 6] [152549] +15:27:59 [ 13] [ 4] [0320] +15:27:59 [ 15] [ 4] [0320] +15:27:59 [ 18] [ 4] [6011] +15:27:59 [ 19] [ 3] [418] +15:27:59 [ 22] [ 3] [021] +15:27:59 [ 25] [ 2] [01] +15:27:59 [ 28] [ 9] [D00002000] +15:27:59 [ 32] [ 6] [668899] +15:27:59 [ 35] [ 32] [6213544000547759=491212014775606] +15:27:59 [ 37] [ 12] [507902683060] +15:27:59 [ 41] [ 8] [03020036] +15:27:59 [ 42] [ 15] [APT ] +15:27:59 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +15:27:59 [ 49] [ 3] [418] +15:27:59 [ 52] [ 16] [0D22D473E54DAE26] +15:27:59 ============================================================================ +15:27:59 + + +waiting on router queue for slot.... +15:27:59 Sending to : +15:27:59 ============================================================================ +15:27:59 Sending to : +15:27:59 ============================================================================ +15:27:59 ============================================================================ +15:27:59 Slot Id : <222> +15:27:59 Transaction Type : REQUEST +15:27:59 Received From : +15:27:59 ============================================================================ +15:27:59 FNo. Len. Field Value +15:27:59 ============================================================================ +15:27:59 [ 1] [ 4] [0200] +15:27:59 [ 2] [ 16] [6213544000547759] +15:27:59 [ 3] [ 6] [010000] +15:27:59 [ 4] [ 12] [000050000000] +15:27:59 [ 7] [ 10] [0320152549] +15:27:59 [ 11] [ 6] [950043] +15:27:59 [ 12] [ 6] [152549] +15:27:59 [ 13] [ 4] [0320] +15:27:59 [ 15] [ 4] [0320] +15:27:59 [ 18] [ 4] [6011] +15:28:00 [ 19] [ 3] [418] +15:28:00 [ 22] [ 3] [021] +15:28:00 [ 25] [ 2] [01] +15:28:00 [ 28] [ 9] [D00002000] +15:28:00 [ 32] [ 6] [668899] +15:28:00 [ 35] [ 32] [6213544000547759=491212014775606] +15:28:00 [ 37] [ 12] [507902683060] +15:28:00 [ 41] [ 8] [03020036] +15:28:00 [ 42] [ 15] [APT ] +15:28:00 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +15:28:00 [ 49] [ 3] [418] +15:28:00 [ 52] [ 16] [0D22D473E54DAE26] +15:28:00 ============================================================================ +15:28:00 + + +waiting on router queue for slot.... +15:28:00 Sending to : +15:28:00 ============================================================================ +15:28:00 ============================================================================ +15:28:00 Slot Id : <222> +15:28:00 Transaction Type : REQUEST +15:28:00 Received From : +15:28:00 ============================================================================ +15:28:00 FNo. Len. Field Value +15:28:00 ============================================================================ +15:28:00 [ 1] [ 4] [0200] +15:28:00 [ 2] [ 16] [6213544000547759] +15:28:00 [ 3] [ 6] [010000] +15:28:00 [ 4] [ 12] [000050000000] +15:28:00 [ 7] [ 10] [0320152549] +15:28:00 [ 11] [ 6] [950043] +15:28:00 [ 12] [ 6] [152549] +15:28:00 [ 13] [ 4] [0320] +15:28:00 [ 15] [ 4] [0320] +15:28:00 [ 18] [ 4] [6011] +15:28:00 [ 19] [ 3] [418] +15:28:00 [ 22] [ 3] [021] +15:28:00 [ 25] [ 2] [01] +15:28:00 [ 28] [ 9] [D00002000] +15:28:00 [ 32] [ 6] [668899] +15:28:00 [ 35] [ 32] [6213544000547759=491212014775606] +15:28:00 [ 37] [ 12] [507902683060] +15:28:00 [ 41] [ 8] [03020036] +15:28:00 [ 42] [ 15] [APT ] +15:28:00 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +15:28:00 [ 49] [ 3] [418] +15:28:00 [ 52] [ 16] [2F8B64A6D5A71368] +15:28:00 ============================================================================ +15:28:00 + + +waiting on router queue for slot.... +15:28:00 Sending to : <0> +15:28:00 ============================================================================ +15:28:00 ============================================================================ +15:28:00 Slot Id : <174> +15:28:00 Transaction Type : RESPONSE +15:28:00 Received From : +15:28:00 ============================================================================ +15:28:00 FNo. Len. Field Value +15:28:00 ============================================================================ +15:28:00 [ 1] [ 4] [0210] +15:28:00 [ 2] [ 16] [6688990040115956] +15:28:00 [ 3] [ 6] [012000] +15:28:00 [ 4] [ 12] [000050000000] +15:28:00 [ 11] [ 6] [783997] +15:28:00 [ 12] [ 6] [152753] +15:28:00 [ 15] [ 4] [0320] +15:28:00 [ 18] [ 4] [6011] +15:28:00 [ 32] [ 6] [621354] +15:28:00 [ 35] [ 37] [6688990040115956=98031261471597100000] +15:28:00 [ 37] [ 12] [507902474638] +15:28:00 [ 38] [ 6] [077902] +15:28:00 [ 39] [ 2] [00] +15:28:00 [ 41] [ 8] [05003000] +15:28:00 [ 49] [ 3] [418] +15:28:00 [ 54] [ 20] [2002418C000038639452] +15:28:00 ============================================================================ +15:28:00 Sending to : +15:28:00 ============================================================================ +15:28:00 + + +waiting on router queue for slot.... +15:28:00 ============================================================================ +15:28:00 Slot Id : <222> +15:28:00 Transaction Type : RESPONSE +15:28:00 Received From : +15:28:00 ============================================================================ +15:28:00 FNo. Len. Field Value +15:28:00 ============================================================================ +15:28:00 [ 1] [ 4] [0210] +15:28:00 [ 2] [ 16] [6213544000547759] +15:28:00 [ 3] [ 6] [010000] +15:28:00 [ 4] [ 12] [000050000000] +15:28:00 [ 7] [ 10] [0320152549] +15:28:00 [ 11] [ 6] [950043] +15:28:00 [ 12] [ 6] [152549] +15:28:00 [ 13] [ 4] [0320] +15:28:00 [ 15] [ 4] [0320] +15:28:00 [ 18] [ 4] [6011] +15:28:00 [ 19] [ 3] [418] +15:28:00 [ 32] [ 6] [668899] +15:28:00 [ 35] [ 32] [6213544000547759=491212014775606] +15:28:00 [ 37] [ 12] [507902683060] +15:28:00 [ 38] [ 6] [272650] +15:28:00 [ 39] [ 2] [00] +15:28:00 [ 41] [ 8] [03020036] +15:28:00 [ 49] [ 3] [418] +15:28:00 [ 54] [ 40] [0001418C0001442554990002418C000144255499] +15:28:00 ============================================================================ +15:28:00 Sending to : +15:28:00 ============================================================================ +15:28:00 + + +waiting on router queue for slot.... +15:28:00 ============================================================================ +15:28:00 Slot Id : <180> +15:28:00 Transaction Type : RESPONSE +15:28:00 Received From : +15:28:00 ============================================================================ +15:28:00 FNo. Len. Field Value +15:28:00 ============================================================================ +15:28:00 [ 1] [ 4] [0210] +15:28:00 [ 2] [ 16] [6688990040102335] +15:28:00 [ 3] [ 6] [010000] +15:28:00 [ 4] [ 12] [000100000000] +15:28:00 [ 11] [ 6] [783994] +15:28:00 [ 12] [ 6] [152752] +15:28:00 [ 15] [ 4] [0320] +15:28:00 [ 18] [ 4] [6011] +15:28:00 [ 32] [ 6] [621354] +15:28:00 [ 35] [ 37] [6688990040102335=98031261970125000000] +15:28:00 [ 37] [ 12] [507904653514] +15:28:00 [ 38] [ 6] [019192] +15:28:00 [ 39] [ 2] [00] +15:28:00 [ 41] [ 8] [17001000] +15:28:00 [ 49] [ 3] [418] +15:28:00 [ 54] [ 20] [0002418C000582258383] +15:28:00 ============================================================================ +15:28:00 Calculate Source COMM Id = 0 +15:28:00 ============================================================================ +15:28:00 + + +waiting on router queue for slot.... +15:28:02 ============================================================================ +15:28:02 Slot Id : <222> +15:28:02 Transaction Type : RESPONSE +15:28:02 Received From : +15:28:02 ============================================================================ +15:28:02 FNo. Len. Field Value +15:28:02 ============================================================================ +15:28:02 [ 1] [ 4] [0210] +15:28:02 [ 2] [ 16] [6213544000547759] +15:28:02 [ 3] [ 6] [010000] +15:28:02 [ 4] [ 12] [000050000000] +15:28:02 [ 7] [ 10] [0320152549] +15:28:02 [ 11] [ 6] [950043] +15:28:02 [ 12] [ 6] [152549] +15:28:02 [ 13] [ 4] [0320] +15:28:02 [ 15] [ 4] [0320] +15:28:02 [ 18] [ 4] [6011] +15:28:02 [ 19] [ 3] [418] +15:28:02 [ 32] [ 6] [668899] +15:28:02 [ 35] [ 32] [6213544000547759=491212014775606] +15:28:02 [ 37] [ 12] [507902683060] +15:28:02 [ 38] [ 6] [272650] +15:28:02 [ 39] [ 2] [00] +15:28:02 [ 41] [ 8] [03020036] +15:28:02 [ 49] [ 3] [418] +15:28:02 [ 54] [ 40] [0001418C0001442554990002418C000144255499] +15:28:02 ============================================================================ +15:28:02 Calculate Source COMM Id = 4 +15:28:02 ============================================================================ +15:28:02 + + +waiting on router queue for slot.... +15:28:03 ============================================================================ +15:28:03 Slot Id : <174> +15:28:03 Transaction Type : RESPONSE +15:28:03 Received From : +15:28:03 ============================================================================ +15:28:03 FNo. Len. Field Value +15:28:03 ============================================================================ +15:28:03 [ 1] [ 4] [0210] +15:28:03 [ 2] [ 16] [6688990040115956] +15:28:03 [ 3] [ 6] [012000] +15:28:03 [ 4] [ 12] [000050000000] +15:28:03 [ 11] [ 6] [783997] +15:28:03 [ 12] [ 6] [152753] +15:28:03 [ 15] [ 4] [0320] +15:28:03 [ 18] [ 4] [6011] +15:28:03 [ 32] [ 6] [621354] +15:28:03 [ 35] [ 37] [6688990040115956=98031261471597100000] +15:28:03 [ 37] [ 12] [507902474638] +15:28:03 [ 38] [ 6] [077902] +15:28:03 [ 39] [ 2] [00] +15:28:03 [ 41] [ 8] [05003000] +15:28:03 [ 49] [ 3] [418] +15:28:03 [ 54] [ 20] [2002418C000038639452] +15:28:03 ============================================================================ +15:28:03 Calculate Source COMM Id = 0 +15:28:03 ============================================================================ +15:28:03 + + +waiting on router queue for slot.... +15:28:05 ============================================================================ +15:28:05 Slot Id : <229> +15:28:05 Transaction Type : REQUEST +15:28:05 Received From : +15:28:05 ============================================================================ +15:28:05 FNo. Len. Field Value +15:28:05 ============================================================================ +15:28:05 [ 1] [ 4] [0800] +15:28:05 [ 7] [ 10] [0320082712] +15:28:05 [ 11] [ 6] [157016] +15:28:05 [ 70] [ 3] [301] +15:28:05 ============================================================================ +15:28:05 + + +waiting on router queue for slot.... +15:28:05 Sending to : +15:28:05 ============================================================================ +15:28:05 ============================================================================ +15:28:05 Slot Id : <229> +15:28:05 Transaction Type : RESPONSE +15:28:05 Received From : +15:28:05 ============================================================================ +15:28:05 FNo. Len. Field Value +15:28:05 ============================================================================ +15:28:05 [ 1] [ 4] [0810] +15:28:05 [ 7] [ 10] [0320082712] +15:28:05 [ 11] [ 6] [157016] +15:28:05 [ 39] [ 2] [00] +15:28:05 [ 70] [ 3] [301] +15:28:05 ============================================================================ +15:28:05 Calculate Source COMM Id = 2 +15:28:05 ============================================================================ +15:28:05 + + +waiting on router queue for slot.... +15:28:16 ============================================================================ +15:28:16 Slot Id : <173> +15:28:16 Transaction Type : REQUEST +15:28:16 Received From : +15:28:16 ============================================================================ +15:28:16 FNo. Len. Field Value +15:28:16 ============================================================================ +15:28:16 [ 1] [ 4] [0800] +15:28:16 [ 7] [ 10] [0320082723] +15:28:16 [ 11] [ 6] [157017] +15:28:16 [ 70] [ 3] [301] +15:28:16 ============================================================================ +15:28:16 + + +waiting on router queue for slot.... +15:28:16 Sending to : +15:28:16 ============================================================================ +15:28:16 ============================================================================ +15:28:16 Slot Id : <173> +15:28:16 Transaction Type : RESPONSE +15:28:16 Received From : +15:28:16 ============================================================================ +15:28:16 FNo. Len. Field Value +15:28:16 ============================================================================ +15:28:16 [ 1] [ 4] [0810] +15:28:16 [ 7] [ 10] [0320082723] +15:28:16 [ 11] [ 6] [157017] +15:28:16 [ 39] [ 2] [00] +15:28:16 [ 70] [ 3] [301] +15:28:16 ============================================================================ +15:28:16 Calculate Source COMM Id = 2 +15:28:16 ============================================================================ +15:28:16 + + +waiting on router queue for slot.... +15:28:17 ============================================================================ +15:28:17 Slot Id : <188> +15:28:17 Transaction Type : REQUEST +15:28:17 Received From : +15:28:17 ============================================================================ +15:28:17 FNo. Len. Field Value +15:28:17 ============================================================================ +15:28:17 [ 1] [ 4] [0800] +15:28:17 [ 7] [ 10] [0320224005] +15:28:17 [ 11] [ 6] [154005] +15:28:17 [ 37] [ 12] [57915154005] +15:28:17 [ 70] [ 3] [301] +15:28:17 ============================================================================ +15:28:17 + + +waiting on router queue for slot.... +15:28:17 Sending to : +15:28:17 ============================================================================ +15:28:17 ============================================================================ +15:28:17 Slot Id : <188> +15:28:17 Transaction Type : RESPONSE +15:28:17 Received From : +15:28:17 ============================================================================ +15:28:17 FNo. Len. Field Value +15:28:17 ============================================================================ +15:28:17 [ 1] [ 4] [0810] +15:28:17 [ 7] [ 10] [0320224005] +15:28:17 [ 11] [ 6] [154005] +15:28:17 [ 37] [ 12] [579151540050] +15:28:17 [ 39] [ 2] [00] +15:28:17 [ 70] [ 3] [810] +15:28:17 ============================================================================ +15:28:17 Calculate Source COMM Id = 6 +15:28:17 ============================================================================ +15:28:17 + + +waiting on router queue for slot.... +15:28:17 ============================================================================ +15:28:17 Slot Id : <223> +15:28:17 Transaction Type : REQUEST +15:28:17 Received From : +15:28:17 ============================================================================ +15:28:17 FNo. Len. Field Value +15:28:17 ============================================================================ +15:28:17 [ 1] [ 4] [0200] +15:28:17 [ 2] [ 16] [6688990100957008] +15:28:17 [ 3] [ 6] [012000] +15:28:17 [ 4] [ 12] [000070000000] +15:28:17 [ 7] [ 10] [0320152812] +15:28:17 [ 11] [ 6] [784085] +15:28:17 [ 12] [ 6] [152812] +15:28:17 [ 13] [ 4] [0320] +15:28:17 [ 15] [ 4] [0320] +15:28:17 [ 18] [ 4] [6011] +15:28:17 [ 22] [ 3] [900] +15:28:17 [ 25] [ 2] [02] +15:28:17 [ 28] [ 9] [D00002000] +15:28:17 [ 32] [ 6] [621354] +15:28:17 [ 35] [ 37] [6688990100957008=41121231700888100000] +15:28:17 [ 37] [ 12] [507904719735] +15:28:17 [ 41] [ 8] [18001000] +15:28:17 [ 42] [ 15] [NATIVE ] +15:28:17 [ 43] [ 40] [Khoua Unit Khoua LAO] +15:28:17 [ 49] [ 3] [418] +15:28:17 [ 52] [ 16] [7A828BE2BB04966A] +15:28:17 ============================================================================ +15:28:17 + + +waiting on router queue for slot.... +15:28:17 Sending to : +15:28:17 ============================================================================ +15:28:17 Sending to : +15:28:17 ============================================================================ +15:28:17 ============================================================================ +15:28:17 Slot Id : <246> +15:28:17 Transaction Type : REQUEST +15:28:17 Received From : +15:28:17 ============================================================================ +15:28:17 FNo. Len. Field Value +15:28:17 ============================================================================ +15:28:17 [ 1] [ 4] [0200] +15:28:17 [ 2] [ 16] [6213541000646300] +15:28:17 [ 3] [ 6] [010000] +15:28:17 [ 4] [ 12] [000005000000] +15:28:17 [ 7] [ 10] [0320153604] +15:28:17 [ 11] [ 6] [240853] +15:28:17 [ 12] [ 6] [153604] +15:28:17 [ 13] [ 4] [0320] +15:28:17 [ 14] [ 4] [4912] +15:28:17 [ 15] [ 4] [0320] +15:28:17 [ 18] [ 4] [6011] +15:28:17 [ 22] [ 3] [900] +15:28:17 [ 25] [ 2] [02] +15:28:17 [ 28] [ 9] [D00002000] +15:28:17 [ 32] [ 6] [220699] +15:28:17 [ 35] [ 32] [6213541000646300=491212014630955] +15:28:17 [ 37] [ 12] [507900410445] +15:28:17 [ 41] [ 8] [08000300] +15:28:17 [ 42] [ 15] [APTRA ] +15:28:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:28:17 [ 49] [ 3] [418] +15:28:17 [ 52] [ 16] [DCA811B4C033558C] +15:28:17 ============================================================================ +15:28:17 + + +waiting on router queue for slot.... +15:28:17 Sending to : +15:28:17 ============================================================================ +15:28:17 Sending to : +15:28:17 ============================================================================ +15:28:17 ============================================================================ +15:28:17 Slot Id : <223> +15:28:17 Transaction Type : REQUEST +15:28:17 Received From : +15:28:17 ============================================================================ +15:28:17 FNo. Len. Field Value +15:28:17 ============================================================================ +15:28:17 [ 1] [ 4] [0200] +15:28:17 [ 2] [ 16] [6688990100957008] +15:28:17 [ 3] [ 6] [012000] +15:28:17 [ 4] [ 12] [000070000000] +15:28:17 [ 7] [ 10] [0320152812] +15:28:17 [ 11] [ 6] [784085] +15:28:17 [ 12] [ 6] [152812] +15:28:17 [ 13] [ 4] [0320] +15:28:17 [ 15] [ 4] [0320] +15:28:17 [ 18] [ 4] [6011] +15:28:17 [ 22] [ 3] [900] +15:28:17 [ 25] [ 2] [02] +15:28:17 [ 28] [ 9] [D00002000] +15:28:17 [ 32] [ 6] [621354] +15:28:17 [ 35] [ 37] [6688990100957008=41121231700888100000] +15:28:17 [ 37] [ 12] [507904719735] +15:28:17 [ 41] [ 8] [18001000] +15:28:17 [ 42] [ 15] [NATIVE ] +15:28:17 [ 43] [ 40] [Khoua Unit Khoua LAO] +15:28:17 [ 49] [ 3] [418] +15:28:17 [ 52] [ 16] [7A828BE2BB04966A] +15:28:17 ============================================================================ +15:28:17 + + +waiting on router queue for slot.... +15:28:17 Sending to : +15:28:17 ============================================================================ +15:28:17 ============================================================================ +15:28:17 Slot Id : <223> +15:28:17 Transaction Type : REQUEST +15:28:17 Received From : +15:28:17 ============================================================================ +15:28:17 FNo. Len. Field Value +15:28:17 ============================================================================ +15:28:17 [ 1] [ 4] [0200] +15:28:17 [ 2] [ 16] [6688990100957008] +15:28:17 [ 3] [ 6] [012000] +15:28:17 [ 4] [ 12] [000070000000] +15:28:17 [ 7] [ 10] [0320152812] +15:28:17 [ 11] [ 6] [784085] +15:28:17 [ 12] [ 6] [152812] +15:28:17 [ 13] [ 4] [0320] +15:28:17 [ 15] [ 4] [0320] +15:28:17 [ 18] [ 4] [6011] +15:28:17 [ 22] [ 3] [900] +15:28:17 [ 25] [ 2] [02] +15:28:17 [ 28] [ 9] [D00002000] +15:28:17 [ 32] [ 6] [621354] +15:28:17 [ 35] [ 37] [6688990100957008=41121231700888100000] +15:28:17 [ 37] [ 12] [507904719735] +15:28:17 [ 41] [ 8] [18001000] +15:28:17 [ 42] [ 15] [NATIVE ] +15:28:17 [ 43] [ 40] [Khoua Unit Khoua LAO] +15:28:17 [ 49] [ 3] [418] +15:28:17 [ 52] [ 16] [FAB32B217AF71094] +15:28:17 ============================================================================ +15:28:17 + + +waiting on router queue for slot.... +15:28:17 Sending to : <4> +15:28:17 ============================================================================ +15:28:17 ============================================================================ +15:28:17 Slot Id : <246> +15:28:17 Transaction Type : REQUEST +15:28:17 Received From : +15:28:17 ============================================================================ +15:28:17 FNo. Len. Field Value +15:28:17 ============================================================================ +15:28:17 [ 1] [ 4] [0200] +15:28:17 [ 2] [ 16] [6213541000646300] +15:28:17 [ 3] [ 6] [010000] +15:28:17 [ 4] [ 12] [000005000000] +15:28:17 [ 7] [ 10] [0320153604] +15:28:17 [ 11] [ 6] [240853] +15:28:17 [ 12] [ 6] [153604] +15:28:17 [ 13] [ 4] [0320] +15:28:17 [ 14] [ 4] [4912] +15:28:17 [ 15] [ 4] [0320] +15:28:17 [ 18] [ 4] [6011] +15:28:17 [ 22] [ 3] [900] +15:28:17 [ 25] [ 2] [02] +15:28:17 [ 28] [ 9] [D00002000] +15:28:17 [ 32] [ 6] [220699] +15:28:17 [ 35] [ 32] [6213541000646300=491212014630955] +15:28:17 [ 37] [ 12] [507900410445] +15:28:17 [ 41] [ 8] [08000300] +15:28:17 [ 42] [ 15] [APTRA ] +15:28:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:28:17 [ 49] [ 3] [418] +15:28:17 [ 52] [ 16] [DCA811B4C033558C] +15:28:17 ============================================================================ +15:28:17 + + +waiting on router queue for slot.... +15:28:17 Sending to : +15:28:17 ============================================================================ +15:28:17 ============================================================================ +15:28:17 Slot Id : <246> +15:28:17 Transaction Type : REQUEST +15:28:17 Received From : +15:28:17 ============================================================================ +15:28:17 FNo. Len. Field Value +15:28:17 ============================================================================ +15:28:17 [ 1] [ 4] [0200] +15:28:17 [ 2] [ 16] [6213541000646300] +15:28:17 [ 3] [ 6] [010000] +15:28:17 [ 4] [ 12] [000005000000] +15:28:17 [ 7] [ 10] [0320153604] +15:28:17 [ 11] [ 6] [240853] +15:28:17 [ 12] [ 6] [153604] +15:28:17 [ 13] [ 4] [0320] +15:28:17 [ 14] [ 4] [4912] +15:28:17 [ 15] [ 4] [0320] +15:28:17 [ 18] [ 4] [6011] +15:28:17 [ 22] [ 3] [900] +15:28:17 [ 25] [ 2] [02] +15:28:17 [ 28] [ 9] [D00002000] +15:28:17 [ 32] [ 6] [220699] +15:28:17 [ 35] [ 32] [6213541000646300=491212014630955] +15:28:17 [ 37] [ 12] [507900410445] +15:28:17 [ 41] [ 8] [08000300] +15:28:17 [ 42] [ 15] [APTRA ] +15:28:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:28:17 [ 49] [ 3] [418] +15:28:17 [ 52] [ 16] [86B2CCDA0A66C299] +15:28:17 ============================================================================ +15:28:17 + + +waiting on router queue for slot.... +15:28:17 Sending to : <0> +15:28:17 ============================================================================ +15:28:18 ============================================================================ +15:28:18 Slot Id : <246> +15:28:18 Transaction Type : RESPONSE +15:28:18 Received From : +15:28:18 ============================================================================ +15:28:18 FNo. Len. Field Value +15:28:18 ============================================================================ +15:28:18 [ 1] [ 4] [0210] +15:28:18 [ 2] [ 16] [6213541000646300] +15:28:18 [ 3] [ 6] [010000] +15:28:18 [ 4] [ 12] [000005000000] +15:28:18 [ 7] [ 10] [0320153604] +15:28:18 [ 11] [ 6] [240853] +15:28:18 [ 12] [ 6] [153604] +15:28:18 [ 13] [ 4] [0320] +15:28:18 [ 15] [ 4] [0320] +15:28:18 [ 18] [ 4] [6011] +15:28:18 [ 32] [ 6] [220699] +15:28:18 [ 35] [ 32] [6213541000646300=491212014630955] +15:28:18 [ 37] [ 12] [507900410445] +15:28:18 [ 38] [ 6] [023415] +15:28:18 [ 39] [ 2] [00] +15:28:18 [ 41] [ 8] [08000300] +15:28:18 [ 49] [ 3] [418] +15:28:18 [ 54] [ 40] [0001418C0000544932290002418C000054493229] +15:28:18 ============================================================================ +15:28:18 Sending to : +15:28:18 ============================================================================ +15:28:18 + + +waiting on router queue for slot.... +15:28:18 ============================================================================ +15:28:18 Slot Id : <223> +15:28:18 Transaction Type : RESPONSE +15:28:18 Received From : +15:28:18 ============================================================================ +15:28:18 FNo. Len. Field Value +15:28:18 ============================================================================ +15:28:18 [ 1] [ 4] [0210] +15:28:18 [ 2] [ 16] [6688990100957008] +15:28:18 [ 3] [ 6] [012000] +15:28:18 [ 4] [ 12] [000070000000] +15:28:18 [ 11] [ 6] [784085] +15:28:18 [ 12] [ 6] [152812] +15:28:18 [ 15] [ 4] [0320] +15:28:18 [ 18] [ 4] [6011] +15:28:18 [ 32] [ 6] [621354] +15:28:18 [ 35] [ 37] [6688990100957008=41121231700888100000] +15:28:18 [ 37] [ 12] [507904719735] +15:28:18 [ 38] [ 6] [753661] +15:28:18 [ 39] [ 2] [00] +15:28:18 [ 41] [ 8] [18001000] +15:28:18 [ 49] [ 3] [418] +15:28:18 [ 54] [ 20] [2002418C000124601943] +15:28:18 ============================================================================ +15:28:18 Sending to : +15:28:18 ============================================================================ +15:28:18 + + +waiting on router queue for slot.... +15:28:19 ============================================================================ +15:28:19 Slot Id : <246> +15:28:19 Transaction Type : RESPONSE +15:28:19 Received From : +15:28:19 ============================================================================ +15:28:19 FNo. Len. Field Value +15:28:19 ============================================================================ +15:28:19 [ 1] [ 4] [0210] +15:28:19 [ 2] [ 16] [6213541000646300] +15:28:19 [ 3] [ 6] [010000] +15:28:19 [ 4] [ 12] [000005000000] +15:28:19 [ 7] [ 10] [0320153604] +15:28:19 [ 11] [ 6] [240853] +15:28:19 [ 12] [ 6] [153604] +15:28:19 [ 13] [ 4] [0320] +15:28:19 [ 15] [ 4] [0320] +15:28:19 [ 18] [ 4] [6011] +15:28:19 [ 32] [ 6] [220699] +15:28:19 [ 35] [ 32] [6213541000646300=491212014630955] +15:28:19 [ 37] [ 12] [507900410445] +15:28:19 [ 38] [ 6] [023415] +15:28:19 [ 39] [ 2] [00] +15:28:19 [ 41] [ 8] [08000300] +15:28:19 [ 49] [ 3] [418] +15:28:19 [ 54] [ 40] [0001418C0000544932290002418C000054493229] +15:28:19 ============================================================================ +15:28:19 Calculate Source COMM Id = 1 +15:28:19 ============================================================================ +15:28:19 + + +waiting on router queue for slot.... +15:28:20 ============================================================================ +15:28:20 Slot Id : <215> +15:28:20 Transaction Type : REQUEST +15:28:20 Received From : +15:28:20 ============================================================================ +15:28:20 FNo. Len. Field Value +15:28:20 ============================================================================ +15:28:20 [ 1] [ 4] [0200] +15:28:20 [ 2] [ 16] [6213545000202410] +15:28:20 [ 3] [ 6] [010000] +15:28:20 [ 4] [ 12] [000050000000] +15:28:20 [ 7] [ 10] [0320082726] +15:28:20 [ 11] [ 6] [270023] +15:28:20 [ 12] [ 6] [152726] +15:28:20 [ 13] [ 4] [0320] +15:28:20 [ 14] [ 4] [4912] +15:28:20 [ 15] [ 4] [0320] +15:28:20 [ 18] [ 4] [6011] +15:28:20 [ 19] [ 3] [418] +15:28:20 [ 22] [ 3] [021] +15:28:20 [ 25] [ 2] [01] +15:28:20 [ 28] [ 9] [D00002000] +15:28:20 [ 32] [ 6] [180893] +15:28:20 [ 35] [ 32] [6213545000202410=491212010241467] +15:28:20 [ 37] [ 12] [507908270023] +15:28:20 [ 41] [ 8] [0121SKBR] +15:28:20 [ 42] [ 15] [999999 ] +15:28:20 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +15:28:20 [ 49] [ 3] [418] +15:28:20 [ 52] [ 16] [B141C57F6A706FFA] +15:28:20 ============================================================================ +15:28:20 + + +waiting on router queue for slot.... +15:28:20 Sending to : +15:28:20 ============================================================================ +15:28:20 Sending to : +15:28:20 ============================================================================ +15:28:20 ============================================================================ +15:28:20 Slot Id : <215> +15:28:20 Transaction Type : REQUEST +15:28:20 Received From : +15:28:20 ============================================================================ +15:28:20 FNo. Len. Field Value +15:28:20 ============================================================================ +15:28:20 [ 1] [ 4] [0200] +15:28:20 [ 2] [ 16] [6213545000202410] +15:28:20 [ 3] [ 6] [010000] +15:28:20 [ 4] [ 12] [000050000000] +15:28:20 [ 7] [ 10] [0320082726] +15:28:20 [ 11] [ 6] [270023] +15:28:20 [ 12] [ 6] [152726] +15:28:20 [ 13] [ 4] [0320] +15:28:20 [ 14] [ 4] [4912] +15:28:20 [ 15] [ 4] [0320] +15:28:20 [ 18] [ 4] [6011] +15:28:20 [ 19] [ 3] [418] +15:28:20 [ 22] [ 3] [021] +15:28:20 [ 25] [ 2] [01] +15:28:20 [ 28] [ 9] [D00002000] +15:28:20 [ 32] [ 6] [180893] +15:28:20 [ 35] [ 32] [6213545000202410=491212010241467] +15:28:20 [ 37] [ 12] [507908270023] +15:28:20 [ 41] [ 8] [0121SKBR] +15:28:20 [ 42] [ 15] [999999 ] +15:28:20 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +15:28:20 [ 49] [ 3] [418] +15:28:20 [ 52] [ 16] [B141C57F6A706FFA] +15:28:20 ============================================================================ +15:28:20 + + +waiting on router queue for slot.... +15:28:20 Sending to : +15:28:20 ============================================================================ +15:28:20 ============================================================================ +15:28:20 Slot Id : <215> +15:28:20 Transaction Type : REQUEST +15:28:20 Received From : +15:28:20 ============================================================================ +15:28:20 FNo. Len. Field Value +15:28:20 ============================================================================ +15:28:20 [ 1] [ 4] [0200] +15:28:20 [ 2] [ 16] [6213545000202410] +15:28:20 [ 3] [ 6] [010000] +15:28:20 [ 4] [ 12] [000050000000] +15:28:20 [ 7] [ 10] [0320082726] +15:28:20 [ 11] [ 6] [270023] +15:28:20 [ 12] [ 6] [152726] +15:28:20 [ 13] [ 4] [0320] +15:28:20 [ 14] [ 4] [4912] +15:28:20 [ 15] [ 4] [0320] +15:28:20 [ 18] [ 4] [6011] +15:28:20 [ 19] [ 3] [418] +15:28:20 [ 22] [ 3] [021] +15:28:20 [ 25] [ 2] [01] +15:28:20 [ 28] [ 9] [D00002000] +15:28:20 [ 32] [ 6] [180893] +15:28:20 [ 35] [ 32] [6213545000202410=491212010241467] +15:28:20 [ 37] [ 12] [507908270023] +15:28:20 [ 41] [ 8] [0121SKBR] +15:28:20 [ 42] [ 15] [999999 ] +15:28:20 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +15:28:20 [ 49] [ 3] [418] +15:28:20 [ 52] [ 16] [DC04D5F504FF19DC] +15:28:20 ============================================================================ +15:28:20 + + +waiting on router queue for slot.... +15:28:20 Sending to : <0> +15:28:20 ============================================================================ +15:28:21 ============================================================================ +15:28:21 Slot Id : <215> +15:28:21 Transaction Type : RESPONSE +15:28:21 Received From : +15:28:21 ============================================================================ +15:28:21 FNo. Len. Field Value +15:28:21 ============================================================================ +15:28:21 [ 1] [ 4] [0210] +15:28:21 [ 2] [ 16] [6213545000202410] +15:28:21 [ 3] [ 6] [010000] +15:28:21 [ 4] [ 12] [000050000000] +15:28:21 [ 7] [ 10] [0320082726] +15:28:21 [ 11] [ 6] [270023] +15:28:21 [ 12] [ 6] [152726] +15:28:21 [ 13] [ 4] [0320] +15:28:21 [ 15] [ 4] [0320] +15:28:21 [ 18] [ 4] [6011] +15:28:21 [ 19] [ 3] [418] +15:28:21 [ 32] [ 6] [180893] +15:28:21 [ 35] [ 32] [6213545000202410=491212010241467] +15:28:21 [ 37] [ 12] [507908270023] +15:28:21 [ 38] [ 6] [690673] +15:28:21 [ 39] [ 2] [00] +15:28:21 [ 41] [ 8] [0121SKBR] +15:28:21 [ 49] [ 3] [418] +15:28:21 [ 54] [ 40] [0001418C0003748635500002418C000374863550] +15:28:21 ============================================================================ +15:28:21 Sending to : +15:28:21 ============================================================================ +15:28:21 + + +waiting on router queue for slot.... +15:28:21 ============================================================================ +15:28:21 Slot Id : <223> +15:28:21 Transaction Type : RESPONSE +15:28:21 Received From : +15:28:21 ============================================================================ +15:28:21 FNo. Len. Field Value +15:28:21 ============================================================================ +15:28:21 [ 1] [ 4] [0210] +15:28:21 [ 2] [ 16] [6688990100957008] +15:28:21 [ 3] [ 6] [012000] +15:28:21 [ 4] [ 12] [000070000000] +15:28:21 [ 11] [ 6] [784085] +15:28:21 [ 12] [ 6] [152812] +15:28:21 [ 15] [ 4] [0320] +15:28:21 [ 18] [ 4] [6011] +15:28:21 [ 32] [ 6] [621354] +15:28:21 [ 35] [ 37] [6688990100957008=41121231700888100000] +15:28:21 [ 37] [ 12] [507904719735] +15:28:21 [ 38] [ 6] [753661] +15:28:21 [ 39] [ 2] [00] +15:28:21 [ 41] [ 8] [18001000] +15:28:21 [ 49] [ 3] [418] +15:28:21 [ 54] [ 20] [2002418C000124601943] +15:28:21 ============================================================================ +15:28:21 Calculate Source COMM Id = 0 +15:28:21 ============================================================================ +15:28:21 + + +waiting on router queue for slot.... +15:28:22 ============================================================================ +15:28:22 Slot Id : <215> +15:28:22 Transaction Type : RESPONSE +15:28:22 Received From : +15:28:22 ============================================================================ +15:28:22 FNo. Len. Field Value +15:28:22 ============================================================================ +15:28:22 [ 1] [ 4] [0210] +15:28:22 [ 2] [ 16] [6213545000202410] +15:28:22 [ 3] [ 6] [010000] +15:28:22 [ 4] [ 12] [000050000000] +15:28:22 [ 7] [ 10] [0320082726] +15:28:22 [ 11] [ 6] [270023] +15:28:22 [ 12] [ 6] [152726] +15:28:22 [ 13] [ 4] [0320] +15:28:22 [ 15] [ 4] [0320] +15:28:22 [ 18] [ 4] [6011] +15:28:22 [ 19] [ 3] [418] +15:28:22 [ 32] [ 6] [180893] +15:28:22 [ 35] [ 32] [6213545000202410=491212010241467] +15:28:22 [ 37] [ 12] [507908270023] +15:28:22 [ 38] [ 6] [690673] +15:28:22 [ 39] [ 2] [00] +15:28:22 [ 41] [ 8] [0121SKBR] +15:28:22 [ 49] [ 3] [418] +15:28:22 [ 54] [ 40] [0001418C0003748635500002418C000374863550] +15:28:22 ============================================================================ +15:28:22 Calculate Source COMM Id = 2 +15:28:22 ============================================================================ +15:28:22 + + +waiting on router queue for slot.... +15:28:35 ============================================================================ +15:28:35 Slot Id : <243> +15:28:35 Transaction Type : REQUEST +15:28:35 Received From : +15:28:35 ============================================================================ +15:28:35 FNo. Len. Field Value +15:28:35 ============================================================================ +15:28:35 [ 1] [ 4] [0800] +15:28:35 [ 2] [ 5] [02531] +15:28:35 [ 3] [ 6] [579158] +15:28:35 [ 7] [ 10] [0320082835] +15:28:35 [ 11] [ 6] [807310] +15:28:35 [ 15] [ 10] [0320082835] +15:28:35 [ 37] [ 11] [57915807310] +15:28:35 [ 70] [ 3] [001] +15:28:35 ============================================================================ +15:28:35 + + +waiting on router queue for slot.... +15:28:35 ============================================================================ +15:28:35 Slot Id : <243> +15:28:35 Transaction Type : RESPONSE +15:28:35 Received From : +15:28:35 ============================================================================ +15:28:35 FNo. Len. Field Value +15:28:35 ============================================================================ +15:28:35 [ 1] [ 4] [0810] +15:28:35 [ 7] [ 10] [0320082835] +15:28:35 [ 11] [ 6] [807310] +15:28:35 [ 15] [ 4] [0320] +15:28:35 [ 37] [ 12] [57915807310] +15:28:35 [ 39] [ 2] [00] +15:28:35 [ 70] [ 3] [001] +15:28:35 ============================================================================ +15:28:35 Sending to : +15:28:35 ============================================================================ +15:28:35 + + +waiting on router queue for slot.... +15:28:37 ============================================================================ +15:28:37 Slot Id : <248> +15:28:37 Transaction Type : REQUEST +15:28:37 Received From : +15:28:37 ============================================================================ +15:28:37 FNo. Len. Field Value +15:28:37 ============================================================================ +15:28:37 [ 1] [ 4] [0800] +15:28:37 [ 7] [ 10] [0320082744] +15:28:37 [ 11] [ 6] [157018] +15:28:37 [ 70] [ 3] [301] +15:28:37 ============================================================================ +15:28:37 + + +waiting on router queue for slot.... +15:28:37 Sending to : +15:28:37 ============================================================================ +15:28:37 ============================================================================ +15:28:37 Slot Id : <248> +15:28:37 Transaction Type : RESPONSE +15:28:37 Received From : +15:28:37 ============================================================================ +15:28:37 FNo. Len. Field Value +15:28:37 ============================================================================ +15:28:37 [ 1] [ 4] [0810] +15:28:37 [ 7] [ 10] [0320082744] +15:28:37 [ 11] [ 6] [157018] +15:28:37 [ 39] [ 2] [00] +15:28:37 [ 70] [ 3] [301] +15:28:37 ============================================================================ +15:28:37 Calculate Source COMM Id = 2 +15:28:37 ============================================================================ +15:28:37 + + +waiting on router queue for slot.... +15:28:41 ============================================================================ +15:28:41 Slot Id : <244> +15:28:41 Transaction Type : REQUEST +15:28:41 Received From : +15:28:41 ============================================================================ +15:28:41 FNo. Len. Field Value +15:28:41 ============================================================================ +15:28:41 [ 1] [ 4] [0200] +15:28:41 [ 2] [ 16] [6688990603123207] +15:28:41 [ 3] [ 6] [011000] +15:28:41 [ 4] [ 12] [000010000000] +15:28:41 [ 7] [ 10] [0320152836] +15:28:41 [ 11] [ 6] [784189] +15:28:41 [ 12] [ 6] [152836] +15:28:41 [ 13] [ 4] [0320] +15:28:41 [ 15] [ 4] [0320] +15:28:41 [ 18] [ 4] [6011] +15:28:41 [ 22] [ 3] [900] +15:28:41 [ 25] [ 2] [02] +15:28:41 [ 28] [ 9] [D00002000] +15:28:41 [ 32] [ 6] [621354] +15:28:41 [ 35] [ 37] [6688990603123207=44060061320731500000] +15:28:41 [ 37] [ 12] [507902546781] +15:28:41 [ 41] [ 8] [05003700] +15:28:41 [ 42] [ 15] [NATIVE ] +15:28:41 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +15:28:41 [ 49] [ 3] [418] +15:28:41 [ 52] [ 16] [3852170BE31DF649] +15:28:41 ============================================================================ +15:28:41 + + +waiting on router queue for slot.... +15:28:41 Sending to : +15:28:41 ============================================================================ +15:28:41 Sending to : +15:28:41 ============================================================================ +15:28:41 ============================================================================ +15:28:41 Slot Id : <244> +15:28:41 Transaction Type : REQUEST +15:28:41 Received From : +15:28:41 ============================================================================ +15:28:41 FNo. Len. Field Value +15:28:41 ============================================================================ +15:28:41 [ 1] [ 4] [0200] +15:28:41 [ 2] [ 16] [6688990603123207] +15:28:41 [ 3] [ 6] [011000] +15:28:41 [ 4] [ 12] [000010000000] +15:28:41 [ 7] [ 10] [0320152836] +15:28:41 [ 11] [ 6] [784189] +15:28:41 [ 12] [ 6] [152836] +15:28:41 [ 13] [ 4] [0320] +15:28:41 [ 15] [ 4] [0320] +15:28:41 [ 18] [ 4] [6011] +15:28:41 [ 22] [ 3] [900] +15:28:41 [ 25] [ 2] [02] +15:28:41 [ 28] [ 9] [D00002000] +15:28:41 [ 32] [ 6] [621354] +15:28:41 [ 35] [ 37] [6688990603123207=44060061320731500000] +15:28:41 [ 37] [ 12] [507902546781] +15:28:41 [ 41] [ 8] [05003700] +15:28:41 [ 42] [ 15] [NATIVE ] +15:28:41 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +15:28:41 [ 49] [ 3] [418] +15:28:41 [ 52] [ 16] [3852170BE31DF649] +15:28:41 ============================================================================ +15:28:41 + + +waiting on router queue for slot.... +15:28:41 Sending to : +15:28:41 ============================================================================ +15:28:41 ============================================================================ +15:28:41 Slot Id : <244> +15:28:41 Transaction Type : REQUEST +15:28:41 Received From : +15:28:41 ============================================================================ +15:28:41 FNo. Len. Field Value +15:28:41 ============================================================================ +15:28:41 [ 1] [ 4] [0200] +15:28:41 [ 2] [ 16] [6688990603123207] +15:28:41 [ 3] [ 6] [011000] +15:28:41 [ 4] [ 12] [000010000000] +15:28:41 [ 7] [ 10] [0320152836] +15:28:41 [ 11] [ 6] [784189] +15:28:41 [ 12] [ 6] [152836] +15:28:41 [ 13] [ 4] [0320] +15:28:41 [ 15] [ 4] [0320] +15:28:41 [ 18] [ 4] [6011] +15:28:41 [ 22] [ 3] [900] +15:28:41 [ 25] [ 2] [02] +15:28:41 [ 28] [ 9] [D00002000] +15:28:41 [ 32] [ 6] [621354] +15:28:41 [ 35] [ 37] [6688990603123207=44060061320731500000] +15:28:41 [ 37] [ 12] [507902546781] +15:28:41 [ 41] [ 8] [05003700] +15:28:41 [ 42] [ 15] [NATIVE ] +15:28:41 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +15:28:41 [ 49] [ 3] [418] +15:28:41 [ 52] [ 16] [54898FFDD0CC75CD] +15:28:41 ============================================================================ +15:28:41 + + +waiting on router queue for slot.... +15:28:41 Sending to : <4> +15:28:41 ============================================================================ +15:28:42 ============================================================================ +15:28:42 Slot Id : <244> +15:28:42 Transaction Type : RESPONSE +15:28:42 Received From : +15:28:42 ============================================================================ +15:28:42 FNo. Len. Field Value +15:28:42 ============================================================================ +15:28:42 [ 1] [ 4] [0210] +15:28:42 [ 2] [ 16] [6688990603123207] +15:28:42 [ 3] [ 6] [011000] +15:28:42 [ 4] [ 12] [000010000000] +15:28:42 [ 11] [ 6] [784189] +15:28:42 [ 12] [ 6] [152836] +15:28:42 [ 15] [ 4] [0320] +15:28:42 [ 18] [ 4] [6011] +15:28:42 [ 32] [ 6] [621354] +15:28:42 [ 35] [ 37] [6688990603123207=44060061320731500000] +15:28:42 [ 37] [ 12] [507902546781] +15:28:42 [ 38] [ 6] [789871] +15:28:42 [ 39] [ 2] [00] +15:28:42 [ 41] [ 8] [05003700] +15:28:42 [ 49] [ 3] [418] +15:28:42 [ 54] [ 20] [1002418C000057604115] +15:28:42 ============================================================================ +15:28:42 Sending to : +15:28:42 ============================================================================ +15:28:42 + + +waiting on router queue for slot.... +15:28:44 ============================================================================ +15:28:44 Slot Id : <244> +15:28:44 Transaction Type : RESPONSE +15:28:44 Received From : +15:28:44 ============================================================================ +15:28:44 FNo. Len. Field Value +15:28:44 ============================================================================ +15:28:44 [ 1] [ 4] [0210] +15:28:44 [ 2] [ 16] [6688990603123207] +15:28:44 [ 3] [ 6] [011000] +15:28:44 [ 4] [ 12] [000010000000] +15:28:44 [ 11] [ 6] [784189] +15:28:44 [ 12] [ 6] [152836] +15:28:44 [ 15] [ 4] [0320] +15:28:44 [ 18] [ 4] [6011] +15:28:44 [ 32] [ 6] [621354] +15:28:44 [ 35] [ 37] [6688990603123207=44060061320731500000] +15:28:44 [ 37] [ 12] [507902546781] +15:28:44 [ 38] [ 6] [789871] +15:28:44 [ 39] [ 2] [00] +15:28:44 [ 41] [ 8] [05003700] +15:28:44 [ 49] [ 3] [418] +15:28:44 [ 54] [ 20] [1002418C000057604115] +15:28:44 ============================================================================ +15:28:44 Calculate Source COMM Id = 0 +15:28:44 ============================================================================ +15:28:44 + + +waiting on router queue for slot.... +15:28:46 ============================================================================ +15:28:46 Slot Id : <227> +15:28:46 Transaction Type : REQUEST +15:28:46 Received From : +15:28:46 ============================================================================ +15:28:46 FNo. Len. Field Value +15:28:46 ============================================================================ +15:28:46 [ 1] [ 4] [0200] +15:28:46 [ 2] [ 16] [6213541000435050] +15:28:46 [ 3] [ 6] [010000] +15:28:46 [ 4] [ 12] [000100000000] +15:28:46 [ 7] [ 10] [0320082753] +15:28:46 [ 11] [ 6] [270027] +15:28:46 [ 12] [ 6] [152753] +15:28:46 [ 13] [ 4] [0320] +15:28:46 [ 14] [ 4] [4912] +15:28:46 [ 15] [ 4] [0320] +15:28:46 [ 18] [ 4] [6011] +15:28:46 [ 19] [ 3] [418] +15:28:46 [ 22] [ 3] [021] +15:28:46 [ 25] [ 2] [01] +15:28:46 [ 28] [ 9] [D00002000] +15:28:46 [ 32] [ 6] [180893] +15:28:46 [ 35] [ 32] [6213541000435050=491212013505813] +15:28:46 [ 37] [ 12] [507908270027] +15:28:46 [ 41] [ 8] [0401XSBR] +15:28:46 [ 42] [ 15] [999999 ] +15:28:46 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +15:28:46 [ 49] [ 3] [418] +15:28:46 [ 52] [ 16] [E79B7FC42A1759DF] +15:28:46 ============================================================================ +15:28:46 + + +waiting on router queue for slot.... +15:28:46 Sending to : +15:28:46 ============================================================================ +15:28:46 Sending to : +15:28:46 ============================================================================ +15:28:47 ============================================================================ +15:28:47 Slot Id : <227> +15:28:47 Transaction Type : REQUEST +15:28:47 Received From : +15:28:47 ============================================================================ +15:28:47 FNo. Len. Field Value +15:28:47 ============================================================================ +15:28:47 [ 1] [ 4] [0200] +15:28:47 [ 2] [ 16] [6213541000435050] +15:28:47 [ 3] [ 6] [010000] +15:28:47 [ 4] [ 12] [000100000000] +15:28:47 [ 7] [ 10] [0320082753] +15:28:47 [ 11] [ 6] [270027] +15:28:47 [ 12] [ 6] [152753] +15:28:47 [ 13] [ 4] [0320] +15:28:47 [ 14] [ 4] [4912] +15:28:47 [ 15] [ 4] [0320] +15:28:47 [ 18] [ 4] [6011] +15:28:47 [ 19] [ 3] [418] +15:28:47 [ 22] [ 3] [021] +15:28:47 [ 25] [ 2] [01] +15:28:47 [ 28] [ 9] [D00002000] +15:28:47 [ 32] [ 6] [180893] +15:28:47 [ 35] [ 32] [6213541000435050=491212013505813] +15:28:47 [ 37] [ 12] [507908270027] +15:28:47 [ 41] [ 8] [0401XSBR] +15:28:47 [ 42] [ 15] [999999 ] +15:28:47 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +15:28:47 [ 49] [ 3] [418] +15:28:47 [ 52] [ 16] [E79B7FC42A1759DF] +15:28:47 ============================================================================ +15:28:47 + + +waiting on router queue for slot.... +15:28:47 Sending to : +15:28:47 ============================================================================ +15:28:47 ============================================================================ +15:28:47 Slot Id : <227> +15:28:47 Transaction Type : REQUEST +15:28:47 Received From : +15:28:47 ============================================================================ +15:28:47 FNo. Len. Field Value +15:28:47 ============================================================================ +15:28:47 [ 1] [ 4] [0200] +15:28:47 [ 2] [ 16] [6213541000435050] +15:28:47 [ 3] [ 6] [010000] +15:28:47 [ 4] [ 12] [000100000000] +15:28:47 [ 7] [ 10] [0320082753] +15:28:47 [ 11] [ 6] [270027] +15:28:47 [ 12] [ 6] [152753] +15:28:47 [ 13] [ 4] [0320] +15:28:47 [ 14] [ 4] [4912] +15:28:47 [ 15] [ 4] [0320] +15:28:47 [ 18] [ 4] [6011] +15:28:47 [ 19] [ 3] [418] +15:28:47 [ 22] [ 3] [021] +15:28:47 [ 25] [ 2] [01] +15:28:47 [ 28] [ 9] [D00002000] +15:28:47 [ 32] [ 6] [180893] +15:28:47 [ 35] [ 32] [6213541000435050=491212013505813] +15:28:47 [ 37] [ 12] [507908270027] +15:28:47 [ 41] [ 8] [0401XSBR] +15:28:47 [ 42] [ 15] [999999 ] +15:28:47 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +15:28:47 [ 49] [ 3] [418] +15:28:47 [ 52] [ 16] [CBA85BA0F2CC5FD2] +15:28:47 ============================================================================ +15:28:47 + + +waiting on router queue for slot.... +15:28:47 Sending to : <0> +15:28:47 ============================================================================ +15:28:47 ============================================================================ +15:28:47 Slot Id : <227> +15:28:47 Transaction Type : RESPONSE +15:28:47 Received From : +15:28:47 ============================================================================ +15:28:47 FNo. Len. Field Value +15:28:47 ============================================================================ +15:28:47 [ 1] [ 4] [0210] +15:28:47 [ 2] [ 16] [6213541000435050] +15:28:47 [ 3] [ 6] [010000] +15:28:47 [ 4] [ 12] [000100000000] +15:28:47 [ 7] [ 10] [0320082753] +15:28:47 [ 11] [ 6] [270027] +15:28:47 [ 12] [ 6] [152753] +15:28:47 [ 13] [ 4] [0320] +15:28:47 [ 15] [ 4] [0320] +15:28:47 [ 18] [ 4] [6011] +15:28:47 [ 19] [ 3] [418] +15:28:47 [ 32] [ 6] [180893] +15:28:47 [ 35] [ 32] [6213541000435050=491212013505813] +15:28:47 [ 37] [ 12] [507908270027] +15:28:47 [ 38] [ 6] [354206] +15:28:47 [ 39] [ 2] [00] +15:28:47 [ 41] [ 8] [0401XSBR] +15:28:47 [ 49] [ 3] [418] +15:28:47 [ 54] [ 40] [0001418C0015980736910002418C001598073691] +15:28:47 ============================================================================ +15:28:47 Sending to : +15:28:47 ============================================================================ +15:28:47 + + +waiting on router queue for slot.... +15:28:48 ============================================================================ +15:28:48 Slot Id : <235> +15:28:48 Transaction Type : REQUEST +15:28:48 Received From : +15:28:48 ============================================================================ +15:28:48 FNo. Len. Field Value +15:28:48 ============================================================================ +15:28:48 [ 1] [ 4] [0800] +15:28:48 [ 7] [ 10] [0320082755] +15:28:48 [ 11] [ 6] [157019] +15:28:48 [ 70] [ 3] [301] +15:28:48 ============================================================================ +15:28:48 + + +waiting on router queue for slot.... +15:28:48 Sending to : +15:28:48 ============================================================================ +15:28:48 ============================================================================ +15:28:48 Slot Id : <235> +15:28:48 Transaction Type : RESPONSE +15:28:48 Received From : +15:28:48 ============================================================================ +15:28:48 FNo. Len. Field Value +15:28:48 ============================================================================ +15:28:48 [ 1] [ 4] [0810] +15:28:48 [ 7] [ 10] [0320082755] +15:28:48 [ 11] [ 6] [157019] +15:28:48 [ 39] [ 2] [00] +15:28:48 [ 70] [ 3] [301] +15:28:48 ============================================================================ +15:28:48 Calculate Source COMM Id = 2 +15:28:48 ============================================================================ +15:28:48 + + +waiting on router queue for slot.... +15:28:49 ============================================================================ +15:28:49 Slot Id : <227> +15:28:49 Transaction Type : RESPONSE +15:28:49 Received From : +15:28:49 ============================================================================ +15:28:49 FNo. Len. Field Value +15:28:49 ============================================================================ +15:28:49 [ 1] [ 4] [0210] +15:28:49 [ 2] [ 16] [6213541000435050] +15:28:49 [ 3] [ 6] [010000] +15:28:49 [ 4] [ 12] [000100000000] +15:28:49 [ 7] [ 10] [0320082753] +15:28:49 [ 11] [ 6] [270027] +15:28:49 [ 12] [ 6] [152753] +15:28:49 [ 13] [ 4] [0320] +15:28:49 [ 15] [ 4] [0320] +15:28:49 [ 18] [ 4] [6011] +15:28:49 [ 19] [ 3] [418] +15:28:49 [ 32] [ 6] [180893] +15:28:49 [ 35] [ 32] [6213541000435050=491212013505813] +15:28:49 [ 37] [ 12] [507908270027] +15:28:49 [ 38] [ 6] [354206] +15:28:49 [ 39] [ 2] [00] +15:28:49 [ 41] [ 8] [0401XSBR] +15:28:49 [ 49] [ 3] [418] +15:28:49 [ 54] [ 40] [0001418C0015980736910002418C001598073691] +15:28:49 ============================================================================ +15:28:49 Calculate Source COMM Id = 2 +15:28:49 ============================================================================ +15:28:49 + + +waiting on router queue for slot.... +15:28:49 ============================================================================ +15:28:49 Slot Id : <251> +15:28:49 Transaction Type : REQUEST +15:28:49 Received From : +15:28:49 ============================================================================ +15:28:49 FNo. Len. Field Value +15:28:49 ============================================================================ +15:28:49 [ 1] [ 4] [0200] +15:28:49 [ 2] [ 16] [6213545000339444] +15:28:49 [ 3] [ 6] [012000] +15:28:49 [ 4] [ 12] [000100000000] +15:28:49 [ 7] [ 10] [0320153636] +15:28:49 [ 11] [ 6] [177375] +15:28:49 [ 12] [ 6] [153636] +15:28:49 [ 13] [ 4] [0320] +15:28:49 [ 14] [ 4] [4912] +15:28:49 [ 15] [ 4] [0320] +15:28:49 [ 18] [ 4] [6011] +15:28:49 [ 22] [ 3] [900] +15:28:49 [ 25] [ 2] [02] +15:28:49 [ 28] [ 9] [D00002000] +15:28:49 [ 32] [ 6] [220699] +15:28:49 [ 35] [ 32] [6213545000339444=491212013944543] +15:28:49 [ 37] [ 12] [507900010246] +15:28:49 [ 41] [ 8] [01000100] +15:28:49 [ 42] [ 15] [APTRA ] +15:28:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:28:49 [ 49] [ 3] [418] +15:28:49 [ 52] [ 16] [6661BA8AC4E925FB] +15:28:49 ============================================================================ +15:28:49 + + +waiting on router queue for slot.... +15:28:49 Sending to : +15:28:49 ============================================================================ +15:28:49 Sending to : +15:28:49 ============================================================================ +15:28:49 ============================================================================ +15:28:49 Slot Id : <251> +15:28:49 Transaction Type : REQUEST +15:28:49 Received From : +15:28:49 ============================================================================ +15:28:49 FNo. Len. Field Value +15:28:49 ============================================================================ +15:28:49 [ 1] [ 4] [0200] +15:28:49 [ 2] [ 16] [6213545000339444] +15:28:49 [ 3] [ 6] [012000] +15:28:49 [ 4] [ 12] [000100000000] +15:28:49 [ 7] [ 10] [0320153636] +15:28:49 [ 11] [ 6] [177375] +15:28:49 [ 12] [ 6] [153636] +15:28:49 [ 13] [ 4] [0320] +15:28:49 [ 14] [ 4] [4912] +15:28:49 [ 15] [ 4] [0320] +15:28:49 [ 18] [ 4] [6011] +15:28:49 [ 22] [ 3] [900] +15:28:49 [ 25] [ 2] [02] +15:28:49 [ 28] [ 9] [D00002000] +15:28:49 [ 32] [ 6] [220699] +15:28:49 [ 35] [ 32] [6213545000339444=491212013944543] +15:28:49 [ 37] [ 12] [507900010246] +15:28:49 [ 41] [ 8] [01000100] +15:28:49 [ 42] [ 15] [APTRA ] +15:28:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:28:49 [ 49] [ 3] [418] +15:28:49 [ 52] [ 16] [6661BA8AC4E925FB] +15:28:49 ============================================================================ +15:28:49 + + +waiting on router queue for slot.... +15:28:49 Sending to : +15:28:49 ============================================================================ +15:28:49 ============================================================================ +15:28:49 Slot Id : <251> +15:28:49 Transaction Type : REQUEST +15:28:49 Received From : +15:28:49 ============================================================================ +15:28:49 FNo. Len. Field Value +15:28:49 ============================================================================ +15:28:49 [ 1] [ 4] [0200] +15:28:49 [ 2] [ 16] [6213545000339444] +15:28:49 [ 3] [ 6] [012000] +15:28:49 [ 4] [ 12] [000100000000] +15:28:49 [ 7] [ 10] [0320153636] +15:28:49 [ 11] [ 6] [177375] +15:28:49 [ 12] [ 6] [153636] +15:28:49 [ 13] [ 4] [0320] +15:28:49 [ 14] [ 4] [4912] +15:28:49 [ 15] [ 4] [0320] +15:28:49 [ 18] [ 4] [6011] +15:28:49 [ 22] [ 3] [900] +15:28:49 [ 25] [ 2] [02] +15:28:49 [ 28] [ 9] [D00002000] +15:28:49 [ 32] [ 6] [220699] +15:28:49 [ 35] [ 32] [6213545000339444=491212013944543] +15:28:49 [ 37] [ 12] [507900010246] +15:28:49 [ 41] [ 8] [01000100] +15:28:49 [ 42] [ 15] [APTRA ] +15:28:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:28:49 [ 49] [ 3] [418] +15:28:49 [ 52] [ 16] [4E4FDD3A862858CE] +15:28:49 ============================================================================ +15:28:49 + + +waiting on router queue for slot.... +15:28:49 Sending to : <0> +15:28:49 ============================================================================ +15:28:50 ============================================================================ +15:28:50 Slot Id : <251> +15:28:50 Transaction Type : RESPONSE +15:28:50 Received From : +15:28:50 ============================================================================ +15:28:50 FNo. Len. Field Value +15:28:50 ============================================================================ +15:28:50 [ 1] [ 4] [0210] +15:28:50 [ 2] [ 16] [6213545000339444] +15:28:50 [ 3] [ 6] [012000] +15:28:50 [ 4] [ 12] [000100000000] +15:28:50 [ 7] [ 10] [0320153636] +15:28:50 [ 11] [ 6] [177375] +15:28:50 [ 12] [ 6] [153636] +15:28:50 [ 13] [ 4] [0320] +15:28:50 [ 15] [ 4] [0320] +15:28:50 [ 18] [ 4] [6011] +15:28:50 [ 32] [ 6] [220699] +15:28:50 [ 35] [ 32] [6213545000339444=491212013944543] +15:28:50 [ 37] [ 12] [507900010246] +15:28:50 [ 38] [ 6] [810703] +15:28:50 [ 39] [ 2] [00] +15:28:50 [ 41] [ 8] [01000100] +15:28:50 [ 49] [ 3] [418] +15:28:50 [ 54] [ 40] [2001418C0007422481652002418C000742248165] +15:28:50 ============================================================================ +15:28:50 Sending to : +15:28:50 ============================================================================ +15:28:50 + + +waiting on router queue for slot.... +15:28:51 ============================================================================ +15:28:51 Slot Id : <251> +15:28:51 Transaction Type : RESPONSE +15:28:51 Received From : +15:28:51 ============================================================================ +15:28:51 FNo. Len. Field Value +15:28:51 ============================================================================ +15:28:51 [ 1] [ 4] [0210] +15:28:51 [ 2] [ 16] [6213545000339444] +15:28:51 [ 3] [ 6] [012000] +15:28:51 [ 4] [ 12] [000100000000] +15:28:51 [ 7] [ 10] [0320153636] +15:28:51 [ 11] [ 6] [177375] +15:28:51 [ 12] [ 6] [153636] +15:28:51 [ 13] [ 4] [0320] +15:28:51 [ 15] [ 4] [0320] +15:28:51 [ 18] [ 4] [6011] +15:28:51 [ 32] [ 6] [220699] +15:28:51 [ 35] [ 32] [6213545000339444=491212013944543] +15:28:51 [ 37] [ 12] [507900010246] +15:28:51 [ 38] [ 6] [810703] +15:28:51 [ 39] [ 2] [00] +15:28:51 [ 41] [ 8] [01000100] +15:28:51 [ 49] [ 3] [418] +15:28:51 [ 54] [ 40] [2001418C0007422481652002418C000742248165] +15:28:51 ============================================================================ +15:28:51 Calculate Source COMM Id = 1 +15:28:51 ============================================================================ +15:28:51 + + +waiting on router queue for slot.... +15:28:54 ============================================================================ +15:28:54 Slot Id : <177> +15:28:54 Transaction Type : REQUEST +15:28:54 Received From : +15:28:54 ============================================================================ +15:28:54 FNo. Len. Field Value +15:28:54 ============================================================================ +15:28:54 [ 1] [ 4] [0200] +15:28:54 [ 2] [ 16] [6213545000214712] +15:28:54 [ 3] [ 6] [302000] +15:28:54 [ 4] [ 12] [000000000000] +15:28:54 [ 7] [ 10] [0320152644] +15:28:54 [ 11] [ 6] [950067] +15:28:54 [ 12] [ 6] [152644] +15:28:54 [ 13] [ 4] [0320] +15:28:54 [ 15] [ 4] [0320] +15:28:54 [ 18] [ 4] [6011] +15:28:54 [ 19] [ 3] [418] +15:28:54 [ 22] [ 3] [021] +15:28:54 [ 25] [ 2] [01] +15:28:54 [ 28] [ 9] [D00000000] +15:28:54 [ 32] [ 6] [668899] +15:28:54 [ 35] [ 32] [6213545000214712=491212011471675] +15:28:54 [ 37] [ 12] [507900314776] +15:28:54 [ 41] [ 8] [03013002] +15:28:54 [ 42] [ 15] [APT ] +15:28:54 [ 43] [ 40] [ NABO SCHOOL THAKHAK DINAB] +15:28:54 [ 49] [ 3] [418] +15:28:54 [ 52] [ 16] [35E9A6EACEDEE5AC] +15:28:54 ============================================================================ +15:28:54 + + +waiting on router queue for slot.... +15:28:54 Sending to : +15:28:54 ============================================================================ +15:28:54 Sending to : +15:28:54 ============================================================================ +15:28:55 ============================================================================ +15:28:55 Slot Id : <177> +15:28:55 Transaction Type : REQUEST +15:28:55 Received From : +15:28:55 ============================================================================ +15:28:55 FNo. Len. Field Value +15:28:55 ============================================================================ +15:28:55 [ 1] [ 4] [0200] +15:28:55 [ 2] [ 16] [6213545000214712] +15:28:55 [ 3] [ 6] [302000] +15:28:55 [ 4] [ 12] [000000000000] +15:28:55 [ 7] [ 10] [0320152644] +15:28:55 [ 11] [ 6] [950067] +15:28:55 [ 12] [ 6] [152644] +15:28:55 [ 13] [ 4] [0320] +15:28:55 [ 15] [ 4] [0320] +15:28:55 [ 18] [ 4] [6011] +15:28:55 [ 19] [ 3] [418] +15:28:55 [ 22] [ 3] [021] +15:28:55 [ 25] [ 2] [01] +15:28:55 [ 28] [ 9] [D00000000] +15:28:55 [ 32] [ 6] [668899] +15:28:55 [ 35] [ 32] [6213545000214712=491212011471675] +15:28:55 [ 37] [ 12] [507900314776] +15:28:55 [ 41] [ 8] [03013002] +15:28:55 [ 42] [ 15] [APT ] +15:28:55 [ 43] [ 40] [ NABO SCHOOL THAKHAK DINAB] +15:28:55 [ 49] [ 3] [418] +15:28:55 [ 52] [ 16] [35E9A6EACEDEE5AC] +15:28:55 ============================================================================ +15:28:55 + + +waiting on router queue for slot.... +15:28:55 Sending to : +15:28:55 ============================================================================ +15:28:55 ============================================================================ +15:28:55 Slot Id : <177> +15:28:55 Transaction Type : REQUEST +15:28:55 Received From : +15:28:55 ============================================================================ +15:28:55 FNo. Len. Field Value +15:28:55 ============================================================================ +15:28:55 [ 1] [ 4] [0200] +15:28:55 [ 2] [ 16] [6213545000214712] +15:28:55 [ 3] [ 6] [302000] +15:28:55 [ 4] [ 12] [000000000000] +15:28:55 [ 7] [ 10] [0320152644] +15:28:55 [ 11] [ 6] [950067] +15:28:55 [ 12] [ 6] [152644] +15:28:55 [ 13] [ 4] [0320] +15:28:55 [ 15] [ 4] [0320] +15:28:55 [ 18] [ 4] [6011] +15:28:55 [ 19] [ 3] [418] +15:28:55 [ 22] [ 3] [021] +15:28:55 [ 25] [ 2] [01] +15:28:55 [ 28] [ 9] [D00000000] +15:28:55 [ 32] [ 6] [668899] +15:28:55 [ 35] [ 32] [6213545000214712=491212011471675] +15:28:55 [ 37] [ 12] [507900314776] +15:28:55 [ 41] [ 8] [03013002] +15:28:55 [ 42] [ 15] [APT ] +15:28:55 [ 43] [ 40] [ NABO SCHOOL THAKHAK DINAB] +15:28:55 [ 49] [ 3] [418] +15:28:55 [ 52] [ 16] [DA6D397A9E6D60D7] +15:28:55 ============================================================================ +15:28:55 + + +waiting on router queue for slot.... +15:28:55 Sending to : <0> +15:28:55 ============================================================================ +15:28:55 ============================================================================ +15:28:55 Slot Id : <177> +15:28:55 Transaction Type : RESPONSE +15:28:55 Received From : +15:28:55 ============================================================================ +15:28:55 FNo. Len. Field Value +15:28:55 ============================================================================ +15:28:55 [ 1] [ 4] [0210] +15:28:55 [ 2] [ 16] [6213545000214712] +15:28:55 [ 3] [ 6] [302000] +15:28:55 [ 4] [ 12] [000000000000] +15:28:55 [ 7] [ 10] [0320152644] +15:28:55 [ 11] [ 6] [950067] +15:28:55 [ 12] [ 6] [152644] +15:28:55 [ 13] [ 4] [0320] +15:28:55 [ 15] [ 4] [0320] +15:28:55 [ 18] [ 4] [6011] +15:28:55 [ 19] [ 3] [418] +15:28:55 [ 32] [ 6] [668899] +15:28:55 [ 35] [ 32] [6213545000214712=491212011471675] +15:28:55 [ 37] [ 12] [507900314776] +15:28:55 [ 38] [ 6] [293994] +15:28:55 [ 39] [ 2] [00] +15:28:55 [ 41] [ 8] [03013002] +15:28:55 [ 49] [ 3] [418] +15:28:55 [ 54] [ 40] [2001418C0022216756812002418C002221675681] +15:28:55 ============================================================================ +15:28:55 Sending to : +15:28:55 ============================================================================ +15:28:55 + + +waiting on router queue for slot.... +15:28:56 ============================================================================ +15:28:56 Slot Id : <177> +15:28:56 Transaction Type : RESPONSE +15:28:56 Received From : +15:28:56 ============================================================================ +15:28:56 FNo. Len. Field Value +15:28:56 ============================================================================ +15:28:56 [ 1] [ 4] [0210] +15:28:56 [ 2] [ 16] [6213545000214712] +15:28:56 [ 3] [ 6] [302000] +15:28:56 [ 4] [ 12] [000000000000] +15:28:56 [ 7] [ 10] [0320152644] +15:28:56 [ 11] [ 6] [950067] +15:28:56 [ 12] [ 6] [152644] +15:28:56 [ 13] [ 4] [0320] +15:28:56 [ 15] [ 4] [0320] +15:28:56 [ 18] [ 4] [6011] +15:28:56 [ 19] [ 3] [418] +15:28:56 [ 32] [ 6] [668899] +15:28:56 [ 35] [ 32] [6213545000214712=491212011471675] +15:28:56 [ 37] [ 12] [507900314776] +15:28:56 [ 38] [ 6] [293994] +15:28:56 [ 39] [ 2] [00] +15:28:56 [ 41] [ 8] [03013002] +15:28:56 [ 49] [ 3] [418] +15:28:56 [ 54] [ 40] [2001418C0022216756812002418C002221675681] +15:28:56 ============================================================================ +15:28:56 Calculate Source COMM Id = 4 +15:28:56 ============================================================================ +15:28:56 + + +waiting on router queue for slot.... +15:28:57 ============================================================================ +15:28:57 Slot Id : <242> +15:28:57 Transaction Type : REQUEST +15:28:57 Received From : +15:28:57 ============================================================================ +15:28:57 FNo. Len. Field Value +15:28:57 ============================================================================ +15:28:57 [ 1] [ 4] [0200] +15:28:57 [ 2] [ 16] [6213544000547759] +15:28:57 [ 3] [ 6] [010000] +15:28:57 [ 4] [ 12] [000010000000] +15:28:57 [ 7] [ 10] [0320152647] +15:28:57 [ 11] [ 6] [950069] +15:28:57 [ 12] [ 6] [152647] +15:28:57 [ 13] [ 4] [0320] +15:28:57 [ 15] [ 4] [0320] +15:28:57 [ 18] [ 4] [6011] +15:28:57 [ 19] [ 3] [418] +15:28:57 [ 22] [ 3] [021] +15:28:57 [ 25] [ 2] [01] +15:28:57 [ 28] [ 9] [D00002000] +15:28:57 [ 32] [ 6] [668899] +15:28:57 [ 35] [ 32] [6213544000547759=491212014775606] +15:28:57 [ 37] [ 12] [507902683062] +15:28:57 [ 41] [ 8] [03020036] +15:28:57 [ 42] [ 15] [APT ] +15:28:57 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +15:28:57 [ 49] [ 3] [418] +15:28:57 [ 52] [ 16] [0D22D473E54DAE26] +15:28:57 ============================================================================ +15:28:57 + + +waiting on router queue for slot.... +15:28:57 Sending to : +15:28:57 ============================================================================ +15:28:57 Sending to : +15:28:57 ============================================================================ +15:28:57 ============================================================================ +15:28:57 Slot Id : <242> +15:28:57 Transaction Type : REQUEST +15:28:57 Received From : +15:28:57 ============================================================================ +15:28:57 FNo. Len. Field Value +15:28:57 ============================================================================ +15:28:57 [ 1] [ 4] [0200] +15:28:57 [ 2] [ 16] [6213544000547759] +15:28:57 [ 3] [ 6] [010000] +15:28:57 [ 4] [ 12] [000010000000] +15:28:57 [ 7] [ 10] [0320152647] +15:28:57 [ 11] [ 6] [950069] +15:28:57 [ 12] [ 6] [152647] +15:28:57 [ 13] [ 4] [0320] +15:28:57 [ 15] [ 4] [0320] +15:28:57 [ 18] [ 4] [6011] +15:28:57 [ 19] [ 3] [418] +15:28:57 [ 22] [ 3] [021] +15:28:57 [ 25] [ 2] [01] +15:28:57 [ 28] [ 9] [D00002000] +15:28:57 [ 32] [ 6] [668899] +15:28:57 [ 35] [ 32] [6213544000547759=491212014775606] +15:28:57 [ 37] [ 12] [507902683062] +15:28:57 [ 41] [ 8] [03020036] +15:28:57 [ 42] [ 15] [APT ] +15:28:57 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +15:28:57 [ 49] [ 3] [418] +15:28:57 [ 52] [ 16] [0D22D473E54DAE26] +15:28:57 ============================================================================ +15:28:57 + + +waiting on router queue for slot.... +15:28:57 Sending to : +15:28:57 ============================================================================ +15:28:57 ============================================================================ +15:28:57 Slot Id : <242> +15:28:57 Transaction Type : REQUEST +15:28:57 Received From : +15:28:57 ============================================================================ +15:28:57 FNo. Len. Field Value +15:28:57 ============================================================================ +15:28:57 [ 1] [ 4] [0200] +15:28:57 [ 2] [ 16] [6213544000547759] +15:28:57 [ 3] [ 6] [010000] +15:28:57 [ 4] [ 12] [000010000000] +15:28:57 [ 7] [ 10] [0320152647] +15:28:57 [ 11] [ 6] [950069] +15:28:57 [ 12] [ 6] [152647] +15:28:57 [ 13] [ 4] [0320] +15:28:57 [ 15] [ 4] [0320] +15:28:57 [ 18] [ 4] [6011] +15:28:57 [ 19] [ 3] [418] +15:28:57 [ 22] [ 3] [021] +15:28:57 [ 25] [ 2] [01] +15:28:57 [ 28] [ 9] [D00002000] +15:28:57 [ 32] [ 6] [668899] +15:28:57 [ 35] [ 32] [6213544000547759=491212014775606] +15:28:57 [ 37] [ 12] [507902683062] +15:28:57 [ 41] [ 8] [03020036] +15:28:57 [ 42] [ 15] [APT ] +15:28:57 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +15:28:57 [ 49] [ 3] [418] +15:28:57 [ 52] [ 16] [2F8B64A6D5A71368] +15:28:57 ============================================================================ +15:28:57 + + +waiting on router queue for slot.... +15:28:57 Sending to : <0> +15:28:57 ============================================================================ +15:28:58 ============================================================================ +15:28:58 Slot Id : <242> +15:28:58 Transaction Type : RESPONSE +15:28:58 Received From : +15:28:58 ============================================================================ +15:28:58 FNo. Len. Field Value +15:28:58 ============================================================================ +15:28:58 [ 1] [ 4] [0210] +15:28:58 [ 2] [ 16] [6213544000547759] +15:28:58 [ 3] [ 6] [010000] +15:28:58 [ 4] [ 12] [000010000000] +15:28:58 [ 7] [ 10] [0320152647] +15:28:58 [ 11] [ 6] [950069] +15:28:58 [ 12] [ 6] [152647] +15:28:58 [ 13] [ 4] [0320] +15:28:58 [ 15] [ 4] [0320] +15:28:58 [ 18] [ 4] [6011] +15:28:58 [ 19] [ 3] [418] +15:28:58 [ 32] [ 6] [668899] +15:28:58 [ 35] [ 32] [6213544000547759=491212014775606] +15:28:58 [ 37] [ 12] [507902683062] +15:28:58 [ 38] [ 6] [962597] +15:28:58 [ 39] [ 2] [00] +15:28:58 [ 41] [ 8] [03020036] +15:28:58 [ 49] [ 3] [418] +15:28:58 [ 54] [ 40] [0001418C0001340554990002418C000134055499] +15:28:58 ============================================================================ +15:28:58 Sending to : +15:28:58 ============================================================================ +15:28:58 + + +waiting on router queue for slot.... +15:28:59 ============================================================================ +15:28:59 Slot Id : <242> +15:28:59 Transaction Type : RESPONSE +15:28:59 Received From : +15:28:59 ============================================================================ +15:28:59 FNo. Len. Field Value +15:28:59 ============================================================================ +15:28:59 [ 1] [ 4] [0210] +15:28:59 [ 2] [ 16] [6213544000547759] +15:28:59 [ 3] [ 6] [010000] +15:28:59 [ 4] [ 12] [000010000000] +15:28:59 [ 7] [ 10] [0320152647] +15:28:59 [ 11] [ 6] [950069] +15:28:59 [ 12] [ 6] [152647] +15:28:59 [ 13] [ 4] [0320] +15:28:59 [ 15] [ 4] [0320] +15:28:59 [ 18] [ 4] [6011] +15:28:59 [ 19] [ 3] [418] +15:28:59 [ 32] [ 6] [668899] +15:28:59 [ 35] [ 32] [6213544000547759=491212014775606] +15:28:59 [ 37] [ 12] [507902683062] +15:28:59 [ 38] [ 6] [962597] +15:28:59 [ 39] [ 2] [00] +15:28:59 [ 41] [ 8] [03020036] +15:28:59 [ 49] [ 3] [418] +15:28:59 [ 54] [ 40] [0001418C0001340554990002418C000134055499] +15:28:59 ============================================================================ +15:28:59 Calculate Source COMM Id = 4 +15:28:59 ============================================================================ +15:28:59 + + +waiting on router queue for slot.... +15:29:04 ============================================================================ +15:29:04 Slot Id : <250> +15:29:04 Transaction Type : REQUEST +15:29:04 Received From : +15:29:04 ============================================================================ +15:29:04 FNo. Len. Field Value +15:29:04 ============================================================================ +15:29:04 [ 1] [ 4] [0800] +15:29:04 [ 7] [ 10] [0320082811] +15:29:04 [ 11] [ 6] [157020] +15:29:04 [ 70] [ 3] [301] +15:29:04 ============================================================================ +15:29:04 + + +waiting on router queue for slot.... +15:29:04 Sending to : +15:29:04 ============================================================================ +15:29:04 ============================================================================ +15:29:04 Slot Id : <250> +15:29:04 Transaction Type : RESPONSE +15:29:04 Received From : +15:29:04 ============================================================================ +15:29:04 FNo. Len. Field Value +15:29:04 ============================================================================ +15:29:04 [ 1] [ 4] [0810] +15:29:04 [ 7] [ 10] [0320082811] +15:29:04 [ 11] [ 6] [157020] +15:29:04 [ 39] [ 2] [00] +15:29:04 [ 70] [ 3] [301] +15:29:04 ============================================================================ +15:29:04 Calculate Source COMM Id = 2 +15:29:04 ============================================================================ +15:29:04 + + +waiting on router queue for slot.... +15:29:10 ============================================================================ +15:29:10 Slot Id : <226> +15:29:10 Transaction Type : REQUEST +15:29:10 Received From : +15:29:10 ============================================================================ +15:29:10 FNo. Len. Field Value +15:29:10 ============================================================================ +15:29:10 [ 1] [ 4] [0200] +15:29:10 [ 2] [ 16] [6213545000204853] +15:29:10 [ 3] [ 6] [010000] +15:29:10 [ 4] [ 12] [000010000000] +15:29:10 [ 7] [ 10] [0320152701] +15:29:10 [ 11] [ 6] [950077] +15:29:10 [ 12] [ 6] [152701] +15:29:10 [ 13] [ 4] [0320] +15:29:10 [ 15] [ 4] [0320] +15:29:10 [ 18] [ 4] [6011] +15:29:10 [ 19] [ 3] [418] +15:29:10 [ 22] [ 3] [021] +15:29:10 [ 25] [ 2] [01] +15:29:10 [ 28] [ 9] [D00002000] +15:29:10 [ 32] [ 6] [668899] +15:29:10 [ 35] [ 32] [6213545000204853=491212010485368] +15:29:10 [ 37] [ 12] [507902556309] +15:29:10 [ 41] [ 8] [03016004] +15:29:10 [ 42] [ 15] [APT ] +15:29:10 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +15:29:10 [ 49] [ 3] [418] +15:29:10 [ 52] [ 16] [598FCBF58460745D] +15:29:10 ============================================================================ +15:29:10 + + +waiting on router queue for slot.... +15:29:10 Sending to : +15:29:10 ============================================================================ +15:29:10 Sending to : +15:29:10 ============================================================================ +15:29:11 ============================================================================ +15:29:11 Slot Id : <226> +15:29:11 Transaction Type : REQUEST +15:29:11 Received From : +15:29:11 ============================================================================ +15:29:11 FNo. Len. Field Value +15:29:11 ============================================================================ +15:29:11 [ 1] [ 4] [0200] +15:29:11 [ 2] [ 16] [6213545000204853] +15:29:11 [ 3] [ 6] [010000] +15:29:11 [ 4] [ 12] [000010000000] +15:29:11 [ 7] [ 10] [0320152701] +15:29:11 [ 11] [ 6] [950077] +15:29:11 [ 12] [ 6] [152701] +15:29:11 [ 13] [ 4] [0320] +15:29:11 [ 15] [ 4] [0320] +15:29:11 [ 18] [ 4] [6011] +15:29:11 [ 19] [ 3] [418] +15:29:11 [ 22] [ 3] [021] +15:29:11 [ 25] [ 2] [01] +15:29:11 [ 28] [ 9] [D00002000] +15:29:11 [ 32] [ 6] [668899] +15:29:11 [ 35] [ 32] [6213545000204853=491212010485368] +15:29:11 [ 37] [ 12] [507902556309] +15:29:11 [ 41] [ 8] [03016004] +15:29:11 [ 42] [ 15] [APT ] +15:29:11 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +15:29:11 [ 49] [ 3] [418] +15:29:11 [ 52] [ 16] [598FCBF58460745D] +15:29:11 ============================================================================ +15:29:11 + + +waiting on router queue for slot.... +15:29:11 Sending to : +15:29:11 ============================================================================ +15:29:11 ============================================================================ +15:29:11 Slot Id : <226> +15:29:11 Transaction Type : REQUEST +15:29:11 Received From : +15:29:11 ============================================================================ +15:29:11 FNo. Len. Field Value +15:29:11 ============================================================================ +15:29:11 [ 1] [ 4] [0200] +15:29:11 [ 2] [ 16] [6213545000204853] +15:29:11 [ 3] [ 6] [010000] +15:29:11 [ 4] [ 12] [000010000000] +15:29:11 [ 7] [ 10] [0320152701] +15:29:11 [ 11] [ 6] [950077] +15:29:11 [ 12] [ 6] [152701] +15:29:11 [ 13] [ 4] [0320] +15:29:11 [ 15] [ 4] [0320] +15:29:11 [ 18] [ 4] [6011] +15:29:11 [ 19] [ 3] [418] +15:29:11 [ 22] [ 3] [021] +15:29:11 [ 25] [ 2] [01] +15:29:11 [ 28] [ 9] [D00002000] +15:29:11 [ 32] [ 6] [668899] +15:29:11 [ 35] [ 32] [6213545000204853=491212010485368] +15:29:11 [ 37] [ 12] [507902556309] +15:29:11 [ 41] [ 8] [03016004] +15:29:11 [ 42] [ 15] [APT ] +15:29:11 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +15:29:11 [ 49] [ 3] [418] +15:29:11 [ 52] [ 16] [CEA39DCEA19A703D] +15:29:11 ============================================================================ +15:29:11 + + +waiting on router queue for slot.... +15:29:11 Sending to : <0> +15:29:11 ============================================================================ +15:29:11 ============================================================================ +15:29:11 Slot Id : <226> +15:29:11 Transaction Type : RESPONSE +15:29:11 Received From : +15:29:11 ============================================================================ +15:29:11 FNo. Len. Field Value +15:29:11 ============================================================================ +15:29:11 [ 1] [ 4] [0210] +15:29:11 [ 2] [ 16] [6213545000204853] +15:29:11 [ 3] [ 6] [010000] +15:29:11 [ 4] [ 12] [000010000000] +15:29:11 [ 7] [ 10] [0320152701] +15:29:11 [ 11] [ 6] [950077] +15:29:11 [ 12] [ 6] [152701] +15:29:11 [ 13] [ 4] [0320] +15:29:11 [ 15] [ 4] [0320] +15:29:11 [ 18] [ 4] [6011] +15:29:11 [ 19] [ 3] [418] +15:29:11 [ 32] [ 6] [668899] +15:29:11 [ 35] [ 32] [6213545000204853=491212010485368] +15:29:11 [ 37] [ 12] [507902556309] +15:29:11 [ 38] [ 6] [557225] +15:29:11 [ 39] [ 2] [00] +15:29:11 [ 41] [ 8] [03016004] +15:29:11 [ 49] [ 3] [418] +15:29:11 [ 54] [ 40] [0001418C0000144685810002418C000014468581] +15:29:11 ============================================================================ +15:29:11 Sending to : +15:29:11 ============================================================================ +15:29:11 + + +waiting on router queue for slot.... +15:29:13 ============================================================================ +15:29:13 Slot Id : <226> +15:29:13 Transaction Type : RESPONSE +15:29:13 Received From : +15:29:13 ============================================================================ +15:29:13 FNo. Len. Field Value +15:29:13 ============================================================================ +15:29:13 [ 1] [ 4] [0210] +15:29:13 [ 2] [ 16] [6213545000204853] +15:29:13 [ 3] [ 6] [010000] +15:29:13 [ 4] [ 12] [000010000000] +15:29:13 [ 7] [ 10] [0320152701] +15:29:13 [ 11] [ 6] [950077] +15:29:13 [ 12] [ 6] [152701] +15:29:13 [ 13] [ 4] [0320] +15:29:13 [ 15] [ 4] [0320] +15:29:13 [ 18] [ 4] [6011] +15:29:13 [ 19] [ 3] [418] +15:29:13 [ 32] [ 6] [668899] +15:29:13 [ 35] [ 32] [6213545000204853=491212010485368] +15:29:13 [ 37] [ 12] [507902556309] +15:29:13 [ 38] [ 6] [557225] +15:29:13 [ 39] [ 2] [00] +15:29:13 [ 41] [ 8] [03016004] +15:29:13 [ 49] [ 3] [418] +15:29:13 [ 54] [ 40] [0001418C0000144685810002418C000014468581] +15:29:13 ============================================================================ +15:29:13 Calculate Source COMM Id = 4 +15:29:13 ============================================================================ +15:29:13 + + +waiting on router queue for slot.... +15:29:20 ============================================================================ +15:29:20 Slot Id : <255> +15:29:20 Transaction Type : REQUEST +15:29:20 Received From : +15:29:20 ============================================================================ +15:29:20 FNo. Len. Field Value +15:29:20 ============================================================================ +15:29:20 [ 1] [ 4] [0800] +15:29:20 [ 7] [ 10] [0320082827] +15:29:20 [ 11] [ 6] [157021] +15:29:20 [ 70] [ 3] [301] +15:29:20 ============================================================================ +15:29:20 + + +waiting on router queue for slot.... +15:29:20 Sending to : +15:29:20 ============================================================================ +15:29:20 ============================================================================ +15:29:20 Slot Id : <255> +15:29:20 Transaction Type : RESPONSE +15:29:20 Received From : +15:29:20 ============================================================================ +15:29:20 FNo. Len. Field Value +15:29:20 ============================================================================ +15:29:20 [ 1] [ 4] [0810] +15:29:20 [ 7] [ 10] [0320082827] +15:29:20 [ 11] [ 6] [157021] +15:29:20 [ 39] [ 2] [00] +15:29:20 [ 70] [ 3] [301] +15:29:20 ============================================================================ +15:29:20 Calculate Source COMM Id = 2 +15:29:20 ============================================================================ +15:29:20 + + +waiting on router queue for slot.... +15:29:22 ============================================================================ +15:29:22 Slot Id : <233> +15:29:22 Transaction Type : REQUEST +15:29:22 Received From : +15:29:22 ============================================================================ +15:29:22 FNo. Len. Field Value +15:29:22 ============================================================================ +15:29:22 [ 1] [ 4] [0800] +15:29:22 [ 7] [ 10] [0320224110] +15:29:22 [ 11] [ 6] [154110] +15:29:22 [ 37] [ 12] [57915154110] +15:29:22 [ 70] [ 3] [301] +15:29:22 ============================================================================ +15:29:22 + + +waiting on router queue for slot.... +15:29:22 Sending to : +15:29:22 ============================================================================ +15:29:22 ============================================================================ +15:29:22 Slot Id : <233> +15:29:22 Transaction Type : RESPONSE +15:29:22 Received From : +15:29:22 ============================================================================ +15:29:22 FNo. Len. Field Value +15:29:22 ============================================================================ +15:29:22 [ 1] [ 4] [0810] +15:29:22 [ 7] [ 10] [0320224110] +15:29:22 [ 11] [ 6] [154110] +15:29:22 [ 37] [ 12] [579151541100] +15:29:22 [ 39] [ 2] [00] +15:29:22 [ 70] [ 3] [810] +15:29:22 ============================================================================ +15:29:22 Calculate Source COMM Id = 6 +15:29:22 ============================================================================ +15:29:22 + + +waiting on router queue for slot.... +15:29:31 ============================================================================ +15:29:31 Slot Id : <237> +15:29:31 Transaction Type : REQUEST +15:29:31 Received From : +15:29:31 ============================================================================ +15:29:31 FNo. Len. Field Value +15:29:31 ============================================================================ +15:29:31 [ 1] [ 4] [0800] +15:29:31 [ 7] [ 10] [0320082837] +15:29:31 [ 11] [ 6] [157022] +15:29:31 [ 70] [ 3] [301] +15:29:31 ============================================================================ +15:29:31 + + +waiting on router queue for slot.... +15:29:31 Sending to : +15:29:31 ============================================================================ +15:29:31 ============================================================================ +15:29:31 Slot Id : <237> +15:29:31 Transaction Type : RESPONSE +15:29:31 Received From : +15:29:31 ============================================================================ +15:29:31 FNo. Len. Field Value +15:29:31 ============================================================================ +15:29:31 [ 1] [ 4] [0810] +15:29:31 [ 7] [ 10] [0320082837] +15:29:31 [ 11] [ 6] [157022] +15:29:31 [ 39] [ 2] [00] +15:29:31 [ 70] [ 3] [301] +15:29:31 ============================================================================ +15:29:31 Calculate Source COMM Id = 2 +15:29:31 ============================================================================ +15:29:31 + + +waiting on router queue for slot.... +15:29:35 ============================================================================ +15:29:35 Slot Id : <200> +15:29:35 Transaction Type : REQUEST +15:29:35 Received From : +15:29:35 ============================================================================ +15:29:35 FNo. Len. Field Value +15:29:35 ============================================================================ +15:29:35 [ 1] [ 4] [0200] +15:29:35 [ 2] [ 16] [6213545000214712] +15:29:35 [ 3] [ 6] [302000] +15:29:35 [ 4] [ 12] [000000000000] +15:29:35 [ 7] [ 10] [0320152725] +15:29:35 [ 11] [ 6] [950089] +15:29:35 [ 12] [ 6] [152725] +15:29:35 [ 13] [ 4] [0320] +15:29:35 [ 15] [ 4] [0320] +15:29:35 [ 18] [ 4] [6011] +15:29:35 [ 19] [ 3] [418] +15:29:35 [ 22] [ 3] [021] +15:29:35 [ 25] [ 2] [01] +15:29:35 [ 28] [ 9] [D00000000] +15:29:35 [ 32] [ 6] [668899] +15:29:35 [ 35] [ 32] [6213545000214712=491212011471675] +15:29:35 [ 37] [ 12] [507900314777] +15:29:35 [ 41] [ 8] [03013002] +15:29:35 [ 42] [ 15] [APT ] +15:29:35 [ 43] [ 40] [ NABO SCHOOL THAKHAK DINAB] +15:29:35 [ 49] [ 3] [418] +15:29:35 [ 52] [ 16] [35E9A6EACEDEE5AC] +15:29:35 ============================================================================ +15:29:35 + + +waiting on router queue for slot.... +15:29:35 Sending to : +15:29:35 ============================================================================ +15:29:35 Sending to : +15:29:35 ============================================================================ +15:29:35 ============================================================================ +15:29:35 Slot Id : <200> +15:29:35 Transaction Type : REQUEST +15:29:35 Received From : +15:29:35 ============================================================================ +15:29:35 FNo. Len. Field Value +15:29:35 ============================================================================ +15:29:35 [ 1] [ 4] [0200] +15:29:35 [ 2] [ 16] [6213545000214712] +15:29:35 [ 3] [ 6] [302000] +15:29:35 [ 4] [ 12] [000000000000] +15:29:35 [ 7] [ 10] [0320152725] +15:29:35 [ 11] [ 6] [950089] +15:29:35 [ 12] [ 6] [152725] +15:29:35 [ 13] [ 4] [0320] +15:29:35 [ 15] [ 4] [0320] +15:29:35 [ 18] [ 4] [6011] +15:29:35 [ 19] [ 3] [418] +15:29:35 [ 22] [ 3] [021] +15:29:35 [ 25] [ 2] [01] +15:29:35 [ 28] [ 9] [D00000000] +15:29:35 [ 32] [ 6] [668899] +15:29:35 [ 35] [ 32] [6213545000214712=491212011471675] +15:29:35 [ 37] [ 12] [507900314777] +15:29:35 [ 41] [ 8] [03013002] +15:29:35 [ 42] [ 15] [APT ] +15:29:35 [ 43] [ 40] [ NABO SCHOOL THAKHAK DINAB] +15:29:35 [ 49] [ 3] [418] +15:29:35 [ 52] [ 16] [35E9A6EACEDEE5AC] +15:29:35 ============================================================================ +15:29:35 + + +waiting on router queue for slot.... +15:29:35 Sending to : +15:29:35 ============================================================================ +15:29:35 ============================================================================ +15:29:35 Slot Id : <200> +15:29:35 Transaction Type : REQUEST +15:29:35 Received From : +15:29:35 ============================================================================ +15:29:35 FNo. Len. Field Value +15:29:35 ============================================================================ +15:29:35 [ 1] [ 4] [0200] +15:29:35 [ 2] [ 16] [6213545000214712] +15:29:35 [ 3] [ 6] [302000] +15:29:35 [ 4] [ 12] [000000000000] +15:29:35 [ 7] [ 10] [0320152725] +15:29:35 [ 11] [ 6] [950089] +15:29:35 [ 12] [ 6] [152725] +15:29:35 [ 13] [ 4] [0320] +15:29:35 [ 15] [ 4] [0320] +15:29:35 [ 18] [ 4] [6011] +15:29:35 [ 19] [ 3] [418] +15:29:35 [ 22] [ 3] [021] +15:29:35 [ 25] [ 2] [01] +15:29:35 [ 28] [ 9] [D00000000] +15:29:35 [ 32] [ 6] [668899] +15:29:35 [ 35] [ 32] [6213545000214712=491212011471675] +15:29:35 [ 37] [ 12] [507900314777] +15:29:35 [ 41] [ 8] [03013002] +15:29:35 [ 42] [ 15] [APT ] +15:29:35 [ 43] [ 40] [ NABO SCHOOL THAKHAK DINAB] +15:29:35 [ 49] [ 3] [418] +15:29:35 [ 52] [ 16] [DA6D397A9E6D60D7] +15:29:35 ============================================================================ +15:29:35 + + +waiting on router queue for slot.... +15:29:35 Sending to : <0> +15:29:35 ============================================================================ +15:29:35 ============================================================================ +15:29:35 Slot Id : <200> +15:29:35 Transaction Type : RESPONSE +15:29:35 Received From : +15:29:35 ============================================================================ +15:29:35 FNo. Len. Field Value +15:29:35 ============================================================================ +15:29:35 [ 1] [ 4] [0210] +15:29:35 [ 2] [ 16] [6213545000214712] +15:29:35 [ 3] [ 6] [302000] +15:29:35 [ 4] [ 12] [000000000000] +15:29:35 [ 7] [ 10] [0320152725] +15:29:35 [ 11] [ 6] [950089] +15:29:35 [ 12] [ 6] [152725] +15:29:35 [ 13] [ 4] [0320] +15:29:35 [ 15] [ 4] [0320] +15:29:35 [ 18] [ 4] [6011] +15:29:35 [ 19] [ 3] [418] +15:29:35 [ 32] [ 6] [668899] +15:29:35 [ 35] [ 32] [6213545000214712=491212011471675] +15:29:35 [ 37] [ 12] [507900314777] +15:29:35 [ 38] [ 6] [707597] +15:29:35 [ 39] [ 2] [00] +15:29:35 [ 41] [ 8] [03013002] +15:29:35 [ 49] [ 3] [418] +15:29:35 [ 54] [ 40] [2001418C0022216756812002418C002221675681] +15:29:35 ============================================================================ +15:29:35 Sending to : +15:29:35 ============================================================================ +15:29:35 + + +waiting on router queue for slot.... +15:29:37 ============================================================================ +15:29:37 Slot Id : <238> +15:29:37 Transaction Type : REQUEST +15:29:37 Received From : +15:29:37 ============================================================================ +15:29:37 FNo. Len. Field Value +15:29:37 ============================================================================ +15:29:37 [ 1] [ 4] [0800] +15:29:37 [ 2] [ 5] [02531] +15:29:37 [ 3] [ 6] [579158] +15:29:37 [ 7] [ 10] [0320082937] +15:29:37 [ 11] [ 6] [807311] +15:29:37 [ 15] [ 10] [0320082937] +15:29:37 [ 37] [ 11] [57915807311] +15:29:37 [ 70] [ 3] [001] +15:29:37 ============================================================================ +15:29:37 + + +waiting on router queue for slot.... +15:29:37 ============================================================================ +15:29:37 Slot Id : <238> +15:29:37 Transaction Type : RESPONSE +15:29:37 Received From : +15:29:37 ============================================================================ +15:29:37 FNo. Len. Field Value +15:29:37 ============================================================================ +15:29:37 [ 1] [ 4] [0810] +15:29:37 [ 7] [ 10] [0320082937] +15:29:37 [ 11] [ 6] [807311] +15:29:37 [ 15] [ 4] [0320] +15:29:37 [ 37] [ 12] [57915807311] +15:29:37 [ 39] [ 2] [00] +15:29:37 [ 70] [ 3] [001] +15:29:37 ============================================================================ +15:29:37 Sending to : +15:29:37 ============================================================================ +15:29:37 + + +waiting on router queue for slot.... +15:29:37 ============================================================================ +15:29:37 Slot Id : <200> +15:29:37 Transaction Type : RESPONSE +15:29:37 Received From : +15:29:37 ============================================================================ +15:29:37 FNo. Len. Field Value +15:29:37 ============================================================================ +15:29:37 [ 1] [ 4] [0210] +15:29:37 [ 2] [ 16] [6213545000214712] +15:29:37 [ 3] [ 6] [302000] +15:29:37 [ 4] [ 12] [000000000000] +15:29:37 [ 7] [ 10] [0320152725] +15:29:37 [ 11] [ 6] [950089] +15:29:37 [ 12] [ 6] [152725] +15:29:37 [ 13] [ 4] [0320] +15:29:37 [ 15] [ 4] [0320] +15:29:37 [ 18] [ 4] [6011] +15:29:37 [ 19] [ 3] [418] +15:29:37 [ 32] [ 6] [668899] +15:29:37 [ 35] [ 32] [6213545000214712=491212011471675] +15:29:37 [ 37] [ 12] [507900314777] +15:29:37 [ 38] [ 6] [707597] +15:29:37 [ 39] [ 2] [00] +15:29:37 [ 41] [ 8] [03013002] +15:29:37 [ 49] [ 3] [418] +15:29:37 [ 54] [ 40] [2001418C0022216756812002418C002221675681] +15:29:37 ============================================================================ +15:29:37 Calculate Source COMM Id = 4 +15:29:37 ============================================================================ +15:29:37 + + +waiting on router queue for slot.... +15:29:37 ============================================================================ +15:29:37 Slot Id : <260> +15:29:37 Transaction Type : REQUEST +15:29:37 Received From : +15:29:37 ============================================================================ +15:29:37 FNo. Len. Field Value +15:29:37 ============================================================================ +15:29:37 [ 1] [ 4] [0200] +15:29:37 [ 2] [ 16] [6688990100957008] +15:29:37 [ 3] [ 6] [010000] +15:29:37 [ 4] [ 12] [000070000000] +15:29:37 [ 7] [ 10] [0320152932] +15:29:37 [ 11] [ 6] [784398] +15:29:37 [ 12] [ 6] [152932] +15:29:37 [ 13] [ 4] [0320] +15:29:37 [ 15] [ 4] [0320] +15:29:37 [ 18] [ 4] [6011] +15:29:37 [ 22] [ 3] [900] +15:29:37 [ 25] [ 2] [02] +15:29:37 [ 28] [ 9] [D00002000] +15:29:37 [ 32] [ 6] [621354] +15:29:37 [ 35] [ 37] [6688990100957008=41121231700888100000] +15:29:37 [ 37] [ 12] [507904719737] +15:29:37 [ 41] [ 8] [18001000] +15:29:37 [ 42] [ 15] [NATIVE ] +15:29:37 [ 43] [ 40] [Khoua Unit Khoua LAO] +15:29:37 [ 49] [ 3] [418] +15:29:37 [ 52] [ 16] [7A828BE2BB04966A] +15:29:37 ============================================================================ +15:29:37 + + +waiting on router queue for slot.... +15:29:37 Sending to : +15:29:37 ============================================================================ +15:29:37 Sending to : +15:29:37 ============================================================================ +15:29:37 ============================================================================ +15:29:37 Slot Id : <260> +15:29:37 Transaction Type : REQUEST +15:29:37 Received From : +15:29:37 ============================================================================ +15:29:37 FNo. Len. Field Value +15:29:37 ============================================================================ +15:29:37 [ 1] [ 4] [0200] +15:29:37 [ 2] [ 16] [6688990100957008] +15:29:37 [ 3] [ 6] [010000] +15:29:37 [ 4] [ 12] [000070000000] +15:29:37 [ 7] [ 10] [0320152932] +15:29:37 [ 11] [ 6] [784398] +15:29:37 [ 12] [ 6] [152932] +15:29:37 [ 13] [ 4] [0320] +15:29:37 [ 15] [ 4] [0320] +15:29:37 [ 18] [ 4] [6011] +15:29:37 [ 22] [ 3] [900] +15:29:37 [ 25] [ 2] [02] +15:29:37 [ 28] [ 9] [D00002000] +15:29:37 [ 32] [ 6] [621354] +15:29:37 [ 35] [ 37] [6688990100957008=41121231700888100000] +15:29:37 [ 37] [ 12] [507904719737] +15:29:37 [ 41] [ 8] [18001000] +15:29:37 [ 42] [ 15] [NATIVE ] +15:29:37 [ 43] [ 40] [Khoua Unit Khoua LAO] +15:29:37 [ 49] [ 3] [418] +15:29:37 [ 52] [ 16] [7A828BE2BB04966A] +15:29:37 ============================================================================ +15:29:37 + + +waiting on router queue for slot.... +15:29:37 Sending to : +15:29:37 ============================================================================ +15:29:37 ============================================================================ +15:29:37 Slot Id : <260> +15:29:37 Transaction Type : REQUEST +15:29:37 Received From : +15:29:37 ============================================================================ +15:29:37 FNo. Len. Field Value +15:29:37 ============================================================================ +15:29:37 [ 1] [ 4] [0200] +15:29:37 [ 2] [ 16] [6688990100957008] +15:29:37 [ 3] [ 6] [010000] +15:29:37 [ 4] [ 12] [000070000000] +15:29:37 [ 7] [ 10] [0320152932] +15:29:37 [ 11] [ 6] [784398] +15:29:37 [ 12] [ 6] [152932] +15:29:37 [ 13] [ 4] [0320] +15:29:37 [ 15] [ 4] [0320] +15:29:37 [ 18] [ 4] [6011] +15:29:37 [ 22] [ 3] [900] +15:29:37 [ 25] [ 2] [02] +15:29:37 [ 28] [ 9] [D00002000] +15:29:37 [ 32] [ 6] [621354] +15:29:37 [ 35] [ 37] [6688990100957008=41121231700888100000] +15:29:37 [ 37] [ 12] [507904719737] +15:29:37 [ 41] [ 8] [18001000] +15:29:37 [ 42] [ 15] [NATIVE ] +15:29:37 [ 43] [ 40] [Khoua Unit Khoua LAO] +15:29:37 [ 49] [ 3] [418] +15:29:37 [ 52] [ 16] [FAB32B217AF71094] +15:29:37 ============================================================================ +15:29:37 + + +waiting on router queue for slot.... +15:29:37 Sending to : <4> +15:29:37 ============================================================================ +15:29:38 ============================================================================ +15:29:38 Slot Id : <260> +15:29:38 Transaction Type : RESPONSE +15:29:38 Received From : +15:29:38 ============================================================================ +15:29:38 FNo. Len. Field Value +15:29:38 ============================================================================ +15:29:38 [ 1] [ 4] [0210] +15:29:38 [ 2] [ 16] [6688990100957008] +15:29:38 [ 3] [ 6] [010000] +15:29:38 [ 4] [ 12] [000070000000] +15:29:38 [ 11] [ 6] [784398] +15:29:38 [ 12] [ 6] [152932] +15:29:38 [ 15] [ 4] [0320] +15:29:38 [ 18] [ 4] [6011] +15:29:38 [ 32] [ 6] [621354] +15:29:38 [ 35] [ 37] [6688990100957008=41121231700888100000] +15:29:38 [ 37] [ 12] [507904719737] +15:29:38 [ 38] [ 6] [641345] +15:29:38 [ 39] [ 2] [00] +15:29:38 [ 41] [ 8] [18001000] +15:29:38 [ 49] [ 3] [418] +15:29:38 [ 54] [ 20] [0002418C000054401943] +15:29:38 ============================================================================ +15:29:38 Sending to : +15:29:38 ============================================================================ +15:29:38 + + +waiting on router queue for slot.... +15:29:39 ============================================================================ +15:29:39 Slot Id : <260> +15:29:39 Transaction Type : RESPONSE +15:29:39 Received From : +15:29:39 ============================================================================ +15:29:39 FNo. Len. Field Value +15:29:39 ============================================================================ +15:29:39 [ 1] [ 4] [0210] +15:29:39 [ 2] [ 16] [6688990100957008] +15:29:39 [ 3] [ 6] [010000] +15:29:39 [ 4] [ 12] [000070000000] +15:29:39 [ 11] [ 6] [784398] +15:29:39 [ 12] [ 6] [152932] +15:29:39 [ 15] [ 4] [0320] +15:29:39 [ 18] [ 4] [6011] +15:29:39 [ 32] [ 6] [621354] +15:29:39 [ 35] [ 37] [6688990100957008=41121231700888100000] +15:29:39 [ 37] [ 12] [507904719737] +15:29:39 [ 38] [ 6] [641345] +15:29:39 [ 39] [ 2] [00] +15:29:39 [ 41] [ 8] [18001000] +15:29:39 [ 49] [ 3] [418] +15:29:39 [ 54] [ 20] [0002418C000054401943] +15:29:39 ============================================================================ +15:29:39 Calculate Source COMM Id = 0 +15:29:39 ============================================================================ +15:29:39 + + +waiting on router queue for slot.... +15:29:42 ============================================================================ +15:29:42 Slot Id : <253> +15:29:42 Transaction Type : REQUEST +15:29:42 Received From : +15:29:42 ============================================================================ +15:29:42 FNo. Len. Field Value +15:29:42 ============================================================================ +15:29:42 [ 1] [ 4] [0200] +15:29:42 [ 2] [ 16] [6688990103268106] +15:29:42 [ 3] [ 6] [010000] +15:29:42 [ 4] [ 12] [000100000000] +15:29:42 [ 7] [ 10] [0320152938] +15:29:42 [ 11] [ 6] [784424] +15:29:42 [ 12] [ 6] [152938] +15:29:42 [ 13] [ 4] [0320] +15:29:42 [ 15] [ 4] [0320] +15:29:42 [ 18] [ 4] [6011] +15:29:42 [ 22] [ 3] [900] +15:29:42 [ 25] [ 2] [02] +15:29:42 [ 28] [ 9] [D00002000] +15:29:42 [ 32] [ 6] [621354] +15:29:42 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:29:42 [ 37] [ 12] [507903499519] +15:29:42 [ 41] [ 8] [06002200] +15:29:42 [ 42] [ 15] [NATIVE ] +15:29:42 [ 43] [ 40] [Beng Market Beng LAO] +15:29:42 [ 49] [ 3] [418] +15:29:42 [ 52] [ 16] [D956652F186B87D5] +15:29:42 ============================================================================ +15:29:42 + + +waiting on router queue for slot.... +15:29:42 Sending to : +15:29:42 ============================================================================ +15:29:42 Sending to : +15:29:42 ============================================================================ +15:29:43 ============================================================================ +15:29:43 Slot Id : <253> +15:29:43 Transaction Type : REQUEST +15:29:43 Received From : +15:29:43 ============================================================================ +15:29:43 FNo. Len. Field Value +15:29:43 ============================================================================ +15:29:43 [ 1] [ 4] [0200] +15:29:43 [ 2] [ 16] [6688990103268106] +15:29:43 [ 3] [ 6] [010000] +15:29:43 [ 4] [ 12] [000100000000] +15:29:43 [ 7] [ 10] [0320152938] +15:29:43 [ 11] [ 6] [784424] +15:29:43 [ 12] [ 6] [152938] +15:29:43 [ 13] [ 4] [0320] +15:29:43 [ 15] [ 4] [0320] +15:29:43 [ 18] [ 4] [6011] +15:29:43 [ 22] [ 3] [900] +15:29:43 [ 25] [ 2] [02] +15:29:43 [ 28] [ 9] [D00002000] +15:29:43 [ 32] [ 6] [621354] +15:29:43 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:29:43 [ 37] [ 12] [507903499519] +15:29:43 [ 41] [ 8] [06002200] +15:29:43 [ 42] [ 15] [NATIVE ] +15:29:43 [ 43] [ 40] [Beng Market Beng LAO] +15:29:43 [ 49] [ 3] [418] +15:29:43 [ 52] [ 16] [D956652F186B87D5] +15:29:43 ============================================================================ +15:29:43 + + +waiting on router queue for slot.... +15:29:43 Sending to : +15:29:43 ============================================================================ +15:29:43 ============================================================================ +15:29:43 Slot Id : <253> +15:29:43 Transaction Type : REQUEST +15:29:43 Received From : +15:29:43 ============================================================================ +15:29:43 FNo. Len. Field Value +15:29:43 ============================================================================ +15:29:43 [ 1] [ 4] [0200] +15:29:43 [ 2] [ 16] [6688990103268106] +15:29:43 [ 3] [ 6] [010000] +15:29:43 [ 4] [ 12] [000100000000] +15:29:43 [ 7] [ 10] [0320152938] +15:29:43 [ 11] [ 6] [784424] +15:29:43 [ 12] [ 6] [152938] +15:29:43 [ 13] [ 4] [0320] +15:29:43 [ 15] [ 4] [0320] +15:29:43 [ 18] [ 4] [6011] +15:29:43 [ 22] [ 3] [900] +15:29:43 [ 25] [ 2] [02] +15:29:43 [ 28] [ 9] [D00002000] +15:29:43 [ 32] [ 6] [621354] +15:29:43 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:29:43 [ 37] [ 12] [507903499519] +15:29:43 [ 41] [ 8] [06002200] +15:29:43 [ 42] [ 15] [NATIVE ] +15:29:43 [ 43] [ 40] [Beng Market Beng LAO] +15:29:43 [ 49] [ 3] [418] +15:29:43 [ 52] [ 16] [603AF5AA997D17DF] +15:29:43 ============================================================================ +15:29:43 + + +waiting on router queue for slot.... +15:29:43 Sending to : <4> +15:29:43 ============================================================================ +15:29:44 ============================================================================ +15:29:44 Slot Id : <253> +15:29:44 Transaction Type : RESPONSE +15:29:44 Received From : +15:29:44 ============================================================================ +15:29:44 FNo. Len. Field Value +15:29:44 ============================================================================ +15:29:44 [ 1] [ 4] [0210] +15:29:44 [ 2] [ 16] [6688990103268106] +15:29:44 [ 3] [ 6] [010000] +15:29:44 [ 4] [ 12] [000100000000] +15:29:44 [ 11] [ 6] [784424] +15:29:44 [ 12] [ 6] [152938] +15:29:44 [ 15] [ 4] [0320] +15:29:44 [ 18] [ 4] [6011] +15:29:44 [ 32] [ 6] [621354] +15:29:44 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:29:44 [ 37] [ 12] [507903499519] +15:29:44 [ 38] [ 6] [266280] +15:29:44 [ 39] [ 2] [00] +15:29:44 [ 41] [ 8] [06002200] +15:29:44 [ 49] [ 3] [418] +15:29:44 [ 54] [ 20] [0002418C000285886090] +15:29:44 ============================================================================ +15:29:44 Sending to : +15:29:44 ============================================================================ +15:29:44 + + +waiting on router queue for slot.... +15:29:45 ============================================================================ +15:29:45 Slot Id : <253> +15:29:45 Transaction Type : RESPONSE +15:29:45 Received From : +15:29:45 ============================================================================ +15:29:45 FNo. Len. Field Value +15:29:45 ============================================================================ +15:29:45 [ 1] [ 4] [0210] +15:29:45 [ 2] [ 16] [6688990103268106] +15:29:45 [ 3] [ 6] [010000] +15:29:45 [ 4] [ 12] [000100000000] +15:29:45 [ 11] [ 6] [784424] +15:29:45 [ 12] [ 6] [152938] +15:29:45 [ 15] [ 4] [0320] +15:29:45 [ 18] [ 4] [6011] +15:29:45 [ 32] [ 6] [621354] +15:29:45 [ 35] [ 37] [6688990103268106=42121231810640300000] +15:29:45 [ 37] [ 12] [507903499519] +15:29:45 [ 38] [ 6] [266280] +15:29:45 [ 39] [ 2] [00] +15:29:45 [ 41] [ 8] [06002200] +15:29:45 [ 49] [ 3] [418] +15:29:45 [ 54] [ 20] [0002418C000285886090] +15:29:45 ============================================================================ +15:29:45 Calculate Source COMM Id = 0 +15:29:45 ============================================================================ +15:29:45 + + +waiting on router queue for slot.... +15:29:46 ============================================================================ +15:29:46 Slot Id : <234> +15:29:46 Transaction Type : REQUEST +15:29:46 Received From : +15:29:46 ============================================================================ +15:29:46 FNo. Len. Field Value +15:29:46 ============================================================================ +15:29:46 [ 1] [ 4] [0800] +15:29:46 [ 7] [ 10] [0320082853] +15:29:46 [ 11] [ 6] [157023] +15:29:46 [ 70] [ 3] [301] +15:29:46 ============================================================================ +15:29:46 + + +waiting on router queue for slot.... +15:29:46 Sending to : +15:29:46 ============================================================================ +15:29:46 ============================================================================ +15:29:46 Slot Id : <234> +15:29:46 Transaction Type : RESPONSE +15:29:46 Received From : +15:29:46 ============================================================================ +15:29:46 FNo. Len. Field Value +15:29:46 ============================================================================ +15:29:46 [ 1] [ 4] [0810] +15:29:46 [ 7] [ 10] [0320082853] +15:29:46 [ 11] [ 6] [157023] +15:29:46 [ 39] [ 2] [00] +15:29:46 [ 70] [ 3] [301] +15:29:46 ============================================================================ +15:29:46 Calculate Source COMM Id = 2 +15:29:46 ============================================================================ +15:29:46 + + +waiting on router queue for slot.... +15:29:54 ============================================================================ +15:29:54 Slot Id : <216> +15:29:54 Transaction Type : REQUEST +15:29:54 Received From : +15:29:54 ============================================================================ +15:29:54 FNo. Len. Field Value +15:29:54 ============================================================================ +15:29:54 [ 1] [ 4] [0800] +15:29:54 [ 7] [ 10] [0320083742] +15:29:54 [ 11] [ 6] [096067] +15:29:54 [ 37] [ 12] [57915096067] +15:29:54 [ 70] [ 3] [301] +15:29:54 ============================================================================ +15:29:54 + + +waiting on router queue for slot.... +15:29:54 Sending to : +15:29:54 ============================================================================ +15:29:54 ============================================================================ +15:29:54 Slot Id : <216> +15:29:54 Transaction Type : RESPONSE +15:29:54 Received From : +15:29:54 ============================================================================ +15:29:54 FNo. Len. Field Value +15:29:54 ============================================================================ +15:29:54 [ 1] [ 4] [0810] +15:29:54 [ 7] [ 10] [0320083742] +15:29:54 [ 11] [ 6] [096067] +15:29:54 [ 37] [ 12] [579150960670] +15:29:54 [ 39] [ 2] [00] +15:29:54 [ 70] [ 3] [810] +15:29:54 ============================================================================ +15:29:54 Calculate Source COMM Id = 1 +15:29:54 ============================================================================ +15:29:54 + + +waiting on router queue for slot.... +15:29:56 ============================================================================ +15:29:56 Slot Id : <263> +15:29:56 Transaction Type : REQUEST +15:29:56 Received From : +15:29:56 ============================================================================ +15:29:56 FNo. Len. Field Value +15:29:56 ============================================================================ +15:29:56 [ 1] [ 4] [0200] +15:29:56 [ 2] [ 16] [6213544000547759] +15:29:56 [ 3] [ 6] [010000] +15:29:56 [ 4] [ 12] [000030000000] +15:29:56 [ 7] [ 10] [0320152747] +15:29:56 [ 11] [ 6] [950102] +15:29:56 [ 12] [ 6] [152747] +15:29:56 [ 13] [ 4] [0320] +15:29:56 [ 15] [ 4] [0320] +15:29:56 [ 18] [ 4] [6011] +15:29:56 [ 19] [ 3] [418] +15:29:56 [ 22] [ 3] [021] +15:29:56 [ 25] [ 2] [01] +15:29:56 [ 28] [ 9] [D00002000] +15:29:56 [ 32] [ 6] [668899] +15:29:56 [ 35] [ 32] [6213544000547759=491212014775606] +15:29:56 [ 37] [ 12] [507902683064] +15:29:56 [ 41] [ 8] [03020036] +15:29:56 [ 42] [ 15] [APT ] +15:29:56 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +15:29:56 [ 49] [ 3] [418] +15:29:56 [ 52] [ 16] [0D22D473E54DAE26] +15:29:56 ============================================================================ +15:29:56 + + +waiting on router queue for slot.... +15:29:56 Sending to : +15:29:56 ============================================================================ +15:29:56 Sending to : +15:29:56 ============================================================================ +15:29:57 ============================================================================ +15:29:57 Slot Id : <249> +15:29:57 Transaction Type : REQUEST +15:29:57 Received From : +15:29:57 ============================================================================ +15:29:57 FNo. Len. Field Value +15:29:57 ============================================================================ +15:29:57 [ 1] [ 4] [0800] +15:29:57 [ 7] [ 10] [0320082904] +15:29:57 [ 11] [ 6] [157024] +15:29:57 [ 70] [ 3] [301] +15:29:57 ============================================================================ +15:29:57 + + +waiting on router queue for slot.... +15:29:57 Sending to : +15:29:57 ============================================================================ +15:29:57 ============================================================================ +15:29:57 Slot Id : <249> +15:29:57 Transaction Type : RESPONSE +15:29:57 Received From : +15:29:57 ============================================================================ +15:29:57 FNo. Len. Field Value +15:29:57 ============================================================================ +15:29:57 [ 1] [ 4] [0810] +15:29:57 [ 7] [ 10] [0320082904] +15:29:57 [ 11] [ 6] [157024] +15:29:57 [ 39] [ 2] [00] +15:29:57 [ 70] [ 3] [301] +15:29:57 ============================================================================ +15:29:57 Calculate Source COMM Id = 2 +15:29:57 ============================================================================ +15:29:57 + + +waiting on router queue for slot.... +15:29:57 ============================================================================ +15:29:57 Slot Id : <263> +15:29:57 Transaction Type : REQUEST +15:29:57 Received From : +15:29:57 ============================================================================ +15:29:57 FNo. Len. Field Value +15:29:57 ============================================================================ +15:29:57 [ 1] [ 4] [0200] +15:29:57 [ 2] [ 16] [6213544000547759] +15:29:57 [ 3] [ 6] [010000] +15:29:57 [ 4] [ 12] [000030000000] +15:29:57 [ 7] [ 10] [0320152747] +15:29:57 [ 11] [ 6] [950102] +15:29:57 [ 12] [ 6] [152747] +15:29:57 [ 13] [ 4] [0320] +15:29:57 [ 15] [ 4] [0320] +15:29:57 [ 18] [ 4] [6011] +15:29:57 [ 19] [ 3] [418] +15:29:57 [ 22] [ 3] [021] +15:29:57 [ 25] [ 2] [01] +15:29:57 [ 28] [ 9] [D00002000] +15:29:57 [ 32] [ 6] [668899] +15:29:57 [ 35] [ 32] [6213544000547759=491212014775606] +15:29:57 [ 37] [ 12] [507902683064] +15:29:57 [ 41] [ 8] [03020036] +15:29:57 [ 42] [ 15] [APT ] +15:29:57 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +15:29:57 [ 49] [ 3] [418] +15:29:57 [ 52] [ 16] [0D22D473E54DAE26] +15:29:57 ============================================================================ +15:29:57 + + +waiting on router queue for slot.... +15:29:57 Sending to : +15:29:57 ============================================================================ +15:29:57 ============================================================================ +15:29:57 Slot Id : <263> +15:29:57 Transaction Type : REQUEST +15:29:57 Received From : +15:29:57 ============================================================================ +15:29:57 FNo. Len. Field Value +15:29:57 ============================================================================ +15:29:57 [ 1] [ 4] [0200] +15:29:57 [ 2] [ 16] [6213544000547759] +15:29:57 [ 3] [ 6] [010000] +15:29:57 [ 4] [ 12] [000030000000] +15:29:57 [ 7] [ 10] [0320152747] +15:29:57 [ 11] [ 6] [950102] +15:29:57 [ 12] [ 6] [152747] +15:29:57 [ 13] [ 4] [0320] +15:29:57 [ 15] [ 4] [0320] +15:29:57 [ 18] [ 4] [6011] +15:29:57 [ 19] [ 3] [418] +15:29:57 [ 22] [ 3] [021] +15:29:57 [ 25] [ 2] [01] +15:29:57 [ 28] [ 9] [D00002000] +15:29:57 [ 32] [ 6] [668899] +15:29:57 [ 35] [ 32] [6213544000547759=491212014775606] +15:29:57 [ 37] [ 12] [507902683064] +15:29:57 [ 41] [ 8] [03020036] +15:29:57 [ 42] [ 15] [APT ] +15:29:57 [ 43] [ 40] [ WATCH CLUB HONGKAIKEOWATC] +15:29:57 [ 49] [ 3] [418] +15:29:57 [ 52] [ 16] [2F8B64A6D5A71368] +15:29:57 ============================================================================ +15:29:57 + + +waiting on router queue for slot.... +15:29:57 Sending to : <0> +15:29:57 ============================================================================ +15:29:57 ============================================================================ +15:29:57 Slot Id : <263> +15:29:57 Transaction Type : RESPONSE +15:29:57 Received From : +15:29:57 ============================================================================ +15:29:57 FNo. Len. Field Value +15:29:57 ============================================================================ +15:29:57 [ 1] [ 4] [0210] +15:29:57 [ 2] [ 16] [6213544000547759] +15:29:57 [ 3] [ 6] [010000] +15:29:57 [ 4] [ 12] [000030000000] +15:29:57 [ 7] [ 10] [0320152747] +15:29:57 [ 11] [ 6] [950102] +15:29:57 [ 12] [ 6] [152747] +15:29:57 [ 13] [ 4] [0320] +15:29:57 [ 15] [ 4] [0320] +15:29:57 [ 18] [ 4] [6011] +15:29:57 [ 19] [ 3] [418] +15:29:57 [ 32] [ 6] [668899] +15:29:57 [ 35] [ 32] [6213544000547759=491212014775606] +15:29:57 [ 37] [ 12] [507902683064] +15:29:57 [ 38] [ 6] [620364] +15:29:57 [ 39] [ 2] [00] +15:29:57 [ 41] [ 8] [03020036] +15:29:57 [ 49] [ 3] [418] +15:29:57 [ 54] [ 40] [0001418C0001038554990002418C000103855499] +15:29:57 ============================================================================ +15:29:57 Sending to : +15:29:57 ============================================================================ +15:29:57 + + +waiting on router queue for slot.... +15:29:58 ============================================================================ +15:29:58 Slot Id : <210> +15:29:58 Transaction Type : REQUEST +15:29:58 Received From : +15:29:58 ============================================================================ +15:29:58 FNo. Len. Field Value +15:29:58 ============================================================================ +15:29:58 [ 1] [ 4] [0200] +15:29:58 [ 2] [ 16] [6213541000435050] +15:29:58 [ 3] [ 6] [010000] +15:29:58 [ 4] [ 12] [000100000000] +15:29:58 [ 7] [ 10] [0320082904] +15:29:58 [ 11] [ 6] [270031] +15:29:58 [ 12] [ 6] [152904] +15:29:58 [ 13] [ 4] [0320] +15:29:58 [ 14] [ 4] [4912] +15:29:58 [ 15] [ 4] [0320] +15:29:58 [ 18] [ 4] [6011] +15:29:58 [ 19] [ 3] [418] +15:29:58 [ 22] [ 3] [021] +15:29:58 [ 25] [ 2] [01] +15:29:58 [ 28] [ 9] [D00002000] +15:29:58 [ 32] [ 6] [180893] +15:29:58 [ 35] [ 32] [6213541000435050=491212013505813] +15:29:58 [ 37] [ 12] [507908270031] +15:29:58 [ 41] [ 8] [0401XSBR] +15:29:58 [ 42] [ 15] [999999 ] +15:29:58 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +15:29:58 [ 49] [ 3] [418] +15:29:58 [ 52] [ 16] [E79B7FC42A1759DF] +15:29:58 ============================================================================ +15:29:58 + + +waiting on router queue for slot.... +15:29:58 Sending to : +15:29:58 ============================================================================ +15:29:58 Sending to : +15:29:58 ============================================================================ +15:29:58 ============================================================================ +15:29:58 Slot Id : <210> +15:29:58 Transaction Type : REQUEST +15:29:58 Received From : +15:29:58 ============================================================================ +15:29:58 FNo. Len. Field Value +15:29:58 ============================================================================ +15:29:58 [ 1] [ 4] [0200] +15:29:58 [ 2] [ 16] [6213541000435050] +15:29:58 [ 3] [ 6] [010000] +15:29:58 [ 4] [ 12] [000100000000] +15:29:58 [ 7] [ 10] [0320082904] +15:29:58 [ 11] [ 6] [270031] +15:29:58 [ 12] [ 6] [152904] +15:29:58 [ 13] [ 4] [0320] +15:29:58 [ 14] [ 4] [4912] +15:29:58 [ 15] [ 4] [0320] +15:29:58 [ 18] [ 4] [6011] +15:29:58 [ 19] [ 3] [418] +15:29:58 [ 22] [ 3] [021] +15:29:58 [ 25] [ 2] [01] +15:29:58 [ 28] [ 9] [D00002000] +15:29:58 [ 32] [ 6] [180893] +15:29:58 [ 35] [ 32] [6213541000435050=491212013505813] +15:29:58 [ 37] [ 12] [507908270031] +15:29:58 [ 41] [ 8] [0401XSBR] +15:29:58 [ 42] [ 15] [999999 ] +15:29:58 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +15:29:58 [ 49] [ 3] [418] +15:29:58 [ 52] [ 16] [E79B7FC42A1759DF] +15:29:58 ============================================================================ +15:29:58 + + +waiting on router queue for slot.... +15:29:58 Sending to : +15:29:58 ============================================================================ +15:29:58 ============================================================================ +15:29:58 Slot Id : <210> +15:29:58 Transaction Type : REQUEST +15:29:58 Received From : +15:29:58 ============================================================================ +15:29:58 FNo. Len. Field Value +15:29:58 ============================================================================ +15:29:58 [ 1] [ 4] [0200] +15:29:58 [ 2] [ 16] [6213541000435050] +15:29:58 [ 3] [ 6] [010000] +15:29:58 [ 4] [ 12] [000100000000] +15:29:58 [ 7] [ 10] [0320082904] +15:29:58 [ 11] [ 6] [270031] +15:29:58 [ 12] [ 6] [152904] +15:29:58 [ 13] [ 4] [0320] +15:29:58 [ 14] [ 4] [4912] +15:29:58 [ 15] [ 4] [0320] +15:29:58 [ 18] [ 4] [6011] +15:29:58 [ 19] [ 3] [418] +15:29:58 [ 22] [ 3] [021] +15:29:58 [ 25] [ 2] [01] +15:29:58 [ 28] [ 9] [D00002000] +15:29:58 [ 32] [ 6] [180893] +15:29:58 [ 35] [ 32] [6213541000435050=491212013505813] +15:29:58 [ 37] [ 12] [507908270031] +15:29:58 [ 41] [ 8] [0401XSBR] +15:29:58 [ 42] [ 15] [999999 ] +15:29:58 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +15:29:58 [ 49] [ 3] [418] +15:29:58 [ 52] [ 16] [CBA85BA0F2CC5FD2] +15:29:58 ============================================================================ +15:29:58 + + +waiting on router queue for slot.... +15:29:58 Sending to : <0> +15:29:58 ============================================================================ +15:29:59 ============================================================================ +15:29:59 Slot Id : <210> +15:29:59 Transaction Type : RESPONSE +15:29:59 Received From : +15:29:59 ============================================================================ +15:29:59 FNo. Len. Field Value +15:29:59 ============================================================================ +15:29:59 [ 1] [ 4] [0210] +15:29:59 [ 2] [ 16] [6213541000435050] +15:29:59 [ 3] [ 6] [010000] +15:29:59 [ 4] [ 12] [000100000000] +15:29:59 [ 7] [ 10] [0320082904] +15:29:59 [ 11] [ 6] [270031] +15:29:59 [ 12] [ 6] [152904] +15:29:59 [ 13] [ 4] [0320] +15:29:59 [ 15] [ 4] [0320] +15:29:59 [ 18] [ 4] [6011] +15:29:59 [ 19] [ 3] [418] +15:29:59 [ 32] [ 6] [180893] +15:29:59 [ 35] [ 32] [6213541000435050=491212013505813] +15:29:59 [ 37] [ 12] [507908270031] +15:29:59 [ 38] [ 6] [841655] +15:29:59 [ 39] [ 2] [00] +15:29:59 [ 41] [ 8] [0401XSBR] +15:29:59 [ 49] [ 3] [418] +15:29:59 [ 54] [ 40] [0001418C0014978736910002418C001497873691] +15:29:59 ============================================================================ +15:29:59 Sending to : +15:29:59 ============================================================================ +15:29:59 + + +waiting on router queue for slot.... +15:29:59 ============================================================================ +15:29:59 Slot Id : <263> +15:29:59 Transaction Type : RESPONSE +15:29:59 Received From : +15:29:59 ============================================================================ +15:29:59 FNo. Len. Field Value +15:29:59 ============================================================================ +15:29:59 [ 1] [ 4] [0210] +15:29:59 [ 2] [ 16] [6213544000547759] +15:29:59 [ 3] [ 6] [010000] +15:29:59 [ 4] [ 12] [000030000000] +15:29:59 [ 7] [ 10] [0320152747] +15:29:59 [ 11] [ 6] [950102] +15:29:59 [ 12] [ 6] [152747] +15:29:59 [ 13] [ 4] [0320] +15:29:59 [ 15] [ 4] [0320] +15:29:59 [ 18] [ 4] [6011] +15:29:59 [ 19] [ 3] [418] +15:29:59 [ 32] [ 6] [668899] +15:29:59 [ 35] [ 32] [6213544000547759=491212014775606] +15:29:59 [ 37] [ 12] [507902683064] +15:29:59 [ 38] [ 6] [620364] +15:29:59 [ 39] [ 2] [00] +15:29:59 [ 41] [ 8] [03020036] +15:29:59 [ 49] [ 3] [418] +15:29:59 [ 54] [ 40] [0001418C0001038554990002418C000103855499] +15:29:59 ============================================================================ +15:29:59 Calculate Source COMM Id = 4 +15:29:59 ============================================================================ +15:29:59 + + +waiting on router queue for slot.... +15:30:00 ============================================================================ +15:30:00 Slot Id : <210> +15:30:00 Transaction Type : RESPONSE +15:30:00 Received From : +15:30:00 ============================================================================ +15:30:00 FNo. Len. Field Value +15:30:00 ============================================================================ +15:30:00 [ 1] [ 4] [0210] +15:30:00 [ 2] [ 16] [6213541000435050] +15:30:00 [ 3] [ 6] [010000] +15:30:00 [ 4] [ 12] [000100000000] +15:30:00 [ 7] [ 10] [0320082904] +15:30:00 [ 11] [ 6] [270031] +15:30:00 [ 12] [ 6] [152904] +15:30:00 [ 13] [ 4] [0320] +15:30:00 [ 15] [ 4] [0320] +15:30:00 [ 18] [ 4] [6011] +15:30:00 [ 19] [ 3] [418] +15:30:00 [ 32] [ 6] [180893] +15:30:00 [ 35] [ 32] [6213541000435050=491212013505813] +15:30:00 [ 37] [ 12] [507908270031] +15:30:00 [ 38] [ 6] [841655] +15:30:00 [ 39] [ 2] [00] +15:30:00 [ 41] [ 8] [0401XSBR] +15:30:00 [ 49] [ 3] [418] +15:30:00 [ 54] [ 40] [0001418C0014978736910002418C001497873691] +15:30:00 ============================================================================ +15:30:00 Calculate Source COMM Id = 2 +15:30:00 ============================================================================ +15:30:00 + + +waiting on router queue for slot.... +15:30:13 ============================================================================ +15:30:13 Slot Id : <259> +15:30:13 Transaction Type : REQUEST +15:30:13 Received From : +15:30:13 ============================================================================ +15:30:13 FNo. Len. Field Value +15:30:13 ============================================================================ +15:30:13 [ 1] [ 4] [0800] +15:30:13 [ 7] [ 10] [0320082920] +15:30:13 [ 11] [ 6] [157025] +15:30:13 [ 70] [ 3] [301] +15:30:13 ============================================================================ +15:30:13 + + +waiting on router queue for slot.... +15:30:13 Sending to : +15:30:13 ============================================================================ +15:30:13 ============================================================================ +15:30:13 Slot Id : <259> +15:30:13 Transaction Type : RESPONSE +15:30:13 Received From : +15:30:13 ============================================================================ +15:30:13 FNo. Len. Field Value +15:30:13 ============================================================================ +15:30:13 [ 1] [ 4] [0810] +15:30:13 [ 7] [ 10] [0320082920] +15:30:13 [ 11] [ 6] [157025] +15:30:13 [ 39] [ 2] [00] +15:30:13 [ 70] [ 3] [301] +15:30:13 ============================================================================ +15:30:13 Calculate Source COMM Id = 2 +15:30:13 ============================================================================ +15:30:13 + + +waiting on router queue for slot.... +15:30:14 ============================================================================ +15:30:14 Slot Id : <261> +15:30:14 Transaction Type : REQUEST +15:30:14 Received From : +15:30:14 ============================================================================ +15:30:14 FNo. Len. Field Value +15:30:14 ============================================================================ +15:30:14 [ 1] [ 4] [0200] +15:30:14 [ 2] [ 16] [6213545000285456] +15:30:14 [ 3] [ 6] [010000] +15:30:14 [ 4] [ 12] [000100000000] +15:30:14 [ 7] [ 10] [0320082920] +15:30:14 [ 11] [ 6] [270033] +15:30:14 [ 12] [ 6] [152920] +15:30:14 [ 13] [ 4] [0320] +15:30:14 [ 14] [ 4] [4912] +15:30:14 [ 15] [ 4] [0320] +15:30:14 [ 18] [ 4] [6011] +15:30:14 [ 19] [ 3] [418] +15:30:14 [ 22] [ 3] [021] +15:30:14 [ 25] [ 2] [01] +15:30:14 [ 28] [ 9] [D00002000] +15:30:14 [ 32] [ 6] [180893] +15:30:14 [ 35] [ 32] [6213545000285456=491212018545590] +15:30:14 [ 37] [ 12] [507908270033] +15:30:14 [ 41] [ 8] [0112CPBR] +15:30:14 [ 42] [ 15] [999999 ] +15:30:14 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +15:30:14 [ 49] [ 3] [418] +15:30:14 [ 52] [ 16] [8CB962844BAAB5B3] +15:30:14 ============================================================================ +15:30:14 + + +waiting on router queue for slot.... +15:30:14 Sending to : +15:30:14 ============================================================================ +15:30:14 Sending to : +15:30:14 ============================================================================ +15:30:14 ============================================================================ +15:30:14 Slot Id : <261> +15:30:14 Transaction Type : REQUEST +15:30:14 Received From : +15:30:14 ============================================================================ +15:30:14 FNo. Len. Field Value +15:30:14 ============================================================================ +15:30:14 [ 1] [ 4] [0200] +15:30:14 [ 2] [ 16] [6213545000285456] +15:30:14 [ 3] [ 6] [010000] +15:30:14 [ 4] [ 12] [000100000000] +15:30:14 [ 7] [ 10] [0320082920] +15:30:14 [ 11] [ 6] [270033] +15:30:14 [ 12] [ 6] [152920] +15:30:14 [ 13] [ 4] [0320] +15:30:14 [ 14] [ 4] [4912] +15:30:14 [ 15] [ 4] [0320] +15:30:14 [ 18] [ 4] [6011] +15:30:14 [ 19] [ 3] [418] +15:30:14 [ 22] [ 3] [021] +15:30:14 [ 25] [ 2] [01] +15:30:14 [ 28] [ 9] [D00002000] +15:30:14 [ 32] [ 6] [180893] +15:30:14 [ 35] [ 32] [6213545000285456=491212018545590] +15:30:14 [ 37] [ 12] [507908270033] +15:30:14 [ 41] [ 8] [0112CPBR] +15:30:14 [ 42] [ 15] [999999 ] +15:30:14 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +15:30:14 [ 49] [ 3] [418] +15:30:14 [ 52] [ 16] [8CB962844BAAB5B3] +15:30:14 ============================================================================ +15:30:14 + + +waiting on router queue for slot.... +15:30:14 Sending to : +15:30:14 ============================================================================ +15:30:14 ============================================================================ +15:30:14 Slot Id : <261> +15:30:14 Transaction Type : REQUEST +15:30:14 Received From : +15:30:14 ============================================================================ +15:30:14 FNo. Len. Field Value +15:30:14 ============================================================================ +15:30:14 [ 1] [ 4] [0200] +15:30:14 [ 2] [ 16] [6213545000285456] +15:30:14 [ 3] [ 6] [010000] +15:30:14 [ 4] [ 12] [000100000000] +15:30:14 [ 7] [ 10] [0320082920] +15:30:14 [ 11] [ 6] [270033] +15:30:14 [ 12] [ 6] [152920] +15:30:14 [ 13] [ 4] [0320] +15:30:14 [ 14] [ 4] [4912] +15:30:14 [ 15] [ 4] [0320] +15:30:14 [ 18] [ 4] [6011] +15:30:14 [ 19] [ 3] [418] +15:30:14 [ 22] [ 3] [021] +15:30:14 [ 25] [ 2] [01] +15:30:14 [ 28] [ 9] [D00002000] +15:30:14 [ 32] [ 6] [180893] +15:30:14 [ 35] [ 32] [6213545000285456=491212018545590] +15:30:14 [ 37] [ 12] [507908270033] +15:30:14 [ 41] [ 8] [0112CPBR] +15:30:14 [ 42] [ 15] [999999 ] +15:30:14 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +15:30:14 [ 49] [ 3] [418] +15:30:14 [ 52] [ 16] [B8201264B0D7DFDE] +15:30:14 ============================================================================ +15:30:14 + + +waiting on router queue for slot.... +15:30:14 Sending to : <0> +15:30:14 ============================================================================ +15:30:15 ============================================================================ +15:30:15 Slot Id : <261> +15:30:15 Transaction Type : RESPONSE +15:30:15 Received From : +15:30:15 ============================================================================ +15:30:15 FNo. Len. Field Value +15:30:15 ============================================================================ +15:30:15 [ 1] [ 4] [0210] +15:30:15 [ 2] [ 16] [6213545000285456] +15:30:15 [ 3] [ 6] [010000] +15:30:15 [ 4] [ 12] [000100000000] +15:30:15 [ 7] [ 10] [0320082920] +15:30:15 [ 11] [ 6] [270033] +15:30:15 [ 12] [ 6] [152920] +15:30:15 [ 13] [ 4] [0320] +15:30:15 [ 15] [ 4] [0320] +15:30:15 [ 18] [ 4] [6011] +15:30:15 [ 19] [ 3] [418] +15:30:15 [ 32] [ 6] [180893] +15:30:15 [ 35] [ 32] [6213545000285456=491212018545590] +15:30:15 [ 37] [ 12] [507908270033] +15:30:15 [ 38] [ 6] [974491] +15:30:15 [ 39] [ 2] [00] +15:30:15 [ 41] [ 8] [0112CPBR] +15:30:15 [ 49] [ 3] [418] +15:30:15 [ 54] [ 40] [0001418C0000718788400002418C000071878840] +15:30:15 ============================================================================ +15:30:15 Sending to : +15:30:15 ============================================================================ +15:30:15 + + +waiting on router queue for slot.... +15:30:16 ============================================================================ +15:30:16 Slot Id : <261> +15:30:16 Transaction Type : RESPONSE +15:30:16 Received From : +15:30:16 ============================================================================ +15:30:16 FNo. Len. Field Value +15:30:16 ============================================================================ +15:30:16 [ 1] [ 4] [0210] +15:30:16 [ 2] [ 16] [6213545000285456] +15:30:16 [ 3] [ 6] [010000] +15:30:16 [ 4] [ 12] [000100000000] +15:30:16 [ 7] [ 10] [0320082920] +15:30:16 [ 11] [ 6] [270033] +15:30:16 [ 12] [ 6] [152920] +15:30:16 [ 13] [ 4] [0320] +15:30:16 [ 15] [ 4] [0320] +15:30:16 [ 18] [ 4] [6011] +15:30:16 [ 19] [ 3] [418] +15:30:16 [ 32] [ 6] [180893] +15:30:16 [ 35] [ 32] [6213545000285456=491212018545590] +15:30:16 [ 37] [ 12] [507908270033] +15:30:16 [ 38] [ 6] [974491] +15:30:16 [ 39] [ 2] [00] +15:30:16 [ 41] [ 8] [0112CPBR] +15:30:16 [ 49] [ 3] [418] +15:30:16 [ 54] [ 40] [0001418C0000718788400002418C000071878840] +15:30:16 ============================================================================ +15:30:16 Calculate Source COMM Id = 2 +15:30:16 ============================================================================ +15:30:16 + + +waiting on router queue for slot.... +15:30:27 ============================================================================ +15:30:27 Slot Id : <225> +15:30:27 Transaction Type : REQUEST +15:30:27 Received From : +15:30:27 ============================================================================ +15:30:27 FNo. Len. Field Value +15:30:27 ============================================================================ +15:30:27 [ 1] [ 4] [0800] +15:30:27 [ 7] [ 10] [0320224215] +15:30:27 [ 11] [ 6] [154215] +15:30:27 [ 37] [ 12] [57915154215] +15:30:27 [ 70] [ 3] [301] +15:30:27 ============================================================================ +15:30:27 + + +waiting on router queue for slot.... +15:30:27 Sending to : +15:30:27 ============================================================================ +15:30:27 ============================================================================ +15:30:27 Slot Id : <225> +15:30:27 Transaction Type : RESPONSE +15:30:27 Received From : +15:30:27 ============================================================================ +15:30:27 FNo. Len. Field Value +15:30:27 ============================================================================ +15:30:27 [ 1] [ 4] [0810] +15:30:27 [ 7] [ 10] [0320224215] +15:30:27 [ 11] [ 6] [154215] +15:30:27 [ 37] [ 12] [579151542150] +15:30:27 [ 39] [ 2] [00] +15:30:27 [ 70] [ 3] [810] +15:30:27 ============================================================================ +15:30:27 Calculate Source COMM Id = 6 +15:30:27 ============================================================================ +15:30:27 + + +waiting on router queue for slot.... +15:30:29 ============================================================================ +15:30:29 Slot Id : <270> +15:30:29 Transaction Type : REQUEST +15:30:29 Received From : +15:30:29 ============================================================================ +15:30:29 FNo. Len. Field Value +15:30:29 ============================================================================ +15:30:29 [ 1] [ 4] [0800] +15:30:29 [ 7] [ 10] [0320082935] +15:30:29 [ 11] [ 6] [157026] +15:30:29 [ 70] [ 3] [301] +15:30:29 ============================================================================ +15:30:29 + + +waiting on router queue for slot.... +15:30:29 Sending to : +15:30:29 ============================================================================ +15:30:29 ============================================================================ +15:30:29 Slot Id : <270> +15:30:29 Transaction Type : RESPONSE +15:30:29 Received From : +15:30:29 ============================================================================ +15:30:29 FNo. Len. Field Value +15:30:29 ============================================================================ +15:30:29 [ 1] [ 4] [0810] +15:30:29 [ 7] [ 10] [0320082935] +15:30:29 [ 11] [ 6] [157026] +15:30:29 [ 39] [ 2] [00] +15:30:29 [ 70] [ 3] [301] +15:30:29 ============================================================================ +15:30:29 Calculate Source COMM Id = 2 +15:30:29 ============================================================================ +15:30:29 + + +waiting on router queue for slot.... +15:30:39 ============================================================================ +15:30:39 Slot Id : <199> +15:30:39 Transaction Type : REQUEST +15:30:39 Received From : +15:30:39 ============================================================================ +15:30:39 FNo. Len. Field Value +15:30:39 ============================================================================ +15:30:39 [ 1] [ 4] [0800] +15:30:39 [ 2] [ 5] [02531] +15:30:39 [ 3] [ 6] [579158] +15:30:39 [ 7] [ 10] [0320083039] +15:30:39 [ 11] [ 6] [807312] +15:30:39 [ 15] [ 10] [0320083039] +15:30:39 [ 37] [ 11] [57915807312] +15:30:39 [ 70] [ 3] [001] +15:30:39 ============================================================================ +15:30:39 + + +waiting on router queue for slot.... +15:30:39 ============================================================================ +15:30:39 Slot Id : <199> +15:30:39 Transaction Type : RESPONSE +15:30:39 Received From : +15:30:39 ============================================================================ +15:30:39 FNo. Len. Field Value +15:30:39 ============================================================================ +15:30:39 [ 1] [ 4] [0810] +15:30:39 [ 7] [ 10] [0320083039] +15:30:39 [ 11] [ 6] [807312] +15:30:39 [ 15] [ 4] [0320] +15:30:39 [ 37] [ 12] [57915807312] +15:30:39 [ 39] [ 2] [00] +15:30:39 [ 70] [ 3] [001] +15:30:39 ============================================================================ +15:30:39 Sending to : +15:30:39 ============================================================================ +15:30:39 + + +waiting on router queue for slot.... +15:30:39 ============================================================================ +15:30:39 Slot Id : <269> +15:30:39 Transaction Type : REQUEST +15:30:39 Received From : +15:30:39 ============================================================================ +15:30:39 FNo. Len. Field Value +15:30:39 ============================================================================ +15:30:39 [ 1] [ 4] [0800] +15:30:39 [ 7] [ 10] [0320082946] +15:30:39 [ 11] [ 6] [157027] +15:30:39 [ 70] [ 3] [301] +15:30:39 ============================================================================ +15:30:39 + + +waiting on router queue for slot.... +15:30:39 Sending to : +15:30:39 ============================================================================ +15:30:39 ============================================================================ +15:30:39 Slot Id : <269> +15:30:39 Transaction Type : RESPONSE +15:30:39 Received From : +15:30:39 ============================================================================ +15:30:39 FNo. Len. Field Value +15:30:39 ============================================================================ +15:30:39 [ 1] [ 4] [0810] +15:30:39 [ 7] [ 10] [0320082946] +15:30:39 [ 11] [ 6] [157027] +15:30:39 [ 39] [ 2] [00] +15:30:39 [ 70] [ 3] [301] +15:30:39 ============================================================================ +15:30:39 Calculate Source COMM Id = 2 +15:30:39 ============================================================================ +15:30:39 + + +waiting on router queue for slot.... +15:30:49 ============================================================================ +15:30:49 Slot Id : <275> +15:30:49 Transaction Type : REQUEST +15:30:49 Received From : +15:30:49 ============================================================================ +15:30:49 FNo. Len. Field Value +15:30:49 ============================================================================ +15:30:49 [ 1] [ 4] [0800] +15:30:49 [ 7] [ 10] [0320082957] +15:30:49 [ 11] [ 6] [157028] +15:30:49 [ 70] [ 3] [301] +15:30:49 ============================================================================ +15:30:49 + + +waiting on router queue for slot.... +15:30:49 Sending to : +15:30:49 ============================================================================ +15:30:49 ============================================================================ +15:30:49 Slot Id : <275> +15:30:49 Transaction Type : RESPONSE +15:30:49 Received From : +15:30:49 ============================================================================ +15:30:49 FNo. Len. Field Value +15:30:49 ============================================================================ +15:30:49 [ 1] [ 4] [0810] +15:30:49 [ 7] [ 10] [0320082957] +15:30:49 [ 11] [ 6] [157028] +15:30:49 [ 39] [ 2] [00] +15:30:49 [ 70] [ 3] [301] +15:30:49 ============================================================================ +15:30:49 Calculate Source COMM Id = 2 +15:30:49 ============================================================================ +15:30:49 + + +waiting on router queue for slot.... +15:30:55 ============================================================================ +15:30:55 Slot Id : <240> +15:30:55 Transaction Type : REQUEST +15:30:55 Received From : +15:30:55 ============================================================================ +15:30:55 FNo. Len. Field Value +15:30:55 ============================================================================ +15:30:55 [ 1] [ 4] [0200] +15:30:55 [ 2] [ 16] [1234010100029902] +15:30:55 [ 3] [ 6] [012000] +15:30:55 [ 4] [ 12] [000040000000] +15:30:55 [ 7] [ 10] [0320153051] +15:30:55 [ 11] [ 6] [784706] +15:30:55 [ 12] [ 6] [153051] +15:30:55 [ 13] [ 4] [0320] +15:30:55 [ 15] [ 4] [0320] +15:30:55 [ 18] [ 4] [6011] +15:30:55 [ 22] [ 3] [900] +15:30:55 [ 25] [ 2] [02] +15:30:55 [ 28] [ 9] [D00002000] +15:30:55 [ 32] [ 6] [621354] +15:30:55 [ 35] [ 32] [1234010100029902=121000012990000] +15:30:55 [ 37] [ 12] [507905322928] +15:30:55 [ 41] [ 8] [01013400] +15:30:55 [ 42] [ 15] [NATIVE ] +15:30:55 [ 43] [ 40] [Wattay Airport03 Vientiane LAO] +15:30:55 [ 49] [ 3] [418] +15:30:55 [ 52] [ 16] [0A0FD766C571B574] +15:30:55 ============================================================================ +15:30:55 + + +waiting on router queue for slot.... +15:30:55 Sending to : +15:30:55 ============================================================================ +15:30:55 Sending to : +15:30:55 ============================================================================ +15:30:56 ============================================================================ +15:30:56 Slot Id : <240> +15:30:56 Transaction Type : REQUEST +15:30:56 Received From : +15:30:56 ============================================================================ +15:30:56 FNo. Len. Field Value +15:30:56 ============================================================================ +15:30:56 [ 1] [ 4] [0200] +15:30:56 [ 2] [ 16] [1234010100029902] +15:30:56 [ 3] [ 6] [012000] +15:30:56 [ 4] [ 12] [000040000000] +15:30:56 [ 7] [ 10] [0320153051] +15:30:56 [ 11] [ 6] [784706] +15:30:56 [ 12] [ 6] [153051] +15:30:56 [ 13] [ 4] [0320] +15:30:56 [ 15] [ 4] [0320] +15:30:56 [ 18] [ 4] [6011] +15:30:56 [ 22] [ 3] [900] +15:30:56 [ 25] [ 2] [02] +15:30:56 [ 28] [ 9] [D00002000] +15:30:56 [ 32] [ 6] [621354] +15:30:56 [ 35] [ 32] [1234010100029902=121000012990000] +15:30:56 [ 37] [ 12] [507905322928] +15:30:56 [ 41] [ 8] [01013400] +15:30:56 [ 42] [ 15] [NATIVE ] +15:30:56 [ 43] [ 40] [Wattay Airport03 Vientiane LAO] +15:30:56 [ 49] [ 3] [418] +15:30:56 [ 52] [ 16] [0A0FD766C571B574] +15:30:56 ============================================================================ +15:30:56 + + +waiting on router queue for slot.... +15:30:56 Sending to : +15:30:56 ============================================================================ +15:30:56 ============================================================================ +15:30:56 Slot Id : <240> +15:30:56 Transaction Type : REQUEST +15:30:56 Received From : +15:30:56 ============================================================================ +15:30:56 FNo. Len. Field Value +15:30:56 ============================================================================ +15:30:56 [ 1] [ 4] [0200] +15:30:56 [ 2] [ 16] [1234010100029902] +15:30:56 [ 3] [ 6] [012000] +15:30:56 [ 4] [ 12] [000040000000] +15:30:56 [ 7] [ 10] [0320153051] +15:30:56 [ 11] [ 6] [784706] +15:30:56 [ 12] [ 6] [153051] +15:30:56 [ 13] [ 4] [0320] +15:30:56 [ 15] [ 4] [0320] +15:30:56 [ 18] [ 4] [6011] +15:30:56 [ 22] [ 3] [900] +15:30:56 [ 25] [ 2] [02] +15:30:56 [ 28] [ 9] [D00002000] +15:30:56 [ 32] [ 6] [621354] +15:30:56 [ 35] [ 32] [1234010100029902=121000012990000] +15:30:56 [ 37] [ 12] [507905322928] +15:30:56 [ 41] [ 8] [01013400] +15:30:56 [ 42] [ 15] [NATIVE ] +15:30:56 [ 43] [ 40] [Wattay Airport03 Vientiane LAO] +15:30:56 [ 49] [ 3] [418] +15:30:56 [ 52] [ 16] [D01B097EDBB2AF19] +15:30:56 ============================================================================ +15:30:56 + + +waiting on router queue for slot.... +15:30:56 Sending to : <6> +15:30:56 ============================================================================ +15:30:59 ============================================================================ +15:30:59 Slot Id : <197> +15:30:59 Transaction Type : REQUEST +15:30:59 Received From : +15:30:59 ============================================================================ +15:30:59 FNo. Len. Field Value +15:30:59 ============================================================================ +15:30:59 [ 1] [ 4] [0200] +15:30:59 [ 2] [ 16] [6213544001938437] +15:30:59 [ 3] [ 6] [301000] +15:30:59 [ 7] [ 10] [0320083005] +15:30:59 [ 11] [ 6] [270039] +15:30:59 [ 12] [ 6] [153005] +15:30:59 [ 13] [ 4] [0320] +15:30:59 [ 14] [ 4] [4912] +15:30:59 [ 15] [ 4] [0320] +15:30:59 [ 18] [ 4] [6011] +15:30:59 [ 19] [ 3] [418] +15:30:59 [ 22] [ 3] [021] +15:30:59 [ 25] [ 2] [01] +15:30:59 [ 32] [ 6] [180893] +15:30:59 [ 35] [ 32] [6213544001938437=491212013843534] +15:30:59 [ 37] [ 12] [507908270039] +15:30:59 [ 41] [ 8] [0381CPSP] +15:30:59 [ 42] [ 15] [999999 ] +15:30:59 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +15:30:59 [ 49] [ 3] [418] +15:30:59 [ 52] [ 16] [189D7097155504E6] +15:30:59 ============================================================================ +15:30:59 + + +waiting on router queue for slot.... +15:30:59 Sending to : +15:30:59 ============================================================================ +15:30:59 Sending to : +15:30:59 ============================================================================ +15:31:00 ============================================================================ +15:31:00 Slot Id : <197> +15:31:00 Transaction Type : REQUEST +15:31:00 Received From : +15:31:00 ============================================================================ +15:31:00 FNo. Len. Field Value +15:31:00 ============================================================================ +15:31:00 [ 1] [ 4] [0200] +15:31:00 [ 2] [ 16] [6213544001938437] +15:31:00 [ 3] [ 6] [301000] +15:31:00 [ 7] [ 10] [0320083005] +15:31:00 [ 11] [ 6] [270039] +15:31:00 [ 12] [ 6] [153005] +15:31:00 [ 13] [ 4] [0320] +15:31:00 [ 14] [ 4] [4912] +15:31:00 [ 15] [ 4] [0320] +15:31:00 [ 18] [ 4] [6011] +15:31:00 [ 19] [ 3] [418] +15:31:00 [ 22] [ 3] [021] +15:31:00 [ 25] [ 2] [01] +15:31:00 [ 32] [ 6] [180893] +15:31:00 [ 35] [ 32] [6213544001938437=491212013843534] +15:31:00 [ 37] [ 12] [507908270039] +15:31:00 [ 41] [ 8] [0381CPSP] +15:31:00 [ 42] [ 15] [999999 ] +15:31:00 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +15:31:00 [ 49] [ 3] [418] +15:31:00 [ 52] [ 16] [189D7097155504E6] +15:31:00 ============================================================================ +15:31:00 + + +waiting on router queue for slot.... +15:31:00 Sending to : +15:31:00 ============================================================================ +15:31:00 ============================================================================ +15:31:00 Slot Id : <197> +15:31:00 Transaction Type : REQUEST +15:31:00 Received From : +15:31:00 ============================================================================ +15:31:00 FNo. Len. Field Value +15:31:00 ============================================================================ +15:31:00 [ 1] [ 4] [0200] +15:31:00 [ 2] [ 16] [6213544001938437] +15:31:00 [ 3] [ 6] [301000] +15:31:00 [ 7] [ 10] [0320083005] +15:31:00 [ 11] [ 6] [270039] +15:31:00 [ 12] [ 6] [153005] +15:31:00 [ 13] [ 4] [0320] +15:31:00 [ 14] [ 4] [4912] +15:31:00 [ 15] [ 4] [0320] +15:31:00 [ 18] [ 4] [6011] +15:31:00 [ 19] [ 3] [418] +15:31:00 [ 22] [ 3] [021] +15:31:00 [ 25] [ 2] [01] +15:31:00 [ 32] [ 6] [180893] +15:31:00 [ 35] [ 32] [6213544001938437=491212013843534] +15:31:00 [ 37] [ 12] [507908270039] +15:31:00 [ 41] [ 8] [0381CPSP] +15:31:00 [ 42] [ 15] [999999 ] +15:31:00 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +15:31:00 [ 49] [ 3] [418] +15:31:00 [ 52] [ 16] [18DE8BDDA79CC2BF] +15:31:00 ============================================================================ +15:31:00 + + +waiting on router queue for slot.... +15:31:00 Sending to : <0> +15:31:00 ============================================================================ +15:31:00 ============================================================================ +15:31:00 Slot Id : <240> +15:31:00 Transaction Type : RESPONSE +15:31:00 Received From : +15:31:00 ============================================================================ +15:31:00 FNo. Len. Field Value +15:31:00 ============================================================================ +15:31:00 [ 1] [ 4] [0210] +15:31:00 [ 2] [ 16] [1234010100029902] +15:31:00 [ 3] [ 6] [012000] +15:31:00 [ 4] [ 12] [000040000000] +15:31:00 [ 7] [ 10] [0320153051] +15:31:00 [ 11] [ 6] [784706] +15:31:00 [ 12] [ 6] [153051] +15:31:00 [ 13] [ 4] [0320] +15:31:00 [ 15] [ 4] [0320] +15:31:00 [ 18] [ 4] [6011] +15:31:00 [ 19] [ 3] [418] +15:31:00 [ 32] [ 6] [621354] +15:31:00 [ 35] [ 32] [1234010100029902=121000012990000] +15:31:00 [ 37] [ 12] [507905322928] +15:31:00 [ 38] [ 6] [547859] +15:31:00 [ 39] [ 2] [00] +15:31:00 [ 41] [ 8] [01013400] +15:31:00 [ 49] [ 3] [418] +15:31:00 [ 54] [ 20] [2001418C000313842859] +15:31:00 ============================================================================ +15:31:00 Sending to : +15:31:00 ============================================================================ +15:31:00 + + +waiting on router queue for slot.... +15:31:00 ============================================================================ +15:31:00 Slot Id : <197> +15:31:00 Transaction Type : RESPONSE +15:31:00 Received From : +15:31:00 ============================================================================ +15:31:00 FNo. Len. Field Value +15:31:00 ============================================================================ +15:31:00 [ 1] [ 4] [0210] +15:31:00 [ 2] [ 16] [6213544001938437] +15:31:00 [ 3] [ 6] [301000] +15:31:00 [ 4] [ 12] [000000000000] +15:31:00 [ 7] [ 10] [0320083005] +15:31:00 [ 11] [ 6] [270039] +15:31:00 [ 12] [ 6] [153005] +15:31:00 [ 13] [ 4] [0320] +15:31:00 [ 15] [ 4] [0320] +15:31:00 [ 18] [ 4] [6011] +15:31:00 [ 19] [ 3] [418] +15:31:00 [ 32] [ 6] [180893] +15:31:00 [ 35] [ 32] [6213544001938437=491212013843534] +15:31:00 [ 37] [ 12] [507908270039] +15:31:00 [ 38] [ 6] [330626] +15:31:00 [ 39] [ 2] [00] +15:31:00 [ 41] [ 8] [0381CPSP] +15:31:00 [ 49] [ 3] [418] +15:31:00 [ 54] [ 40] [1001418C0000072106121002418C000007210612] +15:31:00 ============================================================================ +15:31:00 Sending to : +15:31:00 ============================================================================ +15:31:00 + + +waiting on router queue for slot.... +15:31:01 ============================================================================ +15:31:01 Slot Id : <240> +15:31:01 Transaction Type : RESPONSE +15:31:01 Received From : +15:31:01 ============================================================================ +15:31:01 FNo. Len. Field Value +15:31:01 ============================================================================ +15:31:01 [ 1] [ 4] [0210] +15:31:01 [ 2] [ 16] [1234010100029902] +15:31:01 [ 3] [ 6] [012000] +15:31:01 [ 4] [ 12] [000040000000] +15:31:01 [ 7] [ 10] [0320153051] +15:31:01 [ 11] [ 6] [784706] +15:31:01 [ 12] [ 6] [153051] +15:31:01 [ 13] [ 4] [0320] +15:31:01 [ 15] [ 4] [0320] +15:31:01 [ 18] [ 4] [6011] +15:31:01 [ 19] [ 3] [418] +15:31:01 [ 32] [ 6] [621354] +15:31:01 [ 35] [ 32] [1234010100029902=121000012990000] +15:31:01 [ 37] [ 12] [507905322928] +15:31:01 [ 38] [ 6] [547859] +15:31:01 [ 39] [ 2] [00] +15:31:01 [ 41] [ 8] [01013400] +15:31:01 [ 49] [ 3] [418] +15:31:01 [ 54] [ 20] [2001418C000313842859] +15:31:01 ============================================================================ +15:31:01 Calculate Source COMM Id = 0 +15:31:01 ============================================================================ +15:31:01 + + +waiting on router queue for slot.... +15:31:03 ============================================================================ +15:31:03 Slot Id : <197> +15:31:03 Transaction Type : RESPONSE +15:31:03 Received From : +15:31:03 ============================================================================ +15:31:03 FNo. Len. Field Value +15:31:03 ============================================================================ +15:31:03 [ 1] [ 4] [0210] +15:31:03 [ 2] [ 16] [6213544001938437] +15:31:03 [ 3] [ 6] [301000] +15:31:03 [ 4] [ 12] [000000000000] +15:31:03 [ 7] [ 10] [0320083005] +15:31:03 [ 11] [ 6] [270039] +15:31:03 [ 12] [ 6] [153005] +15:31:03 [ 13] [ 4] [0320] +15:31:03 [ 15] [ 4] [0320] +15:31:03 [ 18] [ 4] [6011] +15:31:03 [ 19] [ 3] [418] +15:31:03 [ 32] [ 6] [180893] +15:31:03 [ 35] [ 32] [6213544001938437=491212013843534] +15:31:03 [ 37] [ 12] [507908270039] +15:31:03 [ 38] [ 6] [330626] +15:31:03 [ 39] [ 2] [00] +15:31:03 [ 41] [ 8] [0381CPSP] +15:31:03 [ 49] [ 3] [418] +15:31:03 [ 54] [ 40] [1001418C0000072106121002418C000007210612] +15:31:03 ============================================================================ +15:31:03 Calculate Source COMM Id = 2 +15:31:03 ============================================================================ +15:31:03 + + +waiting on router queue for slot.... +15:31:06 ============================================================================ +15:31:06 Slot Id : <256> +15:31:06 Transaction Type : REQUEST +15:31:06 Received From : +15:31:06 ============================================================================ +15:31:06 FNo. Len. Field Value +15:31:06 ============================================================================ +15:31:06 [ 1] [ 4] [0200] +15:31:06 [ 2] [ 16] [6213545000285456] +15:31:06 [ 3] [ 6] [301000] +15:31:06 [ 7] [ 10] [0320083012] +15:31:06 [ 11] [ 6] [270040] +15:31:06 [ 12] [ 6] [153012] +15:31:06 [ 13] [ 4] [0320] +15:31:06 [ 14] [ 4] [4912] +15:31:06 [ 15] [ 4] [0320] +15:31:06 [ 18] [ 4] [6011] +15:31:06 [ 19] [ 3] [418] +15:31:06 [ 22] [ 3] [021] +15:31:06 [ 25] [ 2] [01] +15:31:06 [ 32] [ 6] [180893] +15:31:06 [ 35] [ 32] [6213545000285456=491212018545590] +15:31:06 [ 37] [ 12] [507908270040] +15:31:06 [ 41] [ 8] [0112CPBR] +15:31:06 [ 42] [ 15] [999999 ] +15:31:06 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +15:31:06 [ 49] [ 3] [418] +15:31:06 [ 52] [ 16] [8CB962844BAAB5B3] +15:31:06 ============================================================================ +15:31:06 + + +waiting on router queue for slot.... +15:31:06 Sending to : +15:31:06 ============================================================================ +15:31:06 Sending to : +15:31:06 ============================================================================ +15:31:06 ============================================================================ +15:31:06 Slot Id : <256> +15:31:06 Transaction Type : REQUEST +15:31:06 Received From : +15:31:06 ============================================================================ +15:31:06 FNo. Len. Field Value +15:31:06 ============================================================================ +15:31:06 [ 1] [ 4] [0200] +15:31:06 [ 2] [ 16] [6213545000285456] +15:31:06 [ 3] [ 6] [301000] +15:31:06 [ 7] [ 10] [0320083012] +15:31:06 [ 11] [ 6] [270040] +15:31:06 [ 12] [ 6] [153012] +15:31:06 [ 13] [ 4] [0320] +15:31:06 [ 14] [ 4] [4912] +15:31:06 [ 15] [ 4] [0320] +15:31:06 [ 18] [ 4] [6011] +15:31:06 [ 19] [ 3] [418] +15:31:06 [ 22] [ 3] [021] +15:31:06 [ 25] [ 2] [01] +15:31:06 [ 32] [ 6] [180893] +15:31:06 [ 35] [ 32] [6213545000285456=491212018545590] +15:31:06 [ 37] [ 12] [507908270040] +15:31:06 [ 41] [ 8] [0112CPBR] +15:31:06 [ 42] [ 15] [999999 ] +15:31:06 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +15:31:06 [ 49] [ 3] [418] +15:31:06 [ 52] [ 16] [8CB962844BAAB5B3] +15:31:06 ============================================================================ +15:31:06 + + +waiting on router queue for slot.... +15:31:06 Sending to : +15:31:06 ============================================================================ +15:31:06 ============================================================================ +15:31:06 Slot Id : <256> +15:31:06 Transaction Type : REQUEST +15:31:06 Received From : +15:31:06 ============================================================================ +15:31:06 FNo. Len. Field Value +15:31:06 ============================================================================ +15:31:06 [ 1] [ 4] [0200] +15:31:06 [ 2] [ 16] [6213545000285456] +15:31:06 [ 3] [ 6] [301000] +15:31:06 [ 7] [ 10] [0320083012] +15:31:06 [ 11] [ 6] [270040] +15:31:06 [ 12] [ 6] [153012] +15:31:06 [ 13] [ 4] [0320] +15:31:06 [ 14] [ 4] [4912] +15:31:06 [ 15] [ 4] [0320] +15:31:06 [ 18] [ 4] [6011] +15:31:06 [ 19] [ 3] [418] +15:31:06 [ 22] [ 3] [021] +15:31:06 [ 25] [ 2] [01] +15:31:06 [ 32] [ 6] [180893] +15:31:06 [ 35] [ 32] [6213545000285456=491212018545590] +15:31:06 [ 37] [ 12] [507908270040] +15:31:06 [ 41] [ 8] [0112CPBR] +15:31:06 [ 42] [ 15] [999999 ] +15:31:06 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +15:31:06 [ 49] [ 3] [418] +15:31:06 [ 52] [ 16] [B8201264B0D7DFDE] +15:31:06 ============================================================================ +15:31:06 + + +waiting on router queue for slot.... +15:31:06 Sending to : <0> +15:31:06 ============================================================================ +15:31:06 ============================================================================ +15:31:06 Slot Id : <256> +15:31:06 Transaction Type : RESPONSE +15:31:06 Received From : +15:31:06 ============================================================================ +15:31:06 FNo. Len. Field Value +15:31:06 ============================================================================ +15:31:06 [ 1] [ 4] [0210] +15:31:06 [ 2] [ 16] [6213545000285456] +15:31:06 [ 3] [ 6] [301000] +15:31:06 [ 4] [ 12] [000000000000] +15:31:06 [ 7] [ 10] [0320083012] +15:31:06 [ 11] [ 6] [270040] +15:31:06 [ 12] [ 6] [153012] +15:31:06 [ 13] [ 4] [0320] +15:31:06 [ 15] [ 4] [0320] +15:31:06 [ 18] [ 4] [6011] +15:31:06 [ 19] [ 3] [418] +15:31:06 [ 32] [ 6] [180893] +15:31:06 [ 35] [ 32] [6213545000285456=491212018545590] +15:31:06 [ 37] [ 12] [507908270040] +15:31:06 [ 38] [ 6] [894356] +15:31:06 [ 39] [ 2] [00] +15:31:06 [ 41] [ 8] [0112CPBR] +15:31:06 [ 49] [ 3] [418] +15:31:06 [ 54] [ 40] [1001418C0000718788401002418C000071878840] +15:31:06 ============================================================================ +15:31:06 Sending to : +15:31:06 ============================================================================ +15:31:06 + + +waiting on router queue for slot.... +15:31:07 ============================================================================ +15:31:07 Slot Id : <228> +15:31:07 Transaction Type : REQUEST +15:31:07 Received From : +15:31:07 ============================================================================ +15:31:07 FNo. Len. Field Value +15:31:07 ============================================================================ +15:31:07 [ 1] [ 4] [0200] +15:31:07 [ 2] [ 16] [6688990602317701] +15:31:07 [ 3] [ 6] [010000] +15:31:07 [ 4] [ 12] [000150000000] +15:31:07 [ 7] [ 10] [0320083013] +15:31:07 [ 11] [ 6] [270041] +15:31:07 [ 12] [ 6] [153013] +15:31:07 [ 13] [ 4] [0320] +15:31:07 [ 14] [ 4] [4302] +15:31:07 [ 15] [ 4] [0320] +15:31:07 [ 18] [ 4] [6011] +15:31:07 [ 19] [ 3] [418] +15:31:07 [ 22] [ 3] [021] +15:31:07 [ 25] [ 2] [01] +15:31:07 [ 28] [ 9] [D00002000] +15:31:07 [ 32] [ 6] [180893] +15:31:07 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:31:07 [ 37] [ 12] [507908270041] +15:31:07 [ 41] [ 8] [0523XYNG] +15:31:07 [ 42] [ 15] [999999 ] +15:31:07 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +15:31:07 [ 49] [ 3] [418] +15:31:07 [ 52] [ 16] [6EE953B6674EB1E0] +15:31:07 ============================================================================ +15:31:07 + + +waiting on router queue for slot.... +15:31:07 Sending to : +15:31:07 ============================================================================ +15:31:07 Sending to : +15:31:07 ============================================================================ +15:31:07 ============================================================================ +15:31:07 Slot Id : <228> +15:31:07 Transaction Type : REQUEST +15:31:07 Received From : +15:31:07 ============================================================================ +15:31:07 FNo. Len. Field Value +15:31:07 ============================================================================ +15:31:07 [ 1] [ 4] [0200] +15:31:07 [ 2] [ 16] [6688990602317701] +15:31:07 [ 3] [ 6] [010000] +15:31:07 [ 4] [ 12] [000150000000] +15:31:07 [ 7] [ 10] [0320083013] +15:31:07 [ 11] [ 6] [270041] +15:31:07 [ 12] [ 6] [153013] +15:31:07 [ 13] [ 4] [0320] +15:31:07 [ 14] [ 4] [4302] +15:31:07 [ 15] [ 4] [0320] +15:31:07 [ 18] [ 4] [6011] +15:31:07 [ 19] [ 3] [418] +15:31:07 [ 22] [ 3] [021] +15:31:07 [ 25] [ 2] [01] +15:31:07 [ 28] [ 9] [D00002000] +15:31:07 [ 32] [ 6] [180893] +15:31:07 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:31:07 [ 37] [ 12] [507908270041] +15:31:07 [ 41] [ 8] [0523XYNG] +15:31:07 [ 42] [ 15] [999999 ] +15:31:07 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +15:31:07 [ 49] [ 3] [418] +15:31:07 [ 52] [ 16] [6EE953B6674EB1E0] +15:31:07 ============================================================================ +15:31:07 + + +waiting on router queue for slot.... +15:31:07 Sending to : +15:31:07 ============================================================================ +15:31:07 ============================================================================ +15:31:07 Slot Id : <228> +15:31:07 Transaction Type : REQUEST +15:31:07 Received From : +15:31:07 ============================================================================ +15:31:07 FNo. Len. Field Value +15:31:07 ============================================================================ +15:31:07 [ 1] [ 4] [0200] +15:31:07 [ 2] [ 16] [6688990602317701] +15:31:07 [ 3] [ 6] [010000] +15:31:07 [ 4] [ 12] [000150000000] +15:31:07 [ 7] [ 10] [0320083013] +15:31:07 [ 11] [ 6] [270041] +15:31:07 [ 12] [ 6] [153013] +15:31:07 [ 13] [ 4] [0320] +15:31:07 [ 14] [ 4] [4302] +15:31:07 [ 15] [ 4] [0320] +15:31:07 [ 18] [ 4] [6011] +15:31:07 [ 19] [ 3] [418] +15:31:07 [ 22] [ 3] [021] +15:31:07 [ 25] [ 2] [01] +15:31:07 [ 28] [ 9] [D00002000] +15:31:07 [ 32] [ 6] [180893] +15:31:07 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:31:07 [ 37] [ 12] [507908270041] +15:31:07 [ 41] [ 8] [0523XYNG] +15:31:07 [ 42] [ 15] [999999 ] +15:31:07 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +15:31:07 [ 49] [ 3] [418] +15:31:07 [ 52] [ 16] [7025A958120D47C9] +15:31:07 ============================================================================ +15:31:07 + + +waiting on router queue for slot.... +15:31:07 Sending to : <0> +15:31:07 ============================================================================ +15:31:07 ============================================================================ +15:31:07 Slot Id : <228> +15:31:07 Transaction Type : RESPONSE +15:31:07 Received From : +15:31:07 ============================================================================ +15:31:07 FNo. Len. Field Value +15:31:07 ============================================================================ +15:31:07 [ 1] [ 4] [0210] +15:31:07 [ 2] [ 16] [6688990602317701] +15:31:07 [ 3] [ 6] [010000] +15:31:07 [ 4] [ 12] [000150000000] +15:31:07 [ 7] [ 10] [0320083013] +15:31:07 [ 11] [ 6] [270041] +15:31:07 [ 12] [ 6] [153013] +15:31:07 [ 13] [ 4] [0320] +15:31:07 [ 15] [ 4] [0320] +15:31:07 [ 18] [ 4] [6011] +15:31:07 [ 19] [ 3] [418] +15:31:07 [ 22] [ 3] [021] +15:31:07 [ 32] [ 6] [180893] +15:31:07 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:31:07 [ 37] [ 12] [507908270041] +15:31:07 [ 39] [ 2] [61] +15:31:07 [ 41] [ 8] [0523XYNG] +15:31:07 [ 49] [ 3] [418] +15:31:07 ============================================================================ +15:31:07 Sending to : +15:31:07 ============================================================================ +15:31:07 + + +waiting on router queue for slot.... +15:31:08 ============================================================================ +15:31:08 Slot Id : <256> +15:31:08 Transaction Type : RESPONSE +15:31:08 Received From : +15:31:08 ============================================================================ +15:31:08 FNo. Len. Field Value +15:31:08 ============================================================================ +15:31:08 [ 1] [ 4] [0210] +15:31:08 [ 2] [ 16] [6213545000285456] +15:31:08 [ 3] [ 6] [301000] +15:31:08 [ 4] [ 12] [000000000000] +15:31:08 [ 7] [ 10] [0320083012] +15:31:08 [ 11] [ 6] [270040] +15:31:08 [ 12] [ 6] [153012] +15:31:08 [ 13] [ 4] [0320] +15:31:08 [ 15] [ 4] [0320] +15:31:08 [ 18] [ 4] [6011] +15:31:08 [ 19] [ 3] [418] +15:31:08 [ 32] [ 6] [180893] +15:31:08 [ 35] [ 32] [6213545000285456=491212018545590] +15:31:08 [ 37] [ 12] [507908270040] +15:31:08 [ 38] [ 6] [894356] +15:31:08 [ 39] [ 2] [00] +15:31:08 [ 41] [ 8] [0112CPBR] +15:31:08 [ 49] [ 3] [418] +15:31:08 [ 54] [ 40] [1001418C0000718788401002418C000071878840] +15:31:08 ============================================================================ +15:31:08 Calculate Source COMM Id = 2 +15:31:08 ============================================================================ +15:31:08 + + +waiting on router queue for slot.... +15:31:09 ============================================================================ +15:31:09 Slot Id : <228> +15:31:09 Transaction Type : RESPONSE +15:31:09 Received From : +15:31:09 ============================================================================ +15:31:09 FNo. Len. Field Value +15:31:09 ============================================================================ +15:31:09 [ 1] [ 4] [0210] +15:31:09 [ 2] [ 16] [6688990602317701] +15:31:09 [ 3] [ 6] [010000] +15:31:09 [ 4] [ 12] [000150000000] +15:31:09 [ 7] [ 10] [0320083013] +15:31:09 [ 11] [ 6] [270041] +15:31:09 [ 12] [ 6] [153013] +15:31:09 [ 13] [ 4] [0320] +15:31:09 [ 15] [ 4] [0320] +15:31:09 [ 18] [ 4] [6011] +15:31:09 [ 19] [ 3] [418] +15:31:09 [ 22] [ 3] [021] +15:31:09 [ 32] [ 6] [180893] +15:31:09 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:31:09 [ 37] [ 12] [507908270041] +15:31:09 [ 39] [ 2] [61] +15:31:09 [ 41] [ 8] [0523XYNG] +15:31:09 [ 49] [ 3] [418] +15:31:09 ============================================================================ +15:31:09 Calculate Source COMM Id = 2 +15:31:09 ============================================================================ +15:31:09 + + +waiting on router queue for slot.... +15:31:22 ============================================================================ +15:31:22 Slot Id : <218> +15:31:22 Transaction Type : REQUEST +15:31:22 Received From : +15:31:22 ============================================================================ +15:31:22 FNo. Len. Field Value +15:31:22 ============================================================================ +15:31:22 [ 1] [ 4] [0800] +15:31:22 [ 7] [ 10] [0320083029] +15:31:22 [ 11] [ 6] [157029] +15:31:22 [ 70] [ 3] [301] +15:31:22 ============================================================================ +15:31:22 + + +waiting on router queue for slot.... +15:31:22 Sending to : +15:31:22 ============================================================================ +15:31:22 ============================================================================ +15:31:22 Slot Id : <218> +15:31:22 Transaction Type : RESPONSE +15:31:22 Received From : +15:31:22 ============================================================================ +15:31:22 FNo. Len. Field Value +15:31:22 ============================================================================ +15:31:22 [ 1] [ 4] [0810] +15:31:22 [ 7] [ 10] [0320083029] +15:31:22 [ 11] [ 6] [157029] +15:31:22 [ 39] [ 2] [00] +15:31:22 [ 70] [ 3] [301] +15:31:22 ============================================================================ +15:31:22 Calculate Source COMM Id = 2 +15:31:22 ============================================================================ +15:31:22 + + +waiting on router queue for slot.... +15:31:22 ============================================================================ +15:31:22 Slot Id : <265> +15:31:22 Transaction Type : REQUEST +15:31:22 Received From : +15:31:22 ============================================================================ +15:31:22 FNo. Len. Field Value +15:31:22 ============================================================================ +15:31:22 [ 1] [ 4] [0200] +15:31:22 [ 2] [ 16] [6688990105247207] +15:31:22 [ 3] [ 6] [301000] +15:31:22 [ 7] [ 10] [0320083029] +15:31:22 [ 11] [ 6] [270042] +15:31:22 [ 12] [ 6] [153029] +15:31:22 [ 13] [ 4] [0320] +15:31:22 [ 14] [ 4] [4308] +15:31:22 [ 15] [ 4] [0320] +15:31:22 [ 18] [ 4] [6011] +15:31:22 [ 19] [ 3] [418] +15:31:22 [ 22] [ 3] [021] +15:31:22 [ 25] [ 2] [01] +15:31:22 [ 32] [ 6] [180893] +15:31:22 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:31:22 [ 37] [ 12] [507908270042] +15:31:22 [ 41] [ 8] [0467PSLK] +15:31:22 [ 42] [ 15] [999999 ] +15:31:22 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +15:31:22 [ 49] [ 3] [418] +15:31:22 [ 52] [ 16] [DB545088E707C81B] +15:31:22 ============================================================================ +15:31:22 + + +waiting on router queue for slot.... +15:31:22 Sending to : +15:31:22 ============================================================================ +15:31:22 Sending to : +15:31:22 ============================================================================ +15:31:22 ============================================================================ +15:31:22 Slot Id : <265> +15:31:22 Transaction Type : REQUEST +15:31:22 Received From : +15:31:22 ============================================================================ +15:31:22 FNo. Len. Field Value +15:31:22 ============================================================================ +15:31:22 [ 1] [ 4] [0200] +15:31:22 [ 2] [ 16] [6688990105247207] +15:31:22 [ 3] [ 6] [301000] +15:31:22 [ 7] [ 10] [0320083029] +15:31:22 [ 11] [ 6] [270042] +15:31:22 [ 12] [ 6] [153029] +15:31:22 [ 13] [ 4] [0320] +15:31:22 [ 14] [ 4] [4308] +15:31:22 [ 15] [ 4] [0320] +15:31:22 [ 18] [ 4] [6011] +15:31:22 [ 19] [ 3] [418] +15:31:22 [ 22] [ 3] [021] +15:31:22 [ 25] [ 2] [01] +15:31:22 [ 32] [ 6] [180893] +15:31:22 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:31:22 [ 37] [ 12] [507908270042] +15:31:22 [ 41] [ 8] [0467PSLK] +15:31:22 [ 42] [ 15] [999999 ] +15:31:22 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +15:31:22 [ 49] [ 3] [418] +15:31:22 [ 52] [ 16] [DB545088E707C81B] +15:31:22 ============================================================================ +15:31:22 + + +waiting on router queue for slot.... +15:31:22 Sending to : +15:31:22 ============================================================================ +15:31:22 ============================================================================ +15:31:22 Slot Id : <265> +15:31:22 Transaction Type : REQUEST +15:31:22 Received From : +15:31:22 ============================================================================ +15:31:22 FNo. Len. Field Value +15:31:22 ============================================================================ +15:31:22 [ 1] [ 4] [0200] +15:31:22 [ 2] [ 16] [6688990105247207] +15:31:22 [ 3] [ 6] [301000] +15:31:22 [ 7] [ 10] [0320083029] +15:31:22 [ 11] [ 6] [270042] +15:31:22 [ 12] [ 6] [153029] +15:31:22 [ 13] [ 4] [0320] +15:31:22 [ 14] [ 4] [4308] +15:31:22 [ 15] [ 4] [0320] +15:31:22 [ 18] [ 4] [6011] +15:31:22 [ 19] [ 3] [418] +15:31:22 [ 22] [ 3] [021] +15:31:22 [ 25] [ 2] [01] +15:31:22 [ 32] [ 6] [180893] +15:31:22 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:31:22 [ 37] [ 12] [507908270042] +15:31:22 [ 41] [ 8] [0467PSLK] +15:31:22 [ 42] [ 15] [999999 ] +15:31:22 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +15:31:22 [ 49] [ 3] [418] +15:31:22 [ 52] [ 16] [667459472C5E1498] +15:31:22 ============================================================================ +15:31:22 + + +waiting on router queue for slot.... +15:31:22 Sending to : <0> +15:31:22 ============================================================================ +15:31:22 ============================================================================ +15:31:22 Slot Id : <265> +15:31:22 Transaction Type : RESPONSE +15:31:22 Received From : +15:31:22 ============================================================================ +15:31:22 FNo. Len. Field Value +15:31:22 ============================================================================ +15:31:22 [ 1] [ 4] [0210] +15:31:22 [ 2] [ 16] [6688990105247207] +15:31:22 [ 3] [ 6] [301000] +15:31:22 [ 4] [ 12] [000000000000] +15:31:22 [ 7] [ 10] [0320083029] +15:31:22 [ 11] [ 6] [270042] +15:31:22 [ 12] [ 6] [153029] +15:31:22 [ 13] [ 4] [0320] +15:31:22 [ 15] [ 4] [0320] +15:31:22 [ 18] [ 4] [6011] +15:31:22 [ 19] [ 3] [418] +15:31:22 [ 22] [ 3] [021] +15:31:22 [ 32] [ 6] [180893] +15:31:22 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:31:22 [ 37] [ 12] [507908270042] +15:31:22 [ 39] [ 2] [14] +15:31:22 [ 41] [ 8] [0467PSLK] +15:31:22 [ 49] [ 3] [418] +15:31:22 ============================================================================ +15:31:22 Sending to : +15:31:22 ============================================================================ +15:31:22 + + +waiting on router queue for slot.... +15:31:22 ============================================================================ +15:31:22 Slot Id : <274> +15:31:22 Transaction Type : REQUEST +15:31:22 Received From : +15:31:22 ============================================================================ +15:31:22 FNo. Len. Field Value +15:31:22 ============================================================================ +15:31:22 [ 1] [ 4] [0800] +15:31:22 [ 7] [ 10] [0320082912] +15:31:22 [ 11] [ 6] [063645] +15:31:22 [ 37] [ 12] [57915063645] +15:31:22 [ 70] [ 3] [301] +15:31:22 ============================================================================ +15:31:22 + + +waiting on router queue for slot.... +15:31:22 Sending to : +15:31:22 ============================================================================ +15:31:22 ============================================================================ +15:31:22 Slot Id : <274> +15:31:22 Transaction Type : RESPONSE +15:31:22 Received From : +15:31:22 ============================================================================ +15:31:22 FNo. Len. Field Value +15:31:22 ============================================================================ +15:31:22 [ 1] [ 4] [0810] +15:31:22 [ 7] [ 10] [0320082912] +15:31:22 [ 11] [ 6] [063645] +15:31:22 [ 37] [ 12] [579150636450] +15:31:22 [ 39] [ 2] [00] +15:31:22 [ 70] [ 3] [810] +15:31:22 ============================================================================ +15:31:22 Calculate Source COMM Id = 4 +15:31:22 ============================================================================ +15:31:22 + + +waiting on router queue for slot.... +15:31:23 ============================================================================ +15:31:23 Slot Id : <265> +15:31:23 Transaction Type : RESPONSE +15:31:23 Received From : +15:31:23 ============================================================================ +15:31:23 FNo. Len. Field Value +15:31:23 ============================================================================ +15:31:23 [ 1] [ 4] [0210] +15:31:23 [ 2] [ 16] [6688990105247207] +15:31:23 [ 3] [ 6] [301000] +15:31:23 [ 4] [ 12] [000000000000] +15:31:23 [ 7] [ 10] [0320083029] +15:31:23 [ 11] [ 6] [270042] +15:31:23 [ 12] [ 6] [153029] +15:31:23 [ 13] [ 4] [0320] +15:31:23 [ 15] [ 4] [0320] +15:31:23 [ 18] [ 4] [6011] +15:31:23 [ 19] [ 3] [418] +15:31:23 [ 22] [ 3] [021] +15:31:23 [ 32] [ 6] [180893] +15:31:23 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:31:23 [ 37] [ 12] [507908270042] +15:31:23 [ 39] [ 2] [14] +15:31:23 [ 41] [ 8] [0467PSLK] +15:31:23 [ 49] [ 3] [418] +15:31:23 ============================================================================ +15:31:23 Calculate Source COMM Id = 2 +15:31:23 ============================================================================ +15:31:23 + + +waiting on router queue for slot.... +15:31:32 ============================================================================ +15:31:32 Slot Id : <247> +15:31:32 Transaction Type : REQUEST +15:31:32 Received From : +15:31:32 ============================================================================ +15:31:32 FNo. Len. Field Value +15:31:32 ============================================================================ +15:31:32 [ 1] [ 4] [0800] +15:31:32 [ 7] [ 10] [0320224320] +15:31:32 [ 11] [ 6] [154320] +15:31:32 [ 37] [ 12] [57915154320] +15:31:32 [ 70] [ 3] [301] +15:31:32 ============================================================================ +15:31:32 + + +waiting on router queue for slot.... +15:31:32 Sending to : +15:31:32 ============================================================================ +15:31:32 ============================================================================ +15:31:32 Slot Id : <247> +15:31:32 Transaction Type : RESPONSE +15:31:32 Received From : +15:31:32 ============================================================================ +15:31:32 FNo. Len. Field Value +15:31:32 ============================================================================ +15:31:32 [ 1] [ 4] [0810] +15:31:32 [ 7] [ 10] [0320224320] +15:31:32 [ 11] [ 6] [154320] +15:31:32 [ 37] [ 12] [579151543200] +15:31:32 [ 39] [ 2] [00] +15:31:32 [ 70] [ 3] [810] +15:31:32 ============================================================================ +15:31:32 Calculate Source COMM Id = 6 +15:31:32 ============================================================================ +15:31:32 + + +waiting on router queue for slot.... +15:31:38 ============================================================================ +15:31:38 Slot Id : <279> +15:31:38 Transaction Type : REQUEST +15:31:38 Received From : +15:31:38 ============================================================================ +15:31:38 FNo. Len. Field Value +15:31:38 ============================================================================ +15:31:38 [ 1] [ 4] [0800] +15:31:38 [ 7] [ 10] [0320083045] +15:31:38 [ 11] [ 6] [157030] +15:31:38 [ 70] [ 3] [301] +15:31:38 ============================================================================ +15:31:38 + + +waiting on router queue for slot.... +15:31:38 Sending to : +15:31:38 ============================================================================ +15:31:38 ============================================================================ +15:31:38 Slot Id : <279> +15:31:38 Transaction Type : RESPONSE +15:31:38 Received From : +15:31:38 ============================================================================ +15:31:38 FNo. Len. Field Value +15:31:38 ============================================================================ +15:31:38 [ 1] [ 4] [0810] +15:31:38 [ 7] [ 10] [0320083045] +15:31:38 [ 11] [ 6] [157030] +15:31:38 [ 39] [ 2] [00] +15:31:38 [ 70] [ 3] [301] +15:31:38 ============================================================================ +15:31:38 Calculate Source COMM Id = 2 +15:31:38 ============================================================================ +15:31:38 + + +waiting on router queue for slot.... +15:31:41 ============================================================================ +15:31:41 Slot Id : <264> +15:31:41 Transaction Type : REQUEST +15:31:41 Received From : +15:31:41 ============================================================================ +15:31:41 FNo. Len. Field Value +15:31:41 ============================================================================ +15:31:41 [ 1] [ 4] [0800] +15:31:41 [ 2] [ 5] [02531] +15:31:41 [ 3] [ 6] [579158] +15:31:41 [ 7] [ 10] [0320083141] +15:31:41 [ 11] [ 6] [807313] +15:31:41 [ 15] [ 10] [0320083141] +15:31:41 [ 37] [ 11] [57915807313] +15:31:41 [ 70] [ 3] [001] +15:31:41 ============================================================================ +15:31:41 + + +waiting on router queue for slot.... +15:31:41 ============================================================================ +15:31:41 Slot Id : <264> +15:31:41 Transaction Type : RESPONSE +15:31:41 Received From : +15:31:41 ============================================================================ +15:31:41 FNo. Len. Field Value +15:31:41 ============================================================================ +15:31:41 [ 1] [ 4] [0810] +15:31:41 [ 7] [ 10] [0320083141] +15:31:41 [ 11] [ 6] [807313] +15:31:41 [ 15] [ 4] [0320] +15:31:41 [ 37] [ 12] [57915807313] +15:31:41 [ 39] [ 2] [00] +15:31:41 [ 70] [ 3] [001] +15:31:41 ============================================================================ +15:31:41 Sending to : +15:31:41 ============================================================================ +15:31:41 + + +waiting on router queue for slot.... +15:31:54 ============================================================================ +15:31:54 Slot Id : <273> +15:31:54 Transaction Type : REQUEST +15:31:54 Received From : +15:31:54 ============================================================================ +15:31:54 FNo. Len. Field Value +15:31:54 ============================================================================ +15:31:54 [ 1] [ 4] [0800] +15:31:54 [ 7] [ 10] [0320083101] +15:31:54 [ 11] [ 6] [157031] +15:31:54 [ 70] [ 3] [301] +15:31:54 ============================================================================ +15:31:54 + + +waiting on router queue for slot.... +15:31:54 Sending to : +15:31:54 ============================================================================ +15:31:54 ============================================================================ +15:31:54 Slot Id : <273> +15:31:54 Transaction Type : RESPONSE +15:31:54 Received From : +15:31:54 ============================================================================ +15:31:54 FNo. Len. Field Value +15:31:54 ============================================================================ +15:31:54 [ 1] [ 4] [0810] +15:31:54 [ 7] [ 10] [0320083101] +15:31:54 [ 11] [ 6] [157031] +15:31:54 [ 39] [ 2] [00] +15:31:54 [ 70] [ 3] [301] +15:31:54 ============================================================================ +15:31:54 Calculate Source COMM Id = 2 +15:31:54 ============================================================================ +15:31:54 + + +waiting on router queue for slot.... +15:31:56 ============================================================================ +15:31:56 Slot Id : <231> +15:31:56 Transaction Type : REQUEST +15:31:56 Received From : +15:31:56 ============================================================================ +15:31:56 FNo. Len. Field Value +15:31:56 ============================================================================ +15:31:56 [ 1] [ 4] [0200] +15:31:56 [ 2] [ 16] [6688990602317701] +15:31:56 [ 3] [ 6] [010000] +15:31:56 [ 4] [ 12] [000100000000] +15:31:56 [ 7] [ 10] [0320083102] +15:31:56 [ 11] [ 6] [270045] +15:31:56 [ 12] [ 6] [153102] +15:31:56 [ 13] [ 4] [0320] +15:31:56 [ 14] [ 4] [4302] +15:31:56 [ 15] [ 4] [0320] +15:31:56 [ 18] [ 4] [6011] +15:31:56 [ 19] [ 3] [418] +15:31:56 [ 22] [ 3] [021] +15:31:56 [ 25] [ 2] [01] +15:31:56 [ 28] [ 9] [D00002000] +15:31:56 [ 32] [ 6] [180893] +15:31:56 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:31:56 [ 37] [ 12] [507908270045] +15:31:56 [ 41] [ 8] [0523XYNG] +15:31:56 [ 42] [ 15] [999999 ] +15:31:56 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +15:31:56 [ 49] [ 3] [418] +15:31:56 [ 52] [ 16] [6EE953B6674EB1E0] +15:31:56 ============================================================================ +15:31:56 + + +waiting on router queue for slot.... +15:31:56 Sending to : +15:31:56 ============================================================================ +15:31:56 Sending to : +15:31:56 ============================================================================ +15:31:57 ============================================================================ +15:31:57 Slot Id : <231> +15:31:57 Transaction Type : REQUEST +15:31:57 Received From : +15:31:57 ============================================================================ +15:31:57 FNo. Len. Field Value +15:31:57 ============================================================================ +15:31:57 [ 1] [ 4] [0200] +15:31:57 [ 2] [ 16] [6688990602317701] +15:31:57 [ 3] [ 6] [010000] +15:31:57 [ 4] [ 12] [000100000000] +15:31:57 [ 7] [ 10] [0320083102] +15:31:57 [ 11] [ 6] [270045] +15:31:57 [ 12] [ 6] [153102] +15:31:57 [ 13] [ 4] [0320] +15:31:57 [ 14] [ 4] [4302] +15:31:57 [ 15] [ 4] [0320] +15:31:57 [ 18] [ 4] [6011] +15:31:57 [ 19] [ 3] [418] +15:31:57 [ 22] [ 3] [021] +15:31:57 [ 25] [ 2] [01] +15:31:57 [ 28] [ 9] [D00002000] +15:31:57 [ 32] [ 6] [180893] +15:31:57 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:31:57 [ 37] [ 12] [507908270045] +15:31:57 [ 41] [ 8] [0523XYNG] +15:31:57 [ 42] [ 15] [999999 ] +15:31:57 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +15:31:57 [ 49] [ 3] [418] +15:31:57 [ 52] [ 16] [6EE953B6674EB1E0] +15:31:57 ============================================================================ +15:31:57 + + +waiting on router queue for slot.... +15:31:57 Sending to : +15:31:57 ============================================================================ +15:31:57 ============================================================================ +15:31:57 Slot Id : <231> +15:31:57 Transaction Type : REQUEST +15:31:57 Received From : +15:31:57 ============================================================================ +15:31:57 FNo. Len. Field Value +15:31:57 ============================================================================ +15:31:57 [ 1] [ 4] [0200] +15:31:57 [ 2] [ 16] [6688990602317701] +15:31:57 [ 3] [ 6] [010000] +15:31:57 [ 4] [ 12] [000100000000] +15:31:57 [ 7] [ 10] [0320083102] +15:31:57 [ 11] [ 6] [270045] +15:31:57 [ 12] [ 6] [153102] +15:31:57 [ 13] [ 4] [0320] +15:31:57 [ 14] [ 4] [4302] +15:31:57 [ 15] [ 4] [0320] +15:31:57 [ 18] [ 4] [6011] +15:31:57 [ 19] [ 3] [418] +15:31:57 [ 22] [ 3] [021] +15:31:57 [ 25] [ 2] [01] +15:31:57 [ 28] [ 9] [D00002000] +15:31:57 [ 32] [ 6] [180893] +15:31:57 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:31:57 [ 37] [ 12] [507908270045] +15:31:57 [ 41] [ 8] [0523XYNG] +15:31:57 [ 42] [ 15] [999999 ] +15:31:57 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +15:31:57 [ 49] [ 3] [418] +15:31:57 [ 52] [ 16] [7025A958120D47C9] +15:31:57 ============================================================================ +15:31:57 + + +waiting on router queue for slot.... +15:31:57 Sending to : <0> +15:31:57 ============================================================================ +15:31:57 ============================================================================ +15:31:57 Slot Id : <231> +15:31:57 Transaction Type : RESPONSE +15:31:57 Received From : +15:31:57 ============================================================================ +15:31:57 FNo. Len. Field Value +15:31:57 ============================================================================ +15:31:57 [ 1] [ 4] [0210] +15:31:57 [ 2] [ 16] [6688990602317701] +15:31:57 [ 3] [ 6] [010000] +15:31:57 [ 4] [ 12] [000100000000] +15:31:57 [ 7] [ 10] [0320083102] +15:31:57 [ 11] [ 6] [270045] +15:31:57 [ 12] [ 6] [153102] +15:31:57 [ 13] [ 4] [0320] +15:31:57 [ 15] [ 4] [0320] +15:31:57 [ 18] [ 4] [6011] +15:31:57 [ 19] [ 3] [418] +15:31:57 [ 22] [ 3] [021] +15:31:57 [ 32] [ 6] [180893] +15:31:57 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:31:57 [ 37] [ 12] [507908270045] +15:31:57 [ 39] [ 2] [14] +15:31:57 [ 41] [ 8] [0523XYNG] +15:31:57 [ 49] [ 3] [418] +15:31:57 ============================================================================ +15:31:57 Sending to : +15:31:57 ============================================================================ +15:31:57 + + +waiting on router queue for slot.... +15:31:58 ============================================================================ +15:31:58 Slot Id : <231> +15:31:58 Transaction Type : RESPONSE +15:31:58 Received From : +15:31:58 ============================================================================ +15:31:58 FNo. Len. Field Value +15:31:58 ============================================================================ +15:31:58 [ 1] [ 4] [0210] +15:31:58 [ 2] [ 16] [6688990602317701] +15:31:58 [ 3] [ 6] [010000] +15:31:58 [ 4] [ 12] [000100000000] +15:31:58 [ 7] [ 10] [0320083102] +15:31:58 [ 11] [ 6] [270045] +15:31:58 [ 12] [ 6] [153102] +15:31:58 [ 13] [ 4] [0320] +15:31:58 [ 15] [ 4] [0320] +15:31:58 [ 18] [ 4] [6011] +15:31:58 [ 19] [ 3] [418] +15:31:58 [ 22] [ 3] [021] +15:31:58 [ 32] [ 6] [180893] +15:31:58 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:31:58 [ 37] [ 12] [507908270045] +15:31:58 [ 39] [ 2] [14] +15:31:58 [ 41] [ 8] [0523XYNG] +15:31:58 [ 49] [ 3] [418] +15:31:58 ============================================================================ +15:31:58 Calculate Source COMM Id = 2 +15:31:58 ============================================================================ +15:31:58 + + +waiting on router queue for slot.... +15:31:59 ============================================================================ +15:31:59 Slot Id : <220> +15:31:59 Transaction Type : REQUEST +15:31:59 Received From : +15:31:59 ============================================================================ +15:31:59 FNo. Len. Field Value +15:31:59 ============================================================================ +15:31:59 [ 1] [ 4] [0200] +15:31:59 [ 2] [ 16] [6213544001913794] +15:31:59 [ 3] [ 6] [010000] +15:31:59 [ 4] [ 12] [000100000000] +15:31:59 [ 7] [ 10] [0320083105] +15:31:59 [ 11] [ 6] [270046] +15:31:59 [ 12] [ 6] [153105] +15:31:59 [ 13] [ 4] [0320] +15:31:59 [ 14] [ 4] [4912] +15:31:59 [ 15] [ 4] [0320] +15:31:59 [ 18] [ 4] [6011] +15:31:59 [ 19] [ 3] [418] +15:31:59 [ 22] [ 3] [021] +15:31:59 [ 25] [ 2] [01] +15:31:59 [ 28] [ 9] [D00002000] +15:31:59 [ 32] [ 6] [180893] +15:31:59 [ 35] [ 32] [6213544001913794=491212011379027] +15:31:59 [ 37] [ 12] [507908270046] +15:31:59 [ 41] [ 8] [0106NAXA] +15:31:59 [ 42] [ 15] [999999 ] +15:31:59 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +15:31:59 [ 49] [ 3] [418] +15:31:59 [ 52] [ 16] [02DC735C8FC2853F] +15:31:59 ============================================================================ +15:31:59 + + +waiting on router queue for slot.... +15:31:59 Sending to : +15:31:59 ============================================================================ +15:31:59 Sending to : +15:31:59 ============================================================================ +15:31:59 ============================================================================ +15:31:59 Slot Id : <220> +15:31:59 Transaction Type : REQUEST +15:31:59 Received From : +15:31:59 ============================================================================ +15:31:59 FNo. Len. Field Value +15:31:59 ============================================================================ +15:31:59 [ 1] [ 4] [0200] +15:31:59 [ 2] [ 16] [6213544001913794] +15:31:59 [ 3] [ 6] [010000] +15:31:59 [ 4] [ 12] [000100000000] +15:31:59 [ 7] [ 10] [0320083105] +15:31:59 [ 11] [ 6] [270046] +15:31:59 [ 12] [ 6] [153105] +15:31:59 [ 13] [ 4] [0320] +15:31:59 [ 14] [ 4] [4912] +15:31:59 [ 15] [ 4] [0320] +15:31:59 [ 18] [ 4] [6011] +15:31:59 [ 19] [ 3] [418] +15:31:59 [ 22] [ 3] [021] +15:31:59 [ 25] [ 2] [01] +15:31:59 [ 28] [ 9] [D00002000] +15:31:59 [ 32] [ 6] [180893] +15:31:59 [ 35] [ 32] [6213544001913794=491212011379027] +15:31:59 [ 37] [ 12] [507908270046] +15:31:59 [ 41] [ 8] [0106NAXA] +15:31:59 [ 42] [ 15] [999999 ] +15:31:59 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +15:31:59 [ 49] [ 3] [418] +15:31:59 [ 52] [ 16] [02DC735C8FC2853F] +15:31:59 ============================================================================ +15:31:59 + + +waiting on router queue for slot.... +15:31:59 Sending to : +15:31:59 ============================================================================ +15:31:59 ============================================================================ +15:31:59 Slot Id : <220> +15:31:59 Transaction Type : REQUEST +15:31:59 Received From : +15:31:59 ============================================================================ +15:31:59 FNo. Len. Field Value +15:31:59 ============================================================================ +15:31:59 [ 1] [ 4] [0200] +15:31:59 [ 2] [ 16] [6213544001913794] +15:31:59 [ 3] [ 6] [010000] +15:31:59 [ 4] [ 12] [000100000000] +15:31:59 [ 7] [ 10] [0320083105] +15:31:59 [ 11] [ 6] [270046] +15:31:59 [ 12] [ 6] [153105] +15:31:59 [ 13] [ 4] [0320] +15:31:59 [ 14] [ 4] [4912] +15:31:59 [ 15] [ 4] [0320] +15:31:59 [ 18] [ 4] [6011] +15:31:59 [ 19] [ 3] [418] +15:31:59 [ 22] [ 3] [021] +15:31:59 [ 25] [ 2] [01] +15:31:59 [ 28] [ 9] [D00002000] +15:31:59 [ 32] [ 6] [180893] +15:31:59 [ 35] [ 32] [6213544001913794=491212011379027] +15:31:59 [ 37] [ 12] [507908270046] +15:31:59 [ 41] [ 8] [0106NAXA] +15:31:59 [ 42] [ 15] [999999 ] +15:31:59 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +15:31:59 [ 49] [ 3] [418] +15:31:59 [ 52] [ 16] [A760CF33FE5A63A4] +15:31:59 ============================================================================ +15:31:59 + + +waiting on router queue for slot.... +15:31:59 Sending to : <0> +15:31:59 ============================================================================ +15:31:59 ============================================================================ +15:31:59 Slot Id : <220> +15:31:59 Transaction Type : RESPONSE +15:31:59 Received From : +15:31:59 ============================================================================ +15:31:59 FNo. Len. Field Value +15:31:59 ============================================================================ +15:31:59 [ 1] [ 4] [0210] +15:31:59 [ 2] [ 16] [6213544001913794] +15:31:59 [ 3] [ 6] [010000] +15:31:59 [ 4] [ 12] [000100000000] +15:31:59 [ 7] [ 10] [0320083105] +15:31:59 [ 11] [ 6] [270046] +15:31:59 [ 12] [ 6] [153105] +15:31:59 [ 13] [ 4] [0320] +15:31:59 [ 15] [ 4] [0320] +15:31:59 [ 18] [ 4] [6011] +15:31:59 [ 19] [ 3] [418] +15:31:59 [ 22] [ 3] [021] +15:31:59 [ 32] [ 6] [180893] +15:31:59 [ 35] [ 32] [6213544001913794=491212011379027] +15:31:59 [ 37] [ 12] [507908270046] +15:31:59 [ 38] [ 6] [153155] +15:31:59 [ 39] [ 2] [55] +15:31:59 [ 41] [ 8] [0106NAXA] +15:31:59 [ 49] [ 3] [418] +15:31:59 ============================================================================ +15:31:59 Sending to : +15:31:59 ============================================================================ +15:31:59 + + +waiting on router queue for slot.... +15:32:00 ============================================================================ +15:32:00 Slot Id : <220> +15:32:00 Transaction Type : RESPONSE +15:32:00 Received From : +15:32:00 ============================================================================ +15:32:00 FNo. Len. Field Value +15:32:00 ============================================================================ +15:32:00 [ 1] [ 4] [0210] +15:32:00 [ 2] [ 16] [6213544001913794] +15:32:00 [ 3] [ 6] [010000] +15:32:00 [ 4] [ 12] [000100000000] +15:32:00 [ 7] [ 10] [0320083105] +15:32:00 [ 11] [ 6] [270046] +15:32:00 [ 12] [ 6] [153105] +15:32:00 [ 13] [ 4] [0320] +15:32:00 [ 15] [ 4] [0320] +15:32:00 [ 18] [ 4] [6011] +15:32:00 [ 19] [ 3] [418] +15:32:00 [ 22] [ 3] [021] +15:32:00 [ 32] [ 6] [180893] +15:32:00 [ 35] [ 32] [6213544001913794=491212011379027] +15:32:00 [ 37] [ 12] [507908270046] +15:32:00 [ 38] [ 6] [153155] +15:32:00 [ 39] [ 2] [55] +15:32:00 [ 41] [ 8] [0106NAXA] +15:32:00 [ 49] [ 3] [418] +15:32:00 ============================================================================ +15:32:00 Calculate Source COMM Id = 2 +15:32:00 ============================================================================ +15:32:00 + + +waiting on router queue for slot.... +15:32:09 ============================================================================ +15:32:09 Slot Id : <239> +15:32:09 Transaction Type : REQUEST +15:32:09 Received From : +15:32:09 ============================================================================ +15:32:09 FNo. Len. Field Value +15:32:09 ============================================================================ +15:32:09 [ 1] [ 4] [0200] +15:32:09 [ 2] [ 16] [1808930700004609] +15:32:09 [ 3] [ 6] [011000] +15:32:09 [ 4] [ 12] [000020000000] +15:32:09 [ 7] [ 10] [0320153204] +15:32:09 [ 11] [ 6] [784971] +15:32:09 [ 12] [ 6] [153204] +15:32:09 [ 13] [ 4] [0320] +15:32:09 [ 15] [ 4] [0320] +15:32:09 [ 18] [ 4] [6011] +15:32:09 [ 22] [ 3] [900] +15:32:09 [ 25] [ 2] [02] +15:32:09 [ 28] [ 9] [D00002000] +15:32:09 [ 32] [ 6] [621354] +15:32:09 [ 35] [ 27] [1808930700004609=1803500000] +15:32:09 [ 37] [ 12] [507903386131] +15:32:09 [ 41] [ 8] [13001800] +15:32:09 [ 42] [ 15] [NATIVE ] +15:32:09 [ 43] [ 40] [Phonesavanh Unit Phonesavanh LAO] +15:32:09 [ 49] [ 3] [418] +15:32:09 [ 52] [ 16] [52AFBCCE7716D24E] +15:32:09 ============================================================================ +15:32:09 + + +waiting on router queue for slot.... +15:32:09 Sending to : +15:32:09 ============================================================================ +15:32:09 Sending to : +15:32:09 ============================================================================ +15:32:10 ============================================================================ +15:32:10 Slot Id : <239> +15:32:10 Transaction Type : REQUEST +15:32:10 Received From : +15:32:10 ============================================================================ +15:32:10 FNo. Len. Field Value +15:32:10 ============================================================================ +15:32:10 [ 1] [ 4] [0200] +15:32:10 [ 2] [ 16] [1808930700004609] +15:32:10 [ 3] [ 6] [011000] +15:32:10 [ 4] [ 12] [000020000000] +15:32:10 [ 7] [ 10] [0320153204] +15:32:10 [ 11] [ 6] [784971] +15:32:10 [ 12] [ 6] [153204] +15:32:10 [ 13] [ 4] [0320] +15:32:10 [ 15] [ 4] [0320] +15:32:10 [ 18] [ 4] [6011] +15:32:10 [ 22] [ 3] [900] +15:32:10 [ 25] [ 2] [02] +15:32:10 [ 28] [ 9] [D00002000] +15:32:10 [ 32] [ 6] [621354] +15:32:10 [ 35] [ 27] [1808930700004609=1803500000] +15:32:10 [ 37] [ 12] [507903386131] +15:32:10 [ 41] [ 8] [13001800] +15:32:10 [ 42] [ 15] [NATIVE ] +15:32:10 [ 43] [ 40] [Phonesavanh Unit Phonesavanh LAO] +15:32:10 [ 49] [ 3] [418] +15:32:10 [ 52] [ 16] [52AFBCCE7716D24E] +15:32:10 ============================================================================ +15:32:10 + + +waiting on router queue for slot.... +15:32:10 Sending to : +15:32:10 ============================================================================ +15:32:10 ============================================================================ +15:32:10 Slot Id : <239> +15:32:10 Transaction Type : REQUEST +15:32:10 Received From : +15:32:10 ============================================================================ +15:32:10 FNo. Len. Field Value +15:32:10 ============================================================================ +15:32:10 [ 1] [ 4] [0200] +15:32:10 [ 2] [ 16] [1808930700004609] +15:32:10 [ 3] [ 6] [011000] +15:32:10 [ 4] [ 12] [000020000000] +15:32:10 [ 7] [ 10] [0320153204] +15:32:10 [ 11] [ 6] [784971] +15:32:10 [ 12] [ 6] [153204] +15:32:10 [ 13] [ 4] [0320] +15:32:10 [ 15] [ 4] [0320] +15:32:10 [ 18] [ 4] [6011] +15:32:10 [ 22] [ 3] [900] +15:32:10 [ 25] [ 2] [02] +15:32:10 [ 28] [ 9] [D00002000] +15:32:10 [ 32] [ 6] [621354] +15:32:10 [ 35] [ 27] [1808930700004609=1803500000] +15:32:10 [ 37] [ 12] [507903386131] +15:32:10 [ 41] [ 8] [13001800] +15:32:10 [ 42] [ 15] [NATIVE ] +15:32:10 [ 43] [ 40] [Phonesavanh Unit Phonesavanh LAO] +15:32:10 [ 49] [ 3] [418] +15:32:10 [ 52] [ 16] [E06EDDE0774615DB] +15:32:10 ============================================================================ +15:32:10 + + +waiting on router queue for slot.... +15:32:10 Sending to : <2> +15:32:10 ============================================================================ +15:32:12 ============================================================================ +15:32:12 Slot Id : <239> +15:32:12 Transaction Type : RESPONSE +15:32:12 Received From : +15:32:12 ============================================================================ +15:32:12 FNo. Len. Field Value +15:32:12 ============================================================================ +15:32:12 [ 1] [ 4] [0210] +15:32:12 [ 2] [ 16] [1808930700004609] +15:32:12 [ 3] [ 6] [011000] +15:32:12 [ 4] [ 12] [000020000000] +15:32:12 [ 6] [ 12] [000020000000] +15:32:12 [ 7] [ 10] [0320153204] +15:32:12 [ 11] [ 6] [784971] +15:32:12 [ 12] [ 6] [153204] +15:32:12 [ 13] [ 4] [0320] +15:32:12 [ 18] [ 4] [6011] +15:32:12 [ 19] [ 3] [418] +15:32:12 [ 22] [ 3] [021] +15:32:12 [ 32] [ 6] [621354] +15:32:12 [ 35] [ 27] [1808930700004609=1803500000] +15:32:12 [ 37] [ 12] [507903386131] +15:32:12 [ 38] [ 6] [784971] +15:32:12 [ 39] [ 2] [00] +15:32:12 [ 41] [ 8] [13001800] +15:32:12 [ 49] [ 3] [418] +15:32:12 [ 52] [ 16] [E06EDDE0774615DB] +15:32:12 [ 54] [ 20] [1001418C000335037700] +15:32:12 ============================================================================ +15:32:12 Sending to : +15:32:12 ============================================================================ +15:32:12 + + +waiting on router queue for slot.... +15:32:13 ============================================================================ +15:32:13 Slot Id : <239> +15:32:13 Transaction Type : RESPONSE +15:32:13 Received From : +15:32:13 ============================================================================ +15:32:13 FNo. Len. Field Value +15:32:13 ============================================================================ +15:32:13 [ 1] [ 4] [0210] +15:32:13 [ 2] [ 16] [1808930700004609] +15:32:13 [ 3] [ 6] [011000] +15:32:13 [ 4] [ 12] [000020000000] +15:32:13 [ 6] [ 12] [000020000000] +15:32:13 [ 7] [ 10] [0320153204] +15:32:13 [ 11] [ 6] [784971] +15:32:13 [ 12] [ 6] [153204] +15:32:13 [ 13] [ 4] [0320] +15:32:13 [ 18] [ 4] [6011] +15:32:13 [ 19] [ 3] [418] +15:32:13 [ 22] [ 3] [021] +15:32:13 [ 32] [ 6] [621354] +15:32:13 [ 35] [ 27] [1808930700004609=1803500000] +15:32:13 [ 37] [ 12] [507903386131] +15:32:13 [ 38] [ 6] [784971] +15:32:13 [ 39] [ 2] [00] +15:32:13 [ 41] [ 8] [13001800] +15:32:13 [ 49] [ 3] [418] +15:32:13 [ 52] [ 16] [E06EDDE0774615DB] +15:32:13 [ 54] [ 20] [1001418C000335037700] +15:32:13 ============================================================================ +15:32:13 Calculate Source COMM Id = 0 +15:32:13 ============================================================================ +15:32:13 + + +waiting on router queue for slot.... +15:32:19 ============================================================================ +15:32:19 Slot Id : <254> +15:32:19 Transaction Type : REQUEST +15:32:19 Received From : +15:32:19 ============================================================================ +15:32:19 FNo. Len. Field Value +15:32:19 ============================================================================ +15:32:19 [ 1] [ 4] [0200] +15:32:19 [ 2] [ 16] [6688990105247207] +15:32:19 [ 3] [ 6] [010000] +15:32:19 [ 4] [ 12] [000200000000] +15:32:19 [ 7] [ 10] [0320083126] +15:32:19 [ 11] [ 6] [270048] +15:32:19 [ 12] [ 6] [153126] +15:32:19 [ 13] [ 4] [0320] +15:32:19 [ 14] [ 4] [4308] +15:32:19 [ 15] [ 4] [0320] +15:32:19 [ 18] [ 4] [6011] +15:32:19 [ 19] [ 3] [418] +15:32:19 [ 22] [ 3] [021] +15:32:19 [ 25] [ 2] [01] +15:32:19 [ 28] [ 9] [D00002000] +15:32:19 [ 32] [ 6] [180893] +15:32:19 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:32:19 [ 37] [ 12] [507908270048] +15:32:19 [ 41] [ 8] [0467PSLK] +15:32:19 [ 42] [ 15] [999999 ] +15:32:19 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +15:32:19 [ 49] [ 3] [418] +15:32:19 [ 52] [ 16] [DB545088E707C81B] +15:32:19 ============================================================================ +15:32:19 + + +waiting on router queue for slot.... +15:32:19 Sending to : +15:32:19 ============================================================================ +15:32:19 Sending to : +15:32:19 ============================================================================ +15:32:20 ============================================================================ +15:32:20 Slot Id : <254> +15:32:20 Transaction Type : REQUEST +15:32:20 Received From : +15:32:20 ============================================================================ +15:32:20 FNo. Len. Field Value +15:32:20 ============================================================================ +15:32:20 [ 1] [ 4] [0200] +15:32:20 [ 2] [ 16] [6688990105247207] +15:32:20 [ 3] [ 6] [010000] +15:32:20 [ 4] [ 12] [000200000000] +15:32:20 [ 7] [ 10] [0320083126] +15:32:20 [ 11] [ 6] [270048] +15:32:20 [ 12] [ 6] [153126] +15:32:20 [ 13] [ 4] [0320] +15:32:20 [ 14] [ 4] [4308] +15:32:20 [ 15] [ 4] [0320] +15:32:20 [ 18] [ 4] [6011] +15:32:20 [ 19] [ 3] [418] +15:32:20 [ 22] [ 3] [021] +15:32:20 [ 25] [ 2] [01] +15:32:20 [ 28] [ 9] [D00002000] +15:32:20 [ 32] [ 6] [180893] +15:32:20 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:32:20 [ 37] [ 12] [507908270048] +15:32:20 [ 41] [ 8] [0467PSLK] +15:32:20 [ 42] [ 15] [999999 ] +15:32:20 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +15:32:20 [ 49] [ 3] [418] +15:32:20 [ 52] [ 16] [DB545088E707C81B] +15:32:20 ============================================================================ +15:32:20 + + +waiting on router queue for slot.... +15:32:20 Sending to : +15:32:20 ============================================================================ +15:32:20 ============================================================================ +15:32:20 Slot Id : <254> +15:32:20 Transaction Type : REQUEST +15:32:20 Received From : +15:32:20 ============================================================================ +15:32:20 FNo. Len. Field Value +15:32:20 ============================================================================ +15:32:20 [ 1] [ 4] [0200] +15:32:20 [ 2] [ 16] [6688990105247207] +15:32:20 [ 3] [ 6] [010000] +15:32:20 [ 4] [ 12] [000200000000] +15:32:20 [ 7] [ 10] [0320083126] +15:32:20 [ 11] [ 6] [270048] +15:32:20 [ 12] [ 6] [153126] +15:32:20 [ 13] [ 4] [0320] +15:32:20 [ 14] [ 4] [4308] +15:32:20 [ 15] [ 4] [0320] +15:32:20 [ 18] [ 4] [6011] +15:32:20 [ 19] [ 3] [418] +15:32:20 [ 22] [ 3] [021] +15:32:20 [ 25] [ 2] [01] +15:32:20 [ 28] [ 9] [D00002000] +15:32:20 [ 32] [ 6] [180893] +15:32:20 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:32:20 [ 37] [ 12] [507908270048] +15:32:20 [ 41] [ 8] [0467PSLK] +15:32:20 [ 42] [ 15] [999999 ] +15:32:20 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +15:32:20 [ 49] [ 3] [418] +15:32:20 [ 52] [ 16] [667459472C5E1498] +15:32:20 ============================================================================ +15:32:20 + + +waiting on router queue for slot.... +15:32:20 Sending to : <0> +15:32:20 ============================================================================ +15:32:20 ============================================================================ +15:32:20 Slot Id : <254> +15:32:20 Transaction Type : RESPONSE +15:32:20 Received From : +15:32:20 ============================================================================ +15:32:20 FNo. Len. Field Value +15:32:20 ============================================================================ +15:32:20 [ 1] [ 4] [0210] +15:32:20 [ 2] [ 16] [6688990105247207] +15:32:20 [ 3] [ 6] [010000] +15:32:20 [ 4] [ 12] [000200000000] +15:32:20 [ 7] [ 10] [0320083126] +15:32:20 [ 11] [ 6] [270048] +15:32:20 [ 12] [ 6] [153126] +15:32:20 [ 13] [ 4] [0320] +15:32:20 [ 15] [ 4] [0320] +15:32:20 [ 18] [ 4] [6011] +15:32:20 [ 19] [ 3] [418] +15:32:20 [ 22] [ 3] [021] +15:32:20 [ 32] [ 6] [180893] +15:32:20 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:32:20 [ 37] [ 12] [507908270048] +15:32:20 [ 39] [ 2] [61] +15:32:20 [ 41] [ 8] [0467PSLK] +15:32:20 [ 49] [ 3] [418] +15:32:20 ============================================================================ +15:32:20 Sending to : +15:32:20 ============================================================================ +15:32:20 + + +waiting on router queue for slot.... +15:32:20 ============================================================================ +15:32:20 Slot Id : <272> +15:32:20 Transaction Type : REQUEST +15:32:20 Received From : +15:32:20 ============================================================================ +15:32:20 FNo. Len. Field Value +15:32:20 ============================================================================ +15:32:20 [ 1] [ 4] [0200] +15:32:20 [ 2] [ 16] [6213545000204853] +15:32:20 [ 3] [ 6] [010000] +15:32:20 [ 4] [ 12] [000005000000] +15:32:20 [ 7] [ 10] [0320153010] +15:32:20 [ 11] [ 6] [950154] +15:32:20 [ 12] [ 6] [153010] +15:32:20 [ 13] [ 4] [0320] +15:32:20 [ 15] [ 4] [0320] +15:32:20 [ 18] [ 4] [6011] +15:32:20 [ 19] [ 3] [418] +15:32:20 [ 22] [ 3] [021] +15:32:20 [ 25] [ 2] [01] +15:32:20 [ 28] [ 9] [D00002000] +15:32:20 [ 32] [ 6] [668899] +15:32:20 [ 35] [ 32] [6213545000204853=491212010485368] +15:32:20 [ 37] [ 12] [507902556312] +15:32:20 [ 41] [ 8] [03016004] +15:32:20 [ 42] [ 15] [APT ] +15:32:20 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +15:32:20 [ 49] [ 3] [418] +15:32:20 [ 52] [ 16] [598FCBF58460745D] +15:32:20 ============================================================================ +15:32:20 + + +waiting on router queue for slot.... +15:32:20 Sending to : +15:32:20 ============================================================================ +15:32:20 Sending to : +15:32:20 ============================================================================ +15:32:20 ============================================================================ +15:32:20 Slot Id : <272> +15:32:20 Transaction Type : REQUEST +15:32:20 Received From : +15:32:20 ============================================================================ +15:32:20 FNo. Len. Field Value +15:32:20 ============================================================================ +15:32:20 [ 1] [ 4] [0200] +15:32:20 [ 2] [ 16] [6213545000204853] +15:32:20 [ 3] [ 6] [010000] +15:32:20 [ 4] [ 12] [000005000000] +15:32:20 [ 7] [ 10] [0320153010] +15:32:20 [ 11] [ 6] [950154] +15:32:20 [ 12] [ 6] [153010] +15:32:20 [ 13] [ 4] [0320] +15:32:20 [ 15] [ 4] [0320] +15:32:20 [ 18] [ 4] [6011] +15:32:20 [ 19] [ 3] [418] +15:32:20 [ 22] [ 3] [021] +15:32:20 [ 25] [ 2] [01] +15:32:20 [ 28] [ 9] [D00002000] +15:32:20 [ 32] [ 6] [668899] +15:32:20 [ 35] [ 32] [6213545000204853=491212010485368] +15:32:20 [ 37] [ 12] [507902556312] +15:32:20 [ 41] [ 8] [03016004] +15:32:20 [ 42] [ 15] [APT ] +15:32:20 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +15:32:20 [ 49] [ 3] [418] +15:32:20 [ 52] [ 16] [598FCBF58460745D] +15:32:20 ============================================================================ +15:32:20 + + +waiting on router queue for slot.... +15:32:20 Sending to : +15:32:20 ============================================================================ +15:32:20 ============================================================================ +15:32:20 Slot Id : <272> +15:32:20 Transaction Type : REQUEST +15:32:20 Received From : +15:32:20 ============================================================================ +15:32:20 FNo. Len. Field Value +15:32:20 ============================================================================ +15:32:20 [ 1] [ 4] [0200] +15:32:20 [ 2] [ 16] [6213545000204853] +15:32:20 [ 3] [ 6] [010000] +15:32:20 [ 4] [ 12] [000005000000] +15:32:20 [ 7] [ 10] [0320153010] +15:32:20 [ 11] [ 6] [950154] +15:32:20 [ 12] [ 6] [153010] +15:32:20 [ 13] [ 4] [0320] +15:32:20 [ 15] [ 4] [0320] +15:32:20 [ 18] [ 4] [6011] +15:32:20 [ 19] [ 3] [418] +15:32:20 [ 22] [ 3] [021] +15:32:20 [ 25] [ 2] [01] +15:32:20 [ 28] [ 9] [D00002000] +15:32:20 [ 32] [ 6] [668899] +15:32:20 [ 35] [ 32] [6213545000204853=491212010485368] +15:32:20 [ 37] [ 12] [507902556312] +15:32:20 [ 41] [ 8] [03016004] +15:32:20 [ 42] [ 15] [APT ] +15:32:20 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +15:32:20 [ 49] [ 3] [418] +15:32:20 [ 52] [ 16] [CEA39DCEA19A703D] +15:32:20 ============================================================================ +15:32:20 + + +waiting on router queue for slot.... +15:32:20 Sending to : <0> +15:32:20 ============================================================================ +15:32:20 ============================================================================ +15:32:20 Slot Id : <252> +15:32:20 Transaction Type : REQUEST +15:32:20 Received From : +15:32:20 ============================================================================ +15:32:20 FNo. Len. Field Value +15:32:20 ============================================================================ +15:32:20 [ 1] [ 4] [0800] +15:32:20 [ 7] [ 10] [0320083127] +15:32:20 [ 11] [ 6] [157032] +15:32:20 [ 70] [ 3] [301] +15:32:20 ============================================================================ +15:32:20 + + +waiting on router queue for slot.... +15:32:20 Sending to : +15:32:20 ============================================================================ +15:32:20 ============================================================================ +15:32:20 Slot Id : <252> +15:32:20 Transaction Type : RESPONSE +15:32:20 Received From : +15:32:20 ============================================================================ +15:32:20 FNo. Len. Field Value +15:32:20 ============================================================================ +15:32:20 [ 1] [ 4] [0810] +15:32:20 [ 7] [ 10] [0320083127] +15:32:20 [ 11] [ 6] [157032] +15:32:20 [ 39] [ 2] [00] +15:32:20 [ 70] [ 3] [301] +15:32:20 ============================================================================ +15:32:20 Calculate Source COMM Id = 2 +15:32:20 ============================================================================ +15:32:20 + + +waiting on router queue for slot.... +15:32:21 ============================================================================ +15:32:21 Slot Id : <254> +15:32:21 Transaction Type : RESPONSE +15:32:21 Received From : +15:32:21 ============================================================================ +15:32:21 FNo. Len. Field Value +15:32:21 ============================================================================ +15:32:21 [ 1] [ 4] [0210] +15:32:21 [ 2] [ 16] [6688990105247207] +15:32:21 [ 3] [ 6] [010000] +15:32:21 [ 4] [ 12] [000200000000] +15:32:21 [ 7] [ 10] [0320083126] +15:32:21 [ 11] [ 6] [270048] +15:32:21 [ 12] [ 6] [153126] +15:32:21 [ 13] [ 4] [0320] +15:32:21 [ 15] [ 4] [0320] +15:32:21 [ 18] [ 4] [6011] +15:32:21 [ 19] [ 3] [418] +15:32:21 [ 22] [ 3] [021] +15:32:21 [ 32] [ 6] [180893] +15:32:21 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:32:21 [ 37] [ 12] [507908270048] +15:32:21 [ 39] [ 2] [61] +15:32:21 [ 41] [ 8] [0467PSLK] +15:32:21 [ 49] [ 3] [418] +15:32:21 ============================================================================ +15:32:21 Calculate Source COMM Id = 2 +15:32:21 ============================================================================ +15:32:21 + + +waiting on router queue for slot.... +15:32:21 ============================================================================ +15:32:21 Slot Id : <272> +15:32:21 Transaction Type : RESPONSE +15:32:21 Received From : +15:32:21 ============================================================================ +15:32:21 FNo. Len. Field Value +15:32:21 ============================================================================ +15:32:21 [ 1] [ 4] [0210] +15:32:21 [ 2] [ 16] [6213545000204853] +15:32:21 [ 3] [ 6] [010000] +15:32:21 [ 4] [ 12] [000005000000] +15:32:21 [ 7] [ 10] [0320153010] +15:32:21 [ 11] [ 6] [950154] +15:32:21 [ 12] [ 6] [153010] +15:32:21 [ 13] [ 4] [0320] +15:32:21 [ 15] [ 4] [0320] +15:32:21 [ 18] [ 4] [6011] +15:32:21 [ 19] [ 3] [418] +15:32:21 [ 32] [ 6] [668899] +15:32:21 [ 35] [ 32] [6213545000204853=491212010485368] +15:32:21 [ 37] [ 12] [507902556312] +15:32:21 [ 38] [ 6] [903694] +15:32:21 [ 39] [ 2] [00] +15:32:21 [ 41] [ 8] [03016004] +15:32:21 [ 49] [ 3] [418] +15:32:21 [ 54] [ 40] [0001418C0000092685810002418C000009268581] +15:32:21 ============================================================================ +15:32:21 Sending to : +15:32:21 ============================================================================ +15:32:21 + + +waiting on router queue for slot.... +15:32:22 ============================================================================ +15:32:22 Slot Id : <272> +15:32:22 Transaction Type : RESPONSE +15:32:22 Received From : +15:32:22 ============================================================================ +15:32:22 FNo. Len. Field Value +15:32:22 ============================================================================ +15:32:22 [ 1] [ 4] [0210] +15:32:22 [ 2] [ 16] [6213545000204853] +15:32:22 [ 3] [ 6] [010000] +15:32:22 [ 4] [ 12] [000005000000] +15:32:22 [ 7] [ 10] [0320153010] +15:32:22 [ 11] [ 6] [950154] +15:32:22 [ 12] [ 6] [153010] +15:32:22 [ 13] [ 4] [0320] +15:32:22 [ 15] [ 4] [0320] +15:32:22 [ 18] [ 4] [6011] +15:32:22 [ 19] [ 3] [418] +15:32:22 [ 32] [ 6] [668899] +15:32:22 [ 35] [ 32] [6213545000204853=491212010485368] +15:32:22 [ 37] [ 12] [507902556312] +15:32:22 [ 38] [ 6] [903694] +15:32:22 [ 39] [ 2] [00] +15:32:22 [ 41] [ 8] [03016004] +15:32:22 [ 49] [ 3] [418] +15:32:22 [ 54] [ 40] [0001418C0000092685810002418C000009268581] +15:32:22 ============================================================================ +15:32:22 Calculate Source COMM Id = 4 +15:32:22 ============================================================================ +15:32:22 + + +waiting on router queue for slot.... +15:32:26 ============================================================================ +15:32:26 Slot Id : <282> +15:32:26 Transaction Type : REQUEST +15:32:26 Received From : +15:32:26 ============================================================================ +15:32:26 FNo. Len. Field Value +15:32:26 ============================================================================ +15:32:26 [ 1] [ 4] [0200] +15:32:26 [ 2] [ 16] [6213545000285456] +15:32:26 [ 3] [ 6] [011000] +15:32:26 [ 4] [ 12] [000066000000] +15:32:26 [ 7] [ 10] [0320083132] +15:32:26 [ 11] [ 6] [270050] +15:32:26 [ 12] [ 6] [153132] +15:32:26 [ 13] [ 4] [0320] +15:32:26 [ 14] [ 4] [4912] +15:32:26 [ 15] [ 4] [0320] +15:32:26 [ 18] [ 4] [6011] +15:32:26 [ 19] [ 3] [418] +15:32:26 [ 22] [ 3] [021] +15:32:26 [ 25] [ 2] [01] +15:32:26 [ 28] [ 9] [D00002000] +15:32:26 [ 32] [ 6] [180893] +15:32:26 [ 35] [ 32] [6213545000285456=491212018545590] +15:32:26 [ 37] [ 12] [507908270050] +15:32:26 [ 41] [ 8] [0112CPBR] +15:32:26 [ 42] [ 15] [999999 ] +15:32:26 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +15:32:26 [ 49] [ 3] [418] +15:32:26 [ 52] [ 16] [8CB962844BAAB5B3] +15:32:26 ============================================================================ +15:32:26 + + +waiting on router queue for slot.... +15:32:26 Sending to : +15:32:26 ============================================================================ +15:32:26 Sending to : +15:32:26 ============================================================================ +15:32:26 ============================================================================ +15:32:26 Slot Id : <282> +15:32:26 Transaction Type : REQUEST +15:32:26 Received From : +15:32:26 ============================================================================ +15:32:26 FNo. Len. Field Value +15:32:26 ============================================================================ +15:32:26 [ 1] [ 4] [0200] +15:32:26 [ 2] [ 16] [6213545000285456] +15:32:26 [ 3] [ 6] [011000] +15:32:26 [ 4] [ 12] [000066000000] +15:32:26 [ 7] [ 10] [0320083132] +15:32:26 [ 11] [ 6] [270050] +15:32:26 [ 12] [ 6] [153132] +15:32:26 [ 13] [ 4] [0320] +15:32:26 [ 14] [ 4] [4912] +15:32:26 [ 15] [ 4] [0320] +15:32:26 [ 18] [ 4] [6011] +15:32:26 [ 19] [ 3] [418] +15:32:26 [ 22] [ 3] [021] +15:32:26 [ 25] [ 2] [01] +15:32:26 [ 28] [ 9] [D00002000] +15:32:26 [ 32] [ 6] [180893] +15:32:26 [ 35] [ 32] [6213545000285456=491212018545590] +15:32:26 [ 37] [ 12] [507908270050] +15:32:26 [ 41] [ 8] [0112CPBR] +15:32:26 [ 42] [ 15] [999999 ] +15:32:26 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +15:32:26 [ 49] [ 3] [418] +15:32:26 [ 52] [ 16] [8CB962844BAAB5B3] +15:32:26 ============================================================================ +15:32:26 + + +waiting on router queue for slot.... +15:32:26 Sending to : +15:32:26 ============================================================================ +15:32:26 ============================================================================ +15:32:26 Slot Id : <282> +15:32:26 Transaction Type : REQUEST +15:32:26 Received From : +15:32:26 ============================================================================ +15:32:26 FNo. Len. Field Value +15:32:26 ============================================================================ +15:32:26 [ 1] [ 4] [0200] +15:32:26 [ 2] [ 16] [6213545000285456] +15:32:26 [ 3] [ 6] [011000] +15:32:26 [ 4] [ 12] [000066000000] +15:32:26 [ 7] [ 10] [0320083132] +15:32:26 [ 11] [ 6] [270050] +15:32:26 [ 12] [ 6] [153132] +15:32:26 [ 13] [ 4] [0320] +15:32:26 [ 14] [ 4] [4912] +15:32:26 [ 15] [ 4] [0320] +15:32:26 [ 18] [ 4] [6011] +15:32:26 [ 19] [ 3] [418] +15:32:26 [ 22] [ 3] [021] +15:32:26 [ 25] [ 2] [01] +15:32:26 [ 28] [ 9] [D00002000] +15:32:26 [ 32] [ 6] [180893] +15:32:26 [ 35] [ 32] [6213545000285456=491212018545590] +15:32:26 [ 37] [ 12] [507908270050] +15:32:26 [ 41] [ 8] [0112CPBR] +15:32:26 [ 42] [ 15] [999999 ] +15:32:26 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +15:32:26 [ 49] [ 3] [418] +15:32:26 [ 52] [ 16] [B8201264B0D7DFDE] +15:32:26 ============================================================================ +15:32:26 + + +waiting on router queue for slot.... +15:32:26 Sending to : <0> +15:32:26 ============================================================================ +15:32:27 ============================================================================ +15:32:27 Slot Id : <282> +15:32:27 Transaction Type : RESPONSE +15:32:27 Received From : +15:32:27 ============================================================================ +15:32:27 FNo. Len. Field Value +15:32:27 ============================================================================ +15:32:27 [ 1] [ 4] [0210] +15:32:27 [ 2] [ 16] [6213545000285456] +15:32:27 [ 3] [ 6] [011000] +15:32:27 [ 4] [ 12] [000066000000] +15:32:27 [ 7] [ 10] [0320083132] +15:32:27 [ 11] [ 6] [270050] +15:32:27 [ 12] [ 6] [153132] +15:32:27 [ 13] [ 4] [0320] +15:32:27 [ 15] [ 4] [0320] +15:32:27 [ 18] [ 4] [6011] +15:32:27 [ 19] [ 3] [418] +15:32:27 [ 32] [ 6] [180893] +15:32:27 [ 35] [ 32] [6213545000285456=491212018545590] +15:32:27 [ 37] [ 12] [507908270050] +15:32:27 [ 38] [ 6] [098090] +15:32:27 [ 39] [ 2] [00] +15:32:27 [ 41] [ 8] [0112CPBR] +15:32:27 [ 49] [ 3] [418] +15:32:27 [ 54] [ 40] [1001418C0000056788401002418C000005678840] +15:32:27 ============================================================================ +15:32:27 Sending to : +15:32:27 ============================================================================ +15:32:27 + + +waiting on router queue for slot.... +15:32:28 ============================================================================ +15:32:28 Slot Id : <282> +15:32:28 Transaction Type : RESPONSE +15:32:28 Received From : +15:32:28 ============================================================================ +15:32:28 FNo. Len. Field Value +15:32:28 ============================================================================ +15:32:28 [ 1] [ 4] [0210] +15:32:28 [ 2] [ 16] [6213545000285456] +15:32:28 [ 3] [ 6] [011000] +15:32:28 [ 4] [ 12] [000066000000] +15:32:28 [ 7] [ 10] [0320083132] +15:32:28 [ 11] [ 6] [270050] +15:32:28 [ 12] [ 6] [153132] +15:32:28 [ 13] [ 4] [0320] +15:32:28 [ 15] [ 4] [0320] +15:32:28 [ 18] [ 4] [6011] +15:32:28 [ 19] [ 3] [418] +15:32:28 [ 32] [ 6] [180893] +15:32:28 [ 35] [ 32] [6213545000285456=491212018545590] +15:32:28 [ 37] [ 12] [507908270050] +15:32:28 [ 38] [ 6] [098090] +15:32:28 [ 39] [ 2] [00] +15:32:28 [ 41] [ 8] [0112CPBR] +15:32:28 [ 49] [ 3] [418] +15:32:28 [ 54] [ 40] [1001418C0000056788401002418C000005678840] +15:32:28 ============================================================================ +15:32:28 Calculate Source COMM Id = 2 +15:32:28 ============================================================================ +15:32:28 + + +waiting on router queue for slot.... +15:32:37 ============================================================================ +15:32:37 Slot Id : <276> +15:32:37 Transaction Type : REQUEST +15:32:37 Received From : +15:32:37 ============================================================================ +15:32:37 FNo. Len. Field Value +15:32:37 ============================================================================ +15:32:37 [ 1] [ 4] [0200] +15:32:37 [ 2] [ 16] [6688990602356204] +15:32:37 [ 3] [ 6] [010000] +15:32:37 [ 4] [ 12] [000005000000] +15:32:37 [ 7] [ 10] [0320153232] +15:32:37 [ 11] [ 6] [785076] +15:32:37 [ 12] [ 6] [153232] +15:32:37 [ 13] [ 4] [0320] +15:32:37 [ 15] [ 4] [0320] +15:32:37 [ 18] [ 4] [6011] +15:32:37 [ 22] [ 3] [900] +15:32:37 [ 25] [ 2] [02] +15:32:37 [ 28] [ 9] [D00002000] +15:32:37 [ 32] [ 6] [621354] +15:32:37 [ 35] [ 37] [6688990602356204=43020061620441800000] +15:32:37 [ 37] [ 12] [507902606161] +15:32:37 [ 41] [ 8] [05004300] +15:32:37 [ 42] [ 15] [NATIVE ] +15:32:37 [ 43] [ 40] [Ka deng office LuangprabangLAO] +15:32:37 [ 49] [ 3] [418] +15:32:37 [ 52] [ 16] [F2504CE14A34A771] +15:32:37 ============================================================================ +15:32:37 + + +waiting on router queue for slot.... +15:32:37 Sending to : +15:32:37 ============================================================================ +15:32:37 Sending to : +15:32:37 ============================================================================ +15:32:37 ============================================================================ +15:32:37 Slot Id : <266> +15:32:37 Transaction Type : REQUEST +15:32:37 Received From : +15:32:37 ============================================================================ +15:32:37 FNo. Len. Field Value +15:32:37 ============================================================================ +15:32:37 [ 1] [ 4] [0800] +15:32:37 [ 7] [ 10] [0320224425] +15:32:37 [ 11] [ 6] [154425] +15:32:37 [ 37] [ 12] [57915154425] +15:32:37 [ 70] [ 3] [301] +15:32:37 ============================================================================ +15:32:37 + + +waiting on router queue for slot.... +15:32:37 Sending to : +15:32:37 ============================================================================ +15:32:37 ============================================================================ +15:32:37 Slot Id : <266> +15:32:37 Transaction Type : RESPONSE +15:32:37 Received From : +15:32:37 ============================================================================ +15:32:37 FNo. Len. Field Value +15:32:37 ============================================================================ +15:32:37 [ 1] [ 4] [0810] +15:32:37 [ 7] [ 10] [0320224425] +15:32:37 [ 11] [ 6] [154425] +15:32:37 [ 37] [ 12] [579151544250] +15:32:37 [ 39] [ 2] [00] +15:32:37 [ 70] [ 3] [810] +15:32:37 ============================================================================ +15:32:37 Calculate Source COMM Id = 6 +15:32:37 ============================================================================ +15:32:37 + + +waiting on router queue for slot.... +15:32:37 ============================================================================ +15:32:37 Slot Id : <276> +15:32:37 Transaction Type : REQUEST +15:32:37 Received From : +15:32:37 ============================================================================ +15:32:37 FNo. Len. Field Value +15:32:37 ============================================================================ +15:32:37 [ 1] [ 4] [0200] +15:32:37 [ 2] [ 16] [6688990602356204] +15:32:37 [ 3] [ 6] [010000] +15:32:37 [ 4] [ 12] [000005000000] +15:32:37 [ 7] [ 10] [0320153232] +15:32:37 [ 11] [ 6] [785076] +15:32:37 [ 12] [ 6] [153232] +15:32:37 [ 13] [ 4] [0320] +15:32:37 [ 15] [ 4] [0320] +15:32:37 [ 18] [ 4] [6011] +15:32:37 [ 22] [ 3] [900] +15:32:37 [ 25] [ 2] [02] +15:32:37 [ 28] [ 9] [D00002000] +15:32:37 [ 32] [ 6] [621354] +15:32:37 [ 35] [ 37] [6688990602356204=43020061620441800000] +15:32:37 [ 37] [ 12] [507902606161] +15:32:37 [ 41] [ 8] [05004300] +15:32:37 [ 42] [ 15] [NATIVE ] +15:32:37 [ 43] [ 40] [Ka deng office LuangprabangLAO] +15:32:37 [ 49] [ 3] [418] +15:32:37 [ 52] [ 16] [F2504CE14A34A771] +15:32:37 ============================================================================ +15:32:37 + + +waiting on router queue for slot.... +15:32:37 Sending to : +15:32:37 ============================================================================ +15:32:37 ============================================================================ +15:32:37 Slot Id : <276> +15:32:37 Transaction Type : REQUEST +15:32:37 Received From : +15:32:37 ============================================================================ +15:32:37 FNo. Len. Field Value +15:32:37 ============================================================================ +15:32:37 [ 1] [ 4] [0200] +15:32:37 [ 2] [ 16] [6688990602356204] +15:32:37 [ 3] [ 6] [010000] +15:32:37 [ 4] [ 12] [000005000000] +15:32:37 [ 7] [ 10] [0320153232] +15:32:37 [ 11] [ 6] [785076] +15:32:37 [ 12] [ 6] [153232] +15:32:37 [ 13] [ 4] [0320] +15:32:37 [ 15] [ 4] [0320] +15:32:37 [ 18] [ 4] [6011] +15:32:37 [ 22] [ 3] [900] +15:32:37 [ 25] [ 2] [02] +15:32:37 [ 28] [ 9] [D00002000] +15:32:37 [ 32] [ 6] [621354] +15:32:37 [ 35] [ 37] [6688990602356204=43020061620441800000] +15:32:37 [ 37] [ 12] [507902606161] +15:32:37 [ 41] [ 8] [05004300] +15:32:37 [ 42] [ 15] [NATIVE ] +15:32:37 [ 43] [ 40] [Ka deng office LuangprabangLAO] +15:32:37 [ 49] [ 3] [418] +15:32:37 [ 52] [ 16] [3FE11F8AB7DC200D] +15:32:37 ============================================================================ +15:32:37 + + +waiting on router queue for slot.... +15:32:37 Sending to : <4> +15:32:37 ============================================================================ +15:32:38 ============================================================================ +15:32:38 Slot Id : <276> +15:32:38 Transaction Type : RESPONSE +15:32:38 Received From : +15:32:38 ============================================================================ +15:32:38 FNo. Len. Field Value +15:32:38 ============================================================================ +15:32:38 [ 1] [ 4] [0210] +15:32:38 [ 2] [ 16] [6688990602356204] +15:32:38 [ 3] [ 6] [010000] +15:32:38 [ 4] [ 12] [000005000000] +15:32:38 [ 11] [ 6] [785076] +15:32:38 [ 12] [ 6] [153232] +15:32:38 [ 15] [ 4] [0320] +15:32:38 [ 18] [ 4] [6011] +15:32:38 [ 32] [ 6] [621354] +15:32:38 [ 35] [ 37] [6688990602356204=43020061620441800000] +15:32:38 [ 37] [ 12] [507902606161] +15:32:38 [ 38] [ 6] [641292] +15:32:38 [ 39] [ 2] [00] +15:32:38 [ 41] [ 8] [05004300] +15:32:38 [ 49] [ 3] [418] +15:32:38 [ 54] [ 20] [0002418C000007640590] +15:32:38 ============================================================================ +15:32:38 Sending to : +15:32:38 ============================================================================ +15:32:38 + + +waiting on router queue for slot.... +15:32:39 ============================================================================ +15:32:39 Slot Id : <276> +15:32:39 Transaction Type : RESPONSE +15:32:39 Received From : +15:32:39 ============================================================================ +15:32:39 FNo. Len. Field Value +15:32:39 ============================================================================ +15:32:39 [ 1] [ 4] [0210] +15:32:39 [ 2] [ 16] [6688990602356204] +15:32:39 [ 3] [ 6] [010000] +15:32:39 [ 4] [ 12] [000005000000] +15:32:39 [ 11] [ 6] [785076] +15:32:39 [ 12] [ 6] [153232] +15:32:39 [ 15] [ 4] [0320] +15:32:39 [ 18] [ 4] [6011] +15:32:39 [ 32] [ 6] [621354] +15:32:39 [ 35] [ 37] [6688990602356204=43020061620441800000] +15:32:39 [ 37] [ 12] [507902606161] +15:32:39 [ 38] [ 6] [641292] +15:32:39 [ 39] [ 2] [00] +15:32:39 [ 41] [ 8] [05004300] +15:32:39 [ 49] [ 3] [418] +15:32:39 [ 54] [ 20] [0002418C000007640590] +15:32:39 ============================================================================ +15:32:39 Calculate Source COMM Id = 0 +15:32:39 ============================================================================ +15:32:39 + + +waiting on router queue for slot.... +15:32:40 ============================================================================ +15:32:40 Slot Id : <280> +15:32:40 Transaction Type : REQUEST +15:32:40 Received From : +15:32:40 ============================================================================ +15:32:40 FNo. Len. Field Value +15:32:40 ============================================================================ +15:32:40 [ 1] [ 4] [0200] +15:32:40 [ 2] [ 16] [6688990103505101] +15:32:40 [ 3] [ 6] [010000] +15:32:40 [ 4] [ 12] [000050000000] +15:32:40 [ 7] [ 10] [0320153235] +15:32:40 [ 11] [ 6] [785087] +15:32:40 [ 12] [ 6] [153235] +15:32:40 [ 13] [ 4] [0320] +15:32:40 [ 15] [ 4] [0320] +15:32:40 [ 18] [ 4] [6011] +15:32:40 [ 22] [ 3] [900] +15:32:40 [ 25] [ 2] [02] +15:32:40 [ 28] [ 9] [D00002000] +15:32:40 [ 32] [ 6] [621354] +15:32:40 [ 35] [ 37] [6688990103505101=43011231510129500000] +15:32:40 [ 37] [ 12] [507903499521] +15:32:40 [ 41] [ 8] [06002200] +15:32:40 [ 42] [ 15] [NATIVE ] +15:32:40 [ 43] [ 40] [Beng Market Beng LAO] +15:32:40 [ 49] [ 3] [418] +15:32:40 [ 52] [ 16] [6FB5629C7E894E9F] +15:32:40 ============================================================================ +15:32:40 + + +waiting on router queue for slot.... +15:32:40 Sending to : +15:32:40 ============================================================================ +15:32:40 Sending to : +15:32:40 ============================================================================ +15:32:40 ============================================================================ +15:32:40 Slot Id : <280> +15:32:40 Transaction Type : REQUEST +15:32:40 Received From : +15:32:40 ============================================================================ +15:32:40 FNo. Len. Field Value +15:32:40 ============================================================================ +15:32:40 [ 1] [ 4] [0200] +15:32:40 [ 2] [ 16] [6688990103505101] +15:32:40 [ 3] [ 6] [010000] +15:32:40 [ 4] [ 12] [000050000000] +15:32:40 [ 7] [ 10] [0320153235] +15:32:40 [ 11] [ 6] [785087] +15:32:40 [ 12] [ 6] [153235] +15:32:40 [ 13] [ 4] [0320] +15:32:40 [ 15] [ 4] [0320] +15:32:40 [ 18] [ 4] [6011] +15:32:40 [ 22] [ 3] [900] +15:32:40 [ 25] [ 2] [02] +15:32:40 [ 28] [ 9] [D00002000] +15:32:40 [ 32] [ 6] [621354] +15:32:40 [ 35] [ 37] [6688990103505101=43011231510129500000] +15:32:40 [ 37] [ 12] [507903499521] +15:32:40 [ 41] [ 8] [06002200] +15:32:40 [ 42] [ 15] [NATIVE ] +15:32:40 [ 43] [ 40] [Beng Market Beng LAO] +15:32:40 [ 49] [ 3] [418] +15:32:40 [ 52] [ 16] [6FB5629C7E894E9F] +15:32:40 ============================================================================ +15:32:40 + + +waiting on router queue for slot.... +15:32:40 Sending to : +15:32:40 ============================================================================ +15:32:40 ============================================================================ +15:32:40 Slot Id : <280> +15:32:40 Transaction Type : REQUEST +15:32:40 Received From : +15:32:40 ============================================================================ +15:32:40 FNo. Len. Field Value +15:32:40 ============================================================================ +15:32:40 [ 1] [ 4] [0200] +15:32:40 [ 2] [ 16] [6688990103505101] +15:32:40 [ 3] [ 6] [010000] +15:32:40 [ 4] [ 12] [000050000000] +15:32:40 [ 7] [ 10] [0320153235] +15:32:40 [ 11] [ 6] [785087] +15:32:40 [ 12] [ 6] [153235] +15:32:40 [ 13] [ 4] [0320] +15:32:40 [ 15] [ 4] [0320] +15:32:40 [ 18] [ 4] [6011] +15:32:40 [ 22] [ 3] [900] +15:32:40 [ 25] [ 2] [02] +15:32:40 [ 28] [ 9] [D00002000] +15:32:40 [ 32] [ 6] [621354] +15:32:40 [ 35] [ 37] [6688990103505101=43011231510129500000] +15:32:40 [ 37] [ 12] [507903499521] +15:32:40 [ 41] [ 8] [06002200] +15:32:40 [ 42] [ 15] [NATIVE ] +15:32:40 [ 43] [ 40] [Beng Market Beng LAO] +15:32:40 [ 49] [ 3] [418] +15:32:40 [ 52] [ 16] [65B41B58CD2F738E] +15:32:40 ============================================================================ +15:32:40 + + +waiting on router queue for slot.... +15:32:40 Sending to : <4> +15:32:40 ============================================================================ +15:32:41 ============================================================================ +15:32:41 Slot Id : <280> +15:32:41 Transaction Type : RESPONSE +15:32:41 Received From : +15:32:41 ============================================================================ +15:32:41 FNo. Len. Field Value +15:32:41 ============================================================================ +15:32:41 [ 1] [ 4] [0210] +15:32:41 [ 2] [ 16] [6688990103505101] +15:32:41 [ 3] [ 6] [010000] +15:32:41 [ 4] [ 12] [000050000000] +15:32:41 [ 11] [ 6] [785087] +15:32:41 [ 12] [ 6] [153235] +15:32:41 [ 15] [ 4] [0320] +15:32:41 [ 18] [ 4] [6011] +15:32:41 [ 32] [ 6] [621354] +15:32:41 [ 35] [ 37] [6688990103505101=43011231510129500000] +15:32:41 [ 37] [ 12] [507903499521] +15:32:41 [ 38] [ 6] [478519] +15:32:41 [ 39] [ 2] [00] +15:32:41 [ 41] [ 8] [06002200] +15:32:41 [ 49] [ 3] [418] +15:32:41 [ 54] [ 20] [0002418C000062291226] +15:32:41 ============================================================================ +15:32:41 Sending to : +15:32:41 ============================================================================ +15:32:41 + + +waiting on router queue for slot.... +15:32:42 ============================================================================ +15:32:42 Slot Id : <280> +15:32:42 Transaction Type : RESPONSE +15:32:42 Received From : +15:32:42 ============================================================================ +15:32:42 FNo. Len. Field Value +15:32:42 ============================================================================ +15:32:42 [ 1] [ 4] [0210] +15:32:42 [ 2] [ 16] [6688990103505101] +15:32:42 [ 3] [ 6] [010000] +15:32:42 [ 4] [ 12] [000050000000] +15:32:42 [ 11] [ 6] [785087] +15:32:42 [ 12] [ 6] [153235] +15:32:42 [ 15] [ 4] [0320] +15:32:42 [ 18] [ 4] [6011] +15:32:42 [ 32] [ 6] [621354] +15:32:42 [ 35] [ 37] [6688990103505101=43011231510129500000] +15:32:42 [ 37] [ 12] [507903499521] +15:32:42 [ 38] [ 6] [478519] +15:32:42 [ 39] [ 2] [00] +15:32:42 [ 41] [ 8] [06002200] +15:32:42 [ 49] [ 3] [418] +15:32:42 [ 54] [ 20] [0002418C000062291226] +15:32:42 ============================================================================ +15:32:42 Calculate Source COMM Id = 0 +15:32:42 ============================================================================ +15:32:42 + + +waiting on router queue for slot.... +15:32:42 ============================================================================ +15:32:42 Slot Id : <241> +15:32:42 Transaction Type : REQUEST +15:32:42 Received From : +15:32:42 ============================================================================ +15:32:42 FNo. Len. Field Value +15:32:42 ============================================================================ +15:32:42 [ 1] [ 4] [0800] +15:32:42 [ 7] [ 10] [0320083149] +15:32:42 [ 11] [ 6] [157033] +15:32:42 [ 70] [ 3] [301] +15:32:42 ============================================================================ +15:32:42 + + +waiting on router queue for slot.... +15:32:42 Sending to : +15:32:42 ============================================================================ +15:32:42 ============================================================================ +15:32:42 Slot Id : <241> +15:32:42 Transaction Type : RESPONSE +15:32:42 Received From : +15:32:42 ============================================================================ +15:32:42 FNo. Len. Field Value +15:32:42 ============================================================================ +15:32:42 [ 1] [ 4] [0810] +15:32:42 [ 7] [ 10] [0320083149] +15:32:42 [ 11] [ 6] [157033] +15:32:42 [ 39] [ 2] [00] +15:32:42 [ 70] [ 3] [301] +15:32:42 ============================================================================ +15:32:42 Calculate Source COMM Id = 2 +15:32:42 ============================================================================ +15:32:42 + + +waiting on router queue for slot.... +15:32:43 ============================================================================ +15:32:43 Slot Id : <258> +15:32:43 Transaction Type : REQUEST +15:32:43 Received From : +15:32:43 ============================================================================ +15:32:43 FNo. Len. Field Value +15:32:43 ============================================================================ +15:32:43 [ 1] [ 4] [0800] +15:32:43 [ 2] [ 5] [02531] +15:32:43 [ 3] [ 6] [579158] +15:32:43 [ 7] [ 10] [0320083243] +15:32:43 [ 11] [ 6] [807314] +15:32:43 [ 15] [ 10] [0320083243] +15:32:43 [ 37] [ 11] [57915807314] +15:32:43 [ 70] [ 3] [001] +15:32:43 ============================================================================ +15:32:43 + + +waiting on router queue for slot.... +15:32:43 ============================================================================ +15:32:43 Slot Id : <258> +15:32:43 Transaction Type : RESPONSE +15:32:43 Received From : +15:32:43 ============================================================================ +15:32:43 FNo. Len. Field Value +15:32:43 ============================================================================ +15:32:43 [ 1] [ 4] [0810] +15:32:43 [ 7] [ 10] [0320083243] +15:32:43 [ 11] [ 6] [807314] +15:32:43 [ 15] [ 4] [0320] +15:32:43 [ 37] [ 12] [57915807314] +15:32:43 [ 39] [ 2] [00] +15:32:43 [ 70] [ 3] [001] +15:32:43 ============================================================================ +15:32:43 Sending to : +15:32:43 ============================================================================ +15:32:43 + + +waiting on router queue for slot.... +15:32:46 ============================================================================ +15:32:46 Slot Id : <224> +15:32:46 Transaction Type : REQUEST +15:32:46 Received From : +15:32:46 ============================================================================ +15:32:46 FNo. Len. Field Value +15:32:46 ============================================================================ +15:32:46 [ 1] [ 4] [0200] +15:32:46 [ 2] [ 16] [6688990602317701] +15:32:46 [ 3] [ 6] [301000] +15:32:46 [ 7] [ 10] [0320083152] +15:32:46 [ 11] [ 6] [270053] +15:32:46 [ 12] [ 6] [153152] +15:32:46 [ 13] [ 4] [0320] +15:32:46 [ 14] [ 4] [4302] +15:32:46 [ 15] [ 4] [0320] +15:32:46 [ 18] [ 4] [6011] +15:32:46 [ 19] [ 3] [418] +15:32:46 [ 22] [ 3] [021] +15:32:46 [ 25] [ 2] [01] +15:32:46 [ 32] [ 6] [180893] +15:32:46 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:32:46 [ 37] [ 12] [507908270053] +15:32:46 [ 41] [ 8] [0523XYNG] +15:32:46 [ 42] [ 15] [999999 ] +15:32:46 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +15:32:46 [ 49] [ 3] [418] +15:32:46 [ 52] [ 16] [6EE953B6674EB1E0] +15:32:46 ============================================================================ +15:32:46 + + +waiting on router queue for slot.... +15:32:46 Sending to : +15:32:46 ============================================================================ +15:32:46 Sending to : +15:32:46 ============================================================================ +15:32:46 ============================================================================ +15:32:46 Slot Id : <224> +15:32:46 Transaction Type : REQUEST +15:32:46 Received From : +15:32:46 ============================================================================ +15:32:46 FNo. Len. Field Value +15:32:46 ============================================================================ +15:32:46 [ 1] [ 4] [0200] +15:32:46 [ 2] [ 16] [6688990602317701] +15:32:46 [ 3] [ 6] [301000] +15:32:46 [ 7] [ 10] [0320083152] +15:32:46 [ 11] [ 6] [270053] +15:32:46 [ 12] [ 6] [153152] +15:32:46 [ 13] [ 4] [0320] +15:32:46 [ 14] [ 4] [4302] +15:32:46 [ 15] [ 4] [0320] +15:32:46 [ 18] [ 4] [6011] +15:32:46 [ 19] [ 3] [418] +15:32:46 [ 22] [ 3] [021] +15:32:46 [ 25] [ 2] [01] +15:32:46 [ 32] [ 6] [180893] +15:32:46 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:32:46 [ 37] [ 12] [507908270053] +15:32:46 [ 41] [ 8] [0523XYNG] +15:32:46 [ 42] [ 15] [999999 ] +15:32:46 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +15:32:46 [ 49] [ 3] [418] +15:32:46 [ 52] [ 16] [6EE953B6674EB1E0] +15:32:46 ============================================================================ +15:32:46 + + +waiting on router queue for slot.... +15:32:46 Sending to : +15:32:46 ============================================================================ +15:32:46 ============================================================================ +15:32:46 Slot Id : <224> +15:32:46 Transaction Type : REQUEST +15:32:46 Received From : +15:32:46 ============================================================================ +15:32:46 FNo. Len. Field Value +15:32:46 ============================================================================ +15:32:46 [ 1] [ 4] [0200] +15:32:46 [ 2] [ 16] [6688990602317701] +15:32:46 [ 3] [ 6] [301000] +15:32:46 [ 7] [ 10] [0320083152] +15:32:46 [ 11] [ 6] [270053] +15:32:46 [ 12] [ 6] [153152] +15:32:46 [ 13] [ 4] [0320] +15:32:46 [ 14] [ 4] [4302] +15:32:46 [ 15] [ 4] [0320] +15:32:46 [ 18] [ 4] [6011] +15:32:46 [ 19] [ 3] [418] +15:32:46 [ 22] [ 3] [021] +15:32:46 [ 25] [ 2] [01] +15:32:46 [ 32] [ 6] [180893] +15:32:46 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:32:46 [ 37] [ 12] [507908270053] +15:32:46 [ 41] [ 8] [0523XYNG] +15:32:46 [ 42] [ 15] [999999 ] +15:32:46 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +15:32:46 [ 49] [ 3] [418] +15:32:46 [ 52] [ 16] [7025A958120D47C9] +15:32:46 ============================================================================ +15:32:46 + + +waiting on router queue for slot.... +15:32:46 Sending to : <0> +15:32:46 ============================================================================ +15:32:46 ============================================================================ +15:32:46 Slot Id : <224> +15:32:46 Transaction Type : RESPONSE +15:32:46 Received From : +15:32:46 ============================================================================ +15:32:46 FNo. Len. Field Value +15:32:46 ============================================================================ +15:32:46 [ 1] [ 4] [0210] +15:32:46 [ 2] [ 16] [6688990602317701] +15:32:46 [ 3] [ 6] [301000] +15:32:46 [ 4] [ 12] [000000000000] +15:32:46 [ 7] [ 10] [0320083152] +15:32:46 [ 11] [ 6] [270053] +15:32:46 [ 12] [ 6] [153152] +15:32:46 [ 13] [ 4] [0320] +15:32:46 [ 15] [ 4] [0320] +15:32:46 [ 18] [ 4] [6011] +15:32:46 [ 19] [ 3] [418] +15:32:46 [ 22] [ 3] [021] +15:32:46 [ 32] [ 6] [180893] +15:32:46 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:32:46 [ 37] [ 12] [507908270053] +15:32:46 [ 39] [ 2] [14] +15:32:46 [ 41] [ 8] [0523XYNG] +15:32:46 [ 49] [ 3] [418] +15:32:46 ============================================================================ +15:32:46 Sending to : +15:32:46 ============================================================================ +15:32:46 + + +waiting on router queue for slot.... +15:32:47 ============================================================================ +15:32:47 Slot Id : <224> +15:32:47 Transaction Type : RESPONSE +15:32:47 Received From : +15:32:47 ============================================================================ +15:32:47 FNo. Len. Field Value +15:32:47 ============================================================================ +15:32:47 [ 1] [ 4] [0210] +15:32:47 [ 2] [ 16] [6688990602317701] +15:32:47 [ 3] [ 6] [301000] +15:32:47 [ 4] [ 12] [000000000000] +15:32:47 [ 7] [ 10] [0320083152] +15:32:47 [ 11] [ 6] [270053] +15:32:47 [ 12] [ 6] [153152] +15:32:47 [ 13] [ 4] [0320] +15:32:47 [ 15] [ 4] [0320] +15:32:47 [ 18] [ 4] [6011] +15:32:47 [ 19] [ 3] [418] +15:32:47 [ 22] [ 3] [021] +15:32:47 [ 32] [ 6] [180893] +15:32:47 [ 35] [ 37] [6688990602317701=43020061770112200000] +15:32:47 [ 37] [ 12] [507908270053] +15:32:47 [ 39] [ 2] [14] +15:32:47 [ 41] [ 8] [0523XYNG] +15:32:47 [ 49] [ 3] [418] +15:32:47 ============================================================================ +15:32:47 Calculate Source COMM Id = 2 +15:32:47 ============================================================================ +15:32:47 + + +waiting on router queue for slot.... +15:32:58 ============================================================================ +15:32:58 Slot Id : <284> +15:32:58 Transaction Type : REQUEST +15:32:58 Received From : +15:32:58 ============================================================================ +15:32:58 FNo. Len. Field Value +15:32:58 ============================================================================ +15:32:58 [ 1] [ 4] [0800] +15:32:58 [ 7] [ 10] [0320083205] +15:32:58 [ 11] [ 6] [157034] +15:32:58 [ 70] [ 3] [301] +15:32:58 ============================================================================ +15:32:58 + + +waiting on router queue for slot.... +15:32:58 Sending to : +15:32:58 ============================================================================ +15:32:58 ============================================================================ +15:32:58 Slot Id : <284> +15:32:58 Transaction Type : RESPONSE +15:32:58 Received From : +15:32:58 ============================================================================ +15:32:58 FNo. Len. Field Value +15:32:58 ============================================================================ +15:32:58 [ 1] [ 4] [0810] +15:32:58 [ 7] [ 10] [0320083205] +15:32:58 [ 11] [ 6] [157034] +15:32:58 [ 39] [ 2] [00] +15:32:58 [ 70] [ 3] [301] +15:32:58 ============================================================================ +15:32:58 Calculate Source COMM Id = 2 +15:32:58 ============================================================================ +15:32:58 + + +waiting on router queue for slot.... +15:32:59 ============================================================================ +15:32:59 Slot Id : <219> +15:32:59 Transaction Type : REQUEST +15:32:59 Received From : +15:32:59 ============================================================================ +15:32:59 FNo. Len. Field Value +15:32:59 ============================================================================ +15:32:59 [ 1] [ 4] [0200] +15:32:59 [ 2] [ 16] [6213544001913794] +15:32:59 [ 3] [ 6] [010000] +15:32:59 [ 4] [ 12] [000100000000] +15:32:59 [ 7] [ 10] [0320083206] +15:32:59 [ 11] [ 6] [270056] +15:32:59 [ 12] [ 6] [153206] +15:32:59 [ 13] [ 4] [0320] +15:32:59 [ 14] [ 4] [4912] +15:32:59 [ 15] [ 4] [0320] +15:32:59 [ 18] [ 4] [6011] +15:32:59 [ 19] [ 3] [418] +15:32:59 [ 22] [ 3] [021] +15:32:59 [ 25] [ 2] [01] +15:32:59 [ 28] [ 9] [D00002000] +15:32:59 [ 32] [ 6] [180893] +15:32:59 [ 35] [ 32] [6213544001913794=491212011379027] +15:32:59 [ 37] [ 12] [507908270056] +15:32:59 [ 41] [ 8] [0106NAXA] +15:32:59 [ 42] [ 15] [999999 ] +15:32:59 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +15:32:59 [ 49] [ 3] [418] +15:32:59 [ 52] [ 16] [02DC735C8FC2853F] +15:32:59 ============================================================================ +15:32:59 + + +waiting on router queue for slot.... +15:32:59 Sending to : +15:32:59 ============================================================================ +15:32:59 Sending to : +15:32:59 ============================================================================ +15:32:59 ============================================================================ +15:32:59 Slot Id : <219> +15:32:59 Transaction Type : REQUEST +15:32:59 Received From : +15:32:59 ============================================================================ +15:32:59 FNo. Len. Field Value +15:32:59 ============================================================================ +15:32:59 [ 1] [ 4] [0200] +15:32:59 [ 2] [ 16] [6213544001913794] +15:32:59 [ 3] [ 6] [010000] +15:32:59 [ 4] [ 12] [000100000000] +15:32:59 [ 7] [ 10] [0320083206] +15:32:59 [ 11] [ 6] [270056] +15:32:59 [ 12] [ 6] [153206] +15:32:59 [ 13] [ 4] [0320] +15:32:59 [ 14] [ 4] [4912] +15:32:59 [ 15] [ 4] [0320] +15:32:59 [ 18] [ 4] [6011] +15:32:59 [ 19] [ 3] [418] +15:32:59 [ 22] [ 3] [021] +15:32:59 [ 25] [ 2] [01] +15:32:59 [ 28] [ 9] [D00002000] +15:32:59 [ 32] [ 6] [180893] +15:32:59 [ 35] [ 32] [6213544001913794=491212011379027] +15:32:59 [ 37] [ 12] [507908270056] +15:32:59 [ 41] [ 8] [0106NAXA] +15:32:59 [ 42] [ 15] [999999 ] +15:32:59 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +15:32:59 [ 49] [ 3] [418] +15:32:59 [ 52] [ 16] [02DC735C8FC2853F] +15:32:59 ============================================================================ +15:32:59 + + +waiting on router queue for slot.... +15:32:59 Sending to : +15:32:59 ============================================================================ +15:32:59 ============================================================================ +15:32:59 Slot Id : <219> +15:32:59 Transaction Type : REQUEST +15:32:59 Received From : +15:32:59 ============================================================================ +15:32:59 FNo. Len. Field Value +15:32:59 ============================================================================ +15:32:59 [ 1] [ 4] [0200] +15:32:59 [ 2] [ 16] [6213544001913794] +15:32:59 [ 3] [ 6] [010000] +15:32:59 [ 4] [ 12] [000100000000] +15:32:59 [ 7] [ 10] [0320083206] +15:32:59 [ 11] [ 6] [270056] +15:32:59 [ 12] [ 6] [153206] +15:32:59 [ 13] [ 4] [0320] +15:32:59 [ 14] [ 4] [4912] +15:32:59 [ 15] [ 4] [0320] +15:32:59 [ 18] [ 4] [6011] +15:32:59 [ 19] [ 3] [418] +15:32:59 [ 22] [ 3] [021] +15:32:59 [ 25] [ 2] [01] +15:32:59 [ 28] [ 9] [D00002000] +15:32:59 [ 32] [ 6] [180893] +15:32:59 [ 35] [ 32] [6213544001913794=491212011379027] +15:32:59 [ 37] [ 12] [507908270056] +15:32:59 [ 41] [ 8] [0106NAXA] +15:32:59 [ 42] [ 15] [999999 ] +15:32:59 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +15:32:59 [ 49] [ 3] [418] +15:32:59 [ 52] [ 16] [A760CF33FE5A63A4] +15:32:59 ============================================================================ +15:32:59 + + +waiting on router queue for slot.... +15:32:59 Sending to : <0> +15:32:59 ============================================================================ +15:32:59 ============================================================================ +15:32:59 Slot Id : <219> +15:32:59 Transaction Type : RESPONSE +15:32:59 Received From : +15:32:59 ============================================================================ +15:32:59 FNo. Len. Field Value +15:32:59 ============================================================================ +15:32:59 [ 1] [ 4] [0210] +15:32:59 [ 2] [ 16] [6213544001913794] +15:32:59 [ 3] [ 6] [010000] +15:32:59 [ 4] [ 12] [000100000000] +15:32:59 [ 7] [ 10] [0320083206] +15:32:59 [ 11] [ 6] [270056] +15:32:59 [ 12] [ 6] [153206] +15:32:59 [ 13] [ 4] [0320] +15:32:59 [ 15] [ 4] [0320] +15:32:59 [ 18] [ 4] [6011] +15:32:59 [ 19] [ 3] [418] +15:32:59 [ 22] [ 3] [021] +15:32:59 [ 32] [ 6] [180893] +15:32:59 [ 35] [ 32] [6213544001913794=491212011379027] +15:32:59 [ 37] [ 12] [507908270056] +15:32:59 [ 38] [ 6] [153255] +15:32:59 [ 39] [ 2] [55] +15:32:59 [ 41] [ 8] [0106NAXA] +15:32:59 [ 49] [ 3] [418] +15:32:59 ============================================================================ +15:32:59 Sending to : +15:32:59 ============================================================================ +15:32:59 + + +waiting on router queue for slot.... +15:33:00 ============================================================================ +15:33:00 Slot Id : <219> +15:33:00 Transaction Type : RESPONSE +15:33:00 Received From : +15:33:00 ============================================================================ +15:33:00 FNo. Len. Field Value +15:33:00 ============================================================================ +15:33:00 [ 1] [ 4] [0210] +15:33:00 [ 2] [ 16] [6213544001913794] +15:33:00 [ 3] [ 6] [010000] +15:33:00 [ 4] [ 12] [000100000000] +15:33:00 [ 7] [ 10] [0320083206] +15:33:00 [ 11] [ 6] [270056] +15:33:00 [ 12] [ 6] [153206] +15:33:00 [ 13] [ 4] [0320] +15:33:00 [ 15] [ 4] [0320] +15:33:00 [ 18] [ 4] [6011] +15:33:00 [ 19] [ 3] [418] +15:33:00 [ 22] [ 3] [021] +15:33:00 [ 32] [ 6] [180893] +15:33:00 [ 35] [ 32] [6213544001913794=491212011379027] +15:33:00 [ 37] [ 12] [507908270056] +15:33:00 [ 38] [ 6] [153255] +15:33:00 [ 39] [ 2] [55] +15:33:00 [ 41] [ 8] [0106NAXA] +15:33:00 [ 49] [ 3] [418] +15:33:00 ============================================================================ +15:33:00 Calculate Source COMM Id = 2 +15:33:00 ============================================================================ +15:33:00 + + +waiting on router queue for slot.... +15:33:08 ============================================================================ +15:33:08 Slot Id : <287> +15:33:08 Transaction Type : REQUEST +15:33:08 Received From : +15:33:08 ============================================================================ +15:33:08 FNo. Len. Field Value +15:33:08 ============================================================================ +15:33:08 [ 1] [ 4] [0800] +15:33:08 [ 7] [ 10] [0320153255] +15:33:08 [ 11] [ 6] [092909] +15:33:08 [ 37] [ 12] [507915092909] +15:33:08 [ 70] [ 3] [ ] +15:33:08 ============================================================================ +15:33:08 + + +waiting on router queue for slot.... +15:33:08 Sending to : +15:33:08 ============================================================================ +15:33:09 ============================================================================ +15:33:09 Slot Id : <287> +15:33:09 Transaction Type : RESPONSE +15:33:09 Received From : +15:33:09 ============================================================================ +15:33:09 FNo. Len. Field Value +15:33:09 ============================================================================ +15:33:09 [ 1] [ 4] [0810] +15:33:09 [ 7] [ 10] [0320153255] +15:33:09 [ 11] [ 6] [092909] +15:33:09 [ 37] [ 12] [507915092909] +15:33:09 [ 39] [ 2] [91] +15:33:09 [ 70] [ 3] [ ] +15:33:09 ============================================================================ +15:33:09 Calculate Source COMM Id = 3 +15:33:09 ============================================================================ +15:33:09 + + +waiting on router queue for slot.... +15:33:14 ============================================================================ +15:33:14 Slot Id : <277> +15:33:14 Transaction Type : REQUEST +15:33:14 Received From : +15:33:14 ============================================================================ +15:33:14 FNo. Len. Field Value +15:33:14 ============================================================================ +15:33:14 [ 1] [ 4] [0800] +15:33:14 [ 7] [ 10] [0320083221] +15:33:14 [ 11] [ 6] [157035] +15:33:14 [ 70] [ 3] [301] +15:33:14 ============================================================================ +15:33:14 + + +waiting on router queue for slot.... +15:33:14 Sending to : +15:33:14 ============================================================================ +15:33:14 ============================================================================ +15:33:14 Slot Id : <277> +15:33:14 Transaction Type : RESPONSE +15:33:14 Received From : +15:33:14 ============================================================================ +15:33:14 FNo. Len. Field Value +15:33:14 ============================================================================ +15:33:14 [ 1] [ 4] [0810] +15:33:14 [ 7] [ 10] [0320083221] +15:33:14 [ 11] [ 6] [157035] +15:33:14 [ 39] [ 2] [00] +15:33:14 [ 70] [ 3] [301] +15:33:14 ============================================================================ +15:33:14 Calculate Source COMM Id = 2 +15:33:14 ============================================================================ +15:33:14 + + +waiting on router queue for slot.... +15:33:19 ============================================================================ +15:33:19 Slot Id : <290> +15:33:19 Transaction Type : REQUEST +15:33:19 Received From : +15:33:19 ============================================================================ +15:33:19 FNo. Len. Field Value +15:33:19 ============================================================================ +15:33:19 [ 1] [ 4] [0200] +15:33:19 [ 2] [ 16] [6688990105247207] +15:33:19 [ 3] [ 6] [010000] +15:33:19 [ 4] [ 12] [000100000000] +15:33:19 [ 7] [ 10] [0320083226] +15:33:19 [ 11] [ 6] [270058] +15:33:19 [ 12] [ 6] [153226] +15:33:19 [ 13] [ 4] [0320] +15:33:19 [ 14] [ 4] [4308] +15:33:19 [ 15] [ 4] [0320] +15:33:19 [ 18] [ 4] [6011] +15:33:19 [ 19] [ 3] [418] +15:33:19 [ 22] [ 3] [021] +15:33:19 [ 25] [ 2] [01] +15:33:19 [ 28] [ 9] [D00002000] +15:33:19 [ 32] [ 6] [180893] +15:33:19 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:33:19 [ 37] [ 12] [507908270058] +15:33:19 [ 41] [ 8] [0467PSLK] +15:33:19 [ 42] [ 15] [999999 ] +15:33:19 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +15:33:19 [ 49] [ 3] [418] +15:33:19 [ 52] [ 16] [DB545088E707C81B] +15:33:19 ============================================================================ +15:33:19 + + +waiting on router queue for slot.... +15:33:19 Sending to : +15:33:19 ============================================================================ +15:33:19 Sending to : +15:33:19 ============================================================================ +15:33:20 ============================================================================ +15:33:20 Slot Id : <290> +15:33:20 Transaction Type : REQUEST +15:33:20 Received From : +15:33:20 ============================================================================ +15:33:20 FNo. Len. Field Value +15:33:20 ============================================================================ +15:33:20 [ 1] [ 4] [0200] +15:33:20 [ 2] [ 16] [6688990105247207] +15:33:20 [ 3] [ 6] [010000] +15:33:20 [ 4] [ 12] [000100000000] +15:33:20 [ 7] [ 10] [0320083226] +15:33:20 [ 11] [ 6] [270058] +15:33:20 [ 12] [ 6] [153226] +15:33:20 [ 13] [ 4] [0320] +15:33:20 [ 14] [ 4] [4308] +15:33:20 [ 15] [ 4] [0320] +15:33:20 [ 18] [ 4] [6011] +15:33:20 [ 19] [ 3] [418] +15:33:20 [ 22] [ 3] [021] +15:33:20 [ 25] [ 2] [01] +15:33:20 [ 28] [ 9] [D00002000] +15:33:20 [ 32] [ 6] [180893] +15:33:20 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:33:20 [ 37] [ 12] [507908270058] +15:33:20 [ 41] [ 8] [0467PSLK] +15:33:20 [ 42] [ 15] [999999 ] +15:33:20 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +15:33:20 [ 49] [ 3] [418] +15:33:20 [ 52] [ 16] [DB545088E707C81B] +15:33:20 ============================================================================ +15:33:20 + + +waiting on router queue for slot.... +15:33:20 Sending to : +15:33:20 ============================================================================ +15:33:20 ============================================================================ +15:33:20 Slot Id : <290> +15:33:20 Transaction Type : REQUEST +15:33:20 Received From : +15:33:20 ============================================================================ +15:33:20 FNo. Len. Field Value +15:33:20 ============================================================================ +15:33:20 [ 1] [ 4] [0200] +15:33:20 [ 2] [ 16] [6688990105247207] +15:33:20 [ 3] [ 6] [010000] +15:33:20 [ 4] [ 12] [000100000000] +15:33:20 [ 7] [ 10] [0320083226] +15:33:20 [ 11] [ 6] [270058] +15:33:20 [ 12] [ 6] [153226] +15:33:20 [ 13] [ 4] [0320] +15:33:20 [ 14] [ 4] [4308] +15:33:20 [ 15] [ 4] [0320] +15:33:20 [ 18] [ 4] [6011] +15:33:20 [ 19] [ 3] [418] +15:33:20 [ 22] [ 3] [021] +15:33:20 [ 25] [ 2] [01] +15:33:20 [ 28] [ 9] [D00002000] +15:33:20 [ 32] [ 6] [180893] +15:33:20 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:33:20 [ 37] [ 12] [507908270058] +15:33:20 [ 41] [ 8] [0467PSLK] +15:33:20 [ 42] [ 15] [999999 ] +15:33:20 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +15:33:20 [ 49] [ 3] [418] +15:33:20 [ 52] [ 16] [667459472C5E1498] +15:33:20 ============================================================================ +15:33:20 + + +waiting on router queue for slot.... +15:33:20 Sending to : <0> +15:33:20 ============================================================================ +15:33:20 ============================================================================ +15:33:20 Slot Id : <290> +15:33:20 Transaction Type : RESPONSE +15:33:20 Received From : +15:33:20 ============================================================================ +15:33:20 FNo. Len. Field Value +15:33:20 ============================================================================ +15:33:20 [ 1] [ 4] [0210] +15:33:20 [ 2] [ 16] [6688990105247207] +15:33:20 [ 3] [ 6] [010000] +15:33:20 [ 4] [ 12] [000100000000] +15:33:20 [ 7] [ 10] [0320083226] +15:33:20 [ 11] [ 6] [270058] +15:33:20 [ 12] [ 6] [153226] +15:33:20 [ 13] [ 4] [0320] +15:33:20 [ 15] [ 4] [0320] +15:33:20 [ 18] [ 4] [6011] +15:33:20 [ 19] [ 3] [418] +15:33:20 [ 22] [ 3] [021] +15:33:20 [ 32] [ 6] [180893] +15:33:20 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:33:20 [ 37] [ 12] [507908270058] +15:33:20 [ 39] [ 2] [14] +15:33:20 [ 41] [ 8] [0467PSLK] +15:33:20 [ 49] [ 3] [418] +15:33:20 ============================================================================ +15:33:20 Sending to : +15:33:20 ============================================================================ +15:33:20 + + +waiting on router queue for slot.... +15:33:21 ============================================================================ +15:33:21 Slot Id : <290> +15:33:21 Transaction Type : RESPONSE +15:33:21 Received From : +15:33:21 ============================================================================ +15:33:21 FNo. Len. Field Value +15:33:21 ============================================================================ +15:33:21 [ 1] [ 4] [0210] +15:33:21 [ 2] [ 16] [6688990105247207] +15:33:21 [ 3] [ 6] [010000] +15:33:21 [ 4] [ 12] [000100000000] +15:33:21 [ 7] [ 10] [0320083226] +15:33:21 [ 11] [ 6] [270058] +15:33:21 [ 12] [ 6] [153226] +15:33:21 [ 13] [ 4] [0320] +15:33:21 [ 15] [ 4] [0320] +15:33:21 [ 18] [ 4] [6011] +15:33:21 [ 19] [ 3] [418] +15:33:21 [ 22] [ 3] [021] +15:33:21 [ 32] [ 6] [180893] +15:33:21 [ 35] [ 37] [6688990105247207=43081231720789000000] +15:33:21 [ 37] [ 12] [507908270058] +15:33:21 [ 39] [ 2] [14] +15:33:21 [ 41] [ 8] [0467PSLK] +15:33:21 [ 49] [ 3] [418] +15:33:21 ============================================================================ +15:33:21 Calculate Source COMM Id = 2 +15:33:21 ============================================================================ +15:33:21 + + +waiting on router queue for slot.... +15:33:36 ============================================================================ +15:33:36 Slot Id : <267> +15:33:36 Transaction Type : REQUEST +15:33:36 Received From : +15:33:36 ============================================================================ +15:33:36 FNo. Len. Field Value +15:33:36 ============================================================================ +15:33:36 [ 1] [ 4] [0800] +15:33:36 [ 7] [ 10] [0320083243] +15:33:36 [ 11] [ 6] [157036] +15:33:36 [ 70] [ 3] [301] +15:33:36 ============================================================================ +15:33:36 + + +waiting on router queue for slot.... +15:33:36 Sending to : +15:33:36 ============================================================================ +15:33:36 ============================================================================ +15:33:36 Slot Id : <267> +15:33:36 Transaction Type : RESPONSE +15:33:36 Received From : +15:33:36 ============================================================================ +15:33:36 FNo. Len. Field Value +15:33:36 ============================================================================ +15:33:36 [ 1] [ 4] [0810] +15:33:36 [ 7] [ 10] [0320083243] +15:33:36 [ 11] [ 6] [157036] +15:33:36 [ 39] [ 2] [00] +15:33:36 [ 70] [ 3] [301] +15:33:36 ============================================================================ +15:33:36 Calculate Source COMM Id = 2 +15:33:36 ============================================================================ +15:33:36 + + +waiting on router queue for slot.... +15:33:37 ============================================================================ +15:33:37 Slot Id : <271> +15:33:37 Transaction Type : REQUEST +15:33:37 Received From : +15:33:37 ============================================================================ +15:33:37 FNo. Len. Field Value +15:33:37 ============================================================================ +15:33:37 [ 1] [ 4] [0200] +15:33:37 [ 2] [ 16] [6688990105394108] +15:33:37 [ 3] [ 6] [011000] +15:33:37 [ 4] [ 12] [000080000000] +15:33:37 [ 7] [ 10] [0320083243] +15:33:37 [ 11] [ 6] [270063] +15:33:37 [ 12] [ 6] [153243] +15:33:37 [ 13] [ 4] [0320] +15:33:37 [ 14] [ 4] [4309] +15:33:37 [ 15] [ 4] [0320] +15:33:37 [ 18] [ 4] [6011] +15:33:37 [ 19] [ 3] [418] +15:33:37 [ 22] [ 3] [021] +15:33:37 [ 25] [ 2] [01] +15:33:37 [ 28] [ 9] [D00002000] +15:33:37 [ 32] [ 6] [180893] +15:33:37 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:33:37 [ 37] [ 12] [507908270063] +15:33:37 [ 41] [ 8] [0110VTBR] +15:33:37 [ 42] [ 15] [999999 ] +15:33:37 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:33:37 [ 49] [ 3] [418] +15:33:37 [ 52] [ 16] [1A8D8A3D3CCB94DB] +15:33:37 ============================================================================ +15:33:37 + + +waiting on router queue for slot.... +15:33:37 Sending to : +15:33:37 ============================================================================ +15:33:37 Sending to : +15:33:37 ============================================================================ +15:33:37 ============================================================================ +15:33:37 Slot Id : <271> +15:33:37 Transaction Type : REQUEST +15:33:37 Received From : +15:33:37 ============================================================================ +15:33:37 FNo. Len. Field Value +15:33:37 ============================================================================ +15:33:37 [ 1] [ 4] [0200] +15:33:37 [ 2] [ 16] [6688990105394108] +15:33:37 [ 3] [ 6] [011000] +15:33:37 [ 4] [ 12] [000080000000] +15:33:37 [ 7] [ 10] [0320083243] +15:33:37 [ 11] [ 6] [270063] +15:33:37 [ 12] [ 6] [153243] +15:33:37 [ 13] [ 4] [0320] +15:33:37 [ 14] [ 4] [4309] +15:33:37 [ 15] [ 4] [0320] +15:33:37 [ 18] [ 4] [6011] +15:33:37 [ 19] [ 3] [418] +15:33:37 [ 22] [ 3] [021] +15:33:37 [ 25] [ 2] [01] +15:33:37 [ 28] [ 9] [D00002000] +15:33:37 [ 32] [ 6] [180893] +15:33:37 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:33:37 [ 37] [ 12] [507908270063] +15:33:37 [ 41] [ 8] [0110VTBR] +15:33:37 [ 42] [ 15] [999999 ] +15:33:37 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:33:37 [ 49] [ 3] [418] +15:33:37 [ 52] [ 16] [1A8D8A3D3CCB94DB] +15:33:37 ============================================================================ +15:33:37 + + +waiting on router queue for slot.... +15:33:37 Sending to : +15:33:37 ============================================================================ +15:33:37 ============================================================================ +15:33:37 Slot Id : <271> +15:33:37 Transaction Type : REQUEST +15:33:37 Received From : +15:33:37 ============================================================================ +15:33:37 FNo. Len. Field Value +15:33:37 ============================================================================ +15:33:37 [ 1] [ 4] [0200] +15:33:37 [ 2] [ 16] [6688990105394108] +15:33:37 [ 3] [ 6] [011000] +15:33:37 [ 4] [ 12] [000080000000] +15:33:37 [ 7] [ 10] [0320083243] +15:33:37 [ 11] [ 6] [270063] +15:33:37 [ 12] [ 6] [153243] +15:33:37 [ 13] [ 4] [0320] +15:33:37 [ 14] [ 4] [4309] +15:33:37 [ 15] [ 4] [0320] +15:33:37 [ 18] [ 4] [6011] +15:33:37 [ 19] [ 3] [418] +15:33:37 [ 22] [ 3] [021] +15:33:37 [ 25] [ 2] [01] +15:33:37 [ 28] [ 9] [D00002000] +15:33:37 [ 32] [ 6] [180893] +15:33:37 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:33:37 [ 37] [ 12] [507908270063] +15:33:37 [ 41] [ 8] [0110VTBR] +15:33:37 [ 42] [ 15] [999999 ] +15:33:37 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:33:37 [ 49] [ 3] [418] +15:33:37 [ 52] [ 16] [3DADA33D54D48C28] +15:33:37 ============================================================================ +15:33:37 + + +waiting on router queue for slot.... +15:33:37 Sending to : <0> +15:33:37 ============================================================================ +15:33:37 ============================================================================ +15:33:37 Slot Id : <271> +15:33:37 Transaction Type : RESPONSE +15:33:37 Received From : +15:33:37 ============================================================================ +15:33:37 FNo. Len. Field Value +15:33:37 ============================================================================ +15:33:37 [ 1] [ 4] [0210] +15:33:37 [ 2] [ 16] [6688990105394108] +15:33:37 [ 3] [ 6] [011000] +15:33:37 [ 4] [ 12] [000080000000] +15:33:37 [ 7] [ 10] [0320083243] +15:33:37 [ 11] [ 6] [270063] +15:33:37 [ 12] [ 6] [153243] +15:33:37 [ 13] [ 4] [0320] +15:33:37 [ 15] [ 4] [0320] +15:33:37 [ 18] [ 4] [6011] +15:33:37 [ 19] [ 3] [418] +15:33:37 [ 22] [ 3] [021] +15:33:37 [ 32] [ 6] [180893] +15:33:37 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:33:37 [ 37] [ 12] [507908270063] +15:33:37 [ 39] [ 2] [14] +15:33:37 [ 41] [ 8] [0110VTBR] +15:33:37 [ 49] [ 3] [418] +15:33:37 ============================================================================ +15:33:37 Sending to : +15:33:37 ============================================================================ +15:33:37 + + +waiting on router queue for slot.... +15:33:38 ============================================================================ +15:33:38 Slot Id : <271> +15:33:38 Transaction Type : RESPONSE +15:33:38 Received From : +15:33:38 ============================================================================ +15:33:38 FNo. Len. Field Value +15:33:38 ============================================================================ +15:33:38 [ 1] [ 4] [0210] +15:33:38 [ 2] [ 16] [6688990105394108] +15:33:38 [ 3] [ 6] [011000] +15:33:38 [ 4] [ 12] [000080000000] +15:33:38 [ 7] [ 10] [0320083243] +15:33:38 [ 11] [ 6] [270063] +15:33:38 [ 12] [ 6] [153243] +15:33:38 [ 13] [ 4] [0320] +15:33:38 [ 15] [ 4] [0320] +15:33:38 [ 18] [ 4] [6011] +15:33:38 [ 19] [ 3] [418] +15:33:38 [ 22] [ 3] [021] +15:33:38 [ 32] [ 6] [180893] +15:33:38 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:33:38 [ 37] [ 12] [507908270063] +15:33:38 [ 39] [ 2] [14] +15:33:38 [ 41] [ 8] [0110VTBR] +15:33:38 [ 49] [ 3] [418] +15:33:38 ============================================================================ +15:33:38 Calculate Source COMM Id = 2 +15:33:38 ============================================================================ +15:33:38 + + +waiting on router queue for slot.... +15:33:41 ============================================================================ +15:33:41 Slot Id : <294> +15:33:41 Transaction Type : REQUEST +15:33:41 Received From : +15:33:41 ============================================================================ +15:33:41 FNo. Len. Field Value +15:33:41 ============================================================================ +15:33:41 [ 1] [ 4] [0200] +15:33:41 [ 2] [ 16] [6213544001913794] +15:33:41 [ 3] [ 6] [010000] +15:33:41 [ 4] [ 12] [000100000000] +15:33:41 [ 7] [ 10] [0320083248] +15:33:41 [ 11] [ 6] [270066] +15:33:41 [ 12] [ 6] [153248] +15:33:41 [ 13] [ 4] [0320] +15:33:41 [ 14] [ 4] [4912] +15:33:41 [ 15] [ 4] [0320] +15:33:41 [ 18] [ 4] [6011] +15:33:41 [ 19] [ 3] [418] +15:33:41 [ 22] [ 3] [021] +15:33:41 [ 25] [ 2] [01] +15:33:41 [ 28] [ 9] [D00002000] +15:33:41 [ 32] [ 6] [180893] +15:33:41 [ 35] [ 32] [6213544001913794=491212011379027] +15:33:41 [ 37] [ 12] [507908270066] +15:33:41 [ 41] [ 8] [0106NAXA] +15:33:41 [ 42] [ 15] [999999 ] +15:33:41 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +15:33:41 [ 49] [ 3] [418] +15:33:41 [ 52] [ 16] [098F956E0D831558] +15:33:41 ============================================================================ +15:33:41 + + +waiting on router queue for slot.... +15:33:41 Sending to : +15:33:41 ============================================================================ +15:33:41 Sending to : +15:33:41 ============================================================================ +15:33:42 ============================================================================ +15:33:42 Slot Id : <245> +15:33:42 Transaction Type : REQUEST +15:33:42 Received From : +15:33:42 ============================================================================ +15:33:42 FNo. Len. Field Value +15:33:42 ============================================================================ +15:33:42 [ 1] [ 4] [0800] +15:33:42 [ 7] [ 10] [0320224530] +15:33:42 [ 11] [ 6] [154530] +15:33:42 [ 37] [ 12] [57915154530] +15:33:42 [ 70] [ 3] [301] +15:33:42 ============================================================================ +15:33:42 + + +waiting on router queue for slot.... +15:33:42 Sending to : +15:33:42 ============================================================================ +15:33:42 ============================================================================ +15:33:42 Slot Id : <245> +15:33:42 Transaction Type : RESPONSE +15:33:42 Received From : +15:33:42 ============================================================================ +15:33:42 FNo. Len. Field Value +15:33:42 ============================================================================ +15:33:42 [ 1] [ 4] [0810] +15:33:42 [ 7] [ 10] [0320224530] +15:33:42 [ 11] [ 6] [154530] +15:33:42 [ 37] [ 12] [579151545300] +15:33:42 [ 39] [ 2] [00] +15:33:42 [ 70] [ 3] [810] +15:33:42 ============================================================================ +15:33:42 Calculate Source COMM Id = 6 +15:33:42 ============================================================================ +15:33:42 + + +waiting on router queue for slot.... +15:33:42 ============================================================================ +15:33:42 Slot Id : <294> +15:33:42 Transaction Type : REQUEST +15:33:42 Received From : +15:33:42 ============================================================================ +15:33:42 FNo. Len. Field Value +15:33:42 ============================================================================ +15:33:42 [ 1] [ 4] [0200] +15:33:42 [ 2] [ 16] [6213544001913794] +15:33:42 [ 3] [ 6] [010000] +15:33:42 [ 4] [ 12] [000100000000] +15:33:42 [ 7] [ 10] [0320083248] +15:33:42 [ 11] [ 6] [270066] +15:33:42 [ 12] [ 6] [153248] +15:33:42 [ 13] [ 4] [0320] +15:33:42 [ 14] [ 4] [4912] +15:33:42 [ 15] [ 4] [0320] +15:33:42 [ 18] [ 4] [6011] +15:33:42 [ 19] [ 3] [418] +15:33:42 [ 22] [ 3] [021] +15:33:42 [ 25] [ 2] [01] +15:33:42 [ 28] [ 9] [D00002000] +15:33:42 [ 32] [ 6] [180893] +15:33:42 [ 35] [ 32] [6213544001913794=491212011379027] +15:33:42 [ 37] [ 12] [507908270066] +15:33:42 [ 41] [ 8] [0106NAXA] +15:33:42 [ 42] [ 15] [999999 ] +15:33:42 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +15:33:42 [ 49] [ 3] [418] +15:33:42 [ 52] [ 16] [098F956E0D831558] +15:33:42 ============================================================================ +15:33:42 + + +waiting on router queue for slot.... +15:33:42 Sending to : +15:33:42 ============================================================================ +15:33:42 ============================================================================ +15:33:42 Slot Id : <294> +15:33:42 Transaction Type : REQUEST +15:33:42 Received From : +15:33:42 ============================================================================ +15:33:42 FNo. Len. Field Value +15:33:42 ============================================================================ +15:33:42 [ 1] [ 4] [0200] +15:33:42 [ 2] [ 16] [6213544001913794] +15:33:42 [ 3] [ 6] [010000] +15:33:42 [ 4] [ 12] [000100000000] +15:33:42 [ 7] [ 10] [0320083248] +15:33:42 [ 11] [ 6] [270066] +15:33:42 [ 12] [ 6] [153248] +15:33:42 [ 13] [ 4] [0320] +15:33:42 [ 14] [ 4] [4912] +15:33:42 [ 15] [ 4] [0320] +15:33:42 [ 18] [ 4] [6011] +15:33:42 [ 19] [ 3] [418] +15:33:42 [ 22] [ 3] [021] +15:33:42 [ 25] [ 2] [01] +15:33:42 [ 28] [ 9] [D00002000] +15:33:42 [ 32] [ 6] [180893] +15:33:42 [ 35] [ 32] [6213544001913794=491212011379027] +15:33:42 [ 37] [ 12] [507908270066] +15:33:42 [ 41] [ 8] [0106NAXA] +15:33:42 [ 42] [ 15] [999999 ] +15:33:42 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +15:33:42 [ 49] [ 3] [418] +15:33:42 [ 52] [ 16] [8CDF0F6E563C41AF] +15:33:42 ============================================================================ +15:33:42 + + +waiting on router queue for slot.... +15:33:42 Sending to : <0> +15:33:42 ============================================================================ +15:33:42 ============================================================================ +15:33:42 Slot Id : <294> +15:33:42 Transaction Type : RESPONSE +15:33:42 Received From : +15:33:42 ============================================================================ +15:33:42 FNo. Len. Field Value +15:33:42 ============================================================================ +15:33:42 [ 1] [ 4] [0210] +15:33:42 [ 2] [ 16] [6213544001913794] +15:33:42 [ 3] [ 6] [010000] +15:33:42 [ 4] [ 12] [000100000000] +15:33:42 [ 7] [ 10] [0320083248] +15:33:42 [ 11] [ 6] [270066] +15:33:42 [ 12] [ 6] [153248] +15:33:42 [ 13] [ 4] [0320] +15:33:42 [ 15] [ 4] [0320] +15:33:42 [ 18] [ 4] [6011] +15:33:42 [ 19] [ 3] [418] +15:33:42 [ 32] [ 6] [180893] +15:33:42 [ 35] [ 32] [6213544001913794=491212011379027] +15:33:42 [ 37] [ 12] [507908270066] +15:33:42 [ 38] [ 6] [601527] +15:33:42 [ 39] [ 2] [00] +15:33:42 [ 41] [ 8] [0106NAXA] +15:33:42 [ 49] [ 3] [418] +15:33:42 [ 54] [ 40] [0001418C0005672167730002418C000567216773] +15:33:42 ============================================================================ +15:33:42 Sending to : +15:33:42 ============================================================================ +15:33:42 + + +waiting on router queue for slot.... +15:33:44 ============================================================================ +15:33:44 Slot Id : <294> +15:33:44 Transaction Type : RESPONSE +15:33:44 Received From : +15:33:44 ============================================================================ +15:33:44 FNo. Len. Field Value +15:33:44 ============================================================================ +15:33:44 [ 1] [ 4] [0210] +15:33:44 [ 2] [ 16] [6213544001913794] +15:33:44 [ 3] [ 6] [010000] +15:33:44 [ 4] [ 12] [000100000000] +15:33:44 [ 7] [ 10] [0320083248] +15:33:44 [ 11] [ 6] [270066] +15:33:44 [ 12] [ 6] [153248] +15:33:44 [ 13] [ 4] [0320] +15:33:44 [ 15] [ 4] [0320] +15:33:44 [ 18] [ 4] [6011] +15:33:44 [ 19] [ 3] [418] +15:33:44 [ 32] [ 6] [180893] +15:33:44 [ 35] [ 32] [6213544001913794=491212011379027] +15:33:44 [ 37] [ 12] [507908270066] +15:33:44 [ 38] [ 6] [601527] +15:33:44 [ 39] [ 2] [00] +15:33:44 [ 41] [ 8] [0106NAXA] +15:33:44 [ 49] [ 3] [418] +15:33:44 [ 54] [ 40] [0001418C0005672167730002418C000567216773] +15:33:44 ============================================================================ +15:33:44 Calculate Source COMM Id = 2 +15:33:44 ============================================================================ +15:33:44 + + +waiting on router queue for slot.... +15:33:45 ============================================================================ +15:33:45 Slot Id : <236> +15:33:45 Transaction Type : REQUEST +15:33:45 Received From : +15:33:45 ============================================================================ +15:33:45 FNo. Len. Field Value +15:33:45 ============================================================================ +15:33:45 [ 1] [ 4] [0800] +15:33:45 [ 2] [ 5] [02531] +15:33:45 [ 3] [ 6] [579158] +15:33:45 [ 7] [ 10] [0320083345] +15:33:45 [ 11] [ 6] [807315] +15:33:45 [ 15] [ 10] [0320083345] +15:33:45 [ 37] [ 11] [57915807315] +15:33:45 [ 70] [ 3] [001] +15:33:45 ============================================================================ +15:33:45 + + +waiting on router queue for slot.... +15:33:45 ============================================================================ +15:33:45 Slot Id : <236> +15:33:45 Transaction Type : RESPONSE +15:33:45 Received From : +15:33:45 ============================================================================ +15:33:45 FNo. Len. Field Value +15:33:45 ============================================================================ +15:33:45 [ 1] [ 4] [0810] +15:33:45 [ 7] [ 10] [0320083345] +15:33:45 [ 11] [ 6] [807315] +15:33:45 [ 15] [ 4] [0320] +15:33:45 [ 37] [ 12] [57915807315] +15:33:45 [ 39] [ 2] [00] +15:33:45 [ 70] [ 3] [001] +15:33:45 ============================================================================ +15:33:45 Sending to : +15:33:45 ============================================================================ +15:33:45 + + +waiting on router queue for slot.... +15:33:56 ============================================================================ +15:33:56 Slot Id : <217> +15:33:56 Transaction Type : REQUEST +15:33:56 Received From : +15:33:56 ============================================================================ +15:33:56 FNo. Len. Field Value +15:33:56 ============================================================================ +15:33:56 [ 1] [ 4] [0200] +15:33:56 [ 2] [ 16] [6688990040049023] +15:33:56 [ 3] [ 6] [012000] +15:33:56 [ 4] [ 12] [000010000000] +15:33:56 [ 7] [ 10] [0320154143] +15:33:56 [ 11] [ 6] [240856] +15:33:56 [ 12] [ 6] [154143] +15:33:56 [ 13] [ 4] [0320] +15:33:56 [ 14] [ 4] [9712] +15:33:56 [ 15] [ 4] [0320] +15:33:56 [ 18] [ 4] [6011] +15:33:56 [ 22] [ 3] [900] +15:33:56 [ 25] [ 2] [02] +15:33:56 [ 28] [ 9] [D00002000] +15:33:56 [ 32] [ 6] [220699] +15:33:56 [ 35] [ 37] [6688990040049023=97121261889091400000] +15:33:56 [ 37] [ 12] [507900410447] +15:33:56 [ 41] [ 8] [08000300] +15:33:56 [ 42] [ 15] [APTRA ] +15:33:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:33:56 [ 49] [ 3] [418] +15:33:56 [ 52] [ 16] [5F3607670014AC60] +15:33:56 ============================================================================ +15:33:56 + + +waiting on router queue for slot.... +15:33:56 Sending to : +15:33:56 ============================================================================ +15:33:56 Sending to : +15:33:56 ============================================================================ +15:33:56 ============================================================================ +15:33:56 Slot Id : <217> +15:33:56 Transaction Type : REQUEST +15:33:56 Received From : +15:33:56 ============================================================================ +15:33:56 FNo. Len. Field Value +15:33:56 ============================================================================ +15:33:56 [ 1] [ 4] [0200] +15:33:56 [ 2] [ 16] [6688990040049023] +15:33:56 [ 3] [ 6] [012000] +15:33:56 [ 4] [ 12] [000010000000] +15:33:56 [ 7] [ 10] [0320154143] +15:33:56 [ 11] [ 6] [240856] +15:33:56 [ 12] [ 6] [154143] +15:33:56 [ 13] [ 4] [0320] +15:33:56 [ 14] [ 4] [9712] +15:33:56 [ 15] [ 4] [0320] +15:33:56 [ 18] [ 4] [6011] +15:33:56 [ 22] [ 3] [900] +15:33:56 [ 25] [ 2] [02] +15:33:56 [ 28] [ 9] [D00002000] +15:33:56 [ 32] [ 6] [220699] +15:33:56 [ 35] [ 37] [6688990040049023=97121261889091400000] +15:33:56 [ 37] [ 12] [507900410447] +15:33:56 [ 41] [ 8] [08000300] +15:33:56 [ 42] [ 15] [APTRA ] +15:33:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:33:56 [ 49] [ 3] [418] +15:33:56 [ 52] [ 16] [5F3607670014AC60] +15:33:56 ============================================================================ +15:33:56 + + +waiting on router queue for slot.... +15:33:56 Sending to : +15:33:56 ============================================================================ +15:33:56 ============================================================================ +15:33:56 Slot Id : <217> +15:33:56 Transaction Type : REQUEST +15:33:56 Received From : +15:33:56 ============================================================================ +15:33:56 FNo. Len. Field Value +15:33:56 ============================================================================ +15:33:56 [ 1] [ 4] [0200] +15:33:56 [ 2] [ 16] [6688990040049023] +15:33:56 [ 3] [ 6] [012000] +15:33:56 [ 4] [ 12] [000010000000] +15:33:56 [ 7] [ 10] [0320154143] +15:33:56 [ 11] [ 6] [240856] +15:33:56 [ 12] [ 6] [154143] +15:33:56 [ 13] [ 4] [0320] +15:33:56 [ 14] [ 4] [9712] +15:33:56 [ 15] [ 4] [0320] +15:33:56 [ 18] [ 4] [6011] +15:33:56 [ 22] [ 3] [900] +15:33:56 [ 25] [ 2] [02] +15:33:56 [ 28] [ 9] [D00002000] +15:33:56 [ 32] [ 6] [220699] +15:33:56 [ 35] [ 37] [6688990040049023=97121261889091400000] +15:33:56 [ 37] [ 12] [507900410447] +15:33:56 [ 41] [ 8] [08000300] +15:33:56 [ 42] [ 15] [APTRA ] +15:33:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:33:56 [ 49] [ 3] [418] +15:33:56 [ 52] [ 16] [8B3056F85ED7421F] +15:33:56 ============================================================================ +15:33:56 + + +waiting on router queue for slot.... +15:33:56 Sending to : <0> +15:33:56 ============================================================================ +15:33:56 ============================================================================ +15:33:56 Slot Id : <217> +15:33:56 Transaction Type : RESPONSE +15:33:56 Received From : +15:33:56 ============================================================================ +15:33:56 FNo. Len. Field Value +15:33:56 ============================================================================ +15:33:56 [ 1] [ 4] [0210] +15:33:56 [ 2] [ 16] [6688990040049023] +15:33:56 [ 3] [ 6] [012000] +15:33:56 [ 4] [ 12] [000010000000] +15:33:56 [ 7] [ 10] [0320154143] +15:33:56 [ 11] [ 6] [240856] +15:33:56 [ 12] [ 6] [154143] +15:33:56 [ 13] [ 4] [0320] +15:33:56 [ 15] [ 4] [0320] +15:33:56 [ 18] [ 4] [6011] +15:33:56 [ 22] [ 3] [900] +15:33:56 [ 32] [ 6] [220699] +15:33:56 [ 35] [ 37] [6688990040049023=97121261889091400000] +15:33:56 [ 37] [ 12] [507900410447] +15:33:56 [ 39] [ 2] [14] +15:33:56 [ 41] [ 8] [08000300] +15:33:56 [ 49] [ 3] [418] +15:33:56 ============================================================================ +15:33:56 Sending to : +15:33:56 ============================================================================ +15:33:56 + + +waiting on router queue for slot.... +15:33:57 ============================================================================ +15:33:57 Slot Id : <217> +15:33:57 Transaction Type : RESPONSE +15:33:57 Received From : +15:33:57 ============================================================================ +15:33:57 FNo. Len. Field Value +15:33:57 ============================================================================ +15:33:57 [ 1] [ 4] [0210] +15:33:57 [ 2] [ 16] [6688990040049023] +15:33:57 [ 3] [ 6] [012000] +15:33:57 [ 4] [ 12] [000010000000] +15:33:57 [ 7] [ 10] [0320154143] +15:33:57 [ 11] [ 6] [240856] +15:33:57 [ 12] [ 6] [154143] +15:33:57 [ 13] [ 4] [0320] +15:33:57 [ 15] [ 4] [0320] +15:33:57 [ 18] [ 4] [6011] +15:33:57 [ 22] [ 3] [900] +15:33:57 [ 32] [ 6] [220699] +15:33:57 [ 35] [ 37] [6688990040049023=97121261889091400000] +15:33:57 [ 37] [ 12] [507900410447] +15:33:57 [ 39] [ 2] [14] +15:33:57 [ 41] [ 8] [08000300] +15:33:57 [ 49] [ 3] [418] +15:33:57 ============================================================================ +15:33:57 Calculate Source COMM Id = 1 +15:33:57 ============================================================================ +15:33:57 + + +waiting on router queue for slot.... +15:33:57 ============================================================================ +15:33:57 Slot Id : <303> +15:33:57 Transaction Type : REQUEST +15:33:57 Received From : +15:33:57 ============================================================================ +15:33:57 FNo. Len. Field Value +15:33:57 ============================================================================ +15:33:57 [ 1] [ 4] [0800] +15:33:57 [ 7] [ 10] [0320083304] +15:33:57 [ 11] [ 6] [157037] +15:33:57 [ 70] [ 3] [301] +15:33:57 ============================================================================ +15:33:57 + + +waiting on router queue for slot.... +15:33:57 Sending to : +15:33:57 ============================================================================ +15:33:57 ============================================================================ +15:33:57 Slot Id : <303> +15:33:57 Transaction Type : RESPONSE +15:33:57 Received From : +15:33:57 ============================================================================ +15:33:57 FNo. Len. Field Value +15:33:57 ============================================================================ +15:33:57 [ 1] [ 4] [0810] +15:33:57 [ 7] [ 10] [0320083304] +15:33:57 [ 11] [ 6] [157037] +15:33:57 [ 39] [ 2] [00] +15:33:57 [ 70] [ 3] [301] +15:33:57 ============================================================================ +15:33:57 Calculate Source COMM Id = 2 +15:33:57 ============================================================================ +15:33:57 + + +waiting on router queue for slot.... +15:34:08 ============================================================================ +15:34:08 Slot Id : <298> +15:34:08 Transaction Type : REQUEST +15:34:08 Received From : +15:34:08 ============================================================================ +15:34:08 FNo. Len. Field Value +15:34:08 ============================================================================ +15:34:08 [ 1] [ 4] [0800] +15:34:08 [ 7] [ 10] [0320083315] +15:34:08 [ 11] [ 6] [157038] +15:34:08 [ 70] [ 3] [301] +15:34:08 ============================================================================ +15:34:08 + + +waiting on router queue for slot.... +15:34:08 Sending to : +15:34:08 ============================================================================ +15:34:08 ============================================================================ +15:34:08 Slot Id : <298> +15:34:08 Transaction Type : RESPONSE +15:34:08 Received From : +15:34:08 ============================================================================ +15:34:08 FNo. Len. Field Value +15:34:08 ============================================================================ +15:34:08 [ 1] [ 4] [0810] +15:34:08 [ 7] [ 10] [0320083315] +15:34:08 [ 11] [ 6] [157038] +15:34:08 [ 39] [ 2] [00] +15:34:08 [ 70] [ 3] [301] +15:34:08 ============================================================================ +15:34:08 Calculate Source COMM Id = 2 +15:34:08 ============================================================================ +15:34:08 + + +waiting on router queue for slot.... +15:34:18 ============================================================================ +15:34:18 Slot Id : <293> +15:34:18 Transaction Type : REQUEST +15:34:18 Received From : +15:34:18 ============================================================================ +15:34:18 FNo. Len. Field Value +15:34:18 ============================================================================ +15:34:18 [ 1] [ 4] [0800] +15:34:18 [ 7] [ 10] [0320083325] +15:34:18 [ 11] [ 6] [157039] +15:34:18 [ 70] [ 3] [301] +15:34:18 ============================================================================ +15:34:18 + + +waiting on router queue for slot.... +15:34:18 Sending to : +15:34:18 ============================================================================ +15:34:18 ============================================================================ +15:34:18 Slot Id : <293> +15:34:18 Transaction Type : RESPONSE +15:34:18 Received From : +15:34:18 ============================================================================ +15:34:18 FNo. Len. Field Value +15:34:18 ============================================================================ +15:34:18 [ 1] [ 4] [0810] +15:34:18 [ 7] [ 10] [0320083325] +15:34:18 [ 11] [ 6] [157039] +15:34:18 [ 39] [ 2] [00] +15:34:18 [ 70] [ 3] [301] +15:34:18 ============================================================================ +15:34:18 Calculate Source COMM Id = 2 +15:34:18 ============================================================================ +15:34:18 + + +waiting on router queue for slot.... +15:34:27 ============================================================================ +15:34:27 Slot Id : <257> +15:34:27 Transaction Type : REQUEST +15:34:27 Received From : +15:34:27 ============================================================================ +15:34:27 FNo. Len. Field Value +15:34:27 ============================================================================ +15:34:27 [ 1] [ 4] [0200] +15:34:27 [ 2] [ 16] [6688990105394108] +15:34:27 [ 3] [ 6] [301000] +15:34:27 [ 7] [ 10] [0320083334] +15:34:27 [ 11] [ 6] [270071] +15:34:27 [ 12] [ 6] [153334] +15:34:27 [ 13] [ 4] [0320] +15:34:27 [ 14] [ 4] [4309] +15:34:27 [ 15] [ 4] [0320] +15:34:27 [ 18] [ 4] [6011] +15:34:27 [ 19] [ 3] [418] +15:34:27 [ 22] [ 3] [021] +15:34:27 [ 25] [ 2] [01] +15:34:27 [ 32] [ 6] [180893] +15:34:27 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:34:27 [ 37] [ 12] [507908270071] +15:34:27 [ 41] [ 8] [0110VTBR] +15:34:27 [ 42] [ 15] [999999 ] +15:34:27 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:34:27 [ 49] [ 3] [418] +15:34:27 [ 52] [ 16] [1A8D8A3D3CCB94DB] +15:34:27 ============================================================================ +15:34:27 + + +waiting on router queue for slot.... +15:34:27 Sending to : +15:34:27 ============================================================================ +15:34:27 Sending to : +15:34:27 ============================================================================ +15:34:28 ============================================================================ +15:34:28 Slot Id : <257> +15:34:28 Transaction Type : REQUEST +15:34:28 Received From : +15:34:28 ============================================================================ +15:34:28 FNo. Len. Field Value +15:34:28 ============================================================================ +15:34:28 [ 1] [ 4] [0200] +15:34:28 [ 2] [ 16] [6688990105394108] +15:34:28 [ 3] [ 6] [301000] +15:34:28 [ 7] [ 10] [0320083334] +15:34:28 [ 11] [ 6] [270071] +15:34:28 [ 12] [ 6] [153334] +15:34:28 [ 13] [ 4] [0320] +15:34:28 [ 14] [ 4] [4309] +15:34:28 [ 15] [ 4] [0320] +15:34:28 [ 18] [ 4] [6011] +15:34:28 [ 19] [ 3] [418] +15:34:28 [ 22] [ 3] [021] +15:34:28 [ 25] [ 2] [01] +15:34:28 [ 32] [ 6] [180893] +15:34:28 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:34:28 [ 37] [ 12] [507908270071] +15:34:28 [ 41] [ 8] [0110VTBR] +15:34:28 [ 42] [ 15] [999999 ] +15:34:28 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:34:28 [ 49] [ 3] [418] +15:34:28 [ 52] [ 16] [1A8D8A3D3CCB94DB] +15:34:28 ============================================================================ +15:34:28 + + +waiting on router queue for slot.... +15:34:28 Sending to : +15:34:28 ============================================================================ +15:34:28 ============================================================================ +15:34:28 Slot Id : <257> +15:34:28 Transaction Type : REQUEST +15:34:28 Received From : +15:34:28 ============================================================================ +15:34:28 FNo. Len. Field Value +15:34:28 ============================================================================ +15:34:28 [ 1] [ 4] [0200] +15:34:28 [ 2] [ 16] [6688990105394108] +15:34:28 [ 3] [ 6] [301000] +15:34:28 [ 7] [ 10] [0320083334] +15:34:28 [ 11] [ 6] [270071] +15:34:28 [ 12] [ 6] [153334] +15:34:28 [ 13] [ 4] [0320] +15:34:28 [ 14] [ 4] [4309] +15:34:28 [ 15] [ 4] [0320] +15:34:28 [ 18] [ 4] [6011] +15:34:28 [ 19] [ 3] [418] +15:34:28 [ 22] [ 3] [021] +15:34:28 [ 25] [ 2] [01] +15:34:28 [ 32] [ 6] [180893] +15:34:28 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:34:28 [ 37] [ 12] [507908270071] +15:34:28 [ 41] [ 8] [0110VTBR] +15:34:28 [ 42] [ 15] [999999 ] +15:34:28 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:34:28 [ 49] [ 3] [418] +15:34:28 [ 52] [ 16] [3DADA33D54D48C28] +15:34:28 ============================================================================ +15:34:28 + + +waiting on router queue for slot.... +15:34:28 Sending to : <0> +15:34:28 ============================================================================ +15:34:28 ============================================================================ +15:34:28 Slot Id : <257> +15:34:28 Transaction Type : RESPONSE +15:34:28 Received From : +15:34:28 ============================================================================ +15:34:28 FNo. Len. Field Value +15:34:28 ============================================================================ +15:34:28 [ 1] [ 4] [0210] +15:34:28 [ 2] [ 16] [6688990105394108] +15:34:28 [ 3] [ 6] [301000] +15:34:28 [ 4] [ 12] [000000000000] +15:34:28 [ 7] [ 10] [0320083334] +15:34:28 [ 11] [ 6] [270071] +15:34:28 [ 12] [ 6] [153334] +15:34:28 [ 13] [ 4] [0320] +15:34:28 [ 15] [ 4] [0320] +15:34:28 [ 18] [ 4] [6011] +15:34:28 [ 19] [ 3] [418] +15:34:28 [ 22] [ 3] [021] +15:34:28 [ 32] [ 6] [180893] +15:34:28 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:34:28 [ 37] [ 12] [507908270071] +15:34:28 [ 39] [ 2] [14] +15:34:28 [ 41] [ 8] [0110VTBR] +15:34:28 [ 49] [ 3] [418] +15:34:28 ============================================================================ +15:34:28 Sending to : +15:34:28 ============================================================================ +15:34:28 + + +waiting on router queue for slot.... +15:34:29 ============================================================================ +15:34:29 Slot Id : <257> +15:34:29 Transaction Type : RESPONSE +15:34:29 Received From : +15:34:29 ============================================================================ +15:34:29 FNo. Len. Field Value +15:34:29 ============================================================================ +15:34:29 [ 1] [ 4] [0210] +15:34:29 [ 2] [ 16] [6688990105394108] +15:34:29 [ 3] [ 6] [301000] +15:34:29 [ 4] [ 12] [000000000000] +15:34:29 [ 7] [ 10] [0320083334] +15:34:29 [ 11] [ 6] [270071] +15:34:29 [ 12] [ 6] [153334] +15:34:29 [ 13] [ 4] [0320] +15:34:29 [ 15] [ 4] [0320] +15:34:29 [ 18] [ 4] [6011] +15:34:29 [ 19] [ 3] [418] +15:34:29 [ 22] [ 3] [021] +15:34:29 [ 32] [ 6] [180893] +15:34:29 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:34:29 [ 37] [ 12] [507908270071] +15:34:29 [ 39] [ 2] [14] +15:34:29 [ 41] [ 8] [0110VTBR] +15:34:29 [ 49] [ 3] [418] +15:34:29 ============================================================================ +15:34:29 Calculate Source COMM Id = 2 +15:34:29 ============================================================================ +15:34:29 + + +waiting on router queue for slot.... +15:34:30 ============================================================================ +15:34:30 Slot Id : <299> +15:34:30 Transaction Type : REQUEST +15:34:30 Received From : +15:34:30 ============================================================================ +15:34:30 FNo. Len. Field Value +15:34:30 ============================================================================ +15:34:30 [ 1] [ 4] [0800] +15:34:30 [ 7] [ 10] [0320083335] +15:34:30 [ 11] [ 6] [157040] +15:34:30 [ 70] [ 3] [301] +15:34:30 ============================================================================ +15:34:30 + + +waiting on router queue for slot.... +15:34:30 Sending to : +15:34:30 ============================================================================ +15:34:30 ============================================================================ +15:34:30 Slot Id : <299> +15:34:30 Transaction Type : RESPONSE +15:34:30 Received From : +15:34:30 ============================================================================ +15:34:30 FNo. Len. Field Value +15:34:30 ============================================================================ +15:34:30 [ 1] [ 4] [0810] +15:34:30 [ 7] [ 10] [0320083335] +15:34:30 [ 11] [ 6] [157040] +15:34:30 [ 39] [ 2] [00] +15:34:30 [ 70] [ 3] [301] +15:34:30 ============================================================================ +15:34:30 Calculate Source COMM Id = 2 +15:34:30 ============================================================================ +15:34:30 + + +waiting on router queue for slot.... +15:34:44 ============================================================================ +15:34:44 Slot Id : <278> +15:34:44 Transaction Type : REQUEST +15:34:44 Received From : +15:34:44 ============================================================================ +15:34:44 FNo. Len. Field Value +15:34:44 ============================================================================ +15:34:44 [ 1] [ 4] [0800] +15:34:44 [ 7] [ 10] [0320083351] +15:34:44 [ 11] [ 6] [157041] +15:34:44 [ 70] [ 3] [301] +15:34:44 ============================================================================ +15:34:44 + + +waiting on router queue for slot.... +15:34:44 Sending to : +15:34:44 ============================================================================ +15:34:44 ============================================================================ +15:34:44 Slot Id : <278> +15:34:44 Transaction Type : RESPONSE +15:34:44 Received From : +15:34:44 ============================================================================ +15:34:44 FNo. Len. Field Value +15:34:44 ============================================================================ +15:34:44 [ 1] [ 4] [0810] +15:34:44 [ 7] [ 10] [0320083351] +15:34:44 [ 11] [ 6] [157041] +15:34:44 [ 39] [ 2] [00] +15:34:44 [ 70] [ 3] [301] +15:34:44 ============================================================================ +15:34:44 Calculate Source COMM Id = 2 +15:34:44 ============================================================================ +15:34:44 + + +waiting on router queue for slot.... +15:34:47 ============================================================================ +15:34:47 Slot Id : <281> +15:34:47 Transaction Type : REQUEST +15:34:47 Received From : +15:34:47 ============================================================================ +15:34:47 FNo. Len. Field Value +15:34:47 ============================================================================ +15:34:47 [ 1] [ 4] [0800] +15:34:47 [ 2] [ 5] [02531] +15:34:47 [ 3] [ 6] [579158] +15:34:47 [ 7] [ 10] [0320083447] +15:34:47 [ 11] [ 6] [807316] +15:34:47 [ 15] [ 10] [0320083447] +15:34:47 [ 37] [ 11] [57915807316] +15:34:47 [ 70] [ 3] [001] +15:34:47 ============================================================================ +15:34:47 + + +waiting on router queue for slot.... +15:34:47 ============================================================================ +15:34:47 Slot Id : <281> +15:34:47 Transaction Type : RESPONSE +15:34:47 Received From : +15:34:47 ============================================================================ +15:34:47 FNo. Len. Field Value +15:34:47 ============================================================================ +15:34:47 [ 1] [ 4] [0810] +15:34:47 [ 7] [ 10] [0320083447] +15:34:47 [ 11] [ 6] [807316] +15:34:47 [ 15] [ 4] [0320] +15:34:47 [ 37] [ 12] [57915807316] +15:34:47 [ 39] [ 2] [00] +15:34:47 [ 70] [ 3] [001] +15:34:47 ============================================================================ +15:34:47 Sending to : +15:34:47 ============================================================================ +15:34:47 + + +waiting on router queue for slot.... +15:34:47 ============================================================================ +15:34:47 Slot Id : <300> +15:34:47 Transaction Type : REQUEST +15:34:47 Received From : +15:34:47 ============================================================================ +15:34:47 FNo. Len. Field Value +15:34:47 ============================================================================ +15:34:47 [ 1] [ 4] [0800] +15:34:47 [ 7] [ 10] [0320224635] +15:34:47 [ 11] [ 6] [154635] +15:34:47 [ 37] [ 12] [57915154635] +15:34:47 [ 70] [ 3] [301] +15:34:47 ============================================================================ +15:34:47 + + +waiting on router queue for slot.... +15:34:47 Sending to : +15:34:47 ============================================================================ +15:34:47 ============================================================================ +15:34:47 Slot Id : <300> +15:34:47 Transaction Type : RESPONSE +15:34:47 Received From : +15:34:47 ============================================================================ +15:34:47 FNo. Len. Field Value +15:34:47 ============================================================================ +15:34:47 [ 1] [ 4] [0810] +15:34:47 [ 7] [ 10] [0320224635] +15:34:47 [ 11] [ 6] [154635] +15:34:47 [ 37] [ 12] [579151546350] +15:34:47 [ 39] [ 2] [00] +15:34:47 [ 70] [ 3] [810] +15:34:47 ============================================================================ +15:34:47 Calculate Source COMM Id = 6 +15:34:47 ============================================================================ +15:34:47 + + +waiting on router queue for slot.... +15:34:54 ============================================================================ +15:34:54 Slot Id : <308> +15:34:54 Transaction Type : REQUEST +15:34:54 Received From : +15:34:54 ============================================================================ +15:34:54 FNo. Len. Field Value +15:34:54 ============================================================================ +15:34:54 [ 1] [ 4] [0800] +15:34:54 [ 7] [ 10] [0320083401] +15:34:54 [ 11] [ 6] [157042] +15:34:54 [ 70] [ 3] [301] +15:34:54 ============================================================================ +15:34:54 + + +waiting on router queue for slot.... +15:34:54 Sending to : +15:34:54 ============================================================================ +15:34:54 ============================================================================ +15:34:54 Slot Id : <308> +15:34:54 Transaction Type : RESPONSE +15:34:54 Received From : +15:34:54 ============================================================================ +15:34:54 FNo. Len. Field Value +15:34:54 ============================================================================ +15:34:54 [ 1] [ 4] [0810] +15:34:54 [ 7] [ 10] [0320083401] +15:34:54 [ 11] [ 6] [157042] +15:34:54 [ 39] [ 2] [00] +15:34:54 [ 70] [ 3] [301] +15:34:54 ============================================================================ +15:34:54 Calculate Source COMM Id = 2 +15:34:54 ============================================================================ +15:34:54 + + +waiting on router queue for slot.... +15:34:54 ============================================================================ +15:34:54 Slot Id : <295> +15:34:54 Transaction Type : REQUEST +15:34:54 Received From : +15:34:54 ============================================================================ +15:34:54 FNo. Len. Field Value +15:34:54 ============================================================================ +15:34:54 [ 1] [ 4] [0800] +15:34:54 [ 7] [ 10] [0320084242] +15:34:54 [ 11] [ 6] [082179] +15:34:54 [ 37] [ 12] [57915082179] +15:34:54 [ 70] [ 3] [301] +15:34:54 ============================================================================ +15:34:54 + + +waiting on router queue for slot.... +15:34:54 Sending to : +15:34:54 ============================================================================ +15:34:54 ============================================================================ +15:34:54 Slot Id : <295> +15:34:54 Transaction Type : RESPONSE +15:34:54 Received From : +15:34:54 ============================================================================ +15:34:54 FNo. Len. Field Value +15:34:54 ============================================================================ +15:34:54 [ 1] [ 4] [0810] +15:34:54 [ 7] [ 10] [0320084242] +15:34:54 [ 11] [ 6] [082179] +15:34:54 [ 37] [ 12] [579150821790] +15:34:54 [ 39] [ 2] [00] +15:34:54 [ 70] [ 3] [810] +15:34:54 ============================================================================ +15:34:54 Calculate Source COMM Id = 1 +15:34:54 ============================================================================ +15:34:54 + + +waiting on router queue for slot.... +15:34:55 ============================================================================ +15:34:55 Slot Id : <296> +15:34:55 Transaction Type : REQUEST +15:34:55 Received From : +15:34:55 ============================================================================ +15:34:55 FNo. Len. Field Value +15:34:55 ============================================================================ +15:34:55 [ 1] [ 4] [0200] +15:34:55 [ 2] [ 16] [6688990105648602] +15:34:55 [ 3] [ 6] [302000] +15:34:55 [ 4] [ 12] [000000000000] +15:34:55 [ 7] [ 10] [0320153450] +15:34:55 [ 11] [ 6] [785620] +15:34:55 [ 12] [ 6] [153450] +15:34:55 [ 13] [ 4] [0320] +15:34:55 [ 15] [ 4] [0320] +15:34:55 [ 18] [ 4] [6011] +15:34:55 [ 22] [ 3] [900] +15:34:55 [ 25] [ 2] [02] +15:34:55 [ 28] [ 9] [D00000000] +15:34:55 [ 32] [ 6] [621354] +15:34:55 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:34:55 [ 37] [ 12] [507904635761] +15:34:55 [ 41] [ 8] [17000800] +15:34:55 [ 42] [ 15] [NATIVE ] +15:34:55 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:34:55 [ 49] [ 3] [418] +15:34:55 [ 52] [ 16] [998CDE3662A6009F] +15:34:55 ============================================================================ +15:34:55 + + +waiting on router queue for slot.... +15:34:55 Sending to : +15:34:55 ============================================================================ +15:34:55 Sending to : +15:34:55 ============================================================================ +15:34:55 ============================================================================ +15:34:55 Slot Id : <296> +15:34:55 Transaction Type : REQUEST +15:34:55 Received From : +15:34:55 ============================================================================ +15:34:55 FNo. Len. Field Value +15:34:55 ============================================================================ +15:34:55 [ 1] [ 4] [0200] +15:34:55 [ 2] [ 16] [6688990105648602] +15:34:55 [ 3] [ 6] [302000] +15:34:55 [ 4] [ 12] [000000000000] +15:34:55 [ 7] [ 10] [0320153450] +15:34:55 [ 11] [ 6] [785620] +15:34:55 [ 12] [ 6] [153450] +15:34:55 [ 13] [ 4] [0320] +15:34:55 [ 15] [ 4] [0320] +15:34:55 [ 18] [ 4] [6011] +15:34:55 [ 22] [ 3] [900] +15:34:55 [ 25] [ 2] [02] +15:34:55 [ 28] [ 9] [D00000000] +15:34:55 [ 32] [ 6] [621354] +15:34:55 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:34:55 [ 37] [ 12] [507904635761] +15:34:55 [ 41] [ 8] [17000800] +15:34:55 [ 42] [ 15] [NATIVE ] +15:34:55 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:34:55 [ 49] [ 3] [418] +15:34:55 [ 52] [ 16] [998CDE3662A6009F] +15:34:55 ============================================================================ +15:34:55 + + +waiting on router queue for slot.... +15:34:55 Sending to : +15:34:55 ============================================================================ +15:34:55 ============================================================================ +15:34:55 Slot Id : <296> +15:34:55 Transaction Type : REQUEST +15:34:55 Received From : +15:34:55 ============================================================================ +15:34:55 FNo. Len. Field Value +15:34:55 ============================================================================ +15:34:55 [ 1] [ 4] [0200] +15:34:55 [ 2] [ 16] [6688990105648602] +15:34:55 [ 3] [ 6] [302000] +15:34:55 [ 4] [ 12] [000000000000] +15:34:55 [ 7] [ 10] [0320153450] +15:34:55 [ 11] [ 6] [785620] +15:34:55 [ 12] [ 6] [153450] +15:34:55 [ 13] [ 4] [0320] +15:34:55 [ 15] [ 4] [0320] +15:34:55 [ 18] [ 4] [6011] +15:34:55 [ 22] [ 3] [900] +15:34:55 [ 25] [ 2] [02] +15:34:55 [ 28] [ 9] [D00000000] +15:34:55 [ 32] [ 6] [621354] +15:34:55 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:34:55 [ 37] [ 12] [507904635761] +15:34:55 [ 41] [ 8] [17000800] +15:34:55 [ 42] [ 15] [NATIVE ] +15:34:55 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:34:55 [ 49] [ 3] [418] +15:34:55 [ 52] [ 16] [4EB2AD8539A02440] +15:34:55 ============================================================================ +15:34:55 + + +waiting on router queue for slot.... +15:34:55 Sending to : <4> +15:34:55 ============================================================================ +15:34:56 ============================================================================ +15:34:56 Slot Id : <296> +15:34:56 Transaction Type : RESPONSE +15:34:56 Received From : +15:34:56 ============================================================================ +15:34:56 FNo. Len. Field Value +15:34:56 ============================================================================ +15:34:56 [ 1] [ 4] [0210] +15:34:56 [ 2] [ 16] [6688990105648602] +15:34:56 [ 3] [ 6] [302000] +15:34:56 [ 4] [ 12] [000000000000] +15:34:56 [ 11] [ 6] [785620] +15:34:56 [ 12] [ 6] [153450] +15:34:56 [ 15] [ 4] [0320] +15:34:56 [ 18] [ 4] [6011] +15:34:56 [ 32] [ 6] [621354] +15:34:56 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:34:56 [ 37] [ 12] [507904635761] +15:34:56 [ 38] [ 6] [898973] +15:34:56 [ 39] [ 2] [00] +15:34:56 [ 41] [ 8] [17000800] +15:34:56 [ 49] [ 3] [418] +15:34:56 [ 54] [ 20] [2002418C000411271798] +15:34:56 ============================================================================ +15:34:56 Sending to : +15:34:56 ============================================================================ +15:34:56 + + +waiting on router queue for slot.... +15:34:58 ============================================================================ +15:34:58 Slot Id : <296> +15:34:58 Transaction Type : RESPONSE +15:34:58 Received From : +15:34:58 ============================================================================ +15:34:58 FNo. Len. Field Value +15:34:58 ============================================================================ +15:34:58 [ 1] [ 4] [0210] +15:34:58 [ 2] [ 16] [6688990105648602] +15:34:58 [ 3] [ 6] [302000] +15:34:58 [ 4] [ 12] [000000000000] +15:34:58 [ 11] [ 6] [785620] +15:34:58 [ 12] [ 6] [153450] +15:34:58 [ 15] [ 4] [0320] +15:34:58 [ 18] [ 4] [6011] +15:34:58 [ 32] [ 6] [621354] +15:34:58 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:34:58 [ 37] [ 12] [507904635761] +15:34:58 [ 38] [ 6] [898973] +15:34:58 [ 39] [ 2] [00] +15:34:58 [ 41] [ 8] [17000800] +15:34:58 [ 49] [ 3] [418] +15:34:58 [ 54] [ 20] [2002418C000411271798] +15:34:58 ============================================================================ +15:34:58 Calculate Source COMM Id = 0 +15:34:58 ============================================================================ +15:34:58 + + +waiting on router queue for slot.... +15:35:04 ============================================================================ +15:35:04 Slot Id : <286> +15:35:04 Transaction Type : REQUEST +15:35:04 Received From : +15:35:04 ============================================================================ +15:35:04 FNo. Len. Field Value +15:35:04 ============================================================================ +15:35:04 [ 1] [ 4] [0800] +15:35:04 [ 7] [ 10] [0320083412] +15:35:04 [ 11] [ 6] [157043] +15:35:04 [ 70] [ 3] [301] +15:35:04 ============================================================================ +15:35:04 + + +waiting on router queue for slot.... +15:35:04 Sending to : +15:35:04 ============================================================================ +15:35:04 ============================================================================ +15:35:04 Slot Id : <286> +15:35:04 Transaction Type : RESPONSE +15:35:04 Received From : +15:35:04 ============================================================================ +15:35:04 FNo. Len. Field Value +15:35:04 ============================================================================ +15:35:04 [ 1] [ 4] [0810] +15:35:04 [ 7] [ 10] [0320083412] +15:35:04 [ 11] [ 6] [157043] +15:35:04 [ 39] [ 2] [00] +15:35:04 [ 70] [ 3] [301] +15:35:04 ============================================================================ +15:35:04 Calculate Source COMM Id = 2 +15:35:04 ============================================================================ +15:35:04 + + +waiting on router queue for slot.... +15:35:15 ============================================================================ +15:35:15 Slot Id : <283> +15:35:15 Transaction Type : REQUEST +15:35:15 Received From : +15:35:15 ============================================================================ +15:35:15 FNo. Len. Field Value +15:35:15 ============================================================================ +15:35:15 [ 1] [ 4] [0800] +15:35:15 [ 7] [ 10] [0320083422] +15:35:15 [ 11] [ 6] [157044] +15:35:15 [ 70] [ 3] [301] +15:35:15 ============================================================================ +15:35:15 + + +waiting on router queue for slot.... +15:35:15 Sending to : +15:35:15 ============================================================================ +15:35:15 ============================================================================ +15:35:15 Slot Id : <283> +15:35:15 Transaction Type : RESPONSE +15:35:15 Received From : +15:35:15 ============================================================================ +15:35:15 FNo. Len. Field Value +15:35:15 ============================================================================ +15:35:15 [ 1] [ 4] [0810] +15:35:15 [ 7] [ 10] [0320083422] +15:35:15 [ 11] [ 6] [157044] +15:35:15 [ 39] [ 2] [00] +15:35:15 [ 70] [ 3] [301] +15:35:15 ============================================================================ +15:35:15 Calculate Source COMM Id = 2 +15:35:15 ============================================================================ +15:35:15 + + +waiting on router queue for slot.... +15:35:19 ============================================================================ +15:35:19 Slot Id : <316> +15:35:19 Transaction Type : REQUEST +15:35:19 Received From : +15:35:19 ============================================================================ +15:35:19 FNo. Len. Field Value +15:35:19 ============================================================================ +15:35:19 [ 1] [ 4] [0200] +15:35:19 [ 2] [ 16] [6688990105394108] +15:35:19 [ 3] [ 6] [011000] +15:35:19 [ 4] [ 12] [000080000000] +15:35:19 [ 7] [ 10] [0320083425] +15:35:19 [ 11] [ 6] [270074] +15:35:19 [ 12] [ 6] [153425] +15:35:19 [ 13] [ 4] [0320] +15:35:19 [ 14] [ 4] [4309] +15:35:19 [ 15] [ 4] [0320] +15:35:19 [ 18] [ 4] [6011] +15:35:19 [ 19] [ 3] [418] +15:35:19 [ 22] [ 3] [021] +15:35:19 [ 25] [ 2] [01] +15:35:19 [ 28] [ 9] [D00002000] +15:35:19 [ 32] [ 6] [180893] +15:35:19 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:35:19 [ 37] [ 12] [507908270074] +15:35:19 [ 41] [ 8] [0110VTBR] +15:35:19 [ 42] [ 15] [999999 ] +15:35:19 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:35:19 [ 49] [ 3] [418] +15:35:19 [ 52] [ 16] [1A8D8A3D3CCB94DB] +15:35:19 ============================================================================ +15:35:19 + + +waiting on router queue for slot.... +15:35:19 Sending to : +15:35:19 ============================================================================ +15:35:19 Sending to : +15:35:19 ============================================================================ +15:35:19 ============================================================================ +15:35:19 Slot Id : <316> +15:35:19 Transaction Type : REQUEST +15:35:19 Received From : +15:35:19 ============================================================================ +15:35:19 FNo. Len. Field Value +15:35:19 ============================================================================ +15:35:19 [ 1] [ 4] [0200] +15:35:19 [ 2] [ 16] [6688990105394108] +15:35:19 [ 3] [ 6] [011000] +15:35:19 [ 4] [ 12] [000080000000] +15:35:19 [ 7] [ 10] [0320083425] +15:35:19 [ 11] [ 6] [270074] +15:35:19 [ 12] [ 6] [153425] +15:35:19 [ 13] [ 4] [0320] +15:35:19 [ 14] [ 4] [4309] +15:35:19 [ 15] [ 4] [0320] +15:35:19 [ 18] [ 4] [6011] +15:35:19 [ 19] [ 3] [418] +15:35:19 [ 22] [ 3] [021] +15:35:19 [ 25] [ 2] [01] +15:35:19 [ 28] [ 9] [D00002000] +15:35:19 [ 32] [ 6] [180893] +15:35:19 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:35:19 [ 37] [ 12] [507908270074] +15:35:19 [ 41] [ 8] [0110VTBR] +15:35:19 [ 42] [ 15] [999999 ] +15:35:19 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:35:19 [ 49] [ 3] [418] +15:35:19 [ 52] [ 16] [1A8D8A3D3CCB94DB] +15:35:19 ============================================================================ +15:35:19 + + +waiting on router queue for slot.... +15:35:19 Sending to : +15:35:19 ============================================================================ +15:35:20 ============================================================================ +15:35:20 Slot Id : <316> +15:35:20 Transaction Type : REQUEST +15:35:20 Received From : +15:35:20 ============================================================================ +15:35:20 FNo. Len. Field Value +15:35:20 ============================================================================ +15:35:20 [ 1] [ 4] [0200] +15:35:20 [ 2] [ 16] [6688990105394108] +15:35:20 [ 3] [ 6] [011000] +15:35:20 [ 4] [ 12] [000080000000] +15:35:20 [ 7] [ 10] [0320083425] +15:35:20 [ 11] [ 6] [270074] +15:35:20 [ 12] [ 6] [153425] +15:35:20 [ 13] [ 4] [0320] +15:35:20 [ 14] [ 4] [4309] +15:35:20 [ 15] [ 4] [0320] +15:35:20 [ 18] [ 4] [6011] +15:35:20 [ 19] [ 3] [418] +15:35:20 [ 22] [ 3] [021] +15:35:20 [ 25] [ 2] [01] +15:35:20 [ 28] [ 9] [D00002000] +15:35:20 [ 32] [ 6] [180893] +15:35:20 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:35:20 [ 37] [ 12] [507908270074] +15:35:20 [ 41] [ 8] [0110VTBR] +15:35:20 [ 42] [ 15] [999999 ] +15:35:20 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:35:20 [ 49] [ 3] [418] +15:35:20 [ 52] [ 16] [3DADA33D54D48C28] +15:35:20 ============================================================================ +15:35:20 + + +waiting on router queue for slot.... +15:35:20 Sending to : <0> +15:35:20 ============================================================================ +15:35:20 ============================================================================ +15:35:20 Slot Id : <316> +15:35:20 Transaction Type : RESPONSE +15:35:20 Received From : +15:35:20 ============================================================================ +15:35:20 FNo. Len. Field Value +15:35:20 ============================================================================ +15:35:20 [ 1] [ 4] [0210] +15:35:20 [ 2] [ 16] [6688990105394108] +15:35:20 [ 3] [ 6] [011000] +15:35:20 [ 4] [ 12] [000080000000] +15:35:20 [ 7] [ 10] [0320083425] +15:35:20 [ 11] [ 6] [270074] +15:35:20 [ 12] [ 6] [153425] +15:35:20 [ 13] [ 4] [0320] +15:35:20 [ 15] [ 4] [0320] +15:35:20 [ 18] [ 4] [6011] +15:35:20 [ 19] [ 3] [418] +15:35:20 [ 22] [ 3] [021] +15:35:20 [ 32] [ 6] [180893] +15:35:20 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:35:20 [ 37] [ 12] [507908270074] +15:35:20 [ 39] [ 2] [14] +15:35:20 [ 41] [ 8] [0110VTBR] +15:35:20 [ 49] [ 3] [418] +15:35:20 ============================================================================ +15:35:20 Sending to : +15:35:20 ============================================================================ +15:35:20 + + +waiting on router queue for slot.... +15:35:21 ============================================================================ +15:35:21 Slot Id : <316> +15:35:21 Transaction Type : RESPONSE +15:35:21 Received From : +15:35:21 ============================================================================ +15:35:21 FNo. Len. Field Value +15:35:21 ============================================================================ +15:35:21 [ 1] [ 4] [0210] +15:35:21 [ 2] [ 16] [6688990105394108] +15:35:21 [ 3] [ 6] [011000] +15:35:21 [ 4] [ 12] [000080000000] +15:35:21 [ 7] [ 10] [0320083425] +15:35:21 [ 11] [ 6] [270074] +15:35:21 [ 12] [ 6] [153425] +15:35:21 [ 13] [ 4] [0320] +15:35:21 [ 15] [ 4] [0320] +15:35:21 [ 18] [ 4] [6011] +15:35:21 [ 19] [ 3] [418] +15:35:21 [ 22] [ 3] [021] +15:35:21 [ 32] [ 6] [180893] +15:35:21 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:35:21 [ 37] [ 12] [507908270074] +15:35:21 [ 39] [ 2] [14] +15:35:21 [ 41] [ 8] [0110VTBR] +15:35:21 [ 49] [ 3] [418] +15:35:21 ============================================================================ +15:35:21 Calculate Source COMM Id = 2 +15:35:21 ============================================================================ +15:35:21 + + +waiting on router queue for slot.... +15:35:32 ============================================================================ +15:35:32 Slot Id : <311> +15:35:32 Transaction Type : REQUEST +15:35:32 Received From : +15:35:32 ============================================================================ +15:35:32 FNo. Len. Field Value +15:35:32 ============================================================================ +15:35:32 [ 1] [ 4] [0800] +15:35:32 [ 7] [ 10] [0320083439] +15:35:32 [ 11] [ 6] [157045] +15:35:32 [ 70] [ 3] [301] +15:35:32 ============================================================================ +15:35:32 + + +waiting on router queue for slot.... +15:35:32 Sending to : +15:35:32 ============================================================================ +15:35:32 ============================================================================ +15:35:32 Slot Id : <311> +15:35:32 Transaction Type : RESPONSE +15:35:32 Received From : +15:35:32 ============================================================================ +15:35:32 FNo. Len. Field Value +15:35:32 ============================================================================ +15:35:32 [ 1] [ 4] [0810] +15:35:32 [ 7] [ 10] [0320083439] +15:35:32 [ 11] [ 6] [157045] +15:35:32 [ 39] [ 2] [00] +15:35:32 [ 70] [ 3] [301] +15:35:32 ============================================================================ +15:35:32 Calculate Source COMM Id = 2 +15:35:32 ============================================================================ +15:35:32 + + +waiting on router queue for slot.... +15:35:35 ============================================================================ +15:35:35 Slot Id : <312> +15:35:35 Transaction Type : REQUEST +15:35:35 Received From : +15:35:35 ============================================================================ +15:35:35 FNo. Len. Field Value +15:35:35 ============================================================================ +15:35:35 [ 1] [ 4] [0200] +15:35:35 [ 2] [ 16] [0014830041624622] +15:35:35 [ 3] [ 6] [301000] +15:35:35 [ 4] [ 12] [000000000000] +15:35:35 [ 7] [ 10] [0320153531] +15:35:35 [ 11] [ 6] [785759] +15:35:35 [ 12] [ 6] [153531] +15:35:35 [ 13] [ 4] [0320] +15:35:35 [ 15] [ 4] [0320] +15:35:35 [ 18] [ 4] [6011] +15:35:35 [ 22] [ 3] [900] +15:35:35 [ 25] [ 2] [02] +15:35:35 [ 28] [ 9] [D00000000] +15:35:35 [ 32] [ 6] [621354] +15:35:35 [ 35] [ 37] [0014830041624622=1299=278995037=10000] +15:35:35 [ 37] [ 12] [507902382383] +15:35:35 [ 41] [ 8] [01006300] +15:35:35 [ 42] [ 15] [NATIVE ] +15:35:35 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +15:35:35 [ 49] [ 3] [418] +15:35:35 [ 52] [ 16] [A01BE9C074B20F04] +15:35:35 ============================================================================ +15:35:35 + + +waiting on router queue for slot.... +15:35:35 Sending to : +15:35:35 Error : +15:35:35 ============================================================================ +15:35:47 ============================================================================ +15:35:47 Slot Id : <306> +15:35:47 Transaction Type : REQUEST +15:35:47 Received From : +15:35:47 ============================================================================ +15:35:47 FNo. Len. Field Value +15:35:47 ============================================================================ +15:35:47 [ 1] [ 4] [0800] +15:35:47 [ 7] [ 10] [0320083455] +15:35:47 [ 11] [ 6] [157046] +15:35:47 [ 70] [ 3] [301] +15:35:47 ============================================================================ +15:35:47 + + +waiting on router queue for slot.... +15:35:47 Sending to : +15:35:47 ============================================================================ +15:35:47 ============================================================================ +15:35:47 Slot Id : <306> +15:35:47 Transaction Type : RESPONSE +15:35:47 Received From : +15:35:47 ============================================================================ +15:35:47 FNo. Len. Field Value +15:35:47 ============================================================================ +15:35:47 [ 1] [ 4] [0810] +15:35:47 [ 7] [ 10] [0320083455] +15:35:47 [ 11] [ 6] [157046] +15:35:47 [ 39] [ 2] [00] +15:35:47 [ 70] [ 3] [301] +15:35:47 ============================================================================ +15:35:47 Calculate Source COMM Id = 2 +15:35:47 ============================================================================ +15:35:47 + + +waiting on router queue for slot.... +15:35:49 ============================================================================ +15:35:49 Slot Id : <310> +15:35:49 Transaction Type : REQUEST +15:35:49 Received From : +15:35:49 ============================================================================ +15:35:49 FNo. Len. Field Value +15:35:49 ============================================================================ +15:35:49 [ 1] [ 4] [0800] +15:35:49 [ 2] [ 5] [02531] +15:35:49 [ 3] [ 6] [579158] +15:35:49 [ 7] [ 10] [0320083549] +15:35:49 [ 11] [ 6] [807317] +15:35:49 [ 15] [ 10] [0320083549] +15:35:49 [ 37] [ 11] [57915807317] +15:35:49 [ 70] [ 3] [001] +15:35:49 ============================================================================ +15:35:49 + + +waiting on router queue for slot.... +15:35:49 ============================================================================ +15:35:49 Slot Id : <310> +15:35:49 Transaction Type : RESPONSE +15:35:49 Received From : +15:35:49 ============================================================================ +15:35:49 FNo. Len. Field Value +15:35:49 ============================================================================ +15:35:49 [ 1] [ 4] [0810] +15:35:49 [ 7] [ 10] [0320083549] +15:35:49 [ 11] [ 6] [807317] +15:35:49 [ 15] [ 4] [0320] +15:35:49 [ 37] [ 12] [57915807317] +15:35:49 [ 39] [ 2] [00] +15:35:49 [ 70] [ 3] [001] +15:35:49 ============================================================================ +15:35:49 Sending to : +15:35:49 ============================================================================ +15:35:49 + + +waiting on router queue for slot.... +15:35:50 ============================================================================ +15:35:50 Slot Id : <317> +15:35:50 Transaction Type : REQUEST +15:35:50 Received From : +15:35:50 ============================================================================ +15:35:50 FNo. Len. Field Value +15:35:50 ============================================================================ +15:35:50 [ 1] [ 4] [0200] +15:35:50 [ 2] [ 16] [2206990000065870] +15:35:50 [ 3] [ 6] [010000] +15:35:50 [ 4] [ 12] [000200000000] +15:35:50 [ 7] [ 10] [0320083457] +15:35:50 [ 11] [ 6] [270077] +15:35:50 [ 12] [ 6] [153457] +15:35:50 [ 13] [ 4] [0320] +15:35:50 [ 14] [ 4] [1804] +15:35:50 [ 15] [ 4] [0320] +15:35:50 [ 18] [ 4] [6011] +15:35:50 [ 19] [ 3] [418] +15:35:50 [ 22] [ 3] [021] +15:35:50 [ 25] [ 2] [01] +15:35:50 [ 28] [ 9] [D00002000] +15:35:50 [ 32] [ 6] [180893] +15:35:50 [ 35] [ 32] [2206990000065870=180412816626081] +15:35:50 [ 37] [ 12] [507908270077] +15:35:50 [ 41] [ 8] [0105XTNY] +15:35:50 [ 42] [ 15] [999999 ] +15:35:50 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +15:35:50 [ 49] [ 3] [418] +15:35:50 [ 52] [ 16] [49AD1014CC161B46] +15:35:50 ============================================================================ +15:35:50 + + +waiting on router queue for slot.... +15:35:50 Sending to : +15:35:50 ============================================================================ +15:35:50 Sending to : +15:35:50 ============================================================================ +15:35:50 ============================================================================ +15:35:50 Slot Id : <317> +15:35:50 Transaction Type : REQUEST +15:35:50 Received From : +15:35:50 ============================================================================ +15:35:50 FNo. Len. Field Value +15:35:50 ============================================================================ +15:35:50 [ 1] [ 4] [0200] +15:35:50 [ 2] [ 16] [2206990000065870] +15:35:50 [ 3] [ 6] [010000] +15:35:50 [ 4] [ 12] [000200000000] +15:35:50 [ 7] [ 10] [0320083457] +15:35:50 [ 11] [ 6] [270077] +15:35:50 [ 12] [ 6] [153457] +15:35:50 [ 13] [ 4] [0320] +15:35:50 [ 14] [ 4] [1804] +15:35:50 [ 15] [ 4] [0320] +15:35:50 [ 18] [ 4] [6011] +15:35:50 [ 19] [ 3] [418] +15:35:50 [ 22] [ 3] [021] +15:35:50 [ 25] [ 2] [01] +15:35:50 [ 28] [ 9] [D00002000] +15:35:50 [ 32] [ 6] [180893] +15:35:50 [ 35] [ 32] [2206990000065870=180412816626081] +15:35:50 [ 37] [ 12] [507908270077] +15:35:50 [ 41] [ 8] [0105XTNY] +15:35:50 [ 42] [ 15] [999999 ] +15:35:50 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +15:35:50 [ 49] [ 3] [418] +15:35:50 [ 52] [ 16] [49AD1014CC161B46] +15:35:50 ============================================================================ +15:35:50 + + +waiting on router queue for slot.... +15:35:50 Sending to : +15:35:50 ============================================================================ +15:35:50 ============================================================================ +15:35:50 Slot Id : <317> +15:35:50 Transaction Type : REQUEST +15:35:50 Received From : +15:35:50 ============================================================================ +15:35:50 FNo. Len. Field Value +15:35:50 ============================================================================ +15:35:50 [ 1] [ 4] [0200] +15:35:50 [ 2] [ 16] [2206990000065870] +15:35:50 [ 3] [ 6] [010000] +15:35:50 [ 4] [ 12] [000200000000] +15:35:50 [ 7] [ 10] [0320083457] +15:35:50 [ 11] [ 6] [270077] +15:35:50 [ 12] [ 6] [153457] +15:35:50 [ 13] [ 4] [0320] +15:35:50 [ 14] [ 4] [1804] +15:35:50 [ 15] [ 4] [0320] +15:35:50 [ 18] [ 4] [6011] +15:35:50 [ 19] [ 3] [418] +15:35:50 [ 22] [ 3] [021] +15:35:50 [ 25] [ 2] [01] +15:35:50 [ 28] [ 9] [D00002000] +15:35:50 [ 32] [ 6] [180893] +15:35:50 [ 35] [ 32] [2206990000065870=180412816626081] +15:35:50 [ 37] [ 12] [507908270077] +15:35:50 [ 41] [ 8] [0105XTNY] +15:35:50 [ 42] [ 15] [999999 ] +15:35:50 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +15:35:50 [ 49] [ 3] [418] +15:35:50 [ 52] [ 16] [D18D68655F7C3616] +15:35:50 ============================================================================ +15:35:50 + + +waiting on router queue for slot.... +15:35:50 Sending to : <1> +15:35:50 ============================================================================ +15:35:52 ============================================================================ +15:35:52 Slot Id : <307> +15:35:52 Transaction Type : REQUEST +15:35:52 Received From : +15:35:52 ============================================================================ +15:35:52 FNo. Len. Field Value +15:35:52 ============================================================================ +15:35:52 [ 1] [ 4] [0800] +15:35:52 [ 7] [ 10] [0320224740] +15:35:52 [ 11] [ 6] [154740] +15:35:52 [ 37] [ 12] [57915154740] +15:35:52 [ 70] [ 3] [301] +15:35:52 ============================================================================ +15:35:52 + + +waiting on router queue for slot.... +15:35:52 Sending to : +15:35:52 ============================================================================ +15:35:52 ============================================================================ +15:35:52 Slot Id : <307> +15:35:52 Transaction Type : RESPONSE +15:35:52 Received From : +15:35:52 ============================================================================ +15:35:52 FNo. Len. Field Value +15:35:52 ============================================================================ +15:35:52 [ 1] [ 4] [0810] +15:35:52 [ 7] [ 10] [0320224740] +15:35:52 [ 11] [ 6] [154740] +15:35:52 [ 37] [ 12] [579151547400] +15:35:52 [ 39] [ 2] [00] +15:35:52 [ 70] [ 3] [810] +15:35:52 ============================================================================ +15:35:52 Calculate Source COMM Id = 6 +15:35:52 ============================================================================ +15:35:52 + + +waiting on router queue for slot.... +15:35:53 ============================================================================ +15:35:53 Slot Id : <317> +15:35:53 Transaction Type : RESPONSE +15:35:53 Received From : +15:35:53 ============================================================================ +15:35:53 FNo. Len. Field Value +15:35:53 ============================================================================ +15:35:53 [ 1] [ 4] [0210] +15:35:53 [ 2] [ 16] [2206990000065870] +15:35:53 [ 3] [ 6] [010000] +15:35:53 [ 4] [ 12] [000200000000] +15:35:53 [ 7] [ 10] [0320083457] +15:35:53 [ 11] [ 6] [270077] +15:35:53 [ 12] [ 6] [153457] +15:35:53 [ 13] [ 4] [0320] +15:35:53 [ 15] [ 4] [0320] +15:35:53 [ 18] [ 4] [6011] +15:35:53 [ 32] [ 6] [180893] +15:35:53 [ 35] [ 32] [2206990000065870=180412816626081] +15:35:53 [ 37] [ 12] [507908270077] +15:35:53 [ 38] [ 6] [979539] +15:35:53 [ 39] [ 2] [00] +15:35:53 [ 41] [ 8] [0105XTNY] +15:35:53 [ 49] [ 3] [418] +15:35:53 [ 54] [ 40] [0001418C0028322439000002418C002832243900] +15:35:53 ============================================================================ +15:35:53 Sending to : +15:35:53 ============================================================================ +15:35:53 + + +waiting on router queue for slot.... +15:35:55 ============================================================================ +15:35:55 Slot Id : <317> +15:35:55 Transaction Type : RESPONSE +15:35:55 Received From : +15:35:55 ============================================================================ +15:35:55 FNo. Len. Field Value +15:35:55 ============================================================================ +15:35:55 [ 1] [ 4] [0210] +15:35:55 [ 2] [ 16] [2206990000065870] +15:35:55 [ 3] [ 6] [010000] +15:35:55 [ 4] [ 12] [000200000000] +15:35:55 [ 7] [ 10] [0320083457] +15:35:55 [ 11] [ 6] [270077] +15:35:55 [ 12] [ 6] [153457] +15:35:55 [ 13] [ 4] [0320] +15:35:55 [ 15] [ 4] [0320] +15:35:55 [ 18] [ 4] [6011] +15:35:55 [ 32] [ 6] [180893] +15:35:55 [ 35] [ 32] [2206990000065870=180412816626081] +15:35:55 [ 37] [ 12] [507908270077] +15:35:55 [ 38] [ 6] [979539] +15:35:55 [ 39] [ 2] [00] +15:35:55 [ 41] [ 8] [0105XTNY] +15:35:55 [ 49] [ 3] [418] +15:35:55 [ 54] [ 40] [0001418C0028322439000002418C002832243900] +15:35:55 ============================================================================ +15:35:55 Calculate Source COMM Id = 2 +15:35:55 ============================================================================ +15:35:55 + + +waiting on router queue for slot.... +15:35:56 ============================================================================ +15:35:56 Slot Id : <288> +15:35:56 Transaction Type : REQUEST +15:35:56 Received From : +15:35:56 ============================================================================ +15:35:56 FNo. Len. Field Value +15:35:56 ============================================================================ +15:35:56 [ 1] [ 4] [0200] +15:35:56 [ 2] [ 16] [6688990105648602] +15:35:56 [ 3] [ 6] [012000] +15:35:56 [ 4] [ 12] [000100000000] +15:35:56 [ 7] [ 10] [0320153551] +15:35:56 [ 11] [ 6] [785835] +15:35:56 [ 12] [ 6] [153551] +15:35:56 [ 13] [ 4] [0320] +15:35:56 [ 15] [ 4] [0320] +15:35:56 [ 18] [ 4] [6011] +15:35:56 [ 22] [ 3] [900] +15:35:56 [ 25] [ 2] [02] +15:35:56 [ 28] [ 9] [D00002000] +15:35:56 [ 32] [ 6] [621354] +15:35:56 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:35:56 [ 37] [ 12] [507904635763] +15:35:56 [ 41] [ 8] [17000800] +15:35:56 [ 42] [ 15] [NATIVE ] +15:35:56 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:35:56 [ 49] [ 3] [418] +15:35:56 [ 52] [ 16] [998CDE3662A6009F] +15:35:56 ============================================================================ +15:35:56 + + +waiting on router queue for slot.... +15:35:56 Sending to : +15:35:56 ============================================================================ +15:35:56 Sending to : +15:35:56 ============================================================================ +15:35:56 ============================================================================ +15:35:56 Slot Id : <288> +15:35:56 Transaction Type : REQUEST +15:35:56 Received From : +15:35:56 ============================================================================ +15:35:56 FNo. Len. Field Value +15:35:56 ============================================================================ +15:35:56 [ 1] [ 4] [0200] +15:35:56 [ 2] [ 16] [6688990105648602] +15:35:56 [ 3] [ 6] [012000] +15:35:56 [ 4] [ 12] [000100000000] +15:35:56 [ 7] [ 10] [0320153551] +15:35:56 [ 11] [ 6] [785835] +15:35:56 [ 12] [ 6] [153551] +15:35:56 [ 13] [ 4] [0320] +15:35:56 [ 15] [ 4] [0320] +15:35:56 [ 18] [ 4] [6011] +15:35:56 [ 22] [ 3] [900] +15:35:56 [ 25] [ 2] [02] +15:35:56 [ 28] [ 9] [D00002000] +15:35:56 [ 32] [ 6] [621354] +15:35:56 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:35:56 [ 37] [ 12] [507904635763] +15:35:56 [ 41] [ 8] [17000800] +15:35:56 [ 42] [ 15] [NATIVE ] +15:35:56 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:35:56 [ 49] [ 3] [418] +15:35:56 [ 52] [ 16] [998CDE3662A6009F] +15:35:56 ============================================================================ +15:35:56 + + +waiting on router queue for slot.... +15:35:56 Sending to : +15:35:56 ============================================================================ +15:35:56 ============================================================================ +15:35:56 Slot Id : <288> +15:35:56 Transaction Type : REQUEST +15:35:56 Received From : +15:35:56 ============================================================================ +15:35:56 FNo. Len. Field Value +15:35:56 ============================================================================ +15:35:56 [ 1] [ 4] [0200] +15:35:56 [ 2] [ 16] [6688990105648602] +15:35:56 [ 3] [ 6] [012000] +15:35:56 [ 4] [ 12] [000100000000] +15:35:56 [ 7] [ 10] [0320153551] +15:35:56 [ 11] [ 6] [785835] +15:35:56 [ 12] [ 6] [153551] +15:35:56 [ 13] [ 4] [0320] +15:35:56 [ 15] [ 4] [0320] +15:35:56 [ 18] [ 4] [6011] +15:35:56 [ 22] [ 3] [900] +15:35:56 [ 25] [ 2] [02] +15:35:56 [ 28] [ 9] [D00002000] +15:35:56 [ 32] [ 6] [621354] +15:35:56 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:35:56 [ 37] [ 12] [507904635763] +15:35:56 [ 41] [ 8] [17000800] +15:35:56 [ 42] [ 15] [NATIVE ] +15:35:56 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:35:56 [ 49] [ 3] [418] +15:35:56 [ 52] [ 16] [4EB2AD8539A02440] +15:35:56 ============================================================================ +15:35:56 + + +waiting on router queue for slot.... +15:35:56 Sending to : <4> +15:35:56 ============================================================================ +15:35:58 ============================================================================ +15:35:58 Slot Id : <288> +15:35:58 Transaction Type : RESPONSE +15:35:58 Received From : +15:35:58 ============================================================================ +15:35:58 FNo. Len. Field Value +15:35:58 ============================================================================ +15:35:58 [ 1] [ 4] [0210] +15:35:58 [ 2] [ 16] [6688990105648602] +15:35:58 [ 3] [ 6] [012000] +15:35:58 [ 4] [ 12] [000100000000] +15:35:58 [ 11] [ 6] [785835] +15:35:58 [ 12] [ 6] [153551] +15:35:58 [ 15] [ 4] [0320] +15:35:58 [ 18] [ 4] [6011] +15:35:58 [ 32] [ 6] [621354] +15:35:58 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:35:58 [ 37] [ 12] [507904635763] +15:35:58 [ 38] [ 6] [508952] +15:35:58 [ 39] [ 2] [00] +15:35:58 [ 41] [ 8] [17000800] +15:35:58 [ 49] [ 3] [418] +15:35:58 [ 54] [ 20] [2002418C000311071798] +15:35:58 ============================================================================ +15:35:58 Sending to : +15:35:58 ============================================================================ +15:35:58 + + +waiting on router queue for slot.... +15:35:59 ============================================================================ +15:35:59 Slot Id : <288> +15:35:59 Transaction Type : RESPONSE +15:35:59 Received From : +15:35:59 ============================================================================ +15:35:59 FNo. Len. Field Value +15:35:59 ============================================================================ +15:35:59 [ 1] [ 4] [0210] +15:35:59 [ 2] [ 16] [6688990105648602] +15:35:59 [ 3] [ 6] [012000] +15:35:59 [ 4] [ 12] [000100000000] +15:35:59 [ 11] [ 6] [785835] +15:35:59 [ 12] [ 6] [153551] +15:35:59 [ 15] [ 4] [0320] +15:35:59 [ 18] [ 4] [6011] +15:35:59 [ 32] [ 6] [621354] +15:35:59 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:35:59 [ 37] [ 12] [507904635763] +15:35:59 [ 38] [ 6] [508952] +15:35:59 [ 39] [ 2] [00] +15:35:59 [ 41] [ 8] [17000800] +15:35:59 [ 49] [ 3] [418] +15:35:59 [ 54] [ 20] [2002418C000311071798] +15:35:59 ============================================================================ +15:35:59 Calculate Source COMM Id = 0 +15:35:59 ============================================================================ +15:35:59 + + +waiting on router queue for slot.... +15:36:10 ============================================================================ +15:36:10 Slot Id : <318> +15:36:10 Transaction Type : REQUEST +15:36:10 Received From : +15:36:10 ============================================================================ +15:36:10 FNo. Len. Field Value +15:36:10 ============================================================================ +15:36:10 [ 1] [ 4] [0800] +15:36:10 [ 7] [ 10] [0320083518] +15:36:10 [ 11] [ 6] [157047] +15:36:10 [ 70] [ 3] [301] +15:36:10 ============================================================================ +15:36:10 + + +waiting on router queue for slot.... +15:36:10 Sending to : +15:36:10 ============================================================================ +15:36:10 ============================================================================ +15:36:10 Slot Id : <318> +15:36:10 Transaction Type : RESPONSE +15:36:10 Received From : +15:36:10 ============================================================================ +15:36:10 FNo. Len. Field Value +15:36:10 ============================================================================ +15:36:10 [ 1] [ 4] [0810] +15:36:10 [ 7] [ 10] [0320083518] +15:36:10 [ 11] [ 6] [157047] +15:36:10 [ 39] [ 2] [00] +15:36:10 [ 70] [ 3] [301] +15:36:10 ============================================================================ +15:36:10 Calculate Source COMM Id = 2 +15:36:10 ============================================================================ +15:36:10 + + +waiting on router queue for slot.... +15:36:15 ============================================================================ +15:36:15 Slot Id : <325> +15:36:15 Transaction Type : REQUEST +15:36:15 Received From : +15:36:15 ============================================================================ +15:36:15 FNo. Len. Field Value +15:36:15 ============================================================================ +15:36:15 [ 1] [ 4] [0200] +15:36:15 [ 2] [ 16] [6213543000244144] +15:36:15 [ 3] [ 6] [010000] +15:36:15 [ 4] [ 12] [000005000000] +15:36:15 [ 7] [ 10] [0320154804] +15:36:15 [ 11] [ 6] [412315] +15:36:15 [ 12] [ 6] [154804] +15:36:15 [ 13] [ 4] [0320] +15:36:15 [ 14] [ 4] [1249] +15:36:15 [ 15] [ 4] [0320] +15:36:15 [ 18] [ 4] [6011] +15:36:15 [ 19] [ 3] [418] +15:36:15 [ 22] [ 3] [021] +15:36:15 [ 25] [ 2] [01] +15:36:15 [ 28] [ 9] [D00002000] +15:36:15 [ 32] [ 6] [123401] +15:36:15 [ 35] [ 32] [6213543000244144=491212014414188] +15:36:15 [ 37] [ 12] [507900192483] +15:36:15 [ 41] [ 8] [03000100] +15:36:15 [ 42] [ 15] [APT ] +15:36:15 [ 43] [ 40] [LAOS SAVANNAKHET BRANCH LAOS ] +15:36:15 [ 49] [ 3] [418] +15:36:15 [ 52] [ 16] [34183D6CB0AA81ED] +15:36:15 ============================================================================ +15:36:15 + + +waiting on router queue for slot.... +15:36:15 Sending to : +15:36:15 ============================================================================ +15:36:15 Sending to : +15:36:15 ============================================================================ +15:36:16 ============================================================================ +15:36:16 Slot Id : <322> +15:36:16 Transaction Type : REQUEST +15:36:16 Received From : +15:36:16 ============================================================================ +15:36:16 FNo. Len. Field Value +15:36:16 ============================================================================ +15:36:16 [ 1] [ 4] [0200] +15:36:16 [ 2] [ 16] [6688990105394108] +15:36:16 [ 3] [ 6] [301000] +15:36:16 [ 7] [ 10] [0320083522] +15:36:16 [ 11] [ 6] [270079] +15:36:16 [ 12] [ 6] [153522] +15:36:16 [ 13] [ 4] [0320] +15:36:16 [ 14] [ 4] [4309] +15:36:16 [ 15] [ 4] [0320] +15:36:16 [ 18] [ 4] [6011] +15:36:16 [ 19] [ 3] [418] +15:36:16 [ 22] [ 3] [021] +15:36:16 [ 25] [ 2] [01] +15:36:16 [ 32] [ 6] [180893] +15:36:16 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:36:16 [ 37] [ 12] [507908270079] +15:36:16 [ 41] [ 8] [0110VTBR] +15:36:16 [ 42] [ 15] [999999 ] +15:36:16 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:36:16 [ 49] [ 3] [418] +15:36:16 [ 52] [ 16] [1A8D8A3D3CCB94DB] +15:36:16 ============================================================================ +15:36:16 + + +waiting on router queue for slot.... +15:36:16 Sending to : +15:36:16 ============================================================================ +15:36:16 Sending to : +15:36:16 ============================================================================ +15:36:16 ============================================================================ +15:36:16 Slot Id : <325> +15:36:16 Transaction Type : REQUEST +15:36:16 Received From : +15:36:16 ============================================================================ +15:36:16 FNo. Len. Field Value +15:36:16 ============================================================================ +15:36:16 [ 1] [ 4] [0200] +15:36:16 [ 2] [ 16] [6213543000244144] +15:36:16 [ 3] [ 6] [010000] +15:36:16 [ 4] [ 12] [000005000000] +15:36:16 [ 7] [ 10] [0320154804] +15:36:16 [ 11] [ 6] [412315] +15:36:16 [ 12] [ 6] [154804] +15:36:16 [ 13] [ 4] [0320] +15:36:16 [ 14] [ 4] [1249] +15:36:16 [ 15] [ 4] [0320] +15:36:16 [ 18] [ 4] [6011] +15:36:16 [ 19] [ 3] [418] +15:36:16 [ 22] [ 3] [021] +15:36:16 [ 25] [ 2] [01] +15:36:16 [ 28] [ 9] [D00002000] +15:36:16 [ 32] [ 6] [123401] +15:36:16 [ 35] [ 32] [6213543000244144=491212014414188] +15:36:16 [ 37] [ 12] [507900192483] +15:36:16 [ 41] [ 8] [03000100] +15:36:16 [ 42] [ 15] [APT ] +15:36:16 [ 43] [ 40] [LAOS SAVANNAKHET BRANCH LAOS ] +15:36:16 [ 49] [ 3] [418] +15:36:16 [ 52] [ 16] [34183D6CB0AA81ED] +15:36:16 ============================================================================ +15:36:16 + + +waiting on router queue for slot.... +15:36:16 Sending to : +15:36:16 ============================================================================ +15:36:16 ============================================================================ +15:36:16 Slot Id : <325> +15:36:16 Transaction Type : REQUEST +15:36:16 Received From : +15:36:16 ============================================================================ +15:36:16 FNo. Len. Field Value +15:36:16 ============================================================================ +15:36:16 [ 1] [ 4] [0200] +15:36:16 [ 2] [ 16] [6213543000244144] +15:36:16 [ 3] [ 6] [010000] +15:36:16 [ 4] [ 12] [000005000000] +15:36:16 [ 7] [ 10] [0320154804] +15:36:16 [ 11] [ 6] [412315] +15:36:16 [ 12] [ 6] [154804] +15:36:16 [ 13] [ 4] [0320] +15:36:16 [ 14] [ 4] [1249] +15:36:16 [ 15] [ 4] [0320] +15:36:16 [ 18] [ 4] [6011] +15:36:16 [ 19] [ 3] [418] +15:36:16 [ 22] [ 3] [021] +15:36:16 [ 25] [ 2] [01] +15:36:16 [ 28] [ 9] [D00002000] +15:36:16 [ 32] [ 6] [123401] +15:36:16 [ 35] [ 32] [6213543000244144=491212014414188] +15:36:16 [ 37] [ 12] [507900192483] +15:36:16 [ 41] [ 8] [03000100] +15:36:16 [ 42] [ 15] [APT ] +15:36:16 [ 43] [ 40] [LAOS SAVANNAKHET BRANCH LAOS ] +15:36:16 [ 49] [ 3] [418] +15:36:16 [ 52] [ 16] [0002081A246BFB8A] +15:36:16 ============================================================================ +15:36:16 + + +waiting on router queue for slot.... +15:36:16 Sending to : <0> +15:36:16 ============================================================================ +15:36:16 ============================================================================ +15:36:16 Slot Id : <322> +15:36:16 Transaction Type : REQUEST +15:36:16 Received From : +15:36:16 ============================================================================ +15:36:16 FNo. Len. Field Value +15:36:16 ============================================================================ +15:36:16 [ 1] [ 4] [0200] +15:36:16 [ 2] [ 16] [6688990105394108] +15:36:16 [ 3] [ 6] [301000] +15:36:16 [ 7] [ 10] [0320083522] +15:36:16 [ 11] [ 6] [270079] +15:36:16 [ 12] [ 6] [153522] +15:36:16 [ 13] [ 4] [0320] +15:36:16 [ 14] [ 4] [4309] +15:36:16 [ 15] [ 4] [0320] +15:36:16 [ 18] [ 4] [6011] +15:36:16 [ 19] [ 3] [418] +15:36:16 [ 22] [ 3] [021] +15:36:16 [ 25] [ 2] [01] +15:36:16 [ 32] [ 6] [180893] +15:36:16 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:36:16 [ 37] [ 12] [507908270079] +15:36:16 [ 41] [ 8] [0110VTBR] +15:36:16 [ 42] [ 15] [999999 ] +15:36:16 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:36:16 [ 49] [ 3] [418] +15:36:16 [ 52] [ 16] [1A8D8A3D3CCB94DB] +15:36:16 ============================================================================ +15:36:16 + + +waiting on router queue for slot.... +15:36:16 Sending to : +15:36:16 ============================================================================ +15:36:16 ============================================================================ +15:36:16 Slot Id : <322> +15:36:16 Transaction Type : REQUEST +15:36:16 Received From : +15:36:16 ============================================================================ +15:36:16 FNo. Len. Field Value +15:36:16 ============================================================================ +15:36:16 [ 1] [ 4] [0200] +15:36:16 [ 2] [ 16] [6688990105394108] +15:36:16 [ 3] [ 6] [301000] +15:36:16 [ 7] [ 10] [0320083522] +15:36:16 [ 11] [ 6] [270079] +15:36:16 [ 12] [ 6] [153522] +15:36:16 [ 13] [ 4] [0320] +15:36:16 [ 14] [ 4] [4309] +15:36:16 [ 15] [ 4] [0320] +15:36:16 [ 18] [ 4] [6011] +15:36:16 [ 19] [ 3] [418] +15:36:16 [ 22] [ 3] [021] +15:36:16 [ 25] [ 2] [01] +15:36:16 [ 32] [ 6] [180893] +15:36:16 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:36:16 [ 37] [ 12] [507908270079] +15:36:16 [ 41] [ 8] [0110VTBR] +15:36:16 [ 42] [ 15] [999999 ] +15:36:16 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:36:16 [ 49] [ 3] [418] +15:36:16 [ 52] [ 16] [3DADA33D54D48C28] +15:36:16 ============================================================================ +15:36:16 + + +waiting on router queue for slot.... +15:36:16 Sending to : <0> +15:36:16 ============================================================================ +15:36:16 ============================================================================ +15:36:16 Slot Id : <322> +15:36:16 Transaction Type : RESPONSE +15:36:16 Received From : +15:36:16 ============================================================================ +15:36:16 FNo. Len. Field Value +15:36:16 ============================================================================ +15:36:16 [ 1] [ 4] [0210] +15:36:16 [ 2] [ 16] [6688990105394108] +15:36:16 [ 3] [ 6] [301000] +15:36:16 [ 4] [ 12] [000000000000] +15:36:16 [ 7] [ 10] [0320083522] +15:36:16 [ 11] [ 6] [270079] +15:36:16 [ 12] [ 6] [153522] +15:36:16 [ 13] [ 4] [0320] +15:36:16 [ 15] [ 4] [0320] +15:36:16 [ 18] [ 4] [6011] +15:36:16 [ 19] [ 3] [418] +15:36:16 [ 22] [ 3] [021] +15:36:16 [ 32] [ 6] [180893] +15:36:16 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:36:16 [ 37] [ 12] [507908270079] +15:36:16 [ 39] [ 2] [14] +15:36:16 [ 41] [ 8] [0110VTBR] +15:36:16 [ 49] [ 3] [418] +15:36:16 ============================================================================ +15:36:16 Sending to : +15:36:16 ============================================================================ +15:36:16 + + +waiting on router queue for slot.... +15:36:16 ============================================================================ +15:36:16 Slot Id : <325> +15:36:16 Transaction Type : RESPONSE +15:36:16 Received From : +15:36:16 ============================================================================ +15:36:16 FNo. Len. Field Value +15:36:16 ============================================================================ +15:36:16 [ 1] [ 4] [0210] +15:36:16 [ 2] [ 16] [6213543000244144] +15:36:16 [ 3] [ 6] [010000] +15:36:16 [ 4] [ 12] [000005000000] +15:36:16 [ 7] [ 10] [0320154804] +15:36:16 [ 11] [ 6] [412315] +15:36:16 [ 12] [ 6] [154804] +15:36:16 [ 13] [ 4] [0320] +15:36:16 [ 15] [ 4] [0320] +15:36:16 [ 18] [ 4] [6011] +15:36:16 [ 19] [ 3] [418] +15:36:16 [ 32] [ 6] [123401] +15:36:16 [ 35] [ 32] [6213543000244144=491212014414188] +15:36:16 [ 37] [ 12] [507900192483] +15:36:16 [ 38] [ 6] [402908] +15:36:16 [ 39] [ 2] [00] +15:36:16 [ 41] [ 8] [03000100] +15:36:16 [ 49] [ 3] [418] +15:36:16 [ 54] [ 40] [0001418C0001028825500002418C000102882550] +15:36:16 ============================================================================ +15:36:16 Sending to : +15:36:16 ============================================================================ +15:36:16 + + +waiting on router queue for slot.... +15:36:17 ============================================================================ +15:36:17 Slot Id : <322> +15:36:17 Transaction Type : RESPONSE +15:36:17 Received From : +15:36:17 ============================================================================ +15:36:17 FNo. Len. Field Value +15:36:17 ============================================================================ +15:36:17 [ 1] [ 4] [0210] +15:36:17 [ 2] [ 16] [6688990105394108] +15:36:17 [ 3] [ 6] [301000] +15:36:17 [ 4] [ 12] [000000000000] +15:36:17 [ 7] [ 10] [0320083522] +15:36:17 [ 11] [ 6] [270079] +15:36:17 [ 12] [ 6] [153522] +15:36:17 [ 13] [ 4] [0320] +15:36:17 [ 15] [ 4] [0320] +15:36:17 [ 18] [ 4] [6011] +15:36:17 [ 19] [ 3] [418] +15:36:17 [ 22] [ 3] [021] +15:36:17 [ 32] [ 6] [180893] +15:36:17 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:36:17 [ 37] [ 12] [507908270079] +15:36:17 [ 39] [ 2] [14] +15:36:17 [ 41] [ 8] [0110VTBR] +15:36:17 [ 49] [ 3] [418] +15:36:17 ============================================================================ +15:36:17 Calculate Source COMM Id = 2 +15:36:17 ============================================================================ +15:36:17 + + +waiting on router queue for slot.... +15:36:19 ============================================================================ +15:36:19 Slot Id : <325> +15:36:19 Transaction Type : RESPONSE +15:36:19 Received From : +15:36:19 ============================================================================ +15:36:19 FNo. Len. Field Value +15:36:19 ============================================================================ +15:36:19 [ 1] [ 4] [0210] +15:36:19 [ 2] [ 16] [6213543000244144] +15:36:19 [ 3] [ 6] [010000] +15:36:19 [ 4] [ 12] [000005000000] +15:36:19 [ 7] [ 10] [0320154804] +15:36:19 [ 11] [ 6] [412315] +15:36:19 [ 12] [ 6] [154804] +15:36:19 [ 13] [ 4] [0320] +15:36:19 [ 15] [ 4] [0320] +15:36:19 [ 18] [ 4] [6011] +15:36:19 [ 19] [ 3] [418] +15:36:19 [ 32] [ 6] [123401] +15:36:19 [ 35] [ 32] [6213543000244144=491212014414188] +15:36:19 [ 37] [ 12] [507900192483] +15:36:19 [ 38] [ 6] [402908] +15:36:19 [ 39] [ 2] [00] +15:36:19 [ 41] [ 8] [03000100] +15:36:19 [ 49] [ 3] [418] +15:36:19 [ 54] [ 40] [0001418C0001028825500002418C000102882550] +15:36:19 ============================================================================ +15:36:19 Calculate Source COMM Id = 6 +15:36:19 ============================================================================ +15:36:19 + + +waiting on router queue for slot.... +15:36:22 ============================================================================ +15:36:22 Slot Id : <315> +15:36:22 Transaction Type : REQUEST +15:36:22 Received From : +15:36:22 ============================================================================ +15:36:22 FNo. Len. Field Value +15:36:22 ============================================================================ +15:36:22 [ 1] [ 4] [0800] +15:36:22 [ 7] [ 10] [0320083412] +15:36:22 [ 11] [ 6] [066880] +15:36:22 [ 37] [ 12] [57915066880] +15:36:22 [ 70] [ 3] [301] +15:36:22 ============================================================================ +15:36:22 + + +waiting on router queue for slot.... +15:36:22 Sending to : +15:36:22 ============================================================================ +15:36:22 ============================================================================ +15:36:22 Slot Id : <315> +15:36:22 Transaction Type : RESPONSE +15:36:22 Received From : +15:36:22 ============================================================================ +15:36:22 FNo. Len. Field Value +15:36:22 ============================================================================ +15:36:22 [ 1] [ 4] [0810] +15:36:22 [ 7] [ 10] [0320083412] +15:36:22 [ 11] [ 6] [066880] +15:36:22 [ 37] [ 12] [579150668800] +15:36:22 [ 39] [ 2] [00] +15:36:22 [ 70] [ 3] [810] +15:36:22 ============================================================================ +15:36:22 Calculate Source COMM Id = 4 +15:36:22 ============================================================================ +15:36:22 + + +waiting on router queue for slot.... +15:36:34 ============================================================================ +15:36:34 Slot Id : <304> +15:36:34 Transaction Type : REQUEST +15:36:34 Received From : +15:36:34 ============================================================================ +15:36:34 FNo. Len. Field Value +15:36:34 ============================================================================ +15:36:34 [ 1] [ 4] [0800] +15:36:34 [ 7] [ 10] [0320083539] +15:36:34 [ 11] [ 6] [157048] +15:36:34 [ 70] [ 3] [301] +15:36:34 ============================================================================ +15:36:34 + + +waiting on router queue for slot.... +15:36:34 Sending to : +15:36:34 ============================================================================ +15:36:34 ============================================================================ +15:36:34 Slot Id : <304> +15:36:34 Transaction Type : RESPONSE +15:36:34 Received From : +15:36:34 ============================================================================ +15:36:34 FNo. Len. Field Value +15:36:34 ============================================================================ +15:36:34 [ 1] [ 4] [0810] +15:36:34 [ 7] [ 10] [0320083539] +15:36:34 [ 11] [ 6] [157048] +15:36:34 [ 39] [ 2] [00] +15:36:34 [ 70] [ 3] [301] +15:36:34 ============================================================================ +15:36:34 Calculate Source COMM Id = 2 +15:36:34 ============================================================================ +15:36:34 + + +waiting on router queue for slot.... +15:36:49 ============================================================================ +15:36:49 Slot Id : <285> +15:36:49 Transaction Type : REQUEST +15:36:49 Received From : +15:36:49 ============================================================================ +15:36:49 FNo. Len. Field Value +15:36:49 ============================================================================ +15:36:49 [ 1] [ 4] [0200] +15:36:49 [ 2] [ 16] [6213541000612047] +15:36:49 [ 3] [ 6] [010000] +15:36:49 [ 4] [ 12] [000080000000] +15:36:49 [ 7] [ 10] [0320153439] +15:36:49 [ 11] [ 6] [950226] +15:36:49 [ 12] [ 6] [153439] +15:36:49 [ 13] [ 4] [0320] +15:36:49 [ 15] [ 4] [0320] +15:36:49 [ 18] [ 4] [6011] +15:36:49 [ 19] [ 3] [418] +15:36:49 [ 22] [ 3] [021] +15:36:49 [ 25] [ 2] [01] +15:36:49 [ 28] [ 9] [D00002000] +15:36:49 [ 32] [ 6] [668899] +15:36:49 [ 35] [ 32] [6213541000612047=491212011204309] +15:36:49 [ 37] [ 12] [507900285827] +15:36:49 [ 41] [ 8] [03010005] +15:36:49 [ 42] [ 15] [APT ] +15:36:49 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +15:36:49 [ 49] [ 3] [418] +15:36:49 [ 52] [ 16] [C226F5DCC68408EF] +15:36:49 ============================================================================ +15:36:49 + + +waiting on router queue for slot.... +15:36:49 Sending to : +15:36:49 ============================================================================ +15:36:49 Sending to : +15:36:49 ============================================================================ +15:36:49 ============================================================================ +15:36:49 Slot Id : <289> +15:36:49 Transaction Type : REQUEST +15:36:49 Received From : +15:36:49 ============================================================================ +15:36:49 FNo. Len. Field Value +15:36:49 ============================================================================ +15:36:49 [ 1] [ 4] [0420] +15:36:49 [ 2] [ 16] [6213545000339444] +15:36:49 [ 3] [ 6] [012000] +15:36:49 [ 4] [ 12] [000100000000] +15:36:49 [ 7] [ 10] [0320153636] +15:36:49 [ 11] [ 6] [177375] +15:36:49 [ 12] [ 6] [153636] +15:36:49 [ 13] [ 4] [0320] +15:36:49 [ 14] [ 4] [4912] +15:36:49 [ 15] [ 4] [0320] +15:36:49 [ 18] [ 4] [6011] +15:36:49 [ 22] [ 3] [900] +15:36:49 [ 25] [ 2] [02] +15:36:49 [ 28] [ 9] [C00002000] +15:36:49 [ 32] [ 6] [220699] +15:36:49 [ 35] [ 32] [6213545000339444=491212013944543] +15:36:49 [ 37] [ 12] [507900010246] +15:36:49 [ 39] [ 2] [00] +15:36:49 [ 41] [ 8] [01000100] +15:36:49 [ 42] [ 15] [APTRA ] +15:36:49 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:36:49 [ 49] [ 3] [418] +15:36:49 [ 90] [ 42] [020017737503201536360000022069900000000000] +15:36:49 ============================================================================ +15:36:49 + + +waiting on router queue for slot.... +15:36:49 Sending to : +15:36:49 ============================================================================ +15:36:49 ============================================================================ +15:36:49 Slot Id : <285> +15:36:49 Transaction Type : REQUEST +15:36:49 Received From : +15:36:49 ============================================================================ +15:36:49 FNo. Len. Field Value +15:36:49 ============================================================================ +15:36:49 [ 1] [ 4] [0200] +15:36:49 [ 2] [ 16] [6213541000612047] +15:36:49 [ 3] [ 6] [010000] +15:36:49 [ 4] [ 12] [000080000000] +15:36:49 [ 7] [ 10] [0320153439] +15:36:49 [ 11] [ 6] [950226] +15:36:49 [ 12] [ 6] [153439] +15:36:49 [ 13] [ 4] [0320] +15:36:49 [ 15] [ 4] [0320] +15:36:49 [ 18] [ 4] [6011] +15:36:49 [ 19] [ 3] [418] +15:36:49 [ 22] [ 3] [021] +15:36:49 [ 25] [ 2] [01] +15:36:49 [ 28] [ 9] [D00002000] +15:36:49 [ 32] [ 6] [668899] +15:36:49 [ 35] [ 32] [6213541000612047=491212011204309] +15:36:49 [ 37] [ 12] [507900285827] +15:36:49 [ 41] [ 8] [03010005] +15:36:49 [ 42] [ 15] [APT ] +15:36:49 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +15:36:49 [ 49] [ 3] [418] +15:36:49 [ 52] [ 16] [C226F5DCC68408EF] +15:36:49 ============================================================================ +15:36:49 + + +waiting on router queue for slot.... +15:36:49 Sending to : +15:36:49 ============================================================================ +15:36:49 ============================================================================ +15:36:49 Slot Id : <285> +15:36:49 Transaction Type : REQUEST +15:36:49 Received From : +15:36:49 ============================================================================ +15:36:49 FNo. Len. Field Value +15:36:49 ============================================================================ +15:36:49 [ 1] [ 4] [0200] +15:36:49 [ 2] [ 16] [6213541000612047] +15:36:49 [ 3] [ 6] [010000] +15:36:49 [ 4] [ 12] [000080000000] +15:36:49 [ 7] [ 10] [0320153439] +15:36:49 [ 11] [ 6] [950226] +15:36:49 [ 12] [ 6] [153439] +15:36:49 [ 13] [ 4] [0320] +15:36:49 [ 15] [ 4] [0320] +15:36:49 [ 18] [ 4] [6011] +15:36:49 [ 19] [ 3] [418] +15:36:49 [ 22] [ 3] [021] +15:36:49 [ 25] [ 2] [01] +15:36:49 [ 28] [ 9] [D00002000] +15:36:49 [ 32] [ 6] [668899] +15:36:49 [ 35] [ 32] [6213541000612047=491212011204309] +15:36:49 [ 37] [ 12] [507900285827] +15:36:49 [ 41] [ 8] [03010005] +15:36:49 [ 42] [ 15] [APT ] +15:36:49 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +15:36:49 [ 49] [ 3] [418] +15:36:49 [ 52] [ 16] [4CF30DF06DB0F713] +15:36:49 ============================================================================ +15:36:49 + + +waiting on router queue for slot.... +15:36:49 Sending to : <0> +15:36:49 ============================================================================ +15:36:49 ============================================================================ +15:36:49 Slot Id : <297> +15:36:49 Transaction Type : REQUEST +15:36:49 Received From : +15:36:49 ============================================================================ +15:36:49 FNo. Len. Field Value +15:36:49 ============================================================================ +15:36:49 [ 1] [ 4] [0800] +15:36:49 [ 7] [ 10] [0320083556] +15:36:49 [ 11] [ 6] [157049] +15:36:49 [ 70] [ 3] [301] +15:36:49 ============================================================================ +15:36:49 + + +waiting on router queue for slot.... +15:36:49 Sending to : +15:36:49 ============================================================================ +15:36:49 ============================================================================ +15:36:49 Slot Id : <297> +15:36:49 Transaction Type : RESPONSE +15:36:49 Received From : +15:36:49 ============================================================================ +15:36:49 FNo. Len. Field Value +15:36:49 ============================================================================ +15:36:49 [ 1] [ 4] [0810] +15:36:49 [ 7] [ 10] [0320083556] +15:36:49 [ 11] [ 6] [157049] +15:36:49 [ 39] [ 2] [00] +15:36:49 [ 70] [ 3] [301] +15:36:49 ============================================================================ +15:36:49 Calculate Source COMM Id = 2 +15:36:49 ============================================================================ +15:36:49 + + +waiting on router queue for slot.... +15:36:50 ============================================================================ +15:36:50 Slot Id : <285> +15:36:50 Transaction Type : RESPONSE +15:36:50 Received From : +15:36:50 ============================================================================ +15:36:50 FNo. Len. Field Value +15:36:50 ============================================================================ +15:36:50 [ 1] [ 4] [0210] +15:36:50 [ 2] [ 16] [6213541000612047] +15:36:50 [ 3] [ 6] [010000] +15:36:50 [ 4] [ 12] [000080000000] +15:36:50 [ 7] [ 10] [0320153439] +15:36:50 [ 11] [ 6] [950226] +15:36:50 [ 12] [ 6] [153439] +15:36:50 [ 13] [ 4] [0320] +15:36:50 [ 15] [ 4] [0320] +15:36:50 [ 18] [ 4] [6011] +15:36:50 [ 19] [ 3] [418] +15:36:50 [ 32] [ 6] [668899] +15:36:50 [ 35] [ 32] [6213541000612047=491212011204309] +15:36:50 [ 37] [ 12] [507900285827] +15:36:50 [ 38] [ 6] [950226] +15:36:50 [ 39] [ 2] [51] +15:36:50 [ 41] [ 8] [03010005] +15:36:50 [ 49] [ 3] [418] +15:36:50 [ 54] [ 40] [0001418C0000812835270002418C000081283527] +15:36:50 ============================================================================ +15:36:50 Sending to : +15:36:50 ============================================================================ +15:36:50 + + +waiting on router queue for slot.... +15:36:51 ============================================================================ +15:36:51 Slot Id : <326> +15:36:51 Transaction Type : REQUEST +15:36:51 Received From : +15:36:51 ============================================================================ +15:36:51 FNo. Len. Field Value +15:36:51 ============================================================================ +15:36:51 [ 1] [ 4] [0800] +15:36:51 [ 2] [ 5] [02531] +15:36:51 [ 3] [ 6] [579158] +15:36:51 [ 7] [ 10] [0320083651] +15:36:51 [ 11] [ 6] [807318] +15:36:51 [ 15] [ 10] [0320083651] +15:36:51 [ 37] [ 11] [57915807318] +15:36:51 [ 70] [ 3] [001] +15:36:51 ============================================================================ +15:36:51 + + +waiting on router queue for slot.... +15:36:51 ============================================================================ +15:36:51 Slot Id : <326> +15:36:51 Transaction Type : RESPONSE +15:36:51 Received From : +15:36:51 ============================================================================ +15:36:51 FNo. Len. Field Value +15:36:51 ============================================================================ +15:36:51 [ 1] [ 4] [0810] +15:36:51 [ 7] [ 10] [0320083651] +15:36:51 [ 11] [ 6] [807318] +15:36:51 [ 15] [ 4] [0320] +15:36:51 [ 37] [ 12] [57915807318] +15:36:51 [ 39] [ 2] [00] +15:36:51 [ 70] [ 3] [001] +15:36:51 ============================================================================ +15:36:51 Sending to : +15:36:51 ============================================================================ +15:36:51 + + +waiting on router queue for slot.... +15:36:53 ============================================================================ +15:36:53 Slot Id : <289> +15:36:53 Transaction Type : RESPONSE +15:36:53 Received From : +15:36:53 ============================================================================ +15:36:53 FNo. Len. Field Value +15:36:53 ============================================================================ +15:36:53 [ 1] [ 4] [0430] +15:36:53 [ 2] [ 16] [6213545000339444] +15:36:53 [ 3] [ 6] [012000] +15:36:53 [ 4] [ 12] [000100000000] +15:36:53 [ 7] [ 10] [0320153636] +15:36:53 [ 11] [ 6] [177375] +15:36:53 [ 12] [ 6] [153636] +15:36:53 [ 13] [ 4] [0320] +15:36:53 [ 14] [ 4] [4912] +15:36:53 [ 15] [ 4] [0320] +15:36:53 [ 18] [ 4] [6011] +15:36:53 [ 22] [ 3] [900] +15:36:53 [ 25] [ 2] [02] +15:36:53 [ 28] [ 9] [C00002000] +15:36:53 [ 32] [ 6] [220699] +15:36:53 [ 35] [ 32] [6213545000339444=491212013944543] +15:36:53 [ 37] [ 12] [507900010246] +15:36:53 [ 39] [ 2] [00] +15:36:53 [ 41] [ 8] [01000100] +15:36:53 [ 42] [ 15] [APTRA ] +15:36:53 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:36:53 [ 49] [ 3] [418] +15:36:53 [ 90] [ 42] [020017737503201536360000022069900000000000] +15:36:53 ============================================================================ +15:36:53 Calculate Source COMM Id = 1 +15:36:53 ============================================================================ +15:36:53 + + +waiting on router queue for slot.... +15:36:53 ============================================================================ +15:36:53 Slot Id : <285> +15:36:53 Transaction Type : RESPONSE +15:36:53 Received From : +15:36:53 ============================================================================ +15:36:53 FNo. Len. Field Value +15:36:53 ============================================================================ +15:36:53 [ 1] [ 4] [0210] +15:36:53 [ 2] [ 16] [6213541000612047] +15:36:53 [ 3] [ 6] [010000] +15:36:53 [ 4] [ 12] [000080000000] +15:36:53 [ 7] [ 10] [0320153439] +15:36:53 [ 11] [ 6] [950226] +15:36:53 [ 12] [ 6] [153439] +15:36:53 [ 13] [ 4] [0320] +15:36:53 [ 15] [ 4] [0320] +15:36:53 [ 18] [ 4] [6011] +15:36:53 [ 19] [ 3] [418] +15:36:53 [ 32] [ 6] [668899] +15:36:53 [ 35] [ 32] [6213541000612047=491212011204309] +15:36:53 [ 37] [ 12] [507900285827] +15:36:53 [ 38] [ 6] [950226] +15:36:53 [ 39] [ 2] [51] +15:36:53 [ 41] [ 8] [03010005] +15:36:53 [ 49] [ 3] [418] +15:36:53 [ 54] [ 40] [0001418C0000812835270002418C000081283527] +15:36:53 ============================================================================ +15:36:53 Calculate Source COMM Id = 4 +15:36:53 ============================================================================ +15:36:53 + + +waiting on router queue for slot.... +15:36:57 ============================================================================ +15:36:57 Slot Id : <301> +15:36:57 Transaction Type : REQUEST +15:36:57 Received From : +15:36:57 ============================================================================ +15:36:57 FNo. Len. Field Value +15:36:57 ============================================================================ +15:36:57 [ 1] [ 4] [0800] +15:36:57 [ 7] [ 10] [0320224845] +15:36:57 [ 11] [ 6] [154845] +15:36:57 [ 37] [ 12] [57915154845] +15:36:57 [ 70] [ 3] [301] +15:36:57 ============================================================================ +15:36:57 + + +waiting on router queue for slot.... +15:36:57 Sending to : +15:36:57 ============================================================================ +15:36:57 ============================================================================ +15:36:57 Slot Id : <301> +15:36:57 Transaction Type : RESPONSE +15:36:57 Received From : +15:36:57 ============================================================================ +15:36:57 FNo. Len. Field Value +15:36:57 ============================================================================ +15:36:57 [ 1] [ 4] [0810] +15:36:57 [ 7] [ 10] [0320224845] +15:36:57 [ 11] [ 6] [154845] +15:36:57 [ 37] [ 12] [579151548450] +15:36:57 [ 39] [ 2] [00] +15:36:57 [ 70] [ 3] [810] +15:36:57 ============================================================================ +15:36:57 Calculate Source COMM Id = 6 +15:36:57 ============================================================================ +15:36:57 + + +waiting on router queue for slot.... +15:37:05 ============================================================================ +15:37:05 Slot Id : <291> +15:37:05 Transaction Type : REQUEST +15:37:05 Received From : +15:37:05 ============================================================================ +15:37:05 FNo. Len. Field Value +15:37:05 ============================================================================ +15:37:05 [ 1] [ 4] [0800] +15:37:05 [ 7] [ 10] [0320083612] +15:37:05 [ 11] [ 6] [157050] +15:37:05 [ 70] [ 3] [301] +15:37:05 ============================================================================ +15:37:05 + + +waiting on router queue for slot.... +15:37:05 Sending to : +15:37:05 ============================================================================ +15:37:05 ============================================================================ +15:37:05 Slot Id : <291> +15:37:05 Transaction Type : RESPONSE +15:37:05 Received From : +15:37:05 ============================================================================ +15:37:05 FNo. Len. Field Value +15:37:05 ============================================================================ +15:37:05 [ 1] [ 4] [0810] +15:37:05 [ 7] [ 10] [0320083612] +15:37:05 [ 11] [ 6] [157050] +15:37:05 [ 39] [ 2] [00] +15:37:05 [ 70] [ 3] [301] +15:37:05 ============================================================================ +15:37:05 Calculate Source COMM Id = 2 +15:37:05 ============================================================================ +15:37:05 + + +waiting on router queue for slot.... +15:37:06 ============================================================================ +15:37:06 Slot Id : <327> +15:37:06 Transaction Type : REQUEST +15:37:06 Received From : +15:37:06 ============================================================================ +15:37:06 FNo. Len. Field Value +15:37:06 ============================================================================ +15:37:06 [ 1] [ 4] [0200] +15:37:06 [ 2] [ 16] [6688990105394108] +15:37:06 [ 3] [ 6] [011000] +15:37:06 [ 4] [ 12] [000080000000] +15:37:06 [ 7] [ 10] [0320083612] +15:37:06 [ 11] [ 6] [270081] +15:37:06 [ 12] [ 6] [153612] +15:37:06 [ 13] [ 4] [0320] +15:37:06 [ 14] [ 4] [4309] +15:37:06 [ 15] [ 4] [0320] +15:37:06 [ 18] [ 4] [6011] +15:37:06 [ 19] [ 3] [418] +15:37:06 [ 22] [ 3] [021] +15:37:06 [ 25] [ 2] [01] +15:37:06 [ 28] [ 9] [D00002000] +15:37:06 [ 32] [ 6] [180893] +15:37:06 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:37:06 [ 37] [ 12] [507908270081] +15:37:06 [ 41] [ 8] [0110VTBR] +15:37:06 [ 42] [ 15] [999999 ] +15:37:06 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:37:06 [ 49] [ 3] [418] +15:37:06 [ 52] [ 16] [1A8D8A3D3CCB94DB] +15:37:06 ============================================================================ +15:37:06 + + +waiting on router queue for slot.... +15:37:06 Sending to : +15:37:06 ============================================================================ +15:37:06 Sending to : +15:37:06 ============================================================================ +15:37:06 ============================================================================ +15:37:06 Slot Id : <327> +15:37:06 Transaction Type : REQUEST +15:37:06 Received From : +15:37:06 ============================================================================ +15:37:06 FNo. Len. Field Value +15:37:06 ============================================================================ +15:37:06 [ 1] [ 4] [0200] +15:37:06 [ 2] [ 16] [6688990105394108] +15:37:06 [ 3] [ 6] [011000] +15:37:06 [ 4] [ 12] [000080000000] +15:37:06 [ 7] [ 10] [0320083612] +15:37:06 [ 11] [ 6] [270081] +15:37:06 [ 12] [ 6] [153612] +15:37:06 [ 13] [ 4] [0320] +15:37:06 [ 14] [ 4] [4309] +15:37:06 [ 15] [ 4] [0320] +15:37:06 [ 18] [ 4] [6011] +15:37:06 [ 19] [ 3] [418] +15:37:06 [ 22] [ 3] [021] +15:37:06 [ 25] [ 2] [01] +15:37:06 [ 28] [ 9] [D00002000] +15:37:06 [ 32] [ 6] [180893] +15:37:06 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:37:06 [ 37] [ 12] [507908270081] +15:37:06 [ 41] [ 8] [0110VTBR] +15:37:06 [ 42] [ 15] [999999 ] +15:37:06 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:37:06 [ 49] [ 3] [418] +15:37:06 [ 52] [ 16] [1A8D8A3D3CCB94DB] +15:37:06 ============================================================================ +15:37:06 + + +waiting on router queue for slot.... +15:37:06 Sending to : +15:37:06 ============================================================================ +15:37:06 ============================================================================ +15:37:06 Slot Id : <327> +15:37:06 Transaction Type : REQUEST +15:37:06 Received From : +15:37:06 ============================================================================ +15:37:06 FNo. Len. Field Value +15:37:06 ============================================================================ +15:37:06 [ 1] [ 4] [0200] +15:37:06 [ 2] [ 16] [6688990105394108] +15:37:06 [ 3] [ 6] [011000] +15:37:06 [ 4] [ 12] [000080000000] +15:37:06 [ 7] [ 10] [0320083612] +15:37:06 [ 11] [ 6] [270081] +15:37:06 [ 12] [ 6] [153612] +15:37:06 [ 13] [ 4] [0320] +15:37:06 [ 14] [ 4] [4309] +15:37:06 [ 15] [ 4] [0320] +15:37:06 [ 18] [ 4] [6011] +15:37:06 [ 19] [ 3] [418] +15:37:06 [ 22] [ 3] [021] +15:37:06 [ 25] [ 2] [01] +15:37:06 [ 28] [ 9] [D00002000] +15:37:06 [ 32] [ 6] [180893] +15:37:06 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:37:06 [ 37] [ 12] [507908270081] +15:37:06 [ 41] [ 8] [0110VTBR] +15:37:06 [ 42] [ 15] [999999 ] +15:37:06 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:37:06 [ 49] [ 3] [418] +15:37:06 [ 52] [ 16] [3DADA33D54D48C28] +15:37:06 ============================================================================ +15:37:06 + + +waiting on router queue for slot.... +15:37:06 Sending to : <0> +15:37:06 ============================================================================ +15:37:06 ============================================================================ +15:37:06 Slot Id : <327> +15:37:06 Transaction Type : RESPONSE +15:37:06 Received From : +15:37:06 ============================================================================ +15:37:06 FNo. Len. Field Value +15:37:06 ============================================================================ +15:37:06 [ 1] [ 4] [0210] +15:37:06 [ 2] [ 16] [6688990105394108] +15:37:06 [ 3] [ 6] [011000] +15:37:06 [ 4] [ 12] [000080000000] +15:37:06 [ 7] [ 10] [0320083612] +15:37:06 [ 11] [ 6] [270081] +15:37:06 [ 12] [ 6] [153612] +15:37:06 [ 13] [ 4] [0320] +15:37:06 [ 15] [ 4] [0320] +15:37:06 [ 18] [ 4] [6011] +15:37:06 [ 19] [ 3] [418] +15:37:06 [ 22] [ 3] [021] +15:37:06 [ 32] [ 6] [180893] +15:37:06 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:37:06 [ 37] [ 12] [507908270081] +15:37:06 [ 39] [ 2] [14] +15:37:06 [ 41] [ 8] [0110VTBR] +15:37:06 [ 49] [ 3] [418] +15:37:06 ============================================================================ +15:37:06 Sending to : +15:37:06 ============================================================================ +15:37:06 + + +waiting on router queue for slot.... +15:37:07 ============================================================================ +15:37:07 Slot Id : <327> +15:37:07 Transaction Type : RESPONSE +15:37:07 Received From : +15:37:07 ============================================================================ +15:37:07 FNo. Len. Field Value +15:37:07 ============================================================================ +15:37:07 [ 1] [ 4] [0210] +15:37:07 [ 2] [ 16] [6688990105394108] +15:37:07 [ 3] [ 6] [011000] +15:37:07 [ 4] [ 12] [000080000000] +15:37:07 [ 7] [ 10] [0320083612] +15:37:07 [ 11] [ 6] [270081] +15:37:07 [ 12] [ 6] [153612] +15:37:07 [ 13] [ 4] [0320] +15:37:07 [ 15] [ 4] [0320] +15:37:07 [ 18] [ 4] [6011] +15:37:07 [ 19] [ 3] [418] +15:37:07 [ 22] [ 3] [021] +15:37:07 [ 32] [ 6] [180893] +15:37:07 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:37:07 [ 37] [ 12] [507908270081] +15:37:07 [ 39] [ 2] [14] +15:37:07 [ 41] [ 8] [0110VTBR] +15:37:07 [ 49] [ 3] [418] +15:37:07 ============================================================================ +15:37:07 Calculate Source COMM Id = 2 +15:37:07 ============================================================================ +15:37:07 + + +waiting on router queue for slot.... +15:37:11 ============================================================================ +15:37:11 Slot Id : <305> +15:37:11 Transaction Type : REQUEST +15:37:11 Received From : +15:37:11 ============================================================================ +15:37:11 FNo. Len. Field Value +15:37:11 ============================================================================ +15:37:11 [ 1] [ 4] [0200] +15:37:11 [ 2] [ 16] [6688990040145458] +15:37:11 [ 3] [ 6] [011000] +15:37:11 [ 4] [ 12] [000036000000] +15:37:11 [ 7] [ 10] [0320153707] +15:37:11 [ 11] [ 6] [786138] +15:37:11 [ 12] [ 6] [153707] +15:37:11 [ 13] [ 4] [0320] +15:37:11 [ 15] [ 4] [0320] +15:37:11 [ 18] [ 4] [6011] +15:37:11 [ 22] [ 3] [900] +15:37:11 [ 25] [ 2] [02] +15:37:11 [ 28] [ 9] [D00002000] +15:37:11 [ 32] [ 6] [621354] +15:37:11 [ 35] [ 37] [6688990040145458=98041261652882100000] +15:37:11 [ 37] [ 12] [507905335202] +15:37:11 [ 41] [ 8] [05004700] +15:37:11 [ 42] [ 15] [NATIVE ] +15:37:11 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:37:11 [ 49] [ 3] [418] +15:37:11 [ 52] [ 16] [1E029173EB0D4DAB] +15:37:11 ============================================================================ +15:37:11 + + +waiting on router queue for slot.... +15:37:11 Sending to : +15:37:11 ============================================================================ +15:37:11 Sending to : +15:37:11 ============================================================================ +15:37:12 ============================================================================ +15:37:12 Slot Id : <305> +15:37:12 Transaction Type : REQUEST +15:37:12 Received From : +15:37:12 ============================================================================ +15:37:12 FNo. Len. Field Value +15:37:12 ============================================================================ +15:37:12 [ 1] [ 4] [0200] +15:37:12 [ 2] [ 16] [6688990040145458] +15:37:12 [ 3] [ 6] [011000] +15:37:12 [ 4] [ 12] [000036000000] +15:37:12 [ 7] [ 10] [0320153707] +15:37:12 [ 11] [ 6] [786138] +15:37:12 [ 12] [ 6] [153707] +15:37:12 [ 13] [ 4] [0320] +15:37:12 [ 15] [ 4] [0320] +15:37:12 [ 18] [ 4] [6011] +15:37:12 [ 22] [ 3] [900] +15:37:12 [ 25] [ 2] [02] +15:37:12 [ 28] [ 9] [D00002000] +15:37:12 [ 32] [ 6] [621354] +15:37:12 [ 35] [ 37] [6688990040145458=98041261652882100000] +15:37:12 [ 37] [ 12] [507905335202] +15:37:12 [ 41] [ 8] [05004700] +15:37:12 [ 42] [ 15] [NATIVE ] +15:37:12 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:37:12 [ 49] [ 3] [418] +15:37:12 [ 52] [ 16] [1E029173EB0D4DAB] +15:37:12 ============================================================================ +15:37:12 + + +waiting on router queue for slot.... +15:37:12 Sending to : +15:37:12 ============================================================================ +15:37:12 ============================================================================ +15:37:12 Slot Id : <305> +15:37:12 Transaction Type : REQUEST +15:37:12 Received From : +15:37:12 ============================================================================ +15:37:12 FNo. Len. Field Value +15:37:12 ============================================================================ +15:37:12 [ 1] [ 4] [0200] +15:37:12 [ 2] [ 16] [6688990040145458] +15:37:12 [ 3] [ 6] [011000] +15:37:12 [ 4] [ 12] [000036000000] +15:37:12 [ 7] [ 10] [0320153707] +15:37:12 [ 11] [ 6] [786138] +15:37:12 [ 12] [ 6] [153707] +15:37:12 [ 13] [ 4] [0320] +15:37:12 [ 15] [ 4] [0320] +15:37:12 [ 18] [ 4] [6011] +15:37:12 [ 22] [ 3] [900] +15:37:12 [ 25] [ 2] [02] +15:37:12 [ 28] [ 9] [D00002000] +15:37:12 [ 32] [ 6] [621354] +15:37:12 [ 35] [ 37] [6688990040145458=98041261652882100000] +15:37:12 [ 37] [ 12] [507905335202] +15:37:12 [ 41] [ 8] [05004700] +15:37:12 [ 42] [ 15] [NATIVE ] +15:37:12 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:37:12 [ 49] [ 3] [418] +15:37:12 [ 52] [ 16] [13ABA4E621531890] +15:37:12 ============================================================================ +15:37:12 + + +waiting on router queue for slot.... +15:37:12 Sending to : <4> +15:37:12 ============================================================================ +15:37:13 ============================================================================ +15:37:13 Slot Id : <305> +15:37:13 Transaction Type : RESPONSE +15:37:13 Received From : +15:37:13 ============================================================================ +15:37:13 FNo. Len. Field Value +15:37:13 ============================================================================ +15:37:13 [ 1] [ 4] [0210] +15:37:13 [ 2] [ 16] [6688990040145458] +15:37:13 [ 3] [ 6] [011000] +15:37:13 [ 4] [ 12] [000036000000] +15:37:13 [ 11] [ 6] [786138] +15:37:13 [ 12] [ 6] [153707] +15:37:13 [ 15] [ 4] [0320] +15:37:13 [ 18] [ 4] [6011] +15:37:13 [ 32] [ 6] [621354] +15:37:13 [ 35] [ 37] [6688990040145458=98041261652882100000] +15:37:13 [ 37] [ 12] [507905335202] +15:37:13 [ 38] [ 6] [290670] +15:37:13 [ 39] [ 2] [00] +15:37:13 [ 41] [ 8] [05004700] +15:37:13 [ 49] [ 3] [418] +15:37:13 [ 54] [ 20] [1002418C000013800000] +15:37:13 ============================================================================ +15:37:13 Sending to : +15:37:13 ============================================================================ +15:37:13 + + +waiting on router queue for slot.... +15:37:14 ============================================================================ +15:37:14 Slot Id : <305> +15:37:14 Transaction Type : RESPONSE +15:37:14 Received From : +15:37:14 ============================================================================ +15:37:14 FNo. Len. Field Value +15:37:14 ============================================================================ +15:37:14 [ 1] [ 4] [0210] +15:37:14 [ 2] [ 16] [6688990040145458] +15:37:14 [ 3] [ 6] [011000] +15:37:14 [ 4] [ 12] [000036000000] +15:37:14 [ 11] [ 6] [786138] +15:37:14 [ 12] [ 6] [153707] +15:37:14 [ 15] [ 4] [0320] +15:37:14 [ 18] [ 4] [6011] +15:37:14 [ 32] [ 6] [621354] +15:37:14 [ 35] [ 37] [6688990040145458=98041261652882100000] +15:37:14 [ 37] [ 12] [507905335202] +15:37:14 [ 38] [ 6] [290670] +15:37:14 [ 39] [ 2] [00] +15:37:14 [ 41] [ 8] [05004700] +15:37:14 [ 49] [ 3] [418] +15:37:14 [ 54] [ 20] [1002418C000013800000] +15:37:14 ============================================================================ +15:37:14 Calculate Source COMM Id = 0 +15:37:14 ============================================================================ +15:37:14 + + +waiting on router queue for slot.... +15:37:19 ============================================================================ +15:37:19 Slot Id : <302> +15:37:19 Transaction Type : REQUEST +15:37:19 Received From : +15:37:19 ============================================================================ +15:37:19 FNo. Len. Field Value +15:37:19 ============================================================================ +15:37:19 [ 1] [ 4] [0200] +15:37:19 [ 2] [ 16] [6688990105648602] +15:37:19 [ 3] [ 6] [012000] +15:37:19 [ 4] [ 12] [000100000000] +15:37:19 [ 7] [ 10] [0320153714] +15:37:19 [ 11] [ 6] [786166] +15:37:19 [ 12] [ 6] [153714] +15:37:19 [ 13] [ 4] [0320] +15:37:19 [ 15] [ 4] [0320] +15:37:19 [ 18] [ 4] [6011] +15:37:19 [ 22] [ 3] [900] +15:37:19 [ 25] [ 2] [02] +15:37:19 [ 28] [ 9] [D00002000] +15:37:19 [ 32] [ 6] [621354] +15:37:19 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:37:19 [ 37] [ 12] [507904635765] +15:37:19 [ 41] [ 8] [17000800] +15:37:19 [ 42] [ 15] [NATIVE ] +15:37:19 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:37:19 [ 49] [ 3] [418] +15:37:19 [ 52] [ 16] [998CDE3662A6009F] +15:37:19 ============================================================================ +15:37:19 + + +waiting on router queue for slot.... +15:37:19 Sending to : +15:37:19 ============================================================================ +15:37:19 Sending to : +15:37:19 ============================================================================ +15:37:20 ============================================================================ +15:37:20 Slot Id : <302> +15:37:20 Transaction Type : REQUEST +15:37:20 Received From : +15:37:20 ============================================================================ +15:37:20 FNo. Len. Field Value +15:37:20 ============================================================================ +15:37:20 [ 1] [ 4] [0200] +15:37:20 [ 2] [ 16] [6688990105648602] +15:37:20 [ 3] [ 6] [012000] +15:37:20 [ 4] [ 12] [000100000000] +15:37:20 [ 7] [ 10] [0320153714] +15:37:20 [ 11] [ 6] [786166] +15:37:20 [ 12] [ 6] [153714] +15:37:20 [ 13] [ 4] [0320] +15:37:20 [ 15] [ 4] [0320] +15:37:20 [ 18] [ 4] [6011] +15:37:20 [ 22] [ 3] [900] +15:37:20 [ 25] [ 2] [02] +15:37:20 [ 28] [ 9] [D00002000] +15:37:20 [ 32] [ 6] [621354] +15:37:20 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:37:20 [ 37] [ 12] [507904635765] +15:37:20 [ 41] [ 8] [17000800] +15:37:20 [ 42] [ 15] [NATIVE ] +15:37:20 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:37:20 [ 49] [ 3] [418] +15:37:20 [ 52] [ 16] [998CDE3662A6009F] +15:37:20 ============================================================================ +15:37:20 + + +waiting on router queue for slot.... +15:37:20 Sending to : +15:37:20 ============================================================================ +15:37:20 ============================================================================ +15:37:20 Slot Id : <302> +15:37:20 Transaction Type : REQUEST +15:37:20 Received From : +15:37:20 ============================================================================ +15:37:20 FNo. Len. Field Value +15:37:20 ============================================================================ +15:37:20 [ 1] [ 4] [0200] +15:37:20 [ 2] [ 16] [6688990105648602] +15:37:20 [ 3] [ 6] [012000] +15:37:20 [ 4] [ 12] [000100000000] +15:37:20 [ 7] [ 10] [0320153714] +15:37:20 [ 11] [ 6] [786166] +15:37:20 [ 12] [ 6] [153714] +15:37:20 [ 13] [ 4] [0320] +15:37:20 [ 15] [ 4] [0320] +15:37:20 [ 18] [ 4] [6011] +15:37:20 [ 22] [ 3] [900] +15:37:20 [ 25] [ 2] [02] +15:37:20 [ 28] [ 9] [D00002000] +15:37:20 [ 32] [ 6] [621354] +15:37:20 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:37:20 [ 37] [ 12] [507904635765] +15:37:20 [ 41] [ 8] [17000800] +15:37:20 [ 42] [ 15] [NATIVE ] +15:37:20 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:37:20 [ 49] [ 3] [418] +15:37:20 [ 52] [ 16] [4EB2AD8539A02440] +15:37:20 ============================================================================ +15:37:20 + + +waiting on router queue for slot.... +15:37:20 Sending to : <4> +15:37:20 ============================================================================ +15:37:20 ============================================================================ +15:37:20 Slot Id : <331> +15:37:20 Transaction Type : REQUEST +15:37:20 Received From : +15:37:20 ============================================================================ +15:37:20 FNo. Len. Field Value +15:37:20 ============================================================================ +15:37:20 [ 1] [ 4] [0800] +15:37:20 [ 7] [ 10] [0320083628] +15:37:20 [ 11] [ 6] [157051] +15:37:20 [ 70] [ 3] [301] +15:37:20 ============================================================================ +15:37:20 + + +waiting on router queue for slot.... +15:37:20 Sending to : +15:37:20 ============================================================================ +15:37:20 ============================================================================ +15:37:20 Slot Id : <331> +15:37:20 Transaction Type : RESPONSE +15:37:20 Received From : +15:37:20 ============================================================================ +15:37:20 FNo. Len. Field Value +15:37:20 ============================================================================ +15:37:20 [ 1] [ 4] [0810] +15:37:20 [ 7] [ 10] [0320083628] +15:37:20 [ 11] [ 6] [157051] +15:37:20 [ 39] [ 2] [00] +15:37:20 [ 70] [ 3] [301] +15:37:20 ============================================================================ +15:37:20 Calculate Source COMM Id = 2 +15:37:20 ============================================================================ +15:37:20 + + +waiting on router queue for slot.... +15:37:20 ============================================================================ +15:37:20 Slot Id : <302> +15:37:20 Transaction Type : RESPONSE +15:37:20 Received From : +15:37:20 ============================================================================ +15:37:20 FNo. Len. Field Value +15:37:20 ============================================================================ +15:37:20 [ 1] [ 4] [0210] +15:37:20 [ 2] [ 16] [6688990105648602] +15:37:20 [ 3] [ 6] [012000] +15:37:20 [ 4] [ 12] [000100000000] +15:37:20 [ 11] [ 6] [786166] +15:37:20 [ 12] [ 6] [153714] +15:37:20 [ 15] [ 4] [0320] +15:37:20 [ 18] [ 4] [6011] +15:37:20 [ 32] [ 6] [621354] +15:37:20 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:37:20 [ 37] [ 12] [507904635765] +15:37:20 [ 38] [ 6] [105129] +15:37:20 [ 39] [ 2] [00] +15:37:20 [ 41] [ 8] [17000800] +15:37:20 [ 49] [ 3] [418] +15:37:20 [ 54] [ 20] [2002418C000210871798] +15:37:20 ============================================================================ +15:37:21 Sending to : +15:37:21 ============================================================================ +15:37:21 + + +waiting on router queue for slot.... +15:37:22 ============================================================================ +15:37:22 Slot Id : <302> +15:37:22 Transaction Type : RESPONSE +15:37:22 Received From : +15:37:22 ============================================================================ +15:37:22 FNo. Len. Field Value +15:37:22 ============================================================================ +15:37:22 [ 1] [ 4] [0210] +15:37:22 [ 2] [ 16] [6688990105648602] +15:37:22 [ 3] [ 6] [012000] +15:37:22 [ 4] [ 12] [000100000000] +15:37:22 [ 11] [ 6] [786166] +15:37:22 [ 12] [ 6] [153714] +15:37:22 [ 15] [ 4] [0320] +15:37:22 [ 18] [ 4] [6011] +15:37:22 [ 32] [ 6] [621354] +15:37:22 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:37:22 [ 37] [ 12] [507904635765] +15:37:22 [ 38] [ 6] [105129] +15:37:22 [ 39] [ 2] [00] +15:37:22 [ 41] [ 8] [17000800] +15:37:22 [ 49] [ 3] [418] +15:37:22 [ 54] [ 20] [2002418C000210871798] +15:37:22 ============================================================================ +15:37:22 Calculate Source COMM Id = 0 +15:37:22 ============================================================================ +15:37:22 + + +waiting on router queue for slot.... +15:37:31 ============================================================================ +15:37:31 Slot Id : <314> +15:37:31 Transaction Type : REQUEST +15:37:31 Received From : +15:37:31 ============================================================================ +15:37:31 FNo. Len. Field Value +15:37:31 ============================================================================ +15:37:31 [ 1] [ 4] [0800] +15:37:31 [ 7] [ 10] [0320083639] +15:37:31 [ 11] [ 6] [157052] +15:37:31 [ 70] [ 3] [301] +15:37:31 ============================================================================ +15:37:31 + + +waiting on router queue for slot.... +15:37:31 Sending to : +15:37:31 ============================================================================ +15:37:31 ============================================================================ +15:37:31 Slot Id : <314> +15:37:31 Transaction Type : RESPONSE +15:37:31 Received From : +15:37:31 ============================================================================ +15:37:31 FNo. Len. Field Value +15:37:31 ============================================================================ +15:37:31 [ 1] [ 4] [0810] +15:37:31 [ 7] [ 10] [0320083639] +15:37:31 [ 11] [ 6] [157052] +15:37:31 [ 39] [ 2] [00] +15:37:31 [ 70] [ 3] [301] +15:37:31 ============================================================================ +15:37:31 Calculate Source COMM Id = 2 +15:37:31 ============================================================================ +15:37:31 + + +waiting on router queue for slot.... +15:37:38 ============================================================================ +15:37:38 Slot Id : <292> +15:37:38 Transaction Type : REQUEST +15:37:38 Received From : +15:37:38 ============================================================================ +15:37:38 FNo. Len. Field Value +15:37:38 ============================================================================ +15:37:38 [ 1] [ 4] [0200] +15:37:38 [ 2] [ 16] [6688990105394108] +15:37:38 [ 3] [ 6] [301000] +15:37:38 [ 7] [ 10] [0320083644] +15:37:38 [ 11] [ 6] [270083] +15:37:38 [ 12] [ 6] [153644] +15:37:38 [ 13] [ 4] [0320] +15:37:38 [ 14] [ 4] [4309] +15:37:38 [ 15] [ 4] [0320] +15:37:38 [ 18] [ 4] [6011] +15:37:38 [ 19] [ 3] [418] +15:37:38 [ 22] [ 3] [021] +15:37:38 [ 25] [ 2] [01] +15:37:38 [ 32] [ 6] [180893] +15:37:38 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:37:38 [ 37] [ 12] [507908270083] +15:37:38 [ 41] [ 8] [0110VTBR] +15:37:38 [ 42] [ 15] [999999 ] +15:37:38 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:37:38 [ 49] [ 3] [418] +15:37:38 [ 52] [ 16] [1A8D8A3D3CCB94DB] +15:37:38 ============================================================================ +15:37:38 + + +waiting on router queue for slot.... +15:37:38 Sending to : +15:37:38 ============================================================================ +15:37:38 Sending to : +15:37:38 ============================================================================ +15:37:38 ============================================================================ +15:37:38 Slot Id : <292> +15:37:38 Transaction Type : REQUEST +15:37:38 Received From : +15:37:38 ============================================================================ +15:37:38 FNo. Len. Field Value +15:37:38 ============================================================================ +15:37:38 [ 1] [ 4] [0200] +15:37:38 [ 2] [ 16] [6688990105394108] +15:37:38 [ 3] [ 6] [301000] +15:37:38 [ 7] [ 10] [0320083644] +15:37:38 [ 11] [ 6] [270083] +15:37:38 [ 12] [ 6] [153644] +15:37:38 [ 13] [ 4] [0320] +15:37:38 [ 14] [ 4] [4309] +15:37:38 [ 15] [ 4] [0320] +15:37:38 [ 18] [ 4] [6011] +15:37:38 [ 19] [ 3] [418] +15:37:38 [ 22] [ 3] [021] +15:37:38 [ 25] [ 2] [01] +15:37:38 [ 32] [ 6] [180893] +15:37:38 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:37:38 [ 37] [ 12] [507908270083] +15:37:38 [ 41] [ 8] [0110VTBR] +15:37:38 [ 42] [ 15] [999999 ] +15:37:38 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:37:38 [ 49] [ 3] [418] +15:37:38 [ 52] [ 16] [1A8D8A3D3CCB94DB] +15:37:38 ============================================================================ +15:37:38 + + +waiting on router queue for slot.... +15:37:38 Sending to : +15:37:38 ============================================================================ +15:37:38 ============================================================================ +15:37:38 Slot Id : <292> +15:37:38 Transaction Type : REQUEST +15:37:38 Received From : +15:37:38 ============================================================================ +15:37:38 FNo. Len. Field Value +15:37:38 ============================================================================ +15:37:38 [ 1] [ 4] [0200] +15:37:38 [ 2] [ 16] [6688990105394108] +15:37:38 [ 3] [ 6] [301000] +15:37:38 [ 7] [ 10] [0320083644] +15:37:38 [ 11] [ 6] [270083] +15:37:38 [ 12] [ 6] [153644] +15:37:38 [ 13] [ 4] [0320] +15:37:38 [ 14] [ 4] [4309] +15:37:38 [ 15] [ 4] [0320] +15:37:38 [ 18] [ 4] [6011] +15:37:38 [ 19] [ 3] [418] +15:37:38 [ 22] [ 3] [021] +15:37:38 [ 25] [ 2] [01] +15:37:38 [ 32] [ 6] [180893] +15:37:38 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:37:38 [ 37] [ 12] [507908270083] +15:37:38 [ 41] [ 8] [0110VTBR] +15:37:38 [ 42] [ 15] [999999 ] +15:37:38 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +15:37:38 [ 49] [ 3] [418] +15:37:38 [ 52] [ 16] [3DADA33D54D48C28] +15:37:38 ============================================================================ +15:37:38 + + +waiting on router queue for slot.... +15:37:38 Sending to : <0> +15:37:38 ============================================================================ +15:37:38 ============================================================================ +15:37:38 Slot Id : <292> +15:37:38 Transaction Type : RESPONSE +15:37:38 Received From : +15:37:38 ============================================================================ +15:37:38 FNo. Len. Field Value +15:37:38 ============================================================================ +15:37:38 [ 1] [ 4] [0210] +15:37:38 [ 2] [ 16] [6688990105394108] +15:37:38 [ 3] [ 6] [301000] +15:37:38 [ 4] [ 12] [000000000000] +15:37:38 [ 7] [ 10] [0320083644] +15:37:38 [ 11] [ 6] [270083] +15:37:38 [ 12] [ 6] [153644] +15:37:38 [ 13] [ 4] [0320] +15:37:38 [ 15] [ 4] [0320] +15:37:38 [ 18] [ 4] [6011] +15:37:38 [ 19] [ 3] [418] +15:37:38 [ 22] [ 3] [021] +15:37:38 [ 32] [ 6] [180893] +15:37:38 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:37:38 [ 37] [ 12] [507908270083] +15:37:38 [ 39] [ 2] [14] +15:37:38 [ 41] [ 8] [0110VTBR] +15:37:38 [ 49] [ 3] [418] +15:37:38 ============================================================================ +15:37:38 Sending to : +15:37:38 ============================================================================ +15:37:38 + + +waiting on router queue for slot.... +15:37:39 ============================================================================ +15:37:39 Slot Id : <292> +15:37:39 Transaction Type : RESPONSE +15:37:39 Received From : +15:37:39 ============================================================================ +15:37:39 FNo. Len. Field Value +15:37:39 ============================================================================ +15:37:39 [ 1] [ 4] [0210] +15:37:39 [ 2] [ 16] [6688990105394108] +15:37:39 [ 3] [ 6] [301000] +15:37:39 [ 4] [ 12] [000000000000] +15:37:39 [ 7] [ 10] [0320083644] +15:37:39 [ 11] [ 6] [270083] +15:37:39 [ 12] [ 6] [153644] +15:37:39 [ 13] [ 4] [0320] +15:37:39 [ 15] [ 4] [0320] +15:37:39 [ 18] [ 4] [6011] +15:37:39 [ 19] [ 3] [418] +15:37:39 [ 22] [ 3] [021] +15:37:39 [ 32] [ 6] [180893] +15:37:39 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:37:39 [ 37] [ 12] [507908270083] +15:37:39 [ 39] [ 2] [14] +15:37:39 [ 41] [ 8] [0110VTBR] +15:37:39 [ 49] [ 3] [418] +15:37:39 ============================================================================ +15:37:39 Calculate Source COMM Id = 2 +15:37:39 ============================================================================ +15:37:39 + + +waiting on router queue for slot.... +15:37:53 ============================================================================ +15:37:53 Slot Id : <333> +15:37:53 Transaction Type : REQUEST +15:37:53 Received From : +15:37:53 ============================================================================ +15:37:53 FNo. Len. Field Value +15:37:53 ============================================================================ +15:37:53 [ 1] [ 4] [0800] +15:37:53 [ 2] [ 5] [02531] +15:37:53 [ 3] [ 6] [579158] +15:37:53 [ 7] [ 10] [0320083753] +15:37:53 [ 11] [ 6] [807319] +15:37:53 [ 15] [ 10] [0320083753] +15:37:53 [ 37] [ 11] [57915807319] +15:37:53 [ 70] [ 3] [001] +15:37:53 ============================================================================ +15:37:53 + + +waiting on router queue for slot.... +15:37:53 ============================================================================ +15:37:53 Slot Id : <333> +15:37:53 Transaction Type : RESPONSE +15:37:53 Received From : +15:37:53 ============================================================================ +15:37:53 FNo. Len. Field Value +15:37:53 ============================================================================ +15:37:53 [ 1] [ 4] [0810] +15:37:53 [ 7] [ 10] [0320083753] +15:37:53 [ 11] [ 6] [807319] +15:37:53 [ 15] [ 4] [0320] +15:37:53 [ 37] [ 12] [57915807319] +15:37:53 [ 39] [ 2] [00] +15:37:53 [ 70] [ 3] [001] +15:37:53 ============================================================================ +15:37:53 Sending to : +15:37:53 ============================================================================ +15:37:53 + + +waiting on router queue for slot.... +15:37:53 ============================================================================ +15:37:53 Slot Id : <335> +15:37:53 Transaction Type : REQUEST +15:37:53 Received From : +15:37:53 ============================================================================ +15:37:53 FNo. Len. Field Value +15:37:53 ============================================================================ +15:37:53 [ 1] [ 4] [0800] +15:37:53 [ 7] [ 10] [0320083700] +15:37:53 [ 11] [ 6] [157053] +15:37:53 [ 70] [ 3] [301] +15:37:53 ============================================================================ +15:37:53 + + +waiting on router queue for slot.... +15:37:53 Sending to : +15:37:53 ============================================================================ +15:37:53 ============================================================================ +15:37:53 Slot Id : <335> +15:37:53 Transaction Type : RESPONSE +15:37:53 Received From : +15:37:53 ============================================================================ +15:37:53 FNo. Len. Field Value +15:37:53 ============================================================================ +15:37:53 [ 1] [ 4] [0810] +15:37:53 [ 7] [ 10] [0320083700] +15:37:53 [ 11] [ 6] [157053] +15:37:53 [ 39] [ 2] [00] +15:37:53 [ 70] [ 3] [301] +15:37:53 ============================================================================ +15:37:53 Calculate Source COMM Id = 2 +15:37:53 ============================================================================ +15:37:53 + + +waiting on router queue for slot.... +15:37:54 ============================================================================ +15:37:54 Slot Id : <262> +15:37:54 Transaction Type : REQUEST +15:37:54 Received From : +15:37:54 ============================================================================ +15:37:54 FNo. Len. Field Value +15:37:54 ============================================================================ +15:37:54 [ 1] [ 4] [0200] +15:37:54 [ 2] [ 16] [6213544001556833] +15:37:54 [ 3] [ 6] [311000] +15:37:54 [ 4] [ 12] [000000000000] +15:37:54 [ 7] [ 10] [0320154541] +15:37:54 [ 11] [ 6] [251267] +15:37:54 [ 12] [ 6] [154541] +15:37:54 [ 13] [ 4] [0320] +15:37:54 [ 14] [ 4] [4912] +15:37:54 [ 15] [ 4] [0320] +15:37:54 [ 18] [ 4] [6011] +15:37:54 [ 22] [ 3] [900] +15:37:54 [ 25] [ 2] [02] +15:37:54 [ 28] [ 9] [000000000] +15:37:54 [ 32] [ 6] [220699] +15:37:54 [ 35] [ 32] [6213544001556833=491212015683372] +15:37:54 [ 37] [ 12] [507900336234] +15:37:54 [ 41] [ 8] [01001900] +15:37:54 [ 42] [ 15] [APTRA ] +15:37:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:37:54 [ 49] [ 3] [418] +15:37:54 [ 52] [ 16] [9CFEE6CF9338D2C8] +15:37:54 ============================================================================ +15:37:54 + + +waiting on router queue for slot.... +15:37:54 Sending to : +15:37:54 ============================================================================ +15:37:54 Sending to : +15:37:54 ============================================================================ +15:37:54 ============================================================================ +15:37:54 Slot Id : <262> +15:37:54 Transaction Type : REQUEST +15:37:54 Received From : +15:37:54 ============================================================================ +15:37:54 FNo. Len. Field Value +15:37:54 ============================================================================ +15:37:54 [ 1] [ 4] [0200] +15:37:54 [ 2] [ 16] [6213544001556833] +15:37:54 [ 3] [ 6] [311000] +15:37:54 [ 4] [ 12] [000000000000] +15:37:54 [ 7] [ 10] [0320154541] +15:37:54 [ 11] [ 6] [251267] +15:37:54 [ 12] [ 6] [154541] +15:37:54 [ 13] [ 4] [0320] +15:37:54 [ 14] [ 4] [4912] +15:37:54 [ 15] [ 4] [0320] +15:37:54 [ 18] [ 4] [6011] +15:37:54 [ 22] [ 3] [900] +15:37:54 [ 25] [ 2] [02] +15:37:54 [ 28] [ 9] [000000000] +15:37:54 [ 32] [ 6] [220699] +15:37:54 [ 35] [ 32] [6213544001556833=491212015683372] +15:37:54 [ 37] [ 12] [507900336234] +15:37:54 [ 41] [ 8] [01001900] +15:37:54 [ 42] [ 15] [APTRA ] +15:37:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:37:54 [ 49] [ 3] [418] +15:37:54 [ 52] [ 16] [9CFEE6CF9338D2C8] +15:37:54 ============================================================================ +15:37:54 + + +waiting on router queue for slot.... +15:37:54 Sending to : +15:37:54 ============================================================================ +15:37:54 ============================================================================ +15:37:54 Slot Id : <262> +15:37:54 Transaction Type : REQUEST +15:37:54 Received From : +15:37:54 ============================================================================ +15:37:54 FNo. Len. Field Value +15:37:54 ============================================================================ +15:37:54 [ 1] [ 4] [0200] +15:37:54 [ 2] [ 16] [6213544001556833] +15:37:54 [ 3] [ 6] [311000] +15:37:54 [ 4] [ 12] [000000000000] +15:37:54 [ 7] [ 10] [0320154541] +15:37:54 [ 11] [ 6] [251267] +15:37:54 [ 12] [ 6] [154541] +15:37:54 [ 13] [ 4] [0320] +15:37:54 [ 14] [ 4] [4912] +15:37:54 [ 15] [ 4] [0320] +15:37:54 [ 18] [ 4] [6011] +15:37:54 [ 22] [ 3] [900] +15:37:54 [ 25] [ 2] [02] +15:37:54 [ 28] [ 9] [000000000] +15:37:54 [ 32] [ 6] [220699] +15:37:54 [ 35] [ 32] [6213544001556833=491212015683372] +15:37:54 [ 37] [ 12] [507900336234] +15:37:54 [ 41] [ 8] [01001900] +15:37:54 [ 42] [ 15] [APTRA ] +15:37:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:37:54 [ 49] [ 3] [418] +15:37:54 [ 52] [ 16] [6E747BF09C2E6D08] +15:37:54 ============================================================================ +15:37:54 + + +waiting on router queue for slot.... +15:37:54 Sending to : <0> +15:37:54 ============================================================================ +15:37:55 ============================================================================ +15:37:55 Slot Id : <262> +15:37:55 Transaction Type : RESPONSE +15:37:55 Received From : +15:37:55 ============================================================================ +15:37:55 FNo. Len. Field Value +15:37:55 ============================================================================ +15:37:55 [ 1] [ 4] [0210] +15:37:55 [ 2] [ 16] [6213544001556833] +15:37:55 [ 3] [ 6] [311000] +15:37:55 [ 4] [ 12] [000000000000] +15:37:55 [ 7] [ 10] [0320154541] +15:37:55 [ 11] [ 6] [251267] +15:37:55 [ 12] [ 6] [154541] +15:37:55 [ 13] [ 4] [0320] +15:37:55 [ 15] [ 4] [0320] +15:37:55 [ 18] [ 4] [6011] +15:37:55 [ 32] [ 6] [220699] +15:37:55 [ 35] [ 32] [6213544001556833=491212015683372] +15:37:55 [ 37] [ 12] [507900336234] +15:37:55 [ 38] [ 6] [904821] +15:37:55 [ 39] [ 2] [00] +15:37:55 [ 41] [ 8] [01001900] +15:37:55 [ 49] [ 3] [418] +15:37:55 [ 54] [ 40] [1001418C0000478753161002418C000047875316] +15:37:55 ============================================================================ +15:37:55 Sending to : +15:37:55 ============================================================================ +15:37:55 + + +waiting on router queue for slot.... +15:37:56 ============================================================================ +15:37:56 Slot Id : <262> +15:37:56 Transaction Type : RESPONSE +15:37:56 Received From : +15:37:56 ============================================================================ +15:37:56 FNo. Len. Field Value +15:37:56 ============================================================================ +15:37:56 [ 1] [ 4] [0210] +15:37:56 [ 2] [ 16] [6213544001556833] +15:37:56 [ 3] [ 6] [311000] +15:37:56 [ 4] [ 12] [000000000000] +15:37:56 [ 7] [ 10] [0320154541] +15:37:56 [ 11] [ 6] [251267] +15:37:56 [ 12] [ 6] [154541] +15:37:56 [ 13] [ 4] [0320] +15:37:56 [ 15] [ 4] [0320] +15:37:56 [ 18] [ 4] [6011] +15:37:56 [ 32] [ 6] [220699] +15:37:56 [ 35] [ 32] [6213544001556833=491212015683372] +15:37:56 [ 37] [ 12] [507900336234] +15:37:56 [ 38] [ 6] [904821] +15:37:56 [ 39] [ 2] [00] +15:37:56 [ 41] [ 8] [01001900] +15:37:56 [ 49] [ 3] [418] +15:37:56 [ 54] [ 40] [1001418C0000478753161002418C000047875316] +15:37:56 ============================================================================ +15:37:56 Calculate Source COMM Id = 1 +15:37:56 ============================================================================ +15:37:56 + + +waiting on router queue for slot.... +15:38:02 ============================================================================ +15:38:02 Slot Id : <334> +15:38:02 Transaction Type : REQUEST +15:38:02 Received From : +15:38:02 ============================================================================ +15:38:02 FNo. Len. Field Value +15:38:02 ============================================================================ +15:38:02 [ 1] [ 4] [0800] +15:38:02 [ 7] [ 10] [0320224950] +15:38:02 [ 11] [ 6] [154950] +15:38:02 [ 37] [ 12] [57915154950] +15:38:02 [ 70] [ 3] [301] +15:38:02 ============================================================================ +15:38:02 + + +waiting on router queue for slot.... +15:38:02 Sending to : +15:38:02 ============================================================================ +15:38:02 ============================================================================ +15:38:02 Slot Id : <334> +15:38:02 Transaction Type : RESPONSE +15:38:02 Received From : +15:38:02 ============================================================================ +15:38:02 FNo. Len. Field Value +15:38:02 ============================================================================ +15:38:02 [ 1] [ 4] [0810] +15:38:02 [ 7] [ 10] [0320224950] +15:38:02 [ 11] [ 6] [154950] +15:38:02 [ 37] [ 12] [579151549500] +15:38:02 [ 39] [ 2] [00] +15:38:02 [ 70] [ 3] [810] +15:38:02 ============================================================================ +15:38:02 Calculate Source COMM Id = 6 +15:38:02 ============================================================================ +15:38:02 + + +waiting on router queue for slot.... +15:38:04 ============================================================================ +15:38:04 Slot Id : <321> +15:38:04 Transaction Type : REQUEST +15:38:04 Received From : +15:38:04 ============================================================================ +15:38:04 FNo. Len. Field Value +15:38:04 ============================================================================ +15:38:04 [ 0] [ 4] [0420] +15:38:04 [ 1] [ 4] [0420] +15:38:04 [ 2] [ 16] [6213545000339444] +15:38:04 [ 3] [ 6] [012000] +15:38:04 [ 4] [ 12] [000100000000] +15:38:04 [ 6] [ 12] [000100000000] +15:38:04 [ 7] [ 10] [0320153636] +15:38:04 [ 11] [ 6] [177375] +15:38:04 [ 12] [ 6] [153636] +15:38:04 [ 13] [ 4] [0320] +15:38:04 [ 14] [ 4] [4912] +15:38:04 [ 15] [ 4] [0320] +15:38:04 [ 18] [ 4] [6011] +15:38:04 [ 22] [ 3] [900] +15:38:04 [ 25] [ 2] [02] +15:38:04 [ 28] [ 9] [D00002000] +15:38:04 [ 32] [ 6] [220699] +15:38:04 [ 35] [ 32] [6213545000339444=491212013944543] +15:38:04 [ 37] [ 12] [507900010246] +15:38:04 [ 39] [ 2] [00] +15:38:04 [ 41] [ 8] [01000100] +15:38:04 [ 42] [ 15] [APTRA ] +15:38:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:38:04 [ 49] [ 3] [418] +15:38:04 [ 52] [ 16] [6661BA8AC4E925FB] +15:38:04 ============================================================================ +15:38:04 + + +waiting on router queue for slot.... +15:38:04 ============================================================================ +15:38:04 Slot Id : <321> +15:38:04 Transaction Type : RESPONSE +15:38:04 Received From : +15:38:04 ============================================================================ +15:38:04 FNo. Len. Field Value +15:38:04 ============================================================================ +15:38:04 [ 1] [ 4] [0430] +15:38:04 [ 2] [ 16] [6213545000339444] +15:38:04 [ 3] [ 6] [012000] +15:38:04 [ 4] [ 12] [000100000000] +15:38:04 [ 7] [ 10] [0320153636] +15:38:04 [ 11] [ 6] [177375] +15:38:04 [ 32] [ 6] [220699] +15:38:04 [ 35] [ 32] [6213545000339444=491212013944543] +15:38:04 [ 37] [ 12] [507900010246] +15:38:04 [ 39] [ 2] [00] +15:38:04 [ 41] [ 8] [01000100] +15:38:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:38:04 [ 49] [ 3] [418] +15:38:04 [ 90] [ 42] [020017737503201536360000022069900000000000] +15:38:04 ============================================================================ +15:38:04 Successfully send the slot [321] To REVERSAL Process +15:38:04 + + +waiting on router queue for slot.... +15:38:09 ============================================================================ +15:38:09 Slot Id : <336> +15:38:09 Transaction Type : REQUEST +15:38:09 Received From : +15:38:09 ============================================================================ +15:38:09 FNo. Len. Field Value +15:38:09 ============================================================================ +15:38:09 [ 1] [ 4] [0800] +15:38:09 [ 7] [ 10] [0320083716] +15:38:09 [ 11] [ 6] [157054] +15:38:09 [ 70] [ 3] [301] +15:38:09 ============================================================================ +15:38:09 + + +waiting on router queue for slot.... +15:38:09 Sending to : +15:38:09 ============================================================================ +15:38:09 ============================================================================ +15:38:09 Slot Id : <336> +15:38:09 Transaction Type : RESPONSE +15:38:09 Received From : +15:38:09 ============================================================================ +15:38:09 FNo. Len. Field Value +15:38:09 ============================================================================ +15:38:09 [ 1] [ 4] [0810] +15:38:09 [ 7] [ 10] [0320083716] +15:38:09 [ 11] [ 6] [157054] +15:38:09 [ 39] [ 2] [00] +15:38:09 [ 70] [ 3] [301] +15:38:09 ============================================================================ +15:38:09 Calculate Source COMM Id = 2 +15:38:09 ============================================================================ +15:38:09 + + +waiting on router queue for slot.... +15:38:21 ============================================================================ +15:38:21 Slot Id : <320> +15:38:21 Transaction Type : REQUEST +15:38:21 Received From : +15:38:21 ============================================================================ +15:38:21 FNo. Len. Field Value +15:38:21 ============================================================================ +15:38:21 [ 1] [ 4] [0800] +15:38:21 [ 7] [ 10] [0320083726] +15:38:21 [ 11] [ 6] [157055] +15:38:21 [ 70] [ 3] [301] +15:38:21 ============================================================================ +15:38:21 + + +waiting on router queue for slot.... +15:38:21 Sending to : +15:38:21 ============================================================================ +15:38:21 ============================================================================ +15:38:21 Slot Id : <320> +15:38:21 Transaction Type : RESPONSE +15:38:21 Received From : +15:38:21 ============================================================================ +15:38:21 FNo. Len. Field Value +15:38:21 ============================================================================ +15:38:21 [ 1] [ 4] [0810] +15:38:21 [ 7] [ 10] [0320083726] +15:38:21 [ 11] [ 6] [157055] +15:38:21 [ 39] [ 2] [00] +15:38:21 [ 70] [ 3] [301] +15:38:21 ============================================================================ +15:38:21 Calculate Source COMM Id = 2 +15:38:21 ============================================================================ +15:38:21 + + +waiting on router queue for slot.... +15:38:26 ============================================================================ +15:38:26 Slot Id : <342> +15:38:26 Transaction Type : REQUEST +15:38:26 Received From : +15:38:26 ============================================================================ +15:38:26 FNo. Len. Field Value +15:38:26 ============================================================================ +15:38:26 [ 1] [ 4] [0200] +15:38:26 [ 2] [ 16] [6213544001556833] +15:38:26 [ 3] [ 6] [011000] +15:38:26 [ 4] [ 12] [000030000000] +15:38:26 [ 7] [ 10] [0320154614] +15:38:26 [ 11] [ 6] [251268] +15:38:26 [ 12] [ 6] [154614] +15:38:26 [ 13] [ 4] [0320] +15:38:26 [ 14] [ 4] [4912] +15:38:26 [ 15] [ 4] [0320] +15:38:26 [ 18] [ 4] [6011] +15:38:26 [ 22] [ 3] [900] +15:38:26 [ 25] [ 2] [02] +15:38:26 [ 28] [ 9] [D00002000] +15:38:26 [ 32] [ 6] [220699] +15:38:26 [ 35] [ 32] [6213544001556833=491212015683372] +15:38:26 [ 37] [ 12] [507900336235] +15:38:26 [ 41] [ 8] [01001900] +15:38:26 [ 42] [ 15] [APTRA ] +15:38:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:38:26 [ 49] [ 3] [418] +15:38:26 [ 52] [ 16] [9CFEE6CF9338D2C8] +15:38:26 ============================================================================ +15:38:26 + + +waiting on router queue for slot.... +15:38:26 Sending to : +15:38:26 ============================================================================ +15:38:26 Sending to : +15:38:26 ============================================================================ +15:38:27 ============================================================================ +15:38:27 Slot Id : <342> +15:38:27 Transaction Type : REQUEST +15:38:27 Received From : +15:38:27 ============================================================================ +15:38:27 FNo. Len. Field Value +15:38:27 ============================================================================ +15:38:27 [ 1] [ 4] [0200] +15:38:27 [ 2] [ 16] [6213544001556833] +15:38:27 [ 3] [ 6] [011000] +15:38:27 [ 4] [ 12] [000030000000] +15:38:27 [ 7] [ 10] [0320154614] +15:38:27 [ 11] [ 6] [251268] +15:38:27 [ 12] [ 6] [154614] +15:38:27 [ 13] [ 4] [0320] +15:38:27 [ 14] [ 4] [4912] +15:38:27 [ 15] [ 4] [0320] +15:38:27 [ 18] [ 4] [6011] +15:38:27 [ 22] [ 3] [900] +15:38:27 [ 25] [ 2] [02] +15:38:27 [ 28] [ 9] [D00002000] +15:38:27 [ 32] [ 6] [220699] +15:38:27 [ 35] [ 32] [6213544001556833=491212015683372] +15:38:27 [ 37] [ 12] [507900336235] +15:38:27 [ 41] [ 8] [01001900] +15:38:27 [ 42] [ 15] [APTRA ] +15:38:27 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:38:27 [ 49] [ 3] [418] +15:38:27 [ 52] [ 16] [9CFEE6CF9338D2C8] +15:38:27 ============================================================================ +15:38:27 + + +waiting on router queue for slot.... +15:38:27 Sending to : +15:38:27 ============================================================================ +15:38:27 ============================================================================ +15:38:27 Slot Id : <342> +15:38:27 Transaction Type : REQUEST +15:38:27 Received From : +15:38:27 ============================================================================ +15:38:27 FNo. Len. Field Value +15:38:27 ============================================================================ +15:38:27 [ 1] [ 4] [0200] +15:38:27 [ 2] [ 16] [6213544001556833] +15:38:27 [ 3] [ 6] [011000] +15:38:27 [ 4] [ 12] [000030000000] +15:38:27 [ 7] [ 10] [0320154614] +15:38:27 [ 11] [ 6] [251268] +15:38:27 [ 12] [ 6] [154614] +15:38:27 [ 13] [ 4] [0320] +15:38:27 [ 14] [ 4] [4912] +15:38:27 [ 15] [ 4] [0320] +15:38:27 [ 18] [ 4] [6011] +15:38:27 [ 22] [ 3] [900] +15:38:27 [ 25] [ 2] [02] +15:38:27 [ 28] [ 9] [D00002000] +15:38:27 [ 32] [ 6] [220699] +15:38:27 [ 35] [ 32] [6213544001556833=491212015683372] +15:38:27 [ 37] [ 12] [507900336235] +15:38:27 [ 41] [ 8] [01001900] +15:38:27 [ 42] [ 15] [APTRA ] +15:38:27 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:38:27 [ 49] [ 3] [418] +15:38:27 [ 52] [ 16] [6E747BF09C2E6D08] +15:38:27 ============================================================================ +15:38:27 + + +waiting on router queue for slot.... +15:38:27 Sending to : <0> +15:38:27 ============================================================================ +15:38:27 ============================================================================ +15:38:27 Slot Id : <342> +15:38:27 Transaction Type : RESPONSE +15:38:27 Received From : +15:38:27 ============================================================================ +15:38:27 FNo. Len. Field Value +15:38:27 ============================================================================ +15:38:27 [ 1] [ 4] [0210] +15:38:27 [ 2] [ 16] [6213544001556833] +15:38:27 [ 3] [ 6] [011000] +15:38:27 [ 4] [ 12] [000030000000] +15:38:27 [ 7] [ 10] [0320154614] +15:38:27 [ 11] [ 6] [251268] +15:38:27 [ 12] [ 6] [154614] +15:38:27 [ 13] [ 4] [0320] +15:38:27 [ 15] [ 4] [0320] +15:38:27 [ 18] [ 4] [6011] +15:38:27 [ 32] [ 6] [220699] +15:38:27 [ 35] [ 32] [6213544001556833=491212015683372] +15:38:27 [ 37] [ 12] [507900336235] +15:38:27 [ 38] [ 6] [509279] +15:38:27 [ 39] [ 2] [00] +15:38:27 [ 41] [ 8] [01001900] +15:38:27 [ 49] [ 3] [418] +15:38:27 [ 54] [ 40] [1001418C0000176753161002418C000017675316] +15:38:27 ============================================================================ +15:38:27 Sending to : +15:38:27 ============================================================================ +15:38:27 + + +waiting on router queue for slot.... +15:38:29 ============================================================================ +15:38:29 Slot Id : <342> +15:38:29 Transaction Type : RESPONSE +15:38:29 Received From : +15:38:29 ============================================================================ +15:38:29 FNo. Len. Field Value +15:38:29 ============================================================================ +15:38:29 [ 1] [ 4] [0210] +15:38:29 [ 2] [ 16] [6213544001556833] +15:38:29 [ 3] [ 6] [011000] +15:38:29 [ 4] [ 12] [000030000000] +15:38:29 [ 7] [ 10] [0320154614] +15:38:29 [ 11] [ 6] [251268] +15:38:29 [ 12] [ 6] [154614] +15:38:29 [ 13] [ 4] [0320] +15:38:29 [ 15] [ 4] [0320] +15:38:29 [ 18] [ 4] [6011] +15:38:29 [ 32] [ 6] [220699] +15:38:29 [ 35] [ 32] [6213544001556833=491212015683372] +15:38:29 [ 37] [ 12] [507900336235] +15:38:29 [ 38] [ 6] [509279] +15:38:29 [ 39] [ 2] [00] +15:38:29 [ 41] [ 8] [01001900] +15:38:29 [ 49] [ 3] [418] +15:38:29 [ 54] [ 40] [1001418C0000176753161002418C000017675316] +15:38:29 ============================================================================ +15:38:29 Calculate Source COMM Id = 1 +15:38:29 ============================================================================ +15:38:29 + + +waiting on router queue for slot.... +15:38:30 ============================================================================ +15:38:30 Slot Id : <339> +15:38:30 Transaction Type : REQUEST +15:38:30 Received From : +15:38:30 ============================================================================ +15:38:30 FNo. Len. Field Value +15:38:30 ============================================================================ +15:38:30 [ 1] [ 4] [0200] +15:38:30 [ 2] [ 16] [6688990105648602] +15:38:30 [ 3] [ 6] [012000] +15:38:30 [ 4] [ 12] [000100000000] +15:38:30 [ 7] [ 10] [0320153825] +15:38:30 [ 11] [ 6] [786385] +15:38:30 [ 12] [ 6] [153825] +15:38:30 [ 13] [ 4] [0320] +15:38:30 [ 15] [ 4] [0320] +15:38:30 [ 18] [ 4] [6011] +15:38:30 [ 22] [ 3] [900] +15:38:30 [ 25] [ 2] [02] +15:38:30 [ 28] [ 9] [D00002000] +15:38:30 [ 32] [ 6] [621354] +15:38:30 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:38:30 [ 37] [ 12] [507904635767] +15:38:30 [ 41] [ 8] [17000800] +15:38:30 [ 42] [ 15] [NATIVE ] +15:38:30 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:38:30 [ 49] [ 3] [418] +15:38:30 [ 52] [ 16] [998CDE3662A6009F] +15:38:30 ============================================================================ +15:38:30 + + +waiting on router queue for slot.... +15:38:30 Sending to : +15:38:30 ============================================================================ +15:38:30 Sending to : +15:38:30 ============================================================================ +15:38:30 ============================================================================ +15:38:30 Slot Id : <339> +15:38:30 Transaction Type : REQUEST +15:38:30 Received From : +15:38:30 ============================================================================ +15:38:30 FNo. Len. Field Value +15:38:30 ============================================================================ +15:38:30 [ 1] [ 4] [0200] +15:38:30 [ 2] [ 16] [6688990105648602] +15:38:30 [ 3] [ 6] [012000] +15:38:30 [ 4] [ 12] [000100000000] +15:38:30 [ 7] [ 10] [0320153825] +15:38:30 [ 11] [ 6] [786385] +15:38:30 [ 12] [ 6] [153825] +15:38:30 [ 13] [ 4] [0320] +15:38:30 [ 15] [ 4] [0320] +15:38:30 [ 18] [ 4] [6011] +15:38:30 [ 22] [ 3] [900] +15:38:30 [ 25] [ 2] [02] +15:38:30 [ 28] [ 9] [D00002000] +15:38:30 [ 32] [ 6] [621354] +15:38:30 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:38:30 [ 37] [ 12] [507904635767] +15:38:30 [ 41] [ 8] [17000800] +15:38:30 [ 42] [ 15] [NATIVE ] +15:38:30 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:38:30 [ 49] [ 3] [418] +15:38:30 [ 52] [ 16] [998CDE3662A6009F] +15:38:30 ============================================================================ +15:38:30 + + +waiting on router queue for slot.... +15:38:30 Sending to : +15:38:30 ============================================================================ +15:38:30 ============================================================================ +15:38:30 Slot Id : <339> +15:38:30 Transaction Type : REQUEST +15:38:30 Received From : +15:38:30 ============================================================================ +15:38:30 FNo. Len. Field Value +15:38:30 ============================================================================ +15:38:30 [ 1] [ 4] [0200] +15:38:30 [ 2] [ 16] [6688990105648602] +15:38:30 [ 3] [ 6] [012000] +15:38:30 [ 4] [ 12] [000100000000] +15:38:30 [ 7] [ 10] [0320153825] +15:38:30 [ 11] [ 6] [786385] +15:38:30 [ 12] [ 6] [153825] +15:38:30 [ 13] [ 4] [0320] +15:38:30 [ 15] [ 4] [0320] +15:38:30 [ 18] [ 4] [6011] +15:38:30 [ 22] [ 3] [900] +15:38:30 [ 25] [ 2] [02] +15:38:30 [ 28] [ 9] [D00002000] +15:38:30 [ 32] [ 6] [621354] +15:38:30 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:38:30 [ 37] [ 12] [507904635767] +15:38:30 [ 41] [ 8] [17000800] +15:38:30 [ 42] [ 15] [NATIVE ] +15:38:30 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:38:30 [ 49] [ 3] [418] +15:38:30 [ 52] [ 16] [4EB2AD8539A02440] +15:38:30 ============================================================================ +15:38:30 + + +waiting on router queue for slot.... +15:38:30 Sending to : <4> +15:38:30 ============================================================================ +15:38:31 ============================================================================ +15:38:31 Slot Id : <339> +15:38:31 Transaction Type : RESPONSE +15:38:31 Received From : +15:38:31 ============================================================================ +15:38:31 FNo. Len. Field Value +15:38:31 ============================================================================ +15:38:31 [ 1] [ 4] [0210] +15:38:31 [ 2] [ 16] [6688990105648602] +15:38:31 [ 3] [ 6] [012000] +15:38:31 [ 4] [ 12] [000100000000] +15:38:31 [ 11] [ 6] [786385] +15:38:31 [ 12] [ 6] [153825] +15:38:31 [ 15] [ 4] [0320] +15:38:31 [ 18] [ 4] [6011] +15:38:31 [ 32] [ 6] [621354] +15:38:31 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:38:31 [ 37] [ 12] [507904635767] +15:38:31 [ 38] [ 6] [898483] +15:38:31 [ 39] [ 2] [00] +15:38:31 [ 41] [ 8] [17000800] +15:38:31 [ 49] [ 3] [418] +15:38:31 [ 54] [ 20] [2002418C000110671798] +15:38:31 ============================================================================ +15:38:31 Sending to : +15:38:31 ============================================================================ +15:38:31 + + +waiting on router queue for slot.... +15:38:33 ============================================================================ +15:38:33 Slot Id : <339> +15:38:33 Transaction Type : RESPONSE +15:38:33 Received From : +15:38:33 ============================================================================ +15:38:33 FNo. Len. Field Value +15:38:33 ============================================================================ +15:38:33 [ 1] [ 4] [0210] +15:38:33 [ 2] [ 16] [6688990105648602] +15:38:33 [ 3] [ 6] [012000] +15:38:33 [ 4] [ 12] [000100000000] +15:38:33 [ 11] [ 6] [786385] +15:38:33 [ 12] [ 6] [153825] +15:38:33 [ 15] [ 4] [0320] +15:38:33 [ 18] [ 4] [6011] +15:38:33 [ 32] [ 6] [621354] +15:38:33 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:38:33 [ 37] [ 12] [507904635767] +15:38:33 [ 38] [ 6] [898483] +15:38:33 [ 39] [ 2] [00] +15:38:33 [ 41] [ 8] [17000800] +15:38:33 [ 49] [ 3] [418] +15:38:33 [ 54] [ 20] [2002418C000110671798] +15:38:33 ============================================================================ +15:38:33 Calculate Source COMM Id = 0 +15:38:33 ============================================================================ +15:38:33 + + +waiting on router queue for slot.... +15:38:36 ============================================================================ +15:38:36 Slot Id : <323> +15:38:36 Transaction Type : REQUEST +15:38:36 Received From : +15:38:36 ============================================================================ +15:38:36 FNo. Len. Field Value +15:38:36 ============================================================================ +15:38:36 [ 1] [ 4] [0800] +15:38:36 [ 7] [ 10] [0320083743] +15:38:36 [ 11] [ 6] [157056] +15:38:36 [ 70] [ 3] [301] +15:38:36 ============================================================================ +15:38:36 + + +waiting on router queue for slot.... +15:38:36 Sending to : +15:38:36 ============================================================================ +15:38:36 ============================================================================ +15:38:36 Slot Id : <323> +15:38:36 Transaction Type : RESPONSE +15:38:36 Received From : +15:38:36 ============================================================================ +15:38:36 FNo. Len. Field Value +15:38:36 ============================================================================ +15:38:36 [ 1] [ 4] [0810] +15:38:36 [ 7] [ 10] [0320083743] +15:38:36 [ 11] [ 6] [157056] +15:38:36 [ 39] [ 2] [00] +15:38:36 [ 70] [ 3] [301] +15:38:36 ============================================================================ +15:38:36 Calculate Source COMM Id = 2 +15:38:36 ============================================================================ +15:38:36 + + +waiting on router queue for slot.... +15:38:43 ============================================================================ +15:38:43 Slot Id : <268> +15:38:43 Transaction Type : REQUEST +15:38:43 Received From : +15:38:43 ============================================================================ +15:38:43 FNo. Len. Field Value +15:38:43 ============================================================================ +15:38:43 [ 1] [ 4] [0200] +15:38:43 [ 2] [ 16] [6688990040139394] +15:38:43 [ 3] [ 6] [010000] +15:38:43 [ 4] [ 12] [000100000000] +15:38:43 [ 7] [ 10] [0320153839] +15:38:43 [ 11] [ 6] [786440] +15:38:43 [ 12] [ 6] [153839] +15:38:43 [ 13] [ 4] [0320] +15:38:43 [ 15] [ 4] [0320] +15:38:43 [ 18] [ 4] [6011] +15:38:43 [ 22] [ 3] [900] +15:38:43 [ 25] [ 2] [02] +15:38:43 [ 28] [ 9] [D00002000] +15:38:43 [ 32] [ 6] [621354] +15:38:43 [ 35] [ 37] [6688990040139394=98041261258504800000] +15:38:43 [ 37] [ 12] [507904755405] +15:38:43 [ 41] [ 8] [07001100] +15:38:43 [ 42] [ 15] [NATIVE ] +15:38:43 [ 43] [ 40] [Industry Market Namtar LAO] +15:38:43 [ 49] [ 3] [418] +15:38:43 [ 52] [ 16] [26B6830E80DF1465] +15:38:43 ============================================================================ +15:38:43 + + +waiting on router queue for slot.... +15:38:43 Sending to : +15:38:43 ============================================================================ +15:38:43 Sending to : +15:38:43 ============================================================================ +15:38:44 ============================================================================ +15:38:44 Slot Id : <268> +15:38:44 Transaction Type : REQUEST +15:38:44 Received From : +15:38:44 ============================================================================ +15:38:44 FNo. Len. Field Value +15:38:44 ============================================================================ +15:38:44 [ 1] [ 4] [0200] +15:38:44 [ 2] [ 16] [6688990040139394] +15:38:44 [ 3] [ 6] [010000] +15:38:44 [ 4] [ 12] [000100000000] +15:38:44 [ 7] [ 10] [0320153839] +15:38:44 [ 11] [ 6] [786440] +15:38:44 [ 12] [ 6] [153839] +15:38:44 [ 13] [ 4] [0320] +15:38:44 [ 15] [ 4] [0320] +15:38:44 [ 18] [ 4] [6011] +15:38:44 [ 22] [ 3] [900] +15:38:44 [ 25] [ 2] [02] +15:38:44 [ 28] [ 9] [D00002000] +15:38:44 [ 32] [ 6] [621354] +15:38:44 [ 35] [ 37] [6688990040139394=98041261258504800000] +15:38:44 [ 37] [ 12] [507904755405] +15:38:44 [ 41] [ 8] [07001100] +15:38:44 [ 42] [ 15] [NATIVE ] +15:38:44 [ 43] [ 40] [Industry Market Namtar LAO] +15:38:44 [ 49] [ 3] [418] +15:38:44 [ 52] [ 16] [26B6830E80DF1465] +15:38:44 ============================================================================ +15:38:44 + + +waiting on router queue for slot.... +15:38:44 Sending to : +15:38:44 ============================================================================ +15:38:44 ============================================================================ +15:38:44 Slot Id : <268> +15:38:44 Transaction Type : REQUEST +15:38:44 Received From : +15:38:44 ============================================================================ +15:38:44 FNo. Len. Field Value +15:38:44 ============================================================================ +15:38:44 [ 1] [ 4] [0200] +15:38:44 [ 2] [ 16] [6688990040139394] +15:38:44 [ 3] [ 6] [010000] +15:38:44 [ 4] [ 12] [000100000000] +15:38:44 [ 7] [ 10] [0320153839] +15:38:44 [ 11] [ 6] [786440] +15:38:44 [ 12] [ 6] [153839] +15:38:44 [ 13] [ 4] [0320] +15:38:44 [ 15] [ 4] [0320] +15:38:44 [ 18] [ 4] [6011] +15:38:44 [ 22] [ 3] [900] +15:38:44 [ 25] [ 2] [02] +15:38:44 [ 28] [ 9] [D00002000] +15:38:44 [ 32] [ 6] [621354] +15:38:44 [ 35] [ 37] [6688990040139394=98041261258504800000] +15:38:44 [ 37] [ 12] [507904755405] +15:38:44 [ 41] [ 8] [07001100] +15:38:44 [ 42] [ 15] [NATIVE ] +15:38:44 [ 43] [ 40] [Industry Market Namtar LAO] +15:38:44 [ 49] [ 3] [418] +15:38:44 [ 52] [ 16] [FEFF19963D66B520] +15:38:44 ============================================================================ +15:38:44 + + +waiting on router queue for slot.... +15:38:44 Sending to : <4> +15:38:44 ============================================================================ +15:38:44 ============================================================================ +15:38:44 Slot Id : <268> +15:38:44 Transaction Type : RESPONSE +15:38:44 Received From : +15:38:44 ============================================================================ +15:38:44 FNo. Len. Field Value +15:38:44 ============================================================================ +15:38:44 [ 1] [ 4] [0210] +15:38:44 [ 2] [ 16] [6688990040139394] +15:38:44 [ 3] [ 6] [010000] +15:38:44 [ 4] [ 12] [000100000000] +15:38:44 [ 7] [ 10] [0320153839] +15:38:44 [ 11] [ 6] [786440] +15:38:44 [ 12] [ 6] [153839] +15:38:44 [ 13] [ 4] [0320] +15:38:44 [ 15] [ 4] [0320] +15:38:44 [ 18] [ 4] [6011] +15:38:44 [ 22] [ 3] [021] +15:38:44 [ 32] [ 6] [621354] +15:38:44 [ 35] [ 37] [6688990040139394=98041261258504800000] +15:38:44 [ 37] [ 12] [507904755405] +15:38:44 [ 38] [ 6] [153634] +15:38:44 [ 39] [ 2] [55] +15:38:44 [ 41] [ 8] [07001100] +15:38:44 [ 49] [ 3] [418] +15:38:44 ============================================================================ +15:38:44 Sending to : +15:38:44 ============================================================================ +15:38:44 + + +waiting on router queue for slot.... +15:38:45 ============================================================================ +15:38:45 Slot Id : <268> +15:38:45 Transaction Type : RESPONSE +15:38:45 Received From : +15:38:45 ============================================================================ +15:38:45 FNo. Len. Field Value +15:38:45 ============================================================================ +15:38:45 [ 1] [ 4] [0210] +15:38:45 [ 2] [ 16] [6688990040139394] +15:38:45 [ 3] [ 6] [010000] +15:38:45 [ 4] [ 12] [000100000000] +15:38:45 [ 7] [ 10] [0320153839] +15:38:45 [ 11] [ 6] [786440] +15:38:45 [ 12] [ 6] [153839] +15:38:45 [ 13] [ 4] [0320] +15:38:45 [ 15] [ 4] [0320] +15:38:45 [ 18] [ 4] [6011] +15:38:45 [ 22] [ 3] [021] +15:38:45 [ 32] [ 6] [621354] +15:38:45 [ 35] [ 37] [6688990040139394=98041261258504800000] +15:38:45 [ 37] [ 12] [507904755405] +15:38:45 [ 38] [ 6] [153634] +15:38:45 [ 39] [ 2] [55] +15:38:45 [ 41] [ 8] [07001100] +15:38:45 [ 49] [ 3] [418] +15:38:45 ============================================================================ +15:38:45 Calculate Source COMM Id = 0 +15:38:45 ============================================================================ +15:38:45 + + +waiting on router queue for slot.... +15:38:46 ============================================================================ +15:38:46 Slot Id : <341> +15:38:46 Transaction Type : REQUEST +15:38:46 Received From : +15:38:46 ============================================================================ +15:38:46 FNo. Len. Field Value +15:38:46 ============================================================================ +15:38:46 [ 1] [ 4] [0800] +15:38:46 [ 7] [ 10] [0320083753] +15:38:46 [ 11] [ 6] [157057] +15:38:46 [ 70] [ 3] [301] +15:38:46 ============================================================================ +15:38:46 + + +waiting on router queue for slot.... +15:38:46 Sending to : +15:38:46 ============================================================================ +15:38:46 ============================================================================ +15:38:46 Slot Id : <341> +15:38:46 Transaction Type : RESPONSE +15:38:46 Received From : +15:38:46 ============================================================================ +15:38:46 FNo. Len. Field Value +15:38:46 ============================================================================ +15:38:46 [ 1] [ 4] [0810] +15:38:46 [ 7] [ 10] [0320083753] +15:38:46 [ 11] [ 6] [157057] +15:38:46 [ 39] [ 2] [00] +15:38:46 [ 70] [ 3] [301] +15:38:46 ============================================================================ +15:38:46 Calculate Source COMM Id = 2 +15:38:46 ============================================================================ +15:38:46 + + +waiting on router queue for slot.... +15:38:53 ============================================================================ +15:38:53 Slot Id : <348> +15:38:53 Transaction Type : REQUEST +15:38:53 Received From : +15:38:53 ============================================================================ +15:38:53 FNo. Len. Field Value +15:38:53 ============================================================================ +15:38:53 [ 1] [ 4] [0200] +15:38:53 [ 2] [ 16] [6688990060010640] +15:38:53 [ 3] [ 6] [010000] +15:38:53 [ 4] [ 12] [000100000000] +15:38:53 [ 7] [ 10] [0320153848] +15:38:53 [ 11] [ 6] [786480] +15:38:53 [ 12] [ 6] [153848] +15:38:53 [ 13] [ 4] [0320] +15:38:53 [ 15] [ 4] [0320] +15:38:53 [ 18] [ 4] [6011] +15:38:53 [ 22] [ 3] [900] +15:38:53 [ 25] [ 2] [02] +15:38:53 [ 28] [ 9] [D00002000] +15:38:53 [ 32] [ 6] [621354] +15:38:53 [ 35] [ 37] [6688990060010640=97111261924020600000] +15:38:53 [ 37] [ 12] [507903908750] +15:38:53 [ 41] [ 8] [01010600] +15:38:53 [ 42] [ 15] [NATIVE ] +15:38:53 [ 43] [ 40] [Maria Hospital Phonhong LAO] +15:38:53 [ 49] [ 3] [418] +15:38:53 [ 52] [ 16] [4EBBBD16449A2FDC] +15:38:53 ============================================================================ +15:38:53 + + +waiting on router queue for slot.... +15:38:53 Sending to : +15:38:53 ============================================================================ +15:38:53 Sending to : +15:38:53 ============================================================================ +15:38:53 ============================================================================ +15:38:53 Slot Id : <329> +15:38:53 Transaction Type : REQUEST +15:38:53 Received From : +15:38:53 ============================================================================ +15:38:53 FNo. Len. Field Value +15:38:53 ============================================================================ +15:38:53 [ 1] [ 4] [0200] +15:38:53 [ 2] [ 16] [6688990060029723] +15:38:53 [ 3] [ 6] [301000] +15:38:53 [ 4] [ 12] [000000000000] +15:38:53 [ 7] [ 10] [0320153848] +15:38:53 [ 11] [ 6] [786481] +15:38:53 [ 12] [ 6] [153848] +15:38:53 [ 13] [ 4] [0320] +15:38:53 [ 15] [ 4] [0320] +15:38:53 [ 18] [ 4] [6011] +15:38:53 [ 22] [ 3] [900] +15:38:53 [ 25] [ 2] [02] +15:38:53 [ 28] [ 9] [D00000000] +15:38:53 [ 32] [ 6] [621354] +15:38:53 [ 35] [ 37] [6688990060029723=98021261891984000000] +15:38:53 [ 37] [ 12] [507904154021] +15:38:53 [ 41] [ 8] [20001000] +15:38:53 [ 42] [ 15] [NATIVE ] +15:38:53 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +15:38:53 [ 49] [ 3] [418] +15:38:53 [ 52] [ 16] [7BF744ACC04F448B] +15:38:53 ============================================================================ +15:38:53 + + +waiting on router queue for slot.... +15:38:53 Sending to : +15:38:53 ============================================================================ +15:38:53 Sending to : +15:38:53 ============================================================================ +15:38:53 ============================================================================ +15:38:53 Slot Id : <348> +15:38:53 Transaction Type : REQUEST +15:38:53 Received From : +15:38:53 ============================================================================ +15:38:53 FNo. Len. Field Value +15:38:53 ============================================================================ +15:38:53 [ 1] [ 4] [0200] +15:38:53 [ 2] [ 16] [6688990060010640] +15:38:53 [ 3] [ 6] [010000] +15:38:53 [ 4] [ 12] [000100000000] +15:38:53 [ 7] [ 10] [0320153848] +15:38:53 [ 11] [ 6] [786480] +15:38:53 [ 12] [ 6] [153848] +15:38:53 [ 13] [ 4] [0320] +15:38:53 [ 15] [ 4] [0320] +15:38:53 [ 18] [ 4] [6011] +15:38:53 [ 22] [ 3] [900] +15:38:53 [ 25] [ 2] [02] +15:38:53 [ 28] [ 9] [D00002000] +15:38:53 [ 32] [ 6] [621354] +15:38:53 [ 35] [ 37] [6688990060010640=97111261924020600000] +15:38:53 [ 37] [ 12] [507903908750] +15:38:53 [ 41] [ 8] [01010600] +15:38:53 [ 42] [ 15] [NATIVE ] +15:38:53 [ 43] [ 40] [Maria Hospital Phonhong LAO] +15:38:53 [ 49] [ 3] [418] +15:38:53 [ 52] [ 16] [4EBBBD16449A2FDC] +15:38:53 ============================================================================ +15:38:53 + + +waiting on router queue for slot.... +15:38:53 Sending to : +15:38:53 ============================================================================ +15:38:53 ============================================================================ +15:38:53 Slot Id : <348> +15:38:53 Transaction Type : REQUEST +15:38:53 Received From : +15:38:53 ============================================================================ +15:38:53 FNo. Len. Field Value +15:38:53 ============================================================================ +15:38:53 [ 1] [ 4] [0200] +15:38:53 [ 2] [ 16] [6688990060010640] +15:38:53 [ 3] [ 6] [010000] +15:38:53 [ 4] [ 12] [000100000000] +15:38:53 [ 7] [ 10] [0320153848] +15:38:53 [ 11] [ 6] [786480] +15:38:53 [ 12] [ 6] [153848] +15:38:53 [ 13] [ 4] [0320] +15:38:53 [ 15] [ 4] [0320] +15:38:53 [ 18] [ 4] [6011] +15:38:53 [ 22] [ 3] [900] +15:38:53 [ 25] [ 2] [02] +15:38:53 [ 28] [ 9] [D00002000] +15:38:53 [ 32] [ 6] [621354] +15:38:53 [ 35] [ 37] [6688990060010640=97111261924020600000] +15:38:53 [ 37] [ 12] [507903908750] +15:38:53 [ 41] [ 8] [01010600] +15:38:53 [ 42] [ 15] [NATIVE ] +15:38:53 [ 43] [ 40] [Maria Hospital Phonhong LAO] +15:38:53 [ 49] [ 3] [418] +15:38:53 [ 52] [ 16] [5CCB9E43DB29BEE8] +15:38:53 ============================================================================ +15:38:53 + + +waiting on router queue for slot.... +15:38:53 Sending to : <4> +15:38:53 ============================================================================ +15:38:53 ============================================================================ +15:38:53 Slot Id : <329> +15:38:53 Transaction Type : REQUEST +15:38:53 Received From : +15:38:53 ============================================================================ +15:38:53 FNo. Len. Field Value +15:38:53 ============================================================================ +15:38:53 [ 1] [ 4] [0200] +15:38:53 [ 2] [ 16] [6688990060029723] +15:38:53 [ 3] [ 6] [301000] +15:38:53 [ 4] [ 12] [000000000000] +15:38:53 [ 7] [ 10] [0320153848] +15:38:53 [ 11] [ 6] [786481] +15:38:53 [ 12] [ 6] [153848] +15:38:53 [ 13] [ 4] [0320] +15:38:53 [ 15] [ 4] [0320] +15:38:53 [ 18] [ 4] [6011] +15:38:53 [ 22] [ 3] [900] +15:38:53 [ 25] [ 2] [02] +15:38:53 [ 28] [ 9] [D00000000] +15:38:53 [ 32] [ 6] [621354] +15:38:53 [ 35] [ 37] [6688990060029723=98021261891984000000] +15:38:53 [ 37] [ 12] [507904154021] +15:38:53 [ 41] [ 8] [20001000] +15:38:53 [ 42] [ 15] [NATIVE ] +15:38:53 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +15:38:53 [ 49] [ 3] [418] +15:38:53 [ 52] [ 16] [7BF744ACC04F448B] +15:38:53 ============================================================================ +15:38:53 + + +waiting on router queue for slot.... +15:38:53 Sending to : +15:38:53 ============================================================================ +15:38:53 ============================================================================ +15:38:53 Slot Id : <329> +15:38:53 Transaction Type : REQUEST +15:38:53 Received From : +15:38:53 ============================================================================ +15:38:53 FNo. Len. Field Value +15:38:53 ============================================================================ +15:38:53 [ 1] [ 4] [0200] +15:38:53 [ 2] [ 16] [6688990060029723] +15:38:53 [ 3] [ 6] [301000] +15:38:53 [ 4] [ 12] [000000000000] +15:38:53 [ 7] [ 10] [0320153848] +15:38:53 [ 11] [ 6] [786481] +15:38:53 [ 12] [ 6] [153848] +15:38:53 [ 13] [ 4] [0320] +15:38:53 [ 15] [ 4] [0320] +15:38:53 [ 18] [ 4] [6011] +15:38:53 [ 22] [ 3] [900] +15:38:53 [ 25] [ 2] [02] +15:38:53 [ 28] [ 9] [D00000000] +15:38:53 [ 32] [ 6] [621354] +15:38:53 [ 35] [ 37] [6688990060029723=98021261891984000000] +15:38:53 [ 37] [ 12] [507904154021] +15:38:53 [ 41] [ 8] [20001000] +15:38:53 [ 42] [ 15] [NATIVE ] +15:38:53 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +15:38:53 [ 49] [ 3] [418] +15:38:53 [ 52] [ 16] [79C1D72884071F63] +15:38:53 ============================================================================ +15:38:53 + + +waiting on router queue for slot.... +15:38:53 Sending to : <4> +15:38:53 ============================================================================ +15:38:53 ============================================================================ +15:38:53 Slot Id : <348> +15:38:53 Transaction Type : RESPONSE +15:38:53 Received From : +15:38:53 ============================================================================ +15:38:53 FNo. Len. Field Value +15:38:53 ============================================================================ +15:38:53 [ 1] [ 4] [0210] +15:38:53 [ 2] [ 16] [6688990060010640] +15:38:53 [ 3] [ 6] [010000] +15:38:53 [ 4] [ 12] [000100000000] +15:38:53 [ 11] [ 6] [786480] +15:38:53 [ 12] [ 6] [153848] +15:38:53 [ 15] [ 4] [0320] +15:38:53 [ 18] [ 4] [6011] +15:38:53 [ 32] [ 6] [621354] +15:38:53 [ 35] [ 37] [6688990060010640=97111261924020600000] +15:38:53 [ 37] [ 12] [507903908750] +15:38:53 [ 39] [ 2] [51] +15:38:53 [ 41] [ 8] [01010600] +15:38:53 [ 49] [ 3] [418] +15:38:53 [ 54] [ 0] [] +15:38:53 ============================================================================ +15:38:53 Sending to : +15:38:53 ============================================================================ +15:38:53 + + +waiting on router queue for slot.... +15:38:54 ============================================================================ +15:38:54 Slot Id : <329> +15:38:54 Transaction Type : RESPONSE +15:38:54 Received From : +15:38:54 ============================================================================ +15:38:54 FNo. Len. Field Value +15:38:54 ============================================================================ +15:38:54 [ 1] [ 4] [0210] +15:38:54 [ 2] [ 16] [6688990060029723] +15:38:54 [ 3] [ 6] [301000] +15:38:54 [ 4] [ 12] [000000000000] +15:38:54 [ 11] [ 6] [786481] +15:38:54 [ 12] [ 6] [153848] +15:38:54 [ 15] [ 4] [0320] +15:38:54 [ 18] [ 4] [6011] +15:38:54 [ 32] [ 6] [621354] +15:38:54 [ 35] [ 37] [6688990060029723=98021261891984000000] +15:38:54 [ 37] [ 12] [507904154021] +15:38:54 [ 38] [ 6] [993510] +15:38:54 [ 39] [ 2] [00] +15:38:54 [ 41] [ 8] [20001000] +15:38:54 [ 49] [ 3] [418] +15:38:54 [ 54] [ 20] [1002418C000113132925] +15:38:54 ============================================================================ +15:38:54 Sending to : +15:38:54 ============================================================================ +15:38:54 + + +waiting on router queue for slot.... +15:38:54 ============================================================================ +15:38:54 Slot Id : <348> +15:38:54 Transaction Type : RESPONSE +15:38:54 Received From : +15:38:54 ============================================================================ +15:38:54 FNo. Len. Field Value +15:38:54 ============================================================================ +15:38:54 [ 1] [ 4] [0210] +15:38:54 [ 2] [ 16] [6688990060010640] +15:38:54 [ 3] [ 6] [010000] +15:38:54 [ 4] [ 12] [000100000000] +15:38:54 [ 11] [ 6] [786480] +15:38:54 [ 12] [ 6] [153848] +15:38:54 [ 15] [ 4] [0320] +15:38:54 [ 18] [ 4] [6011] +15:38:54 [ 32] [ 6] [621354] +15:38:54 [ 35] [ 37] [6688990060010640=97111261924020600000] +15:38:54 [ 37] [ 12] [507903908750] +15:38:54 [ 39] [ 2] [51] +15:38:54 [ 41] [ 8] [01010600] +15:38:54 [ 49] [ 3] [418] +15:38:54 [ 54] [ 0] [] +15:38:54 ============================================================================ +15:38:54 Calculate Source COMM Id = 0 +15:38:54 ============================================================================ +15:38:54 + + +waiting on router queue for slot.... +15:38:55 ============================================================================ +15:38:55 Slot Id : <309> +15:38:55 Transaction Type : REQUEST +15:38:55 Received From : +15:38:55 ============================================================================ +15:38:55 FNo. Len. Field Value +15:38:55 ============================================================================ +15:38:55 [ 1] [ 4] [0800] +15:38:55 [ 2] [ 5] [02531] +15:38:55 [ 3] [ 6] [579158] +15:38:55 [ 7] [ 10] [0320083855] +15:38:55 [ 11] [ 6] [807320] +15:38:55 [ 15] [ 10] [0320083855] +15:38:55 [ 37] [ 11] [57915807320] +15:38:55 [ 70] [ 3] [001] +15:38:55 ============================================================================ +15:38:55 + + +waiting on router queue for slot.... +15:38:55 ============================================================================ +15:38:55 Slot Id : <309> +15:38:55 Transaction Type : RESPONSE +15:38:55 Received From : +15:38:55 ============================================================================ +15:38:55 FNo. Len. Field Value +15:38:55 ============================================================================ +15:38:55 [ 1] [ 4] [0810] +15:38:55 [ 7] [ 10] [0320083855] +15:38:55 [ 11] [ 6] [807320] +15:38:55 [ 15] [ 4] [0320] +15:38:55 [ 37] [ 12] [57915807320] +15:38:55 [ 39] [ 2] [00] +15:38:55 [ 70] [ 3] [001] +15:38:55 ============================================================================ +15:38:55 Sending to : +15:38:55 ============================================================================ +15:38:55 + + +waiting on router queue for slot.... +15:38:56 ============================================================================ +15:38:56 Slot Id : <329> +15:38:56 Transaction Type : RESPONSE +15:38:56 Received From : +15:38:56 ============================================================================ +15:38:56 FNo. Len. Field Value +15:38:56 ============================================================================ +15:38:56 [ 1] [ 4] [0210] +15:38:56 [ 2] [ 16] [6688990060029723] +15:38:56 [ 3] [ 6] [301000] +15:38:56 [ 4] [ 12] [000000000000] +15:38:56 [ 11] [ 6] [786481] +15:38:56 [ 12] [ 6] [153848] +15:38:56 [ 15] [ 4] [0320] +15:38:56 [ 18] [ 4] [6011] +15:38:56 [ 32] [ 6] [621354] +15:38:56 [ 35] [ 37] [6688990060029723=98021261891984000000] +15:38:56 [ 37] [ 12] [507904154021] +15:38:56 [ 38] [ 6] [993510] +15:38:56 [ 39] [ 2] [00] +15:38:56 [ 41] [ 8] [20001000] +15:38:56 [ 49] [ 3] [418] +15:38:56 [ 54] [ 20] [1002418C000113132925] +15:38:56 ============================================================================ +15:38:56 Calculate Source COMM Id = 0 +15:38:56 ============================================================================ +15:38:56 + + +waiting on router queue for slot.... +15:38:56 ============================================================================ +15:38:56 Slot Id : <352> +15:38:56 Transaction Type : REQUEST +15:38:56 Received From : +15:38:56 ============================================================================ +15:38:56 FNo. Len. Field Value +15:38:56 ============================================================================ +15:38:56 [ 1] [ 4] [0800] +15:38:56 [ 7] [ 10] [0320083803] +15:38:56 [ 11] [ 6] [157058] +15:38:56 [ 70] [ 3] [301] +15:38:56 ============================================================================ +15:38:56 + + +waiting on router queue for slot.... +15:38:56 Sending to : +15:38:56 ============================================================================ +15:38:56 ============================================================================ +15:38:56 Slot Id : <352> +15:38:56 Transaction Type : RESPONSE +15:38:56 Received From : +15:38:56 ============================================================================ +15:38:56 FNo. Len. Field Value +15:38:56 ============================================================================ +15:38:56 [ 1] [ 4] [0810] +15:38:56 [ 7] [ 10] [0320083803] +15:38:56 [ 11] [ 6] [157058] +15:38:56 [ 39] [ 2] [00] +15:38:56 [ 70] [ 3] [301] +15:38:56 ============================================================================ +15:38:56 Calculate Source COMM Id = 2 +15:38:56 ============================================================================ +15:38:56 + + +waiting on router queue for slot.... +15:38:58 ============================================================================ +15:38:58 Slot Id : <328> +15:38:58 Transaction Type : REQUEST +15:38:58 Received From : +15:38:58 ============================================================================ +15:38:58 FNo. Len. Field Value +15:38:58 ============================================================================ +15:38:58 [ 1] [ 4] [0200] +15:38:58 [ 2] [ 16] [1808930200053965] +15:38:58 [ 3] [ 6] [301000] +15:38:58 [ 4] [ 12] [000000000000] +15:38:58 [ 7] [ 10] [0320153648] +15:38:58 [ 11] [ 6] [950272] +15:38:58 [ 12] [ 6] [153648] +15:38:58 [ 13] [ 4] [0320] +15:38:58 [ 15] [ 4] [0320] +15:38:58 [ 18] [ 4] [6011] +15:38:58 [ 19] [ 3] [418] +15:38:58 [ 22] [ 3] [021] +15:38:58 [ 25] [ 2] [01] +15:38:58 [ 28] [ 9] [D00000000] +15:38:58 [ 32] [ 6] [668899] +15:38:58 [ 35] [ 27] [1808930200053965=1803500034] +15:38:58 [ 37] [ 12] [507900184329] +15:38:58 [ 41] [ 8] [03001002] +15:38:58 [ 42] [ 15] [APT ] +15:38:58 [ 43] [ 40] [ CHOMPHET SERVICE UNIT HAD] +15:38:58 [ 49] [ 3] [418] +15:38:58 [ 52] [ 16] [EEA1B86A6619C6AE] +15:38:58 ============================================================================ +15:38:58 + + +waiting on router queue for slot.... +15:38:58 Sending to : +15:38:58 ============================================================================ +15:38:58 Sending to : +15:38:58 ============================================================================ +15:38:58 ============================================================================ +15:38:58 Slot Id : <328> +15:38:58 Transaction Type : REQUEST +15:38:58 Received From : +15:38:58 ============================================================================ +15:38:58 FNo. Len. Field Value +15:38:58 ============================================================================ +15:38:58 [ 1] [ 4] [0200] +15:38:58 [ 2] [ 16] [1808930200053965] +15:38:58 [ 3] [ 6] [301000] +15:38:58 [ 4] [ 12] [000000000000] +15:38:58 [ 7] [ 10] [0320153648] +15:38:58 [ 11] [ 6] [950272] +15:38:58 [ 12] [ 6] [153648] +15:38:58 [ 13] [ 4] [0320] +15:38:58 [ 15] [ 4] [0320] +15:38:58 [ 18] [ 4] [6011] +15:38:58 [ 19] [ 3] [418] +15:38:58 [ 22] [ 3] [021] +15:38:58 [ 25] [ 2] [01] +15:38:58 [ 28] [ 9] [D00000000] +15:38:58 [ 32] [ 6] [668899] +15:38:58 [ 35] [ 27] [1808930200053965=1803500034] +15:38:58 [ 37] [ 12] [507900184329] +15:38:58 [ 41] [ 8] [03001002] +15:38:58 [ 42] [ 15] [APT ] +15:38:58 [ 43] [ 40] [ CHOMPHET SERVICE UNIT HAD] +15:38:58 [ 49] [ 3] [418] +15:38:58 [ 52] [ 16] [EEA1B86A6619C6AE] +15:38:58 ============================================================================ +15:38:58 + + +waiting on router queue for slot.... +15:38:58 Sending to : +15:38:58 ============================================================================ +15:38:58 ============================================================================ +15:38:58 Slot Id : <328> +15:38:58 Transaction Type : REQUEST +15:38:58 Received From : +15:38:58 ============================================================================ +15:38:58 FNo. Len. Field Value +15:38:58 ============================================================================ +15:38:58 [ 1] [ 4] [0200] +15:38:58 [ 2] [ 16] [1808930200053965] +15:38:58 [ 3] [ 6] [301000] +15:38:58 [ 4] [ 12] [000000000000] +15:38:58 [ 7] [ 10] [0320153648] +15:38:58 [ 11] [ 6] [950272] +15:38:58 [ 12] [ 6] [153648] +15:38:58 [ 13] [ 4] [0320] +15:38:58 [ 15] [ 4] [0320] +15:38:58 [ 18] [ 4] [6011] +15:38:58 [ 19] [ 3] [418] +15:38:58 [ 22] [ 3] [021] +15:38:58 [ 25] [ 2] [01] +15:38:58 [ 28] [ 9] [D00000000] +15:38:58 [ 32] [ 6] [668899] +15:38:58 [ 35] [ 27] [1808930200053965=1803500034] +15:38:58 [ 37] [ 12] [507900184329] +15:38:58 [ 41] [ 8] [03001002] +15:38:58 [ 42] [ 15] [APT ] +15:38:58 [ 43] [ 40] [ CHOMPHET SERVICE UNIT HAD] +15:38:58 [ 49] [ 3] [418] +15:38:58 [ 52] [ 16] [7ECD5FE50620693C] +15:38:58 ============================================================================ +15:38:58 + + +waiting on router queue for slot.... +15:38:58 Sending to : <2> +15:38:58 ============================================================================ +15:39:00 ============================================================================ +15:39:00 Slot Id : <328> +15:39:00 Transaction Type : RESPONSE +15:39:00 Received From : +15:39:00 ============================================================================ +15:39:00 FNo. Len. Field Value +15:39:00 ============================================================================ +15:39:00 [ 1] [ 4] [0210] +15:39:00 [ 2] [ 16] [1808930200053965] +15:39:00 [ 3] [ 6] [301000] +15:39:00 [ 7] [ 10] [0320153648] +15:39:00 [ 11] [ 6] [950272] +15:39:00 [ 12] [ 6] [153648] +15:39:00 [ 13] [ 4] [0320] +15:39:00 [ 14] [ 4] [1803] +15:39:00 [ 19] [ 3] [418] +15:39:00 [ 32] [ 6] [668899] +15:39:00 [ 37] [ 12] [507900184329] +15:39:00 [ 39] [ 2] [14] +15:39:00 [ 41] [ 8] [03001002] +15:39:00 [ 49] [ 3] [418] +15:39:00 [ 52] [ 16] [7ECD5FE50620693C] +15:39:00 ============================================================================ +15:39:00 Sending to : +15:39:00 ============================================================================ +15:39:00 + + +waiting on router queue for slot.... +15:39:00 ============================================================================ +15:39:00 Slot Id : <337> +15:39:00 Transaction Type : REQUEST +15:39:00 Received From : +15:39:00 ============================================================================ +15:39:00 FNo. Len. Field Value +15:39:00 ============================================================================ +15:39:00 [ 1] [ 4] [0200] +15:39:00 [ 2] [ 16] [6213541000612047] +15:39:00 [ 3] [ 6] [010000] +15:39:00 [ 4] [ 12] [000070000000] +15:39:00 [ 7] [ 10] [0320153650] +15:39:00 [ 11] [ 6] [950273] +15:39:00 [ 12] [ 6] [153650] +15:39:00 [ 13] [ 4] [0320] +15:39:00 [ 15] [ 4] [0320] +15:39:00 [ 18] [ 4] [6011] +15:39:00 [ 19] [ 3] [418] +15:39:00 [ 22] [ 3] [021] +15:39:00 [ 25] [ 2] [01] +15:39:00 [ 28] [ 9] [D00002000] +15:39:00 [ 32] [ 6] [668899] +15:39:00 [ 35] [ 32] [6213541000612047=491212011204309] +15:39:00 [ 37] [ 12] [507900285830] +15:39:00 [ 41] [ 8] [03010005] +15:39:00 [ 42] [ 15] [APT ] +15:39:00 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +15:39:00 [ 49] [ 3] [418] +15:39:00 [ 52] [ 16] [C226F5DCC68408EF] +15:39:00 ============================================================================ +15:39:00 + + +waiting on router queue for slot.... +15:39:00 Sending to : +15:39:00 ============================================================================ +15:39:00 Sending to : +15:39:00 ============================================================================ +15:39:00 ============================================================================ +15:39:00 Slot Id : <337> +15:39:00 Transaction Type : REQUEST +15:39:00 Received From : +15:39:00 ============================================================================ +15:39:00 FNo. Len. Field Value +15:39:00 ============================================================================ +15:39:00 [ 1] [ 4] [0200] +15:39:00 [ 2] [ 16] [6213541000612047] +15:39:00 [ 3] [ 6] [010000] +15:39:00 [ 4] [ 12] [000070000000] +15:39:00 [ 7] [ 10] [0320153650] +15:39:00 [ 11] [ 6] [950273] +15:39:00 [ 12] [ 6] [153650] +15:39:00 [ 13] [ 4] [0320] +15:39:00 [ 15] [ 4] [0320] +15:39:00 [ 18] [ 4] [6011] +15:39:00 [ 19] [ 3] [418] +15:39:00 [ 22] [ 3] [021] +15:39:00 [ 25] [ 2] [01] +15:39:00 [ 28] [ 9] [D00002000] +15:39:00 [ 32] [ 6] [668899] +15:39:00 [ 35] [ 32] [6213541000612047=491212011204309] +15:39:00 [ 37] [ 12] [507900285830] +15:39:00 [ 41] [ 8] [03010005] +15:39:00 [ 42] [ 15] [APT ] +15:39:00 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +15:39:00 [ 49] [ 3] [418] +15:39:00 [ 52] [ 16] [C226F5DCC68408EF] +15:39:00 ============================================================================ +15:39:00 + + +waiting on router queue for slot.... +15:39:00 Sending to : +15:39:00 ============================================================================ +15:39:00 ============================================================================ +15:39:00 Slot Id : <337> +15:39:00 Transaction Type : REQUEST +15:39:00 Received From : +15:39:00 ============================================================================ +15:39:00 FNo. Len. Field Value +15:39:00 ============================================================================ +15:39:00 [ 1] [ 4] [0200] +15:39:00 [ 2] [ 16] [6213541000612047] +15:39:00 [ 3] [ 6] [010000] +15:39:00 [ 4] [ 12] [000070000000] +15:39:00 [ 7] [ 10] [0320153650] +15:39:00 [ 11] [ 6] [950273] +15:39:00 [ 12] [ 6] [153650] +15:39:00 [ 13] [ 4] [0320] +15:39:00 [ 15] [ 4] [0320] +15:39:00 [ 18] [ 4] [6011] +15:39:00 [ 19] [ 3] [418] +15:39:00 [ 22] [ 3] [021] +15:39:00 [ 25] [ 2] [01] +15:39:00 [ 28] [ 9] [D00002000] +15:39:00 [ 32] [ 6] [668899] +15:39:00 [ 35] [ 32] [6213541000612047=491212011204309] +15:39:00 [ 37] [ 12] [507900285830] +15:39:00 [ 41] [ 8] [03010005] +15:39:00 [ 42] [ 15] [APT ] +15:39:00 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +15:39:00 [ 49] [ 3] [418] +15:39:00 [ 52] [ 16] [4CF30DF06DB0F713] +15:39:00 ============================================================================ +15:39:00 + + +waiting on router queue for slot.... +15:39:00 Sending to : <0> +15:39:00 ============================================================================ +15:39:01 ============================================================================ +15:39:01 Slot Id : <337> +15:39:01 Transaction Type : RESPONSE +15:39:01 Received From : +15:39:01 ============================================================================ +15:39:01 FNo. Len. Field Value +15:39:01 ============================================================================ +15:39:01 [ 1] [ 4] [0210] +15:39:01 [ 2] [ 16] [6213541000612047] +15:39:01 [ 3] [ 6] [010000] +15:39:01 [ 4] [ 12] [000070000000] +15:39:01 [ 7] [ 10] [0320153650] +15:39:01 [ 11] [ 6] [950273] +15:39:01 [ 12] [ 6] [153650] +15:39:01 [ 13] [ 4] [0320] +15:39:01 [ 15] [ 4] [0320] +15:39:01 [ 18] [ 4] [6011] +15:39:01 [ 19] [ 3] [418] +15:39:01 [ 32] [ 6] [668899] +15:39:01 [ 35] [ 32] [6213541000612047=491212011204309] +15:39:01 [ 37] [ 12] [507900285830] +15:39:01 [ 38] [ 6] [169525] +15:39:01 [ 39] [ 2] [00] +15:39:01 [ 41] [ 8] [03010005] +15:39:01 [ 49] [ 3] [418] +15:39:01 [ 54] [ 40] [0001418C0000110835270002418C000011083527] +15:39:01 ============================================================================ +15:39:01 Sending to : +15:39:01 ============================================================================ +15:39:01 + + +waiting on router queue for slot.... +15:39:01 ============================================================================ +15:39:01 Slot Id : <328> +15:39:01 Transaction Type : RESPONSE +15:39:01 Received From : +15:39:01 ============================================================================ +15:39:01 FNo. Len. Field Value +15:39:01 ============================================================================ +15:39:01 [ 1] [ 4] [0210] +15:39:01 [ 2] [ 16] [1808930200053965] +15:39:01 [ 3] [ 6] [301000] +15:39:01 [ 7] [ 10] [0320153648] +15:39:01 [ 11] [ 6] [950272] +15:39:01 [ 12] [ 6] [153648] +15:39:01 [ 13] [ 4] [0320] +15:39:01 [ 14] [ 4] [1803] +15:39:01 [ 19] [ 3] [418] +15:39:01 [ 32] [ 6] [668899] +15:39:01 [ 37] [ 12] [507900184329] +15:39:01 [ 39] [ 2] [14] +15:39:01 [ 41] [ 8] [03001002] +15:39:01 [ 49] [ 3] [418] +15:39:01 [ 52] [ 16] [7ECD5FE50620693C] +15:39:01 ============================================================================ +15:39:01 Calculate Source COMM Id = 4 +15:39:01 ============================================================================ +15:39:01 + + +waiting on router queue for slot.... +15:39:03 ============================================================================ +15:39:03 Slot Id : <337> +15:39:03 Transaction Type : RESPONSE +15:39:03 Received From : +15:39:03 ============================================================================ +15:39:03 FNo. Len. Field Value +15:39:03 ============================================================================ +15:39:03 [ 1] [ 4] [0210] +15:39:03 [ 2] [ 16] [6213541000612047] +15:39:03 [ 3] [ 6] [010000] +15:39:03 [ 4] [ 12] [000070000000] +15:39:03 [ 7] [ 10] [0320153650] +15:39:03 [ 11] [ 6] [950273] +15:39:03 [ 12] [ 6] [153650] +15:39:03 [ 13] [ 4] [0320] +15:39:03 [ 15] [ 4] [0320] +15:39:03 [ 18] [ 4] [6011] +15:39:03 [ 19] [ 3] [418] +15:39:03 [ 32] [ 6] [668899] +15:39:03 [ 35] [ 32] [6213541000612047=491212011204309] +15:39:03 [ 37] [ 12] [507900285830] +15:39:03 [ 38] [ 6] [169525] +15:39:03 [ 39] [ 2] [00] +15:39:03 [ 41] [ 8] [03010005] +15:39:03 [ 49] [ 3] [418] +15:39:03 [ 54] [ 40] [0001418C0000110835270002418C000011083527] +15:39:03 ============================================================================ +15:39:03 Calculate Source COMM Id = 4 +15:39:03 ============================================================================ +15:39:03 + + +waiting on router queue for slot.... +15:39:07 ============================================================================ +15:39:07 Slot Id : <347> +15:39:07 Transaction Type : REQUEST +15:39:07 Received From : +15:39:07 ============================================================================ +15:39:07 FNo. Len. Field Value +15:39:07 ============================================================================ +15:39:07 [ 1] [ 4] [0800] +15:39:07 [ 7] [ 10] [0320225055] +15:39:07 [ 11] [ 6] [155055] +15:39:07 [ 37] [ 12] [57915155055] +15:39:07 [ 70] [ 3] [301] +15:39:07 ============================================================================ +15:39:07 + + +waiting on router queue for slot.... +15:39:07 Sending to : +15:39:07 ============================================================================ +15:39:07 ============================================================================ +15:39:07 Slot Id : <347> +15:39:07 Transaction Type : RESPONSE +15:39:07 Received From : +15:39:07 ============================================================================ +15:39:07 FNo. Len. Field Value +15:39:07 ============================================================================ +15:39:07 [ 1] [ 4] [0810] +15:39:07 [ 7] [ 10] [0320225055] +15:39:07 [ 11] [ 6] [155055] +15:39:07 [ 37] [ 12] [579151550550] +15:39:07 [ 39] [ 2] [00] +15:39:07 [ 70] [ 3] [810] +15:39:07 ============================================================================ +15:39:07 Calculate Source COMM Id = 6 +15:39:07 ============================================================================ +15:39:07 + + +waiting on router queue for slot.... +15:39:12 ============================================================================ +15:39:12 Slot Id : <350> +15:39:12 Transaction Type : REQUEST +15:39:12 Received From : +15:39:12 ============================================================================ +15:39:12 FNo. Len. Field Value +15:39:12 ============================================================================ +15:39:12 [ 1] [ 4] [0800] +15:39:12 [ 7] [ 10] [0320083819] +15:39:12 [ 11] [ 6] [157059] +15:39:12 [ 70] [ 3] [301] +15:39:12 ============================================================================ +15:39:12 + + +waiting on router queue for slot.... +15:39:12 Sending to : +15:39:12 ============================================================================ +15:39:12 ============================================================================ +15:39:12 Slot Id : <350> +15:39:12 Transaction Type : RESPONSE +15:39:12 Received From : +15:39:12 ============================================================================ +15:39:12 FNo. Len. Field Value +15:39:12 ============================================================================ +15:39:12 [ 1] [ 4] [0810] +15:39:12 [ 7] [ 10] [0320083819] +15:39:12 [ 11] [ 6] [157059] +15:39:12 [ 39] [ 2] [00] +15:39:12 [ 70] [ 3] [301] +15:39:12 ============================================================================ +15:39:12 Calculate Source COMM Id = 2 +15:39:12 ============================================================================ +15:39:12 + + +waiting on router queue for slot.... +15:39:19 ============================================================================ +15:39:19 Slot Id : <346> +15:39:19 Transaction Type : REQUEST +15:39:19 Received From : +15:39:19 ============================================================================ +15:39:19 FNo. Len. Field Value +15:39:19 ============================================================================ +15:39:19 [ 1] [ 4] [0200] +15:39:19 [ 2] [ 16] [2206990000039859] +15:39:19 [ 3] [ 6] [011000] +15:39:19 [ 4] [ 12] [000050000000] +15:39:19 [ 7] [ 10] [0320153914] +15:39:19 [ 11] [ 6] [786562] +15:39:19 [ 12] [ 6] [153914] +15:39:19 [ 13] [ 4] [0320] +15:39:19 [ 15] [ 4] [0320] +15:39:19 [ 18] [ 4] [6011] +15:39:19 [ 22] [ 3] [900] +15:39:19 [ 25] [ 2] [02] +15:39:19 [ 28] [ 9] [D00002000] +15:39:19 [ 32] [ 6] [621354] +15:39:19 [ 35] [ 32] [2206990000039859=970112613552495] +15:39:19 [ 37] [ 12] [507902859247] +15:39:19 [ 41] [ 8] [16001100] +15:39:19 [ 42] [ 15] [NATIVE ] +15:39:19 [ 43] [ 40] [SOUTH STATION Xaythany LAO] +15:39:19 [ 49] [ 3] [418] +15:39:19 [ 52] [ 16] [BFF6BD8346919C18] +15:39:19 ============================================================================ +15:39:19 + + +waiting on router queue for slot.... +15:39:19 Sending to : +15:39:19 ============================================================================ +15:39:19 Sending to : +15:39:19 ============================================================================ +15:39:19 ============================================================================ +15:39:19 Slot Id : <346> +15:39:19 Transaction Type : REQUEST +15:39:19 Received From : +15:39:19 ============================================================================ +15:39:19 FNo. Len. Field Value +15:39:19 ============================================================================ +15:39:19 [ 1] [ 4] [0200] +15:39:19 [ 2] [ 16] [2206990000039859] +15:39:19 [ 3] [ 6] [011000] +15:39:19 [ 4] [ 12] [000050000000] +15:39:19 [ 7] [ 10] [0320153914] +15:39:19 [ 11] [ 6] [786562] +15:39:19 [ 12] [ 6] [153914] +15:39:19 [ 13] [ 4] [0320] +15:39:19 [ 15] [ 4] [0320] +15:39:19 [ 18] [ 4] [6011] +15:39:19 [ 22] [ 3] [900] +15:39:19 [ 25] [ 2] [02] +15:39:19 [ 28] [ 9] [D00002000] +15:39:19 [ 32] [ 6] [621354] +15:39:19 [ 35] [ 32] [2206990000039859=970112613552495] +15:39:19 [ 37] [ 12] [507902859247] +15:39:19 [ 41] [ 8] [16001100] +15:39:19 [ 42] [ 15] [NATIVE ] +15:39:19 [ 43] [ 40] [SOUTH STATION Xaythany LAO] +15:39:19 [ 49] [ 3] [418] +15:39:19 [ 52] [ 16] [BFF6BD8346919C18] +15:39:19 ============================================================================ +15:39:19 + + +waiting on router queue for slot.... +15:39:19 Sending to : +15:39:19 ============================================================================ +15:39:19 ============================================================================ +15:39:19 Slot Id : <346> +15:39:19 Transaction Type : REQUEST +15:39:19 Received From : +15:39:19 ============================================================================ +15:39:19 FNo. Len. Field Value +15:39:19 ============================================================================ +15:39:19 [ 1] [ 4] [0200] +15:39:19 [ 2] [ 16] [2206990000039859] +15:39:19 [ 3] [ 6] [011000] +15:39:19 [ 4] [ 12] [000050000000] +15:39:19 [ 7] [ 10] [0320153914] +15:39:19 [ 11] [ 6] [786562] +15:39:19 [ 12] [ 6] [153914] +15:39:19 [ 13] [ 4] [0320] +15:39:19 [ 15] [ 4] [0320] +15:39:19 [ 18] [ 4] [6011] +15:39:19 [ 22] [ 3] [900] +15:39:19 [ 25] [ 2] [02] +15:39:19 [ 28] [ 9] [D00002000] +15:39:19 [ 32] [ 6] [621354] +15:39:19 [ 35] [ 32] [2206990000039859=970112613552495] +15:39:19 [ 37] [ 12] [507902859247] +15:39:19 [ 41] [ 8] [16001100] +15:39:19 [ 42] [ 15] [NATIVE ] +15:39:19 [ 43] [ 40] [SOUTH STATION Xaythany LAO] +15:39:19 [ 49] [ 3] [418] +15:39:19 [ 52] [ 16] [5739419AA1924AAF] +15:39:19 ============================================================================ +15:39:19 + + +waiting on router queue for slot.... +15:39:19 Sending to : <1> +15:39:19 ============================================================================ +15:39:22 ============================================================================ +15:39:22 Slot Id : <346> +15:39:22 Transaction Type : RESPONSE +15:39:22 Received From : +15:39:22 ============================================================================ +15:39:22 FNo. Len. Field Value +15:39:22 ============================================================================ +15:39:22 [ 1] [ 4] [0210] +15:39:22 [ 2] [ 16] [2206990000039859] +15:39:22 [ 3] [ 6] [011000] +15:39:22 [ 4] [ 12] [000050000000] +15:39:22 [ 7] [ 10] [0320153914] +15:39:22 [ 11] [ 6] [786562] +15:39:22 [ 12] [ 6] [153914] +15:39:22 [ 13] [ 4] [0320] +15:39:22 [ 15] [ 4] [0320] +15:39:22 [ 18] [ 4] [6011] +15:39:22 [ 32] [ 6] [621354] +15:39:22 [ 35] [ 32] [2206990000039859=970112613552495] +15:39:22 [ 37] [ 12] [507902859247] +15:39:22 [ 38] [ 6] [975534] +15:39:22 [ 39] [ 2] [00] +15:39:22 [ 41] [ 8] [16001100] +15:39:22 [ 49] [ 3] [418] +15:39:22 [ 54] [ 40] [1001418C0013082368001002418C001308236800] +15:39:22 ============================================================================ +15:39:22 Sending to : +15:39:22 ============================================================================ +15:39:22 + + +waiting on router queue for slot.... +15:39:23 ============================================================================ +15:39:23 Slot Id : <357> +15:39:23 Transaction Type : REQUEST +15:39:23 Received From : +15:39:23 ============================================================================ +15:39:23 FNo. Len. Field Value +15:39:23 ============================================================================ +15:39:23 [ 1] [ 4] [0800] +15:39:23 [ 7] [ 10] [0320083830] +15:39:23 [ 11] [ 6] [157060] +15:39:23 [ 70] [ 3] [301] +15:39:23 ============================================================================ +15:39:23 + + +waiting on router queue for slot.... +15:39:23 Sending to : +15:39:23 ============================================================================ +15:39:23 ============================================================================ +15:39:23 Slot Id : <357> +15:39:23 Transaction Type : RESPONSE +15:39:23 Received From : +15:39:23 ============================================================================ +15:39:23 FNo. Len. Field Value +15:39:23 ============================================================================ +15:39:23 [ 1] [ 4] [0810] +15:39:23 [ 7] [ 10] [0320083830] +15:39:23 [ 11] [ 6] [157060] +15:39:23 [ 39] [ 2] [00] +15:39:23 [ 70] [ 3] [301] +15:39:23 ============================================================================ +15:39:23 Calculate Source COMM Id = 2 +15:39:23 ============================================================================ +15:39:23 + + +waiting on router queue for slot.... +15:39:23 ============================================================================ +15:39:23 Slot Id : <346> +15:39:23 Transaction Type : RESPONSE +15:39:23 Received From : +15:39:23 ============================================================================ +15:39:23 FNo. Len. Field Value +15:39:23 ============================================================================ +15:39:23 [ 1] [ 4] [0210] +15:39:23 [ 2] [ 16] [2206990000039859] +15:39:23 [ 3] [ 6] [011000] +15:39:23 [ 4] [ 12] [000050000000] +15:39:23 [ 7] [ 10] [0320153914] +15:39:23 [ 11] [ 6] [786562] +15:39:23 [ 12] [ 6] [153914] +15:39:23 [ 13] [ 4] [0320] +15:39:23 [ 15] [ 4] [0320] +15:39:23 [ 18] [ 4] [6011] +15:39:23 [ 32] [ 6] [621354] +15:39:23 [ 35] [ 32] [2206990000039859=970112613552495] +15:39:23 [ 37] [ 12] [507902859247] +15:39:23 [ 38] [ 6] [975534] +15:39:23 [ 39] [ 2] [00] +15:39:23 [ 41] [ 8] [16001100] +15:39:23 [ 49] [ 3] [418] +15:39:23 [ 54] [ 40] [1001418C0013082368001002418C001308236800] +15:39:23 ============================================================================ +15:39:23 Calculate Source COMM Id = 0 +15:39:23 ============================================================================ +15:39:23 + + +waiting on router queue for slot.... +15:39:34 ============================================================================ +15:39:34 Slot Id : <319> +15:39:34 Transaction Type : REQUEST +15:39:34 Received From : +15:39:34 ============================================================================ +15:39:34 FNo. Len. Field Value +15:39:34 ============================================================================ +15:39:34 [ 1] [ 4] [0800] +15:39:34 [ 7] [ 10] [0320083841] +15:39:34 [ 11] [ 6] [157061] +15:39:34 [ 70] [ 3] [301] +15:39:34 ============================================================================ +15:39:34 + + +waiting on router queue for slot.... +15:39:34 Sending to : +15:39:34 ============================================================================ +15:39:34 ============================================================================ +15:39:34 Slot Id : <319> +15:39:34 Transaction Type : RESPONSE +15:39:34 Received From : +15:39:34 ============================================================================ +15:39:34 FNo. Len. Field Value +15:39:34 ============================================================================ +15:39:34 [ 1] [ 4] [0810] +15:39:34 [ 7] [ 10] [0320083841] +15:39:34 [ 11] [ 6] [157061] +15:39:34 [ 39] [ 2] [00] +15:39:34 [ 70] [ 3] [301] +15:39:34 ============================================================================ +15:39:34 Calculate Source COMM Id = 2 +15:39:34 ============================================================================ +15:39:34 + + +waiting on router queue for slot.... +15:39:39 ============================================================================ +15:39:39 Slot Id : <332> +15:39:39 Transaction Type : REQUEST +15:39:39 Received From : +15:39:39 ============================================================================ +15:39:39 FNo. Len. Field Value +15:39:39 ============================================================================ +15:39:39 [ 1] [ 4] [0200] +15:39:39 [ 2] [ 16] [6688990105648602] +15:39:39 [ 3] [ 6] [012000] +15:39:39 [ 4] [ 12] [000100000000] +15:39:39 [ 7] [ 10] [0320153935] +15:39:39 [ 11] [ 6] [786621] +15:39:39 [ 12] [ 6] [153935] +15:39:39 [ 13] [ 4] [0320] +15:39:39 [ 15] [ 4] [0320] +15:39:39 [ 18] [ 4] [6011] +15:39:39 [ 22] [ 3] [900] +15:39:39 [ 25] [ 2] [02] +15:39:39 [ 28] [ 9] [D00002000] +15:39:39 [ 32] [ 6] [621354] +15:39:39 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:39:39 [ 37] [ 12] [507904635769] +15:39:39 [ 41] [ 8] [17000800] +15:39:39 [ 42] [ 15] [NATIVE ] +15:39:39 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:39:39 [ 49] [ 3] [418] +15:39:39 [ 52] [ 16] [998CDE3662A6009F] +15:39:39 ============================================================================ +15:39:39 + + +waiting on router queue for slot.... +15:39:39 Sending to : +15:39:39 ============================================================================ +15:39:39 Sending to : +15:39:39 ============================================================================ +15:39:40 ============================================================================ +15:39:40 Slot Id : <332> +15:39:40 Transaction Type : REQUEST +15:39:40 Received From : +15:39:40 ============================================================================ +15:39:40 FNo. Len. Field Value +15:39:40 ============================================================================ +15:39:40 [ 1] [ 4] [0200] +15:39:40 [ 2] [ 16] [6688990105648602] +15:39:40 [ 3] [ 6] [012000] +15:39:40 [ 4] [ 12] [000100000000] +15:39:40 [ 7] [ 10] [0320153935] +15:39:40 [ 11] [ 6] [786621] +15:39:40 [ 12] [ 6] [153935] +15:39:40 [ 13] [ 4] [0320] +15:39:40 [ 15] [ 4] [0320] +15:39:40 [ 18] [ 4] [6011] +15:39:40 [ 22] [ 3] [900] +15:39:40 [ 25] [ 2] [02] +15:39:40 [ 28] [ 9] [D00002000] +15:39:40 [ 32] [ 6] [621354] +15:39:40 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:39:40 [ 37] [ 12] [507904635769] +15:39:40 [ 41] [ 8] [17000800] +15:39:40 [ 42] [ 15] [NATIVE ] +15:39:40 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:39:40 [ 49] [ 3] [418] +15:39:40 [ 52] [ 16] [998CDE3662A6009F] +15:39:40 ============================================================================ +15:39:40 + + +waiting on router queue for slot.... +15:39:40 Sending to : +15:39:40 ============================================================================ +15:39:40 ============================================================================ +15:39:40 Slot Id : <332> +15:39:40 Transaction Type : REQUEST +15:39:40 Received From : +15:39:40 ============================================================================ +15:39:40 FNo. Len. Field Value +15:39:40 ============================================================================ +15:39:40 [ 1] [ 4] [0200] +15:39:40 [ 2] [ 16] [6688990105648602] +15:39:40 [ 3] [ 6] [012000] +15:39:40 [ 4] [ 12] [000100000000] +15:39:40 [ 7] [ 10] [0320153935] +15:39:40 [ 11] [ 6] [786621] +15:39:40 [ 12] [ 6] [153935] +15:39:40 [ 13] [ 4] [0320] +15:39:40 [ 15] [ 4] [0320] +15:39:40 [ 18] [ 4] [6011] +15:39:40 [ 22] [ 3] [900] +15:39:40 [ 25] [ 2] [02] +15:39:40 [ 28] [ 9] [D00002000] +15:39:40 [ 32] [ 6] [621354] +15:39:40 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:39:40 [ 37] [ 12] [507904635769] +15:39:40 [ 41] [ 8] [17000800] +15:39:40 [ 42] [ 15] [NATIVE ] +15:39:40 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:39:40 [ 49] [ 3] [418] +15:39:40 [ 52] [ 16] [4EB2AD8539A02440] +15:39:40 ============================================================================ +15:39:40 + + +waiting on router queue for slot.... +15:39:40 Sending to : <4> +15:39:40 ============================================================================ +15:39:41 ============================================================================ +15:39:41 Slot Id : <332> +15:39:41 Transaction Type : RESPONSE +15:39:41 Received From : +15:39:41 ============================================================================ +15:39:41 FNo. Len. Field Value +15:39:41 ============================================================================ +15:39:41 [ 1] [ 4] [0210] +15:39:41 [ 2] [ 16] [6688990105648602] +15:39:41 [ 3] [ 6] [012000] +15:39:41 [ 4] [ 12] [000100000000] +15:39:41 [ 11] [ 6] [786621] +15:39:41 [ 12] [ 6] [153935] +15:39:41 [ 15] [ 4] [0320] +15:39:41 [ 18] [ 4] [6011] +15:39:41 [ 32] [ 6] [621354] +15:39:41 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:39:41 [ 37] [ 12] [507904635769] +15:39:41 [ 38] [ 6] [266560] +15:39:41 [ 39] [ 2] [00] +15:39:41 [ 41] [ 8] [17000800] +15:39:41 [ 49] [ 3] [418] +15:39:41 [ 54] [ 20] [2002418C000010471798] +15:39:41 ============================================================================ +15:39:41 Sending to : +15:39:41 ============================================================================ +15:39:41 + + +waiting on router queue for slot.... +15:39:42 ============================================================================ +15:39:42 Slot Id : <332> +15:39:42 Transaction Type : RESPONSE +15:39:42 Received From : +15:39:42 ============================================================================ +15:39:42 FNo. Len. Field Value +15:39:42 ============================================================================ +15:39:42 [ 1] [ 4] [0210] +15:39:42 [ 2] [ 16] [6688990105648602] +15:39:42 [ 3] [ 6] [012000] +15:39:42 [ 4] [ 12] [000100000000] +15:39:42 [ 11] [ 6] [786621] +15:39:42 [ 12] [ 6] [153935] +15:39:42 [ 15] [ 4] [0320] +15:39:42 [ 18] [ 4] [6011] +15:39:42 [ 32] [ 6] [621354] +15:39:42 [ 35] [ 37] [6688990105648602=43101231860256900000] +15:39:42 [ 37] [ 12] [507904635769] +15:39:42 [ 38] [ 6] [266560] +15:39:42 [ 39] [ 2] [00] +15:39:42 [ 41] [ 8] [17000800] +15:39:42 [ 49] [ 3] [418] +15:39:42 [ 54] [ 20] [2002418C000010471798] +15:39:42 ============================================================================ +15:39:42 Calculate Source COMM Id = 0 +15:39:42 ============================================================================ +15:39:42 + + +waiting on router queue for slot.... +15:39:44 ============================================================================ +15:39:44 Slot Id : <330> +15:39:44 Transaction Type : REQUEST +15:39:44 Received From : +15:39:44 ============================================================================ +15:39:44 FNo. Len. Field Value +15:39:44 ============================================================================ +15:39:44 [ 1] [ 4] [0800] +15:39:44 [ 7] [ 10] [0320083851] +15:39:44 [ 11] [ 6] [157062] +15:39:44 [ 70] [ 3] [301] +15:39:44 ============================================================================ +15:39:44 + + +waiting on router queue for slot.... +15:39:44 Sending to : +15:39:44 ============================================================================ +15:39:44 ============================================================================ +15:39:44 Slot Id : <330> +15:39:44 Transaction Type : RESPONSE +15:39:44 Received From : +15:39:44 ============================================================================ +15:39:44 FNo. Len. Field Value +15:39:44 ============================================================================ +15:39:44 [ 1] [ 4] [0810] +15:39:44 [ 7] [ 10] [0320083851] +15:39:44 [ 11] [ 6] [157062] +15:39:44 [ 39] [ 2] [00] +15:39:44 [ 70] [ 3] [301] +15:39:44 ============================================================================ +15:39:44 Calculate Source COMM Id = 2 +15:39:44 ============================================================================ +15:39:44 + + +waiting on router queue for slot.... +15:39:53 ============================================================================ +15:39:53 Slot Id : <356> +15:39:53 Transaction Type : REQUEST +15:39:53 Received From : +15:39:53 ============================================================================ +15:39:53 FNo. Len. Field Value +15:39:53 ============================================================================ +15:39:53 [ 1] [ 4] [0200] +15:39:53 [ 2] [ 16] [6213545000638837] +15:39:53 [ 3] [ 6] [301000] +15:39:53 [ 7] [ 10] [0320083858] +15:39:53 [ 11] [ 6] [270092] +15:39:53 [ 12] [ 6] [153858] +15:39:53 [ 13] [ 4] [0320] +15:39:53 [ 14] [ 4] [4912] +15:39:53 [ 15] [ 4] [0320] +15:39:53 [ 18] [ 4] [6011] +15:39:53 [ 19] [ 3] [418] +15:39:53 [ 22] [ 3] [021] +15:39:53 [ 25] [ 2] [01] +15:39:53 [ 32] [ 6] [180893] +15:39:53 [ 35] [ 32] [6213545000638837=491212013883168] +15:39:53 [ 37] [ 12] [507908270092] +15:39:53 [ 41] [ 8] [0243VTKS] +15:39:53 [ 42] [ 15] [999999 ] +15:39:53 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:39:53 [ 49] [ 3] [418] +15:39:53 [ 52] [ 16] [07C0E3AC74121BDF] +15:39:53 ============================================================================ +15:39:53 + + +waiting on router queue for slot.... +15:39:53 Sending to : +15:39:53 ============================================================================ +15:39:53 Sending to : +15:39:53 ============================================================================ +15:39:54 ============================================================================ +15:39:54 Slot Id : <356> +15:39:54 Transaction Type : REQUEST +15:39:54 Received From : +15:39:54 ============================================================================ +15:39:54 FNo. Len. Field Value +15:39:54 ============================================================================ +15:39:54 [ 1] [ 4] [0200] +15:39:54 [ 2] [ 16] [6213545000638837] +15:39:54 [ 3] [ 6] [301000] +15:39:54 [ 7] [ 10] [0320083858] +15:39:54 [ 11] [ 6] [270092] +15:39:54 [ 12] [ 6] [153858] +15:39:54 [ 13] [ 4] [0320] +15:39:54 [ 14] [ 4] [4912] +15:39:54 [ 15] [ 4] [0320] +15:39:54 [ 18] [ 4] [6011] +15:39:54 [ 19] [ 3] [418] +15:39:54 [ 22] [ 3] [021] +15:39:54 [ 25] [ 2] [01] +15:39:54 [ 32] [ 6] [180893] +15:39:54 [ 35] [ 32] [6213545000638837=491212013883168] +15:39:54 [ 37] [ 12] [507908270092] +15:39:54 [ 41] [ 8] [0243VTKS] +15:39:54 [ 42] [ 15] [999999 ] +15:39:54 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:39:54 [ 49] [ 3] [418] +15:39:54 [ 52] [ 16] [07C0E3AC74121BDF] +15:39:54 ============================================================================ +15:39:54 + + +waiting on router queue for slot.... +15:39:54 Sending to : +15:39:54 ============================================================================ +15:39:54 ============================================================================ +15:39:54 Slot Id : <356> +15:39:54 Transaction Type : REQUEST +15:39:54 Received From : +15:39:54 ============================================================================ +15:39:54 FNo. Len. Field Value +15:39:54 ============================================================================ +15:39:54 [ 1] [ 4] [0200] +15:39:54 [ 2] [ 16] [6213545000638837] +15:39:54 [ 3] [ 6] [301000] +15:39:54 [ 7] [ 10] [0320083858] +15:39:54 [ 11] [ 6] [270092] +15:39:54 [ 12] [ 6] [153858] +15:39:54 [ 13] [ 4] [0320] +15:39:54 [ 14] [ 4] [4912] +15:39:54 [ 15] [ 4] [0320] +15:39:54 [ 18] [ 4] [6011] +15:39:54 [ 19] [ 3] [418] +15:39:54 [ 22] [ 3] [021] +15:39:54 [ 25] [ 2] [01] +15:39:54 [ 32] [ 6] [180893] +15:39:54 [ 35] [ 32] [6213545000638837=491212013883168] +15:39:54 [ 37] [ 12] [507908270092] +15:39:54 [ 41] [ 8] [0243VTKS] +15:39:54 [ 42] [ 15] [999999 ] +15:39:54 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:39:54 [ 49] [ 3] [418] +15:39:54 [ 52] [ 16] [CA9BA147011723CE] +15:39:54 ============================================================================ +15:39:54 + + +waiting on router queue for slot.... +15:39:54 Sending to : <0> +15:39:54 ============================================================================ +15:39:54 ============================================================================ +15:39:54 Slot Id : <356> +15:39:54 Transaction Type : RESPONSE +15:39:54 Received From : +15:39:54 ============================================================================ +15:39:54 FNo. Len. Field Value +15:39:54 ============================================================================ +15:39:54 [ 1] [ 4] [0210] +15:39:54 [ 2] [ 16] [6213545000638837] +15:39:54 [ 3] [ 6] [301000] +15:39:54 [ 4] [ 12] [000000000000] +15:39:54 [ 7] [ 10] [0320083858] +15:39:54 [ 11] [ 6] [270092] +15:39:54 [ 12] [ 6] [153858] +15:39:54 [ 13] [ 4] [0320] +15:39:54 [ 15] [ 4] [0320] +15:39:54 [ 18] [ 4] [6011] +15:39:54 [ 19] [ 3] [418] +15:39:54 [ 32] [ 6] [180893] +15:39:54 [ 35] [ 32] [6213545000638837=491212013883168] +15:39:54 [ 37] [ 12] [507908270092] +15:39:54 [ 38] [ 6] [277906] +15:39:54 [ 39] [ 2] [00] +15:39:54 [ 41] [ 8] [0243VTKS] +15:39:54 [ 49] [ 3] [418] +15:39:54 [ 54] [ 40] [1001418C0001331424211002418C000133142421] +15:39:54 ============================================================================ +15:39:54 Sending to : +15:39:54 ============================================================================ +15:39:54 + + +waiting on router queue for slot.... +15:39:54 ============================================================================ +15:39:54 Slot Id : <365> +15:39:54 Transaction Type : REQUEST +15:39:54 Received From : +15:39:54 ============================================================================ +15:39:54 FNo. Len. Field Value +15:39:54 ============================================================================ +15:39:54 [ 1] [ 4] [0800] +15:39:54 [ 7] [ 10] [0320084742] +15:39:54 [ 11] [ 6] [007749] +15:39:54 [ 37] [ 12] [57915007749] +15:39:54 [ 70] [ 3] [301] +15:39:54 ============================================================================ +15:39:54 + + +waiting on router queue for slot.... +15:39:54 Sending to : +15:39:54 ============================================================================ +15:39:54 ============================================================================ +15:39:54 Slot Id : <365> +15:39:54 Transaction Type : RESPONSE +15:39:54 Received From : +15:39:54 ============================================================================ +15:39:54 FNo. Len. Field Value +15:39:54 ============================================================================ +15:39:54 [ 1] [ 4] [0810] +15:39:54 [ 7] [ 10] [0320084742] +15:39:54 [ 11] [ 6] [007749] +15:39:54 [ 37] [ 12] [579150077490] +15:39:54 [ 39] [ 2] [00] +15:39:54 [ 70] [ 3] [810] +15:39:54 ============================================================================ +15:39:54 Calculate Source COMM Id = 1 +15:39:54 ============================================================================ +15:39:54 + + +waiting on router queue for slot.... +15:39:55 ============================================================================ +15:39:55 Slot Id : <356> +15:39:55 Transaction Type : RESPONSE +15:39:55 Received From : +15:39:55 ============================================================================ +15:39:55 FNo. Len. Field Value +15:39:55 ============================================================================ +15:39:55 [ 1] [ 4] [0210] +15:39:55 [ 2] [ 16] [6213545000638837] +15:39:55 [ 3] [ 6] [301000] +15:39:55 [ 4] [ 12] [000000000000] +15:39:55 [ 7] [ 10] [0320083858] +15:39:55 [ 11] [ 6] [270092] +15:39:55 [ 12] [ 6] [153858] +15:39:55 [ 13] [ 4] [0320] +15:39:55 [ 15] [ 4] [0320] +15:39:55 [ 18] [ 4] [6011] +15:39:55 [ 19] [ 3] [418] +15:39:55 [ 32] [ 6] [180893] +15:39:55 [ 35] [ 32] [6213545000638837=491212013883168] +15:39:55 [ 37] [ 12] [507908270092] +15:39:55 [ 38] [ 6] [277906] +15:39:55 [ 39] [ 2] [00] +15:39:55 [ 41] [ 8] [0243VTKS] +15:39:55 [ 49] [ 3] [418] +15:39:55 [ 54] [ 40] [1001418C0001331424211002418C000133142421] +15:39:55 ============================================================================ +15:39:55 Calculate Source COMM Id = 2 +15:39:55 ============================================================================ +15:39:55 + + +waiting on router queue for slot.... +15:39:57 ============================================================================ +15:39:57 Slot Id : <371> +15:39:57 Transaction Type : REQUEST +15:39:57 Received From : +15:39:57 ============================================================================ +15:39:57 FNo. Len. Field Value +15:39:57 ============================================================================ +15:39:57 [ 1] [ 4] [0800] +15:39:57 [ 2] [ 5] [02531] +15:39:57 [ 3] [ 6] [579158] +15:39:57 [ 7] [ 10] [0320083957] +15:39:57 [ 11] [ 6] [807321] +15:39:57 [ 15] [ 10] [0320083957] +15:39:57 [ 37] [ 11] [57915807321] +15:39:57 [ 70] [ 3] [001] +15:39:57 ============================================================================ +15:39:57 + + +waiting on router queue for slot.... +15:39:57 ============================================================================ +15:39:57 Slot Id : <371> +15:39:57 Transaction Type : RESPONSE +15:39:57 Received From : +15:39:57 ============================================================================ +15:39:57 FNo. Len. Field Value +15:39:57 ============================================================================ +15:39:57 [ 1] [ 4] [0810] +15:39:57 [ 7] [ 10] [0320083957] +15:39:57 [ 11] [ 6] [807321] +15:39:57 [ 15] [ 4] [0320] +15:39:57 [ 37] [ 12] [57915807321] +15:39:57 [ 39] [ 2] [00] +15:39:57 [ 70] [ 3] [001] +15:39:57 ============================================================================ +15:39:57 Sending to : +15:39:57 ============================================================================ +15:39:57 + + +waiting on router queue for slot.... +15:40:01 ============================================================================ +15:40:01 Slot Id : <366> +15:40:01 Transaction Type : REQUEST +15:40:01 Received From : +15:40:01 ============================================================================ +15:40:01 FNo. Len. Field Value +15:40:01 ============================================================================ +15:40:01 [ 1] [ 4] [0200] +15:40:01 [ 2] [ 16] [1808931100011111] +15:40:01 [ 3] [ 6] [011000] +15:40:01 [ 4] [ 12] [000020000000] +15:40:01 [ 7] [ 10] [0320153956] +15:40:01 [ 11] [ 6] [786685] +15:40:01 [ 12] [ 6] [153956] +15:40:01 [ 13] [ 4] [0320] +15:40:01 [ 15] [ 4] [0320] +15:40:01 [ 18] [ 4] [6011] +15:40:01 [ 22] [ 3] [900] +15:40:01 [ 25] [ 2] [02] +15:40:01 [ 28] [ 9] [D00002000] +15:40:01 [ 32] [ 6] [621354] +15:40:01 [ 35] [ 27] [1808931100011111=1803500747] +15:40:01 [ 37] [ 12] [507903928831] +15:40:01 [ 41] [ 8] [01010800] +15:40:01 [ 42] [ 15] [NATIVE ] +15:40:01 [ 43] [ 40] [Mahosod Hospital Sisattanak LAO] +15:40:01 [ 49] [ 3] [418] +15:40:01 [ 52] [ 16] [3BD79A446A1BD59E] +15:40:01 ============================================================================ +15:40:01 + + +waiting on router queue for slot.... +15:40:01 Sending to : +15:40:01 ============================================================================ +15:40:01 Sending to : +15:40:01 ============================================================================ +15:40:01 ============================================================================ +15:40:01 Slot Id : <366> +15:40:01 Transaction Type : REQUEST +15:40:01 Received From : +15:40:01 ============================================================================ +15:40:01 FNo. Len. Field Value +15:40:01 ============================================================================ +15:40:01 [ 1] [ 4] [0200] +15:40:01 [ 2] [ 16] [1808931100011111] +15:40:01 [ 3] [ 6] [011000] +15:40:01 [ 4] [ 12] [000020000000] +15:40:01 [ 7] [ 10] [0320153956] +15:40:01 [ 11] [ 6] [786685] +15:40:01 [ 12] [ 6] [153956] +15:40:01 [ 13] [ 4] [0320] +15:40:01 [ 15] [ 4] [0320] +15:40:01 [ 18] [ 4] [6011] +15:40:01 [ 22] [ 3] [900] +15:40:01 [ 25] [ 2] [02] +15:40:01 [ 28] [ 9] [D00002000] +15:40:01 [ 32] [ 6] [621354] +15:40:01 [ 35] [ 27] [1808931100011111=1803500747] +15:40:01 [ 37] [ 12] [507903928831] +15:40:01 [ 41] [ 8] [01010800] +15:40:01 [ 42] [ 15] [NATIVE ] +15:40:01 [ 43] [ 40] [Mahosod Hospital Sisattanak LAO] +15:40:01 [ 49] [ 3] [418] +15:40:01 [ 52] [ 16] [3BD79A446A1BD59E] +15:40:01 ============================================================================ +15:40:01 + + +waiting on router queue for slot.... +15:40:01 Sending to : +15:40:01 ============================================================================ +15:40:01 ============================================================================ +15:40:01 Slot Id : <366> +15:40:01 Transaction Type : REQUEST +15:40:01 Received From : +15:40:01 ============================================================================ +15:40:01 FNo. Len. Field Value +15:40:01 ============================================================================ +15:40:01 [ 1] [ 4] [0200] +15:40:01 [ 2] [ 16] [1808931100011111] +15:40:01 [ 3] [ 6] [011000] +15:40:01 [ 4] [ 12] [000020000000] +15:40:01 [ 7] [ 10] [0320153956] +15:40:01 [ 11] [ 6] [786685] +15:40:01 [ 12] [ 6] [153956] +15:40:01 [ 13] [ 4] [0320] +15:40:01 [ 15] [ 4] [0320] +15:40:01 [ 18] [ 4] [6011] +15:40:01 [ 22] [ 3] [900] +15:40:01 [ 25] [ 2] [02] +15:40:01 [ 28] [ 9] [D00002000] +15:40:01 [ 32] [ 6] [621354] +15:40:01 [ 35] [ 27] [1808931100011111=1803500747] +15:40:01 [ 37] [ 12] [507903928831] +15:40:01 [ 41] [ 8] [01010800] +15:40:01 [ 42] [ 15] [NATIVE ] +15:40:01 [ 43] [ 40] [Mahosod Hospital Sisattanak LAO] +15:40:01 [ 49] [ 3] [418] +15:40:01 [ 52] [ 16] [6C11A597E01C7A9D] +15:40:01 ============================================================================ +15:40:01 + + +waiting on router queue for slot.... +15:40:01 Sending to : <2> +15:40:01 ============================================================================ +15:40:01 ============================================================================ +15:40:01 Slot Id : <343> +15:40:01 Transaction Type : REQUEST +15:40:01 Received From : +15:40:01 ============================================================================ +15:40:01 FNo. Len. Field Value +15:40:01 ============================================================================ +15:40:01 [ 1] [ 4] [0200] +15:40:01 [ 2] [ 16] [6688990060029723] +15:40:01 [ 3] [ 6] [011000] +15:40:01 [ 4] [ 12] [000006000000] +15:40:01 [ 7] [ 10] [0320153957] +15:40:01 [ 11] [ 6] [786687] +15:40:01 [ 12] [ 6] [153957] +15:40:01 [ 13] [ 4] [0320] +15:40:01 [ 15] [ 4] [0320] +15:40:01 [ 18] [ 4] [6011] +15:40:01 [ 22] [ 3] [900] +15:40:01 [ 25] [ 2] [02] +15:40:01 [ 28] [ 9] [D00002000] +15:40:01 [ 32] [ 6] [621354] +15:40:01 [ 35] [ 37] [6688990060029723=98021261891984000000] +15:40:01 [ 37] [ 12] [507904154023] +15:40:01 [ 41] [ 8] [20001000] +15:40:01 [ 42] [ 15] [NATIVE ] +15:40:01 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +15:40:01 [ 49] [ 3] [418] +15:40:01 [ 52] [ 16] [7BF744ACC04F448B] +15:40:01 ============================================================================ +15:40:01 + + +waiting on router queue for slot.... +15:40:01 Sending to : +15:40:01 ============================================================================ +15:40:01 Sending to : +15:40:01 ============================================================================ +15:40:02 ============================================================================ +15:40:02 Slot Id : <343> +15:40:02 Transaction Type : REQUEST +15:40:02 Received From : +15:40:02 ============================================================================ +15:40:02 FNo. Len. Field Value +15:40:02 ============================================================================ +15:40:02 [ 1] [ 4] [0200] +15:40:02 [ 2] [ 16] [6688990060029723] +15:40:02 [ 3] [ 6] [011000] +15:40:02 [ 4] [ 12] [000006000000] +15:40:02 [ 7] [ 10] [0320153957] +15:40:02 [ 11] [ 6] [786687] +15:40:02 [ 12] [ 6] [153957] +15:40:02 [ 13] [ 4] [0320] +15:40:02 [ 15] [ 4] [0320] +15:40:02 [ 18] [ 4] [6011] +15:40:02 [ 22] [ 3] [900] +15:40:02 [ 25] [ 2] [02] +15:40:02 [ 28] [ 9] [D00002000] +15:40:02 [ 32] [ 6] [621354] +15:40:02 [ 35] [ 37] [6688990060029723=98021261891984000000] +15:40:02 [ 37] [ 12] [507904154023] +15:40:02 [ 41] [ 8] [20001000] +15:40:02 [ 42] [ 15] [NATIVE ] +15:40:02 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +15:40:02 [ 49] [ 3] [418] +15:40:02 [ 52] [ 16] [7BF744ACC04F448B] +15:40:02 ============================================================================ +15:40:02 + + +waiting on router queue for slot.... +15:40:02 Sending to : +15:40:02 ============================================================================ +15:40:02 ============================================================================ +15:40:02 Slot Id : <343> +15:40:02 Transaction Type : REQUEST +15:40:02 Received From : +15:40:02 ============================================================================ +15:40:02 FNo. Len. Field Value +15:40:02 ============================================================================ +15:40:02 [ 1] [ 4] [0200] +15:40:02 [ 2] [ 16] [6688990060029723] +15:40:02 [ 3] [ 6] [011000] +15:40:02 [ 4] [ 12] [000006000000] +15:40:02 [ 7] [ 10] [0320153957] +15:40:02 [ 11] [ 6] [786687] +15:40:02 [ 12] [ 6] [153957] +15:40:02 [ 13] [ 4] [0320] +15:40:02 [ 15] [ 4] [0320] +15:40:02 [ 18] [ 4] [6011] +15:40:02 [ 22] [ 3] [900] +15:40:02 [ 25] [ 2] [02] +15:40:02 [ 28] [ 9] [D00002000] +15:40:02 [ 32] [ 6] [621354] +15:40:02 [ 35] [ 37] [6688990060029723=98021261891984000000] +15:40:02 [ 37] [ 12] [507904154023] +15:40:02 [ 41] [ 8] [20001000] +15:40:02 [ 42] [ 15] [NATIVE ] +15:40:02 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +15:40:02 [ 49] [ 3] [418] +15:40:02 [ 52] [ 16] [79C1D72884071F63] +15:40:02 ============================================================================ +15:40:02 + + +waiting on router queue for slot.... +15:40:02 Sending to : <4> +15:40:02 ============================================================================ +15:40:04 ============================================================================ +15:40:04 Slot Id : <343> +15:40:04 Transaction Type : RESPONSE +15:40:04 Received From : +15:40:04 ============================================================================ +15:40:04 FNo. Len. Field Value +15:40:04 ============================================================================ +15:40:04 [ 1] [ 4] [0210] +15:40:04 [ 2] [ 16] [6688990060029723] +15:40:04 [ 3] [ 6] [011000] +15:40:04 [ 4] [ 12] [000006000000] +15:40:04 [ 11] [ 6] [786687] +15:40:04 [ 12] [ 6] [153957] +15:40:04 [ 15] [ 4] [0320] +15:40:04 [ 18] [ 4] [6011] +15:40:04 [ 32] [ 6] [621354] +15:40:04 [ 35] [ 37] [6688990060029723=98021261891984000000] +15:40:04 [ 37] [ 12] [507904154023] +15:40:04 [ 38] [ 6] [236062] +15:40:04 [ 39] [ 2] [00] +15:40:04 [ 41] [ 8] [20001000] +15:40:04 [ 49] [ 3] [418] +15:40:04 [ 54] [ 20] [1002418C000106932925] +15:40:04 ============================================================================ +15:40:04 Sending to : +15:40:04 ============================================================================ +15:40:04 + + +waiting on router queue for slot.... +15:40:05 ============================================================================ +15:40:05 Slot Id : <366> +15:40:05 Transaction Type : RESPONSE +15:40:05 Received From : +15:40:05 ============================================================================ +15:40:05 FNo. Len. Field Value +15:40:05 ============================================================================ +15:40:05 [ 1] [ 4] [0210] +15:40:05 [ 2] [ 16] [1808931100011111] +15:40:05 [ 3] [ 6] [011000] +15:40:05 [ 4] [ 12] [000020000000] +15:40:05 [ 6] [ 12] [000020000000] +15:40:05 [ 7] [ 10] [0320153956] +15:40:05 [ 11] [ 6] [786685] +15:40:05 [ 12] [ 6] [153956] +15:40:05 [ 13] [ 4] [0320] +15:40:05 [ 18] [ 4] [6011] +15:40:05 [ 19] [ 3] [418] +15:40:05 [ 22] [ 3] [021] +15:40:05 [ 32] [ 6] [621354] +15:40:05 [ 35] [ 27] [1808931100011111=1803500747] +15:40:05 [ 37] [ 12] [507903928831] +15:40:05 [ 38] [ 6] [786685] +15:40:05 [ 39] [ 2] [00] +15:40:05 [ 41] [ 8] [01010800] +15:40:05 [ 49] [ 3] [418] +15:40:05 [ 52] [ 16] [6C11A597E01C7A9D] +15:40:05 [ 54] [ 20] [1001418C000138633200] +15:40:05 ============================================================================ +15:40:05 Sending to : +15:40:05 ============================================================================ +15:40:05 + + +waiting on router queue for slot.... +15:40:05 ============================================================================ +15:40:05 Slot Id : <343> +15:40:05 Transaction Type : RESPONSE +15:40:05 Received From : +15:40:05 ============================================================================ +15:40:05 FNo. Len. Field Value +15:40:05 ============================================================================ +15:40:05 [ 1] [ 4] [0210] +15:40:05 [ 2] [ 16] [6688990060029723] +15:40:05 [ 3] [ 6] [011000] +15:40:05 [ 4] [ 12] [000006000000] +15:40:05 [ 11] [ 6] [786687] +15:40:05 [ 12] [ 6] [153957] +15:40:05 [ 15] [ 4] [0320] +15:40:05 [ 18] [ 4] [6011] +15:40:05 [ 32] [ 6] [621354] +15:40:05 [ 35] [ 37] [6688990060029723=98021261891984000000] +15:40:05 [ 37] [ 12] [507904154023] +15:40:05 [ 38] [ 6] [236062] +15:40:05 [ 39] [ 2] [00] +15:40:05 [ 41] [ 8] [20001000] +15:40:05 [ 49] [ 3] [418] +15:40:05 [ 54] [ 20] [1002418C000106932925] +15:40:05 ============================================================================ +15:40:05 Calculate Source COMM Id = 0 +15:40:05 ============================================================================ +15:40:05 + + +waiting on router queue for slot.... +15:40:07 ============================================================================ +15:40:07 Slot Id : <366> +15:40:07 Transaction Type : RESPONSE +15:40:07 Received From : +15:40:07 ============================================================================ +15:40:07 FNo. Len. Field Value +15:40:07 ============================================================================ +15:40:07 [ 1] [ 4] [0210] +15:40:07 [ 2] [ 16] [1808931100011111] +15:40:07 [ 3] [ 6] [011000] +15:40:07 [ 4] [ 12] [000020000000] +15:40:07 [ 6] [ 12] [000020000000] +15:40:07 [ 7] [ 10] [0320153956] +15:40:07 [ 11] [ 6] [786685] +15:40:07 [ 12] [ 6] [153956] +15:40:07 [ 13] [ 4] [0320] +15:40:07 [ 18] [ 4] [6011] +15:40:07 [ 19] [ 3] [418] +15:40:07 [ 22] [ 3] [021] +15:40:07 [ 32] [ 6] [621354] +15:40:07 [ 35] [ 27] [1808931100011111=1803500747] +15:40:07 [ 37] [ 12] [507903928831] +15:40:07 [ 38] [ 6] [786685] +15:40:07 [ 39] [ 2] [00] +15:40:07 [ 41] [ 8] [01010800] +15:40:07 [ 49] [ 3] [418] +15:40:07 [ 52] [ 16] [6C11A597E01C7A9D] +15:40:07 [ 54] [ 20] [1001418C000138633200] +15:40:07 ============================================================================ +15:40:07 Calculate Source COMM Id = 0 +15:40:07 ============================================================================ +15:40:07 + + +waiting on router queue for slot.... +15:40:12 ============================================================================ +15:40:12 Slot Id : <313> +15:40:12 Transaction Type : REQUEST +15:40:12 Received From : +15:40:12 ============================================================================ +15:40:12 FNo. Len. Field Value +15:40:12 ============================================================================ +15:40:12 [ 1] [ 4] [0800] +15:40:12 [ 7] [ 10] [0320225200] +15:40:12 [ 11] [ 6] [155200] +15:40:12 [ 37] [ 12] [57915155200] +15:40:12 [ 70] [ 3] [301] +15:40:12 ============================================================================ +15:40:12 + + +waiting on router queue for slot.... +15:40:12 Sending to : +15:40:12 ============================================================================ +15:40:12 ============================================================================ +15:40:12 Slot Id : <313> +15:40:12 Transaction Type : RESPONSE +15:40:12 Received From : +15:40:12 ============================================================================ +15:40:12 FNo. Len. Field Value +15:40:12 ============================================================================ +15:40:12 [ 1] [ 4] [0810] +15:40:12 [ 7] [ 10] [0320225200] +15:40:12 [ 11] [ 6] [155200] +15:40:12 [ 37] [ 12] [579151552000] +15:40:12 [ 39] [ 2] [00] +15:40:12 [ 70] [ 3] [810] +15:40:12 ============================================================================ +15:40:12 Calculate Source COMM Id = 6 +15:40:12 ============================================================================ +15:40:12 + + +waiting on router queue for slot.... +15:40:16 ============================================================================ +15:40:16 Slot Id : <345> +15:40:16 Transaction Type : REQUEST +15:40:16 Received From : +15:40:16 ============================================================================ +15:40:16 FNo. Len. Field Value +15:40:16 ============================================================================ +15:40:16 [ 1] [ 4] [0800] +15:40:16 [ 7] [ 10] [0320083923] +15:40:16 [ 11] [ 6] [157063] +15:40:16 [ 70] [ 3] [301] +15:40:16 ============================================================================ +15:40:16 + + +waiting on router queue for slot.... +15:40:16 Sending to : +15:40:16 ============================================================================ +15:40:16 ============================================================================ +15:40:16 Slot Id : <345> +15:40:16 Transaction Type : RESPONSE +15:40:16 Received From : +15:40:16 ============================================================================ +15:40:16 FNo. Len. Field Value +15:40:16 ============================================================================ +15:40:16 [ 1] [ 4] [0810] +15:40:16 [ 7] [ 10] [0320083923] +15:40:16 [ 11] [ 6] [157063] +15:40:16 [ 39] [ 2] [00] +15:40:16 [ 70] [ 3] [301] +15:40:16 ============================================================================ +15:40:16 Calculate Source COMM Id = 2 +15:40:16 ============================================================================ +15:40:16 + + +waiting on router queue for slot.... +15:40:27 ============================================================================ +15:40:27 Slot Id : <378> +15:40:27 Transaction Type : REQUEST +15:40:27 Received From : +15:40:27 ============================================================================ +15:40:27 FNo. Len. Field Value +15:40:27 ============================================================================ +15:40:27 [ 1] [ 4] [0800] +15:40:27 [ 7] [ 10] [0320083934] +15:40:27 [ 11] [ 6] [157064] +15:40:27 [ 70] [ 3] [301] +15:40:27 ============================================================================ +15:40:27 + + +waiting on router queue for slot.... +15:40:27 Sending to : +15:40:27 ============================================================================ +15:40:27 ============================================================================ +15:40:27 Slot Id : <378> +15:40:27 Transaction Type : RESPONSE +15:40:27 Received From : +15:40:27 ============================================================================ +15:40:27 FNo. Len. Field Value +15:40:27 ============================================================================ +15:40:27 [ 1] [ 4] [0810] +15:40:27 [ 7] [ 10] [0320083934] +15:40:27 [ 11] [ 6] [157064] +15:40:27 [ 39] [ 2] [00] +15:40:27 [ 70] [ 3] [301] +15:40:27 ============================================================================ +15:40:27 Calculate Source COMM Id = 2 +15:40:27 ============================================================================ +15:40:27 + + +waiting on router queue for slot.... +15:40:29 ============================================================================ +15:40:29 Slot Id : <373> +15:40:29 Transaction Type : REQUEST +15:40:29 Received From : +15:40:29 ============================================================================ +15:40:29 FNo. Len. Field Value +15:40:29 ============================================================================ +15:40:29 [ 1] [ 4] [0200] +15:40:29 [ 2] [ 16] [6688990104657901] +15:40:29 [ 3] [ 6] [011000] +15:40:29 [ 4] [ 12] [000020000000] +15:40:29 [ 7] [ 10] [0320154024] +15:40:29 [ 11] [ 6] [786786] +15:40:29 [ 12] [ 6] [154024] +15:40:29 [ 13] [ 4] [0320] +15:40:29 [ 15] [ 4] [0320] +15:40:29 [ 18] [ 4] [6011] +15:40:29 [ 22] [ 3] [900] +15:40:29 [ 25] [ 2] [02] +15:40:29 [ 28] [ 9] [D00002000] +15:40:29 [ 32] [ 6] [621354] +15:40:29 [ 35] [ 37] [6688990104657901=43051231790165400000] +15:40:29 [ 37] [ 12] [507905200927] +15:40:29 [ 41] [ 8] [07001700] +15:40:29 [ 42] [ 15] [NATIVE ] +15:40:29 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +15:40:29 [ 49] [ 3] [418] +15:40:29 [ 52] [ 16] [91DF3BF5A6FF5542] +15:40:29 ============================================================================ +15:40:29 + + +waiting on router queue for slot.... +15:40:29 Sending to : +15:40:29 ============================================================================ +15:40:29 Sending to : +15:40:29 ============================================================================ +15:40:29 ============================================================================ +15:40:29 Slot Id : <373> +15:40:29 Transaction Type : REQUEST +15:40:29 Received From : +15:40:29 ============================================================================ +15:40:29 FNo. Len. Field Value +15:40:29 ============================================================================ +15:40:29 [ 1] [ 4] [0200] +15:40:29 [ 2] [ 16] [6688990104657901] +15:40:29 [ 3] [ 6] [011000] +15:40:29 [ 4] [ 12] [000020000000] +15:40:29 [ 7] [ 10] [0320154024] +15:40:29 [ 11] [ 6] [786786] +15:40:29 [ 12] [ 6] [154024] +15:40:29 [ 13] [ 4] [0320] +15:40:29 [ 15] [ 4] [0320] +15:40:29 [ 18] [ 4] [6011] +15:40:29 [ 22] [ 3] [900] +15:40:29 [ 25] [ 2] [02] +15:40:29 [ 28] [ 9] [D00002000] +15:40:29 [ 32] [ 6] [621354] +15:40:29 [ 35] [ 37] [6688990104657901=43051231790165400000] +15:40:29 [ 37] [ 12] [507905200927] +15:40:29 [ 41] [ 8] [07001700] +15:40:29 [ 42] [ 15] [NATIVE ] +15:40:29 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +15:40:29 [ 49] [ 3] [418] +15:40:29 [ 52] [ 16] [91DF3BF5A6FF5542] +15:40:29 ============================================================================ +15:40:29 + + +waiting on router queue for slot.... +15:40:29 Sending to : +15:40:29 ============================================================================ +15:40:29 ============================================================================ +15:40:29 Slot Id : <373> +15:40:29 Transaction Type : REQUEST +15:40:29 Received From : +15:40:29 ============================================================================ +15:40:29 FNo. Len. Field Value +15:40:29 ============================================================================ +15:40:29 [ 1] [ 4] [0200] +15:40:29 [ 2] [ 16] [6688990104657901] +15:40:29 [ 3] [ 6] [011000] +15:40:29 [ 4] [ 12] [000020000000] +15:40:29 [ 7] [ 10] [0320154024] +15:40:29 [ 11] [ 6] [786786] +15:40:29 [ 12] [ 6] [154024] +15:40:29 [ 13] [ 4] [0320] +15:40:29 [ 15] [ 4] [0320] +15:40:29 [ 18] [ 4] [6011] +15:40:29 [ 22] [ 3] [900] +15:40:29 [ 25] [ 2] [02] +15:40:29 [ 28] [ 9] [D00002000] +15:40:29 [ 32] [ 6] [621354] +15:40:29 [ 35] [ 37] [6688990104657901=43051231790165400000] +15:40:29 [ 37] [ 12] [507905200927] +15:40:29 [ 41] [ 8] [07001700] +15:40:29 [ 42] [ 15] [NATIVE ] +15:40:29 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +15:40:29 [ 49] [ 3] [418] +15:40:29 [ 52] [ 16] [75D9473CD9365A79] +15:40:29 ============================================================================ +15:40:29 + + +waiting on router queue for slot.... +15:40:29 Sending to : <4> +15:40:29 ============================================================================ +15:40:30 ============================================================================ +15:40:30 Slot Id : <373> +15:40:30 Transaction Type : RESPONSE +15:40:30 Received From : +15:40:30 ============================================================================ +15:40:30 FNo. Len. Field Value +15:40:30 ============================================================================ +15:40:30 [ 1] [ 4] [0210] +15:40:30 [ 2] [ 16] [6688990104657901] +15:40:30 [ 3] [ 6] [011000] +15:40:30 [ 4] [ 12] [000020000000] +15:40:30 [ 11] [ 6] [786786] +15:40:30 [ 12] [ 6] [154024] +15:40:30 [ 15] [ 4] [0320] +15:40:30 [ 18] [ 4] [6011] +15:40:30 [ 32] [ 6] [621354] +15:40:30 [ 35] [ 37] [6688990104657901=43051231790165400000] +15:40:30 [ 37] [ 12] [507905200927] +15:40:30 [ 38] [ 6] [977658] +15:40:30 [ 39] [ 2] [00] +15:40:30 [ 41] [ 8] [07001700] +15:40:30 [ 49] [ 3] [418] +15:40:30 [ 54] [ 20] [1002418C000181603283] +15:40:30 ============================================================================ +15:40:30 Sending to : +15:40:30 ============================================================================ +15:40:30 + + +waiting on router queue for slot.... +15:40:32 ============================================================================ +15:40:32 Slot Id : <373> +15:40:32 Transaction Type : RESPONSE +15:40:32 Received From : +15:40:32 ============================================================================ +15:40:32 FNo. Len. Field Value +15:40:32 ============================================================================ +15:40:32 [ 1] [ 4] [0210] +15:40:32 [ 2] [ 16] [6688990104657901] +15:40:32 [ 3] [ 6] [011000] +15:40:32 [ 4] [ 12] [000020000000] +15:40:32 [ 11] [ 6] [786786] +15:40:32 [ 12] [ 6] [154024] +15:40:32 [ 15] [ 4] [0320] +15:40:32 [ 18] [ 4] [6011] +15:40:32 [ 32] [ 6] [621354] +15:40:32 [ 35] [ 37] [6688990104657901=43051231790165400000] +15:40:32 [ 37] [ 12] [507905200927] +15:40:32 [ 38] [ 6] [977658] +15:40:32 [ 39] [ 2] [00] +15:40:32 [ 41] [ 8] [07001700] +15:40:32 [ 49] [ 3] [418] +15:40:32 [ 54] [ 20] [1002418C000181603283] +15:40:32 ============================================================================ +15:40:32 Calculate Source COMM Id = 0 +15:40:32 ============================================================================ +15:40:32 + + +waiting on router queue for slot.... +15:40:40 ============================================================================ +15:40:40 Slot Id : <340> +15:40:40 Transaction Type : REQUEST +15:40:40 Received From : +15:40:40 ============================================================================ +15:40:40 FNo. Len. Field Value +15:40:40 ============================================================================ +15:40:40 [ 1] [ 4] [0200] +15:40:40 [ 2] [ 16] [6213543000232180] +15:40:40 [ 3] [ 6] [311000] +15:40:40 [ 4] [ 12] [000000000000] +15:40:40 [ 7] [ 10] [0320154828] +15:40:40 [ 11] [ 6] [251271] +15:40:40 [ 12] [ 6] [154828] +15:40:40 [ 13] [ 4] [0320] +15:40:40 [ 14] [ 4] [4912] +15:40:40 [ 15] [ 4] [0320] +15:40:40 [ 18] [ 4] [6011] +15:40:40 [ 22] [ 3] [900] +15:40:40 [ 25] [ 2] [02] +15:40:40 [ 28] [ 9] [000000000] +15:40:40 [ 32] [ 6] [220699] +15:40:40 [ 35] [ 32] [6213543000232180=491212013218835] +15:40:40 [ 37] [ 12] [507900336237] +15:40:40 [ 41] [ 8] [01001900] +15:40:40 [ 42] [ 15] [APTRA ] +15:40:40 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:40:40 [ 49] [ 3] [418] +15:40:40 [ 52] [ 16] [D7AADC610861A918] +15:40:40 ============================================================================ +15:40:40 + + +waiting on router queue for slot.... +15:40:40 Sending to : +15:40:40 ============================================================================ +15:40:40 Sending to : +15:40:40 ============================================================================ +15:40:41 ============================================================================ +15:40:41 Slot Id : <340> +15:40:41 Transaction Type : REQUEST +15:40:41 Received From : +15:40:41 ============================================================================ +15:40:41 FNo. Len. Field Value +15:40:41 ============================================================================ +15:40:41 [ 1] [ 4] [0200] +15:40:41 [ 2] [ 16] [6213543000232180] +15:40:41 [ 3] [ 6] [311000] +15:40:41 [ 4] [ 12] [000000000000] +15:40:41 [ 7] [ 10] [0320154828] +15:40:41 [ 11] [ 6] [251271] +15:40:41 [ 12] [ 6] [154828] +15:40:41 [ 13] [ 4] [0320] +15:40:41 [ 14] [ 4] [4912] +15:40:41 [ 15] [ 4] [0320] +15:40:41 [ 18] [ 4] [6011] +15:40:41 [ 22] [ 3] [900] +15:40:41 [ 25] [ 2] [02] +15:40:41 [ 28] [ 9] [000000000] +15:40:41 [ 32] [ 6] [220699] +15:40:41 [ 35] [ 32] [6213543000232180=491212013218835] +15:40:41 [ 37] [ 12] [507900336237] +15:40:41 [ 41] [ 8] [01001900] +15:40:41 [ 42] [ 15] [APTRA ] +15:40:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:40:41 [ 49] [ 3] [418] +15:40:41 [ 52] [ 16] [D7AADC610861A918] +15:40:41 ============================================================================ +15:40:41 + + +waiting on router queue for slot.... +15:40:41 Sending to : +15:40:41 ============================================================================ +15:40:41 ============================================================================ +15:40:41 Slot Id : <340> +15:40:41 Transaction Type : REQUEST +15:40:41 Received From : +15:40:41 ============================================================================ +15:40:41 FNo. Len. Field Value +15:40:41 ============================================================================ +15:40:41 [ 1] [ 4] [0200] +15:40:41 [ 2] [ 16] [6213543000232180] +15:40:41 [ 3] [ 6] [311000] +15:40:41 [ 4] [ 12] [000000000000] +15:40:41 [ 7] [ 10] [0320154828] +15:40:41 [ 11] [ 6] [251271] +15:40:41 [ 12] [ 6] [154828] +15:40:41 [ 13] [ 4] [0320] +15:40:41 [ 14] [ 4] [4912] +15:40:41 [ 15] [ 4] [0320] +15:40:41 [ 18] [ 4] [6011] +15:40:41 [ 22] [ 3] [900] +15:40:41 [ 25] [ 2] [02] +15:40:41 [ 28] [ 9] [000000000] +15:40:41 [ 32] [ 6] [220699] +15:40:41 [ 35] [ 32] [6213543000232180=491212013218835] +15:40:41 [ 37] [ 12] [507900336237] +15:40:41 [ 41] [ 8] [01001900] +15:40:41 [ 42] [ 15] [APTRA ] +15:40:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:40:41 [ 49] [ 3] [418] +15:40:41 [ 52] [ 16] [A67EE581A33078D4] +15:40:41 ============================================================================ +15:40:41 + + +waiting on router queue for slot.... +15:40:41 Sending to : <0> +15:40:41 ============================================================================ +15:40:41 ============================================================================ +15:40:41 Slot Id : <340> +15:40:41 Transaction Type : RESPONSE +15:40:41 Received From : +15:40:41 ============================================================================ +15:40:41 FNo. Len. Field Value +15:40:41 ============================================================================ +15:40:41 [ 1] [ 4] [0210] +15:40:41 [ 2] [ 16] [6213543000232180] +15:40:41 [ 3] [ 6] [311000] +15:40:41 [ 4] [ 12] [000000000000] +15:40:41 [ 7] [ 10] [0320154828] +15:40:41 [ 11] [ 6] [251271] +15:40:41 [ 12] [ 6] [154828] +15:40:41 [ 13] [ 4] [0320] +15:40:41 [ 15] [ 4] [0320] +15:40:41 [ 18] [ 4] [6011] +15:40:41 [ 22] [ 3] [900] +15:40:41 [ 32] [ 6] [220699] +15:40:41 [ 35] [ 32] [6213543000232180=491212013218835] +15:40:41 [ 37] [ 12] [507900336237] +15:40:41 [ 39] [ 2] [14] +15:40:41 [ 41] [ 8] [01001900] +15:40:41 [ 49] [ 3] [418] +15:40:41 ============================================================================ +15:40:41 Sending to : +15:40:41 ============================================================================ +15:40:41 + + +waiting on router queue for slot.... +15:40:41 ============================================================================ +15:40:41 Slot Id : <324> +15:40:41 Transaction Type : REQUEST +15:40:41 Received From : +15:40:41 ============================================================================ +15:40:41 FNo. Len. Field Value +15:40:41 ============================================================================ +15:40:41 [ 1] [ 4] [0200] +15:40:41 [ 2] [ 16] [6213545000638837] +15:40:41 [ 3] [ 6] [010000] +15:40:41 [ 4] [ 12] [000100000000] +15:40:41 [ 7] [ 10] [0320083948] +15:40:41 [ 11] [ 6] [270096] +15:40:41 [ 12] [ 6] [153948] +15:40:41 [ 13] [ 4] [0320] +15:40:41 [ 14] [ 4] [4912] +15:40:41 [ 15] [ 4] [0320] +15:40:41 [ 18] [ 4] [6011] +15:40:41 [ 19] [ 3] [418] +15:40:41 [ 22] [ 3] [021] +15:40:41 [ 25] [ 2] [01] +15:40:41 [ 28] [ 9] [D00002000] +15:40:41 [ 32] [ 6] [180893] +15:40:41 [ 35] [ 32] [6213545000638837=491212013883168] +15:40:41 [ 37] [ 12] [507908270096] +15:40:41 [ 41] [ 8] [0243VTKS] +15:40:41 [ 42] [ 15] [999999 ] +15:40:41 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:40:41 [ 49] [ 3] [418] +15:40:41 [ 52] [ 16] [07C0E3AC74121BDF] +15:40:41 ============================================================================ +15:40:41 + + +waiting on router queue for slot.... +15:40:41 Sending to : +15:40:41 ============================================================================ +15:40:41 Sending to : +15:40:41 ============================================================================ +15:40:41 ============================================================================ +15:40:41 Slot Id : <324> +15:40:41 Transaction Type : REQUEST +15:40:41 Received From : +15:40:41 ============================================================================ +15:40:41 FNo. Len. Field Value +15:40:41 ============================================================================ +15:40:41 [ 1] [ 4] [0200] +15:40:41 [ 2] [ 16] [6213545000638837] +15:40:41 [ 3] [ 6] [010000] +15:40:41 [ 4] [ 12] [000100000000] +15:40:41 [ 7] [ 10] [0320083948] +15:40:41 [ 11] [ 6] [270096] +15:40:41 [ 12] [ 6] [153948] +15:40:41 [ 13] [ 4] [0320] +15:40:41 [ 14] [ 4] [4912] +15:40:41 [ 15] [ 4] [0320] +15:40:41 [ 18] [ 4] [6011] +15:40:41 [ 19] [ 3] [418] +15:40:41 [ 22] [ 3] [021] +15:40:41 [ 25] [ 2] [01] +15:40:41 [ 28] [ 9] [D00002000] +15:40:41 [ 32] [ 6] [180893] +15:40:41 [ 35] [ 32] [6213545000638837=491212013883168] +15:40:41 [ 37] [ 12] [507908270096] +15:40:41 [ 41] [ 8] [0243VTKS] +15:40:41 [ 42] [ 15] [999999 ] +15:40:41 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:40:41 [ 49] [ 3] [418] +15:40:41 [ 52] [ 16] [07C0E3AC74121BDF] +15:40:41 ============================================================================ +15:40:41 + + +waiting on router queue for slot.... +15:40:41 Sending to : +15:40:41 ============================================================================ +15:40:41 ============================================================================ +15:40:41 Slot Id : <324> +15:40:41 Transaction Type : REQUEST +15:40:41 Received From : +15:40:41 ============================================================================ +15:40:41 FNo. Len. Field Value +15:40:41 ============================================================================ +15:40:41 [ 1] [ 4] [0200] +15:40:41 [ 2] [ 16] [6213545000638837] +15:40:41 [ 3] [ 6] [010000] +15:40:41 [ 4] [ 12] [000100000000] +15:40:41 [ 7] [ 10] [0320083948] +15:40:41 [ 11] [ 6] [270096] +15:40:41 [ 12] [ 6] [153948] +15:40:41 [ 13] [ 4] [0320] +15:40:41 [ 14] [ 4] [4912] +15:40:41 [ 15] [ 4] [0320] +15:40:41 [ 18] [ 4] [6011] +15:40:41 [ 19] [ 3] [418] +15:40:41 [ 22] [ 3] [021] +15:40:41 [ 25] [ 2] [01] +15:40:41 [ 28] [ 9] [D00002000] +15:40:41 [ 32] [ 6] [180893] +15:40:41 [ 35] [ 32] [6213545000638837=491212013883168] +15:40:41 [ 37] [ 12] [507908270096] +15:40:41 [ 41] [ 8] [0243VTKS] +15:40:41 [ 42] [ 15] [999999 ] +15:40:41 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:40:41 [ 49] [ 3] [418] +15:40:41 [ 52] [ 16] [CA9BA147011723CE] +15:40:41 ============================================================================ +15:40:41 + + +waiting on router queue for slot.... +15:40:41 Sending to : <0> +15:40:41 ============================================================================ +15:40:42 ============================================================================ +15:40:42 Slot Id : <324> +15:40:42 Transaction Type : RESPONSE +15:40:42 Received From : +15:40:42 ============================================================================ +15:40:42 FNo. Len. Field Value +15:40:42 ============================================================================ +15:40:42 [ 1] [ 4] [0210] +15:40:42 [ 2] [ 16] [6213545000638837] +15:40:42 [ 3] [ 6] [010000] +15:40:42 [ 4] [ 12] [000100000000] +15:40:42 [ 7] [ 10] [0320083948] +15:40:42 [ 11] [ 6] [270096] +15:40:42 [ 12] [ 6] [153948] +15:40:42 [ 13] [ 4] [0320] +15:40:42 [ 15] [ 4] [0320] +15:40:42 [ 18] [ 4] [6011] +15:40:42 [ 19] [ 3] [418] +15:40:42 [ 32] [ 6] [180893] +15:40:42 [ 35] [ 32] [6213545000638837=491212013883168] +15:40:42 [ 37] [ 12] [507908270096] +15:40:42 [ 38] [ 6] [964051] +15:40:42 [ 39] [ 2] [00] +15:40:42 [ 41] [ 8] [0243VTKS] +15:40:42 [ 49] [ 3] [418] +15:40:42 [ 54] [ 40] [0001418C0000329424210002418C000032942421] +15:40:42 ============================================================================ +15:40:42 Sending to : +15:40:42 ============================================================================ +15:40:42 + + +waiting on router queue for slot.... +15:40:42 ============================================================================ +15:40:42 Slot Id : <340> +15:40:42 Transaction Type : RESPONSE +15:40:42 Received From : +15:40:42 ============================================================================ +15:40:42 FNo. Len. Field Value +15:40:42 ============================================================================ +15:40:42 [ 1] [ 4] [0210] +15:40:42 [ 2] [ 16] [6213543000232180] +15:40:42 [ 3] [ 6] [311000] +15:40:42 [ 4] [ 12] [000000000000] +15:40:42 [ 7] [ 10] [0320154828] +15:40:42 [ 11] [ 6] [251271] +15:40:42 [ 12] [ 6] [154828] +15:40:42 [ 13] [ 4] [0320] +15:40:42 [ 15] [ 4] [0320] +15:40:42 [ 18] [ 4] [6011] +15:40:42 [ 22] [ 3] [900] +15:40:42 [ 32] [ 6] [220699] +15:40:42 [ 35] [ 32] [6213543000232180=491212013218835] +15:40:42 [ 37] [ 12] [507900336237] +15:40:42 [ 39] [ 2] [14] +15:40:42 [ 41] [ 8] [01001900] +15:40:42 [ 49] [ 3] [418] +15:40:42 ============================================================================ +15:40:42 Calculate Source COMM Id = 1 +15:40:42 ============================================================================ +15:40:42 + + +waiting on router queue for slot.... +15:40:42 ============================================================================ +15:40:42 Slot Id : <382> +15:40:42 Transaction Type : REQUEST +15:40:42 Received From : +15:40:42 ============================================================================ +15:40:42 FNo. Len. Field Value +15:40:42 ============================================================================ +15:40:42 [ 1] [ 4] [0200] +15:40:42 [ 2] [ 16] [6688990040139394] +15:40:42 [ 3] [ 6] [011000] +15:40:42 [ 4] [ 12] [000100000000] +15:40:42 [ 7] [ 10] [0320154037] +15:40:42 [ 11] [ 6] [786832] +15:40:42 [ 12] [ 6] [154037] +15:40:42 [ 13] [ 4] [0320] +15:40:42 [ 15] [ 4] [0320] +15:40:42 [ 18] [ 4] [6011] +15:40:42 [ 22] [ 3] [900] +15:40:42 [ 25] [ 2] [02] +15:40:42 [ 28] [ 9] [D00002000] +15:40:42 [ 32] [ 6] [621354] +15:40:42 [ 35] [ 37] [6688990040139394=98041261258504800000] +15:40:42 [ 37] [ 12] [507904755407] +15:40:42 [ 41] [ 8] [07001100] +15:40:42 [ 42] [ 15] [NATIVE ] +15:40:42 [ 43] [ 40] [Industry Market Namtar LAO] +15:40:42 [ 49] [ 3] [418] +15:40:42 [ 52] [ 16] [718D30F882D651F7] +15:40:42 ============================================================================ +15:40:42 + + +waiting on router queue for slot.... +15:40:42 Sending to : +15:40:42 ============================================================================ +15:40:42 Sending to : +15:40:42 ============================================================================ +15:40:42 ============================================================================ +15:40:42 Slot Id : <382> +15:40:42 Transaction Type : REQUEST +15:40:42 Received From : +15:40:42 ============================================================================ +15:40:42 FNo. Len. Field Value +15:40:42 ============================================================================ +15:40:42 [ 1] [ 4] [0200] +15:40:42 [ 2] [ 16] [6688990040139394] +15:40:42 [ 3] [ 6] [011000] +15:40:42 [ 4] [ 12] [000100000000] +15:40:42 [ 7] [ 10] [0320154037] +15:40:42 [ 11] [ 6] [786832] +15:40:42 [ 12] [ 6] [154037] +15:40:42 [ 13] [ 4] [0320] +15:40:42 [ 15] [ 4] [0320] +15:40:42 [ 18] [ 4] [6011] +15:40:42 [ 22] [ 3] [900] +15:40:42 [ 25] [ 2] [02] +15:40:42 [ 28] [ 9] [D00002000] +15:40:42 [ 32] [ 6] [621354] +15:40:42 [ 35] [ 37] [6688990040139394=98041261258504800000] +15:40:42 [ 37] [ 12] [507904755407] +15:40:42 [ 41] [ 8] [07001100] +15:40:42 [ 42] [ 15] [NATIVE ] +15:40:42 [ 43] [ 40] [Industry Market Namtar LAO] +15:40:42 [ 49] [ 3] [418] +15:40:42 [ 52] [ 16] [718D30F882D651F7] +15:40:42 ============================================================================ +15:40:42 + + +waiting on router queue for slot.... +15:40:42 Sending to : +15:40:42 ============================================================================ +15:40:42 ============================================================================ +15:40:42 Slot Id : <382> +15:40:42 Transaction Type : REQUEST +15:40:42 Received From : +15:40:42 ============================================================================ +15:40:42 FNo. Len. Field Value +15:40:42 ============================================================================ +15:40:42 [ 1] [ 4] [0200] +15:40:42 [ 2] [ 16] [6688990040139394] +15:40:42 [ 3] [ 6] [011000] +15:40:42 [ 4] [ 12] [000100000000] +15:40:42 [ 7] [ 10] [0320154037] +15:40:42 [ 11] [ 6] [786832] +15:40:42 [ 12] [ 6] [154037] +15:40:42 [ 13] [ 4] [0320] +15:40:42 [ 15] [ 4] [0320] +15:40:42 [ 18] [ 4] [6011] +15:40:42 [ 22] [ 3] [900] +15:40:42 [ 25] [ 2] [02] +15:40:42 [ 28] [ 9] [D00002000] +15:40:42 [ 32] [ 6] [621354] +15:40:42 [ 35] [ 37] [6688990040139394=98041261258504800000] +15:40:42 [ 37] [ 12] [507904755407] +15:40:42 [ 41] [ 8] [07001100] +15:40:42 [ 42] [ 15] [NATIVE ] +15:40:42 [ 43] [ 40] [Industry Market Namtar LAO] +15:40:42 [ 49] [ 3] [418] +15:40:42 [ 52] [ 16] [3C4665D077343F79] +15:40:42 ============================================================================ +15:40:42 + + +waiting on router queue for slot.... +15:40:42 Sending to : <4> +15:40:42 ============================================================================ +15:40:43 ============================================================================ +15:40:43 Slot Id : <355> +15:40:43 Transaction Type : REQUEST +15:40:43 Received From : +15:40:43 ============================================================================ +15:40:43 FNo. Len. Field Value +15:40:43 ============================================================================ +15:40:43 [ 1] [ 4] [0200] +15:40:43 [ 2] [ 16] [6688990050011251] +15:40:43 [ 3] [ 6] [010000] +15:40:43 [ 4] [ 12] [000005000000] +15:40:43 [ 7] [ 10] [0320154038] +15:40:43 [ 11] [ 6] [786833] +15:40:43 [ 12] [ 6] [154038] +15:40:43 [ 13] [ 4] [0320] +15:40:43 [ 15] [ 4] [0320] +15:40:43 [ 18] [ 4] [6011] +15:40:43 [ 22] [ 3] [900] +15:40:43 [ 25] [ 2] [02] +15:40:43 [ 28] [ 9] [D00002000] +15:40:43 [ 32] [ 6] [621354] +15:40:43 [ 35] [ 37] [6688990050011251=98011261684282000000] +15:40:43 [ 37] [ 12] [507905335211] +15:40:43 [ 41] [ 8] [05004700] +15:40:43 [ 42] [ 15] [NATIVE ] +15:40:43 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:40:43 [ 49] [ 3] [418] +15:40:43 [ 52] [ 16] [8E1FE78F46144B1B] +15:40:43 ============================================================================ +15:40:43 + + +waiting on router queue for slot.... +15:40:43 Sending to : +15:40:43 ============================================================================ +15:40:43 Sending to : +15:40:43 ============================================================================ +15:40:43 ============================================================================ +15:40:43 Slot Id : <353> +15:40:43 Transaction Type : REQUEST +15:40:43 Received From : +15:40:43 ============================================================================ +15:40:43 FNo. Len. Field Value +15:40:43 ============================================================================ +15:40:43 [ 1] [ 4] [0800] +15:40:43 [ 7] [ 10] [0320083950] +15:40:43 [ 11] [ 6] [157065] +15:40:43 [ 70] [ 3] [301] +15:40:43 ============================================================================ +15:40:43 + + +waiting on router queue for slot.... +15:40:43 Sending to : +15:40:43 ============================================================================ +15:40:43 ============================================================================ +15:40:43 Slot Id : <353> +15:40:43 Transaction Type : RESPONSE +15:40:43 Received From : +15:40:43 ============================================================================ +15:40:43 FNo. Len. Field Value +15:40:43 ============================================================================ +15:40:43 [ 1] [ 4] [0810] +15:40:43 [ 7] [ 10] [0320083950] +15:40:43 [ 11] [ 6] [157065] +15:40:43 [ 39] [ 2] [00] +15:40:43 [ 70] [ 3] [301] +15:40:43 ============================================================================ +15:40:43 Calculate Source COMM Id = 2 +15:40:43 ============================================================================ +15:40:43 + + +waiting on router queue for slot.... +15:40:43 ============================================================================ +15:40:43 Slot Id : <355> +15:40:43 Transaction Type : REQUEST +15:40:43 Received From : +15:40:43 ============================================================================ +15:40:43 FNo. Len. Field Value +15:40:43 ============================================================================ +15:40:43 [ 1] [ 4] [0200] +15:40:43 [ 2] [ 16] [6688990050011251] +15:40:43 [ 3] [ 6] [010000] +15:40:43 [ 4] [ 12] [000005000000] +15:40:43 [ 7] [ 10] [0320154038] +15:40:43 [ 11] [ 6] [786833] +15:40:43 [ 12] [ 6] [154038] +15:40:43 [ 13] [ 4] [0320] +15:40:43 [ 15] [ 4] [0320] +15:40:43 [ 18] [ 4] [6011] +15:40:43 [ 22] [ 3] [900] +15:40:43 [ 25] [ 2] [02] +15:40:43 [ 28] [ 9] [D00002000] +15:40:43 [ 32] [ 6] [621354] +15:40:43 [ 35] [ 37] [6688990050011251=98011261684282000000] +15:40:43 [ 37] [ 12] [507905335211] +15:40:43 [ 41] [ 8] [05004700] +15:40:43 [ 42] [ 15] [NATIVE ] +15:40:43 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:40:43 [ 49] [ 3] [418] +15:40:43 [ 52] [ 16] [8E1FE78F46144B1B] +15:40:43 ============================================================================ +15:40:43 + + +waiting on router queue for slot.... +15:40:43 Sending to : +15:40:43 ============================================================================ +15:40:43 ============================================================================ +15:40:43 Slot Id : <355> +15:40:43 Transaction Type : REQUEST +15:40:43 Received From : +15:40:43 ============================================================================ +15:40:43 FNo. Len. Field Value +15:40:43 ============================================================================ +15:40:43 [ 1] [ 4] [0200] +15:40:43 [ 2] [ 16] [6688990050011251] +15:40:43 [ 3] [ 6] [010000] +15:40:43 [ 4] [ 12] [000005000000] +15:40:43 [ 7] [ 10] [0320154038] +15:40:43 [ 11] [ 6] [786833] +15:40:43 [ 12] [ 6] [154038] +15:40:43 [ 13] [ 4] [0320] +15:40:43 [ 15] [ 4] [0320] +15:40:43 [ 18] [ 4] [6011] +15:40:43 [ 22] [ 3] [900] +15:40:43 [ 25] [ 2] [02] +15:40:43 [ 28] [ 9] [D00002000] +15:40:43 [ 32] [ 6] [621354] +15:40:43 [ 35] [ 37] [6688990050011251=98011261684282000000] +15:40:43 [ 37] [ 12] [507905335211] +15:40:43 [ 41] [ 8] [05004700] +15:40:43 [ 42] [ 15] [NATIVE ] +15:40:43 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:40:43 [ 49] [ 3] [418] +15:40:43 [ 52] [ 16] [8470C4D605BDE0FE] +15:40:43 ============================================================================ +15:40:43 + + +waiting on router queue for slot.... +15:40:43 Sending to : <4> +15:40:43 ============================================================================ +15:40:43 ============================================================================ +15:40:43 Slot Id : <324> +15:40:43 Transaction Type : RESPONSE +15:40:43 Received From : +15:40:43 ============================================================================ +15:40:43 FNo. Len. Field Value +15:40:43 ============================================================================ +15:40:43 [ 1] [ 4] [0210] +15:40:43 [ 2] [ 16] [6213545000638837] +15:40:43 [ 3] [ 6] [010000] +15:40:43 [ 4] [ 12] [000100000000] +15:40:43 [ 7] [ 10] [0320083948] +15:40:43 [ 11] [ 6] [270096] +15:40:43 [ 12] [ 6] [153948] +15:40:43 [ 13] [ 4] [0320] +15:40:43 [ 15] [ 4] [0320] +15:40:43 [ 18] [ 4] [6011] +15:40:43 [ 19] [ 3] [418] +15:40:43 [ 32] [ 6] [180893] +15:40:43 [ 35] [ 32] [6213545000638837=491212013883168] +15:40:43 [ 37] [ 12] [507908270096] +15:40:43 [ 38] [ 6] [964051] +15:40:43 [ 39] [ 2] [00] +15:40:43 [ 41] [ 8] [0243VTKS] +15:40:43 [ 49] [ 3] [418] +15:40:43 [ 54] [ 40] [0001418C0000329424210002418C000032942421] +15:40:43 ============================================================================ +15:40:43 Calculate Source COMM Id = 2 +15:40:43 ============================================================================ +15:40:43 + + +waiting on router queue for slot.... +15:40:43 ============================================================================ +15:40:43 Slot Id : <382> +15:40:43 Transaction Type : RESPONSE +15:40:43 Received From : +15:40:43 ============================================================================ +15:40:43 FNo. Len. Field Value +15:40:43 ============================================================================ +15:40:43 [ 1] [ 4] [0210] +15:40:43 [ 2] [ 16] [6688990040139394] +15:40:43 [ 3] [ 6] [011000] +15:40:43 [ 4] [ 12] [000100000000] +15:40:43 [ 11] [ 6] [786832] +15:40:43 [ 12] [ 6] [154037] +15:40:43 [ 15] [ 4] [0320] +15:40:43 [ 18] [ 4] [6011] +15:40:43 [ 32] [ 6] [621354] +15:40:43 [ 35] [ 37] [6688990040139394=98041261258504800000] +15:40:43 [ 37] [ 12] [507904755407] +15:40:43 [ 38] [ 6] [013473] +15:40:43 [ 39] [ 2] [00] +15:40:43 [ 41] [ 8] [07001100] +15:40:43 [ 49] [ 3] [418] +15:40:43 [ 54] [ 20] [1002418C000116534300] +15:40:43 ============================================================================ +15:40:43 Sending to : +15:40:43 ============================================================================ +15:40:43 + + +waiting on router queue for slot.... +15:40:44 ============================================================================ +15:40:44 Slot Id : <355> +15:40:44 Transaction Type : RESPONSE +15:40:44 Received From : +15:40:44 ============================================================================ +15:40:44 FNo. Len. Field Value +15:40:44 ============================================================================ +15:40:44 [ 1] [ 4] [0210] +15:40:44 [ 2] [ 16] [6688990050011251] +15:40:44 [ 3] [ 6] [010000] +15:40:44 [ 4] [ 12] [000005000000] +15:40:44 [ 11] [ 6] [786833] +15:40:44 [ 12] [ 6] [154038] +15:40:44 [ 15] [ 4] [0320] +15:40:44 [ 18] [ 4] [6011] +15:40:44 [ 32] [ 6] [621354] +15:40:44 [ 35] [ 37] [6688990050011251=98011261684282000000] +15:40:44 [ 37] [ 12] [507905335211] +15:40:44 [ 38] [ 6] [815193] +15:40:44 [ 39] [ 2] [00] +15:40:44 [ 41] [ 8] [05004700] +15:40:44 [ 49] [ 3] [418] +15:40:44 [ 54] [ 20] [0002418C000002025397] +15:40:44 ============================================================================ +15:40:44 Sending to : +15:40:44 ============================================================================ +15:40:44 + + +waiting on router queue for slot.... +15:40:45 ============================================================================ +15:40:45 Slot Id : <382> +15:40:45 Transaction Type : RESPONSE +15:40:45 Received From : +15:40:45 ============================================================================ +15:40:45 FNo. Len. Field Value +15:40:45 ============================================================================ +15:40:45 [ 1] [ 4] [0210] +15:40:45 [ 2] [ 16] [6688990040139394] +15:40:45 [ 3] [ 6] [011000] +15:40:45 [ 4] [ 12] [000100000000] +15:40:45 [ 11] [ 6] [786832] +15:40:45 [ 12] [ 6] [154037] +15:40:45 [ 15] [ 4] [0320] +15:40:45 [ 18] [ 4] [6011] +15:40:45 [ 32] [ 6] [621354] +15:40:45 [ 35] [ 37] [6688990040139394=98041261258504800000] +15:40:45 [ 37] [ 12] [507904755407] +15:40:45 [ 38] [ 6] [013473] +15:40:45 [ 39] [ 2] [00] +15:40:45 [ 41] [ 8] [07001100] +15:40:45 [ 49] [ 3] [418] +15:40:45 [ 54] [ 20] [1002418C000116534300] +15:40:45 ============================================================================ +15:40:45 Calculate Source COMM Id = 0 +15:40:45 ============================================================================ +15:40:45 + + +waiting on router queue for slot.... +15:40:47 ============================================================================ +15:40:47 Slot Id : <355> +15:40:47 Transaction Type : RESPONSE +15:40:47 Received From : +15:40:47 ============================================================================ +15:40:47 FNo. Len. Field Value +15:40:47 ============================================================================ +15:40:47 [ 1] [ 4] [0210] +15:40:47 [ 2] [ 16] [6688990050011251] +15:40:47 [ 3] [ 6] [010000] +15:40:47 [ 4] [ 12] [000005000000] +15:40:47 [ 11] [ 6] [786833] +15:40:47 [ 12] [ 6] [154038] +15:40:47 [ 15] [ 4] [0320] +15:40:47 [ 18] [ 4] [6011] +15:40:47 [ 32] [ 6] [621354] +15:40:47 [ 35] [ 37] [6688990050011251=98011261684282000000] +15:40:47 [ 37] [ 12] [507905335211] +15:40:47 [ 38] [ 6] [815193] +15:40:47 [ 39] [ 2] [00] +15:40:47 [ 41] [ 8] [05004700] +15:40:47 [ 49] [ 3] [418] +15:40:47 [ 54] [ 20] [0002418C000002025397] +15:40:47 ============================================================================ +15:40:47 Calculate Source COMM Id = 0 +15:40:47 ============================================================================ +15:40:47 + + +waiting on router queue for slot.... +15:40:48 ============================================================================ +15:40:48 Slot Id : <363> +15:40:48 Transaction Type : REQUEST +15:40:48 Received From : +15:40:48 ============================================================================ +15:40:48 FNo. Len. Field Value +15:40:48 ============================================================================ +15:40:48 [ 1] [ 4] [0200] +15:40:48 [ 2] [ 16] [6688990030018376] +15:40:48 [ 3] [ 6] [010000] +15:40:48 [ 4] [ 12] [000100000000] +15:40:48 [ 7] [ 10] [0320154043] +15:40:48 [ 11] [ 6] [786850] +15:40:48 [ 12] [ 6] [154043] +15:40:48 [ 13] [ 4] [0320] +15:40:48 [ 15] [ 4] [0320] +15:40:48 [ 18] [ 4] [6011] +15:40:48 [ 22] [ 3] [900] +15:40:48 [ 25] [ 2] [02] +15:40:48 [ 28] [ 9] [D00002000] +15:40:48 [ 32] [ 6] [621354] +15:40:48 [ 35] [ 37] [6688990030018376=98051261293993700000] +15:40:48 [ 37] [ 12] [507904707758] +15:40:48 [ 41] [ 8] [18000900] +15:40:48 [ 42] [ 15] [NATIVE ] +15:40:48 [ 43] [ 40] [Bounneau District Bounneua LAO] +15:40:48 [ 49] [ 3] [418] +15:40:48 [ 52] [ 16] [6F2A41EF58E499CD] +15:40:48 ============================================================================ +15:40:48 + + +waiting on router queue for slot.... +15:40:48 Sending to : +15:40:48 ============================================================================ +15:40:48 Sending to : +15:40:48 ============================================================================ +15:40:48 ============================================================================ +15:40:48 Slot Id : <363> +15:40:48 Transaction Type : REQUEST +15:40:48 Received From : +15:40:48 ============================================================================ +15:40:48 FNo. Len. Field Value +15:40:48 ============================================================================ +15:40:48 [ 1] [ 4] [0200] +15:40:48 [ 2] [ 16] [6688990030018376] +15:40:48 [ 3] [ 6] [010000] +15:40:48 [ 4] [ 12] [000100000000] +15:40:48 [ 7] [ 10] [0320154043] +15:40:48 [ 11] [ 6] [786850] +15:40:48 [ 12] [ 6] [154043] +15:40:48 [ 13] [ 4] [0320] +15:40:48 [ 15] [ 4] [0320] +15:40:48 [ 18] [ 4] [6011] +15:40:48 [ 22] [ 3] [900] +15:40:48 [ 25] [ 2] [02] +15:40:48 [ 28] [ 9] [D00002000] +15:40:48 [ 32] [ 6] [621354] +15:40:48 [ 35] [ 37] [6688990030018376=98051261293993700000] +15:40:48 [ 37] [ 12] [507904707758] +15:40:48 [ 41] [ 8] [18000900] +15:40:48 [ 42] [ 15] [NATIVE ] +15:40:48 [ 43] [ 40] [Bounneau District Bounneua LAO] +15:40:48 [ 49] [ 3] [418] +15:40:48 [ 52] [ 16] [6F2A41EF58E499CD] +15:40:48 ============================================================================ +15:40:48 + + +waiting on router queue for slot.... +15:40:48 Sending to : +15:40:48 ============================================================================ +15:40:48 ============================================================================ +15:40:48 Slot Id : <363> +15:40:48 Transaction Type : REQUEST +15:40:48 Received From : +15:40:48 ============================================================================ +15:40:48 FNo. Len. Field Value +15:40:48 ============================================================================ +15:40:48 [ 1] [ 4] [0200] +15:40:48 [ 2] [ 16] [6688990030018376] +15:40:48 [ 3] [ 6] [010000] +15:40:48 [ 4] [ 12] [000100000000] +15:40:48 [ 7] [ 10] [0320154043] +15:40:48 [ 11] [ 6] [786850] +15:40:48 [ 12] [ 6] [154043] +15:40:48 [ 13] [ 4] [0320] +15:40:48 [ 15] [ 4] [0320] +15:40:48 [ 18] [ 4] [6011] +15:40:48 [ 22] [ 3] [900] +15:40:48 [ 25] [ 2] [02] +15:40:48 [ 28] [ 9] [D00002000] +15:40:48 [ 32] [ 6] [621354] +15:40:48 [ 35] [ 37] [6688990030018376=98051261293993700000] +15:40:48 [ 37] [ 12] [507904707758] +15:40:48 [ 41] [ 8] [18000900] +15:40:48 [ 42] [ 15] [NATIVE ] +15:40:48 [ 43] [ 40] [Bounneau District Bounneua LAO] +15:40:48 [ 49] [ 3] [418] +15:40:48 [ 52] [ 16] [B5C3E5ED293BBD4B] +15:40:48 ============================================================================ +15:40:48 + + +waiting on router queue for slot.... +15:40:48 Sending to : <4> +15:40:48 ============================================================================ +15:40:49 ============================================================================ +15:40:49 Slot Id : <363> +15:40:49 Transaction Type : RESPONSE +15:40:49 Received From : +15:40:49 ============================================================================ +15:40:49 FNo. Len. Field Value +15:40:49 ============================================================================ +15:40:49 [ 1] [ 4] [0210] +15:40:49 [ 2] [ 16] [6688990030018376] +15:40:49 [ 3] [ 6] [010000] +15:40:49 [ 4] [ 12] [000100000000] +15:40:49 [ 11] [ 6] [786850] +15:40:49 [ 12] [ 6] [154043] +15:40:49 [ 15] [ 4] [0320] +15:40:49 [ 18] [ 4] [6011] +15:40:49 [ 32] [ 6] [621354] +15:40:49 [ 35] [ 37] [6688990030018376=98051261293993700000] +15:40:49 [ 37] [ 12] [507904707758] +15:40:49 [ 38] [ 6] [898634] +15:40:49 [ 39] [ 2] [00] +15:40:49 [ 41] [ 8] [18000900] +15:40:49 [ 49] [ 3] [418] +15:40:49 [ 54] [ 20] [0002418C000104800000] +15:40:49 ============================================================================ +15:40:49 Sending to : +15:40:49 ============================================================================ +15:40:49 + + +waiting on router queue for slot.... +15:40:51 ============================================================================ +15:40:51 Slot Id : <363> +15:40:51 Transaction Type : RESPONSE +15:40:51 Received From : +15:40:51 ============================================================================ +15:40:51 FNo. Len. Field Value +15:40:51 ============================================================================ +15:40:51 [ 1] [ 4] [0210] +15:40:51 [ 2] [ 16] [6688990030018376] +15:40:51 [ 3] [ 6] [010000] +15:40:51 [ 4] [ 12] [000100000000] +15:40:51 [ 11] [ 6] [786850] +15:40:51 [ 12] [ 6] [154043] +15:40:51 [ 15] [ 4] [0320] +15:40:51 [ 18] [ 4] [6011] +15:40:51 [ 32] [ 6] [621354] +15:40:51 [ 35] [ 37] [6688990030018376=98051261293993700000] +15:40:51 [ 37] [ 12] [507904707758] +15:40:51 [ 38] [ 6] [898634] +15:40:51 [ 39] [ 2] [00] +15:40:51 [ 41] [ 8] [18000900] +15:40:51 [ 49] [ 3] [418] +15:40:51 [ 54] [ 20] [0002418C000104800000] +15:40:51 ============================================================================ +15:40:51 Calculate Source COMM Id = 0 +15:40:51 ============================================================================ +15:40:51 + + +waiting on router queue for slot.... +15:40:54 ============================================================================ +15:40:54 Slot Id : <344> +15:40:54 Transaction Type : REQUEST +15:40:54 Received From : +15:40:54 ============================================================================ +15:40:54 FNo. Len. Field Value +15:40:54 ============================================================================ +15:40:54 [ 1] [ 4] [0800] +15:40:54 [ 7] [ 10] [0320084001] +15:40:54 [ 11] [ 6] [157066] +15:40:54 [ 70] [ 3] [301] +15:40:54 ============================================================================ +15:40:54 + + +waiting on router queue for slot.... +15:40:54 Sending to : +15:40:54 ============================================================================ +15:40:54 ============================================================================ +15:40:54 Slot Id : <344> +15:40:54 Transaction Type : RESPONSE +15:40:54 Received From : +15:40:54 ============================================================================ +15:40:54 FNo. Len. Field Value +15:40:54 ============================================================================ +15:40:54 [ 1] [ 4] [0810] +15:40:54 [ 7] [ 10] [0320084001] +15:40:54 [ 11] [ 6] [157066] +15:40:54 [ 39] [ 2] [00] +15:40:54 [ 70] [ 3] [301] +15:40:54 ============================================================================ +15:40:54 Calculate Source COMM Id = 2 +15:40:54 ============================================================================ +15:40:54 + + +waiting on router queue for slot.... +15:40:59 ============================================================================ +15:40:59 Slot Id : <370> +15:40:59 Transaction Type : REQUEST +15:40:59 Received From : +15:40:59 ============================================================================ +15:40:59 FNo. Len. Field Value +15:40:59 ============================================================================ +15:40:59 [ 1] [ 4] [0800] +15:40:59 [ 2] [ 5] [02531] +15:40:59 [ 3] [ 6] [579158] +15:40:59 [ 7] [ 10] [0320084059] +15:40:59 [ 11] [ 6] [807322] +15:40:59 [ 15] [ 10] [0320084059] +15:40:59 [ 37] [ 11] [57915807322] +15:40:59 [ 70] [ 3] [001] +15:40:59 ============================================================================ +15:40:59 + + +waiting on router queue for slot.... +15:40:59 ============================================================================ +15:40:59 Slot Id : <370> +15:40:59 Transaction Type : RESPONSE +15:40:59 Received From : +15:40:59 ============================================================================ +15:40:59 FNo. Len. Field Value +15:40:59 ============================================================================ +15:40:59 [ 1] [ 4] [0810] +15:40:59 [ 7] [ 10] [0320084059] +15:40:59 [ 11] [ 6] [807322] +15:40:59 [ 15] [ 4] [0320] +15:40:59 [ 37] [ 12] [57915807322] +15:40:59 [ 39] [ 2] [00] +15:40:59 [ 70] [ 3] [001] +15:40:59 ============================================================================ +15:40:59 Sending to : +15:40:59 ============================================================================ +15:40:59 + + +waiting on router queue for slot.... +15:41:02 ============================================================================ +15:41:02 Slot Id : <379> +15:41:02 Transaction Type : REQUEST +15:41:02 Received From : +15:41:02 ============================================================================ +15:41:02 FNo. Len. Field Value +15:41:02 ============================================================================ +15:41:02 [ 1] [ 4] [0200] +15:41:02 [ 2] [ 16] [6213541000713126] +15:41:02 [ 3] [ 6] [010000] +15:41:02 [ 4] [ 12] [000050000000] +15:41:02 [ 7] [ 10] [0320153852] +15:41:02 [ 11] [ 6] [950325] +15:41:02 [ 12] [ 6] [153852] +15:41:02 [ 13] [ 4] [0320] +15:41:02 [ 15] [ 4] [0320] +15:41:02 [ 18] [ 4] [6011] +15:41:02 [ 19] [ 3] [418] +15:41:02 [ 22] [ 3] [021] +15:41:02 [ 25] [ 2] [01] +15:41:02 [ 28] [ 9] [D00002000] +15:41:02 [ 32] [ 6] [668899] +15:41:02 [ 35] [ 32] [6213541000713126=491212011312254] +15:41:02 [ 37] [ 12] [507902308454] +15:41:02 [ 41] [ 8] [03011003] +15:41:02 [ 42] [ 15] [APT ] +15:41:02 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +15:41:02 [ 49] [ 3] [418] +15:41:02 [ 52] [ 16] [805E86B2798006B2] +15:41:02 ============================================================================ +15:41:02 + + +waiting on router queue for slot.... +15:41:02 Sending to : +15:41:02 ============================================================================ +15:41:02 Sending to : +15:41:02 ============================================================================ +15:41:03 ============================================================================ +15:41:03 Slot Id : <379> +15:41:03 Transaction Type : REQUEST +15:41:03 Received From : +15:41:03 ============================================================================ +15:41:03 FNo. Len. Field Value +15:41:03 ============================================================================ +15:41:03 [ 1] [ 4] [0200] +15:41:03 [ 2] [ 16] [6213541000713126] +15:41:03 [ 3] [ 6] [010000] +15:41:03 [ 4] [ 12] [000050000000] +15:41:03 [ 7] [ 10] [0320153852] +15:41:03 [ 11] [ 6] [950325] +15:41:03 [ 12] [ 6] [153852] +15:41:03 [ 13] [ 4] [0320] +15:41:03 [ 15] [ 4] [0320] +15:41:03 [ 18] [ 4] [6011] +15:41:03 [ 19] [ 3] [418] +15:41:03 [ 22] [ 3] [021] +15:41:03 [ 25] [ 2] [01] +15:41:03 [ 28] [ 9] [D00002000] +15:41:03 [ 32] [ 6] [668899] +15:41:03 [ 35] [ 32] [6213541000713126=491212011312254] +15:41:03 [ 37] [ 12] [507902308454] +15:41:03 [ 41] [ 8] [03011003] +15:41:03 [ 42] [ 15] [APT ] +15:41:03 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +15:41:03 [ 49] [ 3] [418] +15:41:03 [ 52] [ 16] [805E86B2798006B2] +15:41:03 ============================================================================ +15:41:03 + + +waiting on router queue for slot.... +15:41:03 Sending to : +15:41:03 ============================================================================ +15:41:03 ============================================================================ +15:41:03 Slot Id : <379> +15:41:03 Transaction Type : REQUEST +15:41:03 Received From : +15:41:03 ============================================================================ +15:41:03 FNo. Len. Field Value +15:41:03 ============================================================================ +15:41:03 [ 1] [ 4] [0200] +15:41:03 [ 2] [ 16] [6213541000713126] +15:41:03 [ 3] [ 6] [010000] +15:41:03 [ 4] [ 12] [000050000000] +15:41:03 [ 7] [ 10] [0320153852] +15:41:03 [ 11] [ 6] [950325] +15:41:03 [ 12] [ 6] [153852] +15:41:03 [ 13] [ 4] [0320] +15:41:03 [ 15] [ 4] [0320] +15:41:03 [ 18] [ 4] [6011] +15:41:03 [ 19] [ 3] [418] +15:41:03 [ 22] [ 3] [021] +15:41:03 [ 25] [ 2] [01] +15:41:03 [ 28] [ 9] [D00002000] +15:41:03 [ 32] [ 6] [668899] +15:41:03 [ 35] [ 32] [6213541000713126=491212011312254] +15:41:03 [ 37] [ 12] [507902308454] +15:41:03 [ 41] [ 8] [03011003] +15:41:03 [ 42] [ 15] [APT ] +15:41:03 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +15:41:03 [ 49] [ 3] [418] +15:41:03 [ 52] [ 16] [FF971DB3AB8DDB9F] +15:41:03 ============================================================================ +15:41:03 + + +waiting on router queue for slot.... +15:41:03 Sending to : <0> +15:41:03 ============================================================================ +15:41:03 ============================================================================ +15:41:03 Slot Id : <379> +15:41:03 Transaction Type : RESPONSE +15:41:03 Received From : +15:41:03 ============================================================================ +15:41:03 FNo. Len. Field Value +15:41:03 ============================================================================ +15:41:03 [ 1] [ 4] [0210] +15:41:03 [ 2] [ 16] [6213541000713126] +15:41:03 [ 3] [ 6] [010000] +15:41:03 [ 4] [ 12] [000050000000] +15:41:03 [ 7] [ 10] [0320153852] +15:41:03 [ 11] [ 6] [950325] +15:41:03 [ 12] [ 6] [153852] +15:41:03 [ 13] [ 4] [0320] +15:41:03 [ 15] [ 4] [0320] +15:41:03 [ 18] [ 4] [6011] +15:41:03 [ 19] [ 3] [418] +15:41:03 [ 32] [ 6] [668899] +15:41:03 [ 35] [ 32] [6213541000713126=491212011312254] +15:41:03 [ 37] [ 12] [507902308454] +15:41:03 [ 38] [ 6] [294202] +15:41:03 [ 39] [ 2] [00] +15:41:03 [ 41] [ 8] [03011003] +15:41:03 [ 49] [ 3] [418] +15:41:03 [ 54] [ 40] [0001418C0000232000000002418C000023200000] +15:41:03 ============================================================================ +15:41:03 Sending to : +15:41:03 ============================================================================ +15:41:03 + + +waiting on router queue for slot.... +15:41:05 ============================================================================ +15:41:05 Slot Id : <379> +15:41:05 Transaction Type : RESPONSE +15:41:05 Received From : +15:41:05 ============================================================================ +15:41:05 FNo. Len. Field Value +15:41:05 ============================================================================ +15:41:05 [ 1] [ 4] [0210] +15:41:05 [ 2] [ 16] [6213541000713126] +15:41:05 [ 3] [ 6] [010000] +15:41:05 [ 4] [ 12] [000050000000] +15:41:05 [ 7] [ 10] [0320153852] +15:41:05 [ 11] [ 6] [950325] +15:41:05 [ 12] [ 6] [153852] +15:41:05 [ 13] [ 4] [0320] +15:41:05 [ 15] [ 4] [0320] +15:41:05 [ 18] [ 4] [6011] +15:41:05 [ 19] [ 3] [418] +15:41:05 [ 32] [ 6] [668899] +15:41:05 [ 35] [ 32] [6213541000713126=491212011312254] +15:41:05 [ 37] [ 12] [507902308454] +15:41:05 [ 38] [ 6] [294202] +15:41:05 [ 39] [ 2] [00] +15:41:05 [ 41] [ 8] [03011003] +15:41:05 [ 49] [ 3] [418] +15:41:05 [ 54] [ 40] [0001418C0000232000000002418C000023200000] +15:41:05 ============================================================================ +15:41:05 Calculate Source COMM Id = 4 +15:41:05 ============================================================================ +15:41:05 + + +waiting on router queue for slot.... +15:41:06 ============================================================================ +15:41:06 Slot Id : <358> +15:41:06 Transaction Type : REQUEST +15:41:06 Received From : +15:41:06 ============================================================================ +15:41:06 FNo. Len. Field Value +15:41:06 ============================================================================ +15:41:06 [ 1] [ 4] [0800] +15:41:06 [ 7] [ 10] [0320084013] +15:41:06 [ 11] [ 6] [157067] +15:41:06 [ 70] [ 3] [301] +15:41:06 ============================================================================ +15:41:06 + + +waiting on router queue for slot.... +15:41:06 Sending to : +15:41:06 ============================================================================ +15:41:06 ============================================================================ +15:41:06 Slot Id : <358> +15:41:06 Transaction Type : RESPONSE +15:41:06 Received From : +15:41:06 ============================================================================ +15:41:06 FNo. Len. Field Value +15:41:06 ============================================================================ +15:41:06 [ 1] [ 4] [0810] +15:41:06 [ 7] [ 10] [0320084013] +15:41:06 [ 11] [ 6] [157067] +15:41:06 [ 39] [ 2] [00] +15:41:06 [ 70] [ 3] [301] +15:41:06 ============================================================================ +15:41:06 Calculate Source COMM Id = 2 +15:41:06 ============================================================================ +15:41:06 + + +waiting on router queue for slot.... +15:41:06 ============================================================================ +15:41:06 Slot Id : <369> +15:41:06 Transaction Type : REQUEST +15:41:06 Received From : +15:41:06 ============================================================================ +15:41:06 FNo. Len. Field Value +15:41:06 ============================================================================ +15:41:06 [ 1] [ 4] [0200] +15:41:06 [ 2] [ 16] [6688990060000237] +15:41:06 [ 3] [ 6] [010000] +15:41:06 [ 4] [ 12] [000100000000] +15:41:06 [ 7] [ 10] [0320154102] +15:41:06 [ 11] [ 6] [786897] +15:41:06 [ 12] [ 6] [154102] +15:41:06 [ 13] [ 4] [0320] +15:41:06 [ 15] [ 4] [0320] +15:41:06 [ 18] [ 4] [6011] +15:41:06 [ 22] [ 3] [900] +15:41:06 [ 25] [ 2] [02] +15:41:06 [ 28] [ 9] [D00002000] +15:41:06 [ 32] [ 6] [621354] +15:41:06 [ 35] [ 37] [6688990060000237=97091261629957200000] +15:41:06 [ 37] [ 12] [507903499523] +15:41:06 [ 41] [ 8] [06002200] +15:41:06 [ 42] [ 15] [NATIVE ] +15:41:06 [ 43] [ 40] [Beng Market Beng LAO] +15:41:06 [ 49] [ 3] [418] +15:41:06 [ 52] [ 16] [9471BFF2A91CC5AB] +15:41:06 ============================================================================ +15:41:06 + + +waiting on router queue for slot.... +15:41:06 Sending to : +15:41:06 ============================================================================ +15:41:06 Sending to : +15:41:06 ============================================================================ +15:41:07 ============================================================================ +15:41:07 Slot Id : <369> +15:41:07 Transaction Type : REQUEST +15:41:07 Received From : +15:41:07 ============================================================================ +15:41:07 FNo. Len. Field Value +15:41:07 ============================================================================ +15:41:07 [ 1] [ 4] [0200] +15:41:07 [ 2] [ 16] [6688990060000237] +15:41:07 [ 3] [ 6] [010000] +15:41:07 [ 4] [ 12] [000100000000] +15:41:07 [ 7] [ 10] [0320154102] +15:41:07 [ 11] [ 6] [786897] +15:41:07 [ 12] [ 6] [154102] +15:41:07 [ 13] [ 4] [0320] +15:41:07 [ 15] [ 4] [0320] +15:41:07 [ 18] [ 4] [6011] +15:41:07 [ 22] [ 3] [900] +15:41:07 [ 25] [ 2] [02] +15:41:07 [ 28] [ 9] [D00002000] +15:41:07 [ 32] [ 6] [621354] +15:41:07 [ 35] [ 37] [6688990060000237=97091261629957200000] +15:41:07 [ 37] [ 12] [507903499523] +15:41:07 [ 41] [ 8] [06002200] +15:41:07 [ 42] [ 15] [NATIVE ] +15:41:07 [ 43] [ 40] [Beng Market Beng LAO] +15:41:07 [ 49] [ 3] [418] +15:41:07 [ 52] [ 16] [9471BFF2A91CC5AB] +15:41:07 ============================================================================ +15:41:07 + + +waiting on router queue for slot.... +15:41:07 Sending to : +15:41:07 ============================================================================ +15:41:07 ============================================================================ +15:41:07 Slot Id : <369> +15:41:07 Transaction Type : REQUEST +15:41:07 Received From : +15:41:07 ============================================================================ +15:41:07 FNo. Len. Field Value +15:41:07 ============================================================================ +15:41:07 [ 1] [ 4] [0200] +15:41:07 [ 2] [ 16] [6688990060000237] +15:41:07 [ 3] [ 6] [010000] +15:41:07 [ 4] [ 12] [000100000000] +15:41:07 [ 7] [ 10] [0320154102] +15:41:07 [ 11] [ 6] [786897] +15:41:07 [ 12] [ 6] [154102] +15:41:07 [ 13] [ 4] [0320] +15:41:07 [ 15] [ 4] [0320] +15:41:07 [ 18] [ 4] [6011] +15:41:07 [ 22] [ 3] [900] +15:41:07 [ 25] [ 2] [02] +15:41:07 [ 28] [ 9] [D00002000] +15:41:07 [ 32] [ 6] [621354] +15:41:07 [ 35] [ 37] [6688990060000237=97091261629957200000] +15:41:07 [ 37] [ 12] [507903499523] +15:41:07 [ 41] [ 8] [06002200] +15:41:07 [ 42] [ 15] [NATIVE ] +15:41:07 [ 43] [ 40] [Beng Market Beng LAO] +15:41:07 [ 49] [ 3] [418] +15:41:07 [ 52] [ 16] [DA80FF8DE770FCAC] +15:41:07 ============================================================================ +15:41:07 + + +waiting on router queue for slot.... +15:41:07 Sending to : <4> +15:41:07 ============================================================================ +15:41:08 ============================================================================ +15:41:08 Slot Id : <369> +15:41:08 Transaction Type : RESPONSE +15:41:08 Received From : +15:41:08 ============================================================================ +15:41:08 FNo. Len. Field Value +15:41:08 ============================================================================ +15:41:08 [ 1] [ 4] [0210] +15:41:08 [ 2] [ 16] [6688990060000237] +15:41:08 [ 3] [ 6] [010000] +15:41:08 [ 4] [ 12] [000100000000] +15:41:08 [ 11] [ 6] [786897] +15:41:08 [ 12] [ 6] [154102] +15:41:08 [ 15] [ 4] [0320] +15:41:08 [ 18] [ 4] [6011] +15:41:08 [ 32] [ 6] [621354] +15:41:08 [ 35] [ 37] [6688990060000237=97091261629957200000] +15:41:08 [ 37] [ 12] [507903499523] +15:41:08 [ 38] [ 6] [180925] +15:41:08 [ 39] [ 2] [00] +15:41:08 [ 41] [ 8] [06002200] +15:41:08 [ 49] [ 3] [418] +15:41:08 [ 54] [ 20] [0002418C000238546005] +15:41:08 ============================================================================ +15:41:08 Sending to : +15:41:08 ============================================================================ +15:41:08 + + +waiting on router queue for slot.... +15:41:09 ============================================================================ +15:41:09 Slot Id : <369> +15:41:09 Transaction Type : RESPONSE +15:41:09 Received From : +15:41:09 ============================================================================ +15:41:09 FNo. Len. Field Value +15:41:09 ============================================================================ +15:41:09 [ 1] [ 4] [0210] +15:41:09 [ 2] [ 16] [6688990060000237] +15:41:09 [ 3] [ 6] [010000] +15:41:09 [ 4] [ 12] [000100000000] +15:41:09 [ 11] [ 6] [786897] +15:41:09 [ 12] [ 6] [154102] +15:41:09 [ 15] [ 4] [0320] +15:41:09 [ 18] [ 4] [6011] +15:41:09 [ 32] [ 6] [621354] +15:41:09 [ 35] [ 37] [6688990060000237=97091261629957200000] +15:41:09 [ 37] [ 12] [507903499523] +15:41:09 [ 38] [ 6] [180925] +15:41:09 [ 39] [ 2] [00] +15:41:09 [ 41] [ 8] [06002200] +15:41:09 [ 49] [ 3] [418] +15:41:09 [ 54] [ 20] [0002418C000238546005] +15:41:09 ============================================================================ +15:41:09 Calculate Source COMM Id = 0 +15:41:09 ============================================================================ +15:41:09 + + +waiting on router queue for slot.... +15:41:13 ============================================================================ +15:41:13 Slot Id : <360> +15:41:13 Transaction Type : REQUEST +15:41:13 Received From : +15:41:13 ============================================================================ +15:41:13 FNo. Len. Field Value +15:41:13 ============================================================================ +15:41:13 [ 1] [ 4] [0800] +15:41:13 [ 7] [ 10] [0320084108] +15:41:13 [ 11] [ 6] [051407] +15:41:13 [ 37] [ 12] [507915051407] +15:41:13 [ 70] [ 3] [001] +15:41:13 ============================================================================ +15:41:13 + + +waiting on router queue for slot.... +15:41:13 Sending to : +15:41:13 ============================================================================ +15:41:13 ============================================================================ +15:41:13 Slot Id : <360> +15:41:13 Transaction Type : RESPONSE +15:41:13 Received From : +15:41:13 ============================================================================ +15:41:13 FNo. Len. Field Value +15:41:13 ============================================================================ +15:41:13 [ 1] [ 4] [0810] +15:41:13 [ 7] [ 10] [0320084108] +15:41:13 [ 11] [ 6] [051407] +15:41:13 [ 37] [ 12] [507915051407] +15:41:13 [ 39] [ 2] [00] +15:41:13 [ 70] [ 3] [001] +15:41:13 ============================================================================ +15:41:13 Calculate Source COMM Id = 0 +15:41:13 ============================================================================ +15:41:13 + + +waiting on router queue for slot.... +15:41:17 ============================================================================ +15:41:17 Slot Id : <338> +15:41:17 Transaction Type : REQUEST +15:41:17 Received From : +15:41:17 ============================================================================ +15:41:17 FNo. Len. Field Value +15:41:17 ============================================================================ +15:41:17 [ 1] [ 4] [0800] +15:41:17 [ 7] [ 10] [0320225305] +15:41:17 [ 11] [ 6] [155305] +15:41:17 [ 37] [ 12] [57915155305] +15:41:17 [ 70] [ 3] [301] +15:41:17 ============================================================================ +15:41:17 + + +waiting on router queue for slot.... +15:41:17 Sending to : +15:41:17 ============================================================================ +15:41:17 ============================================================================ +15:41:17 Slot Id : <338> +15:41:17 Transaction Type : RESPONSE +15:41:17 Received From : +15:41:17 ============================================================================ +15:41:17 FNo. Len. Field Value +15:41:17 ============================================================================ +15:41:17 [ 1] [ 4] [0810] +15:41:17 [ 7] [ 10] [0320225305] +15:41:17 [ 11] [ 6] [155305] +15:41:17 [ 37] [ 12] [579151553050] +15:41:17 [ 39] [ 2] [00] +15:41:17 [ 70] [ 3] [810] +15:41:17 ============================================================================ +15:41:17 Calculate Source COMM Id = 6 +15:41:17 ============================================================================ +15:41:17 + + +waiting on router queue for slot.... +15:41:17 ============================================================================ +15:41:17 Slot Id : <354> +15:41:17 Transaction Type : REQUEST +15:41:17 Received From : +15:41:17 ============================================================================ +15:41:17 FNo. Len. Field Value +15:41:17 ============================================================================ +15:41:17 [ 1] [ 4] [0800] +15:41:17 [ 7] [ 10] [0320084024] +15:41:17 [ 11] [ 6] [157068] +15:41:17 [ 70] [ 3] [301] +15:41:17 ============================================================================ +15:41:17 + + +waiting on router queue for slot.... +15:41:17 Sending to : +15:41:17 ============================================================================ +15:41:17 ============================================================================ +15:41:17 Slot Id : <354> +15:41:17 Transaction Type : RESPONSE +15:41:17 Received From : +15:41:17 ============================================================================ +15:41:17 FNo. Len. Field Value +15:41:17 ============================================================================ +15:41:17 [ 1] [ 4] [0810] +15:41:17 [ 7] [ 10] [0320084024] +15:41:17 [ 11] [ 6] [157068] +15:41:17 [ 39] [ 2] [00] +15:41:17 [ 70] [ 3] [301] +15:41:17 ============================================================================ +15:41:17 Calculate Source COMM Id = 2 +15:41:17 ============================================================================ +15:41:17 + + +waiting on router queue for slot.... +15:41:21 ============================================================================ +15:41:21 Slot Id : <396> +15:41:21 Transaction Type : REQUEST +15:41:21 Received From : +15:41:21 ============================================================================ +15:41:21 FNo. Len. Field Value +15:41:21 ============================================================================ +15:41:21 [ 1] [ 4] [0800] +15:41:21 [ 7] [ 10] [0320083912] +15:41:21 [ 11] [ 6] [044534] +15:41:21 [ 37] [ 12] [57915044534] +15:41:21 [ 70] [ 3] [301] +15:41:21 ============================================================================ +15:41:21 + + +waiting on router queue for slot.... +15:41:21 Sending to : +15:41:21 ============================================================================ +15:41:21 ============================================================================ +15:41:21 Slot Id : <396> +15:41:21 Transaction Type : RESPONSE +15:41:21 Received From : +15:41:21 ============================================================================ +15:41:21 FNo. Len. Field Value +15:41:21 ============================================================================ +15:41:21 [ 1] [ 4] [0810] +15:41:21 [ 7] [ 10] [0320083912] +15:41:21 [ 11] [ 6] [044534] +15:41:21 [ 37] [ 12] [579150445340] +15:41:21 [ 39] [ 2] [00] +15:41:21 [ 70] [ 3] [810] +15:41:21 ============================================================================ +15:41:21 Calculate Source COMM Id = 4 +15:41:21 ============================================================================ +15:41:21 + + +waiting on router queue for slot.... +15:41:25 ============================================================================ +15:41:25 Slot Id : <351> +15:41:25 Transaction Type : REQUEST +15:41:25 Received From : +15:41:25 ============================================================================ +15:41:25 FNo. Len. Field Value +15:41:25 ============================================================================ +15:41:25 [ 1] [ 4] [0200] +15:41:25 [ 2] [ 16] [6688990101786109] +15:41:25 [ 3] [ 6] [012000] +15:41:25 [ 4] [ 12] [000020000000] +15:41:25 [ 7] [ 10] [0320154120] +15:41:25 [ 11] [ 6] [786966] +15:41:25 [ 12] [ 6] [154120] +15:41:25 [ 13] [ 4] [0320] +15:41:25 [ 15] [ 4] [0320] +15:41:25 [ 18] [ 4] [6011] +15:41:25 [ 22] [ 3] [900] +15:41:25 [ 25] [ 2] [02] +15:41:25 [ 28] [ 9] [D00002000] +15:41:25 [ 32] [ 6] [621354] +15:41:25 [ 35] [ 37] [6688990101786109=42051231610924500000] +15:41:25 [ 37] [ 12] [507904635771] +15:41:25 [ 41] [ 8] [17000800] +15:41:25 [ 42] [ 15] [NATIVE ] +15:41:25 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:41:25 [ 49] [ 3] [418] +15:41:25 [ 52] [ 16] [5753DB07E49D78DF] +15:41:25 ============================================================================ +15:41:25 + + +waiting on router queue for slot.... +15:41:25 Sending to : +15:41:25 ============================================================================ +15:41:25 Sending to : +15:41:25 ============================================================================ +15:41:25 ============================================================================ +15:41:25 Slot Id : <351> +15:41:25 Transaction Type : REQUEST +15:41:25 Received From : +15:41:25 ============================================================================ +15:41:25 FNo. Len. Field Value +15:41:25 ============================================================================ +15:41:25 [ 1] [ 4] [0200] +15:41:25 [ 2] [ 16] [6688990101786109] +15:41:25 [ 3] [ 6] [012000] +15:41:25 [ 4] [ 12] [000020000000] +15:41:25 [ 7] [ 10] [0320154120] +15:41:25 [ 11] [ 6] [786966] +15:41:25 [ 12] [ 6] [154120] +15:41:25 [ 13] [ 4] [0320] +15:41:25 [ 15] [ 4] [0320] +15:41:25 [ 18] [ 4] [6011] +15:41:25 [ 22] [ 3] [900] +15:41:25 [ 25] [ 2] [02] +15:41:25 [ 28] [ 9] [D00002000] +15:41:25 [ 32] [ 6] [621354] +15:41:25 [ 35] [ 37] [6688990101786109=42051231610924500000] +15:41:25 [ 37] [ 12] [507904635771] +15:41:25 [ 41] [ 8] [17000800] +15:41:25 [ 42] [ 15] [NATIVE ] +15:41:25 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:41:25 [ 49] [ 3] [418] +15:41:25 [ 52] [ 16] [5753DB07E49D78DF] +15:41:25 ============================================================================ +15:41:25 + + +waiting on router queue for slot.... +15:41:25 Sending to : +15:41:25 ============================================================================ +15:41:25 ============================================================================ +15:41:25 Slot Id : <351> +15:41:25 Transaction Type : REQUEST +15:41:25 Received From : +15:41:25 ============================================================================ +15:41:25 FNo. Len. Field Value +15:41:25 ============================================================================ +15:41:25 [ 1] [ 4] [0200] +15:41:25 [ 2] [ 16] [6688990101786109] +15:41:25 [ 3] [ 6] [012000] +15:41:25 [ 4] [ 12] [000020000000] +15:41:25 [ 7] [ 10] [0320154120] +15:41:25 [ 11] [ 6] [786966] +15:41:25 [ 12] [ 6] [154120] +15:41:25 [ 13] [ 4] [0320] +15:41:25 [ 15] [ 4] [0320] +15:41:25 [ 18] [ 4] [6011] +15:41:25 [ 22] [ 3] [900] +15:41:25 [ 25] [ 2] [02] +15:41:25 [ 28] [ 9] [D00002000] +15:41:25 [ 32] [ 6] [621354] +15:41:25 [ 35] [ 37] [6688990101786109=42051231610924500000] +15:41:25 [ 37] [ 12] [507904635771] +15:41:25 [ 41] [ 8] [17000800] +15:41:25 [ 42] [ 15] [NATIVE ] +15:41:25 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:41:25 [ 49] [ 3] [418] +15:41:25 [ 52] [ 16] [0C89AD0F4F491E0D] +15:41:25 ============================================================================ +15:41:25 + + +waiting on router queue for slot.... +15:41:25 Sending to : <4> +15:41:25 ============================================================================ +15:41:25 ============================================================================ +15:41:25 Slot Id : <351> +15:41:25 Transaction Type : RESPONSE +15:41:25 Received From : +15:41:25 ============================================================================ +15:41:25 FNo. Len. Field Value +15:41:25 ============================================================================ +15:41:25 [ 1] [ 4] [0210] +15:41:25 [ 2] [ 16] [6688990101786109] +15:41:25 [ 3] [ 6] [012000] +15:41:25 [ 4] [ 12] [000020000000] +15:41:25 [ 7] [ 10] [0320154120] +15:41:25 [ 11] [ 6] [786966] +15:41:25 [ 12] [ 6] [154120] +15:41:25 [ 13] [ 4] [0320] +15:41:25 [ 15] [ 4] [0320] +15:41:25 [ 18] [ 4] [6011] +15:41:25 [ 22] [ 3] [021] +15:41:25 [ 32] [ 6] [621354] +15:41:25 [ 35] [ 37] [6688990101786109=42051231610924500000] +15:41:25 [ 37] [ 12] [507904635771] +15:41:25 [ 38] [ 6] [153916] +15:41:25 [ 39] [ 2] [55] +15:41:25 [ 41] [ 8] [17000800] +15:41:25 [ 49] [ 3] [418] +15:41:25 ============================================================================ +15:41:25 Sending to : +15:41:25 ============================================================================ +15:41:25 + + +waiting on router queue for slot.... +15:41:27 ============================================================================ +15:41:27 Slot Id : <351> +15:41:27 Transaction Type : RESPONSE +15:41:27 Received From : +15:41:27 ============================================================================ +15:41:27 FNo. Len. Field Value +15:41:27 ============================================================================ +15:41:27 [ 1] [ 4] [0210] +15:41:27 [ 2] [ 16] [6688990101786109] +15:41:27 [ 3] [ 6] [012000] +15:41:27 [ 4] [ 12] [000020000000] +15:41:27 [ 7] [ 10] [0320154120] +15:41:27 [ 11] [ 6] [786966] +15:41:27 [ 12] [ 6] [154120] +15:41:27 [ 13] [ 4] [0320] +15:41:27 [ 15] [ 4] [0320] +15:41:27 [ 18] [ 4] [6011] +15:41:27 [ 22] [ 3] [021] +15:41:27 [ 32] [ 6] [621354] +15:41:27 [ 35] [ 37] [6688990101786109=42051231610924500000] +15:41:27 [ 37] [ 12] [507904635771] +15:41:27 [ 38] [ 6] [153916] +15:41:27 [ 39] [ 2] [55] +15:41:27 [ 41] [ 8] [17000800] +15:41:27 [ 49] [ 3] [418] +15:41:27 ============================================================================ +15:41:27 Calculate Source COMM Id = 0 +15:41:27 ============================================================================ +15:41:27 + + +waiting on router queue for slot.... +15:41:28 ============================================================================ +15:41:28 Slot Id : <390> +15:41:28 Transaction Type : REQUEST +15:41:28 Received From : +15:41:28 ============================================================================ +15:41:28 FNo. Len. Field Value +15:41:28 ============================================================================ +15:41:28 [ 1] [ 4] [0800] +15:41:28 [ 7] [ 10] [0320084035] +15:41:28 [ 11] [ 6] [157069] +15:41:28 [ 70] [ 3] [301] +15:41:28 ============================================================================ +15:41:28 + + +waiting on router queue for slot.... +15:41:28 Sending to : +15:41:28 ============================================================================ +15:41:28 ============================================================================ +15:41:28 Slot Id : <390> +15:41:28 Transaction Type : RESPONSE +15:41:28 Received From : +15:41:28 ============================================================================ +15:41:28 FNo. Len. Field Value +15:41:28 ============================================================================ +15:41:28 [ 1] [ 4] [0810] +15:41:28 [ 7] [ 10] [0320084035] +15:41:28 [ 11] [ 6] [157069] +15:41:28 [ 39] [ 2] [00] +15:41:28 [ 70] [ 3] [301] +15:41:28 ============================================================================ +15:41:28 Calculate Source COMM Id = 2 +15:41:28 ============================================================================ +15:41:28 + + +waiting on router queue for slot.... +15:41:35 ============================================================================ +15:41:35 Slot Id : <389> +15:41:35 Transaction Type : REQUEST +15:41:35 Received From : +15:41:35 ============================================================================ +15:41:35 FNo. Len. Field Value +15:41:35 ============================================================================ +15:41:35 [ 1] [ 4] [0200] +15:41:35 [ 2] [ 16] [6213543000232180] +15:41:35 [ 3] [ 6] [011000] +15:41:35 [ 4] [ 12] [000100000000] +15:41:35 [ 7] [ 10] [0320154922] +15:41:35 [ 11] [ 6] [251274] +15:41:35 [ 12] [ 6] [154922] +15:41:35 [ 13] [ 4] [0320] +15:41:35 [ 14] [ 4] [4912] +15:41:35 [ 15] [ 4] [0320] +15:41:35 [ 18] [ 4] [6011] +15:41:35 [ 22] [ 3] [900] +15:41:35 [ 25] [ 2] [02] +15:41:35 [ 28] [ 9] [D00002000] +15:41:35 [ 32] [ 6] [220699] +15:41:35 [ 35] [ 32] [6213543000232180=491212013218835] +15:41:35 [ 37] [ 12] [507900336239] +15:41:35 [ 41] [ 8] [01001900] +15:41:35 [ 42] [ 15] [APTRA ] +15:41:35 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:41:35 [ 49] [ 3] [418] +15:41:35 [ 52] [ 16] [D7AADC610861A918] +15:41:35 ============================================================================ +15:41:35 + + +waiting on router queue for slot.... +15:41:35 Sending to : +15:41:35 ============================================================================ +15:41:35 Sending to : +15:41:35 ============================================================================ +15:41:36 ============================================================================ +15:41:36 Slot Id : <389> +15:41:36 Transaction Type : REQUEST +15:41:36 Received From : +15:41:36 ============================================================================ +15:41:36 FNo. Len. Field Value +15:41:36 ============================================================================ +15:41:36 [ 1] [ 4] [0200] +15:41:36 [ 2] [ 16] [6213543000232180] +15:41:36 [ 3] [ 6] [011000] +15:41:36 [ 4] [ 12] [000100000000] +15:41:36 [ 7] [ 10] [0320154922] +15:41:36 [ 11] [ 6] [251274] +15:41:36 [ 12] [ 6] [154922] +15:41:36 [ 13] [ 4] [0320] +15:41:36 [ 14] [ 4] [4912] +15:41:36 [ 15] [ 4] [0320] +15:41:36 [ 18] [ 4] [6011] +15:41:36 [ 22] [ 3] [900] +15:41:36 [ 25] [ 2] [02] +15:41:36 [ 28] [ 9] [D00002000] +15:41:36 [ 32] [ 6] [220699] +15:41:36 [ 35] [ 32] [6213543000232180=491212013218835] +15:41:36 [ 37] [ 12] [507900336239] +15:41:36 [ 41] [ 8] [01001900] +15:41:36 [ 42] [ 15] [APTRA ] +15:41:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:41:36 [ 49] [ 3] [418] +15:41:36 [ 52] [ 16] [D7AADC610861A918] +15:41:36 ============================================================================ +15:41:36 + + +waiting on router queue for slot.... +15:41:36 Sending to : +15:41:36 ============================================================================ +15:41:36 ============================================================================ +15:41:36 Slot Id : <389> +15:41:36 Transaction Type : REQUEST +15:41:36 Received From : +15:41:36 ============================================================================ +15:41:36 FNo. Len. Field Value +15:41:36 ============================================================================ +15:41:36 [ 1] [ 4] [0200] +15:41:36 [ 2] [ 16] [6213543000232180] +15:41:36 [ 3] [ 6] [011000] +15:41:36 [ 4] [ 12] [000100000000] +15:41:36 [ 7] [ 10] [0320154922] +15:41:36 [ 11] [ 6] [251274] +15:41:36 [ 12] [ 6] [154922] +15:41:36 [ 13] [ 4] [0320] +15:41:36 [ 14] [ 4] [4912] +15:41:36 [ 15] [ 4] [0320] +15:41:36 [ 18] [ 4] [6011] +15:41:36 [ 22] [ 3] [900] +15:41:36 [ 25] [ 2] [02] +15:41:36 [ 28] [ 9] [D00002000] +15:41:36 [ 32] [ 6] [220699] +15:41:36 [ 35] [ 32] [6213543000232180=491212013218835] +15:41:36 [ 37] [ 12] [507900336239] +15:41:36 [ 41] [ 8] [01001900] +15:41:36 [ 42] [ 15] [APTRA ] +15:41:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:41:36 [ 49] [ 3] [418] +15:41:36 [ 52] [ 16] [A67EE581A33078D4] +15:41:36 ============================================================================ +15:41:36 + + +waiting on router queue for slot.... +15:41:36 Sending to : <0> +15:41:36 ============================================================================ +15:41:36 ============================================================================ +15:41:36 Slot Id : <389> +15:41:36 Transaction Type : RESPONSE +15:41:36 Received From : +15:41:36 ============================================================================ +15:41:36 FNo. Len. Field Value +15:41:36 ============================================================================ +15:41:36 [ 1] [ 4] [0210] +15:41:36 [ 2] [ 16] [6213543000232180] +15:41:36 [ 3] [ 6] [011000] +15:41:36 [ 4] [ 12] [000100000000] +15:41:36 [ 7] [ 10] [0320154922] +15:41:36 [ 11] [ 6] [251274] +15:41:36 [ 12] [ 6] [154922] +15:41:36 [ 13] [ 4] [0320] +15:41:36 [ 15] [ 4] [0320] +15:41:36 [ 18] [ 4] [6011] +15:41:36 [ 22] [ 3] [900] +15:41:36 [ 32] [ 6] [220699] +15:41:36 [ 35] [ 32] [6213543000232180=491212013218835] +15:41:36 [ 37] [ 12] [507900336239] +15:41:36 [ 39] [ 2] [14] +15:41:36 [ 41] [ 8] [01001900] +15:41:36 [ 49] [ 3] [418] +15:41:36 ============================================================================ +15:41:36 Sending to : +15:41:36 ============================================================================ +15:41:36 + + +waiting on router queue for slot.... +15:41:37 ============================================================================ +15:41:37 Slot Id : <389> +15:41:37 Transaction Type : RESPONSE +15:41:37 Received From : +15:41:37 ============================================================================ +15:41:37 FNo. Len. Field Value +15:41:37 ============================================================================ +15:41:37 [ 1] [ 4] [0210] +15:41:37 [ 2] [ 16] [6213543000232180] +15:41:37 [ 3] [ 6] [011000] +15:41:37 [ 4] [ 12] [000100000000] +15:41:37 [ 7] [ 10] [0320154922] +15:41:37 [ 11] [ 6] [251274] +15:41:37 [ 12] [ 6] [154922] +15:41:37 [ 13] [ 4] [0320] +15:41:37 [ 15] [ 4] [0320] +15:41:37 [ 18] [ 4] [6011] +15:41:37 [ 22] [ 3] [900] +15:41:37 [ 32] [ 6] [220699] +15:41:37 [ 35] [ 32] [6213543000232180=491212013218835] +15:41:37 [ 37] [ 12] [507900336239] +15:41:37 [ 39] [ 2] [14] +15:41:37 [ 41] [ 8] [01001900] +15:41:37 [ 49] [ 3] [418] +15:41:37 ============================================================================ +15:41:37 Calculate Source COMM Id = 1 +15:41:37 ============================================================================ +15:41:37 + + +waiting on router queue for slot.... +15:41:39 ============================================================================ +15:41:39 Slot Id : <374> +15:41:39 Transaction Type : REQUEST +15:41:39 Received From : +15:41:39 ============================================================================ +15:41:39 FNo. Len. Field Value +15:41:39 ============================================================================ +15:41:39 [ 1] [ 4] [0800] +15:41:39 [ 7] [ 10] [0320084046] +15:41:39 [ 11] [ 6] [157070] +15:41:39 [ 70] [ 3] [301] +15:41:39 ============================================================================ +15:41:39 + + +waiting on router queue for slot.... +15:41:39 Sending to : +15:41:39 ============================================================================ +15:41:39 ============================================================================ +15:41:39 Slot Id : <374> +15:41:39 Transaction Type : RESPONSE +15:41:39 Received From : +15:41:39 ============================================================================ +15:41:39 FNo. Len. Field Value +15:41:39 ============================================================================ +15:41:39 [ 1] [ 4] [0810] +15:41:39 [ 7] [ 10] [0320084046] +15:41:39 [ 11] [ 6] [157070] +15:41:39 [ 39] [ 2] [00] +15:41:39 [ 70] [ 3] [301] +15:41:39 ============================================================================ +15:41:39 Calculate Source COMM Id = 2 +15:41:39 ============================================================================ +15:41:39 + + +waiting on router queue for slot.... +15:41:50 ============================================================================ +15:41:50 Slot Id : <361> +15:41:50 Transaction Type : REQUEST +15:41:50 Received From : +15:41:50 ============================================================================ +15:41:50 FNo. Len. Field Value +15:41:50 ============================================================================ +15:41:50 [ 1] [ 4] [0200] +15:41:50 [ 2] [ 16] [6688990101786109] +15:41:50 [ 3] [ 6] [012000] +15:41:50 [ 4] [ 12] [000020000000] +15:41:50 [ 7] [ 10] [0320154145] +15:41:50 [ 11] [ 6] [787049] +15:41:50 [ 12] [ 6] [154145] +15:41:50 [ 13] [ 4] [0320] +15:41:50 [ 15] [ 4] [0320] +15:41:50 [ 18] [ 4] [6011] +15:41:50 [ 22] [ 3] [900] +15:41:50 [ 25] [ 2] [02] +15:41:50 [ 28] [ 9] [D00002000] +15:41:50 [ 32] [ 6] [621354] +15:41:50 [ 35] [ 37] [6688990101786109=42051231610924500000] +15:41:50 [ 37] [ 12] [507904635773] +15:41:50 [ 41] [ 8] [17000800] +15:41:50 [ 42] [ 15] [NATIVE ] +15:41:50 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:41:50 [ 49] [ 3] [418] +15:41:50 [ 52] [ 16] [BBBF9A571BB449D9] +15:41:50 ============================================================================ +15:41:50 + + +waiting on router queue for slot.... +15:41:50 Sending to : +15:41:50 ============================================================================ +15:41:50 Sending to : +15:41:50 ============================================================================ +15:41:50 ============================================================================ +15:41:50 Slot Id : <361> +15:41:50 Transaction Type : REQUEST +15:41:50 Received From : +15:41:50 ============================================================================ +15:41:50 FNo. Len. Field Value +15:41:50 ============================================================================ +15:41:50 [ 1] [ 4] [0200] +15:41:50 [ 2] [ 16] [6688990101786109] +15:41:50 [ 3] [ 6] [012000] +15:41:50 [ 4] [ 12] [000020000000] +15:41:50 [ 7] [ 10] [0320154145] +15:41:50 [ 11] [ 6] [787049] +15:41:50 [ 12] [ 6] [154145] +15:41:50 [ 13] [ 4] [0320] +15:41:50 [ 15] [ 4] [0320] +15:41:50 [ 18] [ 4] [6011] +15:41:50 [ 22] [ 3] [900] +15:41:50 [ 25] [ 2] [02] +15:41:50 [ 28] [ 9] [D00002000] +15:41:50 [ 32] [ 6] [621354] +15:41:50 [ 35] [ 37] [6688990101786109=42051231610924500000] +15:41:50 [ 37] [ 12] [507904635773] +15:41:50 [ 41] [ 8] [17000800] +15:41:50 [ 42] [ 15] [NATIVE ] +15:41:50 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:41:50 [ 49] [ 3] [418] +15:41:50 [ 52] [ 16] [BBBF9A571BB449D9] +15:41:50 ============================================================================ +15:41:50 + + +waiting on router queue for slot.... +15:41:50 Sending to : +15:41:50 ============================================================================ +15:41:50 ============================================================================ +15:41:50 Slot Id : <361> +15:41:50 Transaction Type : REQUEST +15:41:50 Received From : +15:41:50 ============================================================================ +15:41:50 FNo. Len. Field Value +15:41:50 ============================================================================ +15:41:50 [ 1] [ 4] [0200] +15:41:50 [ 2] [ 16] [6688990101786109] +15:41:50 [ 3] [ 6] [012000] +15:41:50 [ 4] [ 12] [000020000000] +15:41:50 [ 7] [ 10] [0320154145] +15:41:50 [ 11] [ 6] [787049] +15:41:50 [ 12] [ 6] [154145] +15:41:50 [ 13] [ 4] [0320] +15:41:50 [ 15] [ 4] [0320] +15:41:50 [ 18] [ 4] [6011] +15:41:50 [ 22] [ 3] [900] +15:41:50 [ 25] [ 2] [02] +15:41:50 [ 28] [ 9] [D00002000] +15:41:50 [ 32] [ 6] [621354] +15:41:50 [ 35] [ 37] [6688990101786109=42051231610924500000] +15:41:50 [ 37] [ 12] [507904635773] +15:41:50 [ 41] [ 8] [17000800] +15:41:50 [ 42] [ 15] [NATIVE ] +15:41:50 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:41:50 [ 49] [ 3] [418] +15:41:50 [ 52] [ 16] [BA17BDC1189CE9CA] +15:41:50 ============================================================================ +15:41:50 + + +waiting on router queue for slot.... +15:41:50 Sending to : <4> +15:41:50 ============================================================================ +15:41:51 ============================================================================ +15:41:51 Slot Id : <361> +15:41:51 Transaction Type : RESPONSE +15:41:51 Received From : +15:41:51 ============================================================================ +15:41:51 FNo. Len. Field Value +15:41:51 ============================================================================ +15:41:51 [ 1] [ 4] [0210] +15:41:51 [ 2] [ 16] [6688990101786109] +15:41:51 [ 3] [ 6] [012000] +15:41:51 [ 4] [ 12] [000020000000] +15:41:51 [ 11] [ 6] [787049] +15:41:51 [ 12] [ 6] [154145] +15:41:51 [ 15] [ 4] [0320] +15:41:51 [ 18] [ 4] [6011] +15:41:51 [ 32] [ 6] [621354] +15:41:51 [ 35] [ 37] [6688990101786109=42051231610924500000] +15:41:51 [ 37] [ 12] [507904635773] +15:41:51 [ 38] [ 6] [757471] +15:41:51 [ 39] [ 2] [00] +15:41:51 [ 41] [ 8] [17000800] +15:41:51 [ 49] [ 3] [418] +15:41:51 [ 54] [ 20] [2002418C000812056328] +15:41:51 ============================================================================ +15:41:51 Sending to : +15:41:51 ============================================================================ +15:41:51 + + +waiting on router queue for slot.... +15:41:52 ============================================================================ +15:41:52 Slot Id : <359> +15:41:52 Transaction Type : REQUEST +15:41:52 Received From : +15:41:52 ============================================================================ +15:41:52 FNo. Len. Field Value +15:41:52 ============================================================================ +15:41:52 [ 1] [ 4] [0800] +15:41:52 [ 7] [ 10] [0320084058] +15:41:52 [ 11] [ 6] [157071] +15:41:52 [ 70] [ 3] [301] +15:41:52 ============================================================================ +15:41:52 + + +waiting on router queue for slot.... +15:41:52 Sending to : +15:41:52 ============================================================================ +15:41:52 ============================================================================ +15:41:52 Slot Id : <359> +15:41:52 Transaction Type : RESPONSE +15:41:52 Received From : +15:41:52 ============================================================================ +15:41:52 FNo. Len. Field Value +15:41:52 ============================================================================ +15:41:52 [ 1] [ 4] [0810] +15:41:52 [ 7] [ 10] [0320084058] +15:41:52 [ 11] [ 6] [157071] +15:41:52 [ 39] [ 2] [00] +15:41:52 [ 70] [ 3] [301] +15:41:52 ============================================================================ +15:41:52 Calculate Source COMM Id = 2 +15:41:52 ============================================================================ +15:41:52 + + +waiting on router queue for slot.... +15:41:53 ============================================================================ +15:41:53 Slot Id : <361> +15:41:53 Transaction Type : RESPONSE +15:41:53 Received From : +15:41:53 ============================================================================ +15:41:53 FNo. Len. Field Value +15:41:53 ============================================================================ +15:41:53 [ 1] [ 4] [0210] +15:41:53 [ 2] [ 16] [6688990101786109] +15:41:53 [ 3] [ 6] [012000] +15:41:53 [ 4] [ 12] [000020000000] +15:41:53 [ 11] [ 6] [787049] +15:41:53 [ 12] [ 6] [154145] +15:41:53 [ 15] [ 4] [0320] +15:41:53 [ 18] [ 4] [6011] +15:41:53 [ 32] [ 6] [621354] +15:41:53 [ 35] [ 37] [6688990101786109=42051231610924500000] +15:41:53 [ 37] [ 12] [507904635773] +15:41:53 [ 38] [ 6] [757471] +15:41:53 [ 39] [ 2] [00] +15:41:53 [ 41] [ 8] [17000800] +15:41:53 [ 49] [ 3] [418] +15:41:53 [ 54] [ 20] [2002418C000812056328] +15:41:53 ============================================================================ +15:41:53 Calculate Source COMM Id = 0 +15:41:53 ============================================================================ +15:41:53 + + +waiting on router queue for slot.... +15:42:01 ============================================================================ +15:42:01 Slot Id : <376> +15:42:01 Transaction Type : REQUEST +15:42:01 Received From : +15:42:01 ============================================================================ +15:42:01 FNo. Len. Field Value +15:42:01 ============================================================================ +15:42:01 [ 1] [ 4] [0800] +15:42:01 [ 2] [ 5] [02531] +15:42:01 [ 3] [ 6] [579158] +15:42:01 [ 7] [ 10] [0320084201] +15:42:01 [ 11] [ 6] [807323] +15:42:01 [ 15] [ 10] [0320084201] +15:42:01 [ 37] [ 11] [57915807323] +15:42:01 [ 70] [ 3] [001] +15:42:01 ============================================================================ +15:42:01 + + +waiting on router queue for slot.... +15:42:01 ============================================================================ +15:42:01 Slot Id : <376> +15:42:01 Transaction Type : RESPONSE +15:42:01 Received From : +15:42:01 ============================================================================ +15:42:01 FNo. Len. Field Value +15:42:01 ============================================================================ +15:42:01 [ 1] [ 4] [0810] +15:42:01 [ 7] [ 10] [0320084201] +15:42:01 [ 11] [ 6] [807323] +15:42:01 [ 15] [ 4] [0320] +15:42:01 [ 37] [ 12] [57915807323] +15:42:01 [ 39] [ 2] [00] +15:42:01 [ 70] [ 3] [001] +15:42:01 ============================================================================ +15:42:01 Sending to : +15:42:01 ============================================================================ +15:42:01 + + +waiting on router queue for slot.... +15:42:07 ============================================================================ +15:42:07 Slot Id : <383> +15:42:07 Transaction Type : REQUEST +15:42:07 Received From : +15:42:07 ============================================================================ +15:42:07 FNo. Len. Field Value +15:42:07 ============================================================================ +15:42:07 [ 1] [ 4] [0800] +15:42:07 [ 7] [ 10] [0320084114] +15:42:07 [ 11] [ 6] [157072] +15:42:07 [ 70] [ 3] [301] +15:42:07 ============================================================================ +15:42:07 + + +waiting on router queue for slot.... +15:42:07 Sending to : +15:42:07 ============================================================================ +15:42:07 ============================================================================ +15:42:07 Slot Id : <383> +15:42:07 Transaction Type : RESPONSE +15:42:07 Received From : +15:42:07 ============================================================================ +15:42:07 FNo. Len. Field Value +15:42:07 ============================================================================ +15:42:07 [ 1] [ 4] [0810] +15:42:07 [ 7] [ 10] [0320084114] +15:42:07 [ 11] [ 6] [157072] +15:42:07 [ 39] [ 2] [00] +15:42:07 [ 70] [ 3] [301] +15:42:07 ============================================================================ +15:42:07 Calculate Source COMM Id = 2 +15:42:07 ============================================================================ +15:42:07 + + +waiting on router queue for slot.... +15:42:18 ============================================================================ +15:42:18 Slot Id : <410> +15:42:18 Transaction Type : REQUEST +15:42:18 Received From : +15:42:18 ============================================================================ +15:42:18 FNo. Len. Field Value +15:42:18 ============================================================================ +15:42:18 [ 1] [ 4] [0800] +15:42:18 [ 7] [ 10] [0320084125] +15:42:18 [ 11] [ 6] [157073] +15:42:18 [ 70] [ 3] [301] +15:42:18 ============================================================================ +15:42:18 + + +waiting on router queue for slot.... +15:42:18 Sending to : +15:42:18 ============================================================================ +15:42:18 ============================================================================ +15:42:18 Slot Id : <410> +15:42:18 Transaction Type : RESPONSE +15:42:18 Received From : +15:42:18 ============================================================================ +15:42:18 FNo. Len. Field Value +15:42:18 ============================================================================ +15:42:18 [ 1] [ 4] [0810] +15:42:18 [ 7] [ 10] [0320084125] +15:42:18 [ 11] [ 6] [157073] +15:42:18 [ 39] [ 2] [00] +15:42:18 [ 70] [ 3] [301] +15:42:18 ============================================================================ +15:42:18 Calculate Source COMM Id = 2 +15:42:18 ============================================================================ +15:42:18 + + +waiting on router queue for slot.... +15:42:19 ============================================================================ +15:42:19 Slot Id : <400> +15:42:19 Transaction Type : REQUEST +15:42:19 Received From : +15:42:19 ============================================================================ +15:42:19 FNo. Len. Field Value +15:42:19 ============================================================================ +15:42:19 [ 1] [ 4] [0200] +15:42:19 [ 2] [ 16] [1808930800015711] +15:42:19 [ 3] [ 6] [301000] +15:42:19 [ 4] [ 12] [000000000000] +15:42:19 [ 7] [ 10] [0320154214] +15:42:19 [ 11] [ 6] [787160] +15:42:19 [ 12] [ 6] [154214] +15:42:19 [ 13] [ 4] [0320] +15:42:19 [ 15] [ 4] [0320] +15:42:19 [ 18] [ 4] [6011] +15:42:19 [ 22] [ 3] [900] +15:42:19 [ 25] [ 2] [02] +15:42:19 [ 28] [ 9] [D00000000] +15:42:19 [ 32] [ 6] [621354] +15:42:19 [ 35] [ 27] [1808930800015711=1803500797] +15:42:19 [ 37] [ 12] [507903032262] +15:42:19 [ 41] [ 8] [12002600] +15:42:19 [ 42] [ 15] [NATIVE ] +15:42:19 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +15:42:19 [ 49] [ 3] [418] +15:42:19 [ 52] [ 16] [E49A9C1484B829FC] +15:42:19 ============================================================================ +15:42:19 + + +waiting on router queue for slot.... +15:42:19 Sending to : +15:42:19 ============================================================================ +15:42:19 Sending to : +15:42:19 ============================================================================ +15:42:19 ============================================================================ +15:42:19 Slot Id : <400> +15:42:19 Transaction Type : REQUEST +15:42:19 Received From : +15:42:19 ============================================================================ +15:42:19 FNo. Len. Field Value +15:42:19 ============================================================================ +15:42:19 [ 1] [ 4] [0200] +15:42:19 [ 2] [ 16] [1808930800015711] +15:42:19 [ 3] [ 6] [301000] +15:42:19 [ 4] [ 12] [000000000000] +15:42:19 [ 7] [ 10] [0320154214] +15:42:19 [ 11] [ 6] [787160] +15:42:19 [ 12] [ 6] [154214] +15:42:19 [ 13] [ 4] [0320] +15:42:19 [ 15] [ 4] [0320] +15:42:19 [ 18] [ 4] [6011] +15:42:19 [ 22] [ 3] [900] +15:42:19 [ 25] [ 2] [02] +15:42:19 [ 28] [ 9] [D00000000] +15:42:19 [ 32] [ 6] [621354] +15:42:19 [ 35] [ 27] [1808930800015711=1803500797] +15:42:19 [ 37] [ 12] [507903032262] +15:42:19 [ 41] [ 8] [12002600] +15:42:19 [ 42] [ 15] [NATIVE ] +15:42:19 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +15:42:19 [ 49] [ 3] [418] +15:42:19 [ 52] [ 16] [E49A9C1484B829FC] +15:42:19 ============================================================================ +15:42:19 + + +waiting on router queue for slot.... +15:42:19 Sending to : +15:42:19 ============================================================================ +15:42:20 ============================================================================ +15:42:20 Slot Id : <400> +15:42:20 Transaction Type : REQUEST +15:42:20 Received From : +15:42:20 ============================================================================ +15:42:20 FNo. Len. Field Value +15:42:20 ============================================================================ +15:42:20 [ 1] [ 4] [0200] +15:42:20 [ 2] [ 16] [1808930800015711] +15:42:20 [ 3] [ 6] [301000] +15:42:20 [ 4] [ 12] [000000000000] +15:42:20 [ 7] [ 10] [0320154214] +15:42:20 [ 11] [ 6] [787160] +15:42:20 [ 12] [ 6] [154214] +15:42:20 [ 13] [ 4] [0320] +15:42:20 [ 15] [ 4] [0320] +15:42:20 [ 18] [ 4] [6011] +15:42:20 [ 22] [ 3] [900] +15:42:20 [ 25] [ 2] [02] +15:42:20 [ 28] [ 9] [D00000000] +15:42:20 [ 32] [ 6] [621354] +15:42:20 [ 35] [ 27] [1808930800015711=1803500797] +15:42:20 [ 37] [ 12] [507903032262] +15:42:20 [ 41] [ 8] [12002600] +15:42:20 [ 42] [ 15] [NATIVE ] +15:42:20 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +15:42:20 [ 49] [ 3] [418] +15:42:20 [ 52] [ 16] [27224AA84DF4E2B6] +15:42:20 ============================================================================ +15:42:20 + + +waiting on router queue for slot.... +15:42:20 Sending to : <2> +15:42:20 ============================================================================ +15:42:21 ============================================================================ +15:42:21 Slot Id : <395> +15:42:21 Transaction Type : REQUEST +15:42:21 Received From : +15:42:21 ============================================================================ +15:42:21 FNo. Len. Field Value +15:42:21 ============================================================================ +15:42:21 [ 1] [ 4] [0200] +15:42:21 [ 2] [ 16] [6213545000638837] +15:42:21 [ 3] [ 6] [011000] +15:42:21 [ 4] [ 12] [000020000000] +15:42:21 [ 7] [ 10] [0320084127] +15:42:21 [ 11] [ 6] [270102] +15:42:21 [ 12] [ 6] [154127] +15:42:21 [ 13] [ 4] [0320] +15:42:21 [ 14] [ 4] [4912] +15:42:21 [ 15] [ 4] [0320] +15:42:21 [ 18] [ 4] [6011] +15:42:21 [ 19] [ 3] [418] +15:42:21 [ 22] [ 3] [021] +15:42:21 [ 25] [ 2] [01] +15:42:21 [ 28] [ 9] [D00002000] +15:42:21 [ 32] [ 6] [180893] +15:42:21 [ 35] [ 32] [6213545000638837=491212013883168] +15:42:21 [ 37] [ 12] [507908270102] +15:42:21 [ 41] [ 8] [0243VTKS] +15:42:21 [ 42] [ 15] [999999 ] +15:42:21 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:42:21 [ 49] [ 3] [418] +15:42:21 [ 52] [ 16] [07C0E3AC74121BDF] +15:42:21 ============================================================================ +15:42:21 + + +waiting on router queue for slot.... +15:42:21 Sending to : +15:42:21 ============================================================================ +15:42:21 Sending to : +15:42:21 ============================================================================ +15:42:21 ============================================================================ +15:42:21 Slot Id : <395> +15:42:21 Transaction Type : REQUEST +15:42:21 Received From : +15:42:21 ============================================================================ +15:42:21 FNo. Len. Field Value +15:42:21 ============================================================================ +15:42:21 [ 1] [ 4] [0200] +15:42:21 [ 2] [ 16] [6213545000638837] +15:42:21 [ 3] [ 6] [011000] +15:42:21 [ 4] [ 12] [000020000000] +15:42:21 [ 7] [ 10] [0320084127] +15:42:21 [ 11] [ 6] [270102] +15:42:21 [ 12] [ 6] [154127] +15:42:21 [ 13] [ 4] [0320] +15:42:21 [ 14] [ 4] [4912] +15:42:21 [ 15] [ 4] [0320] +15:42:21 [ 18] [ 4] [6011] +15:42:21 [ 19] [ 3] [418] +15:42:21 [ 22] [ 3] [021] +15:42:21 [ 25] [ 2] [01] +15:42:21 [ 28] [ 9] [D00002000] +15:42:21 [ 32] [ 6] [180893] +15:42:21 [ 35] [ 32] [6213545000638837=491212013883168] +15:42:21 [ 37] [ 12] [507908270102] +15:42:21 [ 41] [ 8] [0243VTKS] +15:42:21 [ 42] [ 15] [999999 ] +15:42:21 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:42:21 [ 49] [ 3] [418] +15:42:21 [ 52] [ 16] [07C0E3AC74121BDF] +15:42:21 ============================================================================ +15:42:21 + + +waiting on router queue for slot.... +15:42:21 Sending to : +15:42:21 ============================================================================ +15:42:21 ============================================================================ +15:42:21 Slot Id : <395> +15:42:21 Transaction Type : REQUEST +15:42:21 Received From : +15:42:21 ============================================================================ +15:42:21 FNo. Len. Field Value +15:42:21 ============================================================================ +15:42:21 [ 1] [ 4] [0200] +15:42:21 [ 2] [ 16] [6213545000638837] +15:42:21 [ 3] [ 6] [011000] +15:42:21 [ 4] [ 12] [000020000000] +15:42:21 [ 7] [ 10] [0320084127] +15:42:21 [ 11] [ 6] [270102] +15:42:21 [ 12] [ 6] [154127] +15:42:21 [ 13] [ 4] [0320] +15:42:21 [ 14] [ 4] [4912] +15:42:21 [ 15] [ 4] [0320] +15:42:21 [ 18] [ 4] [6011] +15:42:21 [ 19] [ 3] [418] +15:42:21 [ 22] [ 3] [021] +15:42:21 [ 25] [ 2] [01] +15:42:21 [ 28] [ 9] [D00002000] +15:42:21 [ 32] [ 6] [180893] +15:42:21 [ 35] [ 32] [6213545000638837=491212013883168] +15:42:21 [ 37] [ 12] [507908270102] +15:42:21 [ 41] [ 8] [0243VTKS] +15:42:21 [ 42] [ 15] [999999 ] +15:42:21 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:42:21 [ 49] [ 3] [418] +15:42:21 [ 52] [ 16] [CA9BA147011723CE] +15:42:21 ============================================================================ +15:42:21 + + +waiting on router queue for slot.... +15:42:21 Sending to : <0> +15:42:21 ============================================================================ +15:42:22 ============================================================================ +15:42:22 Slot Id : <400> +15:42:22 Transaction Type : RESPONSE +15:42:22 Received From : +15:42:22 ============================================================================ +15:42:22 FNo. Len. Field Value +15:42:22 ============================================================================ +15:42:22 [ 1] [ 4] [0210] +15:42:22 [ 2] [ 16] [1808930800015711] +15:42:22 [ 3] [ 6] [301000] +15:42:22 [ 7] [ 10] [0320154214] +15:42:22 [ 11] [ 6] [787160] +15:42:22 [ 12] [ 6] [154214] +15:42:22 [ 13] [ 4] [0320] +15:42:22 [ 14] [ 4] [1803] +15:42:22 [ 19] [ 3] [418] +15:42:22 [ 32] [ 6] [621354] +15:42:22 [ 37] [ 12] [507903032262] +15:42:22 [ 38] [ 6] [787160] +15:42:22 [ 39] [ 2] [00] +15:42:22 [ 41] [ 8] [12002600] +15:42:22 [ 49] [ 3] [418] +15:42:22 [ 52] [ 16] [27224AA84DF4E2B6] +15:42:22 [ 54] [ 20] [1002418C000233343400] +15:42:22 ============================================================================ +15:42:22 Sending to : +15:42:22 ============================================================================ +15:42:22 + + +waiting on router queue for slot.... +15:42:22 ============================================================================ +15:42:22 Slot Id : <395> +15:42:22 Transaction Type : RESPONSE +15:42:22 Received From : +15:42:22 ============================================================================ +15:42:22 FNo. Len. Field Value +15:42:22 ============================================================================ +15:42:22 [ 1] [ 4] [0210] +15:42:22 [ 2] [ 16] [6213545000638837] +15:42:22 [ 3] [ 6] [011000] +15:42:22 [ 4] [ 12] [000020000000] +15:42:22 [ 7] [ 10] [0320084127] +15:42:22 [ 11] [ 6] [270102] +15:42:22 [ 12] [ 6] [154127] +15:42:22 [ 13] [ 4] [0320] +15:42:22 [ 15] [ 4] [0320] +15:42:22 [ 18] [ 4] [6011] +15:42:22 [ 19] [ 3] [418] +15:42:22 [ 32] [ 6] [180893] +15:42:22 [ 35] [ 32] [6213545000638837=491212013883168] +15:42:22 [ 37] [ 12] [507908270102] +15:42:22 [ 38] [ 6] [821859] +15:42:22 [ 39] [ 2] [00] +15:42:22 [ 41] [ 8] [0243VTKS] +15:42:22 [ 49] [ 3] [418] +15:42:22 [ 54] [ 40] [1001418C0000127424211002418C000012742421] +15:42:22 ============================================================================ +15:42:22 Sending to : +15:42:22 ============================================================================ +15:42:22 + + +waiting on router queue for slot.... +15:42:22 ============================================================================ +15:42:22 Slot Id : <393> +15:42:22 Transaction Type : REQUEST +15:42:22 Received From : +15:42:22 ============================================================================ +15:42:22 FNo. Len. Field Value +15:42:22 ============================================================================ +15:42:22 [ 1] [ 4] [0800] +15:42:22 [ 7] [ 10] [0320225411] +15:42:22 [ 11] [ 6] [155411] +15:42:22 [ 37] [ 12] [57915155411] +15:42:22 [ 70] [ 3] [301] +15:42:22 ============================================================================ +15:42:22 + + +waiting on router queue for slot.... +15:42:22 Sending to : +15:42:22 ============================================================================ +15:42:22 ============================================================================ +15:42:22 Slot Id : <393> +15:42:22 Transaction Type : RESPONSE +15:42:22 Received From : +15:42:22 ============================================================================ +15:42:22 FNo. Len. Field Value +15:42:22 ============================================================================ +15:42:22 [ 1] [ 4] [0810] +15:42:22 [ 7] [ 10] [0320225411] +15:42:22 [ 11] [ 6] [155411] +15:42:22 [ 37] [ 12] [579151554110] +15:42:22 [ 39] [ 2] [00] +15:42:22 [ 70] [ 3] [810] +15:42:22 ============================================================================ +15:42:22 Calculate Source COMM Id = 6 +15:42:22 ============================================================================ +15:42:22 + + +waiting on router queue for slot.... +15:42:23 ============================================================================ +15:42:23 Slot Id : <400> +15:42:23 Transaction Type : RESPONSE +15:42:23 Received From : +15:42:23 ============================================================================ +15:42:23 FNo. Len. Field Value +15:42:23 ============================================================================ +15:42:23 [ 1] [ 4] [0210] +15:42:23 [ 2] [ 16] [1808930800015711] +15:42:23 [ 3] [ 6] [301000] +15:42:23 [ 7] [ 10] [0320154214] +15:42:23 [ 11] [ 6] [787160] +15:42:23 [ 12] [ 6] [154214] +15:42:23 [ 13] [ 4] [0320] +15:42:23 [ 14] [ 4] [1803] +15:42:23 [ 19] [ 3] [418] +15:42:23 [ 32] [ 6] [621354] +15:42:23 [ 37] [ 12] [507903032262] +15:42:23 [ 38] [ 6] [787160] +15:42:23 [ 39] [ 2] [00] +15:42:23 [ 41] [ 8] [12002600] +15:42:23 [ 49] [ 3] [418] +15:42:23 [ 52] [ 16] [27224AA84DF4E2B6] +15:42:23 [ 54] [ 20] [1002418C000233343400] +15:42:23 ============================================================================ +15:42:23 Calculate Source COMM Id = 0 +15:42:23 ============================================================================ +15:42:23 + + +waiting on router queue for slot.... +15:42:25 ============================================================================ +15:42:25 Slot Id : <395> +15:42:25 Transaction Type : RESPONSE +15:42:25 Received From : +15:42:25 ============================================================================ +15:42:25 FNo. Len. Field Value +15:42:25 ============================================================================ +15:42:25 [ 1] [ 4] [0210] +15:42:25 [ 2] [ 16] [6213545000638837] +15:42:25 [ 3] [ 6] [011000] +15:42:25 [ 4] [ 12] [000020000000] +15:42:25 [ 7] [ 10] [0320084127] +15:42:25 [ 11] [ 6] [270102] +15:42:25 [ 12] [ 6] [154127] +15:42:25 [ 13] [ 4] [0320] +15:42:25 [ 15] [ 4] [0320] +15:42:25 [ 18] [ 4] [6011] +15:42:25 [ 19] [ 3] [418] +15:42:25 [ 32] [ 6] [180893] +15:42:25 [ 35] [ 32] [6213545000638837=491212013883168] +15:42:25 [ 37] [ 12] [507908270102] +15:42:25 [ 38] [ 6] [821859] +15:42:25 [ 39] [ 2] [00] +15:42:25 [ 41] [ 8] [0243VTKS] +15:42:25 [ 49] [ 3] [418] +15:42:25 [ 54] [ 40] [1001418C0000127424211002418C000012742421] +15:42:25 ============================================================================ +15:42:25 Calculate Source COMM Id = 2 +15:42:25 ============================================================================ +15:42:25 + + +waiting on router queue for slot.... +15:42:36 ============================================================================ +15:42:36 Slot Id : <397> +15:42:36 Transaction Type : REQUEST +15:42:36 Received From : +15:42:36 ============================================================================ +15:42:36 FNo. Len. Field Value +15:42:36 ============================================================================ +15:42:36 [ 1] [ 4] [0800] +15:42:36 [ 7] [ 10] [0320084143] +15:42:36 [ 11] [ 6] [157074] +15:42:36 [ 70] [ 3] [301] +15:42:36 ============================================================================ +15:42:36 + + +waiting on router queue for slot.... +15:42:36 Sending to : +15:42:36 ============================================================================ +15:42:36 ============================================================================ +15:42:36 Slot Id : <397> +15:42:36 Transaction Type : RESPONSE +15:42:36 Received From : +15:42:36 ============================================================================ +15:42:36 FNo. Len. Field Value +15:42:36 ============================================================================ +15:42:36 [ 1] [ 4] [0810] +15:42:36 [ 7] [ 10] [0320084143] +15:42:36 [ 11] [ 6] [157074] +15:42:36 [ 39] [ 2] [00] +15:42:36 [ 70] [ 3] [301] +15:42:36 ============================================================================ +15:42:36 Calculate Source COMM Id = 2 +15:42:36 ============================================================================ +15:42:36 + + +waiting on router queue for slot.... +15:42:40 ============================================================================ +15:42:40 Slot Id : <413> +15:42:40 Transaction Type : REQUEST +15:42:40 Received From : +15:42:40 ============================================================================ +15:42:40 FNo. Len. Field Value +15:42:40 ============================================================================ +15:42:40 [ 1] [ 4] [0200] +15:42:40 [ 2] [ 16] [1808930200034908] +15:42:40 [ 3] [ 6] [012000] +15:42:40 [ 4] [ 12] [000002000000] +15:42:40 [ 7] [ 10] [0320154235] +15:42:40 [ 11] [ 6] [787245] +15:42:40 [ 12] [ 6] [154235] +15:42:40 [ 13] [ 4] [0320] +15:42:40 [ 15] [ 4] [0320] +15:42:40 [ 18] [ 4] [6011] +15:42:40 [ 22] [ 3] [900] +15:42:40 [ 25] [ 2] [02] +15:42:40 [ 28] [ 9] [D00002000] +15:42:40 [ 32] [ 6] [621354] +15:42:40 [ 35] [ 27] [1808930200034908=1803500097] +15:42:40 [ 37] [ 12] [507905335218] +15:42:40 [ 41] [ 8] [05004700] +15:42:40 [ 42] [ 15] [NATIVE ] +15:42:40 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:42:40 [ 49] [ 3] [418] +15:42:40 [ 52] [ 16] [E1C230DD59F580DA] +15:42:40 ============================================================================ +15:42:40 + + +waiting on router queue for slot.... +15:42:40 Sending to : +15:42:40 ============================================================================ +15:42:40 Sending to : +15:42:40 ============================================================================ +15:42:40 ============================================================================ +15:42:40 Slot Id : <413> +15:42:40 Transaction Type : REQUEST +15:42:40 Received From : +15:42:40 ============================================================================ +15:42:40 FNo. Len. Field Value +15:42:40 ============================================================================ +15:42:40 [ 1] [ 4] [0200] +15:42:40 [ 2] [ 16] [1808930200034908] +15:42:40 [ 3] [ 6] [012000] +15:42:40 [ 4] [ 12] [000002000000] +15:42:40 [ 7] [ 10] [0320154235] +15:42:40 [ 11] [ 6] [787245] +15:42:40 [ 12] [ 6] [154235] +15:42:40 [ 13] [ 4] [0320] +15:42:40 [ 15] [ 4] [0320] +15:42:40 [ 18] [ 4] [6011] +15:42:40 [ 22] [ 3] [900] +15:42:40 [ 25] [ 2] [02] +15:42:40 [ 28] [ 9] [D00002000] +15:42:40 [ 32] [ 6] [621354] +15:42:40 [ 35] [ 27] [1808930200034908=1803500097] +15:42:40 [ 37] [ 12] [507905335218] +15:42:40 [ 41] [ 8] [05004700] +15:42:40 [ 42] [ 15] [NATIVE ] +15:42:40 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:42:40 [ 49] [ 3] [418] +15:42:40 [ 52] [ 16] [E1C230DD59F580DA] +15:42:40 ============================================================================ +15:42:40 + + +waiting on router queue for slot.... +15:42:40 Sending to : +15:42:40 ============================================================================ +15:42:40 ============================================================================ +15:42:40 Slot Id : <413> +15:42:40 Transaction Type : REQUEST +15:42:40 Received From : +15:42:40 ============================================================================ +15:42:40 FNo. Len. Field Value +15:42:40 ============================================================================ +15:42:40 [ 1] [ 4] [0200] +15:42:40 [ 2] [ 16] [1808930200034908] +15:42:40 [ 3] [ 6] [012000] +15:42:40 [ 4] [ 12] [000002000000] +15:42:40 [ 7] [ 10] [0320154235] +15:42:40 [ 11] [ 6] [787245] +15:42:40 [ 12] [ 6] [154235] +15:42:40 [ 13] [ 4] [0320] +15:42:40 [ 15] [ 4] [0320] +15:42:40 [ 18] [ 4] [6011] +15:42:40 [ 22] [ 3] [900] +15:42:40 [ 25] [ 2] [02] +15:42:40 [ 28] [ 9] [D00002000] +15:42:40 [ 32] [ 6] [621354] +15:42:40 [ 35] [ 27] [1808930200034908=1803500097] +15:42:40 [ 37] [ 12] [507905335218] +15:42:40 [ 41] [ 8] [05004700] +15:42:40 [ 42] [ 15] [NATIVE ] +15:42:40 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:42:40 [ 49] [ 3] [418] +15:42:40 [ 52] [ 16] [300309A170A224BB] +15:42:40 ============================================================================ +15:42:40 + + +waiting on router queue for slot.... +15:42:40 Sending to : <2> +15:42:40 ============================================================================ +15:42:41 ============================================================================ +15:42:41 Slot Id : <413> +15:42:41 Transaction Type : RESPONSE +15:42:41 Received From : +15:42:41 ============================================================================ +15:42:41 FNo. Len. Field Value +15:42:41 ============================================================================ +15:42:41 [ 1] [ 4] [0210] +15:42:41 [ 2] [ 16] [1808930200034908] +15:42:41 [ 3] [ 6] [012000] +15:42:41 [ 4] [ 12] [000002000000] +15:42:41 [ 7] [ 10] [0320154235] +15:42:41 [ 11] [ 6] [787245] +15:42:41 [ 12] [ 6] [154235] +15:42:41 [ 13] [ 4] [0320] +15:42:41 [ 18] [ 4] [6011] +15:42:41 [ 19] [ 3] [418] +15:42:41 [ 22] [ 3] [021] +15:42:41 [ 28] [ 9] [D00002000] +15:42:41 [ 32] [ 6] [621354] +15:42:41 [ 35] [ 27] [1808930200034908=1803500097] +15:42:41 [ 37] [ 12] [507905335218] +15:42:41 [ 39] [ 2] [42] +15:42:41 [ 41] [ 8] [05004700] +15:42:41 [ 49] [ 3] [418] +15:42:41 [ 52] [ 16] [300309A170A224BB] +15:42:41 ============================================================================ +15:42:41 Sending to : +15:42:41 ============================================================================ +15:42:41 + + +waiting on router queue for slot.... +15:42:42 ============================================================================ +15:42:42 Slot Id : <413> +15:42:42 Transaction Type : RESPONSE +15:42:42 Received From : +15:42:42 ============================================================================ +15:42:42 FNo. Len. Field Value +15:42:42 ============================================================================ +15:42:42 [ 1] [ 4] [0210] +15:42:42 [ 2] [ 16] [1808930200034908] +15:42:42 [ 3] [ 6] [012000] +15:42:42 [ 4] [ 12] [000002000000] +15:42:42 [ 7] [ 10] [0320154235] +15:42:42 [ 11] [ 6] [787245] +15:42:42 [ 12] [ 6] [154235] +15:42:42 [ 13] [ 4] [0320] +15:42:42 [ 18] [ 4] [6011] +15:42:42 [ 19] [ 3] [418] +15:42:42 [ 22] [ 3] [021] +15:42:42 [ 28] [ 9] [D00002000] +15:42:42 [ 32] [ 6] [621354] +15:42:42 [ 35] [ 27] [1808930200034908=1803500097] +15:42:42 [ 37] [ 12] [507905335218] +15:42:42 [ 39] [ 2] [42] +15:42:42 [ 41] [ 8] [05004700] +15:42:42 [ 49] [ 3] [418] +15:42:42 [ 52] [ 16] [300309A170A224BB] +15:42:42 ============================================================================ +15:42:42 Calculate Source COMM Id = 0 +15:42:42 ============================================================================ +15:42:42 + + +waiting on router queue for slot.... +15:42:51 ============================================================================ +15:42:51 Slot Id : <394> +15:42:51 Transaction Type : REQUEST +15:42:51 Received From : +15:42:51 ============================================================================ +15:42:51 FNo. Len. Field Value +15:42:51 ============================================================================ +15:42:51 [ 1] [ 4] [0200] +15:42:51 [ 2] [ 16] [1808930600022289] +15:42:51 [ 3] [ 6] [010000] +15:42:51 [ 4] [ 12] [000100000000] +15:42:51 [ 7] [ 10] [0320154246] +15:42:51 [ 11] [ 6] [787292] +15:42:51 [ 12] [ 6] [154246] +15:42:51 [ 13] [ 4] [0320] +15:42:51 [ 15] [ 4] [0320] +15:42:51 [ 18] [ 4] [6011] +15:42:51 [ 22] [ 3] [900] +15:42:51 [ 25] [ 2] [02] +15:42:51 [ 28] [ 9] [D00002000] +15:42:51 [ 32] [ 6] [621354] +15:42:51 [ 35] [ 27] [1808930600022289=1803500480] +15:42:51 [ 37] [ 12] [507904290702] +15:42:51 [ 41] [ 8] [03002800] +15:42:51 [ 42] [ 15] [NATIVE ] +15:42:51 [ 43] [ 40] [Nikkone Seno KaisonephomvLAO] +15:42:51 [ 49] [ 3] [418] +15:42:51 [ 52] [ 16] [47E70332D97EF3F3] +15:42:51 ============================================================================ +15:42:51 + + +waiting on router queue for slot.... +15:42:51 Sending to : +15:42:51 ============================================================================ +15:42:51 Sending to : +15:42:51 ============================================================================ +15:42:51 ============================================================================ +15:42:51 Slot Id : <394> +15:42:51 Transaction Type : REQUEST +15:42:51 Received From : +15:42:51 ============================================================================ +15:42:51 FNo. Len. Field Value +15:42:51 ============================================================================ +15:42:51 [ 1] [ 4] [0200] +15:42:51 [ 2] [ 16] [1808930600022289] +15:42:51 [ 3] [ 6] [010000] +15:42:51 [ 4] [ 12] [000100000000] +15:42:51 [ 7] [ 10] [0320154246] +15:42:51 [ 11] [ 6] [787292] +15:42:51 [ 12] [ 6] [154246] +15:42:51 [ 13] [ 4] [0320] +15:42:51 [ 15] [ 4] [0320] +15:42:51 [ 18] [ 4] [6011] +15:42:51 [ 22] [ 3] [900] +15:42:51 [ 25] [ 2] [02] +15:42:51 [ 28] [ 9] [D00002000] +15:42:51 [ 32] [ 6] [621354] +15:42:51 [ 35] [ 27] [1808930600022289=1803500480] +15:42:51 [ 37] [ 12] [507904290702] +15:42:51 [ 41] [ 8] [03002800] +15:42:51 [ 42] [ 15] [NATIVE ] +15:42:51 [ 43] [ 40] [Nikkone Seno KaisonephomvLAO] +15:42:51 [ 49] [ 3] [418] +15:42:51 [ 52] [ 16] [47E70332D97EF3F3] +15:42:51 ============================================================================ +15:42:51 + + +waiting on router queue for slot.... +15:42:51 Sending to : +15:42:51 ============================================================================ +15:42:52 ============================================================================ +15:42:52 Slot Id : <394> +15:42:52 Transaction Type : REQUEST +15:42:52 Received From : +15:42:52 ============================================================================ +15:42:52 FNo. Len. Field Value +15:42:52 ============================================================================ +15:42:52 [ 1] [ 4] [0200] +15:42:52 [ 2] [ 16] [1808930600022289] +15:42:52 [ 3] [ 6] [010000] +15:42:52 [ 4] [ 12] [000100000000] +15:42:52 [ 7] [ 10] [0320154246] +15:42:52 [ 11] [ 6] [787292] +15:42:52 [ 12] [ 6] [154246] +15:42:52 [ 13] [ 4] [0320] +15:42:52 [ 15] [ 4] [0320] +15:42:52 [ 18] [ 4] [6011] +15:42:52 [ 22] [ 3] [900] +15:42:52 [ 25] [ 2] [02] +15:42:52 [ 28] [ 9] [D00002000] +15:42:52 [ 32] [ 6] [621354] +15:42:52 [ 35] [ 27] [1808930600022289=1803500480] +15:42:52 [ 37] [ 12] [507904290702] +15:42:52 [ 41] [ 8] [03002800] +15:42:52 [ 42] [ 15] [NATIVE ] +15:42:52 [ 43] [ 40] [Nikkone Seno KaisonephomvLAO] +15:42:52 [ 49] [ 3] [418] +15:42:52 [ 52] [ 16] [782806FDF02062A5] +15:42:52 ============================================================================ +15:42:52 + + +waiting on router queue for slot.... +15:42:52 Sending to : <2> +15:42:52 ============================================================================ +15:42:52 ============================================================================ +15:42:52 Slot Id : <414> +15:42:52 Transaction Type : REQUEST +15:42:52 Received From : +15:42:52 ============================================================================ +15:42:52 FNo. Len. Field Value +15:42:52 ============================================================================ +15:42:52 [ 1] [ 4] [0800] +15:42:52 [ 7] [ 10] [0320084159] +15:42:52 [ 11] [ 6] [157075] +15:42:52 [ 70] [ 3] [301] +15:42:52 ============================================================================ +15:42:52 + + +waiting on router queue for slot.... +15:42:52 Sending to : +15:42:52 ============================================================================ +15:42:52 ============================================================================ +15:42:52 Slot Id : <414> +15:42:52 Transaction Type : RESPONSE +15:42:52 Received From : +15:42:52 ============================================================================ +15:42:52 FNo. Len. Field Value +15:42:52 ============================================================================ +15:42:52 [ 1] [ 4] [0810] +15:42:52 [ 7] [ 10] [0320084159] +15:42:52 [ 11] [ 6] [157075] +15:42:52 [ 39] [ 2] [00] +15:42:52 [ 70] [ 3] [301] +15:42:52 ============================================================================ +15:42:52 Calculate Source COMM Id = 2 +15:42:52 ============================================================================ +15:42:52 + + +waiting on router queue for slot.... +15:42:54 ============================================================================ +15:42:54 Slot Id : <349> +15:42:54 Transaction Type : REQUEST +15:42:54 Received From : +15:42:54 ============================================================================ +15:42:54 FNo. Len. Field Value +15:42:54 ============================================================================ +15:42:54 [ 1] [ 4] [0200] +15:42:54 [ 2] [ 16] [6688990103270300] +15:42:54 [ 3] [ 6] [012000] +15:42:54 [ 4] [ 12] [000020000000] +15:42:54 [ 7] [ 10] [0320154250] +15:42:54 [ 11] [ 6] [787307] +15:42:54 [ 12] [ 6] [154250] +15:42:54 [ 13] [ 4] [0320] +15:42:54 [ 15] [ 4] [0320] +15:42:54 [ 18] [ 4] [6011] +15:42:54 [ 22] [ 3] [900] +15:42:54 [ 25] [ 2] [02] +15:42:54 [ 28] [ 9] [D00002000] +15:42:54 [ 32] [ 6] [621354] +15:42:54 [ 35] [ 37] [6688990103270300=42121231030003500000] +15:42:54 [ 37] [ 12] [507903499526] +15:42:54 [ 41] [ 8] [06002200] +15:42:54 [ 42] [ 15] [NATIVE ] +15:42:54 [ 43] [ 40] [Beng Market Beng LAO] +15:42:54 [ 49] [ 3] [418] +15:42:54 [ 52] [ 16] [0394DA790C9A0F48] +15:42:54 ============================================================================ +15:42:54 + + +waiting on router queue for slot.... +15:42:54 Sending to : +15:42:54 ============================================================================ +15:42:54 Sending to : +15:42:54 ============================================================================ +15:42:55 ============================================================================ +15:42:55 Slot Id : <349> +15:42:55 Transaction Type : REQUEST +15:42:55 Received From : +15:42:55 ============================================================================ +15:42:55 FNo. Len. Field Value +15:42:55 ============================================================================ +15:42:55 [ 1] [ 4] [0200] +15:42:55 [ 2] [ 16] [6688990103270300] +15:42:55 [ 3] [ 6] [012000] +15:42:55 [ 4] [ 12] [000020000000] +15:42:55 [ 7] [ 10] [0320154250] +15:42:55 [ 11] [ 6] [787307] +15:42:55 [ 12] [ 6] [154250] +15:42:55 [ 13] [ 4] [0320] +15:42:55 [ 15] [ 4] [0320] +15:42:55 [ 18] [ 4] [6011] +15:42:55 [ 22] [ 3] [900] +15:42:55 [ 25] [ 2] [02] +15:42:55 [ 28] [ 9] [D00002000] +15:42:55 [ 32] [ 6] [621354] +15:42:55 [ 35] [ 37] [6688990103270300=42121231030003500000] +15:42:55 [ 37] [ 12] [507903499526] +15:42:55 [ 41] [ 8] [06002200] +15:42:55 [ 42] [ 15] [NATIVE ] +15:42:55 [ 43] [ 40] [Beng Market Beng LAO] +15:42:55 [ 49] [ 3] [418] +15:42:55 [ 52] [ 16] [0394DA790C9A0F48] +15:42:55 ============================================================================ +15:42:55 + + +waiting on router queue for slot.... +15:42:55 Sending to : +15:42:55 ============================================================================ +15:42:55 ============================================================================ +15:42:55 Slot Id : <349> +15:42:55 Transaction Type : REQUEST +15:42:55 Received From : +15:42:55 ============================================================================ +15:42:55 FNo. Len. Field Value +15:42:55 ============================================================================ +15:42:55 [ 1] [ 4] [0200] +15:42:55 [ 2] [ 16] [6688990103270300] +15:42:55 [ 3] [ 6] [012000] +15:42:55 [ 4] [ 12] [000020000000] +15:42:55 [ 7] [ 10] [0320154250] +15:42:55 [ 11] [ 6] [787307] +15:42:55 [ 12] [ 6] [154250] +15:42:55 [ 13] [ 4] [0320] +15:42:55 [ 15] [ 4] [0320] +15:42:55 [ 18] [ 4] [6011] +15:42:55 [ 22] [ 3] [900] +15:42:55 [ 25] [ 2] [02] +15:42:55 [ 28] [ 9] [D00002000] +15:42:55 [ 32] [ 6] [621354] +15:42:55 [ 35] [ 37] [6688990103270300=42121231030003500000] +15:42:55 [ 37] [ 12] [507903499526] +15:42:55 [ 41] [ 8] [06002200] +15:42:55 [ 42] [ 15] [NATIVE ] +15:42:55 [ 43] [ 40] [Beng Market Beng LAO] +15:42:55 [ 49] [ 3] [418] +15:42:55 [ 52] [ 16] [0E6E8A33F5FE9DDA] +15:42:55 ============================================================================ +15:42:55 + + +waiting on router queue for slot.... +15:42:55 Sending to : <4> +15:42:55 ============================================================================ +15:42:56 ============================================================================ +15:42:56 Slot Id : <349> +15:42:56 Transaction Type : RESPONSE +15:42:56 Received From : +15:42:56 ============================================================================ +15:42:56 FNo. Len. Field Value +15:42:56 ============================================================================ +15:42:56 [ 1] [ 4] [0210] +15:42:56 [ 2] [ 16] [6688990103270300] +15:42:56 [ 3] [ 6] [012000] +15:42:56 [ 4] [ 12] [000020000000] +15:42:56 [ 11] [ 6] [787307] +15:42:56 [ 12] [ 6] [154250] +15:42:56 [ 15] [ 4] [0320] +15:42:56 [ 18] [ 4] [6011] +15:42:56 [ 32] [ 6] [621354] +15:42:56 [ 35] [ 37] [6688990103270300=42121231030003500000] +15:42:56 [ 37] [ 12] [507903499526] +15:42:56 [ 38] [ 6] [347738] +15:42:56 [ 39] [ 2] [00] +15:42:56 [ 41] [ 8] [06002200] +15:42:56 [ 49] [ 3] [418] +15:42:56 [ 54] [ 20] [2002418C000310091984] +15:42:56 ============================================================================ +15:42:56 Sending to : +15:42:56 ============================================================================ +15:42:56 + + +waiting on router queue for slot.... +15:42:57 ============================================================================ +15:42:57 Slot Id : <394> +15:42:57 Transaction Type : RESPONSE +15:42:57 Received From : +15:42:57 ============================================================================ +15:42:57 FNo. Len. Field Value +15:42:57 ============================================================================ +15:42:57 [ 1] [ 4] [0210] +15:42:57 [ 2] [ 16] [1808930600022289] +15:42:57 [ 3] [ 6] [010000] +15:42:57 [ 4] [ 12] [000100000000] +15:42:57 [ 6] [ 12] [000100000000] +15:42:57 [ 7] [ 10] [0320154246] +15:42:57 [ 11] [ 6] [787292] +15:42:57 [ 12] [ 6] [154246] +15:42:57 [ 13] [ 4] [0320] +15:42:57 [ 18] [ 4] [6011] +15:42:57 [ 19] [ 3] [418] +15:42:57 [ 22] [ 3] [021] +15:42:57 [ 32] [ 6] [621354] +15:42:57 [ 35] [ 27] [1808930600022289=1803500480] +15:42:57 [ 37] [ 12] [507904290702] +15:42:57 [ 38] [ 6] [787292] +15:42:57 [ 39] [ 2] [00] +15:42:57 [ 41] [ 8] [03002800] +15:42:57 [ 49] [ 3] [418] +15:42:57 [ 52] [ 16] [782806FDF02062A5] +15:42:57 [ 54] [ 20] [1001418C000204345200] +15:42:57 ============================================================================ +15:42:57 Sending to : +15:42:57 ============================================================================ +15:42:57 + + +waiting on router queue for slot.... +15:42:57 ============================================================================ +15:42:57 Slot Id : <349> +15:42:57 Transaction Type : RESPONSE +15:42:57 Received From : +15:42:57 ============================================================================ +15:42:57 FNo. Len. Field Value +15:42:57 ============================================================================ +15:42:57 [ 1] [ 4] [0210] +15:42:57 [ 2] [ 16] [6688990103270300] +15:42:57 [ 3] [ 6] [012000] +15:42:57 [ 4] [ 12] [000020000000] +15:42:57 [ 11] [ 6] [787307] +15:42:57 [ 12] [ 6] [154250] +15:42:57 [ 15] [ 4] [0320] +15:42:57 [ 18] [ 4] [6011] +15:42:57 [ 32] [ 6] [621354] +15:42:57 [ 35] [ 37] [6688990103270300=42121231030003500000] +15:42:57 [ 37] [ 12] [507903499526] +15:42:57 [ 38] [ 6] [347738] +15:42:57 [ 39] [ 2] [00] +15:42:57 [ 41] [ 8] [06002200] +15:42:57 [ 49] [ 3] [418] +15:42:57 [ 54] [ 20] [2002418C000310091984] +15:42:57 ============================================================================ +15:42:57 Calculate Source COMM Id = 0 +15:42:57 ============================================================================ +15:42:57 + + +waiting on router queue for slot.... +15:42:59 ============================================================================ +15:42:59 Slot Id : <394> +15:42:59 Transaction Type : RESPONSE +15:42:59 Received From : +15:42:59 ============================================================================ +15:42:59 FNo. Len. Field Value +15:42:59 ============================================================================ +15:42:59 [ 1] [ 4] [0210] +15:42:59 [ 2] [ 16] [1808930600022289] +15:42:59 [ 3] [ 6] [010000] +15:42:59 [ 4] [ 12] [000100000000] +15:42:59 [ 6] [ 12] [000100000000] +15:42:59 [ 7] [ 10] [0320154246] +15:42:59 [ 11] [ 6] [787292] +15:42:59 [ 12] [ 6] [154246] +15:42:59 [ 13] [ 4] [0320] +15:42:59 [ 18] [ 4] [6011] +15:42:59 [ 19] [ 3] [418] +15:42:59 [ 22] [ 3] [021] +15:42:59 [ 32] [ 6] [621354] +15:42:59 [ 35] [ 27] [1808930600022289=1803500480] +15:42:59 [ 37] [ 12] [507904290702] +15:42:59 [ 38] [ 6] [787292] +15:42:59 [ 39] [ 2] [00] +15:42:59 [ 41] [ 8] [03002800] +15:42:59 [ 49] [ 3] [418] +15:42:59 [ 52] [ 16] [782806FDF02062A5] +15:42:59 [ 54] [ 20] [1001418C000204345200] +15:42:59 ============================================================================ +15:42:59 Calculate Source COMM Id = 0 +15:42:59 ============================================================================ +15:42:59 + + +waiting on router queue for slot.... +15:43:03 ============================================================================ +15:43:03 Slot Id : <399> +15:43:03 Transaction Type : REQUEST +15:43:03 Received From : +15:43:03 ============================================================================ +15:43:03 FNo. Len. Field Value +15:43:03 ============================================================================ +15:43:03 [ 1] [ 4] [0800] +15:43:03 [ 2] [ 5] [02531] +15:43:03 [ 3] [ 6] [579158] +15:43:03 [ 7] [ 10] [0320084303] +15:43:03 [ 11] [ 6] [807324] +15:43:03 [ 15] [ 10] [0320084303] +15:43:03 [ 37] [ 11] [57915807324] +15:43:03 [ 70] [ 3] [001] +15:43:03 ============================================================================ +15:43:03 + + +waiting on router queue for slot.... +15:43:03 ============================================================================ +15:43:03 Slot Id : <399> +15:43:03 Transaction Type : RESPONSE +15:43:03 Received From : +15:43:03 ============================================================================ +15:43:03 FNo. Len. Field Value +15:43:03 ============================================================================ +15:43:03 [ 1] [ 4] [0810] +15:43:03 [ 7] [ 10] [0320084303] +15:43:03 [ 11] [ 6] [807324] +15:43:03 [ 15] [ 4] [0320] +15:43:03 [ 37] [ 12] [57915807324] +15:43:03 [ 39] [ 2] [00] +15:43:03 [ 70] [ 3] [001] +15:43:03 ============================================================================ +15:43:03 Sending to : +15:43:03 ============================================================================ +15:43:03 + + +waiting on router queue for slot.... +15:43:07 ============================================================================ +15:43:07 Slot Id : <418> +15:43:07 Transaction Type : REQUEST +15:43:07 Received From : +15:43:07 ============================================================================ +15:43:07 FNo. Len. Field Value +15:43:07 ============================================================================ +15:43:07 [ 1] [ 4] [0800] +15:43:07 [ 7] [ 10] [0320084214] +15:43:07 [ 11] [ 6] [157076] +15:43:07 [ 70] [ 3] [301] +15:43:07 ============================================================================ +15:43:07 + + +waiting on router queue for slot.... +15:43:07 Sending to : +15:43:07 ============================================================================ +15:43:07 ============================================================================ +15:43:07 Slot Id : <418> +15:43:07 Transaction Type : RESPONSE +15:43:07 Received From : +15:43:07 ============================================================================ +15:43:07 FNo. Len. Field Value +15:43:07 ============================================================================ +15:43:07 [ 1] [ 4] [0810] +15:43:07 [ 7] [ 10] [0320084214] +15:43:07 [ 11] [ 6] [157076] +15:43:07 [ 39] [ 2] [00] +15:43:07 [ 70] [ 3] [301] +15:43:07 ============================================================================ +15:43:07 Calculate Source COMM Id = 2 +15:43:07 ============================================================================ +15:43:07 + + +waiting on router queue for slot.... +15:43:18 ============================================================================ +15:43:18 Slot Id : <387> +15:43:18 Transaction Type : REQUEST +15:43:18 Received From : +15:43:18 ============================================================================ +15:43:18 FNo. Len. Field Value +15:43:18 ============================================================================ +15:43:18 [ 1] [ 4] [0800] +15:43:18 [ 7] [ 10] [0320084225] +15:43:18 [ 11] [ 6] [157077] +15:43:18 [ 70] [ 3] [301] +15:43:18 ============================================================================ +15:43:18 + + +waiting on router queue for slot.... +15:43:18 Sending to : +15:43:18 ============================================================================ +15:43:18 ============================================================================ +15:43:18 Slot Id : <387> +15:43:18 Transaction Type : RESPONSE +15:43:18 Received From : +15:43:18 ============================================================================ +15:43:18 FNo. Len. Field Value +15:43:18 ============================================================================ +15:43:18 [ 1] [ 4] [0810] +15:43:18 [ 7] [ 10] [0320084225] +15:43:18 [ 11] [ 6] [157077] +15:43:18 [ 39] [ 2] [00] +15:43:18 [ 70] [ 3] [301] +15:43:18 ============================================================================ +15:43:18 Calculate Source COMM Id = 2 +15:43:18 ============================================================================ +15:43:18 + + +waiting on router queue for slot.... +15:43:22 ============================================================================ +15:43:22 Slot Id : <368> +15:43:22 Transaction Type : REQUEST +15:43:22 Received From : +15:43:22 ============================================================================ +15:43:22 FNo. Len. Field Value +15:43:22 ============================================================================ +15:43:22 [ 1] [ 4] [0200] +15:43:22 [ 2] [ 16] [6213544001548590] +15:43:22 [ 3] [ 6] [011000] +15:43:22 [ 4] [ 12] [000008000000] +15:43:22 [ 7] [ 10] [0320084228] +15:43:22 [ 11] [ 6] [270106] +15:43:22 [ 12] [ 6] [154228] +15:43:22 [ 13] [ 4] [0320] +15:43:22 [ 14] [ 4] [4912] +15:43:22 [ 15] [ 4] [0320] +15:43:22 [ 18] [ 4] [6011] +15:43:22 [ 19] [ 3] [418] +15:43:22 [ 22] [ 3] [021] +15:43:22 [ 25] [ 2] [01] +15:43:22 [ 28] [ 9] [D00002000] +15:43:22 [ 32] [ 6] [180893] +15:43:22 [ 35] [ 32] [6213544001548590=491212014859898] +15:43:22 [ 37] [ 12] [507908270106] +15:43:22 [ 41] [ 8] [0102SAPA] +15:43:22 [ 42] [ 15] [999999 ] +15:43:22 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +15:43:22 [ 49] [ 3] [418] +15:43:22 [ 52] [ 16] [80883C49E7769FE2] +15:43:22 ============================================================================ +15:43:22 + + +waiting on router queue for slot.... +15:43:22 Sending to : +15:43:22 ============================================================================ +15:43:22 Sending to : +15:43:22 ============================================================================ +15:43:22 ============================================================================ +15:43:22 Slot Id : <368> +15:43:22 Transaction Type : REQUEST +15:43:22 Received From : +15:43:22 ============================================================================ +15:43:22 FNo. Len. Field Value +15:43:22 ============================================================================ +15:43:22 [ 1] [ 4] [0200] +15:43:22 [ 2] [ 16] [6213544001548590] +15:43:22 [ 3] [ 6] [011000] +15:43:22 [ 4] [ 12] [000008000000] +15:43:22 [ 7] [ 10] [0320084228] +15:43:22 [ 11] [ 6] [270106] +15:43:22 [ 12] [ 6] [154228] +15:43:22 [ 13] [ 4] [0320] +15:43:22 [ 14] [ 4] [4912] +15:43:22 [ 15] [ 4] [0320] +15:43:22 [ 18] [ 4] [6011] +15:43:22 [ 19] [ 3] [418] +15:43:22 [ 22] [ 3] [021] +15:43:22 [ 25] [ 2] [01] +15:43:22 [ 28] [ 9] [D00002000] +15:43:22 [ 32] [ 6] [180893] +15:43:22 [ 35] [ 32] [6213544001548590=491212014859898] +15:43:22 [ 37] [ 12] [507908270106] +15:43:22 [ 41] [ 8] [0102SAPA] +15:43:22 [ 42] [ 15] [999999 ] +15:43:22 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +15:43:22 [ 49] [ 3] [418] +15:43:22 [ 52] [ 16] [80883C49E7769FE2] +15:43:22 ============================================================================ +15:43:22 + + +waiting on router queue for slot.... +15:43:22 Sending to : +15:43:22 ============================================================================ +15:43:22 ============================================================================ +15:43:22 Slot Id : <368> +15:43:22 Transaction Type : REQUEST +15:43:22 Received From : +15:43:22 ============================================================================ +15:43:22 FNo. Len. Field Value +15:43:22 ============================================================================ +15:43:22 [ 1] [ 4] [0200] +15:43:22 [ 2] [ 16] [6213544001548590] +15:43:22 [ 3] [ 6] [011000] +15:43:22 [ 4] [ 12] [000008000000] +15:43:22 [ 7] [ 10] [0320084228] +15:43:22 [ 11] [ 6] [270106] +15:43:22 [ 12] [ 6] [154228] +15:43:22 [ 13] [ 4] [0320] +15:43:22 [ 14] [ 4] [4912] +15:43:22 [ 15] [ 4] [0320] +15:43:22 [ 18] [ 4] [6011] +15:43:22 [ 19] [ 3] [418] +15:43:22 [ 22] [ 3] [021] +15:43:22 [ 25] [ 2] [01] +15:43:22 [ 28] [ 9] [D00002000] +15:43:22 [ 32] [ 6] [180893] +15:43:22 [ 35] [ 32] [6213544001548590=491212014859898] +15:43:22 [ 37] [ 12] [507908270106] +15:43:22 [ 41] [ 8] [0102SAPA] +15:43:22 [ 42] [ 15] [999999 ] +15:43:22 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +15:43:22 [ 49] [ 3] [418] +15:43:22 [ 52] [ 16] [D98232760CB8CF80] +15:43:22 ============================================================================ +15:43:22 + + +waiting on router queue for slot.... +15:43:22 Sending to : <0> +15:43:22 ============================================================================ +15:43:23 ============================================================================ +15:43:23 Slot Id : <368> +15:43:23 Transaction Type : RESPONSE +15:43:23 Received From : +15:43:23 ============================================================================ +15:43:23 FNo. Len. Field Value +15:43:23 ============================================================================ +15:43:23 [ 1] [ 4] [0210] +15:43:23 [ 2] [ 16] [6213544001548590] +15:43:23 [ 3] [ 6] [011000] +15:43:23 [ 4] [ 12] [000008000000] +15:43:23 [ 7] [ 10] [0320084228] +15:43:23 [ 11] [ 6] [270106] +15:43:23 [ 12] [ 6] [154228] +15:43:23 [ 13] [ 4] [0320] +15:43:23 [ 15] [ 4] [0320] +15:43:23 [ 18] [ 4] [6011] +15:43:23 [ 19] [ 3] [418] +15:43:23 [ 32] [ 6] [180893] +15:43:23 [ 35] [ 32] [6213544001548590=491212014859898] +15:43:23 [ 37] [ 12] [507908270106] +15:43:23 [ 38] [ 6] [774031] +15:43:23 [ 39] [ 2] [00] +15:43:23 [ 41] [ 8] [0102SAPA] +15:43:23 [ 49] [ 3] [418] +15:43:23 [ 54] [ 40] [1001418C0001683705261002418C000168370526] +15:43:23 ============================================================================ +15:43:23 Sending to : +15:43:23 ============================================================================ +15:43:23 + + +waiting on router queue for slot.... +15:43:24 ============================================================================ +15:43:24 Slot Id : <368> +15:43:24 Transaction Type : RESPONSE +15:43:24 Received From : +15:43:24 ============================================================================ +15:43:24 FNo. Len. Field Value +15:43:24 ============================================================================ +15:43:24 [ 1] [ 4] [0210] +15:43:24 [ 2] [ 16] [6213544001548590] +15:43:24 [ 3] [ 6] [011000] +15:43:24 [ 4] [ 12] [000008000000] +15:43:24 [ 7] [ 10] [0320084228] +15:43:24 [ 11] [ 6] [270106] +15:43:24 [ 12] [ 6] [154228] +15:43:24 [ 13] [ 4] [0320] +15:43:24 [ 15] [ 4] [0320] +15:43:24 [ 18] [ 4] [6011] +15:43:24 [ 19] [ 3] [418] +15:43:24 [ 32] [ 6] [180893] +15:43:24 [ 35] [ 32] [6213544001548590=491212014859898] +15:43:24 [ 37] [ 12] [507908270106] +15:43:24 [ 38] [ 6] [774031] +15:43:24 [ 39] [ 2] [00] +15:43:24 [ 41] [ 8] [0102SAPA] +15:43:24 [ 49] [ 3] [418] +15:43:24 [ 54] [ 40] [1001418C0001683705261002418C000168370526] +15:43:24 ============================================================================ +15:43:24 Calculate Source COMM Id = 2 +15:43:24 ============================================================================ +15:43:24 + + +waiting on router queue for slot.... +15:43:27 ============================================================================ +15:43:27 Slot Id : <372> +15:43:27 Transaction Type : REQUEST +15:43:27 Received From : +15:43:27 ============================================================================ +15:43:27 FNo. Len. Field Value +15:43:27 ============================================================================ +15:43:27 [ 1] [ 4] [0800] +15:43:27 [ 7] [ 10] [0320225516] +15:43:27 [ 11] [ 6] [155516] +15:43:27 [ 37] [ 12] [57915155516] +15:43:27 [ 70] [ 3] [301] +15:43:27 ============================================================================ +15:43:27 + + +waiting on router queue for slot.... +15:43:27 Sending to : +15:43:27 ============================================================================ +15:43:27 ============================================================================ +15:43:27 Slot Id : <372> +15:43:27 Transaction Type : RESPONSE +15:43:27 Received From : +15:43:27 ============================================================================ +15:43:27 FNo. Len. Field Value +15:43:27 ============================================================================ +15:43:27 [ 1] [ 4] [0810] +15:43:27 [ 7] [ 10] [0320225516] +15:43:27 [ 11] [ 6] [155516] +15:43:27 [ 37] [ 12] [579151555160] +15:43:27 [ 39] [ 2] [00] +15:43:27 [ 70] [ 3] [810] +15:43:27 ============================================================================ +15:43:27 Calculate Source COMM Id = 6 +15:43:27 ============================================================================ +15:43:27 + + +waiting on router queue for slot.... +15:43:29 ============================================================================ +15:43:29 Slot Id : <419> +15:43:29 Transaction Type : REQUEST +15:43:29 Received From : +15:43:29 ============================================================================ +15:43:29 FNo. Len. Field Value +15:43:29 ============================================================================ +15:43:29 [ 1] [ 4] [0200] +15:43:29 [ 2] [ 16] [6688990105394108] +15:43:29 [ 3] [ 6] [011000] +15:43:29 [ 4] [ 12] [000080000000] +15:43:29 [ 7] [ 10] [0320154325] +15:43:29 [ 11] [ 6] [787448] +15:43:29 [ 12] [ 6] [154325] +15:43:29 [ 13] [ 4] [0320] +15:43:29 [ 15] [ 4] [0320] +15:43:29 [ 18] [ 4] [6011] +15:43:29 [ 22] [ 3] [900] +15:43:29 [ 25] [ 2] [02] +15:43:29 [ 28] [ 9] [D00002000] +15:43:29 [ 32] [ 6] [621354] +15:43:29 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:43:29 [ 37] [ 12] [507902797822] +15:43:29 [ 41] [ 8] [01007300] +15:43:29 [ 42] [ 15] [NATIVE ] +15:43:29 [ 43] [ 40] [Phonhong Unit Phonhong LAO] +15:43:29 [ 49] [ 3] [418] +15:43:29 [ 52] [ 16] [3DADA33D54D48C28] +15:43:29 ============================================================================ +15:43:29 + + +waiting on router queue for slot.... +15:43:29 Sending to : +15:43:29 ============================================================================ +15:43:29 Sending to : +15:43:29 ============================================================================ +15:43:30 ============================================================================ +15:43:30 Slot Id : <419> +15:43:30 Transaction Type : REQUEST +15:43:30 Received From : +15:43:30 ============================================================================ +15:43:30 FNo. Len. Field Value +15:43:30 ============================================================================ +15:43:30 [ 1] [ 4] [0200] +15:43:30 [ 2] [ 16] [6688990105394108] +15:43:30 [ 3] [ 6] [011000] +15:43:30 [ 4] [ 12] [000080000000] +15:43:30 [ 7] [ 10] [0320154325] +15:43:30 [ 11] [ 6] [787448] +15:43:30 [ 12] [ 6] [154325] +15:43:30 [ 13] [ 4] [0320] +15:43:30 [ 15] [ 4] [0320] +15:43:30 [ 18] [ 4] [6011] +15:43:30 [ 22] [ 3] [900] +15:43:30 [ 25] [ 2] [02] +15:43:30 [ 28] [ 9] [D00002000] +15:43:30 [ 32] [ 6] [621354] +15:43:30 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:43:30 [ 37] [ 12] [507902797822] +15:43:30 [ 41] [ 8] [01007300] +15:43:30 [ 42] [ 15] [NATIVE ] +15:43:30 [ 43] [ 40] [Phonhong Unit Phonhong LAO] +15:43:30 [ 49] [ 3] [418] +15:43:30 [ 52] [ 16] [3DADA33D54D48C28] +15:43:30 ============================================================================ +15:43:30 + + +waiting on router queue for slot.... +15:43:30 Sending to : +15:43:30 ============================================================================ +15:43:30 ============================================================================ +15:43:30 Slot Id : <419> +15:43:30 Transaction Type : REQUEST +15:43:30 Received From : +15:43:30 ============================================================================ +15:43:30 FNo. Len. Field Value +15:43:30 ============================================================================ +15:43:30 [ 1] [ 4] [0200] +15:43:30 [ 2] [ 16] [6688990105394108] +15:43:30 [ 3] [ 6] [011000] +15:43:30 [ 4] [ 12] [000080000000] +15:43:30 [ 7] [ 10] [0320154325] +15:43:30 [ 11] [ 6] [787448] +15:43:30 [ 12] [ 6] [154325] +15:43:30 [ 13] [ 4] [0320] +15:43:30 [ 15] [ 4] [0320] +15:43:30 [ 18] [ 4] [6011] +15:43:30 [ 22] [ 3] [900] +15:43:30 [ 25] [ 2] [02] +15:43:30 [ 28] [ 9] [D00002000] +15:43:30 [ 32] [ 6] [621354] +15:43:30 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:43:30 [ 37] [ 12] [507902797822] +15:43:30 [ 41] [ 8] [01007300] +15:43:30 [ 42] [ 15] [NATIVE ] +15:43:30 [ 43] [ 40] [Phonhong Unit Phonhong LAO] +15:43:30 [ 49] [ 3] [418] +15:43:30 [ 52] [ 16] [2C21C501CDA8C416] +15:43:30 ============================================================================ +15:43:30 + + +waiting on router queue for slot.... +15:43:30 Sending to : <4> +15:43:30 ============================================================================ +15:43:31 ============================================================================ +15:43:31 Slot Id : <419> +15:43:31 Transaction Type : RESPONSE +15:43:31 Received From : +15:43:31 ============================================================================ +15:43:31 FNo. Len. Field Value +15:43:31 ============================================================================ +15:43:31 [ 1] [ 4] [0210] +15:43:31 [ 2] [ 16] [6688990105394108] +15:43:31 [ 3] [ 6] [011000] +15:43:31 [ 4] [ 12] [000080000000] +15:43:31 [ 11] [ 6] [787448] +15:43:31 [ 12] [ 6] [154325] +15:43:31 [ 15] [ 4] [0320] +15:43:31 [ 18] [ 4] [6011] +15:43:31 [ 32] [ 6] [621354] +15:43:31 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:43:31 [ 37] [ 12] [507902797822] +15:43:31 [ 38] [ 6] [205298] +15:43:31 [ 39] [ 2] [00] +15:43:31 [ 41] [ 8] [01007300] +15:43:31 [ 49] [ 3] [418] +15:43:31 [ 54] [ 20] [1002418C000002913561] +15:43:31 ============================================================================ +15:43:31 Sending to : +15:43:31 ============================================================================ +15:43:31 + + +waiting on router queue for slot.... +15:43:32 ============================================================================ +15:43:32 Slot Id : <419> +15:43:32 Transaction Type : RESPONSE +15:43:32 Received From : +15:43:32 ============================================================================ +15:43:32 FNo. Len. Field Value +15:43:32 ============================================================================ +15:43:32 [ 1] [ 4] [0210] +15:43:32 [ 2] [ 16] [6688990105394108] +15:43:32 [ 3] [ 6] [011000] +15:43:32 [ 4] [ 12] [000080000000] +15:43:32 [ 11] [ 6] [787448] +15:43:32 [ 12] [ 6] [154325] +15:43:32 [ 15] [ 4] [0320] +15:43:32 [ 18] [ 4] [6011] +15:43:32 [ 32] [ 6] [621354] +15:43:32 [ 35] [ 37] [6688990105394108=43091231410842700000] +15:43:32 [ 37] [ 12] [507902797822] +15:43:32 [ 38] [ 6] [205298] +15:43:32 [ 39] [ 2] [00] +15:43:32 [ 41] [ 8] [01007300] +15:43:32 [ 49] [ 3] [418] +15:43:32 [ 54] [ 20] [1002418C000002913561] +15:43:32 ============================================================================ +15:43:32 Calculate Source COMM Id = 0 +15:43:32 ============================================================================ +15:43:32 + + +waiting on router queue for slot.... +15:43:33 ============================================================================ +15:43:33 Slot Id : <406> +15:43:33 Transaction Type : REQUEST +15:43:33 Received From : +15:43:33 ============================================================================ +15:43:33 FNo. Len. Field Value +15:43:33 ============================================================================ +15:43:33 [ 1] [ 4] [0200] +15:43:33 [ 2] [ 16] [6688990107214304] +15:43:33 [ 3] [ 6] [300000] +15:43:33 [ 4] [ 12] [000000000000] +15:43:33 [ 7] [ 10] [0320154328] +15:43:33 [ 11] [ 6] [787466] +15:43:33 [ 12] [ 6] [154328] +15:43:33 [ 13] [ 4] [0320] +15:43:33 [ 15] [ 4] [0320] +15:43:33 [ 18] [ 4] [6011] +15:43:33 [ 22] [ 3] [900] +15:43:33 [ 25] [ 2] [02] +15:43:33 [ 28] [ 9] [D00000000] +15:43:33 [ 32] [ 6] [621354] +15:43:33 [ 35] [ 37] [6688990107214304=44021231430456100000] +15:43:33 [ 37] [ 12] [507904070901] +15:43:33 [ 41] [ 8] [04003800] +15:43:33 [ 42] [ 15] [NATIVE ] +15:43:33 [ 43] [ 40] [Morchor Univer Pakse LAO] +15:43:33 [ 49] [ 3] [418] +15:43:33 [ 52] [ 16] [EA5D8E5DC9532160] +15:43:33 ============================================================================ +15:43:33 + + +waiting on router queue for slot.... +15:43:33 Sending to : +15:43:33 ============================================================================ +15:43:33 Sending to : +15:43:33 ============================================================================ +15:43:33 ============================================================================ +15:43:33 Slot Id : <406> +15:43:33 Transaction Type : REQUEST +15:43:33 Received From : +15:43:33 ============================================================================ +15:43:33 FNo. Len. Field Value +15:43:33 ============================================================================ +15:43:33 [ 1] [ 4] [0200] +15:43:33 [ 2] [ 16] [6688990107214304] +15:43:33 [ 3] [ 6] [300000] +15:43:33 [ 4] [ 12] [000000000000] +15:43:33 [ 7] [ 10] [0320154328] +15:43:33 [ 11] [ 6] [787466] +15:43:33 [ 12] [ 6] [154328] +15:43:33 [ 13] [ 4] [0320] +15:43:33 [ 15] [ 4] [0320] +15:43:33 [ 18] [ 4] [6011] +15:43:33 [ 22] [ 3] [900] +15:43:33 [ 25] [ 2] [02] +15:43:33 [ 28] [ 9] [D00000000] +15:43:33 [ 32] [ 6] [621354] +15:43:33 [ 35] [ 37] [6688990107214304=44021231430456100000] +15:43:33 [ 37] [ 12] [507904070901] +15:43:33 [ 41] [ 8] [04003800] +15:43:33 [ 42] [ 15] [NATIVE ] +15:43:33 [ 43] [ 40] [Morchor Univer Pakse LAO] +15:43:33 [ 49] [ 3] [418] +15:43:33 [ 52] [ 16] [EA5D8E5DC9532160] +15:43:33 ============================================================================ +15:43:33 + + +waiting on router queue for slot.... +15:43:33 Sending to : +15:43:33 ============================================================================ +15:43:33 ============================================================================ +15:43:33 Slot Id : <406> +15:43:33 Transaction Type : REQUEST +15:43:33 Received From : +15:43:33 ============================================================================ +15:43:33 FNo. Len. Field Value +15:43:33 ============================================================================ +15:43:33 [ 1] [ 4] [0200] +15:43:33 [ 2] [ 16] [6688990107214304] +15:43:33 [ 3] [ 6] [300000] +15:43:33 [ 4] [ 12] [000000000000] +15:43:33 [ 7] [ 10] [0320154328] +15:43:33 [ 11] [ 6] [787466] +15:43:33 [ 12] [ 6] [154328] +15:43:33 [ 13] [ 4] [0320] +15:43:33 [ 15] [ 4] [0320] +15:43:33 [ 18] [ 4] [6011] +15:43:33 [ 22] [ 3] [900] +15:43:33 [ 25] [ 2] [02] +15:43:33 [ 28] [ 9] [D00000000] +15:43:33 [ 32] [ 6] [621354] +15:43:33 [ 35] [ 37] [6688990107214304=44021231430456100000] +15:43:33 [ 37] [ 12] [507904070901] +15:43:33 [ 41] [ 8] [04003800] +15:43:33 [ 42] [ 15] [NATIVE ] +15:43:33 [ 43] [ 40] [Morchor Univer Pakse LAO] +15:43:33 [ 49] [ 3] [418] +15:43:33 [ 52] [ 16] [160F1C99F5AA3A16] +15:43:33 ============================================================================ +15:43:33 + + +waiting on router queue for slot.... +15:43:33 Sending to : <4> +15:43:33 ============================================================================ +15:43:34 ============================================================================ +15:43:34 Slot Id : <406> +15:43:34 Transaction Type : RESPONSE +15:43:34 Received From : +15:43:34 ============================================================================ +15:43:34 FNo. Len. Field Value +15:43:34 ============================================================================ +15:43:34 [ 1] [ 4] [0210] +15:43:34 [ 2] [ 16] [6688990107214304] +15:43:34 [ 3] [ 6] [300000] +15:43:34 [ 4] [ 12] [000000000000] +15:43:34 [ 11] [ 6] [787466] +15:43:34 [ 12] [ 6] [154328] +15:43:34 [ 15] [ 4] [0320] +15:43:34 [ 18] [ 4] [6011] +15:43:34 [ 32] [ 6] [621354] +15:43:34 [ 35] [ 37] [6688990107214304=44021231430456100000] +15:43:34 [ 37] [ 12] [507904070901] +15:43:34 [ 38] [ 6] [831664] +15:43:34 [ 39] [ 2] [00] +15:43:34 [ 41] [ 8] [04003800] +15:43:34 [ 49] [ 3] [418] +15:43:34 [ 54] [ 20] [0002418C000089525939] +15:43:34 ============================================================================ +15:43:34 Sending to : +15:43:34 ============================================================================ +15:43:34 + + +waiting on router queue for slot.... +15:43:36 ============================================================================ +15:43:36 Slot Id : <406> +15:43:36 Transaction Type : RESPONSE +15:43:36 Received From : +15:43:36 ============================================================================ +15:43:36 FNo. Len. Field Value +15:43:36 ============================================================================ +15:43:36 [ 1] [ 4] [0210] +15:43:36 [ 2] [ 16] [6688990107214304] +15:43:36 [ 3] [ 6] [300000] +15:43:36 [ 4] [ 12] [000000000000] +15:43:36 [ 11] [ 6] [787466] +15:43:36 [ 12] [ 6] [154328] +15:43:36 [ 15] [ 4] [0320] +15:43:36 [ 18] [ 4] [6011] +15:43:36 [ 32] [ 6] [621354] +15:43:36 [ 35] [ 37] [6688990107214304=44021231430456100000] +15:43:36 [ 37] [ 12] [507904070901] +15:43:36 [ 38] [ 6] [831664] +15:43:36 [ 39] [ 2] [00] +15:43:36 [ 41] [ 8] [04003800] +15:43:36 [ 49] [ 3] [418] +15:43:36 [ 54] [ 20] [0002418C000089525939] +15:43:36 ============================================================================ +15:43:36 Calculate Source COMM Id = 0 +15:43:36 ============================================================================ +15:43:36 + + +waiting on router queue for slot.... +15:43:40 ============================================================================ +15:43:40 Slot Id : <411> +15:43:40 Transaction Type : REQUEST +15:43:40 Received From : +15:43:40 ============================================================================ +15:43:40 FNo. Len. Field Value +15:43:40 ============================================================================ +15:43:40 [ 1] [ 4] [0800] +15:43:40 [ 7] [ 10] [0320084246] +15:43:40 [ 11] [ 6] [157078] +15:43:40 [ 70] [ 3] [301] +15:43:40 ============================================================================ +15:43:40 + + +waiting on router queue for slot.... +15:43:40 Sending to : +15:43:40 ============================================================================ +15:43:40 ============================================================================ +15:43:40 Slot Id : <411> +15:43:40 Transaction Type : RESPONSE +15:43:40 Received From : +15:43:40 ============================================================================ +15:43:40 FNo. Len. Field Value +15:43:40 ============================================================================ +15:43:40 [ 1] [ 4] [0810] +15:43:40 [ 7] [ 10] [0320084246] +15:43:40 [ 11] [ 6] [157078] +15:43:40 [ 39] [ 2] [00] +15:43:40 [ 70] [ 3] [301] +15:43:40 ============================================================================ +15:43:40 Calculate Source COMM Id = 2 +15:43:40 ============================================================================ +15:43:40 + + +waiting on router queue for slot.... +15:43:50 ============================================================================ +15:43:50 Slot Id : <380> +15:43:50 Transaction Type : REQUEST +15:43:50 Received From : +15:43:50 ============================================================================ +15:43:50 FNo. Len. Field Value +15:43:50 ============================================================================ +15:43:50 [ 1] [ 4] [0200] +15:43:50 [ 2] [ 16] [1808930200034908] +15:43:50 [ 3] [ 6] [012000] +15:43:50 [ 4] [ 12] [000002000000] +15:43:50 [ 7] [ 10] [0320154346] +15:43:50 [ 11] [ 6] [787539] +15:43:50 [ 12] [ 6] [154346] +15:43:50 [ 13] [ 4] [0320] +15:43:50 [ 15] [ 4] [0320] +15:43:50 [ 18] [ 4] [6011] +15:43:50 [ 22] [ 3] [900] +15:43:50 [ 25] [ 2] [02] +15:43:50 [ 28] [ 9] [D00002000] +15:43:50 [ 32] [ 6] [621354] +15:43:50 [ 35] [ 27] [1808930200034908=1803500097] +15:43:50 [ 37] [ 12] [507905335222] +15:43:50 [ 41] [ 8] [05004700] +15:43:50 [ 42] [ 15] [NATIVE ] +15:43:50 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:43:50 [ 49] [ 3] [418] +15:43:50 [ 52] [ 16] [E1C230DD59F580DA] +15:43:50 ============================================================================ +15:43:50 + + +waiting on router queue for slot.... +15:43:50 Sending to : +15:43:50 ============================================================================ +15:43:50 Sending to : +15:43:50 ============================================================================ +15:43:51 ============================================================================ +15:43:51 Slot Id : <380> +15:43:51 Transaction Type : REQUEST +15:43:51 Received From : +15:43:51 ============================================================================ +15:43:51 FNo. Len. Field Value +15:43:51 ============================================================================ +15:43:51 [ 1] [ 4] [0200] +15:43:51 [ 2] [ 16] [1808930200034908] +15:43:51 [ 3] [ 6] [012000] +15:43:51 [ 4] [ 12] [000002000000] +15:43:51 [ 7] [ 10] [0320154346] +15:43:51 [ 11] [ 6] [787539] +15:43:51 [ 12] [ 6] [154346] +15:43:51 [ 13] [ 4] [0320] +15:43:51 [ 15] [ 4] [0320] +15:43:51 [ 18] [ 4] [6011] +15:43:51 [ 22] [ 3] [900] +15:43:51 [ 25] [ 2] [02] +15:43:51 [ 28] [ 9] [D00002000] +15:43:51 [ 32] [ 6] [621354] +15:43:51 [ 35] [ 27] [1808930200034908=1803500097] +15:43:51 [ 37] [ 12] [507905335222] +15:43:51 [ 41] [ 8] [05004700] +15:43:51 [ 42] [ 15] [NATIVE ] +15:43:51 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:43:51 [ 49] [ 3] [418] +15:43:51 [ 52] [ 16] [E1C230DD59F580DA] +15:43:51 ============================================================================ +15:43:51 + + +waiting on router queue for slot.... +15:43:51 Sending to : +15:43:51 ============================================================================ +15:43:51 ============================================================================ +15:43:51 Slot Id : <380> +15:43:51 Transaction Type : REQUEST +15:43:51 Received From : +15:43:51 ============================================================================ +15:43:51 FNo. Len. Field Value +15:43:51 ============================================================================ +15:43:51 [ 1] [ 4] [0200] +15:43:51 [ 2] [ 16] [1808930200034908] +15:43:51 [ 3] [ 6] [012000] +15:43:51 [ 4] [ 12] [000002000000] +15:43:51 [ 7] [ 10] [0320154346] +15:43:51 [ 11] [ 6] [787539] +15:43:51 [ 12] [ 6] [154346] +15:43:51 [ 13] [ 4] [0320] +15:43:51 [ 15] [ 4] [0320] +15:43:51 [ 18] [ 4] [6011] +15:43:51 [ 22] [ 3] [900] +15:43:51 [ 25] [ 2] [02] +15:43:51 [ 28] [ 9] [D00002000] +15:43:51 [ 32] [ 6] [621354] +15:43:51 [ 35] [ 27] [1808930200034908=1803500097] +15:43:51 [ 37] [ 12] [507905335222] +15:43:51 [ 41] [ 8] [05004700] +15:43:51 [ 42] [ 15] [NATIVE ] +15:43:51 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:43:51 [ 49] [ 3] [418] +15:43:51 [ 52] [ 16] [300309A170A224BB] +15:43:51 ============================================================================ +15:43:51 + + +waiting on router queue for slot.... +15:43:51 Sending to : <2> +15:43:51 ============================================================================ +15:43:51 ============================================================================ +15:43:51 Slot Id : <380> +15:43:51 Transaction Type : RESPONSE +15:43:51 Received From : +15:43:51 ============================================================================ +15:43:51 FNo. Len. Field Value +15:43:51 ============================================================================ +15:43:51 [ 1] [ 4] [0210] +15:43:51 [ 2] [ 16] [1808930200034908] +15:43:51 [ 3] [ 6] [012000] +15:43:51 [ 4] [ 12] [000002000000] +15:43:51 [ 7] [ 10] [0320154346] +15:43:51 [ 11] [ 6] [787539] +15:43:51 [ 12] [ 6] [154346] +15:43:51 [ 13] [ 4] [0320] +15:43:51 [ 18] [ 4] [6011] +15:43:51 [ 19] [ 3] [418] +15:43:51 [ 22] [ 3] [021] +15:43:51 [ 28] [ 9] [D00002000] +15:43:51 [ 32] [ 6] [621354] +15:43:51 [ 35] [ 27] [1808930200034908=1803500097] +15:43:51 [ 37] [ 12] [507905335222] +15:43:51 [ 39] [ 2] [42] +15:43:51 [ 41] [ 8] [05004700] +15:43:51 [ 49] [ 3] [418] +15:43:51 [ 52] [ 16] [300309A170A224BB] +15:43:51 ============================================================================ +15:43:51 Sending to : +15:43:51 ============================================================================ +15:43:51 + + +waiting on router queue for slot.... +15:43:52 ============================================================================ +15:43:52 Slot Id : <380> +15:43:52 Transaction Type : RESPONSE +15:43:52 Received From : +15:43:52 ============================================================================ +15:43:52 FNo. Len. Field Value +15:43:52 ============================================================================ +15:43:52 [ 1] [ 4] [0210] +15:43:52 [ 2] [ 16] [1808930200034908] +15:43:52 [ 3] [ 6] [012000] +15:43:52 [ 4] [ 12] [000002000000] +15:43:52 [ 7] [ 10] [0320154346] +15:43:52 [ 11] [ 6] [787539] +15:43:52 [ 12] [ 6] [154346] +15:43:52 [ 13] [ 4] [0320] +15:43:52 [ 18] [ 4] [6011] +15:43:52 [ 19] [ 3] [418] +15:43:52 [ 22] [ 3] [021] +15:43:52 [ 28] [ 9] [D00002000] +15:43:52 [ 32] [ 6] [621354] +15:43:52 [ 35] [ 27] [1808930200034908=1803500097] +15:43:52 [ 37] [ 12] [507905335222] +15:43:52 [ 39] [ 2] [42] +15:43:52 [ 41] [ 8] [05004700] +15:43:52 [ 49] [ 3] [418] +15:43:52 [ 52] [ 16] [300309A170A224BB] +15:43:52 ============================================================================ +15:43:52 Calculate Source COMM Id = 0 +15:43:52 ============================================================================ +15:43:52 + + +waiting on router queue for slot.... +15:43:55 ============================================================================ +15:43:55 Slot Id : <407> +15:43:55 Transaction Type : REQUEST +15:43:55 Received From : +15:43:55 ============================================================================ +15:43:55 FNo. Len. Field Value +15:43:55 ============================================================================ +15:43:55 [ 1] [ 4] [0800] +15:43:55 [ 7] [ 10] [0320154342] +15:43:55 [ 11] [ 6] [014418] +15:43:55 [ 37] [ 12] [507915014418] +15:43:55 [ 70] [ 3] [ ] +15:43:55 ============================================================================ +15:43:55 + + +waiting on router queue for slot.... +15:43:55 Sending to : +15:43:55 ============================================================================ +15:43:55 ============================================================================ +15:43:55 Slot Id : <407> +15:43:55 Transaction Type : RESPONSE +15:43:55 Received From : +15:43:55 ============================================================================ +15:43:55 FNo. Len. Field Value +15:43:55 ============================================================================ +15:43:55 [ 1] [ 4] [0810] +15:43:55 [ 7] [ 10] [0320154342] +15:43:55 [ 11] [ 6] [014418] +15:43:55 [ 37] [ 12] [507915014418] +15:43:55 [ 39] [ 2] [91] +15:43:55 [ 70] [ 3] [ ] +15:43:55 ============================================================================ +15:43:55 Calculate Source COMM Id = 3 +15:43:55 ============================================================================ +15:43:55 + + +waiting on router queue for slot.... +15:44:05 ============================================================================ +15:44:05 Slot Id : <416> +15:44:05 Transaction Type : REQUEST +15:44:05 Received From : +15:44:05 ============================================================================ +15:44:05 FNo. Len. Field Value +15:44:05 ============================================================================ +15:44:05 [ 1] [ 4] [0800] +15:44:05 [ 2] [ 5] [02531] +15:44:05 [ 3] [ 6] [579158] +15:44:05 [ 7] [ 10] [0320084405] +15:44:05 [ 11] [ 6] [807325] +15:44:05 [ 15] [ 10] [0320084405] +15:44:05 [ 37] [ 11] [57915807325] +15:44:05 [ 70] [ 3] [001] +15:44:05 ============================================================================ +15:44:05 + + +waiting on router queue for slot.... +15:44:05 ============================================================================ +15:44:05 Slot Id : <416> +15:44:05 Transaction Type : RESPONSE +15:44:05 Received From : +15:44:05 ============================================================================ +15:44:05 FNo. Len. Field Value +15:44:05 ============================================================================ +15:44:05 [ 1] [ 4] [0810] +15:44:05 [ 7] [ 10] [0320084405] +15:44:05 [ 11] [ 6] [807325] +15:44:05 [ 15] [ 4] [0320] +15:44:05 [ 37] [ 12] [57915807325] +15:44:05 [ 39] [ 2] [00] +15:44:05 [ 70] [ 3] [001] +15:44:05 ============================================================================ +15:44:05 Sending to : +15:44:05 ============================================================================ +15:44:05 + + +waiting on router queue for slot.... +15:44:06 ============================================================================ +15:44:06 Slot Id : <384> +15:44:06 Transaction Type : REQUEST +15:44:06 Received From : +15:44:06 ============================================================================ +15:44:06 FNo. Len. Field Value +15:44:06 ============================================================================ +15:44:06 [ 1] [ 4] [0800] +15:44:06 [ 7] [ 10] [0320084313] +15:44:06 [ 11] [ 6] [157079] +15:44:06 [ 70] [ 3] [301] +15:44:06 ============================================================================ +15:44:06 + + +waiting on router queue for slot.... +15:44:06 Sending to : +15:44:06 ============================================================================ +15:44:06 ============================================================================ +15:44:06 Slot Id : <384> +15:44:06 Transaction Type : RESPONSE +15:44:06 Received From : +15:44:06 ============================================================================ +15:44:06 FNo. Len. Field Value +15:44:06 ============================================================================ +15:44:06 [ 1] [ 4] [0810] +15:44:06 [ 7] [ 10] [0320084313] +15:44:06 [ 11] [ 6] [157079] +15:44:06 [ 39] [ 2] [00] +15:44:06 [ 70] [ 3] [301] +15:44:06 ============================================================================ +15:44:06 Calculate Source COMM Id = 2 +15:44:06 ============================================================================ +15:44:06 + + +waiting on router queue for slot.... +15:44:21 ============================================================================ +15:44:21 Slot Id : <401> +15:44:21 Transaction Type : REQUEST +15:44:21 Received From : +15:44:21 ============================================================================ +15:44:21 FNo. Len. Field Value +15:44:21 ============================================================================ +15:44:21 [ 1] [ 4] [0800] +15:44:21 [ 7] [ 10] [0320084328] +15:44:21 [ 11] [ 6] [157080] +15:44:21 [ 70] [ 3] [301] +15:44:21 ============================================================================ +15:44:21 + + +waiting on router queue for slot.... +15:44:21 Sending to : +15:44:21 ============================================================================ +15:44:21 ============================================================================ +15:44:21 Slot Id : <401> +15:44:21 Transaction Type : RESPONSE +15:44:21 Received From : +15:44:21 ============================================================================ +15:44:21 FNo. Len. Field Value +15:44:21 ============================================================================ +15:44:21 [ 1] [ 4] [0810] +15:44:21 [ 7] [ 10] [0320084328] +15:44:21 [ 11] [ 6] [157080] +15:44:21 [ 39] [ 2] [00] +15:44:21 [ 70] [ 3] [301] +15:44:21 ============================================================================ +15:44:21 Calculate Source COMM Id = 2 +15:44:21 ============================================================================ +15:44:21 + + +waiting on router queue for slot.... +15:44:22 ============================================================================ +15:44:22 Slot Id : <381> +15:44:22 Transaction Type : REQUEST +15:44:22 Received From : +15:44:22 ============================================================================ +15:44:22 FNo. Len. Field Value +15:44:22 ============================================================================ +15:44:22 [ 1] [ 4] [0200] +15:44:22 [ 2] [ 16] [6688990101791703] +15:44:22 [ 3] [ 6] [010000] +15:44:22 [ 4] [ 12] [000100000000] +15:44:22 [ 7] [ 10] [0320154417] +15:44:22 [ 11] [ 6] [787645] +15:44:22 [ 12] [ 6] [154417] +15:44:22 [ 13] [ 4] [0320] +15:44:22 [ 15] [ 4] [0320] +15:44:22 [ 18] [ 4] [6011] +15:44:22 [ 22] [ 3] [900] +15:44:22 [ 25] [ 2] [02] +15:44:22 [ 28] [ 9] [D00002000] +15:44:22 [ 32] [ 6] [621354] +15:44:22 [ 35] [ 37] [6688990101791703=42051231170304100000] +15:44:22 [ 37] [ 12] [507904635778] +15:44:22 [ 41] [ 8] [17000800] +15:44:22 [ 42] [ 15] [NATIVE ] +15:44:22 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:44:22 [ 49] [ 3] [418] +15:44:22 [ 52] [ 16] [54ACDF45D55A3ADC] +15:44:22 ============================================================================ +15:44:22 + + +waiting on router queue for slot.... +15:44:22 Sending to : +15:44:22 ============================================================================ +15:44:22 Sending to : +15:44:22 ============================================================================ +15:44:22 ============================================================================ +15:44:22 Slot Id : <381> +15:44:22 Transaction Type : REQUEST +15:44:22 Received From : +15:44:22 ============================================================================ +15:44:22 FNo. Len. Field Value +15:44:22 ============================================================================ +15:44:22 [ 1] [ 4] [0200] +15:44:22 [ 2] [ 16] [6688990101791703] +15:44:22 [ 3] [ 6] [010000] +15:44:22 [ 4] [ 12] [000100000000] +15:44:22 [ 7] [ 10] [0320154417] +15:44:22 [ 11] [ 6] [787645] +15:44:22 [ 12] [ 6] [154417] +15:44:22 [ 13] [ 4] [0320] +15:44:22 [ 15] [ 4] [0320] +15:44:22 [ 18] [ 4] [6011] +15:44:22 [ 22] [ 3] [900] +15:44:22 [ 25] [ 2] [02] +15:44:22 [ 28] [ 9] [D00002000] +15:44:22 [ 32] [ 6] [621354] +15:44:22 [ 35] [ 37] [6688990101791703=42051231170304100000] +15:44:22 [ 37] [ 12] [507904635778] +15:44:22 [ 41] [ 8] [17000800] +15:44:22 [ 42] [ 15] [NATIVE ] +15:44:22 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:44:22 [ 49] [ 3] [418] +15:44:22 [ 52] [ 16] [54ACDF45D55A3ADC] +15:44:22 ============================================================================ +15:44:22 + + +waiting on router queue for slot.... +15:44:22 Sending to : +15:44:22 ============================================================================ +15:44:22 ============================================================================ +15:44:22 Slot Id : <381> +15:44:22 Transaction Type : REQUEST +15:44:22 Received From : +15:44:22 ============================================================================ +15:44:22 FNo. Len. Field Value +15:44:22 ============================================================================ +15:44:22 [ 1] [ 4] [0200] +15:44:22 [ 2] [ 16] [6688990101791703] +15:44:22 [ 3] [ 6] [010000] +15:44:22 [ 4] [ 12] [000100000000] +15:44:22 [ 7] [ 10] [0320154417] +15:44:22 [ 11] [ 6] [787645] +15:44:22 [ 12] [ 6] [154417] +15:44:22 [ 13] [ 4] [0320] +15:44:22 [ 15] [ 4] [0320] +15:44:22 [ 18] [ 4] [6011] +15:44:22 [ 22] [ 3] [900] +15:44:22 [ 25] [ 2] [02] +15:44:22 [ 28] [ 9] [D00002000] +15:44:22 [ 32] [ 6] [621354] +15:44:22 [ 35] [ 37] [6688990101791703=42051231170304100000] +15:44:22 [ 37] [ 12] [507904635778] +15:44:22 [ 41] [ 8] [17000800] +15:44:22 [ 42] [ 15] [NATIVE ] +15:44:22 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:44:22 [ 49] [ 3] [418] +15:44:22 [ 52] [ 16] [11C0846ECD00742E] +15:44:22 ============================================================================ +15:44:22 + + +waiting on router queue for slot.... +15:44:22 Sending to : <4> +15:44:22 ============================================================================ +15:44:23 ============================================================================ +15:44:23 Slot Id : <381> +15:44:23 Transaction Type : RESPONSE +15:44:23 Received From : +15:44:23 ============================================================================ +15:44:23 FNo. Len. Field Value +15:44:23 ============================================================================ +15:44:23 [ 1] [ 4] [0210] +15:44:23 [ 2] [ 16] [6688990101791703] +15:44:23 [ 3] [ 6] [010000] +15:44:23 [ 4] [ 12] [000100000000] +15:44:23 [ 11] [ 6] [787645] +15:44:23 [ 12] [ 6] [154417] +15:44:23 [ 15] [ 4] [0320] +15:44:23 [ 18] [ 4] [6011] +15:44:23 [ 32] [ 6] [621354] +15:44:23 [ 35] [ 37] [6688990101791703=42051231170304100000] +15:44:23 [ 37] [ 12] [507904635778] +15:44:23 [ 38] [ 6] [957103] +15:44:23 [ 39] [ 2] [00] +15:44:23 [ 41] [ 8] [17000800] +15:44:23 [ 49] [ 3] [418] +15:44:23 [ 54] [ 20] [0002418C000002000155] +15:44:23 ============================================================================ +15:44:23 Sending to : +15:44:23 ============================================================================ +15:44:23 + + +waiting on router queue for slot.... +15:44:25 ============================================================================ +15:44:25 Slot Id : <381> +15:44:25 Transaction Type : RESPONSE +15:44:25 Received From : +15:44:25 ============================================================================ +15:44:25 FNo. Len. Field Value +15:44:25 ============================================================================ +15:44:25 [ 1] [ 4] [0210] +15:44:25 [ 2] [ 16] [6688990101791703] +15:44:25 [ 3] [ 6] [010000] +15:44:25 [ 4] [ 12] [000100000000] +15:44:25 [ 11] [ 6] [787645] +15:44:25 [ 12] [ 6] [154417] +15:44:25 [ 15] [ 4] [0320] +15:44:25 [ 18] [ 4] [6011] +15:44:25 [ 32] [ 6] [621354] +15:44:25 [ 35] [ 37] [6688990101791703=42051231170304100000] +15:44:25 [ 37] [ 12] [507904635778] +15:44:25 [ 38] [ 6] [957103] +15:44:25 [ 39] [ 2] [00] +15:44:25 [ 41] [ 8] [17000800] +15:44:25 [ 49] [ 3] [418] +15:44:25 [ 54] [ 20] [0002418C000002000155] +15:44:25 ============================================================================ +15:44:25 Calculate Source COMM Id = 0 +15:44:25 ============================================================================ +15:44:25 + + +waiting on router queue for slot.... +15:44:32 ============================================================================ +15:44:32 Slot Id : <420> +15:44:32 Transaction Type : REQUEST +15:44:32 Received From : +15:44:32 ============================================================================ +15:44:32 FNo. Len. Field Value +15:44:32 ============================================================================ +15:44:32 [ 1] [ 4] [0800] +15:44:32 [ 7] [ 10] [0320084338] +15:44:32 [ 11] [ 6] [157081] +15:44:32 [ 70] [ 3] [301] +15:44:32 ============================================================================ +15:44:32 + + +waiting on router queue for slot.... +15:44:32 Sending to : +15:44:32 ============================================================================ +15:44:32 ============================================================================ +15:44:32 Slot Id : <420> +15:44:32 Transaction Type : RESPONSE +15:44:32 Received From : +15:44:32 ============================================================================ +15:44:32 FNo. Len. Field Value +15:44:32 ============================================================================ +15:44:32 [ 1] [ 4] [0810] +15:44:32 [ 7] [ 10] [0320084338] +15:44:32 [ 11] [ 6] [157081] +15:44:32 [ 39] [ 2] [00] +15:44:32 [ 70] [ 3] [301] +15:44:32 ============================================================================ +15:44:32 Calculate Source COMM Id = 2 +15:44:32 ============================================================================ +15:44:32 + + +waiting on router queue for slot.... +15:44:32 ============================================================================ +15:44:32 Slot Id : <415> +15:44:32 Transaction Type : REQUEST +15:44:32 Received From : +15:44:32 ============================================================================ +15:44:32 FNo. Len. Field Value +15:44:32 ============================================================================ +15:44:32 [ 1] [ 4] [0800] +15:44:32 [ 7] [ 10] [0320225621] +15:44:32 [ 11] [ 6] [155621] +15:44:32 [ 37] [ 12] [57915155621] +15:44:32 [ 70] [ 3] [301] +15:44:32 ============================================================================ +15:44:32 + + +waiting on router queue for slot.... +15:44:32 Sending to : +15:44:32 ============================================================================ +15:44:32 ============================================================================ +15:44:32 Slot Id : <415> +15:44:32 Transaction Type : RESPONSE +15:44:32 Received From : +15:44:32 ============================================================================ +15:44:32 FNo. Len. Field Value +15:44:32 ============================================================================ +15:44:32 [ 1] [ 4] [0810] +15:44:32 [ 7] [ 10] [0320225621] +15:44:32 [ 11] [ 6] [155621] +15:44:32 [ 37] [ 12] [579151556210] +15:44:32 [ 39] [ 2] [00] +15:44:32 [ 70] [ 3] [810] +15:44:32 ============================================================================ +15:44:32 Calculate Source COMM Id = 6 +15:44:32 ============================================================================ +15:44:32 + + +waiting on router queue for slot.... +15:44:33 ============================================================================ +15:44:33 Slot Id : <398> +15:44:33 Transaction Type : REQUEST +15:44:33 Received From : +15:44:33 ============================================================================ +15:44:33 FNo. Len. Field Value +15:44:33 ============================================================================ +15:44:33 [ 1] [ 4] [0200] +15:44:33 [ 2] [ 16] [6688990103278709] +15:44:33 [ 3] [ 6] [012000] +15:44:33 [ 4] [ 12] [000100000000] +15:44:33 [ 7] [ 10] [0320154428] +15:44:33 [ 11] [ 6] [787689] +15:44:33 [ 12] [ 6] [154428] +15:44:33 [ 13] [ 4] [0320] +15:44:33 [ 15] [ 4] [0320] +15:44:33 [ 18] [ 4] [6011] +15:44:33 [ 22] [ 3] [900] +15:44:33 [ 25] [ 2] [02] +15:44:33 [ 28] [ 9] [D00002000] +15:44:33 [ 32] [ 6] [621354] +15:44:33 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:44:33 [ 37] [ 12] [507903499529] +15:44:33 [ 41] [ 8] [06002200] +15:44:33 [ 42] [ 15] [NATIVE ] +15:44:33 [ 43] [ 40] [Beng Market Beng LAO] +15:44:33 [ 49] [ 3] [418] +15:44:33 [ 52] [ 16] [074840EF52131956] +15:44:33 ============================================================================ +15:44:33 + + +waiting on router queue for slot.... +15:44:33 Sending to : +15:44:33 ============================================================================ +15:44:33 Sending to : +15:44:33 ============================================================================ +15:44:33 ============================================================================ +15:44:33 Slot Id : <398> +15:44:33 Transaction Type : REQUEST +15:44:33 Received From : +15:44:33 ============================================================================ +15:44:33 FNo. Len. Field Value +15:44:33 ============================================================================ +15:44:33 [ 1] [ 4] [0200] +15:44:33 [ 2] [ 16] [6688990103278709] +15:44:33 [ 3] [ 6] [012000] +15:44:33 [ 4] [ 12] [000100000000] +15:44:33 [ 7] [ 10] [0320154428] +15:44:33 [ 11] [ 6] [787689] +15:44:33 [ 12] [ 6] [154428] +15:44:33 [ 13] [ 4] [0320] +15:44:33 [ 15] [ 4] [0320] +15:44:33 [ 18] [ 4] [6011] +15:44:33 [ 22] [ 3] [900] +15:44:33 [ 25] [ 2] [02] +15:44:33 [ 28] [ 9] [D00002000] +15:44:33 [ 32] [ 6] [621354] +15:44:33 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:44:33 [ 37] [ 12] [507903499529] +15:44:33 [ 41] [ 8] [06002200] +15:44:33 [ 42] [ 15] [NATIVE ] +15:44:33 [ 43] [ 40] [Beng Market Beng LAO] +15:44:33 [ 49] [ 3] [418] +15:44:33 [ 52] [ 16] [074840EF52131956] +15:44:33 ============================================================================ +15:44:33 + + +waiting on router queue for slot.... +15:44:33 Sending to : +15:44:33 ============================================================================ +15:44:33 ============================================================================ +15:44:33 Slot Id : <398> +15:44:33 Transaction Type : REQUEST +15:44:33 Received From : +15:44:33 ============================================================================ +15:44:33 FNo. Len. Field Value +15:44:33 ============================================================================ +15:44:33 [ 1] [ 4] [0200] +15:44:33 [ 2] [ 16] [6688990103278709] +15:44:33 [ 3] [ 6] [012000] +15:44:33 [ 4] [ 12] [000100000000] +15:44:33 [ 7] [ 10] [0320154428] +15:44:33 [ 11] [ 6] [787689] +15:44:33 [ 12] [ 6] [154428] +15:44:33 [ 13] [ 4] [0320] +15:44:33 [ 15] [ 4] [0320] +15:44:33 [ 18] [ 4] [6011] +15:44:33 [ 22] [ 3] [900] +15:44:33 [ 25] [ 2] [02] +15:44:33 [ 28] [ 9] [D00002000] +15:44:33 [ 32] [ 6] [621354] +15:44:33 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:44:33 [ 37] [ 12] [507903499529] +15:44:33 [ 41] [ 8] [06002200] +15:44:33 [ 42] [ 15] [NATIVE ] +15:44:33 [ 43] [ 40] [Beng Market Beng LAO] +15:44:33 [ 49] [ 3] [418] +15:44:33 [ 52] [ 16] [0426EA177F496FF2] +15:44:33 ============================================================================ +15:44:33 + + +waiting on router queue for slot.... +15:44:33 Sending to : <4> +15:44:33 ============================================================================ +15:44:34 ============================================================================ +15:44:34 Slot Id : <398> +15:44:34 Transaction Type : RESPONSE +15:44:34 Received From : +15:44:34 ============================================================================ +15:44:34 FNo. Len. Field Value +15:44:34 ============================================================================ +15:44:34 [ 1] [ 4] [0210] +15:44:34 [ 2] [ 16] [6688990103278709] +15:44:34 [ 3] [ 6] [012000] +15:44:34 [ 4] [ 12] [000100000000] +15:44:34 [ 11] [ 6] [787689] +15:44:34 [ 12] [ 6] [154428] +15:44:34 [ 15] [ 4] [0320] +15:44:34 [ 18] [ 4] [6011] +15:44:34 [ 32] [ 6] [621354] +15:44:34 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:44:34 [ 37] [ 12] [507903499529] +15:44:34 [ 38] [ 6] [559847] +15:44:34 [ 39] [ 2] [00] +15:44:34 [ 41] [ 8] [06002200] +15:44:34 [ 49] [ 3] [418] +15:44:34 [ 54] [ 20] [2002418C000221105851] +15:44:34 ============================================================================ +15:44:34 Sending to : +15:44:34 ============================================================================ +15:44:34 + + +waiting on router queue for slot.... +15:44:35 ============================================================================ +15:44:35 Slot Id : <433> +15:44:35 Transaction Type : REQUEST +15:44:35 Received From : +15:44:35 ============================================================================ +15:44:35 FNo. Len. Field Value +15:44:35 ============================================================================ +15:44:35 [ 1] [ 4] [0200] +15:44:35 [ 2] [ 16] [6213545000882377] +15:44:35 [ 3] [ 6] [010000] +15:44:35 [ 4] [ 12] [000150000000] +15:44:35 [ 7] [ 10] [0320084341] +15:44:35 [ 11] [ 6] [270111] +15:44:35 [ 12] [ 6] [154341] +15:44:35 [ 13] [ 4] [0320] +15:44:35 [ 14] [ 4] [4912] +15:44:35 [ 15] [ 4] [0320] +15:44:35 [ 18] [ 4] [6011] +15:44:35 [ 19] [ 3] [418] +15:44:35 [ 22] [ 3] [021] +15:44:35 [ 25] [ 2] [01] +15:44:35 [ 28] [ 9] [D00002000] +15:44:35 [ 32] [ 6] [180893] +15:44:35 [ 35] [ 32] [6213545000882377=491212018237292] +15:44:35 [ 37] [ 12] [507908270111] +15:44:35 [ 41] [ 8] [0243VTKS] +15:44:35 [ 42] [ 15] [999999 ] +15:44:35 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:44:35 [ 49] [ 3] [418] +15:44:35 [ 52] [ 16] [1F1F153BD2C68BB0] +15:44:35 ============================================================================ +15:44:35 + + +waiting on router queue for slot.... +15:44:35 Sending to : +15:44:35 ============================================================================ +15:44:35 Sending to : +15:44:35 ============================================================================ +15:44:35 ============================================================================ +15:44:35 Slot Id : <398> +15:44:35 Transaction Type : RESPONSE +15:44:35 Received From : +15:44:35 ============================================================================ +15:44:35 FNo. Len. Field Value +15:44:35 ============================================================================ +15:44:35 [ 1] [ 4] [0210] +15:44:35 [ 2] [ 16] [6688990103278709] +15:44:35 [ 3] [ 6] [012000] +15:44:35 [ 4] [ 12] [000100000000] +15:44:35 [ 11] [ 6] [787689] +15:44:35 [ 12] [ 6] [154428] +15:44:35 [ 15] [ 4] [0320] +15:44:35 [ 18] [ 4] [6011] +15:44:35 [ 32] [ 6] [621354] +15:44:35 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:44:35 [ 37] [ 12] [507903499529] +15:44:35 [ 38] [ 6] [559847] +15:44:35 [ 39] [ 2] [00] +15:44:35 [ 41] [ 8] [06002200] +15:44:35 [ 49] [ 3] [418] +15:44:35 [ 54] [ 20] [2002418C000221105851] +15:44:35 ============================================================================ +15:44:35 Calculate Source COMM Id = 0 +15:44:35 ============================================================================ +15:44:35 + + +waiting on router queue for slot.... +15:44:36 ============================================================================ +15:44:36 Slot Id : <433> +15:44:36 Transaction Type : REQUEST +15:44:36 Received From : +15:44:36 ============================================================================ +15:44:36 FNo. Len. Field Value +15:44:36 ============================================================================ +15:44:36 [ 1] [ 4] [0200] +15:44:36 [ 2] [ 16] [6213545000882377] +15:44:36 [ 3] [ 6] [010000] +15:44:36 [ 4] [ 12] [000150000000] +15:44:36 [ 7] [ 10] [0320084341] +15:44:36 [ 11] [ 6] [270111] +15:44:36 [ 12] [ 6] [154341] +15:44:36 [ 13] [ 4] [0320] +15:44:36 [ 14] [ 4] [4912] +15:44:36 [ 15] [ 4] [0320] +15:44:36 [ 18] [ 4] [6011] +15:44:36 [ 19] [ 3] [418] +15:44:36 [ 22] [ 3] [021] +15:44:36 [ 25] [ 2] [01] +15:44:36 [ 28] [ 9] [D00002000] +15:44:36 [ 32] [ 6] [180893] +15:44:36 [ 35] [ 32] [6213545000882377=491212018237292] +15:44:36 [ 37] [ 12] [507908270111] +15:44:36 [ 41] [ 8] [0243VTKS] +15:44:36 [ 42] [ 15] [999999 ] +15:44:36 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:44:36 [ 49] [ 3] [418] +15:44:36 [ 52] [ 16] [1F1F153BD2C68BB0] +15:44:36 ============================================================================ +15:44:36 + + +waiting on router queue for slot.... +15:44:36 Sending to : +15:44:36 ============================================================================ +15:44:36 ============================================================================ +15:44:36 Slot Id : <433> +15:44:36 Transaction Type : REQUEST +15:44:36 Received From : +15:44:36 ============================================================================ +15:44:36 FNo. Len. Field Value +15:44:36 ============================================================================ +15:44:36 [ 1] [ 4] [0200] +15:44:36 [ 2] [ 16] [6213545000882377] +15:44:36 [ 3] [ 6] [010000] +15:44:36 [ 4] [ 12] [000150000000] +15:44:36 [ 7] [ 10] [0320084341] +15:44:36 [ 11] [ 6] [270111] +15:44:36 [ 12] [ 6] [154341] +15:44:36 [ 13] [ 4] [0320] +15:44:36 [ 14] [ 4] [4912] +15:44:36 [ 15] [ 4] [0320] +15:44:36 [ 18] [ 4] [6011] +15:44:36 [ 19] [ 3] [418] +15:44:36 [ 22] [ 3] [021] +15:44:36 [ 25] [ 2] [01] +15:44:36 [ 28] [ 9] [D00002000] +15:44:36 [ 32] [ 6] [180893] +15:44:36 [ 35] [ 32] [6213545000882377=491212018237292] +15:44:36 [ 37] [ 12] [507908270111] +15:44:36 [ 41] [ 8] [0243VTKS] +15:44:36 [ 42] [ 15] [999999 ] +15:44:36 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:44:36 [ 49] [ 3] [418] +15:44:36 [ 52] [ 16] [3462C4C19DF84073] +15:44:36 ============================================================================ +15:44:36 + + +waiting on router queue for slot.... +15:44:36 Sending to : <0> +15:44:36 ============================================================================ +15:44:36 ============================================================================ +15:44:36 Slot Id : <433> +15:44:36 Transaction Type : RESPONSE +15:44:36 Received From : +15:44:36 ============================================================================ +15:44:36 FNo. Len. Field Value +15:44:36 ============================================================================ +15:44:36 [ 1] [ 4] [0210] +15:44:36 [ 2] [ 16] [6213545000882377] +15:44:36 [ 3] [ 6] [010000] +15:44:36 [ 4] [ 12] [000150000000] +15:44:36 [ 7] [ 10] [0320084341] +15:44:36 [ 11] [ 6] [270111] +15:44:36 [ 12] [ 6] [154341] +15:44:36 [ 13] [ 4] [0320] +15:44:36 [ 15] [ 4] [0320] +15:44:36 [ 18] [ 4] [6011] +15:44:36 [ 19] [ 3] [418] +15:44:36 [ 22] [ 3] [021] +15:44:36 [ 32] [ 6] [180893] +15:44:36 [ 35] [ 32] [6213545000882377=491212018237292] +15:44:36 [ 37] [ 12] [507908270111] +15:44:36 [ 39] [ 2] [61] +15:44:36 [ 41] [ 8] [0243VTKS] +15:44:36 [ 49] [ 3] [418] +15:44:36 ============================================================================ +15:44:36 Sending to : +15:44:36 ============================================================================ +15:44:36 + + +waiting on router queue for slot.... +15:44:37 ============================================================================ +15:44:37 Slot Id : <433> +15:44:37 Transaction Type : RESPONSE +15:44:37 Received From : +15:44:37 ============================================================================ +15:44:37 FNo. Len. Field Value +15:44:37 ============================================================================ +15:44:37 [ 1] [ 4] [0210] +15:44:37 [ 2] [ 16] [6213545000882377] +15:44:37 [ 3] [ 6] [010000] +15:44:37 [ 4] [ 12] [000150000000] +15:44:37 [ 7] [ 10] [0320084341] +15:44:37 [ 11] [ 6] [270111] +15:44:37 [ 12] [ 6] [154341] +15:44:37 [ 13] [ 4] [0320] +15:44:37 [ 15] [ 4] [0320] +15:44:37 [ 18] [ 4] [6011] +15:44:37 [ 19] [ 3] [418] +15:44:37 [ 22] [ 3] [021] +15:44:37 [ 32] [ 6] [180893] +15:44:37 [ 35] [ 32] [6213545000882377=491212018237292] +15:44:37 [ 37] [ 12] [507908270111] +15:44:37 [ 39] [ 2] [61] +15:44:37 [ 41] [ 8] [0243VTKS] +15:44:37 [ 49] [ 3] [418] +15:44:37 ============================================================================ +15:44:37 Calculate Source COMM Id = 2 +15:44:37 ============================================================================ +15:44:37 + + +waiting on router queue for slot.... +15:44:45 ============================================================================ +15:44:45 Slot Id : <425> +15:44:45 Transaction Type : REQUEST +15:44:45 Received From : +15:44:45 ============================================================================ +15:44:45 FNo. Len. Field Value +15:44:45 ============================================================================ +15:44:45 [ 1] [ 4] [0200] +15:44:45 [ 2] [ 16] [6213543000035757] +15:44:45 [ 3] [ 6] [011000] +15:44:45 [ 4] [ 12] [000020000000] +15:44:45 [ 7] [ 10] [0320084348] +15:44:45 [ 11] [ 6] [270114] +15:44:45 [ 12] [ 6] [154348] +15:44:45 [ 13] [ 4] [0320] +15:44:45 [ 14] [ 4] [4912] +15:44:45 [ 15] [ 4] [0320] +15:44:45 [ 18] [ 4] [6011] +15:44:45 [ 19] [ 3] [418] +15:44:45 [ 22] [ 3] [021] +15:44:45 [ 25] [ 2] [01] +15:44:45 [ 28] [ 9] [D00002000] +15:44:45 [ 32] [ 6] [180893] +15:44:45 [ 35] [ 32] [6213543000035757=491212013575384] +15:44:45 [ 37] [ 12] [507908270114] +15:44:45 [ 41] [ 8] [0441VT52] +15:44:45 [ 42] [ 15] [999999 ] +15:44:45 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:44:45 [ 49] [ 3] [418] +15:44:45 [ 52] [ 16] [BF0C64BC0CBFC86C] +15:44:45 ============================================================================ +15:44:45 + + +waiting on router queue for slot.... +15:44:45 Sending to : +15:44:45 ============================================================================ +15:44:45 Sending to : +15:44:45 ============================================================================ +15:44:45 ============================================================================ +15:44:45 Slot Id : <425> +15:44:45 Transaction Type : REQUEST +15:44:45 Received From : +15:44:45 ============================================================================ +15:44:45 FNo. Len. Field Value +15:44:45 ============================================================================ +15:44:45 [ 1] [ 4] [0200] +15:44:45 [ 2] [ 16] [6213543000035757] +15:44:45 [ 3] [ 6] [011000] +15:44:45 [ 4] [ 12] [000020000000] +15:44:45 [ 7] [ 10] [0320084348] +15:44:45 [ 11] [ 6] [270114] +15:44:45 [ 12] [ 6] [154348] +15:44:45 [ 13] [ 4] [0320] +15:44:45 [ 14] [ 4] [4912] +15:44:45 [ 15] [ 4] [0320] +15:44:45 [ 18] [ 4] [6011] +15:44:45 [ 19] [ 3] [418] +15:44:45 [ 22] [ 3] [021] +15:44:45 [ 25] [ 2] [01] +15:44:45 [ 28] [ 9] [D00002000] +15:44:45 [ 32] [ 6] [180893] +15:44:45 [ 35] [ 32] [6213543000035757=491212013575384] +15:44:45 [ 37] [ 12] [507908270114] +15:44:45 [ 41] [ 8] [0441VT52] +15:44:45 [ 42] [ 15] [999999 ] +15:44:45 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:44:45 [ 49] [ 3] [418] +15:44:45 [ 52] [ 16] [BF0C64BC0CBFC86C] +15:44:45 ============================================================================ +15:44:45 + + +waiting on router queue for slot.... +15:44:45 Sending to : +15:44:45 ============================================================================ +15:44:45 ============================================================================ +15:44:45 Slot Id : <425> +15:44:45 Transaction Type : REQUEST +15:44:45 Received From : +15:44:45 ============================================================================ +15:44:45 FNo. Len. Field Value +15:44:45 ============================================================================ +15:44:45 [ 1] [ 4] [0200] +15:44:45 [ 2] [ 16] [6213543000035757] +15:44:45 [ 3] [ 6] [011000] +15:44:45 [ 4] [ 12] [000020000000] +15:44:45 [ 7] [ 10] [0320084348] +15:44:45 [ 11] [ 6] [270114] +15:44:45 [ 12] [ 6] [154348] +15:44:45 [ 13] [ 4] [0320] +15:44:45 [ 14] [ 4] [4912] +15:44:45 [ 15] [ 4] [0320] +15:44:45 [ 18] [ 4] [6011] +15:44:45 [ 19] [ 3] [418] +15:44:45 [ 22] [ 3] [021] +15:44:45 [ 25] [ 2] [01] +15:44:45 [ 28] [ 9] [D00002000] +15:44:45 [ 32] [ 6] [180893] +15:44:45 [ 35] [ 32] [6213543000035757=491212013575384] +15:44:45 [ 37] [ 12] [507908270114] +15:44:45 [ 41] [ 8] [0441VT52] +15:44:45 [ 42] [ 15] [999999 ] +15:44:45 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:44:45 [ 49] [ 3] [418] +15:44:45 [ 52] [ 16] [F40E55C2D91EF6C4] +15:44:45 ============================================================================ +15:44:45 + + +waiting on router queue for slot.... +15:44:45 Sending to : <0> +15:44:45 ============================================================================ +15:44:45 ============================================================================ +15:44:45 Slot Id : <425> +15:44:45 Transaction Type : RESPONSE +15:44:45 Received From : +15:44:45 ============================================================================ +15:44:45 FNo. Len. Field Value +15:44:45 ============================================================================ +15:44:45 [ 1] [ 4] [0210] +15:44:45 [ 2] [ 16] [6213543000035757] +15:44:45 [ 3] [ 6] [011000] +15:44:45 [ 4] [ 12] [000020000000] +15:44:45 [ 7] [ 10] [0320084348] +15:44:45 [ 11] [ 6] [270114] +15:44:45 [ 12] [ 6] [154348] +15:44:45 [ 13] [ 4] [0320] +15:44:45 [ 15] [ 4] [0320] +15:44:45 [ 18] [ 4] [6011] +15:44:45 [ 19] [ 3] [418] +15:44:45 [ 32] [ 6] [180893] +15:44:45 [ 35] [ 32] [6213543000035757=491212013575384] +15:44:45 [ 37] [ 12] [507908270114] +15:44:45 [ 38] [ 6] [270114] +15:44:45 [ 39] [ 2] [51] +15:44:45 [ 41] [ 8] [0441VT52] +15:44:45 [ 49] [ 3] [418] +15:44:45 [ 54] [ 40] [1001418C0000248247021002418C000024824702] +15:44:45 ============================================================================ +15:44:45 Sending to : +15:44:45 ============================================================================ +15:44:45 + + +waiting on router queue for slot.... +15:44:47 ============================================================================ +15:44:47 Slot Id : <425> +15:44:47 Transaction Type : RESPONSE +15:44:47 Received From : +15:44:47 ============================================================================ +15:44:47 FNo. Len. Field Value +15:44:47 ============================================================================ +15:44:47 [ 1] [ 4] [0210] +15:44:47 [ 2] [ 16] [6213543000035757] +15:44:47 [ 3] [ 6] [011000] +15:44:47 [ 4] [ 12] [000020000000] +15:44:47 [ 7] [ 10] [0320084348] +15:44:47 [ 11] [ 6] [270114] +15:44:47 [ 12] [ 6] [154348] +15:44:47 [ 13] [ 4] [0320] +15:44:47 [ 15] [ 4] [0320] +15:44:47 [ 18] [ 4] [6011] +15:44:47 [ 19] [ 3] [418] +15:44:47 [ 32] [ 6] [180893] +15:44:47 [ 35] [ 32] [6213543000035757=491212013575384] +15:44:47 [ 37] [ 12] [507908270114] +15:44:47 [ 38] [ 6] [270114] +15:44:47 [ 39] [ 2] [51] +15:44:47 [ 41] [ 8] [0441VT52] +15:44:47 [ 49] [ 3] [418] +15:44:47 [ 54] [ 40] [1001418C0000248247021002418C000024824702] +15:44:47 ============================================================================ +15:44:47 Calculate Source COMM Id = 2 +15:44:47 ============================================================================ +15:44:47 + + +waiting on router queue for slot.... +15:44:54 ============================================================================ +15:44:54 Slot Id : <364> +15:44:54 Transaction Type : REQUEST +15:44:54 Received From : +15:44:54 ============================================================================ +15:44:54 FNo. Len. Field Value +15:44:54 ============================================================================ +15:44:54 [ 1] [ 4] [0800] +15:44:54 [ 7] [ 10] [0320085242] +15:44:54 [ 11] [ 6] [008492] +15:44:54 [ 37] [ 12] [57915008492] +15:44:54 [ 70] [ 3] [301] +15:44:54 ============================================================================ +15:44:54 + + +waiting on router queue for slot.... +15:44:54 Sending to : +15:44:54 ============================================================================ +15:44:54 ============================================================================ +15:44:54 Slot Id : <364> +15:44:54 Transaction Type : RESPONSE +15:44:54 Received From : +15:44:54 ============================================================================ +15:44:54 FNo. Len. Field Value +15:44:54 ============================================================================ +15:44:54 [ 1] [ 4] [0810] +15:44:54 [ 7] [ 10] [0320085242] +15:44:54 [ 11] [ 6] [008492] +15:44:54 [ 37] [ 12] [579150084920] +15:44:54 [ 39] [ 2] [00] +15:44:54 [ 70] [ 3] [810] +15:44:54 ============================================================================ +15:44:54 Calculate Source COMM Id = 1 +15:44:54 ============================================================================ +15:44:54 + + +waiting on router queue for slot.... +15:44:58 ============================================================================ +15:44:58 Slot Id : <388> +15:44:58 Transaction Type : REQUEST +15:44:58 Received From : +15:44:58 ============================================================================ +15:44:58 FNo. Len. Field Value +15:44:58 ============================================================================ +15:44:58 [ 1] [ 4] [0800] +15:44:58 [ 7] [ 10] [0320084405] +15:44:58 [ 11] [ 6] [157082] +15:44:58 [ 70] [ 3] [301] +15:44:58 ============================================================================ +15:44:58 + + +waiting on router queue for slot.... +15:44:58 Sending to : +15:44:58 ============================================================================ +15:44:58 ============================================================================ +15:44:58 Slot Id : <388> +15:44:58 Transaction Type : RESPONSE +15:44:58 Received From : +15:44:58 ============================================================================ +15:44:58 FNo. Len. Field Value +15:44:58 ============================================================================ +15:44:58 [ 1] [ 4] [0810] +15:44:58 [ 7] [ 10] [0320084405] +15:44:58 [ 11] [ 6] [157082] +15:44:58 [ 39] [ 2] [00] +15:44:58 [ 70] [ 3] [301] +15:44:58 ============================================================================ +15:44:58 Calculate Source COMM Id = 2 +15:44:58 ============================================================================ +15:44:58 + + +waiting on router queue for slot.... +15:45:07 ============================================================================ +15:45:07 Slot Id : <430> +15:45:07 Transaction Type : REQUEST +15:45:07 Received From : +15:45:07 ============================================================================ +15:45:07 FNo. Len. Field Value +15:45:07 ============================================================================ +15:45:07 [ 1] [ 4] [0800] +15:45:07 [ 2] [ 5] [02531] +15:45:07 [ 3] [ 6] [579158] +15:45:07 [ 7] [ 10] [0320084507] +15:45:07 [ 11] [ 6] [807326] +15:45:07 [ 15] [ 10] [0320084507] +15:45:07 [ 37] [ 11] [57915807326] +15:45:07 [ 70] [ 3] [001] +15:45:07 ============================================================================ +15:45:07 + + +waiting on router queue for slot.... +15:45:07 ============================================================================ +15:45:07 Slot Id : <430> +15:45:07 Transaction Type : RESPONSE +15:45:07 Received From : +15:45:07 ============================================================================ +15:45:07 FNo. Len. Field Value +15:45:07 ============================================================================ +15:45:07 [ 1] [ 4] [0810] +15:45:07 [ 7] [ 10] [0320084507] +15:45:07 [ 11] [ 6] [807326] +15:45:07 [ 15] [ 4] [0320] +15:45:07 [ 37] [ 12] [57915807326] +15:45:07 [ 39] [ 2] [00] +15:45:07 [ 70] [ 3] [001] +15:45:07 ============================================================================ +15:45:07 Sending to : +15:45:07 ============================================================================ +15:45:07 + + +waiting on router queue for slot.... +15:45:09 ============================================================================ +15:45:09 Slot Id : <409> +15:45:09 Transaction Type : REQUEST +15:45:09 Received From : +15:45:09 ============================================================================ +15:45:09 FNo. Len. Field Value +15:45:09 ============================================================================ +15:45:09 [ 1] [ 4] [0800] +15:45:09 [ 7] [ 10] [0320084416] +15:45:09 [ 11] [ 6] [157083] +15:45:09 [ 70] [ 3] [301] +15:45:09 ============================================================================ +15:45:09 + + +waiting on router queue for slot.... +15:45:09 Sending to : +15:45:09 ============================================================================ +15:45:09 ============================================================================ +15:45:09 Slot Id : <409> +15:45:09 Transaction Type : RESPONSE +15:45:09 Received From : +15:45:09 ============================================================================ +15:45:09 FNo. Len. Field Value +15:45:09 ============================================================================ +15:45:09 [ 1] [ 4] [0810] +15:45:09 [ 7] [ 10] [0320084416] +15:45:09 [ 11] [ 6] [157083] +15:45:09 [ 39] [ 2] [00] +15:45:09 [ 70] [ 3] [301] +15:45:09 ============================================================================ +15:45:09 Calculate Source COMM Id = 2 +15:45:09 ============================================================================ +15:45:09 + + +waiting on router queue for slot.... +15:45:20 ============================================================================ +15:45:20 Slot Id : <367> +15:45:20 Transaction Type : REQUEST +15:45:20 Received From : +15:45:20 ============================================================================ +15:45:20 FNo. Len. Field Value +15:45:20 ============================================================================ +15:45:20 [ 1] [ 4] [0800] +15:45:20 [ 7] [ 10] [0320084427] +15:45:20 [ 11] [ 6] [157084] +15:45:20 [ 70] [ 3] [301] +15:45:20 ============================================================================ +15:45:20 + + +waiting on router queue for slot.... +15:45:20 Sending to : +15:45:20 ============================================================================ +15:45:20 ============================================================================ +15:45:20 Slot Id : <367> +15:45:20 Transaction Type : RESPONSE +15:45:20 Received From : +15:45:20 ============================================================================ +15:45:20 FNo. Len. Field Value +15:45:20 ============================================================================ +15:45:20 [ 1] [ 4] [0810] +15:45:20 [ 7] [ 10] [0320084427] +15:45:20 [ 11] [ 6] [157084] +15:45:20 [ 39] [ 2] [00] +15:45:20 [ 70] [ 3] [301] +15:45:20 ============================================================================ +15:45:20 Calculate Source COMM Id = 2 +15:45:20 ============================================================================ +15:45:20 + + +waiting on router queue for slot.... +15:45:25 ============================================================================ +15:45:25 Slot Id : <441> +15:45:25 Transaction Type : REQUEST +15:45:25 Received From : +15:45:25 ============================================================================ +15:45:25 FNo. Len. Field Value +15:45:25 ============================================================================ +15:45:25 [ 1] [ 4] [0200] +15:45:25 [ 2] [ 16] [6213548000452951] +15:45:25 [ 3] [ 6] [011000] +15:45:25 [ 4] [ 12] [000010000000] +15:45:25 [ 7] [ 10] [0320154545] +15:45:25 [ 11] [ 6] [208171] +15:45:25 [ 12] [ 6] [034355] +15:45:25 [ 13] [ 4] [0320] +15:45:25 [ 14] [ 4] [1807] +15:45:25 [ 15] [ 4] [0320] +15:45:25 [ 18] [ 4] [6011] +15:45:25 [ 19] [ 3] [418] +15:45:25 [ 22] [ 3] [021] +15:45:25 [ 25] [ 2] [01] +15:45:25 [ 28] [ 9] [D00002000] +15:45:25 [ 32] [ 6] [198901] +15:45:25 [ 35] [ 32] [6213548000452951=180712015295669] +15:45:25 [ 37] [ 12] [507915208171] +15:45:25 [ 41] [ 8] [01529031] +15:45:25 [ 42] [ 15] [000000041529031] +15:45:25 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:45:25 [ 49] [ 3] [418] +15:45:25 [ 52] [ 16] [7AB01BC0D5A173A7] +15:45:25 ============================================================================ +15:45:25 + + +waiting on router queue for slot.... +15:45:25 Sending to : +15:45:25 ============================================================================ +15:45:25 Sending to : +15:45:25 ============================================================================ +15:45:25 ============================================================================ +15:45:25 Slot Id : <441> +15:45:25 Transaction Type : REQUEST +15:45:25 Received From : +15:45:25 ============================================================================ +15:45:25 FNo. Len. Field Value +15:45:25 ============================================================================ +15:45:25 [ 1] [ 4] [0200] +15:45:25 [ 2] [ 16] [6213548000452951] +15:45:25 [ 3] [ 6] [011000] +15:45:25 [ 4] [ 12] [000010000000] +15:45:25 [ 7] [ 10] [0320154545] +15:45:25 [ 11] [ 6] [208171] +15:45:25 [ 12] [ 6] [034355] +15:45:25 [ 13] [ 4] [0320] +15:45:25 [ 14] [ 4] [1807] +15:45:25 [ 15] [ 4] [0320] +15:45:25 [ 18] [ 4] [6011] +15:45:25 [ 19] [ 3] [418] +15:45:25 [ 22] [ 3] [021] +15:45:25 [ 25] [ 2] [01] +15:45:25 [ 28] [ 9] [D00002000] +15:45:25 [ 32] [ 6] [198901] +15:45:25 [ 35] [ 32] [6213548000452951=180712015295669] +15:45:25 [ 37] [ 12] [507915208171] +15:45:25 [ 41] [ 8] [01529031] +15:45:25 [ 42] [ 15] [000000041529031] +15:45:25 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:45:25 [ 49] [ 3] [418] +15:45:25 [ 52] [ 16] [7AB01BC0D5A173A7] +15:45:25 ============================================================================ +15:45:25 + + +waiting on router queue for slot.... +15:45:25 Sending to : +15:45:25 ============================================================================ +15:45:25 ============================================================================ +15:45:25 Slot Id : <441> +15:45:25 Transaction Type : REQUEST +15:45:25 Received From : +15:45:25 ============================================================================ +15:45:25 FNo. Len. Field Value +15:45:25 ============================================================================ +15:45:25 [ 1] [ 4] [0200] +15:45:25 [ 2] [ 16] [6213548000452951] +15:45:25 [ 3] [ 6] [011000] +15:45:25 [ 4] [ 12] [000010000000] +15:45:25 [ 7] [ 10] [0320154545] +15:45:25 [ 11] [ 6] [208171] +15:45:25 [ 12] [ 6] [034355] +15:45:25 [ 13] [ 4] [0320] +15:45:25 [ 14] [ 4] [1807] +15:45:25 [ 15] [ 4] [0320] +15:45:25 [ 18] [ 4] [6011] +15:45:25 [ 19] [ 3] [418] +15:45:25 [ 22] [ 3] [021] +15:45:25 [ 25] [ 2] [01] +15:45:25 [ 28] [ 9] [D00002000] +15:45:25 [ 32] [ 6] [198901] +15:45:25 [ 35] [ 32] [6213548000452951=180712015295669] +15:45:25 [ 37] [ 12] [507915208171] +15:45:25 [ 41] [ 8] [01529031] +15:45:25 [ 42] [ 15] [000000041529031] +15:45:25 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +15:45:25 [ 49] [ 3] [418] +15:45:25 [ 52] [ 16] [0CC14BBD82F79078] +15:45:25 ============================================================================ +15:45:25 + + +waiting on router queue for slot.... +15:45:25 Sending to : <0> +15:45:25 ============================================================================ +15:45:26 ============================================================================ +15:45:26 Slot Id : <441> +15:45:26 Transaction Type : RESPONSE +15:45:26 Received From : +15:45:26 ============================================================================ +15:45:26 FNo. Len. Field Value +15:45:26 ============================================================================ +15:45:26 [ 1] [ 4] [0210] +15:45:26 [ 2] [ 16] [6213548000452951] +15:45:26 [ 3] [ 6] [011000] +15:45:26 [ 4] [ 12] [000010000000] +15:45:26 [ 7] [ 10] [0320154545] +15:45:26 [ 11] [ 6] [208171] +15:45:26 [ 12] [ 6] [034355] +15:45:26 [ 13] [ 4] [0320] +15:45:26 [ 15] [ 4] [0320] +15:45:26 [ 18] [ 4] [6011] +15:45:26 [ 19] [ 3] [418] +15:45:26 [ 32] [ 6] [198901] +15:45:26 [ 35] [ 32] [6213548000452951=180712015295669] +15:45:26 [ 37] [ 12] [507915208171] +15:45:26 [ 38] [ 6] [908085] +15:45:26 [ 39] [ 2] [00] +15:45:26 [ 41] [ 8] [01529031] +15:45:26 [ 49] [ 3] [418] +15:45:26 [ 54] [ 40] [1001418C0000265842761002418C000026584276] +15:45:26 ============================================================================ +15:45:26 Sending to : +15:45:26 ============================================================================ +15:45:26 + + +waiting on router queue for slot.... +15:45:27 ============================================================================ +15:45:27 Slot Id : <441> +15:45:27 Transaction Type : RESPONSE +15:45:27 Received From : +15:45:27 ============================================================================ +15:45:27 FNo. Len. Field Value +15:45:27 ============================================================================ +15:45:27 [ 1] [ 4] [0210] +15:45:27 [ 2] [ 16] [6213548000452951] +15:45:27 [ 3] [ 6] [011000] +15:45:27 [ 4] [ 12] [000010000000] +15:45:27 [ 7] [ 10] [0320154545] +15:45:27 [ 11] [ 6] [208171] +15:45:27 [ 12] [ 6] [034355] +15:45:27 [ 13] [ 4] [0320] +15:45:27 [ 15] [ 4] [0320] +15:45:27 [ 18] [ 4] [6011] +15:45:27 [ 19] [ 3] [418] +15:45:27 [ 32] [ 6] [198901] +15:45:27 [ 35] [ 32] [6213548000452951=180712015295669] +15:45:27 [ 37] [ 12] [507915208171] +15:45:27 [ 38] [ 6] [908085] +15:45:27 [ 39] [ 2] [00] +15:45:27 [ 41] [ 8] [01529031] +15:45:27 [ 49] [ 3] [418] +15:45:27 [ 54] [ 40] [1001418C0000265842761002418C000026584276] +15:45:27 ============================================================================ +15:45:27 Calculate Source COMM Id = 5 +15:45:27 ============================================================================ +15:45:27 + + +waiting on router queue for slot.... +15:45:29 ============================================================================ +15:45:29 Slot Id : <437> +15:45:29 Transaction Type : REQUEST +15:45:29 Received From : +15:45:29 ============================================================================ +15:45:29 FNo. Len. Field Value +15:45:29 ============================================================================ +15:45:29 [ 1] [ 4] [0200] +15:45:29 [ 2] [ 16] [6213543000035757] +15:45:29 [ 3] [ 6] [301000] +15:45:29 [ 7] [ 10] [0320084436] +15:45:29 [ 11] [ 6] [270115] +15:45:29 [ 12] [ 6] [154436] +15:45:29 [ 13] [ 4] [0320] +15:45:29 [ 14] [ 4] [4912] +15:45:29 [ 15] [ 4] [0320] +15:45:29 [ 18] [ 4] [6011] +15:45:29 [ 19] [ 3] [418] +15:45:29 [ 22] [ 3] [021] +15:45:29 [ 25] [ 2] [01] +15:45:29 [ 32] [ 6] [180893] +15:45:29 [ 35] [ 32] [6213543000035757=491212013575384] +15:45:29 [ 37] [ 12] [507908270115] +15:45:29 [ 41] [ 8] [0441VT52] +15:45:29 [ 42] [ 15] [999999 ] +15:45:29 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:45:29 [ 49] [ 3] [418] +15:45:29 [ 52] [ 16] [BF0C64BC0CBFC86C] +15:45:29 ============================================================================ +15:45:29 + + +waiting on router queue for slot.... +15:45:29 Sending to : +15:45:29 ============================================================================ +15:45:29 Sending to : +15:45:29 ============================================================================ +15:45:29 ============================================================================ +15:45:29 Slot Id : <437> +15:45:29 Transaction Type : REQUEST +15:45:29 Received From : +15:45:29 ============================================================================ +15:45:29 FNo. Len. Field Value +15:45:29 ============================================================================ +15:45:29 [ 1] [ 4] [0200] +15:45:29 [ 2] [ 16] [6213543000035757] +15:45:29 [ 3] [ 6] [301000] +15:45:29 [ 7] [ 10] [0320084436] +15:45:29 [ 11] [ 6] [270115] +15:45:29 [ 12] [ 6] [154436] +15:45:29 [ 13] [ 4] [0320] +15:45:29 [ 14] [ 4] [4912] +15:45:29 [ 15] [ 4] [0320] +15:45:29 [ 18] [ 4] [6011] +15:45:29 [ 19] [ 3] [418] +15:45:29 [ 22] [ 3] [021] +15:45:29 [ 25] [ 2] [01] +15:45:29 [ 32] [ 6] [180893] +15:45:29 [ 35] [ 32] [6213543000035757=491212013575384] +15:45:29 [ 37] [ 12] [507908270115] +15:45:29 [ 41] [ 8] [0441VT52] +15:45:29 [ 42] [ 15] [999999 ] +15:45:29 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:45:29 [ 49] [ 3] [418] +15:45:29 [ 52] [ 16] [BF0C64BC0CBFC86C] +15:45:29 ============================================================================ +15:45:29 + + +waiting on router queue for slot.... +15:45:29 Sending to : +15:45:29 ============================================================================ +15:45:29 ============================================================================ +15:45:29 Slot Id : <437> +15:45:29 Transaction Type : REQUEST +15:45:29 Received From : +15:45:29 ============================================================================ +15:45:29 FNo. Len. Field Value +15:45:29 ============================================================================ +15:45:29 [ 1] [ 4] [0200] +15:45:29 [ 2] [ 16] [6213543000035757] +15:45:29 [ 3] [ 6] [301000] +15:45:29 [ 7] [ 10] [0320084436] +15:45:29 [ 11] [ 6] [270115] +15:45:29 [ 12] [ 6] [154436] +15:45:29 [ 13] [ 4] [0320] +15:45:29 [ 14] [ 4] [4912] +15:45:29 [ 15] [ 4] [0320] +15:45:29 [ 18] [ 4] [6011] +15:45:29 [ 19] [ 3] [418] +15:45:29 [ 22] [ 3] [021] +15:45:29 [ 25] [ 2] [01] +15:45:29 [ 32] [ 6] [180893] +15:45:29 [ 35] [ 32] [6213543000035757=491212013575384] +15:45:29 [ 37] [ 12] [507908270115] +15:45:29 [ 41] [ 8] [0441VT52] +15:45:29 [ 42] [ 15] [999999 ] +15:45:29 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:45:29 [ 49] [ 3] [418] +15:45:29 [ 52] [ 16] [F40E55C2D91EF6C4] +15:45:29 ============================================================================ +15:45:29 + + +waiting on router queue for slot.... +15:45:29 Sending to : <0> +15:45:29 ============================================================================ +15:45:29 ============================================================================ +15:45:29 Slot Id : <402> +15:45:29 Transaction Type : REQUEST +15:45:29 Received From : +15:45:29 ============================================================================ +15:45:29 FNo. Len. Field Value +15:45:29 ============================================================================ +15:45:29 [ 1] [ 4] [0200] +15:45:29 [ 2] [ 16] [1808930900011644] +15:45:29 [ 3] [ 6] [011000] +15:45:29 [ 4] [ 12] [000100000000] +15:45:29 [ 7] [ 10] [0320154524] +15:45:29 [ 11] [ 6] [787881] +15:45:29 [ 12] [ 6] [154524] +15:45:29 [ 13] [ 4] [0320] +15:45:29 [ 15] [ 4] [0320] +15:45:29 [ 18] [ 4] [6011] +15:45:29 [ 22] [ 3] [900] +15:45:29 [ 25] [ 2] [02] +15:45:29 [ 28] [ 9] [D00002000] +15:45:29 [ 32] [ 6] [621354] +15:45:29 [ 35] [ 27] [1808930900011644=1803500700] +15:45:29 [ 37] [ 12] [507902497434] +15:45:29 [ 41] [ 8] [05003200] +15:45:29 [ 42] [ 15] [NATIVE ] +15:45:29 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +15:45:29 [ 49] [ 3] [418] +15:45:29 [ 52] [ 16] [940753A287412C36] +15:45:29 ============================================================================ +15:45:29 + + +waiting on router queue for slot.... +15:45:29 Sending to : +15:45:29 ============================================================================ +15:45:29 Sending to : +15:45:29 ============================================================================ +15:45:30 ============================================================================ +15:45:30 Slot Id : <437> +15:45:30 Transaction Type : RESPONSE +15:45:30 Received From : +15:45:30 ============================================================================ +15:45:30 FNo. Len. Field Value +15:45:30 ============================================================================ +15:45:30 [ 1] [ 4] [0210] +15:45:30 [ 2] [ 16] [6213543000035757] +15:45:30 [ 3] [ 6] [301000] +15:45:30 [ 4] [ 12] [000000000000] +15:45:30 [ 7] [ 10] [0320084436] +15:45:30 [ 11] [ 6] [270115] +15:45:30 [ 12] [ 6] [154436] +15:45:30 [ 13] [ 4] [0320] +15:45:30 [ 15] [ 4] [0320] +15:45:30 [ 18] [ 4] [6011] +15:45:30 [ 19] [ 3] [418] +15:45:30 [ 32] [ 6] [180893] +15:45:30 [ 35] [ 32] [6213543000035757=491212013575384] +15:45:30 [ 37] [ 12] [507908270115] +15:45:30 [ 38] [ 6] [791477] +15:45:30 [ 39] [ 2] [00] +15:45:30 [ 41] [ 8] [0441VT52] +15:45:30 [ 49] [ 3] [418] +15:45:30 [ 54] [ 40] [1001418C0000248247021002418C000024824702] +15:45:30 ============================================================================ +15:45:30 Sending to : +15:45:30 ============================================================================ +15:45:30 + + +waiting on router queue for slot.... +15:45:30 ============================================================================ +15:45:30 Slot Id : <402> +15:45:30 Transaction Type : REQUEST +15:45:30 Received From : +15:45:30 ============================================================================ +15:45:30 FNo. Len. Field Value +15:45:30 ============================================================================ +15:45:30 [ 1] [ 4] [0200] +15:45:30 [ 2] [ 16] [1808930900011644] +15:45:30 [ 3] [ 6] [011000] +15:45:30 [ 4] [ 12] [000100000000] +15:45:30 [ 7] [ 10] [0320154524] +15:45:30 [ 11] [ 6] [787881] +15:45:30 [ 12] [ 6] [154524] +15:45:30 [ 13] [ 4] [0320] +15:45:30 [ 15] [ 4] [0320] +15:45:30 [ 18] [ 4] [6011] +15:45:30 [ 22] [ 3] [900] +15:45:30 [ 25] [ 2] [02] +15:45:30 [ 28] [ 9] [D00002000] +15:45:30 [ 32] [ 6] [621354] +15:45:30 [ 35] [ 27] [1808930900011644=1803500700] +15:45:30 [ 37] [ 12] [507902497434] +15:45:30 [ 41] [ 8] [05003200] +15:45:30 [ 42] [ 15] [NATIVE ] +15:45:30 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +15:45:30 [ 49] [ 3] [418] +15:45:30 [ 52] [ 16] [940753A287412C36] +15:45:30 ============================================================================ +15:45:30 + + +waiting on router queue for slot.... +15:45:30 Sending to : +15:45:30 ============================================================================ +15:45:30 ============================================================================ +15:45:30 Slot Id : <402> +15:45:30 Transaction Type : REQUEST +15:45:30 Received From : +15:45:30 ============================================================================ +15:45:30 FNo. Len. Field Value +15:45:30 ============================================================================ +15:45:30 [ 1] [ 4] [0200] +15:45:30 [ 2] [ 16] [1808930900011644] +15:45:30 [ 3] [ 6] [011000] +15:45:30 [ 4] [ 12] [000100000000] +15:45:30 [ 7] [ 10] [0320154524] +15:45:30 [ 11] [ 6] [787881] +15:45:30 [ 12] [ 6] [154524] +15:45:30 [ 13] [ 4] [0320] +15:45:30 [ 15] [ 4] [0320] +15:45:30 [ 18] [ 4] [6011] +15:45:30 [ 22] [ 3] [900] +15:45:30 [ 25] [ 2] [02] +15:45:30 [ 28] [ 9] [D00002000] +15:45:30 [ 32] [ 6] [621354] +15:45:30 [ 35] [ 27] [1808930900011644=1803500700] +15:45:30 [ 37] [ 12] [507902497434] +15:45:30 [ 41] [ 8] [05003200] +15:45:30 [ 42] [ 15] [NATIVE ] +15:45:30 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +15:45:30 [ 49] [ 3] [418] +15:45:30 [ 52] [ 16] [EEA93A993BB9A20D] +15:45:30 ============================================================================ +15:45:30 + + +waiting on router queue for slot.... +15:45:30 Sending to : <2> +15:45:30 ============================================================================ +15:45:32 ============================================================================ +15:45:32 Slot Id : <437> +15:45:32 Transaction Type : RESPONSE +15:45:32 Received From : +15:45:32 ============================================================================ +15:45:32 FNo. Len. Field Value +15:45:32 ============================================================================ +15:45:32 [ 1] [ 4] [0210] +15:45:32 [ 2] [ 16] [6213543000035757] +15:45:32 [ 3] [ 6] [301000] +15:45:32 [ 4] [ 12] [000000000000] +15:45:32 [ 7] [ 10] [0320084436] +15:45:32 [ 11] [ 6] [270115] +15:45:32 [ 12] [ 6] [154436] +15:45:32 [ 13] [ 4] [0320] +15:45:32 [ 15] [ 4] [0320] +15:45:32 [ 18] [ 4] [6011] +15:45:32 [ 19] [ 3] [418] +15:45:32 [ 32] [ 6] [180893] +15:45:32 [ 35] [ 32] [6213543000035757=491212013575384] +15:45:32 [ 37] [ 12] [507908270115] +15:45:32 [ 38] [ 6] [791477] +15:45:32 [ 39] [ 2] [00] +15:45:32 [ 41] [ 8] [0441VT52] +15:45:32 [ 49] [ 3] [418] +15:45:32 [ 54] [ 40] [1001418C0000248247021002418C000024824702] +15:45:32 ============================================================================ +15:45:32 Calculate Source COMM Id = 2 +15:45:32 ============================================================================ +15:45:32 + + +waiting on router queue for slot.... +15:45:35 ============================================================================ +15:45:35 Slot Id : <402> +15:45:35 Transaction Type : RESPONSE +15:45:35 Received From : +15:45:35 ============================================================================ +15:45:35 FNo. Len. Field Value +15:45:35 ============================================================================ +15:45:35 [ 1] [ 4] [0210] +15:45:35 [ 2] [ 16] [1808930900011644] +15:45:35 [ 3] [ 6] [011000] +15:45:35 [ 4] [ 12] [000100000000] +15:45:35 [ 6] [ 12] [000100000000] +15:45:35 [ 7] [ 10] [0320154524] +15:45:35 [ 11] [ 6] [787881] +15:45:35 [ 12] [ 6] [154524] +15:45:35 [ 13] [ 4] [0320] +15:45:35 [ 18] [ 4] [6011] +15:45:35 [ 19] [ 3] [418] +15:45:35 [ 22] [ 3] [021] +15:45:35 [ 32] [ 6] [621354] +15:45:35 [ 35] [ 27] [1808930900011644=1803500700] +15:45:35 [ 37] [ 12] [507902497434] +15:45:35 [ 38] [ 6] [787881] +15:45:35 [ 39] [ 2] [00] +15:45:35 [ 41] [ 8] [05003200] +15:45:35 [ 49] [ 3] [418] +15:45:35 [ 52] [ 16] [EEA93A993BB9A20D] +15:45:35 [ 54] [ 20] [1001418C002076853500] +15:45:35 ============================================================================ +15:45:35 Sending to : +15:45:35 ============================================================================ +15:45:35 + + +waiting on router queue for slot.... +15:45:37 ============================================================================ +15:45:37 Slot Id : <403> +15:45:37 Transaction Type : REQUEST +15:45:37 Received From : +15:45:37 ============================================================================ +15:45:37 FNo. Len. Field Value +15:45:37 ============================================================================ +15:45:37 [ 1] [ 4] [0800] +15:45:37 [ 7] [ 10] [0320225726] +15:45:37 [ 11] [ 6] [155726] +15:45:37 [ 37] [ 12] [57915155726] +15:45:37 [ 70] [ 3] [301] +15:45:37 ============================================================================ +15:45:37 + + +waiting on router queue for slot.... +15:45:37 Sending to : +15:45:37 ============================================================================ +15:45:37 ============================================================================ +15:45:37 Slot Id : <403> +15:45:37 Transaction Type : RESPONSE +15:45:37 Received From : +15:45:37 ============================================================================ +15:45:37 FNo. Len. Field Value +15:45:37 ============================================================================ +15:45:37 [ 1] [ 4] [0810] +15:45:37 [ 7] [ 10] [0320225726] +15:45:37 [ 11] [ 6] [155726] +15:45:37 [ 37] [ 12] [579151557260] +15:45:37 [ 39] [ 2] [00] +15:45:37 [ 70] [ 3] [810] +15:45:37 ============================================================================ +15:45:37 Calculate Source COMM Id = 6 +15:45:37 ============================================================================ +15:45:37 + + +waiting on router queue for slot.... +15:45:37 ============================================================================ +15:45:37 Slot Id : <402> +15:45:37 Transaction Type : RESPONSE +15:45:37 Received From : +15:45:37 ============================================================================ +15:45:37 FNo. Len. Field Value +15:45:37 ============================================================================ +15:45:37 [ 1] [ 4] [0210] +15:45:37 [ 2] [ 16] [1808930900011644] +15:45:37 [ 3] [ 6] [011000] +15:45:37 [ 4] [ 12] [000100000000] +15:45:37 [ 6] [ 12] [000100000000] +15:45:37 [ 7] [ 10] [0320154524] +15:45:37 [ 11] [ 6] [787881] +15:45:37 [ 12] [ 6] [154524] +15:45:37 [ 13] [ 4] [0320] +15:45:37 [ 18] [ 4] [6011] +15:45:37 [ 19] [ 3] [418] +15:45:37 [ 22] [ 3] [021] +15:45:37 [ 32] [ 6] [621354] +15:45:37 [ 35] [ 27] [1808930900011644=1803500700] +15:45:37 [ 37] [ 12] [507902497434] +15:45:37 [ 38] [ 6] [787881] +15:45:37 [ 39] [ 2] [00] +15:45:37 [ 41] [ 8] [05003200] +15:45:37 [ 49] [ 3] [418] +15:45:37 [ 52] [ 16] [EEA93A993BB9A20D] +15:45:37 [ 54] [ 20] [1001418C002076853500] +15:45:37 ============================================================================ +15:45:37 Calculate Source COMM Id = 0 +15:45:37 ============================================================================ +15:45:37 + + +waiting on router queue for slot.... +15:45:45 ============================================================================ +15:45:45 Slot Id : <408> +15:45:45 Transaction Type : REQUEST +15:45:45 Received From : +15:45:45 ============================================================================ +15:45:45 FNo. Len. Field Value +15:45:45 ============================================================================ +15:45:45 [ 1] [ 4] [0200] +15:45:45 [ 2] [ 16] [1888880000031393] +15:45:45 [ 3] [ 6] [012000] +15:45:45 [ 4] [ 12] [000010000000] +15:45:45 [ 7] [ 10] [0320154540] +15:45:45 [ 11] [ 6] [787950] +15:45:45 [ 12] [ 6] [154540] +15:45:45 [ 13] [ 4] [0320] +15:45:45 [ 15] [ 4] [0320] +15:45:45 [ 18] [ 4] [6011] +15:45:45 [ 22] [ 3] [900] +15:45:45 [ 25] [ 2] [02] +15:45:45 [ 28] [ 9] [D00002000] +15:45:45 [ 32] [ 6] [621354] +15:45:45 [ 35] [ 32] [1888880000031393=000010100000334] +15:45:45 [ 37] [ 12] [507904795736] +15:45:45 [ 41] [ 8] [07001500] +15:45:45 [ 42] [ 15] [NATIVE ] +15:45:45 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +15:45:45 [ 49] [ 3] [418] +15:45:45 [ 52] [ 16] [9F79DE13F269CCEE] +15:45:45 ============================================================================ +15:45:45 + + +waiting on router queue for slot.... +15:45:45 Sending to : +15:45:45 ============================================================================ +15:45:45 Sending to : +15:45:45 ============================================================================ +15:45:45 ============================================================================ +15:45:45 Slot Id : <408> +15:45:45 Transaction Type : REQUEST +15:45:45 Received From : +15:45:45 ============================================================================ +15:45:45 FNo. Len. Field Value +15:45:45 ============================================================================ +15:45:45 [ 1] [ 4] [0200] +15:45:45 [ 2] [ 16] [1888880000031393] +15:45:45 [ 3] [ 6] [012000] +15:45:45 [ 4] [ 12] [000010000000] +15:45:45 [ 7] [ 10] [0320154540] +15:45:45 [ 11] [ 6] [787950] +15:45:45 [ 12] [ 6] [154540] +15:45:45 [ 13] [ 4] [0320] +15:45:45 [ 15] [ 4] [0320] +15:45:45 [ 18] [ 4] [6011] +15:45:45 [ 22] [ 3] [900] +15:45:45 [ 25] [ 2] [02] +15:45:45 [ 28] [ 9] [D00002000] +15:45:45 [ 32] [ 6] [621354] +15:45:45 [ 35] [ 32] [1888880000031393=000010100000334] +15:45:45 [ 37] [ 12] [507904795736] +15:45:45 [ 41] [ 8] [07001500] +15:45:45 [ 42] [ 15] [NATIVE ] +15:45:45 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +15:45:45 [ 49] [ 3] [418] +15:45:45 [ 52] [ 16] [9F79DE13F269CCEE] +15:45:45 ============================================================================ +15:45:45 + + +waiting on router queue for slot.... +15:45:45 Sending to : +15:45:45 ============================================================================ +15:45:45 ============================================================================ +15:45:45 Slot Id : <408> +15:45:45 Transaction Type : REQUEST +15:45:45 Received From : +15:45:45 ============================================================================ +15:45:45 FNo. Len. Field Value +15:45:45 ============================================================================ +15:45:45 [ 1] [ 4] [0200] +15:45:45 [ 2] [ 16] [1888880000031393] +15:45:45 [ 3] [ 6] [012000] +15:45:45 [ 4] [ 12] [000010000000] +15:45:45 [ 7] [ 10] [0320154540] +15:45:45 [ 11] [ 6] [787950] +15:45:45 [ 12] [ 6] [154540] +15:45:45 [ 13] [ 4] [0320] +15:45:45 [ 15] [ 4] [0320] +15:45:45 [ 18] [ 4] [6011] +15:45:45 [ 22] [ 3] [900] +15:45:45 [ 25] [ 2] [02] +15:45:45 [ 28] [ 9] [D00002000] +15:45:45 [ 32] [ 6] [621354] +15:45:45 [ 35] [ 32] [1888880000031393=000010100000334] +15:45:45 [ 37] [ 12] [507904795736] +15:45:45 [ 41] [ 8] [07001500] +15:45:45 [ 42] [ 15] [NATIVE ] +15:45:45 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +15:45:45 [ 49] [ 3] [418] +15:45:45 [ 52] [ 16] [E455E7C85991F52D] +15:45:45 ============================================================================ +15:45:45 + + +waiting on router queue for slot.... +15:45:45 Sending to : <5> +15:45:45 ============================================================================ +15:45:47 ============================================================================ +15:45:47 Slot Id : <362> +15:45:47 Transaction Type : REQUEST +15:45:47 Received From : +15:45:47 ============================================================================ +15:45:47 FNo. Len. Field Value +15:45:47 ============================================================================ +15:45:47 [ 1] [ 4] [0800] +15:45:47 [ 7] [ 10] [0320084454] +15:45:47 [ 11] [ 6] [157085] +15:45:47 [ 70] [ 3] [301] +15:45:47 ============================================================================ +15:45:47 + + +waiting on router queue for slot.... +15:45:47 Sending to : +15:45:47 ============================================================================ +15:45:47 ============================================================================ +15:45:47 Slot Id : <362> +15:45:47 Transaction Type : RESPONSE +15:45:47 Received From : +15:45:47 ============================================================================ +15:45:47 FNo. Len. Field Value +15:45:47 ============================================================================ +15:45:47 [ 1] [ 4] [0810] +15:45:47 [ 7] [ 10] [0320084454] +15:45:47 [ 11] [ 6] [157085] +15:45:47 [ 39] [ 2] [00] +15:45:47 [ 70] [ 3] [301] +15:45:47 ============================================================================ +15:45:47 Calculate Source COMM Id = 2 +15:45:47 ============================================================================ +15:45:47 + + +waiting on router queue for slot.... +15:45:50 ============================================================================ +15:45:50 Slot Id : <392> +15:45:50 Transaction Type : REQUEST +15:45:50 Received From : +15:45:50 ============================================================================ +15:45:50 FNo. Len. Field Value +15:45:50 ============================================================================ +15:45:50 [ 1] [ 4] [0200] +15:45:50 [ 2] [ 16] [6688990103278709] +15:45:50 [ 3] [ 6] [010000] +15:45:50 [ 4] [ 12] [000100000000] +15:45:50 [ 7] [ 10] [0320154545] +15:45:50 [ 11] [ 6] [787967] +15:45:50 [ 12] [ 6] [154545] +15:45:50 [ 13] [ 4] [0320] +15:45:50 [ 15] [ 4] [0320] +15:45:50 [ 18] [ 4] [6011] +15:45:50 [ 22] [ 3] [900] +15:45:50 [ 25] [ 2] [02] +15:45:50 [ 28] [ 9] [D00002000] +15:45:50 [ 32] [ 6] [621354] +15:45:50 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:45:50 [ 37] [ 12] [507903499531] +15:45:50 [ 41] [ 8] [06002200] +15:45:50 [ 42] [ 15] [NATIVE ] +15:45:50 [ 43] [ 40] [Beng Market Beng LAO] +15:45:50 [ 49] [ 3] [418] +15:45:50 [ 52] [ 16] [074840EF52131956] +15:45:50 ============================================================================ +15:45:50 + + +waiting on router queue for slot.... +15:45:50 Sending to : +15:45:50 ============================================================================ +15:45:50 Sending to : +15:45:50 ============================================================================ +15:45:50 ============================================================================ +15:45:50 Slot Id : <392> +15:45:50 Transaction Type : REQUEST +15:45:50 Received From : +15:45:50 ============================================================================ +15:45:50 FNo. Len. Field Value +15:45:50 ============================================================================ +15:45:50 [ 1] [ 4] [0200] +15:45:50 [ 2] [ 16] [6688990103278709] +15:45:50 [ 3] [ 6] [010000] +15:45:50 [ 4] [ 12] [000100000000] +15:45:50 [ 7] [ 10] [0320154545] +15:45:50 [ 11] [ 6] [787967] +15:45:50 [ 12] [ 6] [154545] +15:45:50 [ 13] [ 4] [0320] +15:45:50 [ 15] [ 4] [0320] +15:45:50 [ 18] [ 4] [6011] +15:45:50 [ 22] [ 3] [900] +15:45:50 [ 25] [ 2] [02] +15:45:50 [ 28] [ 9] [D00002000] +15:45:50 [ 32] [ 6] [621354] +15:45:50 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:45:50 [ 37] [ 12] [507903499531] +15:45:50 [ 41] [ 8] [06002200] +15:45:50 [ 42] [ 15] [NATIVE ] +15:45:50 [ 43] [ 40] [Beng Market Beng LAO] +15:45:50 [ 49] [ 3] [418] +15:45:50 [ 52] [ 16] [074840EF52131956] +15:45:50 ============================================================================ +15:45:50 + + +waiting on router queue for slot.... +15:45:50 Sending to : +15:45:50 ============================================================================ +15:45:50 ============================================================================ +15:45:50 Slot Id : <392> +15:45:50 Transaction Type : REQUEST +15:45:50 Received From : +15:45:50 ============================================================================ +15:45:50 FNo. Len. Field Value +15:45:50 ============================================================================ +15:45:50 [ 1] [ 4] [0200] +15:45:50 [ 2] [ 16] [6688990103278709] +15:45:50 [ 3] [ 6] [010000] +15:45:50 [ 4] [ 12] [000100000000] +15:45:50 [ 7] [ 10] [0320154545] +15:45:50 [ 11] [ 6] [787967] +15:45:50 [ 12] [ 6] [154545] +15:45:50 [ 13] [ 4] [0320] +15:45:50 [ 15] [ 4] [0320] +15:45:50 [ 18] [ 4] [6011] +15:45:50 [ 22] [ 3] [900] +15:45:50 [ 25] [ 2] [02] +15:45:50 [ 28] [ 9] [D00002000] +15:45:50 [ 32] [ 6] [621354] +15:45:50 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:45:50 [ 37] [ 12] [507903499531] +15:45:50 [ 41] [ 8] [06002200] +15:45:50 [ 42] [ 15] [NATIVE ] +15:45:50 [ 43] [ 40] [Beng Market Beng LAO] +15:45:50 [ 49] [ 3] [418] +15:45:50 [ 52] [ 16] [0426EA177F496FF2] +15:45:50 ============================================================================ +15:45:50 + + +waiting on router queue for slot.... +15:45:50 Sending to : <4> +15:45:50 ============================================================================ +15:45:51 ============================================================================ +15:45:51 Slot Id : <392> +15:45:51 Transaction Type : RESPONSE +15:45:51 Received From : +15:45:51 ============================================================================ +15:45:51 FNo. Len. Field Value +15:45:51 ============================================================================ +15:45:51 [ 1] [ 4] [0210] +15:45:51 [ 2] [ 16] [6688990103278709] +15:45:51 [ 3] [ 6] [010000] +15:45:51 [ 4] [ 12] [000100000000] +15:45:51 [ 11] [ 6] [787967] +15:45:51 [ 12] [ 6] [154545] +15:45:51 [ 15] [ 4] [0320] +15:45:51 [ 18] [ 4] [6011] +15:45:51 [ 32] [ 6] [621354] +15:45:51 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:45:51 [ 37] [ 12] [507903499531] +15:45:51 [ 38] [ 6] [635742] +15:45:51 [ 39] [ 2] [00] +15:45:51 [ 41] [ 8] [06002200] +15:45:51 [ 49] [ 3] [418] +15:45:51 [ 54] [ 20] [0002418C000120905851] +15:45:51 ============================================================================ +15:45:51 Sending to : +15:45:51 ============================================================================ +15:45:51 + + +waiting on router queue for slot.... +15:45:53 ============================================================================ +15:45:53 Slot Id : <392> +15:45:53 Transaction Type : RESPONSE +15:45:53 Received From : +15:45:53 ============================================================================ +15:45:53 FNo. Len. Field Value +15:45:53 ============================================================================ +15:45:53 [ 1] [ 4] [0210] +15:45:53 [ 2] [ 16] [6688990103278709] +15:45:53 [ 3] [ 6] [010000] +15:45:53 [ 4] [ 12] [000100000000] +15:45:53 [ 11] [ 6] [787967] +15:45:53 [ 12] [ 6] [154545] +15:45:53 [ 15] [ 4] [0320] +15:45:53 [ 18] [ 4] [6011] +15:45:53 [ 32] [ 6] [621354] +15:45:53 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:45:53 [ 37] [ 12] [507903499531] +15:45:53 [ 38] [ 6] [635742] +15:45:53 [ 39] [ 2] [00] +15:45:53 [ 41] [ 8] [06002200] +15:45:53 [ 49] [ 3] [418] +15:45:53 [ 54] [ 20] [0002418C000120905851] +15:45:53 ============================================================================ +15:45:53 Calculate Source COMM Id = 0 +15:45:53 ============================================================================ +15:45:53 + + +waiting on router queue for slot.... +15:45:53 ============================================================================ +15:45:53 Slot Id : <408> +15:45:53 Transaction Type : RESPONSE +15:45:53 Received From : +15:45:53 ============================================================================ +15:45:53 FNo. Len. Field Value +15:45:53 ============================================================================ +15:45:53 [ 1] [ 4] [0210] +15:45:53 [ 2] [ 16] [1888880000031393] +15:45:53 [ 3] [ 6] [012000] +15:45:53 [ 4] [ 12] [000010000000] +15:45:53 [ 7] [ 10] [0320154540] +15:45:53 [ 11] [ 6] [787950] +15:45:53 [ 12] [ 6] [154540] +15:45:53 [ 13] [ 4] [0320] +15:45:53 [ 15] [ 4] [0320] +15:45:53 [ 18] [ 4] [6011] +15:45:53 [ 19] [ 3] [418] +15:45:53 [ 32] [ 6] [621354] +15:45:53 [ 37] [ 12] [507904795736] +15:45:53 [ 38] [ 6] [506473] +15:45:53 [ 39] [ 2] [00] +15:45:53 [ 41] [ 8] [07001500] +15:45:53 [ 49] [ 3] [418] +15:45:53 [ 54] [ 0] [] +15:45:53 ============================================================================ +15:45:53 Sending to : +15:45:53 ============================================================================ +15:45:53 + + +waiting on router queue for slot.... +15:45:55 ============================================================================ +15:45:55 Slot Id : <408> +15:45:55 Transaction Type : RESPONSE +15:45:55 Received From : +15:45:55 ============================================================================ +15:45:55 FNo. Len. Field Value +15:45:55 ============================================================================ +15:45:55 [ 1] [ 4] [0210] +15:45:55 [ 2] [ 16] [1888880000031393] +15:45:55 [ 3] [ 6] [012000] +15:45:55 [ 4] [ 12] [000010000000] +15:45:55 [ 7] [ 10] [0320154540] +15:45:55 [ 11] [ 6] [787950] +15:45:55 [ 12] [ 6] [154540] +15:45:55 [ 13] [ 4] [0320] +15:45:55 [ 15] [ 4] [0320] +15:45:55 [ 18] [ 4] [6011] +15:45:55 [ 19] [ 3] [418] +15:45:55 [ 32] [ 6] [621354] +15:45:55 [ 37] [ 12] [507904795736] +15:45:55 [ 38] [ 6] [506473] +15:45:55 [ 39] [ 2] [00] +15:45:55 [ 41] [ 8] [07001500] +15:45:55 [ 49] [ 3] [418] +15:45:55 [ 54] [ 0] [] +15:45:55 ============================================================================ +15:45:55 Calculate Source COMM Id = 0 +15:45:55 ============================================================================ +15:45:55 + + +waiting on router queue for slot.... +15:45:58 ============================================================================ +15:45:58 Slot Id : <385> +15:45:58 Transaction Type : REQUEST +15:45:58 Received From : +15:45:58 ============================================================================ +15:45:58 FNo. Len. Field Value +15:45:58 ============================================================================ +15:45:58 [ 1] [ 4] [0800] +15:45:58 [ 7] [ 10] [0320084505] +15:45:58 [ 11] [ 6] [157086] +15:45:58 [ 70] [ 3] [301] +15:45:58 ============================================================================ +15:45:58 + + +waiting on router queue for slot.... +15:45:58 Sending to : +15:45:58 ============================================================================ +15:45:58 ============================================================================ +15:45:58 Slot Id : <385> +15:45:58 Transaction Type : RESPONSE +15:45:58 Received From : +15:45:58 ============================================================================ +15:45:58 FNo. Len. Field Value +15:45:58 ============================================================================ +15:45:58 [ 1] [ 4] [0810] +15:45:58 [ 7] [ 10] [0320084505] +15:45:58 [ 11] [ 6] [157086] +15:45:58 [ 39] [ 2] [00] +15:45:58 [ 70] [ 3] [301] +15:45:58 ============================================================================ +15:45:58 Calculate Source COMM Id = 2 +15:45:58 ============================================================================ +15:45:58 + + +waiting on router queue for slot.... +15:46:00 ============================================================================ +15:46:00 Slot Id : <375> +15:46:00 Transaction Type : REQUEST +15:46:00 Received From : +15:46:00 ============================================================================ +15:46:00 FNo. Len. Field Value +15:46:00 ============================================================================ +15:46:00 [ 1] [ 4] [0200] +15:46:00 [ 2] [ 16] [6213543000035757] +15:46:00 [ 3] [ 6] [301000] +15:46:00 [ 7] [ 10] [0320084507] +15:46:00 [ 11] [ 6] [270117] +15:46:00 [ 12] [ 6] [154507] +15:46:00 [ 13] [ 4] [0320] +15:46:00 [ 14] [ 4] [4912] +15:46:00 [ 15] [ 4] [0320] +15:46:00 [ 18] [ 4] [6011] +15:46:00 [ 19] [ 3] [418] +15:46:00 [ 22] [ 3] [021] +15:46:00 [ 25] [ 2] [01] +15:46:00 [ 32] [ 6] [180893] +15:46:00 [ 35] [ 32] [6213543000035757=491212013575384] +15:46:00 [ 37] [ 12] [507908270117] +15:46:00 [ 41] [ 8] [0441VT52] +15:46:00 [ 42] [ 15] [999999 ] +15:46:00 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:46:00 [ 49] [ 3] [418] +15:46:00 [ 52] [ 16] [BF0C64BC0CBFC86C] +15:46:00 ============================================================================ +15:46:00 + + +waiting on router queue for slot.... +15:46:00 Sending to : +15:46:00 ============================================================================ +15:46:00 Sending to : +15:46:00 ============================================================================ +15:46:01 ============================================================================ +15:46:01 Slot Id : <375> +15:46:01 Transaction Type : REQUEST +15:46:01 Received From : +15:46:01 ============================================================================ +15:46:01 FNo. Len. Field Value +15:46:01 ============================================================================ +15:46:01 [ 1] [ 4] [0200] +15:46:01 [ 2] [ 16] [6213543000035757] +15:46:01 [ 3] [ 6] [301000] +15:46:01 [ 7] [ 10] [0320084507] +15:46:01 [ 11] [ 6] [270117] +15:46:01 [ 12] [ 6] [154507] +15:46:01 [ 13] [ 4] [0320] +15:46:01 [ 14] [ 4] [4912] +15:46:01 [ 15] [ 4] [0320] +15:46:01 [ 18] [ 4] [6011] +15:46:01 [ 19] [ 3] [418] +15:46:01 [ 22] [ 3] [021] +15:46:01 [ 25] [ 2] [01] +15:46:01 [ 32] [ 6] [180893] +15:46:01 [ 35] [ 32] [6213543000035757=491212013575384] +15:46:01 [ 37] [ 12] [507908270117] +15:46:01 [ 41] [ 8] [0441VT52] +15:46:01 [ 42] [ 15] [999999 ] +15:46:01 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:46:01 [ 49] [ 3] [418] +15:46:01 [ 52] [ 16] [BF0C64BC0CBFC86C] +15:46:01 ============================================================================ +15:46:01 + + +waiting on router queue for slot.... +15:46:01 Sending to : +15:46:01 ============================================================================ +15:46:01 ============================================================================ +15:46:01 Slot Id : <375> +15:46:01 Transaction Type : REQUEST +15:46:01 Received From : +15:46:01 ============================================================================ +15:46:01 FNo. Len. Field Value +15:46:01 ============================================================================ +15:46:01 [ 1] [ 4] [0200] +15:46:01 [ 2] [ 16] [6213543000035757] +15:46:01 [ 3] [ 6] [301000] +15:46:01 [ 7] [ 10] [0320084507] +15:46:01 [ 11] [ 6] [270117] +15:46:01 [ 12] [ 6] [154507] +15:46:01 [ 13] [ 4] [0320] +15:46:01 [ 14] [ 4] [4912] +15:46:01 [ 15] [ 4] [0320] +15:46:01 [ 18] [ 4] [6011] +15:46:01 [ 19] [ 3] [418] +15:46:01 [ 22] [ 3] [021] +15:46:01 [ 25] [ 2] [01] +15:46:01 [ 32] [ 6] [180893] +15:46:01 [ 35] [ 32] [6213543000035757=491212013575384] +15:46:01 [ 37] [ 12] [507908270117] +15:46:01 [ 41] [ 8] [0441VT52] +15:46:01 [ 42] [ 15] [999999 ] +15:46:01 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:46:01 [ 49] [ 3] [418] +15:46:01 [ 52] [ 16] [F40E55C2D91EF6C4] +15:46:01 ============================================================================ +15:46:01 + + +waiting on router queue for slot.... +15:46:01 Sending to : <0> +15:46:01 ============================================================================ +15:46:01 ============================================================================ +15:46:01 Slot Id : <375> +15:46:01 Transaction Type : RESPONSE +15:46:01 Received From : +15:46:01 ============================================================================ +15:46:01 FNo. Len. Field Value +15:46:01 ============================================================================ +15:46:01 [ 1] [ 4] [0210] +15:46:01 [ 2] [ 16] [6213543000035757] +15:46:01 [ 3] [ 6] [301000] +15:46:01 [ 4] [ 12] [000000000000] +15:46:01 [ 7] [ 10] [0320084507] +15:46:01 [ 11] [ 6] [270117] +15:46:01 [ 12] [ 6] [154507] +15:46:01 [ 13] [ 4] [0320] +15:46:01 [ 15] [ 4] [0320] +15:46:01 [ 18] [ 4] [6011] +15:46:01 [ 19] [ 3] [418] +15:46:01 [ 32] [ 6] [180893] +15:46:01 [ 35] [ 32] [6213543000035757=491212013575384] +15:46:01 [ 37] [ 12] [507908270117] +15:46:01 [ 38] [ 6] [426108] +15:46:01 [ 39] [ 2] [00] +15:46:01 [ 41] [ 8] [0441VT52] +15:46:01 [ 49] [ 3] [418] +15:46:01 [ 54] [ 40] [1001418C0000248247021002418C000024824702] +15:46:01 ============================================================================ +15:46:01 Sending to : +15:46:01 ============================================================================ +15:46:01 + + +waiting on router queue for slot.... +15:46:02 ============================================================================ +15:46:02 Slot Id : <375> +15:46:02 Transaction Type : RESPONSE +15:46:02 Received From : +15:46:02 ============================================================================ +15:46:02 FNo. Len. Field Value +15:46:02 ============================================================================ +15:46:02 [ 1] [ 4] [0210] +15:46:02 [ 2] [ 16] [6213543000035757] +15:46:02 [ 3] [ 6] [301000] +15:46:02 [ 4] [ 12] [000000000000] +15:46:02 [ 7] [ 10] [0320084507] +15:46:02 [ 11] [ 6] [270117] +15:46:02 [ 12] [ 6] [154507] +15:46:02 [ 13] [ 4] [0320] +15:46:02 [ 15] [ 4] [0320] +15:46:02 [ 18] [ 4] [6011] +15:46:02 [ 19] [ 3] [418] +15:46:02 [ 32] [ 6] [180893] +15:46:02 [ 35] [ 32] [6213543000035757=491212013575384] +15:46:02 [ 37] [ 12] [507908270117] +15:46:02 [ 38] [ 6] [426108] +15:46:02 [ 39] [ 2] [00] +15:46:02 [ 41] [ 8] [0441VT52] +15:46:02 [ 49] [ 3] [418] +15:46:02 [ 54] [ 40] [1001418C0000248247021002418C000024824702] +15:46:02 ============================================================================ +15:46:02 Calculate Source COMM Id = 2 +15:46:02 ============================================================================ +15:46:02 + + +waiting on router queue for slot.... +15:46:09 ============================================================================ +15:46:09 Slot Id : <450> +15:46:09 Transaction Type : REQUEST +15:46:09 Received From : +15:46:09 ============================================================================ +15:46:09 FNo. Len. Field Value +15:46:09 ============================================================================ +15:46:09 [ 1] [ 4] [0800] +15:46:09 [ 2] [ 5] [02531] +15:46:09 [ 3] [ 6] [579158] +15:46:09 [ 7] [ 10] [0320084609] +15:46:09 [ 11] [ 6] [807327] +15:46:09 [ 15] [ 10] [0320084609] +15:46:09 [ 37] [ 11] [57915807327] +15:46:09 [ 70] [ 3] [001] +15:46:09 ============================================================================ +15:46:09 + + +waiting on router queue for slot.... +15:46:09 ============================================================================ +15:46:09 Slot Id : <450> +15:46:09 Transaction Type : RESPONSE +15:46:09 Received From : +15:46:09 ============================================================================ +15:46:09 FNo. Len. Field Value +15:46:09 ============================================================================ +15:46:09 [ 1] [ 4] [0810] +15:46:09 [ 7] [ 10] [0320084609] +15:46:09 [ 11] [ 6] [807327] +15:46:09 [ 15] [ 4] [0320] +15:46:09 [ 37] [ 12] [57915807327] +15:46:09 [ 39] [ 2] [00] +15:46:09 [ 70] [ 3] [001] +15:46:09 ============================================================================ +15:46:09 Sending to : +15:46:09 ============================================================================ +15:46:09 + + +waiting on router queue for slot.... +15:46:10 ============================================================================ +15:46:10 Slot Id : <412> +15:46:10 Transaction Type : REQUEST +15:46:10 Received From : +15:46:10 ============================================================================ +15:46:10 FNo. Len. Field Value +15:46:10 ============================================================================ +15:46:10 [ 1] [ 4] [0200] +15:46:10 [ 2] [ 16] [6688990105246308] +15:46:10 [ 3] [ 6] [301000] +15:46:10 [ 4] [ 12] [000000000000] +15:46:10 [ 7] [ 10] [0320154606] +15:46:10 [ 11] [ 6] [788032] +15:46:10 [ 12] [ 6] [154606] +15:46:10 [ 13] [ 4] [0320] +15:46:10 [ 15] [ 4] [0320] +15:46:10 [ 18] [ 4] [6011] +15:46:10 [ 22] [ 3] [900] +15:46:10 [ 25] [ 2] [02] +15:46:10 [ 28] [ 9] [D00002000] +15:46:10 [ 32] [ 6] [621354] +15:46:10 [ 35] [ 37] [6688990105246308=43081231630808500000] +15:46:10 [ 37] [ 12] [507904719752] +15:46:10 [ 41] [ 8] [18001000] +15:46:10 [ 42] [ 15] [NATIVE ] +15:46:10 [ 43] [ 40] [Khoua Unit Khoua LAO] +15:46:10 [ 49] [ 3] [418] +15:46:10 [ 52] [ 16] [12DCD181704738BE] +15:46:10 ============================================================================ +15:46:10 + + +waiting on router queue for slot.... +15:46:10 Sending to : +15:46:10 ============================================================================ +15:46:10 Sending to : +15:46:10 ============================================================================ +15:46:11 ============================================================================ +15:46:11 Slot Id : <412> +15:46:11 Transaction Type : REQUEST +15:46:11 Received From : +15:46:11 ============================================================================ +15:46:11 FNo. Len. Field Value +15:46:11 ============================================================================ +15:46:11 [ 1] [ 4] [0200] +15:46:11 [ 2] [ 16] [6688990105246308] +15:46:11 [ 3] [ 6] [301000] +15:46:11 [ 4] [ 12] [000000000000] +15:46:11 [ 7] [ 10] [0320154606] +15:46:11 [ 11] [ 6] [788032] +15:46:11 [ 12] [ 6] [154606] +15:46:11 [ 13] [ 4] [0320] +15:46:11 [ 15] [ 4] [0320] +15:46:11 [ 18] [ 4] [6011] +15:46:11 [ 22] [ 3] [900] +15:46:11 [ 25] [ 2] [02] +15:46:11 [ 28] [ 9] [D00002000] +15:46:11 [ 32] [ 6] [621354] +15:46:11 [ 35] [ 37] [6688990105246308=43081231630808500000] +15:46:11 [ 37] [ 12] [507904719752] +15:46:11 [ 41] [ 8] [18001000] +15:46:11 [ 42] [ 15] [NATIVE ] +15:46:11 [ 43] [ 40] [Khoua Unit Khoua LAO] +15:46:11 [ 49] [ 3] [418] +15:46:11 [ 52] [ 16] [12DCD181704738BE] +15:46:11 ============================================================================ +15:46:11 + + +waiting on router queue for slot.... +15:46:11 Sending to : +15:46:11 ============================================================================ +15:46:11 ============================================================================ +15:46:11 Slot Id : <412> +15:46:11 Transaction Type : REQUEST +15:46:11 Received From : +15:46:11 ============================================================================ +15:46:11 FNo. Len. Field Value +15:46:11 ============================================================================ +15:46:11 [ 1] [ 4] [0200] +15:46:11 [ 2] [ 16] [6688990105246308] +15:46:11 [ 3] [ 6] [301000] +15:46:11 [ 4] [ 12] [000000000000] +15:46:11 [ 7] [ 10] [0320154606] +15:46:11 [ 11] [ 6] [788032] +15:46:11 [ 12] [ 6] [154606] +15:46:11 [ 13] [ 4] [0320] +15:46:11 [ 15] [ 4] [0320] +15:46:11 [ 18] [ 4] [6011] +15:46:11 [ 22] [ 3] [900] +15:46:11 [ 25] [ 2] [02] +15:46:11 [ 28] [ 9] [D00002000] +15:46:11 [ 32] [ 6] [621354] +15:46:11 [ 35] [ 37] [6688990105246308=43081231630808500000] +15:46:11 [ 37] [ 12] [507904719752] +15:46:11 [ 41] [ 8] [18001000] +15:46:11 [ 42] [ 15] [NATIVE ] +15:46:11 [ 43] [ 40] [Khoua Unit Khoua LAO] +15:46:11 [ 49] [ 3] [418] +15:46:11 [ 52] [ 16] [AEA63D803ABA3DEF] +15:46:11 ============================================================================ +15:46:11 + + +waiting on router queue for slot.... +15:46:11 Sending to : <4> +15:46:11 ============================================================================ +15:46:12 ============================================================================ +15:46:12 Slot Id : <412> +15:46:12 Transaction Type : RESPONSE +15:46:12 Received From : +15:46:12 ============================================================================ +15:46:12 FNo. Len. Field Value +15:46:12 ============================================================================ +15:46:12 [ 1] [ 4] [0210] +15:46:12 [ 2] [ 16] [6688990105246308] +15:46:12 [ 3] [ 6] [301000] +15:46:12 [ 4] [ 12] [000000000000] +15:46:12 [ 11] [ 6] [788032] +15:46:12 [ 12] [ 6] [154606] +15:46:12 [ 15] [ 4] [0320] +15:46:12 [ 18] [ 4] [6011] +15:46:12 [ 32] [ 6] [621354] +15:46:12 [ 35] [ 37] [6688990105246308=43081231630808500000] +15:46:12 [ 37] [ 12] [507904719752] +15:46:12 [ 38] [ 6] [239285] +15:46:12 [ 39] [ 2] [00] +15:46:12 [ 41] [ 8] [18001000] +15:46:12 [ 49] [ 3] [418] +15:46:12 [ 54] [ 20] [1002418C000240549943] +15:46:12 ============================================================================ +15:46:12 Sending to : +15:46:12 ============================================================================ +15:46:12 + + +waiting on router queue for slot.... +15:46:13 ============================================================================ +15:46:13 Slot Id : <412> +15:46:13 Transaction Type : RESPONSE +15:46:13 Received From : +15:46:13 ============================================================================ +15:46:13 FNo. Len. Field Value +15:46:13 ============================================================================ +15:46:13 [ 1] [ 4] [0210] +15:46:13 [ 2] [ 16] [6688990105246308] +15:46:13 [ 3] [ 6] [301000] +15:46:13 [ 4] [ 12] [000000000000] +15:46:13 [ 11] [ 6] [788032] +15:46:13 [ 12] [ 6] [154606] +15:46:13 [ 15] [ 4] [0320] +15:46:13 [ 18] [ 4] [6011] +15:46:13 [ 32] [ 6] [621354] +15:46:13 [ 35] [ 37] [6688990105246308=43081231630808500000] +15:46:13 [ 37] [ 12] [507904719752] +15:46:13 [ 38] [ 6] [239285] +15:46:13 [ 39] [ 2] [00] +15:46:13 [ 41] [ 8] [18001000] +15:46:13 [ 49] [ 3] [418] +15:46:13 [ 54] [ 20] [1002418C000240549943] +15:46:13 ============================================================================ +15:46:13 Calculate Source COMM Id = 0 +15:46:13 ============================================================================ +15:46:13 + + +waiting on router queue for slot.... +15:46:14 ============================================================================ +15:46:14 Slot Id : <417> +15:46:14 Transaction Type : REQUEST +15:46:14 Received From : +15:46:14 ============================================================================ +15:46:14 FNo. Len. Field Value +15:46:14 ============================================================================ +15:46:14 [ 1] [ 4] [0800] +15:46:14 [ 7] [ 10] [0320084521] +15:46:14 [ 11] [ 6] [157087] +15:46:14 [ 70] [ 3] [301] +15:46:14 ============================================================================ +15:46:14 + + +waiting on router queue for slot.... +15:46:14 Sending to : +15:46:14 ============================================================================ +15:46:14 ============================================================================ +15:46:14 Slot Id : <417> +15:46:14 Transaction Type : RESPONSE +15:46:14 Received From : +15:46:14 ============================================================================ +15:46:14 FNo. Len. Field Value +15:46:14 ============================================================================ +15:46:14 [ 1] [ 4] [0810] +15:46:14 [ 7] [ 10] [0320084521] +15:46:14 [ 11] [ 6] [157087] +15:46:14 [ 39] [ 2] [00] +15:46:14 [ 70] [ 3] [301] +15:46:14 ============================================================================ +15:46:14 Calculate Source COMM Id = 2 +15:46:14 ============================================================================ +15:46:14 + + +waiting on router queue for slot.... +15:46:21 ============================================================================ +15:46:21 Slot Id : <447> +15:46:21 Transaction Type : REQUEST +15:46:21 Received From : +15:46:21 ============================================================================ +15:46:21 FNo. Len. Field Value +15:46:21 ============================================================================ +15:46:21 [ 1] [ 4] [0800] +15:46:21 [ 7] [ 10] [0320084412] +15:46:21 [ 11] [ 6] [096390] +15:46:21 [ 37] [ 12] [57915096390] +15:46:21 [ 70] [ 3] [301] +15:46:21 ============================================================================ +15:46:21 + + +waiting on router queue for slot.... +15:46:21 Sending to : +15:46:21 ============================================================================ +15:46:21 ============================================================================ +15:46:21 Slot Id : <447> +15:46:21 Transaction Type : RESPONSE +15:46:21 Received From : +15:46:21 ============================================================================ +15:46:21 FNo. Len. Field Value +15:46:21 ============================================================================ +15:46:21 [ 1] [ 4] [0810] +15:46:21 [ 7] [ 10] [0320084412] +15:46:21 [ 11] [ 6] [096390] +15:46:21 [ 37] [ 12] [579150963900] +15:46:21 [ 39] [ 2] [00] +15:46:21 [ 70] [ 3] [810] +15:46:21 ============================================================================ +15:46:21 Calculate Source COMM Id = 4 +15:46:21 ============================================================================ +15:46:21 + + +waiting on router queue for slot.... +15:46:23 ============================================================================ +15:46:23 Slot Id : <391> +15:46:23 Transaction Type : REQUEST +15:46:23 Received From : +15:46:23 ============================================================================ +15:46:23 FNo. Len. Field Value +15:46:23 ============================================================================ +15:46:23 [ 1] [ 4] [0200] +15:46:23 [ 2] [ 16] [6213545000882377] +15:46:23 [ 3] [ 6] [010000] +15:46:23 [ 4] [ 12] [000010000000] +15:46:23 [ 7] [ 10] [0320084530] +15:46:23 [ 11] [ 6] [270120] +15:46:23 [ 12] [ 6] [154530] +15:46:23 [ 13] [ 4] [0320] +15:46:23 [ 14] [ 4] [4912] +15:46:23 [ 15] [ 4] [0320] +15:46:23 [ 18] [ 4] [6011] +15:46:23 [ 19] [ 3] [418] +15:46:23 [ 22] [ 3] [021] +15:46:23 [ 25] [ 2] [01] +15:46:23 [ 28] [ 9] [D00002000] +15:46:23 [ 32] [ 6] [180893] +15:46:23 [ 35] [ 32] [6213545000882377=491212018237292] +15:46:23 [ 37] [ 12] [507908270120] +15:46:23 [ 41] [ 8] [0243VTKS] +15:46:23 [ 42] [ 15] [999999 ] +15:46:23 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:46:23 [ 49] [ 3] [418] +15:46:23 [ 52] [ 16] [1F1F153BD2C68BB0] +15:46:23 ============================================================================ +15:46:23 + + +waiting on router queue for slot.... +15:46:23 Sending to : +15:46:23 ============================================================================ +15:46:23 Sending to : +15:46:23 ============================================================================ +15:46:24 ============================================================================ +15:46:24 Slot Id : <391> +15:46:24 Transaction Type : REQUEST +15:46:24 Received From : +15:46:24 ============================================================================ +15:46:24 FNo. Len. Field Value +15:46:24 ============================================================================ +15:46:24 [ 1] [ 4] [0200] +15:46:24 [ 2] [ 16] [6213545000882377] +15:46:24 [ 3] [ 6] [010000] +15:46:24 [ 4] [ 12] [000010000000] +15:46:24 [ 7] [ 10] [0320084530] +15:46:24 [ 11] [ 6] [270120] +15:46:24 [ 12] [ 6] [154530] +15:46:24 [ 13] [ 4] [0320] +15:46:24 [ 14] [ 4] [4912] +15:46:24 [ 15] [ 4] [0320] +15:46:24 [ 18] [ 4] [6011] +15:46:24 [ 19] [ 3] [418] +15:46:24 [ 22] [ 3] [021] +15:46:24 [ 25] [ 2] [01] +15:46:24 [ 28] [ 9] [D00002000] +15:46:24 [ 32] [ 6] [180893] +15:46:24 [ 35] [ 32] [6213545000882377=491212018237292] +15:46:24 [ 37] [ 12] [507908270120] +15:46:24 [ 41] [ 8] [0243VTKS] +15:46:24 [ 42] [ 15] [999999 ] +15:46:24 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:46:24 [ 49] [ 3] [418] +15:46:24 [ 52] [ 16] [1F1F153BD2C68BB0] +15:46:24 ============================================================================ +15:46:24 + + +waiting on router queue for slot.... +15:46:24 Sending to : +15:46:24 ============================================================================ +15:46:24 ============================================================================ +15:46:24 Slot Id : <391> +15:46:24 Transaction Type : REQUEST +15:46:24 Received From : +15:46:24 ============================================================================ +15:46:24 FNo. Len. Field Value +15:46:24 ============================================================================ +15:46:24 [ 1] [ 4] [0200] +15:46:24 [ 2] [ 16] [6213545000882377] +15:46:24 [ 3] [ 6] [010000] +15:46:24 [ 4] [ 12] [000010000000] +15:46:24 [ 7] [ 10] [0320084530] +15:46:24 [ 11] [ 6] [270120] +15:46:24 [ 12] [ 6] [154530] +15:46:24 [ 13] [ 4] [0320] +15:46:24 [ 14] [ 4] [4912] +15:46:24 [ 15] [ 4] [0320] +15:46:24 [ 18] [ 4] [6011] +15:46:24 [ 19] [ 3] [418] +15:46:24 [ 22] [ 3] [021] +15:46:24 [ 25] [ 2] [01] +15:46:24 [ 28] [ 9] [D00002000] +15:46:24 [ 32] [ 6] [180893] +15:46:24 [ 35] [ 32] [6213545000882377=491212018237292] +15:46:24 [ 37] [ 12] [507908270120] +15:46:24 [ 41] [ 8] [0243VTKS] +15:46:24 [ 42] [ 15] [999999 ] +15:46:24 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +15:46:24 [ 49] [ 3] [418] +15:46:24 [ 52] [ 16] [3462C4C19DF84073] +15:46:24 ============================================================================ +15:46:24 + + +waiting on router queue for slot.... +15:46:24 Sending to : <0> +15:46:24 ============================================================================ +15:46:24 ============================================================================ +15:46:24 Slot Id : <391> +15:46:24 Transaction Type : RESPONSE +15:46:24 Received From : +15:46:24 ============================================================================ +15:46:24 FNo. Len. Field Value +15:46:24 ============================================================================ +15:46:24 [ 1] [ 4] [0210] +15:46:24 [ 2] [ 16] [6213545000882377] +15:46:24 [ 3] [ 6] [010000] +15:46:24 [ 4] [ 12] [000010000000] +15:46:24 [ 7] [ 10] [0320084530] +15:46:24 [ 11] [ 6] [270120] +15:46:24 [ 12] [ 6] [154530] +15:46:24 [ 13] [ 4] [0320] +15:46:24 [ 15] [ 4] [0320] +15:46:24 [ 18] [ 4] [6011] +15:46:24 [ 19] [ 3] [418] +15:46:24 [ 32] [ 6] [180893] +15:46:24 [ 35] [ 32] [6213545000882377=491212018237292] +15:46:24 [ 37] [ 12] [507908270120] +15:46:24 [ 38] [ 6] [398416] +15:46:24 [ 39] [ 2] [00] +15:46:24 [ 41] [ 8] [0243VTKS] +15:46:24 [ 49] [ 3] [418] +15:46:24 [ 54] [ 40] [0001418C0004548204960002418C000454820496] +15:46:24 ============================================================================ +15:46:24 Sending to : +15:46:24 ============================================================================ +15:46:24 + + +waiting on router queue for slot.... +15:46:26 ============================================================================ +15:46:26 Slot Id : <391> +15:46:26 Transaction Type : RESPONSE +15:46:26 Received From : +15:46:26 ============================================================================ +15:46:26 FNo. Len. Field Value +15:46:26 ============================================================================ +15:46:26 [ 1] [ 4] [0210] +15:46:26 [ 2] [ 16] [6213545000882377] +15:46:26 [ 3] [ 6] [010000] +15:46:26 [ 4] [ 12] [000010000000] +15:46:26 [ 7] [ 10] [0320084530] +15:46:26 [ 11] [ 6] [270120] +15:46:26 [ 12] [ 6] [154530] +15:46:26 [ 13] [ 4] [0320] +15:46:26 [ 15] [ 4] [0320] +15:46:26 [ 18] [ 4] [6011] +15:46:26 [ 19] [ 3] [418] +15:46:26 [ 32] [ 6] [180893] +15:46:26 [ 35] [ 32] [6213545000882377=491212018237292] +15:46:26 [ 37] [ 12] [507908270120] +15:46:26 [ 38] [ 6] [398416] +15:46:26 [ 39] [ 2] [00] +15:46:26 [ 41] [ 8] [0243VTKS] +15:46:26 [ 49] [ 3] [418] +15:46:26 [ 54] [ 40] [0001418C0004548204960002418C000454820496] +15:46:26 ============================================================================ +15:46:26 Calculate Source COMM Id = 2 +15:46:26 ============================================================================ +15:46:26 + + +waiting on router queue for slot.... +15:46:34 ============================================================================ +15:46:34 Slot Id : <443> +15:46:34 Transaction Type : REQUEST +15:46:34 Received From : +15:46:34 ============================================================================ +15:46:34 FNo. Len. Field Value +15:46:34 ============================================================================ +15:46:34 [ 1] [ 4] [0200] +15:46:34 [ 2] [ 16] [6213543000035757] +15:46:34 [ 3] [ 6] [011000] +15:46:34 [ 4] [ 12] [000015000000] +15:46:34 [ 7] [ 10] [0320084540] +15:46:34 [ 11] [ 6] [270122] +15:46:34 [ 12] [ 6] [154540] +15:46:34 [ 13] [ 4] [0320] +15:46:34 [ 14] [ 4] [4912] +15:46:34 [ 15] [ 4] [0320] +15:46:34 [ 18] [ 4] [6011] +15:46:34 [ 19] [ 3] [418] +15:46:34 [ 22] [ 3] [021] +15:46:34 [ 25] [ 2] [01] +15:46:34 [ 28] [ 9] [D00002000] +15:46:34 [ 32] [ 6] [180893] +15:46:34 [ 35] [ 32] [6213543000035757=491212013575384] +15:46:34 [ 37] [ 12] [507908270122] +15:46:34 [ 41] [ 8] [0441VT52] +15:46:34 [ 42] [ 15] [999999 ] +15:46:34 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:46:34 [ 49] [ 3] [418] +15:46:34 [ 52] [ 16] [BF0C64BC0CBFC86C] +15:46:34 ============================================================================ +15:46:34 + + +waiting on router queue for slot.... +15:46:34 Sending to : +15:46:34 ============================================================================ +15:46:34 Sending to : +15:46:34 ============================================================================ +15:46:34 ============================================================================ +15:46:34 Slot Id : <443> +15:46:34 Transaction Type : REQUEST +15:46:34 Received From : +15:46:34 ============================================================================ +15:46:34 FNo. Len. Field Value +15:46:34 ============================================================================ +15:46:34 [ 1] [ 4] [0200] +15:46:34 [ 2] [ 16] [6213543000035757] +15:46:34 [ 3] [ 6] [011000] +15:46:34 [ 4] [ 12] [000015000000] +15:46:34 [ 7] [ 10] [0320084540] +15:46:34 [ 11] [ 6] [270122] +15:46:34 [ 12] [ 6] [154540] +15:46:34 [ 13] [ 4] [0320] +15:46:34 [ 14] [ 4] [4912] +15:46:34 [ 15] [ 4] [0320] +15:46:34 [ 18] [ 4] [6011] +15:46:34 [ 19] [ 3] [418] +15:46:34 [ 22] [ 3] [021] +15:46:34 [ 25] [ 2] [01] +15:46:34 [ 28] [ 9] [D00002000] +15:46:34 [ 32] [ 6] [180893] +15:46:34 [ 35] [ 32] [6213543000035757=491212013575384] +15:46:34 [ 37] [ 12] [507908270122] +15:46:34 [ 41] [ 8] [0441VT52] +15:46:34 [ 42] [ 15] [999999 ] +15:46:34 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:46:34 [ 49] [ 3] [418] +15:46:34 [ 52] [ 16] [BF0C64BC0CBFC86C] +15:46:34 ============================================================================ +15:46:34 + + +waiting on router queue for slot.... +15:46:34 Sending to : +15:46:34 ============================================================================ +15:46:34 ============================================================================ +15:46:34 Slot Id : <443> +15:46:34 Transaction Type : REQUEST +15:46:34 Received From : +15:46:34 ============================================================================ +15:46:34 FNo. Len. Field Value +15:46:34 ============================================================================ +15:46:34 [ 1] [ 4] [0200] +15:46:34 [ 2] [ 16] [6213543000035757] +15:46:34 [ 3] [ 6] [011000] +15:46:34 [ 4] [ 12] [000015000000] +15:46:34 [ 7] [ 10] [0320084540] +15:46:34 [ 11] [ 6] [270122] +15:46:34 [ 12] [ 6] [154540] +15:46:34 [ 13] [ 4] [0320] +15:46:34 [ 14] [ 4] [4912] +15:46:34 [ 15] [ 4] [0320] +15:46:34 [ 18] [ 4] [6011] +15:46:34 [ 19] [ 3] [418] +15:46:34 [ 22] [ 3] [021] +15:46:34 [ 25] [ 2] [01] +15:46:34 [ 28] [ 9] [D00002000] +15:46:34 [ 32] [ 6] [180893] +15:46:34 [ 35] [ 32] [6213543000035757=491212013575384] +15:46:34 [ 37] [ 12] [507908270122] +15:46:34 [ 41] [ 8] [0441VT52] +15:46:34 [ 42] [ 15] [999999 ] +15:46:34 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +15:46:34 [ 49] [ 3] [418] +15:46:34 [ 52] [ 16] [F40E55C2D91EF6C4] +15:46:34 ============================================================================ +15:46:34 + + +waiting on router queue for slot.... +15:46:34 Sending to : <0> +15:46:34 ============================================================================ +15:46:35 ============================================================================ +15:46:35 Slot Id : <443> +15:46:35 Transaction Type : RESPONSE +15:46:35 Received From : +15:46:35 ============================================================================ +15:46:35 FNo. Len. Field Value +15:46:35 ============================================================================ +15:46:35 [ 1] [ 4] [0210] +15:46:35 [ 2] [ 16] [6213543000035757] +15:46:35 [ 3] [ 6] [011000] +15:46:35 [ 4] [ 12] [000015000000] +15:46:35 [ 7] [ 10] [0320084540] +15:46:35 [ 11] [ 6] [270122] +15:46:35 [ 12] [ 6] [154540] +15:46:35 [ 13] [ 4] [0320] +15:46:35 [ 15] [ 4] [0320] +15:46:35 [ 18] [ 4] [6011] +15:46:35 [ 19] [ 3] [418] +15:46:35 [ 32] [ 6] [180893] +15:46:35 [ 35] [ 32] [6213543000035757=491212013575384] +15:46:35 [ 37] [ 12] [507908270122] +15:46:35 [ 38] [ 6] [880827] +15:46:35 [ 39] [ 2] [00] +15:46:35 [ 41] [ 8] [0441VT52] +15:46:35 [ 49] [ 3] [418] +15:46:35 [ 54] [ 40] [1001418C0000096247021002418C000009624702] +15:46:35 ============================================================================ +15:46:35 Sending to : +15:46:35 ============================================================================ +15:46:35 + + +waiting on router queue for slot.... +15:46:36 ============================================================================ +15:46:36 Slot Id : <405> +15:46:36 Transaction Type : REQUEST +15:46:36 Received From : +15:46:36 ============================================================================ +15:46:36 FNo. Len. Field Value +15:46:36 ============================================================================ +15:46:36 [ 1] [ 4] [0200] +15:46:36 [ 2] [ 16] [6213544000812047] +15:46:36 [ 3] [ 6] [011000] +15:46:36 [ 4] [ 12] [000030000000] +15:46:36 [ 7] [ 10] [0320155423] +15:46:36 [ 11] [ 6] [242345] +15:46:36 [ 12] [ 6] [155423] +15:46:36 [ 13] [ 4] [0320] +15:46:36 [ 14] [ 4] [4912] +15:46:36 [ 15] [ 4] [0320] +15:46:36 [ 18] [ 4] [6011] +15:46:36 [ 22] [ 3] [900] +15:46:36 [ 25] [ 2] [02] +15:46:36 [ 28] [ 9] [D00002000] +15:46:36 [ 32] [ 6] [220699] +15:46:36 [ 35] [ 32] [6213544000812047=491212011204778] +15:46:36 [ 37] [ 12] [507900341589] +15:46:36 [ 41] [ 8] [01002000] +15:46:36 [ 42] [ 15] [APTRA ] +15:46:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:46:36 [ 49] [ 3] [418] +15:46:36 [ 52] [ 16] [E85878B22B0DD4F1] +15:46:36 ============================================================================ +15:46:36 + + +waiting on router queue for slot.... +15:46:36 Sending to : +15:46:36 ============================================================================ +15:46:36 Sending to : +15:46:36 ============================================================================ +15:46:36 ============================================================================ +15:46:36 Slot Id : <405> +15:46:36 Transaction Type : REQUEST +15:46:36 Received From : +15:46:36 ============================================================================ +15:46:36 FNo. Len. Field Value +15:46:36 ============================================================================ +15:46:36 [ 1] [ 4] [0200] +15:46:36 [ 2] [ 16] [6213544000812047] +15:46:36 [ 3] [ 6] [011000] +15:46:36 [ 4] [ 12] [000030000000] +15:46:36 [ 7] [ 10] [0320155423] +15:46:36 [ 11] [ 6] [242345] +15:46:36 [ 12] [ 6] [155423] +15:46:36 [ 13] [ 4] [0320] +15:46:36 [ 14] [ 4] [4912] +15:46:36 [ 15] [ 4] [0320] +15:46:36 [ 18] [ 4] [6011] +15:46:36 [ 22] [ 3] [900] +15:46:36 [ 25] [ 2] [02] +15:46:36 [ 28] [ 9] [D00002000] +15:46:36 [ 32] [ 6] [220699] +15:46:36 [ 35] [ 32] [6213544000812047=491212011204778] +15:46:36 [ 37] [ 12] [507900341589] +15:46:36 [ 41] [ 8] [01002000] +15:46:36 [ 42] [ 15] [APTRA ] +15:46:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:46:36 [ 49] [ 3] [418] +15:46:36 [ 52] [ 16] [E85878B22B0DD4F1] +15:46:36 ============================================================================ +15:46:36 + + +waiting on router queue for slot.... +15:46:36 Sending to : +15:46:36 ============================================================================ +15:46:36 ============================================================================ +15:46:36 Slot Id : <405> +15:46:36 Transaction Type : REQUEST +15:46:36 Received From : +15:46:36 ============================================================================ +15:46:36 FNo. Len. Field Value +15:46:36 ============================================================================ +15:46:36 [ 1] [ 4] [0200] +15:46:36 [ 2] [ 16] [6213544000812047] +15:46:36 [ 3] [ 6] [011000] +15:46:36 [ 4] [ 12] [000030000000] +15:46:36 [ 7] [ 10] [0320155423] +15:46:36 [ 11] [ 6] [242345] +15:46:36 [ 12] [ 6] [155423] +15:46:36 [ 13] [ 4] [0320] +15:46:36 [ 14] [ 4] [4912] +15:46:36 [ 15] [ 4] [0320] +15:46:36 [ 18] [ 4] [6011] +15:46:36 [ 22] [ 3] [900] +15:46:36 [ 25] [ 2] [02] +15:46:36 [ 28] [ 9] [D00002000] +15:46:36 [ 32] [ 6] [220699] +15:46:36 [ 35] [ 32] [6213544000812047=491212011204778] +15:46:36 [ 37] [ 12] [507900341589] +15:46:36 [ 41] [ 8] [01002000] +15:46:36 [ 42] [ 15] [APTRA ] +15:46:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:46:36 [ 49] [ 3] [418] +15:46:36 [ 52] [ 16] [8271E62AC648380F] +15:46:36 ============================================================================ +15:46:36 + + +waiting on router queue for slot.... +15:46:36 Sending to : <0> +15:46:36 ============================================================================ +15:46:36 ============================================================================ +15:46:36 Slot Id : <443> +15:46:36 Transaction Type : RESPONSE +15:46:36 Received From : +15:46:36 ============================================================================ +15:46:36 FNo. Len. Field Value +15:46:36 ============================================================================ +15:46:36 [ 1] [ 4] [0210] +15:46:36 [ 2] [ 16] [6213543000035757] +15:46:36 [ 3] [ 6] [011000] +15:46:36 [ 4] [ 12] [000015000000] +15:46:36 [ 7] [ 10] [0320084540] +15:46:36 [ 11] [ 6] [270122] +15:46:36 [ 12] [ 6] [154540] +15:46:36 [ 13] [ 4] [0320] +15:46:36 [ 15] [ 4] [0320] +15:46:36 [ 18] [ 4] [6011] +15:46:36 [ 19] [ 3] [418] +15:46:36 [ 32] [ 6] [180893] +15:46:36 [ 35] [ 32] [6213543000035757=491212013575384] +15:46:36 [ 37] [ 12] [507908270122] +15:46:36 [ 38] [ 6] [880827] +15:46:36 [ 39] [ 2] [00] +15:46:36 [ 41] [ 8] [0441VT52] +15:46:36 [ 49] [ 3] [418] +15:46:36 [ 54] [ 40] [1001418C0000096247021002418C000009624702] +15:46:36 ============================================================================ +15:46:36 Calculate Source COMM Id = 2 +15:46:36 ============================================================================ +15:46:36 + + +waiting on router queue for slot.... +15:46:37 ============================================================================ +15:46:37 Slot Id : <405> +15:46:37 Transaction Type : RESPONSE +15:46:37 Received From : +15:46:37 ============================================================================ +15:46:37 FNo. Len. Field Value +15:46:37 ============================================================================ +15:46:37 [ 1] [ 4] [0210] +15:46:37 [ 2] [ 16] [6213544000812047] +15:46:37 [ 3] [ 6] [011000] +15:46:37 [ 4] [ 12] [000030000000] +15:46:37 [ 7] [ 10] [0320155423] +15:46:37 [ 11] [ 6] [242345] +15:46:37 [ 12] [ 6] [155423] +15:46:37 [ 13] [ 4] [0320] +15:46:37 [ 15] [ 4] [0320] +15:46:37 [ 18] [ 4] [6011] +15:46:37 [ 32] [ 6] [220699] +15:46:37 [ 35] [ 32] [6213544000812047=491212011204778] +15:46:37 [ 37] [ 12] [507900341589] +15:46:37 [ 38] [ 6] [699223] +15:46:37 [ 39] [ 2] [00] +15:46:37 [ 41] [ 8] [01002000] +15:46:37 [ 49] [ 3] [418] +15:46:37 [ 54] [ 40] [1001418C0002075463871002418C000207546387] +15:46:37 ============================================================================ +15:46:37 Sending to : +15:46:37 ============================================================================ +15:46:37 + + +waiting on router queue for slot.... +15:46:37 ============================================================================ +15:46:37 Slot Id : <377> +15:46:37 Transaction Type : REQUEST +15:46:37 Received From : +15:46:37 ============================================================================ +15:46:37 FNo. Len. Field Value +15:46:37 ============================================================================ +15:46:37 [ 1] [ 4] [0200] +15:46:37 [ 2] [ 16] [6213542000035254] +15:46:37 [ 3] [ 6] [010000] +15:46:37 [ 4] [ 12] [000100000000] +15:46:37 [ 7] [ 10] [0320154427] +15:46:37 [ 11] [ 6] [950432] +15:46:37 [ 12] [ 6] [154427] +15:46:37 [ 13] [ 4] [0320] +15:46:37 [ 15] [ 4] [0320] +15:46:37 [ 18] [ 4] [6011] +15:46:37 [ 19] [ 3] [418] +15:46:37 [ 22] [ 3] [021] +15:46:37 [ 25] [ 2] [01] +15:46:37 [ 28] [ 9] [D00002000] +15:46:37 [ 32] [ 6] [668899] +15:46:37 [ 35] [ 32] [6213542000035254=491212013525607] +15:46:37 [ 37] [ 12] [507902151075] +15:46:37 [ 41] [ 8] [03020025] +15:46:37 [ 42] [ 15] [APT ] +15:46:37 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +15:46:37 [ 49] [ 3] [418] +15:46:37 [ 52] [ 16] [599449FE2B58134D] +15:46:37 ============================================================================ +15:46:37 + + +waiting on router queue for slot.... +15:46:37 Sending to : +15:46:37 ============================================================================ +15:46:37 Sending to : +15:46:37 ============================================================================ +15:46:38 ============================================================================ +15:46:38 Slot Id : <377> +15:46:38 Transaction Type : REQUEST +15:46:38 Received From : +15:46:38 ============================================================================ +15:46:38 FNo. Len. Field Value +15:46:38 ============================================================================ +15:46:38 [ 1] [ 4] [0200] +15:46:38 [ 2] [ 16] [6213542000035254] +15:46:38 [ 3] [ 6] [010000] +15:46:38 [ 4] [ 12] [000100000000] +15:46:38 [ 7] [ 10] [0320154427] +15:46:38 [ 11] [ 6] [950432] +15:46:38 [ 12] [ 6] [154427] +15:46:38 [ 13] [ 4] [0320] +15:46:38 [ 15] [ 4] [0320] +15:46:38 [ 18] [ 4] [6011] +15:46:38 [ 19] [ 3] [418] +15:46:38 [ 22] [ 3] [021] +15:46:38 [ 25] [ 2] [01] +15:46:38 [ 28] [ 9] [D00002000] +15:46:38 [ 32] [ 6] [668899] +15:46:38 [ 35] [ 32] [6213542000035254=491212013525607] +15:46:38 [ 37] [ 12] [507902151075] +15:46:38 [ 41] [ 8] [03020025] +15:46:38 [ 42] [ 15] [APT ] +15:46:38 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +15:46:38 [ 49] [ 3] [418] +15:46:38 [ 52] [ 16] [599449FE2B58134D] +15:46:38 ============================================================================ +15:46:38 + + +waiting on router queue for slot.... +15:46:38 Sending to : +15:46:38 ============================================================================ +15:46:38 ============================================================================ +15:46:38 Slot Id : <377> +15:46:38 Transaction Type : REQUEST +15:46:38 Received From : +15:46:38 ============================================================================ +15:46:38 FNo. Len. Field Value +15:46:38 ============================================================================ +15:46:38 [ 1] [ 4] [0200] +15:46:38 [ 2] [ 16] [6213542000035254] +15:46:38 [ 3] [ 6] [010000] +15:46:38 [ 4] [ 12] [000100000000] +15:46:38 [ 7] [ 10] [0320154427] +15:46:38 [ 11] [ 6] [950432] +15:46:38 [ 12] [ 6] [154427] +15:46:38 [ 13] [ 4] [0320] +15:46:38 [ 15] [ 4] [0320] +15:46:38 [ 18] [ 4] [6011] +15:46:38 [ 19] [ 3] [418] +15:46:38 [ 22] [ 3] [021] +15:46:38 [ 25] [ 2] [01] +15:46:38 [ 28] [ 9] [D00002000] +15:46:38 [ 32] [ 6] [668899] +15:46:38 [ 35] [ 32] [6213542000035254=491212013525607] +15:46:38 [ 37] [ 12] [507902151075] +15:46:38 [ 41] [ 8] [03020025] +15:46:38 [ 42] [ 15] [APT ] +15:46:38 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +15:46:38 [ 49] [ 3] [418] +15:46:38 [ 52] [ 16] [DB2BAD82C2406FD3] +15:46:38 ============================================================================ +15:46:38 + + +waiting on router queue for slot.... +15:46:38 Sending to : <0> +15:46:38 ============================================================================ +15:46:38 ============================================================================ +15:46:38 Slot Id : <386> +15:46:38 Transaction Type : REQUEST +15:46:38 Received From : +15:46:38 ============================================================================ +15:46:38 FNo. Len. Field Value +15:46:38 ============================================================================ +15:46:38 [ 1] [ 4] [0200] +15:46:38 [ 2] [ 16] [1808930900011644] +15:46:38 [ 3] [ 6] [011000] +15:46:38 [ 4] [ 12] [000100000000] +15:46:38 [ 7] [ 10] [0320154633] +15:46:38 [ 11] [ 6] [788143] +15:46:38 [ 12] [ 6] [154633] +15:46:38 [ 13] [ 4] [0320] +15:46:38 [ 15] [ 4] [0320] +15:46:38 [ 18] [ 4] [6011] +15:46:38 [ 22] [ 3] [900] +15:46:38 [ 25] [ 2] [02] +15:46:38 [ 28] [ 9] [D00002000] +15:46:38 [ 32] [ 6] [621354] +15:46:38 [ 35] [ 27] [1808930900011644=1803500700] +15:46:38 [ 37] [ 12] [507902497436] +15:46:38 [ 41] [ 8] [05003200] +15:46:38 [ 42] [ 15] [NATIVE ] +15:46:38 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +15:46:38 [ 49] [ 3] [418] +15:46:38 [ 52] [ 16] [940753A287412C36] +15:46:38 ============================================================================ +15:46:38 + + +waiting on router queue for slot.... +15:46:38 Sending to : +15:46:38 ============================================================================ +15:46:38 Sending to : +15:46:38 ============================================================================ +15:46:38 ============================================================================ +15:46:38 Slot Id : <405> +15:46:38 Transaction Type : RESPONSE +15:46:38 Received From : +15:46:38 ============================================================================ +15:46:38 FNo. Len. Field Value +15:46:38 ============================================================================ +15:46:38 [ 1] [ 4] [0210] +15:46:38 [ 2] [ 16] [6213544000812047] +15:46:38 [ 3] [ 6] [011000] +15:46:38 [ 4] [ 12] [000030000000] +15:46:38 [ 7] [ 10] [0320155423] +15:46:38 [ 11] [ 6] [242345] +15:46:38 [ 12] [ 6] [155423] +15:46:38 [ 13] [ 4] [0320] +15:46:38 [ 15] [ 4] [0320] +15:46:38 [ 18] [ 4] [6011] +15:46:38 [ 32] [ 6] [220699] +15:46:38 [ 35] [ 32] [6213544000812047=491212011204778] +15:46:38 [ 37] [ 12] [507900341589] +15:46:38 [ 38] [ 6] [699223] +15:46:38 [ 39] [ 2] [00] +15:46:38 [ 41] [ 8] [01002000] +15:46:38 [ 49] [ 3] [418] +15:46:38 [ 54] [ 40] [1001418C0002075463871002418C000207546387] +15:46:38 ============================================================================ +15:46:38 Calculate Source COMM Id = 1 +15:46:38 ============================================================================ +15:46:38 + + +waiting on router queue for slot.... +15:46:38 ============================================================================ +15:46:38 Slot Id : <386> +15:46:38 Transaction Type : REQUEST +15:46:38 Received From : +15:46:38 ============================================================================ +15:46:38 FNo. Len. Field Value +15:46:38 ============================================================================ +15:46:38 [ 1] [ 4] [0200] +15:46:38 [ 2] [ 16] [1808930900011644] +15:46:38 [ 3] [ 6] [011000] +15:46:38 [ 4] [ 12] [000100000000] +15:46:38 [ 7] [ 10] [0320154633] +15:46:38 [ 11] [ 6] [788143] +15:46:38 [ 12] [ 6] [154633] +15:46:38 [ 13] [ 4] [0320] +15:46:38 [ 15] [ 4] [0320] +15:46:38 [ 18] [ 4] [6011] +15:46:38 [ 22] [ 3] [900] +15:46:38 [ 25] [ 2] [02] +15:46:38 [ 28] [ 9] [D00002000] +15:46:38 [ 32] [ 6] [621354] +15:46:38 [ 35] [ 27] [1808930900011644=1803500700] +15:46:38 [ 37] [ 12] [507902497436] +15:46:38 [ 41] [ 8] [05003200] +15:46:38 [ 42] [ 15] [NATIVE ] +15:46:38 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +15:46:38 [ 49] [ 3] [418] +15:46:38 [ 52] [ 16] [940753A287412C36] +15:46:38 ============================================================================ +15:46:38 + + +waiting on router queue for slot.... +15:46:38 Sending to : +15:46:38 ============================================================================ +15:46:38 ============================================================================ +15:46:38 Slot Id : <386> +15:46:38 Transaction Type : REQUEST +15:46:38 Received From : +15:46:38 ============================================================================ +15:46:38 FNo. Len. Field Value +15:46:38 ============================================================================ +15:46:38 [ 1] [ 4] [0200] +15:46:38 [ 2] [ 16] [1808930900011644] +15:46:38 [ 3] [ 6] [011000] +15:46:38 [ 4] [ 12] [000100000000] +15:46:38 [ 7] [ 10] [0320154633] +15:46:38 [ 11] [ 6] [788143] +15:46:38 [ 12] [ 6] [154633] +15:46:38 [ 13] [ 4] [0320] +15:46:38 [ 15] [ 4] [0320] +15:46:38 [ 18] [ 4] [6011] +15:46:38 [ 22] [ 3] [900] +15:46:38 [ 25] [ 2] [02] +15:46:38 [ 28] [ 9] [D00002000] +15:46:38 [ 32] [ 6] [621354] +15:46:38 [ 35] [ 27] [1808930900011644=1803500700] +15:46:38 [ 37] [ 12] [507902497436] +15:46:38 [ 41] [ 8] [05003200] +15:46:38 [ 42] [ 15] [NATIVE ] +15:46:38 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +15:46:38 [ 49] [ 3] [418] +15:46:38 [ 52] [ 16] [EEA93A993BB9A20D] +15:46:38 ============================================================================ +15:46:38 + + +waiting on router queue for slot.... +15:46:38 Sending to : <2> +15:46:38 ============================================================================ +15:46:39 ============================================================================ +15:46:39 Slot Id : <377> +15:46:39 Transaction Type : RESPONSE +15:46:39 Received From : +15:46:39 ============================================================================ +15:46:39 FNo. Len. Field Value +15:46:39 ============================================================================ +15:46:39 [ 1] [ 4] [0210] +15:46:39 [ 2] [ 16] [6213542000035254] +15:46:39 [ 3] [ 6] [010000] +15:46:39 [ 4] [ 12] [000100000000] +15:46:39 [ 7] [ 10] [0320154427] +15:46:39 [ 11] [ 6] [950432] +15:46:39 [ 12] [ 6] [154427] +15:46:39 [ 13] [ 4] [0320] +15:46:39 [ 15] [ 4] [0320] +15:46:39 [ 18] [ 4] [6011] +15:46:39 [ 19] [ 3] [418] +15:46:39 [ 32] [ 6] [668899] +15:46:39 [ 35] [ 32] [6213542000035254=491212013525607] +15:46:39 [ 37] [ 12] [507902151075] +15:46:39 [ 38] [ 6] [378780] +15:46:39 [ 39] [ 2] [00] +15:46:39 [ 41] [ 8] [03020025] +15:46:39 [ 49] [ 3] [418] +15:46:39 [ 54] [ 40] [0001418C0003134822050002418C000313482205] +15:46:39 ============================================================================ +15:46:39 Sending to : +15:46:39 ============================================================================ +15:46:39 + + +waiting on router queue for slot.... +15:46:41 ============================================================================ +15:46:41 Slot Id : <377> +15:46:41 Transaction Type : RESPONSE +15:46:41 Received From : +15:46:41 ============================================================================ +15:46:41 FNo. Len. Field Value +15:46:41 ============================================================================ +15:46:41 [ 1] [ 4] [0210] +15:46:41 [ 2] [ 16] [6213542000035254] +15:46:41 [ 3] [ 6] [010000] +15:46:41 [ 4] [ 12] [000100000000] +15:46:41 [ 7] [ 10] [0320154427] +15:46:41 [ 11] [ 6] [950432] +15:46:41 [ 12] [ 6] [154427] +15:46:41 [ 13] [ 4] [0320] +15:46:41 [ 15] [ 4] [0320] +15:46:41 [ 18] [ 4] [6011] +15:46:41 [ 19] [ 3] [418] +15:46:41 [ 32] [ 6] [668899] +15:46:41 [ 35] [ 32] [6213542000035254=491212013525607] +15:46:41 [ 37] [ 12] [507902151075] +15:46:41 [ 38] [ 6] [378780] +15:46:41 [ 39] [ 2] [00] +15:46:41 [ 41] [ 8] [03020025] +15:46:41 [ 49] [ 3] [418] +15:46:41 [ 54] [ 40] [0001418C0003134822050002418C000313482205] +15:46:41 ============================================================================ +15:46:41 Calculate Source COMM Id = 4 +15:46:41 ============================================================================ +15:46:41 + + +waiting on router queue for slot.... +15:46:42 ============================================================================ +15:46:42 Slot Id : <429> +15:46:42 Transaction Type : REQUEST +15:46:42 Received From : +15:46:42 ============================================================================ +15:46:42 FNo. Len. Field Value +15:46:42 ============================================================================ +15:46:42 [ 1] [ 4] [0800] +15:46:42 [ 7] [ 10] [0320225831] +15:46:42 [ 11] [ 6] [155831] +15:46:42 [ 37] [ 12] [57915155831] +15:46:42 [ 70] [ 3] [301] +15:46:42 ============================================================================ +15:46:42 + + +waiting on router queue for slot.... +15:46:42 Sending to : +15:46:42 ============================================================================ +15:46:42 ============================================================================ +15:46:42 Slot Id : <429> +15:46:42 Transaction Type : RESPONSE +15:46:42 Received From : +15:46:42 ============================================================================ +15:46:42 FNo. Len. Field Value +15:46:42 ============================================================================ +15:46:42 [ 1] [ 4] [0810] +15:46:42 [ 7] [ 10] [0320225831] +15:46:42 [ 11] [ 6] [155831] +15:46:42 [ 37] [ 12] [579151558310] +15:46:42 [ 39] [ 2] [00] +15:46:42 [ 70] [ 3] [810] +15:46:42 ============================================================================ +15:46:42 Calculate Source COMM Id = 6 +15:46:42 ============================================================================ +15:46:42 + + +waiting on router queue for slot.... +15:46:44 ============================================================================ +15:46:44 Slot Id : <386> +15:46:44 Transaction Type : RESPONSE +15:46:44 Received From : +15:46:44 ============================================================================ +15:46:44 FNo. Len. Field Value +15:46:44 ============================================================================ +15:46:44 [ 1] [ 4] [0210] +15:46:44 [ 2] [ 16] [1808930900011644] +15:46:44 [ 3] [ 6] [011000] +15:46:44 [ 4] [ 12] [000100000000] +15:46:44 [ 6] [ 12] [000100000000] +15:46:44 [ 7] [ 10] [0320154633] +15:46:44 [ 11] [ 6] [788143] +15:46:44 [ 12] [ 6] [154633] +15:46:44 [ 13] [ 4] [0320] +15:46:44 [ 18] [ 4] [6011] +15:46:44 [ 19] [ 3] [418] +15:46:44 [ 22] [ 3] [021] +15:46:44 [ 32] [ 6] [621354] +15:46:44 [ 35] [ 27] [1808930900011644=1803500700] +15:46:44 [ 37] [ 12] [507902497436] +15:46:44 [ 38] [ 6] [788143] +15:46:44 [ 39] [ 2] [00] +15:46:44 [ 41] [ 8] [05003200] +15:46:44 [ 49] [ 3] [418] +15:46:44 [ 52] [ 16] [EEA93A993BB9A20D] +15:46:44 [ 54] [ 20] [1001418C001976653500] +15:46:44 ============================================================================ +15:46:44 Sending to : +15:46:44 ============================================================================ +15:46:44 + + +waiting on router queue for slot.... +15:46:44 ============================================================================ +15:46:44 Slot Id : <456> +15:46:44 Transaction Type : REQUEST +15:46:44 Received From : +15:46:44 ============================================================================ +15:46:44 FNo. Len. Field Value +15:46:44 ============================================================================ +15:46:44 [ 1] [ 4] [0200] +15:46:44 [ 2] [ 16] [2206990000018879] +15:46:44 [ 3] [ 6] [010000] +15:46:44 [ 4] [ 12] [000010000000] +15:46:44 [ 7] [ 10] [0320154639] +15:46:44 [ 11] [ 6] [788157] +15:46:44 [ 12] [ 6] [154639] +15:46:44 [ 13] [ 4] [0320] +15:46:44 [ 15] [ 4] [0320] +15:46:44 [ 18] [ 4] [6011] +15:46:44 [ 22] [ 3] [900] +15:46:44 [ 25] [ 2] [02] +15:46:44 [ 28] [ 9] [D00002000] +15:46:44 [ 32] [ 6] [621354] +15:46:44 [ 35] [ 32] [2206990000018879=960612617422448] +15:46:44 [ 37] [ 12] [507903762908] +15:46:44 [ 41] [ 8] [01009200] +15:46:44 [ 42] [ 15] [NATIVE ] +15:46:44 [ 43] [ 40] [M-Point Mark Thantluang Xaysetha LAO] +15:46:44 [ 49] [ 3] [418] +15:46:44 [ 52] [ 16] [F74D29D9CF4DAF91] +15:46:44 ============================================================================ +15:46:44 + + +waiting on router queue for slot.... +15:46:44 Sending to : +15:46:44 ============================================================================ +15:46:44 Sending to : +15:46:44 ============================================================================ +15:46:44 ============================================================================ +15:46:44 Slot Id : <456> +15:46:44 Transaction Type : REQUEST +15:46:44 Received From : +15:46:44 ============================================================================ +15:46:44 FNo. Len. Field Value +15:46:44 ============================================================================ +15:46:44 [ 1] [ 4] [0200] +15:46:44 [ 2] [ 16] [2206990000018879] +15:46:44 [ 3] [ 6] [010000] +15:46:44 [ 4] [ 12] [000010000000] +15:46:44 [ 7] [ 10] [0320154639] +15:46:44 [ 11] [ 6] [788157] +15:46:44 [ 12] [ 6] [154639] +15:46:44 [ 13] [ 4] [0320] +15:46:44 [ 15] [ 4] [0320] +15:46:44 [ 18] [ 4] [6011] +15:46:44 [ 22] [ 3] [900] +15:46:44 [ 25] [ 2] [02] +15:46:44 [ 28] [ 9] [D00002000] +15:46:44 [ 32] [ 6] [621354] +15:46:44 [ 35] [ 32] [2206990000018879=960612617422448] +15:46:44 [ 37] [ 12] [507903762908] +15:46:44 [ 41] [ 8] [01009200] +15:46:44 [ 42] [ 15] [NATIVE ] +15:46:44 [ 43] [ 40] [M-Point Mark Thantluang Xaysetha LAO] +15:46:44 [ 49] [ 3] [418] +15:46:44 [ 52] [ 16] [F74D29D9CF4DAF91] +15:46:44 ============================================================================ +15:46:44 + + +waiting on router queue for slot.... +15:46:44 Sending to : +15:46:44 ============================================================================ +15:46:44 ============================================================================ +15:46:44 Slot Id : <456> +15:46:44 Transaction Type : REQUEST +15:46:44 Received From : +15:46:44 ============================================================================ +15:46:44 FNo. Len. Field Value +15:46:44 ============================================================================ +15:46:44 [ 1] [ 4] [0200] +15:46:44 [ 2] [ 16] [2206990000018879] +15:46:44 [ 3] [ 6] [010000] +15:46:44 [ 4] [ 12] [000010000000] +15:46:44 [ 7] [ 10] [0320154639] +15:46:44 [ 11] [ 6] [788157] +15:46:44 [ 12] [ 6] [154639] +15:46:44 [ 13] [ 4] [0320] +15:46:44 [ 15] [ 4] [0320] +15:46:44 [ 18] [ 4] [6011] +15:46:44 [ 22] [ 3] [900] +15:46:44 [ 25] [ 2] [02] +15:46:44 [ 28] [ 9] [D00002000] +15:46:44 [ 32] [ 6] [621354] +15:46:44 [ 35] [ 32] [2206990000018879=960612617422448] +15:46:44 [ 37] [ 12] [507903762908] +15:46:44 [ 41] [ 8] [01009200] +15:46:44 [ 42] [ 15] [NATIVE ] +15:46:44 [ 43] [ 40] [M-Point Mark Thantluang Xaysetha LAO] +15:46:44 [ 49] [ 3] [418] +15:46:44 [ 52] [ 16] [037799D91E091062] +15:46:44 ============================================================================ +15:46:44 + + +waiting on router queue for slot.... +15:46:44 Sending to : <1> +15:46:44 ============================================================================ +15:46:45 ============================================================================ +15:46:45 Slot Id : <386> +15:46:45 Transaction Type : RESPONSE +15:46:45 Received From : +15:46:45 ============================================================================ +15:46:45 FNo. Len. Field Value +15:46:45 ============================================================================ +15:46:45 [ 1] [ 4] [0210] +15:46:45 [ 2] [ 16] [1808930900011644] +15:46:45 [ 3] [ 6] [011000] +15:46:45 [ 4] [ 12] [000100000000] +15:46:45 [ 6] [ 12] [000100000000] +15:46:45 [ 7] [ 10] [0320154633] +15:46:45 [ 11] [ 6] [788143] +15:46:45 [ 12] [ 6] [154633] +15:46:45 [ 13] [ 4] [0320] +15:46:45 [ 18] [ 4] [6011] +15:46:45 [ 19] [ 3] [418] +15:46:45 [ 22] [ 3] [021] +15:46:45 [ 32] [ 6] [621354] +15:46:45 [ 35] [ 27] [1808930900011644=1803500700] +15:46:45 [ 37] [ 12] [507902497436] +15:46:45 [ 38] [ 6] [788143] +15:46:45 [ 39] [ 2] [00] +15:46:45 [ 41] [ 8] [05003200] +15:46:45 [ 49] [ 3] [418] +15:46:45 [ 52] [ 16] [EEA93A993BB9A20D] +15:46:45 [ 54] [ 20] [1001418C001976653500] +15:46:45 ============================================================================ +15:46:45 Calculate Source COMM Id = 0 +15:46:45 ============================================================================ +15:46:45 + + +waiting on router queue for slot.... +15:46:47 ============================================================================ +15:46:47 Slot Id : <456> +15:46:47 Transaction Type : RESPONSE +15:46:47 Received From : +15:46:47 ============================================================================ +15:46:47 FNo. Len. Field Value +15:46:47 ============================================================================ +15:46:47 [ 1] [ 4] [0210] +15:46:47 [ 2] [ 16] [2206990000018879] +15:46:47 [ 3] [ 6] [010000] +15:46:47 [ 4] [ 12] [000010000000] +15:46:47 [ 7] [ 10] [0320154639] +15:46:47 [ 11] [ 6] [788157] +15:46:47 [ 12] [ 6] [154639] +15:46:47 [ 13] [ 4] [0320] +15:46:47 [ 15] [ 4] [0320] +15:46:47 [ 18] [ 4] [6011] +15:46:47 [ 32] [ 6] [621354] +15:46:47 [ 35] [ 32] [2206990000018879=960612617422448] +15:46:47 [ 37] [ 12] [507903762908] +15:46:47 [ 38] [ 6] [850733] +15:46:47 [ 39] [ 2] [00] +15:46:47 [ 41] [ 8] [01009200] +15:46:47 [ 49] [ 3] [418] +15:46:47 [ 54] [ 40] [0001418C0000435749000002418C000043574900] +15:46:47 ============================================================================ +15:46:47 Sending to : +15:46:47 ============================================================================ +15:46:47 + + +waiting on router queue for slot.... +15:46:49 ============================================================================ +15:46:49 Slot Id : <456> +15:46:49 Transaction Type : RESPONSE +15:46:49 Received From : +15:46:49 ============================================================================ +15:46:49 FNo. Len. Field Value +15:46:49 ============================================================================ +15:46:49 [ 1] [ 4] [0210] +15:46:49 [ 2] [ 16] [2206990000018879] +15:46:49 [ 3] [ 6] [010000] +15:46:49 [ 4] [ 12] [000010000000] +15:46:49 [ 7] [ 10] [0320154639] +15:46:49 [ 11] [ 6] [788157] +15:46:49 [ 12] [ 6] [154639] +15:46:49 [ 13] [ 4] [0320] +15:46:49 [ 15] [ 4] [0320] +15:46:49 [ 18] [ 4] [6011] +15:46:49 [ 32] [ 6] [621354] +15:46:49 [ 35] [ 32] [2206990000018879=960612617422448] +15:46:49 [ 37] [ 12] [507903762908] +15:46:49 [ 38] [ 6] [850733] +15:46:49 [ 39] [ 2] [00] +15:46:49 [ 41] [ 8] [01009200] +15:46:49 [ 49] [ 3] [418] +15:46:49 [ 54] [ 40] [0001418C0000435749000002418C000043574900] +15:46:49 ============================================================================ +15:46:49 Calculate Source COMM Id = 0 +15:46:49 ============================================================================ +15:46:49 + + +waiting on router queue for slot.... +15:46:51 ============================================================================ +15:46:51 Slot Id : <446> +15:46:51 Transaction Type : REQUEST +15:46:51 Received From : +15:46:51 ============================================================================ +15:46:51 FNo. Len. Field Value +15:46:51 ============================================================================ +15:46:51 [ 1] [ 4] [0800] +15:46:51 [ 7] [ 10] [0320084558] +15:46:51 [ 11] [ 6] [157088] +15:46:51 [ 70] [ 3] [301] +15:46:51 ============================================================================ +15:46:51 + + +waiting on router queue for slot.... +15:46:51 Sending to : +15:46:51 ============================================================================ +15:46:51 ============================================================================ +15:46:51 Slot Id : <446> +15:46:51 Transaction Type : RESPONSE +15:46:51 Received From : +15:46:51 ============================================================================ +15:46:51 FNo. Len. Field Value +15:46:51 ============================================================================ +15:46:51 [ 1] [ 4] [0810] +15:46:51 [ 7] [ 10] [0320084558] +15:46:51 [ 11] [ 6] [157088] +15:46:51 [ 39] [ 2] [00] +15:46:51 [ 70] [ 3] [301] +15:46:51 ============================================================================ +15:46:51 Calculate Source COMM Id = 2 +15:46:51 ============================================================================ +15:46:51 + + +waiting on router queue for slot.... +15:47:02 ============================================================================ +15:47:02 Slot Id : <424> +15:47:02 Transaction Type : REQUEST +15:47:02 Received From : +15:47:02 ============================================================================ +15:47:02 FNo. Len. Field Value +15:47:02 ============================================================================ +15:47:02 [ 1] [ 4] [0800] +15:47:02 [ 7] [ 10] [0320084609] +15:47:02 [ 11] [ 6] [157089] +15:47:02 [ 70] [ 3] [301] +15:47:02 ============================================================================ +15:47:02 + + +waiting on router queue for slot.... +15:47:02 Sending to : +15:47:02 ============================================================================ +15:47:02 ============================================================================ +15:47:02 Slot Id : <424> +15:47:02 Transaction Type : RESPONSE +15:47:02 Received From : +15:47:02 ============================================================================ +15:47:02 FNo. Len. Field Value +15:47:02 ============================================================================ +15:47:02 [ 1] [ 4] [0810] +15:47:02 [ 7] [ 10] [0320084609] +15:47:02 [ 11] [ 6] [157089] +15:47:02 [ 39] [ 2] [00] +15:47:02 [ 70] [ 3] [301] +15:47:02 ============================================================================ +15:47:02 Calculate Source COMM Id = 2 +15:47:02 ============================================================================ +15:47:02 + + +waiting on router queue for slot.... +15:47:06 ============================================================================ +15:47:06 Slot Id : <404> +15:47:06 Transaction Type : REQUEST +15:47:06 Received From : +15:47:06 ============================================================================ +15:47:06 FNo. Len. Field Value +15:47:06 ============================================================================ +15:47:06 [ 1] [ 4] [0200] +15:47:06 [ 2] [ 16] [6688990103278709] +15:47:06 [ 3] [ 6] [300000] +15:47:06 [ 4] [ 12] [000000000000] +15:47:06 [ 7] [ 10] [0320154701] +15:47:06 [ 11] [ 6] [788260] +15:47:06 [ 12] [ 6] [154701] +15:47:06 [ 13] [ 4] [0320] +15:47:06 [ 15] [ 4] [0320] +15:47:06 [ 18] [ 4] [6011] +15:47:06 [ 22] [ 3] [900] +15:47:06 [ 25] [ 2] [02] +15:47:06 [ 28] [ 9] [D00000000] +15:47:06 [ 32] [ 6] [621354] +15:47:06 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:47:06 [ 37] [ 12] [507903499532] +15:47:06 [ 41] [ 8] [06002200] +15:47:06 [ 42] [ 15] [NATIVE ] +15:47:06 [ 43] [ 40] [Beng Market Beng LAO] +15:47:06 [ 49] [ 3] [418] +15:47:06 [ 52] [ 16] [074840EF52131956] +15:47:06 ============================================================================ +15:47:06 + + +waiting on router queue for slot.... +15:47:06 Sending to : +15:47:06 ============================================================================ +15:47:06 Sending to : +15:47:06 ============================================================================ +15:47:06 ============================================================================ +15:47:06 Slot Id : <404> +15:47:06 Transaction Type : REQUEST +15:47:06 Received From : +15:47:06 ============================================================================ +15:47:06 FNo. Len. Field Value +15:47:06 ============================================================================ +15:47:06 [ 1] [ 4] [0200] +15:47:06 [ 2] [ 16] [6688990103278709] +15:47:06 [ 3] [ 6] [300000] +15:47:06 [ 4] [ 12] [000000000000] +15:47:06 [ 7] [ 10] [0320154701] +15:47:06 [ 11] [ 6] [788260] +15:47:06 [ 12] [ 6] [154701] +15:47:06 [ 13] [ 4] [0320] +15:47:06 [ 15] [ 4] [0320] +15:47:06 [ 18] [ 4] [6011] +15:47:06 [ 22] [ 3] [900] +15:47:06 [ 25] [ 2] [02] +15:47:06 [ 28] [ 9] [D00000000] +15:47:06 [ 32] [ 6] [621354] +15:47:06 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:47:06 [ 37] [ 12] [507903499532] +15:47:06 [ 41] [ 8] [06002200] +15:47:06 [ 42] [ 15] [NATIVE ] +15:47:06 [ 43] [ 40] [Beng Market Beng LAO] +15:47:06 [ 49] [ 3] [418] +15:47:06 [ 52] [ 16] [074840EF52131956] +15:47:06 ============================================================================ +15:47:06 + + +waiting on router queue for slot.... +15:47:06 Sending to : +15:47:06 ============================================================================ +15:47:06 ============================================================================ +15:47:06 Slot Id : <404> +15:47:06 Transaction Type : REQUEST +15:47:06 Received From : +15:47:06 ============================================================================ +15:47:06 FNo. Len. Field Value +15:47:06 ============================================================================ +15:47:06 [ 1] [ 4] [0200] +15:47:06 [ 2] [ 16] [6688990103278709] +15:47:06 [ 3] [ 6] [300000] +15:47:06 [ 4] [ 12] [000000000000] +15:47:06 [ 7] [ 10] [0320154701] +15:47:06 [ 11] [ 6] [788260] +15:47:06 [ 12] [ 6] [154701] +15:47:06 [ 13] [ 4] [0320] +15:47:06 [ 15] [ 4] [0320] +15:47:06 [ 18] [ 4] [6011] +15:47:06 [ 22] [ 3] [900] +15:47:06 [ 25] [ 2] [02] +15:47:06 [ 28] [ 9] [D00000000] +15:47:06 [ 32] [ 6] [621354] +15:47:06 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:47:06 [ 37] [ 12] [507903499532] +15:47:06 [ 41] [ 8] [06002200] +15:47:06 [ 42] [ 15] [NATIVE ] +15:47:06 [ 43] [ 40] [Beng Market Beng LAO] +15:47:06 [ 49] [ 3] [418] +15:47:06 [ 52] [ 16] [0426EA177F496FF2] +15:47:06 ============================================================================ +15:47:06 + + +waiting on router queue for slot.... +15:47:06 Sending to : <4> +15:47:06 ============================================================================ +15:47:07 ============================================================================ +15:47:07 Slot Id : <404> +15:47:07 Transaction Type : RESPONSE +15:47:07 Received From : +15:47:07 ============================================================================ +15:47:07 FNo. Len. Field Value +15:47:07 ============================================================================ +15:47:07 [ 1] [ 4] [0210] +15:47:07 [ 2] [ 16] [6688990103278709] +15:47:07 [ 3] [ 6] [300000] +15:47:07 [ 4] [ 12] [000000000000] +15:47:07 [ 11] [ 6] [788260] +15:47:07 [ 12] [ 6] [154701] +15:47:07 [ 15] [ 4] [0320] +15:47:07 [ 18] [ 4] [6011] +15:47:07 [ 32] [ 6] [621354] +15:47:07 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:47:07 [ 37] [ 12] [507903499532] +15:47:07 [ 38] [ 6] [439229] +15:47:07 [ 39] [ 2] [00] +15:47:07 [ 41] [ 8] [06002200] +15:47:07 [ 49] [ 3] [418] +15:47:07 [ 54] [ 20] [0002418C000120905851] +15:47:07 ============================================================================ +15:47:07 Sending to : +15:47:07 ============================================================================ +15:47:07 + + +waiting on router queue for slot.... +15:47:08 ============================================================================ +15:47:08 Slot Id : <404> +15:47:08 Transaction Type : RESPONSE +15:47:08 Received From : +15:47:08 ============================================================================ +15:47:08 FNo. Len. Field Value +15:47:08 ============================================================================ +15:47:08 [ 1] [ 4] [0210] +15:47:08 [ 2] [ 16] [6688990103278709] +15:47:08 [ 3] [ 6] [300000] +15:47:08 [ 4] [ 12] [000000000000] +15:47:08 [ 11] [ 6] [788260] +15:47:08 [ 12] [ 6] [154701] +15:47:08 [ 15] [ 4] [0320] +15:47:08 [ 18] [ 4] [6011] +15:47:08 [ 32] [ 6] [621354] +15:47:08 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:47:08 [ 37] [ 12] [507903499532] +15:47:08 [ 38] [ 6] [439229] +15:47:08 [ 39] [ 2] [00] +15:47:08 [ 41] [ 8] [06002200] +15:47:08 [ 49] [ 3] [418] +15:47:08 [ 54] [ 20] [0002418C000120905851] +15:47:08 ============================================================================ +15:47:08 Calculate Source COMM Id = 0 +15:47:08 ============================================================================ +15:47:08 + + +waiting on router queue for slot.... +15:47:11 ============================================================================ +15:47:11 Slot Id : <445> +15:47:11 Transaction Type : REQUEST +15:47:11 Received From : +15:47:11 ============================================================================ +15:47:11 FNo. Len. Field Value +15:47:11 ============================================================================ +15:47:11 [ 1] [ 4] [0800] +15:47:11 [ 2] [ 5] [02531] +15:47:11 [ 3] [ 6] [579158] +15:47:11 [ 7] [ 10] [0320084711] +15:47:11 [ 11] [ 6] [807328] +15:47:11 [ 15] [ 10] [0320084711] +15:47:11 [ 37] [ 11] [57915807328] +15:47:11 [ 70] [ 3] [001] +15:47:11 ============================================================================ +15:47:11 + + +waiting on router queue for slot.... +15:47:11 ============================================================================ +15:47:11 Slot Id : <445> +15:47:11 Transaction Type : RESPONSE +15:47:11 Received From : +15:47:11 ============================================================================ +15:47:11 FNo. Len. Field Value +15:47:11 ============================================================================ +15:47:11 [ 1] [ 4] [0810] +15:47:11 [ 7] [ 10] [0320084711] +15:47:11 [ 11] [ 6] [807328] +15:47:11 [ 15] [ 4] [0320] +15:47:11 [ 37] [ 12] [57915807328] +15:47:11 [ 39] [ 2] [00] +15:47:11 [ 70] [ 3] [001] +15:47:11 ============================================================================ +15:47:11 Sending to : +15:47:11 ============================================================================ +15:47:11 + + +waiting on router queue for slot.... +15:47:14 ============================================================================ +15:47:14 Slot Id : <434> +15:47:14 Transaction Type : REQUEST +15:47:14 Received From : +15:47:14 ============================================================================ +15:47:14 FNo. Len. Field Value +15:47:14 ============================================================================ +15:47:14 [ 1] [ 4] [0800] +15:47:14 [ 7] [ 10] [0320084621] +15:47:14 [ 11] [ 6] [157090] +15:47:14 [ 70] [ 3] [301] +15:47:14 ============================================================================ +15:47:14 + + +waiting on router queue for slot.... +15:47:14 Sending to : +15:47:14 ============================================================================ +15:47:14 ============================================================================ +15:47:14 Slot Id : <434> +15:47:14 Transaction Type : RESPONSE +15:47:14 Received From : +15:47:14 ============================================================================ +15:47:14 FNo. Len. Field Value +15:47:14 ============================================================================ +15:47:14 [ 1] [ 4] [0810] +15:47:14 [ 7] [ 10] [0320084621] +15:47:14 [ 11] [ 6] [157090] +15:47:14 [ 39] [ 2] [00] +15:47:14 [ 70] [ 3] [301] +15:47:14 ============================================================================ +15:47:14 Calculate Source COMM Id = 2 +15:47:14 ============================================================================ +15:47:14 + + +waiting on router queue for slot.... +15:47:14 ============================================================================ +15:47:14 Slot Id : <435> +15:47:14 Transaction Type : REQUEST +15:47:14 Received From : +15:47:14 ============================================================================ +15:47:14 FNo. Len. Field Value +15:47:14 ============================================================================ +15:47:14 [ 1] [ 4] [0200] +15:47:14 [ 2] [ 16] [1234010100131484] +15:47:14 [ 3] [ 6] [011000] +15:47:14 [ 4] [ 12] [000010000000] +15:47:14 [ 7] [ 10] [0320154710] +15:47:14 [ 11] [ 6] [788285] +15:47:14 [ 12] [ 6] [154710] +15:47:14 [ 13] [ 4] [0320] +15:47:14 [ 15] [ 4] [0320] +15:47:14 [ 18] [ 4] [6011] +15:47:14 [ 22] [ 3] [900] +15:47:14 [ 25] [ 2] [02] +15:47:14 [ 28] [ 9] [D00002000] +15:47:14 [ 32] [ 6] [621354] +15:47:14 [ 35] [ 32] [1234010100131484=150600013148000] +15:47:14 [ 37] [ 12] [507904363600] +15:47:14 [ 41] [ 8] [03003500] +15:47:14 [ 42] [ 15] [NATIVE ] +15:47:14 [ 43] [ 40] [Itec SVN KaisonephomvLAO] +15:47:14 [ 49] [ 3] [418] +15:47:14 [ 52] [ 16] [EE0F6F92E5D95CFA] +15:47:14 ============================================================================ +15:47:14 + + +waiting on router queue for slot.... +15:47:14 Sending to : +15:47:14 ============================================================================ +15:47:14 Sending to : +15:47:14 ============================================================================ +15:47:15 ============================================================================ +15:47:15 Slot Id : <435> +15:47:15 Transaction Type : REQUEST +15:47:15 Received From : +15:47:15 ============================================================================ +15:47:15 FNo. Len. Field Value +15:47:15 ============================================================================ +15:47:15 [ 1] [ 4] [0200] +15:47:15 [ 2] [ 16] [1234010100131484] +15:47:15 [ 3] [ 6] [011000] +15:47:15 [ 4] [ 12] [000010000000] +15:47:15 [ 7] [ 10] [0320154710] +15:47:15 [ 11] [ 6] [788285] +15:47:15 [ 12] [ 6] [154710] +15:47:15 [ 13] [ 4] [0320] +15:47:15 [ 15] [ 4] [0320] +15:47:15 [ 18] [ 4] [6011] +15:47:15 [ 22] [ 3] [900] +15:47:15 [ 25] [ 2] [02] +15:47:15 [ 28] [ 9] [D00002000] +15:47:15 [ 32] [ 6] [621354] +15:47:15 [ 35] [ 32] [1234010100131484=150600013148000] +15:47:15 [ 37] [ 12] [507904363600] +15:47:15 [ 41] [ 8] [03003500] +15:47:15 [ 42] [ 15] [NATIVE ] +15:47:15 [ 43] [ 40] [Itec SVN KaisonephomvLAO] +15:47:15 [ 49] [ 3] [418] +15:47:15 [ 52] [ 16] [EE0F6F92E5D95CFA] +15:47:15 ============================================================================ +15:47:15 + + +waiting on router queue for slot.... +15:47:15 Sending to : +15:47:15 ============================================================================ +15:47:15 ============================================================================ +15:47:15 Slot Id : <435> +15:47:15 Transaction Type : REQUEST +15:47:15 Received From : +15:47:15 ============================================================================ +15:47:15 FNo. Len. Field Value +15:47:15 ============================================================================ +15:47:15 [ 1] [ 4] [0200] +15:47:15 [ 2] [ 16] [1234010100131484] +15:47:15 [ 3] [ 6] [011000] +15:47:15 [ 4] [ 12] [000010000000] +15:47:15 [ 7] [ 10] [0320154710] +15:47:15 [ 11] [ 6] [788285] +15:47:15 [ 12] [ 6] [154710] +15:47:15 [ 13] [ 4] [0320] +15:47:15 [ 15] [ 4] [0320] +15:47:15 [ 18] [ 4] [6011] +15:47:15 [ 22] [ 3] [900] +15:47:15 [ 25] [ 2] [02] +15:47:15 [ 28] [ 9] [D00002000] +15:47:15 [ 32] [ 6] [621354] +15:47:15 [ 35] [ 32] [1234010100131484=150600013148000] +15:47:15 [ 37] [ 12] [507904363600] +15:47:15 [ 41] [ 8] [03003500] +15:47:15 [ 42] [ 15] [NATIVE ] +15:47:15 [ 43] [ 40] [Itec SVN KaisonephomvLAO] +15:47:15 [ 49] [ 3] [418] +15:47:15 [ 52] [ 16] [77FB7761C3C13F05] +15:47:15 ============================================================================ +15:47:15 + + +waiting on router queue for slot.... +15:47:15 Sending to : <6> +15:47:15 ============================================================================ +15:47:22 ============================================================================ +15:47:22 Slot Id : <435> +15:47:22 Transaction Type : RESPONSE +15:47:22 Received From : +15:47:22 ============================================================================ +15:47:22 FNo. Len. Field Value +15:47:22 ============================================================================ +15:47:22 [ 1] [ 4] [0210] +15:47:22 [ 2] [ 16] [1234010100131484] +15:47:22 [ 3] [ 6] [011000] +15:47:22 [ 4] [ 12] [000010000000] +15:47:22 [ 7] [ 10] [0320154710] +15:47:22 [ 11] [ 6] [788285] +15:47:22 [ 12] [ 6] [154710] +15:47:22 [ 13] [ 4] [0320] +15:47:22 [ 15] [ 4] [0320] +15:47:22 [ 18] [ 4] [6011] +15:47:22 [ 19] [ 3] [418] +15:47:22 [ 32] [ 6] [621354] +15:47:22 [ 35] [ 32] [1234010100131484=150600013148000] +15:47:22 [ 37] [ 12] [507904363600] +15:47:22 [ 38] [ 6] [853765] +15:47:22 [ 39] [ 2] [00] +15:47:22 [ 41] [ 8] [03003500] +15:47:22 [ 49] [ 3] [418] +15:47:22 [ 54] [ 20] [1001418C000046204235] +15:47:22 ============================================================================ +15:47:22 Sending to : +15:47:22 ============================================================================ +15:47:22 + + +waiting on router queue for slot.... +15:47:24 ============================================================================ +15:47:24 Slot Id : <435> +15:47:24 Transaction Type : RESPONSE +15:47:24 Received From : +15:47:24 ============================================================================ +15:47:24 FNo. Len. Field Value +15:47:24 ============================================================================ +15:47:24 [ 1] [ 4] [0210] +15:47:24 [ 2] [ 16] [1234010100131484] +15:47:24 [ 3] [ 6] [011000] +15:47:24 [ 4] [ 12] [000010000000] +15:47:24 [ 7] [ 10] [0320154710] +15:47:24 [ 11] [ 6] [788285] +15:47:24 [ 12] [ 6] [154710] +15:47:24 [ 13] [ 4] [0320] +15:47:24 [ 15] [ 4] [0320] +15:47:24 [ 18] [ 4] [6011] +15:47:24 [ 19] [ 3] [418] +15:47:24 [ 32] [ 6] [621354] +15:47:24 [ 35] [ 32] [1234010100131484=150600013148000] +15:47:24 [ 37] [ 12] [507904363600] +15:47:24 [ 38] [ 6] [853765] +15:47:24 [ 39] [ 2] [00] +15:47:24 [ 41] [ 8] [03003500] +15:47:24 [ 49] [ 3] [418] +15:47:24 [ 54] [ 20] [1001418C000046204235] +15:47:24 ============================================================================ +15:47:24 Calculate Source COMM Id = 0 +15:47:24 ============================================================================ +15:47:24 + + +waiting on router queue for slot.... +15:47:25 ============================================================================ +15:47:25 Slot Id : <438> +15:47:25 Transaction Type : REQUEST +15:47:25 Received From : +15:47:25 ============================================================================ +15:47:25 FNo. Len. Field Value +15:47:25 ============================================================================ +15:47:25 [ 1] [ 4] [0800] +15:47:25 [ 7] [ 10] [0320084632] +15:47:25 [ 11] [ 6] [157091] +15:47:25 [ 70] [ 3] [301] +15:47:25 ============================================================================ +15:47:25 + + +waiting on router queue for slot.... +15:47:25 Sending to : +15:47:25 ============================================================================ +15:47:25 ============================================================================ +15:47:25 Slot Id : <438> +15:47:25 Transaction Type : RESPONSE +15:47:25 Received From : +15:47:25 ============================================================================ +15:47:25 FNo. Len. Field Value +15:47:25 ============================================================================ +15:47:25 [ 1] [ 4] [0810] +15:47:25 [ 7] [ 10] [0320084632] +15:47:25 [ 11] [ 6] [157091] +15:47:25 [ 39] [ 2] [00] +15:47:25 [ 70] [ 3] [301] +15:47:25 ============================================================================ +15:47:25 Calculate Source COMM Id = 2 +15:47:25 ============================================================================ +15:47:25 + + +waiting on router queue for slot.... +15:47:36 ============================================================================ +15:47:36 Slot Id : <442> +15:47:36 Transaction Type : REQUEST +15:47:36 Received From : +15:47:36 ============================================================================ +15:47:36 FNo. Len. Field Value +15:47:36 ============================================================================ +15:47:36 [ 1] [ 4] [0800] +15:47:36 [ 7] [ 10] [0320084643] +15:47:36 [ 11] [ 6] [157092] +15:47:36 [ 70] [ 3] [301] +15:47:36 ============================================================================ +15:47:36 + + +waiting on router queue for slot.... +15:47:36 Sending to : +15:47:36 ============================================================================ +15:47:36 ============================================================================ +15:47:36 Slot Id : <442> +15:47:36 Transaction Type : RESPONSE +15:47:36 Received From : +15:47:36 ============================================================================ +15:47:36 FNo. Len. Field Value +15:47:36 ============================================================================ +15:47:36 [ 1] [ 4] [0810] +15:47:36 [ 7] [ 10] [0320084643] +15:47:36 [ 11] [ 6] [157092] +15:47:36 [ 39] [ 2] [00] +15:47:36 [ 70] [ 3] [301] +15:47:36 ============================================================================ +15:47:36 Calculate Source COMM Id = 2 +15:47:36 ============================================================================ +15:47:36 + + +waiting on router queue for slot.... +15:47:47 ============================================================================ +15:47:47 Slot Id : <428> +15:47:47 Transaction Type : REQUEST +15:47:47 Received From : +15:47:47 ============================================================================ +15:47:47 FNo. Len. Field Value +15:47:47 ============================================================================ +15:47:47 [ 1] [ 4] [0800] +15:47:47 [ 7] [ 10] [0320225936] +15:47:47 [ 11] [ 6] [155936] +15:47:47 [ 37] [ 12] [57915155936] +15:47:47 [ 70] [ 3] [301] +15:47:47 ============================================================================ +15:47:47 + + +waiting on router queue for slot.... +15:47:47 Sending to : +15:47:47 ============================================================================ +15:47:47 ============================================================================ +15:47:47 Slot Id : <428> +15:47:47 Transaction Type : RESPONSE +15:47:47 Received From : +15:47:47 ============================================================================ +15:47:47 FNo. Len. Field Value +15:47:47 ============================================================================ +15:47:47 [ 1] [ 4] [0810] +15:47:47 [ 7] [ 10] [0320225936] +15:47:47 [ 11] [ 6] [155936] +15:47:47 [ 37] [ 12] [579151559360] +15:47:47 [ 39] [ 2] [00] +15:47:47 [ 70] [ 3] [810] +15:47:47 ============================================================================ +15:47:47 Calculate Source COMM Id = 6 +15:47:47 ============================================================================ +15:47:47 + + +waiting on router queue for slot.... +15:47:47 ============================================================================ +15:47:47 Slot Id : <427> +15:47:47 Transaction Type : REQUEST +15:47:47 Received From : +15:47:47 ============================================================================ +15:47:47 FNo. Len. Field Value +15:47:47 ============================================================================ +15:47:47 [ 1] [ 4] [0800] +15:47:47 [ 7] [ 10] [0320084654] +15:47:47 [ 11] [ 6] [157093] +15:47:47 [ 70] [ 3] [301] +15:47:47 ============================================================================ +15:47:47 + + +waiting on router queue for slot.... +15:47:47 Sending to : +15:47:47 ============================================================================ +15:47:47 ============================================================================ +15:47:47 Slot Id : <427> +15:47:47 Transaction Type : RESPONSE +15:47:47 Received From : +15:47:47 ============================================================================ +15:47:47 FNo. Len. Field Value +15:47:47 ============================================================================ +15:47:47 [ 1] [ 4] [0810] +15:47:47 [ 7] [ 10] [0320084654] +15:47:47 [ 11] [ 6] [157093] +15:47:47 [ 39] [ 2] [00] +15:47:47 [ 70] [ 3] [301] +15:47:47 ============================================================================ +15:47:47 Calculate Source COMM Id = 2 +15:47:47 ============================================================================ +15:47:47 + + +waiting on router queue for slot.... +15:47:51 ============================================================================ +15:47:51 Slot Id : <462> +15:47:51 Transaction Type : REQUEST +15:47:51 Received From : +15:47:51 ============================================================================ +15:47:51 FNo. Len. Field Value +15:47:51 ============================================================================ +15:47:51 [ 1] [ 4] [0200] +15:47:51 [ 2] [ 16] [1808930900012071] +15:47:51 [ 3] [ 6] [301000] +15:47:51 [ 4] [ 12] [000000000000] +15:47:51 [ 7] [ 10] [0320154746] +15:47:51 [ 11] [ 6] [788438] +15:47:51 [ 12] [ 6] [154746] +15:47:51 [ 13] [ 4] [0320] +15:47:51 [ 15] [ 4] [0320] +15:47:51 [ 18] [ 4] [6011] +15:47:51 [ 22] [ 3] [900] +15:47:51 [ 25] [ 2] [02] +15:47:51 [ 28] [ 9] [D00000000] +15:47:51 [ 32] [ 6] [621354] +15:47:51 [ 35] [ 27] [1808930900012071=1803500476] +15:47:51 [ 37] [ 12] [507902606184] +15:47:51 [ 41] [ 8] [05004300] +15:47:51 [ 42] [ 15] [NATIVE ] +15:47:51 [ 43] [ 40] [Ka deng office LuangprabangLAO] +15:47:51 [ 49] [ 3] [418] +15:47:51 [ 52] [ 16] [B429EDE374D419B5] +15:47:51 ============================================================================ +15:47:51 + + +waiting on router queue for slot.... +15:47:51 Sending to : +15:47:51 ============================================================================ +15:47:51 Sending to : +15:47:51 ============================================================================ +15:47:51 ============================================================================ +15:47:51 Slot Id : <462> +15:47:51 Transaction Type : REQUEST +15:47:51 Received From : +15:47:51 ============================================================================ +15:47:51 FNo. Len. Field Value +15:47:51 ============================================================================ +15:47:51 [ 1] [ 4] [0200] +15:47:51 [ 2] [ 16] [1808930900012071] +15:47:51 [ 3] [ 6] [301000] +15:47:51 [ 4] [ 12] [000000000000] +15:47:51 [ 7] [ 10] [0320154746] +15:47:51 [ 11] [ 6] [788438] +15:47:51 [ 12] [ 6] [154746] +15:47:51 [ 13] [ 4] [0320] +15:47:51 [ 15] [ 4] [0320] +15:47:51 [ 18] [ 4] [6011] +15:47:51 [ 22] [ 3] [900] +15:47:51 [ 25] [ 2] [02] +15:47:51 [ 28] [ 9] [D00000000] +15:47:51 [ 32] [ 6] [621354] +15:47:51 [ 35] [ 27] [1808930900012071=1803500476] +15:47:51 [ 37] [ 12] [507902606184] +15:47:51 [ 41] [ 8] [05004300] +15:47:51 [ 42] [ 15] [NATIVE ] +15:47:51 [ 43] [ 40] [Ka deng office LuangprabangLAO] +15:47:51 [ 49] [ 3] [418] +15:47:51 [ 52] [ 16] [B429EDE374D419B5] +15:47:51 ============================================================================ +15:47:51 + + +waiting on router queue for slot.... +15:47:51 Sending to : +15:47:51 ============================================================================ +15:47:51 ============================================================================ +15:47:51 Slot Id : <462> +15:47:51 Transaction Type : REQUEST +15:47:51 Received From : +15:47:51 ============================================================================ +15:47:51 FNo. Len. Field Value +15:47:51 ============================================================================ +15:47:51 [ 1] [ 4] [0200] +15:47:51 [ 2] [ 16] [1808930900012071] +15:47:51 [ 3] [ 6] [301000] +15:47:51 [ 4] [ 12] [000000000000] +15:47:51 [ 7] [ 10] [0320154746] +15:47:51 [ 11] [ 6] [788438] +15:47:51 [ 12] [ 6] [154746] +15:47:51 [ 13] [ 4] [0320] +15:47:51 [ 15] [ 4] [0320] +15:47:51 [ 18] [ 4] [6011] +15:47:51 [ 22] [ 3] [900] +15:47:51 [ 25] [ 2] [02] +15:47:51 [ 28] [ 9] [D00000000] +15:47:51 [ 32] [ 6] [621354] +15:47:51 [ 35] [ 27] [1808930900012071=1803500476] +15:47:51 [ 37] [ 12] [507902606184] +15:47:51 [ 41] [ 8] [05004300] +15:47:51 [ 42] [ 15] [NATIVE ] +15:47:51 [ 43] [ 40] [Ka deng office LuangprabangLAO] +15:47:51 [ 49] [ 3] [418] +15:47:51 [ 52] [ 16] [AE0545577EC48692] +15:47:51 ============================================================================ +15:47:51 + + +waiting on router queue for slot.... +15:47:51 Sending to : <2> +15:47:51 ============================================================================ +15:47:55 ============================================================================ +15:47:55 Slot Id : <462> +15:47:55 Transaction Type : RESPONSE +15:47:55 Received From : +15:47:55 ============================================================================ +15:47:55 FNo. Len. Field Value +15:47:55 ============================================================================ +15:47:55 [ 1] [ 4] [0210] +15:47:55 [ 2] [ 16] [1808930900012071] +15:47:55 [ 3] [ 6] [301000] +15:47:55 [ 7] [ 10] [0320154746] +15:47:55 [ 11] [ 6] [788438] +15:47:55 [ 12] [ 6] [154746] +15:47:55 [ 13] [ 4] [0320] +15:47:55 [ 14] [ 4] [1803] +15:47:55 [ 19] [ 3] [418] +15:47:55 [ 32] [ 6] [621354] +15:47:55 [ 37] [ 12] [507902606184] +15:47:55 [ 38] [ 6] [788438] +15:47:55 [ 39] [ 2] [00] +15:47:55 [ 41] [ 8] [05004300] +15:47:55 [ 49] [ 3] [418] +15:47:55 [ 52] [ 16] [AE0545577EC48692] +15:47:55 [ 54] [ 20] [1002418C000005981500] +15:47:55 ============================================================================ +15:47:55 Sending to : +15:47:55 ============================================================================ +15:47:55 + + +waiting on router queue for slot.... +15:47:56 ============================================================================ +15:47:56 Slot Id : <462> +15:47:56 Transaction Type : RESPONSE +15:47:56 Received From : +15:47:56 ============================================================================ +15:47:56 FNo. Len. Field Value +15:47:56 ============================================================================ +15:47:56 [ 1] [ 4] [0210] +15:47:56 [ 2] [ 16] [1808930900012071] +15:47:56 [ 3] [ 6] [301000] +15:47:56 [ 7] [ 10] [0320154746] +15:47:56 [ 11] [ 6] [788438] +15:47:56 [ 12] [ 6] [154746] +15:47:56 [ 13] [ 4] [0320] +15:47:56 [ 14] [ 4] [1803] +15:47:56 [ 19] [ 3] [418] +15:47:56 [ 32] [ 6] [621354] +15:47:56 [ 37] [ 12] [507902606184] +15:47:56 [ 38] [ 6] [788438] +15:47:56 [ 39] [ 2] [00] +15:47:56 [ 41] [ 8] [05004300] +15:47:56 [ 49] [ 3] [418] +15:47:56 [ 52] [ 16] [AE0545577EC48692] +15:47:56 [ 54] [ 20] [1002418C000005981500] +15:47:56 ============================================================================ +15:47:56 Calculate Source COMM Id = 0 +15:47:56 ============================================================================ +15:47:56 + + +waiting on router queue for slot.... +15:48:02 ============================================================================ +15:48:02 Slot Id : <451> +15:48:02 Transaction Type : REQUEST +15:48:02 Received From : +15:48:02 ============================================================================ +15:48:02 FNo. Len. Field Value +15:48:02 ============================================================================ +15:48:02 [ 1] [ 4] [0200] +15:48:02 [ 2] [ 16] [1808930900011644] +15:48:02 [ 3] [ 6] [011000] +15:48:02 [ 4] [ 12] [000100000000] +15:48:02 [ 7] [ 10] [0320154757] +15:48:02 [ 11] [ 6] [788489] +15:48:02 [ 12] [ 6] [154757] +15:48:02 [ 13] [ 4] [0320] +15:48:02 [ 15] [ 4] [0320] +15:48:02 [ 18] [ 4] [6011] +15:48:02 [ 22] [ 3] [900] +15:48:02 [ 25] [ 2] [02] +15:48:02 [ 28] [ 9] [D00002000] +15:48:02 [ 32] [ 6] [621354] +15:48:02 [ 35] [ 27] [1808930900011644=1803500700] +15:48:02 [ 37] [ 12] [507902497438] +15:48:02 [ 41] [ 8] [05003200] +15:48:02 [ 42] [ 15] [NATIVE ] +15:48:02 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +15:48:02 [ 49] [ 3] [418] +15:48:02 [ 52] [ 16] [940753A287412C36] +15:48:02 ============================================================================ +15:48:02 + + +waiting on router queue for slot.... +15:48:02 Sending to : +15:48:02 ============================================================================ +15:48:02 Sending to : +15:48:02 ============================================================================ +15:48:02 ============================================================================ +15:48:02 Slot Id : <451> +15:48:02 Transaction Type : REQUEST +15:48:02 Received From : +15:48:02 ============================================================================ +15:48:02 FNo. Len. Field Value +15:48:02 ============================================================================ +15:48:02 [ 1] [ 4] [0200] +15:48:02 [ 2] [ 16] [1808930900011644] +15:48:02 [ 3] [ 6] [011000] +15:48:02 [ 4] [ 12] [000100000000] +15:48:02 [ 7] [ 10] [0320154757] +15:48:02 [ 11] [ 6] [788489] +15:48:02 [ 12] [ 6] [154757] +15:48:02 [ 13] [ 4] [0320] +15:48:02 [ 15] [ 4] [0320] +15:48:02 [ 18] [ 4] [6011] +15:48:02 [ 22] [ 3] [900] +15:48:02 [ 25] [ 2] [02] +15:48:02 [ 28] [ 9] [D00002000] +15:48:02 [ 32] [ 6] [621354] +15:48:02 [ 35] [ 27] [1808930900011644=1803500700] +15:48:02 [ 37] [ 12] [507902497438] +15:48:02 [ 41] [ 8] [05003200] +15:48:02 [ 42] [ 15] [NATIVE ] +15:48:02 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +15:48:02 [ 49] [ 3] [418] +15:48:02 [ 52] [ 16] [940753A287412C36] +15:48:02 ============================================================================ +15:48:02 + + +waiting on router queue for slot.... +15:48:02 Sending to : +15:48:02 ============================================================================ +15:48:03 ============================================================================ +15:48:03 Slot Id : <451> +15:48:03 Transaction Type : REQUEST +15:48:03 Received From : +15:48:03 ============================================================================ +15:48:03 FNo. Len. Field Value +15:48:03 ============================================================================ +15:48:03 [ 1] [ 4] [0200] +15:48:03 [ 2] [ 16] [1808930900011644] +15:48:03 [ 3] [ 6] [011000] +15:48:03 [ 4] [ 12] [000100000000] +15:48:03 [ 7] [ 10] [0320154757] +15:48:03 [ 11] [ 6] [788489] +15:48:03 [ 12] [ 6] [154757] +15:48:03 [ 13] [ 4] [0320] +15:48:03 [ 15] [ 4] [0320] +15:48:03 [ 18] [ 4] [6011] +15:48:03 [ 22] [ 3] [900] +15:48:03 [ 25] [ 2] [02] +15:48:03 [ 28] [ 9] [D00002000] +15:48:03 [ 32] [ 6] [621354] +15:48:03 [ 35] [ 27] [1808930900011644=1803500700] +15:48:03 [ 37] [ 12] [507902497438] +15:48:03 [ 41] [ 8] [05003200] +15:48:03 [ 42] [ 15] [NATIVE ] +15:48:03 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +15:48:03 [ 49] [ 3] [418] +15:48:03 [ 52] [ 16] [EEA93A993BB9A20D] +15:48:03 ============================================================================ +15:48:03 + + +waiting on router queue for slot.... +15:48:03 Sending to : <2> +15:48:03 ============================================================================ +15:48:05 ============================================================================ +15:48:05 Slot Id : <431> +15:48:05 Transaction Type : REQUEST +15:48:05 Received From : +15:48:05 ============================================================================ +15:48:05 FNo. Len. Field Value +15:48:05 ============================================================================ +15:48:05 [ 1] [ 4] [0800] +15:48:05 [ 7] [ 10] [0320084712] +15:48:05 [ 11] [ 6] [157094] +15:48:05 [ 70] [ 3] [301] +15:48:05 ============================================================================ +15:48:05 + + +waiting on router queue for slot.... +15:48:05 Sending to : +15:48:05 ============================================================================ +15:48:05 ============================================================================ +15:48:05 Slot Id : <431> +15:48:05 Transaction Type : RESPONSE +15:48:05 Received From : +15:48:05 ============================================================================ +15:48:05 FNo. Len. Field Value +15:48:05 ============================================================================ +15:48:05 [ 1] [ 4] [0810] +15:48:05 [ 7] [ 10] [0320084712] +15:48:05 [ 11] [ 6] [157094] +15:48:05 [ 39] [ 2] [00] +15:48:05 [ 70] [ 3] [301] +15:48:05 ============================================================================ +15:48:05 Calculate Source COMM Id = 2 +15:48:05 ============================================================================ +15:48:05 + + +waiting on router queue for slot.... +15:48:11 ============================================================================ +15:48:11 Slot Id : <451> +15:48:11 Transaction Type : RESPONSE +15:48:11 Received From : +15:48:11 ============================================================================ +15:48:11 FNo. Len. Field Value +15:48:11 ============================================================================ +15:48:11 [ 1] [ 4] [0210] +15:48:11 [ 2] [ 16] [1808930900011644] +15:48:11 [ 3] [ 6] [011000] +15:48:11 [ 4] [ 12] [000100000000] +15:48:11 [ 6] [ 12] [000100000000] +15:48:11 [ 7] [ 10] [0320154757] +15:48:11 [ 11] [ 6] [788489] +15:48:11 [ 12] [ 6] [154757] +15:48:11 [ 13] [ 4] [0320] +15:48:11 [ 18] [ 4] [6011] +15:48:11 [ 19] [ 3] [418] +15:48:11 [ 22] [ 3] [021] +15:48:11 [ 32] [ 6] [621354] +15:48:11 [ 35] [ 27] [1808930900011644=1803500700] +15:48:11 [ 37] [ 12] [507902497438] +15:48:11 [ 38] [ 6] [788489] +15:48:11 [ 39] [ 2] [00] +15:48:11 [ 41] [ 8] [05003200] +15:48:11 [ 49] [ 3] [418] +15:48:11 [ 52] [ 16] [EEA93A993BB9A20D] +15:48:11 [ 54] [ 20] [1001418C001876453500] +15:48:11 ============================================================================ +15:48:11 Sending to : +15:48:11 ============================================================================ +15:48:11 + + +waiting on router queue for slot.... +15:48:12 ============================================================================ +15:48:12 Slot Id : <451> +15:48:12 Transaction Type : RESPONSE +15:48:12 Received From : +15:48:12 ============================================================================ +15:48:12 FNo. Len. Field Value +15:48:12 ============================================================================ +15:48:12 [ 1] [ 4] [0210] +15:48:12 [ 2] [ 16] [1808930900011644] +15:48:12 [ 3] [ 6] [011000] +15:48:12 [ 4] [ 12] [000100000000] +15:48:12 [ 6] [ 12] [000100000000] +15:48:12 [ 7] [ 10] [0320154757] +15:48:12 [ 11] [ 6] [788489] +15:48:12 [ 12] [ 6] [154757] +15:48:12 [ 13] [ 4] [0320] +15:48:12 [ 18] [ 4] [6011] +15:48:12 [ 19] [ 3] [418] +15:48:12 [ 22] [ 3] [021] +15:48:12 [ 32] [ 6] [621354] +15:48:12 [ 35] [ 27] [1808930900011644=1803500700] +15:48:12 [ 37] [ 12] [507902497438] +15:48:12 [ 38] [ 6] [788489] +15:48:12 [ 39] [ 2] [00] +15:48:12 [ 41] [ 8] [05003200] +15:48:12 [ 49] [ 3] [418] +15:48:12 [ 52] [ 16] [EEA93A993BB9A20D] +15:48:12 [ 54] [ 20] [1001418C001876453500] +15:48:12 ============================================================================ +15:48:12 Calculate Source COMM Id = 0 +15:48:12 ============================================================================ +15:48:12 + + +waiting on router queue for slot.... +15:48:13 ============================================================================ +15:48:13 Slot Id : <421> +15:48:13 Transaction Type : REQUEST +15:48:13 Received From : +15:48:13 ============================================================================ +15:48:13 FNo. Len. Field Value +15:48:13 ============================================================================ +15:48:13 [ 1] [ 4] [0800] +15:48:13 [ 2] [ 5] [02531] +15:48:13 [ 3] [ 6] [579158] +15:48:13 [ 7] [ 10] [0320084813] +15:48:13 [ 11] [ 6] [807329] +15:48:13 [ 15] [ 10] [0320084813] +15:48:13 [ 37] [ 11] [57915807329] +15:48:13 [ 70] [ 3] [001] +15:48:13 ============================================================================ +15:48:13 + + +waiting on router queue for slot.... +15:48:13 ============================================================================ +15:48:13 Slot Id : <421> +15:48:13 Transaction Type : RESPONSE +15:48:13 Received From : +15:48:13 ============================================================================ +15:48:13 FNo. Len. Field Value +15:48:13 ============================================================================ +15:48:13 [ 1] [ 4] [0810] +15:48:13 [ 7] [ 10] [0320084813] +15:48:13 [ 11] [ 6] [807329] +15:48:13 [ 15] [ 4] [0320] +15:48:13 [ 37] [ 12] [57915807329] +15:48:13 [ 39] [ 2] [00] +15:48:13 [ 70] [ 3] [001] +15:48:13 ============================================================================ +15:48:13 Sending to : +15:48:13 ============================================================================ +15:48:13 + + +waiting on router queue for slot.... +15:48:17 ============================================================================ +15:48:17 Slot Id : <457> +15:48:17 Transaction Type : REQUEST +15:48:17 Received From : +15:48:17 ============================================================================ +15:48:17 FNo. Len. Field Value +15:48:17 ============================================================================ +15:48:17 [ 1] [ 4] [0200] +15:48:17 [ 2] [ 16] [6688990102610100] +15:48:17 [ 3] [ 6] [012000] +15:48:17 [ 4] [ 12] [000050000000] +15:48:17 [ 7] [ 10] [0320154813] +15:48:17 [ 11] [ 6] [788561] +15:48:17 [ 12] [ 6] [154813] +15:48:17 [ 13] [ 4] [0320] +15:48:17 [ 15] [ 4] [0320] +15:48:17 [ 18] [ 4] [6011] +15:48:17 [ 22] [ 3] [900] +15:48:17 [ 25] [ 2] [02] +15:48:17 [ 28] [ 9] [D00002000] +15:48:17 [ 32] [ 6] [621354] +15:48:17 [ 35] [ 37] [6688990102610100=42091231010057900000] +15:48:17 [ 37] [ 12] [507902916596] +15:48:17 [ 41] [ 8] [12001400] +15:48:17 [ 42] [ 15] [NATIVE ] +15:48:17 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:48:17 [ 49] [ 3] [418] +15:48:17 [ 52] [ 16] [3D3E99804FA7AB57] +15:48:17 ============================================================================ +15:48:17 + + +waiting on router queue for slot.... +15:48:17 Sending to : +15:48:17 ============================================================================ +15:48:17 Sending to : +15:48:17 ============================================================================ +15:48:18 ============================================================================ +15:48:18 Slot Id : <457> +15:48:18 Transaction Type : REQUEST +15:48:18 Received From : +15:48:18 ============================================================================ +15:48:18 FNo. Len. Field Value +15:48:18 ============================================================================ +15:48:18 [ 1] [ 4] [0200] +15:48:18 [ 2] [ 16] [6688990102610100] +15:48:18 [ 3] [ 6] [012000] +15:48:18 [ 4] [ 12] [000050000000] +15:48:18 [ 7] [ 10] [0320154813] +15:48:18 [ 11] [ 6] [788561] +15:48:18 [ 12] [ 6] [154813] +15:48:18 [ 13] [ 4] [0320] +15:48:18 [ 15] [ 4] [0320] +15:48:18 [ 18] [ 4] [6011] +15:48:18 [ 22] [ 3] [900] +15:48:18 [ 25] [ 2] [02] +15:48:18 [ 28] [ 9] [D00002000] +15:48:18 [ 32] [ 6] [621354] +15:48:18 [ 35] [ 37] [6688990102610100=42091231010057900000] +15:48:18 [ 37] [ 12] [507902916596] +15:48:18 [ 41] [ 8] [12001400] +15:48:18 [ 42] [ 15] [NATIVE ] +15:48:18 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:48:18 [ 49] [ 3] [418] +15:48:18 [ 52] [ 16] [3D3E99804FA7AB57] +15:48:18 ============================================================================ +15:48:18 + + +waiting on router queue for slot.... +15:48:18 Sending to : +15:48:18 ============================================================================ +15:48:18 ============================================================================ +15:48:18 Slot Id : <457> +15:48:18 Transaction Type : REQUEST +15:48:18 Received From : +15:48:18 ============================================================================ +15:48:18 FNo. Len. Field Value +15:48:18 ============================================================================ +15:48:18 [ 1] [ 4] [0200] +15:48:18 [ 2] [ 16] [6688990102610100] +15:48:18 [ 3] [ 6] [012000] +15:48:18 [ 4] [ 12] [000050000000] +15:48:18 [ 7] [ 10] [0320154813] +15:48:18 [ 11] [ 6] [788561] +15:48:18 [ 12] [ 6] [154813] +15:48:18 [ 13] [ 4] [0320] +15:48:18 [ 15] [ 4] [0320] +15:48:18 [ 18] [ 4] [6011] +15:48:18 [ 22] [ 3] [900] +15:48:18 [ 25] [ 2] [02] +15:48:18 [ 28] [ 9] [D00002000] +15:48:18 [ 32] [ 6] [621354] +15:48:18 [ 35] [ 37] [6688990102610100=42091231010057900000] +15:48:18 [ 37] [ 12] [507902916596] +15:48:18 [ 41] [ 8] [12001400] +15:48:18 [ 42] [ 15] [NATIVE ] +15:48:18 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:48:18 [ 49] [ 3] [418] +15:48:18 [ 52] [ 16] [5D7E7690BBCA2F04] +15:48:18 ============================================================================ +15:48:18 + + +waiting on router queue for slot.... +15:48:18 Sending to : <4> +15:48:18 ============================================================================ +15:48:19 ============================================================================ +15:48:19 Slot Id : <457> +15:48:19 Transaction Type : RESPONSE +15:48:19 Received From : +15:48:19 ============================================================================ +15:48:19 FNo. Len. Field Value +15:48:19 ============================================================================ +15:48:19 [ 1] [ 4] [0210] +15:48:19 [ 2] [ 16] [6688990102610100] +15:48:19 [ 3] [ 6] [012000] +15:48:19 [ 4] [ 12] [000050000000] +15:48:19 [ 11] [ 6] [788561] +15:48:19 [ 12] [ 6] [154813] +15:48:19 [ 15] [ 4] [0320] +15:48:19 [ 18] [ 4] [6011] +15:48:19 [ 32] [ 6] [621354] +15:48:19 [ 35] [ 37] [6688990102610100=42091231010057900000] +15:48:19 [ 37] [ 12] [507902916596] +15:48:19 [ 38] [ 6] [378296] +15:48:19 [ 39] [ 2] [00] +15:48:19 [ 41] [ 8] [12001400] +15:48:19 [ 49] [ 3] [418] +15:48:19 [ 54] [ 20] [2002418C000552562298] +15:48:19 ============================================================================ +15:48:19 Sending to : +15:48:19 ============================================================================ +15:48:19 + + +waiting on router queue for slot.... +15:48:20 ============================================================================ +15:48:20 Slot Id : <457> +15:48:20 Transaction Type : RESPONSE +15:48:20 Received From : +15:48:20 ============================================================================ +15:48:20 FNo. Len. Field Value +15:48:20 ============================================================================ +15:48:20 [ 1] [ 4] [0210] +15:48:20 [ 2] [ 16] [6688990102610100] +15:48:20 [ 3] [ 6] [012000] +15:48:20 [ 4] [ 12] [000050000000] +15:48:20 [ 11] [ 6] [788561] +15:48:20 [ 12] [ 6] [154813] +15:48:20 [ 15] [ 4] [0320] +15:48:20 [ 18] [ 4] [6011] +15:48:20 [ 32] [ 6] [621354] +15:48:20 [ 35] [ 37] [6688990102610100=42091231010057900000] +15:48:20 [ 37] [ 12] [507902916596] +15:48:20 [ 38] [ 6] [378296] +15:48:20 [ 39] [ 2] [00] +15:48:20 [ 41] [ 8] [12001400] +15:48:20 [ 49] [ 3] [418] +15:48:20 [ 54] [ 20] [2002418C000552562298] +15:48:20 ============================================================================ +15:48:20 Calculate Source COMM Id = 0 +15:48:20 ============================================================================ +15:48:20 + + +waiting on router queue for slot.... +15:48:21 ============================================================================ +15:48:21 Slot Id : <426> +15:48:21 Transaction Type : REQUEST +15:48:21 Received From : +15:48:21 ============================================================================ +15:48:21 FNo. Len. Field Value +15:48:21 ============================================================================ +15:48:21 [ 1] [ 4] [0200] +15:48:21 [ 2] [ 16] [6688990103278709] +15:48:21 [ 3] [ 6] [010000] +15:48:21 [ 4] [ 12] [000050000000] +15:48:21 [ 7] [ 10] [0320154816] +15:48:21 [ 11] [ 6] [788577] +15:48:21 [ 12] [ 6] [154816] +15:48:21 [ 13] [ 4] [0320] +15:48:21 [ 15] [ 4] [0320] +15:48:21 [ 18] [ 4] [6011] +15:48:21 [ 22] [ 3] [900] +15:48:21 [ 25] [ 2] [02] +15:48:21 [ 28] [ 9] [D00002000] +15:48:21 [ 32] [ 6] [621354] +15:48:21 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:48:21 [ 37] [ 12] [507903499534] +15:48:21 [ 41] [ 8] [06002200] +15:48:21 [ 42] [ 15] [NATIVE ] +15:48:21 [ 43] [ 40] [Beng Market Beng LAO] +15:48:21 [ 49] [ 3] [418] +15:48:21 [ 52] [ 16] [074840EF52131956] +15:48:21 ============================================================================ +15:48:21 + + +waiting on router queue for slot.... +15:48:21 Sending to : +15:48:21 ============================================================================ +15:48:21 Sending to : +15:48:21 ============================================================================ +15:48:21 ============================================================================ +15:48:21 Slot Id : <422> +15:48:21 Transaction Type : REQUEST +15:48:21 Received From : +15:48:21 ============================================================================ +15:48:21 FNo. Len. Field Value +15:48:21 ============================================================================ +15:48:21 [ 1] [ 4] [0800] +15:48:21 [ 7] [ 10] [0320084728] +15:48:21 [ 11] [ 6] [157095] +15:48:21 [ 70] [ 3] [301] +15:48:21 ============================================================================ +15:48:21 + + +waiting on router queue for slot.... +15:48:21 Sending to : +15:48:21 ============================================================================ +15:48:21 ============================================================================ +15:48:21 Slot Id : <422> +15:48:21 Transaction Type : RESPONSE +15:48:21 Received From : +15:48:21 ============================================================================ +15:48:21 FNo. Len. Field Value +15:48:21 ============================================================================ +15:48:21 [ 1] [ 4] [0810] +15:48:21 [ 7] [ 10] [0320084728] +15:48:21 [ 11] [ 6] [157095] +15:48:21 [ 39] [ 2] [00] +15:48:21 [ 70] [ 3] [301] +15:48:21 ============================================================================ +15:48:21 Calculate Source COMM Id = 2 +15:48:21 ============================================================================ +15:48:21 + + +waiting on router queue for slot.... +15:48:21 ============================================================================ +15:48:21 Slot Id : <426> +15:48:21 Transaction Type : REQUEST +15:48:21 Received From : +15:48:21 ============================================================================ +15:48:21 FNo. Len. Field Value +15:48:21 ============================================================================ +15:48:21 [ 1] [ 4] [0200] +15:48:21 [ 2] [ 16] [6688990103278709] +15:48:21 [ 3] [ 6] [010000] +15:48:21 [ 4] [ 12] [000050000000] +15:48:21 [ 7] [ 10] [0320154816] +15:48:21 [ 11] [ 6] [788577] +15:48:21 [ 12] [ 6] [154816] +15:48:21 [ 13] [ 4] [0320] +15:48:21 [ 15] [ 4] [0320] +15:48:21 [ 18] [ 4] [6011] +15:48:21 [ 22] [ 3] [900] +15:48:21 [ 25] [ 2] [02] +15:48:21 [ 28] [ 9] [D00002000] +15:48:21 [ 32] [ 6] [621354] +15:48:21 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:48:21 [ 37] [ 12] [507903499534] +15:48:21 [ 41] [ 8] [06002200] +15:48:21 [ 42] [ 15] [NATIVE ] +15:48:21 [ 43] [ 40] [Beng Market Beng LAO] +15:48:21 [ 49] [ 3] [418] +15:48:21 [ 52] [ 16] [074840EF52131956] +15:48:21 ============================================================================ +15:48:21 + + +waiting on router queue for slot.... +15:48:21 Sending to : +15:48:21 ============================================================================ +15:48:21 ============================================================================ +15:48:21 Slot Id : <426> +15:48:21 Transaction Type : REQUEST +15:48:21 Received From : +15:48:21 ============================================================================ +15:48:21 FNo. Len. Field Value +15:48:21 ============================================================================ +15:48:21 [ 1] [ 4] [0200] +15:48:21 [ 2] [ 16] [6688990103278709] +15:48:21 [ 3] [ 6] [010000] +15:48:21 [ 4] [ 12] [000050000000] +15:48:21 [ 7] [ 10] [0320154816] +15:48:21 [ 11] [ 6] [788577] +15:48:21 [ 12] [ 6] [154816] +15:48:21 [ 13] [ 4] [0320] +15:48:21 [ 15] [ 4] [0320] +15:48:21 [ 18] [ 4] [6011] +15:48:21 [ 22] [ 3] [900] +15:48:21 [ 25] [ 2] [02] +15:48:21 [ 28] [ 9] [D00002000] +15:48:21 [ 32] [ 6] [621354] +15:48:21 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:48:21 [ 37] [ 12] [507903499534] +15:48:21 [ 41] [ 8] [06002200] +15:48:21 [ 42] [ 15] [NATIVE ] +15:48:21 [ 43] [ 40] [Beng Market Beng LAO] +15:48:21 [ 49] [ 3] [418] +15:48:21 [ 52] [ 16] [0426EA177F496FF2] +15:48:21 ============================================================================ +15:48:21 + + +waiting on router queue for slot.... +15:48:21 Sending to : <4> +15:48:21 ============================================================================ +15:48:22 ============================================================================ +15:48:22 Slot Id : <426> +15:48:22 Transaction Type : RESPONSE +15:48:22 Received From : +15:48:22 ============================================================================ +15:48:22 FNo. Len. Field Value +15:48:22 ============================================================================ +15:48:22 [ 1] [ 4] [0210] +15:48:22 [ 2] [ 16] [6688990103278709] +15:48:22 [ 3] [ 6] [010000] +15:48:22 [ 4] [ 12] [000050000000] +15:48:22 [ 11] [ 6] [788577] +15:48:22 [ 12] [ 6] [154816] +15:48:22 [ 15] [ 4] [0320] +15:48:22 [ 18] [ 4] [6011] +15:48:22 [ 32] [ 6] [621354] +15:48:22 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:48:22 [ 37] [ 12] [507903499534] +15:48:22 [ 38] [ 6] [009172] +15:48:22 [ 39] [ 2] [00] +15:48:22 [ 41] [ 8] [06002200] +15:48:22 [ 49] [ 3] [418] +15:48:22 [ 54] [ 20] [0002418C000070705851] +15:48:22 ============================================================================ +15:48:22 Sending to : +15:48:22 ============================================================================ +15:48:22 + + +waiting on router queue for slot.... +15:48:24 ============================================================================ +15:48:24 Slot Id : <426> +15:48:24 Transaction Type : RESPONSE +15:48:24 Received From : +15:48:24 ============================================================================ +15:48:24 FNo. Len. Field Value +15:48:24 ============================================================================ +15:48:24 [ 1] [ 4] [0210] +15:48:24 [ 2] [ 16] [6688990103278709] +15:48:24 [ 3] [ 6] [010000] +15:48:24 [ 4] [ 12] [000050000000] +15:48:24 [ 11] [ 6] [788577] +15:48:24 [ 12] [ 6] [154816] +15:48:24 [ 15] [ 4] [0320] +15:48:24 [ 18] [ 4] [6011] +15:48:24 [ 32] [ 6] [621354] +15:48:24 [ 35] [ 37] [6688990103278709=42121231870956400000] +15:48:24 [ 37] [ 12] [507903499534] +15:48:24 [ 38] [ 6] [009172] +15:48:24 [ 39] [ 2] [00] +15:48:24 [ 41] [ 8] [06002200] +15:48:24 [ 49] [ 3] [418] +15:48:24 [ 54] [ 20] [0002418C000070705851] +15:48:24 ============================================================================ +15:48:24 Calculate Source COMM Id = 0 +15:48:24 ============================================================================ +15:48:24 + + +waiting on router queue for slot.... +15:48:36 ============================================================================ +15:48:36 Slot Id : <465> +15:48:36 Transaction Type : REQUEST +15:48:36 Received From : +15:48:36 ============================================================================ +15:48:36 FNo. Len. Field Value +15:48:36 ============================================================================ +15:48:36 [ 1] [ 4] [0800] +15:48:36 [ 7] [ 10] [0320084743] +15:48:36 [ 11] [ 6] [157096] +15:48:36 [ 70] [ 3] [301] +15:48:36 ============================================================================ +15:48:36 + + +waiting on router queue for slot.... +15:48:36 Sending to : +15:48:36 ============================================================================ +15:48:36 ============================================================================ +15:48:36 Slot Id : <465> +15:48:36 Transaction Type : RESPONSE +15:48:36 Received From : +15:48:36 ============================================================================ +15:48:36 FNo. Len. Field Value +15:48:36 ============================================================================ +15:48:36 [ 1] [ 4] [0810] +15:48:36 [ 7] [ 10] [0320084743] +15:48:36 [ 11] [ 6] [157096] +15:48:36 [ 39] [ 2] [00] +15:48:36 [ 70] [ 3] [301] +15:48:36 ============================================================================ +15:48:36 Calculate Source COMM Id = 2 +15:48:36 ============================================================================ +15:48:36 + + +waiting on router queue for slot.... +15:48:52 ============================================================================ +15:48:52 Slot Id : <444> +15:48:52 Transaction Type : REQUEST +15:48:52 Received From : +15:48:52 ============================================================================ +15:48:52 FNo. Len. Field Value +15:48:52 ============================================================================ +15:48:52 [ 1] [ 4] [0800] +15:48:52 [ 7] [ 10] [0320230041] +15:48:52 [ 11] [ 6] [160041] +15:48:52 [ 37] [ 12] [57916160041] +15:48:52 [ 70] [ 3] [301] +15:48:52 ============================================================================ +15:48:52 + + +waiting on router queue for slot.... +15:48:52 Sending to : +15:48:52 ============================================================================ +15:48:52 ============================================================================ +15:48:52 Slot Id : <444> +15:48:52 Transaction Type : RESPONSE +15:48:52 Received From : +15:48:52 ============================================================================ +15:48:52 FNo. Len. Field Value +15:48:52 ============================================================================ +15:48:52 [ 1] [ 4] [0810] +15:48:52 [ 7] [ 10] [0320230041] +15:48:52 [ 11] [ 6] [160041] +15:48:52 [ 37] [ 12] [579161600410] +15:48:52 [ 39] [ 2] [00] +15:48:52 [ 70] [ 3] [810] +15:48:52 ============================================================================ +15:48:52 Calculate Source COMM Id = 6 +15:48:52 ============================================================================ +15:48:52 + + +waiting on router queue for slot.... +15:48:53 ============================================================================ +15:48:53 Slot Id : <436> +15:48:53 Transaction Type : REQUEST +15:48:53 Received From : +15:48:53 ============================================================================ +15:48:53 FNo. Len. Field Value +15:48:53 ============================================================================ +15:48:53 [ 1] [ 4] [0800] +15:48:53 [ 7] [ 10] [0320084800] +15:48:53 [ 11] [ 6] [157097] +15:48:53 [ 70] [ 3] [301] +15:48:53 ============================================================================ +15:48:53 + + +waiting on router queue for slot.... +15:48:53 Sending to : +15:48:53 ============================================================================ +15:48:53 ============================================================================ +15:48:53 Slot Id : <436> +15:48:53 Transaction Type : RESPONSE +15:48:53 Received From : +15:48:53 ============================================================================ +15:48:53 FNo. Len. Field Value +15:48:53 ============================================================================ +15:48:53 [ 1] [ 4] [0810] +15:48:53 [ 7] [ 10] [0320084800] +15:48:53 [ 11] [ 6] [157097] +15:48:53 [ 39] [ 2] [00] +15:48:53 [ 70] [ 3] [301] +15:48:53 ============================================================================ +15:48:53 Calculate Source COMM Id = 2 +15:48:53 ============================================================================ +15:48:53 + + +waiting on router queue for slot.... +15:49:04 ============================================================================ +15:49:04 Slot Id : <423> +15:49:04 Transaction Type : REQUEST +15:49:04 Received From : +15:49:04 ============================================================================ +15:49:04 FNo. Len. Field Value +15:49:04 ============================================================================ +15:49:04 [ 1] [ 4] [0800] +15:49:04 [ 7] [ 10] [0320084811] +15:49:04 [ 11] [ 6] [157098] +15:49:04 [ 70] [ 3] [301] +15:49:04 ============================================================================ +15:49:04 + + +waiting on router queue for slot.... +15:49:04 Sending to : +15:49:04 ============================================================================ +15:49:04 ============================================================================ +15:49:04 Slot Id : <423> +15:49:04 Transaction Type : RESPONSE +15:49:04 Received From : +15:49:04 ============================================================================ +15:49:04 FNo. Len. Field Value +15:49:04 ============================================================================ +15:49:04 [ 1] [ 4] [0810] +15:49:04 [ 7] [ 10] [0320084811] +15:49:04 [ 11] [ 6] [157098] +15:49:04 [ 39] [ 2] [00] +15:49:04 [ 70] [ 3] [301] +15:49:04 ============================================================================ +15:49:04 Calculate Source COMM Id = 2 +15:49:04 ============================================================================ +15:49:04 + + +waiting on router queue for slot.... +15:49:06 ============================================================================ +15:49:06 Slot Id : <458> +15:49:06 Transaction Type : REQUEST +15:49:06 Received From : +15:49:06 ============================================================================ +15:49:06 FNo. Len. Field Value +15:49:06 ============================================================================ +15:49:06 [ 1] [ 4] [0200] +15:49:06 [ 2] [ 16] [6213544001850681] +15:49:06 [ 3] [ 6] [011000] +15:49:06 [ 4] [ 12] [000020000000] +15:49:06 [ 7] [ 10] [0320154927] +15:49:06 [ 11] [ 6] [208208] +15:49:06 [ 12] [ 6] [154953] +15:49:06 [ 13] [ 4] [0320] +15:49:06 [ 14] [ 4] [4912] +15:49:06 [ 15] [ 4] [0320] +15:49:06 [ 18] [ 4] [6011] +15:49:06 [ 19] [ 3] [418] +15:49:06 [ 22] [ 3] [021] +15:49:06 [ 25] [ 2] [01] +15:49:06 [ 28] [ 9] [D00002000] +15:49:06 [ 32] [ 6] [198901] +15:49:06 [ 35] [ 32] [6213544001850681=491212015068338] +15:49:06 [ 37] [ 12] [507915208208] +15:49:06 [ 41] [ 8] [01529009] +15:49:06 [ 42] [ 15] [000000041529009] +15:49:06 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +15:49:06 [ 49] [ 3] [418] +15:49:06 [ 52] [ 16] [E0724E6E374BDC7F] +15:49:06 ============================================================================ +15:49:06 + + +waiting on router queue for slot.... +15:49:06 Sending to : +15:49:06 ============================================================================ +15:49:06 Sending to : +15:49:06 ============================================================================ +15:49:07 ============================================================================ +15:49:07 Slot Id : <458> +15:49:07 Transaction Type : REQUEST +15:49:07 Received From : +15:49:07 ============================================================================ +15:49:07 FNo. Len. Field Value +15:49:07 ============================================================================ +15:49:07 [ 1] [ 4] [0200] +15:49:07 [ 2] [ 16] [6213544001850681] +15:49:07 [ 3] [ 6] [011000] +15:49:07 [ 4] [ 12] [000020000000] +15:49:07 [ 7] [ 10] [0320154927] +15:49:07 [ 11] [ 6] [208208] +15:49:07 [ 12] [ 6] [154953] +15:49:07 [ 13] [ 4] [0320] +15:49:07 [ 14] [ 4] [4912] +15:49:07 [ 15] [ 4] [0320] +15:49:07 [ 18] [ 4] [6011] +15:49:07 [ 19] [ 3] [418] +15:49:07 [ 22] [ 3] [021] +15:49:07 [ 25] [ 2] [01] +15:49:07 [ 28] [ 9] [D00002000] +15:49:07 [ 32] [ 6] [198901] +15:49:07 [ 35] [ 32] [6213544001850681=491212015068338] +15:49:07 [ 37] [ 12] [507915208208] +15:49:07 [ 41] [ 8] [01529009] +15:49:07 [ 42] [ 15] [000000041529009] +15:49:07 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +15:49:07 [ 49] [ 3] [418] +15:49:07 [ 52] [ 16] [E0724E6E374BDC7F] +15:49:07 ============================================================================ +15:49:07 + + +waiting on router queue for slot.... +15:49:07 Sending to : +15:49:07 ============================================================================ +15:49:07 ============================================================================ +15:49:07 Slot Id : <458> +15:49:07 Transaction Type : REQUEST +15:49:07 Received From : +15:49:07 ============================================================================ +15:49:07 FNo. Len. Field Value +15:49:07 ============================================================================ +15:49:07 [ 1] [ 4] [0200] +15:49:07 [ 2] [ 16] [6213544001850681] +15:49:07 [ 3] [ 6] [011000] +15:49:07 [ 4] [ 12] [000020000000] +15:49:07 [ 7] [ 10] [0320154927] +15:49:07 [ 11] [ 6] [208208] +15:49:07 [ 12] [ 6] [154953] +15:49:07 [ 13] [ 4] [0320] +15:49:07 [ 14] [ 4] [4912] +15:49:07 [ 15] [ 4] [0320] +15:49:07 [ 18] [ 4] [6011] +15:49:07 [ 19] [ 3] [418] +15:49:07 [ 22] [ 3] [021] +15:49:07 [ 25] [ 2] [01] +15:49:07 [ 28] [ 9] [D00002000] +15:49:07 [ 32] [ 6] [198901] +15:49:07 [ 35] [ 32] [6213544001850681=491212015068338] +15:49:07 [ 37] [ 12] [507915208208] +15:49:07 [ 41] [ 8] [01529009] +15:49:07 [ 42] [ 15] [000000041529009] +15:49:07 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +15:49:07 [ 49] [ 3] [418] +15:49:07 [ 52] [ 16] [F5AC6D99B196922C] +15:49:07 ============================================================================ +15:49:07 + + +waiting on router queue for slot.... +15:49:07 Sending to : <0> +15:49:07 ============================================================================ +15:49:07 ============================================================================ +15:49:07 Slot Id : <458> +15:49:07 Transaction Type : RESPONSE +15:49:07 Received From : +15:49:07 ============================================================================ +15:49:07 FNo. Len. Field Value +15:49:07 ============================================================================ +15:49:07 [ 1] [ 4] [0210] +15:49:07 [ 2] [ 16] [6213544001850681] +15:49:07 [ 3] [ 6] [011000] +15:49:07 [ 4] [ 12] [000020000000] +15:49:07 [ 7] [ 10] [0320154927] +15:49:07 [ 11] [ 6] [208208] +15:49:07 [ 12] [ 6] [154953] +15:49:07 [ 13] [ 4] [0320] +15:49:07 [ 15] [ 4] [0320] +15:49:07 [ 18] [ 4] [6011] +15:49:07 [ 19] [ 3] [418] +15:49:07 [ 32] [ 6] [198901] +15:49:07 [ 35] [ 32] [6213544001850681=491212015068338] +15:49:07 [ 37] [ 12] [507915208208] +15:49:07 [ 38] [ 6] [457257] +15:49:07 [ 39] [ 2] [00] +15:49:07 [ 41] [ 8] [01529009] +15:49:07 [ 49] [ 3] [418] +15:49:07 [ 54] [ 40] [1001418C0013736627301002418C001373662730] +15:49:07 ============================================================================ +15:49:07 Sending to : +15:49:07 ============================================================================ +15:49:07 + + +waiting on router queue for slot.... +15:49:09 ============================================================================ +15:49:09 Slot Id : <458> +15:49:09 Transaction Type : RESPONSE +15:49:09 Received From : +15:49:09 ============================================================================ +15:49:09 FNo. Len. Field Value +15:49:09 ============================================================================ +15:49:09 [ 1] [ 4] [0210] +15:49:09 [ 2] [ 16] [6213544001850681] +15:49:09 [ 3] [ 6] [011000] +15:49:09 [ 4] [ 12] [000020000000] +15:49:09 [ 7] [ 10] [0320154927] +15:49:09 [ 11] [ 6] [208208] +15:49:09 [ 12] [ 6] [154953] +15:49:09 [ 13] [ 4] [0320] +15:49:09 [ 15] [ 4] [0320] +15:49:09 [ 18] [ 4] [6011] +15:49:09 [ 19] [ 3] [418] +15:49:09 [ 32] [ 6] [198901] +15:49:09 [ 35] [ 32] [6213544001850681=491212015068338] +15:49:09 [ 37] [ 12] [507915208208] +15:49:09 [ 38] [ 6] [457257] +15:49:09 [ 39] [ 2] [00] +15:49:09 [ 41] [ 8] [01529009] +15:49:09 [ 49] [ 3] [418] +15:49:09 [ 54] [ 40] [1001418C0013736627301002418C001373662730] +15:49:09 ============================================================================ +15:49:09 Calculate Source COMM Id = 5 +15:49:09 ============================================================================ +15:49:09 + + +waiting on router queue for slot.... +15:49:15 ============================================================================ +15:49:15 Slot Id : <439> +15:49:15 Transaction Type : REQUEST +15:49:15 Received From : +15:49:15 ============================================================================ +15:49:15 FNo. Len. Field Value +15:49:15 ============================================================================ +15:49:15 [ 1] [ 4] [0800] +15:49:15 [ 7] [ 10] [0320084822] +15:49:15 [ 11] [ 6] [157099] +15:49:15 [ 70] [ 3] [301] +15:49:15 ============================================================================ +15:49:15 + + +waiting on router queue for slot.... +15:49:15 Sending to : +15:49:15 ============================================================================ +15:49:15 ============================================================================ +15:49:15 Slot Id : <439> +15:49:15 Transaction Type : RESPONSE +15:49:15 Received From : +15:49:15 ============================================================================ +15:49:15 FNo. Len. Field Value +15:49:15 ============================================================================ +15:49:15 [ 1] [ 4] [0810] +15:49:15 [ 7] [ 10] [0320084822] +15:49:15 [ 11] [ 6] [157099] +15:49:15 [ 39] [ 2] [00] +15:49:15 [ 70] [ 3] [301] +15:49:15 ============================================================================ +15:49:15 Calculate Source COMM Id = 2 +15:49:15 ============================================================================ +15:49:15 + + +waiting on router queue for slot.... +15:49:15 ============================================================================ +15:49:15 Slot Id : <459> +15:49:15 Transaction Type : REQUEST +15:49:15 Received From : +15:49:15 ============================================================================ +15:49:15 FNo. Len. Field Value +15:49:15 ============================================================================ +15:49:15 [ 1] [ 4] [0800] +15:49:15 [ 2] [ 5] [02531] +15:49:15 [ 3] [ 6] [579158] +15:49:15 [ 7] [ 10] [0320084915] +15:49:15 [ 11] [ 6] [807330] +15:49:15 [ 15] [ 10] [0320084915] +15:49:15 [ 37] [ 11] [57915807330] +15:49:15 [ 70] [ 3] [001] +15:49:15 ============================================================================ +15:49:15 + + +waiting on router queue for slot.... +15:49:15 ============================================================================ +15:49:15 Slot Id : <459> +15:49:15 Transaction Type : RESPONSE +15:49:15 Received From : +15:49:15 ============================================================================ +15:49:15 FNo. Len. Field Value +15:49:15 ============================================================================ +15:49:15 [ 1] [ 4] [0810] +15:49:15 [ 7] [ 10] [0320084915] +15:49:15 [ 11] [ 6] [807330] +15:49:15 [ 15] [ 4] [0320] +15:49:15 [ 37] [ 12] [57915807330] +15:49:15 [ 39] [ 2] [00] +15:49:15 [ 70] [ 3] [001] +15:49:15 ============================================================================ +15:49:15 Sending to : +15:49:15 ============================================================================ +15:49:15 + + +waiting on router queue for slot.... +15:49:19 ============================================================================ +15:49:19 Slot Id : <452> +15:49:19 Transaction Type : REQUEST +15:49:19 Received From : +15:49:19 ============================================================================ +15:49:19 FNo. Len. Field Value +15:49:19 ============================================================================ +15:49:19 [ 1] [ 4] [0200] +15:49:19 [ 2] [ 16] [6213544001277786] +15:49:19 [ 3] [ 6] [011000] +15:49:19 [ 4] [ 12] [000070000000] +15:49:19 [ 7] [ 10] [0320155706] +15:49:19 [ 11] [ 6] [274831] +15:49:19 [ 12] [ 6] [155706] +15:49:19 [ 13] [ 4] [0320] +15:49:19 [ 14] [ 4] [4912] +15:49:19 [ 15] [ 4] [0320] +15:49:19 [ 18] [ 4] [6011] +15:49:19 [ 22] [ 3] [900] +15:49:19 [ 25] [ 2] [02] +15:49:19 [ 28] [ 9] [D00002000] +15:49:19 [ 32] [ 6] [220699] +15:49:19 [ 35] [ 32] [6213544001277786=491212017778304] +15:49:19 [ 37] [ 12] [507900057318] +15:49:19 [ 41] [ 8] [01000500] +15:49:19 [ 42] [ 15] [APTRA ] +15:49:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:49:19 [ 49] [ 3] [418] +15:49:19 [ 52] [ 16] [EDC4A2F53E1B9323] +15:49:19 ============================================================================ +15:49:19 + + +waiting on router queue for slot.... +15:49:19 Sending to : +15:49:19 ============================================================================ +15:49:19 Sending to : +15:49:19 ============================================================================ +15:49:20 ============================================================================ +15:49:20 Slot Id : <452> +15:49:20 Transaction Type : REQUEST +15:49:20 Received From : +15:49:20 ============================================================================ +15:49:20 FNo. Len. Field Value +15:49:20 ============================================================================ +15:49:20 [ 1] [ 4] [0200] +15:49:20 [ 2] [ 16] [6213544001277786] +15:49:20 [ 3] [ 6] [011000] +15:49:20 [ 4] [ 12] [000070000000] +15:49:20 [ 7] [ 10] [0320155706] +15:49:20 [ 11] [ 6] [274831] +15:49:20 [ 12] [ 6] [155706] +15:49:20 [ 13] [ 4] [0320] +15:49:20 [ 14] [ 4] [4912] +15:49:20 [ 15] [ 4] [0320] +15:49:20 [ 18] [ 4] [6011] +15:49:20 [ 22] [ 3] [900] +15:49:20 [ 25] [ 2] [02] +15:49:20 [ 28] [ 9] [D00002000] +15:49:20 [ 32] [ 6] [220699] +15:49:20 [ 35] [ 32] [6213544001277786=491212017778304] +15:49:20 [ 37] [ 12] [507900057318] +15:49:20 [ 41] [ 8] [01000500] +15:49:20 [ 42] [ 15] [APTRA ] +15:49:20 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:49:20 [ 49] [ 3] [418] +15:49:20 [ 52] [ 16] [EDC4A2F53E1B9323] +15:49:20 ============================================================================ +15:49:20 + + +waiting on router queue for slot.... +15:49:20 Sending to : +15:49:20 ============================================================================ +15:49:20 ============================================================================ +15:49:20 Slot Id : <452> +15:49:20 Transaction Type : REQUEST +15:49:20 Received From : +15:49:20 ============================================================================ +15:49:20 FNo. Len. Field Value +15:49:20 ============================================================================ +15:49:20 [ 1] [ 4] [0200] +15:49:20 [ 2] [ 16] [6213544001277786] +15:49:20 [ 3] [ 6] [011000] +15:49:20 [ 4] [ 12] [000070000000] +15:49:20 [ 7] [ 10] [0320155706] +15:49:20 [ 11] [ 6] [274831] +15:49:20 [ 12] [ 6] [155706] +15:49:20 [ 13] [ 4] [0320] +15:49:20 [ 14] [ 4] [4912] +15:49:20 [ 15] [ 4] [0320] +15:49:20 [ 18] [ 4] [6011] +15:49:20 [ 22] [ 3] [900] +15:49:20 [ 25] [ 2] [02] +15:49:20 [ 28] [ 9] [D00002000] +15:49:20 [ 32] [ 6] [220699] +15:49:20 [ 35] [ 32] [6213544001277786=491212017778304] +15:49:20 [ 37] [ 12] [507900057318] +15:49:20 [ 41] [ 8] [01000500] +15:49:20 [ 42] [ 15] [APTRA ] +15:49:20 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:49:20 [ 49] [ 3] [418] +15:49:20 [ 52] [ 16] [6CB0578905668604] +15:49:20 ============================================================================ +15:49:20 + + +waiting on router queue for slot.... +15:49:20 Sending to : <0> +15:49:20 ============================================================================ +15:49:20 ============================================================================ +15:49:20 Slot Id : <452> +15:49:20 Transaction Type : RESPONSE +15:49:20 Received From : +15:49:20 ============================================================================ +15:49:20 FNo. Len. Field Value +15:49:20 ============================================================================ +15:49:20 [ 1] [ 4] [0210] +15:49:20 [ 2] [ 16] [6213544001277786] +15:49:20 [ 3] [ 6] [011000] +15:49:20 [ 4] [ 12] [000070000000] +15:49:20 [ 7] [ 10] [0320155706] +15:49:20 [ 11] [ 6] [274831] +15:49:20 [ 12] [ 6] [155706] +15:49:20 [ 13] [ 4] [0320] +15:49:20 [ 15] [ 4] [0320] +15:49:20 [ 18] [ 4] [6011] +15:49:20 [ 32] [ 6] [220699] +15:49:20 [ 35] [ 32] [6213544001277786=491212017778304] +15:49:20 [ 37] [ 12] [507900057318] +15:49:20 [ 38] [ 6] [358560] +15:49:20 [ 39] [ 2] [00] +15:49:20 [ 41] [ 8] [01000500] +15:49:20 [ 49] [ 3] [418] +15:49:20 [ 54] [ 40] [1001418C0001560598821002418C000156059882] +15:49:20 ============================================================================ +15:49:20 Sending to : +15:49:20 ============================================================================ +15:49:20 + + +waiting on router queue for slot.... +15:49:22 ============================================================================ +15:49:22 Slot Id : <452> +15:49:22 Transaction Type : RESPONSE +15:49:22 Received From : +15:49:22 ============================================================================ +15:49:22 FNo. Len. Field Value +15:49:22 ============================================================================ +15:49:22 [ 1] [ 4] [0210] +15:49:22 [ 2] [ 16] [6213544001277786] +15:49:22 [ 3] [ 6] [011000] +15:49:22 [ 4] [ 12] [000070000000] +15:49:22 [ 7] [ 10] [0320155706] +15:49:22 [ 11] [ 6] [274831] +15:49:22 [ 12] [ 6] [155706] +15:49:22 [ 13] [ 4] [0320] +15:49:22 [ 15] [ 4] [0320] +15:49:22 [ 18] [ 4] [6011] +15:49:22 [ 32] [ 6] [220699] +15:49:22 [ 35] [ 32] [6213544001277786=491212017778304] +15:49:22 [ 37] [ 12] [507900057318] +15:49:22 [ 38] [ 6] [358560] +15:49:22 [ 39] [ 2] [00] +15:49:22 [ 41] [ 8] [01000500] +15:49:22 [ 49] [ 3] [418] +15:49:22 [ 54] [ 40] [1001418C0001560598821002418C000156059882] +15:49:22 ============================================================================ +15:49:22 Calculate Source COMM Id = 1 +15:49:22 ============================================================================ +15:49:22 + + +waiting on router queue for slot.... +15:49:25 ============================================================================ +15:49:25 Slot Id : <455> +15:49:25 Transaction Type : REQUEST +15:49:25 Received From : +15:49:25 ============================================================================ +15:49:25 FNo. Len. Field Value +15:49:25 ============================================================================ +15:49:25 [ 1] [ 4] [0800] +15:49:25 [ 7] [ 10] [0320084833] +15:49:25 [ 11] [ 6] [157100] +15:49:25 [ 70] [ 3] [301] +15:49:25 ============================================================================ +15:49:25 + + +waiting on router queue for slot.... +15:49:25 Sending to : +15:49:25 ============================================================================ +15:49:25 ============================================================================ +15:49:25 Slot Id : <455> +15:49:25 Transaction Type : RESPONSE +15:49:25 Received From : +15:49:25 ============================================================================ +15:49:25 FNo. Len. Field Value +15:49:25 ============================================================================ +15:49:25 [ 1] [ 4] [0810] +15:49:25 [ 7] [ 10] [0320084833] +15:49:25 [ 11] [ 6] [157100] +15:49:25 [ 39] [ 2] [00] +15:49:25 [ 70] [ 3] [301] +15:49:25 ============================================================================ +15:49:25 Calculate Source COMM Id = 2 +15:49:25 ============================================================================ +15:49:25 + + +waiting on router queue for slot.... +15:49:37 ============================================================================ +15:49:37 Slot Id : <466> +15:49:37 Transaction Type : REQUEST +15:49:37 Received From : +15:49:37 ============================================================================ +15:49:37 FNo. Len. Field Value +15:49:37 ============================================================================ +15:49:37 [ 1] [ 4] [0200] +15:49:37 [ 2] [ 16] [6688990103285308] +15:49:37 [ 3] [ 6] [010000] +15:49:37 [ 4] [ 12] [000100000000] +15:49:37 [ 7] [ 10] [0320154932] +15:49:37 [ 11] [ 6] [788919] +15:49:37 [ 12] [ 6] [154932] +15:49:37 [ 13] [ 4] [0320] +15:49:37 [ 15] [ 4] [0320] +15:49:37 [ 18] [ 4] [6011] +15:49:37 [ 22] [ 3] [900] +15:49:37 [ 25] [ 2] [02] +15:49:37 [ 28] [ 9] [D00002000] +15:49:37 [ 32] [ 6] [621354] +15:49:37 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:49:37 [ 37] [ 12] [507903499536] +15:49:37 [ 41] [ 8] [06002200] +15:49:37 [ 42] [ 15] [NATIVE ] +15:49:37 [ 43] [ 40] [Beng Market Beng LAO] +15:49:37 [ 49] [ 3] [418] +15:49:37 [ 52] [ 16] [F0618BF005454A15] +15:49:37 ============================================================================ +15:49:37 + + +waiting on router queue for slot.... +15:49:37 Sending to : +15:49:37 ============================================================================ +15:49:37 Sending to : +15:49:37 ============================================================================ +15:49:37 ============================================================================ +15:49:37 Slot Id : <466> +15:49:37 Transaction Type : REQUEST +15:49:37 Received From : +15:49:37 ============================================================================ +15:49:37 FNo. Len. Field Value +15:49:37 ============================================================================ +15:49:37 [ 1] [ 4] [0200] +15:49:37 [ 2] [ 16] [6688990103285308] +15:49:37 [ 3] [ 6] [010000] +15:49:37 [ 4] [ 12] [000100000000] +15:49:37 [ 7] [ 10] [0320154932] +15:49:37 [ 11] [ 6] [788919] +15:49:37 [ 12] [ 6] [154932] +15:49:37 [ 13] [ 4] [0320] +15:49:37 [ 15] [ 4] [0320] +15:49:37 [ 18] [ 4] [6011] +15:49:37 [ 22] [ 3] [900] +15:49:37 [ 25] [ 2] [02] +15:49:37 [ 28] [ 9] [D00002000] +15:49:37 [ 32] [ 6] [621354] +15:49:37 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:49:37 [ 37] [ 12] [507903499536] +15:49:37 [ 41] [ 8] [06002200] +15:49:37 [ 42] [ 15] [NATIVE ] +15:49:37 [ 43] [ 40] [Beng Market Beng LAO] +15:49:37 [ 49] [ 3] [418] +15:49:37 [ 52] [ 16] [F0618BF005454A15] +15:49:37 ============================================================================ +15:49:37 + + +waiting on router queue for slot.... +15:49:37 Sending to : +15:49:37 ============================================================================ +15:49:37 ============================================================================ +15:49:37 Slot Id : <466> +15:49:37 Transaction Type : REQUEST +15:49:37 Received From : +15:49:37 ============================================================================ +15:49:37 FNo. Len. Field Value +15:49:37 ============================================================================ +15:49:37 [ 1] [ 4] [0200] +15:49:37 [ 2] [ 16] [6688990103285308] +15:49:37 [ 3] [ 6] [010000] +15:49:37 [ 4] [ 12] [000100000000] +15:49:37 [ 7] [ 10] [0320154932] +15:49:37 [ 11] [ 6] [788919] +15:49:37 [ 12] [ 6] [154932] +15:49:37 [ 13] [ 4] [0320] +15:49:37 [ 15] [ 4] [0320] +15:49:37 [ 18] [ 4] [6011] +15:49:37 [ 22] [ 3] [900] +15:49:37 [ 25] [ 2] [02] +15:49:37 [ 28] [ 9] [D00002000] +15:49:37 [ 32] [ 6] [621354] +15:49:37 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:49:37 [ 37] [ 12] [507903499536] +15:49:37 [ 41] [ 8] [06002200] +15:49:37 [ 42] [ 15] [NATIVE ] +15:49:37 [ 43] [ 40] [Beng Market Beng LAO] +15:49:37 [ 49] [ 3] [418] +15:49:37 [ 52] [ 16] [B19E3E3748DDE445] +15:49:37 ============================================================================ +15:49:37 + + +waiting on router queue for slot.... +15:49:37 Sending to : <4> +15:49:37 ============================================================================ +15:49:39 ============================================================================ +15:49:39 Slot Id : <466> +15:49:39 Transaction Type : RESPONSE +15:49:39 Received From : +15:49:39 ============================================================================ +15:49:39 FNo. Len. Field Value +15:49:39 ============================================================================ +15:49:39 [ 1] [ 4] [0210] +15:49:39 [ 2] [ 16] [6688990103285308] +15:49:39 [ 3] [ 6] [010000] +15:49:39 [ 4] [ 12] [000100000000] +15:49:39 [ 11] [ 6] [788919] +15:49:39 [ 12] [ 6] [154932] +15:49:39 [ 15] [ 4] [0320] +15:49:39 [ 18] [ 4] [6011] +15:49:39 [ 32] [ 6] [621354] +15:49:39 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:49:39 [ 37] [ 12] [507903499536] +15:49:39 [ 38] [ 6] [873111] +15:49:39 [ 39] [ 2] [00] +15:49:39 [ 41] [ 8] [06002200] +15:49:39 [ 49] [ 3] [418] +15:49:39 [ 54] [ 20] [0002418C000447870443] +15:49:39 ============================================================================ +15:49:39 Sending to : +15:49:39 ============================================================================ +15:49:39 + + +waiting on router queue for slot.... +15:49:40 ============================================================================ +15:49:40 Slot Id : <466> +15:49:40 Transaction Type : RESPONSE +15:49:40 Received From : +15:49:40 ============================================================================ +15:49:40 FNo. Len. Field Value +15:49:40 ============================================================================ +15:49:40 [ 1] [ 4] [0210] +15:49:40 [ 2] [ 16] [6688990103285308] +15:49:40 [ 3] [ 6] [010000] +15:49:40 [ 4] [ 12] [000100000000] +15:49:40 [ 11] [ 6] [788919] +15:49:40 [ 12] [ 6] [154932] +15:49:40 [ 15] [ 4] [0320] +15:49:40 [ 18] [ 4] [6011] +15:49:40 [ 32] [ 6] [621354] +15:49:40 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:49:40 [ 37] [ 12] [507903499536] +15:49:40 [ 38] [ 6] [873111] +15:49:40 [ 39] [ 2] [00] +15:49:40 [ 41] [ 8] [06002200] +15:49:40 [ 49] [ 3] [418] +15:49:40 [ 54] [ 20] [0002418C000447870443] +15:49:40 ============================================================================ +15:49:40 Calculate Source COMM Id = 0 +15:49:40 ============================================================================ +15:49:40 + + +waiting on router queue for slot.... +15:49:41 ============================================================================ +15:49:41 Slot Id : <468> +15:49:41 Transaction Type : REQUEST +15:49:41 Received From : +15:49:41 ============================================================================ +15:49:41 FNo. Len. Field Value +15:49:41 ============================================================================ +15:49:41 [ 1] [ 4] [0800] +15:49:41 [ 7] [ 10] [0320084848] +15:49:41 [ 11] [ 6] [157101] +15:49:41 [ 70] [ 3] [301] +15:49:41 ============================================================================ +15:49:41 + + +waiting on router queue for slot.... +15:49:41 Sending to : +15:49:41 ============================================================================ +15:49:41 ============================================================================ +15:49:41 Slot Id : <468> +15:49:41 Transaction Type : RESPONSE +15:49:41 Received From : +15:49:41 ============================================================================ +15:49:41 FNo. Len. Field Value +15:49:41 ============================================================================ +15:49:41 [ 1] [ 4] [0810] +15:49:41 [ 7] [ 10] [0320084848] +15:49:41 [ 11] [ 6] [157101] +15:49:41 [ 39] [ 2] [00] +15:49:41 [ 70] [ 3] [301] +15:49:41 ============================================================================ +15:49:41 Calculate Source COMM Id = 2 +15:49:41 ============================================================================ +15:49:41 + + +waiting on router queue for slot.... +15:49:52 ============================================================================ +15:49:52 Slot Id : <475> +15:49:52 Transaction Type : REQUEST +15:49:52 Received From : +15:49:52 ============================================================================ +15:49:52 FNo. Len. Field Value +15:49:52 ============================================================================ +15:49:52 [ 1] [ 4] [0800] +15:49:52 [ 7] [ 10] [0320084859] +15:49:52 [ 11] [ 6] [157102] +15:49:52 [ 70] [ 3] [301] +15:49:52 ============================================================================ +15:49:52 + + +waiting on router queue for slot.... +15:49:52 Sending to : +15:49:52 ============================================================================ +15:49:52 ============================================================================ +15:49:52 Slot Id : <475> +15:49:52 Transaction Type : RESPONSE +15:49:52 Received From : +15:49:52 ============================================================================ +15:49:52 FNo. Len. Field Value +15:49:52 ============================================================================ +15:49:52 [ 1] [ 4] [0810] +15:49:52 [ 7] [ 10] [0320084859] +15:49:52 [ 11] [ 6] [157102] +15:49:52 [ 39] [ 2] [00] +15:49:52 [ 70] [ 3] [301] +15:49:52 ============================================================================ +15:49:52 Calculate Source COMM Id = 2 +15:49:52 ============================================================================ +15:49:52 + + +waiting on router queue for slot.... +15:49:54 ============================================================================ +15:49:54 Slot Id : <440> +15:49:54 Transaction Type : REQUEST +15:49:54 Received From : +15:49:54 ============================================================================ +15:49:54 FNo. Len. Field Value +15:49:54 ============================================================================ +15:49:54 [ 1] [ 4] [0800] +15:49:54 [ 7] [ 10] [0320085742] +15:49:54 [ 11] [ 6] [037215] +15:49:54 [ 37] [ 12] [57915037215] +15:49:54 [ 70] [ 3] [301] +15:49:54 ============================================================================ +15:49:54 + + +waiting on router queue for slot.... +15:49:54 Sending to : +15:49:54 ============================================================================ +15:49:54 ============================================================================ +15:49:54 Slot Id : <440> +15:49:54 Transaction Type : RESPONSE +15:49:54 Received From : +15:49:54 ============================================================================ +15:49:54 FNo. Len. Field Value +15:49:54 ============================================================================ +15:49:54 [ 1] [ 4] [0810] +15:49:54 [ 7] [ 10] [0320085742] +15:49:54 [ 11] [ 6] [037215] +15:49:54 [ 37] [ 12] [579150372150] +15:49:54 [ 39] [ 2] [00] +15:49:54 [ 70] [ 3] [810] +15:49:54 ============================================================================ +15:49:54 Calculate Source COMM Id = 1 +15:49:54 ============================================================================ +15:49:54 + + +waiting on router queue for slot.... +15:49:55 ============================================================================ +15:49:55 Slot Id : <449> +15:49:55 Transaction Type : REQUEST +15:49:55 Received From : +15:49:55 ============================================================================ +15:49:55 FNo. Len. Field Value +15:49:55 ============================================================================ +15:49:55 [ 1] [ 4] [0200] +15:49:55 [ 2] [ 16] [6688990102478201] +15:49:55 [ 3] [ 6] [011000] +15:49:55 [ 4] [ 12] [000050000000] +15:49:55 [ 7] [ 10] [0320154951] +15:49:55 [ 11] [ 6] [788998] +15:49:55 [ 12] [ 6] [154951] +15:49:55 [ 13] [ 4] [0320] +15:49:55 [ 15] [ 4] [0320] +15:49:55 [ 18] [ 4] [6011] +15:49:55 [ 22] [ 3] [900] +15:49:55 [ 25] [ 2] [02] +15:49:55 [ 28] [ 9] [D00002000] +15:49:55 [ 32] [ 6] [621354] +15:49:55 [ 35] [ 37] [6688990102478201=42091231820103500000] +15:49:55 [ 37] [ 12] [507903675756] +15:49:55 [ 41] [ 8] [16002000] +15:49:55 [ 42] [ 15] [NATIVE ] +15:49:55 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +15:49:55 [ 49] [ 3] [418] +15:49:55 [ 52] [ 16] [B976B16B2B6647CE] +15:49:55 ============================================================================ +15:49:55 + + +waiting on router queue for slot.... +15:49:55 Sending to : +15:49:55 ============================================================================ +15:49:55 Sending to : +15:49:55 ============================================================================ +15:49:56 ============================================================================ +15:49:56 Slot Id : <449> +15:49:56 Transaction Type : REQUEST +15:49:56 Received From : +15:49:56 ============================================================================ +15:49:56 FNo. Len. Field Value +15:49:56 ============================================================================ +15:49:56 [ 1] [ 4] [0200] +15:49:56 [ 2] [ 16] [6688990102478201] +15:49:56 [ 3] [ 6] [011000] +15:49:56 [ 4] [ 12] [000050000000] +15:49:56 [ 7] [ 10] [0320154951] +15:49:56 [ 11] [ 6] [788998] +15:49:56 [ 12] [ 6] [154951] +15:49:56 [ 13] [ 4] [0320] +15:49:56 [ 15] [ 4] [0320] +15:49:56 [ 18] [ 4] [6011] +15:49:56 [ 22] [ 3] [900] +15:49:56 [ 25] [ 2] [02] +15:49:56 [ 28] [ 9] [D00002000] +15:49:56 [ 32] [ 6] [621354] +15:49:56 [ 35] [ 37] [6688990102478201=42091231820103500000] +15:49:56 [ 37] [ 12] [507903675756] +15:49:56 [ 41] [ 8] [16002000] +15:49:56 [ 42] [ 15] [NATIVE ] +15:49:56 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +15:49:56 [ 49] [ 3] [418] +15:49:56 [ 52] [ 16] [B976B16B2B6647CE] +15:49:56 ============================================================================ +15:49:56 + + +waiting on router queue for slot.... +15:49:56 Sending to : +15:49:56 ============================================================================ +15:49:56 ============================================================================ +15:49:56 Slot Id : <449> +15:49:56 Transaction Type : REQUEST +15:49:56 Received From : +15:49:56 ============================================================================ +15:49:56 FNo. Len. Field Value +15:49:56 ============================================================================ +15:49:56 [ 1] [ 4] [0200] +15:49:56 [ 2] [ 16] [6688990102478201] +15:49:56 [ 3] [ 6] [011000] +15:49:56 [ 4] [ 12] [000050000000] +15:49:56 [ 7] [ 10] [0320154951] +15:49:56 [ 11] [ 6] [788998] +15:49:56 [ 12] [ 6] [154951] +15:49:56 [ 13] [ 4] [0320] +15:49:56 [ 15] [ 4] [0320] +15:49:56 [ 18] [ 4] [6011] +15:49:56 [ 22] [ 3] [900] +15:49:56 [ 25] [ 2] [02] +15:49:56 [ 28] [ 9] [D00002000] +15:49:56 [ 32] [ 6] [621354] +15:49:56 [ 35] [ 37] [6688990102478201=42091231820103500000] +15:49:56 [ 37] [ 12] [507903675756] +15:49:56 [ 41] [ 8] [16002000] +15:49:56 [ 42] [ 15] [NATIVE ] +15:49:56 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +15:49:56 [ 49] [ 3] [418] +15:49:56 [ 52] [ 16] [0F7D1DEB6B0B5D8A] +15:49:56 ============================================================================ +15:49:56 + + +waiting on router queue for slot.... +15:49:56 Sending to : <4> +15:49:56 ============================================================================ +15:49:57 ============================================================================ +15:49:57 Slot Id : <482> +15:49:57 Transaction Type : REQUEST +15:49:57 Received From : +15:49:57 ============================================================================ +15:49:57 FNo. Len. Field Value +15:49:57 ============================================================================ +15:49:57 [ 1] [ 4] [0200] +15:49:57 [ 2] [ 16] [6213544001159497] +15:49:57 [ 3] [ 6] [012000] +15:49:57 [ 4] [ 12] [000009000000] +15:49:57 [ 7] [ 10] [0320155744] +15:49:57 [ 11] [ 6] [223743] +15:49:57 [ 12] [ 6] [155744] +15:49:57 [ 13] [ 4] [0320] +15:49:57 [ 14] [ 4] [4912] +15:49:57 [ 15] [ 4] [0320] +15:49:57 [ 18] [ 4] [6011] +15:49:57 [ 22] [ 3] [900] +15:49:57 [ 25] [ 2] [02] +15:49:57 [ 28] [ 9] [D00002000] +15:49:57 [ 32] [ 6] [220699] +15:49:57 [ 35] [ 32] [6213544001159497=491212015949087] +15:49:57 [ 37] [ 12] [507900118772] +15:49:57 [ 41] [ 8] [01001100] +15:49:57 [ 42] [ 15] [APTRA ] +15:49:57 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:49:57 [ 49] [ 3] [418] +15:49:57 [ 52] [ 16] [9130E1C1ADF9EEA7] +15:49:57 ============================================================================ +15:49:57 + + +waiting on router queue for slot.... +15:49:57 Sending to : +15:49:57 ============================================================================ +15:49:57 Sending to : +15:49:57 ============================================================================ +15:49:57 ============================================================================ +15:49:57 Slot Id : <449> +15:49:57 Transaction Type : RESPONSE +15:49:57 Received From : +15:49:57 ============================================================================ +15:49:57 FNo. Len. Field Value +15:49:57 ============================================================================ +15:49:57 [ 1] [ 4] [0210] +15:49:57 [ 2] [ 16] [6688990102478201] +15:49:57 [ 3] [ 6] [011000] +15:49:57 [ 4] [ 12] [000050000000] +15:49:57 [ 11] [ 6] [788998] +15:49:57 [ 12] [ 6] [154951] +15:49:57 [ 15] [ 4] [0320] +15:49:57 [ 18] [ 4] [6011] +15:49:57 [ 32] [ 6] [621354] +15:49:57 [ 35] [ 37] [6688990102478201=42091231820103500000] +15:49:57 [ 37] [ 12] [507903675756] +15:49:57 [ 38] [ 6] [258204] +15:49:57 [ 39] [ 2] [00] +15:49:57 [ 41] [ 8] [16002000] +15:49:57 [ 49] [ 3] [418] +15:49:57 [ 54] [ 20] [1002418C000012619219] +15:49:57 ============================================================================ +15:49:57 Sending to : +15:49:57 ============================================================================ +15:49:57 + + +waiting on router queue for slot.... +15:49:57 ============================================================================ +15:49:57 Slot Id : <460> +15:49:57 Transaction Type : REQUEST +15:49:57 Received From : +15:49:57 ============================================================================ +15:49:57 FNo. Len. Field Value +15:49:57 ============================================================================ +15:49:57 [ 1] [ 4] [0800] +15:49:57 [ 7] [ 10] [0320230146] +15:49:57 [ 11] [ 6] [160146] +15:49:57 [ 37] [ 12] [57916160146] +15:49:57 [ 70] [ 3] [301] +15:49:57 ============================================================================ +15:49:57 + + +waiting on router queue for slot.... +15:49:57 Sending to : +15:49:57 ============================================================================ +15:49:57 ============================================================================ +15:49:57 Slot Id : <460> +15:49:57 Transaction Type : RESPONSE +15:49:57 Received From : +15:49:57 ============================================================================ +15:49:57 FNo. Len. Field Value +15:49:57 ============================================================================ +15:49:57 [ 1] [ 4] [0810] +15:49:57 [ 7] [ 10] [0320230146] +15:49:57 [ 11] [ 6] [160146] +15:49:57 [ 37] [ 12] [579161601460] +15:49:57 [ 39] [ 2] [00] +15:49:57 [ 70] [ 3] [810] +15:49:57 ============================================================================ +15:49:57 Calculate Source COMM Id = 6 +15:49:57 ============================================================================ +15:49:57 + + +waiting on router queue for slot.... +15:49:57 ============================================================================ +15:49:57 Slot Id : <482> +15:49:57 Transaction Type : REQUEST +15:49:57 Received From : +15:49:57 ============================================================================ +15:49:57 FNo. Len. Field Value +15:49:57 ============================================================================ +15:49:57 [ 1] [ 4] [0200] +15:49:57 [ 2] [ 16] [6213544001159497] +15:49:57 [ 3] [ 6] [012000] +15:49:57 [ 4] [ 12] [000009000000] +15:49:57 [ 7] [ 10] [0320155744] +15:49:57 [ 11] [ 6] [223743] +15:49:57 [ 12] [ 6] [155744] +15:49:57 [ 13] [ 4] [0320] +15:49:57 [ 14] [ 4] [4912] +15:49:57 [ 15] [ 4] [0320] +15:49:57 [ 18] [ 4] [6011] +15:49:57 [ 22] [ 3] [900] +15:49:57 [ 25] [ 2] [02] +15:49:57 [ 28] [ 9] [D00002000] +15:49:57 [ 32] [ 6] [220699] +15:49:57 [ 35] [ 32] [6213544001159497=491212015949087] +15:49:57 [ 37] [ 12] [507900118772] +15:49:57 [ 41] [ 8] [01001100] +15:49:57 [ 42] [ 15] [APTRA ] +15:49:57 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:49:57 [ 49] [ 3] [418] +15:49:57 [ 52] [ 16] [9130E1C1ADF9EEA7] +15:49:57 ============================================================================ +15:49:57 + + +waiting on router queue for slot.... +15:49:57 Sending to : +15:49:57 ============================================================================ +15:49:57 ============================================================================ +15:49:57 Slot Id : <482> +15:49:57 Transaction Type : REQUEST +15:49:57 Received From : +15:49:57 ============================================================================ +15:49:57 FNo. Len. Field Value +15:49:57 ============================================================================ +15:49:57 [ 1] [ 4] [0200] +15:49:57 [ 2] [ 16] [6213544001159497] +15:49:57 [ 3] [ 6] [012000] +15:49:57 [ 4] [ 12] [000009000000] +15:49:57 [ 7] [ 10] [0320155744] +15:49:57 [ 11] [ 6] [223743] +15:49:57 [ 12] [ 6] [155744] +15:49:57 [ 13] [ 4] [0320] +15:49:57 [ 14] [ 4] [4912] +15:49:57 [ 15] [ 4] [0320] +15:49:57 [ 18] [ 4] [6011] +15:49:57 [ 22] [ 3] [900] +15:49:57 [ 25] [ 2] [02] +15:49:57 [ 28] [ 9] [D00002000] +15:49:57 [ 32] [ 6] [220699] +15:49:57 [ 35] [ 32] [6213544001159497=491212015949087] +15:49:57 [ 37] [ 12] [507900118772] +15:49:57 [ 41] [ 8] [01001100] +15:49:57 [ 42] [ 15] [APTRA ] +15:49:57 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:49:57 [ 49] [ 3] [418] +15:49:57 [ 52] [ 16] [820FAF504A63E7E5] +15:49:57 ============================================================================ +15:49:57 + + +waiting on router queue for slot.... +15:49:57 Sending to : <0> +15:49:57 ============================================================================ +15:49:57 ============================================================================ +15:49:57 Slot Id : <432> +15:49:57 Transaction Type : REQUEST +15:49:57 Received From : +15:49:57 ============================================================================ +15:49:57 FNo. Len. Field Value +15:49:57 ============================================================================ +15:49:57 [ 1] [ 4] [0200] +15:49:57 [ 2] [ 16] [6213544002255757] +15:49:57 [ 3] [ 6] [010000] +15:49:57 [ 4] [ 12] [000015000000] +15:49:57 [ 7] [ 10] [0320154748] +15:49:57 [ 11] [ 6] [950530] +15:49:57 [ 12] [ 6] [154748] +15:49:57 [ 13] [ 4] [0320] +15:49:57 [ 15] [ 4] [0320] +15:49:57 [ 18] [ 4] [6011] +15:49:57 [ 19] [ 3] [418] +15:49:57 [ 22] [ 3] [021] +15:49:57 [ 25] [ 2] [01] +15:49:57 [ 28] [ 9] [D00002000] +15:49:57 [ 32] [ 6] [668899] +15:49:57 [ 35] [ 32] [6213544002255757=491212015575998] +15:49:57 [ 37] [ 12] [507901489353] +15:49:57 [ 41] [ 8] [03515001] +15:49:57 [ 42] [ 15] [APT ] +15:49:57 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +15:49:57 [ 49] [ 3] [418] +15:49:57 [ 52] [ 16] [1563A763DEC3419E] +15:49:57 ============================================================================ +15:49:57 + + +waiting on router queue for slot.... +15:49:57 Sending to : +15:49:57 ============================================================================ +15:49:57 Sending to : +15:49:57 ============================================================================ +15:49:58 ============================================================================ +15:49:58 Slot Id : <432> +15:49:58 Transaction Type : REQUEST +15:49:58 Received From : +15:49:58 ============================================================================ +15:49:58 FNo. Len. Field Value +15:49:58 ============================================================================ +15:49:58 [ 1] [ 4] [0200] +15:49:58 [ 2] [ 16] [6213544002255757] +15:49:58 [ 3] [ 6] [010000] +15:49:58 [ 4] [ 12] [000015000000] +15:49:58 [ 7] [ 10] [0320154748] +15:49:58 [ 11] [ 6] [950530] +15:49:58 [ 12] [ 6] [154748] +15:49:58 [ 13] [ 4] [0320] +15:49:58 [ 15] [ 4] [0320] +15:49:58 [ 18] [ 4] [6011] +15:49:58 [ 19] [ 3] [418] +15:49:58 [ 22] [ 3] [021] +15:49:58 [ 25] [ 2] [01] +15:49:58 [ 28] [ 9] [D00002000] +15:49:58 [ 32] [ 6] [668899] +15:49:58 [ 35] [ 32] [6213544002255757=491212015575998] +15:49:58 [ 37] [ 12] [507901489353] +15:49:58 [ 41] [ 8] [03515001] +15:49:58 [ 42] [ 15] [APT ] +15:49:58 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +15:49:58 [ 49] [ 3] [418] +15:49:58 [ 52] [ 16] [1563A763DEC3419E] +15:49:58 ============================================================================ +15:49:58 + + +waiting on router queue for slot.... +15:49:58 Sending to : +15:49:58 ============================================================================ +15:49:58 ============================================================================ +15:49:58 Slot Id : <432> +15:49:58 Transaction Type : REQUEST +15:49:58 Received From : +15:49:58 ============================================================================ +15:49:58 FNo. Len. Field Value +15:49:58 ============================================================================ +15:49:58 [ 1] [ 4] [0200] +15:49:58 [ 2] [ 16] [6213544002255757] +15:49:58 [ 3] [ 6] [010000] +15:49:58 [ 4] [ 12] [000015000000] +15:49:58 [ 7] [ 10] [0320154748] +15:49:58 [ 11] [ 6] [950530] +15:49:58 [ 12] [ 6] [154748] +15:49:58 [ 13] [ 4] [0320] +15:49:58 [ 15] [ 4] [0320] +15:49:58 [ 18] [ 4] [6011] +15:49:58 [ 19] [ 3] [418] +15:49:58 [ 22] [ 3] [021] +15:49:58 [ 25] [ 2] [01] +15:49:58 [ 28] [ 9] [D00002000] +15:49:58 [ 32] [ 6] [668899] +15:49:58 [ 35] [ 32] [6213544002255757=491212015575998] +15:49:58 [ 37] [ 12] [507901489353] +15:49:58 [ 41] [ 8] [03515001] +15:49:58 [ 42] [ 15] [APT ] +15:49:58 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +15:49:58 [ 49] [ 3] [418] +15:49:58 [ 52] [ 16] [9733927D6BFC263D] +15:49:58 ============================================================================ +15:49:58 + + +waiting on router queue for slot.... +15:49:58 Sending to : <0> +15:49:58 ============================================================================ +15:49:58 ============================================================================ +15:49:58 Slot Id : <482> +15:49:58 Transaction Type : RESPONSE +15:49:58 Received From : +15:49:58 ============================================================================ +15:49:58 FNo. Len. Field Value +15:49:58 ============================================================================ +15:49:58 [ 1] [ 4] [0210] +15:49:58 [ 2] [ 16] [6213544001159497] +15:49:58 [ 3] [ 6] [012000] +15:49:58 [ 4] [ 12] [000009000000] +15:49:58 [ 7] [ 10] [0320155744] +15:49:58 [ 11] [ 6] [223743] +15:49:58 [ 12] [ 6] [155744] +15:49:58 [ 13] [ 4] [0320] +15:49:58 [ 15] [ 4] [0320] +15:49:58 [ 18] [ 4] [6011] +15:49:58 [ 32] [ 6] [220699] +15:49:58 [ 35] [ 32] [6213544001159497=491212015949087] +15:49:58 [ 37] [ 12] [507900118772] +15:49:58 [ 38] [ 6] [860587] +15:49:58 [ 39] [ 2] [00] +15:49:58 [ 41] [ 8] [01001100] +15:49:58 [ 49] [ 3] [418] +15:49:58 [ 54] [ 40] [2001418C0000056672402002418C000005667240] +15:49:58 ============================================================================ +15:49:58 Sending to : +15:49:58 ============================================================================ +15:49:58 + + +waiting on router queue for slot.... +15:49:58 ============================================================================ +15:49:58 Slot Id : <432> +15:49:58 Transaction Type : RESPONSE +15:49:58 Received From : +15:49:58 ============================================================================ +15:49:58 FNo. Len. Field Value +15:49:58 ============================================================================ +15:49:58 [ 1] [ 4] [0210] +15:49:58 [ 2] [ 16] [6213544002255757] +15:49:58 [ 3] [ 6] [010000] +15:49:58 [ 4] [ 12] [000015000000] +15:49:58 [ 7] [ 10] [0320154748] +15:49:58 [ 11] [ 6] [950530] +15:49:58 [ 12] [ 6] [154748] +15:49:58 [ 13] [ 4] [0320] +15:49:58 [ 15] [ 4] [0320] +15:49:58 [ 18] [ 4] [6011] +15:49:58 [ 19] [ 3] [418] +15:49:58 [ 22] [ 3] [021] +15:49:58 [ 32] [ 6] [668899] +15:49:58 [ 35] [ 32] [6213544002255757=491212015575998] +15:49:58 [ 37] [ 12] [507901489353] +15:49:58 [ 38] [ 6] [154953] +15:49:58 [ 39] [ 2] [55] +15:49:58 [ 41] [ 8] [03515001] +15:49:58 [ 49] [ 3] [418] +15:49:58 ============================================================================ +15:49:58 Sending to : +15:49:58 ============================================================================ +15:49:58 + + +waiting on router queue for slot.... +15:49:58 ============================================================================ +15:49:58 Slot Id : <449> +15:49:58 Transaction Type : RESPONSE +15:49:58 Received From : +15:49:58 ============================================================================ +15:49:58 FNo. Len. Field Value +15:49:58 ============================================================================ +15:49:58 [ 1] [ 4] [0210] +15:49:58 [ 2] [ 16] [6688990102478201] +15:49:58 [ 3] [ 6] [011000] +15:49:58 [ 4] [ 12] [000050000000] +15:49:58 [ 11] [ 6] [788998] +15:49:58 [ 12] [ 6] [154951] +15:49:58 [ 15] [ 4] [0320] +15:49:58 [ 18] [ 4] [6011] +15:49:58 [ 32] [ 6] [621354] +15:49:58 [ 35] [ 37] [6688990102478201=42091231820103500000] +15:49:58 [ 37] [ 12] [507903675756] +15:49:58 [ 38] [ 6] [258204] +15:49:58 [ 39] [ 2] [00] +15:49:58 [ 41] [ 8] [16002000] +15:49:58 [ 49] [ 3] [418] +15:49:58 [ 54] [ 20] [1002418C000012619219] +15:49:58 ============================================================================ +15:49:58 Calculate Source COMM Id = 0 +15:49:58 ============================================================================ +15:49:58 + + +waiting on router queue for slot.... +15:49:59 ============================================================================ +15:49:59 Slot Id : <432> +15:49:59 Transaction Type : RESPONSE +15:49:59 Received From : +15:49:59 ============================================================================ +15:49:59 FNo. Len. Field Value +15:49:59 ============================================================================ +15:49:59 [ 1] [ 4] [0210] +15:49:59 [ 2] [ 16] [6213544002255757] +15:49:59 [ 3] [ 6] [010000] +15:49:59 [ 4] [ 12] [000015000000] +15:49:59 [ 7] [ 10] [0320154748] +15:49:59 [ 11] [ 6] [950530] +15:49:59 [ 12] [ 6] [154748] +15:49:59 [ 13] [ 4] [0320] +15:49:59 [ 15] [ 4] [0320] +15:49:59 [ 18] [ 4] [6011] +15:49:59 [ 19] [ 3] [418] +15:49:59 [ 22] [ 3] [021] +15:49:59 [ 32] [ 6] [668899] +15:49:59 [ 35] [ 32] [6213544002255757=491212015575998] +15:49:59 [ 37] [ 12] [507901489353] +15:49:59 [ 38] [ 6] [154953] +15:49:59 [ 39] [ 2] [55] +15:49:59 [ 41] [ 8] [03515001] +15:49:59 [ 49] [ 3] [418] +15:49:59 ============================================================================ +15:49:59 Calculate Source COMM Id = 4 +15:49:59 ============================================================================ +15:49:59 + + +waiting on router queue for slot.... +15:50:01 ============================================================================ +15:50:01 Slot Id : <482> +15:50:01 Transaction Type : RESPONSE +15:50:01 Received From : +15:50:01 ============================================================================ +15:50:01 FNo. Len. Field Value +15:50:01 ============================================================================ +15:50:01 [ 1] [ 4] [0210] +15:50:01 [ 2] [ 16] [6213544001159497] +15:50:01 [ 3] [ 6] [012000] +15:50:01 [ 4] [ 12] [000009000000] +15:50:01 [ 7] [ 10] [0320155744] +15:50:01 [ 11] [ 6] [223743] +15:50:01 [ 12] [ 6] [155744] +15:50:01 [ 13] [ 4] [0320] +15:50:01 [ 15] [ 4] [0320] +15:50:01 [ 18] [ 4] [6011] +15:50:01 [ 32] [ 6] [220699] +15:50:01 [ 35] [ 32] [6213544001159497=491212015949087] +15:50:01 [ 37] [ 12] [507900118772] +15:50:01 [ 38] [ 6] [860587] +15:50:01 [ 39] [ 2] [00] +15:50:01 [ 41] [ 8] [01001100] +15:50:01 [ 49] [ 3] [418] +15:50:01 [ 54] [ 40] [2001418C0000056672402002418C000005667240] +15:50:01 ============================================================================ +15:50:01 Calculate Source COMM Id = 1 +15:50:01 ============================================================================ +15:50:01 + + +waiting on router queue for slot.... +15:50:02 ============================================================================ +15:50:02 Slot Id : <495> +15:50:02 Transaction Type : REQUEST +15:50:02 Received From : +15:50:02 ============================================================================ +15:50:02 FNo. Len. Field Value +15:50:02 ============================================================================ +15:50:02 [ 1] [ 4] [0800] +15:50:02 [ 7] [ 10] [0320084909] +15:50:02 [ 11] [ 6] [157103] +15:50:02 [ 70] [ 3] [301] +15:50:02 ============================================================================ +15:50:02 + + +waiting on router queue for slot.... +15:50:02 Sending to : +15:50:02 ============================================================================ +15:50:02 ============================================================================ +15:50:02 Slot Id : <495> +15:50:02 Transaction Type : RESPONSE +15:50:02 Received From : +15:50:02 ============================================================================ +15:50:02 FNo. Len. Field Value +15:50:02 ============================================================================ +15:50:02 [ 1] [ 4] [0810] +15:50:02 [ 7] [ 10] [0320084909] +15:50:02 [ 11] [ 6] [157103] +15:50:02 [ 39] [ 2] [00] +15:50:02 [ 70] [ 3] [301] +15:50:02 ============================================================================ +15:50:02 Calculate Source COMM Id = 2 +15:50:02 ============================================================================ +15:50:02 + + +waiting on router queue for slot.... +15:50:12 ============================================================================ +15:50:12 Slot Id : <453> +15:50:12 Transaction Type : REQUEST +15:50:12 Received From : +15:50:12 ============================================================================ +15:50:12 FNo. Len. Field Value +15:50:12 ============================================================================ +15:50:12 [ 1] [ 4] [0200] +15:50:12 [ 2] [ 16] [6213541000044852] +15:50:12 [ 3] [ 6] [010000] +15:50:12 [ 4] [ 12] [000100000000] +15:50:12 [ 7] [ 10] [0320084918] +15:50:12 [ 11] [ 6] [270145] +15:50:12 [ 12] [ 6] [154918] +15:50:12 [ 13] [ 4] [0320] +15:50:12 [ 14] [ 4] [4912] +15:50:12 [ 15] [ 4] [0320] +15:50:12 [ 18] [ 4] [6011] +15:50:12 [ 19] [ 3] [418] +15:50:12 [ 22] [ 3] [021] +15:50:12 [ 25] [ 2] [01] +15:50:12 [ 28] [ 9] [D00002000] +15:50:12 [ 32] [ 6] [180893] +15:50:12 [ 35] [ 32] [6213541000044852=491212014485103] +15:50:12 [ 37] [ 12] [507908270145] +15:50:12 [ 41] [ 8] [0141HQBR] +15:50:12 [ 42] [ 15] [999999 ] +15:50:12 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +15:50:12 [ 49] [ 3] [418] +15:50:12 [ 52] [ 16] [39A11A4651FED0C1] +15:50:12 ============================================================================ +15:50:12 + + +waiting on router queue for slot.... +15:50:12 Sending to : +15:50:12 ============================================================================ +15:50:12 Sending to : +15:50:12 ============================================================================ +15:50:12 ============================================================================ +15:50:12 Slot Id : <453> +15:50:12 Transaction Type : REQUEST +15:50:12 Received From : +15:50:12 ============================================================================ +15:50:12 FNo. Len. Field Value +15:50:12 ============================================================================ +15:50:12 [ 1] [ 4] [0200] +15:50:12 [ 2] [ 16] [6213541000044852] +15:50:12 [ 3] [ 6] [010000] +15:50:12 [ 4] [ 12] [000100000000] +15:50:12 [ 7] [ 10] [0320084918] +15:50:12 [ 11] [ 6] [270145] +15:50:12 [ 12] [ 6] [154918] +15:50:12 [ 13] [ 4] [0320] +15:50:12 [ 14] [ 4] [4912] +15:50:12 [ 15] [ 4] [0320] +15:50:12 [ 18] [ 4] [6011] +15:50:12 [ 19] [ 3] [418] +15:50:12 [ 22] [ 3] [021] +15:50:12 [ 25] [ 2] [01] +15:50:12 [ 28] [ 9] [D00002000] +15:50:12 [ 32] [ 6] [180893] +15:50:12 [ 35] [ 32] [6213541000044852=491212014485103] +15:50:12 [ 37] [ 12] [507908270145] +15:50:12 [ 41] [ 8] [0141HQBR] +15:50:12 [ 42] [ 15] [999999 ] +15:50:12 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +15:50:12 [ 49] [ 3] [418] +15:50:12 [ 52] [ 16] [39A11A4651FED0C1] +15:50:12 ============================================================================ +15:50:12 + + +waiting on router queue for slot.... +15:50:12 Sending to : +15:50:12 ============================================================================ +15:50:12 ============================================================================ +15:50:12 Slot Id : <453> +15:50:12 Transaction Type : REQUEST +15:50:12 Received From : +15:50:12 ============================================================================ +15:50:12 FNo. Len. Field Value +15:50:12 ============================================================================ +15:50:12 [ 1] [ 4] [0200] +15:50:12 [ 2] [ 16] [6213541000044852] +15:50:12 [ 3] [ 6] [010000] +15:50:12 [ 4] [ 12] [000100000000] +15:50:12 [ 7] [ 10] [0320084918] +15:50:12 [ 11] [ 6] [270145] +15:50:12 [ 12] [ 6] [154918] +15:50:12 [ 13] [ 4] [0320] +15:50:12 [ 14] [ 4] [4912] +15:50:12 [ 15] [ 4] [0320] +15:50:12 [ 18] [ 4] [6011] +15:50:12 [ 19] [ 3] [418] +15:50:12 [ 22] [ 3] [021] +15:50:12 [ 25] [ 2] [01] +15:50:12 [ 28] [ 9] [D00002000] +15:50:12 [ 32] [ 6] [180893] +15:50:12 [ 35] [ 32] [6213541000044852=491212014485103] +15:50:12 [ 37] [ 12] [507908270145] +15:50:12 [ 41] [ 8] [0141HQBR] +15:50:12 [ 42] [ 15] [999999 ] +15:50:12 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +15:50:12 [ 49] [ 3] [418] +15:50:12 [ 52] [ 16] [C41F5DB93BD0770C] +15:50:12 ============================================================================ +15:50:12 + + +waiting on router queue for slot.... +15:50:12 Sending to : <0> +15:50:12 ============================================================================ +15:50:13 ============================================================================ +15:50:13 Slot Id : <488> +15:50:13 Transaction Type : REQUEST +15:50:13 Received From : +15:50:13 ============================================================================ +15:50:13 FNo. Len. Field Value +15:50:13 ============================================================================ +15:50:13 [ 1] [ 4] [0800] +15:50:13 [ 7] [ 10] [0320084920] +15:50:13 [ 11] [ 6] [157104] +15:50:13 [ 70] [ 3] [301] +15:50:13 ============================================================================ +15:50:13 + + +waiting on router queue for slot.... +15:50:13 Sending to : +15:50:13 ============================================================================ +15:50:13 ============================================================================ +15:50:13 Slot Id : <488> +15:50:13 Transaction Type : RESPONSE +15:50:13 Received From : +15:50:13 ============================================================================ +15:50:13 FNo. Len. Field Value +15:50:13 ============================================================================ +15:50:13 [ 1] [ 4] [0810] +15:50:13 [ 7] [ 10] [0320084920] +15:50:13 [ 11] [ 6] [157104] +15:50:13 [ 39] [ 2] [00] +15:50:13 [ 70] [ 3] [301] +15:50:13 ============================================================================ +15:50:13 Calculate Source COMM Id = 2 +15:50:13 ============================================================================ +15:50:13 + + +waiting on router queue for slot.... +15:50:13 ============================================================================ +15:50:13 Slot Id : <453> +15:50:13 Transaction Type : RESPONSE +15:50:13 Received From : +15:50:13 ============================================================================ +15:50:13 FNo. Len. Field Value +15:50:13 ============================================================================ +15:50:13 [ 1] [ 4] [0210] +15:50:13 [ 2] [ 16] [6213541000044852] +15:50:13 [ 3] [ 6] [010000] +15:50:13 [ 4] [ 12] [000100000000] +15:50:13 [ 7] [ 10] [0320084918] +15:50:13 [ 11] [ 6] [270145] +15:50:13 [ 12] [ 6] [154918] +15:50:13 [ 13] [ 4] [0320] +15:50:13 [ 15] [ 4] [0320] +15:50:13 [ 18] [ 4] [6011] +15:50:13 [ 19] [ 3] [418] +15:50:13 [ 32] [ 6] [180893] +15:50:13 [ 35] [ 32] [6213541000044852=491212014485103] +15:50:13 [ 37] [ 12] [507908270145] +15:50:13 [ 38] [ 6] [023280] +15:50:13 [ 39] [ 2] [00] +15:50:13 [ 41] [ 8] [0141HQBR] +15:50:13 [ 49] [ 3] [418] +15:50:13 [ 54] [ 40] [0001418C0018413140160002418C001841314016] +15:50:13 ============================================================================ +15:50:13 Sending to : +15:50:13 ============================================================================ +15:50:13 + + +waiting on router queue for slot.... +15:50:15 ============================================================================ +15:50:15 Slot Id : <453> +15:50:15 Transaction Type : RESPONSE +15:50:15 Received From : +15:50:15 ============================================================================ +15:50:15 FNo. Len. Field Value +15:50:15 ============================================================================ +15:50:15 [ 1] [ 4] [0210] +15:50:15 [ 2] [ 16] [6213541000044852] +15:50:15 [ 3] [ 6] [010000] +15:50:15 [ 4] [ 12] [000100000000] +15:50:15 [ 7] [ 10] [0320084918] +15:50:15 [ 11] [ 6] [270145] +15:50:15 [ 12] [ 6] [154918] +15:50:15 [ 13] [ 4] [0320] +15:50:15 [ 15] [ 4] [0320] +15:50:15 [ 18] [ 4] [6011] +15:50:15 [ 19] [ 3] [418] +15:50:15 [ 32] [ 6] [180893] +15:50:15 [ 35] [ 32] [6213541000044852=491212014485103] +15:50:15 [ 37] [ 12] [507908270145] +15:50:15 [ 38] [ 6] [023280] +15:50:15 [ 39] [ 2] [00] +15:50:15 [ 41] [ 8] [0141HQBR] +15:50:15 [ 49] [ 3] [418] +15:50:15 [ 54] [ 40] [0001418C0018413140160002418C001841314016] +15:50:15 ============================================================================ +15:50:15 Calculate Source COMM Id = 2 +15:50:15 ============================================================================ +15:50:15 + + +waiting on router queue for slot.... +15:50:17 ============================================================================ +15:50:17 Slot Id : <470> +15:50:17 Transaction Type : REQUEST +15:50:17 Received From : +15:50:17 ============================================================================ +15:50:17 FNo. Len. Field Value +15:50:17 ============================================================================ +15:50:17 [ 1] [ 4] [0800] +15:50:17 [ 2] [ 5] [02531] +15:50:17 [ 3] [ 6] [579158] +15:50:17 [ 7] [ 10] [0320085017] +15:50:17 [ 11] [ 6] [807331] +15:50:17 [ 15] [ 10] [0320085017] +15:50:17 [ 37] [ 11] [57915807331] +15:50:17 [ 70] [ 3] [001] +15:50:17 ============================================================================ +15:50:17 + + +waiting on router queue for slot.... +15:50:17 ============================================================================ +15:50:17 Slot Id : <470> +15:50:17 Transaction Type : RESPONSE +15:50:17 Received From : +15:50:17 ============================================================================ +15:50:17 FNo. Len. Field Value +15:50:17 ============================================================================ +15:50:17 [ 1] [ 4] [0810] +15:50:17 [ 7] [ 10] [0320085017] +15:50:17 [ 11] [ 6] [807331] +15:50:17 [ 15] [ 4] [0320] +15:50:17 [ 37] [ 12] [57915807331] +15:50:17 [ 39] [ 2] [00] +15:50:17 [ 70] [ 3] [001] +15:50:17 ============================================================================ +15:50:17 Sending to : +15:50:17 ============================================================================ +15:50:17 + + +waiting on router queue for slot.... +15:50:29 ============================================================================ +15:50:29 Slot Id : <484> +15:50:29 Transaction Type : REQUEST +15:50:29 Received From : +15:50:29 ============================================================================ +15:50:29 FNo. Len. Field Value +15:50:29 ============================================================================ +15:50:29 [ 1] [ 4] [0800] +15:50:29 [ 7] [ 10] [0320084936] +15:50:29 [ 11] [ 6] [157105] +15:50:29 [ 70] [ 3] [301] +15:50:29 ============================================================================ +15:50:29 + + +waiting on router queue for slot.... +15:50:29 Sending to : +15:50:29 ============================================================================ +15:50:29 ============================================================================ +15:50:29 Slot Id : <484> +15:50:29 Transaction Type : RESPONSE +15:50:29 Received From : +15:50:29 ============================================================================ +15:50:29 FNo. Len. Field Value +15:50:29 ============================================================================ +15:50:29 [ 1] [ 4] [0810] +15:50:29 [ 7] [ 10] [0320084936] +15:50:29 [ 11] [ 6] [157105] +15:50:29 [ 39] [ 2] [00] +15:50:29 [ 70] [ 3] [301] +15:50:29 ============================================================================ +15:50:29 Calculate Source COMM Id = 2 +15:50:29 ============================================================================ +15:50:29 + + +waiting on router queue for slot.... +15:50:30 ============================================================================ +15:50:30 Slot Id : <463> +15:50:30 Transaction Type : REQUEST +15:50:30 Received From : +15:50:30 ============================================================================ +15:50:30 FNo. Len. Field Value +15:50:30 ============================================================================ +15:50:30 [ 1] [ 4] [0200] +15:50:30 [ 2] [ 16] [6688990101773206] +15:50:30 [ 3] [ 6] [011000] +15:50:30 [ 4] [ 12] [000030000000] +15:50:30 [ 7] [ 10] [0320155026] +15:50:30 [ 11] [ 6] [789161] +15:50:30 [ 12] [ 6] [155026] +15:50:30 [ 13] [ 4] [0320] +15:50:30 [ 15] [ 4] [0320] +15:50:30 [ 18] [ 4] [6011] +15:50:30 [ 22] [ 3] [900] +15:50:30 [ 25] [ 2] [02] +15:50:30 [ 28] [ 9] [D00002000] +15:50:30 [ 32] [ 6] [621354] +15:50:30 [ 35] [ 37] [6688990101773206=42051231320659100000] +15:50:30 [ 37] [ 12] [507904645126] +15:50:30 [ 41] [ 8] [17000900] +15:50:30 [ 42] [ 15] [NATIVE ] +15:50:30 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +15:50:30 [ 49] [ 3] [418] +15:50:30 [ 52] [ 16] [11128261D444DBDB] +15:50:30 ============================================================================ +15:50:30 + + +waiting on router queue for slot.... +15:50:30 Sending to : +15:50:30 ============================================================================ +15:50:30 Sending to : +15:50:30 ============================================================================ +15:50:31 ============================================================================ +15:50:31 Slot Id : <463> +15:50:31 Transaction Type : REQUEST +15:50:31 Received From : +15:50:31 ============================================================================ +15:50:31 FNo. Len. Field Value +15:50:31 ============================================================================ +15:50:31 [ 1] [ 4] [0200] +15:50:31 [ 2] [ 16] [6688990101773206] +15:50:31 [ 3] [ 6] [011000] +15:50:31 [ 4] [ 12] [000030000000] +15:50:31 [ 7] [ 10] [0320155026] +15:50:31 [ 11] [ 6] [789161] +15:50:31 [ 12] [ 6] [155026] +15:50:31 [ 13] [ 4] [0320] +15:50:31 [ 15] [ 4] [0320] +15:50:31 [ 18] [ 4] [6011] +15:50:31 [ 22] [ 3] [900] +15:50:31 [ 25] [ 2] [02] +15:50:31 [ 28] [ 9] [D00002000] +15:50:31 [ 32] [ 6] [621354] +15:50:31 [ 35] [ 37] [6688990101773206=42051231320659100000] +15:50:31 [ 37] [ 12] [507904645126] +15:50:31 [ 41] [ 8] [17000900] +15:50:31 [ 42] [ 15] [NATIVE ] +15:50:31 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +15:50:31 [ 49] [ 3] [418] +15:50:31 [ 52] [ 16] [11128261D444DBDB] +15:50:31 ============================================================================ +15:50:31 + + +waiting on router queue for slot.... +15:50:31 Sending to : +15:50:31 ============================================================================ +15:50:31 ============================================================================ +15:50:31 Slot Id : <463> +15:50:31 Transaction Type : REQUEST +15:50:31 Received From : +15:50:31 ============================================================================ +15:50:31 FNo. Len. Field Value +15:50:31 ============================================================================ +15:50:31 [ 1] [ 4] [0200] +15:50:31 [ 2] [ 16] [6688990101773206] +15:50:31 [ 3] [ 6] [011000] +15:50:31 [ 4] [ 12] [000030000000] +15:50:31 [ 7] [ 10] [0320155026] +15:50:31 [ 11] [ 6] [789161] +15:50:31 [ 12] [ 6] [155026] +15:50:31 [ 13] [ 4] [0320] +15:50:31 [ 15] [ 4] [0320] +15:50:31 [ 18] [ 4] [6011] +15:50:31 [ 22] [ 3] [900] +15:50:31 [ 25] [ 2] [02] +15:50:31 [ 28] [ 9] [D00002000] +15:50:31 [ 32] [ 6] [621354] +15:50:31 [ 35] [ 37] [6688990101773206=42051231320659100000] +15:50:31 [ 37] [ 12] [507904645126] +15:50:31 [ 41] [ 8] [17000900] +15:50:31 [ 42] [ 15] [NATIVE ] +15:50:31 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +15:50:31 [ 49] [ 3] [418] +15:50:31 [ 52] [ 16] [C5F179F851F589F3] +15:50:31 ============================================================================ +15:50:31 + + +waiting on router queue for slot.... +15:50:31 Sending to : <4> +15:50:31 ============================================================================ +15:50:32 ============================================================================ +15:50:32 Slot Id : <463> +15:50:32 Transaction Type : RESPONSE +15:50:32 Received From : +15:50:32 ============================================================================ +15:50:32 FNo. Len. Field Value +15:50:32 ============================================================================ +15:50:32 [ 1] [ 4] [0210] +15:50:32 [ 2] [ 16] [6688990101773206] +15:50:32 [ 3] [ 6] [011000] +15:50:32 [ 4] [ 12] [000030000000] +15:50:32 [ 11] [ 6] [789161] +15:50:32 [ 12] [ 6] [155026] +15:50:32 [ 15] [ 4] [0320] +15:50:32 [ 18] [ 4] [6011] +15:50:32 [ 32] [ 6] [621354] +15:50:32 [ 35] [ 37] [6688990101773206=42051231320659100000] +15:50:32 [ 37] [ 12] [507904645126] +15:50:32 [ 38] [ 6] [317737] +15:50:32 [ 39] [ 2] [00] +15:50:32 [ 41] [ 8] [17000900] +15:50:32 [ 49] [ 3] [418] +15:50:32 [ 54] [ 20] [1002418C000430576464] +15:50:32 ============================================================================ +15:50:32 Sending to : +15:50:32 ============================================================================ +15:50:32 + + +waiting on router queue for slot.... +15:50:33 ============================================================================ +15:50:33 Slot Id : <463> +15:50:33 Transaction Type : RESPONSE +15:50:33 Received From : +15:50:33 ============================================================================ +15:50:33 FNo. Len. Field Value +15:50:33 ============================================================================ +15:50:33 [ 1] [ 4] [0210] +15:50:33 [ 2] [ 16] [6688990101773206] +15:50:33 [ 3] [ 6] [011000] +15:50:33 [ 4] [ 12] [000030000000] +15:50:33 [ 11] [ 6] [789161] +15:50:33 [ 12] [ 6] [155026] +15:50:33 [ 15] [ 4] [0320] +15:50:33 [ 18] [ 4] [6011] +15:50:33 [ 32] [ 6] [621354] +15:50:33 [ 35] [ 37] [6688990101773206=42051231320659100000] +15:50:33 [ 37] [ 12] [507904645126] +15:50:33 [ 38] [ 6] [317737] +15:50:33 [ 39] [ 2] [00] +15:50:33 [ 41] [ 8] [17000900] +15:50:33 [ 49] [ 3] [418] +15:50:33 [ 54] [ 20] [1002418C000430576464] +15:50:33 ============================================================================ +15:50:33 Calculate Source COMM Id = 0 +15:50:33 ============================================================================ +15:50:33 + + +waiting on router queue for slot.... +15:50:38 ============================================================================ +15:50:38 Slot Id : <490> +15:50:38 Transaction Type : REQUEST +15:50:38 Received From : +15:50:38 ============================================================================ +15:50:38 FNo. Len. Field Value +15:50:38 ============================================================================ +15:50:38 [ 1] [ 4] [0200] +15:50:38 [ 2] [ 16] [6688990107556506] +15:50:38 [ 3] [ 6] [010000] +15:50:38 [ 4] [ 12] [000100000000] +15:50:38 [ 7] [ 10] [0320084944] +15:50:38 [ 11] [ 6] [270148] +15:50:38 [ 12] [ 6] [154944] +15:50:38 [ 13] [ 4] [0320] +15:50:38 [ 14] [ 4] [4403] +15:50:38 [ 15] [ 4] [0320] +15:50:38 [ 18] [ 4] [6011] +15:50:38 [ 19] [ 3] [418] +15:50:38 [ 22] [ 3] [021] +15:50:38 [ 25] [ 2] [01] +15:50:38 [ 28] [ 9] [D00002000] +15:50:38 [ 32] [ 6] [180893] +15:50:38 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:50:38 [ 37] [ 12] [507908270148] +15:50:38 [ 41] [ 8] [0361BLTB] +15:50:38 [ 42] [ 15] [999999 ] +15:50:38 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +15:50:38 [ 49] [ 3] [418] +15:50:38 [ 52] [ 16] [4C5095EF3527D44F] +15:50:38 ============================================================================ +15:50:38 + + +waiting on router queue for slot.... +15:50:38 Sending to : +15:50:38 ============================================================================ +15:50:38 Sending to : +15:50:38 ============================================================================ +15:50:38 ============================================================================ +15:50:38 Slot Id : <490> +15:50:38 Transaction Type : REQUEST +15:50:38 Received From : +15:50:38 ============================================================================ +15:50:38 FNo. Len. Field Value +15:50:38 ============================================================================ +15:50:38 [ 1] [ 4] [0200] +15:50:38 [ 2] [ 16] [6688990107556506] +15:50:38 [ 3] [ 6] [010000] +15:50:38 [ 4] [ 12] [000100000000] +15:50:38 [ 7] [ 10] [0320084944] +15:50:38 [ 11] [ 6] [270148] +15:50:38 [ 12] [ 6] [154944] +15:50:38 [ 13] [ 4] [0320] +15:50:38 [ 14] [ 4] [4403] +15:50:38 [ 15] [ 4] [0320] +15:50:38 [ 18] [ 4] [6011] +15:50:38 [ 19] [ 3] [418] +15:50:38 [ 22] [ 3] [021] +15:50:38 [ 25] [ 2] [01] +15:50:38 [ 28] [ 9] [D00002000] +15:50:38 [ 32] [ 6] [180893] +15:50:38 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:50:38 [ 37] [ 12] [507908270148] +15:50:38 [ 41] [ 8] [0361BLTB] +15:50:38 [ 42] [ 15] [999999 ] +15:50:38 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +15:50:38 [ 49] [ 3] [418] +15:50:38 [ 52] [ 16] [4C5095EF3527D44F] +15:50:38 ============================================================================ +15:50:38 + + +waiting on router queue for slot.... +15:50:38 Sending to : +15:50:38 ============================================================================ +15:50:38 ============================================================================ +15:50:38 Slot Id : <490> +15:50:38 Transaction Type : REQUEST +15:50:38 Received From : +15:50:38 ============================================================================ +15:50:38 FNo. Len. Field Value +15:50:38 ============================================================================ +15:50:38 [ 1] [ 4] [0200] +15:50:38 [ 2] [ 16] [6688990107556506] +15:50:38 [ 3] [ 6] [010000] +15:50:38 [ 4] [ 12] [000100000000] +15:50:38 [ 7] [ 10] [0320084944] +15:50:38 [ 11] [ 6] [270148] +15:50:38 [ 12] [ 6] [154944] +15:50:38 [ 13] [ 4] [0320] +15:50:38 [ 14] [ 4] [4403] +15:50:38 [ 15] [ 4] [0320] +15:50:38 [ 18] [ 4] [6011] +15:50:38 [ 19] [ 3] [418] +15:50:38 [ 22] [ 3] [021] +15:50:38 [ 25] [ 2] [01] +15:50:38 [ 28] [ 9] [D00002000] +15:50:38 [ 32] [ 6] [180893] +15:50:38 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:50:38 [ 37] [ 12] [507908270148] +15:50:38 [ 41] [ 8] [0361BLTB] +15:50:38 [ 42] [ 15] [999999 ] +15:50:38 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +15:50:38 [ 49] [ 3] [418] +15:50:38 [ 52] [ 16] [3356E5F5FDC763CB] +15:50:38 ============================================================================ +15:50:38 + + +waiting on router queue for slot.... +15:50:38 Sending to : <0> +15:50:38 ============================================================================ +15:50:38 ============================================================================ +15:50:38 Slot Id : <490> +15:50:38 Transaction Type : RESPONSE +15:50:38 Received From : +15:50:38 ============================================================================ +15:50:38 FNo. Len. Field Value +15:50:38 ============================================================================ +15:50:38 [ 1] [ 4] [0210] +15:50:38 [ 2] [ 16] [6688990107556506] +15:50:38 [ 3] [ 6] [010000] +15:50:38 [ 4] [ 12] [000100000000] +15:50:38 [ 7] [ 10] [0320084944] +15:50:38 [ 11] [ 6] [270148] +15:50:38 [ 12] [ 6] [154944] +15:50:38 [ 13] [ 4] [0320] +15:50:38 [ 15] [ 4] [0320] +15:50:38 [ 18] [ 4] [6011] +15:50:38 [ 19] [ 3] [418] +15:50:38 [ 22] [ 3] [021] +15:50:38 [ 32] [ 6] [180893] +15:50:38 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:50:38 [ 37] [ 12] [507908270148] +15:50:38 [ 39] [ 2] [14] +15:50:38 [ 41] [ 8] [0361BLTB] +15:50:38 [ 49] [ 3] [418] +15:50:38 ============================================================================ +15:50:38 Sending to : +15:50:38 ============================================================================ +15:50:38 + + +waiting on router queue for slot.... +15:50:39 ============================================================================ +15:50:39 Slot Id : <490> +15:50:39 Transaction Type : RESPONSE +15:50:39 Received From : +15:50:39 ============================================================================ +15:50:39 FNo. Len. Field Value +15:50:39 ============================================================================ +15:50:39 [ 1] [ 4] [0210] +15:50:39 [ 2] [ 16] [6688990107556506] +15:50:39 [ 3] [ 6] [010000] +15:50:39 [ 4] [ 12] [000100000000] +15:50:39 [ 7] [ 10] [0320084944] +15:50:39 [ 11] [ 6] [270148] +15:50:39 [ 12] [ 6] [154944] +15:50:39 [ 13] [ 4] [0320] +15:50:39 [ 15] [ 4] [0320] +15:50:39 [ 18] [ 4] [6011] +15:50:39 [ 19] [ 3] [418] +15:50:39 [ 22] [ 3] [021] +15:50:39 [ 32] [ 6] [180893] +15:50:39 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:50:39 [ 37] [ 12] [507908270148] +15:50:39 [ 39] [ 2] [14] +15:50:39 [ 41] [ 8] [0361BLTB] +15:50:39 [ 49] [ 3] [418] +15:50:39 ============================================================================ +15:50:39 Calculate Source COMM Id = 2 +15:50:39 ============================================================================ +15:50:39 + + +waiting on router queue for slot.... +15:50:41 ============================================================================ +15:50:41 Slot Id : <480> +15:50:41 Transaction Type : REQUEST +15:50:41 Received From : +15:50:41 ============================================================================ +15:50:41 FNo. Len. Field Value +15:50:41 ============================================================================ +15:50:41 [ 1] [ 4] [0200] +15:50:41 [ 2] [ 16] [6213544002255757] +15:50:41 [ 3] [ 6] [010000] +15:50:41 [ 4] [ 12] [000015000000] +15:50:41 [ 7] [ 10] [0320154831] +15:50:41 [ 11] [ 6] [950558] +15:50:41 [ 12] [ 6] [154831] +15:50:41 [ 13] [ 4] [0320] +15:50:41 [ 15] [ 4] [0320] +15:50:41 [ 18] [ 4] [6011] +15:50:41 [ 19] [ 3] [418] +15:50:41 [ 22] [ 3] [021] +15:50:41 [ 25] [ 2] [01] +15:50:41 [ 28] [ 9] [D00002000] +15:50:41 [ 32] [ 6] [668899] +15:50:41 [ 35] [ 32] [6213544002255757=491212015575998] +15:50:41 [ 37] [ 12] [507901489355] +15:50:41 [ 41] [ 8] [03515001] +15:50:41 [ 42] [ 15] [APT ] +15:50:41 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +15:50:41 [ 49] [ 3] [418] +15:50:41 [ 52] [ 16] [64CAF945A0676632] +15:50:41 ============================================================================ +15:50:41 + + +waiting on router queue for slot.... +15:50:41 Sending to : +15:50:41 ============================================================================ +15:50:41 Sending to : +15:50:41 ============================================================================ +15:50:41 ============================================================================ +15:50:41 Slot Id : <480> +15:50:41 Transaction Type : REQUEST +15:50:41 Received From : +15:50:41 ============================================================================ +15:50:41 FNo. Len. Field Value +15:50:41 ============================================================================ +15:50:41 [ 1] [ 4] [0200] +15:50:41 [ 2] [ 16] [6213544002255757] +15:50:41 [ 3] [ 6] [010000] +15:50:41 [ 4] [ 12] [000015000000] +15:50:41 [ 7] [ 10] [0320154831] +15:50:41 [ 11] [ 6] [950558] +15:50:41 [ 12] [ 6] [154831] +15:50:41 [ 13] [ 4] [0320] +15:50:41 [ 15] [ 4] [0320] +15:50:41 [ 18] [ 4] [6011] +15:50:41 [ 19] [ 3] [418] +15:50:41 [ 22] [ 3] [021] +15:50:41 [ 25] [ 2] [01] +15:50:41 [ 28] [ 9] [D00002000] +15:50:41 [ 32] [ 6] [668899] +15:50:41 [ 35] [ 32] [6213544002255757=491212015575998] +15:50:41 [ 37] [ 12] [507901489355] +15:50:41 [ 41] [ 8] [03515001] +15:50:41 [ 42] [ 15] [APT ] +15:50:41 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +15:50:41 [ 49] [ 3] [418] +15:50:41 [ 52] [ 16] [64CAF945A0676632] +15:50:41 ============================================================================ +15:50:41 + + +waiting on router queue for slot.... +15:50:41 Sending to : +15:50:41 ============================================================================ +15:50:41 ============================================================================ +15:50:41 Slot Id : <480> +15:50:41 Transaction Type : REQUEST +15:50:41 Received From : +15:50:41 ============================================================================ +15:50:41 FNo. Len. Field Value +15:50:41 ============================================================================ +15:50:41 [ 1] [ 4] [0200] +15:50:41 [ 2] [ 16] [6213544002255757] +15:50:41 [ 3] [ 6] [010000] +15:50:41 [ 4] [ 12] [000015000000] +15:50:41 [ 7] [ 10] [0320154831] +15:50:41 [ 11] [ 6] [950558] +15:50:41 [ 12] [ 6] [154831] +15:50:41 [ 13] [ 4] [0320] +15:50:41 [ 15] [ 4] [0320] +15:50:41 [ 18] [ 4] [6011] +15:50:41 [ 19] [ 3] [418] +15:50:41 [ 22] [ 3] [021] +15:50:41 [ 25] [ 2] [01] +15:50:41 [ 28] [ 9] [D00002000] +15:50:41 [ 32] [ 6] [668899] +15:50:41 [ 35] [ 32] [6213544002255757=491212015575998] +15:50:41 [ 37] [ 12] [507901489355] +15:50:41 [ 41] [ 8] [03515001] +15:50:41 [ 42] [ 15] [APT ] +15:50:41 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +15:50:41 [ 49] [ 3] [418] +15:50:41 [ 52] [ 16] [ADE8BFFCD919A999] +15:50:41 ============================================================================ +15:50:41 + + +waiting on router queue for slot.... +15:50:41 Sending to : <0> +15:50:41 ============================================================================ +15:50:41 ============================================================================ +15:50:41 Slot Id : <448> +15:50:41 Transaction Type : REQUEST +15:50:41 Received From : +15:50:41 ============================================================================ +15:50:41 FNo. Len. Field Value +15:50:41 ============================================================================ +15:50:41 [ 1] [ 4] [0200] +15:50:41 [ 2] [ 16] [6688990107046409] +15:50:41 [ 3] [ 6] [010000] +15:50:41 [ 4] [ 12] [000010000000] +15:50:41 [ 7] [ 10] [0320155037] +15:50:41 [ 11] [ 6] [789216] +15:50:41 [ 12] [ 6] [155037] +15:50:41 [ 13] [ 4] [0320] +15:50:41 [ 15] [ 4] [0320] +15:50:41 [ 18] [ 4] [6011] +15:50:41 [ 22] [ 3] [900] +15:50:41 [ 25] [ 2] [02] +15:50:41 [ 28] [ 9] [D00002000] +15:50:41 [ 32] [ 6] [621354] +15:50:41 [ 35] [ 37] [6688990107046409=44011231640976600000] +15:50:41 [ 37] [ 12] [507905335224] +15:50:41 [ 41] [ 8] [05004700] +15:50:41 [ 42] [ 15] [NATIVE ] +15:50:41 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:50:41 [ 49] [ 3] [418] +15:50:41 [ 52] [ 16] [56E2DFC20AFAD501] +15:50:41 ============================================================================ +15:50:41 + + +waiting on router queue for slot.... +15:50:41 Sending to : +15:50:41 ============================================================================ +15:50:41 Sending to : +15:50:41 ============================================================================ +15:50:42 ============================================================================ +15:50:42 Slot Id : <448> +15:50:42 Transaction Type : REQUEST +15:50:42 Received From : +15:50:42 ============================================================================ +15:50:42 FNo. Len. Field Value +15:50:42 ============================================================================ +15:50:42 [ 1] [ 4] [0200] +15:50:42 [ 2] [ 16] [6688990107046409] +15:50:42 [ 3] [ 6] [010000] +15:50:42 [ 4] [ 12] [000010000000] +15:50:42 [ 7] [ 10] [0320155037] +15:50:42 [ 11] [ 6] [789216] +15:50:42 [ 12] [ 6] [155037] +15:50:42 [ 13] [ 4] [0320] +15:50:42 [ 15] [ 4] [0320] +15:50:42 [ 18] [ 4] [6011] +15:50:42 [ 22] [ 3] [900] +15:50:42 [ 25] [ 2] [02] +15:50:42 [ 28] [ 9] [D00002000] +15:50:42 [ 32] [ 6] [621354] +15:50:42 [ 35] [ 37] [6688990107046409=44011231640976600000] +15:50:42 [ 37] [ 12] [507905335224] +15:50:42 [ 41] [ 8] [05004700] +15:50:42 [ 42] [ 15] [NATIVE ] +15:50:42 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:50:42 [ 49] [ 3] [418] +15:50:42 [ 52] [ 16] [56E2DFC20AFAD501] +15:50:42 ============================================================================ +15:50:42 + + +waiting on router queue for slot.... +15:50:42 Sending to : +15:50:42 ============================================================================ +15:50:42 ============================================================================ +15:50:42 Slot Id : <448> +15:50:42 Transaction Type : REQUEST +15:50:42 Received From : +15:50:42 ============================================================================ +15:50:42 FNo. Len. Field Value +15:50:42 ============================================================================ +15:50:42 [ 1] [ 4] [0200] +15:50:42 [ 2] [ 16] [6688990107046409] +15:50:42 [ 3] [ 6] [010000] +15:50:42 [ 4] [ 12] [000010000000] +15:50:42 [ 7] [ 10] [0320155037] +15:50:42 [ 11] [ 6] [789216] +15:50:42 [ 12] [ 6] [155037] +15:50:42 [ 13] [ 4] [0320] +15:50:42 [ 15] [ 4] [0320] +15:50:42 [ 18] [ 4] [6011] +15:50:42 [ 22] [ 3] [900] +15:50:42 [ 25] [ 2] [02] +15:50:42 [ 28] [ 9] [D00002000] +15:50:42 [ 32] [ 6] [621354] +15:50:42 [ 35] [ 37] [6688990107046409=44011231640976600000] +15:50:42 [ 37] [ 12] [507905335224] +15:50:42 [ 41] [ 8] [05004700] +15:50:42 [ 42] [ 15] [NATIVE ] +15:50:42 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:50:42 [ 49] [ 3] [418] +15:50:42 [ 52] [ 16] [9F0E66EF2D75699C] +15:50:42 ============================================================================ +15:50:42 + + +waiting on router queue for slot.... +15:50:42 Sending to : <4> +15:50:42 ============================================================================ +15:50:43 ============================================================================ +15:50:43 Slot Id : <480> +15:50:43 Transaction Type : RESPONSE +15:50:43 Received From : +15:50:43 ============================================================================ +15:50:43 FNo. Len. Field Value +15:50:43 ============================================================================ +15:50:43 [ 1] [ 4] [0210] +15:50:43 [ 2] [ 16] [6213544002255757] +15:50:43 [ 3] [ 6] [010000] +15:50:43 [ 4] [ 12] [000015000000] +15:50:43 [ 7] [ 10] [0320154831] +15:50:43 [ 11] [ 6] [950558] +15:50:43 [ 12] [ 6] [154831] +15:50:43 [ 13] [ 4] [0320] +15:50:43 [ 15] [ 4] [0320] +15:50:43 [ 18] [ 4] [6011] +15:50:43 [ 19] [ 3] [418] +15:50:43 [ 32] [ 6] [668899] +15:50:43 [ 35] [ 32] [6213544002255757=491212015575998] +15:50:43 [ 37] [ 12] [507901489355] +15:50:43 [ 38] [ 6] [642492] +15:50:43 [ 39] [ 2] [00] +15:50:43 [ 41] [ 8] [03515001] +15:50:43 [ 49] [ 3] [418] +15:50:43 [ 54] [ 40] [0001418C0000062414580002418C000006241458] +15:50:43 ============================================================================ +15:50:43 Sending to : +15:50:43 ============================================================================ +15:50:43 + + +waiting on router queue for slot.... +15:50:43 ============================================================================ +15:50:43 Slot Id : <448> +15:50:43 Transaction Type : RESPONSE +15:50:43 Received From : +15:50:43 ============================================================================ +15:50:43 FNo. Len. Field Value +15:50:43 ============================================================================ +15:50:43 [ 1] [ 4] [0210] +15:50:43 [ 2] [ 16] [6688990107046409] +15:50:43 [ 3] [ 6] [010000] +15:50:43 [ 4] [ 12] [000010000000] +15:50:43 [ 11] [ 6] [789216] +15:50:43 [ 12] [ 6] [155037] +15:50:43 [ 15] [ 4] [0320] +15:50:43 [ 18] [ 4] [6011] +15:50:43 [ 32] [ 6] [621354] +15:50:43 [ 35] [ 37] [6688990107046409=44011231640976600000] +15:50:43 [ 37] [ 12] [507905335224] +15:50:43 [ 38] [ 6] [331606] +15:50:43 [ 39] [ 2] [00] +15:50:43 [ 41] [ 8] [05004700] +15:50:43 [ 49] [ 3] [418] +15:50:43 [ 54] [ 20] [0002418C000019996260] +15:50:43 ============================================================================ +15:50:43 Sending to : +15:50:43 ============================================================================ +15:50:43 + + +waiting on router queue for slot.... +15:50:44 ============================================================================ +15:50:44 Slot Id : <480> +15:50:44 Transaction Type : RESPONSE +15:50:44 Received From : +15:50:44 ============================================================================ +15:50:44 FNo. Len. Field Value +15:50:44 ============================================================================ +15:50:44 [ 1] [ 4] [0210] +15:50:44 [ 2] [ 16] [6213544002255757] +15:50:44 [ 3] [ 6] [010000] +15:50:44 [ 4] [ 12] [000015000000] +15:50:44 [ 7] [ 10] [0320154831] +15:50:44 [ 11] [ 6] [950558] +15:50:44 [ 12] [ 6] [154831] +15:50:44 [ 13] [ 4] [0320] +15:50:44 [ 15] [ 4] [0320] +15:50:44 [ 18] [ 4] [6011] +15:50:44 [ 19] [ 3] [418] +15:50:44 [ 32] [ 6] [668899] +15:50:44 [ 35] [ 32] [6213544002255757=491212015575998] +15:50:44 [ 37] [ 12] [507901489355] +15:50:44 [ 38] [ 6] [642492] +15:50:44 [ 39] [ 2] [00] +15:50:44 [ 41] [ 8] [03515001] +15:50:44 [ 49] [ 3] [418] +15:50:44 [ 54] [ 40] [0001418C0000062414580002418C000006241458] +15:50:44 ============================================================================ +15:50:44 Calculate Source COMM Id = 4 +15:50:44 ============================================================================ +15:50:44 + + +waiting on router queue for slot.... +15:50:46 ============================================================================ +15:50:46 Slot Id : <448> +15:50:46 Transaction Type : RESPONSE +15:50:46 Received From : +15:50:46 ============================================================================ +15:50:46 FNo. Len. Field Value +15:50:46 ============================================================================ +15:50:46 [ 1] [ 4] [0210] +15:50:46 [ 2] [ 16] [6688990107046409] +15:50:46 [ 3] [ 6] [010000] +15:50:46 [ 4] [ 12] [000010000000] +15:50:46 [ 11] [ 6] [789216] +15:50:46 [ 12] [ 6] [155037] +15:50:46 [ 15] [ 4] [0320] +15:50:46 [ 18] [ 4] [6011] +15:50:46 [ 32] [ 6] [621354] +15:50:46 [ 35] [ 37] [6688990107046409=44011231640976600000] +15:50:46 [ 37] [ 12] [507905335224] +15:50:46 [ 38] [ 6] [331606] +15:50:46 [ 39] [ 2] [00] +15:50:46 [ 41] [ 8] [05004700] +15:50:46 [ 49] [ 3] [418] +15:50:46 [ 54] [ 20] [0002418C000019996260] +15:50:46 ============================================================================ +15:50:46 Calculate Source COMM Id = 0 +15:50:46 ============================================================================ +15:50:46 + + +waiting on router queue for slot.... +15:50:47 ============================================================================ +15:50:47 Slot Id : <471> +15:50:47 Transaction Type : REQUEST +15:50:47 Received From : +15:50:47 ============================================================================ +15:50:47 FNo. Len. Field Value +15:50:47 ============================================================================ +15:50:47 [ 1] [ 4] [0200] +15:50:47 [ 2] [ 16] [6688990108337609] +15:50:47 [ 3] [ 6] [011000] +15:50:47 [ 4] [ 12] [000010000000] +15:50:47 [ 7] [ 10] [0320155042] +15:50:47 [ 11] [ 6] [789243] +15:50:47 [ 12] [ 6] [155042] +15:50:47 [ 13] [ 4] [0320] +15:50:47 [ 15] [ 4] [0320] +15:50:47 [ 18] [ 4] [6011] +15:50:47 [ 22] [ 3] [900] +15:50:47 [ 25] [ 2] [02] +15:50:47 [ 28] [ 9] [D00002000] +15:50:47 [ 32] [ 6] [621354] +15:50:47 [ 35] [ 37] [6688990108337609=44061231760921400000] +15:50:47 [ 37] [ 12] [507904672797] +15:50:47 [ 41] [ 8] [18000600] +15:50:47 [ 42] [ 15] [NATIVE ] +15:50:47 [ 43] [ 40] [Phongsaly Branch 01 Phongsaly LAO] +15:50:47 [ 49] [ 3] [418] +15:50:47 [ 52] [ 16] [81BDD8A67C21D02B] +15:50:47 ============================================================================ +15:50:47 + + +waiting on router queue for slot.... +15:50:47 Sending to : +15:50:47 ============================================================================ +15:50:47 Sending to : +15:50:47 ============================================================================ +15:50:48 ============================================================================ +15:50:48 Slot Id : <471> +15:50:48 Transaction Type : REQUEST +15:50:48 Received From : +15:50:48 ============================================================================ +15:50:48 FNo. Len. Field Value +15:50:48 ============================================================================ +15:50:48 [ 1] [ 4] [0200] +15:50:48 [ 2] [ 16] [6688990108337609] +15:50:48 [ 3] [ 6] [011000] +15:50:48 [ 4] [ 12] [000010000000] +15:50:48 [ 7] [ 10] [0320155042] +15:50:48 [ 11] [ 6] [789243] +15:50:48 [ 12] [ 6] [155042] +15:50:48 [ 13] [ 4] [0320] +15:50:48 [ 15] [ 4] [0320] +15:50:48 [ 18] [ 4] [6011] +15:50:48 [ 22] [ 3] [900] +15:50:48 [ 25] [ 2] [02] +15:50:48 [ 28] [ 9] [D00002000] +15:50:48 [ 32] [ 6] [621354] +15:50:48 [ 35] [ 37] [6688990108337609=44061231760921400000] +15:50:48 [ 37] [ 12] [507904672797] +15:50:48 [ 41] [ 8] [18000600] +15:50:48 [ 42] [ 15] [NATIVE ] +15:50:48 [ 43] [ 40] [Phongsaly Branch 01 Phongsaly LAO] +15:50:48 [ 49] [ 3] [418] +15:50:48 [ 52] [ 16] [81BDD8A67C21D02B] +15:50:48 ============================================================================ +15:50:48 + + +waiting on router queue for slot.... +15:50:48 Sending to : +15:50:48 ============================================================================ +15:50:48 ============================================================================ +15:50:48 Slot Id : <471> +15:50:48 Transaction Type : REQUEST +15:50:48 Received From : +15:50:48 ============================================================================ +15:50:48 FNo. Len. Field Value +15:50:48 ============================================================================ +15:50:48 [ 1] [ 4] [0200] +15:50:48 [ 2] [ 16] [6688990108337609] +15:50:48 [ 3] [ 6] [011000] +15:50:48 [ 4] [ 12] [000010000000] +15:50:48 [ 7] [ 10] [0320155042] +15:50:48 [ 11] [ 6] [789243] +15:50:48 [ 12] [ 6] [155042] +15:50:48 [ 13] [ 4] [0320] +15:50:48 [ 15] [ 4] [0320] +15:50:48 [ 18] [ 4] [6011] +15:50:48 [ 22] [ 3] [900] +15:50:48 [ 25] [ 2] [02] +15:50:48 [ 28] [ 9] [D00002000] +15:50:48 [ 32] [ 6] [621354] +15:50:48 [ 35] [ 37] [6688990108337609=44061231760921400000] +15:50:48 [ 37] [ 12] [507904672797] +15:50:48 [ 41] [ 8] [18000600] +15:50:48 [ 42] [ 15] [NATIVE ] +15:50:48 [ 43] [ 40] [Phongsaly Branch 01 Phongsaly LAO] +15:50:48 [ 49] [ 3] [418] +15:50:48 [ 52] [ 16] [F5BCC1F7628AD5C2] +15:50:48 ============================================================================ +15:50:48 + + +waiting on router queue for slot.... +15:50:48 Sending to : <4> +15:50:48 ============================================================================ +15:50:48 ============================================================================ +15:50:48 Slot Id : <479> +15:50:48 Transaction Type : REQUEST +15:50:48 Received From : +15:50:48 ============================================================================ +15:50:48 FNo. Len. Field Value +15:50:48 ============================================================================ +15:50:48 [ 1] [ 4] [0200] +15:50:48 [ 2] [ 16] [1888880000031658] +15:50:48 [ 3] [ 6] [012000] +15:50:48 [ 4] [ 12] [000002000000] +15:50:48 [ 7] [ 10] [0320155044] +15:50:48 [ 11] [ 6] [789247] +15:50:48 [ 12] [ 6] [155044] +15:50:48 [ 13] [ 4] [0320] +15:50:48 [ 15] [ 4] [0320] +15:50:48 [ 18] [ 4] [6011] +15:50:48 [ 22] [ 3] [900] +15:50:48 [ 25] [ 2] [02] +15:50:48 [ 28] [ 9] [D00002000] +15:50:48 [ 32] [ 6] [621354] +15:50:48 [ 35] [ 32] [1888880000031658=000010100000744] +15:50:48 [ 37] [ 12] [507904755423] +15:50:48 [ 41] [ 8] [07001100] +15:50:48 [ 42] [ 15] [NATIVE ] +15:50:48 [ 43] [ 40] [Industry Market Namtar LAO] +15:50:48 [ 49] [ 3] [418] +15:50:48 [ 52] [ 16] [6CC44D2A54C359AD] +15:50:48 ============================================================================ +15:50:48 + + +waiting on router queue for slot.... +15:50:48 Sending to : +15:50:48 ============================================================================ +15:50:48 Sending to : +15:50:48 ============================================================================ +15:50:49 ============================================================================ +15:50:49 Slot Id : <479> +15:50:49 Transaction Type : REQUEST +15:50:49 Received From : +15:50:49 ============================================================================ +15:50:49 FNo. Len. Field Value +15:50:49 ============================================================================ +15:50:49 [ 1] [ 4] [0200] +15:50:49 [ 2] [ 16] [1888880000031658] +15:50:49 [ 3] [ 6] [012000] +15:50:49 [ 4] [ 12] [000002000000] +15:50:49 [ 7] [ 10] [0320155044] +15:50:49 [ 11] [ 6] [789247] +15:50:49 [ 12] [ 6] [155044] +15:50:49 [ 13] [ 4] [0320] +15:50:49 [ 15] [ 4] [0320] +15:50:49 [ 18] [ 4] [6011] +15:50:49 [ 22] [ 3] [900] +15:50:49 [ 25] [ 2] [02] +15:50:49 [ 28] [ 9] [D00002000] +15:50:49 [ 32] [ 6] [621354] +15:50:49 [ 35] [ 32] [1888880000031658=000010100000744] +15:50:49 [ 37] [ 12] [507904755423] +15:50:49 [ 41] [ 8] [07001100] +15:50:49 [ 42] [ 15] [NATIVE ] +15:50:49 [ 43] [ 40] [Industry Market Namtar LAO] +15:50:49 [ 49] [ 3] [418] +15:50:49 [ 52] [ 16] [6CC44D2A54C359AD] +15:50:49 ============================================================================ +15:50:49 + + +waiting on router queue for slot.... +15:50:49 Sending to : +15:50:49 ============================================================================ +15:50:49 ============================================================================ +15:50:49 Slot Id : <479> +15:50:49 Transaction Type : REQUEST +15:50:49 Received From : +15:50:49 ============================================================================ +15:50:49 FNo. Len. Field Value +15:50:49 ============================================================================ +15:50:49 [ 1] [ 4] [0200] +15:50:49 [ 2] [ 16] [1888880000031658] +15:50:49 [ 3] [ 6] [012000] +15:50:49 [ 4] [ 12] [000002000000] +15:50:49 [ 7] [ 10] [0320155044] +15:50:49 [ 11] [ 6] [789247] +15:50:49 [ 12] [ 6] [155044] +15:50:49 [ 13] [ 4] [0320] +15:50:49 [ 15] [ 4] [0320] +15:50:49 [ 18] [ 4] [6011] +15:50:49 [ 22] [ 3] [900] +15:50:49 [ 25] [ 2] [02] +15:50:49 [ 28] [ 9] [D00002000] +15:50:49 [ 32] [ 6] [621354] +15:50:49 [ 35] [ 32] [1888880000031658=000010100000744] +15:50:49 [ 37] [ 12] [507904755423] +15:50:49 [ 41] [ 8] [07001100] +15:50:49 [ 42] [ 15] [NATIVE ] +15:50:49 [ 43] [ 40] [Industry Market Namtar LAO] +15:50:49 [ 49] [ 3] [418] +15:50:49 [ 52] [ 16] [DE15B8F38CE6C27E] +15:50:49 ============================================================================ +15:50:49 + + +waiting on router queue for slot.... +15:50:49 Sending to : <5> +15:50:49 ============================================================================ +15:50:49 ============================================================================ +15:50:49 Slot Id : <471> +15:50:49 Transaction Type : RESPONSE +15:50:49 Received From : +15:50:49 ============================================================================ +15:50:49 FNo. Len. Field Value +15:50:49 ============================================================================ +15:50:49 [ 1] [ 4] [0210] +15:50:49 [ 2] [ 16] [6688990108337609] +15:50:49 [ 3] [ 6] [011000] +15:50:49 [ 4] [ 12] [000010000000] +15:50:49 [ 11] [ 6] [789243] +15:50:49 [ 12] [ 6] [155042] +15:50:49 [ 15] [ 4] [0320] +15:50:49 [ 18] [ 4] [6011] +15:50:49 [ 32] [ 6] [621354] +15:50:49 [ 35] [ 37] [6688990108337609=44061231760921400000] +15:50:49 [ 37] [ 12] [507904672797] +15:50:49 [ 38] [ 6] [116030] +15:50:49 [ 39] [ 2] [00] +15:50:49 [ 41] [ 8] [18000600] +15:50:49 [ 49] [ 3] [418] +15:50:49 [ 54] [ 20] [1002418C000059490015] +15:50:49 ============================================================================ +15:50:49 Sending to : +15:50:49 ============================================================================ +15:50:49 + + +waiting on router queue for slot.... +15:50:50 ============================================================================ +15:50:50 Slot Id : <0> +15:50:50 Transaction Type : REQUEST +15:50:50 Received From : +15:50:50 ============================================================================ +15:50:50 FNo. Len. Field Value +15:50:50 ============================================================================ +15:50:50 [ 1] [ 4] [0800] +15:50:50 [ 7] [ 10] [0320084957] +15:50:50 [ 11] [ 6] [157106] +15:50:50 [ 70] [ 3] [301] +15:50:50 ============================================================================ +15:50:50 + + +waiting on router queue for slot.... +15:50:50 Sending to : +15:50:50 ============================================================================ +15:50:50 ============================================================================ +15:50:50 Slot Id : <0> +15:50:50 Transaction Type : RESPONSE +15:50:50 Received From : +15:50:50 ============================================================================ +15:50:50 FNo. Len. Field Value +15:50:50 ============================================================================ +15:50:50 [ 1] [ 4] [0810] +15:50:50 [ 7] [ 10] [0320084957] +15:50:50 [ 11] [ 6] [157106] +15:50:50 [ 39] [ 2] [00] +15:50:50 [ 70] [ 3] [301] +15:50:50 ============================================================================ +15:50:50 Calculate Source COMM Id = 2 +15:50:50 ============================================================================ +15:50:50 + + +waiting on router queue for slot.... +15:50:51 ============================================================================ +15:50:51 Slot Id : <471> +15:50:51 Transaction Type : RESPONSE +15:50:51 Received From : +15:50:51 ============================================================================ +15:50:51 FNo. Len. Field Value +15:50:51 ============================================================================ +15:50:51 [ 1] [ 4] [0210] +15:50:51 [ 2] [ 16] [6688990108337609] +15:50:51 [ 3] [ 6] [011000] +15:50:51 [ 4] [ 12] [000010000000] +15:50:51 [ 11] [ 6] [789243] +15:50:51 [ 12] [ 6] [155042] +15:50:51 [ 15] [ 4] [0320] +15:50:51 [ 18] [ 4] [6011] +15:50:51 [ 32] [ 6] [621354] +15:50:51 [ 35] [ 37] [6688990108337609=44061231760921400000] +15:50:51 [ 37] [ 12] [507904672797] +15:50:51 [ 38] [ 6] [116030] +15:50:51 [ 39] [ 2] [00] +15:50:51 [ 41] [ 8] [18000600] +15:50:51 [ 49] [ 3] [418] +15:50:51 [ 54] [ 20] [1002418C000059490015] +15:50:51 ============================================================================ +15:50:51 Calculate Source COMM Id = 0 +15:50:51 ============================================================================ +15:50:51 + + +waiting on router queue for slot.... +15:50:56 ============================================================================ +15:50:56 Slot Id : <479> +15:50:56 Transaction Type : RESPONSE +15:50:56 Received From : +15:50:56 ============================================================================ +15:50:56 FNo. Len. Field Value +15:50:56 ============================================================================ +15:50:56 [ 1] [ 4] [0210] +15:50:56 [ 2] [ 16] [1888880000031658] +15:50:56 [ 3] [ 6] [012000] +15:50:56 [ 4] [ 12] [000002000000] +15:50:56 [ 7] [ 10] [0320155044] +15:50:56 [ 11] [ 6] [789247] +15:50:56 [ 12] [ 6] [155044] +15:50:56 [ 13] [ 4] [0320] +15:50:56 [ 15] [ 4] [0320] +15:50:56 [ 18] [ 4] [6011] +15:50:56 [ 19] [ 3] [418] +15:50:56 [ 32] [ 6] [621354] +15:50:56 [ 37] [ 12] [507904755423] +15:50:56 [ 38] [ 6] [583406] +15:50:56 [ 39] [ 2] [00] +15:50:56 [ 41] [ 8] [07001100] +15:50:56 [ 49] [ 3] [418] +15:50:56 [ 54] [ 0] [] +15:50:56 ============================================================================ +15:50:56 Sending to : +15:50:56 ============================================================================ +15:50:56 + + +waiting on router queue for slot.... +15:50:58 ============================================================================ +15:50:58 Slot Id : <479> +15:50:58 Transaction Type : RESPONSE +15:50:58 Received From : +15:50:58 ============================================================================ +15:50:58 FNo. Len. Field Value +15:50:58 ============================================================================ +15:50:58 [ 1] [ 4] [0210] +15:50:58 [ 2] [ 16] [1888880000031658] +15:50:58 [ 3] [ 6] [012000] +15:50:58 [ 4] [ 12] [000002000000] +15:50:58 [ 7] [ 10] [0320155044] +15:50:58 [ 11] [ 6] [789247] +15:50:58 [ 12] [ 6] [155044] +15:50:58 [ 13] [ 4] [0320] +15:50:58 [ 15] [ 4] [0320] +15:50:58 [ 18] [ 4] [6011] +15:50:58 [ 19] [ 3] [418] +15:50:58 [ 32] [ 6] [621354] +15:50:58 [ 37] [ 12] [507904755423] +15:50:58 [ 38] [ 6] [583406] +15:50:58 [ 39] [ 2] [00] +15:50:58 [ 41] [ 8] [07001100] +15:50:58 [ 49] [ 3] [418] +15:50:58 [ 54] [ 0] [] +15:50:58 ============================================================================ +15:50:58 Calculate Source COMM Id = 0 +15:50:58 ============================================================================ +15:50:58 + + +waiting on router queue for slot.... +15:50:59 ============================================================================ +15:50:59 Slot Id : <2> +15:50:59 Transaction Type : REQUEST +15:50:59 Received From : +15:50:59 ============================================================================ +15:50:59 FNo. Len. Field Value +15:50:59 ============================================================================ +15:50:59 [ 1] [ 4] [0200] +15:50:59 [ 2] [ 16] [6688990103285308] +15:50:59 [ 3] [ 6] [010000] +15:50:59 [ 4] [ 12] [000100000000] +15:50:59 [ 7] [ 10] [0320155054] +15:50:59 [ 11] [ 6] [789293] +15:50:59 [ 12] [ 6] [155054] +15:50:59 [ 13] [ 4] [0320] +15:50:59 [ 15] [ 4] [0320] +15:50:59 [ 18] [ 4] [6011] +15:50:59 [ 22] [ 3] [900] +15:50:59 [ 25] [ 2] [02] +15:50:59 [ 28] [ 9] [D00002000] +15:50:59 [ 32] [ 6] [621354] +15:50:59 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:50:59 [ 37] [ 12] [507903499538] +15:50:59 [ 41] [ 8] [06002200] +15:50:59 [ 42] [ 15] [NATIVE ] +15:50:59 [ 43] [ 40] [Beng Market Beng LAO] +15:50:59 [ 49] [ 3] [418] +15:50:59 [ 52] [ 16] [F0618BF005454A15] +15:50:59 ============================================================================ +15:50:59 + + +waiting on router queue for slot.... +15:50:59 Sending to : +15:50:59 ============================================================================ +15:50:59 Sending to : +15:50:59 ============================================================================ +15:50:59 ============================================================================ +15:50:59 Slot Id : <2> +15:50:59 Transaction Type : REQUEST +15:50:59 Received From : +15:50:59 ============================================================================ +15:50:59 FNo. Len. Field Value +15:50:59 ============================================================================ +15:50:59 [ 1] [ 4] [0200] +15:50:59 [ 2] [ 16] [6688990103285308] +15:50:59 [ 3] [ 6] [010000] +15:50:59 [ 4] [ 12] [000100000000] +15:50:59 [ 7] [ 10] [0320155054] +15:50:59 [ 11] [ 6] [789293] +15:50:59 [ 12] [ 6] [155054] +15:50:59 [ 13] [ 4] [0320] +15:50:59 [ 15] [ 4] [0320] +15:50:59 [ 18] [ 4] [6011] +15:50:59 [ 22] [ 3] [900] +15:50:59 [ 25] [ 2] [02] +15:50:59 [ 28] [ 9] [D00002000] +15:50:59 [ 32] [ 6] [621354] +15:50:59 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:50:59 [ 37] [ 12] [507903499538] +15:50:59 [ 41] [ 8] [06002200] +15:50:59 [ 42] [ 15] [NATIVE ] +15:50:59 [ 43] [ 40] [Beng Market Beng LAO] +15:50:59 [ 49] [ 3] [418] +15:50:59 [ 52] [ 16] [F0618BF005454A15] +15:50:59 ============================================================================ +15:50:59 + + +waiting on router queue for slot.... +15:50:59 Sending to : +15:50:59 ============================================================================ +15:50:59 ============================================================================ +15:50:59 Slot Id : <2> +15:50:59 Transaction Type : REQUEST +15:50:59 Received From : +15:50:59 ============================================================================ +15:50:59 FNo. Len. Field Value +15:50:59 ============================================================================ +15:50:59 [ 1] [ 4] [0200] +15:50:59 [ 2] [ 16] [6688990103285308] +15:50:59 [ 3] [ 6] [010000] +15:50:59 [ 4] [ 12] [000100000000] +15:50:59 [ 7] [ 10] [0320155054] +15:50:59 [ 11] [ 6] [789293] +15:50:59 [ 12] [ 6] [155054] +15:50:59 [ 13] [ 4] [0320] +15:50:59 [ 15] [ 4] [0320] +15:50:59 [ 18] [ 4] [6011] +15:50:59 [ 22] [ 3] [900] +15:50:59 [ 25] [ 2] [02] +15:50:59 [ 28] [ 9] [D00002000] +15:50:59 [ 32] [ 6] [621354] +15:50:59 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:50:59 [ 37] [ 12] [507903499538] +15:50:59 [ 41] [ 8] [06002200] +15:50:59 [ 42] [ 15] [NATIVE ] +15:50:59 [ 43] [ 40] [Beng Market Beng LAO] +15:50:59 [ 49] [ 3] [418] +15:50:59 [ 52] [ 16] [B19E3E3748DDE445] +15:50:59 ============================================================================ +15:50:59 + + +waiting on router queue for slot.... +15:50:59 Sending to : <4> +15:50:59 ============================================================================ +15:51:00 ============================================================================ +15:51:00 Slot Id : <2> +15:51:00 Transaction Type : RESPONSE +15:51:00 Received From : +15:51:00 ============================================================================ +15:51:00 FNo. Len. Field Value +15:51:00 ============================================================================ +15:51:00 [ 1] [ 4] [0210] +15:51:00 [ 2] [ 16] [6688990103285308] +15:51:00 [ 3] [ 6] [010000] +15:51:00 [ 4] [ 12] [000100000000] +15:51:00 [ 11] [ 6] [789293] +15:51:00 [ 12] [ 6] [155054] +15:51:00 [ 15] [ 4] [0320] +15:51:00 [ 18] [ 4] [6011] +15:51:00 [ 32] [ 6] [621354] +15:51:00 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:51:00 [ 37] [ 12] [507903499538] +15:51:00 [ 38] [ 6] [798757] +15:51:00 [ 39] [ 2] [00] +15:51:00 [ 41] [ 8] [06002200] +15:51:00 [ 49] [ 3] [418] +15:51:00 [ 54] [ 20] [0002418C000347670443] +15:51:00 ============================================================================ +15:51:00 Sending to : +15:51:00 ============================================================================ +15:51:00 + + +waiting on router queue for slot.... +15:51:02 ============================================================================ +15:51:02 Slot Id : <2> +15:51:02 Transaction Type : RESPONSE +15:51:02 Received From : +15:51:02 ============================================================================ +15:51:02 FNo. Len. Field Value +15:51:02 ============================================================================ +15:51:02 [ 1] [ 4] [0210] +15:51:02 [ 2] [ 16] [6688990103285308] +15:51:02 [ 3] [ 6] [010000] +15:51:02 [ 4] [ 12] [000100000000] +15:51:02 [ 11] [ 6] [789293] +15:51:02 [ 12] [ 6] [155054] +15:51:02 [ 15] [ 4] [0320] +15:51:02 [ 18] [ 4] [6011] +15:51:02 [ 32] [ 6] [621354] +15:51:02 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:51:02 [ 37] [ 12] [507903499538] +15:51:02 [ 38] [ 6] [798757] +15:51:02 [ 39] [ 2] [00] +15:51:02 [ 41] [ 8] [06002200] +15:51:02 [ 49] [ 3] [418] +15:51:02 [ 54] [ 20] [0002418C000347670443] +15:51:02 ============================================================================ +15:51:02 Calculate Source COMM Id = 0 +15:51:02 ============================================================================ +15:51:02 + + +waiting on router queue for slot.... +15:51:02 ============================================================================ +15:51:02 Slot Id : <493> +15:51:02 Transaction Type : REQUEST +15:51:02 Received From : +15:51:02 ============================================================================ +15:51:02 FNo. Len. Field Value +15:51:02 ============================================================================ +15:51:02 [ 1] [ 4] [0800] +15:51:02 [ 7] [ 10] [0320230251] +15:51:02 [ 11] [ 6] [160251] +15:51:02 [ 37] [ 12] [57916160251] +15:51:02 [ 70] [ 3] [301] +15:51:02 ============================================================================ +15:51:02 + + +waiting on router queue for slot.... +15:51:02 Sending to : +15:51:02 ============================================================================ +15:51:02 ============================================================================ +15:51:02 Slot Id : <493> +15:51:02 Transaction Type : RESPONSE +15:51:02 Received From : +15:51:02 ============================================================================ +15:51:02 FNo. Len. Field Value +15:51:02 ============================================================================ +15:51:02 [ 1] [ 4] [0810] +15:51:02 [ 7] [ 10] [0320230251] +15:51:02 [ 11] [ 6] [160251] +15:51:02 [ 37] [ 12] [579161602510] +15:51:02 [ 39] [ 2] [00] +15:51:02 [ 70] [ 3] [810] +15:51:02 ============================================================================ +15:51:02 Calculate Source COMM Id = 6 +15:51:02 ============================================================================ +15:51:02 + + +waiting on router queue for slot.... +15:51:06 ============================================================================ +15:51:06 Slot Id : <4> +15:51:06 Transaction Type : REQUEST +15:51:06 Received From : +15:51:06 ============================================================================ +15:51:06 FNo. Len. Field Value +15:51:06 ============================================================================ +15:51:06 [ 1] [ 4] [0800] +15:51:06 [ 7] [ 10] [0320085013] +15:51:06 [ 11] [ 6] [157107] +15:51:06 [ 70] [ 3] [301] +15:51:06 ============================================================================ +15:51:06 + + +waiting on router queue for slot.... +15:51:06 Sending to : +15:51:06 ============================================================================ +15:51:06 ============================================================================ +15:51:06 Slot Id : <4> +15:51:06 Transaction Type : RESPONSE +15:51:06 Received From : +15:51:06 ============================================================================ +15:51:06 FNo. Len. Field Value +15:51:06 ============================================================================ +15:51:06 [ 1] [ 4] [0810] +15:51:06 [ 7] [ 10] [0320085013] +15:51:06 [ 11] [ 6] [157107] +15:51:06 [ 39] [ 2] [00] +15:51:06 [ 70] [ 3] [301] +15:51:06 ============================================================================ +15:51:06 Calculate Source COMM Id = 2 +15:51:06 ============================================================================ +15:51:06 + + +waiting on router queue for slot.... +15:51:19 ============================================================================ +15:51:19 Slot Id : <1> +15:51:19 Transaction Type : REQUEST +15:51:19 Received From : +15:51:19 ============================================================================ +15:51:19 FNo. Len. Field Value +15:51:19 ============================================================================ +15:51:19 [ 1] [ 4] [0800] +15:51:19 [ 2] [ 5] [02531] +15:51:19 [ 3] [ 6] [579158] +15:51:19 [ 7] [ 10] [0320085119] +15:51:19 [ 11] [ 6] [807332] +15:51:19 [ 15] [ 10] [0320085119] +15:51:19 [ 37] [ 11] [57915807332] +15:51:19 [ 70] [ 3] [001] +15:51:19 ============================================================================ +15:51:19 + + +waiting on router queue for slot.... +15:51:19 ============================================================================ +15:51:19 Slot Id : <1> +15:51:19 Transaction Type : RESPONSE +15:51:19 Received From : +15:51:19 ============================================================================ +15:51:19 FNo. Len. Field Value +15:51:19 ============================================================================ +15:51:19 [ 1] [ 4] [0810] +15:51:19 [ 7] [ 10] [0320085119] +15:51:19 [ 11] [ 6] [807332] +15:51:19 [ 15] [ 4] [0320] +15:51:19 [ 37] [ 12] [57915807332] +15:51:19 [ 39] [ 2] [00] +15:51:19 [ 70] [ 3] [001] +15:51:19 ============================================================================ +15:51:19 Sending to : +15:51:19 ============================================================================ +15:51:19 + + +waiting on router queue for slot.... +15:51:21 ============================================================================ +15:51:21 Slot Id : <498> +15:51:21 Transaction Type : REQUEST +15:51:21 Received From : +15:51:21 ============================================================================ +15:51:21 FNo. Len. Field Value +15:51:21 ============================================================================ +15:51:21 [ 1] [ 4] [0800] +15:51:21 [ 7] [ 10] [0320085028] +15:51:21 [ 11] [ 6] [157108] +15:51:21 [ 70] [ 3] [301] +15:51:21 ============================================================================ +15:51:21 + + +waiting on router queue for slot.... +15:51:21 Sending to : +15:51:21 ============================================================================ +15:51:21 ============================================================================ +15:51:21 Slot Id : <498> +15:51:21 Transaction Type : RESPONSE +15:51:21 Received From : +15:51:21 ============================================================================ +15:51:21 FNo. Len. Field Value +15:51:21 ============================================================================ +15:51:21 [ 1] [ 4] [0810] +15:51:21 [ 7] [ 10] [0320085028] +15:51:21 [ 11] [ 6] [157108] +15:51:21 [ 39] [ 2] [00] +15:51:21 [ 70] [ 3] [301] +15:51:21 ============================================================================ +15:51:21 Calculate Source COMM Id = 2 +15:51:21 ============================================================================ +15:51:21 + + +waiting on router queue for slot.... +15:51:22 ============================================================================ +15:51:22 Slot Id : <473> +15:51:22 Transaction Type : REQUEST +15:51:22 Received From : +15:51:22 ============================================================================ +15:51:22 FNo. Len. Field Value +15:51:22 ============================================================================ +15:51:22 [ 1] [ 4] [0800] +15:51:22 [ 7] [ 10] [0320084912] +15:51:22 [ 11] [ 6] [093096] +15:51:22 [ 37] [ 12] [57915093096] +15:51:22 [ 70] [ 3] [301] +15:51:22 ============================================================================ +15:51:22 + + +waiting on router queue for slot.... +15:51:22 Sending to : +15:51:22 ============================================================================ +15:51:22 ============================================================================ +15:51:22 Slot Id : <473> +15:51:22 Transaction Type : RESPONSE +15:51:22 Received From : +15:51:22 ============================================================================ +15:51:22 FNo. Len. Field Value +15:51:22 ============================================================================ +15:51:22 [ 1] [ 4] [0810] +15:51:22 [ 7] [ 10] [0320084912] +15:51:22 [ 11] [ 6] [093096] +15:51:22 [ 37] [ 12] [579150930960] +15:51:22 [ 39] [ 2] [00] +15:51:22 [ 70] [ 3] [810] +15:51:22 ============================================================================ +15:51:22 Calculate Source COMM Id = 4 +15:51:22 ============================================================================ +15:51:22 + + +waiting on router queue for slot.... +15:51:30 ============================================================================ +15:51:30 Slot Id : <476> +15:51:30 Transaction Type : REQUEST +15:51:30 Received From : +15:51:30 ============================================================================ +15:51:30 FNo. Len. Field Value +15:51:30 ============================================================================ +15:51:30 [ 1] [ 4] [0200] +15:51:30 [ 2] [ 16] [6688990107046409] +15:51:30 [ 3] [ 6] [010000] +15:51:30 [ 4] [ 12] [000010000000] +15:51:30 [ 7] [ 10] [0320155125] +15:51:30 [ 11] [ 6] [789405] +15:51:30 [ 12] [ 6] [155125] +15:51:30 [ 13] [ 4] [0320] +15:51:30 [ 15] [ 4] [0320] +15:51:30 [ 18] [ 4] [6011] +15:51:30 [ 22] [ 3] [900] +15:51:30 [ 25] [ 2] [02] +15:51:30 [ 28] [ 9] [D00002000] +15:51:30 [ 32] [ 6] [621354] +15:51:30 [ 35] [ 37] [6688990107046409=44011231640976600000] +15:51:30 [ 37] [ 12] [507905335226] +15:51:30 [ 41] [ 8] [05004700] +15:51:30 [ 42] [ 15] [NATIVE ] +15:51:30 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:51:30 [ 49] [ 3] [418] +15:51:30 [ 52] [ 16] [56E2DFC20AFAD501] +15:51:30 ============================================================================ +15:51:30 + + +waiting on router queue for slot.... +15:51:30 Sending to : +15:51:30 ============================================================================ +15:51:30 Sending to : +15:51:30 ============================================================================ +15:51:30 ============================================================================ +15:51:30 Slot Id : <476> +15:51:30 Transaction Type : REQUEST +15:51:30 Received From : +15:51:30 ============================================================================ +15:51:30 FNo. Len. Field Value +15:51:30 ============================================================================ +15:51:30 [ 1] [ 4] [0200] +15:51:30 [ 2] [ 16] [6688990107046409] +15:51:30 [ 3] [ 6] [010000] +15:51:30 [ 4] [ 12] [000010000000] +15:51:30 [ 7] [ 10] [0320155125] +15:51:30 [ 11] [ 6] [789405] +15:51:30 [ 12] [ 6] [155125] +15:51:30 [ 13] [ 4] [0320] +15:51:30 [ 15] [ 4] [0320] +15:51:30 [ 18] [ 4] [6011] +15:51:30 [ 22] [ 3] [900] +15:51:30 [ 25] [ 2] [02] +15:51:30 [ 28] [ 9] [D00002000] +15:51:30 [ 32] [ 6] [621354] +15:51:30 [ 35] [ 37] [6688990107046409=44011231640976600000] +15:51:30 [ 37] [ 12] [507905335226] +15:51:30 [ 41] [ 8] [05004700] +15:51:30 [ 42] [ 15] [NATIVE ] +15:51:30 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:51:30 [ 49] [ 3] [418] +15:51:30 [ 52] [ 16] [56E2DFC20AFAD501] +15:51:30 ============================================================================ +15:51:30 + + +waiting on router queue for slot.... +15:51:30 Sending to : +15:51:30 ============================================================================ +15:51:30 ============================================================================ +15:51:30 Slot Id : <476> +15:51:30 Transaction Type : REQUEST +15:51:30 Received From : +15:51:30 ============================================================================ +15:51:30 FNo. Len. Field Value +15:51:30 ============================================================================ +15:51:30 [ 1] [ 4] [0200] +15:51:30 [ 2] [ 16] [6688990107046409] +15:51:30 [ 3] [ 6] [010000] +15:51:30 [ 4] [ 12] [000010000000] +15:51:30 [ 7] [ 10] [0320155125] +15:51:30 [ 11] [ 6] [789405] +15:51:30 [ 12] [ 6] [155125] +15:51:30 [ 13] [ 4] [0320] +15:51:30 [ 15] [ 4] [0320] +15:51:30 [ 18] [ 4] [6011] +15:51:30 [ 22] [ 3] [900] +15:51:30 [ 25] [ 2] [02] +15:51:30 [ 28] [ 9] [D00002000] +15:51:30 [ 32] [ 6] [621354] +15:51:30 [ 35] [ 37] [6688990107046409=44011231640976600000] +15:51:30 [ 37] [ 12] [507905335226] +15:51:30 [ 41] [ 8] [05004700] +15:51:30 [ 42] [ 15] [NATIVE ] +15:51:30 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +15:51:30 [ 49] [ 3] [418] +15:51:30 [ 52] [ 16] [9F0E66EF2D75699C] +15:51:30 ============================================================================ +15:51:30 + + +waiting on router queue for slot.... +15:51:30 Sending to : <4> +15:51:30 ============================================================================ +15:51:31 ============================================================================ +15:51:31 Slot Id : <476> +15:51:31 Transaction Type : RESPONSE +15:51:31 Received From : +15:51:31 ============================================================================ +15:51:31 FNo. Len. Field Value +15:51:31 ============================================================================ +15:51:31 [ 1] [ 4] [0210] +15:51:31 [ 2] [ 16] [6688990107046409] +15:51:31 [ 3] [ 6] [010000] +15:51:31 [ 4] [ 12] [000010000000] +15:51:31 [ 11] [ 6] [789405] +15:51:31 [ 12] [ 6] [155125] +15:51:31 [ 15] [ 4] [0320] +15:51:31 [ 18] [ 4] [6011] +15:51:31 [ 32] [ 6] [621354] +15:51:31 [ 35] [ 37] [6688990107046409=44011231640976600000] +15:51:31 [ 37] [ 12] [507905335226] +15:51:31 [ 38] [ 6] [823356] +15:51:31 [ 39] [ 2] [00] +15:51:31 [ 41] [ 8] [05004700] +15:51:31 [ 49] [ 3] [418] +15:51:31 [ 54] [ 20] [0002418C000009796260] +15:51:31 ============================================================================ +15:51:31 Sending to : +15:51:31 ============================================================================ +15:51:31 + + +waiting on router queue for slot.... +15:51:32 ============================================================================ +15:51:32 Slot Id : <477> +15:51:32 Transaction Type : REQUEST +15:51:32 Received From : +15:51:32 ============================================================================ +15:51:32 FNo. Len. Field Value +15:51:32 ============================================================================ +15:51:32 [ 1] [ 4] [0800] +15:51:32 [ 7] [ 10] [0320085039] +15:51:32 [ 11] [ 6] [157109] +15:51:32 [ 70] [ 3] [301] +15:51:32 ============================================================================ +15:51:32 + + +waiting on router queue for slot.... +15:51:32 Sending to : +15:51:32 ============================================================================ +15:51:32 ============================================================================ +15:51:32 Slot Id : <477> +15:51:32 Transaction Type : RESPONSE +15:51:32 Received From : +15:51:32 ============================================================================ +15:51:32 FNo. Len. Field Value +15:51:32 ============================================================================ +15:51:32 [ 1] [ 4] [0810] +15:51:32 [ 7] [ 10] [0320085039] +15:51:32 [ 11] [ 6] [157109] +15:51:32 [ 39] [ 2] [00] +15:51:32 [ 70] [ 3] [301] +15:51:32 ============================================================================ +15:51:32 Calculate Source COMM Id = 2 +15:51:32 ============================================================================ +15:51:32 + + +waiting on router queue for slot.... +15:51:33 ============================================================================ +15:51:33 Slot Id : <476> +15:51:33 Transaction Type : RESPONSE +15:51:33 Received From : +15:51:33 ============================================================================ +15:51:33 FNo. Len. Field Value +15:51:33 ============================================================================ +15:51:33 [ 1] [ 4] [0210] +15:51:33 [ 2] [ 16] [6688990107046409] +15:51:33 [ 3] [ 6] [010000] +15:51:33 [ 4] [ 12] [000010000000] +15:51:33 [ 11] [ 6] [789405] +15:51:33 [ 12] [ 6] [155125] +15:51:33 [ 15] [ 4] [0320] +15:51:33 [ 18] [ 4] [6011] +15:51:33 [ 32] [ 6] [621354] +15:51:33 [ 35] [ 37] [6688990107046409=44011231640976600000] +15:51:33 [ 37] [ 12] [507905335226] +15:51:33 [ 38] [ 6] [823356] +15:51:33 [ 39] [ 2] [00] +15:51:33 [ 41] [ 8] [05004700] +15:51:33 [ 49] [ 3] [418] +15:51:33 [ 54] [ 20] [0002418C000009796260] +15:51:33 ============================================================================ +15:51:33 Calculate Source COMM Id = 0 +15:51:33 ============================================================================ +15:51:33 + + +waiting on router queue for slot.... +15:51:36 ============================================================================ +15:51:36 Slot Id : <489> +15:51:36 Transaction Type : REQUEST +15:51:36 Received From : +15:51:36 ============================================================================ +15:51:36 FNo. Len. Field Value +15:51:36 ============================================================================ +15:51:36 [ 1] [ 4] [0200] +15:51:36 [ 2] [ 16] [6688990107556506] +15:51:36 [ 3] [ 6] [301000] +15:51:36 [ 7] [ 10] [0320085042] +15:51:36 [ 11] [ 6] [270155] +15:51:36 [ 12] [ 6] [155042] +15:51:36 [ 13] [ 4] [0320] +15:51:36 [ 14] [ 4] [4403] +15:51:36 [ 15] [ 4] [0320] +15:51:36 [ 18] [ 4] [6011] +15:51:36 [ 19] [ 3] [418] +15:51:36 [ 22] [ 3] [021] +15:51:36 [ 25] [ 2] [01] +15:51:36 [ 32] [ 6] [180893] +15:51:36 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:51:36 [ 37] [ 12] [507908270155] +15:51:36 [ 41] [ 8] [0361BLTB] +15:51:36 [ 42] [ 15] [999999 ] +15:51:36 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +15:51:36 [ 49] [ 3] [418] +15:51:36 [ 52] [ 16] [4C5095EF3527D44F] +15:51:36 ============================================================================ +15:51:36 + + +waiting on router queue for slot.... +15:51:36 Sending to : +15:51:36 ============================================================================ +15:51:36 Sending to : +15:51:36 ============================================================================ +15:51:36 ============================================================================ +15:51:36 Slot Id : <489> +15:51:36 Transaction Type : REQUEST +15:51:36 Received From : +15:51:36 ============================================================================ +15:51:36 FNo. Len. Field Value +15:51:36 ============================================================================ +15:51:36 [ 1] [ 4] [0200] +15:51:36 [ 2] [ 16] [6688990107556506] +15:51:36 [ 3] [ 6] [301000] +15:51:36 [ 7] [ 10] [0320085042] +15:51:36 [ 11] [ 6] [270155] +15:51:36 [ 12] [ 6] [155042] +15:51:36 [ 13] [ 4] [0320] +15:51:36 [ 14] [ 4] [4403] +15:51:36 [ 15] [ 4] [0320] +15:51:36 [ 18] [ 4] [6011] +15:51:36 [ 19] [ 3] [418] +15:51:36 [ 22] [ 3] [021] +15:51:36 [ 25] [ 2] [01] +15:51:36 [ 32] [ 6] [180893] +15:51:36 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:51:36 [ 37] [ 12] [507908270155] +15:51:36 [ 41] [ 8] [0361BLTB] +15:51:36 [ 42] [ 15] [999999 ] +15:51:36 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +15:51:36 [ 49] [ 3] [418] +15:51:36 [ 52] [ 16] [4C5095EF3527D44F] +15:51:36 ============================================================================ +15:51:36 + + +waiting on router queue for slot.... +15:51:36 Sending to : +15:51:36 ============================================================================ +15:51:36 ============================================================================ +15:51:36 Slot Id : <489> +15:51:36 Transaction Type : REQUEST +15:51:36 Received From : +15:51:36 ============================================================================ +15:51:36 FNo. Len. Field Value +15:51:36 ============================================================================ +15:51:36 [ 1] [ 4] [0200] +15:51:36 [ 2] [ 16] [6688990107556506] +15:51:36 [ 3] [ 6] [301000] +15:51:36 [ 7] [ 10] [0320085042] +15:51:36 [ 11] [ 6] [270155] +15:51:36 [ 12] [ 6] [155042] +15:51:36 [ 13] [ 4] [0320] +15:51:36 [ 14] [ 4] [4403] +15:51:36 [ 15] [ 4] [0320] +15:51:36 [ 18] [ 4] [6011] +15:51:36 [ 19] [ 3] [418] +15:51:36 [ 22] [ 3] [021] +15:51:36 [ 25] [ 2] [01] +15:51:36 [ 32] [ 6] [180893] +15:51:36 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:51:36 [ 37] [ 12] [507908270155] +15:51:36 [ 41] [ 8] [0361BLTB] +15:51:36 [ 42] [ 15] [999999 ] +15:51:36 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +15:51:36 [ 49] [ 3] [418] +15:51:36 [ 52] [ 16] [3356E5F5FDC763CB] +15:51:36 ============================================================================ +15:51:36 + + +waiting on router queue for slot.... +15:51:36 Sending to : <0> +15:51:36 ============================================================================ +15:51:36 ============================================================================ +15:51:36 Slot Id : <489> +15:51:36 Transaction Type : RESPONSE +15:51:36 Received From : +15:51:36 ============================================================================ +15:51:36 FNo. Len. Field Value +15:51:36 ============================================================================ +15:51:36 [ 1] [ 4] [0210] +15:51:36 [ 2] [ 16] [6688990107556506] +15:51:36 [ 3] [ 6] [301000] +15:51:36 [ 4] [ 12] [000000000000] +15:51:36 [ 7] [ 10] [0320085042] +15:51:36 [ 11] [ 6] [270155] +15:51:36 [ 12] [ 6] [155042] +15:51:36 [ 13] [ 4] [0320] +15:51:36 [ 15] [ 4] [0320] +15:51:36 [ 18] [ 4] [6011] +15:51:36 [ 19] [ 3] [418] +15:51:36 [ 22] [ 3] [021] +15:51:36 [ 32] [ 6] [180893] +15:51:36 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:51:36 [ 37] [ 12] [507908270155] +15:51:36 [ 39] [ 2] [14] +15:51:36 [ 41] [ 8] [0361BLTB] +15:51:36 [ 49] [ 3] [418] +15:51:36 ============================================================================ +15:51:36 Sending to : +15:51:36 ============================================================================ +15:51:36 + + +waiting on router queue for slot.... +15:51:37 ============================================================================ +15:51:37 Slot Id : <489> +15:51:37 Transaction Type : RESPONSE +15:51:37 Received From : +15:51:37 ============================================================================ +15:51:37 FNo. Len. Field Value +15:51:37 ============================================================================ +15:51:37 [ 1] [ 4] [0210] +15:51:37 [ 2] [ 16] [6688990107556506] +15:51:37 [ 3] [ 6] [301000] +15:51:37 [ 4] [ 12] [000000000000] +15:51:37 [ 7] [ 10] [0320085042] +15:51:37 [ 11] [ 6] [270155] +15:51:37 [ 12] [ 6] [155042] +15:51:37 [ 13] [ 4] [0320] +15:51:37 [ 15] [ 4] [0320] +15:51:37 [ 18] [ 4] [6011] +15:51:37 [ 19] [ 3] [418] +15:51:37 [ 22] [ 3] [021] +15:51:37 [ 32] [ 6] [180893] +15:51:37 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:51:37 [ 37] [ 12] [507908270155] +15:51:37 [ 39] [ 2] [14] +15:51:37 [ 41] [ 8] [0361BLTB] +15:51:37 [ 49] [ 3] [418] +15:51:37 ============================================================================ +15:51:37 Calculate Source COMM Id = 2 +15:51:37 ============================================================================ +15:51:37 + + +waiting on router queue for slot.... +15:51:48 ============================================================================ +15:51:48 Slot Id : <483> +15:51:48 Transaction Type : REQUEST +15:51:48 Received From : +15:51:48 ============================================================================ +15:51:48 FNo. Len. Field Value +15:51:48 ============================================================================ +15:51:48 [ 1] [ 4] [0800] +15:51:48 [ 7] [ 10] [0320085055] +15:51:48 [ 11] [ 6] [157110] +15:51:48 [ 70] [ 3] [301] +15:51:48 ============================================================================ +15:51:48 + + +waiting on router queue for slot.... +15:51:48 Sending to : +15:51:48 ============================================================================ +15:51:48 ============================================================================ +15:51:48 Slot Id : <483> +15:51:48 Transaction Type : RESPONSE +15:51:48 Received From : +15:51:48 ============================================================================ +15:51:48 FNo. Len. Field Value +15:51:48 ============================================================================ +15:51:48 [ 1] [ 4] [0810] +15:51:48 [ 7] [ 10] [0320085055] +15:51:48 [ 11] [ 6] [157110] +15:51:48 [ 39] [ 2] [00] +15:51:48 [ 70] [ 3] [301] +15:51:48 ============================================================================ +15:51:48 Calculate Source COMM Id = 2 +15:51:48 ============================================================================ +15:51:48 + + +waiting on router queue for slot.... +15:51:59 ============================================================================ +15:51:59 Slot Id : <486> +15:51:59 Transaction Type : REQUEST +15:51:59 Received From : +15:51:59 ============================================================================ +15:51:59 FNo. Len. Field Value +15:51:59 ============================================================================ +15:51:59 [ 1] [ 4] [0800] +15:51:59 [ 7] [ 10] [0320085106] +15:51:59 [ 11] [ 6] [157111] +15:51:59 [ 70] [ 3] [301] +15:51:59 ============================================================================ +15:51:59 + + +waiting on router queue for slot.... +15:51:59 Sending to : +15:51:59 ============================================================================ +15:51:59 ============================================================================ +15:51:59 Slot Id : <486> +15:51:59 Transaction Type : RESPONSE +15:51:59 Received From : +15:51:59 ============================================================================ +15:51:59 FNo. Len. Field Value +15:51:59 ============================================================================ +15:51:59 [ 1] [ 4] [0810] +15:51:59 [ 7] [ 10] [0320085106] +15:51:59 [ 11] [ 6] [157111] +15:51:59 [ 39] [ 2] [00] +15:51:59 [ 70] [ 3] [301] +15:51:59 ============================================================================ +15:51:59 Calculate Source COMM Id = 2 +15:51:59 ============================================================================ +15:51:59 + + +waiting on router queue for slot.... +15:52:06 ============================================================================ +15:52:06 Slot Id : <474> +15:52:06 Transaction Type : REQUEST +15:52:06 Received From : +15:52:06 ============================================================================ +15:52:06 FNo. Len. Field Value +15:52:06 ============================================================================ +15:52:06 [ 1] [ 4] [0200] +15:52:06 [ 2] [ 16] [6688990103285308] +15:52:06 [ 3] [ 6] [010000] +15:52:06 [ 4] [ 12] [000050000000] +15:52:06 [ 7] [ 10] [0320155201] +15:52:06 [ 11] [ 6] [789546] +15:52:06 [ 12] [ 6] [155201] +15:52:06 [ 13] [ 4] [0320] +15:52:06 [ 15] [ 4] [0320] +15:52:06 [ 18] [ 4] [6011] +15:52:06 [ 22] [ 3] [900] +15:52:06 [ 25] [ 2] [02] +15:52:06 [ 28] [ 9] [D00002000] +15:52:06 [ 32] [ 6] [621354] +15:52:06 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:52:06 [ 37] [ 12] [507903499540] +15:52:06 [ 41] [ 8] [06002200] +15:52:06 [ 42] [ 15] [NATIVE ] +15:52:06 [ 43] [ 40] [Beng Market Beng LAO] +15:52:06 [ 49] [ 3] [418] +15:52:06 [ 52] [ 16] [F0618BF005454A15] +15:52:06 ============================================================================ +15:52:06 + + +waiting on router queue for slot.... +15:52:06 Sending to : +15:52:06 ============================================================================ +15:52:06 Sending to : +15:52:06 ============================================================================ +15:52:06 ============================================================================ +15:52:06 Slot Id : <474> +15:52:06 Transaction Type : REQUEST +15:52:06 Received From : +15:52:06 ============================================================================ +15:52:06 FNo. Len. Field Value +15:52:06 ============================================================================ +15:52:06 [ 1] [ 4] [0200] +15:52:06 [ 2] [ 16] [6688990103285308] +15:52:06 [ 3] [ 6] [010000] +15:52:06 [ 4] [ 12] [000050000000] +15:52:06 [ 7] [ 10] [0320155201] +15:52:06 [ 11] [ 6] [789546] +15:52:06 [ 12] [ 6] [155201] +15:52:06 [ 13] [ 4] [0320] +15:52:06 [ 15] [ 4] [0320] +15:52:06 [ 18] [ 4] [6011] +15:52:06 [ 22] [ 3] [900] +15:52:06 [ 25] [ 2] [02] +15:52:06 [ 28] [ 9] [D00002000] +15:52:06 [ 32] [ 6] [621354] +15:52:06 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:52:06 [ 37] [ 12] [507903499540] +15:52:06 [ 41] [ 8] [06002200] +15:52:06 [ 42] [ 15] [NATIVE ] +15:52:06 [ 43] [ 40] [Beng Market Beng LAO] +15:52:06 [ 49] [ 3] [418] +15:52:06 [ 52] [ 16] [F0618BF005454A15] +15:52:06 ============================================================================ +15:52:06 + + +waiting on router queue for slot.... +15:52:06 Sending to : +15:52:06 ============================================================================ +15:52:06 ============================================================================ +15:52:06 Slot Id : <474> +15:52:06 Transaction Type : REQUEST +15:52:06 Received From : +15:52:06 ============================================================================ +15:52:06 FNo. Len. Field Value +15:52:06 ============================================================================ +15:52:06 [ 1] [ 4] [0200] +15:52:06 [ 2] [ 16] [6688990103285308] +15:52:06 [ 3] [ 6] [010000] +15:52:06 [ 4] [ 12] [000050000000] +15:52:06 [ 7] [ 10] [0320155201] +15:52:06 [ 11] [ 6] [789546] +15:52:06 [ 12] [ 6] [155201] +15:52:06 [ 13] [ 4] [0320] +15:52:06 [ 15] [ 4] [0320] +15:52:06 [ 18] [ 4] [6011] +15:52:06 [ 22] [ 3] [900] +15:52:06 [ 25] [ 2] [02] +15:52:06 [ 28] [ 9] [D00002000] +15:52:06 [ 32] [ 6] [621354] +15:52:06 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:52:06 [ 37] [ 12] [507903499540] +15:52:06 [ 41] [ 8] [06002200] +15:52:06 [ 42] [ 15] [NATIVE ] +15:52:06 [ 43] [ 40] [Beng Market Beng LAO] +15:52:06 [ 49] [ 3] [418] +15:52:06 [ 52] [ 16] [B19E3E3748DDE445] +15:52:06 ============================================================================ +15:52:06 + + +waiting on router queue for slot.... +15:52:06 Sending to : <4> +15:52:06 ============================================================================ +15:52:07 ============================================================================ +15:52:07 Slot Id : <485> +15:52:07 Transaction Type : REQUEST +15:52:07 Received From : +15:52:07 ============================================================================ +15:52:07 FNo. Len. Field Value +15:52:07 ============================================================================ +15:52:07 [ 1] [ 4] [0800] +15:52:07 [ 7] [ 10] [0320230356] +15:52:07 [ 11] [ 6] [160356] +15:52:07 [ 37] [ 12] [57916160356] +15:52:07 [ 70] [ 3] [301] +15:52:07 ============================================================================ +15:52:07 + + +waiting on router queue for slot.... +15:52:07 Sending to : +15:52:07 ============================================================================ +15:52:07 ============================================================================ +15:52:07 Slot Id : <485> +15:52:07 Transaction Type : RESPONSE +15:52:07 Received From : +15:52:07 ============================================================================ +15:52:07 FNo. Len. Field Value +15:52:07 ============================================================================ +15:52:07 [ 1] [ 4] [0810] +15:52:07 [ 7] [ 10] [0320230356] +15:52:07 [ 11] [ 6] [160356] +15:52:07 [ 37] [ 12] [579161603560] +15:52:07 [ 39] [ 2] [00] +15:52:07 [ 70] [ 3] [810] +15:52:07 ============================================================================ +15:52:07 Calculate Source COMM Id = 6 +15:52:07 ============================================================================ +15:52:07 + + +waiting on router queue for slot.... +15:52:07 ============================================================================ +15:52:07 Slot Id : <474> +15:52:07 Transaction Type : RESPONSE +15:52:07 Received From : +15:52:07 ============================================================================ +15:52:07 FNo. Len. Field Value +15:52:07 ============================================================================ +15:52:07 [ 1] [ 4] [0210] +15:52:07 [ 2] [ 16] [6688990103285308] +15:52:07 [ 3] [ 6] [010000] +15:52:07 [ 4] [ 12] [000050000000] +15:52:07 [ 11] [ 6] [789546] +15:52:07 [ 12] [ 6] [155201] +15:52:07 [ 15] [ 4] [0320] +15:52:07 [ 18] [ 4] [6011] +15:52:07 [ 32] [ 6] [621354] +15:52:07 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:52:07 [ 37] [ 12] [507903499540] +15:52:07 [ 38] [ 6] [522202] +15:52:07 [ 39] [ 2] [00] +15:52:07 [ 41] [ 8] [06002200] +15:52:07 [ 49] [ 3] [418] +15:52:07 [ 54] [ 20] [0002418C000297470443] +15:52:07 ============================================================================ +15:52:07 Sending to : +15:52:07 ============================================================================ +15:52:07 + + +waiting on router queue for slot.... +15:52:07 ============================================================================ +15:52:07 Slot Id : <472> +15:52:07 Transaction Type : REQUEST +15:52:07 Received From : +15:52:07 ============================================================================ +15:52:07 FNo. Len. Field Value +15:52:07 ============================================================================ +15:52:07 [ 1] [ 4] [0200] +15:52:07 [ 2] [ 16] [6688990106065905] +15:52:07 [ 3] [ 6] [010000] +15:52:07 [ 4] [ 12] [000010000000] +15:52:07 [ 7] [ 10] [0320155202] +15:52:07 [ 11] [ 6] [789552] +15:52:07 [ 12] [ 6] [155202] +15:52:07 [ 13] [ 4] [0320] +15:52:07 [ 15] [ 4] [0320] +15:52:07 [ 18] [ 4] [6011] +15:52:07 [ 22] [ 3] [900] +15:52:07 [ 25] [ 2] [02] +15:52:07 [ 28] [ 9] [D00002000] +15:52:07 [ 32] [ 6] [621354] +15:52:07 [ 35] [ 37] [6688990106065905=43111231590592500000] +15:52:07 [ 37] [ 12] [507902916603] +15:52:07 [ 41] [ 8] [12001400] +15:52:07 [ 42] [ 15] [NATIVE ] +15:52:07 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:52:07 [ 49] [ 3] [418] +15:52:07 [ 52] [ 16] [104006845855AB5C] +15:52:07 ============================================================================ +15:52:07 + + +waiting on router queue for slot.... +15:52:07 Sending to : +15:52:07 ============================================================================ +15:52:07 Sending to : +15:52:07 ============================================================================ +15:52:08 ============================================================================ +15:52:08 Slot Id : <472> +15:52:08 Transaction Type : REQUEST +15:52:08 Received From : +15:52:08 ============================================================================ +15:52:08 FNo. Len. Field Value +15:52:08 ============================================================================ +15:52:08 [ 1] [ 4] [0200] +15:52:08 [ 2] [ 16] [6688990106065905] +15:52:08 [ 3] [ 6] [010000] +15:52:08 [ 4] [ 12] [000010000000] +15:52:08 [ 7] [ 10] [0320155202] +15:52:08 [ 11] [ 6] [789552] +15:52:08 [ 12] [ 6] [155202] +15:52:08 [ 13] [ 4] [0320] +15:52:08 [ 15] [ 4] [0320] +15:52:08 [ 18] [ 4] [6011] +15:52:08 [ 22] [ 3] [900] +15:52:08 [ 25] [ 2] [02] +15:52:08 [ 28] [ 9] [D00002000] +15:52:08 [ 32] [ 6] [621354] +15:52:08 [ 35] [ 37] [6688990106065905=43111231590592500000] +15:52:08 [ 37] [ 12] [507902916603] +15:52:08 [ 41] [ 8] [12001400] +15:52:08 [ 42] [ 15] [NATIVE ] +15:52:08 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:52:08 [ 49] [ 3] [418] +15:52:08 [ 52] [ 16] [104006845855AB5C] +15:52:08 ============================================================================ +15:52:08 + + +waiting on router queue for slot.... +15:52:08 Sending to : +15:52:08 ============================================================================ +15:52:08 ============================================================================ +15:52:08 Slot Id : <472> +15:52:08 Transaction Type : REQUEST +15:52:08 Received From : +15:52:08 ============================================================================ +15:52:08 FNo. Len. Field Value +15:52:08 ============================================================================ +15:52:08 [ 1] [ 4] [0200] +15:52:08 [ 2] [ 16] [6688990106065905] +15:52:08 [ 3] [ 6] [010000] +15:52:08 [ 4] [ 12] [000010000000] +15:52:08 [ 7] [ 10] [0320155202] +15:52:08 [ 11] [ 6] [789552] +15:52:08 [ 12] [ 6] [155202] +15:52:08 [ 13] [ 4] [0320] +15:52:08 [ 15] [ 4] [0320] +15:52:08 [ 18] [ 4] [6011] +15:52:08 [ 22] [ 3] [900] +15:52:08 [ 25] [ 2] [02] +15:52:08 [ 28] [ 9] [D00002000] +15:52:08 [ 32] [ 6] [621354] +15:52:08 [ 35] [ 37] [6688990106065905=43111231590592500000] +15:52:08 [ 37] [ 12] [507902916603] +15:52:08 [ 41] [ 8] [12001400] +15:52:08 [ 42] [ 15] [NATIVE ] +15:52:08 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:52:08 [ 49] [ 3] [418] +15:52:08 [ 52] [ 16] [4EB602F369923C17] +15:52:08 ============================================================================ +15:52:08 + + +waiting on router queue for slot.... +15:52:08 Sending to : <4> +15:52:08 ============================================================================ +15:52:08 ============================================================================ +15:52:08 Slot Id : <472> +15:52:08 Transaction Type : RESPONSE +15:52:08 Received From : +15:52:08 ============================================================================ +15:52:08 FNo. Len. Field Value +15:52:08 ============================================================================ +15:52:08 [ 1] [ 4] [0210] +15:52:08 [ 2] [ 16] [6688990106065905] +15:52:08 [ 3] [ 6] [010000] +15:52:08 [ 4] [ 12] [000010000000] +15:52:08 [ 7] [ 10] [0320155202] +15:52:08 [ 11] [ 6] [789552] +15:52:08 [ 12] [ 6] [155202] +15:52:08 [ 13] [ 4] [0320] +15:52:08 [ 15] [ 4] [0320] +15:52:08 [ 18] [ 4] [6011] +15:52:08 [ 22] [ 3] [021] +15:52:08 [ 32] [ 6] [621354] +15:52:08 [ 35] [ 37] [6688990106065905=43111231590592500000] +15:52:08 [ 37] [ 12] [507902916603] +15:52:08 [ 38] [ 6] [154958] +15:52:08 [ 39] [ 2] [55] +15:52:08 [ 41] [ 8] [12001400] +15:52:08 [ 49] [ 3] [418] +15:52:08 ============================================================================ +15:52:08 Sending to : +15:52:08 ============================================================================ +15:52:08 + + +waiting on router queue for slot.... +15:52:09 ============================================================================ +15:52:09 Slot Id : <474> +15:52:09 Transaction Type : RESPONSE +15:52:09 Received From : +15:52:09 ============================================================================ +15:52:09 FNo. Len. Field Value +15:52:09 ============================================================================ +15:52:09 [ 1] [ 4] [0210] +15:52:09 [ 2] [ 16] [6688990103285308] +15:52:09 [ 3] [ 6] [010000] +15:52:09 [ 4] [ 12] [000050000000] +15:52:09 [ 11] [ 6] [789546] +15:52:09 [ 12] [ 6] [155201] +15:52:09 [ 15] [ 4] [0320] +15:52:09 [ 18] [ 4] [6011] +15:52:09 [ 32] [ 6] [621354] +15:52:09 [ 35] [ 37] [6688990103285308=42121231530862200000] +15:52:09 [ 37] [ 12] [507903499540] +15:52:09 [ 38] [ 6] [522202] +15:52:09 [ 39] [ 2] [00] +15:52:09 [ 41] [ 8] [06002200] +15:52:09 [ 49] [ 3] [418] +15:52:09 [ 54] [ 20] [0002418C000297470443] +15:52:09 ============================================================================ +15:52:09 Calculate Source COMM Id = 0 +15:52:09 ============================================================================ +15:52:09 + + +waiting on router queue for slot.... +15:52:10 ============================================================================ +15:52:10 Slot Id : <14> +15:52:10 Transaction Type : REQUEST +15:52:10 Received From : +15:52:10 ============================================================================ +15:52:10 FNo. Len. Field Value +15:52:10 ============================================================================ +15:52:10 [ 1] [ 4] [0800] +15:52:10 [ 7] [ 10] [0320085117] +15:52:10 [ 11] [ 6] [157112] +15:52:10 [ 70] [ 3] [301] +15:52:10 ============================================================================ +15:52:10 + + +waiting on router queue for slot.... +15:52:10 Sending to : +15:52:10 ============================================================================ +15:52:10 ============================================================================ +15:52:10 Slot Id : <14> +15:52:10 Transaction Type : RESPONSE +15:52:10 Received From : +15:52:10 ============================================================================ +15:52:10 FNo. Len. Field Value +15:52:10 ============================================================================ +15:52:10 [ 1] [ 4] [0810] +15:52:10 [ 7] [ 10] [0320085117] +15:52:10 [ 11] [ 6] [157112] +15:52:10 [ 39] [ 2] [00] +15:52:10 [ 70] [ 3] [301] +15:52:10 ============================================================================ +15:52:10 Calculate Source COMM Id = 2 +15:52:10 ============================================================================ +15:52:10 + + +waiting on router queue for slot.... +15:52:10 ============================================================================ +15:52:10 Slot Id : <472> +15:52:10 Transaction Type : RESPONSE +15:52:10 Received From : +15:52:10 ============================================================================ +15:52:10 FNo. Len. Field Value +15:52:10 ============================================================================ +15:52:10 [ 1] [ 4] [0210] +15:52:10 [ 2] [ 16] [6688990106065905] +15:52:10 [ 3] [ 6] [010000] +15:52:10 [ 4] [ 12] [000010000000] +15:52:10 [ 7] [ 10] [0320155202] +15:52:10 [ 11] [ 6] [789552] +15:52:10 [ 12] [ 6] [155202] +15:52:10 [ 13] [ 4] [0320] +15:52:10 [ 15] [ 4] [0320] +15:52:10 [ 18] [ 4] [6011] +15:52:10 [ 22] [ 3] [021] +15:52:10 [ 32] [ 6] [621354] +15:52:10 [ 35] [ 37] [6688990106065905=43111231590592500000] +15:52:10 [ 37] [ 12] [507902916603] +15:52:10 [ 38] [ 6] [154958] +15:52:10 [ 39] [ 2] [55] +15:52:10 [ 41] [ 8] [12001400] +15:52:10 [ 49] [ 3] [418] +15:52:10 ============================================================================ +15:52:10 Calculate Source COMM Id = 0 +15:52:10 ============================================================================ +15:52:10 + + +waiting on router queue for slot.... +15:52:10 ============================================================================ +15:52:10 Slot Id : <6> +15:52:10 Transaction Type : REQUEST +15:52:10 Received From : +15:52:10 ============================================================================ +15:52:10 FNo. Len. Field Value +15:52:10 ============================================================================ +15:52:10 [ 1] [ 4] [0200] +15:52:10 [ 2] [ 16] [1888880000030916] +15:52:10 [ 3] [ 6] [301000] +15:52:10 [ 4] [ 12] [000000000000] +15:52:10 [ 7] [ 10] [0320155205] +15:52:10 [ 11] [ 6] [789556] +15:52:10 [ 12] [ 6] [155205] +15:52:10 [ 13] [ 4] [0320] +15:52:10 [ 15] [ 4] [0320] +15:52:10 [ 18] [ 4] [6011] +15:52:10 [ 22] [ 3] [900] +15:52:10 [ 25] [ 2] [02] +15:52:10 [ 28] [ 9] [D00000000] +15:52:10 [ 32] [ 6] [621354] +15:52:10 [ 35] [ 32] [1888880000030916=000010100000216] +15:52:10 [ 37] [ 12] [507904755424] +15:52:10 [ 41] [ 8] [07001100] +15:52:10 [ 42] [ 15] [NATIVE ] +15:52:10 [ 43] [ 40] [Industry Market Namtar LAO] +15:52:10 [ 49] [ 3] [418] +15:52:10 [ 52] [ 16] [0F5DC7631A8C25FC] +15:52:10 ============================================================================ +15:52:10 + + +waiting on router queue for slot.... +15:52:10 Sending to : +15:52:10 ============================================================================ +15:52:10 Sending to : +15:52:10 ============================================================================ +15:52:10 ============================================================================ +15:52:10 Slot Id : <6> +15:52:10 Transaction Type : REQUEST +15:52:10 Received From : +15:52:10 ============================================================================ +15:52:10 FNo. Len. Field Value +15:52:10 ============================================================================ +15:52:10 [ 1] [ 4] [0200] +15:52:10 [ 2] [ 16] [1888880000030916] +15:52:10 [ 3] [ 6] [301000] +15:52:10 [ 4] [ 12] [000000000000] +15:52:10 [ 7] [ 10] [0320155205] +15:52:10 [ 11] [ 6] [789556] +15:52:10 [ 12] [ 6] [155205] +15:52:10 [ 13] [ 4] [0320] +15:52:10 [ 15] [ 4] [0320] +15:52:10 [ 18] [ 4] [6011] +15:52:10 [ 22] [ 3] [900] +15:52:10 [ 25] [ 2] [02] +15:52:10 [ 28] [ 9] [D00000000] +15:52:10 [ 32] [ 6] [621354] +15:52:10 [ 35] [ 32] [1888880000030916=000010100000216] +15:52:10 [ 37] [ 12] [507904755424] +15:52:10 [ 41] [ 8] [07001100] +15:52:10 [ 42] [ 15] [NATIVE ] +15:52:10 [ 43] [ 40] [Industry Market Namtar LAO] +15:52:10 [ 49] [ 3] [418] +15:52:10 [ 52] [ 16] [0F5DC7631A8C25FC] +15:52:10 ============================================================================ +15:52:10 + + +waiting on router queue for slot.... +15:52:10 Sending to : +15:52:10 ============================================================================ +15:52:10 ============================================================================ +15:52:10 Slot Id : <6> +15:52:10 Transaction Type : REQUEST +15:52:10 Received From : +15:52:10 ============================================================================ +15:52:10 FNo. Len. Field Value +15:52:10 ============================================================================ +15:52:10 [ 1] [ 4] [0200] +15:52:10 [ 2] [ 16] [1888880000030916] +15:52:10 [ 3] [ 6] [301000] +15:52:10 [ 4] [ 12] [000000000000] +15:52:10 [ 7] [ 10] [0320155205] +15:52:10 [ 11] [ 6] [789556] +15:52:10 [ 12] [ 6] [155205] +15:52:10 [ 13] [ 4] [0320] +15:52:10 [ 15] [ 4] [0320] +15:52:10 [ 18] [ 4] [6011] +15:52:10 [ 22] [ 3] [900] +15:52:10 [ 25] [ 2] [02] +15:52:10 [ 28] [ 9] [D00000000] +15:52:10 [ 32] [ 6] [621354] +15:52:10 [ 35] [ 32] [1888880000030916=000010100000216] +15:52:10 [ 37] [ 12] [507904755424] +15:52:10 [ 41] [ 8] [07001100] +15:52:10 [ 42] [ 15] [NATIVE ] +15:52:10 [ 43] [ 40] [Industry Market Namtar LAO] +15:52:10 [ 49] [ 3] [418] +15:52:10 [ 52] [ 16] [88FB6D0C415F6DD1] +15:52:10 ============================================================================ +15:52:10 + + +waiting on router queue for slot.... +15:52:10 Sending to : <5> +15:52:10 ============================================================================ +15:52:14 ============================================================================ +15:52:14 Slot Id : <6> +15:52:14 Transaction Type : RESPONSE +15:52:14 Received From : +15:52:14 ============================================================================ +15:52:14 FNo. Len. Field Value +15:52:14 ============================================================================ +15:52:14 [ 1] [ 4] [0210] +15:52:14 [ 2] [ 16] [1888880000030916] +15:52:14 [ 3] [ 6] [301000] +15:52:14 [ 4] [ 12] [000000000000] +15:52:14 [ 7] [ 10] [0320155205] +15:52:14 [ 11] [ 6] [789556] +15:52:14 [ 12] [ 6] [155205] +15:52:14 [ 13] [ 4] [0320] +15:52:14 [ 15] [ 4] [0320] +15:52:14 [ 18] [ 4] [6011] +15:52:14 [ 19] [ 3] [418] +15:52:14 [ 32] [ 6] [621354] +15:52:14 [ 37] [ 12] [507904755424] +15:52:14 [ 38] [ 6] [178021] +15:52:14 [ 39] [ 2] [00] +15:52:14 [ 41] [ 8] [07001100] +15:52:14 [ 49] [ 3] [418] +15:52:14 [ 54] [ 20] [1001418C000022000000] +15:52:14 ============================================================================ +15:52:14 Sending to : +15:52:14 ============================================================================ +15:52:14 + + +waiting on router queue for slot.... +15:52:15 ============================================================================ +15:52:15 Slot Id : <6> +15:52:15 Transaction Type : RESPONSE +15:52:15 Received From : +15:52:15 ============================================================================ +15:52:15 FNo. Len. Field Value +15:52:15 ============================================================================ +15:52:15 [ 1] [ 4] [0210] +15:52:15 [ 2] [ 16] [1888880000030916] +15:52:15 [ 3] [ 6] [301000] +15:52:15 [ 4] [ 12] [000000000000] +15:52:15 [ 7] [ 10] [0320155205] +15:52:15 [ 11] [ 6] [789556] +15:52:15 [ 12] [ 6] [155205] +15:52:15 [ 13] [ 4] [0320] +15:52:15 [ 15] [ 4] [0320] +15:52:15 [ 18] [ 4] [6011] +15:52:15 [ 19] [ 3] [418] +15:52:15 [ 32] [ 6] [621354] +15:52:15 [ 37] [ 12] [507904755424] +15:52:15 [ 38] [ 6] [178021] +15:52:15 [ 39] [ 2] [00] +15:52:15 [ 41] [ 8] [07001100] +15:52:15 [ 49] [ 3] [418] +15:52:15 [ 54] [ 20] [1001418C000022000000] +15:52:15 ============================================================================ +15:52:15 Calculate Source COMM Id = 0 +15:52:15 ============================================================================ +15:52:15 + + +waiting on router queue for slot.... +15:52:21 ============================================================================ +15:52:21 Slot Id : <16> +15:52:21 Transaction Type : REQUEST +15:52:21 Received From : +15:52:21 ============================================================================ +15:52:21 FNo. Len. Field Value +15:52:21 ============================================================================ +15:52:21 [ 1] [ 4] [0800] +15:52:21 [ 2] [ 5] [02531] +15:52:21 [ 3] [ 6] [579158] +15:52:21 [ 7] [ 10] [0320085221] +15:52:21 [ 11] [ 6] [807333] +15:52:21 [ 15] [ 10] [0320085221] +15:52:21 [ 37] [ 11] [57915807333] +15:52:21 [ 70] [ 3] [001] +15:52:21 ============================================================================ +15:52:21 + + +waiting on router queue for slot.... +15:52:21 ============================================================================ +15:52:21 Slot Id : <16> +15:52:21 Transaction Type : RESPONSE +15:52:21 Received From : +15:52:21 ============================================================================ +15:52:21 FNo. Len. Field Value +15:52:21 ============================================================================ +15:52:21 [ 1] [ 4] [0810] +15:52:21 [ 7] [ 10] [0320085221] +15:52:21 [ 11] [ 6] [807333] +15:52:21 [ 15] [ 4] [0320] +15:52:21 [ 37] [ 12] [57915807333] +15:52:21 [ 39] [ 2] [00] +15:52:21 [ 70] [ 3] [001] +15:52:21 ============================================================================ +15:52:21 Sending to : +15:52:21 ============================================================================ +15:52:21 + + +waiting on router queue for slot.... +15:52:25 ============================================================================ +15:52:25 Slot Id : <492> +15:52:25 Transaction Type : REQUEST +15:52:25 Received From : +15:52:25 ============================================================================ +15:52:25 FNo. Len. Field Value +15:52:25 ============================================================================ +15:52:25 [ 1] [ 4] [0800] +15:52:25 [ 7] [ 10] [0320085132] +15:52:25 [ 11] [ 6] [157113] +15:52:25 [ 70] [ 3] [301] +15:52:25 ============================================================================ +15:52:25 + + +waiting on router queue for slot.... +15:52:25 Sending to : +15:52:25 ============================================================================ +15:52:25 ============================================================================ +15:52:25 Slot Id : <492> +15:52:25 Transaction Type : RESPONSE +15:52:25 Received From : +15:52:25 ============================================================================ +15:52:25 FNo. Len. Field Value +15:52:25 ============================================================================ +15:52:25 [ 1] [ 4] [0810] +15:52:25 [ 7] [ 10] [0320085132] +15:52:25 [ 11] [ 6] [157113] +15:52:25 [ 39] [ 2] [00] +15:52:25 [ 70] [ 3] [301] +15:52:25 ============================================================================ +15:52:25 Calculate Source COMM Id = 2 +15:52:25 ============================================================================ +15:52:25 + + +waiting on router queue for slot.... +15:52:25 ============================================================================ +15:52:25 Slot Id : <454> +15:52:25 Transaction Type : REQUEST +15:52:25 Received From : +15:52:25 ============================================================================ +15:52:25 FNo. Len. Field Value +15:52:25 ============================================================================ +15:52:25 [ 1] [ 4] [0200] +15:52:25 [ 2] [ 16] [6688990106065905] +15:52:25 [ 3] [ 6] [010000] +15:52:25 [ 4] [ 12] [000010000000] +15:52:25 [ 7] [ 10] [0320155221] +15:52:25 [ 11] [ 6] [789625] +15:52:25 [ 12] [ 6] [155221] +15:52:25 [ 13] [ 4] [0320] +15:52:25 [ 15] [ 4] [0320] +15:52:25 [ 18] [ 4] [6011] +15:52:25 [ 22] [ 3] [900] +15:52:25 [ 25] [ 2] [02] +15:52:25 [ 28] [ 9] [D00002000] +15:52:25 [ 32] [ 6] [621354] +15:52:25 [ 35] [ 37] [6688990106065905=43111231590592500000] +15:52:25 [ 37] [ 12] [507902916605] +15:52:25 [ 41] [ 8] [12001400] +15:52:25 [ 42] [ 15] [NATIVE ] +15:52:25 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:52:25 [ 49] [ 3] [418] +15:52:25 [ 52] [ 16] [38B7BED92158B2C5] +15:52:25 ============================================================================ +15:52:25 + + +waiting on router queue for slot.... +15:52:25 Sending to : +15:52:25 ============================================================================ +15:52:25 Sending to : +15:52:25 ============================================================================ +15:52:26 ============================================================================ +15:52:26 Slot Id : <454> +15:52:26 Transaction Type : REQUEST +15:52:26 Received From : +15:52:26 ============================================================================ +15:52:26 FNo. Len. Field Value +15:52:26 ============================================================================ +15:52:26 [ 1] [ 4] [0200] +15:52:26 [ 2] [ 16] [6688990106065905] +15:52:26 [ 3] [ 6] [010000] +15:52:26 [ 4] [ 12] [000010000000] +15:52:26 [ 7] [ 10] [0320155221] +15:52:26 [ 11] [ 6] [789625] +15:52:26 [ 12] [ 6] [155221] +15:52:26 [ 13] [ 4] [0320] +15:52:26 [ 15] [ 4] [0320] +15:52:26 [ 18] [ 4] [6011] +15:52:26 [ 22] [ 3] [900] +15:52:26 [ 25] [ 2] [02] +15:52:26 [ 28] [ 9] [D00002000] +15:52:26 [ 32] [ 6] [621354] +15:52:26 [ 35] [ 37] [6688990106065905=43111231590592500000] +15:52:26 [ 37] [ 12] [507902916605] +15:52:26 [ 41] [ 8] [12001400] +15:52:26 [ 42] [ 15] [NATIVE ] +15:52:26 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:52:26 [ 49] [ 3] [418] +15:52:26 [ 52] [ 16] [38B7BED92158B2C5] +15:52:26 ============================================================================ +15:52:26 + + +waiting on router queue for slot.... +15:52:26 Sending to : +15:52:26 ============================================================================ +15:52:26 ============================================================================ +15:52:26 Slot Id : <454> +15:52:26 Transaction Type : REQUEST +15:52:26 Received From : +15:52:26 ============================================================================ +15:52:26 FNo. Len. Field Value +15:52:26 ============================================================================ +15:52:26 [ 1] [ 4] [0200] +15:52:26 [ 2] [ 16] [6688990106065905] +15:52:26 [ 3] [ 6] [010000] +15:52:26 [ 4] [ 12] [000010000000] +15:52:26 [ 7] [ 10] [0320155221] +15:52:26 [ 11] [ 6] [789625] +15:52:26 [ 12] [ 6] [155221] +15:52:26 [ 13] [ 4] [0320] +15:52:26 [ 15] [ 4] [0320] +15:52:26 [ 18] [ 4] [6011] +15:52:26 [ 22] [ 3] [900] +15:52:26 [ 25] [ 2] [02] +15:52:26 [ 28] [ 9] [D00002000] +15:52:26 [ 32] [ 6] [621354] +15:52:26 [ 35] [ 37] [6688990106065905=43111231590592500000] +15:52:26 [ 37] [ 12] [507902916605] +15:52:26 [ 41] [ 8] [12001400] +15:52:26 [ 42] [ 15] [NATIVE ] +15:52:26 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +15:52:26 [ 49] [ 3] [418] +15:52:26 [ 52] [ 16] [8F5C992DC36B6D84] +15:52:26 ============================================================================ +15:52:26 + + +waiting on router queue for slot.... +15:52:26 Sending to : <4> +15:52:26 ============================================================================ +15:52:27 ============================================================================ +15:52:27 Slot Id : <454> +15:52:27 Transaction Type : RESPONSE +15:52:27 Received From : +15:52:27 ============================================================================ +15:52:27 FNo. Len. Field Value +15:52:27 ============================================================================ +15:52:27 [ 1] [ 4] [0210] +15:52:27 [ 2] [ 16] [6688990106065905] +15:52:27 [ 3] [ 6] [010000] +15:52:27 [ 4] [ 12] [000010000000] +15:52:27 [ 11] [ 6] [789625] +15:52:27 [ 12] [ 6] [155221] +15:52:27 [ 15] [ 4] [0320] +15:52:27 [ 18] [ 4] [6011] +15:52:27 [ 32] [ 6] [621354] +15:52:27 [ 35] [ 37] [6688990106065905=43111231590592500000] +15:52:27 [ 37] [ 12] [507902916605] +15:52:27 [ 38] [ 6] [306064] +15:52:27 [ 39] [ 2] [00] +15:52:27 [ 41] [ 8] [12001400] +15:52:27 [ 49] [ 3] [418] +15:52:27 [ 54] [ 20] [0002418C000128198436] +15:52:27 ============================================================================ +15:52:27 Sending to : +15:52:27 ============================================================================ +15:52:27 + + +waiting on router queue for slot.... +15:52:27 ============================================================================ +15:52:27 Slot Id : <13> +15:52:27 Transaction Type : REQUEST +15:52:27 Received From : +15:52:27 ============================================================================ +15:52:27 FNo. Len. Field Value +15:52:27 ============================================================================ +15:52:27 [ 1] [ 4] [0200] +15:52:27 [ 2] [ 16] [6688990040109553] +15:52:27 [ 3] [ 6] [302000] +15:52:27 [ 7] [ 10] [0320085134] +15:52:27 [ 11] [ 6] [270160] +15:52:27 [ 12] [ 6] [155134] +15:52:27 [ 13] [ 4] [0320] +15:52:27 [ 14] [ 4] [9803] +15:52:27 [ 15] [ 4] [0320] +15:52:27 [ 18] [ 4] [6011] +15:52:27 [ 19] [ 3] [418] +15:52:27 [ 22] [ 3] [021] +15:52:27 [ 25] [ 2] [01] +15:52:27 [ 32] [ 6] [180893] +15:52:27 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:52:27 [ 37] [ 12] [507908270160] +15:52:27 [ 41] [ 8] [0263UDXB] +15:52:27 [ 42] [ 15] [999999 ] +15:52:27 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:52:27 [ 49] [ 3] [418] +15:52:27 [ 52] [ 16] [658E4156A4E888B3] +15:52:27 ============================================================================ +15:52:27 + + +waiting on router queue for slot.... +15:52:27 Sending to : +15:52:27 ============================================================================ +15:52:27 Sending to : +15:52:27 ============================================================================ +15:52:28 ============================================================================ +15:52:28 Slot Id : <13> +15:52:28 Transaction Type : REQUEST +15:52:28 Received From : +15:52:28 ============================================================================ +15:52:28 FNo. Len. Field Value +15:52:28 ============================================================================ +15:52:28 [ 1] [ 4] [0200] +15:52:28 [ 2] [ 16] [6688990040109553] +15:52:28 [ 3] [ 6] [302000] +15:52:28 [ 7] [ 10] [0320085134] +15:52:28 [ 11] [ 6] [270160] +15:52:28 [ 12] [ 6] [155134] +15:52:28 [ 13] [ 4] [0320] +15:52:28 [ 14] [ 4] [9803] +15:52:28 [ 15] [ 4] [0320] +15:52:28 [ 18] [ 4] [6011] +15:52:28 [ 19] [ 3] [418] +15:52:28 [ 22] [ 3] [021] +15:52:28 [ 25] [ 2] [01] +15:52:28 [ 32] [ 6] [180893] +15:52:28 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:52:28 [ 37] [ 12] [507908270160] +15:52:28 [ 41] [ 8] [0263UDXB] +15:52:28 [ 42] [ 15] [999999 ] +15:52:28 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:52:28 [ 49] [ 3] [418] +15:52:28 [ 52] [ 16] [658E4156A4E888B3] +15:52:28 ============================================================================ +15:52:28 + + +waiting on router queue for slot.... +15:52:28 Sending to : +15:52:28 ============================================================================ +15:52:28 ============================================================================ +15:52:28 Slot Id : <13> +15:52:28 Transaction Type : REQUEST +15:52:28 Received From : +15:52:28 ============================================================================ +15:52:28 FNo. Len. Field Value +15:52:28 ============================================================================ +15:52:28 [ 1] [ 4] [0200] +15:52:28 [ 2] [ 16] [6688990040109553] +15:52:28 [ 3] [ 6] [302000] +15:52:28 [ 7] [ 10] [0320085134] +15:52:28 [ 11] [ 6] [270160] +15:52:28 [ 12] [ 6] [155134] +15:52:28 [ 13] [ 4] [0320] +15:52:28 [ 14] [ 4] [9803] +15:52:28 [ 15] [ 4] [0320] +15:52:28 [ 18] [ 4] [6011] +15:52:28 [ 19] [ 3] [418] +15:52:28 [ 22] [ 3] [021] +15:52:28 [ 25] [ 2] [01] +15:52:28 [ 32] [ 6] [180893] +15:52:28 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:52:28 [ 37] [ 12] [507908270160] +15:52:28 [ 41] [ 8] [0263UDXB] +15:52:28 [ 42] [ 15] [999999 ] +15:52:28 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:52:28 [ 49] [ 3] [418] +15:52:28 [ 52] [ 16] [CA9208157F6BA217] +15:52:28 ============================================================================ +15:52:28 + + +waiting on router queue for slot.... +15:52:28 Sending to : <0> +15:52:28 ============================================================================ +15:52:28 ============================================================================ +15:52:28 Slot Id : <13> +15:52:28 Transaction Type : RESPONSE +15:52:28 Received From : +15:52:28 ============================================================================ +15:52:28 FNo. Len. Field Value +15:52:28 ============================================================================ +15:52:28 [ 1] [ 4] [0210] +15:52:28 [ 2] [ 16] [6688990040109553] +15:52:28 [ 3] [ 6] [302000] +15:52:28 [ 4] [ 12] [000000000000] +15:52:28 [ 7] [ 10] [0320085134] +15:52:28 [ 11] [ 6] [270160] +15:52:28 [ 12] [ 6] [155134] +15:52:28 [ 13] [ 4] [0320] +15:52:28 [ 15] [ 4] [0320] +15:52:28 [ 18] [ 4] [6011] +15:52:28 [ 19] [ 3] [418] +15:52:28 [ 22] [ 3] [021] +15:52:28 [ 32] [ 6] [180893] +15:52:28 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:52:28 [ 37] [ 12] [507908270160] +15:52:28 [ 39] [ 2] [14] +15:52:28 [ 41] [ 8] [0263UDXB] +15:52:28 [ 49] [ 3] [418] +15:52:28 ============================================================================ +15:52:28 Sending to : +15:52:28 ============================================================================ +15:52:28 + + +waiting on router queue for slot.... +15:52:28 ============================================================================ +15:52:28 Slot Id : <454> +15:52:28 Transaction Type : RESPONSE +15:52:28 Received From : +15:52:28 ============================================================================ +15:52:28 FNo. Len. Field Value +15:52:28 ============================================================================ +15:52:28 [ 1] [ 4] [0210] +15:52:28 [ 2] [ 16] [6688990106065905] +15:52:28 [ 3] [ 6] [010000] +15:52:28 [ 4] [ 12] [000010000000] +15:52:28 [ 11] [ 6] [789625] +15:52:28 [ 12] [ 6] [155221] +15:52:28 [ 15] [ 4] [0320] +15:52:28 [ 18] [ 4] [6011] +15:52:28 [ 32] [ 6] [621354] +15:52:28 [ 35] [ 37] [6688990106065905=43111231590592500000] +15:52:28 [ 37] [ 12] [507902916605] +15:52:28 [ 38] [ 6] [306064] +15:52:28 [ 39] [ 2] [00] +15:52:28 [ 41] [ 8] [12001400] +15:52:28 [ 49] [ 3] [418] +15:52:28 [ 54] [ 20] [0002418C000128198436] +15:52:28 ============================================================================ +15:52:28 Calculate Source COMM Id = 0 +15:52:28 ============================================================================ +15:52:28 + + +waiting on router queue for slot.... +15:52:30 ============================================================================ +15:52:30 Slot Id : <13> +15:52:30 Transaction Type : RESPONSE +15:52:30 Received From : +15:52:30 ============================================================================ +15:52:30 FNo. Len. Field Value +15:52:30 ============================================================================ +15:52:30 [ 1] [ 4] [0210] +15:52:30 [ 2] [ 16] [6688990040109553] +15:52:30 [ 3] [ 6] [302000] +15:52:30 [ 4] [ 12] [000000000000] +15:52:30 [ 7] [ 10] [0320085134] +15:52:30 [ 11] [ 6] [270160] +15:52:30 [ 12] [ 6] [155134] +15:52:30 [ 13] [ 4] [0320] +15:52:30 [ 15] [ 4] [0320] +15:52:30 [ 18] [ 4] [6011] +15:52:30 [ 19] [ 3] [418] +15:52:30 [ 22] [ 3] [021] +15:52:30 [ 32] [ 6] [180893] +15:52:30 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:52:30 [ 37] [ 12] [507908270160] +15:52:30 [ 39] [ 2] [14] +15:52:30 [ 41] [ 8] [0263UDXB] +15:52:30 [ 49] [ 3] [418] +15:52:30 ============================================================================ +15:52:30 Calculate Source COMM Id = 2 +15:52:30 ============================================================================ +15:52:30 + + +waiting on router queue for slot.... +15:52:41 ============================================================================ +15:52:41 Slot Id : <12> +15:52:41 Transaction Type : REQUEST +15:52:41 Received From : +15:52:41 ============================================================================ +15:52:41 FNo. Len. Field Value +15:52:41 ============================================================================ +15:52:41 [ 1] [ 4] [0800] +15:52:41 [ 7] [ 10] [0320085149] +15:52:41 [ 11] [ 6] [157114] +15:52:41 [ 70] [ 3] [301] +15:52:41 ============================================================================ +15:52:41 + + +waiting on router queue for slot.... +15:52:41 Sending to : +15:52:41 ============================================================================ +15:52:41 ============================================================================ +15:52:41 Slot Id : <12> +15:52:41 Transaction Type : RESPONSE +15:52:41 Received From : +15:52:41 ============================================================================ +15:52:41 FNo. Len. Field Value +15:52:41 ============================================================================ +15:52:41 [ 1] [ 4] [0810] +15:52:41 [ 7] [ 10] [0320085149] +15:52:41 [ 11] [ 6] [157114] +15:52:41 [ 39] [ 2] [00] +15:52:41 [ 70] [ 3] [301] +15:52:41 ============================================================================ +15:52:41 Calculate Source COMM Id = 2 +15:52:41 ============================================================================ +15:52:41 + + +waiting on router queue for slot.... +15:52:46 ============================================================================ +15:52:46 Slot Id : <22> +15:52:46 Transaction Type : REQUEST +15:52:46 Received From : +15:52:46 ============================================================================ +15:52:46 FNo. Len. Field Value +15:52:46 ============================================================================ +15:52:46 [ 1] [ 4] [0200] +15:52:46 [ 2] [ 16] [6688990107556506] +15:52:46 [ 3] [ 6] [010000] +15:52:46 [ 4] [ 12] [000050000000] +15:52:46 [ 7] [ 10] [0320085153] +15:52:46 [ 11] [ 6] [270163] +15:52:46 [ 12] [ 6] [155153] +15:52:46 [ 13] [ 4] [0320] +15:52:46 [ 14] [ 4] [4403] +15:52:46 [ 15] [ 4] [0320] +15:52:46 [ 18] [ 4] [6011] +15:52:46 [ 19] [ 3] [418] +15:52:46 [ 22] [ 3] [021] +15:52:46 [ 25] [ 2] [01] +15:52:46 [ 28] [ 9] [D00002000] +15:52:46 [ 32] [ 6] [180893] +15:52:46 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:52:46 [ 37] [ 12] [507908270163] +15:52:46 [ 41] [ 8] [0361BLTB] +15:52:46 [ 42] [ 15] [999999 ] +15:52:46 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +15:52:46 [ 49] [ 3] [418] +15:52:46 [ 52] [ 16] [4C5095EF3527D44F] +15:52:46 ============================================================================ +15:52:46 + + +waiting on router queue for slot.... +15:52:46 Sending to : +15:52:46 ============================================================================ +15:52:46 Sending to : +15:52:46 ============================================================================ +15:52:46 ============================================================================ +15:52:46 Slot Id : <22> +15:52:46 Transaction Type : REQUEST +15:52:46 Received From : +15:52:46 ============================================================================ +15:52:46 FNo. Len. Field Value +15:52:46 ============================================================================ +15:52:46 [ 1] [ 4] [0200] +15:52:46 [ 2] [ 16] [6688990107556506] +15:52:46 [ 3] [ 6] [010000] +15:52:46 [ 4] [ 12] [000050000000] +15:52:46 [ 7] [ 10] [0320085153] +15:52:46 [ 11] [ 6] [270163] +15:52:46 [ 12] [ 6] [155153] +15:52:46 [ 13] [ 4] [0320] +15:52:46 [ 14] [ 4] [4403] +15:52:46 [ 15] [ 4] [0320] +15:52:46 [ 18] [ 4] [6011] +15:52:46 [ 19] [ 3] [418] +15:52:46 [ 22] [ 3] [021] +15:52:46 [ 25] [ 2] [01] +15:52:46 [ 28] [ 9] [D00002000] +15:52:46 [ 32] [ 6] [180893] +15:52:46 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:52:46 [ 37] [ 12] [507908270163] +15:52:46 [ 41] [ 8] [0361BLTB] +15:52:46 [ 42] [ 15] [999999 ] +15:52:46 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +15:52:46 [ 49] [ 3] [418] +15:52:46 [ 52] [ 16] [4C5095EF3527D44F] +15:52:46 ============================================================================ +15:52:46 + + +waiting on router queue for slot.... +15:52:46 Sending to : +15:52:46 ============================================================================ +15:52:46 ============================================================================ +15:52:46 Slot Id : <22> +15:52:46 Transaction Type : REQUEST +15:52:46 Received From : +15:52:46 ============================================================================ +15:52:46 FNo. Len. Field Value +15:52:46 ============================================================================ +15:52:46 [ 1] [ 4] [0200] +15:52:46 [ 2] [ 16] [6688990107556506] +15:52:46 [ 3] [ 6] [010000] +15:52:46 [ 4] [ 12] [000050000000] +15:52:46 [ 7] [ 10] [0320085153] +15:52:46 [ 11] [ 6] [270163] +15:52:46 [ 12] [ 6] [155153] +15:52:46 [ 13] [ 4] [0320] +15:52:46 [ 14] [ 4] [4403] +15:52:46 [ 15] [ 4] [0320] +15:52:46 [ 18] [ 4] [6011] +15:52:46 [ 19] [ 3] [418] +15:52:46 [ 22] [ 3] [021] +15:52:46 [ 25] [ 2] [01] +15:52:46 [ 28] [ 9] [D00002000] +15:52:46 [ 32] [ 6] [180893] +15:52:46 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:52:46 [ 37] [ 12] [507908270163] +15:52:46 [ 41] [ 8] [0361BLTB] +15:52:46 [ 42] [ 15] [999999 ] +15:52:46 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +15:52:46 [ 49] [ 3] [418] +15:52:46 [ 52] [ 16] [3356E5F5FDC763CB] +15:52:46 ============================================================================ +15:52:46 + + +waiting on router queue for slot.... +15:52:46 Sending to : <0> +15:52:46 ============================================================================ +15:52:46 ============================================================================ +15:52:46 Slot Id : <22> +15:52:46 Transaction Type : RESPONSE +15:52:46 Received From : +15:52:46 ============================================================================ +15:52:46 FNo. Len. Field Value +15:52:46 ============================================================================ +15:52:46 [ 1] [ 4] [0210] +15:52:46 [ 2] [ 16] [6688990107556506] +15:52:46 [ 3] [ 6] [010000] +15:52:46 [ 4] [ 12] [000050000000] +15:52:46 [ 7] [ 10] [0320085153] +15:52:46 [ 11] [ 6] [270163] +15:52:46 [ 12] [ 6] [155153] +15:52:46 [ 13] [ 4] [0320] +15:52:46 [ 15] [ 4] [0320] +15:52:46 [ 18] [ 4] [6011] +15:52:46 [ 19] [ 3] [418] +15:52:46 [ 22] [ 3] [021] +15:52:46 [ 32] [ 6] [180893] +15:52:46 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:52:46 [ 37] [ 12] [507908270163] +15:52:46 [ 39] [ 2] [14] +15:52:46 [ 41] [ 8] [0361BLTB] +15:52:46 [ 49] [ 3] [418] +15:52:46 ============================================================================ +15:52:46 Sending to : +15:52:46 ============================================================================ +15:52:46 + + +waiting on router queue for slot.... +15:52:46 ============================================================================ +15:52:46 Slot Id : <469> +15:52:46 Transaction Type : REQUEST +15:52:46 Received From : +15:52:46 ============================================================================ +15:52:46 FNo. Len. Field Value +15:52:46 ============================================================================ +15:52:46 [ 1] [ 4] [0200] +15:52:46 [ 2] [ 16] [1808931100011699] +15:52:46 [ 3] [ 6] [301000] +15:52:46 [ 4] [ 12] [000000000000] +15:52:46 [ 7] [ 10] [0320155242] +15:52:46 [ 11] [ 6] [789690] +15:52:46 [ 12] [ 6] [155242] +15:52:46 [ 13] [ 4] [0320] +15:52:46 [ 15] [ 4] [0320] +15:52:46 [ 18] [ 4] [6011] +15:52:46 [ 22] [ 3] [900] +15:52:46 [ 25] [ 2] [02] +15:52:46 [ 28] [ 9] [D00000000] +15:52:46 [ 32] [ 6] [621354] +15:52:46 [ 35] [ 27] [1808931100011699=1803500175] +15:52:46 [ 37] [ 12] [507904599740] +15:52:46 [ 41] [ 8] [02002200] +15:52:46 [ 42] [ 15] [NATIVE ] +15:52:46 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +15:52:46 [ 49] [ 3] [418] +15:52:46 [ 52] [ 16] [36F33E61A2FD2A24] +15:52:46 ============================================================================ +15:52:46 + + +waiting on router queue for slot.... +15:52:46 Sending to : +15:52:46 ============================================================================ +15:52:46 Sending to : +15:52:46 ============================================================================ +15:52:47 ============================================================================ +15:52:47 Slot Id : <469> +15:52:47 Transaction Type : REQUEST +15:52:47 Received From : +15:52:47 ============================================================================ +15:52:47 FNo. Len. Field Value +15:52:47 ============================================================================ +15:52:47 [ 1] [ 4] [0200] +15:52:47 [ 2] [ 16] [1808931100011699] +15:52:47 [ 3] [ 6] [301000] +15:52:47 [ 4] [ 12] [000000000000] +15:52:47 [ 7] [ 10] [0320155242] +15:52:47 [ 11] [ 6] [789690] +15:52:47 [ 12] [ 6] [155242] +15:52:47 [ 13] [ 4] [0320] +15:52:47 [ 15] [ 4] [0320] +15:52:47 [ 18] [ 4] [6011] +15:52:47 [ 22] [ 3] [900] +15:52:47 [ 25] [ 2] [02] +15:52:47 [ 28] [ 9] [D00000000] +15:52:47 [ 32] [ 6] [621354] +15:52:47 [ 35] [ 27] [1808931100011699=1803500175] +15:52:47 [ 37] [ 12] [507904599740] +15:52:47 [ 41] [ 8] [02002200] +15:52:47 [ 42] [ 15] [NATIVE ] +15:52:47 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +15:52:47 [ 49] [ 3] [418] +15:52:47 [ 52] [ 16] [36F33E61A2FD2A24] +15:52:47 ============================================================================ +15:52:47 + + +waiting on router queue for slot.... +15:52:47 Sending to : +15:52:47 ============================================================================ +15:52:47 ============================================================================ +15:52:47 Slot Id : <469> +15:52:47 Transaction Type : REQUEST +15:52:47 Received From : +15:52:47 ============================================================================ +15:52:47 FNo. Len. Field Value +15:52:47 ============================================================================ +15:52:47 [ 1] [ 4] [0200] +15:52:47 [ 2] [ 16] [1808931100011699] +15:52:47 [ 3] [ 6] [301000] +15:52:47 [ 4] [ 12] [000000000000] +15:52:47 [ 7] [ 10] [0320155242] +15:52:47 [ 11] [ 6] [789690] +15:52:47 [ 12] [ 6] [155242] +15:52:47 [ 13] [ 4] [0320] +15:52:47 [ 15] [ 4] [0320] +15:52:47 [ 18] [ 4] [6011] +15:52:47 [ 22] [ 3] [900] +15:52:47 [ 25] [ 2] [02] +15:52:47 [ 28] [ 9] [D00000000] +15:52:47 [ 32] [ 6] [621354] +15:52:47 [ 35] [ 27] [1808931100011699=1803500175] +15:52:47 [ 37] [ 12] [507904599740] +15:52:47 [ 41] [ 8] [02002200] +15:52:47 [ 42] [ 15] [NATIVE ] +15:52:47 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +15:52:47 [ 49] [ 3] [418] +15:52:47 [ 52] [ 16] [11749F399708E4A1] +15:52:47 ============================================================================ +15:52:47 + + +waiting on router queue for slot.... +15:52:47 Sending to : <2> +15:52:47 ============================================================================ +15:52:47 ============================================================================ +15:52:47 Slot Id : <22> +15:52:47 Transaction Type : RESPONSE +15:52:47 Received From : +15:52:47 ============================================================================ +15:52:47 FNo. Len. Field Value +15:52:47 ============================================================================ +15:52:47 [ 1] [ 4] [0210] +15:52:47 [ 2] [ 16] [6688990107556506] +15:52:47 [ 3] [ 6] [010000] +15:52:47 [ 4] [ 12] [000050000000] +15:52:47 [ 7] [ 10] [0320085153] +15:52:47 [ 11] [ 6] [270163] +15:52:47 [ 12] [ 6] [155153] +15:52:47 [ 13] [ 4] [0320] +15:52:47 [ 15] [ 4] [0320] +15:52:47 [ 18] [ 4] [6011] +15:52:47 [ 19] [ 3] [418] +15:52:47 [ 22] [ 3] [021] +15:52:47 [ 32] [ 6] [180893] +15:52:47 [ 35] [ 37] [6688990107556506=44031231650689400000] +15:52:47 [ 37] [ 12] [507908270163] +15:52:47 [ 39] [ 2] [14] +15:52:47 [ 41] [ 8] [0361BLTB] +15:52:47 [ 49] [ 3] [418] +15:52:47 ============================================================================ +15:52:47 Calculate Source COMM Id = 2 +15:52:47 ============================================================================ +15:52:47 + + +waiting on router queue for slot.... +15:52:49 ============================================================================ +15:52:49 Slot Id : <469> +15:52:49 Transaction Type : RESPONSE +15:52:49 Received From : +15:52:49 ============================================================================ +15:52:49 FNo. Len. Field Value +15:52:49 ============================================================================ +15:52:49 [ 1] [ 4] [0210] +15:52:49 [ 2] [ 16] [1808931100011699] +15:52:49 [ 3] [ 6] [301000] +15:52:49 [ 7] [ 10] [0320155242] +15:52:49 [ 11] [ 6] [789690] +15:52:49 [ 12] [ 6] [155242] +15:52:49 [ 13] [ 4] [0320] +15:52:49 [ 14] [ 4] [1803] +15:52:49 [ 19] [ 3] [418] +15:52:49 [ 32] [ 6] [621354] +15:52:49 [ 37] [ 12] [507904599740] +15:52:49 [ 38] [ 6] [789690] +15:52:49 [ 39] [ 2] [00] +15:52:49 [ 41] [ 8] [02002200] +15:52:49 [ 49] [ 3] [418] +15:52:49 [ 52] [ 16] [11749F399708E4A1] +15:52:49 [ 54] [ 20] [1002418C000588700000] +15:52:49 ============================================================================ +15:52:49 Sending to : +15:52:49 ============================================================================ +15:52:49 + + +waiting on router queue for slot.... +15:52:50 ============================================================================ +15:52:50 Slot Id : <469> +15:52:50 Transaction Type : RESPONSE +15:52:50 Received From : +15:52:50 ============================================================================ +15:52:50 FNo. Len. Field Value +15:52:50 ============================================================================ +15:52:50 [ 1] [ 4] [0210] +15:52:50 [ 2] [ 16] [1808931100011699] +15:52:50 [ 3] [ 6] [301000] +15:52:50 [ 7] [ 10] [0320155242] +15:52:50 [ 11] [ 6] [789690] +15:52:50 [ 12] [ 6] [155242] +15:52:50 [ 13] [ 4] [0320] +15:52:50 [ 14] [ 4] [1803] +15:52:50 [ 19] [ 3] [418] +15:52:50 [ 32] [ 6] [621354] +15:52:50 [ 37] [ 12] [507904599740] +15:52:50 [ 38] [ 6] [789690] +15:52:50 [ 39] [ 2] [00] +15:52:50 [ 41] [ 8] [02002200] +15:52:50 [ 49] [ 3] [418] +15:52:50 [ 52] [ 16] [11749F399708E4A1] +15:52:50 [ 54] [ 20] [1002418C000588700000] +15:52:50 ============================================================================ +15:52:50 Calculate Source COMM Id = 0 +15:52:50 ============================================================================ +15:52:50 + + +waiting on router queue for slot.... +15:52:59 ============================================================================ +15:52:59 Slot Id : <17> +15:52:59 Transaction Type : REQUEST +15:52:59 Received From : +15:52:59 ============================================================================ +15:52:59 FNo. Len. Field Value +15:52:59 ============================================================================ +15:52:59 [ 1] [ 4] [0800] +15:52:59 [ 7] [ 10] [0320085206] +15:52:59 [ 11] [ 6] [157115] +15:52:59 [ 70] [ 3] [301] +15:52:59 ============================================================================ +15:52:59 + + +waiting on router queue for slot.... +15:52:59 Sending to : +15:52:59 ============================================================================ +15:52:59 ============================================================================ +15:52:59 Slot Id : <17> +15:52:59 Transaction Type : RESPONSE +15:52:59 Received From : +15:52:59 ============================================================================ +15:52:59 FNo. Len. Field Value +15:52:59 ============================================================================ +15:52:59 [ 1] [ 4] [0810] +15:52:59 [ 7] [ 10] [0320085206] +15:52:59 [ 11] [ 6] [157115] +15:52:59 [ 39] [ 2] [00] +15:52:59 [ 70] [ 3] [301] +15:52:59 ============================================================================ +15:52:59 Calculate Source COMM Id = 2 +15:52:59 ============================================================================ +15:52:59 + + +waiting on router queue for slot.... +15:53:12 ============================================================================ +15:53:12 Slot Id : <494> +15:53:12 Transaction Type : REQUEST +15:53:12 Received From : +15:53:12 ============================================================================ +15:53:12 FNo. Len. Field Value +15:53:12 ============================================================================ +15:53:12 [ 1] [ 4] [0800] +15:53:12 [ 7] [ 10] [0320230501] +15:53:12 [ 11] [ 6] [160501] +15:53:12 [ 37] [ 12] [57916160501] +15:53:12 [ 70] [ 3] [301] +15:53:12 ============================================================================ +15:53:12 + + +waiting on router queue for slot.... +15:53:12 Sending to : +15:53:12 ============================================================================ +15:53:12 ============================================================================ +15:53:12 Slot Id : <494> +15:53:12 Transaction Type : RESPONSE +15:53:12 Received From : +15:53:12 ============================================================================ +15:53:12 FNo. Len. Field Value +15:53:12 ============================================================================ +15:53:12 [ 1] [ 4] [0810] +15:53:12 [ 7] [ 10] [0320230501] +15:53:12 [ 11] [ 6] [160501] +15:53:12 [ 37] [ 12] [579161605010] +15:53:12 [ 39] [ 2] [00] +15:53:12 [ 70] [ 3] [810] +15:53:12 ============================================================================ +15:53:12 Calculate Source COMM Id = 6 +15:53:12 ============================================================================ +15:53:12 + + +waiting on router queue for slot.... +15:53:14 ============================================================================ +15:53:14 Slot Id : <491> +15:53:14 Transaction Type : REQUEST +15:53:14 Received From : +15:53:14 ============================================================================ +15:53:14 FNo. Len. Field Value +15:53:14 ============================================================================ +15:53:14 [ 1] [ 4] [0800] +15:53:14 [ 7] [ 10] [0320085220] +15:53:14 [ 11] [ 6] [157116] +15:53:14 [ 70] [ 3] [301] +15:53:14 ============================================================================ +15:53:14 + + +waiting on router queue for slot.... +15:53:14 Sending to : +15:53:14 ============================================================================ +15:53:14 ============================================================================ +15:53:14 Slot Id : <491> +15:53:14 Transaction Type : RESPONSE +15:53:14 Received From : +15:53:14 ============================================================================ +15:53:14 FNo. Len. Field Value +15:53:14 ============================================================================ +15:53:14 [ 1] [ 4] [0810] +15:53:14 [ 7] [ 10] [0320085220] +15:53:14 [ 11] [ 6] [157116] +15:53:14 [ 39] [ 2] [00] +15:53:14 [ 70] [ 3] [301] +15:53:14 ============================================================================ +15:53:14 Calculate Source COMM Id = 2 +15:53:14 ============================================================================ +15:53:14 + + +waiting on router queue for slot.... +15:53:16 ============================================================================ +15:53:16 Slot Id : <10> +15:53:16 Transaction Type : REQUEST +15:53:16 Received From : +15:53:16 ============================================================================ +15:53:16 FNo. Len. Field Value +15:53:16 ============================================================================ +15:53:16 [ 1] [ 4] [0200] +15:53:16 [ 2] [ 16] [6688990103267900] +15:53:16 [ 3] [ 6] [010000] +15:53:16 [ 4] [ 12] [000040000000] +15:53:16 [ 7] [ 10] [0320155311] +15:53:16 [ 11] [ 6] [789804] +15:53:16 [ 12] [ 6] [155311] +15:53:16 [ 13] [ 4] [0320] +15:53:16 [ 15] [ 4] [0320] +15:53:16 [ 18] [ 4] [6011] +15:53:16 [ 22] [ 3] [900] +15:53:16 [ 25] [ 2] [02] +15:53:16 [ 28] [ 9] [D00002000] +15:53:16 [ 32] [ 6] [621354] +15:53:16 [ 35] [ 37] [6688990103267900=42121231790084800000] +15:53:16 [ 37] [ 12] [507903499542] +15:53:16 [ 41] [ 8] [06002200] +15:53:16 [ 42] [ 15] [NATIVE ] +15:53:16 [ 43] [ 40] [Beng Market Beng LAO] +15:53:16 [ 49] [ 3] [418] +15:53:16 [ 52] [ 16] [64469988A0D08CBD] +15:53:16 ============================================================================ +15:53:16 + + +waiting on router queue for slot.... +15:53:16 Sending to : +15:53:16 ============================================================================ +15:53:16 Sending to : +15:53:16 ============================================================================ +15:53:16 ============================================================================ +15:53:16 Slot Id : <10> +15:53:16 Transaction Type : REQUEST +15:53:16 Received From : +15:53:16 ============================================================================ +15:53:16 FNo. Len. Field Value +15:53:16 ============================================================================ +15:53:16 [ 1] [ 4] [0200] +15:53:16 [ 2] [ 16] [6688990103267900] +15:53:16 [ 3] [ 6] [010000] +15:53:16 [ 4] [ 12] [000040000000] +15:53:16 [ 7] [ 10] [0320155311] +15:53:16 [ 11] [ 6] [789804] +15:53:16 [ 12] [ 6] [155311] +15:53:16 [ 13] [ 4] [0320] +15:53:16 [ 15] [ 4] [0320] +15:53:16 [ 18] [ 4] [6011] +15:53:16 [ 22] [ 3] [900] +15:53:16 [ 25] [ 2] [02] +15:53:16 [ 28] [ 9] [D00002000] +15:53:16 [ 32] [ 6] [621354] +15:53:16 [ 35] [ 37] [6688990103267900=42121231790084800000] +15:53:16 [ 37] [ 12] [507903499542] +15:53:16 [ 41] [ 8] [06002200] +15:53:16 [ 42] [ 15] [NATIVE ] +15:53:16 [ 43] [ 40] [Beng Market Beng LAO] +15:53:16 [ 49] [ 3] [418] +15:53:16 [ 52] [ 16] [64469988A0D08CBD] +15:53:16 ============================================================================ +15:53:16 + + +waiting on router queue for slot.... +15:53:16 Sending to : +15:53:16 ============================================================================ +15:53:16 ============================================================================ +15:53:16 Slot Id : <10> +15:53:16 Transaction Type : REQUEST +15:53:16 Received From : +15:53:16 ============================================================================ +15:53:16 FNo. Len. Field Value +15:53:16 ============================================================================ +15:53:16 [ 1] [ 4] [0200] +15:53:16 [ 2] [ 16] [6688990103267900] +15:53:16 [ 3] [ 6] [010000] +15:53:16 [ 4] [ 12] [000040000000] +15:53:16 [ 7] [ 10] [0320155311] +15:53:16 [ 11] [ 6] [789804] +15:53:16 [ 12] [ 6] [155311] +15:53:16 [ 13] [ 4] [0320] +15:53:16 [ 15] [ 4] [0320] +15:53:16 [ 18] [ 4] [6011] +15:53:16 [ 22] [ 3] [900] +15:53:16 [ 25] [ 2] [02] +15:53:16 [ 28] [ 9] [D00002000] +15:53:16 [ 32] [ 6] [621354] +15:53:16 [ 35] [ 37] [6688990103267900=42121231790084800000] +15:53:16 [ 37] [ 12] [507903499542] +15:53:16 [ 41] [ 8] [06002200] +15:53:16 [ 42] [ 15] [NATIVE ] +15:53:16 [ 43] [ 40] [Beng Market Beng LAO] +15:53:16 [ 49] [ 3] [418] +15:53:16 [ 52] [ 16] [8DD860C9B4B260A4] +15:53:16 ============================================================================ +15:53:16 + + +waiting on router queue for slot.... +15:53:16 Sending to : <4> +15:53:16 ============================================================================ +15:53:17 ============================================================================ +15:53:17 Slot Id : <10> +15:53:17 Transaction Type : RESPONSE +15:53:17 Received From : +15:53:17 ============================================================================ +15:53:17 FNo. Len. Field Value +15:53:17 ============================================================================ +15:53:17 [ 1] [ 4] [0210] +15:53:17 [ 2] [ 16] [6688990103267900] +15:53:17 [ 3] [ 6] [010000] +15:53:17 [ 4] [ 12] [000040000000] +15:53:17 [ 11] [ 6] [789804] +15:53:17 [ 12] [ 6] [155311] +15:53:17 [ 15] [ 4] [0320] +15:53:17 [ 18] [ 4] [6011] +15:53:17 [ 32] [ 6] [621354] +15:53:17 [ 35] [ 37] [6688990103267900=42121231790084800000] +15:53:17 [ 37] [ 12] [507903499542] +15:53:17 [ 38] [ 6] [584879] +15:53:17 [ 39] [ 2] [00] +15:53:17 [ 41] [ 8] [06002200] +15:53:17 [ 49] [ 3] [418] +15:53:17 [ 54] [ 20] [0002418C000303948268] +15:53:17 ============================================================================ +15:53:17 Sending to : +15:53:17 ============================================================================ +15:53:17 + + +waiting on router queue for slot.... +15:53:19 ============================================================================ +15:53:19 Slot Id : <10> +15:53:19 Transaction Type : RESPONSE +15:53:19 Received From : +15:53:19 ============================================================================ +15:53:19 FNo. Len. Field Value +15:53:19 ============================================================================ +15:53:19 [ 1] [ 4] [0210] +15:53:19 [ 2] [ 16] [6688990103267900] +15:53:19 [ 3] [ 6] [010000] +15:53:19 [ 4] [ 12] [000040000000] +15:53:19 [ 11] [ 6] [789804] +15:53:19 [ 12] [ 6] [155311] +15:53:19 [ 15] [ 4] [0320] +15:53:19 [ 18] [ 4] [6011] +15:53:19 [ 32] [ 6] [621354] +15:53:19 [ 35] [ 37] [6688990103267900=42121231790084800000] +15:53:19 [ 37] [ 12] [507903499542] +15:53:19 [ 38] [ 6] [584879] +15:53:19 [ 39] [ 2] [00] +15:53:19 [ 41] [ 8] [06002200] +15:53:19 [ 49] [ 3] [418] +15:53:19 [ 54] [ 20] [0002418C000303948268] +15:53:19 ============================================================================ +15:53:19 Calculate Source COMM Id = 0 +15:53:19 ============================================================================ +15:53:19 + + +waiting on router queue for slot.... +15:53:23 ============================================================================ +15:53:23 Slot Id : <499> +15:53:23 Transaction Type : REQUEST +15:53:23 Received From : +15:53:23 ============================================================================ +15:53:23 FNo. Len. Field Value +15:53:23 ============================================================================ +15:53:23 [ 1] [ 4] [0800] +15:53:23 [ 2] [ 5] [02531] +15:53:23 [ 3] [ 6] [579158] +15:53:23 [ 7] [ 10] [0320085323] +15:53:23 [ 11] [ 6] [807334] +15:53:23 [ 15] [ 10] [0320085323] +15:53:23 [ 37] [ 11] [57915807334] +15:53:23 [ 70] [ 3] [001] +15:53:23 ============================================================================ +15:53:23 + + +waiting on router queue for slot.... +15:53:23 ============================================================================ +15:53:23 Slot Id : <499> +15:53:23 Transaction Type : RESPONSE +15:53:23 Received From : +15:53:23 ============================================================================ +15:53:23 FNo. Len. Field Value +15:53:23 ============================================================================ +15:53:23 [ 1] [ 4] [0810] +15:53:23 [ 7] [ 10] [0320085323] +15:53:23 [ 11] [ 6] [807334] +15:53:23 [ 15] [ 4] [0320] +15:53:23 [ 37] [ 12] [57915807334] +15:53:23 [ 39] [ 2] [00] +15:53:23 [ 70] [ 3] [001] +15:53:23 ============================================================================ +15:53:23 Sending to : +15:53:23 ============================================================================ +15:53:23 + + +waiting on router queue for slot.... +15:53:23 ============================================================================ +15:53:23 Slot Id : <29> +15:53:23 Transaction Type : REQUEST +15:53:23 Received From : +15:53:23 ============================================================================ +15:53:23 FNo. Len. Field Value +15:53:23 ============================================================================ +15:53:23 [ 1] [ 4] [0200] +15:53:23 [ 2] [ 16] [6688990040109553] +15:53:23 [ 3] [ 6] [010000] +15:53:23 [ 4] [ 12] [000010000000] +15:53:23 [ 7] [ 10] [0320085229] +15:53:23 [ 11] [ 6] [270170] +15:53:23 [ 12] [ 6] [155229] +15:53:23 [ 13] [ 4] [0320] +15:53:23 [ 14] [ 4] [9803] +15:53:23 [ 15] [ 4] [0320] +15:53:23 [ 18] [ 4] [6011] +15:53:23 [ 19] [ 3] [418] +15:53:23 [ 22] [ 3] [021] +15:53:23 [ 25] [ 2] [01] +15:53:23 [ 28] [ 9] [D00002000] +15:53:23 [ 32] [ 6] [180893] +15:53:23 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:53:23 [ 37] [ 12] [507908270170] +15:53:23 [ 41] [ 8] [0263UDXB] +15:53:23 [ 42] [ 15] [999999 ] +15:53:23 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:53:23 [ 49] [ 3] [418] +15:53:23 [ 52] [ 16] [658E4156A4E888B3] +15:53:23 ============================================================================ +15:53:23 + + +waiting on router queue for slot.... +15:53:23 Sending to : +15:53:23 ============================================================================ +15:53:23 Sending to : +15:53:23 ============================================================================ +15:53:24 ============================================================================ +15:53:24 Slot Id : <29> +15:53:24 Transaction Type : REQUEST +15:53:24 Received From : +15:53:24 ============================================================================ +15:53:24 FNo. Len. Field Value +15:53:24 ============================================================================ +15:53:24 [ 1] [ 4] [0200] +15:53:24 [ 2] [ 16] [6688990040109553] +15:53:24 [ 3] [ 6] [010000] +15:53:24 [ 4] [ 12] [000010000000] +15:53:24 [ 7] [ 10] [0320085229] +15:53:24 [ 11] [ 6] [270170] +15:53:24 [ 12] [ 6] [155229] +15:53:24 [ 13] [ 4] [0320] +15:53:24 [ 14] [ 4] [9803] +15:53:24 [ 15] [ 4] [0320] +15:53:24 [ 18] [ 4] [6011] +15:53:24 [ 19] [ 3] [418] +15:53:24 [ 22] [ 3] [021] +15:53:24 [ 25] [ 2] [01] +15:53:24 [ 28] [ 9] [D00002000] +15:53:24 [ 32] [ 6] [180893] +15:53:24 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:53:24 [ 37] [ 12] [507908270170] +15:53:24 [ 41] [ 8] [0263UDXB] +15:53:24 [ 42] [ 15] [999999 ] +15:53:24 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:53:24 [ 49] [ 3] [418] +15:53:24 [ 52] [ 16] [658E4156A4E888B3] +15:53:24 ============================================================================ +15:53:24 + + +waiting on router queue for slot.... +15:53:24 Sending to : +15:53:24 ============================================================================ +15:53:24 ============================================================================ +15:53:24 Slot Id : <29> +15:53:24 Transaction Type : REQUEST +15:53:24 Received From : +15:53:24 ============================================================================ +15:53:24 FNo. Len. Field Value +15:53:24 ============================================================================ +15:53:24 [ 1] [ 4] [0200] +15:53:24 [ 2] [ 16] [6688990040109553] +15:53:24 [ 3] [ 6] [010000] +15:53:24 [ 4] [ 12] [000010000000] +15:53:24 [ 7] [ 10] [0320085229] +15:53:24 [ 11] [ 6] [270170] +15:53:24 [ 12] [ 6] [155229] +15:53:24 [ 13] [ 4] [0320] +15:53:24 [ 14] [ 4] [9803] +15:53:24 [ 15] [ 4] [0320] +15:53:24 [ 18] [ 4] [6011] +15:53:24 [ 19] [ 3] [418] +15:53:24 [ 22] [ 3] [021] +15:53:24 [ 25] [ 2] [01] +15:53:24 [ 28] [ 9] [D00002000] +15:53:24 [ 32] [ 6] [180893] +15:53:24 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:53:24 [ 37] [ 12] [507908270170] +15:53:24 [ 41] [ 8] [0263UDXB] +15:53:24 [ 42] [ 15] [999999 ] +15:53:24 [ 43] [ 40] [ATM OUDOMXAY BAENG UNIT LOCATION, Baeng,] +15:53:24 [ 49] [ 3] [418] +15:53:24 [ 52] [ 16] [CA9208157F6BA217] +15:53:24 ============================================================================ +15:53:24 + + +waiting on router queue for slot.... +15:53:24 Sending to : <0> +15:53:24 ============================================================================ +15:53:24 ============================================================================ +15:53:24 Slot Id : <29> +15:53:24 Transaction Type : RESPONSE +15:53:24 Received From : +15:53:24 ============================================================================ +15:53:24 FNo. Len. Field Value +15:53:24 ============================================================================ +15:53:24 [ 1] [ 4] [0210] +15:53:24 [ 2] [ 16] [6688990040109553] +15:53:24 [ 3] [ 6] [010000] +15:53:24 [ 4] [ 12] [000010000000] +15:53:24 [ 7] [ 10] [0320085229] +15:53:24 [ 11] [ 6] [270170] +15:53:24 [ 12] [ 6] [155229] +15:53:24 [ 13] [ 4] [0320] +15:53:24 [ 15] [ 4] [0320] +15:53:24 [ 18] [ 4] [6011] +15:53:24 [ 19] [ 3] [418] +15:53:24 [ 22] [ 3] [021] +15:53:24 [ 32] [ 6] [180893] +15:53:24 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:53:24 [ 37] [ 12] [507908270170] +15:53:24 [ 39] [ 2] [14] +15:53:24 [ 41] [ 8] [0263UDXB] +15:53:24 [ 49] [ 3] [418] +15:53:24 ============================================================================ +15:53:24 Sending to : +15:53:24 ============================================================================ +15:53:24 + + +waiting on router queue for slot.... +15:53:25 ============================================================================ +15:53:25 Slot Id : <481> +15:53:25 Transaction Type : REQUEST +15:53:25 Received From : +15:53:25 ============================================================================ +15:53:25 FNo. Len. Field Value +15:53:25 ============================================================================ +15:53:25 [ 1] [ 4] [0200] +15:53:25 [ 2] [ 16] [1808931100011699] +15:53:25 [ 3] [ 6] [010000] +15:53:25 [ 4] [ 12] [000080000000] +15:53:25 [ 7] [ 10] [0320155320] +15:53:25 [ 11] [ 6] [789837] +15:53:25 [ 12] [ 6] [155320] +15:53:25 [ 13] [ 4] [0320] +15:53:25 [ 15] [ 4] [0320] +15:53:25 [ 18] [ 4] [6011] +15:53:25 [ 22] [ 3] [900] +15:53:25 [ 25] [ 2] [02] +15:53:25 [ 28] [ 9] [D00002000] +15:53:25 [ 32] [ 6] [621354] +15:53:25 [ 35] [ 27] [1808931100011699=1803500175] +15:53:25 [ 37] [ 12] [507904599742] +15:53:25 [ 41] [ 8] [02002200] +15:53:25 [ 42] [ 15] [NATIVE ] +15:53:25 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +15:53:25 [ 49] [ 3] [418] +15:53:25 [ 52] [ 16] [36F33E61A2FD2A24] +15:53:25 ============================================================================ +15:53:25 + + +waiting on router queue for slot.... +15:53:25 Sending to : +15:53:25 ============================================================================ +15:53:25 Sending to : +15:53:25 ============================================================================ +15:53:25 ============================================================================ +15:53:25 Slot Id : <29> +15:53:25 Transaction Type : RESPONSE +15:53:25 Received From : +15:53:25 ============================================================================ +15:53:25 FNo. Len. Field Value +15:53:25 ============================================================================ +15:53:25 [ 1] [ 4] [0210] +15:53:25 [ 2] [ 16] [6688990040109553] +15:53:25 [ 3] [ 6] [010000] +15:53:25 [ 4] [ 12] [000010000000] +15:53:25 [ 7] [ 10] [0320085229] +15:53:25 [ 11] [ 6] [270170] +15:53:25 [ 12] [ 6] [155229] +15:53:25 [ 13] [ 4] [0320] +15:53:25 [ 15] [ 4] [0320] +15:53:25 [ 18] [ 4] [6011] +15:53:25 [ 19] [ 3] [418] +15:53:25 [ 22] [ 3] [021] +15:53:25 [ 32] [ 6] [180893] +15:53:25 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:53:25 [ 37] [ 12] [507908270170] +15:53:25 [ 39] [ 2] [14] +15:53:25 [ 41] [ 8] [0263UDXB] +15:53:25 [ 49] [ 3] [418] +15:53:25 ============================================================================ +15:53:25 Calculate Source COMM Id = 2 +15:53:25 ============================================================================ +15:53:25 + + +waiting on router queue for slot.... +15:53:25 ============================================================================ +15:53:25 Slot Id : <481> +15:53:25 Transaction Type : REQUEST +15:53:25 Received From : +15:53:25 ============================================================================ +15:53:25 FNo. Len. Field Value +15:53:25 ============================================================================ +15:53:25 [ 1] [ 4] [0200] +15:53:25 [ 2] [ 16] [1808931100011699] +15:53:25 [ 3] [ 6] [010000] +15:53:25 [ 4] [ 12] [000080000000] +15:53:25 [ 7] [ 10] [0320155320] +15:53:25 [ 11] [ 6] [789837] +15:53:25 [ 12] [ 6] [155320] +15:53:25 [ 13] [ 4] [0320] +15:53:25 [ 15] [ 4] [0320] +15:53:25 [ 18] [ 4] [6011] +15:53:25 [ 22] [ 3] [900] +15:53:25 [ 25] [ 2] [02] +15:53:25 [ 28] [ 9] [D00002000] +15:53:25 [ 32] [ 6] [621354] +15:53:25 [ 35] [ 27] [1808931100011699=1803500175] +15:53:25 [ 37] [ 12] [507904599742] +15:53:25 [ 41] [ 8] [02002200] +15:53:25 [ 42] [ 15] [NATIVE ] +15:53:25 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +15:53:25 [ 49] [ 3] [418] +15:53:25 [ 52] [ 16] [36F33E61A2FD2A24] +15:53:25 ============================================================================ +15:53:25 + + +waiting on router queue for slot.... +15:53:25 Sending to : +15:53:25 ============================================================================ +15:53:25 ============================================================================ +15:53:25 Slot Id : <481> +15:53:25 Transaction Type : REQUEST +15:53:25 Received From : +15:53:25 ============================================================================ +15:53:25 FNo. Len. Field Value +15:53:25 ============================================================================ +15:53:25 [ 1] [ 4] [0200] +15:53:25 [ 2] [ 16] [1808931100011699] +15:53:25 [ 3] [ 6] [010000] +15:53:25 [ 4] [ 12] [000080000000] +15:53:25 [ 7] [ 10] [0320155320] +15:53:25 [ 11] [ 6] [789837] +15:53:25 [ 12] [ 6] [155320] +15:53:25 [ 13] [ 4] [0320] +15:53:25 [ 15] [ 4] [0320] +15:53:25 [ 18] [ 4] [6011] +15:53:25 [ 22] [ 3] [900] +15:53:25 [ 25] [ 2] [02] +15:53:25 [ 28] [ 9] [D00002000] +15:53:25 [ 32] [ 6] [621354] +15:53:25 [ 35] [ 27] [1808931100011699=1803500175] +15:53:25 [ 37] [ 12] [507904599742] +15:53:25 [ 41] [ 8] [02002200] +15:53:25 [ 42] [ 15] [NATIVE ] +15:53:25 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +15:53:25 [ 49] [ 3] [418] +15:53:25 [ 52] [ 16] [11749F399708E4A1] +15:53:25 ============================================================================ +15:53:25 + + +waiting on router queue for slot.... +15:53:25 Sending to : <2> +15:53:25 ============================================================================ +15:53:29 ============================================================================ +15:53:29 Slot Id : <481> +15:53:29 Transaction Type : RESPONSE +15:53:29 Received From : +15:53:29 ============================================================================ +15:53:29 FNo. Len. Field Value +15:53:29 ============================================================================ +15:53:29 [ 1] [ 4] [0210] +15:53:29 [ 2] [ 16] [1808931100011699] +15:53:29 [ 3] [ 6] [010000] +15:53:29 [ 4] [ 12] [000080000000] +15:53:29 [ 6] [ 12] [000080000000] +15:53:29 [ 7] [ 10] [0320155320] +15:53:29 [ 11] [ 6] [789837] +15:53:29 [ 12] [ 6] [155320] +15:53:29 [ 13] [ 4] [0320] +15:53:29 [ 18] [ 4] [6011] +15:53:29 [ 19] [ 3] [418] +15:53:29 [ 22] [ 3] [021] +15:53:29 [ 32] [ 6] [621354] +15:53:29 [ 35] [ 27] [1808931100011699=1803500175] +15:53:29 [ 37] [ 12] [507904599742] +15:53:29 [ 38] [ 6] [789837] +15:53:29 [ 39] [ 2] [00] +15:53:29 [ 41] [ 8] [02002200] +15:53:29 [ 49] [ 3] [418] +15:53:29 [ 52] [ 16] [11749F399708E4A1] +15:53:29 [ 54] [ 20] [1001418C000508500000] +15:53:29 ============================================================================ +15:53:29 Sending to : +15:53:29 ============================================================================ +15:53:29 + + +waiting on router queue for slot.... +15:53:30 ============================================================================ +15:53:30 Slot Id : <481> +15:53:30 Transaction Type : RESPONSE +15:53:30 Received From : +15:53:30 ============================================================================ +15:53:30 FNo. Len. Field Value +15:53:30 ============================================================================ +15:53:30 [ 1] [ 4] [0210] +15:53:30 [ 2] [ 16] [1808931100011699] +15:53:30 [ 3] [ 6] [010000] +15:53:30 [ 4] [ 12] [000080000000] +15:53:30 [ 6] [ 12] [000080000000] +15:53:30 [ 7] [ 10] [0320155320] +15:53:30 [ 11] [ 6] [789837] +15:53:30 [ 12] [ 6] [155320] +15:53:30 [ 13] [ 4] [0320] +15:53:30 [ 18] [ 4] [6011] +15:53:30 [ 19] [ 3] [418] +15:53:30 [ 22] [ 3] [021] +15:53:30 [ 32] [ 6] [621354] +15:53:30 [ 35] [ 27] [1808931100011699=1803500175] +15:53:30 [ 37] [ 12] [507904599742] +15:53:30 [ 38] [ 6] [789837] +15:53:30 [ 39] [ 2] [00] +15:53:30 [ 41] [ 8] [02002200] +15:53:30 [ 49] [ 3] [418] +15:53:30 [ 52] [ 16] [11749F399708E4A1] +15:53:30 [ 54] [ 20] [1001418C000508500000] +15:53:30 ============================================================================ +15:53:30 Calculate Source COMM Id = 0 +15:53:30 ============================================================================ +15:53:30 + + +waiting on router queue for slot.... +15:53:36 ============================================================================ +15:53:36 Slot Id : <23> +15:53:36 Transaction Type : REQUEST +15:53:36 Received From : +15:53:36 ============================================================================ +15:53:36 FNo. Len. Field Value +15:53:36 ============================================================================ +15:53:36 [ 1] [ 4] [0200] +15:53:36 [ 2] [ 16] [1888880000030916] +15:53:36 [ 3] [ 6] [010000] +15:53:36 [ 4] [ 12] [000005000000] +15:53:36 [ 7] [ 10] [0320155331] +15:53:36 [ 11] [ 6] [789876] +15:53:36 [ 12] [ 6] [155331] +15:53:36 [ 13] [ 4] [0320] +15:53:36 [ 15] [ 4] [0320] +15:53:36 [ 18] [ 4] [6011] +15:53:36 [ 22] [ 3] [900] +15:53:36 [ 25] [ 2] [02] +15:53:36 [ 28] [ 9] [D00002000] +15:53:36 [ 32] [ 6] [621354] +15:53:36 [ 35] [ 32] [1888880000030916=000010100000216] +15:53:36 [ 37] [ 12] [507904755426] +15:53:36 [ 41] [ 8] [07001100] +15:53:36 [ 42] [ 15] [NATIVE ] +15:53:36 [ 43] [ 40] [Industry Market Namtar LAO] +15:53:36 [ 49] [ 3] [418] +15:53:36 [ 52] [ 16] [1A0D6A03B9EB072D] +15:53:36 ============================================================================ +15:53:36 + + +waiting on router queue for slot.... +15:53:36 Sending to : +15:53:36 ============================================================================ +15:53:36 Sending to : +15:53:36 ============================================================================ +15:53:36 ============================================================================ +15:53:36 Slot Id : <23> +15:53:36 Transaction Type : REQUEST +15:53:36 Received From : +15:53:36 ============================================================================ +15:53:36 FNo. Len. Field Value +15:53:36 ============================================================================ +15:53:36 [ 1] [ 4] [0200] +15:53:36 [ 2] [ 16] [1888880000030916] +15:53:36 [ 3] [ 6] [010000] +15:53:36 [ 4] [ 12] [000005000000] +15:53:36 [ 7] [ 10] [0320155331] +15:53:36 [ 11] [ 6] [789876] +15:53:36 [ 12] [ 6] [155331] +15:53:36 [ 13] [ 4] [0320] +15:53:36 [ 15] [ 4] [0320] +15:53:36 [ 18] [ 4] [6011] +15:53:36 [ 22] [ 3] [900] +15:53:36 [ 25] [ 2] [02] +15:53:36 [ 28] [ 9] [D00002000] +15:53:36 [ 32] [ 6] [621354] +15:53:36 [ 35] [ 32] [1888880000030916=000010100000216] +15:53:36 [ 37] [ 12] [507904755426] +15:53:36 [ 41] [ 8] [07001100] +15:53:36 [ 42] [ 15] [NATIVE ] +15:53:36 [ 43] [ 40] [Industry Market Namtar LAO] +15:53:36 [ 49] [ 3] [418] +15:53:36 [ 52] [ 16] [1A0D6A03B9EB072D] +15:53:36 ============================================================================ +15:53:36 + + +waiting on router queue for slot.... +15:53:36 Sending to : +15:53:36 ============================================================================ +15:53:36 ============================================================================ +15:53:36 Slot Id : <23> +15:53:36 Transaction Type : REQUEST +15:53:36 Received From : +15:53:36 ============================================================================ +15:53:36 FNo. Len. Field Value +15:53:36 ============================================================================ +15:53:36 [ 1] [ 4] [0200] +15:53:36 [ 2] [ 16] [1888880000030916] +15:53:36 [ 3] [ 6] [010000] +15:53:36 [ 4] [ 12] [000005000000] +15:53:36 [ 7] [ 10] [0320155331] +15:53:36 [ 11] [ 6] [789876] +15:53:36 [ 12] [ 6] [155331] +15:53:36 [ 13] [ 4] [0320] +15:53:36 [ 15] [ 4] [0320] +15:53:36 [ 18] [ 4] [6011] +15:53:36 [ 22] [ 3] [900] +15:53:36 [ 25] [ 2] [02] +15:53:36 [ 28] [ 9] [D00002000] +15:53:36 [ 32] [ 6] [621354] +15:53:36 [ 35] [ 32] [1888880000030916=000010100000216] +15:53:36 [ 37] [ 12] [507904755426] +15:53:36 [ 41] [ 8] [07001100] +15:53:36 [ 42] [ 15] [NATIVE ] +15:53:36 [ 43] [ 40] [Industry Market Namtar LAO] +15:53:36 [ 49] [ 3] [418] +15:53:36 [ 52] [ 16] [4C305B5177946473] +15:53:36 ============================================================================ +15:53:36 + + +waiting on router queue for slot.... +15:53:36 Sending to : <5> +15:53:36 ============================================================================ +15:53:36 ============================================================================ +15:53:36 Slot Id : <23> +15:53:36 Transaction Type : RESPONSE +15:53:36 Received From : +15:53:36 ============================================================================ +15:53:36 FNo. Len. Field Value +15:53:36 ============================================================================ +15:53:36 [ 1] [ 4] [0210] +15:53:36 [ 2] [ 16] [1888880000030916] +15:53:36 [ 3] [ 6] [010000] +15:53:36 [ 4] [ 12] [000005000000] +15:53:36 [ 7] [ 10] [0320155331] +15:53:36 [ 11] [ 6] [789876] +15:53:36 [ 12] [ 6] [155331] +15:53:36 [ 13] [ 4] [0320] +15:53:36 [ 15] [ 4] [0320] +15:53:36 [ 18] [ 4] [6011] +15:53:36 [ 19] [ 3] [418] +15:53:36 [ 32] [ 6] [621354] +15:53:36 [ 37] [ 12] [507904755426] +15:53:36 [ 38] [ 6] [000000] +15:53:36 [ 39] [ 2] [55] +15:53:36 [ 41] [ 8] [07001100] +15:53:36 [ 49] [ 3] [418] +15:53:36 ============================================================================ +15:53:36 Sending to : +15:53:36 ============================================================================ +15:53:36 + + +waiting on router queue for slot.... +15:53:37 ============================================================================ +15:53:37 Slot Id : <23> +15:53:37 Transaction Type : RESPONSE +15:53:37 Received From : +15:53:37 ============================================================================ +15:53:37 FNo. Len. Field Value +15:53:37 ============================================================================ +15:53:37 [ 1] [ 4] [0210] +15:53:37 [ 2] [ 16] [1888880000030916] +15:53:37 [ 3] [ 6] [010000] +15:53:37 [ 4] [ 12] [000005000000] +15:53:37 [ 7] [ 10] [0320155331] +15:53:37 [ 11] [ 6] [789876] +15:53:37 [ 12] [ 6] [155331] +15:53:37 [ 13] [ 4] [0320] +15:53:37 [ 15] [ 4] [0320] +15:53:37 [ 18] [ 4] [6011] +15:53:37 [ 19] [ 3] [418] +15:53:37 [ 32] [ 6] [621354] +15:53:37 [ 37] [ 12] [507904755426] +15:53:37 [ 38] [ 6] [000000] +15:53:37 [ 39] [ 2] [55] +15:53:37 [ 41] [ 8] [07001100] +15:53:37 [ 49] [ 3] [418] +15:53:37 ============================================================================ +15:53:37 Calculate Source COMM Id = 0 +15:53:37 ============================================================================ +15:53:37 + + +waiting on router queue for slot.... +15:53:40 ============================================================================ +15:53:40 Slot Id : <31> +15:53:40 Transaction Type : REQUEST +15:53:40 Received From : +15:53:40 ============================================================================ +15:53:40 FNo. Len. Field Value +15:53:40 ============================================================================ +15:53:40 [ 1] [ 4] [0800] +15:53:40 [ 7] [ 10] [0320085247] +15:53:40 [ 11] [ 6] [157117] +15:53:40 [ 70] [ 3] [301] +15:53:40 ============================================================================ +15:53:40 + + +waiting on router queue for slot.... +15:53:40 Sending to : +15:53:40 ============================================================================ +15:53:40 ============================================================================ +15:53:40 Slot Id : <31> +15:53:40 Transaction Type : RESPONSE +15:53:40 Received From : +15:53:40 ============================================================================ +15:53:40 FNo. Len. Field Value +15:53:40 ============================================================================ +15:53:40 [ 1] [ 4] [0810] +15:53:40 [ 7] [ 10] [0320085247] +15:53:40 [ 11] [ 6] [157117] +15:53:40 [ 39] [ 2] [00] +15:53:40 [ 70] [ 3] [301] +15:53:40 ============================================================================ +15:53:40 Calculate Source COMM Id = 2 +15:53:40 ============================================================================ +15:53:40 + + +waiting on router queue for slot.... +15:53:52 ============================================================================ +15:53:52 Slot Id : <11> +15:53:52 Transaction Type : REQUEST +15:53:52 Received From : +15:53:52 ============================================================================ +15:53:52 FNo. Len. Field Value +15:53:52 ============================================================================ +15:53:52 [ 1] [ 4] [0200] +15:53:52 [ 2] [ 16] [1888880000030916] +15:53:52 [ 3] [ 6] [010000] +15:53:52 [ 4] [ 12] [000005000000] +15:53:52 [ 7] [ 10] [0320155347] +15:53:52 [ 11] [ 6] [789968] +15:53:52 [ 12] [ 6] [155347] +15:53:52 [ 13] [ 4] [0320] +15:53:52 [ 15] [ 4] [0320] +15:53:52 [ 18] [ 4] [6011] +15:53:52 [ 22] [ 3] [900] +15:53:52 [ 25] [ 2] [02] +15:53:52 [ 28] [ 9] [D00002000] +15:53:52 [ 32] [ 6] [621354] +15:53:52 [ 35] [ 32] [1888880000030916=000010100000216] +15:53:52 [ 37] [ 12] [507904755428] +15:53:52 [ 41] [ 8] [07001100] +15:53:52 [ 42] [ 15] [NATIVE ] +15:53:52 [ 43] [ 40] [Industry Market Namtar LAO] +15:53:52 [ 49] [ 3] [418] +15:53:52 [ 52] [ 16] [0F5DC7631A8C25FC] +15:53:52 ============================================================================ +15:53:52 + + +waiting on router queue for slot.... +15:53:52 Sending to : +15:53:52 ============================================================================ +15:53:52 Sending to : +15:53:52 ============================================================================ +15:53:52 ============================================================================ +15:53:52 Slot Id : <3> +15:53:52 Transaction Type : REQUEST +15:53:52 Received From : +15:53:52 ============================================================================ +15:53:52 FNo. Len. Field Value +15:53:52 ============================================================================ +15:53:52 [ 1] [ 4] [0800] +15:53:52 [ 7] [ 10] [0320085257] +15:53:52 [ 11] [ 6] [157118] +15:53:52 [ 70] [ 3] [301] +15:53:52 ============================================================================ +15:53:52 + + +waiting on router queue for slot.... +15:53:52 Sending to : +15:53:52 ============================================================================ +15:53:52 ============================================================================ +15:53:52 Slot Id : <3> +15:53:52 Transaction Type : RESPONSE +15:53:52 Received From : +15:53:52 ============================================================================ +15:53:52 FNo. Len. Field Value +15:53:52 ============================================================================ +15:53:52 [ 1] [ 4] [0810] +15:53:52 [ 7] [ 10] [0320085257] +15:53:52 [ 11] [ 6] [157118] +15:53:52 [ 39] [ 2] [00] +15:53:52 [ 70] [ 3] [301] +15:53:52 ============================================================================ +15:53:52 Calculate Source COMM Id = 2 +15:53:52 ============================================================================ +15:53:52 + + +waiting on router queue for slot.... +15:53:52 ============================================================================ +15:53:52 Slot Id : <11> +15:53:52 Transaction Type : REQUEST +15:53:52 Received From : +15:53:52 ============================================================================ +15:53:52 FNo. Len. Field Value +15:53:52 ============================================================================ +15:53:52 [ 1] [ 4] [0200] +15:53:52 [ 2] [ 16] [1888880000030916] +15:53:52 [ 3] [ 6] [010000] +15:53:52 [ 4] [ 12] [000005000000] +15:53:52 [ 7] [ 10] [0320155347] +15:53:52 [ 11] [ 6] [789968] +15:53:52 [ 12] [ 6] [155347] +15:53:52 [ 13] [ 4] [0320] +15:53:52 [ 15] [ 4] [0320] +15:53:52 [ 18] [ 4] [6011] +15:53:52 [ 22] [ 3] [900] +15:53:52 [ 25] [ 2] [02] +15:53:52 [ 28] [ 9] [D00002000] +15:53:52 [ 32] [ 6] [621354] +15:53:52 [ 35] [ 32] [1888880000030916=000010100000216] +15:53:52 [ 37] [ 12] [507904755428] +15:53:52 [ 41] [ 8] [07001100] +15:53:52 [ 42] [ 15] [NATIVE ] +15:53:52 [ 43] [ 40] [Industry Market Namtar LAO] +15:53:52 [ 49] [ 3] [418] +15:53:52 [ 52] [ 16] [0F5DC7631A8C25FC] +15:53:52 ============================================================================ +15:53:52 + + +waiting on router queue for slot.... +15:53:52 Sending to : +15:53:52 ============================================================================ +15:53:52 ============================================================================ +15:53:52 Slot Id : <11> +15:53:52 Transaction Type : REQUEST +15:53:52 Received From : +15:53:52 ============================================================================ +15:53:52 FNo. Len. Field Value +15:53:52 ============================================================================ +15:53:52 [ 1] [ 4] [0200] +15:53:52 [ 2] [ 16] [1888880000030916] +15:53:52 [ 3] [ 6] [010000] +15:53:52 [ 4] [ 12] [000005000000] +15:53:52 [ 7] [ 10] [0320155347] +15:53:52 [ 11] [ 6] [789968] +15:53:52 [ 12] [ 6] [155347] +15:53:52 [ 13] [ 4] [0320] +15:53:52 [ 15] [ 4] [0320] +15:53:52 [ 18] [ 4] [6011] +15:53:52 [ 22] [ 3] [900] +15:53:52 [ 25] [ 2] [02] +15:53:52 [ 28] [ 9] [D00002000] +15:53:52 [ 32] [ 6] [621354] +15:53:52 [ 35] [ 32] [1888880000030916=000010100000216] +15:53:52 [ 37] [ 12] [507904755428] +15:53:52 [ 41] [ 8] [07001100] +15:53:52 [ 42] [ 15] [NATIVE ] +15:53:52 [ 43] [ 40] [Industry Market Namtar LAO] +15:53:52 [ 49] [ 3] [418] +15:53:52 [ 52] [ 16] [88FB6D0C415F6DD1] +15:53:52 ============================================================================ +15:53:52 + + +waiting on router queue for slot.... +15:53:52 Sending to : <5> +15:53:52 ============================================================================ +15:53:54 ============================================================================ +15:53:54 Slot Id : <35> +15:53:54 Transaction Type : REQUEST +15:53:54 Received From : +15:53:54 ============================================================================ +15:53:54 FNo. Len. Field Value +15:53:54 ============================================================================ +15:53:54 [ 1] [ 4] [0200] +15:53:54 [ 2] [ 16] [1808931800010025] +15:53:54 [ 3] [ 6] [010000] +15:53:54 [ 4] [ 12] [000100000000] +15:53:54 [ 7] [ 10] [0320155349] +15:53:54 [ 11] [ 6] [789976] +15:53:54 [ 12] [ 6] [155349] +15:53:54 [ 13] [ 4] [0320] +15:53:54 [ 15] [ 4] [0320] +15:53:54 [ 18] [ 4] [6011] +15:53:54 [ 22] [ 3] [900] +15:53:54 [ 25] [ 2] [02] +15:53:54 [ 28] [ 9] [D00002000] +15:53:54 [ 32] [ 6] [621354] +15:53:54 [ 35] [ 27] [1808931800010025=1803500470] +15:53:54 [ 37] [ 12] [507904635784] +15:53:54 [ 41] [ 8] [17000800] +15:53:54 [ 42] [ 15] [NATIVE ] +15:53:54 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:53:54 [ 49] [ 3] [418] +15:53:54 [ 52] [ 16] [50529C2085BB79C7] +15:53:54 ============================================================================ +15:53:54 + + +waiting on router queue for slot.... +15:53:54 Sending to : +15:53:54 ============================================================================ +15:53:54 Sending to : +15:53:54 ============================================================================ +15:53:55 ============================================================================ +15:53:55 Slot Id : <35> +15:53:55 Transaction Type : REQUEST +15:53:55 Received From : +15:53:55 ============================================================================ +15:53:55 FNo. Len. Field Value +15:53:55 ============================================================================ +15:53:55 [ 1] [ 4] [0200] +15:53:55 [ 2] [ 16] [1808931800010025] +15:53:55 [ 3] [ 6] [010000] +15:53:55 [ 4] [ 12] [000100000000] +15:53:55 [ 7] [ 10] [0320155349] +15:53:55 [ 11] [ 6] [789976] +15:53:55 [ 12] [ 6] [155349] +15:53:55 [ 13] [ 4] [0320] +15:53:55 [ 15] [ 4] [0320] +15:53:55 [ 18] [ 4] [6011] +15:53:55 [ 22] [ 3] [900] +15:53:55 [ 25] [ 2] [02] +15:53:55 [ 28] [ 9] [D00002000] +15:53:55 [ 32] [ 6] [621354] +15:53:55 [ 35] [ 27] [1808931800010025=1803500470] +15:53:55 [ 37] [ 12] [507904635784] +15:53:55 [ 41] [ 8] [17000800] +15:53:55 [ 42] [ 15] [NATIVE ] +15:53:55 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:53:55 [ 49] [ 3] [418] +15:53:55 [ 52] [ 16] [50529C2085BB79C7] +15:53:55 ============================================================================ +15:53:55 + + +waiting on router queue for slot.... +15:53:55 Sending to : +15:53:55 ============================================================================ +15:53:55 ============================================================================ +15:53:55 Slot Id : <35> +15:53:55 Transaction Type : REQUEST +15:53:55 Received From : +15:53:55 ============================================================================ +15:53:55 FNo. Len. Field Value +15:53:55 ============================================================================ +15:53:55 [ 1] [ 4] [0200] +15:53:55 [ 2] [ 16] [1808931800010025] +15:53:55 [ 3] [ 6] [010000] +15:53:55 [ 4] [ 12] [000100000000] +15:53:55 [ 7] [ 10] [0320155349] +15:53:55 [ 11] [ 6] [789976] +15:53:55 [ 12] [ 6] [155349] +15:53:55 [ 13] [ 4] [0320] +15:53:55 [ 15] [ 4] [0320] +15:53:55 [ 18] [ 4] [6011] +15:53:55 [ 22] [ 3] [900] +15:53:55 [ 25] [ 2] [02] +15:53:55 [ 28] [ 9] [D00002000] +15:53:55 [ 32] [ 6] [621354] +15:53:55 [ 35] [ 27] [1808931800010025=1803500470] +15:53:55 [ 37] [ 12] [507904635784] +15:53:55 [ 41] [ 8] [17000800] +15:53:55 [ 42] [ 15] [NATIVE ] +15:53:55 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:53:55 [ 49] [ 3] [418] +15:53:55 [ 52] [ 16] [1FD0448BDA66FE7F] +15:53:55 ============================================================================ +15:53:55 + + +waiting on router queue for slot.... +15:53:55 Sending to : <2> +15:53:55 ============================================================================ +15:53:59 ============================================================================ +15:53:59 Slot Id : <35> +15:53:59 Transaction Type : RESPONSE +15:53:59 Received From : +15:53:59 ============================================================================ +15:53:59 FNo. Len. Field Value +15:53:59 ============================================================================ +15:53:59 [ 1] [ 4] [0210] +15:53:59 [ 2] [ 16] [1808931800010025] +15:53:59 [ 3] [ 6] [010000] +15:53:59 [ 4] [ 12] [000100000000] +15:53:59 [ 6] [ 12] [000100000000] +15:53:59 [ 7] [ 10] [0320155349] +15:53:59 [ 11] [ 6] [789976] +15:53:59 [ 12] [ 6] [155349] +15:53:59 [ 13] [ 4] [0320] +15:53:59 [ 18] [ 4] [6011] +15:53:59 [ 19] [ 3] [418] +15:53:59 [ 22] [ 3] [021] +15:53:59 [ 32] [ 6] [621354] +15:53:59 [ 35] [ 27] [1808931800010025=1803500470] +15:53:59 [ 37] [ 12] [507904635784] +15:53:59 [ 38] [ 6] [789976] +15:53:59 [ 39] [ 2] [00] +15:53:59 [ 41] [ 8] [17000800] +15:53:59 [ 49] [ 3] [418] +15:53:59 [ 52] [ 16] [1FD0448BDA66FE7F] +15:53:59 [ 54] [ 20] [1001418C000191360400] +15:53:59 ============================================================================ +15:53:59 Sending to : +15:53:59 ============================================================================ +15:53:59 + + +waiting on router queue for slot.... +15:54:00 ============================================================================ +15:54:00 Slot Id : <11> +15:54:00 Transaction Type : RESPONSE +15:54:00 Received From : +15:54:00 ============================================================================ +15:54:00 FNo. Len. Field Value +15:54:00 ============================================================================ +15:54:00 [ 1] [ 4] [0210] +15:54:00 [ 2] [ 16] [1888880000030916] +15:54:00 [ 3] [ 6] [010000] +15:54:00 [ 4] [ 12] [000005000000] +15:54:00 [ 7] [ 10] [0320155347] +15:54:00 [ 11] [ 6] [789968] +15:54:00 [ 12] [ 6] [155347] +15:54:00 [ 13] [ 4] [0320] +15:54:00 [ 15] [ 4] [0320] +15:54:00 [ 18] [ 4] [6011] +15:54:00 [ 19] [ 3] [418] +15:54:00 [ 32] [ 6] [621354] +15:54:00 [ 37] [ 12] [507904755428] +15:54:00 [ 38] [ 6] [998218] +15:54:00 [ 39] [ 2] [00] +15:54:00 [ 41] [ 8] [07001100] +15:54:00 [ 49] [ 3] [418] +15:54:00 [ 54] [ 0] [] +15:54:00 ============================================================================ +15:54:00 Sending to : +15:54:00 ============================================================================ +15:54:00 + + +waiting on router queue for slot.... +15:54:01 ============================================================================ +15:54:01 Slot Id : <35> +15:54:01 Transaction Type : RESPONSE +15:54:01 Received From : +15:54:01 ============================================================================ +15:54:01 FNo. Len. Field Value +15:54:01 ============================================================================ +15:54:01 [ 1] [ 4] [0210] +15:54:01 [ 2] [ 16] [1808931800010025] +15:54:01 [ 3] [ 6] [010000] +15:54:01 [ 4] [ 12] [000100000000] +15:54:01 [ 6] [ 12] [000100000000] +15:54:01 [ 7] [ 10] [0320155349] +15:54:01 [ 11] [ 6] [789976] +15:54:01 [ 12] [ 6] [155349] +15:54:01 [ 13] [ 4] [0320] +15:54:01 [ 18] [ 4] [6011] +15:54:01 [ 19] [ 3] [418] +15:54:01 [ 22] [ 3] [021] +15:54:01 [ 32] [ 6] [621354] +15:54:01 [ 35] [ 27] [1808931800010025=1803500470] +15:54:01 [ 37] [ 12] [507904635784] +15:54:01 [ 38] [ 6] [789976] +15:54:01 [ 39] [ 2] [00] +15:54:01 [ 41] [ 8] [17000800] +15:54:01 [ 49] [ 3] [418] +15:54:01 [ 52] [ 16] [1FD0448BDA66FE7F] +15:54:01 [ 54] [ 20] [1001418C000191360400] +15:54:01 ============================================================================ +15:54:01 Calculate Source COMM Id = 0 +15:54:01 ============================================================================ +15:54:01 + + +waiting on router queue for slot.... +15:54:02 ============================================================================ +15:54:02 Slot Id : <11> +15:54:02 Transaction Type : RESPONSE +15:54:02 Received From : +15:54:02 ============================================================================ +15:54:02 FNo. Len. Field Value +15:54:02 ============================================================================ +15:54:02 [ 1] [ 4] [0210] +15:54:02 [ 2] [ 16] [1888880000030916] +15:54:02 [ 3] [ 6] [010000] +15:54:02 [ 4] [ 12] [000005000000] +15:54:02 [ 7] [ 10] [0320155347] +15:54:02 [ 11] [ 6] [789968] +15:54:02 [ 12] [ 6] [155347] +15:54:02 [ 13] [ 4] [0320] +15:54:02 [ 15] [ 4] [0320] +15:54:02 [ 18] [ 4] [6011] +15:54:02 [ 19] [ 3] [418] +15:54:02 [ 32] [ 6] [621354] +15:54:02 [ 37] [ 12] [507904755428] +15:54:02 [ 38] [ 6] [998218] +15:54:02 [ 39] [ 2] [00] +15:54:02 [ 41] [ 8] [07001100] +15:54:02 [ 49] [ 3] [418] +15:54:02 [ 54] [ 0] [] +15:54:02 ============================================================================ +15:54:02 Calculate Source COMM Id = 0 +15:54:02 ============================================================================ +15:54:02 + + +waiting on router queue for slot.... +15:54:05 ============================================================================ +15:54:05 Slot Id : <33> +15:54:05 Transaction Type : REQUEST +15:54:05 Received From : +15:54:05 ============================================================================ +15:54:05 FNo. Len. Field Value +15:54:05 ============================================================================ +15:54:05 [ 1] [ 4] [0800] +15:54:05 [ 7] [ 10] [0320085313] +15:54:05 [ 11] [ 6] [157119] +15:54:05 [ 70] [ 3] [301] +15:54:05 ============================================================================ +15:54:05 + + +waiting on router queue for slot.... +15:54:05 Sending to : +15:54:05 ============================================================================ +15:54:05 ============================================================================ +15:54:05 Slot Id : <33> +15:54:05 Transaction Type : RESPONSE +15:54:05 Received From : +15:54:05 ============================================================================ +15:54:05 FNo. Len. Field Value +15:54:05 ============================================================================ +15:54:05 [ 1] [ 4] [0810] +15:54:05 [ 7] [ 10] [0320085313] +15:54:05 [ 11] [ 6] [157119] +15:54:05 [ 39] [ 2] [00] +15:54:05 [ 70] [ 3] [301] +15:54:05 ============================================================================ +15:54:05 Calculate Source COMM Id = 2 +15:54:05 ============================================================================ +15:54:05 + + +waiting on router queue for slot.... +15:54:09 ============================================================================ +15:54:09 Slot Id : <21> +15:54:09 Transaction Type : REQUEST +15:54:09 Received From : +15:54:09 ============================================================================ +15:54:09 FNo. Len. Field Value +15:54:09 ============================================================================ +15:54:09 [ 1] [ 4] [0200] +15:54:09 [ 2] [ 16] [1808930200053965] +15:54:09 [ 3] [ 6] [301000] +15:54:09 [ 4] [ 12] [000000000000] +15:54:09 [ 7] [ 10] [0320155159] +15:54:09 [ 11] [ 6] [950650] +15:54:09 [ 12] [ 6] [155159] +15:54:09 [ 13] [ 4] [0320] +15:54:09 [ 15] [ 4] [0320] +15:54:09 [ 18] [ 4] [6011] +15:54:09 [ 19] [ 3] [418] +15:54:09 [ 22] [ 3] [021] +15:54:09 [ 25] [ 2] [01] +15:54:09 [ 28] [ 9] [D00000000] +15:54:09 [ 32] [ 6] [668899] +15:54:09 [ 35] [ 27] [1808930200053965=1803500034] +15:54:09 [ 37] [ 12] [507900184332] +15:54:09 [ 41] [ 8] [03001002] +15:54:09 [ 42] [ 15] [APT ] +15:54:09 [ 43] [ 40] [ CHOMPHET SERVICE UNIT HAD] +15:54:09 [ 49] [ 3] [418] +15:54:09 [ 52] [ 16] [EEA1B86A6619C6AE] +15:54:09 ============================================================================ +15:54:09 + + +waiting on router queue for slot.... +15:54:09 Sending to : +15:54:09 ============================================================================ +15:54:09 Sending to : +15:54:09 ============================================================================ +15:54:10 ============================================================================ +15:54:10 Slot Id : <21> +15:54:10 Transaction Type : REQUEST +15:54:10 Received From : +15:54:10 ============================================================================ +15:54:10 FNo. Len. Field Value +15:54:10 ============================================================================ +15:54:10 [ 1] [ 4] [0200] +15:54:10 [ 2] [ 16] [1808930200053965] +15:54:10 [ 3] [ 6] [301000] +15:54:10 [ 4] [ 12] [000000000000] +15:54:10 [ 7] [ 10] [0320155159] +15:54:10 [ 11] [ 6] [950650] +15:54:10 [ 12] [ 6] [155159] +15:54:10 [ 13] [ 4] [0320] +15:54:10 [ 15] [ 4] [0320] +15:54:10 [ 18] [ 4] [6011] +15:54:10 [ 19] [ 3] [418] +15:54:10 [ 22] [ 3] [021] +15:54:10 [ 25] [ 2] [01] +15:54:10 [ 28] [ 9] [D00000000] +15:54:10 [ 32] [ 6] [668899] +15:54:10 [ 35] [ 27] [1808930200053965=1803500034] +15:54:10 [ 37] [ 12] [507900184332] +15:54:10 [ 41] [ 8] [03001002] +15:54:10 [ 42] [ 15] [APT ] +15:54:10 [ 43] [ 40] [ CHOMPHET SERVICE UNIT HAD] +15:54:10 [ 49] [ 3] [418] +15:54:10 [ 52] [ 16] [EEA1B86A6619C6AE] +15:54:10 ============================================================================ +15:54:10 + + +waiting on router queue for slot.... +15:54:10 Sending to : +15:54:10 ============================================================================ +15:54:10 ============================================================================ +15:54:10 Slot Id : <21> +15:54:10 Transaction Type : REQUEST +15:54:10 Received From : +15:54:10 ============================================================================ +15:54:10 FNo. Len. Field Value +15:54:10 ============================================================================ +15:54:10 [ 1] [ 4] [0200] +15:54:10 [ 2] [ 16] [1808930200053965] +15:54:10 [ 3] [ 6] [301000] +15:54:10 [ 4] [ 12] [000000000000] +15:54:10 [ 7] [ 10] [0320155159] +15:54:10 [ 11] [ 6] [950650] +15:54:10 [ 12] [ 6] [155159] +15:54:10 [ 13] [ 4] [0320] +15:54:10 [ 15] [ 4] [0320] +15:54:10 [ 18] [ 4] [6011] +15:54:10 [ 19] [ 3] [418] +15:54:10 [ 22] [ 3] [021] +15:54:10 [ 25] [ 2] [01] +15:54:10 [ 28] [ 9] [D00000000] +15:54:10 [ 32] [ 6] [668899] +15:54:10 [ 35] [ 27] [1808930200053965=1803500034] +15:54:10 [ 37] [ 12] [507900184332] +15:54:10 [ 41] [ 8] [03001002] +15:54:10 [ 42] [ 15] [APT ] +15:54:10 [ 43] [ 40] [ CHOMPHET SERVICE UNIT HAD] +15:54:10 [ 49] [ 3] [418] +15:54:10 [ 52] [ 16] [7ECD5FE50620693C] +15:54:10 ============================================================================ +15:54:10 + + +waiting on router queue for slot.... +15:54:10 Sending to : <2> +15:54:10 ============================================================================ +15:54:12 ============================================================================ +15:54:12 Slot Id : <21> +15:54:12 Transaction Type : RESPONSE +15:54:12 Received From : +15:54:12 ============================================================================ +15:54:12 FNo. Len. Field Value +15:54:12 ============================================================================ +15:54:12 [ 1] [ 4] [0210] +15:54:12 [ 2] [ 16] [1808930200053965] +15:54:12 [ 3] [ 6] [301000] +15:54:12 [ 7] [ 10] [0320155159] +15:54:12 [ 11] [ 6] [950650] +15:54:12 [ 12] [ 6] [155159] +15:54:12 [ 13] [ 4] [0320] +15:54:12 [ 14] [ 4] [1803] +15:54:12 [ 19] [ 3] [418] +15:54:12 [ 32] [ 6] [668899] +15:54:12 [ 37] [ 12] [507900184332] +15:54:12 [ 39] [ 2] [14] +15:54:12 [ 41] [ 8] [03001002] +15:54:12 [ 49] [ 3] [418] +15:54:12 [ 52] [ 16] [7ECD5FE50620693C] +15:54:12 ============================================================================ +15:54:12 Sending to : +15:54:12 ============================================================================ +15:54:12 + + +waiting on router queue for slot.... +15:54:13 ============================================================================ +15:54:13 Slot Id : <21> +15:54:13 Transaction Type : RESPONSE +15:54:13 Received From : +15:54:13 ============================================================================ +15:54:13 FNo. Len. Field Value +15:54:13 ============================================================================ +15:54:13 [ 1] [ 4] [0210] +15:54:13 [ 2] [ 16] [1808930200053965] +15:54:13 [ 3] [ 6] [301000] +15:54:13 [ 7] [ 10] [0320155159] +15:54:13 [ 11] [ 6] [950650] +15:54:13 [ 12] [ 6] [155159] +15:54:13 [ 13] [ 4] [0320] +15:54:13 [ 14] [ 4] [1803] +15:54:13 [ 19] [ 3] [418] +15:54:13 [ 32] [ 6] [668899] +15:54:13 [ 37] [ 12] [507900184332] +15:54:13 [ 39] [ 2] [14] +15:54:13 [ 41] [ 8] [03001002] +15:54:13 [ 49] [ 3] [418] +15:54:13 [ 52] [ 16] [7ECD5FE50620693C] +15:54:13 ============================================================================ +15:54:13 Calculate Source COMM Id = 4 +15:54:13 ============================================================================ +15:54:13 + + +waiting on router queue for slot.... +15:54:17 ============================================================================ +15:54:17 Slot Id : <496> +15:54:17 Transaction Type : REQUEST +15:54:17 Received From : +15:54:17 ============================================================================ +15:54:17 FNo. Len. Field Value +15:54:17 ============================================================================ +15:54:17 [ 1] [ 4] [0800] +15:54:17 [ 7] [ 10] [0320230606] +15:54:17 [ 11] [ 6] [160606] +15:54:17 [ 37] [ 12] [57916160606] +15:54:17 [ 70] [ 3] [301] +15:54:17 ============================================================================ +15:54:17 + + +waiting on router queue for slot.... +15:54:17 Sending to : +15:54:17 ============================================================================ +15:54:17 ============================================================================ +15:54:17 Slot Id : <496> +15:54:17 Transaction Type : RESPONSE +15:54:17 Received From : +15:54:17 ============================================================================ +15:54:17 FNo. Len. Field Value +15:54:17 ============================================================================ +15:54:17 [ 1] [ 4] [0810] +15:54:17 [ 7] [ 10] [0320230606] +15:54:17 [ 11] [ 6] [160606] +15:54:17 [ 37] [ 12] [579161606060] +15:54:17 [ 39] [ 2] [00] +15:54:17 [ 70] [ 3] [810] +15:54:17 ============================================================================ +15:54:17 Calculate Source COMM Id = 6 +15:54:17 ============================================================================ +15:54:17 + + +waiting on router queue for slot.... +15:54:20 ============================================================================ +15:54:20 Slot Id : <30> +15:54:20 Transaction Type : REQUEST +15:54:20 Received From : +15:54:20 ============================================================================ +15:54:20 FNo. Len. Field Value +15:54:20 ============================================================================ +15:54:20 [ 1] [ 4] [0200] +15:54:20 [ 2] [ 16] [6213544001812244] +15:54:20 [ 3] [ 6] [011000] +15:54:20 [ 4] [ 12] [000030000000] +15:54:20 [ 7] [ 10] [0320085326] +15:54:20 [ 11] [ 6] [270175] +15:54:20 [ 12] [ 6] [155326] +15:54:20 [ 13] [ 4] [0320] +15:54:20 [ 14] [ 4] [4912] +15:54:20 [ 15] [ 4] [0320] +15:54:20 [ 18] [ 4] [6011] +15:54:20 [ 19] [ 3] [418] +15:54:20 [ 22] [ 3] [021] +15:54:20 [ 25] [ 2] [01] +15:54:20 [ 28] [ 9] [D00002000] +15:54:20 [ 32] [ 6] [180893] +15:54:20 [ 35] [ 32] [6213544001812244=491212011224321] +15:54:20 [ 37] [ 12] [507908270175] +15:54:20 [ 41] [ 8] [0528LPBP] +15:54:20 [ 42] [ 15] [999999 ] +15:54:20 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +15:54:20 [ 49] [ 3] [418] +15:54:20 [ 52] [ 16] [245F75B7976A9FCC] +15:54:20 ============================================================================ +15:54:20 + + +waiting on router queue for slot.... +15:54:20 Sending to : +15:54:20 ============================================================================ +15:54:20 Sending to : +15:54:20 ============================================================================ +15:54:21 ============================================================================ +15:54:21 Slot Id : <30> +15:54:21 Transaction Type : REQUEST +15:54:21 Received From : +15:54:21 ============================================================================ +15:54:21 FNo. Len. Field Value +15:54:21 ============================================================================ +15:54:21 [ 1] [ 4] [0200] +15:54:21 [ 2] [ 16] [6213544001812244] +15:54:21 [ 3] [ 6] [011000] +15:54:21 [ 4] [ 12] [000030000000] +15:54:21 [ 7] [ 10] [0320085326] +15:54:21 [ 11] [ 6] [270175] +15:54:21 [ 12] [ 6] [155326] +15:54:21 [ 13] [ 4] [0320] +15:54:21 [ 14] [ 4] [4912] +15:54:21 [ 15] [ 4] [0320] +15:54:21 [ 18] [ 4] [6011] +15:54:21 [ 19] [ 3] [418] +15:54:21 [ 22] [ 3] [021] +15:54:21 [ 25] [ 2] [01] +15:54:21 [ 28] [ 9] [D00002000] +15:54:21 [ 32] [ 6] [180893] +15:54:21 [ 35] [ 32] [6213544001812244=491212011224321] +15:54:21 [ 37] [ 12] [507908270175] +15:54:21 [ 41] [ 8] [0528LPBP] +15:54:21 [ 42] [ 15] [999999 ] +15:54:21 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +15:54:21 [ 49] [ 3] [418] +15:54:21 [ 52] [ 16] [245F75B7976A9FCC] +15:54:21 ============================================================================ +15:54:21 + + +waiting on router queue for slot.... +15:54:21 Sending to : +15:54:21 ============================================================================ +15:54:21 ============================================================================ +15:54:21 Slot Id : <30> +15:54:21 Transaction Type : REQUEST +15:54:21 Received From : +15:54:21 ============================================================================ +15:54:21 FNo. Len. Field Value +15:54:21 ============================================================================ +15:54:21 [ 1] [ 4] [0200] +15:54:21 [ 2] [ 16] [6213544001812244] +15:54:21 [ 3] [ 6] [011000] +15:54:21 [ 4] [ 12] [000030000000] +15:54:21 [ 7] [ 10] [0320085326] +15:54:21 [ 11] [ 6] [270175] +15:54:21 [ 12] [ 6] [155326] +15:54:21 [ 13] [ 4] [0320] +15:54:21 [ 14] [ 4] [4912] +15:54:21 [ 15] [ 4] [0320] +15:54:21 [ 18] [ 4] [6011] +15:54:21 [ 19] [ 3] [418] +15:54:21 [ 22] [ 3] [021] +15:54:21 [ 25] [ 2] [01] +15:54:21 [ 28] [ 9] [D00002000] +15:54:21 [ 32] [ 6] [180893] +15:54:21 [ 35] [ 32] [6213544001812244=491212011224321] +15:54:21 [ 37] [ 12] [507908270175] +15:54:21 [ 41] [ 8] [0528LPBP] +15:54:21 [ 42] [ 15] [999999 ] +15:54:21 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +15:54:21 [ 49] [ 3] [418] +15:54:21 [ 52] [ 16] [61C25A891389FB92] +15:54:21 ============================================================================ +15:54:21 + + +waiting on router queue for slot.... +15:54:21 Sending to : <0> +15:54:21 ============================================================================ +15:54:21 ============================================================================ +15:54:21 Slot Id : <30> +15:54:21 Transaction Type : RESPONSE +15:54:21 Received From : +15:54:21 ============================================================================ +15:54:21 FNo. Len. Field Value +15:54:21 ============================================================================ +15:54:21 [ 1] [ 4] [0210] +15:54:21 [ 2] [ 16] [6213544001812244] +15:54:21 [ 3] [ 6] [011000] +15:54:21 [ 4] [ 12] [000030000000] +15:54:21 [ 7] [ 10] [0320085326] +15:54:21 [ 11] [ 6] [270175] +15:54:21 [ 12] [ 6] [155326] +15:54:21 [ 13] [ 4] [0320] +15:54:21 [ 15] [ 4] [0320] +15:54:21 [ 18] [ 4] [6011] +15:54:21 [ 19] [ 3] [418] +15:54:21 [ 32] [ 6] [180893] +15:54:21 [ 35] [ 32] [6213544001812244=491212011224321] +15:54:21 [ 37] [ 12] [507908270175] +15:54:21 [ 38] [ 6] [257972] +15:54:21 [ 39] [ 2] [00] +15:54:21 [ 41] [ 8] [0528LPBP] +15:54:21 [ 49] [ 3] [418] +15:54:21 [ 54] [ 40] [1001418C0026210911691002418C002621091169] +15:54:21 ============================================================================ +15:54:21 Sending to : +15:54:21 ============================================================================ +15:54:21 + + +waiting on router queue for slot.... +15:54:23 ============================================================================ +15:54:23 Slot Id : <30> +15:54:23 Transaction Type : RESPONSE +15:54:23 Received From : +15:54:23 ============================================================================ +15:54:23 FNo. Len. Field Value +15:54:23 ============================================================================ +15:54:23 [ 1] [ 4] [0210] +15:54:23 [ 2] [ 16] [6213544001812244] +15:54:23 [ 3] [ 6] [011000] +15:54:23 [ 4] [ 12] [000030000000] +15:54:23 [ 7] [ 10] [0320085326] +15:54:23 [ 11] [ 6] [270175] +15:54:23 [ 12] [ 6] [155326] +15:54:23 [ 13] [ 4] [0320] +15:54:23 [ 15] [ 4] [0320] +15:54:23 [ 18] [ 4] [6011] +15:54:23 [ 19] [ 3] [418] +15:54:23 [ 32] [ 6] [180893] +15:54:23 [ 35] [ 32] [6213544001812244=491212011224321] +15:54:23 [ 37] [ 12] [507908270175] +15:54:23 [ 38] [ 6] [257972] +15:54:23 [ 39] [ 2] [00] +15:54:23 [ 41] [ 8] [0528LPBP] +15:54:23 [ 49] [ 3] [418] +15:54:23 [ 54] [ 40] [1001418C0026210911691002418C002621091169] +15:54:23 ============================================================================ +15:54:23 Calculate Source COMM Id = 2 +15:54:23 ============================================================================ +15:54:23 + + +waiting on router queue for slot.... +15:54:25 ============================================================================ +15:54:25 Slot Id : <37> +15:54:25 Transaction Type : REQUEST +15:54:25 Received From : +15:54:25 ============================================================================ +15:54:25 FNo. Len. Field Value +15:54:25 ============================================================================ +15:54:25 [ 1] [ 4] [0800] +15:54:25 [ 2] [ 5] [02531] +15:54:25 [ 3] [ 6] [579158] +15:54:25 [ 7] [ 10] [0320085425] +15:54:25 [ 11] [ 6] [807335] +15:54:25 [ 15] [ 10] [0320085425] +15:54:25 [ 37] [ 11] [57915807335] +15:54:25 [ 70] [ 3] [001] +15:54:25 ============================================================================ +15:54:25 + + +waiting on router queue for slot.... +15:54:25 ============================================================================ +15:54:25 Slot Id : <37> +15:54:25 Transaction Type : RESPONSE +15:54:25 Received From : +15:54:25 ============================================================================ +15:54:25 FNo. Len. Field Value +15:54:25 ============================================================================ +15:54:25 [ 1] [ 4] [0810] +15:54:25 [ 7] [ 10] [0320085425] +15:54:25 [ 11] [ 6] [807335] +15:54:25 [ 15] [ 4] [0320] +15:54:25 [ 37] [ 12] [57915807335] +15:54:25 [ 39] [ 2] [00] +15:54:25 [ 70] [ 3] [001] +15:54:25 ============================================================================ +15:54:25 Sending to : +15:54:25 ============================================================================ +15:54:25 + + +waiting on router queue for slot.... +15:54:37 ============================================================================ +15:54:37 Slot Id : <461> +15:54:37 Transaction Type : REQUEST +15:54:37 Received From : +15:54:37 ============================================================================ +15:54:37 FNo. Len. Field Value +15:54:37 ============================================================================ +15:54:37 [ 1] [ 4] [0800] +15:54:37 [ 7] [ 10] [0320085345] +15:54:37 [ 11] [ 6] [157120] +15:54:37 [ 70] [ 3] [301] +15:54:37 ============================================================================ +15:54:37 + + +waiting on router queue for slot.... +15:54:37 Sending to : +15:54:37 ============================================================================ +15:54:37 ============================================================================ +15:54:37 Slot Id : <461> +15:54:37 Transaction Type : RESPONSE +15:54:37 Received From : +15:54:37 ============================================================================ +15:54:37 FNo. Len. Field Value +15:54:37 ============================================================================ +15:54:37 [ 1] [ 4] [0810] +15:54:37 [ 7] [ 10] [0320085345] +15:54:37 [ 11] [ 6] [157120] +15:54:37 [ 39] [ 2] [00] +15:54:37 [ 70] [ 3] [301] +15:54:37 ============================================================================ +15:54:37 Calculate Source COMM Id = 2 +15:54:37 ============================================================================ +15:54:37 + + +waiting on router queue for slot.... +15:54:41 ============================================================================ +15:54:41 Slot Id : <9> +15:54:41 Transaction Type : REQUEST +15:54:41 Received From : +15:54:41 ============================================================================ +15:54:41 FNo. Len. Field Value +15:54:41 ============================================================================ +15:54:41 [ 1] [ 4] [0800] +15:54:41 [ 7] [ 10] [0320155427] +15:54:41 [ 11] [ 6] [035535] +15:54:41 [ 37] [ 12] [507915035535] +15:54:41 [ 70] [ 3] [ ] +15:54:41 ============================================================================ +15:54:41 + + +waiting on router queue for slot.... +15:54:41 Sending to : +15:54:41 ============================================================================ +15:54:41 ============================================================================ +15:54:41 Slot Id : <9> +15:54:41 Transaction Type : RESPONSE +15:54:41 Received From : +15:54:41 ============================================================================ +15:54:41 FNo. Len. Field Value +15:54:41 ============================================================================ +15:54:41 [ 1] [ 4] [0810] +15:54:41 [ 7] [ 10] [0320155427] +15:54:41 [ 11] [ 6] [035535] +15:54:41 [ 37] [ 12] [507915035535] +15:54:41 [ 39] [ 2] [91] +15:54:41 [ 70] [ 3] [ ] +15:54:41 ============================================================================ +15:54:41 Calculate Source COMM Id = 3 +15:54:41 ============================================================================ +15:54:41 + + +waiting on router queue for slot.... +15:54:45 ============================================================================ +15:54:45 Slot Id : <45> +15:54:45 Transaction Type : REQUEST +15:54:45 Received From : +15:54:45 ============================================================================ +15:54:45 FNo. Len. Field Value +15:54:45 ============================================================================ +15:54:45 [ 1] [ 4] [0200] +15:54:45 [ 2] [ 16] [6688990103276307] +15:54:45 [ 3] [ 6] [010000] +15:54:45 [ 4] [ 12] [000040000000] +15:54:45 [ 7] [ 10] [0320155441] +15:54:45 [ 11] [ 6] [790183] +15:54:45 [ 12] [ 6] [155441] +15:54:45 [ 13] [ 4] [0320] +15:54:45 [ 15] [ 4] [0320] +15:54:45 [ 18] [ 4] [6011] +15:54:45 [ 22] [ 3] [900] +15:54:45 [ 25] [ 2] [02] +15:54:45 [ 28] [ 9] [D00002000] +15:54:45 [ 32] [ 6] [621354] +15:54:45 [ 35] [ 37] [6688990103276307=42121231630745000000] +15:54:45 [ 37] [ 12] [507903499544] +15:54:45 [ 41] [ 8] [06002200] +15:54:45 [ 42] [ 15] [NATIVE ] +15:54:45 [ 43] [ 40] [Beng Market Beng LAO] +15:54:45 [ 49] [ 3] [418] +15:54:45 [ 52] [ 16] [DE165791321DF1B6] +15:54:45 ============================================================================ +15:54:45 + + +waiting on router queue for slot.... +15:54:45 Sending to : +15:54:45 ============================================================================ +15:54:45 Sending to : +15:54:45 ============================================================================ +15:54:46 ============================================================================ +15:54:46 Slot Id : <45> +15:54:46 Transaction Type : REQUEST +15:54:46 Received From : +15:54:46 ============================================================================ +15:54:46 FNo. Len. Field Value +15:54:46 ============================================================================ +15:54:46 [ 1] [ 4] [0200] +15:54:46 [ 2] [ 16] [6688990103276307] +15:54:46 [ 3] [ 6] [010000] +15:54:46 [ 4] [ 12] [000040000000] +15:54:46 [ 7] [ 10] [0320155441] +15:54:46 [ 11] [ 6] [790183] +15:54:46 [ 12] [ 6] [155441] +15:54:46 [ 13] [ 4] [0320] +15:54:46 [ 15] [ 4] [0320] +15:54:46 [ 18] [ 4] [6011] +15:54:46 [ 22] [ 3] [900] +15:54:46 [ 25] [ 2] [02] +15:54:46 [ 28] [ 9] [D00002000] +15:54:46 [ 32] [ 6] [621354] +15:54:46 [ 35] [ 37] [6688990103276307=42121231630745000000] +15:54:46 [ 37] [ 12] [507903499544] +15:54:46 [ 41] [ 8] [06002200] +15:54:46 [ 42] [ 15] [NATIVE ] +15:54:46 [ 43] [ 40] [Beng Market Beng LAO] +15:54:46 [ 49] [ 3] [418] +15:54:46 [ 52] [ 16] [DE165791321DF1B6] +15:54:46 ============================================================================ +15:54:46 + + +waiting on router queue for slot.... +15:54:46 Sending to : +15:54:46 ============================================================================ +15:54:46 ============================================================================ +15:54:46 Slot Id : <45> +15:54:46 Transaction Type : REQUEST +15:54:46 Received From : +15:54:46 ============================================================================ +15:54:46 FNo. Len. Field Value +15:54:46 ============================================================================ +15:54:46 [ 1] [ 4] [0200] +15:54:46 [ 2] [ 16] [6688990103276307] +15:54:46 [ 3] [ 6] [010000] +15:54:46 [ 4] [ 12] [000040000000] +15:54:46 [ 7] [ 10] [0320155441] +15:54:46 [ 11] [ 6] [790183] +15:54:46 [ 12] [ 6] [155441] +15:54:46 [ 13] [ 4] [0320] +15:54:46 [ 15] [ 4] [0320] +15:54:46 [ 18] [ 4] [6011] +15:54:46 [ 22] [ 3] [900] +15:54:46 [ 25] [ 2] [02] +15:54:46 [ 28] [ 9] [D00002000] +15:54:46 [ 32] [ 6] [621354] +15:54:46 [ 35] [ 37] [6688990103276307=42121231630745000000] +15:54:46 [ 37] [ 12] [507903499544] +15:54:46 [ 41] [ 8] [06002200] +15:54:46 [ 42] [ 15] [NATIVE ] +15:54:46 [ 43] [ 40] [Beng Market Beng LAO] +15:54:46 [ 49] [ 3] [418] +15:54:46 [ 52] [ 16] [D53E121F55442A1F] +15:54:46 ============================================================================ +15:54:46 + + +waiting on router queue for slot.... +15:54:46 Sending to : <4> +15:54:46 ============================================================================ +15:54:47 ============================================================================ +15:54:47 Slot Id : <45> +15:54:47 Transaction Type : RESPONSE +15:54:47 Received From : +15:54:47 ============================================================================ +15:54:47 FNo. Len. Field Value +15:54:47 ============================================================================ +15:54:47 [ 1] [ 4] [0210] +15:54:47 [ 2] [ 16] [6688990103276307] +15:54:47 [ 3] [ 6] [010000] +15:54:47 [ 4] [ 12] [000040000000] +15:54:47 [ 11] [ 6] [790183] +15:54:47 [ 12] [ 6] [155441] +15:54:47 [ 15] [ 4] [0320] +15:54:47 [ 18] [ 4] [6011] +15:54:47 [ 32] [ 6] [621354] +15:54:47 [ 35] [ 37] [6688990103276307=42121231630745000000] +15:54:47 [ 37] [ 12] [507903499544] +15:54:47 [ 38] [ 6] [297558] +15:54:47 [ 39] [ 2] [00] +15:54:47 [ 41] [ 8] [06002200] +15:54:47 [ 49] [ 3] [418] +15:54:47 [ 54] [ 20] [0002418C000209956821] +15:54:47 ============================================================================ +15:54:47 Sending to : +15:54:47 ============================================================================ +15:54:47 + + +waiting on router queue for slot.... +15:54:49 ============================================================================ +15:54:49 Slot Id : <36> +15:54:49 Transaction Type : REQUEST +15:54:49 Received From : +15:54:49 ============================================================================ +15:54:49 FNo. Len. Field Value +15:54:49 ============================================================================ +15:54:49 [ 1] [ 4] [0800] +15:54:49 [ 7] [ 10] [0320085355] +15:54:49 [ 11] [ 6] [157121] +15:54:49 [ 70] [ 3] [301] +15:54:49 ============================================================================ +15:54:49 + + +waiting on router queue for slot.... +15:54:49 Sending to : +15:54:49 ============================================================================ +15:54:49 ============================================================================ +15:54:49 Slot Id : <36> +15:54:49 Transaction Type : RESPONSE +15:54:49 Received From : +15:54:49 ============================================================================ +15:54:49 FNo. Len. Field Value +15:54:49 ============================================================================ +15:54:49 [ 1] [ 4] [0810] +15:54:49 [ 7] [ 10] [0320085355] +15:54:49 [ 11] [ 6] [157121] +15:54:49 [ 39] [ 2] [00] +15:54:49 [ 70] [ 3] [301] +15:54:49 ============================================================================ +15:54:49 Calculate Source COMM Id = 2 +15:54:49 ============================================================================ +15:54:49 + + +waiting on router queue for slot.... +15:54:49 ============================================================================ +15:54:49 Slot Id : <45> +15:54:49 Transaction Type : RESPONSE +15:54:49 Received From : +15:54:49 ============================================================================ +15:54:49 FNo. Len. Field Value +15:54:49 ============================================================================ +15:54:49 [ 1] [ 4] [0210] +15:54:49 [ 2] [ 16] [6688990103276307] +15:54:49 [ 3] [ 6] [010000] +15:54:49 [ 4] [ 12] [000040000000] +15:54:49 [ 11] [ 6] [790183] +15:54:49 [ 12] [ 6] [155441] +15:54:49 [ 15] [ 4] [0320] +15:54:49 [ 18] [ 4] [6011] +15:54:49 [ 32] [ 6] [621354] +15:54:49 [ 35] [ 37] [6688990103276307=42121231630745000000] +15:54:49 [ 37] [ 12] [507903499544] +15:54:49 [ 38] [ 6] [297558] +15:54:49 [ 39] [ 2] [00] +15:54:49 [ 41] [ 8] [06002200] +15:54:49 [ 49] [ 3] [418] +15:54:49 [ 54] [ 20] [0002418C000209956821] +15:54:49 ============================================================================ +15:54:49 Calculate Source COMM Id = 0 +15:54:49 ============================================================================ +15:54:49 + + +waiting on router queue for slot.... +15:54:50 ============================================================================ +15:54:50 Slot Id : <18> +15:54:50 Transaction Type : REQUEST +15:54:50 Received From : +15:54:50 ============================================================================ +15:54:50 FNo. Len. Field Value +15:54:50 ============================================================================ +15:54:50 [ 1] [ 4] [0200] +15:54:50 [ 2] [ 16] [6688990108545003] +15:54:50 [ 3] [ 6] [012000] +15:54:50 [ 4] [ 12] [000010000000] +15:54:50 [ 7] [ 10] [0320155445] +15:54:50 [ 11] [ 6] [790198] +15:54:50 [ 12] [ 6] [155445] +15:54:50 [ 13] [ 4] [0320] +15:54:50 [ 15] [ 4] [0320] +15:54:50 [ 18] [ 4] [6011] +15:54:50 [ 22] [ 3] [900] +15:54:50 [ 25] [ 2] [02] +15:54:50 [ 28] [ 9] [D00002000] +15:54:50 [ 32] [ 6] [621354] +15:54:50 [ 35] [ 37] [6688990108545003=44061231500393300000] +15:54:50 [ 37] [ 12] [507904315398] +15:54:50 [ 41] [ 8] [03003000] +15:54:50 [ 42] [ 15] [NATIVE ] +15:54:50 [ 43] [ 40] [Phonesavan KaisonephomvLAO] +15:54:50 [ 49] [ 3] [418] +15:54:50 [ 52] [ 16] [823F7CF6FDDA9AF3] +15:54:50 ============================================================================ +15:54:50 + + +waiting on router queue for slot.... +15:54:50 Sending to : +15:54:50 ============================================================================ +15:54:50 Sending to : +15:54:50 ============================================================================ +15:54:50 ============================================================================ +15:54:50 Slot Id : <18> +15:54:50 Transaction Type : REQUEST +15:54:50 Received From : +15:54:50 ============================================================================ +15:54:50 FNo. Len. Field Value +15:54:50 ============================================================================ +15:54:50 [ 1] [ 4] [0200] +15:54:50 [ 2] [ 16] [6688990108545003] +15:54:50 [ 3] [ 6] [012000] +15:54:50 [ 4] [ 12] [000010000000] +15:54:50 [ 7] [ 10] [0320155445] +15:54:50 [ 11] [ 6] [790198] +15:54:50 [ 12] [ 6] [155445] +15:54:50 [ 13] [ 4] [0320] +15:54:50 [ 15] [ 4] [0320] +15:54:50 [ 18] [ 4] [6011] +15:54:50 [ 22] [ 3] [900] +15:54:50 [ 25] [ 2] [02] +15:54:50 [ 28] [ 9] [D00002000] +15:54:50 [ 32] [ 6] [621354] +15:54:50 [ 35] [ 37] [6688990108545003=44061231500393300000] +15:54:50 [ 37] [ 12] [507904315398] +15:54:50 [ 41] [ 8] [03003000] +15:54:50 [ 42] [ 15] [NATIVE ] +15:54:50 [ 43] [ 40] [Phonesavan KaisonephomvLAO] +15:54:50 [ 49] [ 3] [418] +15:54:50 [ 52] [ 16] [823F7CF6FDDA9AF3] +15:54:50 ============================================================================ +15:54:50 + + +waiting on router queue for slot.... +15:54:50 Sending to : +15:54:50 ============================================================================ +15:54:50 ============================================================================ +15:54:50 Slot Id : <18> +15:54:50 Transaction Type : REQUEST +15:54:50 Received From : +15:54:50 ============================================================================ +15:54:50 FNo. Len. Field Value +15:54:50 ============================================================================ +15:54:50 [ 1] [ 4] [0200] +15:54:50 [ 2] [ 16] [6688990108545003] +15:54:50 [ 3] [ 6] [012000] +15:54:50 [ 4] [ 12] [000010000000] +15:54:50 [ 7] [ 10] [0320155445] +15:54:50 [ 11] [ 6] [790198] +15:54:50 [ 12] [ 6] [155445] +15:54:50 [ 13] [ 4] [0320] +15:54:50 [ 15] [ 4] [0320] +15:54:50 [ 18] [ 4] [6011] +15:54:50 [ 22] [ 3] [900] +15:54:50 [ 25] [ 2] [02] +15:54:50 [ 28] [ 9] [D00002000] +15:54:50 [ 32] [ 6] [621354] +15:54:50 [ 35] [ 37] [6688990108545003=44061231500393300000] +15:54:50 [ 37] [ 12] [507904315398] +15:54:50 [ 41] [ 8] [03003000] +15:54:50 [ 42] [ 15] [NATIVE ] +15:54:50 [ 43] [ 40] [Phonesavan KaisonephomvLAO] +15:54:50 [ 49] [ 3] [418] +15:54:50 [ 52] [ 16] [DC6C40C9D967FDE9] +15:54:50 ============================================================================ +15:54:50 + + +waiting on router queue for slot.... +15:54:50 Sending to : <4> +15:54:50 ============================================================================ +15:54:50 ============================================================================ +15:54:50 Slot Id : <18> +15:54:50 Transaction Type : RESPONSE +15:54:50 Received From : +15:54:50 ============================================================================ +15:54:50 FNo. Len. Field Value +15:54:50 ============================================================================ +15:54:50 [ 1] [ 4] [0210] +15:54:50 [ 2] [ 16] [6688990108545003] +15:54:50 [ 3] [ 6] [012000] +15:54:50 [ 4] [ 12] [000010000000] +15:54:50 [ 11] [ 6] [790198] +15:54:50 [ 12] [ 6] [155445] +15:54:50 [ 15] [ 4] [0320] +15:54:50 [ 18] [ 4] [6011] +15:54:50 [ 32] [ 6] [621354] +15:54:50 [ 35] [ 37] [6688990108545003=44061231500393300000] +15:54:50 [ 37] [ 12] [507904315398] +15:54:50 [ 39] [ 2] [51] +15:54:50 [ 41] [ 8] [03003000] +15:54:50 [ 49] [ 3] [418] +15:54:50 [ 54] [ 0] [] +15:54:50 ============================================================================ +15:54:50 Sending to : +15:54:50 ============================================================================ +15:54:50 + + +waiting on router queue for slot.... +15:54:51 ============================================================================ +15:54:51 Slot Id : <18> +15:54:51 Transaction Type : RESPONSE +15:54:51 Received From : +15:54:51 ============================================================================ +15:54:51 FNo. Len. Field Value +15:54:51 ============================================================================ +15:54:51 [ 1] [ 4] [0210] +15:54:51 [ 2] [ 16] [6688990108545003] +15:54:51 [ 3] [ 6] [012000] +15:54:51 [ 4] [ 12] [000010000000] +15:54:51 [ 11] [ 6] [790198] +15:54:51 [ 12] [ 6] [155445] +15:54:51 [ 15] [ 4] [0320] +15:54:51 [ 18] [ 4] [6011] +15:54:51 [ 32] [ 6] [621354] +15:54:51 [ 35] [ 37] [6688990108545003=44061231500393300000] +15:54:51 [ 37] [ 12] [507904315398] +15:54:51 [ 39] [ 2] [51] +15:54:51 [ 41] [ 8] [03003000] +15:54:51 [ 49] [ 3] [418] +15:54:51 [ 54] [ 0] [] +15:54:51 ============================================================================ +15:54:51 Calculate Source COMM Id = 0 +15:54:51 ============================================================================ +15:54:51 + + +waiting on router queue for slot.... +15:54:55 ============================================================================ +15:54:55 Slot Id : <497> +15:54:55 Transaction Type : REQUEST +15:54:55 Received From : +15:54:55 ============================================================================ +15:54:55 FNo. Len. Field Value +15:54:55 ============================================================================ +15:54:55 [ 1] [ 4] [0800] +15:54:55 [ 7] [ 10] [0320090242] +15:54:55 [ 11] [ 6] [060510] +15:54:55 [ 37] [ 12] [57916060510] +15:54:55 [ 70] [ 3] [301] +15:54:55 ============================================================================ +15:54:55 + + +waiting on router queue for slot.... +15:54:55 Sending to : +15:54:55 ============================================================================ +15:54:55 ============================================================================ +15:54:55 Slot Id : <497> +15:54:55 Transaction Type : RESPONSE +15:54:55 Received From : +15:54:55 ============================================================================ +15:54:55 FNo. Len. Field Value +15:54:55 ============================================================================ +15:54:55 [ 1] [ 4] [0810] +15:54:55 [ 7] [ 10] [0320090242] +15:54:55 [ 11] [ 6] [060510] +15:54:55 [ 37] [ 12] [579160605100] +15:54:55 [ 39] [ 2] [00] +15:54:55 [ 70] [ 3] [810] +15:54:55 ============================================================================ +15:54:55 Calculate Source COMM Id = 1 +15:54:55 ============================================================================ +15:54:55 + + +waiting on router queue for slot.... +15:55:04 ============================================================================ +15:55:04 Slot Id : <40> +15:55:04 Transaction Type : REQUEST +15:55:04 Received From : +15:55:04 ============================================================================ +15:55:04 FNo. Len. Field Value +15:55:04 ============================================================================ +15:55:04 [ 1] [ 4] [0800] +15:55:04 [ 7] [ 10] [0320085411] +15:55:04 [ 11] [ 6] [157122] +15:55:04 [ 70] [ 3] [301] +15:55:04 ============================================================================ +15:55:04 + + +waiting on router queue for slot.... +15:55:04 Sending to : +15:55:04 ============================================================================ +15:55:04 ============================================================================ +15:55:04 Slot Id : <40> +15:55:04 Transaction Type : RESPONSE +15:55:04 Received From : +15:55:04 ============================================================================ +15:55:04 FNo. Len. Field Value +15:55:04 ============================================================================ +15:55:04 [ 1] [ 4] [0810] +15:55:04 [ 7] [ 10] [0320085411] +15:55:04 [ 11] [ 6] [157122] +15:55:04 [ 39] [ 2] [00] +15:55:04 [ 70] [ 3] [301] +15:55:04 ============================================================================ +15:55:04 Calculate Source COMM Id = 2 +15:55:04 ============================================================================ +15:55:04 + + +waiting on router queue for slot.... +15:55:05 ============================================================================ +15:55:05 Slot Id : <8> +15:55:05 Transaction Type : REQUEST +15:55:05 Received From : +15:55:05 ============================================================================ +15:55:05 FNo. Len. Field Value +15:55:05 ============================================================================ +15:55:05 [ 1] [ 4] [0200] +15:55:05 [ 2] [ 16] [1808931800010025] +15:55:05 [ 3] [ 6] [300000] +15:55:05 [ 4] [ 12] [000000000000] +15:55:05 [ 7] [ 10] [0320155500] +15:55:05 [ 11] [ 6] [790239] +15:55:05 [ 12] [ 6] [155500] +15:55:05 [ 13] [ 4] [0320] +15:55:05 [ 15] [ 4] [0320] +15:55:05 [ 18] [ 4] [6011] +15:55:05 [ 22] [ 3] [900] +15:55:05 [ 25] [ 2] [02] +15:55:05 [ 28] [ 9] [D00000000] +15:55:05 [ 32] [ 6] [621354] +15:55:05 [ 35] [ 27] [1808931800010025=1803500470] +15:55:05 [ 37] [ 12] [507904635785] +15:55:05 [ 41] [ 8] [17000800] +15:55:05 [ 42] [ 15] [NATIVE ] +15:55:05 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:55:05 [ 49] [ 3] [418] +15:55:05 [ 52] [ 16] [50529C2085BB79C7] +15:55:05 ============================================================================ +15:55:05 + + +waiting on router queue for slot.... +15:55:05 Sending to : +15:55:05 ============================================================================ +15:55:05 Sending to : +15:55:05 ============================================================================ +15:55:05 ============================================================================ +15:55:05 Slot Id : <8> +15:55:05 Transaction Type : REQUEST +15:55:05 Received From : +15:55:05 ============================================================================ +15:55:05 FNo. Len. Field Value +15:55:05 ============================================================================ +15:55:05 [ 1] [ 4] [0200] +15:55:05 [ 2] [ 16] [1808931800010025] +15:55:05 [ 3] [ 6] [300000] +15:55:05 [ 4] [ 12] [000000000000] +15:55:05 [ 7] [ 10] [0320155500] +15:55:05 [ 11] [ 6] [790239] +15:55:05 [ 12] [ 6] [155500] +15:55:05 [ 13] [ 4] [0320] +15:55:05 [ 15] [ 4] [0320] +15:55:05 [ 18] [ 4] [6011] +15:55:05 [ 22] [ 3] [900] +15:55:05 [ 25] [ 2] [02] +15:55:05 [ 28] [ 9] [D00000000] +15:55:05 [ 32] [ 6] [621354] +15:55:05 [ 35] [ 27] [1808931800010025=1803500470] +15:55:05 [ 37] [ 12] [507904635785] +15:55:05 [ 41] [ 8] [17000800] +15:55:05 [ 42] [ 15] [NATIVE ] +15:55:05 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:55:05 [ 49] [ 3] [418] +15:55:05 [ 52] [ 16] [50529C2085BB79C7] +15:55:05 ============================================================================ +15:55:05 + + +waiting on router queue for slot.... +15:55:05 Sending to : +15:55:05 ============================================================================ +15:55:05 ============================================================================ +15:55:05 Slot Id : <8> +15:55:05 Transaction Type : REQUEST +15:55:05 Received From : +15:55:05 ============================================================================ +15:55:05 FNo. Len. Field Value +15:55:05 ============================================================================ +15:55:05 [ 1] [ 4] [0200] +15:55:05 [ 2] [ 16] [1808931800010025] +15:55:05 [ 3] [ 6] [300000] +15:55:05 [ 4] [ 12] [000000000000] +15:55:05 [ 7] [ 10] [0320155500] +15:55:05 [ 11] [ 6] [790239] +15:55:05 [ 12] [ 6] [155500] +15:55:05 [ 13] [ 4] [0320] +15:55:05 [ 15] [ 4] [0320] +15:55:05 [ 18] [ 4] [6011] +15:55:05 [ 22] [ 3] [900] +15:55:05 [ 25] [ 2] [02] +15:55:05 [ 28] [ 9] [D00000000] +15:55:05 [ 32] [ 6] [621354] +15:55:05 [ 35] [ 27] [1808931800010025=1803500470] +15:55:05 [ 37] [ 12] [507904635785] +15:55:05 [ 41] [ 8] [17000800] +15:55:05 [ 42] [ 15] [NATIVE ] +15:55:05 [ 43] [ 40] [Ban Nakhai Naxay LAO] +15:55:05 [ 49] [ 3] [418] +15:55:05 [ 52] [ 16] [1FD0448BDA66FE7F] +15:55:05 ============================================================================ +15:55:05 + + +waiting on router queue for slot.... +15:55:05 Sending to : <2> +15:55:05 ============================================================================ +15:55:07 ============================================================================ +15:55:07 Slot Id : <8> +15:55:07 Transaction Type : RESPONSE +15:55:07 Received From : +15:55:07 ============================================================================ +15:55:07 FNo. Len. Field Value +15:55:07 ============================================================================ +15:55:07 [ 1] [ 4] [0210] +15:55:07 [ 2] [ 16] [1808931800010025] +15:55:07 [ 3] [ 6] [300000] +15:55:07 [ 7] [ 10] [0320155500] +15:55:07 [ 11] [ 6] [790239] +15:55:07 [ 12] [ 6] [155500] +15:55:07 [ 13] [ 4] [0320] +15:55:07 [ 14] [ 4] [1803] +15:55:07 [ 19] [ 3] [418] +15:55:07 [ 32] [ 6] [621354] +15:55:07 [ 37] [ 12] [507904635785] +15:55:07 [ 38] [ 6] [790239] +15:55:07 [ 39] [ 2] [00] +15:55:07 [ 41] [ 8] [17000800] +15:55:07 [ 49] [ 3] [418] +15:55:07 [ 52] [ 16] [1FD0448BDA66FE7F] +15:55:07 [ 54] [ 20] [0002418C000191360400] +15:55:07 ============================================================================ +15:55:07 Sending to : +15:55:07 ============================================================================ +15:55:07 + + +waiting on router queue for slot.... +15:55:08 ============================================================================ +15:55:08 Slot Id : <8> +15:55:08 Transaction Type : RESPONSE +15:55:08 Received From : +15:55:08 ============================================================================ +15:55:08 FNo. Len. Field Value +15:55:08 ============================================================================ +15:55:08 [ 1] [ 4] [0210] +15:55:08 [ 2] [ 16] [1808931800010025] +15:55:08 [ 3] [ 6] [300000] +15:55:08 [ 7] [ 10] [0320155500] +15:55:08 [ 11] [ 6] [790239] +15:55:08 [ 12] [ 6] [155500] +15:55:08 [ 13] [ 4] [0320] +15:55:08 [ 14] [ 4] [1803] +15:55:08 [ 19] [ 3] [418] +15:55:08 [ 32] [ 6] [621354] +15:55:08 [ 37] [ 12] [507904635785] +15:55:08 [ 38] [ 6] [790239] +15:55:08 [ 39] [ 2] [00] +15:55:08 [ 41] [ 8] [17000800] +15:55:08 [ 49] [ 3] [418] +15:55:08 [ 52] [ 16] [1FD0448BDA66FE7F] +15:55:08 [ 54] [ 20] [0002418C000191360400] +15:55:08 ============================================================================ +15:55:08 Calculate Source COMM Id = 0 +15:55:08 ============================================================================ +15:55:08 + + +waiting on router queue for slot.... +15:55:20 ============================================================================ +15:55:20 Slot Id : <28> +15:55:20 Transaction Type : REQUEST +15:55:20 Received From : +15:55:20 ============================================================================ +15:55:20 FNo. Len. Field Value +15:55:20 ============================================================================ +15:55:20 [ 1] [ 4] [0800] +15:55:20 [ 7] [ 10] [0320085427] +15:55:20 [ 11] [ 6] [157123] +15:55:20 [ 70] [ 3] [301] +15:55:20 ============================================================================ +15:55:20 + + +waiting on router queue for slot.... +15:55:20 Sending to : +15:55:20 ============================================================================ +15:55:20 ============================================================================ +15:55:20 Slot Id : <28> +15:55:20 Transaction Type : RESPONSE +15:55:20 Received From : +15:55:20 ============================================================================ +15:55:20 FNo. Len. Field Value +15:55:20 ============================================================================ +15:55:20 [ 1] [ 4] [0810] +15:55:20 [ 7] [ 10] [0320085427] +15:55:20 [ 11] [ 6] [157123] +15:55:20 [ 39] [ 2] [00] +15:55:20 [ 70] [ 3] [301] +15:55:20 ============================================================================ +15:55:20 Calculate Source COMM Id = 2 +15:55:20 ============================================================================ +15:55:20 + + +waiting on router queue for slot.... +15:55:22 ============================================================================ +15:55:22 Slot Id : <467> +15:55:22 Transaction Type : REQUEST +15:55:22 Received From : +15:55:22 ============================================================================ +15:55:22 FNo. Len. Field Value +15:55:22 ============================================================================ +15:55:22 [ 1] [ 4] [0800] +15:55:22 [ 7] [ 10] [0320230711] +15:55:22 [ 11] [ 6] [160711] +15:55:22 [ 37] [ 12] [57916160711] +15:55:22 [ 70] [ 3] [301] +15:55:22 ============================================================================ +15:55:22 + + +waiting on router queue for slot.... +15:55:22 Sending to : +15:55:22 ============================================================================ +15:55:22 ============================================================================ +15:55:22 Slot Id : <467> +15:55:22 Transaction Type : RESPONSE +15:55:22 Received From : +15:55:22 ============================================================================ +15:55:22 FNo. Len. Field Value +15:55:22 ============================================================================ +15:55:22 [ 1] [ 4] [0810] +15:55:22 [ 7] [ 10] [0320230711] +15:55:22 [ 11] [ 6] [160711] +15:55:22 [ 37] [ 12] [579161607110] +15:55:22 [ 39] [ 2] [00] +15:55:22 [ 70] [ 3] [810] +15:55:22 ============================================================================ +15:55:22 Calculate Source COMM Id = 6 +15:55:22 ============================================================================ +15:55:22 + + +waiting on router queue for slot.... +15:55:27 ============================================================================ +15:55:27 Slot Id : <43> +15:55:27 Transaction Type : REQUEST +15:55:27 Received From : +15:55:27 ============================================================================ +15:55:27 FNo. Len. Field Value +15:55:27 ============================================================================ +15:55:27 [ 1] [ 4] [0800] +15:55:27 [ 2] [ 5] [02531] +15:55:27 [ 3] [ 6] [579158] +15:55:27 [ 7] [ 10] [0320085527] +15:55:27 [ 11] [ 6] [807336] +15:55:27 [ 15] [ 10] [0320085527] +15:55:27 [ 37] [ 11] [57915807336] +15:55:27 [ 70] [ 3] [001] +15:55:27 ============================================================================ +15:55:27 + + +waiting on router queue for slot.... +15:55:27 ============================================================================ +15:55:27 Slot Id : <43> +15:55:27 Transaction Type : RESPONSE +15:55:27 Received From : +15:55:27 ============================================================================ +15:55:27 FNo. Len. Field Value +15:55:27 ============================================================================ +15:55:27 [ 1] [ 4] [0810] +15:55:27 [ 7] [ 10] [0320085527] +15:55:27 [ 11] [ 6] [807336] +15:55:27 [ 15] [ 4] [0320] +15:55:27 [ 37] [ 12] [57915807336] +15:55:27 [ 39] [ 2] [00] +15:55:27 [ 70] [ 3] [001] +15:55:27 ============================================================================ +15:55:27 Sending to : +15:55:27 ============================================================================ +15:55:27 + + +waiting on router queue for slot.... +15:55:31 ============================================================================ +15:55:31 Slot Id : <7> +15:55:31 Transaction Type : REQUEST +15:55:31 Received From : +15:55:31 ============================================================================ +15:55:31 FNo. Len. Field Value +15:55:31 ============================================================================ +15:55:31 [ 1] [ 4] [0800] +15:55:31 [ 7] [ 10] [0320085438] +15:55:31 [ 11] [ 6] [157124] +15:55:31 [ 70] [ 3] [301] +15:55:31 ============================================================================ +15:55:31 + + +waiting on router queue for slot.... +15:55:31 Sending to : +15:55:31 ============================================================================ +15:55:31 ============================================================================ +15:55:31 Slot Id : <7> +15:55:31 Transaction Type : RESPONSE +15:55:31 Received From : +15:55:31 ============================================================================ +15:55:31 FNo. Len. Field Value +15:55:31 ============================================================================ +15:55:31 [ 1] [ 4] [0810] +15:55:31 [ 7] [ 10] [0320085438] +15:55:31 [ 11] [ 6] [157124] +15:55:31 [ 39] [ 2] [00] +15:55:31 [ 70] [ 3] [301] +15:55:31 ============================================================================ +15:55:31 Calculate Source COMM Id = 2 +15:55:31 ============================================================================ +15:55:31 + + +waiting on router queue for slot.... +15:55:43 ============================================================================ +15:55:43 Slot Id : <52> +15:55:43 Transaction Type : REQUEST +15:55:43 Received From : +15:55:43 ============================================================================ +15:55:43 FNo. Len. Field Value +15:55:43 ============================================================================ +15:55:43 [ 1] [ 4] [0800] +15:55:43 [ 7] [ 10] [0320085450] +15:55:43 [ 11] [ 6] [157125] +15:55:43 [ 70] [ 3] [301] +15:55:43 ============================================================================ +15:55:43 + + +waiting on router queue for slot.... +15:55:43 Sending to : +15:55:43 ============================================================================ +15:55:43 ============================================================================ +15:55:43 Slot Id : <52> +15:55:43 Transaction Type : RESPONSE +15:55:43 Received From : +15:55:43 ============================================================================ +15:55:43 FNo. Len. Field Value +15:55:43 ============================================================================ +15:55:43 [ 1] [ 4] [0810] +15:55:43 [ 7] [ 10] [0320085450] +15:55:43 [ 11] [ 6] [157125] +15:55:43 [ 39] [ 2] [00] +15:55:43 [ 70] [ 3] [301] +15:55:43 ============================================================================ +15:55:43 Calculate Source COMM Id = 2 +15:55:43 ============================================================================ +15:55:43 + + +waiting on router queue for slot.... +15:55:50 ============================================================================ +15:55:50 Slot Id : <25> +15:55:50 Transaction Type : REQUEST +15:55:50 Received From : +15:55:50 ============================================================================ +15:55:50 FNo. Len. Field Value +15:55:50 ============================================================================ +15:55:50 [ 1] [ 4] [0200] +15:55:50 [ 2] [ 16] [6213541000725161] +15:55:50 [ 3] [ 6] [011000] +15:55:50 [ 4] [ 12] [000025000000] +15:55:50 [ 7] [ 10] [0320085455] +15:55:50 [ 11] [ 6] [270182] +15:55:50 [ 12] [ 6] [155455] +15:55:50 [ 13] [ 4] [0320] +15:55:50 [ 14] [ 4] [4912] +15:55:50 [ 15] [ 4] [0320] +15:55:50 [ 18] [ 4] [6011] +15:55:50 [ 19] [ 3] [418] +15:55:50 [ 22] [ 3] [021] +15:55:50 [ 25] [ 2] [01] +15:55:50 [ 28] [ 9] [D00002000] +15:55:50 [ 32] [ 6] [180893] +15:55:50 [ 35] [ 32] [6213541000725161=491212012516608] +15:55:50 [ 37] [ 12] [507908270182] +15:55:50 [ 41] [ 8] [0528LPBP] +15:55:50 [ 42] [ 15] [999999 ] +15:55:50 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +15:55:50 [ 49] [ 3] [418] +15:55:50 [ 52] [ 16] [60D7E94295BF7384] +15:55:50 ============================================================================ +15:55:50 + + +waiting on router queue for slot.... +15:55:50 Sending to : +15:55:50 ============================================================================ +15:55:50 Sending to : +15:55:50 ============================================================================ +15:55:50 ============================================================================ +15:55:50 Slot Id : <50> +15:55:50 Transaction Type : REQUEST +15:55:50 Received From : +15:55:50 ============================================================================ +15:55:50 FNo. Len. Field Value +15:55:50 ============================================================================ +15:55:50 [ 1] [ 4] [0200] +15:55:50 [ 2] [ 16] [1888880000030916] +15:55:50 [ 3] [ 6] [011000] +15:55:50 [ 4] [ 12] [000002000000] +15:55:50 [ 7] [ 10] [0320155545] +15:55:50 [ 11] [ 6] [790379] +15:55:50 [ 12] [ 6] [155545] +15:55:50 [ 13] [ 4] [0320] +15:55:50 [ 15] [ 4] [0320] +15:55:50 [ 18] [ 4] [6011] +15:55:50 [ 22] [ 3] [900] +15:55:50 [ 25] [ 2] [02] +15:55:50 [ 28] [ 9] [D00002000] +15:55:50 [ 32] [ 6] [621354] +15:55:50 [ 35] [ 32] [1888880000030916=000010100000216] +15:55:50 [ 37] [ 12] [507904755430] +15:55:50 [ 41] [ 8] [07001100] +15:55:50 [ 42] [ 15] [NATIVE ] +15:55:50 [ 43] [ 40] [Industry Market Namtar LAO] +15:55:50 [ 49] [ 3] [418] +15:55:50 [ 52] [ 16] [0F5DC7631A8C25FC] +15:55:50 ============================================================================ +15:55:50 + + +waiting on router queue for slot.... +15:55:50 Sending to : +15:55:50 ============================================================================ +15:55:50 Sending to : +15:55:50 ============================================================================ +15:55:50 ============================================================================ +15:55:50 Slot Id : <25> +15:55:50 Transaction Type : REQUEST +15:55:50 Received From : +15:55:50 ============================================================================ +15:55:50 FNo. Len. Field Value +15:55:50 ============================================================================ +15:55:50 [ 1] [ 4] [0200] +15:55:50 [ 2] [ 16] [6213541000725161] +15:55:50 [ 3] [ 6] [011000] +15:55:50 [ 4] [ 12] [000025000000] +15:55:50 [ 7] [ 10] [0320085455] +15:55:50 [ 11] [ 6] [270182] +15:55:50 [ 12] [ 6] [155455] +15:55:50 [ 13] [ 4] [0320] +15:55:50 [ 14] [ 4] [4912] +15:55:50 [ 15] [ 4] [0320] +15:55:50 [ 18] [ 4] [6011] +15:55:50 [ 19] [ 3] [418] +15:55:50 [ 22] [ 3] [021] +15:55:50 [ 25] [ 2] [01] +15:55:50 [ 28] [ 9] [D00002000] +15:55:50 [ 32] [ 6] [180893] +15:55:50 [ 35] [ 32] [6213541000725161=491212012516608] +15:55:50 [ 37] [ 12] [507908270182] +15:55:50 [ 41] [ 8] [0528LPBP] +15:55:50 [ 42] [ 15] [999999 ] +15:55:50 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +15:55:50 [ 49] [ 3] [418] +15:55:50 [ 52] [ 16] [60D7E94295BF7384] +15:55:50 ============================================================================ +15:55:50 + + +waiting on router queue for slot.... +15:55:50 Sending to : +15:55:50 ============================================================================ +15:55:50 ============================================================================ +15:55:50 Slot Id : <25> +15:55:50 Transaction Type : REQUEST +15:55:50 Received From : +15:55:50 ============================================================================ +15:55:50 FNo. Len. Field Value +15:55:50 ============================================================================ +15:55:50 [ 1] [ 4] [0200] +15:55:50 [ 2] [ 16] [6213541000725161] +15:55:50 [ 3] [ 6] [011000] +15:55:50 [ 4] [ 12] [000025000000] +15:55:50 [ 7] [ 10] [0320085455] +15:55:50 [ 11] [ 6] [270182] +15:55:50 [ 12] [ 6] [155455] +15:55:50 [ 13] [ 4] [0320] +15:55:50 [ 14] [ 4] [4912] +15:55:50 [ 15] [ 4] [0320] +15:55:50 [ 18] [ 4] [6011] +15:55:50 [ 19] [ 3] [418] +15:55:50 [ 22] [ 3] [021] +15:55:50 [ 25] [ 2] [01] +15:55:50 [ 28] [ 9] [D00002000] +15:55:50 [ 32] [ 6] [180893] +15:55:50 [ 35] [ 32] [6213541000725161=491212012516608] +15:55:50 [ 37] [ 12] [507908270182] +15:55:50 [ 41] [ 8] [0528LPBP] +15:55:50 [ 42] [ 15] [999999 ] +15:55:50 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +15:55:50 [ 49] [ 3] [418] +15:55:50 [ 52] [ 16] [699FDF224EC0850B] +15:55:50 ============================================================================ +15:55:50 + + +waiting on router queue for slot.... +15:55:50 Sending to : <0> +15:55:50 ============================================================================ +15:55:50 ============================================================================ +15:55:50 Slot Id : <50> +15:55:50 Transaction Type : REQUEST +15:55:50 Received From : +15:55:50 ============================================================================ +15:55:50 FNo. Len. Field Value +15:55:50 ============================================================================ +15:55:50 [ 1] [ 4] [0200] +15:55:50 [ 2] [ 16] [1888880000030916] +15:55:50 [ 3] [ 6] [011000] +15:55:50 [ 4] [ 12] [000002000000] +15:55:50 [ 7] [ 10] [0320155545] +15:55:50 [ 11] [ 6] [790379] +15:55:50 [ 12] [ 6] [155545] +15:55:50 [ 13] [ 4] [0320] +15:55:50 [ 15] [ 4] [0320] +15:55:50 [ 18] [ 4] [6011] +15:55:50 [ 22] [ 3] [900] +15:55:50 [ 25] [ 2] [02] +15:55:50 [ 28] [ 9] [D00002000] +15:55:50 [ 32] [ 6] [621354] +15:55:50 [ 35] [ 32] [1888880000030916=000010100000216] +15:55:50 [ 37] [ 12] [507904755430] +15:55:50 [ 41] [ 8] [07001100] +15:55:50 [ 42] [ 15] [NATIVE ] +15:55:50 [ 43] [ 40] [Industry Market Namtar LAO] +15:55:50 [ 49] [ 3] [418] +15:55:50 [ 52] [ 16] [0F5DC7631A8C25FC] +15:55:50 ============================================================================ +15:55:50 + + +waiting on router queue for slot.... +15:55:50 Sending to : +15:55:50 ============================================================================ +15:55:50 ============================================================================ +15:55:50 Slot Id : <50> +15:55:50 Transaction Type : REQUEST +15:55:50 Received From : +15:55:50 ============================================================================ +15:55:50 FNo. Len. Field Value +15:55:50 ============================================================================ +15:55:50 [ 1] [ 4] [0200] +15:55:50 [ 2] [ 16] [1888880000030916] +15:55:50 [ 3] [ 6] [011000] +15:55:50 [ 4] [ 12] [000002000000] +15:55:50 [ 7] [ 10] [0320155545] +15:55:50 [ 11] [ 6] [790379] +15:55:50 [ 12] [ 6] [155545] +15:55:50 [ 13] [ 4] [0320] +15:55:50 [ 15] [ 4] [0320] +15:55:50 [ 18] [ 4] [6011] +15:55:50 [ 22] [ 3] [900] +15:55:50 [ 25] [ 2] [02] +15:55:50 [ 28] [ 9] [D00002000] +15:55:50 [ 32] [ 6] [621354] +15:55:50 [ 35] [ 32] [1888880000030916=000010100000216] +15:55:50 [ 37] [ 12] [507904755430] +15:55:50 [ 41] [ 8] [07001100] +15:55:50 [ 42] [ 15] [NATIVE ] +15:55:50 [ 43] [ 40] [Industry Market Namtar LAO] +15:55:50 [ 49] [ 3] [418] +15:55:50 [ 52] [ 16] [88FB6D0C415F6DD1] +15:55:50 ============================================================================ +15:55:50 + + +waiting on router queue for slot.... +15:55:50 Sending to : <5> +15:55:50 ============================================================================ +15:55:51 ============================================================================ +15:55:51 Slot Id : <25> +15:55:51 Transaction Type : RESPONSE +15:55:51 Received From : +15:55:51 ============================================================================ +15:55:51 FNo. Len. Field Value +15:55:51 ============================================================================ +15:55:51 [ 1] [ 4] [0210] +15:55:51 [ 2] [ 16] [6213541000725161] +15:55:51 [ 3] [ 6] [011000] +15:55:51 [ 4] [ 12] [000025000000] +15:55:51 [ 7] [ 10] [0320085455] +15:55:51 [ 11] [ 6] [270182] +15:55:51 [ 12] [ 6] [155455] +15:55:51 [ 13] [ 4] [0320] +15:55:51 [ 15] [ 4] [0320] +15:55:51 [ 18] [ 4] [6011] +15:55:51 [ 19] [ 3] [418] +15:55:51 [ 32] [ 6] [180893] +15:55:51 [ 35] [ 32] [6213541000725161=491212012516608] +15:55:51 [ 37] [ 12] [507908270182] +15:55:51 [ 38] [ 6] [927544] +15:55:51 [ 39] [ 2] [00] +15:55:51 [ 41] [ 8] [0528LPBP] +15:55:51 [ 49] [ 3] [418] +15:55:51 [ 54] [ 40] [1001418C0001047976071002418C000104797607] +15:55:51 ============================================================================ +15:55:51 Sending to : +15:55:51 ============================================================================ +15:55:51 + + +waiting on router queue for slot.... +15:55:51 ============================================================================ +15:55:51 Slot Id : <55> +15:55:51 Transaction Type : REQUEST +15:55:51 Received From : +15:55:51 ============================================================================ +15:55:51 FNo. Len. Field Value +15:55:51 ============================================================================ +15:55:51 [ 1] [ 4] [0200] +15:55:51 [ 2] [ 16] [6213544001598116] +15:55:51 [ 3] [ 6] [010000] +15:55:51 [ 4] [ 12] [000010000000] +15:55:51 [ 7] [ 10] [0320160338] +15:55:51 [ 11] [ 6] [223746] +15:55:51 [ 12] [ 6] [160338] +15:55:51 [ 13] [ 4] [0320] +15:55:51 [ 14] [ 4] [4912] +15:55:51 [ 15] [ 4] [0320] +15:55:51 [ 18] [ 4] [6011] +15:55:51 [ 22] [ 3] [900] +15:55:51 [ 25] [ 2] [02] +15:55:51 [ 28] [ 9] [D00002000] +15:55:51 [ 32] [ 6] [220699] +15:55:51 [ 35] [ 32] [6213544001598116=491212019811048] +15:55:51 [ 37] [ 12] [507900118774] +15:55:51 [ 41] [ 8] [01001100] +15:55:51 [ 42] [ 15] [APTRA ] +15:55:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:55:51 [ 49] [ 3] [418] +15:55:51 [ 52] [ 16] [E67F63E17163561B] +15:55:51 ============================================================================ +15:55:51 + + +waiting on router queue for slot.... +15:55:51 Sending to : +15:55:51 ============================================================================ +15:55:51 Sending to : +15:55:51 ============================================================================ +15:55:52 ============================================================================ +15:55:52 Slot Id : <55> +15:55:52 Transaction Type : REQUEST +15:55:52 Received From : +15:55:52 ============================================================================ +15:55:52 FNo. Len. Field Value +15:55:52 ============================================================================ +15:55:52 [ 1] [ 4] [0200] +15:55:52 [ 2] [ 16] [6213544001598116] +15:55:52 [ 3] [ 6] [010000] +15:55:52 [ 4] [ 12] [000010000000] +15:55:52 [ 7] [ 10] [0320160338] +15:55:52 [ 11] [ 6] [223746] +15:55:52 [ 12] [ 6] [160338] +15:55:52 [ 13] [ 4] [0320] +15:55:52 [ 14] [ 4] [4912] +15:55:52 [ 15] [ 4] [0320] +15:55:52 [ 18] [ 4] [6011] +15:55:52 [ 22] [ 3] [900] +15:55:52 [ 25] [ 2] [02] +15:55:52 [ 28] [ 9] [D00002000] +15:55:52 [ 32] [ 6] [220699] +15:55:52 [ 35] [ 32] [6213544001598116=491212019811048] +15:55:52 [ 37] [ 12] [507900118774] +15:55:52 [ 41] [ 8] [01001100] +15:55:52 [ 42] [ 15] [APTRA ] +15:55:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:55:52 [ 49] [ 3] [418] +15:55:52 [ 52] [ 16] [E67F63E17163561B] +15:55:52 ============================================================================ +15:55:52 + + +waiting on router queue for slot.... +15:55:52 Sending to : +15:55:52 ============================================================================ +15:55:52 ============================================================================ +15:55:52 Slot Id : <55> +15:55:52 Transaction Type : REQUEST +15:55:52 Received From : +15:55:52 ============================================================================ +15:55:52 FNo. Len. Field Value +15:55:52 ============================================================================ +15:55:52 [ 1] [ 4] [0200] +15:55:52 [ 2] [ 16] [6213544001598116] +15:55:52 [ 3] [ 6] [010000] +15:55:52 [ 4] [ 12] [000010000000] +15:55:52 [ 7] [ 10] [0320160338] +15:55:52 [ 11] [ 6] [223746] +15:55:52 [ 12] [ 6] [160338] +15:55:52 [ 13] [ 4] [0320] +15:55:52 [ 14] [ 4] [4912] +15:55:52 [ 15] [ 4] [0320] +15:55:52 [ 18] [ 4] [6011] +15:55:52 [ 22] [ 3] [900] +15:55:52 [ 25] [ 2] [02] +15:55:52 [ 28] [ 9] [D00002000] +15:55:52 [ 32] [ 6] [220699] +15:55:52 [ 35] [ 32] [6213544001598116=491212019811048] +15:55:52 [ 37] [ 12] [507900118774] +15:55:52 [ 41] [ 8] [01001100] +15:55:52 [ 42] [ 15] [APTRA ] +15:55:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:55:52 [ 49] [ 3] [418] +15:55:52 [ 52] [ 16] [CF85D5EE3BF6E449] +15:55:52 ============================================================================ +15:55:52 + + +waiting on router queue for slot.... +15:55:52 Sending to : <0> +15:55:52 ============================================================================ +15:55:52 ============================================================================ +15:55:52 Slot Id : <25> +15:55:52 Transaction Type : RESPONSE +15:55:52 Received From : +15:55:52 ============================================================================ +15:55:52 FNo. Len. Field Value +15:55:52 ============================================================================ +15:55:52 [ 1] [ 4] [0210] +15:55:52 [ 2] [ 16] [6213541000725161] +15:55:52 [ 3] [ 6] [011000] +15:55:52 [ 4] [ 12] [000025000000] +15:55:52 [ 7] [ 10] [0320085455] +15:55:52 [ 11] [ 6] [270182] +15:55:52 [ 12] [ 6] [155455] +15:55:52 [ 13] [ 4] [0320] +15:55:52 [ 15] [ 4] [0320] +15:55:52 [ 18] [ 4] [6011] +15:55:52 [ 19] [ 3] [418] +15:55:52 [ 32] [ 6] [180893] +15:55:52 [ 35] [ 32] [6213541000725161=491212012516608] +15:55:52 [ 37] [ 12] [507908270182] +15:55:52 [ 38] [ 6] [927544] +15:55:52 [ 39] [ 2] [00] +15:55:52 [ 41] [ 8] [0528LPBP] +15:55:52 [ 49] [ 3] [418] +15:55:52 [ 54] [ 40] [1001418C0001047976071002418C000104797607] +15:55:52 ============================================================================ +15:55:52 Calculate Source COMM Id = 2 +15:55:52 ============================================================================ +15:55:52 + + +waiting on router queue for slot.... +15:55:52 ============================================================================ +15:55:52 Slot Id : <55> +15:55:52 Transaction Type : RESPONSE +15:55:52 Received From : +15:55:52 ============================================================================ +15:55:52 FNo. Len. Field Value +15:55:52 ============================================================================ +15:55:52 [ 1] [ 4] [0210] +15:55:52 [ 2] [ 16] [6213544001598116] +15:55:52 [ 3] [ 6] [010000] +15:55:52 [ 4] [ 12] [000010000000] +15:55:52 [ 7] [ 10] [0320160338] +15:55:52 [ 11] [ 6] [223746] +15:55:52 [ 12] [ 6] [160338] +15:55:52 [ 13] [ 4] [0320] +15:55:52 [ 15] [ 4] [0320] +15:55:52 [ 18] [ 4] [6011] +15:55:52 [ 32] [ 6] [220699] +15:55:52 [ 35] [ 32] [6213544001598116=491212019811048] +15:55:52 [ 37] [ 12] [507900118774] +15:55:52 [ 38] [ 6] [358136] +15:55:52 [ 39] [ 2] [00] +15:55:52 [ 41] [ 8] [01001100] +15:55:52 [ 49] [ 3] [418] +15:55:52 [ 54] [ 40] [0001418C0000299135550002418C000029913555] +15:55:52 ============================================================================ +15:55:52 Sending to : +15:55:52 ============================================================================ +15:55:52 + + +waiting on router queue for slot.... +15:55:54 ============================================================================ +15:55:54 Slot Id : <50> +15:55:54 Transaction Type : RESPONSE +15:55:54 Received From : +15:55:54 ============================================================================ +15:55:54 FNo. Len. Field Value +15:55:54 ============================================================================ +15:55:54 [ 1] [ 4] [0210] +15:55:54 [ 2] [ 16] [1888880000030916] +15:55:54 [ 3] [ 6] [011000] +15:55:54 [ 4] [ 12] [000002000000] +15:55:54 [ 7] [ 10] [0320155545] +15:55:54 [ 11] [ 6] [790379] +15:55:54 [ 12] [ 6] [155545] +15:55:54 [ 13] [ 4] [0320] +15:55:54 [ 15] [ 4] [0320] +15:55:54 [ 18] [ 4] [6011] +15:55:54 [ 19] [ 3] [418] +15:55:54 [ 32] [ 6] [621354] +15:55:54 [ 37] [ 12] [507904755430] +15:55:54 [ 38] [ 6] [800146] +15:55:54 [ 39] [ 2] [00] +15:55:54 [ 41] [ 8] [07001100] +15:55:54 [ 49] [ 3] [418] +15:55:54 [ 54] [ 0] [] +15:55:54 ============================================================================ +15:55:54 Sending to : +15:55:54 ============================================================================ +15:55:54 + + +waiting on router queue for slot.... +15:55:54 ============================================================================ +15:55:54 Slot Id : <55> +15:55:54 Transaction Type : RESPONSE +15:55:54 Received From : +15:55:54 ============================================================================ +15:55:54 FNo. Len. Field Value +15:55:54 ============================================================================ +15:55:54 [ 1] [ 4] [0210] +15:55:54 [ 2] [ 16] [6213544001598116] +15:55:54 [ 3] [ 6] [010000] +15:55:54 [ 4] [ 12] [000010000000] +15:55:54 [ 7] [ 10] [0320160338] +15:55:54 [ 11] [ 6] [223746] +15:55:54 [ 12] [ 6] [160338] +15:55:54 [ 13] [ 4] [0320] +15:55:54 [ 15] [ 4] [0320] +15:55:54 [ 18] [ 4] [6011] +15:55:54 [ 32] [ 6] [220699] +15:55:54 [ 35] [ 32] [6213544001598116=491212019811048] +15:55:54 [ 37] [ 12] [507900118774] +15:55:54 [ 38] [ 6] [358136] +15:55:54 [ 39] [ 2] [00] +15:55:54 [ 41] [ 8] [01001100] +15:55:54 [ 49] [ 3] [418] +15:55:54 [ 54] [ 40] [0001418C0000299135550002418C000029913555] +15:55:54 ============================================================================ +15:55:54 Calculate Source COMM Id = 1 +15:55:54 ============================================================================ +15:55:54 + + +waiting on router queue for slot.... +15:55:55 ============================================================================ +15:55:55 Slot Id : <50> +15:55:55 Transaction Type : RESPONSE +15:55:55 Received From : +15:55:55 ============================================================================ +15:55:55 FNo. Len. Field Value +15:55:55 ============================================================================ +15:55:55 [ 1] [ 4] [0210] +15:55:55 [ 2] [ 16] [1888880000030916] +15:55:55 [ 3] [ 6] [011000] +15:55:55 [ 4] [ 12] [000002000000] +15:55:55 [ 7] [ 10] [0320155545] +15:55:55 [ 11] [ 6] [790379] +15:55:55 [ 12] [ 6] [155545] +15:55:55 [ 13] [ 4] [0320] +15:55:55 [ 15] [ 4] [0320] +15:55:55 [ 18] [ 4] [6011] +15:55:55 [ 19] [ 3] [418] +15:55:55 [ 32] [ 6] [621354] +15:55:55 [ 37] [ 12] [507904755430] +15:55:55 [ 38] [ 6] [800146] +15:55:55 [ 39] [ 2] [00] +15:55:55 [ 41] [ 8] [07001100] +15:55:55 [ 49] [ 3] [418] +15:55:55 [ 54] [ 0] [] +15:55:55 ============================================================================ +15:55:55 Calculate Source COMM Id = 0 +15:55:55 ============================================================================ +15:55:55 + + +waiting on router queue for slot.... +15:56:08 ============================================================================ +15:56:08 Slot Id : <61> +15:56:08 Transaction Type : REQUEST +15:56:08 Received From : +15:56:08 ============================================================================ +15:56:08 FNo. Len. Field Value +15:56:08 ============================================================================ +15:56:08 [ 1] [ 4] [0800] +15:56:08 [ 7] [ 10] [0320085515] +15:56:08 [ 11] [ 6] [157126] +15:56:08 [ 70] [ 3] [301] +15:56:08 ============================================================================ +15:56:08 + + +waiting on router queue for slot.... +15:56:08 Sending to : +15:56:08 ============================================================================ +15:56:08 ============================================================================ +15:56:08 Slot Id : <61> +15:56:08 Transaction Type : RESPONSE +15:56:08 Received From : +15:56:08 ============================================================================ +15:56:08 FNo. Len. Field Value +15:56:08 ============================================================================ +15:56:08 [ 1] [ 4] [0810] +15:56:08 [ 7] [ 10] [0320085515] +15:56:08 [ 11] [ 6] [157126] +15:56:08 [ 39] [ 2] [00] +15:56:08 [ 70] [ 3] [301] +15:56:08 ============================================================================ +15:56:08 Calculate Source COMM Id = 2 +15:56:08 ============================================================================ +15:56:08 + + +waiting on router queue for slot.... +15:56:15 ============================================================================ +15:56:15 Slot Id : <44> +15:56:15 Transaction Type : REQUEST +15:56:15 Received From : +15:56:15 ============================================================================ +15:56:15 FNo. Len. Field Value +15:56:15 ============================================================================ +15:56:15 [ 1] [ 4] [0200] +15:56:15 [ 2] [ 16] [6688990103551105] +15:56:15 [ 3] [ 6] [010000] +15:56:15 [ 4] [ 12] [000050000000] +15:56:15 [ 7] [ 10] [0320085521] +15:56:15 [ 11] [ 6] [270189] +15:56:15 [ 12] [ 6] [155521] +15:56:15 [ 13] [ 4] [0320] +15:56:15 [ 14] [ 4] [4301] +15:56:15 [ 15] [ 4] [0320] +15:56:15 [ 18] [ 4] [6011] +15:56:15 [ 19] [ 3] [418] +15:56:15 [ 22] [ 3] [021] +15:56:15 [ 25] [ 2] [01] +15:56:15 [ 28] [ 9] [D00002000] +15:56:15 [ 32] [ 6] [180893] +15:56:15 [ 35] [ 37] [6688990103551105=43011231110580900000] +15:56:15 [ 37] [ 12] [507908270189] +15:56:15 [ 41] [ 8] [0221XKKM] +15:56:15 [ 42] [ 15] [999999 ] +15:56:15 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +15:56:15 [ 49] [ 3] [418] +15:56:15 [ 52] [ 16] [E03469FF0C923894] +15:56:15 ============================================================================ +15:56:15 + + +waiting on router queue for slot.... +15:56:15 Sending to : +15:56:15 ============================================================================ +15:56:15 Sending to : +15:56:15 ============================================================================ +15:56:15 ============================================================================ +15:56:15 Slot Id : <44> +15:56:15 Transaction Type : REQUEST +15:56:15 Received From : +15:56:15 ============================================================================ +15:56:15 FNo. Len. Field Value +15:56:15 ============================================================================ +15:56:15 [ 1] [ 4] [0200] +15:56:15 [ 2] [ 16] [6688990103551105] +15:56:15 [ 3] [ 6] [010000] +15:56:15 [ 4] [ 12] [000050000000] +15:56:15 [ 7] [ 10] [0320085521] +15:56:15 [ 11] [ 6] [270189] +15:56:15 [ 12] [ 6] [155521] +15:56:15 [ 13] [ 4] [0320] +15:56:15 [ 14] [ 4] [4301] +15:56:15 [ 15] [ 4] [0320] +15:56:15 [ 18] [ 4] [6011] +15:56:15 [ 19] [ 3] [418] +15:56:15 [ 22] [ 3] [021] +15:56:15 [ 25] [ 2] [01] +15:56:15 [ 28] [ 9] [D00002000] +15:56:15 [ 32] [ 6] [180893] +15:56:15 [ 35] [ 37] [6688990103551105=43011231110580900000] +15:56:15 [ 37] [ 12] [507908270189] +15:56:15 [ 41] [ 8] [0221XKKM] +15:56:15 [ 42] [ 15] [999999 ] +15:56:15 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +15:56:15 [ 49] [ 3] [418] +15:56:15 [ 52] [ 16] [E03469FF0C923894] +15:56:15 ============================================================================ +15:56:15 + + +waiting on router queue for slot.... +15:56:15 Sending to : +15:56:15 ============================================================================ +15:56:15 ============================================================================ +15:56:15 Slot Id : <44> +15:56:15 Transaction Type : REQUEST +15:56:15 Received From : +15:56:15 ============================================================================ +15:56:15 FNo. Len. Field Value +15:56:15 ============================================================================ +15:56:15 [ 1] [ 4] [0200] +15:56:15 [ 2] [ 16] [6688990103551105] +15:56:15 [ 3] [ 6] [010000] +15:56:15 [ 4] [ 12] [000050000000] +15:56:15 [ 7] [ 10] [0320085521] +15:56:15 [ 11] [ 6] [270189] +15:56:15 [ 12] [ 6] [155521] +15:56:15 [ 13] [ 4] [0320] +15:56:15 [ 14] [ 4] [4301] +15:56:15 [ 15] [ 4] [0320] +15:56:15 [ 18] [ 4] [6011] +15:56:15 [ 19] [ 3] [418] +15:56:15 [ 22] [ 3] [021] +15:56:15 [ 25] [ 2] [01] +15:56:15 [ 28] [ 9] [D00002000] +15:56:15 [ 32] [ 6] [180893] +15:56:15 [ 35] [ 37] [6688990103551105=43011231110580900000] +15:56:15 [ 37] [ 12] [507908270189] +15:56:15 [ 41] [ 8] [0221XKKM] +15:56:15 [ 42] [ 15] [999999 ] +15:56:15 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +15:56:15 [ 49] [ 3] [418] +15:56:15 [ 52] [ 16] [2141A752F47AEE90] +15:56:15 ============================================================================ +15:56:15 + + +waiting on router queue for slot.... +15:56:15 Sending to : <0> +15:56:15 ============================================================================ +15:56:15 ============================================================================ +15:56:15 Slot Id : <44> +15:56:15 Transaction Type : RESPONSE +15:56:15 Received From : +15:56:15 ============================================================================ +15:56:15 FNo. Len. Field Value +15:56:15 ============================================================================ +15:56:15 [ 1] [ 4] [0210] +15:56:15 [ 2] [ 16] [6688990103551105] +15:56:15 [ 3] [ 6] [010000] +15:56:15 [ 4] [ 12] [000050000000] +15:56:15 [ 7] [ 10] [0320085521] +15:56:15 [ 11] [ 6] [270189] +15:56:15 [ 12] [ 6] [155521] +15:56:15 [ 13] [ 4] [0320] +15:56:15 [ 15] [ 4] [0320] +15:56:15 [ 18] [ 4] [6011] +15:56:15 [ 19] [ 3] [418] +15:56:15 [ 22] [ 3] [021] +15:56:15 [ 32] [ 6] [180893] +15:56:15 [ 35] [ 37] [6688990103551105=43011231110580900000] +15:56:15 [ 37] [ 12] [507908270189] +15:56:15 [ 39] [ 2] [14] +15:56:15 [ 41] [ 8] [0221XKKM] +15:56:15 [ 49] [ 3] [418] +15:56:15 ============================================================================ +15:56:15 Sending to : +15:56:15 ============================================================================ +15:56:15 + + +waiting on router queue for slot.... +15:56:16 ============================================================================ +15:56:16 Slot Id : <44> +15:56:16 Transaction Type : RESPONSE +15:56:16 Received From : +15:56:16 ============================================================================ +15:56:16 FNo. Len. Field Value +15:56:16 ============================================================================ +15:56:16 [ 1] [ 4] [0210] +15:56:16 [ 2] [ 16] [6688990103551105] +15:56:16 [ 3] [ 6] [010000] +15:56:16 [ 4] [ 12] [000050000000] +15:56:16 [ 7] [ 10] [0320085521] +15:56:16 [ 11] [ 6] [270189] +15:56:16 [ 12] [ 6] [155521] +15:56:16 [ 13] [ 4] [0320] +15:56:16 [ 15] [ 4] [0320] +15:56:16 [ 18] [ 4] [6011] +15:56:16 [ 19] [ 3] [418] +15:56:16 [ 22] [ 3] [021] +15:56:16 [ 32] [ 6] [180893] +15:56:16 [ 35] [ 37] [6688990103551105=43011231110580900000] +15:56:16 [ 37] [ 12] [507908270189] +15:56:16 [ 39] [ 2] [14] +15:56:16 [ 41] [ 8] [0221XKKM] +15:56:16 [ 49] [ 3] [418] +15:56:16 ============================================================================ +15:56:16 Calculate Source COMM Id = 2 +15:56:16 ============================================================================ +15:56:16 + + +waiting on router queue for slot.... +15:56:22 ============================================================================ +15:56:22 Slot Id : <478> +15:56:22 Transaction Type : REQUEST +15:56:22 Received From : +15:56:22 ============================================================================ +15:56:22 FNo. Len. Field Value +15:56:22 ============================================================================ +15:56:22 [ 1] [ 4] [0800] +15:56:22 [ 7] [ 10] [0320085412] +15:56:22 [ 11] [ 6] [074602] +15:56:22 [ 37] [ 12] [57915074602] +15:56:22 [ 70] [ 3] [301] +15:56:22 ============================================================================ +15:56:22 + + +waiting on router queue for slot.... +15:56:22 Sending to : +15:56:22 ============================================================================ +15:56:22 ============================================================================ +15:56:22 Slot Id : <478> +15:56:22 Transaction Type : RESPONSE +15:56:22 Received From : +15:56:22 ============================================================================ +15:56:22 FNo. Len. Field Value +15:56:22 ============================================================================ +15:56:22 [ 1] [ 4] [0810] +15:56:22 [ 7] [ 10] [0320085412] +15:56:22 [ 11] [ 6] [074602] +15:56:22 [ 37] [ 12] [579150746020] +15:56:22 [ 39] [ 2] [00] +15:56:22 [ 70] [ 3] [810] +15:56:22 ============================================================================ +15:56:22 Calculate Source COMM Id = 4 +15:56:22 ============================================================================ +15:56:22 + + +waiting on router queue for slot.... +15:56:25 ============================================================================ +15:56:25 Slot Id : <15> +15:56:25 Transaction Type : REQUEST +15:56:25 Received From : +15:56:25 ============================================================================ +15:56:25 FNo. Len. Field Value +15:56:25 ============================================================================ +15:56:25 [ 1] [ 4] [0200] +15:56:25 [ 2] [ 16] [6213548000277812] +15:56:25 [ 3] [ 6] [011000] +15:56:25 [ 4] [ 12] [000010000000] +15:56:25 [ 7] [ 10] [0320085531] +15:56:25 [ 11] [ 6] [270191] +15:56:25 [ 12] [ 6] [155531] +15:56:25 [ 13] [ 4] [0320] +15:56:25 [ 14] [ 4] [1802] +15:56:25 [ 15] [ 4] [0320] +15:56:25 [ 18] [ 4] [6011] +15:56:25 [ 19] [ 3] [418] +15:56:25 [ 22] [ 3] [021] +15:56:25 [ 25] [ 2] [01] +15:56:25 [ 28] [ 9] [D00002000] +15:56:25 [ 32] [ 6] [180893] +15:56:25 [ 35] [ 32] [6213548000277812=180212017781489] +15:56:25 [ 37] [ 12] [507908270191] +15:56:25 [ 41] [ 8] [0522XYXH] +15:56:25 [ 42] [ 15] [999999 ] +15:56:25 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +15:56:25 [ 49] [ 3] [418] +15:56:25 [ 52] [ 16] [1A6F613FDCCC2EAD] +15:56:25 ============================================================================ +15:56:25 + + +waiting on router queue for slot.... +15:56:25 Sending to : +15:56:25 ============================================================================ +15:56:25 Sending to : +15:56:25 ============================================================================ +15:56:25 ============================================================================ +15:56:25 Slot Id : <15> +15:56:25 Transaction Type : REQUEST +15:56:25 Received From : +15:56:25 ============================================================================ +15:56:25 FNo. Len. Field Value +15:56:25 ============================================================================ +15:56:25 [ 1] [ 4] [0200] +15:56:25 [ 2] [ 16] [6213548000277812] +15:56:25 [ 3] [ 6] [011000] +15:56:25 [ 4] [ 12] [000010000000] +15:56:25 [ 7] [ 10] [0320085531] +15:56:25 [ 11] [ 6] [270191] +15:56:25 [ 12] [ 6] [155531] +15:56:25 [ 13] [ 4] [0320] +15:56:25 [ 14] [ 4] [1802] +15:56:25 [ 15] [ 4] [0320] +15:56:25 [ 18] [ 4] [6011] +15:56:25 [ 19] [ 3] [418] +15:56:25 [ 22] [ 3] [021] +15:56:25 [ 25] [ 2] [01] +15:56:25 [ 28] [ 9] [D00002000] +15:56:25 [ 32] [ 6] [180893] +15:56:25 [ 35] [ 32] [6213548000277812=180212017781489] +15:56:25 [ 37] [ 12] [507908270191] +15:56:25 [ 41] [ 8] [0522XYXH] +15:56:25 [ 42] [ 15] [999999 ] +15:56:25 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +15:56:25 [ 49] [ 3] [418] +15:56:25 [ 52] [ 16] [1A6F613FDCCC2EAD] +15:56:25 ============================================================================ +15:56:25 + + +waiting on router queue for slot.... +15:56:25 Sending to : +15:56:25 ============================================================================ +15:56:25 ============================================================================ +15:56:25 Slot Id : <15> +15:56:25 Transaction Type : REQUEST +15:56:25 Received From : +15:56:25 ============================================================================ +15:56:25 FNo. Len. Field Value +15:56:25 ============================================================================ +15:56:25 [ 1] [ 4] [0200] +15:56:25 [ 2] [ 16] [6213548000277812] +15:56:25 [ 3] [ 6] [011000] +15:56:25 [ 4] [ 12] [000010000000] +15:56:25 [ 7] [ 10] [0320085531] +15:56:25 [ 11] [ 6] [270191] +15:56:25 [ 12] [ 6] [155531] +15:56:25 [ 13] [ 4] [0320] +15:56:25 [ 14] [ 4] [1802] +15:56:25 [ 15] [ 4] [0320] +15:56:25 [ 18] [ 4] [6011] +15:56:25 [ 19] [ 3] [418] +15:56:25 [ 22] [ 3] [021] +15:56:25 [ 25] [ 2] [01] +15:56:25 [ 28] [ 9] [D00002000] +15:56:25 [ 32] [ 6] [180893] +15:56:25 [ 35] [ 32] [6213548000277812=180212017781489] +15:56:25 [ 37] [ 12] [507908270191] +15:56:25 [ 41] [ 8] [0522XYXH] +15:56:25 [ 42] [ 15] [999999 ] +15:56:25 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +15:56:25 [ 49] [ 3] [418] +15:56:25 [ 52] [ 16] [AA9F0E87D23FFB46] +15:56:25 ============================================================================ +15:56:25 + + +waiting on router queue for slot.... +15:56:25 Sending to : <0> +15:56:25 ============================================================================ +15:56:25 ============================================================================ +15:56:25 Slot Id : <68> +15:56:25 Transaction Type : REQUEST +15:56:25 Received From : +15:56:25 ============================================================================ +15:56:25 FNo. Len. Field Value +15:56:25 ============================================================================ +15:56:25 [ 1] [ 4] [0200] +15:56:25 [ 2] [ 16] [6213545000652762] +15:56:25 [ 3] [ 6] [011000] +15:56:25 [ 4] [ 12] [000010000000] +15:56:25 [ 7] [ 10] [0320160413] +15:56:26 [ 11] [ 6] [021176] +15:56:26 [ 12] [ 6] [160413] +15:56:26 [ 13] [ 4] [0320] +15:56:26 [ 14] [ 4] [4912] +15:56:26 [ 15] [ 4] [0320] +15:56:26 [ 18] [ 4] [6011] +15:56:26 [ 22] [ 3] [900] +15:56:26 [ 25] [ 2] [02] +15:56:26 [ 28] [ 9] [D00002000] +15:56:26 [ 32] [ 6] [220699] +15:56:26 [ 35] [ 32] [6213545000652762=491212015276345] +15:56:26 [ 37] [ 12] [507900263122] +15:56:26 [ 41] [ 8] [01001400] +15:56:26 [ 42] [ 15] [APTRA ] +15:56:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:56:26 [ 49] [ 3] [418] +15:56:26 [ 52] [ 16] [B6F58C965F9A79B6] +15:56:26 ============================================================================ +15:56:26 + + +waiting on router queue for slot.... +15:56:26 Sending to : +15:56:26 ============================================================================ +15:56:26 Sending to : +15:56:26 ============================================================================ +15:56:26 ============================================================================ +15:56:26 Slot Id : <15> +15:56:26 Transaction Type : RESPONSE +15:56:26 Received From : +15:56:26 ============================================================================ +15:56:26 FNo. Len. Field Value +15:56:26 ============================================================================ +15:56:26 [ 1] [ 4] [0210] +15:56:26 [ 2] [ 16] [6213548000277812] +15:56:26 [ 3] [ 6] [011000] +15:56:26 [ 4] [ 12] [000010000000] +15:56:26 [ 7] [ 10] [0320085531] +15:56:26 [ 11] [ 6] [270191] +15:56:26 [ 12] [ 6] [155531] +15:56:26 [ 13] [ 4] [0320] +15:56:26 [ 15] [ 4] [0320] +15:56:26 [ 18] [ 4] [6011] +15:56:26 [ 19] [ 3] [418] +15:56:26 [ 32] [ 6] [180893] +15:56:26 [ 35] [ 32] [6213548000277812=180212017781489] +15:56:26 [ 37] [ 12] [507908270191] +15:56:26 [ 38] [ 6] [638117] +15:56:26 [ 39] [ 2] [00] +15:56:26 [ 41] [ 8] [0522XYXH] +15:56:26 [ 49] [ 3] [418] +15:56:26 [ 54] [ 40] [1001418C0000351364111002418C000035136411] +15:56:26 ============================================================================ +15:56:26 Sending to : +15:56:26 ============================================================================ +15:56:26 + + +waiting on router queue for slot.... +15:56:26 ============================================================================ +15:56:26 Slot Id : <68> +15:56:26 Transaction Type : REQUEST +15:56:26 Received From : +15:56:26 ============================================================================ +15:56:26 FNo. Len. Field Value +15:56:26 ============================================================================ +15:56:26 [ 1] [ 4] [0200] +15:56:26 [ 2] [ 16] [6213545000652762] +15:56:26 [ 3] [ 6] [011000] +15:56:26 [ 4] [ 12] [000010000000] +15:56:26 [ 7] [ 10] [0320160413] +15:56:26 [ 11] [ 6] [021176] +15:56:26 [ 12] [ 6] [160413] +15:56:26 [ 13] [ 4] [0320] +15:56:26 [ 14] [ 4] [4912] +15:56:26 [ 15] [ 4] [0320] +15:56:26 [ 18] [ 4] [6011] +15:56:26 [ 22] [ 3] [900] +15:56:26 [ 25] [ 2] [02] +15:56:26 [ 28] [ 9] [D00002000] +15:56:26 [ 32] [ 6] [220699] +15:56:26 [ 35] [ 32] [6213545000652762=491212015276345] +15:56:26 [ 37] [ 12] [507900263122] +15:56:26 [ 41] [ 8] [01001400] +15:56:26 [ 42] [ 15] [APTRA ] +15:56:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:56:26 [ 49] [ 3] [418] +15:56:26 [ 52] [ 16] [B6F58C965F9A79B6] +15:56:26 ============================================================================ +15:56:26 + + +waiting on router queue for slot.... +15:56:26 Sending to : +15:56:26 ============================================================================ +15:56:26 ============================================================================ +15:56:26 Slot Id : <68> +15:56:26 Transaction Type : REQUEST +15:56:26 Received From : +15:56:26 ============================================================================ +15:56:26 FNo. Len. Field Value +15:56:26 ============================================================================ +15:56:26 [ 1] [ 4] [0200] +15:56:26 [ 2] [ 16] [6213545000652762] +15:56:26 [ 3] [ 6] [011000] +15:56:26 [ 4] [ 12] [000010000000] +15:56:26 [ 7] [ 10] [0320160413] +15:56:26 [ 11] [ 6] [021176] +15:56:26 [ 12] [ 6] [160413] +15:56:26 [ 13] [ 4] [0320] +15:56:26 [ 14] [ 4] [4912] +15:56:26 [ 15] [ 4] [0320] +15:56:26 [ 18] [ 4] [6011] +15:56:26 [ 22] [ 3] [900] +15:56:26 [ 25] [ 2] [02] +15:56:26 [ 28] [ 9] [D00002000] +15:56:26 [ 32] [ 6] [220699] +15:56:26 [ 35] [ 32] [6213545000652762=491212015276345] +15:56:26 [ 37] [ 12] [507900263122] +15:56:26 [ 41] [ 8] [01001400] +15:56:26 [ 42] [ 15] [APTRA ] +15:56:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +15:56:26 [ 49] [ 3] [418] +15:56:26 [ 52] [ 16] [3C40D345A412FA3D] +15:56:26 ============================================================================ +15:56:26 + + +waiting on router queue for slot.... +15:56:26 Sending to : <0> +15:56:26 ============================================================================ +15:56:26 ============================================================================ +15:56:26 Slot Id : <68> +15:56:26 Transaction Type : RESPONSE +15:56:26 Received From : +15:56:26 ============================================================================ +15:56:26 FNo. Len. Field Value +15:56:26 ============================================================================ +15:56:26 [ 1] [ 4] [0210] +15:56:26 [ 2] [ 16] [6213545000652762] +15:56:26 [ 3] [ 6] [011000] +15:56:26 [ 4] [ 12] [000010000000] +15:56:26 [ 7] [ 10] [0320160413] +15:56:26 [ 11] [ 6] [021176] +15:56:26 [ 12] [ 6] [160413] +15:56:26 [ 13] [ 4] [0320] +15:56:26 [ 15] [ 4] [0320] +15:56:26 [ 18] [ 4] [6011] +15:56:26 [ 32] [ 6] [220699] +15:56:26 [ 35] [ 32] [6213545000652762=491212015276345] +15:56:26 [ 37] [ 12] [507900263122] +15:56:26 [ 38] [ 6] [572425] +15:56:26 [ 39] [ 2] [00] +15:56:26 [ 41] [ 8] [01001400] +15:56:26 [ 49] [ 3] [418] +15:56:26 [ 54] [ 40] [1001418C0001082849041002418C000108284904] +15:56:26 ============================================================================ +15:56:26 Sending to : +15:56:26 ============================================================================ +15:56:26 + + +waiting on router queue for slot.... +15:56:27 ============================================================================ +15:56:27 Slot Id : <15> +15:56:27 Transaction Type : RESPONSE +15:56:27 Received From : +15:56:27 ============================================================================ +15:56:27 FNo. Len. Field Value +15:56:27 ============================================================================ +15:56:27 [ 1] [ 4] [0210] +15:56:27 [ 2] [ 16] [6213548000277812] +15:56:27 [ 3] [ 6] [011000] +15:56:27 [ 4] [ 12] [000010000000] +15:56:27 [ 7] [ 10] [0320085531] +15:56:27 [ 11] [ 6] [270191] +15:56:27 [ 12] [ 6] [155531] +15:56:27 [ 13] [ 4] [0320] +15:56:27 [ 15] [ 4] [0320] +15:56:27 [ 18] [ 4] [6011] +15:56:27 [ 19] [ 3] [418] +15:56:27 [ 32] [ 6] [180893] +15:56:27 [ 35] [ 32] [6213548000277812=180212017781489] +15:56:27 [ 37] [ 12] [507908270191] +15:56:27 [ 38] [ 6] [638117] +15:56:27 [ 39] [ 2] [00] +15:56:27 [ 41] [ 8] [0522XYXH] +15:56:27 [ 49] [ 3] [418] +15:56:27 [ 54] [ 40] [1001418C0000351364111002418C000035136411] +15:56:27 ============================================================================ +15:56:27 Calculate Source COMM Id = 2 +15:56:27 ============================================================================ +15:56:27 + + +waiting on router queue for slot.... +15:56:27 ============================================================================ +15:56:27 Slot Id : <60> +15:56:27 Transaction Type : REQUEST +15:56:27 Received From : +15:56:27 ============================================================================ +15:56:27 FNo. Len. Field Value +15:56:27 ============================================================================ +15:56:27 [ 1] [ 4] [0800] +15:56:27 [ 7] [ 10] [0320230816] +15:56:27 [ 11] [ 6] [160816] +15:56:27 [ 37] [ 12] [57916160816] +15:56:27 [ 70] [ 3] [301] +15:56:27 ============================================================================ +15:56:27 + + +waiting on router queue for slot.... +15:56:27 Sending to : +15:56:27 ============================================================================ +15:56:27 ============================================================================ +15:56:27 Slot Id : <60> +15:56:27 Transaction Type : RESPONSE +15:56:27 Received From : +15:56:27 ============================================================================ +15:56:27 FNo. Len. Field Value +15:56:27 ============================================================================ +15:56:27 [ 1] [ 4] [0810] +15:56:27 [ 7] [ 10] [0320230816] +15:56:27 [ 11] [ 6] [160816] +15:56:27 [ 37] [ 12] [579161608160] +15:56:27 [ 39] [ 2] [00] +15:56:27 [ 70] [ 3] [810] +15:56:27 ============================================================================ +15:56:27 Calculate Source COMM Id = 6 +15:56:27 ============================================================================ +15:56:27 + + +waiting on router queue for slot.... +15:56:28 ============================================================================ +15:56:28 Slot Id : <68> +15:56:28 Transaction Type : RESPONSE +15:56:28 Received From : +15:56:28 ============================================================================ +15:56:28 FNo. Len. Field Value +15:56:28 ============================================================================ +15:56:28 [ 1] [ 4] [0210] +15:56:28 [ 2] [ 16] [6213545000652762] +15:56:28 [ 3] [ 6] [011000] +15:56:28 [ 4] [ 12] [000010000000] +15:56:28 [ 7] [ 10] [0320160413] +15:56:28 [ 11] [ 6] [021176] +15:56:28 [ 12] [ 6] [160413] +15:56:28 [ 13] [ 4] [0320] +15:56:28 [ 15] [ 4] [0320] +15:56:28 [ 18] [ 4] [6011] +15:56:28 [ 32] [ 6] [220699] +15:56:28 [ 35] [ 32] [6213545000652762=491212015276345] +15:56:28 [ 37] [ 12] [507900263122] +15:56:28 [ 38] [ 6] [572425] +15:56:28 [ 39] [ 2] [00] +15:56:28 [ 41] [ 8] [01001400] +15:56:28 [ 49] [ 3] [418] +15:56:28 [ 54] [ 40] [1001418C0001082849041002418C000108284904] +15:56:28 ============================================================================ +15:56:28 Calculate Source COMM Id = 1 +15:56:28 ============================================================================ +15:56:28 + + +waiting on router queue for slot.... +15:56:29 ============================================================================ +15:56:29 Slot Id : <63> +15:56:29 Transaction Type : REQUEST +15:56:29 Received From : +15:56:29 ============================================================================ +15:56:29 FNo. Len. Field Value +15:56:29 ============================================================================ +15:56:29 [ 1] [ 4] [0800] +15:56:29 [ 2] [ 5] [02531] +15:56:29 [ 3] [ 6] [579158] +15:56:29 [ 7] [ 10] [0320085629] +15:56:29 [ 11] [ 6] [807337] +15:56:29 [ 15] [ 10] [0320085629] +15:56:29 [ 37] [ 11] [57915807337] +15:56:29 [ 70] [ 3] [001] +15:56:29 ============================================================================ +15:56:29 + + +waiting on router queue for slot.... +15:56:29 ============================================================================ +15:56:29 Slot Id : <63> +15:56:29 Transaction Type : RESPONSE +15:56:29 Received From : +15:56:29 ============================================================================ +15:56:29 FNo. Len. Field Value +15:56:29 ============================================================================ +15:56:29 [ 1] [ 4] [0810] +15:56:29 [ 7] [ 10] [0320085629] +15:56:29 [ 11] [ 6] [807337] +15:56:29 [ 15] [ 4] [0320] +15:56:29 [ 37] [ 12] [57915807337] +15:56:29 [ 39] [ 2] [00] +15:56:29 [ 70] [ 3] [001] +15:56:29 ============================================================================ +15:56:29 Sending to : +15:56:29 ============================================================================ +15:56:29 + + +waiting on router queue for slot.... +15:56:37 ============================================================================ +15:56:37 Slot Id : <73> +15:56:37 Transaction Type : REQUEST +15:56:37 Received From : +15:56:37 ============================================================================ +15:56:37 FNo. Len. Field Value +15:56:37 ============================================================================ +15:56:37 [ 1] [ 4] [0200] +15:56:37 [ 2] [ 16] [6688990040109553] +15:56:37 [ 3] [ 6] [302000] +15:56:37 [ 4] [ 12] [000000000000] +15:56:37 [ 7] [ 10] [0320155632] +15:56:37 [ 11] [ 6] [790551] +15:56:37 [ 12] [ 6] [155632] +15:56:37 [ 13] [ 4] [0320] +15:56:37 [ 15] [ 4] [0320] +15:56:37 [ 18] [ 4] [6011] +15:56:37 [ 22] [ 3] [900] +15:56:37 [ 25] [ 2] [02] +15:56:37 [ 28] [ 9] [D00000000] +15:56:37 [ 32] [ 6] [621354] +15:56:37 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:56:37 [ 37] [ 12] [507903499545] +15:56:37 [ 41] [ 8] [06002200] +15:56:37 [ 42] [ 15] [NATIVE ] +15:56:37 [ 43] [ 40] [Beng Market Beng LAO] +15:56:37 [ 49] [ 3] [418] +15:56:37 [ 52] [ 16] [CA9208157F6BA217] +15:56:37 ============================================================================ +15:56:37 + + +waiting on router queue for slot.... +15:56:37 Sending to : +15:56:37 ============================================================================ +15:56:37 Sending to : +15:56:37 ============================================================================ +15:56:37 ============================================================================ +15:56:37 Slot Id : <73> +15:56:37 Transaction Type : REQUEST +15:56:37 Received From : +15:56:37 ============================================================================ +15:56:37 FNo. Len. Field Value +15:56:37 ============================================================================ +15:56:37 [ 1] [ 4] [0200] +15:56:37 [ 2] [ 16] [6688990040109553] +15:56:37 [ 3] [ 6] [302000] +15:56:37 [ 4] [ 12] [000000000000] +15:56:37 [ 7] [ 10] [0320155632] +15:56:37 [ 11] [ 6] [790551] +15:56:37 [ 12] [ 6] [155632] +15:56:37 [ 13] [ 4] [0320] +15:56:37 [ 15] [ 4] [0320] +15:56:37 [ 18] [ 4] [6011] +15:56:37 [ 22] [ 3] [900] +15:56:37 [ 25] [ 2] [02] +15:56:37 [ 28] [ 9] [D00000000] +15:56:37 [ 32] [ 6] [621354] +15:56:37 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:56:37 [ 37] [ 12] [507903499545] +15:56:37 [ 41] [ 8] [06002200] +15:56:37 [ 42] [ 15] [NATIVE ] +15:56:37 [ 43] [ 40] [Beng Market Beng LAO] +15:56:37 [ 49] [ 3] [418] +15:56:37 [ 52] [ 16] [CA9208157F6BA217] +15:56:37 ============================================================================ +15:56:37 + + +waiting on router queue for slot.... +15:56:37 Sending to : +15:56:37 ============================================================================ +15:56:37 ============================================================================ +15:56:37 Slot Id : <73> +15:56:37 Transaction Type : REQUEST +15:56:37 Received From : +15:56:37 ============================================================================ +15:56:37 FNo. Len. Field Value +15:56:37 ============================================================================ +15:56:37 [ 1] [ 4] [0200] +15:56:37 [ 2] [ 16] [6688990040109553] +15:56:37 [ 3] [ 6] [302000] +15:56:37 [ 4] [ 12] [000000000000] +15:56:37 [ 7] [ 10] [0320155632] +15:56:37 [ 11] [ 6] [790551] +15:56:37 [ 12] [ 6] [155632] +15:56:37 [ 13] [ 4] [0320] +15:56:37 [ 15] [ 4] [0320] +15:56:37 [ 18] [ 4] [6011] +15:56:37 [ 22] [ 3] [900] +15:56:37 [ 25] [ 2] [02] +15:56:37 [ 28] [ 9] [D00000000] +15:56:37 [ 32] [ 6] [621354] +15:56:37 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:56:37 [ 37] [ 12] [507903499545] +15:56:37 [ 41] [ 8] [06002200] +15:56:37 [ 42] [ 15] [NATIVE ] +15:56:37 [ 43] [ 40] [Beng Market Beng LAO] +15:56:37 [ 49] [ 3] [418] +15:56:37 [ 52] [ 16] [EAC298115DFCF6BD] +15:56:37 ============================================================================ +15:56:37 + + +waiting on router queue for slot.... +15:56:37 Sending to : <4> +15:56:37 ============================================================================ +15:56:38 ============================================================================ +15:56:38 Slot Id : <73> +15:56:38 Transaction Type : RESPONSE +15:56:38 Received From : +15:56:38 ============================================================================ +15:56:38 FNo. Len. Field Value +15:56:38 ============================================================================ +15:56:38 [ 1] [ 4] [0210] +15:56:38 [ 2] [ 16] [6688990040109553] +15:56:38 [ 3] [ 6] [302000] +15:56:38 [ 4] [ 12] [000000000000] +15:56:38 [ 11] [ 6] [790551] +15:56:38 [ 12] [ 6] [155632] +15:56:38 [ 15] [ 4] [0320] +15:56:38 [ 18] [ 4] [6011] +15:56:38 [ 32] [ 6] [621354] +15:56:38 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:56:38 [ 37] [ 12] [507903499545] +15:56:38 [ 38] [ 6] [607629] +15:56:38 [ 39] [ 2] [00] +15:56:38 [ 41] [ 8] [06002200] +15:56:38 [ 49] [ 3] [418] +15:56:38 [ 54] [ 20] [2002418C000825307972] +15:56:38 ============================================================================ +15:56:38 Sending to : +15:56:38 ============================================================================ +15:56:38 + + +waiting on router queue for slot.... +15:56:40 ============================================================================ +15:56:40 Slot Id : <73> +15:56:40 Transaction Type : RESPONSE +15:56:40 Received From : +15:56:40 ============================================================================ +15:56:40 FNo. Len. Field Value +15:56:40 ============================================================================ +15:56:40 [ 1] [ 4] [0210] +15:56:40 [ 2] [ 16] [6688990040109553] +15:56:40 [ 3] [ 6] [302000] +15:56:40 [ 4] [ 12] [000000000000] +15:56:40 [ 11] [ 6] [790551] +15:56:40 [ 12] [ 6] [155632] +15:56:40 [ 15] [ 4] [0320] +15:56:40 [ 18] [ 4] [6011] +15:56:40 [ 32] [ 6] [621354] +15:56:40 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:56:40 [ 37] [ 12] [507903499545] +15:56:40 [ 38] [ 6] [607629] +15:56:40 [ 39] [ 2] [00] +15:56:40 [ 41] [ 8] [06002200] +15:56:40 [ 49] [ 3] [418] +15:56:40 [ 54] [ 20] [2002418C000825307972] +15:56:40 ============================================================================ +15:56:40 Calculate Source COMM Id = 0 +15:56:40 ============================================================================ +15:56:40 + + +waiting on router queue for slot.... +15:56:41 ============================================================================ +15:56:41 Slot Id : <38> +15:56:41 Transaction Type : REQUEST +15:56:41 Received From : +15:56:41 ============================================================================ +15:56:41 FNo. Len. Field Value +15:56:41 ============================================================================ +15:56:41 [ 1] [ 4] [0800] +15:56:41 [ 7] [ 10] [0320085548] +15:56:41 [ 11] [ 6] [157127] +15:56:41 [ 70] [ 3] [301] +15:56:41 ============================================================================ +15:56:41 + + +waiting on router queue for slot.... +15:56:41 Sending to : +15:56:41 ============================================================================ +15:56:41 ============================================================================ +15:56:41 Slot Id : <38> +15:56:41 Transaction Type : RESPONSE +15:56:41 Received From : +15:56:41 ============================================================================ +15:56:41 FNo. Len. Field Value +15:56:41 ============================================================================ +15:56:41 [ 1] [ 4] [0810] +15:56:41 [ 7] [ 10] [0320085548] +15:56:41 [ 11] [ 6] [157127] +15:56:41 [ 39] [ 2] [00] +15:56:41 [ 70] [ 3] [301] +15:56:41 ============================================================================ +15:56:41 Calculate Source COMM Id = 2 +15:56:41 ============================================================================ +15:56:41 + + +waiting on router queue for slot.... +15:56:46 ============================================================================ +15:56:46 Slot Id : <41> +15:56:46 Transaction Type : REQUEST +15:56:46 Received From : +15:56:46 ============================================================================ +15:56:46 FNo. Len. Field Value +15:56:46 ============================================================================ +15:56:46 [ 1] [ 4] [0200] +15:56:46 [ 2] [ 16] [6688990103551105] +15:56:46 [ 3] [ 6] [301000] +15:56:46 [ 7] [ 10] [0320085553] +15:56:46 [ 11] [ 6] [270194] +15:56:46 [ 12] [ 6] [155553] +15:56:46 [ 13] [ 4] [0320] +15:56:46 [ 14] [ 4] [4301] +15:56:46 [ 15] [ 4] [0320] +15:56:46 [ 18] [ 4] [6011] +15:56:46 [ 19] [ 3] [418] +15:56:46 [ 22] [ 3] [021] +15:56:46 [ 25] [ 2] [01] +15:56:46 [ 32] [ 6] [180893] +15:56:46 [ 35] [ 37] [6688990103551105=43011231110580900000] +15:56:46 [ 37] [ 12] [507908270194] +15:56:46 [ 41] [ 8] [0221XKKM] +15:56:46 [ 42] [ 15] [999999 ] +15:56:46 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +15:56:46 [ 49] [ 3] [418] +15:56:46 [ 52] [ 16] [E03469FF0C923894] +15:56:46 ============================================================================ +15:56:46 + + +waiting on router queue for slot.... +15:56:46 Sending to : +15:56:46 ============================================================================ +15:56:46 Sending to : +15:56:46 ============================================================================ +15:56:47 ============================================================================ +15:56:47 Slot Id : <41> +15:56:47 Transaction Type : REQUEST +15:56:47 Received From : +15:56:47 ============================================================================ +15:56:47 FNo. Len. Field Value +15:56:47 ============================================================================ +15:56:47 [ 1] [ 4] [0200] +15:56:47 [ 2] [ 16] [6688990103551105] +15:56:47 [ 3] [ 6] [301000] +15:56:47 [ 7] [ 10] [0320085553] +15:56:47 [ 11] [ 6] [270194] +15:56:47 [ 12] [ 6] [155553] +15:56:47 [ 13] [ 4] [0320] +15:56:47 [ 14] [ 4] [4301] +15:56:47 [ 15] [ 4] [0320] +15:56:47 [ 18] [ 4] [6011] +15:56:47 [ 19] [ 3] [418] +15:56:47 [ 22] [ 3] [021] +15:56:47 [ 25] [ 2] [01] +15:56:47 [ 32] [ 6] [180893] +15:56:47 [ 35] [ 37] [6688990103551105=43011231110580900000] +15:56:47 [ 37] [ 12] [507908270194] +15:56:47 [ 41] [ 8] [0221XKKM] +15:56:47 [ 42] [ 15] [999999 ] +15:56:47 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +15:56:47 [ 49] [ 3] [418] +15:56:47 [ 52] [ 16] [E03469FF0C923894] +15:56:47 ============================================================================ +15:56:47 + + +waiting on router queue for slot.... +15:56:47 Sending to : +15:56:47 ============================================================================ +15:56:47 ============================================================================ +15:56:47 Slot Id : <41> +15:56:47 Transaction Type : REQUEST +15:56:47 Received From : +15:56:47 ============================================================================ +15:56:47 FNo. Len. Field Value +15:56:47 ============================================================================ +15:56:47 [ 1] [ 4] [0200] +15:56:47 [ 2] [ 16] [6688990103551105] +15:56:47 [ 3] [ 6] [301000] +15:56:47 [ 7] [ 10] [0320085553] +15:56:47 [ 11] [ 6] [270194] +15:56:47 [ 12] [ 6] [155553] +15:56:47 [ 13] [ 4] [0320] +15:56:47 [ 14] [ 4] [4301] +15:56:47 [ 15] [ 4] [0320] +15:56:47 [ 18] [ 4] [6011] +15:56:47 [ 19] [ 3] [418] +15:56:47 [ 22] [ 3] [021] +15:56:47 [ 25] [ 2] [01] +15:56:47 [ 32] [ 6] [180893] +15:56:47 [ 35] [ 37] [6688990103551105=43011231110580900000] +15:56:47 [ 37] [ 12] [507908270194] +15:56:47 [ 41] [ 8] [0221XKKM] +15:56:47 [ 42] [ 15] [999999 ] +15:56:47 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +15:56:47 [ 49] [ 3] [418] +15:56:47 [ 52] [ 16] [2141A752F47AEE90] +15:56:47 ============================================================================ +15:56:47 + + +waiting on router queue for slot.... +15:56:47 Sending to : <0> +15:56:47 ============================================================================ +15:56:47 ============================================================================ +15:56:47 Slot Id : <41> +15:56:47 Transaction Type : RESPONSE +15:56:47 Received From : +15:56:47 ============================================================================ +15:56:47 FNo. Len. Field Value +15:56:47 ============================================================================ +15:56:47 [ 1] [ 4] [0210] +15:56:47 [ 2] [ 16] [6688990103551105] +15:56:47 [ 3] [ 6] [301000] +15:56:47 [ 4] [ 12] [000000000000] +15:56:47 [ 7] [ 10] [0320085553] +15:56:47 [ 11] [ 6] [270194] +15:56:47 [ 12] [ 6] [155553] +15:56:47 [ 13] [ 4] [0320] +15:56:47 [ 15] [ 4] [0320] +15:56:47 [ 18] [ 4] [6011] +15:56:47 [ 19] [ 3] [418] +15:56:47 [ 22] [ 3] [021] +15:56:47 [ 32] [ 6] [180893] +15:56:47 [ 35] [ 37] [6688990103551105=43011231110580900000] +15:56:47 [ 37] [ 12] [507908270194] +15:56:47 [ 39] [ 2] [14] +15:56:47 [ 41] [ 8] [0221XKKM] +15:56:47 [ 49] [ 3] [418] +15:56:47 ============================================================================ +15:56:47 Sending to : +15:56:47 ============================================================================ +15:56:47 + + +waiting on router queue for slot.... +15:56:48 ============================================================================ +15:56:48 Slot Id : <41> +15:56:48 Transaction Type : RESPONSE +15:56:48 Received From : +15:56:48 ============================================================================ +15:56:48 FNo. Len. Field Value +15:56:48 ============================================================================ +15:56:48 [ 1] [ 4] [0210] +15:56:48 [ 2] [ 16] [6688990103551105] +15:56:48 [ 3] [ 6] [301000] +15:56:48 [ 4] [ 12] [000000000000] +15:56:48 [ 7] [ 10] [0320085553] +15:56:48 [ 11] [ 6] [270194] +15:56:48 [ 12] [ 6] [155553] +15:56:48 [ 13] [ 4] [0320] +15:56:48 [ 15] [ 4] [0320] +15:56:48 [ 18] [ 4] [6011] +15:56:48 [ 19] [ 3] [418] +15:56:48 [ 22] [ 3] [021] +15:56:48 [ 32] [ 6] [180893] +15:56:48 [ 35] [ 37] [6688990103551105=43011231110580900000] +15:56:48 [ 37] [ 12] [507908270194] +15:56:48 [ 39] [ 2] [14] +15:56:48 [ 41] [ 8] [0221XKKM] +15:56:48 [ 49] [ 3] [418] +15:56:48 ============================================================================ +15:56:48 Calculate Source COMM Id = 2 +15:56:48 ============================================================================ +15:56:48 + + +waiting on router queue for slot.... +15:57:03 ============================================================================ +15:57:03 Slot Id : <464> +15:57:03 Transaction Type : REQUEST +15:57:03 Received From : +15:57:03 ============================================================================ +15:57:03 FNo. Len. Field Value +15:57:03 ============================================================================ +15:57:03 [ 1] [ 4] [0800] +15:57:03 [ 7] [ 10] [0320085610] +15:57:03 [ 11] [ 6] [157128] +15:57:03 [ 70] [ 3] [301] +15:57:03 ============================================================================ +15:57:03 + + +waiting on router queue for slot.... +15:57:03 Sending to : +15:57:03 ============================================================================ +15:57:03 ============================================================================ +15:57:03 Slot Id : <464> +15:57:03 Transaction Type : RESPONSE +15:57:03 Received From : +15:57:03 ============================================================================ +15:57:03 FNo. Len. Field Value +15:57:03 ============================================================================ +15:57:03 [ 1] [ 4] [0810] +15:57:03 [ 7] [ 10] [0320085610] +15:57:03 [ 11] [ 6] [157128] +15:57:03 [ 39] [ 2] [00] +15:57:03 [ 70] [ 3] [301] +15:57:03 ============================================================================ +15:57:03 Calculate Source COMM Id = 2 +15:57:03 ============================================================================ +15:57:03 + + +waiting on router queue for slot.... +15:57:13 ============================================================================ +15:57:13 Slot Id : <32> +15:57:13 Transaction Type : REQUEST +15:57:13 Received From : +15:57:13 ============================================================================ +15:57:13 FNo. Len. Field Value +15:57:13 ============================================================================ +15:57:13 [ 1] [ 4] [0800] +15:57:13 [ 7] [ 10] [0320085621] +15:57:13 [ 11] [ 6] [157129] +15:57:13 [ 70] [ 3] [301] +15:57:13 ============================================================================ +15:57:13 + + +waiting on router queue for slot.... +15:57:13 Sending to : +15:57:13 ============================================================================ +15:57:13 ============================================================================ +15:57:13 Slot Id : <32> +15:57:13 Transaction Type : RESPONSE +15:57:13 Received From : +15:57:13 ============================================================================ +15:57:13 FNo. Len. Field Value +15:57:13 ============================================================================ +15:57:13 [ 1] [ 4] [0810] +15:57:13 [ 7] [ 10] [0320085621] +15:57:13 [ 11] [ 6] [157129] +15:57:13 [ 39] [ 2] [00] +15:57:13 [ 70] [ 3] [301] +15:57:13 ============================================================================ +15:57:13 Calculate Source COMM Id = 2 +15:57:13 ============================================================================ +15:57:13 + + +waiting on router queue for slot.... +15:57:30 ============================================================================ +15:57:30 Slot Id : <26> +15:57:30 Transaction Type : REQUEST +15:57:30 Received From : +15:57:30 ============================================================================ +15:57:30 FNo. Len. Field Value +15:57:30 ============================================================================ +15:57:30 [ 1] [ 4] [0800] +15:57:30 [ 7] [ 10] [0320085637] +15:57:30 [ 11] [ 6] [157130] +15:57:30 [ 70] [ 3] [301] +15:57:30 ============================================================================ +15:57:30 + + +waiting on router queue for slot.... +15:57:30 Sending to : +15:57:30 ============================================================================ +15:57:30 ============================================================================ +15:57:30 Slot Id : <26> +15:57:30 Transaction Type : RESPONSE +15:57:30 Received From : +15:57:30 ============================================================================ +15:57:30 FNo. Len. Field Value +15:57:30 ============================================================================ +15:57:30 [ 1] [ 4] [0810] +15:57:30 [ 7] [ 10] [0320085637] +15:57:30 [ 11] [ 6] [157130] +15:57:30 [ 39] [ 2] [00] +15:57:30 [ 70] [ 3] [301] +15:57:30 ============================================================================ +15:57:30 Calculate Source COMM Id = 2 +15:57:30 ============================================================================ +15:57:30 + + +waiting on router queue for slot.... +15:57:31 ============================================================================ +15:57:31 Slot Id : <487> +15:57:31 Transaction Type : REQUEST +15:57:31 Received From : +15:57:31 ============================================================================ +15:57:31 FNo. Len. Field Value +15:57:31 ============================================================================ +15:57:31 [ 1] [ 4] [0800] +15:57:31 [ 2] [ 5] [02531] +15:57:31 [ 3] [ 6] [579158] +15:57:31 [ 7] [ 10] [0320085731] +15:57:31 [ 11] [ 6] [807338] +15:57:31 [ 15] [ 10] [0320085731] +15:57:31 [ 37] [ 11] [57915807338] +15:57:31 [ 70] [ 3] [001] +15:57:31 ============================================================================ +15:57:31 + + +waiting on router queue for slot.... +15:57:31 ============================================================================ +15:57:31 Slot Id : <487> +15:57:31 Transaction Type : RESPONSE +15:57:31 Received From : +15:57:31 ============================================================================ +15:57:31 FNo. Len. Field Value +15:57:31 ============================================================================ +15:57:31 [ 1] [ 4] [0810] +15:57:31 [ 7] [ 10] [0320085731] +15:57:31 [ 11] [ 6] [807338] +15:57:31 [ 15] [ 4] [0320] +15:57:31 [ 37] [ 12] [57915807338] +15:57:31 [ 39] [ 2] [00] +15:57:31 [ 70] [ 3] [001] +15:57:31 ============================================================================ +15:57:31 Sending to : +15:57:31 ============================================================================ +15:57:31 + + +waiting on router queue for slot.... +15:57:32 ============================================================================ +15:57:32 Slot Id : <20> +15:57:32 Transaction Type : REQUEST +15:57:32 Received From : +15:57:32 ============================================================================ +15:57:32 FNo. Len. Field Value +15:57:32 ============================================================================ +15:57:32 [ 1] [ 4] [0800] +15:57:32 [ 7] [ 10] [0320230921] +15:57:32 [ 11] [ 6] [160921] +15:57:32 [ 37] [ 12] [57916160921] +15:57:32 [ 70] [ 3] [301] +15:57:32 ============================================================================ +15:57:32 + + +waiting on router queue for slot.... +15:57:32 Sending to : +15:57:32 ============================================================================ +15:57:32 ============================================================================ +15:57:32 Slot Id : <20> +15:57:32 Transaction Type : RESPONSE +15:57:32 Received From : +15:57:32 ============================================================================ +15:57:32 FNo. Len. Field Value +15:57:32 ============================================================================ +15:57:32 [ 1] [ 4] [0810] +15:57:32 [ 7] [ 10] [0320230921] +15:57:32 [ 11] [ 6] [160921] +15:57:32 [ 37] [ 12] [579161609210] +15:57:32 [ 39] [ 2] [00] +15:57:32 [ 70] [ 3] [810] +15:57:32 ============================================================================ +15:57:32 Calculate Source COMM Id = 6 +15:57:32 ============================================================================ +15:57:32 + + +waiting on router queue for slot.... +15:57:33 ============================================================================ +15:57:33 Slot Id : <69> +15:57:33 Transaction Type : REQUEST +15:57:33 Received From : +15:57:33 ============================================================================ +15:57:33 FNo. Len. Field Value +15:57:33 ============================================================================ +15:57:33 [ 1] [ 4] [0200] +15:57:33 [ 2] [ 16] [6688990040102327] +15:57:33 [ 3] [ 6] [300000] +15:57:33 [ 4] [ 12] [000000000000] +15:57:33 [ 7] [ 10] [0320155728] +15:57:33 [ 11] [ 6] [790773] +15:57:33 [ 12] [ 6] [155728] +15:57:33 [ 13] [ 4] [0320] +15:57:33 [ 15] [ 4] [0320] +15:57:33 [ 18] [ 4] [6011] +15:57:33 [ 22] [ 3] [900] +15:57:33 [ 25] [ 2] [02] +15:57:33 [ 28] [ 9] [D00000000] +15:57:33 [ 32] [ 6] [621354] +15:57:33 [ 35] [ 37] [6688990040102327=98031261490392600000] +15:57:33 [ 37] [ 12] [507904627731] +15:57:33 [ 41] [ 8] [17000700] +15:57:33 [ 42] [ 15] [NATIVE ] +15:57:33 [ 43] [ 40] [Ban Phanxay Samneua LAO] +15:57:33 [ 49] [ 3] [418] +15:57:33 [ 52] [ 16] [E36E52B2E57D4472] +15:57:33 ============================================================================ +15:57:33 + + +waiting on router queue for slot.... +15:57:33 Sending to : +15:57:33 ============================================================================ +15:57:33 Sending to : +15:57:33 ============================================================================ +15:57:33 ============================================================================ +15:57:33 Slot Id : <69> +15:57:33 Transaction Type : REQUEST +15:57:33 Received From : +15:57:33 ============================================================================ +15:57:33 FNo. Len. Field Value +15:57:33 ============================================================================ +15:57:33 [ 1] [ 4] [0200] +15:57:33 [ 2] [ 16] [6688990040102327] +15:57:33 [ 3] [ 6] [300000] +15:57:33 [ 4] [ 12] [000000000000] +15:57:33 [ 7] [ 10] [0320155728] +15:57:33 [ 11] [ 6] [790773] +15:57:33 [ 12] [ 6] [155728] +15:57:33 [ 13] [ 4] [0320] +15:57:33 [ 15] [ 4] [0320] +15:57:33 [ 18] [ 4] [6011] +15:57:33 [ 22] [ 3] [900] +15:57:33 [ 25] [ 2] [02] +15:57:33 [ 28] [ 9] [D00000000] +15:57:33 [ 32] [ 6] [621354] +15:57:33 [ 35] [ 37] [6688990040102327=98031261490392600000] +15:57:33 [ 37] [ 12] [507904627731] +15:57:33 [ 41] [ 8] [17000700] +15:57:33 [ 42] [ 15] [NATIVE ] +15:57:33 [ 43] [ 40] [Ban Phanxay Samneua LAO] +15:57:33 [ 49] [ 3] [418] +15:57:33 [ 52] [ 16] [E36E52B2E57D4472] +15:57:33 ============================================================================ +15:57:33 + + +waiting on router queue for slot.... +15:57:33 Sending to : +15:57:33 ============================================================================ +15:57:33 ============================================================================ +15:57:33 Slot Id : <69> +15:57:33 Transaction Type : REQUEST +15:57:33 Received From : +15:57:33 ============================================================================ +15:57:33 FNo. Len. Field Value +15:57:33 ============================================================================ +15:57:33 [ 1] [ 4] [0200] +15:57:33 [ 2] [ 16] [6688990040102327] +15:57:33 [ 3] [ 6] [300000] +15:57:33 [ 4] [ 12] [000000000000] +15:57:33 [ 7] [ 10] [0320155728] +15:57:33 [ 11] [ 6] [790773] +15:57:33 [ 12] [ 6] [155728] +15:57:33 [ 13] [ 4] [0320] +15:57:33 [ 15] [ 4] [0320] +15:57:33 [ 18] [ 4] [6011] +15:57:33 [ 22] [ 3] [900] +15:57:33 [ 25] [ 2] [02] +15:57:33 [ 28] [ 9] [D00000000] +15:57:33 [ 32] [ 6] [621354] +15:57:33 [ 35] [ 37] [6688990040102327=98031261490392600000] +15:57:33 [ 37] [ 12] [507904627731] +15:57:33 [ 41] [ 8] [17000700] +15:57:33 [ 42] [ 15] [NATIVE ] +15:57:33 [ 43] [ 40] [Ban Phanxay Samneua LAO] +15:57:33 [ 49] [ 3] [418] +15:57:33 [ 52] [ 16] [36EC1436AD953556] +15:57:33 ============================================================================ +15:57:33 + + +waiting on router queue for slot.... +15:57:33 Sending to : <4> +15:57:33 ============================================================================ +15:57:34 ============================================================================ +15:57:34 Slot Id : <69> +15:57:34 Transaction Type : RESPONSE +15:57:34 Received From : +15:57:34 ============================================================================ +15:57:34 FNo. Len. Field Value +15:57:34 ============================================================================ +15:57:34 [ 1] [ 4] [0210] +15:57:34 [ 2] [ 16] [6688990040102327] +15:57:34 [ 3] [ 6] [300000] +15:57:34 [ 4] [ 12] [000000000000] +15:57:34 [ 11] [ 6] [790773] +15:57:34 [ 12] [ 6] [155728] +15:57:34 [ 15] [ 4] [0320] +15:57:34 [ 18] [ 4] [6011] +15:57:34 [ 32] [ 6] [621354] +15:57:34 [ 35] [ 37] [6688990040102327=98031261490392600000] +15:57:34 [ 37] [ 12] [507904627731] +15:57:34 [ 38] [ 6] [919988] +15:57:34 [ 39] [ 2] [00] +15:57:34 [ 41] [ 8] [17000700] +15:57:34 [ 49] [ 3] [418] +15:57:34 [ 54] [ 20] [0002418C000102189366] +15:57:34 ============================================================================ +15:57:34 Sending to : +15:57:34 ============================================================================ +15:57:34 + + +waiting on router queue for slot.... +15:57:36 ============================================================================ +15:57:36 Slot Id : <69> +15:57:36 Transaction Type : RESPONSE +15:57:36 Received From : +15:57:36 ============================================================================ +15:57:36 FNo. Len. Field Value +15:57:36 ============================================================================ +15:57:36 [ 1] [ 4] [0210] +15:57:36 [ 2] [ 16] [6688990040102327] +15:57:36 [ 3] [ 6] [300000] +15:57:36 [ 4] [ 12] [000000000000] +15:57:36 [ 11] [ 6] [790773] +15:57:36 [ 12] [ 6] [155728] +15:57:36 [ 15] [ 4] [0320] +15:57:36 [ 18] [ 4] [6011] +15:57:36 [ 32] [ 6] [621354] +15:57:36 [ 35] [ 37] [6688990040102327=98031261490392600000] +15:57:36 [ 37] [ 12] [507904627731] +15:57:36 [ 38] [ 6] [919988] +15:57:36 [ 39] [ 2] [00] +15:57:36 [ 41] [ 8] [17000700] +15:57:36 [ 49] [ 3] [418] +15:57:36 [ 54] [ 20] [0002418C000102189366] +15:57:36 ============================================================================ +15:57:36 Calculate Source COMM Id = 0 +15:57:36 ============================================================================ +15:57:36 + + +waiting on router queue for slot.... +15:57:37 ============================================================================ +15:57:37 Slot Id : <46> +15:57:37 Transaction Type : REQUEST +15:57:37 Received From : +15:57:37 ============================================================================ +15:57:37 FNo. Len. Field Value +15:57:37 ============================================================================ +15:57:37 [ 1] [ 4] [0200] +15:57:37 [ 2] [ 16] [6213544001511846] +15:57:37 [ 3] [ 6] [301000] +15:57:37 [ 7] [ 10] [0320085644] +15:57:37 [ 11] [ 6] [270199] +15:57:37 [ 12] [ 6] [155644] +15:57:37 [ 13] [ 4] [0320] +15:57:37 [ 14] [ 4] [4912] +15:57:37 [ 15] [ 4] [0320] +15:57:37 [ 18] [ 4] [6011] +15:57:37 [ 19] [ 3] [418] +15:57:37 [ 22] [ 3] [021] +15:57:37 [ 25] [ 2] [01] +15:57:37 [ 32] [ 6] [180893] +15:57:37 [ 35] [ 32] [6213544001511846=491212011184174] +15:57:37 [ 37] [ 12] [507908270199] +15:57:37 [ 41] [ 8] [0221XKKM] +15:57:37 [ 42] [ 15] [999999 ] +15:57:37 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +15:57:37 [ 49] [ 3] [418] +15:57:37 [ 52] [ 16] [B468A822B0FAB116] +15:57:37 ============================================================================ +15:57:37 + + +waiting on router queue for slot.... +15:57:37 Sending to : +15:57:37 ============================================================================ +15:57:37 Sending to : +15:57:37 ============================================================================ +15:57:38 ============================================================================ +15:57:38 Slot Id : <46> +15:57:38 Transaction Type : REQUEST +15:57:38 Received From : +15:57:38 ============================================================================ +15:57:38 FNo. Len. Field Value +15:57:38 ============================================================================ +15:57:38 [ 1] [ 4] [0200] +15:57:38 [ 2] [ 16] [6213544001511846] +15:57:38 [ 3] [ 6] [301000] +15:57:38 [ 7] [ 10] [0320085644] +15:57:38 [ 11] [ 6] [270199] +15:57:38 [ 12] [ 6] [155644] +15:57:38 [ 13] [ 4] [0320] +15:57:38 [ 14] [ 4] [4912] +15:57:38 [ 15] [ 4] [0320] +15:57:38 [ 18] [ 4] [6011] +15:57:38 [ 19] [ 3] [418] +15:57:38 [ 22] [ 3] [021] +15:57:38 [ 25] [ 2] [01] +15:57:38 [ 32] [ 6] [180893] +15:57:38 [ 35] [ 32] [6213544001511846=491212011184174] +15:57:38 [ 37] [ 12] [507908270199] +15:57:38 [ 41] [ 8] [0221XKKM] +15:57:38 [ 42] [ 15] [999999 ] +15:57:38 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +15:57:38 [ 49] [ 3] [418] +15:57:38 [ 52] [ 16] [B468A822B0FAB116] +15:57:38 ============================================================================ +15:57:38 + + +waiting on router queue for slot.... +15:57:38 Sending to : +15:57:38 ============================================================================ +15:57:38 ============================================================================ +15:57:38 Slot Id : <46> +15:57:38 Transaction Type : REQUEST +15:57:38 Received From : +15:57:38 ============================================================================ +15:57:38 FNo. Len. Field Value +15:57:38 ============================================================================ +15:57:38 [ 1] [ 4] [0200] +15:57:38 [ 2] [ 16] [6213544001511846] +15:57:38 [ 3] [ 6] [301000] +15:57:38 [ 7] [ 10] [0320085644] +15:57:38 [ 11] [ 6] [270199] +15:57:38 [ 12] [ 6] [155644] +15:57:38 [ 13] [ 4] [0320] +15:57:38 [ 14] [ 4] [4912] +15:57:38 [ 15] [ 4] [0320] +15:57:38 [ 18] [ 4] [6011] +15:57:38 [ 19] [ 3] [418] +15:57:38 [ 22] [ 3] [021] +15:57:38 [ 25] [ 2] [01] +15:57:38 [ 32] [ 6] [180893] +15:57:38 [ 35] [ 32] [6213544001511846=491212011184174] +15:57:38 [ 37] [ 12] [507908270199] +15:57:38 [ 41] [ 8] [0221XKKM] +15:57:38 [ 42] [ 15] [999999 ] +15:57:38 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +15:57:38 [ 49] [ 3] [418] +15:57:38 [ 52] [ 16] [C9B25ED3E3F11D5C] +15:57:38 ============================================================================ +15:57:38 + + +waiting on router queue for slot.... +15:57:38 Sending to : <0> +15:57:38 ============================================================================ +15:57:39 ============================================================================ +15:57:39 Slot Id : <46> +15:57:39 Transaction Type : RESPONSE +15:57:39 Received From : +15:57:39 ============================================================================ +15:57:39 FNo. Len. Field Value +15:57:39 ============================================================================ +15:57:39 [ 1] [ 4] [0210] +15:57:39 [ 2] [ 16] [6213544001511846] +15:57:39 [ 3] [ 6] [301000] +15:57:39 [ 4] [ 12] [000000000000] +15:57:39 [ 7] [ 10] [0320085644] +15:57:39 [ 11] [ 6] [270199] +15:57:39 [ 12] [ 6] [155644] +15:57:39 [ 13] [ 4] [0320] +15:57:39 [ 15] [ 4] [0320] +15:57:39 [ 18] [ 4] [6011] +15:57:39 [ 19] [ 3] [418] +15:57:39 [ 32] [ 6] [180893] +15:57:39 [ 35] [ 32] [6213544001511846=491212011184174] +15:57:39 [ 37] [ 12] [507908270199] +15:57:39 [ 38] [ 6] [294969] +15:57:39 [ 39] [ 2] [00] +15:57:39 [ 41] [ 8] [0221XKKM] +15:57:39 [ 49] [ 3] [418] +15:57:39 [ 54] [ 40] [1001418C0000162456801002418C000016245680] +15:57:39 ============================================================================ +15:57:39 Sending to : +15:57:39 ============================================================================ +15:57:39 + + +waiting on router queue for slot.... +15:57:40 ============================================================================ +15:57:40 Slot Id : <27> +15:57:40 Transaction Type : REQUEST +15:57:40 Received From : +15:57:40 ============================================================================ +15:57:40 FNo. Len. Field Value +15:57:40 ============================================================================ +15:57:40 [ 1] [ 4] [0200] +15:57:40 [ 2] [ 16] [6688990040109553] +15:57:40 [ 3] [ 6] [012000] +15:57:40 [ 4] [ 12] [000040000000] +15:57:40 [ 7] [ 10] [0320155735] +15:57:40 [ 11] [ 6] [790802] +15:57:40 [ 12] [ 6] [155735] +15:57:40 [ 13] [ 4] [0320] +15:57:40 [ 15] [ 4] [0320] +15:57:40 [ 18] [ 4] [6011] +15:57:40 [ 22] [ 3] [900] +15:57:40 [ 25] [ 2] [02] +15:57:40 [ 28] [ 9] [D00002000] +15:57:40 [ 32] [ 6] [621354] +15:57:40 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:57:40 [ 37] [ 12] [507903499547] +15:57:40 [ 41] [ 8] [06002200] +15:57:40 [ 42] [ 15] [NATIVE ] +15:57:40 [ 43] [ 40] [Beng Market Beng LAO] +15:57:40 [ 49] [ 3] [418] +15:57:40 [ 52] [ 16] [CA9208157F6BA217] +15:57:40 ============================================================================ +15:57:40 + + +waiting on router queue for slot.... +15:57:40 Sending to : +15:57:40 ============================================================================ +15:57:40 Sending to : +15:57:40 ============================================================================ +15:57:40 ============================================================================ +15:57:40 Slot Id : <27> +15:57:40 Transaction Type : REQUEST +15:57:40 Received From : +15:57:40 ============================================================================ +15:57:40 FNo. Len. Field Value +15:57:40 ============================================================================ +15:57:40 [ 1] [ 4] [0200] +15:57:40 [ 2] [ 16] [6688990040109553] +15:57:40 [ 3] [ 6] [012000] +15:57:40 [ 4] [ 12] [000040000000] +15:57:40 [ 7] [ 10] [0320155735] +15:57:40 [ 11] [ 6] [790802] +15:57:40 [ 12] [ 6] [155735] +15:57:40 [ 13] [ 4] [0320] +15:57:40 [ 15] [ 4] [0320] +15:57:40 [ 18] [ 4] [6011] +15:57:40 [ 22] [ 3] [900] +15:57:40 [ 25] [ 2] [02] +15:57:40 [ 28] [ 9] [D00002000] +15:57:40 [ 32] [ 6] [621354] +15:57:40 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:57:40 [ 37] [ 12] [507903499547] +15:57:40 [ 41] [ 8] [06002200] +15:57:40 [ 42] [ 15] [NATIVE ] +15:57:40 [ 43] [ 40] [Beng Market Beng LAO] +15:57:40 [ 49] [ 3] [418] +15:57:40 [ 52] [ 16] [CA9208157F6BA217] +15:57:40 ============================================================================ +15:57:40 + + +waiting on router queue for slot.... +15:57:40 Sending to : +15:57:40 ============================================================================ +15:57:40 ============================================================================ +15:57:40 Slot Id : <27> +15:57:40 Transaction Type : REQUEST +15:57:40 Received From : +15:57:40 ============================================================================ +15:57:40 FNo. Len. Field Value +15:57:40 ============================================================================ +15:57:40 [ 1] [ 4] [0200] +15:57:40 [ 2] [ 16] [6688990040109553] +15:57:40 [ 3] [ 6] [012000] +15:57:40 [ 4] [ 12] [000040000000] +15:57:40 [ 7] [ 10] [0320155735] +15:57:40 [ 11] [ 6] [790802] +15:57:40 [ 12] [ 6] [155735] +15:57:40 [ 13] [ 4] [0320] +15:57:40 [ 15] [ 4] [0320] +15:57:40 [ 18] [ 4] [6011] +15:57:40 [ 22] [ 3] [900] +15:57:40 [ 25] [ 2] [02] +15:57:40 [ 28] [ 9] [D00002000] +15:57:40 [ 32] [ 6] [621354] +15:57:40 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:57:40 [ 37] [ 12] [507903499547] +15:57:40 [ 41] [ 8] [06002200] +15:57:40 [ 42] [ 15] [NATIVE ] +15:57:40 [ 43] [ 40] [Beng Market Beng LAO] +15:57:40 [ 49] [ 3] [418] +15:57:40 [ 52] [ 16] [EAC298115DFCF6BD] +15:57:40 ============================================================================ +15:57:40 + + +waiting on router queue for slot.... +15:57:40 Sending to : <4> +15:57:40 ============================================================================ +15:57:40 ============================================================================ +15:57:40 Slot Id : <19> +15:57:40 Transaction Type : REQUEST +15:57:40 Received From : +15:57:40 ============================================================================ +15:57:40 FNo. Len. Field Value +15:57:40 ============================================================================ +15:57:40 [ 1] [ 4] [0200] +15:57:40 [ 2] [ 16] [6688990102227400] +15:57:40 [ 3] [ 6] [011000] +15:57:40 [ 4] [ 12] [000030000000] +15:57:40 [ 7] [ 10] [0320155736] +15:57:40 [ 11] [ 6] [790805] +15:57:40 [ 12] [ 6] [155736] +15:57:40 [ 13] [ 4] [0320] +15:57:40 [ 15] [ 4] [0320] +15:57:40 [ 18] [ 4] [6011] +15:57:40 [ 22] [ 3] [900] +15:57:40 [ 25] [ 2] [02] +15:57:40 [ 28] [ 9] [D00002000] +15:57:40 [ 32] [ 6] [621354] +15:57:40 [ 35] [ 37] [6688990102227400=42081231740030600000] +15:57:40 [ 37] [ 12] [507903278894] +15:57:40 [ 41] [ 8] [12002700] +15:57:40 [ 42] [ 15] [NATIVE ] +15:57:40 [ 43] [ 40] [SAYYABOULY ATM01 Paklay LAO] +15:57:40 [ 49] [ 3] [418] +15:57:40 [ 52] [ 16] [90538AFCA7BB2669] +15:57:40 ============================================================================ +15:57:40 + + +waiting on router queue for slot.... +15:57:40 Sending to : +15:57:40 ============================================================================ +15:57:40 Sending to : +15:57:40 ============================================================================ +15:57:41 ============================================================================ +15:57:41 Slot Id : <46> +15:57:41 Transaction Type : RESPONSE +15:57:41 Received From : +15:57:41 ============================================================================ +15:57:41 FNo. Len. Field Value +15:57:41 ============================================================================ +15:57:41 [ 1] [ 4] [0210] +15:57:41 [ 2] [ 16] [6213544001511846] +15:57:41 [ 3] [ 6] [301000] +15:57:41 [ 4] [ 12] [000000000000] +15:57:41 [ 7] [ 10] [0320085644] +15:57:41 [ 11] [ 6] [270199] +15:57:41 [ 12] [ 6] [155644] +15:57:41 [ 13] [ 4] [0320] +15:57:41 [ 15] [ 4] [0320] +15:57:41 [ 18] [ 4] [6011] +15:57:41 [ 19] [ 3] [418] +15:57:41 [ 32] [ 6] [180893] +15:57:41 [ 35] [ 32] [6213544001511846=491212011184174] +15:57:41 [ 37] [ 12] [507908270199] +15:57:41 [ 38] [ 6] [294969] +15:57:41 [ 39] [ 2] [00] +15:57:41 [ 41] [ 8] [0221XKKM] +15:57:41 [ 49] [ 3] [418] +15:57:41 [ 54] [ 40] [1001418C0000162456801002418C000016245680] +15:57:41 ============================================================================ +15:57:41 Calculate Source COMM Id = 2 +15:57:41 ============================================================================ +15:57:41 + + +waiting on router queue for slot.... +15:57:41 ============================================================================ +15:57:41 Slot Id : <48> +15:57:41 Transaction Type : REQUEST +15:57:41 Received From : +15:57:41 ============================================================================ +15:57:41 FNo. Len. Field Value +15:57:41 ============================================================================ +15:57:41 [ 1] [ 4] [0800] +15:57:41 [ 7] [ 10] [0320085648] +15:57:41 [ 11] [ 6] [157131] +15:57:41 [ 70] [ 3] [301] +15:57:41 ============================================================================ +15:57:41 + + +waiting on router queue for slot.... +15:57:41 Sending to : +15:57:41 ============================================================================ +15:57:41 ============================================================================ +15:57:41 Slot Id : <48> +15:57:41 Transaction Type : RESPONSE +15:57:41 Received From : +15:57:41 ============================================================================ +15:57:41 FNo. Len. Field Value +15:57:41 ============================================================================ +15:57:41 [ 1] [ 4] [0810] +15:57:41 [ 7] [ 10] [0320085648] +15:57:41 [ 11] [ 6] [157131] +15:57:41 [ 39] [ 2] [00] +15:57:41 [ 70] [ 3] [301] +15:57:41 ============================================================================ +15:57:41 Calculate Source COMM Id = 2 +15:57:41 ============================================================================ +15:57:41 + + +waiting on router queue for slot.... +15:57:41 ============================================================================ +15:57:41 Slot Id : <19> +15:57:41 Transaction Type : REQUEST +15:57:41 Received From : +15:57:41 ============================================================================ +15:57:41 FNo. Len. Field Value +15:57:41 ============================================================================ +15:57:41 [ 1] [ 4] [0200] +15:57:41 [ 2] [ 16] [6688990102227400] +15:57:41 [ 3] [ 6] [011000] +15:57:41 [ 4] [ 12] [000030000000] +15:57:41 [ 7] [ 10] [0320155736] +15:57:41 [ 11] [ 6] [790805] +15:57:41 [ 12] [ 6] [155736] +15:57:41 [ 13] [ 4] [0320] +15:57:41 [ 15] [ 4] [0320] +15:57:41 [ 18] [ 4] [6011] +15:57:41 [ 22] [ 3] [900] +15:57:41 [ 25] [ 2] [02] +15:57:41 [ 28] [ 9] [D00002000] +15:57:41 [ 32] [ 6] [621354] +15:57:41 [ 35] [ 37] [6688990102227400=42081231740030600000] +15:57:41 [ 37] [ 12] [507903278894] +15:57:41 [ 41] [ 8] [12002700] +15:57:41 [ 42] [ 15] [NATIVE ] +15:57:41 [ 43] [ 40] [SAYYABOULY ATM01 Paklay LAO] +15:57:41 [ 49] [ 3] [418] +15:57:41 [ 52] [ 16] [90538AFCA7BB2669] +15:57:41 ============================================================================ +15:57:41 + + +waiting on router queue for slot.... +15:57:41 Sending to : +15:57:41 ============================================================================ +15:57:41 ============================================================================ +15:57:41 Slot Id : <19> +15:57:41 Transaction Type : REQUEST +15:57:41 Received From : +15:57:41 ============================================================================ +15:57:41 FNo. Len. Field Value +15:57:41 ============================================================================ +15:57:41 [ 1] [ 4] [0200] +15:57:41 [ 2] [ 16] [6688990102227400] +15:57:41 [ 3] [ 6] [011000] +15:57:41 [ 4] [ 12] [000030000000] +15:57:41 [ 7] [ 10] [0320155736] +15:57:41 [ 11] [ 6] [790805] +15:57:41 [ 12] [ 6] [155736] +15:57:41 [ 13] [ 4] [0320] +15:57:41 [ 15] [ 4] [0320] +15:57:41 [ 18] [ 4] [6011] +15:57:41 [ 22] [ 3] [900] +15:57:41 [ 25] [ 2] [02] +15:57:41 [ 28] [ 9] [D00002000] +15:57:41 [ 32] [ 6] [621354] +15:57:41 [ 35] [ 37] [6688990102227400=42081231740030600000] +15:57:41 [ 37] [ 12] [507903278894] +15:57:41 [ 41] [ 8] [12002700] +15:57:41 [ 42] [ 15] [NATIVE ] +15:57:41 [ 43] [ 40] [SAYYABOULY ATM01 Paklay LAO] +15:57:41 [ 49] [ 3] [418] +15:57:41 [ 52] [ 16] [CB58C8E550956A8E] +15:57:41 ============================================================================ +15:57:41 + + +waiting on router queue for slot.... +15:57:41 Sending to : <4> +15:57:41 ============================================================================ +15:57:41 ============================================================================ +15:57:41 Slot Id : <27> +15:57:41 Transaction Type : RESPONSE +15:57:41 Received From : +15:57:41 ============================================================================ +15:57:41 FNo. Len. Field Value +15:57:41 ============================================================================ +15:57:41 [ 1] [ 4] [0210] +15:57:41 [ 2] [ 16] [6688990040109553] +15:57:41 [ 3] [ 6] [012000] +15:57:41 [ 4] [ 12] [000040000000] +15:57:41 [ 11] [ 6] [790802] +15:57:41 [ 12] [ 6] [155735] +15:57:41 [ 15] [ 4] [0320] +15:57:41 [ 18] [ 4] [6011] +15:57:41 [ 32] [ 6] [621354] +15:57:41 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:57:41 [ 37] [ 12] [507903499547] +15:57:41 [ 38] [ 6] [471632] +15:57:41 [ 39] [ 2] [00] +15:57:41 [ 41] [ 8] [06002200] +15:57:41 [ 49] [ 3] [418] +15:57:41 [ 54] [ 20] [2002418C000785107972] +15:57:41 ============================================================================ +15:57:41 Sending to : +15:57:41 ============================================================================ +15:57:41 + + +waiting on router queue for slot.... +15:57:42 ============================================================================ +15:57:42 Slot Id : <19> +15:57:42 Transaction Type : RESPONSE +15:57:42 Received From : +15:57:42 ============================================================================ +15:57:42 FNo. Len. Field Value +15:57:42 ============================================================================ +15:57:42 [ 1] [ 4] [0210] +15:57:42 [ 2] [ 16] [6688990102227400] +15:57:42 [ 3] [ 6] [011000] +15:57:42 [ 4] [ 12] [000030000000] +15:57:42 [ 11] [ 6] [790805] +15:57:42 [ 12] [ 6] [155736] +15:57:42 [ 15] [ 4] [0320] +15:57:42 [ 18] [ 4] [6011] +15:57:42 [ 32] [ 6] [621354] +15:57:42 [ 35] [ 37] [6688990102227400=42081231740030600000] +15:57:42 [ 37] [ 12] [507903278894] +15:57:42 [ 38] [ 6] [363307] +15:57:42 [ 39] [ 2] [00] +15:57:42 [ 41] [ 8] [12002700] +15:57:42 [ 49] [ 3] [418] +15:57:42 [ 54] [ 20] [1002418C000150352585] +15:57:42 ============================================================================ +15:57:42 Sending to : +15:57:42 ============================================================================ +15:57:42 + + +waiting on router queue for slot.... +15:57:43 ============================================================================ +15:57:43 Slot Id : <27> +15:57:43 Transaction Type : RESPONSE +15:57:43 Received From : +15:57:43 ============================================================================ +15:57:43 FNo. Len. Field Value +15:57:43 ============================================================================ +15:57:43 [ 1] [ 4] [0210] +15:57:43 [ 2] [ 16] [6688990040109553] +15:57:43 [ 3] [ 6] [012000] +15:57:43 [ 4] [ 12] [000040000000] +15:57:43 [ 11] [ 6] [790802] +15:57:43 [ 12] [ 6] [155735] +15:57:43 [ 15] [ 4] [0320] +15:57:43 [ 18] [ 4] [6011] +15:57:43 [ 32] [ 6] [621354] +15:57:43 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:57:43 [ 37] [ 12] [507903499547] +15:57:43 [ 38] [ 6] [471632] +15:57:43 [ 39] [ 2] [00] +15:57:43 [ 41] [ 8] [06002200] +15:57:43 [ 49] [ 3] [418] +15:57:43 [ 54] [ 20] [2002418C000785107972] +15:57:43 ============================================================================ +15:57:43 Calculate Source COMM Id = 0 +15:57:43 ============================================================================ +15:57:43 + + +waiting on router queue for slot.... +15:57:44 ============================================================================ +15:57:44 Slot Id : <19> +15:57:44 Transaction Type : RESPONSE +15:57:44 Received From : +15:57:44 ============================================================================ +15:57:44 FNo. Len. Field Value +15:57:44 ============================================================================ +15:57:44 [ 1] [ 4] [0210] +15:57:44 [ 2] [ 16] [6688990102227400] +15:57:44 [ 3] [ 6] [011000] +15:57:44 [ 4] [ 12] [000030000000] +15:57:44 [ 11] [ 6] [790805] +15:57:44 [ 12] [ 6] [155736] +15:57:44 [ 15] [ 4] [0320] +15:57:44 [ 18] [ 4] [6011] +15:57:44 [ 32] [ 6] [621354] +15:57:44 [ 35] [ 37] [6688990102227400=42081231740030600000] +15:57:44 [ 37] [ 12] [507903278894] +15:57:44 [ 38] [ 6] [363307] +15:57:44 [ 39] [ 2] [00] +15:57:44 [ 41] [ 8] [12002700] +15:57:44 [ 49] [ 3] [418] +15:57:44 [ 54] [ 20] [1002418C000150352585] +15:57:44 ============================================================================ +15:57:44 Calculate Source COMM Id = 0 +15:57:44 ============================================================================ +15:57:44 + + +waiting on router queue for slot.... +15:57:52 ============================================================================ +15:57:52 Slot Id : <47> +15:57:52 Transaction Type : REQUEST +15:57:52 Received From : +15:57:52 ============================================================================ +15:57:52 FNo. Len. Field Value +15:57:52 ============================================================================ +15:57:52 [ 1] [ 4] [0800] +15:57:52 [ 7] [ 10] [0320085659] +15:57:52 [ 11] [ 6] [157132] +15:57:52 [ 70] [ 3] [301] +15:57:52 ============================================================================ +15:57:52 + + +waiting on router queue for slot.... +15:57:52 Sending to : +15:57:52 ============================================================================ +15:57:52 ============================================================================ +15:57:52 Slot Id : <47> +15:57:52 Transaction Type : RESPONSE +15:57:52 Received From : +15:57:52 ============================================================================ +15:57:52 FNo. Len. Field Value +15:57:52 ============================================================================ +15:57:52 [ 1] [ 4] [0810] +15:57:52 [ 7] [ 10] [0320085659] +15:57:52 [ 11] [ 6] [157132] +15:57:52 [ 39] [ 2] [00] +15:57:52 [ 70] [ 3] [301] +15:57:52 ============================================================================ +15:57:52 Calculate Source COMM Id = 2 +15:57:52 ============================================================================ +15:57:52 + + +waiting on router queue for slot.... +15:57:55 ============================================================================ +15:57:55 Slot Id : <54> +15:57:55 Transaction Type : REQUEST +15:57:55 Received From : +15:57:55 ============================================================================ +15:57:55 FNo. Len. Field Value +15:57:55 ============================================================================ +15:57:55 [ 1] [ 4] [0800] +15:57:55 [ 7] [ 10] [0320085750] +15:57:55 [ 11] [ 6] [015710] +15:57:55 [ 37] [ 12] [507915015710] +15:57:55 [ 70] [ 3] [001] +15:57:55 ============================================================================ +15:57:55 + + +waiting on router queue for slot.... +15:57:55 Sending to : +15:57:55 ============================================================================ +15:57:55 ============================================================================ +15:57:55 Slot Id : <54> +15:57:55 Transaction Type : RESPONSE +15:57:55 Received From : +15:57:55 ============================================================================ +15:57:55 FNo. Len. Field Value +15:57:55 ============================================================================ +15:57:55 [ 1] [ 4] [0810] +15:57:55 [ 7] [ 10] [0320085750] +15:57:55 [ 11] [ 6] [015710] +15:57:55 [ 37] [ 12] [507915015710] +15:57:55 [ 39] [ 2] [00] +15:57:55 [ 70] [ 3] [001] +15:57:55 ============================================================================ +15:57:55 Calculate Source COMM Id = 0 +15:57:55 ============================================================================ +15:57:55 + + +waiting on router queue for slot.... +15:58:03 ============================================================================ +15:58:03 Slot Id : <78> +15:58:03 Transaction Type : REQUEST +15:58:03 Received From : +15:58:03 ============================================================================ +15:58:03 FNo. Len. Field Value +15:58:03 ============================================================================ +15:58:03 [ 1] [ 4] [0800] +15:58:03 [ 7] [ 10] [0320085710] +15:58:03 [ 11] [ 6] [157133] +15:58:03 [ 70] [ 3] [301] +15:58:03 ============================================================================ +15:58:03 + + +waiting on router queue for slot.... +15:58:03 Sending to : +15:58:03 ============================================================================ +15:58:03 ============================================================================ +15:58:03 Slot Id : <78> +15:58:03 Transaction Type : RESPONSE +15:58:03 Received From : +15:58:03 ============================================================================ +15:58:03 FNo. Len. Field Value +15:58:03 ============================================================================ +15:58:03 [ 1] [ 4] [0810] +15:58:03 [ 7] [ 10] [0320085710] +15:58:03 [ 11] [ 6] [157133] +15:58:03 [ 39] [ 2] [00] +15:58:03 [ 70] [ 3] [301] +15:58:03 ============================================================================ +15:58:03 Calculate Source COMM Id = 2 +15:58:03 ============================================================================ +15:58:03 + + +waiting on router queue for slot.... +15:58:12 ============================================================================ +15:58:12 Slot Id : <81> +15:58:12 Transaction Type : REQUEST +15:58:12 Received From : +15:58:12 ============================================================================ +15:58:12 FNo. Len. Field Value +15:58:12 ============================================================================ +15:58:12 [ 1] [ 4] [0200] +15:58:12 [ 2] [ 16] [6688990105191207] +15:58:12 [ 3] [ 6] [010000] +15:58:12 [ 4] [ 12] [000008000000] +15:58:12 [ 7] [ 10] [0320155807] +15:58:12 [ 11] [ 6] [790934] +15:58:12 [ 12] [ 6] [155807] +15:58:12 [ 13] [ 4] [0320] +15:58:12 [ 15] [ 4] [0320] +15:58:12 [ 18] [ 4] [6011] +15:58:12 [ 22] [ 3] [900] +15:58:12 [ 25] [ 2] [02] +15:58:12 [ 28] [ 9] [D00002000] +15:58:12 [ 32] [ 6] [621354] +15:58:12 [ 35] [ 37] [6688990105191207=43081231120772400000] +15:58:12 [ 37] [ 12] [507904645134] +15:58:12 [ 41] [ 8] [17000900] +15:58:12 [ 42] [ 15] [NATIVE ] +15:58:12 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +15:58:12 [ 49] [ 3] [418] +15:58:12 [ 52] [ 16] [7970665CB3E1B027] +15:58:12 ============================================================================ +15:58:12 + + +waiting on router queue for slot.... +15:58:12 Sending to : +15:58:12 ============================================================================ +15:58:12 Sending to : +15:58:12 ============================================================================ +15:58:12 ============================================================================ +15:58:12 Slot Id : <81> +15:58:12 Transaction Type : REQUEST +15:58:12 Received From : +15:58:12 ============================================================================ +15:58:12 FNo. Len. Field Value +15:58:12 ============================================================================ +15:58:12 [ 1] [ 4] [0200] +15:58:12 [ 2] [ 16] [6688990105191207] +15:58:12 [ 3] [ 6] [010000] +15:58:12 [ 4] [ 12] [000008000000] +15:58:12 [ 7] [ 10] [0320155807] +15:58:12 [ 11] [ 6] [790934] +15:58:12 [ 12] [ 6] [155807] +15:58:12 [ 13] [ 4] [0320] +15:58:12 [ 15] [ 4] [0320] +15:58:12 [ 18] [ 4] [6011] +15:58:12 [ 22] [ 3] [900] +15:58:12 [ 25] [ 2] [02] +15:58:12 [ 28] [ 9] [D00002000] +15:58:12 [ 32] [ 6] [621354] +15:58:12 [ 35] [ 37] [6688990105191207=43081231120772400000] +15:58:12 [ 37] [ 12] [507904645134] +15:58:12 [ 41] [ 8] [17000900] +15:58:12 [ 42] [ 15] [NATIVE ] +15:58:12 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +15:58:12 [ 49] [ 3] [418] +15:58:12 [ 52] [ 16] [7970665CB3E1B027] +15:58:12 ============================================================================ +15:58:12 + + +waiting on router queue for slot.... +15:58:12 Sending to : +15:58:12 ============================================================================ +15:58:12 ============================================================================ +15:58:12 Slot Id : <81> +15:58:12 Transaction Type : REQUEST +15:58:12 Received From : +15:58:12 ============================================================================ +15:58:12 FNo. Len. Field Value +15:58:12 ============================================================================ +15:58:12 [ 1] [ 4] [0200] +15:58:12 [ 2] [ 16] [6688990105191207] +15:58:12 [ 3] [ 6] [010000] +15:58:12 [ 4] [ 12] [000008000000] +15:58:12 [ 7] [ 10] [0320155807] +15:58:12 [ 11] [ 6] [790934] +15:58:12 [ 12] [ 6] [155807] +15:58:12 [ 13] [ 4] [0320] +15:58:12 [ 15] [ 4] [0320] +15:58:12 [ 18] [ 4] [6011] +15:58:12 [ 22] [ 3] [900] +15:58:12 [ 25] [ 2] [02] +15:58:12 [ 28] [ 9] [D00002000] +15:58:12 [ 32] [ 6] [621354] +15:58:12 [ 35] [ 37] [6688990105191207=43081231120772400000] +15:58:12 [ 37] [ 12] [507904645134] +15:58:12 [ 41] [ 8] [17000900] +15:58:12 [ 42] [ 15] [NATIVE ] +15:58:12 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +15:58:12 [ 49] [ 3] [418] +15:58:12 [ 52] [ 16] [9112E2365D64B788] +15:58:12 ============================================================================ +15:58:12 + + +waiting on router queue for slot.... +15:58:12 Sending to : <4> +15:58:12 ============================================================================ +15:58:13 ============================================================================ +15:58:13 Slot Id : <57> +15:58:13 Transaction Type : REQUEST +15:58:13 Received From : +15:58:13 ============================================================================ +15:58:13 FNo. Len. Field Value +15:58:13 ============================================================================ +15:58:13 [ 1] [ 4] [0800] +15:58:13 [ 7] [ 10] [0320085720] +15:58:13 [ 11] [ 6] [157134] +15:58:13 [ 70] [ 3] [301] +15:58:13 ============================================================================ +15:58:13 + + +waiting on router queue for slot.... +15:58:13 Sending to : +15:58:13 ============================================================================ +15:58:13 ============================================================================ +15:58:13 Slot Id : <57> +15:58:13 Transaction Type : RESPONSE +15:58:13 Received From : +15:58:13 ============================================================================ +15:58:13 FNo. Len. Field Value +15:58:13 ============================================================================ +15:58:13 [ 1] [ 4] [0810] +15:58:13 [ 7] [ 10] [0320085720] +15:58:13 [ 11] [ 6] [157134] +15:58:13 [ 39] [ 2] [00] +15:58:13 [ 70] [ 3] [301] +15:58:13 ============================================================================ +15:58:13 Calculate Source COMM Id = 2 +15:58:13 ============================================================================ +15:58:13 + + +waiting on router queue for slot.... +15:58:13 ============================================================================ +15:58:13 Slot Id : <81> +15:58:13 Transaction Type : RESPONSE +15:58:13 Received From : +15:58:13 ============================================================================ +15:58:13 FNo. Len. Field Value +15:58:13 ============================================================================ +15:58:13 [ 1] [ 4] [0210] +15:58:13 [ 2] [ 16] [6688990105191207] +15:58:13 [ 3] [ 6] [010000] +15:58:13 [ 4] [ 12] [000008000000] +15:58:13 [ 11] [ 6] [790934] +15:58:13 [ 12] [ 6] [155807] +15:58:13 [ 15] [ 4] [0320] +15:58:13 [ 18] [ 4] [6011] +15:58:13 [ 32] [ 6] [621354] +15:58:13 [ 35] [ 37] [6688990105191207=43081231120772400000] +15:58:13 [ 37] [ 12] [507904645134] +15:58:13 [ 38] [ 6] [484009] +15:58:13 [ 39] [ 2] [00] +15:58:13 [ 41] [ 8] [17000900] +15:58:13 [ 49] [ 3] [418] +15:58:13 [ 54] [ 20] [0002418C000003524472] +15:58:13 ============================================================================ +15:58:13 Sending to : +15:58:13 ============================================================================ +15:58:13 + + +waiting on router queue for slot.... +15:58:14 ============================================================================ +15:58:14 Slot Id : <81> +15:58:14 Transaction Type : RESPONSE +15:58:14 Received From : +15:58:14 ============================================================================ +15:58:14 FNo. Len. Field Value +15:58:14 ============================================================================ +15:58:14 [ 1] [ 4] [0210] +15:58:14 [ 2] [ 16] [6688990105191207] +15:58:14 [ 3] [ 6] [010000] +15:58:14 [ 4] [ 12] [000008000000] +15:58:14 [ 11] [ 6] [790934] +15:58:14 [ 12] [ 6] [155807] +15:58:14 [ 15] [ 4] [0320] +15:58:14 [ 18] [ 4] [6011] +15:58:14 [ 32] [ 6] [621354] +15:58:14 [ 35] [ 37] [6688990105191207=43081231120772400000] +15:58:14 [ 37] [ 12] [507904645134] +15:58:14 [ 38] [ 6] [484009] +15:58:14 [ 39] [ 2] [00] +15:58:14 [ 41] [ 8] [17000900] +15:58:14 [ 49] [ 3] [418] +15:58:14 [ 54] [ 20] [0002418C000003524472] +15:58:14 ============================================================================ +15:58:14 Calculate Source COMM Id = 0 +15:58:14 ============================================================================ +15:58:14 + + +waiting on router queue for slot.... +15:58:23 ============================================================================ +15:58:23 Slot Id : <24> +15:58:23 Transaction Type : REQUEST +15:58:23 Received From : +15:58:23 ============================================================================ +15:58:23 FNo. Len. Field Value +15:58:23 ============================================================================ +15:58:23 [ 1] [ 4] [0800] +15:58:23 [ 7] [ 10] [0320085730] +15:58:23 [ 11] [ 6] [157135] +15:58:23 [ 70] [ 3] [301] +15:58:23 ============================================================================ +15:58:23 + + +waiting on router queue for slot.... +15:58:23 Sending to : +15:58:23 ============================================================================ +15:58:23 ============================================================================ +15:58:23 Slot Id : <24> +15:58:23 Transaction Type : RESPONSE +15:58:23 Received From : +15:58:23 ============================================================================ +15:58:23 FNo. Len. Field Value +15:58:23 ============================================================================ +15:58:23 [ 1] [ 4] [0810] +15:58:23 [ 7] [ 10] [0320085730] +15:58:23 [ 11] [ 6] [157135] +15:58:23 [ 39] [ 2] [00] +15:58:23 [ 70] [ 3] [301] +15:58:23 ============================================================================ +15:58:23 Calculate Source COMM Id = 2 +15:58:23 ============================================================================ +15:58:23 + + +waiting on router queue for slot.... +15:58:27 ============================================================================ +15:58:27 Slot Id : <49> +15:58:27 Transaction Type : REQUEST +15:58:27 Received From : +15:58:27 ============================================================================ +15:58:27 FNo. Len. Field Value +15:58:27 ============================================================================ +15:58:27 [ 1] [ 4] [0200] +15:58:27 [ 2] [ 16] [6688990040109553] +15:58:27 [ 3] [ 6] [302000] +15:58:27 [ 4] [ 12] [000000000000] +15:58:27 [ 7] [ 10] [0320155823] +15:58:27 [ 11] [ 6] [790991] +15:58:27 [ 12] [ 6] [155823] +15:58:27 [ 13] [ 4] [0320] +15:58:27 [ 15] [ 4] [0320] +15:58:27 [ 18] [ 4] [6011] +15:58:27 [ 22] [ 3] [900] +15:58:27 [ 25] [ 2] [02] +15:58:27 [ 28] [ 9] [D00000000] +15:58:27 [ 32] [ 6] [621354] +15:58:27 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:58:27 [ 37] [ 12] [507903499548] +15:58:27 [ 41] [ 8] [06002200] +15:58:27 [ 42] [ 15] [NATIVE ] +15:58:27 [ 43] [ 40] [Beng Market Beng LAO] +15:58:27 [ 49] [ 3] [418] +15:58:27 [ 52] [ 16] [CA9208157F6BA217] +15:58:27 ============================================================================ +15:58:27 + + +waiting on router queue for slot.... +15:58:27 Sending to : +15:58:27 ============================================================================ +15:58:27 Sending to : +15:58:27 ============================================================================ +15:58:28 ============================================================================ +15:58:28 Slot Id : <49> +15:58:28 Transaction Type : REQUEST +15:58:28 Received From : +15:58:28 ============================================================================ +15:58:28 FNo. Len. Field Value +15:58:28 ============================================================================ +15:58:28 [ 1] [ 4] [0200] +15:58:28 [ 2] [ 16] [6688990040109553] +15:58:28 [ 3] [ 6] [302000] +15:58:28 [ 4] [ 12] [000000000000] +15:58:28 [ 7] [ 10] [0320155823] +15:58:28 [ 11] [ 6] [790991] +15:58:28 [ 12] [ 6] [155823] +15:58:28 [ 13] [ 4] [0320] +15:58:28 [ 15] [ 4] [0320] +15:58:28 [ 18] [ 4] [6011] +15:58:28 [ 22] [ 3] [900] +15:58:28 [ 25] [ 2] [02] +15:58:28 [ 28] [ 9] [D00000000] +15:58:28 [ 32] [ 6] [621354] +15:58:28 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:58:28 [ 37] [ 12] [507903499548] +15:58:28 [ 41] [ 8] [06002200] +15:58:28 [ 42] [ 15] [NATIVE ] +15:58:28 [ 43] [ 40] [Beng Market Beng LAO] +15:58:28 [ 49] [ 3] [418] +15:58:28 [ 52] [ 16] [CA9208157F6BA217] +15:58:28 ============================================================================ +15:58:28 + + +waiting on router queue for slot.... +15:58:28 Sending to : +15:58:28 ============================================================================ +15:58:28 ============================================================================ +15:58:28 Slot Id : <49> +15:58:28 Transaction Type : REQUEST +15:58:28 Received From : +15:58:28 ============================================================================ +15:58:28 FNo. Len. Field Value +15:58:28 ============================================================================ +15:58:28 [ 1] [ 4] [0200] +15:58:28 [ 2] [ 16] [6688990040109553] +15:58:28 [ 3] [ 6] [302000] +15:58:28 [ 4] [ 12] [000000000000] +15:58:28 [ 7] [ 10] [0320155823] +15:58:28 [ 11] [ 6] [790991] +15:58:28 [ 12] [ 6] [155823] +15:58:28 [ 13] [ 4] [0320] +15:58:28 [ 15] [ 4] [0320] +15:58:28 [ 18] [ 4] [6011] +15:58:28 [ 22] [ 3] [900] +15:58:28 [ 25] [ 2] [02] +15:58:28 [ 28] [ 9] [D00000000] +15:58:28 [ 32] [ 6] [621354] +15:58:28 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:58:28 [ 37] [ 12] [507903499548] +15:58:28 [ 41] [ 8] [06002200] +15:58:28 [ 42] [ 15] [NATIVE ] +15:58:28 [ 43] [ 40] [Beng Market Beng LAO] +15:58:28 [ 49] [ 3] [418] +15:58:28 [ 52] [ 16] [EAC298115DFCF6BD] +15:58:28 ============================================================================ +15:58:28 + + +waiting on router queue for slot.... +15:58:28 Sending to : <4> +15:58:28 ============================================================================ +15:58:29 ============================================================================ +15:58:29 Slot Id : <49> +15:58:29 Transaction Type : RESPONSE +15:58:29 Received From : +15:58:29 ============================================================================ +15:58:29 FNo. Len. Field Value +15:58:29 ============================================================================ +15:58:29 [ 1] [ 4] [0210] +15:58:29 [ 2] [ 16] [6688990040109553] +15:58:29 [ 3] [ 6] [302000] +15:58:29 [ 4] [ 12] [000000000000] +15:58:29 [ 11] [ 6] [790991] +15:58:29 [ 12] [ 6] [155823] +15:58:29 [ 15] [ 4] [0320] +15:58:29 [ 18] [ 4] [6011] +15:58:29 [ 32] [ 6] [621354] +15:58:29 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:58:29 [ 37] [ 12] [507903499548] +15:58:29 [ 38] [ 6] [190029] +15:58:29 [ 39] [ 2] [00] +15:58:29 [ 41] [ 8] [06002200] +15:58:29 [ 49] [ 3] [418] +15:58:29 [ 54] [ 20] [2002418C000785107972] +15:58:29 ============================================================================ +15:58:29 Sending to : +15:58:29 ============================================================================ +15:58:29 + + +waiting on router queue for slot.... +15:58:30 ============================================================================ +15:58:30 Slot Id : <49> +15:58:30 Transaction Type : RESPONSE +15:58:30 Received From : +15:58:30 ============================================================================ +15:58:30 FNo. Len. Field Value +15:58:30 ============================================================================ +15:58:30 [ 1] [ 4] [0210] +15:58:30 [ 2] [ 16] [6688990040109553] +15:58:30 [ 3] [ 6] [302000] +15:58:30 [ 4] [ 12] [000000000000] +15:58:30 [ 11] [ 6] [790991] +15:58:30 [ 12] [ 6] [155823] +15:58:30 [ 15] [ 4] [0320] +15:58:30 [ 18] [ 4] [6011] +15:58:30 [ 32] [ 6] [621354] +15:58:30 [ 35] [ 37] [6688990040109553=98031261302535100000] +15:58:30 [ 37] [ 12] [507903499548] +15:58:30 [ 38] [ 6] [190029] +15:58:30 [ 39] [ 2] [00] +15:58:30 [ 41] [ 8] [06002200] +15:58:30 [ 49] [ 3] [418] +15:58:30 [ 54] [ 20] [2002418C000785107972] +15:58:30 ============================================================================ +15:58:30 Calculate Source COMM Id = 0 +15:58:30 ============================================================================ +15:58:30 + + +waiting on router queue for slot.... +15:58:33 ============================================================================ +15:58:33 Slot Id : <42> +15:58:33 Transaction Type : REQUEST +15:58:33 Received From : +15:58:33 ============================================================================ +15:58:33 FNo. Len. Field Value +15:58:33 ============================================================================ +15:58:33 [ 1] [ 4] [0800] +15:58:33 [ 2] [ 5] [02531] +15:58:33 [ 3] [ 6] [579158] +15:58:33 [ 7] [ 10] [0320085833] +15:58:33 [ 11] [ 6] [807339] +15:58:33 [ 15] [ 10] [0320085833] +15:58:33 [ 37] [ 11] [57915807339] +15:58:33 [ 70] [ 3] [001] +15:58:33 ============================================================================ +15:58:33 + + +waiting on router queue for slot.... +15:58:33 ============================================================================ +15:58:33 Slot Id : <42> +15:58:33 Transaction Type : RESPONSE +15:58:33 Received From : +15:58:33 ============================================================================ +15:58:33 FNo. Len. Field Value +15:58:33 ============================================================================ +15:58:33 [ 1] [ 4] [0810] +15:58:33 [ 7] [ 10] [0320085833] +15:58:33 [ 11] [ 6] [807339] +15:58:33 [ 15] [ 4] [0320] +15:58:33 [ 37] [ 12] [57915807339] +15:58:33 [ 39] [ 2] [00] +15:58:33 [ 70] [ 3] [001] +15:58:33 ============================================================================ +15:58:33 Sending to : +15:58:33 ============================================================================ +15:58:33 + + +waiting on router queue for slot.... +15:58:37 ============================================================================ +15:58:37 Slot Id : <34> +15:58:37 Transaction Type : REQUEST +15:58:37 Received From : +15:58:37 ============================================================================ +15:58:37 FNo. Len. Field Value +15:58:37 ============================================================================ +15:58:37 [ 1] [ 4] [0800] +15:58:37 [ 7] [ 10] [0320231026] +15:58:37 [ 11] [ 6] [161026] +15:58:37 [ 37] [ 12] [57916161026] +15:58:37 [ 70] [ 3] [301] +15:58:37 ============================================================================ +15:58:37 + + +waiting on router queue for slot.... +15:58:37 Sending to : +15:58:37 ============================================================================ +15:58:37 ============================================================================ +15:58:37 Slot Id : <34> +15:58:37 Transaction Type : RESPONSE +15:58:37 Received From : +15:58:37 ============================================================================ +15:58:37 FNo. Len. Field Value +15:58:37 ============================================================================ +15:58:37 [ 1] [ 4] [0810] +15:58:37 [ 7] [ 10] [0320231026] +15:58:37 [ 11] [ 6] [161026] +15:58:37 [ 37] [ 12] [579161610260] +15:58:37 [ 39] [ 2] [00] +15:58:37 [ 70] [ 3] [810] +15:58:37 ============================================================================ +15:58:37 Calculate Source COMM Id = 6 +15:58:37 ============================================================================ +15:58:37 + + +waiting on router queue for slot.... +15:58:39 ============================================================================ +15:58:39 Slot Id : <88> +15:58:39 Transaction Type : REQUEST +15:58:39 Received From : +15:58:39 ============================================================================ +15:58:39 FNo. Len. Field Value +15:58:39 ============================================================================ +15:58:39 [ 1] [ 4] [0800] +15:58:39 [ 7] [ 10] [0320085746] +15:58:39 [ 11] [ 6] [157136] +15:58:39 [ 70] [ 3] [301] +15:58:39 ============================================================================ +15:58:39 + + +waiting on router queue for slot.... +15:58:39 Sending to : +15:58:39 ============================================================================ +15:58:39 ============================================================================ +15:58:39 Slot Id : <88> +15:58:39 Transaction Type : RESPONSE +15:58:39 Received From : +15:58:39 ============================================================================ +15:58:39 FNo. Len. Field Value +15:58:39 ============================================================================ +15:58:39 [ 1] [ 4] [0810] +15:58:39 [ 7] [ 10] [0320085746] +15:58:39 [ 11] [ 6] [157136] +15:58:39 [ 39] [ 2] [00] +15:58:39 [ 70] [ 3] [301] +15:58:39 ============================================================================ +15:58:39 Calculate Source COMM Id = 2 +15:58:39 ============================================================================ +15:58:39 + + +waiting on router queue for slot.... +15:58:50 ============================================================================ +15:58:50 Slot Id : <86> +15:58:50 Transaction Type : REQUEST +15:58:50 Received From : +15:58:50 ============================================================================ +15:58:50 FNo. Len. Field Value +15:58:50 ============================================================================ +15:58:50 [ 1] [ 4] [0800] +15:58:50 [ 7] [ 10] [0320085757] +15:58:50 [ 11] [ 6] [157137] +15:58:50 [ 70] [ 3] [301] +15:58:50 ============================================================================ +15:58:50 + + +waiting on router queue for slot.... +15:58:50 Sending to : +15:58:50 ============================================================================ +15:58:50 ============================================================================ +15:58:50 Slot Id : <86> +15:58:50 Transaction Type : RESPONSE +15:58:50 Received From : +15:58:50 ============================================================================ +15:58:50 FNo. Len. Field Value +15:58:50 ============================================================================ +15:58:50 [ 1] [ 4] [0810] +15:58:50 [ 7] [ 10] [0320085757] +15:58:50 [ 11] [ 6] [157137] +15:58:50 [ 39] [ 2] [00] +15:58:50 [ 70] [ 3] [301] +15:58:50 ============================================================================ +15:58:50 Calculate Source COMM Id = 2 +15:58:50 ============================================================================ +15:58:50 + + +waiting on router queue for slot.... +15:58:53 ============================================================================ +15:58:53 Slot Id : <89> +15:58:53 Transaction Type : REQUEST +15:58:53 Received From : +15:58:53 ============================================================================ +15:58:53 FNo. Len. Field Value +15:58:53 ============================================================================ +15:58:53 [ 1] [ 4] [0200] +15:58:53 [ 2] [ 16] [6213548000132678] +15:58:53 [ 3] [ 6] [011000] +15:58:53 [ 4] [ 12] [000030000000] +15:58:53 [ 7] [ 10] [0320085800] +15:58:53 [ 11] [ 6] [270205] +15:58:53 [ 12] [ 6] [155800] +15:58:53 [ 13] [ 4] [0320] +15:58:53 [ 14] [ 4] [1311] +15:58:53 [ 15] [ 4] [0320] +15:58:53 [ 18] [ 4] [6011] +15:58:53 [ 19] [ 3] [418] +15:58:53 [ 22] [ 3] [021] +15:58:53 [ 25] [ 2] [01] +15:58:53 [ 28] [ 9] [D00002000] +15:58:53 [ 32] [ 6] [180893] +15:58:53 [ 35] [ 32] [6213548000132678=131112013267358] +15:58:53 [ 37] [ 12] [507908270205] +15:58:53 [ 41] [ 8] [0381CPSP] +15:58:53 [ 42] [ 15] [999999 ] +15:58:53 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +15:58:53 [ 49] [ 3] [418] +15:58:53 [ 52] [ 16] [7175123A4CBD7539] +15:58:53 ============================================================================ +15:58:53 + + +waiting on router queue for slot.... +15:58:53 Sending to : +15:58:53 ============================================================================ +15:58:53 Sending to : +15:58:53 ============================================================================ +15:58:53 ============================================================================ +15:58:53 Slot Id : <89> +15:58:53 Transaction Type : REQUEST +15:58:53 Received From : +15:58:53 ============================================================================ +15:58:53 FNo. Len. Field Value +15:58:53 ============================================================================ +15:58:53 [ 1] [ 4] [0200] +15:58:53 [ 2] [ 16] [6213548000132678] +15:58:53 [ 3] [ 6] [011000] +15:58:53 [ 4] [ 12] [000030000000] +15:58:53 [ 7] [ 10] [0320085800] +15:58:53 [ 11] [ 6] [270205] +15:58:53 [ 12] [ 6] [155800] +15:58:53 [ 13] [ 4] [0320] +15:58:53 [ 14] [ 4] [1311] +15:58:53 [ 15] [ 4] [0320] +15:58:53 [ 18] [ 4] [6011] +15:58:53 [ 19] [ 3] [418] +15:58:53 [ 22] [ 3] [021] +15:58:53 [ 25] [ 2] [01] +15:58:53 [ 28] [ 9] [D00002000] +15:58:53 [ 32] [ 6] [180893] +15:58:53 [ 35] [ 32] [6213548000132678=131112013267358] +15:58:53 [ 37] [ 12] [507908270205] +15:58:53 [ 41] [ 8] [0381CPSP] +15:58:53 [ 42] [ 15] [999999 ] +15:58:53 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +15:58:53 [ 49] [ 3] [418] +15:58:53 [ 52] [ 16] [7175123A4CBD7539] +15:58:53 ============================================================================ +15:58:53 + + +waiting on router queue for slot.... +15:58:53 Sending to : +15:58:53 ============================================================================ +15:58:53 ============================================================================ +15:58:53 Slot Id : <89> +15:58:53 Transaction Type : REQUEST +15:58:53 Received From : +15:58:53 ============================================================================ +15:58:53 FNo. Len. Field Value +15:58:53 ============================================================================ +15:58:53 [ 1] [ 4] [0200] +15:58:53 [ 2] [ 16] [6213548000132678] +15:58:53 [ 3] [ 6] [011000] +15:58:53 [ 4] [ 12] [000030000000] +15:58:53 [ 7] [ 10] [0320085800] +15:58:53 [ 11] [ 6] [270205] +15:58:53 [ 12] [ 6] [155800] +15:58:53 [ 13] [ 4] [0320] +15:58:53 [ 14] [ 4] [1311] +15:58:53 [ 15] [ 4] [0320] +15:58:53 [ 18] [ 4] [6011] +15:58:53 [ 19] [ 3] [418] +15:58:53 [ 22] [ 3] [021] +15:58:53 [ 25] [ 2] [01] +15:58:53 [ 28] [ 9] [D00002000] +15:58:53 [ 32] [ 6] [180893] +15:58:53 [ 35] [ 32] [6213548000132678=131112013267358] +15:58:53 [ 37] [ 12] [507908270205] +15:58:53 [ 41] [ 8] [0381CPSP] +15:58:53 [ 42] [ 15] [999999 ] +15:58:53 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +15:58:53 [ 49] [ 3] [418] +15:58:53 [ 52] [ 16] [4EA0FADEC2B9F7E0] +15:58:53 ============================================================================ +15:58:53 + + +waiting on router queue for slot.... +15:58:53 Sending to : <0> +15:58:53 ============================================================================ +15:58:54 ============================================================================ +15:58:54 Slot Id : <89> +15:58:54 Transaction Type : RESPONSE +15:58:54 Received From : +15:58:54 ============================================================================ +15:58:54 FNo. Len. Field Value +15:58:54 ============================================================================ +15:58:54 [ 1] [ 4] [0210] +15:58:54 [ 2] [ 16] [6213548000132678] +15:58:54 [ 3] [ 6] [011000] +15:58:54 [ 4] [ 12] [000030000000] +15:58:54 [ 7] [ 10] [0320085800] +15:58:54 [ 11] [ 6] [270205] +15:58:54 [ 12] [ 6] [155800] +15:58:54 [ 13] [ 4] [0320] +15:58:54 [ 15] [ 4] [0320] +15:58:54 [ 18] [ 4] [6011] +15:58:54 [ 19] [ 3] [418] +15:58:54 [ 32] [ 6] [180893] +15:58:54 [ 35] [ 32] [6213548000132678=131112013267358] +15:58:54 [ 37] [ 12] [507908270205] +15:58:54 [ 38] [ 6] [095228] +15:58:54 [ 39] [ 2] [00] +15:58:54 [ 41] [ 8] [0381CPSP] +15:58:54 [ 49] [ 3] [418] +15:58:54 [ 54] [ 40] [1001418C0000762991591002418C000076299159] +15:58:54 ============================================================================ +15:58:54 Sending to : +15:58:54 ============================================================================ +15:58:54 + + +waiting on router queue for slot.... +15:58:55 ============================================================================ +15:58:55 Slot Id : <89> +15:58:55 Transaction Type : RESPONSE +15:58:55 Received From : +15:58:55 ============================================================================ +15:58:55 FNo. Len. Field Value +15:58:55 ============================================================================ +15:58:55 [ 1] [ 4] [0210] +15:58:55 [ 2] [ 16] [6213548000132678] +15:58:55 [ 3] [ 6] [011000] +15:58:55 [ 4] [ 12] [000030000000] +15:58:55 [ 7] [ 10] [0320085800] +15:58:55 [ 11] [ 6] [270205] +15:58:55 [ 12] [ 6] [155800] +15:58:55 [ 13] [ 4] [0320] +15:58:55 [ 15] [ 4] [0320] +15:58:55 [ 18] [ 4] [6011] +15:58:55 [ 19] [ 3] [418] +15:58:55 [ 32] [ 6] [180893] +15:58:55 [ 35] [ 32] [6213548000132678=131112013267358] +15:58:55 [ 37] [ 12] [507908270205] +15:58:55 [ 38] [ 6] [095228] +15:58:55 [ 39] [ 2] [00] +15:58:55 [ 41] [ 8] [0381CPSP] +15:58:55 [ 49] [ 3] [418] +15:58:55 [ 54] [ 40] [1001418C0000762991591002418C000076299159] +15:58:55 ============================================================================ +15:58:55 Calculate Source COMM Id = 2 +15:58:55 ============================================================================ +15:58:55 + + +waiting on router queue for slot.... +15:58:57 ============================================================================ +15:58:57 Slot Id : <79> +15:58:57 Transaction Type : REQUEST +15:58:57 Received From : +15:58:57 ============================================================================ +15:58:57 FNo. Len. Field Value +15:58:57 ============================================================================ +15:58:57 [ 1] [ 4] [0200] +15:58:57 [ 2] [ 16] [6688990602678904] +15:58:57 [ 3] [ 6] [010000] +15:58:57 [ 4] [ 12] [000100000000] +15:58:57 [ 7] [ 10] [0320155852] +15:58:57 [ 11] [ 6] [791098] +15:58:57 [ 12] [ 6] [155852] +15:58:57 [ 13] [ 4] [0320] +15:58:57 [ 15] [ 4] [0320] +15:58:57 [ 18] [ 4] [6011] +15:58:57 [ 22] [ 3] [900] +15:58:57 [ 25] [ 2] [02] +15:58:57 [ 28] [ 9] [D00002000] +15:58:57 [ 32] [ 6] [621354] +15:58:57 [ 35] [ 37] [6688990602678904=43100061890454000000] +15:58:57 [ 37] [ 12] [507904154034] +15:58:57 [ 41] [ 8] [20001000] +15:58:57 [ 42] [ 15] [NATIVE ] +15:58:57 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +15:58:57 [ 49] [ 3] [418] +15:58:57 [ 52] [ 16] [E54FBD4011441425] +15:58:57 ============================================================================ +15:58:57 + + +waiting on router queue for slot.... +15:58:57 Sending to : +15:58:57 ============================================================================ +15:58:57 Sending to : +15:58:57 ============================================================================ +15:58:57 ============================================================================ +15:58:57 Slot Id : <79> +15:58:57 Transaction Type : REQUEST +15:58:57 Received From : +15:58:57 ============================================================================ +15:58:57 FNo. Len. Field Value +15:58:57 ============================================================================ +15:58:57 [ 1] [ 4] [0200] +15:58:57 [ 2] [ 16] [6688990602678904] +15:58:57 [ 3] [ 6] [010000] +15:58:57 [ 4] [ 12] [000100000000] +15:58:57 [ 7] [ 10] [0320155852] +15:58:57 [ 11] [ 6] [791098] +15:58:57 [ 12] [ 6] [155852] +15:58:57 [ 13] [ 4] [0320] +15:58:57 [ 15] [ 4] [0320] +15:58:57 [ 18] [ 4] [6011] +15:58:57 [ 22] [ 3] [900] +15:58:57 [ 25] [ 2] [02] +15:58:57 [ 28] [ 9] [D00002000] +15:58:57 [ 32] [ 6] [621354] +15:58:57 [ 35] [ 37] [6688990602678904=43100061890454000000] +15:58:57 [ 37] [ 12] [507904154034] +15:58:57 [ 41] [ 8] [20001000] +15:58:57 [ 42] [ 15] [NATIVE ] +15:58:57 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +15:58:57 [ 49] [ 3] [418] +15:58:57 [ 52] [ 16] [E54FBD4011441425] +15:58:57 ============================================================================ +15:58:57 + + +waiting on router queue for slot.... +15:58:57 Sending to : +15:58:57 ============================================================================ +15:58:57 ============================================================================ +15:58:57 Slot Id : <79> +15:58:57 Transaction Type : REQUEST +15:58:57 Received From : +15:58:57 ============================================================================ +15:58:57 FNo. Len. Field Value +15:58:57 ============================================================================ +15:58:57 [ 1] [ 4] [0200] +15:58:57 [ 2] [ 16] [6688990602678904] +15:58:57 [ 3] [ 6] [010000] +15:58:57 [ 4] [ 12] [000100000000] +15:58:57 [ 7] [ 10] [0320155852] +15:58:57 [ 11] [ 6] [791098] +15:58:57 [ 12] [ 6] [155852] +15:58:57 [ 13] [ 4] [0320] +15:58:57 [ 15] [ 4] [0320] +15:58:57 [ 18] [ 4] [6011] +15:58:57 [ 22] [ 3] [900] +15:58:57 [ 25] [ 2] [02] +15:58:57 [ 28] [ 9] [D00002000] +15:58:57 [ 32] [ 6] [621354] +15:58:57 [ 35] [ 37] [6688990602678904=43100061890454000000] +15:58:57 [ 37] [ 12] [507904154034] +15:58:57 [ 41] [ 8] [20001000] +15:58:57 [ 42] [ 15] [NATIVE ] +15:58:57 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +15:58:57 [ 49] [ 3] [418] +15:58:57 [ 52] [ 16] [553F93B8D7BF9BDF] +15:58:57 ============================================================================ +15:58:57 + + +waiting on router queue for slot.... +15:58:57 Sending to : <4> +15:58:57 ============================================================================ +15:58:59 ============================================================================ +15:58:59 Slot Id : <79> +15:58:59 Transaction Type : RESPONSE +15:58:59 Received From : +15:58:59 ============================================================================ +15:58:59 FNo. Len. Field Value +15:58:59 ============================================================================ +15:58:59 [ 1] [ 4] [0210] +15:58:59 [ 2] [ 16] [6688990602678904] +15:58:59 [ 3] [ 6] [010000] +15:58:59 [ 4] [ 12] [000100000000] +15:58:59 [ 11] [ 6] [791098] +15:58:59 [ 12] [ 6] [155852] +15:58:59 [ 15] [ 4] [0320] +15:58:59 [ 18] [ 4] [6011] +15:58:59 [ 32] [ 6] [621354] +15:58:59 [ 35] [ 37] [6688990602678904=43100061890454000000] +15:58:59 [ 37] [ 12] [507904154034] +15:58:59 [ 38] [ 6] [407536] +15:58:59 [ 39] [ 2] [00] +15:58:59 [ 41] [ 8] [20001000] +15:58:59 [ 49] [ 3] [418] +15:58:59 [ 54] [ 20] [0002418C000174970650] +15:58:59 ============================================================================ +15:58:59 Sending to : +15:58:59 ============================================================================ +15:58:59 + + +waiting on router queue for slot.... +15:59:00 ============================================================================ +15:59:00 Slot Id : <79> +15:59:00 Transaction Type : RESPONSE +15:59:00 Received From : +15:59:00 ============================================================================ +15:59:00 FNo. Len. Field Value +15:59:00 ============================================================================ +15:59:00 [ 1] [ 4] [0210] +15:59:00 [ 2] [ 16] [6688990602678904] +15:59:00 [ 3] [ 6] [010000] +15:59:00 [ 4] [ 12] [000100000000] +15:59:00 [ 11] [ 6] [791098] +15:59:00 [ 12] [ 6] [155852] +15:59:00 [ 15] [ 4] [0320] +15:59:00 [ 18] [ 4] [6011] +15:59:00 [ 32] [ 6] [621354] +15:59:00 [ 35] [ 37] [6688990602678904=43100061890454000000] +15:59:00 [ 37] [ 12] [507904154034] +15:59:00 [ 38] [ 6] [407536] +15:59:00 [ 39] [ 2] [00] +15:59:00 [ 41] [ 8] [20001000] +15:59:00 [ 49] [ 3] [418] +15:59:00 [ 54] [ 20] [0002418C000174970650] +15:59:00 ============================================================================ +15:59:00 Calculate Source COMM Id = 0 +15:59:00 ============================================================================ +15:59:00 + + +waiting on router queue for slot.... +15:59:09 ============================================================================ +15:59:09 Slot Id : <84> +15:59:09 Transaction Type : REQUEST +15:59:09 Received From : +15:59:09 ============================================================================ +15:59:09 FNo. Len. Field Value +15:59:09 ============================================================================ +15:59:09 [ 1] [ 4] [0200] +15:59:09 [ 2] [ 16] [6688990060005913] +15:59:09 [ 3] [ 6] [300000] +15:59:09 [ 4] [ 12] [000000000000] +15:59:09 [ 7] [ 10] [0320155904] +15:59:09 [ 11] [ 6] [791148] +15:59:09 [ 12] [ 6] [155904] +15:59:09 [ 13] [ 4] [0320] +15:59:09 [ 15] [ 4] [0320] +15:59:09 [ 18] [ 4] [6011] +15:59:09 [ 22] [ 3] [900] +15:59:09 [ 25] [ 2] [02] +15:59:09 [ 28] [ 9] [D00000000] +15:59:09 [ 32] [ 6] [621354] +15:59:09 [ 35] [ 37] [6688990060005913=97111261951198900000] +15:59:09 [ 37] [ 12] [507903499549] +15:59:09 [ 41] [ 8] [06002200] +15:59:09 [ 42] [ 15] [NATIVE ] +15:59:09 [ 43] [ 40] [Beng Market Beng LAO] +15:59:09 [ 49] [ 3] [418] +15:59:09 [ 52] [ 16] [AD17360FA0B3164B] +15:59:09 ============================================================================ +15:59:09 + + +waiting on router queue for slot.... +15:59:09 Sending to : +15:59:09 ============================================================================ +15:59:09 Sending to : +15:59:09 ============================================================================ +15:59:09 ============================================================================ +15:59:09 Slot Id : <84> +15:59:09 Transaction Type : REQUEST +15:59:09 Received From : +15:59:09 ============================================================================ +15:59:09 FNo. Len. Field Value +15:59:09 ============================================================================ +15:59:09 [ 1] [ 4] [0200] +15:59:09 [ 2] [ 16] [6688990060005913] +15:59:09 [ 3] [ 6] [300000] +15:59:09 [ 4] [ 12] [000000000000] +15:59:09 [ 7] [ 10] [0320155904] +15:59:09 [ 11] [ 6] [791148] +15:59:09 [ 12] [ 6] [155904] +15:59:09 [ 13] [ 4] [0320] +15:59:09 [ 15] [ 4] [0320] +15:59:09 [ 18] [ 4] [6011] +15:59:09 [ 22] [ 3] [900] +15:59:09 [ 25] [ 2] [02] +15:59:09 [ 28] [ 9] [D00000000] +15:59:09 [ 32] [ 6] [621354] +15:59:09 [ 35] [ 37] [6688990060005913=97111261951198900000] +15:59:09 [ 37] [ 12] [507903499549] +15:59:09 [ 41] [ 8] [06002200] +15:59:09 [ 42] [ 15] [NATIVE ] +15:59:09 [ 43] [ 40] [Beng Market Beng LAO] +15:59:09 [ 49] [ 3] [418] +15:59:09 [ 52] [ 16] [AD17360FA0B3164B] +15:59:09 ============================================================================ +15:59:09 + + +waiting on router queue for slot.... +15:59:09 Sending to : +15:59:09 ============================================================================ +15:59:09 ============================================================================ +15:59:09 Slot Id : <84> +15:59:09 Transaction Type : REQUEST +15:59:09 Received From : +15:59:09 ============================================================================ +15:59:09 FNo. Len. Field Value +15:59:09 ============================================================================ +15:59:09 [ 1] [ 4] [0200] +15:59:09 [ 2] [ 16] [6688990060005913] +15:59:09 [ 3] [ 6] [300000] +15:59:09 [ 4] [ 12] [000000000000] +15:59:09 [ 7] [ 10] [0320155904] +15:59:09 [ 11] [ 6] [791148] +15:59:09 [ 12] [ 6] [155904] +15:59:09 [ 13] [ 4] [0320] +15:59:09 [ 15] [ 4] [0320] +15:59:09 [ 18] [ 4] [6011] +15:59:09 [ 22] [ 3] [900] +15:59:09 [ 25] [ 2] [02] +15:59:09 [ 28] [ 9] [D00000000] +15:59:09 [ 32] [ 6] [621354] +15:59:09 [ 35] [ 37] [6688990060005913=97111261951198900000] +15:59:09 [ 37] [ 12] [507903499549] +15:59:09 [ 41] [ 8] [06002200] +15:59:09 [ 42] [ 15] [NATIVE ] +15:59:09 [ 43] [ 40] [Beng Market Beng LAO] +15:59:09 [ 49] [ 3] [418] +15:59:09 [ 52] [ 16] [E04A6C48091F5E88] +15:59:09 ============================================================================ +15:59:09 + + +waiting on router queue for slot.... +15:59:09 Sending to : <4> +15:59:09 ============================================================================ +15:59:10 ============================================================================ +15:59:10 Slot Id : <84> +15:59:10 Transaction Type : RESPONSE +15:59:10 Received From : +15:59:10 ============================================================================ +15:59:10 FNo. Len. Field Value +15:59:10 ============================================================================ +15:59:10 [ 1] [ 4] [0210] +15:59:10 [ 2] [ 16] [6688990060005913] +15:59:10 [ 3] [ 6] [300000] +15:59:10 [ 4] [ 12] [000000000000] +15:59:10 [ 11] [ 6] [791148] +15:59:10 [ 12] [ 6] [155904] +15:59:10 [ 15] [ 4] [0320] +15:59:10 [ 18] [ 4] [6011] +15:59:10 [ 32] [ 6] [621354] +15:59:10 [ 35] [ 37] [6688990060005913=97111261951198900000] +15:59:10 [ 37] [ 12] [507903499549] +15:59:10 [ 38] [ 6] [635592] +15:59:10 [ 39] [ 2] [00] +15:59:10 [ 41] [ 8] [06002200] +15:59:10 [ 49] [ 3] [418] +15:59:10 [ 54] [ 20] [0002418C000394310223] +15:59:10 ============================================================================ +15:59:10 Sending to : +15:59:10 ============================================================================ +15:59:10 + + +waiting on router queue for slot.... +15:59:11 ============================================================================ +15:59:11 Slot Id : <59> +15:59:11 Transaction Type : REQUEST +15:59:11 Received From : +15:59:11 ============================================================================ +15:59:11 FNo. Len. Field Value +15:59:11 ============================================================================ +15:59:11 [ 1] [ 4] [0800] +15:59:11 [ 7] [ 10] [0320085818] +15:59:11 [ 11] [ 6] [157138] +15:59:11 [ 70] [ 3] [301] +15:59:11 ============================================================================ +15:59:11 + + +waiting on router queue for slot.... +15:59:11 Sending to : +15:59:11 ============================================================================ +15:59:11 ============================================================================ +15:59:11 Slot Id : <59> +15:59:11 Transaction Type : RESPONSE +15:59:11 Received From : +15:59:11 ============================================================================ +15:59:11 FNo. Len. Field Value +15:59:11 ============================================================================ +15:59:11 [ 1] [ 4] [0810] +15:59:11 [ 7] [ 10] [0320085818] +15:59:11 [ 11] [ 6] [157138] +15:59:11 [ 39] [ 2] [00] +15:59:11 [ 70] [ 3] [301] +15:59:11 ============================================================================ +15:59:11 Calculate Source COMM Id = 2 +15:59:11 ============================================================================ +15:59:11 + + +waiting on router queue for slot.... +15:59:11 ============================================================================ +15:59:11 Slot Id : <84> +15:59:11 Transaction Type : RESPONSE +15:59:11 Received From : +15:59:11 ============================================================================ +15:59:11 FNo. Len. Field Value +15:59:11 ============================================================================ +15:59:11 [ 1] [ 4] [0210] +15:59:11 [ 2] [ 16] [6688990060005913] +15:59:11 [ 3] [ 6] [300000] +15:59:11 [ 4] [ 12] [000000000000] +15:59:11 [ 11] [ 6] [791148] +15:59:11 [ 12] [ 6] [155904] +15:59:11 [ 15] [ 4] [0320] +15:59:11 [ 18] [ 4] [6011] +15:59:11 [ 32] [ 6] [621354] +15:59:11 [ 35] [ 37] [6688990060005913=97111261951198900000] +15:59:11 [ 37] [ 12] [507903499549] +15:59:11 [ 38] [ 6] [635592] +15:59:11 [ 39] [ 2] [00] +15:59:11 [ 41] [ 8] [06002200] +15:59:11 [ 49] [ 3] [418] +15:59:11 [ 54] [ 20] [0002418C000394310223] +15:59:11 ============================================================================ +15:59:11 Calculate Source COMM Id = 0 +15:59:11 ============================================================================ +15:59:11 + + +waiting on router queue for slot.... +15:59:27 ============================================================================ +15:59:27 Slot Id : <5> +15:59:27 Transaction Type : REQUEST +15:59:27 Received From : +15:59:27 ============================================================================ +15:59:27 FNo. Len. Field Value +15:59:27 ============================================================================ +15:59:27 [ 1] [ 4] [0800] +15:59:27 [ 7] [ 10] [0320085834] +15:59:27 [ 11] [ 6] [157139] +15:59:27 [ 70] [ 3] [301] +15:59:27 ============================================================================ +15:59:27 + + +waiting on router queue for slot.... +15:59:27 Sending to : +15:59:27 ============================================================================ +15:59:27 ============================================================================ +15:59:27 Slot Id : <5> +15:59:27 Transaction Type : RESPONSE +15:59:27 Received From : +15:59:27 ============================================================================ +15:59:27 FNo. Len. Field Value +15:59:27 ============================================================================ +15:59:27 [ 1] [ 4] [0810] +15:59:27 [ 7] [ 10] [0320085834] +15:59:27 [ 11] [ 6] [157139] +15:59:27 [ 39] [ 2] [00] +15:59:27 [ 70] [ 3] [301] +15:59:27 ============================================================================ +15:59:27 Calculate Source COMM Id = 2 +15:59:27 ============================================================================ +15:59:27 + + +waiting on router queue for slot.... +15:59:29 ============================================================================ +15:59:29 Slot Id : <67> +15:59:29 Transaction Type : REQUEST +15:59:29 Received From : +15:59:29 ============================================================================ +15:59:29 FNo. Len. Field Value +15:59:29 ============================================================================ +15:59:29 [ 1] [ 4] [0200] +15:59:29 [ 2] [ 16] [6688990103535801] +15:59:29 [ 3] [ 6] [302000] +15:59:29 [ 4] [ 12] [000000000000] +15:59:29 [ 7] [ 10] [0320155924] +15:59:29 [ 11] [ 6] [791271] +15:59:29 [ 12] [ 6] [155924] +15:59:29 [ 13] [ 4] [0320] +15:59:29 [ 15] [ 4] [0320] +15:59:29 [ 18] [ 4] [6011] +15:59:29 [ 22] [ 3] [900] +15:59:29 [ 25] [ 2] [02] +15:59:29 [ 28] [ 9] [D00000000] +15:59:29 [ 32] [ 6] [621354] +15:59:29 [ 35] [ 37] [6688990103535801=43011231580133600000] +15:59:29 [ 37] [ 12] [507903345167] +15:59:29 [ 41] [ 8] [13001400] +15:59:29 [ 42] [ 15] [NATIVE ] +15:59:29 [ 43] [ 40] [Kham Unit Kham LAO] +15:59:29 [ 49] [ 3] [418] +15:59:29 [ 52] [ 16] [5B2DE7A8572AD9BA] +15:59:29 ============================================================================ +15:59:29 + + +waiting on router queue for slot.... +15:59:29 Sending to : +15:59:29 ============================================================================ +15:59:29 Sending to : +15:59:29 ============================================================================ +15:59:29 ============================================================================ +15:59:29 Slot Id : <67> +15:59:29 Transaction Type : REQUEST +15:59:29 Received From : +15:59:29 ============================================================================ +15:59:29 FNo. Len. Field Value +15:59:29 ============================================================================ +15:59:29 [ 1] [ 4] [0200] +15:59:29 [ 2] [ 16] [6688990103535801] +15:59:29 [ 3] [ 6] [302000] +15:59:29 [ 4] [ 12] [000000000000] +15:59:29 [ 7] [ 10] [0320155924] +15:59:29 [ 11] [ 6] [791271] +15:59:29 [ 12] [ 6] [155924] +15:59:29 [ 13] [ 4] [0320] +15:59:29 [ 15] [ 4] [0320] +15:59:29 [ 18] [ 4] [6011] +15:59:29 [ 22] [ 3] [900] +15:59:29 [ 25] [ 2] [02] +15:59:29 [ 28] [ 9] [D00000000] +15:59:29 [ 32] [ 6] [621354] +15:59:29 [ 35] [ 37] [6688990103535801=43011231580133600000] +15:59:29 [ 37] [ 12] [507903345167] +15:59:29 [ 41] [ 8] [13001400] +15:59:29 [ 42] [ 15] [NATIVE ] +15:59:29 [ 43] [ 40] [Kham Unit Kham LAO] +15:59:29 [ 49] [ 3] [418] +15:59:29 [ 52] [ 16] [5B2DE7A8572AD9BA] +15:59:29 ============================================================================ +15:59:29 + + +waiting on router queue for slot.... +15:59:29 Sending to : +15:59:29 ============================================================================ +15:59:29 ============================================================================ +15:59:29 Slot Id : <67> +15:59:29 Transaction Type : REQUEST +15:59:29 Received From : +15:59:29 ============================================================================ +15:59:29 FNo. Len. Field Value +15:59:29 ============================================================================ +15:59:29 [ 1] [ 4] [0200] +15:59:29 [ 2] [ 16] [6688990103535801] +15:59:29 [ 3] [ 6] [302000] +15:59:29 [ 4] [ 12] [000000000000] +15:59:29 [ 7] [ 10] [0320155924] +15:59:29 [ 11] [ 6] [791271] +15:59:29 [ 12] [ 6] [155924] +15:59:29 [ 13] [ 4] [0320] +15:59:29 [ 15] [ 4] [0320] +15:59:29 [ 18] [ 4] [6011] +15:59:29 [ 22] [ 3] [900] +15:59:29 [ 25] [ 2] [02] +15:59:29 [ 28] [ 9] [D00000000] +15:59:29 [ 32] [ 6] [621354] +15:59:29 [ 35] [ 37] [6688990103535801=43011231580133600000] +15:59:29 [ 37] [ 12] [507903345167] +15:59:29 [ 41] [ 8] [13001400] +15:59:29 [ 42] [ 15] [NATIVE ] +15:59:29 [ 43] [ 40] [Kham Unit Kham LAO] +15:59:29 [ 49] [ 3] [418] +15:59:29 [ 52] [ 16] [94F1DA98B734B350] +15:59:29 ============================================================================ +15:59:29 + + +waiting on router queue for slot.... +15:59:29 Sending to : <4> +15:59:29 ============================================================================ +15:59:30 ============================================================================ +15:59:30 Slot Id : <67> +15:59:30 Transaction Type : RESPONSE +15:59:30 Received From : +15:59:30 ============================================================================ +15:59:30 FNo. Len. Field Value +15:59:30 ============================================================================ +15:59:30 [ 1] [ 4] [0210] +15:59:30 [ 2] [ 16] [6688990103535801] +15:59:30 [ 3] [ 6] [302000] +15:59:30 [ 4] [ 12] [000000000000] +15:59:30 [ 11] [ 6] [791271] +15:59:30 [ 12] [ 6] [155924] +15:59:30 [ 15] [ 4] [0320] +15:59:30 [ 18] [ 4] [6011] +15:59:30 [ 32] [ 6] [621354] +15:59:30 [ 35] [ 37] [6688990103535801=43011231580133600000] +15:59:30 [ 37] [ 12] [507903345167] +15:59:30 [ 38] [ 6] [816743] +15:59:30 [ 39] [ 2] [00] +15:59:30 [ 41] [ 8] [13001400] +15:59:30 [ 49] [ 3] [418] +15:59:30 [ 54] [ 20] [2002418C000317897076] +15:59:30 ============================================================================ +15:59:30 Sending to : +15:59:30 ============================================================================ +15:59:30 + + +waiting on router queue for slot.... +15:59:32 ============================================================================ +15:59:32 Slot Id : <67> +15:59:32 Transaction Type : RESPONSE +15:59:32 Received From : +15:59:32 ============================================================================ +15:59:32 FNo. Len. Field Value +15:59:32 ============================================================================ +15:59:32 [ 1] [ 4] [0210] +15:59:32 [ 2] [ 16] [6688990103535801] +15:59:32 [ 3] [ 6] [302000] +15:59:32 [ 4] [ 12] [000000000000] +15:59:32 [ 11] [ 6] [791271] +15:59:32 [ 12] [ 6] [155924] +15:59:32 [ 15] [ 4] [0320] +15:59:32 [ 18] [ 4] [6011] +15:59:32 [ 32] [ 6] [621354] +15:59:32 [ 35] [ 37] [6688990103535801=43011231580133600000] +15:59:32 [ 37] [ 12] [507903345167] +15:59:32 [ 38] [ 6] [816743] +15:59:32 [ 39] [ 2] [00] +15:59:32 [ 41] [ 8] [13001400] +15:59:32 [ 49] [ 3] [418] +15:59:32 [ 54] [ 20] [2002418C000317897076] +15:59:32 ============================================================================ +15:59:32 Calculate Source COMM Id = 0 +15:59:32 ============================================================================ +15:59:32 + + +waiting on router queue for slot.... +15:59:35 ============================================================================ +15:59:35 Slot Id : <62> +15:59:35 Transaction Type : REQUEST +15:59:35 Received From : +15:59:35 ============================================================================ +15:59:35 FNo. Len. Field Value +15:59:35 ============================================================================ +15:59:35 [ 1] [ 4] [0800] +15:59:35 [ 2] [ 5] [02531] +15:59:35 [ 3] [ 6] [579158] +15:59:35 [ 7] [ 10] [0320085935] +15:59:35 [ 11] [ 6] [807340] +15:59:35 [ 15] [ 10] [0320085935] +15:59:35 [ 37] [ 11] [57915807340] +15:59:35 [ 70] [ 3] [001] +15:59:35 ============================================================================ +15:59:35 + + +waiting on router queue for slot.... +15:59:35 ============================================================================ +15:59:35 Slot Id : <62> +15:59:35 Transaction Type : RESPONSE +15:59:35 Received From : +15:59:35 ============================================================================ +15:59:35 FNo. Len. Field Value +15:59:35 ============================================================================ +15:59:35 [ 1] [ 4] [0810] +15:59:35 [ 7] [ 10] [0320085935] +15:59:35 [ 11] [ 6] [807340] +15:59:35 [ 15] [ 4] [0320] +15:59:35 [ 37] [ 12] [57915807340] +15:59:35 [ 39] [ 2] [00] +15:59:35 [ 70] [ 3] [001] +15:59:35 ============================================================================ +15:59:35 Sending to : +15:59:35 ============================================================================ +15:59:35 + + +waiting on router queue for slot.... +15:59:37 ============================================================================ +15:59:37 Slot Id : <39> +15:59:37 Transaction Type : REQUEST +15:59:37 Received From : +15:59:37 ============================================================================ +15:59:37 FNo. Len. Field Value +15:59:37 ============================================================================ +15:59:37 [ 1] [ 4] [0800] +15:59:37 [ 7] [ 10] [0320085845] +15:59:37 [ 11] [ 6] [157140] +15:59:37 [ 70] [ 3] [301] +15:59:37 ============================================================================ +15:59:37 + + +waiting on router queue for slot.... +15:59:37 Sending to : +15:59:37 ============================================================================ +15:59:37 ============================================================================ +15:59:37 Slot Id : <39> +15:59:37 Transaction Type : RESPONSE +15:59:37 Received From : +15:59:37 ============================================================================ +15:59:37 FNo. Len. Field Value +15:59:37 ============================================================================ +15:59:37 [ 1] [ 4] [0810] +15:59:37 [ 7] [ 10] [0320085845] +15:59:37 [ 11] [ 6] [157140] +15:59:37 [ 39] [ 2] [00] +15:59:37 [ 70] [ 3] [301] +15:59:37 ============================================================================ +15:59:37 Calculate Source COMM Id = 2 +15:59:37 ============================================================================ +15:59:37 + + +waiting on router queue for slot.... +15:59:42 ============================================================================ +15:59:42 Slot Id : <51> +15:59:42 Transaction Type : REQUEST +15:59:42 Received From : +15:59:42 ============================================================================ +15:59:42 FNo. Len. Field Value +15:59:42 ============================================================================ +15:59:42 [ 1] [ 4] [0200] +15:59:42 [ 2] [ 16] [6213548000301430] +15:59:42 [ 3] [ 6] [010000] +15:59:42 [ 4] [ 12] [000030000000] +15:59:42 [ 7] [ 10] [0320155732] +15:59:42 [ 11] [ 6] [950832] +15:59:42 [ 12] [ 6] [155732] +15:59:42 [ 13] [ 4] [0320] +15:59:42 [ 15] [ 4] [0320] +15:59:42 [ 18] [ 4] [6011] +15:59:42 [ 19] [ 3] [418] +15:59:42 [ 22] [ 3] [021] +15:59:42 [ 25] [ 2] [01] +15:59:42 [ 28] [ 9] [D00002000] +15:59:42 [ 32] [ 6] [668899] +15:59:42 [ 35] [ 32] [6213548000301430=180312010143032] +15:59:42 [ 37] [ 12] [507900109397] +15:59:42 [ 41] [ 8] [03020002] +15:59:42 [ 42] [ 15] [APT ] +15:59:42 [ 43] [ 40] [ HEAD OFFICE 02 CHANTHABOU] +15:59:42 [ 49] [ 3] [418] +15:59:42 [ 52] [ 16] [B8EDCEA460589C2F] +15:59:42 ============================================================================ +15:59:42 + + +waiting on router queue for slot.... +15:59:42 Sending to : +15:59:42 ============================================================================ +15:59:42 Sending to : +15:59:42 ============================================================================ +15:59:42 ============================================================================ +15:59:42 Slot Id : <58> +15:59:42 Transaction Type : REQUEST +15:59:42 Received From : +15:59:42 ============================================================================ +15:59:42 FNo. Len. Field Value +15:59:42 ============================================================================ +15:59:42 [ 1] [ 4] [0800] +15:59:42 [ 7] [ 10] [0320231131] +15:59:42 [ 11] [ 6] [161131] +15:59:42 [ 37] [ 12] [57916161131] +15:59:42 [ 70] [ 3] [301] +15:59:42 ============================================================================ +15:59:42 + + +waiting on router queue for slot.... +15:59:42 Sending to : +15:59:42 ============================================================================ +15:59:42 ============================================================================ +15:59:42 Slot Id : <58> +15:59:42 Transaction Type : RESPONSE +15:59:42 Received From : +15:59:42 ============================================================================ +15:59:42 FNo. Len. Field Value +15:59:42 ============================================================================ +15:59:42 [ 1] [ 4] [0810] +15:59:42 [ 7] [ 10] [0320231131] +15:59:42 [ 11] [ 6] [161131] +15:59:42 [ 37] [ 12] [579161611310] +15:59:42 [ 39] [ 2] [00] +15:59:42 [ 70] [ 3] [810] +15:59:42 ============================================================================ +15:59:42 Calculate Source COMM Id = 6 +15:59:42 ============================================================================ +15:59:42 + + +waiting on router queue for slot.... +15:59:42 ============================================================================ +15:59:42 Slot Id : <51> +15:59:42 Transaction Type : REQUEST +15:59:42 Received From : +15:59:42 ============================================================================ +15:59:42 FNo. Len. Field Value +15:59:42 ============================================================================ +15:59:42 [ 1] [ 4] [0200] +15:59:42 [ 2] [ 16] [6213548000301430] +15:59:42 [ 3] [ 6] [010000] +15:59:42 [ 4] [ 12] [000030000000] +15:59:42 [ 7] [ 10] [0320155732] +15:59:42 [ 11] [ 6] [950832] +15:59:42 [ 12] [ 6] [155732] +15:59:42 [ 13] [ 4] [0320] +15:59:42 [ 15] [ 4] [0320] +15:59:42 [ 18] [ 4] [6011] +15:59:42 [ 19] [ 3] [418] +15:59:42 [ 22] [ 3] [021] +15:59:42 [ 25] [ 2] [01] +15:59:42 [ 28] [ 9] [D00002000] +15:59:42 [ 32] [ 6] [668899] +15:59:42 [ 35] [ 32] [6213548000301430=180312010143032] +15:59:42 [ 37] [ 12] [507900109397] +15:59:42 [ 41] [ 8] [03020002] +15:59:42 [ 42] [ 15] [APT ] +15:59:42 [ 43] [ 40] [ HEAD OFFICE 02 CHANTHABOU] +15:59:42 [ 49] [ 3] [418] +15:59:42 [ 52] [ 16] [B8EDCEA460589C2F] +15:59:42 ============================================================================ +15:59:42 + + +waiting on router queue for slot.... +15:59:42 Sending to : +15:59:42 ============================================================================ +15:59:42 ============================================================================ +15:59:42 Slot Id : <51> +15:59:42 Transaction Type : REQUEST +15:59:42 Received From : +15:59:42 ============================================================================ +15:59:42 FNo. Len. Field Value +15:59:42 ============================================================================ +15:59:42 [ 1] [ 4] [0200] +15:59:42 [ 2] [ 16] [6213548000301430] +15:59:42 [ 3] [ 6] [010000] +15:59:42 [ 4] [ 12] [000030000000] +15:59:42 [ 7] [ 10] [0320155732] +15:59:42 [ 11] [ 6] [950832] +15:59:42 [ 12] [ 6] [155732] +15:59:42 [ 13] [ 4] [0320] +15:59:42 [ 15] [ 4] [0320] +15:59:42 [ 18] [ 4] [6011] +15:59:42 [ 19] [ 3] [418] +15:59:42 [ 22] [ 3] [021] +15:59:42 [ 25] [ 2] [01] +15:59:42 [ 28] [ 9] [D00002000] +15:59:42 [ 32] [ 6] [668899] +15:59:42 [ 35] [ 32] [6213548000301430=180312010143032] +15:59:42 [ 37] [ 12] [507900109397] +15:59:42 [ 41] [ 8] [03020002] +15:59:42 [ 42] [ 15] [APT ] +15:59:42 [ 43] [ 40] [ HEAD OFFICE 02 CHANTHABOU] +15:59:42 [ 49] [ 3] [418] +15:59:42 [ 52] [ 16] [1AA2D754EBD6938B] +15:59:42 ============================================================================ +15:59:42 + + +waiting on router queue for slot.... +15:59:42 Sending to : <0> +15:59:42 ============================================================================ +15:59:43 ============================================================================ +15:59:43 Slot Id : <51> +15:59:43 Transaction Type : RESPONSE +15:59:43 Received From : +15:59:43 ============================================================================ +15:59:43 FNo. Len. Field Value +15:59:43 ============================================================================ +15:59:43 [ 1] [ 4] [0210] +15:59:43 [ 2] [ 16] [6213548000301430] +15:59:43 [ 3] [ 6] [010000] +15:59:43 [ 4] [ 12] [000030000000] +15:59:43 [ 7] [ 10] [0320155732] +15:59:43 [ 11] [ 6] [950832] +15:59:43 [ 12] [ 6] [155732] +15:59:43 [ 13] [ 4] [0320] +15:59:43 [ 15] [ 4] [0320] +15:59:43 [ 18] [ 4] [6011] +15:59:43 [ 19] [ 3] [418] +15:59:43 [ 32] [ 6] [668899] +15:59:43 [ 35] [ 32] [6213548000301430=180312010143032] +15:59:43 [ 37] [ 12] [507900109397] +15:59:43 [ 38] [ 6] [154100] +15:59:43 [ 39] [ 2] [00] +15:59:43 [ 41] [ 8] [03020002] +15:59:43 [ 49] [ 3] [418] +15:59:43 [ 54] [ 40] [0001418C0000068299830002418C000006829983] +15:59:43 ============================================================================ +15:59:43 Sending to : +15:59:43 ============================================================================ +15:59:43 + + +waiting on router queue for slot.... +15:59:44 ============================================================================ +15:59:44 Slot Id : <51> +15:59:44 Transaction Type : RESPONSE +15:59:44 Received From : +15:59:44 ============================================================================ +15:59:44 FNo. Len. Field Value +15:59:44 ============================================================================ +15:59:44 [ 1] [ 4] [0210] +15:59:44 [ 2] [ 16] [6213548000301430] +15:59:44 [ 3] [ 6] [010000] +15:59:44 [ 4] [ 12] [000030000000] +15:59:44 [ 7] [ 10] [0320155732] +15:59:44 [ 11] [ 6] [950832] +15:59:44 [ 12] [ 6] [155732] +15:59:44 [ 13] [ 4] [0320] +15:59:44 [ 15] [ 4] [0320] +15:59:44 [ 18] [ 4] [6011] +15:59:44 [ 19] [ 3] [418] +15:59:44 [ 32] [ 6] [668899] +15:59:44 [ 35] [ 32] [6213548000301430=180312010143032] +15:59:44 [ 37] [ 12] [507900109397] +15:59:44 [ 38] [ 6] [154100] +15:59:44 [ 39] [ 2] [00] +15:59:44 [ 41] [ 8] [03020002] +15:59:44 [ 49] [ 3] [418] +15:59:44 [ 54] [ 40] [0001418C0000068299830002418C000006829983] +15:59:44 ============================================================================ +15:59:44 Calculate Source COMM Id = 4 +15:59:44 ============================================================================ +15:59:44 + + +waiting on router queue for slot.... +15:59:45 ============================================================================ +15:59:45 Slot Id : <56> +15:59:45 Transaction Type : REQUEST +15:59:45 Received From : +15:59:45 ============================================================================ +15:59:45 FNo. Len. Field Value +15:59:45 ============================================================================ +15:59:45 [ 1] [ 4] [0200] +15:59:45 [ 2] [ 16] [6688990106140708] +15:59:45 [ 3] [ 6] [010000] +15:59:45 [ 4] [ 12] [000010000000] +15:59:45 [ 7] [ 10] [0320085851] +15:59:45 [ 11] [ 6] [270213] +15:59:45 [ 12] [ 6] [155851] +15:59:45 [ 13] [ 4] [0320] +15:59:45 [ 14] [ 4] [4312] +15:59:45 [ 15] [ 4] [0320] +15:59:45 [ 18] [ 4] [6011] +15:59:45 [ 19] [ 3] [418] +15:59:45 [ 22] [ 3] [021] +15:59:45 [ 25] [ 2] [01] +15:59:45 [ 28] [ 9] [D00002000] +15:59:45 [ 32] [ 6] [180893] +15:59:45 [ 35] [ 37] [6688990106140708=43121231070812200000] +15:59:45 [ 37] [ 12] [507908270213] +15:59:45 [ 41] [ 8] [0321LNTV] +15:59:45 [ 42] [ 15] [999999 ] +15:59:45 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +15:59:45 [ 49] [ 3] [418] +15:59:45 [ 52] [ 16] [E95B8CDD8B32CD1F] +15:59:45 ============================================================================ +15:59:45 + + +waiting on router queue for slot.... +15:59:45 Sending to : +15:59:45 ============================================================================ +15:59:45 Sending to : +15:59:45 ============================================================================ +15:59:46 ============================================================================ +15:59:46 Slot Id : <56> +15:59:46 Transaction Type : REQUEST +15:59:46 Received From : +15:59:46 ============================================================================ +15:59:46 FNo. Len. Field Value +15:59:46 ============================================================================ +15:59:46 [ 1] [ 4] [0200] +15:59:46 [ 2] [ 16] [6688990106140708] +15:59:46 [ 3] [ 6] [010000] +15:59:46 [ 4] [ 12] [000010000000] +15:59:46 [ 7] [ 10] [0320085851] +15:59:46 [ 11] [ 6] [270213] +15:59:46 [ 12] [ 6] [155851] +15:59:46 [ 13] [ 4] [0320] +15:59:46 [ 14] [ 4] [4312] +15:59:46 [ 15] [ 4] [0320] +15:59:46 [ 18] [ 4] [6011] +15:59:46 [ 19] [ 3] [418] +15:59:46 [ 22] [ 3] [021] +15:59:46 [ 25] [ 2] [01] +15:59:46 [ 28] [ 9] [D00002000] +15:59:46 [ 32] [ 6] [180893] +15:59:46 [ 35] [ 37] [6688990106140708=43121231070812200000] +15:59:46 [ 37] [ 12] [507908270213] +15:59:46 [ 41] [ 8] [0321LNTV] +15:59:46 [ 42] [ 15] [999999 ] +15:59:46 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +15:59:46 [ 49] [ 3] [418] +15:59:46 [ 52] [ 16] [E95B8CDD8B32CD1F] +15:59:46 ============================================================================ +15:59:46 + + +waiting on router queue for slot.... +15:59:46 Sending to : +15:59:46 ============================================================================ +15:59:46 ============================================================================ +15:59:46 Slot Id : <56> +15:59:46 Transaction Type : REQUEST +15:59:46 Received From : +15:59:46 ============================================================================ +15:59:46 FNo. Len. Field Value +15:59:46 ============================================================================ +15:59:46 [ 1] [ 4] [0200] +15:59:46 [ 2] [ 16] [6688990106140708] +15:59:46 [ 3] [ 6] [010000] +15:59:46 [ 4] [ 12] [000010000000] +15:59:46 [ 7] [ 10] [0320085851] +15:59:46 [ 11] [ 6] [270213] +15:59:46 [ 12] [ 6] [155851] +15:59:46 [ 13] [ 4] [0320] +15:59:46 [ 14] [ 4] [4312] +15:59:46 [ 15] [ 4] [0320] +15:59:46 [ 18] [ 4] [6011] +15:59:46 [ 19] [ 3] [418] +15:59:46 [ 22] [ 3] [021] +15:59:46 [ 25] [ 2] [01] +15:59:46 [ 28] [ 9] [D00002000] +15:59:46 [ 32] [ 6] [180893] +15:59:46 [ 35] [ 37] [6688990106140708=43121231070812200000] +15:59:46 [ 37] [ 12] [507908270213] +15:59:46 [ 41] [ 8] [0321LNTV] +15:59:46 [ 42] [ 15] [999999 ] +15:59:46 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +15:59:46 [ 49] [ 3] [418] +15:59:46 [ 52] [ 16] [F80C735B84F2F251] +15:59:46 ============================================================================ +15:59:46 + + +waiting on router queue for slot.... +15:59:46 Sending to : <0> +15:59:46 ============================================================================ +15:59:47 ============================================================================ +15:59:47 Slot Id : <56> +15:59:47 Transaction Type : RESPONSE +15:59:47 Received From : +15:59:47 ============================================================================ +15:59:47 FNo. Len. Field Value +15:59:47 ============================================================================ +15:59:47 [ 1] [ 4] [0210] +15:59:47 [ 2] [ 16] [6688990106140708] +15:59:47 [ 3] [ 6] [010000] +15:59:47 [ 4] [ 12] [000010000000] +15:59:47 [ 7] [ 10] [0320085851] +15:59:47 [ 11] [ 6] [270213] +15:59:47 [ 12] [ 6] [155851] +15:59:47 [ 13] [ 4] [0320] +15:59:47 [ 15] [ 4] [0320] +15:59:47 [ 18] [ 4] [6011] +15:59:47 [ 19] [ 3] [418] +15:59:47 [ 22] [ 3] [021] +15:59:47 [ 32] [ 6] [180893] +15:59:47 [ 35] [ 37] [6688990106140708=43121231070812200000] +15:59:47 [ 37] [ 12] [507908270213] +15:59:47 [ 39] [ 2] [14] +15:59:47 [ 41] [ 8] [0321LNTV] +15:59:47 [ 49] [ 3] [418] +15:59:47 ============================================================================ +15:59:47 Sending to : +15:59:47 ============================================================================ +15:59:47 + + +waiting on router queue for slot.... +15:59:48 ============================================================================ +15:59:48 Slot Id : <82> +15:59:48 Transaction Type : REQUEST +15:59:48 Received From : +15:59:48 ============================================================================ +15:59:48 FNo. Len. Field Value +15:59:48 ============================================================================ +15:59:48 [ 1] [ 4] [0800] +15:59:48 [ 7] [ 10] [0320085855] +15:59:48 [ 11] [ 6] [157141] +15:59:48 [ 70] [ 3] [301] +15:59:48 ============================================================================ +15:59:48 + + +waiting on router queue for slot.... +15:59:48 Sending to : +15:59:48 ============================================================================ +15:59:48 ============================================================================ +15:59:48 Slot Id : <82> +15:59:48 Transaction Type : RESPONSE +15:59:48 Received From : +15:59:48 ============================================================================ +15:59:48 FNo. Len. Field Value +15:59:48 ============================================================================ +15:59:48 [ 1] [ 4] [0810] +15:59:48 [ 7] [ 10] [0320085855] +15:59:48 [ 11] [ 6] [157141] +15:59:48 [ 39] [ 2] [00] +15:59:48 [ 70] [ 3] [301] +15:59:48 ============================================================================ +15:59:48 Calculate Source COMM Id = 2 +15:59:48 ============================================================================ +15:59:48 + + +waiting on router queue for slot.... +15:59:49 ============================================================================ +15:59:49 Slot Id : <56> +15:59:49 Transaction Type : RESPONSE +15:59:49 Received From : +15:59:49 ============================================================================ +15:59:49 FNo. Len. Field Value +15:59:49 ============================================================================ +15:59:49 [ 1] [ 4] [0210] +15:59:49 [ 2] [ 16] [6688990106140708] +15:59:49 [ 3] [ 6] [010000] +15:59:49 [ 4] [ 12] [000010000000] +15:59:49 [ 7] [ 10] [0320085851] +15:59:49 [ 11] [ 6] [270213] +15:59:49 [ 12] [ 6] [155851] +15:59:49 [ 13] [ 4] [0320] +15:59:49 [ 15] [ 4] [0320] +15:59:49 [ 18] [ 4] [6011] +15:59:49 [ 19] [ 3] [418] +15:59:49 [ 22] [ 3] [021] +15:59:49 [ 32] [ 6] [180893] +15:59:49 [ 35] [ 37] [6688990106140708=43121231070812200000] +15:59:49 [ 37] [ 12] [507908270213] +15:59:49 [ 39] [ 2] [14] +15:59:49 [ 41] [ 8] [0321LNTV] +15:59:49 [ 49] [ 3] [418] +15:59:49 ============================================================================ +15:59:49 Calculate Source COMM Id = 2 +15:59:49 ============================================================================ +15:59:49 + + +waiting on router queue for slot.... +15:59:50 ============================================================================ +15:59:50 Slot Id : <99> +15:59:50 Transaction Type : REQUEST +15:59:50 Received From : +15:59:50 ============================================================================ +15:59:50 FNo. Len. Field Value +15:59:50 ============================================================================ +15:59:50 [ 1] [ 4] [0200] +15:59:50 [ 2] [ 16] [6688990060005913] +15:59:50 [ 3] [ 6] [010000] +15:59:50 [ 4] [ 12] [000080000000] +15:59:50 [ 7] [ 10] [0320155945] +15:59:50 [ 11] [ 6] [791354] +15:59:50 [ 12] [ 6] [155945] +15:59:50 [ 13] [ 4] [0320] +15:59:50 [ 15] [ 4] [0320] +15:59:50 [ 18] [ 4] [6011] +15:59:50 [ 22] [ 3] [900] +15:59:50 [ 25] [ 2] [02] +15:59:50 [ 28] [ 9] [D00002000] +15:59:50 [ 32] [ 6] [621354] +15:59:50 [ 35] [ 37] [6688990060005913=97111261951198900000] +15:59:50 [ 37] [ 12] [507903499551] +15:59:50 [ 41] [ 8] [06002200] +15:59:50 [ 42] [ 15] [NATIVE ] +15:59:50 [ 43] [ 40] [Beng Market Beng LAO] +15:59:50 [ 49] [ 3] [418] +15:59:50 [ 52] [ 16] [AD17360FA0B3164B] +15:59:50 ============================================================================ +15:59:50 + + +waiting on router queue for slot.... +15:59:50 Sending to : +15:59:50 ============================================================================ +15:59:50 Sending to : +15:59:50 ============================================================================ +15:59:51 ============================================================================ +15:59:51 Slot Id : <99> +15:59:51 Transaction Type : REQUEST +15:59:51 Received From : +15:59:51 ============================================================================ +15:59:51 FNo. Len. Field Value +15:59:51 ============================================================================ +15:59:51 [ 1] [ 4] [0200] +15:59:51 [ 2] [ 16] [6688990060005913] +15:59:51 [ 3] [ 6] [010000] +15:59:51 [ 4] [ 12] [000080000000] +15:59:51 [ 7] [ 10] [0320155945] +15:59:51 [ 11] [ 6] [791354] +15:59:51 [ 12] [ 6] [155945] +15:59:51 [ 13] [ 4] [0320] +15:59:51 [ 15] [ 4] [0320] +15:59:51 [ 18] [ 4] [6011] +15:59:51 [ 22] [ 3] [900] +15:59:51 [ 25] [ 2] [02] +15:59:51 [ 28] [ 9] [D00002000] +15:59:51 [ 32] [ 6] [621354] +15:59:51 [ 35] [ 37] [6688990060005913=97111261951198900000] +15:59:51 [ 37] [ 12] [507903499551] +15:59:51 [ 41] [ 8] [06002200] +15:59:51 [ 42] [ 15] [NATIVE ] +15:59:51 [ 43] [ 40] [Beng Market Beng LAO] +15:59:51 [ 49] [ 3] [418] +15:59:51 [ 52] [ 16] [AD17360FA0B3164B] +15:59:51 ============================================================================ +15:59:51 + + +waiting on router queue for slot.... +15:59:51 Sending to : +15:59:51 ============================================================================ +15:59:51 ============================================================================ +15:59:51 Slot Id : <99> +15:59:51 Transaction Type : REQUEST +15:59:51 Received From : +15:59:51 ============================================================================ +15:59:51 FNo. Len. Field Value +15:59:51 ============================================================================ +15:59:51 [ 1] [ 4] [0200] +15:59:51 [ 2] [ 16] [6688990060005913] +15:59:51 [ 3] [ 6] [010000] +15:59:51 [ 4] [ 12] [000080000000] +15:59:51 [ 7] [ 10] [0320155945] +15:59:51 [ 11] [ 6] [791354] +15:59:51 [ 12] [ 6] [155945] +15:59:51 [ 13] [ 4] [0320] +15:59:51 [ 15] [ 4] [0320] +15:59:51 [ 18] [ 4] [6011] +15:59:51 [ 22] [ 3] [900] +15:59:51 [ 25] [ 2] [02] +15:59:51 [ 28] [ 9] [D00002000] +15:59:51 [ 32] [ 6] [621354] +15:59:51 [ 35] [ 37] [6688990060005913=97111261951198900000] +15:59:51 [ 37] [ 12] [507903499551] +15:59:51 [ 41] [ 8] [06002200] +15:59:51 [ 42] [ 15] [NATIVE ] +15:59:51 [ 43] [ 40] [Beng Market Beng LAO] +15:59:51 [ 49] [ 3] [418] +15:59:51 [ 52] [ 16] [E04A6C48091F5E88] +15:59:51 ============================================================================ +15:59:51 + + +waiting on router queue for slot.... +15:59:51 Sending to : <4> +15:59:51 ============================================================================ +15:59:52 ============================================================================ +15:59:52 Slot Id : <99> +15:59:52 Transaction Type : RESPONSE +15:59:52 Received From : +15:59:52 ============================================================================ +15:59:52 FNo. Len. Field Value +15:59:52 ============================================================================ +15:59:52 [ 1] [ 4] [0210] +15:59:52 [ 2] [ 16] [6688990060005913] +15:59:52 [ 3] [ 6] [010000] +15:59:52 [ 4] [ 12] [000080000000] +15:59:52 [ 11] [ 6] [791354] +15:59:52 [ 12] [ 6] [155945] +15:59:52 [ 15] [ 4] [0320] +15:59:52 [ 18] [ 4] [6011] +15:59:52 [ 32] [ 6] [621354] +15:59:52 [ 35] [ 37] [6688990060005913=97111261951198900000] +15:59:52 [ 37] [ 12] [507903499551] +15:59:52 [ 38] [ 6] [134412] +15:59:52 [ 39] [ 2] [00] +15:59:52 [ 41] [ 8] [06002200] +15:59:52 [ 49] [ 3] [418] +15:59:52 [ 54] [ 20] [0002418C000314110223] +15:59:52 ============================================================================ +15:59:52 Sending to : +15:59:52 ============================================================================ +15:59:52 + + +waiting on router queue for slot.... +15:59:53 ============================================================================ +15:59:53 Slot Id : <99> +15:59:53 Transaction Type : RESPONSE +15:59:53 Received From : +15:59:53 ============================================================================ +15:59:53 FNo. Len. Field Value +15:59:53 ============================================================================ +15:59:53 [ 1] [ 4] [0210] +15:59:53 [ 2] [ 16] [6688990060005913] +15:59:53 [ 3] [ 6] [010000] +15:59:53 [ 4] [ 12] [000080000000] +15:59:53 [ 11] [ 6] [791354] +15:59:53 [ 12] [ 6] [155945] +15:59:53 [ 15] [ 4] [0320] +15:59:53 [ 18] [ 4] [6011] +15:59:53 [ 32] [ 6] [621354] +15:59:53 [ 35] [ 37] [6688990060005913=97111261951198900000] +15:59:53 [ 37] [ 12] [507903499551] +15:59:53 [ 38] [ 6] [134412] +15:59:53 [ 39] [ 2] [00] +15:59:53 [ 41] [ 8] [06002200] +15:59:53 [ 49] [ 3] [418] +15:59:53 [ 54] [ 20] [0002418C000314110223] +15:59:53 ============================================================================ +15:59:53 Calculate Source COMM Id = 0 +15:59:53 ============================================================================ +15:59:53 + + +waiting on router queue for slot.... +15:59:55 ============================================================================ +15:59:55 Slot Id : <93> +15:59:55 Transaction Type : REQUEST +15:59:55 Received From : +15:59:55 ============================================================================ +15:59:55 FNo. Len. Field Value +15:59:55 ============================================================================ +15:59:55 [ 1] [ 4] [0800] +15:59:55 [ 7] [ 10] [0320090742] +15:59:55 [ 11] [ 6] [059445] +15:59:55 [ 37] [ 12] [57916059445] +15:59:55 [ 70] [ 3] [301] +15:59:55 ============================================================================ +15:59:55 + + +waiting on router queue for slot.... +15:59:55 Sending to : +15:59:55 ============================================================================ +15:59:55 ============================================================================ +15:59:55 Slot Id : <93> +15:59:55 Transaction Type : RESPONSE +15:59:55 Received From : +15:59:55 ============================================================================ +15:59:55 FNo. Len. Field Value +15:59:55 ============================================================================ +15:59:55 [ 1] [ 4] [0810] +15:59:55 [ 7] [ 10] [0320090742] +15:59:55 [ 11] [ 6] [059445] +15:59:55 [ 37] [ 12] [579160594450] +15:59:55 [ 39] [ 2] [00] +15:59:55 [ 70] [ 3] [810] +15:59:55 ============================================================================ +15:59:55 Calculate Source COMM Id = 1 +15:59:55 ============================================================================ +15:59:55 + + +waiting on router queue for slot.... +16:00:04 ============================================================================ +16:00:04 Slot Id : <91> +16:00:04 Transaction Type : REQUEST +16:00:04 Received From : +16:00:04 ============================================================================ +16:00:04 FNo. Len. Field Value +16:00:04 ============================================================================ +16:00:04 [ 1] [ 4] [0800] +16:00:04 [ 7] [ 10] [0320085911] +16:00:04 [ 11] [ 6] [157142] +16:00:04 [ 70] [ 3] [301] +16:00:04 ============================================================================ +16:00:04 + + +waiting on router queue for slot.... +16:00:04 Sending to : +16:00:04 ============================================================================ +16:00:04 ============================================================================ +16:00:04 Slot Id : <91> +16:00:04 Transaction Type : RESPONSE +16:00:04 Received From : +16:00:04 ============================================================================ +16:00:04 FNo. Len. Field Value +16:00:04 ============================================================================ +16:00:04 [ 1] [ 4] [0810] +16:00:04 [ 7] [ 10] [0320085911] +16:00:04 [ 11] [ 6] [157142] +16:00:04 [ 39] [ 2] [00] +16:00:04 [ 70] [ 3] [301] +16:00:04 ============================================================================ +16:00:04 Calculate Source COMM Id = 2 +16:00:04 ============================================================================ +16:00:04 + + +waiting on router queue for slot.... +16:00:05 ============================================================================ +16:00:05 Slot Id : <64> +16:00:05 Transaction Type : REQUEST +16:00:05 Received From : +16:00:05 ============================================================================ +16:00:05 FNo. Len. Field Value +16:00:05 ============================================================================ +16:00:05 [ 1] [ 4] [0200] +16:00:05 [ 2] [ 16] [1808930500000021] +16:00:05 [ 3] [ 6] [011000] +16:00:05 [ 4] [ 12] [000100000000] +16:00:05 [ 7] [ 10] [0320160000] +16:00:05 [ 11] [ 6] [791436] +16:00:05 [ 12] [ 6] [160000] +16:00:05 [ 13] [ 4] [0320] +16:00:05 [ 15] [ 4] [0320] +16:00:05 [ 18] [ 4] [6011] +16:00:05 [ 22] [ 3] [900] +16:00:05 [ 25] [ 2] [02] +16:00:05 [ 28] [ 9] [D00002000] +16:00:05 [ 32] [ 6] [621354] +16:00:05 [ 35] [ 27] [1808930500000021=1803500808] +16:00:05 [ 37] [ 12] [507903139883] +16:00:05 [ 41] [ 8] [04002300] +16:00:05 [ 42] [ 15] [NATIVE ] +16:00:05 [ 43] [ 40] [PAKSE PHONKUNG Pakse LAO] +16:00:05 [ 49] [ 3] [418] +16:00:05 [ 52] [ 16] [0D978D3DAE5A573A] +16:00:05 ============================================================================ +16:00:05 + + +waiting on router queue for slot.... +16:00:05 Sending to : +16:00:05 ============================================================================ +16:00:05 Sending to : +16:00:05 ============================================================================ +16:00:06 ============================================================================ +16:00:06 Slot Id : <64> +16:00:06 Transaction Type : REQUEST +16:00:06 Received From : +16:00:06 ============================================================================ +16:00:06 FNo. Len. Field Value +16:00:06 ============================================================================ +16:00:06 [ 1] [ 4] [0200] +16:00:06 [ 2] [ 16] [1808930500000021] +16:00:06 [ 3] [ 6] [011000] +16:00:06 [ 4] [ 12] [000100000000] +16:00:06 [ 7] [ 10] [0320160000] +16:00:06 [ 11] [ 6] [791436] +16:00:06 [ 12] [ 6] [160000] +16:00:06 [ 13] [ 4] [0320] +16:00:06 [ 15] [ 4] [0320] +16:00:06 [ 18] [ 4] [6011] +16:00:06 [ 22] [ 3] [900] +16:00:06 [ 25] [ 2] [02] +16:00:06 [ 28] [ 9] [D00002000] +16:00:06 [ 32] [ 6] [621354] +16:00:06 [ 35] [ 27] [1808930500000021=1803500808] +16:00:06 [ 37] [ 12] [507903139883] +16:00:06 [ 41] [ 8] [04002300] +16:00:06 [ 42] [ 15] [NATIVE ] +16:00:06 [ 43] [ 40] [PAKSE PHONKUNG Pakse LAO] +16:00:06 [ 49] [ 3] [418] +16:00:06 [ 52] [ 16] [0D978D3DAE5A573A] +16:00:06 ============================================================================ +16:00:06 + + +waiting on router queue for slot.... +16:00:06 Sending to : +16:00:06 ============================================================================ +16:00:06 ============================================================================ +16:00:06 Slot Id : <64> +16:00:06 Transaction Type : REQUEST +16:00:06 Received From : +16:00:06 ============================================================================ +16:00:06 FNo. Len. Field Value +16:00:06 ============================================================================ +16:00:06 [ 1] [ 4] [0200] +16:00:06 [ 2] [ 16] [1808930500000021] +16:00:06 [ 3] [ 6] [011000] +16:00:06 [ 4] [ 12] [000100000000] +16:00:06 [ 7] [ 10] [0320160000] +16:00:06 [ 11] [ 6] [791436] +16:00:06 [ 12] [ 6] [160000] +16:00:06 [ 13] [ 4] [0320] +16:00:06 [ 15] [ 4] [0320] +16:00:06 [ 18] [ 4] [6011] +16:00:06 [ 22] [ 3] [900] +16:00:06 [ 25] [ 2] [02] +16:00:06 [ 28] [ 9] [D00002000] +16:00:06 [ 32] [ 6] [621354] +16:00:06 [ 35] [ 27] [1808930500000021=1803500808] +16:00:06 [ 37] [ 12] [507903139883] +16:00:06 [ 41] [ 8] [04002300] +16:00:06 [ 42] [ 15] [NATIVE ] +16:00:06 [ 43] [ 40] [PAKSE PHONKUNG Pakse LAO] +16:00:06 [ 49] [ 3] [418] +16:00:06 [ 52] [ 16] [0BF4853AD11DB08A] +16:00:06 ============================================================================ +16:00:06 + + +waiting on router queue for slot.... +16:00:06 Sending to : <2> +16:00:06 ============================================================================ +16:00:13 ============================================================================ +16:00:13 Slot Id : <64> +16:00:13 Transaction Type : RESPONSE +16:00:13 Received From : +16:00:13 ============================================================================ +16:00:13 FNo. Len. Field Value +16:00:13 ============================================================================ +16:00:13 [ 1] [ 4] [0210] +16:00:13 [ 2] [ 16] [1808930500000021] +16:00:13 [ 3] [ 6] [011000] +16:00:13 [ 4] [ 12] [000100000000] +16:00:13 [ 6] [ 12] [000100000000] +16:00:13 [ 7] [ 10] [0320160000] +16:00:13 [ 11] [ 6] [791436] +16:00:13 [ 12] [ 6] [160000] +16:00:13 [ 13] [ 4] [0320] +16:00:13 [ 18] [ 4] [6011] +16:00:13 [ 19] [ 3] [418] +16:00:13 [ 22] [ 3] [021] +16:00:13 [ 32] [ 6] [621354] +16:00:13 [ 35] [ 27] [1808930500000021=1803500808] +16:00:13 [ 37] [ 12] [507903139883] +16:00:13 [ 38] [ 6] [791436] +16:00:13 [ 39] [ 2] [00] +16:00:13 [ 41] [ 8] [04002300] +16:00:13 [ 49] [ 3] [418] +16:00:13 [ 52] [ 16] [0BF4853AD11DB08A] +16:00:13 [ 54] [ 20] [1001418C003651022100] +16:00:13 ============================================================================ +16:00:13 Sending to : +16:00:13 ============================================================================ +16:00:13 + + +waiting on router queue for slot.... +16:00:14 ============================================================================ +16:00:14 Slot Id : <64> +16:00:14 Transaction Type : RESPONSE +16:00:14 Received From : +16:00:14 ============================================================================ +16:00:14 FNo. Len. Field Value +16:00:14 ============================================================================ +16:00:14 [ 1] [ 4] [0210] +16:00:14 [ 2] [ 16] [1808930500000021] +16:00:14 [ 3] [ 6] [011000] +16:00:14 [ 4] [ 12] [000100000000] +16:00:14 [ 6] [ 12] [000100000000] +16:00:14 [ 7] [ 10] [0320160000] +16:00:14 [ 11] [ 6] [791436] +16:00:14 [ 12] [ 6] [160000] +16:00:14 [ 13] [ 4] [0320] +16:00:14 [ 18] [ 4] [6011] +16:00:14 [ 19] [ 3] [418] +16:00:14 [ 22] [ 3] [021] +16:00:14 [ 32] [ 6] [621354] +16:00:14 [ 35] [ 27] [1808930500000021=1803500808] +16:00:14 [ 37] [ 12] [507903139883] +16:00:14 [ 38] [ 6] [791436] +16:00:14 [ 39] [ 2] [00] +16:00:14 [ 41] [ 8] [04002300] +16:00:14 [ 49] [ 3] [418] +16:00:14 [ 52] [ 16] [0BF4853AD11DB08A] +16:00:14 [ 54] [ 20] [1001418C003651022100] +16:00:14 ============================================================================ +16:00:14 Calculate Source COMM Id = 0 +16:00:14 ============================================================================ +16:00:14 + + +waiting on router queue for slot.... +16:00:18 ============================================================================ +16:00:18 Slot Id : <65> +16:00:18 Transaction Type : REQUEST +16:00:18 Received From : +16:00:18 ============================================================================ +16:00:18 FNo. Len. Field Value +16:00:18 ============================================================================ +16:00:18 [ 1] [ 4] [0200] +16:00:18 [ 2] [ 16] [1808931800005819] +16:00:18 [ 3] [ 6] [011000] +16:00:18 [ 4] [ 12] [000050000000] +16:00:18 [ 7] [ 10] [0320160014] +16:00:18 [ 11] [ 6] [791494] +16:00:18 [ 12] [ 6] [160014] +16:00:18 [ 13] [ 4] [0320] +16:00:18 [ 15] [ 4] [0320] +16:00:18 [ 18] [ 4] [6011] +16:00:18 [ 22] [ 3] [900] +16:00:18 [ 25] [ 2] [02] +16:00:18 [ 28] [ 9] [D00002000] +16:00:18 [ 32] [ 6] [621354] +16:00:18 [ 35] [ 27] [1808931800005819=1803500314] +16:00:18 [ 37] [ 12] [507904635793] +16:00:18 [ 41] [ 8] [17000800] +16:00:18 [ 42] [ 15] [NATIVE ] +16:00:18 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:00:18 [ 49] [ 3] [418] +16:00:18 [ 52] [ 16] [FB005D378095F13B] +16:00:18 ============================================================================ +16:00:18 + + +waiting on router queue for slot.... +16:00:18 Sending to : +16:00:18 ============================================================================ +16:00:18 Sending to : +16:00:18 ============================================================================ +16:00:19 ============================================================================ +16:00:19 Slot Id : <65> +16:00:19 Transaction Type : REQUEST +16:00:19 Received From : +16:00:19 ============================================================================ +16:00:19 FNo. Len. Field Value +16:00:19 ============================================================================ +16:00:19 [ 1] [ 4] [0200] +16:00:19 [ 2] [ 16] [1808931800005819] +16:00:19 [ 3] [ 6] [011000] +16:00:19 [ 4] [ 12] [000050000000] +16:00:19 [ 7] [ 10] [0320160014] +16:00:19 [ 11] [ 6] [791494] +16:00:19 [ 12] [ 6] [160014] +16:00:19 [ 13] [ 4] [0320] +16:00:19 [ 15] [ 4] [0320] +16:00:19 [ 18] [ 4] [6011] +16:00:19 [ 22] [ 3] [900] +16:00:19 [ 25] [ 2] [02] +16:00:19 [ 28] [ 9] [D00002000] +16:00:19 [ 32] [ 6] [621354] +16:00:19 [ 35] [ 27] [1808931800005819=1803500314] +16:00:19 [ 37] [ 12] [507904635793] +16:00:19 [ 41] [ 8] [17000800] +16:00:19 [ 42] [ 15] [NATIVE ] +16:00:19 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:00:19 [ 49] [ 3] [418] +16:00:19 [ 52] [ 16] [FB005D378095F13B] +16:00:19 ============================================================================ +16:00:19 + + +waiting on router queue for slot.... +16:00:19 Sending to : +16:00:19 ============================================================================ +16:00:19 ============================================================================ +16:00:19 Slot Id : <65> +16:00:19 Transaction Type : REQUEST +16:00:19 Received From : +16:00:19 ============================================================================ +16:00:19 FNo. Len. Field Value +16:00:19 ============================================================================ +16:00:19 [ 1] [ 4] [0200] +16:00:19 [ 2] [ 16] [1808931800005819] +16:00:19 [ 3] [ 6] [011000] +16:00:19 [ 4] [ 12] [000050000000] +16:00:19 [ 7] [ 10] [0320160014] +16:00:19 [ 11] [ 6] [791494] +16:00:19 [ 12] [ 6] [160014] +16:00:19 [ 13] [ 4] [0320] +16:00:19 [ 15] [ 4] [0320] +16:00:19 [ 18] [ 4] [6011] +16:00:19 [ 22] [ 3] [900] +16:00:19 [ 25] [ 2] [02] +16:00:19 [ 28] [ 9] [D00002000] +16:00:19 [ 32] [ 6] [621354] +16:00:19 [ 35] [ 27] [1808931800005819=1803500314] +16:00:19 [ 37] [ 12] [507904635793] +16:00:19 [ 41] [ 8] [17000800] +16:00:19 [ 42] [ 15] [NATIVE ] +16:00:19 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:00:19 [ 49] [ 3] [418] +16:00:19 [ 52] [ 16] [98BE394402CFEE30] +16:00:19 ============================================================================ +16:00:19 + + +waiting on router queue for slot.... +16:00:19 Sending to : <2> +16:00:19 ============================================================================ +16:00:22 ============================================================================ +16:00:22 Slot Id : <100> +16:00:22 Transaction Type : REQUEST +16:00:22 Received From : +16:00:22 ============================================================================ +16:00:22 FNo. Len. Field Value +16:00:22 ============================================================================ +16:00:22 [ 1] [ 4] [0200] +16:00:22 [ 2] [ 16] [6688990106140708] +16:00:22 [ 3] [ 6] [010000] +16:00:22 [ 4] [ 12] [000010000000] +16:00:22 [ 7] [ 10] [0320085929] +16:00:22 [ 11] [ 6] [270220] +16:00:22 [ 12] [ 6] [155929] +16:00:22 [ 13] [ 4] [0320] +16:00:22 [ 14] [ 4] [4312] +16:00:22 [ 15] [ 4] [0320] +16:00:22 [ 18] [ 4] [6011] +16:00:22 [ 19] [ 3] [418] +16:00:22 [ 22] [ 3] [021] +16:00:22 [ 25] [ 2] [01] +16:00:22 [ 28] [ 9] [D00002000] +16:00:22 [ 32] [ 6] [180893] +16:00:22 [ 35] [ 37] [6688990106140708=43121231070812200000] +16:00:22 [ 37] [ 12] [507908270220] +16:00:22 [ 41] [ 8] [0321LNTV] +16:00:22 [ 42] [ 15] [999999 ] +16:00:22 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +16:00:22 [ 49] [ 3] [418] +16:00:22 [ 52] [ 16] [E95B8CDD8B32CD1F] +16:00:22 ============================================================================ +16:00:22 + + +waiting on router queue for slot.... +16:00:22 Sending to : +16:00:22 ============================================================================ +16:00:22 Sending to : +16:00:22 ============================================================================ +16:00:23 ============================================================================ +16:00:23 Slot Id : <100> +16:00:23 Transaction Type : REQUEST +16:00:23 Received From : +16:00:23 ============================================================================ +16:00:23 FNo. Len. Field Value +16:00:23 ============================================================================ +16:00:23 [ 1] [ 4] [0200] +16:00:23 [ 2] [ 16] [6688990106140708] +16:00:23 [ 3] [ 6] [010000] +16:00:23 [ 4] [ 12] [000010000000] +16:00:23 [ 7] [ 10] [0320085929] +16:00:23 [ 11] [ 6] [270220] +16:00:23 [ 12] [ 6] [155929] +16:00:23 [ 13] [ 4] [0320] +16:00:23 [ 14] [ 4] [4312] +16:00:23 [ 15] [ 4] [0320] +16:00:23 [ 18] [ 4] [6011] +16:00:23 [ 19] [ 3] [418] +16:00:23 [ 22] [ 3] [021] +16:00:23 [ 25] [ 2] [01] +16:00:23 [ 28] [ 9] [D00002000] +16:00:23 [ 32] [ 6] [180893] +16:00:23 [ 35] [ 37] [6688990106140708=43121231070812200000] +16:00:23 [ 37] [ 12] [507908270220] +16:00:23 [ 41] [ 8] [0321LNTV] +16:00:23 [ 42] [ 15] [999999 ] +16:00:23 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +16:00:23 [ 49] [ 3] [418] +16:00:23 [ 52] [ 16] [E95B8CDD8B32CD1F] +16:00:23 ============================================================================ +16:00:23 + + +waiting on router queue for slot.... +16:00:23 Sending to : +16:00:23 ============================================================================ +16:00:23 ============================================================================ +16:00:23 Slot Id : <100> +16:00:23 Transaction Type : REQUEST +16:00:23 Received From : +16:00:23 ============================================================================ +16:00:23 FNo. Len. Field Value +16:00:23 ============================================================================ +16:00:23 [ 1] [ 4] [0200] +16:00:23 [ 2] [ 16] [6688990106140708] +16:00:23 [ 3] [ 6] [010000] +16:00:23 [ 4] [ 12] [000010000000] +16:00:23 [ 7] [ 10] [0320085929] +16:00:23 [ 11] [ 6] [270220] +16:00:23 [ 12] [ 6] [155929] +16:00:23 [ 13] [ 4] [0320] +16:00:23 [ 14] [ 4] [4312] +16:00:23 [ 15] [ 4] [0320] +16:00:23 [ 18] [ 4] [6011] +16:00:23 [ 19] [ 3] [418] +16:00:23 [ 22] [ 3] [021] +16:00:23 [ 25] [ 2] [01] +16:00:23 [ 28] [ 9] [D00002000] +16:00:23 [ 32] [ 6] [180893] +16:00:23 [ 35] [ 37] [6688990106140708=43121231070812200000] +16:00:23 [ 37] [ 12] [507908270220] +16:00:23 [ 41] [ 8] [0321LNTV] +16:00:23 [ 42] [ 15] [999999 ] +16:00:23 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +16:00:23 [ 49] [ 3] [418] +16:00:23 [ 52] [ 16] [F80C735B84F2F251] +16:00:23 ============================================================================ +16:00:23 + + +waiting on router queue for slot.... +16:00:23 Sending to : <0> +16:00:23 ============================================================================ +16:00:23 ============================================================================ +16:00:23 Slot Id : <100> +16:00:23 Transaction Type : RESPONSE +16:00:23 Received From : +16:00:23 ============================================================================ +16:00:23 FNo. Len. Field Value +16:00:23 ============================================================================ +16:00:23 [ 1] [ 4] [0210] +16:00:23 [ 2] [ 16] [6688990106140708] +16:00:23 [ 3] [ 6] [010000] +16:00:23 [ 4] [ 12] [000010000000] +16:00:23 [ 7] [ 10] [0320085929] +16:00:23 [ 11] [ 6] [270220] +16:00:23 [ 12] [ 6] [155929] +16:00:23 [ 13] [ 4] [0320] +16:00:23 [ 15] [ 4] [0320] +16:00:23 [ 18] [ 4] [6011] +16:00:23 [ 19] [ 3] [418] +16:00:23 [ 22] [ 3] [021] +16:00:23 [ 32] [ 6] [180893] +16:00:23 [ 35] [ 37] [6688990106140708=43121231070812200000] +16:00:23 [ 37] [ 12] [507908270220] +16:00:23 [ 39] [ 2] [14] +16:00:23 [ 41] [ 8] [0321LNTV] +16:00:23 [ 49] [ 3] [418] +16:00:23 ============================================================================ +16:00:23 Sending to : +16:00:23 ============================================================================ +16:00:23 + + +waiting on router queue for slot.... +16:00:24 ============================================================================ +16:00:24 Slot Id : <65> +16:00:24 Transaction Type : RESPONSE +16:00:24 Received From : +16:00:24 ============================================================================ +16:00:24 FNo. Len. Field Value +16:00:24 ============================================================================ +16:00:24 [ 1] [ 4] [0210] +16:00:24 [ 2] [ 16] [1808931800005819] +16:00:24 [ 3] [ 6] [011000] +16:00:24 [ 4] [ 12] [000050000000] +16:00:24 [ 6] [ 12] [000050000000] +16:00:24 [ 7] [ 10] [0320160014] +16:00:24 [ 11] [ 6] [791494] +16:00:24 [ 12] [ 6] [160014] +16:00:24 [ 13] [ 4] [0320] +16:00:24 [ 18] [ 4] [6011] +16:00:24 [ 19] [ 3] [418] +16:00:24 [ 22] [ 3] [021] +16:00:24 [ 32] [ 6] [621354] +16:00:24 [ 35] [ 27] [1808931800005819=1803500314] +16:00:24 [ 37] [ 12] [507904635793] +16:00:24 [ 38] [ 6] [791494] +16:00:24 [ 39] [ 2] [00] +16:00:24 [ 41] [ 8] [17000800] +16:00:24 [ 49] [ 3] [418] +16:00:24 [ 52] [ 16] [98BE394402CFEE30] +16:00:24 [ 54] [ 20] [1001418C000041458900] +16:00:24 ============================================================================ +16:00:24 Sending to : +16:00:24 ============================================================================ +16:00:24 + + +waiting on router queue for slot.... +16:00:24 ============================================================================ +16:00:24 Slot Id : <100> +16:00:24 Transaction Type : RESPONSE +16:00:24 Received From : +16:00:24 ============================================================================ +16:00:24 FNo. Len. Field Value +16:00:24 ============================================================================ +16:00:24 [ 1] [ 4] [0210] +16:00:24 [ 2] [ 16] [6688990106140708] +16:00:24 [ 3] [ 6] [010000] +16:00:24 [ 4] [ 12] [000010000000] +16:00:24 [ 7] [ 10] [0320085929] +16:00:24 [ 11] [ 6] [270220] +16:00:24 [ 12] [ 6] [155929] +16:00:24 [ 13] [ 4] [0320] +16:00:24 [ 15] [ 4] [0320] +16:00:24 [ 18] [ 4] [6011] +16:00:24 [ 19] [ 3] [418] +16:00:24 [ 22] [ 3] [021] +16:00:24 [ 32] [ 6] [180893] +16:00:24 [ 35] [ 37] [6688990106140708=43121231070812200000] +16:00:24 [ 37] [ 12] [507908270220] +16:00:24 [ 39] [ 2] [14] +16:00:24 [ 41] [ 8] [0321LNTV] +16:00:24 [ 49] [ 3] [418] +16:00:24 ============================================================================ +16:00:24 Calculate Source COMM Id = 2 +16:00:24 ============================================================================ +16:00:24 + + +waiting on router queue for slot.... +16:00:25 ============================================================================ +16:00:25 Slot Id : <65> +16:00:25 Transaction Type : RESPONSE +16:00:25 Received From : +16:00:25 ============================================================================ +16:00:25 FNo. Len. Field Value +16:00:25 ============================================================================ +16:00:25 [ 1] [ 4] [0210] +16:00:25 [ 2] [ 16] [1808931800005819] +16:00:25 [ 3] [ 6] [011000] +16:00:25 [ 4] [ 12] [000050000000] +16:00:25 [ 6] [ 12] [000050000000] +16:00:25 [ 7] [ 10] [0320160014] +16:00:25 [ 11] [ 6] [791494] +16:00:25 [ 12] [ 6] [160014] +16:00:25 [ 13] [ 4] [0320] +16:00:25 [ 18] [ 4] [6011] +16:00:25 [ 19] [ 3] [418] +16:00:25 [ 22] [ 3] [021] +16:00:25 [ 32] [ 6] [621354] +16:00:25 [ 35] [ 27] [1808931800005819=1803500314] +16:00:25 [ 37] [ 12] [507904635793] +16:00:25 [ 38] [ 6] [791494] +16:00:25 [ 39] [ 2] [00] +16:00:25 [ 41] [ 8] [17000800] +16:00:25 [ 49] [ 3] [418] +16:00:25 [ 52] [ 16] [98BE394402CFEE30] +16:00:25 [ 54] [ 20] [1001418C000041458900] +16:00:25 ============================================================================ +16:00:25 Calculate Source COMM Id = 0 +16:00:25 ============================================================================ +16:00:25 + + +waiting on router queue for slot.... +16:00:37 ============================================================================ +16:00:37 Slot Id : <72> +16:00:37 Transaction Type : REQUEST +16:00:37 Received From : +16:00:37 ============================================================================ +16:00:37 FNo. Len. Field Value +16:00:37 ============================================================================ +16:00:37 [ 1] [ 4] [0800] +16:00:37 [ 7] [ 10] [0320085944] +16:00:37 [ 11] [ 6] [157143] +16:00:37 [ 70] [ 3] [301] +16:00:37 ============================================================================ +16:00:37 + + +waiting on router queue for slot.... +16:00:37 Sending to : +16:00:37 ============================================================================ +16:00:37 ============================================================================ +16:00:37 Slot Id : <72> +16:00:37 Transaction Type : RESPONSE +16:00:37 Received From : +16:00:37 ============================================================================ +16:00:37 FNo. Len. Field Value +16:00:37 ============================================================================ +16:00:37 [ 1] [ 4] [0810] +16:00:37 [ 7] [ 10] [0320085944] +16:00:37 [ 11] [ 6] [157143] +16:00:37 [ 39] [ 2] [00] +16:00:37 [ 70] [ 3] [301] +16:00:37 ============================================================================ +16:00:37 Calculate Source COMM Id = 2 +16:00:37 ============================================================================ +16:00:37 + + +waiting on router queue for slot.... +16:00:37 ============================================================================ +16:00:37 Slot Id : <76> +16:00:37 Transaction Type : REQUEST +16:00:37 Received From : +16:00:37 ============================================================================ +16:00:37 FNo. Len. Field Value +16:00:37 ============================================================================ +16:00:37 [ 1] [ 4] [0800] +16:00:37 [ 2] [ 5] [02531] +16:00:37 [ 3] [ 6] [579168] +16:00:37 [ 7] [ 10] [0320090037] +16:00:37 [ 11] [ 6] [807341] +16:00:37 [ 15] [ 10] [0320090037] +16:00:37 [ 37] [ 11] [57916807341] +16:00:37 [ 70] [ 3] [001] +16:00:37 ============================================================================ +16:00:37 + + +waiting on router queue for slot.... +16:00:37 ============================================================================ +16:00:37 Slot Id : <76> +16:00:37 Transaction Type : RESPONSE +16:00:37 Received From : +16:00:37 ============================================================================ +16:00:37 FNo. Len. Field Value +16:00:37 ============================================================================ +16:00:37 [ 1] [ 4] [0810] +16:00:37 [ 7] [ 10] [0320090037] +16:00:37 [ 11] [ 6] [807341] +16:00:37 [ 15] [ 4] [0320] +16:00:37 [ 37] [ 12] [57916807341] +16:00:37 [ 39] [ 2] [00] +16:00:37 [ 70] [ 3] [001] +16:00:37 ============================================================================ +16:00:37 Sending to : +16:00:37 ============================================================================ +16:00:37 + + +waiting on router queue for slot.... +16:00:40 ============================================================================ +16:00:40 Slot Id : <106> +16:00:40 Transaction Type : REQUEST +16:00:40 Received From : +16:00:40 ============================================================================ +16:00:40 FNo. Len. Field Value +16:00:40 ============================================================================ +16:00:40 [ 1] [ 4] [0200] +16:00:40 [ 2] [ 16] [6688990602678904] +16:00:40 [ 3] [ 6] [010000] +16:00:40 [ 4] [ 12] [000050000000] +16:00:40 [ 7] [ 10] [0320160035] +16:00:40 [ 11] [ 6] [791586] +16:00:40 [ 12] [ 6] [160035] +16:00:40 [ 13] [ 4] [0320] +16:00:40 [ 15] [ 4] [0320] +16:00:40 [ 18] [ 4] [6011] +16:00:40 [ 22] [ 3] [900] +16:00:40 [ 25] [ 2] [02] +16:00:40 [ 28] [ 9] [D00002000] +16:00:40 [ 32] [ 6] [621354] +16:00:40 [ 35] [ 37] [6688990602678904=43100061890454000000] +16:00:40 [ 37] [ 12] [507904154036] +16:00:40 [ 41] [ 8] [20001000] +16:00:40 [ 42] [ 15] [NATIVE ] +16:00:40 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +16:00:40 [ 49] [ 3] [418] +16:00:40 [ 52] [ 16] [E54FBD4011441425] +16:00:40 ============================================================================ +16:00:40 + + +waiting on router queue for slot.... +16:00:40 Sending to : +16:00:40 ============================================================================ +16:00:40 Sending to : +16:00:40 ============================================================================ +16:00:41 ============================================================================ +16:00:41 Slot Id : <106> +16:00:41 Transaction Type : REQUEST +16:00:41 Received From : +16:00:41 ============================================================================ +16:00:41 FNo. Len. Field Value +16:00:41 ============================================================================ +16:00:41 [ 1] [ 4] [0200] +16:00:41 [ 2] [ 16] [6688990602678904] +16:00:41 [ 3] [ 6] [010000] +16:00:41 [ 4] [ 12] [000050000000] +16:00:41 [ 7] [ 10] [0320160035] +16:00:41 [ 11] [ 6] [791586] +16:00:41 [ 12] [ 6] [160035] +16:00:41 [ 13] [ 4] [0320] +16:00:41 [ 15] [ 4] [0320] +16:00:41 [ 18] [ 4] [6011] +16:00:41 [ 22] [ 3] [900] +16:00:41 [ 25] [ 2] [02] +16:00:41 [ 28] [ 9] [D00002000] +16:00:41 [ 32] [ 6] [621354] +16:00:41 [ 35] [ 37] [6688990602678904=43100061890454000000] +16:00:41 [ 37] [ 12] [507904154036] +16:00:41 [ 41] [ 8] [20001000] +16:00:41 [ 42] [ 15] [NATIVE ] +16:00:41 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +16:00:41 [ 49] [ 3] [418] +16:00:41 [ 52] [ 16] [E54FBD4011441425] +16:00:41 ============================================================================ +16:00:41 + + +waiting on router queue for slot.... +16:00:41 Sending to : +16:00:41 ============================================================================ +16:00:41 ============================================================================ +16:00:41 Slot Id : <106> +16:00:41 Transaction Type : REQUEST +16:00:41 Received From : +16:00:41 ============================================================================ +16:00:41 FNo. Len. Field Value +16:00:41 ============================================================================ +16:00:41 [ 1] [ 4] [0200] +16:00:41 [ 2] [ 16] [6688990602678904] +16:00:41 [ 3] [ 6] [010000] +16:00:41 [ 4] [ 12] [000050000000] +16:00:41 [ 7] [ 10] [0320160035] +16:00:41 [ 11] [ 6] [791586] +16:00:41 [ 12] [ 6] [160035] +16:00:41 [ 13] [ 4] [0320] +16:00:41 [ 15] [ 4] [0320] +16:00:41 [ 18] [ 4] [6011] +16:00:41 [ 22] [ 3] [900] +16:00:41 [ 25] [ 2] [02] +16:00:41 [ 28] [ 9] [D00002000] +16:00:41 [ 32] [ 6] [621354] +16:00:41 [ 35] [ 37] [6688990602678904=43100061890454000000] +16:00:41 [ 37] [ 12] [507904154036] +16:00:41 [ 41] [ 8] [20001000] +16:00:41 [ 42] [ 15] [NATIVE ] +16:00:41 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +16:00:41 [ 49] [ 3] [418] +16:00:41 [ 52] [ 16] [553F93B8D7BF9BDF] +16:00:41 ============================================================================ +16:00:41 + + +waiting on router queue for slot.... +16:00:41 Sending to : <4> +16:00:41 ============================================================================ +16:00:41 ============================================================================ +16:00:41 Slot Id : <90> +16:00:41 Transaction Type : REQUEST +16:00:41 Received From : +16:00:41 ============================================================================ +16:00:41 FNo. Len. Field Value +16:00:41 ============================================================================ +16:00:41 [ 1] [ 4] [0200] +16:00:41 [ 2] [ 16] [6213543000046614] +16:00:41 [ 3] [ 6] [011000] +16:00:41 [ 4] [ 12] [000100000000] +16:00:41 [ 7] [ 10] [0320160101] +16:00:41 [ 11] [ 6] [208354] +16:00:41 [ 12] [ 6] [160535] +16:00:41 [ 13] [ 4] [0320] +16:00:41 [ 14] [ 4] [4912] +16:00:41 [ 15] [ 4] [0320] +16:00:41 [ 18] [ 4] [6011] +16:00:41 [ 19] [ 3] [418] +16:00:41 [ 22] [ 3] [021] +16:00:41 [ 25] [ 2] [01] +16:00:41 [ 28] [ 9] [D00002000] +16:00:41 [ 32] [ 6] [198901] +16:00:41 [ 35] [ 32] [6213543000046614=491212014661063] +16:00:41 [ 37] [ 12] [507916208354] +16:00:41 [ 41] [ 8] [00002206] +16:00:41 [ 42] [ 15] [000000041002206] +16:00:41 [ 43] [ 40] [150 HOSPITAL VN ] +16:00:41 [ 49] [ 3] [418] +16:00:41 [ 52] [ 16] [9FCF85ED90A5DB32] +16:00:41 ============================================================================ +16:00:41 + + +waiting on router queue for slot.... +16:00:41 Sending to : +16:00:41 ============================================================================ +16:00:41 Sending to : +16:00:41 ============================================================================ +16:00:41 ============================================================================ +16:00:41 Slot Id : <90> +16:00:41 Transaction Type : REQUEST +16:00:41 Received From : +16:00:41 ============================================================================ +16:00:41 FNo. Len. Field Value +16:00:41 ============================================================================ +16:00:41 [ 1] [ 4] [0200] +16:00:41 [ 2] [ 16] [6213543000046614] +16:00:41 [ 3] [ 6] [011000] +16:00:41 [ 4] [ 12] [000100000000] +16:00:41 [ 7] [ 10] [0320160101] +16:00:41 [ 11] [ 6] [208354] +16:00:41 [ 12] [ 6] [160535] +16:00:41 [ 13] [ 4] [0320] +16:00:41 [ 14] [ 4] [4912] +16:00:41 [ 15] [ 4] [0320] +16:00:41 [ 18] [ 4] [6011] +16:00:41 [ 19] [ 3] [418] +16:00:41 [ 22] [ 3] [021] +16:00:41 [ 25] [ 2] [01] +16:00:41 [ 28] [ 9] [D00002000] +16:00:41 [ 32] [ 6] [198901] +16:00:41 [ 35] [ 32] [6213543000046614=491212014661063] +16:00:41 [ 37] [ 12] [507916208354] +16:00:41 [ 41] [ 8] [00002206] +16:00:41 [ 42] [ 15] [000000041002206] +16:00:41 [ 43] [ 40] [150 HOSPITAL VN ] +16:00:41 [ 49] [ 3] [418] +16:00:41 [ 52] [ 16] [9FCF85ED90A5DB32] +16:00:41 ============================================================================ +16:00:41 + + +waiting on router queue for slot.... +16:00:41 Sending to : +16:00:41 ============================================================================ +16:00:41 ============================================================================ +16:00:41 Slot Id : <90> +16:00:41 Transaction Type : REQUEST +16:00:41 Received From : +16:00:41 ============================================================================ +16:00:41 FNo. Len. Field Value +16:00:41 ============================================================================ +16:00:41 [ 1] [ 4] [0200] +16:00:41 [ 2] [ 16] [6213543000046614] +16:00:41 [ 3] [ 6] [011000] +16:00:41 [ 4] [ 12] [000100000000] +16:00:41 [ 7] [ 10] [0320160101] +16:00:41 [ 11] [ 6] [208354] +16:00:41 [ 12] [ 6] [160535] +16:00:41 [ 13] [ 4] [0320] +16:00:41 [ 14] [ 4] [4912] +16:00:41 [ 15] [ 4] [0320] +16:00:41 [ 18] [ 4] [6011] +16:00:41 [ 19] [ 3] [418] +16:00:41 [ 22] [ 3] [021] +16:00:41 [ 25] [ 2] [01] +16:00:41 [ 28] [ 9] [D00002000] +16:00:41 [ 32] [ 6] [198901] +16:00:41 [ 35] [ 32] [6213543000046614=491212014661063] +16:00:41 [ 37] [ 12] [507916208354] +16:00:41 [ 41] [ 8] [00002206] +16:00:41 [ 42] [ 15] [000000041002206] +16:00:41 [ 43] [ 40] [150 HOSPITAL VN ] +16:00:41 [ 49] [ 3] [418] +16:00:41 [ 52] [ 16] [A552914D2C8ACAF6] +16:00:41 ============================================================================ +16:00:41 + + +waiting on router queue for slot.... +16:00:41 Sending to : <0> +16:00:41 ============================================================================ +16:00:41 ============================================================================ +16:00:41 Slot Id : <90> +16:00:41 Transaction Type : RESPONSE +16:00:41 Received From : +16:00:41 ============================================================================ +16:00:41 FNo. Len. Field Value +16:00:41 ============================================================================ +16:00:41 [ 1] [ 4] [0210] +16:00:41 [ 2] [ 16] [6213543000046614] +16:00:41 [ 3] [ 6] [011000] +16:00:41 [ 4] [ 12] [000100000000] +16:00:41 [ 7] [ 10] [0320160101] +16:00:41 [ 11] [ 6] [208354] +16:00:41 [ 12] [ 6] [160535] +16:00:41 [ 13] [ 4] [0320] +16:00:41 [ 15] [ 4] [0320] +16:00:41 [ 18] [ 4] [6011] +16:00:41 [ 19] [ 3] [418] +16:00:41 [ 22] [ 3] [021] +16:00:41 [ 32] [ 6] [198901] +16:00:41 [ 35] [ 32] [6213543000046614=491212014661063] +16:00:41 [ 37] [ 12] [507916208354] +16:00:41 [ 38] [ 6] [160037] +16:00:41 [ 39] [ 2] [55] +16:00:41 [ 41] [ 8] [00002206] +16:00:41 [ 49] [ 3] [418] +16:00:41 ============================================================================ +16:00:41 Sending to : +16:00:41 ============================================================================ +16:00:41 + + +waiting on router queue for slot.... +16:00:42 ============================================================================ +16:00:42 Slot Id : <106> +16:00:42 Transaction Type : RESPONSE +16:00:42 Received From : +16:00:42 ============================================================================ +16:00:42 FNo. Len. Field Value +16:00:42 ============================================================================ +16:00:42 [ 1] [ 4] [0210] +16:00:42 [ 2] [ 16] [6688990602678904] +16:00:42 [ 3] [ 6] [010000] +16:00:42 [ 4] [ 12] [000050000000] +16:00:42 [ 11] [ 6] [791586] +16:00:42 [ 12] [ 6] [160035] +16:00:42 [ 15] [ 4] [0320] +16:00:42 [ 18] [ 4] [6011] +16:00:42 [ 32] [ 6] [621354] +16:00:42 [ 35] [ 37] [6688990602678904=43100061890454000000] +16:00:42 [ 37] [ 12] [507904154036] +16:00:42 [ 38] [ 6] [107938] +16:00:42 [ 39] [ 2] [00] +16:00:42 [ 41] [ 8] [20001000] +16:00:42 [ 49] [ 3] [418] +16:00:42 [ 54] [ 20] [0002418C000124770650] +16:00:42 ============================================================================ +16:00:42 Sending to : +16:00:42 ============================================================================ +16:00:42 + + +waiting on router queue for slot.... +16:00:42 ============================================================================ +16:00:42 Slot Id : <90> +16:00:42 Transaction Type : RESPONSE +16:00:42 Received From : +16:00:42 ============================================================================ +16:00:42 FNo. Len. Field Value +16:00:42 ============================================================================ +16:00:42 [ 1] [ 4] [0210] +16:00:42 [ 2] [ 16] [6213543000046614] +16:00:42 [ 3] [ 6] [011000] +16:00:42 [ 4] [ 12] [000100000000] +16:00:42 [ 7] [ 10] [0320160101] +16:00:42 [ 11] [ 6] [208354] +16:00:42 [ 12] [ 6] [160535] +16:00:42 [ 13] [ 4] [0320] +16:00:42 [ 15] [ 4] [0320] +16:00:42 [ 18] [ 4] [6011] +16:00:42 [ 19] [ 3] [418] +16:00:42 [ 22] [ 3] [021] +16:00:42 [ 32] [ 6] [198901] +16:00:42 [ 35] [ 32] [6213543000046614=491212014661063] +16:00:42 [ 37] [ 12] [507916208354] +16:00:42 [ 38] [ 6] [160037] +16:00:42 [ 39] [ 2] [55] +16:00:42 [ 41] [ 8] [00002206] +16:00:42 [ 49] [ 3] [418] +16:00:42 ============================================================================ +16:00:42 Calculate Source COMM Id = 5 +16:00:42 ============================================================================ +16:00:42 + + +waiting on router queue for slot.... +16:00:44 ============================================================================ +16:00:44 Slot Id : <106> +16:00:44 Transaction Type : RESPONSE +16:00:44 Received From : +16:00:44 ============================================================================ +16:00:44 FNo. Len. Field Value +16:00:44 ============================================================================ +16:00:44 [ 1] [ 4] [0210] +16:00:44 [ 2] [ 16] [6688990602678904] +16:00:44 [ 3] [ 6] [010000] +16:00:44 [ 4] [ 12] [000050000000] +16:00:44 [ 11] [ 6] [791586] +16:00:44 [ 12] [ 6] [160035] +16:00:44 [ 15] [ 4] [0320] +16:00:44 [ 18] [ 4] [6011] +16:00:44 [ 32] [ 6] [621354] +16:00:44 [ 35] [ 37] [6688990602678904=43100061890454000000] +16:00:44 [ 37] [ 12] [507904154036] +16:00:44 [ 38] [ 6] [107938] +16:00:44 [ 39] [ 2] [00] +16:00:44 [ 41] [ 8] [20001000] +16:00:44 [ 49] [ 3] [418] +16:00:44 [ 54] [ 20] [0002418C000124770650] +16:00:44 ============================================================================ +16:00:44 Calculate Source COMM Id = 0 +16:00:44 ============================================================================ +16:00:44 + + +waiting on router queue for slot.... +16:00:47 ============================================================================ +16:00:47 Slot Id : <114> +16:00:47 Transaction Type : REQUEST +16:00:47 Received From : +16:00:47 ============================================================================ +16:00:47 FNo. Len. Field Value +16:00:47 ============================================================================ +16:00:47 [ 1] [ 4] [0800] +16:00:47 [ 7] [ 10] [0320231236] +16:00:47 [ 11] [ 6] [161236] +16:00:47 [ 37] [ 12] [57916161236] +16:00:47 [ 70] [ 3] [301] +16:00:47 ============================================================================ +16:00:47 + + +waiting on router queue for slot.... +16:00:47 Sending to : +16:00:47 ============================================================================ +16:00:47 ============================================================================ +16:00:47 Slot Id : <114> +16:00:47 Transaction Type : RESPONSE +16:00:47 Received From : +16:00:47 ============================================================================ +16:00:47 FNo. Len. Field Value +16:00:47 ============================================================================ +16:00:47 [ 1] [ 4] [0810] +16:00:47 [ 7] [ 10] [0320231236] +16:00:47 [ 11] [ 6] [161236] +16:00:47 [ 37] [ 12] [579161612360] +16:00:47 [ 39] [ 2] [00] +16:00:47 [ 70] [ 3] [810] +16:00:47 ============================================================================ +16:00:47 Calculate Source COMM Id = 6 +16:00:47 ============================================================================ +16:00:47 + + +waiting on router queue for slot.... +16:00:47 ============================================================================ +16:00:47 Slot Id : <66> +16:00:47 Transaction Type : REQUEST +16:00:47 Received From : +16:00:47 ============================================================================ +16:00:47 FNo. Len. Field Value +16:00:47 ============================================================================ +16:00:47 [ 1] [ 4] [0800] +16:00:47 [ 7] [ 10] [0320085954] +16:00:47 [ 11] [ 6] [157144] +16:00:47 [ 70] [ 3] [301] +16:00:47 ============================================================================ +16:00:47 + + +waiting on router queue for slot.... +16:00:47 Sending to : +16:00:47 ============================================================================ +16:00:47 ============================================================================ +16:00:47 Slot Id : <66> +16:00:47 Transaction Type : RESPONSE +16:00:47 Received From : +16:00:47 ============================================================================ +16:00:47 FNo. Len. Field Value +16:00:47 ============================================================================ +16:00:47 [ 1] [ 4] [0810] +16:00:47 [ 7] [ 10] [0320085954] +16:00:47 [ 11] [ 6] [157144] +16:00:47 [ 39] [ 2] [00] +16:00:47 [ 70] [ 3] [301] +16:00:47 ============================================================================ +16:00:47 Calculate Source COMM Id = 2 +16:00:47 ============================================================================ +16:00:47 + + +waiting on router queue for slot.... +16:00:58 ============================================================================ +16:00:58 Slot Id : <118> +16:00:58 Transaction Type : REQUEST +16:00:58 Received From : +16:00:58 ============================================================================ +16:00:58 FNo. Len. Field Value +16:00:58 ============================================================================ +16:00:58 [ 1] [ 4] [0800] +16:00:58 [ 7] [ 10] [0320090006] +16:00:58 [ 11] [ 6] [157145] +16:00:58 [ 70] [ 3] [301] +16:00:58 ============================================================================ +16:00:58 + + +waiting on router queue for slot.... +16:00:58 Sending to : +16:00:58 ============================================================================ +16:00:58 ============================================================================ +16:00:58 Slot Id : <118> +16:00:58 Transaction Type : RESPONSE +16:00:58 Received From : +16:00:58 ============================================================================ +16:00:58 FNo. Len. Field Value +16:00:58 ============================================================================ +16:00:58 [ 1] [ 4] [0810] +16:00:58 [ 7] [ 10] [0320090006] +16:00:58 [ 11] [ 6] [157145] +16:00:58 [ 39] [ 2] [00] +16:00:58 [ 70] [ 3] [301] +16:00:58 ============================================================================ +16:00:58 Calculate Source COMM Id = 2 +16:00:58 ============================================================================ +16:00:58 + + +waiting on router queue for slot.... +16:01:05 ============================================================================ +16:01:05 Slot Id : <83> +16:01:05 Transaction Type : REQUEST +16:01:05 Received From : +16:01:05 ============================================================================ +16:01:05 FNo. Len. Field Value +16:01:05 ============================================================================ +16:01:05 [ 1] [ 4] [0200] +16:01:05 [ 2] [ 16] [1808930700014699] +16:01:05 [ 3] [ 6] [010000] +16:01:05 [ 4] [ 12] [000020000000] +16:01:05 [ 7] [ 10] [0320155855] +16:01:05 [ 11] [ 6] [950880] +16:01:05 [ 12] [ 6] [155855] +16:01:05 [ 13] [ 4] [0320] +16:01:05 [ 15] [ 4] [0320] +16:01:05 [ 18] [ 4] [6011] +16:01:05 [ 19] [ 3] [418] +16:01:05 [ 22] [ 3] [021] +16:01:05 [ 25] [ 2] [01] +16:01:05 [ 28] [ 9] [D00002000] +16:01:05 [ 32] [ 6] [668899] +16:01:05 [ 35] [ 27] [1808930700014699=1803500830] +16:01:05 [ 37] [ 12] [507902280413] +16:01:05 [ 41] [ 8] [03009005] +16:01:05 [ 42] [ 15] [APT ] +16:01:05 [ 43] [ 40] [ MEUANGKHOUN UNIT MEUANGKH] +16:01:05 [ 49] [ 3] [418] +16:01:05 [ 52] [ 16] [78F4F93A1681103E] +16:01:05 ============================================================================ +16:01:05 + + +waiting on router queue for slot.... +16:01:05 Sending to : +16:01:05 ============================================================================ +16:01:05 Sending to : +16:01:05 ============================================================================ +16:01:06 ============================================================================ +16:01:06 Slot Id : <83> +16:01:06 Transaction Type : REQUEST +16:01:06 Received From : +16:01:06 ============================================================================ +16:01:06 FNo. Len. Field Value +16:01:06 ============================================================================ +16:01:06 [ 1] [ 4] [0200] +16:01:06 [ 2] [ 16] [1808930700014699] +16:01:06 [ 3] [ 6] [010000] +16:01:06 [ 4] [ 12] [000020000000] +16:01:06 [ 7] [ 10] [0320155855] +16:01:06 [ 11] [ 6] [950880] +16:01:06 [ 12] [ 6] [155855] +16:01:06 [ 13] [ 4] [0320] +16:01:06 [ 15] [ 4] [0320] +16:01:06 [ 18] [ 4] [6011] +16:01:06 [ 19] [ 3] [418] +16:01:06 [ 22] [ 3] [021] +16:01:06 [ 25] [ 2] [01] +16:01:06 [ 28] [ 9] [D00002000] +16:01:06 [ 32] [ 6] [668899] +16:01:06 [ 35] [ 27] [1808930700014699=1803500830] +16:01:06 [ 37] [ 12] [507902280413] +16:01:06 [ 41] [ 8] [03009005] +16:01:06 [ 42] [ 15] [APT ] +16:01:06 [ 43] [ 40] [ MEUANGKHOUN UNIT MEUANGKH] +16:01:06 [ 49] [ 3] [418] +16:01:06 [ 52] [ 16] [78F4F93A1681103E] +16:01:06 ============================================================================ +16:01:06 + + +waiting on router queue for slot.... +16:01:06 Sending to : +16:01:06 ============================================================================ +16:01:06 ============================================================================ +16:01:06 Slot Id : <83> +16:01:06 Transaction Type : REQUEST +16:01:06 Received From : +16:01:06 ============================================================================ +16:01:06 FNo. Len. Field Value +16:01:06 ============================================================================ +16:01:06 [ 1] [ 4] [0200] +16:01:06 [ 2] [ 16] [1808930700014699] +16:01:06 [ 3] [ 6] [010000] +16:01:06 [ 4] [ 12] [000020000000] +16:01:06 [ 7] [ 10] [0320155855] +16:01:06 [ 11] [ 6] [950880] +16:01:06 [ 12] [ 6] [155855] +16:01:06 [ 13] [ 4] [0320] +16:01:06 [ 15] [ 4] [0320] +16:01:06 [ 18] [ 4] [6011] +16:01:06 [ 19] [ 3] [418] +16:01:06 [ 22] [ 3] [021] +16:01:06 [ 25] [ 2] [01] +16:01:06 [ 28] [ 9] [D00002000] +16:01:06 [ 32] [ 6] [668899] +16:01:06 [ 35] [ 27] [1808930700014699=1803500830] +16:01:06 [ 37] [ 12] [507902280413] +16:01:06 [ 41] [ 8] [03009005] +16:01:06 [ 42] [ 15] [APT ] +16:01:06 [ 43] [ 40] [ MEUANGKHOUN UNIT MEUANGKH] +16:01:06 [ 49] [ 3] [418] +16:01:06 [ 52] [ 16] [537F033C117FC4C5] +16:01:06 ============================================================================ +16:01:06 + + +waiting on router queue for slot.... +16:01:06 Sending to : <2> +16:01:06 ============================================================================ +16:01:11 ============================================================================ +16:01:11 Slot Id : <83> +16:01:11 Transaction Type : RESPONSE +16:01:11 Received From : +16:01:11 ============================================================================ +16:01:11 FNo. Len. Field Value +16:01:11 ============================================================================ +16:01:11 [ 1] [ 4] [0210] +16:01:11 [ 2] [ 16] [1808930700014699] +16:01:11 [ 3] [ 6] [010000] +16:01:11 [ 4] [ 12] [000020000000] +16:01:11 [ 6] [ 12] [000020000000] +16:01:11 [ 7] [ 10] [0320155855] +16:01:11 [ 11] [ 6] [950880] +16:01:11 [ 12] [ 6] [155855] +16:01:11 [ 13] [ 4] [0320] +16:01:11 [ 18] [ 4] [6011] +16:01:11 [ 19] [ 3] [418] +16:01:11 [ 22] [ 3] [021] +16:01:11 [ 32] [ 6] [668899] +16:01:11 [ 35] [ 27] [1808930700014699=1803500830] +16:01:11 [ 37] [ 12] [507902280413] +16:01:11 [ 38] [ 6] [950880] +16:01:11 [ 39] [ 2] [00] +16:01:11 [ 41] [ 8] [03009005] +16:01:11 [ 49] [ 3] [418] +16:01:11 [ 52] [ 16] [537F033C117FC4C5] +16:01:11 [ 54] [ 20] [1001418C000113198800] +16:01:11 ============================================================================ +16:01:11 Sending to : +16:01:11 ============================================================================ +16:01:11 + + +waiting on router queue for slot.... +16:01:12 ============================================================================ +16:01:12 Slot Id : <83> +16:01:12 Transaction Type : RESPONSE +16:01:12 Received From : +16:01:12 ============================================================================ +16:01:12 FNo. Len. Field Value +16:01:12 ============================================================================ +16:01:12 [ 1] [ 4] [0210] +16:01:12 [ 2] [ 16] [1808930700014699] +16:01:12 [ 3] [ 6] [010000] +16:01:12 [ 4] [ 12] [000020000000] +16:01:12 [ 6] [ 12] [000020000000] +16:01:12 [ 7] [ 10] [0320155855] +16:01:12 [ 11] [ 6] [950880] +16:01:12 [ 12] [ 6] [155855] +16:01:12 [ 13] [ 4] [0320] +16:01:12 [ 18] [ 4] [6011] +16:01:12 [ 19] [ 3] [418] +16:01:12 [ 22] [ 3] [021] +16:01:12 [ 32] [ 6] [668899] +16:01:12 [ 35] [ 27] [1808930700014699=1803500830] +16:01:12 [ 37] [ 12] [507902280413] +16:01:12 [ 38] [ 6] [950880] +16:01:12 [ 39] [ 2] [00] +16:01:12 [ 41] [ 8] [03009005] +16:01:12 [ 49] [ 3] [418] +16:01:12 [ 52] [ 16] [537F033C117FC4C5] +16:01:12 [ 54] [ 20] [1001418C000113198800] +16:01:12 ============================================================================ +16:01:12 Calculate Source COMM Id = 4 +16:01:12 ============================================================================ +16:01:12 + + +waiting on router queue for slot.... +16:01:16 ============================================================================ +16:01:16 Slot Id : <107> +16:01:16 Transaction Type : REQUEST +16:01:16 Received From : +16:01:16 ============================================================================ +16:01:16 FNo. Len. Field Value +16:01:16 ============================================================================ +16:01:16 [ 1] [ 4] [0200] +16:01:16 [ 2] [ 16] [6213545000422190] +16:01:16 [ 3] [ 6] [300000] +16:01:16 [ 4] [ 12] [000000000000] +16:01:16 [ 7] [ 10] [0320155906] +16:01:16 [ 11] [ 6] [950888] +16:01:16 [ 12] [ 6] [155906] +16:01:16 [ 13] [ 4] [0320] +16:01:16 [ 15] [ 4] [0320] +16:01:16 [ 18] [ 4] [6011] +16:01:16 [ 19] [ 3] [418] +16:01:16 [ 22] [ 3] [021] +16:01:16 [ 25] [ 2] [01] +16:01:16 [ 28] [ 9] [D00000000] +16:01:16 [ 32] [ 6] [668899] +16:01:16 [ 35] [ 32] [6213545000422190=491212012219426] +16:01:16 [ 37] [ 12] [507902114221] +16:01:16 [ 41] [ 8] [03001009] +16:01:16 [ 42] [ 15] [APT ] +16:01:16 [ 43] [ 40] [ THA-NGON XAYTHANY DTHA-] +16:01:16 [ 49] [ 3] [418] +16:01:16 [ 52] [ 16] [383CF4520E5B7EA3] +16:01:16 ============================================================================ +16:01:16 + + +waiting on router queue for slot.... +16:01:16 Sending to : +16:01:16 ============================================================================ +16:01:16 Sending to : +16:01:16 ============================================================================ +16:01:16 ============================================================================ +16:01:16 Slot Id : <107> +16:01:16 Transaction Type : REQUEST +16:01:16 Received From : +16:01:16 ============================================================================ +16:01:16 FNo. Len. Field Value +16:01:16 ============================================================================ +16:01:16 [ 1] [ 4] [0200] +16:01:16 [ 2] [ 16] [6213545000422190] +16:01:16 [ 3] [ 6] [300000] +16:01:16 [ 4] [ 12] [000000000000] +16:01:16 [ 7] [ 10] [0320155906] +16:01:16 [ 11] [ 6] [950888] +16:01:16 [ 12] [ 6] [155906] +16:01:16 [ 13] [ 4] [0320] +16:01:16 [ 15] [ 4] [0320] +16:01:16 [ 18] [ 4] [6011] +16:01:16 [ 19] [ 3] [418] +16:01:16 [ 22] [ 3] [021] +16:01:16 [ 25] [ 2] [01] +16:01:16 [ 28] [ 9] [D00000000] +16:01:16 [ 32] [ 6] [668899] +16:01:16 [ 35] [ 32] [6213545000422190=491212012219426] +16:01:16 [ 37] [ 12] [507902114221] +16:01:16 [ 41] [ 8] [03001009] +16:01:16 [ 42] [ 15] [APT ] +16:01:16 [ 43] [ 40] [ THA-NGON XAYTHANY DTHA-] +16:01:16 [ 49] [ 3] [418] +16:01:16 [ 52] [ 16] [383CF4520E5B7EA3] +16:01:16 ============================================================================ +16:01:16 + + +waiting on router queue for slot.... +16:01:16 Sending to : +16:01:16 ============================================================================ +16:01:16 ============================================================================ +16:01:16 Slot Id : <107> +16:01:16 Transaction Type : REQUEST +16:01:16 Received From : +16:01:16 ============================================================================ +16:01:16 FNo. Len. Field Value +16:01:16 ============================================================================ +16:01:16 [ 1] [ 4] [0200] +16:01:16 [ 2] [ 16] [6213545000422190] +16:01:16 [ 3] [ 6] [300000] +16:01:16 [ 4] [ 12] [000000000000] +16:01:16 [ 7] [ 10] [0320155906] +16:01:16 [ 11] [ 6] [950888] +16:01:16 [ 12] [ 6] [155906] +16:01:16 [ 13] [ 4] [0320] +16:01:16 [ 15] [ 4] [0320] +16:01:16 [ 18] [ 4] [6011] +16:01:16 [ 19] [ 3] [418] +16:01:16 [ 22] [ 3] [021] +16:01:16 [ 25] [ 2] [01] +16:01:16 [ 28] [ 9] [D00000000] +16:01:16 [ 32] [ 6] [668899] +16:01:16 [ 35] [ 32] [6213545000422190=491212012219426] +16:01:16 [ 37] [ 12] [507902114221] +16:01:16 [ 41] [ 8] [03001009] +16:01:16 [ 42] [ 15] [APT ] +16:01:16 [ 43] [ 40] [ THA-NGON XAYTHANY DTHA-] +16:01:16 [ 49] [ 3] [418] +16:01:16 [ 52] [ 16] [5317CE8327AF389F] +16:01:16 ============================================================================ +16:01:16 + + +waiting on router queue for slot.... +16:01:16 Sending to : <0> +16:01:16 ============================================================================ +16:01:16 ============================================================================ +16:01:16 Slot Id : <107> +16:01:16 Transaction Type : RESPONSE +16:01:16 Received From : +16:01:16 ============================================================================ +16:01:16 FNo. Len. Field Value +16:01:16 ============================================================================ +16:01:16 [ 1] [ 4] [0210] +16:01:16 [ 2] [ 16] [6213545000422190] +16:01:16 [ 3] [ 6] [300000] +16:01:16 [ 4] [ 12] [000000000000] +16:01:16 [ 7] [ 10] [0320155906] +16:01:16 [ 11] [ 6] [950888] +16:01:16 [ 12] [ 6] [155906] +16:01:16 [ 13] [ 4] [0320] +16:01:16 [ 15] [ 4] [0320] +16:01:16 [ 18] [ 4] [6011] +16:01:16 [ 19] [ 3] [418] +16:01:16 [ 32] [ 6] [668899] +16:01:16 [ 35] [ 32] [6213545000422190=491212012219426] +16:01:16 [ 37] [ 12] [507902114221] +16:01:16 [ 38] [ 6] [558540] +16:01:16 [ 39] [ 2] [00] +16:01:16 [ 41] [ 8] [03001009] +16:01:16 [ 49] [ 3] [418] +16:01:16 [ 54] [ 40] [0001418C0000904440120002418C000090444012] +16:01:16 ============================================================================ +16:01:16 Sending to : +16:01:16 ============================================================================ +16:01:16 + + +waiting on router queue for slot.... +16:01:17 ============================================================================ +16:01:17 Slot Id : <115> +16:01:17 Transaction Type : REQUEST +16:01:17 Received From : +16:01:17 ============================================================================ +16:01:17 FNo. Len. Field Value +16:01:17 ============================================================================ +16:01:17 [ 1] [ 4] [0200] +16:01:17 [ 2] [ 16] [6688990106048307] +16:01:17 [ 3] [ 6] [010000] +16:01:17 [ 4] [ 12] [000010000000] +16:01:17 [ 7] [ 10] [0320160113] +16:01:17 [ 11] [ 6] [791738] +16:01:17 [ 12] [ 6] [160113] +16:01:17 [ 13] [ 4] [0320] +16:01:17 [ 15] [ 4] [0320] +16:01:17 [ 18] [ 4] [6011] +16:01:17 [ 22] [ 3] [900] +16:01:17 [ 25] [ 2] [02] +16:01:17 [ 28] [ 9] [D00002000] +16:01:17 [ 32] [ 6] [621354] +16:01:17 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:01:17 [ 37] [ 12] [507903499553] +16:01:17 [ 41] [ 8] [06002200] +16:01:17 [ 42] [ 15] [NATIVE ] +16:01:17 [ 43] [ 40] [Beng Market Beng LAO] +16:01:17 [ 49] [ 3] [418] +16:01:17 [ 52] [ 16] [45E374E56B31BCDA] +16:01:17 ============================================================================ +16:01:17 + + +waiting on router queue for slot.... +16:01:17 Sending to : +16:01:17 ============================================================================ +16:01:17 Sending to : +16:01:17 ============================================================================ +16:01:18 ============================================================================ +16:01:18 Slot Id : <115> +16:01:18 Transaction Type : REQUEST +16:01:18 Received From : +16:01:18 ============================================================================ +16:01:18 FNo. Len. Field Value +16:01:18 ============================================================================ +16:01:18 [ 1] [ 4] [0200] +16:01:18 [ 2] [ 16] [6688990106048307] +16:01:18 [ 3] [ 6] [010000] +16:01:18 [ 4] [ 12] [000010000000] +16:01:18 [ 7] [ 10] [0320160113] +16:01:18 [ 11] [ 6] [791738] +16:01:18 [ 12] [ 6] [160113] +16:01:18 [ 13] [ 4] [0320] +16:01:18 [ 15] [ 4] [0320] +16:01:18 [ 18] [ 4] [6011] +16:01:18 [ 22] [ 3] [900] +16:01:18 [ 25] [ 2] [02] +16:01:18 [ 28] [ 9] [D00002000] +16:01:18 [ 32] [ 6] [621354] +16:01:18 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:01:18 [ 37] [ 12] [507903499553] +16:01:18 [ 41] [ 8] [06002200] +16:01:18 [ 42] [ 15] [NATIVE ] +16:01:18 [ 43] [ 40] [Beng Market Beng LAO] +16:01:18 [ 49] [ 3] [418] +16:01:18 [ 52] [ 16] [45E374E56B31BCDA] +16:01:18 ============================================================================ +16:01:18 + + +waiting on router queue for slot.... +16:01:18 Sending to : +16:01:18 ============================================================================ +16:01:18 ============================================================================ +16:01:18 Slot Id : <115> +16:01:18 Transaction Type : REQUEST +16:01:18 Received From : +16:01:18 ============================================================================ +16:01:18 FNo. Len. Field Value +16:01:18 ============================================================================ +16:01:18 [ 1] [ 4] [0200] +16:01:18 [ 2] [ 16] [6688990106048307] +16:01:18 [ 3] [ 6] [010000] +16:01:18 [ 4] [ 12] [000010000000] +16:01:18 [ 7] [ 10] [0320160113] +16:01:18 [ 11] [ 6] [791738] +16:01:18 [ 12] [ 6] [160113] +16:01:18 [ 13] [ 4] [0320] +16:01:18 [ 15] [ 4] [0320] +16:01:18 [ 18] [ 4] [6011] +16:01:18 [ 22] [ 3] [900] +16:01:18 [ 25] [ 2] [02] +16:01:18 [ 28] [ 9] [D00002000] +16:01:18 [ 32] [ 6] [621354] +16:01:18 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:01:18 [ 37] [ 12] [507903499553] +16:01:18 [ 41] [ 8] [06002200] +16:01:18 [ 42] [ 15] [NATIVE ] +16:01:18 [ 43] [ 40] [Beng Market Beng LAO] +16:01:18 [ 49] [ 3] [418] +16:01:18 [ 52] [ 16] [EEE2EF22101D8F18] +16:01:18 ============================================================================ +16:01:18 + + +waiting on router queue for slot.... +16:01:18 Sending to : <4> +16:01:18 ============================================================================ +16:01:18 ============================================================================ +16:01:18 Slot Id : <107> +16:01:18 Transaction Type : RESPONSE +16:01:18 Received From : +16:01:18 ============================================================================ +16:01:18 FNo. Len. Field Value +16:01:18 ============================================================================ +16:01:18 [ 1] [ 4] [0210] +16:01:18 [ 2] [ 16] [6213545000422190] +16:01:18 [ 3] [ 6] [300000] +16:01:18 [ 4] [ 12] [000000000000] +16:01:18 [ 7] [ 10] [0320155906] +16:01:18 [ 11] [ 6] [950888] +16:01:18 [ 12] [ 6] [155906] +16:01:18 [ 13] [ 4] [0320] +16:01:18 [ 15] [ 4] [0320] +16:01:18 [ 18] [ 4] [6011] +16:01:18 [ 19] [ 3] [418] +16:01:18 [ 32] [ 6] [668899] +16:01:18 [ 35] [ 32] [6213545000422190=491212012219426] +16:01:18 [ 37] [ 12] [507902114221] +16:01:18 [ 38] [ 6] [558540] +16:01:18 [ 39] [ 2] [00] +16:01:18 [ 41] [ 8] [03001009] +16:01:18 [ 49] [ 3] [418] +16:01:18 [ 54] [ 40] [0001418C0000904440120002418C000090444012] +16:01:18 ============================================================================ +16:01:18 Calculate Source COMM Id = 4 +16:01:18 ============================================================================ +16:01:18 + + +waiting on router queue for slot.... +16:01:20 ============================================================================ +16:01:20 Slot Id : <121> +16:01:20 Transaction Type : REQUEST +16:01:20 Received From : +16:01:20 ============================================================================ +16:01:20 FNo. Len. Field Value +16:01:20 ============================================================================ +16:01:20 [ 1] [ 4] [0800] +16:01:20 [ 7] [ 10] [0320090027] +16:01:20 [ 11] [ 6] [157146] +16:01:20 [ 70] [ 3] [301] +16:01:20 ============================================================================ +16:01:20 + + +waiting on router queue for slot.... +16:01:20 Sending to : +16:01:20 ============================================================================ +16:01:20 ============================================================================ +16:01:20 Slot Id : <121> +16:01:20 Transaction Type : RESPONSE +16:01:20 Received From : +16:01:20 ============================================================================ +16:01:20 FNo. Len. Field Value +16:01:20 ============================================================================ +16:01:20 [ 1] [ 4] [0810] +16:01:20 [ 7] [ 10] [0320090027] +16:01:20 [ 11] [ 6] [157146] +16:01:20 [ 39] [ 2] [00] +16:01:20 [ 70] [ 3] [301] +16:01:20 ============================================================================ +16:01:20 Calculate Source COMM Id = 2 +16:01:20 ============================================================================ +16:01:20 + + +waiting on router queue for slot.... +16:01:20 ============================================================================ +16:01:20 Slot Id : <115> +16:01:20 Transaction Type : RESPONSE +16:01:20 Received From : +16:01:20 ============================================================================ +16:01:20 FNo. Len. Field Value +16:01:20 ============================================================================ +16:01:20 [ 1] [ 4] [0210] +16:01:20 [ 2] [ 16] [6688990106048307] +16:01:20 [ 3] [ 6] [010000] +16:01:20 [ 4] [ 12] [000010000000] +16:01:20 [ 11] [ 6] [791738] +16:01:20 [ 12] [ 6] [160113] +16:01:20 [ 15] [ 4] [0320] +16:01:20 [ 18] [ 4] [6011] +16:01:20 [ 32] [ 6] [621354] +16:01:20 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:01:20 [ 37] [ 12] [507903499553] +16:01:20 [ 38] [ 6] [180724] +16:01:20 [ 39] [ 2] [00] +16:01:20 [ 41] [ 8] [06002200] +16:01:20 [ 49] [ 3] [418] +16:01:20 [ 54] [ 20] [0002418C000295418446] +16:01:20 ============================================================================ +16:01:20 Sending to : +16:01:20 ============================================================================ +16:01:20 + + +waiting on router queue for slot.... +16:01:21 ============================================================================ +16:01:21 Slot Id : <115> +16:01:21 Transaction Type : RESPONSE +16:01:21 Received From : +16:01:21 ============================================================================ +16:01:21 FNo. Len. Field Value +16:01:21 ============================================================================ +16:01:21 [ 1] [ 4] [0210] +16:01:21 [ 2] [ 16] [6688990106048307] +16:01:21 [ 3] [ 6] [010000] +16:01:21 [ 4] [ 12] [000010000000] +16:01:21 [ 11] [ 6] [791738] +16:01:21 [ 12] [ 6] [160113] +16:01:21 [ 15] [ 4] [0320] +16:01:21 [ 18] [ 4] [6011] +16:01:21 [ 32] [ 6] [621354] +16:01:21 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:01:21 [ 37] [ 12] [507903499553] +16:01:21 [ 38] [ 6] [180724] +16:01:21 [ 39] [ 2] [00] +16:01:21 [ 41] [ 8] [06002200] +16:01:21 [ 49] [ 3] [418] +16:01:21 [ 54] [ 20] [0002418C000295418446] +16:01:21 ============================================================================ +16:01:21 Calculate Source COMM Id = 0 +16:01:21 ============================================================================ +16:01:21 + + +waiting on router queue for slot.... +16:01:22 ============================================================================ +16:01:22 Slot Id : <74> +16:01:22 Transaction Type : REQUEST +16:01:22 Received From : +16:01:22 ============================================================================ +16:01:22 FNo. Len. Field Value +16:01:22 ============================================================================ +16:01:22 [ 1] [ 4] [0800] +16:01:22 [ 7] [ 10] [0320085912] +16:01:22 [ 11] [ 6] [073373] +16:01:22 [ 37] [ 12] [57915073373] +16:01:22 [ 70] [ 3] [301] +16:01:22 ============================================================================ +16:01:22 + + +waiting on router queue for slot.... +16:01:22 Sending to : +16:01:22 ============================================================================ +16:01:22 ============================================================================ +16:01:22 Slot Id : <74> +16:01:22 Transaction Type : RESPONSE +16:01:22 Received From : +16:01:22 ============================================================================ +16:01:22 FNo. Len. Field Value +16:01:22 ============================================================================ +16:01:22 [ 1] [ 4] [0810] +16:01:22 [ 7] [ 10] [0320085912] +16:01:22 [ 11] [ 6] [073373] +16:01:22 [ 37] [ 12] [579150733730] +16:01:22 [ 39] [ 2] [00] +16:01:22 [ 70] [ 3] [810] +16:01:22 ============================================================================ +16:01:22 Calculate Source COMM Id = 4 +16:01:22 ============================================================================ +16:01:22 + + +waiting on router queue for slot.... +16:01:30 ============================================================================ +16:01:30 Slot Id : <92> +16:01:30 Transaction Type : REQUEST +16:01:30 Received From : +16:01:30 ============================================================================ +16:01:30 FNo. Len. Field Value +16:01:30 ============================================================================ +16:01:30 [ 1] [ 4] [0800] +16:01:30 [ 7] [ 10] [0320090037] +16:01:30 [ 11] [ 6] [157147] +16:01:30 [ 70] [ 3] [301] +16:01:30 ============================================================================ +16:01:30 + + +waiting on router queue for slot.... +16:01:30 Sending to : +16:01:30 ============================================================================ +16:01:30 ============================================================================ +16:01:30 Slot Id : <92> +16:01:30 Transaction Type : RESPONSE +16:01:30 Received From : +16:01:30 ============================================================================ +16:01:30 FNo. Len. Field Value +16:01:30 ============================================================================ +16:01:30 [ 1] [ 4] [0810] +16:01:30 [ 7] [ 10] [0320090037] +16:01:30 [ 11] [ 6] [157147] +16:01:30 [ 39] [ 2] [00] +16:01:30 [ 70] [ 3] [301] +16:01:30 ============================================================================ +16:01:30 Calculate Source COMM Id = 2 +16:01:30 ============================================================================ +16:01:30 + + +waiting on router queue for slot.... +16:01:39 ============================================================================ +16:01:39 Slot Id : <113> +16:01:39 Transaction Type : REQUEST +16:01:39 Received From : +16:01:39 ============================================================================ +16:01:39 FNo. Len. Field Value +16:01:39 ============================================================================ +16:01:39 [ 1] [ 4] [0800] +16:01:39 [ 2] [ 5] [02531] +16:01:39 [ 3] [ 6] [579168] +16:01:39 [ 7] [ 10] [0320090139] +16:01:39 [ 11] [ 6] [807342] +16:01:39 [ 15] [ 10] [0320090139] +16:01:39 [ 37] [ 11] [57916807342] +16:01:39 [ 70] [ 3] [001] +16:01:39 ============================================================================ +16:01:39 + + +waiting on router queue for slot.... +16:01:39 ============================================================================ +16:01:39 Slot Id : <113> +16:01:39 Transaction Type : RESPONSE +16:01:39 Received From : +16:01:39 ============================================================================ +16:01:39 FNo. Len. Field Value +16:01:39 ============================================================================ +16:01:39 [ 1] [ 4] [0810] +16:01:39 [ 7] [ 10] [0320090139] +16:01:39 [ 11] [ 6] [807342] +16:01:39 [ 15] [ 4] [0320] +16:01:39 [ 37] [ 12] [57916807342] +16:01:39 [ 39] [ 2] [00] +16:01:39 [ 70] [ 3] [001] +16:01:39 ============================================================================ +16:01:39 Sending to : +16:01:39 ============================================================================ +16:01:39 + + +waiting on router queue for slot.... +16:01:41 ============================================================================ +16:01:41 Slot Id : <108> +16:01:41 Transaction Type : REQUEST +16:01:41 Received From : +16:01:41 ============================================================================ +16:01:41 FNo. Len. Field Value +16:01:41 ============================================================================ +16:01:41 [ 1] [ 4] [0800] +16:01:41 [ 7] [ 10] [0320090048] +16:01:41 [ 11] [ 6] [157148] +16:01:41 [ 70] [ 3] [301] +16:01:41 ============================================================================ +16:01:41 + + +waiting on router queue for slot.... +16:01:41 Sending to : +16:01:41 ============================================================================ +16:01:41 ============================================================================ +16:01:41 Slot Id : <108> +16:01:41 Transaction Type : RESPONSE +16:01:41 Received From : +16:01:41 ============================================================================ +16:01:41 FNo. Len. Field Value +16:01:41 ============================================================================ +16:01:41 [ 1] [ 4] [0810] +16:01:41 [ 7] [ 10] [0320090048] +16:01:41 [ 11] [ 6] [157148] +16:01:41 [ 39] [ 2] [00] +16:01:41 [ 70] [ 3] [301] +16:01:41 ============================================================================ +16:01:41 Calculate Source COMM Id = 2 +16:01:41 ============================================================================ +16:01:41 + + +waiting on router queue for slot.... +16:01:51 ============================================================================ +16:01:51 Slot Id : <94> +16:01:51 Transaction Type : REQUEST +16:01:51 Received From : +16:01:51 ============================================================================ +16:01:51 FNo. Len. Field Value +16:01:51 ============================================================================ +16:01:51 [ 1] [ 4] [0200] +16:01:51 [ 2] [ 16] [6213543000046614] +16:01:51 [ 3] [ 6] [011000] +16:01:51 [ 4] [ 12] [000100000000] +16:01:51 [ 7] [ 10] [0320160212] +16:01:51 [ 11] [ 6] [208369] +16:01:51 [ 12] [ 6] [160645] +16:01:51 [ 13] [ 4] [0320] +16:01:51 [ 14] [ 4] [4912] +16:01:51 [ 15] [ 4] [0320] +16:01:51 [ 18] [ 4] [6011] +16:01:51 [ 19] [ 3] [418] +16:01:51 [ 22] [ 3] [021] +16:01:51 [ 25] [ 2] [01] +16:01:51 [ 28] [ 9] [D00002000] +16:01:51 [ 32] [ 6] [198901] +16:01:51 [ 35] [ 32] [6213543000046614=491212014661063] +16:01:51 [ 37] [ 12] [507916208369] +16:01:51 [ 41] [ 8] [00002206] +16:01:51 [ 42] [ 15] [000000041002206] +16:01:51 [ 43] [ 40] [150 HOSPITAL VN ] +16:01:51 [ 49] [ 3] [418] +16:01:51 [ 52] [ 16] [250E7F6F4FC7B476] +16:01:51 ============================================================================ +16:01:51 + + +waiting on router queue for slot.... +16:01:51 Sending to : +16:01:51 ============================================================================ +16:01:51 Sending to : +16:01:51 ============================================================================ +16:01:52 ============================================================================ +16:01:52 Slot Id : <94> +16:01:52 Transaction Type : REQUEST +16:01:52 Received From : +16:01:52 ============================================================================ +16:01:52 FNo. Len. Field Value +16:01:52 ============================================================================ +16:01:52 [ 1] [ 4] [0200] +16:01:52 [ 2] [ 16] [6213543000046614] +16:01:52 [ 3] [ 6] [011000] +16:01:52 [ 4] [ 12] [000100000000] +16:01:52 [ 7] [ 10] [0320160212] +16:01:52 [ 11] [ 6] [208369] +16:01:52 [ 12] [ 6] [160645] +16:01:52 [ 13] [ 4] [0320] +16:01:52 [ 14] [ 4] [4912] +16:01:52 [ 15] [ 4] [0320] +16:01:52 [ 18] [ 4] [6011] +16:01:52 [ 19] [ 3] [418] +16:01:52 [ 22] [ 3] [021] +16:01:52 [ 25] [ 2] [01] +16:01:52 [ 28] [ 9] [D00002000] +16:01:52 [ 32] [ 6] [198901] +16:01:52 [ 35] [ 32] [6213543000046614=491212014661063] +16:01:52 [ 37] [ 12] [507916208369] +16:01:52 [ 41] [ 8] [00002206] +16:01:52 [ 42] [ 15] [000000041002206] +16:01:52 [ 43] [ 40] [150 HOSPITAL VN ] +16:01:52 [ 49] [ 3] [418] +16:01:52 [ 52] [ 16] [250E7F6F4FC7B476] +16:01:52 ============================================================================ +16:01:52 + + +waiting on router queue for slot.... +16:01:52 Sending to : +16:01:52 ============================================================================ +16:01:52 ============================================================================ +16:01:52 Slot Id : <94> +16:01:52 Transaction Type : REQUEST +16:01:52 Received From : +16:01:52 ============================================================================ +16:01:52 FNo. Len. Field Value +16:01:52 ============================================================================ +16:01:52 [ 1] [ 4] [0200] +16:01:52 [ 2] [ 16] [6213543000046614] +16:01:52 [ 3] [ 6] [011000] +16:01:52 [ 4] [ 12] [000100000000] +16:01:52 [ 7] [ 10] [0320160212] +16:01:52 [ 11] [ 6] [208369] +16:01:52 [ 12] [ 6] [160645] +16:01:52 [ 13] [ 4] [0320] +16:01:52 [ 14] [ 4] [4912] +16:01:52 [ 15] [ 4] [0320] +16:01:52 [ 18] [ 4] [6011] +16:01:52 [ 19] [ 3] [418] +16:01:52 [ 22] [ 3] [021] +16:01:52 [ 25] [ 2] [01] +16:01:52 [ 28] [ 9] [D00002000] +16:01:52 [ 32] [ 6] [198901] +16:01:52 [ 35] [ 32] [6213543000046614=491212014661063] +16:01:52 [ 37] [ 12] [507916208369] +16:01:52 [ 41] [ 8] [00002206] +16:01:52 [ 42] [ 15] [000000041002206] +16:01:52 [ 43] [ 40] [150 HOSPITAL VN ] +16:01:52 [ 49] [ 3] [418] +16:01:52 [ 52] [ 16] [F10796E0C3A60497] +16:01:52 ============================================================================ +16:01:52 + + +waiting on router queue for slot.... +16:01:52 Sending to : <0> +16:01:52 ============================================================================ +16:01:52 ============================================================================ +16:01:52 Slot Id : <127> +16:01:52 Transaction Type : REQUEST +16:01:52 Received From : +16:01:52 ============================================================================ +16:01:52 FNo. Len. Field Value +16:01:52 ============================================================================ +16:01:52 [ 1] [ 4] [0800] +16:01:52 [ 7] [ 10] [0320090059] +16:01:52 [ 11] [ 6] [157149] +16:01:52 [ 70] [ 3] [301] +16:01:52 ============================================================================ +16:01:52 + + +waiting on router queue for slot.... +16:01:52 Sending to : +16:01:52 ============================================================================ +16:01:52 ============================================================================ +16:01:52 Slot Id : <127> +16:01:52 Transaction Type : RESPONSE +16:01:52 Received From : +16:01:52 ============================================================================ +16:01:52 FNo. Len. Field Value +16:01:52 ============================================================================ +16:01:52 [ 1] [ 4] [0810] +16:01:52 [ 7] [ 10] [0320090059] +16:01:52 [ 11] [ 6] [157149] +16:01:52 [ 39] [ 2] [00] +16:01:52 [ 70] [ 3] [301] +16:01:52 ============================================================================ +16:01:52 Calculate Source COMM Id = 2 +16:01:52 ============================================================================ +16:01:52 + + +waiting on router queue for slot.... +16:01:52 ============================================================================ +16:01:52 Slot Id : <75> +16:01:52 Transaction Type : REQUEST +16:01:52 Received From : +16:01:52 ============================================================================ +16:01:52 FNo. Len. Field Value +16:01:52 ============================================================================ +16:01:52 [ 1] [ 4] [0800] +16:01:52 [ 7] [ 10] [0320231341] +16:01:52 [ 11] [ 6] [161341] +16:01:52 [ 37] [ 12] [57916161341] +16:01:52 [ 70] [ 3] [301] +16:01:52 ============================================================================ +16:01:52 + + +waiting on router queue for slot.... +16:01:52 Sending to : +16:01:52 ============================================================================ +16:01:52 ============================================================================ +16:01:52 Slot Id : <75> +16:01:52 Transaction Type : RESPONSE +16:01:52 Received From : +16:01:52 ============================================================================ +16:01:52 FNo. Len. Field Value +16:01:52 ============================================================================ +16:01:52 [ 1] [ 4] [0810] +16:01:52 [ 7] [ 10] [0320231341] +16:01:52 [ 11] [ 6] [161341] +16:01:52 [ 37] [ 12] [579161613410] +16:01:52 [ 39] [ 2] [00] +16:01:52 [ 70] [ 3] [810] +16:01:52 ============================================================================ +16:01:52 Calculate Source COMM Id = 6 +16:01:52 ============================================================================ +16:01:52 + + +waiting on router queue for slot.... +16:01:52 ============================================================================ +16:01:52 Slot Id : <94> +16:01:52 Transaction Type : RESPONSE +16:01:52 Received From : +16:01:52 ============================================================================ +16:01:52 FNo. Len. Field Value +16:01:52 ============================================================================ +16:01:52 [ 1] [ 4] [0210] +16:01:52 [ 2] [ 16] [6213543000046614] +16:01:52 [ 3] [ 6] [011000] +16:01:52 [ 4] [ 12] [000100000000] +16:01:52 [ 7] [ 10] [0320160212] +16:01:52 [ 11] [ 6] [208369] +16:01:52 [ 12] [ 6] [160645] +16:01:52 [ 13] [ 4] [0320] +16:01:52 [ 15] [ 4] [0320] +16:01:52 [ 18] [ 4] [6011] +16:01:52 [ 19] [ 3] [418] +16:01:52 [ 32] [ 6] [198901] +16:01:52 [ 35] [ 32] [6213543000046614=491212014661063] +16:01:52 [ 37] [ 12] [507916208369] +16:01:52 [ 38] [ 6] [296729] +16:01:52 [ 39] [ 2] [00] +16:01:52 [ 41] [ 8] [00002206] +16:01:52 [ 49] [ 3] [418] +16:01:52 [ 54] [ 40] [1001418C0207599220031002418C020759922003] +16:01:52 ============================================================================ +16:01:52 Sending to : +16:01:52 ============================================================================ +16:01:52 + + +waiting on router queue for slot.... +16:01:53 ============================================================================ +16:01:53 Slot Id : <95> +16:01:53 Transaction Type : REQUEST +16:01:53 Received From : +16:01:53 ============================================================================ +16:01:53 FNo. Len. Field Value +16:01:53 ============================================================================ +16:01:53 [ 1] [ 4] [0200] +16:01:53 [ 2] [ 16] [2206990000090308] +16:01:53 [ 3] [ 6] [301000] +16:01:53 [ 4] [ 12] [000000000000] +16:01:53 [ 7] [ 10] [0320160148] +16:01:53 [ 11] [ 6] [791889] +16:01:53 [ 12] [ 6] [160148] +16:01:53 [ 13] [ 4] [0320] +16:01:53 [ 15] [ 4] [0320] +16:01:53 [ 18] [ 4] [6011] +16:01:53 [ 22] [ 3] [900] +16:01:53 [ 25] [ 2] [02] +16:01:53 [ 28] [ 9] [D00000000] +16:01:53 [ 32] [ 6] [621354] +16:01:53 [ 35] [ 32] [2206990000090308=971012617352539] +16:01:53 [ 37] [ 12] [507904015524] +16:01:53 [ 41] [ 8] [01011700] +16:01:53 [ 42] [ 15] [NATIVE ] +16:01:53 [ 43] [ 40] [Souksavath College Xaythany LAO] +16:01:53 [ 49] [ 3] [418] +16:01:53 [ 52] [ 16] [42E5649E21449566] +16:01:53 ============================================================================ +16:01:53 + + +waiting on router queue for slot.... +16:01:53 Sending to : +16:01:53 ============================================================================ +16:01:53 Sending to : +16:01:53 ============================================================================ +16:01:53 ============================================================================ +16:01:53 Slot Id : <95> +16:01:53 Transaction Type : REQUEST +16:01:53 Received From : +16:01:53 ============================================================================ +16:01:53 FNo. Len. Field Value +16:01:53 ============================================================================ +16:01:53 [ 1] [ 4] [0200] +16:01:53 [ 2] [ 16] [2206990000090308] +16:01:53 [ 3] [ 6] [301000] +16:01:53 [ 4] [ 12] [000000000000] +16:01:53 [ 7] [ 10] [0320160148] +16:01:53 [ 11] [ 6] [791889] +16:01:53 [ 12] [ 6] [160148] +16:01:53 [ 13] [ 4] [0320] +16:01:53 [ 15] [ 4] [0320] +16:01:53 [ 18] [ 4] [6011] +16:01:53 [ 22] [ 3] [900] +16:01:53 [ 25] [ 2] [02] +16:01:53 [ 28] [ 9] [D00000000] +16:01:53 [ 32] [ 6] [621354] +16:01:53 [ 35] [ 32] [2206990000090308=971012617352539] +16:01:53 [ 37] [ 12] [507904015524] +16:01:53 [ 41] [ 8] [01011700] +16:01:53 [ 42] [ 15] [NATIVE ] +16:01:53 [ 43] [ 40] [Souksavath College Xaythany LAO] +16:01:53 [ 49] [ 3] [418] +16:01:53 [ 52] [ 16] [42E5649E21449566] +16:01:53 ============================================================================ +16:01:53 + + +waiting on router queue for slot.... +16:01:53 Sending to : +16:01:53 ============================================================================ +16:01:53 ============================================================================ +16:01:53 Slot Id : <95> +16:01:53 Transaction Type : REQUEST +16:01:53 Received From : +16:01:53 ============================================================================ +16:01:53 FNo. Len. Field Value +16:01:53 ============================================================================ +16:01:53 [ 1] [ 4] [0200] +16:01:53 [ 2] [ 16] [2206990000090308] +16:01:53 [ 3] [ 6] [301000] +16:01:53 [ 4] [ 12] [000000000000] +16:01:53 [ 7] [ 10] [0320160148] +16:01:53 [ 11] [ 6] [791889] +16:01:53 [ 12] [ 6] [160148] +16:01:53 [ 13] [ 4] [0320] +16:01:53 [ 15] [ 4] [0320] +16:01:53 [ 18] [ 4] [6011] +16:01:53 [ 22] [ 3] [900] +16:01:53 [ 25] [ 2] [02] +16:01:53 [ 28] [ 9] [D00000000] +16:01:53 [ 32] [ 6] [621354] +16:01:53 [ 35] [ 32] [2206990000090308=971012617352539] +16:01:53 [ 37] [ 12] [507904015524] +16:01:53 [ 41] [ 8] [01011700] +16:01:53 [ 42] [ 15] [NATIVE ] +16:01:53 [ 43] [ 40] [Souksavath College Xaythany LAO] +16:01:53 [ 49] [ 3] [418] +16:01:53 [ 52] [ 16] [E5922787A9A6C1CB] +16:01:53 ============================================================================ +16:01:53 + + +waiting on router queue for slot.... +16:01:53 Sending to : <1> +16:01:53 ============================================================================ +16:01:54 ============================================================================ +16:01:54 Slot Id : <94> +16:01:54 Transaction Type : RESPONSE +16:01:54 Received From : +16:01:54 ============================================================================ +16:01:54 FNo. Len. Field Value +16:01:54 ============================================================================ +16:01:54 [ 1] [ 4] [0210] +16:01:54 [ 2] [ 16] [6213543000046614] +16:01:54 [ 3] [ 6] [011000] +16:01:54 [ 4] [ 12] [000100000000] +16:01:54 [ 7] [ 10] [0320160212] +16:01:54 [ 11] [ 6] [208369] +16:01:54 [ 12] [ 6] [160645] +16:01:54 [ 13] [ 4] [0320] +16:01:54 [ 15] [ 4] [0320] +16:01:54 [ 18] [ 4] [6011] +16:01:54 [ 19] [ 3] [418] +16:01:54 [ 32] [ 6] [198901] +16:01:54 [ 35] [ 32] [6213543000046614=491212014661063] +16:01:54 [ 37] [ 12] [507916208369] +16:01:54 [ 38] [ 6] [296729] +16:01:54 [ 39] [ 2] [00] +16:01:54 [ 41] [ 8] [00002206] +16:01:54 [ 49] [ 3] [418] +16:01:54 [ 54] [ 40] [1001418C0207599220031002418C020759922003] +16:01:54 ============================================================================ +16:01:54 Calculate Source COMM Id = 5 +16:01:54 ============================================================================ +16:01:54 + + +waiting on router queue for slot.... +16:01:55 ============================================================================ +16:01:55 Slot Id : <95> +16:01:55 Transaction Type : RESPONSE +16:01:55 Received From : +16:01:55 ============================================================================ +16:01:55 FNo. Len. Field Value +16:01:55 ============================================================================ +16:01:55 [ 1] [ 4] [0210] +16:01:55 [ 2] [ 16] [2206990000090308] +16:01:55 [ 3] [ 6] [301000] +16:01:55 [ 4] [ 12] [000000000000] +16:01:55 [ 7] [ 10] [0320160148] +16:01:55 [ 11] [ 6] [791889] +16:01:55 [ 12] [ 6] [160148] +16:01:55 [ 13] [ 4] [0320] +16:01:55 [ 15] [ 4] [0320] +16:01:55 [ 18] [ 4] [6011] +16:01:55 [ 32] [ 6] [621354] +16:01:55 [ 35] [ 32] [2206990000090308=971012617352539] +16:01:55 [ 37] [ 12] [507904015524] +16:01:55 [ 38] [ 6] [584397] +16:01:55 [ 39] [ 2] [00] +16:01:55 [ 41] [ 8] [01011700] +16:01:55 [ 49] [ 3] [418] +16:01:55 [ 54] [ 40] [1001418C0000421227001002418C000042122700] +16:01:55 ============================================================================ +16:01:55 Sending to : +16:01:55 ============================================================================ +16:01:55 + + +waiting on router queue for slot.... +16:01:56 ============================================================================ +16:01:56 Slot Id : <95> +16:01:56 Transaction Type : RESPONSE +16:01:56 Received From : +16:01:56 ============================================================================ +16:01:56 FNo. Len. Field Value +16:01:56 ============================================================================ +16:01:56 [ 1] [ 4] [0210] +16:01:56 [ 2] [ 16] [2206990000090308] +16:01:56 [ 3] [ 6] [301000] +16:01:56 [ 4] [ 12] [000000000000] +16:01:56 [ 7] [ 10] [0320160148] +16:01:56 [ 11] [ 6] [791889] +16:01:56 [ 12] [ 6] [160148] +16:01:56 [ 13] [ 4] [0320] +16:01:56 [ 15] [ 4] [0320] +16:01:56 [ 18] [ 4] [6011] +16:01:56 [ 32] [ 6] [621354] +16:01:56 [ 35] [ 32] [2206990000090308=971012617352539] +16:01:56 [ 37] [ 12] [507904015524] +16:01:56 [ 38] [ 6] [584397] +16:01:56 [ 39] [ 2] [00] +16:01:56 [ 41] [ 8] [01011700] +16:01:56 [ 49] [ 3] [418] +16:01:56 [ 54] [ 40] [1001418C0000421227001002418C000042122700] +16:01:56 ============================================================================ +16:01:56 Calculate Source COMM Id = 0 +16:01:56 ============================================================================ +16:01:56 + + +waiting on router queue for slot.... +16:01:58 ============================================================================ +16:01:58 Slot Id : <98> +16:01:58 Transaction Type : REQUEST +16:01:58 Received From : +16:01:58 ============================================================================ +16:01:58 FNo. Len. Field Value +16:01:58 ============================================================================ +16:01:58 [ 1] [ 4] [0200] +16:01:58 [ 2] [ 16] [1808930600033633] +16:01:58 [ 3] [ 6] [011000] +16:01:58 [ 4] [ 12] [000100000000] +16:01:58 [ 7] [ 10] [0320160219] +16:01:58 [ 11] [ 6] [208371] +16:01:58 [ 12] [ 6] [155633] +16:01:58 [ 13] [ 4] [0320] +16:01:58 [ 14] [ 4] [1803] +16:01:58 [ 15] [ 4] [0320] +16:01:58 [ 18] [ 4] [6011] +16:01:58 [ 19] [ 3] [418] +16:01:58 [ 22] [ 3] [021] +16:01:58 [ 25] [ 2] [01] +16:01:58 [ 28] [ 9] [D00002000] +16:01:58 [ 32] [ 6] [198901] +16:01:58 [ 35] [ 27] [1808930600033633=1803500298] +16:01:58 [ 37] [ 12] [507916208371] +16:01:58 [ 41] [ 8] [20529001] +16:01:58 [ 42] [ 15] [000000042052901] +16:01:58 [ 43] [ 40] [JDB ATM LAOBAO UNIT VN ] +16:01:58 [ 49] [ 3] [418] +16:01:58 [ 52] [ 16] [EEBA647DA246E76F] +16:01:58 ============================================================================ +16:01:58 + + +waiting on router queue for slot.... +16:01:58 Sending to : +16:01:58 ============================================================================ +16:01:58 Sending to : +16:01:58 ============================================================================ +16:01:59 ============================================================================ +16:01:59 Slot Id : <98> +16:01:59 Transaction Type : REQUEST +16:01:59 Received From : +16:01:59 ============================================================================ +16:01:59 FNo. Len. Field Value +16:01:59 ============================================================================ +16:01:59 [ 1] [ 4] [0200] +16:01:59 [ 2] [ 16] [1808930600033633] +16:01:59 [ 3] [ 6] [011000] +16:01:59 [ 4] [ 12] [000100000000] +16:01:59 [ 7] [ 10] [0320160219] +16:01:59 [ 11] [ 6] [208371] +16:01:59 [ 12] [ 6] [155633] +16:01:59 [ 13] [ 4] [0320] +16:01:59 [ 14] [ 4] [1803] +16:01:59 [ 15] [ 4] [0320] +16:01:59 [ 18] [ 4] [6011] +16:01:59 [ 19] [ 3] [418] +16:01:59 [ 22] [ 3] [021] +16:01:59 [ 25] [ 2] [01] +16:01:59 [ 28] [ 9] [D00002000] +16:01:59 [ 32] [ 6] [198901] +16:01:59 [ 35] [ 27] [1808930600033633=1803500298] +16:01:59 [ 37] [ 12] [507916208371] +16:01:59 [ 41] [ 8] [20529001] +16:01:59 [ 42] [ 15] [000000042052901] +16:01:59 [ 43] [ 40] [JDB ATM LAOBAO UNIT VN ] +16:01:59 [ 49] [ 3] [418] +16:01:59 [ 52] [ 16] [EEBA647DA246E76F] +16:01:59 ============================================================================ +16:01:59 + + +waiting on router queue for slot.... +16:01:59 Sending to : +16:01:59 ============================================================================ +16:01:59 ============================================================================ +16:01:59 Slot Id : <98> +16:01:59 Transaction Type : REQUEST +16:01:59 Received From : +16:01:59 ============================================================================ +16:01:59 FNo. Len. Field Value +16:01:59 ============================================================================ +16:01:59 [ 1] [ 4] [0200] +16:01:59 [ 2] [ 16] [1808930600033633] +16:01:59 [ 3] [ 6] [011000] +16:01:59 [ 4] [ 12] [000100000000] +16:01:59 [ 7] [ 10] [0320160219] +16:01:59 [ 11] [ 6] [208371] +16:01:59 [ 12] [ 6] [155633] +16:01:59 [ 13] [ 4] [0320] +16:01:59 [ 14] [ 4] [1803] +16:01:59 [ 15] [ 4] [0320] +16:01:59 [ 18] [ 4] [6011] +16:01:59 [ 19] [ 3] [418] +16:01:59 [ 22] [ 3] [021] +16:01:59 [ 25] [ 2] [01] +16:01:59 [ 28] [ 9] [D00002000] +16:01:59 [ 32] [ 6] [198901] +16:01:59 [ 35] [ 27] [1808930600033633=1803500298] +16:01:59 [ 37] [ 12] [507916208371] +16:01:59 [ 41] [ 8] [20529001] +16:01:59 [ 42] [ 15] [000000042052901] +16:01:59 [ 43] [ 40] [JDB ATM LAOBAO UNIT VN ] +16:01:59 [ 49] [ 3] [418] +16:01:59 [ 52] [ 16] [5C52BD96974682CD] +16:01:59 ============================================================================ +16:01:59 + + +waiting on router queue for slot.... +16:01:59 Sending to : <2> +16:01:59 ============================================================================ +16:02:02 ============================================================================ +16:02:02 Slot Id : <98> +16:02:02 Transaction Type : RESPONSE +16:02:02 Received From : +16:02:02 ============================================================================ +16:02:02 FNo. Len. Field Value +16:02:02 ============================================================================ +16:02:02 [ 1] [ 4] [0210] +16:02:02 [ 2] [ 16] [1808930600033633] +16:02:02 [ 3] [ 6] [011000] +16:02:02 [ 4] [ 12] [000100000000] +16:02:02 [ 6] [ 12] [000100000000] +16:02:02 [ 7] [ 10] [0320160219] +16:02:02 [ 11] [ 6] [208371] +16:02:02 [ 12] [ 6] [155633] +16:02:02 [ 13] [ 4] [0320] +16:02:02 [ 14] [ 4] [1803] +16:02:02 [ 18] [ 4] [6011] +16:02:02 [ 19] [ 3] [418] +16:02:02 [ 22] [ 3] [021] +16:02:02 [ 32] [ 6] [198901] +16:02:02 [ 35] [ 27] [1808930600033633=1803500298] +16:02:02 [ 37] [ 12] [507916208371] +16:02:02 [ 38] [ 6] [208371] +16:02:02 [ 39] [ 2] [00] +16:02:02 [ 41] [ 8] [20529001] +16:02:02 [ 49] [ 3] [418] +16:02:02 [ 52] [ 16] [5C52BD96974682CD] +16:02:02 [ 54] [ 20] [1001418C000036955800] +16:02:02 ============================================================================ +16:02:02 Sending to : +16:02:02 ============================================================================ +16:02:02 + + +waiting on router queue for slot.... +16:02:03 ============================================================================ +16:02:03 Slot Id : <53> +16:02:03 Transaction Type : REQUEST +16:02:03 Received From : +16:02:03 ============================================================================ +16:02:03 FNo. Len. Field Value +16:02:03 ============================================================================ +16:02:03 [ 1] [ 4] [0200] +16:02:03 [ 2] [ 16] [6688990101816302] +16:02:03 [ 3] [ 6] [010000] +16:02:03 [ 4] [ 12] [000050000000] +16:02:03 [ 7] [ 10] [0320160158] +16:02:03 [ 11] [ 6] [791940] +16:02:03 [ 12] [ 6] [160158] +16:02:03 [ 13] [ 4] [0320] +16:02:03 [ 15] [ 4] [0320] +16:02:03 [ 18] [ 4] [6011] +16:02:03 [ 22] [ 3] [900] +16:02:03 [ 25] [ 2] [02] +16:02:03 [ 28] [ 9] [D00002000] +16:02:03 [ 32] [ 6] [621354] +16:02:03 [ 35] [ 37] [6688990101816302=42051231630241200000] +16:02:03 [ 37] [ 12] [507904635795] +16:02:03 [ 41] [ 8] [17000800] +16:02:03 [ 42] [ 15] [NATIVE ] +16:02:03 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:02:03 [ 49] [ 3] [418] +16:02:03 [ 52] [ 16] [9C6D35A29E58353D] +16:02:03 ============================================================================ +16:02:03 + + +waiting on router queue for slot.... +16:02:03 Sending to : +16:02:03 ============================================================================ +16:02:03 Sending to : +16:02:03 ============================================================================ +16:02:03 ============================================================================ +16:02:03 Slot Id : <98> +16:02:03 Transaction Type : RESPONSE +16:02:03 Received From : +16:02:03 ============================================================================ +16:02:03 FNo. Len. Field Value +16:02:03 ============================================================================ +16:02:03 [ 1] [ 4] [0210] +16:02:03 [ 2] [ 16] [1808930600033633] +16:02:03 [ 3] [ 6] [011000] +16:02:03 [ 4] [ 12] [000100000000] +16:02:03 [ 6] [ 12] [000100000000] +16:02:03 [ 7] [ 10] [0320160219] +16:02:03 [ 11] [ 6] [208371] +16:02:03 [ 12] [ 6] [155633] +16:02:03 [ 13] [ 4] [0320] +16:02:03 [ 14] [ 4] [1803] +16:02:03 [ 18] [ 4] [6011] +16:02:03 [ 19] [ 3] [418] +16:02:03 [ 22] [ 3] [021] +16:02:03 [ 32] [ 6] [198901] +16:02:03 [ 35] [ 27] [1808930600033633=1803500298] +16:02:03 [ 37] [ 12] [507916208371] +16:02:03 [ 38] [ 6] [208371] +16:02:03 [ 39] [ 2] [00] +16:02:03 [ 41] [ 8] [20529001] +16:02:03 [ 49] [ 3] [418] +16:02:03 [ 52] [ 16] [5C52BD96974682CD] +16:02:03 [ 54] [ 20] [1001418C000036955800] +16:02:03 ============================================================================ +16:02:03 Calculate Source COMM Id = 5 +16:02:03 ============================================================================ +16:02:03 + + +waiting on router queue for slot.... +16:02:04 ============================================================================ +16:02:04 Slot Id : <53> +16:02:04 Transaction Type : REQUEST +16:02:04 Received From : +16:02:04 ============================================================================ +16:02:04 FNo. Len. Field Value +16:02:04 ============================================================================ +16:02:04 [ 1] [ 4] [0200] +16:02:04 [ 2] [ 16] [6688990101816302] +16:02:04 [ 3] [ 6] [010000] +16:02:04 [ 4] [ 12] [000050000000] +16:02:04 [ 7] [ 10] [0320160158] +16:02:04 [ 11] [ 6] [791940] +16:02:04 [ 12] [ 6] [160158] +16:02:04 [ 13] [ 4] [0320] +16:02:04 [ 15] [ 4] [0320] +16:02:04 [ 18] [ 4] [6011] +16:02:04 [ 22] [ 3] [900] +16:02:04 [ 25] [ 2] [02] +16:02:04 [ 28] [ 9] [D00002000] +16:02:04 [ 32] [ 6] [621354] +16:02:04 [ 35] [ 37] [6688990101816302=42051231630241200000] +16:02:04 [ 37] [ 12] [507904635795] +16:02:04 [ 41] [ 8] [17000800] +16:02:04 [ 42] [ 15] [NATIVE ] +16:02:04 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:02:04 [ 49] [ 3] [418] +16:02:04 [ 52] [ 16] [9C6D35A29E58353D] +16:02:04 ============================================================================ +16:02:04 + + +waiting on router queue for slot.... +16:02:04 Sending to : +16:02:04 ============================================================================ +16:02:04 ============================================================================ +16:02:04 Slot Id : <53> +16:02:04 Transaction Type : REQUEST +16:02:04 Received From : +16:02:04 ============================================================================ +16:02:04 FNo. Len. Field Value +16:02:04 ============================================================================ +16:02:04 [ 1] [ 4] [0200] +16:02:04 [ 2] [ 16] [6688990101816302] +16:02:04 [ 3] [ 6] [010000] +16:02:04 [ 4] [ 12] [000050000000] +16:02:04 [ 7] [ 10] [0320160158] +16:02:04 [ 11] [ 6] [791940] +16:02:04 [ 12] [ 6] [160158] +16:02:04 [ 13] [ 4] [0320] +16:02:04 [ 15] [ 4] [0320] +16:02:04 [ 18] [ 4] [6011] +16:02:04 [ 22] [ 3] [900] +16:02:04 [ 25] [ 2] [02] +16:02:04 [ 28] [ 9] [D00002000] +16:02:04 [ 32] [ 6] [621354] +16:02:04 [ 35] [ 37] [6688990101816302=42051231630241200000] +16:02:04 [ 37] [ 12] [507904635795] +16:02:04 [ 41] [ 8] [17000800] +16:02:04 [ 42] [ 15] [NATIVE ] +16:02:04 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:02:04 [ 49] [ 3] [418] +16:02:04 [ 52] [ 16] [A5762826E9ADC665] +16:02:04 ============================================================================ +16:02:04 + + +waiting on router queue for slot.... +16:02:04 Sending to : <4> +16:02:04 ============================================================================ +16:02:05 ============================================================================ +16:02:05 Slot Id : <53> +16:02:05 Transaction Type : RESPONSE +16:02:05 Received From : +16:02:05 ============================================================================ +16:02:05 FNo. Len. Field Value +16:02:05 ============================================================================ +16:02:05 [ 1] [ 4] [0210] +16:02:05 [ 2] [ 16] [6688990101816302] +16:02:05 [ 3] [ 6] [010000] +16:02:05 [ 4] [ 12] [000050000000] +16:02:05 [ 11] [ 6] [791940] +16:02:05 [ 12] [ 6] [160158] +16:02:05 [ 15] [ 4] [0320] +16:02:05 [ 18] [ 4] [6011] +16:02:05 [ 32] [ 6] [621354] +16:02:05 [ 35] [ 37] [6688990101816302=42051231630241200000] +16:02:05 [ 37] [ 12] [507904635795] +16:02:05 [ 38] [ 6] [086184] +16:02:05 [ 39] [ 2] [00] +16:02:05 [ 41] [ 8] [17000800] +16:02:05 [ 49] [ 3] [418] +16:02:05 [ 54] [ 20] [0002418C000351079386] +16:02:05 ============================================================================ +16:02:05 Sending to : +16:02:05 ============================================================================ +16:02:05 + + +waiting on router queue for slot.... +16:02:06 ============================================================================ +16:02:06 Slot Id : <53> +16:02:06 Transaction Type : RESPONSE +16:02:06 Received From : +16:02:06 ============================================================================ +16:02:06 FNo. Len. Field Value +16:02:06 ============================================================================ +16:02:06 [ 1] [ 4] [0210] +16:02:06 [ 2] [ 16] [6688990101816302] +16:02:06 [ 3] [ 6] [010000] +16:02:06 [ 4] [ 12] [000050000000] +16:02:06 [ 11] [ 6] [791940] +16:02:06 [ 12] [ 6] [160158] +16:02:06 [ 15] [ 4] [0320] +16:02:06 [ 18] [ 4] [6011] +16:02:06 [ 32] [ 6] [621354] +16:02:06 [ 35] [ 37] [6688990101816302=42051231630241200000] +16:02:06 [ 37] [ 12] [507904635795] +16:02:06 [ 38] [ 6] [086184] +16:02:06 [ 39] [ 2] [00] +16:02:06 [ 41] [ 8] [17000800] +16:02:06 [ 49] [ 3] [418] +16:02:06 [ 54] [ 20] [0002418C000351079386] +16:02:06 ============================================================================ +16:02:06 Calculate Source COMM Id = 0 +16:02:06 ============================================================================ +16:02:06 + + +waiting on router queue for slot.... +16:02:11 ============================================================================ +16:02:11 Slot Id : <125> +16:02:11 Transaction Type : REQUEST +16:02:11 Received From : +16:02:11 ============================================================================ +16:02:11 FNo. Len. Field Value +16:02:11 ============================================================================ +16:02:11 [ 1] [ 4] [0200] +16:02:11 [ 2] [ 16] [6213545000422190] +16:02:11 [ 3] [ 6] [010000] +16:02:11 [ 4] [ 12] [000010000000] +16:02:11 [ 7] [ 10] [0320160001] +16:02:11 [ 11] [ 6] [950912] +16:02:11 [ 12] [ 6] [160001] +16:02:11 [ 13] [ 4] [0320] +16:02:11 [ 15] [ 4] [0320] +16:02:11 [ 18] [ 4] [6011] +16:02:11 [ 19] [ 3] [418] +16:02:11 [ 22] [ 3] [021] +16:02:11 [ 25] [ 2] [01] +16:02:11 [ 28] [ 9] [D00002000] +16:02:11 [ 32] [ 6] [668899] +16:02:11 [ 35] [ 32] [6213545000422190=491212012219426] +16:02:11 [ 37] [ 12] [507902114222] +16:02:11 [ 41] [ 8] [03001009] +16:02:11 [ 42] [ 15] [APT ] +16:02:11 [ 43] [ 40] [ THA-NGON XAYTHANY DTHA-] +16:02:11 [ 49] [ 3] [418] +16:02:11 [ 52] [ 16] [383CF4520E5B7EA3] +16:02:11 ============================================================================ +16:02:11 + + +waiting on router queue for slot.... +16:02:11 Sending to : +16:02:11 ============================================================================ +16:02:11 Sending to : +16:02:11 ============================================================================ +16:02:11 ============================================================================ +16:02:11 Slot Id : <125> +16:02:11 Transaction Type : REQUEST +16:02:11 Received From : +16:02:11 ============================================================================ +16:02:11 FNo. Len. Field Value +16:02:11 ============================================================================ +16:02:11 [ 1] [ 4] [0200] +16:02:11 [ 2] [ 16] [6213545000422190] +16:02:11 [ 3] [ 6] [010000] +16:02:11 [ 4] [ 12] [000010000000] +16:02:11 [ 7] [ 10] [0320160001] +16:02:11 [ 11] [ 6] [950912] +16:02:11 [ 12] [ 6] [160001] +16:02:11 [ 13] [ 4] [0320] +16:02:11 [ 15] [ 4] [0320] +16:02:11 [ 18] [ 4] [6011] +16:02:11 [ 19] [ 3] [418] +16:02:11 [ 22] [ 3] [021] +16:02:11 [ 25] [ 2] [01] +16:02:11 [ 28] [ 9] [D00002000] +16:02:11 [ 32] [ 6] [668899] +16:02:11 [ 35] [ 32] [6213545000422190=491212012219426] +16:02:11 [ 37] [ 12] [507902114222] +16:02:11 [ 41] [ 8] [03001009] +16:02:11 [ 42] [ 15] [APT ] +16:02:11 [ 43] [ 40] [ THA-NGON XAYTHANY DTHA-] +16:02:11 [ 49] [ 3] [418] +16:02:11 [ 52] [ 16] [383CF4520E5B7EA3] +16:02:11 ============================================================================ +16:02:11 + + +waiting on router queue for slot.... +16:02:11 Sending to : +16:02:11 ============================================================================ +16:02:11 ============================================================================ +16:02:11 Slot Id : <125> +16:02:11 Transaction Type : REQUEST +16:02:11 Received From : +16:02:11 ============================================================================ +16:02:11 FNo. Len. Field Value +16:02:11 ============================================================================ +16:02:11 [ 1] [ 4] [0200] +16:02:11 [ 2] [ 16] [6213545000422190] +16:02:11 [ 3] [ 6] [010000] +16:02:11 [ 4] [ 12] [000010000000] +16:02:11 [ 7] [ 10] [0320160001] +16:02:11 [ 11] [ 6] [950912] +16:02:11 [ 12] [ 6] [160001] +16:02:11 [ 13] [ 4] [0320] +16:02:11 [ 15] [ 4] [0320] +16:02:11 [ 18] [ 4] [6011] +16:02:11 [ 19] [ 3] [418] +16:02:11 [ 22] [ 3] [021] +16:02:11 [ 25] [ 2] [01] +16:02:11 [ 28] [ 9] [D00002000] +16:02:11 [ 32] [ 6] [668899] +16:02:11 [ 35] [ 32] [6213545000422190=491212012219426] +16:02:11 [ 37] [ 12] [507902114222] +16:02:11 [ 41] [ 8] [03001009] +16:02:11 [ 42] [ 15] [APT ] +16:02:11 [ 43] [ 40] [ THA-NGON XAYTHANY DTHA-] +16:02:11 [ 49] [ 3] [418] +16:02:11 [ 52] [ 16] [5317CE8327AF389F] +16:02:11 ============================================================================ +16:02:11 + + +waiting on router queue for slot.... +16:02:11 Sending to : <0> +16:02:11 ============================================================================ +16:02:12 ============================================================================ +16:02:12 Slot Id : <125> +16:02:12 Transaction Type : RESPONSE +16:02:12 Received From : +16:02:12 ============================================================================ +16:02:12 FNo. Len. Field Value +16:02:12 ============================================================================ +16:02:12 [ 1] [ 4] [0210] +16:02:12 [ 2] [ 16] [6213545000422190] +16:02:12 [ 3] [ 6] [010000] +16:02:12 [ 4] [ 12] [000010000000] +16:02:12 [ 7] [ 10] [0320160001] +16:02:12 [ 11] [ 6] [950912] +16:02:12 [ 12] [ 6] [160001] +16:02:12 [ 13] [ 4] [0320] +16:02:12 [ 15] [ 4] [0320] +16:02:12 [ 18] [ 4] [6011] +16:02:12 [ 19] [ 3] [418] +16:02:12 [ 32] [ 6] [668899] +16:02:12 [ 35] [ 32] [6213545000422190=491212012219426] +16:02:12 [ 37] [ 12] [507902114222] +16:02:12 [ 38] [ 6] [757425] +16:02:12 [ 39] [ 2] [00] +16:02:12 [ 41] [ 8] [03001009] +16:02:12 [ 49] [ 3] [418] +16:02:12 [ 54] [ 40] [0001418C0000802440120002418C000080244012] +16:02:12 ============================================================================ +16:02:12 Sending to : +16:02:12 ============================================================================ +16:02:12 + + +waiting on router queue for slot.... +16:02:13 ============================================================================ +16:02:13 Slot Id : <134> +16:02:13 Transaction Type : REQUEST +16:02:13 Received From : +16:02:13 ============================================================================ +16:02:13 FNo. Len. Field Value +16:02:13 ============================================================================ +16:02:13 [ 1] [ 4] [0800] +16:02:13 [ 7] [ 10] [0320090120] +16:02:13 [ 11] [ 6] [157150] +16:02:13 [ 70] [ 3] [301] +16:02:13 ============================================================================ +16:02:13 + + +waiting on router queue for slot.... +16:02:13 Sending to : +16:02:13 ============================================================================ +16:02:13 ============================================================================ +16:02:13 Slot Id : <134> +16:02:13 Transaction Type : RESPONSE +16:02:13 Received From : +16:02:13 ============================================================================ +16:02:13 FNo. Len. Field Value +16:02:13 ============================================================================ +16:02:13 [ 1] [ 4] [0810] +16:02:13 [ 7] [ 10] [0320090120] +16:02:13 [ 11] [ 6] [157150] +16:02:13 [ 39] [ 2] [00] +16:02:13 [ 70] [ 3] [301] +16:02:13 ============================================================================ +16:02:13 Calculate Source COMM Id = 2 +16:02:13 ============================================================================ +16:02:13 + + +waiting on router queue for slot.... +16:02:13 ============================================================================ +16:02:13 Slot Id : <125> +16:02:13 Transaction Type : RESPONSE +16:02:13 Received From : +16:02:13 ============================================================================ +16:02:13 FNo. Len. Field Value +16:02:13 ============================================================================ +16:02:13 [ 1] [ 4] [0210] +16:02:13 [ 2] [ 16] [6213545000422190] +16:02:13 [ 3] [ 6] [010000] +16:02:13 [ 4] [ 12] [000010000000] +16:02:13 [ 7] [ 10] [0320160001] +16:02:13 [ 11] [ 6] [950912] +16:02:13 [ 12] [ 6] [160001] +16:02:13 [ 13] [ 4] [0320] +16:02:13 [ 15] [ 4] [0320] +16:02:13 [ 18] [ 4] [6011] +16:02:13 [ 19] [ 3] [418] +16:02:13 [ 32] [ 6] [668899] +16:02:13 [ 35] [ 32] [6213545000422190=491212012219426] +16:02:13 [ 37] [ 12] [507902114222] +16:02:13 [ 38] [ 6] [757425] +16:02:13 [ 39] [ 2] [00] +16:02:13 [ 41] [ 8] [03001009] +16:02:13 [ 49] [ 3] [418] +16:02:13 [ 54] [ 40] [0001418C0000802440120002418C000080244012] +16:02:13 ============================================================================ +16:02:13 Calculate Source COMM Id = 4 +16:02:13 ============================================================================ +16:02:13 + + +waiting on router queue for slot.... +16:02:14 ============================================================================ +16:02:14 Slot Id : <103> +16:02:14 Transaction Type : REQUEST +16:02:14 Received From : +16:02:14 ============================================================================ +16:02:14 FNo. Len. Field Value +16:02:14 ============================================================================ +16:02:14 [ 1] [ 4] [0200] +16:02:14 [ 2] [ 16] [6688990106085507] +16:02:14 [ 3] [ 6] [011000] +16:02:14 [ 4] [ 12] [000050000000] +16:02:14 [ 7] [ 10] [0320160209] +16:02:14 [ 11] [ 6] [791979] +16:02:14 [ 12] [ 6] [160209] +16:02:14 [ 13] [ 4] [0320] +16:02:14 [ 15] [ 4] [0320] +16:02:14 [ 18] [ 4] [6011] +16:02:14 [ 22] [ 3] [900] +16:02:14 [ 25] [ 2] [02] +16:02:14 [ 28] [ 9] [D00002000] +16:02:14 [ 32] [ 6] [621354] +16:02:14 [ 35] [ 37] [6688990106085507=43111231550736000000] +16:02:14 [ 37] [ 12] [507903612995] +16:02:14 [ 41] [ 8] [16001400] +16:02:14 [ 42] [ 15] [NATIVE ] +16:02:14 [ 43] [ 40] [NOUL Xaythany LAO] +16:02:14 [ 49] [ 3] [418] +16:02:14 [ 52] [ 16] [7896B07E2F3BDB9D] +16:02:14 ============================================================================ +16:02:14 + + +waiting on router queue for slot.... +16:02:14 Sending to : +16:02:14 ============================================================================ +16:02:14 Sending to : +16:02:14 ============================================================================ +16:02:14 ============================================================================ +16:02:14 Slot Id : <103> +16:02:14 Transaction Type : REQUEST +16:02:14 Received From : +16:02:14 ============================================================================ +16:02:14 FNo. Len. Field Value +16:02:14 ============================================================================ +16:02:14 [ 1] [ 4] [0200] +16:02:14 [ 2] [ 16] [6688990106085507] +16:02:14 [ 3] [ 6] [011000] +16:02:14 [ 4] [ 12] [000050000000] +16:02:14 [ 7] [ 10] [0320160209] +16:02:14 [ 11] [ 6] [791979] +16:02:14 [ 12] [ 6] [160209] +16:02:14 [ 13] [ 4] [0320] +16:02:14 [ 15] [ 4] [0320] +16:02:14 [ 18] [ 4] [6011] +16:02:14 [ 22] [ 3] [900] +16:02:14 [ 25] [ 2] [02] +16:02:14 [ 28] [ 9] [D00002000] +16:02:14 [ 32] [ 6] [621354] +16:02:14 [ 35] [ 37] [6688990106085507=43111231550736000000] +16:02:14 [ 37] [ 12] [507903612995] +16:02:14 [ 41] [ 8] [16001400] +16:02:14 [ 42] [ 15] [NATIVE ] +16:02:14 [ 43] [ 40] [NOUL Xaythany LAO] +16:02:14 [ 49] [ 3] [418] +16:02:14 [ 52] [ 16] [7896B07E2F3BDB9D] +16:02:14 ============================================================================ +16:02:14 + + +waiting on router queue for slot.... +16:02:14 Sending to : +16:02:14 ============================================================================ +16:02:14 ============================================================================ +16:02:14 Slot Id : <103> +16:02:14 Transaction Type : REQUEST +16:02:14 Received From : +16:02:14 ============================================================================ +16:02:14 FNo. Len. Field Value +16:02:14 ============================================================================ +16:02:14 [ 1] [ 4] [0200] +16:02:14 [ 2] [ 16] [6688990106085507] +16:02:14 [ 3] [ 6] [011000] +16:02:14 [ 4] [ 12] [000050000000] +16:02:14 [ 7] [ 10] [0320160209] +16:02:14 [ 11] [ 6] [791979] +16:02:14 [ 12] [ 6] [160209] +16:02:14 [ 13] [ 4] [0320] +16:02:14 [ 15] [ 4] [0320] +16:02:14 [ 18] [ 4] [6011] +16:02:14 [ 22] [ 3] [900] +16:02:14 [ 25] [ 2] [02] +16:02:14 [ 28] [ 9] [D00002000] +16:02:14 [ 32] [ 6] [621354] +16:02:14 [ 35] [ 37] [6688990106085507=43111231550736000000] +16:02:14 [ 37] [ 12] [507903612995] +16:02:14 [ 41] [ 8] [16001400] +16:02:14 [ 42] [ 15] [NATIVE ] +16:02:14 [ 43] [ 40] [NOUL Xaythany LAO] +16:02:14 [ 49] [ 3] [418] +16:02:14 [ 52] [ 16] [E992F8783AECE51F] +16:02:14 ============================================================================ +16:02:14 + + +waiting on router queue for slot.... +16:02:14 Sending to : <4> +16:02:14 ============================================================================ +16:02:15 ============================================================================ +16:02:15 Slot Id : <103> +16:02:15 Transaction Type : RESPONSE +16:02:15 Received From : +16:02:15 ============================================================================ +16:02:15 FNo. Len. Field Value +16:02:15 ============================================================================ +16:02:15 [ 1] [ 4] [0210] +16:02:15 [ 2] [ 16] [6688990106085507] +16:02:15 [ 3] [ 6] [011000] +16:02:15 [ 4] [ 12] [000050000000] +16:02:15 [ 11] [ 6] [791979] +16:02:15 [ 12] [ 6] [160209] +16:02:15 [ 15] [ 4] [0320] +16:02:15 [ 18] [ 4] [6011] +16:02:15 [ 32] [ 6] [621354] +16:02:15 [ 35] [ 37] [6688990106085507=43111231550736000000] +16:02:15 [ 37] [ 12] [507903612995] +16:02:15 [ 38] [ 6] [578173] +16:02:15 [ 39] [ 2] [00] +16:02:15 [ 41] [ 8] [16001400] +16:02:15 [ 49] [ 3] [418] +16:02:15 [ 54] [ 20] [1002418C000003318081] +16:02:15 ============================================================================ +16:02:15 Sending to : +16:02:15 ============================================================================ +16:02:15 + + +waiting on router queue for slot.... +16:02:17 ============================================================================ +16:02:17 Slot Id : <103> +16:02:17 Transaction Type : RESPONSE +16:02:17 Received From : +16:02:17 ============================================================================ +16:02:17 FNo. Len. Field Value +16:02:17 ============================================================================ +16:02:17 [ 1] [ 4] [0210] +16:02:17 [ 2] [ 16] [6688990106085507] +16:02:17 [ 3] [ 6] [011000] +16:02:17 [ 4] [ 12] [000050000000] +16:02:17 [ 11] [ 6] [791979] +16:02:17 [ 12] [ 6] [160209] +16:02:17 [ 15] [ 4] [0320] +16:02:17 [ 18] [ 4] [6011] +16:02:17 [ 32] [ 6] [621354] +16:02:17 [ 35] [ 37] [6688990106085507=43111231550736000000] +16:02:17 [ 37] [ 12] [507903612995] +16:02:17 [ 38] [ 6] [578173] +16:02:17 [ 39] [ 2] [00] +16:02:17 [ 41] [ 8] [16001400] +16:02:17 [ 49] [ 3] [418] +16:02:17 [ 54] [ 20] [1002418C000003318081] +16:02:17 ============================================================================ +16:02:17 Calculate Source COMM Id = 0 +16:02:17 ============================================================================ +16:02:17 + + +waiting on router queue for slot.... +16:02:25 ============================================================================ +16:02:25 Slot Id : <96> +16:02:25 Transaction Type : REQUEST +16:02:25 Received From : +16:02:25 ============================================================================ +16:02:25 FNo. Len. Field Value +16:02:25 ============================================================================ +16:02:25 [ 1] [ 4] [0800] +16:02:25 [ 7] [ 10] [0320090132] +16:02:25 [ 11] [ 6] [157151] +16:02:25 [ 70] [ 3] [301] +16:02:25 ============================================================================ +16:02:25 + + +waiting on router queue for slot.... +16:02:25 Sending to : +16:02:25 ============================================================================ +16:02:25 ============================================================================ +16:02:25 Slot Id : <96> +16:02:25 Transaction Type : RESPONSE +16:02:25 Received From : +16:02:25 ============================================================================ +16:02:25 FNo. Len. Field Value +16:02:25 ============================================================================ +16:02:25 [ 1] [ 4] [0810] +16:02:25 [ 7] [ 10] [0320090132] +16:02:25 [ 11] [ 6] [157151] +16:02:25 [ 39] [ 2] [00] +16:02:25 [ 70] [ 3] [301] +16:02:25 ============================================================================ +16:02:25 Calculate Source COMM Id = 2 +16:02:25 ============================================================================ +16:02:25 + + +waiting on router queue for slot.... +16:02:35 ============================================================================ +16:02:35 Slot Id : <101> +16:02:35 Transaction Type : REQUEST +16:02:35 Received From : +16:02:35 ============================================================================ +16:02:35 FNo. Len. Field Value +16:02:35 ============================================================================ +16:02:35 [ 1] [ 4] [0200] +16:02:35 [ 2] [ 16] [6213543000046614] +16:02:35 [ 3] [ 6] [011000] +16:02:35 [ 4] [ 12] [000100000000] +16:02:35 [ 7] [ 10] [0320160256] +16:02:35 [ 11] [ 6] [208380] +16:02:35 [ 12] [ 6] [160729] +16:02:35 [ 13] [ 4] [0320] +16:02:35 [ 14] [ 4] [4912] +16:02:35 [ 15] [ 4] [0320] +16:02:35 [ 18] [ 4] [6011] +16:02:35 [ 19] [ 3] [418] +16:02:35 [ 22] [ 3] [021] +16:02:35 [ 25] [ 2] [01] +16:02:35 [ 28] [ 9] [D00002000] +16:02:35 [ 32] [ 6] [198901] +16:02:35 [ 35] [ 32] [6213543000046614=491212014661063] +16:02:35 [ 37] [ 12] [507916208380] +16:02:35 [ 41] [ 8] [00002206] +16:02:35 [ 42] [ 15] [000000041002206] +16:02:35 [ 43] [ 40] [150 HOSPITAL VN ] +16:02:35 [ 49] [ 3] [418] +16:02:35 [ 52] [ 16] [250E7F6F4FC7B476] +16:02:35 ============================================================================ +16:02:35 + + +waiting on router queue for slot.... +16:02:35 Sending to : +16:02:35 ============================================================================ +16:02:35 Sending to : +16:02:35 ============================================================================ +16:02:35 ============================================================================ +16:02:35 Slot Id : <101> +16:02:35 Transaction Type : REQUEST +16:02:35 Received From : +16:02:35 ============================================================================ +16:02:35 FNo. Len. Field Value +16:02:35 ============================================================================ +16:02:35 [ 1] [ 4] [0200] +16:02:35 [ 2] [ 16] [6213543000046614] +16:02:35 [ 3] [ 6] [011000] +16:02:35 [ 4] [ 12] [000100000000] +16:02:35 [ 7] [ 10] [0320160256] +16:02:35 [ 11] [ 6] [208380] +16:02:35 [ 12] [ 6] [160729] +16:02:35 [ 13] [ 4] [0320] +16:02:35 [ 14] [ 4] [4912] +16:02:35 [ 15] [ 4] [0320] +16:02:35 [ 18] [ 4] [6011] +16:02:35 [ 19] [ 3] [418] +16:02:35 [ 22] [ 3] [021] +16:02:35 [ 25] [ 2] [01] +16:02:35 [ 28] [ 9] [D00002000] +16:02:35 [ 32] [ 6] [198901] +16:02:35 [ 35] [ 32] [6213543000046614=491212014661063] +16:02:35 [ 37] [ 12] [507916208380] +16:02:35 [ 41] [ 8] [00002206] +16:02:35 [ 42] [ 15] [000000041002206] +16:02:35 [ 43] [ 40] [150 HOSPITAL VN ] +16:02:35 [ 49] [ 3] [418] +16:02:35 [ 52] [ 16] [250E7F6F4FC7B476] +16:02:35 ============================================================================ +16:02:35 + + +waiting on router queue for slot.... +16:02:35 Sending to : +16:02:35 ============================================================================ +16:02:35 ============================================================================ +16:02:35 Slot Id : <101> +16:02:35 Transaction Type : REQUEST +16:02:35 Received From : +16:02:35 ============================================================================ +16:02:35 FNo. Len. Field Value +16:02:35 ============================================================================ +16:02:35 [ 1] [ 4] [0200] +16:02:35 [ 2] [ 16] [6213543000046614] +16:02:35 [ 3] [ 6] [011000] +16:02:35 [ 4] [ 12] [000100000000] +16:02:35 [ 7] [ 10] [0320160256] +16:02:35 [ 11] [ 6] [208380] +16:02:35 [ 12] [ 6] [160729] +16:02:35 [ 13] [ 4] [0320] +16:02:35 [ 14] [ 4] [4912] +16:02:35 [ 15] [ 4] [0320] +16:02:35 [ 18] [ 4] [6011] +16:02:35 [ 19] [ 3] [418] +16:02:35 [ 22] [ 3] [021] +16:02:35 [ 25] [ 2] [01] +16:02:35 [ 28] [ 9] [D00002000] +16:02:35 [ 32] [ 6] [198901] +16:02:35 [ 35] [ 32] [6213543000046614=491212014661063] +16:02:35 [ 37] [ 12] [507916208380] +16:02:35 [ 41] [ 8] [00002206] +16:02:35 [ 42] [ 15] [000000041002206] +16:02:35 [ 43] [ 40] [150 HOSPITAL VN ] +16:02:35 [ 49] [ 3] [418] +16:02:35 [ 52] [ 16] [F10796E0C3A60497] +16:02:35 ============================================================================ +16:02:35 + + +waiting on router queue for slot.... +16:02:35 Sending to : <0> +16:02:35 ============================================================================ +16:02:36 ============================================================================ +16:02:36 Slot Id : <77> +16:02:36 Transaction Type : REQUEST +16:02:36 Received From : +16:02:36 ============================================================================ +16:02:36 FNo. Len. Field Value +16:02:36 ============================================================================ +16:02:36 [ 1] [ 4] [0200] +16:02:36 [ 2] [ 16] [6688990106048307] +16:02:36 [ 3] [ 6] [010000] +16:02:36 [ 4] [ 12] [000100000000] +16:02:36 [ 7] [ 10] [0320160231] +16:02:36 [ 11] [ 6] [792076] +16:02:36 [ 12] [ 6] [160231] +16:02:36 [ 13] [ 4] [0320] +16:02:36 [ 15] [ 4] [0320] +16:02:36 [ 18] [ 4] [6011] +16:02:36 [ 22] [ 3] [900] +16:02:36 [ 25] [ 2] [02] +16:02:36 [ 28] [ 9] [D00002000] +16:02:36 [ 32] [ 6] [621354] +16:02:36 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:02:36 [ 37] [ 12] [507903499555] +16:02:36 [ 41] [ 8] [06002200] +16:02:36 [ 42] [ 15] [NATIVE ] +16:02:36 [ 43] [ 40] [Beng Market Beng LAO] +16:02:36 [ 49] [ 3] [418] +16:02:36 [ 52] [ 16] [45E374E56B31BCDA] +16:02:36 ============================================================================ +16:02:36 + + +waiting on router queue for slot.... +16:02:36 Sending to : +16:02:36 ============================================================================ +16:02:36 Sending to : +16:02:36 ============================================================================ +16:02:36 ============================================================================ +16:02:36 Slot Id : <71> +16:02:36 Transaction Type : REQUEST +16:02:36 Received From : +16:02:36 ============================================================================ +16:02:36 FNo. Len. Field Value +16:02:36 ============================================================================ +16:02:36 [ 1] [ 4] [0200] +16:02:36 [ 2] [ 16] [2206990000090308] +16:02:36 [ 3] [ 6] [011000] +16:02:36 [ 4] [ 12] [000015000000] +16:02:36 [ 7] [ 10] [0320160231] +16:02:36 [ 11] [ 6] [792077] +16:02:36 [ 12] [ 6] [160231] +16:02:36 [ 13] [ 4] [0320] +16:02:36 [ 15] [ 4] [0320] +16:02:36 [ 18] [ 4] [6011] +16:02:36 [ 22] [ 3] [900] +16:02:36 [ 25] [ 2] [02] +16:02:36 [ 28] [ 9] [D00002000] +16:02:36 [ 32] [ 6] [621354] +16:02:36 [ 35] [ 32] [2206990000090308=971012617352539] +16:02:36 [ 37] [ 12] [507904015526] +16:02:36 [ 41] [ 8] [01011700] +16:02:36 [ 42] [ 15] [NATIVE ] +16:02:36 [ 43] [ 40] [Souksavath College Xaythany LAO] +16:02:36 [ 49] [ 3] [418] +16:02:36 [ 52] [ 16] [42E5649E21449566] +16:02:36 ============================================================================ +16:02:36 + + +waiting on router queue for slot.... +16:02:36 Sending to : +16:02:36 ============================================================================ +16:02:36 Sending to : +16:02:36 ============================================================================ +16:02:36 ============================================================================ +16:02:36 Slot Id : <101> +16:02:36 Transaction Type : RESPONSE +16:02:36 Received From : +16:02:36 ============================================================================ +16:02:36 FNo. Len. Field Value +16:02:36 ============================================================================ +16:02:36 [ 1] [ 4] [0210] +16:02:36 [ 2] [ 16] [6213543000046614] +16:02:36 [ 3] [ 6] [011000] +16:02:36 [ 4] [ 12] [000100000000] +16:02:36 [ 7] [ 10] [0320160256] +16:02:36 [ 11] [ 6] [208380] +16:02:36 [ 12] [ 6] [160729] +16:02:36 [ 13] [ 4] [0320] +16:02:36 [ 15] [ 4] [0320] +16:02:36 [ 18] [ 4] [6011] +16:02:36 [ 19] [ 3] [418] +16:02:36 [ 32] [ 6] [198901] +16:02:36 [ 35] [ 32] [6213543000046614=491212014661063] +16:02:36 [ 37] [ 12] [507916208380] +16:02:36 [ 38] [ 6] [153309] +16:02:36 [ 39] [ 2] [00] +16:02:36 [ 41] [ 8] [00002206] +16:02:36 [ 49] [ 3] [418] +16:02:36 [ 54] [ 40] [1001418C0206597220031002418C020659722003] +16:02:36 ============================================================================ +16:02:36 Sending to : +16:02:36 ============================================================================ +16:02:36 + + +waiting on router queue for slot.... +16:02:36 ============================================================================ +16:02:36 Slot Id : <77> +16:02:36 Transaction Type : REQUEST +16:02:36 Received From : +16:02:36 ============================================================================ +16:02:36 FNo. Len. Field Value +16:02:36 ============================================================================ +16:02:36 [ 1] [ 4] [0200] +16:02:36 [ 2] [ 16] [6688990106048307] +16:02:36 [ 3] [ 6] [010000] +16:02:36 [ 4] [ 12] [000100000000] +16:02:36 [ 7] [ 10] [0320160231] +16:02:36 [ 11] [ 6] [792076] +16:02:36 [ 12] [ 6] [160231] +16:02:36 [ 13] [ 4] [0320] +16:02:36 [ 15] [ 4] [0320] +16:02:36 [ 18] [ 4] [6011] +16:02:36 [ 22] [ 3] [900] +16:02:36 [ 25] [ 2] [02] +16:02:36 [ 28] [ 9] [D00002000] +16:02:36 [ 32] [ 6] [621354] +16:02:36 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:02:36 [ 37] [ 12] [507903499555] +16:02:36 [ 41] [ 8] [06002200] +16:02:36 [ 42] [ 15] [NATIVE ] +16:02:36 [ 43] [ 40] [Beng Market Beng LAO] +16:02:36 [ 49] [ 3] [418] +16:02:36 [ 52] [ 16] [45E374E56B31BCDA] +16:02:36 ============================================================================ +16:02:36 + + +waiting on router queue for slot.... +16:02:36 Sending to : +16:02:36 ============================================================================ +16:02:36 ============================================================================ +16:02:36 Slot Id : <77> +16:02:36 Transaction Type : REQUEST +16:02:36 Received From : +16:02:36 ============================================================================ +16:02:36 FNo. Len. Field Value +16:02:36 ============================================================================ +16:02:36 [ 1] [ 4] [0200] +16:02:36 [ 2] [ 16] [6688990106048307] +16:02:36 [ 3] [ 6] [010000] +16:02:36 [ 4] [ 12] [000100000000] +16:02:36 [ 7] [ 10] [0320160231] +16:02:36 [ 11] [ 6] [792076] +16:02:36 [ 12] [ 6] [160231] +16:02:36 [ 13] [ 4] [0320] +16:02:36 [ 15] [ 4] [0320] +16:02:36 [ 18] [ 4] [6011] +16:02:36 [ 22] [ 3] [900] +16:02:36 [ 25] [ 2] [02] +16:02:36 [ 28] [ 9] [D00002000] +16:02:36 [ 32] [ 6] [621354] +16:02:36 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:02:36 [ 37] [ 12] [507903499555] +16:02:36 [ 41] [ 8] [06002200] +16:02:36 [ 42] [ 15] [NATIVE ] +16:02:36 [ 43] [ 40] [Beng Market Beng LAO] +16:02:36 [ 49] [ 3] [418] +16:02:36 [ 52] [ 16] [EEE2EF22101D8F18] +16:02:36 ============================================================================ +16:02:36 + + +waiting on router queue for slot.... +16:02:36 Sending to : <4> +16:02:36 ============================================================================ +16:02:37 ============================================================================ +16:02:37 Slot Id : <71> +16:02:37 Transaction Type : REQUEST +16:02:37 Received From : +16:02:37 ============================================================================ +16:02:37 FNo. Len. Field Value +16:02:37 ============================================================================ +16:02:37 [ 1] [ 4] [0200] +16:02:37 [ 2] [ 16] [2206990000090308] +16:02:37 [ 3] [ 6] [011000] +16:02:37 [ 4] [ 12] [000015000000] +16:02:37 [ 7] [ 10] [0320160231] +16:02:37 [ 11] [ 6] [792077] +16:02:37 [ 12] [ 6] [160231] +16:02:37 [ 13] [ 4] [0320] +16:02:37 [ 15] [ 4] [0320] +16:02:37 [ 18] [ 4] [6011] +16:02:37 [ 22] [ 3] [900] +16:02:37 [ 25] [ 2] [02] +16:02:37 [ 28] [ 9] [D00002000] +16:02:37 [ 32] [ 6] [621354] +16:02:37 [ 35] [ 32] [2206990000090308=971012617352539] +16:02:37 [ 37] [ 12] [507904015526] +16:02:37 [ 41] [ 8] [01011700] +16:02:37 [ 42] [ 15] [NATIVE ] +16:02:37 [ 43] [ 40] [Souksavath College Xaythany LAO] +16:02:37 [ 49] [ 3] [418] +16:02:37 [ 52] [ 16] [42E5649E21449566] +16:02:37 ============================================================================ +16:02:37 + + +waiting on router queue for slot.... +16:02:37 Sending to : +16:02:37 ============================================================================ +16:02:37 ============================================================================ +16:02:37 Slot Id : <71> +16:02:37 Transaction Type : REQUEST +16:02:37 Received From : +16:02:37 ============================================================================ +16:02:37 FNo. Len. Field Value +16:02:37 ============================================================================ +16:02:37 [ 1] [ 4] [0200] +16:02:37 [ 2] [ 16] [2206990000090308] +16:02:37 [ 3] [ 6] [011000] +16:02:37 [ 4] [ 12] [000015000000] +16:02:37 [ 7] [ 10] [0320160231] +16:02:37 [ 11] [ 6] [792077] +16:02:37 [ 12] [ 6] [160231] +16:02:37 [ 13] [ 4] [0320] +16:02:37 [ 15] [ 4] [0320] +16:02:37 [ 18] [ 4] [6011] +16:02:37 [ 22] [ 3] [900] +16:02:37 [ 25] [ 2] [02] +16:02:37 [ 28] [ 9] [D00002000] +16:02:37 [ 32] [ 6] [621354] +16:02:37 [ 35] [ 32] [2206990000090308=971012617352539] +16:02:37 [ 37] [ 12] [507904015526] +16:02:37 [ 41] [ 8] [01011700] +16:02:37 [ 42] [ 15] [NATIVE ] +16:02:37 [ 43] [ 40] [Souksavath College Xaythany LAO] +16:02:37 [ 49] [ 3] [418] +16:02:37 [ 52] [ 16] [E5922787A9A6C1CB] +16:02:37 ============================================================================ +16:02:37 + + +waiting on router queue for slot.... +16:02:37 Sending to : <1> +16:02:37 ============================================================================ +16:02:38 ============================================================================ +16:02:38 Slot Id : <77> +16:02:38 Transaction Type : RESPONSE +16:02:38 Received From : +16:02:38 ============================================================================ +16:02:38 FNo. Len. Field Value +16:02:38 ============================================================================ +16:02:38 [ 1] [ 4] [0210] +16:02:38 [ 2] [ 16] [6688990106048307] +16:02:38 [ 3] [ 6] [010000] +16:02:38 [ 4] [ 12] [000100000000] +16:02:38 [ 11] [ 6] [792076] +16:02:38 [ 12] [ 6] [160231] +16:02:38 [ 15] [ 4] [0320] +16:02:38 [ 18] [ 4] [6011] +16:02:38 [ 32] [ 6] [621354] +16:02:38 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:02:38 [ 37] [ 12] [507903499555] +16:02:38 [ 38] [ 6] [941808] +16:02:38 [ 39] [ 2] [00] +16:02:38 [ 41] [ 8] [06002200] +16:02:38 [ 49] [ 3] [418] +16:02:38 [ 54] [ 20] [0002418C000195218446] +16:02:38 ============================================================================ +16:02:38 Sending to : +16:02:38 ============================================================================ +16:02:38 + + +waiting on router queue for slot.... +16:02:38 ============================================================================ +16:02:38 Slot Id : <101> +16:02:38 Transaction Type : RESPONSE +16:02:38 Received From : +16:02:38 ============================================================================ +16:02:38 FNo. Len. Field Value +16:02:38 ============================================================================ +16:02:38 [ 1] [ 4] [0210] +16:02:38 [ 2] [ 16] [6213543000046614] +16:02:38 [ 3] [ 6] [011000] +16:02:38 [ 4] [ 12] [000100000000] +16:02:38 [ 7] [ 10] [0320160256] +16:02:38 [ 11] [ 6] [208380] +16:02:38 [ 12] [ 6] [160729] +16:02:38 [ 13] [ 4] [0320] +16:02:38 [ 15] [ 4] [0320] +16:02:38 [ 18] [ 4] [6011] +16:02:38 [ 19] [ 3] [418] +16:02:38 [ 32] [ 6] [198901] +16:02:38 [ 35] [ 32] [6213543000046614=491212014661063] +16:02:38 [ 37] [ 12] [507916208380] +16:02:38 [ 38] [ 6] [153309] +16:02:38 [ 39] [ 2] [00] +16:02:38 [ 41] [ 8] [00002206] +16:02:38 [ 49] [ 3] [418] +16:02:38 [ 54] [ 40] [1001418C0206597220031002418C020659722003] +16:02:38 ============================================================================ +16:02:38 Calculate Source COMM Id = 5 +16:02:38 ============================================================================ +16:02:38 + + +waiting on router queue for slot.... +16:02:39 ============================================================================ +16:02:39 Slot Id : <109> +16:02:39 Transaction Type : REQUEST +16:02:39 Received From : +16:02:39 ============================================================================ +16:02:39 FNo. Len. Field Value +16:02:39 ============================================================================ +16:02:39 [ 1] [ 4] [0200] +16:02:39 [ 2] [ 16] [6213541000640352] +16:02:39 [ 3] [ 6] [010000] +16:02:39 [ 4] [ 12] [000050000000] +16:02:39 [ 7] [ 10] [0320160029] +16:02:39 [ 11] [ 6] [950923] +16:02:39 [ 12] [ 6] [160029] +16:02:39 [ 13] [ 4] [0320] +16:02:39 [ 15] [ 4] [0320] +16:02:39 [ 18] [ 4] [6011] +16:02:39 [ 19] [ 3] [418] +16:02:39 [ 22] [ 3] [021] +16:02:39 [ 25] [ 2] [01] +16:02:39 [ 28] [ 9] [D00002000] +16:02:39 [ 32] [ 6] [668899] +16:02:39 [ 35] [ 32] [6213541000640352=491212014035757] +16:02:39 [ 37] [ 12] [507902093379] +16:02:39 [ 41] [ 8] [03020021] +16:02:39 [ 42] [ 15] [APT ] +16:02:39 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:02:39 [ 49] [ 3] [418] +16:02:39 [ 52] [ 16] [8A19512C2D11A3CA] +16:02:39 ============================================================================ +16:02:39 + + +waiting on router queue for slot.... +16:02:39 Sending to : +16:02:39 ============================================================================ +16:02:39 Sending to : +16:02:39 ============================================================================ +16:02:39 ============================================================================ +16:02:39 Slot Id : <70> +16:02:39 Transaction Type : REQUEST +16:02:39 Received From : +16:02:39 ============================================================================ +16:02:39 FNo. Len. Field Value +16:02:39 ============================================================================ +16:02:39 [ 1] [ 4] [0800] +16:02:39 [ 7] [ 10] [0320090145] +16:02:39 [ 11] [ 6] [157152] +16:02:39 [ 70] [ 3] [301] +16:02:39 ============================================================================ +16:02:39 + + +waiting on router queue for slot.... +16:02:39 Sending to : +16:02:39 ============================================================================ +16:02:39 ============================================================================ +16:02:39 Slot Id : <70> +16:02:39 Transaction Type : RESPONSE +16:02:39 Received From : +16:02:39 ============================================================================ +16:02:39 FNo. Len. Field Value +16:02:39 ============================================================================ +16:02:39 [ 1] [ 4] [0810] +16:02:39 [ 7] [ 10] [0320090145] +16:02:39 [ 11] [ 6] [157152] +16:02:39 [ 39] [ 2] [00] +16:02:39 [ 70] [ 3] [301] +16:02:39 ============================================================================ +16:02:39 Calculate Source COMM Id = 2 +16:02:39 ============================================================================ +16:02:39 + + +waiting on router queue for slot.... +16:02:39 ============================================================================ +16:02:39 Slot Id : <109> +16:02:39 Transaction Type : REQUEST +16:02:39 Received From : +16:02:39 ============================================================================ +16:02:39 FNo. Len. Field Value +16:02:39 ============================================================================ +16:02:39 [ 1] [ 4] [0200] +16:02:39 [ 2] [ 16] [6213541000640352] +16:02:39 [ 3] [ 6] [010000] +16:02:39 [ 4] [ 12] [000050000000] +16:02:39 [ 7] [ 10] [0320160029] +16:02:39 [ 11] [ 6] [950923] +16:02:39 [ 12] [ 6] [160029] +16:02:39 [ 13] [ 4] [0320] +16:02:39 [ 15] [ 4] [0320] +16:02:39 [ 18] [ 4] [6011] +16:02:39 [ 19] [ 3] [418] +16:02:39 [ 22] [ 3] [021] +16:02:39 [ 25] [ 2] [01] +16:02:39 [ 28] [ 9] [D00002000] +16:02:39 [ 32] [ 6] [668899] +16:02:39 [ 35] [ 32] [6213541000640352=491212014035757] +16:02:39 [ 37] [ 12] [507902093379] +16:02:39 [ 41] [ 8] [03020021] +16:02:39 [ 42] [ 15] [APT ] +16:02:39 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:02:39 [ 49] [ 3] [418] +16:02:39 [ 52] [ 16] [8A19512C2D11A3CA] +16:02:39 ============================================================================ +16:02:39 + + +waiting on router queue for slot.... +16:02:39 Sending to : +16:02:39 ============================================================================ +16:02:39 ============================================================================ +16:02:39 Slot Id : <109> +16:02:39 Transaction Type : REQUEST +16:02:39 Received From : +16:02:39 ============================================================================ +16:02:39 FNo. Len. Field Value +16:02:39 ============================================================================ +16:02:39 [ 1] [ 4] [0200] +16:02:39 [ 2] [ 16] [6213541000640352] +16:02:39 [ 3] [ 6] [010000] +16:02:39 [ 4] [ 12] [000050000000] +16:02:39 [ 7] [ 10] [0320160029] +16:02:39 [ 11] [ 6] [950923] +16:02:39 [ 12] [ 6] [160029] +16:02:39 [ 13] [ 4] [0320] +16:02:39 [ 15] [ 4] [0320] +16:02:39 [ 18] [ 4] [6011] +16:02:39 [ 19] [ 3] [418] +16:02:39 [ 22] [ 3] [021] +16:02:39 [ 25] [ 2] [01] +16:02:39 [ 28] [ 9] [D00002000] +16:02:39 [ 32] [ 6] [668899] +16:02:39 [ 35] [ 32] [6213541000640352=491212014035757] +16:02:39 [ 37] [ 12] [507902093379] +16:02:39 [ 41] [ 8] [03020021] +16:02:39 [ 42] [ 15] [APT ] +16:02:39 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:02:39 [ 49] [ 3] [418] +16:02:39 [ 52] [ 16] [8A6597C171317FB1] +16:02:39 ============================================================================ +16:02:39 + + +waiting on router queue for slot.... +16:02:39 Sending to : <0> +16:02:39 ============================================================================ +16:02:39 ============================================================================ +16:02:39 Slot Id : <71> +16:02:39 Transaction Type : RESPONSE +16:02:39 Received From : +16:02:39 ============================================================================ +16:02:39 FNo. Len. Field Value +16:02:39 ============================================================================ +16:02:39 [ 1] [ 4] [0210] +16:02:39 [ 2] [ 16] [2206990000090308] +16:02:39 [ 3] [ 6] [011000] +16:02:39 [ 4] [ 12] [000015000000] +16:02:39 [ 7] [ 10] [0320160231] +16:02:39 [ 11] [ 6] [792077] +16:02:39 [ 12] [ 6] [160231] +16:02:39 [ 13] [ 4] [0320] +16:02:39 [ 15] [ 4] [0320] +16:02:39 [ 18] [ 4] [6011] +16:02:39 [ 32] [ 6] [621354] +16:02:39 [ 35] [ 32] [2206990000090308=971012617352539] +16:02:39 [ 37] [ 12] [507904015526] +16:02:39 [ 38] [ 6] [132611] +16:02:39 [ 39] [ 2] [00] +16:02:39 [ 41] [ 8] [01011700] +16:02:39 [ 49] [ 3] [418] +16:02:39 [ 54] [ 40] [1001418C0000269227001002418C000026922700] +16:02:39 ============================================================================ +16:02:39 Sending to : +16:02:39 ============================================================================ +16:02:39 + + +waiting on router queue for slot.... +16:02:39 ============================================================================ +16:02:39 Slot Id : <109> +16:02:39 Transaction Type : RESPONSE +16:02:39 Received From : +16:02:39 ============================================================================ +16:02:39 FNo. Len. Field Value +16:02:39 ============================================================================ +16:02:39 [ 1] [ 4] [0210] +16:02:39 [ 2] [ 16] [6213541000640352] +16:02:39 [ 3] [ 6] [010000] +16:02:39 [ 4] [ 12] [000050000000] +16:02:39 [ 7] [ 10] [0320160029] +16:02:39 [ 11] [ 6] [950923] +16:02:39 [ 12] [ 6] [160029] +16:02:39 [ 13] [ 4] [0320] +16:02:39 [ 15] [ 4] [0320] +16:02:39 [ 18] [ 4] [6011] +16:02:39 [ 19] [ 3] [418] +16:02:39 [ 22] [ 3] [021] +16:02:39 [ 32] [ 6] [668899] +16:02:39 [ 35] [ 32] [6213541000640352=491212014035757] +16:02:39 [ 37] [ 12] [507902093379] +16:02:39 [ 38] [ 6] [160234] +16:02:39 [ 39] [ 2] [55] +16:02:39 [ 41] [ 8] [03020021] +16:02:39 [ 49] [ 3] [418] +16:02:39 ============================================================================ +16:02:39 Sending to : +16:02:39 ============================================================================ +16:02:39 + + +waiting on router queue for slot.... +16:02:39 ============================================================================ +16:02:39 Slot Id : <77> +16:02:39 Transaction Type : RESPONSE +16:02:39 Received From : +16:02:39 ============================================================================ +16:02:39 FNo. Len. Field Value +16:02:39 ============================================================================ +16:02:39 [ 1] [ 4] [0210] +16:02:39 [ 2] [ 16] [6688990106048307] +16:02:39 [ 3] [ 6] [010000] +16:02:39 [ 4] [ 12] [000100000000] +16:02:39 [ 11] [ 6] [792076] +16:02:39 [ 12] [ 6] [160231] +16:02:39 [ 15] [ 4] [0320] +16:02:39 [ 18] [ 4] [6011] +16:02:39 [ 32] [ 6] [621354] +16:02:39 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:02:39 [ 37] [ 12] [507903499555] +16:02:39 [ 38] [ 6] [941808] +16:02:39 [ 39] [ 2] [00] +16:02:39 [ 41] [ 8] [06002200] +16:02:39 [ 49] [ 3] [418] +16:02:39 [ 54] [ 20] [0002418C000195218446] +16:02:39 ============================================================================ +16:02:39 Calculate Source COMM Id = 0 +16:02:39 ============================================================================ +16:02:39 + + +waiting on router queue for slot.... +16:02:40 ============================================================================ +16:02:40 Slot Id : <109> +16:02:40 Transaction Type : RESPONSE +16:02:40 Received From : +16:02:40 ============================================================================ +16:02:40 FNo. Len. Field Value +16:02:40 ============================================================================ +16:02:40 [ 1] [ 4] [0210] +16:02:40 [ 2] [ 16] [6213541000640352] +16:02:40 [ 3] [ 6] [010000] +16:02:40 [ 4] [ 12] [000050000000] +16:02:40 [ 7] [ 10] [0320160029] +16:02:40 [ 11] [ 6] [950923] +16:02:40 [ 12] [ 6] [160029] +16:02:40 [ 13] [ 4] [0320] +16:02:40 [ 15] [ 4] [0320] +16:02:40 [ 18] [ 4] [6011] +16:02:40 [ 19] [ 3] [418] +16:02:40 [ 22] [ 3] [021] +16:02:40 [ 32] [ 6] [668899] +16:02:40 [ 35] [ 32] [6213541000640352=491212014035757] +16:02:40 [ 37] [ 12] [507902093379] +16:02:40 [ 38] [ 6] [160234] +16:02:40 [ 39] [ 2] [55] +16:02:40 [ 41] [ 8] [03020021] +16:02:40 [ 49] [ 3] [418] +16:02:40 ============================================================================ +16:02:40 Calculate Source COMM Id = 4 +16:02:40 ============================================================================ +16:02:40 + + +waiting on router queue for slot.... +16:02:41 ============================================================================ +16:02:41 Slot Id : <102> +16:02:41 Transaction Type : REQUEST +16:02:41 Received From : +16:02:41 ============================================================================ +16:02:41 FNo. Len. Field Value +16:02:41 ============================================================================ +16:02:41 [ 1] [ 4] [0800] +16:02:41 [ 2] [ 5] [02531] +16:02:41 [ 3] [ 6] [579168] +16:02:41 [ 7] [ 10] [0320090241] +16:02:41 [ 11] [ 6] [807343] +16:02:41 [ 15] [ 10] [0320090241] +16:02:41 [ 37] [ 11] [57916807343] +16:02:41 [ 70] [ 3] [001] +16:02:41 ============================================================================ +16:02:41 + + +waiting on router queue for slot.... +16:02:41 ============================================================================ +16:02:41 Slot Id : <102> +16:02:41 Transaction Type : RESPONSE +16:02:41 Received From : +16:02:41 ============================================================================ +16:02:41 FNo. Len. Field Value +16:02:41 ============================================================================ +16:02:41 [ 1] [ 4] [0810] +16:02:41 [ 7] [ 10] [0320090241] +16:02:41 [ 11] [ 6] [807343] +16:02:41 [ 15] [ 4] [0320] +16:02:41 [ 37] [ 12] [57916807343] +16:02:41 [ 39] [ 2] [00] +16:02:41 [ 70] [ 3] [001] +16:02:41 ============================================================================ +16:02:41 Sending to : +16:02:41 ============================================================================ +16:02:41 + + +waiting on router queue for slot.... +16:02:42 ============================================================================ +16:02:42 Slot Id : <71> +16:02:42 Transaction Type : RESPONSE +16:02:42 Received From : +16:02:42 ============================================================================ +16:02:42 FNo. Len. Field Value +16:02:42 ============================================================================ +16:02:42 [ 1] [ 4] [0210] +16:02:42 [ 2] [ 16] [2206990000090308] +16:02:42 [ 3] [ 6] [011000] +16:02:42 [ 4] [ 12] [000015000000] +16:02:42 [ 7] [ 10] [0320160231] +16:02:42 [ 11] [ 6] [792077] +16:02:42 [ 12] [ 6] [160231] +16:02:42 [ 13] [ 4] [0320] +16:02:42 [ 15] [ 4] [0320] +16:02:42 [ 18] [ 4] [6011] +16:02:42 [ 32] [ 6] [621354] +16:02:42 [ 35] [ 32] [2206990000090308=971012617352539] +16:02:42 [ 37] [ 12] [507904015526] +16:02:42 [ 38] [ 6] [132611] +16:02:42 [ 39] [ 2] [00] +16:02:42 [ 41] [ 8] [01011700] +16:02:42 [ 49] [ 3] [418] +16:02:42 [ 54] [ 40] [1001418C0000269227001002418C000026922700] +16:02:42 ============================================================================ +16:02:42 Calculate Source COMM Id = 0 +16:02:42 ============================================================================ +16:02:42 + + +waiting on router queue for slot.... +16:02:53 ============================================================================ +16:02:53 Slot Id : <136> +16:02:53 Transaction Type : REQUEST +16:02:53 Received From : +16:02:53 ============================================================================ +16:02:53 FNo. Len. Field Value +16:02:53 ============================================================================ +16:02:53 [ 1] [ 4] [0800] +16:02:53 [ 7] [ 10] [0320090200] +16:02:53 [ 11] [ 6] [157153] +16:02:53 [ 70] [ 3] [301] +16:02:53 ============================================================================ +16:02:53 + + +waiting on router queue for slot.... +16:02:53 Sending to : +16:02:53 ============================================================================ +16:02:53 ============================================================================ +16:02:53 Slot Id : <136> +16:02:53 Transaction Type : RESPONSE +16:02:53 Received From : +16:02:53 ============================================================================ +16:02:53 FNo. Len. Field Value +16:02:53 ============================================================================ +16:02:53 [ 1] [ 4] [0810] +16:02:53 [ 7] [ 10] [0320090200] +16:02:53 [ 11] [ 6] [157153] +16:02:53 [ 39] [ 2] [00] +16:02:53 [ 70] [ 3] [301] +16:02:53 ============================================================================ +16:02:53 Calculate Source COMM Id = 2 +16:02:53 ============================================================================ +16:02:53 + + +waiting on router queue for slot.... +16:02:57 ============================================================================ +16:02:57 Slot Id : <85> +16:02:57 Transaction Type : REQUEST +16:02:57 Received From : +16:02:57 ============================================================================ +16:02:57 FNo. Len. Field Value +16:02:57 ============================================================================ +16:02:57 [ 1] [ 4] [0800] +16:02:57 [ 7] [ 10] [0320231446] +16:02:57 [ 11] [ 6] [161446] +16:02:57 [ 37] [ 12] [57916161446] +16:02:57 [ 70] [ 3] [301] +16:02:57 ============================================================================ +16:02:57 + + +waiting on router queue for slot.... +16:02:57 Sending to : +16:02:57 ============================================================================ +16:02:57 ============================================================================ +16:02:57 Slot Id : <85> +16:02:57 Transaction Type : RESPONSE +16:02:57 Received From : +16:02:57 ============================================================================ +16:02:57 FNo. Len. Field Value +16:02:57 ============================================================================ +16:02:57 [ 1] [ 4] [0810] +16:02:57 [ 7] [ 10] [0320231446] +16:02:57 [ 11] [ 6] [161446] +16:02:57 [ 37] [ 12] [579161614460] +16:02:57 [ 39] [ 2] [00] +16:02:57 [ 70] [ 3] [810] +16:02:57 ============================================================================ +16:02:57 Calculate Source COMM Id = 6 +16:02:57 ============================================================================ +16:02:57 + + +waiting on router queue for slot.... +16:03:03 ============================================================================ +16:03:03 Slot Id : <129> +16:03:03 Transaction Type : REQUEST +16:03:03 Received From : +16:03:03 ============================================================================ +16:03:03 FNo. Len. Field Value +16:03:03 ============================================================================ +16:03:03 [ 1] [ 4] [0200] +16:03:03 [ 2] [ 16] [6688990103535801] +16:03:03 [ 3] [ 6] [010000] +16:03:03 [ 4] [ 12] [000010000000] +16:03:03 [ 7] [ 10] [0320160256] +16:03:03 [ 11] [ 6] [792171] +16:03:03 [ 12] [ 6] [160256] +16:03:03 [ 13] [ 4] [0320] +16:03:03 [ 15] [ 4] [0320] +16:03:03 [ 18] [ 4] [6011] +16:03:03 [ 22] [ 3] [900] +16:03:03 [ 25] [ 2] [02] +16:03:03 [ 28] [ 9] [D00002000] +16:03:03 [ 32] [ 6] [621354] +16:03:03 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:03:03 [ 37] [ 12] [507903345172] +16:03:03 [ 41] [ 8] [13001400] +16:03:03 [ 42] [ 15] [NATIVE ] +16:03:03 [ 43] [ 40] [Kham Unit Kham LAO] +16:03:03 [ 49] [ 3] [418] +16:03:03 [ 52] [ 16] [5B2DE7A8572AD9BA] +16:03:03 ============================================================================ +16:03:03 + + +waiting on router queue for slot.... +16:03:03 Sending to : +16:03:03 ============================================================================ +16:03:03 Sending to : +16:03:03 ============================================================================ +16:03:03 ============================================================================ +16:03:03 Slot Id : <129> +16:03:03 Transaction Type : REQUEST +16:03:03 Received From : +16:03:03 ============================================================================ +16:03:03 FNo. Len. Field Value +16:03:03 ============================================================================ +16:03:03 [ 1] [ 4] [0200] +16:03:03 [ 2] [ 16] [6688990103535801] +16:03:03 [ 3] [ 6] [010000] +16:03:03 [ 4] [ 12] [000010000000] +16:03:03 [ 7] [ 10] [0320160256] +16:03:03 [ 11] [ 6] [792171] +16:03:03 [ 12] [ 6] [160256] +16:03:03 [ 13] [ 4] [0320] +16:03:03 [ 15] [ 4] [0320] +16:03:03 [ 18] [ 4] [6011] +16:03:03 [ 22] [ 3] [900] +16:03:03 [ 25] [ 2] [02] +16:03:03 [ 28] [ 9] [D00002000] +16:03:03 [ 32] [ 6] [621354] +16:03:03 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:03:03 [ 37] [ 12] [507903345172] +16:03:03 [ 41] [ 8] [13001400] +16:03:03 [ 42] [ 15] [NATIVE ] +16:03:03 [ 43] [ 40] [Kham Unit Kham LAO] +16:03:03 [ 49] [ 3] [418] +16:03:03 [ 52] [ 16] [5B2DE7A8572AD9BA] +16:03:03 ============================================================================ +16:03:03 + + +waiting on router queue for slot.... +16:03:03 Sending to : +16:03:03 ============================================================================ +16:03:03 ============================================================================ +16:03:03 Slot Id : <129> +16:03:03 Transaction Type : REQUEST +16:03:03 Received From : +16:03:03 ============================================================================ +16:03:03 FNo. Len. Field Value +16:03:03 ============================================================================ +16:03:03 [ 1] [ 4] [0200] +16:03:03 [ 2] [ 16] [6688990103535801] +16:03:03 [ 3] [ 6] [010000] +16:03:03 [ 4] [ 12] [000010000000] +16:03:03 [ 7] [ 10] [0320160256] +16:03:03 [ 11] [ 6] [792171] +16:03:03 [ 12] [ 6] [160256] +16:03:03 [ 13] [ 4] [0320] +16:03:03 [ 15] [ 4] [0320] +16:03:03 [ 18] [ 4] [6011] +16:03:03 [ 22] [ 3] [900] +16:03:03 [ 25] [ 2] [02] +16:03:03 [ 28] [ 9] [D00002000] +16:03:03 [ 32] [ 6] [621354] +16:03:03 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:03:03 [ 37] [ 12] [507903345172] +16:03:03 [ 41] [ 8] [13001400] +16:03:03 [ 42] [ 15] [NATIVE ] +16:03:03 [ 43] [ 40] [Kham Unit Kham LAO] +16:03:03 [ 49] [ 3] [418] +16:03:03 [ 52] [ 16] [94F1DA98B734B350] +16:03:03 ============================================================================ +16:03:03 + + +waiting on router queue for slot.... +16:03:03 Sending to : <4> +16:03:03 ============================================================================ +16:03:04 ============================================================================ +16:03:04 Slot Id : <87> +16:03:04 Transaction Type : REQUEST +16:03:04 Received From : +16:03:04 ============================================================================ +16:03:04 FNo. Len. Field Value +16:03:04 ============================================================================ +16:03:04 [ 1] [ 4] [0800] +16:03:04 [ 7] [ 10] [0320090211] +16:03:04 [ 11] [ 6] [157154] +16:03:04 [ 70] [ 3] [301] +16:03:04 ============================================================================ +16:03:04 + + +waiting on router queue for slot.... +16:03:04 Sending to : +16:03:04 ============================================================================ +16:03:04 ============================================================================ +16:03:04 Slot Id : <87> +16:03:04 Transaction Type : RESPONSE +16:03:04 Received From : +16:03:04 ============================================================================ +16:03:04 FNo. Len. Field Value +16:03:04 ============================================================================ +16:03:04 [ 1] [ 4] [0810] +16:03:04 [ 7] [ 10] [0320090211] +16:03:04 [ 11] [ 6] [157154] +16:03:04 [ 39] [ 2] [00] +16:03:04 [ 70] [ 3] [301] +16:03:04 ============================================================================ +16:03:04 Calculate Source COMM Id = 2 +16:03:04 ============================================================================ +16:03:04 + + +waiting on router queue for slot.... +16:03:05 ============================================================================ +16:03:05 Slot Id : <129> +16:03:05 Transaction Type : RESPONSE +16:03:05 Received From : +16:03:05 ============================================================================ +16:03:05 FNo. Len. Field Value +16:03:05 ============================================================================ +16:03:05 [ 1] [ 4] [0210] +16:03:05 [ 2] [ 16] [6688990103535801] +16:03:05 [ 3] [ 6] [010000] +16:03:05 [ 4] [ 12] [000010000000] +16:03:05 [ 11] [ 6] [792171] +16:03:05 [ 12] [ 6] [160256] +16:03:05 [ 15] [ 4] [0320] +16:03:05 [ 18] [ 4] [6011] +16:03:05 [ 32] [ 6] [621354] +16:03:05 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:03:05 [ 37] [ 12] [507903345172] +16:03:05 [ 38] [ 6] [956269] +16:03:05 [ 39] [ 2] [00] +16:03:05 [ 41] [ 8] [13001400] +16:03:05 [ 49] [ 3] [418] +16:03:05 [ 54] [ 20] [0002418C000307697076] +16:03:05 ============================================================================ +16:03:05 Sending to : +16:03:05 ============================================================================ +16:03:05 + + +waiting on router queue for slot.... +16:03:06 ============================================================================ +16:03:06 Slot Id : <129> +16:03:06 Transaction Type : RESPONSE +16:03:06 Received From : +16:03:06 ============================================================================ +16:03:06 FNo. Len. Field Value +16:03:06 ============================================================================ +16:03:06 [ 1] [ 4] [0210] +16:03:06 [ 2] [ 16] [6688990103535801] +16:03:06 [ 3] [ 6] [010000] +16:03:06 [ 4] [ 12] [000010000000] +16:03:06 [ 11] [ 6] [792171] +16:03:06 [ 12] [ 6] [160256] +16:03:06 [ 15] [ 4] [0320] +16:03:06 [ 18] [ 4] [6011] +16:03:06 [ 32] [ 6] [621354] +16:03:06 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:03:06 [ 37] [ 12] [507903345172] +16:03:06 [ 38] [ 6] [956269] +16:03:06 [ 39] [ 2] [00] +16:03:06 [ 41] [ 8] [13001400] +16:03:06 [ 49] [ 3] [418] +16:03:06 [ 54] [ 20] [0002418C000307697076] +16:03:06 ============================================================================ +16:03:06 Calculate Source COMM Id = 0 +16:03:06 ============================================================================ +16:03:06 + + +waiting on router queue for slot.... +16:03:14 ============================================================================ +16:03:14 Slot Id : <105> +16:03:14 Transaction Type : REQUEST +16:03:14 Received From : +16:03:14 ============================================================================ +16:03:14 FNo. Len. Field Value +16:03:14 ============================================================================ +16:03:14 [ 1] [ 4] [0800] +16:03:14 [ 7] [ 10] [0320090221] +16:03:14 [ 11] [ 6] [157155] +16:03:14 [ 70] [ 3] [301] +16:03:14 ============================================================================ +16:03:14 + + +waiting on router queue for slot.... +16:03:14 Sending to : +16:03:14 ============================================================================ +16:03:14 ============================================================================ +16:03:14 Slot Id : <105> +16:03:14 Transaction Type : RESPONSE +16:03:14 Received From : +16:03:14 ============================================================================ +16:03:14 FNo. Len. Field Value +16:03:14 ============================================================================ +16:03:14 [ 1] [ 4] [0810] +16:03:14 [ 7] [ 10] [0320090221] +16:03:14 [ 11] [ 6] [157155] +16:03:14 [ 39] [ 2] [00] +16:03:14 [ 70] [ 3] [301] +16:03:14 ============================================================================ +16:03:14 Calculate Source COMM Id = 2 +16:03:14 ============================================================================ +16:03:14 + + +waiting on router queue for slot.... +16:03:24 ============================================================================ +16:03:24 Slot Id : <131> +16:03:24 Transaction Type : REQUEST +16:03:24 Received From : +16:03:24 ============================================================================ +16:03:24 FNo. Len. Field Value +16:03:24 ============================================================================ +16:03:24 [ 1] [ 4] [0800] +16:03:24 [ 7] [ 10] [0320090231] +16:03:24 [ 11] [ 6] [157156] +16:03:24 [ 70] [ 3] [301] +16:03:24 ============================================================================ +16:03:24 + + +waiting on router queue for slot.... +16:03:24 Sending to : +16:03:24 ============================================================================ +16:03:24 ============================================================================ +16:03:24 Slot Id : <131> +16:03:24 Transaction Type : RESPONSE +16:03:24 Received From : +16:03:24 ============================================================================ +16:03:24 FNo. Len. Field Value +16:03:24 ============================================================================ +16:03:24 [ 1] [ 4] [0810] +16:03:24 [ 7] [ 10] [0320090231] +16:03:24 [ 11] [ 6] [157156] +16:03:24 [ 39] [ 2] [00] +16:03:24 [ 70] [ 3] [301] +16:03:24 ============================================================================ +16:03:24 Calculate Source COMM Id = 2 +16:03:24 ============================================================================ +16:03:24 + + +waiting on router queue for slot.... +16:03:24 ============================================================================ +16:03:24 Slot Id : <138> +16:03:24 Transaction Type : REQUEST +16:03:24 Received From : +16:03:24 ============================================================================ +16:03:24 FNo. Len. Field Value +16:03:24 ============================================================================ +16:03:24 [ 1] [ 4] [0200] +16:03:24 [ 2] [ 16] [6688990105652406] +16:03:24 [ 3] [ 6] [010000] +16:03:24 [ 4] [ 12] [000050000000] +16:03:24 [ 7] [ 10] [0320160319] +16:03:24 [ 11] [ 6] [792264] +16:03:24 [ 12] [ 6] [160319] +16:03:24 [ 13] [ 4] [0320] +16:03:24 [ 15] [ 4] [0320] +16:03:24 [ 18] [ 4] [6011] +16:03:24 [ 22] [ 3] [900] +16:03:24 [ 25] [ 2] [02] +16:03:24 [ 28] [ 9] [D00002000] +16:03:24 [ 32] [ 6] [621354] +16:03:24 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:03:24 [ 37] [ 12] [507904635797] +16:03:24 [ 41] [ 8] [17000800] +16:03:24 [ 42] [ 15] [NATIVE ] +16:03:24 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:03:24 [ 49] [ 3] [418] +16:03:24 [ 52] [ 16] [64C297C18B391997] +16:03:24 ============================================================================ +16:03:24 + + +waiting on router queue for slot.... +16:03:24 Sending to : +16:03:24 ============================================================================ +16:03:24 Sending to : +16:03:24 ============================================================================ +16:03:24 ============================================================================ +16:03:24 Slot Id : <116> +16:03:24 Transaction Type : REQUEST +16:03:24 Received From : +16:03:24 ============================================================================ +16:03:24 FNo. Len. Field Value +16:03:24 ============================================================================ +16:03:24 [ 1] [ 4] [0200] +16:03:24 [ 2] [ 16] [6213544001763934] +16:03:24 [ 3] [ 6] [010000] +16:03:24 [ 4] [ 12] [000020000000] +16:03:24 [ 7] [ 10] [0320160114] +16:03:24 [ 11] [ 6] [950948] +16:03:24 [ 12] [ 6] [160114] +16:03:24 [ 13] [ 4] [0320] +16:03:24 [ 15] [ 4] [0320] +16:03:24 [ 18] [ 4] [6011] +16:03:24 [ 19] [ 3] [418] +16:03:24 [ 22] [ 3] [021] +16:03:24 [ 25] [ 2] [01] +16:03:24 [ 28] [ 9] [D00002000] +16:03:24 [ 32] [ 6] [668899] +16:03:24 [ 35] [ 32] [6213544001763934=491212016393596] +16:03:24 [ 37] [ 12] [507902093381] +16:03:24 [ 41] [ 8] [03020021] +16:03:24 [ 42] [ 15] [APT ] +16:03:24 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:03:24 [ 49] [ 3] [418] +16:03:24 [ 52] [ 16] [8FB2AA63AAE18DF9] +16:03:24 ============================================================================ +16:03:24 + + +waiting on router queue for slot.... +16:03:24 Sending to : +16:03:24 ============================================================================ +16:03:24 Sending to : +16:03:24 ============================================================================ +16:03:24 ============================================================================ +16:03:24 Slot Id : <138> +16:03:24 Transaction Type : REQUEST +16:03:24 Received From : +16:03:24 ============================================================================ +16:03:24 FNo. Len. Field Value +16:03:24 ============================================================================ +16:03:24 [ 1] [ 4] [0200] +16:03:24 [ 2] [ 16] [6688990105652406] +16:03:24 [ 3] [ 6] [010000] +16:03:24 [ 4] [ 12] [000050000000] +16:03:24 [ 7] [ 10] [0320160319] +16:03:24 [ 11] [ 6] [792264] +16:03:24 [ 12] [ 6] [160319] +16:03:24 [ 13] [ 4] [0320] +16:03:24 [ 15] [ 4] [0320] +16:03:24 [ 18] [ 4] [6011] +16:03:24 [ 22] [ 3] [900] +16:03:24 [ 25] [ 2] [02] +16:03:24 [ 28] [ 9] [D00002000] +16:03:24 [ 32] [ 6] [621354] +16:03:24 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:03:24 [ 37] [ 12] [507904635797] +16:03:24 [ 41] [ 8] [17000800] +16:03:24 [ 42] [ 15] [NATIVE ] +16:03:24 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:03:24 [ 49] [ 3] [418] +16:03:24 [ 52] [ 16] [64C297C18B391997] +16:03:24 ============================================================================ +16:03:24 + + +waiting on router queue for slot.... +16:03:24 Sending to : +16:03:24 ============================================================================ +16:03:24 ============================================================================ +16:03:24 Slot Id : <138> +16:03:24 Transaction Type : REQUEST +16:03:24 Received From : +16:03:24 ============================================================================ +16:03:24 FNo. Len. Field Value +16:03:24 ============================================================================ +16:03:24 [ 1] [ 4] [0200] +16:03:24 [ 2] [ 16] [6688990105652406] +16:03:24 [ 3] [ 6] [010000] +16:03:24 [ 4] [ 12] [000050000000] +16:03:24 [ 7] [ 10] [0320160319] +16:03:24 [ 11] [ 6] [792264] +16:03:24 [ 12] [ 6] [160319] +16:03:24 [ 13] [ 4] [0320] +16:03:24 [ 15] [ 4] [0320] +16:03:24 [ 18] [ 4] [6011] +16:03:24 [ 22] [ 3] [900] +16:03:24 [ 25] [ 2] [02] +16:03:24 [ 28] [ 9] [D00002000] +16:03:24 [ 32] [ 6] [621354] +16:03:24 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:03:24 [ 37] [ 12] [507904635797] +16:03:24 [ 41] [ 8] [17000800] +16:03:24 [ 42] [ 15] [NATIVE ] +16:03:24 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:03:24 [ 49] [ 3] [418] +16:03:24 [ 52] [ 16] [C62C22191E0D84E6] +16:03:24 ============================================================================ +16:03:24 + + +waiting on router queue for slot.... +16:03:24 Sending to : <4> +16:03:24 ============================================================================ +16:03:25 ============================================================================ +16:03:25 Slot Id : <116> +16:03:25 Transaction Type : REQUEST +16:03:25 Received From : +16:03:25 ============================================================================ +16:03:25 FNo. Len. Field Value +16:03:25 ============================================================================ +16:03:25 [ 1] [ 4] [0200] +16:03:25 [ 2] [ 16] [6213544001763934] +16:03:25 [ 3] [ 6] [010000] +16:03:25 [ 4] [ 12] [000020000000] +16:03:25 [ 7] [ 10] [0320160114] +16:03:25 [ 11] [ 6] [950948] +16:03:25 [ 12] [ 6] [160114] +16:03:25 [ 13] [ 4] [0320] +16:03:25 [ 15] [ 4] [0320] +16:03:25 [ 18] [ 4] [6011] +16:03:25 [ 19] [ 3] [418] +16:03:25 [ 22] [ 3] [021] +16:03:25 [ 25] [ 2] [01] +16:03:25 [ 28] [ 9] [D00002000] +16:03:25 [ 32] [ 6] [668899] +16:03:25 [ 35] [ 32] [6213544001763934=491212016393596] +16:03:25 [ 37] [ 12] [507902093381] +16:03:25 [ 41] [ 8] [03020021] +16:03:25 [ 42] [ 15] [APT ] +16:03:25 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:03:25 [ 49] [ 3] [418] +16:03:25 [ 52] [ 16] [8FB2AA63AAE18DF9] +16:03:25 ============================================================================ +16:03:25 + + +waiting on router queue for slot.... +16:03:25 Sending to : +16:03:25 ============================================================================ +16:03:25 ============================================================================ +16:03:25 Slot Id : <116> +16:03:25 Transaction Type : REQUEST +16:03:25 Received From : +16:03:25 ============================================================================ +16:03:25 FNo. Len. Field Value +16:03:25 ============================================================================ +16:03:25 [ 1] [ 4] [0200] +16:03:25 [ 2] [ 16] [6213544001763934] +16:03:25 [ 3] [ 6] [010000] +16:03:25 [ 4] [ 12] [000020000000] +16:03:25 [ 7] [ 10] [0320160114] +16:03:25 [ 11] [ 6] [950948] +16:03:25 [ 12] [ 6] [160114] +16:03:25 [ 13] [ 4] [0320] +16:03:25 [ 15] [ 4] [0320] +16:03:25 [ 18] [ 4] [6011] +16:03:25 [ 19] [ 3] [418] +16:03:25 [ 22] [ 3] [021] +16:03:25 [ 25] [ 2] [01] +16:03:25 [ 28] [ 9] [D00002000] +16:03:25 [ 32] [ 6] [668899] +16:03:25 [ 35] [ 32] [6213544001763934=491212016393596] +16:03:25 [ 37] [ 12] [507902093381] +16:03:25 [ 41] [ 8] [03020021] +16:03:25 [ 42] [ 15] [APT ] +16:03:25 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:03:25 [ 49] [ 3] [418] +16:03:25 [ 52] [ 16] [DDBCA135B60E9A71] +16:03:25 ============================================================================ +16:03:25 + + +waiting on router queue for slot.... +16:03:25 Sending to : <0> +16:03:25 ============================================================================ +16:03:25 ============================================================================ +16:03:25 Slot Id : <116> +16:03:25 Transaction Type : RESPONSE +16:03:25 Received From : +16:03:25 ============================================================================ +16:03:25 FNo. Len. Field Value +16:03:25 ============================================================================ +16:03:25 [ 1] [ 4] [0210] +16:03:25 [ 2] [ 16] [6213544001763934] +16:03:25 [ 3] [ 6] [010000] +16:03:25 [ 4] [ 12] [000020000000] +16:03:25 [ 7] [ 10] [0320160114] +16:03:25 [ 11] [ 6] [950948] +16:03:25 [ 12] [ 6] [160114] +16:03:25 [ 13] [ 4] [0320] +16:03:25 [ 15] [ 4] [0320] +16:03:25 [ 18] [ 4] [6011] +16:03:25 [ 19] [ 3] [418] +16:03:25 [ 32] [ 6] [668899] +16:03:25 [ 35] [ 32] [6213544001763934=491212016393596] +16:03:25 [ 37] [ 12] [507902093381] +16:03:25 [ 38] [ 6] [950948] +16:03:25 [ 39] [ 2] [51] +16:03:25 [ 41] [ 8] [03020021] +16:03:25 [ 49] [ 3] [418] +16:03:25 [ 54] [ 40] [0001418C0000088288830002418C000008828883] +16:03:25 ============================================================================ +16:03:25 Sending to : +16:03:25 ============================================================================ +16:03:25 + + +waiting on router queue for slot.... +16:03:26 ============================================================================ +16:03:26 Slot Id : <138> +16:03:26 Transaction Type : RESPONSE +16:03:26 Received From : +16:03:26 ============================================================================ +16:03:26 FNo. Len. Field Value +16:03:26 ============================================================================ +16:03:26 [ 1] [ 4] [0210] +16:03:26 [ 2] [ 16] [6688990105652406] +16:03:26 [ 3] [ 6] [010000] +16:03:26 [ 4] [ 12] [000050000000] +16:03:26 [ 11] [ 6] [792264] +16:03:26 [ 12] [ 6] [160319] +16:03:26 [ 15] [ 4] [0320] +16:03:26 [ 18] [ 4] [6011] +16:03:26 [ 32] [ 6] [621354] +16:03:26 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:03:26 [ 37] [ 12] [507904635797] +16:03:26 [ 38] [ 6] [979355] +16:03:26 [ 39] [ 2] [00] +16:03:26 [ 41] [ 8] [17000800] +16:03:26 [ 49] [ 3] [418] +16:03:26 [ 54] [ 20] [0002418C000389742416] +16:03:26 ============================================================================ +16:03:26 Sending to : +16:03:26 ============================================================================ +16:03:26 + + +waiting on router queue for slot.... +16:03:26 ============================================================================ +16:03:26 Slot Id : <116> +16:03:26 Transaction Type : RESPONSE +16:03:26 Received From : +16:03:26 ============================================================================ +16:03:26 FNo. Len. Field Value +16:03:26 ============================================================================ +16:03:26 [ 1] [ 4] [0210] +16:03:26 [ 2] [ 16] [6213544001763934] +16:03:26 [ 3] [ 6] [010000] +16:03:26 [ 4] [ 12] [000020000000] +16:03:26 [ 7] [ 10] [0320160114] +16:03:26 [ 11] [ 6] [950948] +16:03:26 [ 12] [ 6] [160114] +16:03:26 [ 13] [ 4] [0320] +16:03:26 [ 15] [ 4] [0320] +16:03:26 [ 18] [ 4] [6011] +16:03:26 [ 19] [ 3] [418] +16:03:26 [ 32] [ 6] [668899] +16:03:26 [ 35] [ 32] [6213544001763934=491212016393596] +16:03:26 [ 37] [ 12] [507902093381] +16:03:26 [ 38] [ 6] [950948] +16:03:26 [ 39] [ 2] [51] +16:03:26 [ 41] [ 8] [03020021] +16:03:26 [ 49] [ 3] [418] +16:03:26 [ 54] [ 40] [0001418C0000088288830002418C000008828883] +16:03:26 ============================================================================ +16:03:26 Calculate Source COMM Id = 4 +16:03:26 ============================================================================ +16:03:26 + + +waiting on router queue for slot.... +16:03:28 ============================================================================ +16:03:28 Slot Id : <138> +16:03:28 Transaction Type : RESPONSE +16:03:28 Received From : +16:03:28 ============================================================================ +16:03:28 FNo. Len. Field Value +16:03:28 ============================================================================ +16:03:28 [ 1] [ 4] [0210] +16:03:28 [ 2] [ 16] [6688990105652406] +16:03:28 [ 3] [ 6] [010000] +16:03:28 [ 4] [ 12] [000050000000] +16:03:28 [ 11] [ 6] [792264] +16:03:28 [ 12] [ 6] [160319] +16:03:28 [ 15] [ 4] [0320] +16:03:28 [ 18] [ 4] [6011] +16:03:28 [ 32] [ 6] [621354] +16:03:28 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:03:28 [ 37] [ 12] [507904635797] +16:03:28 [ 38] [ 6] [979355] +16:03:28 [ 39] [ 2] [00] +16:03:28 [ 41] [ 8] [17000800] +16:03:28 [ 49] [ 3] [418] +16:03:28 [ 54] [ 20] [0002418C000389742416] +16:03:28 ============================================================================ +16:03:28 Calculate Source COMM Id = 0 +16:03:28 ============================================================================ +16:03:28 + + +waiting on router queue for slot.... +16:03:35 ============================================================================ +16:03:35 Slot Id : <104> +16:03:35 Transaction Type : REQUEST +16:03:35 Received From : +16:03:35 ============================================================================ +16:03:35 FNo. Len. Field Value +16:03:35 ============================================================================ +16:03:35 [ 1] [ 4] [0800] +16:03:35 [ 7] [ 10] [0320090241] +16:03:35 [ 11] [ 6] [157157] +16:03:35 [ 70] [ 3] [301] +16:03:35 ============================================================================ +16:03:35 + + +waiting on router queue for slot.... +16:03:35 Sending to : +16:03:35 ============================================================================ +16:03:35 ============================================================================ +16:03:35 Slot Id : <104> +16:03:35 Transaction Type : RESPONSE +16:03:35 Received From : +16:03:35 ============================================================================ +16:03:35 FNo. Len. Field Value +16:03:35 ============================================================================ +16:03:35 [ 1] [ 4] [0810] +16:03:35 [ 7] [ 10] [0320090241] +16:03:35 [ 11] [ 6] [157157] +16:03:35 [ 39] [ 2] [00] +16:03:35 [ 70] [ 3] [301] +16:03:35 ============================================================================ +16:03:35 Calculate Source COMM Id = 2 +16:03:35 ============================================================================ +16:03:35 + + +waiting on router queue for slot.... +16:03:39 ============================================================================ +16:03:39 Slot Id : <112> +16:03:39 Transaction Type : REQUEST +16:03:39 Received From : +16:03:39 ============================================================================ +16:03:39 FNo. Len. Field Value +16:03:39 ============================================================================ +16:03:39 [ 1] [ 4] [0200] +16:03:39 [ 2] [ 16] [6688990106048307] +16:03:39 [ 3] [ 6] [010000] +16:03:39 [ 4] [ 12] [000100000000] +16:03:39 [ 7] [ 10] [0320160334] +16:03:39 [ 11] [ 6] [792327] +16:03:39 [ 12] [ 6] [160334] +16:03:39 [ 13] [ 4] [0320] +16:03:39 [ 15] [ 4] [0320] +16:03:39 [ 18] [ 4] [6011] +16:03:39 [ 22] [ 3] [900] +16:03:39 [ 25] [ 2] [02] +16:03:39 [ 28] [ 9] [D00002000] +16:03:39 [ 32] [ 6] [621354] +16:03:39 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:03:39 [ 37] [ 12] [507903499557] +16:03:39 [ 41] [ 8] [06002200] +16:03:39 [ 42] [ 15] [NATIVE ] +16:03:39 [ 43] [ 40] [Beng Market Beng LAO] +16:03:39 [ 49] [ 3] [418] +16:03:39 [ 52] [ 16] [45E374E56B31BCDA] +16:03:39 ============================================================================ +16:03:39 + + +waiting on router queue for slot.... +16:03:39 Sending to : +16:03:39 ============================================================================ +16:03:39 Sending to : +16:03:39 ============================================================================ +16:03:40 ============================================================================ +16:03:40 Slot Id : <112> +16:03:40 Transaction Type : REQUEST +16:03:40 Received From : +16:03:40 ============================================================================ +16:03:40 FNo. Len. Field Value +16:03:40 ============================================================================ +16:03:40 [ 1] [ 4] [0200] +16:03:40 [ 2] [ 16] [6688990106048307] +16:03:40 [ 3] [ 6] [010000] +16:03:40 [ 4] [ 12] [000100000000] +16:03:40 [ 7] [ 10] [0320160334] +16:03:40 [ 11] [ 6] [792327] +16:03:40 [ 12] [ 6] [160334] +16:03:40 [ 13] [ 4] [0320] +16:03:40 [ 15] [ 4] [0320] +16:03:40 [ 18] [ 4] [6011] +16:03:40 [ 22] [ 3] [900] +16:03:40 [ 25] [ 2] [02] +16:03:40 [ 28] [ 9] [D00002000] +16:03:40 [ 32] [ 6] [621354] +16:03:40 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:03:40 [ 37] [ 12] [507903499557] +16:03:40 [ 41] [ 8] [06002200] +16:03:40 [ 42] [ 15] [NATIVE ] +16:03:40 [ 43] [ 40] [Beng Market Beng LAO] +16:03:40 [ 49] [ 3] [418] +16:03:40 [ 52] [ 16] [45E374E56B31BCDA] +16:03:40 ============================================================================ +16:03:40 + + +waiting on router queue for slot.... +16:03:40 Sending to : +16:03:40 ============================================================================ +16:03:40 ============================================================================ +16:03:40 Slot Id : <112> +16:03:40 Transaction Type : REQUEST +16:03:40 Received From : +16:03:40 ============================================================================ +16:03:40 FNo. Len. Field Value +16:03:40 ============================================================================ +16:03:40 [ 1] [ 4] [0200] +16:03:40 [ 2] [ 16] [6688990106048307] +16:03:40 [ 3] [ 6] [010000] +16:03:40 [ 4] [ 12] [000100000000] +16:03:40 [ 7] [ 10] [0320160334] +16:03:40 [ 11] [ 6] [792327] +16:03:40 [ 12] [ 6] [160334] +16:03:40 [ 13] [ 4] [0320] +16:03:40 [ 15] [ 4] [0320] +16:03:40 [ 18] [ 4] [6011] +16:03:40 [ 22] [ 3] [900] +16:03:40 [ 25] [ 2] [02] +16:03:40 [ 28] [ 9] [D00002000] +16:03:40 [ 32] [ 6] [621354] +16:03:40 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:03:40 [ 37] [ 12] [507903499557] +16:03:40 [ 41] [ 8] [06002200] +16:03:40 [ 42] [ 15] [NATIVE ] +16:03:40 [ 43] [ 40] [Beng Market Beng LAO] +16:03:40 [ 49] [ 3] [418] +16:03:40 [ 52] [ 16] [EEE2EF22101D8F18] +16:03:40 ============================================================================ +16:03:40 + + +waiting on router queue for slot.... +16:03:40 Sending to : <4> +16:03:40 ============================================================================ +16:03:40 ============================================================================ +16:03:40 Slot Id : <112> +16:03:40 Transaction Type : RESPONSE +16:03:40 Received From : +16:03:40 ============================================================================ +16:03:40 FNo. Len. Field Value +16:03:40 ============================================================================ +16:03:40 [ 1] [ 4] [0210] +16:03:40 [ 2] [ 16] [6688990106048307] +16:03:40 [ 3] [ 6] [010000] +16:03:40 [ 4] [ 12] [000100000000] +16:03:40 [ 11] [ 6] [792327] +16:03:40 [ 12] [ 6] [160334] +16:03:40 [ 15] [ 4] [0320] +16:03:40 [ 18] [ 4] [6011] +16:03:40 [ 32] [ 6] [621354] +16:03:40 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:03:40 [ 37] [ 12] [507903499557] +16:03:40 [ 38] [ 6] [026342] +16:03:40 [ 39] [ 2] [00] +16:03:40 [ 41] [ 8] [06002200] +16:03:40 [ 49] [ 3] [418] +16:03:40 [ 54] [ 20] [0002418C000095018446] +16:03:40 ============================================================================ +16:03:40 Sending to : +16:03:40 ============================================================================ +16:03:40 + + +waiting on router queue for slot.... +16:03:42 ============================================================================ +16:03:42 Slot Id : <112> +16:03:42 Transaction Type : RESPONSE +16:03:42 Received From : +16:03:42 ============================================================================ +16:03:42 FNo. Len. Field Value +16:03:42 ============================================================================ +16:03:42 [ 1] [ 4] [0210] +16:03:42 [ 2] [ 16] [6688990106048307] +16:03:42 [ 3] [ 6] [010000] +16:03:42 [ 4] [ 12] [000100000000] +16:03:42 [ 11] [ 6] [792327] +16:03:42 [ 12] [ 6] [160334] +16:03:42 [ 15] [ 4] [0320] +16:03:42 [ 18] [ 4] [6011] +16:03:42 [ 32] [ 6] [621354] +16:03:42 [ 35] [ 37] [6688990106048307=43111231830731400000] +16:03:42 [ 37] [ 12] [507903499557] +16:03:42 [ 38] [ 6] [026342] +16:03:42 [ 39] [ 2] [00] +16:03:42 [ 41] [ 8] [06002200] +16:03:42 [ 49] [ 3] [418] +16:03:42 [ 54] [ 20] [0002418C000095018446] +16:03:42 ============================================================================ +16:03:42 Calculate Source COMM Id = 0 +16:03:42 ============================================================================ +16:03:42 + + +waiting on router queue for slot.... +16:03:43 ============================================================================ +16:03:43 Slot Id : <97> +16:03:43 Transaction Type : REQUEST +16:03:43 Received From : +16:03:43 ============================================================================ +16:03:43 FNo. Len. Field Value +16:03:43 ============================================================================ +16:03:43 [ 1] [ 4] [0800] +16:03:43 [ 2] [ 5] [02531] +16:03:43 [ 3] [ 6] [579168] +16:03:43 [ 7] [ 10] [0320090343] +16:03:43 [ 11] [ 6] [807344] +16:03:43 [ 15] [ 10] [0320090343] +16:03:43 [ 37] [ 11] [57916807344] +16:03:43 [ 70] [ 3] [001] +16:03:43 ============================================================================ +16:03:43 + + +waiting on router queue for slot.... +16:03:43 ============================================================================ +16:03:43 Slot Id : <97> +16:03:43 Transaction Type : RESPONSE +16:03:43 Received From : +16:03:43 ============================================================================ +16:03:43 FNo. Len. Field Value +16:03:43 ============================================================================ +16:03:43 [ 1] [ 4] [0810] +16:03:43 [ 7] [ 10] [0320090343] +16:03:43 [ 11] [ 6] [807344] +16:03:43 [ 15] [ 4] [0320] +16:03:43 [ 37] [ 12] [57916807344] +16:03:43 [ 39] [ 2] [00] +16:03:43 [ 70] [ 3] [001] +16:03:43 ============================================================================ +16:03:43 Sending to : +16:03:43 ============================================================================ +16:03:43 + + +waiting on router queue for slot.... +16:03:50 ============================================================================ +16:03:50 Slot Id : <140> +16:03:50 Transaction Type : REQUEST +16:03:50 Received From : +16:03:50 ============================================================================ +16:03:50 FNo. Len. Field Value +16:03:50 ============================================================================ +16:03:50 [ 1] [ 4] [0800] +16:03:50 [ 7] [ 10] [0320090257] +16:03:50 [ 11] [ 6] [157158] +16:03:50 [ 70] [ 3] [301] +16:03:50 ============================================================================ +16:03:50 + + +waiting on router queue for slot.... +16:03:50 Sending to : +16:03:50 ============================================================================ +16:03:50 ============================================================================ +16:03:50 Slot Id : <140> +16:03:50 Transaction Type : RESPONSE +16:03:50 Received From : +16:03:50 ============================================================================ +16:03:50 FNo. Len. Field Value +16:03:50 ============================================================================ +16:03:50 [ 1] [ 4] [0810] +16:03:50 [ 7] [ 10] [0320090257] +16:03:50 [ 11] [ 6] [157158] +16:03:50 [ 39] [ 2] [00] +16:03:50 [ 70] [ 3] [301] +16:03:50 ============================================================================ +16:03:50 Calculate Source COMM Id = 2 +16:03:50 ============================================================================ +16:03:50 + + +waiting on router queue for slot.... +16:04:01 ============================================================================ +16:04:01 Slot Id : <111> +16:04:01 Transaction Type : REQUEST +16:04:01 Received From : +16:04:01 ============================================================================ +16:04:01 FNo. Len. Field Value +16:04:01 ============================================================================ +16:04:01 [ 1] [ 4] [0800] +16:04:01 [ 7] [ 10] [0320090308] +16:04:01 [ 11] [ 6] [157159] +16:04:01 [ 70] [ 3] [301] +16:04:01 ============================================================================ +16:04:01 + + +waiting on router queue for slot.... +16:04:01 Sending to : +16:04:01 ============================================================================ +16:04:01 ============================================================================ +16:04:01 Slot Id : <111> +16:04:01 Transaction Type : RESPONSE +16:04:01 Received From : +16:04:01 ============================================================================ +16:04:01 FNo. Len. Field Value +16:04:01 ============================================================================ +16:04:01 [ 1] [ 4] [0810] +16:04:01 [ 7] [ 10] [0320090308] +16:04:01 [ 11] [ 6] [157159] +16:04:01 [ 39] [ 2] [00] +16:04:01 [ 70] [ 3] [301] +16:04:01 ============================================================================ +16:04:01 Calculate Source COMM Id = 2 +16:04:01 ============================================================================ +16:04:01 + + +waiting on router queue for slot.... +16:04:02 ============================================================================ +16:04:02 Slot Id : <124> +16:04:02 Transaction Type : REQUEST +16:04:02 Received From : +16:04:02 ============================================================================ +16:04:02 FNo. Len. Field Value +16:04:02 ============================================================================ +16:04:02 [ 1] [ 4] [0800] +16:04:02 [ 7] [ 10] [0320231551] +16:04:02 [ 11] [ 6] [161551] +16:04:02 [ 37] [ 12] [57916161551] +16:04:02 [ 70] [ 3] [301] +16:04:02 ============================================================================ +16:04:02 + + +waiting on router queue for slot.... +16:04:02 Sending to : +16:04:02 ============================================================================ +16:04:02 ============================================================================ +16:04:02 Slot Id : <124> +16:04:02 Transaction Type : RESPONSE +16:04:02 Received From : +16:04:02 ============================================================================ +16:04:02 FNo. Len. Field Value +16:04:02 ============================================================================ +16:04:02 [ 1] [ 4] [0810] +16:04:02 [ 7] [ 10] [0320231551] +16:04:02 [ 11] [ 6] [161551] +16:04:02 [ 37] [ 12] [579161615510] +16:04:02 [ 39] [ 2] [00] +16:04:02 [ 70] [ 3] [810] +16:04:02 ============================================================================ +16:04:02 Calculate Source COMM Id = 6 +16:04:02 ============================================================================ +16:04:02 + + +waiting on router queue for slot.... +16:04:13 ============================================================================ +16:04:13 Slot Id : <117> +16:04:13 Transaction Type : REQUEST +16:04:13 Received From : +16:04:13 ============================================================================ +16:04:13 FNo. Len. Field Value +16:04:13 ============================================================================ +16:04:13 [ 1] [ 4] [0800] +16:04:13 [ 7] [ 10] [0320090320] +16:04:13 [ 11] [ 6] [157160] +16:04:13 [ 70] [ 3] [301] +16:04:13 ============================================================================ +16:04:13 + + +waiting on router queue for slot.... +16:04:13 Sending to : +16:04:13 ============================================================================ +16:04:13 ============================================================================ +16:04:13 Slot Id : <117> +16:04:13 Transaction Type : RESPONSE +16:04:13 Received From : +16:04:13 ============================================================================ +16:04:13 FNo. Len. Field Value +16:04:13 ============================================================================ +16:04:13 [ 1] [ 4] [0810] +16:04:13 [ 7] [ 10] [0320090320] +16:04:13 [ 11] [ 6] [157160] +16:04:13 [ 39] [ 2] [00] +16:04:13 [ 70] [ 3] [301] +16:04:13 ============================================================================ +16:04:13 Calculate Source COMM Id = 2 +16:04:13 ============================================================================ +16:04:13 + + +waiting on router queue for slot.... +16:04:14 ============================================================================ +16:04:14 Slot Id : <123> +16:04:14 Transaction Type : REQUEST +16:04:14 Received From : +16:04:14 ============================================================================ +16:04:14 FNo. Len. Field Value +16:04:14 ============================================================================ +16:04:14 [ 1] [ 4] [0200] +16:04:14 [ 2] [ 16] [6688990103535801] +16:04:14 [ 3] [ 6] [010000] +16:04:14 [ 4] [ 12] [000100000000] +16:04:14 [ 7] [ 10] [0320160409] +16:04:14 [ 11] [ 6] [792485] +16:04:14 [ 12] [ 6] [160409] +16:04:14 [ 13] [ 4] [0320] +16:04:14 [ 15] [ 4] [0320] +16:04:14 [ 18] [ 4] [6011] +16:04:14 [ 22] [ 3] [900] +16:04:14 [ 25] [ 2] [02] +16:04:14 [ 28] [ 9] [D00002000] +16:04:14 [ 32] [ 6] [621354] +16:04:14 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:04:14 [ 37] [ 12] [507903345174] +16:04:14 [ 41] [ 8] [13001400] +16:04:14 [ 42] [ 15] [NATIVE ] +16:04:14 [ 43] [ 40] [Kham Unit Kham LAO] +16:04:14 [ 49] [ 3] [418] +16:04:14 [ 52] [ 16] [5B2DE7A8572AD9BA] +16:04:14 ============================================================================ +16:04:14 + + +waiting on router queue for slot.... +16:04:14 Sending to : +16:04:14 ============================================================================ +16:04:14 Sending to : +16:04:14 ============================================================================ +16:04:14 ============================================================================ +16:04:14 Slot Id : <123> +16:04:14 Transaction Type : REQUEST +16:04:14 Received From : +16:04:14 ============================================================================ +16:04:14 FNo. Len. Field Value +16:04:14 ============================================================================ +16:04:14 [ 1] [ 4] [0200] +16:04:14 [ 2] [ 16] [6688990103535801] +16:04:14 [ 3] [ 6] [010000] +16:04:14 [ 4] [ 12] [000100000000] +16:04:14 [ 7] [ 10] [0320160409] +16:04:14 [ 11] [ 6] [792485] +16:04:14 [ 12] [ 6] [160409] +16:04:14 [ 13] [ 4] [0320] +16:04:14 [ 15] [ 4] [0320] +16:04:14 [ 18] [ 4] [6011] +16:04:14 [ 22] [ 3] [900] +16:04:14 [ 25] [ 2] [02] +16:04:14 [ 28] [ 9] [D00002000] +16:04:14 [ 32] [ 6] [621354] +16:04:14 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:04:14 [ 37] [ 12] [507903345174] +16:04:14 [ 41] [ 8] [13001400] +16:04:14 [ 42] [ 15] [NATIVE ] +16:04:14 [ 43] [ 40] [Kham Unit Kham LAO] +16:04:14 [ 49] [ 3] [418] +16:04:14 [ 52] [ 16] [5B2DE7A8572AD9BA] +16:04:14 ============================================================================ +16:04:14 + + +waiting on router queue for slot.... +16:04:14 Sending to : +16:04:14 ============================================================================ +16:04:14 ============================================================================ +16:04:14 Slot Id : <123> +16:04:14 Transaction Type : REQUEST +16:04:14 Received From : +16:04:14 ============================================================================ +16:04:14 FNo. Len. Field Value +16:04:14 ============================================================================ +16:04:14 [ 1] [ 4] [0200] +16:04:14 [ 2] [ 16] [6688990103535801] +16:04:14 [ 3] [ 6] [010000] +16:04:14 [ 4] [ 12] [000100000000] +16:04:14 [ 7] [ 10] [0320160409] +16:04:14 [ 11] [ 6] [792485] +16:04:14 [ 12] [ 6] [160409] +16:04:14 [ 13] [ 4] [0320] +16:04:14 [ 15] [ 4] [0320] +16:04:14 [ 18] [ 4] [6011] +16:04:14 [ 22] [ 3] [900] +16:04:14 [ 25] [ 2] [02] +16:04:14 [ 28] [ 9] [D00002000] +16:04:14 [ 32] [ 6] [621354] +16:04:14 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:04:14 [ 37] [ 12] [507903345174] +16:04:14 [ 41] [ 8] [13001400] +16:04:14 [ 42] [ 15] [NATIVE ] +16:04:14 [ 43] [ 40] [Kham Unit Kham LAO] +16:04:14 [ 49] [ 3] [418] +16:04:14 [ 52] [ 16] [94F1DA98B734B350] +16:04:14 ============================================================================ +16:04:14 + + +waiting on router queue for slot.... +16:04:14 Sending to : <4> +16:04:14 ============================================================================ +16:04:15 ============================================================================ +16:04:15 Slot Id : <123> +16:04:15 Transaction Type : RESPONSE +16:04:15 Received From : +16:04:15 ============================================================================ +16:04:15 FNo. Len. Field Value +16:04:15 ============================================================================ +16:04:15 [ 1] [ 4] [0210] +16:04:15 [ 2] [ 16] [6688990103535801] +16:04:15 [ 3] [ 6] [010000] +16:04:15 [ 4] [ 12] [000100000000] +16:04:15 [ 11] [ 6] [792485] +16:04:15 [ 12] [ 6] [160409] +16:04:15 [ 15] [ 4] [0320] +16:04:15 [ 18] [ 4] [6011] +16:04:15 [ 32] [ 6] [621354] +16:04:15 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:04:15 [ 37] [ 12] [507903345174] +16:04:15 [ 38] [ 6] [831341] +16:04:15 [ 39] [ 2] [00] +16:04:15 [ 41] [ 8] [13001400] +16:04:15 [ 49] [ 3] [418] +16:04:15 [ 54] [ 20] [0002418C000207497076] +16:04:15 ============================================================================ +16:04:15 Sending to : +16:04:15 ============================================================================ +16:04:15 + + +waiting on router queue for slot.... +16:04:17 ============================================================================ +16:04:17 Slot Id : <123> +16:04:17 Transaction Type : RESPONSE +16:04:17 Received From : +16:04:17 ============================================================================ +16:04:17 FNo. Len. Field Value +16:04:17 ============================================================================ +16:04:17 [ 1] [ 4] [0210] +16:04:17 [ 2] [ 16] [6688990103535801] +16:04:17 [ 3] [ 6] [010000] +16:04:17 [ 4] [ 12] [000100000000] +16:04:17 [ 11] [ 6] [792485] +16:04:17 [ 12] [ 6] [160409] +16:04:17 [ 15] [ 4] [0320] +16:04:17 [ 18] [ 4] [6011] +16:04:17 [ 32] [ 6] [621354] +16:04:17 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:04:17 [ 37] [ 12] [507903345174] +16:04:17 [ 38] [ 6] [831341] +16:04:17 [ 39] [ 2] [00] +16:04:17 [ 41] [ 8] [13001400] +16:04:17 [ 49] [ 3] [418] +16:04:17 [ 54] [ 20] [0002418C000207497076] +16:04:17 ============================================================================ +16:04:17 Calculate Source COMM Id = 0 +16:04:17 ============================================================================ +16:04:17 + + +waiting on router queue for slot.... +16:04:24 ============================================================================ +16:04:24 Slot Id : <80> +16:04:24 Transaction Type : REQUEST +16:04:24 Received From : +16:04:24 ============================================================================ +16:04:24 FNo. Len. Field Value +16:04:24 ============================================================================ +16:04:24 [ 1] [ 4] [0200] +16:04:24 [ 2] [ 16] [1808931200003380] +16:04:24 [ 3] [ 6] [010000] +16:04:24 [ 4] [ 12] [000100000000] +16:04:24 [ 7] [ 10] [0320160214] +16:04:24 [ 11] [ 6] [950989] +16:04:24 [ 12] [ 6] [160214] +16:04:24 [ 13] [ 4] [0320] +16:04:24 [ 15] [ 4] [0320] +16:04:24 [ 18] [ 4] [6011] +16:04:24 [ 19] [ 3] [418] +16:04:24 [ 22] [ 3] [021] +16:04:24 [ 25] [ 2] [01] +16:04:24 [ 28] [ 9] [D00002000] +16:04:24 [ 32] [ 6] [668899] +16:04:24 [ 35] [ 27] [1808931200003380=1803500099] +16:04:24 [ 37] [ 12] [507902362972] +16:04:24 [ 41] [ 8] [03016003] +16:04:24 [ 42] [ 15] [APT ] +16:04:24 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:04:24 [ 49] [ 3] [418] +16:04:24 [ 52] [ 16] [3DB26522819E25DC] +16:04:24 ============================================================================ +16:04:24 + + +waiting on router queue for slot.... +16:04:24 Sending to : +16:04:24 ============================================================================ +16:04:24 Sending to : +16:04:24 ============================================================================ +16:04:25 ============================================================================ +16:04:25 Slot Id : <80> +16:04:25 Transaction Type : REQUEST +16:04:25 Received From : +16:04:25 ============================================================================ +16:04:25 FNo. Len. Field Value +16:04:25 ============================================================================ +16:04:25 [ 1] [ 4] [0200] +16:04:25 [ 2] [ 16] [1808931200003380] +16:04:25 [ 3] [ 6] [010000] +16:04:25 [ 4] [ 12] [000100000000] +16:04:25 [ 7] [ 10] [0320160214] +16:04:25 [ 11] [ 6] [950989] +16:04:25 [ 12] [ 6] [160214] +16:04:25 [ 13] [ 4] [0320] +16:04:25 [ 15] [ 4] [0320] +16:04:25 [ 18] [ 4] [6011] +16:04:25 [ 19] [ 3] [418] +16:04:25 [ 22] [ 3] [021] +16:04:25 [ 25] [ 2] [01] +16:04:25 [ 28] [ 9] [D00002000] +16:04:25 [ 32] [ 6] [668899] +16:04:25 [ 35] [ 27] [1808931200003380=1803500099] +16:04:25 [ 37] [ 12] [507902362972] +16:04:25 [ 41] [ 8] [03016003] +16:04:25 [ 42] [ 15] [APT ] +16:04:25 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:04:25 [ 49] [ 3] [418] +16:04:25 [ 52] [ 16] [3DB26522819E25DC] +16:04:25 ============================================================================ +16:04:25 + + +waiting on router queue for slot.... +16:04:25 Sending to : +16:04:25 ============================================================================ +16:04:25 ============================================================================ +16:04:25 Slot Id : <80> +16:04:25 Transaction Type : REQUEST +16:04:25 Received From : +16:04:25 ============================================================================ +16:04:25 FNo. Len. Field Value +16:04:25 ============================================================================ +16:04:25 [ 1] [ 4] [0200] +16:04:25 [ 2] [ 16] [1808931200003380] +16:04:25 [ 3] [ 6] [010000] +16:04:25 [ 4] [ 12] [000100000000] +16:04:25 [ 7] [ 10] [0320160214] +16:04:25 [ 11] [ 6] [950989] +16:04:25 [ 12] [ 6] [160214] +16:04:25 [ 13] [ 4] [0320] +16:04:25 [ 15] [ 4] [0320] +16:04:25 [ 18] [ 4] [6011] +16:04:25 [ 19] [ 3] [418] +16:04:25 [ 22] [ 3] [021] +16:04:25 [ 25] [ 2] [01] +16:04:25 [ 28] [ 9] [D00002000] +16:04:25 [ 32] [ 6] [668899] +16:04:25 [ 35] [ 27] [1808931200003380=1803500099] +16:04:25 [ 37] [ 12] [507902362972] +16:04:25 [ 41] [ 8] [03016003] +16:04:25 [ 42] [ 15] [APT ] +16:04:25 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:04:25 [ 49] [ 3] [418] +16:04:25 [ 52] [ 16] [A98323DE1717D84C] +16:04:25 ============================================================================ +16:04:25 + + +waiting on router queue for slot.... +16:04:25 Sending to : <2> +16:04:25 ============================================================================ +16:04:28 ============================================================================ +16:04:28 Slot Id : <80> +16:04:28 Transaction Type : RESPONSE +16:04:28 Received From : +16:04:28 ============================================================================ +16:04:28 FNo. Len. Field Value +16:04:28 ============================================================================ +16:04:28 [ 1] [ 4] [0210] +16:04:28 [ 2] [ 16] [1808931200003380] +16:04:28 [ 3] [ 6] [010000] +16:04:28 [ 4] [ 12] [000100000000] +16:04:28 [ 6] [ 12] [000100000000] +16:04:28 [ 7] [ 10] [0320160214] +16:04:28 [ 11] [ 6] [950989] +16:04:28 [ 12] [ 6] [160214] +16:04:28 [ 13] [ 4] [0320] +16:04:28 [ 18] [ 4] [6011] +16:04:28 [ 19] [ 3] [418] +16:04:28 [ 22] [ 3] [021] +16:04:28 [ 32] [ 6] [668899] +16:04:28 [ 35] [ 27] [1808931200003380=1803500099] +16:04:28 [ 37] [ 12] [507902362972] +16:04:28 [ 38] [ 6] [950989] +16:04:28 [ 39] [ 2] [00] +16:04:28 [ 41] [ 8] [03016003] +16:04:28 [ 49] [ 3] [418] +16:04:28 [ 52] [ 16] [A98323DE1717D84C] +16:04:28 [ 54] [ 20] [1001418C001501703200] +16:04:28 ============================================================================ +16:04:28 Sending to : +16:04:28 ============================================================================ +16:04:28 + + +waiting on router queue for slot.... +16:04:29 ============================================================================ +16:04:29 Slot Id : <80> +16:04:29 Transaction Type : RESPONSE +16:04:29 Received From : +16:04:29 ============================================================================ +16:04:29 FNo. Len. Field Value +16:04:29 ============================================================================ +16:04:29 [ 1] [ 4] [0210] +16:04:29 [ 2] [ 16] [1808931200003380] +16:04:29 [ 3] [ 6] [010000] +16:04:29 [ 4] [ 12] [000100000000] +16:04:29 [ 6] [ 12] [000100000000] +16:04:29 [ 7] [ 10] [0320160214] +16:04:29 [ 11] [ 6] [950989] +16:04:29 [ 12] [ 6] [160214] +16:04:29 [ 13] [ 4] [0320] +16:04:29 [ 18] [ 4] [6011] +16:04:29 [ 19] [ 3] [418] +16:04:29 [ 22] [ 3] [021] +16:04:29 [ 32] [ 6] [668899] +16:04:29 [ 35] [ 27] [1808931200003380=1803500099] +16:04:29 [ 37] [ 12] [507902362972] +16:04:29 [ 38] [ 6] [950989] +16:04:29 [ 39] [ 2] [00] +16:04:29 [ 41] [ 8] [03016003] +16:04:29 [ 49] [ 3] [418] +16:04:29 [ 52] [ 16] [A98323DE1717D84C] +16:04:29 [ 54] [ 20] [1001418C001501703200] +16:04:29 ============================================================================ +16:04:29 Calculate Source COMM Id = 4 +16:04:29 ============================================================================ +16:04:29 + + +waiting on router queue for slot.... +16:04:37 ============================================================================ +16:04:37 Slot Id : <161> +16:04:37 Transaction Type : REQUEST +16:04:37 Received From : +16:04:37 ============================================================================ +16:04:37 FNo. Len. Field Value +16:04:37 ============================================================================ +16:04:37 [ 1] [ 4] [0200] +16:04:37 [ 2] [ 16] [6688990103260202] +16:04:37 [ 3] [ 6] [010000] +16:04:37 [ 4] [ 12] [000100000000] +16:04:37 [ 7] [ 10] [0320160433] +16:04:37 [ 11] [ 6] [792582] +16:04:37 [ 12] [ 6] [160433] +16:04:37 [ 13] [ 4] [0320] +16:04:37 [ 15] [ 4] [0320] +16:04:37 [ 18] [ 4] [6011] +16:04:37 [ 22] [ 3] [900] +16:04:37 [ 25] [ 2] [02] +16:04:37 [ 28] [ 9] [D00002000] +16:04:37 [ 32] [ 6] [621354] +16:04:37 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:04:37 [ 37] [ 12] [507903499559] +16:04:37 [ 41] [ 8] [06002200] +16:04:37 [ 42] [ 15] [NATIVE ] +16:04:37 [ 43] [ 40] [Beng Market Beng LAO] +16:04:37 [ 49] [ 3] [418] +16:04:37 [ 52] [ 16] [1C532F5642919E43] +16:04:37 ============================================================================ +16:04:37 + + +waiting on router queue for slot.... +16:04:37 Sending to : +16:04:37 ============================================================================ +16:04:37 Sending to : +16:04:37 ============================================================================ +16:04:38 ============================================================================ +16:04:38 Slot Id : <161> +16:04:38 Transaction Type : REQUEST +16:04:38 Received From : +16:04:38 ============================================================================ +16:04:38 FNo. Len. Field Value +16:04:38 ============================================================================ +16:04:38 [ 1] [ 4] [0200] +16:04:38 [ 2] [ 16] [6688990103260202] +16:04:38 [ 3] [ 6] [010000] +16:04:38 [ 4] [ 12] [000100000000] +16:04:38 [ 7] [ 10] [0320160433] +16:04:38 [ 11] [ 6] [792582] +16:04:38 [ 12] [ 6] [160433] +16:04:38 [ 13] [ 4] [0320] +16:04:38 [ 15] [ 4] [0320] +16:04:38 [ 18] [ 4] [6011] +16:04:38 [ 22] [ 3] [900] +16:04:38 [ 25] [ 2] [02] +16:04:38 [ 28] [ 9] [D00002000] +16:04:38 [ 32] [ 6] [621354] +16:04:38 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:04:38 [ 37] [ 12] [507903499559] +16:04:38 [ 41] [ 8] [06002200] +16:04:38 [ 42] [ 15] [NATIVE ] +16:04:38 [ 43] [ 40] [Beng Market Beng LAO] +16:04:38 [ 49] [ 3] [418] +16:04:38 [ 52] [ 16] [1C532F5642919E43] +16:04:38 ============================================================================ +16:04:38 + + +waiting on router queue for slot.... +16:04:38 Sending to : +16:04:38 ============================================================================ +16:04:38 ============================================================================ +16:04:38 Slot Id : <161> +16:04:38 Transaction Type : REQUEST +16:04:38 Received From : +16:04:38 ============================================================================ +16:04:38 FNo. Len. Field Value +16:04:38 ============================================================================ +16:04:38 [ 1] [ 4] [0200] +16:04:38 [ 2] [ 16] [6688990103260202] +16:04:38 [ 3] [ 6] [010000] +16:04:38 [ 4] [ 12] [000100000000] +16:04:38 [ 7] [ 10] [0320160433] +16:04:38 [ 11] [ 6] [792582] +16:04:38 [ 12] [ 6] [160433] +16:04:38 [ 13] [ 4] [0320] +16:04:38 [ 15] [ 4] [0320] +16:04:38 [ 18] [ 4] [6011] +16:04:38 [ 22] [ 3] [900] +16:04:38 [ 25] [ 2] [02] +16:04:38 [ 28] [ 9] [D00002000] +16:04:38 [ 32] [ 6] [621354] +16:04:38 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:04:38 [ 37] [ 12] [507903499559] +16:04:38 [ 41] [ 8] [06002200] +16:04:38 [ 42] [ 15] [NATIVE ] +16:04:38 [ 43] [ 40] [Beng Market Beng LAO] +16:04:38 [ 49] [ 3] [418] +16:04:38 [ 52] [ 16] [D67887803A78ED44] +16:04:38 ============================================================================ +16:04:38 + + +waiting on router queue for slot.... +16:04:38 Sending to : <4> +16:04:38 ============================================================================ +16:04:39 ============================================================================ +16:04:39 Slot Id : <147> +16:04:39 Transaction Type : REQUEST +16:04:39 Received From : +16:04:39 ============================================================================ +16:04:39 FNo. Len. Field Value +16:04:39 ============================================================================ +16:04:39 [ 1] [ 4] [0800] +16:04:39 [ 7] [ 10] [0320090346] +16:04:39 [ 11] [ 6] [157161] +16:04:39 [ 70] [ 3] [301] +16:04:39 ============================================================================ +16:04:39 + + +waiting on router queue for slot.... +16:04:39 Sending to : +16:04:39 ============================================================================ +16:04:39 ============================================================================ +16:04:39 Slot Id : <147> +16:04:39 Transaction Type : RESPONSE +16:04:39 Received From : +16:04:39 ============================================================================ +16:04:39 FNo. Len. Field Value +16:04:39 ============================================================================ +16:04:39 [ 1] [ 4] [0810] +16:04:39 [ 7] [ 10] [0320090346] +16:04:39 [ 11] [ 6] [157161] +16:04:39 [ 39] [ 2] [00] +16:04:39 [ 70] [ 3] [301] +16:04:39 ============================================================================ +16:04:39 Calculate Source COMM Id = 2 +16:04:39 ============================================================================ +16:04:39 + + +waiting on router queue for slot.... +16:04:39 ============================================================================ +16:04:39 Slot Id : <161> +16:04:39 Transaction Type : RESPONSE +16:04:39 Received From : +16:04:39 ============================================================================ +16:04:39 FNo. Len. Field Value +16:04:39 ============================================================================ +16:04:39 [ 1] [ 4] [0210] +16:04:39 [ 2] [ 16] [6688990103260202] +16:04:39 [ 3] [ 6] [010000] +16:04:39 [ 4] [ 12] [000100000000] +16:04:39 [ 11] [ 6] [792582] +16:04:39 [ 12] [ 6] [160433] +16:04:39 [ 15] [ 4] [0320] +16:04:39 [ 18] [ 4] [6011] +16:04:39 [ 32] [ 6] [621354] +16:04:39 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:04:39 [ 37] [ 12] [507903499559] +16:04:39 [ 38] [ 6] [254776] +16:04:39 [ 39] [ 2] [00] +16:04:39 [ 41] [ 8] [06002200] +16:04:39 [ 49] [ 3] [418] +16:04:39 [ 54] [ 20] [0002418C000213488152] +16:04:39 ============================================================================ +16:04:39 Sending to : +16:04:39 ============================================================================ +16:04:39 + + +waiting on router queue for slot.... +16:04:40 ============================================================================ +16:04:40 Slot Id : <161> +16:04:40 Transaction Type : RESPONSE +16:04:40 Received From : +16:04:40 ============================================================================ +16:04:40 FNo. Len. Field Value +16:04:40 ============================================================================ +16:04:40 [ 1] [ 4] [0210] +16:04:40 [ 2] [ 16] [6688990103260202] +16:04:40 [ 3] [ 6] [010000] +16:04:40 [ 4] [ 12] [000100000000] +16:04:40 [ 11] [ 6] [792582] +16:04:40 [ 12] [ 6] [160433] +16:04:40 [ 15] [ 4] [0320] +16:04:40 [ 18] [ 4] [6011] +16:04:40 [ 32] [ 6] [621354] +16:04:40 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:04:40 [ 37] [ 12] [507903499559] +16:04:40 [ 38] [ 6] [254776] +16:04:40 [ 39] [ 2] [00] +16:04:40 [ 41] [ 8] [06002200] +16:04:40 [ 49] [ 3] [418] +16:04:40 [ 54] [ 20] [0002418C000213488152] +16:04:40 ============================================================================ +16:04:40 Calculate Source COMM Id = 0 +16:04:40 ============================================================================ +16:04:40 + + +waiting on router queue for slot.... +16:04:45 ============================================================================ +16:04:45 Slot Id : <162> +16:04:45 Transaction Type : REQUEST +16:04:45 Received From : +16:04:45 ============================================================================ +16:04:45 FNo. Len. Field Value +16:04:45 ============================================================================ +16:04:45 [ 1] [ 4] [0800] +16:04:45 [ 2] [ 5] [02531] +16:04:45 [ 3] [ 6] [579168] +16:04:45 [ 7] [ 10] [0320090445] +16:04:45 [ 11] [ 6] [807345] +16:04:45 [ 15] [ 10] [0320090445] +16:04:45 [ 37] [ 11] [57916807345] +16:04:45 [ 70] [ 3] [001] +16:04:45 ============================================================================ +16:04:45 + + +waiting on router queue for slot.... +16:04:45 ============================================================================ +16:04:45 Slot Id : <162> +16:04:45 Transaction Type : RESPONSE +16:04:45 Received From : +16:04:45 ============================================================================ +16:04:45 FNo. Len. Field Value +16:04:45 ============================================================================ +16:04:45 [ 1] [ 4] [0810] +16:04:45 [ 7] [ 10] [0320090445] +16:04:45 [ 11] [ 6] [807345] +16:04:45 [ 15] [ 4] [0320] +16:04:45 [ 37] [ 12] [57916807345] +16:04:45 [ 39] [ 2] [00] +16:04:45 [ 70] [ 3] [001] +16:04:45 ============================================================================ +16:04:45 Sending to : +16:04:45 ============================================================================ +16:04:45 + + +waiting on router queue for slot.... +16:04:54 ============================================================================ +16:04:54 Slot Id : <132> +16:04:54 Transaction Type : REQUEST +16:04:54 Received From : +16:04:54 ============================================================================ +16:04:54 FNo. Len. Field Value +16:04:54 ============================================================================ +16:04:54 [ 1] [ 4] [0800] +16:04:54 [ 7] [ 10] [0320090401] +16:04:54 [ 11] [ 6] [157162] +16:04:54 [ 70] [ 3] [301] +16:04:54 ============================================================================ +16:04:54 + + +waiting on router queue for slot.... +16:04:54 Sending to : +16:04:54 ============================================================================ +16:04:54 ============================================================================ +16:04:54 Slot Id : <132> +16:04:54 Transaction Type : RESPONSE +16:04:54 Received From : +16:04:54 ============================================================================ +16:04:54 FNo. Len. Field Value +16:04:54 ============================================================================ +16:04:54 [ 1] [ 4] [0810] +16:04:54 [ 7] [ 10] [0320090401] +16:04:54 [ 11] [ 6] [157162] +16:04:54 [ 39] [ 2] [00] +16:04:54 [ 70] [ 3] [301] +16:04:54 ============================================================================ +16:04:54 Calculate Source COMM Id = 2 +16:04:54 ============================================================================ +16:04:54 + + +waiting on router queue for slot.... +16:04:55 ============================================================================ +16:04:55 Slot Id : <122> +16:04:55 Transaction Type : REQUEST +16:04:55 Received From : +16:04:55 ============================================================================ +16:04:55 FNo. Len. Field Value +16:04:55 ============================================================================ +16:04:55 [ 1] [ 4] [0800] +16:04:55 [ 7] [ 10] [0320091242] +16:04:55 [ 11] [ 6] [028994] +16:04:55 [ 37] [ 12] [57916028994] +16:04:55 [ 70] [ 3] [301] +16:04:55 ============================================================================ +16:04:55 + + +waiting on router queue for slot.... +16:04:55 Sending to : +16:04:55 ============================================================================ +16:04:55 ============================================================================ +16:04:55 Slot Id : <122> +16:04:55 Transaction Type : RESPONSE +16:04:55 Received From : +16:04:55 ============================================================================ +16:04:55 FNo. Len. Field Value +16:04:55 ============================================================================ +16:04:55 [ 1] [ 4] [0810] +16:04:55 [ 7] [ 10] [0320091242] +16:04:55 [ 11] [ 6] [028994] +16:04:55 [ 37] [ 12] [579160289940] +16:04:55 [ 39] [ 2] [00] +16:04:55 [ 70] [ 3] [810] +16:04:55 ============================================================================ +16:04:55 Calculate Source COMM Id = 1 +16:04:55 ============================================================================ +16:04:55 + + +waiting on router queue for slot.... +16:05:07 ============================================================================ +16:05:07 Slot Id : <145> +16:05:07 Transaction Type : REQUEST +16:05:07 Received From : +16:05:07 ============================================================================ +16:05:07 FNo. Len. Field Value +16:05:07 ============================================================================ +16:05:07 [ 1] [ 4] [0800] +16:05:07 [ 7] [ 10] [0320231656] +16:05:07 [ 11] [ 6] [161656] +16:05:07 [ 37] [ 12] [57916161656] +16:05:07 [ 70] [ 3] [301] +16:05:07 ============================================================================ +16:05:07 + + +waiting on router queue for slot.... +16:05:07 Sending to : +16:05:07 ============================================================================ +16:05:07 ============================================================================ +16:05:07 Slot Id : <145> +16:05:07 Transaction Type : RESPONSE +16:05:07 Received From : +16:05:07 ============================================================================ +16:05:07 FNo. Len. Field Value +16:05:07 ============================================================================ +16:05:07 [ 1] [ 4] [0810] +16:05:07 [ 7] [ 10] [0320231656] +16:05:07 [ 11] [ 6] [161656] +16:05:07 [ 37] [ 12] [579161616560] +16:05:07 [ 39] [ 2] [00] +16:05:07 [ 70] [ 3] [810] +16:05:07 ============================================================================ +16:05:07 Calculate Source COMM Id = 6 +16:05:07 ============================================================================ +16:05:07 + + +waiting on router queue for slot.... +16:05:10 ============================================================================ +16:05:10 Slot Id : <143> +16:05:10 Transaction Type : REQUEST +16:05:10 Received From : +16:05:10 ============================================================================ +16:05:10 FNo. Len. Field Value +16:05:10 ============================================================================ +16:05:10 [ 1] [ 4] [0800] +16:05:10 [ 7] [ 10] [0320090416] +16:05:10 [ 11] [ 6] [157163] +16:05:10 [ 70] [ 3] [301] +16:05:10 ============================================================================ +16:05:10 + + +waiting on router queue for slot.... +16:05:10 Sending to : +16:05:10 ============================================================================ +16:05:10 ============================================================================ +16:05:10 Slot Id : <143> +16:05:10 Transaction Type : RESPONSE +16:05:10 Received From : +16:05:10 ============================================================================ +16:05:10 FNo. Len. Field Value +16:05:10 ============================================================================ +16:05:10 [ 1] [ 4] [0810] +16:05:10 [ 7] [ 10] [0320090416] +16:05:10 [ 11] [ 6] [157163] +16:05:10 [ 39] [ 2] [00] +16:05:10 [ 70] [ 3] [301] +16:05:10 ============================================================================ +16:05:10 Calculate Source COMM Id = 2 +16:05:10 ============================================================================ +16:05:10 + + +waiting on router queue for slot.... +16:05:19 ============================================================================ +16:05:19 Slot Id : <166> +16:05:19 Transaction Type : REQUEST +16:05:19 Received From : +16:05:19 ============================================================================ +16:05:19 FNo. Len. Field Value +16:05:19 ============================================================================ +16:05:19 [ 1] [ 4] [0200] +16:05:19 [ 2] [ 16] [1808931200003380] +16:05:19 [ 3] [ 6] [010000] +16:05:19 [ 4] [ 12] [000100000000] +16:05:19 [ 7] [ 10] [0320160309] +16:05:19 [ 11] [ 6] [951017] +16:05:19 [ 12] [ 6] [160309] +16:05:19 [ 13] [ 4] [0320] +16:05:19 [ 15] [ 4] [0320] +16:05:19 [ 18] [ 4] [6011] +16:05:19 [ 19] [ 3] [418] +16:05:19 [ 22] [ 3] [021] +16:05:19 [ 25] [ 2] [01] +16:05:19 [ 28] [ 9] [D00002000] +16:05:19 [ 32] [ 6] [668899] +16:05:19 [ 35] [ 27] [1808931200003380=1803500099] +16:05:19 [ 37] [ 12] [507902362974] +16:05:19 [ 41] [ 8] [03016003] +16:05:19 [ 42] [ 15] [APT ] +16:05:19 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:05:19 [ 49] [ 3] [418] +16:05:19 [ 52] [ 16] [3DB26522819E25DC] +16:05:19 ============================================================================ +16:05:19 + + +waiting on router queue for slot.... +16:05:19 Sending to : +16:05:19 ============================================================================ +16:05:19 Sending to : +16:05:19 ============================================================================ +16:05:19 ============================================================================ +16:05:19 Slot Id : <166> +16:05:19 Transaction Type : REQUEST +16:05:19 Received From : +16:05:19 ============================================================================ +16:05:19 FNo. Len. Field Value +16:05:19 ============================================================================ +16:05:19 [ 1] [ 4] [0200] +16:05:19 [ 2] [ 16] [1808931200003380] +16:05:19 [ 3] [ 6] [010000] +16:05:19 [ 4] [ 12] [000100000000] +16:05:19 [ 7] [ 10] [0320160309] +16:05:19 [ 11] [ 6] [951017] +16:05:19 [ 12] [ 6] [160309] +16:05:19 [ 13] [ 4] [0320] +16:05:19 [ 15] [ 4] [0320] +16:05:19 [ 18] [ 4] [6011] +16:05:19 [ 19] [ 3] [418] +16:05:19 [ 22] [ 3] [021] +16:05:19 [ 25] [ 2] [01] +16:05:19 [ 28] [ 9] [D00002000] +16:05:19 [ 32] [ 6] [668899] +16:05:19 [ 35] [ 27] [1808931200003380=1803500099] +16:05:19 [ 37] [ 12] [507902362974] +16:05:19 [ 41] [ 8] [03016003] +16:05:19 [ 42] [ 15] [APT ] +16:05:19 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:05:19 [ 49] [ 3] [418] +16:05:19 [ 52] [ 16] [3DB26522819E25DC] +16:05:19 ============================================================================ +16:05:19 + + +waiting on router queue for slot.... +16:05:19 Sending to : +16:05:19 ============================================================================ +16:05:19 ============================================================================ +16:05:19 Slot Id : <166> +16:05:19 Transaction Type : REQUEST +16:05:19 Received From : +16:05:19 ============================================================================ +16:05:19 FNo. Len. Field Value +16:05:19 ============================================================================ +16:05:19 [ 1] [ 4] [0200] +16:05:19 [ 2] [ 16] [1808931200003380] +16:05:19 [ 3] [ 6] [010000] +16:05:19 [ 4] [ 12] [000100000000] +16:05:19 [ 7] [ 10] [0320160309] +16:05:19 [ 11] [ 6] [951017] +16:05:19 [ 12] [ 6] [160309] +16:05:19 [ 13] [ 4] [0320] +16:05:19 [ 15] [ 4] [0320] +16:05:19 [ 18] [ 4] [6011] +16:05:19 [ 19] [ 3] [418] +16:05:19 [ 22] [ 3] [021] +16:05:19 [ 25] [ 2] [01] +16:05:19 [ 28] [ 9] [D00002000] +16:05:19 [ 32] [ 6] [668899] +16:05:19 [ 35] [ 27] [1808931200003380=1803500099] +16:05:19 [ 37] [ 12] [507902362974] +16:05:19 [ 41] [ 8] [03016003] +16:05:19 [ 42] [ 15] [APT ] +16:05:19 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:05:19 [ 49] [ 3] [418] +16:05:19 [ 52] [ 16] [A98323DE1717D84C] +16:05:19 ============================================================================ +16:05:19 + + +waiting on router queue for slot.... +16:05:19 Sending to : <2> +16:05:19 ============================================================================ +16:05:25 ============================================================================ +16:05:25 Slot Id : <166> +16:05:25 Transaction Type : RESPONSE +16:05:25 Received From : +16:05:25 ============================================================================ +16:05:25 FNo. Len. Field Value +16:05:25 ============================================================================ +16:05:25 [ 1] [ 4] [0210] +16:05:25 [ 2] [ 16] [1808931200003380] +16:05:25 [ 3] [ 6] [010000] +16:05:25 [ 4] [ 12] [000100000000] +16:05:25 [ 6] [ 12] [000100000000] +16:05:25 [ 7] [ 10] [0320160309] +16:05:25 [ 11] [ 6] [951017] +16:05:25 [ 12] [ 6] [160309] +16:05:25 [ 13] [ 4] [0320] +16:05:25 [ 18] [ 4] [6011] +16:05:25 [ 19] [ 3] [418] +16:05:25 [ 22] [ 3] [021] +16:05:25 [ 32] [ 6] [668899] +16:05:25 [ 35] [ 27] [1808931200003380=1803500099] +16:05:25 [ 37] [ 12] [507902362974] +16:05:25 [ 38] [ 6] [951017] +16:05:25 [ 39] [ 2] [00] +16:05:25 [ 41] [ 8] [03016003] +16:05:25 [ 49] [ 3] [418] +16:05:25 [ 52] [ 16] [A98323DE1717D84C] +16:05:25 [ 54] [ 20] [1001418C001401503200] +16:05:25 ============================================================================ +16:05:25 Sending to : +16:05:25 ============================================================================ +16:05:25 + + +waiting on router queue for slot.... +16:05:25 ============================================================================ +16:05:25 Slot Id : <158> +16:05:25 Transaction Type : REQUEST +16:05:25 Received From : +16:05:25 ============================================================================ +16:05:25 FNo. Len. Field Value +16:05:25 ============================================================================ +16:05:25 [ 1] [ 4] [0200] +16:05:25 [ 2] [ 16] [6688990103535801] +16:05:25 [ 3] [ 6] [010000] +16:05:25 [ 4] [ 12] [000100000000] +16:05:25 [ 7] [ 10] [0320160520] +16:05:25 [ 11] [ 6] [792818] +16:05:25 [ 12] [ 6] [160520] +16:05:25 [ 13] [ 4] [0320] +16:05:25 [ 15] [ 4] [0320] +16:05:25 [ 18] [ 4] [6011] +16:05:25 [ 22] [ 3] [900] +16:05:25 [ 25] [ 2] [02] +16:05:25 [ 28] [ 9] [D00002000] +16:05:25 [ 32] [ 6] [621354] +16:05:25 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:05:25 [ 37] [ 12] [507903345176] +16:05:25 [ 41] [ 8] [13001400] +16:05:25 [ 42] [ 15] [NATIVE ] +16:05:25 [ 43] [ 40] [Kham Unit Kham LAO] +16:05:25 [ 49] [ 3] [418] +16:05:25 [ 52] [ 16] [5B2DE7A8572AD9BA] +16:05:25 ============================================================================ +16:05:25 + + +waiting on router queue for slot.... +16:05:25 Sending to : +16:05:25 ============================================================================ +16:05:25 Sending to : +16:05:25 ============================================================================ +16:05:25 ============================================================================ +16:05:25 Slot Id : <158> +16:05:25 Transaction Type : REQUEST +16:05:25 Received From : +16:05:25 ============================================================================ +16:05:25 FNo. Len. Field Value +16:05:25 ============================================================================ +16:05:25 [ 1] [ 4] [0200] +16:05:25 [ 2] [ 16] [6688990103535801] +16:05:25 [ 3] [ 6] [010000] +16:05:25 [ 4] [ 12] [000100000000] +16:05:25 [ 7] [ 10] [0320160520] +16:05:25 [ 11] [ 6] [792818] +16:05:25 [ 12] [ 6] [160520] +16:05:25 [ 13] [ 4] [0320] +16:05:25 [ 15] [ 4] [0320] +16:05:25 [ 18] [ 4] [6011] +16:05:25 [ 22] [ 3] [900] +16:05:25 [ 25] [ 2] [02] +16:05:25 [ 28] [ 9] [D00002000] +16:05:25 [ 32] [ 6] [621354] +16:05:25 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:05:25 [ 37] [ 12] [507903345176] +16:05:25 [ 41] [ 8] [13001400] +16:05:25 [ 42] [ 15] [NATIVE ] +16:05:25 [ 43] [ 40] [Kham Unit Kham LAO] +16:05:25 [ 49] [ 3] [418] +16:05:25 [ 52] [ 16] [5B2DE7A8572AD9BA] +16:05:25 ============================================================================ +16:05:25 + + +waiting on router queue for slot.... +16:05:25 Sending to : +16:05:25 ============================================================================ +16:05:25 ============================================================================ +16:05:25 Slot Id : <158> +16:05:25 Transaction Type : REQUEST +16:05:25 Received From : +16:05:25 ============================================================================ +16:05:25 FNo. Len. Field Value +16:05:25 ============================================================================ +16:05:25 [ 1] [ 4] [0200] +16:05:25 [ 2] [ 16] [6688990103535801] +16:05:25 [ 3] [ 6] [010000] +16:05:25 [ 4] [ 12] [000100000000] +16:05:25 [ 7] [ 10] [0320160520] +16:05:25 [ 11] [ 6] [792818] +16:05:25 [ 12] [ 6] [160520] +16:05:25 [ 13] [ 4] [0320] +16:05:25 [ 15] [ 4] [0320] +16:05:25 [ 18] [ 4] [6011] +16:05:25 [ 22] [ 3] [900] +16:05:25 [ 25] [ 2] [02] +16:05:25 [ 28] [ 9] [D00002000] +16:05:25 [ 32] [ 6] [621354] +16:05:25 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:05:25 [ 37] [ 12] [507903345176] +16:05:25 [ 41] [ 8] [13001400] +16:05:25 [ 42] [ 15] [NATIVE ] +16:05:25 [ 43] [ 40] [Kham Unit Kham LAO] +16:05:25 [ 49] [ 3] [418] +16:05:25 [ 52] [ 16] [94F1DA98B734B350] +16:05:25 ============================================================================ +16:05:25 + + +waiting on router queue for slot.... +16:05:25 Sending to : <4> +16:05:25 ============================================================================ +16:05:26 ============================================================================ +16:05:26 Slot Id : <158> +16:05:26 Transaction Type : RESPONSE +16:05:26 Received From : +16:05:26 ============================================================================ +16:05:26 FNo. Len. Field Value +16:05:26 ============================================================================ +16:05:26 [ 1] [ 4] [0210] +16:05:26 [ 2] [ 16] [6688990103535801] +16:05:26 [ 3] [ 6] [010000] +16:05:26 [ 4] [ 12] [000100000000] +16:05:26 [ 11] [ 6] [792818] +16:05:26 [ 12] [ 6] [160520] +16:05:26 [ 15] [ 4] [0320] +16:05:26 [ 18] [ 4] [6011] +16:05:26 [ 32] [ 6] [621354] +16:05:26 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:05:26 [ 37] [ 12] [507903345176] +16:05:26 [ 38] [ 6] [464637] +16:05:26 [ 39] [ 2] [00] +16:05:26 [ 41] [ 8] [13001400] +16:05:26 [ 49] [ 3] [418] +16:05:26 [ 54] [ 20] [0002418C000107297076] +16:05:26 ============================================================================ +16:05:26 Sending to : +16:05:26 ============================================================================ +16:05:26 + + +waiting on router queue for slot.... +16:05:26 ============================================================================ +16:05:26 Slot Id : <166> +16:05:26 Transaction Type : RESPONSE +16:05:26 Received From : +16:05:26 ============================================================================ +16:05:26 FNo. Len. Field Value +16:05:26 ============================================================================ +16:05:26 [ 1] [ 4] [0210] +16:05:26 [ 2] [ 16] [1808931200003380] +16:05:26 [ 3] [ 6] [010000] +16:05:26 [ 4] [ 12] [000100000000] +16:05:26 [ 6] [ 12] [000100000000] +16:05:26 [ 7] [ 10] [0320160309] +16:05:26 [ 11] [ 6] [951017] +16:05:26 [ 12] [ 6] [160309] +16:05:26 [ 13] [ 4] [0320] +16:05:26 [ 18] [ 4] [6011] +16:05:26 [ 19] [ 3] [418] +16:05:26 [ 22] [ 3] [021] +16:05:26 [ 32] [ 6] [668899] +16:05:26 [ 35] [ 27] [1808931200003380=1803500099] +16:05:26 [ 37] [ 12] [507902362974] +16:05:26 [ 38] [ 6] [951017] +16:05:26 [ 39] [ 2] [00] +16:05:26 [ 41] [ 8] [03016003] +16:05:26 [ 49] [ 3] [418] +16:05:26 [ 52] [ 16] [A98323DE1717D84C] +16:05:26 [ 54] [ 20] [1001418C001401503200] +16:05:26 ============================================================================ +16:05:26 Calculate Source COMM Id = 4 +16:05:26 ============================================================================ +16:05:26 + + +waiting on router queue for slot.... +16:05:27 ============================================================================ +16:05:27 Slot Id : <154> +16:05:27 Transaction Type : REQUEST +16:05:27 Received From : +16:05:27 ============================================================================ +16:05:27 FNo. Len. Field Value +16:05:27 ============================================================================ +16:05:27 [ 1] [ 4] [0800] +16:05:27 [ 7] [ 10] [0320160513] +16:05:27 [ 11] [ 6] [056000] +16:05:27 [ 37] [ 12] [507916056000] +16:05:27 [ 70] [ 3] [ ] +16:05:27 ============================================================================ +16:05:27 + + +waiting on router queue for slot.... +16:05:27 Sending to : +16:05:27 ============================================================================ +16:05:27 ============================================================================ +16:05:27 Slot Id : <154> +16:05:27 Transaction Type : RESPONSE +16:05:27 Received From : +16:05:27 ============================================================================ +16:05:27 FNo. Len. Field Value +16:05:27 ============================================================================ +16:05:27 [ 1] [ 4] [0810] +16:05:27 [ 7] [ 10] [0320160513] +16:05:27 [ 11] [ 6] [056000] +16:05:27 [ 37] [ 12] [507916056000] +16:05:27 [ 39] [ 2] [91] +16:05:27 [ 70] [ 3] [ ] +16:05:27 ============================================================================ +16:05:27 Calculate Source COMM Id = 3 +16:05:27 ============================================================================ +16:05:27 + + +waiting on router queue for slot.... +16:05:27 ============================================================================ +16:05:27 Slot Id : <158> +16:05:27 Transaction Type : RESPONSE +16:05:27 Received From : +16:05:27 ============================================================================ +16:05:27 FNo. Len. Field Value +16:05:27 ============================================================================ +16:05:27 [ 1] [ 4] [0210] +16:05:27 [ 2] [ 16] [6688990103535801] +16:05:27 [ 3] [ 6] [010000] +16:05:27 [ 4] [ 12] [000100000000] +16:05:27 [ 11] [ 6] [792818] +16:05:27 [ 12] [ 6] [160520] +16:05:27 [ 15] [ 4] [0320] +16:05:27 [ 18] [ 4] [6011] +16:05:27 [ 32] [ 6] [621354] +16:05:27 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:05:27 [ 37] [ 12] [507903345176] +16:05:27 [ 38] [ 6] [464637] +16:05:27 [ 39] [ 2] [00] +16:05:27 [ 41] [ 8] [13001400] +16:05:27 [ 49] [ 3] [418] +16:05:27 [ 54] [ 20] [0002418C000107297076] +16:05:27 ============================================================================ +16:05:27 Calculate Source COMM Id = 0 +16:05:27 ============================================================================ +16:05:27 + + +waiting on router queue for slot.... +16:05:30 ============================================================================ +16:05:30 Slot Id : <153> +16:05:30 Transaction Type : REQUEST +16:05:30 Received From : +16:05:30 ============================================================================ +16:05:30 FNo. Len. Field Value +16:05:30 ============================================================================ +16:05:30 [ 1] [ 4] [0800] +16:05:30 [ 7] [ 10] [0320090437] +16:05:30 [ 11] [ 6] [157164] +16:05:30 [ 70] [ 3] [301] +16:05:30 ============================================================================ +16:05:30 + + +waiting on router queue for slot.... +16:05:30 Sending to : +16:05:30 ============================================================================ +16:05:30 ============================================================================ +16:05:30 Slot Id : <153> +16:05:30 Transaction Type : RESPONSE +16:05:30 Received From : +16:05:30 ============================================================================ +16:05:30 FNo. Len. Field Value +16:05:30 ============================================================================ +16:05:30 [ 1] [ 4] [0810] +16:05:30 [ 7] [ 10] [0320090437] +16:05:30 [ 11] [ 6] [157164] +16:05:30 [ 39] [ 2] [00] +16:05:30 [ 70] [ 3] [301] +16:05:30 ============================================================================ +16:05:30 Calculate Source COMM Id = 2 +16:05:30 ============================================================================ +16:05:30 + + +waiting on router queue for slot.... +16:05:42 ============================================================================ +16:05:42 Slot Id : <120> +16:05:42 Transaction Type : REQUEST +16:05:42 Received From : +16:05:42 ============================================================================ +16:05:42 FNo. Len. Field Value +16:05:42 ============================================================================ +16:05:42 [ 1] [ 4] [0800] +16:05:42 [ 7] [ 10] [0320090448] +16:05:42 [ 11] [ 6] [157165] +16:05:42 [ 70] [ 3] [301] +16:05:42 ============================================================================ +16:05:42 + + +waiting on router queue for slot.... +16:05:42 Sending to : +16:05:42 ============================================================================ +16:05:42 ============================================================================ +16:05:42 Slot Id : <120> +16:05:42 Transaction Type : RESPONSE +16:05:42 Received From : +16:05:42 ============================================================================ +16:05:42 FNo. Len. Field Value +16:05:42 ============================================================================ +16:05:42 [ 1] [ 4] [0810] +16:05:42 [ 7] [ 10] [0320090448] +16:05:42 [ 11] [ 6] [157165] +16:05:42 [ 39] [ 2] [00] +16:05:42 [ 70] [ 3] [301] +16:05:42 ============================================================================ +16:05:42 Calculate Source COMM Id = 2 +16:05:42 ============================================================================ +16:05:42 + + +waiting on router queue for slot.... +16:05:43 ============================================================================ +16:05:43 Slot Id : <133> +16:05:43 Transaction Type : REQUEST +16:05:43 Received From : +16:05:43 ============================================================================ +16:05:43 FNo. Len. Field Value +16:05:43 ============================================================================ +16:05:43 [ 1] [ 4] [0200] +16:05:43 [ 2] [ 16] [6213543000037365] +16:05:43 [ 3] [ 6] [301000] +16:05:43 [ 7] [ 10] [0320090450] +16:05:43 [ 11] [ 6] [270236] +16:05:43 [ 12] [ 6] [160450] +16:05:43 [ 13] [ 4] [0320] +16:05:43 [ 14] [ 4] [4912] +16:05:43 [ 15] [ 4] [0320] +16:05:43 [ 18] [ 4] [6011] +16:05:43 [ 19] [ 3] [418] +16:05:43 [ 22] [ 3] [021] +16:05:43 [ 25] [ 2] [01] +16:05:43 [ 32] [ 6] [180893] +16:05:43 [ 35] [ 32] [6213543000037365=491212013736485] +16:05:43 [ 37] [ 12] [507909270236] +16:05:43 [ 41] [ 8] [0221XKKM] +16:05:43 [ 42] [ 15] [999999 ] +16:05:43 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:05:43 [ 49] [ 3] [418] +16:05:43 [ 52] [ 16] [B1084D17A99210C7] +16:05:43 ============================================================================ +16:05:43 + + +waiting on router queue for slot.... +16:05:43 Sending to : +16:05:43 ============================================================================ +16:05:43 Sending to : +16:05:43 ============================================================================ +16:05:43 ============================================================================ +16:05:43 Slot Id : <133> +16:05:43 Transaction Type : REQUEST +16:05:43 Received From : +16:05:43 ============================================================================ +16:05:43 FNo. Len. Field Value +16:05:43 ============================================================================ +16:05:43 [ 1] [ 4] [0200] +16:05:43 [ 2] [ 16] [6213543000037365] +16:05:43 [ 3] [ 6] [301000] +16:05:43 [ 7] [ 10] [0320090450] +16:05:43 [ 11] [ 6] [270236] +16:05:43 [ 12] [ 6] [160450] +16:05:43 [ 13] [ 4] [0320] +16:05:43 [ 14] [ 4] [4912] +16:05:43 [ 15] [ 4] [0320] +16:05:43 [ 18] [ 4] [6011] +16:05:43 [ 19] [ 3] [418] +16:05:43 [ 22] [ 3] [021] +16:05:43 [ 25] [ 2] [01] +16:05:43 [ 32] [ 6] [180893] +16:05:43 [ 35] [ 32] [6213543000037365=491212013736485] +16:05:43 [ 37] [ 12] [507909270236] +16:05:43 [ 41] [ 8] [0221XKKM] +16:05:43 [ 42] [ 15] [999999 ] +16:05:43 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:05:43 [ 49] [ 3] [418] +16:05:43 [ 52] [ 16] [B1084D17A99210C7] +16:05:43 ============================================================================ +16:05:43 + + +waiting on router queue for slot.... +16:05:43 Sending to : +16:05:43 ============================================================================ +16:05:43 ============================================================================ +16:05:43 Slot Id : <133> +16:05:43 Transaction Type : REQUEST +16:05:43 Received From : +16:05:43 ============================================================================ +16:05:43 FNo. Len. Field Value +16:05:43 ============================================================================ +16:05:43 [ 1] [ 4] [0200] +16:05:43 [ 2] [ 16] [6213543000037365] +16:05:43 [ 3] [ 6] [301000] +16:05:43 [ 7] [ 10] [0320090450] +16:05:43 [ 11] [ 6] [270236] +16:05:43 [ 12] [ 6] [160450] +16:05:43 [ 13] [ 4] [0320] +16:05:43 [ 14] [ 4] [4912] +16:05:43 [ 15] [ 4] [0320] +16:05:43 [ 18] [ 4] [6011] +16:05:43 [ 19] [ 3] [418] +16:05:43 [ 22] [ 3] [021] +16:05:43 [ 25] [ 2] [01] +16:05:43 [ 32] [ 6] [180893] +16:05:43 [ 35] [ 32] [6213543000037365=491212013736485] +16:05:43 [ 37] [ 12] [507909270236] +16:05:43 [ 41] [ 8] [0221XKKM] +16:05:43 [ 42] [ 15] [999999 ] +16:05:43 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:05:43 [ 49] [ 3] [418] +16:05:43 [ 52] [ 16] [B3A7E1DEEDAAB9F1] +16:05:43 ============================================================================ +16:05:43 + + +waiting on router queue for slot.... +16:05:43 Sending to : <0> +16:05:43 ============================================================================ +16:05:44 ============================================================================ +16:05:44 Slot Id : <133> +16:05:44 Transaction Type : RESPONSE +16:05:44 Received From : +16:05:44 ============================================================================ +16:05:44 FNo. Len. Field Value +16:05:44 ============================================================================ +16:05:44 [ 1] [ 4] [0210] +16:05:44 [ 2] [ 16] [6213543000037365] +16:05:44 [ 3] [ 6] [301000] +16:05:44 [ 4] [ 12] [000000000000] +16:05:44 [ 7] [ 10] [0320090450] +16:05:44 [ 11] [ 6] [270236] +16:05:44 [ 12] [ 6] [160450] +16:05:44 [ 13] [ 4] [0320] +16:05:44 [ 15] [ 4] [0320] +16:05:44 [ 18] [ 4] [6011] +16:05:44 [ 19] [ 3] [418] +16:05:44 [ 32] [ 6] [180893] +16:05:44 [ 35] [ 32] [6213543000037365=491212013736485] +16:05:44 [ 37] [ 12] [507909270236] +16:05:44 [ 38] [ 6] [021023] +16:05:44 [ 39] [ 2] [00] +16:05:44 [ 41] [ 8] [0221XKKM] +16:05:44 [ 49] [ 3] [418] +16:05:44 [ 54] [ 40] [1001418C0000053477011002418C000005347701] +16:05:44 ============================================================================ +16:05:44 Sending to : +16:05:44 ============================================================================ +16:05:44 + + +waiting on router queue for slot.... +16:05:46 ============================================================================ +16:05:46 Slot Id : <133> +16:05:46 Transaction Type : RESPONSE +16:05:46 Received From : +16:05:46 ============================================================================ +16:05:46 FNo. Len. Field Value +16:05:46 ============================================================================ +16:05:46 [ 1] [ 4] [0210] +16:05:46 [ 2] [ 16] [6213543000037365] +16:05:46 [ 3] [ 6] [301000] +16:05:46 [ 4] [ 12] [000000000000] +16:05:46 [ 7] [ 10] [0320090450] +16:05:46 [ 11] [ 6] [270236] +16:05:46 [ 12] [ 6] [160450] +16:05:46 [ 13] [ 4] [0320] +16:05:46 [ 15] [ 4] [0320] +16:05:46 [ 18] [ 4] [6011] +16:05:46 [ 19] [ 3] [418] +16:05:46 [ 32] [ 6] [180893] +16:05:46 [ 35] [ 32] [6213543000037365=491212013736485] +16:05:46 [ 37] [ 12] [507909270236] +16:05:46 [ 38] [ 6] [021023] +16:05:46 [ 39] [ 2] [00] +16:05:46 [ 41] [ 8] [0221XKKM] +16:05:46 [ 49] [ 3] [418] +16:05:46 [ 54] [ 40] [1001418C0000053477011002418C000005347701] +16:05:46 ============================================================================ +16:05:46 Calculate Source COMM Id = 2 +16:05:46 ============================================================================ +16:05:46 + + +waiting on router queue for slot.... +16:05:47 ============================================================================ +16:05:47 Slot Id : <150> +16:05:47 Transaction Type : REQUEST +16:05:47 Received From : +16:05:47 ============================================================================ +16:05:47 FNo. Len. Field Value +16:05:47 ============================================================================ +16:05:47 [ 1] [ 4] [0800] +16:05:47 [ 2] [ 5] [02531] +16:05:47 [ 3] [ 6] [579168] +16:05:47 [ 7] [ 10] [0320090547] +16:05:47 [ 11] [ 6] [807346] +16:05:47 [ 15] [ 10] [0320090547] +16:05:47 [ 37] [ 11] [57916807346] +16:05:47 [ 70] [ 3] [001] +16:05:47 ============================================================================ +16:05:47 + + +waiting on router queue for slot.... +16:05:47 ============================================================================ +16:05:47 Slot Id : <150> +16:05:47 Transaction Type : RESPONSE +16:05:47 Received From : +16:05:47 ============================================================================ +16:05:47 FNo. Len. Field Value +16:05:47 ============================================================================ +16:05:47 [ 1] [ 4] [0810] +16:05:47 [ 7] [ 10] [0320090547] +16:05:47 [ 11] [ 6] [807346] +16:05:47 [ 15] [ 4] [0320] +16:05:47 [ 37] [ 12] [57916807346] +16:05:47 [ 39] [ 2] [00] +16:05:47 [ 70] [ 3] [001] +16:05:47 ============================================================================ +16:05:47 Sending to : +16:05:47 ============================================================================ +16:05:47 + + +waiting on router queue for slot.... +16:05:49 ============================================================================ +16:05:49 Slot Id : <110> +16:05:49 Transaction Type : REQUEST +16:05:49 Received From : +16:05:49 ============================================================================ +16:05:49 FNo. Len. Field Value +16:05:49 ============================================================================ +16:05:49 [ 1] [ 4] [0200] +16:05:49 [ 2] [ 16] [6688990103260202] +16:05:49 [ 3] [ 6] [010000] +16:05:49 [ 4] [ 12] [000100000000] +16:05:49 [ 7] [ 10] [0320160544] +16:05:49 [ 11] [ 6] [792938] +16:05:49 [ 12] [ 6] [160544] +16:05:49 [ 13] [ 4] [0320] +16:05:49 [ 15] [ 4] [0320] +16:05:49 [ 18] [ 4] [6011] +16:05:49 [ 22] [ 3] [900] +16:05:49 [ 25] [ 2] [02] +16:05:49 [ 28] [ 9] [D00002000] +16:05:49 [ 32] [ 6] [621354] +16:05:49 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:05:49 [ 37] [ 12] [507903499561] +16:05:49 [ 41] [ 8] [06002200] +16:05:49 [ 42] [ 15] [NATIVE ] +16:05:49 [ 43] [ 40] [Beng Market Beng LAO] +16:05:49 [ 49] [ 3] [418] +16:05:49 [ 52] [ 16] [1C532F5642919E43] +16:05:49 ============================================================================ +16:05:49 + + +waiting on router queue for slot.... +16:05:49 Sending to : +16:05:49 ============================================================================ +16:05:49 Sending to : +16:05:49 ============================================================================ +16:05:49 ============================================================================ +16:05:49 Slot Id : <110> +16:05:49 Transaction Type : REQUEST +16:05:49 Received From : +16:05:49 ============================================================================ +16:05:49 FNo. Len. Field Value +16:05:49 ============================================================================ +16:05:49 [ 1] [ 4] [0200] +16:05:49 [ 2] [ 16] [6688990103260202] +16:05:49 [ 3] [ 6] [010000] +16:05:49 [ 4] [ 12] [000100000000] +16:05:49 [ 7] [ 10] [0320160544] +16:05:49 [ 11] [ 6] [792938] +16:05:49 [ 12] [ 6] [160544] +16:05:49 [ 13] [ 4] [0320] +16:05:49 [ 15] [ 4] [0320] +16:05:49 [ 18] [ 4] [6011] +16:05:49 [ 22] [ 3] [900] +16:05:49 [ 25] [ 2] [02] +16:05:49 [ 28] [ 9] [D00002000] +16:05:49 [ 32] [ 6] [621354] +16:05:49 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:05:49 [ 37] [ 12] [507903499561] +16:05:49 [ 41] [ 8] [06002200] +16:05:49 [ 42] [ 15] [NATIVE ] +16:05:49 [ 43] [ 40] [Beng Market Beng LAO] +16:05:49 [ 49] [ 3] [418] +16:05:49 [ 52] [ 16] [1C532F5642919E43] +16:05:49 ============================================================================ +16:05:49 + + +waiting on router queue for slot.... +16:05:49 Sending to : +16:05:49 ============================================================================ +16:05:49 ============================================================================ +16:05:49 Slot Id : <110> +16:05:49 Transaction Type : REQUEST +16:05:49 Received From : +16:05:49 ============================================================================ +16:05:49 FNo. Len. Field Value +16:05:49 ============================================================================ +16:05:49 [ 1] [ 4] [0200] +16:05:49 [ 2] [ 16] [6688990103260202] +16:05:49 [ 3] [ 6] [010000] +16:05:49 [ 4] [ 12] [000100000000] +16:05:49 [ 7] [ 10] [0320160544] +16:05:49 [ 11] [ 6] [792938] +16:05:49 [ 12] [ 6] [160544] +16:05:49 [ 13] [ 4] [0320] +16:05:49 [ 15] [ 4] [0320] +16:05:49 [ 18] [ 4] [6011] +16:05:49 [ 22] [ 3] [900] +16:05:49 [ 25] [ 2] [02] +16:05:49 [ 28] [ 9] [D00002000] +16:05:49 [ 32] [ 6] [621354] +16:05:49 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:05:49 [ 37] [ 12] [507903499561] +16:05:49 [ 41] [ 8] [06002200] +16:05:49 [ 42] [ 15] [NATIVE ] +16:05:49 [ 43] [ 40] [Beng Market Beng LAO] +16:05:49 [ 49] [ 3] [418] +16:05:49 [ 52] [ 16] [D67887803A78ED44] +16:05:49 ============================================================================ +16:05:49 + + +waiting on router queue for slot.... +16:05:49 Sending to : <4> +16:05:49 ============================================================================ +16:05:50 ============================================================================ +16:05:50 Slot Id : <110> +16:05:50 Transaction Type : RESPONSE +16:05:50 Received From : +16:05:50 ============================================================================ +16:05:50 FNo. Len. Field Value +16:05:50 ============================================================================ +16:05:50 [ 1] [ 4] [0210] +16:05:50 [ 2] [ 16] [6688990103260202] +16:05:50 [ 3] [ 6] [010000] +16:05:50 [ 4] [ 12] [000100000000] +16:05:50 [ 11] [ 6] [792938] +16:05:50 [ 12] [ 6] [160544] +16:05:50 [ 15] [ 4] [0320] +16:05:50 [ 18] [ 4] [6011] +16:05:50 [ 32] [ 6] [621354] +16:05:50 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:05:50 [ 37] [ 12] [507903499561] +16:05:50 [ 38] [ 6] [821497] +16:05:50 [ 39] [ 2] [00] +16:05:50 [ 41] [ 8] [06002200] +16:05:50 [ 49] [ 3] [418] +16:05:50 [ 54] [ 20] [0002418C000113288152] +16:05:50 ============================================================================ +16:05:50 Sending to : +16:05:50 ============================================================================ +16:05:50 + + +waiting on router queue for slot.... +16:05:52 ============================================================================ +16:05:52 Slot Id : <110> +16:05:52 Transaction Type : RESPONSE +16:05:52 Received From : +16:05:52 ============================================================================ +16:05:52 FNo. Len. Field Value +16:05:52 ============================================================================ +16:05:52 [ 1] [ 4] [0210] +16:05:52 [ 2] [ 16] [6688990103260202] +16:05:52 [ 3] [ 6] [010000] +16:05:52 [ 4] [ 12] [000100000000] +16:05:52 [ 11] [ 6] [792938] +16:05:52 [ 12] [ 6] [160544] +16:05:52 [ 15] [ 4] [0320] +16:05:52 [ 18] [ 4] [6011] +16:05:52 [ 32] [ 6] [621354] +16:05:52 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:05:52 [ 37] [ 12] [507903499561] +16:05:52 [ 38] [ 6] [821497] +16:05:52 [ 39] [ 2] [00] +16:05:52 [ 41] [ 8] [06002200] +16:05:52 [ 49] [ 3] [418] +16:05:52 [ 54] [ 20] [0002418C000113288152] +16:05:52 ============================================================================ +16:05:52 Calculate Source COMM Id = 0 +16:05:52 ============================================================================ +16:05:52 + + +waiting on router queue for slot.... +16:05:56 ============================================================================ +16:05:56 Slot Id : <159> +16:05:56 Transaction Type : REQUEST +16:05:56 Received From : +16:05:56 ============================================================================ +16:05:56 FNo. Len. Field Value +16:05:56 ============================================================================ +16:05:56 [ 1] [ 4] [0200] +16:05:56 [ 2] [ 16] [6213544000698214] +16:05:56 [ 3] [ 6] [301000] +16:05:56 [ 7] [ 10] [0320090502] +16:05:56 [ 11] [ 6] [270238] +16:05:56 [ 12] [ 6] [160502] +16:05:56 [ 13] [ 4] [0320] +16:05:56 [ 14] [ 4] [4912] +16:05:56 [ 15] [ 4] [0320] +16:05:56 [ 18] [ 4] [6011] +16:05:56 [ 19] [ 3] [418] +16:05:56 [ 22] [ 3] [021] +16:05:56 [ 25] [ 2] [01] +16:05:56 [ 32] [ 6] [180893] +16:05:56 [ 35] [ 32] [6213544000698214=491212019821664] +16:05:56 [ 37] [ 12] [507909270238] +16:05:56 [ 41] [ 8] [0528LPBP] +16:05:56 [ 42] [ 15] [999999 ] +16:05:56 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:05:56 [ 49] [ 3] [418] +16:05:56 [ 52] [ 16] [7D638849728E56B5] +16:05:56 ============================================================================ +16:05:56 + + +waiting on router queue for slot.... +16:05:56 Sending to : +16:05:56 ============================================================================ +16:05:56 Sending to : +16:05:56 ============================================================================ +16:05:56 ============================================================================ +16:05:56 Slot Id : <159> +16:05:56 Transaction Type : REQUEST +16:05:56 Received From : +16:05:56 ============================================================================ +16:05:56 FNo. Len. Field Value +16:05:56 ============================================================================ +16:05:56 [ 1] [ 4] [0200] +16:05:56 [ 2] [ 16] [6213544000698214] +16:05:56 [ 3] [ 6] [301000] +16:05:56 [ 7] [ 10] [0320090502] +16:05:56 [ 11] [ 6] [270238] +16:05:56 [ 12] [ 6] [160502] +16:05:56 [ 13] [ 4] [0320] +16:05:56 [ 14] [ 4] [4912] +16:05:56 [ 15] [ 4] [0320] +16:05:56 [ 18] [ 4] [6011] +16:05:56 [ 19] [ 3] [418] +16:05:56 [ 22] [ 3] [021] +16:05:56 [ 25] [ 2] [01] +16:05:56 [ 32] [ 6] [180893] +16:05:56 [ 35] [ 32] [6213544000698214=491212019821664] +16:05:56 [ 37] [ 12] [507909270238] +16:05:56 [ 41] [ 8] [0528LPBP] +16:05:56 [ 42] [ 15] [999999 ] +16:05:56 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:05:56 [ 49] [ 3] [418] +16:05:56 [ 52] [ 16] [7D638849728E56B5] +16:05:56 ============================================================================ +16:05:56 + + +waiting on router queue for slot.... +16:05:56 Sending to : +16:05:56 ============================================================================ +16:05:56 ============================================================================ +16:05:56 Slot Id : <159> +16:05:56 Transaction Type : REQUEST +16:05:56 Received From : +16:05:56 ============================================================================ +16:05:56 FNo. Len. Field Value +16:05:56 ============================================================================ +16:05:56 [ 1] [ 4] [0200] +16:05:56 [ 2] [ 16] [6213544000698214] +16:05:56 [ 3] [ 6] [301000] +16:05:56 [ 7] [ 10] [0320090502] +16:05:56 [ 11] [ 6] [270238] +16:05:56 [ 12] [ 6] [160502] +16:05:56 [ 13] [ 4] [0320] +16:05:56 [ 14] [ 4] [4912] +16:05:56 [ 15] [ 4] [0320] +16:05:56 [ 18] [ 4] [6011] +16:05:56 [ 19] [ 3] [418] +16:05:56 [ 22] [ 3] [021] +16:05:56 [ 25] [ 2] [01] +16:05:56 [ 32] [ 6] [180893] +16:05:56 [ 35] [ 32] [6213544000698214=491212019821664] +16:05:56 [ 37] [ 12] [507909270238] +16:05:56 [ 41] [ 8] [0528LPBP] +16:05:56 [ 42] [ 15] [999999 ] +16:05:56 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:05:56 [ 49] [ 3] [418] +16:05:56 [ 52] [ 16] [9DE149464778B61B] +16:05:56 ============================================================================ +16:05:56 + + +waiting on router queue for slot.... +16:05:56 Sending to : <0> +16:05:56 ============================================================================ +16:05:56 ============================================================================ +16:05:56 Slot Id : <159> +16:05:56 Transaction Type : RESPONSE +16:05:56 Received From : +16:05:56 ============================================================================ +16:05:56 FNo. Len. Field Value +16:05:56 ============================================================================ +16:05:56 [ 1] [ 4] [0210] +16:05:56 [ 2] [ 16] [6213544000698214] +16:05:56 [ 3] [ 6] [301000] +16:05:56 [ 4] [ 12] [000000000000] +16:05:56 [ 7] [ 10] [0320090502] +16:05:56 [ 11] [ 6] [270238] +16:05:56 [ 12] [ 6] [160502] +16:05:56 [ 13] [ 4] [0320] +16:05:56 [ 15] [ 4] [0320] +16:05:56 [ 18] [ 4] [6011] +16:05:56 [ 19] [ 3] [418] +16:05:56 [ 22] [ 3] [021] +16:05:56 [ 32] [ 6] [180893] +16:05:56 [ 35] [ 32] [6213544000698214=491212019821664] +16:05:56 [ 37] [ 12] [507909270238] +16:05:56 [ 39] [ 2] [05] +16:05:56 [ 41] [ 8] [0528LPBP] +16:05:56 [ 49] [ 3] [418] +16:05:56 ============================================================================ +16:05:56 Sending to : +16:05:56 ============================================================================ +16:05:56 + + +waiting on router queue for slot.... +16:05:57 ============================================================================ +16:05:57 Slot Id : <159> +16:05:57 Transaction Type : RESPONSE +16:05:57 Received From : +16:05:57 ============================================================================ +16:05:57 FNo. Len. Field Value +16:05:57 ============================================================================ +16:05:57 [ 1] [ 4] [0210] +16:05:57 [ 2] [ 16] [6213544000698214] +16:05:57 [ 3] [ 6] [301000] +16:05:57 [ 4] [ 12] [000000000000] +16:05:57 [ 7] [ 10] [0320090502] +16:05:57 [ 11] [ 6] [270238] +16:05:57 [ 12] [ 6] [160502] +16:05:57 [ 13] [ 4] [0320] +16:05:57 [ 15] [ 4] [0320] +16:05:57 [ 18] [ 4] [6011] +16:05:57 [ 19] [ 3] [418] +16:05:57 [ 22] [ 3] [021] +16:05:57 [ 32] [ 6] [180893] +16:05:57 [ 35] [ 32] [6213544000698214=491212019821664] +16:05:57 [ 37] [ 12] [507909270238] +16:05:57 [ 39] [ 2] [05] +16:05:57 [ 41] [ 8] [0528LPBP] +16:05:57 [ 49] [ 3] [418] +16:05:57 ============================================================================ +16:05:57 Calculate Source COMM Id = 2 +16:05:57 ============================================================================ +16:05:57 + + +waiting on router queue for slot.... +16:06:03 ============================================================================ +16:06:03 Slot Id : <142> +16:06:03 Transaction Type : REQUEST +16:06:03 Received From : +16:06:03 ============================================================================ +16:06:03 FNo. Len. Field Value +16:06:03 ============================================================================ +16:06:03 [ 1] [ 4] [0200] +16:06:03 [ 2] [ 16] [2206990000054882] +16:06:03 [ 3] [ 6] [010000] +16:06:03 [ 4] [ 12] [000030000000] +16:06:03 [ 7] [ 10] [0320160558] +16:06:03 [ 11] [ 6] [793035] +16:06:03 [ 12] [ 6] [160558] +16:06:03 [ 13] [ 4] [0320] +16:06:03 [ 15] [ 4] [0320] +16:06:03 [ 18] [ 4] [6011] +16:06:03 [ 22] [ 3] [900] +16:06:03 [ 25] [ 2] [02] +16:06:03 [ 28] [ 9] [D00002000] +16:06:03 [ 32] [ 6] [621354] +16:06:03 [ 35] [ 32] [2206990000054882=970512616509793] +16:06:03 [ 37] [ 12] [507903683844] +16:06:03 [ 41] [ 8] [01008800] +16:06:03 [ 42] [ 15] [NATIVE ] +16:06:03 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +16:06:03 [ 49] [ 3] [418] +16:06:03 [ 52] [ 16] [FA601C9464522AD5] +16:06:03 ============================================================================ +16:06:03 + + +waiting on router queue for slot.... +16:06:03 Sending to : +16:06:03 ============================================================================ +16:06:03 Sending to : +16:06:03 ============================================================================ +16:06:04 ============================================================================ +16:06:04 Slot Id : <142> +16:06:04 Transaction Type : REQUEST +16:06:04 Received From : +16:06:04 ============================================================================ +16:06:04 FNo. Len. Field Value +16:06:04 ============================================================================ +16:06:04 [ 1] [ 4] [0200] +16:06:04 [ 2] [ 16] [2206990000054882] +16:06:04 [ 3] [ 6] [010000] +16:06:04 [ 4] [ 12] [000030000000] +16:06:04 [ 7] [ 10] [0320160558] +16:06:04 [ 11] [ 6] [793035] +16:06:04 [ 12] [ 6] [160558] +16:06:04 [ 13] [ 4] [0320] +16:06:04 [ 15] [ 4] [0320] +16:06:04 [ 18] [ 4] [6011] +16:06:04 [ 22] [ 3] [900] +16:06:04 [ 25] [ 2] [02] +16:06:04 [ 28] [ 9] [D00002000] +16:06:04 [ 32] [ 6] [621354] +16:06:04 [ 35] [ 32] [2206990000054882=970512616509793] +16:06:04 [ 37] [ 12] [507903683844] +16:06:04 [ 41] [ 8] [01008800] +16:06:04 [ 42] [ 15] [NATIVE ] +16:06:04 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +16:06:04 [ 49] [ 3] [418] +16:06:04 [ 52] [ 16] [FA601C9464522AD5] +16:06:04 ============================================================================ +16:06:04 + + +waiting on router queue for slot.... +16:06:04 Sending to : +16:06:04 ============================================================================ +16:06:04 ============================================================================ +16:06:04 Slot Id : <142> +16:06:04 Transaction Type : REQUEST +16:06:04 Received From : +16:06:04 ============================================================================ +16:06:04 FNo. Len. Field Value +16:06:04 ============================================================================ +16:06:04 [ 1] [ 4] [0200] +16:06:04 [ 2] [ 16] [2206990000054882] +16:06:04 [ 3] [ 6] [010000] +16:06:04 [ 4] [ 12] [000030000000] +16:06:04 [ 7] [ 10] [0320160558] +16:06:04 [ 11] [ 6] [793035] +16:06:04 [ 12] [ 6] [160558] +16:06:04 [ 13] [ 4] [0320] +16:06:04 [ 15] [ 4] [0320] +16:06:04 [ 18] [ 4] [6011] +16:06:04 [ 22] [ 3] [900] +16:06:04 [ 25] [ 2] [02] +16:06:04 [ 28] [ 9] [D00002000] +16:06:04 [ 32] [ 6] [621354] +16:06:04 [ 35] [ 32] [2206990000054882=970512616509793] +16:06:04 [ 37] [ 12] [507903683844] +16:06:04 [ 41] [ 8] [01008800] +16:06:04 [ 42] [ 15] [NATIVE ] +16:06:04 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +16:06:04 [ 49] [ 3] [418] +16:06:04 [ 52] [ 16] [DD5E0F574596C7AE] +16:06:04 ============================================================================ +16:06:04 + + +waiting on router queue for slot.... +16:06:04 Sending to : <1> +16:06:04 ============================================================================ +16:06:06 ============================================================================ +16:06:06 Slot Id : <142> +16:06:06 Transaction Type : RESPONSE +16:06:06 Received From : +16:06:06 ============================================================================ +16:06:06 FNo. Len. Field Value +16:06:06 ============================================================================ +16:06:06 [ 1] [ 4] [0210] +16:06:06 [ 2] [ 16] [2206990000054882] +16:06:06 [ 3] [ 6] [010000] +16:06:06 [ 4] [ 12] [000030000000] +16:06:06 [ 7] [ 10] [0320160558] +16:06:06 [ 11] [ 6] [793035] +16:06:06 [ 12] [ 6] [160558] +16:06:06 [ 13] [ 4] [0320] +16:06:06 [ 15] [ 4] [0320] +16:06:06 [ 18] [ 4] [6011] +16:06:06 [ 32] [ 6] [621354] +16:06:06 [ 35] [ 32] [2206990000054882=970512616509793] +16:06:06 [ 37] [ 12] [507903683844] +16:06:06 [ 38] [ 6] [] +16:06:06 [ 39] [ 2] [51] +16:06:06 [ 41] [ 8] [01008800] +16:06:06 [ 49] [ 3] [418] +16:06:06 ============================================================================ +16:06:06 Sending to : +16:06:06 ============================================================================ +16:06:06 + + +waiting on router queue for slot.... +16:06:07 ============================================================================ +16:06:07 Slot Id : <142> +16:06:07 Transaction Type : RESPONSE +16:06:07 Received From : +16:06:07 ============================================================================ +16:06:07 FNo. Len. Field Value +16:06:07 ============================================================================ +16:06:07 [ 1] [ 4] [0210] +16:06:07 [ 2] [ 16] [2206990000054882] +16:06:07 [ 3] [ 6] [010000] +16:06:07 [ 4] [ 12] [000030000000] +16:06:07 [ 7] [ 10] [0320160558] +16:06:07 [ 11] [ 6] [793035] +16:06:07 [ 12] [ 6] [160558] +16:06:07 [ 13] [ 4] [0320] +16:06:07 [ 15] [ 4] [0320] +16:06:07 [ 18] [ 4] [6011] +16:06:07 [ 32] [ 6] [621354] +16:06:07 [ 35] [ 32] [2206990000054882=970512616509793] +16:06:07 [ 37] [ 12] [507903683844] +16:06:07 [ 38] [ 6] [] +16:06:07 [ 39] [ 2] [51] +16:06:07 [ 41] [ 8] [01008800] +16:06:07 [ 49] [ 3] [418] +16:06:07 ============================================================================ +16:06:07 Calculate Source COMM Id = 0 +16:06:07 ============================================================================ +16:06:07 + + +waiting on router queue for slot.... +16:06:12 ============================================================================ +16:06:12 Slot Id : <130> +16:06:12 Transaction Type : REQUEST +16:06:12 Received From : +16:06:12 ============================================================================ +16:06:12 FNo. Len. Field Value +16:06:12 ============================================================================ +16:06:12 [ 1] [ 4] [0800] +16:06:12 [ 7] [ 10] [0320231801] +16:06:12 [ 11] [ 6] [161801] +16:06:12 [ 37] [ 12] [57916161801] +16:06:12 [ 70] [ 3] [301] +16:06:12 ============================================================================ +16:06:12 + + +waiting on router queue for slot.... +16:06:12 Sending to : +16:06:12 ============================================================================ +16:06:12 ============================================================================ +16:06:12 Slot Id : <130> +16:06:12 Transaction Type : RESPONSE +16:06:12 Received From : +16:06:12 ============================================================================ +16:06:12 FNo. Len. Field Value +16:06:12 ============================================================================ +16:06:12 [ 1] [ 4] [0810] +16:06:12 [ 7] [ 10] [0320231801] +16:06:12 [ 11] [ 6] [161801] +16:06:12 [ 37] [ 12] [579161618010] +16:06:12 [ 39] [ 2] [00] +16:06:12 [ 70] [ 3] [810] +16:06:12 ============================================================================ +16:06:12 Calculate Source COMM Id = 6 +16:06:12 ============================================================================ +16:06:12 + + +waiting on router queue for slot.... +16:06:12 ============================================================================ +16:06:12 Slot Id : <167> +16:06:12 Transaction Type : REQUEST +16:06:12 Received From : +16:06:12 ============================================================================ +16:06:12 FNo. Len. Field Value +16:06:12 ============================================================================ +16:06:12 [ 1] [ 4] [0800] +16:06:12 [ 7] [ 10] [0320090519] +16:06:12 [ 11] [ 6] [157166] +16:06:12 [ 70] [ 3] [301] +16:06:12 ============================================================================ +16:06:12 + + +waiting on router queue for slot.... +16:06:12 Sending to : +16:06:12 ============================================================================ +16:06:12 ============================================================================ +16:06:12 Slot Id : <167> +16:06:12 Transaction Type : RESPONSE +16:06:12 Received From : +16:06:12 ============================================================================ +16:06:12 FNo. Len. Field Value +16:06:12 ============================================================================ +16:06:12 [ 1] [ 4] [0810] +16:06:12 [ 7] [ 10] [0320090519] +16:06:12 [ 11] [ 6] [157166] +16:06:12 [ 39] [ 2] [00] +16:06:12 [ 70] [ 3] [301] +16:06:12 ============================================================================ +16:06:12 Calculate Source COMM Id = 2 +16:06:12 ============================================================================ +16:06:12 + + +waiting on router queue for slot.... +16:06:22 ============================================================================ +16:06:22 Slot Id : <146> +16:06:22 Transaction Type : REQUEST +16:06:22 Received From : +16:06:22 ============================================================================ +16:06:22 FNo. Len. Field Value +16:06:22 ============================================================================ +16:06:22 [ 1] [ 4] [0800] +16:06:22 [ 7] [ 10] [0320090412] +16:06:22 [ 11] [ 6] [044670] +16:06:22 [ 37] [ 12] [57916044670] +16:06:22 [ 70] [ 3] [301] +16:06:22 ============================================================================ +16:06:22 + + +waiting on router queue for slot.... +16:06:22 Sending to : +16:06:22 ============================================================================ +16:06:22 ============================================================================ +16:06:22 Slot Id : <146> +16:06:22 Transaction Type : RESPONSE +16:06:22 Received From : +16:06:22 ============================================================================ +16:06:22 FNo. Len. Field Value +16:06:22 ============================================================================ +16:06:22 [ 1] [ 4] [0810] +16:06:22 [ 7] [ 10] [0320090412] +16:06:22 [ 11] [ 6] [044670] +16:06:22 [ 37] [ 12] [579160446700] +16:06:22 [ 39] [ 2] [00] +16:06:22 [ 70] [ 3] [810] +16:06:22 ============================================================================ +16:06:22 Calculate Source COMM Id = 4 +16:06:22 ============================================================================ +16:06:22 + + +waiting on router queue for slot.... +16:06:22 ============================================================================ +16:06:22 Slot Id : <175> +16:06:22 Transaction Type : REQUEST +16:06:22 Received From : +16:06:22 ============================================================================ +16:06:22 FNo. Len. Field Value +16:06:22 ============================================================================ +16:06:22 [ 1] [ 4] [0200] +16:06:22 [ 2] [ 16] [1808931200003380] +16:06:22 [ 3] [ 6] [010000] +16:06:22 [ 4] [ 12] [000100000000] +16:06:22 [ 7] [ 10] [0320160412] +16:06:22 [ 11] [ 6] [951053] +16:06:22 [ 12] [ 6] [160412] +16:06:22 [ 13] [ 4] [0320] +16:06:22 [ 15] [ 4] [0320] +16:06:22 [ 18] [ 4] [6011] +16:06:22 [ 19] [ 3] [418] +16:06:22 [ 22] [ 3] [021] +16:06:22 [ 25] [ 2] [01] +16:06:22 [ 28] [ 9] [D00002000] +16:06:22 [ 32] [ 6] [668899] +16:06:22 [ 35] [ 27] [1808931200003380=1803500099] +16:06:22 [ 37] [ 12] [507902362976] +16:06:22 [ 41] [ 8] [03016003] +16:06:22 [ 42] [ 15] [APT ] +16:06:22 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:06:22 [ 49] [ 3] [418] +16:06:22 [ 52] [ 16] [3DB26522819E25DC] +16:06:22 ============================================================================ +16:06:22 + + +waiting on router queue for slot.... +16:06:22 Sending to : +16:06:22 ============================================================================ +16:06:22 Sending to : +16:06:22 ============================================================================ +16:06:22 ============================================================================ +16:06:22 Slot Id : <175> +16:06:22 Transaction Type : REQUEST +16:06:22 Received From : +16:06:22 ============================================================================ +16:06:22 FNo. Len. Field Value +16:06:22 ============================================================================ +16:06:22 [ 1] [ 4] [0200] +16:06:22 [ 2] [ 16] [1808931200003380] +16:06:22 [ 3] [ 6] [010000] +16:06:22 [ 4] [ 12] [000100000000] +16:06:22 [ 7] [ 10] [0320160412] +16:06:22 [ 11] [ 6] [951053] +16:06:22 [ 12] [ 6] [160412] +16:06:22 [ 13] [ 4] [0320] +16:06:22 [ 15] [ 4] [0320] +16:06:22 [ 18] [ 4] [6011] +16:06:22 [ 19] [ 3] [418] +16:06:22 [ 22] [ 3] [021] +16:06:22 [ 25] [ 2] [01] +16:06:22 [ 28] [ 9] [D00002000] +16:06:22 [ 32] [ 6] [668899] +16:06:22 [ 35] [ 27] [1808931200003380=1803500099] +16:06:22 [ 37] [ 12] [507902362976] +16:06:22 [ 41] [ 8] [03016003] +16:06:22 [ 42] [ 15] [APT ] +16:06:22 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:06:22 [ 49] [ 3] [418] +16:06:22 [ 52] [ 16] [3DB26522819E25DC] +16:06:22 ============================================================================ +16:06:22 + + +waiting on router queue for slot.... +16:06:22 Sending to : +16:06:22 ============================================================================ +16:06:22 ============================================================================ +16:06:22 Slot Id : <175> +16:06:22 Transaction Type : REQUEST +16:06:22 Received From : +16:06:22 ============================================================================ +16:06:22 FNo. Len. Field Value +16:06:22 ============================================================================ +16:06:22 [ 1] [ 4] [0200] +16:06:22 [ 2] [ 16] [1808931200003380] +16:06:22 [ 3] [ 6] [010000] +16:06:22 [ 4] [ 12] [000100000000] +16:06:22 [ 7] [ 10] [0320160412] +16:06:22 [ 11] [ 6] [951053] +16:06:22 [ 12] [ 6] [160412] +16:06:22 [ 13] [ 4] [0320] +16:06:22 [ 15] [ 4] [0320] +16:06:22 [ 18] [ 4] [6011] +16:06:22 [ 19] [ 3] [418] +16:06:22 [ 22] [ 3] [021] +16:06:22 [ 25] [ 2] [01] +16:06:22 [ 28] [ 9] [D00002000] +16:06:22 [ 32] [ 6] [668899] +16:06:22 [ 35] [ 27] [1808931200003380=1803500099] +16:06:22 [ 37] [ 12] [507902362976] +16:06:22 [ 41] [ 8] [03016003] +16:06:22 [ 42] [ 15] [APT ] +16:06:22 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:06:22 [ 49] [ 3] [418] +16:06:22 [ 52] [ 16] [A98323DE1717D84C] +16:06:22 ============================================================================ +16:06:22 + + +waiting on router queue for slot.... +16:06:22 Sending to : <2> +16:06:22 ============================================================================ +16:06:23 ============================================================================ +16:06:23 Slot Id : <137> +16:06:23 Transaction Type : REQUEST +16:06:23 Received From : +16:06:23 ============================================================================ +16:06:23 FNo. Len. Field Value +16:06:23 ============================================================================ +16:06:23 [ 1] [ 4] [0800] +16:06:23 [ 7] [ 10] [0320090530] +16:06:23 [ 11] [ 6] [157167] +16:06:23 [ 70] [ 3] [301] +16:06:23 ============================================================================ +16:06:23 + + +waiting on router queue for slot.... +16:06:23 Sending to : +16:06:23 ============================================================================ +16:06:23 ============================================================================ +16:06:23 Slot Id : <137> +16:06:23 Transaction Type : RESPONSE +16:06:23 Received From : +16:06:23 ============================================================================ +16:06:23 FNo. Len. Field Value +16:06:23 ============================================================================ +16:06:23 [ 1] [ 4] [0810] +16:06:23 [ 7] [ 10] [0320090530] +16:06:23 [ 11] [ 6] [157167] +16:06:23 [ 39] [ 2] [00] +16:06:23 [ 70] [ 3] [301] +16:06:23 ============================================================================ +16:06:23 Calculate Source COMM Id = 2 +16:06:23 ============================================================================ +16:06:23 + + +waiting on router queue for slot.... +16:06:27 ============================================================================ +16:06:27 Slot Id : <175> +16:06:27 Transaction Type : RESPONSE +16:06:27 Received From : +16:06:27 ============================================================================ +16:06:27 FNo. Len. Field Value +16:06:27 ============================================================================ +16:06:27 [ 1] [ 4] [0210] +16:06:27 [ 2] [ 16] [1808931200003380] +16:06:27 [ 3] [ 6] [010000] +16:06:27 [ 4] [ 12] [000100000000] +16:06:27 [ 6] [ 12] [000100000000] +16:06:27 [ 7] [ 10] [0320160412] +16:06:27 [ 11] [ 6] [951053] +16:06:27 [ 12] [ 6] [160412] +16:06:27 [ 13] [ 4] [0320] +16:06:27 [ 18] [ 4] [6011] +16:06:27 [ 19] [ 3] [418] +16:06:27 [ 22] [ 3] [021] +16:06:27 [ 32] [ 6] [668899] +16:06:27 [ 35] [ 27] [1808931200003380=1803500099] +16:06:27 [ 37] [ 12] [507902362976] +16:06:27 [ 38] [ 6] [951053] +16:06:27 [ 39] [ 2] [00] +16:06:27 [ 41] [ 8] [03016003] +16:06:27 [ 49] [ 3] [418] +16:06:27 [ 52] [ 16] [A98323DE1717D84C] +16:06:27 [ 54] [ 20] [1001418C001301303200] +16:06:27 ============================================================================ +16:06:27 Sending to : +16:06:27 ============================================================================ +16:06:27 + + +waiting on router queue for slot.... +16:06:27 ============================================================================ +16:06:27 Slot Id : <170> +16:06:27 Transaction Type : REQUEST +16:06:27 Received From : +16:06:27 ============================================================================ +16:06:27 FNo. Len. Field Value +16:06:27 ============================================================================ +16:06:27 [ 1] [ 4] [0200] +16:06:27 [ 2] [ 16] [6213541000694631] +16:06:27 [ 3] [ 6] [010000] +16:06:27 [ 4] [ 12] [000100000000] +16:06:27 [ 7] [ 10] [0320160417] +16:06:27 [ 11] [ 6] [951056] +16:06:27 [ 12] [ 6] [160417] +16:06:27 [ 13] [ 4] [0320] +16:06:27 [ 15] [ 4] [0320] +16:06:27 [ 18] [ 4] [6011] +16:06:27 [ 19] [ 3] [418] +16:06:27 [ 22] [ 3] [021] +16:06:27 [ 25] [ 2] [01] +16:06:27 [ 28] [ 9] [D00002000] +16:06:27 [ 32] [ 6] [668899] +16:06:27 [ 35] [ 32] [6213541000694631=491212019463429] +16:06:27 [ 37] [ 12] [507900123472] +16:06:27 [ 41] [ 8] [03020003] +16:06:27 [ 42] [ 15] [APT ] +16:06:27 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +16:06:27 [ 49] [ 3] [418] +16:06:27 [ 52] [ 16] [86509B350BFD6637] +16:06:27 ============================================================================ +16:06:27 + + +waiting on router queue for slot.... +16:06:27 Sending to : +16:06:27 ============================================================================ +16:06:27 Sending to : +16:06:27 ============================================================================ +16:06:27 ============================================================================ +16:06:27 Slot Id : <170> +16:06:27 Transaction Type : REQUEST +16:06:27 Received From : +16:06:27 ============================================================================ +16:06:27 FNo. Len. Field Value +16:06:27 ============================================================================ +16:06:27 [ 1] [ 4] [0200] +16:06:27 [ 2] [ 16] [6213541000694631] +16:06:27 [ 3] [ 6] [010000] +16:06:27 [ 4] [ 12] [000100000000] +16:06:27 [ 7] [ 10] [0320160417] +16:06:27 [ 11] [ 6] [951056] +16:06:27 [ 12] [ 6] [160417] +16:06:27 [ 13] [ 4] [0320] +16:06:27 [ 15] [ 4] [0320] +16:06:27 [ 18] [ 4] [6011] +16:06:27 [ 19] [ 3] [418] +16:06:27 [ 22] [ 3] [021] +16:06:27 [ 25] [ 2] [01] +16:06:27 [ 28] [ 9] [D00002000] +16:06:27 [ 32] [ 6] [668899] +16:06:27 [ 35] [ 32] [6213541000694631=491212019463429] +16:06:27 [ 37] [ 12] [507900123472] +16:06:27 [ 41] [ 8] [03020003] +16:06:27 [ 42] [ 15] [APT ] +16:06:27 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +16:06:27 [ 49] [ 3] [418] +16:06:27 [ 52] [ 16] [86509B350BFD6637] +16:06:27 ============================================================================ +16:06:27 + + +waiting on router queue for slot.... +16:06:27 Sending to : +16:06:27 ============================================================================ +16:06:27 ============================================================================ +16:06:27 Slot Id : <170> +16:06:27 Transaction Type : REQUEST +16:06:27 Received From : +16:06:27 ============================================================================ +16:06:27 FNo. Len. Field Value +16:06:27 ============================================================================ +16:06:27 [ 1] [ 4] [0200] +16:06:27 [ 2] [ 16] [6213541000694631] +16:06:27 [ 3] [ 6] [010000] +16:06:27 [ 4] [ 12] [000100000000] +16:06:27 [ 7] [ 10] [0320160417] +16:06:27 [ 11] [ 6] [951056] +16:06:27 [ 12] [ 6] [160417] +16:06:27 [ 13] [ 4] [0320] +16:06:27 [ 15] [ 4] [0320] +16:06:27 [ 18] [ 4] [6011] +16:06:27 [ 19] [ 3] [418] +16:06:27 [ 22] [ 3] [021] +16:06:27 [ 25] [ 2] [01] +16:06:27 [ 28] [ 9] [D00002000] +16:06:27 [ 32] [ 6] [668899] +16:06:27 [ 35] [ 32] [6213541000694631=491212019463429] +16:06:27 [ 37] [ 12] [507900123472] +16:06:27 [ 41] [ 8] [03020003] +16:06:27 [ 42] [ 15] [APT ] +16:06:27 [ 43] [ 40] [ TALATSAO MALL SAYSETTHA T] +16:06:27 [ 49] [ 3] [418] +16:06:27 [ 52] [ 16] [47D4E011B09CC6ED] +16:06:27 ============================================================================ +16:06:27 + + +waiting on router queue for slot.... +16:06:27 Sending to : <0> +16:06:27 ============================================================================ +16:06:28 ============================================================================ +16:06:28 Slot Id : <170> +16:06:28 Transaction Type : RESPONSE +16:06:28 Received From : +16:06:28 ============================================================================ +16:06:28 FNo. Len. Field Value +16:06:28 ============================================================================ +16:06:28 [ 1] [ 4] [0210] +16:06:28 [ 2] [ 16] [6213541000694631] +16:06:28 [ 3] [ 6] [010000] +16:06:28 [ 4] [ 12] [000100000000] +16:06:28 [ 7] [ 10] [0320160417] +16:06:28 [ 11] [ 6] [951056] +16:06:28 [ 12] [ 6] [160417] +16:06:28 [ 13] [ 4] [0320] +16:06:28 [ 15] [ 4] [0320] +16:06:28 [ 18] [ 4] [6011] +16:06:28 [ 19] [ 3] [418] +16:06:28 [ 32] [ 6] [668899] +16:06:28 [ 35] [ 32] [6213541000694631=491212019463429] +16:06:28 [ 37] [ 12] [507900123472] +16:06:28 [ 38] [ 6] [072035] +16:06:28 [ 39] [ 2] [00] +16:06:28 [ 41] [ 8] [03020003] +16:06:28 [ 49] [ 3] [418] +16:06:28 [ 54] [ 40] [0001840C0000003992640002840C000000395264] +16:06:28 ============================================================================ +16:06:28 Sending to : +16:06:28 ============================================================================ +16:06:28 + + +waiting on router queue for slot.... +16:06:28 ============================================================================ +16:06:28 Slot Id : <175> +16:06:28 Transaction Type : RESPONSE +16:06:28 Received From : +16:06:28 ============================================================================ +16:06:28 FNo. Len. Field Value +16:06:28 ============================================================================ +16:06:28 [ 1] [ 4] [0210] +16:06:28 [ 2] [ 16] [1808931200003380] +16:06:28 [ 3] [ 6] [010000] +16:06:28 [ 4] [ 12] [000100000000] +16:06:28 [ 6] [ 12] [000100000000] +16:06:28 [ 7] [ 10] [0320160412] +16:06:28 [ 11] [ 6] [951053] +16:06:28 [ 12] [ 6] [160412] +16:06:28 [ 13] [ 4] [0320] +16:06:28 [ 18] [ 4] [6011] +16:06:28 [ 19] [ 3] [418] +16:06:28 [ 22] [ 3] [021] +16:06:28 [ 32] [ 6] [668899] +16:06:28 [ 35] [ 27] [1808931200003380=1803500099] +16:06:28 [ 37] [ 12] [507902362976] +16:06:28 [ 38] [ 6] [951053] +16:06:28 [ 39] [ 2] [00] +16:06:28 [ 41] [ 8] [03016003] +16:06:28 [ 49] [ 3] [418] +16:06:28 [ 52] [ 16] [A98323DE1717D84C] +16:06:28 [ 54] [ 20] [1001418C001301303200] +16:06:28 ============================================================================ +16:06:28 Calculate Source COMM Id = 4 +16:06:28 ============================================================================ +16:06:28 + + +waiting on router queue for slot.... +16:06:30 ============================================================================ +16:06:30 Slot Id : <170> +16:06:30 Transaction Type : RESPONSE +16:06:30 Received From : +16:06:30 ============================================================================ +16:06:30 FNo. Len. Field Value +16:06:30 ============================================================================ +16:06:30 [ 1] [ 4] [0210] +16:06:30 [ 2] [ 16] [6213541000694631] +16:06:30 [ 3] [ 6] [010000] +16:06:30 [ 4] [ 12] [000100000000] +16:06:30 [ 7] [ 10] [0320160417] +16:06:30 [ 11] [ 6] [951056] +16:06:30 [ 12] [ 6] [160417] +16:06:30 [ 13] [ 4] [0320] +16:06:30 [ 15] [ 4] [0320] +16:06:30 [ 18] [ 4] [6011] +16:06:30 [ 19] [ 3] [418] +16:06:30 [ 32] [ 6] [668899] +16:06:30 [ 35] [ 32] [6213541000694631=491212019463429] +16:06:30 [ 37] [ 12] [507900123472] +16:06:30 [ 38] [ 6] [072035] +16:06:30 [ 39] [ 2] [00] +16:06:30 [ 41] [ 8] [03020003] +16:06:30 [ 49] [ 3] [418] +16:06:30 [ 54] [ 40] [0001840C0000003992640002840C000000395264] +16:06:30 ============================================================================ +16:06:30 Calculate Source COMM Id = 4 +16:06:30 ============================================================================ +16:06:30 + + +waiting on router queue for slot.... +16:06:35 ============================================================================ +16:06:35 Slot Id : <128> +16:06:35 Transaction Type : REQUEST +16:06:35 Received From : +16:06:35 ============================================================================ +16:06:35 FNo. Len. Field Value +16:06:35 ============================================================================ +16:06:35 [ 1] [ 4] [0200] +16:06:35 [ 2] [ 16] [6688990103535801] +16:06:35 [ 3] [ 6] [010000] +16:06:35 [ 4] [ 12] [000100000000] +16:06:35 [ 7] [ 10] [0320160630] +16:06:35 [ 11] [ 6] [793191] +16:06:35 [ 12] [ 6] [160630] +16:06:35 [ 13] [ 4] [0320] +16:06:35 [ 15] [ 4] [0320] +16:06:35 [ 18] [ 4] [6011] +16:06:35 [ 22] [ 3] [900] +16:06:35 [ 25] [ 2] [02] +16:06:35 [ 28] [ 9] [D00002000] +16:06:35 [ 32] [ 6] [621354] +16:06:35 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:06:35 [ 37] [ 12] [507903345178] +16:06:35 [ 41] [ 8] [13001400] +16:06:35 [ 42] [ 15] [NATIVE ] +16:06:35 [ 43] [ 40] [Kham Unit Kham LAO] +16:06:35 [ 49] [ 3] [418] +16:06:35 [ 52] [ 16] [5B2DE7A8572AD9BA] +16:06:35 ============================================================================ +16:06:35 + + +waiting on router queue for slot.... +16:06:35 Sending to : +16:06:35 ============================================================================ +16:06:35 Sending to : +16:06:35 ============================================================================ +16:06:35 ============================================================================ +16:06:35 Slot Id : <157> +16:06:35 Transaction Type : REQUEST +16:06:35 Received From : +16:06:35 ============================================================================ +16:06:35 FNo. Len. Field Value +16:06:35 ============================================================================ +16:06:35 [ 1] [ 4] [0200] +16:06:35 [ 2] [ 16] [1808930600050355] +16:06:35 [ 3] [ 6] [301000] +16:06:35 [ 4] [ 12] [000000000000] +16:06:35 [ 7] [ 10] [0320160631] +16:06:35 [ 11] [ 6] [793192] +16:06:35 [ 12] [ 6] [160631] +16:06:35 [ 13] [ 4] [0320] +16:06:35 [ 15] [ 4] [0320] +16:06:35 [ 18] [ 4] [6011] +16:06:35 [ 22] [ 3] [900] +16:06:35 [ 25] [ 2] [02] +16:06:35 [ 28] [ 9] [D00000000] +16:06:35 [ 32] [ 6] [621354] +16:06:35 [ 35] [ 27] [1808930600050355=1803500549] +16:06:35 [ 37] [ 12] [507904269752] +16:06:35 [ 41] [ 8] [03002500] +16:06:35 [ 42] [ 15] [NATIVE ] +16:06:35 [ 43] [ 40] [Sanhkhou KM7 KaisonephomvLAO] +16:06:35 [ 49] [ 3] [418] +16:06:35 [ 52] [ 16] [71D28C07AC7F3EB2] +16:06:35 ============================================================================ +16:06:35 + + +waiting on router queue for slot.... +16:06:35 Sending to : +16:06:35 ============================================================================ +16:06:35 Sending to : +16:06:35 ============================================================================ +16:06:36 ============================================================================ +16:06:36 Slot Id : <128> +16:06:36 Transaction Type : REQUEST +16:06:36 Received From : +16:06:36 ============================================================================ +16:06:36 FNo. Len. Field Value +16:06:36 ============================================================================ +16:06:36 [ 1] [ 4] [0200] +16:06:36 [ 2] [ 16] [6688990103535801] +16:06:36 [ 3] [ 6] [010000] +16:06:36 [ 4] [ 12] [000100000000] +16:06:36 [ 7] [ 10] [0320160630] +16:06:36 [ 11] [ 6] [793191] +16:06:36 [ 12] [ 6] [160630] +16:06:36 [ 13] [ 4] [0320] +16:06:36 [ 15] [ 4] [0320] +16:06:36 [ 18] [ 4] [6011] +16:06:36 [ 22] [ 3] [900] +16:06:36 [ 25] [ 2] [02] +16:06:36 [ 28] [ 9] [D00002000] +16:06:36 [ 32] [ 6] [621354] +16:06:36 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:06:36 [ 37] [ 12] [507903345178] +16:06:36 [ 41] [ 8] [13001400] +16:06:36 [ 42] [ 15] [NATIVE ] +16:06:36 [ 43] [ 40] [Kham Unit Kham LAO] +16:06:36 [ 49] [ 3] [418] +16:06:36 [ 52] [ 16] [5B2DE7A8572AD9BA] +16:06:36 ============================================================================ +16:06:36 + + +waiting on router queue for slot.... +16:06:36 Sending to : +16:06:36 ============================================================================ +16:06:36 ============================================================================ +16:06:36 Slot Id : <128> +16:06:36 Transaction Type : REQUEST +16:06:36 Received From : +16:06:36 ============================================================================ +16:06:36 FNo. Len. Field Value +16:06:36 ============================================================================ +16:06:36 [ 1] [ 4] [0200] +16:06:36 [ 2] [ 16] [6688990103535801] +16:06:36 [ 3] [ 6] [010000] +16:06:36 [ 4] [ 12] [000100000000] +16:06:36 [ 7] [ 10] [0320160630] +16:06:36 [ 11] [ 6] [793191] +16:06:36 [ 12] [ 6] [160630] +16:06:36 [ 13] [ 4] [0320] +16:06:36 [ 15] [ 4] [0320] +16:06:36 [ 18] [ 4] [6011] +16:06:36 [ 22] [ 3] [900] +16:06:36 [ 25] [ 2] [02] +16:06:36 [ 28] [ 9] [D00002000] +16:06:36 [ 32] [ 6] [621354] +16:06:36 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:06:36 [ 37] [ 12] [507903345178] +16:06:36 [ 41] [ 8] [13001400] +16:06:36 [ 42] [ 15] [NATIVE ] +16:06:36 [ 43] [ 40] [Kham Unit Kham LAO] +16:06:36 [ 49] [ 3] [418] +16:06:36 [ 52] [ 16] [94F1DA98B734B350] +16:06:36 ============================================================================ +16:06:36 + + +waiting on router queue for slot.... +16:06:36 Sending to : <4> +16:06:36 ============================================================================ +16:06:36 ============================================================================ +16:06:36 Slot Id : <157> +16:06:36 Transaction Type : REQUEST +16:06:36 Received From : +16:06:36 ============================================================================ +16:06:36 FNo. Len. Field Value +16:06:36 ============================================================================ +16:06:36 [ 1] [ 4] [0200] +16:06:36 [ 2] [ 16] [1808930600050355] +16:06:36 [ 3] [ 6] [301000] +16:06:36 [ 4] [ 12] [000000000000] +16:06:36 [ 7] [ 10] [0320160631] +16:06:36 [ 11] [ 6] [793192] +16:06:36 [ 12] [ 6] [160631] +16:06:36 [ 13] [ 4] [0320] +16:06:36 [ 15] [ 4] [0320] +16:06:36 [ 18] [ 4] [6011] +16:06:36 [ 22] [ 3] [900] +16:06:36 [ 25] [ 2] [02] +16:06:36 [ 28] [ 9] [D00000000] +16:06:36 [ 32] [ 6] [621354] +16:06:36 [ 35] [ 27] [1808930600050355=1803500549] +16:06:36 [ 37] [ 12] [507904269752] +16:06:36 [ 41] [ 8] [03002500] +16:06:36 [ 42] [ 15] [NATIVE ] +16:06:36 [ 43] [ 40] [Sanhkhou KM7 KaisonephomvLAO] +16:06:36 [ 49] [ 3] [418] +16:06:36 [ 52] [ 16] [71D28C07AC7F3EB2] +16:06:36 ============================================================================ +16:06:36 + + +waiting on router queue for slot.... +16:06:36 Sending to : +16:06:36 ============================================================================ +16:06:36 ============================================================================ +16:06:36 Slot Id : <157> +16:06:36 Transaction Type : REQUEST +16:06:36 Received From : +16:06:36 ============================================================================ +16:06:36 FNo. Len. Field Value +16:06:36 ============================================================================ +16:06:36 [ 1] [ 4] [0200] +16:06:36 [ 2] [ 16] [1808930600050355] +16:06:36 [ 3] [ 6] [301000] +16:06:36 [ 4] [ 12] [000000000000] +16:06:36 [ 7] [ 10] [0320160631] +16:06:36 [ 11] [ 6] [793192] +16:06:36 [ 12] [ 6] [160631] +16:06:36 [ 13] [ 4] [0320] +16:06:36 [ 15] [ 4] [0320] +16:06:36 [ 18] [ 4] [6011] +16:06:36 [ 22] [ 3] [900] +16:06:36 [ 25] [ 2] [02] +16:06:36 [ 28] [ 9] [D00000000] +16:06:36 [ 32] [ 6] [621354] +16:06:36 [ 35] [ 27] [1808930600050355=1803500549] +16:06:36 [ 37] [ 12] [507904269752] +16:06:36 [ 41] [ 8] [03002500] +16:06:36 [ 42] [ 15] [NATIVE ] +16:06:36 [ 43] [ 40] [Sanhkhou KM7 KaisonephomvLAO] +16:06:36 [ 49] [ 3] [418] +16:06:36 [ 52] [ 16] [F8D99723E33D44C5] +16:06:36 ============================================================================ +16:06:36 + + +waiting on router queue for slot.... +16:06:36 Sending to : <2> +16:06:36 ============================================================================ +16:06:37 ============================================================================ +16:06:37 Slot Id : <128> +16:06:37 Transaction Type : RESPONSE +16:06:37 Received From : +16:06:37 ============================================================================ +16:06:37 FNo. Len. Field Value +16:06:37 ============================================================================ +16:06:37 [ 1] [ 4] [0210] +16:06:37 [ 2] [ 16] [6688990103535801] +16:06:37 [ 3] [ 6] [010000] +16:06:37 [ 4] [ 12] [000100000000] +16:06:37 [ 11] [ 6] [793191] +16:06:37 [ 12] [ 6] [160630] +16:06:37 [ 15] [ 4] [0320] +16:06:37 [ 18] [ 4] [6011] +16:06:37 [ 32] [ 6] [621354] +16:06:37 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:06:37 [ 37] [ 12] [507903345178] +16:06:37 [ 38] [ 6] [157442] +16:06:37 [ 39] [ 2] [00] +16:06:37 [ 41] [ 8] [13001400] +16:06:37 [ 49] [ 3] [418] +16:06:37 [ 54] [ 20] [0002418C000007097076] +16:06:37 ============================================================================ +16:06:37 Sending to : +16:06:37 ============================================================================ +16:06:37 + + +waiting on router queue for slot.... +16:06:38 ============================================================================ +16:06:38 Slot Id : <128> +16:06:38 Transaction Type : RESPONSE +16:06:38 Received From : +16:06:38 ============================================================================ +16:06:38 FNo. Len. Field Value +16:06:38 ============================================================================ +16:06:38 [ 1] [ 4] [0210] +16:06:38 [ 2] [ 16] [6688990103535801] +16:06:38 [ 3] [ 6] [010000] +16:06:38 [ 4] [ 12] [000100000000] +16:06:38 [ 11] [ 6] [793191] +16:06:38 [ 12] [ 6] [160630] +16:06:38 [ 15] [ 4] [0320] +16:06:38 [ 18] [ 4] [6011] +16:06:38 [ 32] [ 6] [621354] +16:06:38 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:06:38 [ 37] [ 12] [507903345178] +16:06:38 [ 38] [ 6] [157442] +16:06:38 [ 39] [ 2] [00] +16:06:38 [ 41] [ 8] [13001400] +16:06:38 [ 49] [ 3] [418] +16:06:38 [ 54] [ 20] [0002418C000007097076] +16:06:38 ============================================================================ +16:06:38 Calculate Source COMM Id = 0 +16:06:38 ============================================================================ +16:06:38 + + +waiting on router queue for slot.... +16:06:40 ============================================================================ +16:06:40 Slot Id : <157> +16:06:40 Transaction Type : RESPONSE +16:06:40 Received From : +16:06:40 ============================================================================ +16:06:40 FNo. Len. Field Value +16:06:40 ============================================================================ +16:06:40 [ 1] [ 4] [0210] +16:06:40 [ 2] [ 16] [1808930600050355] +16:06:40 [ 3] [ 6] [301000] +16:06:40 [ 7] [ 10] [0320160631] +16:06:40 [ 11] [ 6] [793192] +16:06:40 [ 12] [ 6] [160631] +16:06:40 [ 13] [ 4] [0320] +16:06:40 [ 14] [ 4] [1803] +16:06:40 [ 19] [ 3] [418] +16:06:40 [ 32] [ 6] [621354] +16:06:40 [ 37] [ 12] [507904269752] +16:06:40 [ 38] [ 6] [793192] +16:06:40 [ 39] [ 2] [00] +16:06:40 [ 41] [ 8] [03002500] +16:06:40 [ 49] [ 3] [418] +16:06:40 [ 52] [ 16] [F8D99723E33D44C5] +16:06:40 [ 54] [ 20] [1002418C000098800000] +16:06:40 ============================================================================ +16:06:40 Sending to : +16:06:40 ============================================================================ +16:06:40 + + +waiting on router queue for slot.... +16:06:42 ============================================================================ +16:06:42 Slot Id : <157> +16:06:42 Transaction Type : RESPONSE +16:06:42 Received From : +16:06:42 ============================================================================ +16:06:42 FNo. Len. Field Value +16:06:42 ============================================================================ +16:06:42 [ 1] [ 4] [0210] +16:06:42 [ 2] [ 16] [1808930600050355] +16:06:42 [ 3] [ 6] [301000] +16:06:42 [ 7] [ 10] [0320160631] +16:06:42 [ 11] [ 6] [793192] +16:06:42 [ 12] [ 6] [160631] +16:06:42 [ 13] [ 4] [0320] +16:06:42 [ 14] [ 4] [1803] +16:06:42 [ 19] [ 3] [418] +16:06:42 [ 32] [ 6] [621354] +16:06:42 [ 37] [ 12] [507904269752] +16:06:42 [ 38] [ 6] [793192] +16:06:42 [ 39] [ 2] [00] +16:06:42 [ 41] [ 8] [03002500] +16:06:42 [ 49] [ 3] [418] +16:06:42 [ 52] [ 16] [F8D99723E33D44C5] +16:06:42 [ 54] [ 20] [1002418C000098800000] +16:06:42 ============================================================================ +16:06:42 Calculate Source COMM Id = 0 +16:06:42 ============================================================================ +16:06:42 + + +waiting on router queue for slot.... +16:06:49 ============================================================================ +16:06:49 Slot Id : <141> +16:06:49 Transaction Type : REQUEST +16:06:49 Received From : +16:06:49 ============================================================================ +16:06:49 FNo. Len. Field Value +16:06:49 ============================================================================ +16:06:49 [ 1] [ 4] [0800] +16:06:49 [ 2] [ 5] [02531] +16:06:49 [ 3] [ 6] [579168] +16:06:49 [ 7] [ 10] [0320090649] +16:06:49 [ 11] [ 6] [807347] +16:06:49 [ 15] [ 10] [0320090649] +16:06:49 [ 37] [ 11] [57916807347] +16:06:49 [ 70] [ 3] [001] +16:06:49 ============================================================================ +16:06:49 + + +waiting on router queue for slot.... +16:06:49 ============================================================================ +16:06:49 Slot Id : <141> +16:06:49 Transaction Type : RESPONSE +16:06:49 Received From : +16:06:49 ============================================================================ +16:06:49 FNo. Len. Field Value +16:06:49 ============================================================================ +16:06:49 [ 1] [ 4] [0810] +16:06:49 [ 7] [ 10] [0320090649] +16:06:49 [ 11] [ 6] [807347] +16:06:49 [ 15] [ 4] [0320] +16:06:49 [ 37] [ 12] [57916807347] +16:06:49 [ 39] [ 2] [00] +16:06:49 [ 70] [ 3] [001] +16:06:49 ============================================================================ +16:06:49 Sending to : +16:06:49 ============================================================================ +16:06:49 + + +waiting on router queue for slot.... +16:06:50 ============================================================================ +16:06:50 Slot Id : <151> +16:06:50 Transaction Type : REQUEST +16:06:50 Received From : +16:06:50 ============================================================================ +16:06:50 FNo. Len. Field Value +16:06:50 ============================================================================ +16:06:50 [ 1] [ 4] [0800] +16:06:50 [ 7] [ 10] [0320090556] +16:06:50 [ 11] [ 6] [157168] +16:06:50 [ 70] [ 3] [301] +16:06:50 ============================================================================ +16:06:50 + + +waiting on router queue for slot.... +16:06:50 Sending to : +16:06:50 ============================================================================ +16:06:50 ============================================================================ +16:06:50 Slot Id : <151> +16:06:50 Transaction Type : RESPONSE +16:06:50 Received From : +16:06:50 ============================================================================ +16:06:50 FNo. Len. Field Value +16:06:50 ============================================================================ +16:06:50 [ 1] [ 4] [0810] +16:06:50 [ 7] [ 10] [0320090556] +16:06:50 [ 11] [ 6] [157168] +16:06:50 [ 39] [ 2] [00] +16:06:50 [ 70] [ 3] [301] +16:06:50 ============================================================================ +16:06:50 Calculate Source COMM Id = 2 +16:06:50 ============================================================================ +16:06:50 + + +waiting on router queue for slot.... +16:06:51 ============================================================================ +16:06:51 Slot Id : <172> +16:06:51 Transaction Type : REQUEST +16:06:51 Received From : +16:06:51 ============================================================================ +16:06:51 FNo. Len. Field Value +16:06:51 ============================================================================ +16:06:51 [ 1] [ 4] [0200] +16:06:51 [ 2] [ 16] [6688990103260202] +16:06:51 [ 3] [ 6] [302000] +16:06:51 [ 4] [ 12] [000000000000] +16:06:51 [ 7] [ 10] [0320160647] +16:06:51 [ 11] [ 6] [793284] +16:06:51 [ 12] [ 6] [160647] +16:06:51 [ 13] [ 4] [0320] +16:06:51 [ 15] [ 4] [0320] +16:06:51 [ 18] [ 4] [6011] +16:06:51 [ 22] [ 3] [900] +16:06:51 [ 25] [ 2] [02] +16:06:51 [ 28] [ 9] [D00000000] +16:06:51 [ 32] [ 6] [621354] +16:06:51 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:06:51 [ 37] [ 12] [507903499562] +16:06:51 [ 41] [ 8] [06002200] +16:06:51 [ 42] [ 15] [NATIVE ] +16:06:51 [ 43] [ 40] [Beng Market Beng LAO] +16:06:51 [ 49] [ 3] [418] +16:06:51 [ 52] [ 16] [1C532F5642919E43] +16:06:51 ============================================================================ +16:06:51 + + +waiting on router queue for slot.... +16:06:51 Sending to : +16:06:51 ============================================================================ +16:06:51 Sending to : +16:06:51 ============================================================================ +16:06:52 ============================================================================ +16:06:52 Slot Id : <172> +16:06:52 Transaction Type : REQUEST +16:06:52 Received From : +16:06:52 ============================================================================ +16:06:52 FNo. Len. Field Value +16:06:52 ============================================================================ +16:06:52 [ 1] [ 4] [0200] +16:06:52 [ 2] [ 16] [6688990103260202] +16:06:52 [ 3] [ 6] [302000] +16:06:52 [ 4] [ 12] [000000000000] +16:06:52 [ 7] [ 10] [0320160647] +16:06:52 [ 11] [ 6] [793284] +16:06:52 [ 12] [ 6] [160647] +16:06:52 [ 13] [ 4] [0320] +16:06:52 [ 15] [ 4] [0320] +16:06:52 [ 18] [ 4] [6011] +16:06:52 [ 22] [ 3] [900] +16:06:52 [ 25] [ 2] [02] +16:06:52 [ 28] [ 9] [D00000000] +16:06:52 [ 32] [ 6] [621354] +16:06:52 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:06:52 [ 37] [ 12] [507903499562] +16:06:52 [ 41] [ 8] [06002200] +16:06:52 [ 42] [ 15] [NATIVE ] +16:06:52 [ 43] [ 40] [Beng Market Beng LAO] +16:06:52 [ 49] [ 3] [418] +16:06:52 [ 52] [ 16] [1C532F5642919E43] +16:06:52 ============================================================================ +16:06:52 + + +waiting on router queue for slot.... +16:06:52 Sending to : +16:06:52 ============================================================================ +16:06:52 ============================================================================ +16:06:52 Slot Id : <172> +16:06:52 Transaction Type : REQUEST +16:06:52 Received From : +16:06:52 ============================================================================ +16:06:52 FNo. Len. Field Value +16:06:52 ============================================================================ +16:06:52 [ 1] [ 4] [0200] +16:06:52 [ 2] [ 16] [6688990103260202] +16:06:52 [ 3] [ 6] [302000] +16:06:52 [ 4] [ 12] [000000000000] +16:06:52 [ 7] [ 10] [0320160647] +16:06:52 [ 11] [ 6] [793284] +16:06:52 [ 12] [ 6] [160647] +16:06:52 [ 13] [ 4] [0320] +16:06:52 [ 15] [ 4] [0320] +16:06:52 [ 18] [ 4] [6011] +16:06:52 [ 22] [ 3] [900] +16:06:52 [ 25] [ 2] [02] +16:06:52 [ 28] [ 9] [D00000000] +16:06:52 [ 32] [ 6] [621354] +16:06:52 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:06:52 [ 37] [ 12] [507903499562] +16:06:52 [ 41] [ 8] [06002200] +16:06:52 [ 42] [ 15] [NATIVE ] +16:06:52 [ 43] [ 40] [Beng Market Beng LAO] +16:06:52 [ 49] [ 3] [418] +16:06:52 [ 52] [ 16] [D67887803A78ED44] +16:06:52 ============================================================================ +16:06:52 + + +waiting on router queue for slot.... +16:06:52 Sending to : <4> +16:06:52 ============================================================================ +16:06:53 ============================================================================ +16:06:53 Slot Id : <172> +16:06:53 Transaction Type : RESPONSE +16:06:53 Received From : +16:06:53 ============================================================================ +16:06:53 FNo. Len. Field Value +16:06:53 ============================================================================ +16:06:53 [ 1] [ 4] [0210] +16:06:53 [ 2] [ 16] [6688990103260202] +16:06:53 [ 3] [ 6] [302000] +16:06:53 [ 4] [ 12] [000000000000] +16:06:53 [ 11] [ 6] [793284] +16:06:53 [ 12] [ 6] [160647] +16:06:53 [ 15] [ 4] [0320] +16:06:53 [ 18] [ 4] [6011] +16:06:53 [ 32] [ 6] [621354] +16:06:53 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:06:53 [ 37] [ 12] [507903499562] +16:06:53 [ 38] [ 6] [252803] +16:06:53 [ 39] [ 2] [00] +16:06:53 [ 41] [ 8] [06002200] +16:06:53 [ 49] [ 3] [418] +16:06:53 [ 54] [ 20] [2002418C000113288152] +16:06:53 ============================================================================ +16:06:53 Sending to : +16:06:53 ============================================================================ +16:06:53 + + +waiting on router queue for slot.... +16:06:54 ============================================================================ +16:06:54 Slot Id : <172> +16:06:54 Transaction Type : RESPONSE +16:06:54 Received From : +16:06:54 ============================================================================ +16:06:54 FNo. Len. Field Value +16:06:54 ============================================================================ +16:06:54 [ 1] [ 4] [0210] +16:06:54 [ 2] [ 16] [6688990103260202] +16:06:54 [ 3] [ 6] [302000] +16:06:54 [ 4] [ 12] [000000000000] +16:06:54 [ 11] [ 6] [793284] +16:06:54 [ 12] [ 6] [160647] +16:06:54 [ 15] [ 4] [0320] +16:06:54 [ 18] [ 4] [6011] +16:06:54 [ 32] [ 6] [621354] +16:06:54 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:06:54 [ 37] [ 12] [507903499562] +16:06:54 [ 38] [ 6] [252803] +16:06:54 [ 39] [ 2] [00] +16:06:54 [ 41] [ 8] [06002200] +16:06:54 [ 49] [ 3] [418] +16:06:54 [ 54] [ 20] [2002418C000113288152] +16:06:54 ============================================================================ +16:06:54 Calculate Source COMM Id = 0 +16:06:54 ============================================================================ +16:06:54 + + +waiting on router queue for slot.... +16:07:06 ============================================================================ +16:07:06 Slot Id : <171> +16:07:06 Transaction Type : REQUEST +16:07:06 Received From : +16:07:06 ============================================================================ +16:07:06 FNo. Len. Field Value +16:07:06 ============================================================================ +16:07:06 [ 1] [ 4] [0800] +16:07:06 [ 7] [ 10] [0320090613] +16:07:06 [ 11] [ 6] [157169] +16:07:06 [ 70] [ 3] [301] +16:07:06 ============================================================================ +16:07:06 + + +waiting on router queue for slot.... +16:07:06 Sending to : +16:07:06 ============================================================================ +16:07:06 ============================================================================ +16:07:06 Slot Id : <171> +16:07:06 Transaction Type : RESPONSE +16:07:06 Received From : +16:07:06 ============================================================================ +16:07:06 FNo. Len. Field Value +16:07:06 ============================================================================ +16:07:06 [ 1] [ 4] [0810] +16:07:06 [ 7] [ 10] [0320090613] +16:07:06 [ 11] [ 6] [157169] +16:07:06 [ 39] [ 2] [00] +16:07:06 [ 70] [ 3] [301] +16:07:06 ============================================================================ +16:07:06 Calculate Source COMM Id = 2 +16:07:06 ============================================================================ +16:07:06 + + +waiting on router queue for slot.... +16:07:17 ============================================================================ +16:07:17 Slot Id : <186> +16:07:17 Transaction Type : REQUEST +16:07:17 Received From : +16:07:17 ============================================================================ +16:07:17 FNo. Len. Field Value +16:07:17 ============================================================================ +16:07:17 [ 1] [ 4] [0800] +16:07:17 [ 7] [ 10] [0320231906] +16:07:17 [ 11] [ 6] [161906] +16:07:17 [ 37] [ 12] [57916161906] +16:07:17 [ 70] [ 3] [301] +16:07:17 ============================================================================ +16:07:17 + + +waiting on router queue for slot.... +16:07:17 Sending to : +16:07:17 ============================================================================ +16:07:17 ============================================================================ +16:07:17 Slot Id : <186> +16:07:17 Transaction Type : RESPONSE +16:07:17 Received From : +16:07:17 ============================================================================ +16:07:17 FNo. Len. Field Value +16:07:17 ============================================================================ +16:07:17 [ 1] [ 4] [0810] +16:07:17 [ 7] [ 10] [0320231906] +16:07:17 [ 11] [ 6] [161906] +16:07:17 [ 37] [ 12] [579161619060] +16:07:17 [ 39] [ 2] [00] +16:07:17 [ 70] [ 3] [810] +16:07:17 ============================================================================ +16:07:17 Calculate Source COMM Id = 6 +16:07:17 ============================================================================ +16:07:17 + + +waiting on router queue for slot.... +16:07:17 ============================================================================ +16:07:17 Slot Id : <164> +16:07:17 Transaction Type : REQUEST +16:07:17 Received From : +16:07:17 ============================================================================ +16:07:17 FNo. Len. Field Value +16:07:17 ============================================================================ +16:07:17 [ 1] [ 4] [0800] +16:07:17 [ 7] [ 10] [0320090624] +16:07:17 [ 11] [ 6] [157170] +16:07:17 [ 70] [ 3] [301] +16:07:17 ============================================================================ +16:07:17 + + +waiting on router queue for slot.... +16:07:17 Sending to : +16:07:17 ============================================================================ +16:07:17 ============================================================================ +16:07:17 Slot Id : <164> +16:07:17 Transaction Type : RESPONSE +16:07:17 Received From : +16:07:17 ============================================================================ +16:07:17 FNo. Len. Field Value +16:07:17 ============================================================================ +16:07:17 [ 1] [ 4] [0810] +16:07:17 [ 7] [ 10] [0320090624] +16:07:17 [ 11] [ 6] [157170] +16:07:17 [ 39] [ 2] [00] +16:07:17 [ 70] [ 3] [301] +16:07:17 ============================================================================ +16:07:17 Calculate Source COMM Id = 2 +16:07:17 ============================================================================ +16:07:17 + + +waiting on router queue for slot.... +16:07:23 ============================================================================ +16:07:23 Slot Id : <126> +16:07:23 Transaction Type : REQUEST +16:07:23 Received From : +16:07:23 ============================================================================ +16:07:23 FNo. Len. Field Value +16:07:23 ============================================================================ +16:07:23 [ 1] [ 4] [0200] +16:07:23 [ 2] [ 16] [1808931200003380] +16:07:23 [ 3] [ 6] [010000] +16:07:23 [ 4] [ 12] [000100000000] +16:07:23 [ 7] [ 10] [0320160513] +16:07:23 [ 11] [ 6] [951082] +16:07:23 [ 12] [ 6] [160513] +16:07:23 [ 13] [ 4] [0320] +16:07:23 [ 15] [ 4] [0320] +16:07:23 [ 18] [ 4] [6011] +16:07:23 [ 19] [ 3] [418] +16:07:23 [ 22] [ 3] [021] +16:07:23 [ 25] [ 2] [01] +16:07:23 [ 28] [ 9] [D00002000] +16:07:23 [ 32] [ 6] [668899] +16:07:23 [ 35] [ 27] [1808931200003380=1803500099] +16:07:23 [ 37] [ 12] [507902362978] +16:07:23 [ 41] [ 8] [03016003] +16:07:23 [ 42] [ 15] [APT ] +16:07:23 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:07:23 [ 49] [ 3] [418] +16:07:23 [ 52] [ 16] [3DB26522819E25DC] +16:07:23 ============================================================================ +16:07:23 + + +waiting on router queue for slot.... +16:07:23 Sending to : +16:07:23 ============================================================================ +16:07:23 Sending to : +16:07:23 ============================================================================ +16:07:23 ============================================================================ +16:07:23 Slot Id : <126> +16:07:23 Transaction Type : REQUEST +16:07:23 Received From : +16:07:23 ============================================================================ +16:07:23 FNo. Len. Field Value +16:07:23 ============================================================================ +16:07:23 [ 1] [ 4] [0200] +16:07:23 [ 2] [ 16] [1808931200003380] +16:07:23 [ 3] [ 6] [010000] +16:07:23 [ 4] [ 12] [000100000000] +16:07:23 [ 7] [ 10] [0320160513] +16:07:23 [ 11] [ 6] [951082] +16:07:23 [ 12] [ 6] [160513] +16:07:23 [ 13] [ 4] [0320] +16:07:23 [ 15] [ 4] [0320] +16:07:23 [ 18] [ 4] [6011] +16:07:23 [ 19] [ 3] [418] +16:07:23 [ 22] [ 3] [021] +16:07:23 [ 25] [ 2] [01] +16:07:23 [ 28] [ 9] [D00002000] +16:07:23 [ 32] [ 6] [668899] +16:07:23 [ 35] [ 27] [1808931200003380=1803500099] +16:07:23 [ 37] [ 12] [507902362978] +16:07:23 [ 41] [ 8] [03016003] +16:07:23 [ 42] [ 15] [APT ] +16:07:23 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:07:23 [ 49] [ 3] [418] +16:07:23 [ 52] [ 16] [3DB26522819E25DC] +16:07:23 ============================================================================ +16:07:23 + + +waiting on router queue for slot.... +16:07:23 Sending to : +16:07:23 ============================================================================ +16:07:23 ============================================================================ +16:07:23 Slot Id : <126> +16:07:23 Transaction Type : REQUEST +16:07:23 Received From : +16:07:23 ============================================================================ +16:07:23 FNo. Len. Field Value +16:07:23 ============================================================================ +16:07:23 [ 1] [ 4] [0200] +16:07:23 [ 2] [ 16] [1808931200003380] +16:07:23 [ 3] [ 6] [010000] +16:07:23 [ 4] [ 12] [000100000000] +16:07:23 [ 7] [ 10] [0320160513] +16:07:23 [ 11] [ 6] [951082] +16:07:23 [ 12] [ 6] [160513] +16:07:23 [ 13] [ 4] [0320] +16:07:23 [ 15] [ 4] [0320] +16:07:23 [ 18] [ 4] [6011] +16:07:23 [ 19] [ 3] [418] +16:07:23 [ 22] [ 3] [021] +16:07:23 [ 25] [ 2] [01] +16:07:23 [ 28] [ 9] [D00002000] +16:07:23 [ 32] [ 6] [668899] +16:07:23 [ 35] [ 27] [1808931200003380=1803500099] +16:07:23 [ 37] [ 12] [507902362978] +16:07:23 [ 41] [ 8] [03016003] +16:07:23 [ 42] [ 15] [APT ] +16:07:23 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:07:23 [ 49] [ 3] [418] +16:07:23 [ 52] [ 16] [A98323DE1717D84C] +16:07:23 ============================================================================ +16:07:23 + + +waiting on router queue for slot.... +16:07:23 Sending to : <2> +16:07:23 ============================================================================ +16:07:24 ============================================================================ +16:07:24 Slot Id : <148> +16:07:24 Transaction Type : REQUEST +16:07:24 Received From : +16:07:24 ============================================================================ +16:07:24 FNo. Len. Field Value +16:07:24 ============================================================================ +16:07:24 [ 1] [ 4] [0200] +16:07:24 [ 2] [ 16] [1808930600050355] +16:07:24 [ 3] [ 6] [011000] +16:07:24 [ 4] [ 12] [000005000000] +16:07:24 [ 7] [ 10] [0320160719] +16:07:24 [ 11] [ 6] [793426] +16:07:24 [ 12] [ 6] [160719] +16:07:24 [ 13] [ 4] [0320] +16:07:24 [ 15] [ 4] [0320] +16:07:24 [ 18] [ 4] [6011] +16:07:24 [ 22] [ 3] [900] +16:07:24 [ 25] [ 2] [02] +16:07:24 [ 28] [ 9] [D00002000] +16:07:24 [ 32] [ 6] [621354] +16:07:24 [ 35] [ 27] [1808930600050355=1803500549] +16:07:24 [ 37] [ 12] [507904269754] +16:07:24 [ 41] [ 8] [03002500] +16:07:24 [ 42] [ 15] [NATIVE ] +16:07:24 [ 43] [ 40] [Sanhkhou KM7 KaisonephomvLAO] +16:07:24 [ 49] [ 3] [418] +16:07:24 [ 52] [ 16] [71D28C07AC7F3EB2] +16:07:24 ============================================================================ +16:07:24 + + +waiting on router queue for slot.... +16:07:24 Sending to : +16:07:24 ============================================================================ +16:07:24 Sending to : +16:07:24 ============================================================================ +16:07:25 ============================================================================ +16:07:25 Slot Id : <148> +16:07:25 Transaction Type : REQUEST +16:07:25 Received From : +16:07:25 ============================================================================ +16:07:25 FNo. Len. Field Value +16:07:25 ============================================================================ +16:07:25 [ 1] [ 4] [0200] +16:07:25 [ 2] [ 16] [1808930600050355] +16:07:25 [ 3] [ 6] [011000] +16:07:25 [ 4] [ 12] [000005000000] +16:07:25 [ 7] [ 10] [0320160719] +16:07:25 [ 11] [ 6] [793426] +16:07:25 [ 12] [ 6] [160719] +16:07:25 [ 13] [ 4] [0320] +16:07:25 [ 15] [ 4] [0320] +16:07:25 [ 18] [ 4] [6011] +16:07:25 [ 22] [ 3] [900] +16:07:25 [ 25] [ 2] [02] +16:07:25 [ 28] [ 9] [D00002000] +16:07:25 [ 32] [ 6] [621354] +16:07:25 [ 35] [ 27] [1808930600050355=1803500549] +16:07:25 [ 37] [ 12] [507904269754] +16:07:25 [ 41] [ 8] [03002500] +16:07:25 [ 42] [ 15] [NATIVE ] +16:07:25 [ 43] [ 40] [Sanhkhou KM7 KaisonephomvLAO] +16:07:25 [ 49] [ 3] [418] +16:07:25 [ 52] [ 16] [71D28C07AC7F3EB2] +16:07:25 ============================================================================ +16:07:25 + + +waiting on router queue for slot.... +16:07:25 Sending to : +16:07:25 ============================================================================ +16:07:25 ============================================================================ +16:07:25 Slot Id : <148> +16:07:25 Transaction Type : REQUEST +16:07:25 Received From : +16:07:25 ============================================================================ +16:07:25 FNo. Len. Field Value +16:07:25 ============================================================================ +16:07:25 [ 1] [ 4] [0200] +16:07:25 [ 2] [ 16] [1808930600050355] +16:07:25 [ 3] [ 6] [011000] +16:07:25 [ 4] [ 12] [000005000000] +16:07:25 [ 7] [ 10] [0320160719] +16:07:25 [ 11] [ 6] [793426] +16:07:25 [ 12] [ 6] [160719] +16:07:25 [ 13] [ 4] [0320] +16:07:25 [ 15] [ 4] [0320] +16:07:25 [ 18] [ 4] [6011] +16:07:25 [ 22] [ 3] [900] +16:07:25 [ 25] [ 2] [02] +16:07:25 [ 28] [ 9] [D00002000] +16:07:25 [ 32] [ 6] [621354] +16:07:25 [ 35] [ 27] [1808930600050355=1803500549] +16:07:25 [ 37] [ 12] [507904269754] +16:07:25 [ 41] [ 8] [03002500] +16:07:25 [ 42] [ 15] [NATIVE ] +16:07:25 [ 43] [ 40] [Sanhkhou KM7 KaisonephomvLAO] +16:07:25 [ 49] [ 3] [418] +16:07:25 [ 52] [ 16] [F8D99723E33D44C5] +16:07:25 ============================================================================ +16:07:25 + + +waiting on router queue for slot.... +16:07:25 Sending to : <2> +16:07:25 ============================================================================ +16:07:26 ============================================================================ +16:07:26 Slot Id : <139> +16:07:26 Transaction Type : REQUEST +16:07:26 Received From : +16:07:26 ============================================================================ +16:07:26 FNo. Len. Field Value +16:07:26 ============================================================================ +16:07:26 [ 1] [ 4] [0200] +16:07:26 [ 2] [ 16] [6688990040068296] +16:07:26 [ 3] [ 6] [010000] +16:07:26 [ 4] [ 12] [000010000000] +16:07:26 [ 7] [ 10] [0320160721] +16:07:26 [ 11] [ 6] [793428] +16:07:26 [ 12] [ 6] [160721] +16:07:26 [ 13] [ 4] [0320] +16:07:26 [ 15] [ 4] [0320] +16:07:26 [ 18] [ 4] [6011] +16:07:26 [ 22] [ 3] [900] +16:07:26 [ 25] [ 2] [02] +16:07:26 [ 28] [ 9] [D00002000] +16:07:26 [ 32] [ 6] [621354] +16:07:26 [ 35] [ 37] [6688990040068296=98011261638479300000] +16:07:26 [ 37] [ 12] [507905335228] +16:07:26 [ 41] [ 8] [05004700] +16:07:26 [ 42] [ 15] [NATIVE ] +16:07:26 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +16:07:26 [ 49] [ 3] [418] +16:07:26 [ 52] [ 16] [92A7FDFA3A06B9D4] +16:07:26 ============================================================================ +16:07:26 + + +waiting on router queue for slot.... +16:07:26 Sending to : +16:07:26 ============================================================================ +16:07:26 Sending to : +16:07:26 ============================================================================ +16:07:26 ============================================================================ +16:07:26 Slot Id : <139> +16:07:26 Transaction Type : REQUEST +16:07:26 Received From : +16:07:26 ============================================================================ +16:07:26 FNo. Len. Field Value +16:07:26 ============================================================================ +16:07:26 [ 1] [ 4] [0200] +16:07:26 [ 2] [ 16] [6688990040068296] +16:07:26 [ 3] [ 6] [010000] +16:07:26 [ 4] [ 12] [000010000000] +16:07:26 [ 7] [ 10] [0320160721] +16:07:26 [ 11] [ 6] [793428] +16:07:26 [ 12] [ 6] [160721] +16:07:26 [ 13] [ 4] [0320] +16:07:26 [ 15] [ 4] [0320] +16:07:26 [ 18] [ 4] [6011] +16:07:26 [ 22] [ 3] [900] +16:07:26 [ 25] [ 2] [02] +16:07:26 [ 28] [ 9] [D00002000] +16:07:26 [ 32] [ 6] [621354] +16:07:26 [ 35] [ 37] [6688990040068296=98011261638479300000] +16:07:26 [ 37] [ 12] [507905335228] +16:07:26 [ 41] [ 8] [05004700] +16:07:26 [ 42] [ 15] [NATIVE ] +16:07:26 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +16:07:26 [ 49] [ 3] [418] +16:07:26 [ 52] [ 16] [92A7FDFA3A06B9D4] +16:07:26 ============================================================================ +16:07:26 + + +waiting on router queue for slot.... +16:07:26 Sending to : +16:07:26 ============================================================================ +16:07:26 ============================================================================ +16:07:26 Slot Id : <139> +16:07:26 Transaction Type : REQUEST +16:07:26 Received From : +16:07:26 ============================================================================ +16:07:26 FNo. Len. Field Value +16:07:26 ============================================================================ +16:07:26 [ 1] [ 4] [0200] +16:07:26 [ 2] [ 16] [6688990040068296] +16:07:26 [ 3] [ 6] [010000] +16:07:26 [ 4] [ 12] [000010000000] +16:07:26 [ 7] [ 10] [0320160721] +16:07:26 [ 11] [ 6] [793428] +16:07:26 [ 12] [ 6] [160721] +16:07:26 [ 13] [ 4] [0320] +16:07:26 [ 15] [ 4] [0320] +16:07:26 [ 18] [ 4] [6011] +16:07:26 [ 22] [ 3] [900] +16:07:26 [ 25] [ 2] [02] +16:07:26 [ 28] [ 9] [D00002000] +16:07:26 [ 32] [ 6] [621354] +16:07:26 [ 35] [ 37] [6688990040068296=98011261638479300000] +16:07:26 [ 37] [ 12] [507905335228] +16:07:26 [ 41] [ 8] [05004700] +16:07:26 [ 42] [ 15] [NATIVE ] +16:07:26 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +16:07:26 [ 49] [ 3] [418] +16:07:26 [ 52] [ 16] [28978B15A5F75770] +16:07:26 ============================================================================ +16:07:26 + + +waiting on router queue for slot.... +16:07:26 Sending to : <4> +16:07:26 ============================================================================ +16:07:27 ============================================================================ +16:07:27 Slot Id : <126> +16:07:27 Transaction Type : RESPONSE +16:07:27 Received From : +16:07:27 ============================================================================ +16:07:27 FNo. Len. Field Value +16:07:27 ============================================================================ +16:07:27 [ 1] [ 4] [0210] +16:07:27 [ 2] [ 16] [1808931200003380] +16:07:27 [ 3] [ 6] [010000] +16:07:27 [ 4] [ 12] [000100000000] +16:07:27 [ 6] [ 12] [000100000000] +16:07:27 [ 7] [ 10] [0320160513] +16:07:27 [ 11] [ 6] [951082] +16:07:27 [ 12] [ 6] [160513] +16:07:27 [ 13] [ 4] [0320] +16:07:27 [ 18] [ 4] [6011] +16:07:27 [ 19] [ 3] [418] +16:07:27 [ 22] [ 3] [021] +16:07:27 [ 32] [ 6] [668899] +16:07:27 [ 35] [ 27] [1808931200003380=1803500099] +16:07:27 [ 37] [ 12] [507902362978] +16:07:27 [ 38] [ 6] [951082] +16:07:27 [ 39] [ 2] [00] +16:07:27 [ 41] [ 8] [03016003] +16:07:27 [ 49] [ 3] [418] +16:07:27 [ 52] [ 16] [A98323DE1717D84C] +16:07:27 [ 54] [ 20] [1001418C001201103200] +16:07:27 ============================================================================ +16:07:27 Sending to : +16:07:27 ============================================================================ +16:07:27 + + +waiting on router queue for slot.... +16:07:27 ============================================================================ +16:07:27 Slot Id : <139> +16:07:27 Transaction Type : RESPONSE +16:07:27 Received From : +16:07:27 ============================================================================ +16:07:27 FNo. Len. Field Value +16:07:27 ============================================================================ +16:07:27 [ 1] [ 4] [0210] +16:07:27 [ 2] [ 16] [6688990040068296] +16:07:27 [ 3] [ 6] [010000] +16:07:27 [ 4] [ 12] [000010000000] +16:07:27 [ 11] [ 6] [793428] +16:07:27 [ 12] [ 6] [160721] +16:07:27 [ 15] [ 4] [0320] +16:07:27 [ 18] [ 4] [6011] +16:07:27 [ 32] [ 6] [621354] +16:07:27 [ 35] [ 37] [6688990040068296=98011261638479300000] +16:07:27 [ 37] [ 12] [507905335228] +16:07:27 [ 38] [ 6] [588127] +16:07:27 [ 39] [ 2] [00] +16:07:27 [ 41] [ 8] [05004700] +16:07:27 [ 49] [ 3] [418] +16:07:27 [ 54] [ 20] [0002418C000009617535] +16:07:27 ============================================================================ +16:07:27 Sending to : +16:07:27 ============================================================================ +16:07:27 + + +waiting on router queue for slot.... +16:07:28 ============================================================================ +16:07:28 Slot Id : <126> +16:07:28 Transaction Type : RESPONSE +16:07:28 Received From : +16:07:28 ============================================================================ +16:07:28 FNo. Len. Field Value +16:07:28 ============================================================================ +16:07:28 [ 1] [ 4] [0210] +16:07:28 [ 2] [ 16] [1808931200003380] +16:07:28 [ 3] [ 6] [010000] +16:07:28 [ 4] [ 12] [000100000000] +16:07:28 [ 6] [ 12] [000100000000] +16:07:28 [ 7] [ 10] [0320160513] +16:07:28 [ 11] [ 6] [951082] +16:07:28 [ 12] [ 6] [160513] +16:07:28 [ 13] [ 4] [0320] +16:07:28 [ 18] [ 4] [6011] +16:07:28 [ 19] [ 3] [418] +16:07:28 [ 22] [ 3] [021] +16:07:28 [ 32] [ 6] [668899] +16:07:28 [ 35] [ 27] [1808931200003380=1803500099] +16:07:28 [ 37] [ 12] [507902362978] +16:07:28 [ 38] [ 6] [951082] +16:07:28 [ 39] [ 2] [00] +16:07:28 [ 41] [ 8] [03016003] +16:07:28 [ 49] [ 3] [418] +16:07:28 [ 52] [ 16] [A98323DE1717D84C] +16:07:28 [ 54] [ 20] [1001418C001201103200] +16:07:28 ============================================================================ +16:07:28 Calculate Source COMM Id = 4 +16:07:28 ============================================================================ +16:07:28 + + +waiting on router queue for slot.... +16:07:29 ============================================================================ +16:07:29 Slot Id : <148> +16:07:29 Transaction Type : RESPONSE +16:07:29 Received From : +16:07:29 ============================================================================ +16:07:29 FNo. Len. Field Value +16:07:29 ============================================================================ +16:07:29 [ 1] [ 4] [0210] +16:07:29 [ 2] [ 16] [1808930600050355] +16:07:29 [ 3] [ 6] [011000] +16:07:29 [ 4] [ 12] [000005000000] +16:07:29 [ 6] [ 12] [000005000000] +16:07:29 [ 7] [ 10] [0320160719] +16:07:29 [ 11] [ 6] [793426] +16:07:29 [ 12] [ 6] [160719] +16:07:29 [ 13] [ 4] [0320] +16:07:29 [ 18] [ 4] [6011] +16:07:29 [ 19] [ 3] [418] +16:07:29 [ 22] [ 3] [021] +16:07:29 [ 32] [ 6] [621354] +16:07:29 [ 35] [ 27] [1808930600050355=1803500549] +16:07:29 [ 37] [ 12] [507904269754] +16:07:29 [ 38] [ 6] [793426] +16:07:29 [ 39] [ 2] [00] +16:07:29 [ 41] [ 8] [03002500] +16:07:29 [ 49] [ 3] [418] +16:07:29 [ 52] [ 16] [F8D99723E33D44C5] +16:07:29 [ 54] [ 20] [1001418C000093600000] +16:07:29 ============================================================================ +16:07:29 Sending to : +16:07:29 ============================================================================ +16:07:29 + + +waiting on router queue for slot.... +16:07:30 ============================================================================ +16:07:30 Slot Id : <139> +16:07:30 Transaction Type : RESPONSE +16:07:30 Received From : +16:07:30 ============================================================================ +16:07:30 FNo. Len. Field Value +16:07:30 ============================================================================ +16:07:30 [ 1] [ 4] [0210] +16:07:30 [ 2] [ 16] [6688990040068296] +16:07:30 [ 3] [ 6] [010000] +16:07:30 [ 4] [ 12] [000010000000] +16:07:30 [ 11] [ 6] [793428] +16:07:30 [ 12] [ 6] [160721] +16:07:30 [ 15] [ 4] [0320] +16:07:30 [ 18] [ 4] [6011] +16:07:30 [ 32] [ 6] [621354] +16:07:30 [ 35] [ 37] [6688990040068296=98011261638479300000] +16:07:30 [ 37] [ 12] [507905335228] +16:07:30 [ 38] [ 6] [588127] +16:07:30 [ 39] [ 2] [00] +16:07:30 [ 41] [ 8] [05004700] +16:07:30 [ 49] [ 3] [418] +16:07:30 [ 54] [ 20] [0002418C000009617535] +16:07:30 ============================================================================ +16:07:30 Calculate Source COMM Id = 0 +16:07:30 ============================================================================ +16:07:30 + + +waiting on router queue for slot.... +16:07:32 ============================================================================ +16:07:32 Slot Id : <148> +16:07:32 Transaction Type : RESPONSE +16:07:32 Received From : +16:07:32 ============================================================================ +16:07:32 FNo. Len. Field Value +16:07:32 ============================================================================ +16:07:32 [ 1] [ 4] [0210] +16:07:32 [ 2] [ 16] [1808930600050355] +16:07:32 [ 3] [ 6] [011000] +16:07:32 [ 4] [ 12] [000005000000] +16:07:32 [ 6] [ 12] [000005000000] +16:07:32 [ 7] [ 10] [0320160719] +16:07:32 [ 11] [ 6] [793426] +16:07:32 [ 12] [ 6] [160719] +16:07:32 [ 13] [ 4] [0320] +16:07:32 [ 18] [ 4] [6011] +16:07:32 [ 19] [ 3] [418] +16:07:32 [ 22] [ 3] [021] +16:07:32 [ 32] [ 6] [621354] +16:07:32 [ 35] [ 27] [1808930600050355=1803500549] +16:07:32 [ 37] [ 12] [507904269754] +16:07:32 [ 38] [ 6] [793426] +16:07:32 [ 39] [ 2] [00] +16:07:32 [ 41] [ 8] [03002500] +16:07:32 [ 49] [ 3] [418] +16:07:32 [ 52] [ 16] [F8D99723E33D44C5] +16:07:32 [ 54] [ 20] [1001418C000093600000] +16:07:32 ============================================================================ +16:07:32 Calculate Source COMM Id = 0 +16:07:32 ============================================================================ +16:07:32 + + +waiting on router queue for slot.... +16:07:39 ============================================================================ +16:07:39 Slot Id : <119> +16:07:39 Transaction Type : REQUEST +16:07:39 Received From : +16:07:39 ============================================================================ +16:07:39 FNo. Len. Field Value +16:07:39 ============================================================================ +16:07:39 [ 1] [ 4] [0800] +16:07:39 [ 7] [ 10] [0320090646] +16:07:39 [ 11] [ 6] [157171] +16:07:39 [ 70] [ 3] [301] +16:07:39 ============================================================================ +16:07:39 + + +waiting on router queue for slot.... +16:07:39 Sending to : +16:07:39 ============================================================================ +16:07:39 ============================================================================ +16:07:39 Slot Id : <119> +16:07:39 Transaction Type : RESPONSE +16:07:39 Received From : +16:07:39 ============================================================================ +16:07:39 FNo. Len. Field Value +16:07:39 ============================================================================ +16:07:39 [ 1] [ 4] [0810] +16:07:39 [ 7] [ 10] [0320090646] +16:07:39 [ 11] [ 6] [157171] +16:07:39 [ 39] [ 2] [00] +16:07:39 [ 70] [ 3] [301] +16:07:39 ============================================================================ +16:07:39 Calculate Source COMM Id = 2 +16:07:39 ============================================================================ +16:07:39 + + +waiting on router queue for slot.... +16:07:43 ============================================================================ +16:07:43 Slot Id : <202> +16:07:43 Transaction Type : REQUEST +16:07:43 Received From : +16:07:43 ============================================================================ +16:07:43 FNo. Len. Field Value +16:07:43 ============================================================================ +16:07:43 [ 1] [ 4] [0200] +16:07:43 [ 2] [ 16] [6688990103260202] +16:07:43 [ 3] [ 6] [010000] +16:07:43 [ 4] [ 12] [000100000000] +16:07:43 [ 7] [ 10] [0320160738] +16:07:43 [ 11] [ 6] [793530] +16:07:43 [ 12] [ 6] [160738] +16:07:43 [ 13] [ 4] [0320] +16:07:43 [ 15] [ 4] [0320] +16:07:43 [ 18] [ 4] [6011] +16:07:43 [ 22] [ 3] [900] +16:07:43 [ 25] [ 2] [02] +16:07:43 [ 28] [ 9] [D00002000] +16:07:43 [ 32] [ 6] [621354] +16:07:43 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:07:43 [ 37] [ 12] [507903499564] +16:07:43 [ 41] [ 8] [06002200] +16:07:43 [ 42] [ 15] [NATIVE ] +16:07:43 [ 43] [ 40] [Beng Market Beng LAO] +16:07:43 [ 49] [ 3] [418] +16:07:43 [ 52] [ 16] [1C532F5642919E43] +16:07:43 ============================================================================ +16:07:43 + + +waiting on router queue for slot.... +16:07:43 Sending to : +16:07:43 ============================================================================ +16:07:43 Sending to : +16:07:43 ============================================================================ +16:07:43 ============================================================================ +16:07:43 Slot Id : <202> +16:07:43 Transaction Type : REQUEST +16:07:43 Received From : +16:07:43 ============================================================================ +16:07:43 FNo. Len. Field Value +16:07:43 ============================================================================ +16:07:43 [ 1] [ 4] [0200] +16:07:43 [ 2] [ 16] [6688990103260202] +16:07:43 [ 3] [ 6] [010000] +16:07:43 [ 4] [ 12] [000100000000] +16:07:43 [ 7] [ 10] [0320160738] +16:07:43 [ 11] [ 6] [793530] +16:07:43 [ 12] [ 6] [160738] +16:07:43 [ 13] [ 4] [0320] +16:07:43 [ 15] [ 4] [0320] +16:07:43 [ 18] [ 4] [6011] +16:07:43 [ 22] [ 3] [900] +16:07:43 [ 25] [ 2] [02] +16:07:43 [ 28] [ 9] [D00002000] +16:07:43 [ 32] [ 6] [621354] +16:07:43 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:07:43 [ 37] [ 12] [507903499564] +16:07:43 [ 41] [ 8] [06002200] +16:07:43 [ 42] [ 15] [NATIVE ] +16:07:43 [ 43] [ 40] [Beng Market Beng LAO] +16:07:43 [ 49] [ 3] [418] +16:07:43 [ 52] [ 16] [1C532F5642919E43] +16:07:43 ============================================================================ +16:07:43 + + +waiting on router queue for slot.... +16:07:43 Sending to : +16:07:43 ============================================================================ +16:07:43 ============================================================================ +16:07:43 Slot Id : <202> +16:07:43 Transaction Type : REQUEST +16:07:43 Received From : +16:07:43 ============================================================================ +16:07:43 FNo. Len. Field Value +16:07:43 ============================================================================ +16:07:43 [ 1] [ 4] [0200] +16:07:43 [ 2] [ 16] [6688990103260202] +16:07:43 [ 3] [ 6] [010000] +16:07:43 [ 4] [ 12] [000100000000] +16:07:43 [ 7] [ 10] [0320160738] +16:07:43 [ 11] [ 6] [793530] +16:07:43 [ 12] [ 6] [160738] +16:07:43 [ 13] [ 4] [0320] +16:07:43 [ 15] [ 4] [0320] +16:07:43 [ 18] [ 4] [6011] +16:07:43 [ 22] [ 3] [900] +16:07:43 [ 25] [ 2] [02] +16:07:43 [ 28] [ 9] [D00002000] +16:07:43 [ 32] [ 6] [621354] +16:07:43 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:07:43 [ 37] [ 12] [507903499564] +16:07:43 [ 41] [ 8] [06002200] +16:07:43 [ 42] [ 15] [NATIVE ] +16:07:43 [ 43] [ 40] [Beng Market Beng LAO] +16:07:43 [ 49] [ 3] [418] +16:07:43 [ 52] [ 16] [D67887803A78ED44] +16:07:43 ============================================================================ +16:07:43 + + +waiting on router queue for slot.... +16:07:43 Sending to : <4> +16:07:43 ============================================================================ +16:07:44 ============================================================================ +16:07:44 Slot Id : <202> +16:07:44 Transaction Type : RESPONSE +16:07:44 Received From : +16:07:44 ============================================================================ +16:07:44 FNo. Len. Field Value +16:07:44 ============================================================================ +16:07:44 [ 1] [ 4] [0210] +16:07:44 [ 2] [ 16] [6688990103260202] +16:07:44 [ 3] [ 6] [010000] +16:07:44 [ 4] [ 12] [000100000000] +16:07:44 [ 11] [ 6] [793530] +16:07:44 [ 12] [ 6] [160738] +16:07:44 [ 15] [ 4] [0320] +16:07:44 [ 18] [ 4] [6011] +16:07:44 [ 32] [ 6] [621354] +16:07:44 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:07:44 [ 37] [ 12] [507903499564] +16:07:44 [ 38] [ 6] [768119] +16:07:44 [ 39] [ 2] [00] +16:07:44 [ 41] [ 8] [06002200] +16:07:44 [ 49] [ 3] [418] +16:07:44 [ 54] [ 20] [0002418C000013088152] +16:07:44 ============================================================================ +16:07:44 Sending to : +16:07:44 ============================================================================ +16:07:44 + + +waiting on router queue for slot.... +16:07:46 ============================================================================ +16:07:46 Slot Id : <202> +16:07:46 Transaction Type : RESPONSE +16:07:46 Received From : +16:07:46 ============================================================================ +16:07:46 FNo. Len. Field Value +16:07:46 ============================================================================ +16:07:46 [ 1] [ 4] [0210] +16:07:46 [ 2] [ 16] [6688990103260202] +16:07:46 [ 3] [ 6] [010000] +16:07:46 [ 4] [ 12] [000100000000] +16:07:46 [ 11] [ 6] [793530] +16:07:46 [ 12] [ 6] [160738] +16:07:46 [ 15] [ 4] [0320] +16:07:46 [ 18] [ 4] [6011] +16:07:46 [ 32] [ 6] [621354] +16:07:46 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:07:46 [ 37] [ 12] [507903499564] +16:07:46 [ 38] [ 6] [768119] +16:07:46 [ 39] [ 2] [00] +16:07:46 [ 41] [ 8] [06002200] +16:07:46 [ 49] [ 3] [418] +16:07:46 [ 54] [ 20] [0002418C000013088152] +16:07:46 ============================================================================ +16:07:46 Calculate Source COMM Id = 0 +16:07:46 ============================================================================ +16:07:46 + + +waiting on router queue for slot.... +16:07:50 ============================================================================ +16:07:50 Slot Id : <176> +16:07:50 Transaction Type : REQUEST +16:07:50 Received From : +16:07:50 ============================================================================ +16:07:50 FNo. Len. Field Value +16:07:50 ============================================================================ +16:07:50 [ 1] [ 4] [0800] +16:07:50 [ 7] [ 10] [0320090656] +16:07:50 [ 11] [ 6] [157172] +16:07:50 [ 70] [ 3] [301] +16:07:50 ============================================================================ +16:07:50 + + +waiting on router queue for slot.... +16:07:50 Sending to : +16:07:50 ============================================================================ +16:07:50 ============================================================================ +16:07:50 Slot Id : <176> +16:07:50 Transaction Type : RESPONSE +16:07:50 Received From : +16:07:50 ============================================================================ +16:07:50 FNo. Len. Field Value +16:07:50 ============================================================================ +16:07:50 [ 1] [ 4] [0810] +16:07:50 [ 7] [ 10] [0320090656] +16:07:50 [ 11] [ 6] [157172] +16:07:50 [ 39] [ 2] [00] +16:07:50 [ 70] [ 3] [301] +16:07:50 ============================================================================ +16:07:50 Calculate Source COMM Id = 2 +16:07:50 ============================================================================ +16:07:50 + + +waiting on router queue for slot.... +16:07:51 ============================================================================ +16:07:51 Slot Id : <182> +16:07:51 Transaction Type : REQUEST +16:07:51 Received From : +16:07:51 ============================================================================ +16:07:51 FNo. Len. Field Value +16:07:51 ============================================================================ +16:07:51 [ 1] [ 4] [0800] +16:07:51 [ 2] [ 5] [02531] +16:07:51 [ 3] [ 6] [579168] +16:07:51 [ 7] [ 10] [0320090751] +16:07:51 [ 11] [ 6] [807348] +16:07:51 [ 15] [ 10] [0320090751] +16:07:51 [ 37] [ 11] [57916807348] +16:07:51 [ 70] [ 3] [001] +16:07:51 ============================================================================ +16:07:51 + + +waiting on router queue for slot.... +16:07:51 ============================================================================ +16:07:51 Slot Id : <182> +16:07:51 Transaction Type : RESPONSE +16:07:51 Received From : +16:07:51 ============================================================================ +16:07:51 FNo. Len. Field Value +16:07:51 ============================================================================ +16:07:51 [ 1] [ 4] [0810] +16:07:51 [ 7] [ 10] [0320090751] +16:07:51 [ 11] [ 6] [807348] +16:07:51 [ 15] [ 4] [0320] +16:07:51 [ 37] [ 12] [57916807348] +16:07:51 [ 39] [ 2] [00] +16:07:51 [ 70] [ 3] [001] +16:07:51 ============================================================================ +16:07:51 Sending to : +16:07:51 ============================================================================ +16:07:51 + + +waiting on router queue for slot.... +16:08:05 ============================================================================ +16:08:05 Slot Id : <187> +16:08:05 Transaction Type : REQUEST +16:08:05 Received From : +16:08:05 ============================================================================ +16:08:05 FNo. Len. Field Value +16:08:05 ============================================================================ +16:08:05 [ 1] [ 4] [0800] +16:08:05 [ 7] [ 10] [0320090712] +16:08:05 [ 11] [ 6] [157173] +16:08:05 [ 70] [ 3] [301] +16:08:05 ============================================================================ +16:08:05 + + +waiting on router queue for slot.... +16:08:05 Sending to : +16:08:05 ============================================================================ +16:08:05 ============================================================================ +16:08:05 Slot Id : <187> +16:08:05 Transaction Type : RESPONSE +16:08:05 Received From : +16:08:05 ============================================================================ +16:08:05 FNo. Len. Field Value +16:08:05 ============================================================================ +16:08:05 [ 1] [ 4] [0810] +16:08:05 [ 7] [ 10] [0320090712] +16:08:05 [ 11] [ 6] [157173] +16:08:05 [ 39] [ 2] [00] +16:08:05 [ 70] [ 3] [301] +16:08:05 ============================================================================ +16:08:05 Calculate Source COMM Id = 2 +16:08:05 ============================================================================ +16:08:05 + + +waiting on router queue for slot.... +16:08:08 ============================================================================ +16:08:08 Slot Id : <160> +16:08:08 Transaction Type : REQUEST +16:08:08 Received From : +16:08:08 ============================================================================ +16:08:08 FNo. Len. Field Value +16:08:08 ============================================================================ +16:08:08 [ 1] [ 4] [0200] +16:08:08 [ 2] [ 16] [6213548000165124] +16:08:08 [ 3] [ 6] [300000] +16:08:08 [ 4] [ 12] [000000000000] +16:08:08 [ 7] [ 10] [0320160558] +16:08:08 [ 11] [ 6] [951094] +16:08:08 [ 12] [ 6] [160558] +16:08:08 [ 13] [ 4] [0320] +16:08:08 [ 15] [ 4] [0320] +16:08:08 [ 18] [ 4] [6011] +16:08:08 [ 19] [ 3] [418] +16:08:08 [ 22] [ 3] [021] +16:08:08 [ 25] [ 2] [01] +16:08:08 [ 28] [ 9] [D00000000] +16:08:08 [ 32] [ 6] [668899] +16:08:08 [ 35] [ 32] [6213548000165124=131212016512716] +16:08:08 [ 37] [ 12] [507902556317] +16:08:08 [ 41] [ 8] [03016004] +16:08:08 [ 42] [ 15] [APT ] +16:08:08 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +16:08:08 [ 49] [ 3] [418] +16:08:08 [ 52] [ 16] [799A056F4DA2B6EC] +16:08:08 ============================================================================ +16:08:08 + + +waiting on router queue for slot.... +16:08:08 Sending to : +16:08:08 ============================================================================ +16:08:08 Sending to : +16:08:08 ============================================================================ +16:08:08 ============================================================================ +16:08:08 Slot Id : <160> +16:08:08 Transaction Type : REQUEST +16:08:08 Received From : +16:08:08 ============================================================================ +16:08:08 FNo. Len. Field Value +16:08:08 ============================================================================ +16:08:08 [ 1] [ 4] [0200] +16:08:08 [ 2] [ 16] [6213548000165124] +16:08:08 [ 3] [ 6] [300000] +16:08:08 [ 4] [ 12] [000000000000] +16:08:08 [ 7] [ 10] [0320160558] +16:08:08 [ 11] [ 6] [951094] +16:08:08 [ 12] [ 6] [160558] +16:08:08 [ 13] [ 4] [0320] +16:08:08 [ 15] [ 4] [0320] +16:08:08 [ 18] [ 4] [6011] +16:08:08 [ 19] [ 3] [418] +16:08:08 [ 22] [ 3] [021] +16:08:08 [ 25] [ 2] [01] +16:08:08 [ 28] [ 9] [D00000000] +16:08:08 [ 32] [ 6] [668899] +16:08:08 [ 35] [ 32] [6213548000165124=131212016512716] +16:08:08 [ 37] [ 12] [507902556317] +16:08:08 [ 41] [ 8] [03016004] +16:08:08 [ 42] [ 15] [APT ] +16:08:08 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +16:08:08 [ 49] [ 3] [418] +16:08:08 [ 52] [ 16] [799A056F4DA2B6EC] +16:08:08 ============================================================================ +16:08:08 + + +waiting on router queue for slot.... +16:08:08 Sending to : +16:08:08 ============================================================================ +16:08:08 ============================================================================ +16:08:08 Slot Id : <160> +16:08:08 Transaction Type : REQUEST +16:08:08 Received From : +16:08:08 ============================================================================ +16:08:08 FNo. Len. Field Value +16:08:08 ============================================================================ +16:08:08 [ 1] [ 4] [0200] +16:08:08 [ 2] [ 16] [6213548000165124] +16:08:08 [ 3] [ 6] [300000] +16:08:08 [ 4] [ 12] [000000000000] +16:08:08 [ 7] [ 10] [0320160558] +16:08:08 [ 11] [ 6] [951094] +16:08:08 [ 12] [ 6] [160558] +16:08:08 [ 13] [ 4] [0320] +16:08:08 [ 15] [ 4] [0320] +16:08:08 [ 18] [ 4] [6011] +16:08:08 [ 19] [ 3] [418] +16:08:08 [ 22] [ 3] [021] +16:08:08 [ 25] [ 2] [01] +16:08:08 [ 28] [ 9] [D00000000] +16:08:08 [ 32] [ 6] [668899] +16:08:08 [ 35] [ 32] [6213548000165124=131212016512716] +16:08:08 [ 37] [ 12] [507902556317] +16:08:08 [ 41] [ 8] [03016004] +16:08:08 [ 42] [ 15] [APT ] +16:08:08 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +16:08:08 [ 49] [ 3] [418] +16:08:08 [ 52] [ 16] [666591169206ADAC] +16:08:08 ============================================================================ +16:08:08 + + +waiting on router queue for slot.... +16:08:08 Sending to : <0> +16:08:08 ============================================================================ +16:08:08 ============================================================================ +16:08:08 Slot Id : <160> +16:08:08 Transaction Type : RESPONSE +16:08:08 Received From : +16:08:08 ============================================================================ +16:08:08 FNo. Len. Field Value +16:08:08 ============================================================================ +16:08:08 [ 1] [ 4] [0210] +16:08:08 [ 2] [ 16] [6213548000165124] +16:08:08 [ 3] [ 6] [300000] +16:08:08 [ 4] [ 12] [000000000000] +16:08:08 [ 7] [ 10] [0320160558] +16:08:08 [ 11] [ 6] [951094] +16:08:08 [ 12] [ 6] [160558] +16:08:08 [ 13] [ 4] [0320] +16:08:08 [ 15] [ 4] [0320] +16:08:08 [ 18] [ 4] [6011] +16:08:08 [ 19] [ 3] [418] +16:08:08 [ 32] [ 6] [668899] +16:08:08 [ 35] [ 32] [6213548000165124=131212016512716] +16:08:08 [ 37] [ 12] [507902556317] +16:08:08 [ 38] [ 6] [679230] +16:08:08 [ 39] [ 2] [00] +16:08:08 [ 41] [ 8] [03016004] +16:08:08 [ 49] [ 3] [418] +16:08:08 [ 54] [ 40] [0001418C0000735539930002418C000073553993] +16:08:08 ============================================================================ +16:08:08 Sending to : +16:08:08 ============================================================================ +16:08:08 + + +waiting on router queue for slot.... +16:08:10 ============================================================================ +16:08:10 Slot Id : <160> +16:08:10 Transaction Type : RESPONSE +16:08:10 Received From : +16:08:10 ============================================================================ +16:08:10 FNo. Len. Field Value +16:08:10 ============================================================================ +16:08:10 [ 1] [ 4] [0210] +16:08:10 [ 2] [ 16] [6213548000165124] +16:08:10 [ 3] [ 6] [300000] +16:08:10 [ 4] [ 12] [000000000000] +16:08:10 [ 7] [ 10] [0320160558] +16:08:10 [ 11] [ 6] [951094] +16:08:10 [ 12] [ 6] [160558] +16:08:10 [ 13] [ 4] [0320] +16:08:10 [ 15] [ 4] [0320] +16:08:10 [ 18] [ 4] [6011] +16:08:10 [ 19] [ 3] [418] +16:08:10 [ 32] [ 6] [668899] +16:08:10 [ 35] [ 32] [6213548000165124=131212016512716] +16:08:10 [ 37] [ 12] [507902556317] +16:08:10 [ 38] [ 6] [679230] +16:08:10 [ 39] [ 2] [00] +16:08:10 [ 41] [ 8] [03016004] +16:08:10 [ 49] [ 3] [418] +16:08:10 [ 54] [ 40] [0001418C0000735539930002418C000073553993] +16:08:10 ============================================================================ +16:08:10 Calculate Source COMM Id = 4 +16:08:10 ============================================================================ +16:08:10 + + +waiting on router queue for slot.... +16:08:11 ============================================================================ +16:08:11 Slot Id : <144> +16:08:11 Transaction Type : REQUEST +16:08:11 Received From : +16:08:11 ============================================================================ +16:08:11 FNo. Len. Field Value +16:08:11 ============================================================================ +16:08:11 [ 1] [ 4] [0200] +16:08:11 [ 2] [ 16] [6688990103535801] +16:08:11 [ 3] [ 6] [010000] +16:08:11 [ 4] [ 12] [000100000000] +16:08:11 [ 7] [ 10] [0320160806] +16:08:11 [ 11] [ 6] [793631] +16:08:11 [ 12] [ 6] [160806] +16:08:11 [ 13] [ 4] [0320] +16:08:11 [ 15] [ 4] [0320] +16:08:11 [ 18] [ 4] [6011] +16:08:11 [ 22] [ 3] [900] +16:08:11 [ 25] [ 2] [02] +16:08:11 [ 28] [ 9] [D00002000] +16:08:11 [ 32] [ 6] [621354] +16:08:11 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:08:11 [ 37] [ 12] [507903345180] +16:08:11 [ 41] [ 8] [13001400] +16:08:11 [ 42] [ 15] [NATIVE ] +16:08:11 [ 43] [ 40] [Kham Unit Kham LAO] +16:08:11 [ 49] [ 3] [418] +16:08:11 [ 52] [ 16] [5B2DE7A8572AD9BA] +16:08:11 ============================================================================ +16:08:11 + + +waiting on router queue for slot.... +16:08:11 Sending to : +16:08:11 ============================================================================ +16:08:11 Sending to : +16:08:11 ============================================================================ +16:08:11 ============================================================================ +16:08:11 Slot Id : <144> +16:08:11 Transaction Type : REQUEST +16:08:11 Received From : +16:08:11 ============================================================================ +16:08:11 FNo. Len. Field Value +16:08:11 ============================================================================ +16:08:11 [ 1] [ 4] [0200] +16:08:11 [ 2] [ 16] [6688990103535801] +16:08:11 [ 3] [ 6] [010000] +16:08:11 [ 4] [ 12] [000100000000] +16:08:11 [ 7] [ 10] [0320160806] +16:08:11 [ 11] [ 6] [793631] +16:08:11 [ 12] [ 6] [160806] +16:08:11 [ 13] [ 4] [0320] +16:08:11 [ 15] [ 4] [0320] +16:08:11 [ 18] [ 4] [6011] +16:08:11 [ 22] [ 3] [900] +16:08:11 [ 25] [ 2] [02] +16:08:11 [ 28] [ 9] [D00002000] +16:08:11 [ 32] [ 6] [621354] +16:08:11 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:08:11 [ 37] [ 12] [507903345180] +16:08:11 [ 41] [ 8] [13001400] +16:08:11 [ 42] [ 15] [NATIVE ] +16:08:11 [ 43] [ 40] [Kham Unit Kham LAO] +16:08:11 [ 49] [ 3] [418] +16:08:11 [ 52] [ 16] [5B2DE7A8572AD9BA] +16:08:11 ============================================================================ +16:08:11 + + +waiting on router queue for slot.... +16:08:11 Sending to : +16:08:11 ============================================================================ +16:08:11 ============================================================================ +16:08:11 Slot Id : <144> +16:08:11 Transaction Type : REQUEST +16:08:11 Received From : +16:08:11 ============================================================================ +16:08:11 FNo. Len. Field Value +16:08:11 ============================================================================ +16:08:11 [ 1] [ 4] [0200] +16:08:11 [ 2] [ 16] [6688990103535801] +16:08:11 [ 3] [ 6] [010000] +16:08:11 [ 4] [ 12] [000100000000] +16:08:11 [ 7] [ 10] [0320160806] +16:08:11 [ 11] [ 6] [793631] +16:08:11 [ 12] [ 6] [160806] +16:08:11 [ 13] [ 4] [0320] +16:08:11 [ 15] [ 4] [0320] +16:08:11 [ 18] [ 4] [6011] +16:08:11 [ 22] [ 3] [900] +16:08:11 [ 25] [ 2] [02] +16:08:11 [ 28] [ 9] [D00002000] +16:08:11 [ 32] [ 6] [621354] +16:08:11 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:08:11 [ 37] [ 12] [507903345180] +16:08:11 [ 41] [ 8] [13001400] +16:08:11 [ 42] [ 15] [NATIVE ] +16:08:11 [ 43] [ 40] [Kham Unit Kham LAO] +16:08:11 [ 49] [ 3] [418] +16:08:11 [ 52] [ 16] [94F1DA98B734B350] +16:08:11 ============================================================================ +16:08:11 + + +waiting on router queue for slot.... +16:08:11 Sending to : <4> +16:08:11 ============================================================================ +16:08:11 ============================================================================ +16:08:11 Slot Id : <144> +16:08:11 Transaction Type : RESPONSE +16:08:11 Received From : +16:08:11 ============================================================================ +16:08:11 FNo. Len. Field Value +16:08:11 ============================================================================ +16:08:11 [ 1] [ 4] [0210] +16:08:11 [ 2] [ 16] [6688990103535801] +16:08:11 [ 3] [ 6] [010000] +16:08:11 [ 4] [ 12] [000100000000] +16:08:11 [ 11] [ 6] [793631] +16:08:11 [ 12] [ 6] [160806] +16:08:11 [ 15] [ 4] [0320] +16:08:11 [ 18] [ 4] [6011] +16:08:11 [ 32] [ 6] [621354] +16:08:11 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:08:11 [ 37] [ 12] [507903345180] +16:08:11 [ 39] [ 2] [51] +16:08:11 [ 41] [ 8] [13001400] +16:08:11 [ 49] [ 3] [418] +16:08:11 [ 54] [ 0] [] +16:08:11 ============================================================================ +16:08:11 Sending to : +16:08:11 ============================================================================ +16:08:11 + + +waiting on router queue for slot.... +16:08:12 ============================================================================ +16:08:12 Slot Id : <144> +16:08:12 Transaction Type : RESPONSE +16:08:12 Received From : +16:08:12 ============================================================================ +16:08:12 FNo. Len. Field Value +16:08:12 ============================================================================ +16:08:12 [ 1] [ 4] [0210] +16:08:12 [ 2] [ 16] [6688990103535801] +16:08:12 [ 3] [ 6] [010000] +16:08:12 [ 4] [ 12] [000100000000] +16:08:12 [ 11] [ 6] [793631] +16:08:12 [ 12] [ 6] [160806] +16:08:12 [ 15] [ 4] [0320] +16:08:12 [ 18] [ 4] [6011] +16:08:12 [ 32] [ 6] [621354] +16:08:12 [ 35] [ 37] [6688990103535801=43011231580133600000] +16:08:12 [ 37] [ 12] [507903345180] +16:08:12 [ 39] [ 2] [51] +16:08:12 [ 41] [ 8] [13001400] +16:08:12 [ 49] [ 3] [418] +16:08:12 [ 54] [ 0] [] +16:08:12 ============================================================================ +16:08:12 Calculate Source COMM Id = 0 +16:08:12 ============================================================================ +16:08:12 + + +waiting on router queue for slot.... +16:08:14 ============================================================================ +16:08:14 Slot Id : <156> +16:08:14 Transaction Type : REQUEST +16:08:14 Received From : +16:08:14 ============================================================================ +16:08:14 FNo. Len. Field Value +16:08:14 ============================================================================ +16:08:14 [ 1] [ 4] [0200] +16:08:14 [ 2] [ 16] [2206990000093815] +16:08:14 [ 3] [ 6] [011000] +16:08:14 [ 4] [ 12] [000020000000] +16:08:14 [ 7] [ 10] [0320160810] +16:08:14 [ 11] [ 6] [793652] +16:08:14 [ 12] [ 6] [160810] +16:08:14 [ 13] [ 4] [0320] +16:08:14 [ 15] [ 4] [0320] +16:08:14 [ 18] [ 4] [6011] +16:08:14 [ 22] [ 3] [900] +16:08:14 [ 25] [ 2] [02] +16:08:14 [ 28] [ 9] [D00002000] +16:08:14 [ 32] [ 6] [621354] +16:08:14 [ 35] [ 32] [2206990000093815=971012613855659] +16:08:14 [ 37] [ 12] [507903063975] +16:08:14 [ 41] [ 8] [01008600] +16:08:14 [ 42] [ 15] [NATIVE ] +16:08:14 [ 43] [ 40] [BEER LAO Hatxaifong LAO] +16:08:14 [ 49] [ 3] [418] +16:08:14 [ 52] [ 16] [40E0988F75DAE96A] +16:08:14 ============================================================================ +16:08:14 + + +waiting on router queue for slot.... +16:08:14 Sending to : +16:08:14 ============================================================================ +16:08:14 Sending to : +16:08:14 ============================================================================ +16:08:15 ============================================================================ +16:08:15 Slot Id : <156> +16:08:15 Transaction Type : REQUEST +16:08:15 Received From : +16:08:15 ============================================================================ +16:08:15 FNo. Len. Field Value +16:08:15 ============================================================================ +16:08:15 [ 1] [ 4] [0200] +16:08:15 [ 2] [ 16] [2206990000093815] +16:08:15 [ 3] [ 6] [011000] +16:08:15 [ 4] [ 12] [000020000000] +16:08:15 [ 7] [ 10] [0320160810] +16:08:15 [ 11] [ 6] [793652] +16:08:15 [ 12] [ 6] [160810] +16:08:15 [ 13] [ 4] [0320] +16:08:15 [ 15] [ 4] [0320] +16:08:15 [ 18] [ 4] [6011] +16:08:15 [ 22] [ 3] [900] +16:08:15 [ 25] [ 2] [02] +16:08:15 [ 28] [ 9] [D00002000] +16:08:15 [ 32] [ 6] [621354] +16:08:15 [ 35] [ 32] [2206990000093815=971012613855659] +16:08:15 [ 37] [ 12] [507903063975] +16:08:15 [ 41] [ 8] [01008600] +16:08:15 [ 42] [ 15] [NATIVE ] +16:08:15 [ 43] [ 40] [BEER LAO Hatxaifong LAO] +16:08:15 [ 49] [ 3] [418] +16:08:15 [ 52] [ 16] [40E0988F75DAE96A] +16:08:15 ============================================================================ +16:08:15 + + +waiting on router queue for slot.... +16:08:15 Sending to : +16:08:15 ============================================================================ +16:08:15 ============================================================================ +16:08:15 Slot Id : <156> +16:08:15 Transaction Type : REQUEST +16:08:15 Received From : +16:08:15 ============================================================================ +16:08:15 FNo. Len. Field Value +16:08:15 ============================================================================ +16:08:15 [ 1] [ 4] [0200] +16:08:15 [ 2] [ 16] [2206990000093815] +16:08:15 [ 3] [ 6] [011000] +16:08:15 [ 4] [ 12] [000020000000] +16:08:15 [ 7] [ 10] [0320160810] +16:08:15 [ 11] [ 6] [793652] +16:08:15 [ 12] [ 6] [160810] +16:08:15 [ 13] [ 4] [0320] +16:08:15 [ 15] [ 4] [0320] +16:08:15 [ 18] [ 4] [6011] +16:08:15 [ 22] [ 3] [900] +16:08:15 [ 25] [ 2] [02] +16:08:15 [ 28] [ 9] [D00002000] +16:08:15 [ 32] [ 6] [621354] +16:08:15 [ 35] [ 32] [2206990000093815=971012613855659] +16:08:15 [ 37] [ 12] [507903063975] +16:08:15 [ 41] [ 8] [01008600] +16:08:15 [ 42] [ 15] [NATIVE ] +16:08:15 [ 43] [ 40] [BEER LAO Hatxaifong LAO] +16:08:15 [ 49] [ 3] [418] +16:08:15 [ 52] [ 16] [AED47AE958BBD2F0] +16:08:15 ============================================================================ +16:08:15 + + +waiting on router queue for slot.... +16:08:15 Sending to : <1> +16:08:15 ============================================================================ +16:08:16 ============================================================================ +16:08:16 Slot Id : <163> +16:08:16 Transaction Type : REQUEST +16:08:16 Received From : +16:08:16 ============================================================================ +16:08:16 FNo. Len. Field Value +16:08:16 ============================================================================ +16:08:16 [ 1] [ 4] [0800] +16:08:16 [ 7] [ 10] [0320090723] +16:08:16 [ 11] [ 6] [157174] +16:08:16 [ 70] [ 3] [301] +16:08:16 ============================================================================ +16:08:16 + + +waiting on router queue for slot.... +16:08:16 Sending to : +16:08:16 ============================================================================ +16:08:16 ============================================================================ +16:08:16 Slot Id : <163> +16:08:16 Transaction Type : RESPONSE +16:08:16 Received From : +16:08:16 ============================================================================ +16:08:16 FNo. Len. Field Value +16:08:16 ============================================================================ +16:08:16 [ 1] [ 4] [0810] +16:08:16 [ 7] [ 10] [0320090723] +16:08:16 [ 11] [ 6] [157174] +16:08:16 [ 39] [ 2] [00] +16:08:16 [ 70] [ 3] [301] +16:08:16 ============================================================================ +16:08:16 Calculate Source COMM Id = 2 +16:08:16 ============================================================================ +16:08:16 + + +waiting on router queue for slot.... +16:08:17 ============================================================================ +16:08:17 Slot Id : <203> +16:08:17 Transaction Type : REQUEST +16:08:17 Received From : +16:08:17 ============================================================================ +16:08:17 FNo. Len. Field Value +16:08:17 ============================================================================ +16:08:17 [ 1] [ 4] [0200] +16:08:17 [ 2] [ 16] [6213545000988752] +16:08:17 [ 3] [ 6] [301000] +16:08:17 [ 7] [ 10] [0320090723] +16:08:17 [ 11] [ 6] [270251] +16:08:17 [ 12] [ 6] [160723] +16:08:17 [ 13] [ 4] [0320] +16:08:17 [ 14] [ 4] [4912] +16:08:17 [ 15] [ 4] [0320] +16:08:17 [ 18] [ 4] [6011] +16:08:17 [ 19] [ 3] [418] +16:08:17 [ 22] [ 3] [021] +16:08:17 [ 25] [ 2] [01] +16:08:17 [ 32] [ 6] [180893] +16:08:17 [ 35] [ 32] [6213545000988752=491212018875978] +16:08:17 [ 37] [ 12] [507909270251] +16:08:17 [ 41] [ 8] [0243VTKS] +16:08:17 [ 42] [ 15] [999999 ] +16:08:17 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:08:17 [ 49] [ 3] [418] +16:08:17 [ 52] [ 16] [CE02CD2C647B5939] +16:08:17 ============================================================================ +16:08:17 + + +waiting on router queue for slot.... +16:08:17 Sending to : +16:08:17 ============================================================================ +16:08:17 Sending to : +16:08:17 ============================================================================ +16:08:17 ============================================================================ +16:08:17 Slot Id : <203> +16:08:17 Transaction Type : REQUEST +16:08:17 Received From : +16:08:17 ============================================================================ +16:08:17 FNo. Len. Field Value +16:08:17 ============================================================================ +16:08:17 [ 1] [ 4] [0200] +16:08:17 [ 2] [ 16] [6213545000988752] +16:08:17 [ 3] [ 6] [301000] +16:08:17 [ 7] [ 10] [0320090723] +16:08:17 [ 11] [ 6] [270251] +16:08:17 [ 12] [ 6] [160723] +16:08:17 [ 13] [ 4] [0320] +16:08:17 [ 14] [ 4] [4912] +16:08:17 [ 15] [ 4] [0320] +16:08:17 [ 18] [ 4] [6011] +16:08:17 [ 19] [ 3] [418] +16:08:17 [ 22] [ 3] [021] +16:08:17 [ 25] [ 2] [01] +16:08:17 [ 32] [ 6] [180893] +16:08:17 [ 35] [ 32] [6213545000988752=491212018875978] +16:08:17 [ 37] [ 12] [507909270251] +16:08:17 [ 41] [ 8] [0243VTKS] +16:08:17 [ 42] [ 15] [999999 ] +16:08:17 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:08:17 [ 49] [ 3] [418] +16:08:17 [ 52] [ 16] [CE02CD2C647B5939] +16:08:17 ============================================================================ +16:08:17 + + +waiting on router queue for slot.... +16:08:17 Sending to : +16:08:17 ============================================================================ +16:08:17 ============================================================================ +16:08:17 Slot Id : <203> +16:08:17 Transaction Type : REQUEST +16:08:17 Received From : +16:08:17 ============================================================================ +16:08:17 FNo. Len. Field Value +16:08:17 ============================================================================ +16:08:17 [ 1] [ 4] [0200] +16:08:17 [ 2] [ 16] [6213545000988752] +16:08:17 [ 3] [ 6] [301000] +16:08:17 [ 7] [ 10] [0320090723] +16:08:17 [ 11] [ 6] [270251] +16:08:17 [ 12] [ 6] [160723] +16:08:17 [ 13] [ 4] [0320] +16:08:17 [ 14] [ 4] [4912] +16:08:17 [ 15] [ 4] [0320] +16:08:17 [ 18] [ 4] [6011] +16:08:17 [ 19] [ 3] [418] +16:08:17 [ 22] [ 3] [021] +16:08:17 [ 25] [ 2] [01] +16:08:17 [ 32] [ 6] [180893] +16:08:17 [ 35] [ 32] [6213545000988752=491212018875978] +16:08:17 [ 37] [ 12] [507909270251] +16:08:17 [ 41] [ 8] [0243VTKS] +16:08:17 [ 42] [ 15] [999999 ] +16:08:17 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:08:17 [ 49] [ 3] [418] +16:08:17 [ 52] [ 16] [AC73E8C52951E2ED] +16:08:17 ============================================================================ +16:08:17 + + +waiting on router queue for slot.... +16:08:17 Sending to : <0> +16:08:17 ============================================================================ +16:08:17 ============================================================================ +16:08:17 Slot Id : <203> +16:08:17 Transaction Type : RESPONSE +16:08:17 Received From : +16:08:17 ============================================================================ +16:08:17 FNo. Len. Field Value +16:08:17 ============================================================================ +16:08:17 [ 1] [ 4] [0210] +16:08:17 [ 2] [ 16] [6213545000988752] +16:08:17 [ 3] [ 6] [301000] +16:08:17 [ 4] [ 12] [000000000000] +16:08:17 [ 7] [ 10] [0320090723] +16:08:17 [ 11] [ 6] [270251] +16:08:17 [ 12] [ 6] [160723] +16:08:17 [ 13] [ 4] [0320] +16:08:17 [ 15] [ 4] [0320] +16:08:17 [ 18] [ 4] [6011] +16:08:17 [ 19] [ 3] [418] +16:08:17 [ 32] [ 6] [180893] +16:08:17 [ 35] [ 32] [6213545000988752=491212018875978] +16:08:17 [ 37] [ 12] [507909270251] +16:08:17 [ 38] [ 6] [791089] +16:08:17 [ 39] [ 2] [00] +16:08:17 [ 41] [ 8] [0243VTKS] +16:08:17 [ 49] [ 3] [418] +16:08:17 [ 54] [ 40] [1001418C0001529740771002418C000152974077] +16:08:17 ============================================================================ +16:08:17 Sending to : +16:08:17 ============================================================================ +16:08:17 + + +waiting on router queue for slot.... +16:08:18 ============================================================================ +16:08:18 Slot Id : <156> +16:08:18 Transaction Type : RESPONSE +16:08:18 Received From : +16:08:18 ============================================================================ +16:08:18 FNo. Len. Field Value +16:08:18 ============================================================================ +16:08:18 [ 1] [ 4] [0210] +16:08:18 [ 2] [ 16] [2206990000093815] +16:08:18 [ 3] [ 6] [011000] +16:08:18 [ 4] [ 12] [000020000000] +16:08:18 [ 7] [ 10] [0320160810] +16:08:18 [ 11] [ 6] [793652] +16:08:18 [ 12] [ 6] [160810] +16:08:18 [ 13] [ 4] [0320] +16:08:18 [ 15] [ 4] [0320] +16:08:18 [ 18] [ 4] [6011] +16:08:18 [ 32] [ 6] [621354] +16:08:18 [ 35] [ 32] [2206990000093815=971012613855659] +16:08:18 [ 37] [ 12] [507903063975] +16:08:18 [ 38] [ 6] [271633] +16:08:18 [ 39] [ 2] [00] +16:08:18 [ 41] [ 8] [01008600] +16:08:18 [ 49] [ 3] [418] +16:08:18 [ 54] [ 40] [1001418C0000060439001002418C000006043900] +16:08:18 ============================================================================ +16:08:18 Sending to : +16:08:18 ============================================================================ +16:08:18 + + +waiting on router queue for slot.... +16:08:19 ============================================================================ +16:08:19 Slot Id : <203> +16:08:19 Transaction Type : RESPONSE +16:08:19 Received From : +16:08:19 ============================================================================ +16:08:19 FNo. Len. Field Value +16:08:19 ============================================================================ +16:08:19 [ 1] [ 4] [0210] +16:08:19 [ 2] [ 16] [6213545000988752] +16:08:19 [ 3] [ 6] [301000] +16:08:19 [ 4] [ 12] [000000000000] +16:08:19 [ 7] [ 10] [0320090723] +16:08:19 [ 11] [ 6] [270251] +16:08:19 [ 12] [ 6] [160723] +16:08:19 [ 13] [ 4] [0320] +16:08:19 [ 15] [ 4] [0320] +16:08:19 [ 18] [ 4] [6011] +16:08:19 [ 19] [ 3] [418] +16:08:19 [ 32] [ 6] [180893] +16:08:19 [ 35] [ 32] [6213545000988752=491212018875978] +16:08:19 [ 37] [ 12] [507909270251] +16:08:19 [ 38] [ 6] [791089] +16:08:19 [ 39] [ 2] [00] +16:08:19 [ 41] [ 8] [0243VTKS] +16:08:19 [ 49] [ 3] [418] +16:08:19 [ 54] [ 40] [1001418C0001529740771002418C000152974077] +16:08:19 ============================================================================ +16:08:19 Calculate Source COMM Id = 2 +16:08:19 ============================================================================ +16:08:19 + + +waiting on router queue for slot.... +16:08:20 ============================================================================ +16:08:20 Slot Id : <156> +16:08:20 Transaction Type : RESPONSE +16:08:20 Received From : +16:08:20 ============================================================================ +16:08:20 FNo. Len. Field Value +16:08:20 ============================================================================ +16:08:20 [ 1] [ 4] [0210] +16:08:20 [ 2] [ 16] [2206990000093815] +16:08:20 [ 3] [ 6] [011000] +16:08:20 [ 4] [ 12] [000020000000] +16:08:20 [ 7] [ 10] [0320160810] +16:08:20 [ 11] [ 6] [793652] +16:08:20 [ 12] [ 6] [160810] +16:08:20 [ 13] [ 4] [0320] +16:08:20 [ 15] [ 4] [0320] +16:08:20 [ 18] [ 4] [6011] +16:08:20 [ 32] [ 6] [621354] +16:08:20 [ 35] [ 32] [2206990000093815=971012613855659] +16:08:20 [ 37] [ 12] [507903063975] +16:08:20 [ 38] [ 6] [271633] +16:08:20 [ 39] [ 2] [00] +16:08:20 [ 41] [ 8] [01008600] +16:08:20 [ 49] [ 3] [418] +16:08:20 [ 54] [ 40] [1001418C0000060439001002418C000006043900] +16:08:20 ============================================================================ +16:08:20 Calculate Source COMM Id = 0 +16:08:20 ============================================================================ +16:08:20 + + +waiting on router queue for slot.... +16:08:22 ============================================================================ +16:08:22 Slot Id : <179> +16:08:22 Transaction Type : REQUEST +16:08:22 Received From : +16:08:22 ============================================================================ +16:08:22 FNo. Len. Field Value +16:08:22 ============================================================================ +16:08:22 [ 1] [ 4] [0200] +16:08:22 [ 2] [ 16] [6213544000713666] +16:08:22 [ 3] [ 6] [011000] +16:08:22 [ 4] [ 12] [000020000000] +16:08:22 [ 7] [ 10] [0320090728] +16:08:22 [ 11] [ 6] [270252] +16:08:22 [ 12] [ 6] [160728] +16:08:22 [ 13] [ 4] [0320] +16:08:22 [ 14] [ 4] [4912] +16:08:22 [ 15] [ 4] [0320] +16:08:22 [ 18] [ 4] [6011] +16:08:22 [ 19] [ 3] [418] +16:08:22 [ 22] [ 3] [021] +16:08:22 [ 25] [ 2] [01] +16:08:22 [ 28] [ 9] [D00002000] +16:08:22 [ 32] [ 6] [180893] +16:08:22 [ 35] [ 32] [6213544000713666=491212011366870] +16:08:22 [ 37] [ 12] [507909270252] +16:08:22 [ 41] [ 8] [0221XKKM] +16:08:22 [ 42] [ 15] [999999 ] +16:08:22 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:08:22 [ 49] [ 3] [418] +16:08:22 [ 52] [ 16] [CAD315DAC4EE5720] +16:08:22 ============================================================================ +16:08:22 + + +waiting on router queue for slot.... +16:08:22 Sending to : +16:08:22 ============================================================================ +16:08:22 Sending to : +16:08:22 ============================================================================ +16:08:22 ============================================================================ +16:08:22 Slot Id : <179> +16:08:22 Transaction Type : REQUEST +16:08:22 Received From : +16:08:22 ============================================================================ +16:08:22 FNo. Len. Field Value +16:08:22 ============================================================================ +16:08:22 [ 1] [ 4] [0200] +16:08:22 [ 2] [ 16] [6213544000713666] +16:08:22 [ 3] [ 6] [011000] +16:08:22 [ 4] [ 12] [000020000000] +16:08:22 [ 7] [ 10] [0320090728] +16:08:22 [ 11] [ 6] [270252] +16:08:22 [ 12] [ 6] [160728] +16:08:22 [ 13] [ 4] [0320] +16:08:22 [ 14] [ 4] [4912] +16:08:22 [ 15] [ 4] [0320] +16:08:22 [ 18] [ 4] [6011] +16:08:22 [ 19] [ 3] [418] +16:08:22 [ 22] [ 3] [021] +16:08:22 [ 25] [ 2] [01] +16:08:22 [ 28] [ 9] [D00002000] +16:08:22 [ 32] [ 6] [180893] +16:08:22 [ 35] [ 32] [6213544000713666=491212011366870] +16:08:22 [ 37] [ 12] [507909270252] +16:08:22 [ 41] [ 8] [0221XKKM] +16:08:22 [ 42] [ 15] [999999 ] +16:08:22 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:08:22 [ 49] [ 3] [418] +16:08:22 [ 52] [ 16] [CAD315DAC4EE5720] +16:08:22 ============================================================================ +16:08:22 + + +waiting on router queue for slot.... +16:08:22 Sending to : +16:08:22 ============================================================================ +16:08:22 ============================================================================ +16:08:22 Slot Id : <179> +16:08:22 Transaction Type : REQUEST +16:08:22 Received From : +16:08:22 ============================================================================ +16:08:22 FNo. Len. Field Value +16:08:22 ============================================================================ +16:08:22 [ 1] [ 4] [0200] +16:08:22 [ 2] [ 16] [6213544000713666] +16:08:22 [ 3] [ 6] [011000] +16:08:22 [ 4] [ 12] [000020000000] +16:08:22 [ 7] [ 10] [0320090728] +16:08:22 [ 11] [ 6] [270252] +16:08:22 [ 12] [ 6] [160728] +16:08:22 [ 13] [ 4] [0320] +16:08:22 [ 14] [ 4] [4912] +16:08:22 [ 15] [ 4] [0320] +16:08:22 [ 18] [ 4] [6011] +16:08:22 [ 19] [ 3] [418] +16:08:22 [ 22] [ 3] [021] +16:08:22 [ 25] [ 2] [01] +16:08:22 [ 28] [ 9] [D00002000] +16:08:22 [ 32] [ 6] [180893] +16:08:22 [ 35] [ 32] [6213544000713666=491212011366870] +16:08:22 [ 37] [ 12] [507909270252] +16:08:22 [ 41] [ 8] [0221XKKM] +16:08:22 [ 42] [ 15] [999999 ] +16:08:22 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:08:22 [ 49] [ 3] [418] +16:08:22 [ 52] [ 16] [2FC5CE6437F0862B] +16:08:22 ============================================================================ +16:08:22 + + +waiting on router queue for slot.... +16:08:22 Sending to : <0> +16:08:22 ============================================================================ +16:08:22 ============================================================================ +16:08:22 Slot Id : <204> +16:08:22 Transaction Type : REQUEST +16:08:22 Received From : +16:08:22 ============================================================================ +16:08:22 FNo. Len. Field Value +16:08:22 ============================================================================ +16:08:22 [ 1] [ 4] [0800] +16:08:22 [ 7] [ 10] [0320232012] +16:08:22 [ 11] [ 6] [162012] +16:08:22 [ 37] [ 12] [57916162012] +16:08:22 [ 70] [ 3] [301] +16:08:22 ============================================================================ +16:08:22 + + +waiting on router queue for slot.... +16:08:22 Sending to : +16:08:22 ============================================================================ +16:08:22 ============================================================================ +16:08:22 Slot Id : <204> +16:08:22 Transaction Type : RESPONSE +16:08:22 Received From : +16:08:22 ============================================================================ +16:08:22 FNo. Len. Field Value +16:08:22 ============================================================================ +16:08:22 [ 1] [ 4] [0810] +16:08:22 [ 7] [ 10] [0320232012] +16:08:22 [ 11] [ 6] [162012] +16:08:22 [ 37] [ 12] [579161620120] +16:08:22 [ 39] [ 2] [00] +16:08:22 [ 70] [ 3] [810] +16:08:22 ============================================================================ +16:08:22 Calculate Source COMM Id = 6 +16:08:22 ============================================================================ +16:08:22 + + +waiting on router queue for slot.... +16:08:23 ============================================================================ +16:08:23 Slot Id : <179> +16:08:23 Transaction Type : RESPONSE +16:08:23 Received From : +16:08:23 ============================================================================ +16:08:23 FNo. Len. Field Value +16:08:23 ============================================================================ +16:08:23 [ 1] [ 4] [0210] +16:08:23 [ 2] [ 16] [6213544000713666] +16:08:23 [ 3] [ 6] [011000] +16:08:23 [ 4] [ 12] [000020000000] +16:08:23 [ 7] [ 10] [0320090728] +16:08:23 [ 11] [ 6] [270252] +16:08:23 [ 12] [ 6] [160728] +16:08:23 [ 13] [ 4] [0320] +16:08:23 [ 15] [ 4] [0320] +16:08:23 [ 18] [ 4] [6011] +16:08:23 [ 19] [ 3] [418] +16:08:23 [ 32] [ 6] [180893] +16:08:23 [ 35] [ 32] [6213544000713666=491212011366870] +16:08:23 [ 37] [ 12] [507909270252] +16:08:23 [ 38] [ 6] [716991] +16:08:23 [ 39] [ 2] [00] +16:08:23 [ 41] [ 8] [0221XKKM] +16:08:23 [ 49] [ 3] [418] +16:08:23 [ 54] [ 40] [1001418C0003632183771002418C000363218377] +16:08:23 ============================================================================ +16:08:23 Sending to : +16:08:23 ============================================================================ +16:08:23 + + +waiting on router queue for slot.... +16:08:24 ============================================================================ +16:08:24 Slot Id : <179> +16:08:24 Transaction Type : RESPONSE +16:08:24 Received From : +16:08:24 ============================================================================ +16:08:24 FNo. Len. Field Value +16:08:24 ============================================================================ +16:08:24 [ 1] [ 4] [0210] +16:08:24 [ 2] [ 16] [6213544000713666] +16:08:24 [ 3] [ 6] [011000] +16:08:24 [ 4] [ 12] [000020000000] +16:08:24 [ 7] [ 10] [0320090728] +16:08:24 [ 11] [ 6] [270252] +16:08:24 [ 12] [ 6] [160728] +16:08:24 [ 13] [ 4] [0320] +16:08:24 [ 15] [ 4] [0320] +16:08:24 [ 18] [ 4] [6011] +16:08:24 [ 19] [ 3] [418] +16:08:24 [ 32] [ 6] [180893] +16:08:24 [ 35] [ 32] [6213544000713666=491212011366870] +16:08:24 [ 37] [ 12] [507909270252] +16:08:24 [ 38] [ 6] [716991] +16:08:24 [ 39] [ 2] [00] +16:08:24 [ 41] [ 8] [0221XKKM] +16:08:24 [ 49] [ 3] [418] +16:08:24 [ 54] [ 40] [1001418C0003632183771002418C000363218377] +16:08:24 ============================================================================ +16:08:24 Calculate Source COMM Id = 2 +16:08:24 ============================================================================ +16:08:24 + + +waiting on router queue for slot.... +16:08:36 ============================================================================ +16:08:36 Slot Id : <135> +16:08:36 Transaction Type : REQUEST +16:08:36 Received From : +16:08:36 ============================================================================ +16:08:36 FNo. Len. Field Value +16:08:36 ============================================================================ +16:08:36 [ 1] [ 4] [0200] +16:08:36 [ 2] [ 16] [6688990103260202] +16:08:36 [ 3] [ 6] [010000] +16:08:36 [ 4] [ 12] [000010000000] +16:08:36 [ 7] [ 10] [0320160831] +16:08:36 [ 11] [ 6] [793744] +16:08:36 [ 12] [ 6] [160831] +16:08:36 [ 13] [ 4] [0320] +16:08:36 [ 15] [ 4] [0320] +16:08:36 [ 18] [ 4] [6011] +16:08:36 [ 22] [ 3] [900] +16:08:36 [ 25] [ 2] [02] +16:08:36 [ 28] [ 9] [D00002000] +16:08:36 [ 32] [ 6] [621354] +16:08:36 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:08:36 [ 37] [ 12] [507903499566] +16:08:36 [ 41] [ 8] [06002200] +16:08:36 [ 42] [ 15] [NATIVE ] +16:08:36 [ 43] [ 40] [Beng Market Beng LAO] +16:08:36 [ 49] [ 3] [418] +16:08:36 [ 52] [ 16] [1C532F5642919E43] +16:08:36 ============================================================================ +16:08:36 + + +waiting on router queue for slot.... +16:08:36 Sending to : +16:08:36 ============================================================================ +16:08:36 Sending to : +16:08:36 ============================================================================ +16:08:36 ============================================================================ +16:08:36 Slot Id : <135> +16:08:36 Transaction Type : REQUEST +16:08:36 Received From : +16:08:36 ============================================================================ +16:08:36 FNo. Len. Field Value +16:08:36 ============================================================================ +16:08:36 [ 1] [ 4] [0200] +16:08:36 [ 2] [ 16] [6688990103260202] +16:08:36 [ 3] [ 6] [010000] +16:08:36 [ 4] [ 12] [000010000000] +16:08:36 [ 7] [ 10] [0320160831] +16:08:36 [ 11] [ 6] [793744] +16:08:36 [ 12] [ 6] [160831] +16:08:36 [ 13] [ 4] [0320] +16:08:36 [ 15] [ 4] [0320] +16:08:36 [ 18] [ 4] [6011] +16:08:36 [ 22] [ 3] [900] +16:08:36 [ 25] [ 2] [02] +16:08:36 [ 28] [ 9] [D00002000] +16:08:36 [ 32] [ 6] [621354] +16:08:36 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:08:36 [ 37] [ 12] [507903499566] +16:08:36 [ 41] [ 8] [06002200] +16:08:36 [ 42] [ 15] [NATIVE ] +16:08:36 [ 43] [ 40] [Beng Market Beng LAO] +16:08:36 [ 49] [ 3] [418] +16:08:36 [ 52] [ 16] [1C532F5642919E43] +16:08:36 ============================================================================ +16:08:36 + + +waiting on router queue for slot.... +16:08:36 Sending to : +16:08:36 ============================================================================ +16:08:36 ============================================================================ +16:08:36 Slot Id : <135> +16:08:36 Transaction Type : REQUEST +16:08:36 Received From : +16:08:36 ============================================================================ +16:08:36 FNo. Len. Field Value +16:08:36 ============================================================================ +16:08:36 [ 1] [ 4] [0200] +16:08:36 [ 2] [ 16] [6688990103260202] +16:08:36 [ 3] [ 6] [010000] +16:08:36 [ 4] [ 12] [000010000000] +16:08:36 [ 7] [ 10] [0320160831] +16:08:36 [ 11] [ 6] [793744] +16:08:36 [ 12] [ 6] [160831] +16:08:36 [ 13] [ 4] [0320] +16:08:36 [ 15] [ 4] [0320] +16:08:36 [ 18] [ 4] [6011] +16:08:36 [ 22] [ 3] [900] +16:08:36 [ 25] [ 2] [02] +16:08:36 [ 28] [ 9] [D00002000] +16:08:36 [ 32] [ 6] [621354] +16:08:36 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:08:36 [ 37] [ 12] [507903499566] +16:08:36 [ 41] [ 8] [06002200] +16:08:36 [ 42] [ 15] [NATIVE ] +16:08:36 [ 43] [ 40] [Beng Market Beng LAO] +16:08:36 [ 49] [ 3] [418] +16:08:36 [ 52] [ 16] [D67887803A78ED44] +16:08:36 ============================================================================ +16:08:36 + + +waiting on router queue for slot.... +16:08:36 Sending to : <4> +16:08:36 ============================================================================ +16:08:37 ============================================================================ +16:08:37 Slot Id : <135> +16:08:37 Transaction Type : RESPONSE +16:08:37 Received From : +16:08:37 ============================================================================ +16:08:37 FNo. Len. Field Value +16:08:37 ============================================================================ +16:08:37 [ 1] [ 4] [0210] +16:08:37 [ 2] [ 16] [6688990103260202] +16:08:37 [ 3] [ 6] [010000] +16:08:37 [ 4] [ 12] [000010000000] +16:08:37 [ 11] [ 6] [793744] +16:08:37 [ 12] [ 6] [160831] +16:08:37 [ 15] [ 4] [0320] +16:08:37 [ 18] [ 4] [6011] +16:08:37 [ 32] [ 6] [621354] +16:08:37 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:08:37 [ 37] [ 12] [507903499566] +16:08:37 [ 38] [ 6] [481421] +16:08:37 [ 39] [ 2] [00] +16:08:37 [ 41] [ 8] [06002200] +16:08:37 [ 49] [ 3] [418] +16:08:37 [ 54] [ 20] [0002418C000002888152] +16:08:37 ============================================================================ +16:08:37 Sending to : +16:08:37 ============================================================================ +16:08:37 + + +waiting on router queue for slot.... +16:08:37 ============================================================================ +16:08:37 Slot Id : <191> +16:08:37 Transaction Type : REQUEST +16:08:37 Received From : +16:08:37 ============================================================================ +16:08:37 FNo. Len. Field Value +16:08:37 ============================================================================ +16:08:37 [ 1] [ 4] [0800] +16:08:37 [ 7] [ 10] [0320090744] +16:08:37 [ 11] [ 6] [157175] +16:08:37 [ 70] [ 3] [301] +16:08:37 ============================================================================ +16:08:37 + + +waiting on router queue for slot.... +16:08:37 Sending to : +16:08:37 ============================================================================ +16:08:37 ============================================================================ +16:08:37 Slot Id : <191> +16:08:37 Transaction Type : RESPONSE +16:08:37 Received From : +16:08:37 ============================================================================ +16:08:37 FNo. Len. Field Value +16:08:37 ============================================================================ +16:08:37 [ 1] [ 4] [0810] +16:08:37 [ 7] [ 10] [0320090744] +16:08:37 [ 11] [ 6] [157175] +16:08:37 [ 39] [ 2] [00] +16:08:37 [ 70] [ 3] [301] +16:08:37 ============================================================================ +16:08:37 Calculate Source COMM Id = 2 +16:08:37 ============================================================================ +16:08:37 + + +waiting on router queue for slot.... +16:08:38 ============================================================================ +16:08:38 Slot Id : <135> +16:08:38 Transaction Type : RESPONSE +16:08:38 Received From : +16:08:38 ============================================================================ +16:08:38 FNo. Len. Field Value +16:08:38 ============================================================================ +16:08:38 [ 1] [ 4] [0210] +16:08:38 [ 2] [ 16] [6688990103260202] +16:08:38 [ 3] [ 6] [010000] +16:08:38 [ 4] [ 12] [000010000000] +16:08:38 [ 11] [ 6] [793744] +16:08:38 [ 12] [ 6] [160831] +16:08:38 [ 15] [ 4] [0320] +16:08:38 [ 18] [ 4] [6011] +16:08:38 [ 32] [ 6] [621354] +16:08:38 [ 35] [ 37] [6688990103260202=42121231020252600000] +16:08:38 [ 37] [ 12] [507903499566] +16:08:38 [ 38] [ 6] [481421] +16:08:38 [ 39] [ 2] [00] +16:08:38 [ 41] [ 8] [06002200] +16:08:38 [ 49] [ 3] [418] +16:08:38 [ 54] [ 20] [0002418C000002888152] +16:08:38 ============================================================================ +16:08:38 Calculate Source COMM Id = 0 +16:08:38 ============================================================================ +16:08:38 + + +waiting on router queue for slot.... +16:08:48 ============================================================================ +16:08:48 Slot Id : <192> +16:08:48 Transaction Type : REQUEST +16:08:48 Received From : +16:08:48 ============================================================================ +16:08:48 FNo. Len. Field Value +16:08:48 ============================================================================ +16:08:48 [ 1] [ 4] [0800] +16:08:48 [ 7] [ 10] [0320090755] +16:08:48 [ 11] [ 6] [157176] +16:08:48 [ 70] [ 3] [301] +16:08:48 ============================================================================ +16:08:48 + + +waiting on router queue for slot.... +16:08:48 Sending to : +16:08:48 ============================================================================ +16:08:48 ============================================================================ +16:08:48 Slot Id : <192> +16:08:48 Transaction Type : RESPONSE +16:08:48 Received From : +16:08:48 ============================================================================ +16:08:48 FNo. Len. Field Value +16:08:48 ============================================================================ +16:08:48 [ 1] [ 4] [0810] +16:08:48 [ 7] [ 10] [0320090755] +16:08:48 [ 11] [ 6] [157176] +16:08:48 [ 39] [ 2] [00] +16:08:48 [ 70] [ 3] [301] +16:08:48 ============================================================================ +16:08:48 Calculate Source COMM Id = 2 +16:08:48 ============================================================================ +16:08:48 + + +waiting on router queue for slot.... +16:08:48 ============================================================================ +16:08:48 Slot Id : <152> +16:08:48 Transaction Type : REQUEST +16:08:48 Received From : +16:08:48 ============================================================================ +16:08:48 FNo. Len. Field Value +16:08:48 ============================================================================ +16:08:48 [ 1] [ 4] [0200] +16:08:48 [ 2] [ 16] [6213545000365639] +16:08:48 [ 3] [ 6] [010000] +16:08:48 [ 4] [ 12] [000050000000] +16:08:48 [ 7] [ 10] [0320160638] +16:08:48 [ 11] [ 6] [951112] +16:08:48 [ 12] [ 6] [160638] +16:08:48 [ 13] [ 4] [0320] +16:08:48 [ 15] [ 4] [0320] +16:08:48 [ 18] [ 4] [6011] +16:08:48 [ 19] [ 3] [418] +16:08:48 [ 22] [ 3] [021] +16:08:48 [ 25] [ 2] [01] +16:08:48 [ 28] [ 9] [D00002000] +16:08:48 [ 32] [ 6] [668899] +16:08:48 [ 35] [ 32] [6213545000365639=491212016563740] +16:08:48 [ 37] [ 12] [507902362980] +16:08:48 [ 41] [ 8] [03016003] +16:08:48 [ 42] [ 15] [APT ] +16:08:48 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:08:48 [ 49] [ 3] [418] +16:08:48 [ 52] [ 16] [1AF4547F3609D173] +16:08:48 ============================================================================ +16:08:48 + + +waiting on router queue for slot.... +16:08:48 Sending to : +16:08:48 ============================================================================ +16:08:48 Sending to : +16:08:48 ============================================================================ +16:08:49 ============================================================================ +16:08:49 Slot Id : <152> +16:08:49 Transaction Type : REQUEST +16:08:49 Received From : +16:08:49 ============================================================================ +16:08:49 FNo. Len. Field Value +16:08:49 ============================================================================ +16:08:49 [ 1] [ 4] [0200] +16:08:49 [ 2] [ 16] [6213545000365639] +16:08:49 [ 3] [ 6] [010000] +16:08:49 [ 4] [ 12] [000050000000] +16:08:49 [ 7] [ 10] [0320160638] +16:08:49 [ 11] [ 6] [951112] +16:08:49 [ 12] [ 6] [160638] +16:08:49 [ 13] [ 4] [0320] +16:08:49 [ 15] [ 4] [0320] +16:08:49 [ 18] [ 4] [6011] +16:08:49 [ 19] [ 3] [418] +16:08:49 [ 22] [ 3] [021] +16:08:49 [ 25] [ 2] [01] +16:08:49 [ 28] [ 9] [D00002000] +16:08:49 [ 32] [ 6] [668899] +16:08:49 [ 35] [ 32] [6213545000365639=491212016563740] +16:08:49 [ 37] [ 12] [507902362980] +16:08:49 [ 41] [ 8] [03016003] +16:08:49 [ 42] [ 15] [APT ] +16:08:49 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:08:49 [ 49] [ 3] [418] +16:08:49 [ 52] [ 16] [1AF4547F3609D173] +16:08:49 ============================================================================ +16:08:49 + + +waiting on router queue for slot.... +16:08:49 Sending to : +16:08:49 ============================================================================ +16:08:49 ============================================================================ +16:08:49 Slot Id : <152> +16:08:49 Transaction Type : REQUEST +16:08:49 Received From : +16:08:49 ============================================================================ +16:08:49 FNo. Len. Field Value +16:08:49 ============================================================================ +16:08:49 [ 1] [ 4] [0200] +16:08:49 [ 2] [ 16] [6213545000365639] +16:08:49 [ 3] [ 6] [010000] +16:08:49 [ 4] [ 12] [000050000000] +16:08:49 [ 7] [ 10] [0320160638] +16:08:49 [ 11] [ 6] [951112] +16:08:49 [ 12] [ 6] [160638] +16:08:49 [ 13] [ 4] [0320] +16:08:49 [ 15] [ 4] [0320] +16:08:49 [ 18] [ 4] [6011] +16:08:49 [ 19] [ 3] [418] +16:08:49 [ 22] [ 3] [021] +16:08:49 [ 25] [ 2] [01] +16:08:49 [ 28] [ 9] [D00002000] +16:08:49 [ 32] [ 6] [668899] +16:08:49 [ 35] [ 32] [6213545000365639=491212016563740] +16:08:49 [ 37] [ 12] [507902362980] +16:08:49 [ 41] [ 8] [03016003] +16:08:49 [ 42] [ 15] [APT ] +16:08:49 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:08:49 [ 49] [ 3] [418] +16:08:49 [ 52] [ 16] [26730DA7489BB806] +16:08:49 ============================================================================ +16:08:49 + + +waiting on router queue for slot.... +16:08:49 Sending to : <0> +16:08:49 ============================================================================ +16:08:49 ============================================================================ +16:08:49 Slot Id : <190> +16:08:49 Transaction Type : REQUEST +16:08:49 Received From : +16:08:49 ============================================================================ +16:08:49 FNo. Len. Field Value +16:08:49 ============================================================================ +16:08:49 [ 1] [ 4] [0200] +16:08:49 [ 2] [ 16] [6213544000698214] +16:08:49 [ 3] [ 6] [010000] +16:08:49 [ 4] [ 12] [000010000000] +16:08:49 [ 7] [ 10] [0320090756] +16:08:49 [ 11] [ 6] [270256] +16:08:49 [ 12] [ 6] [160756] +16:08:49 [ 13] [ 4] [0320] +16:08:49 [ 14] [ 4] [4912] +16:08:49 [ 15] [ 4] [0320] +16:08:49 [ 18] [ 4] [6011] +16:08:49 [ 19] [ 3] [418] +16:08:49 [ 22] [ 3] [021] +16:08:49 [ 25] [ 2] [01] +16:08:49 [ 28] [ 9] [D00002000] +16:08:49 [ 32] [ 6] [180893] +16:08:49 [ 35] [ 32] [6213544000698214=491212019821664] +16:08:49 [ 37] [ 12] [507909270256] +16:08:49 [ 41] [ 8] [0528LPBP] +16:08:49 [ 42] [ 15] [999999 ] +16:08:49 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:08:49 [ 49] [ 3] [418] +16:08:49 [ 52] [ 16] [7D638849728E56B5] +16:08:49 ============================================================================ +16:08:49 + + +waiting on router queue for slot.... +16:08:49 Sending to : +16:08:49 ============================================================================ +16:08:49 Sending to : +16:08:49 ============================================================================ +16:08:49 ============================================================================ +16:08:49 Slot Id : <190> +16:08:49 Transaction Type : REQUEST +16:08:49 Received From : +16:08:49 ============================================================================ +16:08:49 FNo. Len. Field Value +16:08:49 ============================================================================ +16:08:49 [ 1] [ 4] [0200] +16:08:49 [ 2] [ 16] [6213544000698214] +16:08:49 [ 3] [ 6] [010000] +16:08:49 [ 4] [ 12] [000010000000] +16:08:49 [ 7] [ 10] [0320090756] +16:08:49 [ 11] [ 6] [270256] +16:08:49 [ 12] [ 6] [160756] +16:08:49 [ 13] [ 4] [0320] +16:08:49 [ 14] [ 4] [4912] +16:08:49 [ 15] [ 4] [0320] +16:08:49 [ 18] [ 4] [6011] +16:08:49 [ 19] [ 3] [418] +16:08:49 [ 22] [ 3] [021] +16:08:49 [ 25] [ 2] [01] +16:08:49 [ 28] [ 9] [D00002000] +16:08:49 [ 32] [ 6] [180893] +16:08:49 [ 35] [ 32] [6213544000698214=491212019821664] +16:08:49 [ 37] [ 12] [507909270256] +16:08:49 [ 41] [ 8] [0528LPBP] +16:08:49 [ 42] [ 15] [999999 ] +16:08:49 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:08:49 [ 49] [ 3] [418] +16:08:49 [ 52] [ 16] [7D638849728E56B5] +16:08:49 ============================================================================ +16:08:49 + + +waiting on router queue for slot.... +16:08:49 Sending to : +16:08:49 ============================================================================ +16:08:49 ============================================================================ +16:08:49 Slot Id : <152> +16:08:49 Transaction Type : RESPONSE +16:08:49 Received From : +16:08:49 ============================================================================ +16:08:49 FNo. Len. Field Value +16:08:49 ============================================================================ +16:08:49 [ 1] [ 4] [0210] +16:08:49 [ 2] [ 16] [6213545000365639] +16:08:49 [ 3] [ 6] [010000] +16:08:49 [ 4] [ 12] [000050000000] +16:08:49 [ 7] [ 10] [0320160638] +16:08:49 [ 11] [ 6] [951112] +16:08:49 [ 12] [ 6] [160638] +16:08:49 [ 13] [ 4] [0320] +16:08:49 [ 15] [ 4] [0320] +16:08:49 [ 18] [ 4] [6011] +16:08:49 [ 19] [ 3] [418] +16:08:49 [ 32] [ 6] [668899] +16:08:49 [ 35] [ 32] [6213545000365639=491212016563740] +16:08:49 [ 37] [ 12] [507902362980] +16:08:49 [ 38] [ 6] [389278] +16:08:49 [ 39] [ 2] [00] +16:08:49 [ 41] [ 8] [03016003] +16:08:49 [ 49] [ 3] [418] +16:08:49 [ 54] [ 40] [0001418C0002283186970002418C000228318697] +16:08:49 ============================================================================ +16:08:49 Sending to : +16:08:49 ============================================================================ +16:08:49 + + +waiting on router queue for slot.... +16:08:49 ============================================================================ +16:08:49 Slot Id : <190> +16:08:49 Transaction Type : REQUEST +16:08:49 Received From : +16:08:49 ============================================================================ +16:08:49 FNo. Len. Field Value +16:08:49 ============================================================================ +16:08:49 [ 1] [ 4] [0200] +16:08:49 [ 2] [ 16] [6213544000698214] +16:08:49 [ 3] [ 6] [010000] +16:08:49 [ 4] [ 12] [000010000000] +16:08:49 [ 7] [ 10] [0320090756] +16:08:49 [ 11] [ 6] [270256] +16:08:49 [ 12] [ 6] [160756] +16:08:49 [ 13] [ 4] [0320] +16:08:49 [ 14] [ 4] [4912] +16:08:49 [ 15] [ 4] [0320] +16:08:49 [ 18] [ 4] [6011] +16:08:49 [ 19] [ 3] [418] +16:08:49 [ 22] [ 3] [021] +16:08:49 [ 25] [ 2] [01] +16:08:49 [ 28] [ 9] [D00002000] +16:08:49 [ 32] [ 6] [180893] +16:08:49 [ 35] [ 32] [6213544000698214=491212019821664] +16:08:49 [ 37] [ 12] [507909270256] +16:08:49 [ 41] [ 8] [0528LPBP] +16:08:49 [ 42] [ 15] [999999 ] +16:08:49 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:08:49 [ 49] [ 3] [418] +16:08:49 [ 52] [ 16] [9DE149464778B61B] +16:08:49 ============================================================================ +16:08:49 + + +waiting on router queue for slot.... +16:08:49 Sending to : <0> +16:08:49 ============================================================================ +16:08:50 ============================================================================ +16:08:50 Slot Id : <190> +16:08:50 Transaction Type : RESPONSE +16:08:50 Received From : +16:08:50 ============================================================================ +16:08:50 FNo. Len. Field Value +16:08:50 ============================================================================ +16:08:50 [ 1] [ 4] [0210] +16:08:50 [ 2] [ 16] [6213544000698214] +16:08:50 [ 3] [ 6] [010000] +16:08:50 [ 4] [ 12] [000010000000] +16:08:50 [ 7] [ 10] [0320090756] +16:08:50 [ 11] [ 6] [270256] +16:08:50 [ 12] [ 6] [160756] +16:08:50 [ 13] [ 4] [0320] +16:08:50 [ 15] [ 4] [0320] +16:08:50 [ 18] [ 4] [6011] +16:08:50 [ 19] [ 3] [418] +16:08:50 [ 32] [ 6] [180893] +16:08:50 [ 35] [ 32] [6213544000698214=491212019821664] +16:08:50 [ 37] [ 12] [507909270256] +16:08:50 [ 38] [ 6] [001754] +16:08:50 [ 39] [ 2] [00] +16:08:50 [ 41] [ 8] [0528LPBP] +16:08:50 [ 49] [ 3] [418] +16:08:50 [ 54] [ 40] [0001418C0000696688750002418C000069668875] +16:08:50 ============================================================================ +16:08:50 Sending to : +16:08:50 ============================================================================ +16:08:50 + + +waiting on router queue for slot.... +16:08:51 ============================================================================ +16:08:51 Slot Id : <152> +16:08:51 Transaction Type : RESPONSE +16:08:51 Received From : +16:08:51 ============================================================================ +16:08:51 FNo. Len. Field Value +16:08:51 ============================================================================ +16:08:51 [ 1] [ 4] [0210] +16:08:51 [ 2] [ 16] [6213545000365639] +16:08:51 [ 3] [ 6] [010000] +16:08:51 [ 4] [ 12] [000050000000] +16:08:51 [ 7] [ 10] [0320160638] +16:08:51 [ 11] [ 6] [951112] +16:08:51 [ 12] [ 6] [160638] +16:08:51 [ 13] [ 4] [0320] +16:08:51 [ 15] [ 4] [0320] +16:08:51 [ 18] [ 4] [6011] +16:08:51 [ 19] [ 3] [418] +16:08:51 [ 32] [ 6] [668899] +16:08:51 [ 35] [ 32] [6213545000365639=491212016563740] +16:08:51 [ 37] [ 12] [507902362980] +16:08:51 [ 38] [ 6] [389278] +16:08:51 [ 39] [ 2] [00] +16:08:51 [ 41] [ 8] [03016003] +16:08:51 [ 49] [ 3] [418] +16:08:51 [ 54] [ 40] [0001418C0002283186970002418C000228318697] +16:08:51 ============================================================================ +16:08:51 Calculate Source COMM Id = 4 +16:08:51 ============================================================================ +16:08:51 + + +waiting on router queue for slot.... +16:08:52 ============================================================================ +16:08:52 Slot Id : <190> +16:08:52 Transaction Type : RESPONSE +16:08:52 Received From : +16:08:52 ============================================================================ +16:08:52 FNo. Len. Field Value +16:08:52 ============================================================================ +16:08:52 [ 1] [ 4] [0210] +16:08:52 [ 2] [ 16] [6213544000698214] +16:08:52 [ 3] [ 6] [010000] +16:08:52 [ 4] [ 12] [000010000000] +16:08:52 [ 7] [ 10] [0320090756] +16:08:52 [ 11] [ 6] [270256] +16:08:52 [ 12] [ 6] [160756] +16:08:52 [ 13] [ 4] [0320] +16:08:52 [ 15] [ 4] [0320] +16:08:52 [ 18] [ 4] [6011] +16:08:52 [ 19] [ 3] [418] +16:08:52 [ 32] [ 6] [180893] +16:08:52 [ 35] [ 32] [6213544000698214=491212019821664] +16:08:52 [ 37] [ 12] [507909270256] +16:08:52 [ 38] [ 6] [001754] +16:08:52 [ 39] [ 2] [00] +16:08:52 [ 41] [ 8] [0528LPBP] +16:08:52 [ 49] [ 3] [418] +16:08:52 [ 54] [ 40] [0001418C0000696688750002418C000069668875] +16:08:52 ============================================================================ +16:08:52 Calculate Source COMM Id = 2 +16:08:52 ============================================================================ +16:08:52 + + +waiting on router queue for slot.... +16:08:52 ============================================================================ +16:08:52 Slot Id : <198> +16:08:52 Transaction Type : REQUEST +16:08:52 Received From : +16:08:52 ============================================================================ +16:08:52 FNo. Len. Field Value +16:08:52 ============================================================================ +16:08:52 [ 1] [ 4] [0200] +16:08:52 [ 2] [ 16] [6688990603113109] +16:08:52 [ 3] [ 6] [010000] +16:08:52 [ 4] [ 12] [000100000000] +16:08:52 [ 7] [ 10] [0320160847] +16:08:52 [ 11] [ 6] [793800] +16:08:52 [ 12] [ 6] [160847] +16:08:52 [ 13] [ 4] [0320] +16:08:52 [ 15] [ 4] [0320] +16:08:52 [ 18] [ 4] [6011] +16:08:52 [ 22] [ 3] [900] +16:08:52 [ 25] [ 2] [02] +16:08:52 [ 28] [ 9] [D00002000] +16:08:52 [ 32] [ 6] [621354] +16:08:52 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:08:52 [ 37] [ 12] [507903345182] +16:08:52 [ 41] [ 8] [13001400] +16:08:52 [ 42] [ 15] [NATIVE ] +16:08:52 [ 43] [ 40] [Kham Unit Kham LAO] +16:08:52 [ 49] [ 3] [418] +16:08:52 [ 52] [ 16] [DCEDFC0BFC33D901] +16:08:52 ============================================================================ +16:08:52 + + +waiting on router queue for slot.... +16:08:52 Sending to : +16:08:52 ============================================================================ +16:08:52 Sending to : +16:08:52 ============================================================================ +16:08:53 ============================================================================ +16:08:53 Slot Id : <198> +16:08:53 Transaction Type : REQUEST +16:08:53 Received From : +16:08:53 ============================================================================ +16:08:53 FNo. Len. Field Value +16:08:53 ============================================================================ +16:08:53 [ 1] [ 4] [0200] +16:08:53 [ 2] [ 16] [6688990603113109] +16:08:53 [ 3] [ 6] [010000] +16:08:53 [ 4] [ 12] [000100000000] +16:08:53 [ 7] [ 10] [0320160847] +16:08:53 [ 11] [ 6] [793800] +16:08:53 [ 12] [ 6] [160847] +16:08:53 [ 13] [ 4] [0320] +16:08:53 [ 15] [ 4] [0320] +16:08:53 [ 18] [ 4] [6011] +16:08:53 [ 22] [ 3] [900] +16:08:53 [ 25] [ 2] [02] +16:08:53 [ 28] [ 9] [D00002000] +16:08:53 [ 32] [ 6] [621354] +16:08:53 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:08:53 [ 37] [ 12] [507903345182] +16:08:53 [ 41] [ 8] [13001400] +16:08:53 [ 42] [ 15] [NATIVE ] +16:08:53 [ 43] [ 40] [Kham Unit Kham LAO] +16:08:53 [ 49] [ 3] [418] +16:08:53 [ 52] [ 16] [DCEDFC0BFC33D901] +16:08:53 ============================================================================ +16:08:53 + + +waiting on router queue for slot.... +16:08:53 Sending to : +16:08:53 ============================================================================ +16:08:53 ============================================================================ +16:08:53 Slot Id : <198> +16:08:53 Transaction Type : REQUEST +16:08:53 Received From : +16:08:53 ============================================================================ +16:08:53 FNo. Len. Field Value +16:08:53 ============================================================================ +16:08:53 [ 1] [ 4] [0200] +16:08:53 [ 2] [ 16] [6688990603113109] +16:08:53 [ 3] [ 6] [010000] +16:08:53 [ 4] [ 12] [000100000000] +16:08:53 [ 7] [ 10] [0320160847] +16:08:53 [ 11] [ 6] [793800] +16:08:53 [ 12] [ 6] [160847] +16:08:53 [ 13] [ 4] [0320] +16:08:53 [ 15] [ 4] [0320] +16:08:53 [ 18] [ 4] [6011] +16:08:53 [ 22] [ 3] [900] +16:08:53 [ 25] [ 2] [02] +16:08:53 [ 28] [ 9] [D00002000] +16:08:53 [ 32] [ 6] [621354] +16:08:53 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:08:53 [ 37] [ 12] [507903345182] +16:08:53 [ 41] [ 8] [13001400] +16:08:53 [ 42] [ 15] [NATIVE ] +16:08:53 [ 43] [ 40] [Kham Unit Kham LAO] +16:08:53 [ 49] [ 3] [418] +16:08:53 [ 52] [ 16] [412F8B7442D5D4CF] +16:08:53 ============================================================================ +16:08:53 + + +waiting on router queue for slot.... +16:08:53 Sending to : <4> +16:08:53 ============================================================================ +16:08:53 ============================================================================ +16:08:53 Slot Id : <196> +16:08:53 Transaction Type : REQUEST +16:08:53 Received From : +16:08:53 ============================================================================ +16:08:53 FNo. Len. Field Value +16:08:53 ============================================================================ +16:08:53 [ 1] [ 4] [0800] +16:08:53 [ 2] [ 5] [02531] +16:08:53 [ 3] [ 6] [579168] +16:08:53 [ 7] [ 10] [0320090853] +16:08:53 [ 11] [ 6] [807349] +16:08:53 [ 15] [ 10] [0320090853] +16:08:53 [ 37] [ 11] [57916807349] +16:08:53 [ 70] [ 3] [001] +16:08:53 ============================================================================ +16:08:53 + + +waiting on router queue for slot.... +16:08:53 ============================================================================ +16:08:53 Slot Id : <196> +16:08:53 Transaction Type : RESPONSE +16:08:53 Received From : +16:08:53 ============================================================================ +16:08:53 FNo. Len. Field Value +16:08:53 ============================================================================ +16:08:53 [ 1] [ 4] [0810] +16:08:53 [ 7] [ 10] [0320090853] +16:08:53 [ 11] [ 6] [807349] +16:08:53 [ 15] [ 4] [0320] +16:08:53 [ 37] [ 12] [57916807349] +16:08:53 [ 39] [ 2] [00] +16:08:53 [ 70] [ 3] [001] +16:08:53 ============================================================================ +16:08:53 Sending to : +16:08:53 ============================================================================ +16:08:53 + + +waiting on router queue for slot.... +16:08:54 ============================================================================ +16:08:54 Slot Id : <181> +16:08:54 Transaction Type : REQUEST +16:08:54 Received From : +16:08:54 ============================================================================ +16:08:54 FNo. Len. Field Value +16:08:54 ============================================================================ +16:08:54 [ 1] [ 4] [0200] +16:08:54 [ 2] [ 16] [1808931700023938] +16:08:54 [ 3] [ 6] [301000] +16:08:54 [ 4] [ 12] [000000000000] +16:08:54 [ 7] [ 10] [0320160850] +16:08:54 [ 11] [ 6] [793809] +16:08:54 [ 12] [ 6] [160850] +16:08:54 [ 13] [ 4] [0320] +16:08:54 [ 15] [ 4] [0320] +16:08:54 [ 18] [ 4] [6011] +16:08:54 [ 22] [ 3] [900] +16:08:54 [ 25] [ 2] [02] +16:08:54 [ 28] [ 9] [D00000000] +16:08:54 [ 32] [ 6] [621354] +16:08:54 [ 35] [ 27] [1808931700023938=1803500156] +16:08:54 [ 37] [ 12] [507902546850] +16:08:54 [ 41] [ 8] [05003700] +16:08:54 [ 42] [ 15] [NATIVE ] +16:08:54 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +16:08:54 [ 49] [ 3] [418] +16:08:54 [ 52] [ 16] [8C5FB9D60EE44A82] +16:08:54 ============================================================================ +16:08:54 + + +waiting on router queue for slot.... +16:08:54 Sending to : +16:08:54 ============================================================================ +16:08:54 Sending to : +16:08:54 ============================================================================ +16:08:55 ============================================================================ +16:08:55 Slot Id : <198> +16:08:55 Transaction Type : RESPONSE +16:08:55 Received From : +16:08:55 ============================================================================ +16:08:55 FNo. Len. Field Value +16:08:55 ============================================================================ +16:08:55 [ 1] [ 4] [0210] +16:08:55 [ 2] [ 16] [6688990603113109] +16:08:55 [ 3] [ 6] [010000] +16:08:55 [ 4] [ 12] [000100000000] +16:08:55 [ 11] [ 6] [793800] +16:08:55 [ 12] [ 6] [160847] +16:08:55 [ 15] [ 4] [0320] +16:08:55 [ 18] [ 4] [6011] +16:08:55 [ 32] [ 6] [621354] +16:08:55 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:08:55 [ 37] [ 12] [507903345182] +16:08:55 [ 38] [ 6] [078071] +16:08:55 [ 39] [ 2] [00] +16:08:55 [ 41] [ 8] [13001400] +16:08:55 [ 49] [ 3] [418] +16:08:55 [ 54] [ 20] [0002418C000327430538] +16:08:55 ============================================================================ +16:08:55 Sending to : +16:08:55 ============================================================================ +16:08:55 + + +waiting on router queue for slot.... +16:08:55 ============================================================================ +16:08:55 Slot Id : <181> +16:08:55 Transaction Type : REQUEST +16:08:55 Received From : +16:08:55 ============================================================================ +16:08:55 FNo. Len. Field Value +16:08:55 ============================================================================ +16:08:55 [ 1] [ 4] [0200] +16:08:55 [ 2] [ 16] [1808931700023938] +16:08:55 [ 3] [ 6] [301000] +16:08:55 [ 4] [ 12] [000000000000] +16:08:55 [ 7] [ 10] [0320160850] +16:08:55 [ 11] [ 6] [793809] +16:08:55 [ 12] [ 6] [160850] +16:08:55 [ 13] [ 4] [0320] +16:08:55 [ 15] [ 4] [0320] +16:08:55 [ 18] [ 4] [6011] +16:08:55 [ 22] [ 3] [900] +16:08:55 [ 25] [ 2] [02] +16:08:55 [ 28] [ 9] [D00000000] +16:08:55 [ 32] [ 6] [621354] +16:08:55 [ 35] [ 27] [1808931700023938=1803500156] +16:08:55 [ 37] [ 12] [507902546850] +16:08:55 [ 41] [ 8] [05003700] +16:08:55 [ 42] [ 15] [NATIVE ] +16:08:55 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +16:08:55 [ 49] [ 3] [418] +16:08:55 [ 52] [ 16] [8C5FB9D60EE44A82] +16:08:55 ============================================================================ +16:08:55 + + +waiting on router queue for slot.... +16:08:55 Sending to : +16:08:55 ============================================================================ +16:08:55 ============================================================================ +16:08:55 Slot Id : <181> +16:08:55 Transaction Type : REQUEST +16:08:55 Received From : +16:08:55 ============================================================================ +16:08:55 FNo. Len. Field Value +16:08:55 ============================================================================ +16:08:55 [ 1] [ 4] [0200] +16:08:55 [ 2] [ 16] [1808931700023938] +16:08:55 [ 3] [ 6] [301000] +16:08:55 [ 4] [ 12] [000000000000] +16:08:55 [ 7] [ 10] [0320160850] +16:08:55 [ 11] [ 6] [793809] +16:08:55 [ 12] [ 6] [160850] +16:08:55 [ 13] [ 4] [0320] +16:08:55 [ 15] [ 4] [0320] +16:08:55 [ 18] [ 4] [6011] +16:08:55 [ 22] [ 3] [900] +16:08:55 [ 25] [ 2] [02] +16:08:55 [ 28] [ 9] [D00000000] +16:08:55 [ 32] [ 6] [621354] +16:08:55 [ 35] [ 27] [1808931700023938=1803500156] +16:08:55 [ 37] [ 12] [507902546850] +16:08:55 [ 41] [ 8] [05003700] +16:08:55 [ 42] [ 15] [NATIVE ] +16:08:55 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +16:08:55 [ 49] [ 3] [418] +16:08:55 [ 52] [ 16] [A4BD304181EC64AC] +16:08:55 ============================================================================ +16:08:55 + + +waiting on router queue for slot.... +16:08:55 Sending to : <2> +16:08:55 ============================================================================ +16:08:56 ============================================================================ +16:08:56 Slot Id : <155> +16:08:56 Transaction Type : REQUEST +16:08:56 Received From : +16:08:56 ============================================================================ +16:08:56 FNo. Len. Field Value +16:08:56 ============================================================================ +16:08:56 [ 1] [ 4] [0200] +16:08:56 [ 2] [ 16] [6213545000512172] +16:08:56 [ 3] [ 6] [010000] +16:08:56 [ 4] [ 12] [000010000000] +16:08:56 [ 7] [ 10] [0320161643] +16:08:56 [ 11] [ 6] [379644] +16:08:56 [ 12] [ 6] [161643] +16:08:56 [ 13] [ 4] [0320] +16:08:56 [ 14] [ 4] [4912] +16:08:56 [ 15] [ 4] [0320] +16:08:56 [ 18] [ 4] [6011] +16:08:56 [ 22] [ 3] [900] +16:08:56 [ 25] [ 2] [02] +16:08:56 [ 28] [ 9] [D00002000] +16:08:56 [ 32] [ 6] [220699] +16:08:56 [ 35] [ 32] [6213545000512172=491212011217988] +16:08:56 [ 37] [ 12] [507900165770] +16:08:56 [ 41] [ 8] [06000100] +16:08:56 [ 42] [ 15] [APTRA ] +16:08:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:08:56 [ 49] [ 3] [418] +16:08:56 [ 52] [ 16] [04B42E55CC97E250] +16:08:56 ============================================================================ +16:08:56 + + +waiting on router queue for slot.... +16:08:56 Sending to : +16:08:56 ============================================================================ +16:08:56 Sending to : +16:08:56 ============================================================================ +16:08:56 ============================================================================ +16:08:56 Slot Id : <198> +16:08:56 Transaction Type : RESPONSE +16:08:56 Received From : +16:08:56 ============================================================================ +16:08:56 FNo. Len. Field Value +16:08:56 ============================================================================ +16:08:56 [ 1] [ 4] [0210] +16:08:56 [ 2] [ 16] [6688990603113109] +16:08:56 [ 3] [ 6] [010000] +16:08:56 [ 4] [ 12] [000100000000] +16:08:56 [ 11] [ 6] [793800] +16:08:56 [ 12] [ 6] [160847] +16:08:56 [ 15] [ 4] [0320] +16:08:56 [ 18] [ 4] [6011] +16:08:56 [ 32] [ 6] [621354] +16:08:56 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:08:56 [ 37] [ 12] [507903345182] +16:08:56 [ 38] [ 6] [078071] +16:08:56 [ 39] [ 2] [00] +16:08:56 [ 41] [ 8] [13001400] +16:08:56 [ 49] [ 3] [418] +16:08:56 [ 54] [ 20] [0002418C000327430538] +16:08:56 ============================================================================ +16:08:56 Calculate Source COMM Id = 0 +16:08:56 ============================================================================ +16:08:56 + + +waiting on router queue for slot.... +16:08:56 ============================================================================ +16:08:56 Slot Id : <155> +16:08:56 Transaction Type : REQUEST +16:08:56 Received From : +16:08:56 ============================================================================ +16:08:56 FNo. Len. Field Value +16:08:56 ============================================================================ +16:08:56 [ 1] [ 4] [0200] +16:08:56 [ 2] [ 16] [6213545000512172] +16:08:56 [ 3] [ 6] [010000] +16:08:56 [ 4] [ 12] [000010000000] +16:08:56 [ 7] [ 10] [0320161643] +16:08:56 [ 11] [ 6] [379644] +16:08:56 [ 12] [ 6] [161643] +16:08:56 [ 13] [ 4] [0320] +16:08:56 [ 14] [ 4] [4912] +16:08:56 [ 15] [ 4] [0320] +16:08:56 [ 18] [ 4] [6011] +16:08:56 [ 22] [ 3] [900] +16:08:56 [ 25] [ 2] [02] +16:08:56 [ 28] [ 9] [D00002000] +16:08:56 [ 32] [ 6] [220699] +16:08:56 [ 35] [ 32] [6213545000512172=491212011217988] +16:08:56 [ 37] [ 12] [507900165770] +16:08:56 [ 41] [ 8] [06000100] +16:08:56 [ 42] [ 15] [APTRA ] +16:08:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:08:56 [ 49] [ 3] [418] +16:08:56 [ 52] [ 16] [04B42E55CC97E250] +16:08:56 ============================================================================ +16:08:56 + + +waiting on router queue for slot.... +16:08:56 Sending to : +16:08:56 ============================================================================ +16:08:56 ============================================================================ +16:08:56 Slot Id : <155> +16:08:56 Transaction Type : REQUEST +16:08:56 Received From : +16:08:56 ============================================================================ +16:08:56 FNo. Len. Field Value +16:08:56 ============================================================================ +16:08:56 [ 1] [ 4] [0200] +16:08:56 [ 2] [ 16] [6213545000512172] +16:08:56 [ 3] [ 6] [010000] +16:08:56 [ 4] [ 12] [000010000000] +16:08:56 [ 7] [ 10] [0320161643] +16:08:56 [ 11] [ 6] [379644] +16:08:56 [ 12] [ 6] [161643] +16:08:56 [ 13] [ 4] [0320] +16:08:56 [ 14] [ 4] [4912] +16:08:56 [ 15] [ 4] [0320] +16:08:56 [ 18] [ 4] [6011] +16:08:56 [ 22] [ 3] [900] +16:08:56 [ 25] [ 2] [02] +16:08:56 [ 28] [ 9] [D00002000] +16:08:56 [ 32] [ 6] [220699] +16:08:56 [ 35] [ 32] [6213545000512172=491212011217988] +16:08:56 [ 37] [ 12] [507900165770] +16:08:56 [ 41] [ 8] [06000100] +16:08:56 [ 42] [ 15] [APTRA ] +16:08:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:08:56 [ 49] [ 3] [418] +16:08:56 [ 52] [ 16] [AE67742B4C3DCD9F] +16:08:56 ============================================================================ +16:08:56 + + +waiting on router queue for slot.... +16:08:56 Sending to : <0> +16:08:56 ============================================================================ +16:08:57 ============================================================================ +16:08:57 Slot Id : <155> +16:08:57 Transaction Type : RESPONSE +16:08:57 Received From : +16:08:57 ============================================================================ +16:08:57 FNo. Len. Field Value +16:08:57 ============================================================================ +16:08:57 [ 1] [ 4] [0210] +16:08:57 [ 2] [ 16] [6213545000512172] +16:08:57 [ 3] [ 6] [010000] +16:08:57 [ 4] [ 12] [000010000000] +16:08:57 [ 7] [ 10] [0320161643] +16:08:57 [ 11] [ 6] [379644] +16:08:57 [ 12] [ 6] [161643] +16:08:57 [ 13] [ 4] [0320] +16:08:57 [ 15] [ 4] [0320] +16:08:57 [ 18] [ 4] [6011] +16:08:57 [ 32] [ 6] [220699] +16:08:57 [ 35] [ 32] [6213545000512172=491212011217988] +16:08:57 [ 37] [ 12] [507900165770] +16:08:57 [ 38] [ 6] [849326] +16:08:57 [ 39] [ 2] [00] +16:08:57 [ 41] [ 8] [06000100] +16:08:57 [ 49] [ 3] [418] +16:08:57 [ 54] [ 40] [0001418C0001256971350002418C000125697135] +16:08:57 ============================================================================ +16:08:57 Sending to : +16:08:57 ============================================================================ +16:08:57 + + +waiting on router queue for slot.... +16:08:58 ============================================================================ +16:08:58 Slot Id : <181> +16:08:58 Transaction Type : RESPONSE +16:08:58 Received From : +16:08:58 ============================================================================ +16:08:58 FNo. Len. Field Value +16:08:58 ============================================================================ +16:08:58 [ 1] [ 4] [0210] +16:08:58 [ 2] [ 16] [1808931700023938] +16:08:58 [ 3] [ 6] [301000] +16:08:58 [ 7] [ 10] [0320160850] +16:08:58 [ 11] [ 6] [793809] +16:08:58 [ 12] [ 6] [160850] +16:08:58 [ 13] [ 4] [0320] +16:08:58 [ 14] [ 4] [1803] +16:08:58 [ 19] [ 3] [418] +16:08:58 [ 32] [ 6] [621354] +16:08:58 [ 37] [ 12] [507902546850] +16:08:58 [ 38] [ 6] [793809] +16:08:58 [ 39] [ 2] [00] +16:08:58 [ 41] [ 8] [05003700] +16:08:58 [ 49] [ 3] [418] +16:08:58 [ 52] [ 16] [A4BD304181EC64AC] +16:08:58 [ 54] [ 20] [1002418C000023311300] +16:08:58 ============================================================================ +16:08:58 Sending to : +16:08:58 ============================================================================ +16:08:58 + + +waiting on router queue for slot.... +16:08:59 ============================================================================ +16:08:59 Slot Id : <155> +16:08:59 Transaction Type : RESPONSE +16:08:59 Received From : +16:08:59 ============================================================================ +16:08:59 FNo. Len. Field Value +16:08:59 ============================================================================ +16:08:59 [ 1] [ 4] [0210] +16:08:59 [ 2] [ 16] [6213545000512172] +16:08:59 [ 3] [ 6] [010000] +16:08:59 [ 4] [ 12] [000010000000] +16:08:59 [ 7] [ 10] [0320161643] +16:08:59 [ 11] [ 6] [379644] +16:08:59 [ 12] [ 6] [161643] +16:08:59 [ 13] [ 4] [0320] +16:08:59 [ 15] [ 4] [0320] +16:08:59 [ 18] [ 4] [6011] +16:08:59 [ 32] [ 6] [220699] +16:08:59 [ 35] [ 32] [6213545000512172=491212011217988] +16:08:59 [ 37] [ 12] [507900165770] +16:08:59 [ 38] [ 6] [849326] +16:08:59 [ 39] [ 2] [00] +16:08:59 [ 41] [ 8] [06000100] +16:08:59 [ 49] [ 3] [418] +16:08:59 [ 54] [ 40] [0001418C0001256971350002418C000125697135] +16:08:59 ============================================================================ +16:08:59 Calculate Source COMM Id = 1 +16:08:59 ============================================================================ +16:08:59 + + +waiting on router queue for slot.... +16:09:00 ============================================================================ +16:09:00 Slot Id : <181> +16:09:00 Transaction Type : RESPONSE +16:09:00 Received From : +16:09:00 ============================================================================ +16:09:00 FNo. Len. Field Value +16:09:00 ============================================================================ +16:09:00 [ 1] [ 4] [0210] +16:09:00 [ 2] [ 16] [1808931700023938] +16:09:00 [ 3] [ 6] [301000] +16:09:00 [ 7] [ 10] [0320160850] +16:09:00 [ 11] [ 6] [793809] +16:09:00 [ 12] [ 6] [160850] +16:09:00 [ 13] [ 4] [0320] +16:09:00 [ 14] [ 4] [1803] +16:09:00 [ 19] [ 3] [418] +16:09:00 [ 32] [ 6] [621354] +16:09:00 [ 37] [ 12] [507902546850] +16:09:00 [ 38] [ 6] [793809] +16:09:00 [ 39] [ 2] [00] +16:09:00 [ 41] [ 8] [05003700] +16:09:00 [ 49] [ 3] [418] +16:09:00 [ 52] [ 16] [A4BD304181EC64AC] +16:09:00 [ 54] [ 20] [1002418C000023311300] +16:09:00 ============================================================================ +16:09:00 Calculate Source COMM Id = 0 +16:09:00 ============================================================================ +16:09:00 + + +waiting on router queue for slot.... +16:09:11 ============================================================================ +16:09:11 Slot Id : <201> +16:09:11 Transaction Type : REQUEST +16:09:11 Received From : +16:09:11 ============================================================================ +16:09:11 FNo. Len. Field Value +16:09:11 ============================================================================ +16:09:11 [ 1] [ 4] [0800] +16:09:11 [ 7] [ 10] [0320090816] +16:09:11 [ 11] [ 6] [157177] +16:09:11 [ 70] [ 3] [301] +16:09:11 ============================================================================ +16:09:11 + + +waiting on router queue for slot.... +16:09:11 Sending to : +16:09:11 ============================================================================ +16:09:11 ============================================================================ +16:09:11 Slot Id : <201> +16:09:11 Transaction Type : RESPONSE +16:09:11 Received From : +16:09:11 ============================================================================ +16:09:11 FNo. Len. Field Value +16:09:11 ============================================================================ +16:09:11 [ 1] [ 4] [0810] +16:09:11 [ 7] [ 10] [0320090816] +16:09:11 [ 11] [ 6] [157177] +16:09:11 [ 39] [ 2] [00] +16:09:11 [ 70] [ 3] [301] +16:09:11 ============================================================================ +16:09:11 Calculate Source COMM Id = 2 +16:09:11 ============================================================================ +16:09:11 + + +waiting on router queue for slot.... +16:09:25 ============================================================================ +16:09:25 Slot Id : <209> +16:09:25 Transaction Type : REQUEST +16:09:25 Received From : +16:09:25 ============================================================================ +16:09:25 FNo. Len. Field Value +16:09:25 ============================================================================ +16:09:25 [ 1] [ 4] [0200] +16:09:25 [ 2] [ 16] [1808931800008607] +16:09:25 [ 3] [ 6] [011000] +16:09:25 [ 4] [ 12] [000100000000] +16:09:25 [ 7] [ 10] [0320160920] +16:09:25 [ 11] [ 6] [793939] +16:09:25 [ 12] [ 6] [160920] +16:09:25 [ 13] [ 4] [0320] +16:09:25 [ 15] [ 4] [0320] +16:09:25 [ 18] [ 4] [6011] +16:09:25 [ 22] [ 3] [900] +16:09:25 [ 25] [ 2] [02] +16:09:25 [ 28] [ 9] [D00002000] +16:09:25 [ 32] [ 6] [621354] +16:09:25 [ 35] [ 27] [1808931800008607=1803500287] +16:09:25 [ 37] [ 12] [507904653612] +16:09:25 [ 41] [ 8] [17001000] +16:09:25 [ 42] [ 15] [NATIVE ] +16:09:25 [ 43] [ 40] [Sum Market Samneua LAO] +16:09:25 [ 49] [ 3] [418] +16:09:25 [ 52] [ 16] [A8ED9E32FE7504EA] +16:09:25 ============================================================================ +16:09:25 + + +waiting on router queue for slot.... +16:09:25 Sending to : +16:09:25 ============================================================================ +16:09:25 Sending to : +16:09:25 ============================================================================ +16:09:25 ============================================================================ +16:09:25 Slot Id : <165> +16:09:25 Transaction Type : REQUEST +16:09:25 Received From : +16:09:25 ============================================================================ +16:09:25 FNo. Len. Field Value +16:09:25 ============================================================================ +16:09:25 [ 1] [ 4] [0800] +16:09:25 [ 7] [ 10] [0320090832] +16:09:25 [ 11] [ 6] [157178] +16:09:25 [ 70] [ 3] [301] +16:09:25 ============================================================================ +16:09:25 + + +waiting on router queue for slot.... +16:09:25 Sending to : +16:09:25 ============================================================================ +16:09:25 ============================================================================ +16:09:25 Slot Id : <165> +16:09:25 Transaction Type : RESPONSE +16:09:25 Received From : +16:09:25 ============================================================================ +16:09:25 FNo. Len. Field Value +16:09:25 ============================================================================ +16:09:25 [ 1] [ 4] [0810] +16:09:25 [ 7] [ 10] [0320090832] +16:09:25 [ 11] [ 6] [157178] +16:09:25 [ 39] [ 2] [00] +16:09:25 [ 70] [ 3] [301] +16:09:25 ============================================================================ +16:09:25 Calculate Source COMM Id = 2 +16:09:25 ============================================================================ +16:09:25 + + +waiting on router queue for slot.... +16:09:25 ============================================================================ +16:09:25 Slot Id : <209> +16:09:25 Transaction Type : REQUEST +16:09:25 Received From : +16:09:25 ============================================================================ +16:09:25 FNo. Len. Field Value +16:09:25 ============================================================================ +16:09:25 [ 1] [ 4] [0200] +16:09:25 [ 2] [ 16] [1808931800008607] +16:09:25 [ 3] [ 6] [011000] +16:09:25 [ 4] [ 12] [000100000000] +16:09:25 [ 7] [ 10] [0320160920] +16:09:25 [ 11] [ 6] [793939] +16:09:25 [ 12] [ 6] [160920] +16:09:25 [ 13] [ 4] [0320] +16:09:25 [ 15] [ 4] [0320] +16:09:25 [ 18] [ 4] [6011] +16:09:25 [ 22] [ 3] [900] +16:09:25 [ 25] [ 2] [02] +16:09:25 [ 28] [ 9] [D00002000] +16:09:25 [ 32] [ 6] [621354] +16:09:25 [ 35] [ 27] [1808931800008607=1803500287] +16:09:25 [ 37] [ 12] [507904653612] +16:09:25 [ 41] [ 8] [17001000] +16:09:25 [ 42] [ 15] [NATIVE ] +16:09:25 [ 43] [ 40] [Sum Market Samneua LAO] +16:09:25 [ 49] [ 3] [418] +16:09:25 [ 52] [ 16] [A8ED9E32FE7504EA] +16:09:25 ============================================================================ +16:09:25 + + +waiting on router queue for slot.... +16:09:25 Sending to : +16:09:25 ============================================================================ +16:09:25 ============================================================================ +16:09:25 Slot Id : <209> +16:09:25 Transaction Type : REQUEST +16:09:25 Received From : +16:09:25 ============================================================================ +16:09:25 FNo. Len. Field Value +16:09:25 ============================================================================ +16:09:25 [ 1] [ 4] [0200] +16:09:25 [ 2] [ 16] [1808931800008607] +16:09:25 [ 3] [ 6] [011000] +16:09:25 [ 4] [ 12] [000100000000] +16:09:25 [ 7] [ 10] [0320160920] +16:09:25 [ 11] [ 6] [793939] +16:09:25 [ 12] [ 6] [160920] +16:09:25 [ 13] [ 4] [0320] +16:09:25 [ 15] [ 4] [0320] +16:09:25 [ 18] [ 4] [6011] +16:09:25 [ 22] [ 3] [900] +16:09:25 [ 25] [ 2] [02] +16:09:25 [ 28] [ 9] [D00002000] +16:09:25 [ 32] [ 6] [621354] +16:09:25 [ 35] [ 27] [1808931800008607=1803500287] +16:09:25 [ 37] [ 12] [507904653612] +16:09:25 [ 41] [ 8] [17001000] +16:09:25 [ 42] [ 15] [NATIVE ] +16:09:25 [ 43] [ 40] [Sum Market Samneua LAO] +16:09:25 [ 49] [ 3] [418] +16:09:25 [ 52] [ 16] [7EBECDEB83A0ACBB] +16:09:25 ============================================================================ +16:09:25 + + +waiting on router queue for slot.... +16:09:25 Sending to : <2> +16:09:25 ============================================================================ +16:09:27 ============================================================================ +16:09:27 Slot Id : <214> +16:09:27 Transaction Type : REQUEST +16:09:27 Received From : +16:09:27 ============================================================================ +16:09:27 FNo. Len. Field Value +16:09:27 ============================================================================ +16:09:27 [ 1] [ 4] [0800] +16:09:27 [ 7] [ 10] [0320232117] +16:09:27 [ 11] [ 6] [162117] +16:09:27 [ 37] [ 12] [57916162117] +16:09:27 [ 70] [ 3] [301] +16:09:27 ============================================================================ +16:09:27 + + +waiting on router queue for slot.... +16:09:27 Sending to : +16:09:27 ============================================================================ +16:09:27 ============================================================================ +16:09:27 Slot Id : <214> +16:09:27 Transaction Type : RESPONSE +16:09:27 Received From : +16:09:27 ============================================================================ +16:09:27 FNo. Len. Field Value +16:09:27 ============================================================================ +16:09:27 [ 1] [ 4] [0810] +16:09:27 [ 7] [ 10] [0320232117] +16:09:27 [ 11] [ 6] [162117] +16:09:27 [ 37] [ 12] [579161621170] +16:09:27 [ 39] [ 2] [00] +16:09:27 [ 70] [ 3] [810] +16:09:27 ============================================================================ +16:09:27 Calculate Source COMM Id = 6 +16:09:27 ============================================================================ +16:09:27 + + +waiting on router queue for slot.... +16:09:29 ============================================================================ +16:09:29 Slot Id : <195> +16:09:29 Transaction Type : REQUEST +16:09:29 Received From : +16:09:29 ============================================================================ +16:09:29 FNo. Len. Field Value +16:09:29 ============================================================================ +16:09:29 [ 1] [ 4] [0200] +16:09:29 [ 2] [ 16] [6213548000165124] +16:09:29 [ 3] [ 6] [010000] +16:09:29 [ 4] [ 12] [000062000000] +16:09:29 [ 7] [ 10] [0320160719] +16:09:29 [ 11] [ 6] [951139] +16:09:29 [ 12] [ 6] [160719] +16:09:29 [ 13] [ 4] [0320] +16:09:29 [ 15] [ 4] [0320] +16:09:29 [ 18] [ 4] [6011] +16:09:29 [ 19] [ 3] [418] +16:09:29 [ 22] [ 3] [021] +16:09:29 [ 25] [ 2] [01] +16:09:29 [ 28] [ 9] [D00002000] +16:09:29 [ 32] [ 6] [668899] +16:09:29 [ 35] [ 32] [6213548000165124=131212016512716] +16:09:29 [ 37] [ 12] [507902556319] +16:09:29 [ 41] [ 8] [03016004] +16:09:29 [ 42] [ 15] [APT ] +16:09:29 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +16:09:29 [ 49] [ 3] [418] +16:09:29 [ 52] [ 16] [799A056F4DA2B6EC] +16:09:29 ============================================================================ +16:09:29 + + +waiting on router queue for slot.... +16:09:29 Sending to : +16:09:29 ============================================================================ +16:09:29 Sending to : +16:09:29 ============================================================================ +16:09:29 ============================================================================ +16:09:29 Slot Id : <195> +16:09:29 Transaction Type : REQUEST +16:09:29 Received From : +16:09:29 ============================================================================ +16:09:29 FNo. Len. Field Value +16:09:29 ============================================================================ +16:09:29 [ 1] [ 4] [0200] +16:09:29 [ 2] [ 16] [6213548000165124] +16:09:29 [ 3] [ 6] [010000] +16:09:29 [ 4] [ 12] [000062000000] +16:09:29 [ 7] [ 10] [0320160719] +16:09:29 [ 11] [ 6] [951139] +16:09:29 [ 12] [ 6] [160719] +16:09:29 [ 13] [ 4] [0320] +16:09:29 [ 15] [ 4] [0320] +16:09:29 [ 18] [ 4] [6011] +16:09:29 [ 19] [ 3] [418] +16:09:29 [ 22] [ 3] [021] +16:09:29 [ 25] [ 2] [01] +16:09:29 [ 28] [ 9] [D00002000] +16:09:29 [ 32] [ 6] [668899] +16:09:29 [ 35] [ 32] [6213548000165124=131212016512716] +16:09:29 [ 37] [ 12] [507902556319] +16:09:29 [ 41] [ 8] [03016004] +16:09:29 [ 42] [ 15] [APT ] +16:09:29 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +16:09:29 [ 49] [ 3] [418] +16:09:29 [ 52] [ 16] [799A056F4DA2B6EC] +16:09:29 ============================================================================ +16:09:29 + + +waiting on router queue for slot.... +16:09:29 Sending to : +16:09:29 ============================================================================ +16:09:29 ============================================================================ +16:09:29 Slot Id : <195> +16:09:29 Transaction Type : REQUEST +16:09:29 Received From : +16:09:29 ============================================================================ +16:09:29 FNo. Len. Field Value +16:09:29 ============================================================================ +16:09:29 [ 1] [ 4] [0200] +16:09:29 [ 2] [ 16] [6213548000165124] +16:09:29 [ 3] [ 6] [010000] +16:09:29 [ 4] [ 12] [000062000000] +16:09:29 [ 7] [ 10] [0320160719] +16:09:29 [ 11] [ 6] [951139] +16:09:29 [ 12] [ 6] [160719] +16:09:29 [ 13] [ 4] [0320] +16:09:29 [ 15] [ 4] [0320] +16:09:29 [ 18] [ 4] [6011] +16:09:29 [ 19] [ 3] [418] +16:09:29 [ 22] [ 3] [021] +16:09:29 [ 25] [ 2] [01] +16:09:29 [ 28] [ 9] [D00002000] +16:09:29 [ 32] [ 6] [668899] +16:09:29 [ 35] [ 32] [6213548000165124=131212016512716] +16:09:29 [ 37] [ 12] [507902556319] +16:09:29 [ 41] [ 8] [03016004] +16:09:29 [ 42] [ 15] [APT ] +16:09:29 [ 43] [ 40] [ SALAVANH VAPEE SALAVANH ] +16:09:29 [ 49] [ 3] [418] +16:09:29 [ 52] [ 16] [666591169206ADAC] +16:09:29 ============================================================================ +16:09:29 + + +waiting on router queue for slot.... +16:09:29 Sending to : <0> +16:09:29 ============================================================================ +16:09:29 ============================================================================ +16:09:29 Slot Id : <209> +16:09:29 Transaction Type : RESPONSE +16:09:29 Received From : +16:09:29 ============================================================================ +16:09:29 FNo. Len. Field Value +16:09:29 ============================================================================ +16:09:29 [ 1] [ 4] [0210] +16:09:29 [ 2] [ 16] [1808931800008607] +16:09:29 [ 3] [ 6] [011000] +16:09:29 [ 4] [ 12] [000100000000] +16:09:29 [ 6] [ 12] [000100000000] +16:09:29 [ 7] [ 10] [0320160920] +16:09:29 [ 11] [ 6] [793939] +16:09:29 [ 12] [ 6] [160920] +16:09:29 [ 13] [ 4] [0320] +16:09:29 [ 18] [ 4] [6011] +16:09:29 [ 19] [ 3] [418] +16:09:29 [ 22] [ 3] [021] +16:09:29 [ 32] [ 6] [621354] +16:09:29 [ 35] [ 27] [1808931800008607=1803500287] +16:09:29 [ 37] [ 12] [507904653612] +16:09:29 [ 38] [ 6] [793939] +16:09:29 [ 39] [ 2] [00] +16:09:29 [ 41] [ 8] [17001000] +16:09:29 [ 49] [ 3] [418] +16:09:29 [ 52] [ 16] [7EBECDEB83A0ACBB] +16:09:29 [ 54] [ 20] [1001418C000011693600] +16:09:29 ============================================================================ +16:09:29 Sending to : +16:09:29 ============================================================================ +16:09:29 + + +waiting on router queue for slot.... +16:09:30 ============================================================================ +16:09:30 Slot Id : <195> +16:09:30 Transaction Type : RESPONSE +16:09:30 Received From : +16:09:30 ============================================================================ +16:09:30 FNo. Len. Field Value +16:09:30 ============================================================================ +16:09:30 [ 1] [ 4] [0210] +16:09:30 [ 2] [ 16] [6213548000165124] +16:09:30 [ 3] [ 6] [010000] +16:09:30 [ 4] [ 12] [000062000000] +16:09:30 [ 7] [ 10] [0320160719] +16:09:30 [ 11] [ 6] [951139] +16:09:30 [ 12] [ 6] [160719] +16:09:30 [ 13] [ 4] [0320] +16:09:30 [ 15] [ 4] [0320] +16:09:30 [ 18] [ 4] [6011] +16:09:30 [ 19] [ 3] [418] +16:09:30 [ 32] [ 6] [668899] +16:09:30 [ 35] [ 32] [6213548000165124=131212016512716] +16:09:30 [ 37] [ 12] [507902556319] +16:09:30 [ 38] [ 6] [712625] +16:09:30 [ 39] [ 2] [00] +16:09:30 [ 41] [ 8] [03016004] +16:09:30 [ 49] [ 3] [418] +16:09:30 [ 54] [ 40] [0001418C0000113539930002418C000011353993] +16:09:30 ============================================================================ +16:09:30 Sending to : +16:09:30 ============================================================================ +16:09:30 + + +waiting on router queue for slot.... +16:09:31 ============================================================================ +16:09:31 Slot Id : <209> +16:09:31 Transaction Type : RESPONSE +16:09:31 Received From : +16:09:31 ============================================================================ +16:09:31 FNo. Len. Field Value +16:09:31 ============================================================================ +16:09:31 [ 1] [ 4] [0210] +16:09:31 [ 2] [ 16] [1808931800008607] +16:09:31 [ 3] [ 6] [011000] +16:09:31 [ 4] [ 12] [000100000000] +16:09:31 [ 6] [ 12] [000100000000] +16:09:31 [ 7] [ 10] [0320160920] +16:09:31 [ 11] [ 6] [793939] +16:09:31 [ 12] [ 6] [160920] +16:09:31 [ 13] [ 4] [0320] +16:09:31 [ 18] [ 4] [6011] +16:09:31 [ 19] [ 3] [418] +16:09:31 [ 22] [ 3] [021] +16:09:31 [ 32] [ 6] [621354] +16:09:31 [ 35] [ 27] [1808931800008607=1803500287] +16:09:31 [ 37] [ 12] [507904653612] +16:09:31 [ 38] [ 6] [793939] +16:09:31 [ 39] [ 2] [00] +16:09:31 [ 41] [ 8] [17001000] +16:09:31 [ 49] [ 3] [418] +16:09:31 [ 52] [ 16] [7EBECDEB83A0ACBB] +16:09:31 [ 54] [ 20] [1001418C000011693600] +16:09:31 ============================================================================ +16:09:31 Calculate Source COMM Id = 0 +16:09:31 ============================================================================ +16:09:31 + + +waiting on router queue for slot.... +16:09:32 ============================================================================ +16:09:32 Slot Id : <195> +16:09:32 Transaction Type : RESPONSE +16:09:32 Received From : +16:09:32 ============================================================================ +16:09:32 FNo. Len. Field Value +16:09:32 ============================================================================ +16:09:32 [ 1] [ 4] [0210] +16:09:32 [ 2] [ 16] [6213548000165124] +16:09:32 [ 3] [ 6] [010000] +16:09:32 [ 4] [ 12] [000062000000] +16:09:32 [ 7] [ 10] [0320160719] +16:09:32 [ 11] [ 6] [951139] +16:09:32 [ 12] [ 6] [160719] +16:09:32 [ 13] [ 4] [0320] +16:09:32 [ 15] [ 4] [0320] +16:09:32 [ 18] [ 4] [6011] +16:09:32 [ 19] [ 3] [418] +16:09:32 [ 32] [ 6] [668899] +16:09:32 [ 35] [ 32] [6213548000165124=131212016512716] +16:09:32 [ 37] [ 12] [507902556319] +16:09:32 [ 38] [ 6] [712625] +16:09:32 [ 39] [ 2] [00] +16:09:32 [ 41] [ 8] [03016004] +16:09:32 [ 49] [ 3] [418] +16:09:32 [ 54] [ 40] [0001418C0000113539930002418C000011353993] +16:09:32 ============================================================================ +16:09:32 Calculate Source COMM Id = 4 +16:09:32 ============================================================================ +16:09:32 + + +waiting on router queue for slot.... +16:09:40 ============================================================================ +16:09:40 Slot Id : <178> +16:09:40 Transaction Type : REQUEST +16:09:40 Received From : +16:09:40 ============================================================================ +16:09:40 FNo. Len. Field Value +16:09:40 ============================================================================ +16:09:40 [ 1] [ 4] [0800] +16:09:40 [ 7] [ 10] [0320090847] +16:09:40 [ 11] [ 6] [157179] +16:09:40 [ 70] [ 3] [301] +16:09:40 ============================================================================ +16:09:40 + + +waiting on router queue for slot.... +16:09:40 Sending to : +16:09:40 ============================================================================ +16:09:40 ============================================================================ +16:09:40 Slot Id : <178> +16:09:40 Transaction Type : RESPONSE +16:09:40 Received From : +16:09:40 ============================================================================ +16:09:40 FNo. Len. Field Value +16:09:40 ============================================================================ +16:09:40 [ 1] [ 4] [0810] +16:09:40 [ 7] [ 10] [0320090847] +16:09:40 [ 11] [ 6] [157179] +16:09:40 [ 39] [ 2] [00] +16:09:40 [ 70] [ 3] [301] +16:09:40 ============================================================================ +16:09:40 Calculate Source COMM Id = 2 +16:09:40 ============================================================================ +16:09:40 + + +waiting on router queue for slot.... +16:09:41 ============================================================================ +16:09:41 Slot Id : <184> +16:09:41 Transaction Type : REQUEST +16:09:41 Received From : +16:09:41 ============================================================================ +16:09:41 FNo. Len. Field Value +16:09:41 ============================================================================ +16:09:41 [ 1] [ 4] [0200] +16:09:41 [ 2] [ 16] [1808931000000792] +16:09:41 [ 3] [ 6] [301000] +16:09:41 [ 4] [ 12] [000000000000] +16:09:41 [ 7] [ 10] [0320160936] +16:09:41 [ 11] [ 6] [794017] +16:09:41 [ 12] [ 6] [160936] +16:09:41 [ 13] [ 4] [0320] +16:09:41 [ 15] [ 4] [0320] +16:09:41 [ 18] [ 4] [6011] +16:09:41 [ 22] [ 3] [900] +16:09:41 [ 25] [ 2] [02] +16:09:41 [ 28] [ 9] [D00000000] +16:09:41 [ 32] [ 6] [621354] +16:09:41 [ 35] [ 27] [1808931000000792=1803500587] +16:09:41 [ 37] [ 12] [507902661107] +16:09:41 [ 41] [ 8] [14000500] +16:09:41 [ 42] [ 15] [NATIVE ] +16:09:41 [ 43] [ 40] [VV Market Vangvieng LAO] +16:09:41 [ 49] [ 3] [418] +16:09:41 [ 52] [ 16] [53422CA12AA1B876] +16:09:41 ============================================================================ +16:09:41 + + +waiting on router queue for slot.... +16:09:41 Sending to : +16:09:41 ============================================================================ +16:09:41 Sending to : +16:09:41 ============================================================================ +16:09:41 ============================================================================ +16:09:41 Slot Id : <184> +16:09:41 Transaction Type : REQUEST +16:09:41 Received From : +16:09:41 ============================================================================ +16:09:41 FNo. Len. Field Value +16:09:41 ============================================================================ +16:09:41 [ 1] [ 4] [0200] +16:09:41 [ 2] [ 16] [1808931000000792] +16:09:41 [ 3] [ 6] [301000] +16:09:41 [ 4] [ 12] [000000000000] +16:09:41 [ 7] [ 10] [0320160936] +16:09:41 [ 11] [ 6] [794017] +16:09:41 [ 12] [ 6] [160936] +16:09:41 [ 13] [ 4] [0320] +16:09:41 [ 15] [ 4] [0320] +16:09:41 [ 18] [ 4] [6011] +16:09:41 [ 22] [ 3] [900] +16:09:41 [ 25] [ 2] [02] +16:09:41 [ 28] [ 9] [D00000000] +16:09:41 [ 32] [ 6] [621354] +16:09:41 [ 35] [ 27] [1808931000000792=1803500587] +16:09:41 [ 37] [ 12] [507902661107] +16:09:41 [ 41] [ 8] [14000500] +16:09:41 [ 42] [ 15] [NATIVE ] +16:09:41 [ 43] [ 40] [VV Market Vangvieng LAO] +16:09:41 [ 49] [ 3] [418] +16:09:41 [ 52] [ 16] [53422CA12AA1B876] +16:09:41 ============================================================================ +16:09:41 + + +waiting on router queue for slot.... +16:09:41 Sending to : +16:09:41 ============================================================================ +16:09:41 ============================================================================ +16:09:41 Slot Id : <184> +16:09:41 Transaction Type : REQUEST +16:09:41 Received From : +16:09:41 ============================================================================ +16:09:41 FNo. Len. Field Value +16:09:41 ============================================================================ +16:09:41 [ 1] [ 4] [0200] +16:09:41 [ 2] [ 16] [1808931000000792] +16:09:41 [ 3] [ 6] [301000] +16:09:41 [ 4] [ 12] [000000000000] +16:09:41 [ 7] [ 10] [0320160936] +16:09:41 [ 11] [ 6] [794017] +16:09:41 [ 12] [ 6] [160936] +16:09:41 [ 13] [ 4] [0320] +16:09:41 [ 15] [ 4] [0320] +16:09:41 [ 18] [ 4] [6011] +16:09:41 [ 22] [ 3] [900] +16:09:41 [ 25] [ 2] [02] +16:09:41 [ 28] [ 9] [D00000000] +16:09:41 [ 32] [ 6] [621354] +16:09:41 [ 35] [ 27] [1808931000000792=1803500587] +16:09:41 [ 37] [ 12] [507902661107] +16:09:41 [ 41] [ 8] [14000500] +16:09:41 [ 42] [ 15] [NATIVE ] +16:09:41 [ 43] [ 40] [VV Market Vangvieng LAO] +16:09:41 [ 49] [ 3] [418] +16:09:41 [ 52] [ 16] [1695E99AA01558C7] +16:09:41 ============================================================================ +16:09:41 + + +waiting on router queue for slot.... +16:09:41 Sending to : <2> +16:09:41 ============================================================================ +16:09:44 ============================================================================ +16:09:44 Slot Id : <184> +16:09:44 Transaction Type : RESPONSE +16:09:44 Received From : +16:09:44 ============================================================================ +16:09:44 FNo. Len. Field Value +16:09:44 ============================================================================ +16:09:44 [ 1] [ 4] [0210] +16:09:44 [ 2] [ 16] [1808931000000792] +16:09:44 [ 3] [ 6] [301000] +16:09:44 [ 7] [ 10] [0320160936] +16:09:44 [ 11] [ 6] [794017] +16:09:44 [ 12] [ 6] [160936] +16:09:44 [ 13] [ 4] [0320] +16:09:44 [ 14] [ 4] [1803] +16:09:44 [ 19] [ 3] [418] +16:09:44 [ 32] [ 6] [621354] +16:09:44 [ 37] [ 12] [507902661107] +16:09:44 [ 38] [ 6] [794017] +16:09:44 [ 39] [ 2] [00] +16:09:44 [ 41] [ 8] [14000500] +16:09:44 [ 49] [ 3] [418] +16:09:44 [ 52] [ 16] [1695E99AA01558C7] +16:09:44 [ 54] [ 20] [1002418C000024577000] +16:09:44 ============================================================================ +16:09:44 Sending to : +16:09:44 ============================================================================ +16:09:44 + + +waiting on router queue for slot.... +16:09:45 ============================================================================ +16:09:45 Slot Id : <184> +16:09:45 Transaction Type : RESPONSE +16:09:45 Received From : +16:09:45 ============================================================================ +16:09:45 FNo. Len. Field Value +16:09:45 ============================================================================ +16:09:45 [ 1] [ 4] [0210] +16:09:45 [ 2] [ 16] [1808931000000792] +16:09:45 [ 3] [ 6] [301000] +16:09:45 [ 7] [ 10] [0320160936] +16:09:45 [ 11] [ 6] [794017] +16:09:45 [ 12] [ 6] [160936] +16:09:45 [ 13] [ 4] [0320] +16:09:45 [ 14] [ 4] [1803] +16:09:45 [ 19] [ 3] [418] +16:09:45 [ 32] [ 6] [621354] +16:09:45 [ 37] [ 12] [507902661107] +16:09:45 [ 38] [ 6] [794017] +16:09:45 [ 39] [ 2] [00] +16:09:45 [ 41] [ 8] [14000500] +16:09:45 [ 49] [ 3] [418] +16:09:45 [ 52] [ 16] [1695E99AA01558C7] +16:09:45 [ 54] [ 20] [1002418C000024577000] +16:09:45 ============================================================================ +16:09:45 Calculate Source COMM Id = 0 +16:09:45 ============================================================================ +16:09:45 + + +waiting on router queue for slot.... +16:09:45 ============================================================================ +16:09:45 Slot Id : <194> +16:09:45 Transaction Type : REQUEST +16:09:45 Received From : +16:09:45 ============================================================================ +16:09:45 FNo. Len. Field Value +16:09:45 ============================================================================ +16:09:45 [ 1] [ 4] [0200] +16:09:45 [ 2] [ 16] [1808931700023938] +16:09:45 [ 3] [ 6] [011000] +16:09:45 [ 4] [ 12] [000005000000] +16:09:45 [ 7] [ 10] [0320160940] +16:09:45 [ 11] [ 6] [794044] +16:09:45 [ 12] [ 6] [160940] +16:09:45 [ 13] [ 4] [0320] +16:09:45 [ 15] [ 4] [0320] +16:09:45 [ 18] [ 4] [6011] +16:09:45 [ 22] [ 3] [900] +16:09:45 [ 25] [ 2] [02] +16:09:45 [ 28] [ 9] [D00002000] +16:09:45 [ 32] [ 6] [621354] +16:09:45 [ 35] [ 27] [1808931700023938=1803500156] +16:09:45 [ 37] [ 12] [507902546852] +16:09:45 [ 41] [ 8] [05003700] +16:09:45 [ 42] [ 15] [NATIVE ] +16:09:45 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +16:09:45 [ 49] [ 3] [418] +16:09:45 [ 52] [ 16] [8C5FB9D60EE44A82] +16:09:45 ============================================================================ +16:09:45 + + +waiting on router queue for slot.... +16:09:45 Sending to : +16:09:45 ============================================================================ +16:09:45 Sending to : +16:09:45 ============================================================================ +16:09:46 ============================================================================ +16:09:46 Slot Id : <194> +16:09:46 Transaction Type : REQUEST +16:09:46 Received From : +16:09:46 ============================================================================ +16:09:46 FNo. Len. Field Value +16:09:46 ============================================================================ +16:09:46 [ 1] [ 4] [0200] +16:09:46 [ 2] [ 16] [1808931700023938] +16:09:46 [ 3] [ 6] [011000] +16:09:46 [ 4] [ 12] [000005000000] +16:09:46 [ 7] [ 10] [0320160940] +16:09:46 [ 11] [ 6] [794044] +16:09:46 [ 12] [ 6] [160940] +16:09:46 [ 13] [ 4] [0320] +16:09:46 [ 15] [ 4] [0320] +16:09:46 [ 18] [ 4] [6011] +16:09:46 [ 22] [ 3] [900] +16:09:46 [ 25] [ 2] [02] +16:09:46 [ 28] [ 9] [D00002000] +16:09:46 [ 32] [ 6] [621354] +16:09:46 [ 35] [ 27] [1808931700023938=1803500156] +16:09:46 [ 37] [ 12] [507902546852] +16:09:46 [ 41] [ 8] [05003700] +16:09:46 [ 42] [ 15] [NATIVE ] +16:09:46 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +16:09:46 [ 49] [ 3] [418] +16:09:46 [ 52] [ 16] [8C5FB9D60EE44A82] +16:09:46 ============================================================================ +16:09:46 + + +waiting on router queue for slot.... +16:09:46 Sending to : +16:09:46 ============================================================================ +16:09:46 ============================================================================ +16:09:46 Slot Id : <194> +16:09:46 Transaction Type : REQUEST +16:09:46 Received From : +16:09:46 ============================================================================ +16:09:46 FNo. Len. Field Value +16:09:46 ============================================================================ +16:09:46 [ 1] [ 4] [0200] +16:09:46 [ 2] [ 16] [1808931700023938] +16:09:46 [ 3] [ 6] [011000] +16:09:46 [ 4] [ 12] [000005000000] +16:09:46 [ 7] [ 10] [0320160940] +16:09:46 [ 11] [ 6] [794044] +16:09:46 [ 12] [ 6] [160940] +16:09:46 [ 13] [ 4] [0320] +16:09:46 [ 15] [ 4] [0320] +16:09:46 [ 18] [ 4] [6011] +16:09:46 [ 22] [ 3] [900] +16:09:46 [ 25] [ 2] [02] +16:09:46 [ 28] [ 9] [D00002000] +16:09:46 [ 32] [ 6] [621354] +16:09:46 [ 35] [ 27] [1808931700023938=1803500156] +16:09:46 [ 37] [ 12] [507902546852] +16:09:46 [ 41] [ 8] [05003700] +16:09:46 [ 42] [ 15] [NATIVE ] +16:09:46 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +16:09:46 [ 49] [ 3] [418] +16:09:46 [ 52] [ 16] [A4BD304181EC64AC] +16:09:46 ============================================================================ +16:09:46 + + +waiting on router queue for slot.... +16:09:46 Sending to : <2> +16:09:46 ============================================================================ +16:09:46 ============================================================================ +16:09:46 Slot Id : <206> +16:09:46 Transaction Type : REQUEST +16:09:46 Received From : +16:09:46 ============================================================================ +16:09:46 FNo. Len. Field Value +16:09:46 ============================================================================ +16:09:46 [ 1] [ 4] [0200] +16:09:46 [ 2] [ 16] [6213544002089354] +16:09:46 [ 3] [ 6] [301000] +16:09:46 [ 4] [ 12] [000000000000] +16:09:46 [ 7] [ 10] [0320160736] +16:09:46 [ 11] [ 6] [951151] +16:09:46 [ 12] [ 6] [160736] +16:09:46 [ 13] [ 4] [0320] +16:09:46 [ 15] [ 4] [0320] +16:09:46 [ 18] [ 4] [6011] +16:09:46 [ 19] [ 3] [418] +16:09:46 [ 22] [ 3] [021] +16:09:46 [ 25] [ 2] [01] +16:09:46 [ 28] [ 9] [D00000000] +16:09:46 [ 32] [ 6] [668899] +16:09:46 [ 35] [ 32] [6213544002089354=491212018935045] +16:09:46 [ 37] [ 12] [507901614516] +16:09:46 [ 41] [ 8] [03001007] +16:09:46 [ 42] [ 15] [APT ] +16:09:46 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +16:09:46 [ 49] [ 3] [418] +16:09:46 [ 52] [ 16] [26A9C44BB64DF016] +16:09:46 ============================================================================ +16:09:46 + + +waiting on router queue for slot.... +16:09:46 Sending to : +16:09:46 ============================================================================ +16:09:46 Sending to : +16:09:46 ============================================================================ +16:09:46 ============================================================================ +16:09:46 Slot Id : <206> +16:09:46 Transaction Type : REQUEST +16:09:46 Received From : +16:09:46 ============================================================================ +16:09:46 FNo. Len. Field Value +16:09:46 ============================================================================ +16:09:46 [ 1] [ 4] [0200] +16:09:46 [ 2] [ 16] [6213544002089354] +16:09:46 [ 3] [ 6] [301000] +16:09:46 [ 4] [ 12] [000000000000] +16:09:46 [ 7] [ 10] [0320160736] +16:09:46 [ 11] [ 6] [951151] +16:09:46 [ 12] [ 6] [160736] +16:09:46 [ 13] [ 4] [0320] +16:09:46 [ 15] [ 4] [0320] +16:09:46 [ 18] [ 4] [6011] +16:09:46 [ 19] [ 3] [418] +16:09:46 [ 22] [ 3] [021] +16:09:46 [ 25] [ 2] [01] +16:09:46 [ 28] [ 9] [D00000000] +16:09:46 [ 32] [ 6] [668899] +16:09:46 [ 35] [ 32] [6213544002089354=491212018935045] +16:09:46 [ 37] [ 12] [507901614516] +16:09:46 [ 41] [ 8] [03001007] +16:09:46 [ 42] [ 15] [APT ] +16:09:46 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +16:09:46 [ 49] [ 3] [418] +16:09:46 [ 52] [ 16] [26A9C44BB64DF016] +16:09:46 ============================================================================ +16:09:46 + + +waiting on router queue for slot.... +16:09:46 Sending to : +16:09:46 ============================================================================ +16:09:46 ============================================================================ +16:09:46 Slot Id : <206> +16:09:46 Transaction Type : REQUEST +16:09:46 Received From : +16:09:46 ============================================================================ +16:09:46 FNo. Len. Field Value +16:09:46 ============================================================================ +16:09:46 [ 1] [ 4] [0200] +16:09:46 [ 2] [ 16] [6213544002089354] +16:09:46 [ 3] [ 6] [301000] +16:09:46 [ 4] [ 12] [000000000000] +16:09:46 [ 7] [ 10] [0320160736] +16:09:46 [ 11] [ 6] [951151] +16:09:46 [ 12] [ 6] [160736] +16:09:46 [ 13] [ 4] [0320] +16:09:46 [ 15] [ 4] [0320] +16:09:46 [ 18] [ 4] [6011] +16:09:46 [ 19] [ 3] [418] +16:09:46 [ 22] [ 3] [021] +16:09:46 [ 25] [ 2] [01] +16:09:46 [ 28] [ 9] [D00000000] +16:09:46 [ 32] [ 6] [668899] +16:09:46 [ 35] [ 32] [6213544002089354=491212018935045] +16:09:46 [ 37] [ 12] [507901614516] +16:09:46 [ 41] [ 8] [03001007] +16:09:46 [ 42] [ 15] [APT ] +16:09:46 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +16:09:46 [ 49] [ 3] [418] +16:09:46 [ 52] [ 16] [7298B0757C01604A] +16:09:46 ============================================================================ +16:09:46 + + +waiting on router queue for slot.... +16:09:46 Sending to : <0> +16:09:46 ============================================================================ +16:09:47 ============================================================================ +16:09:47 Slot Id : <206> +16:09:47 Transaction Type : RESPONSE +16:09:47 Received From : +16:09:47 ============================================================================ +16:09:47 FNo. Len. Field Value +16:09:47 ============================================================================ +16:09:47 [ 1] [ 4] [0210] +16:09:47 [ 2] [ 16] [6213544002089354] +16:09:47 [ 3] [ 6] [301000] +16:09:47 [ 4] [ 12] [000000000000] +16:09:47 [ 7] [ 10] [0320160736] +16:09:47 [ 11] [ 6] [951151] +16:09:47 [ 12] [ 6] [160736] +16:09:47 [ 13] [ 4] [0320] +16:09:47 [ 15] [ 4] [0320] +16:09:47 [ 18] [ 4] [6011] +16:09:47 [ 19] [ 3] [418] +16:09:47 [ 32] [ 6] [668899] +16:09:47 [ 35] [ 32] [6213544002089354=491212018935045] +16:09:47 [ 37] [ 12] [507901614516] +16:09:47 [ 38] [ 6] [784580] +16:09:47 [ 39] [ 2] [00] +16:09:47 [ 41] [ 8] [03001007] +16:09:47 [ 49] [ 3] [418] +16:09:47 [ 54] [ 40] [1001418C0001053737151002418C000105373715] +16:09:47 ============================================================================ +16:09:47 Sending to : +16:09:47 ============================================================================ +16:09:47 + + +waiting on router queue for slot.... +16:09:48 ============================================================================ +16:09:48 Slot Id : <206> +16:09:48 Transaction Type : RESPONSE +16:09:48 Received From : +16:09:48 ============================================================================ +16:09:48 FNo. Len. Field Value +16:09:48 ============================================================================ +16:09:48 [ 1] [ 4] [0210] +16:09:48 [ 2] [ 16] [6213544002089354] +16:09:48 [ 3] [ 6] [301000] +16:09:48 [ 4] [ 12] [000000000000] +16:09:48 [ 7] [ 10] [0320160736] +16:09:48 [ 11] [ 6] [951151] +16:09:48 [ 12] [ 6] [160736] +16:09:48 [ 13] [ 4] [0320] +16:09:48 [ 15] [ 4] [0320] +16:09:48 [ 18] [ 4] [6011] +16:09:48 [ 19] [ 3] [418] +16:09:48 [ 32] [ 6] [668899] +16:09:48 [ 35] [ 32] [6213544002089354=491212018935045] +16:09:48 [ 37] [ 12] [507901614516] +16:09:48 [ 38] [ 6] [784580] +16:09:48 [ 39] [ 2] [00] +16:09:48 [ 41] [ 8] [03001007] +16:09:48 [ 49] [ 3] [418] +16:09:48 [ 54] [ 40] [1001418C0001053737151002418C000105373715] +16:09:48 ============================================================================ +16:09:48 Calculate Source COMM Id = 4 +16:09:48 ============================================================================ +16:09:48 + + +waiting on router queue for slot.... +16:09:49 ============================================================================ +16:09:49 Slot Id : <194> +16:09:49 Transaction Type : RESPONSE +16:09:49 Received From : +16:09:49 ============================================================================ +16:09:49 FNo. Len. Field Value +16:09:49 ============================================================================ +16:09:49 [ 1] [ 4] [0210] +16:09:49 [ 2] [ 16] [1808931700023938] +16:09:49 [ 3] [ 6] [011000] +16:09:49 [ 4] [ 12] [000005000000] +16:09:49 [ 6] [ 12] [000005000000] +16:09:49 [ 7] [ 10] [0320160940] +16:09:49 [ 11] [ 6] [794044] +16:09:49 [ 12] [ 6] [160940] +16:09:49 [ 13] [ 4] [0320] +16:09:49 [ 18] [ 4] [6011] +16:09:49 [ 19] [ 3] [418] +16:09:49 [ 22] [ 3] [021] +16:09:49 [ 32] [ 6] [621354] +16:09:49 [ 35] [ 27] [1808931700023938=1803500156] +16:09:49 [ 37] [ 12] [507902546852] +16:09:49 [ 38] [ 6] [794044] +16:09:49 [ 39] [ 2] [00] +16:09:49 [ 41] [ 8] [05003700] +16:09:49 [ 49] [ 3] [418] +16:09:49 [ 52] [ 16] [A4BD304181EC64AC] +16:09:49 [ 54] [ 20] [1001418C000018111300] +16:09:49 ============================================================================ +16:09:49 Sending to : +16:09:49 ============================================================================ +16:09:49 + + +waiting on router queue for slot.... +16:09:51 ============================================================================ +16:09:51 Slot Id : <194> +16:09:51 Transaction Type : RESPONSE +16:09:51 Received From : +16:09:51 ============================================================================ +16:09:51 FNo. Len. Field Value +16:09:51 ============================================================================ +16:09:51 [ 1] [ 4] [0210] +16:09:51 [ 2] [ 16] [1808931700023938] +16:09:51 [ 3] [ 6] [011000] +16:09:51 [ 4] [ 12] [000005000000] +16:09:51 [ 6] [ 12] [000005000000] +16:09:51 [ 7] [ 10] [0320160940] +16:09:51 [ 11] [ 6] [794044] +16:09:51 [ 12] [ 6] [160940] +16:09:51 [ 13] [ 4] [0320] +16:09:51 [ 18] [ 4] [6011] +16:09:51 [ 19] [ 3] [418] +16:09:51 [ 22] [ 3] [021] +16:09:51 [ 32] [ 6] [621354] +16:09:51 [ 35] [ 27] [1808931700023938=1803500156] +16:09:51 [ 37] [ 12] [507902546852] +16:09:51 [ 38] [ 6] [794044] +16:09:51 [ 39] [ 2] [00] +16:09:51 [ 41] [ 8] [05003700] +16:09:51 [ 49] [ 3] [418] +16:09:51 [ 52] [ 16] [A4BD304181EC64AC] +16:09:51 [ 54] [ 20] [1001418C000018111300] +16:09:51 ============================================================================ +16:09:51 Calculate Source COMM Id = 0 +16:09:51 ============================================================================ +16:09:51 + + +waiting on router queue for slot.... +16:09:53 ============================================================================ +16:09:53 Slot Id : <213> +16:09:53 Transaction Type : REQUEST +16:09:53 Received From : +16:09:53 ============================================================================ +16:09:53 FNo. Len. Field Value +16:09:53 ============================================================================ +16:09:53 [ 1] [ 4] [0200] +16:09:53 [ 2] [ 16] [6213545000988752] +16:09:53 [ 3] [ 6] [010000] +16:09:53 [ 4] [ 12] [000010000000] +16:09:53 [ 7] [ 10] [0320090858] +16:09:53 [ 11] [ 6] [270262] +16:09:53 [ 12] [ 6] [160858] +16:09:53 [ 13] [ 4] [0320] +16:09:53 [ 14] [ 4] [4912] +16:09:53 [ 15] [ 4] [0320] +16:09:53 [ 18] [ 4] [6011] +16:09:53 [ 19] [ 3] [418] +16:09:53 [ 22] [ 3] [021] +16:09:53 [ 25] [ 2] [01] +16:09:53 [ 28] [ 9] [D00002000] +16:09:53 [ 32] [ 6] [180893] +16:09:53 [ 35] [ 32] [6213545000988752=491212018875978] +16:09:53 [ 37] [ 12] [507909270262] +16:09:53 [ 41] [ 8] [0243VTKS] +16:09:53 [ 42] [ 15] [999999 ] +16:09:53 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:09:53 [ 49] [ 3] [418] +16:09:53 [ 52] [ 16] [CE02CD2C647B5939] +16:09:53 ============================================================================ +16:09:53 + + +waiting on router queue for slot.... +16:09:53 Sending to : +16:09:53 ============================================================================ +16:09:53 Sending to : +16:09:53 ============================================================================ +16:09:53 ============================================================================ +16:09:53 Slot Id : <213> +16:09:53 Transaction Type : REQUEST +16:09:53 Received From : +16:09:53 ============================================================================ +16:09:53 FNo. Len. Field Value +16:09:53 ============================================================================ +16:09:53 [ 1] [ 4] [0200] +16:09:53 [ 2] [ 16] [6213545000988752] +16:09:53 [ 3] [ 6] [010000] +16:09:53 [ 4] [ 12] [000010000000] +16:09:53 [ 7] [ 10] [0320090858] +16:09:53 [ 11] [ 6] [270262] +16:09:53 [ 12] [ 6] [160858] +16:09:53 [ 13] [ 4] [0320] +16:09:53 [ 14] [ 4] [4912] +16:09:53 [ 15] [ 4] [0320] +16:09:53 [ 18] [ 4] [6011] +16:09:53 [ 19] [ 3] [418] +16:09:53 [ 22] [ 3] [021] +16:09:53 [ 25] [ 2] [01] +16:09:53 [ 28] [ 9] [D00002000] +16:09:53 [ 32] [ 6] [180893] +16:09:53 [ 35] [ 32] [6213545000988752=491212018875978] +16:09:53 [ 37] [ 12] [507909270262] +16:09:53 [ 41] [ 8] [0243VTKS] +16:09:53 [ 42] [ 15] [999999 ] +16:09:53 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:09:53 [ 49] [ 3] [418] +16:09:53 [ 52] [ 16] [CE02CD2C647B5939] +16:09:53 ============================================================================ +16:09:53 + + +waiting on router queue for slot.... +16:09:53 Sending to : +16:09:53 ============================================================================ +16:09:53 ============================================================================ +16:09:53 Slot Id : <213> +16:09:53 Transaction Type : REQUEST +16:09:53 Received From : +16:09:53 ============================================================================ +16:09:53 FNo. Len. Field Value +16:09:53 ============================================================================ +16:09:53 [ 1] [ 4] [0200] +16:09:53 [ 2] [ 16] [6213545000988752] +16:09:53 [ 3] [ 6] [010000] +16:09:53 [ 4] [ 12] [000010000000] +16:09:53 [ 7] [ 10] [0320090858] +16:09:53 [ 11] [ 6] [270262] +16:09:53 [ 12] [ 6] [160858] +16:09:53 [ 13] [ 4] [0320] +16:09:53 [ 14] [ 4] [4912] +16:09:53 [ 15] [ 4] [0320] +16:09:53 [ 18] [ 4] [6011] +16:09:53 [ 19] [ 3] [418] +16:09:53 [ 22] [ 3] [021] +16:09:53 [ 25] [ 2] [01] +16:09:53 [ 28] [ 9] [D00002000] +16:09:53 [ 32] [ 6] [180893] +16:09:53 [ 35] [ 32] [6213545000988752=491212018875978] +16:09:53 [ 37] [ 12] [507909270262] +16:09:53 [ 41] [ 8] [0243VTKS] +16:09:53 [ 42] [ 15] [999999 ] +16:09:53 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:09:53 [ 49] [ 3] [418] +16:09:53 [ 52] [ 16] [AC73E8C52951E2ED] +16:09:53 ============================================================================ +16:09:53 + + +waiting on router queue for slot.... +16:09:53 Sending to : <0> +16:09:53 ============================================================================ +16:09:54 ============================================================================ +16:09:54 Slot Id : <213> +16:09:54 Transaction Type : RESPONSE +16:09:54 Received From : +16:09:54 ============================================================================ +16:09:54 FNo. Len. Field Value +16:09:54 ============================================================================ +16:09:54 [ 1] [ 4] [0210] +16:09:54 [ 2] [ 16] [6213545000988752] +16:09:54 [ 3] [ 6] [010000] +16:09:54 [ 4] [ 12] [000010000000] +16:09:54 [ 7] [ 10] [0320090858] +16:09:54 [ 11] [ 6] [270262] +16:09:54 [ 12] [ 6] [160858] +16:09:54 [ 13] [ 4] [0320] +16:09:54 [ 15] [ 4] [0320] +16:09:54 [ 18] [ 4] [6011] +16:09:54 [ 19] [ 3] [418] +16:09:54 [ 32] [ 6] [180893] +16:09:54 [ 35] [ 32] [6213545000988752=491212018875978] +16:09:54 [ 37] [ 12] [507909270262] +16:09:54 [ 38] [ 6] [704838] +16:09:54 [ 39] [ 2] [00] +16:09:54 [ 41] [ 8] [0243VTKS] +16:09:54 [ 49] [ 3] [418] +16:09:54 [ 54] [ 40] [0001418C0001427740770002418C000142774077] +16:09:54 ============================================================================ +16:09:54 Sending to : +16:09:54 ============================================================================ +16:09:54 + + +waiting on router queue for slot.... +16:09:55 ============================================================================ +16:09:55 Slot Id : <193> +16:09:55 Transaction Type : REQUEST +16:09:55 Received From : +16:09:55 ============================================================================ +16:09:55 FNo. Len. Field Value +16:09:55 ============================================================================ +16:09:55 [ 1] [ 4] [0800] +16:09:55 [ 2] [ 5] [02531] +16:09:55 [ 3] [ 6] [579168] +16:09:55 [ 7] [ 10] [0320090955] +16:09:55 [ 11] [ 6] [807350] +16:09:55 [ 15] [ 10] [0320090955] +16:09:55 [ 37] [ 11] [57916807350] +16:09:55 [ 70] [ 3] [001] +16:09:55 ============================================================================ +16:09:55 + + +waiting on router queue for slot.... +16:09:55 ============================================================================ +16:09:55 Slot Id : <212> +16:09:55 Transaction Type : REQUEST +16:09:55 Received From : +16:09:55 ============================================================================ +16:09:55 FNo. Len. Field Value +16:09:55 ============================================================================ +16:09:55 [ 1] [ 4] [0800] +16:09:55 [ 7] [ 10] [0320091742] +16:09:55 [ 11] [ 6] [081975] +16:09:55 [ 37] [ 12] [57916081975] +16:09:55 [ 70] [ 3] [301] +16:09:55 ============================================================================ +16:09:55 + + +waiting on router queue for slot.... +16:09:55 ============================================================================ +16:09:55 Slot Id : <193> +16:09:55 Transaction Type : RESPONSE +16:09:55 Received From : +16:09:55 ============================================================================ +16:09:55 FNo. Len. Field Value +16:09:55 ============================================================================ +16:09:55 [ 1] [ 4] [0810] +16:09:55 [ 7] [ 10] [0320090955] +16:09:55 [ 11] [ 6] [807350] +16:09:55 [ 15] [ 4] [0320] +16:09:55 [ 37] [ 12] [57916807350] +16:09:55 [ 39] [ 2] [00] +16:09:55 [ 70] [ 3] [001] +16:09:55 ============================================================================ +16:09:55 Sending to : +16:09:55 ============================================================================ +16:09:55 + + +waiting on router queue for slot.... +16:09:55 Sending to : +16:09:55 ============================================================================ +16:09:55 ============================================================================ +16:09:55 Slot Id : <212> +16:09:55 Transaction Type : RESPONSE +16:09:55 Received From : +16:09:55 ============================================================================ +16:09:55 FNo. Len. Field Value +16:09:55 ============================================================================ +16:09:55 [ 1] [ 4] [0810] +16:09:55 [ 7] [ 10] [0320091742] +16:09:55 [ 11] [ 6] [081975] +16:09:55 [ 37] [ 12] [579160819750] +16:09:55 [ 39] [ 2] [00] +16:09:55 [ 70] [ 3] [810] +16:09:55 ============================================================================ +16:09:55 Calculate Source COMM Id = 1 +16:09:55 ============================================================================ +16:09:55 + + +waiting on router queue for slot.... +16:09:55 ============================================================================ +16:09:55 Slot Id : <213> +16:09:55 Transaction Type : RESPONSE +16:09:55 Received From : +16:09:55 ============================================================================ +16:09:55 FNo. Len. Field Value +16:09:55 ============================================================================ +16:09:55 [ 1] [ 4] [0210] +16:09:55 [ 2] [ 16] [6213545000988752] +16:09:55 [ 3] [ 6] [010000] +16:09:55 [ 4] [ 12] [000010000000] +16:09:55 [ 7] [ 10] [0320090858] +16:09:55 [ 11] [ 6] [270262] +16:09:55 [ 12] [ 6] [160858] +16:09:55 [ 13] [ 4] [0320] +16:09:55 [ 15] [ 4] [0320] +16:09:55 [ 18] [ 4] [6011] +16:09:55 [ 19] [ 3] [418] +16:09:55 [ 32] [ 6] [180893] +16:09:55 [ 35] [ 32] [6213545000988752=491212018875978] +16:09:55 [ 37] [ 12] [507909270262] +16:09:55 [ 38] [ 6] [704838] +16:09:55 [ 39] [ 2] [00] +16:09:55 [ 41] [ 8] [0243VTKS] +16:09:55 [ 49] [ 3] [418] +16:09:55 [ 54] [ 40] [0001418C0001427740770002418C000142774077] +16:09:55 ============================================================================ +16:09:55 Calculate Source COMM Id = 2 +16:09:55 ============================================================================ +16:09:55 + + +waiting on router queue for slot.... +16:10:06 ============================================================================ +16:10:06 Slot Id : <207> +16:10:06 Transaction Type : REQUEST +16:10:06 Received From : +16:10:06 ============================================================================ +16:10:06 FNo. Len. Field Value +16:10:06 ============================================================================ +16:10:06 [ 1] [ 4] [0800] +16:10:06 [ 7] [ 10] [0320090913] +16:10:06 [ 11] [ 6] [157180] +16:10:06 [ 70] [ 3] [301] +16:10:06 ============================================================================ +16:10:06 + + +waiting on router queue for slot.... +16:10:06 Sending to : +16:10:06 ============================================================================ +16:10:06 ============================================================================ +16:10:06 Slot Id : <207> +16:10:06 Transaction Type : RESPONSE +16:10:06 Received From : +16:10:06 ============================================================================ +16:10:06 FNo. Len. Field Value +16:10:06 ============================================================================ +16:10:06 [ 1] [ 4] [0810] +16:10:06 [ 7] [ 10] [0320090913] +16:10:06 [ 11] [ 6] [157180] +16:10:06 [ 39] [ 2] [00] +16:10:06 [ 70] [ 3] [301] +16:10:06 ============================================================================ +16:10:06 Calculate Source COMM Id = 2 +16:10:06 ============================================================================ +16:10:06 + + +waiting on router queue for slot.... +16:10:14 ============================================================================ +16:10:14 Slot Id : <221> +16:10:14 Transaction Type : REQUEST +16:10:14 Received From : +16:10:14 ============================================================================ +16:10:14 FNo. Len. Field Value +16:10:14 ============================================================================ +16:10:14 [ 1] [ 4] [0200] +16:10:14 [ 2] [ 16] [6688990603113109] +16:10:14 [ 3] [ 6] [010000] +16:10:14 [ 4] [ 12] [000100000000] +16:10:14 [ 7] [ 10] [0320161009] +16:10:14 [ 11] [ 6] [794185] +16:10:14 [ 12] [ 6] [161009] +16:10:14 [ 13] [ 4] [0320] +16:10:14 [ 15] [ 4] [0320] +16:10:14 [ 18] [ 4] [6011] +16:10:14 [ 22] [ 3] [900] +16:10:14 [ 25] [ 2] [02] +16:10:14 [ 28] [ 9] [D00002000] +16:10:14 [ 32] [ 6] [621354] +16:10:14 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:10:14 [ 37] [ 12] [507903345184] +16:10:14 [ 41] [ 8] [13001400] +16:10:14 [ 42] [ 15] [NATIVE ] +16:10:14 [ 43] [ 40] [Kham Unit Kham LAO] +16:10:14 [ 49] [ 3] [418] +16:10:14 [ 52] [ 16] [DCEDFC0BFC33D901] +16:10:14 ============================================================================ +16:10:14 + + +waiting on router queue for slot.... +16:10:14 Sending to : +16:10:14 ============================================================================ +16:10:14 Sending to : +16:10:14 ============================================================================ +16:10:14 ============================================================================ +16:10:14 Slot Id : <221> +16:10:14 Transaction Type : REQUEST +16:10:14 Received From : +16:10:14 ============================================================================ +16:10:14 FNo. Len. Field Value +16:10:14 ============================================================================ +16:10:14 [ 1] [ 4] [0200] +16:10:14 [ 2] [ 16] [6688990603113109] +16:10:14 [ 3] [ 6] [010000] +16:10:14 [ 4] [ 12] [000100000000] +16:10:14 [ 7] [ 10] [0320161009] +16:10:14 [ 11] [ 6] [794185] +16:10:14 [ 12] [ 6] [161009] +16:10:14 [ 13] [ 4] [0320] +16:10:14 [ 15] [ 4] [0320] +16:10:14 [ 18] [ 4] [6011] +16:10:14 [ 22] [ 3] [900] +16:10:14 [ 25] [ 2] [02] +16:10:14 [ 28] [ 9] [D00002000] +16:10:14 [ 32] [ 6] [621354] +16:10:14 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:10:14 [ 37] [ 12] [507903345184] +16:10:14 [ 41] [ 8] [13001400] +16:10:14 [ 42] [ 15] [NATIVE ] +16:10:14 [ 43] [ 40] [Kham Unit Kham LAO] +16:10:14 [ 49] [ 3] [418] +16:10:14 [ 52] [ 16] [DCEDFC0BFC33D901] +16:10:14 ============================================================================ +16:10:14 + + +waiting on router queue for slot.... +16:10:14 Sending to : +16:10:14 ============================================================================ +16:10:14 ============================================================================ +16:10:14 Slot Id : <221> +16:10:14 Transaction Type : REQUEST +16:10:14 Received From : +16:10:14 ============================================================================ +16:10:14 FNo. Len. Field Value +16:10:14 ============================================================================ +16:10:14 [ 1] [ 4] [0200] +16:10:14 [ 2] [ 16] [6688990603113109] +16:10:14 [ 3] [ 6] [010000] +16:10:14 [ 4] [ 12] [000100000000] +16:10:14 [ 7] [ 10] [0320161009] +16:10:14 [ 11] [ 6] [794185] +16:10:14 [ 12] [ 6] [161009] +16:10:14 [ 13] [ 4] [0320] +16:10:14 [ 15] [ 4] [0320] +16:10:14 [ 18] [ 4] [6011] +16:10:14 [ 22] [ 3] [900] +16:10:14 [ 25] [ 2] [02] +16:10:14 [ 28] [ 9] [D00002000] +16:10:14 [ 32] [ 6] [621354] +16:10:14 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:10:14 [ 37] [ 12] [507903345184] +16:10:14 [ 41] [ 8] [13001400] +16:10:14 [ 42] [ 15] [NATIVE ] +16:10:14 [ 43] [ 40] [Kham Unit Kham LAO] +16:10:14 [ 49] [ 3] [418] +16:10:14 [ 52] [ 16] [412F8B7442D5D4CF] +16:10:14 ============================================================================ +16:10:14 + + +waiting on router queue for slot.... +16:10:14 Sending to : <4> +16:10:14 ============================================================================ +16:10:15 ============================================================================ +16:10:15 Slot Id : <221> +16:10:15 Transaction Type : RESPONSE +16:10:15 Received From : +16:10:15 ============================================================================ +16:10:15 FNo. Len. Field Value +16:10:15 ============================================================================ +16:10:15 [ 1] [ 4] [0210] +16:10:15 [ 2] [ 16] [6688990603113109] +16:10:15 [ 3] [ 6] [010000] +16:10:15 [ 4] [ 12] [000100000000] +16:10:15 [ 11] [ 6] [794185] +16:10:15 [ 12] [ 6] [161009] +16:10:15 [ 15] [ 4] [0320] +16:10:15 [ 18] [ 4] [6011] +16:10:15 [ 32] [ 6] [621354] +16:10:15 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:10:15 [ 37] [ 12] [507903345184] +16:10:15 [ 38] [ 6] [945752] +16:10:15 [ 39] [ 2] [00] +16:10:15 [ 41] [ 8] [13001400] +16:10:15 [ 49] [ 3] [418] +16:10:15 [ 54] [ 20] [0002418C000227230538] +16:10:15 ============================================================================ +16:10:15 Sending to : +16:10:15 ============================================================================ +16:10:15 + + +waiting on router queue for slot.... +16:10:17 ============================================================================ +16:10:17 Slot Id : <221> +16:10:17 Transaction Type : RESPONSE +16:10:17 Received From : +16:10:17 ============================================================================ +16:10:17 FNo. Len. Field Value +16:10:17 ============================================================================ +16:10:17 [ 1] [ 4] [0210] +16:10:17 [ 2] [ 16] [6688990603113109] +16:10:17 [ 3] [ 6] [010000] +16:10:17 [ 4] [ 12] [000100000000] +16:10:17 [ 11] [ 6] [794185] +16:10:17 [ 12] [ 6] [161009] +16:10:17 [ 15] [ 4] [0320] +16:10:17 [ 18] [ 4] [6011] +16:10:17 [ 32] [ 6] [621354] +16:10:17 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:10:17 [ 37] [ 12] [507903345184] +16:10:17 [ 38] [ 6] [945752] +16:10:17 [ 39] [ 2] [00] +16:10:17 [ 41] [ 8] [13001400] +16:10:17 [ 49] [ 3] [418] +16:10:17 [ 54] [ 20] [0002418C000227230538] +16:10:17 ============================================================================ +16:10:17 Calculate Source COMM Id = 0 +16:10:17 ============================================================================ +16:10:17 + + +waiting on router queue for slot.... +16:10:20 ============================================================================ +16:10:20 Slot Id : <183> +16:10:20 Transaction Type : REQUEST +16:10:20 Received From : +16:10:20 ============================================================================ +16:10:20 FNo. Len. Field Value +16:10:20 ============================================================================ +16:10:20 [ 1] [ 4] [0200] +16:10:20 [ 2] [ 16] [6213544002089354] +16:10:20 [ 3] [ 6] [010000] +16:10:20 [ 4] [ 12] [000050000000] +16:10:20 [ 7] [ 10] [0320160810] +16:10:20 [ 11] [ 6] [951174] +16:10:20 [ 12] [ 6] [160810] +16:10:20 [ 13] [ 4] [0320] +16:10:20 [ 15] [ 4] [0320] +16:10:20 [ 18] [ 4] [6011] +16:10:20 [ 19] [ 3] [418] +16:10:20 [ 22] [ 3] [021] +16:10:20 [ 25] [ 2] [01] +16:10:20 [ 28] [ 9] [D00002000] +16:10:20 [ 32] [ 6] [668899] +16:10:20 [ 35] [ 32] [6213544002089354=491212018935045] +16:10:20 [ 37] [ 12] [507901614517] +16:10:20 [ 41] [ 8] [03001007] +16:10:20 [ 42] [ 15] [APT ] +16:10:20 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +16:10:20 [ 49] [ 3] [418] +16:10:20 [ 52] [ 16] [26A9C44BB64DF016] +16:10:20 ============================================================================ +16:10:20 + + +waiting on router queue for slot.... +16:10:20 Sending to : +16:10:20 ============================================================================ +16:10:20 Sending to : +16:10:20 ============================================================================ +16:10:21 ============================================================================ +16:10:21 Slot Id : <183> +16:10:21 Transaction Type : REQUEST +16:10:21 Received From : +16:10:21 ============================================================================ +16:10:21 FNo. Len. Field Value +16:10:21 ============================================================================ +16:10:21 [ 1] [ 4] [0200] +16:10:21 [ 2] [ 16] [6213544002089354] +16:10:21 [ 3] [ 6] [010000] +16:10:21 [ 4] [ 12] [000050000000] +16:10:21 [ 7] [ 10] [0320160810] +16:10:21 [ 11] [ 6] [951174] +16:10:21 [ 12] [ 6] [160810] +16:10:21 [ 13] [ 4] [0320] +16:10:21 [ 15] [ 4] [0320] +16:10:21 [ 18] [ 4] [6011] +16:10:21 [ 19] [ 3] [418] +16:10:21 [ 22] [ 3] [021] +16:10:21 [ 25] [ 2] [01] +16:10:21 [ 28] [ 9] [D00002000] +16:10:21 [ 32] [ 6] [668899] +16:10:21 [ 35] [ 32] [6213544002089354=491212018935045] +16:10:21 [ 37] [ 12] [507901614517] +16:10:21 [ 41] [ 8] [03001007] +16:10:21 [ 42] [ 15] [APT ] +16:10:21 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +16:10:21 [ 49] [ 3] [418] +16:10:21 [ 52] [ 16] [26A9C44BB64DF016] +16:10:21 ============================================================================ +16:10:21 + + +waiting on router queue for slot.... +16:10:21 Sending to : +16:10:21 ============================================================================ +16:10:21 ============================================================================ +16:10:21 Slot Id : <183> +16:10:21 Transaction Type : REQUEST +16:10:21 Received From : +16:10:21 ============================================================================ +16:10:21 FNo. Len. Field Value +16:10:21 ============================================================================ +16:10:21 [ 1] [ 4] [0200] +16:10:21 [ 2] [ 16] [6213544002089354] +16:10:21 [ 3] [ 6] [010000] +16:10:21 [ 4] [ 12] [000050000000] +16:10:21 [ 7] [ 10] [0320160810] +16:10:21 [ 11] [ 6] [951174] +16:10:21 [ 12] [ 6] [160810] +16:10:21 [ 13] [ 4] [0320] +16:10:21 [ 15] [ 4] [0320] +16:10:21 [ 18] [ 4] [6011] +16:10:21 [ 19] [ 3] [418] +16:10:21 [ 22] [ 3] [021] +16:10:21 [ 25] [ 2] [01] +16:10:21 [ 28] [ 9] [D00002000] +16:10:21 [ 32] [ 6] [668899] +16:10:21 [ 35] [ 32] [6213544002089354=491212018935045] +16:10:21 [ 37] [ 12] [507901614517] +16:10:21 [ 41] [ 8] [03001007] +16:10:21 [ 42] [ 15] [APT ] +16:10:21 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +16:10:21 [ 49] [ 3] [418] +16:10:21 [ 52] [ 16] [7298B0757C01604A] +16:10:21 ============================================================================ +16:10:21 + + +waiting on router queue for slot.... +16:10:21 Sending to : <0> +16:10:21 ============================================================================ +16:10:21 ============================================================================ +16:10:21 Slot Id : <183> +16:10:21 Transaction Type : RESPONSE +16:10:21 Received From : +16:10:21 ============================================================================ +16:10:21 FNo. Len. Field Value +16:10:21 ============================================================================ +16:10:21 [ 1] [ 4] [0210] +16:10:21 [ 2] [ 16] [6213544002089354] +16:10:21 [ 3] [ 6] [010000] +16:10:21 [ 4] [ 12] [000050000000] +16:10:21 [ 7] [ 10] [0320160810] +16:10:21 [ 11] [ 6] [951174] +16:10:21 [ 12] [ 6] [160810] +16:10:21 [ 13] [ 4] [0320] +16:10:21 [ 15] [ 4] [0320] +16:10:21 [ 18] [ 4] [6011] +16:10:21 [ 19] [ 3] [418] +16:10:21 [ 32] [ 6] [668899] +16:10:21 [ 35] [ 32] [6213544002089354=491212018935045] +16:10:21 [ 37] [ 12] [507901614517] +16:10:21 [ 38] [ 6] [189574] +16:10:21 [ 39] [ 2] [00] +16:10:21 [ 41] [ 8] [03001007] +16:10:21 [ 49] [ 3] [418] +16:10:21 [ 54] [ 40] [0001418C0000551737150002418C000055173715] +16:10:21 ============================================================================ +16:10:21 Sending to : +16:10:21 ============================================================================ +16:10:21 + + +waiting on router queue for slot.... +16:10:21 ============================================================================ +16:10:21 Slot Id : <230> +16:10:21 Transaction Type : REQUEST +16:10:21 Received From : +16:10:21 ============================================================================ +16:10:21 FNo. Len. Field Value +16:10:21 ============================================================================ +16:10:21 [ 1] [ 4] [0800] +16:10:21 [ 7] [ 10] [0320090928] +16:10:21 [ 11] [ 6] [157181] +16:10:21 [ 70] [ 3] [301] +16:10:21 ============================================================================ +16:10:21 + + +waiting on router queue for slot.... +16:10:21 Sending to : +16:10:21 ============================================================================ +16:10:21 ============================================================================ +16:10:21 Slot Id : <230> +16:10:21 Transaction Type : RESPONSE +16:10:21 Received From : +16:10:21 ============================================================================ +16:10:21 FNo. Len. Field Value +16:10:21 ============================================================================ +16:10:21 [ 1] [ 4] [0810] +16:10:21 [ 7] [ 10] [0320090928] +16:10:21 [ 11] [ 6] [157181] +16:10:21 [ 39] [ 2] [00] +16:10:21 [ 70] [ 3] [301] +16:10:21 ============================================================================ +16:10:21 Calculate Source COMM Id = 2 +16:10:21 ============================================================================ +16:10:21 + + +waiting on router queue for slot.... +16:10:23 ============================================================================ +16:10:23 Slot Id : <183> +16:10:23 Transaction Type : RESPONSE +16:10:23 Received From : +16:10:23 ============================================================================ +16:10:23 FNo. Len. Field Value +16:10:23 ============================================================================ +16:10:23 [ 1] [ 4] [0210] +16:10:23 [ 2] [ 16] [6213544002089354] +16:10:23 [ 3] [ 6] [010000] +16:10:23 [ 4] [ 12] [000050000000] +16:10:23 [ 7] [ 10] [0320160810] +16:10:23 [ 11] [ 6] [951174] +16:10:23 [ 12] [ 6] [160810] +16:10:23 [ 13] [ 4] [0320] +16:10:23 [ 15] [ 4] [0320] +16:10:23 [ 18] [ 4] [6011] +16:10:23 [ 19] [ 3] [418] +16:10:23 [ 32] [ 6] [668899] +16:10:23 [ 35] [ 32] [6213544002089354=491212018935045] +16:10:23 [ 37] [ 12] [507901614517] +16:10:23 [ 38] [ 6] [189574] +16:10:23 [ 39] [ 2] [00] +16:10:23 [ 41] [ 8] [03001007] +16:10:23 [ 49] [ 3] [418] +16:10:23 [ 54] [ 40] [0001418C0000551737150002418C000055173715] +16:10:23 ============================================================================ +16:10:23 Calculate Source COMM Id = 4 +16:10:23 ============================================================================ +16:10:23 + + +waiting on router queue for slot.... +16:10:30 ============================================================================ +16:10:30 Slot Id : <208> +16:10:30 Transaction Type : REQUEST +16:10:30 Received From : +16:10:30 ============================================================================ +16:10:30 FNo. Len. Field Value +16:10:30 ============================================================================ +16:10:30 [ 1] [ 4] [0200] +16:10:30 [ 2] [ 16] [6213544001443669] +16:10:30 [ 3] [ 6] [300000] +16:10:30 [ 4] [ 12] [000000000000] +16:10:30 [ 7] [ 10] [0320160820] +16:10:30 [ 11] [ 6] [951180] +16:10:30 [ 12] [ 6] [160820] +16:10:30 [ 13] [ 4] [0320] +16:10:30 [ 15] [ 4] [0320] +16:10:30 [ 18] [ 4] [6011] +16:10:30 [ 19] [ 3] [418] +16:10:30 [ 22] [ 3] [021] +16:10:30 [ 25] [ 2] [01] +16:10:30 [ 28] [ 9] [D00000000] +16:10:30 [ 32] [ 6] [668899] +16:10:30 [ 35] [ 32] [6213544001443669=491212014366939] +16:10:30 [ 37] [ 12] [507902678756] +16:10:30 [ 41] [ 8] [03020035] +16:10:30 [ 42] [ 15] [APT ] +16:10:30 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +16:10:30 [ 49] [ 3] [418] +16:10:30 [ 52] [ 16] [70DA956A2D9E623D] +16:10:30 ============================================================================ +16:10:30 + + +waiting on router queue for slot.... +16:10:30 Sending to : +16:10:30 ============================================================================ +16:10:30 Sending to : +16:10:30 ============================================================================ +16:10:30 ============================================================================ +16:10:30 Slot Id : <211> +16:10:30 Transaction Type : REQUEST +16:10:30 Received From : +16:10:30 ============================================================================ +16:10:30 FNo. Len. Field Value +16:10:30 ============================================================================ +16:10:30 [ 1] [ 4] [0200] +16:10:30 [ 2] [ 16] [6688990103283402] +16:10:30 [ 3] [ 6] [010000] +16:10:30 [ 4] [ 12] [000100000000] +16:10:30 [ 7] [ 10] [0320161025] +16:10:30 [ 11] [ 6] [794268] +16:10:30 [ 12] [ 6] [161025] +16:10:30 [ 13] [ 4] [0320] +16:10:30 [ 15] [ 4] [0320] +16:10:30 [ 18] [ 4] [6011] +16:10:30 [ 22] [ 3] [900] +16:10:30 [ 25] [ 2] [02] +16:10:30 [ 28] [ 9] [D00002000] +16:10:30 [ 32] [ 6] [621354] +16:10:30 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:10:30 [ 37] [ 12] [507903499570] +16:10:30 [ 41] [ 8] [06002200] +16:10:30 [ 42] [ 15] [NATIVE ] +16:10:30 [ 43] [ 40] [Beng Market Beng LAO] +16:10:30 [ 49] [ 3] [418] +16:10:30 [ 52] [ 16] [6577EE23574221CD] +16:10:30 ============================================================================ +16:10:30 + + +waiting on router queue for slot.... +16:10:30 Sending to : +16:10:30 ============================================================================ +16:10:30 Sending to : +16:10:30 ============================================================================ +16:10:30 ============================================================================ +16:10:30 Slot Id : <208> +16:10:30 Transaction Type : REQUEST +16:10:30 Received From : +16:10:30 ============================================================================ +16:10:30 FNo. Len. Field Value +16:10:30 ============================================================================ +16:10:30 [ 1] [ 4] [0200] +16:10:30 [ 2] [ 16] [6213544001443669] +16:10:30 [ 3] [ 6] [300000] +16:10:30 [ 4] [ 12] [000000000000] +16:10:30 [ 7] [ 10] [0320160820] +16:10:30 [ 11] [ 6] [951180] +16:10:30 [ 12] [ 6] [160820] +16:10:30 [ 13] [ 4] [0320] +16:10:30 [ 15] [ 4] [0320] +16:10:30 [ 18] [ 4] [6011] +16:10:30 [ 19] [ 3] [418] +16:10:30 [ 22] [ 3] [021] +16:10:30 [ 25] [ 2] [01] +16:10:30 [ 28] [ 9] [D00000000] +16:10:30 [ 32] [ 6] [668899] +16:10:30 [ 35] [ 32] [6213544001443669=491212014366939] +16:10:30 [ 37] [ 12] [507902678756] +16:10:30 [ 41] [ 8] [03020035] +16:10:30 [ 42] [ 15] [APT ] +16:10:30 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +16:10:30 [ 49] [ 3] [418] +16:10:30 [ 52] [ 16] [70DA956A2D9E623D] +16:10:30 ============================================================================ +16:10:30 + + +waiting on router queue for slot.... +16:10:30 Sending to : +16:10:30 ============================================================================ +16:10:30 ============================================================================ +16:10:30 Slot Id : <208> +16:10:30 Transaction Type : REQUEST +16:10:30 Received From : +16:10:30 ============================================================================ +16:10:30 FNo. Len. Field Value +16:10:30 ============================================================================ +16:10:30 [ 1] [ 4] [0200] +16:10:30 [ 2] [ 16] [6213544001443669] +16:10:30 [ 3] [ 6] [300000] +16:10:30 [ 4] [ 12] [000000000000] +16:10:30 [ 7] [ 10] [0320160820] +16:10:30 [ 11] [ 6] [951180] +16:10:30 [ 12] [ 6] [160820] +16:10:30 [ 13] [ 4] [0320] +16:10:30 [ 15] [ 4] [0320] +16:10:30 [ 18] [ 4] [6011] +16:10:30 [ 19] [ 3] [418] +16:10:30 [ 22] [ 3] [021] +16:10:30 [ 25] [ 2] [01] +16:10:30 [ 28] [ 9] [D00000000] +16:10:30 [ 32] [ 6] [668899] +16:10:30 [ 35] [ 32] [6213544001443669=491212014366939] +16:10:30 [ 37] [ 12] [507902678756] +16:10:30 [ 41] [ 8] [03020035] +16:10:30 [ 42] [ 15] [APT ] +16:10:30 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +16:10:30 [ 49] [ 3] [418] +16:10:30 [ 52] [ 16] [4C9A0EC25C96408F] +16:10:30 ============================================================================ +16:10:30 + + +waiting on router queue for slot.... +16:10:30 Sending to : <0> +16:10:30 ============================================================================ +16:10:30 ============================================================================ +16:10:30 Slot Id : <211> +16:10:30 Transaction Type : REQUEST +16:10:30 Received From : +16:10:30 ============================================================================ +16:10:30 FNo. Len. Field Value +16:10:30 ============================================================================ +16:10:30 [ 1] [ 4] [0200] +16:10:30 [ 2] [ 16] [6688990103283402] +16:10:30 [ 3] [ 6] [010000] +16:10:30 [ 4] [ 12] [000100000000] +16:10:30 [ 7] [ 10] [0320161025] +16:10:30 [ 11] [ 6] [794268] +16:10:30 [ 12] [ 6] [161025] +16:10:30 [ 13] [ 4] [0320] +16:10:30 [ 15] [ 4] [0320] +16:10:30 [ 18] [ 4] [6011] +16:10:30 [ 22] [ 3] [900] +16:10:30 [ 25] [ 2] [02] +16:10:30 [ 28] [ 9] [D00002000] +16:10:30 [ 32] [ 6] [621354] +16:10:30 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:10:30 [ 37] [ 12] [507903499570] +16:10:30 [ 41] [ 8] [06002200] +16:10:30 [ 42] [ 15] [NATIVE ] +16:10:30 [ 43] [ 40] [Beng Market Beng LAO] +16:10:30 [ 49] [ 3] [418] +16:10:30 [ 52] [ 16] [6577EE23574221CD] +16:10:30 ============================================================================ +16:10:30 + + +waiting on router queue for slot.... +16:10:30 Sending to : +16:10:30 ============================================================================ +16:10:30 ============================================================================ +16:10:30 Slot Id : <211> +16:10:30 Transaction Type : REQUEST +16:10:30 Received From : +16:10:30 ============================================================================ +16:10:30 FNo. Len. Field Value +16:10:30 ============================================================================ +16:10:30 [ 1] [ 4] [0200] +16:10:30 [ 2] [ 16] [6688990103283402] +16:10:30 [ 3] [ 6] [010000] +16:10:30 [ 4] [ 12] [000100000000] +16:10:30 [ 7] [ 10] [0320161025] +16:10:30 [ 11] [ 6] [794268] +16:10:30 [ 12] [ 6] [161025] +16:10:30 [ 13] [ 4] [0320] +16:10:30 [ 15] [ 4] [0320] +16:10:30 [ 18] [ 4] [6011] +16:10:30 [ 22] [ 3] [900] +16:10:30 [ 25] [ 2] [02] +16:10:30 [ 28] [ 9] [D00002000] +16:10:30 [ 32] [ 6] [621354] +16:10:30 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:10:30 [ 37] [ 12] [507903499570] +16:10:30 [ 41] [ 8] [06002200] +16:10:30 [ 42] [ 15] [NATIVE ] +16:10:30 [ 43] [ 40] [Beng Market Beng LAO] +16:10:30 [ 49] [ 3] [418] +16:10:30 [ 52] [ 16] [1CC8806DB4B6639B] +16:10:30 ============================================================================ +16:10:30 + + +waiting on router queue for slot.... +16:10:30 Sending to : <4> +16:10:30 ============================================================================ +16:10:31 ============================================================================ +16:10:31 Slot Id : <208> +16:10:31 Transaction Type : RESPONSE +16:10:31 Received From : +16:10:31 ============================================================================ +16:10:31 FNo. Len. Field Value +16:10:31 ============================================================================ +16:10:31 [ 1] [ 4] [0210] +16:10:31 [ 2] [ 16] [6213544001443669] +16:10:31 [ 3] [ 6] [300000] +16:10:31 [ 4] [ 12] [000000000000] +16:10:31 [ 7] [ 10] [0320160820] +16:10:31 [ 11] [ 6] [951180] +16:10:31 [ 12] [ 6] [160820] +16:10:31 [ 13] [ 4] [0320] +16:10:31 [ 15] [ 4] [0320] +16:10:31 [ 18] [ 4] [6011] +16:10:31 [ 19] [ 3] [418] +16:10:31 [ 32] [ 6] [668899] +16:10:31 [ 35] [ 32] [6213544001443669=491212014366939] +16:10:31 [ 37] [ 12] [507902678756] +16:10:31 [ 38] [ 6] [960080] +16:10:31 [ 39] [ 2] [00] +16:10:31 [ 41] [ 8] [03020035] +16:10:31 [ 49] [ 3] [418] +16:10:31 [ 54] [ 40] [0001418C0000651807070002418C000065180707] +16:10:31 ============================================================================ +16:10:31 Sending to : +16:10:31 ============================================================================ +16:10:31 + + +waiting on router queue for slot.... +16:10:31 ============================================================================ +16:10:31 Slot Id : <211> +16:10:31 Transaction Type : RESPONSE +16:10:31 Received From : +16:10:31 ============================================================================ +16:10:31 FNo. Len. Field Value +16:10:31 ============================================================================ +16:10:31 [ 1] [ 4] [0210] +16:10:31 [ 2] [ 16] [6688990103283402] +16:10:31 [ 3] [ 6] [010000] +16:10:31 [ 4] [ 12] [000100000000] +16:10:31 [ 11] [ 6] [794268] +16:10:31 [ 12] [ 6] [161025] +16:10:31 [ 15] [ 4] [0320] +16:10:31 [ 18] [ 4] [6011] +16:10:31 [ 32] [ 6] [621354] +16:10:31 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:10:31 [ 37] [ 12] [507903499570] +16:10:31 [ 38] [ 6] [821392] +16:10:31 [ 39] [ 2] [00] +16:10:31 [ 41] [ 8] [06002200] +16:10:31 [ 49] [ 3] [418] +16:10:31 [ 54] [ 20] [0002418C000207027012] +16:10:31 ============================================================================ +16:10:31 Sending to : +16:10:31 ============================================================================ +16:10:31 + + +waiting on router queue for slot.... +16:10:32 ============================================================================ +16:10:32 Slot Id : <169> +16:10:32 Transaction Type : REQUEST +16:10:32 Received From : +16:10:32 ============================================================================ +16:10:32 FNo. Len. Field Value +16:10:32 ============================================================================ +16:10:32 [ 1] [ 4] [0800] +16:10:32 [ 7] [ 10] [0320090939] +16:10:32 [ 11] [ 6] [157182] +16:10:32 [ 70] [ 3] [301] +16:10:32 ============================================================================ +16:10:32 + + +waiting on router queue for slot.... +16:10:32 Sending to : +16:10:32 ============================================================================ +16:10:32 ============================================================================ +16:10:32 Slot Id : <169> +16:10:32 Transaction Type : RESPONSE +16:10:32 Received From : +16:10:32 ============================================================================ +16:10:32 FNo. Len. Field Value +16:10:32 ============================================================================ +16:10:32 [ 1] [ 4] [0810] +16:10:32 [ 7] [ 10] [0320090939] +16:10:32 [ 11] [ 6] [157182] +16:10:32 [ 39] [ 2] [00] +16:10:32 [ 70] [ 3] [301] +16:10:32 ============================================================================ +16:10:32 Calculate Source COMM Id = 2 +16:10:32 ============================================================================ +16:10:32 + + +waiting on router queue for slot.... +16:10:32 ============================================================================ +16:10:32 Slot Id : <208> +16:10:32 Transaction Type : RESPONSE +16:10:32 Received From : +16:10:32 ============================================================================ +16:10:32 FNo. Len. Field Value +16:10:32 ============================================================================ +16:10:32 [ 1] [ 4] [0210] +16:10:32 [ 2] [ 16] [6213544001443669] +16:10:32 [ 3] [ 6] [300000] +16:10:32 [ 4] [ 12] [000000000000] +16:10:32 [ 7] [ 10] [0320160820] +16:10:32 [ 11] [ 6] [951180] +16:10:32 [ 12] [ 6] [160820] +16:10:32 [ 13] [ 4] [0320] +16:10:32 [ 15] [ 4] [0320] +16:10:32 [ 18] [ 4] [6011] +16:10:32 [ 19] [ 3] [418] +16:10:32 [ 32] [ 6] [668899] +16:10:32 [ 35] [ 32] [6213544001443669=491212014366939] +16:10:32 [ 37] [ 12] [507902678756] +16:10:32 [ 38] [ 6] [960080] +16:10:32 [ 39] [ 2] [00] +16:10:32 [ 41] [ 8] [03020035] +16:10:32 [ 49] [ 3] [418] +16:10:32 [ 54] [ 40] [0001418C0000651807070002418C000065180707] +16:10:32 ============================================================================ +16:10:32 Calculate Source COMM Id = 4 +16:10:32 ============================================================================ +16:10:32 + + +waiting on router queue for slot.... +16:10:32 ============================================================================ +16:10:32 Slot Id : <205> +16:10:32 Transaction Type : REQUEST +16:10:32 Received From : +16:10:32 ============================================================================ +16:10:32 FNo. Len. Field Value +16:10:32 ============================================================================ +16:10:32 [ 1] [ 4] [0800] +16:10:32 [ 7] [ 10] [0320232222] +16:10:32 [ 11] [ 6] [162222] +16:10:32 [ 37] [ 12] [57916162222] +16:10:32 [ 70] [ 3] [301] +16:10:32 ============================================================================ +16:10:32 + + +waiting on router queue for slot.... +16:10:32 Sending to : +16:10:32 ============================================================================ +16:10:32 ============================================================================ +16:10:32 Slot Id : <205> +16:10:32 Transaction Type : RESPONSE +16:10:32 Received From : +16:10:32 ============================================================================ +16:10:32 FNo. Len. Field Value +16:10:32 ============================================================================ +16:10:32 [ 1] [ 4] [0810] +16:10:32 [ 7] [ 10] [0320232222] +16:10:32 [ 11] [ 6] [162222] +16:10:32 [ 37] [ 12] [579161622220] +16:10:32 [ 39] [ 2] [00] +16:10:32 [ 70] [ 3] [810] +16:10:32 ============================================================================ +16:10:32 Calculate Source COMM Id = 6 +16:10:32 ============================================================================ +16:10:32 + + +waiting on router queue for slot.... +16:10:34 ============================================================================ +16:10:34 Slot Id : <211> +16:10:34 Transaction Type : RESPONSE +16:10:34 Received From : +16:10:34 ============================================================================ +16:10:34 FNo. Len. Field Value +16:10:34 ============================================================================ +16:10:34 [ 1] [ 4] [0210] +16:10:34 [ 2] [ 16] [6688990103283402] +16:10:34 [ 3] [ 6] [010000] +16:10:34 [ 4] [ 12] [000100000000] +16:10:34 [ 11] [ 6] [794268] +16:10:34 [ 12] [ 6] [161025] +16:10:34 [ 15] [ 4] [0320] +16:10:34 [ 18] [ 4] [6011] +16:10:34 [ 32] [ 6] [621354] +16:10:34 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:10:34 [ 37] [ 12] [507903499570] +16:10:34 [ 38] [ 6] [821392] +16:10:34 [ 39] [ 2] [00] +16:10:34 [ 41] [ 8] [06002200] +16:10:34 [ 49] [ 3] [418] +16:10:34 [ 54] [ 20] [0002418C000207027012] +16:10:34 ============================================================================ +16:10:34 Calculate Source COMM Id = 0 +16:10:34 ============================================================================ +16:10:34 + + +waiting on router queue for slot.... +16:10:36 ============================================================================ +16:10:36 Slot Id : <185> +16:10:36 Transaction Type : REQUEST +16:10:36 Received From : +16:10:36 ============================================================================ +16:10:36 FNo. Len. Field Value +16:10:36 ============================================================================ +16:10:36 [ 1] [ 4] [0200] +16:10:36 [ 2] [ 16] [6688990103062202] +16:10:36 [ 3] [ 6] [301000] +16:10:36 [ 4] [ 12] [000000000000] +16:10:36 [ 7] [ 10] [0320161031] +16:10:36 [ 11] [ 6] [794299] +16:10:36 [ 12] [ 6] [161031] +16:10:36 [ 13] [ 4] [0320] +16:10:36 [ 15] [ 4] [0320] +16:10:36 [ 18] [ 4] [6011] +16:10:36 [ 22] [ 3] [900] +16:10:36 [ 25] [ 2] [02] +16:10:36 [ 28] [ 9] [D00000000] +16:10:36 [ 32] [ 6] [621354] +16:10:36 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:10:36 [ 37] [ 12] [507902577801] +16:10:36 [ 41] [ 8] [05004000] +16:10:36 [ 42] [ 15] [NATIVE ] +16:10:36 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:10:36 [ 49] [ 3] [418] +16:10:36 [ 52] [ 16] [4B8963017222C656] +16:10:36 ============================================================================ +16:10:36 + + +waiting on router queue for slot.... +16:10:36 Sending to : +16:10:36 ============================================================================ +16:10:36 Sending to : +16:10:36 ============================================================================ +16:10:37 ============================================================================ +16:10:37 Slot Id : <185> +16:10:37 Transaction Type : REQUEST +16:10:37 Received From : +16:10:37 ============================================================================ +16:10:37 FNo. Len. Field Value +16:10:37 ============================================================================ +16:10:37 [ 1] [ 4] [0200] +16:10:37 [ 2] [ 16] [6688990103062202] +16:10:37 [ 3] [ 6] [301000] +16:10:37 [ 4] [ 12] [000000000000] +16:10:37 [ 7] [ 10] [0320161031] +16:10:37 [ 11] [ 6] [794299] +16:10:37 [ 12] [ 6] [161031] +16:10:37 [ 13] [ 4] [0320] +16:10:37 [ 15] [ 4] [0320] +16:10:37 [ 18] [ 4] [6011] +16:10:37 [ 22] [ 3] [900] +16:10:37 [ 25] [ 2] [02] +16:10:37 [ 28] [ 9] [D00000000] +16:10:37 [ 32] [ 6] [621354] +16:10:37 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:10:37 [ 37] [ 12] [507902577801] +16:10:37 [ 41] [ 8] [05004000] +16:10:37 [ 42] [ 15] [NATIVE ] +16:10:37 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:10:37 [ 49] [ 3] [418] +16:10:37 [ 52] [ 16] [4B8963017222C656] +16:10:37 ============================================================================ +16:10:37 + + +waiting on router queue for slot.... +16:10:37 Sending to : +16:10:37 ============================================================================ +16:10:37 ============================================================================ +16:10:37 Slot Id : <185> +16:10:37 Transaction Type : REQUEST +16:10:37 Received From : +16:10:37 ============================================================================ +16:10:37 FNo. Len. Field Value +16:10:37 ============================================================================ +16:10:37 [ 1] [ 4] [0200] +16:10:37 [ 2] [ 16] [6688990103062202] +16:10:37 [ 3] [ 6] [301000] +16:10:37 [ 4] [ 12] [000000000000] +16:10:37 [ 7] [ 10] [0320161031] +16:10:37 [ 11] [ 6] [794299] +16:10:37 [ 12] [ 6] [161031] +16:10:37 [ 13] [ 4] [0320] +16:10:37 [ 15] [ 4] [0320] +16:10:37 [ 18] [ 4] [6011] +16:10:37 [ 22] [ 3] [900] +16:10:37 [ 25] [ 2] [02] +16:10:37 [ 28] [ 9] [D00000000] +16:10:37 [ 32] [ 6] [621354] +16:10:37 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:10:37 [ 37] [ 12] [507902577801] +16:10:37 [ 41] [ 8] [05004000] +16:10:37 [ 42] [ 15] [NATIVE ] +16:10:37 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:10:37 [ 49] [ 3] [418] +16:10:37 [ 52] [ 16] [08D944C385832978] +16:10:37 ============================================================================ +16:10:37 + + +waiting on router queue for slot.... +16:10:37 Sending to : <4> +16:10:37 ============================================================================ +16:10:37 ============================================================================ +16:10:37 Slot Id : <185> +16:10:37 Transaction Type : RESPONSE +16:10:37 Received From : +16:10:37 ============================================================================ +16:10:37 FNo. Len. Field Value +16:10:37 ============================================================================ +16:10:37 [ 1] [ 4] [0210] +16:10:37 [ 2] [ 16] [6688990103062202] +16:10:37 [ 3] [ 6] [301000] +16:10:37 [ 4] [ 12] [000000000000] +16:10:37 [ 7] [ 10] [0320161031] +16:10:37 [ 11] [ 6] [794299] +16:10:37 [ 12] [ 6] [161031] +16:10:37 [ 13] [ 4] [0320] +16:10:37 [ 15] [ 4] [0320] +16:10:37 [ 18] [ 4] [6011] +16:10:37 [ 22] [ 3] [021] +16:10:37 [ 32] [ 6] [621354] +16:10:37 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:10:37 [ 37] [ 12] [507902577801] +16:10:37 [ 38] [ 6] [160827] +16:10:37 [ 39] [ 2] [55] +16:10:37 [ 41] [ 8] [05004000] +16:10:37 [ 49] [ 3] [418] +16:10:37 ============================================================================ +16:10:37 Sending to : +16:10:37 ============================================================================ +16:10:37 + + +waiting on router queue for slot.... +16:10:38 ============================================================================ +16:10:38 Slot Id : <232> +16:10:38 Transaction Type : REQUEST +16:10:38 Received From : +16:10:38 ============================================================================ +16:10:38 FNo. Len. Field Value +16:10:38 ============================================================================ +16:10:38 [ 1] [ 4] [0200] +16:10:38 [ 2] [ 16] [6213545000988752] +16:10:38 [ 3] [ 6] [010000] +16:10:38 [ 4] [ 12] [000010000000] +16:10:38 [ 7] [ 10] [0320090944] +16:10:38 [ 11] [ 6] [270268] +16:10:38 [ 12] [ 6] [160944] +16:10:38 [ 13] [ 4] [0320] +16:10:38 [ 14] [ 4] [4912] +16:10:38 [ 15] [ 4] [0320] +16:10:38 [ 18] [ 4] [6011] +16:10:38 [ 19] [ 3] [418] +16:10:38 [ 22] [ 3] [021] +16:10:38 [ 25] [ 2] [01] +16:10:38 [ 28] [ 9] [D00002000] +16:10:38 [ 32] [ 6] [180893] +16:10:38 [ 35] [ 32] [6213545000988752=491212018875978] +16:10:38 [ 37] [ 12] [507909270268] +16:10:38 [ 41] [ 8] [0243VTKS] +16:10:38 [ 42] [ 15] [999999 ] +16:10:38 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:10:38 [ 49] [ 3] [418] +16:10:38 [ 52] [ 16] [CE02CD2C647B5939] +16:10:38 ============================================================================ +16:10:38 + + +waiting on router queue for slot.... +16:10:38 Sending to : +16:10:38 ============================================================================ +16:10:38 Sending to : +16:10:38 ============================================================================ +16:10:38 ============================================================================ +16:10:38 Slot Id : <232> +16:10:38 Transaction Type : REQUEST +16:10:38 Received From : +16:10:38 ============================================================================ +16:10:38 FNo. Len. Field Value +16:10:38 ============================================================================ +16:10:38 [ 1] [ 4] [0200] +16:10:38 [ 2] [ 16] [6213545000988752] +16:10:38 [ 3] [ 6] [010000] +16:10:38 [ 4] [ 12] [000010000000] +16:10:38 [ 7] [ 10] [0320090944] +16:10:38 [ 11] [ 6] [270268] +16:10:38 [ 12] [ 6] [160944] +16:10:38 [ 13] [ 4] [0320] +16:10:38 [ 14] [ 4] [4912] +16:10:38 [ 15] [ 4] [0320] +16:10:38 [ 18] [ 4] [6011] +16:10:38 [ 19] [ 3] [418] +16:10:38 [ 22] [ 3] [021] +16:10:38 [ 25] [ 2] [01] +16:10:38 [ 28] [ 9] [D00002000] +16:10:38 [ 32] [ 6] [180893] +16:10:38 [ 35] [ 32] [6213545000988752=491212018875978] +16:10:38 [ 37] [ 12] [507909270268] +16:10:38 [ 41] [ 8] [0243VTKS] +16:10:38 [ 42] [ 15] [999999 ] +16:10:38 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:10:38 [ 49] [ 3] [418] +16:10:38 [ 52] [ 16] [CE02CD2C647B5939] +16:10:38 ============================================================================ +16:10:38 + + +waiting on router queue for slot.... +16:10:38 Sending to : +16:10:38 ============================================================================ +16:10:38 ============================================================================ +16:10:38 Slot Id : <185> +16:10:38 Transaction Type : RESPONSE +16:10:38 Received From : +16:10:38 ============================================================================ +16:10:38 FNo. Len. Field Value +16:10:38 ============================================================================ +16:10:38 [ 1] [ 4] [0210] +16:10:38 [ 2] [ 16] [6688990103062202] +16:10:38 [ 3] [ 6] [301000] +16:10:38 [ 4] [ 12] [000000000000] +16:10:38 [ 7] [ 10] [0320161031] +16:10:38 [ 11] [ 6] [794299] +16:10:38 [ 12] [ 6] [161031] +16:10:38 [ 13] [ 4] [0320] +16:10:38 [ 15] [ 4] [0320] +16:10:38 [ 18] [ 4] [6011] +16:10:38 [ 22] [ 3] [021] +16:10:38 [ 32] [ 6] [621354] +16:10:38 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:10:38 [ 37] [ 12] [507902577801] +16:10:38 [ 38] [ 6] [160827] +16:10:38 [ 39] [ 2] [55] +16:10:38 [ 41] [ 8] [05004000] +16:10:38 [ 49] [ 3] [418] +16:10:38 ============================================================================ +16:10:38 Calculate Source COMM Id = 0 +16:10:38 ============================================================================ +16:10:38 + + +waiting on router queue for slot.... +16:10:38 ============================================================================ +16:10:38 Slot Id : <232> +16:10:38 Transaction Type : REQUEST +16:10:38 Received From : +16:10:38 ============================================================================ +16:10:38 FNo. Len. Field Value +16:10:38 ============================================================================ +16:10:38 [ 1] [ 4] [0200] +16:10:38 [ 2] [ 16] [6213545000988752] +16:10:38 [ 3] [ 6] [010000] +16:10:38 [ 4] [ 12] [000010000000] +16:10:38 [ 7] [ 10] [0320090944] +16:10:38 [ 11] [ 6] [270268] +16:10:38 [ 12] [ 6] [160944] +16:10:38 [ 13] [ 4] [0320] +16:10:38 [ 14] [ 4] [4912] +16:10:38 [ 15] [ 4] [0320] +16:10:38 [ 18] [ 4] [6011] +16:10:38 [ 19] [ 3] [418] +16:10:38 [ 22] [ 3] [021] +16:10:38 [ 25] [ 2] [01] +16:10:38 [ 28] [ 9] [D00002000] +16:10:38 [ 32] [ 6] [180893] +16:10:38 [ 35] [ 32] [6213545000988752=491212018875978] +16:10:38 [ 37] [ 12] [507909270268] +16:10:38 [ 41] [ 8] [0243VTKS] +16:10:38 [ 42] [ 15] [999999 ] +16:10:38 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:10:38 [ 49] [ 3] [418] +16:10:38 [ 52] [ 16] [AC73E8C52951E2ED] +16:10:38 ============================================================================ +16:10:38 + + +waiting on router queue for slot.... +16:10:38 Sending to : <0> +16:10:38 ============================================================================ +16:10:39 ============================================================================ +16:10:39 Slot Id : <232> +16:10:39 Transaction Type : RESPONSE +16:10:39 Received From : +16:10:39 ============================================================================ +16:10:39 FNo. Len. Field Value +16:10:39 ============================================================================ +16:10:39 [ 1] [ 4] [0210] +16:10:39 [ 2] [ 16] [6213545000988752] +16:10:39 [ 3] [ 6] [010000] +16:10:39 [ 4] [ 12] [000010000000] +16:10:39 [ 7] [ 10] [0320090944] +16:10:39 [ 11] [ 6] [270268] +16:10:39 [ 12] [ 6] [160944] +16:10:39 [ 13] [ 4] [0320] +16:10:39 [ 15] [ 4] [0320] +16:10:39 [ 18] [ 4] [6011] +16:10:39 [ 19] [ 3] [418] +16:10:39 [ 32] [ 6] [180893] +16:10:39 [ 35] [ 32] [6213545000988752=491212018875978] +16:10:39 [ 37] [ 12] [507909270268] +16:10:39 [ 38] [ 6] [623950] +16:10:39 [ 39] [ 2] [00] +16:10:39 [ 41] [ 8] [0243VTKS] +16:10:39 [ 49] [ 3] [418] +16:10:39 [ 54] [ 40] [0001418C0001325740770002418C000132574077] +16:10:39 ============================================================================ +16:10:39 Sending to : +16:10:39 ============================================================================ +16:10:39 + + +waiting on router queue for slot.... +16:10:40 ============================================================================ +16:10:40 Slot Id : <232> +16:10:40 Transaction Type : RESPONSE +16:10:40 Received From : +16:10:40 ============================================================================ +16:10:40 FNo. Len. Field Value +16:10:40 ============================================================================ +16:10:40 [ 1] [ 4] [0210] +16:10:40 [ 2] [ 16] [6213545000988752] +16:10:40 [ 3] [ 6] [010000] +16:10:40 [ 4] [ 12] [000010000000] +16:10:40 [ 7] [ 10] [0320090944] +16:10:40 [ 11] [ 6] [270268] +16:10:40 [ 12] [ 6] [160944] +16:10:40 [ 13] [ 4] [0320] +16:10:40 [ 15] [ 4] [0320] +16:10:40 [ 18] [ 4] [6011] +16:10:40 [ 19] [ 3] [418] +16:10:40 [ 32] [ 6] [180893] +16:10:40 [ 35] [ 32] [6213545000988752=491212018875978] +16:10:40 [ 37] [ 12] [507909270268] +16:10:40 [ 38] [ 6] [623950] +16:10:40 [ 39] [ 2] [00] +16:10:40 [ 41] [ 8] [0243VTKS] +16:10:40 [ 49] [ 3] [418] +16:10:40 [ 54] [ 40] [0001418C0001325740770002418C000132574077] +16:10:40 ============================================================================ +16:10:40 Calculate Source COMM Id = 2 +16:10:40 ============================================================================ +16:10:40 + + +waiting on router queue for slot.... +16:10:42 ============================================================================ +16:10:42 Slot Id : <189> +16:10:42 Transaction Type : REQUEST +16:10:42 Received From : +16:10:42 ============================================================================ +16:10:42 FNo. Len. Field Value +16:10:42 ============================================================================ +16:10:42 [ 1] [ 4] [0200] +16:10:42 [ 2] [ 16] [1808931000000792] +16:10:42 [ 3] [ 6] [011000] +16:10:42 [ 4] [ 12] [000010000000] +16:10:42 [ 7] [ 10] [0320161037] +16:10:42 [ 11] [ 6] [794316] +16:10:42 [ 12] [ 6] [161037] +16:10:42 [ 13] [ 4] [0320] +16:10:42 [ 15] [ 4] [0320] +16:10:42 [ 18] [ 4] [6011] +16:10:42 [ 22] [ 3] [900] +16:10:42 [ 25] [ 2] [02] +16:10:42 [ 28] [ 9] [D00002000] +16:10:42 [ 32] [ 6] [621354] +16:10:42 [ 35] [ 27] [1808931000000792=1803500587] +16:10:42 [ 37] [ 12] [507902661109] +16:10:42 [ 41] [ 8] [14000500] +16:10:42 [ 42] [ 15] [NATIVE ] +16:10:42 [ 43] [ 40] [VV Market Vangvieng LAO] +16:10:42 [ 49] [ 3] [418] +16:10:42 [ 52] [ 16] [53422CA12AA1B876] +16:10:42 ============================================================================ +16:10:42 + + +waiting on router queue for slot.... +16:10:42 Sending to : +16:10:42 ============================================================================ +16:10:42 Sending to : +16:10:42 ============================================================================ +16:10:42 ============================================================================ +16:10:42 Slot Id : <189> +16:10:42 Transaction Type : REQUEST +16:10:42 Received From : +16:10:42 ============================================================================ +16:10:42 FNo. Len. Field Value +16:10:42 ============================================================================ +16:10:42 [ 1] [ 4] [0200] +16:10:42 [ 2] [ 16] [1808931000000792] +16:10:42 [ 3] [ 6] [011000] +16:10:42 [ 4] [ 12] [000010000000] +16:10:42 [ 7] [ 10] [0320161037] +16:10:42 [ 11] [ 6] [794316] +16:10:42 [ 12] [ 6] [161037] +16:10:42 [ 13] [ 4] [0320] +16:10:42 [ 15] [ 4] [0320] +16:10:42 [ 18] [ 4] [6011] +16:10:42 [ 22] [ 3] [900] +16:10:42 [ 25] [ 2] [02] +16:10:42 [ 28] [ 9] [D00002000] +16:10:42 [ 32] [ 6] [621354] +16:10:42 [ 35] [ 27] [1808931000000792=1803500587] +16:10:42 [ 37] [ 12] [507902661109] +16:10:42 [ 41] [ 8] [14000500] +16:10:42 [ 42] [ 15] [NATIVE ] +16:10:42 [ 43] [ 40] [VV Market Vangvieng LAO] +16:10:42 [ 49] [ 3] [418] +16:10:42 [ 52] [ 16] [53422CA12AA1B876] +16:10:42 ============================================================================ +16:10:42 + + +waiting on router queue for slot.... +16:10:42 Sending to : +16:10:42 ============================================================================ +16:10:42 ============================================================================ +16:10:42 Slot Id : <189> +16:10:42 Transaction Type : REQUEST +16:10:42 Received From : +16:10:42 ============================================================================ +16:10:42 FNo. Len. Field Value +16:10:42 ============================================================================ +16:10:42 [ 1] [ 4] [0200] +16:10:42 [ 2] [ 16] [1808931000000792] +16:10:42 [ 3] [ 6] [011000] +16:10:42 [ 4] [ 12] [000010000000] +16:10:42 [ 7] [ 10] [0320161037] +16:10:42 [ 11] [ 6] [794316] +16:10:42 [ 12] [ 6] [161037] +16:10:42 [ 13] [ 4] [0320] +16:10:42 [ 15] [ 4] [0320] +16:10:42 [ 18] [ 4] [6011] +16:10:42 [ 22] [ 3] [900] +16:10:42 [ 25] [ 2] [02] +16:10:42 [ 28] [ 9] [D00002000] +16:10:42 [ 32] [ 6] [621354] +16:10:42 [ 35] [ 27] [1808931000000792=1803500587] +16:10:42 [ 37] [ 12] [507902661109] +16:10:42 [ 41] [ 8] [14000500] +16:10:42 [ 42] [ 15] [NATIVE ] +16:10:42 [ 43] [ 40] [VV Market Vangvieng LAO] +16:10:42 [ 49] [ 3] [418] +16:10:42 [ 52] [ 16] [1695E99AA01558C7] +16:10:42 ============================================================================ +16:10:42 + + +waiting on router queue for slot.... +16:10:42 Sending to : <2> +16:10:42 ============================================================================ +16:10:46 ============================================================================ +16:10:46 Slot Id : <149> +16:10:46 Transaction Type : REQUEST +16:10:46 Received From : +16:10:46 ============================================================================ +16:10:46 FNo. Len. Field Value +16:10:46 ============================================================================ +16:10:46 [ 1] [ 4] [0200] +16:10:46 [ 2] [ 16] [6213544000698214] +16:10:46 [ 3] [ 6] [011000] +16:10:46 [ 4] [ 12] [000064000000] +16:10:46 [ 7] [ 10] [0320090953] +16:10:46 [ 11] [ 6] [270270] +16:10:46 [ 12] [ 6] [160953] +16:10:46 [ 13] [ 4] [0320] +16:10:46 [ 14] [ 4] [4912] +16:10:46 [ 15] [ 4] [0320] +16:10:46 [ 18] [ 4] [6011] +16:10:46 [ 19] [ 3] [418] +16:10:46 [ 22] [ 3] [021] +16:10:46 [ 25] [ 2] [01] +16:10:46 [ 28] [ 9] [D00002000] +16:10:46 [ 32] [ 6] [180893] +16:10:46 [ 35] [ 32] [6213544000698214=491212019821664] +16:10:46 [ 37] [ 12] [507909270270] +16:10:46 [ 41] [ 8] [0528LPBP] +16:10:46 [ 42] [ 15] [999999 ] +16:10:46 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:10:46 [ 49] [ 3] [418] +16:10:46 [ 52] [ 16] [7D638849728E56B5] +16:10:46 ============================================================================ +16:10:46 + + +waiting on router queue for slot.... +16:10:46 Sending to : +16:10:46 ============================================================================ +16:10:46 Sending to : +16:10:46 ============================================================================ +16:10:47 ============================================================================ +16:10:47 Slot Id : <149> +16:10:47 Transaction Type : REQUEST +16:10:47 Received From : +16:10:47 ============================================================================ +16:10:47 FNo. Len. Field Value +16:10:47 ============================================================================ +16:10:47 [ 1] [ 4] [0200] +16:10:47 [ 2] [ 16] [6213544000698214] +16:10:47 [ 3] [ 6] [011000] +16:10:47 [ 4] [ 12] [000064000000] +16:10:47 [ 7] [ 10] [0320090953] +16:10:47 [ 11] [ 6] [270270] +16:10:47 [ 12] [ 6] [160953] +16:10:47 [ 13] [ 4] [0320] +16:10:47 [ 14] [ 4] [4912] +16:10:47 [ 15] [ 4] [0320] +16:10:47 [ 18] [ 4] [6011] +16:10:47 [ 19] [ 3] [418] +16:10:47 [ 22] [ 3] [021] +16:10:47 [ 25] [ 2] [01] +16:10:47 [ 28] [ 9] [D00002000] +16:10:47 [ 32] [ 6] [180893] +16:10:47 [ 35] [ 32] [6213544000698214=491212019821664] +16:10:47 [ 37] [ 12] [507909270270] +16:10:47 [ 41] [ 8] [0528LPBP] +16:10:47 [ 42] [ 15] [999999 ] +16:10:47 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:10:47 [ 49] [ 3] [418] +16:10:47 [ 52] [ 16] [7D638849728E56B5] +16:10:47 ============================================================================ +16:10:47 + + +waiting on router queue for slot.... +16:10:47 Sending to : +16:10:47 ============================================================================ +16:10:47 ============================================================================ +16:10:47 Slot Id : <149> +16:10:47 Transaction Type : REQUEST +16:10:47 Received From : +16:10:47 ============================================================================ +16:10:47 FNo. Len. Field Value +16:10:47 ============================================================================ +16:10:47 [ 1] [ 4] [0200] +16:10:47 [ 2] [ 16] [6213544000698214] +16:10:47 [ 3] [ 6] [011000] +16:10:47 [ 4] [ 12] [000064000000] +16:10:47 [ 7] [ 10] [0320090953] +16:10:47 [ 11] [ 6] [270270] +16:10:47 [ 12] [ 6] [160953] +16:10:47 [ 13] [ 4] [0320] +16:10:47 [ 14] [ 4] [4912] +16:10:47 [ 15] [ 4] [0320] +16:10:47 [ 18] [ 4] [6011] +16:10:47 [ 19] [ 3] [418] +16:10:47 [ 22] [ 3] [021] +16:10:47 [ 25] [ 2] [01] +16:10:47 [ 28] [ 9] [D00002000] +16:10:47 [ 32] [ 6] [180893] +16:10:47 [ 35] [ 32] [6213544000698214=491212019821664] +16:10:47 [ 37] [ 12] [507909270270] +16:10:47 [ 41] [ 8] [0528LPBP] +16:10:47 [ 42] [ 15] [999999 ] +16:10:47 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:10:47 [ 49] [ 3] [418] +16:10:47 [ 52] [ 16] [9DE149464778B61B] +16:10:47 ============================================================================ +16:10:47 + + +waiting on router queue for slot.... +16:10:47 Sending to : <0> +16:10:47 ============================================================================ +16:10:48 ============================================================================ +16:10:48 Slot Id : <149> +16:10:48 Transaction Type : RESPONSE +16:10:48 Received From : +16:10:48 ============================================================================ +16:10:48 FNo. Len. Field Value +16:10:48 ============================================================================ +16:10:48 [ 1] [ 4] [0210] +16:10:48 [ 2] [ 16] [6213544000698214] +16:10:48 [ 3] [ 6] [011000] +16:10:48 [ 4] [ 12] [000064000000] +16:10:48 [ 7] [ 10] [0320090953] +16:10:48 [ 11] [ 6] [270270] +16:10:48 [ 12] [ 6] [160953] +16:10:48 [ 13] [ 4] [0320] +16:10:48 [ 15] [ 4] [0320] +16:10:48 [ 18] [ 4] [6011] +16:10:48 [ 19] [ 3] [418] +16:10:48 [ 32] [ 6] [180893] +16:10:48 [ 35] [ 32] [6213544000698214=491212019821664] +16:10:48 [ 37] [ 12] [507909270270] +16:10:48 [ 38] [ 6] [542097] +16:10:48 [ 39] [ 2] [00] +16:10:48 [ 41] [ 8] [0528LPBP] +16:10:48 [ 49] [ 3] [418] +16:10:48 [ 54] [ 40] [1001418C0000054688751002418C000005468875] +16:10:48 ============================================================================ +16:10:48 Sending to : +16:10:48 ============================================================================ +16:10:48 + + +waiting on router queue for slot.... +16:10:49 ============================================================================ +16:10:49 Slot Id : <189> +16:10:49 Transaction Type : RESPONSE +16:10:49 Received From : +16:10:49 ============================================================================ +16:10:49 FNo. Len. Field Value +16:10:49 ============================================================================ +16:10:49 [ 1] [ 4] [0210] +16:10:49 [ 2] [ 16] [1808931000000792] +16:10:49 [ 3] [ 6] [011000] +16:10:49 [ 4] [ 12] [000010000000] +16:10:49 [ 6] [ 12] [000010000000] +16:10:49 [ 7] [ 10] [0320161037] +16:10:49 [ 11] [ 6] [794316] +16:10:49 [ 12] [ 6] [161037] +16:10:49 [ 13] [ 4] [0320] +16:10:49 [ 18] [ 4] [6011] +16:10:49 [ 19] [ 3] [418] +16:10:49 [ 22] [ 3] [021] +16:10:49 [ 32] [ 6] [621354] +16:10:49 [ 35] [ 27] [1808931000000792=1803500587] +16:10:49 [ 37] [ 12] [507902661109] +16:10:49 [ 38] [ 6] [794316] +16:10:49 [ 39] [ 2] [00] +16:10:49 [ 41] [ 8] [14000500] +16:10:49 [ 49] [ 3] [418] +16:10:49 [ 52] [ 16] [1695E99AA01558C7] +16:10:49 [ 54] [ 20] [1001418C000014377000] +16:10:49 ============================================================================ +16:10:49 Sending to : +16:10:49 ============================================================================ +16:10:49 + + +waiting on router queue for slot.... +16:10:49 ============================================================================ +16:10:49 Slot Id : <149> +16:10:49 Transaction Type : RESPONSE +16:10:49 Received From : +16:10:49 ============================================================================ +16:10:49 FNo. Len. Field Value +16:10:49 ============================================================================ +16:10:49 [ 1] [ 4] [0210] +16:10:49 [ 2] [ 16] [6213544000698214] +16:10:49 [ 3] [ 6] [011000] +16:10:49 [ 4] [ 12] [000064000000] +16:10:49 [ 7] [ 10] [0320090953] +16:10:49 [ 11] [ 6] [270270] +16:10:49 [ 12] [ 6] [160953] +16:10:49 [ 13] [ 4] [0320] +16:10:49 [ 15] [ 4] [0320] +16:10:49 [ 18] [ 4] [6011] +16:10:49 [ 19] [ 3] [418] +16:10:49 [ 32] [ 6] [180893] +16:10:49 [ 35] [ 32] [6213544000698214=491212019821664] +16:10:49 [ 37] [ 12] [507909270270] +16:10:49 [ 38] [ 6] [542097] +16:10:49 [ 39] [ 2] [00] +16:10:49 [ 41] [ 8] [0528LPBP] +16:10:49 [ 49] [ 3] [418] +16:10:49 [ 54] [ 40] [1001418C0000054688751002418C000005468875] +16:10:49 ============================================================================ +16:10:49 Calculate Source COMM Id = 2 +16:10:49 ============================================================================ +16:10:49 + + +waiting on router queue for slot.... +16:10:50 ============================================================================ +16:10:50 Slot Id : <189> +16:10:50 Transaction Type : RESPONSE +16:10:50 Received From : +16:10:50 ============================================================================ +16:10:50 FNo. Len. Field Value +16:10:50 ============================================================================ +16:10:50 [ 1] [ 4] [0210] +16:10:50 [ 2] [ 16] [1808931000000792] +16:10:50 [ 3] [ 6] [011000] +16:10:50 [ 4] [ 12] [000010000000] +16:10:50 [ 6] [ 12] [000010000000] +16:10:50 [ 7] [ 10] [0320161037] +16:10:50 [ 11] [ 6] [794316] +16:10:50 [ 12] [ 6] [161037] +16:10:50 [ 13] [ 4] [0320] +16:10:50 [ 18] [ 4] [6011] +16:10:50 [ 19] [ 3] [418] +16:10:50 [ 22] [ 3] [021] +16:10:50 [ 32] [ 6] [621354] +16:10:50 [ 35] [ 27] [1808931000000792=1803500587] +16:10:50 [ 37] [ 12] [507902661109] +16:10:50 [ 38] [ 6] [794316] +16:10:50 [ 39] [ 2] [00] +16:10:50 [ 41] [ 8] [14000500] +16:10:50 [ 49] [ 3] [418] +16:10:50 [ 52] [ 16] [1695E99AA01558C7] +16:10:50 [ 54] [ 20] [1001418C000014377000] +16:10:50 ============================================================================ +16:10:50 Calculate Source COMM Id = 0 +16:10:50 ============================================================================ +16:10:50 + + +waiting on router queue for slot.... +16:10:57 ============================================================================ +16:10:57 Slot Id : <168> +16:10:57 Transaction Type : REQUEST +16:10:57 Received From : +16:10:57 ============================================================================ +16:10:57 FNo. Len. Field Value +16:10:57 ============================================================================ +16:10:57 [ 1] [ 4] [0800] +16:10:57 [ 2] [ 5] [02531] +16:10:57 [ 3] [ 6] [579168] +16:10:57 [ 7] [ 10] [0320091057] +16:10:57 [ 11] [ 6] [807351] +16:10:57 [ 15] [ 10] [0320091057] +16:10:57 [ 37] [ 11] [57916807351] +16:10:57 [ 70] [ 3] [001] +16:10:57 ============================================================================ +16:10:57 + + +waiting on router queue for slot.... +16:10:57 ============================================================================ +16:10:57 Slot Id : <168> +16:10:57 Transaction Type : RESPONSE +16:10:57 Received From : +16:10:57 ============================================================================ +16:10:57 FNo. Len. Field Value +16:10:57 ============================================================================ +16:10:57 [ 1] [ 4] [0810] +16:10:57 [ 7] [ 10] [0320091057] +16:10:57 [ 11] [ 6] [807351] +16:10:57 [ 15] [ 4] [0320] +16:10:57 [ 37] [ 12] [57916807351] +16:10:57 [ 39] [ 2] [00] +16:10:57 [ 70] [ 3] [001] +16:10:57 ============================================================================ +16:10:57 Sending to : +16:10:57 ============================================================================ +16:10:57 + + +waiting on router queue for slot.... +16:11:01 ============================================================================ +16:11:01 Slot Id : <180> +16:11:01 Transaction Type : REQUEST +16:11:01 Received From : +16:11:01 ============================================================================ +16:11:01 FNo. Len. Field Value +16:11:01 ============================================================================ +16:11:01 [ 1] [ 4] [0200] +16:11:01 [ 2] [ 16] [6688990040161182] +16:11:01 [ 3] [ 6] [010000] +16:11:01 [ 4] [ 12] [000100000000] +16:11:01 [ 7] [ 10] [0320161056] +16:11:01 [ 11] [ 6] [794415] +16:11:01 [ 12] [ 6] [161056] +16:11:01 [ 13] [ 4] [0320] +16:11:01 [ 15] [ 4] [0320] +16:11:01 [ 18] [ 4] [6011] +16:11:01 [ 22] [ 3] [900] +16:11:01 [ 25] [ 2] [02] +16:11:01 [ 28] [ 9] [D00002000] +16:11:01 [ 32] [ 6] [621354] +16:11:01 [ 35] [ 37] [6688990040161182=98051261453871800000] +16:11:01 [ 37] [ 12] [507903032278] +16:11:01 [ 41] [ 8] [12002600] +16:11:01 [ 42] [ 15] [NATIVE ] +16:11:01 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +16:11:01 [ 49] [ 3] [418] +16:11:01 [ 52] [ 16] [483AE061F71D60D0] +16:11:01 ============================================================================ +16:11:01 + + +waiting on router queue for slot.... +16:11:01 Sending to : +16:11:01 ============================================================================ +16:11:01 Sending to : +16:11:01 ============================================================================ +16:11:01 ============================================================================ +16:11:01 Slot Id : <180> +16:11:01 Transaction Type : REQUEST +16:11:01 Received From : +16:11:01 ============================================================================ +16:11:01 FNo. Len. Field Value +16:11:01 ============================================================================ +16:11:01 [ 1] [ 4] [0200] +16:11:01 [ 2] [ 16] [6688990040161182] +16:11:01 [ 3] [ 6] [010000] +16:11:01 [ 4] [ 12] [000100000000] +16:11:01 [ 7] [ 10] [0320161056] +16:11:01 [ 11] [ 6] [794415] +16:11:01 [ 12] [ 6] [161056] +16:11:01 [ 13] [ 4] [0320] +16:11:01 [ 15] [ 4] [0320] +16:11:01 [ 18] [ 4] [6011] +16:11:01 [ 22] [ 3] [900] +16:11:01 [ 25] [ 2] [02] +16:11:01 [ 28] [ 9] [D00002000] +16:11:01 [ 32] [ 6] [621354] +16:11:01 [ 35] [ 37] [6688990040161182=98051261453871800000] +16:11:01 [ 37] [ 12] [507903032278] +16:11:01 [ 41] [ 8] [12002600] +16:11:01 [ 42] [ 15] [NATIVE ] +16:11:01 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +16:11:01 [ 49] [ 3] [418] +16:11:01 [ 52] [ 16] [483AE061F71D60D0] +16:11:01 ============================================================================ +16:11:01 + + +waiting on router queue for slot.... +16:11:01 Sending to : +16:11:01 ============================================================================ +16:11:01 ============================================================================ +16:11:01 Slot Id : <180> +16:11:01 Transaction Type : REQUEST +16:11:01 Received From : +16:11:01 ============================================================================ +16:11:01 FNo. Len. Field Value +16:11:01 ============================================================================ +16:11:01 [ 1] [ 4] [0200] +16:11:01 [ 2] [ 16] [6688990040161182] +16:11:01 [ 3] [ 6] [010000] +16:11:01 [ 4] [ 12] [000100000000] +16:11:01 [ 7] [ 10] [0320161056] +16:11:01 [ 11] [ 6] [794415] +16:11:01 [ 12] [ 6] [161056] +16:11:01 [ 13] [ 4] [0320] +16:11:01 [ 15] [ 4] [0320] +16:11:01 [ 18] [ 4] [6011] +16:11:01 [ 22] [ 3] [900] +16:11:01 [ 25] [ 2] [02] +16:11:01 [ 28] [ 9] [D00002000] +16:11:01 [ 32] [ 6] [621354] +16:11:01 [ 35] [ 37] [6688990040161182=98051261453871800000] +16:11:01 [ 37] [ 12] [507903032278] +16:11:01 [ 41] [ 8] [12002600] +16:11:01 [ 42] [ 15] [NATIVE ] +16:11:01 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +16:11:01 [ 49] [ 3] [418] +16:11:01 [ 52] [ 16] [479764BFFBA46A06] +16:11:01 ============================================================================ +16:11:01 + + +waiting on router queue for slot.... +16:11:01 Sending to : <4> +16:11:01 ============================================================================ +16:11:01 ============================================================================ +16:11:01 Slot Id : <180> +16:11:01 Transaction Type : RESPONSE +16:11:01 Received From : +16:11:01 ============================================================================ +16:11:01 FNo. Len. Field Value +16:11:01 ============================================================================ +16:11:01 [ 1] [ 4] [0210] +16:11:01 [ 2] [ 16] [6688990040161182] +16:11:01 [ 3] [ 6] [010000] +16:11:01 [ 4] [ 12] [000100000000] +16:11:01 [ 7] [ 10] [0320161056] +16:11:01 [ 11] [ 6] [794415] +16:11:01 [ 12] [ 6] [161056] +16:11:01 [ 13] [ 4] [0320] +16:11:01 [ 15] [ 4] [0320] +16:11:01 [ 18] [ 4] [6011] +16:11:01 [ 22] [ 3] [021] +16:11:01 [ 32] [ 6] [621354] +16:11:01 [ 35] [ 37] [6688990040161182=98051261453871800000] +16:11:01 [ 37] [ 12] [507903032278] +16:11:01 [ 38] [ 6] [160851] +16:11:01 [ 39] [ 2] [55] +16:11:01 [ 41] [ 8] [12002600] +16:11:01 [ 49] [ 3] [418] +16:11:01 ============================================================================ +16:11:01 Sending to : +16:11:01 ============================================================================ +16:11:01 + + +waiting on router queue for slot.... +16:11:02 ============================================================================ +16:11:02 Slot Id : <180> +16:11:02 Transaction Type : RESPONSE +16:11:02 Received From : +16:11:02 ============================================================================ +16:11:02 FNo. Len. Field Value +16:11:02 ============================================================================ +16:11:02 [ 1] [ 4] [0210] +16:11:02 [ 2] [ 16] [6688990040161182] +16:11:02 [ 3] [ 6] [010000] +16:11:02 [ 4] [ 12] [000100000000] +16:11:02 [ 7] [ 10] [0320161056] +16:11:02 [ 11] [ 6] [794415] +16:11:02 [ 12] [ 6] [161056] +16:11:02 [ 13] [ 4] [0320] +16:11:02 [ 15] [ 4] [0320] +16:11:02 [ 18] [ 4] [6011] +16:11:02 [ 22] [ 3] [021] +16:11:02 [ 32] [ 6] [621354] +16:11:02 [ 35] [ 37] [6688990040161182=98051261453871800000] +16:11:02 [ 37] [ 12] [507903032278] +16:11:02 [ 38] [ 6] [160851] +16:11:02 [ 39] [ 2] [55] +16:11:02 [ 41] [ 8] [12002600] +16:11:02 [ 49] [ 3] [418] +16:11:02 ============================================================================ +16:11:02 Calculate Source COMM Id = 0 +16:11:02 ============================================================================ +16:11:02 + + +waiting on router queue for slot.... +16:11:03 ============================================================================ +16:11:03 Slot Id : <222> +16:11:03 Transaction Type : REQUEST +16:11:03 Received From : +16:11:03 ============================================================================ +16:11:03 FNo. Len. Field Value +16:11:03 ============================================================================ +16:11:03 [ 1] [ 4] [0800] +16:11:03 [ 7] [ 10] [0320091010] +16:11:03 [ 11] [ 6] [157183] +16:11:03 [ 70] [ 3] [301] +16:11:03 ============================================================================ +16:11:03 + + +waiting on router queue for slot.... +16:11:03 Sending to : +16:11:03 ============================================================================ +16:11:03 ============================================================================ +16:11:03 Slot Id : <222> +16:11:03 Transaction Type : RESPONSE +16:11:03 Received From : +16:11:03 ============================================================================ +16:11:03 FNo. Len. Field Value +16:11:03 ============================================================================ +16:11:03 [ 1] [ 4] [0810] +16:11:03 [ 7] [ 10] [0320091010] +16:11:03 [ 11] [ 6] [157183] +16:11:03 [ 39] [ 2] [00] +16:11:03 [ 70] [ 3] [301] +16:11:03 ============================================================================ +16:11:03 Calculate Source COMM Id = 2 +16:11:03 ============================================================================ +16:11:03 + + +waiting on router queue for slot.... +16:11:05 ============================================================================ +16:11:05 Slot Id : <229> +16:11:05 Transaction Type : REQUEST +16:11:05 Received From : +16:11:05 ============================================================================ +16:11:05 FNo. Len. Field Value +16:11:05 ============================================================================ +16:11:05 [ 1] [ 4] [0200] +16:11:05 [ 2] [ 16] [6213544001276036] +16:11:05 [ 3] [ 6] [011000] +16:11:05 [ 4] [ 12] [000200000000] +16:11:05 [ 7] [ 10] [0320161125] +16:11:05 [ 11] [ 6] [208503] +16:11:05 [ 12] [ 6] [161151] +16:11:05 [ 13] [ 4] [0320] +16:11:05 [ 14] [ 4] [4912] +16:11:05 [ 15] [ 4] [0320] +16:11:05 [ 18] [ 4] [6011] +16:11:05 [ 19] [ 3] [418] +16:11:05 [ 22] [ 3] [021] +16:11:05 [ 25] [ 2] [01] +16:11:05 [ 28] [ 9] [D00002000] +16:11:05 [ 32] [ 6] [198901] +16:11:05 [ 35] [ 32] [6213544001276036=491212017603646] +16:11:05 [ 37] [ 12] [507916208503] +16:11:05 [ 41] [ 8] [01529009] +16:11:05 [ 42] [ 15] [000000041529009] +16:11:05 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +16:11:05 [ 49] [ 3] [418] +16:11:05 [ 52] [ 16] [8EBC0277F7CD2C96] +16:11:05 ============================================================================ +16:11:05 + + +waiting on router queue for slot.... +16:11:05 Sending to : +16:11:05 ============================================================================ +16:11:05 Sending to : +16:11:05 ============================================================================ +16:11:05 ============================================================================ +16:11:05 Slot Id : <229> +16:11:05 Transaction Type : REQUEST +16:11:05 Received From : +16:11:05 ============================================================================ +16:11:05 FNo. Len. Field Value +16:11:05 ============================================================================ +16:11:05 [ 1] [ 4] [0200] +16:11:05 [ 2] [ 16] [6213544001276036] +16:11:05 [ 3] [ 6] [011000] +16:11:05 [ 4] [ 12] [000200000000] +16:11:05 [ 7] [ 10] [0320161125] +16:11:05 [ 11] [ 6] [208503] +16:11:05 [ 12] [ 6] [161151] +16:11:05 [ 13] [ 4] [0320] +16:11:05 [ 14] [ 4] [4912] +16:11:05 [ 15] [ 4] [0320] +16:11:05 [ 18] [ 4] [6011] +16:11:05 [ 19] [ 3] [418] +16:11:05 [ 22] [ 3] [021] +16:11:05 [ 25] [ 2] [01] +16:11:05 [ 28] [ 9] [D00002000] +16:11:05 [ 32] [ 6] [198901] +16:11:05 [ 35] [ 32] [6213544001276036=491212017603646] +16:11:05 [ 37] [ 12] [507916208503] +16:11:05 [ 41] [ 8] [01529009] +16:11:05 [ 42] [ 15] [000000041529009] +16:11:05 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +16:11:05 [ 49] [ 3] [418] +16:11:05 [ 52] [ 16] [8EBC0277F7CD2C96] +16:11:05 ============================================================================ +16:11:05 + + +waiting on router queue for slot.... +16:11:05 Sending to : +16:11:05 ============================================================================ +16:11:05 ============================================================================ +16:11:05 Slot Id : <229> +16:11:05 Transaction Type : REQUEST +16:11:05 Received From : +16:11:05 ============================================================================ +16:11:05 FNo. Len. Field Value +16:11:05 ============================================================================ +16:11:05 [ 1] [ 4] [0200] +16:11:05 [ 2] [ 16] [6213544001276036] +16:11:05 [ 3] [ 6] [011000] +16:11:05 [ 4] [ 12] [000200000000] +16:11:05 [ 7] [ 10] [0320161125] +16:11:05 [ 11] [ 6] [208503] +16:11:05 [ 12] [ 6] [161151] +16:11:05 [ 13] [ 4] [0320] +16:11:05 [ 14] [ 4] [4912] +16:11:05 [ 15] [ 4] [0320] +16:11:05 [ 18] [ 4] [6011] +16:11:05 [ 19] [ 3] [418] +16:11:05 [ 22] [ 3] [021] +16:11:05 [ 25] [ 2] [01] +16:11:05 [ 28] [ 9] [D00002000] +16:11:05 [ 32] [ 6] [198901] +16:11:05 [ 35] [ 32] [6213544001276036=491212017603646] +16:11:05 [ 37] [ 12] [507916208503] +16:11:05 [ 41] [ 8] [01529009] +16:11:05 [ 42] [ 15] [000000041529009] +16:11:05 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +16:11:05 [ 49] [ 3] [418] +16:11:05 [ 52] [ 16] [6C541C1E224BEF4A] +16:11:05 ============================================================================ +16:11:05 + + +waiting on router queue for slot.... +16:11:05 Sending to : <0> +16:11:05 ============================================================================ +16:11:05 ============================================================================ +16:11:05 Slot Id : <229> +16:11:05 Transaction Type : RESPONSE +16:11:05 Received From : +16:11:05 ============================================================================ +16:11:05 FNo. Len. Field Value +16:11:05 ============================================================================ +16:11:05 [ 1] [ 4] [0210] +16:11:05 [ 2] [ 16] [6213544001276036] +16:11:05 [ 3] [ 6] [011000] +16:11:05 [ 4] [ 12] [000200000000] +16:11:05 [ 7] [ 10] [0320161125] +16:11:05 [ 11] [ 6] [208503] +16:11:05 [ 12] [ 6] [161151] +16:11:05 [ 13] [ 4] [0320] +16:11:05 [ 15] [ 4] [0320] +16:11:05 [ 18] [ 4] [6011] +16:11:05 [ 19] [ 3] [418] +16:11:05 [ 22] [ 3] [021] +16:11:05 [ 32] [ 6] [198901] +16:11:05 [ 35] [ 32] [6213544001276036=491212017603646] +16:11:05 [ 37] [ 12] [507916208503] +16:11:05 [ 39] [ 2] [61] +16:11:05 [ 41] [ 8] [01529009] +16:11:05 [ 49] [ 3] [418] +16:11:05 ============================================================================ +16:11:05 Sending to : +16:11:05 ============================================================================ +16:11:05 + + +waiting on router queue for slot.... +16:11:06 ============================================================================ +16:11:06 Slot Id : <229> +16:11:06 Transaction Type : RESPONSE +16:11:06 Received From : +16:11:06 ============================================================================ +16:11:06 FNo. Len. Field Value +16:11:06 ============================================================================ +16:11:06 [ 1] [ 4] [0210] +16:11:06 [ 2] [ 16] [6213544001276036] +16:11:06 [ 3] [ 6] [011000] +16:11:06 [ 4] [ 12] [000200000000] +16:11:06 [ 7] [ 10] [0320161125] +16:11:06 [ 11] [ 6] [208503] +16:11:06 [ 12] [ 6] [161151] +16:11:06 [ 13] [ 4] [0320] +16:11:06 [ 15] [ 4] [0320] +16:11:06 [ 18] [ 4] [6011] +16:11:06 [ 19] [ 3] [418] +16:11:06 [ 22] [ 3] [021] +16:11:06 [ 32] [ 6] [198901] +16:11:06 [ 35] [ 32] [6213544001276036=491212017603646] +16:11:06 [ 37] [ 12] [507916208503] +16:11:06 [ 39] [ 2] [61] +16:11:06 [ 41] [ 8] [01529009] +16:11:06 [ 49] [ 3] [418] +16:11:06 ============================================================================ +16:11:06 Calculate Source COMM Id = 5 +16:11:06 ============================================================================ +16:11:06 + + +waiting on router queue for slot.... +16:11:07 ============================================================================ +16:11:07 Slot Id : <174> +16:11:07 Transaction Type : REQUEST +16:11:07 Received From : +16:11:07 ============================================================================ +16:11:07 FNo. Len. Field Value +16:11:07 ============================================================================ +16:11:07 [ 1] [ 4] [0200] +16:11:07 [ 2] [ 16] [6688990103062202] +16:11:07 [ 3] [ 6] [301000] +16:11:07 [ 4] [ 12] [000000000000] +16:11:07 [ 7] [ 10] [0320161102] +16:11:07 [ 11] [ 6] [794449] +16:11:07 [ 12] [ 6] [161102] +16:11:07 [ 13] [ 4] [0320] +16:11:07 [ 15] [ 4] [0320] +16:11:07 [ 18] [ 4] [6011] +16:11:07 [ 22] [ 3] [900] +16:11:07 [ 25] [ 2] [02] +16:11:07 [ 28] [ 9] [D00000000] +16:11:07 [ 32] [ 6] [621354] +16:11:07 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:11:07 [ 37] [ 12] [507902577802] +16:11:07 [ 41] [ 8] [05004000] +16:11:07 [ 42] [ 15] [NATIVE ] +16:11:07 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:11:07 [ 49] [ 3] [418] +16:11:07 [ 52] [ 16] [4B8963017222C656] +16:11:07 ============================================================================ +16:11:07 + + +waiting on router queue for slot.... +16:11:07 Sending to : +16:11:07 ============================================================================ +16:11:07 Sending to : +16:11:07 ============================================================================ +16:11:07 ============================================================================ +16:11:07 Slot Id : <174> +16:11:07 Transaction Type : REQUEST +16:11:07 Received From : +16:11:07 ============================================================================ +16:11:07 FNo. Len. Field Value +16:11:07 ============================================================================ +16:11:07 [ 1] [ 4] [0200] +16:11:07 [ 2] [ 16] [6688990103062202] +16:11:07 [ 3] [ 6] [301000] +16:11:07 [ 4] [ 12] [000000000000] +16:11:07 [ 7] [ 10] [0320161102] +16:11:07 [ 11] [ 6] [794449] +16:11:07 [ 12] [ 6] [161102] +16:11:07 [ 13] [ 4] [0320] +16:11:07 [ 15] [ 4] [0320] +16:11:07 [ 18] [ 4] [6011] +16:11:07 [ 22] [ 3] [900] +16:11:07 [ 25] [ 2] [02] +16:11:07 [ 28] [ 9] [D00000000] +16:11:07 [ 32] [ 6] [621354] +16:11:07 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:11:07 [ 37] [ 12] [507902577802] +16:11:07 [ 41] [ 8] [05004000] +16:11:07 [ 42] [ 15] [NATIVE ] +16:11:07 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:11:07 [ 49] [ 3] [418] +16:11:07 [ 52] [ 16] [4B8963017222C656] +16:11:07 ============================================================================ +16:11:07 + + +waiting on router queue for slot.... +16:11:07 Sending to : +16:11:07 ============================================================================ +16:11:07 ============================================================================ +16:11:07 Slot Id : <174> +16:11:07 Transaction Type : REQUEST +16:11:07 Received From : +16:11:07 ============================================================================ +16:11:07 FNo. Len. Field Value +16:11:07 ============================================================================ +16:11:07 [ 1] [ 4] [0200] +16:11:07 [ 2] [ 16] [6688990103062202] +16:11:07 [ 3] [ 6] [301000] +16:11:07 [ 4] [ 12] [000000000000] +16:11:07 [ 7] [ 10] [0320161102] +16:11:07 [ 11] [ 6] [794449] +16:11:07 [ 12] [ 6] [161102] +16:11:07 [ 13] [ 4] [0320] +16:11:07 [ 15] [ 4] [0320] +16:11:07 [ 18] [ 4] [6011] +16:11:07 [ 22] [ 3] [900] +16:11:07 [ 25] [ 2] [02] +16:11:07 [ 28] [ 9] [D00000000] +16:11:07 [ 32] [ 6] [621354] +16:11:07 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:11:07 [ 37] [ 12] [507902577802] +16:11:07 [ 41] [ 8] [05004000] +16:11:07 [ 42] [ 15] [NATIVE ] +16:11:07 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:11:07 [ 49] [ 3] [418] +16:11:07 [ 52] [ 16] [08D944C385832978] +16:11:07 ============================================================================ +16:11:07 + + +waiting on router queue for slot.... +16:11:07 Sending to : <4> +16:11:07 ============================================================================ +16:11:08 ============================================================================ +16:11:08 Slot Id : <174> +16:11:08 Transaction Type : RESPONSE +16:11:08 Received From : +16:11:08 ============================================================================ +16:11:08 FNo. Len. Field Value +16:11:08 ============================================================================ +16:11:08 [ 1] [ 4] [0210] +16:11:08 [ 2] [ 16] [6688990103062202] +16:11:08 [ 3] [ 6] [301000] +16:11:08 [ 4] [ 12] [000000000000] +16:11:08 [ 7] [ 10] [0320161102] +16:11:08 [ 11] [ 6] [794449] +16:11:08 [ 12] [ 6] [161102] +16:11:08 [ 13] [ 4] [0320] +16:11:08 [ 15] [ 4] [0320] +16:11:08 [ 18] [ 4] [6011] +16:11:08 [ 22] [ 3] [021] +16:11:08 [ 32] [ 6] [621354] +16:11:08 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:11:08 [ 37] [ 12] [507902577802] +16:11:08 [ 38] [ 6] [160858] +16:11:08 [ 39] [ 2] [55] +16:11:08 [ 41] [ 8] [05004000] +16:11:08 [ 49] [ 3] [418] +16:11:08 ============================================================================ +16:11:08 Sending to : +16:11:08 ============================================================================ +16:11:08 + + +waiting on router queue for slot.... +16:11:08 ============================================================================ +16:11:08 Slot Id : <174> +16:11:08 Transaction Type : RESPONSE +16:11:08 Received From : +16:11:08 ============================================================================ +16:11:08 FNo. Len. Field Value +16:11:08 ============================================================================ +16:11:08 [ 1] [ 4] [0210] +16:11:08 [ 2] [ 16] [6688990103062202] +16:11:08 [ 3] [ 6] [301000] +16:11:08 [ 4] [ 12] [000000000000] +16:11:08 [ 7] [ 10] [0320161102] +16:11:08 [ 11] [ 6] [794449] +16:11:08 [ 12] [ 6] [161102] +16:11:08 [ 13] [ 4] [0320] +16:11:08 [ 15] [ 4] [0320] +16:11:08 [ 18] [ 4] [6011] +16:11:08 [ 22] [ 3] [021] +16:11:08 [ 32] [ 6] [621354] +16:11:08 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:11:08 [ 37] [ 12] [507902577802] +16:11:08 [ 38] [ 6] [160858] +16:11:08 [ 39] [ 2] [55] +16:11:08 [ 41] [ 8] [05004000] +16:11:08 [ 49] [ 3] [418] +16:11:08 ============================================================================ +16:11:08 Calculate Source COMM Id = 0 +16:11:08 ============================================================================ +16:11:08 + + +waiting on router queue for slot.... +16:11:13 ============================================================================ +16:11:13 Slot Id : <173> +16:11:13 Transaction Type : REQUEST +16:11:13 Received From : +16:11:13 ============================================================================ +16:11:13 FNo. Len. Field Value +16:11:13 ============================================================================ +16:11:13 [ 1] [ 4] [0800] +16:11:13 [ 7] [ 10] [0320091020] +16:11:13 [ 11] [ 6] [157184] +16:11:13 [ 70] [ 3] [301] +16:11:13 ============================================================================ +16:11:13 + + +waiting on router queue for slot.... +16:11:13 Sending to : +16:11:13 ============================================================================ +16:11:13 ============================================================================ +16:11:13 Slot Id : <173> +16:11:13 Transaction Type : RESPONSE +16:11:13 Received From : +16:11:13 ============================================================================ +16:11:13 FNo. Len. Field Value +16:11:13 ============================================================================ +16:11:13 [ 1] [ 4] [0810] +16:11:13 [ 7] [ 10] [0320091020] +16:11:13 [ 11] [ 6] [157184] +16:11:13 [ 39] [ 2] [00] +16:11:13 [ 70] [ 3] [301] +16:11:13 ============================================================================ +16:11:13 Calculate Source COMM Id = 2 +16:11:13 ============================================================================ +16:11:13 + + +waiting on router queue for slot.... +16:11:22 ============================================================================ +16:11:22 Slot Id : <188> +16:11:22 Transaction Type : REQUEST +16:11:22 Received From : +16:11:22 ============================================================================ +16:11:22 FNo. Len. Field Value +16:11:22 ============================================================================ +16:11:22 [ 1] [ 4] [0200] +16:11:22 [ 2] [ 16] [6688990603113109] +16:11:22 [ 3] [ 6] [010000] +16:11:22 [ 4] [ 12] [000030000000] +16:11:22 [ 7] [ 10] [0320161117] +16:11:22 [ 11] [ 6] [794533] +16:11:22 [ 12] [ 6] [161117] +16:11:22 [ 13] [ 4] [0320] +16:11:22 [ 15] [ 4] [0320] +16:11:22 [ 18] [ 4] [6011] +16:11:22 [ 22] [ 3] [900] +16:11:22 [ 25] [ 2] [02] +16:11:22 [ 28] [ 9] [D00002000] +16:11:22 [ 32] [ 6] [621354] +16:11:22 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:11:22 [ 37] [ 12] [507903345186] +16:11:22 [ 41] [ 8] [13001400] +16:11:22 [ 42] [ 15] [NATIVE ] +16:11:22 [ 43] [ 40] [Kham Unit Kham LAO] +16:11:22 [ 49] [ 3] [418] +16:11:22 [ 52] [ 16] [DCEDFC0BFC33D901] +16:11:22 ============================================================================ +16:11:22 + + +waiting on router queue for slot.... +16:11:22 Sending to : +16:11:22 ============================================================================ +16:11:22 Sending to : +16:11:22 ============================================================================ +16:11:22 ============================================================================ +16:11:22 Slot Id : <246> +16:11:22 Transaction Type : REQUEST +16:11:22 Received From : +16:11:22 ============================================================================ +16:11:22 FNo. Len. Field Value +16:11:22 ============================================================================ +16:11:22 [ 1] [ 4] [0800] +16:11:22 [ 7] [ 10] [0320090912] +16:11:22 [ 11] [ 6] [063192] +16:11:22 [ 37] [ 12] [57916063192] +16:11:22 [ 70] [ 3] [301] +16:11:22 ============================================================================ +16:11:22 + + +waiting on router queue for slot.... +16:11:22 Sending to : +16:11:22 ============================================================================ +16:11:22 ============================================================================ +16:11:22 Slot Id : <246> +16:11:22 Transaction Type : RESPONSE +16:11:22 Received From : +16:11:22 ============================================================================ +16:11:22 FNo. Len. Field Value +16:11:22 ============================================================================ +16:11:22 [ 1] [ 4] [0810] +16:11:22 [ 7] [ 10] [0320090912] +16:11:22 [ 11] [ 6] [063192] +16:11:22 [ 37] [ 12] [579160631920] +16:11:22 [ 39] [ 2] [00] +16:11:22 [ 70] [ 3] [810] +16:11:22 ============================================================================ +16:11:22 Calculate Source COMM Id = 4 +16:11:22 ============================================================================ +16:11:22 + + +waiting on router queue for slot.... +16:11:22 ============================================================================ +16:11:22 Slot Id : <188> +16:11:22 Transaction Type : REQUEST +16:11:22 Received From : +16:11:22 ============================================================================ +16:11:22 FNo. Len. Field Value +16:11:22 ============================================================================ +16:11:22 [ 1] [ 4] [0200] +16:11:22 [ 2] [ 16] [6688990603113109] +16:11:22 [ 3] [ 6] [010000] +16:11:22 [ 4] [ 12] [000030000000] +16:11:22 [ 7] [ 10] [0320161117] +16:11:22 [ 11] [ 6] [794533] +16:11:22 [ 12] [ 6] [161117] +16:11:22 [ 13] [ 4] [0320] +16:11:22 [ 15] [ 4] [0320] +16:11:22 [ 18] [ 4] [6011] +16:11:22 [ 22] [ 3] [900] +16:11:22 [ 25] [ 2] [02] +16:11:22 [ 28] [ 9] [D00002000] +16:11:22 [ 32] [ 6] [621354] +16:11:22 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:11:22 [ 37] [ 12] [507903345186] +16:11:22 [ 41] [ 8] [13001400] +16:11:22 [ 42] [ 15] [NATIVE ] +16:11:22 [ 43] [ 40] [Kham Unit Kham LAO] +16:11:22 [ 49] [ 3] [418] +16:11:22 [ 52] [ 16] [DCEDFC0BFC33D901] +16:11:22 ============================================================================ +16:11:22 + + +waiting on router queue for slot.... +16:11:22 Sending to : +16:11:22 ============================================================================ +16:11:22 ============================================================================ +16:11:22 Slot Id : <188> +16:11:22 Transaction Type : REQUEST +16:11:22 Received From : +16:11:22 ============================================================================ +16:11:22 FNo. Len. Field Value +16:11:22 ============================================================================ +16:11:22 [ 1] [ 4] [0200] +16:11:22 [ 2] [ 16] [6688990603113109] +16:11:22 [ 3] [ 6] [010000] +16:11:22 [ 4] [ 12] [000030000000] +16:11:22 [ 7] [ 10] [0320161117] +16:11:22 [ 11] [ 6] [794533] +16:11:22 [ 12] [ 6] [161117] +16:11:22 [ 13] [ 4] [0320] +16:11:22 [ 15] [ 4] [0320] +16:11:22 [ 18] [ 4] [6011] +16:11:22 [ 22] [ 3] [900] +16:11:22 [ 25] [ 2] [02] +16:11:22 [ 28] [ 9] [D00002000] +16:11:22 [ 32] [ 6] [621354] +16:11:22 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:11:22 [ 37] [ 12] [507903345186] +16:11:22 [ 41] [ 8] [13001400] +16:11:22 [ 42] [ 15] [NATIVE ] +16:11:22 [ 43] [ 40] [Kham Unit Kham LAO] +16:11:22 [ 49] [ 3] [418] +16:11:22 [ 52] [ 16] [412F8B7442D5D4CF] +16:11:22 ============================================================================ +16:11:22 + + +waiting on router queue for slot.... +16:11:22 Sending to : <4> +16:11:22 ============================================================================ +16:11:23 ============================================================================ +16:11:23 Slot Id : <188> +16:11:23 Transaction Type : RESPONSE +16:11:23 Received From : +16:11:23 ============================================================================ +16:11:23 FNo. Len. Field Value +16:11:23 ============================================================================ +16:11:23 [ 1] [ 4] [0210] +16:11:23 [ 2] [ 16] [6688990603113109] +16:11:23 [ 3] [ 6] [010000] +16:11:23 [ 4] [ 12] [000030000000] +16:11:23 [ 11] [ 6] [794533] +16:11:23 [ 12] [ 6] [161117] +16:11:23 [ 15] [ 4] [0320] +16:11:23 [ 18] [ 4] [6011] +16:11:23 [ 32] [ 6] [621354] +16:11:23 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:11:23 [ 37] [ 12] [507903345186] +16:11:23 [ 38] [ 6] [533903] +16:11:23 [ 39] [ 2] [00] +16:11:23 [ 41] [ 8] [13001400] +16:11:23 [ 49] [ 3] [418] +16:11:23 [ 54] [ 20] [0002418C000197030538] +16:11:23 ============================================================================ +16:11:23 Sending to : +16:11:23 ============================================================================ +16:11:23 + + +waiting on router queue for slot.... +16:11:25 ============================================================================ +16:11:25 Slot Id : <188> +16:11:25 Transaction Type : RESPONSE +16:11:25 Received From : +16:11:25 ============================================================================ +16:11:25 FNo. Len. Field Value +16:11:25 ============================================================================ +16:11:25 [ 1] [ 4] [0210] +16:11:25 [ 2] [ 16] [6688990603113109] +16:11:25 [ 3] [ 6] [010000] +16:11:25 [ 4] [ 12] [000030000000] +16:11:25 [ 11] [ 6] [794533] +16:11:25 [ 12] [ 6] [161117] +16:11:25 [ 15] [ 4] [0320] +16:11:25 [ 18] [ 4] [6011] +16:11:25 [ 32] [ 6] [621354] +16:11:25 [ 35] [ 37] [6688990603113109=44060061310962700000] +16:11:25 [ 37] [ 12] [507903345186] +16:11:25 [ 38] [ 6] [533903] +16:11:25 [ 39] [ 2] [00] +16:11:25 [ 41] [ 8] [13001400] +16:11:25 [ 49] [ 3] [418] +16:11:25 [ 54] [ 20] [0002418C000197030538] +16:11:25 ============================================================================ +16:11:25 Calculate Source COMM Id = 0 +16:11:25 ============================================================================ +16:11:25 + + +waiting on router queue for slot.... +16:11:28 ============================================================================ +16:11:28 Slot Id : <223> +16:11:28 Transaction Type : REQUEST +16:11:28 Received From : +16:11:28 ============================================================================ +16:11:28 FNo. Len. Field Value +16:11:28 ============================================================================ +16:11:28 [ 1] [ 4] [0800] +16:11:28 [ 7] [ 10] [0320091035] +16:11:28 [ 11] [ 6] [157185] +16:11:28 [ 70] [ 3] [301] +16:11:28 ============================================================================ +16:11:28 + + +waiting on router queue for slot.... +16:11:28 Sending to : +16:11:28 ============================================================================ +16:11:28 ============================================================================ +16:11:28 Slot Id : <223> +16:11:28 Transaction Type : RESPONSE +16:11:28 Received From : +16:11:28 ============================================================================ +16:11:28 FNo. Len. Field Value +16:11:28 ============================================================================ +16:11:28 [ 1] [ 4] [0810] +16:11:28 [ 7] [ 10] [0320091035] +16:11:28 [ 11] [ 6] [157185] +16:11:28 [ 39] [ 2] [00] +16:11:28 [ 70] [ 3] [301] +16:11:28 ============================================================================ +16:11:28 Calculate Source COMM Id = 2 +16:11:28 ============================================================================ +16:11:28 + + +waiting on router queue for slot.... +16:11:33 ============================================================================ +16:11:33 Slot Id : <215> +16:11:33 Transaction Type : REQUEST +16:11:33 Received From : +16:11:33 ============================================================================ +16:11:33 FNo. Len. Field Value +16:11:33 ============================================================================ +16:11:33 [ 1] [ 4] [0200] +16:11:33 [ 2] [ 16] [6688990040161182] +16:11:33 [ 3] [ 6] [010000] +16:11:33 [ 4] [ 12] [000100000000] +16:11:33 [ 7] [ 10] [0320161128] +16:11:33 [ 11] [ 6] [794594] +16:11:33 [ 12] [ 6] [161128] +16:11:33 [ 13] [ 4] [0320] +16:11:33 [ 15] [ 4] [0320] +16:11:33 [ 18] [ 4] [6011] +16:11:33 [ 22] [ 3] [900] +16:11:33 [ 25] [ 2] [02] +16:11:33 [ 28] [ 9] [D00002000] +16:11:33 [ 32] [ 6] [621354] +16:11:33 [ 35] [ 37] [6688990040161182=98051261453871800000] +16:11:33 [ 37] [ 12] [507903032280] +16:11:33 [ 41] [ 8] [12002600] +16:11:33 [ 42] [ 15] [NATIVE ] +16:11:33 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +16:11:33 [ 49] [ 3] [418] +16:11:33 [ 52] [ 16] [59C184CC352DD07A] +16:11:33 ============================================================================ +16:11:33 + + +waiting on router queue for slot.... +16:11:33 Sending to : +16:11:33 ============================================================================ +16:11:33 Sending to : +16:11:33 ============================================================================ +16:11:34 ============================================================================ +16:11:34 Slot Id : <215> +16:11:34 Transaction Type : REQUEST +16:11:34 Received From : +16:11:34 ============================================================================ +16:11:34 FNo. Len. Field Value +16:11:34 ============================================================================ +16:11:34 [ 1] [ 4] [0200] +16:11:34 [ 2] [ 16] [6688990040161182] +16:11:34 [ 3] [ 6] [010000] +16:11:34 [ 4] [ 12] [000100000000] +16:11:34 [ 7] [ 10] [0320161128] +16:11:34 [ 11] [ 6] [794594] +16:11:34 [ 12] [ 6] [161128] +16:11:34 [ 13] [ 4] [0320] +16:11:34 [ 15] [ 4] [0320] +16:11:34 [ 18] [ 4] [6011] +16:11:34 [ 22] [ 3] [900] +16:11:34 [ 25] [ 2] [02] +16:11:34 [ 28] [ 9] [D00002000] +16:11:34 [ 32] [ 6] [621354] +16:11:34 [ 35] [ 37] [6688990040161182=98051261453871800000] +16:11:34 [ 37] [ 12] [507903032280] +16:11:34 [ 41] [ 8] [12002600] +16:11:34 [ 42] [ 15] [NATIVE ] +16:11:34 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +16:11:34 [ 49] [ 3] [418] +16:11:34 [ 52] [ 16] [59C184CC352DD07A] +16:11:34 ============================================================================ +16:11:34 + + +waiting on router queue for slot.... +16:11:34 Sending to : +16:11:34 ============================================================================ +16:11:34 ============================================================================ +16:11:34 Slot Id : <215> +16:11:34 Transaction Type : REQUEST +16:11:34 Received From : +16:11:34 ============================================================================ +16:11:34 FNo. Len. Field Value +16:11:34 ============================================================================ +16:11:34 [ 1] [ 4] [0200] +16:11:34 [ 2] [ 16] [6688990040161182] +16:11:34 [ 3] [ 6] [010000] +16:11:34 [ 4] [ 12] [000100000000] +16:11:34 [ 7] [ 10] [0320161128] +16:11:34 [ 11] [ 6] [794594] +16:11:34 [ 12] [ 6] [161128] +16:11:34 [ 13] [ 4] [0320] +16:11:34 [ 15] [ 4] [0320] +16:11:34 [ 18] [ 4] [6011] +16:11:34 [ 22] [ 3] [900] +16:11:34 [ 25] [ 2] [02] +16:11:34 [ 28] [ 9] [D00002000] +16:11:34 [ 32] [ 6] [621354] +16:11:34 [ 35] [ 37] [6688990040161182=98051261453871800000] +16:11:34 [ 37] [ 12] [507903032280] +16:11:34 [ 41] [ 8] [12002600] +16:11:34 [ 42] [ 15] [NATIVE ] +16:11:34 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +16:11:34 [ 49] [ 3] [418] +16:11:34 [ 52] [ 16] [F7EB5F8AC1D305CB] +16:11:34 ============================================================================ +16:11:34 + + +waiting on router queue for slot.... +16:11:34 Sending to : <4> +16:11:34 ============================================================================ +16:11:35 ============================================================================ +16:11:35 Slot Id : <243> +16:11:35 Transaction Type : REQUEST +16:11:35 Received From : +16:11:35 ============================================================================ +16:11:35 FNo. Len. Field Value +16:11:35 ============================================================================ +16:11:35 [ 1] [ 4] [0200] +16:11:35 [ 2] [ 16] [6213544001276036] +16:11:35 [ 3] [ 6] [011000] +16:11:35 [ 4] [ 12] [000200000000] +16:11:35 [ 7] [ 10] [0320161155] +16:11:35 [ 11] [ 6] [208507] +16:11:35 [ 12] [ 6] [161221] +16:11:35 [ 13] [ 4] [0320] +16:11:35 [ 14] [ 4] [4912] +16:11:35 [ 15] [ 4] [0320] +16:11:35 [ 18] [ 4] [6011] +16:11:35 [ 19] [ 3] [418] +16:11:35 [ 22] [ 3] [021] +16:11:35 [ 25] [ 2] [01] +16:11:35 [ 28] [ 9] [D00002000] +16:11:35 [ 32] [ 6] [198901] +16:11:35 [ 35] [ 32] [6213544001276036=491212017603646] +16:11:35 [ 37] [ 12] [507916208507] +16:11:35 [ 41] [ 8] [01529009] +16:11:35 [ 42] [ 15] [000000041529009] +16:11:35 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +16:11:35 [ 49] [ 3] [418] +16:11:35 [ 52] [ 16] [8EBC0277F7CD2C96] +16:11:35 ============================================================================ +16:11:35 + + +waiting on router queue for slot.... +16:11:35 Sending to : +16:11:35 ============================================================================ +16:11:35 Sending to : +16:11:35 ============================================================================ +16:11:35 ============================================================================ +16:11:35 Slot Id : <248> +16:11:35 Transaction Type : REQUEST +16:11:35 Received From : +16:11:35 ============================================================================ +16:11:35 FNo. Len. Field Value +16:11:35 ============================================================================ +16:11:35 [ 1] [ 4] [0200] +16:11:35 [ 2] [ 16] [6688990103283402] +16:11:35 [ 3] [ 6] [302000] +16:11:35 [ 4] [ 12] [000000000000] +16:11:35 [ 7] [ 10] [0320161130] +16:11:35 [ 11] [ 6] [794604] +16:11:35 [ 12] [ 6] [161130] +16:11:35 [ 13] [ 4] [0320] +16:11:35 [ 15] [ 4] [0320] +16:11:35 [ 18] [ 4] [6011] +16:11:35 [ 22] [ 3] [900] +16:11:35 [ 25] [ 2] [02] +16:11:35 [ 28] [ 9] [D00000000] +16:11:35 [ 32] [ 6] [621354] +16:11:35 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:11:35 [ 37] [ 12] [507903499571] +16:11:35 [ 41] [ 8] [06002200] +16:11:35 [ 42] [ 15] [NATIVE ] +16:11:35 [ 43] [ 40] [Beng Market Beng LAO] +16:11:35 [ 49] [ 3] [418] +16:11:35 [ 52] [ 16] [6577EE23574221CD] +16:11:35 ============================================================================ +16:11:35 + + +waiting on router queue for slot.... +16:11:35 Sending to : +16:11:35 ============================================================================ +16:11:35 Sending to : +16:11:35 ============================================================================ +16:11:35 ============================================================================ +16:11:35 Slot Id : <244> +16:11:35 Transaction Type : REQUEST +16:11:35 Received From : +16:11:35 ============================================================================ +16:11:35 FNo. Len. Field Value +16:11:35 ============================================================================ +16:11:35 [ 1] [ 4] [0200] +16:11:35 [ 2] [ 16] [6688990602864504] +16:11:35 [ 3] [ 6] [300000] +16:11:35 [ 4] [ 12] [000000000000] +16:11:35 [ 7] [ 10] [0320161130] +16:11:35 [ 11] [ 6] [794607] +16:11:35 [ 12] [ 6] [161130] +16:11:35 [ 13] [ 4] [0320] +16:11:35 [ 15] [ 4] [0320] +16:11:35 [ 18] [ 4] [6011] +16:11:35 [ 22] [ 3] [900] +16:11:35 [ 25] [ 2] [02] +16:11:35 [ 28] [ 9] [D00000000] +16:11:35 [ 32] [ 6] [621354] +16:11:35 [ 35] [ 37] [6688990602864504=43120061450464300000] +16:11:35 [ 37] [ 12] [507902925793] +16:11:35 [ 41] [ 8] [12001500] +16:11:35 [ 42] [ 15] [NATIVE ] +16:11:35 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +16:11:35 [ 49] [ 3] [418] +16:11:35 [ 52] [ 16] [DA545447A109569D] +16:11:35 ============================================================================ +16:11:35 + + +waiting on router queue for slot.... +16:11:35 Sending to : +16:11:35 ============================================================================ +16:11:35 Sending to : +16:11:35 ============================================================================ +16:11:35 ============================================================================ +16:11:35 Slot Id : <243> +16:11:35 Transaction Type : REQUEST +16:11:35 Received From : +16:11:35 ============================================================================ +16:11:35 FNo. Len. Field Value +16:11:35 ============================================================================ +16:11:35 [ 1] [ 4] [0200] +16:11:35 [ 2] [ 16] [6213544001276036] +16:11:35 [ 3] [ 6] [011000] +16:11:35 [ 4] [ 12] [000200000000] +16:11:35 [ 7] [ 10] [0320161155] +16:11:35 [ 11] [ 6] [208507] +16:11:35 [ 12] [ 6] [161221] +16:11:35 [ 13] [ 4] [0320] +16:11:35 [ 14] [ 4] [4912] +16:11:35 [ 15] [ 4] [0320] +16:11:35 [ 18] [ 4] [6011] +16:11:35 [ 19] [ 3] [418] +16:11:35 [ 22] [ 3] [021] +16:11:35 [ 25] [ 2] [01] +16:11:35 [ 28] [ 9] [D00002000] +16:11:35 [ 32] [ 6] [198901] +16:11:35 [ 35] [ 32] [6213544001276036=491212017603646] +16:11:35 [ 37] [ 12] [507916208507] +16:11:35 [ 41] [ 8] [01529009] +16:11:35 [ 42] [ 15] [000000041529009] +16:11:35 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +16:11:35 [ 49] [ 3] [418] +16:11:35 [ 52] [ 16] [8EBC0277F7CD2C96] +16:11:35 ============================================================================ +16:11:35 + + +waiting on router queue for slot.... +16:11:35 Sending to : +16:11:35 ============================================================================ +16:11:35 ============================================================================ +16:11:35 Slot Id : <243> +16:11:35 Transaction Type : REQUEST +16:11:35 Received From : +16:11:35 ============================================================================ +16:11:35 FNo. Len. Field Value +16:11:35 ============================================================================ +16:11:35 [ 1] [ 4] [0200] +16:11:35 [ 2] [ 16] [6213544001276036] +16:11:35 [ 3] [ 6] [011000] +16:11:35 [ 4] [ 12] [000200000000] +16:11:35 [ 7] [ 10] [0320161155] +16:11:35 [ 11] [ 6] [208507] +16:11:35 [ 12] [ 6] [161221] +16:11:35 [ 13] [ 4] [0320] +16:11:35 [ 14] [ 4] [4912] +16:11:35 [ 15] [ 4] [0320] +16:11:35 [ 18] [ 4] [6011] +16:11:35 [ 19] [ 3] [418] +16:11:35 [ 22] [ 3] [021] +16:11:35 [ 25] [ 2] [01] +16:11:35 [ 28] [ 9] [D00002000] +16:11:35 [ 32] [ 6] [198901] +16:11:35 [ 35] [ 32] [6213544001276036=491212017603646] +16:11:35 [ 37] [ 12] [507916208507] +16:11:35 [ 41] [ 8] [01529009] +16:11:35 [ 42] [ 15] [000000041529009] +16:11:35 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +16:11:35 [ 49] [ 3] [418] +16:11:35 [ 52] [ 16] [6C541C1E224BEF4A] +16:11:35 ============================================================================ +16:11:35 + + +waiting on router queue for slot.... +16:11:35 Sending to : <0> +16:11:35 ============================================================================ +16:11:35 ============================================================================ +16:11:35 Slot Id : <215> +16:11:35 Transaction Type : RESPONSE +16:11:35 Received From : +16:11:35 ============================================================================ +16:11:35 FNo. Len. Field Value +16:11:35 ============================================================================ +16:11:35 [ 1] [ 4] [0210] +16:11:35 [ 2] [ 16] [6688990040161182] +16:11:35 [ 3] [ 6] [010000] +16:11:35 [ 4] [ 12] [000100000000] +16:11:35 [ 11] [ 6] [794594] +16:11:35 [ 12] [ 6] [161128] +16:11:35 [ 15] [ 4] [0320] +16:11:35 [ 18] [ 4] [6011] +16:11:35 [ 32] [ 6] [621354] +16:11:35 [ 35] [ 37] [6688990040161182=98051261453871800000] +16:11:35 [ 37] [ 12] [507903032280] +16:11:35 [ 38] [ 6] [334316] +16:11:35 [ 39] [ 2] [00] +16:11:35 [ 41] [ 8] [12002600] +16:11:35 [ 49] [ 3] [418] +16:11:35 [ 54] [ 20] [0002418C000136694868] +16:11:35 ============================================================================ +16:11:35 Sending to : +16:11:35 ============================================================================ +16:11:35 + + +waiting on router queue for slot.... +16:11:35 ============================================================================ +16:11:35 Slot Id : <248> +16:11:35 Transaction Type : REQUEST +16:11:35 Received From : +16:11:35 ============================================================================ +16:11:35 FNo. Len. Field Value +16:11:35 ============================================================================ +16:11:35 [ 1] [ 4] [0200] +16:11:35 [ 2] [ 16] [6688990103283402] +16:11:35 [ 3] [ 6] [302000] +16:11:35 [ 4] [ 12] [000000000000] +16:11:35 [ 7] [ 10] [0320161130] +16:11:35 [ 11] [ 6] [794604] +16:11:35 [ 12] [ 6] [161130] +16:11:35 [ 13] [ 4] [0320] +16:11:35 [ 15] [ 4] [0320] +16:11:35 [ 18] [ 4] [6011] +16:11:35 [ 22] [ 3] [900] +16:11:35 [ 25] [ 2] [02] +16:11:35 [ 28] [ 9] [D00000000] +16:11:35 [ 32] [ 6] [621354] +16:11:35 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:11:35 [ 37] [ 12] [507903499571] +16:11:35 [ 41] [ 8] [06002200] +16:11:35 [ 42] [ 15] [NATIVE ] +16:11:35 [ 43] [ 40] [Beng Market Beng LAO] +16:11:35 [ 49] [ 3] [418] +16:11:35 [ 52] [ 16] [6577EE23574221CD] +16:11:35 ============================================================================ +16:11:35 + + +waiting on router queue for slot.... +16:11:35 Sending to : +16:11:35 ============================================================================ +16:11:35 ============================================================================ +16:11:35 Slot Id : <248> +16:11:35 Transaction Type : REQUEST +16:11:35 Received From : +16:11:35 ============================================================================ +16:11:35 FNo. Len. Field Value +16:11:35 ============================================================================ +16:11:35 [ 1] [ 4] [0200] +16:11:35 [ 2] [ 16] [6688990103283402] +16:11:35 [ 3] [ 6] [302000] +16:11:35 [ 4] [ 12] [000000000000] +16:11:35 [ 7] [ 10] [0320161130] +16:11:35 [ 11] [ 6] [794604] +16:11:35 [ 12] [ 6] [161130] +16:11:35 [ 13] [ 4] [0320] +16:11:35 [ 15] [ 4] [0320] +16:11:35 [ 18] [ 4] [6011] +16:11:35 [ 22] [ 3] [900] +16:11:35 [ 25] [ 2] [02] +16:11:35 [ 28] [ 9] [D00000000] +16:11:35 [ 32] [ 6] [621354] +16:11:35 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:11:35 [ 37] [ 12] [507903499571] +16:11:35 [ 41] [ 8] [06002200] +16:11:35 [ 42] [ 15] [NATIVE ] +16:11:35 [ 43] [ 40] [Beng Market Beng LAO] +16:11:35 [ 49] [ 3] [418] +16:11:35 [ 52] [ 16] [1CC8806DB4B6639B] +16:11:35 ============================================================================ +16:11:35 + + +waiting on router queue for slot.... +16:11:35 Sending to : <4> +16:11:35 ============================================================================ +16:11:35 ============================================================================ +16:11:35 Slot Id : <243> +16:11:35 Transaction Type : RESPONSE +16:11:35 Received From : +16:11:35 ============================================================================ +16:11:35 FNo. Len. Field Value +16:11:35 ============================================================================ +16:11:35 [ 1] [ 4] [0210] +16:11:35 [ 2] [ 16] [6213544001276036] +16:11:35 [ 3] [ 6] [011000] +16:11:35 [ 4] [ 12] [000200000000] +16:11:35 [ 7] [ 10] [0320161155] +16:11:35 [ 11] [ 6] [208507] +16:11:35 [ 12] [ 6] [161221] +16:11:35 [ 13] [ 4] [0320] +16:11:35 [ 15] [ 4] [0320] +16:11:35 [ 18] [ 4] [6011] +16:11:35 [ 19] [ 3] [418] +16:11:35 [ 22] [ 3] [021] +16:11:35 [ 32] [ 6] [198901] +16:11:35 [ 35] [ 32] [6213544001276036=491212017603646] +16:11:35 [ 37] [ 12] [507916208507] +16:11:35 [ 39] [ 2] [61] +16:11:35 [ 41] [ 8] [01529009] +16:11:35 [ 49] [ 3] [418] +16:11:35 ============================================================================ +16:11:35 Sending to : +16:11:35 ============================================================================ +16:11:35 + + +waiting on router queue for slot.... +16:11:35 ============================================================================ +16:11:35 Slot Id : <244> +16:11:35 Transaction Type : REQUEST +16:11:35 Received From : +16:11:35 ============================================================================ +16:11:35 FNo. Len. Field Value +16:11:35 ============================================================================ +16:11:35 [ 1] [ 4] [0200] +16:11:35 [ 2] [ 16] [6688990602864504] +16:11:35 [ 3] [ 6] [300000] +16:11:35 [ 4] [ 12] [000000000000] +16:11:35 [ 7] [ 10] [0320161130] +16:11:35 [ 11] [ 6] [794607] +16:11:35 [ 12] [ 6] [161130] +16:11:35 [ 13] [ 4] [0320] +16:11:35 [ 15] [ 4] [0320] +16:11:35 [ 18] [ 4] [6011] +16:11:35 [ 22] [ 3] [900] +16:11:35 [ 25] [ 2] [02] +16:11:35 [ 28] [ 9] [D00000000] +16:11:35 [ 32] [ 6] [621354] +16:11:35 [ 35] [ 37] [6688990602864504=43120061450464300000] +16:11:35 [ 37] [ 12] [507902925793] +16:11:35 [ 41] [ 8] [12001500] +16:11:35 [ 42] [ 15] [NATIVE ] +16:11:35 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +16:11:35 [ 49] [ 3] [418] +16:11:35 [ 52] [ 16] [DA545447A109569D] +16:11:35 ============================================================================ +16:11:35 + + +waiting on router queue for slot.... +16:11:35 Sending to : +16:11:35 ============================================================================ +16:11:35 ============================================================================ +16:11:35 Slot Id : <244> +16:11:35 Transaction Type : REQUEST +16:11:35 Received From : +16:11:35 ============================================================================ +16:11:35 FNo. Len. Field Value +16:11:35 ============================================================================ +16:11:35 [ 1] [ 4] [0200] +16:11:35 [ 2] [ 16] [6688990602864504] +16:11:35 [ 3] [ 6] [300000] +16:11:35 [ 4] [ 12] [000000000000] +16:11:35 [ 7] [ 10] [0320161130] +16:11:35 [ 11] [ 6] [794607] +16:11:35 [ 12] [ 6] [161130] +16:11:35 [ 13] [ 4] [0320] +16:11:35 [ 15] [ 4] [0320] +16:11:35 [ 18] [ 4] [6011] +16:11:35 [ 22] [ 3] [900] +16:11:35 [ 25] [ 2] [02] +16:11:35 [ 28] [ 9] [D00000000] +16:11:35 [ 32] [ 6] [621354] +16:11:35 [ 35] [ 37] [6688990602864504=43120061450464300000] +16:11:35 [ 37] [ 12] [507902925793] +16:11:35 [ 41] [ 8] [12001500] +16:11:35 [ 42] [ 15] [NATIVE ] +16:11:35 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +16:11:35 [ 49] [ 3] [418] +16:11:35 [ 52] [ 16] [5E11FDF19EB566D4] +16:11:35 ============================================================================ +16:11:35 + + +waiting on router queue for slot.... +16:11:35 Sending to : <4> +16:11:35 ============================================================================ +16:11:36 ============================================================================ +16:11:36 Slot Id : <248> +16:11:36 Transaction Type : RESPONSE +16:11:36 Received From : +16:11:36 ============================================================================ +16:11:36 FNo. Len. Field Value +16:11:36 ============================================================================ +16:11:36 [ 1] [ 4] [0210] +16:11:36 [ 2] [ 16] [6688990103283402] +16:11:36 [ 3] [ 6] [302000] +16:11:36 [ 4] [ 12] [000000000000] +16:11:36 [ 11] [ 6] [794604] +16:11:36 [ 12] [ 6] [161130] +16:11:36 [ 15] [ 4] [0320] +16:11:36 [ 18] [ 4] [6011] +16:11:36 [ 32] [ 6] [621354] +16:11:36 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:11:36 [ 37] [ 12] [507903499571] +16:11:36 [ 38] [ 6] [633796] +16:11:36 [ 39] [ 2] [00] +16:11:36 [ 41] [ 8] [06002200] +16:11:36 [ 49] [ 3] [418] +16:11:36 [ 54] [ 20] [2002418C000207027012] +16:11:36 ============================================================================ +16:11:36 Sending to : +16:11:36 ============================================================================ +16:11:36 + + +waiting on router queue for slot.... +16:11:37 ============================================================================ +16:11:37 Slot Id : <215> +16:11:37 Transaction Type : RESPONSE +16:11:37 Received From : +16:11:37 ============================================================================ +16:11:37 FNo. Len. Field Value +16:11:37 ============================================================================ +16:11:37 [ 1] [ 4] [0210] +16:11:37 [ 2] [ 16] [6688990040161182] +16:11:37 [ 3] [ 6] [010000] +16:11:37 [ 4] [ 12] [000100000000] +16:11:37 [ 11] [ 6] [794594] +16:11:37 [ 12] [ 6] [161128] +16:11:37 [ 15] [ 4] [0320] +16:11:37 [ 18] [ 4] [6011] +16:11:37 [ 32] [ 6] [621354] +16:11:37 [ 35] [ 37] [6688990040161182=98051261453871800000] +16:11:37 [ 37] [ 12] [507903032280] +16:11:37 [ 38] [ 6] [334316] +16:11:37 [ 39] [ 2] [00] +16:11:37 [ 41] [ 8] [12002600] +16:11:37 [ 49] [ 3] [418] +16:11:37 [ 54] [ 20] [0002418C000136694868] +16:11:37 ============================================================================ +16:11:37 Calculate Source COMM Id = 0 +16:11:37 ============================================================================ +16:11:37 + + +waiting on router queue for slot.... +16:11:37 ============================================================================ +16:11:37 Slot Id : <244> +16:11:37 Transaction Type : RESPONSE +16:11:37 Received From : +16:11:37 ============================================================================ +16:11:37 FNo. Len. Field Value +16:11:37 ============================================================================ +16:11:37 [ 1] [ 4] [0210] +16:11:37 [ 2] [ 16] [6688990602864504] +16:11:37 [ 3] [ 6] [300000] +16:11:37 [ 4] [ 12] [000000000000] +16:11:37 [ 11] [ 6] [794607] +16:11:37 [ 12] [ 6] [161130] +16:11:37 [ 15] [ 4] [0320] +16:11:37 [ 18] [ 4] [6011] +16:11:37 [ 32] [ 6] [621354] +16:11:37 [ 35] [ 37] [6688990602864504=43120061450464300000] +16:11:37 [ 37] [ 12] [507902925793] +16:11:37 [ 38] [ 6] [818811] +16:11:37 [ 39] [ 2] [00] +16:11:37 [ 41] [ 8] [12001500] +16:11:37 [ 49] [ 3] [418] +16:11:37 [ 54] [ 20] [0002418C000003400458] +16:11:37 ============================================================================ +16:11:37 Sending to : +16:11:37 ============================================================================ +16:11:37 + + +waiting on router queue for slot.... +16:11:37 ============================================================================ +16:11:37 Slot Id : <235> +16:11:37 Transaction Type : REQUEST +16:11:37 Received From : +16:11:37 ============================================================================ +16:11:37 FNo. Len. Field Value +16:11:37 ============================================================================ +16:11:37 [ 1] [ 4] [0800] +16:11:37 [ 7] [ 10] [0320232327] +16:11:37 [ 11] [ 6] [162327] +16:11:37 [ 37] [ 12] [57916162327] +16:11:37 [ 70] [ 3] [301] +16:11:37 ============================================================================ +16:11:37 + + +waiting on router queue for slot.... +16:11:37 Sending to : +16:11:37 ============================================================================ +16:11:37 ============================================================================ +16:11:37 Slot Id : <235> +16:11:37 Transaction Type : RESPONSE +16:11:37 Received From : +16:11:37 ============================================================================ +16:11:37 FNo. Len. Field Value +16:11:37 ============================================================================ +16:11:37 [ 1] [ 4] [0810] +16:11:37 [ 7] [ 10] [0320232327] +16:11:37 [ 11] [ 6] [162327] +16:11:37 [ 37] [ 12] [579161623270] +16:11:37 [ 39] [ 2] [00] +16:11:37 [ 70] [ 3] [810] +16:11:37 ============================================================================ +16:11:37 Calculate Source COMM Id = 6 +16:11:37 ============================================================================ +16:11:37 + + +waiting on router queue for slot.... +16:11:38 ============================================================================ +16:11:38 Slot Id : <227> +16:11:38 Transaction Type : REQUEST +16:11:38 Received From : +16:11:38 ============================================================================ +16:11:38 FNo. Len. Field Value +16:11:38 ============================================================================ +16:11:38 [ 1] [ 4] [0800] +16:11:38 [ 7] [ 10] [0320091045] +16:11:38 [ 11] [ 6] [157186] +16:11:38 [ 70] [ 3] [301] +16:11:38 ============================================================================ +16:11:38 + + +waiting on router queue for slot.... +16:11:38 Sending to : +16:11:38 ============================================================================ +16:11:38 ============================================================================ +16:11:38 Slot Id : <227> +16:11:38 Transaction Type : RESPONSE +16:11:38 Received From : +16:11:38 ============================================================================ +16:11:38 FNo. Len. Field Value +16:11:38 ============================================================================ +16:11:38 [ 1] [ 4] [0810] +16:11:38 [ 7] [ 10] [0320091045] +16:11:38 [ 11] [ 6] [157186] +16:11:38 [ 39] [ 2] [00] +16:11:38 [ 70] [ 3] [301] +16:11:38 ============================================================================ +16:11:38 Calculate Source COMM Id = 2 +16:11:38 ============================================================================ +16:11:38 + + +waiting on router queue for slot.... +16:11:38 ============================================================================ +16:11:38 Slot Id : <248> +16:11:38 Transaction Type : RESPONSE +16:11:38 Received From : +16:11:38 ============================================================================ +16:11:38 FNo. Len. Field Value +16:11:38 ============================================================================ +16:11:38 [ 1] [ 4] [0210] +16:11:38 [ 2] [ 16] [6688990103283402] +16:11:38 [ 3] [ 6] [302000] +16:11:38 [ 4] [ 12] [000000000000] +16:11:38 [ 11] [ 6] [794604] +16:11:38 [ 12] [ 6] [161130] +16:11:38 [ 15] [ 4] [0320] +16:11:38 [ 18] [ 4] [6011] +16:11:38 [ 32] [ 6] [621354] +16:11:38 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:11:38 [ 37] [ 12] [507903499571] +16:11:38 [ 38] [ 6] [633796] +16:11:38 [ 39] [ 2] [00] +16:11:38 [ 41] [ 8] [06002200] +16:11:38 [ 49] [ 3] [418] +16:11:38 [ 54] [ 20] [2002418C000207027012] +16:11:38 ============================================================================ +16:11:38 Calculate Source COMM Id = 0 +16:11:38 ============================================================================ +16:11:38 + + +waiting on router queue for slot.... +16:11:40 ============================================================================ +16:11:40 Slot Id : <244> +16:11:40 Transaction Type : RESPONSE +16:11:40 Received From : +16:11:40 ============================================================================ +16:11:40 FNo. Len. Field Value +16:11:40 ============================================================================ +16:11:40 [ 1] [ 4] [0210] +16:11:40 [ 2] [ 16] [6688990602864504] +16:11:40 [ 3] [ 6] [300000] +16:11:40 [ 4] [ 12] [000000000000] +16:11:40 [ 11] [ 6] [794607] +16:11:40 [ 12] [ 6] [161130] +16:11:40 [ 15] [ 4] [0320] +16:11:40 [ 18] [ 4] [6011] +16:11:40 [ 32] [ 6] [621354] +16:11:40 [ 35] [ 37] [6688990602864504=43120061450464300000] +16:11:40 [ 37] [ 12] [507902925793] +16:11:40 [ 38] [ 6] [818811] +16:11:40 [ 39] [ 2] [00] +16:11:40 [ 41] [ 8] [12001500] +16:11:40 [ 49] [ 3] [418] +16:11:40 [ 54] [ 20] [0002418C000003400458] +16:11:40 ============================================================================ +16:11:40 Calculate Source COMM Id = 0 +16:11:40 ============================================================================ +16:11:40 + + +waiting on router queue for slot.... +16:11:40 ============================================================================ +16:11:40 Slot Id : <243> +16:11:40 Transaction Type : RESPONSE +16:11:40 Received From : +16:11:40 ============================================================================ +16:11:40 FNo. Len. Field Value +16:11:40 ============================================================================ +16:11:40 [ 1] [ 4] [0210] +16:11:40 [ 2] [ 16] [6213544001276036] +16:11:40 [ 3] [ 6] [011000] +16:11:40 [ 4] [ 12] [000200000000] +16:11:40 [ 7] [ 10] [0320161155] +16:11:40 [ 11] [ 6] [208507] +16:11:40 [ 12] [ 6] [161221] +16:11:40 [ 13] [ 4] [0320] +16:11:40 [ 15] [ 4] [0320] +16:11:40 [ 18] [ 4] [6011] +16:11:40 [ 19] [ 3] [418] +16:11:40 [ 22] [ 3] [021] +16:11:40 [ 32] [ 6] [198901] +16:11:40 [ 35] [ 32] [6213544001276036=491212017603646] +16:11:40 [ 37] [ 12] [507916208507] +16:11:40 [ 39] [ 2] [61] +16:11:40 [ 41] [ 8] [01529009] +16:11:40 [ 49] [ 3] [418] +16:11:40 ============================================================================ +16:11:40 Calculate Source COMM Id = 5 +16:11:40 ============================================================================ +16:11:40 + + +waiting on router queue for slot.... +16:11:41 ============================================================================ +16:11:41 Slot Id : <251> +16:11:41 Transaction Type : REQUEST +16:11:41 Received From : +16:11:41 ============================================================================ +16:11:41 FNo. Len. Field Value +16:11:41 ============================================================================ +16:11:41 [ 1] [ 4] [0200] +16:11:41 [ 2] [ 16] [6213544000774775] +16:11:41 [ 3] [ 6] [011000] +16:11:41 [ 4] [ 12] [000100000000] +16:11:41 [ 7] [ 10] [0320161201] +16:11:41 [ 11] [ 6] [208508] +16:11:41 [ 12] [ 6] [160921] +16:11:41 [ 13] [ 4] [0320] +16:11:41 [ 14] [ 4] [4912] +16:11:41 [ 15] [ 4] [0320] +16:11:41 [ 18] [ 4] [6011] +16:11:41 [ 19] [ 3] [418] +16:11:41 [ 22] [ 3] [021] +16:11:41 [ 25] [ 2] [01] +16:11:41 [ 28] [ 9] [D00002000] +16:11:41 [ 32] [ 6] [198901] +16:11:41 [ 35] [ 32] [6213544000774775=491212017477718] +16:11:41 [ 37] [ 12] [507916208508] +16:11:41 [ 41] [ 8] [01529028] +16:11:41 [ 42] [ 15] [000000041529028] +16:11:41 [ 43] [ 40] [JDB ATM NONG NIEW VN ] +16:11:41 [ 49] [ 3] [418] +16:11:41 [ 52] [ 16] [048EFDABDF72E356] +16:11:41 ============================================================================ +16:11:41 + + +waiting on router queue for slot.... +16:11:41 Sending to : +16:11:41 ============================================================================ +16:11:41 Sending to : +16:11:41 ============================================================================ +16:11:41 ============================================================================ +16:11:41 Slot Id : <251> +16:11:41 Transaction Type : REQUEST +16:11:41 Received From : +16:11:41 ============================================================================ +16:11:41 FNo. Len. Field Value +16:11:41 ============================================================================ +16:11:41 [ 1] [ 4] [0200] +16:11:41 [ 2] [ 16] [6213544000774775] +16:11:41 [ 3] [ 6] [011000] +16:11:41 [ 4] [ 12] [000100000000] +16:11:41 [ 7] [ 10] [0320161201] +16:11:41 [ 11] [ 6] [208508] +16:11:41 [ 12] [ 6] [160921] +16:11:41 [ 13] [ 4] [0320] +16:11:41 [ 14] [ 4] [4912] +16:11:41 [ 15] [ 4] [0320] +16:11:41 [ 18] [ 4] [6011] +16:11:41 [ 19] [ 3] [418] +16:11:41 [ 22] [ 3] [021] +16:11:41 [ 25] [ 2] [01] +16:11:41 [ 28] [ 9] [D00002000] +16:11:41 [ 32] [ 6] [198901] +16:11:41 [ 35] [ 32] [6213544000774775=491212017477718] +16:11:41 [ 37] [ 12] [507916208508] +16:11:41 [ 41] [ 8] [01529028] +16:11:41 [ 42] [ 15] [000000041529028] +16:11:41 [ 43] [ 40] [JDB ATM NONG NIEW VN ] +16:11:41 [ 49] [ 3] [418] +16:11:41 [ 52] [ 16] [048EFDABDF72E356] +16:11:41 ============================================================================ +16:11:41 + + +waiting on router queue for slot.... +16:11:41 Sending to : +16:11:41 ============================================================================ +16:11:41 ============================================================================ +16:11:41 Slot Id : <251> +16:11:41 Transaction Type : REQUEST +16:11:41 Received From : +16:11:41 ============================================================================ +16:11:41 FNo. Len. Field Value +16:11:41 ============================================================================ +16:11:41 [ 1] [ 4] [0200] +16:11:41 [ 2] [ 16] [6213544000774775] +16:11:41 [ 3] [ 6] [011000] +16:11:41 [ 4] [ 12] [000100000000] +16:11:41 [ 7] [ 10] [0320161201] +16:11:41 [ 11] [ 6] [208508] +16:11:41 [ 12] [ 6] [160921] +16:11:41 [ 13] [ 4] [0320] +16:11:41 [ 14] [ 4] [4912] +16:11:41 [ 15] [ 4] [0320] +16:11:41 [ 18] [ 4] [6011] +16:11:41 [ 19] [ 3] [418] +16:11:41 [ 22] [ 3] [021] +16:11:41 [ 25] [ 2] [01] +16:11:41 [ 28] [ 9] [D00002000] +16:11:41 [ 32] [ 6] [198901] +16:11:41 [ 35] [ 32] [6213544000774775=491212017477718] +16:11:41 [ 37] [ 12] [507916208508] +16:11:41 [ 41] [ 8] [01529028] +16:11:41 [ 42] [ 15] [000000041529028] +16:11:41 [ 43] [ 40] [JDB ATM NONG NIEW VN ] +16:11:41 [ 49] [ 3] [418] +16:11:41 [ 52] [ 16] [82FC80EBD8C9CFAF] +16:11:41 ============================================================================ +16:11:41 + + +waiting on router queue for slot.... +16:11:41 Sending to : <0> +16:11:41 ============================================================================ +16:11:43 ============================================================================ +16:11:43 Slot Id : <251> +16:11:43 Transaction Type : RESPONSE +16:11:43 Received From : +16:11:43 ============================================================================ +16:11:43 FNo. Len. Field Value +16:11:43 ============================================================================ +16:11:43 [ 1] [ 4] [0210] +16:11:43 [ 2] [ 16] [6213544000774775] +16:11:43 [ 3] [ 6] [011000] +16:11:43 [ 4] [ 12] [000100000000] +16:11:43 [ 7] [ 10] [0320161201] +16:11:43 [ 11] [ 6] [208508] +16:11:43 [ 12] [ 6] [160921] +16:11:43 [ 13] [ 4] [0320] +16:11:43 [ 15] [ 4] [0320] +16:11:43 [ 18] [ 4] [6011] +16:11:43 [ 19] [ 3] [418] +16:11:43 [ 32] [ 6] [198901] +16:11:43 [ 35] [ 32] [6213544000774775=491212017477718] +16:11:43 [ 37] [ 12] [507916208508] +16:11:43 [ 38] [ 6] [628723] +16:11:43 [ 39] [ 2] [00] +16:11:43 [ 41] [ 8] [01529028] +16:11:43 [ 49] [ 3] [418] +16:11:43 [ 54] [ 40] [1001418C0247184337501002418C024718433750] +16:11:43 ============================================================================ +16:11:43 Sending to : +16:11:43 ============================================================================ +16:11:43 + + +waiting on router queue for slot.... +16:11:45 ============================================================================ +16:11:45 Slot Id : <251> +16:11:45 Transaction Type : RESPONSE +16:11:45 Received From : +16:11:45 ============================================================================ +16:11:45 FNo. Len. Field Value +16:11:45 ============================================================================ +16:11:45 [ 1] [ 4] [0210] +16:11:45 [ 2] [ 16] [6213544000774775] +16:11:45 [ 3] [ 6] [011000] +16:11:45 [ 4] [ 12] [000100000000] +16:11:45 [ 7] [ 10] [0320161201] +16:11:45 [ 11] [ 6] [208508] +16:11:45 [ 12] [ 6] [160921] +16:11:45 [ 13] [ 4] [0320] +16:11:45 [ 15] [ 4] [0320] +16:11:45 [ 18] [ 4] [6011] +16:11:45 [ 19] [ 3] [418] +16:11:45 [ 32] [ 6] [198901] +16:11:45 [ 35] [ 32] [6213544000774775=491212017477718] +16:11:45 [ 37] [ 12] [507916208508] +16:11:45 [ 38] [ 6] [628723] +16:11:45 [ 39] [ 2] [00] +16:11:45 [ 41] [ 8] [01529028] +16:11:45 [ 49] [ 3] [418] +16:11:45 [ 54] [ 40] [1001418C0247184337501002418C024718433750] +16:11:45 ============================================================================ +16:11:45 Calculate Source COMM Id = 5 +16:11:45 ============================================================================ +16:11:45 + + +waiting on router queue for slot.... +16:11:47 ============================================================================ +16:11:47 Slot Id : <177> +16:11:47 Transaction Type : REQUEST +16:11:47 Received From : +16:11:47 ============================================================================ +16:11:47 FNo. Len. Field Value +16:11:47 ============================================================================ +16:11:47 [ 1] [ 4] [0200] +16:11:47 [ 2] [ 16] [6213544001443669] +16:11:47 [ 3] [ 6] [010000] +16:11:47 [ 4] [ 12] [000030000000] +16:11:47 [ 7] [ 10] [0320160937] +16:11:47 [ 11] [ 6] [951217] +16:11:47 [ 12] [ 6] [160937] +16:11:47 [ 13] [ 4] [0320] +16:11:47 [ 15] [ 4] [0320] +16:11:47 [ 18] [ 4] [6011] +16:11:47 [ 19] [ 3] [418] +16:11:47 [ 22] [ 3] [021] +16:11:47 [ 25] [ 2] [01] +16:11:47 [ 28] [ 9] [D00002000] +16:11:47 [ 32] [ 6] [668899] +16:11:47 [ 35] [ 32] [6213544001443669=491212014366939] +16:11:47 [ 37] [ 12] [507902678758] +16:11:47 [ 41] [ 8] [03020035] +16:11:47 [ 42] [ 15] [APT ] +16:11:47 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +16:11:47 [ 49] [ 3] [418] +16:11:47 [ 52] [ 16] [70DA956A2D9E623D] +16:11:47 ============================================================================ +16:11:47 + + +waiting on router queue for slot.... +16:11:47 Sending to : +16:11:47 ============================================================================ +16:11:47 Sending to : +16:11:47 ============================================================================ +16:11:47 ============================================================================ +16:11:47 Slot Id : <177> +16:11:47 Transaction Type : REQUEST +16:11:47 Received From : +16:11:47 ============================================================================ +16:11:47 FNo. Len. Field Value +16:11:47 ============================================================================ +16:11:47 [ 1] [ 4] [0200] +16:11:47 [ 2] [ 16] [6213544001443669] +16:11:47 [ 3] [ 6] [010000] +16:11:47 [ 4] [ 12] [000030000000] +16:11:47 [ 7] [ 10] [0320160937] +16:11:47 [ 11] [ 6] [951217] +16:11:47 [ 12] [ 6] [160937] +16:11:47 [ 13] [ 4] [0320] +16:11:47 [ 15] [ 4] [0320] +16:11:47 [ 18] [ 4] [6011] +16:11:47 [ 19] [ 3] [418] +16:11:47 [ 22] [ 3] [021] +16:11:47 [ 25] [ 2] [01] +16:11:47 [ 28] [ 9] [D00002000] +16:11:47 [ 32] [ 6] [668899] +16:11:47 [ 35] [ 32] [6213544001443669=491212014366939] +16:11:47 [ 37] [ 12] [507902678758] +16:11:47 [ 41] [ 8] [03020035] +16:11:47 [ 42] [ 15] [APT ] +16:11:47 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +16:11:47 [ 49] [ 3] [418] +16:11:47 [ 52] [ 16] [70DA956A2D9E623D] +16:11:47 ============================================================================ +16:11:47 + + +waiting on router queue for slot.... +16:11:47 Sending to : +16:11:47 ============================================================================ +16:11:47 ============================================================================ +16:11:47 Slot Id : <177> +16:11:47 Transaction Type : REQUEST +16:11:47 Received From : +16:11:47 ============================================================================ +16:11:47 FNo. Len. Field Value +16:11:47 ============================================================================ +16:11:47 [ 1] [ 4] [0200] +16:11:47 [ 2] [ 16] [6213544001443669] +16:11:47 [ 3] [ 6] [010000] +16:11:47 [ 4] [ 12] [000030000000] +16:11:47 [ 7] [ 10] [0320160937] +16:11:47 [ 11] [ 6] [951217] +16:11:47 [ 12] [ 6] [160937] +16:11:47 [ 13] [ 4] [0320] +16:11:47 [ 15] [ 4] [0320] +16:11:47 [ 18] [ 4] [6011] +16:11:47 [ 19] [ 3] [418] +16:11:47 [ 22] [ 3] [021] +16:11:47 [ 25] [ 2] [01] +16:11:47 [ 28] [ 9] [D00002000] +16:11:47 [ 32] [ 6] [668899] +16:11:47 [ 35] [ 32] [6213544001443669=491212014366939] +16:11:47 [ 37] [ 12] [507902678758] +16:11:47 [ 41] [ 8] [03020035] +16:11:47 [ 42] [ 15] [APT ] +16:11:47 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +16:11:47 [ 49] [ 3] [418] +16:11:47 [ 52] [ 16] [4C9A0EC25C96408F] +16:11:47 ============================================================================ +16:11:47 + + +waiting on router queue for slot.... +16:11:47 Sending to : <0> +16:11:47 ============================================================================ +16:11:48 ============================================================================ +16:11:48 Slot Id : <177> +16:11:48 Transaction Type : RESPONSE +16:11:48 Received From : +16:11:48 ============================================================================ +16:11:48 FNo. Len. Field Value +16:11:48 ============================================================================ +16:11:48 [ 1] [ 4] [0210] +16:11:48 [ 2] [ 16] [6213544001443669] +16:11:48 [ 3] [ 6] [010000] +16:11:48 [ 4] [ 12] [000030000000] +16:11:48 [ 7] [ 10] [0320160937] +16:11:48 [ 11] [ 6] [951217] +16:11:48 [ 12] [ 6] [160937] +16:11:48 [ 13] [ 4] [0320] +16:11:48 [ 15] [ 4] [0320] +16:11:48 [ 18] [ 4] [6011] +16:11:48 [ 19] [ 3] [418] +16:11:48 [ 32] [ 6] [668899] +16:11:48 [ 35] [ 32] [6213544001443669=491212014366939] +16:11:48 [ 37] [ 12] [507902678758] +16:11:48 [ 38] [ 6] [878543] +16:11:48 [ 39] [ 2] [00] +16:11:48 [ 41] [ 8] [03020035] +16:11:48 [ 49] [ 3] [418] +16:11:48 [ 54] [ 40] [0001418C0000349807070002418C000034980707] +16:11:48 ============================================================================ +16:11:48 Sending to : +16:11:48 ============================================================================ +16:11:48 + + +waiting on router queue for slot.... +16:11:49 ============================================================================ +16:11:49 Slot Id : <242> +16:11:49 Transaction Type : REQUEST +16:11:49 Received From : +16:11:49 ============================================================================ +16:11:49 FNo. Len. Field Value +16:11:49 ============================================================================ +16:11:49 [ 1] [ 4] [0800] +16:11:49 [ 7] [ 10] [0320091056] +16:11:49 [ 11] [ 6] [157187] +16:11:49 [ 70] [ 3] [301] +16:11:49 ============================================================================ +16:11:49 + + +waiting on router queue for slot.... +16:11:49 Sending to : +16:11:49 ============================================================================ +16:11:49 ============================================================================ +16:11:49 Slot Id : <242> +16:11:49 Transaction Type : RESPONSE +16:11:49 Received From : +16:11:49 ============================================================================ +16:11:49 FNo. Len. Field Value +16:11:49 ============================================================================ +16:11:49 [ 1] [ 4] [0810] +16:11:49 [ 7] [ 10] [0320091056] +16:11:49 [ 11] [ 6] [157187] +16:11:49 [ 39] [ 2] [00] +16:11:49 [ 70] [ 3] [301] +16:11:49 ============================================================================ +16:11:49 Calculate Source COMM Id = 2 +16:11:49 ============================================================================ +16:11:49 + + +waiting on router queue for slot.... +16:11:49 ============================================================================ +16:11:49 Slot Id : <177> +16:11:49 Transaction Type : RESPONSE +16:11:49 Received From : +16:11:49 ============================================================================ +16:11:49 FNo. Len. Field Value +16:11:49 ============================================================================ +16:11:49 [ 1] [ 4] [0210] +16:11:49 [ 2] [ 16] [6213544001443669] +16:11:49 [ 3] [ 6] [010000] +16:11:49 [ 4] [ 12] [000030000000] +16:11:49 [ 7] [ 10] [0320160937] +16:11:49 [ 11] [ 6] [951217] +16:11:49 [ 12] [ 6] [160937] +16:11:49 [ 13] [ 4] [0320] +16:11:49 [ 15] [ 4] [0320] +16:11:49 [ 18] [ 4] [6011] +16:11:49 [ 19] [ 3] [418] +16:11:49 [ 32] [ 6] [668899] +16:11:49 [ 35] [ 32] [6213544001443669=491212014366939] +16:11:49 [ 37] [ 12] [507902678758] +16:11:49 [ 38] [ 6] [878543] +16:11:49 [ 39] [ 2] [00] +16:11:49 [ 41] [ 8] [03020035] +16:11:49 [ 49] [ 3] [418] +16:11:49 [ 54] [ 40] [0001418C0000349807070002418C000034980707] +16:11:49 ============================================================================ +16:11:49 Calculate Source COMM Id = 4 +16:11:49 ============================================================================ +16:11:49 + + +waiting on router queue for slot.... +16:11:53 ============================================================================ +16:11:53 Slot Id : <250> +16:11:53 Transaction Type : REQUEST +16:11:53 Received From : +16:11:53 ============================================================================ +16:11:53 FNo. Len. Field Value +16:11:53 ============================================================================ +16:11:53 [ 1] [ 4] [0200] +16:11:53 [ 2] [ 16] [6213545000601678] +16:11:53 [ 3] [ 6] [010000] +16:11:53 [ 4] [ 12] [000010000000] +16:11:53 [ 7] [ 10] [0320091100] +16:11:53 [ 11] [ 6] [270277] +16:11:53 [ 12] [ 6] [161100] +16:11:53 [ 13] [ 4] [0320] +16:11:53 [ 14] [ 4] [4912] +16:11:53 [ 15] [ 4] [0320] +16:11:53 [ 18] [ 4] [6011] +16:11:53 [ 19] [ 3] [418] +16:11:53 [ 22] [ 3] [021] +16:11:53 [ 25] [ 2] [01] +16:11:53 [ 28] [ 9] [D00002000] +16:11:53 [ 32] [ 6] [180893] +16:11:53 [ 35] [ 32] [6213545000601678=491212010167197] +16:11:53 [ 37] [ 12] [507909270277] +16:11:53 [ 41] [ 8] [0366SKTT] +16:11:53 [ 42] [ 15] [999999 ] +16:11:53 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +16:11:53 [ 49] [ 3] [418] +16:11:53 [ 52] [ 16] [F68F8F68131A8C37] +16:11:53 ============================================================================ +16:11:53 + + +waiting on router queue for slot.... +16:11:53 Sending to : +16:11:53 ============================================================================ +16:11:53 Sending to : +16:11:53 ============================================================================ +16:11:54 ============================================================================ +16:11:54 Slot Id : <250> +16:11:54 Transaction Type : REQUEST +16:11:54 Received From : +16:11:54 ============================================================================ +16:11:54 FNo. Len. Field Value +16:11:54 ============================================================================ +16:11:54 [ 1] [ 4] [0200] +16:11:54 [ 2] [ 16] [6213545000601678] +16:11:54 [ 3] [ 6] [010000] +16:11:54 [ 4] [ 12] [000010000000] +16:11:54 [ 7] [ 10] [0320091100] +16:11:54 [ 11] [ 6] [270277] +16:11:54 [ 12] [ 6] [161100] +16:11:54 [ 13] [ 4] [0320] +16:11:54 [ 14] [ 4] [4912] +16:11:54 [ 15] [ 4] [0320] +16:11:54 [ 18] [ 4] [6011] +16:11:54 [ 19] [ 3] [418] +16:11:54 [ 22] [ 3] [021] +16:11:54 [ 25] [ 2] [01] +16:11:54 [ 28] [ 9] [D00002000] +16:11:54 [ 32] [ 6] [180893] +16:11:54 [ 35] [ 32] [6213545000601678=491212010167197] +16:11:54 [ 37] [ 12] [507909270277] +16:11:54 [ 41] [ 8] [0366SKTT] +16:11:54 [ 42] [ 15] [999999 ] +16:11:54 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +16:11:54 [ 49] [ 3] [418] +16:11:54 [ 52] [ 16] [F68F8F68131A8C37] +16:11:54 ============================================================================ +16:11:54 + + +waiting on router queue for slot.... +16:11:54 Sending to : +16:11:54 ============================================================================ +16:11:54 ============================================================================ +16:11:54 Slot Id : <250> +16:11:54 Transaction Type : REQUEST +16:11:54 Received From : +16:11:54 ============================================================================ +16:11:54 FNo. Len. Field Value +16:11:54 ============================================================================ +16:11:54 [ 1] [ 4] [0200] +16:11:54 [ 2] [ 16] [6213545000601678] +16:11:54 [ 3] [ 6] [010000] +16:11:54 [ 4] [ 12] [000010000000] +16:11:54 [ 7] [ 10] [0320091100] +16:11:54 [ 11] [ 6] [270277] +16:11:54 [ 12] [ 6] [161100] +16:11:54 [ 13] [ 4] [0320] +16:11:54 [ 14] [ 4] [4912] +16:11:54 [ 15] [ 4] [0320] +16:11:54 [ 18] [ 4] [6011] +16:11:54 [ 19] [ 3] [418] +16:11:54 [ 22] [ 3] [021] +16:11:54 [ 25] [ 2] [01] +16:11:54 [ 28] [ 9] [D00002000] +16:11:54 [ 32] [ 6] [180893] +16:11:54 [ 35] [ 32] [6213545000601678=491212010167197] +16:11:54 [ 37] [ 12] [507909270277] +16:11:54 [ 41] [ 8] [0366SKTT] +16:11:54 [ 42] [ 15] [999999 ] +16:11:54 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +16:11:54 [ 49] [ 3] [418] +16:11:54 [ 52] [ 16] [65D71D27A3D76F80] +16:11:54 ============================================================================ +16:11:54 + + +waiting on router queue for slot.... +16:11:54 Sending to : <0> +16:11:54 ============================================================================ +16:11:54 ============================================================================ +16:11:54 Slot Id : <250> +16:11:54 Transaction Type : RESPONSE +16:11:54 Received From : +16:11:54 ============================================================================ +16:11:54 FNo. Len. Field Value +16:11:54 ============================================================================ +16:11:54 [ 1] [ 4] [0210] +16:11:54 [ 2] [ 16] [6213545000601678] +16:11:54 [ 3] [ 6] [010000] +16:11:54 [ 4] [ 12] [000010000000] +16:11:54 [ 7] [ 10] [0320091100] +16:11:54 [ 11] [ 6] [270277] +16:11:54 [ 12] [ 6] [161100] +16:11:54 [ 13] [ 4] [0320] +16:11:54 [ 15] [ 4] [0320] +16:11:54 [ 18] [ 4] [6011] +16:11:54 [ 19] [ 3] [418] +16:11:54 [ 32] [ 6] [180893] +16:11:54 [ 35] [ 32] [6213545000601678=491212010167197] +16:11:54 [ 37] [ 12] [507909270277] +16:11:54 [ 38] [ 6] [314212] +16:11:54 [ 39] [ 2] [00] +16:11:54 [ 41] [ 8] [0366SKTT] +16:11:54 [ 49] [ 3] [418] +16:11:54 [ 54] [ 40] [0001418C0000220079520002418C000022007952] +16:11:54 ============================================================================ +16:11:54 Sending to : +16:11:54 ============================================================================ +16:11:54 + + +waiting on router queue for slot.... +16:11:55 ============================================================================ +16:11:55 Slot Id : <226> +16:11:55 Transaction Type : REQUEST +16:11:55 Received From : +16:11:55 ============================================================================ +16:11:55 FNo. Len. Field Value +16:11:55 ============================================================================ +16:11:55 [ 1] [ 4] [0200] +16:11:55 [ 2] [ 16] [1808931000000792] +16:11:55 [ 3] [ 6] [011000] +16:11:55 [ 4] [ 12] [000090000000] +16:11:55 [ 7] [ 10] [0320161150] +16:11:55 [ 11] [ 6] [794708] +16:11:55 [ 12] [ 6] [161150] +16:11:55 [ 13] [ 4] [0320] +16:11:55 [ 15] [ 4] [0320] +16:11:55 [ 18] [ 4] [6011] +16:11:55 [ 22] [ 3] [900] +16:11:55 [ 25] [ 2] [02] +16:11:55 [ 28] [ 9] [D00002000] +16:11:55 [ 32] [ 6] [621354] +16:11:55 [ 35] [ 27] [1808931000000792=1803500587] +16:11:55 [ 37] [ 12] [507902661111] +16:11:55 [ 41] [ 8] [14000500] +16:11:55 [ 42] [ 15] [NATIVE ] +16:11:55 [ 43] [ 40] [VV Market Vangvieng LAO] +16:11:55 [ 49] [ 3] [418] +16:11:55 [ 52] [ 16] [53422CA12AA1B876] +16:11:55 ============================================================================ +16:11:55 + + +waiting on router queue for slot.... +16:11:55 Sending to : +16:11:55 ============================================================================ +16:11:55 Sending to : +16:11:55 ============================================================================ +16:11:55 ============================================================================ +16:11:55 Slot Id : <226> +16:11:55 Transaction Type : REQUEST +16:11:55 Received From : +16:11:55 ============================================================================ +16:11:55 FNo. Len. Field Value +16:11:55 ============================================================================ +16:11:55 [ 1] [ 4] [0200] +16:11:55 [ 2] [ 16] [1808931000000792] +16:11:55 [ 3] [ 6] [011000] +16:11:55 [ 4] [ 12] [000090000000] +16:11:55 [ 7] [ 10] [0320161150] +16:11:55 [ 11] [ 6] [794708] +16:11:55 [ 12] [ 6] [161150] +16:11:55 [ 13] [ 4] [0320] +16:11:55 [ 15] [ 4] [0320] +16:11:55 [ 18] [ 4] [6011] +16:11:55 [ 22] [ 3] [900] +16:11:55 [ 25] [ 2] [02] +16:11:55 [ 28] [ 9] [D00002000] +16:11:55 [ 32] [ 6] [621354] +16:11:55 [ 35] [ 27] [1808931000000792=1803500587] +16:11:55 [ 37] [ 12] [507902661111] +16:11:55 [ 41] [ 8] [14000500] +16:11:55 [ 42] [ 15] [NATIVE ] +16:11:55 [ 43] [ 40] [VV Market Vangvieng LAO] +16:11:55 [ 49] [ 3] [418] +16:11:55 [ 52] [ 16] [53422CA12AA1B876] +16:11:55 ============================================================================ +16:11:55 + + +waiting on router queue for slot.... +16:11:55 Sending to : +16:11:55 ============================================================================ +16:11:55 ============================================================================ +16:11:55 Slot Id : <226> +16:11:55 Transaction Type : REQUEST +16:11:55 Received From : +16:11:55 ============================================================================ +16:11:55 FNo. Len. Field Value +16:11:55 ============================================================================ +16:11:55 [ 1] [ 4] [0200] +16:11:55 [ 2] [ 16] [1808931000000792] +16:11:55 [ 3] [ 6] [011000] +16:11:55 [ 4] [ 12] [000090000000] +16:11:55 [ 7] [ 10] [0320161150] +16:11:55 [ 11] [ 6] [794708] +16:11:55 [ 12] [ 6] [161150] +16:11:55 [ 13] [ 4] [0320] +16:11:55 [ 15] [ 4] [0320] +16:11:55 [ 18] [ 4] [6011] +16:11:55 [ 22] [ 3] [900] +16:11:55 [ 25] [ 2] [02] +16:11:55 [ 28] [ 9] [D00002000] +16:11:55 [ 32] [ 6] [621354] +16:11:55 [ 35] [ 27] [1808931000000792=1803500587] +16:11:55 [ 37] [ 12] [507902661111] +16:11:55 [ 41] [ 8] [14000500] +16:11:55 [ 42] [ 15] [NATIVE ] +16:11:55 [ 43] [ 40] [VV Market Vangvieng LAO] +16:11:55 [ 49] [ 3] [418] +16:11:55 [ 52] [ 16] [1695E99AA01558C7] +16:11:55 ============================================================================ +16:11:55 + + +waiting on router queue for slot.... +16:11:55 Sending to : <2> +16:11:55 ============================================================================ +16:11:56 ============================================================================ +16:11:56 Slot Id : <250> +16:11:56 Transaction Type : RESPONSE +16:11:56 Received From : +16:11:56 ============================================================================ +16:11:56 FNo. Len. Field Value +16:11:56 ============================================================================ +16:11:56 [ 1] [ 4] [0210] +16:11:56 [ 2] [ 16] [6213545000601678] +16:11:56 [ 3] [ 6] [010000] +16:11:56 [ 4] [ 12] [000010000000] +16:11:56 [ 7] [ 10] [0320091100] +16:11:56 [ 11] [ 6] [270277] +16:11:56 [ 12] [ 6] [161100] +16:11:56 [ 13] [ 4] [0320] +16:11:56 [ 15] [ 4] [0320] +16:11:56 [ 18] [ 4] [6011] +16:11:56 [ 19] [ 3] [418] +16:11:56 [ 32] [ 6] [180893] +16:11:56 [ 35] [ 32] [6213545000601678=491212010167197] +16:11:56 [ 37] [ 12] [507909270277] +16:11:56 [ 38] [ 6] [314212] +16:11:56 [ 39] [ 2] [00] +16:11:56 [ 41] [ 8] [0366SKTT] +16:11:56 [ 49] [ 3] [418] +16:11:56 [ 54] [ 40] [0001418C0000220079520002418C000022007952] +16:11:56 ============================================================================ +16:11:56 Calculate Source COMM Id = 2 +16:11:56 ============================================================================ +16:11:56 + + +waiting on router queue for slot.... +16:11:59 ============================================================================ +16:11:59 Slot Id : <255> +16:11:59 Transaction Type : REQUEST +16:11:59 Received From : +16:11:59 ============================================================================ +16:11:59 FNo. Len. Field Value +16:11:59 ============================================================================ +16:11:59 [ 1] [ 4] [0800] +16:11:59 [ 2] [ 5] [02531] +16:11:59 [ 3] [ 6] [579168] +16:11:59 [ 7] [ 10] [0320091159] +16:11:59 [ 11] [ 6] [807352] +16:11:59 [ 15] [ 10] [0320091159] +16:11:59 [ 37] [ 11] [57916807352] +16:11:59 [ 70] [ 3] [001] +16:11:59 ============================================================================ +16:11:59 + + +waiting on router queue for slot.... +16:11:59 ============================================================================ +16:11:59 Slot Id : <255> +16:11:59 Transaction Type : RESPONSE +16:11:59 Received From : +16:11:59 ============================================================================ +16:11:59 FNo. Len. Field Value +16:11:59 ============================================================================ +16:11:59 [ 1] [ 4] [0810] +16:11:59 [ 7] [ 10] [0320091159] +16:11:59 [ 11] [ 6] [807352] +16:11:59 [ 15] [ 4] [0320] +16:11:59 [ 37] [ 12] [57916807352] +16:11:59 [ 39] [ 2] [00] +16:11:59 [ 70] [ 3] [001] +16:11:59 ============================================================================ +16:11:59 Sending to : +16:11:59 ============================================================================ +16:11:59 + + +waiting on router queue for slot.... +16:11:59 ============================================================================ +16:11:59 Slot Id : <226> +16:11:59 Transaction Type : RESPONSE +16:11:59 Received From : +16:11:59 ============================================================================ +16:11:59 FNo. Len. Field Value +16:11:59 ============================================================================ +16:11:59 [ 1] [ 4] [0210] +16:11:59 [ 2] [ 16] [1808931000000792] +16:11:59 [ 3] [ 6] [011000] +16:11:59 [ 4] [ 12] [000090000000] +16:11:59 [ 6] [ 12] [000090000000] +16:11:59 [ 7] [ 10] [0320161150] +16:11:59 [ 11] [ 6] [794708] +16:11:59 [ 12] [ 6] [161150] +16:11:59 [ 13] [ 4] [0320] +16:11:59 [ 18] [ 4] [6011] +16:11:59 [ 19] [ 3] [418] +16:11:59 [ 22] [ 3] [021] +16:11:59 [ 32] [ 6] [621354] +16:11:59 [ 35] [ 27] [1808931000000792=1803500587] +16:11:59 [ 37] [ 12] [507902661111] +16:11:59 [ 38] [ 6] [794708] +16:11:59 [ 39] [ 2] [51] +16:11:59 [ 41] [ 8] [14000500] +16:11:59 [ 49] [ 3] [418] +16:11:59 [ 52] [ 16] [1695E99AA01558C7] +16:11:59 ============================================================================ +16:11:59 Sending to : +16:11:59 ============================================================================ +16:11:59 + + +waiting on router queue for slot.... +16:11:59 ============================================================================ +16:11:59 Slot Id : <233> +16:11:59 Transaction Type : REQUEST +16:11:59 Received From : +16:11:59 ============================================================================ +16:11:59 FNo. Len. Field Value +16:11:59 ============================================================================ +16:11:59 [ 1] [ 4] [0200] +16:11:59 [ 2] [ 16] [6213542000043886] +16:11:59 [ 3] [ 6] [310000] +16:11:59 [ 4] [ 12] [000000000000] +16:11:59 [ 7] [ 10] [0320161946] +16:11:59 [ 11] [ 6] [021179] +16:11:59 [ 12] [ 6] [161946] +16:11:59 [ 13] [ 4] [0320] +16:11:59 [ 14] [ 4] [4912] +16:11:59 [ 15] [ 4] [0320] +16:11:59 [ 18] [ 4] [6011] +16:11:59 [ 22] [ 3] [900] +16:11:59 [ 25] [ 2] [02] +16:11:59 [ 28] [ 9] [000000000] +16:11:59 [ 32] [ 6] [220699] +16:11:59 [ 35] [ 32] [6213542000043886=491212014388574] +16:11:59 [ 37] [ 12] [507900263124] +16:11:59 [ 41] [ 8] [01001400] +16:11:59 [ 42] [ 15] [APTRA ] +16:11:59 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:11:59 [ 49] [ 3] [418] +16:11:59 [ 52] [ 16] [B99BFB92D0EFE329] +16:11:59 ============================================================================ +16:11:59 + + +waiting on router queue for slot.... +16:11:59 Sending to : +16:11:59 ============================================================================ +16:11:59 Sending to : +16:11:59 ============================================================================ +16:11:59 ============================================================================ +16:11:59 Slot Id : <233> +16:11:59 Transaction Type : REQUEST +16:11:59 Received From : +16:11:59 ============================================================================ +16:11:59 FNo. Len. Field Value +16:11:59 ============================================================================ +16:11:59 [ 1] [ 4] [0200] +16:11:59 [ 2] [ 16] [6213542000043886] +16:11:59 [ 3] [ 6] [310000] +16:11:59 [ 4] [ 12] [000000000000] +16:11:59 [ 7] [ 10] [0320161946] +16:11:59 [ 11] [ 6] [021179] +16:11:59 [ 12] [ 6] [161946] +16:11:59 [ 13] [ 4] [0320] +16:11:59 [ 14] [ 4] [4912] +16:11:59 [ 15] [ 4] [0320] +16:11:59 [ 18] [ 4] [6011] +16:11:59 [ 22] [ 3] [900] +16:11:59 [ 25] [ 2] [02] +16:11:59 [ 28] [ 9] [000000000] +16:11:59 [ 32] [ 6] [220699] +16:11:59 [ 35] [ 32] [6213542000043886=491212014388574] +16:11:59 [ 37] [ 12] [507900263124] +16:11:59 [ 41] [ 8] [01001400] +16:11:59 [ 42] [ 15] [APTRA ] +16:11:59 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:11:59 [ 49] [ 3] [418] +16:11:59 [ 52] [ 16] [B99BFB92D0EFE329] +16:11:59 ============================================================================ +16:11:59 + + +waiting on router queue for slot.... +16:11:59 Sending to : +16:11:59 ============================================================================ +16:11:59 ============================================================================ +16:11:59 Slot Id : <233> +16:11:59 Transaction Type : REQUEST +16:11:59 Received From : +16:11:59 ============================================================================ +16:11:59 FNo. Len. Field Value +16:11:59 ============================================================================ +16:11:59 [ 1] [ 4] [0200] +16:11:59 [ 2] [ 16] [6213542000043886] +16:11:59 [ 3] [ 6] [310000] +16:11:59 [ 4] [ 12] [000000000000] +16:11:59 [ 7] [ 10] [0320161946] +16:11:59 [ 11] [ 6] [021179] +16:11:59 [ 12] [ 6] [161946] +16:11:59 [ 13] [ 4] [0320] +16:11:59 [ 14] [ 4] [4912] +16:11:59 [ 15] [ 4] [0320] +16:11:59 [ 18] [ 4] [6011] +16:11:59 [ 22] [ 3] [900] +16:11:59 [ 25] [ 2] [02] +16:11:59 [ 28] [ 9] [000000000] +16:11:59 [ 32] [ 6] [220699] +16:11:59 [ 35] [ 32] [6213542000043886=491212014388574] +16:11:59 [ 37] [ 12] [507900263124] +16:11:59 [ 41] [ 8] [01001400] +16:11:59 [ 42] [ 15] [APTRA ] +16:11:59 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:11:59 [ 49] [ 3] [418] +16:11:59 [ 52] [ 16] [228F163C6799ED03] +16:11:59 ============================================================================ +16:11:59 + + +waiting on router queue for slot.... +16:11:59 Sending to : <0> +16:11:59 ============================================================================ +16:11:59 ============================================================================ +16:11:59 Slot Id : <233> +16:11:59 Transaction Type : RESPONSE +16:11:59 Received From : +16:11:59 ============================================================================ +16:11:59 FNo. Len. Field Value +16:11:59 ============================================================================ +16:11:59 [ 1] [ 4] [0210] +16:11:59 [ 2] [ 16] [6213542000043886] +16:11:59 [ 3] [ 6] [310000] +16:11:59 [ 4] [ 12] [000000000000] +16:11:59 [ 7] [ 10] [0320161946] +16:11:59 [ 11] [ 6] [021179] +16:11:59 [ 12] [ 6] [161946] +16:11:59 [ 13] [ 4] [0320] +16:11:59 [ 15] [ 4] [0320] +16:11:59 [ 18] [ 4] [6011] +16:11:59 [ 32] [ 6] [220699] +16:11:59 [ 35] [ 32] [6213542000043886=491212014388574] +16:11:59 [ 37] [ 12] [507900263124] +16:11:59 [ 38] [ 6] [753673] +16:11:59 [ 39] [ 2] [00] +16:11:59 [ 41] [ 8] [01001400] +16:11:59 [ 49] [ 3] [418] +16:11:59 [ 54] [ 40] [0001418C0001912918630002418C000191291863] +16:11:59 ============================================================================ +16:11:59 Sending to : +16:11:59 ============================================================================ +16:11:59 + + +waiting on router queue for slot.... +16:12:00 ============================================================================ +16:12:00 Slot Id : <226> +16:12:00 Transaction Type : RESPONSE +16:12:00 Received From : +16:12:00 ============================================================================ +16:12:00 FNo. Len. Field Value +16:12:00 ============================================================================ +16:12:00 [ 1] [ 4] [0210] +16:12:00 [ 2] [ 16] [1808931000000792] +16:12:00 [ 3] [ 6] [011000] +16:12:00 [ 4] [ 12] [000090000000] +16:12:00 [ 6] [ 12] [000090000000] +16:12:00 [ 7] [ 10] [0320161150] +16:12:00 [ 11] [ 6] [794708] +16:12:00 [ 12] [ 6] [161150] +16:12:00 [ 13] [ 4] [0320] +16:12:00 [ 18] [ 4] [6011] +16:12:00 [ 19] [ 3] [418] +16:12:00 [ 22] [ 3] [021] +16:12:00 [ 32] [ 6] [621354] +16:12:00 [ 35] [ 27] [1808931000000792=1803500587] +16:12:00 [ 37] [ 12] [507902661111] +16:12:00 [ 38] [ 6] [794708] +16:12:00 [ 39] [ 2] [51] +16:12:00 [ 41] [ 8] [14000500] +16:12:00 [ 49] [ 3] [418] +16:12:00 [ 52] [ 16] [1695E99AA01558C7] +16:12:00 ============================================================================ +16:12:00 Calculate Source COMM Id = 0 +16:12:00 ============================================================================ +16:12:00 + + +waiting on router queue for slot.... +16:12:01 ============================================================================ +16:12:01 Slot Id : <233> +16:12:01 Transaction Type : RESPONSE +16:12:01 Received From : +16:12:01 ============================================================================ +16:12:01 FNo. Len. Field Value +16:12:01 ============================================================================ +16:12:01 [ 1] [ 4] [0210] +16:12:01 [ 2] [ 16] [6213542000043886] +16:12:01 [ 3] [ 6] [310000] +16:12:01 [ 4] [ 12] [000000000000] +16:12:01 [ 7] [ 10] [0320161946] +16:12:01 [ 11] [ 6] [021179] +16:12:01 [ 12] [ 6] [161946] +16:12:01 [ 13] [ 4] [0320] +16:12:01 [ 15] [ 4] [0320] +16:12:01 [ 18] [ 4] [6011] +16:12:01 [ 32] [ 6] [220699] +16:12:01 [ 35] [ 32] [6213542000043886=491212014388574] +16:12:01 [ 37] [ 12] [507900263124] +16:12:01 [ 38] [ 6] [753673] +16:12:01 [ 39] [ 2] [00] +16:12:01 [ 41] [ 8] [01001400] +16:12:01 [ 49] [ 3] [418] +16:12:01 [ 54] [ 40] [0001418C0001912918630002418C000191291863] +16:12:01 ============================================================================ +16:12:01 Calculate Source COMM Id = 1 +16:12:01 ============================================================================ +16:12:01 + + +waiting on router queue for slot.... +16:12:09 ============================================================================ +16:12:09 Slot Id : <237> +16:12:09 Transaction Type : REQUEST +16:12:09 Received From : +16:12:09 ============================================================================ +16:12:09 FNo. Len. Field Value +16:12:09 ============================================================================ +16:12:09 [ 1] [ 4] [0800] +16:12:09 [ 7] [ 10] [0320091116] +16:12:09 [ 11] [ 6] [157188] +16:12:09 [ 70] [ 3] [301] +16:12:09 ============================================================================ +16:12:09 + + +waiting on router queue for slot.... +16:12:09 Sending to : +16:12:09 ============================================================================ +16:12:09 ============================================================================ +16:12:09 Slot Id : <237> +16:12:09 Transaction Type : RESPONSE +16:12:09 Received From : +16:12:09 ============================================================================ +16:12:09 FNo. Len. Field Value +16:12:09 ============================================================================ +16:12:09 [ 1] [ 4] [0810] +16:12:09 [ 7] [ 10] [0320091116] +16:12:09 [ 11] [ 6] [157188] +16:12:09 [ 39] [ 2] [00] +16:12:09 [ 70] [ 3] [301] +16:12:09 ============================================================================ +16:12:09 Calculate Source COMM Id = 2 +16:12:09 ============================================================================ +16:12:09 + + +waiting on router queue for slot.... +16:12:20 ============================================================================ +16:12:20 Slot Id : <238> +16:12:20 Transaction Type : REQUEST +16:12:20 Received From : +16:12:20 ============================================================================ +16:12:20 FNo. Len. Field Value +16:12:20 ============================================================================ +16:12:20 [ 1] [ 4] [0200] +16:12:20 [ 2] [ 16] [6213544001267431] +16:12:20 [ 3] [ 6] [011000] +16:12:20 [ 4] [ 12] [000020000000] +16:12:20 [ 7] [ 10] [0320091126] +16:12:20 [ 11] [ 6] [270281] +16:12:20 [ 12] [ 6] [161126] +16:12:20 [ 13] [ 4] [0320] +16:12:20 [ 14] [ 4] [4912] +16:12:20 [ 15] [ 4] [0320] +16:12:20 [ 18] [ 4] [6011] +16:12:20 [ 19] [ 3] [418] +16:12:20 [ 22] [ 3] [021] +16:12:20 [ 25] [ 2] [01] +16:12:20 [ 28] [ 9] [D00002000] +16:12:20 [ 32] [ 6] [180893] +16:12:20 [ 35] [ 32] [6213544001267431=491212016743556] +16:12:20 [ 37] [ 12] [507909270281] +16:12:20 [ 41] [ 8] [0528LPBP] +16:12:20 [ 42] [ 15] [999999 ] +16:12:20 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:12:20 [ 49] [ 3] [418] +16:12:20 [ 52] [ 16] [AC93C9FFC29409B3] +16:12:20 ============================================================================ +16:12:20 + + +waiting on router queue for slot.... +16:12:20 Sending to : +16:12:20 ============================================================================ +16:12:20 Sending to : +16:12:20 ============================================================================ +16:12:20 ============================================================================ +16:12:20 Slot Id : <200> +16:12:20 Transaction Type : REQUEST +16:12:20 Received From : +16:12:20 ============================================================================ +16:12:20 FNo. Len. Field Value +16:12:20 ============================================================================ +16:12:20 [ 1] [ 4] [0800] +16:12:20 [ 7] [ 10] [0320091127] +16:12:20 [ 11] [ 6] [157189] +16:12:20 [ 70] [ 3] [301] +16:12:20 ============================================================================ +16:12:20 + + +waiting on router queue for slot.... +16:12:20 Sending to : +16:12:20 ============================================================================ +16:12:20 ============================================================================ +16:12:20 Slot Id : <200> +16:12:20 Transaction Type : RESPONSE +16:12:20 Received From : +16:12:20 ============================================================================ +16:12:20 FNo. Len. Field Value +16:12:20 ============================================================================ +16:12:20 [ 1] [ 4] [0810] +16:12:20 [ 7] [ 10] [0320091127] +16:12:20 [ 11] [ 6] [157189] +16:12:20 [ 39] [ 2] [00] +16:12:20 [ 70] [ 3] [301] +16:12:20 ============================================================================ +16:12:20 Calculate Source COMM Id = 2 +16:12:20 ============================================================================ +16:12:20 + + +waiting on router queue for slot.... +16:12:20 ============================================================================ +16:12:20 Slot Id : <238> +16:12:20 Transaction Type : REQUEST +16:12:20 Received From : +16:12:20 ============================================================================ +16:12:20 FNo. Len. Field Value +16:12:20 ============================================================================ +16:12:20 [ 1] [ 4] [0200] +16:12:20 [ 2] [ 16] [6213544001267431] +16:12:20 [ 3] [ 6] [011000] +16:12:20 [ 4] [ 12] [000020000000] +16:12:20 [ 7] [ 10] [0320091126] +16:12:20 [ 11] [ 6] [270281] +16:12:20 [ 12] [ 6] [161126] +16:12:20 [ 13] [ 4] [0320] +16:12:20 [ 14] [ 4] [4912] +16:12:20 [ 15] [ 4] [0320] +16:12:20 [ 18] [ 4] [6011] +16:12:20 [ 19] [ 3] [418] +16:12:20 [ 22] [ 3] [021] +16:12:20 [ 25] [ 2] [01] +16:12:20 [ 28] [ 9] [D00002000] +16:12:20 [ 32] [ 6] [180893] +16:12:20 [ 35] [ 32] [6213544001267431=491212016743556] +16:12:20 [ 37] [ 12] [507909270281] +16:12:20 [ 41] [ 8] [0528LPBP] +16:12:20 [ 42] [ 15] [999999 ] +16:12:20 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:12:20 [ 49] [ 3] [418] +16:12:20 [ 52] [ 16] [AC93C9FFC29409B3] +16:12:20 ============================================================================ +16:12:20 + + +waiting on router queue for slot.... +16:12:20 Sending to : +16:12:20 ============================================================================ +16:12:20 ============================================================================ +16:12:20 Slot Id : <238> +16:12:20 Transaction Type : REQUEST +16:12:20 Received From : +16:12:20 ============================================================================ +16:12:20 FNo. Len. Field Value +16:12:20 ============================================================================ +16:12:20 [ 1] [ 4] [0200] +16:12:20 [ 2] [ 16] [6213544001267431] +16:12:20 [ 3] [ 6] [011000] +16:12:20 [ 4] [ 12] [000020000000] +16:12:20 [ 7] [ 10] [0320091126] +16:12:20 [ 11] [ 6] [270281] +16:12:20 [ 12] [ 6] [161126] +16:12:20 [ 13] [ 4] [0320] +16:12:20 [ 14] [ 4] [4912] +16:12:20 [ 15] [ 4] [0320] +16:12:20 [ 18] [ 4] [6011] +16:12:20 [ 19] [ 3] [418] +16:12:20 [ 22] [ 3] [021] +16:12:20 [ 25] [ 2] [01] +16:12:20 [ 28] [ 9] [D00002000] +16:12:20 [ 32] [ 6] [180893] +16:12:20 [ 35] [ 32] [6213544001267431=491212016743556] +16:12:20 [ 37] [ 12] [507909270281] +16:12:20 [ 41] [ 8] [0528LPBP] +16:12:20 [ 42] [ 15] [999999 ] +16:12:20 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:12:20 [ 49] [ 3] [418] +16:12:20 [ 52] [ 16] [8539F54B54ADF2DE] +16:12:20 ============================================================================ +16:12:20 + + +waiting on router queue for slot.... +16:12:20 Sending to : <0> +16:12:20 ============================================================================ +16:12:21 ============================================================================ +16:12:21 Slot Id : <238> +16:12:21 Transaction Type : RESPONSE +16:12:21 Received From : +16:12:21 ============================================================================ +16:12:21 FNo. Len. Field Value +16:12:21 ============================================================================ +16:12:21 [ 1] [ 4] [0210] +16:12:21 [ 2] [ 16] [6213544001267431] +16:12:21 [ 3] [ 6] [011000] +16:12:21 [ 4] [ 12] [000020000000] +16:12:21 [ 7] [ 10] [0320091126] +16:12:21 [ 11] [ 6] [270281] +16:12:21 [ 12] [ 6] [161126] +16:12:21 [ 13] [ 4] [0320] +16:12:21 [ 15] [ 4] [0320] +16:12:21 [ 18] [ 4] [6011] +16:12:21 [ 19] [ 3] [418] +16:12:21 [ 32] [ 6] [180893] +16:12:21 [ 35] [ 32] [6213544001267431=491212016743556] +16:12:21 [ 37] [ 12] [507909270281] +16:12:21 [ 38] [ 6] [270281] +16:12:21 [ 39] [ 2] [51] +16:12:21 [ 41] [ 8] [0528LPBP] +16:12:21 [ 49] [ 3] [418] +16:12:21 [ 54] [ 40] [1001418C0000108227411002418C000010822741] +16:12:21 ============================================================================ +16:12:21 Sending to : +16:12:21 ============================================================================ +16:12:21 + + +waiting on router queue for slot.... +16:12:22 ============================================================================ +16:12:22 Slot Id : <238> +16:12:22 Transaction Type : RESPONSE +16:12:22 Received From : +16:12:22 ============================================================================ +16:12:22 FNo. Len. Field Value +16:12:22 ============================================================================ +16:12:22 [ 1] [ 4] [0210] +16:12:22 [ 2] [ 16] [6213544001267431] +16:12:22 [ 3] [ 6] [011000] +16:12:22 [ 4] [ 12] [000020000000] +16:12:22 [ 7] [ 10] [0320091126] +16:12:22 [ 11] [ 6] [270281] +16:12:22 [ 12] [ 6] [161126] +16:12:22 [ 13] [ 4] [0320] +16:12:22 [ 15] [ 4] [0320] +16:12:22 [ 18] [ 4] [6011] +16:12:22 [ 19] [ 3] [418] +16:12:22 [ 32] [ 6] [180893] +16:12:22 [ 35] [ 32] [6213544001267431=491212016743556] +16:12:22 [ 37] [ 12] [507909270281] +16:12:22 [ 38] [ 6] [270281] +16:12:22 [ 39] [ 2] [51] +16:12:22 [ 41] [ 8] [0528LPBP] +16:12:22 [ 49] [ 3] [418] +16:12:22 [ 54] [ 40] [1001418C0000108227411002418C000010822741] +16:12:22 ============================================================================ +16:12:22 Calculate Source COMM Id = 2 +16:12:22 ============================================================================ +16:12:22 + + +waiting on router queue for slot.... +16:12:26 ============================================================================ +16:12:26 Slot Id : <260> +16:12:26 Transaction Type : REQUEST +16:12:26 Received From : +16:12:26 ============================================================================ +16:12:26 FNo. Len. Field Value +16:12:26 ============================================================================ +16:12:26 [ 1] [ 4] [0200] +16:12:26 [ 2] [ 16] [6213544002162383] +16:12:26 [ 3] [ 6] [302000] +16:12:26 [ 4] [ 12] [000000000000] +16:12:26 [ 7] [ 10] [0320161016] +16:12:26 [ 11] [ 6] [951243] +16:12:26 [ 12] [ 6] [161016] +16:12:26 [ 13] [ 4] [0320] +16:12:26 [ 15] [ 4] [0320] +16:12:26 [ 18] [ 4] [6011] +16:12:26 [ 19] [ 3] [418] +16:12:26 [ 22] [ 3] [021] +16:12:26 [ 25] [ 2] [01] +16:12:26 [ 28] [ 9] [D00000000] +16:12:26 [ 32] [ 6] [668899] +16:12:26 [ 35] [ 32] [6213544002162383=491212016238594] +16:12:26 [ 37] [ 12] [507901443614] +16:12:26 [ 41] [ 8] [03414001] +16:12:26 [ 42] [ 15] [APT ] +16:12:26 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +16:12:26 [ 49] [ 3] [418] +16:12:26 [ 52] [ 16] [376E18114B7F1C42] +16:12:26 ============================================================================ +16:12:26 + + +waiting on router queue for slot.... +16:12:26 Sending to : +16:12:26 ============================================================================ +16:12:26 Sending to : +16:12:26 ============================================================================ +16:12:27 ============================================================================ +16:12:27 Slot Id : <260> +16:12:27 Transaction Type : REQUEST +16:12:27 Received From : +16:12:27 ============================================================================ +16:12:27 FNo. Len. Field Value +16:12:27 ============================================================================ +16:12:27 [ 1] [ 4] [0200] +16:12:27 [ 2] [ 16] [6213544002162383] +16:12:27 [ 3] [ 6] [302000] +16:12:27 [ 4] [ 12] [000000000000] +16:12:27 [ 7] [ 10] [0320161016] +16:12:27 [ 11] [ 6] [951243] +16:12:27 [ 12] [ 6] [161016] +16:12:27 [ 13] [ 4] [0320] +16:12:27 [ 15] [ 4] [0320] +16:12:27 [ 18] [ 4] [6011] +16:12:27 [ 19] [ 3] [418] +16:12:27 [ 22] [ 3] [021] +16:12:27 [ 25] [ 2] [01] +16:12:27 [ 28] [ 9] [D00000000] +16:12:27 [ 32] [ 6] [668899] +16:12:27 [ 35] [ 32] [6213544002162383=491212016238594] +16:12:27 [ 37] [ 12] [507901443614] +16:12:27 [ 41] [ 8] [03414001] +16:12:27 [ 42] [ 15] [APT ] +16:12:27 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +16:12:27 [ 49] [ 3] [418] +16:12:27 [ 52] [ 16] [376E18114B7F1C42] +16:12:27 ============================================================================ +16:12:27 + + +waiting on router queue for slot.... +16:12:27 Sending to : +16:12:27 ============================================================================ +16:12:27 ============================================================================ +16:12:27 Slot Id : <260> +16:12:27 Transaction Type : REQUEST +16:12:27 Received From : +16:12:27 ============================================================================ +16:12:27 FNo. Len. Field Value +16:12:27 ============================================================================ +16:12:27 [ 1] [ 4] [0200] +16:12:27 [ 2] [ 16] [6213544002162383] +16:12:27 [ 3] [ 6] [302000] +16:12:27 [ 4] [ 12] [000000000000] +16:12:27 [ 7] [ 10] [0320161016] +16:12:27 [ 11] [ 6] [951243] +16:12:27 [ 12] [ 6] [161016] +16:12:27 [ 13] [ 4] [0320] +16:12:27 [ 15] [ 4] [0320] +16:12:27 [ 18] [ 4] [6011] +16:12:27 [ 19] [ 3] [418] +16:12:27 [ 22] [ 3] [021] +16:12:27 [ 25] [ 2] [01] +16:12:27 [ 28] [ 9] [D00000000] +16:12:27 [ 32] [ 6] [668899] +16:12:27 [ 35] [ 32] [6213544002162383=491212016238594] +16:12:27 [ 37] [ 12] [507901443614] +16:12:27 [ 41] [ 8] [03414001] +16:12:27 [ 42] [ 15] [APT ] +16:12:27 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +16:12:27 [ 49] [ 3] [418] +16:12:27 [ 52] [ 16] [B0BB16DCA3D595FF] +16:12:27 ============================================================================ +16:12:27 + + +waiting on router queue for slot.... +16:12:27 Sending to : <0> +16:12:27 ============================================================================ +16:12:27 ============================================================================ +16:12:27 Slot Id : <234> +16:12:27 Transaction Type : REQUEST +16:12:27 Received From : +16:12:27 ============================================================================ +16:12:27 FNo. Len. Field Value +16:12:27 ============================================================================ +16:12:27 [ 1] [ 4] [0200] +16:12:27 [ 2] [ 16] [6213545000973457] +16:12:27 [ 3] [ 6] [301000] +16:12:27 [ 7] [ 10] [0320091130] +16:12:27 [ 11] [ 6] [270282] +16:12:27 [ 12] [ 6] [161130] +16:12:27 [ 13] [ 4] [0320] +16:12:27 [ 14] [ 4] [4912] +16:12:27 [ 15] [ 4] [0320] +16:12:27 [ 18] [ 4] [6011] +16:12:27 [ 19] [ 3] [418] +16:12:27 [ 22] [ 3] [021] +16:12:27 [ 25] [ 2] [01] +16:12:27 [ 32] [ 6] [180893] +16:12:27 [ 35] [ 32] [6213545000973457=491212017345178] +16:12:27 [ 37] [ 12] [507909270282] +16:12:27 [ 41] [ 8] [0221XKKM] +16:12:27 [ 42] [ 15] [999999 ] +16:12:27 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:12:27 [ 49] [ 3] [418] +16:12:27 [ 52] [ 16] [889AAB2EA006FEED] +16:12:27 ============================================================================ +16:12:27 + + +waiting on router queue for slot.... +16:12:27 Sending to : +16:12:27 ============================================================================ +16:12:27 Sending to : +16:12:27 ============================================================================ +16:12:27 ============================================================================ +16:12:27 Slot Id : <260> +16:12:27 Transaction Type : RESPONSE +16:12:27 Received From : +16:12:27 ============================================================================ +16:12:27 FNo. Len. Field Value +16:12:27 ============================================================================ +16:12:27 [ 1] [ 4] [0210] +16:12:27 [ 2] [ 16] [6213544002162383] +16:12:27 [ 3] [ 6] [302000] +16:12:27 [ 4] [ 12] [000000000000] +16:12:27 [ 7] [ 10] [0320161016] +16:12:27 [ 11] [ 6] [951243] +16:12:27 [ 12] [ 6] [161016] +16:12:27 [ 13] [ 4] [0320] +16:12:27 [ 15] [ 4] [0320] +16:12:27 [ 18] [ 4] [6011] +16:12:27 [ 19] [ 3] [418] +16:12:27 [ 32] [ 6] [668899] +16:12:27 [ 35] [ 32] [6213544002162383=491212016238594] +16:12:27 [ 37] [ 12] [507901443614] +16:12:27 [ 38] [ 6] [248225] +16:12:27 [ 39] [ 2] [00] +16:12:27 [ 41] [ 8] [03414001] +16:12:27 [ 49] [ 3] [418] +16:12:27 [ 54] [ 40] [2001418C0000138467002002418C000013846700] +16:12:27 ============================================================================ +16:12:27 Sending to : +16:12:27 ============================================================================ +16:12:27 + + +waiting on router queue for slot.... +16:12:27 ============================================================================ +16:12:27 Slot Id : <234> +16:12:27 Transaction Type : REQUEST +16:12:27 Received From : +16:12:27 ============================================================================ +16:12:27 FNo. Len. Field Value +16:12:27 ============================================================================ +16:12:27 [ 1] [ 4] [0200] +16:12:27 [ 2] [ 16] [6213545000973457] +16:12:27 [ 3] [ 6] [301000] +16:12:27 [ 7] [ 10] [0320091130] +16:12:27 [ 11] [ 6] [270282] +16:12:27 [ 12] [ 6] [161130] +16:12:27 [ 13] [ 4] [0320] +16:12:27 [ 14] [ 4] [4912] +16:12:27 [ 15] [ 4] [0320] +16:12:27 [ 18] [ 4] [6011] +16:12:27 [ 19] [ 3] [418] +16:12:27 [ 22] [ 3] [021] +16:12:27 [ 25] [ 2] [01] +16:12:27 [ 32] [ 6] [180893] +16:12:27 [ 35] [ 32] [6213545000973457=491212017345178] +16:12:27 [ 37] [ 12] [507909270282] +16:12:27 [ 41] [ 8] [0221XKKM] +16:12:27 [ 42] [ 15] [999999 ] +16:12:27 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:12:27 [ 49] [ 3] [418] +16:12:27 [ 52] [ 16] [889AAB2EA006FEED] +16:12:27 ============================================================================ +16:12:27 + + +waiting on router queue for slot.... +16:12:27 Sending to : +16:12:27 ============================================================================ +16:12:27 ============================================================================ +16:12:27 Slot Id : <234> +16:12:27 Transaction Type : REQUEST +16:12:27 Received From : +16:12:27 ============================================================================ +16:12:27 FNo. Len. Field Value +16:12:27 ============================================================================ +16:12:27 [ 1] [ 4] [0200] +16:12:27 [ 2] [ 16] [6213545000973457] +16:12:27 [ 3] [ 6] [301000] +16:12:27 [ 7] [ 10] [0320091130] +16:12:27 [ 11] [ 6] [270282] +16:12:27 [ 12] [ 6] [161130] +16:12:27 [ 13] [ 4] [0320] +16:12:27 [ 14] [ 4] [4912] +16:12:27 [ 15] [ 4] [0320] +16:12:27 [ 18] [ 4] [6011] +16:12:27 [ 19] [ 3] [418] +16:12:27 [ 22] [ 3] [021] +16:12:27 [ 25] [ 2] [01] +16:12:27 [ 32] [ 6] [180893] +16:12:27 [ 35] [ 32] [6213545000973457=491212017345178] +16:12:27 [ 37] [ 12] [507909270282] +16:12:27 [ 41] [ 8] [0221XKKM] +16:12:27 [ 42] [ 15] [999999 ] +16:12:27 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:12:27 [ 49] [ 3] [418] +16:12:27 [ 52] [ 16] [E0D38ED1DE57398F] +16:12:27 ============================================================================ +16:12:27 + + +waiting on router queue for slot.... +16:12:27 Sending to : <0> +16:12:27 ============================================================================ +16:12:27 ============================================================================ +16:12:27 Slot Id : <234> +16:12:27 Transaction Type : RESPONSE +16:12:27 Received From : +16:12:27 ============================================================================ +16:12:27 FNo. Len. Field Value +16:12:27 ============================================================================ +16:12:27 [ 1] [ 4] [0210] +16:12:27 [ 2] [ 16] [6213545000973457] +16:12:27 [ 3] [ 6] [301000] +16:12:27 [ 4] [ 12] [000000000000] +16:12:27 [ 7] [ 10] [0320091130] +16:12:27 [ 11] [ 6] [270282] +16:12:27 [ 12] [ 6] [161130] +16:12:27 [ 13] [ 4] [0320] +16:12:27 [ 15] [ 4] [0320] +16:12:27 [ 18] [ 4] [6011] +16:12:27 [ 19] [ 3] [418] +16:12:27 [ 32] [ 6] [180893] +16:12:27 [ 35] [ 32] [6213545000973457=491212017345178] +16:12:27 [ 37] [ 12] [507909270282] +16:12:27 [ 38] [ 6] [742516] +16:12:27 [ 39] [ 2] [00] +16:12:27 [ 41] [ 8] [0221XKKM] +16:12:27 [ 49] [ 3] [418] +16:12:27 [ 54] [ 40] [1001418C0005047590341002418C000504759034] +16:12:27 ============================================================================ +16:12:27 Sending to : +16:12:27 ============================================================================ +16:12:27 + + +waiting on router queue for slot.... +16:12:28 ============================================================================ +16:12:28 Slot Id : <253> +16:12:28 Transaction Type : REQUEST +16:12:28 Received From : +16:12:28 ============================================================================ +16:12:28 FNo. Len. Field Value +16:12:28 ============================================================================ +16:12:28 [ 1] [ 4] [0200] +16:12:28 [ 2] [ 16] [6688990103283402] +16:12:28 [ 3] [ 6] [010000] +16:12:28 [ 4] [ 12] [000100000000] +16:12:28 [ 7] [ 10] [0320161223] +16:12:28 [ 11] [ 6] [794878] +16:12:28 [ 12] [ 6] [161223] +16:12:28 [ 13] [ 4] [0320] +16:12:28 [ 15] [ 4] [0320] +16:12:28 [ 18] [ 4] [6011] +16:12:28 [ 22] [ 3] [900] +16:12:28 [ 25] [ 2] [02] +16:12:28 [ 28] [ 9] [D00002000] +16:12:28 [ 32] [ 6] [621354] +16:12:28 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:12:28 [ 37] [ 12] [507903499573] +16:12:28 [ 41] [ 8] [06002200] +16:12:28 [ 42] [ 15] [NATIVE ] +16:12:28 [ 43] [ 40] [Beng Market Beng LAO] +16:12:28 [ 49] [ 3] [418] +16:12:28 [ 52] [ 16] [6577EE23574221CD] +16:12:28 ============================================================================ +16:12:28 + + +waiting on router queue for slot.... +16:12:28 Sending to : +16:12:28 ============================================================================ +16:12:28 Sending to : +16:12:28 ============================================================================ +16:12:28 ============================================================================ +16:12:28 Slot Id : <260> +16:12:28 Transaction Type : RESPONSE +16:12:28 Received From : +16:12:28 ============================================================================ +16:12:28 FNo. Len. Field Value +16:12:28 ============================================================================ +16:12:28 [ 1] [ 4] [0210] +16:12:28 [ 2] [ 16] [6213544002162383] +16:12:28 [ 3] [ 6] [302000] +16:12:28 [ 4] [ 12] [000000000000] +16:12:28 [ 7] [ 10] [0320161016] +16:12:28 [ 11] [ 6] [951243] +16:12:28 [ 12] [ 6] [161016] +16:12:28 [ 13] [ 4] [0320] +16:12:28 [ 15] [ 4] [0320] +16:12:28 [ 18] [ 4] [6011] +16:12:28 [ 19] [ 3] [418] +16:12:28 [ 32] [ 6] [668899] +16:12:28 [ 35] [ 32] [6213544002162383=491212016238594] +16:12:28 [ 37] [ 12] [507901443614] +16:12:28 [ 38] [ 6] [248225] +16:12:28 [ 39] [ 2] [00] +16:12:28 [ 41] [ 8] [03414001] +16:12:28 [ 49] [ 3] [418] +16:12:28 [ 54] [ 40] [2001418C0000138467002002418C000013846700] +16:12:28 ============================================================================ +16:12:28 Calculate Source COMM Id = 4 +16:12:28 ============================================================================ +16:12:28 + + +waiting on router queue for slot.... +16:12:28 ============================================================================ +16:12:28 Slot Id : <253> +16:12:28 Transaction Type : REQUEST +16:12:28 Received From : +16:12:28 ============================================================================ +16:12:28 FNo. Len. Field Value +16:12:28 ============================================================================ +16:12:28 [ 1] [ 4] [0200] +16:12:28 [ 2] [ 16] [6688990103283402] +16:12:28 [ 3] [ 6] [010000] +16:12:28 [ 4] [ 12] [000100000000] +16:12:28 [ 7] [ 10] [0320161223] +16:12:28 [ 11] [ 6] [794878] +16:12:28 [ 12] [ 6] [161223] +16:12:28 [ 13] [ 4] [0320] +16:12:28 [ 15] [ 4] [0320] +16:12:28 [ 18] [ 4] [6011] +16:12:28 [ 22] [ 3] [900] +16:12:28 [ 25] [ 2] [02] +16:12:28 [ 28] [ 9] [D00002000] +16:12:28 [ 32] [ 6] [621354] +16:12:28 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:12:28 [ 37] [ 12] [507903499573] +16:12:28 [ 41] [ 8] [06002200] +16:12:28 [ 42] [ 15] [NATIVE ] +16:12:28 [ 43] [ 40] [Beng Market Beng LAO] +16:12:28 [ 49] [ 3] [418] +16:12:28 [ 52] [ 16] [6577EE23574221CD] +16:12:28 ============================================================================ +16:12:28 + + +waiting on router queue for slot.... +16:12:28 Sending to : +16:12:28 ============================================================================ +16:12:28 ============================================================================ +16:12:28 Slot Id : <253> +16:12:28 Transaction Type : REQUEST +16:12:28 Received From : +16:12:28 ============================================================================ +16:12:28 FNo. Len. Field Value +16:12:28 ============================================================================ +16:12:28 [ 1] [ 4] [0200] +16:12:28 [ 2] [ 16] [6688990103283402] +16:12:28 [ 3] [ 6] [010000] +16:12:28 [ 4] [ 12] [000100000000] +16:12:28 [ 7] [ 10] [0320161223] +16:12:28 [ 11] [ 6] [794878] +16:12:28 [ 12] [ 6] [161223] +16:12:28 [ 13] [ 4] [0320] +16:12:28 [ 15] [ 4] [0320] +16:12:28 [ 18] [ 4] [6011] +16:12:28 [ 22] [ 3] [900] +16:12:28 [ 25] [ 2] [02] +16:12:28 [ 28] [ 9] [D00002000] +16:12:28 [ 32] [ 6] [621354] +16:12:28 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:12:28 [ 37] [ 12] [507903499573] +16:12:28 [ 41] [ 8] [06002200] +16:12:28 [ 42] [ 15] [NATIVE ] +16:12:28 [ 43] [ 40] [Beng Market Beng LAO] +16:12:28 [ 49] [ 3] [418] +16:12:28 [ 52] [ 16] [1CC8806DB4B6639B] +16:12:28 ============================================================================ +16:12:28 + + +waiting on router queue for slot.... +16:12:28 Sending to : <4> +16:12:28 ============================================================================ +16:12:29 ============================================================================ +16:12:29 Slot Id : <216> +16:12:29 Transaction Type : REQUEST +16:12:29 Received From : +16:12:29 ============================================================================ +16:12:29 FNo. Len. Field Value +16:12:29 ============================================================================ +16:12:29 [ 1] [ 4] [0200] +16:12:29 [ 2] [ 16] [6688990603112804] +16:12:29 [ 3] [ 6] [010000] +16:12:29 [ 4] [ 12] [000100000000] +16:12:29 [ 7] [ 10] [0320161224] +16:12:29 [ 11] [ 6] [794884] +16:12:29 [ 12] [ 6] [161224] +16:12:29 [ 13] [ 4] [0320] +16:12:29 [ 15] [ 4] [0320] +16:12:29 [ 18] [ 4] [6011] +16:12:29 [ 22] [ 3] [900] +16:12:29 [ 25] [ 2] [02] +16:12:29 [ 28] [ 9] [D00002000] +16:12:29 [ 32] [ 6] [621354] +16:12:29 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:12:29 [ 37] [ 12] [507903345188] +16:12:29 [ 41] [ 8] [13001400] +16:12:29 [ 42] [ 15] [NATIVE ] +16:12:29 [ 43] [ 40] [Kham Unit Kham LAO] +16:12:29 [ 49] [ 3] [418] +16:12:29 [ 52] [ 16] [14B00E02330F9B16] +16:12:29 ============================================================================ +16:12:29 + + +waiting on router queue for slot.... +16:12:29 Sending to : +16:12:29 ============================================================================ +16:12:29 Sending to : +16:12:29 ============================================================================ +16:12:29 ============================================================================ +16:12:29 Slot Id : <253> +16:12:29 Transaction Type : RESPONSE +16:12:29 Received From : +16:12:29 ============================================================================ +16:12:29 FNo. Len. Field Value +16:12:29 ============================================================================ +16:12:29 [ 1] [ 4] [0210] +16:12:29 [ 2] [ 16] [6688990103283402] +16:12:29 [ 3] [ 6] [010000] +16:12:29 [ 4] [ 12] [000100000000] +16:12:29 [ 11] [ 6] [794878] +16:12:29 [ 12] [ 6] [161223] +16:12:29 [ 15] [ 4] [0320] +16:12:29 [ 18] [ 4] [6011] +16:12:29 [ 32] [ 6] [621354] +16:12:29 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:12:29 [ 37] [ 12] [507903499573] +16:12:29 [ 38] [ 6] [950976] +16:12:29 [ 39] [ 2] [00] +16:12:29 [ 41] [ 8] [06002200] +16:12:29 [ 49] [ 3] [418] +16:12:29 [ 54] [ 20] [0002418C000106827012] +16:12:29 ============================================================================ +16:12:29 Sending to : +16:12:29 ============================================================================ +16:12:29 + + +waiting on router queue for slot.... +16:12:30 ============================================================================ +16:12:30 Slot Id : <216> +16:12:30 Transaction Type : REQUEST +16:12:30 Received From : +16:12:30 ============================================================================ +16:12:30 FNo. Len. Field Value +16:12:30 ============================================================================ +16:12:30 [ 1] [ 4] [0200] +16:12:30 [ 2] [ 16] [6688990603112804] +16:12:30 [ 3] [ 6] [010000] +16:12:30 [ 4] [ 12] [000100000000] +16:12:30 [ 7] [ 10] [0320161224] +16:12:30 [ 11] [ 6] [794884] +16:12:30 [ 12] [ 6] [161224] +16:12:30 [ 13] [ 4] [0320] +16:12:30 [ 15] [ 4] [0320] +16:12:30 [ 18] [ 4] [6011] +16:12:30 [ 22] [ 3] [900] +16:12:30 [ 25] [ 2] [02] +16:12:30 [ 28] [ 9] [D00002000] +16:12:30 [ 32] [ 6] [621354] +16:12:30 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:12:30 [ 37] [ 12] [507903345188] +16:12:30 [ 41] [ 8] [13001400] +16:12:30 [ 42] [ 15] [NATIVE ] +16:12:30 [ 43] [ 40] [Kham Unit Kham LAO] +16:12:30 [ 49] [ 3] [418] +16:12:30 [ 52] [ 16] [14B00E02330F9B16] +16:12:30 ============================================================================ +16:12:30 + + +waiting on router queue for slot.... +16:12:30 Sending to : +16:12:30 ============================================================================ +16:12:30 ============================================================================ +16:12:30 Slot Id : <216> +16:12:30 Transaction Type : REQUEST +16:12:30 Received From : +16:12:30 ============================================================================ +16:12:30 FNo. Len. Field Value +16:12:30 ============================================================================ +16:12:30 [ 1] [ 4] [0200] +16:12:30 [ 2] [ 16] [6688990603112804] +16:12:30 [ 3] [ 6] [010000] +16:12:30 [ 4] [ 12] [000100000000] +16:12:30 [ 7] [ 10] [0320161224] +16:12:30 [ 11] [ 6] [794884] +16:12:30 [ 12] [ 6] [161224] +16:12:30 [ 13] [ 4] [0320] +16:12:30 [ 15] [ 4] [0320] +16:12:30 [ 18] [ 4] [6011] +16:12:30 [ 22] [ 3] [900] +16:12:30 [ 25] [ 2] [02] +16:12:30 [ 28] [ 9] [D00002000] +16:12:30 [ 32] [ 6] [621354] +16:12:30 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:12:30 [ 37] [ 12] [507903345188] +16:12:30 [ 41] [ 8] [13001400] +16:12:30 [ 42] [ 15] [NATIVE ] +16:12:30 [ 43] [ 40] [Kham Unit Kham LAO] +16:12:30 [ 49] [ 3] [418] +16:12:30 [ 52] [ 16] [BB75313225CC3507] +16:12:30 ============================================================================ +16:12:30 + + +waiting on router queue for slot.... +16:12:30 Sending to : <4> +16:12:30 ============================================================================ +16:12:30 ============================================================================ +16:12:30 Slot Id : <234> +16:12:30 Transaction Type : RESPONSE +16:12:30 Received From : +16:12:30 ============================================================================ +16:12:30 FNo. Len. Field Value +16:12:30 ============================================================================ +16:12:30 [ 1] [ 4] [0210] +16:12:30 [ 2] [ 16] [6213545000973457] +16:12:30 [ 3] [ 6] [301000] +16:12:30 [ 4] [ 12] [000000000000] +16:12:30 [ 7] [ 10] [0320091130] +16:12:30 [ 11] [ 6] [270282] +16:12:30 [ 12] [ 6] [161130] +16:12:30 [ 13] [ 4] [0320] +16:12:30 [ 15] [ 4] [0320] +16:12:30 [ 18] [ 4] [6011] +16:12:30 [ 19] [ 3] [418] +16:12:30 [ 32] [ 6] [180893] +16:12:30 [ 35] [ 32] [6213545000973457=491212017345178] +16:12:30 [ 37] [ 12] [507909270282] +16:12:30 [ 38] [ 6] [742516] +16:12:30 [ 39] [ 2] [00] +16:12:30 [ 41] [ 8] [0221XKKM] +16:12:30 [ 49] [ 3] [418] +16:12:30 [ 54] [ 40] [1001418C0005047590341002418C000504759034] +16:12:30 ============================================================================ +16:12:30 Calculate Source COMM Id = 2 +16:12:30 ============================================================================ +16:12:30 + + +waiting on router queue for slot.... +16:12:31 ============================================================================ +16:12:31 Slot Id : <216> +16:12:31 Transaction Type : RESPONSE +16:12:31 Received From : +16:12:31 ============================================================================ +16:12:31 FNo. Len. Field Value +16:12:31 ============================================================================ +16:12:31 [ 1] [ 4] [0210] +16:12:31 [ 2] [ 16] [6688990603112804] +16:12:31 [ 3] [ 6] [010000] +16:12:31 [ 4] [ 12] [000100000000] +16:12:31 [ 7] [ 10] [0320161224] +16:12:31 [ 11] [ 6] [794884] +16:12:31 [ 12] [ 6] [161224] +16:12:31 [ 13] [ 4] [0320] +16:12:31 [ 15] [ 4] [0320] +16:12:31 [ 18] [ 4] [6011] +16:12:31 [ 22] [ 3] [021] +16:12:31 [ 32] [ 6] [621354] +16:12:31 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:12:31 [ 37] [ 12] [507903345188] +16:12:31 [ 38] [ 6] [161020] +16:12:31 [ 39] [ 2] [55] +16:12:31 [ 41] [ 8] [13001400] +16:12:31 [ 49] [ 3] [418] +16:12:31 ============================================================================ +16:12:31 Sending to : +16:12:31 ============================================================================ +16:12:31 + + +waiting on router queue for slot.... +16:12:32 ============================================================================ +16:12:32 Slot Id : <253> +16:12:32 Transaction Type : RESPONSE +16:12:32 Received From : +16:12:32 ============================================================================ +16:12:32 FNo. Len. Field Value +16:12:32 ============================================================================ +16:12:32 [ 1] [ 4] [0210] +16:12:32 [ 2] [ 16] [6688990103283402] +16:12:32 [ 3] [ 6] [010000] +16:12:32 [ 4] [ 12] [000100000000] +16:12:32 [ 11] [ 6] [794878] +16:12:32 [ 12] [ 6] [161223] +16:12:32 [ 15] [ 4] [0320] +16:12:32 [ 18] [ 4] [6011] +16:12:32 [ 32] [ 6] [621354] +16:12:32 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:12:32 [ 37] [ 12] [507903499573] +16:12:32 [ 38] [ 6] [950976] +16:12:32 [ 39] [ 2] [00] +16:12:32 [ 41] [ 8] [06002200] +16:12:32 [ 49] [ 3] [418] +16:12:32 [ 54] [ 20] [0002418C000106827012] +16:12:32 ============================================================================ +16:12:32 Calculate Source COMM Id = 0 +16:12:32 ============================================================================ +16:12:32 + + +waiting on router queue for slot.... +16:12:33 ============================================================================ +16:12:33 Slot Id : <216> +16:12:33 Transaction Type : RESPONSE +16:12:33 Received From : +16:12:33 ============================================================================ +16:12:33 FNo. Len. Field Value +16:12:33 ============================================================================ +16:12:33 [ 1] [ 4] [0210] +16:12:33 [ 2] [ 16] [6688990603112804] +16:12:33 [ 3] [ 6] [010000] +16:12:33 [ 4] [ 12] [000100000000] +16:12:33 [ 7] [ 10] [0320161224] +16:12:33 [ 11] [ 6] [794884] +16:12:33 [ 12] [ 6] [161224] +16:12:33 [ 13] [ 4] [0320] +16:12:33 [ 15] [ 4] [0320] +16:12:33 [ 18] [ 4] [6011] +16:12:33 [ 22] [ 3] [021] +16:12:33 [ 32] [ 6] [621354] +16:12:33 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:12:33 [ 37] [ 12] [507903345188] +16:12:33 [ 38] [ 6] [161020] +16:12:33 [ 39] [ 2] [55] +16:12:33 [ 41] [ 8] [13001400] +16:12:33 [ 49] [ 3] [418] +16:12:33 ============================================================================ +16:12:33 Calculate Source COMM Id = 0 +16:12:33 ============================================================================ +16:12:33 + + +waiting on router queue for slot.... +16:12:39 ============================================================================ +16:12:39 Slot Id : <249> +16:12:39 Transaction Type : REQUEST +16:12:39 Received From : +16:12:39 ============================================================================ +16:12:39 FNo. Len. Field Value +16:12:39 ============================================================================ +16:12:39 [ 1] [ 4] [0200] +16:12:39 [ 2] [ 16] [6213542000043886] +16:12:39 [ 3] [ 6] [010000] +16:12:39 [ 4] [ 12] [000070000000] +16:12:39 [ 7] [ 10] [0320162026] +16:12:39 [ 11] [ 6] [021180] +16:12:39 [ 12] [ 6] [162026] +16:12:39 [ 13] [ 4] [0320] +16:12:39 [ 14] [ 4] [4912] +16:12:39 [ 15] [ 4] [0320] +16:12:39 [ 18] [ 4] [6011] +16:12:39 [ 22] [ 3] [900] +16:12:39 [ 25] [ 2] [02] +16:12:39 [ 28] [ 9] [D00002000] +16:12:39 [ 32] [ 6] [220699] +16:12:39 [ 35] [ 32] [6213542000043886=491212014388574] +16:12:39 [ 37] [ 12] [507900263125] +16:12:39 [ 41] [ 8] [01001400] +16:12:39 [ 42] [ 15] [APTRA ] +16:12:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:12:39 [ 49] [ 3] [418] +16:12:39 [ 52] [ 16] [B99BFB92D0EFE329] +16:12:39 ============================================================================ +16:12:39 + + +waiting on router queue for slot.... +16:12:39 Sending to : +16:12:39 ============================================================================ +16:12:39 Sending to : +16:12:39 ============================================================================ +16:12:39 ============================================================================ +16:12:39 Slot Id : <249> +16:12:39 Transaction Type : REQUEST +16:12:39 Received From : +16:12:39 ============================================================================ +16:12:39 FNo. Len. Field Value +16:12:39 ============================================================================ +16:12:39 [ 1] [ 4] [0200] +16:12:39 [ 2] [ 16] [6213542000043886] +16:12:39 [ 3] [ 6] [010000] +16:12:39 [ 4] [ 12] [000070000000] +16:12:39 [ 7] [ 10] [0320162026] +16:12:39 [ 11] [ 6] [021180] +16:12:39 [ 12] [ 6] [162026] +16:12:39 [ 13] [ 4] [0320] +16:12:39 [ 14] [ 4] [4912] +16:12:39 [ 15] [ 4] [0320] +16:12:39 [ 18] [ 4] [6011] +16:12:39 [ 22] [ 3] [900] +16:12:39 [ 25] [ 2] [02] +16:12:39 [ 28] [ 9] [D00002000] +16:12:39 [ 32] [ 6] [220699] +16:12:39 [ 35] [ 32] [6213542000043886=491212014388574] +16:12:39 [ 37] [ 12] [507900263125] +16:12:39 [ 41] [ 8] [01001400] +16:12:39 [ 42] [ 15] [APTRA ] +16:12:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:12:39 [ 49] [ 3] [418] +16:12:39 [ 52] [ 16] [B99BFB92D0EFE329] +16:12:39 ============================================================================ +16:12:39 + + +waiting on router queue for slot.... +16:12:39 Sending to : +16:12:39 ============================================================================ +16:12:39 ============================================================================ +16:12:39 Slot Id : <249> +16:12:39 Transaction Type : REQUEST +16:12:39 Received From : +16:12:39 ============================================================================ +16:12:39 FNo. Len. Field Value +16:12:39 ============================================================================ +16:12:39 [ 1] [ 4] [0200] +16:12:39 [ 2] [ 16] [6213542000043886] +16:12:39 [ 3] [ 6] [010000] +16:12:39 [ 4] [ 12] [000070000000] +16:12:39 [ 7] [ 10] [0320162026] +16:12:39 [ 11] [ 6] [021180] +16:12:39 [ 12] [ 6] [162026] +16:12:39 [ 13] [ 4] [0320] +16:12:39 [ 14] [ 4] [4912] +16:12:39 [ 15] [ 4] [0320] +16:12:39 [ 18] [ 4] [6011] +16:12:39 [ 22] [ 3] [900] +16:12:39 [ 25] [ 2] [02] +16:12:39 [ 28] [ 9] [D00002000] +16:12:39 [ 32] [ 6] [220699] +16:12:39 [ 35] [ 32] [6213542000043886=491212014388574] +16:12:39 [ 37] [ 12] [507900263125] +16:12:39 [ 41] [ 8] [01001400] +16:12:39 [ 42] [ 15] [APTRA ] +16:12:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:12:39 [ 49] [ 3] [418] +16:12:39 [ 52] [ 16] [228F163C6799ED03] +16:12:39 ============================================================================ +16:12:39 + + +waiting on router queue for slot.... +16:12:39 Sending to : <0> +16:12:39 ============================================================================ +16:12:40 ============================================================================ +16:12:40 Slot Id : <249> +16:12:40 Transaction Type : RESPONSE +16:12:40 Received From : +16:12:40 ============================================================================ +16:12:40 FNo. Len. Field Value +16:12:40 ============================================================================ +16:12:40 [ 1] [ 4] [0210] +16:12:40 [ 2] [ 16] [6213542000043886] +16:12:40 [ 3] [ 6] [010000] +16:12:40 [ 4] [ 12] [000070000000] +16:12:40 [ 7] [ 10] [0320162026] +16:12:40 [ 11] [ 6] [021180] +16:12:40 [ 12] [ 6] [162026] +16:12:40 [ 13] [ 4] [0320] +16:12:40 [ 15] [ 4] [0320] +16:12:40 [ 18] [ 4] [6011] +16:12:40 [ 32] [ 6] [220699] +16:12:40 [ 35] [ 32] [6213542000043886=491212014388574] +16:12:40 [ 37] [ 12] [507900263125] +16:12:40 [ 38] [ 6] [946300] +16:12:40 [ 39] [ 2] [00] +16:12:40 [ 41] [ 8] [01001400] +16:12:40 [ 49] [ 3] [418] +16:12:40 [ 54] [ 40] [0001418C0001210918630002418C000121091863] +16:12:40 ============================================================================ +16:12:40 Sending to : +16:12:40 ============================================================================ +16:12:40 + + +waiting on router queue for slot.... +16:12:41 ============================================================================ +16:12:41 Slot Id : <263> +16:12:41 Transaction Type : REQUEST +16:12:41 Received From : +16:12:41 ============================================================================ +16:12:41 FNo. Len. Field Value +16:12:41 ============================================================================ +16:12:41 [ 1] [ 4] [0800] +16:12:41 [ 7] [ 10] [0320091148] +16:12:41 [ 11] [ 6] [157190] +16:12:41 [ 70] [ 3] [301] +16:12:41 ============================================================================ +16:12:41 + + +waiting on router queue for slot.... +16:12:41 Sending to : +16:12:41 ============================================================================ +16:12:41 ============================================================================ +16:12:41 Slot Id : <263> +16:12:41 Transaction Type : RESPONSE +16:12:41 Received From : +16:12:41 ============================================================================ +16:12:41 FNo. Len. Field Value +16:12:41 ============================================================================ +16:12:41 [ 1] [ 4] [0810] +16:12:41 [ 7] [ 10] [0320091148] +16:12:41 [ 11] [ 6] [157190] +16:12:41 [ 39] [ 2] [00] +16:12:41 [ 70] [ 3] [301] +16:12:41 ============================================================================ +16:12:41 Calculate Source COMM Id = 2 +16:12:41 ============================================================================ +16:12:41 + + +waiting on router queue for slot.... +16:12:42 ============================================================================ +16:12:42 Slot Id : <249> +16:12:42 Transaction Type : RESPONSE +16:12:42 Received From : +16:12:42 ============================================================================ +16:12:42 FNo. Len. Field Value +16:12:42 ============================================================================ +16:12:42 [ 1] [ 4] [0210] +16:12:42 [ 2] [ 16] [6213542000043886] +16:12:42 [ 3] [ 6] [010000] +16:12:42 [ 4] [ 12] [000070000000] +16:12:42 [ 7] [ 10] [0320162026] +16:12:42 [ 11] [ 6] [021180] +16:12:42 [ 12] [ 6] [162026] +16:12:42 [ 13] [ 4] [0320] +16:12:42 [ 15] [ 4] [0320] +16:12:42 [ 18] [ 4] [6011] +16:12:42 [ 32] [ 6] [220699] +16:12:42 [ 35] [ 32] [6213542000043886=491212014388574] +16:12:42 [ 37] [ 12] [507900263125] +16:12:42 [ 38] [ 6] [946300] +16:12:42 [ 39] [ 2] [00] +16:12:42 [ 41] [ 8] [01001400] +16:12:42 [ 49] [ 3] [418] +16:12:42 [ 54] [ 40] [0001418C0001210918630002418C000121091863] +16:12:42 ============================================================================ +16:12:42 Calculate Source COMM Id = 1 +16:12:42 ============================================================================ +16:12:42 + + +waiting on router queue for slot.... +16:12:42 ============================================================================ +16:12:42 Slot Id : <210> +16:12:42 Transaction Type : REQUEST +16:12:42 Received From : +16:12:42 ============================================================================ +16:12:42 FNo. Len. Field Value +16:12:42 ============================================================================ +16:12:42 [ 1] [ 4] [0200] +16:12:42 [ 2] [ 16] [6213544001691622] +16:12:42 [ 3] [ 6] [011000] +16:12:42 [ 4] [ 12] [000030000000] +16:12:42 [ 7] [ 10] [0320162029] +16:12:42 [ 11] [ 6] [223749] +16:12:42 [ 12] [ 6] [162029] +16:12:42 [ 13] [ 4] [0320] +16:12:42 [ 14] [ 4] [4912] +16:12:42 [ 15] [ 4] [0320] +16:12:42 [ 18] [ 4] [6011] +16:12:42 [ 22] [ 3] [900] +16:12:42 [ 25] [ 2] [02] +16:12:42 [ 28] [ 9] [D00002000] +16:12:42 [ 32] [ 6] [220699] +16:12:42 [ 35] [ 32] [6213544001691622=491212019162310] +16:12:42 [ 37] [ 12] [507900118776] +16:12:42 [ 41] [ 8] [01001100] +16:12:42 [ 42] [ 15] [APTRA ] +16:12:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:12:42 [ 49] [ 3] [418] +16:12:42 [ 52] [ 16] [B796D52FF4F064B6] +16:12:42 ============================================================================ +16:12:42 + + +waiting on router queue for slot.... +16:12:42 Sending to : +16:12:42 ============================================================================ +16:12:42 Sending to : +16:12:42 ============================================================================ +16:12:42 ============================================================================ +16:12:42 Slot Id : <259> +16:12:42 Transaction Type : REQUEST +16:12:42 Received From : +16:12:42 ============================================================================ +16:12:42 FNo. Len. Field Value +16:12:42 ============================================================================ +16:12:42 [ 1] [ 4] [0800] +16:12:42 [ 7] [ 10] [0320232432] +16:12:42 [ 11] [ 6] [162432] +16:12:42 [ 37] [ 12] [57916162432] +16:12:42 [ 70] [ 3] [301] +16:12:42 ============================================================================ +16:12:42 + + +waiting on router queue for slot.... +16:12:42 Sending to : +16:12:42 ============================================================================ +16:12:42 ============================================================================ +16:12:42 Slot Id : <259> +16:12:42 Transaction Type : RESPONSE +16:12:42 Received From : +16:12:42 ============================================================================ +16:12:42 FNo. Len. Field Value +16:12:42 ============================================================================ +16:12:42 [ 1] [ 4] [0810] +16:12:42 [ 7] [ 10] [0320232432] +16:12:42 [ 11] [ 6] [162432] +16:12:42 [ 37] [ 12] [579161624320] +16:12:42 [ 39] [ 2] [00] +16:12:42 [ 70] [ 3] [810] +16:12:42 ============================================================================ +16:12:42 Calculate Source COMM Id = 6 +16:12:42 ============================================================================ +16:12:42 + + +waiting on router queue for slot.... +16:12:42 ============================================================================ +16:12:42 Slot Id : <210> +16:12:42 Transaction Type : REQUEST +16:12:42 Received From : +16:12:42 ============================================================================ +16:12:42 FNo. Len. Field Value +16:12:42 ============================================================================ +16:12:42 [ 1] [ 4] [0200] +16:12:42 [ 2] [ 16] [6213544001691622] +16:12:42 [ 3] [ 6] [011000] +16:12:42 [ 4] [ 12] [000030000000] +16:12:42 [ 7] [ 10] [0320162029] +16:12:42 [ 11] [ 6] [223749] +16:12:42 [ 12] [ 6] [162029] +16:12:42 [ 13] [ 4] [0320] +16:12:42 [ 14] [ 4] [4912] +16:12:42 [ 15] [ 4] [0320] +16:12:42 [ 18] [ 4] [6011] +16:12:42 [ 22] [ 3] [900] +16:12:42 [ 25] [ 2] [02] +16:12:42 [ 28] [ 9] [D00002000] +16:12:42 [ 32] [ 6] [220699] +16:12:42 [ 35] [ 32] [6213544001691622=491212019162310] +16:12:42 [ 37] [ 12] [507900118776] +16:12:42 [ 41] [ 8] [01001100] +16:12:42 [ 42] [ 15] [APTRA ] +16:12:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:12:42 [ 49] [ 3] [418] +16:12:42 [ 52] [ 16] [B796D52FF4F064B6] +16:12:42 ============================================================================ +16:12:42 + + +waiting on router queue for slot.... +16:12:42 Sending to : +16:12:42 ============================================================================ +16:12:42 ============================================================================ +16:12:42 Slot Id : <210> +16:12:42 Transaction Type : REQUEST +16:12:42 Received From : +16:12:42 ============================================================================ +16:12:42 FNo. Len. Field Value +16:12:42 ============================================================================ +16:12:42 [ 1] [ 4] [0200] +16:12:42 [ 2] [ 16] [6213544001691622] +16:12:42 [ 3] [ 6] [011000] +16:12:42 [ 4] [ 12] [000030000000] +16:12:42 [ 7] [ 10] [0320162029] +16:12:42 [ 11] [ 6] [223749] +16:12:42 [ 12] [ 6] [162029] +16:12:42 [ 13] [ 4] [0320] +16:12:42 [ 14] [ 4] [4912] +16:12:42 [ 15] [ 4] [0320] +16:12:42 [ 18] [ 4] [6011] +16:12:42 [ 22] [ 3] [900] +16:12:42 [ 25] [ 2] [02] +16:12:42 [ 28] [ 9] [D00002000] +16:12:42 [ 32] [ 6] [220699] +16:12:42 [ 35] [ 32] [6213544001691622=491212019162310] +16:12:42 [ 37] [ 12] [507900118776] +16:12:42 [ 41] [ 8] [01001100] +16:12:42 [ 42] [ 15] [APTRA ] +16:12:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:12:42 [ 49] [ 3] [418] +16:12:42 [ 52] [ 16] [4B88FDBD423654DA] +16:12:42 ============================================================================ +16:12:42 + + +waiting on router queue for slot.... +16:12:42 Sending to : <0> +16:12:42 ============================================================================ +16:12:43 ============================================================================ +16:12:43 Slot Id : <210> +16:12:43 Transaction Type : RESPONSE +16:12:43 Received From : +16:12:43 ============================================================================ +16:12:43 FNo. Len. Field Value +16:12:43 ============================================================================ +16:12:43 [ 1] [ 4] [0210] +16:12:43 [ 2] [ 16] [6213544001691622] +16:12:43 [ 3] [ 6] [011000] +16:12:43 [ 4] [ 12] [000030000000] +16:12:43 [ 7] [ 10] [0320162029] +16:12:43 [ 11] [ 6] [223749] +16:12:43 [ 12] [ 6] [162029] +16:12:43 [ 13] [ 4] [0320] +16:12:43 [ 15] [ 4] [0320] +16:12:43 [ 18] [ 4] [6011] +16:12:43 [ 32] [ 6] [220699] +16:12:43 [ 35] [ 32] [6213544001691622=491212019162310] +16:12:43 [ 37] [ 12] [507900118776] +16:12:43 [ 38] [ 6] [072295] +16:12:43 [ 39] [ 2] [00] +16:12:43 [ 41] [ 8] [01001100] +16:12:43 [ 49] [ 3] [418] +16:12:43 [ 54] [ 40] [1001418C0000643599101002418C000064359910] +16:12:43 ============================================================================ +16:12:43 Sending to : +16:12:43 ============================================================================ +16:12:43 + + +waiting on router queue for slot.... +16:12:44 ============================================================================ +16:12:44 Slot Id : <210> +16:12:44 Transaction Type : RESPONSE +16:12:44 Received From : +16:12:44 ============================================================================ +16:12:44 FNo. Len. Field Value +16:12:44 ============================================================================ +16:12:44 [ 1] [ 4] [0210] +16:12:44 [ 2] [ 16] [6213544001691622] +16:12:44 [ 3] [ 6] [011000] +16:12:44 [ 4] [ 12] [000030000000] +16:12:44 [ 7] [ 10] [0320162029] +16:12:44 [ 11] [ 6] [223749] +16:12:44 [ 12] [ 6] [162029] +16:12:44 [ 13] [ 4] [0320] +16:12:44 [ 15] [ 4] [0320] +16:12:44 [ 18] [ 4] [6011] +16:12:44 [ 32] [ 6] [220699] +16:12:44 [ 35] [ 32] [6213544001691622=491212019162310] +16:12:44 [ 37] [ 12] [507900118776] +16:12:44 [ 38] [ 6] [072295] +16:12:44 [ 39] [ 2] [00] +16:12:44 [ 41] [ 8] [01001100] +16:12:44 [ 49] [ 3] [418] +16:12:44 [ 54] [ 40] [1001418C0000643599101002418C000064359910] +16:12:44 ============================================================================ +16:12:44 Calculate Source COMM Id = 1 +16:12:44 ============================================================================ +16:12:44 + + +waiting on router queue for slot.... +16:12:51 ============================================================================ +16:12:51 Slot Id : <261> +16:12:51 Transaction Type : REQUEST +16:12:51 Received From : +16:12:51 ============================================================================ +16:12:51 FNo. Len. Field Value +16:12:51 ============================================================================ +16:12:51 [ 1] [ 4] [0800] +16:12:51 [ 7] [ 10] [0320091158] +16:12:51 [ 11] [ 6] [157191] +16:12:51 [ 70] [ 3] [301] +16:12:51 ============================================================================ +16:12:51 + + +waiting on router queue for slot.... +16:12:51 Sending to : +16:12:51 ============================================================================ +16:12:51 ============================================================================ +16:12:51 Slot Id : <261> +16:12:51 Transaction Type : RESPONSE +16:12:51 Received From : +16:12:51 ============================================================================ +16:12:51 FNo. Len. Field Value +16:12:51 ============================================================================ +16:12:51 [ 1] [ 4] [0810] +16:12:51 [ 7] [ 10] [0320091158] +16:12:51 [ 11] [ 6] [157191] +16:12:51 [ 39] [ 2] [00] +16:12:51 [ 70] [ 3] [301] +16:12:51 ============================================================================ +16:12:51 Calculate Source COMM Id = 2 +16:12:51 ============================================================================ +16:12:51 + + +waiting on router queue for slot.... +16:12:52 ============================================================================ +16:12:52 Slot Id : <225> +16:12:52 Transaction Type : REQUEST +16:12:52 Received From : +16:12:52 ============================================================================ +16:12:52 FNo. Len. Field Value +16:12:52 ============================================================================ +16:12:52 [ 1] [ 4] [0200] +16:12:52 [ 2] [ 16] [6688990601232802] +16:12:52 [ 3] [ 6] [010000] +16:12:52 [ 4] [ 12] [000010000000] +16:12:52 [ 7] [ 10] [0320091158] +16:12:52 [ 11] [ 6] [270284] +16:12:52 [ 12] [ 6] [161158] +16:12:52 [ 13] [ 4] [0320] +16:12:52 [ 14] [ 4] [4106] +16:12:52 [ 15] [ 4] [0320] +16:12:52 [ 18] [ 4] [6011] +16:12:52 [ 19] [ 3] [418] +16:12:52 [ 22] [ 3] [021] +16:12:52 [ 25] [ 2] [01] +16:12:52 [ 28] [ 9] [D00002000] +16:12:52 [ 32] [ 6] [180893] +16:12:52 [ 35] [ 37] [6688990601232802=41060061280298500000] +16:12:52 [ 37] [ 12] [507909270284] +16:12:52 [ 41] [ 8] [0523XYNG] +16:12:52 [ 42] [ 15] [999999 ] +16:12:52 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +16:12:52 [ 49] [ 3] [418] +16:12:52 [ 52] [ 16] [D0D87B1FCC8294D4] +16:12:52 ============================================================================ +16:12:52 + + +waiting on router queue for slot.... +16:12:52 Sending to : +16:12:52 ============================================================================ +16:12:52 Sending to : +16:12:52 ============================================================================ +16:12:52 ============================================================================ +16:12:52 Slot Id : <225> +16:12:52 Transaction Type : REQUEST +16:12:52 Received From : +16:12:52 ============================================================================ +16:12:52 FNo. Len. Field Value +16:12:52 ============================================================================ +16:12:52 [ 1] [ 4] [0200] +16:12:52 [ 2] [ 16] [6688990601232802] +16:12:52 [ 3] [ 6] [010000] +16:12:52 [ 4] [ 12] [000010000000] +16:12:52 [ 7] [ 10] [0320091158] +16:12:52 [ 11] [ 6] [270284] +16:12:52 [ 12] [ 6] [161158] +16:12:52 [ 13] [ 4] [0320] +16:12:52 [ 14] [ 4] [4106] +16:12:52 [ 15] [ 4] [0320] +16:12:52 [ 18] [ 4] [6011] +16:12:52 [ 19] [ 3] [418] +16:12:52 [ 22] [ 3] [021] +16:12:52 [ 25] [ 2] [01] +16:12:52 [ 28] [ 9] [D00002000] +16:12:52 [ 32] [ 6] [180893] +16:12:52 [ 35] [ 37] [6688990601232802=41060061280298500000] +16:12:52 [ 37] [ 12] [507909270284] +16:12:52 [ 41] [ 8] [0523XYNG] +16:12:52 [ 42] [ 15] [999999 ] +16:12:52 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +16:12:52 [ 49] [ 3] [418] +16:12:52 [ 52] [ 16] [D0D87B1FCC8294D4] +16:12:52 ============================================================================ +16:12:52 + + +waiting on router queue for slot.... +16:12:52 Sending to : +16:12:52 ============================================================================ +16:12:52 ============================================================================ +16:12:52 Slot Id : <225> +16:12:52 Transaction Type : REQUEST +16:12:52 Received From : +16:12:52 ============================================================================ +16:12:52 FNo. Len. Field Value +16:12:52 ============================================================================ +16:12:52 [ 1] [ 4] [0200] +16:12:52 [ 2] [ 16] [6688990601232802] +16:12:52 [ 3] [ 6] [010000] +16:12:52 [ 4] [ 12] [000010000000] +16:12:52 [ 7] [ 10] [0320091158] +16:12:52 [ 11] [ 6] [270284] +16:12:52 [ 12] [ 6] [161158] +16:12:52 [ 13] [ 4] [0320] +16:12:52 [ 14] [ 4] [4106] +16:12:52 [ 15] [ 4] [0320] +16:12:52 [ 18] [ 4] [6011] +16:12:52 [ 19] [ 3] [418] +16:12:52 [ 22] [ 3] [021] +16:12:52 [ 25] [ 2] [01] +16:12:52 [ 28] [ 9] [D00002000] +16:12:52 [ 32] [ 6] [180893] +16:12:52 [ 35] [ 37] [6688990601232802=41060061280298500000] +16:12:52 [ 37] [ 12] [507909270284] +16:12:52 [ 41] [ 8] [0523XYNG] +16:12:52 [ 42] [ 15] [999999 ] +16:12:52 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +16:12:52 [ 49] [ 3] [418] +16:12:52 [ 52] [ 16] [74AC764C1077757F] +16:12:52 ============================================================================ +16:12:52 + + +waiting on router queue for slot.... +16:12:52 Sending to : <0> +16:12:52 ============================================================================ +16:12:52 ============================================================================ +16:12:52 Slot Id : <225> +16:12:52 Transaction Type : RESPONSE +16:12:52 Received From : +16:12:52 ============================================================================ +16:12:52 FNo. Len. Field Value +16:12:52 ============================================================================ +16:12:52 [ 1] [ 4] [0210] +16:12:52 [ 2] [ 16] [6688990601232802] +16:12:52 [ 3] [ 6] [010000] +16:12:52 [ 4] [ 12] [000010000000] +16:12:52 [ 7] [ 10] [0320091158] +16:12:52 [ 11] [ 6] [270284] +16:12:52 [ 12] [ 6] [161158] +16:12:52 [ 13] [ 4] [0320] +16:12:52 [ 15] [ 4] [0320] +16:12:52 [ 18] [ 4] [6011] +16:12:52 [ 19] [ 3] [418] +16:12:52 [ 22] [ 3] [021] +16:12:52 [ 32] [ 6] [180893] +16:12:52 [ 35] [ 37] [6688990601232802=41060061280298500000] +16:12:52 [ 37] [ 12] [507909270284] +16:12:52 [ 39] [ 2] [14] +16:12:52 [ 41] [ 8] [0523XYNG] +16:12:52 [ 49] [ 3] [418] +16:12:52 ============================================================================ +16:12:52 Sending to : +16:12:52 ============================================================================ +16:12:52 + + +waiting on router queue for slot.... +16:12:53 ============================================================================ +16:12:53 Slot Id : <225> +16:12:53 Transaction Type : RESPONSE +16:12:53 Received From : +16:12:53 ============================================================================ +16:12:53 FNo. Len. Field Value +16:12:53 ============================================================================ +16:12:53 [ 1] [ 4] [0210] +16:12:53 [ 2] [ 16] [6688990601232802] +16:12:53 [ 3] [ 6] [010000] +16:12:53 [ 4] [ 12] [000010000000] +16:12:53 [ 7] [ 10] [0320091158] +16:12:53 [ 11] [ 6] [270284] +16:12:53 [ 12] [ 6] [161158] +16:12:53 [ 13] [ 4] [0320] +16:12:53 [ 15] [ 4] [0320] +16:12:53 [ 18] [ 4] [6011] +16:12:53 [ 19] [ 3] [418] +16:12:53 [ 22] [ 3] [021] +16:12:53 [ 32] [ 6] [180893] +16:12:53 [ 35] [ 37] [6688990601232802=41060061280298500000] +16:12:53 [ 37] [ 12] [507909270284] +16:12:53 [ 39] [ 2] [14] +16:12:53 [ 41] [ 8] [0523XYNG] +16:12:53 [ 49] [ 3] [418] +16:12:53 ============================================================================ +16:12:53 Calculate Source COMM Id = 2 +16:12:53 ============================================================================ +16:12:53 + + +waiting on router queue for slot.... +16:12:59 ============================================================================ +16:12:59 Slot Id : <270> +16:12:59 Transaction Type : REQUEST +16:12:59 Received From : +16:12:59 ============================================================================ +16:12:59 FNo. Len. Field Value +16:12:59 ============================================================================ +16:12:59 [ 1] [ 4] [0200] +16:12:59 [ 2] [ 16] [6213545000113120] +16:12:59 [ 3] [ 6] [010000] +16:12:59 [ 4] [ 12] [000100000000] +16:12:59 [ 7] [ 10] [0320091204] +16:12:59 [ 11] [ 6] [270286] +16:12:59 [ 12] [ 6] [161204] +16:12:59 [ 13] [ 4] [0320] +16:12:59 [ 14] [ 4] [4912] +16:12:59 [ 15] [ 4] [0320] +16:12:59 [ 18] [ 4] [6011] +16:12:59 [ 19] [ 3] [418] +16:12:59 [ 22] [ 3] [021] +16:12:59 [ 25] [ 2] [01] +16:12:59 [ 28] [ 9] [D00002000] +16:12:59 [ 32] [ 6] [180893] +16:12:59 [ 35] [ 32] [6213545000113120=491212011312309] +16:12:59 [ 37] [ 12] [507909270286] +16:12:59 [ 41] [ 8] [0301LPBX] +16:12:59 [ 42] [ 15] [999999 ] +16:12:59 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:12:59 [ 49] [ 3] [418] +16:12:59 [ 52] [ 16] [3C5D296411EA7857] +16:12:59 ============================================================================ +16:12:59 + + +waiting on router queue for slot.... +16:12:59 Sending to : +16:12:59 ============================================================================ +16:12:59 Sending to : +16:12:59 ============================================================================ +16:12:59 ============================================================================ +16:12:59 Slot Id : <270> +16:12:59 Transaction Type : REQUEST +16:12:59 Received From : +16:12:59 ============================================================================ +16:12:59 FNo. Len. Field Value +16:12:59 ============================================================================ +16:12:59 [ 1] [ 4] [0200] +16:12:59 [ 2] [ 16] [6213545000113120] +16:12:59 [ 3] [ 6] [010000] +16:12:59 [ 4] [ 12] [000100000000] +16:12:59 [ 7] [ 10] [0320091204] +16:12:59 [ 11] [ 6] [270286] +16:12:59 [ 12] [ 6] [161204] +16:12:59 [ 13] [ 4] [0320] +16:12:59 [ 14] [ 4] [4912] +16:12:59 [ 15] [ 4] [0320] +16:12:59 [ 18] [ 4] [6011] +16:12:59 [ 19] [ 3] [418] +16:12:59 [ 22] [ 3] [021] +16:12:59 [ 25] [ 2] [01] +16:12:59 [ 28] [ 9] [D00002000] +16:12:59 [ 32] [ 6] [180893] +16:12:59 [ 35] [ 32] [6213545000113120=491212011312309] +16:12:59 [ 37] [ 12] [507909270286] +16:12:59 [ 41] [ 8] [0301LPBX] +16:12:59 [ 42] [ 15] [999999 ] +16:12:59 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:12:59 [ 49] [ 3] [418] +16:12:59 [ 52] [ 16] [3C5D296411EA7857] +16:12:59 ============================================================================ +16:12:59 + + +waiting on router queue for slot.... +16:12:59 Sending to : +16:12:59 ============================================================================ +16:12:59 ============================================================================ +16:12:59 Slot Id : <270> +16:12:59 Transaction Type : REQUEST +16:12:59 Received From : +16:12:59 ============================================================================ +16:12:59 FNo. Len. Field Value +16:12:59 ============================================================================ +16:12:59 [ 1] [ 4] [0200] +16:12:59 [ 2] [ 16] [6213545000113120] +16:12:59 [ 3] [ 6] [010000] +16:12:59 [ 4] [ 12] [000100000000] +16:12:59 [ 7] [ 10] [0320091204] +16:12:59 [ 11] [ 6] [270286] +16:12:59 [ 12] [ 6] [161204] +16:12:59 [ 13] [ 4] [0320] +16:12:59 [ 14] [ 4] [4912] +16:12:59 [ 15] [ 4] [0320] +16:12:59 [ 18] [ 4] [6011] +16:12:59 [ 19] [ 3] [418] +16:12:59 [ 22] [ 3] [021] +16:12:59 [ 25] [ 2] [01] +16:12:59 [ 28] [ 9] [D00002000] +16:12:59 [ 32] [ 6] [180893] +16:12:59 [ 35] [ 32] [6213545000113120=491212011312309] +16:12:59 [ 37] [ 12] [507909270286] +16:12:59 [ 41] [ 8] [0301LPBX] +16:12:59 [ 42] [ 15] [999999 ] +16:12:59 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:12:59 [ 49] [ 3] [418] +16:12:59 [ 52] [ 16] [7ACABAEB5161204C] +16:12:59 ============================================================================ +16:12:59 + + +waiting on router queue for slot.... +16:12:59 Sending to : <0> +16:12:59 ============================================================================ +16:13:00 ============================================================================ +16:13:00 Slot Id : <270> +16:13:00 Transaction Type : RESPONSE +16:13:00 Received From : +16:13:00 ============================================================================ +16:13:00 FNo. Len. Field Value +16:13:00 ============================================================================ +16:13:00 [ 1] [ 4] [0210] +16:13:00 [ 2] [ 16] [6213545000113120] +16:13:00 [ 3] [ 6] [010000] +16:13:00 [ 4] [ 12] [000100000000] +16:13:00 [ 7] [ 10] [0320091204] +16:13:00 [ 11] [ 6] [270286] +16:13:00 [ 12] [ 6] [161204] +16:13:00 [ 13] [ 4] [0320] +16:13:00 [ 15] [ 4] [0320] +16:13:00 [ 18] [ 4] [6011] +16:13:00 [ 19] [ 3] [418] +16:13:00 [ 32] [ 6] [180893] +16:13:00 [ 35] [ 32] [6213545000113120=491212011312309] +16:13:00 [ 37] [ 12] [507909270286] +16:13:00 [ 38] [ 6] [776451] +16:13:00 [ 39] [ 2] [00] +16:13:00 [ 41] [ 8] [0301LPBX] +16:13:00 [ 49] [ 3] [418] +16:13:00 [ 54] [ 40] [0001418C0000374116220002418C000037411622] +16:13:00 ============================================================================ +16:13:00 Sending to : +16:13:00 ============================================================================ +16:13:00 + + +waiting on router queue for slot.... +16:13:01 ============================================================================ +16:13:01 Slot Id : <269> +16:13:01 Transaction Type : REQUEST +16:13:01 Received From : +16:13:01 ============================================================================ +16:13:01 FNo. Len. Field Value +16:13:01 ============================================================================ +16:13:01 [ 1] [ 4] [0800] +16:13:01 [ 2] [ 5] [02531] +16:13:01 [ 3] [ 6] [579168] +16:13:01 [ 7] [ 10] [0320091301] +16:13:01 [ 11] [ 6] [807353] +16:13:01 [ 15] [ 10] [0320091301] +16:13:01 [ 37] [ 11] [57916807353] +16:13:01 [ 70] [ 3] [001] +16:13:01 ============================================================================ +16:13:01 + + +waiting on router queue for slot.... +16:13:01 ============================================================================ +16:13:01 Slot Id : <269> +16:13:01 Transaction Type : RESPONSE +16:13:01 Received From : +16:13:01 ============================================================================ +16:13:01 FNo. Len. Field Value +16:13:01 ============================================================================ +16:13:01 [ 1] [ 4] [0810] +16:13:01 [ 7] [ 10] [0320091301] +16:13:01 [ 11] [ 6] [807353] +16:13:01 [ 15] [ 4] [0320] +16:13:01 [ 37] [ 12] [57916807353] +16:13:01 [ 39] [ 2] [00] +16:13:01 [ 70] [ 3] [001] +16:13:01 ============================================================================ +16:13:01 Sending to : +16:13:01 ============================================================================ +16:13:01 + + +waiting on router queue for slot.... +16:13:01 ============================================================================ +16:13:01 Slot Id : <270> +16:13:01 Transaction Type : RESPONSE +16:13:01 Received From : +16:13:01 ============================================================================ +16:13:01 FNo. Len. Field Value +16:13:01 ============================================================================ +16:13:01 [ 1] [ 4] [0210] +16:13:01 [ 2] [ 16] [6213545000113120] +16:13:01 [ 3] [ 6] [010000] +16:13:01 [ 4] [ 12] [000100000000] +16:13:01 [ 7] [ 10] [0320091204] +16:13:01 [ 11] [ 6] [270286] +16:13:01 [ 12] [ 6] [161204] +16:13:01 [ 13] [ 4] [0320] +16:13:01 [ 15] [ 4] [0320] +16:13:01 [ 18] [ 4] [6011] +16:13:01 [ 19] [ 3] [418] +16:13:01 [ 32] [ 6] [180893] +16:13:01 [ 35] [ 32] [6213545000113120=491212011312309] +16:13:01 [ 37] [ 12] [507909270286] +16:13:01 [ 38] [ 6] [776451] +16:13:01 [ 39] [ 2] [00] +16:13:01 [ 41] [ 8] [0301LPBX] +16:13:01 [ 49] [ 3] [418] +16:13:01 [ 54] [ 40] [0001418C0000374116220002418C000037411622] +16:13:01 ============================================================================ +16:13:01 Calculate Source COMM Id = 2 +16:13:01 ============================================================================ +16:13:01 + + +waiting on router queue for slot.... +16:13:02 ============================================================================ +16:13:02 Slot Id : <199> +16:13:02 Transaction Type : REQUEST +16:13:02 Received From : +16:13:02 ============================================================================ +16:13:02 FNo. Len. Field Value +16:13:02 ============================================================================ +16:13:02 [ 1] [ 4] [0200] +16:13:02 [ 2] [ 16] [6688990603112804] +16:13:02 [ 3] [ 6] [010000] +16:13:02 [ 4] [ 12] [000100000000] +16:13:02 [ 7] [ 10] [0320161257] +16:13:02 [ 11] [ 6] [795046] +16:13:02 [ 12] [ 6] [161257] +16:13:02 [ 13] [ 4] [0320] +16:13:02 [ 15] [ 4] [0320] +16:13:02 [ 18] [ 4] [6011] +16:13:02 [ 22] [ 3] [900] +16:13:02 [ 25] [ 2] [02] +16:13:02 [ 28] [ 9] [D00002000] +16:13:02 [ 32] [ 6] [621354] +16:13:02 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:13:02 [ 37] [ 12] [507903345190] +16:13:02 [ 41] [ 8] [13001400] +16:13:02 [ 42] [ 15] [NATIVE ] +16:13:02 [ 43] [ 40] [Kham Unit Kham LAO] +16:13:02 [ 49] [ 3] [418] +16:13:02 [ 52] [ 16] [AAC7B121CBAB9552] +16:13:02 ============================================================================ +16:13:02 + + +waiting on router queue for slot.... +16:13:02 Sending to : +16:13:02 ============================================================================ +16:13:02 Sending to : +16:13:02 ============================================================================ +16:13:02 ============================================================================ +16:13:02 Slot Id : <199> +16:13:02 Transaction Type : REQUEST +16:13:02 Received From : +16:13:02 ============================================================================ +16:13:02 FNo. Len. Field Value +16:13:02 ============================================================================ +16:13:02 [ 1] [ 4] [0200] +16:13:02 [ 2] [ 16] [6688990603112804] +16:13:02 [ 3] [ 6] [010000] +16:13:02 [ 4] [ 12] [000100000000] +16:13:02 [ 7] [ 10] [0320161257] +16:13:02 [ 11] [ 6] [795046] +16:13:02 [ 12] [ 6] [161257] +16:13:02 [ 13] [ 4] [0320] +16:13:02 [ 15] [ 4] [0320] +16:13:02 [ 18] [ 4] [6011] +16:13:02 [ 22] [ 3] [900] +16:13:02 [ 25] [ 2] [02] +16:13:02 [ 28] [ 9] [D00002000] +16:13:02 [ 32] [ 6] [621354] +16:13:02 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:13:02 [ 37] [ 12] [507903345190] +16:13:02 [ 41] [ 8] [13001400] +16:13:02 [ 42] [ 15] [NATIVE ] +16:13:02 [ 43] [ 40] [Kham Unit Kham LAO] +16:13:02 [ 49] [ 3] [418] +16:13:02 [ 52] [ 16] [AAC7B121CBAB9552] +16:13:02 ============================================================================ +16:13:02 + + +waiting on router queue for slot.... +16:13:02 Sending to : +16:13:02 ============================================================================ +16:13:02 ============================================================================ +16:13:02 Slot Id : <199> +16:13:02 Transaction Type : REQUEST +16:13:02 Received From : +16:13:02 ============================================================================ +16:13:02 FNo. Len. Field Value +16:13:02 ============================================================================ +16:13:02 [ 1] [ 4] [0200] +16:13:02 [ 2] [ 16] [6688990603112804] +16:13:02 [ 3] [ 6] [010000] +16:13:02 [ 4] [ 12] [000100000000] +16:13:02 [ 7] [ 10] [0320161257] +16:13:02 [ 11] [ 6] [795046] +16:13:02 [ 12] [ 6] [161257] +16:13:02 [ 13] [ 4] [0320] +16:13:02 [ 15] [ 4] [0320] +16:13:02 [ 18] [ 4] [6011] +16:13:02 [ 22] [ 3] [900] +16:13:02 [ 25] [ 2] [02] +16:13:02 [ 28] [ 9] [D00002000] +16:13:02 [ 32] [ 6] [621354] +16:13:02 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:13:02 [ 37] [ 12] [507903345190] +16:13:02 [ 41] [ 8] [13001400] +16:13:02 [ 42] [ 15] [NATIVE ] +16:13:02 [ 43] [ 40] [Kham Unit Kham LAO] +16:13:02 [ 49] [ 3] [418] +16:13:02 [ 52] [ 16] [4EB2EDCE4F714A18] +16:13:02 ============================================================================ +16:13:02 + + +waiting on router queue for slot.... +16:13:02 Sending to : <4> +16:13:02 ============================================================================ +16:13:04 ============================================================================ +16:13:04 Slot Id : <199> +16:13:04 Transaction Type : RESPONSE +16:13:04 Received From : +16:13:04 ============================================================================ +16:13:04 FNo. Len. Field Value +16:13:04 ============================================================================ +16:13:04 [ 1] [ 4] [0210] +16:13:04 [ 2] [ 16] [6688990603112804] +16:13:04 [ 3] [ 6] [010000] +16:13:04 [ 4] [ 12] [000100000000] +16:13:04 [ 11] [ 6] [795046] +16:13:04 [ 12] [ 6] [161257] +16:13:04 [ 15] [ 4] [0320] +16:13:04 [ 18] [ 4] [6011] +16:13:04 [ 32] [ 6] [621354] +16:13:04 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:13:04 [ 37] [ 12] [507903345190] +16:13:04 [ 38] [ 6] [890701] +16:13:04 [ 39] [ 2] [00] +16:13:04 [ 41] [ 8] [13001400] +16:13:04 [ 49] [ 3] [418] +16:13:04 [ 54] [ 20] [0002418C000261912710] +16:13:04 ============================================================================ +16:13:04 Sending to : +16:13:04 ============================================================================ +16:13:04 + + +waiting on router queue for slot.... +16:13:05 ============================================================================ +16:13:05 Slot Id : <199> +16:13:05 Transaction Type : RESPONSE +16:13:05 Received From : +16:13:05 ============================================================================ +16:13:05 FNo. Len. Field Value +16:13:05 ============================================================================ +16:13:05 [ 1] [ 4] [0210] +16:13:05 [ 2] [ 16] [6688990603112804] +16:13:05 [ 3] [ 6] [010000] +16:13:05 [ 4] [ 12] [000100000000] +16:13:05 [ 11] [ 6] [795046] +16:13:05 [ 12] [ 6] [161257] +16:13:05 [ 15] [ 4] [0320] +16:13:05 [ 18] [ 4] [6011] +16:13:05 [ 32] [ 6] [621354] +16:13:05 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:13:05 [ 37] [ 12] [507903345190] +16:13:05 [ 38] [ 6] [890701] +16:13:05 [ 39] [ 2] [00] +16:13:05 [ 41] [ 8] [13001400] +16:13:05 [ 49] [ 3] [418] +16:13:05 [ 54] [ 20] [0002418C000261912710] +16:13:05 ============================================================================ +16:13:05 Calculate Source COMM Id = 0 +16:13:05 ============================================================================ +16:13:05 + + +waiting on router queue for slot.... +16:13:12 ============================================================================ +16:13:12 Slot Id : <275> +16:13:12 Transaction Type : REQUEST +16:13:12 Received From : +16:13:12 ============================================================================ +16:13:12 FNo. Len. Field Value +16:13:12 ============================================================================ +16:13:12 [ 1] [ 4] [0200] +16:13:12 [ 2] [ 16] [6688990101830501] +16:13:12 [ 3] [ 6] [011000] +16:13:12 [ 4] [ 12] [000100000000] +16:13:12 [ 7] [ 10] [0320161307] +16:13:12 [ 11] [ 6] [795096] +16:13:12 [ 12] [ 6] [161307] +16:13:12 [ 13] [ 4] [0320] +16:13:12 [ 15] [ 4] [0320] +16:13:12 [ 18] [ 4] [6011] +16:13:12 [ 22] [ 3] [900] +16:13:12 [ 25] [ 2] [02] +16:13:12 [ 28] [ 9] [D00002000] +16:13:12 [ 32] [ 6] [621354] +16:13:12 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:13:12 [ 37] [ 12] [507904635827] +16:13:12 [ 41] [ 8] [17000800] +16:13:12 [ 42] [ 15] [NATIVE ] +16:13:12 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:13:12 [ 49] [ 3] [418] +16:13:12 [ 52] [ 16] [54904784A167D8BD] +16:13:12 ============================================================================ +16:13:12 + + +waiting on router queue for slot.... +16:13:12 Sending to : +16:13:12 ============================================================================ +16:13:12 Sending to : +16:13:12 ============================================================================ +16:13:12 ============================================================================ +16:13:12 Slot Id : <275> +16:13:12 Transaction Type : REQUEST +16:13:12 Received From : +16:13:12 ============================================================================ +16:13:12 FNo. Len. Field Value +16:13:12 ============================================================================ +16:13:12 [ 1] [ 4] [0200] +16:13:12 [ 2] [ 16] [6688990101830501] +16:13:12 [ 3] [ 6] [011000] +16:13:12 [ 4] [ 12] [000100000000] +16:13:12 [ 7] [ 10] [0320161307] +16:13:12 [ 11] [ 6] [795096] +16:13:12 [ 12] [ 6] [161307] +16:13:12 [ 13] [ 4] [0320] +16:13:12 [ 15] [ 4] [0320] +16:13:12 [ 18] [ 4] [6011] +16:13:12 [ 22] [ 3] [900] +16:13:12 [ 25] [ 2] [02] +16:13:12 [ 28] [ 9] [D00002000] +16:13:12 [ 32] [ 6] [621354] +16:13:12 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:13:12 [ 37] [ 12] [507904635827] +16:13:12 [ 41] [ 8] [17000800] +16:13:12 [ 42] [ 15] [NATIVE ] +16:13:12 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:13:12 [ 49] [ 3] [418] +16:13:12 [ 52] [ 16] [54904784A167D8BD] +16:13:12 ============================================================================ +16:13:12 + + +waiting on router queue for slot.... +16:13:12 Sending to : +16:13:12 ============================================================================ +16:13:12 ============================================================================ +16:13:12 Slot Id : <275> +16:13:12 Transaction Type : REQUEST +16:13:12 Received From : +16:13:12 ============================================================================ +16:13:12 FNo. Len. Field Value +16:13:12 ============================================================================ +16:13:12 [ 1] [ 4] [0200] +16:13:12 [ 2] [ 16] [6688990101830501] +16:13:12 [ 3] [ 6] [011000] +16:13:12 [ 4] [ 12] [000100000000] +16:13:12 [ 7] [ 10] [0320161307] +16:13:12 [ 11] [ 6] [795096] +16:13:12 [ 12] [ 6] [161307] +16:13:12 [ 13] [ 4] [0320] +16:13:12 [ 15] [ 4] [0320] +16:13:12 [ 18] [ 4] [6011] +16:13:12 [ 22] [ 3] [900] +16:13:12 [ 25] [ 2] [02] +16:13:12 [ 28] [ 9] [D00002000] +16:13:12 [ 32] [ 6] [621354] +16:13:12 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:13:12 [ 37] [ 12] [507904635827] +16:13:12 [ 41] [ 8] [17000800] +16:13:12 [ 42] [ 15] [NATIVE ] +16:13:12 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:13:12 [ 49] [ 3] [418] +16:13:12 [ 52] [ 16] [7327C78119A62D0C] +16:13:12 ============================================================================ +16:13:12 + + +waiting on router queue for slot.... +16:13:12 Sending to : <4> +16:13:12 ============================================================================ +16:13:13 ============================================================================ +16:13:13 Slot Id : <240> +16:13:13 Transaction Type : REQUEST +16:13:13 Received From : +16:13:13 ============================================================================ +16:13:13 FNo. Len. Field Value +16:13:13 ============================================================================ +16:13:13 [ 1] [ 4] [0800] +16:13:13 [ 7] [ 10] [0320091220] +16:13:13 [ 11] [ 6] [157192] +16:13:13 [ 70] [ 3] [301] +16:13:13 ============================================================================ +16:13:13 + + +waiting on router queue for slot.... +16:13:13 Sending to : +16:13:13 ============================================================================ +16:13:13 ============================================================================ +16:13:13 Slot Id : <240> +16:13:13 Transaction Type : RESPONSE +16:13:13 Received From : +16:13:13 ============================================================================ +16:13:13 FNo. Len. Field Value +16:13:13 ============================================================================ +16:13:13 [ 1] [ 4] [0810] +16:13:13 [ 7] [ 10] [0320091220] +16:13:13 [ 11] [ 6] [157192] +16:13:13 [ 39] [ 2] [00] +16:13:13 [ 70] [ 3] [301] +16:13:13 ============================================================================ +16:13:13 Calculate Source COMM Id = 2 +16:13:13 ============================================================================ +16:13:13 + + +waiting on router queue for slot.... +16:13:13 ============================================================================ +16:13:13 Slot Id : <275> +16:13:13 Transaction Type : RESPONSE +16:13:13 Received From : +16:13:13 ============================================================================ +16:13:13 FNo. Len. Field Value +16:13:13 ============================================================================ +16:13:13 [ 1] [ 4] [0210] +16:13:13 [ 2] [ 16] [6688990101830501] +16:13:13 [ 3] [ 6] [011000] +16:13:13 [ 4] [ 12] [000100000000] +16:13:13 [ 11] [ 6] [795096] +16:13:13 [ 12] [ 6] [161307] +16:13:13 [ 15] [ 4] [0320] +16:13:13 [ 18] [ 4] [6011] +16:13:13 [ 32] [ 6] [621354] +16:13:13 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:13:13 [ 37] [ 12] [507904635827] +16:13:13 [ 38] [ 6] [506844] +16:13:13 [ 39] [ 2] [00] +16:13:13 [ 41] [ 8] [17000800] +16:13:13 [ 49] [ 3] [418] +16:13:13 [ 54] [ 20] [1002418C000395227482] +16:13:13 ============================================================================ +16:13:13 Sending to : +16:13:13 ============================================================================ +16:13:13 + + +waiting on router queue for slot.... +16:13:14 ============================================================================ +16:13:14 Slot Id : <275> +16:13:14 Transaction Type : RESPONSE +16:13:14 Received From : +16:13:14 ============================================================================ +16:13:14 FNo. Len. Field Value +16:13:14 ============================================================================ +16:13:14 [ 1] [ 4] [0210] +16:13:14 [ 2] [ 16] [6688990101830501] +16:13:14 [ 3] [ 6] [011000] +16:13:14 [ 4] [ 12] [000100000000] +16:13:14 [ 11] [ 6] [795096] +16:13:14 [ 12] [ 6] [161307] +16:13:14 [ 15] [ 4] [0320] +16:13:14 [ 18] [ 4] [6011] +16:13:14 [ 32] [ 6] [621354] +16:13:14 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:13:14 [ 37] [ 12] [507904635827] +16:13:14 [ 38] [ 6] [506844] +16:13:14 [ 39] [ 2] [00] +16:13:14 [ 41] [ 8] [17000800] +16:13:14 [ 49] [ 3] [418] +16:13:14 [ 54] [ 20] [1002418C000395227482] +16:13:14 ============================================================================ +16:13:14 Calculate Source COMM Id = 0 +16:13:14 ============================================================================ +16:13:14 + + +waiting on router queue for slot.... +16:13:16 ============================================================================ +16:13:16 Slot Id : <197> +16:13:16 Transaction Type : REQUEST +16:13:16 Received From : +16:13:16 ============================================================================ +16:13:16 FNo. Len. Field Value +16:13:16 ============================================================================ +16:13:16 [ 1] [ 4] [0200] +16:13:16 [ 2] [ 16] [6213544002162383] +16:13:16 [ 3] [ 6] [300000] +16:13:16 [ 4] [ 12] [000000000000] +16:13:16 [ 7] [ 10] [0320161106] +16:13:16 [ 11] [ 6] [951265] +16:13:16 [ 12] [ 6] [161106] +16:13:16 [ 13] [ 4] [0320] +16:13:16 [ 15] [ 4] [0320] +16:13:16 [ 18] [ 4] [6011] +16:13:16 [ 19] [ 3] [418] +16:13:16 [ 22] [ 3] [021] +16:13:16 [ 25] [ 2] [01] +16:13:16 [ 28] [ 9] [D00000000] +16:13:16 [ 32] [ 6] [668899] +16:13:16 [ 35] [ 32] [6213544002162383=491212016238594] +16:13:16 [ 37] [ 12] [507901443615] +16:13:16 [ 41] [ 8] [03414001] +16:13:16 [ 42] [ 15] [APT ] +16:13:16 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +16:13:16 [ 49] [ 3] [418] +16:13:16 [ 52] [ 16] [376E18114B7F1C42] +16:13:16 ============================================================================ +16:13:16 + + +waiting on router queue for slot.... +16:13:16 Sending to : +16:13:16 ============================================================================ +16:13:16 Sending to : +16:13:16 ============================================================================ +16:13:16 ============================================================================ +16:13:16 Slot Id : <197> +16:13:16 Transaction Type : REQUEST +16:13:16 Received From : +16:13:16 ============================================================================ +16:13:16 FNo. Len. Field Value +16:13:16 ============================================================================ +16:13:16 [ 1] [ 4] [0200] +16:13:16 [ 2] [ 16] [6213544002162383] +16:13:16 [ 3] [ 6] [300000] +16:13:16 [ 4] [ 12] [000000000000] +16:13:17 [ 7] [ 10] [0320161106] +16:13:17 [ 11] [ 6] [951265] +16:13:17 [ 12] [ 6] [161106] +16:13:17 [ 13] [ 4] [0320] +16:13:17 [ 15] [ 4] [0320] +16:13:17 [ 18] [ 4] [6011] +16:13:17 [ 19] [ 3] [418] +16:13:17 [ 22] [ 3] [021] +16:13:17 [ 25] [ 2] [01] +16:13:17 [ 28] [ 9] [D00000000] +16:13:17 [ 32] [ 6] [668899] +16:13:17 [ 35] [ 32] [6213544002162383=491212016238594] +16:13:17 [ 37] [ 12] [507901443615] +16:13:17 [ 41] [ 8] [03414001] +16:13:17 [ 42] [ 15] [APT ] +16:13:17 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +16:13:17 [ 49] [ 3] [418] +16:13:17 [ 52] [ 16] [376E18114B7F1C42] +16:13:17 ============================================================================ +16:13:17 + + +waiting on router queue for slot.... +16:13:17 Sending to : +16:13:17 ============================================================================ +16:13:17 ============================================================================ +16:13:17 Slot Id : <197> +16:13:17 Transaction Type : REQUEST +16:13:17 Received From : +16:13:17 ============================================================================ +16:13:17 FNo. Len. Field Value +16:13:17 ============================================================================ +16:13:17 [ 1] [ 4] [0200] +16:13:17 [ 2] [ 16] [6213544002162383] +16:13:17 [ 3] [ 6] [300000] +16:13:17 [ 4] [ 12] [000000000000] +16:13:17 [ 7] [ 10] [0320161106] +16:13:17 [ 11] [ 6] [951265] +16:13:17 [ 12] [ 6] [161106] +16:13:17 [ 13] [ 4] [0320] +16:13:17 [ 15] [ 4] [0320] +16:13:17 [ 18] [ 4] [6011] +16:13:17 [ 19] [ 3] [418] +16:13:17 [ 22] [ 3] [021] +16:13:17 [ 25] [ 2] [01] +16:13:17 [ 28] [ 9] [D00000000] +16:13:17 [ 32] [ 6] [668899] +16:13:17 [ 35] [ 32] [6213544002162383=491212016238594] +16:13:17 [ 37] [ 12] [507901443615] +16:13:17 [ 41] [ 8] [03414001] +16:13:17 [ 42] [ 15] [APT ] +16:13:17 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +16:13:17 [ 49] [ 3] [418] +16:13:17 [ 52] [ 16] [B0BB16DCA3D595FF] +16:13:17 ============================================================================ +16:13:17 + + +waiting on router queue for slot.... +16:13:17 Sending to : <0> +16:13:17 ============================================================================ +16:13:17 ============================================================================ +16:13:17 Slot Id : <256> +16:13:17 Transaction Type : REQUEST +16:13:17 Received From : +16:13:17 ============================================================================ +16:13:17 FNo. Len. Field Value +16:13:17 ============================================================================ +16:13:17 [ 1] [ 4] [0200] +16:13:17 [ 2] [ 16] [6213545000973457] +16:13:17 [ 3] [ 6] [010000] +16:13:17 [ 4] [ 12] [000200000000] +16:13:17 [ 7] [ 10] [0320091222] +16:13:17 [ 11] [ 6] [270290] +16:13:17 [ 12] [ 6] [161222] +16:13:17 [ 13] [ 4] [0320] +16:13:17 [ 14] [ 4] [4912] +16:13:17 [ 15] [ 4] [0320] +16:13:17 [ 18] [ 4] [6011] +16:13:17 [ 19] [ 3] [418] +16:13:17 [ 22] [ 3] [021] +16:13:17 [ 25] [ 2] [01] +16:13:17 [ 28] [ 9] [D00002000] +16:13:17 [ 32] [ 6] [180893] +16:13:17 [ 35] [ 32] [6213545000973457=491212017345178] +16:13:17 [ 37] [ 12] [507909270290] +16:13:17 [ 41] [ 8] [0221XKKM] +16:13:17 [ 42] [ 15] [999999 ] +16:13:17 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:13:17 [ 49] [ 3] [418] +16:13:17 [ 52] [ 16] [889AAB2EA006FEED] +16:13:17 ============================================================================ +16:13:17 + + +waiting on router queue for slot.... +16:13:17 Sending to : +16:13:17 ============================================================================ +16:13:17 Sending to : +16:13:17 ============================================================================ +16:13:17 ============================================================================ +16:13:17 Slot Id : <256> +16:13:17 Transaction Type : REQUEST +16:13:17 Received From : +16:13:17 ============================================================================ +16:13:17 FNo. Len. Field Value +16:13:17 ============================================================================ +16:13:17 [ 1] [ 4] [0200] +16:13:17 [ 2] [ 16] [6213545000973457] +16:13:17 [ 3] [ 6] [010000] +16:13:17 [ 4] [ 12] [000200000000] +16:13:17 [ 7] [ 10] [0320091222] +16:13:17 [ 11] [ 6] [270290] +16:13:17 [ 12] [ 6] [161222] +16:13:17 [ 13] [ 4] [0320] +16:13:17 [ 14] [ 4] [4912] +16:13:17 [ 15] [ 4] [0320] +16:13:17 [ 18] [ 4] [6011] +16:13:17 [ 19] [ 3] [418] +16:13:17 [ 22] [ 3] [021] +16:13:17 [ 25] [ 2] [01] +16:13:17 [ 28] [ 9] [D00002000] +16:13:17 [ 32] [ 6] [180893] +16:13:17 [ 35] [ 32] [6213545000973457=491212017345178] +16:13:17 [ 37] [ 12] [507909270290] +16:13:17 [ 41] [ 8] [0221XKKM] +16:13:17 [ 42] [ 15] [999999 ] +16:13:17 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:13:17 [ 49] [ 3] [418] +16:13:17 [ 52] [ 16] [889AAB2EA006FEED] +16:13:17 ============================================================================ +16:13:17 + + +waiting on router queue for slot.... +16:13:17 Sending to : +16:13:17 ============================================================================ +16:13:17 ============================================================================ +16:13:17 Slot Id : <256> +16:13:17 Transaction Type : REQUEST +16:13:17 Received From : +16:13:17 ============================================================================ +16:13:17 FNo. Len. Field Value +16:13:17 ============================================================================ +16:13:17 [ 1] [ 4] [0200] +16:13:17 [ 2] [ 16] [6213545000973457] +16:13:17 [ 3] [ 6] [010000] +16:13:17 [ 4] [ 12] [000200000000] +16:13:17 [ 7] [ 10] [0320091222] +16:13:17 [ 11] [ 6] [270290] +16:13:17 [ 12] [ 6] [161222] +16:13:17 [ 13] [ 4] [0320] +16:13:17 [ 14] [ 4] [4912] +16:13:17 [ 15] [ 4] [0320] +16:13:17 [ 18] [ 4] [6011] +16:13:17 [ 19] [ 3] [418] +16:13:17 [ 22] [ 3] [021] +16:13:17 [ 25] [ 2] [01] +16:13:17 [ 28] [ 9] [D00002000] +16:13:17 [ 32] [ 6] [180893] +16:13:17 [ 35] [ 32] [6213545000973457=491212017345178] +16:13:17 [ 37] [ 12] [507909270290] +16:13:17 [ 41] [ 8] [0221XKKM] +16:13:17 [ 42] [ 15] [999999 ] +16:13:17 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:13:17 [ 49] [ 3] [418] +16:13:17 [ 52] [ 16] [E0D38ED1DE57398F] +16:13:17 ============================================================================ +16:13:17 + + +waiting on router queue for slot.... +16:13:17 Sending to : <0> +16:13:17 ============================================================================ +16:13:18 ============================================================================ +16:13:18 Slot Id : <197> +16:13:18 Transaction Type : RESPONSE +16:13:18 Received From : +16:13:18 ============================================================================ +16:13:18 FNo. Len. Field Value +16:13:18 ============================================================================ +16:13:18 [ 1] [ 4] [0210] +16:13:18 [ 2] [ 16] [6213544002162383] +16:13:18 [ 3] [ 6] [300000] +16:13:18 [ 4] [ 12] [000000000000] +16:13:18 [ 7] [ 10] [0320161106] +16:13:18 [ 11] [ 6] [951265] +16:13:18 [ 12] [ 6] [161106] +16:13:18 [ 13] [ 4] [0320] +16:13:18 [ 15] [ 4] [0320] +16:13:18 [ 18] [ 4] [6011] +16:13:18 [ 19] [ 3] [418] +16:13:18 [ 32] [ 6] [668899] +16:13:18 [ 35] [ 32] [6213544002162383=491212016238594] +16:13:18 [ 37] [ 12] [507901443615] +16:13:18 [ 38] [ 6] [164804] +16:13:18 [ 39] [ 2] [00] +16:13:18 [ 41] [ 8] [03414001] +16:13:18 [ 49] [ 3] [418] +16:13:18 [ 54] [ 40] [0001418C0000138467000002418C000013846700] +16:13:18 ============================================================================ +16:13:18 Sending to : +16:13:18 ============================================================================ +16:13:18 + + +waiting on router queue for slot.... +16:13:18 ============================================================================ +16:13:18 Slot Id : <256> +16:13:18 Transaction Type : RESPONSE +16:13:18 Received From : +16:13:18 ============================================================================ +16:13:18 FNo. Len. Field Value +16:13:18 ============================================================================ +16:13:18 [ 1] [ 4] [0210] +16:13:18 [ 2] [ 16] [6213545000973457] +16:13:18 [ 3] [ 6] [010000] +16:13:18 [ 4] [ 12] [000200000000] +16:13:18 [ 7] [ 10] [0320091222] +16:13:18 [ 11] [ 6] [270290] +16:13:18 [ 12] [ 6] [161222] +16:13:18 [ 13] [ 4] [0320] +16:13:18 [ 15] [ 4] [0320] +16:13:18 [ 18] [ 4] [6011] +16:13:18 [ 19] [ 3] [418] +16:13:18 [ 22] [ 3] [021] +16:13:18 [ 32] [ 6] [180893] +16:13:18 [ 35] [ 32] [6213545000973457=491212017345178] +16:13:18 [ 37] [ 12] [507909270290] +16:13:18 [ 39] [ 2] [61] +16:13:18 [ 41] [ 8] [0221XKKM] +16:13:18 [ 49] [ 3] [418] +16:13:18 ============================================================================ +16:13:18 Sending to : +16:13:18 ============================================================================ +16:13:18 + + +waiting on router queue for slot.... +16:13:19 ============================================================================ +16:13:19 Slot Id : <197> +16:13:19 Transaction Type : RESPONSE +16:13:19 Received From : +16:13:19 ============================================================================ +16:13:19 FNo. Len. Field Value +16:13:19 ============================================================================ +16:13:19 [ 1] [ 4] [0210] +16:13:19 [ 2] [ 16] [6213544002162383] +16:13:19 [ 3] [ 6] [300000] +16:13:19 [ 4] [ 12] [000000000000] +16:13:19 [ 7] [ 10] [0320161106] +16:13:19 [ 11] [ 6] [951265] +16:13:19 [ 12] [ 6] [161106] +16:13:19 [ 13] [ 4] [0320] +16:13:19 [ 15] [ 4] [0320] +16:13:19 [ 18] [ 4] [6011] +16:13:19 [ 19] [ 3] [418] +16:13:19 [ 32] [ 6] [668899] +16:13:19 [ 35] [ 32] [6213544002162383=491212016238594] +16:13:19 [ 37] [ 12] [507901443615] +16:13:19 [ 38] [ 6] [164804] +16:13:19 [ 39] [ 2] [00] +16:13:19 [ 41] [ 8] [03414001] +16:13:19 [ 49] [ 3] [418] +16:13:19 [ 54] [ 40] [0001418C0000138467000002418C000013846700] +16:13:19 ============================================================================ +16:13:19 Calculate Source COMM Id = 4 +16:13:19 ============================================================================ +16:13:19 + + +waiting on router queue for slot.... +16:13:20 ============================================================================ +16:13:20 Slot Id : <256> +16:13:20 Transaction Type : RESPONSE +16:13:20 Received From : +16:13:20 ============================================================================ +16:13:20 FNo. Len. Field Value +16:13:20 ============================================================================ +16:13:20 [ 1] [ 4] [0210] +16:13:20 [ 2] [ 16] [6213545000973457] +16:13:20 [ 3] [ 6] [010000] +16:13:20 [ 4] [ 12] [000200000000] +16:13:20 [ 7] [ 10] [0320091222] +16:13:20 [ 11] [ 6] [270290] +16:13:20 [ 12] [ 6] [161222] +16:13:20 [ 13] [ 4] [0320] +16:13:20 [ 15] [ 4] [0320] +16:13:20 [ 18] [ 4] [6011] +16:13:20 [ 19] [ 3] [418] +16:13:20 [ 22] [ 3] [021] +16:13:20 [ 32] [ 6] [180893] +16:13:20 [ 35] [ 32] [6213545000973457=491212017345178] +16:13:20 [ 37] [ 12] [507909270290] +16:13:20 [ 39] [ 2] [61] +16:13:20 [ 41] [ 8] [0221XKKM] +16:13:20 [ 49] [ 3] [418] +16:13:20 ============================================================================ +16:13:20 Calculate Source COMM Id = 2 +16:13:20 ============================================================================ +16:13:20 + + +waiting on router queue for slot.... +16:13:35 ============================================================================ +16:13:35 Slot Id : <228> +16:13:35 Transaction Type : REQUEST +16:13:35 Received From : +16:13:35 ============================================================================ +16:13:35 FNo. Len. Field Value +16:13:35 ============================================================================ +16:13:35 [ 1] [ 4] [0200] +16:13:35 [ 2] [ 16] [6688990103283402] +16:13:35 [ 3] [ 6] [010000] +16:13:35 [ 4] [ 12] [000100000000] +16:13:35 [ 7] [ 10] [0320161330] +16:13:35 [ 11] [ 6] [795215] +16:13:35 [ 12] [ 6] [161330] +16:13:35 [ 13] [ 4] [0320] +16:13:35 [ 15] [ 4] [0320] +16:13:35 [ 18] [ 4] [6011] +16:13:35 [ 22] [ 3] [900] +16:13:35 [ 25] [ 2] [02] +16:13:35 [ 28] [ 9] [D00002000] +16:13:35 [ 32] [ 6] [621354] +16:13:35 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:13:35 [ 37] [ 12] [507903499575] +16:13:35 [ 41] [ 8] [06002200] +16:13:35 [ 42] [ 15] [NATIVE ] +16:13:35 [ 43] [ 40] [Beng Market Beng LAO] +16:13:35 [ 49] [ 3] [418] +16:13:35 [ 52] [ 16] [6577EE23574221CD] +16:13:35 ============================================================================ +16:13:35 + + +waiting on router queue for slot.... +16:13:35 Sending to : +16:13:35 ============================================================================ +16:13:35 Sending to : +16:13:35 ============================================================================ +16:13:35 ============================================================================ +16:13:35 Slot Id : <218> +16:13:35 Transaction Type : REQUEST +16:13:35 Received From : +16:13:35 ============================================================================ +16:13:35 FNo. Len. Field Value +16:13:35 ============================================================================ +16:13:35 [ 1] [ 4] [0200] +16:13:35 [ 2] [ 16] [6213544001267431] +16:13:35 [ 3] [ 6] [011000] +16:13:35 [ 4] [ 12] [000015000000] +16:13:35 [ 7] [ 10] [0320091241] +16:13:35 [ 11] [ 6] [270292] +16:13:35 [ 12] [ 6] [161241] +16:13:35 [ 13] [ 4] [0320] +16:13:35 [ 14] [ 4] [4912] +16:13:35 [ 15] [ 4] [0320] +16:13:35 [ 18] [ 4] [6011] +16:13:35 [ 19] [ 3] [418] +16:13:35 [ 22] [ 3] [021] +16:13:35 [ 25] [ 2] [01] +16:13:35 [ 28] [ 9] [D00002000] +16:13:35 [ 32] [ 6] [180893] +16:13:35 [ 35] [ 32] [6213544001267431=491212016743556] +16:13:35 [ 37] [ 12] [507909270292] +16:13:35 [ 41] [ 8] [0528LPBP] +16:13:35 [ 42] [ 15] [999999 ] +16:13:35 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:13:35 [ 49] [ 3] [418] +16:13:35 [ 52] [ 16] [AC93C9FFC29409B3] +16:13:35 ============================================================================ +16:13:35 + + +waiting on router queue for slot.... +16:13:35 Sending to : +16:13:35 ============================================================================ +16:13:35 Sending to : +16:13:35 ============================================================================ +16:13:35 ============================================================================ +16:13:35 Slot Id : <228> +16:13:35 Transaction Type : REQUEST +16:13:35 Received From : +16:13:35 ============================================================================ +16:13:35 FNo. Len. Field Value +16:13:35 ============================================================================ +16:13:35 [ 1] [ 4] [0200] +16:13:35 [ 2] [ 16] [6688990103283402] +16:13:35 [ 3] [ 6] [010000] +16:13:35 [ 4] [ 12] [000100000000] +16:13:35 [ 7] [ 10] [0320161330] +16:13:35 [ 11] [ 6] [795215] +16:13:35 [ 12] [ 6] [161330] +16:13:35 [ 13] [ 4] [0320] +16:13:35 [ 15] [ 4] [0320] +16:13:35 [ 18] [ 4] [6011] +16:13:35 [ 22] [ 3] [900] +16:13:35 [ 25] [ 2] [02] +16:13:35 [ 28] [ 9] [D00002000] +16:13:35 [ 32] [ 6] [621354] +16:13:35 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:13:35 [ 37] [ 12] [507903499575] +16:13:35 [ 41] [ 8] [06002200] +16:13:35 [ 42] [ 15] [NATIVE ] +16:13:35 [ 43] [ 40] [Beng Market Beng LAO] +16:13:35 [ 49] [ 3] [418] +16:13:35 [ 52] [ 16] [6577EE23574221CD] +16:13:35 ============================================================================ +16:13:35 + + +waiting on router queue for slot.... +16:13:35 Sending to : +16:13:35 ============================================================================ +16:13:35 ============================================================================ +16:13:35 Slot Id : <228> +16:13:35 Transaction Type : REQUEST +16:13:35 Received From : +16:13:35 ============================================================================ +16:13:35 FNo. Len. Field Value +16:13:35 ============================================================================ +16:13:35 [ 1] [ 4] [0200] +16:13:35 [ 2] [ 16] [6688990103283402] +16:13:35 [ 3] [ 6] [010000] +16:13:35 [ 4] [ 12] [000100000000] +16:13:35 [ 7] [ 10] [0320161330] +16:13:35 [ 11] [ 6] [795215] +16:13:35 [ 12] [ 6] [161330] +16:13:35 [ 13] [ 4] [0320] +16:13:35 [ 15] [ 4] [0320] +16:13:35 [ 18] [ 4] [6011] +16:13:35 [ 22] [ 3] [900] +16:13:35 [ 25] [ 2] [02] +16:13:35 [ 28] [ 9] [D00002000] +16:13:35 [ 32] [ 6] [621354] +16:13:35 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:13:35 [ 37] [ 12] [507903499575] +16:13:35 [ 41] [ 8] [06002200] +16:13:35 [ 42] [ 15] [NATIVE ] +16:13:35 [ 43] [ 40] [Beng Market Beng LAO] +16:13:35 [ 49] [ 3] [418] +16:13:35 [ 52] [ 16] [1CC8806DB4B6639B] +16:13:35 ============================================================================ +16:13:35 + + +waiting on router queue for slot.... +16:13:35 Sending to : <4> +16:13:35 ============================================================================ +16:13:35 ============================================================================ +16:13:35 Slot Id : <218> +16:13:35 Transaction Type : REQUEST +16:13:35 Received From : +16:13:35 ============================================================================ +16:13:35 FNo. Len. Field Value +16:13:35 ============================================================================ +16:13:35 [ 1] [ 4] [0200] +16:13:35 [ 2] [ 16] [6213544001267431] +16:13:35 [ 3] [ 6] [011000] +16:13:35 [ 4] [ 12] [000015000000] +16:13:35 [ 7] [ 10] [0320091241] +16:13:35 [ 11] [ 6] [270292] +16:13:35 [ 12] [ 6] [161241] +16:13:35 [ 13] [ 4] [0320] +16:13:35 [ 14] [ 4] [4912] +16:13:35 [ 15] [ 4] [0320] +16:13:35 [ 18] [ 4] [6011] +16:13:35 [ 19] [ 3] [418] +16:13:35 [ 22] [ 3] [021] +16:13:35 [ 25] [ 2] [01] +16:13:35 [ 28] [ 9] [D00002000] +16:13:35 [ 32] [ 6] [180893] +16:13:35 [ 35] [ 32] [6213544001267431=491212016743556] +16:13:35 [ 37] [ 12] [507909270292] +16:13:35 [ 41] [ 8] [0528LPBP] +16:13:35 [ 42] [ 15] [999999 ] +16:13:35 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:13:35 [ 49] [ 3] [418] +16:13:35 [ 52] [ 16] [AC93C9FFC29409B3] +16:13:35 ============================================================================ +16:13:35 + + +waiting on router queue for slot.... +16:13:35 Sending to : +16:13:35 ============================================================================ +16:13:35 ============================================================================ +16:13:35 Slot Id : <218> +16:13:35 Transaction Type : REQUEST +16:13:35 Received From : +16:13:35 ============================================================================ +16:13:35 FNo. Len. Field Value +16:13:35 ============================================================================ +16:13:35 [ 1] [ 4] [0200] +16:13:35 [ 2] [ 16] [6213544001267431] +16:13:35 [ 3] [ 6] [011000] +16:13:35 [ 4] [ 12] [000015000000] +16:13:35 [ 7] [ 10] [0320091241] +16:13:35 [ 11] [ 6] [270292] +16:13:35 [ 12] [ 6] [161241] +16:13:35 [ 13] [ 4] [0320] +16:13:35 [ 14] [ 4] [4912] +16:13:35 [ 15] [ 4] [0320] +16:13:35 [ 18] [ 4] [6011] +16:13:35 [ 19] [ 3] [418] +16:13:35 [ 22] [ 3] [021] +16:13:35 [ 25] [ 2] [01] +16:13:35 [ 28] [ 9] [D00002000] +16:13:35 [ 32] [ 6] [180893] +16:13:35 [ 35] [ 32] [6213544001267431=491212016743556] +16:13:35 [ 37] [ 12] [507909270292] +16:13:35 [ 41] [ 8] [0528LPBP] +16:13:35 [ 42] [ 15] [999999 ] +16:13:35 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:13:35 [ 49] [ 3] [418] +16:13:35 [ 52] [ 16] [8539F54B54ADF2DE] +16:13:35 ============================================================================ +16:13:35 + + +waiting on router queue for slot.... +16:13:35 Sending to : <0> +16:13:35 ============================================================================ +16:13:36 ============================================================================ +16:13:36 Slot Id : <218> +16:13:36 Transaction Type : RESPONSE +16:13:36 Received From : +16:13:36 ============================================================================ +16:13:36 FNo. Len. Field Value +16:13:36 ============================================================================ +16:13:36 [ 1] [ 4] [0210] +16:13:36 [ 2] [ 16] [6213544001267431] +16:13:36 [ 3] [ 6] [011000] +16:13:36 [ 4] [ 12] [000015000000] +16:13:36 [ 7] [ 10] [0320091241] +16:13:36 [ 11] [ 6] [270292] +16:13:36 [ 12] [ 6] [161241] +16:13:36 [ 13] [ 4] [0320] +16:13:36 [ 15] [ 4] [0320] +16:13:36 [ 18] [ 4] [6011] +16:13:36 [ 19] [ 3] [418] +16:13:36 [ 32] [ 6] [180893] +16:13:36 [ 35] [ 32] [6213544001267431=491212016743556] +16:13:36 [ 37] [ 12] [507909270292] +16:13:36 [ 38] [ 6] [270292] +16:13:36 [ 39] [ 2] [51] +16:13:36 [ 41] [ 8] [0528LPBP] +16:13:36 [ 49] [ 3] [418] +16:13:36 [ 54] [ 40] [1001418C0000108227411002418C000010822741] +16:13:36 ============================================================================ +16:13:36 Sending to : +16:13:36 ============================================================================ +16:13:36 + + +waiting on router queue for slot.... +16:13:36 ============================================================================ +16:13:36 Slot Id : <228> +16:13:36 Transaction Type : RESPONSE +16:13:36 Received From : +16:13:36 ============================================================================ +16:13:36 FNo. Len. Field Value +16:13:36 ============================================================================ +16:13:36 [ 1] [ 4] [0210] +16:13:36 [ 2] [ 16] [6688990103283402] +16:13:36 [ 3] [ 6] [010000] +16:13:36 [ 4] [ 12] [000100000000] +16:13:36 [ 11] [ 6] [795215] +16:13:36 [ 12] [ 6] [161330] +16:13:36 [ 15] [ 4] [0320] +16:13:36 [ 18] [ 4] [6011] +16:13:36 [ 32] [ 6] [621354] +16:13:36 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:13:36 [ 37] [ 12] [507903499575] +16:13:36 [ 38] [ 6] [404837] +16:13:36 [ 39] [ 2] [00] +16:13:36 [ 41] [ 8] [06002200] +16:13:36 [ 49] [ 3] [418] +16:13:36 [ 54] [ 20] [0002418C000006627012] +16:13:36 ============================================================================ +16:13:36 Sending to : +16:13:36 ============================================================================ +16:13:36 + + +waiting on router queue for slot.... +16:13:37 ============================================================================ +16:13:37 Slot Id : <218> +16:13:37 Transaction Type : RESPONSE +16:13:37 Received From : +16:13:37 ============================================================================ +16:13:37 FNo. Len. Field Value +16:13:37 ============================================================================ +16:13:37 [ 1] [ 4] [0210] +16:13:37 [ 2] [ 16] [6213544001267431] +16:13:37 [ 3] [ 6] [011000] +16:13:37 [ 4] [ 12] [000015000000] +16:13:37 [ 7] [ 10] [0320091241] +16:13:37 [ 11] [ 6] [270292] +16:13:37 [ 12] [ 6] [161241] +16:13:37 [ 13] [ 4] [0320] +16:13:37 [ 15] [ 4] [0320] +16:13:37 [ 18] [ 4] [6011] +16:13:37 [ 19] [ 3] [418] +16:13:37 [ 32] [ 6] [180893] +16:13:37 [ 35] [ 32] [6213544001267431=491212016743556] +16:13:37 [ 37] [ 12] [507909270292] +16:13:37 [ 38] [ 6] [270292] +16:13:37 [ 39] [ 2] [51] +16:13:37 [ 41] [ 8] [0528LPBP] +16:13:37 [ 49] [ 3] [418] +16:13:37 [ 54] [ 40] [1001418C0000108227411002418C000010822741] +16:13:37 ============================================================================ +16:13:37 Calculate Source COMM Id = 2 +16:13:37 ============================================================================ +16:13:37 + + +waiting on router queue for slot.... +16:13:38 ============================================================================ +16:13:38 Slot Id : <228> +16:13:38 Transaction Type : RESPONSE +16:13:38 Received From : +16:13:38 ============================================================================ +16:13:38 FNo. Len. Field Value +16:13:38 ============================================================================ +16:13:38 [ 1] [ 4] [0210] +16:13:38 [ 2] [ 16] [6688990103283402] +16:13:38 [ 3] [ 6] [010000] +16:13:38 [ 4] [ 12] [000100000000] +16:13:38 [ 11] [ 6] [795215] +16:13:38 [ 12] [ 6] [161330] +16:13:38 [ 15] [ 4] [0320] +16:13:38 [ 18] [ 4] [6011] +16:13:38 [ 32] [ 6] [621354] +16:13:38 [ 35] [ 37] [6688990103283402=42121231340239900000] +16:13:38 [ 37] [ 12] [507903499575] +16:13:38 [ 38] [ 6] [404837] +16:13:38 [ 39] [ 2] [00] +16:13:38 [ 41] [ 8] [06002200] +16:13:38 [ 49] [ 3] [418] +16:13:38 [ 54] [ 20] [0002418C000006627012] +16:13:38 ============================================================================ +16:13:38 Calculate Source COMM Id = 0 +16:13:38 ============================================================================ +16:13:38 + + +waiting on router queue for slot.... +16:13:47 ============================================================================ +16:13:47 Slot Id : <274> +16:13:47 Transaction Type : REQUEST +16:13:47 Received From : +16:13:47 ============================================================================ +16:13:47 FNo. Len. Field Value +16:13:47 ============================================================================ +16:13:47 [ 1] [ 4] [0800] +16:13:47 [ 7] [ 10] [0320091254] +16:13:47 [ 11] [ 6] [157193] +16:13:47 [ 70] [ 3] [301] +16:13:47 ============================================================================ +16:13:47 + + +waiting on router queue for slot.... +16:13:47 Sending to : +16:13:47 ============================================================================ +16:13:47 ============================================================================ +16:13:47 Slot Id : <274> +16:13:47 Transaction Type : RESPONSE +16:13:47 Received From : +16:13:47 ============================================================================ +16:13:47 FNo. Len. Field Value +16:13:47 ============================================================================ +16:13:47 [ 1] [ 4] [0810] +16:13:47 [ 7] [ 10] [0320091254] +16:13:47 [ 11] [ 6] [157193] +16:13:47 [ 39] [ 2] [00] +16:13:47 [ 70] [ 3] [301] +16:13:47 ============================================================================ +16:13:47 Calculate Source COMM Id = 2 +16:13:47 ============================================================================ +16:13:47 + + +waiting on router queue for slot.... +16:13:48 ============================================================================ +16:13:48 Slot Id : <265> +16:13:48 Transaction Type : REQUEST +16:13:48 Received From : +16:13:48 ============================================================================ +16:13:48 FNo. Len. Field Value +16:13:48 ============================================================================ +16:13:48 [ 1] [ 4] [0800] +16:13:48 [ 7] [ 10] [0320232537] +16:13:48 [ 11] [ 6] [162537] +16:13:48 [ 37] [ 12] [57916162537] +16:13:48 [ 70] [ 3] [301] +16:13:48 ============================================================================ +16:13:48 + + +waiting on router queue for slot.... +16:13:48 Sending to : +16:13:48 ============================================================================ +16:13:48 ============================================================================ +16:13:48 Slot Id : <265> +16:13:48 Transaction Type : RESPONSE +16:13:48 Received From : +16:13:48 ============================================================================ +16:13:48 FNo. Len. Field Value +16:13:48 ============================================================================ +16:13:48 [ 1] [ 4] [0810] +16:13:48 [ 7] [ 10] [0320232537] +16:13:48 [ 11] [ 6] [162537] +16:13:48 [ 37] [ 12] [579161625370] +16:13:48 [ 39] [ 2] [00] +16:13:48 [ 70] [ 3] [810] +16:13:48 ============================================================================ +16:13:48 Calculate Source COMM Id = 6 +16:13:48 ============================================================================ +16:13:48 + + +waiting on router queue for slot.... +16:13:52 ============================================================================ +16:13:52 Slot Id : <247> +16:13:52 Transaction Type : REQUEST +16:13:52 Received From : +16:13:52 ============================================================================ +16:13:52 FNo. Len. Field Value +16:13:52 ============================================================================ +16:13:52 [ 1] [ 4] [0200] +16:13:52 [ 2] [ 16] [6213545000113120] +16:13:52 [ 3] [ 6] [010000] +16:13:52 [ 4] [ 12] [000010000000] +16:13:52 [ 7] [ 10] [0320091257] +16:13:52 [ 11] [ 6] [270295] +16:13:52 [ 12] [ 6] [161257] +16:13:52 [ 13] [ 4] [0320] +16:13:52 [ 14] [ 4] [4912] +16:13:52 [ 15] [ 4] [0320] +16:13:52 [ 18] [ 4] [6011] +16:13:52 [ 19] [ 3] [418] +16:13:52 [ 22] [ 3] [021] +16:13:52 [ 25] [ 2] [01] +16:13:52 [ 28] [ 9] [D00002000] +16:13:52 [ 32] [ 6] [180893] +16:13:52 [ 35] [ 32] [6213545000113120=491212011312309] +16:13:52 [ 37] [ 12] [507909270295] +16:13:52 [ 41] [ 8] [0301LPBX] +16:13:52 [ 42] [ 15] [999999 ] +16:13:52 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:13:52 [ 49] [ 3] [418] +16:13:52 [ 52] [ 16] [3C5D296411EA7857] +16:13:52 ============================================================================ +16:13:52 + + +waiting on router queue for slot.... +16:13:52 Sending to : +16:13:52 ============================================================================ +16:13:52 Sending to : +16:13:52 ============================================================================ +16:13:52 ============================================================================ +16:13:52 Slot Id : <247> +16:13:52 Transaction Type : REQUEST +16:13:52 Received From : +16:13:52 ============================================================================ +16:13:52 FNo. Len. Field Value +16:13:52 ============================================================================ +16:13:52 [ 1] [ 4] [0200] +16:13:52 [ 2] [ 16] [6213545000113120] +16:13:52 [ 3] [ 6] [010000] +16:13:52 [ 4] [ 12] [000010000000] +16:13:52 [ 7] [ 10] [0320091257] +16:13:52 [ 11] [ 6] [270295] +16:13:52 [ 12] [ 6] [161257] +16:13:52 [ 13] [ 4] [0320] +16:13:52 [ 14] [ 4] [4912] +16:13:52 [ 15] [ 4] [0320] +16:13:52 [ 18] [ 4] [6011] +16:13:52 [ 19] [ 3] [418] +16:13:52 [ 22] [ 3] [021] +16:13:52 [ 25] [ 2] [01] +16:13:52 [ 28] [ 9] [D00002000] +16:13:52 [ 32] [ 6] [180893] +16:13:52 [ 35] [ 32] [6213545000113120=491212011312309] +16:13:52 [ 37] [ 12] [507909270295] +16:13:52 [ 41] [ 8] [0301LPBX] +16:13:52 [ 42] [ 15] [999999 ] +16:13:52 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:13:52 [ 49] [ 3] [418] +16:13:52 [ 52] [ 16] [3C5D296411EA7857] +16:13:52 ============================================================================ +16:13:52 + + +waiting on router queue for slot.... +16:13:52 Sending to : +16:13:52 ============================================================================ +16:13:52 ============================================================================ +16:13:52 Slot Id : <247> +16:13:52 Transaction Type : REQUEST +16:13:52 Received From : +16:13:52 ============================================================================ +16:13:52 FNo. Len. Field Value +16:13:52 ============================================================================ +16:13:52 [ 1] [ 4] [0200] +16:13:52 [ 2] [ 16] [6213545000113120] +16:13:52 [ 3] [ 6] [010000] +16:13:52 [ 4] [ 12] [000010000000] +16:13:52 [ 7] [ 10] [0320091257] +16:13:52 [ 11] [ 6] [270295] +16:13:52 [ 12] [ 6] [161257] +16:13:52 [ 13] [ 4] [0320] +16:13:52 [ 14] [ 4] [4912] +16:13:52 [ 15] [ 4] [0320] +16:13:52 [ 18] [ 4] [6011] +16:13:52 [ 19] [ 3] [418] +16:13:52 [ 22] [ 3] [021] +16:13:52 [ 25] [ 2] [01] +16:13:52 [ 28] [ 9] [D00002000] +16:13:52 [ 32] [ 6] [180893] +16:13:52 [ 35] [ 32] [6213545000113120=491212011312309] +16:13:52 [ 37] [ 12] [507909270295] +16:13:52 [ 41] [ 8] [0301LPBX] +16:13:52 [ 42] [ 15] [999999 ] +16:13:52 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:13:52 [ 49] [ 3] [418] +16:13:52 [ 52] [ 16] [7ACABAEB5161204C] +16:13:52 ============================================================================ +16:13:52 + + +waiting on router queue for slot.... +16:13:52 Sending to : <0> +16:13:52 ============================================================================ +16:13:53 ============================================================================ +16:13:53 Slot Id : <247> +16:13:53 Transaction Type : RESPONSE +16:13:53 Received From : +16:13:53 ============================================================================ +16:13:53 FNo. Len. Field Value +16:13:53 ============================================================================ +16:13:53 [ 1] [ 4] [0210] +16:13:53 [ 2] [ 16] [6213545000113120] +16:13:53 [ 3] [ 6] [010000] +16:13:53 [ 4] [ 12] [000010000000] +16:13:53 [ 7] [ 10] [0320091257] +16:13:53 [ 11] [ 6] [270295] +16:13:53 [ 12] [ 6] [161257] +16:13:53 [ 13] [ 4] [0320] +16:13:53 [ 15] [ 4] [0320] +16:13:53 [ 18] [ 4] [6011] +16:13:53 [ 19] [ 3] [418] +16:13:53 [ 32] [ 6] [180893] +16:13:53 [ 35] [ 32] [6213545000113120=491212011312309] +16:13:53 [ 37] [ 12] [507909270295] +16:13:53 [ 38] [ 6] [767574] +16:13:53 [ 39] [ 2] [00] +16:13:53 [ 41] [ 8] [0301LPBX] +16:13:53 [ 49] [ 3] [418] +16:13:53 [ 54] [ 40] [0001418C0000272116220002418C000027211622] +16:13:53 ============================================================================ +16:13:53 Sending to : +16:13:53 ============================================================================ +16:13:53 + + +waiting on router queue for slot.... +16:13:53 ============================================================================ +16:13:53 Slot Id : <279> +16:13:53 Transaction Type : REQUEST +16:13:53 Received From : +16:13:53 ============================================================================ +16:13:53 FNo. Len. Field Value +16:13:53 ============================================================================ +16:13:53 [ 1] [ 4] [0200] +16:13:53 [ 2] [ 16] [6688990103062202] +16:13:53 [ 3] [ 6] [011000] +16:13:53 [ 4] [ 12] [000004000000] +16:13:53 [ 7] [ 10] [0320161348] +16:13:53 [ 11] [ 6] [795295] +16:13:53 [ 12] [ 6] [161348] +16:13:53 [ 13] [ 4] [0320] +16:13:53 [ 15] [ 4] [0320] +16:13:53 [ 18] [ 4] [6011] +16:13:53 [ 22] [ 3] [900] +16:13:53 [ 25] [ 2] [02] +16:13:53 [ 28] [ 9] [D00002000] +16:13:53 [ 32] [ 6] [621354] +16:13:53 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:13:53 [ 37] [ 12] [507902577804] +16:13:53 [ 41] [ 8] [05004000] +16:13:53 [ 42] [ 15] [NATIVE ] +16:13:53 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:13:53 [ 49] [ 3] [418] +16:13:53 [ 52] [ 16] [80874CFB311F9647] +16:13:53 ============================================================================ +16:13:53 + + +waiting on router queue for slot.... +16:13:53 Sending to : +16:13:53 ============================================================================ +16:13:53 Sending to : +16:13:53 ============================================================================ +16:13:53 ============================================================================ +16:13:53 Slot Id : <279> +16:13:53 Transaction Type : REQUEST +16:13:53 Received From : +16:13:53 ============================================================================ +16:13:53 FNo. Len. Field Value +16:13:53 ============================================================================ +16:13:53 [ 1] [ 4] [0200] +16:13:53 [ 2] [ 16] [6688990103062202] +16:13:53 [ 3] [ 6] [011000] +16:13:53 [ 4] [ 12] [000004000000] +16:13:53 [ 7] [ 10] [0320161348] +16:13:53 [ 11] [ 6] [795295] +16:13:53 [ 12] [ 6] [161348] +16:13:53 [ 13] [ 4] [0320] +16:13:53 [ 15] [ 4] [0320] +16:13:53 [ 18] [ 4] [6011] +16:13:53 [ 22] [ 3] [900] +16:13:53 [ 25] [ 2] [02] +16:13:53 [ 28] [ 9] [D00002000] +16:13:53 [ 32] [ 6] [621354] +16:13:53 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:13:53 [ 37] [ 12] [507902577804] +16:13:53 [ 41] [ 8] [05004000] +16:13:53 [ 42] [ 15] [NATIVE ] +16:13:53 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:13:53 [ 49] [ 3] [418] +16:13:53 [ 52] [ 16] [80874CFB311F9647] +16:13:53 ============================================================================ +16:13:53 + + +waiting on router queue for slot.... +16:13:53 Sending to : +16:13:53 ============================================================================ +16:13:53 ============================================================================ +16:13:53 Slot Id : <279> +16:13:53 Transaction Type : REQUEST +16:13:53 Received From : +16:13:53 ============================================================================ +16:13:53 FNo. Len. Field Value +16:13:53 ============================================================================ +16:13:53 [ 1] [ 4] [0200] +16:13:53 [ 2] [ 16] [6688990103062202] +16:13:53 [ 3] [ 6] [011000] +16:13:53 [ 4] [ 12] [000004000000] +16:13:53 [ 7] [ 10] [0320161348] +16:13:53 [ 11] [ 6] [795295] +16:13:53 [ 12] [ 6] [161348] +16:13:53 [ 13] [ 4] [0320] +16:13:53 [ 15] [ 4] [0320] +16:13:53 [ 18] [ 4] [6011] +16:13:53 [ 22] [ 3] [900] +16:13:53 [ 25] [ 2] [02] +16:13:53 [ 28] [ 9] [D00002000] +16:13:53 [ 32] [ 6] [621354] +16:13:53 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:13:53 [ 37] [ 12] [507902577804] +16:13:53 [ 41] [ 8] [05004000] +16:13:53 [ 42] [ 15] [NATIVE ] +16:13:53 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:13:53 [ 49] [ 3] [418] +16:13:53 [ 52] [ 16] [91119152E3A54EA6] +16:13:53 ============================================================================ +16:13:53 + + +waiting on router queue for slot.... +16:13:53 Sending to : <4> +16:13:53 ============================================================================ +16:13:53 ============================================================================ +16:13:53 Slot Id : <279> +16:13:53 Transaction Type : RESPONSE +16:13:53 Received From : +16:13:53 ============================================================================ +16:13:53 FNo. Len. Field Value +16:13:53 ============================================================================ +16:13:53 [ 1] [ 4] [0210] +16:13:53 [ 2] [ 16] [6688990103062202] +16:13:53 [ 3] [ 6] [011000] +16:13:53 [ 4] [ 12] [000004000000] +16:13:53 [ 7] [ 10] [0320161348] +16:13:53 [ 11] [ 6] [795295] +16:13:53 [ 12] [ 6] [161348] +16:13:53 [ 13] [ 4] [0320] +16:13:53 [ 15] [ 4] [0320] +16:13:53 [ 18] [ 4] [6011] +16:13:53 [ 22] [ 3] [021] +16:13:53 [ 32] [ 6] [621354] +16:13:53 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:13:53 [ 37] [ 12] [507902577804] +16:13:53 [ 38] [ 6] [161143] +16:13:53 [ 39] [ 2] [75] +16:13:53 [ 41] [ 8] [05004000] +16:13:53 [ 49] [ 3] [418] +16:13:53 ============================================================================ +16:13:53 Sending to : +16:13:53 ============================================================================ +16:13:53 + + +waiting on router queue for slot.... +16:13:53 ============================================================================ +16:13:53 Slot Id : <264> +16:13:53 Transaction Type : REQUEST +16:13:53 Received From : +16:13:53 ============================================================================ +16:13:53 FNo. Len. Field Value +16:13:53 ============================================================================ +16:13:53 [ 1] [ 4] [0200] +16:13:53 [ 2] [ 16] [6688990106252404] +16:13:53 [ 3] [ 6] [011000] +16:13:53 [ 4] [ 12] [000030000000] +16:13:53 [ 7] [ 10] [0320162141] +16:13:53 [ 11] [ 6] [223752] +16:13:53 [ 12] [ 6] [162141] +16:13:53 [ 13] [ 4] [0320] +16:13:53 [ 14] [ 4] [4312] +16:13:53 [ 15] [ 4] [0320] +16:13:53 [ 18] [ 4] [6011] +16:13:53 [ 22] [ 3] [900] +16:13:53 [ 25] [ 2] [02] +16:13:53 [ 28] [ 9] [D00002000] +16:13:53 [ 32] [ 6] [220699] +16:13:53 [ 35] [ 37] [6688990106252404=43121231240442400000] +16:13:53 [ 37] [ 12] [507900118778] +16:13:53 [ 41] [ 8] [01001100] +16:13:53 [ 42] [ 15] [APTRA ] +16:13:53 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:13:53 [ 49] [ 3] [418] +16:13:53 [ 52] [ 16] [AE57866243AA7C00] +16:13:53 ============================================================================ +16:13:53 + + +waiting on router queue for slot.... +16:13:53 Sending to : +16:13:53 ============================================================================ +16:13:53 Sending to : +16:13:53 ============================================================================ +16:13:54 ============================================================================ +16:13:54 Slot Id : <264> +16:13:54 Transaction Type : REQUEST +16:13:54 Received From : +16:13:54 ============================================================================ +16:13:54 FNo. Len. Field Value +16:13:54 ============================================================================ +16:13:54 [ 1] [ 4] [0200] +16:13:54 [ 2] [ 16] [6688990106252404] +16:13:54 [ 3] [ 6] [011000] +16:13:54 [ 4] [ 12] [000030000000] +16:13:54 [ 7] [ 10] [0320162141] +16:13:54 [ 11] [ 6] [223752] +16:13:54 [ 12] [ 6] [162141] +16:13:54 [ 13] [ 4] [0320] +16:13:54 [ 14] [ 4] [4312] +16:13:54 [ 15] [ 4] [0320] +16:13:54 [ 18] [ 4] [6011] +16:13:54 [ 22] [ 3] [900] +16:13:54 [ 25] [ 2] [02] +16:13:54 [ 28] [ 9] [D00002000] +16:13:54 [ 32] [ 6] [220699] +16:13:54 [ 35] [ 37] [6688990106252404=43121231240442400000] +16:13:54 [ 37] [ 12] [507900118778] +16:13:54 [ 41] [ 8] [01001100] +16:13:54 [ 42] [ 15] [APTRA ] +16:13:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:13:54 [ 49] [ 3] [418] +16:13:54 [ 52] [ 16] [AE57866243AA7C00] +16:13:54 ============================================================================ +16:13:54 + + +waiting on router queue for slot.... +16:13:54 Sending to : +16:13:54 ============================================================================ +16:13:54 ============================================================================ +16:13:54 Slot Id : <264> +16:13:54 Transaction Type : REQUEST +16:13:54 Received From : +16:13:54 ============================================================================ +16:13:54 FNo. Len. Field Value +16:13:54 ============================================================================ +16:13:54 [ 1] [ 4] [0200] +16:13:54 [ 2] [ 16] [6688990106252404] +16:13:54 [ 3] [ 6] [011000] +16:13:54 [ 4] [ 12] [000030000000] +16:13:54 [ 7] [ 10] [0320162141] +16:13:54 [ 11] [ 6] [223752] +16:13:54 [ 12] [ 6] [162141] +16:13:54 [ 13] [ 4] [0320] +16:13:54 [ 14] [ 4] [4312] +16:13:54 [ 15] [ 4] [0320] +16:13:54 [ 18] [ 4] [6011] +16:13:54 [ 22] [ 3] [900] +16:13:54 [ 25] [ 2] [02] +16:13:54 [ 28] [ 9] [D00002000] +16:13:54 [ 32] [ 6] [220699] +16:13:54 [ 35] [ 37] [6688990106252404=43121231240442400000] +16:13:54 [ 37] [ 12] [507900118778] +16:13:54 [ 41] [ 8] [01001100] +16:13:54 [ 42] [ 15] [APTRA ] +16:13:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:13:54 [ 49] [ 3] [418] +16:13:54 [ 52] [ 16] [D26A8867BE3ECC95] +16:13:54 ============================================================================ +16:13:54 + + +waiting on router queue for slot.... +16:13:54 Sending to : <0> +16:13:54 ============================================================================ +16:13:54 ============================================================================ +16:13:54 Slot Id : <264> +16:13:54 Transaction Type : RESPONSE +16:13:54 Received From : +16:13:54 ============================================================================ +16:13:54 FNo. Len. Field Value +16:13:54 ============================================================================ +16:13:54 [ 1] [ 4] [0210] +16:13:54 [ 2] [ 16] [6688990106252404] +16:13:54 [ 3] [ 6] [011000] +16:13:54 [ 4] [ 12] [000030000000] +16:13:54 [ 7] [ 10] [0320162141] +16:13:54 [ 11] [ 6] [223752] +16:13:54 [ 12] [ 6] [162141] +16:13:54 [ 13] [ 4] [0320] +16:13:54 [ 15] [ 4] [0320] +16:13:54 [ 18] [ 4] [6011] +16:13:54 [ 22] [ 3] [900] +16:13:54 [ 32] [ 6] [220699] +16:13:54 [ 35] [ 37] [6688990106252404=43121231240442400000] +16:13:54 [ 37] [ 12] [507900118778] +16:13:54 [ 39] [ 2] [14] +16:13:54 [ 41] [ 8] [01001100] +16:13:54 [ 49] [ 3] [418] +16:13:54 ============================================================================ +16:13:54 Sending to : +16:13:54 ============================================================================ +16:13:54 + + +waiting on router queue for slot.... +16:13:54 ============================================================================ +16:13:54 Slot Id : <247> +16:13:54 Transaction Type : RESPONSE +16:13:54 Received From : +16:13:54 ============================================================================ +16:13:54 FNo. Len. Field Value +16:13:54 ============================================================================ +16:13:54 [ 1] [ 4] [0210] +16:13:54 [ 2] [ 16] [6213545000113120] +16:13:54 [ 3] [ 6] [010000] +16:13:54 [ 4] [ 12] [000010000000] +16:13:54 [ 7] [ 10] [0320091257] +16:13:54 [ 11] [ 6] [270295] +16:13:54 [ 12] [ 6] [161257] +16:13:54 [ 13] [ 4] [0320] +16:13:54 [ 15] [ 4] [0320] +16:13:54 [ 18] [ 4] [6011] +16:13:54 [ 19] [ 3] [418] +16:13:54 [ 32] [ 6] [180893] +16:13:54 [ 35] [ 32] [6213545000113120=491212011312309] +16:13:54 [ 37] [ 12] [507909270295] +16:13:54 [ 38] [ 6] [767574] +16:13:54 [ 39] [ 2] [00] +16:13:54 [ 41] [ 8] [0301LPBX] +16:13:54 [ 49] [ 3] [418] +16:13:54 [ 54] [ 40] [0001418C0000272116220002418C000027211622] +16:13:54 ============================================================================ +16:13:54 Calculate Source COMM Id = 2 +16:13:54 ============================================================================ +16:13:54 + + +waiting on router queue for slot.... +16:13:55 ============================================================================ +16:13:55 Slot Id : <264> +16:13:55 Transaction Type : RESPONSE +16:13:55 Received From : +16:13:55 ============================================================================ +16:13:55 FNo. Len. Field Value +16:13:55 ============================================================================ +16:13:55 [ 1] [ 4] [0210] +16:13:55 [ 2] [ 16] [6688990106252404] +16:13:55 [ 3] [ 6] [011000] +16:13:55 [ 4] [ 12] [000030000000] +16:13:55 [ 7] [ 10] [0320162141] +16:13:55 [ 11] [ 6] [223752] +16:13:55 [ 12] [ 6] [162141] +16:13:55 [ 13] [ 4] [0320] +16:13:55 [ 15] [ 4] [0320] +16:13:55 [ 18] [ 4] [6011] +16:13:55 [ 22] [ 3] [900] +16:13:55 [ 32] [ 6] [220699] +16:13:55 [ 35] [ 37] [6688990106252404=43121231240442400000] +16:13:55 [ 37] [ 12] [507900118778] +16:13:55 [ 39] [ 2] [14] +16:13:55 [ 41] [ 8] [01001100] +16:13:55 [ 49] [ 3] [418] +16:13:55 ============================================================================ +16:13:55 Calculate Source COMM Id = 1 +16:13:55 ============================================================================ +16:13:55 + + +waiting on router queue for slot.... +16:13:56 ============================================================================ +16:13:56 Slot Id : <279> +16:13:56 Transaction Type : RESPONSE +16:13:56 Received From : +16:13:56 ============================================================================ +16:13:56 FNo. Len. Field Value +16:13:56 ============================================================================ +16:13:56 [ 1] [ 4] [0210] +16:13:56 [ 2] [ 16] [6688990103062202] +16:13:56 [ 3] [ 6] [011000] +16:13:56 [ 4] [ 12] [000004000000] +16:13:56 [ 7] [ 10] [0320161348] +16:13:56 [ 11] [ 6] [795295] +16:13:56 [ 12] [ 6] [161348] +16:13:56 [ 13] [ 4] [0320] +16:13:56 [ 15] [ 4] [0320] +16:13:56 [ 18] [ 4] [6011] +16:13:56 [ 22] [ 3] [021] +16:13:56 [ 32] [ 6] [621354] +16:13:56 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:13:56 [ 37] [ 12] [507902577804] +16:13:56 [ 38] [ 6] [161143] +16:13:56 [ 39] [ 2] [75] +16:13:56 [ 41] [ 8] [05004000] +16:13:56 [ 49] [ 3] [418] +16:13:56 ============================================================================ +16:13:56 Calculate Source COMM Id = 0 +16:13:56 ============================================================================ +16:13:56 + + +waiting on router queue for slot.... +16:14:03 ============================================================================ +16:14:03 Slot Id : <273> +16:14:03 Transaction Type : REQUEST +16:14:03 Received From : +16:14:03 ============================================================================ +16:14:03 FNo. Len. Field Value +16:14:03 ============================================================================ +16:14:03 [ 1] [ 4] [0800] +16:14:03 [ 2] [ 5] [02531] +16:14:03 [ 3] [ 6] [579168] +16:14:03 [ 7] [ 10] [0320091403] +16:14:03 [ 11] [ 6] [807354] +16:14:03 [ 15] [ 10] [0320091403] +16:14:03 [ 37] [ 11] [57916807354] +16:14:03 [ 70] [ 3] [001] +16:14:03 ============================================================================ +16:14:03 + + +waiting on router queue for slot.... +16:14:03 ============================================================================ +16:14:03 Slot Id : <273> +16:14:03 Transaction Type : RESPONSE +16:14:03 Received From : +16:14:03 ============================================================================ +16:14:03 FNo. Len. Field Value +16:14:03 ============================================================================ +16:14:03 [ 1] [ 4] [0810] +16:14:03 [ 7] [ 10] [0320091403] +16:14:03 [ 11] [ 6] [807354] +16:14:03 [ 15] [ 4] [0320] +16:14:03 [ 37] [ 12] [57916807354] +16:14:03 [ 39] [ 2] [00] +16:14:03 [ 70] [ 3] [001] +16:14:03 ============================================================================ +16:14:03 Sending to : +16:14:03 ============================================================================ +16:14:03 + + +waiting on router queue for slot.... +16:14:06 ============================================================================ +16:14:06 Slot Id : <231> +16:14:06 Transaction Type : REQUEST +16:14:06 Received From : +16:14:06 ============================================================================ +16:14:06 FNo. Len. Field Value +16:14:06 ============================================================================ +16:14:06 [ 1] [ 4] [0200] +16:14:06 [ 2] [ 16] [6688990603112804] +16:14:06 [ 3] [ 6] [010000] +16:14:06 [ 4] [ 12] [000100000000] +16:14:06 [ 7] [ 10] [0320161402] +16:14:06 [ 11] [ 6] [795355] +16:14:06 [ 12] [ 6] [161402] +16:14:06 [ 13] [ 4] [0320] +16:14:06 [ 15] [ 4] [0320] +16:14:06 [ 18] [ 4] [6011] +16:14:06 [ 22] [ 3] [900] +16:14:06 [ 25] [ 2] [02] +16:14:06 [ 28] [ 9] [D00002000] +16:14:06 [ 32] [ 6] [621354] +16:14:06 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:14:06 [ 37] [ 12] [507903345192] +16:14:06 [ 41] [ 8] [13001400] +16:14:06 [ 42] [ 15] [NATIVE ] +16:14:06 [ 43] [ 40] [Kham Unit Kham LAO] +16:14:06 [ 49] [ 3] [418] +16:14:06 [ 52] [ 16] [AAC7B121CBAB9552] +16:14:06 ============================================================================ +16:14:06 + + +waiting on router queue for slot.... +16:14:06 Sending to : +16:14:06 ============================================================================ +16:14:06 Sending to : +16:14:06 ============================================================================ +16:14:07 ============================================================================ +16:14:07 Slot Id : <231> +16:14:07 Transaction Type : REQUEST +16:14:07 Received From : +16:14:07 ============================================================================ +16:14:07 FNo. Len. Field Value +16:14:07 ============================================================================ +16:14:07 [ 1] [ 4] [0200] +16:14:07 [ 2] [ 16] [6688990603112804] +16:14:07 [ 3] [ 6] [010000] +16:14:07 [ 4] [ 12] [000100000000] +16:14:07 [ 7] [ 10] [0320161402] +16:14:07 [ 11] [ 6] [795355] +16:14:07 [ 12] [ 6] [161402] +16:14:07 [ 13] [ 4] [0320] +16:14:07 [ 15] [ 4] [0320] +16:14:07 [ 18] [ 4] [6011] +16:14:07 [ 22] [ 3] [900] +16:14:07 [ 25] [ 2] [02] +16:14:07 [ 28] [ 9] [D00002000] +16:14:07 [ 32] [ 6] [621354] +16:14:07 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:14:07 [ 37] [ 12] [507903345192] +16:14:07 [ 41] [ 8] [13001400] +16:14:07 [ 42] [ 15] [NATIVE ] +16:14:07 [ 43] [ 40] [Kham Unit Kham LAO] +16:14:07 [ 49] [ 3] [418] +16:14:07 [ 52] [ 16] [AAC7B121CBAB9552] +16:14:07 ============================================================================ +16:14:07 + + +waiting on router queue for slot.... +16:14:07 Sending to : +16:14:07 ============================================================================ +16:14:07 ============================================================================ +16:14:07 Slot Id : <231> +16:14:07 Transaction Type : REQUEST +16:14:07 Received From : +16:14:07 ============================================================================ +16:14:07 FNo. Len. Field Value +16:14:07 ============================================================================ +16:14:07 [ 1] [ 4] [0200] +16:14:07 [ 2] [ 16] [6688990603112804] +16:14:07 [ 3] [ 6] [010000] +16:14:07 [ 4] [ 12] [000100000000] +16:14:07 [ 7] [ 10] [0320161402] +16:14:07 [ 11] [ 6] [795355] +16:14:07 [ 12] [ 6] [161402] +16:14:07 [ 13] [ 4] [0320] +16:14:07 [ 15] [ 4] [0320] +16:14:07 [ 18] [ 4] [6011] +16:14:07 [ 22] [ 3] [900] +16:14:07 [ 25] [ 2] [02] +16:14:07 [ 28] [ 9] [D00002000] +16:14:07 [ 32] [ 6] [621354] +16:14:07 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:14:07 [ 37] [ 12] [507903345192] +16:14:07 [ 41] [ 8] [13001400] +16:14:07 [ 42] [ 15] [NATIVE ] +16:14:07 [ 43] [ 40] [Kham Unit Kham LAO] +16:14:07 [ 49] [ 3] [418] +16:14:07 [ 52] [ 16] [4EB2EDCE4F714A18] +16:14:07 ============================================================================ +16:14:07 + + +waiting on router queue for slot.... +16:14:07 Sending to : <4> +16:14:07 ============================================================================ +16:14:08 ============================================================================ +16:14:08 Slot Id : <220> +16:14:08 Transaction Type : REQUEST +16:14:08 Received From : +16:14:08 ============================================================================ +16:14:08 FNo. Len. Field Value +16:14:08 ============================================================================ +16:14:08 [ 1] [ 4] [0800] +16:14:08 [ 7] [ 10] [0320091315] +16:14:08 [ 11] [ 6] [157194] +16:14:08 [ 70] [ 3] [301] +16:14:08 ============================================================================ +16:14:08 + + +waiting on router queue for slot.... +16:14:08 Sending to : +16:14:08 ============================================================================ +16:14:08 ============================================================================ +16:14:08 Slot Id : <220> +16:14:08 Transaction Type : RESPONSE +16:14:08 Received From : +16:14:08 ============================================================================ +16:14:08 FNo. Len. Field Value +16:14:08 ============================================================================ +16:14:08 [ 1] [ 4] [0810] +16:14:08 [ 7] [ 10] [0320091315] +16:14:08 [ 11] [ 6] [157194] +16:14:08 [ 39] [ 2] [00] +16:14:08 [ 70] [ 3] [301] +16:14:08 ============================================================================ +16:14:08 Calculate Source COMM Id = 2 +16:14:08 ============================================================================ +16:14:08 + + +waiting on router queue for slot.... +16:14:08 ============================================================================ +16:14:08 Slot Id : <231> +16:14:08 Transaction Type : RESPONSE +16:14:08 Received From : +16:14:08 ============================================================================ +16:14:08 FNo. Len. Field Value +16:14:08 ============================================================================ +16:14:08 [ 1] [ 4] [0210] +16:14:08 [ 2] [ 16] [6688990603112804] +16:14:08 [ 3] [ 6] [010000] +16:14:08 [ 4] [ 12] [000100000000] +16:14:08 [ 11] [ 6] [795355] +16:14:08 [ 12] [ 6] [161402] +16:14:08 [ 15] [ 4] [0320] +16:14:08 [ 18] [ 4] [6011] +16:14:08 [ 32] [ 6] [621354] +16:14:08 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:14:08 [ 37] [ 12] [507903345192] +16:14:08 [ 38] [ 6] [204158] +16:14:08 [ 39] [ 2] [00] +16:14:08 [ 41] [ 8] [13001400] +16:14:08 [ 49] [ 3] [418] +16:14:08 [ 54] [ 20] [0002418C000161712710] +16:14:08 ============================================================================ +16:14:08 Sending to : +16:14:08 ============================================================================ +16:14:08 + + +waiting on router queue for slot.... +16:14:10 ============================================================================ +16:14:10 Slot Id : <231> +16:14:10 Transaction Type : RESPONSE +16:14:10 Received From : +16:14:10 ============================================================================ +16:14:10 FNo. Len. Field Value +16:14:10 ============================================================================ +16:14:10 [ 1] [ 4] [0210] +16:14:10 [ 2] [ 16] [6688990603112804] +16:14:10 [ 3] [ 6] [010000] +16:14:10 [ 4] [ 12] [000100000000] +16:14:10 [ 11] [ 6] [795355] +16:14:10 [ 12] [ 6] [161402] +16:14:10 [ 15] [ 4] [0320] +16:14:10 [ 18] [ 4] [6011] +16:14:10 [ 32] [ 6] [621354] +16:14:10 [ 35] [ 37] [6688990603112804=44060061280438100000] +16:14:10 [ 37] [ 12] [507903345192] +16:14:10 [ 38] [ 6] [204158] +16:14:10 [ 39] [ 2] [00] +16:14:10 [ 41] [ 8] [13001400] +16:14:10 [ 49] [ 3] [418] +16:14:10 [ 54] [ 20] [0002418C000161712710] +16:14:10 ============================================================================ +16:14:10 Calculate Source COMM Id = 0 +16:14:10 ============================================================================ +16:14:10 + + +waiting on router queue for slot.... +16:14:14 ============================================================================ +16:14:14 Slot Id : <239> +16:14:14 Transaction Type : REQUEST +16:14:14 Received From : +16:14:14 ============================================================================ +16:14:14 FNo. Len. Field Value +16:14:14 ============================================================================ +16:14:14 [ 1] [ 4] [0200] +16:14:14 [ 2] [ 16] [6213544001267431] +16:14:14 [ 3] [ 6] [010000] +16:14:14 [ 4] [ 12] [000010000000] +16:14:14 [ 7] [ 10] [0320091320] +16:14:14 [ 11] [ 6] [270300] +16:14:14 [ 12] [ 6] [161320] +16:14:14 [ 13] [ 4] [0320] +16:14:14 [ 14] [ 4] [4912] +16:14:14 [ 15] [ 4] [0320] +16:14:14 [ 18] [ 4] [6011] +16:14:14 [ 19] [ 3] [418] +16:14:14 [ 22] [ 3] [021] +16:14:14 [ 25] [ 2] [01] +16:14:14 [ 28] [ 9] [D00002000] +16:14:14 [ 32] [ 6] [180893] +16:14:14 [ 35] [ 32] [6213544001267431=491212016743556] +16:14:14 [ 37] [ 12] [507909270300] +16:14:14 [ 41] [ 8] [0528LPBP] +16:14:14 [ 42] [ 15] [999999 ] +16:14:14 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:14:14 [ 49] [ 3] [418] +16:14:14 [ 52] [ 16] [AC93C9FFC29409B3] +16:14:14 ============================================================================ +16:14:14 + + +waiting on router queue for slot.... +16:14:14 Sending to : +16:14:14 ============================================================================ +16:14:14 Sending to : +16:14:14 ============================================================================ +16:14:14 ============================================================================ +16:14:14 Slot Id : <239> +16:14:14 Transaction Type : REQUEST +16:14:14 Received From : +16:14:14 ============================================================================ +16:14:14 FNo. Len. Field Value +16:14:14 ============================================================================ +16:14:14 [ 1] [ 4] [0200] +16:14:14 [ 2] [ 16] [6213544001267431] +16:14:14 [ 3] [ 6] [010000] +16:14:14 [ 4] [ 12] [000010000000] +16:14:14 [ 7] [ 10] [0320091320] +16:14:14 [ 11] [ 6] [270300] +16:14:14 [ 12] [ 6] [161320] +16:14:14 [ 13] [ 4] [0320] +16:14:14 [ 14] [ 4] [4912] +16:14:14 [ 15] [ 4] [0320] +16:14:14 [ 18] [ 4] [6011] +16:14:14 [ 19] [ 3] [418] +16:14:14 [ 22] [ 3] [021] +16:14:14 [ 25] [ 2] [01] +16:14:14 [ 28] [ 9] [D00002000] +16:14:14 [ 32] [ 6] [180893] +16:14:14 [ 35] [ 32] [6213544001267431=491212016743556] +16:14:14 [ 37] [ 12] [507909270300] +16:14:14 [ 41] [ 8] [0528LPBP] +16:14:14 [ 42] [ 15] [999999 ] +16:14:14 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:14:14 [ 49] [ 3] [418] +16:14:14 [ 52] [ 16] [AC93C9FFC29409B3] +16:14:14 ============================================================================ +16:14:14 + + +waiting on router queue for slot.... +16:14:14 Sending to : +16:14:14 ============================================================================ +16:14:14 ============================================================================ +16:14:14 Slot Id : <239> +16:14:14 Transaction Type : REQUEST +16:14:14 Received From : +16:14:14 ============================================================================ +16:14:14 FNo. Len. Field Value +16:14:14 ============================================================================ +16:14:14 [ 1] [ 4] [0200] +16:14:14 [ 2] [ 16] [6213544001267431] +16:14:14 [ 3] [ 6] [010000] +16:14:14 [ 4] [ 12] [000010000000] +16:14:14 [ 7] [ 10] [0320091320] +16:14:14 [ 11] [ 6] [270300] +16:14:14 [ 12] [ 6] [161320] +16:14:14 [ 13] [ 4] [0320] +16:14:14 [ 14] [ 4] [4912] +16:14:14 [ 15] [ 4] [0320] +16:14:14 [ 18] [ 4] [6011] +16:14:14 [ 19] [ 3] [418] +16:14:14 [ 22] [ 3] [021] +16:14:14 [ 25] [ 2] [01] +16:14:14 [ 28] [ 9] [D00002000] +16:14:14 [ 32] [ 6] [180893] +16:14:14 [ 35] [ 32] [6213544001267431=491212016743556] +16:14:14 [ 37] [ 12] [507909270300] +16:14:14 [ 41] [ 8] [0528LPBP] +16:14:14 [ 42] [ 15] [999999 ] +16:14:14 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:14:14 [ 49] [ 3] [418] +16:14:14 [ 52] [ 16] [8539F54B54ADF2DE] +16:14:14 ============================================================================ +16:14:14 + + +waiting on router queue for slot.... +16:14:14 Sending to : <0> +16:14:14 ============================================================================ +16:14:15 ============================================================================ +16:14:15 Slot Id : <252> +16:14:15 Transaction Type : REQUEST +16:14:15 Received From : +16:14:15 ============================================================================ +16:14:15 FNo. Len. Field Value +16:14:15 ============================================================================ +16:14:15 [ 1] [ 4] [0200] +16:14:15 [ 2] [ 16] [6688990101830501] +16:14:15 [ 3] [ 6] [301000] +16:14:15 [ 4] [ 12] [000000000000] +16:14:15 [ 7] [ 10] [0320161410] +16:14:15 [ 11] [ 6] [795386] +16:14:15 [ 12] [ 6] [161410] +16:14:15 [ 13] [ 4] [0320] +16:14:15 [ 15] [ 4] [0320] +16:14:15 [ 18] [ 4] [6011] +16:14:15 [ 22] [ 3] [900] +16:14:15 [ 25] [ 2] [02] +16:14:15 [ 28] [ 9] [D00000000] +16:14:15 [ 32] [ 6] [621354] +16:14:15 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:14:15 [ 37] [ 12] [507904635828] +16:14:15 [ 41] [ 8] [17000800] +16:14:15 [ 42] [ 15] [NATIVE ] +16:14:15 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:14:15 [ 49] [ 3] [418] +16:14:15 [ 52] [ 16] [54904784A167D8BD] +16:14:15 ============================================================================ +16:14:15 + + +waiting on router queue for slot.... +16:14:15 Sending to : +16:14:15 ============================================================================ +16:14:15 Sending to : +16:14:15 ============================================================================ +16:14:15 ============================================================================ +16:14:15 Slot Id : <239> +16:14:15 Transaction Type : RESPONSE +16:14:15 Received From : +16:14:15 ============================================================================ +16:14:15 FNo. Len. Field Value +16:14:15 ============================================================================ +16:14:15 [ 1] [ 4] [0210] +16:14:15 [ 2] [ 16] [6213544001267431] +16:14:15 [ 3] [ 6] [010000] +16:14:15 [ 4] [ 12] [000010000000] +16:14:15 [ 7] [ 10] [0320091320] +16:14:15 [ 11] [ 6] [270300] +16:14:15 [ 12] [ 6] [161320] +16:14:15 [ 13] [ 4] [0320] +16:14:15 [ 15] [ 4] [0320] +16:14:15 [ 18] [ 4] [6011] +16:14:15 [ 19] [ 3] [418] +16:14:15 [ 32] [ 6] [180893] +16:14:15 [ 35] [ 32] [6213544001267431=491212016743556] +16:14:15 [ 37] [ 12] [507909270300] +16:14:15 [ 38] [ 6] [270300] +16:14:15 [ 39] [ 2] [51] +16:14:15 [ 41] [ 8] [0528LPBP] +16:14:15 [ 49] [ 3] [418] +16:14:15 [ 54] [ 40] [0001418C0000108227410002418C000010822741] +16:14:15 ============================================================================ +16:14:15 Sending to : +16:14:15 ============================================================================ +16:14:15 + + +waiting on router queue for slot.... +16:14:15 ============================================================================ +16:14:15 Slot Id : <252> +16:14:15 Transaction Type : REQUEST +16:14:15 Received From : +16:14:15 ============================================================================ +16:14:15 FNo. Len. Field Value +16:14:15 ============================================================================ +16:14:15 [ 1] [ 4] [0200] +16:14:15 [ 2] [ 16] [6688990101830501] +16:14:15 [ 3] [ 6] [301000] +16:14:15 [ 4] [ 12] [000000000000] +16:14:15 [ 7] [ 10] [0320161410] +16:14:15 [ 11] [ 6] [795386] +16:14:15 [ 12] [ 6] [161410] +16:14:15 [ 13] [ 4] [0320] +16:14:15 [ 15] [ 4] [0320] +16:14:15 [ 18] [ 4] [6011] +16:14:15 [ 22] [ 3] [900] +16:14:15 [ 25] [ 2] [02] +16:14:15 [ 28] [ 9] [D00000000] +16:14:15 [ 32] [ 6] [621354] +16:14:15 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:14:15 [ 37] [ 12] [507904635828] +16:14:15 [ 41] [ 8] [17000800] +16:14:15 [ 42] [ 15] [NATIVE ] +16:14:15 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:14:15 [ 49] [ 3] [418] +16:14:15 [ 52] [ 16] [54904784A167D8BD] +16:14:15 ============================================================================ +16:14:15 + + +waiting on router queue for slot.... +16:14:15 Sending to : +16:14:15 ============================================================================ +16:14:15 ============================================================================ +16:14:15 Slot Id : <252> +16:14:15 Transaction Type : REQUEST +16:14:15 Received From : +16:14:15 ============================================================================ +16:14:15 FNo. Len. Field Value +16:14:15 ============================================================================ +16:14:15 [ 1] [ 4] [0200] +16:14:15 [ 2] [ 16] [6688990101830501] +16:14:15 [ 3] [ 6] [301000] +16:14:15 [ 4] [ 12] [000000000000] +16:14:15 [ 7] [ 10] [0320161410] +16:14:15 [ 11] [ 6] [795386] +16:14:15 [ 12] [ 6] [161410] +16:14:15 [ 13] [ 4] [0320] +16:14:15 [ 15] [ 4] [0320] +16:14:15 [ 18] [ 4] [6011] +16:14:15 [ 22] [ 3] [900] +16:14:15 [ 25] [ 2] [02] +16:14:15 [ 28] [ 9] [D00000000] +16:14:15 [ 32] [ 6] [621354] +16:14:15 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:14:15 [ 37] [ 12] [507904635828] +16:14:15 [ 41] [ 8] [17000800] +16:14:15 [ 42] [ 15] [NATIVE ] +16:14:15 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:14:15 [ 49] [ 3] [418] +16:14:15 [ 52] [ 16] [7327C78119A62D0C] +16:14:15 ============================================================================ +16:14:15 + + +waiting on router queue for slot.... +16:14:15 Sending to : <4> +16:14:15 ============================================================================ +16:14:16 ============================================================================ +16:14:16 Slot Id : <239> +16:14:16 Transaction Type : RESPONSE +16:14:16 Received From : +16:14:16 ============================================================================ +16:14:16 FNo. Len. Field Value +16:14:16 ============================================================================ +16:14:16 [ 1] [ 4] [0210] +16:14:16 [ 2] [ 16] [6213544001267431] +16:14:16 [ 3] [ 6] [010000] +16:14:16 [ 4] [ 12] [000010000000] +16:14:16 [ 7] [ 10] [0320091320] +16:14:16 [ 11] [ 6] [270300] +16:14:16 [ 12] [ 6] [161320] +16:14:16 [ 13] [ 4] [0320] +16:14:16 [ 15] [ 4] [0320] +16:14:16 [ 18] [ 4] [6011] +16:14:16 [ 19] [ 3] [418] +16:14:16 [ 32] [ 6] [180893] +16:14:16 [ 35] [ 32] [6213544001267431=491212016743556] +16:14:16 [ 37] [ 12] [507909270300] +16:14:16 [ 38] [ 6] [270300] +16:14:16 [ 39] [ 2] [51] +16:14:16 [ 41] [ 8] [0528LPBP] +16:14:16 [ 49] [ 3] [418] +16:14:16 [ 54] [ 40] [0001418C0000108227410002418C000010822741] +16:14:16 ============================================================================ +16:14:16 Calculate Source COMM Id = 2 +16:14:16 ============================================================================ +16:14:16 + + +waiting on router queue for slot.... +16:14:16 ============================================================================ +16:14:16 Slot Id : <252> +16:14:16 Transaction Type : RESPONSE +16:14:16 Received From : +16:14:16 ============================================================================ +16:14:16 FNo. Len. Field Value +16:14:16 ============================================================================ +16:14:16 [ 1] [ 4] [0210] +16:14:16 [ 2] [ 16] [6688990101830501] +16:14:16 [ 3] [ 6] [301000] +16:14:16 [ 4] [ 12] [000000000000] +16:14:16 [ 11] [ 6] [795386] +16:14:16 [ 12] [ 6] [161410] +16:14:16 [ 15] [ 4] [0320] +16:14:16 [ 18] [ 4] [6011] +16:14:16 [ 32] [ 6] [621354] +16:14:16 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:14:16 [ 37] [ 12] [507904635828] +16:14:16 [ 38] [ 6] [518730] +16:14:16 [ 39] [ 2] [00] +16:14:16 [ 41] [ 8] [17000800] +16:14:16 [ 49] [ 3] [418] +16:14:16 [ 54] [ 20] [1002418C000395227482] +16:14:16 ============================================================================ +16:14:16 Sending to : +16:14:16 ============================================================================ +16:14:16 + + +waiting on router queue for slot.... +16:14:17 ============================================================================ +16:14:17 Slot Id : <254> +16:14:17 Transaction Type : REQUEST +16:14:17 Received From : +16:14:17 ============================================================================ +16:14:17 FNo. Len. Field Value +16:14:17 ============================================================================ +16:14:17 [ 1] [ 4] [0200] +16:14:17 [ 2] [ 16] [6213545000973457] +16:14:17 [ 3] [ 6] [010000] +16:14:17 [ 4] [ 12] [000100000000] +16:14:17 [ 7] [ 10] [0320091324] +16:14:17 [ 11] [ 6] [270301] +16:14:17 [ 12] [ 6] [161324] +16:14:17 [ 13] [ 4] [0320] +16:14:17 [ 14] [ 4] [4912] +16:14:17 [ 15] [ 4] [0320] +16:14:17 [ 18] [ 4] [6011] +16:14:17 [ 19] [ 3] [418] +16:14:17 [ 22] [ 3] [021] +16:14:17 [ 25] [ 2] [01] +16:14:17 [ 28] [ 9] [D00002000] +16:14:17 [ 32] [ 6] [180893] +16:14:17 [ 35] [ 32] [6213545000973457=491212017345178] +16:14:17 [ 37] [ 12] [507909270301] +16:14:17 [ 41] [ 8] [0221XKKM] +16:14:17 [ 42] [ 15] [999999 ] +16:14:17 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:14:17 [ 49] [ 3] [418] +16:14:17 [ 52] [ 16] [889AAB2EA006FEED] +16:14:17 ============================================================================ +16:14:17 + + +waiting on router queue for slot.... +16:14:17 Sending to : +16:14:17 ============================================================================ +16:14:17 Sending to : +16:14:17 ============================================================================ +16:14:17 ============================================================================ +16:14:17 Slot Id : <252> +16:14:17 Transaction Type : RESPONSE +16:14:17 Received From : +16:14:17 ============================================================================ +16:14:17 FNo. Len. Field Value +16:14:17 ============================================================================ +16:14:17 [ 1] [ 4] [0210] +16:14:17 [ 2] [ 16] [6688990101830501] +16:14:17 [ 3] [ 6] [301000] +16:14:17 [ 4] [ 12] [000000000000] +16:14:17 [ 11] [ 6] [795386] +16:14:17 [ 12] [ 6] [161410] +16:14:17 [ 15] [ 4] [0320] +16:14:17 [ 18] [ 4] [6011] +16:14:17 [ 32] [ 6] [621354] +16:14:17 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:14:17 [ 37] [ 12] [507904635828] +16:14:17 [ 38] [ 6] [518730] +16:14:17 [ 39] [ 2] [00] +16:14:17 [ 41] [ 8] [17000800] +16:14:17 [ 49] [ 3] [418] +16:14:17 [ 54] [ 20] [1002418C000395227482] +16:14:17 ============================================================================ +16:14:17 Calculate Source COMM Id = 0 +16:14:17 ============================================================================ +16:14:17 + + +waiting on router queue for slot.... +16:14:18 ============================================================================ +16:14:18 Slot Id : <254> +16:14:18 Transaction Type : REQUEST +16:14:18 Received From : +16:14:18 ============================================================================ +16:14:18 FNo. Len. Field Value +16:14:18 ============================================================================ +16:14:18 [ 1] [ 4] [0200] +16:14:18 [ 2] [ 16] [6213545000973457] +16:14:18 [ 3] [ 6] [010000] +16:14:18 [ 4] [ 12] [000100000000] +16:14:18 [ 7] [ 10] [0320091324] +16:14:18 [ 11] [ 6] [270301] +16:14:18 [ 12] [ 6] [161324] +16:14:18 [ 13] [ 4] [0320] +16:14:18 [ 14] [ 4] [4912] +16:14:18 [ 15] [ 4] [0320] +16:14:18 [ 18] [ 4] [6011] +16:14:18 [ 19] [ 3] [418] +16:14:18 [ 22] [ 3] [021] +16:14:18 [ 25] [ 2] [01] +16:14:18 [ 28] [ 9] [D00002000] +16:14:18 [ 32] [ 6] [180893] +16:14:18 [ 35] [ 32] [6213545000973457=491212017345178] +16:14:18 [ 37] [ 12] [507909270301] +16:14:18 [ 41] [ 8] [0221XKKM] +16:14:18 [ 42] [ 15] [999999 ] +16:14:18 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:14:18 [ 49] [ 3] [418] +16:14:18 [ 52] [ 16] [889AAB2EA006FEED] +16:14:18 ============================================================================ +16:14:18 + + +waiting on router queue for slot.... +16:14:18 Sending to : +16:14:18 ============================================================================ +16:14:18 ============================================================================ +16:14:18 Slot Id : <254> +16:14:18 Transaction Type : REQUEST +16:14:18 Received From : +16:14:18 ============================================================================ +16:14:18 FNo. Len. Field Value +16:14:18 ============================================================================ +16:14:18 [ 1] [ 4] [0200] +16:14:18 [ 2] [ 16] [6213545000973457] +16:14:18 [ 3] [ 6] [010000] +16:14:18 [ 4] [ 12] [000100000000] +16:14:18 [ 7] [ 10] [0320091324] +16:14:18 [ 11] [ 6] [270301] +16:14:18 [ 12] [ 6] [161324] +16:14:18 [ 13] [ 4] [0320] +16:14:18 [ 14] [ 4] [4912] +16:14:18 [ 15] [ 4] [0320] +16:14:18 [ 18] [ 4] [6011] +16:14:18 [ 19] [ 3] [418] +16:14:18 [ 22] [ 3] [021] +16:14:18 [ 25] [ 2] [01] +16:14:18 [ 28] [ 9] [D00002000] +16:14:18 [ 32] [ 6] [180893] +16:14:18 [ 35] [ 32] [6213545000973457=491212017345178] +16:14:18 [ 37] [ 12] [507909270301] +16:14:18 [ 41] [ 8] [0221XKKM] +16:14:18 [ 42] [ 15] [999999 ] +16:14:18 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:14:18 [ 49] [ 3] [418] +16:14:18 [ 52] [ 16] [E0D38ED1DE57398F] +16:14:18 ============================================================================ +16:14:18 + + +waiting on router queue for slot.... +16:14:18 Sending to : <0> +16:14:18 ============================================================================ +16:14:18 ============================================================================ +16:14:18 Slot Id : <254> +16:14:18 Transaction Type : RESPONSE +16:14:18 Received From : +16:14:18 ============================================================================ +16:14:18 FNo. Len. Field Value +16:14:18 ============================================================================ +16:14:18 [ 1] [ 4] [0210] +16:14:18 [ 2] [ 16] [6213545000973457] +16:14:18 [ 3] [ 6] [010000] +16:14:18 [ 4] [ 12] [000100000000] +16:14:18 [ 7] [ 10] [0320091324] +16:14:18 [ 11] [ 6] [270301] +16:14:18 [ 12] [ 6] [161324] +16:14:18 [ 13] [ 4] [0320] +16:14:18 [ 15] [ 4] [0320] +16:14:18 [ 18] [ 4] [6011] +16:14:18 [ 19] [ 3] [418] +16:14:18 [ 32] [ 6] [180893] +16:14:18 [ 35] [ 32] [6213545000973457=491212017345178] +16:14:18 [ 37] [ 12] [507909270301] +16:14:18 [ 38] [ 6] [379256] +16:14:18 [ 39] [ 2] [00] +16:14:18 [ 41] [ 8] [0221XKKM] +16:14:18 [ 49] [ 3] [418] +16:14:18 [ 54] [ 40] [0001418C0004045590340002418C000404559034] +16:14:18 ============================================================================ +16:14:18 Sending to : +16:14:18 ============================================================================ +16:14:18 + + +waiting on router queue for slot.... +16:14:20 ============================================================================ +16:14:20 Slot Id : <254> +16:14:20 Transaction Type : RESPONSE +16:14:20 Received From : +16:14:20 ============================================================================ +16:14:20 FNo. Len. Field Value +16:14:20 ============================================================================ +16:14:20 [ 1] [ 4] [0210] +16:14:20 [ 2] [ 16] [6213545000973457] +16:14:20 [ 3] [ 6] [010000] +16:14:20 [ 4] [ 12] [000100000000] +16:14:20 [ 7] [ 10] [0320091324] +16:14:20 [ 11] [ 6] [270301] +16:14:20 [ 12] [ 6] [161324] +16:14:20 [ 13] [ 4] [0320] +16:14:20 [ 15] [ 4] [0320] +16:14:20 [ 18] [ 4] [6011] +16:14:20 [ 19] [ 3] [418] +16:14:20 [ 32] [ 6] [180893] +16:14:20 [ 35] [ 32] [6213545000973457=491212017345178] +16:14:20 [ 37] [ 12] [507909270301] +16:14:20 [ 38] [ 6] [379256] +16:14:20 [ 39] [ 2] [00] +16:14:20 [ 41] [ 8] [0221XKKM] +16:14:20 [ 49] [ 3] [418] +16:14:20 [ 54] [ 40] [0001418C0004045590340002418C000404559034] +16:14:20 ============================================================================ +16:14:20 Calculate Source COMM Id = 2 +16:14:20 ============================================================================ +16:14:20 + + +waiting on router queue for slot.... +16:14:27 ============================================================================ +16:14:27 Slot Id : <272> +16:14:27 Transaction Type : REQUEST +16:14:27 Received From : +16:14:27 ============================================================================ +16:14:27 FNo. Len. Field Value +16:14:27 ============================================================================ +16:14:27 [ 1] [ 4] [0200] +16:14:27 [ 2] [ 16] [6213544002162383] +16:14:27 [ 3] [ 6] [302000] +16:14:27 [ 4] [ 12] [000000000000] +16:14:27 [ 7] [ 10] [0320161217] +16:14:27 [ 11] [ 6] [951296] +16:14:27 [ 12] [ 6] [161217] +16:14:27 [ 13] [ 4] [0320] +16:14:27 [ 15] [ 4] [0320] +16:14:27 [ 18] [ 4] [6011] +16:14:27 [ 19] [ 3] [418] +16:14:27 [ 22] [ 3] [021] +16:14:27 [ 25] [ 2] [01] +16:14:27 [ 28] [ 9] [D00000000] +16:14:27 [ 32] [ 6] [668899] +16:14:27 [ 35] [ 32] [6213544002162383=491212016238594] +16:14:27 [ 37] [ 12] [507901443616] +16:14:27 [ 41] [ 8] [03414001] +16:14:27 [ 42] [ 15] [APT ] +16:14:27 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +16:14:27 [ 49] [ 3] [418] +16:14:27 [ 52] [ 16] [376E18114B7F1C42] +16:14:27 ============================================================================ +16:14:27 + + +waiting on router queue for slot.... +16:14:27 Sending to : +16:14:27 ============================================================================ +16:14:27 Sending to : +16:14:27 ============================================================================ +16:14:28 ============================================================================ +16:14:28 Slot Id : <272> +16:14:28 Transaction Type : REQUEST +16:14:28 Received From : +16:14:28 ============================================================================ +16:14:28 FNo. Len. Field Value +16:14:28 ============================================================================ +16:14:28 [ 1] [ 4] [0200] +16:14:28 [ 2] [ 16] [6213544002162383] +16:14:28 [ 3] [ 6] [302000] +16:14:28 [ 4] [ 12] [000000000000] +16:14:28 [ 7] [ 10] [0320161217] +16:14:28 [ 11] [ 6] [951296] +16:14:28 [ 12] [ 6] [161217] +16:14:28 [ 13] [ 4] [0320] +16:14:28 [ 15] [ 4] [0320] +16:14:28 [ 18] [ 4] [6011] +16:14:28 [ 19] [ 3] [418] +16:14:28 [ 22] [ 3] [021] +16:14:28 [ 25] [ 2] [01] +16:14:28 [ 28] [ 9] [D00000000] +16:14:28 [ 32] [ 6] [668899] +16:14:28 [ 35] [ 32] [6213544002162383=491212016238594] +16:14:28 [ 37] [ 12] [507901443616] +16:14:28 [ 41] [ 8] [03414001] +16:14:28 [ 42] [ 15] [APT ] +16:14:28 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +16:14:28 [ 49] [ 3] [418] +16:14:28 [ 52] [ 16] [376E18114B7F1C42] +16:14:28 ============================================================================ +16:14:28 + + +waiting on router queue for slot.... +16:14:28 Sending to : +16:14:28 ============================================================================ +16:14:28 ============================================================================ +16:14:28 Slot Id : <272> +16:14:28 Transaction Type : REQUEST +16:14:28 Received From : +16:14:28 ============================================================================ +16:14:28 FNo. Len. Field Value +16:14:28 ============================================================================ +16:14:28 [ 1] [ 4] [0200] +16:14:28 [ 2] [ 16] [6213544002162383] +16:14:28 [ 3] [ 6] [302000] +16:14:28 [ 4] [ 12] [000000000000] +16:14:28 [ 7] [ 10] [0320161217] +16:14:28 [ 11] [ 6] [951296] +16:14:28 [ 12] [ 6] [161217] +16:14:28 [ 13] [ 4] [0320] +16:14:28 [ 15] [ 4] [0320] +16:14:28 [ 18] [ 4] [6011] +16:14:28 [ 19] [ 3] [418] +16:14:28 [ 22] [ 3] [021] +16:14:28 [ 25] [ 2] [01] +16:14:28 [ 28] [ 9] [D00000000] +16:14:28 [ 32] [ 6] [668899] +16:14:28 [ 35] [ 32] [6213544002162383=491212016238594] +16:14:28 [ 37] [ 12] [507901443616] +16:14:28 [ 41] [ 8] [03414001] +16:14:28 [ 42] [ 15] [APT ] +16:14:28 [ 43] [ 40] [ OUTHOUMPHONE UNIT SAVANNA] +16:14:28 [ 49] [ 3] [418] +16:14:28 [ 52] [ 16] [B0BB16DCA3D595FF] +16:14:28 ============================================================================ +16:14:28 + + +waiting on router queue for slot.... +16:14:28 Sending to : <0> +16:14:28 ============================================================================ +16:14:28 ============================================================================ +16:14:28 Slot Id : <282> +16:14:28 Transaction Type : REQUEST +16:14:28 Received From : +16:14:28 ============================================================================ +16:14:28 FNo. Len. Field Value +16:14:28 ============================================================================ +16:14:28 [ 1] [ 4] [0200] +16:14:28 [ 2] [ 16] [6213545000113120] +16:14:28 [ 3] [ 6] [010000] +16:14:28 [ 4] [ 12] [000010000000] +16:14:28 [ 7] [ 10] [0320091335] +16:14:28 [ 11] [ 6] [270303] +16:14:28 [ 12] [ 6] [161335] +16:14:28 [ 13] [ 4] [0320] +16:14:28 [ 14] [ 4] [4912] +16:14:28 [ 15] [ 4] [0320] +16:14:28 [ 18] [ 4] [6011] +16:14:28 [ 19] [ 3] [418] +16:14:28 [ 22] [ 3] [021] +16:14:28 [ 25] [ 2] [01] +16:14:28 [ 28] [ 9] [D00002000] +16:14:28 [ 32] [ 6] [180893] +16:14:28 [ 35] [ 32] [6213545000113120=491212011312309] +16:14:28 [ 37] [ 12] [507909270303] +16:14:28 [ 41] [ 8] [0301LPBX] +16:14:28 [ 42] [ 15] [999999 ] +16:14:28 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:14:28 [ 49] [ 3] [418] +16:14:28 [ 52] [ 16] [3C5D296411EA7857] +16:14:28 ============================================================================ +16:14:28 + + +waiting on router queue for slot.... +16:14:28 Sending to : +16:14:28 ============================================================================ +16:14:28 Sending to : +16:14:28 ============================================================================ +16:14:28 ============================================================================ +16:14:28 Slot Id : <272> +16:14:28 Transaction Type : RESPONSE +16:14:28 Received From : +16:14:28 ============================================================================ +16:14:28 FNo. Len. Field Value +16:14:28 ============================================================================ +16:14:28 [ 1] [ 4] [0210] +16:14:28 [ 2] [ 16] [6213544002162383] +16:14:28 [ 3] [ 6] [302000] +16:14:28 [ 4] [ 12] [000000000000] +16:14:28 [ 7] [ 10] [0320161217] +16:14:28 [ 11] [ 6] [951296] +16:14:28 [ 12] [ 6] [161217] +16:14:28 [ 13] [ 4] [0320] +16:14:28 [ 15] [ 4] [0320] +16:14:28 [ 18] [ 4] [6011] +16:14:28 [ 19] [ 3] [418] +16:14:28 [ 32] [ 6] [668899] +16:14:28 [ 35] [ 32] [6213544002162383=491212016238594] +16:14:28 [ 37] [ 12] [507901443616] +16:14:28 [ 38] [ 6] [384401] +16:14:28 [ 39] [ 2] [00] +16:14:28 [ 41] [ 8] [03414001] +16:14:28 [ 49] [ 3] [418] +16:14:28 [ 54] [ 40] [2001418C0000138467002002418C000013846700] +16:14:28 ============================================================================ +16:14:28 Sending to : +16:14:28 ============================================================================ +16:14:28 + + +waiting on router queue for slot.... +16:14:28 ============================================================================ +16:14:28 Slot Id : <282> +16:14:28 Transaction Type : REQUEST +16:14:28 Received From : +16:14:28 ============================================================================ +16:14:28 FNo. Len. Field Value +16:14:28 ============================================================================ +16:14:28 [ 1] [ 4] [0200] +16:14:28 [ 2] [ 16] [6213545000113120] +16:14:28 [ 3] [ 6] [010000] +16:14:28 [ 4] [ 12] [000010000000] +16:14:28 [ 7] [ 10] [0320091335] +16:14:28 [ 11] [ 6] [270303] +16:14:28 [ 12] [ 6] [161335] +16:14:28 [ 13] [ 4] [0320] +16:14:28 [ 14] [ 4] [4912] +16:14:28 [ 15] [ 4] [0320] +16:14:28 [ 18] [ 4] [6011] +16:14:28 [ 19] [ 3] [418] +16:14:28 [ 22] [ 3] [021] +16:14:28 [ 25] [ 2] [01] +16:14:28 [ 28] [ 9] [D00002000] +16:14:28 [ 32] [ 6] [180893] +16:14:28 [ 35] [ 32] [6213545000113120=491212011312309] +16:14:28 [ 37] [ 12] [507909270303] +16:14:28 [ 41] [ 8] [0301LPBX] +16:14:28 [ 42] [ 15] [999999 ] +16:14:28 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:14:28 [ 49] [ 3] [418] +16:14:28 [ 52] [ 16] [3C5D296411EA7857] +16:14:28 ============================================================================ +16:14:28 + + +waiting on router queue for slot.... +16:14:28 Sending to : +16:14:28 ============================================================================ +16:14:28 ============================================================================ +16:14:28 Slot Id : <282> +16:14:28 Transaction Type : REQUEST +16:14:28 Received From : +16:14:28 ============================================================================ +16:14:28 FNo. Len. Field Value +16:14:28 ============================================================================ +16:14:28 [ 1] [ 4] [0200] +16:14:28 [ 2] [ 16] [6213545000113120] +16:14:28 [ 3] [ 6] [010000] +16:14:28 [ 4] [ 12] [000010000000] +16:14:28 [ 7] [ 10] [0320091335] +16:14:28 [ 11] [ 6] [270303] +16:14:28 [ 12] [ 6] [161335] +16:14:28 [ 13] [ 4] [0320] +16:14:28 [ 14] [ 4] [4912] +16:14:28 [ 15] [ 4] [0320] +16:14:28 [ 18] [ 4] [6011] +16:14:28 [ 19] [ 3] [418] +16:14:28 [ 22] [ 3] [021] +16:14:28 [ 25] [ 2] [01] +16:14:28 [ 28] [ 9] [D00002000] +16:14:28 [ 32] [ 6] [180893] +16:14:28 [ 35] [ 32] [6213545000113120=491212011312309] +16:14:28 [ 37] [ 12] [507909270303] +16:14:28 [ 41] [ 8] [0301LPBX] +16:14:28 [ 42] [ 15] [999999 ] +16:14:28 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:14:28 [ 49] [ 3] [418] +16:14:28 [ 52] [ 16] [7ACABAEB5161204C] +16:14:28 ============================================================================ +16:14:28 + + +waiting on router queue for slot.... +16:14:28 Sending to : <0> +16:14:28 ============================================================================ +16:14:29 ============================================================================ +16:14:29 Slot Id : <282> +16:14:29 Transaction Type : RESPONSE +16:14:29 Received From : +16:14:29 ============================================================================ +16:14:29 FNo. Len. Field Value +16:14:29 ============================================================================ +16:14:29 [ 1] [ 4] [0210] +16:14:29 [ 2] [ 16] [6213545000113120] +16:14:29 [ 3] [ 6] [010000] +16:14:29 [ 4] [ 12] [000010000000] +16:14:29 [ 7] [ 10] [0320091335] +16:14:29 [ 11] [ 6] [270303] +16:14:29 [ 12] [ 6] [161335] +16:14:29 [ 13] [ 4] [0320] +16:14:29 [ 15] [ 4] [0320] +16:14:29 [ 18] [ 4] [6011] +16:14:29 [ 19] [ 3] [418] +16:14:29 [ 32] [ 6] [180893] +16:14:29 [ 35] [ 32] [6213545000113120=491212011312309] +16:14:29 [ 37] [ 12] [507909270303] +16:14:29 [ 38] [ 6] [897866] +16:14:29 [ 39] [ 2] [00] +16:14:29 [ 41] [ 8] [0301LPBX] +16:14:29 [ 49] [ 3] [418] +16:14:29 [ 54] [ 40] [0001418C0000170116220002418C000017011622] +16:14:29 ============================================================================ +16:14:29 Sending to : +16:14:29 ============================================================================ +16:14:29 + + +waiting on router queue for slot.... +16:14:29 ============================================================================ +16:14:29 Slot Id : <272> +16:14:29 Transaction Type : RESPONSE +16:14:29 Received From : +16:14:29 ============================================================================ +16:14:29 FNo. Len. Field Value +16:14:29 ============================================================================ +16:14:29 [ 1] [ 4] [0210] +16:14:29 [ 2] [ 16] [6213544002162383] +16:14:29 [ 3] [ 6] [302000] +16:14:29 [ 4] [ 12] [000000000000] +16:14:29 [ 7] [ 10] [0320161217] +16:14:29 [ 11] [ 6] [951296] +16:14:29 [ 12] [ 6] [161217] +16:14:29 [ 13] [ 4] [0320] +16:14:29 [ 15] [ 4] [0320] +16:14:29 [ 18] [ 4] [6011] +16:14:29 [ 19] [ 3] [418] +16:14:29 [ 32] [ 6] [668899] +16:14:29 [ 35] [ 32] [6213544002162383=491212016238594] +16:14:29 [ 37] [ 12] [507901443616] +16:14:29 [ 38] [ 6] [384401] +16:14:29 [ 39] [ 2] [00] +16:14:29 [ 41] [ 8] [03414001] +16:14:29 [ 49] [ 3] [418] +16:14:29 [ 54] [ 40] [2001418C0000138467002002418C000013846700] +16:14:29 ============================================================================ +16:14:29 Calculate Source COMM Id = 4 +16:14:29 ============================================================================ +16:14:29 + + +waiting on router queue for slot.... +16:14:31 ============================================================================ +16:14:31 Slot Id : <282> +16:14:31 Transaction Type : RESPONSE +16:14:31 Received From : +16:14:31 ============================================================================ +16:14:31 FNo. Len. Field Value +16:14:31 ============================================================================ +16:14:31 [ 1] [ 4] [0210] +16:14:31 [ 2] [ 16] [6213545000113120] +16:14:31 [ 3] [ 6] [010000] +16:14:31 [ 4] [ 12] [000010000000] +16:14:31 [ 7] [ 10] [0320091335] +16:14:31 [ 11] [ 6] [270303] +16:14:31 [ 12] [ 6] [161335] +16:14:31 [ 13] [ 4] [0320] +16:14:31 [ 15] [ 4] [0320] +16:14:31 [ 18] [ 4] [6011] +16:14:31 [ 19] [ 3] [418] +16:14:31 [ 32] [ 6] [180893] +16:14:31 [ 35] [ 32] [6213545000113120=491212011312309] +16:14:31 [ 37] [ 12] [507909270303] +16:14:31 [ 38] [ 6] [897866] +16:14:31 [ 39] [ 2] [00] +16:14:31 [ 41] [ 8] [0301LPBX] +16:14:31 [ 49] [ 3] [418] +16:14:31 [ 54] [ 40] [0001418C0000170116220002418C000017011622] +16:14:31 ============================================================================ +16:14:31 Calculate Source COMM Id = 2 +16:14:31 ============================================================================ +16:14:31 + + +waiting on router queue for slot.... +16:14:37 ============================================================================ +16:14:37 Slot Id : <266> +16:14:37 Transaction Type : REQUEST +16:14:37 Received From : +16:14:37 ============================================================================ +16:14:37 FNo. Len. Field Value +16:14:37 ============================================================================ +16:14:37 [ 1] [ 4] [0800] +16:14:37 [ 7] [ 10] [0320091432] +16:14:37 [ 11] [ 6] [047200] +16:14:37 [ 37] [ 12] [507916047200] +16:14:37 [ 70] [ 3] [001] +16:14:37 ============================================================================ +16:14:37 + + +waiting on router queue for slot.... +16:14:37 Sending to : +16:14:37 ============================================================================ +16:14:37 ============================================================================ +16:14:37 Slot Id : <266> +16:14:37 Transaction Type : RESPONSE +16:14:37 Received From : +16:14:37 ============================================================================ +16:14:37 FNo. Len. Field Value +16:14:37 ============================================================================ +16:14:37 [ 1] [ 4] [0810] +16:14:37 [ 7] [ 10] [0320091432] +16:14:37 [ 11] [ 6] [047200] +16:14:37 [ 37] [ 12] [507916047200] +16:14:37 [ 39] [ 2] [00] +16:14:37 [ 70] [ 3] [001] +16:14:37 ============================================================================ +16:14:37 Calculate Source COMM Id = 0 +16:14:37 ============================================================================ +16:14:37 + + +waiting on router queue for slot.... +16:14:45 ============================================================================ +16:14:45 Slot Id : <276> +16:14:45 Transaction Type : REQUEST +16:14:45 Received From : +16:14:45 ============================================================================ +16:14:45 FNo. Len. Field Value +16:14:45 ============================================================================ +16:14:45 [ 1] [ 4] [0800] +16:14:45 [ 7] [ 10] [0320091351] +16:14:45 [ 11] [ 6] [157195] +16:14:45 [ 70] [ 3] [301] +16:14:45 ============================================================================ +16:14:45 + + +waiting on router queue for slot.... +16:14:45 Sending to : +16:14:45 ============================================================================ +16:14:45 ============================================================================ +16:14:45 Slot Id : <276> +16:14:45 Transaction Type : RESPONSE +16:14:45 Received From : +16:14:45 ============================================================================ +16:14:45 FNo. Len. Field Value +16:14:45 ============================================================================ +16:14:45 [ 1] [ 4] [0810] +16:14:45 [ 7] [ 10] [0320091351] +16:14:45 [ 11] [ 6] [157195] +16:14:45 [ 39] [ 2] [00] +16:14:45 [ 70] [ 3] [301] +16:14:45 ============================================================================ +16:14:45 Calculate Source COMM Id = 2 +16:14:45 ============================================================================ +16:14:45 + + +waiting on router queue for slot.... +16:14:54 ============================================================================ +16:14:54 Slot Id : <241> +16:14:54 Transaction Type : REQUEST +16:14:54 Received From : +16:14:54 ============================================================================ +16:14:54 FNo. Len. Field Value +16:14:54 ============================================================================ +16:14:54 [ 1] [ 4] [0800] +16:14:54 [ 7] [ 10] [0320232642] +16:14:54 [ 11] [ 6] [162642] +16:14:54 [ 37] [ 12] [57916162642] +16:14:54 [ 70] [ 3] [301] +16:14:54 ============================================================================ +16:14:54 + + +waiting on router queue for slot.... +16:14:54 Sending to : +16:14:54 ============================================================================ +16:14:54 ============================================================================ +16:14:54 Slot Id : <241> +16:14:54 Transaction Type : RESPONSE +16:14:54 Received From : +16:14:54 ============================================================================ +16:14:54 FNo. Len. Field Value +16:14:54 ============================================================================ +16:14:54 [ 1] [ 4] [0810] +16:14:54 [ 7] [ 10] [0320232642] +16:14:54 [ 11] [ 6] [162642] +16:14:54 [ 37] [ 12] [579161626420] +16:14:54 [ 39] [ 2] [00] +16:14:54 [ 70] [ 3] [810] +16:14:54 ============================================================================ +16:14:54 Calculate Source COMM Id = 6 +16:14:54 ============================================================================ +16:14:54 + + +waiting on router queue for slot.... +16:14:55 ============================================================================ +16:14:55 Slot Id : <280> +16:14:55 Transaction Type : REQUEST +16:14:55 Received From : +16:14:55 ============================================================================ +16:14:55 FNo. Len. Field Value +16:14:55 ============================================================================ +16:14:55 [ 1] [ 4] [0800] +16:14:55 [ 7] [ 10] [0320092242] +16:14:55 [ 11] [ 6] [050315] +16:14:55 [ 37] [ 12] [57916050315] +16:14:55 [ 70] [ 3] [301] +16:14:55 ============================================================================ +16:14:55 + + +waiting on router queue for slot.... +16:14:55 Sending to : +16:14:55 ============================================================================ +16:14:55 ============================================================================ +16:14:55 Slot Id : <280> +16:14:55 Transaction Type : RESPONSE +16:14:55 Received From : +16:14:55 ============================================================================ +16:14:55 FNo. Len. Field Value +16:14:55 ============================================================================ +16:14:55 [ 1] [ 4] [0810] +16:14:55 [ 7] [ 10] [0320092242] +16:14:55 [ 11] [ 6] [050315] +16:14:55 [ 37] [ 12] [579160503150] +16:14:55 [ 39] [ 2] [00] +16:14:55 [ 70] [ 3] [810] +16:14:55 ============================================================================ +16:14:55 Calculate Source COMM Id = 1 +16:14:55 ============================================================================ +16:14:55 + + +waiting on router queue for slot.... +16:15:00 ============================================================================ +16:15:00 Slot Id : <258> +16:15:00 Transaction Type : REQUEST +16:15:00 Received From : +16:15:00 ============================================================================ +16:15:00 FNo. Len. Field Value +16:15:00 ============================================================================ +16:15:00 [ 1] [ 4] [0800] +16:15:00 [ 7] [ 10] [0320091407] +16:15:00 [ 11] [ 6] [157196] +16:15:00 [ 70] [ 3] [301] +16:15:00 ============================================================================ +16:15:00 + + +waiting on router queue for slot.... +16:15:00 Sending to : +16:15:00 ============================================================================ +16:15:00 ============================================================================ +16:15:00 Slot Id : <258> +16:15:00 Transaction Type : RESPONSE +16:15:00 Received From : +16:15:00 ============================================================================ +16:15:00 FNo. Len. Field Value +16:15:00 ============================================================================ +16:15:00 [ 1] [ 4] [0810] +16:15:00 [ 7] [ 10] [0320091407] +16:15:00 [ 11] [ 6] [157196] +16:15:00 [ 39] [ 2] [00] +16:15:00 [ 70] [ 3] [301] +16:15:00 ============================================================================ +16:15:00 Calculate Source COMM Id = 2 +16:15:00 ============================================================================ +16:15:00 + + +waiting on router queue for slot.... +16:15:01 ============================================================================ +16:15:01 Slot Id : <224> +16:15:01 Transaction Type : REQUEST +16:15:01 Received From : +16:15:01 ============================================================================ +16:15:01 FNo. Len. Field Value +16:15:01 ============================================================================ +16:15:01 [ 1] [ 4] [0200] +16:15:01 [ 2] [ 16] [6213545000673818] +16:15:01 [ 3] [ 6] [010000] +16:15:01 [ 4] [ 12] [000100000000] +16:15:01 [ 7] [ 10] [0320161251] +16:15:01 [ 11] [ 6] [951317] +16:15:01 [ 12] [ 6] [161251] +16:15:01 [ 13] [ 4] [0320] +16:15:01 [ 15] [ 4] [0320] +16:15:01 [ 18] [ 4] [6011] +16:15:01 [ 19] [ 3] [418] +16:15:01 [ 22] [ 3] [021] +16:15:01 [ 25] [ 2] [01] +16:15:01 [ 28] [ 9] [D00002000] +16:15:01 [ 32] [ 6] [668899] +16:15:01 [ 35] [ 32] [6213545000673818=491212017381809] +16:15:01 [ 37] [ 12] [507900146791] +16:15:01 [ 41] [ 8] [03020005] +16:15:01 [ 42] [ 15] [APT ] +16:15:01 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +16:15:01 [ 49] [ 3] [418] +16:15:01 [ 52] [ 16] [B10C7CC1F202273A] +16:15:01 ============================================================================ +16:15:01 + + +waiting on router queue for slot.... +16:15:01 Sending to : +16:15:01 ============================================================================ +16:15:01 Sending to : +16:15:01 ============================================================================ +16:15:02 ============================================================================ +16:15:02 Slot Id : <224> +16:15:02 Transaction Type : REQUEST +16:15:02 Received From : +16:15:02 ============================================================================ +16:15:02 FNo. Len. Field Value +16:15:02 ============================================================================ +16:15:02 [ 1] [ 4] [0200] +16:15:02 [ 2] [ 16] [6213545000673818] +16:15:02 [ 3] [ 6] [010000] +16:15:02 [ 4] [ 12] [000100000000] +16:15:02 [ 7] [ 10] [0320161251] +16:15:02 [ 11] [ 6] [951317] +16:15:02 [ 12] [ 6] [161251] +16:15:02 [ 13] [ 4] [0320] +16:15:02 [ 15] [ 4] [0320] +16:15:02 [ 18] [ 4] [6011] +16:15:02 [ 19] [ 3] [418] +16:15:02 [ 22] [ 3] [021] +16:15:02 [ 25] [ 2] [01] +16:15:02 [ 28] [ 9] [D00002000] +16:15:02 [ 32] [ 6] [668899] +16:15:02 [ 35] [ 32] [6213545000673818=491212017381809] +16:15:02 [ 37] [ 12] [507900146791] +16:15:02 [ 41] [ 8] [03020005] +16:15:02 [ 42] [ 15] [APT ] +16:15:02 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +16:15:02 [ 49] [ 3] [418] +16:15:02 [ 52] [ 16] [B10C7CC1F202273A] +16:15:02 ============================================================================ +16:15:02 + + +waiting on router queue for slot.... +16:15:02 Sending to : +16:15:02 ============================================================================ +16:15:02 ============================================================================ +16:15:02 Slot Id : <224> +16:15:02 Transaction Type : REQUEST +16:15:02 Received From : +16:15:02 ============================================================================ +16:15:02 FNo. Len. Field Value +16:15:02 ============================================================================ +16:15:02 [ 1] [ 4] [0200] +16:15:02 [ 2] [ 16] [6213545000673818] +16:15:02 [ 3] [ 6] [010000] +16:15:02 [ 4] [ 12] [000100000000] +16:15:02 [ 7] [ 10] [0320161251] +16:15:02 [ 11] [ 6] [951317] +16:15:02 [ 12] [ 6] [161251] +16:15:02 [ 13] [ 4] [0320] +16:15:02 [ 15] [ 4] [0320] +16:15:02 [ 18] [ 4] [6011] +16:15:02 [ 19] [ 3] [418] +16:15:02 [ 22] [ 3] [021] +16:15:02 [ 25] [ 2] [01] +16:15:02 [ 28] [ 9] [D00002000] +16:15:02 [ 32] [ 6] [668899] +16:15:02 [ 35] [ 32] [6213545000673818=491212017381809] +16:15:02 [ 37] [ 12] [507900146791] +16:15:02 [ 41] [ 8] [03020005] +16:15:02 [ 42] [ 15] [APT ] +16:15:02 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +16:15:02 [ 49] [ 3] [418] +16:15:02 [ 52] [ 16] [61CEEDD158B5E4CD] +16:15:02 ============================================================================ +16:15:02 + + +waiting on router queue for slot.... +16:15:02 Sending to : <0> +16:15:02 ============================================================================ +16:15:02 ============================================================================ +16:15:02 Slot Id : <224> +16:15:02 Transaction Type : RESPONSE +16:15:02 Received From : +16:15:02 ============================================================================ +16:15:02 FNo. Len. Field Value +16:15:02 ============================================================================ +16:15:02 [ 1] [ 4] [0210] +16:15:02 [ 2] [ 16] [6213545000673818] +16:15:02 [ 3] [ 6] [010000] +16:15:02 [ 4] [ 12] [000100000000] +16:15:02 [ 7] [ 10] [0320161251] +16:15:02 [ 11] [ 6] [951317] +16:15:02 [ 12] [ 6] [161251] +16:15:02 [ 13] [ 4] [0320] +16:15:02 [ 15] [ 4] [0320] +16:15:02 [ 18] [ 4] [6011] +16:15:02 [ 19] [ 3] [418] +16:15:02 [ 32] [ 6] [668899] +16:15:02 [ 35] [ 32] [6213545000673818=491212017381809] +16:15:02 [ 37] [ 12] [507900146791] +16:15:02 [ 38] [ 6] [291887] +16:15:02 [ 39] [ 2] [00] +16:15:02 [ 41] [ 8] [03020005] +16:15:02 [ 49] [ 3] [418] +16:15:02 [ 54] [ 40] [0001418C0012290952380002418C001229095238] +16:15:02 ============================================================================ +16:15:02 Sending to : +16:15:02 ============================================================================ +16:15:02 + + +waiting on router queue for slot.... +16:15:04 ============================================================================ +16:15:04 Slot Id : <224> +16:15:04 Transaction Type : RESPONSE +16:15:04 Received From : +16:15:04 ============================================================================ +16:15:04 FNo. Len. Field Value +16:15:04 ============================================================================ +16:15:04 [ 1] [ 4] [0210] +16:15:04 [ 2] [ 16] [6213545000673818] +16:15:04 [ 3] [ 6] [010000] +16:15:04 [ 4] [ 12] [000100000000] +16:15:04 [ 7] [ 10] [0320161251] +16:15:04 [ 11] [ 6] [951317] +16:15:04 [ 12] [ 6] [161251] +16:15:04 [ 13] [ 4] [0320] +16:15:04 [ 15] [ 4] [0320] +16:15:04 [ 18] [ 4] [6011] +16:15:04 [ 19] [ 3] [418] +16:15:04 [ 32] [ 6] [668899] +16:15:04 [ 35] [ 32] [6213545000673818=491212017381809] +16:15:04 [ 37] [ 12] [507900146791] +16:15:04 [ 38] [ 6] [291887] +16:15:04 [ 39] [ 2] [00] +16:15:04 [ 41] [ 8] [03020005] +16:15:04 [ 49] [ 3] [418] +16:15:04 [ 54] [ 40] [0001418C0012290952380002418C001229095238] +16:15:04 ============================================================================ +16:15:04 Calculate Source COMM Id = 4 +16:15:04 ============================================================================ +16:15:04 + + +waiting on router queue for slot.... +16:15:04 ============================================================================ +16:15:04 Slot Id : <284> +16:15:04 Transaction Type : REQUEST +16:15:04 Received From : +16:15:04 ============================================================================ +16:15:04 FNo. Len. Field Value +16:15:04 ============================================================================ +16:15:04 [ 1] [ 4] [0200] +16:15:04 [ 2] [ 16] [6688990101830501] +16:15:04 [ 3] [ 6] [011000] +16:15:04 [ 4] [ 12] [000100000000] +16:15:04 [ 7] [ 10] [0320161459] +16:15:04 [ 11] [ 6] [795591] +16:15:04 [ 12] [ 6] [161459] +16:15:04 [ 13] [ 4] [0320] +16:15:04 [ 15] [ 4] [0320] +16:15:04 [ 18] [ 4] [6011] +16:15:04 [ 22] [ 3] [900] +16:15:04 [ 25] [ 2] [02] +16:15:04 [ 28] [ 9] [D00002000] +16:15:04 [ 32] [ 6] [621354] +16:15:04 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:15:04 [ 37] [ 12] [507904635830] +16:15:04 [ 41] [ 8] [17000800] +16:15:04 [ 42] [ 15] [NATIVE ] +16:15:04 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:15:04 [ 49] [ 3] [418] +16:15:04 [ 52] [ 16] [54904784A167D8BD] +16:15:04 ============================================================================ +16:15:04 + + +waiting on router queue for slot.... +16:15:04 Sending to : +16:15:04 ============================================================================ +16:15:04 Sending to : +16:15:04 ============================================================================ +16:15:04 ============================================================================ +16:15:04 Slot Id : <284> +16:15:04 Transaction Type : REQUEST +16:15:04 Received From : +16:15:04 ============================================================================ +16:15:04 FNo. Len. Field Value +16:15:04 ============================================================================ +16:15:04 [ 1] [ 4] [0200] +16:15:04 [ 2] [ 16] [6688990101830501] +16:15:04 [ 3] [ 6] [011000] +16:15:04 [ 4] [ 12] [000100000000] +16:15:04 [ 7] [ 10] [0320161459] +16:15:04 [ 11] [ 6] [795591] +16:15:04 [ 12] [ 6] [161459] +16:15:04 [ 13] [ 4] [0320] +16:15:04 [ 15] [ 4] [0320] +16:15:04 [ 18] [ 4] [6011] +16:15:04 [ 22] [ 3] [900] +16:15:04 [ 25] [ 2] [02] +16:15:04 [ 28] [ 9] [D00002000] +16:15:04 [ 32] [ 6] [621354] +16:15:04 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:15:04 [ 37] [ 12] [507904635830] +16:15:04 [ 41] [ 8] [17000800] +16:15:04 [ 42] [ 15] [NATIVE ] +16:15:04 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:15:04 [ 49] [ 3] [418] +16:15:04 [ 52] [ 16] [54904784A167D8BD] +16:15:04 ============================================================================ +16:15:04 + + +waiting on router queue for slot.... +16:15:04 Sending to : +16:15:04 ============================================================================ +16:15:05 ============================================================================ +16:15:05 Slot Id : <284> +16:15:05 Transaction Type : REQUEST +16:15:05 Received From : +16:15:05 ============================================================================ +16:15:05 FNo. Len. Field Value +16:15:05 ============================================================================ +16:15:05 [ 1] [ 4] [0200] +16:15:05 [ 2] [ 16] [6688990101830501] +16:15:05 [ 3] [ 6] [011000] +16:15:05 [ 4] [ 12] [000100000000] +16:15:05 [ 7] [ 10] [0320161459] +16:15:05 [ 11] [ 6] [795591] +16:15:05 [ 12] [ 6] [161459] +16:15:05 [ 13] [ 4] [0320] +16:15:05 [ 15] [ 4] [0320] +16:15:05 [ 18] [ 4] [6011] +16:15:05 [ 22] [ 3] [900] +16:15:05 [ 25] [ 2] [02] +16:15:05 [ 28] [ 9] [D00002000] +16:15:05 [ 32] [ 6] [621354] +16:15:05 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:15:05 [ 37] [ 12] [507904635830] +16:15:05 [ 41] [ 8] [17000800] +16:15:05 [ 42] [ 15] [NATIVE ] +16:15:05 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:15:05 [ 49] [ 3] [418] +16:15:05 [ 52] [ 16] [7327C78119A62D0C] +16:15:05 ============================================================================ +16:15:05 + + +waiting on router queue for slot.... +16:15:05 Sending to : <4> +16:15:05 ============================================================================ +16:15:05 ============================================================================ +16:15:05 Slot Id : <219> +16:15:05 Transaction Type : REQUEST +16:15:05 Received From : +16:15:05 ============================================================================ +16:15:05 FNo. Len. Field Value +16:15:05 ============================================================================ +16:15:05 [ 1] [ 4] [0800] +16:15:05 [ 2] [ 5] [02531] +16:15:05 [ 3] [ 6] [579168] +16:15:05 [ 7] [ 10] [0320091505] +16:15:05 [ 11] [ 6] [807355] +16:15:05 [ 15] [ 10] [0320091505] +16:15:05 [ 37] [ 11] [57916807355] +16:15:05 [ 70] [ 3] [001] +16:15:05 ============================================================================ +16:15:05 + + +waiting on router queue for slot.... +16:15:05 ============================================================================ +16:15:05 Slot Id : <219> +16:15:05 Transaction Type : RESPONSE +16:15:05 Received From : +16:15:05 ============================================================================ +16:15:05 FNo. Len. Field Value +16:15:05 ============================================================================ +16:15:05 [ 1] [ 4] [0810] +16:15:05 [ 7] [ 10] [0320091505] +16:15:05 [ 11] [ 6] [807355] +16:15:05 [ 15] [ 4] [0320] +16:15:05 [ 37] [ 12] [57916807355] +16:15:05 [ 39] [ 2] [00] +16:15:05 [ 70] [ 3] [001] +16:15:05 ============================================================================ +16:15:05 Sending to : +16:15:05 ============================================================================ +16:15:05 + + +waiting on router queue for slot.... +16:15:06 ============================================================================ +16:15:06 Slot Id : <284> +16:15:06 Transaction Type : RESPONSE +16:15:06 Received From : +16:15:06 ============================================================================ +16:15:06 FNo. Len. Field Value +16:15:06 ============================================================================ +16:15:06 [ 1] [ 4] [0210] +16:15:06 [ 2] [ 16] [6688990101830501] +16:15:06 [ 3] [ 6] [011000] +16:15:06 [ 4] [ 12] [000100000000] +16:15:06 [ 11] [ 6] [795591] +16:15:06 [ 12] [ 6] [161459] +16:15:06 [ 15] [ 4] [0320] +16:15:06 [ 18] [ 4] [6011] +16:15:06 [ 32] [ 6] [621354] +16:15:06 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:15:06 [ 37] [ 12] [507904635830] +16:15:06 [ 38] [ 6] [982159] +16:15:06 [ 39] [ 2] [00] +16:15:06 [ 41] [ 8] [17000800] +16:15:06 [ 49] [ 3] [418] +16:15:06 [ 54] [ 20] [1002418C000295027482] +16:15:06 ============================================================================ +16:15:06 Sending to : +16:15:06 ============================================================================ +16:15:06 + + +waiting on router queue for slot.... +16:15:07 ============================================================================ +16:15:07 Slot Id : <284> +16:15:07 Transaction Type : RESPONSE +16:15:07 Received From : +16:15:07 ============================================================================ +16:15:07 FNo. Len. Field Value +16:15:07 ============================================================================ +16:15:07 [ 1] [ 4] [0210] +16:15:07 [ 2] [ 16] [6688990101830501] +16:15:07 [ 3] [ 6] [011000] +16:15:07 [ 4] [ 12] [000100000000] +16:15:07 [ 11] [ 6] [795591] +16:15:07 [ 12] [ 6] [161459] +16:15:07 [ 15] [ 4] [0320] +16:15:07 [ 18] [ 4] [6011] +16:15:07 [ 32] [ 6] [621354] +16:15:07 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:15:07 [ 37] [ 12] [507904635830] +16:15:07 [ 38] [ 6] [982159] +16:15:07 [ 39] [ 2] [00] +16:15:07 [ 41] [ 8] [17000800] +16:15:07 [ 49] [ 3] [418] +16:15:07 [ 54] [ 20] [1002418C000295027482] +16:15:07 ============================================================================ +16:15:07 Calculate Source COMM Id = 0 +16:15:07 ============================================================================ +16:15:07 + + +waiting on router queue for slot.... +16:15:08 ============================================================================ +16:15:08 Slot Id : <287> +16:15:08 Transaction Type : REQUEST +16:15:08 Received From : +16:15:08 ============================================================================ +16:15:08 FNo. Len. Field Value +16:15:08 ============================================================================ +16:15:08 [ 1] [ 4] [0200] +16:15:08 [ 2] [ 16] [6213545000113120] +16:15:08 [ 3] [ 6] [010000] +16:15:08 [ 4] [ 12] [000010000000] +16:15:08 [ 7] [ 10] [0320091413] +16:15:08 [ 11] [ 6] [270308] +16:15:08 [ 12] [ 6] [161413] +16:15:08 [ 13] [ 4] [0320] +16:15:08 [ 14] [ 4] [4912] +16:15:08 [ 15] [ 4] [0320] +16:15:08 [ 18] [ 4] [6011] +16:15:08 [ 19] [ 3] [418] +16:15:08 [ 22] [ 3] [021] +16:15:08 [ 25] [ 2] [01] +16:15:08 [ 28] [ 9] [D00002000] +16:15:08 [ 32] [ 6] [180893] +16:15:08 [ 35] [ 32] [6213545000113120=491212011312309] +16:15:08 [ 37] [ 12] [507909270308] +16:15:08 [ 41] [ 8] [0301LPBX] +16:15:08 [ 42] [ 15] [999999 ] +16:15:08 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:15:08 [ 49] [ 3] [418] +16:15:08 [ 52] [ 16] [3C5D296411EA7857] +16:15:08 ============================================================================ +16:15:08 + + +waiting on router queue for slot.... +16:15:08 Sending to : +16:15:08 ============================================================================ +16:15:08 Sending to : +16:15:08 ============================================================================ +16:15:08 ============================================================================ +16:15:08 Slot Id : <287> +16:15:08 Transaction Type : REQUEST +16:15:08 Received From : +16:15:08 ============================================================================ +16:15:08 FNo. Len. Field Value +16:15:08 ============================================================================ +16:15:08 [ 1] [ 4] [0200] +16:15:08 [ 2] [ 16] [6213545000113120] +16:15:08 [ 3] [ 6] [010000] +16:15:08 [ 4] [ 12] [000010000000] +16:15:08 [ 7] [ 10] [0320091413] +16:15:08 [ 11] [ 6] [270308] +16:15:08 [ 12] [ 6] [161413] +16:15:08 [ 13] [ 4] [0320] +16:15:08 [ 14] [ 4] [4912] +16:15:08 [ 15] [ 4] [0320] +16:15:08 [ 18] [ 4] [6011] +16:15:08 [ 19] [ 3] [418] +16:15:08 [ 22] [ 3] [021] +16:15:08 [ 25] [ 2] [01] +16:15:08 [ 28] [ 9] [D00002000] +16:15:08 [ 32] [ 6] [180893] +16:15:08 [ 35] [ 32] [6213545000113120=491212011312309] +16:15:08 [ 37] [ 12] [507909270308] +16:15:08 [ 41] [ 8] [0301LPBX] +16:15:08 [ 42] [ 15] [999999 ] +16:15:08 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:15:08 [ 49] [ 3] [418] +16:15:08 [ 52] [ 16] [3C5D296411EA7857] +16:15:08 ============================================================================ +16:15:08 + + +waiting on router queue for slot.... +16:15:08 Sending to : +16:15:08 ============================================================================ +16:15:08 ============================================================================ +16:15:08 Slot Id : <287> +16:15:08 Transaction Type : REQUEST +16:15:08 Received From : +16:15:08 ============================================================================ +16:15:08 FNo. Len. Field Value +16:15:08 ============================================================================ +16:15:08 [ 1] [ 4] [0200] +16:15:08 [ 2] [ 16] [6213545000113120] +16:15:08 [ 3] [ 6] [010000] +16:15:08 [ 4] [ 12] [000010000000] +16:15:08 [ 7] [ 10] [0320091413] +16:15:08 [ 11] [ 6] [270308] +16:15:08 [ 12] [ 6] [161413] +16:15:08 [ 13] [ 4] [0320] +16:15:08 [ 14] [ 4] [4912] +16:15:08 [ 15] [ 4] [0320] +16:15:08 [ 18] [ 4] [6011] +16:15:08 [ 19] [ 3] [418] +16:15:08 [ 22] [ 3] [021] +16:15:08 [ 25] [ 2] [01] +16:15:08 [ 28] [ 9] [D00002000] +16:15:08 [ 32] [ 6] [180893] +16:15:08 [ 35] [ 32] [6213545000113120=491212011312309] +16:15:08 [ 37] [ 12] [507909270308] +16:15:08 [ 41] [ 8] [0301LPBX] +16:15:08 [ 42] [ 15] [999999 ] +16:15:08 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:15:08 [ 49] [ 3] [418] +16:15:08 [ 52] [ 16] [7ACABAEB5161204C] +16:15:08 ============================================================================ +16:15:08 + + +waiting on router queue for slot.... +16:15:08 Sending to : <0> +16:15:08 ============================================================================ +16:15:09 ============================================================================ +16:15:09 Slot Id : <287> +16:15:09 Transaction Type : RESPONSE +16:15:09 Received From : +16:15:09 ============================================================================ +16:15:09 FNo. Len. Field Value +16:15:09 ============================================================================ +16:15:09 [ 1] [ 4] [0210] +16:15:09 [ 2] [ 16] [6213545000113120] +16:15:09 [ 3] [ 6] [010000] +16:15:09 [ 4] [ 12] [000010000000] +16:15:09 [ 7] [ 10] [0320091413] +16:15:09 [ 11] [ 6] [270308] +16:15:09 [ 12] [ 6] [161413] +16:15:09 [ 13] [ 4] [0320] +16:15:09 [ 15] [ 4] [0320] +16:15:09 [ 18] [ 4] [6011] +16:15:09 [ 19] [ 3] [418] +16:15:09 [ 32] [ 6] [180893] +16:15:09 [ 35] [ 32] [6213545000113120=491212011312309] +16:15:09 [ 37] [ 12] [507909270308] +16:15:09 [ 38] [ 6] [690913] +16:15:09 [ 39] [ 2] [00] +16:15:09 [ 41] [ 8] [0301LPBX] +16:15:09 [ 49] [ 3] [418] +16:15:09 [ 54] [ 40] [0001418C0000068116220002418C000006811622] +16:15:09 ============================================================================ +16:15:09 Sending to : +16:15:09 ============================================================================ +16:15:09 + + +waiting on router queue for slot.... +16:15:09 ============================================================================ +16:15:09 Slot Id : <277> +16:15:09 Transaction Type : REQUEST +16:15:09 Received From : +16:15:09 ============================================================================ +16:15:09 FNo. Len. Field Value +16:15:09 ============================================================================ +16:15:09 [ 1] [ 4] [0200] +16:15:09 [ 2] [ 16] [6213544001263349] +16:15:09 [ 3] [ 6] [010000] +16:15:09 [ 4] [ 12] [000050000000] +16:15:09 [ 7] [ 10] [0320091415] +16:15:09 [ 11] [ 6] [270311] +16:15:09 [ 12] [ 6] [161415] +16:15:09 [ 13] [ 4] [0320] +16:15:09 [ 14] [ 4] [4912] +16:15:09 [ 15] [ 4] [0320] +16:15:09 [ 18] [ 4] [6011] +16:15:09 [ 19] [ 3] [418] +16:15:09 [ 22] [ 3] [021] +16:15:09 [ 25] [ 2] [01] +16:15:09 [ 28] [ 9] [D00002000] +16:15:09 [ 32] [ 6] [180893] +16:15:09 [ 35] [ 32] [6213544001263349=491212016334098] +16:15:09 [ 37] [ 12] [507909270311] +16:15:09 [ 41] [ 8] [0528LPBP] +16:15:09 [ 42] [ 15] [999999 ] +16:15:09 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:15:09 [ 49] [ 3] [418] +16:15:09 [ 52] [ 16] [B0F6D6E9E605B24F] +16:15:09 ============================================================================ +16:15:09 + + +waiting on router queue for slot.... +16:15:09 Sending to : +16:15:09 ============================================================================ +16:15:09 Sending to : +16:15:09 ============================================================================ +16:15:09 ============================================================================ +16:15:09 Slot Id : <277> +16:15:09 Transaction Type : REQUEST +16:15:09 Received From : +16:15:09 ============================================================================ +16:15:09 FNo. Len. Field Value +16:15:09 ============================================================================ +16:15:09 [ 1] [ 4] [0200] +16:15:09 [ 2] [ 16] [6213544001263349] +16:15:09 [ 3] [ 6] [010000] +16:15:09 [ 4] [ 12] [000050000000] +16:15:09 [ 7] [ 10] [0320091415] +16:15:09 [ 11] [ 6] [270311] +16:15:09 [ 12] [ 6] [161415] +16:15:09 [ 13] [ 4] [0320] +16:15:09 [ 14] [ 4] [4912] +16:15:09 [ 15] [ 4] [0320] +16:15:09 [ 18] [ 4] [6011] +16:15:09 [ 19] [ 3] [418] +16:15:09 [ 22] [ 3] [021] +16:15:09 [ 25] [ 2] [01] +16:15:09 [ 28] [ 9] [D00002000] +16:15:09 [ 32] [ 6] [180893] +16:15:09 [ 35] [ 32] [6213544001263349=491212016334098] +16:15:09 [ 37] [ 12] [507909270311] +16:15:09 [ 41] [ 8] [0528LPBP] +16:15:09 [ 42] [ 15] [999999 ] +16:15:09 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:15:09 [ 49] [ 3] [418] +16:15:09 [ 52] [ 16] [B0F6D6E9E605B24F] +16:15:09 ============================================================================ +16:15:09 + + +waiting on router queue for slot.... +16:15:09 Sending to : +16:15:09 ============================================================================ +16:15:09 ============================================================================ +16:15:09 Slot Id : <277> +16:15:09 Transaction Type : REQUEST +16:15:09 Received From : +16:15:09 ============================================================================ +16:15:09 FNo. Len. Field Value +16:15:09 ============================================================================ +16:15:09 [ 1] [ 4] [0200] +16:15:09 [ 2] [ 16] [6213544001263349] +16:15:09 [ 3] [ 6] [010000] +16:15:09 [ 4] [ 12] [000050000000] +16:15:09 [ 7] [ 10] [0320091415] +16:15:09 [ 11] [ 6] [270311] +16:15:09 [ 12] [ 6] [161415] +16:15:09 [ 13] [ 4] [0320] +16:15:09 [ 14] [ 4] [4912] +16:15:09 [ 15] [ 4] [0320] +16:15:09 [ 18] [ 4] [6011] +16:15:09 [ 19] [ 3] [418] +16:15:09 [ 22] [ 3] [021] +16:15:09 [ 25] [ 2] [01] +16:15:09 [ 28] [ 9] [D00002000] +16:15:09 [ 32] [ 6] [180893] +16:15:09 [ 35] [ 32] [6213544001263349=491212016334098] +16:15:09 [ 37] [ 12] [507909270311] +16:15:09 [ 41] [ 8] [0528LPBP] +16:15:09 [ 42] [ 15] [999999 ] +16:15:09 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:15:09 [ 49] [ 3] [418] +16:15:09 [ 52] [ 16] [0973DF458B017813] +16:15:09 ============================================================================ +16:15:09 + + +waiting on router queue for slot.... +16:15:09 Sending to : <0> +16:15:09 ============================================================================ +16:15:10 ============================================================================ +16:15:10 Slot Id : <287> +16:15:10 Transaction Type : RESPONSE +16:15:10 Received From : +16:15:10 ============================================================================ +16:15:10 FNo. Len. Field Value +16:15:10 ============================================================================ +16:15:10 [ 1] [ 4] [0210] +16:15:10 [ 2] [ 16] [6213545000113120] +16:15:10 [ 3] [ 6] [010000] +16:15:10 [ 4] [ 12] [000010000000] +16:15:10 [ 7] [ 10] [0320091413] +16:15:10 [ 11] [ 6] [270308] +16:15:10 [ 12] [ 6] [161413] +16:15:10 [ 13] [ 4] [0320] +16:15:10 [ 15] [ 4] [0320] +16:15:10 [ 18] [ 4] [6011] +16:15:10 [ 19] [ 3] [418] +16:15:10 [ 32] [ 6] [180893] +16:15:10 [ 35] [ 32] [6213545000113120=491212011312309] +16:15:10 [ 37] [ 12] [507909270308] +16:15:10 [ 38] [ 6] [690913] +16:15:10 [ 39] [ 2] [00] +16:15:10 [ 41] [ 8] [0301LPBX] +16:15:10 [ 49] [ 3] [418] +16:15:10 [ 54] [ 40] [0001418C0000068116220002418C000006811622] +16:15:10 ============================================================================ +16:15:10 Calculate Source COMM Id = 2 +16:15:10 ============================================================================ +16:15:10 + + +waiting on router queue for slot.... +16:15:11 ============================================================================ +16:15:11 Slot Id : <277> +16:15:11 Transaction Type : RESPONSE +16:15:11 Received From : +16:15:11 ============================================================================ +16:15:11 FNo. Len. Field Value +16:15:11 ============================================================================ +16:15:11 [ 1] [ 4] [0210] +16:15:11 [ 2] [ 16] [6213544001263349] +16:15:11 [ 3] [ 6] [010000] +16:15:11 [ 4] [ 12] [000050000000] +16:15:11 [ 7] [ 10] [0320091415] +16:15:11 [ 11] [ 6] [270311] +16:15:11 [ 12] [ 6] [161415] +16:15:11 [ 13] [ 4] [0320] +16:15:11 [ 15] [ 4] [0320] +16:15:11 [ 18] [ 4] [6011] +16:15:11 [ 19] [ 3] [418] +16:15:11 [ 32] [ 6] [180893] +16:15:11 [ 35] [ 32] [6213544001263349=491212016334098] +16:15:11 [ 37] [ 12] [507909270311] +16:15:11 [ 38] [ 6] [615007] +16:15:11 [ 39] [ 2] [00] +16:15:11 [ 41] [ 8] [0528LPBP] +16:15:11 [ 49] [ 3] [418] +16:15:11 [ 54] [ 40] [0001418C0000245350420002418C000024535042] +16:15:11 ============================================================================ +16:15:11 Sending to : +16:15:11 ============================================================================ +16:15:11 + + +waiting on router queue for slot.... +16:15:12 ============================================================================ +16:15:12 Slot Id : <277> +16:15:12 Transaction Type : RESPONSE +16:15:12 Received From : +16:15:12 ============================================================================ +16:15:12 FNo. Len. Field Value +16:15:12 ============================================================================ +16:15:12 [ 1] [ 4] [0210] +16:15:12 [ 2] [ 16] [6213544001263349] +16:15:12 [ 3] [ 6] [010000] +16:15:12 [ 4] [ 12] [000050000000] +16:15:12 [ 7] [ 10] [0320091415] +16:15:12 [ 11] [ 6] [270311] +16:15:12 [ 12] [ 6] [161415] +16:15:12 [ 13] [ 4] [0320] +16:15:12 [ 15] [ 4] [0320] +16:15:12 [ 18] [ 4] [6011] +16:15:12 [ 19] [ 3] [418] +16:15:12 [ 32] [ 6] [180893] +16:15:12 [ 35] [ 32] [6213544001263349=491212016334098] +16:15:12 [ 37] [ 12] [507909270311] +16:15:12 [ 38] [ 6] [615007] +16:15:12 [ 39] [ 2] [00] +16:15:12 [ 41] [ 8] [0528LPBP] +16:15:12 [ 49] [ 3] [418] +16:15:12 [ 54] [ 40] [0001418C0000245350420002418C000024535042] +16:15:12 ============================================================================ +16:15:12 Calculate Source COMM Id = 2 +16:15:12 ============================================================================ +16:15:12 + + +waiting on router queue for slot.... +16:15:16 ============================================================================ +16:15:16 Slot Id : <290> +16:15:16 Transaction Type : REQUEST +16:15:16 Received From : +16:15:16 ============================================================================ +16:15:16 FNo. Len. Field Value +16:15:16 ============================================================================ +16:15:16 [ 1] [ 4] [0200] +16:15:16 [ 2] [ 16] [6688990602440909] +16:15:16 [ 3] [ 6] [010000] +16:15:16 [ 4] [ 12] [000100000000] +16:15:16 [ 7] [ 10] [0320161511] +16:15:16 [ 11] [ 6] [795651] +16:15:16 [ 12] [ 6] [161511] +16:15:16 [ 13] [ 4] [0320] +16:15:16 [ 15] [ 4] [0320] +16:15:16 [ 18] [ 4] [6011] +16:15:16 [ 22] [ 3] [900] +16:15:16 [ 25] [ 2] [02] +16:15:16 [ 28] [ 9] [D00002000] +16:15:16 [ 32] [ 6] [621354] +16:15:16 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:15:16 [ 37] [ 12] [507903345194] +16:15:16 [ 41] [ 8] [13001400] +16:15:16 [ 42] [ 15] [NATIVE ] +16:15:16 [ 43] [ 40] [Kham Unit Kham LAO] +16:15:16 [ 49] [ 3] [418] +16:15:16 [ 52] [ 16] [0292AB8CFA5F7939] +16:15:16 ============================================================================ +16:15:16 + + +waiting on router queue for slot.... +16:15:16 Sending to : +16:15:16 ============================================================================ +16:15:16 Sending to : +16:15:16 ============================================================================ +16:15:16 ============================================================================ +16:15:16 Slot Id : <290> +16:15:16 Transaction Type : REQUEST +16:15:16 Received From : +16:15:16 ============================================================================ +16:15:16 FNo. Len. Field Value +16:15:16 ============================================================================ +16:15:16 [ 1] [ 4] [0200] +16:15:16 [ 2] [ 16] [6688990602440909] +16:15:16 [ 3] [ 6] [010000] +16:15:16 [ 4] [ 12] [000100000000] +16:15:16 [ 7] [ 10] [0320161511] +16:15:16 [ 11] [ 6] [795651] +16:15:16 [ 12] [ 6] [161511] +16:15:16 [ 13] [ 4] [0320] +16:15:16 [ 15] [ 4] [0320] +16:15:16 [ 18] [ 4] [6011] +16:15:16 [ 22] [ 3] [900] +16:15:16 [ 25] [ 2] [02] +16:15:16 [ 28] [ 9] [D00002000] +16:15:16 [ 32] [ 6] [621354] +16:15:16 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:15:16 [ 37] [ 12] [507903345194] +16:15:16 [ 41] [ 8] [13001400] +16:15:16 [ 42] [ 15] [NATIVE ] +16:15:16 [ 43] [ 40] [Kham Unit Kham LAO] +16:15:16 [ 49] [ 3] [418] +16:15:16 [ 52] [ 16] [0292AB8CFA5F7939] +16:15:16 ============================================================================ +16:15:16 + + +waiting on router queue for slot.... +16:15:16 Sending to : +16:15:16 ============================================================================ +16:15:16 ============================================================================ +16:15:16 Slot Id : <290> +16:15:16 Transaction Type : REQUEST +16:15:16 Received From : +16:15:16 ============================================================================ +16:15:16 FNo. Len. Field Value +16:15:16 ============================================================================ +16:15:16 [ 1] [ 4] [0200] +16:15:16 [ 2] [ 16] [6688990602440909] +16:15:16 [ 3] [ 6] [010000] +16:15:16 [ 4] [ 12] [000100000000] +16:15:16 [ 7] [ 10] [0320161511] +16:15:16 [ 11] [ 6] [795651] +16:15:16 [ 12] [ 6] [161511] +16:15:16 [ 13] [ 4] [0320] +16:15:16 [ 15] [ 4] [0320] +16:15:16 [ 18] [ 4] [6011] +16:15:16 [ 22] [ 3] [900] +16:15:16 [ 25] [ 2] [02] +16:15:16 [ 28] [ 9] [D00002000] +16:15:16 [ 32] [ 6] [621354] +16:15:16 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:15:16 [ 37] [ 12] [507903345194] +16:15:16 [ 41] [ 8] [13001400] +16:15:16 [ 42] [ 15] [NATIVE ] +16:15:16 [ 43] [ 40] [Kham Unit Kham LAO] +16:15:16 [ 49] [ 3] [418] +16:15:16 [ 52] [ 16] [A420D7A5ED0BD428] +16:15:16 ============================================================================ +16:15:16 + + +waiting on router queue for slot.... +16:15:16 Sending to : <4> +16:15:16 ============================================================================ +16:15:18 ============================================================================ +16:15:18 Slot Id : <290> +16:15:18 Transaction Type : RESPONSE +16:15:18 Received From : +16:15:18 ============================================================================ +16:15:18 FNo. Len. Field Value +16:15:18 ============================================================================ +16:15:18 [ 1] [ 4] [0210] +16:15:18 [ 2] [ 16] [6688990602440909] +16:15:18 [ 3] [ 6] [010000] +16:15:18 [ 4] [ 12] [000100000000] +16:15:18 [ 11] [ 6] [795651] +16:15:18 [ 12] [ 6] [161511] +16:15:18 [ 15] [ 4] [0320] +16:15:18 [ 18] [ 4] [6011] +16:15:18 [ 32] [ 6] [621354] +16:15:18 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:15:18 [ 37] [ 12] [507903345194] +16:15:18 [ 38] [ 6] [505108] +16:15:18 [ 39] [ 2] [00] +16:15:18 [ 41] [ 8] [13001400] +16:15:18 [ 49] [ 3] [418] +16:15:18 [ 54] [ 20] [0002418C000640985834] +16:15:18 ============================================================================ +16:15:18 Sending to : +16:15:18 ============================================================================ +16:15:18 + + +waiting on router queue for slot.... +16:15:19 ============================================================================ +16:15:19 Slot Id : <290> +16:15:19 Transaction Type : RESPONSE +16:15:19 Received From : +16:15:19 ============================================================================ +16:15:19 FNo. Len. Field Value +16:15:19 ============================================================================ +16:15:19 [ 1] [ 4] [0210] +16:15:19 [ 2] [ 16] [6688990602440909] +16:15:19 [ 3] [ 6] [010000] +16:15:19 [ 4] [ 12] [000100000000] +16:15:19 [ 11] [ 6] [795651] +16:15:19 [ 12] [ 6] [161511] +16:15:19 [ 15] [ 4] [0320] +16:15:19 [ 18] [ 4] [6011] +16:15:19 [ 32] [ 6] [621354] +16:15:19 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:15:19 [ 37] [ 12] [507903345194] +16:15:19 [ 38] [ 6] [505108] +16:15:19 [ 39] [ 2] [00] +16:15:19 [ 41] [ 8] [13001400] +16:15:19 [ 49] [ 3] [418] +16:15:19 [ 54] [ 20] [0002418C000640985834] +16:15:19 ============================================================================ +16:15:19 Calculate Source COMM Id = 0 +16:15:19 ============================================================================ +16:15:19 + + +waiting on router queue for slot.... +16:15:24 ============================================================================ +16:15:24 Slot Id : <267> +16:15:24 Transaction Type : REQUEST +16:15:24 Received From : +16:15:24 ============================================================================ +16:15:24 FNo. Len. Field Value +16:15:24 ============================================================================ +16:15:24 [ 1] [ 4] [0200] +16:15:24 [ 2] [ 16] [6688990107891507] +16:15:24 [ 3] [ 6] [011000] +16:15:24 [ 4] [ 12] [000020000000] +16:15:24 [ 7] [ 10] [0320161520] +16:15:24 [ 11] [ 6] [795684] +16:15:24 [ 12] [ 6] [161520] +16:15:24 [ 13] [ 4] [0320] +16:15:24 [ 15] [ 4] [0320] +16:15:24 [ 18] [ 4] [6011] +16:15:24 [ 22] [ 3] [900] +16:15:24 [ 25] [ 2] [02] +16:15:24 [ 28] [ 9] [D00002000] +16:15:24 [ 32] [ 6] [621354] +16:15:24 [ 35] [ 37] [6688990107891507=44041231150710200000] +16:15:24 [ 37] [ 12] [507904789476] +16:15:24 [ 41] [ 8] [07001400] +16:15:24 [ 42] [ 15] [NATIVE ] +16:15:24 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +16:15:24 [ 49] [ 3] [418] +16:15:24 [ 52] [ 16] [23853C9A0682C56B] +16:15:24 ============================================================================ +16:15:24 + + +waiting on router queue for slot.... +16:15:24 Sending to : +16:15:24 ============================================================================ +16:15:24 Sending to : +16:15:24 ============================================================================ +16:15:25 ============================================================================ +16:15:25 Slot Id : <267> +16:15:25 Transaction Type : REQUEST +16:15:25 Received From : +16:15:25 ============================================================================ +16:15:25 FNo. Len. Field Value +16:15:25 ============================================================================ +16:15:25 [ 1] [ 4] [0200] +16:15:25 [ 2] [ 16] [6688990107891507] +16:15:25 [ 3] [ 6] [011000] +16:15:25 [ 4] [ 12] [000020000000] +16:15:25 [ 7] [ 10] [0320161520] +16:15:25 [ 11] [ 6] [795684] +16:15:25 [ 12] [ 6] [161520] +16:15:25 [ 13] [ 4] [0320] +16:15:25 [ 15] [ 4] [0320] +16:15:25 [ 18] [ 4] [6011] +16:15:25 [ 22] [ 3] [900] +16:15:25 [ 25] [ 2] [02] +16:15:25 [ 28] [ 9] [D00002000] +16:15:25 [ 32] [ 6] [621354] +16:15:25 [ 35] [ 37] [6688990107891507=44041231150710200000] +16:15:25 [ 37] [ 12] [507904789476] +16:15:25 [ 41] [ 8] [07001400] +16:15:25 [ 42] [ 15] [NATIVE ] +16:15:25 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +16:15:25 [ 49] [ 3] [418] +16:15:25 [ 52] [ 16] [23853C9A0682C56B] +16:15:25 ============================================================================ +16:15:25 + + +waiting on router queue for slot.... +16:15:25 Sending to : +16:15:25 ============================================================================ +16:15:25 ============================================================================ +16:15:25 Slot Id : <267> +16:15:25 Transaction Type : REQUEST +16:15:25 Received From : +16:15:25 ============================================================================ +16:15:25 FNo. Len. Field Value +16:15:25 ============================================================================ +16:15:25 [ 1] [ 4] [0200] +16:15:25 [ 2] [ 16] [6688990107891507] +16:15:25 [ 3] [ 6] [011000] +16:15:25 [ 4] [ 12] [000020000000] +16:15:25 [ 7] [ 10] [0320161520] +16:15:25 [ 11] [ 6] [795684] +16:15:25 [ 12] [ 6] [161520] +16:15:25 [ 13] [ 4] [0320] +16:15:25 [ 15] [ 4] [0320] +16:15:25 [ 18] [ 4] [6011] +16:15:25 [ 22] [ 3] [900] +16:15:25 [ 25] [ 2] [02] +16:15:25 [ 28] [ 9] [D00002000] +16:15:25 [ 32] [ 6] [621354] +16:15:25 [ 35] [ 37] [6688990107891507=44041231150710200000] +16:15:25 [ 37] [ 12] [507904789476] +16:15:25 [ 41] [ 8] [07001400] +16:15:25 [ 42] [ 15] [NATIVE ] +16:15:25 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +16:15:25 [ 49] [ 3] [418] +16:15:25 [ 52] [ 16] [A885CBAE44465257] +16:15:25 ============================================================================ +16:15:25 + + +waiting on router queue for slot.... +16:15:25 Sending to : <4> +16:15:25 ============================================================================ +16:15:26 ============================================================================ +16:15:26 Slot Id : <267> +16:15:26 Transaction Type : RESPONSE +16:15:26 Received From : +16:15:26 ============================================================================ +16:15:26 FNo. Len. Field Value +16:15:26 ============================================================================ +16:15:26 [ 1] [ 4] [0210] +16:15:26 [ 2] [ 16] [6688990107891507] +16:15:26 [ 3] [ 6] [011000] +16:15:26 [ 4] [ 12] [000020000000] +16:15:26 [ 11] [ 6] [795684] +16:15:26 [ 12] [ 6] [161520] +16:15:26 [ 15] [ 4] [0320] +16:15:26 [ 18] [ 4] [6011] +16:15:26 [ 32] [ 6] [621354] +16:15:26 [ 35] [ 37] [6688990107891507=44041231150710200000] +16:15:26 [ 37] [ 12] [507904789476] +16:15:26 [ 38] [ 6] [193936] +16:15:26 [ 39] [ 2] [00] +16:15:26 [ 41] [ 8] [07001400] +16:15:26 [ 49] [ 3] [418] +16:15:26 [ 54] [ 20] [1002418C000046626388] +16:15:26 ============================================================================ +16:15:26 Sending to : +16:15:26 ============================================================================ +16:15:26 + + +waiting on router queue for slot.... +16:15:27 ============================================================================ +16:15:27 Slot Id : <267> +16:15:27 Transaction Type : RESPONSE +16:15:27 Received From : +16:15:27 ============================================================================ +16:15:27 FNo. Len. Field Value +16:15:27 ============================================================================ +16:15:27 [ 1] [ 4] [0210] +16:15:27 [ 2] [ 16] [6688990107891507] +16:15:27 [ 3] [ 6] [011000] +16:15:27 [ 4] [ 12] [000020000000] +16:15:27 [ 11] [ 6] [795684] +16:15:27 [ 12] [ 6] [161520] +16:15:27 [ 15] [ 4] [0320] +16:15:27 [ 18] [ 4] [6011] +16:15:27 [ 32] [ 6] [621354] +16:15:27 [ 35] [ 37] [6688990107891507=44041231150710200000] +16:15:27 [ 37] [ 12] [507904789476] +16:15:27 [ 38] [ 6] [193936] +16:15:27 [ 39] [ 2] [00] +16:15:27 [ 41] [ 8] [07001400] +16:15:27 [ 49] [ 3] [418] +16:15:27 [ 54] [ 20] [1002418C000046626388] +16:15:27 ============================================================================ +16:15:27 Calculate Source COMM Id = 0 +16:15:27 ============================================================================ +16:15:27 + + +waiting on router queue for slot.... +16:15:27 ============================================================================ +16:15:27 Slot Id : <271> +16:15:27 Transaction Type : REQUEST +16:15:27 Received From : +16:15:27 ============================================================================ +16:15:27 FNo. Len. Field Value +16:15:27 ============================================================================ +16:15:27 [ 1] [ 4] [0800] +16:15:27 [ 7] [ 10] [0320091434] +16:15:27 [ 11] [ 6] [157197] +16:15:27 [ 70] [ 3] [301] +16:15:27 ============================================================================ +16:15:27 + + +waiting on router queue for slot.... +16:15:27 Sending to : +16:15:27 ============================================================================ +16:15:27 ============================================================================ +16:15:27 Slot Id : <271> +16:15:27 Transaction Type : RESPONSE +16:15:27 Received From : +16:15:27 ============================================================================ +16:15:27 FNo. Len. Field Value +16:15:27 ============================================================================ +16:15:27 [ 1] [ 4] [0810] +16:15:27 [ 7] [ 10] [0320091434] +16:15:27 [ 11] [ 6] [157197] +16:15:27 [ 39] [ 2] [00] +16:15:27 [ 70] [ 3] [301] +16:15:27 ============================================================================ +16:15:27 Calculate Source COMM Id = 2 +16:15:27 ============================================================================ +16:15:27 + + +waiting on router queue for slot.... +16:15:28 ============================================================================ +16:15:28 Slot Id : <245> +16:15:28 Transaction Type : REQUEST +16:15:28 Received From : +16:15:28 ============================================================================ +16:15:28 FNo. Len. Field Value +16:15:28 ============================================================================ +16:15:28 [ 1] [ 4] [0200] +16:15:28 [ 2] [ 16] [6213545000973457] +16:15:28 [ 3] [ 6] [010000] +16:15:28 [ 4] [ 12] [000100000000] +16:15:28 [ 7] [ 10] [0320091433] +16:15:28 [ 11] [ 6] [270316] +16:15:28 [ 12] [ 6] [161433] +16:15:28 [ 13] [ 4] [0320] +16:15:28 [ 14] [ 4] [4912] +16:15:28 [ 15] [ 4] [0320] +16:15:28 [ 18] [ 4] [6011] +16:15:28 [ 19] [ 3] [418] +16:15:28 [ 22] [ 3] [021] +16:15:28 [ 25] [ 2] [01] +16:15:28 [ 28] [ 9] [D00002000] +16:15:28 [ 32] [ 6] [180893] +16:15:28 [ 35] [ 32] [6213545000973457=491212017345178] +16:15:28 [ 37] [ 12] [507909270316] +16:15:28 [ 41] [ 8] [0221XKKM] +16:15:28 [ 42] [ 15] [999999 ] +16:15:28 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:15:28 [ 49] [ 3] [418] +16:15:28 [ 52] [ 16] [889AAB2EA006FEED] +16:15:28 ============================================================================ +16:15:28 + + +waiting on router queue for slot.... +16:15:28 Sending to : +16:15:28 ============================================================================ +16:15:28 Sending to : +16:15:28 ============================================================================ +16:15:28 ============================================================================ +16:15:28 Slot Id : <245> +16:15:28 Transaction Type : REQUEST +16:15:28 Received From : +16:15:28 ============================================================================ +16:15:28 FNo. Len. Field Value +16:15:28 ============================================================================ +16:15:28 [ 1] [ 4] [0200] +16:15:28 [ 2] [ 16] [6213545000973457] +16:15:28 [ 3] [ 6] [010000] +16:15:28 [ 4] [ 12] [000100000000] +16:15:28 [ 7] [ 10] [0320091433] +16:15:28 [ 11] [ 6] [270316] +16:15:28 [ 12] [ 6] [161433] +16:15:28 [ 13] [ 4] [0320] +16:15:28 [ 14] [ 4] [4912] +16:15:28 [ 15] [ 4] [0320] +16:15:28 [ 18] [ 4] [6011] +16:15:28 [ 19] [ 3] [418] +16:15:28 [ 22] [ 3] [021] +16:15:28 [ 25] [ 2] [01] +16:15:28 [ 28] [ 9] [D00002000] +16:15:28 [ 32] [ 6] [180893] +16:15:28 [ 35] [ 32] [6213545000973457=491212017345178] +16:15:28 [ 37] [ 12] [507909270316] +16:15:28 [ 41] [ 8] [0221XKKM] +16:15:28 [ 42] [ 15] [999999 ] +16:15:28 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:15:28 [ 49] [ 3] [418] +16:15:28 [ 52] [ 16] [889AAB2EA006FEED] +16:15:28 ============================================================================ +16:15:28 + + +waiting on router queue for slot.... +16:15:28 Sending to : +16:15:28 ============================================================================ +16:15:28 ============================================================================ +16:15:28 Slot Id : <245> +16:15:28 Transaction Type : REQUEST +16:15:28 Received From : +16:15:28 ============================================================================ +16:15:28 FNo. Len. Field Value +16:15:28 ============================================================================ +16:15:28 [ 1] [ 4] [0200] +16:15:28 [ 2] [ 16] [6213545000973457] +16:15:28 [ 3] [ 6] [010000] +16:15:28 [ 4] [ 12] [000100000000] +16:15:28 [ 7] [ 10] [0320091433] +16:15:28 [ 11] [ 6] [270316] +16:15:28 [ 12] [ 6] [161433] +16:15:28 [ 13] [ 4] [0320] +16:15:28 [ 14] [ 4] [4912] +16:15:28 [ 15] [ 4] [0320] +16:15:28 [ 18] [ 4] [6011] +16:15:28 [ 19] [ 3] [418] +16:15:28 [ 22] [ 3] [021] +16:15:28 [ 25] [ 2] [01] +16:15:28 [ 28] [ 9] [D00002000] +16:15:28 [ 32] [ 6] [180893] +16:15:28 [ 35] [ 32] [6213545000973457=491212017345178] +16:15:28 [ 37] [ 12] [507909270316] +16:15:28 [ 41] [ 8] [0221XKKM] +16:15:28 [ 42] [ 15] [999999 ] +16:15:28 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:15:28 [ 49] [ 3] [418] +16:15:28 [ 52] [ 16] [E0D38ED1DE57398F] +16:15:28 ============================================================================ +16:15:28 + + +waiting on router queue for slot.... +16:15:28 Sending to : <0> +16:15:28 ============================================================================ +16:15:29 ============================================================================ +16:15:29 Slot Id : <245> +16:15:29 Transaction Type : RESPONSE +16:15:29 Received From : +16:15:29 ============================================================================ +16:15:29 FNo. Len. Field Value +16:15:29 ============================================================================ +16:15:29 [ 1] [ 4] [0210] +16:15:29 [ 2] [ 16] [6213545000973457] +16:15:29 [ 3] [ 6] [010000] +16:15:29 [ 4] [ 12] [000100000000] +16:15:29 [ 7] [ 10] [0320091433] +16:15:29 [ 11] [ 6] [270316] +16:15:29 [ 12] [ 6] [161433] +16:15:29 [ 13] [ 4] [0320] +16:15:29 [ 15] [ 4] [0320] +16:15:29 [ 18] [ 4] [6011] +16:15:29 [ 19] [ 3] [418] +16:15:29 [ 32] [ 6] [180893] +16:15:29 [ 35] [ 32] [6213545000973457=491212017345178] +16:15:29 [ 37] [ 12] [507909270316] +16:15:29 [ 38] [ 6] [075607] +16:15:29 [ 39] [ 2] [00] +16:15:29 [ 41] [ 8] [0221XKKM] +16:15:29 [ 49] [ 3] [418] +16:15:29 [ 54] [ 40] [0001418C0003043590340002418C000304359034] +16:15:29 ============================================================================ +16:15:29 Sending to : +16:15:29 ============================================================================ +16:15:29 + + +waiting on router queue for slot.... +16:15:30 ============================================================================ +16:15:30 Slot Id : <245> +16:15:30 Transaction Type : RESPONSE +16:15:30 Received From : +16:15:30 ============================================================================ +16:15:30 FNo. Len. Field Value +16:15:30 ============================================================================ +16:15:30 [ 1] [ 4] [0210] +16:15:30 [ 2] [ 16] [6213545000973457] +16:15:30 [ 3] [ 6] [010000] +16:15:30 [ 4] [ 12] [000100000000] +16:15:30 [ 7] [ 10] [0320091433] +16:15:30 [ 11] [ 6] [270316] +16:15:30 [ 12] [ 6] [161433] +16:15:30 [ 13] [ 4] [0320] +16:15:30 [ 15] [ 4] [0320] +16:15:30 [ 18] [ 4] [6011] +16:15:30 [ 19] [ 3] [418] +16:15:30 [ 32] [ 6] [180893] +16:15:30 [ 35] [ 32] [6213545000973457=491212017345178] +16:15:30 [ 37] [ 12] [507909270316] +16:15:30 [ 38] [ 6] [075607] +16:15:30 [ 39] [ 2] [00] +16:15:30 [ 41] [ 8] [0221XKKM] +16:15:30 [ 49] [ 3] [418] +16:15:30 [ 54] [ 40] [0001418C0003043590340002418C000304359034] +16:15:30 ============================================================================ +16:15:30 Calculate Source COMM Id = 2 +16:15:30 ============================================================================ +16:15:30 + + +waiting on router queue for slot.... +16:15:34 ============================================================================ +16:15:34 Slot Id : <294> +16:15:34 Transaction Type : REQUEST +16:15:34 Received From : +16:15:34 ============================================================================ +16:15:34 FNo. Len. Field Value +16:15:34 ============================================================================ +16:15:34 [ 1] [ 4] [0200] +16:15:34 [ 2] [ 16] [1808930800003261] +16:15:34 [ 3] [ 6] [301000] +16:15:34 [ 4] [ 12] [000000000000] +16:15:34 [ 7] [ 10] [0320161529] +16:15:34 [ 11] [ 6] [795728] +16:15:34 [ 12] [ 6] [161529] +16:15:34 [ 13] [ 4] [0320] +16:15:34 [ 15] [ 4] [0320] +16:15:34 [ 18] [ 4] [6011] +16:15:34 [ 22] [ 3] [900] +16:15:34 [ 25] [ 2] [02] +16:15:34 [ 28] [ 9] [D00000000] +16:15:34 [ 32] [ 6] [621354] +16:15:34 [ 35] [ 27] [1808930800003261=1803500800] +16:15:34 [ 37] [ 12] [507905064806] +16:15:34 [ 41] [ 8] [12002900] +16:15:34 [ 42] [ 15] [NATIVE ] +16:15:34 [ 43] [ 40] [KM18 Xayyabouly LAO] +16:15:34 [ 49] [ 3] [418] +16:15:34 [ 52] [ 16] [D3E64EE0E0FDA35C] +16:15:34 ============================================================================ +16:15:34 + + +waiting on router queue for slot.... +16:15:34 Sending to : +16:15:34 ============================================================================ +16:15:34 Sending to : +16:15:34 ============================================================================ +16:15:34 ============================================================================ +16:15:34 Slot Id : <294> +16:15:34 Transaction Type : REQUEST +16:15:34 Received From : +16:15:34 ============================================================================ +16:15:34 FNo. Len. Field Value +16:15:34 ============================================================================ +16:15:34 [ 1] [ 4] [0200] +16:15:34 [ 2] [ 16] [1808930800003261] +16:15:34 [ 3] [ 6] [301000] +16:15:34 [ 4] [ 12] [000000000000] +16:15:34 [ 7] [ 10] [0320161529] +16:15:34 [ 11] [ 6] [795728] +16:15:34 [ 12] [ 6] [161529] +16:15:34 [ 13] [ 4] [0320] +16:15:34 [ 15] [ 4] [0320] +16:15:34 [ 18] [ 4] [6011] +16:15:34 [ 22] [ 3] [900] +16:15:34 [ 25] [ 2] [02] +16:15:34 [ 28] [ 9] [D00000000] +16:15:34 [ 32] [ 6] [621354] +16:15:34 [ 35] [ 27] [1808930800003261=1803500800] +16:15:34 [ 37] [ 12] [507905064806] +16:15:34 [ 41] [ 8] [12002900] +16:15:34 [ 42] [ 15] [NATIVE ] +16:15:34 [ 43] [ 40] [KM18 Xayyabouly LAO] +16:15:34 [ 49] [ 3] [418] +16:15:34 [ 52] [ 16] [D3E64EE0E0FDA35C] +16:15:34 ============================================================================ +16:15:34 + + +waiting on router queue for slot.... +16:15:34 Sending to : +16:15:34 ============================================================================ +16:15:34 ============================================================================ +16:15:34 Slot Id : <294> +16:15:34 Transaction Type : REQUEST +16:15:34 Received From : +16:15:34 ============================================================================ +16:15:34 FNo. Len. Field Value +16:15:34 ============================================================================ +16:15:34 [ 1] [ 4] [0200] +16:15:34 [ 2] [ 16] [1808930800003261] +16:15:34 [ 3] [ 6] [301000] +16:15:34 [ 4] [ 12] [000000000000] +16:15:34 [ 7] [ 10] [0320161529] +16:15:34 [ 11] [ 6] [795728] +16:15:34 [ 12] [ 6] [161529] +16:15:34 [ 13] [ 4] [0320] +16:15:34 [ 15] [ 4] [0320] +16:15:34 [ 18] [ 4] [6011] +16:15:34 [ 22] [ 3] [900] +16:15:34 [ 25] [ 2] [02] +16:15:34 [ 28] [ 9] [D00000000] +16:15:34 [ 32] [ 6] [621354] +16:15:34 [ 35] [ 27] [1808930800003261=1803500800] +16:15:34 [ 37] [ 12] [507905064806] +16:15:34 [ 41] [ 8] [12002900] +16:15:34 [ 42] [ 15] [NATIVE ] +16:15:34 [ 43] [ 40] [KM18 Xayyabouly LAO] +16:15:34 [ 49] [ 3] [418] +16:15:34 [ 52] [ 16] [ED514D678FBDDC86] +16:15:34 ============================================================================ +16:15:34 + + +waiting on router queue for slot.... +16:15:34 Sending to : <2> +16:15:34 ============================================================================ +16:15:37 ============================================================================ +16:15:37 Slot Id : <294> +16:15:37 Transaction Type : RESPONSE +16:15:37 Received From : +16:15:37 ============================================================================ +16:15:37 FNo. Len. Field Value +16:15:37 ============================================================================ +16:15:37 [ 1] [ 4] [0210] +16:15:37 [ 2] [ 16] [1808930800003261] +16:15:37 [ 3] [ 6] [301000] +16:15:37 [ 7] [ 10] [0320161529] +16:15:37 [ 11] [ 6] [795728] +16:15:37 [ 12] [ 6] [161529] +16:15:37 [ 13] [ 4] [0320] +16:15:37 [ 14] [ 4] [1803] +16:15:37 [ 19] [ 3] [418] +16:15:37 [ 32] [ 6] [621354] +16:15:37 [ 37] [ 12] [507905064806] +16:15:37 [ 38] [ 6] [795728] +16:15:37 [ 39] [ 2] [00] +16:15:37 [ 41] [ 8] [12002900] +16:15:37 [ 49] [ 3] [418] +16:15:37 [ 52] [ 16] [ED514D678FBDDC86] +16:15:37 [ 54] [ 20] [1002418C000012814800] +16:15:37 ============================================================================ +16:15:37 Sending to : +16:15:37 ============================================================================ +16:15:37 + + +waiting on router queue for slot.... +16:15:37 ============================================================================ +16:15:37 Slot Id : <236> +16:15:37 Transaction Type : REQUEST +16:15:37 Received From : +16:15:37 ============================================================================ +16:15:37 FNo. Len. Field Value +16:15:37 ============================================================================ +16:15:37 [ 1] [ 4] [0200] +16:15:37 [ 2] [ 16] [6688990602899609] +16:15:37 [ 3] [ 6] [011000] +16:15:37 [ 4] [ 12] [000030000000] +16:15:37 [ 7] [ 10] [0320161532] +16:15:37 [ 11] [ 6] [795747] +16:15:37 [ 12] [ 6] [161532] +16:15:37 [ 13] [ 4] [0320] +16:15:37 [ 15] [ 4] [0320] +16:15:37 [ 18] [ 4] [6011] +16:15:37 [ 22] [ 3] [900] +16:15:37 [ 25] [ 2] [02] +16:15:37 [ 28] [ 9] [D00002000] +16:15:37 [ 32] [ 6] [621354] +16:15:37 [ 35] [ 37] [6688990602899609=44010061960938400000] +16:15:37 [ 37] [ 12] [507904755465] +16:15:37 [ 41] [ 8] [07001100] +16:15:37 [ 42] [ 15] [NATIVE ] +16:15:37 [ 43] [ 40] [Industry Market Namtar LAO] +16:15:37 [ 49] [ 3] [418] +16:15:37 [ 52] [ 16] [6FCD1045B5735666] +16:15:37 ============================================================================ +16:15:37 + + +waiting on router queue for slot.... +16:15:37 Sending to : +16:15:37 ============================================================================ +16:15:37 Sending to : +16:15:37 ============================================================================ +16:15:37 ============================================================================ +16:15:37 Slot Id : <236> +16:15:37 Transaction Type : REQUEST +16:15:37 Received From : +16:15:37 ============================================================================ +16:15:37 FNo. Len. Field Value +16:15:37 ============================================================================ +16:15:37 [ 1] [ 4] [0200] +16:15:37 [ 2] [ 16] [6688990602899609] +16:15:37 [ 3] [ 6] [011000] +16:15:37 [ 4] [ 12] [000030000000] +16:15:37 [ 7] [ 10] [0320161532] +16:15:37 [ 11] [ 6] [795747] +16:15:37 [ 12] [ 6] [161532] +16:15:37 [ 13] [ 4] [0320] +16:15:37 [ 15] [ 4] [0320] +16:15:37 [ 18] [ 4] [6011] +16:15:37 [ 22] [ 3] [900] +16:15:37 [ 25] [ 2] [02] +16:15:37 [ 28] [ 9] [D00002000] +16:15:37 [ 32] [ 6] [621354] +16:15:37 [ 35] [ 37] [6688990602899609=44010061960938400000] +16:15:37 [ 37] [ 12] [507904755465] +16:15:37 [ 41] [ 8] [07001100] +16:15:37 [ 42] [ 15] [NATIVE ] +16:15:37 [ 43] [ 40] [Industry Market Namtar LAO] +16:15:37 [ 49] [ 3] [418] +16:15:37 [ 52] [ 16] [6FCD1045B5735666] +16:15:37 ============================================================================ +16:15:37 + + +waiting on router queue for slot.... +16:15:37 Sending to : +16:15:37 ============================================================================ +16:15:37 ============================================================================ +16:15:37 Slot Id : <236> +16:15:37 Transaction Type : REQUEST +16:15:37 Received From : +16:15:37 ============================================================================ +16:15:37 FNo. Len. Field Value +16:15:37 ============================================================================ +16:15:37 [ 1] [ 4] [0200] +16:15:37 [ 2] [ 16] [6688990602899609] +16:15:37 [ 3] [ 6] [011000] +16:15:37 [ 4] [ 12] [000030000000] +16:15:37 [ 7] [ 10] [0320161532] +16:15:37 [ 11] [ 6] [795747] +16:15:37 [ 12] [ 6] [161532] +16:15:37 [ 13] [ 4] [0320] +16:15:37 [ 15] [ 4] [0320] +16:15:37 [ 18] [ 4] [6011] +16:15:37 [ 22] [ 3] [900] +16:15:37 [ 25] [ 2] [02] +16:15:37 [ 28] [ 9] [D00002000] +16:15:37 [ 32] [ 6] [621354] +16:15:37 [ 35] [ 37] [6688990602899609=44010061960938400000] +16:15:37 [ 37] [ 12] [507904755465] +16:15:37 [ 41] [ 8] [07001100] +16:15:37 [ 42] [ 15] [NATIVE ] +16:15:37 [ 43] [ 40] [Industry Market Namtar LAO] +16:15:37 [ 49] [ 3] [418] +16:15:37 [ 52] [ 16] [72F6295C0717A63F] +16:15:37 ============================================================================ +16:15:37 + + +waiting on router queue for slot.... +16:15:37 Sending to : <4> +16:15:37 ============================================================================ +16:15:38 ============================================================================ +16:15:38 Slot Id : <294> +16:15:38 Transaction Type : RESPONSE +16:15:38 Received From : +16:15:38 ============================================================================ +16:15:38 FNo. Len. Field Value +16:15:38 ============================================================================ +16:15:38 [ 1] [ 4] [0210] +16:15:38 [ 2] [ 16] [1808930800003261] +16:15:38 [ 3] [ 6] [301000] +16:15:38 [ 7] [ 10] [0320161529] +16:15:38 [ 11] [ 6] [795728] +16:15:38 [ 12] [ 6] [161529] +16:15:38 [ 13] [ 4] [0320] +16:15:38 [ 14] [ 4] [1803] +16:15:38 [ 19] [ 3] [418] +16:15:38 [ 32] [ 6] [621354] +16:15:38 [ 37] [ 12] [507905064806] +16:15:38 [ 38] [ 6] [795728] +16:15:38 [ 39] [ 2] [00] +16:15:38 [ 41] [ 8] [12002900] +16:15:38 [ 49] [ 3] [418] +16:15:38 [ 52] [ 16] [ED514D678FBDDC86] +16:15:38 [ 54] [ 20] [1002418C000012814800] +16:15:38 ============================================================================ +16:15:38 Calculate Source COMM Id = 0 +16:15:38 ============================================================================ +16:15:38 + + +waiting on router queue for slot.... +16:15:39 ============================================================================ +16:15:39 Slot Id : <236> +16:15:39 Transaction Type : RESPONSE +16:15:39 Received From : +16:15:39 ============================================================================ +16:15:39 FNo. Len. Field Value +16:15:39 ============================================================================ +16:15:39 [ 1] [ 4] [0210] +16:15:39 [ 2] [ 16] [6688990602899609] +16:15:39 [ 3] [ 6] [011000] +16:15:39 [ 4] [ 12] [000030000000] +16:15:39 [ 11] [ 6] [795747] +16:15:39 [ 12] [ 6] [161532] +16:15:39 [ 15] [ 4] [0320] +16:15:39 [ 18] [ 4] [6011] +16:15:39 [ 32] [ 6] [621354] +16:15:39 [ 35] [ 37] [6688990602899609=44010061960938400000] +16:15:39 [ 37] [ 12] [507904755465] +16:15:39 [ 38] [ 6] [837779] +16:15:39 [ 39] [ 2] [00] +16:15:39 [ 41] [ 8] [07001100] +16:15:39 [ 49] [ 3] [418] +16:15:39 [ 54] [ 20] [1002418C000122762521] +16:15:39 ============================================================================ +16:15:39 Sending to : +16:15:39 ============================================================================ +16:15:39 + + +waiting on router queue for slot.... +16:15:40 ============================================================================ +16:15:40 Slot Id : <236> +16:15:40 Transaction Type : RESPONSE +16:15:40 Received From : +16:15:40 ============================================================================ +16:15:40 FNo. Len. Field Value +16:15:40 ============================================================================ +16:15:40 [ 1] [ 4] [0210] +16:15:40 [ 2] [ 16] [6688990602899609] +16:15:40 [ 3] [ 6] [011000] +16:15:40 [ 4] [ 12] [000030000000] +16:15:40 [ 11] [ 6] [795747] +16:15:40 [ 12] [ 6] [161532] +16:15:40 [ 15] [ 4] [0320] +16:15:40 [ 18] [ 4] [6011] +16:15:40 [ 32] [ 6] [621354] +16:15:40 [ 35] [ 37] [6688990602899609=44010061960938400000] +16:15:40 [ 37] [ 12] [507904755465] +16:15:40 [ 38] [ 6] [837779] +16:15:40 [ 39] [ 2] [00] +16:15:40 [ 41] [ 8] [07001100] +16:15:40 [ 49] [ 3] [418] +16:15:40 [ 54] [ 20] [1002418C000122762521] +16:15:40 ============================================================================ +16:15:40 Calculate Source COMM Id = 0 +16:15:40 ============================================================================ +16:15:40 + + +waiting on router queue for slot.... +16:15:51 ============================================================================ +16:15:51 Slot Id : <303> +16:15:51 Transaction Type : REQUEST +16:15:51 Received From : +16:15:51 ============================================================================ +16:15:51 FNo. Len. Field Value +16:15:51 ============================================================================ +16:15:51 [ 1] [ 4] [0800] +16:15:51 [ 7] [ 10] [0320091457] +16:15:51 [ 11] [ 6] [157198] +16:15:51 [ 70] [ 3] [301] +16:15:51 ============================================================================ +16:15:51 + + +waiting on router queue for slot.... +16:15:51 Sending to : +16:15:51 ============================================================================ +16:15:51 ============================================================================ +16:15:51 Slot Id : <303> +16:15:51 Transaction Type : RESPONSE +16:15:51 Received From : +16:15:51 ============================================================================ +16:15:51 FNo. Len. Field Value +16:15:51 ============================================================================ +16:15:51 [ 1] [ 4] [0810] +16:15:51 [ 7] [ 10] [0320091457] +16:15:51 [ 11] [ 6] [157198] +16:15:51 [ 39] [ 2] [00] +16:15:51 [ 70] [ 3] [301] +16:15:51 ============================================================================ +16:15:51 Calculate Source COMM Id = 2 +16:15:51 ============================================================================ +16:15:51 + + +waiting on router queue for slot.... +16:15:59 ============================================================================ +16:15:59 Slot Id : <217> +16:15:59 Transaction Type : REQUEST +16:15:59 Received From : +16:15:59 ============================================================================ +16:15:59 FNo. Len. Field Value +16:15:59 ============================================================================ +16:15:59 [ 1] [ 4] [0800] +16:15:59 [ 7] [ 10] [0320232747] +16:15:59 [ 11] [ 6] [162747] +16:15:59 [ 37] [ 12] [57916162747] +16:15:59 [ 70] [ 3] [301] +16:15:59 ============================================================================ +16:15:59 + + +waiting on router queue for slot.... +16:15:59 Sending to : +16:15:59 ============================================================================ +16:15:59 ============================================================================ +16:15:59 Slot Id : <217> +16:15:59 Transaction Type : RESPONSE +16:15:59 Received From : +16:15:59 ============================================================================ +16:15:59 FNo. Len. Field Value +16:15:59 ============================================================================ +16:15:59 [ 1] [ 4] [0810] +16:15:59 [ 7] [ 10] [0320232747] +16:15:59 [ 11] [ 6] [162747] +16:15:59 [ 37] [ 12] [579161627470] +16:15:59 [ 39] [ 2] [00] +16:15:59 [ 70] [ 3] [810] +16:15:59 ============================================================================ +16:15:59 Calculate Source COMM Id = 6 +16:15:59 ============================================================================ +16:15:59 + + +waiting on router queue for slot.... +16:16:06 ============================================================================ +16:16:06 Slot Id : <298> +16:16:06 Transaction Type : REQUEST +16:16:06 Received From : +16:16:06 ============================================================================ +16:16:06 FNo. Len. Field Value +16:16:06 ============================================================================ +16:16:06 [ 1] [ 4] [0800] +16:16:06 [ 7] [ 10] [0320091513] +16:16:06 [ 11] [ 6] [157199] +16:16:06 [ 70] [ 3] [301] +16:16:06 ============================================================================ +16:16:06 + + +waiting on router queue for slot.... +16:16:06 Sending to : +16:16:06 ============================================================================ +16:16:06 ============================================================================ +16:16:06 Slot Id : <298> +16:16:06 Transaction Type : RESPONSE +16:16:06 Received From : +16:16:06 ============================================================================ +16:16:06 FNo. Len. Field Value +16:16:06 ============================================================================ +16:16:06 [ 1] [ 4] [0810] +16:16:06 [ 7] [ 10] [0320091513] +16:16:06 [ 11] [ 6] [157199] +16:16:06 [ 39] [ 2] [00] +16:16:06 [ 70] [ 3] [301] +16:16:06 ============================================================================ +16:16:06 Calculate Source COMM Id = 2 +16:16:06 ============================================================================ +16:16:06 + + +waiting on router queue for slot.... +16:16:07 ============================================================================ +16:16:07 Slot Id : <293> +16:16:07 Transaction Type : REQUEST +16:16:07 Received From : +16:16:07 ============================================================================ +16:16:07 FNo. Len. Field Value +16:16:07 ============================================================================ +16:16:07 [ 1] [ 4] [0800] +16:16:07 [ 2] [ 5] [02531] +16:16:07 [ 3] [ 6] [579168] +16:16:07 [ 7] [ 10] [0320091607] +16:16:07 [ 11] [ 6] [807356] +16:16:07 [ 15] [ 10] [0320091607] +16:16:07 [ 37] [ 11] [57916807356] +16:16:07 [ 70] [ 3] [001] +16:16:07 ============================================================================ +16:16:07 + + +waiting on router queue for slot.... +16:16:07 ============================================================================ +16:16:07 Slot Id : <293> +16:16:07 Transaction Type : RESPONSE +16:16:07 Received From : +16:16:07 ============================================================================ +16:16:07 FNo. Len. Field Value +16:16:07 ============================================================================ +16:16:07 [ 1] [ 4] [0810] +16:16:07 [ 7] [ 10] [0320091607] +16:16:07 [ 11] [ 6] [807356] +16:16:07 [ 15] [ 4] [0320] +16:16:07 [ 37] [ 12] [57916807356] +16:16:07 [ 39] [ 2] [00] +16:16:07 [ 70] [ 3] [001] +16:16:07 ============================================================================ +16:16:07 Sending to : +16:16:07 ============================================================================ +16:16:07 + + +waiting on router queue for slot.... +16:16:09 ============================================================================ +16:16:09 Slot Id : <299> +16:16:09 Transaction Type : REQUEST +16:16:09 Received From : +16:16:09 ============================================================================ +16:16:09 FNo. Len. Field Value +16:16:09 ============================================================================ +16:16:09 [ 1] [ 4] [0200] +16:16:09 [ 2] [ 16] [6688990108424209] +16:16:09 [ 3] [ 6] [010000] +16:16:09 [ 4] [ 12] [000100000000] +16:16:09 [ 7] [ 10] [0320161604] +16:16:09 [ 11] [ 6] [795873] +16:16:09 [ 12] [ 6] [161604] +16:16:09 [ 13] [ 4] [0320] +16:16:09 [ 15] [ 4] [0320] +16:16:09 [ 18] [ 4] [6011] +16:16:09 [ 22] [ 3] [900] +16:16:09 [ 25] [ 2] [02] +16:16:09 [ 28] [ 9] [D00002000] +16:16:09 [ 32] [ 6] [621354] +16:16:09 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:16:09 [ 37] [ 12] [507903499577] +16:16:09 [ 41] [ 8] [06002200] +16:16:09 [ 42] [ 15] [NATIVE ] +16:16:09 [ 43] [ 40] [Beng Market Beng LAO] +16:16:09 [ 49] [ 3] [418] +16:16:09 [ 52] [ 16] [50FF66322288B481] +16:16:09 ============================================================================ +16:16:09 + + +waiting on router queue for slot.... +16:16:09 Sending to : +16:16:09 ============================================================================ +16:16:09 Sending to : +16:16:09 ============================================================================ +16:16:09 ============================================================================ +16:16:09 Slot Id : <257> +16:16:09 Transaction Type : REQUEST +16:16:09 Received From : +16:16:09 ============================================================================ +16:16:09 FNo. Len. Field Value +16:16:09 ============================================================================ +16:16:09 [ 1] [ 4] [0200] +16:16:09 [ 2] [ 16] [6688990101830501] +16:16:09 [ 3] [ 6] [011000] +16:16:09 [ 4] [ 12] [000100000000] +16:16:09 [ 7] [ 10] [0320161604] +16:16:09 [ 11] [ 6] [795874] +16:16:09 [ 12] [ 6] [161604] +16:16:09 [ 13] [ 4] [0320] +16:16:09 [ 15] [ 4] [0320] +16:16:09 [ 18] [ 4] [6011] +16:16:09 [ 22] [ 3] [900] +16:16:09 [ 25] [ 2] [02] +16:16:09 [ 28] [ 9] [D00002000] +16:16:09 [ 32] [ 6] [621354] +16:16:09 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:16:09 [ 37] [ 12] [507904635832] +16:16:09 [ 41] [ 8] [17000800] +16:16:09 [ 42] [ 15] [NATIVE ] +16:16:09 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:16:09 [ 49] [ 3] [418] +16:16:09 [ 52] [ 16] [54904784A167D8BD] +16:16:09 ============================================================================ +16:16:09 + + +waiting on router queue for slot.... +16:16:09 Sending to : +16:16:09 ============================================================================ +16:16:09 Sending to : +16:16:09 ============================================================================ +16:16:09 ============================================================================ +16:16:09 Slot Id : <299> +16:16:09 Transaction Type : REQUEST +16:16:09 Received From : +16:16:09 ============================================================================ +16:16:09 FNo. Len. Field Value +16:16:09 ============================================================================ +16:16:09 [ 1] [ 4] [0200] +16:16:09 [ 2] [ 16] [6688990108424209] +16:16:09 [ 3] [ 6] [010000] +16:16:09 [ 4] [ 12] [000100000000] +16:16:09 [ 7] [ 10] [0320161604] +16:16:09 [ 11] [ 6] [795873] +16:16:09 [ 12] [ 6] [161604] +16:16:09 [ 13] [ 4] [0320] +16:16:09 [ 15] [ 4] [0320] +16:16:09 [ 18] [ 4] [6011] +16:16:09 [ 22] [ 3] [900] +16:16:09 [ 25] [ 2] [02] +16:16:09 [ 28] [ 9] [D00002000] +16:16:09 [ 32] [ 6] [621354] +16:16:09 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:16:09 [ 37] [ 12] [507903499577] +16:16:09 [ 41] [ 8] [06002200] +16:16:09 [ 42] [ 15] [NATIVE ] +16:16:09 [ 43] [ 40] [Beng Market Beng LAO] +16:16:09 [ 49] [ 3] [418] +16:16:09 [ 52] [ 16] [50FF66322288B481] +16:16:09 ============================================================================ +16:16:09 + + +waiting on router queue for slot.... +16:16:09 Sending to : +16:16:09 ============================================================================ +16:16:09 ============================================================================ +16:16:09 Slot Id : <299> +16:16:09 Transaction Type : REQUEST +16:16:09 Received From : +16:16:09 ============================================================================ +16:16:09 FNo. Len. Field Value +16:16:09 ============================================================================ +16:16:09 [ 1] [ 4] [0200] +16:16:09 [ 2] [ 16] [6688990108424209] +16:16:09 [ 3] [ 6] [010000] +16:16:09 [ 4] [ 12] [000100000000] +16:16:09 [ 7] [ 10] [0320161604] +16:16:09 [ 11] [ 6] [795873] +16:16:09 [ 12] [ 6] [161604] +16:16:09 [ 13] [ 4] [0320] +16:16:09 [ 15] [ 4] [0320] +16:16:09 [ 18] [ 4] [6011] +16:16:09 [ 22] [ 3] [900] +16:16:09 [ 25] [ 2] [02] +16:16:09 [ 28] [ 9] [D00002000] +16:16:09 [ 32] [ 6] [621354] +16:16:09 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:16:09 [ 37] [ 12] [507903499577] +16:16:09 [ 41] [ 8] [06002200] +16:16:09 [ 42] [ 15] [NATIVE ] +16:16:09 [ 43] [ 40] [Beng Market Beng LAO] +16:16:09 [ 49] [ 3] [418] +16:16:09 [ 52] [ 16] [18594C5E4BD5B510] +16:16:09 ============================================================================ +16:16:09 + + +waiting on router queue for slot.... +16:16:09 Sending to : <4> +16:16:09 ============================================================================ +16:16:09 ============================================================================ +16:16:09 Slot Id : <257> +16:16:09 Transaction Type : REQUEST +16:16:09 Received From : +16:16:09 ============================================================================ +16:16:09 FNo. Len. Field Value +16:16:09 ============================================================================ +16:16:09 [ 1] [ 4] [0200] +16:16:09 [ 2] [ 16] [6688990101830501] +16:16:09 [ 3] [ 6] [011000] +16:16:09 [ 4] [ 12] [000100000000] +16:16:09 [ 7] [ 10] [0320161604] +16:16:09 [ 11] [ 6] [795874] +16:16:09 [ 12] [ 6] [161604] +16:16:09 [ 13] [ 4] [0320] +16:16:09 [ 15] [ 4] [0320] +16:16:09 [ 18] [ 4] [6011] +16:16:09 [ 22] [ 3] [900] +16:16:09 [ 25] [ 2] [02] +16:16:09 [ 28] [ 9] [D00002000] +16:16:09 [ 32] [ 6] [621354] +16:16:09 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:16:09 [ 37] [ 12] [507904635832] +16:16:09 [ 41] [ 8] [17000800] +16:16:09 [ 42] [ 15] [NATIVE ] +16:16:09 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:16:09 [ 49] [ 3] [418] +16:16:09 [ 52] [ 16] [54904784A167D8BD] +16:16:09 ============================================================================ +16:16:09 + + +waiting on router queue for slot.... +16:16:09 Sending to : +16:16:09 ============================================================================ +16:16:09 ============================================================================ +16:16:09 Slot Id : <257> +16:16:09 Transaction Type : REQUEST +16:16:09 Received From : +16:16:09 ============================================================================ +16:16:09 FNo. Len. Field Value +16:16:09 ============================================================================ +16:16:09 [ 1] [ 4] [0200] +16:16:09 [ 2] [ 16] [6688990101830501] +16:16:09 [ 3] [ 6] [011000] +16:16:09 [ 4] [ 12] [000100000000] +16:16:09 [ 7] [ 10] [0320161604] +16:16:09 [ 11] [ 6] [795874] +16:16:09 [ 12] [ 6] [161604] +16:16:09 [ 13] [ 4] [0320] +16:16:09 [ 15] [ 4] [0320] +16:16:09 [ 18] [ 4] [6011] +16:16:09 [ 22] [ 3] [900] +16:16:09 [ 25] [ 2] [02] +16:16:09 [ 28] [ 9] [D00002000] +16:16:09 [ 32] [ 6] [621354] +16:16:09 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:16:09 [ 37] [ 12] [507904635832] +16:16:09 [ 41] [ 8] [17000800] +16:16:09 [ 42] [ 15] [NATIVE ] +16:16:09 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:16:09 [ 49] [ 3] [418] +16:16:09 [ 52] [ 16] [7327C78119A62D0C] +16:16:09 ============================================================================ +16:16:09 + + +waiting on router queue for slot.... +16:16:09 Sending to : <4> +16:16:09 ============================================================================ +16:16:10 ============================================================================ +16:16:10 Slot Id : <299> +16:16:10 Transaction Type : RESPONSE +16:16:10 Received From : +16:16:10 ============================================================================ +16:16:10 FNo. Len. Field Value +16:16:10 ============================================================================ +16:16:10 [ 1] [ 4] [0210] +16:16:10 [ 2] [ 16] [6688990108424209] +16:16:10 [ 3] [ 6] [010000] +16:16:10 [ 4] [ 12] [000100000000] +16:16:10 [ 11] [ 6] [795873] +16:16:10 [ 12] [ 6] [161604] +16:16:10 [ 15] [ 4] [0320] +16:16:10 [ 18] [ 4] [6011] +16:16:10 [ 32] [ 6] [621354] +16:16:10 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:16:10 [ 37] [ 12] [507903499577] +16:16:10 [ 38] [ 6] [397422] +16:16:10 [ 39] [ 2] [00] +16:16:10 [ 41] [ 8] [06002200] +16:16:10 [ 49] [ 3] [418] +16:16:10 [ 54] [ 20] [0002418C000481559720] +16:16:10 ============================================================================ +16:16:10 Sending to : +16:16:10 ============================================================================ +16:16:10 + + +waiting on router queue for slot.... +16:16:10 ============================================================================ +16:16:10 Slot Id : <257> +16:16:10 Transaction Type : RESPONSE +16:16:10 Received From : +16:16:10 ============================================================================ +16:16:10 FNo. Len. Field Value +16:16:10 ============================================================================ +16:16:10 [ 1] [ 4] [0210] +16:16:10 [ 2] [ 16] [6688990101830501] +16:16:10 [ 3] [ 6] [011000] +16:16:10 [ 4] [ 12] [000100000000] +16:16:10 [ 11] [ 6] [795874] +16:16:10 [ 12] [ 6] [161604] +16:16:10 [ 15] [ 4] [0320] +16:16:10 [ 18] [ 4] [6011] +16:16:10 [ 32] [ 6] [621354] +16:16:10 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:16:10 [ 37] [ 12] [507904635832] +16:16:10 [ 38] [ 6] [661509] +16:16:10 [ 39] [ 2] [00] +16:16:10 [ 41] [ 8] [17000800] +16:16:10 [ 49] [ 3] [418] +16:16:10 [ 54] [ 20] [1002418C000194827482] +16:16:10 ============================================================================ +16:16:10 Sending to : +16:16:10 ============================================================================ +16:16:10 + + +waiting on router queue for slot.... +16:16:12 ============================================================================ +16:16:12 Slot Id : <299> +16:16:12 Transaction Type : RESPONSE +16:16:12 Received From : +16:16:12 ============================================================================ +16:16:12 FNo. Len. Field Value +16:16:12 ============================================================================ +16:16:12 [ 1] [ 4] [0210] +16:16:12 [ 2] [ 16] [6688990108424209] +16:16:12 [ 3] [ 6] [010000] +16:16:12 [ 4] [ 12] [000100000000] +16:16:12 [ 11] [ 6] [795873] +16:16:12 [ 12] [ 6] [161604] +16:16:12 [ 15] [ 4] [0320] +16:16:12 [ 18] [ 4] [6011] +16:16:12 [ 32] [ 6] [621354] +16:16:12 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:16:12 [ 37] [ 12] [507903499577] +16:16:12 [ 38] [ 6] [397422] +16:16:12 [ 39] [ 2] [00] +16:16:12 [ 41] [ 8] [06002200] +16:16:12 [ 49] [ 3] [418] +16:16:12 [ 54] [ 20] [0002418C000481559720] +16:16:12 ============================================================================ +16:16:12 Calculate Source COMM Id = 0 +16:16:12 ============================================================================ +16:16:12 + + +waiting on router queue for slot.... +16:16:13 ============================================================================ +16:16:13 Slot Id : <278> +16:16:13 Transaction Type : REQUEST +16:16:13 Received From : +16:16:13 ============================================================================ +16:16:13 FNo. Len. Field Value +16:16:13 ============================================================================ +16:16:13 [ 1] [ 4] [0200] +16:16:13 [ 2] [ 16] [6213545000113146] +16:16:13 [ 3] [ 6] [010000] +16:16:13 [ 4] [ 12] [000100000000] +16:16:13 [ 7] [ 10] [0320091519] +16:16:13 [ 11] [ 6] [270326] +16:16:13 [ 12] [ 6] [161519] +16:16:13 [ 13] [ 4] [0320] +16:16:13 [ 14] [ 4] [4912] +16:16:13 [ 15] [ 4] [0320] +16:16:13 [ 18] [ 4] [6011] +16:16:13 [ 19] [ 3] [418] +16:16:13 [ 22] [ 3] [021] +16:16:13 [ 25] [ 2] [01] +16:16:13 [ 28] [ 9] [D00002000] +16:16:13 [ 32] [ 6] [180893] +16:16:13 [ 35] [ 32] [6213545000113146=491212011314500] +16:16:13 [ 37] [ 12] [507909270326] +16:16:13 [ 41] [ 8] [0301LPBX] +16:16:13 [ 42] [ 15] [999999 ] +16:16:13 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:16:13 [ 49] [ 3] [418] +16:16:13 [ 52] [ 16] [6F1C7C5F1C5BF639] +16:16:13 ============================================================================ +16:16:13 + + +waiting on router queue for slot.... +16:16:13 Sending to : +16:16:13 ============================================================================ +16:16:13 Sending to : +16:16:13 ============================================================================ +16:16:13 ============================================================================ +16:16:13 Slot Id : <300> +16:16:13 Transaction Type : REQUEST +16:16:13 Received From : +16:16:13 ============================================================================ +16:16:13 FNo. Len. Field Value +16:16:13 ============================================================================ +16:16:13 [ 1] [ 4] [0800] +16:16:13 [ 7] [ 10] [0320161559] +16:16:13 [ 11] [ 6] [079098] +16:16:13 [ 37] [ 12] [507916079098] +16:16:13 [ 70] [ 3] [ ] +16:16:13 ============================================================================ +16:16:13 + + +waiting on router queue for slot.... +16:16:13 Sending to : +16:16:13 ============================================================================ +16:16:13 ============================================================================ +16:16:13 Slot Id : <300> +16:16:13 Transaction Type : RESPONSE +16:16:13 Received From : +16:16:13 ============================================================================ +16:16:13 FNo. Len. Field Value +16:16:13 ============================================================================ +16:16:13 [ 1] [ 4] [0810] +16:16:13 [ 7] [ 10] [0320161559] +16:16:13 [ 11] [ 6] [079098] +16:16:13 [ 37] [ 12] [507916079098] +16:16:13 [ 39] [ 2] [91] +16:16:13 [ 70] [ 3] [ ] +16:16:13 ============================================================================ +16:16:13 Calculate Source COMM Id = 3 +16:16:13 ============================================================================ +16:16:13 + + +waiting on router queue for slot.... +16:16:13 ============================================================================ +16:16:13 Slot Id : <278> +16:16:13 Transaction Type : REQUEST +16:16:13 Received From : +16:16:13 ============================================================================ +16:16:13 FNo. Len. Field Value +16:16:13 ============================================================================ +16:16:13 [ 1] [ 4] [0200] +16:16:13 [ 2] [ 16] [6213545000113146] +16:16:13 [ 3] [ 6] [010000] +16:16:13 [ 4] [ 12] [000100000000] +16:16:13 [ 7] [ 10] [0320091519] +16:16:13 [ 11] [ 6] [270326] +16:16:13 [ 12] [ 6] [161519] +16:16:13 [ 13] [ 4] [0320] +16:16:13 [ 14] [ 4] [4912] +16:16:13 [ 15] [ 4] [0320] +16:16:13 [ 18] [ 4] [6011] +16:16:13 [ 19] [ 3] [418] +16:16:13 [ 22] [ 3] [021] +16:16:13 [ 25] [ 2] [01] +16:16:13 [ 28] [ 9] [D00002000] +16:16:13 [ 32] [ 6] [180893] +16:16:13 [ 35] [ 32] [6213545000113146=491212011314500] +16:16:13 [ 37] [ 12] [507909270326] +16:16:13 [ 41] [ 8] [0301LPBX] +16:16:13 [ 42] [ 15] [999999 ] +16:16:13 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:16:13 [ 49] [ 3] [418] +16:16:13 [ 52] [ 16] [6F1C7C5F1C5BF639] +16:16:13 ============================================================================ +16:16:13 + + +waiting on router queue for slot.... +16:16:13 Sending to : +16:16:13 ============================================================================ +16:16:13 ============================================================================ +16:16:13 Slot Id : <278> +16:16:13 Transaction Type : REQUEST +16:16:13 Received From : +16:16:13 ============================================================================ +16:16:13 FNo. Len. Field Value +16:16:13 ============================================================================ +16:16:13 [ 1] [ 4] [0200] +16:16:13 [ 2] [ 16] [6213545000113146] +16:16:13 [ 3] [ 6] [010000] +16:16:13 [ 4] [ 12] [000100000000] +16:16:13 [ 7] [ 10] [0320091519] +16:16:13 [ 11] [ 6] [270326] +16:16:13 [ 12] [ 6] [161519] +16:16:13 [ 13] [ 4] [0320] +16:16:13 [ 14] [ 4] [4912] +16:16:13 [ 15] [ 4] [0320] +16:16:13 [ 18] [ 4] [6011] +16:16:13 [ 19] [ 3] [418] +16:16:13 [ 22] [ 3] [021] +16:16:13 [ 25] [ 2] [01] +16:16:13 [ 28] [ 9] [D00002000] +16:16:13 [ 32] [ 6] [180893] +16:16:13 [ 35] [ 32] [6213545000113146=491212011314500] +16:16:13 [ 37] [ 12] [507909270326] +16:16:13 [ 41] [ 8] [0301LPBX] +16:16:13 [ 42] [ 15] [999999 ] +16:16:13 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:16:13 [ 49] [ 3] [418] +16:16:13 [ 52] [ 16] [A6F6DFC2D8D12F0B] +16:16:13 ============================================================================ +16:16:13 + + +waiting on router queue for slot.... +16:16:13 Sending to : <0> +16:16:13 ============================================================================ +16:16:13 ============================================================================ +16:16:13 Slot Id : <257> +16:16:13 Transaction Type : RESPONSE +16:16:13 Received From : +16:16:13 ============================================================================ +16:16:13 FNo. Len. Field Value +16:16:13 ============================================================================ +16:16:13 [ 1] [ 4] [0210] +16:16:13 [ 2] [ 16] [6688990101830501] +16:16:13 [ 3] [ 6] [011000] +16:16:13 [ 4] [ 12] [000100000000] +16:16:13 [ 11] [ 6] [795874] +16:16:13 [ 12] [ 6] [161604] +16:16:13 [ 15] [ 4] [0320] +16:16:13 [ 18] [ 4] [6011] +16:16:13 [ 32] [ 6] [621354] +16:16:13 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:16:13 [ 37] [ 12] [507904635832] +16:16:13 [ 38] [ 6] [661509] +16:16:13 [ 39] [ 2] [00] +16:16:13 [ 41] [ 8] [17000800] +16:16:13 [ 49] [ 3] [418] +16:16:13 [ 54] [ 20] [1002418C000194827482] +16:16:13 ============================================================================ +16:16:13 Calculate Source COMM Id = 0 +16:16:13 ============================================================================ +16:16:13 + + +waiting on router queue for slot.... +16:16:13 ============================================================================ +16:16:13 Slot Id : <278> +16:16:13 Transaction Type : RESPONSE +16:16:13 Received From : +16:16:13 ============================================================================ +16:16:13 FNo. Len. Field Value +16:16:13 ============================================================================ +16:16:13 [ 1] [ 4] [0210] +16:16:13 [ 2] [ 16] [6213545000113146] +16:16:13 [ 3] [ 6] [010000] +16:16:13 [ 4] [ 12] [000100000000] +16:16:13 [ 7] [ 10] [0320091519] +16:16:13 [ 11] [ 6] [270326] +16:16:13 [ 12] [ 6] [161519] +16:16:13 [ 13] [ 4] [0320] +16:16:13 [ 15] [ 4] [0320] +16:16:13 [ 18] [ 4] [6011] +16:16:13 [ 19] [ 3] [418] +16:16:13 [ 32] [ 6] [180893] +16:16:13 [ 35] [ 32] [6213545000113146=491212011314500] +16:16:13 [ 37] [ 12] [507909270326] +16:16:13 [ 38] [ 6] [270326] +16:16:13 [ 39] [ 2] [51] +16:16:13 [ 41] [ 8] [0301LPBX] +16:16:13 [ 49] [ 3] [418] +16:16:13 [ 54] [ 40] [0001418C0000089036360002418C000008903636] +16:16:13 ============================================================================ +16:16:13 Sending to : +16:16:13 ============================================================================ +16:16:13 + + +waiting on router queue for slot.... +16:16:14 ============================================================================ +16:16:14 Slot Id : <278> +16:16:14 Transaction Type : RESPONSE +16:16:14 Received From : +16:16:14 ============================================================================ +16:16:14 FNo. Len. Field Value +16:16:14 ============================================================================ +16:16:14 [ 1] [ 4] [0210] +16:16:14 [ 2] [ 16] [6213545000113146] +16:16:14 [ 3] [ 6] [010000] +16:16:14 [ 4] [ 12] [000100000000] +16:16:14 [ 7] [ 10] [0320091519] +16:16:14 [ 11] [ 6] [270326] +16:16:14 [ 12] [ 6] [161519] +16:16:14 [ 13] [ 4] [0320] +16:16:14 [ 15] [ 4] [0320] +16:16:14 [ 18] [ 4] [6011] +16:16:14 [ 19] [ 3] [418] +16:16:14 [ 32] [ 6] [180893] +16:16:14 [ 35] [ 32] [6213545000113146=491212011314500] +16:16:14 [ 37] [ 12] [507909270326] +16:16:14 [ 38] [ 6] [270326] +16:16:14 [ 39] [ 2] [51] +16:16:14 [ 41] [ 8] [0301LPBX] +16:16:14 [ 49] [ 3] [418] +16:16:14 [ 54] [ 40] [0001418C0000089036360002418C000008903636] +16:16:14 ============================================================================ +16:16:14 Calculate Source COMM Id = 2 +16:16:14 ============================================================================ +16:16:14 + + +waiting on router queue for slot.... +16:16:22 ============================================================================ +16:16:22 Slot Id : <281> +16:16:22 Transaction Type : REQUEST +16:16:22 Received From : +16:16:22 ============================================================================ +16:16:22 FNo. Len. Field Value +16:16:22 ============================================================================ +16:16:22 [ 1] [ 4] [0800] +16:16:22 [ 7] [ 10] [0320091412] +16:16:22 [ 11] [ 6] [026271] +16:16:22 [ 37] [ 12] [57916026271] +16:16:22 [ 70] [ 3] [301] +16:16:22 ============================================================================ +16:16:22 + + +waiting on router queue for slot.... +16:16:22 Sending to : +16:16:22 ============================================================================ +16:16:22 ============================================================================ +16:16:22 Slot Id : <281> +16:16:22 Transaction Type : RESPONSE +16:16:22 Received From : +16:16:22 ============================================================================ +16:16:22 FNo. Len. Field Value +16:16:22 ============================================================================ +16:16:22 [ 1] [ 4] [0810] +16:16:22 [ 7] [ 10] [0320091412] +16:16:22 [ 11] [ 6] [026271] +16:16:22 [ 37] [ 12] [579160262710] +16:16:22 [ 39] [ 2] [00] +16:16:22 [ 70] [ 3] [810] +16:16:22 ============================================================================ +16:16:22 Calculate Source COMM Id = 4 +16:16:22 ============================================================================ +16:16:22 + + +waiting on router queue for slot.... +16:16:26 ============================================================================ +16:16:26 Slot Id : <308> +16:16:26 Transaction Type : REQUEST +16:16:26 Received From : +16:16:26 ============================================================================ +16:16:26 FNo. Len. Field Value +16:16:26 ============================================================================ +16:16:26 [ 1] [ 4] [0200] +16:16:26 [ 2] [ 16] [6688990602440909] +16:16:26 [ 3] [ 6] [010000] +16:16:26 [ 4] [ 12] [000100000000] +16:16:26 [ 7] [ 10] [0320161621] +16:16:26 [ 11] [ 6] [795964] +16:16:26 [ 12] [ 6] [161621] +16:16:26 [ 13] [ 4] [0320] +16:16:26 [ 15] [ 4] [0320] +16:16:26 [ 18] [ 4] [6011] +16:16:26 [ 22] [ 3] [900] +16:16:26 [ 25] [ 2] [02] +16:16:26 [ 28] [ 9] [D00002000] +16:16:26 [ 32] [ 6] [621354] +16:16:26 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:16:26 [ 37] [ 12] [507903345196] +16:16:26 [ 41] [ 8] [13001400] +16:16:26 [ 42] [ 15] [NATIVE ] +16:16:26 [ 43] [ 40] [Kham Unit Kham LAO] +16:16:26 [ 49] [ 3] [418] +16:16:26 [ 52] [ 16] [0D81828086CC923B] +16:16:26 ============================================================================ +16:16:26 + + +waiting on router queue for slot.... +16:16:26 Sending to : +16:16:26 ============================================================================ +16:16:26 Sending to : +16:16:26 ============================================================================ +16:16:26 ============================================================================ +16:16:26 Slot Id : <308> +16:16:26 Transaction Type : REQUEST +16:16:26 Received From : +16:16:26 ============================================================================ +16:16:26 FNo. Len. Field Value +16:16:26 ============================================================================ +16:16:26 [ 1] [ 4] [0200] +16:16:26 [ 2] [ 16] [6688990602440909] +16:16:26 [ 3] [ 6] [010000] +16:16:26 [ 4] [ 12] [000100000000] +16:16:26 [ 7] [ 10] [0320161621] +16:16:26 [ 11] [ 6] [795964] +16:16:26 [ 12] [ 6] [161621] +16:16:26 [ 13] [ 4] [0320] +16:16:26 [ 15] [ 4] [0320] +16:16:26 [ 18] [ 4] [6011] +16:16:26 [ 22] [ 3] [900] +16:16:26 [ 25] [ 2] [02] +16:16:26 [ 28] [ 9] [D00002000] +16:16:26 [ 32] [ 6] [621354] +16:16:26 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:16:26 [ 37] [ 12] [507903345196] +16:16:26 [ 41] [ 8] [13001400] +16:16:26 [ 42] [ 15] [NATIVE ] +16:16:26 [ 43] [ 40] [Kham Unit Kham LAO] +16:16:26 [ 49] [ 3] [418] +16:16:26 [ 52] [ 16] [0D81828086CC923B] +16:16:26 ============================================================================ +16:16:26 + + +waiting on router queue for slot.... +16:16:26 Sending to : +16:16:26 ============================================================================ +16:16:26 ============================================================================ +16:16:26 Slot Id : <308> +16:16:26 Transaction Type : REQUEST +16:16:26 Received From : +16:16:26 ============================================================================ +16:16:26 FNo. Len. Field Value +16:16:26 ============================================================================ +16:16:26 [ 1] [ 4] [0200] +16:16:26 [ 2] [ 16] [6688990602440909] +16:16:26 [ 3] [ 6] [010000] +16:16:26 [ 4] [ 12] [000100000000] +16:16:26 [ 7] [ 10] [0320161621] +16:16:26 [ 11] [ 6] [795964] +16:16:26 [ 12] [ 6] [161621] +16:16:26 [ 13] [ 4] [0320] +16:16:26 [ 15] [ 4] [0320] +16:16:26 [ 18] [ 4] [6011] +16:16:26 [ 22] [ 3] [900] +16:16:26 [ 25] [ 2] [02] +16:16:26 [ 28] [ 9] [D00002000] +16:16:26 [ 32] [ 6] [621354] +16:16:26 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:16:26 [ 37] [ 12] [507903345196] +16:16:26 [ 41] [ 8] [13001400] +16:16:26 [ 42] [ 15] [NATIVE ] +16:16:26 [ 43] [ 40] [Kham Unit Kham LAO] +16:16:26 [ 49] [ 3] [418] +16:16:26 [ 52] [ 16] [1D1C39F5E4EC6E1A] +16:16:26 ============================================================================ +16:16:26 + + +waiting on router queue for slot.... +16:16:26 Sending to : <4> +16:16:26 ============================================================================ +16:16:26 ============================================================================ +16:16:26 Slot Id : <308> +16:16:26 Transaction Type : RESPONSE +16:16:26 Received From : +16:16:26 ============================================================================ +16:16:26 FNo. Len. Field Value +16:16:26 ============================================================================ +16:16:26 [ 1] [ 4] [0210] +16:16:26 [ 2] [ 16] [6688990602440909] +16:16:26 [ 3] [ 6] [010000] +16:16:26 [ 4] [ 12] [000100000000] +16:16:26 [ 7] [ 10] [0320161621] +16:16:26 [ 11] [ 6] [795964] +16:16:26 [ 12] [ 6] [161621] +16:16:26 [ 13] [ 4] [0320] +16:16:26 [ 15] [ 4] [0320] +16:16:26 [ 18] [ 4] [6011] +16:16:26 [ 22] [ 3] [021] +16:16:26 [ 32] [ 6] [621354] +16:16:26 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:16:26 [ 37] [ 12] [507903345196] +16:16:26 [ 38] [ 6] [161416] +16:16:26 [ 39] [ 2] [55] +16:16:26 [ 41] [ 8] [13001400] +16:16:26 [ 49] [ 3] [418] +16:16:26 ============================================================================ +16:16:26 Sending to : +16:16:26 ============================================================================ +16:16:26 + + +waiting on router queue for slot.... +16:16:27 ============================================================================ +16:16:27 Slot Id : <308> +16:16:27 Transaction Type : RESPONSE +16:16:27 Received From : +16:16:27 ============================================================================ +16:16:27 FNo. Len. Field Value +16:16:27 ============================================================================ +16:16:27 [ 1] [ 4] [0210] +16:16:27 [ 2] [ 16] [6688990602440909] +16:16:27 [ 3] [ 6] [010000] +16:16:27 [ 4] [ 12] [000100000000] +16:16:27 [ 7] [ 10] [0320161621] +16:16:27 [ 11] [ 6] [795964] +16:16:27 [ 12] [ 6] [161621] +16:16:27 [ 13] [ 4] [0320] +16:16:27 [ 15] [ 4] [0320] +16:16:27 [ 18] [ 4] [6011] +16:16:27 [ 22] [ 3] [021] +16:16:27 [ 32] [ 6] [621354] +16:16:27 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:16:27 [ 37] [ 12] [507903345196] +16:16:27 [ 38] [ 6] [161416] +16:16:27 [ 39] [ 2] [55] +16:16:27 [ 41] [ 8] [13001400] +16:16:27 [ 49] [ 3] [418] +16:16:27 ============================================================================ +16:16:27 Calculate Source COMM Id = 0 +16:16:27 ============================================================================ +16:16:27 + + +waiting on router queue for slot.... +16:16:29 ============================================================================ +16:16:29 Slot Id : <295> +16:16:29 Transaction Type : REQUEST +16:16:29 Received From : +16:16:29 ============================================================================ +16:16:29 FNo. Len. Field Value +16:16:29 ============================================================================ +16:16:29 [ 1] [ 4] [0800] +16:16:29 [ 7] [ 10] [0320091536] +16:16:29 [ 11] [ 6] [157200] +16:16:29 [ 70] [ 3] [301] +16:16:29 ============================================================================ +16:16:29 + + +waiting on router queue for slot.... +16:16:29 Sending to : +16:16:29 ============================================================================ +16:16:29 ============================================================================ +16:16:29 Slot Id : <295> +16:16:29 Transaction Type : RESPONSE +16:16:29 Received From : +16:16:29 ============================================================================ +16:16:29 FNo. Len. Field Value +16:16:29 ============================================================================ +16:16:29 [ 1] [ 4] [0810] +16:16:29 [ 7] [ 10] [0320091536] +16:16:29 [ 11] [ 6] [157200] +16:16:29 [ 39] [ 2] [00] +16:16:29 [ 70] [ 3] [301] +16:16:29 ============================================================================ +16:16:29 Calculate Source COMM Id = 2 +16:16:29 ============================================================================ +16:16:29 + + +waiting on router queue for slot.... +16:16:41 ============================================================================ +16:16:41 Slot Id : <296> +16:16:41 Transaction Type : REQUEST +16:16:41 Received From : +16:16:41 ============================================================================ +16:16:41 FNo. Len. Field Value +16:16:41 ============================================================================ +16:16:41 [ 1] [ 4] [0800] +16:16:41 [ 7] [ 10] [0320091548] +16:16:41 [ 11] [ 6] [157201] +16:16:41 [ 70] [ 3] [301] +16:16:41 ============================================================================ +16:16:41 + + +waiting on router queue for slot.... +16:16:41 Sending to : +16:16:41 ============================================================================ +16:16:41 ============================================================================ +16:16:41 Slot Id : <296> +16:16:41 Transaction Type : RESPONSE +16:16:41 Received From : +16:16:41 ============================================================================ +16:16:41 FNo. Len. Field Value +16:16:41 ============================================================================ +16:16:41 [ 1] [ 4] [0810] +16:16:41 [ 7] [ 10] [0320091548] +16:16:41 [ 11] [ 6] [157201] +16:16:41 [ 39] [ 2] [00] +16:16:41 [ 70] [ 3] [301] +16:16:41 ============================================================================ +16:16:41 Calculate Source COMM Id = 2 +16:16:41 ============================================================================ +16:16:41 + + +waiting on router queue for slot.... +16:16:43 ============================================================================ +16:16:43 Slot Id : <286> +16:16:43 Transaction Type : REQUEST +16:16:43 Received From : +16:16:43 ============================================================================ +16:16:43 FNo. Len. Field Value +16:16:43 ============================================================================ +16:16:43 [ 1] [ 4] [0200] +16:16:43 [ 2] [ 16] [6688990602440909] +16:16:43 [ 3] [ 6] [010000] +16:16:43 [ 4] [ 12] [000100000000] +16:16:43 [ 7] [ 10] [0320161638] +16:16:43 [ 11] [ 6] [796048] +16:16:43 [ 12] [ 6] [161638] +16:16:43 [ 13] [ 4] [0320] +16:16:43 [ 15] [ 4] [0320] +16:16:43 [ 18] [ 4] [6011] +16:16:43 [ 22] [ 3] [900] +16:16:43 [ 25] [ 2] [02] +16:16:43 [ 28] [ 9] [D00002000] +16:16:43 [ 32] [ 6] [621354] +16:16:43 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:16:43 [ 37] [ 12] [507903345198] +16:16:43 [ 41] [ 8] [13001400] +16:16:43 [ 42] [ 15] [NATIVE ] +16:16:43 [ 43] [ 40] [Kham Unit Kham LAO] +16:16:43 [ 49] [ 3] [418] +16:16:43 [ 52] [ 16] [0292AB8CFA5F7939] +16:16:43 ============================================================================ +16:16:43 + + +waiting on router queue for slot.... +16:16:43 Sending to : +16:16:43 ============================================================================ +16:16:43 Sending to : +16:16:43 ============================================================================ +16:16:43 ============================================================================ +16:16:43 Slot Id : <286> +16:16:43 Transaction Type : REQUEST +16:16:43 Received From : +16:16:43 ============================================================================ +16:16:43 FNo. Len. Field Value +16:16:43 ============================================================================ +16:16:43 [ 1] [ 4] [0200] +16:16:43 [ 2] [ 16] [6688990602440909] +16:16:43 [ 3] [ 6] [010000] +16:16:43 [ 4] [ 12] [000100000000] +16:16:43 [ 7] [ 10] [0320161638] +16:16:43 [ 11] [ 6] [796048] +16:16:43 [ 12] [ 6] [161638] +16:16:43 [ 13] [ 4] [0320] +16:16:43 [ 15] [ 4] [0320] +16:16:43 [ 18] [ 4] [6011] +16:16:43 [ 22] [ 3] [900] +16:16:43 [ 25] [ 2] [02] +16:16:43 [ 28] [ 9] [D00002000] +16:16:43 [ 32] [ 6] [621354] +16:16:43 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:16:43 [ 37] [ 12] [507903345198] +16:16:43 [ 41] [ 8] [13001400] +16:16:43 [ 42] [ 15] [NATIVE ] +16:16:43 [ 43] [ 40] [Kham Unit Kham LAO] +16:16:43 [ 49] [ 3] [418] +16:16:43 [ 52] [ 16] [0292AB8CFA5F7939] +16:16:43 ============================================================================ +16:16:43 + + +waiting on router queue for slot.... +16:16:43 Sending to : +16:16:43 ============================================================================ +16:16:43 ============================================================================ +16:16:43 Slot Id : <286> +16:16:43 Transaction Type : REQUEST +16:16:43 Received From : +16:16:43 ============================================================================ +16:16:43 FNo. Len. Field Value +16:16:43 ============================================================================ +16:16:43 [ 1] [ 4] [0200] +16:16:43 [ 2] [ 16] [6688990602440909] +16:16:43 [ 3] [ 6] [010000] +16:16:43 [ 4] [ 12] [000100000000] +16:16:43 [ 7] [ 10] [0320161638] +16:16:43 [ 11] [ 6] [796048] +16:16:43 [ 12] [ 6] [161638] +16:16:43 [ 13] [ 4] [0320] +16:16:43 [ 15] [ 4] [0320] +16:16:43 [ 18] [ 4] [6011] +16:16:43 [ 22] [ 3] [900] +16:16:43 [ 25] [ 2] [02] +16:16:43 [ 28] [ 9] [D00002000] +16:16:43 [ 32] [ 6] [621354] +16:16:43 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:16:43 [ 37] [ 12] [507903345198] +16:16:43 [ 41] [ 8] [13001400] +16:16:43 [ 42] [ 15] [NATIVE ] +16:16:43 [ 43] [ 40] [Kham Unit Kham LAO] +16:16:43 [ 49] [ 3] [418] +16:16:43 [ 52] [ 16] [A420D7A5ED0BD428] +16:16:43 ============================================================================ +16:16:43 + + +waiting on router queue for slot.... +16:16:43 Sending to : <4> +16:16:43 ============================================================================ +16:16:44 ============================================================================ +16:16:44 Slot Id : <286> +16:16:44 Transaction Type : RESPONSE +16:16:44 Received From : +16:16:44 ============================================================================ +16:16:44 FNo. Len. Field Value +16:16:44 ============================================================================ +16:16:44 [ 1] [ 4] [0210] +16:16:44 [ 2] [ 16] [6688990602440909] +16:16:44 [ 3] [ 6] [010000] +16:16:44 [ 4] [ 12] [000100000000] +16:16:44 [ 11] [ 6] [796048] +16:16:44 [ 12] [ 6] [161638] +16:16:44 [ 15] [ 4] [0320] +16:16:44 [ 18] [ 4] [6011] +16:16:44 [ 32] [ 6] [621354] +16:16:44 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:16:44 [ 37] [ 12] [507903345198] +16:16:44 [ 38] [ 6] [718490] +16:16:44 [ 39] [ 2] [00] +16:16:44 [ 41] [ 8] [13001400] +16:16:44 [ 49] [ 3] [418] +16:16:44 [ 54] [ 20] [0002418C000540785834] +16:16:44 ============================================================================ +16:16:44 Sending to : +16:16:44 ============================================================================ +16:16:44 + + +waiting on router queue for slot.... +16:16:46 ============================================================================ +16:16:46 Slot Id : <286> +16:16:46 Transaction Type : RESPONSE +16:16:46 Received From : +16:16:46 ============================================================================ +16:16:46 FNo. Len. Field Value +16:16:46 ============================================================================ +16:16:46 [ 1] [ 4] [0210] +16:16:46 [ 2] [ 16] [6688990602440909] +16:16:46 [ 3] [ 6] [010000] +16:16:46 [ 4] [ 12] [000100000000] +16:16:46 [ 11] [ 6] [796048] +16:16:46 [ 12] [ 6] [161638] +16:16:46 [ 15] [ 4] [0320] +16:16:46 [ 18] [ 4] [6011] +16:16:46 [ 32] [ 6] [621354] +16:16:46 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:16:46 [ 37] [ 12] [507903345198] +16:16:46 [ 38] [ 6] [718490] +16:16:46 [ 39] [ 2] [00] +16:16:46 [ 41] [ 8] [13001400] +16:16:46 [ 49] [ 3] [418] +16:16:46 [ 54] [ 20] [0002418C000540785834] +16:16:46 ============================================================================ +16:16:46 Calculate Source COMM Id = 0 +16:16:46 ============================================================================ +16:16:46 + + +waiting on router queue for slot.... +16:16:48 ============================================================================ +16:16:48 Slot Id : <283> +16:16:48 Transaction Type : REQUEST +16:16:48 Received From : +16:16:48 ============================================================================ +16:16:48 FNo. Len. Field Value +16:16:48 ============================================================================ +16:16:48 [ 1] [ 4] [0200] +16:16:48 [ 2] [ 16] [6213544001263349] +16:16:48 [ 3] [ 6] [011000] +16:16:48 [ 4] [ 12] [000016000000] +16:16:48 [ 7] [ 10] [0320091555] +16:16:48 [ 11] [ 6] [270330] +16:16:48 [ 12] [ 6] [161555] +16:16:48 [ 13] [ 4] [0320] +16:16:48 [ 14] [ 4] [4912] +16:16:48 [ 15] [ 4] [0320] +16:16:48 [ 18] [ 4] [6011] +16:16:48 [ 19] [ 3] [418] +16:16:48 [ 22] [ 3] [021] +16:16:48 [ 25] [ 2] [01] +16:16:48 [ 28] [ 9] [D00002000] +16:16:48 [ 32] [ 6] [180893] +16:16:48 [ 35] [ 32] [6213544001263349=491212016334098] +16:16:48 [ 37] [ 12] [507909270330] +16:16:48 [ 41] [ 8] [0528LPBP] +16:16:48 [ 42] [ 15] [999999 ] +16:16:48 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:16:48 [ 49] [ 3] [418] +16:16:48 [ 52] [ 16] [B0F6D6E9E605B24F] +16:16:48 ============================================================================ +16:16:48 + + +waiting on router queue for slot.... +16:16:48 Sending to : +16:16:48 ============================================================================ +16:16:48 Sending to : +16:16:48 ============================================================================ +16:16:49 ============================================================================ +16:16:49 Slot Id : <283> +16:16:49 Transaction Type : REQUEST +16:16:49 Received From : +16:16:49 ============================================================================ +16:16:49 FNo. Len. Field Value +16:16:49 ============================================================================ +16:16:49 [ 1] [ 4] [0200] +16:16:49 [ 2] [ 16] [6213544001263349] +16:16:49 [ 3] [ 6] [011000] +16:16:49 [ 4] [ 12] [000016000000] +16:16:49 [ 7] [ 10] [0320091555] +16:16:49 [ 11] [ 6] [270330] +16:16:49 [ 12] [ 6] [161555] +16:16:49 [ 13] [ 4] [0320] +16:16:49 [ 14] [ 4] [4912] +16:16:49 [ 15] [ 4] [0320] +16:16:49 [ 18] [ 4] [6011] +16:16:49 [ 19] [ 3] [418] +16:16:49 [ 22] [ 3] [021] +16:16:49 [ 25] [ 2] [01] +16:16:49 [ 28] [ 9] [D00002000] +16:16:49 [ 32] [ 6] [180893] +16:16:49 [ 35] [ 32] [6213544001263349=491212016334098] +16:16:49 [ 37] [ 12] [507909270330] +16:16:49 [ 41] [ 8] [0528LPBP] +16:16:49 [ 42] [ 15] [999999 ] +16:16:49 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:16:49 [ 49] [ 3] [418] +16:16:49 [ 52] [ 16] [B0F6D6E9E605B24F] +16:16:49 ============================================================================ +16:16:49 + + +waiting on router queue for slot.... +16:16:49 Sending to : +16:16:49 ============================================================================ +16:16:49 ============================================================================ +16:16:49 Slot Id : <283> +16:16:49 Transaction Type : REQUEST +16:16:49 Received From : +16:16:49 ============================================================================ +16:16:49 FNo. Len. Field Value +16:16:49 ============================================================================ +16:16:49 [ 1] [ 4] [0200] +16:16:49 [ 2] [ 16] [6213544001263349] +16:16:49 [ 3] [ 6] [011000] +16:16:49 [ 4] [ 12] [000016000000] +16:16:49 [ 7] [ 10] [0320091555] +16:16:49 [ 11] [ 6] [270330] +16:16:49 [ 12] [ 6] [161555] +16:16:49 [ 13] [ 4] [0320] +16:16:49 [ 14] [ 4] [4912] +16:16:49 [ 15] [ 4] [0320] +16:16:49 [ 18] [ 4] [6011] +16:16:49 [ 19] [ 3] [418] +16:16:49 [ 22] [ 3] [021] +16:16:49 [ 25] [ 2] [01] +16:16:49 [ 28] [ 9] [D00002000] +16:16:49 [ 32] [ 6] [180893] +16:16:49 [ 35] [ 32] [6213544001263349=491212016334098] +16:16:49 [ 37] [ 12] [507909270330] +16:16:49 [ 41] [ 8] [0528LPBP] +16:16:49 [ 42] [ 15] [999999 ] +16:16:49 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:16:49 [ 49] [ 3] [418] +16:16:49 [ 52] [ 16] [0973DF458B017813] +16:16:49 ============================================================================ +16:16:49 + + +waiting on router queue for slot.... +16:16:49 Sending to : <0> +16:16:49 ============================================================================ +16:16:49 ============================================================================ +16:16:49 Slot Id : <283> +16:16:49 Transaction Type : RESPONSE +16:16:49 Received From : +16:16:49 ============================================================================ +16:16:49 FNo. Len. Field Value +16:16:49 ============================================================================ +16:16:49 [ 1] [ 4] [0210] +16:16:49 [ 2] [ 16] [6213544001263349] +16:16:49 [ 3] [ 6] [011000] +16:16:49 [ 4] [ 12] [000016000000] +16:16:49 [ 7] [ 10] [0320091555] +16:16:49 [ 11] [ 6] [270330] +16:16:49 [ 12] [ 6] [161555] +16:16:49 [ 13] [ 4] [0320] +16:16:49 [ 15] [ 4] [0320] +16:16:49 [ 18] [ 4] [6011] +16:16:49 [ 19] [ 3] [418] +16:16:49 [ 32] [ 6] [180893] +16:16:49 [ 35] [ 32] [6213544001263349=491212016334098] +16:16:49 [ 37] [ 12] [507909270330] +16:16:49 [ 38] [ 6] [220638] +16:16:49 [ 39] [ 2] [00] +16:16:49 [ 41] [ 8] [0528LPBP] +16:16:49 [ 49] [ 3] [418] +16:16:49 [ 54] [ 40] [1001418C0000083350421002418C000008335042] +16:16:49 ============================================================================ +16:16:49 Sending to : +16:16:49 ============================================================================ +16:16:49 + + +waiting on router queue for slot.... +16:16:51 ============================================================================ +16:16:51 Slot Id : <283> +16:16:51 Transaction Type : RESPONSE +16:16:51 Received From : +16:16:51 ============================================================================ +16:16:51 FNo. Len. Field Value +16:16:51 ============================================================================ +16:16:51 [ 1] [ 4] [0210] +16:16:51 [ 2] [ 16] [6213544001263349] +16:16:51 [ 3] [ 6] [011000] +16:16:51 [ 4] [ 12] [000016000000] +16:16:51 [ 7] [ 10] [0320091555] +16:16:51 [ 11] [ 6] [270330] +16:16:51 [ 12] [ 6] [161555] +16:16:51 [ 13] [ 4] [0320] +16:16:51 [ 15] [ 4] [0320] +16:16:51 [ 18] [ 4] [6011] +16:16:51 [ 19] [ 3] [418] +16:16:51 [ 32] [ 6] [180893] +16:16:51 [ 35] [ 32] [6213544001263349=491212016334098] +16:16:51 [ 37] [ 12] [507909270330] +16:16:51 [ 38] [ 6] [220638] +16:16:51 [ 39] [ 2] [00] +16:16:51 [ 41] [ 8] [0528LPBP] +16:16:51 [ 49] [ 3] [418] +16:16:51 [ 54] [ 40] [1001418C0000083350421002418C000008335042] +16:16:51 ============================================================================ +16:16:51 Calculate Source COMM Id = 2 +16:16:51 ============================================================================ +16:16:51 + + +waiting on router queue for slot.... +16:16:52 ============================================================================ +16:16:52 Slot Id : <316> +16:16:52 Transaction Type : REQUEST +16:16:52 Received From : +16:16:52 ============================================================================ +16:16:52 FNo. Len. Field Value +16:16:52 ============================================================================ +16:16:52 [ 1] [ 4] [0200] +16:16:52 [ 2] [ 16] [1808930600023014] +16:16:52 [ 3] [ 6] [010000] +16:16:52 [ 4] [ 12] [000100000000] +16:16:52 [ 7] [ 10] [0320161442] +16:16:52 [ 11] [ 6] [951391] +16:16:52 [ 12] [ 6] [161442] +16:16:52 [ 13] [ 4] [0320] +16:16:52 [ 15] [ 4] [0320] +16:16:52 [ 18] [ 4] [6011] +16:16:52 [ 19] [ 3] [418] +16:16:52 [ 22] [ 3] [021] +16:16:52 [ 25] [ 2] [01] +16:16:52 [ 28] [ 9] [D00002000] +16:16:52 [ 32] [ 6] [668899] +16:16:52 [ 35] [ 27] [1808930600023014=1803500057] +16:16:52 [ 37] [ 12] [507902317765] +16:16:52 [ 41] [ 8] [03014007] +16:16:52 [ 42] [ 15] [APT ] +16:16:52 [ 43] [ 40] [ SAVANXAY MARKET SAVANXAY ] +16:16:52 [ 49] [ 3] [418] +16:16:52 [ 52] [ 16] [B8E5DDD2671045C2] +16:16:52 ============================================================================ +16:16:52 + + +waiting on router queue for slot.... +16:16:52 Sending to : +16:16:52 ============================================================================ +16:16:52 Sending to : +16:16:52 ============================================================================ +16:16:52 ============================================================================ +16:16:52 Slot Id : <316> +16:16:52 Transaction Type : REQUEST +16:16:52 Received From : +16:16:52 ============================================================================ +16:16:52 FNo. Len. Field Value +16:16:52 ============================================================================ +16:16:52 [ 1] [ 4] [0200] +16:16:52 [ 2] [ 16] [1808930600023014] +16:16:52 [ 3] [ 6] [010000] +16:16:52 [ 4] [ 12] [000100000000] +16:16:52 [ 7] [ 10] [0320161442] +16:16:52 [ 11] [ 6] [951391] +16:16:52 [ 12] [ 6] [161442] +16:16:52 [ 13] [ 4] [0320] +16:16:52 [ 15] [ 4] [0320] +16:16:52 [ 18] [ 4] [6011] +16:16:52 [ 19] [ 3] [418] +16:16:52 [ 22] [ 3] [021] +16:16:52 [ 25] [ 2] [01] +16:16:52 [ 28] [ 9] [D00002000] +16:16:52 [ 32] [ 6] [668899] +16:16:52 [ 35] [ 27] [1808930600023014=1803500057] +16:16:52 [ 37] [ 12] [507902317765] +16:16:52 [ 41] [ 8] [03014007] +16:16:52 [ 42] [ 15] [APT ] +16:16:52 [ 43] [ 40] [ SAVANXAY MARKET SAVANXAY ] +16:16:52 [ 49] [ 3] [418] +16:16:52 [ 52] [ 16] [B8E5DDD2671045C2] +16:16:52 ============================================================================ +16:16:52 + + +waiting on router queue for slot.... +16:16:52 Sending to : +16:16:52 ============================================================================ +16:16:52 ============================================================================ +16:16:52 Slot Id : <316> +16:16:52 Transaction Type : REQUEST +16:16:52 Received From : +16:16:52 ============================================================================ +16:16:52 FNo. Len. Field Value +16:16:52 ============================================================================ +16:16:52 [ 1] [ 4] [0200] +16:16:52 [ 2] [ 16] [1808930600023014] +16:16:52 [ 3] [ 6] [010000] +16:16:52 [ 4] [ 12] [000100000000] +16:16:52 [ 7] [ 10] [0320161442] +16:16:52 [ 11] [ 6] [951391] +16:16:52 [ 12] [ 6] [161442] +16:16:52 [ 13] [ 4] [0320] +16:16:52 [ 15] [ 4] [0320] +16:16:52 [ 18] [ 4] [6011] +16:16:52 [ 19] [ 3] [418] +16:16:52 [ 22] [ 3] [021] +16:16:52 [ 25] [ 2] [01] +16:16:52 [ 28] [ 9] [D00002000] +16:16:52 [ 32] [ 6] [668899] +16:16:52 [ 35] [ 27] [1808930600023014=1803500057] +16:16:52 [ 37] [ 12] [507902317765] +16:16:52 [ 41] [ 8] [03014007] +16:16:52 [ 42] [ 15] [APT ] +16:16:52 [ 43] [ 40] [ SAVANXAY MARKET SAVANXAY ] +16:16:52 [ 49] [ 3] [418] +16:16:52 [ 52] [ 16] [EA294A2DC71F277C] +16:16:52 ============================================================================ +16:16:52 + + +waiting on router queue for slot.... +16:16:52 Sending to : <2> +16:16:52 ============================================================================ +16:16:54 ============================================================================ +16:16:54 Slot Id : <311> +16:16:54 Transaction Type : REQUEST +16:16:54 Received From : +16:16:54 ============================================================================ +16:16:54 FNo. Len. Field Value +16:16:54 ============================================================================ +16:16:54 [ 1] [ 4] [0200] +16:16:54 [ 2] [ 16] [1808931700006487] +16:16:54 [ 3] [ 6] [011000] +16:16:54 [ 4] [ 12] [000010000000] +16:16:54 [ 7] [ 10] [0320161649] +16:16:54 [ 11] [ 6] [796093] +16:16:54 [ 12] [ 6] [161649] +16:16:54 [ 13] [ 4] [0320] +16:16:54 [ 15] [ 4] [0320] +16:16:54 [ 18] [ 4] [6011] +16:16:54 [ 22] [ 3] [900] +16:16:54 [ 25] [ 2] [02] +16:16:54 [ 28] [ 9] [D00002000] +16:16:54 [ 32] [ 6] [621354] +16:16:54 [ 35] [ 27] [1808931700006487=1803500045] +16:16:54 [ 37] [ 12] [507904731595] +16:16:54 [ 41] [ 8] [07000900] +16:16:54 [ 42] [ 15] [NATIVE ] +16:16:54 [ 43] [ 40] [LNT Branch01 Namtar LAO] +16:16:54 [ 49] [ 3] [418] +16:16:54 [ 52] [ 16] [5BB5BAE6BE9C0A8F] +16:16:54 ============================================================================ +16:16:54 + + +waiting on router queue for slot.... +16:16:54 Sending to : +16:16:54 ============================================================================ +16:16:54 Sending to : +16:16:54 ============================================================================ +16:16:54 ============================================================================ +16:16:54 Slot Id : <311> +16:16:54 Transaction Type : REQUEST +16:16:54 Received From : +16:16:54 ============================================================================ +16:16:54 FNo. Len. Field Value +16:16:54 ============================================================================ +16:16:54 [ 1] [ 4] [0200] +16:16:54 [ 2] [ 16] [1808931700006487] +16:16:54 [ 3] [ 6] [011000] +16:16:54 [ 4] [ 12] [000010000000] +16:16:54 [ 7] [ 10] [0320161649] +16:16:54 [ 11] [ 6] [796093] +16:16:54 [ 12] [ 6] [161649] +16:16:54 [ 13] [ 4] [0320] +16:16:54 [ 15] [ 4] [0320] +16:16:54 [ 18] [ 4] [6011] +16:16:54 [ 22] [ 3] [900] +16:16:54 [ 25] [ 2] [02] +16:16:54 [ 28] [ 9] [D00002000] +16:16:54 [ 32] [ 6] [621354] +16:16:54 [ 35] [ 27] [1808931700006487=1803500045] +16:16:54 [ 37] [ 12] [507904731595] +16:16:54 [ 41] [ 8] [07000900] +16:16:54 [ 42] [ 15] [NATIVE ] +16:16:54 [ 43] [ 40] [LNT Branch01 Namtar LAO] +16:16:54 [ 49] [ 3] [418] +16:16:54 [ 52] [ 16] [5BB5BAE6BE9C0A8F] +16:16:54 ============================================================================ +16:16:54 + + +waiting on router queue for slot.... +16:16:54 Sending to : +16:16:54 ============================================================================ +16:16:54 ============================================================================ +16:16:54 Slot Id : <311> +16:16:54 Transaction Type : REQUEST +16:16:54 Received From : +16:16:54 ============================================================================ +16:16:54 FNo. Len. Field Value +16:16:54 ============================================================================ +16:16:54 [ 1] [ 4] [0200] +16:16:54 [ 2] [ 16] [1808931700006487] +16:16:54 [ 3] [ 6] [011000] +16:16:54 [ 4] [ 12] [000010000000] +16:16:54 [ 7] [ 10] [0320161649] +16:16:54 [ 11] [ 6] [796093] +16:16:54 [ 12] [ 6] [161649] +16:16:54 [ 13] [ 4] [0320] +16:16:54 [ 15] [ 4] [0320] +16:16:54 [ 18] [ 4] [6011] +16:16:54 [ 22] [ 3] [900] +16:16:54 [ 25] [ 2] [02] +16:16:54 [ 28] [ 9] [D00002000] +16:16:54 [ 32] [ 6] [621354] +16:16:54 [ 35] [ 27] [1808931700006487=1803500045] +16:16:54 [ 37] [ 12] [507904731595] +16:16:54 [ 41] [ 8] [07000900] +16:16:54 [ 42] [ 15] [NATIVE ] +16:16:54 [ 43] [ 40] [LNT Branch01 Namtar LAO] +16:16:54 [ 49] [ 3] [418] +16:16:54 [ 52] [ 16] [9412C064EA0DA955] +16:16:54 ============================================================================ +16:16:54 + + +waiting on router queue for slot.... +16:16:54 Sending to : <2> +16:16:54 ============================================================================ +16:16:56 ============================================================================ +16:16:56 Slot Id : <316> +16:16:56 Transaction Type : RESPONSE +16:16:56 Received From : +16:16:56 ============================================================================ +16:16:56 FNo. Len. Field Value +16:16:56 ============================================================================ +16:16:56 [ 1] [ 4] [0210] +16:16:56 [ 2] [ 16] [1808930600023014] +16:16:56 [ 3] [ 6] [010000] +16:16:56 [ 4] [ 12] [000100000000] +16:16:56 [ 6] [ 12] [000100000000] +16:16:56 [ 7] [ 10] [0320161442] +16:16:56 [ 11] [ 6] [951391] +16:16:56 [ 12] [ 6] [161442] +16:16:56 [ 13] [ 4] [0320] +16:16:56 [ 18] [ 4] [6011] +16:16:56 [ 19] [ 3] [418] +16:16:56 [ 22] [ 3] [021] +16:16:56 [ 32] [ 6] [668899] +16:16:56 [ 35] [ 27] [1808930600023014=1803500057] +16:16:56 [ 37] [ 12] [507902317765] +16:16:56 [ 38] [ 6] [951391] +16:16:56 [ 39] [ 2] [00] +16:16:56 [ 41] [ 8] [03014007] +16:16:56 [ 49] [ 3] [418] +16:16:56 [ 52] [ 16] [EA294A2DC71F277C] +16:16:56 [ 54] [ 20] [1001418C000032421800] +16:16:56 ============================================================================ +16:16:56 Sending to : +16:16:56 ============================================================================ +16:16:56 + + +waiting on router queue for slot.... +16:16:57 ============================================================================ +16:16:57 Slot Id : <316> +16:16:57 Transaction Type : RESPONSE +16:16:57 Received From : +16:16:57 ============================================================================ +16:16:57 FNo. Len. Field Value +16:16:57 ============================================================================ +16:16:57 [ 1] [ 4] [0210] +16:16:57 [ 2] [ 16] [1808930600023014] +16:16:57 [ 3] [ 6] [010000] +16:16:57 [ 4] [ 12] [000100000000] +16:16:57 [ 6] [ 12] [000100000000] +16:16:57 [ 7] [ 10] [0320161442] +16:16:57 [ 11] [ 6] [951391] +16:16:57 [ 12] [ 6] [161442] +16:16:57 [ 13] [ 4] [0320] +16:16:57 [ 18] [ 4] [6011] +16:16:57 [ 19] [ 3] [418] +16:16:57 [ 22] [ 3] [021] +16:16:57 [ 32] [ 6] [668899] +16:16:57 [ 35] [ 27] [1808930600023014=1803500057] +16:16:57 [ 37] [ 12] [507902317765] +16:16:57 [ 38] [ 6] [951391] +16:16:57 [ 39] [ 2] [00] +16:16:57 [ 41] [ 8] [03014007] +16:16:57 [ 49] [ 3] [418] +16:16:57 [ 52] [ 16] [EA294A2DC71F277C] +16:16:57 [ 54] [ 20] [1001418C000032421800] +16:16:57 ============================================================================ +16:16:57 Calculate Source COMM Id = 4 +16:16:57 ============================================================================ +16:16:57 + + +waiting on router queue for slot.... +16:16:59 ============================================================================ +16:16:59 Slot Id : <311> +16:16:59 Transaction Type : RESPONSE +16:16:59 Received From : +16:16:59 ============================================================================ +16:16:59 FNo. Len. Field Value +16:16:59 ============================================================================ +16:16:59 [ 1] [ 4] [0210] +16:16:59 [ 2] [ 16] [1808931700006487] +16:16:59 [ 3] [ 6] [011000] +16:16:59 [ 4] [ 12] [000010000000] +16:16:59 [ 6] [ 12] [000010000000] +16:16:59 [ 7] [ 10] [0320161649] +16:16:59 [ 11] [ 6] [796093] +16:16:59 [ 12] [ 6] [161649] +16:16:59 [ 13] [ 4] [0320] +16:16:59 [ 18] [ 4] [6011] +16:16:59 [ 19] [ 3] [418] +16:16:59 [ 22] [ 3] [021] +16:16:59 [ 32] [ 6] [621354] +16:16:59 [ 35] [ 27] [1808931700006487=1803500045] +16:16:59 [ 37] [ 12] [507904731595] +16:16:59 [ 38] [ 6] [796093] +16:16:59 [ 39] [ 2] [00] +16:16:59 [ 41] [ 8] [07000900] +16:16:59 [ 49] [ 3] [418] +16:16:59 [ 52] [ 16] [9412C064EA0DA955] +16:16:59 [ 54] [ 20] [1001418C000463820300] +16:16:59 ============================================================================ +16:16:59 Sending to : +16:16:59 ============================================================================ +16:16:59 + + +waiting on router queue for slot.... +16:17:00 ============================================================================ +16:17:00 Slot Id : <311> +16:17:00 Transaction Type : RESPONSE +16:17:00 Received From : +16:17:00 ============================================================================ +16:17:00 FNo. Len. Field Value +16:17:00 ============================================================================ +16:17:00 [ 1] [ 4] [0210] +16:17:00 [ 2] [ 16] [1808931700006487] +16:17:00 [ 3] [ 6] [011000] +16:17:00 [ 4] [ 12] [000010000000] +16:17:00 [ 6] [ 12] [000010000000] +16:17:00 [ 7] [ 10] [0320161649] +16:17:00 [ 11] [ 6] [796093] +16:17:00 [ 12] [ 6] [161649] +16:17:00 [ 13] [ 4] [0320] +16:17:00 [ 18] [ 4] [6011] +16:17:00 [ 19] [ 3] [418] +16:17:00 [ 22] [ 3] [021] +16:17:00 [ 32] [ 6] [621354] +16:17:00 [ 35] [ 27] [1808931700006487=1803500045] +16:17:00 [ 37] [ 12] [507904731595] +16:17:00 [ 38] [ 6] [796093] +16:17:00 [ 39] [ 2] [00] +16:17:00 [ 41] [ 8] [07000900] +16:17:00 [ 49] [ 3] [418] +16:17:00 [ 52] [ 16] [9412C064EA0DA955] +16:17:00 [ 54] [ 20] [1001418C000463820300] +16:17:00 ============================================================================ +16:17:00 Calculate Source COMM Id = 0 +16:17:00 ============================================================================ +16:17:00 + + +waiting on router queue for slot.... +16:17:04 ============================================================================ +16:17:04 Slot Id : <312> +16:17:04 Transaction Type : REQUEST +16:17:04 Received From : +16:17:04 ============================================================================ +16:17:04 FNo. Len. Field Value +16:17:04 ============================================================================ +16:17:04 [ 1] [ 4] [0800] +16:17:04 [ 7] [ 10] [0320232852] +16:17:04 [ 11] [ 6] [162852] +16:17:04 [ 37] [ 12] [57916162852] +16:17:04 [ 70] [ 3] [301] +16:17:04 ============================================================================ +16:17:04 + + +waiting on router queue for slot.... +16:17:04 Sending to : +16:17:04 ============================================================================ +16:17:04 ============================================================================ +16:17:04 Slot Id : <312> +16:17:04 Transaction Type : RESPONSE +16:17:04 Received From : +16:17:04 ============================================================================ +16:17:04 FNo. Len. Field Value +16:17:04 ============================================================================ +16:17:04 [ 1] [ 4] [0810] +16:17:04 [ 7] [ 10] [0320232852] +16:17:04 [ 11] [ 6] [162852] +16:17:04 [ 37] [ 12] [579161628520] +16:17:04 [ 39] [ 2] [00] +16:17:04 [ 70] [ 3] [810] +16:17:04 ============================================================================ +16:17:04 Calculate Source COMM Id = 6 +16:17:04 ============================================================================ +16:17:04 + + +waiting on router queue for slot.... +16:17:06 ============================================================================ +16:17:06 Slot Id : <306> +16:17:06 Transaction Type : REQUEST +16:17:06 Received From : +16:17:06 ============================================================================ +16:17:06 FNo. Len. Field Value +16:17:06 ============================================================================ +16:17:06 [ 1] [ 4] [0800] +16:17:06 [ 7] [ 10] [0320091612] +16:17:06 [ 11] [ 6] [157202] +16:17:06 [ 70] [ 3] [301] +16:17:06 ============================================================================ +16:17:06 + + +waiting on router queue for slot.... +16:17:06 Sending to : +16:17:06 ============================================================================ +16:17:06 ============================================================================ +16:17:06 Slot Id : <306> +16:17:06 Transaction Type : RESPONSE +16:17:06 Received From : +16:17:06 ============================================================================ +16:17:06 FNo. Len. Field Value +16:17:06 ============================================================================ +16:17:06 [ 1] [ 4] [0810] +16:17:06 [ 7] [ 10] [0320091612] +16:17:06 [ 11] [ 6] [157202] +16:17:06 [ 39] [ 2] [00] +16:17:06 [ 70] [ 3] [301] +16:17:06 ============================================================================ +16:17:06 Calculate Source COMM Id = 2 +16:17:06 ============================================================================ +16:17:06 + + +waiting on router queue for slot.... +16:17:09 ============================================================================ +16:17:09 Slot Id : <310> +16:17:09 Transaction Type : REQUEST +16:17:09 Received From : +16:17:09 ============================================================================ +16:17:09 FNo. Len. Field Value +16:17:09 ============================================================================ +16:17:09 [ 1] [ 4] [0800] +16:17:09 [ 2] [ 5] [02531] +16:17:09 [ 3] [ 6] [579168] +16:17:09 [ 7] [ 10] [0320091709] +16:17:09 [ 11] [ 6] [807357] +16:17:09 [ 15] [ 10] [0320091709] +16:17:09 [ 37] [ 11] [57916807357] +16:17:09 [ 70] [ 3] [001] +16:17:09 ============================================================================ +16:17:09 + + +waiting on router queue for slot.... +16:17:09 ============================================================================ +16:17:09 Slot Id : <310> +16:17:09 Transaction Type : RESPONSE +16:17:09 Received From : +16:17:09 ============================================================================ +16:17:09 FNo. Len. Field Value +16:17:09 ============================================================================ +16:17:09 [ 1] [ 4] [0810] +16:17:09 [ 7] [ 10] [0320091709] +16:17:09 [ 11] [ 6] [807357] +16:17:09 [ 15] [ 4] [0320] +16:17:09 [ 37] [ 12] [57916807357] +16:17:09 [ 39] [ 2] [00] +16:17:09 [ 70] [ 3] [001] +16:17:09 ============================================================================ +16:17:09 Sending to : +16:17:09 ============================================================================ +16:17:09 + + +waiting on router queue for slot.... +16:17:09 ============================================================================ +16:17:09 Slot Id : <307> +16:17:09 Transaction Type : REQUEST +16:17:09 Received From : +16:17:09 ============================================================================ +16:17:09 FNo. Len. Field Value +16:17:09 ============================================================================ +16:17:09 [ 1] [ 4] [0200] +16:17:09 [ 2] [ 16] [6688990105161101] +16:17:09 [ 3] [ 6] [012000] +16:17:09 [ 4] [ 12] [000100000000] +16:17:09 [ 7] [ 10] [0320161704] +16:17:09 [ 11] [ 6] [796160] +16:17:09 [ 12] [ 6] [161704] +16:17:09 [ 13] [ 4] [0320] +16:17:09 [ 15] [ 4] [0320] +16:17:09 [ 18] [ 4] [6011] +16:17:09 [ 22] [ 3] [900] +16:17:09 [ 25] [ 2] [02] +16:17:09 [ 28] [ 9] [D00002000] +16:17:09 [ 32] [ 6] [621354] +16:17:09 [ 35] [ 37] [6688990105161101=43071231110183700000] +16:17:09 [ 37] [ 12] [507904645137] +16:17:09 [ 41] [ 8] [17000900] +16:17:09 [ 42] [ 15] [NATIVE ] +16:17:09 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:17:09 [ 49] [ 3] [418] +16:17:09 [ 52] [ 16] [E3859A8610743895] +16:17:09 ============================================================================ +16:17:09 + + +waiting on router queue for slot.... +16:17:09 Sending to : +16:17:09 ============================================================================ +16:17:09 Sending to : +16:17:09 ============================================================================ +16:17:09 ============================================================================ +16:17:09 Slot Id : <307> +16:17:09 Transaction Type : REQUEST +16:17:09 Received From : +16:17:09 ============================================================================ +16:17:09 FNo. Len. Field Value +16:17:09 ============================================================================ +16:17:09 [ 1] [ 4] [0200] +16:17:09 [ 2] [ 16] [6688990105161101] +16:17:09 [ 3] [ 6] [012000] +16:17:09 [ 4] [ 12] [000100000000] +16:17:09 [ 7] [ 10] [0320161704] +16:17:09 [ 11] [ 6] [796160] +16:17:09 [ 12] [ 6] [161704] +16:17:09 [ 13] [ 4] [0320] +16:17:09 [ 15] [ 4] [0320] +16:17:09 [ 18] [ 4] [6011] +16:17:09 [ 22] [ 3] [900] +16:17:09 [ 25] [ 2] [02] +16:17:09 [ 28] [ 9] [D00002000] +16:17:09 [ 32] [ 6] [621354] +16:17:09 [ 35] [ 37] [6688990105161101=43071231110183700000] +16:17:09 [ 37] [ 12] [507904645137] +16:17:09 [ 41] [ 8] [17000900] +16:17:09 [ 42] [ 15] [NATIVE ] +16:17:09 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:17:09 [ 49] [ 3] [418] +16:17:09 [ 52] [ 16] [E3859A8610743895] +16:17:09 ============================================================================ +16:17:09 + + +waiting on router queue for slot.... +16:17:09 Sending to : +16:17:09 ============================================================================ +16:17:09 ============================================================================ +16:17:09 Slot Id : <307> +16:17:09 Transaction Type : REQUEST +16:17:09 Received From : +16:17:09 ============================================================================ +16:17:09 FNo. Len. Field Value +16:17:09 ============================================================================ +16:17:09 [ 1] [ 4] [0200] +16:17:09 [ 2] [ 16] [6688990105161101] +16:17:09 [ 3] [ 6] [012000] +16:17:09 [ 4] [ 12] [000100000000] +16:17:09 [ 7] [ 10] [0320161704] +16:17:09 [ 11] [ 6] [796160] +16:17:09 [ 12] [ 6] [161704] +16:17:09 [ 13] [ 4] [0320] +16:17:09 [ 15] [ 4] [0320] +16:17:09 [ 18] [ 4] [6011] +16:17:09 [ 22] [ 3] [900] +16:17:09 [ 25] [ 2] [02] +16:17:09 [ 28] [ 9] [D00002000] +16:17:09 [ 32] [ 6] [621354] +16:17:09 [ 35] [ 37] [6688990105161101=43071231110183700000] +16:17:09 [ 37] [ 12] [507904645137] +16:17:09 [ 41] [ 8] [17000900] +16:17:09 [ 42] [ 15] [NATIVE ] +16:17:09 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:17:09 [ 49] [ 3] [418] +16:17:09 [ 52] [ 16] [2216BFC766E5C460] +16:17:09 ============================================================================ +16:17:09 + + +waiting on router queue for slot.... +16:17:09 Sending to : <4> +16:17:09 ============================================================================ +16:17:11 ============================================================================ +16:17:11 Slot Id : <307> +16:17:11 Transaction Type : RESPONSE +16:17:11 Received From : +16:17:11 ============================================================================ +16:17:11 FNo. Len. Field Value +16:17:11 ============================================================================ +16:17:11 [ 1] [ 4] [0210] +16:17:11 [ 2] [ 16] [6688990105161101] +16:17:11 [ 3] [ 6] [012000] +16:17:11 [ 4] [ 12] [000100000000] +16:17:11 [ 11] [ 6] [796160] +16:17:11 [ 12] [ 6] [161704] +16:17:11 [ 15] [ 4] [0320] +16:17:11 [ 18] [ 4] [6011] +16:17:11 [ 32] [ 6] [621354] +16:17:11 [ 35] [ 37] [6688990105161101=43071231110183700000] +16:17:11 [ 37] [ 12] [507904645137] +16:17:11 [ 38] [ 6] [858683] +16:17:11 [ 39] [ 2] [00] +16:17:11 [ 41] [ 8] [17000900] +16:17:11 [ 49] [ 3] [418] +16:17:11 [ 54] [ 20] [2002418C000327081923] +16:17:11 ============================================================================ +16:17:11 Sending to : +16:17:11 ============================================================================ +16:17:11 + + +waiting on router queue for slot.... +16:17:12 ============================================================================ +16:17:12 Slot Id : <307> +16:17:12 Transaction Type : RESPONSE +16:17:12 Received From : +16:17:12 ============================================================================ +16:17:12 FNo. Len. Field Value +16:17:12 ============================================================================ +16:17:12 [ 1] [ 4] [0210] +16:17:12 [ 2] [ 16] [6688990105161101] +16:17:12 [ 3] [ 6] [012000] +16:17:12 [ 4] [ 12] [000100000000] +16:17:12 [ 11] [ 6] [796160] +16:17:12 [ 12] [ 6] [161704] +16:17:12 [ 15] [ 4] [0320] +16:17:12 [ 18] [ 4] [6011] +16:17:12 [ 32] [ 6] [621354] +16:17:12 [ 35] [ 37] [6688990105161101=43071231110183700000] +16:17:12 [ 37] [ 12] [507904645137] +16:17:12 [ 38] [ 6] [858683] +16:17:12 [ 39] [ 2] [00] +16:17:12 [ 41] [ 8] [17000900] +16:17:12 [ 49] [ 3] [418] +16:17:12 [ 54] [ 20] [2002418C000327081923] +16:17:12 ============================================================================ +16:17:12 Calculate Source COMM Id = 0 +16:17:12 ============================================================================ +16:17:12 + + +waiting on router queue for slot.... +16:17:17 ============================================================================ +16:17:17 Slot Id : <317> +16:17:17 Transaction Type : REQUEST +16:17:17 Received From : +16:17:17 ============================================================================ +16:17:17 FNo. Len. Field Value +16:17:17 ============================================================================ +16:17:17 [ 1] [ 4] [0200] +16:17:17 [ 2] [ 16] [6688990101830501] +16:17:17 [ 3] [ 6] [011000] +16:17:17 [ 4] [ 12] [000100000000] +16:17:17 [ 7] [ 10] [0320161712] +16:17:17 [ 11] [ 6] [796194] +16:17:17 [ 12] [ 6] [161712] +16:17:17 [ 13] [ 4] [0320] +16:17:17 [ 15] [ 4] [0320] +16:17:17 [ 18] [ 4] [6011] +16:17:17 [ 22] [ 3] [900] +16:17:17 [ 25] [ 2] [02] +16:17:17 [ 28] [ 9] [D00002000] +16:17:17 [ 32] [ 6] [621354] +16:17:17 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:17:17 [ 37] [ 12] [507904635834] +16:17:17 [ 41] [ 8] [17000800] +16:17:17 [ 42] [ 15] [NATIVE ] +16:17:17 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:17:17 [ 49] [ 3] [418] +16:17:17 [ 52] [ 16] [54904784A167D8BD] +16:17:17 ============================================================================ +16:17:17 + + +waiting on router queue for slot.... +16:17:17 Sending to : +16:17:17 ============================================================================ +16:17:17 Sending to : +16:17:17 ============================================================================ +16:17:18 ============================================================================ +16:17:18 Slot Id : <317> +16:17:18 Transaction Type : REQUEST +16:17:18 Received From : +16:17:18 ============================================================================ +16:17:18 FNo. Len. Field Value +16:17:18 ============================================================================ +16:17:18 [ 1] [ 4] [0200] +16:17:18 [ 2] [ 16] [6688990101830501] +16:17:18 [ 3] [ 6] [011000] +16:17:18 [ 4] [ 12] [000100000000] +16:17:18 [ 7] [ 10] [0320161712] +16:17:18 [ 11] [ 6] [796194] +16:17:18 [ 12] [ 6] [161712] +16:17:18 [ 13] [ 4] [0320] +16:17:18 [ 15] [ 4] [0320] +16:17:18 [ 18] [ 4] [6011] +16:17:18 [ 22] [ 3] [900] +16:17:18 [ 25] [ 2] [02] +16:17:18 [ 28] [ 9] [D00002000] +16:17:18 [ 32] [ 6] [621354] +16:17:18 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:17:18 [ 37] [ 12] [507904635834] +16:17:18 [ 41] [ 8] [17000800] +16:17:18 [ 42] [ 15] [NATIVE ] +16:17:18 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:17:18 [ 49] [ 3] [418] +16:17:18 [ 52] [ 16] [54904784A167D8BD] +16:17:18 ============================================================================ +16:17:18 + + +waiting on router queue for slot.... +16:17:18 Sending to : +16:17:18 ============================================================================ +16:17:18 ============================================================================ +16:17:18 Slot Id : <317> +16:17:18 Transaction Type : REQUEST +16:17:18 Received From : +16:17:18 ============================================================================ +16:17:18 FNo. Len. Field Value +16:17:18 ============================================================================ +16:17:18 [ 1] [ 4] [0200] +16:17:18 [ 2] [ 16] [6688990101830501] +16:17:18 [ 3] [ 6] [011000] +16:17:18 [ 4] [ 12] [000100000000] +16:17:18 [ 7] [ 10] [0320161712] +16:17:18 [ 11] [ 6] [796194] +16:17:18 [ 12] [ 6] [161712] +16:17:18 [ 13] [ 4] [0320] +16:17:18 [ 15] [ 4] [0320] +16:17:18 [ 18] [ 4] [6011] +16:17:18 [ 22] [ 3] [900] +16:17:18 [ 25] [ 2] [02] +16:17:18 [ 28] [ 9] [D00002000] +16:17:18 [ 32] [ 6] [621354] +16:17:18 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:17:18 [ 37] [ 12] [507904635834] +16:17:18 [ 41] [ 8] [17000800] +16:17:18 [ 42] [ 15] [NATIVE ] +16:17:18 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:17:18 [ 49] [ 3] [418] +16:17:18 [ 52] [ 16] [7327C78119A62D0C] +16:17:18 ============================================================================ +16:17:18 + + +waiting on router queue for slot.... +16:17:18 Sending to : <4> +16:17:18 ============================================================================ +16:17:19 ============================================================================ +16:17:19 Slot Id : <317> +16:17:19 Transaction Type : RESPONSE +16:17:19 Received From : +16:17:19 ============================================================================ +16:17:19 FNo. Len. Field Value +16:17:19 ============================================================================ +16:17:19 [ 1] [ 4] [0210] +16:17:19 [ 2] [ 16] [6688990101830501] +16:17:19 [ 3] [ 6] [011000] +16:17:19 [ 4] [ 12] [000100000000] +16:17:19 [ 11] [ 6] [796194] +16:17:19 [ 12] [ 6] [161712] +16:17:19 [ 15] [ 4] [0320] +16:17:19 [ 18] [ 4] [6011] +16:17:19 [ 32] [ 6] [621354] +16:17:19 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:17:19 [ 37] [ 12] [507904635834] +16:17:19 [ 38] [ 6] [980248] +16:17:19 [ 39] [ 2] [00] +16:17:19 [ 41] [ 8] [17000800] +16:17:19 [ 49] [ 3] [418] +16:17:19 [ 54] [ 20] [1002418C000094627482] +16:17:19 ============================================================================ +16:17:19 Sending to : +16:17:19 ============================================================================ +16:17:19 + + +waiting on router queue for slot.... +16:17:20 ============================================================================ +16:17:20 Slot Id : <317> +16:17:20 Transaction Type : RESPONSE +16:17:20 Received From : +16:17:20 ============================================================================ +16:17:20 FNo. Len. Field Value +16:17:20 ============================================================================ +16:17:20 [ 1] [ 4] [0210] +16:17:20 [ 2] [ 16] [6688990101830501] +16:17:20 [ 3] [ 6] [011000] +16:17:20 [ 4] [ 12] [000100000000] +16:17:20 [ 11] [ 6] [796194] +16:17:20 [ 12] [ 6] [161712] +16:17:20 [ 15] [ 4] [0320] +16:17:20 [ 18] [ 4] [6011] +16:17:20 [ 32] [ 6] [621354] +16:17:20 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:17:20 [ 37] [ 12] [507904635834] +16:17:20 [ 38] [ 6] [980248] +16:17:20 [ 39] [ 2] [00] +16:17:20 [ 41] [ 8] [17000800] +16:17:20 [ 49] [ 3] [418] +16:17:20 [ 54] [ 20] [1002418C000094627482] +16:17:20 ============================================================================ +16:17:20 Calculate Source COMM Id = 0 +16:17:20 ============================================================================ +16:17:20 + + +waiting on router queue for slot.... +16:17:23 ============================================================================ +16:17:23 Slot Id : <288> +16:17:23 Transaction Type : REQUEST +16:17:23 Received From : +16:17:23 ============================================================================ +16:17:23 FNo. Len. Field Value +16:17:23 ============================================================================ +16:17:23 [ 1] [ 4] [0800] +16:17:23 [ 7] [ 10] [0320091628] +16:17:23 [ 11] [ 6] [157203] +16:17:23 [ 70] [ 3] [301] +16:17:23 ============================================================================ +16:17:23 + + +waiting on router queue for slot.... +16:17:23 Sending to : +16:17:23 ============================================================================ +16:17:23 ============================================================================ +16:17:23 Slot Id : <288> +16:17:23 Transaction Type : RESPONSE +16:17:23 Received From : +16:17:23 ============================================================================ +16:17:23 FNo. Len. Field Value +16:17:23 ============================================================================ +16:17:23 [ 1] [ 4] [0810] +16:17:23 [ 7] [ 10] [0320091628] +16:17:23 [ 11] [ 6] [157203] +16:17:23 [ 39] [ 2] [00] +16:17:23 [ 70] [ 3] [301] +16:17:23 ============================================================================ +16:17:23 Calculate Source COMM Id = 2 +16:17:23 ============================================================================ +16:17:23 + + +waiting on router queue for slot.... +16:17:25 ============================================================================ +16:17:25 Slot Id : <318> +16:17:25 Transaction Type : REQUEST +16:17:25 Received From : +16:17:25 ============================================================================ +16:17:25 FNo. Len. Field Value +16:17:25 ============================================================================ +16:17:25 [ 1] [ 4] [0200] +16:17:25 [ 2] [ 16] [6688990040103713] +16:17:25 [ 3] [ 6] [010000] +16:17:25 [ 4] [ 12] [000030000000] +16:17:25 [ 7] [ 10] [0320161720] +16:17:25 [ 11] [ 6] [796225] +16:17:25 [ 12] [ 6] [161720] +16:17:25 [ 13] [ 4] [0320] +16:17:25 [ 15] [ 4] [0320] +16:17:25 [ 18] [ 4] [6011] +16:17:25 [ 22] [ 3] [900] +16:17:25 [ 25] [ 2] [02] +16:17:25 [ 28] [ 9] [D00002000] +16:17:25 [ 32] [ 6] [621354] +16:17:25 [ 35] [ 37] [6688990040103713=98031261005447300000] +16:17:25 [ 37] [ 12] [507902916622] +16:17:25 [ 41] [ 8] [12001400] +16:17:25 [ 42] [ 15] [NATIVE ] +16:17:25 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +16:17:25 [ 49] [ 3] [418] +16:17:25 [ 52] [ 16] [CE83666B36A69799] +16:17:25 ============================================================================ +16:17:25 + + +waiting on router queue for slot.... +16:17:25 Sending to : +16:17:25 ============================================================================ +16:17:25 Sending to : +16:17:25 ============================================================================ +16:17:25 ============================================================================ +16:17:25 Slot Id : <318> +16:17:25 Transaction Type : REQUEST +16:17:25 Received From : +16:17:25 ============================================================================ +16:17:25 FNo. Len. Field Value +16:17:25 ============================================================================ +16:17:25 [ 1] [ 4] [0200] +16:17:25 [ 2] [ 16] [6688990040103713] +16:17:25 [ 3] [ 6] [010000] +16:17:25 [ 4] [ 12] [000030000000] +16:17:25 [ 7] [ 10] [0320161720] +16:17:25 [ 11] [ 6] [796225] +16:17:25 [ 12] [ 6] [161720] +16:17:25 [ 13] [ 4] [0320] +16:17:25 [ 15] [ 4] [0320] +16:17:25 [ 18] [ 4] [6011] +16:17:25 [ 22] [ 3] [900] +16:17:25 [ 25] [ 2] [02] +16:17:25 [ 28] [ 9] [D00002000] +16:17:25 [ 32] [ 6] [621354] +16:17:25 [ 35] [ 37] [6688990040103713=98031261005447300000] +16:17:25 [ 37] [ 12] [507902916622] +16:17:25 [ 41] [ 8] [12001400] +16:17:25 [ 42] [ 15] [NATIVE ] +16:17:25 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +16:17:25 [ 49] [ 3] [418] +16:17:25 [ 52] [ 16] [CE83666B36A69799] +16:17:25 ============================================================================ +16:17:25 + + +waiting on router queue for slot.... +16:17:25 Sending to : +16:17:25 ============================================================================ +16:17:25 ============================================================================ +16:17:25 Slot Id : <318> +16:17:25 Transaction Type : REQUEST +16:17:25 Received From : +16:17:25 ============================================================================ +16:17:25 FNo. Len. Field Value +16:17:25 ============================================================================ +16:17:25 [ 1] [ 4] [0200] +16:17:25 [ 2] [ 16] [6688990040103713] +16:17:25 [ 3] [ 6] [010000] +16:17:25 [ 4] [ 12] [000030000000] +16:17:25 [ 7] [ 10] [0320161720] +16:17:25 [ 11] [ 6] [796225] +16:17:25 [ 12] [ 6] [161720] +16:17:25 [ 13] [ 4] [0320] +16:17:25 [ 15] [ 4] [0320] +16:17:25 [ 18] [ 4] [6011] +16:17:25 [ 22] [ 3] [900] +16:17:25 [ 25] [ 2] [02] +16:17:25 [ 28] [ 9] [D00002000] +16:17:25 [ 32] [ 6] [621354] +16:17:25 [ 35] [ 37] [6688990040103713=98031261005447300000] +16:17:25 [ 37] [ 12] [507902916622] +16:17:25 [ 41] [ 8] [12001400] +16:17:25 [ 42] [ 15] [NATIVE ] +16:17:25 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +16:17:25 [ 49] [ 3] [418] +16:17:25 [ 52] [ 16] [DC4FAA5D71112D9A] +16:17:25 ============================================================================ +16:17:25 + + +waiting on router queue for slot.... +16:17:25 Sending to : <4> +16:17:25 ============================================================================ +16:17:26 ============================================================================ +16:17:26 Slot Id : <318> +16:17:26 Transaction Type : RESPONSE +16:17:26 Received From : +16:17:26 ============================================================================ +16:17:26 FNo. Len. Field Value +16:17:26 ============================================================================ +16:17:26 [ 1] [ 4] [0210] +16:17:26 [ 2] [ 16] [6688990040103713] +16:17:26 [ 3] [ 6] [010000] +16:17:26 [ 4] [ 12] [000030000000] +16:17:26 [ 11] [ 6] [796225] +16:17:26 [ 12] [ 6] [161720] +16:17:26 [ 15] [ 4] [0320] +16:17:26 [ 18] [ 4] [6011] +16:17:26 [ 32] [ 6] [621354] +16:17:26 [ 35] [ 37] [6688990040103713=98031261005447300000] +16:17:26 [ 37] [ 12] [507902916622] +16:17:26 [ 38] [ 6] [649976] +16:17:26 [ 39] [ 2] [00] +16:17:26 [ 41] [ 8] [12001400] +16:17:26 [ 49] [ 3] [418] +16:17:26 [ 54] [ 20] [0002418C000211598177] +16:17:26 ============================================================================ +16:17:26 Sending to : +16:17:26 ============================================================================ +16:17:26 + + +waiting on router queue for slot.... +16:17:28 ============================================================================ +16:17:28 Slot Id : <318> +16:17:28 Transaction Type : RESPONSE +16:17:28 Received From : +16:17:28 ============================================================================ +16:17:28 FNo. Len. Field Value +16:17:28 ============================================================================ +16:17:28 [ 1] [ 4] [0210] +16:17:28 [ 2] [ 16] [6688990040103713] +16:17:28 [ 3] [ 6] [010000] +16:17:28 [ 4] [ 12] [000030000000] +16:17:28 [ 11] [ 6] [796225] +16:17:28 [ 12] [ 6] [161720] +16:17:28 [ 15] [ 4] [0320] +16:17:28 [ 18] [ 4] [6011] +16:17:28 [ 32] [ 6] [621354] +16:17:28 [ 35] [ 37] [6688990040103713=98031261005447300000] +16:17:28 [ 37] [ 12] [507902916622] +16:17:28 [ 38] [ 6] [649976] +16:17:28 [ 39] [ 2] [00] +16:17:28 [ 41] [ 8] [12001400] +16:17:28 [ 49] [ 3] [418] +16:17:28 [ 54] [ 20] [0002418C000211598177] +16:17:28 ============================================================================ +16:17:28 Calculate Source COMM Id = 0 +16:17:28 ============================================================================ +16:17:28 + + +waiting on router queue for slot.... +16:17:29 ============================================================================ +16:17:29 Slot Id : <322> +16:17:29 Transaction Type : REQUEST +16:17:29 Received From : +16:17:29 ============================================================================ +16:17:29 FNo. Len. Field Value +16:17:29 ============================================================================ +16:17:29 [ 1] [ 4] [0200] +16:17:29 [ 2] [ 16] [6213544002132915] +16:17:29 [ 3] [ 6] [010000] +16:17:29 [ 4] [ 12] [000200000000] +16:17:29 [ 7] [ 10] [0320091634] +16:17:29 [ 11] [ 6] [270335] +16:17:29 [ 12] [ 6] [161634] +16:17:29 [ 13] [ 4] [0320] +16:17:29 [ 14] [ 4] [4912] +16:17:29 [ 15] [ 4] [0320] +16:17:29 [ 18] [ 4] [6011] +16:17:29 [ 19] [ 3] [418] +16:17:29 [ 22] [ 3] [021] +16:17:29 [ 25] [ 2] [01] +16:17:29 [ 28] [ 9] [D00002000] +16:17:29 [ 32] [ 6] [180893] +16:17:29 [ 35] [ 32] [6213544002132915=491212013291219] +16:17:29 [ 37] [ 12] [507909270335] +16:17:29 [ 41] [ 8] [0363CPSH] +16:17:29 [ 42] [ 15] [999999 ] +16:17:29 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:17:29 [ 49] [ 3] [418] +16:17:29 [ 52] [ 16] [D48423EA4E570BD3] +16:17:29 ============================================================================ +16:17:29 + + +waiting on router queue for slot.... +16:17:29 Sending to : +16:17:29 ============================================================================ +16:17:29 Sending to : +16:17:29 ============================================================================ +16:17:29 ============================================================================ +16:17:29 Slot Id : <322> +16:17:29 Transaction Type : REQUEST +16:17:29 Received From : +16:17:29 ============================================================================ +16:17:29 FNo. Len. Field Value +16:17:29 ============================================================================ +16:17:29 [ 1] [ 4] [0200] +16:17:29 [ 2] [ 16] [6213544002132915] +16:17:29 [ 3] [ 6] [010000] +16:17:29 [ 4] [ 12] [000200000000] +16:17:29 [ 7] [ 10] [0320091634] +16:17:29 [ 11] [ 6] [270335] +16:17:29 [ 12] [ 6] [161634] +16:17:29 [ 13] [ 4] [0320] +16:17:29 [ 14] [ 4] [4912] +16:17:29 [ 15] [ 4] [0320] +16:17:29 [ 18] [ 4] [6011] +16:17:29 [ 19] [ 3] [418] +16:17:29 [ 22] [ 3] [021] +16:17:29 [ 25] [ 2] [01] +16:17:29 [ 28] [ 9] [D00002000] +16:17:29 [ 32] [ 6] [180893] +16:17:29 [ 35] [ 32] [6213544002132915=491212013291219] +16:17:29 [ 37] [ 12] [507909270335] +16:17:29 [ 41] [ 8] [0363CPSH] +16:17:29 [ 42] [ 15] [999999 ] +16:17:29 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:17:29 [ 49] [ 3] [418] +16:17:29 [ 52] [ 16] [D48423EA4E570BD3] +16:17:29 ============================================================================ +16:17:29 + + +waiting on router queue for slot.... +16:17:29 Sending to : +16:17:29 ============================================================================ +16:17:29 ============================================================================ +16:17:29 Slot Id : <322> +16:17:29 Transaction Type : REQUEST +16:17:29 Received From : +16:17:29 ============================================================================ +16:17:29 FNo. Len. Field Value +16:17:29 ============================================================================ +16:17:29 [ 1] [ 4] [0200] +16:17:29 [ 2] [ 16] [6213544002132915] +16:17:29 [ 3] [ 6] [010000] +16:17:29 [ 4] [ 12] [000200000000] +16:17:29 [ 7] [ 10] [0320091634] +16:17:29 [ 11] [ 6] [270335] +16:17:29 [ 12] [ 6] [161634] +16:17:29 [ 13] [ 4] [0320] +16:17:29 [ 14] [ 4] [4912] +16:17:29 [ 15] [ 4] [0320] +16:17:29 [ 18] [ 4] [6011] +16:17:29 [ 19] [ 3] [418] +16:17:29 [ 22] [ 3] [021] +16:17:29 [ 25] [ 2] [01] +16:17:29 [ 28] [ 9] [D00002000] +16:17:29 [ 32] [ 6] [180893] +16:17:29 [ 35] [ 32] [6213544002132915=491212013291219] +16:17:29 [ 37] [ 12] [507909270335] +16:17:29 [ 41] [ 8] [0363CPSH] +16:17:29 [ 42] [ 15] [999999 ] +16:17:29 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:17:29 [ 49] [ 3] [418] +16:17:29 [ 52] [ 16] [79A37C6903DC7B60] +16:17:29 ============================================================================ +16:17:29 + + +waiting on router queue for slot.... +16:17:29 Sending to : <0> +16:17:29 ============================================================================ +16:17:29 ============================================================================ +16:17:29 Slot Id : <322> +16:17:29 Transaction Type : RESPONSE +16:17:29 Received From : +16:17:29 ============================================================================ +16:17:29 FNo. Len. Field Value +16:17:29 ============================================================================ +16:17:29 [ 1] [ 4] [0210] +16:17:29 [ 2] [ 16] [6213544002132915] +16:17:29 [ 3] [ 6] [010000] +16:17:29 [ 4] [ 12] [000200000000] +16:17:29 [ 7] [ 10] [0320091634] +16:17:29 [ 11] [ 6] [270335] +16:17:29 [ 12] [ 6] [161634] +16:17:29 [ 13] [ 4] [0320] +16:17:29 [ 15] [ 4] [0320] +16:17:29 [ 18] [ 4] [6011] +16:17:29 [ 19] [ 3] [418] +16:17:29 [ 22] [ 3] [021] +16:17:29 [ 32] [ 6] [180893] +16:17:29 [ 35] [ 32] [6213544002132915=491212013291219] +16:17:29 [ 37] [ 12] [507909270335] +16:17:29 [ 39] [ 2] [61] +16:17:29 [ 41] [ 8] [0363CPSH] +16:17:29 [ 49] [ 3] [418] +16:17:29 ============================================================================ +16:17:29 Sending to : +16:17:29 ============================================================================ +16:17:29 + + +waiting on router queue for slot.... +16:17:30 ============================================================================ +16:17:30 Slot Id : <322> +16:17:30 Transaction Type : RESPONSE +16:17:30 Received From : +16:17:30 ============================================================================ +16:17:30 FNo. Len. Field Value +16:17:30 ============================================================================ +16:17:30 [ 1] [ 4] [0210] +16:17:30 [ 2] [ 16] [6213544002132915] +16:17:30 [ 3] [ 6] [010000] +16:17:30 [ 4] [ 12] [000200000000] +16:17:30 [ 7] [ 10] [0320091634] +16:17:30 [ 11] [ 6] [270335] +16:17:30 [ 12] [ 6] [161634] +16:17:30 [ 13] [ 4] [0320] +16:17:30 [ 15] [ 4] [0320] +16:17:30 [ 18] [ 4] [6011] +16:17:30 [ 19] [ 3] [418] +16:17:30 [ 22] [ 3] [021] +16:17:30 [ 32] [ 6] [180893] +16:17:30 [ 35] [ 32] [6213544002132915=491212013291219] +16:17:30 [ 37] [ 12] [507909270335] +16:17:30 [ 39] [ 2] [61] +16:17:30 [ 41] [ 8] [0363CPSH] +16:17:30 [ 49] [ 3] [418] +16:17:30 ============================================================================ +16:17:30 Calculate Source COMM Id = 2 +16:17:30 ============================================================================ +16:17:30 + + +waiting on router queue for slot.... +16:17:37 ============================================================================ +16:17:37 Slot Id : <325> +16:17:37 Transaction Type : REQUEST +16:17:37 Received From : +16:17:37 ============================================================================ +16:17:37 FNo. Len. Field Value +16:17:37 ============================================================================ +16:17:37 [ 1] [ 4] [0200] +16:17:37 [ 2] [ 16] [6688990108424209] +16:17:37 [ 3] [ 6] [010000] +16:17:37 [ 4] [ 12] [000100000000] +16:17:37 [ 7] [ 10] [0320161732] +16:17:37 [ 11] [ 6] [796285] +16:17:37 [ 12] [ 6] [161732] +16:17:37 [ 13] [ 4] [0320] +16:17:37 [ 15] [ 4] [0320] +16:17:37 [ 18] [ 4] [6011] +16:17:37 [ 22] [ 3] [900] +16:17:37 [ 25] [ 2] [02] +16:17:37 [ 28] [ 9] [D00002000] +16:17:37 [ 32] [ 6] [621354] +16:17:37 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:17:37 [ 37] [ 12] [507903499579] +16:17:37 [ 41] [ 8] [06002200] +16:17:37 [ 42] [ 15] [NATIVE ] +16:17:37 [ 43] [ 40] [Beng Market Beng LAO] +16:17:37 [ 49] [ 3] [418] +16:17:37 [ 52] [ 16] [50FF66322288B481] +16:17:37 ============================================================================ +16:17:37 + + +waiting on router queue for slot.... +16:17:37 Sending to : +16:17:37 ============================================================================ +16:17:37 Sending to : +16:17:37 ============================================================================ +16:17:37 ============================================================================ +16:17:37 Slot Id : <325> +16:17:37 Transaction Type : REQUEST +16:17:37 Received From : +16:17:37 ============================================================================ +16:17:37 FNo. Len. Field Value +16:17:37 ============================================================================ +16:17:37 [ 1] [ 4] [0200] +16:17:37 [ 2] [ 16] [6688990108424209] +16:17:37 [ 3] [ 6] [010000] +16:17:37 [ 4] [ 12] [000100000000] +16:17:37 [ 7] [ 10] [0320161732] +16:17:37 [ 11] [ 6] [796285] +16:17:37 [ 12] [ 6] [161732] +16:17:37 [ 13] [ 4] [0320] +16:17:37 [ 15] [ 4] [0320] +16:17:37 [ 18] [ 4] [6011] +16:17:37 [ 22] [ 3] [900] +16:17:37 [ 25] [ 2] [02] +16:17:37 [ 28] [ 9] [D00002000] +16:17:37 [ 32] [ 6] [621354] +16:17:37 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:17:37 [ 37] [ 12] [507903499579] +16:17:37 [ 41] [ 8] [06002200] +16:17:37 [ 42] [ 15] [NATIVE ] +16:17:37 [ 43] [ 40] [Beng Market Beng LAO] +16:17:37 [ 49] [ 3] [418] +16:17:37 [ 52] [ 16] [50FF66322288B481] +16:17:37 ============================================================================ +16:17:37 + + +waiting on router queue for slot.... +16:17:37 Sending to : +16:17:37 ============================================================================ +16:17:37 ============================================================================ +16:17:37 Slot Id : <325> +16:17:37 Transaction Type : REQUEST +16:17:37 Received From : +16:17:37 ============================================================================ +16:17:37 FNo. Len. Field Value +16:17:37 ============================================================================ +16:17:37 [ 1] [ 4] [0200] +16:17:37 [ 2] [ 16] [6688990108424209] +16:17:37 [ 3] [ 6] [010000] +16:17:37 [ 4] [ 12] [000100000000] +16:17:37 [ 7] [ 10] [0320161732] +16:17:37 [ 11] [ 6] [796285] +16:17:37 [ 12] [ 6] [161732] +16:17:37 [ 13] [ 4] [0320] +16:17:37 [ 15] [ 4] [0320] +16:17:37 [ 18] [ 4] [6011] +16:17:37 [ 22] [ 3] [900] +16:17:37 [ 25] [ 2] [02] +16:17:37 [ 28] [ 9] [D00002000] +16:17:37 [ 32] [ 6] [621354] +16:17:37 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:17:37 [ 37] [ 12] [507903499579] +16:17:37 [ 41] [ 8] [06002200] +16:17:37 [ 42] [ 15] [NATIVE ] +16:17:37 [ 43] [ 40] [Beng Market Beng LAO] +16:17:37 [ 49] [ 3] [418] +16:17:37 [ 52] [ 16] [18594C5E4BD5B510] +16:17:37 ============================================================================ +16:17:37 + + +waiting on router queue for slot.... +16:17:37 Sending to : <4> +16:17:37 ============================================================================ +16:17:38 ============================================================================ +16:17:38 Slot Id : <325> +16:17:38 Transaction Type : RESPONSE +16:17:38 Received From : +16:17:38 ============================================================================ +16:17:38 FNo. Len. Field Value +16:17:38 ============================================================================ +16:17:38 [ 1] [ 4] [0210] +16:17:38 [ 2] [ 16] [6688990108424209] +16:17:38 [ 3] [ 6] [010000] +16:17:38 [ 4] [ 12] [000100000000] +16:17:38 [ 11] [ 6] [796285] +16:17:38 [ 12] [ 6] [161732] +16:17:38 [ 15] [ 4] [0320] +16:17:38 [ 18] [ 4] [6011] +16:17:38 [ 32] [ 6] [621354] +16:17:38 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:17:38 [ 37] [ 12] [507903499579] +16:17:38 [ 38] [ 6] [714834] +16:17:38 [ 39] [ 2] [00] +16:17:38 [ 41] [ 8] [06002200] +16:17:38 [ 49] [ 3] [418] +16:17:38 [ 54] [ 20] [0002418C000381359720] +16:17:38 ============================================================================ +16:17:38 Sending to : +16:17:38 ============================================================================ +16:17:38 + + +waiting on router queue for slot.... +16:17:40 ============================================================================ +16:17:40 Slot Id : <325> +16:17:40 Transaction Type : RESPONSE +16:17:40 Received From : +16:17:40 ============================================================================ +16:17:40 FNo. Len. Field Value +16:17:40 ============================================================================ +16:17:40 [ 1] [ 4] [0210] +16:17:40 [ 2] [ 16] [6688990108424209] +16:17:40 [ 3] [ 6] [010000] +16:17:40 [ 4] [ 12] [000100000000] +16:17:40 [ 11] [ 6] [796285] +16:17:40 [ 12] [ 6] [161732] +16:17:40 [ 15] [ 4] [0320] +16:17:40 [ 18] [ 4] [6011] +16:17:40 [ 32] [ 6] [621354] +16:17:40 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:17:40 [ 37] [ 12] [507903499579] +16:17:40 [ 38] [ 6] [714834] +16:17:40 [ 39] [ 2] [00] +16:17:40 [ 41] [ 8] [06002200] +16:17:40 [ 49] [ 3] [418] +16:17:40 [ 54] [ 20] [0002418C000381359720] +16:17:40 ============================================================================ +16:17:40 Calculate Source COMM Id = 0 +16:17:40 ============================================================================ +16:17:40 + + +waiting on router queue for slot.... +16:17:41 ============================================================================ +16:17:41 Slot Id : <315> +16:17:41 Transaction Type : REQUEST +16:17:41 Received From : +16:17:41 ============================================================================ +16:17:41 FNo. Len. Field Value +16:17:41 ============================================================================ +16:17:41 [ 1] [ 4] [0800] +16:17:41 [ 7] [ 10] [0320091648] +16:17:41 [ 11] [ 6] [157204] +16:17:41 [ 70] [ 3] [301] +16:17:41 ============================================================================ +16:17:41 + + +waiting on router queue for slot.... +16:17:41 Sending to : +16:17:41 ============================================================================ +16:17:41 ============================================================================ +16:17:41 Slot Id : <315> +16:17:41 Transaction Type : RESPONSE +16:17:41 Received From : +16:17:41 ============================================================================ +16:17:41 FNo. Len. Field Value +16:17:41 ============================================================================ +16:17:41 [ 1] [ 4] [0810] +16:17:41 [ 7] [ 10] [0320091648] +16:17:41 [ 11] [ 6] [157204] +16:17:41 [ 39] [ 2] [00] +16:17:41 [ 70] [ 3] [301] +16:17:41 ============================================================================ +16:17:41 Calculate Source COMM Id = 2 +16:17:41 ============================================================================ +16:17:41 + + +waiting on router queue for slot.... +16:17:49 ============================================================================ +16:17:49 Slot Id : <304> +16:17:49 Transaction Type : REQUEST +16:17:49 Received From : +16:17:49 ============================================================================ +16:17:49 FNo. Len. Field Value +16:17:49 ============================================================================ +16:17:49 [ 1] [ 4] [0200] +16:17:49 [ 2] [ 16] [6213544001286001] +16:17:49 [ 3] [ 6] [011000] +16:17:49 [ 4] [ 12] [000030000000] +16:17:49 [ 7] [ 10] [0320091656] +16:17:49 [ 11] [ 6] [270338] +16:17:49 [ 12] [ 6] [161656] +16:17:49 [ 13] [ 4] [0320] +16:17:49 [ 14] [ 4] [4912] +16:17:49 [ 15] [ 4] [0320] +16:17:49 [ 18] [ 4] [6011] +16:17:49 [ 19] [ 3] [418] +16:17:49 [ 22] [ 3] [021] +16:17:49 [ 25] [ 2] [01] +16:17:49 [ 28] [ 9] [D00002000] +16:17:49 [ 32] [ 6] [180893] +16:17:49 [ 35] [ 32] [6213544001286001=491212018600756] +16:17:49 [ 37] [ 12] [507909270338] +16:17:49 [ 41] [ 8] [0528LPBP] +16:17:49 [ 42] [ 15] [999999 ] +16:17:49 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:17:49 [ 49] [ 3] [418] +16:17:49 [ 52] [ 16] [205906194E48335A] +16:17:49 ============================================================================ +16:17:49 + + +waiting on router queue for slot.... +16:17:49 Sending to : +16:17:49 ============================================================================ +16:17:49 Sending to : +16:17:49 ============================================================================ +16:17:50 ============================================================================ +16:17:50 Slot Id : <304> +16:17:50 Transaction Type : REQUEST +16:17:50 Received From : +16:17:50 ============================================================================ +16:17:50 FNo. Len. Field Value +16:17:50 ============================================================================ +16:17:50 [ 1] [ 4] [0200] +16:17:50 [ 2] [ 16] [6213544001286001] +16:17:50 [ 3] [ 6] [011000] +16:17:50 [ 4] [ 12] [000030000000] +16:17:50 [ 7] [ 10] [0320091656] +16:17:50 [ 11] [ 6] [270338] +16:17:50 [ 12] [ 6] [161656] +16:17:50 [ 13] [ 4] [0320] +16:17:50 [ 14] [ 4] [4912] +16:17:50 [ 15] [ 4] [0320] +16:17:50 [ 18] [ 4] [6011] +16:17:50 [ 19] [ 3] [418] +16:17:50 [ 22] [ 3] [021] +16:17:50 [ 25] [ 2] [01] +16:17:50 [ 28] [ 9] [D00002000] +16:17:50 [ 32] [ 6] [180893] +16:17:50 [ 35] [ 32] [6213544001286001=491212018600756] +16:17:50 [ 37] [ 12] [507909270338] +16:17:50 [ 41] [ 8] [0528LPBP] +16:17:50 [ 42] [ 15] [999999 ] +16:17:50 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:17:50 [ 49] [ 3] [418] +16:17:50 [ 52] [ 16] [205906194E48335A] +16:17:50 ============================================================================ +16:17:50 + + +waiting on router queue for slot.... +16:17:50 Sending to : +16:17:50 ============================================================================ +16:17:50 ============================================================================ +16:17:50 Slot Id : <304> +16:17:50 Transaction Type : REQUEST +16:17:50 Received From : +16:17:50 ============================================================================ +16:17:50 FNo. Len. Field Value +16:17:50 ============================================================================ +16:17:50 [ 1] [ 4] [0200] +16:17:50 [ 2] [ 16] [6213544001286001] +16:17:50 [ 3] [ 6] [011000] +16:17:50 [ 4] [ 12] [000030000000] +16:17:50 [ 7] [ 10] [0320091656] +16:17:50 [ 11] [ 6] [270338] +16:17:50 [ 12] [ 6] [161656] +16:17:50 [ 13] [ 4] [0320] +16:17:50 [ 14] [ 4] [4912] +16:17:50 [ 15] [ 4] [0320] +16:17:50 [ 18] [ 4] [6011] +16:17:50 [ 19] [ 3] [418] +16:17:50 [ 22] [ 3] [021] +16:17:50 [ 25] [ 2] [01] +16:17:50 [ 28] [ 9] [D00002000] +16:17:50 [ 32] [ 6] [180893] +16:17:50 [ 35] [ 32] [6213544001286001=491212018600756] +16:17:50 [ 37] [ 12] [507909270338] +16:17:50 [ 41] [ 8] [0528LPBP] +16:17:50 [ 42] [ 15] [999999 ] +16:17:50 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +16:17:50 [ 49] [ 3] [418] +16:17:50 [ 52] [ 16] [66E232C36EE5B15E] +16:17:50 ============================================================================ +16:17:50 + + +waiting on router queue for slot.... +16:17:50 Sending to : <0> +16:17:50 ============================================================================ +16:17:50 ============================================================================ +16:17:50 Slot Id : <304> +16:17:50 Transaction Type : RESPONSE +16:17:50 Received From : +16:17:50 ============================================================================ +16:17:50 FNo. Len. Field Value +16:17:50 ============================================================================ +16:17:50 [ 1] [ 4] [0210] +16:17:50 [ 2] [ 16] [6213544001286001] +16:17:50 [ 3] [ 6] [011000] +16:17:50 [ 4] [ 12] [000030000000] +16:17:50 [ 7] [ 10] [0320091656] +16:17:50 [ 11] [ 6] [270338] +16:17:50 [ 12] [ 6] [161656] +16:17:50 [ 13] [ 4] [0320] +16:17:50 [ 15] [ 4] [0320] +16:17:50 [ 18] [ 4] [6011] +16:17:50 [ 19] [ 3] [418] +16:17:50 [ 32] [ 6] [180893] +16:17:50 [ 35] [ 32] [6213544001286001=491212018600756] +16:17:50 [ 37] [ 12] [507909270338] +16:17:50 [ 38] [ 6] [432563] +16:17:50 [ 39] [ 2] [00] +16:17:50 [ 41] [ 8] [0528LPBP] +16:17:50 [ 49] [ 3] [418] +16:17:50 [ 54] [ 40] [1001418C0001451831021002418C000145183102] +16:17:50 ============================================================================ +16:17:50 Sending to : +16:17:50 ============================================================================ +16:17:50 + + +waiting on router queue for slot.... +16:17:51 ============================================================================ +16:17:51 Slot Id : <297> +16:17:51 Transaction Type : REQUEST +16:17:51 Received From : +16:17:51 ============================================================================ +16:17:51 FNo. Len. Field Value +16:17:51 ============================================================================ +16:17:51 [ 1] [ 4] [0800] +16:17:51 [ 7] [ 10] [0320091658] +16:17:51 [ 11] [ 6] [157205] +16:17:51 [ 70] [ 3] [301] +16:17:51 ============================================================================ +16:17:51 + + +waiting on router queue for slot.... +16:17:51 Sending to : +16:17:51 ============================================================================ +16:17:51 ============================================================================ +16:17:51 Slot Id : <297> +16:17:51 Transaction Type : RESPONSE +16:17:51 Received From : +16:17:51 ============================================================================ +16:17:51 FNo. Len. Field Value +16:17:51 ============================================================================ +16:17:51 [ 1] [ 4] [0810] +16:17:51 [ 7] [ 10] [0320091658] +16:17:51 [ 11] [ 6] [157205] +16:17:51 [ 39] [ 2] [00] +16:17:51 [ 70] [ 3] [301] +16:17:51 ============================================================================ +16:17:51 Calculate Source COMM Id = 2 +16:17:51 ============================================================================ +16:17:51 + + +waiting on router queue for slot.... +16:17:52 ============================================================================ +16:17:52 Slot Id : <304> +16:17:52 Transaction Type : RESPONSE +16:17:52 Received From : +16:17:52 ============================================================================ +16:17:52 FNo. Len. Field Value +16:17:52 ============================================================================ +16:17:52 [ 1] [ 4] [0210] +16:17:52 [ 2] [ 16] [6213544001286001] +16:17:52 [ 3] [ 6] [011000] +16:17:52 [ 4] [ 12] [000030000000] +16:17:52 [ 7] [ 10] [0320091656] +16:17:52 [ 11] [ 6] [270338] +16:17:52 [ 12] [ 6] [161656] +16:17:52 [ 13] [ 4] [0320] +16:17:52 [ 15] [ 4] [0320] +16:17:52 [ 18] [ 4] [6011] +16:17:52 [ 19] [ 3] [418] +16:17:52 [ 32] [ 6] [180893] +16:17:52 [ 35] [ 32] [6213544001286001=491212018600756] +16:17:52 [ 37] [ 12] [507909270338] +16:17:52 [ 38] [ 6] [432563] +16:17:52 [ 39] [ 2] [00] +16:17:52 [ 41] [ 8] [0528LPBP] +16:17:52 [ 49] [ 3] [418] +16:17:52 [ 54] [ 40] [1001418C0001451831021002418C000145183102] +16:17:52 ============================================================================ +16:17:52 Calculate Source COMM Id = 2 +16:17:52 ============================================================================ +16:17:52 + + +waiting on router queue for slot.... +16:17:56 ============================================================================ +16:17:56 Slot Id : <289> +16:17:56 Transaction Type : REQUEST +16:17:56 Received From : +16:17:56 ============================================================================ +16:17:56 FNo. Len. Field Value +16:17:56 ============================================================================ +16:17:56 [ 1] [ 4] [0200] +16:17:56 [ 2] [ 16] [6688990602440909] +16:17:56 [ 3] [ 6] [010000] +16:17:56 [ 4] [ 12] [000100000000] +16:17:56 [ 7] [ 10] [0320161751] +16:17:56 [ 11] [ 6] [796368] +16:17:56 [ 12] [ 6] [161751] +16:17:56 [ 13] [ 4] [0320] +16:17:56 [ 15] [ 4] [0320] +16:17:56 [ 18] [ 4] [6011] +16:17:56 [ 22] [ 3] [900] +16:17:56 [ 25] [ 2] [02] +16:17:56 [ 28] [ 9] [D00002000] +16:17:56 [ 32] [ 6] [621354] +16:17:56 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:17:56 [ 37] [ 12] [507903345200] +16:17:56 [ 41] [ 8] [13001400] +16:17:56 [ 42] [ 15] [NATIVE ] +16:17:56 [ 43] [ 40] [Kham Unit Kham LAO] +16:17:56 [ 49] [ 3] [418] +16:17:56 [ 52] [ 16] [0292AB8CFA5F7939] +16:17:56 ============================================================================ +16:17:56 + + +waiting on router queue for slot.... +16:17:56 Sending to : +16:17:56 ============================================================================ +16:17:56 Sending to : +16:17:56 ============================================================================ +16:17:56 ============================================================================ +16:17:56 Slot Id : <289> +16:17:56 Transaction Type : REQUEST +16:17:56 Received From : +16:17:56 ============================================================================ +16:17:56 FNo. Len. Field Value +16:17:56 ============================================================================ +16:17:56 [ 1] [ 4] [0200] +16:17:56 [ 2] [ 16] [6688990602440909] +16:17:56 [ 3] [ 6] [010000] +16:17:56 [ 4] [ 12] [000100000000] +16:17:56 [ 7] [ 10] [0320161751] +16:17:56 [ 11] [ 6] [796368] +16:17:56 [ 12] [ 6] [161751] +16:17:56 [ 13] [ 4] [0320] +16:17:56 [ 15] [ 4] [0320] +16:17:56 [ 18] [ 4] [6011] +16:17:56 [ 22] [ 3] [900] +16:17:56 [ 25] [ 2] [02] +16:17:56 [ 28] [ 9] [D00002000] +16:17:56 [ 32] [ 6] [621354] +16:17:56 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:17:56 [ 37] [ 12] [507903345200] +16:17:56 [ 41] [ 8] [13001400] +16:17:56 [ 42] [ 15] [NATIVE ] +16:17:56 [ 43] [ 40] [Kham Unit Kham LAO] +16:17:56 [ 49] [ 3] [418] +16:17:56 [ 52] [ 16] [0292AB8CFA5F7939] +16:17:56 ============================================================================ +16:17:56 + + +waiting on router queue for slot.... +16:17:56 Sending to : +16:17:56 ============================================================================ +16:17:56 ============================================================================ +16:17:56 Slot Id : <289> +16:17:56 Transaction Type : REQUEST +16:17:56 Received From : +16:17:56 ============================================================================ +16:17:56 FNo. Len. Field Value +16:17:56 ============================================================================ +16:17:56 [ 1] [ 4] [0200] +16:17:56 [ 2] [ 16] [6688990602440909] +16:17:56 [ 3] [ 6] [010000] +16:17:56 [ 4] [ 12] [000100000000] +16:17:56 [ 7] [ 10] [0320161751] +16:17:56 [ 11] [ 6] [796368] +16:17:56 [ 12] [ 6] [161751] +16:17:56 [ 13] [ 4] [0320] +16:17:56 [ 15] [ 4] [0320] +16:17:56 [ 18] [ 4] [6011] +16:17:56 [ 22] [ 3] [900] +16:17:56 [ 25] [ 2] [02] +16:17:56 [ 28] [ 9] [D00002000] +16:17:56 [ 32] [ 6] [621354] +16:17:56 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:17:56 [ 37] [ 12] [507903345200] +16:17:56 [ 41] [ 8] [13001400] +16:17:56 [ 42] [ 15] [NATIVE ] +16:17:56 [ 43] [ 40] [Kham Unit Kham LAO] +16:17:56 [ 49] [ 3] [418] +16:17:56 [ 52] [ 16] [A420D7A5ED0BD428] +16:17:56 ============================================================================ +16:17:56 + + +waiting on router queue for slot.... +16:17:56 Sending to : <4> +16:17:56 ============================================================================ +16:17:58 ============================================================================ +16:17:58 Slot Id : <289> +16:17:58 Transaction Type : RESPONSE +16:17:58 Received From : +16:17:58 ============================================================================ +16:17:58 FNo. Len. Field Value +16:17:58 ============================================================================ +16:17:58 [ 1] [ 4] [0210] +16:17:58 [ 2] [ 16] [6688990602440909] +16:17:58 [ 3] [ 6] [010000] +16:17:58 [ 4] [ 12] [000100000000] +16:17:58 [ 11] [ 6] [796368] +16:17:58 [ 12] [ 6] [161751] +16:17:58 [ 15] [ 4] [0320] +16:17:58 [ 18] [ 4] [6011] +16:17:58 [ 32] [ 6] [621354] +16:17:58 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:17:58 [ 37] [ 12] [507903345200] +16:17:58 [ 38] [ 6] [917544] +16:17:58 [ 39] [ 2] [00] +16:17:58 [ 41] [ 8] [13001400] +16:17:58 [ 49] [ 3] [418] +16:17:58 [ 54] [ 20] [0002418C000440585834] +16:17:58 ============================================================================ +16:17:58 Sending to : +16:17:58 ============================================================================ +16:17:58 + + +waiting on router queue for slot.... +16:17:59 ============================================================================ +16:17:59 Slot Id : <289> +16:17:59 Transaction Type : RESPONSE +16:17:59 Received From : +16:17:59 ============================================================================ +16:17:59 FNo. Len. Field Value +16:17:59 ============================================================================ +16:17:59 [ 1] [ 4] [0210] +16:17:59 [ 2] [ 16] [6688990602440909] +16:17:59 [ 3] [ 6] [010000] +16:17:59 [ 4] [ 12] [000100000000] +16:17:59 [ 11] [ 6] [796368] +16:17:59 [ 12] [ 6] [161751] +16:17:59 [ 15] [ 4] [0320] +16:17:59 [ 18] [ 4] [6011] +16:17:59 [ 32] [ 6] [621354] +16:17:59 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:17:59 [ 37] [ 12] [507903345200] +16:17:59 [ 38] [ 6] [917544] +16:17:59 [ 39] [ 2] [00] +16:17:59 [ 41] [ 8] [13001400] +16:17:59 [ 49] [ 3] [418] +16:17:59 [ 54] [ 20] [0002418C000440585834] +16:17:59 ============================================================================ +16:17:59 Calculate Source COMM Id = 0 +16:17:59 ============================================================================ +16:17:59 + + +waiting on router queue for slot.... +16:18:07 ============================================================================ +16:18:07 Slot Id : <326> +16:18:07 Transaction Type : REQUEST +16:18:07 Received From : +16:18:07 ============================================================================ +16:18:07 FNo. Len. Field Value +16:18:07 ============================================================================ +16:18:07 [ 1] [ 4] [0800] +16:18:07 [ 7] [ 10] [0320091714] +16:18:07 [ 11] [ 6] [157206] +16:18:07 [ 70] [ 3] [301] +16:18:07 ============================================================================ +16:18:07 + + +waiting on router queue for slot.... +16:18:07 Sending to : +16:18:07 ============================================================================ +16:18:07 ============================================================================ +16:18:07 Slot Id : <326> +16:18:07 Transaction Type : RESPONSE +16:18:07 Received From : +16:18:07 ============================================================================ +16:18:07 FNo. Len. Field Value +16:18:07 ============================================================================ +16:18:07 [ 1] [ 4] [0810] +16:18:07 [ 7] [ 10] [0320091714] +16:18:07 [ 11] [ 6] [157206] +16:18:07 [ 39] [ 2] [00] +16:18:07 [ 70] [ 3] [301] +16:18:07 ============================================================================ +16:18:07 Calculate Source COMM Id = 2 +16:18:07 ============================================================================ +16:18:07 + + +waiting on router queue for slot.... +16:18:09 ============================================================================ +16:18:09 Slot Id : <285> +16:18:09 Transaction Type : REQUEST +16:18:09 Received From : +16:18:09 ============================================================================ +16:18:09 FNo. Len. Field Value +16:18:09 ============================================================================ +16:18:09 [ 1] [ 4] [0800] +16:18:09 [ 7] [ 10] [0320232957] +16:18:09 [ 11] [ 6] [162957] +16:18:09 [ 37] [ 12] [57916162957] +16:18:09 [ 70] [ 3] [301] +16:18:09 ============================================================================ +16:18:09 + + +waiting on router queue for slot.... +16:18:09 Sending to : +16:18:09 ============================================================================ +16:18:09 ============================================================================ +16:18:09 Slot Id : <285> +16:18:09 Transaction Type : RESPONSE +16:18:09 Received From : +16:18:09 ============================================================================ +16:18:09 FNo. Len. Field Value +16:18:09 ============================================================================ +16:18:09 [ 1] [ 4] [0810] +16:18:09 [ 7] [ 10] [0320232957] +16:18:09 [ 11] [ 6] [162957] +16:18:09 [ 37] [ 12] [579161629570] +16:18:09 [ 39] [ 2] [00] +16:18:09 [ 70] [ 3] [810] +16:18:09 ============================================================================ +16:18:09 Calculate Source COMM Id = 6 +16:18:09 ============================================================================ +16:18:09 + + +waiting on router queue for slot.... +16:18:11 ============================================================================ +16:18:11 Slot Id : <301> +16:18:11 Transaction Type : REQUEST +16:18:11 Received From : +16:18:11 ============================================================================ +16:18:11 FNo. Len. Field Value +16:18:11 ============================================================================ +16:18:11 [ 1] [ 4] [0800] +16:18:11 [ 2] [ 5] [02531] +16:18:11 [ 3] [ 6] [579168] +16:18:11 [ 7] [ 10] [0320091811] +16:18:11 [ 11] [ 6] [807358] +16:18:11 [ 15] [ 10] [0320091811] +16:18:11 [ 37] [ 11] [57916807358] +16:18:11 [ 70] [ 3] [001] +16:18:11 ============================================================================ +16:18:11 + + +waiting on router queue for slot.... +16:18:11 ============================================================================ +16:18:11 Slot Id : <301> +16:18:11 Transaction Type : RESPONSE +16:18:11 Received From : +16:18:11 ============================================================================ +16:18:11 FNo. Len. Field Value +16:18:11 ============================================================================ +16:18:11 [ 1] [ 4] [0810] +16:18:11 [ 7] [ 10] [0320091811] +16:18:11 [ 11] [ 6] [807358] +16:18:11 [ 15] [ 4] [0320] +16:18:11 [ 37] [ 12] [57916807358] +16:18:11 [ 39] [ 2] [00] +16:18:11 [ 70] [ 3] [001] +16:18:11 ============================================================================ +16:18:11 Sending to : +16:18:11 ============================================================================ +16:18:11 + + +waiting on router queue for slot.... +16:18:18 ============================================================================ +16:18:18 Slot Id : <291> +16:18:18 Transaction Type : REQUEST +16:18:18 Received From : +16:18:18 ============================================================================ +16:18:18 FNo. Len. Field Value +16:18:18 ============================================================================ +16:18:18 [ 1] [ 4] [0800] +16:18:18 [ 7] [ 10] [0320091724] +16:18:18 [ 11] [ 6] [157207] +16:18:18 [ 70] [ 3] [301] +16:18:18 ============================================================================ +16:18:18 + + +waiting on router queue for slot.... +16:18:18 Sending to : +16:18:18 ============================================================================ +16:18:18 ============================================================================ +16:18:18 Slot Id : <291> +16:18:18 Transaction Type : RESPONSE +16:18:18 Received From : +16:18:18 ============================================================================ +16:18:18 FNo. Len. Field Value +16:18:18 ============================================================================ +16:18:18 [ 1] [ 4] [0810] +16:18:18 [ 7] [ 10] [0320091724] +16:18:18 [ 11] [ 6] [157207] +16:18:18 [ 39] [ 2] [00] +16:18:18 [ 70] [ 3] [301] +16:18:18 ============================================================================ +16:18:18 Calculate Source COMM Id = 2 +16:18:18 ============================================================================ +16:18:18 + + +waiting on router queue for slot.... +16:18:21 ============================================================================ +16:18:21 Slot Id : <327> +16:18:21 Transaction Type : REQUEST +16:18:21 Received From : +16:18:21 ============================================================================ +16:18:21 FNo. Len. Field Value +16:18:21 ============================================================================ +16:18:21 [ 1] [ 4] [0200] +16:18:21 [ 2] [ 16] [6213544002132915] +16:18:21 [ 3] [ 6] [010000] +16:18:21 [ 4] [ 12] [000010000000] +16:18:21 [ 7] [ 10] [0320091727] +16:18:21 [ 11] [ 6] [270342] +16:18:21 [ 12] [ 6] [161727] +16:18:21 [ 13] [ 4] [0320] +16:18:21 [ 14] [ 4] [4912] +16:18:21 [ 15] [ 4] [0320] +16:18:21 [ 18] [ 4] [6011] +16:18:21 [ 19] [ 3] [418] +16:18:21 [ 22] [ 3] [021] +16:18:21 [ 25] [ 2] [01] +16:18:21 [ 28] [ 9] [D00002000] +16:18:21 [ 32] [ 6] [180893] +16:18:21 [ 35] [ 32] [6213544002132915=491212013291219] +16:18:21 [ 37] [ 12] [507909270342] +16:18:21 [ 41] [ 8] [0363CPSH] +16:18:21 [ 42] [ 15] [999999 ] +16:18:21 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:18:21 [ 49] [ 3] [418] +16:18:21 [ 52] [ 16] [D48423EA4E570BD3] +16:18:21 ============================================================================ +16:18:21 + + +waiting on router queue for slot.... +16:18:21 Sending to : +16:18:21 ============================================================================ +16:18:21 Sending to : +16:18:21 ============================================================================ +16:18:21 ============================================================================ +16:18:21 Slot Id : <327> +16:18:21 Transaction Type : REQUEST +16:18:21 Received From : +16:18:21 ============================================================================ +16:18:21 FNo. Len. Field Value +16:18:21 ============================================================================ +16:18:21 [ 1] [ 4] [0200] +16:18:21 [ 2] [ 16] [6213544002132915] +16:18:21 [ 3] [ 6] [010000] +16:18:21 [ 4] [ 12] [000010000000] +16:18:21 [ 7] [ 10] [0320091727] +16:18:21 [ 11] [ 6] [270342] +16:18:21 [ 12] [ 6] [161727] +16:18:21 [ 13] [ 4] [0320] +16:18:21 [ 14] [ 4] [4912] +16:18:21 [ 15] [ 4] [0320] +16:18:21 [ 18] [ 4] [6011] +16:18:21 [ 19] [ 3] [418] +16:18:21 [ 22] [ 3] [021] +16:18:21 [ 25] [ 2] [01] +16:18:21 [ 28] [ 9] [D00002000] +16:18:21 [ 32] [ 6] [180893] +16:18:21 [ 35] [ 32] [6213544002132915=491212013291219] +16:18:21 [ 37] [ 12] [507909270342] +16:18:21 [ 41] [ 8] [0363CPSH] +16:18:21 [ 42] [ 15] [999999 ] +16:18:21 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:18:21 [ 49] [ 3] [418] +16:18:21 [ 52] [ 16] [D48423EA4E570BD3] +16:18:21 ============================================================================ +16:18:21 + + +waiting on router queue for slot.... +16:18:21 Sending to : +16:18:21 ============================================================================ +16:18:21 ============================================================================ +16:18:21 Slot Id : <327> +16:18:21 Transaction Type : REQUEST +16:18:21 Received From : +16:18:21 ============================================================================ +16:18:21 FNo. Len. Field Value +16:18:21 ============================================================================ +16:18:21 [ 1] [ 4] [0200] +16:18:21 [ 2] [ 16] [6213544002132915] +16:18:21 [ 3] [ 6] [010000] +16:18:21 [ 4] [ 12] [000010000000] +16:18:21 [ 7] [ 10] [0320091727] +16:18:21 [ 11] [ 6] [270342] +16:18:21 [ 12] [ 6] [161727] +16:18:21 [ 13] [ 4] [0320] +16:18:21 [ 14] [ 4] [4912] +16:18:21 [ 15] [ 4] [0320] +16:18:21 [ 18] [ 4] [6011] +16:18:21 [ 19] [ 3] [418] +16:18:21 [ 22] [ 3] [021] +16:18:21 [ 25] [ 2] [01] +16:18:21 [ 28] [ 9] [D00002000] +16:18:21 [ 32] [ 6] [180893] +16:18:21 [ 35] [ 32] [6213544002132915=491212013291219] +16:18:21 [ 37] [ 12] [507909270342] +16:18:21 [ 41] [ 8] [0363CPSH] +16:18:21 [ 42] [ 15] [999999 ] +16:18:21 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:18:21 [ 49] [ 3] [418] +16:18:21 [ 52] [ 16] [79A37C6903DC7B60] +16:18:21 ============================================================================ +16:18:21 + + +waiting on router queue for slot.... +16:18:21 Sending to : <0> +16:18:21 ============================================================================ +16:18:25 ============================================================================ +16:18:25 Slot Id : <327> +16:18:25 Transaction Type : RESPONSE +16:18:25 Received From : +16:18:25 ============================================================================ +16:18:25 FNo. Len. Field Value +16:18:25 ============================================================================ +16:18:25 [ 1] [ 4] [0210] +16:18:25 [ 2] [ 16] [6213544002132915] +16:18:25 [ 3] [ 6] [010000] +16:18:25 [ 4] [ 12] [000010000000] +16:18:25 [ 7] [ 10] [0320091727] +16:18:25 [ 11] [ 6] [270342] +16:18:25 [ 12] [ 6] [161727] +16:18:25 [ 13] [ 4] [0320] +16:18:25 [ 15] [ 4] [0320] +16:18:25 [ 18] [ 4] [6011] +16:18:25 [ 19] [ 3] [418] +16:18:25 [ 32] [ 6] [180893] +16:18:25 [ 35] [ 32] [6213544002132915=491212013291219] +16:18:25 [ 37] [ 12] [507909270342] +16:18:25 [ 38] [ 6] [985261] +16:18:25 [ 39] [ 2] [00] +16:18:25 [ 41] [ 8] [0363CPSH] +16:18:25 [ 49] [ 3] [418] +16:18:25 [ 54] [ 40] [0001418C0000536258900002418C000053625890] +16:18:25 ============================================================================ +16:18:25 Sending to : +16:18:25 ============================================================================ +16:18:25 + + +waiting on router queue for slot.... +16:18:25 ============================================================================ +16:18:25 Slot Id : <305> +16:18:25 Transaction Type : REQUEST +16:18:25 Received From : +16:18:25 ============================================================================ +16:18:25 FNo. Len. Field Value +16:18:25 ============================================================================ +16:18:25 [ 1] [ 4] [0200] +16:18:25 [ 2] [ 16] [6688990040074930] +16:18:25 [ 3] [ 6] [301000] +16:18:25 [ 4] [ 12] [000000000000] +16:18:25 [ 7] [ 10] [0320161821] +16:18:25 [ 11] [ 6] [796493] +16:18:25 [ 12] [ 6] [161821] +16:18:25 [ 13] [ 4] [0320] +16:18:25 [ 15] [ 4] [0320] +16:18:25 [ 18] [ 4] [6011] +16:18:25 [ 22] [ 3] [900] +16:18:25 [ 25] [ 2] [02] +16:18:25 [ 28] [ 9] [D00000000] +16:18:25 [ 32] [ 6] [621354] +16:18:25 [ 35] [ 37] [6688990040074930=98011261085047400000] +16:18:25 [ 37] [ 12] [507904910957] +16:18:25 [ 41] [ 8] [02002500] +16:18:25 [ 42] [ 15] [NATIVE ] +16:18:25 [ 43] [ 40] [Songkhone Unit Hinboun LAO] +16:18:25 [ 49] [ 3] [418] +16:18:25 [ 52] [ 16] [A28C788590D7C0BB] +16:18:25 ============================================================================ +16:18:25 + + +waiting on router queue for slot.... +16:18:25 Sending to : +16:18:25 ============================================================================ +16:18:25 Sending to : +16:18:25 ============================================================================ +16:18:26 ============================================================================ +16:18:26 Slot Id : <305> +16:18:26 Transaction Type : REQUEST +16:18:26 Received From : +16:18:26 ============================================================================ +16:18:26 FNo. Len. Field Value +16:18:26 ============================================================================ +16:18:26 [ 1] [ 4] [0200] +16:18:26 [ 2] [ 16] [6688990040074930] +16:18:26 [ 3] [ 6] [301000] +16:18:26 [ 4] [ 12] [000000000000] +16:18:26 [ 7] [ 10] [0320161821] +16:18:26 [ 11] [ 6] [796493] +16:18:26 [ 12] [ 6] [161821] +16:18:26 [ 13] [ 4] [0320] +16:18:26 [ 15] [ 4] [0320] +16:18:26 [ 18] [ 4] [6011] +16:18:26 [ 22] [ 3] [900] +16:18:26 [ 25] [ 2] [02] +16:18:26 [ 28] [ 9] [D00000000] +16:18:26 [ 32] [ 6] [621354] +16:18:26 [ 35] [ 37] [6688990040074930=98011261085047400000] +16:18:26 [ 37] [ 12] [507904910957] +16:18:26 [ 41] [ 8] [02002500] +16:18:26 [ 42] [ 15] [NATIVE ] +16:18:26 [ 43] [ 40] [Songkhone Unit Hinboun LAO] +16:18:26 [ 49] [ 3] [418] +16:18:26 [ 52] [ 16] [A28C788590D7C0BB] +16:18:26 ============================================================================ +16:18:26 + + +waiting on router queue for slot.... +16:18:26 Sending to : +16:18:26 ============================================================================ +16:18:26 ============================================================================ +16:18:26 Slot Id : <305> +16:18:26 Transaction Type : REQUEST +16:18:26 Received From : +16:18:26 ============================================================================ +16:18:26 FNo. Len. Field Value +16:18:26 ============================================================================ +16:18:26 [ 1] [ 4] [0200] +16:18:26 [ 2] [ 16] [6688990040074930] +16:18:26 [ 3] [ 6] [301000] +16:18:26 [ 4] [ 12] [000000000000] +16:18:26 [ 7] [ 10] [0320161821] +16:18:26 [ 11] [ 6] [796493] +16:18:26 [ 12] [ 6] [161821] +16:18:26 [ 13] [ 4] [0320] +16:18:26 [ 15] [ 4] [0320] +16:18:26 [ 18] [ 4] [6011] +16:18:26 [ 22] [ 3] [900] +16:18:26 [ 25] [ 2] [02] +16:18:26 [ 28] [ 9] [D00000000] +16:18:26 [ 32] [ 6] [621354] +16:18:26 [ 35] [ 37] [6688990040074930=98011261085047400000] +16:18:26 [ 37] [ 12] [507904910957] +16:18:26 [ 41] [ 8] [02002500] +16:18:26 [ 42] [ 15] [NATIVE ] +16:18:26 [ 43] [ 40] [Songkhone Unit Hinboun LAO] +16:18:26 [ 49] [ 3] [418] +16:18:26 [ 52] [ 16] [5C8C870FED4D78FB] +16:18:26 ============================================================================ +16:18:26 + + +waiting on router queue for slot.... +16:18:26 Sending to : <4> +16:18:26 ============================================================================ +16:18:26 ============================================================================ +16:18:26 Slot Id : <331> +16:18:26 Transaction Type : REQUEST +16:18:26 Received From : +16:18:26 ============================================================================ +16:18:26 FNo. Len. Field Value +16:18:26 ============================================================================ +16:18:26 [ 1] [ 4] [0200] +16:18:26 [ 2] [ 16] [6213544002242748] +16:18:26 [ 3] [ 6] [010000] +16:18:26 [ 4] [ 12] [000050000000] +16:18:26 [ 7] [ 10] [0320161616] +16:18:26 [ 11] [ 6] [951440] +16:18:26 [ 12] [ 6] [161616] +16:18:26 [ 13] [ 4] [0320] +16:18:26 [ 15] [ 4] [0320] +16:18:26 [ 18] [ 4] [6011] +16:18:26 [ 19] [ 3] [418] +16:18:26 [ 22] [ 3] [021] +16:18:26 [ 25] [ 2] [01] +16:18:26 [ 28] [ 9] [D00002000] +16:18:26 [ 32] [ 6] [668899] +16:18:26 [ 35] [ 32] [6213544002242748=491212014274787] +16:18:26 [ 37] [ 12] [507900577938] +16:18:26 [ 41] [ 8] [03014005] +16:18:26 [ 42] [ 15] [APT ] +16:18:26 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:18:26 [ 49] [ 3] [418] +16:18:26 [ 52] [ 16] [DEBB094A00743A27] +16:18:26 ============================================================================ +16:18:26 + + +waiting on router queue for slot.... +16:18:26 Sending to : +16:18:26 ============================================================================ +16:18:26 Sending to : +16:18:26 ============================================================================ +16:18:26 ============================================================================ +16:18:26 Slot Id : <331> +16:18:26 Transaction Type : REQUEST +16:18:26 Received From : +16:18:26 ============================================================================ +16:18:26 FNo. Len. Field Value +16:18:26 ============================================================================ +16:18:26 [ 1] [ 4] [0200] +16:18:26 [ 2] [ 16] [6213544002242748] +16:18:26 [ 3] [ 6] [010000] +16:18:26 [ 4] [ 12] [000050000000] +16:18:26 [ 7] [ 10] [0320161616] +16:18:26 [ 11] [ 6] [951440] +16:18:26 [ 12] [ 6] [161616] +16:18:26 [ 13] [ 4] [0320] +16:18:26 [ 15] [ 4] [0320] +16:18:26 [ 18] [ 4] [6011] +16:18:26 [ 19] [ 3] [418] +16:18:26 [ 22] [ 3] [021] +16:18:26 [ 25] [ 2] [01] +16:18:26 [ 28] [ 9] [D00002000] +16:18:26 [ 32] [ 6] [668899] +16:18:26 [ 35] [ 32] [6213544002242748=491212014274787] +16:18:26 [ 37] [ 12] [507900577938] +16:18:26 [ 41] [ 8] [03014005] +16:18:26 [ 42] [ 15] [APT ] +16:18:26 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:18:26 [ 49] [ 3] [418] +16:18:26 [ 52] [ 16] [DEBB094A00743A27] +16:18:26 ============================================================================ +16:18:26 + + +waiting on router queue for slot.... +16:18:26 Sending to : +16:18:26 ============================================================================ +16:18:26 ============================================================================ +16:18:26 Slot Id : <331> +16:18:26 Transaction Type : REQUEST +16:18:26 Received From : +16:18:26 ============================================================================ +16:18:26 FNo. Len. Field Value +16:18:26 ============================================================================ +16:18:26 [ 1] [ 4] [0200] +16:18:26 [ 2] [ 16] [6213544002242748] +16:18:26 [ 3] [ 6] [010000] +16:18:26 [ 4] [ 12] [000050000000] +16:18:26 [ 7] [ 10] [0320161616] +16:18:26 [ 11] [ 6] [951440] +16:18:26 [ 12] [ 6] [161616] +16:18:26 [ 13] [ 4] [0320] +16:18:26 [ 15] [ 4] [0320] +16:18:26 [ 18] [ 4] [6011] +16:18:26 [ 19] [ 3] [418] +16:18:26 [ 22] [ 3] [021] +16:18:26 [ 25] [ 2] [01] +16:18:26 [ 28] [ 9] [D00002000] +16:18:26 [ 32] [ 6] [668899] +16:18:26 [ 35] [ 32] [6213544002242748=491212014274787] +16:18:26 [ 37] [ 12] [507900577938] +16:18:26 [ 41] [ 8] [03014005] +16:18:26 [ 42] [ 15] [APT ] +16:18:26 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:18:26 [ 49] [ 3] [418] +16:18:26 [ 52] [ 16] [54D426C6A8036983] +16:18:26 ============================================================================ +16:18:26 + + +waiting on router queue for slot.... +16:18:26 Sending to : <0> +16:18:26 ============================================================================ +16:18:26 ============================================================================ +16:18:26 Slot Id : <331> +16:18:26 Transaction Type : RESPONSE +16:18:26 Received From : +16:18:26 ============================================================================ +16:18:26 FNo. Len. Field Value +16:18:26 ============================================================================ +16:18:26 [ 1] [ 4] [0210] +16:18:26 [ 2] [ 16] [6213544002242748] +16:18:26 [ 3] [ 6] [010000] +16:18:26 [ 4] [ 12] [000050000000] +16:18:26 [ 7] [ 10] [0320161616] +16:18:26 [ 11] [ 6] [951440] +16:18:26 [ 12] [ 6] [161616] +16:18:26 [ 13] [ 4] [0320] +16:18:26 [ 15] [ 4] [0320] +16:18:26 [ 18] [ 4] [6011] +16:18:26 [ 19] [ 3] [418] +16:18:26 [ 22] [ 3] [021] +16:18:26 [ 32] [ 6] [668899] +16:18:26 [ 35] [ 32] [6213544002242748=491212014274787] +16:18:26 [ 37] [ 12] [507900577938] +16:18:26 [ 38] [ 6] [161822] +16:18:26 [ 39] [ 2] [55] +16:18:26 [ 41] [ 8] [03014005] +16:18:26 [ 49] [ 3] [418] +16:18:26 ============================================================================ +16:18:26 Sending to : +16:18:26 ============================================================================ +16:18:26 + + +waiting on router queue for slot.... +16:18:26 ============================================================================ +16:18:26 Slot Id : <327> +16:18:26 Transaction Type : RESPONSE +16:18:26 Received From : +16:18:26 ============================================================================ +16:18:26 FNo. Len. Field Value +16:18:26 ============================================================================ +16:18:26 [ 1] [ 4] [0210] +16:18:26 [ 2] [ 16] [6213544002132915] +16:18:26 [ 3] [ 6] [010000] +16:18:26 [ 4] [ 12] [000010000000] +16:18:26 [ 7] [ 10] [0320091727] +16:18:26 [ 11] [ 6] [270342] +16:18:26 [ 12] [ 6] [161727] +16:18:26 [ 13] [ 4] [0320] +16:18:26 [ 15] [ 4] [0320] +16:18:26 [ 18] [ 4] [6011] +16:18:26 [ 19] [ 3] [418] +16:18:26 [ 32] [ 6] [180893] +16:18:26 [ 35] [ 32] [6213544002132915=491212013291219] +16:18:26 [ 37] [ 12] [507909270342] +16:18:26 [ 38] [ 6] [985261] +16:18:26 [ 39] [ 2] [00] +16:18:26 [ 41] [ 8] [0363CPSH] +16:18:26 [ 49] [ 3] [418] +16:18:26 [ 54] [ 40] [0001418C0000536258900002418C000053625890] +16:18:26 ============================================================================ +16:18:26 Calculate Source COMM Id = 2 +16:18:26 ============================================================================ +16:18:26 + + +waiting on router queue for slot.... +16:18:27 ============================================================================ +16:18:27 Slot Id : <305> +16:18:27 Transaction Type : RESPONSE +16:18:27 Received From : +16:18:27 ============================================================================ +16:18:27 FNo. Len. Field Value +16:18:27 ============================================================================ +16:18:27 [ 1] [ 4] [0210] +16:18:27 [ 2] [ 16] [6688990040074930] +16:18:27 [ 3] [ 6] [301000] +16:18:27 [ 4] [ 12] [000000000000] +16:18:27 [ 11] [ 6] [796493] +16:18:27 [ 12] [ 6] [161821] +16:18:27 [ 15] [ 4] [0320] +16:18:27 [ 18] [ 4] [6011] +16:18:27 [ 32] [ 6] [621354] +16:18:27 [ 35] [ 37] [6688990040074930=98011261085047400000] +16:18:27 [ 37] [ 12] [507904910957] +16:18:27 [ 38] [ 6] [231382] +16:18:27 [ 39] [ 2] [00] +16:18:27 [ 41] [ 8] [02002500] +16:18:27 [ 49] [ 3] [418] +16:18:27 [ 54] [ 20] [1002418C000052451295] +16:18:27 ============================================================================ +16:18:27 Sending to : +16:18:27 ============================================================================ +16:18:27 + + +waiting on router queue for slot.... +16:18:27 ============================================================================ +16:18:27 Slot Id : <302> +16:18:27 Transaction Type : REQUEST +16:18:27 Received From : +16:18:27 ============================================================================ +16:18:27 FNo. Len. Field Value +16:18:27 ============================================================================ +16:18:27 [ 1] [ 4] [0200] +16:18:27 [ 2] [ 16] [6213544001414132] +16:18:27 [ 3] [ 6] [010000] +16:18:27 [ 4] [ 12] [000004000000] +16:18:27 [ 7] [ 10] [0320161617] +16:18:27 [ 11] [ 6] [951442] +16:18:27 [ 12] [ 6] [161617] +16:18:27 [ 13] [ 4] [0320] +16:18:27 [ 15] [ 4] [0320] +16:18:27 [ 18] [ 4] [6011] +16:18:27 [ 19] [ 3] [418] +16:18:27 [ 22] [ 3] [021] +16:18:27 [ 25] [ 2] [01] +16:18:27 [ 28] [ 9] [D00002000] +16:18:27 [ 32] [ 6] [668899] +16:18:27 [ 35] [ 32] [6213544001414132=491212011413604] +16:18:27 [ 37] [ 12] [507902093396] +16:18:27 [ 41] [ 8] [03020021] +16:18:27 [ 42] [ 15] [APT ] +16:18:27 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:18:27 [ 49] [ 3] [418] +16:18:27 [ 52] [ 16] [DC972C90CD35FD72] +16:18:27 ============================================================================ +16:18:27 + + +waiting on router queue for slot.... +16:18:27 Sending to : +16:18:27 ============================================================================ +16:18:27 Sending to : +16:18:27 ============================================================================ +16:18:27 ============================================================================ +16:18:27 Slot Id : <331> +16:18:27 Transaction Type : RESPONSE +16:18:27 Received From : +16:18:27 ============================================================================ +16:18:27 FNo. Len. Field Value +16:18:27 ============================================================================ +16:18:27 [ 1] [ 4] [0210] +16:18:27 [ 2] [ 16] [6213544002242748] +16:18:27 [ 3] [ 6] [010000] +16:18:27 [ 4] [ 12] [000050000000] +16:18:27 [ 7] [ 10] [0320161616] +16:18:27 [ 11] [ 6] [951440] +16:18:27 [ 12] [ 6] [161616] +16:18:27 [ 13] [ 4] [0320] +16:18:27 [ 15] [ 4] [0320] +16:18:27 [ 18] [ 4] [6011] +16:18:27 [ 19] [ 3] [418] +16:18:27 [ 22] [ 3] [021] +16:18:27 [ 32] [ 6] [668899] +16:18:27 [ 35] [ 32] [6213544002242748=491212014274787] +16:18:27 [ 37] [ 12] [507900577938] +16:18:27 [ 38] [ 6] [161822] +16:18:27 [ 39] [ 2] [55] +16:18:27 [ 41] [ 8] [03014005] +16:18:27 [ 49] [ 3] [418] +16:18:27 ============================================================================ +16:18:27 Calculate Source COMM Id = 4 +16:18:27 ============================================================================ +16:18:27 + + +waiting on router queue for slot.... +16:18:28 ============================================================================ +16:18:28 Slot Id : <302> +16:18:28 Transaction Type : REQUEST +16:18:28 Received From : +16:18:28 ============================================================================ +16:18:28 FNo. Len. Field Value +16:18:28 ============================================================================ +16:18:28 [ 1] [ 4] [0200] +16:18:28 [ 2] [ 16] [6213544001414132] +16:18:28 [ 3] [ 6] [010000] +16:18:28 [ 4] [ 12] [000004000000] +16:18:28 [ 7] [ 10] [0320161617] +16:18:28 [ 11] [ 6] [951442] +16:18:28 [ 12] [ 6] [161617] +16:18:28 [ 13] [ 4] [0320] +16:18:28 [ 15] [ 4] [0320] +16:18:28 [ 18] [ 4] [6011] +16:18:28 [ 19] [ 3] [418] +16:18:28 [ 22] [ 3] [021] +16:18:28 [ 25] [ 2] [01] +16:18:28 [ 28] [ 9] [D00002000] +16:18:28 [ 32] [ 6] [668899] +16:18:28 [ 35] [ 32] [6213544001414132=491212011413604] +16:18:28 [ 37] [ 12] [507902093396] +16:18:28 [ 41] [ 8] [03020021] +16:18:28 [ 42] [ 15] [APT ] +16:18:28 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:18:28 [ 49] [ 3] [418] +16:18:28 [ 52] [ 16] [DC972C90CD35FD72] +16:18:28 ============================================================================ +16:18:28 + + +waiting on router queue for slot.... +16:18:28 Sending to : +16:18:28 ============================================================================ +16:18:28 ============================================================================ +16:18:28 Slot Id : <302> +16:18:28 Transaction Type : REQUEST +16:18:28 Received From : +16:18:28 ============================================================================ +16:18:28 FNo. Len. Field Value +16:18:28 ============================================================================ +16:18:28 [ 1] [ 4] [0200] +16:18:28 [ 2] [ 16] [6213544001414132] +16:18:28 [ 3] [ 6] [010000] +16:18:28 [ 4] [ 12] [000004000000] +16:18:28 [ 7] [ 10] [0320161617] +16:18:28 [ 11] [ 6] [951442] +16:18:28 [ 12] [ 6] [161617] +16:18:28 [ 13] [ 4] [0320] +16:18:28 [ 15] [ 4] [0320] +16:18:28 [ 18] [ 4] [6011] +16:18:28 [ 19] [ 3] [418] +16:18:28 [ 22] [ 3] [021] +16:18:28 [ 25] [ 2] [01] +16:18:28 [ 28] [ 9] [D00002000] +16:18:28 [ 32] [ 6] [668899] +16:18:28 [ 35] [ 32] [6213544001414132=491212011413604] +16:18:28 [ 37] [ 12] [507902093396] +16:18:28 [ 41] [ 8] [03020021] +16:18:28 [ 42] [ 15] [APT ] +16:18:28 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:18:28 [ 49] [ 3] [418] +16:18:28 [ 52] [ 16] [A153ED755111B596] +16:18:28 ============================================================================ +16:18:28 + + +waiting on router queue for slot.... +16:18:28 Sending to : <0> +16:18:28 ============================================================================ +16:18:28 ============================================================================ +16:18:28 Slot Id : <314> +16:18:28 Transaction Type : REQUEST +16:18:28 Received From : +16:18:28 ============================================================================ +16:18:28 FNo. Len. Field Value +16:18:28 ============================================================================ +16:18:28 [ 1] [ 4] [0200] +16:18:28 [ 2] [ 16] [6688990101774402] +16:18:28 [ 3] [ 6] [012000] +16:18:28 [ 4] [ 12] [000006000000] +16:18:28 [ 7] [ 10] [0320161823] +16:18:28 [ 11] [ 6] [796501] +16:18:28 [ 12] [ 6] [161823] +16:18:28 [ 13] [ 4] [0320] +16:18:28 [ 15] [ 4] [0320] +16:18:28 [ 18] [ 4] [6011] +16:18:28 [ 22] [ 3] [900] +16:18:28 [ 25] [ 2] [02] +16:18:28 [ 28] [ 9] [D00002000] +16:18:28 [ 32] [ 6] [621354] +16:18:28 [ 35] [ 37] [6688990101774402=42051231440295200000] +16:18:28 [ 37] [ 12] [507904645139] +16:18:28 [ 41] [ 8] [17000900] +16:18:28 [ 42] [ 15] [NATIVE ] +16:18:28 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:18:28 [ 49] [ 3] [418] +16:18:28 [ 52] [ 16] [EC85C6707B6A45D7] +16:18:28 ============================================================================ +16:18:28 + + +waiting on router queue for slot.... +16:18:28 Sending to : +16:18:28 ============================================================================ +16:18:28 Sending to : +16:18:28 ============================================================================ +16:18:28 ============================================================================ +16:18:28 Slot Id : <292> +16:18:28 Transaction Type : REQUEST +16:18:28 Received From : +16:18:28 ============================================================================ +16:18:28 FNo. Len. Field Value +16:18:28 ============================================================================ +16:18:28 [ 1] [ 4] [0200] +16:18:28 [ 2] [ 16] [6688990101830501] +16:18:28 [ 3] [ 6] [011000] +16:18:28 [ 4] [ 12] [000090000000] +16:18:28 [ 7] [ 10] [0320161823] +16:18:28 [ 11] [ 6] [796502] +16:18:28 [ 12] [ 6] [161823] +16:18:28 [ 13] [ 4] [0320] +16:18:28 [ 15] [ 4] [0320] +16:18:28 [ 18] [ 4] [6011] +16:18:28 [ 22] [ 3] [900] +16:18:28 [ 25] [ 2] [02] +16:18:28 [ 28] [ 9] [D00002000] +16:18:28 [ 32] [ 6] [621354] +16:18:28 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:18:28 [ 37] [ 12] [507904635836] +16:18:28 [ 41] [ 8] [17000800] +16:18:28 [ 42] [ 15] [NATIVE ] +16:18:28 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:18:28 [ 49] [ 3] [418] +16:18:28 [ 52] [ 16] [54904784A167D8BD] +16:18:28 ============================================================================ +16:18:28 + + +waiting on router queue for slot.... +16:18:28 ============================================================================ +16:18:28 Slot Id : <314> +16:18:28 Transaction Type : REQUEST +16:18:28 Received From : +16:18:28 ============================================================================ +16:18:28 FNo. Len. Field Value +16:18:28 ============================================================================ +16:18:28 [ 1] [ 4] [0200] +16:18:28 [ 2] [ 16] [6688990101774402] +16:18:28 [ 3] [ 6] [012000] +16:18:28 [ 4] [ 12] [000006000000] +16:18:28 [ 7] [ 10] [0320161823] +16:18:28 [ 11] [ 6] [796501] +16:18:28 [ 12] [ 6] [161823] +16:18:28 [ 13] [ 4] [0320] +16:18:28 [ 15] [ 4] [0320] +16:18:28 [ 18] [ 4] [6011] +16:18:28 [ 22] [ 3] [900] +16:18:28 [ 25] [ 2] [02] +16:18:28 [ 28] [ 9] [D00002000] +16:18:28 [ 32] [ 6] [621354] +16:18:28 [ 35] [ 37] [6688990101774402=42051231440295200000] +16:18:28 [ 37] [ 12] [507904645139] +16:18:28 [ 41] [ 8] [17000900] +16:18:28 [ 42] [ 15] [NATIVE ] +16:18:28 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:18:28 [ 49] [ 3] [418] +16:18:28 [ 52] [ 16] [EC85C6707B6A45D7] +16:18:28 ============================================================================ +16:18:28 Sending to : +16:18:28 ============================================================================ +16:18:28 + + +waiting on router queue for slot.... +16:18:28 Sending to : +16:18:28 ============================================================================ +16:18:28 Sending to : +16:18:28 ============================================================================ +16:18:28 ============================================================================ +16:18:28 Slot Id : <314> +16:18:28 Transaction Type : REQUEST +16:18:28 Received From : +16:18:28 ============================================================================ +16:18:28 FNo. Len. Field Value +16:18:28 ============================================================================ +16:18:28 [ 1] [ 4] [0200] +16:18:28 [ 2] [ 16] [6688990101774402] +16:18:28 [ 3] [ 6] [012000] +16:18:28 [ 4] [ 12] [000006000000] +16:18:28 [ 7] [ 10] [0320161823] +16:18:28 [ 11] [ 6] [796501] +16:18:28 [ 12] [ 6] [161823] +16:18:28 [ 13] [ 4] [0320] +16:18:28 [ 15] [ 4] [0320] +16:18:28 [ 18] [ 4] [6011] +16:18:28 [ 22] [ 3] [900] +16:18:28 [ 25] [ 2] [02] +16:18:28 [ 28] [ 9] [D00002000] +16:18:28 [ 32] [ 6] [621354] +16:18:28 [ 35] [ 37] [6688990101774402=42051231440295200000] +16:18:28 [ 37] [ 12] [507904645139] +16:18:28 [ 41] [ 8] [17000900] +16:18:28 [ 42] [ 15] [NATIVE ] +16:18:28 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:18:28 [ 49] [ 3] [418] +16:18:28 [ 52] [ 16] [E315FDAEAF7F75EB] +16:18:28 ============================================================================ +16:18:28 + + +waiting on router queue for slot.... +16:18:28 Sending to : <4> +16:18:28 ============================================================================ +16:18:28 ============================================================================ +16:18:28 Slot Id : <305> +16:18:28 Transaction Type : RESPONSE +16:18:28 Received From : +16:18:28 ============================================================================ +16:18:28 FNo. Len. Field Value +16:18:28 ============================================================================ +16:18:28 [ 1] [ 4] [0210] +16:18:28 [ 2] [ 16] [6688990040074930] +16:18:28 [ 3] [ 6] [301000] +16:18:28 [ 4] [ 12] [000000000000] +16:18:28 [ 11] [ 6] [796493] +16:18:28 [ 12] [ 6] [161821] +16:18:28 [ 15] [ 4] [0320] +16:18:28 [ 18] [ 4] [6011] +16:18:28 [ 32] [ 6] [621354] +16:18:28 [ 35] [ 37] [6688990040074930=98011261085047400000] +16:18:28 [ 37] [ 12] [507904910957] +16:18:28 [ 38] [ 6] [231382] +16:18:28 [ 39] [ 2] [00] +16:18:28 [ 41] [ 8] [02002500] +16:18:28 [ 49] [ 3] [418] +16:18:28 [ 54] [ 20] [1002418C000052451295] +16:18:28 ============================================================================ +16:18:28 Calculate Source COMM Id = 0 +16:18:28 ============================================================================ +16:18:28 + + +waiting on router queue for slot.... +16:18:29 ============================================================================ +16:18:29 Slot Id : <302> +16:18:29 Transaction Type : RESPONSE +16:18:29 Received From : +16:18:29 ============================================================================ +16:18:29 FNo. Len. Field Value +16:18:29 ============================================================================ +16:18:29 [ 1] [ 4] [0210] +16:18:29 [ 2] [ 16] [6213544001414132] +16:18:29 [ 3] [ 6] [010000] +16:18:29 [ 4] [ 12] [000004000000] +16:18:29 [ 7] [ 10] [0320161617] +16:18:29 [ 11] [ 6] [951442] +16:18:29 [ 12] [ 6] [161617] +16:18:29 [ 13] [ 4] [0320] +16:18:29 [ 15] [ 4] [0320] +16:18:29 [ 18] [ 4] [6011] +16:18:29 [ 19] [ 3] [418] +16:18:29 [ 32] [ 6] [668899] +16:18:29 [ 35] [ 32] [6213544001414132=491212011413604] +16:18:29 [ 37] [ 12] [507902093396] +16:18:29 [ 38] [ 6] [272820] +16:18:29 [ 39] [ 2] [00] +16:18:29 [ 41] [ 8] [03020021] +16:18:29 [ 49] [ 3] [418] +16:18:29 [ 54] [ 40] [0001418C0000075187110002418C000007518711] +16:18:29 ============================================================================ +16:18:29 Sending to : +16:18:29 ============================================================================ +16:18:29 + + +waiting on router queue for slot.... +16:18:29 ============================================================================ +16:18:29 Slot Id : <292> +16:18:29 Transaction Type : REQUEST +16:18:29 Received From : +16:18:29 ============================================================================ +16:18:29 FNo. Len. Field Value +16:18:29 ============================================================================ +16:18:29 [ 1] [ 4] [0200] +16:18:29 [ 2] [ 16] [6688990101830501] +16:18:29 [ 3] [ 6] [011000] +16:18:29 [ 4] [ 12] [000090000000] +16:18:29 [ 7] [ 10] [0320161823] +16:18:29 [ 11] [ 6] [796502] +16:18:29 [ 12] [ 6] [161823] +16:18:29 [ 13] [ 4] [0320] +16:18:29 [ 15] [ 4] [0320] +16:18:29 [ 18] [ 4] [6011] +16:18:29 [ 22] [ 3] [900] +16:18:29 [ 25] [ 2] [02] +16:18:29 [ 28] [ 9] [D00002000] +16:18:29 [ 32] [ 6] [621354] +16:18:29 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:18:29 [ 37] [ 12] [507904635836] +16:18:29 [ 41] [ 8] [17000800] +16:18:29 [ 42] [ 15] [NATIVE ] +16:18:29 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:18:29 [ 49] [ 3] [418] +16:18:29 [ 52] [ 16] [54904784A167D8BD] +16:18:29 ============================================================================ +16:18:29 + + +waiting on router queue for slot.... +16:18:29 Sending to : +16:18:29 ============================================================================ +16:18:29 ============================================================================ +16:18:29 Slot Id : <292> +16:18:29 Transaction Type : REQUEST +16:18:29 Received From : +16:18:29 ============================================================================ +16:18:29 FNo. Len. Field Value +16:18:29 ============================================================================ +16:18:29 [ 1] [ 4] [0200] +16:18:29 [ 2] [ 16] [6688990101830501] +16:18:29 [ 3] [ 6] [011000] +16:18:29 [ 4] [ 12] [000090000000] +16:18:29 [ 7] [ 10] [0320161823] +16:18:29 [ 11] [ 6] [796502] +16:18:29 [ 12] [ 6] [161823] +16:18:29 [ 13] [ 4] [0320] +16:18:29 [ 15] [ 4] [0320] +16:18:29 [ 18] [ 4] [6011] +16:18:29 [ 22] [ 3] [900] +16:18:29 [ 25] [ 2] [02] +16:18:29 [ 28] [ 9] [D00002000] +16:18:29 [ 32] [ 6] [621354] +16:18:29 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:18:29 [ 37] [ 12] [507904635836] +16:18:29 [ 41] [ 8] [17000800] +16:18:29 [ 42] [ 15] [NATIVE ] +16:18:29 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:18:29 [ 49] [ 3] [418] +16:18:29 [ 52] [ 16] [7327C78119A62D0C] +16:18:29 ============================================================================ +16:18:29 + + +waiting on router queue for slot.... +16:18:29 Sending to : <4> +16:18:29 ============================================================================ +16:18:30 ============================================================================ +16:18:30 Slot Id : <302> +16:18:30 Transaction Type : RESPONSE +16:18:30 Received From : +16:18:30 ============================================================================ +16:18:30 FNo. Len. Field Value +16:18:30 ============================================================================ +16:18:30 [ 1] [ 4] [0210] +16:18:30 [ 2] [ 16] [6213544001414132] +16:18:30 [ 3] [ 6] [010000] +16:18:30 [ 4] [ 12] [000004000000] +16:18:30 [ 7] [ 10] [0320161617] +16:18:30 [ 11] [ 6] [951442] +16:18:30 [ 12] [ 6] [161617] +16:18:30 [ 13] [ 4] [0320] +16:18:30 [ 15] [ 4] [0320] +16:18:30 [ 18] [ 4] [6011] +16:18:30 [ 19] [ 3] [418] +16:18:30 [ 32] [ 6] [668899] +16:18:30 [ 35] [ 32] [6213544001414132=491212011413604] +16:18:30 [ 37] [ 12] [507902093396] +16:18:30 [ 38] [ 6] [272820] +16:18:30 [ 39] [ 2] [00] +16:18:30 [ 41] [ 8] [03020021] +16:18:30 [ 49] [ 3] [418] +16:18:30 [ 54] [ 40] [0001418C0000075187110002418C000007518711] +16:18:30 ============================================================================ +16:18:30 Calculate Source COMM Id = 4 +16:18:30 ============================================================================ +16:18:30 + + +waiting on router queue for slot.... +16:18:31 ============================================================================ +16:18:31 Slot Id : <314> +16:18:31 Transaction Type : RESPONSE +16:18:31 Received From : +16:18:31 ============================================================================ +16:18:31 FNo. Len. Field Value +16:18:31 ============================================================================ +16:18:31 [ 1] [ 4] [0210] +16:18:31 [ 2] [ 16] [6688990101774402] +16:18:31 [ 3] [ 6] [012000] +16:18:31 [ 4] [ 12] [000006000000] +16:18:31 [ 11] [ 6] [796501] +16:18:31 [ 12] [ 6] [161823] +16:18:31 [ 15] [ 4] [0320] +16:18:31 [ 18] [ 4] [6011] +16:18:31 [ 32] [ 6] [621354] +16:18:31 [ 35] [ 37] [6688990101774402=42051231440295200000] +16:18:31 [ 37] [ 12] [507904645139] +16:18:31 [ 38] [ 6] [713949] +16:18:31 [ 39] [ 2] [00] +16:18:31 [ 41] [ 8] [17000900] +16:18:31 [ 49] [ 3] [418] +16:18:31 [ 54] [ 20] [2002418C000143826313] +16:18:31 ============================================================================ +16:18:31 Sending to : +16:18:31 ============================================================================ +16:18:31 + + +waiting on router queue for slot.... +16:18:33 ============================================================================ +16:18:33 Slot Id : <314> +16:18:33 Transaction Type : RESPONSE +16:18:33 Received From : +16:18:33 ============================================================================ +16:18:33 FNo. Len. Field Value +16:18:33 ============================================================================ +16:18:33 [ 1] [ 4] [0210] +16:18:33 [ 2] [ 16] [6688990101774402] +16:18:33 [ 3] [ 6] [012000] +16:18:33 [ 4] [ 12] [000006000000] +16:18:33 [ 11] [ 6] [796501] +16:18:33 [ 12] [ 6] [161823] +16:18:33 [ 15] [ 4] [0320] +16:18:33 [ 18] [ 4] [6011] +16:18:33 [ 32] [ 6] [621354] +16:18:33 [ 35] [ 37] [6688990101774402=42051231440295200000] +16:18:33 [ 37] [ 12] [507904645139] +16:18:33 [ 38] [ 6] [713949] +16:18:33 [ 39] [ 2] [00] +16:18:33 [ 41] [ 8] [17000900] +16:18:33 [ 49] [ 3] [418] +16:18:33 [ 54] [ 20] [2002418C000143826313] +16:18:33 ============================================================================ +16:18:33 Calculate Source COMM Id = 0 +16:18:33 ============================================================================ +16:18:33 + + +waiting on router queue for slot.... +16:18:33 ============================================================================ +16:18:33 Slot Id : <292> +16:18:33 Transaction Type : RESPONSE +16:18:33 Received From : +16:18:33 ============================================================================ +16:18:33 FNo. Len. Field Value +16:18:33 ============================================================================ +16:18:33 [ 1] [ 4] [0210] +16:18:33 [ 2] [ 16] [6688990101830501] +16:18:33 [ 3] [ 6] [011000] +16:18:33 [ 4] [ 12] [000090000000] +16:18:33 [ 11] [ 6] [796502] +16:18:33 [ 12] [ 6] [161823] +16:18:33 [ 15] [ 4] [0320] +16:18:33 [ 18] [ 4] [6011] +16:18:33 [ 32] [ 6] [621354] +16:18:33 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:18:33 [ 37] [ 12] [507904635836] +16:18:33 [ 38] [ 6] [064619] +16:18:33 [ 39] [ 2] [00] +16:18:33 [ 41] [ 8] [17000800] +16:18:33 [ 49] [ 3] [418] +16:18:33 [ 54] [ 20] [1002418C000004427482] +16:18:33 ============================================================================ +16:18:33 Sending to : +16:18:33 ============================================================================ +16:18:33 + + +waiting on router queue for slot.... +16:18:34 ============================================================================ +16:18:34 Slot Id : <335> +16:18:34 Transaction Type : REQUEST +16:18:34 Received From : +16:18:34 ============================================================================ +16:18:34 FNo. Len. Field Value +16:18:34 ============================================================================ +16:18:34 [ 1] [ 4] [0200] +16:18:34 [ 2] [ 16] [1808930600023014] +16:18:34 [ 3] [ 6] [010000] +16:18:34 [ 4] [ 12] [000030000000] +16:18:34 [ 7] [ 10] [0320161624] +16:18:34 [ 11] [ 6] [951446] +16:18:34 [ 12] [ 6] [161624] +16:18:34 [ 13] [ 4] [0320] +16:18:34 [ 15] [ 4] [0320] +16:18:34 [ 18] [ 4] [6011] +16:18:34 [ 19] [ 3] [418] +16:18:34 [ 22] [ 3] [021] +16:18:34 [ 25] [ 2] [01] +16:18:34 [ 28] [ 9] [D00002000] +16:18:34 [ 32] [ 6] [668899] +16:18:34 [ 35] [ 27] [1808930600023014=1803500057] +16:18:34 [ 37] [ 12] [507902317767] +16:18:34 [ 41] [ 8] [03014007] +16:18:34 [ 42] [ 15] [APT ] +16:18:34 [ 43] [ 40] [ SAVANXAY MARKET SAVANXAY ] +16:18:34 [ 49] [ 3] [418] +16:18:34 [ 52] [ 16] [B8E5DDD2671045C2] +16:18:34 ============================================================================ +16:18:34 + + +waiting on router queue for slot.... +16:18:34 Sending to : +16:18:34 ============================================================================ +16:18:34 Sending to : +16:18:34 ============================================================================ +16:18:34 ============================================================================ +16:18:34 Slot Id : <292> +16:18:34 Transaction Type : RESPONSE +16:18:34 Received From : +16:18:34 ============================================================================ +16:18:34 FNo. Len. Field Value +16:18:34 ============================================================================ +16:18:34 [ 1] [ 4] [0210] +16:18:34 [ 2] [ 16] [6688990101830501] +16:18:34 [ 3] [ 6] [011000] +16:18:34 [ 4] [ 12] [000090000000] +16:18:34 [ 11] [ 6] [796502] +16:18:34 [ 12] [ 6] [161823] +16:18:34 [ 15] [ 4] [0320] +16:18:34 [ 18] [ 4] [6011] +16:18:34 [ 32] [ 6] [621354] +16:18:34 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:18:34 [ 37] [ 12] [507904635836] +16:18:34 [ 38] [ 6] [064619] +16:18:34 [ 39] [ 2] [00] +16:18:34 [ 41] [ 8] [17000800] +16:18:34 [ 49] [ 3] [418] +16:18:34 [ 54] [ 20] [1002418C000004427482] +16:18:34 ============================================================================ +16:18:34 Calculate Source COMM Id = 0 +16:18:34 ============================================================================ +16:18:34 + + +waiting on router queue for slot.... +16:18:34 ============================================================================ +16:18:34 Slot Id : <335> +16:18:34 Transaction Type : REQUEST +16:18:34 Received From : +16:18:34 ============================================================================ +16:18:34 FNo. Len. Field Value +16:18:34 ============================================================================ +16:18:34 [ 1] [ 4] [0200] +16:18:34 [ 2] [ 16] [1808930600023014] +16:18:34 [ 3] [ 6] [010000] +16:18:34 [ 4] [ 12] [000030000000] +16:18:34 [ 7] [ 10] [0320161624] +16:18:34 [ 11] [ 6] [951446] +16:18:34 [ 12] [ 6] [161624] +16:18:34 [ 13] [ 4] [0320] +16:18:34 [ 15] [ 4] [0320] +16:18:34 [ 18] [ 4] [6011] +16:18:34 [ 19] [ 3] [418] +16:18:34 [ 22] [ 3] [021] +16:18:34 [ 25] [ 2] [01] +16:18:34 [ 28] [ 9] [D00002000] +16:18:34 [ 32] [ 6] [668899] +16:18:34 [ 35] [ 27] [1808930600023014=1803500057] +16:18:34 [ 37] [ 12] [507902317767] +16:18:34 [ 41] [ 8] [03014007] +16:18:34 [ 42] [ 15] [APT ] +16:18:34 [ 43] [ 40] [ SAVANXAY MARKET SAVANXAY ] +16:18:34 [ 49] [ 3] [418] +16:18:34 [ 52] [ 16] [B8E5DDD2671045C2] +16:18:34 ============================================================================ +16:18:34 + + +waiting on router queue for slot.... +16:18:34 Sending to : +16:18:34 ============================================================================ +16:18:34 ============================================================================ +16:18:34 Slot Id : <335> +16:18:34 Transaction Type : REQUEST +16:18:34 Received From : +16:18:34 ============================================================================ +16:18:34 FNo. Len. Field Value +16:18:34 ============================================================================ +16:18:34 [ 1] [ 4] [0200] +16:18:34 [ 2] [ 16] [1808930600023014] +16:18:34 [ 3] [ 6] [010000] +16:18:34 [ 4] [ 12] [000030000000] +16:18:34 [ 7] [ 10] [0320161624] +16:18:34 [ 11] [ 6] [951446] +16:18:34 [ 12] [ 6] [161624] +16:18:34 [ 13] [ 4] [0320] +16:18:34 [ 15] [ 4] [0320] +16:18:34 [ 18] [ 4] [6011] +16:18:34 [ 19] [ 3] [418] +16:18:34 [ 22] [ 3] [021] +16:18:34 [ 25] [ 2] [01] +16:18:34 [ 28] [ 9] [D00002000] +16:18:34 [ 32] [ 6] [668899] +16:18:34 [ 35] [ 27] [1808930600023014=1803500057] +16:18:34 [ 37] [ 12] [507902317767] +16:18:34 [ 41] [ 8] [03014007] +16:18:34 [ 42] [ 15] [APT ] +16:18:34 [ 43] [ 40] [ SAVANXAY MARKET SAVANXAY ] +16:18:34 [ 49] [ 3] [418] +16:18:34 [ 52] [ 16] [EA294A2DC71F277C] +16:18:34 ============================================================================ +16:18:34 + + +waiting on router queue for slot.... +16:18:34 Sending to : <2> +16:18:34 ============================================================================ +16:18:40 ============================================================================ +16:18:40 Slot Id : <335> +16:18:40 Transaction Type : RESPONSE +16:18:40 Received From : +16:18:40 ============================================================================ +16:18:40 FNo. Len. Field Value +16:18:40 ============================================================================ +16:18:40 [ 1] [ 4] [0210] +16:18:40 [ 2] [ 16] [1808930600023014] +16:18:40 [ 3] [ 6] [010000] +16:18:40 [ 4] [ 12] [000030000000] +16:18:40 [ 6] [ 12] [000030000000] +16:18:40 [ 7] [ 10] [0320161624] +16:18:40 [ 11] [ 6] [951446] +16:18:40 [ 12] [ 6] [161624] +16:18:40 [ 13] [ 4] [0320] +16:18:40 [ 18] [ 4] [6011] +16:18:40 [ 19] [ 3] [418] +16:18:40 [ 22] [ 3] [021] +16:18:40 [ 32] [ 6] [668899] +16:18:40 [ 35] [ 27] [1808930600023014=1803500057] +16:18:40 [ 37] [ 12] [507902317767] +16:18:40 [ 38] [ 6] [951446] +16:18:40 [ 39] [ 2] [00] +16:18:40 [ 41] [ 8] [03014007] +16:18:40 [ 49] [ 3] [418] +16:18:40 [ 52] [ 16] [EA294A2DC71F277C] +16:18:40 [ 54] [ 20] [1001418C000002221800] +16:18:40 ============================================================================ +16:18:40 Sending to : +16:18:40 ============================================================================ +16:18:40 + + +waiting on router queue for slot.... +16:18:41 ============================================================================ +16:18:41 Slot Id : <335> +16:18:41 Transaction Type : RESPONSE +16:18:41 Received From : +16:18:41 ============================================================================ +16:18:41 FNo. Len. Field Value +16:18:41 ============================================================================ +16:18:41 [ 1] [ 4] [0210] +16:18:41 [ 2] [ 16] [1808930600023014] +16:18:41 [ 3] [ 6] [010000] +16:18:41 [ 4] [ 12] [000030000000] +16:18:41 [ 6] [ 12] [000030000000] +16:18:41 [ 7] [ 10] [0320161624] +16:18:41 [ 11] [ 6] [951446] +16:18:41 [ 12] [ 6] [161624] +16:18:41 [ 13] [ 4] [0320] +16:18:41 [ 18] [ 4] [6011] +16:18:41 [ 19] [ 3] [418] +16:18:41 [ 22] [ 3] [021] +16:18:41 [ 32] [ 6] [668899] +16:18:41 [ 35] [ 27] [1808930600023014=1803500057] +16:18:41 [ 37] [ 12] [507902317767] +16:18:41 [ 38] [ 6] [951446] +16:18:41 [ 39] [ 2] [00] +16:18:41 [ 41] [ 8] [03014007] +16:18:41 [ 49] [ 3] [418] +16:18:41 [ 52] [ 16] [EA294A2DC71F277C] +16:18:41 [ 54] [ 20] [1001418C000002221800] +16:18:41 ============================================================================ +16:18:41 Calculate Source COMM Id = 4 +16:18:41 ============================================================================ +16:18:41 + + +waiting on router queue for slot.... +16:18:49 ============================================================================ +16:18:49 Slot Id : <333> +16:18:49 Transaction Type : REQUEST +16:18:49 Received From : +16:18:49 ============================================================================ +16:18:49 FNo. Len. Field Value +16:18:49 ============================================================================ +16:18:49 [ 1] [ 4] [0800] +16:18:49 [ 7] [ 10] [0320091755] +16:18:49 [ 11] [ 6] [157208] +16:18:49 [ 70] [ 3] [301] +16:18:49 ============================================================================ +16:18:49 + + +waiting on router queue for slot.... +16:18:49 Sending to : +16:18:49 ============================================================================ +16:18:49 ============================================================================ +16:18:49 Slot Id : <333> +16:18:49 Transaction Type : RESPONSE +16:18:49 Received From : +16:18:49 ============================================================================ +16:18:49 FNo. Len. Field Value +16:18:49 ============================================================================ +16:18:49 [ 1] [ 4] [0810] +16:18:49 [ 7] [ 10] [0320091755] +16:18:49 [ 11] [ 6] [157208] +16:18:49 [ 39] [ 2] [00] +16:18:49 [ 70] [ 3] [301] +16:18:49 ============================================================================ +16:18:49 Calculate Source COMM Id = 2 +16:18:49 ============================================================================ +16:18:49 + + +waiting on router queue for slot.... +16:18:51 ============================================================================ +16:18:51 Slot Id : <262> +16:18:51 Transaction Type : REQUEST +16:18:51 Received From : +16:18:51 ============================================================================ +16:18:51 FNo. Len. Field Value +16:18:51 ============================================================================ +16:18:51 [ 1] [ 4] [0200] +16:18:51 [ 2] [ 16] [6688990108424209] +16:18:51 [ 3] [ 6] [010000] +16:18:51 [ 4] [ 12] [000100000000] +16:18:51 [ 7] [ 10] [0320161847] +16:18:51 [ 11] [ 6] [796585] +16:18:51 [ 12] [ 6] [161847] +16:18:51 [ 13] [ 4] [0320] +16:18:51 [ 15] [ 4] [0320] +16:18:51 [ 18] [ 4] [6011] +16:18:51 [ 22] [ 3] [900] +16:18:51 [ 25] [ 2] [02] +16:18:51 [ 28] [ 9] [D00002000] +16:18:51 [ 32] [ 6] [621354] +16:18:51 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:18:51 [ 37] [ 12] [507903499581] +16:18:51 [ 41] [ 8] [06002200] +16:18:51 [ 42] [ 15] [NATIVE ] +16:18:51 [ 43] [ 40] [Beng Market Beng LAO] +16:18:51 [ 49] [ 3] [418] +16:18:51 [ 52] [ 16] [50FF66322288B481] +16:18:51 ============================================================================ +16:18:51 + + +waiting on router queue for slot.... +16:18:51 Sending to : +16:18:51 ============================================================================ +16:18:51 Sending to : +16:18:51 ============================================================================ +16:18:52 ============================================================================ +16:18:52 Slot Id : <262> +16:18:52 Transaction Type : REQUEST +16:18:52 Received From : +16:18:52 ============================================================================ +16:18:52 FNo. Len. Field Value +16:18:52 ============================================================================ +16:18:52 [ 1] [ 4] [0200] +16:18:52 [ 2] [ 16] [6688990108424209] +16:18:52 [ 3] [ 6] [010000] +16:18:52 [ 4] [ 12] [000100000000] +16:18:52 [ 7] [ 10] [0320161847] +16:18:52 [ 11] [ 6] [796585] +16:18:52 [ 12] [ 6] [161847] +16:18:52 [ 13] [ 4] [0320] +16:18:52 [ 15] [ 4] [0320] +16:18:52 [ 18] [ 4] [6011] +16:18:52 [ 22] [ 3] [900] +16:18:52 [ 25] [ 2] [02] +16:18:52 [ 28] [ 9] [D00002000] +16:18:52 [ 32] [ 6] [621354] +16:18:52 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:18:52 [ 37] [ 12] [507903499581] +16:18:52 [ 41] [ 8] [06002200] +16:18:52 [ 42] [ 15] [NATIVE ] +16:18:52 [ 43] [ 40] [Beng Market Beng LAO] +16:18:52 [ 49] [ 3] [418] +16:18:52 [ 52] [ 16] [50FF66322288B481] +16:18:52 ============================================================================ +16:18:52 + + +waiting on router queue for slot.... +16:18:52 Sending to : +16:18:52 ============================================================================ +16:18:52 ============================================================================ +16:18:52 Slot Id : <262> +16:18:52 Transaction Type : REQUEST +16:18:52 Received From : +16:18:52 ============================================================================ +16:18:52 FNo. Len. Field Value +16:18:52 ============================================================================ +16:18:52 [ 1] [ 4] [0200] +16:18:52 [ 2] [ 16] [6688990108424209] +16:18:52 [ 3] [ 6] [010000] +16:18:52 [ 4] [ 12] [000100000000] +16:18:52 [ 7] [ 10] [0320161847] +16:18:52 [ 11] [ 6] [796585] +16:18:52 [ 12] [ 6] [161847] +16:18:52 [ 13] [ 4] [0320] +16:18:52 [ 15] [ 4] [0320] +16:18:52 [ 18] [ 4] [6011] +16:18:52 [ 22] [ 3] [900] +16:18:52 [ 25] [ 2] [02] +16:18:52 [ 28] [ 9] [D00002000] +16:18:52 [ 32] [ 6] [621354] +16:18:52 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:18:52 [ 37] [ 12] [507903499581] +16:18:52 [ 41] [ 8] [06002200] +16:18:52 [ 42] [ 15] [NATIVE ] +16:18:52 [ 43] [ 40] [Beng Market Beng LAO] +16:18:52 [ 49] [ 3] [418] +16:18:52 [ 52] [ 16] [18594C5E4BD5B510] +16:18:52 ============================================================================ +16:18:52 + + +waiting on router queue for slot.... +16:18:52 Sending to : <4> +16:18:52 ============================================================================ +16:18:53 ============================================================================ +16:18:53 Slot Id : <262> +16:18:53 Transaction Type : RESPONSE +16:18:53 Received From : +16:18:53 ============================================================================ +16:18:53 FNo. Len. Field Value +16:18:53 ============================================================================ +16:18:53 [ 1] [ 4] [0210] +16:18:53 [ 2] [ 16] [6688990108424209] +16:18:53 [ 3] [ 6] [010000] +16:18:53 [ 4] [ 12] [000100000000] +16:18:53 [ 11] [ 6] [796585] +16:18:53 [ 12] [ 6] [161847] +16:18:53 [ 15] [ 4] [0320] +16:18:53 [ 18] [ 4] [6011] +16:18:53 [ 32] [ 6] [621354] +16:18:53 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:18:53 [ 37] [ 12] [507903499581] +16:18:53 [ 38] [ 6] [256405] +16:18:53 [ 39] [ 2] [00] +16:18:53 [ 41] [ 8] [06002200] +16:18:53 [ 49] [ 3] [418] +16:18:53 [ 54] [ 20] [0002418C000281159720] +16:18:53 ============================================================================ +16:18:53 Sending to : +16:18:53 ============================================================================ +16:18:53 + + +waiting on router queue for slot.... +16:18:54 ============================================================================ +16:18:54 Slot Id : <262> +16:18:54 Transaction Type : RESPONSE +16:18:54 Received From : +16:18:54 ============================================================================ +16:18:54 FNo. Len. Field Value +16:18:54 ============================================================================ +16:18:54 [ 1] [ 4] [0210] +16:18:54 [ 2] [ 16] [6688990108424209] +16:18:54 [ 3] [ 6] [010000] +16:18:54 [ 4] [ 12] [000100000000] +16:18:54 [ 11] [ 6] [796585] +16:18:54 [ 12] [ 6] [161847] +16:18:54 [ 15] [ 4] [0320] +16:18:54 [ 18] [ 4] [6011] +16:18:54 [ 32] [ 6] [621354] +16:18:54 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:18:54 [ 37] [ 12] [507903499581] +16:18:54 [ 38] [ 6] [256405] +16:18:54 [ 39] [ 2] [00] +16:18:54 [ 41] [ 8] [06002200] +16:18:54 [ 49] [ 3] [418] +16:18:54 [ 54] [ 20] [0002418C000281159720] +16:18:54 ============================================================================ +16:18:54 Calculate Source COMM Id = 0 +16:18:54 ============================================================================ +16:18:54 + + +waiting on router queue for slot.... +16:19:04 ============================================================================ +16:19:04 Slot Id : <334> +16:19:04 Transaction Type : REQUEST +16:19:04 Received From : +16:19:04 ============================================================================ +16:19:04 FNo. Len. Field Value +16:19:04 ============================================================================ +16:19:04 [ 1] [ 4] [0800] +16:19:04 [ 7] [ 10] [0320091811] +16:19:04 [ 11] [ 6] [157209] +16:19:04 [ 70] [ 3] [301] +16:19:04 ============================================================================ +16:19:04 + + +waiting on router queue for slot.... +16:19:04 Sending to : +16:19:04 ============================================================================ +16:19:04 ============================================================================ +16:19:04 Slot Id : <334> +16:19:04 Transaction Type : RESPONSE +16:19:04 Received From : +16:19:04 ============================================================================ +16:19:04 FNo. Len. Field Value +16:19:04 ============================================================================ +16:19:04 [ 1] [ 4] [0810] +16:19:04 [ 7] [ 10] [0320091811] +16:19:04 [ 11] [ 6] [157209] +16:19:04 [ 39] [ 2] [00] +16:19:04 [ 70] [ 3] [301] +16:19:04 ============================================================================ +16:19:04 Calculate Source COMM Id = 2 +16:19:04 ============================================================================ +16:19:04 + + +waiting on router queue for slot.... +16:19:04 ============================================================================ +16:19:04 Slot Id : <321> +16:19:04 Transaction Type : REQUEST +16:19:04 Received From : +16:19:04 ============================================================================ +16:19:04 FNo. Len. Field Value +16:19:04 ============================================================================ +16:19:04 [ 1] [ 4] [0200] +16:19:04 [ 2] [ 16] [6213544002242748] +16:19:04 [ 3] [ 6] [010000] +16:19:04 [ 4] [ 12] [000010000000] +16:19:04 [ 7] [ 10] [0320161654] +16:19:04 [ 11] [ 6] [951461] +16:19:04 [ 12] [ 6] [161654] +16:19:04 [ 13] [ 4] [0320] +16:19:04 [ 15] [ 4] [0320] +16:19:04 [ 18] [ 4] [6011] +16:19:04 [ 19] [ 3] [418] +16:19:04 [ 22] [ 3] [021] +16:19:04 [ 25] [ 2] [01] +16:19:04 [ 28] [ 9] [D00002000] +16:19:04 [ 32] [ 6] [668899] +16:19:04 [ 35] [ 32] [6213544002242748=491212014274787] +16:19:04 [ 37] [ 12] [507900577940] +16:19:04 [ 41] [ 8] [03014005] +16:19:04 [ 42] [ 15] [APT ] +16:19:04 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:19:04 [ 49] [ 3] [418] +16:19:04 [ 52] [ 16] [DEBB094A00743A27] +16:19:04 ============================================================================ +16:19:04 + + +waiting on router queue for slot.... +16:19:04 Sending to : +16:19:04 ============================================================================ +16:19:04 Sending to : +16:19:04 ============================================================================ +16:19:05 ============================================================================ +16:19:05 Slot Id : <321> +16:19:05 Transaction Type : REQUEST +16:19:05 Received From : +16:19:05 ============================================================================ +16:19:05 FNo. Len. Field Value +16:19:05 ============================================================================ +16:19:05 [ 1] [ 4] [0200] +16:19:05 [ 2] [ 16] [6213544002242748] +16:19:05 [ 3] [ 6] [010000] +16:19:05 [ 4] [ 12] [000010000000] +16:19:05 [ 7] [ 10] [0320161654] +16:19:05 [ 11] [ 6] [951461] +16:19:05 [ 12] [ 6] [161654] +16:19:05 [ 13] [ 4] [0320] +16:19:05 [ 15] [ 4] [0320] +16:19:05 [ 18] [ 4] [6011] +16:19:05 [ 19] [ 3] [418] +16:19:05 [ 22] [ 3] [021] +16:19:05 [ 25] [ 2] [01] +16:19:05 [ 28] [ 9] [D00002000] +16:19:05 [ 32] [ 6] [668899] +16:19:05 [ 35] [ 32] [6213544002242748=491212014274787] +16:19:05 [ 37] [ 12] [507900577940] +16:19:05 [ 41] [ 8] [03014005] +16:19:05 [ 42] [ 15] [APT ] +16:19:05 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:19:05 [ 49] [ 3] [418] +16:19:05 [ 52] [ 16] [DEBB094A00743A27] +16:19:05 ============================================================================ +16:19:05 + + +waiting on router queue for slot.... +16:19:05 Sending to : +16:19:05 ============================================================================ +16:19:05 ============================================================================ +16:19:05 Slot Id : <321> +16:19:05 Transaction Type : REQUEST +16:19:05 Received From : +16:19:05 ============================================================================ +16:19:05 FNo. Len. Field Value +16:19:05 ============================================================================ +16:19:05 [ 1] [ 4] [0200] +16:19:05 [ 2] [ 16] [6213544002242748] +16:19:05 [ 3] [ 6] [010000] +16:19:05 [ 4] [ 12] [000010000000] +16:19:05 [ 7] [ 10] [0320161654] +16:19:05 [ 11] [ 6] [951461] +16:19:05 [ 12] [ 6] [161654] +16:19:05 [ 13] [ 4] [0320] +16:19:05 [ 15] [ 4] [0320] +16:19:05 [ 18] [ 4] [6011] +16:19:05 [ 19] [ 3] [418] +16:19:05 [ 22] [ 3] [021] +16:19:05 [ 25] [ 2] [01] +16:19:05 [ 28] [ 9] [D00002000] +16:19:05 [ 32] [ 6] [668899] +16:19:05 [ 35] [ 32] [6213544002242748=491212014274787] +16:19:05 [ 37] [ 12] [507900577940] +16:19:05 [ 41] [ 8] [03014005] +16:19:05 [ 42] [ 15] [APT ] +16:19:05 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:19:05 [ 49] [ 3] [418] +16:19:05 [ 52] [ 16] [54D426C6A8036983] +16:19:05 ============================================================================ +16:19:05 + + +waiting on router queue for slot.... +16:19:05 Sending to : <0> +16:19:05 ============================================================================ +16:19:05 ============================================================================ +16:19:05 Slot Id : <321> +16:19:05 Transaction Type : RESPONSE +16:19:05 Received From : +16:19:05 ============================================================================ +16:19:05 FNo. Len. Field Value +16:19:05 ============================================================================ +16:19:05 [ 1] [ 4] [0210] +16:19:05 [ 2] [ 16] [6213544002242748] +16:19:05 [ 3] [ 6] [010000] +16:19:05 [ 4] [ 12] [000010000000] +16:19:05 [ 7] [ 10] [0320161654] +16:19:05 [ 11] [ 6] [951461] +16:19:05 [ 12] [ 6] [161654] +16:19:05 [ 13] [ 4] [0320] +16:19:05 [ 15] [ 4] [0320] +16:19:05 [ 18] [ 4] [6011] +16:19:05 [ 19] [ 3] [418] +16:19:05 [ 22] [ 3] [021] +16:19:05 [ 32] [ 6] [668899] +16:19:05 [ 35] [ 32] [6213544002242748=491212014274787] +16:19:05 [ 37] [ 12] [507900577940] +16:19:05 [ 38] [ 6] [161900] +16:19:05 [ 39] [ 2] [55] +16:19:05 [ 41] [ 8] [03014005] +16:19:05 [ 49] [ 3] [418] +16:19:05 ============================================================================ +16:19:05 Sending to : +16:19:05 ============================================================================ +16:19:05 + + +waiting on router queue for slot.... +16:19:06 ============================================================================ +16:19:06 Slot Id : <321> +16:19:06 Transaction Type : RESPONSE +16:19:06 Received From : +16:19:06 ============================================================================ +16:19:06 FNo. Len. Field Value +16:19:06 ============================================================================ +16:19:06 [ 1] [ 4] [0210] +16:19:06 [ 2] [ 16] [6213544002242748] +16:19:06 [ 3] [ 6] [010000] +16:19:06 [ 4] [ 12] [000010000000] +16:19:06 [ 7] [ 10] [0320161654] +16:19:06 [ 11] [ 6] [951461] +16:19:06 [ 12] [ 6] [161654] +16:19:06 [ 13] [ 4] [0320] +16:19:06 [ 15] [ 4] [0320] +16:19:06 [ 18] [ 4] [6011] +16:19:06 [ 19] [ 3] [418] +16:19:06 [ 22] [ 3] [021] +16:19:06 [ 32] [ 6] [668899] +16:19:06 [ 35] [ 32] [6213544002242748=491212014274787] +16:19:06 [ 37] [ 12] [507900577940] +16:19:06 [ 38] [ 6] [161900] +16:19:06 [ 39] [ 2] [55] +16:19:06 [ 41] [ 8] [03014005] +16:19:06 [ 49] [ 3] [418] +16:19:06 ============================================================================ +16:19:06 Calculate Source COMM Id = 4 +16:19:06 ============================================================================ +16:19:06 + + +waiting on router queue for slot.... +16:19:08 ============================================================================ +16:19:08 Slot Id : <336> +16:19:08 Transaction Type : REQUEST +16:19:08 Received From : +16:19:08 ============================================================================ +16:19:08 FNo. Len. Field Value +16:19:08 ============================================================================ +16:19:08 [ 1] [ 4] [0200] +16:19:08 [ 2] [ 16] [6213543000155886] +16:19:08 [ 3] [ 6] [012000] +16:19:08 [ 4] [ 12] [000010000000] +16:19:08 [ 7] [ 10] [0320162655] +16:19:08 [ 11] [ 6] [189028] +16:19:08 [ 12] [ 6] [162655] +16:19:08 [ 13] [ 4] [0320] +16:19:08 [ 14] [ 4] [4912] +16:19:08 [ 15] [ 4] [0320] +16:19:08 [ 18] [ 4] [6011] +16:19:08 [ 22] [ 3] [900] +16:19:08 [ 25] [ 2] [02] +16:19:08 [ 28] [ 9] [D00002000] +16:19:08 [ 32] [ 6] [220699] +16:19:08 [ 35] [ 32] [6213543000155886=491212015588726] +16:19:08 [ 37] [ 12] [507900084367] +16:19:08 [ 41] [ 8] [01000800] +16:19:08 [ 42] [ 15] [APTRA ] +16:19:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:19:08 [ 49] [ 3] [418] +16:19:08 [ 52] [ 16] [0DB20C5FDC971EE6] +16:19:08 ============================================================================ +16:19:08 + + +waiting on router queue for slot.... +16:19:08 Sending to : +16:19:08 ============================================================================ +16:19:08 Sending to : +16:19:08 ============================================================================ +16:19:08 ============================================================================ +16:19:08 Slot Id : <320> +16:19:08 Transaction Type : REQUEST +16:19:08 Received From : +16:19:08 ============================================================================ +16:19:08 FNo. Len. Field Value +16:19:08 ============================================================================ +16:19:08 [ 1] [ 4] [0200] +16:19:08 [ 2] [ 16] [6688990105247207] +16:19:08 [ 3] [ 6] [011000] +16:19:08 [ 4] [ 12] [000100000000] +16:19:08 [ 7] [ 10] [0320161904] +16:19:08 [ 11] [ 6] [796656] +16:19:08 [ 12] [ 6] [161904] +16:19:08 [ 13] [ 4] [0320] +16:19:08 [ 15] [ 4] [0320] +16:19:08 [ 18] [ 4] [6011] +16:19:08 [ 22] [ 3] [900] +16:19:08 [ 25] [ 2] [02] +16:19:08 [ 28] [ 9] [D00002000] +16:19:08 [ 32] [ 6] [621354] +16:19:08 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:19:08 [ 37] [ 12] [507904719772] +16:19:08 [ 41] [ 8] [18001000] +16:19:08 [ 42] [ 15] [NATIVE ] +16:19:08 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:19:08 [ 49] [ 3] [418] +16:19:08 [ 52] [ 16] [667459472C5E1498] +16:19:08 ============================================================================ +16:19:08 + + +waiting on router queue for slot.... +16:19:08 Sending to : +16:19:08 ============================================================================ +16:19:08 Sending to : +16:19:08 ============================================================================ +16:19:08 ============================================================================ +16:19:08 Slot Id : <336> +16:19:08 Transaction Type : REQUEST +16:19:08 Received From : +16:19:08 ============================================================================ +16:19:08 FNo. Len. Field Value +16:19:08 ============================================================================ +16:19:08 [ 1] [ 4] [0200] +16:19:08 [ 2] [ 16] [6213543000155886] +16:19:08 [ 3] [ 6] [012000] +16:19:08 [ 4] [ 12] [000010000000] +16:19:08 [ 7] [ 10] [0320162655] +16:19:08 [ 11] [ 6] [189028] +16:19:08 [ 12] [ 6] [162655] +16:19:08 [ 13] [ 4] [0320] +16:19:08 [ 14] [ 4] [4912] +16:19:08 [ 15] [ 4] [0320] +16:19:08 [ 18] [ 4] [6011] +16:19:08 [ 22] [ 3] [900] +16:19:08 [ 25] [ 2] [02] +16:19:08 [ 28] [ 9] [D00002000] +16:19:08 [ 32] [ 6] [220699] +16:19:08 [ 35] [ 32] [6213543000155886=491212015588726] +16:19:08 [ 37] [ 12] [507900084367] +16:19:08 [ 41] [ 8] [01000800] +16:19:08 [ 42] [ 15] [APTRA ] +16:19:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:19:08 [ 49] [ 3] [418] +16:19:08 [ 52] [ 16] [0DB20C5FDC971EE6] +16:19:08 ============================================================================ +16:19:08 + + +waiting on router queue for slot.... +16:19:08 Sending to : +16:19:08 ============================================================================ +16:19:08 ============================================================================ +16:19:08 Slot Id : <336> +16:19:08 Transaction Type : REQUEST +16:19:08 Received From : +16:19:08 ============================================================================ +16:19:08 FNo. Len. Field Value +16:19:08 ============================================================================ +16:19:08 [ 1] [ 4] [0200] +16:19:08 [ 2] [ 16] [6213543000155886] +16:19:08 [ 3] [ 6] [012000] +16:19:08 [ 4] [ 12] [000010000000] +16:19:08 [ 7] [ 10] [0320162655] +16:19:08 [ 11] [ 6] [189028] +16:19:08 [ 12] [ 6] [162655] +16:19:08 [ 13] [ 4] [0320] +16:19:08 [ 14] [ 4] [4912] +16:19:08 [ 15] [ 4] [0320] +16:19:08 [ 18] [ 4] [6011] +16:19:08 [ 22] [ 3] [900] +16:19:08 [ 25] [ 2] [02] +16:19:08 [ 28] [ 9] [D00002000] +16:19:08 [ 32] [ 6] [220699] +16:19:08 [ 35] [ 32] [6213543000155886=491212015588726] +16:19:08 [ 37] [ 12] [507900084367] +16:19:08 [ 41] [ 8] [01000800] +16:19:08 [ 42] [ 15] [APTRA ] +16:19:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:19:08 [ 49] [ 3] [418] +16:19:08 [ 52] [ 16] [3F269667ED9C98DD] +16:19:08 ============================================================================ +16:19:08 + + +waiting on router queue for slot.... +16:19:08 Sending to : <0> +16:19:08 ============================================================================ +16:19:09 ============================================================================ +16:19:09 Slot Id : <320> +16:19:09 Transaction Type : REQUEST +16:19:09 Received From : +16:19:09 ============================================================================ +16:19:09 FNo. Len. Field Value +16:19:09 ============================================================================ +16:19:09 [ 1] [ 4] [0200] +16:19:09 [ 2] [ 16] [6688990105247207] +16:19:09 [ 3] [ 6] [011000] +16:19:09 [ 4] [ 12] [000100000000] +16:19:09 [ 7] [ 10] [0320161904] +16:19:09 [ 11] [ 6] [796656] +16:19:09 [ 12] [ 6] [161904] +16:19:09 [ 13] [ 4] [0320] +16:19:09 [ 15] [ 4] [0320] +16:19:09 [ 18] [ 4] [6011] +16:19:09 [ 22] [ 3] [900] +16:19:09 [ 25] [ 2] [02] +16:19:09 [ 28] [ 9] [D00002000] +16:19:09 [ 32] [ 6] [621354] +16:19:09 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:19:09 [ 37] [ 12] [507904719772] +16:19:09 [ 41] [ 8] [18001000] +16:19:09 [ 42] [ 15] [NATIVE ] +16:19:09 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:19:09 [ 49] [ 3] [418] +16:19:09 [ 52] [ 16] [667459472C5E1498] +16:19:09 ============================================================================ +16:19:09 + + +waiting on router queue for slot.... +16:19:09 Sending to : +16:19:09 ============================================================================ +16:19:09 ============================================================================ +16:19:09 Slot Id : <320> +16:19:09 Transaction Type : REQUEST +16:19:09 Received From : +16:19:09 ============================================================================ +16:19:09 FNo. Len. Field Value +16:19:09 ============================================================================ +16:19:09 [ 1] [ 4] [0200] +16:19:09 [ 2] [ 16] [6688990105247207] +16:19:09 [ 3] [ 6] [011000] +16:19:09 [ 4] [ 12] [000100000000] +16:19:09 [ 7] [ 10] [0320161904] +16:19:09 [ 11] [ 6] [796656] +16:19:09 [ 12] [ 6] [161904] +16:19:09 [ 13] [ 4] [0320] +16:19:09 [ 15] [ 4] [0320] +16:19:09 [ 18] [ 4] [6011] +16:19:09 [ 22] [ 3] [900] +16:19:09 [ 25] [ 2] [02] +16:19:09 [ 28] [ 9] [D00002000] +16:19:09 [ 32] [ 6] [621354] +16:19:09 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:19:09 [ 37] [ 12] [507904719772] +16:19:09 [ 41] [ 8] [18001000] +16:19:09 [ 42] [ 15] [NATIVE ] +16:19:09 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:19:09 [ 49] [ 3] [418] +16:19:09 [ 52] [ 16] [2740F324422C69C1] +16:19:09 ============================================================================ +16:19:09 + + +waiting on router queue for slot.... +16:19:09 Sending to : <4> +16:19:09 ============================================================================ +16:19:09 ============================================================================ +16:19:09 Slot Id : <336> +16:19:09 Transaction Type : RESPONSE +16:19:09 Received From : +16:19:09 ============================================================================ +16:19:09 FNo. Len. Field Value +16:19:09 ============================================================================ +16:19:09 [ 1] [ 4] [0210] +16:19:09 [ 2] [ 16] [6213543000155886] +16:19:09 [ 3] [ 6] [012000] +16:19:09 [ 4] [ 12] [000010000000] +16:19:09 [ 7] [ 10] [0320162655] +16:19:09 [ 11] [ 6] [189028] +16:19:09 [ 12] [ 6] [162655] +16:19:09 [ 13] [ 4] [0320] +16:19:09 [ 15] [ 4] [0320] +16:19:09 [ 18] [ 4] [6011] +16:19:09 [ 32] [ 6] [220699] +16:19:09 [ 35] [ 32] [6213543000155886=491212015588726] +16:19:09 [ 37] [ 12] [507900084367] +16:19:09 [ 38] [ 6] [108633] +16:19:09 [ 39] [ 2] [00] +16:19:09 [ 41] [ 8] [01000800] +16:19:09 [ 49] [ 3] [418] +16:19:09 [ 54] [ 40] [2001418C0000287900702002418C000028790070] +16:19:09 ============================================================================ +16:19:09 Sending to : +16:19:09 ============================================================================ +16:19:09 + + +waiting on router queue for slot.... +16:19:10 ============================================================================ +16:19:10 Slot Id : <320> +16:19:10 Transaction Type : RESPONSE +16:19:10 Received From : +16:19:10 ============================================================================ +16:19:10 FNo. Len. Field Value +16:19:10 ============================================================================ +16:19:10 [ 1] [ 4] [0210] +16:19:10 [ 2] [ 16] [6688990105247207] +16:19:10 [ 3] [ 6] [011000] +16:19:10 [ 4] [ 12] [000100000000] +16:19:10 [ 11] [ 6] [796656] +16:19:10 [ 12] [ 6] [161904] +16:19:10 [ 15] [ 4] [0320] +16:19:10 [ 18] [ 4] [6011] +16:19:10 [ 32] [ 6] [621354] +16:19:10 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:19:10 [ 37] [ 12] [507904719772] +16:19:10 [ 38] [ 6] [273244] +16:19:10 [ 39] [ 2] [00] +16:19:10 [ 41] [ 8] [18001000] +16:19:10 [ 49] [ 3] [418] +16:19:10 [ 54] [ 20] [1002418C000280356582] +16:19:10 ============================================================================ +16:19:10 Sending to : +16:19:10 ============================================================================ +16:19:10 + + +waiting on router queue for slot.... +16:19:10 ============================================================================ +16:19:10 Slot Id : <342> +16:19:10 Transaction Type : REQUEST +16:19:10 Received From : +16:19:10 ============================================================================ +16:19:10 FNo. Len. Field Value +16:19:10 ============================================================================ +16:19:10 [ 1] [ 4] [0200] +16:19:10 [ 2] [ 16] [6213544000324449] +16:19:10 [ 3] [ 6] [010000] +16:19:10 [ 4] [ 12] [000010000000] +16:19:10 [ 7] [ 10] [0320161700] +16:19:10 [ 11] [ 6] [951464] +16:19:10 [ 12] [ 6] [161700] +16:19:10 [ 13] [ 4] [0320] +16:19:10 [ 15] [ 4] [0320] +16:19:10 [ 18] [ 4] [6011] +16:19:10 [ 19] [ 3] [418] +16:19:10 [ 22] [ 3] [021] +16:19:10 [ 25] [ 2] [01] +16:19:10 [ 28] [ 9] [D00002000] +16:19:10 [ 32] [ 6] [668899] +16:19:10 [ 35] [ 32] [6213544000324449=491212012444118] +16:19:10 [ 37] [ 12] [507900802092] +16:19:10 [ 41] [ 8] [03009002] +16:19:10 [ 42] [ 15] [APT ] +16:19:10 [ 43] [ 40] [ POST OFFICE XIENGKHUANPOS] +16:19:10 [ 49] [ 3] [418] +16:19:10 [ 52] [ 16] [A89AAFC74CF77E08] +16:19:10 ============================================================================ +16:19:10 + + +waiting on router queue for slot.... +16:19:10 Sending to : +16:19:10 ============================================================================ +16:19:10 Sending to : +16:19:10 ============================================================================ +16:19:10 ============================================================================ +16:19:10 Slot Id : <342> +16:19:10 Transaction Type : REQUEST +16:19:10 Received From : +16:19:10 ============================================================================ +16:19:10 FNo. Len. Field Value +16:19:10 ============================================================================ +16:19:10 [ 1] [ 4] [0200] +16:19:10 [ 2] [ 16] [6213544000324449] +16:19:10 [ 3] [ 6] [010000] +16:19:10 [ 4] [ 12] [000010000000] +16:19:10 [ 7] [ 10] [0320161700] +16:19:10 [ 11] [ 6] [951464] +16:19:10 [ 12] [ 6] [161700] +16:19:10 [ 13] [ 4] [0320] +16:19:10 [ 15] [ 4] [0320] +16:19:10 [ 18] [ 4] [6011] +16:19:10 [ 19] [ 3] [418] +16:19:10 [ 22] [ 3] [021] +16:19:10 [ 25] [ 2] [01] +16:19:10 [ 28] [ 9] [D00002000] +16:19:10 [ 32] [ 6] [668899] +16:19:10 [ 35] [ 32] [6213544000324449=491212012444118] +16:19:10 [ 37] [ 12] [507900802092] +16:19:10 [ 41] [ 8] [03009002] +16:19:10 [ 42] [ 15] [APT ] +16:19:10 [ 43] [ 40] [ POST OFFICE XIENGKHUANPOS] +16:19:10 [ 49] [ 3] [418] +16:19:10 [ 52] [ 16] [A89AAFC74CF77E08] +16:19:10 ============================================================================ +16:19:10 + + +waiting on router queue for slot.... +16:19:10 Sending to : +16:19:10 ============================================================================ +16:19:10 ============================================================================ +16:19:10 Slot Id : <342> +16:19:10 Transaction Type : REQUEST +16:19:10 Received From : +16:19:10 ============================================================================ +16:19:10 FNo. Len. Field Value +16:19:10 ============================================================================ +16:19:10 [ 1] [ 4] [0200] +16:19:10 [ 2] [ 16] [6213544000324449] +16:19:10 [ 3] [ 6] [010000] +16:19:10 [ 4] [ 12] [000010000000] +16:19:10 [ 7] [ 10] [0320161700] +16:19:10 [ 11] [ 6] [951464] +16:19:10 [ 12] [ 6] [161700] +16:19:10 [ 13] [ 4] [0320] +16:19:10 [ 15] [ 4] [0320] +16:19:10 [ 18] [ 4] [6011] +16:19:10 [ 19] [ 3] [418] +16:19:10 [ 22] [ 3] [021] +16:19:10 [ 25] [ 2] [01] +16:19:10 [ 28] [ 9] [D00002000] +16:19:10 [ 32] [ 6] [668899] +16:19:10 [ 35] [ 32] [6213544000324449=491212012444118] +16:19:10 [ 37] [ 12] [507900802092] +16:19:10 [ 41] [ 8] [03009002] +16:19:10 [ 42] [ 15] [APT ] +16:19:10 [ 43] [ 40] [ POST OFFICE XIENGKHUANPOS] +16:19:10 [ 49] [ 3] [418] +16:19:10 [ 52] [ 16] [9186B5BDFC839A08] +16:19:10 ============================================================================ +16:19:10 + + +waiting on router queue for slot.... +16:19:10 Sending to : <0> +16:19:10 ============================================================================ +16:19:11 ============================================================================ +16:19:11 Slot Id : <336> +16:19:11 Transaction Type : RESPONSE +16:19:11 Received From : +16:19:11 ============================================================================ +16:19:11 FNo. Len. Field Value +16:19:11 ============================================================================ +16:19:11 [ 1] [ 4] [0210] +16:19:11 [ 2] [ 16] [6213543000155886] +16:19:11 [ 3] [ 6] [012000] +16:19:11 [ 4] [ 12] [000010000000] +16:19:11 [ 7] [ 10] [0320162655] +16:19:11 [ 11] [ 6] [189028] +16:19:11 [ 12] [ 6] [162655] +16:19:11 [ 13] [ 4] [0320] +16:19:11 [ 15] [ 4] [0320] +16:19:11 [ 18] [ 4] [6011] +16:19:11 [ 32] [ 6] [220699] +16:19:11 [ 35] [ 32] [6213543000155886=491212015588726] +16:19:11 [ 37] [ 12] [507900084367] +16:19:11 [ 38] [ 6] [108633] +16:19:11 [ 39] [ 2] [00] +16:19:11 [ 41] [ 8] [01000800] +16:19:11 [ 49] [ 3] [418] +16:19:11 [ 54] [ 40] [2001418C0000287900702002418C000028790070] +16:19:11 ============================================================================ +16:19:11 Calculate Source COMM Id = 1 +16:19:11 ============================================================================ +16:19:11 + + +waiting on router queue for slot.... +16:19:11 ============================================================================ +16:19:11 Slot Id : <342> +16:19:11 Transaction Type : RESPONSE +16:19:11 Received From : +16:19:11 ============================================================================ +16:19:11 FNo. Len. Field Value +16:19:11 ============================================================================ +16:19:11 [ 1] [ 4] [0210] +16:19:11 [ 2] [ 16] [6213544000324449] +16:19:11 [ 3] [ 6] [010000] +16:19:11 [ 4] [ 12] [000010000000] +16:19:11 [ 7] [ 10] [0320161700] +16:19:11 [ 11] [ 6] [951464] +16:19:11 [ 12] [ 6] [161700] +16:19:11 [ 13] [ 4] [0320] +16:19:11 [ 15] [ 4] [0320] +16:19:11 [ 18] [ 4] [6011] +16:19:11 [ 19] [ 3] [418] +16:19:11 [ 32] [ 6] [668899] +16:19:11 [ 35] [ 32] [6213544000324449=491212012444118] +16:19:11 [ 37] [ 12] [507900802092] +16:19:11 [ 38] [ 6] [915069] +16:19:11 [ 39] [ 2] [00] +16:19:11 [ 41] [ 8] [03009002] +16:19:11 [ 49] [ 3] [418] +16:19:11 [ 54] [ 40] [0001418C0002233926020002418C000223392602] +16:19:11 ============================================================================ +16:19:11 Sending to : +16:19:11 ============================================================================ +16:19:11 + + +waiting on router queue for slot.... +16:19:11 ============================================================================ +16:19:11 Slot Id : <339> +16:19:11 Transaction Type : REQUEST +16:19:11 Received From : +16:19:11 ============================================================================ +16:19:11 FNo. Len. Field Value +16:19:11 ============================================================================ +16:19:11 [ 1] [ 4] [0200] +16:19:11 [ 2] [ 16] [6213544002132915] +16:19:11 [ 3] [ 6] [010000] +16:19:11 [ 4] [ 12] [000010000000] +16:19:11 [ 7] [ 10] [0320091817] +16:19:11 [ 11] [ 6] [270348] +16:19:11 [ 12] [ 6] [161817] +16:19:11 [ 13] [ 4] [0320] +16:19:11 [ 14] [ 4] [4912] +16:19:11 [ 15] [ 4] [0320] +16:19:11 [ 18] [ 4] [6011] +16:19:11 [ 19] [ 3] [418] +16:19:11 [ 22] [ 3] [021] +16:19:11 [ 25] [ 2] [01] +16:19:11 [ 28] [ 9] [D00002000] +16:19:11 [ 32] [ 6] [180893] +16:19:11 [ 35] [ 32] [6213544002132915=491212013291219] +16:19:11 [ 37] [ 12] [507909270348] +16:19:11 [ 41] [ 8] [0363CPSH] +16:19:11 [ 42] [ 15] [999999 ] +16:19:11 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:19:11 [ 49] [ 3] [418] +16:19:11 [ 52] [ 16] [D48423EA4E570BD3] +16:19:11 ============================================================================ +16:19:11 + + +waiting on router queue for slot.... +16:19:11 Sending to : +16:19:11 ============================================================================ +16:19:11 Sending to : +16:19:11 ============================================================================ +16:19:12 ============================================================================ +16:19:12 Slot Id : <339> +16:19:12 Transaction Type : REQUEST +16:19:12 Received From : +16:19:12 ============================================================================ +16:19:12 FNo. Len. Field Value +16:19:12 ============================================================================ +16:19:12 [ 1] [ 4] [0200] +16:19:12 [ 2] [ 16] [6213544002132915] +16:19:12 [ 3] [ 6] [010000] +16:19:12 [ 4] [ 12] [000010000000] +16:19:12 [ 7] [ 10] [0320091817] +16:19:12 [ 11] [ 6] [270348] +16:19:12 [ 12] [ 6] [161817] +16:19:12 [ 13] [ 4] [0320] +16:19:12 [ 14] [ 4] [4912] +16:19:12 [ 15] [ 4] [0320] +16:19:12 [ 18] [ 4] [6011] +16:19:12 [ 19] [ 3] [418] +16:19:12 [ 22] [ 3] [021] +16:19:12 [ 25] [ 2] [01] +16:19:12 [ 28] [ 9] [D00002000] +16:19:12 [ 32] [ 6] [180893] +16:19:12 [ 35] [ 32] [6213544002132915=491212013291219] +16:19:12 [ 37] [ 12] [507909270348] +16:19:12 [ 41] [ 8] [0363CPSH] +16:19:12 [ 42] [ 15] [999999 ] +16:19:12 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:19:12 [ 49] [ 3] [418] +16:19:12 [ 52] [ 16] [D48423EA4E570BD3] +16:19:12 ============================================================================ +16:19:12 + + +waiting on router queue for slot.... +16:19:12 Sending to : +16:19:12 ============================================================================ +16:19:12 ============================================================================ +16:19:12 Slot Id : <339> +16:19:12 Transaction Type : REQUEST +16:19:12 Received From : +16:19:12 ============================================================================ +16:19:12 FNo. Len. Field Value +16:19:12 ============================================================================ +16:19:12 [ 1] [ 4] [0200] +16:19:12 [ 2] [ 16] [6213544002132915] +16:19:12 [ 3] [ 6] [010000] +16:19:12 [ 4] [ 12] [000010000000] +16:19:12 [ 7] [ 10] [0320091817] +16:19:12 [ 11] [ 6] [270348] +16:19:12 [ 12] [ 6] [161817] +16:19:12 [ 13] [ 4] [0320] +16:19:12 [ 14] [ 4] [4912] +16:19:12 [ 15] [ 4] [0320] +16:19:12 [ 18] [ 4] [6011] +16:19:12 [ 19] [ 3] [418] +16:19:12 [ 22] [ 3] [021] +16:19:12 [ 25] [ 2] [01] +16:19:12 [ 28] [ 9] [D00002000] +16:19:12 [ 32] [ 6] [180893] +16:19:12 [ 35] [ 32] [6213544002132915=491212013291219] +16:19:12 [ 37] [ 12] [507909270348] +16:19:12 [ 41] [ 8] [0363CPSH] +16:19:12 [ 42] [ 15] [999999 ] +16:19:12 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:19:12 [ 49] [ 3] [418] +16:19:12 [ 52] [ 16] [79A37C6903DC7B60] +16:19:12 ============================================================================ +16:19:12 + + +waiting on router queue for slot.... +16:19:12 Sending to : <0> +16:19:12 ============================================================================ +16:19:12 ============================================================================ +16:19:12 Slot Id : <339> +16:19:12 Transaction Type : RESPONSE +16:19:12 Received From : +16:19:12 ============================================================================ +16:19:12 FNo. Len. Field Value +16:19:12 ============================================================================ +16:19:12 [ 1] [ 4] [0210] +16:19:12 [ 2] [ 16] [6213544002132915] +16:19:12 [ 3] [ 6] [010000] +16:19:12 [ 4] [ 12] [000010000000] +16:19:12 [ 7] [ 10] [0320091817] +16:19:12 [ 11] [ 6] [270348] +16:19:12 [ 12] [ 6] [161817] +16:19:12 [ 13] [ 4] [0320] +16:19:12 [ 15] [ 4] [0320] +16:19:12 [ 18] [ 4] [6011] +16:19:12 [ 19] [ 3] [418] +16:19:12 [ 32] [ 6] [180893] +16:19:12 [ 35] [ 32] [6213544002132915=491212013291219] +16:19:12 [ 37] [ 12] [507909270348] +16:19:12 [ 38] [ 6] [221853] +16:19:12 [ 39] [ 2] [00] +16:19:12 [ 41] [ 8] [0363CPSH] +16:19:12 [ 49] [ 3] [418] +16:19:12 [ 54] [ 40] [0001418C0000434258900002418C000043425890] +16:19:12 ============================================================================ +16:19:12 Sending to : +16:19:12 ============================================================================ +16:19:12 + + +waiting on router queue for slot.... +16:19:12 ============================================================================ +16:19:12 Slot Id : <320> +16:19:12 Transaction Type : RESPONSE +16:19:12 Received From : +16:19:12 ============================================================================ +16:19:12 FNo. Len. Field Value +16:19:12 ============================================================================ +16:19:12 [ 1] [ 4] [0210] +16:19:12 [ 2] [ 16] [6688990105247207] +16:19:12 [ 3] [ 6] [011000] +16:19:12 [ 4] [ 12] [000100000000] +16:19:12 [ 11] [ 6] [796656] +16:19:12 [ 12] [ 6] [161904] +16:19:12 [ 15] [ 4] [0320] +16:19:12 [ 18] [ 4] [6011] +16:19:12 [ 32] [ 6] [621354] +16:19:12 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:19:12 [ 37] [ 12] [507904719772] +16:19:12 [ 38] [ 6] [273244] +16:19:12 [ 39] [ 2] [00] +16:19:12 [ 41] [ 8] [18001000] +16:19:12 [ 49] [ 3] [418] +16:19:12 [ 54] [ 20] [1002418C000280356582] +16:19:12 ============================================================================ +16:19:12 Calculate Source COMM Id = 0 +16:19:12 ============================================================================ +16:19:12 + + +waiting on router queue for slot.... +16:19:13 ============================================================================ +16:19:13 Slot Id : <323> +16:19:13 Transaction Type : REQUEST +16:19:13 Received From : +16:19:13 ============================================================================ +16:19:13 FNo. Len. Field Value +16:19:13 ============================================================================ +16:19:13 [ 1] [ 4] [0800] +16:19:13 [ 2] [ 5] [02531] +16:19:13 [ 3] [ 6] [579168] +16:19:13 [ 7] [ 10] [0320091913] +16:19:13 [ 11] [ 6] [807359] +16:19:13 [ 15] [ 10] [0320091913] +16:19:13 [ 37] [ 11] [57916807359] +16:19:13 [ 70] [ 3] [001] +16:19:13 ============================================================================ +16:19:13 + + +waiting on router queue for slot.... +16:19:13 ============================================================================ +16:19:13 Slot Id : <323> +16:19:13 Transaction Type : RESPONSE +16:19:13 Received From : +16:19:13 ============================================================================ +16:19:13 FNo. Len. Field Value +16:19:13 ============================================================================ +16:19:13 [ 1] [ 4] [0810] +16:19:13 [ 7] [ 10] [0320091913] +16:19:13 [ 11] [ 6] [807359] +16:19:13 [ 15] [ 4] [0320] +16:19:13 [ 37] [ 12] [57916807359] +16:19:13 [ 39] [ 2] [00] +16:19:13 [ 70] [ 3] [001] +16:19:13 ============================================================================ +16:19:13 Sending to : +16:19:13 ============================================================================ +16:19:13 + + +waiting on router queue for slot.... +16:19:14 ============================================================================ +16:19:14 Slot Id : <339> +16:19:14 Transaction Type : RESPONSE +16:19:14 Received From : +16:19:14 ============================================================================ +16:19:14 FNo. Len. Field Value +16:19:14 ============================================================================ +16:19:14 [ 1] [ 4] [0210] +16:19:14 [ 2] [ 16] [6213544002132915] +16:19:14 [ 3] [ 6] [010000] +16:19:14 [ 4] [ 12] [000010000000] +16:19:14 [ 7] [ 10] [0320091817] +16:19:14 [ 11] [ 6] [270348] +16:19:14 [ 12] [ 6] [161817] +16:19:14 [ 13] [ 4] [0320] +16:19:14 [ 15] [ 4] [0320] +16:19:14 [ 18] [ 4] [6011] +16:19:14 [ 19] [ 3] [418] +16:19:14 [ 32] [ 6] [180893] +16:19:14 [ 35] [ 32] [6213544002132915=491212013291219] +16:19:14 [ 37] [ 12] [507909270348] +16:19:14 [ 38] [ 6] [221853] +16:19:14 [ 39] [ 2] [00] +16:19:14 [ 41] [ 8] [0363CPSH] +16:19:14 [ 49] [ 3] [418] +16:19:14 [ 54] [ 40] [0001418C0000434258900002418C000043425890] +16:19:14 ============================================================================ +16:19:14 Calculate Source COMM Id = 2 +16:19:14 ============================================================================ +16:19:14 + + +waiting on router queue for slot.... +16:19:14 ============================================================================ +16:19:14 Slot Id : <341> +16:19:14 Transaction Type : REQUEST +16:19:14 Received From : +16:19:14 ============================================================================ +16:19:14 FNo. Len. Field Value +16:19:14 ============================================================================ +16:19:14 [ 1] [ 4] [0800] +16:19:14 [ 7] [ 10] [0320233102] +16:19:14 [ 11] [ 6] [163102] +16:19:14 [ 37] [ 12] [57916163102] +16:19:14 [ 70] [ 3] [301] +16:19:14 ============================================================================ +16:19:14 + + +waiting on router queue for slot.... +16:19:14 Sending to : +16:19:14 ============================================================================ +16:19:14 ============================================================================ +16:19:14 Slot Id : <341> +16:19:14 Transaction Type : RESPONSE +16:19:14 Received From : +16:19:14 ============================================================================ +16:19:14 FNo. Len. Field Value +16:19:14 ============================================================================ +16:19:14 [ 1] [ 4] [0810] +16:19:14 [ 7] [ 10] [0320233102] +16:19:14 [ 11] [ 6] [163102] +16:19:14 [ 37] [ 12] [579161631020] +16:19:14 [ 39] [ 2] [00] +16:19:14 [ 70] [ 3] [810] +16:19:14 ============================================================================ +16:19:14 Calculate Source COMM Id = 6 +16:19:14 ============================================================================ +16:19:14 + + +waiting on router queue for slot.... +16:19:15 ============================================================================ +16:19:15 Slot Id : <342> +16:19:15 Transaction Type : RESPONSE +16:19:15 Received From : +16:19:15 ============================================================================ +16:19:15 FNo. Len. Field Value +16:19:15 ============================================================================ +16:19:15 [ 1] [ 4] [0210] +16:19:15 [ 2] [ 16] [6213544000324449] +16:19:15 [ 3] [ 6] [010000] +16:19:15 [ 4] [ 12] [000010000000] +16:19:15 [ 7] [ 10] [0320161700] +16:19:15 [ 11] [ 6] [951464] +16:19:15 [ 12] [ 6] [161700] +16:19:15 [ 13] [ 4] [0320] +16:19:15 [ 15] [ 4] [0320] +16:19:15 [ 18] [ 4] [6011] +16:19:15 [ 19] [ 3] [418] +16:19:15 [ 32] [ 6] [668899] +16:19:15 [ 35] [ 32] [6213544000324449=491212012444118] +16:19:15 [ 37] [ 12] [507900802092] +16:19:15 [ 38] [ 6] [915069] +16:19:15 [ 39] [ 2] [00] +16:19:15 [ 41] [ 8] [03009002] +16:19:15 [ 49] [ 3] [418] +16:19:15 [ 54] [ 40] [0001418C0002233926020002418C000223392602] +16:19:15 ============================================================================ +16:19:15 Calculate Source COMM Id = 4 +16:19:15 ============================================================================ +16:19:15 + + +waiting on router queue for slot.... +16:19:24 ============================================================================ +16:19:24 Slot Id : <268> +16:19:24 Transaction Type : REQUEST +16:19:24 Received From : +16:19:24 ============================================================================ +16:19:24 FNo. Len. Field Value +16:19:24 ============================================================================ +16:19:24 [ 1] [ 4] [0800] +16:19:24 [ 7] [ 10] [0320091831] +16:19:24 [ 11] [ 6] [157210] +16:19:24 [ 70] [ 3] [301] +16:19:24 ============================================================================ +16:19:24 + + +waiting on router queue for slot.... +16:19:24 Sending to : +16:19:24 ============================================================================ +16:19:24 ============================================================================ +16:19:24 Slot Id : <268> +16:19:24 Transaction Type : RESPONSE +16:19:24 Received From : +16:19:24 ============================================================================ +16:19:24 FNo. Len. Field Value +16:19:24 ============================================================================ +16:19:24 [ 1] [ 4] [0810] +16:19:24 [ 7] [ 10] [0320091831] +16:19:24 [ 11] [ 6] [157210] +16:19:24 [ 39] [ 2] [00] +16:19:24 [ 70] [ 3] [301] +16:19:24 ============================================================================ +16:19:24 Calculate Source COMM Id = 2 +16:19:24 ============================================================================ +16:19:24 + + +waiting on router queue for slot.... +16:19:26 ============================================================================ +16:19:26 Slot Id : <352> +16:19:26 Transaction Type : REQUEST +16:19:26 Received From : +16:19:26 ============================================================================ +16:19:26 FNo. Len. Field Value +16:19:26 ============================================================================ +16:19:26 [ 1] [ 4] [0200] +16:19:26 [ 2] [ 16] [6688990101830501] +16:19:26 [ 3] [ 6] [301000] +16:19:26 [ 4] [ 12] [000000000000] +16:19:26 [ 7] [ 10] [0320161922] +16:19:26 [ 11] [ 6] [796741] +16:19:26 [ 12] [ 6] [161922] +16:19:26 [ 13] [ 4] [0320] +16:19:26 [ 15] [ 4] [0320] +16:19:26 [ 18] [ 4] [6011] +16:19:26 [ 22] [ 3] [900] +16:19:26 [ 25] [ 2] [02] +16:19:26 [ 28] [ 9] [D00000000] +16:19:26 [ 32] [ 6] [621354] +16:19:26 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:19:26 [ 37] [ 12] [507904635837] +16:19:26 [ 41] [ 8] [17000800] +16:19:26 [ 42] [ 15] [NATIVE ] +16:19:26 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:19:26 [ 49] [ 3] [418] +16:19:26 [ 52] [ 16] [54904784A167D8BD] +16:19:26 ============================================================================ +16:19:26 + + +waiting on router queue for slot.... +16:19:26 Sending to : +16:19:26 ============================================================================ +16:19:26 Sending to : +16:19:26 ============================================================================ +16:19:27 ============================================================================ +16:19:27 Slot Id : <352> +16:19:27 Transaction Type : REQUEST +16:19:27 Received From : +16:19:27 ============================================================================ +16:19:27 FNo. Len. Field Value +16:19:27 ============================================================================ +16:19:27 [ 1] [ 4] [0200] +16:19:27 [ 2] [ 16] [6688990101830501] +16:19:27 [ 3] [ 6] [301000] +16:19:27 [ 4] [ 12] [000000000000] +16:19:27 [ 7] [ 10] [0320161922] +16:19:27 [ 11] [ 6] [796741] +16:19:27 [ 12] [ 6] [161922] +16:19:27 [ 13] [ 4] [0320] +16:19:27 [ 15] [ 4] [0320] +16:19:27 [ 18] [ 4] [6011] +16:19:27 [ 22] [ 3] [900] +16:19:27 [ 25] [ 2] [02] +16:19:27 [ 28] [ 9] [D00000000] +16:19:27 [ 32] [ 6] [621354] +16:19:27 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:19:27 [ 37] [ 12] [507904635837] +16:19:27 [ 41] [ 8] [17000800] +16:19:27 [ 42] [ 15] [NATIVE ] +16:19:27 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:19:27 [ 49] [ 3] [418] +16:19:27 [ 52] [ 16] [54904784A167D8BD] +16:19:27 ============================================================================ +16:19:27 + + +waiting on router queue for slot.... +16:19:27 Sending to : +16:19:27 ============================================================================ +16:19:27 ============================================================================ +16:19:27 Slot Id : <352> +16:19:27 Transaction Type : REQUEST +16:19:27 Received From : +16:19:27 ============================================================================ +16:19:27 FNo. Len. Field Value +16:19:27 ============================================================================ +16:19:27 [ 1] [ 4] [0200] +16:19:27 [ 2] [ 16] [6688990101830501] +16:19:27 [ 3] [ 6] [301000] +16:19:27 [ 4] [ 12] [000000000000] +16:19:27 [ 7] [ 10] [0320161922] +16:19:27 [ 11] [ 6] [796741] +16:19:27 [ 12] [ 6] [161922] +16:19:27 [ 13] [ 4] [0320] +16:19:27 [ 15] [ 4] [0320] +16:19:27 [ 18] [ 4] [6011] +16:19:27 [ 22] [ 3] [900] +16:19:27 [ 25] [ 2] [02] +16:19:27 [ 28] [ 9] [D00000000] +16:19:27 [ 32] [ 6] [621354] +16:19:27 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:19:27 [ 37] [ 12] [507904635837] +16:19:27 [ 41] [ 8] [17000800] +16:19:27 [ 42] [ 15] [NATIVE ] +16:19:27 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:19:27 [ 49] [ 3] [418] +16:19:27 [ 52] [ 16] [7327C78119A62D0C] +16:19:27 ============================================================================ +16:19:27 + + +waiting on router queue for slot.... +16:19:27 Sending to : <4> +16:19:27 ============================================================================ +16:19:28 ============================================================================ +16:19:28 Slot Id : <352> +16:19:28 Transaction Type : RESPONSE +16:19:28 Received From : +16:19:28 ============================================================================ +16:19:28 FNo. Len. Field Value +16:19:28 ============================================================================ +16:19:28 [ 1] [ 4] [0210] +16:19:28 [ 2] [ 16] [6688990101830501] +16:19:28 [ 3] [ 6] [301000] +16:19:28 [ 4] [ 12] [000000000000] +16:19:28 [ 11] [ 6] [796741] +16:19:28 [ 12] [ 6] [161922] +16:19:28 [ 15] [ 4] [0320] +16:19:28 [ 18] [ 4] [6011] +16:19:28 [ 32] [ 6] [621354] +16:19:28 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:19:28 [ 37] [ 12] [507904635837] +16:19:28 [ 38] [ 6] [177136] +16:19:28 [ 39] [ 2] [00] +16:19:28 [ 41] [ 8] [17000800] +16:19:28 [ 49] [ 3] [418] +16:19:28 [ 54] [ 20] [1002418C000004427482] +16:19:28 ============================================================================ +16:19:28 Sending to : +16:19:28 ============================================================================ +16:19:28 + + +waiting on router queue for slot.... +16:19:29 ============================================================================ +16:19:29 Slot Id : <352> +16:19:29 Transaction Type : RESPONSE +16:19:29 Received From : +16:19:29 ============================================================================ +16:19:29 FNo. Len. Field Value +16:19:29 ============================================================================ +16:19:29 [ 1] [ 4] [0210] +16:19:29 [ 2] [ 16] [6688990101830501] +16:19:29 [ 3] [ 6] [301000] +16:19:29 [ 4] [ 12] [000000000000] +16:19:29 [ 11] [ 6] [796741] +16:19:29 [ 12] [ 6] [161922] +16:19:29 [ 15] [ 4] [0320] +16:19:29 [ 18] [ 4] [6011] +16:19:29 [ 32] [ 6] [621354] +16:19:29 [ 35] [ 37] [6688990101830501=42051231050185600000] +16:19:29 [ 37] [ 12] [507904635837] +16:19:29 [ 38] [ 6] [177136] +16:19:29 [ 39] [ 2] [00] +16:19:29 [ 41] [ 8] [17000800] +16:19:29 [ 49] [ 3] [418] +16:19:29 [ 54] [ 20] [1002418C000004427482] +16:19:29 ============================================================================ +16:19:29 Calculate Source COMM Id = 0 +16:19:29 ============================================================================ +16:19:29 + + +waiting on router queue for slot.... +16:19:31 ============================================================================ +16:19:31 Slot Id : <309> +16:19:31 Transaction Type : REQUEST +16:19:31 Received From : +16:19:31 ============================================================================ +16:19:31 FNo. Len. Field Value +16:19:31 ============================================================================ +16:19:31 [ 1] [ 4] [0200] +16:19:31 [ 2] [ 16] [1808930300013067] +16:19:31 [ 3] [ 6] [011000] +16:19:31 [ 4] [ 12] [000050000000] +16:19:31 [ 7] [ 10] [0320161926] +16:19:31 [ 11] [ 6] [796764] +16:19:31 [ 12] [ 6] [161926] +16:19:31 [ 13] [ 4] [0320] +16:19:31 [ 15] [ 4] [0320] +16:19:31 [ 18] [ 4] [6011] +16:19:31 [ 22] [ 3] [900] +16:19:31 [ 25] [ 2] [02] +16:19:31 [ 28] [ 9] [D00002000] +16:19:31 [ 32] [ 6] [621354] +16:19:31 [ 35] [ 27] [1808930300013067=1803500222] +16:19:31 [ 37] [ 12] [507905170285] +16:19:31 [ 41] [ 8] [01012900] +16:19:31 [ 42] [ 15] [NATIVE ] +16:19:31 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +16:19:31 [ 49] [ 3] [418] +16:19:31 [ 52] [ 16] [A7B9CEF36FEEE95E] +16:19:31 ============================================================================ +16:19:31 + + +waiting on router queue for slot.... +16:19:31 Sending to : +16:19:31 ============================================================================ +16:19:31 Sending to : +16:19:31 ============================================================================ +16:19:31 ============================================================================ +16:19:31 Slot Id : <309> +16:19:31 Transaction Type : REQUEST +16:19:31 Received From : +16:19:31 ============================================================================ +16:19:31 FNo. Len. Field Value +16:19:31 ============================================================================ +16:19:31 [ 1] [ 4] [0200] +16:19:31 [ 2] [ 16] [1808930300013067] +16:19:31 [ 3] [ 6] [011000] +16:19:31 [ 4] [ 12] [000050000000] +16:19:31 [ 7] [ 10] [0320161926] +16:19:31 [ 11] [ 6] [796764] +16:19:31 [ 12] [ 6] [161926] +16:19:31 [ 13] [ 4] [0320] +16:19:31 [ 15] [ 4] [0320] +16:19:31 [ 18] [ 4] [6011] +16:19:31 [ 22] [ 3] [900] +16:19:31 [ 25] [ 2] [02] +16:19:31 [ 28] [ 9] [D00002000] +16:19:31 [ 32] [ 6] [621354] +16:19:31 [ 35] [ 27] [1808930300013067=1803500222] +16:19:31 [ 37] [ 12] [507905170285] +16:19:31 [ 41] [ 8] [01012900] +16:19:31 [ 42] [ 15] [NATIVE ] +16:19:31 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +16:19:31 [ 49] [ 3] [418] +16:19:31 [ 52] [ 16] [A7B9CEF36FEEE95E] +16:19:31 ============================================================================ +16:19:31 + + +waiting on router queue for slot.... +16:19:31 Sending to : +16:19:31 ============================================================================ +16:19:31 ============================================================================ +16:19:31 Slot Id : <309> +16:19:31 Transaction Type : REQUEST +16:19:31 Received From : +16:19:31 ============================================================================ +16:19:31 FNo. Len. Field Value +16:19:31 ============================================================================ +16:19:31 [ 1] [ 4] [0200] +16:19:31 [ 2] [ 16] [1808930300013067] +16:19:31 [ 3] [ 6] [011000] +16:19:31 [ 4] [ 12] [000050000000] +16:19:31 [ 7] [ 10] [0320161926] +16:19:31 [ 11] [ 6] [796764] +16:19:31 [ 12] [ 6] [161926] +16:19:31 [ 13] [ 4] [0320] +16:19:31 [ 15] [ 4] [0320] +16:19:31 [ 18] [ 4] [6011] +16:19:31 [ 22] [ 3] [900] +16:19:31 [ 25] [ 2] [02] +16:19:31 [ 28] [ 9] [D00002000] +16:19:31 [ 32] [ 6] [621354] +16:19:31 [ 35] [ 27] [1808930300013067=1803500222] +16:19:31 [ 37] [ 12] [507905170285] +16:19:31 [ 41] [ 8] [01012900] +16:19:31 [ 42] [ 15] [NATIVE ] +16:19:31 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +16:19:31 [ 49] [ 3] [418] +16:19:31 [ 52] [ 16] [C40A94B2D0685FEB] +16:19:31 ============================================================================ +16:19:31 + + +waiting on router queue for slot.... +16:19:31 Sending to : <2> +16:19:31 ============================================================================ +16:19:39 ============================================================================ +16:19:39 Slot Id : <309> +16:19:39 Transaction Type : RESPONSE +16:19:39 Received From : +16:19:39 ============================================================================ +16:19:39 FNo. Len. Field Value +16:19:39 ============================================================================ +16:19:39 [ 1] [ 4] [0210] +16:19:39 [ 2] [ 16] [1808930300013067] +16:19:39 [ 3] [ 6] [011000] +16:19:39 [ 4] [ 12] [000050000000] +16:19:39 [ 6] [ 12] [000050000000] +16:19:39 [ 7] [ 10] [0320161926] +16:19:39 [ 11] [ 6] [796764] +16:19:39 [ 12] [ 6] [161926] +16:19:39 [ 13] [ 4] [0320] +16:19:39 [ 18] [ 4] [6011] +16:19:39 [ 19] [ 3] [418] +16:19:39 [ 22] [ 3] [021] +16:19:39 [ 32] [ 6] [621354] +16:19:39 [ 35] [ 27] [1808930300013067=1803500222] +16:19:39 [ 37] [ 12] [507905170285] +16:19:39 [ 38] [ 6] [796764] +16:19:39 [ 39] [ 2] [00] +16:19:39 [ 41] [ 8] [01012900] +16:19:39 [ 49] [ 3] [418] +16:19:39 [ 52] [ 16] [C40A94B2D0685FEB] +16:19:39 [ 54] [ 20] [1001764C000004376694] +16:19:39 ============================================================================ +16:19:39 Sending to : +16:19:39 ============================================================================ +16:19:39 + + +waiting on router queue for slot.... +16:19:41 ============================================================================ +16:19:41 Slot Id : <309> +16:19:41 Transaction Type : RESPONSE +16:19:41 Received From : +16:19:41 ============================================================================ +16:19:41 FNo. Len. Field Value +16:19:41 ============================================================================ +16:19:41 [ 1] [ 4] [0210] +16:19:41 [ 2] [ 16] [1808930300013067] +16:19:41 [ 3] [ 6] [011000] +16:19:41 [ 4] [ 12] [000050000000] +16:19:41 [ 6] [ 12] [000050000000] +16:19:41 [ 7] [ 10] [0320161926] +16:19:41 [ 11] [ 6] [796764] +16:19:41 [ 12] [ 6] [161926] +16:19:41 [ 13] [ 4] [0320] +16:19:41 [ 18] [ 4] [6011] +16:19:41 [ 19] [ 3] [418] +16:19:41 [ 22] [ 3] [021] +16:19:41 [ 32] [ 6] [621354] +16:19:41 [ 35] [ 27] [1808930300013067=1803500222] +16:19:41 [ 37] [ 12] [507905170285] +16:19:41 [ 38] [ 6] [796764] +16:19:41 [ 39] [ 2] [00] +16:19:41 [ 41] [ 8] [01012900] +16:19:41 [ 49] [ 3] [418] +16:19:41 [ 52] [ 16] [C40A94B2D0685FEB] +16:19:41 [ 54] [ 20] [1001764C000004376694] +16:19:41 ============================================================================ +16:19:41 Calculate Source COMM Id = 0 +16:19:41 ============================================================================ +16:19:41 + + +waiting on router queue for slot.... +16:19:43 ============================================================================ +16:19:43 Slot Id : <348> +16:19:43 Transaction Type : REQUEST +16:19:43 Received From : +16:19:43 ============================================================================ +16:19:43 FNo. Len. Field Value +16:19:43 ============================================================================ +16:19:43 [ 1] [ 4] [0800] +16:19:43 [ 7] [ 10] [0320091850] +16:19:43 [ 11] [ 6] [157211] +16:19:43 [ 70] [ 3] [301] +16:19:43 ============================================================================ +16:19:43 + + +waiting on router queue for slot.... +16:19:43 Sending to : +16:19:43 ============================================================================ +16:19:43 ============================================================================ +16:19:43 Slot Id : <348> +16:19:43 Transaction Type : RESPONSE +16:19:43 Received From : +16:19:43 ============================================================================ +16:19:43 FNo. Len. Field Value +16:19:43 ============================================================================ +16:19:43 [ 1] [ 4] [0810] +16:19:43 [ 7] [ 10] [0320091850] +16:19:43 [ 11] [ 6] [157211] +16:19:43 [ 39] [ 2] [00] +16:19:43 [ 70] [ 3] [301] +16:19:43 ============================================================================ +16:19:43 Calculate Source COMM Id = 2 +16:19:43 ============================================================================ +16:19:43 + + +waiting on router queue for slot.... +16:19:44 ============================================================================ +16:19:44 Slot Id : <329> +16:19:44 Transaction Type : REQUEST +16:19:44 Received From : +16:19:44 ============================================================================ +16:19:44 FNo. Len. Field Value +16:19:44 ============================================================================ +16:19:44 [ 1] [ 4] [0200] +16:19:44 [ 2] [ 16] [6688990040074930] +16:19:44 [ 3] [ 6] [011000] +16:19:44 [ 4] [ 12] [000050000000] +16:19:44 [ 7] [ 10] [0320161939] +16:19:44 [ 11] [ 6] [796816] +16:19:44 [ 12] [ 6] [161939] +16:19:44 [ 13] [ 4] [0320] +16:19:44 [ 15] [ 4] [0320] +16:19:44 [ 18] [ 4] [6011] +16:19:44 [ 22] [ 3] [900] +16:19:44 [ 25] [ 2] [02] +16:19:44 [ 28] [ 9] [D00002000] +16:19:44 [ 32] [ 6] [621354] +16:19:44 [ 35] [ 37] [6688990040074930=98011261085047400000] +16:19:44 [ 37] [ 12] [507904910959] +16:19:44 [ 41] [ 8] [02002500] +16:19:44 [ 42] [ 15] [NATIVE ] +16:19:44 [ 43] [ 40] [Songkhone Unit Hinboun LAO] +16:19:44 [ 49] [ 3] [418] +16:19:44 [ 52] [ 16] [A28C788590D7C0BB] +16:19:44 ============================================================================ +16:19:44 + + +waiting on router queue for slot.... +16:19:44 Sending to : +16:19:44 ============================================================================ +16:19:44 Sending to : +16:19:44 ============================================================================ +16:19:44 ============================================================================ +16:19:44 Slot Id : <329> +16:19:44 Transaction Type : REQUEST +16:19:44 Received From : +16:19:44 ============================================================================ +16:19:44 FNo. Len. Field Value +16:19:44 ============================================================================ +16:19:44 [ 1] [ 4] [0200] +16:19:44 [ 2] [ 16] [6688990040074930] +16:19:44 [ 3] [ 6] [011000] +16:19:44 [ 4] [ 12] [000050000000] +16:19:44 [ 7] [ 10] [0320161939] +16:19:44 [ 11] [ 6] [796816] +16:19:44 [ 12] [ 6] [161939] +16:19:44 [ 13] [ 4] [0320] +16:19:44 [ 15] [ 4] [0320] +16:19:44 [ 18] [ 4] [6011] +16:19:44 [ 22] [ 3] [900] +16:19:44 [ 25] [ 2] [02] +16:19:44 [ 28] [ 9] [D00002000] +16:19:44 [ 32] [ 6] [621354] +16:19:44 [ 35] [ 37] [6688990040074930=98011261085047400000] +16:19:44 [ 37] [ 12] [507904910959] +16:19:44 [ 41] [ 8] [02002500] +16:19:44 [ 42] [ 15] [NATIVE ] +16:19:44 [ 43] [ 40] [Songkhone Unit Hinboun LAO] +16:19:44 [ 49] [ 3] [418] +16:19:44 [ 52] [ 16] [A28C788590D7C0BB] +16:19:44 ============================================================================ +16:19:44 + + +waiting on router queue for slot.... +16:19:44 Sending to : +16:19:44 ============================================================================ +16:19:44 ============================================================================ +16:19:44 Slot Id : <329> +16:19:44 Transaction Type : REQUEST +16:19:44 Received From : +16:19:44 ============================================================================ +16:19:44 FNo. Len. Field Value +16:19:44 ============================================================================ +16:19:44 [ 1] [ 4] [0200] +16:19:44 [ 2] [ 16] [6688990040074930] +16:19:44 [ 3] [ 6] [011000] +16:19:44 [ 4] [ 12] [000050000000] +16:19:44 [ 7] [ 10] [0320161939] +16:19:44 [ 11] [ 6] [796816] +16:19:44 [ 12] [ 6] [161939] +16:19:44 [ 13] [ 4] [0320] +16:19:44 [ 15] [ 4] [0320] +16:19:44 [ 18] [ 4] [6011] +16:19:44 [ 22] [ 3] [900] +16:19:44 [ 25] [ 2] [02] +16:19:44 [ 28] [ 9] [D00002000] +16:19:44 [ 32] [ 6] [621354] +16:19:44 [ 35] [ 37] [6688990040074930=98011261085047400000] +16:19:44 [ 37] [ 12] [507904910959] +16:19:44 [ 41] [ 8] [02002500] +16:19:44 [ 42] [ 15] [NATIVE ] +16:19:44 [ 43] [ 40] [Songkhone Unit Hinboun LAO] +16:19:44 [ 49] [ 3] [418] +16:19:44 [ 52] [ 16] [5C8C870FED4D78FB] +16:19:44 ============================================================================ +16:19:44 + + +waiting on router queue for slot.... +16:19:44 Sending to : <4> +16:19:44 ============================================================================ +16:19:45 ============================================================================ +16:19:45 Slot Id : <329> +16:19:45 Transaction Type : RESPONSE +16:19:45 Received From : +16:19:45 ============================================================================ +16:19:45 FNo. Len. Field Value +16:19:45 ============================================================================ +16:19:45 [ 1] [ 4] [0210] +16:19:45 [ 2] [ 16] [6688990040074930] +16:19:45 [ 3] [ 6] [011000] +16:19:45 [ 4] [ 12] [000050000000] +16:19:45 [ 11] [ 6] [796816] +16:19:45 [ 12] [ 6] [161939] +16:19:45 [ 15] [ 4] [0320] +16:19:45 [ 18] [ 4] [6011] +16:19:45 [ 32] [ 6] [621354] +16:19:45 [ 35] [ 37] [6688990040074930=98011261085047400000] +16:19:45 [ 37] [ 12] [507904910959] +16:19:45 [ 38] [ 6] [799417] +16:19:45 [ 39] [ 2] [00] +16:19:45 [ 41] [ 8] [02002500] +16:19:45 [ 49] [ 3] [418] +16:19:45 [ 54] [ 20] [1002418C000002251295] +16:19:45 ============================================================================ +16:19:45 Sending to : +16:19:45 ============================================================================ +16:19:45 + + +waiting on router queue for slot.... +16:19:47 ============================================================================ +16:19:47 Slot Id : <328> +16:19:47 Transaction Type : REQUEST +16:19:47 Received From : +16:19:47 ============================================================================ +16:19:47 FNo. Len. Field Value +16:19:47 ============================================================================ +16:19:47 [ 1] [ 4] [0200] +16:19:47 [ 2] [ 16] [6213544002242722] +16:19:47 [ 3] [ 6] [010000] +16:19:47 [ 4] [ 12] [000010000000] +16:19:47 [ 7] [ 10] [0320161737] +16:19:47 [ 11] [ 6] [951483] +16:19:47 [ 12] [ 6] [161737] +16:19:47 [ 13] [ 4] [0320] +16:19:47 [ 15] [ 4] [0320] +16:19:47 [ 18] [ 4] [6011] +16:19:47 [ 19] [ 3] [418] +16:19:47 [ 22] [ 3] [021] +16:19:47 [ 25] [ 2] [01] +16:19:47 [ 28] [ 9] [D00002000] +16:19:47 [ 32] [ 6] [668899] +16:19:47 [ 35] [ 32] [6213544002242722=491212014272817] +16:19:47 [ 37] [ 12] [507900577942] +16:19:47 [ 41] [ 8] [03014005] +16:19:47 [ 42] [ 15] [APT ] +16:19:47 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:19:47 [ 49] [ 3] [418] +16:19:47 [ 52] [ 16] [A88C88BA1E9E5812] +16:19:47 ============================================================================ +16:19:47 + + +waiting on router queue for slot.... +16:19:47 Sending to : +16:19:47 ============================================================================ +16:19:47 Sending to : +16:19:47 ============================================================================ +16:19:47 ============================================================================ +16:19:47 Slot Id : <329> +16:19:47 Transaction Type : RESPONSE +16:19:47 Received From : +16:19:47 ============================================================================ +16:19:47 FNo. Len. Field Value +16:19:47 ============================================================================ +16:19:47 [ 1] [ 4] [0210] +16:19:47 [ 2] [ 16] [6688990040074930] +16:19:47 [ 3] [ 6] [011000] +16:19:47 [ 4] [ 12] [000050000000] +16:19:47 [ 11] [ 6] [796816] +16:19:47 [ 12] [ 6] [161939] +16:19:47 [ 15] [ 4] [0320] +16:19:47 [ 18] [ 4] [6011] +16:19:47 [ 32] [ 6] [621354] +16:19:47 [ 35] [ 37] [6688990040074930=98011261085047400000] +16:19:47 [ 37] [ 12] [507904910959] +16:19:47 [ 38] [ 6] [799417] +16:19:47 [ 39] [ 2] [00] +16:19:47 [ 41] [ 8] [02002500] +16:19:47 [ 49] [ 3] [418] +16:19:47 [ 54] [ 20] [1002418C000002251295] +16:19:47 ============================================================================ +16:19:47 Calculate Source COMM Id = 0 +16:19:47 ============================================================================ +16:19:47 + + +waiting on router queue for slot.... +16:19:47 ============================================================================ +16:19:47 Slot Id : <328> +16:19:47 Transaction Type : REQUEST +16:19:47 Received From : +16:19:47 ============================================================================ +16:19:47 FNo. Len. Field Value +16:19:47 ============================================================================ +16:19:47 [ 1] [ 4] [0200] +16:19:47 [ 2] [ 16] [6213544002242722] +16:19:47 [ 3] [ 6] [010000] +16:19:47 [ 4] [ 12] [000010000000] +16:19:47 [ 7] [ 10] [0320161737] +16:19:47 [ 11] [ 6] [951483] +16:19:47 [ 12] [ 6] [161737] +16:19:47 [ 13] [ 4] [0320] +16:19:47 [ 15] [ 4] [0320] +16:19:47 [ 18] [ 4] [6011] +16:19:47 [ 19] [ 3] [418] +16:19:47 [ 22] [ 3] [021] +16:19:47 [ 25] [ 2] [01] +16:19:47 [ 28] [ 9] [D00002000] +16:19:47 [ 32] [ 6] [668899] +16:19:47 [ 35] [ 32] [6213544002242722=491212014272817] +16:19:47 [ 37] [ 12] [507900577942] +16:19:47 [ 41] [ 8] [03014005] +16:19:47 [ 42] [ 15] [APT ] +16:19:47 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:19:47 [ 49] [ 3] [418] +16:19:47 [ 52] [ 16] [A88C88BA1E9E5812] +16:19:47 ============================================================================ +16:19:47 + + +waiting on router queue for slot.... +16:19:47 Sending to : +16:19:47 ============================================================================ +16:19:47 ============================================================================ +16:19:47 Slot Id : <328> +16:19:47 Transaction Type : REQUEST +16:19:47 Received From : +16:19:47 ============================================================================ +16:19:47 FNo. Len. Field Value +16:19:47 ============================================================================ +16:19:47 [ 1] [ 4] [0200] +16:19:47 [ 2] [ 16] [6213544002242722] +16:19:47 [ 3] [ 6] [010000] +16:19:47 [ 4] [ 12] [000010000000] +16:19:47 [ 7] [ 10] [0320161737] +16:19:47 [ 11] [ 6] [951483] +16:19:47 [ 12] [ 6] [161737] +16:19:47 [ 13] [ 4] [0320] +16:19:47 [ 15] [ 4] [0320] +16:19:47 [ 18] [ 4] [6011] +16:19:47 [ 19] [ 3] [418] +16:19:47 [ 22] [ 3] [021] +16:19:47 [ 25] [ 2] [01] +16:19:47 [ 28] [ 9] [D00002000] +16:19:47 [ 32] [ 6] [668899] +16:19:47 [ 35] [ 32] [6213544002242722=491212014272817] +16:19:47 [ 37] [ 12] [507900577942] +16:19:47 [ 41] [ 8] [03014005] +16:19:47 [ 42] [ 15] [APT ] +16:19:47 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:19:47 [ 49] [ 3] [418] +16:19:47 [ 52] [ 16] [0437E119ABF7580A] +16:19:47 ============================================================================ +16:19:47 + + +waiting on router queue for slot.... +16:19:47 Sending to : <0> +16:19:47 ============================================================================ +16:19:47 ============================================================================ +16:19:47 Slot Id : <328> +16:19:47 Transaction Type : RESPONSE +16:19:47 Received From : +16:19:47 ============================================================================ +16:19:47 FNo. Len. Field Value +16:19:47 ============================================================================ +16:19:47 [ 1] [ 4] [0210] +16:19:47 [ 2] [ 16] [6213544002242722] +16:19:47 [ 3] [ 6] [010000] +16:19:47 [ 4] [ 12] [000010000000] +16:19:47 [ 7] [ 10] [0320161737] +16:19:47 [ 11] [ 6] [951483] +16:19:47 [ 12] [ 6] [161737] +16:19:47 [ 13] [ 4] [0320] +16:19:47 [ 15] [ 4] [0320] +16:19:47 [ 18] [ 4] [6011] +16:19:47 [ 19] [ 3] [418] +16:19:47 [ 22] [ 3] [021] +16:19:47 [ 32] [ 6] [668899] +16:19:47 [ 35] [ 32] [6213544002242722=491212014272817] +16:19:47 [ 37] [ 12] [507900577942] +16:19:47 [ 38] [ 6] [161942] +16:19:47 [ 39] [ 2] [55] +16:19:47 [ 41] [ 8] [03014005] +16:19:47 [ 49] [ 3] [418] +16:19:47 ============================================================================ +16:19:47 Sending to : +16:19:47 ============================================================================ +16:19:47 + + +waiting on router queue for slot.... +16:19:48 ============================================================================ +16:19:48 Slot Id : <328> +16:19:48 Transaction Type : RESPONSE +16:19:48 Received From : +16:19:48 ============================================================================ +16:19:48 FNo. Len. Field Value +16:19:48 ============================================================================ +16:19:48 [ 1] [ 4] [0210] +16:19:48 [ 2] [ 16] [6213544002242722] +16:19:48 [ 3] [ 6] [010000] +16:19:48 [ 4] [ 12] [000010000000] +16:19:48 [ 7] [ 10] [0320161737] +16:19:48 [ 11] [ 6] [951483] +16:19:48 [ 12] [ 6] [161737] +16:19:48 [ 13] [ 4] [0320] +16:19:48 [ 15] [ 4] [0320] +16:19:48 [ 18] [ 4] [6011] +16:19:48 [ 19] [ 3] [418] +16:19:48 [ 22] [ 3] [021] +16:19:48 [ 32] [ 6] [668899] +16:19:48 [ 35] [ 32] [6213544002242722=491212014272817] +16:19:48 [ 37] [ 12] [507900577942] +16:19:48 [ 38] [ 6] [161942] +16:19:48 [ 39] [ 2] [55] +16:19:48 [ 41] [ 8] [03014005] +16:19:48 [ 49] [ 3] [418] +16:19:48 ============================================================================ +16:19:48 Calculate Source COMM Id = 4 +16:19:48 ============================================================================ +16:19:48 + + +waiting on router queue for slot.... +16:19:53 ============================================================================ +16:19:53 Slot Id : <337> +16:19:53 Transaction Type : REQUEST +16:19:53 Received From : +16:19:53 ============================================================================ +16:19:53 FNo. Len. Field Value +16:19:53 ============================================================================ +16:19:53 [ 1] [ 4] [0200] +16:19:53 [ 2] [ 16] [6688990103264808] +16:19:53 [ 3] [ 6] [300000] +16:19:53 [ 4] [ 12] [000000000000] +16:19:53 [ 7] [ 10] [0320161949] +16:19:53 [ 11] [ 6] [796853] +16:19:53 [ 12] [ 6] [161949] +16:19:53 [ 13] [ 4] [0320] +16:19:53 [ 15] [ 4] [0320] +16:19:53 [ 18] [ 4] [6011] +16:19:53 [ 22] [ 3] [900] +16:19:53 [ 25] [ 2] [02] +16:19:53 [ 28] [ 9] [D00000000] +16:19:53 [ 32] [ 6] [621354] +16:19:53 [ 35] [ 37] [6688990103264808=42121231480849400000] +16:19:53 [ 37] [ 12] [507903499582] +16:19:53 [ 41] [ 8] [06002200] +16:19:53 [ 42] [ 15] [NATIVE ] +16:19:53 [ 43] [ 40] [Beng Market Beng LAO] +16:19:53 [ 49] [ 3] [418] +16:19:53 [ 52] [ 16] [8E81C06E4C1F9D21] +16:19:53 ============================================================================ +16:19:53 + + +waiting on router queue for slot.... +16:19:53 Sending to : +16:19:53 ============================================================================ +16:19:53 Sending to : +16:19:53 ============================================================================ +16:19:54 ============================================================================ +16:19:54 Slot Id : <337> +16:19:54 Transaction Type : REQUEST +16:19:54 Received From : +16:19:54 ============================================================================ +16:19:54 FNo. Len. Field Value +16:19:54 ============================================================================ +16:19:54 [ 1] [ 4] [0200] +16:19:54 [ 2] [ 16] [6688990103264808] +16:19:54 [ 3] [ 6] [300000] +16:19:54 [ 4] [ 12] [000000000000] +16:19:54 [ 7] [ 10] [0320161949] +16:19:54 [ 11] [ 6] [796853] +16:19:54 [ 12] [ 6] [161949] +16:19:54 [ 13] [ 4] [0320] +16:19:54 [ 15] [ 4] [0320] +16:19:54 [ 18] [ 4] [6011] +16:19:54 [ 22] [ 3] [900] +16:19:54 [ 25] [ 2] [02] +16:19:54 [ 28] [ 9] [D00000000] +16:19:54 [ 32] [ 6] [621354] +16:19:54 [ 35] [ 37] [6688990103264808=42121231480849400000] +16:19:54 [ 37] [ 12] [507903499582] +16:19:54 [ 41] [ 8] [06002200] +16:19:54 [ 42] [ 15] [NATIVE ] +16:19:54 [ 43] [ 40] [Beng Market Beng LAO] +16:19:54 [ 49] [ 3] [418] +16:19:54 [ 52] [ 16] [8E81C06E4C1F9D21] +16:19:54 ============================================================================ +16:19:54 + + +waiting on router queue for slot.... +16:19:54 Sending to : +16:19:54 ============================================================================ +16:19:54 ============================================================================ +16:19:54 Slot Id : <337> +16:19:54 Transaction Type : REQUEST +16:19:54 Received From : +16:19:54 ============================================================================ +16:19:54 FNo. Len. Field Value +16:19:54 ============================================================================ +16:19:54 [ 1] [ 4] [0200] +16:19:54 [ 2] [ 16] [6688990103264808] +16:19:54 [ 3] [ 6] [300000] +16:19:54 [ 4] [ 12] [000000000000] +16:19:54 [ 7] [ 10] [0320161949] +16:19:54 [ 11] [ 6] [796853] +16:19:54 [ 12] [ 6] [161949] +16:19:54 [ 13] [ 4] [0320] +16:19:54 [ 15] [ 4] [0320] +16:19:54 [ 18] [ 4] [6011] +16:19:54 [ 22] [ 3] [900] +16:19:54 [ 25] [ 2] [02] +16:19:54 [ 28] [ 9] [D00000000] +16:19:54 [ 32] [ 6] [621354] +16:19:54 [ 35] [ 37] [6688990103264808=42121231480849400000] +16:19:54 [ 37] [ 12] [507903499582] +16:19:54 [ 41] [ 8] [06002200] +16:19:54 [ 42] [ 15] [NATIVE ] +16:19:54 [ 43] [ 40] [Beng Market Beng LAO] +16:19:54 [ 49] [ 3] [418] +16:19:54 [ 52] [ 16] [B73942946A32DAB1] +16:19:54 ============================================================================ +16:19:54 + + +waiting on router queue for slot.... +16:19:54 Sending to : <4> +16:19:54 ============================================================================ +16:19:55 ============================================================================ +16:19:55 Slot Id : <337> +16:19:55 Transaction Type : RESPONSE +16:19:55 Received From : +16:19:55 ============================================================================ +16:19:55 FNo. Len. Field Value +16:19:55 ============================================================================ +16:19:55 [ 1] [ 4] [0210] +16:19:55 [ 2] [ 16] [6688990103264808] +16:19:55 [ 3] [ 6] [300000] +16:19:55 [ 4] [ 12] [000000000000] +16:19:55 [ 11] [ 6] [796853] +16:19:55 [ 12] [ 6] [161949] +16:19:55 [ 15] [ 4] [0320] +16:19:55 [ 18] [ 4] [6011] +16:19:55 [ 32] [ 6] [621354] +16:19:55 [ 35] [ 37] [6688990103264808=42121231480849400000] +16:19:55 [ 37] [ 12] [507903499582] +16:19:55 [ 38] [ 6] [300285] +16:19:55 [ 39] [ 2] [00] +16:19:55 [ 41] [ 8] [06002200] +16:19:55 [ 49] [ 3] [418] +16:19:55 [ 54] [ 20] [0002418C000372026523] +16:19:55 ============================================================================ +16:19:55 Sending to : +16:19:55 ============================================================================ +16:19:55 + + +waiting on router queue for slot.... +16:19:55 ============================================================================ +16:19:55 Slot Id : <347> +16:19:55 Transaction Type : REQUEST +16:19:55 Received From : +16:19:55 ============================================================================ +16:19:55 FNo. Len. Field Value +16:19:55 ============================================================================ +16:19:55 [ 1] [ 4] [0800] +16:19:55 [ 7] [ 10] [0320092742] +16:19:55 [ 11] [ 6] [002058] +16:19:55 [ 37] [ 12] [57916002058] +16:19:55 [ 70] [ 3] [301] +16:19:55 ============================================================================ +16:19:55 + + +waiting on router queue for slot.... +16:19:55 Sending to : +16:19:55 ============================================================================ +16:19:55 ============================================================================ +16:19:55 Slot Id : <347> +16:19:55 Transaction Type : RESPONSE +16:19:55 Received From : +16:19:55 ============================================================================ +16:19:55 FNo. Len. Field Value +16:19:55 ============================================================================ +16:19:55 [ 1] [ 4] [0810] +16:19:55 [ 7] [ 10] [0320092742] +16:19:55 [ 11] [ 6] [002058] +16:19:55 [ 37] [ 12] [579160020580] +16:19:55 [ 39] [ 2] [00] +16:19:55 [ 70] [ 3] [810] +16:19:55 ============================================================================ +16:19:55 Calculate Source COMM Id = 1 +16:19:55 ============================================================================ +16:19:55 + + +waiting on router queue for slot.... +16:19:56 ============================================================================ +16:19:56 Slot Id : <337> +16:19:56 Transaction Type : RESPONSE +16:19:56 Received From : +16:19:56 ============================================================================ +16:19:56 FNo. Len. Field Value +16:19:56 ============================================================================ +16:19:56 [ 1] [ 4] [0210] +16:19:56 [ 2] [ 16] [6688990103264808] +16:19:56 [ 3] [ 6] [300000] +16:19:56 [ 4] [ 12] [000000000000] +16:19:56 [ 11] [ 6] [796853] +16:19:56 [ 12] [ 6] [161949] +16:19:56 [ 15] [ 4] [0320] +16:19:56 [ 18] [ 4] [6011] +16:19:56 [ 32] [ 6] [621354] +16:19:56 [ 35] [ 37] [6688990103264808=42121231480849400000] +16:19:56 [ 37] [ 12] [507903499582] +16:19:56 [ 38] [ 6] [300285] +16:19:56 [ 39] [ 2] [00] +16:19:56 [ 41] [ 8] [06002200] +16:19:56 [ 49] [ 3] [418] +16:19:56 [ 54] [ 20] [0002418C000372026523] +16:19:56 ============================================================================ +16:19:56 Calculate Source COMM Id = 0 +16:19:56 ============================================================================ +16:19:56 + + +waiting on router queue for slot.... +16:19:58 ============================================================================ +16:19:58 Slot Id : <350> +16:19:58 Transaction Type : REQUEST +16:19:58 Received From : +16:19:58 ============================================================================ +16:19:58 FNo. Len. Field Value +16:19:58 ============================================================================ +16:19:58 [ 1] [ 4] [0800] +16:19:58 [ 7] [ 10] [0320091905] +16:19:58 [ 11] [ 6] [157212] +16:19:58 [ 70] [ 3] [301] +16:19:58 ============================================================================ +16:19:58 + + +waiting on router queue for slot.... +16:19:58 Sending to : +16:19:58 ============================================================================ +16:19:58 ============================================================================ +16:19:58 Slot Id : <350> +16:19:58 Transaction Type : RESPONSE +16:19:58 Received From : +16:19:58 ============================================================================ +16:19:58 FNo. Len. Field Value +16:19:58 ============================================================================ +16:19:58 [ 1] [ 4] [0810] +16:19:58 [ 7] [ 10] [0320091905] +16:19:58 [ 11] [ 6] [157212] +16:19:58 [ 39] [ 2] [00] +16:19:58 [ 70] [ 3] [301] +16:19:58 ============================================================================ +16:19:58 Calculate Source COMM Id = 2 +16:19:58 ============================================================================ +16:19:58 + + +waiting on router queue for slot.... +16:20:07 ============================================================================ +16:20:07 Slot Id : <357> +16:20:07 Transaction Type : REQUEST +16:20:07 Received From : +16:20:07 ============================================================================ +16:20:07 FNo. Len. Field Value +16:20:07 ============================================================================ +16:20:07 [ 1] [ 4] [0200] +16:20:07 [ 2] [ 16] [6213545000960868] +16:20:07 [ 3] [ 6] [012000] +16:20:07 [ 4] [ 12] [000020000000] +16:20:07 [ 7] [ 10] [0320091913] +16:20:07 [ 11] [ 6] [270356] +16:20:07 [ 12] [ 6] [161913] +16:20:07 [ 13] [ 4] [0320] +16:20:07 [ 14] [ 4] [4912] +16:20:07 [ 15] [ 4] [0320] +16:20:07 [ 18] [ 4] [6011] +16:20:07 [ 19] [ 3] [418] +16:20:07 [ 22] [ 3] [021] +16:20:07 [ 25] [ 2] [01] +16:20:07 [ 28] [ 9] [D00002000] +16:20:07 [ 32] [ 6] [180893] +16:20:07 [ 35] [ 32] [6213545000960868=491212016086962] +16:20:07 [ 37] [ 12] [507909270356] +16:20:07 [ 41] [ 8] [0301LPBX] +16:20:07 [ 42] [ 15] [999999 ] +16:20:07 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:20:07 [ 49] [ 3] [418] +16:20:07 [ 52] [ 16] [DEDA6F056005B717] +16:20:07 ============================================================================ +16:20:07 + + +waiting on router queue for slot.... +16:20:07 Sending to : +16:20:07 ============================================================================ +16:20:07 Sending to : +16:20:07 ============================================================================ +16:20:07 ============================================================================ +16:20:07 Slot Id : <357> +16:20:07 Transaction Type : REQUEST +16:20:07 Received From : +16:20:07 ============================================================================ +16:20:07 FNo. Len. Field Value +16:20:07 ============================================================================ +16:20:07 [ 1] [ 4] [0200] +16:20:07 [ 2] [ 16] [6213545000960868] +16:20:07 [ 3] [ 6] [012000] +16:20:07 [ 4] [ 12] [000020000000] +16:20:07 [ 7] [ 10] [0320091913] +16:20:07 [ 11] [ 6] [270356] +16:20:07 [ 12] [ 6] [161913] +16:20:07 [ 13] [ 4] [0320] +16:20:07 [ 14] [ 4] [4912] +16:20:07 [ 15] [ 4] [0320] +16:20:07 [ 18] [ 4] [6011] +16:20:07 [ 19] [ 3] [418] +16:20:07 [ 22] [ 3] [021] +16:20:07 [ 25] [ 2] [01] +16:20:07 [ 28] [ 9] [D00002000] +16:20:07 [ 32] [ 6] [180893] +16:20:07 [ 35] [ 32] [6213545000960868=491212016086962] +16:20:07 [ 37] [ 12] [507909270356] +16:20:07 [ 41] [ 8] [0301LPBX] +16:20:07 [ 42] [ 15] [999999 ] +16:20:07 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:20:07 [ 49] [ 3] [418] +16:20:07 [ 52] [ 16] [DEDA6F056005B717] +16:20:07 ============================================================================ +16:20:07 + + +waiting on router queue for slot.... +16:20:07 Sending to : +16:20:07 ============================================================================ +16:20:07 ============================================================================ +16:20:07 Slot Id : <357> +16:20:07 Transaction Type : REQUEST +16:20:07 Received From : +16:20:07 ============================================================================ +16:20:07 FNo. Len. Field Value +16:20:07 ============================================================================ +16:20:07 [ 1] [ 4] [0200] +16:20:07 [ 2] [ 16] [6213545000960868] +16:20:07 [ 3] [ 6] [012000] +16:20:07 [ 4] [ 12] [000020000000] +16:20:07 [ 7] [ 10] [0320091913] +16:20:07 [ 11] [ 6] [270356] +16:20:07 [ 12] [ 6] [161913] +16:20:07 [ 13] [ 4] [0320] +16:20:07 [ 14] [ 4] [4912] +16:20:07 [ 15] [ 4] [0320] +16:20:07 [ 18] [ 4] [6011] +16:20:07 [ 19] [ 3] [418] +16:20:07 [ 22] [ 3] [021] +16:20:07 [ 25] [ 2] [01] +16:20:07 [ 28] [ 9] [D00002000] +16:20:07 [ 32] [ 6] [180893] +16:20:07 [ 35] [ 32] [6213545000960868=491212016086962] +16:20:07 [ 37] [ 12] [507909270356] +16:20:07 [ 41] [ 8] [0301LPBX] +16:20:07 [ 42] [ 15] [999999 ] +16:20:07 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:20:07 [ 49] [ 3] [418] +16:20:07 [ 52] [ 16] [D124784D70684BBC] +16:20:07 ============================================================================ +16:20:07 + + +waiting on router queue for slot.... +16:20:07 Sending to : <0> +16:20:07 ============================================================================ +16:20:08 ============================================================================ +16:20:08 Slot Id : <357> +16:20:08 Transaction Type : RESPONSE +16:20:08 Received From : +16:20:08 ============================================================================ +16:20:08 FNo. Len. Field Value +16:20:08 ============================================================================ +16:20:08 [ 1] [ 4] [0210] +16:20:08 [ 2] [ 16] [6213545000960868] +16:20:08 [ 3] [ 6] [012000] +16:20:08 [ 4] [ 12] [000020000000] +16:20:08 [ 7] [ 10] [0320091913] +16:20:08 [ 11] [ 6] [270356] +16:20:08 [ 12] [ 6] [161913] +16:20:08 [ 13] [ 4] [0320] +16:20:08 [ 15] [ 4] [0320] +16:20:08 [ 18] [ 4] [6011] +16:20:08 [ 19] [ 3] [418] +16:20:08 [ 32] [ 6] [180893] +16:20:08 [ 35] [ 32] [6213545000960868=491212016086962] +16:20:08 [ 37] [ 12] [507909270356] +16:20:08 [ 38] [ 6] [270356] +16:20:08 [ 39] [ 2] [51] +16:20:08 [ 41] [ 8] [0301LPBX] +16:20:08 [ 49] [ 3] [418] +16:20:08 [ 54] [ 40] [2001418C0000106308212002418C000010630821] +16:20:08 ============================================================================ +16:20:08 Sending to : +16:20:08 ============================================================================ +16:20:08 + + +waiting on router queue for slot.... +16:20:09 ============================================================================ +16:20:09 Slot Id : <357> +16:20:09 Transaction Type : RESPONSE +16:20:09 Received From : +16:20:09 ============================================================================ +16:20:09 FNo. Len. Field Value +16:20:09 ============================================================================ +16:20:09 [ 1] [ 4] [0210] +16:20:09 [ 2] [ 16] [6213545000960868] +16:20:09 [ 3] [ 6] [012000] +16:20:09 [ 4] [ 12] [000020000000] +16:20:09 [ 7] [ 10] [0320091913] +16:20:09 [ 11] [ 6] [270356] +16:20:09 [ 12] [ 6] [161913] +16:20:09 [ 13] [ 4] [0320] +16:20:09 [ 15] [ 4] [0320] +16:20:09 [ 18] [ 4] [6011] +16:20:09 [ 19] [ 3] [418] +16:20:09 [ 32] [ 6] [180893] +16:20:09 [ 35] [ 32] [6213545000960868=491212016086962] +16:20:09 [ 37] [ 12] [507909270356] +16:20:09 [ 38] [ 6] [270356] +16:20:09 [ 39] [ 2] [51] +16:20:09 [ 41] [ 8] [0301LPBX] +16:20:09 [ 49] [ 3] [418] +16:20:09 [ 54] [ 40] [2001418C0000106308212002418C000010630821] +16:20:09 ============================================================================ +16:20:09 Calculate Source COMM Id = 2 +16:20:09 ============================================================================ +16:20:09 + + +waiting on router queue for slot.... +16:20:09 ============================================================================ +16:20:09 Slot Id : <346> +16:20:09 Transaction Type : REQUEST +16:20:09 Received From : +16:20:09 ============================================================================ +16:20:09 FNo. Len. Field Value +16:20:09 ============================================================================ +16:20:09 [ 1] [ 4] [0800] +16:20:09 [ 7] [ 10] [0320091916] +16:20:09 [ 11] [ 6] [157213] +16:20:09 [ 70] [ 3] [301] +16:20:09 ============================================================================ +16:20:09 + + +waiting on router queue for slot.... +16:20:09 Sending to : +16:20:09 ============================================================================ +16:20:09 ============================================================================ +16:20:09 Slot Id : <346> +16:20:09 Transaction Type : RESPONSE +16:20:09 Received From : +16:20:09 ============================================================================ +16:20:09 FNo. Len. Field Value +16:20:09 ============================================================================ +16:20:09 [ 1] [ 4] [0810] +16:20:09 [ 7] [ 10] [0320091916] +16:20:09 [ 11] [ 6] [157213] +16:20:09 [ 39] [ 2] [00] +16:20:09 [ 70] [ 3] [301] +16:20:09 ============================================================================ +16:20:09 Calculate Source COMM Id = 2 +16:20:09 ============================================================================ +16:20:09 + + +waiting on router queue for slot.... +16:20:10 ============================================================================ +16:20:10 Slot Id : <319> +16:20:10 Transaction Type : REQUEST +16:20:10 Received From : +16:20:10 ============================================================================ +16:20:10 FNo. Len. Field Value +16:20:10 ============================================================================ +16:20:10 [ 1] [ 4] [0200] +16:20:10 [ 2] [ 16] [6213543000155886] +16:20:10 [ 3] [ 6] [012000] +16:20:10 [ 4] [ 12] [000010000000] +16:20:10 [ 7] [ 10] [0320162757] +16:20:10 [ 11] [ 6] [189031] +16:20:10 [ 12] [ 6] [162757] +16:20:10 [ 13] [ 4] [0320] +16:20:10 [ 14] [ 4] [4912] +16:20:10 [ 15] [ 4] [0320] +16:20:10 [ 18] [ 4] [6011] +16:20:10 [ 22] [ 3] [900] +16:20:10 [ 25] [ 2] [02] +16:20:10 [ 28] [ 9] [D00002000] +16:20:10 [ 32] [ 6] [220699] +16:20:10 [ 35] [ 32] [6213543000155886=491212015588726] +16:20:10 [ 37] [ 12] [507900084369] +16:20:10 [ 41] [ 8] [01000800] +16:20:10 [ 42] [ 15] [APTRA ] +16:20:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:20:10 [ 49] [ 3] [418] +16:20:10 [ 52] [ 16] [0DB20C5FDC971EE6] +16:20:10 ============================================================================ +16:20:10 + + +waiting on router queue for slot.... +16:20:10 Sending to : +16:20:10 ============================================================================ +16:20:10 Sending to : +16:20:10 ============================================================================ +16:20:10 ============================================================================ +16:20:10 Slot Id : <319> +16:20:10 Transaction Type : REQUEST +16:20:10 Received From : +16:20:10 ============================================================================ +16:20:10 FNo. Len. Field Value +16:20:10 ============================================================================ +16:20:10 [ 1] [ 4] [0200] +16:20:10 [ 2] [ 16] [6213543000155886] +16:20:10 [ 3] [ 6] [012000] +16:20:10 [ 4] [ 12] [000010000000] +16:20:10 [ 7] [ 10] [0320162757] +16:20:10 [ 11] [ 6] [189031] +16:20:10 [ 12] [ 6] [162757] +16:20:10 [ 13] [ 4] [0320] +16:20:10 [ 14] [ 4] [4912] +16:20:10 [ 15] [ 4] [0320] +16:20:10 [ 18] [ 4] [6011] +16:20:10 [ 22] [ 3] [900] +16:20:10 [ 25] [ 2] [02] +16:20:10 [ 28] [ 9] [D00002000] +16:20:10 [ 32] [ 6] [220699] +16:20:10 [ 35] [ 32] [6213543000155886=491212015588726] +16:20:10 [ 37] [ 12] [507900084369] +16:20:10 [ 41] [ 8] [01000800] +16:20:10 [ 42] [ 15] [APTRA ] +16:20:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:20:10 [ 49] [ 3] [418] +16:20:10 [ 52] [ 16] [0DB20C5FDC971EE6] +16:20:10 ============================================================================ +16:20:10 + + +waiting on router queue for slot.... +16:20:10 Sending to : +16:20:10 ============================================================================ +16:20:10 ============================================================================ +16:20:10 Slot Id : <319> +16:20:10 Transaction Type : REQUEST +16:20:10 Received From : +16:20:10 ============================================================================ +16:20:10 FNo. Len. Field Value +16:20:10 ============================================================================ +16:20:10 [ 1] [ 4] [0200] +16:20:10 [ 2] [ 16] [6213543000155886] +16:20:10 [ 3] [ 6] [012000] +16:20:10 [ 4] [ 12] [000010000000] +16:20:10 [ 7] [ 10] [0320162757] +16:20:10 [ 11] [ 6] [189031] +16:20:10 [ 12] [ 6] [162757] +16:20:10 [ 13] [ 4] [0320] +16:20:10 [ 14] [ 4] [4912] +16:20:10 [ 15] [ 4] [0320] +16:20:10 [ 18] [ 4] [6011] +16:20:10 [ 22] [ 3] [900] +16:20:10 [ 25] [ 2] [02] +16:20:10 [ 28] [ 9] [D00002000] +16:20:10 [ 32] [ 6] [220699] +16:20:10 [ 35] [ 32] [6213543000155886=491212015588726] +16:20:10 [ 37] [ 12] [507900084369] +16:20:10 [ 41] [ 8] [01000800] +16:20:10 [ 42] [ 15] [APTRA ] +16:20:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:20:10 [ 49] [ 3] [418] +16:20:10 [ 52] [ 16] [3F269667ED9C98DD] +16:20:10 ============================================================================ +16:20:10 + + +waiting on router queue for slot.... +16:20:10 Sending to : <0> +16:20:10 ============================================================================ +16:20:11 ============================================================================ +16:20:11 Slot Id : <319> +16:20:11 Transaction Type : RESPONSE +16:20:11 Received From : +16:20:11 ============================================================================ +16:20:11 FNo. Len. Field Value +16:20:11 ============================================================================ +16:20:11 [ 1] [ 4] [0210] +16:20:11 [ 2] [ 16] [6213543000155886] +16:20:11 [ 3] [ 6] [012000] +16:20:11 [ 4] [ 12] [000010000000] +16:20:11 [ 7] [ 10] [0320162757] +16:20:11 [ 11] [ 6] [189031] +16:20:11 [ 12] [ 6] [162757] +16:20:11 [ 13] [ 4] [0320] +16:20:11 [ 15] [ 4] [0320] +16:20:11 [ 18] [ 4] [6011] +16:20:11 [ 32] [ 6] [220699] +16:20:11 [ 35] [ 32] [6213543000155886=491212015588726] +16:20:11 [ 37] [ 12] [507900084369] +16:20:11 [ 38] [ 6] [946875] +16:20:11 [ 39] [ 2] [00] +16:20:11 [ 41] [ 8] [01000800] +16:20:11 [ 49] [ 3] [418] +16:20:11 [ 54] [ 40] [2001418C0000185900702002418C000018590070] +16:20:11 ============================================================================ +16:20:11 Sending to : +16:20:11 ============================================================================ +16:20:11 + + +waiting on router queue for slot.... +16:20:12 ============================================================================ +16:20:12 Slot Id : <330> +16:20:12 Transaction Type : REQUEST +16:20:12 Received From : +16:20:12 ============================================================================ +16:20:12 FNo. Len. Field Value +16:20:12 ============================================================================ +16:20:12 [ 1] [ 4] [0200] +16:20:12 [ 2] [ 16] [1888880000030916] +16:20:12 [ 3] [ 6] [011000] +16:20:12 [ 4] [ 12] [000002000000] +16:20:12 [ 7] [ 10] [0320162007] +16:20:12 [ 11] [ 6] [796943] +16:20:12 [ 12] [ 6] [162007] +16:20:12 [ 13] [ 4] [0320] +16:20:12 [ 15] [ 4] [0320] +16:20:12 [ 18] [ 4] [6011] +16:20:12 [ 22] [ 3] [900] +16:20:12 [ 25] [ 2] [02] +16:20:12 [ 28] [ 9] [D00002000] +16:20:12 [ 32] [ 6] [621354] +16:20:12 [ 35] [ 32] [1888880000030916=000010100000216] +16:20:12 [ 37] [ 12] [507904755476] +16:20:12 [ 41] [ 8] [07001100] +16:20:12 [ 42] [ 15] [NATIVE ] +16:20:12 [ 43] [ 40] [Industry Market Namtar LAO] +16:20:12 [ 49] [ 3] [418] +16:20:12 [ 52] [ 16] [0F5DC7631A8C25FC] +16:20:12 ============================================================================ +16:20:12 + + +waiting on router queue for slot.... +16:20:12 Sending to : +16:20:12 ============================================================================ +16:20:12 Sending to : +16:20:12 ============================================================================ +16:20:13 ============================================================================ +16:20:13 Slot Id : <319> +16:20:13 Transaction Type : RESPONSE +16:20:13 Received From : +16:20:13 ============================================================================ +16:20:13 FNo. Len. Field Value +16:20:13 ============================================================================ +16:20:13 [ 1] [ 4] [0210] +16:20:13 [ 2] [ 16] [6213543000155886] +16:20:13 [ 3] [ 6] [012000] +16:20:13 [ 4] [ 12] [000010000000] +16:20:13 [ 7] [ 10] [0320162757] +16:20:13 [ 11] [ 6] [189031] +16:20:13 [ 12] [ 6] [162757] +16:20:13 [ 13] [ 4] [0320] +16:20:13 [ 15] [ 4] [0320] +16:20:13 [ 18] [ 4] [6011] +16:20:13 [ 32] [ 6] [220699] +16:20:13 [ 35] [ 32] [6213543000155886=491212015588726] +16:20:13 [ 37] [ 12] [507900084369] +16:20:13 [ 38] [ 6] [946875] +16:20:13 [ 39] [ 2] [00] +16:20:13 [ 41] [ 8] [01000800] +16:20:13 [ 49] [ 3] [418] +16:20:13 [ 54] [ 40] [2001418C0000185900702002418C000018590070] +16:20:13 ============================================================================ +16:20:13 Calculate Source COMM Id = 1 +16:20:13 ============================================================================ +16:20:13 + + +waiting on router queue for slot.... +16:20:13 ============================================================================ +16:20:13 Slot Id : <330> +16:20:13 Transaction Type : REQUEST +16:20:13 Received From : +16:20:13 ============================================================================ +16:20:13 FNo. Len. Field Value +16:20:13 ============================================================================ +16:20:13 [ 1] [ 4] [0200] +16:20:13 [ 2] [ 16] [1888880000030916] +16:20:13 [ 3] [ 6] [011000] +16:20:13 [ 4] [ 12] [000002000000] +16:20:13 [ 7] [ 10] [0320162007] +16:20:13 [ 11] [ 6] [796943] +16:20:13 [ 12] [ 6] [162007] +16:20:13 [ 13] [ 4] [0320] +16:20:13 [ 15] [ 4] [0320] +16:20:13 [ 18] [ 4] [6011] +16:20:13 [ 22] [ 3] [900] +16:20:13 [ 25] [ 2] [02] +16:20:13 [ 28] [ 9] [D00002000] +16:20:13 [ 32] [ 6] [621354] +16:20:13 [ 35] [ 32] [1888880000030916=000010100000216] +16:20:13 [ 37] [ 12] [507904755476] +16:20:13 [ 41] [ 8] [07001100] +16:20:13 [ 42] [ 15] [NATIVE ] +16:20:13 [ 43] [ 40] [Industry Market Namtar LAO] +16:20:13 [ 49] [ 3] [418] +16:20:13 [ 52] [ 16] [0F5DC7631A8C25FC] +16:20:13 ============================================================================ +16:20:13 + + +waiting on router queue for slot.... +16:20:13 Sending to : +16:20:13 ============================================================================ +16:20:13 ============================================================================ +16:20:13 Slot Id : <330> +16:20:13 Transaction Type : REQUEST +16:20:13 Received From : +16:20:13 ============================================================================ +16:20:13 FNo. Len. Field Value +16:20:13 ============================================================================ +16:20:13 [ 1] [ 4] [0200] +16:20:13 [ 2] [ 16] [1888880000030916] +16:20:13 [ 3] [ 6] [011000] +16:20:13 [ 4] [ 12] [000002000000] +16:20:13 [ 7] [ 10] [0320162007] +16:20:13 [ 11] [ 6] [796943] +16:20:13 [ 12] [ 6] [162007] +16:20:13 [ 13] [ 4] [0320] +16:20:13 [ 15] [ 4] [0320] +16:20:13 [ 18] [ 4] [6011] +16:20:13 [ 22] [ 3] [900] +16:20:13 [ 25] [ 2] [02] +16:20:13 [ 28] [ 9] [D00002000] +16:20:13 [ 32] [ 6] [621354] +16:20:13 [ 35] [ 32] [1888880000030916=000010100000216] +16:20:13 [ 37] [ 12] [507904755476] +16:20:13 [ 41] [ 8] [07001100] +16:20:13 [ 42] [ 15] [NATIVE ] +16:20:13 [ 43] [ 40] [Industry Market Namtar LAO] +16:20:13 [ 49] [ 3] [418] +16:20:13 [ 52] [ 16] [88FB6D0C415F6DD1] +16:20:13 ============================================================================ +16:20:13 + + +waiting on router queue for slot.... +16:20:13 Sending to : <5> +16:20:13 ============================================================================ +16:20:15 ============================================================================ +16:20:15 Slot Id : <332> +16:20:15 Transaction Type : REQUEST +16:20:15 Received From : +16:20:15 ============================================================================ +16:20:15 FNo. Len. Field Value +16:20:15 ============================================================================ +16:20:15 [ 1] [ 4] [0800] +16:20:15 [ 2] [ 5] [02531] +16:20:15 [ 3] [ 6] [579168] +16:20:15 [ 7] [ 10] [0320092015] +16:20:15 [ 11] [ 6] [807360] +16:20:15 [ 15] [ 10] [0320092015] +16:20:15 [ 37] [ 11] [57916807360] +16:20:15 [ 70] [ 3] [001] +16:20:15 ============================================================================ +16:20:15 + + +waiting on router queue for slot.... +16:20:15 ============================================================================ +16:20:15 Slot Id : <332> +16:20:15 Transaction Type : RESPONSE +16:20:15 Received From : +16:20:15 ============================================================================ +16:20:15 FNo. Len. Field Value +16:20:15 ============================================================================ +16:20:15 [ 1] [ 4] [0810] +16:20:15 [ 7] [ 10] [0320092015] +16:20:15 [ 11] [ 6] [807360] +16:20:15 [ 15] [ 4] [0320] +16:20:15 [ 37] [ 12] [57916807360] +16:20:15 [ 39] [ 2] [00] +16:20:15 [ 70] [ 3] [001] +16:20:15 ============================================================================ +16:20:15 Sending to : +16:20:15 ============================================================================ +16:20:15 + + +waiting on router queue for slot.... +16:20:16 ============================================================================ +16:20:16 Slot Id : <330> +16:20:16 Transaction Type : RESPONSE +16:20:16 Received From : +16:20:16 ============================================================================ +16:20:16 FNo. Len. Field Value +16:20:16 ============================================================================ +16:20:16 [ 1] [ 4] [0210] +16:20:16 [ 2] [ 16] [1888880000030916] +16:20:16 [ 3] [ 6] [011000] +16:20:16 [ 4] [ 12] [000002000000] +16:20:16 [ 7] [ 10] [0320162007] +16:20:16 [ 11] [ 6] [796943] +16:20:16 [ 12] [ 6] [162007] +16:20:16 [ 13] [ 4] [0320] +16:20:16 [ 15] [ 4] [0320] +16:20:16 [ 18] [ 4] [6011] +16:20:16 [ 19] [ 3] [418] +16:20:16 [ 32] [ 6] [621354] +16:20:16 [ 37] [ 12] [507904755476] +16:20:16 [ 38] [ 6] [901200] +16:20:16 [ 39] [ 2] [00] +16:20:16 [ 41] [ 8] [07001100] +16:20:16 [ 49] [ 3] [418] +16:20:16 [ 54] [ 0] [] +16:20:16 ============================================================================ +16:20:16 Sending to : +16:20:16 ============================================================================ +16:20:16 + + +waiting on router queue for slot.... +16:20:17 ============================================================================ +16:20:17 Slot Id : <330> +16:20:17 Transaction Type : RESPONSE +16:20:17 Received From : +16:20:17 ============================================================================ +16:20:17 FNo. Len. Field Value +16:20:17 ============================================================================ +16:20:17 [ 1] [ 4] [0210] +16:20:17 [ 2] [ 16] [1888880000030916] +16:20:17 [ 3] [ 6] [011000] +16:20:17 [ 4] [ 12] [000002000000] +16:20:17 [ 7] [ 10] [0320162007] +16:20:17 [ 11] [ 6] [796943] +16:20:17 [ 12] [ 6] [162007] +16:20:17 [ 13] [ 4] [0320] +16:20:17 [ 15] [ 4] [0320] +16:20:17 [ 18] [ 4] [6011] +16:20:17 [ 19] [ 3] [418] +16:20:17 [ 32] [ 6] [621354] +16:20:17 [ 37] [ 12] [507904755476] +16:20:17 [ 38] [ 6] [901200] +16:20:17 [ 39] [ 2] [00] +16:20:17 [ 41] [ 8] [07001100] +16:20:17 [ 49] [ 3] [418] +16:20:17 [ 54] [ 0] [] +16:20:17 ============================================================================ +16:20:17 Calculate Source COMM Id = 0 +16:20:17 ============================================================================ +16:20:17 + + +waiting on router queue for slot.... +16:20:19 ============================================================================ +16:20:19 Slot Id : <365> +16:20:19 Transaction Type : REQUEST +16:20:19 Received From : +16:20:19 ============================================================================ +16:20:19 FNo. Len. Field Value +16:20:19 ============================================================================ +16:20:19 [ 1] [ 4] [0800] +16:20:19 [ 7] [ 10] [0320233207] +16:20:19 [ 11] [ 6] [163207] +16:20:19 [ 37] [ 12] [57916163207] +16:20:19 [ 70] [ 3] [301] +16:20:19 ============================================================================ +16:20:19 + + +waiting on router queue for slot.... +16:20:19 Sending to : +16:20:19 ============================================================================ +16:20:19 ============================================================================ +16:20:19 Slot Id : <365> +16:20:19 Transaction Type : RESPONSE +16:20:19 Received From : +16:20:19 ============================================================================ +16:20:19 FNo. Len. Field Value +16:20:19 ============================================================================ +16:20:19 [ 1] [ 4] [0810] +16:20:19 [ 7] [ 10] [0320233207] +16:20:19 [ 11] [ 6] [163207] +16:20:19 [ 37] [ 12] [579161632070] +16:20:19 [ 39] [ 2] [00] +16:20:19 [ 70] [ 3] [810] +16:20:19 ============================================================================ +16:20:19 Calculate Source COMM Id = 6 +16:20:19 ============================================================================ +16:20:19 + + +waiting on router queue for slot.... +16:20:20 ============================================================================ +16:20:20 Slot Id : <356> +16:20:20 Transaction Type : REQUEST +16:20:20 Received From : +16:20:20 ============================================================================ +16:20:20 FNo. Len. Field Value +16:20:20 ============================================================================ +16:20:20 [ 1] [ 4] [0800] +16:20:20 [ 7] [ 10] [0320091927] +16:20:20 [ 11] [ 6] [157214] +16:20:20 [ 70] [ 3] [301] +16:20:20 ============================================================================ +16:20:20 + + +waiting on router queue for slot.... +16:20:20 Sending to : +16:20:20 ============================================================================ +16:20:20 ============================================================================ +16:20:20 Slot Id : <356> +16:20:20 Transaction Type : RESPONSE +16:20:20 Received From : +16:20:20 ============================================================================ +16:20:20 FNo. Len. Field Value +16:20:20 ============================================================================ +16:20:20 [ 1] [ 4] [0810] +16:20:20 [ 7] [ 10] [0320091927] +16:20:20 [ 11] [ 6] [157214] +16:20:20 [ 39] [ 2] [00] +16:20:20 [ 70] [ 3] [301] +16:20:20 ============================================================================ +16:20:20 Calculate Source COMM Id = 2 +16:20:20 ============================================================================ +16:20:20 + + +waiting on router queue for slot.... +16:20:22 ============================================================================ +16:20:22 Slot Id : <371> +16:20:22 Transaction Type : REQUEST +16:20:22 Received From : +16:20:22 ============================================================================ +16:20:22 FNo. Len. Field Value +16:20:22 ============================================================================ +16:20:22 [ 1] [ 4] [0200] +16:20:22 [ 2] [ 16] [6688990040130823] +16:20:22 [ 3] [ 6] [010000] +16:20:22 [ 4] [ 12] [000010000000] +16:20:22 [ 7] [ 10] [0320162017] +16:20:22 [ 11] [ 6] [796983] +16:20:22 [ 12] [ 6] [162017] +16:20:22 [ 13] [ 4] [0320] +16:20:22 [ 15] [ 4] [0320] +16:20:22 [ 18] [ 4] [6011] +16:20:22 [ 22] [ 3] [900] +16:20:22 [ 25] [ 2] [02] +16:20:22 [ 28] [ 9] [D00002000] +16:20:22 [ 32] [ 6] [621354] +16:20:22 [ 35] [ 37] [6688990040130823=98041261881385000000] +16:20:22 [ 37] [ 12] [507904377316] +16:20:22 [ 41] [ 8] [03003600] +16:20:22 [ 42] [ 15] [NATIVE ] +16:20:22 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +16:20:22 [ 49] [ 3] [418] +16:20:22 [ 52] [ 16] [4AF91173414D0F11] +16:20:22 ============================================================================ +16:20:22 + + +waiting on router queue for slot.... +16:20:22 Sending to : +16:20:22 ============================================================================ +16:20:22 Sending to : +16:20:22 ============================================================================ +16:20:22 ============================================================================ +16:20:22 Slot Id : <371> +16:20:22 Transaction Type : REQUEST +16:20:22 Received From : +16:20:22 ============================================================================ +16:20:22 FNo. Len. Field Value +16:20:22 ============================================================================ +16:20:22 [ 1] [ 4] [0200] +16:20:22 [ 2] [ 16] [6688990040130823] +16:20:22 [ 3] [ 6] [010000] +16:20:22 [ 4] [ 12] [000010000000] +16:20:22 [ 7] [ 10] [0320162017] +16:20:22 [ 11] [ 6] [796983] +16:20:22 [ 12] [ 6] [162017] +16:20:22 [ 13] [ 4] [0320] +16:20:22 [ 15] [ 4] [0320] +16:20:22 [ 18] [ 4] [6011] +16:20:22 [ 22] [ 3] [900] +16:20:22 [ 25] [ 2] [02] +16:20:22 [ 28] [ 9] [D00002000] +16:20:22 [ 32] [ 6] [621354] +16:20:22 [ 35] [ 37] [6688990040130823=98041261881385000000] +16:20:22 [ 37] [ 12] [507904377316] +16:20:22 [ 41] [ 8] [03003600] +16:20:22 [ 42] [ 15] [NATIVE ] +16:20:22 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +16:20:22 [ 49] [ 3] [418] +16:20:22 [ 52] [ 16] [4AF91173414D0F11] +16:20:22 ============================================================================ +16:20:22 + + +waiting on router queue for slot.... +16:20:22 Sending to : +16:20:22 ============================================================================ +16:20:22 ============================================================================ +16:20:22 Slot Id : <371> +16:20:22 Transaction Type : REQUEST +16:20:22 Received From : +16:20:22 ============================================================================ +16:20:22 FNo. Len. Field Value +16:20:22 ============================================================================ +16:20:22 [ 1] [ 4] [0200] +16:20:22 [ 2] [ 16] [6688990040130823] +16:20:22 [ 3] [ 6] [010000] +16:20:22 [ 4] [ 12] [000010000000] +16:20:22 [ 7] [ 10] [0320162017] +16:20:22 [ 11] [ 6] [796983] +16:20:22 [ 12] [ 6] [162017] +16:20:22 [ 13] [ 4] [0320] +16:20:22 [ 15] [ 4] [0320] +16:20:22 [ 18] [ 4] [6011] +16:20:22 [ 22] [ 3] [900] +16:20:22 [ 25] [ 2] [02] +16:20:22 [ 28] [ 9] [D00002000] +16:20:22 [ 32] [ 6] [621354] +16:20:22 [ 35] [ 37] [6688990040130823=98041261881385000000] +16:20:22 [ 37] [ 12] [507904377316] +16:20:22 [ 41] [ 8] [03003600] +16:20:22 [ 42] [ 15] [NATIVE ] +16:20:22 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +16:20:22 [ 49] [ 3] [418] +16:20:22 [ 52] [ 16] [A345AF25C0076B35] +16:20:22 ============================================================================ +16:20:22 + + +waiting on router queue for slot.... +16:20:22 Sending to : <4> +16:20:22 ============================================================================ +16:20:23 ============================================================================ +16:20:23 Slot Id : <371> +16:20:23 Transaction Type : RESPONSE +16:20:23 Received From : +16:20:23 ============================================================================ +16:20:23 FNo. Len. Field Value +16:20:23 ============================================================================ +16:20:23 [ 1] [ 4] [0210] +16:20:23 [ 2] [ 16] [6688990040130823] +16:20:23 [ 3] [ 6] [010000] +16:20:23 [ 4] [ 12] [000010000000] +16:20:23 [ 11] [ 6] [796983] +16:20:23 [ 12] [ 6] [162017] +16:20:23 [ 15] [ 4] [0320] +16:20:23 [ 18] [ 4] [6011] +16:20:23 [ 32] [ 6] [621354] +16:20:23 [ 35] [ 37] [6688990040130823=98041261881385000000] +16:20:23 [ 37] [ 12] [507904377316] +16:20:23 [ 38] [ 6] [822111] +16:20:23 [ 39] [ 2] [00] +16:20:23 [ 41] [ 8] [03003600] +16:20:23 [ 49] [ 3] [418] +16:20:23 [ 54] [ 20] [0002764C000000557385] +16:20:23 ============================================================================ +16:20:23 Sending to : +16:20:23 ============================================================================ +16:20:23 + + +waiting on router queue for slot.... +16:20:25 ============================================================================ +16:20:25 Slot Id : <371> +16:20:25 Transaction Type : RESPONSE +16:20:25 Received From : +16:20:25 ============================================================================ +16:20:25 FNo. Len. Field Value +16:20:25 ============================================================================ +16:20:25 [ 1] [ 4] [0210] +16:20:25 [ 2] [ 16] [6688990040130823] +16:20:25 [ 3] [ 6] [010000] +16:20:25 [ 4] [ 12] [000010000000] +16:20:25 [ 11] [ 6] [796983] +16:20:25 [ 12] [ 6] [162017] +16:20:25 [ 15] [ 4] [0320] +16:20:25 [ 18] [ 4] [6011] +16:20:25 [ 32] [ 6] [621354] +16:20:25 [ 35] [ 37] [6688990040130823=98041261881385000000] +16:20:25 [ 37] [ 12] [507904377316] +16:20:25 [ 38] [ 6] [822111] +16:20:25 [ 39] [ 2] [00] +16:20:25 [ 41] [ 8] [03003600] +16:20:25 [ 49] [ 3] [418] +16:20:25 [ 54] [ 20] [0002764C000000557385] +16:20:25 ============================================================================ +16:20:25 Calculate Source COMM Id = 0 +16:20:25 ============================================================================ +16:20:25 + + +waiting on router queue for slot.... +16:20:26 ============================================================================ +16:20:26 Slot Id : <343> +16:20:26 Transaction Type : REQUEST +16:20:26 Received From : +16:20:26 ============================================================================ +16:20:26 FNo. Len. Field Value +16:20:26 ============================================================================ +16:20:26 [ 1] [ 4] [0200] +16:20:26 [ 2] [ 16] [6213544002247754] +16:20:26 [ 3] [ 6] [010000] +16:20:26 [ 4] [ 12] [000005000000] +16:20:26 [ 7] [ 10] [0320161816] +16:20:26 [ 11] [ 6] [951504] +16:20:26 [ 12] [ 6] [161816] +16:20:26 [ 13] [ 4] [0320] +16:20:26 [ 15] [ 4] [0320] +16:20:26 [ 18] [ 4] [6011] +16:20:26 [ 19] [ 3] [418] +16:20:26 [ 22] [ 3] [021] +16:20:26 [ 25] [ 2] [01] +16:20:26 [ 28] [ 9] [D00002000] +16:20:26 [ 32] [ 6] [668899] +16:20:26 [ 35] [ 32] [6213544002247754=491212014775677] +16:20:26 [ 37] [ 12] [507902161262] +16:20:26 [ 41] [ 8] [03020026] +16:20:26 [ 42] [ 15] [APT ] +16:20:26 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +16:20:26 [ 49] [ 3] [418] +16:20:26 [ 52] [ 16] [58F10800F1E79CCB] +16:20:26 ============================================================================ +16:20:26 + + +waiting on router queue for slot.... +16:20:26 Sending to : +16:20:26 ============================================================================ +16:20:26 Sending to : +16:20:26 ============================================================================ +16:20:26 ============================================================================ +16:20:26 Slot Id : <343> +16:20:26 Transaction Type : REQUEST +16:20:26 Received From : +16:20:26 ============================================================================ +16:20:26 FNo. Len. Field Value +16:20:26 ============================================================================ +16:20:26 [ 1] [ 4] [0200] +16:20:26 [ 2] [ 16] [6213544002247754] +16:20:26 [ 3] [ 6] [010000] +16:20:26 [ 4] [ 12] [000005000000] +16:20:26 [ 7] [ 10] [0320161816] +16:20:26 [ 11] [ 6] [951504] +16:20:26 [ 12] [ 6] [161816] +16:20:26 [ 13] [ 4] [0320] +16:20:26 [ 15] [ 4] [0320] +16:20:26 [ 18] [ 4] [6011] +16:20:26 [ 19] [ 3] [418] +16:20:26 [ 22] [ 3] [021] +16:20:26 [ 25] [ 2] [01] +16:20:26 [ 28] [ 9] [D00002000] +16:20:26 [ 32] [ 6] [668899] +16:20:26 [ 35] [ 32] [6213544002247754=491212014775677] +16:20:26 [ 37] [ 12] [507902161262] +16:20:26 [ 41] [ 8] [03020026] +16:20:26 [ 42] [ 15] [APT ] +16:20:26 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +16:20:26 [ 49] [ 3] [418] +16:20:26 [ 52] [ 16] [58F10800F1E79CCB] +16:20:26 ============================================================================ +16:20:26 + + +waiting on router queue for slot.... +16:20:26 Sending to : +16:20:26 ============================================================================ +16:20:26 ============================================================================ +16:20:26 Slot Id : <343> +16:20:26 Transaction Type : REQUEST +16:20:26 Received From : +16:20:26 ============================================================================ +16:20:26 FNo. Len. Field Value +16:20:26 ============================================================================ +16:20:26 [ 1] [ 4] [0200] +16:20:26 [ 2] [ 16] [6213544002247754] +16:20:26 [ 3] [ 6] [010000] +16:20:26 [ 4] [ 12] [000005000000] +16:20:26 [ 7] [ 10] [0320161816] +16:20:26 [ 11] [ 6] [951504] +16:20:26 [ 12] [ 6] [161816] +16:20:26 [ 13] [ 4] [0320] +16:20:26 [ 15] [ 4] [0320] +16:20:26 [ 18] [ 4] [6011] +16:20:26 [ 19] [ 3] [418] +16:20:26 [ 22] [ 3] [021] +16:20:26 [ 25] [ 2] [01] +16:20:26 [ 28] [ 9] [D00002000] +16:20:26 [ 32] [ 6] [668899] +16:20:26 [ 35] [ 32] [6213544002247754=491212014775677] +16:20:26 [ 37] [ 12] [507902161262] +16:20:26 [ 41] [ 8] [03020026] +16:20:26 [ 42] [ 15] [APT ] +16:20:26 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +16:20:26 [ 49] [ 3] [418] +16:20:26 [ 52] [ 16] [CA1F91A869240E8A] +16:20:26 ============================================================================ +16:20:26 + + +waiting on router queue for slot.... +16:20:26 Sending to : <0> +16:20:26 ============================================================================ +16:20:27 ============================================================================ +16:20:27 Slot Id : <343> +16:20:27 Transaction Type : RESPONSE +16:20:27 Received From : +16:20:27 ============================================================================ +16:20:27 FNo. Len. Field Value +16:20:27 ============================================================================ +16:20:27 [ 1] [ 4] [0210] +16:20:27 [ 2] [ 16] [6213544002247754] +16:20:27 [ 3] [ 6] [010000] +16:20:27 [ 4] [ 12] [000005000000] +16:20:27 [ 7] [ 10] [0320161816] +16:20:27 [ 11] [ 6] [951504] +16:20:27 [ 12] [ 6] [161816] +16:20:27 [ 13] [ 4] [0320] +16:20:27 [ 15] [ 4] [0320] +16:20:27 [ 18] [ 4] [6011] +16:20:27 [ 19] [ 3] [418] +16:20:27 [ 32] [ 6] [668899] +16:20:27 [ 35] [ 32] [6213544002247754=491212014775677] +16:20:27 [ 37] [ 12] [507902161262] +16:20:27 [ 38] [ 6] [634763] +16:20:27 [ 39] [ 2] [00] +16:20:27 [ 41] [ 8] [03020026] +16:20:27 [ 49] [ 3] [418] +16:20:27 [ 54] [ 40] [0001418C0000149535030002418C000014953503] +16:20:27 ============================================================================ +16:20:27 Sending to : +16:20:27 ============================================================================ +16:20:27 + + +waiting on router queue for slot.... +16:20:28 ============================================================================ +16:20:28 Slot Id : <343> +16:20:28 Transaction Type : RESPONSE +16:20:28 Received From : +16:20:28 ============================================================================ +16:20:28 FNo. Len. Field Value +16:20:28 ============================================================================ +16:20:28 [ 1] [ 4] [0210] +16:20:28 [ 2] [ 16] [6213544002247754] +16:20:28 [ 3] [ 6] [010000] +16:20:28 [ 4] [ 12] [000005000000] +16:20:28 [ 7] [ 10] [0320161816] +16:20:28 [ 11] [ 6] [951504] +16:20:28 [ 12] [ 6] [161816] +16:20:28 [ 13] [ 4] [0320] +16:20:28 [ 15] [ 4] [0320] +16:20:28 [ 18] [ 4] [6011] +16:20:28 [ 19] [ 3] [418] +16:20:28 [ 32] [ 6] [668899] +16:20:28 [ 35] [ 32] [6213544002247754=491212014775677] +16:20:28 [ 37] [ 12] [507902161262] +16:20:28 [ 38] [ 6] [634763] +16:20:28 [ 39] [ 2] [00] +16:20:28 [ 41] [ 8] [03020026] +16:20:28 [ 49] [ 3] [418] +16:20:28 [ 54] [ 40] [0001418C0000149535030002418C000014953503] +16:20:28 ============================================================================ +16:20:28 Calculate Source COMM Id = 4 +16:20:28 ============================================================================ +16:20:28 + + +waiting on router queue for slot.... +16:20:32 ============================================================================ +16:20:32 Slot Id : <366> +16:20:32 Transaction Type : REQUEST +16:20:32 Received From : +16:20:32 ============================================================================ +16:20:32 FNo. Len. Field Value +16:20:32 ============================================================================ +16:20:32 [ 1] [ 4] [0800] +16:20:32 [ 7] [ 10] [0320091938] +16:20:32 [ 11] [ 6] [157215] +16:20:32 [ 70] [ 3] [301] +16:20:32 ============================================================================ +16:20:32 + + +waiting on router queue for slot.... +16:20:32 Sending to : +16:20:32 ============================================================================ +16:20:32 ============================================================================ +16:20:32 Slot Id : <366> +16:20:32 Transaction Type : RESPONSE +16:20:32 Received From : +16:20:32 ============================================================================ +16:20:32 FNo. Len. Field Value +16:20:32 ============================================================================ +16:20:32 [ 1] [ 4] [0810] +16:20:32 [ 7] [ 10] [0320091938] +16:20:32 [ 11] [ 6] [157215] +16:20:32 [ 39] [ 2] [00] +16:20:32 [ 70] [ 3] [301] +16:20:32 ============================================================================ +16:20:32 Calculate Source COMM Id = 2 +16:20:32 ============================================================================ +16:20:32 + + +waiting on router queue for slot.... +16:20:40 ============================================================================ +16:20:40 Slot Id : <313> +16:20:40 Transaction Type : REQUEST +16:20:40 Received From : +16:20:40 ============================================================================ +16:20:40 FNo. Len. Field Value +16:20:40 ============================================================================ +16:20:40 [ 1] [ 4] [0200] +16:20:40 [ 2] [ 16] [6213548000177632] +16:20:40 [ 3] [ 6] [300000] +16:20:40 [ 4] [ 12] [000000000000] +16:20:40 [ 7] [ 10] [0320161830] +16:20:40 [ 11] [ 6] [951511] +16:20:40 [ 12] [ 6] [161830] +16:20:40 [ 13] [ 4] [0320] +16:20:40 [ 15] [ 4] [0320] +16:20:40 [ 18] [ 4] [6011] +16:20:40 [ 19] [ 3] [418] +16:20:40 [ 22] [ 3] [021] +16:20:40 [ 25] [ 2] [01] +16:20:40 [ 28] [ 9] [D00000000] +16:20:40 [ 32] [ 6] [668899] +16:20:40 [ 35] [ 32] [6213548000177632=131212017763766] +16:20:40 [ 37] [ 12] [507902678766] +16:20:40 [ 41] [ 8] [03020035] +16:20:40 [ 42] [ 15] [APT ] +16:20:40 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +16:20:40 [ 49] [ 3] [418] +16:20:40 [ 52] [ 16] [661DD64E3C544F4C] +16:20:40 ============================================================================ +16:20:40 + + +waiting on router queue for slot.... +16:20:40 Sending to : +16:20:40 ============================================================================ +16:20:40 Sending to : +16:20:40 ============================================================================ +16:20:40 ============================================================================ +16:20:40 Slot Id : <313> +16:20:40 Transaction Type : REQUEST +16:20:40 Received From : +16:20:40 ============================================================================ +16:20:40 FNo. Len. Field Value +16:20:40 ============================================================================ +16:20:40 [ 1] [ 4] [0200] +16:20:40 [ 2] [ 16] [6213548000177632] +16:20:40 [ 3] [ 6] [300000] +16:20:40 [ 4] [ 12] [000000000000] +16:20:40 [ 7] [ 10] [0320161830] +16:20:40 [ 11] [ 6] [951511] +16:20:40 [ 12] [ 6] [161830] +16:20:40 [ 13] [ 4] [0320] +16:20:40 [ 15] [ 4] [0320] +16:20:40 [ 18] [ 4] [6011] +16:20:40 [ 19] [ 3] [418] +16:20:40 [ 22] [ 3] [021] +16:20:40 [ 25] [ 2] [01] +16:20:40 [ 28] [ 9] [D00000000] +16:20:40 [ 32] [ 6] [668899] +16:20:40 [ 35] [ 32] [6213548000177632=131212017763766] +16:20:40 [ 37] [ 12] [507902678766] +16:20:40 [ 41] [ 8] [03020035] +16:20:40 [ 42] [ 15] [APT ] +16:20:40 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +16:20:40 [ 49] [ 3] [418] +16:20:40 [ 52] [ 16] [661DD64E3C544F4C] +16:20:40 ============================================================================ +16:20:40 + + +waiting on router queue for slot.... +16:20:40 Sending to : +16:20:40 ============================================================================ +16:20:40 ============================================================================ +16:20:40 Slot Id : <313> +16:20:40 Transaction Type : REQUEST +16:20:40 Received From : +16:20:40 ============================================================================ +16:20:40 FNo. Len. Field Value +16:20:40 ============================================================================ +16:20:40 [ 1] [ 4] [0200] +16:20:40 [ 2] [ 16] [6213548000177632] +16:20:40 [ 3] [ 6] [300000] +16:20:40 [ 4] [ 12] [000000000000] +16:20:40 [ 7] [ 10] [0320161830] +16:20:40 [ 11] [ 6] [951511] +16:20:40 [ 12] [ 6] [161830] +16:20:40 [ 13] [ 4] [0320] +16:20:40 [ 15] [ 4] [0320] +16:20:40 [ 18] [ 4] [6011] +16:20:40 [ 19] [ 3] [418] +16:20:40 [ 22] [ 3] [021] +16:20:40 [ 25] [ 2] [01] +16:20:40 [ 28] [ 9] [D00000000] +16:20:40 [ 32] [ 6] [668899] +16:20:40 [ 35] [ 32] [6213548000177632=131212017763766] +16:20:40 [ 37] [ 12] [507902678766] +16:20:40 [ 41] [ 8] [03020035] +16:20:40 [ 42] [ 15] [APT ] +16:20:40 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +16:20:40 [ 49] [ 3] [418] +16:20:40 [ 52] [ 16] [42718BAD71F6AFEA] +16:20:40 ============================================================================ +16:20:40 + + +waiting on router queue for slot.... +16:20:40 Sending to : <0> +16:20:40 ============================================================================ +16:20:41 ============================================================================ +16:20:41 Slot Id : <313> +16:20:41 Transaction Type : RESPONSE +16:20:41 Received From : +16:20:41 ============================================================================ +16:20:41 FNo. Len. Field Value +16:20:41 ============================================================================ +16:20:41 [ 1] [ 4] [0210] +16:20:41 [ 2] [ 16] [6213548000177632] +16:20:41 [ 3] [ 6] [300000] +16:20:41 [ 4] [ 12] [000000000000] +16:20:41 [ 7] [ 10] [0320161830] +16:20:41 [ 11] [ 6] [951511] +16:20:41 [ 12] [ 6] [161830] +16:20:41 [ 13] [ 4] [0320] +16:20:41 [ 15] [ 4] [0320] +16:20:41 [ 18] [ 4] [6011] +16:20:41 [ 19] [ 3] [418] +16:20:41 [ 32] [ 6] [668899] +16:20:41 [ 35] [ 32] [6213548000177632=131212017763766] +16:20:41 [ 37] [ 12] [507902678766] +16:20:41 [ 38] [ 6] [021940] +16:20:41 [ 39] [ 2] [00] +16:20:41 [ 41] [ 8] [03020035] +16:20:41 [ 49] [ 3] [418] +16:20:41 [ 54] [ 40] [0001418C0000051306960002418C000005130696] +16:20:41 ============================================================================ +16:20:41 Sending to : +16:20:41 ============================================================================ +16:20:41 + + +waiting on router queue for slot.... +16:20:42 ============================================================================ +16:20:42 Slot Id : <313> +16:20:42 Transaction Type : RESPONSE +16:20:42 Received From : +16:20:42 ============================================================================ +16:20:42 FNo. Len. Field Value +16:20:42 ============================================================================ +16:20:42 [ 1] [ 4] [0210] +16:20:42 [ 2] [ 16] [6213548000177632] +16:20:42 [ 3] [ 6] [300000] +16:20:42 [ 4] [ 12] [000000000000] +16:20:42 [ 7] [ 10] [0320161830] +16:20:42 [ 11] [ 6] [951511] +16:20:42 [ 12] [ 6] [161830] +16:20:42 [ 13] [ 4] [0320] +16:20:42 [ 15] [ 4] [0320] +16:20:42 [ 18] [ 4] [6011] +16:20:42 [ 19] [ 3] [418] +16:20:42 [ 32] [ 6] [668899] +16:20:42 [ 35] [ 32] [6213548000177632=131212017763766] +16:20:42 [ 37] [ 12] [507902678766] +16:20:42 [ 38] [ 6] [021940] +16:20:42 [ 39] [ 2] [00] +16:20:42 [ 41] [ 8] [03020035] +16:20:42 [ 49] [ 3] [418] +16:20:42 [ 54] [ 40] [0001418C0000051306960002418C000005130696] +16:20:42 ============================================================================ +16:20:42 Calculate Source COMM Id = 4 +16:20:42 ============================================================================ +16:20:42 + + +waiting on router queue for slot.... +16:20:46 ============================================================================ +16:20:46 Slot Id : <345> +16:20:46 Transaction Type : REQUEST +16:20:46 Received From : +16:20:46 ============================================================================ +16:20:46 FNo. Len. Field Value +16:20:46 ============================================================================ +16:20:46 [ 1] [ 4] [0800] +16:20:46 [ 7] [ 10] [0320091953] +16:20:46 [ 11] [ 6] [157216] +16:20:46 [ 70] [ 3] [301] +16:20:46 ============================================================================ +16:20:46 + + +waiting on router queue for slot.... +16:20:46 Sending to : +16:20:46 ============================================================================ +16:20:46 ============================================================================ +16:20:46 Slot Id : <345> +16:20:46 Transaction Type : RESPONSE +16:20:46 Received From : +16:20:46 ============================================================================ +16:20:46 FNo. Len. Field Value +16:20:46 ============================================================================ +16:20:46 [ 1] [ 4] [0810] +16:20:46 [ 7] [ 10] [0320091953] +16:20:46 [ 11] [ 6] [157216] +16:20:46 [ 39] [ 2] [00] +16:20:46 [ 70] [ 3] [301] +16:20:46 ============================================================================ +16:20:46 Calculate Source COMM Id = 2 +16:20:46 ============================================================================ +16:20:46 + + +waiting on router queue for slot.... +16:20:56 ============================================================================ +16:20:56 Slot Id : <378> +16:20:56 Transaction Type : REQUEST +16:20:56 Received From : +16:20:56 ============================================================================ +16:20:56 FNo. Len. Field Value +16:20:56 ============================================================================ +16:20:56 [ 1] [ 4] [0800] +16:20:56 [ 7] [ 10] [0320092003] +16:20:56 [ 11] [ 6] [157217] +16:20:56 [ 70] [ 3] [301] +16:20:56 ============================================================================ +16:20:56 + + +waiting on router queue for slot.... +16:20:56 Sending to : +16:20:56 ============================================================================ +16:20:56 ============================================================================ +16:20:56 Slot Id : <378> +16:20:56 Transaction Type : RESPONSE +16:20:56 Received From : +16:20:56 ============================================================================ +16:20:56 FNo. Len. Field Value +16:20:56 ============================================================================ +16:20:56 [ 1] [ 4] [0810] +16:20:56 [ 7] [ 10] [0320092003] +16:20:56 [ 11] [ 6] [157217] +16:20:56 [ 39] [ 2] [00] +16:20:56 [ 70] [ 3] [301] +16:20:56 ============================================================================ +16:20:56 Calculate Source COMM Id = 2 +16:20:56 ============================================================================ +16:20:56 + + +waiting on router queue for slot.... +16:20:59 ============================================================================ +16:20:59 Slot Id : <373> +16:20:59 Transaction Type : REQUEST +16:20:59 Received From : +16:20:59 ============================================================================ +16:20:59 FNo. Len. Field Value +16:20:59 ============================================================================ +16:20:59 [ 1] [ 4] [0200] +16:20:59 [ 2] [ 16] [6213541000537244] +16:20:59 [ 3] [ 6] [010000] +16:20:59 [ 4] [ 12] [000020000000] +16:20:59 [ 7] [ 10] [0320162846] +16:20:59 [ 11] [ 6] [107272] +16:20:59 [ 12] [ 6] [162846] +16:20:59 [ 13] [ 4] [0320] +16:20:59 [ 14] [ 4] [4912] +16:20:59 [ 15] [ 4] [0320] +16:20:59 [ 18] [ 4] [6011] +16:20:59 [ 22] [ 3] [900] +16:20:59 [ 25] [ 2] [02] +16:20:59 [ 28] [ 9] [D00002000] +16:20:59 [ 32] [ 6] [220699] +16:20:59 [ 35] [ 32] [6213541000537244=491212013724815] +16:20:59 [ 37] [ 12] [507900327866] +16:20:59 [ 41] [ 8] [01001800] +16:20:59 [ 42] [ 15] [APTRA ] +16:20:59 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:20:59 [ 49] [ 3] [418] +16:20:59 [ 52] [ 16] [B53F1D403F3BAE5E] +16:20:59 ============================================================================ +16:20:59 + + +waiting on router queue for slot.... +16:20:59 Sending to : +16:20:59 ============================================================================ +16:20:59 Sending to : +16:20:59 ============================================================================ +16:20:59 ============================================================================ +16:20:59 Slot Id : <373> +16:20:59 Transaction Type : REQUEST +16:20:59 Received From : +16:20:59 ============================================================================ +16:20:59 FNo. Len. Field Value +16:20:59 ============================================================================ +16:20:59 [ 1] [ 4] [0200] +16:20:59 [ 2] [ 16] [6213541000537244] +16:20:59 [ 3] [ 6] [010000] +16:20:59 [ 4] [ 12] [000020000000] +16:20:59 [ 7] [ 10] [0320162846] +16:20:59 [ 11] [ 6] [107272] +16:20:59 [ 12] [ 6] [162846] +16:20:59 [ 13] [ 4] [0320] +16:20:59 [ 14] [ 4] [4912] +16:20:59 [ 15] [ 4] [0320] +16:20:59 [ 18] [ 4] [6011] +16:20:59 [ 22] [ 3] [900] +16:20:59 [ 25] [ 2] [02] +16:20:59 [ 28] [ 9] [D00002000] +16:20:59 [ 32] [ 6] [220699] +16:20:59 [ 35] [ 32] [6213541000537244=491212013724815] +16:20:59 [ 37] [ 12] [507900327866] +16:20:59 [ 41] [ 8] [01001800] +16:20:59 [ 42] [ 15] [APTRA ] +16:20:59 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:20:59 [ 49] [ 3] [418] +16:20:59 [ 52] [ 16] [B53F1D403F3BAE5E] +16:20:59 ============================================================================ +16:20:59 + + +waiting on router queue for slot.... +16:20:59 Sending to : +16:20:59 ============================================================================ +16:20:59 ============================================================================ +16:20:59 Slot Id : <373> +16:20:59 Transaction Type : REQUEST +16:20:59 Received From : +16:20:59 ============================================================================ +16:20:59 FNo. Len. Field Value +16:20:59 ============================================================================ +16:20:59 [ 1] [ 4] [0200] +16:20:59 [ 2] [ 16] [6213541000537244] +16:20:59 [ 3] [ 6] [010000] +16:20:59 [ 4] [ 12] [000020000000] +16:20:59 [ 7] [ 10] [0320162846] +16:20:59 [ 11] [ 6] [107272] +16:20:59 [ 12] [ 6] [162846] +16:20:59 [ 13] [ 4] [0320] +16:20:59 [ 14] [ 4] [4912] +16:20:59 [ 15] [ 4] [0320] +16:20:59 [ 18] [ 4] [6011] +16:20:59 [ 22] [ 3] [900] +16:20:59 [ 25] [ 2] [02] +16:20:59 [ 28] [ 9] [D00002000] +16:20:59 [ 32] [ 6] [220699] +16:20:59 [ 35] [ 32] [6213541000537244=491212013724815] +16:20:59 [ 37] [ 12] [507900327866] +16:20:59 [ 41] [ 8] [01001800] +16:20:59 [ 42] [ 15] [APTRA ] +16:20:59 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:20:59 [ 49] [ 3] [418] +16:20:59 [ 52] [ 16] [D22B28FA7C464CE5] +16:20:59 ============================================================================ +16:20:59 + + +waiting on router queue for slot.... +16:20:59 Sending to : <0> +16:20:59 ============================================================================ +16:21:00 ============================================================================ +16:21:00 Slot Id : <373> +16:21:00 Transaction Type : RESPONSE +16:21:00 Received From : +16:21:00 ============================================================================ +16:21:00 FNo. Len. Field Value +16:21:00 ============================================================================ +16:21:00 [ 1] [ 4] [0210] +16:21:00 [ 2] [ 16] [6213541000537244] +16:21:00 [ 3] [ 6] [010000] +16:21:00 [ 4] [ 12] [000020000000] +16:21:00 [ 7] [ 10] [0320162846] +16:21:00 [ 11] [ 6] [107272] +16:21:00 [ 12] [ 6] [162846] +16:21:00 [ 13] [ 4] [0320] +16:21:00 [ 15] [ 4] [0320] +16:21:00 [ 18] [ 4] [6011] +16:21:00 [ 32] [ 6] [220699] +16:21:00 [ 35] [ 32] [6213541000537244=491212013724815] +16:21:00 [ 37] [ 12] [507900327866] +16:21:00 [ 38] [ 6] [084893] +16:21:00 [ 39] [ 2] [00] +16:21:00 [ 41] [ 8] [01001800] +16:21:00 [ 49] [ 3] [418] +16:21:00 [ 54] [ 40] [0001418C0000285519600002418C000028551960] +16:21:00 ============================================================================ +16:21:00 Sending to : +16:21:00 ============================================================================ +16:21:00 + + +waiting on router queue for slot.... +16:21:01 ============================================================================ +16:21:01 Slot Id : <373> +16:21:01 Transaction Type : RESPONSE +16:21:01 Received From : +16:21:01 ============================================================================ +16:21:01 FNo. Len. Field Value +16:21:01 ============================================================================ +16:21:01 [ 1] [ 4] [0210] +16:21:01 [ 2] [ 16] [6213541000537244] +16:21:01 [ 3] [ 6] [010000] +16:21:01 [ 4] [ 12] [000020000000] +16:21:01 [ 7] [ 10] [0320162846] +16:21:01 [ 11] [ 6] [107272] +16:21:01 [ 12] [ 6] [162846] +16:21:01 [ 13] [ 4] [0320] +16:21:01 [ 15] [ 4] [0320] +16:21:01 [ 18] [ 4] [6011] +16:21:01 [ 32] [ 6] [220699] +16:21:01 [ 35] [ 32] [6213541000537244=491212013724815] +16:21:01 [ 37] [ 12] [507900327866] +16:21:01 [ 38] [ 6] [084893] +16:21:01 [ 39] [ 2] [00] +16:21:01 [ 41] [ 8] [01001800] +16:21:01 [ 49] [ 3] [418] +16:21:01 [ 54] [ 40] [0001418C0000285519600002418C000028551960] +16:21:01 ============================================================================ +16:21:01 Calculate Source COMM Id = 1 +16:21:01 ============================================================================ +16:21:01 + + +waiting on router queue for slot.... +16:21:04 ============================================================================ +16:21:04 Slot Id : <353> +16:21:04 Transaction Type : REQUEST +16:21:04 Received From : +16:21:04 ============================================================================ +16:21:04 FNo. Len. Field Value +16:21:04 ============================================================================ +16:21:04 [ 1] [ 4] [0200] +16:21:04 [ 2] [ 16] [6688990105247207] +16:21:04 [ 3] [ 6] [011000] +16:21:04 [ 4] [ 12] [000100000000] +16:21:04 [ 7] [ 10] [0320162059] +16:21:04 [ 11] [ 6] [797176] +16:21:04 [ 12] [ 6] [162059] +16:21:04 [ 13] [ 4] [0320] +16:21:04 [ 15] [ 4] [0320] +16:21:04 [ 18] [ 4] [6011] +16:21:04 [ 22] [ 3] [900] +16:21:04 [ 25] [ 2] [02] +16:21:04 [ 28] [ 9] [D00002000] +16:21:04 [ 32] [ 6] [621354] +16:21:04 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:21:04 [ 37] [ 12] [507904719774] +16:21:04 [ 41] [ 8] [18001000] +16:21:04 [ 42] [ 15] [NATIVE ] +16:21:04 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:21:04 [ 49] [ 3] [418] +16:21:04 [ 52] [ 16] [667459472C5E1498] +16:21:04 ============================================================================ +16:21:04 + + +waiting on router queue for slot.... +16:21:04 Sending to : +16:21:04 ============================================================================ +16:21:04 Sending to : +16:21:04 ============================================================================ +16:21:04 ============================================================================ +16:21:04 Slot Id : <353> +16:21:04 Transaction Type : REQUEST +16:21:04 Received From : +16:21:04 ============================================================================ +16:21:04 FNo. Len. Field Value +16:21:04 ============================================================================ +16:21:04 [ 1] [ 4] [0200] +16:21:04 [ 2] [ 16] [6688990105247207] +16:21:04 [ 3] [ 6] [011000] +16:21:04 [ 4] [ 12] [000100000000] +16:21:04 [ 7] [ 10] [0320162059] +16:21:04 [ 11] [ 6] [797176] +16:21:04 [ 12] [ 6] [162059] +16:21:04 [ 13] [ 4] [0320] +16:21:04 [ 15] [ 4] [0320] +16:21:04 [ 18] [ 4] [6011] +16:21:04 [ 22] [ 3] [900] +16:21:04 [ 25] [ 2] [02] +16:21:04 [ 28] [ 9] [D00002000] +16:21:04 [ 32] [ 6] [621354] +16:21:04 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:21:04 [ 37] [ 12] [507904719774] +16:21:04 [ 41] [ 8] [18001000] +16:21:04 [ 42] [ 15] [NATIVE ] +16:21:04 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:21:04 [ 49] [ 3] [418] +16:21:04 [ 52] [ 16] [667459472C5E1498] +16:21:04 ============================================================================ +16:21:04 + + +waiting on router queue for slot.... +16:21:04 Sending to : +16:21:04 ============================================================================ +16:21:04 ============================================================================ +16:21:04 Slot Id : <353> +16:21:04 Transaction Type : REQUEST +16:21:04 Received From : +16:21:04 ============================================================================ +16:21:04 FNo. Len. Field Value +16:21:04 ============================================================================ +16:21:04 [ 1] [ 4] [0200] +16:21:04 [ 2] [ 16] [6688990105247207] +16:21:04 [ 3] [ 6] [011000] +16:21:04 [ 4] [ 12] [000100000000] +16:21:04 [ 7] [ 10] [0320162059] +16:21:04 [ 11] [ 6] [797176] +16:21:04 [ 12] [ 6] [162059] +16:21:04 [ 13] [ 4] [0320] +16:21:04 [ 15] [ 4] [0320] +16:21:04 [ 18] [ 4] [6011] +16:21:04 [ 22] [ 3] [900] +16:21:04 [ 25] [ 2] [02] +16:21:04 [ 28] [ 9] [D00002000] +16:21:04 [ 32] [ 6] [621354] +16:21:04 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:21:04 [ 37] [ 12] [507904719774] +16:21:04 [ 41] [ 8] [18001000] +16:21:04 [ 42] [ 15] [NATIVE ] +16:21:04 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:21:04 [ 49] [ 3] [418] +16:21:04 [ 52] [ 16] [2740F324422C69C1] +16:21:04 ============================================================================ +16:21:04 + + +waiting on router queue for slot.... +16:21:04 Sending to : <4> +16:21:04 ============================================================================ +16:21:06 ============================================================================ +16:21:06 Slot Id : <353> +16:21:06 Transaction Type : RESPONSE +16:21:06 Received From : +16:21:06 ============================================================================ +16:21:06 FNo. Len. Field Value +16:21:06 ============================================================================ +16:21:06 [ 1] [ 4] [0210] +16:21:06 [ 2] [ 16] [6688990105247207] +16:21:06 [ 3] [ 6] [011000] +16:21:06 [ 4] [ 12] [000100000000] +16:21:06 [ 11] [ 6] [797176] +16:21:06 [ 12] [ 6] [162059] +16:21:06 [ 15] [ 4] [0320] +16:21:06 [ 18] [ 4] [6011] +16:21:06 [ 32] [ 6] [621354] +16:21:06 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:21:06 [ 37] [ 12] [507904719774] +16:21:06 [ 38] [ 6] [941954] +16:21:06 [ 39] [ 2] [00] +16:21:06 [ 41] [ 8] [18001000] +16:21:06 [ 49] [ 3] [418] +16:21:06 [ 54] [ 20] [1002418C000180156582] +16:21:06 ============================================================================ +16:21:06 Sending to : +16:21:06 ============================================================================ +16:21:06 + + +waiting on router queue for slot.... +16:21:06 ============================================================================ +16:21:06 Slot Id : <340> +16:21:06 Transaction Type : REQUEST +16:21:06 Received From : +16:21:06 ============================================================================ +16:21:06 FNo. Len. Field Value +16:21:06 ============================================================================ +16:21:06 [ 1] [ 4] [0800] +16:21:06 [ 7] [ 10] [0320092013] +16:21:06 [ 11] [ 6] [157218] +16:21:06 [ 70] [ 3] [301] +16:21:06 ============================================================================ +16:21:06 + + +waiting on router queue for slot.... +16:21:06 Sending to : +16:21:06 ============================================================================ +16:21:06 ============================================================================ +16:21:06 Slot Id : <340> +16:21:06 Transaction Type : RESPONSE +16:21:06 Received From : +16:21:06 ============================================================================ +16:21:06 FNo. Len. Field Value +16:21:06 ============================================================================ +16:21:06 [ 1] [ 4] [0810] +16:21:06 [ 7] [ 10] [0320092013] +16:21:06 [ 11] [ 6] [157218] +16:21:06 [ 39] [ 2] [00] +16:21:06 [ 70] [ 3] [301] +16:21:06 ============================================================================ +16:21:06 Calculate Source COMM Id = 2 +16:21:06 ============================================================================ +16:21:06 + + +waiting on router queue for slot.... +16:21:07 ============================================================================ +16:21:07 Slot Id : <353> +16:21:07 Transaction Type : RESPONSE +16:21:07 Received From : +16:21:07 ============================================================================ +16:21:07 FNo. Len. Field Value +16:21:07 ============================================================================ +16:21:07 [ 1] [ 4] [0210] +16:21:07 [ 2] [ 16] [6688990105247207] +16:21:07 [ 3] [ 6] [011000] +16:21:07 [ 4] [ 12] [000100000000] +16:21:07 [ 11] [ 6] [797176] +16:21:07 [ 12] [ 6] [162059] +16:21:07 [ 15] [ 4] [0320] +16:21:07 [ 18] [ 4] [6011] +16:21:07 [ 32] [ 6] [621354] +16:21:07 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:21:07 [ 37] [ 12] [507904719774] +16:21:07 [ 38] [ 6] [941954] +16:21:07 [ 39] [ 2] [00] +16:21:07 [ 41] [ 8] [18001000] +16:21:07 [ 49] [ 3] [418] +16:21:07 [ 54] [ 20] [1002418C000180156582] +16:21:07 ============================================================================ +16:21:07 Calculate Source COMM Id = 0 +16:21:07 ============================================================================ +16:21:07 + + +waiting on router queue for slot.... +16:21:09 ============================================================================ +16:21:09 Slot Id : <324> +16:21:09 Transaction Type : REQUEST +16:21:09 Received From : +16:21:09 ============================================================================ +16:21:09 FNo. Len. Field Value +16:21:09 ============================================================================ +16:21:09 [ 1] [ 4] [0200] +16:21:09 [ 2] [ 16] [6688990103264808] +16:21:09 [ 3] [ 6] [010000] +16:21:09 [ 4] [ 12] [000030000000] +16:21:09 [ 7] [ 10] [0320162104] +16:21:09 [ 11] [ 6] [797196] +16:21:09 [ 12] [ 6] [162104] +16:21:09 [ 13] [ 4] [0320] +16:21:09 [ 15] [ 4] [0320] +16:21:09 [ 18] [ 4] [6011] +16:21:09 [ 22] [ 3] [900] +16:21:09 [ 25] [ 2] [02] +16:21:09 [ 28] [ 9] [D00002000] +16:21:09 [ 32] [ 6] [621354] +16:21:09 [ 35] [ 37] [6688990103264808=42121231480849400000] +16:21:09 [ 37] [ 12] [507903499584] +16:21:09 [ 41] [ 8] [06002200] +16:21:09 [ 42] [ 15] [NATIVE ] +16:21:09 [ 43] [ 40] [Beng Market Beng LAO] +16:21:09 [ 49] [ 3] [418] +16:21:09 [ 52] [ 16] [8E81C06E4C1F9D21] +16:21:09 ============================================================================ +16:21:09 + + +waiting on router queue for slot.... +16:21:09 Sending to : +16:21:09 ============================================================================ +16:21:09 Sending to : +16:21:09 ============================================================================ +16:21:09 ============================================================================ +16:21:09 Slot Id : <324> +16:21:09 Transaction Type : REQUEST +16:21:09 Received From : +16:21:09 ============================================================================ +16:21:09 FNo. Len. Field Value +16:21:09 ============================================================================ +16:21:09 [ 1] [ 4] [0200] +16:21:09 [ 2] [ 16] [6688990103264808] +16:21:09 [ 3] [ 6] [010000] +16:21:09 [ 4] [ 12] [000030000000] +16:21:09 [ 7] [ 10] [0320162104] +16:21:09 [ 11] [ 6] [797196] +16:21:09 [ 12] [ 6] [162104] +16:21:09 [ 13] [ 4] [0320] +16:21:09 [ 15] [ 4] [0320] +16:21:09 [ 18] [ 4] [6011] +16:21:09 [ 22] [ 3] [900] +16:21:09 [ 25] [ 2] [02] +16:21:09 [ 28] [ 9] [D00002000] +16:21:09 [ 32] [ 6] [621354] +16:21:09 [ 35] [ 37] [6688990103264808=42121231480849400000] +16:21:09 [ 37] [ 12] [507903499584] +16:21:09 [ 41] [ 8] [06002200] +16:21:09 [ 42] [ 15] [NATIVE ] +16:21:09 [ 43] [ 40] [Beng Market Beng LAO] +16:21:09 [ 49] [ 3] [418] +16:21:09 [ 52] [ 16] [8E81C06E4C1F9D21] +16:21:09 ============================================================================ +16:21:09 + + +waiting on router queue for slot.... +16:21:09 Sending to : +16:21:09 ============================================================================ +16:21:09 ============================================================================ +16:21:09 Slot Id : <324> +16:21:09 Transaction Type : REQUEST +16:21:09 Received From : +16:21:09 ============================================================================ +16:21:09 FNo. Len. Field Value +16:21:09 ============================================================================ +16:21:09 [ 1] [ 4] [0200] +16:21:09 [ 2] [ 16] [6688990103264808] +16:21:09 [ 3] [ 6] [010000] +16:21:09 [ 4] [ 12] [000030000000] +16:21:09 [ 7] [ 10] [0320162104] +16:21:09 [ 11] [ 6] [797196] +16:21:09 [ 12] [ 6] [162104] +16:21:09 [ 13] [ 4] [0320] +16:21:09 [ 15] [ 4] [0320] +16:21:09 [ 18] [ 4] [6011] +16:21:09 [ 22] [ 3] [900] +16:21:09 [ 25] [ 2] [02] +16:21:09 [ 28] [ 9] [D00002000] +16:21:09 [ 32] [ 6] [621354] +16:21:09 [ 35] [ 37] [6688990103264808=42121231480849400000] +16:21:09 [ 37] [ 12] [507903499584] +16:21:09 [ 41] [ 8] [06002200] +16:21:09 [ 42] [ 15] [NATIVE ] +16:21:09 [ 43] [ 40] [Beng Market Beng LAO] +16:21:09 [ 49] [ 3] [418] +16:21:09 [ 52] [ 16] [B73942946A32DAB1] +16:21:09 ============================================================================ +16:21:09 + + +waiting on router queue for slot.... +16:21:09 Sending to : <4> +16:21:09 ============================================================================ +16:21:09 ============================================================================ +16:21:09 Slot Id : <382> +16:21:09 Transaction Type : REQUEST +16:21:09 Received From : +16:21:09 ============================================================================ +16:21:09 FNo. Len. Field Value +16:21:09 ============================================================================ +16:21:09 [ 1] [ 4] [0200] +16:21:09 [ 2] [ 16] [6213545000960868] +16:21:09 [ 3] [ 6] [010000] +16:21:09 [ 4] [ 12] [000010000000] +16:21:09 [ 7] [ 10] [0320092014] +16:21:09 [ 11] [ 6] [270361] +16:21:09 [ 12] [ 6] [162014] +16:21:09 [ 13] [ 4] [0320] +16:21:09 [ 14] [ 4] [4912] +16:21:09 [ 15] [ 4] [0320] +16:21:09 [ 18] [ 4] [6011] +16:21:09 [ 19] [ 3] [418] +16:21:09 [ 22] [ 3] [021] +16:21:09 [ 25] [ 2] [01] +16:21:09 [ 28] [ 9] [D00002000] +16:21:09 [ 32] [ 6] [180893] +16:21:09 [ 35] [ 32] [6213545000960868=491212016086962] +16:21:09 [ 37] [ 12] [507909270361] +16:21:09 [ 41] [ 8] [0301LPBX] +16:21:09 [ 42] [ 15] [999999 ] +16:21:09 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:21:09 [ 49] [ 3] [418] +16:21:09 [ 52] [ 16] [DEDA6F056005B717] +16:21:09 ============================================================================ +16:21:09 + + +waiting on router queue for slot.... +16:21:09 Sending to : +16:21:09 ============================================================================ +16:21:09 Sending to : +16:21:09 ============================================================================ +16:21:10 ============================================================================ +16:21:10 Slot Id : <382> +16:21:10 Transaction Type : REQUEST +16:21:10 Received From : +16:21:10 ============================================================================ +16:21:10 FNo. Len. Field Value +16:21:10 ============================================================================ +16:21:10 [ 1] [ 4] [0200] +16:21:10 [ 2] [ 16] [6213545000960868] +16:21:10 [ 3] [ 6] [010000] +16:21:10 [ 4] [ 12] [000010000000] +16:21:10 [ 7] [ 10] [0320092014] +16:21:10 [ 11] [ 6] [270361] +16:21:10 [ 12] [ 6] [162014] +16:21:10 [ 13] [ 4] [0320] +16:21:10 [ 14] [ 4] [4912] +16:21:10 [ 15] [ 4] [0320] +16:21:10 [ 18] [ 4] [6011] +16:21:10 [ 19] [ 3] [418] +16:21:10 [ 22] [ 3] [021] +16:21:10 [ 25] [ 2] [01] +16:21:10 [ 28] [ 9] [D00002000] +16:21:10 [ 32] [ 6] [180893] +16:21:10 [ 35] [ 32] [6213545000960868=491212016086962] +16:21:10 [ 37] [ 12] [507909270361] +16:21:10 [ 41] [ 8] [0301LPBX] +16:21:10 [ 42] [ 15] [999999 ] +16:21:10 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:21:10 [ 49] [ 3] [418] +16:21:10 [ 52] [ 16] [DEDA6F056005B717] +16:21:10 ============================================================================ +16:21:10 + + +waiting on router queue for slot.... +16:21:10 Sending to : +16:21:10 ============================================================================ +16:21:10 ============================================================================ +16:21:10 Slot Id : <382> +16:21:10 Transaction Type : REQUEST +16:21:10 Received From : +16:21:10 ============================================================================ +16:21:10 FNo. Len. Field Value +16:21:10 ============================================================================ +16:21:10 [ 1] [ 4] [0200] +16:21:10 [ 2] [ 16] [6213545000960868] +16:21:10 [ 3] [ 6] [010000] +16:21:10 [ 4] [ 12] [000010000000] +16:21:10 [ 7] [ 10] [0320092014] +16:21:10 [ 11] [ 6] [270361] +16:21:10 [ 12] [ 6] [162014] +16:21:10 [ 13] [ 4] [0320] +16:21:10 [ 14] [ 4] [4912] +16:21:10 [ 15] [ 4] [0320] +16:21:10 [ 18] [ 4] [6011] +16:21:10 [ 19] [ 3] [418] +16:21:10 [ 22] [ 3] [021] +16:21:10 [ 25] [ 2] [01] +16:21:10 [ 28] [ 9] [D00002000] +16:21:10 [ 32] [ 6] [180893] +16:21:10 [ 35] [ 32] [6213545000960868=491212016086962] +16:21:10 [ 37] [ 12] [507909270361] +16:21:10 [ 41] [ 8] [0301LPBX] +16:21:10 [ 42] [ 15] [999999 ] +16:21:10 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:21:10 [ 49] [ 3] [418] +16:21:10 [ 52] [ 16] [D124784D70684BBC] +16:21:10 ============================================================================ +16:21:10 + + +waiting on router queue for slot.... +16:21:10 Sending to : <0> +16:21:10 ============================================================================ +16:21:10 ============================================================================ +16:21:10 Slot Id : <324> +16:21:10 Transaction Type : RESPONSE +16:21:10 Received From : +16:21:10 ============================================================================ +16:21:10 FNo. Len. Field Value +16:21:10 ============================================================================ +16:21:10 [ 1] [ 4] [0210] +16:21:10 [ 2] [ 16] [6688990103264808] +16:21:10 [ 3] [ 6] [010000] +16:21:10 [ 4] [ 12] [000030000000] +16:21:10 [ 11] [ 6] [797196] +16:21:10 [ 12] [ 6] [162104] +16:21:10 [ 15] [ 4] [0320] +16:21:10 [ 18] [ 4] [6011] +16:21:10 [ 32] [ 6] [621354] +16:21:10 [ 35] [ 37] [6688990103264808=42121231480849400000] +16:21:10 [ 37] [ 12] [507903499584] +16:21:10 [ 38] [ 6] [415714] +16:21:10 [ 39] [ 2] [00] +16:21:10 [ 41] [ 8] [06002200] +16:21:10 [ 49] [ 3] [418] +16:21:10 [ 54] [ 20] [0002418C000341826523] +16:21:10 ============================================================================ +16:21:10 Sending to : +16:21:10 ============================================================================ +16:21:10 + + +waiting on router queue for slot.... +16:21:10 ============================================================================ +16:21:10 Slot Id : <382> +16:21:10 Transaction Type : RESPONSE +16:21:10 Received From : +16:21:10 ============================================================================ +16:21:10 FNo. Len. Field Value +16:21:10 ============================================================================ +16:21:10 [ 1] [ 4] [0210] +16:21:10 [ 2] [ 16] [6213545000960868] +16:21:10 [ 3] [ 6] [010000] +16:21:10 [ 4] [ 12] [000010000000] +16:21:10 [ 7] [ 10] [0320092014] +16:21:10 [ 11] [ 6] [270361] +16:21:10 [ 12] [ 6] [162014] +16:21:10 [ 13] [ 4] [0320] +16:21:10 [ 15] [ 4] [0320] +16:21:10 [ 18] [ 4] [6011] +16:21:10 [ 19] [ 3] [418] +16:21:10 [ 32] [ 6] [180893] +16:21:10 [ 35] [ 32] [6213545000960868=491212016086962] +16:21:10 [ 37] [ 12] [507909270361] +16:21:10 [ 38] [ 6] [270361] +16:21:10 [ 39] [ 2] [51] +16:21:10 [ 41] [ 8] [0301LPBX] +16:21:10 [ 49] [ 3] [418] +16:21:10 [ 54] [ 40] [0001418C0000106308210002418C000010630821] +16:21:10 ============================================================================ +16:21:10 Sending to : +16:21:10 ============================================================================ +16:21:10 + + +waiting on router queue for slot.... +16:21:11 ============================================================================ +16:21:11 Slot Id : <324> +16:21:11 Transaction Type : RESPONSE +16:21:11 Received From : +16:21:11 ============================================================================ +16:21:11 FNo. Len. Field Value +16:21:11 ============================================================================ +16:21:11 [ 1] [ 4] [0210] +16:21:11 [ 2] [ 16] [6688990103264808] +16:21:11 [ 3] [ 6] [010000] +16:21:11 [ 4] [ 12] [000030000000] +16:21:11 [ 11] [ 6] [797196] +16:21:11 [ 12] [ 6] [162104] +16:21:11 [ 15] [ 4] [0320] +16:21:11 [ 18] [ 4] [6011] +16:21:11 [ 32] [ 6] [621354] +16:21:11 [ 35] [ 37] [6688990103264808=42121231480849400000] +16:21:11 [ 37] [ 12] [507903499584] +16:21:11 [ 38] [ 6] [415714] +16:21:11 [ 39] [ 2] [00] +16:21:11 [ 41] [ 8] [06002200] +16:21:11 [ 49] [ 3] [418] +16:21:11 [ 54] [ 20] [0002418C000341826523] +16:21:11 ============================================================================ +16:21:11 Calculate Source COMM Id = 0 +16:21:11 ============================================================================ +16:21:11 + + +waiting on router queue for slot.... +16:21:13 ============================================================================ +16:21:13 Slot Id : <382> +16:21:13 Transaction Type : RESPONSE +16:21:13 Received From : +16:21:13 ============================================================================ +16:21:13 FNo. Len. Field Value +16:21:13 ============================================================================ +16:21:13 [ 1] [ 4] [0210] +16:21:13 [ 2] [ 16] [6213545000960868] +16:21:13 [ 3] [ 6] [010000] +16:21:13 [ 4] [ 12] [000010000000] +16:21:13 [ 7] [ 10] [0320092014] +16:21:13 [ 11] [ 6] [270361] +16:21:13 [ 12] [ 6] [162014] +16:21:13 [ 13] [ 4] [0320] +16:21:13 [ 15] [ 4] [0320] +16:21:13 [ 18] [ 4] [6011] +16:21:13 [ 19] [ 3] [418] +16:21:13 [ 32] [ 6] [180893] +16:21:13 [ 35] [ 32] [6213545000960868=491212016086962] +16:21:13 [ 37] [ 12] [507909270361] +16:21:13 [ 38] [ 6] [270361] +16:21:13 [ 39] [ 2] [51] +16:21:13 [ 41] [ 8] [0301LPBX] +16:21:13 [ 49] [ 3] [418] +16:21:13 [ 54] [ 40] [0001418C0000106308210002418C000010630821] +16:21:13 ============================================================================ +16:21:13 Calculate Source COMM Id = 2 +16:21:13 ============================================================================ +16:21:13 + + +waiting on router queue for slot.... +16:21:15 ============================================================================ +16:21:15 Slot Id : <355> +16:21:15 Transaction Type : REQUEST +16:21:15 Received From : +16:21:15 ============================================================================ +16:21:15 FNo. Len. Field Value +16:21:15 ============================================================================ +16:21:15 [ 1] [ 4] [0200] +16:21:15 [ 2] [ 16] [6213543000129857] +16:21:15 [ 3] [ 6] [300000] +16:21:15 [ 4] [ 12] [000000000000] +16:21:15 [ 7] [ 10] [0320161905] +16:21:15 [ 11] [ 6] [951526] +16:21:15 [ 12] [ 6] [161905] +16:21:15 [ 13] [ 4] [0320] +16:21:15 [ 15] [ 4] [0320] +16:21:15 [ 18] [ 4] [6011] +16:21:15 [ 19] [ 3] [418] +16:21:15 [ 22] [ 3] [021] +16:21:15 [ 25] [ 2] [01] +16:21:15 [ 28] [ 9] [D00000000] +16:21:15 [ 32] [ 6] [668899] +16:21:15 [ 35] [ 32] [6213543000129857=491212012985957] +16:21:15 [ 37] [ 12] [507900285837] +16:21:15 [ 41] [ 8] [03010005] +16:21:15 [ 42] [ 15] [APT ] +16:21:15 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +16:21:15 [ 49] [ 3] [418] +16:21:15 [ 52] [ 16] [5712E274F84922CA] +16:21:15 ============================================================================ +16:21:15 + + +waiting on router queue for slot.... +16:21:15 Sending to : +16:21:15 ============================================================================ +16:21:15 Sending to : +16:21:15 ============================================================================ +16:21:16 ============================================================================ +16:21:16 Slot Id : <355> +16:21:16 Transaction Type : REQUEST +16:21:16 Received From : +16:21:16 ============================================================================ +16:21:16 FNo. Len. Field Value +16:21:16 ============================================================================ +16:21:16 [ 1] [ 4] [0200] +16:21:16 [ 2] [ 16] [6213543000129857] +16:21:16 [ 3] [ 6] [300000] +16:21:16 [ 4] [ 12] [000000000000] +16:21:16 [ 7] [ 10] [0320161905] +16:21:16 [ 11] [ 6] [951526] +16:21:16 [ 12] [ 6] [161905] +16:21:16 [ 13] [ 4] [0320] +16:21:16 [ 15] [ 4] [0320] +16:21:16 [ 18] [ 4] [6011] +16:21:16 [ 19] [ 3] [418] +16:21:16 [ 22] [ 3] [021] +16:21:16 [ 25] [ 2] [01] +16:21:16 [ 28] [ 9] [D00000000] +16:21:16 [ 32] [ 6] [668899] +16:21:16 [ 35] [ 32] [6213543000129857=491212012985957] +16:21:16 [ 37] [ 12] [507900285837] +16:21:16 [ 41] [ 8] [03010005] +16:21:16 [ 42] [ 15] [APT ] +16:21:16 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +16:21:16 [ 49] [ 3] [418] +16:21:16 [ 52] [ 16] [5712E274F84922CA] +16:21:16 ============================================================================ +16:21:16 + + +waiting on router queue for slot.... +16:21:16 Sending to : +16:21:16 ============================================================================ +16:21:16 ============================================================================ +16:21:16 Slot Id : <355> +16:21:16 Transaction Type : REQUEST +16:21:16 Received From : +16:21:16 ============================================================================ +16:21:16 FNo. Len. Field Value +16:21:16 ============================================================================ +16:21:16 [ 1] [ 4] [0200] +16:21:16 [ 2] [ 16] [6213543000129857] +16:21:16 [ 3] [ 6] [300000] +16:21:16 [ 4] [ 12] [000000000000] +16:21:16 [ 7] [ 10] [0320161905] +16:21:16 [ 11] [ 6] [951526] +16:21:16 [ 12] [ 6] [161905] +16:21:16 [ 13] [ 4] [0320] +16:21:16 [ 15] [ 4] [0320] +16:21:16 [ 18] [ 4] [6011] +16:21:16 [ 19] [ 3] [418] +16:21:16 [ 22] [ 3] [021] +16:21:16 [ 25] [ 2] [01] +16:21:16 [ 28] [ 9] [D00000000] +16:21:16 [ 32] [ 6] [668899] +16:21:16 [ 35] [ 32] [6213543000129857=491212012985957] +16:21:16 [ 37] [ 12] [507900285837] +16:21:16 [ 41] [ 8] [03010005] +16:21:16 [ 42] [ 15] [APT ] +16:21:16 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +16:21:16 [ 49] [ 3] [418] +16:21:16 [ 52] [ 16] [D9404B9A455FB89F] +16:21:16 ============================================================================ +16:21:16 + + +waiting on router queue for slot.... +16:21:16 Sending to : <0> +16:21:16 ============================================================================ +16:21:16 ============================================================================ +16:21:16 Slot Id : <355> +16:21:16 Transaction Type : RESPONSE +16:21:16 Received From : +16:21:16 ============================================================================ +16:21:16 FNo. Len. Field Value +16:21:16 ============================================================================ +16:21:16 [ 1] [ 4] [0210] +16:21:16 [ 2] [ 16] [6213543000129857] +16:21:16 [ 3] [ 6] [300000] +16:21:16 [ 4] [ 12] [000000000000] +16:21:16 [ 7] [ 10] [0320161905] +16:21:16 [ 11] [ 6] [951526] +16:21:16 [ 12] [ 6] [161905] +16:21:16 [ 13] [ 4] [0320] +16:21:16 [ 15] [ 4] [0320] +16:21:16 [ 18] [ 4] [6011] +16:21:16 [ 19] [ 3] [418] +16:21:16 [ 32] [ 6] [668899] +16:21:16 [ 35] [ 32] [6213543000129857=491212012985957] +16:21:16 [ 37] [ 12] [507900285837] +16:21:16 [ 38] [ 6] [330428] +16:21:16 [ 39] [ 2] [00] +16:21:16 [ 41] [ 8] [03010005] +16:21:16 [ 49] [ 3] [418] +16:21:16 [ 54] [ 40] [0001418C0000550851830002418C000055085183] +16:21:16 ============================================================================ +16:21:16 Sending to : +16:21:16 ============================================================================ +16:21:16 + + +waiting on router queue for slot.... +16:21:17 ============================================================================ +16:21:17 Slot Id : <363> +16:21:17 Transaction Type : REQUEST +16:21:17 Received From : +16:21:17 ============================================================================ +16:21:17 FNo. Len. Field Value +16:21:17 ============================================================================ +16:21:17 [ 1] [ 4] [0800] +16:21:17 [ 2] [ 5] [02531] +16:21:17 [ 3] [ 6] [579168] +16:21:17 [ 7] [ 10] [0320092117] +16:21:17 [ 11] [ 6] [807361] +16:21:17 [ 15] [ 10] [0320092117] +16:21:17 [ 37] [ 11] [57916807361] +16:21:17 [ 70] [ 3] [001] +16:21:17 ============================================================================ +16:21:17 + + +waiting on router queue for slot.... +16:21:17 ============================================================================ +16:21:17 Slot Id : <363> +16:21:17 Transaction Type : RESPONSE +16:21:17 Received From : +16:21:17 ============================================================================ +16:21:17 FNo. Len. Field Value +16:21:17 ============================================================================ +16:21:17 [ 1] [ 4] [0810] +16:21:17 [ 7] [ 10] [0320092117] +16:21:17 [ 11] [ 6] [807361] +16:21:17 [ 15] [ 4] [0320] +16:21:17 [ 37] [ 12] [57916807361] +16:21:17 [ 39] [ 2] [00] +16:21:17 [ 70] [ 3] [001] +16:21:17 ============================================================================ +16:21:17 Sending to : +16:21:17 ============================================================================ +16:21:17 + + +waiting on router queue for slot.... +16:21:18 ============================================================================ +16:21:18 Slot Id : <355> +16:21:18 Transaction Type : RESPONSE +16:21:18 Received From : +16:21:18 ============================================================================ +16:21:18 FNo. Len. Field Value +16:21:18 ============================================================================ +16:21:18 [ 1] [ 4] [0210] +16:21:18 [ 2] [ 16] [6213543000129857] +16:21:18 [ 3] [ 6] [300000] +16:21:18 [ 4] [ 12] [000000000000] +16:21:18 [ 7] [ 10] [0320161905] +16:21:18 [ 11] [ 6] [951526] +16:21:18 [ 12] [ 6] [161905] +16:21:18 [ 13] [ 4] [0320] +16:21:18 [ 15] [ 4] [0320] +16:21:18 [ 18] [ 4] [6011] +16:21:18 [ 19] [ 3] [418] +16:21:18 [ 32] [ 6] [668899] +16:21:18 [ 35] [ 32] [6213543000129857=491212012985957] +16:21:18 [ 37] [ 12] [507900285837] +16:21:18 [ 38] [ 6] [330428] +16:21:18 [ 39] [ 2] [00] +16:21:18 [ 41] [ 8] [03010005] +16:21:18 [ 49] [ 3] [418] +16:21:18 [ 54] [ 40] [0001418C0000550851830002418C000055085183] +16:21:18 ============================================================================ +16:21:18 Calculate Source COMM Id = 4 +16:21:18 ============================================================================ +16:21:18 + + +waiting on router queue for slot.... +16:21:22 ============================================================================ +16:21:22 Slot Id : <344> +16:21:22 Transaction Type : REQUEST +16:21:22 Received From : +16:21:22 ============================================================================ +16:21:22 FNo. Len. Field Value +16:21:22 ============================================================================ +16:21:22 [ 1] [ 4] [0800] +16:21:22 [ 7] [ 10] [0320091912] +16:21:22 [ 11] [ 6] [016970] +16:21:22 [ 37] [ 12] [57916016970] +16:21:22 [ 70] [ 3] [301] +16:21:22 ============================================================================ +16:21:22 + + +waiting on router queue for slot.... +16:21:22 Sending to : +16:21:22 ============================================================================ +16:21:22 ============================================================================ +16:21:22 Slot Id : <344> +16:21:22 Transaction Type : RESPONSE +16:21:22 Received From : +16:21:22 ============================================================================ +16:21:22 FNo. Len. Field Value +16:21:22 ============================================================================ +16:21:22 [ 1] [ 4] [0810] +16:21:22 [ 7] [ 10] [0320091912] +16:21:22 [ 11] [ 6] [016970] +16:21:22 [ 37] [ 12] [579160169700] +16:21:22 [ 39] [ 2] [00] +16:21:22 [ 70] [ 3] [810] +16:21:22 ============================================================================ +16:21:22 Calculate Source COMM Id = 4 +16:21:22 ============================================================================ +16:21:22 + + +waiting on router queue for slot.... +16:21:24 ============================================================================ +16:21:24 Slot Id : <370> +16:21:24 Transaction Type : REQUEST +16:21:24 Received From : +16:21:24 ============================================================================ +16:21:24 FNo. Len. Field Value +16:21:24 ============================================================================ +16:21:24 [ 1] [ 4] [0800] +16:21:24 [ 7] [ 10] [0320233312] +16:21:24 [ 11] [ 6] [163312] +16:21:24 [ 37] [ 12] [57916163312] +16:21:24 [ 70] [ 3] [301] +16:21:24 ============================================================================ +16:21:24 + + +waiting on router queue for slot.... +16:21:24 Sending to : +16:21:24 ============================================================================ +16:21:24 ============================================================================ +16:21:24 Slot Id : <370> +16:21:24 Transaction Type : RESPONSE +16:21:24 Received From : +16:21:24 ============================================================================ +16:21:24 FNo. Len. Field Value +16:21:24 ============================================================================ +16:21:24 [ 1] [ 4] [0810] +16:21:24 [ 7] [ 10] [0320233312] +16:21:24 [ 11] [ 6] [163312] +16:21:24 [ 37] [ 12] [579161633120] +16:21:24 [ 39] [ 2] [00] +16:21:24 [ 70] [ 3] [810] +16:21:24 ============================================================================ +16:21:24 Calculate Source COMM Id = 6 +16:21:24 ============================================================================ +16:21:24 + + +waiting on router queue for slot.... +16:21:28 ============================================================================ +16:21:28 Slot Id : <358> +16:21:28 Transaction Type : REQUEST +16:21:28 Received From : +16:21:28 ============================================================================ +16:21:28 FNo. Len. Field Value +16:21:28 ============================================================================ +16:21:28 [ 1] [ 4] [0800] +16:21:28 [ 7] [ 10] [0320092035] +16:21:28 [ 11] [ 6] [157219] +16:21:28 [ 70] [ 3] [301] +16:21:28 ============================================================================ +16:21:28 + + +waiting on router queue for slot.... +16:21:28 Sending to : +16:21:28 ============================================================================ +16:21:28 ============================================================================ +16:21:28 Slot Id : <358> +16:21:28 Transaction Type : RESPONSE +16:21:28 Received From : +16:21:28 ============================================================================ +16:21:28 FNo. Len. Field Value +16:21:28 ============================================================================ +16:21:28 [ 1] [ 4] [0810] +16:21:28 [ 7] [ 10] [0320092035] +16:21:28 [ 11] [ 6] [157219] +16:21:28 [ 39] [ 2] [00] +16:21:28 [ 70] [ 3] [301] +16:21:28 ============================================================================ +16:21:28 Calculate Source COMM Id = 2 +16:21:28 ============================================================================ +16:21:28 + + +waiting on router queue for slot.... +16:21:43 ============================================================================ +16:21:43 Slot Id : <379> +16:21:43 Transaction Type : REQUEST +16:21:43 Received From : +16:21:43 ============================================================================ +16:21:43 FNo. Len. Field Value +16:21:43 ============================================================================ +16:21:43 [ 1] [ 4] [0800] +16:21:43 [ 7] [ 10] [0320092050] +16:21:43 [ 11] [ 6] [157220] +16:21:43 [ 70] [ 3] [301] +16:21:43 ============================================================================ +16:21:43 + + +waiting on router queue for slot.... +16:21:43 Sending to : +16:21:43 ============================================================================ +16:21:43 ============================================================================ +16:21:43 Slot Id : <379> +16:21:43 Transaction Type : RESPONSE +16:21:43 Received From : +16:21:43 ============================================================================ +16:21:43 FNo. Len. Field Value +16:21:43 ============================================================================ +16:21:43 [ 1] [ 4] [0810] +16:21:43 [ 7] [ 10] [0320092050] +16:21:43 [ 11] [ 6] [157220] +16:21:43 [ 39] [ 2] [00] +16:21:43 [ 70] [ 3] [301] +16:21:43 ============================================================================ +16:21:43 Calculate Source COMM Id = 2 +16:21:43 ============================================================================ +16:21:43 + + +waiting on router queue for slot.... +16:21:45 ============================================================================ +16:21:45 Slot Id : <369> +16:21:45 Transaction Type : REQUEST +16:21:45 Received From : +16:21:45 ============================================================================ +16:21:45 FNo. Len. Field Value +16:21:45 ============================================================================ +16:21:45 [ 1] [ 4] [0200] +16:21:45 [ 2] [ 16] [6688990108430107] +16:21:45 [ 3] [ 6] [301000] +16:21:45 [ 4] [ 12] [000000000000] +16:21:45 [ 7] [ 10] [0320162140] +16:21:45 [ 11] [ 6] [797388] +16:21:45 [ 12] [ 6] [162140] +16:21:45 [ 13] [ 4] [0320] +16:21:45 [ 15] [ 4] [0320] +16:21:45 [ 18] [ 4] [6011] +16:21:45 [ 22] [ 3] [900] +16:21:45 [ 25] [ 2] [02] +16:21:45 [ 28] [ 9] [D00000000] +16:21:45 [ 32] [ 6] [621354] +16:21:45 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:21:45 [ 37] [ 12] [507903743391] +16:21:45 [ 41] [ 8] [06002400] +16:21:45 [ 42] [ 15] [NATIVE ] +16:21:45 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:21:45 [ 49] [ 3] [418] +16:21:45 [ 52] [ 16] [FBFD2F498C27BE7C] +16:21:45 ============================================================================ +16:21:45 + + +waiting on router queue for slot.... +16:21:45 Sending to : +16:21:45 ============================================================================ +16:21:45 Sending to : +16:21:45 ============================================================================ +16:21:45 ============================================================================ +16:21:45 Slot Id : <369> +16:21:45 Transaction Type : REQUEST +16:21:45 Received From : +16:21:45 ============================================================================ +16:21:45 FNo. Len. Field Value +16:21:45 ============================================================================ +16:21:45 [ 1] [ 4] [0200] +16:21:45 [ 2] [ 16] [6688990108430107] +16:21:45 [ 3] [ 6] [301000] +16:21:45 [ 4] [ 12] [000000000000] +16:21:45 [ 7] [ 10] [0320162140] +16:21:45 [ 11] [ 6] [797388] +16:21:45 [ 12] [ 6] [162140] +16:21:45 [ 13] [ 4] [0320] +16:21:45 [ 15] [ 4] [0320] +16:21:45 [ 18] [ 4] [6011] +16:21:45 [ 22] [ 3] [900] +16:21:45 [ 25] [ 2] [02] +16:21:45 [ 28] [ 9] [D00000000] +16:21:45 [ 32] [ 6] [621354] +16:21:45 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:21:45 [ 37] [ 12] [507903743391] +16:21:45 [ 41] [ 8] [06002400] +16:21:45 [ 42] [ 15] [NATIVE ] +16:21:45 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:21:45 [ 49] [ 3] [418] +16:21:45 [ 52] [ 16] [FBFD2F498C27BE7C] +16:21:45 ============================================================================ +16:21:45 + + +waiting on router queue for slot.... +16:21:45 Sending to : +16:21:45 ============================================================================ +16:21:45 ============================================================================ +16:21:45 Slot Id : <369> +16:21:45 Transaction Type : REQUEST +16:21:45 Received From : +16:21:45 ============================================================================ +16:21:45 FNo. Len. Field Value +16:21:45 ============================================================================ +16:21:45 [ 1] [ 4] [0200] +16:21:45 [ 2] [ 16] [6688990108430107] +16:21:45 [ 3] [ 6] [301000] +16:21:45 [ 4] [ 12] [000000000000] +16:21:45 [ 7] [ 10] [0320162140] +16:21:45 [ 11] [ 6] [797388] +16:21:45 [ 12] [ 6] [162140] +16:21:45 [ 13] [ 4] [0320] +16:21:45 [ 15] [ 4] [0320] +16:21:45 [ 18] [ 4] [6011] +16:21:45 [ 22] [ 3] [900] +16:21:45 [ 25] [ 2] [02] +16:21:45 [ 28] [ 9] [D00000000] +16:21:45 [ 32] [ 6] [621354] +16:21:45 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:21:45 [ 37] [ 12] [507903743391] +16:21:45 [ 41] [ 8] [06002400] +16:21:45 [ 42] [ 15] [NATIVE ] +16:21:45 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:21:45 [ 49] [ 3] [418] +16:21:45 [ 52] [ 16] [4168FB5C1D2D30C0] +16:21:45 ============================================================================ +16:21:45 + + +waiting on router queue for slot.... +16:21:45 Sending to : <4> +16:21:45 ============================================================================ +16:21:46 ============================================================================ +16:21:46 Slot Id : <369> +16:21:46 Transaction Type : RESPONSE +16:21:46 Received From : +16:21:46 ============================================================================ +16:21:46 FNo. Len. Field Value +16:21:46 ============================================================================ +16:21:46 [ 1] [ 4] [0210] +16:21:46 [ 2] [ 16] [6688990108430107] +16:21:46 [ 3] [ 6] [301000] +16:21:46 [ 4] [ 12] [000000000000] +16:21:46 [ 11] [ 6] [797388] +16:21:46 [ 12] [ 6] [162140] +16:21:46 [ 15] [ 4] [0320] +16:21:46 [ 18] [ 4] [6011] +16:21:46 [ 32] [ 6] [621354] +16:21:46 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:21:46 [ 37] [ 12] [507903743391] +16:21:46 [ 38] [ 6] [768538] +16:21:46 [ 39] [ 2] [00] +16:21:46 [ 41] [ 8] [06002400] +16:21:46 [ 49] [ 3] [418] +16:21:46 [ 54] [ 20] [1002418C000293761979] +16:21:46 ============================================================================ +16:21:46 Sending to : +16:21:46 ============================================================================ +16:21:46 + + +waiting on router queue for slot.... +16:21:48 ============================================================================ +16:21:48 Slot Id : <369> +16:21:48 Transaction Type : RESPONSE +16:21:48 Received From : +16:21:48 ============================================================================ +16:21:48 FNo. Len. Field Value +16:21:48 ============================================================================ +16:21:48 [ 1] [ 4] [0210] +16:21:48 [ 2] [ 16] [6688990108430107] +16:21:48 [ 3] [ 6] [301000] +16:21:48 [ 4] [ 12] [000000000000] +16:21:48 [ 11] [ 6] [797388] +16:21:48 [ 12] [ 6] [162140] +16:21:48 [ 15] [ 4] [0320] +16:21:48 [ 18] [ 4] [6011] +16:21:48 [ 32] [ 6] [621354] +16:21:48 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:21:48 [ 37] [ 12] [507903743391] +16:21:48 [ 38] [ 6] [768538] +16:21:48 [ 39] [ 2] [00] +16:21:48 [ 41] [ 8] [06002400] +16:21:48 [ 49] [ 3] [418] +16:21:48 [ 54] [ 20] [1002418C000293761979] +16:21:48 ============================================================================ +16:21:48 Calculate Source COMM Id = 0 +16:21:48 ============================================================================ +16:21:48 + + +waiting on router queue for slot.... +16:21:49 ============================================================================ +16:21:49 Slot Id : <360> +16:21:49 Transaction Type : REQUEST +16:21:49 Received From : +16:21:49 ============================================================================ +16:21:49 FNo. Len. Field Value +16:21:49 ============================================================================ +16:21:49 [ 1] [ 4] [0200] +16:21:49 [ 2] [ 16] [6213543000129857] +16:21:49 [ 3] [ 6] [010000] +16:21:49 [ 4] [ 12] [000030000000] +16:21:49 [ 7] [ 10] [0320161939] +16:21:49 [ 11] [ 6] [951540] +16:21:49 [ 12] [ 6] [161939] +16:21:49 [ 13] [ 4] [0320] +16:21:49 [ 15] [ 4] [0320] +16:21:49 [ 18] [ 4] [6011] +16:21:49 [ 19] [ 3] [418] +16:21:49 [ 22] [ 3] [021] +16:21:49 [ 25] [ 2] [01] +16:21:49 [ 28] [ 9] [D00002000] +16:21:49 [ 32] [ 6] [668899] +16:21:49 [ 35] [ 32] [6213543000129857=491212012985957] +16:21:49 [ 37] [ 12] [507900285838] +16:21:49 [ 41] [ 8] [03010005] +16:21:49 [ 42] [ 15] [APT ] +16:21:49 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +16:21:49 [ 49] [ 3] [418] +16:21:49 [ 52] [ 16] [5712E274F84922CA] +16:21:49 ============================================================================ +16:21:49 + + +waiting on router queue for slot.... +16:21:49 Sending to : +16:21:49 ============================================================================ +16:21:49 Sending to : +16:21:49 ============================================================================ +16:21:49 ============================================================================ +16:21:49 Slot Id : <360> +16:21:49 Transaction Type : REQUEST +16:21:49 Received From : +16:21:49 ============================================================================ +16:21:49 FNo. Len. Field Value +16:21:49 ============================================================================ +16:21:49 [ 1] [ 4] [0200] +16:21:49 [ 2] [ 16] [6213543000129857] +16:21:49 [ 3] [ 6] [010000] +16:21:49 [ 4] [ 12] [000030000000] +16:21:49 [ 7] [ 10] [0320161939] +16:21:49 [ 11] [ 6] [951540] +16:21:49 [ 12] [ 6] [161939] +16:21:49 [ 13] [ 4] [0320] +16:21:49 [ 15] [ 4] [0320] +16:21:49 [ 18] [ 4] [6011] +16:21:49 [ 19] [ 3] [418] +16:21:49 [ 22] [ 3] [021] +16:21:49 [ 25] [ 2] [01] +16:21:49 [ 28] [ 9] [D00002000] +16:21:49 [ 32] [ 6] [668899] +16:21:49 [ 35] [ 32] [6213543000129857=491212012985957] +16:21:49 [ 37] [ 12] [507900285838] +16:21:49 [ 41] [ 8] [03010005] +16:21:49 [ 42] [ 15] [APT ] +16:21:49 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +16:21:49 [ 49] [ 3] [418] +16:21:49 [ 52] [ 16] [5712E274F84922CA] +16:21:49 ============================================================================ +16:21:49 + + +waiting on router queue for slot.... +16:21:49 Sending to : +16:21:49 ============================================================================ +16:21:49 ============================================================================ +16:21:49 Slot Id : <360> +16:21:49 Transaction Type : REQUEST +16:21:49 Received From : +16:21:49 ============================================================================ +16:21:49 FNo. Len. Field Value +16:21:49 ============================================================================ +16:21:49 [ 1] [ 4] [0200] +16:21:49 [ 2] [ 16] [6213543000129857] +16:21:49 [ 3] [ 6] [010000] +16:21:49 [ 4] [ 12] [000030000000] +16:21:49 [ 7] [ 10] [0320161939] +16:21:49 [ 11] [ 6] [951540] +16:21:49 [ 12] [ 6] [161939] +16:21:49 [ 13] [ 4] [0320] +16:21:49 [ 15] [ 4] [0320] +16:21:49 [ 18] [ 4] [6011] +16:21:49 [ 19] [ 3] [418] +16:21:49 [ 22] [ 3] [021] +16:21:49 [ 25] [ 2] [01] +16:21:49 [ 28] [ 9] [D00002000] +16:21:49 [ 32] [ 6] [668899] +16:21:49 [ 35] [ 32] [6213543000129857=491212012985957] +16:21:49 [ 37] [ 12] [507900285838] +16:21:49 [ 41] [ 8] [03010005] +16:21:49 [ 42] [ 15] [APT ] +16:21:49 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +16:21:49 [ 49] [ 3] [418] +16:21:49 [ 52] [ 16] [D9404B9A455FB89F] +16:21:49 ============================================================================ +16:21:49 + + +waiting on router queue for slot.... +16:21:49 Sending to : <0> +16:21:49 ============================================================================ +16:21:50 ============================================================================ +16:21:50 Slot Id : <360> +16:21:50 Transaction Type : RESPONSE +16:21:50 Received From : +16:21:50 ============================================================================ +16:21:50 FNo. Len. Field Value +16:21:50 ============================================================================ +16:21:50 [ 1] [ 4] [0210] +16:21:50 [ 2] [ 16] [6213543000129857] +16:21:50 [ 3] [ 6] [010000] +16:21:50 [ 4] [ 12] [000030000000] +16:21:50 [ 7] [ 10] [0320161939] +16:21:50 [ 11] [ 6] [951540] +16:21:50 [ 12] [ 6] [161939] +16:21:50 [ 13] [ 4] [0320] +16:21:50 [ 15] [ 4] [0320] +16:21:50 [ 18] [ 4] [6011] +16:21:50 [ 19] [ 3] [418] +16:21:50 [ 32] [ 6] [668899] +16:21:50 [ 35] [ 32] [6213543000129857=491212012985957] +16:21:50 [ 37] [ 12] [507900285838] +16:21:50 [ 38] [ 6] [814226] +16:21:50 [ 39] [ 2] [00] +16:21:50 [ 41] [ 8] [03010005] +16:21:50 [ 49] [ 3] [418] +16:21:50 [ 54] [ 40] [0001418C0000248851830002418C000024885183] +16:21:50 ============================================================================ +16:21:50 Sending to : +16:21:50 ============================================================================ +16:21:50 + + +waiting on router queue for slot.... +16:21:51 ============================================================================ +16:21:51 Slot Id : <360> +16:21:51 Transaction Type : RESPONSE +16:21:51 Received From : +16:21:51 ============================================================================ +16:21:51 FNo. Len. Field Value +16:21:51 ============================================================================ +16:21:51 [ 1] [ 4] [0210] +16:21:51 [ 2] [ 16] [6213543000129857] +16:21:51 [ 3] [ 6] [010000] +16:21:51 [ 4] [ 12] [000030000000] +16:21:51 [ 7] [ 10] [0320161939] +16:21:51 [ 11] [ 6] [951540] +16:21:51 [ 12] [ 6] [161939] +16:21:51 [ 13] [ 4] [0320] +16:21:51 [ 15] [ 4] [0320] +16:21:51 [ 18] [ 4] [6011] +16:21:51 [ 19] [ 3] [418] +16:21:51 [ 32] [ 6] [668899] +16:21:51 [ 35] [ 32] [6213543000129857=491212012985957] +16:21:51 [ 37] [ 12] [507900285838] +16:21:51 [ 38] [ 6] [814226] +16:21:51 [ 39] [ 2] [00] +16:21:51 [ 41] [ 8] [03010005] +16:21:51 [ 49] [ 3] [418] +16:21:51 [ 54] [ 40] [0001418C0000248851830002418C000024885183] +16:21:51 ============================================================================ +16:21:51 Calculate Source COMM Id = 4 +16:21:51 ============================================================================ +16:21:51 + + +waiting on router queue for slot.... +16:21:58 ============================================================================ +16:21:58 Slot Id : <338> +16:21:58 Transaction Type : REQUEST +16:21:58 Received From : +16:21:58 ============================================================================ +16:21:58 FNo. Len. Field Value +16:21:58 ============================================================================ +16:21:58 [ 1] [ 4] [0800] +16:21:58 [ 7] [ 10] [0320092105] +16:21:58 [ 11] [ 6] [157221] +16:21:58 [ 70] [ 3] [301] +16:21:58 ============================================================================ +16:21:58 + + +waiting on router queue for slot.... +16:21:58 Sending to : +16:21:58 ============================================================================ +16:21:58 ============================================================================ +16:21:58 Slot Id : <338> +16:21:58 Transaction Type : RESPONSE +16:21:58 Received From : +16:21:58 ============================================================================ +16:21:58 FNo. Len. Field Value +16:21:58 ============================================================================ +16:21:58 [ 1] [ 4] [0810] +16:21:58 [ 7] [ 10] [0320092105] +16:21:58 [ 11] [ 6] [157221] +16:21:58 [ 39] [ 2] [00] +16:21:58 [ 70] [ 3] [301] +16:21:58 ============================================================================ +16:21:58 Calculate Source COMM Id = 2 +16:21:58 ============================================================================ +16:21:58 + + +waiting on router queue for slot.... +16:21:58 ============================================================================ +16:21:58 Slot Id : <354> +16:21:58 Transaction Type : REQUEST +16:21:58 Received From : +16:21:58 ============================================================================ +16:21:58 FNo. Len. Field Value +16:21:58 ============================================================================ +16:21:58 [ 1] [ 4] [0200] +16:21:58 [ 2] [ 16] [6213545000292940] +16:21:58 [ 3] [ 6] [010000] +16:21:58 [ 4] [ 12] [000010000000] +16:21:58 [ 7] [ 10] [0320092105] +16:21:58 [ 11] [ 6] [270368] +16:21:58 [ 12] [ 6] [162105] +16:21:58 [ 13] [ 4] [0320] +16:21:58 [ 14] [ 4] [4912] +16:21:58 [ 15] [ 4] [0320] +16:21:58 [ 18] [ 4] [6011] +16:21:58 [ 19] [ 3] [418] +16:21:58 [ 22] [ 3] [021] +16:21:58 [ 25] [ 2] [01] +16:21:58 [ 28] [ 9] [D00002000] +16:21:58 [ 32] [ 6] [180893] +16:21:58 [ 35] [ 32] [6213545000292940=491212019294708] +16:21:58 [ 37] [ 12] [507909270368] +16:21:58 [ 41] [ 8] [0261PSL1] +16:21:58 [ 42] [ 15] [999999 ] +16:21:58 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:21:58 [ 49] [ 3] [418] +16:21:58 [ 52] [ 16] [DB45CC7E4EDECED1] +16:21:58 ============================================================================ +16:21:58 + + +waiting on router queue for slot.... +16:21:58 Sending to : +16:21:58 ============================================================================ +16:21:58 Sending to : +16:21:58 ============================================================================ +16:21:59 ============================================================================ +16:21:59 Slot Id : <354> +16:21:59 Transaction Type : REQUEST +16:21:59 Received From : +16:21:59 ============================================================================ +16:21:59 FNo. Len. Field Value +16:21:59 ============================================================================ +16:21:59 [ 1] [ 4] [0200] +16:21:59 [ 2] [ 16] [6213545000292940] +16:21:59 [ 3] [ 6] [010000] +16:21:59 [ 4] [ 12] [000010000000] +16:21:59 [ 7] [ 10] [0320092105] +16:21:59 [ 11] [ 6] [270368] +16:21:59 [ 12] [ 6] [162105] +16:21:59 [ 13] [ 4] [0320] +16:21:59 [ 14] [ 4] [4912] +16:21:59 [ 15] [ 4] [0320] +16:21:59 [ 18] [ 4] [6011] +16:21:59 [ 19] [ 3] [418] +16:21:59 [ 22] [ 3] [021] +16:21:59 [ 25] [ 2] [01] +16:21:59 [ 28] [ 9] [D00002000] +16:21:59 [ 32] [ 6] [180893] +16:21:59 [ 35] [ 32] [6213545000292940=491212019294708] +16:21:59 [ 37] [ 12] [507909270368] +16:21:59 [ 41] [ 8] [0261PSL1] +16:21:59 [ 42] [ 15] [999999 ] +16:21:59 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:21:59 [ 49] [ 3] [418] +16:21:59 [ 52] [ 16] [DB45CC7E4EDECED1] +16:21:59 ============================================================================ +16:21:59 + + +waiting on router queue for slot.... +16:21:59 Sending to : +16:21:59 ============================================================================ +16:21:59 ============================================================================ +16:21:59 Slot Id : <354> +16:21:59 Transaction Type : REQUEST +16:21:59 Received From : +16:21:59 ============================================================================ +16:21:59 FNo. Len. Field Value +16:21:59 ============================================================================ +16:21:59 [ 1] [ 4] [0200] +16:21:59 [ 2] [ 16] [6213545000292940] +16:21:59 [ 3] [ 6] [010000] +16:21:59 [ 4] [ 12] [000010000000] +16:21:59 [ 7] [ 10] [0320092105] +16:21:59 [ 11] [ 6] [270368] +16:21:59 [ 12] [ 6] [162105] +16:21:59 [ 13] [ 4] [0320] +16:21:59 [ 14] [ 4] [4912] +16:21:59 [ 15] [ 4] [0320] +16:21:59 [ 18] [ 4] [6011] +16:21:59 [ 19] [ 3] [418] +16:21:59 [ 22] [ 3] [021] +16:21:59 [ 25] [ 2] [01] +16:21:59 [ 28] [ 9] [D00002000] +16:21:59 [ 32] [ 6] [180893] +16:21:59 [ 35] [ 32] [6213545000292940=491212019294708] +16:21:59 [ 37] [ 12] [507909270368] +16:21:59 [ 41] [ 8] [0261PSL1] +16:21:59 [ 42] [ 15] [999999 ] +16:21:59 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:21:59 [ 49] [ 3] [418] +16:21:59 [ 52] [ 16] [28F3667C5CCC2347] +16:21:59 ============================================================================ +16:21:59 + + +waiting on router queue for slot.... +16:21:59 Sending to : <0> +16:21:59 ============================================================================ +16:21:59 ============================================================================ +16:21:59 Slot Id : <354> +16:21:59 Transaction Type : RESPONSE +16:21:59 Received From : +16:21:59 ============================================================================ +16:21:59 FNo. Len. Field Value +16:21:59 ============================================================================ +16:21:59 [ 1] [ 4] [0210] +16:21:59 [ 2] [ 16] [6213545000292940] +16:21:59 [ 3] [ 6] [010000] +16:21:59 [ 4] [ 12] [000010000000] +16:21:59 [ 7] [ 10] [0320092105] +16:21:59 [ 11] [ 6] [270368] +16:21:59 [ 12] [ 6] [162105] +16:21:59 [ 13] [ 4] [0320] +16:21:59 [ 15] [ 4] [0320] +16:21:59 [ 18] [ 4] [6011] +16:21:59 [ 19] [ 3] [418] +16:21:59 [ 32] [ 6] [180893] +16:21:59 [ 35] [ 32] [6213545000292940=491212019294708] +16:21:59 [ 37] [ 12] [507909270368] +16:21:59 [ 38] [ 6] [310377] +16:21:59 [ 39] [ 2] [00] +16:21:59 [ 41] [ 8] [0261PSL1] +16:21:59 [ 49] [ 3] [418] +16:21:59 [ 54] [ 40] [0001418C0002312683890002418C000231268389] +16:21:59 ============================================================================ +16:21:59 Sending to : +16:21:59 ============================================================================ +16:21:59 + + +waiting on router queue for slot.... +16:22:01 ============================================================================ +16:22:01 Slot Id : <354> +16:22:01 Transaction Type : RESPONSE +16:22:01 Received From : +16:22:01 ============================================================================ +16:22:01 FNo. Len. Field Value +16:22:01 ============================================================================ +16:22:01 [ 1] [ 4] [0210] +16:22:01 [ 2] [ 16] [6213545000292940] +16:22:01 [ 3] [ 6] [010000] +16:22:01 [ 4] [ 12] [000010000000] +16:22:01 [ 7] [ 10] [0320092105] +16:22:01 [ 11] [ 6] [270368] +16:22:01 [ 12] [ 6] [162105] +16:22:01 [ 13] [ 4] [0320] +16:22:01 [ 15] [ 4] [0320] +16:22:01 [ 18] [ 4] [6011] +16:22:01 [ 19] [ 3] [418] +16:22:01 [ 32] [ 6] [180893] +16:22:01 [ 35] [ 32] [6213545000292940=491212019294708] +16:22:01 [ 37] [ 12] [507909270368] +16:22:01 [ 38] [ 6] [310377] +16:22:01 [ 39] [ 2] [00] +16:22:01 [ 41] [ 8] [0261PSL1] +16:22:01 [ 49] [ 3] [418] +16:22:01 [ 54] [ 40] [0001418C0002312683890002418C000231268389] +16:22:01 ============================================================================ +16:22:01 Calculate Source COMM Id = 2 +16:22:01 ============================================================================ +16:22:01 + + +waiting on router queue for slot.... +16:22:15 ============================================================================ +16:22:15 Slot Id : <396> +16:22:15 Transaction Type : REQUEST +16:22:15 Received From : +16:22:15 ============================================================================ +16:22:15 FNo. Len. Field Value +16:22:15 ============================================================================ +16:22:15 [ 1] [ 4] [0800] +16:22:15 [ 7] [ 10] [0320092121] +16:22:15 [ 11] [ 6] [157222] +16:22:15 [ 70] [ 3] [301] +16:22:15 ============================================================================ +16:22:15 + + +waiting on router queue for slot.... +16:22:15 Sending to : +16:22:15 ============================================================================ +16:22:15 ============================================================================ +16:22:15 Slot Id : <396> +16:22:15 Transaction Type : RESPONSE +16:22:15 Received From : +16:22:15 ============================================================================ +16:22:15 FNo. Len. Field Value +16:22:15 ============================================================================ +16:22:15 [ 1] [ 4] [0810] +16:22:15 [ 7] [ 10] [0320092121] +16:22:15 [ 11] [ 6] [157222] +16:22:15 [ 39] [ 2] [00] +16:22:15 [ 70] [ 3] [301] +16:22:15 ============================================================================ +16:22:15 Calculate Source COMM Id = 2 +16:22:15 ============================================================================ +16:22:15 + + +waiting on router queue for slot.... +16:22:16 ============================================================================ +16:22:16 Slot Id : <390> +16:22:16 Transaction Type : REQUEST +16:22:16 Received From : +16:22:16 ============================================================================ +16:22:16 FNo. Len. Field Value +16:22:16 ============================================================================ +16:22:16 [ 1] [ 4] [0200] +16:22:16 [ 2] [ 16] [6213544002242748] +16:22:16 [ 3] [ 6] [010000] +16:22:16 [ 4] [ 12] [000080000000] +16:22:16 [ 7] [ 10] [0320162006] +16:22:16 [ 11] [ 6] [951555] +16:22:16 [ 12] [ 6] [162006] +16:22:16 [ 13] [ 4] [0320] +16:22:16 [ 15] [ 4] [0320] +16:22:16 [ 18] [ 4] [6011] +16:22:16 [ 19] [ 3] [418] +16:22:16 [ 22] [ 3] [021] +16:22:16 [ 25] [ 2] [01] +16:22:16 [ 28] [ 9] [D00002000] +16:22:16 [ 32] [ 6] [668899] +16:22:16 [ 35] [ 32] [6213544002242748=491212014274787] +16:22:16 [ 37] [ 12] [507900577944] +16:22:16 [ 41] [ 8] [03014005] +16:22:16 [ 42] [ 15] [APT ] +16:22:16 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:22:16 [ 49] [ 3] [418] +16:22:16 [ 52] [ 16] [CD9F5BB328EAB17E] +16:22:16 ============================================================================ +16:22:16 + + +waiting on router queue for slot.... +16:22:16 Sending to : +16:22:16 ============================================================================ +16:22:16 Sending to : +16:22:16 ============================================================================ +16:22:16 ============================================================================ +16:22:16 Slot Id : <390> +16:22:16 Transaction Type : REQUEST +16:22:16 Received From : +16:22:16 ============================================================================ +16:22:16 FNo. Len. Field Value +16:22:16 ============================================================================ +16:22:16 [ 1] [ 4] [0200] +16:22:16 [ 2] [ 16] [6213544002242748] +16:22:16 [ 3] [ 6] [010000] +16:22:16 [ 4] [ 12] [000080000000] +16:22:16 [ 7] [ 10] [0320162006] +16:22:16 [ 11] [ 6] [951555] +16:22:16 [ 12] [ 6] [162006] +16:22:16 [ 13] [ 4] [0320] +16:22:16 [ 15] [ 4] [0320] +16:22:16 [ 18] [ 4] [6011] +16:22:16 [ 19] [ 3] [418] +16:22:16 [ 22] [ 3] [021] +16:22:16 [ 25] [ 2] [01] +16:22:16 [ 28] [ 9] [D00002000] +16:22:16 [ 32] [ 6] [668899] +16:22:16 [ 35] [ 32] [6213544002242748=491212014274787] +16:22:16 [ 37] [ 12] [507900577944] +16:22:16 [ 41] [ 8] [03014005] +16:22:16 [ 42] [ 15] [APT ] +16:22:16 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:22:16 [ 49] [ 3] [418] +16:22:16 [ 52] [ 16] [CD9F5BB328EAB17E] +16:22:16 ============================================================================ +16:22:16 + + +waiting on router queue for slot.... +16:22:16 Sending to : +16:22:16 ============================================================================ +16:22:16 ============================================================================ +16:22:16 Slot Id : <390> +16:22:16 Transaction Type : REQUEST +16:22:16 Received From : +16:22:16 ============================================================================ +16:22:16 FNo. Len. Field Value +16:22:16 ============================================================================ +16:22:16 [ 1] [ 4] [0200] +16:22:16 [ 2] [ 16] [6213544002242748] +16:22:16 [ 3] [ 6] [010000] +16:22:16 [ 4] [ 12] [000080000000] +16:22:16 [ 7] [ 10] [0320162006] +16:22:16 [ 11] [ 6] [951555] +16:22:16 [ 12] [ 6] [162006] +16:22:16 [ 13] [ 4] [0320] +16:22:16 [ 15] [ 4] [0320] +16:22:16 [ 18] [ 4] [6011] +16:22:16 [ 19] [ 3] [418] +16:22:16 [ 22] [ 3] [021] +16:22:16 [ 25] [ 2] [01] +16:22:16 [ 28] [ 9] [D00002000] +16:22:16 [ 32] [ 6] [668899] +16:22:16 [ 35] [ 32] [6213544002242748=491212014274787] +16:22:16 [ 37] [ 12] [507900577944] +16:22:16 [ 41] [ 8] [03014005] +16:22:16 [ 42] [ 15] [APT ] +16:22:16 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:22:16 [ 49] [ 3] [418] +16:22:16 [ 52] [ 16] [82A6C42B7D3BCADD] +16:22:16 ============================================================================ +16:22:16 + + +waiting on router queue for slot.... +16:22:16 Sending to : <0> +16:22:16 ============================================================================ +16:22:16 ============================================================================ +16:22:16 Slot Id : <390> +16:22:16 Transaction Type : RESPONSE +16:22:16 Received From : +16:22:16 ============================================================================ +16:22:16 FNo. Len. Field Value +16:22:16 ============================================================================ +16:22:16 [ 1] [ 4] [0210] +16:22:16 [ 2] [ 16] [6213544002242748] +16:22:16 [ 3] [ 6] [010000] +16:22:16 [ 4] [ 12] [000080000000] +16:22:16 [ 7] [ 10] [0320162006] +16:22:16 [ 11] [ 6] [951555] +16:22:16 [ 12] [ 6] [162006] +16:22:16 [ 13] [ 4] [0320] +16:22:16 [ 15] [ 4] [0320] +16:22:16 [ 18] [ 4] [6011] +16:22:16 [ 19] [ 3] [418] +16:22:16 [ 22] [ 3] [021] +16:22:16 [ 32] [ 6] [668899] +16:22:16 [ 35] [ 32] [6213544002242748=491212014274787] +16:22:16 [ 37] [ 12] [507900577944] +16:22:16 [ 38] [ 6] [162212] +16:22:16 [ 39] [ 2] [75] +16:22:16 [ 41] [ 8] [03014005] +16:22:16 [ 49] [ 3] [418] +16:22:16 ============================================================================ +16:22:16 Sending to : +16:22:16 ============================================================================ +16:22:16 + + +waiting on router queue for slot.... +16:22:17 ============================================================================ +16:22:17 Slot Id : <351> +16:22:17 Transaction Type : REQUEST +16:22:17 Received From : +16:22:17 ============================================================================ +16:22:17 FNo. Len. Field Value +16:22:17 ============================================================================ +16:22:17 [ 1] [ 4] [0200] +16:22:17 [ 2] [ 16] [1808931700025644] +16:22:17 [ 3] [ 6] [011000] +16:22:17 [ 4] [ 12] [000020000000] +16:22:17 [ 7] [ 10] [0320162212] +16:22:17 [ 11] [ 6] [797534] +16:22:17 [ 12] [ 6] [162212] +16:22:17 [ 13] [ 4] [0320] +16:22:17 [ 15] [ 4] [0320] +16:22:17 [ 18] [ 4] [6011] +16:22:17 [ 22] [ 3] [900] +16:22:17 [ 25] [ 2] [02] +16:22:17 [ 28] [ 9] [D00002000] +16:22:17 [ 32] [ 6] [621354] +16:22:17 [ 35] [ 27] [1808931700025644=1803500244] +16:22:17 [ 37] [ 12] [507904755478] +16:22:17 [ 41] [ 8] [07001100] +16:22:17 [ 42] [ 15] [NATIVE ] +16:22:17 [ 43] [ 40] [Industry Market Namtar LAO] +16:22:17 [ 49] [ 3] [418] +16:22:17 [ 52] [ 16] [746FD8E1C32F56E1] +16:22:17 ============================================================================ +16:22:17 + + +waiting on router queue for slot.... +16:22:17 Sending to : +16:22:17 ============================================================================ +16:22:17 Sending to : +16:22:17 ============================================================================ +16:22:17 ============================================================================ +16:22:17 Slot Id : <351> +16:22:17 Transaction Type : REQUEST +16:22:17 Received From : +16:22:17 ============================================================================ +16:22:17 FNo. Len. Field Value +16:22:17 ============================================================================ +16:22:17 [ 1] [ 4] [0200] +16:22:17 [ 2] [ 16] [1808931700025644] +16:22:17 [ 3] [ 6] [011000] +16:22:17 [ 4] [ 12] [000020000000] +16:22:17 [ 7] [ 10] [0320162212] +16:22:17 [ 11] [ 6] [797534] +16:22:17 [ 12] [ 6] [162212] +16:22:17 [ 13] [ 4] [0320] +16:22:17 [ 15] [ 4] [0320] +16:22:17 [ 18] [ 4] [6011] +16:22:17 [ 22] [ 3] [900] +16:22:17 [ 25] [ 2] [02] +16:22:17 [ 28] [ 9] [D00002000] +16:22:17 [ 32] [ 6] [621354] +16:22:17 [ 35] [ 27] [1808931700025644=1803500244] +16:22:17 [ 37] [ 12] [507904755478] +16:22:17 [ 41] [ 8] [07001100] +16:22:17 [ 42] [ 15] [NATIVE ] +16:22:17 [ 43] [ 40] [Industry Market Namtar LAO] +16:22:17 [ 49] [ 3] [418] +16:22:17 [ 52] [ 16] [746FD8E1C32F56E1] +16:22:17 ============================================================================ +16:22:17 + + +waiting on router queue for slot.... +16:22:17 Sending to : +16:22:17 ============================================================================ +16:22:17 ============================================================================ +16:22:17 Slot Id : <351> +16:22:17 Transaction Type : REQUEST +16:22:17 Received From : +16:22:17 ============================================================================ +16:22:17 FNo. Len. Field Value +16:22:17 ============================================================================ +16:22:17 [ 1] [ 4] [0200] +16:22:17 [ 2] [ 16] [1808931700025644] +16:22:17 [ 3] [ 6] [011000] +16:22:17 [ 4] [ 12] [000020000000] +16:22:17 [ 7] [ 10] [0320162212] +16:22:17 [ 11] [ 6] [797534] +16:22:17 [ 12] [ 6] [162212] +16:22:17 [ 13] [ 4] [0320] +16:22:17 [ 15] [ 4] [0320] +16:22:17 [ 18] [ 4] [6011] +16:22:17 [ 22] [ 3] [900] +16:22:17 [ 25] [ 2] [02] +16:22:17 [ 28] [ 9] [D00002000] +16:22:17 [ 32] [ 6] [621354] +16:22:17 [ 35] [ 27] [1808931700025644=1803500244] +16:22:17 [ 37] [ 12] [507904755478] +16:22:17 [ 41] [ 8] [07001100] +16:22:17 [ 42] [ 15] [NATIVE ] +16:22:17 [ 43] [ 40] [Industry Market Namtar LAO] +16:22:17 [ 49] [ 3] [418] +16:22:17 [ 52] [ 16] [B1296ED083C9F6A8] +16:22:17 ============================================================================ +16:22:17 + + +waiting on router queue for slot.... +16:22:17 Sending to : <2> +16:22:17 ============================================================================ +16:22:17 ============================================================================ +16:22:17 Slot Id : <390> +16:22:17 Transaction Type : RESPONSE +16:22:17 Received From : +16:22:17 ============================================================================ +16:22:17 FNo. Len. Field Value +16:22:17 ============================================================================ +16:22:17 [ 1] [ 4] [0210] +16:22:17 [ 2] [ 16] [6213544002242748] +16:22:17 [ 3] [ 6] [010000] +16:22:17 [ 4] [ 12] [000080000000] +16:22:17 [ 7] [ 10] [0320162006] +16:22:17 [ 11] [ 6] [951555] +16:22:17 [ 12] [ 6] [162006] +16:22:17 [ 13] [ 4] [0320] +16:22:17 [ 15] [ 4] [0320] +16:22:17 [ 18] [ 4] [6011] +16:22:17 [ 19] [ 3] [418] +16:22:17 [ 22] [ 3] [021] +16:22:17 [ 32] [ 6] [668899] +16:22:17 [ 35] [ 32] [6213544002242748=491212014274787] +16:22:17 [ 37] [ 12] [507900577944] +16:22:17 [ 38] [ 6] [162212] +16:22:17 [ 39] [ 2] [75] +16:22:17 [ 41] [ 8] [03014005] +16:22:17 [ 49] [ 3] [418] +16:22:17 ============================================================================ +16:22:17 Calculate Source COMM Id = 4 +16:22:17 ============================================================================ +16:22:17 + + +waiting on router queue for slot.... +16:22:19 ============================================================================ +16:22:19 Slot Id : <374> +16:22:19 Transaction Type : REQUEST +16:22:19 Received From : +16:22:19 ============================================================================ +16:22:19 FNo. Len. Field Value +16:22:19 ============================================================================ +16:22:19 [ 1] [ 4] [0800] +16:22:19 [ 2] [ 5] [02531] +16:22:19 [ 3] [ 6] [579168] +16:22:19 [ 7] [ 10] [0320092219] +16:22:19 [ 11] [ 6] [807362] +16:22:19 [ 15] [ 10] [0320092219] +16:22:19 [ 37] [ 11] [57916807362] +16:22:19 [ 70] [ 3] [001] +16:22:19 ============================================================================ +16:22:19 + + +waiting on router queue for slot.... +16:22:19 ============================================================================ +16:22:19 Slot Id : <374> +16:22:19 Transaction Type : RESPONSE +16:22:19 Received From : +16:22:19 ============================================================================ +16:22:19 FNo. Len. Field Value +16:22:19 ============================================================================ +16:22:19 [ 1] [ 4] [0810] +16:22:19 [ 7] [ 10] [0320092219] +16:22:19 [ 11] [ 6] [807362] +16:22:19 [ 15] [ 4] [0320] +16:22:19 [ 37] [ 12] [57916807362] +16:22:19 [ 39] [ 2] [00] +16:22:19 [ 70] [ 3] [001] +16:22:19 ============================================================================ +16:22:19 Sending to : +16:22:19 ============================================================================ +16:22:19 + + +waiting on router queue for slot.... +16:22:20 ============================================================================ +16:22:20 Slot Id : <389> +16:22:20 Transaction Type : REQUEST +16:22:20 Received From : +16:22:20 ============================================================================ +16:22:20 FNo. Len. Field Value +16:22:20 ============================================================================ +16:22:20 [ 1] [ 4] [0200] +16:22:20 [ 2] [ 16] [6688990060000237] +16:22:20 [ 3] [ 6] [010000] +16:22:20 [ 4] [ 12] [000100000000] +16:22:20 [ 7] [ 10] [0320162215] +16:22:20 [ 11] [ 6] [797553] +16:22:20 [ 12] [ 6] [162215] +16:22:20 [ 13] [ 4] [0320] +16:22:20 [ 15] [ 4] [0320] +16:22:20 [ 18] [ 4] [6011] +16:22:20 [ 22] [ 3] [900] +16:22:20 [ 25] [ 2] [02] +16:22:20 [ 28] [ 9] [D00002000] +16:22:20 [ 32] [ 6] [621354] +16:22:20 [ 35] [ 37] [6688990060000237=97091261629957200000] +16:22:20 [ 37] [ 12] [507903499586] +16:22:20 [ 41] [ 8] [06002200] +16:22:20 [ 42] [ 15] [NATIVE ] +16:22:20 [ 43] [ 40] [Beng Market Beng LAO] +16:22:20 [ 49] [ 3] [418] +16:22:20 [ 52] [ 16] [9471BFF2A91CC5AB] +16:22:20 ============================================================================ +16:22:20 + + +waiting on router queue for slot.... +16:22:20 Sending to : +16:22:20 ============================================================================ +16:22:20 Sending to : +16:22:20 ============================================================================ +16:22:20 ============================================================================ +16:22:20 Slot Id : <389> +16:22:20 Transaction Type : REQUEST +16:22:20 Received From : +16:22:20 ============================================================================ +16:22:20 FNo. Len. Field Value +16:22:20 ============================================================================ +16:22:20 [ 1] [ 4] [0200] +16:22:20 [ 2] [ 16] [6688990060000237] +16:22:20 [ 3] [ 6] [010000] +16:22:20 [ 4] [ 12] [000100000000] +16:22:20 [ 7] [ 10] [0320162215] +16:22:20 [ 11] [ 6] [797553] +16:22:20 [ 12] [ 6] [162215] +16:22:20 [ 13] [ 4] [0320] +16:22:20 [ 15] [ 4] [0320] +16:22:20 [ 18] [ 4] [6011] +16:22:20 [ 22] [ 3] [900] +16:22:20 [ 25] [ 2] [02] +16:22:20 [ 28] [ 9] [D00002000] +16:22:20 [ 32] [ 6] [621354] +16:22:20 [ 35] [ 37] [6688990060000237=97091261629957200000] +16:22:20 [ 37] [ 12] [507903499586] +16:22:20 [ 41] [ 8] [06002200] +16:22:20 [ 42] [ 15] [NATIVE ] +16:22:20 [ 43] [ 40] [Beng Market Beng LAO] +16:22:20 [ 49] [ 3] [418] +16:22:20 [ 52] [ 16] [9471BFF2A91CC5AB] +16:22:20 ============================================================================ +16:22:20 + + +waiting on router queue for slot.... +16:22:20 Sending to : +16:22:20 ============================================================================ +16:22:20 ============================================================================ +16:22:20 Slot Id : <389> +16:22:20 Transaction Type : REQUEST +16:22:20 Received From : +16:22:20 ============================================================================ +16:22:20 FNo. Len. Field Value +16:22:20 ============================================================================ +16:22:20 [ 1] [ 4] [0200] +16:22:20 [ 2] [ 16] [6688990060000237] +16:22:20 [ 3] [ 6] [010000] +16:22:20 [ 4] [ 12] [000100000000] +16:22:20 [ 7] [ 10] [0320162215] +16:22:20 [ 11] [ 6] [797553] +16:22:20 [ 12] [ 6] [162215] +16:22:20 [ 13] [ 4] [0320] +16:22:20 [ 15] [ 4] [0320] +16:22:20 [ 18] [ 4] [6011] +16:22:20 [ 22] [ 3] [900] +16:22:20 [ 25] [ 2] [02] +16:22:20 [ 28] [ 9] [D00002000] +16:22:20 [ 32] [ 6] [621354] +16:22:20 [ 35] [ 37] [6688990060000237=97091261629957200000] +16:22:20 [ 37] [ 12] [507903499586] +16:22:20 [ 41] [ 8] [06002200] +16:22:20 [ 42] [ 15] [NATIVE ] +16:22:20 [ 43] [ 40] [Beng Market Beng LAO] +16:22:20 [ 49] [ 3] [418] +16:22:20 [ 52] [ 16] [DA80FF8DE770FCAC] +16:22:20 ============================================================================ +16:22:20 + + +waiting on router queue for slot.... +16:22:20 Sending to : <4> +16:22:20 ============================================================================ +16:22:21 ============================================================================ +16:22:21 Slot Id : <389> +16:22:21 Transaction Type : RESPONSE +16:22:21 Received From : +16:22:21 ============================================================================ +16:22:21 FNo. Len. Field Value +16:22:21 ============================================================================ +16:22:21 [ 1] [ 4] [0210] +16:22:21 [ 2] [ 16] [6688990060000237] +16:22:21 [ 3] [ 6] [010000] +16:22:21 [ 4] [ 12] [000100000000] +16:22:21 [ 11] [ 6] [797553] +16:22:21 [ 12] [ 6] [162215] +16:22:21 [ 15] [ 4] [0320] +16:22:21 [ 18] [ 4] [6011] +16:22:21 [ 32] [ 6] [621354] +16:22:21 [ 35] [ 37] [6688990060000237=97091261629957200000] +16:22:21 [ 37] [ 12] [507903499586] +16:22:21 [ 38] [ 6] [935830] +16:22:21 [ 39] [ 2] [00] +16:22:21 [ 41] [ 8] [06002200] +16:22:21 [ 49] [ 3] [418] +16:22:21 [ 54] [ 20] [0002418C000138346005] +16:22:21 ============================================================================ +16:22:21 Sending to : +16:22:21 ============================================================================ +16:22:21 + + +waiting on router queue for slot.... +16:22:21 ============================================================================ +16:22:21 Slot Id : <351> +16:22:21 Transaction Type : RESPONSE +16:22:21 Received From : +16:22:21 ============================================================================ +16:22:21 FNo. Len. Field Value +16:22:21 ============================================================================ +16:22:21 [ 1] [ 4] [0210] +16:22:21 [ 2] [ 16] [1808931700025644] +16:22:21 [ 3] [ 6] [011000] +16:22:21 [ 4] [ 12] [000020000000] +16:22:21 [ 6] [ 12] [000020000000] +16:22:21 [ 7] [ 10] [0320162212] +16:22:21 [ 11] [ 6] [797534] +16:22:21 [ 12] [ 6] [162212] +16:22:21 [ 13] [ 4] [0320] +16:22:21 [ 18] [ 4] [6011] +16:22:21 [ 19] [ 3] [418] +16:22:21 [ 22] [ 3] [021] +16:22:21 [ 32] [ 6] [621354] +16:22:21 [ 35] [ 27] [1808931700025644=1803500244] +16:22:21 [ 37] [ 12] [507904755478] +16:22:21 [ 38] [ 6] [797534] +16:22:21 [ 39] [ 2] [00] +16:22:21 [ 41] [ 8] [07001100] +16:22:21 [ 49] [ 3] [418] +16:22:21 [ 52] [ 16] [B1296ED083C9F6A8] +16:22:21 [ 54] [ 20] [1001418C000101718800] +16:22:21 ============================================================================ +16:22:21 Sending to : +16:22:21 ============================================================================ +16:22:21 + + +waiting on router queue for slot.... +16:22:23 ============================================================================ +16:22:23 Slot Id : <389> +16:22:23 Transaction Type : RESPONSE +16:22:23 Received From : +16:22:23 ============================================================================ +16:22:23 FNo. Len. Field Value +16:22:23 ============================================================================ +16:22:23 [ 1] [ 4] [0210] +16:22:23 [ 2] [ 16] [6688990060000237] +16:22:23 [ 3] [ 6] [010000] +16:22:23 [ 4] [ 12] [000100000000] +16:22:23 [ 11] [ 6] [797553] +16:22:23 [ 12] [ 6] [162215] +16:22:23 [ 15] [ 4] [0320] +16:22:23 [ 18] [ 4] [6011] +16:22:23 [ 32] [ 6] [621354] +16:22:23 [ 35] [ 37] [6688990060000237=97091261629957200000] +16:22:23 [ 37] [ 12] [507903499586] +16:22:23 [ 38] [ 6] [935830] +16:22:23 [ 39] [ 2] [00] +16:22:23 [ 41] [ 8] [06002200] +16:22:23 [ 49] [ 3] [418] +16:22:23 [ 54] [ 20] [0002418C000138346005] +16:22:23 ============================================================================ +16:22:23 Calculate Source COMM Id = 0 +16:22:23 ============================================================================ +16:22:23 + + +waiting on router queue for slot.... +16:22:24 ============================================================================ +16:22:24 Slot Id : <351> +16:22:24 Transaction Type : RESPONSE +16:22:24 Received From : +16:22:24 ============================================================================ +16:22:24 FNo. Len. Field Value +16:22:24 ============================================================================ +16:22:24 [ 1] [ 4] [0210] +16:22:24 [ 2] [ 16] [1808931700025644] +16:22:24 [ 3] [ 6] [011000] +16:22:24 [ 4] [ 12] [000020000000] +16:22:24 [ 6] [ 12] [000020000000] +16:22:24 [ 7] [ 10] [0320162212] +16:22:24 [ 11] [ 6] [797534] +16:22:24 [ 12] [ 6] [162212] +16:22:24 [ 13] [ 4] [0320] +16:22:24 [ 18] [ 4] [6011] +16:22:24 [ 19] [ 3] [418] +16:22:24 [ 22] [ 3] [021] +16:22:24 [ 32] [ 6] [621354] +16:22:24 [ 35] [ 27] [1808931700025644=1803500244] +16:22:24 [ 37] [ 12] [507904755478] +16:22:24 [ 38] [ 6] [797534] +16:22:24 [ 39] [ 2] [00] +16:22:24 [ 41] [ 8] [07001100] +16:22:24 [ 49] [ 3] [418] +16:22:24 [ 52] [ 16] [B1296ED083C9F6A8] +16:22:24 [ 54] [ 20] [1001418C000101718800] +16:22:24 ============================================================================ +16:22:24 Calculate Source COMM Id = 0 +16:22:24 ============================================================================ +16:22:24 + + +waiting on router queue for slot.... +16:22:26 ============================================================================ +16:22:26 Slot Id : <359> +16:22:26 Transaction Type : REQUEST +16:22:26 Received From : +16:22:26 ============================================================================ +16:22:26 FNo. Len. Field Value +16:22:26 ============================================================================ +16:22:26 [ 1] [ 4] [0200] +16:22:26 [ 2] [ 16] [6688990105247207] +16:22:26 [ 3] [ 6] [011000] +16:22:26 [ 4] [ 12] [000100000000] +16:22:26 [ 7] [ 10] [0320162221] +16:22:26 [ 11] [ 6] [797583] +16:22:26 [ 12] [ 6] [162221] +16:22:26 [ 13] [ 4] [0320] +16:22:26 [ 15] [ 4] [0320] +16:22:26 [ 18] [ 4] [6011] +16:22:26 [ 22] [ 3] [900] +16:22:26 [ 25] [ 2] [02] +16:22:26 [ 28] [ 9] [D00002000] +16:22:26 [ 32] [ 6] [621354] +16:22:26 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:22:26 [ 37] [ 12] [507904719776] +16:22:26 [ 41] [ 8] [18001000] +16:22:26 [ 42] [ 15] [NATIVE ] +16:22:26 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:22:26 [ 49] [ 3] [418] +16:22:26 [ 52] [ 16] [667459472C5E1498] +16:22:26 ============================================================================ +16:22:26 + + +waiting on router queue for slot.... +16:22:26 Sending to : +16:22:26 ============================================================================ +16:22:26 Sending to : +16:22:26 ============================================================================ +16:22:26 ============================================================================ +16:22:26 Slot Id : <359> +16:22:26 Transaction Type : REQUEST +16:22:26 Received From : +16:22:26 ============================================================================ +16:22:26 FNo. Len. Field Value +16:22:26 ============================================================================ +16:22:26 [ 1] [ 4] [0200] +16:22:26 [ 2] [ 16] [6688990105247207] +16:22:26 [ 3] [ 6] [011000] +16:22:26 [ 4] [ 12] [000100000000] +16:22:26 [ 7] [ 10] [0320162221] +16:22:26 [ 11] [ 6] [797583] +16:22:26 [ 12] [ 6] [162221] +16:22:26 [ 13] [ 4] [0320] +16:22:26 [ 15] [ 4] [0320] +16:22:26 [ 18] [ 4] [6011] +16:22:26 [ 22] [ 3] [900] +16:22:26 [ 25] [ 2] [02] +16:22:26 [ 28] [ 9] [D00002000] +16:22:26 [ 32] [ 6] [621354] +16:22:26 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:22:26 [ 37] [ 12] [507904719776] +16:22:26 [ 41] [ 8] [18001000] +16:22:26 [ 42] [ 15] [NATIVE ] +16:22:26 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:22:26 [ 49] [ 3] [418] +16:22:26 [ 52] [ 16] [667459472C5E1498] +16:22:26 ============================================================================ +16:22:26 + + +waiting on router queue for slot.... +16:22:26 Sending to : +16:22:26 ============================================================================ +16:22:26 ============================================================================ +16:22:26 Slot Id : <359> +16:22:26 Transaction Type : REQUEST +16:22:26 Received From : +16:22:26 ============================================================================ +16:22:26 FNo. Len. Field Value +16:22:26 ============================================================================ +16:22:26 [ 1] [ 4] [0200] +16:22:26 [ 2] [ 16] [6688990105247207] +16:22:26 [ 3] [ 6] [011000] +16:22:26 [ 4] [ 12] [000100000000] +16:22:26 [ 7] [ 10] [0320162221] +16:22:26 [ 11] [ 6] [797583] +16:22:26 [ 12] [ 6] [162221] +16:22:26 [ 13] [ 4] [0320] +16:22:26 [ 15] [ 4] [0320] +16:22:26 [ 18] [ 4] [6011] +16:22:26 [ 22] [ 3] [900] +16:22:26 [ 25] [ 2] [02] +16:22:26 [ 28] [ 9] [D00002000] +16:22:26 [ 32] [ 6] [621354] +16:22:26 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:22:26 [ 37] [ 12] [507904719776] +16:22:26 [ 41] [ 8] [18001000] +16:22:26 [ 42] [ 15] [NATIVE ] +16:22:26 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:22:26 [ 49] [ 3] [418] +16:22:26 [ 52] [ 16] [2740F324422C69C1] +16:22:26 ============================================================================ +16:22:26 + + +waiting on router queue for slot.... +16:22:26 Sending to : <4> +16:22:26 ============================================================================ +16:22:27 ============================================================================ +16:22:27 Slot Id : <359> +16:22:27 Transaction Type : RESPONSE +16:22:27 Received From : +16:22:27 ============================================================================ +16:22:27 FNo. Len. Field Value +16:22:27 ============================================================================ +16:22:27 [ 1] [ 4] [0210] +16:22:27 [ 2] [ 16] [6688990105247207] +16:22:27 [ 3] [ 6] [011000] +16:22:27 [ 4] [ 12] [000100000000] +16:22:27 [ 11] [ 6] [797583] +16:22:27 [ 12] [ 6] [162221] +16:22:27 [ 15] [ 4] [0320] +16:22:27 [ 18] [ 4] [6011] +16:22:27 [ 32] [ 6] [621354] +16:22:27 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:22:27 [ 37] [ 12] [507904719776] +16:22:27 [ 38] [ 6] [705722] +16:22:27 [ 39] [ 2] [00] +16:22:27 [ 41] [ 8] [18001000] +16:22:27 [ 49] [ 3] [418] +16:22:27 [ 54] [ 20] [1002418C000079956582] +16:22:27 ============================================================================ +16:22:27 Sending to : +16:22:27 ============================================================================ +16:22:27 + + +waiting on router queue for slot.... +16:22:29 ============================================================================ +16:22:29 Slot Id : <359> +16:22:29 Transaction Type : RESPONSE +16:22:29 Received From : +16:22:29 ============================================================================ +16:22:29 FNo. Len. Field Value +16:22:29 ============================================================================ +16:22:29 [ 1] [ 4] [0210] +16:22:29 [ 2] [ 16] [6688990105247207] +16:22:29 [ 3] [ 6] [011000] +16:22:29 [ 4] [ 12] [000100000000] +16:22:29 [ 11] [ 6] [797583] +16:22:29 [ 12] [ 6] [162221] +16:22:29 [ 15] [ 4] [0320] +16:22:29 [ 18] [ 4] [6011] +16:22:29 [ 32] [ 6] [621354] +16:22:29 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:22:29 [ 37] [ 12] [507904719776] +16:22:29 [ 38] [ 6] [705722] +16:22:29 [ 39] [ 2] [00] +16:22:29 [ 41] [ 8] [18001000] +16:22:29 [ 49] [ 3] [418] +16:22:29 [ 54] [ 20] [1002418C000079956582] +16:22:29 ============================================================================ +16:22:29 Calculate Source COMM Id = 0 +16:22:29 ============================================================================ +16:22:29 + + +waiting on router queue for slot.... +16:22:29 ============================================================================ +16:22:29 Slot Id : <361> +16:22:29 Transaction Type : REQUEST +16:22:29 Received From : +16:22:29 ============================================================================ +16:22:29 FNo. Len. Field Value +16:22:29 ============================================================================ +16:22:29 [ 1] [ 4] [0800] +16:22:29 [ 7] [ 10] [0320233417] +16:22:29 [ 11] [ 6] [163417] +16:22:29 [ 37] [ 12] [57916163417] +16:22:29 [ 70] [ 3] [301] +16:22:29 ============================================================================ +16:22:29 + + +waiting on router queue for slot.... +16:22:29 Sending to : +16:22:29 ============================================================================ +16:22:29 ============================================================================ +16:22:29 Slot Id : <361> +16:22:29 Transaction Type : RESPONSE +16:22:29 Received From : +16:22:29 ============================================================================ +16:22:29 FNo. Len. Field Value +16:22:29 ============================================================================ +16:22:29 [ 1] [ 4] [0810] +16:22:29 [ 7] [ 10] [0320233417] +16:22:29 [ 11] [ 6] [163417] +16:22:29 [ 37] [ 12] [579161634170] +16:22:29 [ 39] [ 2] [00] +16:22:29 [ 70] [ 3] [810] +16:22:29 ============================================================================ +16:22:29 Calculate Source COMM Id = 6 +16:22:29 ============================================================================ +16:22:29 + + +waiting on router queue for slot.... +16:22:30 ============================================================================ +16:22:30 Slot Id : <376> +16:22:30 Transaction Type : REQUEST +16:22:30 Received From : +16:22:30 ============================================================================ +16:22:30 FNo. Len. Field Value +16:22:30 ============================================================================ +16:22:30 [ 1] [ 4] [0800] +16:22:30 [ 7] [ 10] [0320092137] +16:22:30 [ 11] [ 6] [157223] +16:22:30 [ 70] [ 3] [301] +16:22:30 ============================================================================ +16:22:30 + + +waiting on router queue for slot.... +16:22:30 Sending to : +16:22:30 ============================================================================ +16:22:30 ============================================================================ +16:22:30 Slot Id : <376> +16:22:30 Transaction Type : RESPONSE +16:22:30 Received From : +16:22:30 ============================================================================ +16:22:30 FNo. Len. Field Value +16:22:30 ============================================================================ +16:22:30 [ 1] [ 4] [0810] +16:22:30 [ 7] [ 10] [0320092137] +16:22:30 [ 11] [ 6] [157223] +16:22:30 [ 39] [ 2] [00] +16:22:30 [ 70] [ 3] [301] +16:22:30 ============================================================================ +16:22:30 Calculate Source COMM Id = 2 +16:22:30 ============================================================================ +16:22:30 + + +waiting on router queue for slot.... +16:22:40 ============================================================================ +16:22:40 Slot Id : <383> +16:22:40 Transaction Type : REQUEST +16:22:40 Received From : +16:22:40 ============================================================================ +16:22:40 FNo. Len. Field Value +16:22:40 ============================================================================ +16:22:40 [ 1] [ 4] [0800] +16:22:40 [ 7] [ 10] [0320092147] +16:22:40 [ 11] [ 6] [157224] +16:22:40 [ 70] [ 3] [301] +16:22:40 ============================================================================ +16:22:40 + + +waiting on router queue for slot.... +16:22:40 Sending to : +16:22:40 ============================================================================ +16:22:40 ============================================================================ +16:22:40 Slot Id : <383> +16:22:40 Transaction Type : RESPONSE +16:22:40 Received From : +16:22:40 ============================================================================ +16:22:40 FNo. Len. Field Value +16:22:40 ============================================================================ +16:22:40 [ 1] [ 4] [0810] +16:22:40 [ 7] [ 10] [0320092147] +16:22:40 [ 11] [ 6] [157224] +16:22:40 [ 39] [ 2] [00] +16:22:40 [ 70] [ 3] [301] +16:22:40 ============================================================================ +16:22:40 Calculate Source COMM Id = 2 +16:22:40 ============================================================================ +16:22:40 + + +waiting on router queue for slot.... +16:22:56 ============================================================================ +16:22:56 Slot Id : <410> +16:22:56 Transaction Type : REQUEST +16:22:56 Received From : +16:22:56 ============================================================================ +16:22:56 FNo. Len. Field Value +16:22:56 ============================================================================ +16:22:56 [ 1] [ 4] [0800] +16:22:56 [ 7] [ 10] [0320092203] +16:22:56 [ 11] [ 6] [157225] +16:22:56 [ 70] [ 3] [301] +16:22:56 ============================================================================ +16:22:56 + + +waiting on router queue for slot.... +16:22:56 Sending to : +16:22:56 ============================================================================ +16:22:56 ============================================================================ +16:22:56 Slot Id : <410> +16:22:56 Transaction Type : RESPONSE +16:22:56 Received From : +16:22:56 ============================================================================ +16:22:56 FNo. Len. Field Value +16:22:56 ============================================================================ +16:22:56 [ 1] [ 4] [0810] +16:22:56 [ 7] [ 10] [0320092203] +16:22:56 [ 11] [ 6] [157225] +16:22:56 [ 39] [ 2] [00] +16:22:56 [ 70] [ 3] [301] +16:22:56 ============================================================================ +16:22:56 Calculate Source COMM Id = 2 +16:22:56 ============================================================================ +16:22:56 + + +waiting on router queue for slot.... +16:23:01 ============================================================================ +16:23:01 Slot Id : <393> +16:23:01 Transaction Type : REQUEST +16:23:01 Received From : +16:23:01 ============================================================================ +16:23:01 FNo. Len. Field Value +16:23:01 ============================================================================ +16:23:01 [ 1] [ 4] [0200] +16:23:01 [ 2] [ 16] [6213548000206167] +16:23:01 [ 3] [ 6] [301000] +16:23:01 [ 7] [ 10] [0320092208] +16:23:01 [ 11] [ 6] [270372] +16:23:01 [ 12] [ 6] [162208] +16:23:01 [ 13] [ 4] [0320] +16:23:01 [ 14] [ 4] [1712] +16:23:01 [ 15] [ 4] [0320] +16:23:01 [ 18] [ 4] [6011] +16:23:01 [ 19] [ 3] [418] +16:23:01 [ 22] [ 3] [021] +16:23:01 [ 25] [ 2] [01] +16:23:01 [ 32] [ 6] [180893] +16:23:01 [ 35] [ 32] [6213548000206167=171212010616875] +16:23:01 [ 37] [ 12] [507909270372] +16:23:01 [ 41] [ 8] [0522XYXH] +16:23:01 [ 42] [ 15] [999999 ] +16:23:01 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:23:01 [ 49] [ 3] [418] +16:23:01 [ 52] [ 16] [1856C8AF733EC1D6] +16:23:01 ============================================================================ +16:23:01 + + +waiting on router queue for slot.... +16:23:01 Sending to : +16:23:01 ============================================================================ +16:23:01 Sending to : +16:23:01 ============================================================================ +16:23:01 ============================================================================ +16:23:01 Slot Id : <393> +16:23:01 Transaction Type : REQUEST +16:23:01 Received From : +16:23:01 ============================================================================ +16:23:01 FNo. Len. Field Value +16:23:01 ============================================================================ +16:23:01 [ 1] [ 4] [0200] +16:23:01 [ 2] [ 16] [6213548000206167] +16:23:01 [ 3] [ 6] [301000] +16:23:01 [ 7] [ 10] [0320092208] +16:23:01 [ 11] [ 6] [270372] +16:23:01 [ 12] [ 6] [162208] +16:23:01 [ 13] [ 4] [0320] +16:23:01 [ 14] [ 4] [1712] +16:23:01 [ 15] [ 4] [0320] +16:23:01 [ 18] [ 4] [6011] +16:23:01 [ 19] [ 3] [418] +16:23:01 [ 22] [ 3] [021] +16:23:01 [ 25] [ 2] [01] +16:23:01 [ 32] [ 6] [180893] +16:23:01 [ 35] [ 32] [6213548000206167=171212010616875] +16:23:01 [ 37] [ 12] [507909270372] +16:23:01 [ 41] [ 8] [0522XYXH] +16:23:01 [ 42] [ 15] [999999 ] +16:23:01 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:23:01 [ 49] [ 3] [418] +16:23:01 [ 52] [ 16] [1856C8AF733EC1D6] +16:23:01 ============================================================================ +16:23:01 + + +waiting on router queue for slot.... +16:23:01 Sending to : +16:23:01 ============================================================================ +16:23:01 ============================================================================ +16:23:01 Slot Id : <393> +16:23:01 Transaction Type : REQUEST +16:23:01 Received From : +16:23:01 ============================================================================ +16:23:01 FNo. Len. Field Value +16:23:01 ============================================================================ +16:23:01 [ 1] [ 4] [0200] +16:23:01 [ 2] [ 16] [6213548000206167] +16:23:01 [ 3] [ 6] [301000] +16:23:01 [ 7] [ 10] [0320092208] +16:23:01 [ 11] [ 6] [270372] +16:23:01 [ 12] [ 6] [162208] +16:23:01 [ 13] [ 4] [0320] +16:23:01 [ 14] [ 4] [1712] +16:23:01 [ 15] [ 4] [0320] +16:23:01 [ 18] [ 4] [6011] +16:23:01 [ 19] [ 3] [418] +16:23:01 [ 22] [ 3] [021] +16:23:01 [ 25] [ 2] [01] +16:23:01 [ 32] [ 6] [180893] +16:23:01 [ 35] [ 32] [6213548000206167=171212010616875] +16:23:01 [ 37] [ 12] [507909270372] +16:23:01 [ 41] [ 8] [0522XYXH] +16:23:01 [ 42] [ 15] [999999 ] +16:23:01 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:23:01 [ 49] [ 3] [418] +16:23:01 [ 52] [ 16] [4401AF7A91023EB9] +16:23:01 ============================================================================ +16:23:01 + + +waiting on router queue for slot.... +16:23:01 Sending to : <0> +16:23:01 ============================================================================ +16:23:01 ============================================================================ +16:23:01 Slot Id : <393> +16:23:01 Transaction Type : RESPONSE +16:23:01 Received From : +16:23:01 ============================================================================ +16:23:01 FNo. Len. Field Value +16:23:01 ============================================================================ +16:23:01 [ 1] [ 4] [0210] +16:23:01 [ 2] [ 16] [6213548000206167] +16:23:01 [ 3] [ 6] [301000] +16:23:01 [ 4] [ 12] [000000000000] +16:23:01 [ 7] [ 10] [0320092208] +16:23:01 [ 11] [ 6] [270372] +16:23:01 [ 12] [ 6] [162208] +16:23:01 [ 13] [ 4] [0320] +16:23:01 [ 15] [ 4] [0320] +16:23:01 [ 18] [ 4] [6011] +16:23:01 [ 19] [ 3] [418] +16:23:01 [ 32] [ 6] [180893] +16:23:01 [ 35] [ 32] [6213548000206167=171212010616875] +16:23:01 [ 37] [ 12] [507909270372] +16:23:01 [ 38] [ 6] [709975] +16:23:01 [ 39] [ 2] [00] +16:23:01 [ 41] [ 8] [0522XYXH] +16:23:01 [ 49] [ 3] [418] +16:23:01 [ 54] [ 40] [1001418C0000534553801002418C000053455380] +16:23:01 ============================================================================ +16:23:01 Sending to : +16:23:01 ============================================================================ +16:23:01 + + +waiting on router queue for slot.... +16:23:03 ============================================================================ +16:23:03 Slot Id : <393> +16:23:03 Transaction Type : RESPONSE +16:23:03 Received From : +16:23:03 ============================================================================ +16:23:03 FNo. Len. Field Value +16:23:03 ============================================================================ +16:23:03 [ 1] [ 4] [0210] +16:23:03 [ 2] [ 16] [6213548000206167] +16:23:03 [ 3] [ 6] [301000] +16:23:03 [ 4] [ 12] [000000000000] +16:23:03 [ 7] [ 10] [0320092208] +16:23:03 [ 11] [ 6] [270372] +16:23:03 [ 12] [ 6] [162208] +16:23:03 [ 13] [ 4] [0320] +16:23:03 [ 15] [ 4] [0320] +16:23:03 [ 18] [ 4] [6011] +16:23:03 [ 19] [ 3] [418] +16:23:03 [ 32] [ 6] [180893] +16:23:03 [ 35] [ 32] [6213548000206167=171212010616875] +16:23:03 [ 37] [ 12] [507909270372] +16:23:03 [ 38] [ 6] [709975] +16:23:03 [ 39] [ 2] [00] +16:23:03 [ 41] [ 8] [0522XYXH] +16:23:03 [ 49] [ 3] [418] +16:23:03 [ 54] [ 40] [1001418C0000534553801002418C000053455380] +16:23:03 ============================================================================ +16:23:03 Calculate Source COMM Id = 2 +16:23:03 ============================================================================ +16:23:03 + + +waiting on router queue for slot.... +16:23:05 ============================================================================ +16:23:05 Slot Id : <400> +16:23:05 Transaction Type : REQUEST +16:23:05 Received From : +16:23:05 ============================================================================ +16:23:05 FNo. Len. Field Value +16:23:05 ============================================================================ +16:23:05 [ 1] [ 4] [0200] +16:23:05 [ 2] [ 16] [6213544002242748] +16:23:05 [ 3] [ 6] [010000] +16:23:05 [ 4] [ 12] [000010000000] +16:23:05 [ 7] [ 10] [0320162055] +16:23:05 [ 11] [ 6] [951577] +16:23:05 [ 12] [ 6] [162055] +16:23:05 [ 13] [ 4] [0320] +16:23:05 [ 15] [ 4] [0320] +16:23:05 [ 18] [ 4] [6011] +16:23:05 [ 19] [ 3] [418] +16:23:05 [ 22] [ 3] [021] +16:23:05 [ 25] [ 2] [01] +16:23:05 [ 28] [ 9] [D00002000] +16:23:05 [ 32] [ 6] [668899] +16:23:05 [ 35] [ 32] [6213544002242748=491212014274787] +16:23:05 [ 37] [ 12] [507900577946] +16:23:05 [ 41] [ 8] [03014005] +16:23:05 [ 42] [ 15] [APT ] +16:23:05 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:23:05 [ 49] [ 3] [418] +16:23:05 [ 52] [ 16] [CD9F5BB328EAB17E] +16:23:05 ============================================================================ +16:23:05 + + +waiting on router queue for slot.... +16:23:05 Sending to : +16:23:05 ============================================================================ +16:23:05 Sending to : +16:23:05 ============================================================================ +16:23:06 ============================================================================ +16:23:06 Slot Id : <400> +16:23:06 Transaction Type : REQUEST +16:23:06 Received From : +16:23:06 ============================================================================ +16:23:06 FNo. Len. Field Value +16:23:06 ============================================================================ +16:23:06 [ 1] [ 4] [0200] +16:23:06 [ 2] [ 16] [6213544002242748] +16:23:06 [ 3] [ 6] [010000] +16:23:06 [ 4] [ 12] [000010000000] +16:23:06 [ 7] [ 10] [0320162055] +16:23:06 [ 11] [ 6] [951577] +16:23:06 [ 12] [ 6] [162055] +16:23:06 [ 13] [ 4] [0320] +16:23:06 [ 15] [ 4] [0320] +16:23:06 [ 18] [ 4] [6011] +16:23:06 [ 19] [ 3] [418] +16:23:06 [ 22] [ 3] [021] +16:23:06 [ 25] [ 2] [01] +16:23:06 [ 28] [ 9] [D00002000] +16:23:06 [ 32] [ 6] [668899] +16:23:06 [ 35] [ 32] [6213544002242748=491212014274787] +16:23:06 [ 37] [ 12] [507900577946] +16:23:06 [ 41] [ 8] [03014005] +16:23:06 [ 42] [ 15] [APT ] +16:23:06 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:23:06 [ 49] [ 3] [418] +16:23:06 [ 52] [ 16] [CD9F5BB328EAB17E] +16:23:06 ============================================================================ +16:23:06 + + +waiting on router queue for slot.... +16:23:06 Sending to : +16:23:06 ============================================================================ +16:23:06 ============================================================================ +16:23:06 Slot Id : <400> +16:23:06 Transaction Type : REQUEST +16:23:06 Received From : +16:23:06 ============================================================================ +16:23:06 FNo. Len. Field Value +16:23:06 ============================================================================ +16:23:06 [ 1] [ 4] [0200] +16:23:06 [ 2] [ 16] [6213544002242748] +16:23:06 [ 3] [ 6] [010000] +16:23:06 [ 4] [ 12] [000010000000] +16:23:06 [ 7] [ 10] [0320162055] +16:23:06 [ 11] [ 6] [951577] +16:23:06 [ 12] [ 6] [162055] +16:23:06 [ 13] [ 4] [0320] +16:23:06 [ 15] [ 4] [0320] +16:23:06 [ 18] [ 4] [6011] +16:23:06 [ 19] [ 3] [418] +16:23:06 [ 22] [ 3] [021] +16:23:06 [ 25] [ 2] [01] +16:23:06 [ 28] [ 9] [D00002000] +16:23:06 [ 32] [ 6] [668899] +16:23:06 [ 35] [ 32] [6213544002242748=491212014274787] +16:23:06 [ 37] [ 12] [507900577946] +16:23:06 [ 41] [ 8] [03014005] +16:23:06 [ 42] [ 15] [APT ] +16:23:06 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:23:06 [ 49] [ 3] [418] +16:23:06 [ 52] [ 16] [82A6C42B7D3BCADD] +16:23:06 ============================================================================ +16:23:06 + + +waiting on router queue for slot.... +16:23:06 Sending to : <0> +16:23:06 ============================================================================ +16:23:06 ============================================================================ +16:23:06 Slot Id : <400> +16:23:06 Transaction Type : RESPONSE +16:23:06 Received From : +16:23:06 ============================================================================ +16:23:06 FNo. Len. Field Value +16:23:06 ============================================================================ +16:23:06 [ 1] [ 4] [0210] +16:23:06 [ 2] [ 16] [6213544002242748] +16:23:06 [ 3] [ 6] [010000] +16:23:06 [ 4] [ 12] [000010000000] +16:23:06 [ 7] [ 10] [0320162055] +16:23:06 [ 11] [ 6] [951577] +16:23:06 [ 12] [ 6] [162055] +16:23:06 [ 13] [ 4] [0320] +16:23:06 [ 15] [ 4] [0320] +16:23:06 [ 18] [ 4] [6011] +16:23:06 [ 19] [ 3] [418] +16:23:06 [ 22] [ 3] [021] +16:23:06 [ 32] [ 6] [668899] +16:23:06 [ 35] [ 32] [6213544002242748=491212014274787] +16:23:06 [ 37] [ 12] [507900577946] +16:23:06 [ 38] [ 6] [162301] +16:23:06 [ 39] [ 2] [75] +16:23:06 [ 41] [ 8] [03014005] +16:23:06 [ 49] [ 3] [418] +16:23:06 ============================================================================ +16:23:06 Sending to : +16:23:06 ============================================================================ +16:23:06 + + +waiting on router queue for slot.... +16:23:07 ============================================================================ +16:23:07 Slot Id : <400> +16:23:07 Transaction Type : RESPONSE +16:23:07 Received From : +16:23:07 ============================================================================ +16:23:07 FNo. Len. Field Value +16:23:07 ============================================================================ +16:23:07 [ 1] [ 4] [0210] +16:23:07 [ 2] [ 16] [6213544002242748] +16:23:07 [ 3] [ 6] [010000] +16:23:07 [ 4] [ 12] [000010000000] +16:23:07 [ 7] [ 10] [0320162055] +16:23:07 [ 11] [ 6] [951577] +16:23:07 [ 12] [ 6] [162055] +16:23:07 [ 13] [ 4] [0320] +16:23:07 [ 15] [ 4] [0320] +16:23:07 [ 18] [ 4] [6011] +16:23:07 [ 19] [ 3] [418] +16:23:07 [ 22] [ 3] [021] +16:23:07 [ 32] [ 6] [668899] +16:23:07 [ 35] [ 32] [6213544002242748=491212014274787] +16:23:07 [ 37] [ 12] [507900577946] +16:23:07 [ 38] [ 6] [162301] +16:23:07 [ 39] [ 2] [75] +16:23:07 [ 41] [ 8] [03014005] +16:23:07 [ 49] [ 3] [418] +16:23:07 ============================================================================ +16:23:07 Calculate Source COMM Id = 4 +16:23:07 ============================================================================ +16:23:07 + + +waiting on router queue for slot.... +16:23:15 ============================================================================ +16:23:15 Slot Id : <395> +16:23:15 Transaction Type : REQUEST +16:23:15 Received From : +16:23:15 ============================================================================ +16:23:15 FNo. Len. Field Value +16:23:15 ============================================================================ +16:23:15 [ 1] [ 4] [0200] +16:23:15 [ 2] [ 16] [6688990060026844] +16:23:15 [ 3] [ 6] [010000] +16:23:15 [ 4] [ 12] [000200000000] +16:23:15 [ 7] [ 10] [0320092220] +16:23:15 [ 11] [ 6] [270376] +16:23:15 [ 12] [ 6] [162220] +16:23:15 [ 13] [ 4] [0320] +16:23:15 [ 14] [ 4] [9802] +16:23:15 [ 15] [ 4] [0320] +16:23:15 [ 18] [ 4] [6011] +16:23:15 [ 19] [ 3] [418] +16:23:15 [ 22] [ 3] [021] +16:23:15 [ 25] [ 2] [01] +16:23:15 [ 28] [ 9] [D00002000] +16:23:15 [ 32] [ 6] [180893] +16:23:15 [ 35] [ 37] [6688990060026844=98021261680954600000] +16:23:15 [ 37] [ 12] [507909270376] +16:23:15 [ 41] [ 8] [0369SLVL] +16:23:15 [ 42] [ 15] [999999 ] +16:23:15 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:23:15 [ 49] [ 3] [418] +16:23:15 [ 52] [ 16] [A37C0BA078680FB1] +16:23:15 ============================================================================ +16:23:15 + + +waiting on router queue for slot.... +16:23:15 Sending to : +16:23:15 ============================================================================ +16:23:15 Sending to : +16:23:15 ============================================================================ +16:23:15 ============================================================================ +16:23:15 Slot Id : <395> +16:23:15 Transaction Type : REQUEST +16:23:15 Received From : +16:23:15 ============================================================================ +16:23:15 FNo. Len. Field Value +16:23:15 ============================================================================ +16:23:15 [ 1] [ 4] [0200] +16:23:15 [ 2] [ 16] [6688990060026844] +16:23:15 [ 3] [ 6] [010000] +16:23:15 [ 4] [ 12] [000200000000] +16:23:15 [ 7] [ 10] [0320092220] +16:23:15 [ 11] [ 6] [270376] +16:23:15 [ 12] [ 6] [162220] +16:23:15 [ 13] [ 4] [0320] +16:23:15 [ 14] [ 4] [9802] +16:23:15 [ 15] [ 4] [0320] +16:23:15 [ 18] [ 4] [6011] +16:23:15 [ 19] [ 3] [418] +16:23:15 [ 22] [ 3] [021] +16:23:15 [ 25] [ 2] [01] +16:23:15 [ 28] [ 9] [D00002000] +16:23:15 [ 32] [ 6] [180893] +16:23:15 [ 35] [ 37] [6688990060026844=98021261680954600000] +16:23:15 [ 37] [ 12] [507909270376] +16:23:15 [ 41] [ 8] [0369SLVL] +16:23:15 [ 42] [ 15] [999999 ] +16:23:15 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:23:15 [ 49] [ 3] [418] +16:23:15 [ 52] [ 16] [A37C0BA078680FB1] +16:23:15 ============================================================================ +16:23:15 + + +waiting on router queue for slot.... +16:23:15 Sending to : +16:23:15 ============================================================================ +16:23:15 ============================================================================ +16:23:15 Slot Id : <395> +16:23:15 Transaction Type : REQUEST +16:23:15 Received From : +16:23:15 ============================================================================ +16:23:15 FNo. Len. Field Value +16:23:15 ============================================================================ +16:23:15 [ 1] [ 4] [0200] +16:23:15 [ 2] [ 16] [6688990060026844] +16:23:15 [ 3] [ 6] [010000] +16:23:15 [ 4] [ 12] [000200000000] +16:23:15 [ 7] [ 10] [0320092220] +16:23:15 [ 11] [ 6] [270376] +16:23:15 [ 12] [ 6] [162220] +16:23:15 [ 13] [ 4] [0320] +16:23:15 [ 14] [ 4] [9802] +16:23:15 [ 15] [ 4] [0320] +16:23:15 [ 18] [ 4] [6011] +16:23:15 [ 19] [ 3] [418] +16:23:15 [ 22] [ 3] [021] +16:23:15 [ 25] [ 2] [01] +16:23:15 [ 28] [ 9] [D00002000] +16:23:15 [ 32] [ 6] [180893] +16:23:15 [ 35] [ 37] [6688990060026844=98021261680954600000] +16:23:15 [ 37] [ 12] [507909270376] +16:23:15 [ 41] [ 8] [0369SLVL] +16:23:15 [ 42] [ 15] [999999 ] +16:23:15 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:23:15 [ 49] [ 3] [418] +16:23:15 [ 52] [ 16] [F17A7D2CC8D06886] +16:23:15 ============================================================================ +16:23:15 + + +waiting on router queue for slot.... +16:23:15 Sending to : <0> +16:23:15 ============================================================================ +16:23:15 ============================================================================ +16:23:15 Slot Id : <395> +16:23:15 Transaction Type : RESPONSE +16:23:15 Received From : +16:23:15 ============================================================================ +16:23:15 FNo. Len. Field Value +16:23:15 ============================================================================ +16:23:15 [ 1] [ 4] [0210] +16:23:15 [ 2] [ 16] [6688990060026844] +16:23:15 [ 3] [ 6] [010000] +16:23:15 [ 4] [ 12] [000200000000] +16:23:15 [ 7] [ 10] [0320092220] +16:23:15 [ 11] [ 6] [270376] +16:23:15 [ 12] [ 6] [162220] +16:23:15 [ 13] [ 4] [0320] +16:23:15 [ 15] [ 4] [0320] +16:23:15 [ 18] [ 4] [6011] +16:23:15 [ 19] [ 3] [418] +16:23:15 [ 22] [ 3] [021] +16:23:15 [ 32] [ 6] [180893] +16:23:15 [ 35] [ 37] [6688990060026844=98021261680954600000] +16:23:15 [ 37] [ 12] [507909270376] +16:23:15 [ 39] [ 2] [61] +16:23:15 [ 41] [ 8] [0369SLVL] +16:23:15 [ 49] [ 3] [418] +16:23:15 ============================================================================ +16:23:15 Sending to : +16:23:15 ============================================================================ +16:23:15 + + +waiting on router queue for slot.... +16:23:16 ============================================================================ +16:23:16 Slot Id : <395> +16:23:16 Transaction Type : RESPONSE +16:23:16 Received From : +16:23:16 ============================================================================ +16:23:16 FNo. Len. Field Value +16:23:16 ============================================================================ +16:23:16 [ 1] [ 4] [0210] +16:23:16 [ 2] [ 16] [6688990060026844] +16:23:16 [ 3] [ 6] [010000] +16:23:16 [ 4] [ 12] [000200000000] +16:23:16 [ 7] [ 10] [0320092220] +16:23:16 [ 11] [ 6] [270376] +16:23:16 [ 12] [ 6] [162220] +16:23:16 [ 13] [ 4] [0320] +16:23:16 [ 15] [ 4] [0320] +16:23:16 [ 18] [ 4] [6011] +16:23:16 [ 19] [ 3] [418] +16:23:16 [ 22] [ 3] [021] +16:23:16 [ 32] [ 6] [180893] +16:23:16 [ 35] [ 37] [6688990060026844=98021261680954600000] +16:23:16 [ 37] [ 12] [507909270376] +16:23:16 [ 39] [ 2] [61] +16:23:16 [ 41] [ 8] [0369SLVL] +16:23:16 [ 49] [ 3] [418] +16:23:16 ============================================================================ +16:23:16 Calculate Source COMM Id = 2 +16:23:16 ============================================================================ +16:23:16 + + +waiting on router queue for slot.... +16:23:17 ============================================================================ +16:23:17 Slot Id : <397> +16:23:17 Transaction Type : REQUEST +16:23:17 Received From : +16:23:17 ============================================================================ +16:23:17 FNo. Len. Field Value +16:23:17 ============================================================================ +16:23:17 [ 1] [ 4] [0800] +16:23:17 [ 7] [ 10] [0320092224] +16:23:17 [ 11] [ 6] [157226] +16:23:17 [ 70] [ 3] [301] +16:23:17 ============================================================================ +16:23:17 + + +waiting on router queue for slot.... +16:23:17 Sending to : +16:23:17 ============================================================================ +16:23:17 ============================================================================ +16:23:17 Slot Id : <397> +16:23:17 Transaction Type : RESPONSE +16:23:17 Received From : +16:23:17 ============================================================================ +16:23:17 FNo. Len. Field Value +16:23:17 ============================================================================ +16:23:17 [ 1] [ 4] [0810] +16:23:17 [ 7] [ 10] [0320092224] +16:23:17 [ 11] [ 6] [157226] +16:23:17 [ 39] [ 2] [00] +16:23:17 [ 70] [ 3] [301] +16:23:17 ============================================================================ +16:23:17 Calculate Source COMM Id = 2 +16:23:17 ============================================================================ +16:23:17 + + +waiting on router queue for slot.... +16:23:19 ============================================================================ +16:23:19 Slot Id : <413> +16:23:19 Transaction Type : REQUEST +16:23:19 Received From : +16:23:19 ============================================================================ +16:23:19 FNo. Len. Field Value +16:23:19 ============================================================================ +16:23:19 [ 1] [ 4] [0200] +16:23:19 [ 2] [ 16] [6213544001525309] +16:23:19 [ 3] [ 6] [011000] +16:23:19 [ 4] [ 12] [000045000000] +16:23:20 [ 7] [ 10] [0320162340] +16:23:20 [ 11] [ 6] [208633] +16:23:20 [ 12] [ 6] [161846] +16:23:20 [ 13] [ 4] [0320] +16:23:20 [ 14] [ 4] [4912] +16:23:20 [ 15] [ 4] [0320] +16:23:20 [ 18] [ 4] [6011] +16:23:20 [ 19] [ 3] [418] +16:23:20 [ 22] [ 3] [021] +16:23:20 [ 25] [ 2] [01] +16:23:20 [ 28] [ 9] [D00002000] +16:23:20 [ 32] [ 6] [198901] +16:23:20 [ 35] [ 32] [6213544001525309=491212012530446] +16:23:20 [ 37] [ 12] [507916208633] +16:23:20 [ 41] [ 8] [19529001] +16:23:20 [ 42] [ 15] [000000041952901] +16:23:20 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:23:20 [ 49] [ 3] [418] +16:23:20 [ 52] [ 16] [E4243CCDF71ABA44] +16:23:20 ============================================================================ +16:23:20 + + +waiting on router queue for slot.... +16:23:20 Sending to : +16:23:20 ============================================================================ +16:23:20 Sending to : +16:23:20 ============================================================================ +16:23:20 ============================================================================ +16:23:20 Slot Id : <413> +16:23:20 Transaction Type : REQUEST +16:23:20 Received From : +16:23:20 ============================================================================ +16:23:20 FNo. Len. Field Value +16:23:20 ============================================================================ +16:23:20 [ 1] [ 4] [0200] +16:23:20 [ 2] [ 16] [6213544001525309] +16:23:20 [ 3] [ 6] [011000] +16:23:20 [ 4] [ 12] [000045000000] +16:23:20 [ 7] [ 10] [0320162340] +16:23:20 [ 11] [ 6] [208633] +16:23:20 [ 12] [ 6] [161846] +16:23:20 [ 13] [ 4] [0320] +16:23:20 [ 14] [ 4] [4912] +16:23:20 [ 15] [ 4] [0320] +16:23:20 [ 18] [ 4] [6011] +16:23:20 [ 19] [ 3] [418] +16:23:20 [ 22] [ 3] [021] +16:23:20 [ 25] [ 2] [01] +16:23:20 [ 28] [ 9] [D00002000] +16:23:20 [ 32] [ 6] [198901] +16:23:20 [ 35] [ 32] [6213544001525309=491212012530446] +16:23:20 [ 37] [ 12] [507916208633] +16:23:20 [ 41] [ 8] [19529001] +16:23:20 [ 42] [ 15] [000000041952901] +16:23:20 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:23:20 [ 49] [ 3] [418] +16:23:20 [ 52] [ 16] [E4243CCDF71ABA44] +16:23:20 ============================================================================ +16:23:20 + + +waiting on router queue for slot.... +16:23:20 Sending to : +16:23:20 ============================================================================ +16:23:20 ============================================================================ +16:23:20 Slot Id : <413> +16:23:20 Transaction Type : REQUEST +16:23:20 Received From : +16:23:20 ============================================================================ +16:23:20 FNo. Len. Field Value +16:23:20 ============================================================================ +16:23:20 [ 1] [ 4] [0200] +16:23:20 [ 2] [ 16] [6213544001525309] +16:23:20 [ 3] [ 6] [011000] +16:23:20 [ 4] [ 12] [000045000000] +16:23:20 [ 7] [ 10] [0320162340] +16:23:20 [ 11] [ 6] [208633] +16:23:20 [ 12] [ 6] [161846] +16:23:20 [ 13] [ 4] [0320] +16:23:20 [ 14] [ 4] [4912] +16:23:20 [ 15] [ 4] [0320] +16:23:20 [ 18] [ 4] [6011] +16:23:20 [ 19] [ 3] [418] +16:23:20 [ 22] [ 3] [021] +16:23:20 [ 25] [ 2] [01] +16:23:20 [ 28] [ 9] [D00002000] +16:23:20 [ 32] [ 6] [198901] +16:23:20 [ 35] [ 32] [6213544001525309=491212012530446] +16:23:20 [ 37] [ 12] [507916208633] +16:23:20 [ 41] [ 8] [19529001] +16:23:20 [ 42] [ 15] [000000041952901] +16:23:20 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:23:20 [ 49] [ 3] [418] +16:23:20 [ 52] [ 16] [EBE64A4858397579] +16:23:20 ============================================================================ +16:23:20 + + +waiting on router queue for slot.... +16:23:20 Sending to : <0> +16:23:20 ============================================================================ +16:23:21 ============================================================================ +16:23:21 Slot Id : <413> +16:23:21 Transaction Type : RESPONSE +16:23:21 Received From : +16:23:21 ============================================================================ +16:23:21 FNo. Len. Field Value +16:23:21 ============================================================================ +16:23:21 [ 1] [ 4] [0210] +16:23:21 [ 2] [ 16] [6213544001525309] +16:23:21 [ 3] [ 6] [011000] +16:23:21 [ 4] [ 12] [000045000000] +16:23:21 [ 7] [ 10] [0320162340] +16:23:21 [ 11] [ 6] [208633] +16:23:21 [ 12] [ 6] [161846] +16:23:21 [ 13] [ 4] [0320] +16:23:21 [ 15] [ 4] [0320] +16:23:21 [ 18] [ 4] [6011] +16:23:21 [ 19] [ 3] [418] +16:23:21 [ 32] [ 6] [198901] +16:23:21 [ 35] [ 32] [6213544001525309=491212012530446] +16:23:21 [ 37] [ 12] [507916208633] +16:23:21 [ 38] [ 6] [520336] +16:23:21 [ 39] [ 2] [00] +16:23:21 [ 41] [ 8] [19529001] +16:23:21 [ 49] [ 3] [418] +16:23:21 [ 54] [ 40] [1001418C0000200316871002418C000020031687] +16:23:21 ============================================================================ +16:23:21 Sending to : +16:23:21 ============================================================================ +16:23:21 + + +waiting on router queue for slot.... +16:23:21 ============================================================================ +16:23:21 Slot Id : <414> +16:23:21 Transaction Type : REQUEST +16:23:21 Received From : +16:23:21 ============================================================================ +16:23:21 FNo. Len. Field Value +16:23:21 ============================================================================ +16:23:21 [ 1] [ 4] [0800] +16:23:21 [ 2] [ 5] [02531] +16:23:21 [ 3] [ 6] [579168] +16:23:21 [ 7] [ 10] [0320092321] +16:23:21 [ 11] [ 6] [807363] +16:23:21 [ 15] [ 10] [0320092321] +16:23:21 [ 37] [ 11] [57916807363] +16:23:21 [ 70] [ 3] [001] +16:23:21 ============================================================================ +16:23:21 + + +waiting on router queue for slot.... +16:23:21 ============================================================================ +16:23:21 Slot Id : <414> +16:23:21 Transaction Type : RESPONSE +16:23:21 Received From : +16:23:21 ============================================================================ +16:23:21 FNo. Len. Field Value +16:23:21 ============================================================================ +16:23:21 [ 1] [ 4] [0810] +16:23:21 [ 7] [ 10] [0320092321] +16:23:21 [ 11] [ 6] [807363] +16:23:21 [ 15] [ 4] [0320] +16:23:21 [ 37] [ 12] [57916807363] +16:23:21 [ 39] [ 2] [00] +16:23:21 [ 70] [ 3] [001] +16:23:21 ============================================================================ +16:23:21 Sending to : +16:23:21 ============================================================================ +16:23:21 + + +waiting on router queue for slot.... +16:23:22 ============================================================================ +16:23:22 Slot Id : <413> +16:23:22 Transaction Type : RESPONSE +16:23:22 Received From : +16:23:22 ============================================================================ +16:23:22 FNo. Len. Field Value +16:23:22 ============================================================================ +16:23:22 [ 1] [ 4] [0210] +16:23:22 [ 2] [ 16] [6213544001525309] +16:23:22 [ 3] [ 6] [011000] +16:23:22 [ 4] [ 12] [000045000000] +16:23:22 [ 7] [ 10] [0320162340] +16:23:22 [ 11] [ 6] [208633] +16:23:22 [ 12] [ 6] [161846] +16:23:22 [ 13] [ 4] [0320] +16:23:22 [ 15] [ 4] [0320] +16:23:22 [ 18] [ 4] [6011] +16:23:22 [ 19] [ 3] [418] +16:23:22 [ 32] [ 6] [198901] +16:23:22 [ 35] [ 32] [6213544001525309=491212012530446] +16:23:22 [ 37] [ 12] [507916208633] +16:23:22 [ 38] [ 6] [520336] +16:23:22 [ 39] [ 2] [00] +16:23:22 [ 41] [ 8] [19529001] +16:23:22 [ 49] [ 3] [418] +16:23:22 [ 54] [ 40] [1001418C0000200316871002418C000020031687] +16:23:22 ============================================================================ +16:23:22 Calculate Source COMM Id = 5 +16:23:22 ============================================================================ +16:23:22 + + +waiting on router queue for slot.... +16:23:28 ============================================================================ +16:23:28 Slot Id : <349> +16:23:28 Transaction Type : REQUEST +16:23:28 Received From : +16:23:28 ============================================================================ +16:23:28 FNo. Len. Field Value +16:23:28 ============================================================================ +16:23:28 [ 1] [ 4] [0800] +16:23:28 [ 7] [ 10] [0320092235] +16:23:28 [ 11] [ 6] [157227] +16:23:28 [ 70] [ 3] [301] +16:23:28 ============================================================================ +16:23:28 + + +waiting on router queue for slot.... +16:23:28 Sending to : +16:23:28 ============================================================================ +16:23:28 ============================================================================ +16:23:28 Slot Id : <349> +16:23:28 Transaction Type : RESPONSE +16:23:28 Received From : +16:23:28 ============================================================================ +16:23:28 FNo. Len. Field Value +16:23:28 ============================================================================ +16:23:28 [ 1] [ 4] [0810] +16:23:28 [ 7] [ 10] [0320092235] +16:23:28 [ 11] [ 6] [157227] +16:23:28 [ 39] [ 2] [00] +16:23:28 [ 70] [ 3] [301] +16:23:28 ============================================================================ +16:23:28 Calculate Source COMM Id = 2 +16:23:28 ============================================================================ +16:23:28 + + +waiting on router queue for slot.... +16:23:29 ============================================================================ +16:23:29 Slot Id : <394> +16:23:29 Transaction Type : REQUEST +16:23:29 Received From : +16:23:29 ============================================================================ +16:23:29 FNo. Len. Field Value +16:23:29 ============================================================================ +16:23:29 [ 1] [ 4] [0200] +16:23:29 [ 2] [ 16] [6688990103265300] +16:23:29 [ 3] [ 6] [300000] +16:23:29 [ 4] [ 12] [000000000000] +16:23:29 [ 7] [ 10] [0320162324] +16:23:29 [ 11] [ 6] [797892] +16:23:29 [ 12] [ 6] [162324] +16:23:29 [ 13] [ 4] [0320] +16:23:29 [ 15] [ 4] [0320] +16:23:29 [ 18] [ 4] [6011] +16:23:29 [ 22] [ 3] [900] +16:23:29 [ 25] [ 2] [02] +16:23:29 [ 28] [ 9] [D00000000] +16:23:29 [ 32] [ 6] [621354] +16:23:29 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:23:29 [ 37] [ 12] [507903499587] +16:23:29 [ 41] [ 8] [06002200] +16:23:29 [ 42] [ 15] [NATIVE ] +16:23:29 [ 43] [ 40] [Beng Market Beng LAO] +16:23:29 [ 49] [ 3] [418] +16:23:29 [ 52] [ 16] [FD87B19E17EF8EDB] +16:23:29 ============================================================================ +16:23:29 + + +waiting on router queue for slot.... +16:23:29 Sending to : +16:23:29 ============================================================================ +16:23:29 Sending to : +16:23:29 ============================================================================ +16:23:29 ============================================================================ +16:23:29 Slot Id : <394> +16:23:29 Transaction Type : REQUEST +16:23:29 Received From : +16:23:29 ============================================================================ +16:23:29 FNo. Len. Field Value +16:23:29 ============================================================================ +16:23:29 [ 1] [ 4] [0200] +16:23:29 [ 2] [ 16] [6688990103265300] +16:23:29 [ 3] [ 6] [300000] +16:23:29 [ 4] [ 12] [000000000000] +16:23:29 [ 7] [ 10] [0320162324] +16:23:29 [ 11] [ 6] [797892] +16:23:29 [ 12] [ 6] [162324] +16:23:29 [ 13] [ 4] [0320] +16:23:29 [ 15] [ 4] [0320] +16:23:29 [ 18] [ 4] [6011] +16:23:29 [ 22] [ 3] [900] +16:23:29 [ 25] [ 2] [02] +16:23:29 [ 28] [ 9] [D00000000] +16:23:29 [ 32] [ 6] [621354] +16:23:29 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:23:29 [ 37] [ 12] [507903499587] +16:23:29 [ 41] [ 8] [06002200] +16:23:29 [ 42] [ 15] [NATIVE ] +16:23:29 [ 43] [ 40] [Beng Market Beng LAO] +16:23:29 [ 49] [ 3] [418] +16:23:29 [ 52] [ 16] [FD87B19E17EF8EDB] +16:23:29 ============================================================================ +16:23:29 + + +waiting on router queue for slot.... +16:23:29 Sending to : +16:23:29 ============================================================================ +16:23:29 ============================================================================ +16:23:29 Slot Id : <394> +16:23:29 Transaction Type : REQUEST +16:23:29 Received From : +16:23:29 ============================================================================ +16:23:29 FNo. Len. Field Value +16:23:29 ============================================================================ +16:23:29 [ 1] [ 4] [0200] +16:23:29 [ 2] [ 16] [6688990103265300] +16:23:29 [ 3] [ 6] [300000] +16:23:29 [ 4] [ 12] [000000000000] +16:23:29 [ 7] [ 10] [0320162324] +16:23:29 [ 11] [ 6] [797892] +16:23:29 [ 12] [ 6] [162324] +16:23:29 [ 13] [ 4] [0320] +16:23:29 [ 15] [ 4] [0320] +16:23:29 [ 18] [ 4] [6011] +16:23:29 [ 22] [ 3] [900] +16:23:29 [ 25] [ 2] [02] +16:23:29 [ 28] [ 9] [D00000000] +16:23:29 [ 32] [ 6] [621354] +16:23:29 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:23:29 [ 37] [ 12] [507903499587] +16:23:29 [ 41] [ 8] [06002200] +16:23:29 [ 42] [ 15] [NATIVE ] +16:23:29 [ 43] [ 40] [Beng Market Beng LAO] +16:23:29 [ 49] [ 3] [418] +16:23:29 [ 52] [ 16] [8F3D830A0CF3943E] +16:23:29 ============================================================================ +16:23:29 + + +waiting on router queue for slot.... +16:23:29 Sending to : <4> +16:23:29 ============================================================================ +16:23:30 ============================================================================ +16:23:30 Slot Id : <394> +16:23:30 Transaction Type : RESPONSE +16:23:30 Received From : +16:23:30 ============================================================================ +16:23:30 FNo. Len. Field Value +16:23:30 ============================================================================ +16:23:30 [ 1] [ 4] [0210] +16:23:30 [ 2] [ 16] [6688990103265300] +16:23:30 [ 3] [ 6] [300000] +16:23:30 [ 4] [ 12] [000000000000] +16:23:30 [ 11] [ 6] [797892] +16:23:30 [ 12] [ 6] [162324] +16:23:30 [ 15] [ 4] [0320] +16:23:30 [ 18] [ 4] [6011] +16:23:30 [ 32] [ 6] [621354] +16:23:30 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:23:30 [ 37] [ 12] [507903499587] +16:23:30 [ 38] [ 6] [383568] +16:23:30 [ 39] [ 2] [00] +16:23:30 [ 41] [ 8] [06002200] +16:23:30 [ 49] [ 3] [418] +16:23:30 [ 54] [ 20] [0002418C000306209050] +16:23:30 ============================================================================ +16:23:30 Sending to : +16:23:30 ============================================================================ +16:23:30 + + +waiting on router queue for slot.... +16:23:31 ============================================================================ +16:23:31 Slot Id : <394> +16:23:31 Transaction Type : RESPONSE +16:23:31 Received From : +16:23:31 ============================================================================ +16:23:31 FNo. Len. Field Value +16:23:31 ============================================================================ +16:23:31 [ 1] [ 4] [0210] +16:23:31 [ 2] [ 16] [6688990103265300] +16:23:31 [ 3] [ 6] [300000] +16:23:31 [ 4] [ 12] [000000000000] +16:23:31 [ 11] [ 6] [797892] +16:23:31 [ 12] [ 6] [162324] +16:23:31 [ 15] [ 4] [0320] +16:23:31 [ 18] [ 4] [6011] +16:23:31 [ 32] [ 6] [621354] +16:23:31 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:23:31 [ 37] [ 12] [507903499587] +16:23:31 [ 38] [ 6] [383568] +16:23:31 [ 39] [ 2] [00] +16:23:31 [ 41] [ 8] [06002200] +16:23:31 [ 49] [ 3] [418] +16:23:31 [ 54] [ 20] [0002418C000306209050] +16:23:31 ============================================================================ +16:23:31 Calculate Source COMM Id = 0 +16:23:31 ============================================================================ +16:23:31 + + +waiting on router queue for slot.... +16:23:32 ============================================================================ +16:23:32 Slot Id : <399> +16:23:32 Transaction Type : REQUEST +16:23:32 Received From : +16:23:32 ============================================================================ +16:23:32 FNo. Len. Field Value +16:23:32 ============================================================================ +16:23:32 [ 1] [ 4] [0200] +16:23:32 [ 2] [ 16] [6688990040163766] +16:23:32 [ 3] [ 6] [010000] +16:23:32 [ 4] [ 12] [000080000000] +16:23:32 [ 7] [ 10] [0320162327] +16:23:32 [ 11] [ 6] [797914] +16:23:32 [ 12] [ 6] [162327] +16:23:32 [ 13] [ 4] [0320] +16:23:32 [ 15] [ 4] [0320] +16:23:32 [ 18] [ 4] [6011] +16:23:32 [ 22] [ 3] [900] +16:23:32 [ 25] [ 2] [02] +16:23:32 [ 28] [ 9] [D00002000] +16:23:32 [ 32] [ 6] [621354] +16:23:32 [ 35] [ 37] [6688990040163766=98051261104476700000] +16:23:32 [ 37] [ 12] [507904645150] +16:23:32 [ 41] [ 8] [17000900] +16:23:32 [ 42] [ 15] [NATIVE ] +16:23:32 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:23:32 [ 49] [ 3] [418] +16:23:32 [ 52] [ 16] [BF6CDD7F98BC6E72] +16:23:32 ============================================================================ +16:23:32 + + +waiting on router queue for slot.... +16:23:32 Sending to : +16:23:32 ============================================================================ +16:23:32 Sending to : +16:23:32 ============================================================================ +16:23:33 ============================================================================ +16:23:33 Slot Id : <399> +16:23:33 Transaction Type : REQUEST +16:23:33 Received From : +16:23:33 ============================================================================ +16:23:33 FNo. Len. Field Value +16:23:33 ============================================================================ +16:23:33 [ 1] [ 4] [0200] +16:23:33 [ 2] [ 16] [6688990040163766] +16:23:33 [ 3] [ 6] [010000] +16:23:33 [ 4] [ 12] [000080000000] +16:23:33 [ 7] [ 10] [0320162327] +16:23:33 [ 11] [ 6] [797914] +16:23:33 [ 12] [ 6] [162327] +16:23:33 [ 13] [ 4] [0320] +16:23:33 [ 15] [ 4] [0320] +16:23:33 [ 18] [ 4] [6011] +16:23:33 [ 22] [ 3] [900] +16:23:33 [ 25] [ 2] [02] +16:23:33 [ 28] [ 9] [D00002000] +16:23:33 [ 32] [ 6] [621354] +16:23:33 [ 35] [ 37] [6688990040163766=98051261104476700000] +16:23:33 [ 37] [ 12] [507904645150] +16:23:33 [ 41] [ 8] [17000900] +16:23:33 [ 42] [ 15] [NATIVE ] +16:23:33 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:23:33 [ 49] [ 3] [418] +16:23:33 [ 52] [ 16] [BF6CDD7F98BC6E72] +16:23:33 ============================================================================ +16:23:33 + + +waiting on router queue for slot.... +16:23:33 Sending to : +16:23:33 ============================================================================ +16:23:33 ============================================================================ +16:23:33 Slot Id : <399> +16:23:33 Transaction Type : REQUEST +16:23:33 Received From : +16:23:33 ============================================================================ +16:23:33 FNo. Len. Field Value +16:23:33 ============================================================================ +16:23:33 [ 1] [ 4] [0200] +16:23:33 [ 2] [ 16] [6688990040163766] +16:23:33 [ 3] [ 6] [010000] +16:23:33 [ 4] [ 12] [000080000000] +16:23:33 [ 7] [ 10] [0320162327] +16:23:33 [ 11] [ 6] [797914] +16:23:33 [ 12] [ 6] [162327] +16:23:33 [ 13] [ 4] [0320] +16:23:33 [ 15] [ 4] [0320] +16:23:33 [ 18] [ 4] [6011] +16:23:33 [ 22] [ 3] [900] +16:23:33 [ 25] [ 2] [02] +16:23:33 [ 28] [ 9] [D00002000] +16:23:33 [ 32] [ 6] [621354] +16:23:33 [ 35] [ 37] [6688990040163766=98051261104476700000] +16:23:33 [ 37] [ 12] [507904645150] +16:23:33 [ 41] [ 8] [17000900] +16:23:33 [ 42] [ 15] [NATIVE ] +16:23:33 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:23:33 [ 49] [ 3] [418] +16:23:33 [ 52] [ 16] [AEA52D5C5AABF419] +16:23:33 ============================================================================ +16:23:33 + + +waiting on router queue for slot.... +16:23:33 Sending to : <4> +16:23:33 ============================================================================ +16:23:33 ============================================================================ +16:23:33 Slot Id : <399> +16:23:33 Transaction Type : RESPONSE +16:23:33 Received From : +16:23:33 ============================================================================ +16:23:33 FNo. Len. Field Value +16:23:33 ============================================================================ +16:23:33 [ 1] [ 4] [0210] +16:23:33 [ 2] [ 16] [6688990040163766] +16:23:33 [ 3] [ 6] [010000] +16:23:33 [ 4] [ 12] [000080000000] +16:23:33 [ 7] [ 10] [0320162327] +16:23:33 [ 11] [ 6] [797914] +16:23:33 [ 12] [ 6] [162327] +16:23:33 [ 13] [ 4] [0320] +16:23:33 [ 15] [ 4] [0320] +16:23:33 [ 18] [ 4] [6011] +16:23:33 [ 22] [ 3] [021] +16:23:33 [ 32] [ 6] [621354] +16:23:33 [ 35] [ 37] [6688990040163766=98051261104476700000] +16:23:33 [ 37] [ 12] [507904645150] +16:23:33 [ 39] [ 2] [62] +16:23:33 [ 41] [ 8] [17000900] +16:23:33 [ 49] [ 3] [418] +16:23:33 ============================================================================ +16:23:33 Sending to : +16:23:33 ============================================================================ +16:23:33 + + +waiting on router queue for slot.... +16:23:34 ============================================================================ +16:23:34 Slot Id : <399> +16:23:34 Transaction Type : RESPONSE +16:23:34 Received From : +16:23:34 ============================================================================ +16:23:34 FNo. Len. Field Value +16:23:34 ============================================================================ +16:23:34 [ 1] [ 4] [0210] +16:23:34 [ 2] [ 16] [6688990040163766] +16:23:34 [ 3] [ 6] [010000] +16:23:34 [ 4] [ 12] [000080000000] +16:23:34 [ 7] [ 10] [0320162327] +16:23:34 [ 11] [ 6] [797914] +16:23:34 [ 12] [ 6] [162327] +16:23:34 [ 13] [ 4] [0320] +16:23:34 [ 15] [ 4] [0320] +16:23:34 [ 18] [ 4] [6011] +16:23:34 [ 22] [ 3] [021] +16:23:34 [ 32] [ 6] [621354] +16:23:34 [ 35] [ 37] [6688990040163766=98051261104476700000] +16:23:34 [ 37] [ 12] [507904645150] +16:23:34 [ 39] [ 2] [62] +16:23:34 [ 41] [ 8] [17000900] +16:23:34 [ 49] [ 3] [418] +16:23:34 ============================================================================ +16:23:34 Calculate Source COMM Id = 0 +16:23:34 ============================================================================ +16:23:34 + + +waiting on router queue for slot.... +16:23:34 ============================================================================ +16:23:34 Slot Id : <418> +16:23:34 Transaction Type : REQUEST +16:23:34 Received From : +16:23:34 ============================================================================ +16:23:34 FNo. Len. Field Value +16:23:34 ============================================================================ +16:23:34 [ 1] [ 4] [0800] +16:23:34 [ 7] [ 10] [0320233522] +16:23:34 [ 11] [ 6] [163522] +16:23:34 [ 37] [ 12] [57916163522] +16:23:34 [ 70] [ 3] [301] +16:23:34 ============================================================================ +16:23:34 + + +waiting on router queue for slot.... +16:23:34 Sending to : +16:23:34 ============================================================================ +16:23:34 ============================================================================ +16:23:34 Slot Id : <418> +16:23:34 Transaction Type : RESPONSE +16:23:34 Received From : +16:23:34 ============================================================================ +16:23:34 FNo. Len. Field Value +16:23:34 ============================================================================ +16:23:34 [ 1] [ 4] [0810] +16:23:34 [ 7] [ 10] [0320233522] +16:23:34 [ 11] [ 6] [163522] +16:23:34 [ 37] [ 12] [579161635220] +16:23:34 [ 39] [ 2] [00] +16:23:34 [ 70] [ 3] [810] +16:23:34 ============================================================================ +16:23:34 Calculate Source COMM Id = 6 +16:23:34 ============================================================================ +16:23:34 + + +waiting on router queue for slot.... +16:23:37 ============================================================================ +16:23:37 Slot Id : <387> +16:23:37 Transaction Type : REQUEST +16:23:37 Received From : +16:23:37 ============================================================================ +16:23:37 FNo. Len. Field Value +16:23:37 ============================================================================ +16:23:37 [ 1] [ 4] [0200] +16:23:37 [ 2] [ 16] [6688990105247207] +16:23:37 [ 3] [ 6] [301000] +16:23:37 [ 4] [ 12] [000000000000] +16:23:37 [ 7] [ 10] [0320162333] +16:23:37 [ 11] [ 6] [797956] +16:23:37 [ 12] [ 6] [162333] +16:23:37 [ 13] [ 4] [0320] +16:23:37 [ 15] [ 4] [0320] +16:23:37 [ 18] [ 4] [6011] +16:23:37 [ 22] [ 3] [900] +16:23:37 [ 25] [ 2] [02] +16:23:37 [ 28] [ 9] [D00000000] +16:23:37 [ 32] [ 6] [621354] +16:23:37 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:23:37 [ 37] [ 12] [507904719777] +16:23:37 [ 41] [ 8] [18001000] +16:23:37 [ 42] [ 15] [NATIVE ] +16:23:37 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:23:37 [ 49] [ 3] [418] +16:23:37 [ 52] [ 16] [667459472C5E1498] +16:23:37 ============================================================================ +16:23:37 + + +waiting on router queue for slot.... +16:23:37 Sending to : +16:23:37 ============================================================================ +16:23:37 Sending to : +16:23:37 ============================================================================ +16:23:38 ============================================================================ +16:23:38 Slot Id : <387> +16:23:38 Transaction Type : REQUEST +16:23:38 Received From : +16:23:38 ============================================================================ +16:23:38 FNo. Len. Field Value +16:23:38 ============================================================================ +16:23:38 [ 1] [ 4] [0200] +16:23:38 [ 2] [ 16] [6688990105247207] +16:23:38 [ 3] [ 6] [301000] +16:23:38 [ 4] [ 12] [000000000000] +16:23:38 [ 7] [ 10] [0320162333] +16:23:38 [ 11] [ 6] [797956] +16:23:38 [ 12] [ 6] [162333] +16:23:38 [ 13] [ 4] [0320] +16:23:38 [ 15] [ 4] [0320] +16:23:38 [ 18] [ 4] [6011] +16:23:38 [ 22] [ 3] [900] +16:23:38 [ 25] [ 2] [02] +16:23:38 [ 28] [ 9] [D00000000] +16:23:38 [ 32] [ 6] [621354] +16:23:38 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:23:38 [ 37] [ 12] [507904719777] +16:23:38 [ 41] [ 8] [18001000] +16:23:38 [ 42] [ 15] [NATIVE ] +16:23:38 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:23:38 [ 49] [ 3] [418] +16:23:38 [ 52] [ 16] [667459472C5E1498] +16:23:38 ============================================================================ +16:23:38 + + +waiting on router queue for slot.... +16:23:38 Sending to : +16:23:38 ============================================================================ +16:23:38 ============================================================================ +16:23:38 Slot Id : <387> +16:23:38 Transaction Type : REQUEST +16:23:38 Received From : +16:23:38 ============================================================================ +16:23:38 FNo. Len. Field Value +16:23:38 ============================================================================ +16:23:38 [ 1] [ 4] [0200] +16:23:38 [ 2] [ 16] [6688990105247207] +16:23:38 [ 3] [ 6] [301000] +16:23:38 [ 4] [ 12] [000000000000] +16:23:38 [ 7] [ 10] [0320162333] +16:23:38 [ 11] [ 6] [797956] +16:23:38 [ 12] [ 6] [162333] +16:23:38 [ 13] [ 4] [0320] +16:23:38 [ 15] [ 4] [0320] +16:23:38 [ 18] [ 4] [6011] +16:23:38 [ 22] [ 3] [900] +16:23:38 [ 25] [ 2] [02] +16:23:38 [ 28] [ 9] [D00000000] +16:23:38 [ 32] [ 6] [621354] +16:23:38 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:23:38 [ 37] [ 12] [507904719777] +16:23:38 [ 41] [ 8] [18001000] +16:23:38 [ 42] [ 15] [NATIVE ] +16:23:38 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:23:38 [ 49] [ 3] [418] +16:23:38 [ 52] [ 16] [2740F324422C69C1] +16:23:38 ============================================================================ +16:23:38 + + +waiting on router queue for slot.... +16:23:38 Sending to : <4> +16:23:38 ============================================================================ +16:23:38 ============================================================================ +16:23:38 Slot Id : <387> +16:23:38 Transaction Type : RESPONSE +16:23:38 Received From : +16:23:38 ============================================================================ +16:23:38 FNo. Len. Field Value +16:23:38 ============================================================================ +16:23:38 [ 1] [ 4] [0210] +16:23:38 [ 2] [ 16] [6688990105247207] +16:23:38 [ 3] [ 6] [301000] +16:23:38 [ 4] [ 12] [000000000000] +16:23:38 [ 11] [ 6] [797956] +16:23:38 [ 12] [ 6] [162333] +16:23:38 [ 15] [ 4] [0320] +16:23:38 [ 18] [ 4] [6011] +16:23:38 [ 32] [ 6] [621354] +16:23:38 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:23:38 [ 37] [ 12] [507904719777] +16:23:38 [ 38] [ 6] [116870] +16:23:38 [ 39] [ 2] [00] +16:23:38 [ 41] [ 8] [18001000] +16:23:38 [ 49] [ 3] [418] +16:23:38 [ 54] [ 20] [1002418C000079956582] +16:23:38 ============================================================================ +16:23:38 Sending to : +16:23:38 ============================================================================ +16:23:38 + + +waiting on router queue for slot.... +16:23:39 ============================================================================ +16:23:39 Slot Id : <372> +16:23:39 Transaction Type : REQUEST +16:23:39 Received From : +16:23:39 ============================================================================ +16:23:39 FNo. Len. Field Value +16:23:39 ============================================================================ +16:23:39 [ 1] [ 4] [0800] +16:23:39 [ 7] [ 10] [0320092246] +16:23:39 [ 11] [ 6] [157228] +16:23:39 [ 70] [ 3] [301] +16:23:39 ============================================================================ +16:23:39 + + +waiting on router queue for slot.... +16:23:39 Sending to : +16:23:39 ============================================================================ +16:23:39 ============================================================================ +16:23:39 Slot Id : <372> +16:23:39 Transaction Type : RESPONSE +16:23:39 Received From : +16:23:39 ============================================================================ +16:23:39 FNo. Len. Field Value +16:23:39 ============================================================================ +16:23:39 [ 1] [ 4] [0810] +16:23:39 [ 7] [ 10] [0320092246] +16:23:39 [ 11] [ 6] [157228] +16:23:39 [ 39] [ 2] [00] +16:23:39 [ 70] [ 3] [301] +16:23:39 ============================================================================ +16:23:39 Calculate Source COMM Id = 2 +16:23:39 ============================================================================ +16:23:39 + + +waiting on router queue for slot.... +16:23:40 ============================================================================ +16:23:40 Slot Id : <387> +16:23:40 Transaction Type : RESPONSE +16:23:40 Received From : +16:23:40 ============================================================================ +16:23:40 FNo. Len. Field Value +16:23:40 ============================================================================ +16:23:40 [ 1] [ 4] [0210] +16:23:40 [ 2] [ 16] [6688990105247207] +16:23:40 [ 3] [ 6] [301000] +16:23:40 [ 4] [ 12] [000000000000] +16:23:40 [ 11] [ 6] [797956] +16:23:40 [ 12] [ 6] [162333] +16:23:40 [ 15] [ 4] [0320] +16:23:40 [ 18] [ 4] [6011] +16:23:40 [ 32] [ 6] [621354] +16:23:40 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:23:40 [ 37] [ 12] [507904719777] +16:23:40 [ 38] [ 6] [116870] +16:23:40 [ 39] [ 2] [00] +16:23:40 [ 41] [ 8] [18001000] +16:23:40 [ 49] [ 3] [418] +16:23:40 [ 54] [ 20] [1002418C000079956582] +16:23:40 ============================================================================ +16:23:40 Calculate Source COMM Id = 0 +16:23:40 ============================================================================ +16:23:40 + + +waiting on router queue for slot.... +16:23:42 ============================================================================ +16:23:42 Slot Id : <368> +16:23:42 Transaction Type : REQUEST +16:23:42 Received From : +16:23:42 ============================================================================ +16:23:42 FNo. Len. Field Value +16:23:42 ============================================================================ +16:23:42 [ 1] [ 4] [0200] +16:23:42 [ 2] [ 16] [6688990105388100] +16:23:42 [ 3] [ 6] [012000] +16:23:42 [ 4] [ 12] [000010000000] +16:23:42 [ 7] [ 10] [0320162337] +16:23:42 [ 11] [ 6] [797982] +16:23:42 [ 12] [ 6] [162337] +16:23:42 [ 13] [ 4] [0320] +16:23:42 [ 15] [ 4] [0320] +16:23:42 [ 18] [ 4] [6011] +16:23:42 [ 22] [ 3] [900] +16:23:42 [ 25] [ 2] [02] +16:23:42 [ 28] [ 9] [D00002000] +16:23:42 [ 32] [ 6] [621354] +16:23:42 [ 35] [ 37] [6688990105388100=43091231810066900000] +16:23:42 [ 37] [ 12] [507904795748] +16:23:42 [ 41] [ 8] [07001500] +16:23:42 [ 42] [ 15] [NATIVE ] +16:23:42 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +16:23:42 [ 49] [ 3] [418] +16:23:42 [ 52] [ 16] [280B34FA1F258870] +16:23:42 ============================================================================ +16:23:42 + + +waiting on router queue for slot.... +16:23:42 Sending to : +16:23:42 ============================================================================ +16:23:42 Sending to : +16:23:42 ============================================================================ +16:23:42 ============================================================================ +16:23:42 Slot Id : <368> +16:23:42 Transaction Type : REQUEST +16:23:42 Received From : +16:23:42 ============================================================================ +16:23:42 FNo. Len. Field Value +16:23:42 ============================================================================ +16:23:42 [ 1] [ 4] [0200] +16:23:42 [ 2] [ 16] [6688990105388100] +16:23:42 [ 3] [ 6] [012000] +16:23:42 [ 4] [ 12] [000010000000] +16:23:42 [ 7] [ 10] [0320162337] +16:23:42 [ 11] [ 6] [797982] +16:23:42 [ 12] [ 6] [162337] +16:23:42 [ 13] [ 4] [0320] +16:23:42 [ 15] [ 4] [0320] +16:23:42 [ 18] [ 4] [6011] +16:23:42 [ 22] [ 3] [900] +16:23:42 [ 25] [ 2] [02] +16:23:42 [ 28] [ 9] [D00002000] +16:23:42 [ 32] [ 6] [621354] +16:23:42 [ 35] [ 37] [6688990105388100=43091231810066900000] +16:23:42 [ 37] [ 12] [507904795748] +16:23:42 [ 41] [ 8] [07001500] +16:23:42 [ 42] [ 15] [NATIVE ] +16:23:42 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +16:23:42 [ 49] [ 3] [418] +16:23:42 [ 52] [ 16] [280B34FA1F258870] +16:23:42 ============================================================================ +16:23:42 + + +waiting on router queue for slot.... +16:23:42 Sending to : +16:23:42 ============================================================================ +16:23:43 ============================================================================ +16:23:43 Slot Id : <368> +16:23:43 Transaction Type : REQUEST +16:23:43 Received From : +16:23:43 ============================================================================ +16:23:43 FNo. Len. Field Value +16:23:43 ============================================================================ +16:23:43 [ 1] [ 4] [0200] +16:23:43 [ 2] [ 16] [6688990105388100] +16:23:43 [ 3] [ 6] [012000] +16:23:43 [ 4] [ 12] [000010000000] +16:23:43 [ 7] [ 10] [0320162337] +16:23:43 [ 11] [ 6] [797982] +16:23:43 [ 12] [ 6] [162337] +16:23:43 [ 13] [ 4] [0320] +16:23:43 [ 15] [ 4] [0320] +16:23:43 [ 18] [ 4] [6011] +16:23:43 [ 22] [ 3] [900] +16:23:43 [ 25] [ 2] [02] +16:23:43 [ 28] [ 9] [D00002000] +16:23:43 [ 32] [ 6] [621354] +16:23:43 [ 35] [ 37] [6688990105388100=43091231810066900000] +16:23:43 [ 37] [ 12] [507904795748] +16:23:43 [ 41] [ 8] [07001500] +16:23:43 [ 42] [ 15] [NATIVE ] +16:23:43 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +16:23:43 [ 49] [ 3] [418] +16:23:43 [ 52] [ 16] [28074EE9DD13372F] +16:23:43 ============================================================================ +16:23:43 + + +waiting on router queue for slot.... +16:23:43 Sending to : <4> +16:23:43 ============================================================================ +16:23:43 ============================================================================ +16:23:43 Slot Id : <368> +16:23:43 Transaction Type : RESPONSE +16:23:43 Received From : +16:23:43 ============================================================================ +16:23:43 FNo. Len. Field Value +16:23:43 ============================================================================ +16:23:43 [ 1] [ 4] [0210] +16:23:43 [ 2] [ 16] [6688990105388100] +16:23:43 [ 3] [ 6] [012000] +16:23:43 [ 4] [ 12] [000010000000] +16:23:43 [ 7] [ 10] [0320162337] +16:23:43 [ 11] [ 6] [797982] +16:23:43 [ 12] [ 6] [162337] +16:23:43 [ 13] [ 4] [0320] +16:23:43 [ 15] [ 4] [0320] +16:23:43 [ 18] [ 4] [6011] +16:23:43 [ 22] [ 3] [021] +16:23:43 [ 32] [ 6] [621354] +16:23:43 [ 35] [ 37] [6688990105388100=43091231810066900000] +16:23:43 [ 37] [ 12] [507904795748] +16:23:43 [ 38] [ 6] [162133] +16:23:43 [ 39] [ 2] [55] +16:23:43 [ 41] [ 8] [07001500] +16:23:43 [ 49] [ 3] [418] +16:23:43 ============================================================================ +16:23:43 Sending to : +16:23:43 ============================================================================ +16:23:43 + + +waiting on router queue for slot.... +16:23:44 ============================================================================ +16:23:44 Slot Id : <368> +16:23:44 Transaction Type : RESPONSE +16:23:44 Received From : +16:23:44 ============================================================================ +16:23:44 FNo. Len. Field Value +16:23:44 ============================================================================ +16:23:44 [ 1] [ 4] [0210] +16:23:44 [ 2] [ 16] [6688990105388100] +16:23:44 [ 3] [ 6] [012000] +16:23:44 [ 4] [ 12] [000010000000] +16:23:44 [ 7] [ 10] [0320162337] +16:23:44 [ 11] [ 6] [797982] +16:23:44 [ 12] [ 6] [162337] +16:23:44 [ 13] [ 4] [0320] +16:23:44 [ 15] [ 4] [0320] +16:23:44 [ 18] [ 4] [6011] +16:23:44 [ 22] [ 3] [021] +16:23:44 [ 32] [ 6] [621354] +16:23:44 [ 35] [ 37] [6688990105388100=43091231810066900000] +16:23:44 [ 37] [ 12] [507904795748] +16:23:44 [ 38] [ 6] [162133] +16:23:44 [ 39] [ 2] [55] +16:23:44 [ 41] [ 8] [07001500] +16:23:44 [ 49] [ 3] [418] +16:23:44 ============================================================================ +16:23:44 Calculate Source COMM Id = 0 +16:23:44 ============================================================================ +16:23:44 + + +waiting on router queue for slot.... +16:23:49 ============================================================================ +16:23:49 Slot Id : <419> +16:23:49 Transaction Type : REQUEST +16:23:49 Received From : +16:23:49 ============================================================================ +16:23:49 FNo. Len. Field Value +16:23:49 ============================================================================ +16:23:49 [ 1] [ 4] [0200] +16:23:49 [ 2] [ 16] [6688990108430107] +16:23:49 [ 3] [ 6] [010000] +16:23:49 [ 4] [ 12] [000100000000] +16:23:49 [ 7] [ 10] [0320162344] +16:23:49 [ 11] [ 6] [798011] +16:23:49 [ 12] [ 6] [162344] +16:23:49 [ 13] [ 4] [0320] +16:23:49 [ 15] [ 4] [0320] +16:23:49 [ 18] [ 4] [6011] +16:23:49 [ 22] [ 3] [900] +16:23:49 [ 25] [ 2] [02] +16:23:49 [ 28] [ 9] [D00002000] +16:23:49 [ 32] [ 6] [621354] +16:23:49 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:23:49 [ 37] [ 12] [507903743393] +16:23:49 [ 41] [ 8] [06002400] +16:23:49 [ 42] [ 15] [NATIVE ] +16:23:49 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:23:49 [ 49] [ 3] [418] +16:23:49 [ 52] [ 16] [FBFD2F498C27BE7C] +16:23:49 ============================================================================ +16:23:49 + + +waiting on router queue for slot.... +16:23:49 Sending to : +16:23:49 ============================================================================ +16:23:49 Sending to : +16:23:49 ============================================================================ +16:23:49 ============================================================================ +16:23:49 Slot Id : <419> +16:23:49 Transaction Type : REQUEST +16:23:49 Received From : +16:23:49 ============================================================================ +16:23:49 FNo. Len. Field Value +16:23:49 ============================================================================ +16:23:49 [ 1] [ 4] [0200] +16:23:49 [ 2] [ 16] [6688990108430107] +16:23:49 [ 3] [ 6] [010000] +16:23:49 [ 4] [ 12] [000100000000] +16:23:49 [ 7] [ 10] [0320162344] +16:23:49 [ 11] [ 6] [798011] +16:23:49 [ 12] [ 6] [162344] +16:23:49 [ 13] [ 4] [0320] +16:23:49 [ 15] [ 4] [0320] +16:23:49 [ 18] [ 4] [6011] +16:23:49 [ 22] [ 3] [900] +16:23:49 [ 25] [ 2] [02] +16:23:49 [ 28] [ 9] [D00002000] +16:23:49 [ 32] [ 6] [621354] +16:23:49 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:23:49 [ 37] [ 12] [507903743393] +16:23:49 [ 41] [ 8] [06002400] +16:23:49 [ 42] [ 15] [NATIVE ] +16:23:49 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:23:49 [ 49] [ 3] [418] +16:23:49 [ 52] [ 16] [FBFD2F498C27BE7C] +16:23:49 ============================================================================ +16:23:49 + + +waiting on router queue for slot.... +16:23:49 Sending to : +16:23:49 ============================================================================ +16:23:49 ============================================================================ +16:23:49 Slot Id : <419> +16:23:49 Transaction Type : REQUEST +16:23:49 Received From : +16:23:49 ============================================================================ +16:23:49 FNo. Len. Field Value +16:23:49 ============================================================================ +16:23:49 [ 1] [ 4] [0200] +16:23:49 [ 2] [ 16] [6688990108430107] +16:23:49 [ 3] [ 6] [010000] +16:23:49 [ 4] [ 12] [000100000000] +16:23:49 [ 7] [ 10] [0320162344] +16:23:49 [ 11] [ 6] [798011] +16:23:49 [ 12] [ 6] [162344] +16:23:49 [ 13] [ 4] [0320] +16:23:49 [ 15] [ 4] [0320] +16:23:49 [ 18] [ 4] [6011] +16:23:49 [ 22] [ 3] [900] +16:23:49 [ 25] [ 2] [02] +16:23:49 [ 28] [ 9] [D00002000] +16:23:49 [ 32] [ 6] [621354] +16:23:49 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:23:49 [ 37] [ 12] [507903743393] +16:23:49 [ 41] [ 8] [06002400] +16:23:49 [ 42] [ 15] [NATIVE ] +16:23:49 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:23:49 [ 49] [ 3] [418] +16:23:49 [ 52] [ 16] [4168FB5C1D2D30C0] +16:23:49 ============================================================================ +16:23:49 + + +waiting on router queue for slot.... +16:23:49 Sending to : <4> +16:23:49 ============================================================================ +16:23:50 ============================================================================ +16:23:50 Slot Id : <419> +16:23:50 Transaction Type : RESPONSE +16:23:50 Received From : +16:23:50 ============================================================================ +16:23:50 FNo. Len. Field Value +16:23:50 ============================================================================ +16:23:50 [ 1] [ 4] [0210] +16:23:50 [ 2] [ 16] [6688990108430107] +16:23:50 [ 3] [ 6] [010000] +16:23:50 [ 4] [ 12] [000100000000] +16:23:50 [ 11] [ 6] [798011] +16:23:50 [ 12] [ 6] [162344] +16:23:50 [ 15] [ 4] [0320] +16:23:50 [ 18] [ 4] [6011] +16:23:50 [ 32] [ 6] [621354] +16:23:50 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:23:50 [ 37] [ 12] [507903743393] +16:23:50 [ 38] [ 6] [583175] +16:23:50 [ 39] [ 2] [00] +16:23:50 [ 41] [ 8] [06002400] +16:23:50 [ 49] [ 3] [418] +16:23:50 [ 54] [ 20] [0002418C000193561979] +16:23:50 ============================================================================ +16:23:50 Sending to : +16:23:50 ============================================================================ +16:23:50 + + +waiting on router queue for slot.... +16:23:52 ============================================================================ +16:23:52 Slot Id : <419> +16:23:52 Transaction Type : RESPONSE +16:23:52 Received From : +16:23:52 ============================================================================ +16:23:52 FNo. Len. Field Value +16:23:52 ============================================================================ +16:23:52 [ 1] [ 4] [0210] +16:23:52 [ 2] [ 16] [6688990108430107] +16:23:52 [ 3] [ 6] [010000] +16:23:52 [ 4] [ 12] [000100000000] +16:23:52 [ 11] [ 6] [798011] +16:23:52 [ 12] [ 6] [162344] +16:23:52 [ 15] [ 4] [0320] +16:23:52 [ 18] [ 4] [6011] +16:23:52 [ 32] [ 6] [621354] +16:23:52 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:23:52 [ 37] [ 12] [507903743393] +16:23:52 [ 38] [ 6] [583175] +16:23:52 [ 39] [ 2] [00] +16:23:52 [ 41] [ 8] [06002400] +16:23:52 [ 49] [ 3] [418] +16:23:52 [ 54] [ 20] [0002418C000193561979] +16:23:52 ============================================================================ +16:23:52 Calculate Source COMM Id = 0 +16:23:52 ============================================================================ +16:23:52 + + +waiting on router queue for slot.... +16:23:54 ============================================================================ +16:23:54 Slot Id : <406> +16:23:54 Transaction Type : REQUEST +16:23:54 Received From : +16:23:54 ============================================================================ +16:23:54 FNo. Len. Field Value +16:23:54 ============================================================================ +16:23:54 [ 1] [ 4] [0800] +16:23:54 [ 7] [ 10] [0320092301] +16:23:54 [ 11] [ 6] [157229] +16:23:54 [ 70] [ 3] [301] +16:23:54 ============================================================================ +16:23:54 + + +waiting on router queue for slot.... +16:23:54 Sending to : +16:23:54 ============================================================================ +16:23:54 ============================================================================ +16:23:54 Slot Id : <406> +16:23:54 Transaction Type : RESPONSE +16:23:54 Received From : +16:23:54 ============================================================================ +16:23:54 FNo. Len. Field Value +16:23:54 ============================================================================ +16:23:54 [ 1] [ 4] [0810] +16:23:54 [ 7] [ 10] [0320092301] +16:23:54 [ 11] [ 6] [157229] +16:23:54 [ 39] [ 2] [00] +16:23:54 [ 70] [ 3] [301] +16:23:54 ============================================================================ +16:23:54 Calculate Source COMM Id = 2 +16:23:54 ============================================================================ +16:23:54 + + +waiting on router queue for slot.... +16:24:02 ============================================================================ +16:24:02 Slot Id : <411> +16:24:02 Transaction Type : REQUEST +16:24:02 Received From : +16:24:02 ============================================================================ +16:24:02 FNo. Len. Field Value +16:24:02 ============================================================================ +16:24:02 [ 1] [ 4] [0200] +16:24:02 [ 2] [ 16] [6213545001047244] +16:24:02 [ 3] [ 6] [300000] +16:24:02 [ 4] [ 12] [000000000000] +16:24:02 [ 7] [ 10] [0320162152] +16:24:02 [ 11] [ 6] [951613] +16:24:02 [ 12] [ 6] [162152] +16:24:02 [ 13] [ 4] [0320] +16:24:02 [ 15] [ 4] [0320] +16:24:02 [ 18] [ 4] [6011] +16:24:02 [ 19] [ 3] [418] +16:24:02 [ 22] [ 3] [021] +16:24:02 [ 25] [ 2] [01] +16:24:02 [ 28] [ 9] [D00000000] +16:24:02 [ 32] [ 6] [668899] +16:24:02 [ 35] [ 32] [6213545001047244=491212014724970] +16:24:02 [ 37] [ 12] [507900270989] +16:24:02 [ 41] [ 8] [03010004] +16:24:02 [ 42] [ 15] [APT ] +16:24:02 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +16:24:02 [ 49] [ 3] [418] +16:24:02 [ 52] [ 16] [4DE46159C70DFFF6] +16:24:02 ============================================================================ +16:24:02 + + +waiting on router queue for slot.... +16:24:02 Sending to : +16:24:02 ============================================================================ +16:24:02 Sending to : +16:24:02 ============================================================================ +16:24:03 ============================================================================ +16:24:03 Slot Id : <411> +16:24:03 Transaction Type : REQUEST +16:24:03 Received From : +16:24:03 ============================================================================ +16:24:03 FNo. Len. Field Value +16:24:03 ============================================================================ +16:24:03 [ 1] [ 4] [0200] +16:24:03 [ 2] [ 16] [6213545001047244] +16:24:03 [ 3] [ 6] [300000] +16:24:03 [ 4] [ 12] [000000000000] +16:24:03 [ 7] [ 10] [0320162152] +16:24:03 [ 11] [ 6] [951613] +16:24:03 [ 12] [ 6] [162152] +16:24:03 [ 13] [ 4] [0320] +16:24:03 [ 15] [ 4] [0320] +16:24:03 [ 18] [ 4] [6011] +16:24:03 [ 19] [ 3] [418] +16:24:03 [ 22] [ 3] [021] +16:24:03 [ 25] [ 2] [01] +16:24:03 [ 28] [ 9] [D00000000] +16:24:03 [ 32] [ 6] [668899] +16:24:03 [ 35] [ 32] [6213545001047244=491212014724970] +16:24:03 [ 37] [ 12] [507900270989] +16:24:03 [ 41] [ 8] [03010004] +16:24:03 [ 42] [ 15] [APT ] +16:24:03 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +16:24:03 [ 49] [ 3] [418] +16:24:03 [ 52] [ 16] [4DE46159C70DFFF6] +16:24:03 ============================================================================ +16:24:03 + + +waiting on router queue for slot.... +16:24:03 Sending to : +16:24:03 ============================================================================ +16:24:03 ============================================================================ +16:24:03 Slot Id : <411> +16:24:03 Transaction Type : REQUEST +16:24:03 Received From : +16:24:03 ============================================================================ +16:24:03 FNo. Len. Field Value +16:24:03 ============================================================================ +16:24:03 [ 1] [ 4] [0200] +16:24:03 [ 2] [ 16] [6213545001047244] +16:24:03 [ 3] [ 6] [300000] +16:24:03 [ 4] [ 12] [000000000000] +16:24:03 [ 7] [ 10] [0320162152] +16:24:03 [ 11] [ 6] [951613] +16:24:03 [ 12] [ 6] [162152] +16:24:03 [ 13] [ 4] [0320] +16:24:03 [ 15] [ 4] [0320] +16:24:03 [ 18] [ 4] [6011] +16:24:03 [ 19] [ 3] [418] +16:24:03 [ 22] [ 3] [021] +16:24:03 [ 25] [ 2] [01] +16:24:03 [ 28] [ 9] [D00000000] +16:24:03 [ 32] [ 6] [668899] +16:24:03 [ 35] [ 32] [6213545001047244=491212014724970] +16:24:03 [ 37] [ 12] [507900270989] +16:24:03 [ 41] [ 8] [03010004] +16:24:03 [ 42] [ 15] [APT ] +16:24:03 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +16:24:03 [ 49] [ 3] [418] +16:24:03 [ 52] [ 16] [97A27EB637E27C7E] +16:24:03 ============================================================================ +16:24:03 + + +waiting on router queue for slot.... +16:24:03 Sending to : <0> +16:24:03 ============================================================================ +16:24:03 ============================================================================ +16:24:03 Slot Id : <411> +16:24:03 Transaction Type : RESPONSE +16:24:03 Received From : +16:24:03 ============================================================================ +16:24:03 FNo. Len. Field Value +16:24:03 ============================================================================ +16:24:03 [ 1] [ 4] [0210] +16:24:03 [ 2] [ 16] [6213545001047244] +16:24:03 [ 3] [ 6] [300000] +16:24:03 [ 4] [ 12] [000000000000] +16:24:03 [ 7] [ 10] [0320162152] +16:24:03 [ 11] [ 6] [951613] +16:24:03 [ 12] [ 6] [162152] +16:24:03 [ 13] [ 4] [0320] +16:24:03 [ 15] [ 4] [0320] +16:24:03 [ 18] [ 4] [6011] +16:24:03 [ 19] [ 3] [418] +16:24:03 [ 32] [ 6] [668899] +16:24:03 [ 35] [ 32] [6213545001047244=491212014724970] +16:24:03 [ 37] [ 12] [507900270989] +16:24:03 [ 38] [ 6] [443794] +16:24:03 [ 39] [ 2] [00] +16:24:03 [ 41] [ 8] [03010004] +16:24:03 [ 49] [ 3] [418] +16:24:03 [ 54] [ 40] [0001418C0001637547890002418C000163754789] +16:24:03 ============================================================================ +16:24:03 Sending to : +16:24:03 ============================================================================ +16:24:03 + + +waiting on router queue for slot.... +16:24:05 ============================================================================ +16:24:05 Slot Id : <411> +16:24:05 Transaction Type : RESPONSE +16:24:05 Received From : +16:24:05 ============================================================================ +16:24:05 FNo. Len. Field Value +16:24:05 ============================================================================ +16:24:05 [ 1] [ 4] [0210] +16:24:05 [ 2] [ 16] [6213545001047244] +16:24:05 [ 3] [ 6] [300000] +16:24:05 [ 4] [ 12] [000000000000] +16:24:05 [ 7] [ 10] [0320162152] +16:24:05 [ 11] [ 6] [951613] +16:24:05 [ 12] [ 6] [162152] +16:24:05 [ 13] [ 4] [0320] +16:24:05 [ 15] [ 4] [0320] +16:24:05 [ 18] [ 4] [6011] +16:24:05 [ 19] [ 3] [418] +16:24:05 [ 32] [ 6] [668899] +16:24:05 [ 35] [ 32] [6213545001047244=491212014724970] +16:24:05 [ 37] [ 12] [507900270989] +16:24:05 [ 38] [ 6] [443794] +16:24:05 [ 39] [ 2] [00] +16:24:05 [ 41] [ 8] [03010004] +16:24:05 [ 49] [ 3] [418] +16:24:05 [ 54] [ 40] [0001418C0001637547890002418C000163754789] +16:24:05 ============================================================================ +16:24:05 Calculate Source COMM Id = 4 +16:24:05 ============================================================================ +16:24:05 + + +waiting on router queue for slot.... +16:24:05 ============================================================================ +16:24:05 Slot Id : <380> +16:24:05 Transaction Type : REQUEST +16:24:05 Received From : +16:24:05 ============================================================================ +16:24:05 FNo. Len. Field Value +16:24:05 ============================================================================ +16:24:05 [ 1] [ 4] [0800] +16:24:05 [ 7] [ 10] [0320092312] +16:24:05 [ 11] [ 6] [157230] +16:24:05 [ 70] [ 3] [301] +16:24:05 ============================================================================ +16:24:05 + + +waiting on router queue for slot.... +16:24:05 Sending to : +16:24:05 ============================================================================ +16:24:05 ============================================================================ +16:24:05 Slot Id : <380> +16:24:05 Transaction Type : RESPONSE +16:24:05 Received From : +16:24:05 ============================================================================ +16:24:05 FNo. Len. Field Value +16:24:05 ============================================================================ +16:24:05 [ 1] [ 4] [0810] +16:24:05 [ 7] [ 10] [0320092312] +16:24:05 [ 11] [ 6] [157230] +16:24:05 [ 39] [ 2] [00] +16:24:05 [ 70] [ 3] [301] +16:24:05 ============================================================================ +16:24:05 Calculate Source COMM Id = 2 +16:24:05 ============================================================================ +16:24:05 + + +waiting on router queue for slot.... +16:24:06 ============================================================================ +16:24:06 Slot Id : <407> +16:24:06 Transaction Type : REQUEST +16:24:06 Received From : +16:24:06 ============================================================================ +16:24:06 FNo. Len. Field Value +16:24:06 ============================================================================ +16:24:06 [ 1] [ 4] [0200] +16:24:06 [ 2] [ 16] [6213548000206167] +16:24:06 [ 3] [ 6] [010000] +16:24:06 [ 4] [ 12] [000050000000] +16:24:06 [ 7] [ 10] [0320092311] +16:24:06 [ 11] [ 6] [270382] +16:24:06 [ 12] [ 6] [162311] +16:24:06 [ 13] [ 4] [0320] +16:24:06 [ 14] [ 4] [1712] +16:24:06 [ 15] [ 4] [0320] +16:24:06 [ 18] [ 4] [6011] +16:24:06 [ 19] [ 3] [418] +16:24:06 [ 22] [ 3] [021] +16:24:06 [ 25] [ 2] [01] +16:24:06 [ 28] [ 9] [D00002000] +16:24:06 [ 32] [ 6] [180893] +16:24:06 [ 35] [ 32] [6213548000206167=171212010616875] +16:24:06 [ 37] [ 12] [507909270382] +16:24:06 [ 41] [ 8] [0522XYXH] +16:24:06 [ 42] [ 15] [999999 ] +16:24:06 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:24:06 [ 49] [ 3] [418] +16:24:06 [ 52] [ 16] [1856C8AF733EC1D6] +16:24:06 ============================================================================ +16:24:06 + + +waiting on router queue for slot.... +16:24:06 Sending to : +16:24:06 ============================================================================ +16:24:06 Sending to : +16:24:06 ============================================================================ +16:24:07 ============================================================================ +16:24:07 Slot Id : <407> +16:24:07 Transaction Type : REQUEST +16:24:07 Received From : +16:24:07 ============================================================================ +16:24:07 FNo. Len. Field Value +16:24:07 ============================================================================ +16:24:07 [ 1] [ 4] [0200] +16:24:07 [ 2] [ 16] [6213548000206167] +16:24:07 [ 3] [ 6] [010000] +16:24:07 [ 4] [ 12] [000050000000] +16:24:07 [ 7] [ 10] [0320092311] +16:24:07 [ 11] [ 6] [270382] +16:24:07 [ 12] [ 6] [162311] +16:24:07 [ 13] [ 4] [0320] +16:24:07 [ 14] [ 4] [1712] +16:24:07 [ 15] [ 4] [0320] +16:24:07 [ 18] [ 4] [6011] +16:24:07 [ 19] [ 3] [418] +16:24:07 [ 22] [ 3] [021] +16:24:07 [ 25] [ 2] [01] +16:24:07 [ 28] [ 9] [D00002000] +16:24:07 [ 32] [ 6] [180893] +16:24:07 [ 35] [ 32] [6213548000206167=171212010616875] +16:24:07 [ 37] [ 12] [507909270382] +16:24:07 [ 41] [ 8] [0522XYXH] +16:24:07 [ 42] [ 15] [999999 ] +16:24:07 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:24:07 [ 49] [ 3] [418] +16:24:07 [ 52] [ 16] [1856C8AF733EC1D6] +16:24:07 ============================================================================ +16:24:07 + + +waiting on router queue for slot.... +16:24:07 Sending to : +16:24:07 ============================================================================ +16:24:07 ============================================================================ +16:24:07 Slot Id : <407> +16:24:07 Transaction Type : REQUEST +16:24:07 Received From : +16:24:07 ============================================================================ +16:24:07 FNo. Len. Field Value +16:24:07 ============================================================================ +16:24:07 [ 1] [ 4] [0200] +16:24:07 [ 2] [ 16] [6213548000206167] +16:24:07 [ 3] [ 6] [010000] +16:24:07 [ 4] [ 12] [000050000000] +16:24:07 [ 7] [ 10] [0320092311] +16:24:07 [ 11] [ 6] [270382] +16:24:07 [ 12] [ 6] [162311] +16:24:07 [ 13] [ 4] [0320] +16:24:07 [ 14] [ 4] [1712] +16:24:07 [ 15] [ 4] [0320] +16:24:07 [ 18] [ 4] [6011] +16:24:07 [ 19] [ 3] [418] +16:24:07 [ 22] [ 3] [021] +16:24:07 [ 25] [ 2] [01] +16:24:07 [ 28] [ 9] [D00002000] +16:24:07 [ 32] [ 6] [180893] +16:24:07 [ 35] [ 32] [6213548000206167=171212010616875] +16:24:07 [ 37] [ 12] [507909270382] +16:24:07 [ 41] [ 8] [0522XYXH] +16:24:07 [ 42] [ 15] [999999 ] +16:24:07 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:24:07 [ 49] [ 3] [418] +16:24:07 [ 52] [ 16] [4401AF7A91023EB9] +16:24:07 ============================================================================ +16:24:07 + + +waiting on router queue for slot.... +16:24:07 Sending to : <0> +16:24:07 ============================================================================ +16:24:07 ============================================================================ +16:24:07 Slot Id : <407> +16:24:07 Transaction Type : RESPONSE +16:24:07 Received From : +16:24:07 ============================================================================ +16:24:07 FNo. Len. Field Value +16:24:07 ============================================================================ +16:24:07 [ 1] [ 4] [0210] +16:24:07 [ 2] [ 16] [6213548000206167] +16:24:07 [ 3] [ 6] [010000] +16:24:07 [ 4] [ 12] [000050000000] +16:24:07 [ 7] [ 10] [0320092311] +16:24:07 [ 11] [ 6] [270382] +16:24:07 [ 12] [ 6] [162311] +16:24:07 [ 13] [ 4] [0320] +16:24:07 [ 15] [ 4] [0320] +16:24:07 [ 18] [ 4] [6011] +16:24:07 [ 19] [ 3] [418] +16:24:07 [ 32] [ 6] [180893] +16:24:07 [ 35] [ 32] [6213548000206167=171212010616875] +16:24:07 [ 37] [ 12] [507909270382] +16:24:07 [ 38] [ 6] [270382] +16:24:07 [ 39] [ 2] [51] +16:24:07 [ 41] [ 8] [0522XYXH] +16:24:07 [ 49] [ 3] [418] +16:24:07 [ 54] [ 40] [0001418C0000534553800002418C000053455380] +16:24:07 ============================================================================ +16:24:07 Sending to : +16:24:07 ============================================================================ +16:24:07 + + +waiting on router queue for slot.... +16:24:08 ============================================================================ +16:24:08 Slot Id : <407> +16:24:08 Transaction Type : RESPONSE +16:24:08 Received From : +16:24:08 ============================================================================ +16:24:08 FNo. Len. Field Value +16:24:08 ============================================================================ +16:24:08 [ 1] [ 4] [0210] +16:24:08 [ 2] [ 16] [6213548000206167] +16:24:08 [ 3] [ 6] [010000] +16:24:08 [ 4] [ 12] [000050000000] +16:24:08 [ 7] [ 10] [0320092311] +16:24:08 [ 11] [ 6] [270382] +16:24:08 [ 12] [ 6] [162311] +16:24:08 [ 13] [ 4] [0320] +16:24:08 [ 15] [ 4] [0320] +16:24:08 [ 18] [ 4] [6011] +16:24:08 [ 19] [ 3] [418] +16:24:08 [ 32] [ 6] [180893] +16:24:08 [ 35] [ 32] [6213548000206167=171212010616875] +16:24:08 [ 37] [ 12] [507909270382] +16:24:08 [ 38] [ 6] [270382] +16:24:08 [ 39] [ 2] [51] +16:24:08 [ 41] [ 8] [0522XYXH] +16:24:08 [ 49] [ 3] [418] +16:24:08 [ 54] [ 40] [0001418C0000534553800002418C000053455380] +16:24:08 ============================================================================ +16:24:08 Calculate Source COMM Id = 2 +16:24:08 ============================================================================ +16:24:08 + + +waiting on router queue for slot.... +16:24:13 ============================================================================ +16:24:13 Slot Id : <384> +16:24:13 Transaction Type : REQUEST +16:24:13 Received From : +16:24:13 ============================================================================ +16:24:13 FNo. Len. Field Value +16:24:13 ============================================================================ +16:24:13 [ 1] [ 4] [0200] +16:24:13 [ 2] [ 16] [6688990106297706] +16:24:13 [ 3] [ 6] [011000] +16:24:13 [ 4] [ 12] [000010000000] +16:24:13 [ 7] [ 10] [0320162408] +16:24:13 [ 11] [ 6] [798114] +16:24:13 [ 12] [ 6] [162408] +16:24:13 [ 13] [ 4] [0320] +16:24:13 [ 15] [ 4] [0320] +16:24:13 [ 18] [ 4] [6011] +16:24:13 [ 22] [ 3] [900] +16:24:13 [ 25] [ 2] [02] +16:24:13 [ 28] [ 9] [D00002000] +16:24:13 [ 32] [ 6] [621354] +16:24:13 [ 35] [ 37] [6688990106297706=43121231770692800000] +16:24:13 [ 37] [ 12] [507904755480] +16:24:13 [ 41] [ 8] [07001100] +16:24:13 [ 42] [ 15] [NATIVE ] +16:24:13 [ 43] [ 40] [Industry Market Namtar LAO] +16:24:13 [ 49] [ 3] [418] +16:24:13 [ 52] [ 16] [D2A51B49A62698FA] +16:24:13 ============================================================================ +16:24:13 + + +waiting on router queue for slot.... +16:24:13 Sending to : +16:24:13 ============================================================================ +16:24:13 Sending to : +16:24:13 ============================================================================ +16:24:14 ============================================================================ +16:24:14 Slot Id : <384> +16:24:14 Transaction Type : REQUEST +16:24:14 Received From : +16:24:14 ============================================================================ +16:24:14 FNo. Len. Field Value +16:24:14 ============================================================================ +16:24:14 [ 1] [ 4] [0200] +16:24:14 [ 2] [ 16] [6688990106297706] +16:24:14 [ 3] [ 6] [011000] +16:24:14 [ 4] [ 12] [000010000000] +16:24:14 [ 7] [ 10] [0320162408] +16:24:14 [ 11] [ 6] [798114] +16:24:14 [ 12] [ 6] [162408] +16:24:14 [ 13] [ 4] [0320] +16:24:14 [ 15] [ 4] [0320] +16:24:14 [ 18] [ 4] [6011] +16:24:14 [ 22] [ 3] [900] +16:24:14 [ 25] [ 2] [02] +16:24:14 [ 28] [ 9] [D00002000] +16:24:14 [ 32] [ 6] [621354] +16:24:14 [ 35] [ 37] [6688990106297706=43121231770692800000] +16:24:14 [ 37] [ 12] [507904755480] +16:24:14 [ 41] [ 8] [07001100] +16:24:14 [ 42] [ 15] [NATIVE ] +16:24:14 [ 43] [ 40] [Industry Market Namtar LAO] +16:24:14 [ 49] [ 3] [418] +16:24:14 [ 52] [ 16] [D2A51B49A62698FA] +16:24:14 ============================================================================ +16:24:14 + + +waiting on router queue for slot.... +16:24:14 Sending to : +16:24:14 ============================================================================ +16:24:14 ============================================================================ +16:24:14 Slot Id : <384> +16:24:14 Transaction Type : REQUEST +16:24:14 Received From : +16:24:14 ============================================================================ +16:24:14 FNo. Len. Field Value +16:24:14 ============================================================================ +16:24:14 [ 1] [ 4] [0200] +16:24:14 [ 2] [ 16] [6688990106297706] +16:24:14 [ 3] [ 6] [011000] +16:24:14 [ 4] [ 12] [000010000000] +16:24:14 [ 7] [ 10] [0320162408] +16:24:14 [ 11] [ 6] [798114] +16:24:14 [ 12] [ 6] [162408] +16:24:14 [ 13] [ 4] [0320] +16:24:14 [ 15] [ 4] [0320] +16:24:14 [ 18] [ 4] [6011] +16:24:14 [ 22] [ 3] [900] +16:24:14 [ 25] [ 2] [02] +16:24:14 [ 28] [ 9] [D00002000] +16:24:14 [ 32] [ 6] [621354] +16:24:14 [ 35] [ 37] [6688990106297706=43121231770692800000] +16:24:14 [ 37] [ 12] [507904755480] +16:24:14 [ 41] [ 8] [07001100] +16:24:14 [ 42] [ 15] [NATIVE ] +16:24:14 [ 43] [ 40] [Industry Market Namtar LAO] +16:24:14 [ 49] [ 3] [418] +16:24:14 [ 52] [ 16] [3FD66DBE6D6EAFCE] +16:24:14 ============================================================================ +16:24:14 + + +waiting on router queue for slot.... +16:24:14 Sending to : <4> +16:24:14 ============================================================================ +16:24:15 ============================================================================ +16:24:15 Slot Id : <384> +16:24:15 Transaction Type : RESPONSE +16:24:15 Received From : +16:24:15 ============================================================================ +16:24:15 FNo. Len. Field Value +16:24:15 ============================================================================ +16:24:15 [ 1] [ 4] [0210] +16:24:15 [ 2] [ 16] [6688990106297706] +16:24:15 [ 3] [ 6] [011000] +16:24:15 [ 4] [ 12] [000010000000] +16:24:15 [ 11] [ 6] [798114] +16:24:15 [ 12] [ 6] [162408] +16:24:15 [ 15] [ 4] [0320] +16:24:15 [ 18] [ 4] [6011] +16:24:15 [ 32] [ 6] [621354] +16:24:15 [ 35] [ 37] [6688990106297706=43121231770692800000] +16:24:15 [ 37] [ 12] [507904755480] +16:24:15 [ 38] [ 6] [055850] +16:24:15 [ 39] [ 2] [00] +16:24:15 [ 41] [ 8] [07001100] +16:24:15 [ 49] [ 3] [418] +16:24:15 [ 54] [ 20] [1002418C000308469575] +16:24:15 ============================================================================ +16:24:15 Sending to : +16:24:15 ============================================================================ +16:24:15 + + +waiting on router queue for slot.... +16:24:16 ============================================================================ +16:24:16 Slot Id : <384> +16:24:16 Transaction Type : RESPONSE +16:24:16 Received From : +16:24:16 ============================================================================ +16:24:16 FNo. Len. Field Value +16:24:16 ============================================================================ +16:24:16 [ 1] [ 4] [0210] +16:24:16 [ 2] [ 16] [6688990106297706] +16:24:16 [ 3] [ 6] [011000] +16:24:16 [ 4] [ 12] [000010000000] +16:24:16 [ 11] [ 6] [798114] +16:24:16 [ 12] [ 6] [162408] +16:24:16 [ 15] [ 4] [0320] +16:24:16 [ 18] [ 4] [6011] +16:24:16 [ 32] [ 6] [621354] +16:24:16 [ 35] [ 37] [6688990106297706=43121231770692800000] +16:24:16 [ 37] [ 12] [507904755480] +16:24:16 [ 38] [ 6] [055850] +16:24:16 [ 39] [ 2] [00] +16:24:16 [ 41] [ 8] [07001100] +16:24:16 [ 49] [ 3] [418] +16:24:16 [ 54] [ 20] [1002418C000308469575] +16:24:16 ============================================================================ +16:24:16 Calculate Source COMM Id = 0 +16:24:16 ============================================================================ +16:24:16 + + +waiting on router queue for slot.... +16:24:17 ============================================================================ +16:24:17 Slot Id : <416> +16:24:17 Transaction Type : REQUEST +16:24:17 Received From : +16:24:17 ============================================================================ +16:24:17 FNo. Len. Field Value +16:24:17 ============================================================================ +16:24:17 [ 1] [ 4] [0200] +16:24:17 [ 2] [ 16] [6213544001370235] +16:24:17 [ 3] [ 6] [301000] +16:24:17 [ 7] [ 10] [0320092322] +16:24:17 [ 11] [ 6] [270383] +16:24:17 [ 12] [ 6] [162322] +16:24:17 [ 13] [ 4] [0320] +16:24:17 [ 14] [ 4] [4912] +16:24:17 [ 15] [ 4] [0320] +16:24:17 [ 18] [ 4] [6011] +16:24:17 [ 19] [ 3] [418] +16:24:17 [ 22] [ 3] [021] +16:24:17 [ 25] [ 2] [01] +16:24:17 [ 32] [ 6] [180893] +16:24:17 [ 35] [ 32] [6213544001370235=491212017023086] +16:24:17 [ 37] [ 12] [507909270383] +16:24:17 [ 41] [ 8] [0261PSL1] +16:24:17 [ 42] [ 15] [999999 ] +16:24:17 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:24:17 [ 49] [ 3] [418] +16:24:17 [ 52] [ 16] [0DE442EBAE08434B] +16:24:17 ============================================================================ +16:24:17 + + +waiting on router queue for slot.... +16:24:17 Sending to : +16:24:17 ============================================================================ +16:24:17 Sending to : +16:24:17 ============================================================================ +16:24:18 ============================================================================ +16:24:18 Slot Id : <416> +16:24:18 Transaction Type : REQUEST +16:24:18 Received From : +16:24:18 ============================================================================ +16:24:18 FNo. Len. Field Value +16:24:18 ============================================================================ +16:24:18 [ 1] [ 4] [0200] +16:24:18 [ 2] [ 16] [6213544001370235] +16:24:18 [ 3] [ 6] [301000] +16:24:18 [ 7] [ 10] [0320092322] +16:24:18 [ 11] [ 6] [270383] +16:24:18 [ 12] [ 6] [162322] +16:24:18 [ 13] [ 4] [0320] +16:24:18 [ 14] [ 4] [4912] +16:24:18 [ 15] [ 4] [0320] +16:24:18 [ 18] [ 4] [6011] +16:24:18 [ 19] [ 3] [418] +16:24:18 [ 22] [ 3] [021] +16:24:18 [ 25] [ 2] [01] +16:24:18 [ 32] [ 6] [180893] +16:24:18 [ 35] [ 32] [6213544001370235=491212017023086] +16:24:18 [ 37] [ 12] [507909270383] +16:24:18 [ 41] [ 8] [0261PSL1] +16:24:18 [ 42] [ 15] [999999 ] +16:24:18 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:24:18 [ 49] [ 3] [418] +16:24:18 [ 52] [ 16] [0DE442EBAE08434B] +16:24:18 ============================================================================ +16:24:18 + + +waiting on router queue for slot.... +16:24:18 Sending to : +16:24:18 ============================================================================ +16:24:18 ============================================================================ +16:24:18 Slot Id : <416> +16:24:18 Transaction Type : REQUEST +16:24:18 Received From : +16:24:18 ============================================================================ +16:24:18 FNo. Len. Field Value +16:24:18 ============================================================================ +16:24:18 [ 1] [ 4] [0200] +16:24:18 [ 2] [ 16] [6213544001370235] +16:24:18 [ 3] [ 6] [301000] +16:24:18 [ 7] [ 10] [0320092322] +16:24:18 [ 11] [ 6] [270383] +16:24:18 [ 12] [ 6] [162322] +16:24:18 [ 13] [ 4] [0320] +16:24:18 [ 14] [ 4] [4912] +16:24:18 [ 15] [ 4] [0320] +16:24:18 [ 18] [ 4] [6011] +16:24:18 [ 19] [ 3] [418] +16:24:18 [ 22] [ 3] [021] +16:24:18 [ 25] [ 2] [01] +16:24:18 [ 32] [ 6] [180893] +16:24:18 [ 35] [ 32] [6213544001370235=491212017023086] +16:24:18 [ 37] [ 12] [507909270383] +16:24:18 [ 41] [ 8] [0261PSL1] +16:24:18 [ 42] [ 15] [999999 ] +16:24:18 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:24:18 [ 49] [ 3] [418] +16:24:18 [ 52] [ 16] [0A4F200E42865A7F] +16:24:18 ============================================================================ +16:24:18 + + +waiting on router queue for slot.... +16:24:18 Sending to : <0> +16:24:18 ============================================================================ +16:24:19 ============================================================================ +16:24:19 Slot Id : <416> +16:24:19 Transaction Type : RESPONSE +16:24:19 Received From : +16:24:19 ============================================================================ +16:24:19 FNo. Len. Field Value +16:24:19 ============================================================================ +16:24:19 [ 1] [ 4] [0210] +16:24:19 [ 2] [ 16] [6213544001370235] +16:24:19 [ 3] [ 6] [301000] +16:24:19 [ 4] [ 12] [000000000000] +16:24:19 [ 7] [ 10] [0320092322] +16:24:19 [ 11] [ 6] [270383] +16:24:19 [ 12] [ 6] [162322] +16:24:19 [ 13] [ 4] [0320] +16:24:19 [ 15] [ 4] [0320] +16:24:19 [ 18] [ 4] [6011] +16:24:19 [ 19] [ 3] [418] +16:24:19 [ 32] [ 6] [180893] +16:24:19 [ 35] [ 32] [6213544001370235=491212017023086] +16:24:19 [ 37] [ 12] [507909270383] +16:24:19 [ 38] [ 6] [268643] +16:24:19 [ 39] [ 2] [00] +16:24:19 [ 41] [ 8] [0261PSL1] +16:24:19 [ 49] [ 3] [418] +16:24:19 [ 54] [ 40] [1001418C0000958040711002418C000095804071] +16:24:19 ============================================================================ +16:24:19 Sending to : +16:24:19 ============================================================================ +16:24:19 + + +waiting on router queue for slot.... +16:24:19 ============================================================================ +16:24:19 Slot Id : <401> +16:24:19 Transaction Type : REQUEST +16:24:19 Received From : +16:24:19 ============================================================================ +16:24:19 FNo. Len. Field Value +16:24:19 ============================================================================ +16:24:19 [ 1] [ 4] [0200] +16:24:19 [ 2] [ 16] [6688990103551105] +16:24:19 [ 3] [ 6] [012000] +16:24:19 [ 4] [ 12] [000020000000] +16:24:19 [ 7] [ 10] [0320162414] +16:24:19 [ 11] [ 6] [798142] +16:24:19 [ 12] [ 6] [162414] +16:24:19 [ 13] [ 4] [0320] +16:24:19 [ 15] [ 4] [0320] +16:24:19 [ 18] [ 4] [6011] +16:24:19 [ 22] [ 3] [900] +16:24:19 [ 25] [ 2] [02] +16:24:19 [ 28] [ 9] [D00002000] +16:24:19 [ 32] [ 6] [621354] +16:24:19 [ 35] [ 37] [6688990103551105=43011231110580900000] +16:24:19 [ 37] [ 12] [507903345208] +16:24:19 [ 41] [ 8] [13001400] +16:24:19 [ 42] [ 15] [NATIVE ] +16:24:19 [ 43] [ 40] [Kham Unit Kham LAO] +16:24:19 [ 49] [ 3] [418] +16:24:19 [ 52] [ 16] [2141A752F47AEE90] +16:24:19 ============================================================================ +16:24:19 + + +waiting on router queue for slot.... +16:24:19 Sending to : +16:24:19 ============================================================================ +16:24:19 Sending to : +16:24:19 ============================================================================ +16:24:19 ============================================================================ +16:24:19 Slot Id : <401> +16:24:19 Transaction Type : REQUEST +16:24:19 Received From : +16:24:19 ============================================================================ +16:24:19 FNo. Len. Field Value +16:24:19 ============================================================================ +16:24:19 [ 1] [ 4] [0200] +16:24:19 [ 2] [ 16] [6688990103551105] +16:24:19 [ 3] [ 6] [012000] +16:24:19 [ 4] [ 12] [000020000000] +16:24:19 [ 7] [ 10] [0320162414] +16:24:19 [ 11] [ 6] [798142] +16:24:19 [ 12] [ 6] [162414] +16:24:19 [ 13] [ 4] [0320] +16:24:19 [ 15] [ 4] [0320] +16:24:19 [ 18] [ 4] [6011] +16:24:19 [ 22] [ 3] [900] +16:24:19 [ 25] [ 2] [02] +16:24:19 [ 28] [ 9] [D00002000] +16:24:19 [ 32] [ 6] [621354] +16:24:19 [ 35] [ 37] [6688990103551105=43011231110580900000] +16:24:19 [ 37] [ 12] [507903345208] +16:24:19 [ 41] [ 8] [13001400] +16:24:19 [ 42] [ 15] [NATIVE ] +16:24:19 [ 43] [ 40] [Kham Unit Kham LAO] +16:24:19 [ 49] [ 3] [418] +16:24:19 [ 52] [ 16] [2141A752F47AEE90] +16:24:19 ============================================================================ +16:24:19 + + +waiting on router queue for slot.... +16:24:19 Sending to : +16:24:19 ============================================================================ +16:24:19 ============================================================================ +16:24:19 Slot Id : <401> +16:24:19 Transaction Type : REQUEST +16:24:19 Received From : +16:24:19 ============================================================================ +16:24:19 FNo. Len. Field Value +16:24:19 ============================================================================ +16:24:19 [ 1] [ 4] [0200] +16:24:19 [ 2] [ 16] [6688990103551105] +16:24:19 [ 3] [ 6] [012000] +16:24:19 [ 4] [ 12] [000020000000] +16:24:19 [ 7] [ 10] [0320162414] +16:24:19 [ 11] [ 6] [798142] +16:24:19 [ 12] [ 6] [162414] +16:24:19 [ 13] [ 4] [0320] +16:24:19 [ 15] [ 4] [0320] +16:24:19 [ 18] [ 4] [6011] +16:24:19 [ 22] [ 3] [900] +16:24:19 [ 25] [ 2] [02] +16:24:19 [ 28] [ 9] [D00002000] +16:24:19 [ 32] [ 6] [621354] +16:24:19 [ 35] [ 37] [6688990103551105=43011231110580900000] +16:24:19 [ 37] [ 12] [507903345208] +16:24:19 [ 41] [ 8] [13001400] +16:24:19 [ 42] [ 15] [NATIVE ] +16:24:19 [ 43] [ 40] [Kham Unit Kham LAO] +16:24:19 [ 49] [ 3] [418] +16:24:19 [ 52] [ 16] [E65A575BFB126B3F] +16:24:19 ============================================================================ +16:24:19 + + +waiting on router queue for slot.... +16:24:19 Sending to : <4> +16:24:19 ============================================================================ +16:24:20 ============================================================================ +16:24:20 Slot Id : <401> +16:24:20 Transaction Type : RESPONSE +16:24:20 Received From : +16:24:20 ============================================================================ +16:24:20 FNo. Len. Field Value +16:24:20 ============================================================================ +16:24:20 [ 1] [ 4] [0210] +16:24:20 [ 2] [ 16] [6688990103551105] +16:24:20 [ 3] [ 6] [012000] +16:24:20 [ 4] [ 12] [000020000000] +16:24:20 [ 11] [ 6] [798142] +16:24:20 [ 12] [ 6] [162414] +16:24:20 [ 15] [ 4] [0320] +16:24:20 [ 18] [ 4] [6011] +16:24:20 [ 32] [ 6] [621354] +16:24:20 [ 35] [ 37] [6688990103551105=43011231110580900000] +16:24:20 [ 37] [ 12] [507903345208] +16:24:20 [ 38] [ 6] [542046] +16:24:20 [ 39] [ 2] [00] +16:24:20 [ 41] [ 8] [13001400] +16:24:20 [ 49] [ 3] [418] +16:24:20 [ 54] [ 20] [2002418C000467181680] +16:24:20 ============================================================================ +16:24:20 Sending to : +16:24:20 ============================================================================ +16:24:20 + + +waiting on router queue for slot.... +16:24:21 ============================================================================ +16:24:21 Slot Id : <416> +16:24:21 Transaction Type : RESPONSE +16:24:21 Received From : +16:24:21 ============================================================================ +16:24:21 FNo. Len. Field Value +16:24:21 ============================================================================ +16:24:21 [ 1] [ 4] [0210] +16:24:21 [ 2] [ 16] [6213544001370235] +16:24:21 [ 3] [ 6] [301000] +16:24:21 [ 4] [ 12] [000000000000] +16:24:21 [ 7] [ 10] [0320092322] +16:24:21 [ 11] [ 6] [270383] +16:24:21 [ 12] [ 6] [162322] +16:24:21 [ 13] [ 4] [0320] +16:24:21 [ 15] [ 4] [0320] +16:24:21 [ 18] [ 4] [6011] +16:24:21 [ 19] [ 3] [418] +16:24:21 [ 32] [ 6] [180893] +16:24:21 [ 35] [ 32] [6213544001370235=491212017023086] +16:24:21 [ 37] [ 12] [507909270383] +16:24:21 [ 38] [ 6] [268643] +16:24:21 [ 39] [ 2] [00] +16:24:21 [ 41] [ 8] [0261PSL1] +16:24:21 [ 49] [ 3] [418] +16:24:21 [ 54] [ 40] [1001418C0000958040711002418C000095804071] +16:24:21 ============================================================================ +16:24:21 Calculate Source COMM Id = 2 +16:24:21 ============================================================================ +16:24:21 + + +waiting on router queue for slot.... +16:24:22 ============================================================================ +16:24:22 Slot Id : <401> +16:24:22 Transaction Type : RESPONSE +16:24:22 Received From : +16:24:22 ============================================================================ +16:24:22 FNo. Len. Field Value +16:24:22 ============================================================================ +16:24:22 [ 1] [ 4] [0210] +16:24:22 [ 2] [ 16] [6688990103551105] +16:24:22 [ 3] [ 6] [012000] +16:24:22 [ 4] [ 12] [000020000000] +16:24:22 [ 11] [ 6] [798142] +16:24:22 [ 12] [ 6] [162414] +16:24:22 [ 15] [ 4] [0320] +16:24:22 [ 18] [ 4] [6011] +16:24:22 [ 32] [ 6] [621354] +16:24:22 [ 35] [ 37] [6688990103551105=43011231110580900000] +16:24:22 [ 37] [ 12] [507903345208] +16:24:22 [ 38] [ 6] [542046] +16:24:22 [ 39] [ 2] [00] +16:24:22 [ 41] [ 8] [13001400] +16:24:22 [ 49] [ 3] [418] +16:24:22 [ 54] [ 20] [2002418C000467181680] +16:24:22 ============================================================================ +16:24:22 Calculate Source COMM Id = 0 +16:24:22 ============================================================================ +16:24:22 + + +waiting on router queue for slot.... +16:24:23 ============================================================================ +16:24:23 Slot Id : <381> +16:24:23 Transaction Type : REQUEST +16:24:23 Received From : +16:24:23 ============================================================================ +16:24:23 FNo. Len. Field Value +16:24:23 ============================================================================ +16:24:23 [ 1] [ 4] [0800] +16:24:23 [ 2] [ 5] [02531] +16:24:23 [ 3] [ 6] [579168] +16:24:23 [ 7] [ 10] [0320092423] +16:24:23 [ 11] [ 6] [807364] +16:24:23 [ 15] [ 10] [0320092423] +16:24:23 [ 37] [ 11] [57916807364] +16:24:23 [ 70] [ 3] [001] +16:24:23 ============================================================================ +16:24:23 + + +waiting on router queue for slot.... +16:24:23 ============================================================================ +16:24:23 Slot Id : <381> +16:24:23 Transaction Type : RESPONSE +16:24:23 Received From : +16:24:23 ============================================================================ +16:24:23 FNo. Len. Field Value +16:24:23 ============================================================================ +16:24:23 [ 1] [ 4] [0810] +16:24:23 [ 7] [ 10] [0320092423] +16:24:23 [ 11] [ 6] [807364] +16:24:23 [ 15] [ 4] [0320] +16:24:23 [ 37] [ 12] [57916807364] +16:24:23 [ 39] [ 2] [00] +16:24:23 [ 70] [ 3] [001] +16:24:23 ============================================================================ +16:24:23 Sending to : +16:24:23 ============================================================================ +16:24:23 + + +waiting on router queue for slot.... +16:24:33 ============================================================================ +16:24:33 Slot Id : <420> +16:24:33 Transaction Type : REQUEST +16:24:33 Received From : +16:24:33 ============================================================================ +16:24:33 FNo. Len. Field Value +16:24:33 ============================================================================ +16:24:33 [ 1] [ 4] [0800] +16:24:33 [ 7] [ 10] [0320092340] +16:24:33 [ 11] [ 6] [157231] +16:24:33 [ 70] [ 3] [301] +16:24:33 ============================================================================ +16:24:33 + + +waiting on router queue for slot.... +16:24:33 Sending to : +16:24:33 ============================================================================ +16:24:33 ============================================================================ +16:24:33 Slot Id : <420> +16:24:33 Transaction Type : RESPONSE +16:24:33 Received From : +16:24:33 ============================================================================ +16:24:33 FNo. Len. Field Value +16:24:33 ============================================================================ +16:24:33 [ 1] [ 4] [0810] +16:24:33 [ 7] [ 10] [0320092340] +16:24:33 [ 11] [ 6] [157231] +16:24:33 [ 39] [ 2] [00] +16:24:33 [ 70] [ 3] [301] +16:24:33 ============================================================================ +16:24:33 Calculate Source COMM Id = 2 +16:24:33 ============================================================================ +16:24:33 + + +waiting on router queue for slot.... +16:24:34 ============================================================================ +16:24:34 Slot Id : <415> +16:24:34 Transaction Type : REQUEST +16:24:34 Received From : +16:24:34 ============================================================================ +16:24:34 FNo. Len. Field Value +16:24:34 ============================================================================ +16:24:34 [ 1] [ 4] [0200] +16:24:34 [ 2] [ 16] [6213544002242748] +16:24:34 [ 3] [ 6] [010000] +16:24:34 [ 4] [ 12] [000010000000] +16:24:34 [ 7] [ 10] [0320162224] +16:24:34 [ 11] [ 6] [951636] +16:24:34 [ 12] [ 6] [162224] +16:24:34 [ 13] [ 4] [0320] +16:24:34 [ 15] [ 4] [0320] +16:24:34 [ 18] [ 4] [6011] +16:24:34 [ 19] [ 3] [418] +16:24:34 [ 22] [ 3] [021] +16:24:34 [ 25] [ 2] [01] +16:24:34 [ 28] [ 9] [D00002000] +16:24:34 [ 32] [ 6] [668899] +16:24:34 [ 35] [ 32] [6213544002242748=491212014274787] +16:24:34 [ 37] [ 12] [507900577948] +16:24:34 [ 41] [ 8] [03014005] +16:24:34 [ 42] [ 15] [APT ] +16:24:34 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:24:34 [ 49] [ 3] [418] +16:24:34 [ 52] [ 16] [CD9F5BB328EAB17E] +16:24:34 ============================================================================ +16:24:34 + + +waiting on router queue for slot.... +16:24:34 Sending to : +16:24:34 ============================================================================ +16:24:34 Sending to : +16:24:34 ============================================================================ +16:24:34 ============================================================================ +16:24:34 Slot Id : <415> +16:24:34 Transaction Type : REQUEST +16:24:34 Received From : +16:24:34 ============================================================================ +16:24:34 FNo. Len. Field Value +16:24:34 ============================================================================ +16:24:34 [ 1] [ 4] [0200] +16:24:34 [ 2] [ 16] [6213544002242748] +16:24:34 [ 3] [ 6] [010000] +16:24:34 [ 4] [ 12] [000010000000] +16:24:34 [ 7] [ 10] [0320162224] +16:24:34 [ 11] [ 6] [951636] +16:24:34 [ 12] [ 6] [162224] +16:24:34 [ 13] [ 4] [0320] +16:24:34 [ 15] [ 4] [0320] +16:24:34 [ 18] [ 4] [6011] +16:24:34 [ 19] [ 3] [418] +16:24:34 [ 22] [ 3] [021] +16:24:34 [ 25] [ 2] [01] +16:24:34 [ 28] [ 9] [D00002000] +16:24:34 [ 32] [ 6] [668899] +16:24:34 [ 35] [ 32] [6213544002242748=491212014274787] +16:24:34 [ 37] [ 12] [507900577948] +16:24:34 [ 41] [ 8] [03014005] +16:24:34 [ 42] [ 15] [APT ] +16:24:34 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:24:34 [ 49] [ 3] [418] +16:24:34 [ 52] [ 16] [CD9F5BB328EAB17E] +16:24:34 ============================================================================ +16:24:34 + + +waiting on router queue for slot.... +16:24:34 Sending to : +16:24:34 ============================================================================ +16:24:34 ============================================================================ +16:24:34 Slot Id : <415> +16:24:34 Transaction Type : REQUEST +16:24:34 Received From : +16:24:34 ============================================================================ +16:24:34 FNo. Len. Field Value +16:24:34 ============================================================================ +16:24:34 [ 1] [ 4] [0200] +16:24:34 [ 2] [ 16] [6213544002242748] +16:24:34 [ 3] [ 6] [010000] +16:24:34 [ 4] [ 12] [000010000000] +16:24:34 [ 7] [ 10] [0320162224] +16:24:34 [ 11] [ 6] [951636] +16:24:34 [ 12] [ 6] [162224] +16:24:34 [ 13] [ 4] [0320] +16:24:34 [ 15] [ 4] [0320] +16:24:34 [ 18] [ 4] [6011] +16:24:34 [ 19] [ 3] [418] +16:24:34 [ 22] [ 3] [021] +16:24:34 [ 25] [ 2] [01] +16:24:34 [ 28] [ 9] [D00002000] +16:24:34 [ 32] [ 6] [668899] +16:24:34 [ 35] [ 32] [6213544002242748=491212014274787] +16:24:34 [ 37] [ 12] [507900577948] +16:24:34 [ 41] [ 8] [03014005] +16:24:34 [ 42] [ 15] [APT ] +16:24:34 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:24:34 [ 49] [ 3] [418] +16:24:34 [ 52] [ 16] [82A6C42B7D3BCADD] +16:24:34 ============================================================================ +16:24:34 + + +waiting on router queue for slot.... +16:24:34 Sending to : <0> +16:24:34 ============================================================================ +16:24:34 ============================================================================ +16:24:34 Slot Id : <415> +16:24:34 Transaction Type : RESPONSE +16:24:34 Received From : +16:24:34 ============================================================================ +16:24:34 FNo. Len. Field Value +16:24:34 ============================================================================ +16:24:34 [ 1] [ 4] [0210] +16:24:34 [ 2] [ 16] [6213544002242748] +16:24:34 [ 3] [ 6] [010000] +16:24:34 [ 4] [ 12] [000010000000] +16:24:34 [ 7] [ 10] [0320162224] +16:24:34 [ 11] [ 6] [951636] +16:24:34 [ 12] [ 6] [162224] +16:24:34 [ 13] [ 4] [0320] +16:24:34 [ 15] [ 4] [0320] +16:24:34 [ 18] [ 4] [6011] +16:24:34 [ 19] [ 3] [418] +16:24:34 [ 22] [ 3] [021] +16:24:34 [ 32] [ 6] [668899] +16:24:34 [ 35] [ 32] [6213544002242748=491212014274787] +16:24:34 [ 37] [ 12] [507900577948] +16:24:34 [ 38] [ 6] [162429] +16:24:34 [ 39] [ 2] [75] +16:24:34 [ 41] [ 8] [03014005] +16:24:34 [ 49] [ 3] [418] +16:24:34 ============================================================================ +16:24:34 Sending to : +16:24:34 ============================================================================ +16:24:34 + + +waiting on router queue for slot.... +16:24:34 ============================================================================ +16:24:34 Slot Id : <398> +16:24:34 Transaction Type : REQUEST +16:24:34 Received From : +16:24:34 ============================================================================ +16:24:34 FNo. Len. Field Value +16:24:34 ============================================================================ +16:24:34 [ 1] [ 4] [0200] +16:24:34 [ 2] [ 16] [6213544000813383] +16:24:34 [ 3] [ 6] [010000] +16:24:34 [ 4] [ 12] [000050000000] +16:24:34 [ 7] [ 10] [0320092341] +16:24:34 [ 11] [ 6] [270386] +16:24:34 [ 12] [ 6] [162341] +16:24:34 [ 13] [ 4] [0320] +16:24:34 [ 14] [ 4] [4912] +16:24:34 [ 15] [ 4] [0320] +16:24:34 [ 18] [ 4] [6011] +16:24:34 [ 19] [ 3] [418] +16:24:34 [ 22] [ 3] [021] +16:24:34 [ 25] [ 2] [01] +16:24:34 [ 28] [ 9] [D00002000] +16:24:34 [ 32] [ 6] [180893] +16:24:34 [ 35] [ 32] [6213544000813383=491212011338402] +16:24:34 [ 37] [ 12] [507909270386] +16:24:34 [ 41] [ 8] [0401XSBR] +16:24:34 [ 42] [ 15] [999999 ] +16:24:34 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:24:34 [ 49] [ 3] [418] +16:24:34 [ 52] [ 16] [152F4C71B2ED04D2] +16:24:34 ============================================================================ +16:24:34 + + +waiting on router queue for slot.... +16:24:34 Sending to : +16:24:34 ============================================================================ +16:24:34 Sending to : +16:24:34 ============================================================================ +16:24:35 ============================================================================ +16:24:35 Slot Id : <398> +16:24:35 Transaction Type : REQUEST +16:24:35 Received From : +16:24:35 ============================================================================ +16:24:35 FNo. Len. Field Value +16:24:35 ============================================================================ +16:24:35 [ 1] [ 4] [0200] +16:24:35 [ 2] [ 16] [6213544000813383] +16:24:35 [ 3] [ 6] [010000] +16:24:35 [ 4] [ 12] [000050000000] +16:24:35 [ 7] [ 10] [0320092341] +16:24:35 [ 11] [ 6] [270386] +16:24:35 [ 12] [ 6] [162341] +16:24:35 [ 13] [ 4] [0320] +16:24:35 [ 14] [ 4] [4912] +16:24:35 [ 15] [ 4] [0320] +16:24:35 [ 18] [ 4] [6011] +16:24:35 [ 19] [ 3] [418] +16:24:35 [ 22] [ 3] [021] +16:24:35 [ 25] [ 2] [01] +16:24:35 [ 28] [ 9] [D00002000] +16:24:35 [ 32] [ 6] [180893] +16:24:35 [ 35] [ 32] [6213544000813383=491212011338402] +16:24:35 [ 37] [ 12] [507909270386] +16:24:35 [ 41] [ 8] [0401XSBR] +16:24:35 [ 42] [ 15] [999999 ] +16:24:35 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:24:35 [ 49] [ 3] [418] +16:24:35 [ 52] [ 16] [152F4C71B2ED04D2] +16:24:35 ============================================================================ +16:24:35 + + +waiting on router queue for slot.... +16:24:35 Sending to : +16:24:35 ============================================================================ +16:24:35 ============================================================================ +16:24:35 Slot Id : <398> +16:24:35 Transaction Type : REQUEST +16:24:35 Received From : +16:24:35 ============================================================================ +16:24:35 FNo. Len. Field Value +16:24:35 ============================================================================ +16:24:35 [ 1] [ 4] [0200] +16:24:35 [ 2] [ 16] [6213544000813383] +16:24:35 [ 3] [ 6] [010000] +16:24:35 [ 4] [ 12] [000050000000] +16:24:35 [ 7] [ 10] [0320092341] +16:24:35 [ 11] [ 6] [270386] +16:24:35 [ 12] [ 6] [162341] +16:24:35 [ 13] [ 4] [0320] +16:24:35 [ 14] [ 4] [4912] +16:24:35 [ 15] [ 4] [0320] +16:24:35 [ 18] [ 4] [6011] +16:24:35 [ 19] [ 3] [418] +16:24:35 [ 22] [ 3] [021] +16:24:35 [ 25] [ 2] [01] +16:24:35 [ 28] [ 9] [D00002000] +16:24:35 [ 32] [ 6] [180893] +16:24:35 [ 35] [ 32] [6213544000813383=491212011338402] +16:24:35 [ 37] [ 12] [507909270386] +16:24:35 [ 41] [ 8] [0401XSBR] +16:24:35 [ 42] [ 15] [999999 ] +16:24:35 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:24:35 [ 49] [ 3] [418] +16:24:35 [ 52] [ 16] [22286611197FE3B8] +16:24:35 ============================================================================ +16:24:35 + + +waiting on router queue for slot.... +16:24:35 Sending to : <0> +16:24:35 ============================================================================ +16:24:35 ============================================================================ +16:24:35 Slot Id : <415> +16:24:35 Transaction Type : RESPONSE +16:24:35 Received From : +16:24:35 ============================================================================ +16:24:35 FNo. Len. Field Value +16:24:35 ============================================================================ +16:24:35 [ 1] [ 4] [0210] +16:24:35 [ 2] [ 16] [6213544002242748] +16:24:35 [ 3] [ 6] [010000] +16:24:35 [ 4] [ 12] [000010000000] +16:24:35 [ 7] [ 10] [0320162224] +16:24:35 [ 11] [ 6] [951636] +16:24:35 [ 12] [ 6] [162224] +16:24:35 [ 13] [ 4] [0320] +16:24:35 [ 15] [ 4] [0320] +16:24:35 [ 18] [ 4] [6011] +16:24:35 [ 19] [ 3] [418] +16:24:35 [ 22] [ 3] [021] +16:24:35 [ 32] [ 6] [668899] +16:24:35 [ 35] [ 32] [6213544002242748=491212014274787] +16:24:35 [ 37] [ 12] [507900577948] +16:24:35 [ 38] [ 6] [162429] +16:24:35 [ 39] [ 2] [75] +16:24:35 [ 41] [ 8] [03014005] +16:24:35 [ 49] [ 3] [418] +16:24:35 ============================================================================ +16:24:35 Calculate Source COMM Id = 4 +16:24:35 ============================================================================ +16:24:35 + + +waiting on router queue for slot.... +16:24:36 ============================================================================ +16:24:36 Slot Id : <398> +16:24:36 Transaction Type : RESPONSE +16:24:36 Received From : +16:24:36 ============================================================================ +16:24:36 FNo. Len. Field Value +16:24:36 ============================================================================ +16:24:36 [ 1] [ 4] [0210] +16:24:36 [ 2] [ 16] [6213544000813383] +16:24:36 [ 3] [ 6] [010000] +16:24:36 [ 4] [ 12] [000050000000] +16:24:36 [ 7] [ 10] [0320092341] +16:24:36 [ 11] [ 6] [270386] +16:24:36 [ 12] [ 6] [162341] +16:24:36 [ 13] [ 4] [0320] +16:24:36 [ 15] [ 4] [0320] +16:24:36 [ 18] [ 4] [6011] +16:24:36 [ 19] [ 3] [418] +16:24:36 [ 32] [ 6] [180893] +16:24:36 [ 35] [ 32] [6213544000813383=491212011338402] +16:24:36 [ 37] [ 12] [507909270386] +16:24:36 [ 38] [ 6] [403019] +16:24:36 [ 39] [ 2] [00] +16:24:36 [ 41] [ 8] [0401XSBR] +16:24:36 [ 49] [ 3] [418] +16:24:36 [ 54] [ 40] [0001418C0009030898340002418C000903089834] +16:24:36 ============================================================================ +16:24:36 Sending to : +16:24:36 ============================================================================ +16:24:36 + + +waiting on router queue for slot.... +16:24:37 ============================================================================ +16:24:37 Slot Id : <398> +16:24:37 Transaction Type : RESPONSE +16:24:37 Received From : +16:24:37 ============================================================================ +16:24:37 FNo. Len. Field Value +16:24:37 ============================================================================ +16:24:37 [ 1] [ 4] [0210] +16:24:37 [ 2] [ 16] [6213544000813383] +16:24:37 [ 3] [ 6] [010000] +16:24:37 [ 4] [ 12] [000050000000] +16:24:37 [ 7] [ 10] [0320092341] +16:24:37 [ 11] [ 6] [270386] +16:24:37 [ 12] [ 6] [162341] +16:24:37 [ 13] [ 4] [0320] +16:24:37 [ 15] [ 4] [0320] +16:24:37 [ 18] [ 4] [6011] +16:24:37 [ 19] [ 3] [418] +16:24:37 [ 32] [ 6] [180893] +16:24:37 [ 35] [ 32] [6213544000813383=491212011338402] +16:24:37 [ 37] [ 12] [507909270386] +16:24:37 [ 38] [ 6] [403019] +16:24:37 [ 39] [ 2] [00] +16:24:37 [ 41] [ 8] [0401XSBR] +16:24:37 [ 49] [ 3] [418] +16:24:37 [ 54] [ 40] [0001418C0009030898340002418C000903089834] +16:24:37 ============================================================================ +16:24:37 Calculate Source COMM Id = 2 +16:24:37 ============================================================================ +16:24:37 + + +waiting on router queue for slot.... +16:24:39 ============================================================================ +16:24:39 Slot Id : <433> +16:24:39 Transaction Type : REQUEST +16:24:39 Received From : +16:24:39 ============================================================================ +16:24:39 FNo. Len. Field Value +16:24:39 ============================================================================ +16:24:39 [ 1] [ 4] [0800] +16:24:39 [ 7] [ 10] [0320233627] +16:24:39 [ 11] [ 6] [163627] +16:24:39 [ 37] [ 12] [57916163627] +16:24:39 [ 70] [ 3] [301] +16:24:39 ============================================================================ +16:24:39 + + +waiting on router queue for slot.... +16:24:39 Sending to : +16:24:39 ============================================================================ +16:24:39 ============================================================================ +16:24:39 Slot Id : <433> +16:24:39 Transaction Type : RESPONSE +16:24:39 Received From : +16:24:39 ============================================================================ +16:24:39 FNo. Len. Field Value +16:24:39 ============================================================================ +16:24:39 [ 1] [ 4] [0810] +16:24:39 [ 7] [ 10] [0320233627] +16:24:39 [ 11] [ 6] [163627] +16:24:39 [ 37] [ 12] [579161636270] +16:24:39 [ 39] [ 2] [00] +16:24:39 [ 70] [ 3] [810] +16:24:39 ============================================================================ +16:24:39 Calculate Source COMM Id = 6 +16:24:39 ============================================================================ +16:24:39 + + +waiting on router queue for slot.... +16:24:42 ============================================================================ +16:24:42 Slot Id : <425> +16:24:42 Transaction Type : REQUEST +16:24:42 Received From : +16:24:42 ============================================================================ +16:24:42 FNo. Len. Field Value +16:24:42 ============================================================================ +16:24:42 [ 1] [ 4] [0200] +16:24:42 [ 2] [ 16] [6213544002250923] +16:24:42 [ 3] [ 6] [011000] +16:24:42 [ 4] [ 12] [000050000000] +16:24:42 [ 7] [ 10] [0320162502] +16:24:42 [ 11] [ 6] [208656] +16:24:42 [ 12] [ 6] [162008] +16:24:42 [ 13] [ 4] [0320] +16:24:42 [ 14] [ 4] [4912] +16:24:42 [ 15] [ 4] [0320] +16:24:42 [ 18] [ 4] [6011] +16:24:42 [ 19] [ 3] [418] +16:24:42 [ 22] [ 3] [021] +16:24:42 [ 25] [ 2] [01] +16:24:42 [ 28] [ 9] [D00002000] +16:24:42 [ 32] [ 6] [198901] +16:24:42 [ 35] [ 32] [6213544002250923=491212015092333] +16:24:42 [ 37] [ 12] [507916208656] +16:24:42 [ 41] [ 8] [19529001] +16:24:42 [ 42] [ 15] [000000041952901] +16:24:42 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:24:42 [ 49] [ 3] [418] +16:24:42 [ 52] [ 16] [7738B14F65A83232] +16:24:42 ============================================================================ +16:24:42 + + +waiting on router queue for slot.... +16:24:42 Sending to : +16:24:42 ============================================================================ +16:24:42 Sending to : +16:24:42 ============================================================================ +16:24:42 ============================================================================ +16:24:42 Slot Id : <425> +16:24:42 Transaction Type : REQUEST +16:24:42 Received From : +16:24:42 ============================================================================ +16:24:42 FNo. Len. Field Value +16:24:42 ============================================================================ +16:24:42 [ 1] [ 4] [0200] +16:24:42 [ 2] [ 16] [6213544002250923] +16:24:42 [ 3] [ 6] [011000] +16:24:42 [ 4] [ 12] [000050000000] +16:24:42 [ 7] [ 10] [0320162502] +16:24:42 [ 11] [ 6] [208656] +16:24:42 [ 12] [ 6] [162008] +16:24:42 [ 13] [ 4] [0320] +16:24:42 [ 14] [ 4] [4912] +16:24:42 [ 15] [ 4] [0320] +16:24:42 [ 18] [ 4] [6011] +16:24:42 [ 19] [ 3] [418] +16:24:42 [ 22] [ 3] [021] +16:24:42 [ 25] [ 2] [01] +16:24:42 [ 28] [ 9] [D00002000] +16:24:42 [ 32] [ 6] [198901] +16:24:42 [ 35] [ 32] [6213544002250923=491212015092333] +16:24:42 [ 37] [ 12] [507916208656] +16:24:42 [ 41] [ 8] [19529001] +16:24:42 [ 42] [ 15] [000000041952901] +16:24:42 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:24:42 [ 49] [ 3] [418] +16:24:42 [ 52] [ 16] [7738B14F65A83232] +16:24:42 ============================================================================ +16:24:42 + + +waiting on router queue for slot.... +16:24:42 Sending to : +16:24:42 ============================================================================ +16:24:42 ============================================================================ +16:24:42 Slot Id : <425> +16:24:42 Transaction Type : REQUEST +16:24:42 Received From : +16:24:42 ============================================================================ +16:24:42 FNo. Len. Field Value +16:24:42 ============================================================================ +16:24:42 [ 1] [ 4] [0200] +16:24:42 [ 2] [ 16] [6213544002250923] +16:24:42 [ 3] [ 6] [011000] +16:24:42 [ 4] [ 12] [000050000000] +16:24:42 [ 7] [ 10] [0320162502] +16:24:42 [ 11] [ 6] [208656] +16:24:42 [ 12] [ 6] [162008] +16:24:42 [ 13] [ 4] [0320] +16:24:42 [ 14] [ 4] [4912] +16:24:42 [ 15] [ 4] [0320] +16:24:42 [ 18] [ 4] [6011] +16:24:42 [ 19] [ 3] [418] +16:24:42 [ 22] [ 3] [021] +16:24:42 [ 25] [ 2] [01] +16:24:42 [ 28] [ 9] [D00002000] +16:24:42 [ 32] [ 6] [198901] +16:24:42 [ 35] [ 32] [6213544002250923=491212015092333] +16:24:42 [ 37] [ 12] [507916208656] +16:24:42 [ 41] [ 8] [19529001] +16:24:42 [ 42] [ 15] [000000041952901] +16:24:42 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:24:42 [ 49] [ 3] [418] +16:24:42 [ 52] [ 16] [A3B4D703A8DF3552] +16:24:42 ============================================================================ +16:24:42 + + +waiting on router queue for slot.... +16:24:42 Sending to : <0> +16:24:42 ============================================================================ +16:24:43 ============================================================================ +16:24:43 Slot Id : <425> +16:24:43 Transaction Type : RESPONSE +16:24:43 Received From : +16:24:43 ============================================================================ +16:24:43 FNo. Len. Field Value +16:24:43 ============================================================================ +16:24:43 [ 1] [ 4] [0210] +16:24:43 [ 2] [ 16] [6213544002250923] +16:24:43 [ 3] [ 6] [011000] +16:24:43 [ 4] [ 12] [000050000000] +16:24:43 [ 7] [ 10] [0320162502] +16:24:43 [ 11] [ 6] [208656] +16:24:43 [ 12] [ 6] [162008] +16:24:43 [ 13] [ 4] [0320] +16:24:43 [ 15] [ 4] [0320] +16:24:43 [ 18] [ 4] [6011] +16:24:43 [ 19] [ 3] [418] +16:24:43 [ 32] [ 6] [198901] +16:24:43 [ 35] [ 32] [6213544002250923=491212015092333] +16:24:43 [ 37] [ 12] [507916208656] +16:24:43 [ 38] [ 6] [698361] +16:24:43 [ 39] [ 2] [00] +16:24:43 [ 41] [ 8] [19529001] +16:24:43 [ 49] [ 3] [418] +16:24:43 [ 54] [ 40] [1001418C0000079860581002418C000007986058] +16:24:43 ============================================================================ +16:24:43 Sending to : +16:24:43 ============================================================================ +16:24:43 + + +waiting on router queue for slot.... +16:24:44 ============================================================================ +16:24:44 Slot Id : <425> +16:24:44 Transaction Type : RESPONSE +16:24:44 Received From : +16:24:44 ============================================================================ +16:24:44 FNo. Len. Field Value +16:24:44 ============================================================================ +16:24:44 [ 1] [ 4] [0210] +16:24:44 [ 2] [ 16] [6213544002250923] +16:24:44 [ 3] [ 6] [011000] +16:24:44 [ 4] [ 12] [000050000000] +16:24:44 [ 7] [ 10] [0320162502] +16:24:44 [ 11] [ 6] [208656] +16:24:44 [ 12] [ 6] [162008] +16:24:44 [ 13] [ 4] [0320] +16:24:44 [ 15] [ 4] [0320] +16:24:44 [ 18] [ 4] [6011] +16:24:44 [ 19] [ 3] [418] +16:24:44 [ 32] [ 6] [198901] +16:24:44 [ 35] [ 32] [6213544002250923=491212015092333] +16:24:44 [ 37] [ 12] [507916208656] +16:24:44 [ 38] [ 6] [698361] +16:24:44 [ 39] [ 2] [00] +16:24:44 [ 41] [ 8] [19529001] +16:24:44 [ 49] [ 3] [418] +16:24:44 [ 54] [ 40] [1001418C0000079860581002418C000007986058] +16:24:44 ============================================================================ +16:24:44 Calculate Source COMM Id = 5 +16:24:44 ============================================================================ +16:24:44 + + +waiting on router queue for slot.... +16:24:45 ============================================================================ +16:24:45 Slot Id : <364> +16:24:45 Transaction Type : REQUEST +16:24:45 Received From : +16:24:45 ============================================================================ +16:24:45 FNo. Len. Field Value +16:24:45 ============================================================================ +16:24:45 [ 1] [ 4] [0200] +16:24:45 [ 2] [ 16] [6688990105247207] +16:24:45 [ 3] [ 6] [011000] +16:24:45 [ 4] [ 12] [000070000000] +16:24:45 [ 7] [ 10] [0320162440] +16:24:45 [ 11] [ 6] [798282] +16:24:45 [ 12] [ 6] [162440] +16:24:45 [ 13] [ 4] [0320] +16:24:45 [ 15] [ 4] [0320] +16:24:45 [ 18] [ 4] [6011] +16:24:45 [ 22] [ 3] [900] +16:24:45 [ 25] [ 2] [02] +16:24:45 [ 28] [ 9] [D00002000] +16:24:45 [ 32] [ 6] [621354] +16:24:45 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:24:45 [ 37] [ 12] [507904719779] +16:24:45 [ 41] [ 8] [18001000] +16:24:45 [ 42] [ 15] [NATIVE ] +16:24:45 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:24:45 [ 49] [ 3] [418] +16:24:45 [ 52] [ 16] [667459472C5E1498] +16:24:45 ============================================================================ +16:24:45 + + +waiting on router queue for slot.... +16:24:45 Sending to : +16:24:45 ============================================================================ +16:24:45 Sending to : +16:24:45 ============================================================================ +16:24:45 ============================================================================ +16:24:45 Slot Id : <364> +16:24:45 Transaction Type : REQUEST +16:24:45 Received From : +16:24:45 ============================================================================ +16:24:45 FNo. Len. Field Value +16:24:45 ============================================================================ +16:24:45 [ 1] [ 4] [0200] +16:24:45 [ 2] [ 16] [6688990105247207] +16:24:45 [ 3] [ 6] [011000] +16:24:45 [ 4] [ 12] [000070000000] +16:24:45 [ 7] [ 10] [0320162440] +16:24:45 [ 11] [ 6] [798282] +16:24:45 [ 12] [ 6] [162440] +16:24:45 [ 13] [ 4] [0320] +16:24:45 [ 15] [ 4] [0320] +16:24:45 [ 18] [ 4] [6011] +16:24:45 [ 22] [ 3] [900] +16:24:45 [ 25] [ 2] [02] +16:24:45 [ 28] [ 9] [D00002000] +16:24:45 [ 32] [ 6] [621354] +16:24:45 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:24:45 [ 37] [ 12] [507904719779] +16:24:45 [ 41] [ 8] [18001000] +16:24:45 [ 42] [ 15] [NATIVE ] +16:24:45 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:24:45 [ 49] [ 3] [418] +16:24:45 [ 52] [ 16] [667459472C5E1498] +16:24:45 ============================================================================ +16:24:45 + + +waiting on router queue for slot.... +16:24:45 Sending to : +16:24:45 ============================================================================ +16:24:45 ============================================================================ +16:24:45 Slot Id : <364> +16:24:45 Transaction Type : REQUEST +16:24:45 Received From : +16:24:45 ============================================================================ +16:24:45 FNo. Len. Field Value +16:24:45 ============================================================================ +16:24:45 [ 1] [ 4] [0200] +16:24:45 [ 2] [ 16] [6688990105247207] +16:24:45 [ 3] [ 6] [011000] +16:24:45 [ 4] [ 12] [000070000000] +16:24:45 [ 7] [ 10] [0320162440] +16:24:45 [ 11] [ 6] [798282] +16:24:45 [ 12] [ 6] [162440] +16:24:45 [ 13] [ 4] [0320] +16:24:45 [ 15] [ 4] [0320] +16:24:45 [ 18] [ 4] [6011] +16:24:45 [ 22] [ 3] [900] +16:24:45 [ 25] [ 2] [02] +16:24:45 [ 28] [ 9] [D00002000] +16:24:45 [ 32] [ 6] [621354] +16:24:45 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:24:45 [ 37] [ 12] [507904719779] +16:24:45 [ 41] [ 8] [18001000] +16:24:45 [ 42] [ 15] [NATIVE ] +16:24:45 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:24:45 [ 49] [ 3] [418] +16:24:45 [ 52] [ 16] [2740F324422C69C1] +16:24:45 ============================================================================ +16:24:45 + + +waiting on router queue for slot.... +16:24:45 Sending to : <4> +16:24:45 ============================================================================ +16:24:46 ============================================================================ +16:24:46 Slot Id : <364> +16:24:46 Transaction Type : RESPONSE +16:24:46 Received From : +16:24:46 ============================================================================ +16:24:46 FNo. Len. Field Value +16:24:46 ============================================================================ +16:24:46 [ 1] [ 4] [0210] +16:24:46 [ 2] [ 16] [6688990105247207] +16:24:46 [ 3] [ 6] [011000] +16:24:46 [ 4] [ 12] [000070000000] +16:24:46 [ 7] [ 10] [0320162440] +16:24:46 [ 11] [ 6] [798282] +16:24:46 [ 12] [ 6] [162440] +16:24:46 [ 13] [ 4] [0320] +16:24:46 [ 15] [ 4] [0320] +16:24:46 [ 18] [ 4] [6011] +16:24:46 [ 22] [ 3] [021] +16:24:46 [ 32] [ 6] [621354] +16:24:46 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:24:46 [ 37] [ 12] [507904719779] +16:24:46 [ 39] [ 2] [65] +16:24:46 [ 41] [ 8] [18001000] +16:24:46 [ 49] [ 3] [418] +16:24:46 ============================================================================ +16:24:46 Sending to : +16:24:46 ============================================================================ +16:24:46 + + +waiting on router queue for slot.... +16:24:47 ============================================================================ +16:24:47 Slot Id : <364> +16:24:47 Transaction Type : RESPONSE +16:24:47 Received From : +16:24:47 ============================================================================ +16:24:47 FNo. Len. Field Value +16:24:47 ============================================================================ +16:24:47 [ 1] [ 4] [0210] +16:24:47 [ 2] [ 16] [6688990105247207] +16:24:47 [ 3] [ 6] [011000] +16:24:47 [ 4] [ 12] [000070000000] +16:24:47 [ 7] [ 10] [0320162440] +16:24:47 [ 11] [ 6] [798282] +16:24:47 [ 12] [ 6] [162440] +16:24:47 [ 13] [ 4] [0320] +16:24:47 [ 15] [ 4] [0320] +16:24:47 [ 18] [ 4] [6011] +16:24:47 [ 22] [ 3] [021] +16:24:47 [ 32] [ 6] [621354] +16:24:47 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:24:47 [ 37] [ 12] [507904719779] +16:24:47 [ 39] [ 2] [65] +16:24:47 [ 41] [ 8] [18001000] +16:24:47 [ 49] [ 3] [418] +16:24:47 ============================================================================ +16:24:47 Calculate Source COMM Id = 0 +16:24:47 ============================================================================ +16:24:47 + + +waiting on router queue for slot.... +16:24:49 ============================================================================ +16:24:49 Slot Id : <388> +16:24:49 Transaction Type : REQUEST +16:24:49 Received From : +16:24:49 ============================================================================ +16:24:49 FNo. Len. Field Value +16:24:49 ============================================================================ +16:24:49 [ 1] [ 4] [0800] +16:24:49 [ 7] [ 10] [0320092355] +16:24:49 [ 11] [ 6] [157232] +16:24:49 [ 70] [ 3] [301] +16:24:49 ============================================================================ +16:24:49 + + +waiting on router queue for slot.... +16:24:49 Sending to : +16:24:49 ============================================================================ +16:24:49 ============================================================================ +16:24:49 Slot Id : <388> +16:24:49 Transaction Type : RESPONSE +16:24:49 Received From : +16:24:49 ============================================================================ +16:24:49 FNo. Len. Field Value +16:24:49 ============================================================================ +16:24:49 [ 1] [ 4] [0810] +16:24:49 [ 7] [ 10] [0320092355] +16:24:49 [ 11] [ 6] [157232] +16:24:49 [ 39] [ 2] [00] +16:24:49 [ 70] [ 3] [301] +16:24:49 ============================================================================ +16:24:49 Calculate Source COMM Id = 2 +16:24:49 ============================================================================ +16:24:49 + + +waiting on router queue for slot.... +16:24:53 ============================================================================ +16:24:53 Slot Id : <430> +16:24:53 Transaction Type : REQUEST +16:24:53 Received From : +16:24:53 ============================================================================ +16:24:53 FNo. Len. Field Value +16:24:53 ============================================================================ +16:24:53 [ 1] [ 4] [0200] +16:24:53 [ 2] [ 16] [6688990105039802] +16:24:53 [ 3] [ 6] [011000] +16:24:53 [ 4] [ 12] [000100000000] +16:24:53 [ 7] [ 10] [0320162514] +16:24:53 [ 11] [ 6] [208661] +16:24:53 [ 12] [ 6] [042324] +16:24:53 [ 13] [ 4] [0320] +16:24:53 [ 14] [ 4] [4307] +16:24:53 [ 15] [ 4] [0320] +16:24:53 [ 18] [ 4] [6011] +16:24:53 [ 19] [ 3] [418] +16:24:53 [ 22] [ 3] [021] +16:24:53 [ 25] [ 2] [01] +16:24:53 [ 28] [ 9] [D00002000] +16:24:53 [ 32] [ 6] [198901] +16:24:53 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:24:53 [ 37] [ 12] [507916208661] +16:24:53 [ 41] [ 8] [01529031] +16:24:53 [ 42] [ 15] [000000041529031] +16:24:53 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:24:53 [ 49] [ 3] [418] +16:24:53 [ 52] [ 16] [EAE0D145F5ED04CF] +16:24:53 ============================================================================ +16:24:53 + + +waiting on router queue for slot.... +16:24:53 Sending to : +16:24:53 ============================================================================ +16:24:53 Sending to : +16:24:53 ============================================================================ +16:24:54 ============================================================================ +16:24:54 Slot Id : <430> +16:24:54 Transaction Type : REQUEST +16:24:54 Received From : +16:24:54 ============================================================================ +16:24:54 FNo. Len. Field Value +16:24:54 ============================================================================ +16:24:54 [ 1] [ 4] [0200] +16:24:54 [ 2] [ 16] [6688990105039802] +16:24:54 [ 3] [ 6] [011000] +16:24:54 [ 4] [ 12] [000100000000] +16:24:54 [ 7] [ 10] [0320162514] +16:24:54 [ 11] [ 6] [208661] +16:24:54 [ 12] [ 6] [042324] +16:24:54 [ 13] [ 4] [0320] +16:24:54 [ 14] [ 4] [4307] +16:24:54 [ 15] [ 4] [0320] +16:24:54 [ 18] [ 4] [6011] +16:24:54 [ 19] [ 3] [418] +16:24:54 [ 22] [ 3] [021] +16:24:54 [ 25] [ 2] [01] +16:24:54 [ 28] [ 9] [D00002000] +16:24:54 [ 32] [ 6] [198901] +16:24:54 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:24:54 [ 37] [ 12] [507916208661] +16:24:54 [ 41] [ 8] [01529031] +16:24:54 [ 42] [ 15] [000000041529031] +16:24:54 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:24:54 [ 49] [ 3] [418] +16:24:54 [ 52] [ 16] [EAE0D145F5ED04CF] +16:24:54 ============================================================================ +16:24:54 + + +waiting on router queue for slot.... +16:24:54 Sending to : +16:24:54 ============================================================================ +16:24:54 ============================================================================ +16:24:54 Slot Id : <430> +16:24:54 Transaction Type : REQUEST +16:24:54 Received From : +16:24:54 ============================================================================ +16:24:54 FNo. Len. Field Value +16:24:54 ============================================================================ +16:24:54 [ 1] [ 4] [0200] +16:24:54 [ 2] [ 16] [6688990105039802] +16:24:54 [ 3] [ 6] [011000] +16:24:54 [ 4] [ 12] [000100000000] +16:24:54 [ 7] [ 10] [0320162514] +16:24:54 [ 11] [ 6] [208661] +16:24:54 [ 12] [ 6] [042324] +16:24:54 [ 13] [ 4] [0320] +16:24:54 [ 14] [ 4] [4307] +16:24:54 [ 15] [ 4] [0320] +16:24:54 [ 18] [ 4] [6011] +16:24:54 [ 19] [ 3] [418] +16:24:54 [ 22] [ 3] [021] +16:24:54 [ 25] [ 2] [01] +16:24:54 [ 28] [ 9] [D00002000] +16:24:54 [ 32] [ 6] [198901] +16:24:54 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:24:54 [ 37] [ 12] [507916208661] +16:24:54 [ 41] [ 8] [01529031] +16:24:54 [ 42] [ 15] [000000041529031] +16:24:54 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:24:54 [ 49] [ 3] [418] +16:24:54 [ 52] [ 16] [AB7021312CFA3237] +16:24:54 ============================================================================ +16:24:54 + + +waiting on router queue for slot.... +16:24:54 Sending to : <4> +16:24:54 ============================================================================ +16:24:55 ============================================================================ +16:24:55 Slot Id : <430> +16:24:55 Transaction Type : RESPONSE +16:24:55 Received From : +16:24:55 ============================================================================ +16:24:55 FNo. Len. Field Value +16:24:55 ============================================================================ +16:24:55 [ 1] [ 4] [0210] +16:24:55 [ 2] [ 16] [6688990105039802] +16:24:55 [ 3] [ 6] [011000] +16:24:55 [ 4] [ 12] [000100000000] +16:24:55 [ 11] [ 6] [208661] +16:24:55 [ 12] [ 6] [042324] +16:24:55 [ 15] [ 4] [0320] +16:24:55 [ 18] [ 4] [6011] +16:24:55 [ 32] [ 6] [198901] +16:24:55 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:24:55 [ 37] [ 12] [507916208661] +16:24:55 [ 38] [ 6] [097660] +16:24:55 [ 39] [ 2] [00] +16:24:55 [ 41] [ 8] [01529031] +16:24:55 [ 49] [ 3] [418] +16:24:55 [ 54] [ 20] [1002418C000484811614] +16:24:55 ============================================================================ +16:24:55 Sending to : +16:24:55 ============================================================================ +16:24:55 + + +waiting on router queue for slot.... +16:24:55 ============================================================================ +16:24:55 Slot Id : <409> +16:24:55 Transaction Type : REQUEST +16:24:55 Received From : +16:24:55 ============================================================================ +16:24:55 FNo. Len. Field Value +16:24:55 ============================================================================ +16:24:55 [ 1] [ 4] [0800] +16:24:55 [ 7] [ 10] [0320093242] +16:24:55 [ 11] [ 6] [084898] +16:24:55 [ 37] [ 12] [57916084898] +16:24:55 [ 70] [ 3] [301] +16:24:55 ============================================================================ +16:24:55 + + +waiting on router queue for slot.... +16:24:55 Sending to : +16:24:55 ============================================================================ +16:24:55 ============================================================================ +16:24:55 Slot Id : <409> +16:24:55 Transaction Type : RESPONSE +16:24:55 Received From : +16:24:55 ============================================================================ +16:24:55 FNo. Len. Field Value +16:24:55 ============================================================================ +16:24:55 [ 1] [ 4] [0810] +16:24:55 [ 7] [ 10] [0320093242] +16:24:55 [ 11] [ 6] [084898] +16:24:55 [ 37] [ 12] [579160848980] +16:24:55 [ 39] [ 2] [00] +16:24:55 [ 70] [ 3] [810] +16:24:55 ============================================================================ +16:24:55 Calculate Source COMM Id = 1 +16:24:55 ============================================================================ +16:24:55 + + +waiting on router queue for slot.... +16:24:56 ============================================================================ +16:24:56 Slot Id : <430> +16:24:56 Transaction Type : RESPONSE +16:24:56 Received From : +16:24:56 ============================================================================ +16:24:56 FNo. Len. Field Value +16:24:56 ============================================================================ +16:24:56 [ 1] [ 4] [0210] +16:24:56 [ 2] [ 16] [6688990105039802] +16:24:56 [ 3] [ 6] [011000] +16:24:56 [ 4] [ 12] [000100000000] +16:24:56 [ 11] [ 6] [208661] +16:24:56 [ 12] [ 6] [042324] +16:24:56 [ 15] [ 4] [0320] +16:24:56 [ 18] [ 4] [6011] +16:24:56 [ 32] [ 6] [198901] +16:24:56 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:24:56 [ 37] [ 12] [507916208661] +16:24:56 [ 38] [ 6] [097660] +16:24:56 [ 39] [ 2] [00] +16:24:56 [ 41] [ 8] [01529031] +16:24:56 [ 49] [ 3] [418] +16:24:56 [ 54] [ 20] [1002418C000484811614] +16:24:56 ============================================================================ +16:24:56 Calculate Source COMM Id = 5 +16:24:56 ============================================================================ +16:24:56 + + +waiting on router queue for slot.... +16:25:00 ============================================================================ +16:25:00 Slot Id : <367> +16:25:00 Transaction Type : REQUEST +16:25:00 Received From : +16:25:00 ============================================================================ +16:25:00 FNo. Len. Field Value +16:25:00 ============================================================================ +16:25:00 [ 1] [ 4] [0800] +16:25:00 [ 7] [ 10] [0320092406] +16:25:00 [ 11] [ 6] [157233] +16:25:00 [ 70] [ 3] [301] +16:25:00 ============================================================================ +16:25:00 + + +waiting on router queue for slot.... +16:25:00 Sending to : +16:25:00 ============================================================================ +16:25:00 ============================================================================ +16:25:00 Slot Id : <367> +16:25:00 Transaction Type : RESPONSE +16:25:00 Received From : +16:25:00 ============================================================================ +16:25:00 FNo. Len. Field Value +16:25:00 ============================================================================ +16:25:00 [ 1] [ 4] [0810] +16:25:00 [ 7] [ 10] [0320092406] +16:25:00 [ 11] [ 6] [157233] +16:25:00 [ 39] [ 2] [00] +16:25:00 [ 70] [ 3] [301] +16:25:00 ============================================================================ +16:25:00 Calculate Source COMM Id = 2 +16:25:00 ============================================================================ +16:25:00 + + +waiting on router queue for slot.... +16:25:04 ============================================================================ +16:25:04 Slot Id : <441> +16:25:04 Transaction Type : REQUEST +16:25:04 Received From : +16:25:04 ============================================================================ +16:25:04 FNo. Len. Field Value +16:25:04 ============================================================================ +16:25:04 [ 1] [ 4] [0200] +16:25:04 [ 2] [ 16] [6213548000206167] +16:25:04 [ 3] [ 6] [010000] +16:25:04 [ 4] [ 12] [000050000000] +16:25:04 [ 7] [ 10] [0320092411] +16:25:04 [ 11] [ 6] [270391] +16:25:04 [ 12] [ 6] [162411] +16:25:04 [ 13] [ 4] [0320] +16:25:04 [ 14] [ 4] [1712] +16:25:04 [ 15] [ 4] [0320] +16:25:04 [ 18] [ 4] [6011] +16:25:04 [ 19] [ 3] [418] +16:25:04 [ 22] [ 3] [021] +16:25:04 [ 25] [ 2] [01] +16:25:04 [ 28] [ 9] [D00002000] +16:25:04 [ 32] [ 6] [180893] +16:25:04 [ 35] [ 32] [6213548000206167=171212010616875] +16:25:04 [ 37] [ 12] [507909270391] +16:25:04 [ 41] [ 8] [0522XYXH] +16:25:04 [ 42] [ 15] [999999 ] +16:25:04 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:25:04 [ 49] [ 3] [418] +16:25:04 [ 52] [ 16] [1856C8AF733EC1D6] +16:25:04 ============================================================================ +16:25:04 + + +waiting on router queue for slot.... +16:25:04 Sending to : +16:25:04 ============================================================================ +16:25:04 Sending to : +16:25:04 ============================================================================ +16:25:05 ============================================================================ +16:25:05 Slot Id : <441> +16:25:05 Transaction Type : REQUEST +16:25:05 Received From : +16:25:05 ============================================================================ +16:25:05 FNo. Len. Field Value +16:25:05 ============================================================================ +16:25:05 [ 1] [ 4] [0200] +16:25:05 [ 2] [ 16] [6213548000206167] +16:25:05 [ 3] [ 6] [010000] +16:25:05 [ 4] [ 12] [000050000000] +16:25:05 [ 7] [ 10] [0320092411] +16:25:05 [ 11] [ 6] [270391] +16:25:05 [ 12] [ 6] [162411] +16:25:05 [ 13] [ 4] [0320] +16:25:05 [ 14] [ 4] [1712] +16:25:05 [ 15] [ 4] [0320] +16:25:05 [ 18] [ 4] [6011] +16:25:05 [ 19] [ 3] [418] +16:25:05 [ 22] [ 3] [021] +16:25:05 [ 25] [ 2] [01] +16:25:05 [ 28] [ 9] [D00002000] +16:25:05 [ 32] [ 6] [180893] +16:25:05 [ 35] [ 32] [6213548000206167=171212010616875] +16:25:05 [ 37] [ 12] [507909270391] +16:25:05 [ 41] [ 8] [0522XYXH] +16:25:05 [ 42] [ 15] [999999 ] +16:25:05 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:25:05 [ 49] [ 3] [418] +16:25:05 [ 52] [ 16] [1856C8AF733EC1D6] +16:25:05 ============================================================================ +16:25:05 + + +waiting on router queue for slot.... +16:25:05 Sending to : +16:25:05 ============================================================================ +16:25:05 ============================================================================ +16:25:05 Slot Id : <441> +16:25:05 Transaction Type : REQUEST +16:25:05 Received From : +16:25:05 ============================================================================ +16:25:05 FNo. Len. Field Value +16:25:05 ============================================================================ +16:25:05 [ 1] [ 4] [0200] +16:25:05 [ 2] [ 16] [6213548000206167] +16:25:05 [ 3] [ 6] [010000] +16:25:05 [ 4] [ 12] [000050000000] +16:25:05 [ 7] [ 10] [0320092411] +16:25:05 [ 11] [ 6] [270391] +16:25:05 [ 12] [ 6] [162411] +16:25:05 [ 13] [ 4] [0320] +16:25:05 [ 14] [ 4] [1712] +16:25:05 [ 15] [ 4] [0320] +16:25:05 [ 18] [ 4] [6011] +16:25:05 [ 19] [ 3] [418] +16:25:05 [ 22] [ 3] [021] +16:25:05 [ 25] [ 2] [01] +16:25:05 [ 28] [ 9] [D00002000] +16:25:05 [ 32] [ 6] [180893] +16:25:05 [ 35] [ 32] [6213548000206167=171212010616875] +16:25:05 [ 37] [ 12] [507909270391] +16:25:05 [ 41] [ 8] [0522XYXH] +16:25:05 [ 42] [ 15] [999999 ] +16:25:05 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:25:05 [ 49] [ 3] [418] +16:25:05 [ 52] [ 16] [4401AF7A91023EB9] +16:25:05 ============================================================================ +16:25:05 + + +waiting on router queue for slot.... +16:25:05 Sending to : <0> +16:25:05 ============================================================================ +16:25:05 ============================================================================ +16:25:05 Slot Id : <441> +16:25:05 Transaction Type : RESPONSE +16:25:05 Received From : +16:25:05 ============================================================================ +16:25:05 FNo. Len. Field Value +16:25:05 ============================================================================ +16:25:05 [ 1] [ 4] [0210] +16:25:05 [ 2] [ 16] [6213548000206167] +16:25:05 [ 3] [ 6] [010000] +16:25:05 [ 4] [ 12] [000050000000] +16:25:05 [ 7] [ 10] [0320092411] +16:25:05 [ 11] [ 6] [270391] +16:25:05 [ 12] [ 6] [162411] +16:25:05 [ 13] [ 4] [0320] +16:25:05 [ 15] [ 4] [0320] +16:25:05 [ 18] [ 4] [6011] +16:25:05 [ 19] [ 3] [418] +16:25:05 [ 32] [ 6] [180893] +16:25:05 [ 35] [ 32] [6213548000206167=171212010616875] +16:25:05 [ 37] [ 12] [507909270391] +16:25:05 [ 38] [ 6] [270391] +16:25:05 [ 39] [ 2] [51] +16:25:05 [ 41] [ 8] [0522XYXH] +16:25:05 [ 49] [ 3] [418] +16:25:05 [ 54] [ 40] [0001418C0000534553800002418C000053455380] +16:25:05 ============================================================================ +16:25:05 Sending to : +16:25:05 ============================================================================ +16:25:05 + + +waiting on router queue for slot.... +16:25:06 ============================================================================ +16:25:06 Slot Id : <441> +16:25:06 Transaction Type : RESPONSE +16:25:06 Received From : +16:25:06 ============================================================================ +16:25:06 FNo. Len. Field Value +16:25:06 ============================================================================ +16:25:06 [ 1] [ 4] [0210] +16:25:06 [ 2] [ 16] [6213548000206167] +16:25:06 [ 3] [ 6] [010000] +16:25:06 [ 4] [ 12] [000050000000] +16:25:06 [ 7] [ 10] [0320092411] +16:25:06 [ 11] [ 6] [270391] +16:25:06 [ 12] [ 6] [162411] +16:25:06 [ 13] [ 4] [0320] +16:25:06 [ 15] [ 4] [0320] +16:25:06 [ 18] [ 4] [6011] +16:25:06 [ 19] [ 3] [418] +16:25:06 [ 32] [ 6] [180893] +16:25:06 [ 35] [ 32] [6213548000206167=171212010616875] +16:25:06 [ 37] [ 12] [507909270391] +16:25:06 [ 38] [ 6] [270391] +16:25:06 [ 39] [ 2] [51] +16:25:06 [ 41] [ 8] [0522XYXH] +16:25:06 [ 49] [ 3] [418] +16:25:06 [ 54] [ 40] [0001418C0000534553800002418C000053455380] +16:25:06 ============================================================================ +16:25:06 Calculate Source COMM Id = 2 +16:25:06 ============================================================================ +16:25:06 + + +waiting on router queue for slot.... +16:25:09 ============================================================================ +16:25:09 Slot Id : <437> +16:25:09 Transaction Type : REQUEST +16:25:09 Received From : +16:25:09 ============================================================================ +16:25:09 FNo. Len. Field Value +16:25:09 ============================================================================ +16:25:09 [ 1] [ 4] [0200] +16:25:09 [ 2] [ 16] [6213544001370235] +16:25:09 [ 3] [ 6] [010000] +16:25:09 [ 4] [ 12] [000050000000] +16:25:09 [ 7] [ 10] [0320092414] +16:25:09 [ 11] [ 6] [270392] +16:25:09 [ 12] [ 6] [162414] +16:25:09 [ 13] [ 4] [0320] +16:25:09 [ 14] [ 4] [4912] +16:25:09 [ 15] [ 4] [0320] +16:25:09 [ 18] [ 4] [6011] +16:25:09 [ 19] [ 3] [418] +16:25:09 [ 22] [ 3] [021] +16:25:09 [ 25] [ 2] [01] +16:25:09 [ 28] [ 9] [D00002000] +16:25:09 [ 32] [ 6] [180893] +16:25:09 [ 35] [ 32] [6213544001370235=491212017023086] +16:25:09 [ 37] [ 12] [507909270392] +16:25:09 [ 41] [ 8] [0261PSL1] +16:25:09 [ 42] [ 15] [999999 ] +16:25:09 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:25:09 [ 49] [ 3] [418] +16:25:09 [ 52] [ 16] [0DE442EBAE08434B] +16:25:09 ============================================================================ +16:25:09 + + +waiting on router queue for slot.... +16:25:09 Sending to : +16:25:09 ============================================================================ +16:25:09 Sending to : +16:25:09 ============================================================================ +16:25:09 ============================================================================ +16:25:09 Slot Id : <437> +16:25:09 Transaction Type : REQUEST +16:25:09 Received From : +16:25:09 ============================================================================ +16:25:09 FNo. Len. Field Value +16:25:09 ============================================================================ +16:25:09 [ 1] [ 4] [0200] +16:25:09 [ 2] [ 16] [6213544001370235] +16:25:09 [ 3] [ 6] [010000] +16:25:09 [ 4] [ 12] [000050000000] +16:25:09 [ 7] [ 10] [0320092414] +16:25:09 [ 11] [ 6] [270392] +16:25:09 [ 12] [ 6] [162414] +16:25:09 [ 13] [ 4] [0320] +16:25:09 [ 14] [ 4] [4912] +16:25:09 [ 15] [ 4] [0320] +16:25:09 [ 18] [ 4] [6011] +16:25:09 [ 19] [ 3] [418] +16:25:09 [ 22] [ 3] [021] +16:25:09 [ 25] [ 2] [01] +16:25:09 [ 28] [ 9] [D00002000] +16:25:09 [ 32] [ 6] [180893] +16:25:09 [ 35] [ 32] [6213544001370235=491212017023086] +16:25:09 [ 37] [ 12] [507909270392] +16:25:09 [ 41] [ 8] [0261PSL1] +16:25:09 [ 42] [ 15] [999999 ] +16:25:09 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:25:09 [ 49] [ 3] [418] +16:25:09 [ 52] [ 16] [0DE442EBAE08434B] +16:25:09 ============================================================================ +16:25:09 + + +waiting on router queue for slot.... +16:25:09 Sending to : +16:25:09 ============================================================================ +16:25:09 ============================================================================ +16:25:09 Slot Id : <437> +16:25:09 Transaction Type : REQUEST +16:25:09 Received From : +16:25:09 ============================================================================ +16:25:09 FNo. Len. Field Value +16:25:09 ============================================================================ +16:25:09 [ 1] [ 4] [0200] +16:25:09 [ 2] [ 16] [6213544001370235] +16:25:09 [ 3] [ 6] [010000] +16:25:09 [ 4] [ 12] [000050000000] +16:25:09 [ 7] [ 10] [0320092414] +16:25:09 [ 11] [ 6] [270392] +16:25:09 [ 12] [ 6] [162414] +16:25:09 [ 13] [ 4] [0320] +16:25:09 [ 14] [ 4] [4912] +16:25:09 [ 15] [ 4] [0320] +16:25:09 [ 18] [ 4] [6011] +16:25:09 [ 19] [ 3] [418] +16:25:09 [ 22] [ 3] [021] +16:25:09 [ 25] [ 2] [01] +16:25:09 [ 28] [ 9] [D00002000] +16:25:09 [ 32] [ 6] [180893] +16:25:09 [ 35] [ 32] [6213544001370235=491212017023086] +16:25:09 [ 37] [ 12] [507909270392] +16:25:09 [ 41] [ 8] [0261PSL1] +16:25:09 [ 42] [ 15] [999999 ] +16:25:09 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:25:09 [ 49] [ 3] [418] +16:25:09 [ 52] [ 16] [0A4F200E42865A7F] +16:25:09 ============================================================================ +16:25:09 + + +waiting on router queue for slot.... +16:25:09 Sending to : <0> +16:25:09 ============================================================================ +16:25:10 ============================================================================ +16:25:10 Slot Id : <437> +16:25:10 Transaction Type : RESPONSE +16:25:10 Received From : +16:25:10 ============================================================================ +16:25:10 FNo. Len. Field Value +16:25:10 ============================================================================ +16:25:10 [ 1] [ 4] [0210] +16:25:10 [ 2] [ 16] [6213544001370235] +16:25:10 [ 3] [ 6] [010000] +16:25:10 [ 4] [ 12] [000050000000] +16:25:10 [ 7] [ 10] [0320092414] +16:25:10 [ 11] [ 6] [270392] +16:25:10 [ 12] [ 6] [162414] +16:25:10 [ 13] [ 4] [0320] +16:25:10 [ 15] [ 4] [0320] +16:25:10 [ 18] [ 4] [6011] +16:25:10 [ 19] [ 3] [418] +16:25:10 [ 32] [ 6] [180893] +16:25:10 [ 35] [ 32] [6213544001370235=491212017023086] +16:25:10 [ 37] [ 12] [507909270392] +16:25:10 [ 38] [ 6] [834343] +16:25:10 [ 39] [ 2] [00] +16:25:10 [ 41] [ 8] [0261PSL1] +16:25:10 [ 49] [ 3] [418] +16:25:10 [ 54] [ 40] [0001418C0000456040710002418C000045604071] +16:25:10 ============================================================================ +16:25:10 Sending to : +16:25:10 ============================================================================ +16:25:10 + + +waiting on router queue for slot.... +16:25:11 ============================================================================ +16:25:11 Slot Id : <437> +16:25:11 Transaction Type : RESPONSE +16:25:11 Received From : +16:25:11 ============================================================================ +16:25:11 FNo. Len. Field Value +16:25:11 ============================================================================ +16:25:11 [ 1] [ 4] [0210] +16:25:11 [ 2] [ 16] [6213544001370235] +16:25:11 [ 3] [ 6] [010000] +16:25:11 [ 4] [ 12] [000050000000] +16:25:11 [ 7] [ 10] [0320092414] +16:25:11 [ 11] [ 6] [270392] +16:25:11 [ 12] [ 6] [162414] +16:25:11 [ 13] [ 4] [0320] +16:25:11 [ 15] [ 4] [0320] +16:25:11 [ 18] [ 4] [6011] +16:25:11 [ 19] [ 3] [418] +16:25:11 [ 32] [ 6] [180893] +16:25:11 [ 35] [ 32] [6213544001370235=491212017023086] +16:25:11 [ 37] [ 12] [507909270392] +16:25:11 [ 38] [ 6] [834343] +16:25:11 [ 39] [ 2] [00] +16:25:11 [ 41] [ 8] [0261PSL1] +16:25:11 [ 49] [ 3] [418] +16:25:11 [ 54] [ 40] [0001418C0000456040710002418C000045604071] +16:25:11 ============================================================================ +16:25:11 Calculate Source COMM Id = 2 +16:25:11 ============================================================================ +16:25:11 + + +waiting on router queue for slot.... +16:25:15 ============================================================================ +16:25:15 Slot Id : <403> +16:25:15 Transaction Type : REQUEST +16:25:15 Received From : +16:25:15 ============================================================================ +16:25:15 FNo. Len. Field Value +16:25:15 ============================================================================ +16:25:15 [ 1] [ 4] [0200] +16:25:15 [ 2] [ 16] [6688990040163766] +16:25:15 [ 3] [ 6] [010000] +16:25:15 [ 4] [ 12] [000080000000] +16:25:15 [ 7] [ 10] [0320162510] +16:25:15 [ 11] [ 6] [798453] +16:25:15 [ 12] [ 6] [162510] +16:25:15 [ 13] [ 4] [0320] +16:25:15 [ 15] [ 4] [0320] +16:25:15 [ 18] [ 4] [6011] +16:25:15 [ 22] [ 3] [900] +16:25:15 [ 25] [ 2] [02] +16:25:15 [ 28] [ 9] [D00002000] +16:25:15 [ 32] [ 6] [621354] +16:25:15 [ 35] [ 37] [6688990040163766=98051261104476700000] +16:25:15 [ 37] [ 12] [507904645152] +16:25:15 [ 41] [ 8] [17000900] +16:25:15 [ 42] [ 15] [NATIVE ] +16:25:15 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:25:15 [ 49] [ 3] [418] +16:25:15 [ 52] [ 16] [BF6CDD7F98BC6E72] +16:25:15 ============================================================================ +16:25:15 + + +waiting on router queue for slot.... +16:25:15 Sending to : +16:25:15 ============================================================================ +16:25:15 Sending to : +16:25:15 ============================================================================ +16:25:15 ============================================================================ +16:25:15 Slot Id : <403> +16:25:15 Transaction Type : REQUEST +16:25:15 Received From : +16:25:15 ============================================================================ +16:25:15 FNo. Len. Field Value +16:25:15 ============================================================================ +16:25:15 [ 1] [ 4] [0200] +16:25:15 [ 2] [ 16] [6688990040163766] +16:25:15 [ 3] [ 6] [010000] +16:25:15 [ 4] [ 12] [000080000000] +16:25:15 [ 7] [ 10] [0320162510] +16:25:15 [ 11] [ 6] [798453] +16:25:15 [ 12] [ 6] [162510] +16:25:15 [ 13] [ 4] [0320] +16:25:15 [ 15] [ 4] [0320] +16:25:15 [ 18] [ 4] [6011] +16:25:15 [ 22] [ 3] [900] +16:25:15 [ 25] [ 2] [02] +16:25:15 [ 28] [ 9] [D00002000] +16:25:15 [ 32] [ 6] [621354] +16:25:15 [ 35] [ 37] [6688990040163766=98051261104476700000] +16:25:15 [ 37] [ 12] [507904645152] +16:25:15 [ 41] [ 8] [17000900] +16:25:15 [ 42] [ 15] [NATIVE ] +16:25:15 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:25:15 [ 49] [ 3] [418] +16:25:15 [ 52] [ 16] [BF6CDD7F98BC6E72] +16:25:15 ============================================================================ +16:25:15 + + +waiting on router queue for slot.... +16:25:15 Sending to : +16:25:15 ============================================================================ +16:25:15 ============================================================================ +16:25:15 Slot Id : <403> +16:25:15 Transaction Type : REQUEST +16:25:15 Received From : +16:25:15 ============================================================================ +16:25:15 FNo. Len. Field Value +16:25:15 ============================================================================ +16:25:15 [ 1] [ 4] [0200] +16:25:15 [ 2] [ 16] [6688990040163766] +16:25:15 [ 3] [ 6] [010000] +16:25:15 [ 4] [ 12] [000080000000] +16:25:15 [ 7] [ 10] [0320162510] +16:25:15 [ 11] [ 6] [798453] +16:25:15 [ 12] [ 6] [162510] +16:25:15 [ 13] [ 4] [0320] +16:25:15 [ 15] [ 4] [0320] +16:25:15 [ 18] [ 4] [6011] +16:25:15 [ 22] [ 3] [900] +16:25:15 [ 25] [ 2] [02] +16:25:15 [ 28] [ 9] [D00002000] +16:25:15 [ 32] [ 6] [621354] +16:25:15 [ 35] [ 37] [6688990040163766=98051261104476700000] +16:25:15 [ 37] [ 12] [507904645152] +16:25:15 [ 41] [ 8] [17000900] +16:25:15 [ 42] [ 15] [NATIVE ] +16:25:15 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:25:15 [ 49] [ 3] [418] +16:25:15 [ 52] [ 16] [AEA52D5C5AABF419] +16:25:15 ============================================================================ +16:25:15 + + +waiting on router queue for slot.... +16:25:15 Sending to : <4> +16:25:15 ============================================================================ +16:25:15 ============================================================================ +16:25:15 Slot Id : <403> +16:25:15 Transaction Type : RESPONSE +16:25:15 Received From : +16:25:15 ============================================================================ +16:25:15 FNo. Len. Field Value +16:25:15 ============================================================================ +16:25:15 [ 1] [ 4] [0210] +16:25:15 [ 2] [ 16] [6688990040163766] +16:25:15 [ 3] [ 6] [010000] +16:25:15 [ 4] [ 12] [000080000000] +16:25:15 [ 7] [ 10] [0320162510] +16:25:15 [ 11] [ 6] [798453] +16:25:15 [ 12] [ 6] [162510] +16:25:15 [ 13] [ 4] [0320] +16:25:15 [ 15] [ 4] [0320] +16:25:15 [ 18] [ 4] [6011] +16:25:15 [ 22] [ 3] [021] +16:25:15 [ 32] [ 6] [621354] +16:25:15 [ 35] [ 37] [6688990040163766=98051261104476700000] +16:25:15 [ 37] [ 12] [507904645152] +16:25:15 [ 39] [ 2] [62] +16:25:15 [ 41] [ 8] [17000900] +16:25:15 [ 49] [ 3] [418] +16:25:15 ============================================================================ +16:25:15 Sending to : +16:25:15 ============================================================================ +16:25:15 + + +waiting on router queue for slot.... +16:25:16 ============================================================================ +16:25:16 Slot Id : <403> +16:25:16 Transaction Type : RESPONSE +16:25:16 Received From : +16:25:16 ============================================================================ +16:25:16 FNo. Len. Field Value +16:25:16 ============================================================================ +16:25:16 [ 1] [ 4] [0210] +16:25:16 [ 2] [ 16] [6688990040163766] +16:25:16 [ 3] [ 6] [010000] +16:25:16 [ 4] [ 12] [000080000000] +16:25:16 [ 7] [ 10] [0320162510] +16:25:16 [ 11] [ 6] [798453] +16:25:16 [ 12] [ 6] [162510] +16:25:16 [ 13] [ 4] [0320] +16:25:16 [ 15] [ 4] [0320] +16:25:16 [ 18] [ 4] [6011] +16:25:16 [ 22] [ 3] [021] +16:25:16 [ 32] [ 6] [621354] +16:25:16 [ 35] [ 37] [6688990040163766=98051261104476700000] +16:25:16 [ 37] [ 12] [507904645152] +16:25:16 [ 39] [ 2] [62] +16:25:16 [ 41] [ 8] [17000900] +16:25:16 [ 49] [ 3] [418] +16:25:16 ============================================================================ +16:25:16 Calculate Source COMM Id = 0 +16:25:16 ============================================================================ +16:25:16 + + +waiting on router queue for slot.... +16:25:25 ============================================================================ +16:25:25 Slot Id : <402> +16:25:25 Transaction Type : REQUEST +16:25:25 Received From : +16:25:25 ============================================================================ +16:25:25 FNo. Len. Field Value +16:25:25 ============================================================================ +16:25:25 [ 1] [ 4] [0800] +16:25:25 [ 2] [ 5] [02531] +16:25:25 [ 3] [ 6] [579168] +16:25:25 [ 7] [ 10] [0320092525] +16:25:25 [ 11] [ 6] [807365] +16:25:25 [ 15] [ 10] [0320092525] +16:25:25 [ 37] [ 11] [57916807365] +16:25:25 [ 70] [ 3] [001] +16:25:25 ============================================================================ +16:25:25 + + +waiting on router queue for slot.... +16:25:25 ============================================================================ +16:25:25 Slot Id : <402> +16:25:25 Transaction Type : RESPONSE +16:25:25 Received From : +16:25:25 ============================================================================ +16:25:25 FNo. Len. Field Value +16:25:25 ============================================================================ +16:25:25 [ 1] [ 4] [0810] +16:25:25 [ 7] [ 10] [0320092525] +16:25:25 [ 11] [ 6] [807365] +16:25:25 [ 15] [ 4] [0320] +16:25:25 [ 37] [ 12] [57916807365] +16:25:25 [ 39] [ 2] [00] +16:25:25 [ 70] [ 3] [001] +16:25:25 ============================================================================ +16:25:25 Sending to : +16:25:25 ============================================================================ +16:25:25 + + +waiting on router queue for slot.... +16:25:25 ============================================================================ +16:25:25 Slot Id : <362> +16:25:25 Transaction Type : REQUEST +16:25:25 Received From : +16:25:25 ============================================================================ +16:25:25 FNo. Len. Field Value +16:25:25 ============================================================================ +16:25:25 [ 1] [ 4] [0800] +16:25:25 [ 7] [ 10] [0320092432] +16:25:25 [ 11] [ 6] [157234] +16:25:25 [ 70] [ 3] [301] +16:25:25 ============================================================================ +16:25:25 + + +waiting on router queue for slot.... +16:25:25 Sending to : +16:25:25 ============================================================================ +16:25:25 ============================================================================ +16:25:25 Slot Id : <362> +16:25:25 Transaction Type : RESPONSE +16:25:25 Received From : +16:25:25 ============================================================================ +16:25:25 FNo. Len. Field Value +16:25:25 ============================================================================ +16:25:25 [ 1] [ 4] [0810] +16:25:25 [ 7] [ 10] [0320092432] +16:25:25 [ 11] [ 6] [157234] +16:25:25 [ 39] [ 2] [00] +16:25:25 [ 70] [ 3] [301] +16:25:25 ============================================================================ +16:25:25 Calculate Source COMM Id = 2 +16:25:25 ============================================================================ +16:25:25 + + +waiting on router queue for slot.... +16:25:29 ============================================================================ +16:25:29 Slot Id : <392> +16:25:29 Transaction Type : REQUEST +16:25:29 Received From : +16:25:29 ============================================================================ +16:25:29 FNo. Len. Field Value +16:25:29 ============================================================================ +16:25:29 [ 1] [ 4] [0200] +16:25:29 [ 2] [ 16] [6688990105039802] +16:25:29 [ 3] [ 6] [011000] +16:25:29 [ 4] [ 12] [000100000000] +16:25:29 [ 7] [ 10] [0320162550] +16:25:29 [ 11] [ 6] [208669] +16:25:29 [ 12] [ 6] [042400] +16:25:29 [ 13] [ 4] [0320] +16:25:29 [ 14] [ 4] [4307] +16:25:29 [ 15] [ 4] [0320] +16:25:29 [ 18] [ 4] [6011] +16:25:29 [ 19] [ 3] [418] +16:25:29 [ 22] [ 3] [021] +16:25:29 [ 25] [ 2] [01] +16:25:29 [ 28] [ 9] [D00002000] +16:25:29 [ 32] [ 6] [198901] +16:25:29 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:25:29 [ 37] [ 12] [507916208669] +16:25:29 [ 41] [ 8] [01529031] +16:25:29 [ 42] [ 15] [000000041529031] +16:25:29 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:25:29 [ 49] [ 3] [418] +16:25:29 [ 52] [ 16] [EAE0D145F5ED04CF] +16:25:29 ============================================================================ +16:25:29 + + +waiting on router queue for slot.... +16:25:29 Sending to : +16:25:29 ============================================================================ +16:25:29 Sending to : +16:25:29 ============================================================================ +16:25:30 ============================================================================ +16:25:30 Slot Id : <392> +16:25:30 Transaction Type : REQUEST +16:25:30 Received From : +16:25:30 ============================================================================ +16:25:30 FNo. Len. Field Value +16:25:30 ============================================================================ +16:25:30 [ 1] [ 4] [0200] +16:25:30 [ 2] [ 16] [6688990105039802] +16:25:30 [ 3] [ 6] [011000] +16:25:30 [ 4] [ 12] [000100000000] +16:25:30 [ 7] [ 10] [0320162550] +16:25:30 [ 11] [ 6] [208669] +16:25:30 [ 12] [ 6] [042400] +16:25:30 [ 13] [ 4] [0320] +16:25:30 [ 14] [ 4] [4307] +16:25:30 [ 15] [ 4] [0320] +16:25:30 [ 18] [ 4] [6011] +16:25:30 [ 19] [ 3] [418] +16:25:30 [ 22] [ 3] [021] +16:25:30 [ 25] [ 2] [01] +16:25:30 [ 28] [ 9] [D00002000] +16:25:30 [ 32] [ 6] [198901] +16:25:30 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:25:30 [ 37] [ 12] [507916208669] +16:25:30 [ 41] [ 8] [01529031] +16:25:30 [ 42] [ 15] [000000041529031] +16:25:30 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:25:30 [ 49] [ 3] [418] +16:25:30 [ 52] [ 16] [EAE0D145F5ED04CF] +16:25:30 ============================================================================ +16:25:30 + + +waiting on router queue for slot.... +16:25:30 Sending to : +16:25:30 ============================================================================ +16:25:30 ============================================================================ +16:25:30 Slot Id : <392> +16:25:30 Transaction Type : REQUEST +16:25:30 Received From : +16:25:30 ============================================================================ +16:25:30 FNo. Len. Field Value +16:25:30 ============================================================================ +16:25:30 [ 1] [ 4] [0200] +16:25:30 [ 2] [ 16] [6688990105039802] +16:25:30 [ 3] [ 6] [011000] +16:25:30 [ 4] [ 12] [000100000000] +16:25:30 [ 7] [ 10] [0320162550] +16:25:30 [ 11] [ 6] [208669] +16:25:30 [ 12] [ 6] [042400] +16:25:30 [ 13] [ 4] [0320] +16:25:30 [ 14] [ 4] [4307] +16:25:30 [ 15] [ 4] [0320] +16:25:30 [ 18] [ 4] [6011] +16:25:30 [ 19] [ 3] [418] +16:25:30 [ 22] [ 3] [021] +16:25:30 [ 25] [ 2] [01] +16:25:30 [ 28] [ 9] [D00002000] +16:25:30 [ 32] [ 6] [198901] +16:25:30 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:25:30 [ 37] [ 12] [507916208669] +16:25:30 [ 41] [ 8] [01529031] +16:25:30 [ 42] [ 15] [000000041529031] +16:25:30 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:25:30 [ 49] [ 3] [418] +16:25:30 [ 52] [ 16] [AB7021312CFA3237] +16:25:30 ============================================================================ +16:25:30 + + +waiting on router queue for slot.... +16:25:30 Sending to : <4> +16:25:30 ============================================================================ +16:25:31 ============================================================================ +16:25:31 Slot Id : <392> +16:25:31 Transaction Type : RESPONSE +16:25:31 Received From : +16:25:31 ============================================================================ +16:25:31 FNo. Len. Field Value +16:25:31 ============================================================================ +16:25:31 [ 1] [ 4] [0210] +16:25:31 [ 2] [ 16] [6688990105039802] +16:25:31 [ 3] [ 6] [011000] +16:25:31 [ 4] [ 12] [000100000000] +16:25:31 [ 11] [ 6] [208669] +16:25:31 [ 12] [ 6] [042400] +16:25:31 [ 15] [ 4] [0320] +16:25:31 [ 18] [ 4] [6011] +16:25:31 [ 32] [ 6] [198901] +16:25:31 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:25:31 [ 37] [ 12] [507916208669] +16:25:31 [ 38] [ 6] [994060] +16:25:31 [ 39] [ 2] [00] +16:25:31 [ 41] [ 8] [01529031] +16:25:31 [ 49] [ 3] [418] +16:25:31 [ 54] [ 20] [1002418C000384611614] +16:25:31 ============================================================================ +16:25:31 Sending to : +16:25:31 ============================================================================ +16:25:31 + + +waiting on router queue for slot.... +16:25:32 ============================================================================ +16:25:32 Slot Id : <408> +16:25:32 Transaction Type : REQUEST +16:25:32 Received From : +16:25:32 ============================================================================ +16:25:32 FNo. Len. Field Value +16:25:32 ============================================================================ +16:25:32 [ 1] [ 4] [0200] +16:25:32 [ 2] [ 16] [6688990108430107] +16:25:32 [ 3] [ 6] [010000] +16:25:32 [ 4] [ 12] [000100000000] +16:25:32 [ 7] [ 10] [0320162527] +16:25:32 [ 11] [ 6] [798537] +16:25:32 [ 12] [ 6] [162527] +16:25:32 [ 13] [ 4] [0320] +16:25:32 [ 15] [ 4] [0320] +16:25:32 [ 18] [ 4] [6011] +16:25:32 [ 22] [ 3] [900] +16:25:32 [ 25] [ 2] [02] +16:25:32 [ 28] [ 9] [D00002000] +16:25:32 [ 32] [ 6] [621354] +16:25:32 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:25:32 [ 37] [ 12] [507903743397] +16:25:32 [ 41] [ 8] [06002400] +16:25:32 [ 42] [ 15] [NATIVE ] +16:25:32 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:25:32 [ 49] [ 3] [418] +16:25:32 [ 52] [ 16] [FBFD2F498C27BE7C] +16:25:32 ============================================================================ +16:25:32 + + +waiting on router queue for slot.... +16:25:32 Sending to : +16:25:32 ============================================================================ +16:25:32 Sending to : +16:25:32 ============================================================================ +16:25:32 ============================================================================ +16:25:32 Slot Id : <392> +16:25:32 Transaction Type : RESPONSE +16:25:32 Received From : +16:25:32 ============================================================================ +16:25:32 FNo. Len. Field Value +16:25:32 ============================================================================ +16:25:32 [ 1] [ 4] [0210] +16:25:32 [ 2] [ 16] [6688990105039802] +16:25:32 [ 3] [ 6] [011000] +16:25:32 [ 4] [ 12] [000100000000] +16:25:32 [ 11] [ 6] [208669] +16:25:32 [ 12] [ 6] [042400] +16:25:32 [ 15] [ 4] [0320] +16:25:32 [ 18] [ 4] [6011] +16:25:32 [ 32] [ 6] [198901] +16:25:32 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:25:32 [ 37] [ 12] [507916208669] +16:25:32 [ 38] [ 6] [994060] +16:25:32 [ 39] [ 2] [00] +16:25:32 [ 41] [ 8] [01529031] +16:25:32 [ 49] [ 3] [418] +16:25:32 [ 54] [ 20] [1002418C000384611614] +16:25:32 ============================================================================ +16:25:32 Calculate Source COMM Id = 5 +16:25:32 ============================================================================ +16:25:32 + + +waiting on router queue for slot.... +16:25:32 ============================================================================ +16:25:32 Slot Id : <408> +16:25:32 Transaction Type : REQUEST +16:25:32 Received From : +16:25:32 ============================================================================ +16:25:32 FNo. Len. Field Value +16:25:32 ============================================================================ +16:25:32 [ 1] [ 4] [0200] +16:25:32 [ 2] [ 16] [6688990108430107] +16:25:32 [ 3] [ 6] [010000] +16:25:32 [ 4] [ 12] [000100000000] +16:25:32 [ 7] [ 10] [0320162527] +16:25:32 [ 11] [ 6] [798537] +16:25:32 [ 12] [ 6] [162527] +16:25:32 [ 13] [ 4] [0320] +16:25:32 [ 15] [ 4] [0320] +16:25:32 [ 18] [ 4] [6011] +16:25:32 [ 22] [ 3] [900] +16:25:32 [ 25] [ 2] [02] +16:25:32 [ 28] [ 9] [D00002000] +16:25:32 [ 32] [ 6] [621354] +16:25:32 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:25:32 [ 37] [ 12] [507903743397] +16:25:32 [ 41] [ 8] [06002400] +16:25:32 [ 42] [ 15] [NATIVE ] +16:25:32 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:25:32 [ 49] [ 3] [418] +16:25:32 [ 52] [ 16] [FBFD2F498C27BE7C] +16:25:32 ============================================================================ +16:25:32 + + +waiting on router queue for slot.... +16:25:32 Sending to : +16:25:32 ============================================================================ +16:25:32 ============================================================================ +16:25:32 Slot Id : <408> +16:25:32 Transaction Type : REQUEST +16:25:32 Received From : +16:25:32 ============================================================================ +16:25:32 FNo. Len. Field Value +16:25:32 ============================================================================ +16:25:32 [ 1] [ 4] [0200] +16:25:32 [ 2] [ 16] [6688990108430107] +16:25:32 [ 3] [ 6] [010000] +16:25:32 [ 4] [ 12] [000100000000] +16:25:32 [ 7] [ 10] [0320162527] +16:25:32 [ 11] [ 6] [798537] +16:25:32 [ 12] [ 6] [162527] +16:25:32 [ 13] [ 4] [0320] +16:25:32 [ 15] [ 4] [0320] +16:25:32 [ 18] [ 4] [6011] +16:25:32 [ 22] [ 3] [900] +16:25:32 [ 25] [ 2] [02] +16:25:32 [ 28] [ 9] [D00002000] +16:25:32 [ 32] [ 6] [621354] +16:25:32 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:25:32 [ 37] [ 12] [507903743397] +16:25:32 [ 41] [ 8] [06002400] +16:25:32 [ 42] [ 15] [NATIVE ] +16:25:32 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:25:32 [ 49] [ 3] [418] +16:25:32 [ 52] [ 16] [4168FB5C1D2D30C0] +16:25:32 ============================================================================ +16:25:32 + + +waiting on router queue for slot.... +16:25:32 Sending to : <4> +16:25:32 ============================================================================ +16:25:33 ============================================================================ +16:25:33 Slot Id : <408> +16:25:33 Transaction Type : RESPONSE +16:25:33 Received From : +16:25:33 ============================================================================ +16:25:33 FNo. Len. Field Value +16:25:33 ============================================================================ +16:25:33 [ 1] [ 4] [0210] +16:25:33 [ 2] [ 16] [6688990108430107] +16:25:33 [ 3] [ 6] [010000] +16:25:33 [ 4] [ 12] [000100000000] +16:25:33 [ 11] [ 6] [798537] +16:25:33 [ 12] [ 6] [162527] +16:25:33 [ 15] [ 4] [0320] +16:25:33 [ 18] [ 4] [6011] +16:25:33 [ 32] [ 6] [621354] +16:25:33 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:25:33 [ 37] [ 12] [507903743397] +16:25:33 [ 38] [ 6] [870032] +16:25:33 [ 39] [ 2] [00] +16:25:33 [ 41] [ 8] [06002400] +16:25:33 [ 49] [ 3] [418] +16:25:33 [ 54] [ 20] [0002418C000093361979] +16:25:33 ============================================================================ +16:25:33 Sending to : +16:25:33 ============================================================================ +16:25:33 + + +waiting on router queue for slot.... +16:25:34 ============================================================================ +16:25:34 Slot Id : <385> +16:25:34 Transaction Type : REQUEST +16:25:34 Received From : +16:25:34 ============================================================================ +16:25:34 FNo. Len. Field Value +16:25:34 ============================================================================ +16:25:34 [ 1] [ 4] [0200] +16:25:34 [ 2] [ 16] [6688990105247207] +16:25:34 [ 3] [ 6] [301000] +16:25:34 [ 4] [ 12] [000000000000] +16:25:34 [ 7] [ 10] [0320162529] +16:25:34 [ 11] [ 6] [798544] +16:25:34 [ 12] [ 6] [162529] +16:25:34 [ 13] [ 4] [0320] +16:25:34 [ 15] [ 4] [0320] +16:25:34 [ 18] [ 4] [6011] +16:25:34 [ 22] [ 3] [900] +16:25:34 [ 25] [ 2] [02] +16:25:34 [ 28] [ 9] [D00000000] +16:25:34 [ 32] [ 6] [621354] +16:25:34 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:25:34 [ 37] [ 12] [507904719780] +16:25:34 [ 41] [ 8] [18001000] +16:25:34 [ 42] [ 15] [NATIVE ] +16:25:34 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:25:34 [ 49] [ 3] [418] +16:25:34 [ 52] [ 16] [667459472C5E1498] +16:25:34 ============================================================================ +16:25:34 + + +waiting on router queue for slot.... +16:25:34 Sending to : +16:25:34 ============================================================================ +16:25:34 Sending to : +16:25:34 ============================================================================ +16:25:34 ============================================================================ +16:25:34 Slot Id : <385> +16:25:34 Transaction Type : REQUEST +16:25:34 Received From : +16:25:34 ============================================================================ +16:25:34 FNo. Len. Field Value +16:25:34 ============================================================================ +16:25:34 [ 1] [ 4] [0200] +16:25:34 [ 2] [ 16] [6688990105247207] +16:25:34 [ 3] [ 6] [301000] +16:25:34 [ 4] [ 12] [000000000000] +16:25:34 [ 7] [ 10] [0320162529] +16:25:34 [ 11] [ 6] [798544] +16:25:34 [ 12] [ 6] [162529] +16:25:34 [ 13] [ 4] [0320] +16:25:34 [ 15] [ 4] [0320] +16:25:34 [ 18] [ 4] [6011] +16:25:34 [ 22] [ 3] [900] +16:25:34 [ 25] [ 2] [02] +16:25:34 [ 28] [ 9] [D00000000] +16:25:34 [ 32] [ 6] [621354] +16:25:34 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:25:34 [ 37] [ 12] [507904719780] +16:25:34 [ 41] [ 8] [18001000] +16:25:34 [ 42] [ 15] [NATIVE ] +16:25:34 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:25:34 [ 49] [ 3] [418] +16:25:34 [ 52] [ 16] [667459472C5E1498] +16:25:34 ============================================================================ +16:25:34 + + +waiting on router queue for slot.... +16:25:34 Sending to : +16:25:34 ============================================================================ +16:25:34 ============================================================================ +16:25:34 Slot Id : <385> +16:25:34 Transaction Type : REQUEST +16:25:34 Received From : +16:25:34 ============================================================================ +16:25:34 FNo. Len. Field Value +16:25:34 ============================================================================ +16:25:34 [ 1] [ 4] [0200] +16:25:34 [ 2] [ 16] [6688990105247207] +16:25:34 [ 3] [ 6] [301000] +16:25:34 [ 4] [ 12] [000000000000] +16:25:34 [ 7] [ 10] [0320162529] +16:25:34 [ 11] [ 6] [798544] +16:25:34 [ 12] [ 6] [162529] +16:25:34 [ 13] [ 4] [0320] +16:25:34 [ 15] [ 4] [0320] +16:25:34 [ 18] [ 4] [6011] +16:25:34 [ 22] [ 3] [900] +16:25:34 [ 25] [ 2] [02] +16:25:34 [ 28] [ 9] [D00000000] +16:25:34 [ 32] [ 6] [621354] +16:25:34 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:25:34 [ 37] [ 12] [507904719780] +16:25:34 [ 41] [ 8] [18001000] +16:25:34 [ 42] [ 15] [NATIVE ] +16:25:34 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:25:34 [ 49] [ 3] [418] +16:25:34 [ 52] [ 16] [2740F324422C69C1] +16:25:34 ============================================================================ +16:25:34 + + +waiting on router queue for slot.... +16:25:34 Sending to : <4> +16:25:34 ============================================================================ +16:25:35 ============================================================================ +16:25:35 Slot Id : <408> +16:25:35 Transaction Type : RESPONSE +16:25:35 Received From : +16:25:35 ============================================================================ +16:25:35 FNo. Len. Field Value +16:25:35 ============================================================================ +16:25:35 [ 1] [ 4] [0210] +16:25:35 [ 2] [ 16] [6688990108430107] +16:25:35 [ 3] [ 6] [010000] +16:25:35 [ 4] [ 12] [000100000000] +16:25:35 [ 11] [ 6] [798537] +16:25:35 [ 12] [ 6] [162527] +16:25:35 [ 15] [ 4] [0320] +16:25:35 [ 18] [ 4] [6011] +16:25:35 [ 32] [ 6] [621354] +16:25:35 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:25:35 [ 37] [ 12] [507903743397] +16:25:35 [ 38] [ 6] [870032] +16:25:35 [ 39] [ 2] [00] +16:25:35 [ 41] [ 8] [06002400] +16:25:35 [ 49] [ 3] [418] +16:25:35 [ 54] [ 20] [0002418C000093361979] +16:25:35 ============================================================================ +16:25:35 Calculate Source COMM Id = 0 +16:25:35 ============================================================================ +16:25:35 + + +waiting on router queue for slot.... +16:25:36 ============================================================================ +16:25:36 Slot Id : <385> +16:25:36 Transaction Type : RESPONSE +16:25:36 Received From : +16:25:36 ============================================================================ +16:25:36 FNo. Len. Field Value +16:25:36 ============================================================================ +16:25:36 [ 1] [ 4] [0210] +16:25:36 [ 2] [ 16] [6688990105247207] +16:25:36 [ 3] [ 6] [301000] +16:25:36 [ 4] [ 12] [000000000000] +16:25:36 [ 11] [ 6] [798544] +16:25:36 [ 12] [ 6] [162529] +16:25:36 [ 15] [ 4] [0320] +16:25:36 [ 18] [ 4] [6011] +16:25:36 [ 32] [ 6] [621354] +16:25:36 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:25:36 [ 37] [ 12] [507904719780] +16:25:36 [ 38] [ 6] [526124] +16:25:36 [ 39] [ 2] [00] +16:25:36 [ 41] [ 8] [18001000] +16:25:36 [ 49] [ 3] [418] +16:25:36 [ 54] [ 20] [1002418C000079956582] +16:25:36 ============================================================================ +16:25:36 Sending to : +16:25:36 ============================================================================ +16:25:36 + + +waiting on router queue for slot.... +16:25:36 ============================================================================ +16:25:36 Slot Id : <375> +16:25:36 Transaction Type : REQUEST +16:25:36 Received From : +16:25:36 ============================================================================ +16:25:36 FNo. Len. Field Value +16:25:36 ============================================================================ +16:25:36 [ 1] [ 4] [0800] +16:25:36 [ 7] [ 10] [0320092443] +16:25:36 [ 11] [ 6] [157235] +16:25:36 [ 70] [ 3] [301] +16:25:36 ============================================================================ +16:25:36 + + +waiting on router queue for slot.... +16:25:36 Sending to : +16:25:36 ============================================================================ +16:25:36 ============================================================================ +16:25:36 Slot Id : <375> +16:25:36 Transaction Type : RESPONSE +16:25:36 Received From : +16:25:36 ============================================================================ +16:25:36 FNo. Len. Field Value +16:25:36 ============================================================================ +16:25:36 [ 1] [ 4] [0810] +16:25:36 [ 7] [ 10] [0320092443] +16:25:36 [ 11] [ 6] [157235] +16:25:36 [ 39] [ 2] [00] +16:25:36 [ 70] [ 3] [301] +16:25:36 ============================================================================ +16:25:36 Calculate Source COMM Id = 2 +16:25:36 ============================================================================ +16:25:36 + + +waiting on router queue for slot.... +16:25:37 ============================================================================ +16:25:37 Slot Id : <385> +16:25:37 Transaction Type : RESPONSE +16:25:37 Received From : +16:25:37 ============================================================================ +16:25:37 FNo. Len. Field Value +16:25:37 ============================================================================ +16:25:37 [ 1] [ 4] [0210] +16:25:37 [ 2] [ 16] [6688990105247207] +16:25:37 [ 3] [ 6] [301000] +16:25:37 [ 4] [ 12] [000000000000] +16:25:37 [ 11] [ 6] [798544] +16:25:37 [ 12] [ 6] [162529] +16:25:37 [ 15] [ 4] [0320] +16:25:37 [ 18] [ 4] [6011] +16:25:37 [ 32] [ 6] [621354] +16:25:37 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:25:37 [ 37] [ 12] [507904719780] +16:25:37 [ 38] [ 6] [526124] +16:25:37 [ 39] [ 2] [00] +16:25:37 [ 41] [ 8] [18001000] +16:25:37 [ 49] [ 3] [418] +16:25:37 [ 54] [ 20] [1002418C000079956582] +16:25:37 ============================================================================ +16:25:37 Calculate Source COMM Id = 0 +16:25:37 ============================================================================ +16:25:37 + + +waiting on router queue for slot.... +16:25:45 ============================================================================ +16:25:45 Slot Id : <450> +16:25:45 Transaction Type : REQUEST +16:25:45 Received From : +16:25:45 ============================================================================ +16:25:45 FNo. Len. Field Value +16:25:45 ============================================================================ +16:25:45 [ 1] [ 4] [0800] +16:25:45 [ 7] [ 10] [0320233732] +16:25:45 [ 11] [ 6] [163732] +16:25:45 [ 37] [ 12] [57916163732] +16:25:45 [ 70] [ 3] [301] +16:25:45 ============================================================================ +16:25:45 + + +waiting on router queue for slot.... +16:25:45 Sending to : +16:25:45 ============================================================================ +16:25:45 ============================================================================ +16:25:45 Slot Id : <450> +16:25:45 Transaction Type : RESPONSE +16:25:45 Received From : +16:25:45 ============================================================================ +16:25:45 FNo. Len. Field Value +16:25:45 ============================================================================ +16:25:45 [ 1] [ 4] [0810] +16:25:45 [ 7] [ 10] [0320233732] +16:25:45 [ 11] [ 6] [163732] +16:25:45 [ 37] [ 12] [579161637320] +16:25:45 [ 39] [ 2] [00] +16:25:45 [ 70] [ 3] [810] +16:25:45 ============================================================================ +16:25:45 Calculate Source COMM Id = 6 +16:25:45 ============================================================================ +16:25:45 + + +waiting on router queue for slot.... +16:25:47 ============================================================================ +16:25:47 Slot Id : <417> +16:25:47 Transaction Type : REQUEST +16:25:47 Received From : +16:25:47 ============================================================================ +16:25:47 FNo. Len. Field Value +16:25:47 ============================================================================ +16:25:47 [ 1] [ 4] [0800] +16:25:47 [ 7] [ 10] [0320092454] +16:25:47 [ 11] [ 6] [157236] +16:25:47 [ 70] [ 3] [301] +16:25:47 ============================================================================ +16:25:47 + + +waiting on router queue for slot.... +16:25:47 Sending to : +16:25:47 ============================================================================ +16:25:47 ============================================================================ +16:25:47 Slot Id : <417> +16:25:47 Transaction Type : RESPONSE +16:25:47 Received From : +16:25:47 ============================================================================ +16:25:47 FNo. Len. Field Value +16:25:47 ============================================================================ +16:25:47 [ 1] [ 4] [0810] +16:25:47 [ 7] [ 10] [0320092454] +16:25:47 [ 11] [ 6] [157236] +16:25:47 [ 39] [ 2] [00] +16:25:47 [ 70] [ 3] [301] +16:25:47 ============================================================================ +16:25:47 Calculate Source COMM Id = 2 +16:25:47 ============================================================================ +16:25:47 + + +waiting on router queue for slot.... +16:25:49 ============================================================================ +16:25:49 Slot Id : <412> +16:25:49 Transaction Type : REQUEST +16:25:49 Received From : +16:25:49 ============================================================================ +16:25:49 FNo. Len. Field Value +16:25:49 ============================================================================ +16:25:49 [ 1] [ 4] [0200] +16:25:49 [ 2] [ 16] [6213544002158688] +16:25:49 [ 3] [ 6] [011000] +16:25:49 [ 4] [ 12] [000050000000] +16:25:49 [ 7] [ 10] [0320162610] +16:25:49 [ 11] [ 6] [208676] +16:25:49 [ 12] [ 6] [162116] +16:25:49 [ 13] [ 4] [0320] +16:25:49 [ 14] [ 4] [4912] +16:25:49 [ 15] [ 4] [0320] +16:25:49 [ 18] [ 4] [6011] +16:25:49 [ 19] [ 3] [418] +16:25:49 [ 22] [ 3] [021] +16:25:49 [ 25] [ 2] [01] +16:25:49 [ 28] [ 9] [D00002000] +16:25:49 [ 32] [ 6] [198901] +16:25:49 [ 35] [ 32] [6213544002158688=491212015868764] +16:25:49 [ 37] [ 12] [507916208676] +16:25:49 [ 41] [ 8] [19529001] +16:25:49 [ 42] [ 15] [000000041952901] +16:25:49 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:25:49 [ 49] [ 3] [418] +16:25:49 [ 52] [ 16] [CA23572694404563] +16:25:49 ============================================================================ +16:25:49 + + +waiting on router queue for slot.... +16:25:49 Sending to : +16:25:49 ============================================================================ +16:25:49 Sending to : +16:25:49 ============================================================================ +16:25:50 ============================================================================ +16:25:50 Slot Id : <412> +16:25:50 Transaction Type : REQUEST +16:25:50 Received From : +16:25:50 ============================================================================ +16:25:50 FNo. Len. Field Value +16:25:50 ============================================================================ +16:25:50 [ 1] [ 4] [0200] +16:25:50 [ 2] [ 16] [6213544002158688] +16:25:50 [ 3] [ 6] [011000] +16:25:50 [ 4] [ 12] [000050000000] +16:25:50 [ 7] [ 10] [0320162610] +16:25:50 [ 11] [ 6] [208676] +16:25:50 [ 12] [ 6] [162116] +16:25:50 [ 13] [ 4] [0320] +16:25:50 [ 14] [ 4] [4912] +16:25:50 [ 15] [ 4] [0320] +16:25:50 [ 18] [ 4] [6011] +16:25:50 [ 19] [ 3] [418] +16:25:50 [ 22] [ 3] [021] +16:25:50 [ 25] [ 2] [01] +16:25:50 [ 28] [ 9] [D00002000] +16:25:50 [ 32] [ 6] [198901] +16:25:50 [ 35] [ 32] [6213544002158688=491212015868764] +16:25:50 [ 37] [ 12] [507916208676] +16:25:50 [ 41] [ 8] [19529001] +16:25:50 [ 42] [ 15] [000000041952901] +16:25:50 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:25:50 [ 49] [ 3] [418] +16:25:50 [ 52] [ 16] [CA23572694404563] +16:25:50 ============================================================================ +16:25:50 + + +waiting on router queue for slot.... +16:25:50 Sending to : +16:25:50 ============================================================================ +16:25:50 ============================================================================ +16:25:50 Slot Id : <412> +16:25:50 Transaction Type : REQUEST +16:25:50 Received From : +16:25:50 ============================================================================ +16:25:50 FNo. Len. Field Value +16:25:50 ============================================================================ +16:25:50 [ 1] [ 4] [0200] +16:25:50 [ 2] [ 16] [6213544002158688] +16:25:50 [ 3] [ 6] [011000] +16:25:50 [ 4] [ 12] [000050000000] +16:25:50 [ 7] [ 10] [0320162610] +16:25:50 [ 11] [ 6] [208676] +16:25:50 [ 12] [ 6] [162116] +16:25:50 [ 13] [ 4] [0320] +16:25:50 [ 14] [ 4] [4912] +16:25:50 [ 15] [ 4] [0320] +16:25:50 [ 18] [ 4] [6011] +16:25:50 [ 19] [ 3] [418] +16:25:50 [ 22] [ 3] [021] +16:25:50 [ 25] [ 2] [01] +16:25:50 [ 28] [ 9] [D00002000] +16:25:50 [ 32] [ 6] [198901] +16:25:50 [ 35] [ 32] [6213544002158688=491212015868764] +16:25:50 [ 37] [ 12] [507916208676] +16:25:50 [ 41] [ 8] [19529001] +16:25:50 [ 42] [ 15] [000000041952901] +16:25:50 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:25:50 [ 49] [ 3] [418] +16:25:50 [ 52] [ 16] [27729CC26375773A] +16:25:50 ============================================================================ +16:25:50 + + +waiting on router queue for slot.... +16:25:50 Sending to : <0> +16:25:50 ============================================================================ +16:25:50 ============================================================================ +16:25:50 Slot Id : <412> +16:25:50 Transaction Type : RESPONSE +16:25:50 Received From : +16:25:50 ============================================================================ +16:25:50 FNo. Len. Field Value +16:25:50 ============================================================================ +16:25:50 [ 1] [ 4] [0210] +16:25:50 [ 2] [ 16] [6213544002158688] +16:25:50 [ 3] [ 6] [011000] +16:25:50 [ 4] [ 12] [000050000000] +16:25:50 [ 7] [ 10] [0320162610] +16:25:50 [ 11] [ 6] [208676] +16:25:50 [ 12] [ 6] [162116] +16:25:50 [ 13] [ 4] [0320] +16:25:50 [ 15] [ 4] [0320] +16:25:50 [ 18] [ 4] [6011] +16:25:50 [ 19] [ 3] [418] +16:25:50 [ 32] [ 6] [198901] +16:25:50 [ 35] [ 32] [6213544002158688=491212015868764] +16:25:50 [ 37] [ 12] [507916208676] +16:25:50 [ 38] [ 6] [166688] +16:25:50 [ 39] [ 2] [00] +16:25:50 [ 41] [ 8] [19529001] +16:25:50 [ 49] [ 3] [418] +16:25:50 [ 54] [ 40] [1001418C0000101902791002418C000010190279] +16:25:50 ============================================================================ +16:25:50 Sending to : +16:25:50 ============================================================================ +16:25:50 + + +waiting on router queue for slot.... +16:25:50 ============================================================================ +16:25:50 Slot Id : <447> +16:25:50 Transaction Type : REQUEST +16:25:50 Received From : +16:25:50 ============================================================================ +16:25:50 FNo. Len. Field Value +16:25:50 ============================================================================ +16:25:50 [ 1] [ 4] [0200] +16:25:50 [ 2] [ 16] [6213548000206167] +16:25:50 [ 3] [ 6] [010000] +16:25:50 [ 4] [ 12] [000050000000] +16:25:50 [ 7] [ 10] [0320092456] +16:25:50 [ 11] [ 6] [270398] +16:25:50 [ 12] [ 6] [162456] +16:25:50 [ 13] [ 4] [0320] +16:25:50 [ 14] [ 4] [1712] +16:25:50 [ 15] [ 4] [0320] +16:25:50 [ 18] [ 4] [6011] +16:25:50 [ 19] [ 3] [418] +16:25:50 [ 22] [ 3] [021] +16:25:50 [ 25] [ 2] [01] +16:25:50 [ 28] [ 9] [D00002000] +16:25:50 [ 32] [ 6] [180893] +16:25:50 [ 35] [ 32] [6213548000206167=171212010616875] +16:25:50 [ 37] [ 12] [507909270398] +16:25:50 [ 41] [ 8] [0522XYXH] +16:25:50 [ 42] [ 15] [999999 ] +16:25:50 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:25:50 [ 49] [ 3] [418] +16:25:50 [ 52] [ 16] [1856C8AF733EC1D6] +16:25:50 ============================================================================ +16:25:50 + + +waiting on router queue for slot.... +16:25:50 Sending to : +16:25:50 ============================================================================ +16:25:50 Sending to : +16:25:50 ============================================================================ +16:25:51 ============================================================================ +16:25:51 Slot Id : <447> +16:25:51 Transaction Type : REQUEST +16:25:51 Received From : +16:25:51 ============================================================================ +16:25:51 FNo. Len. Field Value +16:25:51 ============================================================================ +16:25:51 [ 1] [ 4] [0200] +16:25:51 [ 2] [ 16] [6213548000206167] +16:25:51 [ 3] [ 6] [010000] +16:25:51 [ 4] [ 12] [000050000000] +16:25:51 [ 7] [ 10] [0320092456] +16:25:51 [ 11] [ 6] [270398] +16:25:51 [ 12] [ 6] [162456] +16:25:51 [ 13] [ 4] [0320] +16:25:51 [ 14] [ 4] [1712] +16:25:51 [ 15] [ 4] [0320] +16:25:51 [ 18] [ 4] [6011] +16:25:51 [ 19] [ 3] [418] +16:25:51 [ 22] [ 3] [021] +16:25:51 [ 25] [ 2] [01] +16:25:51 [ 28] [ 9] [D00002000] +16:25:51 [ 32] [ 6] [180893] +16:25:51 [ 35] [ 32] [6213548000206167=171212010616875] +16:25:51 [ 37] [ 12] [507909270398] +16:25:51 [ 41] [ 8] [0522XYXH] +16:25:51 [ 42] [ 15] [999999 ] +16:25:51 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:25:51 [ 49] [ 3] [418] +16:25:51 [ 52] [ 16] [1856C8AF733EC1D6] +16:25:51 ============================================================================ +16:25:51 + + +waiting on router queue for slot.... +16:25:51 Sending to : +16:25:51 ============================================================================ +16:25:51 ============================================================================ +16:25:51 Slot Id : <447> +16:25:51 Transaction Type : REQUEST +16:25:51 Received From : +16:25:51 ============================================================================ +16:25:51 FNo. Len. Field Value +16:25:51 ============================================================================ +16:25:51 [ 1] [ 4] [0200] +16:25:51 [ 2] [ 16] [6213548000206167] +16:25:51 [ 3] [ 6] [010000] +16:25:51 [ 4] [ 12] [000050000000] +16:25:51 [ 7] [ 10] [0320092456] +16:25:51 [ 11] [ 6] [270398] +16:25:51 [ 12] [ 6] [162456] +16:25:51 [ 13] [ 4] [0320] +16:25:51 [ 14] [ 4] [1712] +16:25:51 [ 15] [ 4] [0320] +16:25:51 [ 18] [ 4] [6011] +16:25:51 [ 19] [ 3] [418] +16:25:51 [ 22] [ 3] [021] +16:25:51 [ 25] [ 2] [01] +16:25:51 [ 28] [ 9] [D00002000] +16:25:51 [ 32] [ 6] [180893] +16:25:51 [ 35] [ 32] [6213548000206167=171212010616875] +16:25:51 [ 37] [ 12] [507909270398] +16:25:51 [ 41] [ 8] [0522XYXH] +16:25:51 [ 42] [ 15] [999999 ] +16:25:51 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:25:51 [ 49] [ 3] [418] +16:25:51 [ 52] [ 16] [4401AF7A91023EB9] +16:25:51 ============================================================================ +16:25:51 + + +waiting on router queue for slot.... +16:25:51 Sending to : <0> +16:25:51 ============================================================================ +16:25:51 ============================================================================ +16:25:51 Slot Id : <447> +16:25:51 Transaction Type : RESPONSE +16:25:51 Received From : +16:25:51 ============================================================================ +16:25:51 FNo. Len. Field Value +16:25:51 ============================================================================ +16:25:51 [ 1] [ 4] [0210] +16:25:51 [ 2] [ 16] [6213548000206167] +16:25:51 [ 3] [ 6] [010000] +16:25:51 [ 4] [ 12] [000050000000] +16:25:51 [ 7] [ 10] [0320092456] +16:25:51 [ 11] [ 6] [270398] +16:25:51 [ 12] [ 6] [162456] +16:25:51 [ 13] [ 4] [0320] +16:25:51 [ 15] [ 4] [0320] +16:25:51 [ 18] [ 4] [6011] +16:25:51 [ 19] [ 3] [418] +16:25:51 [ 32] [ 6] [180893] +16:25:51 [ 35] [ 32] [6213548000206167=171212010616875] +16:25:51 [ 37] [ 12] [507909270398] +16:25:51 [ 38] [ 6] [270398] +16:25:51 [ 39] [ 2] [51] +16:25:51 [ 41] [ 8] [0522XYXH] +16:25:51 [ 49] [ 3] [418] +16:25:51 [ 54] [ 40] [0001418C0000534553800002418C000053455380] +16:25:51 ============================================================================ +16:25:51 Sending to : +16:25:51 ============================================================================ +16:25:51 + + +waiting on router queue for slot.... +16:25:51 ============================================================================ +16:25:51 Slot Id : <412> +16:25:51 Transaction Type : RESPONSE +16:25:51 Received From : +16:25:51 ============================================================================ +16:25:51 FNo. Len. Field Value +16:25:51 ============================================================================ +16:25:51 [ 1] [ 4] [0210] +16:25:51 [ 2] [ 16] [6213544002158688] +16:25:51 [ 3] [ 6] [011000] +16:25:51 [ 4] [ 12] [000050000000] +16:25:51 [ 7] [ 10] [0320162610] +16:25:51 [ 11] [ 6] [208676] +16:25:51 [ 12] [ 6] [162116] +16:25:51 [ 13] [ 4] [0320] +16:25:51 [ 15] [ 4] [0320] +16:25:51 [ 18] [ 4] [6011] +16:25:51 [ 19] [ 3] [418] +16:25:51 [ 32] [ 6] [198901] +16:25:51 [ 35] [ 32] [6213544002158688=491212015868764] +16:25:51 [ 37] [ 12] [507916208676] +16:25:51 [ 38] [ 6] [166688] +16:25:51 [ 39] [ 2] [00] +16:25:51 [ 41] [ 8] [19529001] +16:25:51 [ 49] [ 3] [418] +16:25:51 [ 54] [ 40] [1001418C0000101902791002418C000010190279] +16:25:51 ============================================================================ +16:25:51 Calculate Source COMM Id = 5 +16:25:51 ============================================================================ +16:25:51 + + +waiting on router queue for slot.... +16:25:53 ============================================================================ +16:25:53 Slot Id : <447> +16:25:53 Transaction Type : RESPONSE +16:25:53 Received From : +16:25:53 ============================================================================ +16:25:53 FNo. Len. Field Value +16:25:53 ============================================================================ +16:25:53 [ 1] [ 4] [0210] +16:25:53 [ 2] [ 16] [6213548000206167] +16:25:53 [ 3] [ 6] [010000] +16:25:53 [ 4] [ 12] [000050000000] +16:25:53 [ 7] [ 10] [0320092456] +16:25:53 [ 11] [ 6] [270398] +16:25:53 [ 12] [ 6] [162456] +16:25:53 [ 13] [ 4] [0320] +16:25:53 [ 15] [ 4] [0320] +16:25:53 [ 18] [ 4] [6011] +16:25:53 [ 19] [ 3] [418] +16:25:53 [ 32] [ 6] [180893] +16:25:53 [ 35] [ 32] [6213548000206167=171212010616875] +16:25:53 [ 37] [ 12] [507909270398] +16:25:53 [ 38] [ 6] [270398] +16:25:53 [ 39] [ 2] [51] +16:25:53 [ 41] [ 8] [0522XYXH] +16:25:53 [ 49] [ 3] [418] +16:25:53 [ 54] [ 40] [0001418C0000534553800002418C000053455380] +16:25:53 ============================================================================ +16:25:53 Calculate Source COMM Id = 2 +16:25:53 ============================================================================ +16:25:53 + + +waiting on router queue for slot.... +16:25:57 ============================================================================ +16:25:57 Slot Id : <391> +16:25:57 Transaction Type : REQUEST +16:25:57 Received From : +16:25:57 ============================================================================ +16:25:57 FNo. Len. Field Value +16:25:57 ============================================================================ +16:25:57 [ 1] [ 4] [0200] +16:25:57 [ 2] [ 16] [6213544002242722] +16:25:57 [ 3] [ 6] [010000] +16:25:57 [ 4] [ 12] [000010000000] +16:25:57 [ 7] [ 10] [0320162347] +16:25:57 [ 11] [ 6] [951662] +16:25:57 [ 12] [ 6] [162347] +16:25:57 [ 13] [ 4] [0320] +16:25:57 [ 15] [ 4] [0320] +16:25:57 [ 18] [ 4] [6011] +16:25:57 [ 19] [ 3] [418] +16:25:57 [ 22] [ 3] [021] +16:25:57 [ 25] [ 2] [01] +16:25:57 [ 28] [ 9] [D00002000] +16:25:57 [ 32] [ 6] [668899] +16:25:57 [ 35] [ 32] [6213544002242722=491212014272817] +16:25:57 [ 37] [ 12] [507900577950] +16:25:57 [ 41] [ 8] [03014005] +16:25:57 [ 42] [ 15] [APT ] +16:25:57 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:25:57 [ 49] [ 3] [418] +16:25:57 [ 52] [ 16] [0F93B1D937D586FD] +16:25:57 ============================================================================ +16:25:57 + + +waiting on router queue for slot.... +16:25:57 Sending to : +16:25:57 ============================================================================ +16:25:57 Sending to : +16:25:57 ============================================================================ +16:25:58 ============================================================================ +16:25:58 Slot Id : <391> +16:25:58 Transaction Type : REQUEST +16:25:58 Received From : +16:25:58 ============================================================================ +16:25:58 FNo. Len. Field Value +16:25:58 ============================================================================ +16:25:58 [ 1] [ 4] [0200] +16:25:58 [ 2] [ 16] [6213544002242722] +16:25:58 [ 3] [ 6] [010000] +16:25:58 [ 4] [ 12] [000010000000] +16:25:58 [ 7] [ 10] [0320162347] +16:25:58 [ 11] [ 6] [951662] +16:25:58 [ 12] [ 6] [162347] +16:25:58 [ 13] [ 4] [0320] +16:25:58 [ 15] [ 4] [0320] +16:25:58 [ 18] [ 4] [6011] +16:25:58 [ 19] [ 3] [418] +16:25:58 [ 22] [ 3] [021] +16:25:58 [ 25] [ 2] [01] +16:25:58 [ 28] [ 9] [D00002000] +16:25:58 [ 32] [ 6] [668899] +16:25:58 [ 35] [ 32] [6213544002242722=491212014272817] +16:25:58 [ 37] [ 12] [507900577950] +16:25:58 [ 41] [ 8] [03014005] +16:25:58 [ 42] [ 15] [APT ] +16:25:58 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:25:58 [ 49] [ 3] [418] +16:25:58 [ 52] [ 16] [0F93B1D937D586FD] +16:25:58 ============================================================================ +16:25:58 + + +waiting on router queue for slot.... +16:25:58 Sending to : +16:25:58 ============================================================================ +16:25:58 ============================================================================ +16:25:58 Slot Id : <391> +16:25:58 Transaction Type : REQUEST +16:25:58 Received From : +16:25:58 ============================================================================ +16:25:58 FNo. Len. Field Value +16:25:58 ============================================================================ +16:25:58 [ 1] [ 4] [0200] +16:25:58 [ 2] [ 16] [6213544002242722] +16:25:58 [ 3] [ 6] [010000] +16:25:58 [ 4] [ 12] [000010000000] +16:25:58 [ 7] [ 10] [0320162347] +16:25:58 [ 11] [ 6] [951662] +16:25:58 [ 12] [ 6] [162347] +16:25:58 [ 13] [ 4] [0320] +16:25:58 [ 15] [ 4] [0320] +16:25:58 [ 18] [ 4] [6011] +16:25:58 [ 19] [ 3] [418] +16:25:58 [ 22] [ 3] [021] +16:25:58 [ 25] [ 2] [01] +16:25:58 [ 28] [ 9] [D00002000] +16:25:58 [ 32] [ 6] [668899] +16:25:58 [ 35] [ 32] [6213544002242722=491212014272817] +16:25:58 [ 37] [ 12] [507900577950] +16:25:58 [ 41] [ 8] [03014005] +16:25:58 [ 42] [ 15] [APT ] +16:25:58 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:25:58 [ 49] [ 3] [418] +16:25:58 [ 52] [ 16] [C2857FD9C7800590] +16:25:58 ============================================================================ +16:25:58 + + +waiting on router queue for slot.... +16:25:58 Sending to : <0> +16:25:58 ============================================================================ +16:25:58 ============================================================================ +16:25:58 Slot Id : <391> +16:25:58 Transaction Type : RESPONSE +16:25:58 Received From : +16:25:58 ============================================================================ +16:25:58 FNo. Len. Field Value +16:25:58 ============================================================================ +16:25:58 [ 1] [ 4] [0210] +16:25:58 [ 2] [ 16] [6213544002242722] +16:25:58 [ 3] [ 6] [010000] +16:25:58 [ 4] [ 12] [000010000000] +16:25:58 [ 7] [ 10] [0320162347] +16:25:58 [ 11] [ 6] [951662] +16:25:58 [ 12] [ 6] [162347] +16:25:58 [ 13] [ 4] [0320] +16:25:58 [ 15] [ 4] [0320] +16:25:58 [ 18] [ 4] [6011] +16:25:58 [ 19] [ 3] [418] +16:25:58 [ 22] [ 3] [021] +16:25:58 [ 32] [ 6] [668899] +16:25:58 [ 35] [ 32] [6213544002242722=491212014272817] +16:25:58 [ 37] [ 12] [507900577950] +16:25:58 [ 38] [ 6] [162553] +16:25:58 [ 39] [ 2] [55] +16:25:58 [ 41] [ 8] [03014005] +16:25:58 [ 49] [ 3] [418] +16:25:58 ============================================================================ +16:25:58 Sending to : +16:25:58 ============================================================================ +16:25:58 + + +waiting on router queue for slot.... +16:25:59 ============================================================================ +16:25:59 Slot Id : <391> +16:25:59 Transaction Type : RESPONSE +16:25:59 Received From : +16:25:59 ============================================================================ +16:25:59 FNo. Len. Field Value +16:25:59 ============================================================================ +16:25:59 [ 1] [ 4] [0210] +16:25:59 [ 2] [ 16] [6213544002242722] +16:25:59 [ 3] [ 6] [010000] +16:25:59 [ 4] [ 12] [000010000000] +16:25:59 [ 7] [ 10] [0320162347] +16:25:59 [ 11] [ 6] [951662] +16:25:59 [ 12] [ 6] [162347] +16:25:59 [ 13] [ 4] [0320] +16:25:59 [ 15] [ 4] [0320] +16:25:59 [ 18] [ 4] [6011] +16:25:59 [ 19] [ 3] [418] +16:25:59 [ 22] [ 3] [021] +16:25:59 [ 32] [ 6] [668899] +16:25:59 [ 35] [ 32] [6213544002242722=491212014272817] +16:25:59 [ 37] [ 12] [507900577950] +16:25:59 [ 38] [ 6] [162553] +16:25:59 [ 39] [ 2] [55] +16:25:59 [ 41] [ 8] [03014005] +16:25:59 [ 49] [ 3] [418] +16:25:59 ============================================================================ +16:25:59 Calculate Source COMM Id = 4 +16:25:59 ============================================================================ +16:25:59 + + +waiting on router queue for slot.... +16:26:00 ============================================================================ +16:26:00 Slot Id : <443> +16:26:00 Transaction Type : REQUEST +16:26:00 Received From : +16:26:00 ============================================================================ +16:26:00 FNo. Len. Field Value +16:26:00 ============================================================================ +16:26:00 [ 1] [ 4] [0200] +16:26:00 [ 2] [ 16] [6213541000565989] +16:26:00 [ 3] [ 6] [010000] +16:26:00 [ 4] [ 12] [000100000000] +16:26:00 [ 7] [ 10] [0320092506] +16:26:00 [ 11] [ 6] [270402] +16:26:00 [ 12] [ 6] [162506] +16:26:00 [ 13] [ 4] [0320] +16:26:00 [ 14] [ 4] [4912] +16:26:00 [ 15] [ 4] [0320] +16:26:00 [ 18] [ 4] [6011] +16:26:00 [ 19] [ 3] [418] +16:26:00 [ 22] [ 3] [021] +16:26:00 [ 25] [ 2] [01] +16:26:00 [ 28] [ 9] [D00002000] +16:26:00 [ 32] [ 6] [180893] +16:26:00 [ 35] [ 32] [6213541000565989=491212016598403] +16:26:00 [ 37] [ 12] [507909270402] +16:26:00 [ 41] [ 8] [0361BLTB] +16:26:00 [ 42] [ 15] [999999 ] +16:26:00 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +16:26:00 [ 49] [ 3] [418] +16:26:00 [ 52] [ 16] [6AF543C614CC9B01] +16:26:00 ============================================================================ +16:26:00 + + +waiting on router queue for slot.... +16:26:00 Sending to : +16:26:00 ============================================================================ +16:26:00 Sending to : +16:26:00 ============================================================================ +16:26:00 ============================================================================ +16:26:00 Slot Id : <443> +16:26:00 Transaction Type : REQUEST +16:26:00 Received From : +16:26:00 ============================================================================ +16:26:00 FNo. Len. Field Value +16:26:00 ============================================================================ +16:26:00 [ 1] [ 4] [0200] +16:26:00 [ 2] [ 16] [6213541000565989] +16:26:00 [ 3] [ 6] [010000] +16:26:00 [ 4] [ 12] [000100000000] +16:26:00 [ 7] [ 10] [0320092506] +16:26:00 [ 11] [ 6] [270402] +16:26:00 [ 12] [ 6] [162506] +16:26:00 [ 13] [ 4] [0320] +16:26:00 [ 14] [ 4] [4912] +16:26:00 [ 15] [ 4] [0320] +16:26:00 [ 18] [ 4] [6011] +16:26:00 [ 19] [ 3] [418] +16:26:00 [ 22] [ 3] [021] +16:26:00 [ 25] [ 2] [01] +16:26:00 [ 28] [ 9] [D00002000] +16:26:00 [ 32] [ 6] [180893] +16:26:00 [ 35] [ 32] [6213541000565989=491212016598403] +16:26:00 [ 37] [ 12] [507909270402] +16:26:00 [ 41] [ 8] [0361BLTB] +16:26:00 [ 42] [ 15] [999999 ] +16:26:00 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +16:26:00 [ 49] [ 3] [418] +16:26:00 [ 52] [ 16] [6AF543C614CC9B01] +16:26:00 ============================================================================ +16:26:00 + + +waiting on router queue for slot.... +16:26:00 Sending to : +16:26:00 ============================================================================ +16:26:00 ============================================================================ +16:26:00 Slot Id : <443> +16:26:00 Transaction Type : REQUEST +16:26:00 Received From : +16:26:00 ============================================================================ +16:26:00 FNo. Len. Field Value +16:26:00 ============================================================================ +16:26:00 [ 1] [ 4] [0200] +16:26:00 [ 2] [ 16] [6213541000565989] +16:26:00 [ 3] [ 6] [010000] +16:26:00 [ 4] [ 12] [000100000000] +16:26:00 [ 7] [ 10] [0320092506] +16:26:00 [ 11] [ 6] [270402] +16:26:00 [ 12] [ 6] [162506] +16:26:00 [ 13] [ 4] [0320] +16:26:00 [ 14] [ 4] [4912] +16:26:00 [ 15] [ 4] [0320] +16:26:00 [ 18] [ 4] [6011] +16:26:00 [ 19] [ 3] [418] +16:26:00 [ 22] [ 3] [021] +16:26:00 [ 25] [ 2] [01] +16:26:00 [ 28] [ 9] [D00002000] +16:26:00 [ 32] [ 6] [180893] +16:26:00 [ 35] [ 32] [6213541000565989=491212016598403] +16:26:00 [ 37] [ 12] [507909270402] +16:26:00 [ 41] [ 8] [0361BLTB] +16:26:00 [ 42] [ 15] [999999 ] +16:26:00 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +16:26:00 [ 49] [ 3] [418] +16:26:00 [ 52] [ 16] [8F6E3E900407B7A8] +16:26:00 ============================================================================ +16:26:00 + + +waiting on router queue for slot.... +16:26:00 Sending to : <0> +16:26:00 ============================================================================ +16:26:00 ============================================================================ +16:26:00 Slot Id : <405> +16:26:00 Transaction Type : REQUEST +16:26:00 Received From : +16:26:00 ============================================================================ +16:26:00 FNo. Len. Field Value +16:26:00 ============================================================================ +16:26:00 [ 1] [ 4] [0200] +16:26:00 [ 2] [ 16] [6688990060000237] +16:26:00 [ 3] [ 6] [010000] +16:26:00 [ 4] [ 12] [000050000000] +16:26:00 [ 7] [ 10] [0320162556] +16:26:00 [ 11] [ 6] [798728] +16:26:00 [ 12] [ 6] [162556] +16:26:00 [ 13] [ 4] [0320] +16:26:00 [ 15] [ 4] [0320] +16:26:00 [ 18] [ 4] [6011] +16:26:00 [ 22] [ 3] [900] +16:26:00 [ 25] [ 2] [02] +16:26:00 [ 28] [ 9] [D00002000] +16:26:00 [ 32] [ 6] [621354] +16:26:00 [ 35] [ 37] [6688990060000237=97091261629957200000] +16:26:00 [ 37] [ 12] [507903499591] +16:26:00 [ 41] [ 8] [06002200] +16:26:00 [ 42] [ 15] [NATIVE ] +16:26:00 [ 43] [ 40] [Beng Market Beng LAO] +16:26:00 [ 49] [ 3] [418] +16:26:00 [ 52] [ 16] [9471BFF2A91CC5AB] +16:26:00 ============================================================================ +16:26:00 + + +waiting on router queue for slot.... +16:26:00 Sending to : +16:26:00 ============================================================================ +16:26:00 Sending to : +16:26:00 ============================================================================ +16:26:01 ============================================================================ +16:26:01 Slot Id : <405> +16:26:01 Transaction Type : REQUEST +16:26:01 Received From : +16:26:01 ============================================================================ +16:26:01 FNo. Len. Field Value +16:26:01 ============================================================================ +16:26:01 [ 1] [ 4] [0200] +16:26:01 [ 2] [ 16] [6688990060000237] +16:26:01 [ 3] [ 6] [010000] +16:26:01 [ 4] [ 12] [000050000000] +16:26:01 [ 7] [ 10] [0320162556] +16:26:01 [ 11] [ 6] [798728] +16:26:01 [ 12] [ 6] [162556] +16:26:01 [ 13] [ 4] [0320] +16:26:01 [ 15] [ 4] [0320] +16:26:01 [ 18] [ 4] [6011] +16:26:01 [ 22] [ 3] [900] +16:26:01 [ 25] [ 2] [02] +16:26:01 [ 28] [ 9] [D00002000] +16:26:01 [ 32] [ 6] [621354] +16:26:01 [ 35] [ 37] [6688990060000237=97091261629957200000] +16:26:01 [ 37] [ 12] [507903499591] +16:26:01 [ 41] [ 8] [06002200] +16:26:01 [ 42] [ 15] [NATIVE ] +16:26:01 [ 43] [ 40] [Beng Market Beng LAO] +16:26:01 [ 49] [ 3] [418] +16:26:01 [ 52] [ 16] [9471BFF2A91CC5AB] +16:26:01 ============================================================================ +16:26:01 + + +waiting on router queue for slot.... +16:26:01 Sending to : +16:26:01 ============================================================================ +16:26:01 ============================================================================ +16:26:01 Slot Id : <405> +16:26:01 Transaction Type : REQUEST +16:26:01 Received From : +16:26:01 ============================================================================ +16:26:01 FNo. Len. Field Value +16:26:01 ============================================================================ +16:26:01 [ 1] [ 4] [0200] +16:26:01 [ 2] [ 16] [6688990060000237] +16:26:01 [ 3] [ 6] [010000] +16:26:01 [ 4] [ 12] [000050000000] +16:26:01 [ 7] [ 10] [0320162556] +16:26:01 [ 11] [ 6] [798728] +16:26:01 [ 12] [ 6] [162556] +16:26:01 [ 13] [ 4] [0320] +16:26:01 [ 15] [ 4] [0320] +16:26:01 [ 18] [ 4] [6011] +16:26:01 [ 22] [ 3] [900] +16:26:01 [ 25] [ 2] [02] +16:26:01 [ 28] [ 9] [D00002000] +16:26:01 [ 32] [ 6] [621354] +16:26:01 [ 35] [ 37] [6688990060000237=97091261629957200000] +16:26:01 [ 37] [ 12] [507903499591] +16:26:01 [ 41] [ 8] [06002200] +16:26:01 [ 42] [ 15] [NATIVE ] +16:26:01 [ 43] [ 40] [Beng Market Beng LAO] +16:26:01 [ 49] [ 3] [418] +16:26:01 [ 52] [ 16] [DA80FF8DE770FCAC] +16:26:01 ============================================================================ +16:26:01 + + +waiting on router queue for slot.... +16:26:01 Sending to : <4> +16:26:01 ============================================================================ +16:26:01 ============================================================================ +16:26:01 Slot Id : <443> +16:26:01 Transaction Type : RESPONSE +16:26:01 Received From : +16:26:01 ============================================================================ +16:26:01 FNo. Len. Field Value +16:26:01 ============================================================================ +16:26:01 [ 1] [ 4] [0210] +16:26:01 [ 2] [ 16] [6213541000565989] +16:26:01 [ 3] [ 6] [010000] +16:26:01 [ 4] [ 12] [000100000000] +16:26:01 [ 7] [ 10] [0320092506] +16:26:01 [ 11] [ 6] [270402] +16:26:01 [ 12] [ 6] [162506] +16:26:01 [ 13] [ 4] [0320] +16:26:01 [ 15] [ 4] [0320] +16:26:01 [ 18] [ 4] [6011] +16:26:01 [ 19] [ 3] [418] +16:26:01 [ 32] [ 6] [180893] +16:26:01 [ 35] [ 32] [6213541000565989=491212016598403] +16:26:01 [ 37] [ 12] [507909270402] +16:26:01 [ 38] [ 6] [852114] +16:26:01 [ 39] [ 2] [00] +16:26:01 [ 41] [ 8] [0361BLTB] +16:26:01 [ 49] [ 3] [418] +16:26:01 [ 54] [ 40] [0001418C0000360657520002418C000036065752] +16:26:01 ============================================================================ +16:26:01 Sending to : +16:26:01 ============================================================================ +16:26:01 + + +waiting on router queue for slot.... +16:26:02 ============================================================================ +16:26:02 Slot Id : <405> +16:26:02 Transaction Type : RESPONSE +16:26:02 Received From : +16:26:02 ============================================================================ +16:26:02 FNo. Len. Field Value +16:26:02 ============================================================================ +16:26:02 [ 1] [ 4] [0210] +16:26:02 [ 2] [ 16] [6688990060000237] +16:26:02 [ 3] [ 6] [010000] +16:26:02 [ 4] [ 12] [000050000000] +16:26:02 [ 11] [ 6] [798728] +16:26:02 [ 12] [ 6] [162556] +16:26:02 [ 15] [ 4] [0320] +16:26:02 [ 18] [ 4] [6011] +16:26:02 [ 32] [ 6] [621354] +16:26:02 [ 35] [ 37] [6688990060000237=97091261629957200000] +16:26:02 [ 37] [ 12] [507903499591] +16:26:02 [ 38] [ 6] [159180] +16:26:02 [ 39] [ 2] [00] +16:26:02 [ 41] [ 8] [06002200] +16:26:02 [ 49] [ 3] [418] +16:26:02 [ 54] [ 20] [0002418C000088146005] +16:26:02 ============================================================================ +16:26:02 Sending to : +16:26:02 ============================================================================ +16:26:02 + + +waiting on router queue for slot.... +16:26:02 ============================================================================ +16:26:02 Slot Id : <443> +16:26:02 Transaction Type : RESPONSE +16:26:02 Received From : +16:26:02 ============================================================================ +16:26:02 FNo. Len. Field Value +16:26:02 ============================================================================ +16:26:02 [ 1] [ 4] [0210] +16:26:02 [ 2] [ 16] [6213541000565989] +16:26:02 [ 3] [ 6] [010000] +16:26:02 [ 4] [ 12] [000100000000] +16:26:02 [ 7] [ 10] [0320092506] +16:26:02 [ 11] [ 6] [270402] +16:26:02 [ 12] [ 6] [162506] +16:26:02 [ 13] [ 4] [0320] +16:26:02 [ 15] [ 4] [0320] +16:26:02 [ 18] [ 4] [6011] +16:26:02 [ 19] [ 3] [418] +16:26:02 [ 32] [ 6] [180893] +16:26:02 [ 35] [ 32] [6213541000565989=491212016598403] +16:26:02 [ 37] [ 12] [507909270402] +16:26:02 [ 38] [ 6] [852114] +16:26:02 [ 39] [ 2] [00] +16:26:02 [ 41] [ 8] [0361BLTB] +16:26:02 [ 49] [ 3] [418] +16:26:02 [ 54] [ 40] [0001418C0000360657520002418C000036065752] +16:26:02 ============================================================================ +16:26:02 Calculate Source COMM Id = 2 +16:26:02 ============================================================================ +16:26:02 + + +waiting on router queue for slot.... +16:26:04 ============================================================================ +16:26:04 Slot Id : <405> +16:26:04 Transaction Type : RESPONSE +16:26:04 Received From : +16:26:04 ============================================================================ +16:26:04 FNo. Len. Field Value +16:26:04 ============================================================================ +16:26:04 [ 1] [ 4] [0210] +16:26:04 [ 2] [ 16] [6688990060000237] +16:26:04 [ 3] [ 6] [010000] +16:26:04 [ 4] [ 12] [000050000000] +16:26:04 [ 11] [ 6] [798728] +16:26:04 [ 12] [ 6] [162556] +16:26:04 [ 15] [ 4] [0320] +16:26:04 [ 18] [ 4] [6011] +16:26:04 [ 32] [ 6] [621354] +16:26:04 [ 35] [ 37] [6688990060000237=97091261629957200000] +16:26:04 [ 37] [ 12] [507903499591] +16:26:04 [ 38] [ 6] [159180] +16:26:04 [ 39] [ 2] [00] +16:26:04 [ 41] [ 8] [06002200] +16:26:04 [ 49] [ 3] [418] +16:26:04 [ 54] [ 20] [0002418C000088146005] +16:26:04 ============================================================================ +16:26:04 Calculate Source COMM Id = 0 +16:26:04 ============================================================================ +16:26:04 + + +waiting on router queue for slot.... +16:26:08 ============================================================================ +16:26:08 Slot Id : <377> +16:26:08 Transaction Type : REQUEST +16:26:08 Received From : +16:26:08 ============================================================================ +16:26:08 FNo. Len. Field Value +16:26:08 ============================================================================ +16:26:08 [ 1] [ 4] [0200] +16:26:08 [ 2] [ 16] [1808931100003464] +16:26:08 [ 3] [ 6] [011000] +16:26:08 [ 4] [ 12] [000040000000] +16:26:08 [ 7] [ 10] [0320162603] +16:26:08 [ 11] [ 6] [798768] +16:26:08 [ 12] [ 6] [162603] +16:26:08 [ 13] [ 4] [0320] +16:26:08 [ 15] [ 4] [0320] +16:26:08 [ 18] [ 4] [6011] +16:26:08 [ 22] [ 3] [900] +16:26:08 [ 25] [ 2] [02] +16:26:08 [ 28] [ 9] [D00002000] +16:26:08 [ 32] [ 6] [621354] +16:26:08 [ 35] [ 27] [1808931100003464=1803500945] +16:26:08 [ 37] [ 12] [507904599767] +16:26:08 [ 41] [ 8] [02002200] +16:26:08 [ 42] [ 15] [NATIVE ] +16:26:08 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +16:26:08 [ 49] [ 3] [418] +16:26:08 [ 52] [ 16] [1503264EDDBDB7E8] +16:26:08 ============================================================================ +16:26:08 + + +waiting on router queue for slot.... +16:26:08 Sending to : +16:26:08 ============================================================================ +16:26:08 Sending to : +16:26:08 ============================================================================ +16:26:08 ============================================================================ +16:26:08 Slot Id : <377> +16:26:08 Transaction Type : REQUEST +16:26:08 Received From : +16:26:08 ============================================================================ +16:26:08 FNo. Len. Field Value +16:26:08 ============================================================================ +16:26:08 [ 1] [ 4] [0200] +16:26:08 [ 2] [ 16] [1808931100003464] +16:26:08 [ 3] [ 6] [011000] +16:26:08 [ 4] [ 12] [000040000000] +16:26:08 [ 7] [ 10] [0320162603] +16:26:08 [ 11] [ 6] [798768] +16:26:08 [ 12] [ 6] [162603] +16:26:08 [ 13] [ 4] [0320] +16:26:08 [ 15] [ 4] [0320] +16:26:08 [ 18] [ 4] [6011] +16:26:08 [ 22] [ 3] [900] +16:26:08 [ 25] [ 2] [02] +16:26:08 [ 28] [ 9] [D00002000] +16:26:08 [ 32] [ 6] [621354] +16:26:08 [ 35] [ 27] [1808931100003464=1803500945] +16:26:08 [ 37] [ 12] [507904599767] +16:26:08 [ 41] [ 8] [02002200] +16:26:08 [ 42] [ 15] [NATIVE ] +16:26:08 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +16:26:08 [ 49] [ 3] [418] +16:26:08 [ 52] [ 16] [1503264EDDBDB7E8] +16:26:08 ============================================================================ +16:26:08 + + +waiting on router queue for slot.... +16:26:08 Sending to : +16:26:08 ============================================================================ +16:26:08 ============================================================================ +16:26:08 Slot Id : <377> +16:26:08 Transaction Type : REQUEST +16:26:08 Received From : +16:26:08 ============================================================================ +16:26:08 FNo. Len. Field Value +16:26:08 ============================================================================ +16:26:08 [ 1] [ 4] [0200] +16:26:08 [ 2] [ 16] [1808931100003464] +16:26:08 [ 3] [ 6] [011000] +16:26:08 [ 4] [ 12] [000040000000] +16:26:08 [ 7] [ 10] [0320162603] +16:26:08 [ 11] [ 6] [798768] +16:26:08 [ 12] [ 6] [162603] +16:26:08 [ 13] [ 4] [0320] +16:26:08 [ 15] [ 4] [0320] +16:26:08 [ 18] [ 4] [6011] +16:26:08 [ 22] [ 3] [900] +16:26:08 [ 25] [ 2] [02] +16:26:08 [ 28] [ 9] [D00002000] +16:26:08 [ 32] [ 6] [621354] +16:26:08 [ 35] [ 27] [1808931100003464=1803500945] +16:26:08 [ 37] [ 12] [507904599767] +16:26:08 [ 41] [ 8] [02002200] +16:26:08 [ 42] [ 15] [NATIVE ] +16:26:08 [ 43] [ 40] [Nakai Brideg 03 Nakai LAO] +16:26:08 [ 49] [ 3] [418] +16:26:08 [ 52] [ 16] [900E0A190767706A] +16:26:08 ============================================================================ +16:26:08 + + +waiting on router queue for slot.... +16:26:08 Sending to : <2> +16:26:08 ============================================================================ +16:26:09 ============================================================================ +16:26:09 Slot Id : <429> +16:26:09 Transaction Type : REQUEST +16:26:09 Received From : +16:26:09 ============================================================================ +16:26:09 FNo. Len. Field Value +16:26:09 ============================================================================ +16:26:09 [ 1] [ 4] [0200] +16:26:09 [ 2] [ 16] [6213545000951057] +16:26:09 [ 3] [ 6] [011000] +16:26:09 [ 4] [ 12] [000010000000] +16:26:09 [ 7] [ 10] [0320163356] +16:26:09 [ 11] [ 6] [223755] +16:26:09 [ 12] [ 6] [163356] +16:26:09 [ 13] [ 4] [0320] +16:26:09 [ 14] [ 4] [4912] +16:26:09 [ 15] [ 4] [0320] +16:26:09 [ 18] [ 4] [6011] +16:26:09 [ 22] [ 3] [900] +16:26:09 [ 25] [ 2] [02] +16:26:09 [ 28] [ 9] [D00002000] +16:26:09 [ 32] [ 6] [220699] +16:26:09 [ 35] [ 32] [6213545000951057=491212015105744] +16:26:09 [ 37] [ 12] [507900118780] +16:26:09 [ 41] [ 8] [01001100] +16:26:09 [ 42] [ 15] [APTRA ] +16:26:09 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:26:09 [ 49] [ 3] [418] +16:26:09 [ 52] [ 16] [6E9A091561336E63] +16:26:09 ============================================================================ +16:26:09 + + +waiting on router queue for slot.... +16:26:09 Sending to : +16:26:09 ============================================================================ +16:26:09 Sending to : +16:26:09 ============================================================================ +16:26:09 ============================================================================ +16:26:09 Slot Id : <429> +16:26:09 Transaction Type : REQUEST +16:26:09 Received From : +16:26:09 ============================================================================ +16:26:09 FNo. Len. Field Value +16:26:09 ============================================================================ +16:26:09 [ 1] [ 4] [0200] +16:26:09 [ 2] [ 16] [6213545000951057] +16:26:09 [ 3] [ 6] [011000] +16:26:09 [ 4] [ 12] [000010000000] +16:26:09 [ 7] [ 10] [0320163356] +16:26:09 [ 11] [ 6] [223755] +16:26:09 [ 12] [ 6] [163356] +16:26:09 [ 13] [ 4] [0320] +16:26:09 [ 14] [ 4] [4912] +16:26:09 [ 15] [ 4] [0320] +16:26:09 [ 18] [ 4] [6011] +16:26:09 [ 22] [ 3] [900] +16:26:09 [ 25] [ 2] [02] +16:26:09 [ 28] [ 9] [D00002000] +16:26:09 [ 32] [ 6] [220699] +16:26:09 [ 35] [ 32] [6213545000951057=491212015105744] +16:26:09 [ 37] [ 12] [507900118780] +16:26:09 [ 41] [ 8] [01001100] +16:26:09 [ 42] [ 15] [APTRA ] +16:26:09 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:26:09 [ 49] [ 3] [418] +16:26:09 [ 52] [ 16] [6E9A091561336E63] +16:26:09 ============================================================================ +16:26:09 + + +waiting on router queue for slot.... +16:26:09 Sending to : +16:26:09 ============================================================================ +16:26:09 ============================================================================ +16:26:09 Slot Id : <429> +16:26:09 Transaction Type : REQUEST +16:26:09 Received From : +16:26:09 ============================================================================ +16:26:09 FNo. Len. Field Value +16:26:09 ============================================================================ +16:26:09 [ 1] [ 4] [0200] +16:26:09 [ 2] [ 16] [6213545000951057] +16:26:09 [ 3] [ 6] [011000] +16:26:09 [ 4] [ 12] [000010000000] +16:26:09 [ 7] [ 10] [0320163356] +16:26:09 [ 11] [ 6] [223755] +16:26:09 [ 12] [ 6] [163356] +16:26:09 [ 13] [ 4] [0320] +16:26:09 [ 14] [ 4] [4912] +16:26:09 [ 15] [ 4] [0320] +16:26:09 [ 18] [ 4] [6011] +16:26:09 [ 22] [ 3] [900] +16:26:09 [ 25] [ 2] [02] +16:26:09 [ 28] [ 9] [D00002000] +16:26:09 [ 32] [ 6] [220699] +16:26:09 [ 35] [ 32] [6213545000951057=491212015105744] +16:26:09 [ 37] [ 12] [507900118780] +16:26:09 [ 41] [ 8] [01001100] +16:26:09 [ 42] [ 15] [APTRA ] +16:26:09 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:26:09 [ 49] [ 3] [418] +16:26:09 [ 52] [ 16] [24B3417AD49852C6] +16:26:09 ============================================================================ +16:26:09 + + +waiting on router queue for slot.... +16:26:09 Sending to : <0> +16:26:09 ============================================================================ +16:26:10 ============================================================================ +16:26:10 Slot Id : <429> +16:26:10 Transaction Type : RESPONSE +16:26:10 Received From : +16:26:10 ============================================================================ +16:26:10 FNo. Len. Field Value +16:26:10 ============================================================================ +16:26:10 [ 1] [ 4] [0210] +16:26:10 [ 2] [ 16] [6213545000951057] +16:26:10 [ 3] [ 6] [011000] +16:26:10 [ 4] [ 12] [000010000000] +16:26:10 [ 7] [ 10] [0320163356] +16:26:10 [ 11] [ 6] [223755] +16:26:10 [ 12] [ 6] [163356] +16:26:10 [ 13] [ 4] [0320] +16:26:10 [ 15] [ 4] [0320] +16:26:10 [ 18] [ 4] [6011] +16:26:10 [ 32] [ 6] [220699] +16:26:10 [ 35] [ 32] [6213545000951057=491212015105744] +16:26:10 [ 37] [ 12] [507900118780] +16:26:10 [ 38] [ 6] [640341] +16:26:10 [ 39] [ 2] [00] +16:26:10 [ 41] [ 8] [01001100] +16:26:10 [ 49] [ 3] [418] +16:26:10 [ 54] [ 40] [1001418C0000346540041002418C000034654004] +16:26:10 ============================================================================ +16:26:10 Sending to : +16:26:10 ============================================================================ +16:26:10 + + +waiting on router queue for slot.... +16:26:10 ============================================================================ +16:26:10 Slot Id : <386> +16:26:10 Transaction Type : REQUEST +16:26:10 Received From : +16:26:10 ============================================================================ +16:26:10 FNo. Len. Field Value +16:26:10 ============================================================================ +16:26:10 [ 1] [ 4] [0200] +16:26:10 [ 2] [ 16] [6688990105039802] +16:26:10 [ 3] [ 6] [011000] +16:26:10 [ 4] [ 12] [000100000000] +16:26:10 [ 7] [ 10] [0320162631] +16:26:10 [ 11] [ 6] [208683] +16:26:10 [ 12] [ 6] [042441] +16:26:10 [ 13] [ 4] [0320] +16:26:10 [ 14] [ 4] [4307] +16:26:10 [ 15] [ 4] [0320] +16:26:10 [ 18] [ 4] [6011] +16:26:10 [ 19] [ 3] [418] +16:26:10 [ 22] [ 3] [021] +16:26:10 [ 25] [ 2] [01] +16:26:10 [ 28] [ 9] [D00002000] +16:26:10 [ 32] [ 6] [198901] +16:26:10 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:26:10 [ 37] [ 12] [507916208683] +16:26:10 [ 41] [ 8] [01529031] +16:26:10 [ 42] [ 15] [000000041529031] +16:26:10 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:26:10 [ 49] [ 3] [418] +16:26:10 [ 52] [ 16] [EAE0D145F5ED04CF] +16:26:10 ============================================================================ +16:26:10 + + +waiting on router queue for slot.... +16:26:10 Sending to : +16:26:10 ============================================================================ +16:26:10 Sending to : +16:26:10 ============================================================================ +16:26:10 ============================================================================ +16:26:10 Slot Id : <386> +16:26:10 Transaction Type : REQUEST +16:26:10 Received From : +16:26:10 ============================================================================ +16:26:10 FNo. Len. Field Value +16:26:10 ============================================================================ +16:26:10 [ 1] [ 4] [0200] +16:26:10 [ 2] [ 16] [6688990105039802] +16:26:10 [ 3] [ 6] [011000] +16:26:10 [ 4] [ 12] [000100000000] +16:26:10 [ 7] [ 10] [0320162631] +16:26:10 [ 11] [ 6] [208683] +16:26:10 [ 12] [ 6] [042441] +16:26:10 [ 13] [ 4] [0320] +16:26:10 [ 14] [ 4] [4307] +16:26:10 [ 15] [ 4] [0320] +16:26:10 [ 18] [ 4] [6011] +16:26:10 [ 19] [ 3] [418] +16:26:10 [ 22] [ 3] [021] +16:26:10 [ 25] [ 2] [01] +16:26:10 [ 28] [ 9] [D00002000] +16:26:10 [ 32] [ 6] [198901] +16:26:10 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:26:10 [ 37] [ 12] [507916208683] +16:26:10 [ 41] [ 8] [01529031] +16:26:10 [ 42] [ 15] [000000041529031] +16:26:10 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:26:10 [ 49] [ 3] [418] +16:26:10 [ 52] [ 16] [EAE0D145F5ED04CF] +16:26:10 ============================================================================ +16:26:10 + + +waiting on router queue for slot.... +16:26:10 Sending to : +16:26:10 ============================================================================ +16:26:10 ============================================================================ +16:26:10 Slot Id : <386> +16:26:10 Transaction Type : REQUEST +16:26:10 Received From : +16:26:10 ============================================================================ +16:26:10 FNo. Len. Field Value +16:26:10 ============================================================================ +16:26:10 [ 1] [ 4] [0200] +16:26:10 [ 2] [ 16] [6688990105039802] +16:26:10 [ 3] [ 6] [011000] +16:26:10 [ 4] [ 12] [000100000000] +16:26:10 [ 7] [ 10] [0320162631] +16:26:10 [ 11] [ 6] [208683] +16:26:10 [ 12] [ 6] [042441] +16:26:10 [ 13] [ 4] [0320] +16:26:10 [ 14] [ 4] [4307] +16:26:10 [ 15] [ 4] [0320] +16:26:10 [ 18] [ 4] [6011] +16:26:10 [ 19] [ 3] [418] +16:26:10 [ 22] [ 3] [021] +16:26:10 [ 25] [ 2] [01] +16:26:10 [ 28] [ 9] [D00002000] +16:26:10 [ 32] [ 6] [198901] +16:26:10 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:26:10 [ 37] [ 12] [507916208683] +16:26:10 [ 41] [ 8] [01529031] +16:26:10 [ 42] [ 15] [000000041529031] +16:26:10 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:26:10 [ 49] [ 3] [418] +16:26:10 [ 52] [ 16] [AB7021312CFA3237] +16:26:10 ============================================================================ +16:26:10 + + +waiting on router queue for slot.... +16:26:10 Sending to : <4> +16:26:10 ============================================================================ +16:26:11 ============================================================================ +16:26:11 Slot Id : <429> +16:26:11 Transaction Type : RESPONSE +16:26:11 Received From : +16:26:11 ============================================================================ +16:26:11 FNo. Len. Field Value +16:26:11 ============================================================================ +16:26:11 [ 1] [ 4] [0210] +16:26:11 [ 2] [ 16] [6213545000951057] +16:26:11 [ 3] [ 6] [011000] +16:26:11 [ 4] [ 12] [000010000000] +16:26:11 [ 7] [ 10] [0320163356] +16:26:11 [ 11] [ 6] [223755] +16:26:11 [ 12] [ 6] [163356] +16:26:11 [ 13] [ 4] [0320] +16:26:11 [ 15] [ 4] [0320] +16:26:11 [ 18] [ 4] [6011] +16:26:11 [ 32] [ 6] [220699] +16:26:11 [ 35] [ 32] [6213545000951057=491212015105744] +16:26:11 [ 37] [ 12] [507900118780] +16:26:11 [ 38] [ 6] [640341] +16:26:11 [ 39] [ 2] [00] +16:26:11 [ 41] [ 8] [01001100] +16:26:11 [ 49] [ 3] [418] +16:26:11 [ 54] [ 40] [1001418C0000346540041002418C000034654004] +16:26:11 ============================================================================ +16:26:11 Calculate Source COMM Id = 1 +16:26:11 ============================================================================ +16:26:11 + + +waiting on router queue for slot.... +16:26:11 ============================================================================ +16:26:11 Slot Id : <386> +16:26:11 Transaction Type : RESPONSE +16:26:11 Received From : +16:26:11 ============================================================================ +16:26:11 FNo. Len. Field Value +16:26:11 ============================================================================ +16:26:11 [ 1] [ 4] [0210] +16:26:11 [ 2] [ 16] [6688990105039802] +16:26:11 [ 3] [ 6] [011000] +16:26:11 [ 4] [ 12] [000100000000] +16:26:11 [ 11] [ 6] [208683] +16:26:11 [ 12] [ 6] [042441] +16:26:11 [ 15] [ 4] [0320] +16:26:11 [ 18] [ 4] [6011] +16:26:11 [ 32] [ 6] [198901] +16:26:11 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:26:11 [ 37] [ 12] [507916208683] +16:26:11 [ 38] [ 6] [885488] +16:26:11 [ 39] [ 2] [00] +16:26:11 [ 41] [ 8] [01529031] +16:26:11 [ 49] [ 3] [418] +16:26:11 [ 54] [ 20] [1002418C000284411614] +16:26:11 ============================================================================ +16:26:11 Sending to : +16:26:11 ============================================================================ +16:26:11 + + +waiting on router queue for slot.... +16:26:13 ============================================================================ +16:26:13 Slot Id : <386> +16:26:13 Transaction Type : RESPONSE +16:26:13 Received From : +16:26:13 ============================================================================ +16:26:13 FNo. Len. Field Value +16:26:13 ============================================================================ +16:26:13 [ 1] [ 4] [0210] +16:26:13 [ 2] [ 16] [6688990105039802] +16:26:13 [ 3] [ 6] [011000] +16:26:13 [ 4] [ 12] [000100000000] +16:26:13 [ 11] [ 6] [208683] +16:26:13 [ 12] [ 6] [042441] +16:26:13 [ 15] [ 4] [0320] +16:26:13 [ 18] [ 4] [6011] +16:26:13 [ 32] [ 6] [198901] +16:26:13 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:26:13 [ 37] [ 12] [507916208683] +16:26:13 [ 38] [ 6] [885488] +16:26:13 [ 39] [ 2] [00] +16:26:13 [ 41] [ 8] [01529031] +16:26:13 [ 49] [ 3] [418] +16:26:13 [ 54] [ 20] [1002418C000284411614] +16:26:13 ============================================================================ +16:26:13 Calculate Source COMM Id = 5 +16:26:13 ============================================================================ +16:26:13 + + +waiting on router queue for slot.... +16:26:14 ============================================================================ +16:26:14 Slot Id : <377> +16:26:14 Transaction Type : RESPONSE +16:26:14 Received From : +16:26:14 ============================================================================ +16:26:14 FNo. Len. Field Value +16:26:14 ============================================================================ +16:26:14 [ 1] [ 4] [0210] +16:26:14 [ 2] [ 16] [1808931100003464] +16:26:14 [ 3] [ 6] [011000] +16:26:14 [ 4] [ 12] [000040000000] +16:26:14 [ 6] [ 12] [000040000000] +16:26:14 [ 7] [ 10] [0320162603] +16:26:14 [ 11] [ 6] [798768] +16:26:14 [ 12] [ 6] [162603] +16:26:14 [ 13] [ 4] [0320] +16:26:14 [ 18] [ 4] [6011] +16:26:14 [ 19] [ 3] [418] +16:26:14 [ 22] [ 3] [021] +16:26:14 [ 32] [ 6] [621354] +16:26:14 [ 35] [ 27] [1808931100003464=1803500945] +16:26:14 [ 37] [ 12] [507904599767] +16:26:14 [ 38] [ 6] [798768] +16:26:14 [ 39] [ 2] [00] +16:26:14 [ 41] [ 8] [02002200] +16:26:14 [ 49] [ 3] [418] +16:26:14 [ 52] [ 16] [900E0A190767706A] +16:26:14 [ 54] [ 20] [1001418C000184554900] +16:26:14 ============================================================================ +16:26:14 Sending to : +16:26:14 ============================================================================ +16:26:14 + + +waiting on router queue for slot.... +16:26:15 ============================================================================ +16:26:15 Slot Id : <446> +16:26:15 Transaction Type : REQUEST +16:26:15 Received From : +16:26:15 ============================================================================ +16:26:15 FNo. Len. Field Value +16:26:15 ============================================================================ +16:26:15 [ 1] [ 4] [0200] +16:26:15 [ 2] [ 16] [6688990106755505] +16:26:15 [ 3] [ 6] [011000] +16:26:15 [ 4] [ 12] [000030000000] +16:26:15 [ 7] [ 10] [0320162610] +16:26:15 [ 11] [ 6] [798794] +16:26:15 [ 12] [ 6] [162610] +16:26:15 [ 13] [ 4] [0320] +16:26:15 [ 15] [ 4] [0320] +16:26:15 [ 18] [ 4] [6011] +16:26:15 [ 22] [ 3] [900] +16:26:15 [ 25] [ 2] [02] +16:26:15 [ 28] [ 9] [D00002000] +16:26:15 [ 32] [ 6] [621354] +16:26:15 [ 35] [ 37] [6688990106755505=44011231550575200000] +16:26:15 [ 37] [ 12] [507904450301] +16:26:15 [ 41] [ 8] [15000700] +16:26:15 [ 42] [ 15] [NATIVE ] +16:26:15 [ 43] [ 40] [Bolikhamxay Branch02 Pakson LAO] +16:26:15 [ 49] [ 3] [418] +16:26:15 [ 52] [ 16] [6A090058DC8F7D40] +16:26:15 ============================================================================ +16:26:15 + + +waiting on router queue for slot.... +16:26:15 Sending to : +16:26:15 ============================================================================ +16:26:15 Sending to : +16:26:15 ============================================================================ +16:26:15 ============================================================================ +16:26:15 Slot Id : <446> +16:26:15 Transaction Type : REQUEST +16:26:15 Received From : +16:26:15 ============================================================================ +16:26:15 FNo. Len. Field Value +16:26:15 ============================================================================ +16:26:15 [ 1] [ 4] [0200] +16:26:15 [ 2] [ 16] [6688990106755505] +16:26:15 [ 3] [ 6] [011000] +16:26:15 [ 4] [ 12] [000030000000] +16:26:15 [ 7] [ 10] [0320162610] +16:26:15 [ 11] [ 6] [798794] +16:26:15 [ 12] [ 6] [162610] +16:26:15 [ 13] [ 4] [0320] +16:26:15 [ 15] [ 4] [0320] +16:26:15 [ 18] [ 4] [6011] +16:26:15 [ 22] [ 3] [900] +16:26:15 [ 25] [ 2] [02] +16:26:15 [ 28] [ 9] [D00002000] +16:26:15 [ 32] [ 6] [621354] +16:26:15 [ 35] [ 37] [6688990106755505=44011231550575200000] +16:26:15 [ 37] [ 12] [507904450301] +16:26:15 [ 41] [ 8] [15000700] +16:26:15 [ 42] [ 15] [NATIVE ] +16:26:15 [ 43] [ 40] [Bolikhamxay Branch02 Pakson LAO] +16:26:15 [ 49] [ 3] [418] +16:26:15 [ 52] [ 16] [6A090058DC8F7D40] +16:26:15 ============================================================================ +16:26:15 + + +waiting on router queue for slot.... +16:26:15 Sending to : +16:26:15 ============================================================================ +16:26:15 ============================================================================ +16:26:15 Slot Id : <446> +16:26:15 Transaction Type : REQUEST +16:26:15 Received From : +16:26:15 ============================================================================ +16:26:15 FNo. Len. Field Value +16:26:15 ============================================================================ +16:26:15 [ 1] [ 4] [0200] +16:26:15 [ 2] [ 16] [6688990106755505] +16:26:15 [ 3] [ 6] [011000] +16:26:15 [ 4] [ 12] [000030000000] +16:26:15 [ 7] [ 10] [0320162610] +16:26:15 [ 11] [ 6] [798794] +16:26:15 [ 12] [ 6] [162610] +16:26:15 [ 13] [ 4] [0320] +16:26:15 [ 15] [ 4] [0320] +16:26:15 [ 18] [ 4] [6011] +16:26:15 [ 22] [ 3] [900] +16:26:15 [ 25] [ 2] [02] +16:26:15 [ 28] [ 9] [D00002000] +16:26:15 [ 32] [ 6] [621354] +16:26:15 [ 35] [ 37] [6688990106755505=44011231550575200000] +16:26:15 [ 37] [ 12] [507904450301] +16:26:15 [ 41] [ 8] [15000700] +16:26:15 [ 42] [ 15] [NATIVE ] +16:26:15 [ 43] [ 40] [Bolikhamxay Branch02 Pakson LAO] +16:26:15 [ 49] [ 3] [418] +16:26:15 [ 52] [ 16] [D7D8E736E33C7184] +16:26:15 ============================================================================ +16:26:15 + + +waiting on router queue for slot.... +16:26:15 Sending to : <4> +16:26:15 ============================================================================ +16:26:15 ============================================================================ +16:26:15 Slot Id : <377> +16:26:15 Transaction Type : RESPONSE +16:26:15 Received From : +16:26:15 ============================================================================ +16:26:15 FNo. Len. Field Value +16:26:15 ============================================================================ +16:26:15 [ 1] [ 4] [0210] +16:26:15 [ 2] [ 16] [1808931100003464] +16:26:15 [ 3] [ 6] [011000] +16:26:15 [ 4] [ 12] [000040000000] +16:26:15 [ 6] [ 12] [000040000000] +16:26:15 [ 7] [ 10] [0320162603] +16:26:15 [ 11] [ 6] [798768] +16:26:15 [ 12] [ 6] [162603] +16:26:15 [ 13] [ 4] [0320] +16:26:15 [ 18] [ 4] [6011] +16:26:15 [ 19] [ 3] [418] +16:26:15 [ 22] [ 3] [021] +16:26:15 [ 32] [ 6] [621354] +16:26:15 [ 35] [ 27] [1808931100003464=1803500945] +16:26:15 [ 37] [ 12] [507904599767] +16:26:15 [ 38] [ 6] [798768] +16:26:15 [ 39] [ 2] [00] +16:26:15 [ 41] [ 8] [02002200] +16:26:15 [ 49] [ 3] [418] +16:26:15 [ 52] [ 16] [900E0A190767706A] +16:26:15 [ 54] [ 20] [1001418C000184554900] +16:26:15 ============================================================================ +16:26:15 Calculate Source COMM Id = 0 +16:26:15 ============================================================================ +16:26:15 + + +waiting on router queue for slot.... +16:26:16 ============================================================================ +16:26:16 Slot Id : <446> +16:26:16 Transaction Type : RESPONSE +16:26:16 Received From : +16:26:16 ============================================================================ +16:26:16 FNo. Len. Field Value +16:26:16 ============================================================================ +16:26:16 [ 1] [ 4] [0210] +16:26:16 [ 2] [ 16] [6688990106755505] +16:26:16 [ 3] [ 6] [011000] +16:26:16 [ 4] [ 12] [000030000000] +16:26:16 [ 11] [ 6] [798794] +16:26:16 [ 12] [ 6] [162610] +16:26:16 [ 15] [ 4] [0320] +16:26:16 [ 18] [ 4] [6011] +16:26:16 [ 32] [ 6] [621354] +16:26:16 [ 35] [ 37] [6688990106755505=44011231550575200000] +16:26:16 [ 37] [ 12] [507904450301] +16:26:16 [ 38] [ 6] [359902] +16:26:16 [ 39] [ 2] [00] +16:26:16 [ 41] [ 8] [15000700] +16:26:16 [ 49] [ 3] [418] +16:26:16 [ 54] [ 20] [1002418C000013414605] +16:26:16 ============================================================================ +16:26:16 Sending to : +16:26:16 ============================================================================ +16:26:16 + + +waiting on router queue for slot.... +16:26:17 ============================================================================ +16:26:17 Slot Id : <446> +16:26:17 Transaction Type : RESPONSE +16:26:17 Received From : +16:26:17 ============================================================================ +16:26:17 FNo. Len. Field Value +16:26:17 ============================================================================ +16:26:17 [ 1] [ 4] [0210] +16:26:17 [ 2] [ 16] [6688990106755505] +16:26:17 [ 3] [ 6] [011000] +16:26:17 [ 4] [ 12] [000030000000] +16:26:17 [ 11] [ 6] [798794] +16:26:17 [ 12] [ 6] [162610] +16:26:17 [ 15] [ 4] [0320] +16:26:17 [ 18] [ 4] [6011] +16:26:17 [ 32] [ 6] [621354] +16:26:17 [ 35] [ 37] [6688990106755505=44011231550575200000] +16:26:17 [ 37] [ 12] [507904450301] +16:26:17 [ 38] [ 6] [359902] +16:26:17 [ 39] [ 2] [00] +16:26:17 [ 41] [ 8] [15000700] +16:26:17 [ 49] [ 3] [418] +16:26:17 [ 54] [ 20] [1002418C000013414605] +16:26:17 ============================================================================ +16:26:17 Calculate Source COMM Id = 0 +16:26:17 ============================================================================ +16:26:17 + + +waiting on router queue for slot.... +16:26:19 ============================================================================ +16:26:19 Slot Id : <456> +16:26:19 Transaction Type : REQUEST +16:26:19 Received From : +16:26:19 ============================================================================ +16:26:19 FNo. Len. Field Value +16:26:19 ============================================================================ +16:26:19 [ 1] [ 4] [0200] +16:26:19 [ 2] [ 16] [6688990105247207] +16:26:19 [ 3] [ 6] [011000] +16:26:19 [ 4] [ 12] [000070000000] +16:26:19 [ 7] [ 10] [0320162614] +16:26:19 [ 11] [ 6] [798825] +16:26:19 [ 12] [ 6] [162614] +16:26:19 [ 13] [ 4] [0320] +16:26:19 [ 15] [ 4] [0320] +16:26:19 [ 18] [ 4] [6011] +16:26:19 [ 22] [ 3] [900] +16:26:19 [ 25] [ 2] [02] +16:26:19 [ 28] [ 9] [D00002000] +16:26:19 [ 32] [ 6] [621354] +16:26:19 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:26:19 [ 37] [ 12] [507904719782] +16:26:19 [ 41] [ 8] [18001000] +16:26:19 [ 42] [ 15] [NATIVE ] +16:26:19 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:26:19 [ 49] [ 3] [418] +16:26:19 [ 52] [ 16] [667459472C5E1498] +16:26:19 ============================================================================ +16:26:19 + + +waiting on router queue for slot.... +16:26:19 Sending to : +16:26:19 ============================================================================ +16:26:19 Sending to : +16:26:19 ============================================================================ +16:26:19 ============================================================================ +16:26:19 Slot Id : <456> +16:26:19 Transaction Type : REQUEST +16:26:19 Received From : +16:26:19 ============================================================================ +16:26:19 FNo. Len. Field Value +16:26:19 ============================================================================ +16:26:19 [ 1] [ 4] [0200] +16:26:19 [ 2] [ 16] [6688990105247207] +16:26:19 [ 3] [ 6] [011000] +16:26:19 [ 4] [ 12] [000070000000] +16:26:19 [ 7] [ 10] [0320162614] +16:26:19 [ 11] [ 6] [798825] +16:26:19 [ 12] [ 6] [162614] +16:26:19 [ 13] [ 4] [0320] +16:26:19 [ 15] [ 4] [0320] +16:26:19 [ 18] [ 4] [6011] +16:26:19 [ 22] [ 3] [900] +16:26:19 [ 25] [ 2] [02] +16:26:19 [ 28] [ 9] [D00002000] +16:26:19 [ 32] [ 6] [621354] +16:26:19 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:26:19 [ 37] [ 12] [507904719782] +16:26:19 [ 41] [ 8] [18001000] +16:26:19 [ 42] [ 15] [NATIVE ] +16:26:19 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:26:19 [ 49] [ 3] [418] +16:26:19 [ 52] [ 16] [667459472C5E1498] +16:26:19 ============================================================================ +16:26:19 + + +waiting on router queue for slot.... +16:26:19 Sending to : +16:26:19 ============================================================================ +16:26:19 ============================================================================ +16:26:19 Slot Id : <456> +16:26:19 Transaction Type : REQUEST +16:26:19 Received From : +16:26:19 ============================================================================ +16:26:19 FNo. Len. Field Value +16:26:19 ============================================================================ +16:26:19 [ 1] [ 4] [0200] +16:26:19 [ 2] [ 16] [6688990105247207] +16:26:19 [ 3] [ 6] [011000] +16:26:19 [ 4] [ 12] [000070000000] +16:26:19 [ 7] [ 10] [0320162614] +16:26:19 [ 11] [ 6] [798825] +16:26:19 [ 12] [ 6] [162614] +16:26:19 [ 13] [ 4] [0320] +16:26:19 [ 15] [ 4] [0320] +16:26:19 [ 18] [ 4] [6011] +16:26:19 [ 22] [ 3] [900] +16:26:19 [ 25] [ 2] [02] +16:26:19 [ 28] [ 9] [D00002000] +16:26:19 [ 32] [ 6] [621354] +16:26:19 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:26:19 [ 37] [ 12] [507904719782] +16:26:19 [ 41] [ 8] [18001000] +16:26:19 [ 42] [ 15] [NATIVE ] +16:26:19 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:26:19 [ 49] [ 3] [418] +16:26:19 [ 52] [ 16] [2740F324422C69C1] +16:26:19 ============================================================================ +16:26:19 + + +waiting on router queue for slot.... +16:26:19 Sending to : <4> +16:26:19 ============================================================================ +16:26:19 ============================================================================ +16:26:19 Slot Id : <456> +16:26:19 Transaction Type : RESPONSE +16:26:19 Received From : +16:26:19 ============================================================================ +16:26:19 FNo. Len. Field Value +16:26:19 ============================================================================ +16:26:19 [ 1] [ 4] [0210] +16:26:19 [ 2] [ 16] [6688990105247207] +16:26:19 [ 3] [ 6] [011000] +16:26:19 [ 4] [ 12] [000070000000] +16:26:19 [ 7] [ 10] [0320162614] +16:26:19 [ 11] [ 6] [798825] +16:26:19 [ 12] [ 6] [162614] +16:26:19 [ 13] [ 4] [0320] +16:26:19 [ 15] [ 4] [0320] +16:26:19 [ 18] [ 4] [6011] +16:26:19 [ 22] [ 3] [021] +16:26:19 [ 32] [ 6] [621354] +16:26:19 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:26:19 [ 37] [ 12] [507904719782] +16:26:19 [ 39] [ 2] [65] +16:26:19 [ 41] [ 8] [18001000] +16:26:19 [ 49] [ 3] [418] +16:26:19 ============================================================================ +16:26:19 Sending to : +16:26:19 ============================================================================ +16:26:19 + + +waiting on router queue for slot.... +16:26:20 ============================================================================ +16:26:20 Slot Id : <456> +16:26:20 Transaction Type : RESPONSE +16:26:20 Received From : +16:26:20 ============================================================================ +16:26:20 FNo. Len. Field Value +16:26:20 ============================================================================ +16:26:20 [ 1] [ 4] [0210] +16:26:20 [ 2] [ 16] [6688990105247207] +16:26:20 [ 3] [ 6] [011000] +16:26:20 [ 4] [ 12] [000070000000] +16:26:20 [ 7] [ 10] [0320162614] +16:26:20 [ 11] [ 6] [798825] +16:26:20 [ 12] [ 6] [162614] +16:26:20 [ 13] [ 4] [0320] +16:26:20 [ 15] [ 4] [0320] +16:26:20 [ 18] [ 4] [6011] +16:26:20 [ 22] [ 3] [021] +16:26:20 [ 32] [ 6] [621354] +16:26:20 [ 35] [ 37] [6688990105247207=43081231720789000000] +16:26:20 [ 37] [ 12] [507904719782] +16:26:20 [ 39] [ 2] [65] +16:26:20 [ 41] [ 8] [18001000] +16:26:20 [ 49] [ 3] [418] +16:26:20 ============================================================================ +16:26:20 Calculate Source COMM Id = 0 +16:26:20 ============================================================================ +16:26:20 + + +waiting on router queue for slot.... +16:26:21 ============================================================================ +16:26:21 Slot Id : <424> +16:26:21 Transaction Type : REQUEST +16:26:21 Received From : +16:26:21 ============================================================================ +16:26:21 FNo. Len. Field Value +16:26:21 ============================================================================ +16:26:21 [ 1] [ 4] [0200] +16:26:21 [ 2] [ 16] [6688990602440909] +16:26:21 [ 3] [ 6] [010000] +16:26:21 [ 4] [ 12] [000100000000] +16:26:21 [ 7] [ 10] [0320162616] +16:26:21 [ 11] [ 6] [798833] +16:26:21 [ 12] [ 6] [162616] +16:26:21 [ 13] [ 4] [0320] +16:26:21 [ 15] [ 4] [0320] +16:26:21 [ 18] [ 4] [6011] +16:26:21 [ 22] [ 3] [900] +16:26:21 [ 25] [ 2] [02] +16:26:21 [ 28] [ 9] [D00002000] +16:26:21 [ 32] [ 6] [621354] +16:26:21 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:26:21 [ 37] [ 12] [507903345213] +16:26:21 [ 41] [ 8] [13001400] +16:26:21 [ 42] [ 15] [NATIVE ] +16:26:21 [ 43] [ 40] [Kham Unit Kham LAO] +16:26:21 [ 49] [ 3] [418] +16:26:21 [ 52] [ 16] [0292AB8CFA5F7939] +16:26:21 ============================================================================ +16:26:21 + + +waiting on router queue for slot.... +16:26:21 Sending to : +16:26:21 ============================================================================ +16:26:21 Sending to : +16:26:21 ============================================================================ +16:26:21 ============================================================================ +16:26:21 Slot Id : <424> +16:26:21 Transaction Type : REQUEST +16:26:21 Received From : +16:26:21 ============================================================================ +16:26:21 FNo. Len. Field Value +16:26:21 ============================================================================ +16:26:21 [ 1] [ 4] [0200] +16:26:21 [ 2] [ 16] [6688990602440909] +16:26:21 [ 3] [ 6] [010000] +16:26:21 [ 4] [ 12] [000100000000] +16:26:21 [ 7] [ 10] [0320162616] +16:26:21 [ 11] [ 6] [798833] +16:26:21 [ 12] [ 6] [162616] +16:26:21 [ 13] [ 4] [0320] +16:26:21 [ 15] [ 4] [0320] +16:26:21 [ 18] [ 4] [6011] +16:26:21 [ 22] [ 3] [900] +16:26:21 [ 25] [ 2] [02] +16:26:21 [ 28] [ 9] [D00002000] +16:26:21 [ 32] [ 6] [621354] +16:26:21 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:26:21 [ 37] [ 12] [507903345213] +16:26:21 [ 41] [ 8] [13001400] +16:26:21 [ 42] [ 15] [NATIVE ] +16:26:21 [ 43] [ 40] [Kham Unit Kham LAO] +16:26:21 [ 49] [ 3] [418] +16:26:21 [ 52] [ 16] [0292AB8CFA5F7939] +16:26:21 ============================================================================ +16:26:21 + + +waiting on router queue for slot.... +16:26:21 Sending to : +16:26:21 ============================================================================ +16:26:21 ============================================================================ +16:26:21 Slot Id : <424> +16:26:21 Transaction Type : REQUEST +16:26:21 Received From : +16:26:21 ============================================================================ +16:26:21 FNo. Len. Field Value +16:26:21 ============================================================================ +16:26:21 [ 1] [ 4] [0200] +16:26:21 [ 2] [ 16] [6688990602440909] +16:26:21 [ 3] [ 6] [010000] +16:26:21 [ 4] [ 12] [000100000000] +16:26:21 [ 7] [ 10] [0320162616] +16:26:21 [ 11] [ 6] [798833] +16:26:21 [ 12] [ 6] [162616] +16:26:21 [ 13] [ 4] [0320] +16:26:21 [ 15] [ 4] [0320] +16:26:21 [ 18] [ 4] [6011] +16:26:21 [ 22] [ 3] [900] +16:26:21 [ 25] [ 2] [02] +16:26:21 [ 28] [ 9] [D00002000] +16:26:21 [ 32] [ 6] [621354] +16:26:21 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:26:21 [ 37] [ 12] [507903345213] +16:26:21 [ 41] [ 8] [13001400] +16:26:21 [ 42] [ 15] [NATIVE ] +16:26:21 [ 43] [ 40] [Kham Unit Kham LAO] +16:26:21 [ 49] [ 3] [418] +16:26:21 [ 52] [ 16] [A420D7A5ED0BD428] +16:26:21 ============================================================================ +16:26:21 + + +waiting on router queue for slot.... +16:26:21 Sending to : <4> +16:26:21 ============================================================================ +16:26:22 ============================================================================ +16:26:22 Slot Id : <404> +16:26:22 Transaction Type : REQUEST +16:26:22 Received From : +16:26:22 ============================================================================ +16:26:22 FNo. Len. Field Value +16:26:22 ============================================================================ +16:26:22 [ 1] [ 4] [0800] +16:26:22 [ 7] [ 10] [0320092412] +16:26:22 [ 11] [ 6] [022279] +16:26:22 [ 37] [ 12] [57916022279] +16:26:22 [ 70] [ 3] [301] +16:26:22 ============================================================================ +16:26:22 + + +waiting on router queue for slot.... +16:26:22 Sending to : +16:26:22 ============================================================================ +16:26:22 ============================================================================ +16:26:22 Slot Id : <404> +16:26:22 Transaction Type : RESPONSE +16:26:22 Received From : +16:26:22 ============================================================================ +16:26:22 FNo. Len. Field Value +16:26:22 ============================================================================ +16:26:22 [ 1] [ 4] [0810] +16:26:22 [ 7] [ 10] [0320092412] +16:26:22 [ 11] [ 6] [022279] +16:26:22 [ 37] [ 12] [579160222790] +16:26:22 [ 39] [ 2] [00] +16:26:22 [ 70] [ 3] [810] +16:26:22 ============================================================================ +16:26:22 Calculate Source COMM Id = 4 +16:26:22 ============================================================================ +16:26:22 + + +waiting on router queue for slot.... +16:26:22 ============================================================================ +16:26:22 Slot Id : <424> +16:26:22 Transaction Type : RESPONSE +16:26:22 Received From : +16:26:22 ============================================================================ +16:26:22 FNo. Len. Field Value +16:26:22 ============================================================================ +16:26:22 [ 1] [ 4] [0210] +16:26:22 [ 2] [ 16] [6688990602440909] +16:26:22 [ 3] [ 6] [010000] +16:26:22 [ 4] [ 12] [000100000000] +16:26:22 [ 11] [ 6] [798833] +16:26:22 [ 12] [ 6] [162616] +16:26:22 [ 15] [ 4] [0320] +16:26:22 [ 18] [ 4] [6011] +16:26:22 [ 32] [ 6] [621354] +16:26:22 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:26:22 [ 37] [ 12] [507903345213] +16:26:22 [ 38] [ 6] [666766] +16:26:22 [ 39] [ 2] [00] +16:26:22 [ 41] [ 8] [13001400] +16:26:22 [ 49] [ 3] [418] +16:26:22 [ 54] [ 20] [0002418C000340385834] +16:26:22 ============================================================================ +16:26:22 Sending to : +16:26:22 ============================================================================ +16:26:22 + + +waiting on router queue for slot.... +16:26:24 ============================================================================ +16:26:24 Slot Id : <445> +16:26:24 Transaction Type : REQUEST +16:26:24 Received From : +16:26:24 ============================================================================ +16:26:24 FNo. Len. Field Value +16:26:24 ============================================================================ +16:26:24 [ 1] [ 4] [0200] +16:26:24 [ 2] [ 16] [6213545001047244] +16:26:24 [ 3] [ 6] [300000] +16:26:24 [ 4] [ 12] [000000000000] +16:26:24 [ 7] [ 10] [0320162414] +16:26:24 [ 11] [ 6] [951671] +16:26:24 [ 12] [ 6] [162414] +16:26:24 [ 13] [ 4] [0320] +16:26:24 [ 15] [ 4] [0320] +16:26:24 [ 18] [ 4] [6011] +16:26:24 [ 19] [ 3] [418] +16:26:24 [ 22] [ 3] [021] +16:26:24 [ 25] [ 2] [01] +16:26:24 [ 28] [ 9] [D00000000] +16:26:24 [ 32] [ 6] [668899] +16:26:24 [ 35] [ 32] [6213545001047244=491212014724970] +16:26:24 [ 37] [ 12] [507900270993] +16:26:24 [ 41] [ 8] [03010004] +16:26:24 [ 42] [ 15] [APT ] +16:26:24 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +16:26:24 [ 49] [ 3] [418] +16:26:24 [ 52] [ 16] [4DE46159C70DFFF6] +16:26:24 ============================================================================ +16:26:24 + + +waiting on router queue for slot.... +16:26:24 Sending to : +16:26:24 ============================================================================ +16:26:24 Sending to : +16:26:24 ============================================================================ +16:26:24 ============================================================================ +16:26:24 Slot Id : <445> +16:26:24 Transaction Type : REQUEST +16:26:24 Received From : +16:26:24 ============================================================================ +16:26:24 FNo. Len. Field Value +16:26:24 ============================================================================ +16:26:24 [ 1] [ 4] [0200] +16:26:24 [ 2] [ 16] [6213545001047244] +16:26:24 [ 3] [ 6] [300000] +16:26:24 [ 4] [ 12] [000000000000] +16:26:24 [ 7] [ 10] [0320162414] +16:26:24 [ 11] [ 6] [951671] +16:26:24 [ 12] [ 6] [162414] +16:26:24 [ 13] [ 4] [0320] +16:26:24 [ 15] [ 4] [0320] +16:26:24 [ 18] [ 4] [6011] +16:26:24 [ 19] [ 3] [418] +16:26:24 [ 22] [ 3] [021] +16:26:24 [ 25] [ 2] [01] +16:26:24 [ 28] [ 9] [D00000000] +16:26:24 [ 32] [ 6] [668899] +16:26:24 [ 35] [ 32] [6213545001047244=491212014724970] +16:26:24 [ 37] [ 12] [507900270993] +16:26:24 [ 41] [ 8] [03010004] +16:26:24 [ 42] [ 15] [APT ] +16:26:24 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +16:26:24 [ 49] [ 3] [418] +16:26:24 [ 52] [ 16] [4DE46159C70DFFF6] +16:26:24 ============================================================================ +16:26:24 + + +waiting on router queue for slot.... +16:26:24 Sending to : +16:26:24 ============================================================================ +16:26:24 ============================================================================ +16:26:24 Slot Id : <445> +16:26:24 Transaction Type : REQUEST +16:26:24 Received From : +16:26:24 ============================================================================ +16:26:24 FNo. Len. Field Value +16:26:24 ============================================================================ +16:26:24 [ 1] [ 4] [0200] +16:26:24 [ 2] [ 16] [6213545001047244] +16:26:24 [ 3] [ 6] [300000] +16:26:24 [ 4] [ 12] [000000000000] +16:26:24 [ 7] [ 10] [0320162414] +16:26:24 [ 11] [ 6] [951671] +16:26:24 [ 12] [ 6] [162414] +16:26:24 [ 13] [ 4] [0320] +16:26:24 [ 15] [ 4] [0320] +16:26:24 [ 18] [ 4] [6011] +16:26:24 [ 19] [ 3] [418] +16:26:24 [ 22] [ 3] [021] +16:26:24 [ 25] [ 2] [01] +16:26:24 [ 28] [ 9] [D00000000] +16:26:24 [ 32] [ 6] [668899] +16:26:24 [ 35] [ 32] [6213545001047244=491212014724970] +16:26:24 [ 37] [ 12] [507900270993] +16:26:24 [ 41] [ 8] [03010004] +16:26:24 [ 42] [ 15] [APT ] +16:26:24 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +16:26:24 [ 49] [ 3] [418] +16:26:24 [ 52] [ 16] [97A27EB637E27C7E] +16:26:24 ============================================================================ +16:26:24 + + +waiting on router queue for slot.... +16:26:24 Sending to : <0> +16:26:24 ============================================================================ +16:26:24 ============================================================================ +16:26:24 Slot Id : <424> +16:26:24 Transaction Type : RESPONSE +16:26:24 Received From : +16:26:24 ============================================================================ +16:26:24 FNo. Len. Field Value +16:26:24 ============================================================================ +16:26:24 [ 1] [ 4] [0210] +16:26:24 [ 2] [ 16] [6688990602440909] +16:26:24 [ 3] [ 6] [010000] +16:26:24 [ 4] [ 12] [000100000000] +16:26:24 [ 11] [ 6] [798833] +16:26:24 [ 12] [ 6] [162616] +16:26:24 [ 15] [ 4] [0320] +16:26:24 [ 18] [ 4] [6011] +16:26:24 [ 32] [ 6] [621354] +16:26:24 [ 35] [ 37] [6688990602440909=43050061090953000000] +16:26:24 [ 37] [ 12] [507903345213] +16:26:24 [ 38] [ 6] [666766] +16:26:24 [ 39] [ 2] [00] +16:26:24 [ 41] [ 8] [13001400] +16:26:24 [ 49] [ 3] [418] +16:26:24 [ 54] [ 20] [0002418C000340385834] +16:26:24 ============================================================================ +16:26:24 Calculate Source COMM Id = 0 +16:26:24 ============================================================================ +16:26:24 + + +waiting on router queue for slot.... +16:26:24 ============================================================================ +16:26:24 Slot Id : <445> +16:26:24 Transaction Type : RESPONSE +16:26:24 Received From : +16:26:24 ============================================================================ +16:26:24 FNo. Len. Field Value +16:26:24 ============================================================================ +16:26:24 [ 1] [ 4] [0210] +16:26:24 [ 2] [ 16] [6213545001047244] +16:26:24 [ 3] [ 6] [300000] +16:26:24 [ 4] [ 12] [000000000000] +16:26:24 [ 7] [ 10] [0320162414] +16:26:24 [ 11] [ 6] [951671] +16:26:24 [ 12] [ 6] [162414] +16:26:24 [ 13] [ 4] [0320] +16:26:24 [ 15] [ 4] [0320] +16:26:24 [ 18] [ 4] [6011] +16:26:24 [ 19] [ 3] [418] +16:26:24 [ 32] [ 6] [668899] +16:26:24 [ 35] [ 32] [6213545001047244=491212014724970] +16:26:24 [ 37] [ 12] [507900270993] +16:26:24 [ 38] [ 6] [479429] +16:26:24 [ 39] [ 2] [00] +16:26:24 [ 41] [ 8] [03010004] +16:26:24 [ 49] [ 3] [418] +16:26:24 [ 54] [ 40] [0001418C0001637547890002418C000163754789] +16:26:24 ============================================================================ +16:26:24 Sending to : +16:26:24 ============================================================================ +16:26:24 + + +waiting on router queue for slot.... +16:26:25 ============================================================================ +16:26:25 Slot Id : <434> +16:26:25 Transaction Type : REQUEST +16:26:25 Received From : +16:26:25 ============================================================================ +16:26:25 FNo. Len. Field Value +16:26:25 ============================================================================ +16:26:25 [ 1] [ 4] [0800] +16:26:25 [ 7] [ 10] [0320092532] +16:26:25 [ 11] [ 6] [157237] +16:26:25 [ 70] [ 3] [301] +16:26:25 ============================================================================ +16:26:25 + + +waiting on router queue for slot.... +16:26:25 Sending to : +16:26:25 ============================================================================ +16:26:25 ============================================================================ +16:26:25 Slot Id : <434> +16:26:25 Transaction Type : RESPONSE +16:26:25 Received From : +16:26:25 ============================================================================ +16:26:25 FNo. Len. Field Value +16:26:25 ============================================================================ +16:26:25 [ 1] [ 4] [0810] +16:26:25 [ 7] [ 10] [0320092532] +16:26:25 [ 11] [ 6] [157237] +16:26:25 [ 39] [ 2] [00] +16:26:25 [ 70] [ 3] [301] +16:26:25 ============================================================================ +16:26:25 Calculate Source COMM Id = 2 +16:26:25 ============================================================================ +16:26:25 + + +waiting on router queue for slot.... +16:26:26 ============================================================================ +16:26:26 Slot Id : <445> +16:26:26 Transaction Type : RESPONSE +16:26:26 Received From : +16:26:26 ============================================================================ +16:26:26 FNo. Len. Field Value +16:26:26 ============================================================================ +16:26:26 [ 1] [ 4] [0210] +16:26:26 [ 2] [ 16] [6213545001047244] +16:26:26 [ 3] [ 6] [300000] +16:26:26 [ 4] [ 12] [000000000000] +16:26:26 [ 7] [ 10] [0320162414] +16:26:26 [ 11] [ 6] [951671] +16:26:26 [ 12] [ 6] [162414] +16:26:26 [ 13] [ 4] [0320] +16:26:26 [ 15] [ 4] [0320] +16:26:26 [ 18] [ 4] [6011] +16:26:26 [ 19] [ 3] [418] +16:26:26 [ 32] [ 6] [668899] +16:26:26 [ 35] [ 32] [6213545001047244=491212014724970] +16:26:26 [ 37] [ 12] [507900270993] +16:26:26 [ 38] [ 6] [479429] +16:26:26 [ 39] [ 2] [00] +16:26:26 [ 41] [ 8] [03010004] +16:26:26 [ 49] [ 3] [418] +16:26:26 [ 54] [ 40] [0001418C0001637547890002418C000163754789] +16:26:26 ============================================================================ +16:26:26 Calculate Source COMM Id = 4 +16:26:26 ============================================================================ +16:26:26 + + +waiting on router queue for slot.... +16:26:27 ============================================================================ +16:26:27 Slot Id : <438> +16:26:27 Transaction Type : REQUEST +16:26:27 Received From : +16:26:27 ============================================================================ +16:26:27 FNo. Len. Field Value +16:26:27 ============================================================================ +16:26:27 [ 1] [ 4] [0800] +16:26:27 [ 2] [ 5] [02531] +16:26:27 [ 3] [ 6] [579168] +16:26:27 [ 7] [ 10] [0320092627] +16:26:27 [ 11] [ 6] [807366] +16:26:27 [ 15] [ 10] [0320092627] +16:26:27 [ 37] [ 11] [57916807366] +16:26:27 [ 70] [ 3] [001] +16:26:27 ============================================================================ +16:26:27 + + +waiting on router queue for slot.... +16:26:27 ============================================================================ +16:26:27 Slot Id : <438> +16:26:27 Transaction Type : RESPONSE +16:26:27 Received From : +16:26:27 ============================================================================ +16:26:27 FNo. Len. Field Value +16:26:27 ============================================================================ +16:26:27 [ 1] [ 4] [0810] +16:26:27 [ 7] [ 10] [0320092627] +16:26:27 [ 11] [ 6] [807366] +16:26:27 [ 15] [ 4] [0320] +16:26:27 [ 37] [ 12] [57916807366] +16:26:27 [ 39] [ 2] [00] +16:26:27 [ 70] [ 3] [001] +16:26:27 ============================================================================ +16:26:27 Sending to : +16:26:27 ============================================================================ +16:26:27 + + +waiting on router queue for slot.... +16:26:34 ============================================================================ +16:26:34 Slot Id : <435> +16:26:34 Transaction Type : REQUEST +16:26:34 Received From : +16:26:34 ============================================================================ +16:26:34 FNo. Len. Field Value +16:26:34 ============================================================================ +16:26:34 [ 1] [ 4] [0200] +16:26:34 [ 2] [ 16] [6688990108430107] +16:26:34 [ 3] [ 6] [010000] +16:26:34 [ 4] [ 12] [000080000000] +16:26:34 [ 7] [ 10] [0320162629] +16:26:34 [ 11] [ 6] [798897] +16:26:34 [ 12] [ 6] [162629] +16:26:34 [ 13] [ 4] [0320] +16:26:34 [ 15] [ 4] [0320] +16:26:34 [ 18] [ 4] [6011] +16:26:34 [ 22] [ 3] [900] +16:26:34 [ 25] [ 2] [02] +16:26:34 [ 28] [ 9] [D00002000] +16:26:34 [ 32] [ 6] [621354] +16:26:34 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:26:34 [ 37] [ 12] [507903743399] +16:26:34 [ 41] [ 8] [06002400] +16:26:34 [ 42] [ 15] [NATIVE ] +16:26:34 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:26:34 [ 49] [ 3] [418] +16:26:34 [ 52] [ 16] [FBFD2F498C27BE7C] +16:26:34 ============================================================================ +16:26:34 + + +waiting on router queue for slot.... +16:26:34 Sending to : +16:26:34 ============================================================================ +16:26:34 Sending to : +16:26:34 ============================================================================ +16:26:34 ============================================================================ +16:26:34 Slot Id : <442> +16:26:34 Transaction Type : REQUEST +16:26:34 Received From : +16:26:34 ============================================================================ +16:26:34 FNo. Len. Field Value +16:26:34 ============================================================================ +16:26:34 [ 1] [ 4] [0200] +16:26:34 [ 2] [ 16] [6213548000206167] +16:26:34 [ 3] [ 6] [010000] +16:26:34 [ 4] [ 12] [000049000000] +16:26:34 [ 7] [ 10] [0320092538] +16:26:34 [ 11] [ 6] [270409] +16:26:34 [ 12] [ 6] [162538] +16:26:34 [ 13] [ 4] [0320] +16:26:34 [ 14] [ 4] [1712] +16:26:34 [ 15] [ 4] [0320] +16:26:34 [ 18] [ 4] [6011] +16:26:34 [ 19] [ 3] [418] +16:26:34 [ 22] [ 3] [021] +16:26:34 [ 25] [ 2] [01] +16:26:34 [ 28] [ 9] [D00002000] +16:26:34 [ 32] [ 6] [180893] +16:26:34 [ 35] [ 32] [6213548000206167=171212010616875] +16:26:34 [ 37] [ 12] [507909270409] +16:26:34 [ 41] [ 8] [0522XYXH] +16:26:34 [ 42] [ 15] [999999 ] +16:26:34 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:26:34 [ 49] [ 3] [418] +16:26:34 [ 52] [ 16] [1856C8AF733EC1D6] +16:26:34 ============================================================================ +16:26:34 + + +waiting on router queue for slot.... +16:26:34 Sending to : +16:26:34 ============================================================================ +16:26:34 Sending to : +16:26:34 ============================================================================ +16:26:34 ============================================================================ +16:26:34 Slot Id : <435> +16:26:34 Transaction Type : REQUEST +16:26:34 Received From : +16:26:34 ============================================================================ +16:26:34 FNo. Len. Field Value +16:26:34 ============================================================================ +16:26:34 [ 1] [ 4] [0200] +16:26:34 [ 2] [ 16] [6688990108430107] +16:26:34 [ 3] [ 6] [010000] +16:26:34 [ 4] [ 12] [000080000000] +16:26:34 [ 7] [ 10] [0320162629] +16:26:34 [ 11] [ 6] [798897] +16:26:34 [ 12] [ 6] [162629] +16:26:34 [ 13] [ 4] [0320] +16:26:34 [ 15] [ 4] [0320] +16:26:34 [ 18] [ 4] [6011] +16:26:34 [ 22] [ 3] [900] +16:26:34 [ 25] [ 2] [02] +16:26:34 [ 28] [ 9] [D00002000] +16:26:34 [ 32] [ 6] [621354] +16:26:34 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:26:34 [ 37] [ 12] [507903743399] +16:26:34 [ 41] [ 8] [06002400] +16:26:34 [ 42] [ 15] [NATIVE ] +16:26:34 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:26:34 [ 49] [ 3] [418] +16:26:34 [ 52] [ 16] [FBFD2F498C27BE7C] +16:26:34 ============================================================================ +16:26:34 + + +waiting on router queue for slot.... +16:26:34 Sending to : +16:26:34 ============================================================================ +16:26:34 ============================================================================ +16:26:34 Slot Id : <435> +16:26:34 Transaction Type : REQUEST +16:26:34 Received From : +16:26:34 ============================================================================ +16:26:34 FNo. Len. Field Value +16:26:34 ============================================================================ +16:26:34 [ 1] [ 4] [0200] +16:26:34 [ 2] [ 16] [6688990108430107] +16:26:34 [ 3] [ 6] [010000] +16:26:34 [ 4] [ 12] [000080000000] +16:26:34 [ 7] [ 10] [0320162629] +16:26:34 [ 11] [ 6] [798897] +16:26:34 [ 12] [ 6] [162629] +16:26:34 [ 13] [ 4] [0320] +16:26:34 [ 15] [ 4] [0320] +16:26:34 [ 18] [ 4] [6011] +16:26:34 [ 22] [ 3] [900] +16:26:34 [ 25] [ 2] [02] +16:26:34 [ 28] [ 9] [D00002000] +16:26:34 [ 32] [ 6] [621354] +16:26:34 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:26:34 [ 37] [ 12] [507903743399] +16:26:34 [ 41] [ 8] [06002400] +16:26:34 [ 42] [ 15] [NATIVE ] +16:26:34 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:26:34 [ 49] [ 3] [418] +16:26:34 [ 52] [ 16] [4168FB5C1D2D30C0] +16:26:34 ============================================================================ +16:26:34 + + +waiting on router queue for slot.... +16:26:34 Sending to : <4> +16:26:34 ============================================================================ +16:26:35 ============================================================================ +16:26:35 Slot Id : <442> +16:26:35 Transaction Type : REQUEST +16:26:35 Received From : +16:26:35 ============================================================================ +16:26:35 FNo. Len. Field Value +16:26:35 ============================================================================ +16:26:35 [ 1] [ 4] [0200] +16:26:35 [ 2] [ 16] [6213548000206167] +16:26:35 [ 3] [ 6] [010000] +16:26:35 [ 4] [ 12] [000049000000] +16:26:35 [ 7] [ 10] [0320092538] +16:26:35 [ 11] [ 6] [270409] +16:26:35 [ 12] [ 6] [162538] +16:26:35 [ 13] [ 4] [0320] +16:26:35 [ 14] [ 4] [1712] +16:26:35 [ 15] [ 4] [0320] +16:26:35 [ 18] [ 4] [6011] +16:26:35 [ 19] [ 3] [418] +16:26:35 [ 22] [ 3] [021] +16:26:35 [ 25] [ 2] [01] +16:26:35 [ 28] [ 9] [D00002000] +16:26:35 [ 32] [ 6] [180893] +16:26:35 [ 35] [ 32] [6213548000206167=171212010616875] +16:26:35 [ 37] [ 12] [507909270409] +16:26:35 [ 41] [ 8] [0522XYXH] +16:26:35 [ 42] [ 15] [999999 ] +16:26:35 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:26:35 [ 49] [ 3] [418] +16:26:35 [ 52] [ 16] [1856C8AF733EC1D6] +16:26:35 ============================================================================ +16:26:35 + + +waiting on router queue for slot.... +16:26:35 Sending to : +16:26:35 ============================================================================ +16:26:35 ============================================================================ +16:26:35 Slot Id : <442> +16:26:35 Transaction Type : REQUEST +16:26:35 Received From : +16:26:35 ============================================================================ +16:26:35 FNo. Len. Field Value +16:26:35 ============================================================================ +16:26:35 [ 1] [ 4] [0200] +16:26:35 [ 2] [ 16] [6213548000206167] +16:26:35 [ 3] [ 6] [010000] +16:26:35 [ 4] [ 12] [000049000000] +16:26:35 [ 7] [ 10] [0320092538] +16:26:35 [ 11] [ 6] [270409] +16:26:35 [ 12] [ 6] [162538] +16:26:35 [ 13] [ 4] [0320] +16:26:35 [ 14] [ 4] [1712] +16:26:35 [ 15] [ 4] [0320] +16:26:35 [ 18] [ 4] [6011] +16:26:35 [ 19] [ 3] [418] +16:26:35 [ 22] [ 3] [021] +16:26:35 [ 25] [ 2] [01] +16:26:35 [ 28] [ 9] [D00002000] +16:26:35 [ 32] [ 6] [180893] +16:26:35 [ 35] [ 32] [6213548000206167=171212010616875] +16:26:35 [ 37] [ 12] [507909270409] +16:26:35 [ 41] [ 8] [0522XYXH] +16:26:35 [ 42] [ 15] [999999 ] +16:26:35 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:26:35 [ 49] [ 3] [418] +16:26:35 [ 52] [ 16] [4401AF7A91023EB9] +16:26:35 ============================================================================ +16:26:35 + + +waiting on router queue for slot.... +16:26:35 Sending to : <0> +16:26:35 ============================================================================ +16:26:35 ============================================================================ +16:26:35 Slot Id : <442> +16:26:35 Transaction Type : RESPONSE +16:26:35 Received From : +16:26:35 ============================================================================ +16:26:35 FNo. Len. Field Value +16:26:35 ============================================================================ +16:26:35 [ 1] [ 4] [0210] +16:26:35 [ 2] [ 16] [6213548000206167] +16:26:35 [ 3] [ 6] [010000] +16:26:35 [ 4] [ 12] [000049000000] +16:26:35 [ 7] [ 10] [0320092538] +16:26:35 [ 11] [ 6] [270409] +16:26:35 [ 12] [ 6] [162538] +16:26:35 [ 13] [ 4] [0320] +16:26:35 [ 15] [ 4] [0320] +16:26:35 [ 18] [ 4] [6011] +16:26:35 [ 19] [ 3] [418] +16:26:35 [ 32] [ 6] [180893] +16:26:35 [ 35] [ 32] [6213548000206167=171212010616875] +16:26:35 [ 37] [ 12] [507909270409] +16:26:35 [ 38] [ 6] [270409] +16:26:35 [ 39] [ 2] [51] +16:26:35 [ 41] [ 8] [0522XYXH] +16:26:35 [ 49] [ 3] [418] +16:26:35 [ 54] [ 40] [0001418C0000534553800002418C000053455380] +16:26:35 ============================================================================ +16:26:35 Sending to : +16:26:35 ============================================================================ +16:26:35 + + +waiting on router queue for slot.... +16:26:35 ============================================================================ +16:26:35 Slot Id : <435> +16:26:35 Transaction Type : RESPONSE +16:26:35 Received From : +16:26:35 ============================================================================ +16:26:35 FNo. Len. Field Value +16:26:35 ============================================================================ +16:26:35 [ 1] [ 4] [0210] +16:26:35 [ 2] [ 16] [6688990108430107] +16:26:35 [ 3] [ 6] [010000] +16:26:35 [ 4] [ 12] [000080000000] +16:26:35 [ 11] [ 6] [798897] +16:26:35 [ 12] [ 6] [162629] +16:26:35 [ 15] [ 4] [0320] +16:26:35 [ 18] [ 4] [6011] +16:26:35 [ 32] [ 6] [621354] +16:26:35 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:26:35 [ 37] [ 12] [507903743399] +16:26:35 [ 38] [ 6] [759191] +16:26:35 [ 39] [ 2] [00] +16:26:35 [ 41] [ 8] [06002400] +16:26:35 [ 49] [ 3] [418] +16:26:35 [ 54] [ 20] [0002418C000013161979] +16:26:35 ============================================================================ +16:26:35 Sending to : +16:26:35 ============================================================================ +16:26:35 + + +waiting on router queue for slot.... +16:26:36 ============================================================================ +16:26:36 Slot Id : <442> +16:26:36 Transaction Type : RESPONSE +16:26:36 Received From : +16:26:36 ============================================================================ +16:26:36 FNo. Len. Field Value +16:26:36 ============================================================================ +16:26:36 [ 1] [ 4] [0210] +16:26:36 [ 2] [ 16] [6213548000206167] +16:26:36 [ 3] [ 6] [010000] +16:26:36 [ 4] [ 12] [000049000000] +16:26:36 [ 7] [ 10] [0320092538] +16:26:36 [ 11] [ 6] [270409] +16:26:36 [ 12] [ 6] [162538] +16:26:36 [ 13] [ 4] [0320] +16:26:36 [ 15] [ 4] [0320] +16:26:36 [ 18] [ 4] [6011] +16:26:36 [ 19] [ 3] [418] +16:26:36 [ 32] [ 6] [180893] +16:26:36 [ 35] [ 32] [6213548000206167=171212010616875] +16:26:36 [ 37] [ 12] [507909270409] +16:26:36 [ 38] [ 6] [270409] +16:26:36 [ 39] [ 2] [51] +16:26:36 [ 41] [ 8] [0522XYXH] +16:26:36 [ 49] [ 3] [418] +16:26:36 [ 54] [ 40] [0001418C0000534553800002418C000053455380] +16:26:36 ============================================================================ +16:26:36 Calculate Source COMM Id = 2 +16:26:36 ============================================================================ +16:26:36 + + +waiting on router queue for slot.... +16:26:38 ============================================================================ +16:26:38 Slot Id : <435> +16:26:38 Transaction Type : RESPONSE +16:26:38 Received From : +16:26:38 ============================================================================ +16:26:38 FNo. Len. Field Value +16:26:38 ============================================================================ +16:26:38 [ 1] [ 4] [0210] +16:26:38 [ 2] [ 16] [6688990108430107] +16:26:38 [ 3] [ 6] [010000] +16:26:38 [ 4] [ 12] [000080000000] +16:26:38 [ 11] [ 6] [798897] +16:26:38 [ 12] [ 6] [162629] +16:26:38 [ 15] [ 4] [0320] +16:26:38 [ 18] [ 4] [6011] +16:26:38 [ 32] [ 6] [621354] +16:26:38 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:26:38 [ 37] [ 12] [507903743399] +16:26:38 [ 38] [ 6] [759191] +16:26:38 [ 39] [ 2] [00] +16:26:38 [ 41] [ 8] [06002400] +16:26:38 [ 49] [ 3] [418] +16:26:38 [ 54] [ 20] [0002418C000013161979] +16:26:38 ============================================================================ +16:26:38 Calculate Source COMM Id = 0 +16:26:38 ============================================================================ +16:26:38 + + +waiting on router queue for slot.... +16:26:46 ============================================================================ +16:26:46 Slot Id : <428> +16:26:46 Transaction Type : REQUEST +16:26:46 Received From : +16:26:46 ============================================================================ +16:26:46 FNo. Len. Field Value +16:26:46 ============================================================================ +16:26:46 [ 1] [ 4] [0200] +16:26:46 [ 2] [ 16] [6688990105039802] +16:26:46 [ 3] [ 6] [011000] +16:26:46 [ 4] [ 12] [000100000000] +16:26:46 [ 7] [ 10] [0320162706] +16:26:46 [ 11] [ 6] [208686] +16:26:46 [ 12] [ 6] [042516] +16:26:46 [ 13] [ 4] [0320] +16:26:46 [ 14] [ 4] [4307] +16:26:46 [ 15] [ 4] [0320] +16:26:46 [ 18] [ 4] [6011] +16:26:46 [ 19] [ 3] [418] +16:26:46 [ 22] [ 3] [021] +16:26:46 [ 25] [ 2] [01] +16:26:46 [ 28] [ 9] [D00002000] +16:26:46 [ 32] [ 6] [198901] +16:26:46 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:26:46 [ 37] [ 12] [507916208686] +16:26:46 [ 41] [ 8] [01529031] +16:26:46 [ 42] [ 15] [000000041529031] +16:26:46 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:26:46 [ 49] [ 3] [418] +16:26:46 [ 52] [ 16] [EAE0D145F5ED04CF] +16:26:46 ============================================================================ +16:26:46 + + +waiting on router queue for slot.... +16:26:46 Sending to : +16:26:46 ============================================================================ +16:26:46 Sending to : +16:26:46 ============================================================================ +16:26:46 ============================================================================ +16:26:46 Slot Id : <428> +16:26:46 Transaction Type : REQUEST +16:26:46 Received From : +16:26:46 ============================================================================ +16:26:46 FNo. Len. Field Value +16:26:46 ============================================================================ +16:26:46 [ 1] [ 4] [0200] +16:26:46 [ 2] [ 16] [6688990105039802] +16:26:46 [ 3] [ 6] [011000] +16:26:46 [ 4] [ 12] [000100000000] +16:26:46 [ 7] [ 10] [0320162706] +16:26:46 [ 11] [ 6] [208686] +16:26:46 [ 12] [ 6] [042516] +16:26:46 [ 13] [ 4] [0320] +16:26:46 [ 14] [ 4] [4307] +16:26:46 [ 15] [ 4] [0320] +16:26:46 [ 18] [ 4] [6011] +16:26:46 [ 19] [ 3] [418] +16:26:46 [ 22] [ 3] [021] +16:26:46 [ 25] [ 2] [01] +16:26:46 [ 28] [ 9] [D00002000] +16:26:46 [ 32] [ 6] [198901] +16:26:46 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:26:46 [ 37] [ 12] [507916208686] +16:26:46 [ 41] [ 8] [01529031] +16:26:46 [ 42] [ 15] [000000041529031] +16:26:46 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:26:46 [ 49] [ 3] [418] +16:26:46 [ 52] [ 16] [EAE0D145F5ED04CF] +16:26:46 ============================================================================ +16:26:46 + + +waiting on router queue for slot.... +16:26:46 Sending to : +16:26:46 ============================================================================ +16:26:46 ============================================================================ +16:26:46 Slot Id : <428> +16:26:46 Transaction Type : REQUEST +16:26:46 Received From : +16:26:46 ============================================================================ +16:26:46 FNo. Len. Field Value +16:26:46 ============================================================================ +16:26:46 [ 1] [ 4] [0200] +16:26:46 [ 2] [ 16] [6688990105039802] +16:26:46 [ 3] [ 6] [011000] +16:26:46 [ 4] [ 12] [000100000000] +16:26:46 [ 7] [ 10] [0320162706] +16:26:46 [ 11] [ 6] [208686] +16:26:46 [ 12] [ 6] [042516] +16:26:46 [ 13] [ 4] [0320] +16:26:46 [ 14] [ 4] [4307] +16:26:46 [ 15] [ 4] [0320] +16:26:46 [ 18] [ 4] [6011] +16:26:46 [ 19] [ 3] [418] +16:26:46 [ 22] [ 3] [021] +16:26:46 [ 25] [ 2] [01] +16:26:46 [ 28] [ 9] [D00002000] +16:26:46 [ 32] [ 6] [198901] +16:26:46 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:26:46 [ 37] [ 12] [507916208686] +16:26:46 [ 41] [ 8] [01529031] +16:26:46 [ 42] [ 15] [000000041529031] +16:26:46 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:26:46 [ 49] [ 3] [418] +16:26:46 [ 52] [ 16] [AB7021312CFA3237] +16:26:46 ============================================================================ +16:26:46 + + +waiting on router queue for slot.... +16:26:46 Sending to : <4> +16:26:46 ============================================================================ +16:26:47 ============================================================================ +16:26:47 Slot Id : <428> +16:26:47 Transaction Type : RESPONSE +16:26:47 Received From : +16:26:47 ============================================================================ +16:26:47 FNo. Len. Field Value +16:26:47 ============================================================================ +16:26:47 [ 1] [ 4] [0210] +16:26:47 [ 2] [ 16] [6688990105039802] +16:26:47 [ 3] [ 6] [011000] +16:26:47 [ 4] [ 12] [000100000000] +16:26:47 [ 11] [ 6] [208686] +16:26:47 [ 12] [ 6] [042516] +16:26:47 [ 15] [ 4] [0320] +16:26:47 [ 18] [ 4] [6011] +16:26:47 [ 32] [ 6] [198901] +16:26:47 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:26:47 [ 37] [ 12] [507916208686] +16:26:47 [ 38] [ 6] [788641] +16:26:47 [ 39] [ 2] [00] +16:26:47 [ 41] [ 8] [01529031] +16:26:47 [ 49] [ 3] [418] +16:26:47 [ 54] [ 20] [1002418C000184211614] +16:26:47 ============================================================================ +16:26:47 Sending to : +16:26:47 ============================================================================ +16:26:47 + + +waiting on router queue for slot.... +16:26:49 ============================================================================ +16:26:49 Slot Id : <428> +16:26:49 Transaction Type : RESPONSE +16:26:49 Received From : +16:26:49 ============================================================================ +16:26:49 FNo. Len. Field Value +16:26:49 ============================================================================ +16:26:49 [ 1] [ 4] [0210] +16:26:49 [ 2] [ 16] [6688990105039802] +16:26:49 [ 3] [ 6] [011000] +16:26:49 [ 4] [ 12] [000100000000] +16:26:49 [ 11] [ 6] [208686] +16:26:49 [ 12] [ 6] [042516] +16:26:49 [ 15] [ 4] [0320] +16:26:49 [ 18] [ 4] [6011] +16:26:49 [ 32] [ 6] [198901] +16:26:49 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:26:49 [ 37] [ 12] [507916208686] +16:26:49 [ 38] [ 6] [788641] +16:26:49 [ 39] [ 2] [00] +16:26:49 [ 41] [ 8] [01529031] +16:26:49 [ 49] [ 3] [418] +16:26:49 [ 54] [ 20] [1002418C000184211614] +16:26:49 ============================================================================ +16:26:49 Calculate Source COMM Id = 5 +16:26:49 ============================================================================ +16:26:49 + + +waiting on router queue for slot.... +16:26:50 ============================================================================ +16:26:50 Slot Id : <427> +16:26:50 Transaction Type : REQUEST +16:26:50 Received From : +16:26:50 ============================================================================ +16:26:50 FNo. Len. Field Value +16:26:50 ============================================================================ +16:26:50 [ 1] [ 4] [0800] +16:26:50 [ 7] [ 10] [0320233837] +16:26:50 [ 11] [ 6] [163837] +16:26:50 [ 37] [ 12] [57916163837] +16:26:50 [ 70] [ 3] [301] +16:26:50 ============================================================================ +16:26:50 + + +waiting on router queue for slot.... +16:26:50 Sending to : +16:26:50 ============================================================================ +16:26:50 ============================================================================ +16:26:50 Slot Id : <427> +16:26:50 Transaction Type : RESPONSE +16:26:50 Received From : +16:26:50 ============================================================================ +16:26:50 FNo. Len. Field Value +16:26:50 ============================================================================ +16:26:50 [ 1] [ 4] [0810] +16:26:50 [ 7] [ 10] [0320233837] +16:26:50 [ 11] [ 6] [163837] +16:26:50 [ 37] [ 12] [579161638370] +16:26:50 [ 39] [ 2] [00] +16:26:50 [ 70] [ 3] [810] +16:26:50 ============================================================================ +16:26:50 Calculate Source COMM Id = 6 +16:26:50 ============================================================================ +16:26:50 + + +waiting on router queue for slot.... +16:26:50 ============================================================================ +16:26:50 Slot Id : <462> +16:26:50 Transaction Type : REQUEST +16:26:50 Received From : +16:26:50 ============================================================================ +16:26:50 FNo. Len. Field Value +16:26:50 ============================================================================ +16:26:50 [ 1] [ 4] [0800] +16:26:50 [ 7] [ 10] [0320092557] +16:26:50 [ 11] [ 6] [157238] +16:26:50 [ 70] [ 3] [301] +16:26:50 ============================================================================ +16:26:50 + + +waiting on router queue for slot.... +16:26:50 Sending to : +16:26:50 ============================================================================ +16:26:50 ============================================================================ +16:26:50 Slot Id : <462> +16:26:50 Transaction Type : RESPONSE +16:26:50 Received From : +16:26:50 ============================================================================ +16:26:50 FNo. Len. Field Value +16:26:50 ============================================================================ +16:26:50 [ 1] [ 4] [0810] +16:26:50 [ 7] [ 10] [0320092557] +16:26:50 [ 11] [ 6] [157238] +16:26:50 [ 39] [ 2] [00] +16:26:50 [ 70] [ 3] [301] +16:26:50 ============================================================================ +16:26:50 Calculate Source COMM Id = 2 +16:26:50 ============================================================================ +16:26:50 + + +waiting on router queue for slot.... +16:26:51 ============================================================================ +16:26:51 Slot Id : <431> +16:26:51 Transaction Type : REQUEST +16:26:51 Received From : +16:26:51 ============================================================================ +16:26:51 FNo. Len. Field Value +16:26:51 ============================================================================ +16:26:51 [ 1] [ 4] [0200] +16:26:51 [ 2] [ 16] [6688990103249205] +16:26:51 [ 3] [ 6] [010000] +16:26:51 [ 4] [ 12] [000150000000] +16:26:51 [ 7] [ 10] [0320092557] +16:26:51 [ 11] [ 6] [270413] +16:26:51 [ 12] [ 6] [162557] +16:26:51 [ 13] [ 4] [0320] +16:26:51 [ 14] [ 4] [4212] +16:26:51 [ 15] [ 4] [0320] +16:26:51 [ 18] [ 4] [6011] +16:26:51 [ 19] [ 3] [418] +16:26:51 [ 22] [ 3] [021] +16:26:51 [ 25] [ 2] [01] +16:26:51 [ 28] [ 9] [D00002000] +16:26:51 [ 32] [ 6] [180893] +16:26:51 [ 35] [ 37] [6688990103249205=42121231920564900000] +16:26:51 [ 37] [ 12] [507909270413] +16:26:51 [ 41] [ 8] [0369SLVL] +16:26:51 [ 42] [ 15] [999999 ] +16:26:51 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:26:51 [ 49] [ 3] [418] +16:26:51 [ 52] [ 16] [843A934FFD43CAA0] +16:26:51 ============================================================================ +16:26:51 + + +waiting on router queue for slot.... +16:26:51 Sending to : +16:26:51 ============================================================================ +16:26:51 Sending to : +16:26:51 ============================================================================ +16:26:51 ============================================================================ +16:26:51 Slot Id : <421> +16:26:51 Transaction Type : REQUEST +16:26:51 Received From : +16:26:51 ============================================================================ +16:26:51 FNo. Len. Field Value +16:26:51 ============================================================================ +16:26:51 [ 1] [ 4] [0200] +16:26:51 [ 2] [ 16] [6213544000546975] +16:26:51 [ 3] [ 6] [011000] +16:26:51 [ 4] [ 12] [000010000000] +16:26:51 [ 7] [ 10] [0320092558] +16:26:51 [ 11] [ 6] [270414] +16:26:51 [ 12] [ 6] [162558] +16:26:51 [ 13] [ 4] [0320] +16:26:51 [ 14] [ 4] [4912] +16:26:51 [ 15] [ 4] [0320] +16:26:51 [ 18] [ 4] [6011] +16:26:51 [ 19] [ 3] [418] +16:26:51 [ 22] [ 3] [021] +16:26:51 [ 25] [ 2] [01] +16:26:51 [ 28] [ 9] [D00002000] +16:26:51 [ 32] [ 6] [180893] +16:26:51 [ 35] [ 32] [6213544000546975=491212014697348] +16:26:51 [ 37] [ 12] [507909270414] +16:26:51 [ 41] [ 8] [0112CPBR] +16:26:51 [ 42] [ 15] [999999 ] +16:26:51 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +16:26:51 [ 49] [ 3] [418] +16:26:51 [ 52] [ 16] [8E3F7F0282648000] +16:26:51 ============================================================================ +16:26:51 + + +waiting on router queue for slot.... +16:26:51 Sending to : +16:26:51 ============================================================================ +16:26:51 Sending to : +16:26:51 ============================================================================ +16:26:51 ============================================================================ +16:26:51 Slot Id : <431> +16:26:51 Transaction Type : REQUEST +16:26:51 Received From : +16:26:51 ============================================================================ +16:26:51 FNo. Len. Field Value +16:26:51 ============================================================================ +16:26:51 [ 1] [ 4] [0200] +16:26:51 [ 2] [ 16] [6688990103249205] +16:26:51 [ 3] [ 6] [010000] +16:26:51 [ 4] [ 12] [000150000000] +16:26:51 [ 7] [ 10] [0320092557] +16:26:51 [ 11] [ 6] [270413] +16:26:51 [ 12] [ 6] [162557] +16:26:51 [ 13] [ 4] [0320] +16:26:51 [ 14] [ 4] [4212] +16:26:51 [ 15] [ 4] [0320] +16:26:51 [ 18] [ 4] [6011] +16:26:51 [ 19] [ 3] [418] +16:26:51 [ 22] [ 3] [021] +16:26:51 [ 25] [ 2] [01] +16:26:51 [ 28] [ 9] [D00002000] +16:26:51 [ 32] [ 6] [180893] +16:26:51 [ 35] [ 37] [6688990103249205=42121231920564900000] +16:26:51 [ 37] [ 12] [507909270413] +16:26:51 [ 41] [ 8] [0369SLVL] +16:26:51 [ 42] [ 15] [999999 ] +16:26:51 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:26:51 [ 49] [ 3] [418] +16:26:51 [ 52] [ 16] [843A934FFD43CAA0] +16:26:51 ============================================================================ +16:26:51 + + +waiting on router queue for slot.... +16:26:51 Sending to : +16:26:51 ============================================================================ +16:26:51 ============================================================================ +16:26:51 Slot Id : <431> +16:26:51 Transaction Type : REQUEST +16:26:51 Received From : +16:26:51 ============================================================================ +16:26:51 FNo. Len. Field Value +16:26:51 ============================================================================ +16:26:51 [ 1] [ 4] [0200] +16:26:51 [ 2] [ 16] [6688990103249205] +16:26:51 [ 3] [ 6] [010000] +16:26:51 [ 4] [ 12] [000150000000] +16:26:51 [ 7] [ 10] [0320092557] +16:26:51 [ 11] [ 6] [270413] +16:26:51 [ 12] [ 6] [162557] +16:26:51 [ 13] [ 4] [0320] +16:26:51 [ 14] [ 4] [4212] +16:26:51 [ 15] [ 4] [0320] +16:26:51 [ 18] [ 4] [6011] +16:26:51 [ 19] [ 3] [418] +16:26:51 [ 22] [ 3] [021] +16:26:51 [ 25] [ 2] [01] +16:26:51 [ 28] [ 9] [D00002000] +16:26:51 [ 32] [ 6] [180893] +16:26:51 [ 35] [ 37] [6688990103249205=42121231920564900000] +16:26:51 [ 37] [ 12] [507909270413] +16:26:51 [ 41] [ 8] [0369SLVL] +16:26:51 [ 42] [ 15] [999999 ] +16:26:51 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:26:51 [ 49] [ 3] [418] +16:26:51 [ 52] [ 16] [E5299EEB13B3896B] +16:26:51 ============================================================================ +16:26:52 + + +waiting on router queue for slot.... +16:26:52 Sending to : <0> +16:26:52 ============================================================================ +16:26:52 ============================================================================ +16:26:52 Slot Id : <431> +16:26:52 Transaction Type : RESPONSE +16:26:52 Received From : +16:26:52 ============================================================================ +16:26:52 FNo. Len. Field Value +16:26:52 ============================================================================ +16:26:52 [ 1] [ 4] [0210] +16:26:52 [ 2] [ 16] [6688990103249205] +16:26:52 [ 3] [ 6] [010000] +16:26:52 [ 4] [ 12] [000150000000] +16:26:52 [ 7] [ 10] [0320092557] +16:26:52 [ 11] [ 6] [270413] +16:26:52 [ 12] [ 6] [162557] +16:26:52 [ 13] [ 4] [0320] +16:26:52 [ 15] [ 4] [0320] +16:26:52 [ 18] [ 4] [6011] +16:26:52 [ 19] [ 3] [418] +16:26:52 [ 22] [ 3] [021] +16:26:52 [ 32] [ 6] [180893] +16:26:52 [ 35] [ 37] [6688990103249205=42121231920564900000] +16:26:52 [ 37] [ 12] [507909270413] +16:26:52 [ 39] [ 2] [61] +16:26:52 [ 41] [ 8] [0369SLVL] +16:26:52 [ 49] [ 3] [418] +16:26:52 ============================================================================ +16:26:52 Sending to : +16:26:52 ============================================================================ +16:26:52 + + +waiting on router queue for slot.... +16:26:52 ============================================================================ +16:26:52 Slot Id : <421> +16:26:52 Transaction Type : REQUEST +16:26:52 Received From : +16:26:52 ============================================================================ +16:26:52 FNo. Len. Field Value +16:26:52 ============================================================================ +16:26:52 [ 1] [ 4] [0200] +16:26:52 [ 2] [ 16] [6213544000546975] +16:26:52 [ 3] [ 6] [011000] +16:26:52 [ 4] [ 12] [000010000000] +16:26:52 [ 7] [ 10] [0320092558] +16:26:52 [ 11] [ 6] [270414] +16:26:52 [ 12] [ 6] [162558] +16:26:52 [ 13] [ 4] [0320] +16:26:52 [ 14] [ 4] [4912] +16:26:52 [ 15] [ 4] [0320] +16:26:52 [ 18] [ 4] [6011] +16:26:52 [ 19] [ 3] [418] +16:26:52 [ 22] [ 3] [021] +16:26:52 [ 25] [ 2] [01] +16:26:52 [ 28] [ 9] [D00002000] +16:26:52 [ 32] [ 6] [180893] +16:26:52 [ 35] [ 32] [6213544000546975=491212014697348] +16:26:52 [ 37] [ 12] [507909270414] +16:26:52 [ 41] [ 8] [0112CPBR] +16:26:52 [ 42] [ 15] [999999 ] +16:26:52 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +16:26:52 [ 49] [ 3] [418] +16:26:52 [ 52] [ 16] [8E3F7F0282648000] +16:26:52 ============================================================================ +16:26:52 + + +waiting on router queue for slot.... +16:26:52 Sending to : +16:26:52 ============================================================================ +16:26:52 ============================================================================ +16:26:52 Slot Id : <421> +16:26:52 Transaction Type : REQUEST +16:26:52 Received From : +16:26:52 ============================================================================ +16:26:52 FNo. Len. Field Value +16:26:52 ============================================================================ +16:26:52 [ 1] [ 4] [0200] +16:26:52 [ 2] [ 16] [6213544000546975] +16:26:52 [ 3] [ 6] [011000] +16:26:52 [ 4] [ 12] [000010000000] +16:26:52 [ 7] [ 10] [0320092558] +16:26:52 [ 11] [ 6] [270414] +16:26:52 [ 12] [ 6] [162558] +16:26:52 [ 13] [ 4] [0320] +16:26:52 [ 14] [ 4] [4912] +16:26:52 [ 15] [ 4] [0320] +16:26:52 [ 18] [ 4] [6011] +16:26:52 [ 19] [ 3] [418] +16:26:52 [ 22] [ 3] [021] +16:26:52 [ 25] [ 2] [01] +16:26:52 [ 28] [ 9] [D00002000] +16:26:52 [ 32] [ 6] [180893] +16:26:52 [ 35] [ 32] [6213544000546975=491212014697348] +16:26:52 [ 37] [ 12] [507909270414] +16:26:52 [ 41] [ 8] [0112CPBR] +16:26:52 [ 42] [ 15] [999999 ] +16:26:52 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +16:26:52 [ 49] [ 3] [418] +16:26:52 [ 52] [ 16] [00FEB49FE4B52BC1] +16:26:52 ============================================================================ +16:26:52 + + +waiting on router queue for slot.... +16:26:52 Sending to : <0> +16:26:52 ============================================================================ +16:26:52 ============================================================================ +16:26:52 Slot Id : <421> +16:26:52 Transaction Type : RESPONSE +16:26:52 Received From : +16:26:52 ============================================================================ +16:26:52 FNo. Len. Field Value +16:26:52 ============================================================================ +16:26:52 [ 1] [ 4] [0210] +16:26:52 [ 2] [ 16] [6213544000546975] +16:26:52 [ 3] [ 6] [011000] +16:26:52 [ 4] [ 12] [000010000000] +16:26:52 [ 7] [ 10] [0320092558] +16:26:52 [ 11] [ 6] [270414] +16:26:52 [ 12] [ 6] [162558] +16:26:52 [ 13] [ 4] [0320] +16:26:52 [ 15] [ 4] [0320] +16:26:52 [ 18] [ 4] [6011] +16:26:52 [ 19] [ 3] [418] +16:26:52 [ 32] [ 6] [180893] +16:26:52 [ 35] [ 32] [6213544000546975=491212014697348] +16:26:52 [ 37] [ 12] [507909270414] +16:26:52 [ 38] [ 6] [224556] +16:26:52 [ 39] [ 2] [00] +16:26:52 [ 41] [ 8] [0112CPBR] +16:26:52 [ 49] [ 3] [418] +16:26:52 [ 54] [ 40] [1001418C0000149219331002418C000014921933] +16:26:52 ============================================================================ +16:26:52 Sending to : +16:26:52 ============================================================================ +16:26:52 + + +waiting on router queue for slot.... +16:26:53 ============================================================================ +16:26:53 Slot Id : <431> +16:26:53 Transaction Type : RESPONSE +16:26:53 Received From : +16:26:53 ============================================================================ +16:26:53 FNo. Len. Field Value +16:26:53 ============================================================================ +16:26:53 [ 1] [ 4] [0210] +16:26:53 [ 2] [ 16] [6688990103249205] +16:26:53 [ 3] [ 6] [010000] +16:26:53 [ 4] [ 12] [000150000000] +16:26:53 [ 7] [ 10] [0320092557] +16:26:53 [ 11] [ 6] [270413] +16:26:53 [ 12] [ 6] [162557] +16:26:53 [ 13] [ 4] [0320] +16:26:53 [ 15] [ 4] [0320] +16:26:53 [ 18] [ 4] [6011] +16:26:53 [ 19] [ 3] [418] +16:26:53 [ 22] [ 3] [021] +16:26:53 [ 32] [ 6] [180893] +16:26:53 [ 35] [ 37] [6688990103249205=42121231920564900000] +16:26:53 [ 37] [ 12] [507909270413] +16:26:53 [ 39] [ 2] [61] +16:26:53 [ 41] [ 8] [0369SLVL] +16:26:53 [ 49] [ 3] [418] +16:26:53 ============================================================================ +16:26:53 Calculate Source COMM Id = 2 +16:26:53 ============================================================================ +16:26:53 + + +waiting on router queue for slot.... +16:26:54 ============================================================================ +16:26:54 Slot Id : <421> +16:26:54 Transaction Type : RESPONSE +16:26:54 Received From : +16:26:54 ============================================================================ +16:26:54 FNo. Len. Field Value +16:26:54 ============================================================================ +16:26:54 [ 1] [ 4] [0210] +16:26:54 [ 2] [ 16] [6213544000546975] +16:26:54 [ 3] [ 6] [011000] +16:26:54 [ 4] [ 12] [000010000000] +16:26:54 [ 7] [ 10] [0320092558] +16:26:54 [ 11] [ 6] [270414] +16:26:54 [ 12] [ 6] [162558] +16:26:54 [ 13] [ 4] [0320] +16:26:54 [ 15] [ 4] [0320] +16:26:54 [ 18] [ 4] [6011] +16:26:54 [ 19] [ 3] [418] +16:26:54 [ 32] [ 6] [180893] +16:26:54 [ 35] [ 32] [6213544000546975=491212014697348] +16:26:54 [ 37] [ 12] [507909270414] +16:26:54 [ 38] [ 6] [224556] +16:26:54 [ 39] [ 2] [00] +16:26:54 [ 41] [ 8] [0112CPBR] +16:26:54 [ 49] [ 3] [418] +16:26:54 [ 54] [ 40] [1001418C0000149219331002418C000014921933] +16:26:54 ============================================================================ +16:26:54 Calculate Source COMM Id = 2 +16:26:54 ============================================================================ +16:26:54 + + +waiting on router queue for slot.... +16:26:58 ============================================================================ +16:26:58 Slot Id : <451> +16:26:58 Transaction Type : REQUEST +16:26:58 Received From : +16:26:58 ============================================================================ +16:26:58 FNo. Len. Field Value +16:26:58 ============================================================================ +16:26:58 [ 1] [ 4] [0200] +16:26:58 [ 2] [ 16] [6213544002242748] +16:26:58 [ 3] [ 6] [010000] +16:26:58 [ 4] [ 12] [000010000000] +16:26:58 [ 7] [ 10] [0320162448] +16:26:58 [ 11] [ 6] [951682] +16:26:58 [ 12] [ 6] [162448] +16:26:58 [ 13] [ 4] [0320] +16:26:58 [ 15] [ 4] [0320] +16:26:58 [ 18] [ 4] [6011] +16:26:58 [ 19] [ 3] [418] +16:26:58 [ 22] [ 3] [021] +16:26:58 [ 25] [ 2] [01] +16:26:58 [ 28] [ 9] [D00002000] +16:26:58 [ 32] [ 6] [668899] +16:26:58 [ 35] [ 32] [6213544002242748=491212014274787] +16:26:58 [ 37] [ 12] [507900577952] +16:26:58 [ 41] [ 8] [03014005] +16:26:58 [ 42] [ 15] [APT ] +16:26:58 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:26:58 [ 49] [ 3] [418] +16:26:58 [ 52] [ 16] [CD9F5BB328EAB17E] +16:26:58 ============================================================================ +16:26:58 + + +waiting on router queue for slot.... +16:26:58 Sending to : +16:26:58 ============================================================================ +16:26:58 Sending to : +16:26:58 ============================================================================ +16:26:58 ============================================================================ +16:26:58 Slot Id : <451> +16:26:58 Transaction Type : REQUEST +16:26:58 Received From : +16:26:58 ============================================================================ +16:26:58 FNo. Len. Field Value +16:26:58 ============================================================================ +16:26:58 [ 1] [ 4] [0200] +16:26:58 [ 2] [ 16] [6213544002242748] +16:26:58 [ 3] [ 6] [010000] +16:26:58 [ 4] [ 12] [000010000000] +16:26:58 [ 7] [ 10] [0320162448] +16:26:58 [ 11] [ 6] [951682] +16:26:58 [ 12] [ 6] [162448] +16:26:58 [ 13] [ 4] [0320] +16:26:58 [ 15] [ 4] [0320] +16:26:58 [ 18] [ 4] [6011] +16:26:58 [ 19] [ 3] [418] +16:26:58 [ 22] [ 3] [021] +16:26:58 [ 25] [ 2] [01] +16:26:58 [ 28] [ 9] [D00002000] +16:26:58 [ 32] [ 6] [668899] +16:26:58 [ 35] [ 32] [6213544002242748=491212014274787] +16:26:58 [ 37] [ 12] [507900577952] +16:26:58 [ 41] [ 8] [03014005] +16:26:58 [ 42] [ 15] [APT ] +16:26:58 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:26:58 [ 49] [ 3] [418] +16:26:58 [ 52] [ 16] [CD9F5BB328EAB17E] +16:26:58 ============================================================================ +16:26:58 + + +waiting on router queue for slot.... +16:26:58 Sending to : +16:26:58 ============================================================================ +16:26:58 ============================================================================ +16:26:58 Slot Id : <451> +16:26:58 Transaction Type : REQUEST +16:26:58 Received From : +16:26:58 ============================================================================ +16:26:58 FNo. Len. Field Value +16:26:58 ============================================================================ +16:26:58 [ 1] [ 4] [0200] +16:26:58 [ 2] [ 16] [6213544002242748] +16:26:58 [ 3] [ 6] [010000] +16:26:58 [ 4] [ 12] [000010000000] +16:26:58 [ 7] [ 10] [0320162448] +16:26:58 [ 11] [ 6] [951682] +16:26:58 [ 12] [ 6] [162448] +16:26:58 [ 13] [ 4] [0320] +16:26:58 [ 15] [ 4] [0320] +16:26:58 [ 18] [ 4] [6011] +16:26:58 [ 19] [ 3] [418] +16:26:58 [ 22] [ 3] [021] +16:26:58 [ 25] [ 2] [01] +16:26:58 [ 28] [ 9] [D00002000] +16:26:58 [ 32] [ 6] [668899] +16:26:58 [ 35] [ 32] [6213544002242748=491212014274787] +16:26:58 [ 37] [ 12] [507900577952] +16:26:58 [ 41] [ 8] [03014005] +16:26:58 [ 42] [ 15] [APT ] +16:26:58 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:26:58 [ 49] [ 3] [418] +16:26:58 [ 52] [ 16] [82A6C42B7D3BCADD] +16:26:58 ============================================================================ +16:26:58 + + +waiting on router queue for slot.... +16:26:58 Sending to : <0> +16:26:58 ============================================================================ +16:26:58 ============================================================================ +16:26:58 Slot Id : <451> +16:26:58 Transaction Type : RESPONSE +16:26:58 Received From : +16:26:58 ============================================================================ +16:26:58 FNo. Len. Field Value +16:26:58 ============================================================================ +16:26:58 [ 1] [ 4] [0210] +16:26:58 [ 2] [ 16] [6213544002242748] +16:26:58 [ 3] [ 6] [010000] +16:26:58 [ 4] [ 12] [000010000000] +16:26:58 [ 7] [ 10] [0320162448] +16:26:58 [ 11] [ 6] [951682] +16:26:58 [ 12] [ 6] [162448] +16:26:58 [ 13] [ 4] [0320] +16:26:58 [ 15] [ 4] [0320] +16:26:58 [ 18] [ 4] [6011] +16:26:58 [ 19] [ 3] [418] +16:26:58 [ 22] [ 3] [021] +16:26:58 [ 32] [ 6] [668899] +16:26:58 [ 35] [ 32] [6213544002242748=491212014274787] +16:26:58 [ 37] [ 12] [507900577952] +16:26:58 [ 38] [ 6] [162654] +16:26:58 [ 39] [ 2] [75] +16:26:58 [ 41] [ 8] [03014005] +16:26:58 [ 49] [ 3] [418] +16:26:58 ============================================================================ +16:26:58 Sending to : +16:26:58 ============================================================================ +16:26:58 + + +waiting on router queue for slot.... +16:26:59 ============================================================================ +16:26:59 Slot Id : <422> +16:26:59 Transaction Type : REQUEST +16:26:59 Received From : +16:26:59 ============================================================================ +16:26:59 FNo. Len. Field Value +16:26:59 ============================================================================ +16:26:59 [ 1] [ 4] [0800] +16:26:59 [ 7] [ 10] [0320162645] +16:26:59 [ 11] [ 6] [002104] +16:26:59 [ 37] [ 12] [507916002104] +16:26:59 [ 70] [ 3] [ ] +16:26:59 ============================================================================ +16:26:59 + + +waiting on router queue for slot.... +16:26:59 Sending to : +16:26:59 ============================================================================ +16:26:59 ============================================================================ +16:26:59 Slot Id : <422> +16:26:59 Transaction Type : RESPONSE +16:26:59 Received From : +16:26:59 ============================================================================ +16:26:59 FNo. Len. Field Value +16:26:59 ============================================================================ +16:26:59 [ 1] [ 4] [0810] +16:26:59 [ 7] [ 10] [0320162645] +16:26:59 [ 11] [ 6] [002104] +16:26:59 [ 37] [ 12] [507916002104] +16:26:59 [ 39] [ 2] [91] +16:26:59 [ 70] [ 3] [ ] +16:26:59 ============================================================================ +16:26:59 Calculate Source COMM Id = 3 +16:26:59 ============================================================================ +16:26:59 + + +waiting on router queue for slot.... +16:26:59 ============================================================================ +16:26:59 Slot Id : <451> +16:26:59 Transaction Type : RESPONSE +16:26:59 Received From : +16:26:59 ============================================================================ +16:26:59 FNo. Len. Field Value +16:26:59 ============================================================================ +16:26:59 [ 1] [ 4] [0210] +16:26:59 [ 2] [ 16] [6213544002242748] +16:26:59 [ 3] [ 6] [010000] +16:26:59 [ 4] [ 12] [000010000000] +16:26:59 [ 7] [ 10] [0320162448] +16:26:59 [ 11] [ 6] [951682] +16:26:59 [ 12] [ 6] [162448] +16:26:59 [ 13] [ 4] [0320] +16:26:59 [ 15] [ 4] [0320] +16:26:59 [ 18] [ 4] [6011] +16:26:59 [ 19] [ 3] [418] +16:26:59 [ 22] [ 3] [021] +16:26:59 [ 32] [ 6] [668899] +16:26:59 [ 35] [ 32] [6213544002242748=491212014274787] +16:26:59 [ 37] [ 12] [507900577952] +16:26:59 [ 38] [ 6] [162654] +16:26:59 [ 39] [ 2] [75] +16:26:59 [ 41] [ 8] [03014005] +16:26:59 [ 49] [ 3] [418] +16:26:59 ============================================================================ +16:26:59 Calculate Source COMM Id = 4 +16:26:59 ============================================================================ +16:26:59 + + +waiting on router queue for slot.... +16:27:02 ============================================================================ +16:27:02 Slot Id : <457> +16:27:02 Transaction Type : REQUEST +16:27:02 Received From : +16:27:02 ============================================================================ +16:27:02 FNo. Len. Field Value +16:27:02 ============================================================================ +16:27:02 [ 1] [ 4] [0200] +16:27:02 [ 2] [ 16] [6213545001047244] +16:27:02 [ 3] [ 6] [010000] +16:27:02 [ 4] [ 12] [000100000000] +16:27:02 [ 7] [ 10] [0320162452] +16:27:02 [ 11] [ 6] [951684] +16:27:02 [ 12] [ 6] [162452] +16:27:02 [ 13] [ 4] [0320] +16:27:02 [ 15] [ 4] [0320] +16:27:02 [ 18] [ 4] [6011] +16:27:02 [ 19] [ 3] [418] +16:27:02 [ 22] [ 3] [021] +16:27:02 [ 25] [ 2] [01] +16:27:02 [ 28] [ 9] [D00002000] +16:27:02 [ 32] [ 6] [668899] +16:27:02 [ 35] [ 32] [6213545001047244=491212014724970] +16:27:02 [ 37] [ 12] [507900270995] +16:27:02 [ 41] [ 8] [03010004] +16:27:02 [ 42] [ 15] [APT ] +16:27:02 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +16:27:02 [ 49] [ 3] [418] +16:27:02 [ 52] [ 16] [4DE46159C70DFFF6] +16:27:02 ============================================================================ +16:27:02 + + +waiting on router queue for slot.... +16:27:02 Sending to : +16:27:02 ============================================================================ +16:27:02 Sending to : +16:27:02 ============================================================================ +16:27:03 ============================================================================ +16:27:03 Slot Id : <457> +16:27:03 Transaction Type : REQUEST +16:27:03 Received From : +16:27:03 ============================================================================ +16:27:03 FNo. Len. Field Value +16:27:03 ============================================================================ +16:27:03 [ 1] [ 4] [0200] +16:27:03 [ 2] [ 16] [6213545001047244] +16:27:03 [ 3] [ 6] [010000] +16:27:03 [ 4] [ 12] [000100000000] +16:27:03 [ 7] [ 10] [0320162452] +16:27:03 [ 11] [ 6] [951684] +16:27:03 [ 12] [ 6] [162452] +16:27:03 [ 13] [ 4] [0320] +16:27:03 [ 15] [ 4] [0320] +16:27:03 [ 18] [ 4] [6011] +16:27:03 [ 19] [ 3] [418] +16:27:03 [ 22] [ 3] [021] +16:27:03 [ 25] [ 2] [01] +16:27:03 [ 28] [ 9] [D00002000] +16:27:03 [ 32] [ 6] [668899] +16:27:03 [ 35] [ 32] [6213545001047244=491212014724970] +16:27:03 [ 37] [ 12] [507900270995] +16:27:03 [ 41] [ 8] [03010004] +16:27:03 [ 42] [ 15] [APT ] +16:27:03 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +16:27:03 [ 49] [ 3] [418] +16:27:03 [ 52] [ 16] [4DE46159C70DFFF6] +16:27:03 ============================================================================ +16:27:03 + + +waiting on router queue for slot.... +16:27:03 Sending to : +16:27:03 ============================================================================ +16:27:03 ============================================================================ +16:27:03 Slot Id : <457> +16:27:03 Transaction Type : REQUEST +16:27:03 Received From : +16:27:03 ============================================================================ +16:27:03 FNo. Len. Field Value +16:27:03 ============================================================================ +16:27:03 [ 1] [ 4] [0200] +16:27:03 [ 2] [ 16] [6213545001047244] +16:27:03 [ 3] [ 6] [010000] +16:27:03 [ 4] [ 12] [000100000000] +16:27:03 [ 7] [ 10] [0320162452] +16:27:03 [ 11] [ 6] [951684] +16:27:03 [ 12] [ 6] [162452] +16:27:03 [ 13] [ 4] [0320] +16:27:03 [ 15] [ 4] [0320] +16:27:03 [ 18] [ 4] [6011] +16:27:03 [ 19] [ 3] [418] +16:27:03 [ 22] [ 3] [021] +16:27:03 [ 25] [ 2] [01] +16:27:03 [ 28] [ 9] [D00002000] +16:27:03 [ 32] [ 6] [668899] +16:27:03 [ 35] [ 32] [6213545001047244=491212014724970] +16:27:03 [ 37] [ 12] [507900270995] +16:27:03 [ 41] [ 8] [03010004] +16:27:03 [ 42] [ 15] [APT ] +16:27:03 [ 43] [ 40] [ VTE HOSPITAL PHONEMEE L] +16:27:03 [ 49] [ 3] [418] +16:27:03 [ 52] [ 16] [97A27EB637E27C7E] +16:27:03 ============================================================================ +16:27:03 + + +waiting on router queue for slot.... +16:27:03 Sending to : <0> +16:27:03 ============================================================================ +16:27:03 ============================================================================ +16:27:03 Slot Id : <457> +16:27:03 Transaction Type : RESPONSE +16:27:03 Received From : +16:27:03 ============================================================================ +16:27:03 FNo. Len. Field Value +16:27:03 ============================================================================ +16:27:03 [ 1] [ 4] [0210] +16:27:03 [ 2] [ 16] [6213545001047244] +16:27:03 [ 3] [ 6] [010000] +16:27:03 [ 4] [ 12] [000100000000] +16:27:03 [ 7] [ 10] [0320162452] +16:27:03 [ 11] [ 6] [951684] +16:27:03 [ 12] [ 6] [162452] +16:27:03 [ 13] [ 4] [0320] +16:27:03 [ 15] [ 4] [0320] +16:27:03 [ 18] [ 4] [6011] +16:27:03 [ 19] [ 3] [418] +16:27:03 [ 32] [ 6] [668899] +16:27:03 [ 35] [ 32] [6213545001047244=491212014724970] +16:27:03 [ 37] [ 12] [507900270995] +16:27:03 [ 38] [ 6] [264987] +16:27:03 [ 39] [ 2] [00] +16:27:03 [ 41] [ 8] [03010004] +16:27:03 [ 49] [ 3] [418] +16:27:03 [ 54] [ 40] [0001418C0000635547890002418C000063554789] +16:27:03 ============================================================================ +16:27:03 Sending to : +16:27:03 ============================================================================ +16:27:03 + + +waiting on router queue for slot.... +16:27:05 ============================================================================ +16:27:05 Slot Id : <457> +16:27:05 Transaction Type : RESPONSE +16:27:05 Received From : +16:27:05 ============================================================================ +16:27:05 FNo. Len. Field Value +16:27:05 ============================================================================ +16:27:05 [ 1] [ 4] [0210] +16:27:05 [ 2] [ 16] [6213545001047244] +16:27:05 [ 3] [ 6] [010000] +16:27:05 [ 4] [ 12] [000100000000] +16:27:05 [ 7] [ 10] [0320162452] +16:27:05 [ 11] [ 6] [951684] +16:27:05 [ 12] [ 6] [162452] +16:27:05 [ 13] [ 4] [0320] +16:27:05 [ 15] [ 4] [0320] +16:27:05 [ 18] [ 4] [6011] +16:27:05 [ 19] [ 3] [418] +16:27:05 [ 32] [ 6] [668899] +16:27:05 [ 35] [ 32] [6213545001047244=491212014724970] +16:27:05 [ 37] [ 12] [507900270995] +16:27:05 [ 38] [ 6] [264987] +16:27:05 [ 39] [ 2] [00] +16:27:05 [ 41] [ 8] [03010004] +16:27:05 [ 49] [ 3] [418] +16:27:05 [ 54] [ 40] [0001418C0000635547890002418C000063554789] +16:27:05 ============================================================================ +16:27:05 Calculate Source COMM Id = 4 +16:27:05 ============================================================================ +16:27:05 + + +waiting on router queue for slot.... +16:27:05 ============================================================================ +16:27:05 Slot Id : <426> +16:27:05 Transaction Type : REQUEST +16:27:05 Received From : +16:27:05 ============================================================================ +16:27:05 FNo. Len. Field Value +16:27:05 ============================================================================ +16:27:05 [ 1] [ 4] [0200] +16:27:05 [ 2] [ 16] [6213545001105547] +16:27:05 [ 3] [ 6] [012000] +16:27:05 [ 4] [ 12] [000020000000] +16:27:05 [ 7] [ 10] [0320092610] +16:27:05 [ 11] [ 6] [270418] +16:27:05 [ 12] [ 6] [162610] +16:27:05 [ 13] [ 4] [0320] +16:27:05 [ 14] [ 4] [4912] +16:27:05 [ 15] [ 4] [0320] +16:27:05 [ 18] [ 4] [6011] +16:27:05 [ 19] [ 3] [418] +16:27:05 [ 22] [ 3] [021] +16:27:05 [ 25] [ 2] [01] +16:27:05 [ 28] [ 9] [D00002000] +16:27:05 [ 32] [ 6] [180893] +16:27:05 [ 35] [ 32] [6213545001105547=491212010554788] +16:27:05 [ 37] [ 12] [507909270418] +16:27:05 [ 41] [ 8] [0366SKTT] +16:27:05 [ 42] [ 15] [999999 ] +16:27:05 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +16:27:05 [ 49] [ 3] [418] +16:27:05 [ 52] [ 16] [013558ABA885386C] +16:27:05 ============================================================================ +16:27:05 + + +waiting on router queue for slot.... +16:27:05 Sending to : +16:27:05 ============================================================================ +16:27:05 Sending to : +16:27:05 ============================================================================ +16:27:06 ============================================================================ +16:27:06 Slot Id : <465> +16:27:06 Transaction Type : REQUEST +16:27:06 Received From : +16:27:06 ============================================================================ +16:27:06 FNo. Len. Field Value +16:27:06 ============================================================================ +16:27:06 [ 1] [ 4] [0800] +16:27:06 [ 7] [ 10] [0320092613] +16:27:06 [ 11] [ 6] [157239] +16:27:06 [ 70] [ 3] [301] +16:27:06 ============================================================================ +16:27:06 + + +waiting on router queue for slot.... +16:27:06 ============================================================================ +16:27:06 Slot Id : <426> +16:27:06 Transaction Type : REQUEST +16:27:06 Received From : +16:27:06 ============================================================================ +16:27:06 FNo. Len. Field Value +16:27:06 ============================================================================ +16:27:06 [ 1] [ 4] [0200] +16:27:06 [ 2] [ 16] [6213545001105547] +16:27:06 [ 3] [ 6] [012000] +16:27:06 [ 4] [ 12] [000020000000] +16:27:06 [ 7] [ 10] [0320092610] +16:27:06 [ 11] [ 6] [270418] +16:27:06 [ 12] [ 6] [162610] +16:27:06 [ 13] [ 4] [0320] +16:27:06 [ 14] [ 4] [4912] +16:27:06 [ 15] [ 4] [0320] +16:27:06 [ 18] [ 4] [6011] +16:27:06 [ 19] [ 3] [418] +16:27:06 [ 22] [ 3] [021] +16:27:06 [ 25] [ 2] [01] +16:27:06 [ 28] [ 9] [D00002000] +16:27:06 [ 32] [ 6] [180893] +16:27:06 [ 35] [ 32] [6213545001105547=491212010554788] +16:27:06 [ 37] [ 12] [507909270418] +16:27:06 [ 41] [ 8] [0366SKTT] +16:27:06 [ 42] [ 15] [999999 ] +16:27:06 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +16:27:06 [ 49] [ 3] [418] +16:27:06 [ 52] [ 16] [013558ABA885386C] +16:27:06 ============================================================================ +16:27:06 + + +waiting on router queue for slot.... +16:27:06 Sending to : +16:27:06 ============================================================================ +16:27:06 Sending to : +16:27:06 ============================================================================ +16:27:06 ============================================================================ +16:27:06 Slot Id : <465> +16:27:06 Transaction Type : RESPONSE +16:27:06 Received From : +16:27:06 ============================================================================ +16:27:06 FNo. Len. Field Value +16:27:06 ============================================================================ +16:27:06 [ 1] [ 4] [0810] +16:27:06 [ 7] [ 10] [0320092613] +16:27:06 [ 11] [ 6] [157239] +16:27:06 [ 39] [ 2] [00] +16:27:06 [ 70] [ 3] [301] +16:27:06 ============================================================================ +16:27:06 Calculate Source COMM Id = 2 +16:27:06 ============================================================================ +16:27:06 + + +waiting on router queue for slot.... +16:27:06 ============================================================================ +16:27:06 Slot Id : <426> +16:27:06 Transaction Type : REQUEST +16:27:06 Received From : +16:27:06 ============================================================================ +16:27:06 FNo. Len. Field Value +16:27:06 ============================================================================ +16:27:06 [ 1] [ 4] [0200] +16:27:06 [ 2] [ 16] [6213545001105547] +16:27:06 [ 3] [ 6] [012000] +16:27:06 [ 4] [ 12] [000020000000] +16:27:06 [ 7] [ 10] [0320092610] +16:27:06 [ 11] [ 6] [270418] +16:27:06 [ 12] [ 6] [162610] +16:27:06 [ 13] [ 4] [0320] +16:27:06 [ 14] [ 4] [4912] +16:27:06 [ 15] [ 4] [0320] +16:27:06 [ 18] [ 4] [6011] +16:27:06 [ 19] [ 3] [418] +16:27:06 [ 22] [ 3] [021] +16:27:06 [ 25] [ 2] [01] +16:27:06 [ 28] [ 9] [D00002000] +16:27:06 [ 32] [ 6] [180893] +16:27:06 [ 35] [ 32] [6213545001105547=491212010554788] +16:27:06 [ 37] [ 12] [507909270418] +16:27:06 [ 41] [ 8] [0366SKTT] +16:27:06 [ 42] [ 15] [999999 ] +16:27:06 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +16:27:06 [ 49] [ 3] [418] +16:27:06 [ 52] [ 16] [49BF4BBD0AE1DAFE] +16:27:06 ============================================================================ +16:27:06 + + +waiting on router queue for slot.... +16:27:06 Sending to : <0> +16:27:06 ============================================================================ +16:27:06 ============================================================================ +16:27:06 Slot Id : <444> +16:27:06 Transaction Type : REQUEST +16:27:06 Received From : +16:27:06 ============================================================================ +16:27:06 FNo. Len. Field Value +16:27:06 ============================================================================ +16:27:06 [ 1] [ 4] [0200] +16:27:06 [ 2] [ 16] [6688990103265300] +16:27:06 [ 3] [ 6] [010000] +16:27:06 [ 4] [ 12] [000100000000] +16:27:06 [ 7] [ 10] [0320162701] +16:27:06 [ 11] [ 6] [799076] +16:27:06 [ 12] [ 6] [162701] +16:27:06 [ 13] [ 4] [0320] +16:27:06 [ 15] [ 4] [0320] +16:27:06 [ 18] [ 4] [6011] +16:27:06 [ 22] [ 3] [900] +16:27:06 [ 25] [ 2] [02] +16:27:06 [ 28] [ 9] [D00002000] +16:27:06 [ 32] [ 6] [621354] +16:27:06 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:27:06 [ 37] [ 12] [507903499593] +16:27:06 [ 41] [ 8] [06002200] +16:27:06 [ 42] [ 15] [NATIVE ] +16:27:06 [ 43] [ 40] [Beng Market Beng LAO] +16:27:06 [ 49] [ 3] [418] +16:27:06 [ 52] [ 16] [FD87B19E17EF8EDB] +16:27:06 ============================================================================ +16:27:06 + + +waiting on router queue for slot.... +16:27:06 Sending to : +16:27:06 ============================================================================ +16:27:06 Sending to : +16:27:06 ============================================================================ +16:27:06 ============================================================================ +16:27:06 Slot Id : <444> +16:27:06 Transaction Type : REQUEST +16:27:06 Received From : +16:27:06 ============================================================================ +16:27:06 FNo. Len. Field Value +16:27:06 ============================================================================ +16:27:06 [ 1] [ 4] [0200] +16:27:06 [ 2] [ 16] [6688990103265300] +16:27:06 [ 3] [ 6] [010000] +16:27:06 [ 4] [ 12] [000100000000] +16:27:06 [ 7] [ 10] [0320162701] +16:27:06 [ 11] [ 6] [799076] +16:27:06 [ 12] [ 6] [162701] +16:27:06 [ 13] [ 4] [0320] +16:27:06 [ 15] [ 4] [0320] +16:27:06 [ 18] [ 4] [6011] +16:27:06 [ 22] [ 3] [900] +16:27:06 [ 25] [ 2] [02] +16:27:06 [ 28] [ 9] [D00002000] +16:27:06 [ 32] [ 6] [621354] +16:27:06 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:27:06 [ 37] [ 12] [507903499593] +16:27:06 [ 41] [ 8] [06002200] +16:27:06 [ 42] [ 15] [NATIVE ] +16:27:06 [ 43] [ 40] [Beng Market Beng LAO] +16:27:06 [ 49] [ 3] [418] +16:27:06 [ 52] [ 16] [FD87B19E17EF8EDB] +16:27:06 ============================================================================ +16:27:06 + + +waiting on router queue for slot.... +16:27:06 Sending to : +16:27:06 ============================================================================ +16:27:06 ============================================================================ +16:27:06 Slot Id : <444> +16:27:06 Transaction Type : REQUEST +16:27:06 Received From : +16:27:06 ============================================================================ +16:27:06 FNo. Len. Field Value +16:27:06 ============================================================================ +16:27:06 [ 1] [ 4] [0200] +16:27:06 [ 2] [ 16] [6688990103265300] +16:27:06 [ 3] [ 6] [010000] +16:27:06 [ 4] [ 12] [000100000000] +16:27:06 [ 7] [ 10] [0320162701] +16:27:06 [ 11] [ 6] [799076] +16:27:06 [ 12] [ 6] [162701] +16:27:06 [ 13] [ 4] [0320] +16:27:06 [ 15] [ 4] [0320] +16:27:06 [ 18] [ 4] [6011] +16:27:06 [ 22] [ 3] [900] +16:27:06 [ 25] [ 2] [02] +16:27:06 [ 28] [ 9] [D00002000] +16:27:06 [ 32] [ 6] [621354] +16:27:06 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:27:06 [ 37] [ 12] [507903499593] +16:27:06 [ 41] [ 8] [06002200] +16:27:06 [ 42] [ 15] [NATIVE ] +16:27:06 [ 43] [ 40] [Beng Market Beng LAO] +16:27:06 [ 49] [ 3] [418] +16:27:06 [ 52] [ 16] [8F3D830A0CF3943E] +16:27:06 ============================================================================ +16:27:06 + + +waiting on router queue for slot.... +16:27:06 Sending to : <4> +16:27:06 ============================================================================ +16:27:07 ============================================================================ +16:27:07 Slot Id : <426> +16:27:07 Transaction Type : RESPONSE +16:27:07 Received From : +16:27:07 ============================================================================ +16:27:07 FNo. Len. Field Value +16:27:07 ============================================================================ +16:27:07 [ 1] [ 4] [0210] +16:27:07 [ 2] [ 16] [6213545001105547] +16:27:07 [ 3] [ 6] [012000] +16:27:07 [ 4] [ 12] [000020000000] +16:27:07 [ 7] [ 10] [0320092610] +16:27:07 [ 11] [ 6] [270418] +16:27:07 [ 12] [ 6] [162610] +16:27:07 [ 13] [ 4] [0320] +16:27:07 [ 15] [ 4] [0320] +16:27:07 [ 18] [ 4] [6011] +16:27:07 [ 19] [ 3] [418] +16:27:07 [ 32] [ 6] [180893] +16:27:07 [ 35] [ 32] [6213545001105547=491212010554788] +16:27:07 [ 37] [ 12] [507909270418] +16:27:07 [ 38] [ 6] [522503] +16:27:07 [ 39] [ 2] [00] +16:27:07 [ 41] [ 8] [0366SKTT] +16:27:07 [ 49] [ 3] [418] +16:27:07 [ 54] [ 40] [2001418C0001576859302002418C000157685930] +16:27:07 ============================================================================ +16:27:07 Sending to : +16:27:07 ============================================================================ +16:27:07 + + +waiting on router queue for slot.... +16:27:07 ============================================================================ +16:27:07 Slot Id : <444> +16:27:07 Transaction Type : RESPONSE +16:27:07 Received From : +16:27:07 ============================================================================ +16:27:07 FNo. Len. Field Value +16:27:07 ============================================================================ +16:27:07 [ 1] [ 4] [0210] +16:27:07 [ 2] [ 16] [6688990103265300] +16:27:07 [ 3] [ 6] [010000] +16:27:07 [ 4] [ 12] [000100000000] +16:27:07 [ 11] [ 6] [799076] +16:27:07 [ 12] [ 6] [162701] +16:27:07 [ 15] [ 4] [0320] +16:27:07 [ 18] [ 4] [6011] +16:27:07 [ 32] [ 6] [621354] +16:27:07 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:27:07 [ 37] [ 12] [507903499593] +16:27:07 [ 38] [ 6] [710469] +16:27:07 [ 39] [ 2] [00] +16:27:07 [ 41] [ 8] [06002200] +16:27:07 [ 49] [ 3] [418] +16:27:07 [ 54] [ 20] [0002418C000206009050] +16:27:07 ============================================================================ +16:27:07 Sending to : +16:27:07 ============================================================================ +16:27:07 + + +waiting on router queue for slot.... +16:27:08 ============================================================================ +16:27:08 Slot Id : <426> +16:27:08 Transaction Type : RESPONSE +16:27:08 Received From : +16:27:08 ============================================================================ +16:27:08 FNo. Len. Field Value +16:27:08 ============================================================================ +16:27:08 [ 1] [ 4] [0210] +16:27:08 [ 2] [ 16] [6213545001105547] +16:27:08 [ 3] [ 6] [012000] +16:27:08 [ 4] [ 12] [000020000000] +16:27:08 [ 7] [ 10] [0320092610] +16:27:08 [ 11] [ 6] [270418] +16:27:08 [ 12] [ 6] [162610] +16:27:08 [ 13] [ 4] [0320] +16:27:08 [ 15] [ 4] [0320] +16:27:08 [ 18] [ 4] [6011] +16:27:08 [ 19] [ 3] [418] +16:27:08 [ 32] [ 6] [180893] +16:27:08 [ 35] [ 32] [6213545001105547=491212010554788] +16:27:08 [ 37] [ 12] [507909270418] +16:27:08 [ 38] [ 6] [522503] +16:27:08 [ 39] [ 2] [00] +16:27:08 [ 41] [ 8] [0366SKTT] +16:27:08 [ 49] [ 3] [418] +16:27:08 [ 54] [ 40] [2001418C0001576859302002418C000157685930] +16:27:08 ============================================================================ +16:27:08 Calculate Source COMM Id = 2 +16:27:08 ============================================================================ +16:27:08 + + +waiting on router queue for slot.... +16:27:10 ============================================================================ +16:27:10 Slot Id : <444> +16:27:10 Transaction Type : RESPONSE +16:27:10 Received From : +16:27:10 ============================================================================ +16:27:10 FNo. Len. Field Value +16:27:10 ============================================================================ +16:27:10 [ 1] [ 4] [0210] +16:27:10 [ 2] [ 16] [6688990103265300] +16:27:10 [ 3] [ 6] [010000] +16:27:10 [ 4] [ 12] [000100000000] +16:27:10 [ 11] [ 6] [799076] +16:27:10 [ 12] [ 6] [162701] +16:27:10 [ 15] [ 4] [0320] +16:27:10 [ 18] [ 4] [6011] +16:27:10 [ 32] [ 6] [621354] +16:27:10 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:27:10 [ 37] [ 12] [507903499593] +16:27:10 [ 38] [ 6] [710469] +16:27:10 [ 39] [ 2] [00] +16:27:10 [ 41] [ 8] [06002200] +16:27:10 [ 49] [ 3] [418] +16:27:10 [ 54] [ 20] [0002418C000206009050] +16:27:10 ============================================================================ +16:27:10 Calculate Source COMM Id = 0 +16:27:10 ============================================================================ +16:27:10 + + +waiting on router queue for slot.... +16:27:11 ============================================================================ +16:27:11 Slot Id : <436> +16:27:11 Transaction Type : REQUEST +16:27:11 Received From : +16:27:11 ============================================================================ +16:27:11 FNo. Len. Field Value +16:27:11 ============================================================================ +16:27:11 [ 1] [ 4] [0200] +16:27:11 [ 2] [ 16] [6688990050006624] +16:27:11 [ 3] [ 6] [011000] +16:27:11 [ 4] [ 12] [000100000000] +16:27:11 [ 7] [ 10] [0320162706] +16:27:11 [ 11] [ 6] [799100] +16:27:11 [ 12] [ 6] [162706] +16:27:11 [ 13] [ 4] [0320] +16:27:11 [ 15] [ 4] [0320] +16:27:11 [ 18] [ 4] [6011] +16:27:11 [ 22] [ 3] [900] +16:27:11 [ 25] [ 2] [02] +16:27:11 [ 28] [ 9] [D00002000] +16:27:11 [ 32] [ 6] [621354] +16:27:11 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:27:11 [ 37] [ 12] [507904719784] +16:27:11 [ 41] [ 8] [18001000] +16:27:11 [ 42] [ 15] [NATIVE ] +16:27:11 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:27:11 [ 49] [ 3] [418] +16:27:11 [ 52] [ 16] [98168DAF2928C677] +16:27:11 ============================================================================ +16:27:11 + + +waiting on router queue for slot.... +16:27:11 Sending to : +16:27:11 ============================================================================ +16:27:11 Sending to : +16:27:11 ============================================================================ +16:27:11 ============================================================================ +16:27:11 Slot Id : <436> +16:27:11 Transaction Type : REQUEST +16:27:11 Received From : +16:27:11 ============================================================================ +16:27:11 FNo. Len. Field Value +16:27:11 ============================================================================ +16:27:11 [ 1] [ 4] [0200] +16:27:11 [ 2] [ 16] [6688990050006624] +16:27:11 [ 3] [ 6] [011000] +16:27:11 [ 4] [ 12] [000100000000] +16:27:11 [ 7] [ 10] [0320162706] +16:27:11 [ 11] [ 6] [799100] +16:27:11 [ 12] [ 6] [162706] +16:27:11 [ 13] [ 4] [0320] +16:27:11 [ 15] [ 4] [0320] +16:27:11 [ 18] [ 4] [6011] +16:27:11 [ 22] [ 3] [900] +16:27:11 [ 25] [ 2] [02] +16:27:11 [ 28] [ 9] [D00002000] +16:27:11 [ 32] [ 6] [621354] +16:27:11 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:27:11 [ 37] [ 12] [507904719784] +16:27:11 [ 41] [ 8] [18001000] +16:27:11 [ 42] [ 15] [NATIVE ] +16:27:11 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:27:11 [ 49] [ 3] [418] +16:27:11 [ 52] [ 16] [98168DAF2928C677] +16:27:11 ============================================================================ +16:27:11 + + +waiting on router queue for slot.... +16:27:11 Sending to : +16:27:11 ============================================================================ +16:27:11 ============================================================================ +16:27:11 Slot Id : <436> +16:27:11 Transaction Type : REQUEST +16:27:11 Received From : +16:27:11 ============================================================================ +16:27:11 FNo. Len. Field Value +16:27:11 ============================================================================ +16:27:11 [ 1] [ 4] [0200] +16:27:11 [ 2] [ 16] [6688990050006624] +16:27:11 [ 3] [ 6] [011000] +16:27:11 [ 4] [ 12] [000100000000] +16:27:11 [ 7] [ 10] [0320162706] +16:27:11 [ 11] [ 6] [799100] +16:27:11 [ 12] [ 6] [162706] +16:27:11 [ 13] [ 4] [0320] +16:27:11 [ 15] [ 4] [0320] +16:27:11 [ 18] [ 4] [6011] +16:27:11 [ 22] [ 3] [900] +16:27:11 [ 25] [ 2] [02] +16:27:11 [ 28] [ 9] [D00002000] +16:27:11 [ 32] [ 6] [621354] +16:27:11 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:27:11 [ 37] [ 12] [507904719784] +16:27:11 [ 41] [ 8] [18001000] +16:27:11 [ 42] [ 15] [NATIVE ] +16:27:11 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:27:11 [ 49] [ 3] [418] +16:27:11 [ 52] [ 16] [BC7CC3791A0927C1] +16:27:11 ============================================================================ +16:27:11 + + +waiting on router queue for slot.... +16:27:11 Sending to : <4> +16:27:11 ============================================================================ +16:27:12 ============================================================================ +16:27:12 Slot Id : <436> +16:27:12 Transaction Type : RESPONSE +16:27:12 Received From : +16:27:12 ============================================================================ +16:27:12 FNo. Len. Field Value +16:27:12 ============================================================================ +16:27:12 [ 1] [ 4] [0210] +16:27:12 [ 2] [ 16] [6688990050006624] +16:27:12 [ 3] [ 6] [011000] +16:27:12 [ 4] [ 12] [000100000000] +16:27:12 [ 11] [ 6] [799100] +16:27:12 [ 12] [ 6] [162706] +16:27:12 [ 15] [ 4] [0320] +16:27:12 [ 18] [ 4] [6011] +16:27:12 [ 32] [ 6] [621354] +16:27:12 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:27:12 [ 37] [ 12] [507904719784] +16:27:12 [ 38] [ 6] [648358] +16:27:12 [ 39] [ 2] [00] +16:27:12 [ 41] [ 8] [18001000] +16:27:12 [ 49] [ 3] [418] +16:27:12 [ 54] [ 20] [1002418C000037416176] +16:27:12 ============================================================================ +16:27:12 Sending to : +16:27:12 ============================================================================ +16:27:12 + + +waiting on router queue for slot.... +16:27:14 ============================================================================ +16:27:14 Slot Id : <436> +16:27:14 Transaction Type : RESPONSE +16:27:14 Received From : +16:27:14 ============================================================================ +16:27:14 FNo. Len. Field Value +16:27:14 ============================================================================ +16:27:14 [ 1] [ 4] [0210] +16:27:14 [ 2] [ 16] [6688990050006624] +16:27:14 [ 3] [ 6] [011000] +16:27:14 [ 4] [ 12] [000100000000] +16:27:14 [ 11] [ 6] [799100] +16:27:14 [ 12] [ 6] [162706] +16:27:14 [ 15] [ 4] [0320] +16:27:14 [ 18] [ 4] [6011] +16:27:14 [ 32] [ 6] [621354] +16:27:14 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:27:14 [ 37] [ 12] [507904719784] +16:27:14 [ 38] [ 6] [648358] +16:27:14 [ 39] [ 2] [00] +16:27:14 [ 41] [ 8] [18001000] +16:27:14 [ 49] [ 3] [418] +16:27:14 [ 54] [ 20] [1002418C000037416176] +16:27:14 ============================================================================ +16:27:14 Calculate Source COMM Id = 0 +16:27:14 ============================================================================ +16:27:14 + + +waiting on router queue for slot.... +16:27:17 ============================================================================ +16:27:17 Slot Id : <423> +16:27:17 Transaction Type : REQUEST +16:27:17 Received From : +16:27:17 ============================================================================ +16:27:17 FNo. Len. Field Value +16:27:17 ============================================================================ +16:27:17 [ 1] [ 4] [0200] +16:27:17 [ 2] [ 16] [6688990101497509] +16:27:17 [ 3] [ 6] [012000] +16:27:17 [ 4] [ 12] [000030000000] +16:27:17 [ 7] [ 10] [0320162712] +16:27:17 [ 11] [ 6] [799117] +16:27:17 [ 12] [ 6] [162712] +16:27:17 [ 13] [ 4] [0320] +16:27:17 [ 15] [ 4] [0320] +16:27:17 [ 18] [ 4] [6011] +16:27:17 [ 22] [ 3] [900] +16:27:17 [ 25] [ 2] [02] +16:27:17 [ 28] [ 9] [D00002000] +16:27:17 [ 32] [ 6] [621354] +16:27:17 [ 35] [ 37] [6688990101497509=42031231750914200000] +16:27:17 [ 37] [ 12] [507904645154] +16:27:17 [ 41] [ 8] [17000900] +16:27:17 [ 42] [ 15] [NATIVE ] +16:27:17 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:27:17 [ 49] [ 3] [418] +16:27:17 [ 52] [ 16] [91ECF91048144D33] +16:27:17 ============================================================================ +16:27:17 + + +waiting on router queue for slot.... +16:27:17 Sending to : +16:27:17 ============================================================================ +16:27:17 Sending to : +16:27:17 ============================================================================ +16:27:18 ============================================================================ +16:27:18 Slot Id : <423> +16:27:18 Transaction Type : REQUEST +16:27:18 Received From : +16:27:18 ============================================================================ +16:27:18 FNo. Len. Field Value +16:27:18 ============================================================================ +16:27:18 [ 1] [ 4] [0200] +16:27:18 [ 2] [ 16] [6688990101497509] +16:27:18 [ 3] [ 6] [012000] +16:27:18 [ 4] [ 12] [000030000000] +16:27:18 [ 7] [ 10] [0320162712] +16:27:18 [ 11] [ 6] [799117] +16:27:18 [ 12] [ 6] [162712] +16:27:18 [ 13] [ 4] [0320] +16:27:18 [ 15] [ 4] [0320] +16:27:18 [ 18] [ 4] [6011] +16:27:18 [ 22] [ 3] [900] +16:27:18 [ 25] [ 2] [02] +16:27:18 [ 28] [ 9] [D00002000] +16:27:18 [ 32] [ 6] [621354] +16:27:18 [ 35] [ 37] [6688990101497509=42031231750914200000] +16:27:18 [ 37] [ 12] [507904645154] +16:27:18 [ 41] [ 8] [17000900] +16:27:18 [ 42] [ 15] [NATIVE ] +16:27:18 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:27:18 [ 49] [ 3] [418] +16:27:18 [ 52] [ 16] [91ECF91048144D33] +16:27:18 ============================================================================ +16:27:18 + + +waiting on router queue for slot.... +16:27:18 Sending to : +16:27:18 ============================================================================ +16:27:18 ============================================================================ +16:27:18 Slot Id : <423> +16:27:18 Transaction Type : REQUEST +16:27:18 Received From : +16:27:18 ============================================================================ +16:27:18 FNo. Len. Field Value +16:27:18 ============================================================================ +16:27:18 [ 1] [ 4] [0200] +16:27:18 [ 2] [ 16] [6688990101497509] +16:27:18 [ 3] [ 6] [012000] +16:27:18 [ 4] [ 12] [000030000000] +16:27:18 [ 7] [ 10] [0320162712] +16:27:18 [ 11] [ 6] [799117] +16:27:18 [ 12] [ 6] [162712] +16:27:18 [ 13] [ 4] [0320] +16:27:18 [ 15] [ 4] [0320] +16:27:18 [ 18] [ 4] [6011] +16:27:18 [ 22] [ 3] [900] +16:27:18 [ 25] [ 2] [02] +16:27:18 [ 28] [ 9] [D00002000] +16:27:18 [ 32] [ 6] [621354] +16:27:18 [ 35] [ 37] [6688990101497509=42031231750914200000] +16:27:18 [ 37] [ 12] [507904645154] +16:27:18 [ 41] [ 8] [17000900] +16:27:18 [ 42] [ 15] [NATIVE ] +16:27:18 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:27:18 [ 49] [ 3] [418] +16:27:18 [ 52] [ 16] [9A9FBA5F0701E0E7] +16:27:18 ============================================================================ +16:27:18 + + +waiting on router queue for slot.... +16:27:18 Sending to : <4> +16:27:18 ============================================================================ +16:27:19 ============================================================================ +16:27:19 Slot Id : <423> +16:27:19 Transaction Type : RESPONSE +16:27:19 Received From : +16:27:19 ============================================================================ +16:27:19 FNo. Len. Field Value +16:27:19 ============================================================================ +16:27:19 [ 1] [ 4] [0210] +16:27:19 [ 2] [ 16] [6688990101497509] +16:27:19 [ 3] [ 6] [012000] +16:27:19 [ 4] [ 12] [000030000000] +16:27:19 [ 11] [ 6] [799117] +16:27:19 [ 12] [ 6] [162712] +16:27:19 [ 15] [ 4] [0320] +16:27:19 [ 18] [ 4] [6011] +16:27:19 [ 32] [ 6] [621354] +16:27:19 [ 35] [ 37] [6688990101497509=42031231750914200000] +16:27:19 [ 37] [ 12] [507904645154] +16:27:19 [ 38] [ 6] [081721] +16:27:19 [ 39] [ 2] [00] +16:27:19 [ 41] [ 8] [17000900] +16:27:19 [ 49] [ 3] [418] +16:27:19 [ 54] [ 20] [2002418C000402176885] +16:27:19 ============================================================================ +16:27:19 Sending to : +16:27:19 ============================================================================ +16:27:19 + + +waiting on router queue for slot.... +16:27:19 ============================================================================ +16:27:19 Slot Id : <458> +16:27:19 Transaction Type : REQUEST +16:27:19 Received From : +16:27:19 ============================================================================ +16:27:19 FNo. Len. Field Value +16:27:19 ============================================================================ +16:27:19 [ 1] [ 4] [0200] +16:27:19 [ 2] [ 16] [6213543000092501] +16:27:19 [ 3] [ 6] [302000] +16:27:19 [ 7] [ 10] [0320092625] +16:27:19 [ 11] [ 6] [270420] +16:27:19 [ 12] [ 6] [162625] +16:27:19 [ 13] [ 4] [0320] +16:27:19 [ 14] [ 4] [4912] +16:27:19 [ 15] [ 4] [0320] +16:27:19 [ 18] [ 4] [6011] +16:27:19 [ 19] [ 3] [418] +16:27:19 [ 22] [ 3] [021] +16:27:19 [ 25] [ 2] [01] +16:27:19 [ 32] [ 6] [180893] +16:27:19 [ 35] [ 32] [6213543000092501=491212019250357] +16:27:19 [ 37] [ 12] [507909270420] +16:27:19 [ 41] [ 8] [0114XKBR] +16:27:19 [ 42] [ 15] [999999 ] +16:27:19 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +16:27:19 [ 49] [ 3] [418] +16:27:19 [ 52] [ 16] [0679BB9376BA4443] +16:27:19 ============================================================================ +16:27:19 + + +waiting on router queue for slot.... +16:27:19 Sending to : +16:27:19 ============================================================================ +16:27:19 Sending to : +16:27:19 ============================================================================ +16:27:20 ============================================================================ +16:27:20 Slot Id : <458> +16:27:20 Transaction Type : REQUEST +16:27:20 Received From : +16:27:20 ============================================================================ +16:27:20 FNo. Len. Field Value +16:27:20 ============================================================================ +16:27:20 [ 1] [ 4] [0200] +16:27:20 [ 2] [ 16] [6213543000092501] +16:27:20 [ 3] [ 6] [302000] +16:27:20 [ 7] [ 10] [0320092625] +16:27:20 [ 11] [ 6] [270420] +16:27:20 [ 12] [ 6] [162625] +16:27:20 [ 13] [ 4] [0320] +16:27:20 [ 14] [ 4] [4912] +16:27:20 [ 15] [ 4] [0320] +16:27:20 [ 18] [ 4] [6011] +16:27:20 [ 19] [ 3] [418] +16:27:20 [ 22] [ 3] [021] +16:27:20 [ 25] [ 2] [01] +16:27:20 [ 32] [ 6] [180893] +16:27:20 [ 35] [ 32] [6213543000092501=491212019250357] +16:27:20 [ 37] [ 12] [507909270420] +16:27:20 [ 41] [ 8] [0114XKBR] +16:27:20 [ 42] [ 15] [999999 ] +16:27:20 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +16:27:20 [ 49] [ 3] [418] +16:27:20 [ 52] [ 16] [0679BB9376BA4443] +16:27:20 ============================================================================ +16:27:20 + + +waiting on router queue for slot.... +16:27:20 Sending to : +16:27:20 ============================================================================ +16:27:20 ============================================================================ +16:27:20 Slot Id : <458> +16:27:20 Transaction Type : REQUEST +16:27:20 Received From : +16:27:20 ============================================================================ +16:27:20 FNo. Len. Field Value +16:27:20 ============================================================================ +16:27:20 [ 1] [ 4] [0200] +16:27:20 [ 2] [ 16] [6213543000092501] +16:27:20 [ 3] [ 6] [302000] +16:27:20 [ 7] [ 10] [0320092625] +16:27:20 [ 11] [ 6] [270420] +16:27:20 [ 12] [ 6] [162625] +16:27:20 [ 13] [ 4] [0320] +16:27:20 [ 14] [ 4] [4912] +16:27:20 [ 15] [ 4] [0320] +16:27:20 [ 18] [ 4] [6011] +16:27:20 [ 19] [ 3] [418] +16:27:20 [ 22] [ 3] [021] +16:27:20 [ 25] [ 2] [01] +16:27:20 [ 32] [ 6] [180893] +16:27:20 [ 35] [ 32] [6213543000092501=491212019250357] +16:27:20 [ 37] [ 12] [507909270420] +16:27:20 [ 41] [ 8] [0114XKBR] +16:27:20 [ 42] [ 15] [999999 ] +16:27:20 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +16:27:20 [ 49] [ 3] [418] +16:27:20 [ 52] [ 16] [0CAACE6582BF81EC] +16:27:20 ============================================================================ +16:27:20 + + +waiting on router queue for slot.... +16:27:20 Sending to : <0> +16:27:20 ============================================================================ +16:27:20 ============================================================================ +16:27:20 Slot Id : <458> +16:27:20 Transaction Type : RESPONSE +16:27:20 Received From : +16:27:20 ============================================================================ +16:27:20 FNo. Len. Field Value +16:27:20 ============================================================================ +16:27:20 [ 1] [ 4] [0210] +16:27:20 [ 2] [ 16] [6213543000092501] +16:27:20 [ 3] [ 6] [302000] +16:27:20 [ 4] [ 12] [000000000000] +16:27:20 [ 7] [ 10] [0320092625] +16:27:20 [ 11] [ 6] [270420] +16:27:20 [ 12] [ 6] [162625] +16:27:20 [ 13] [ 4] [0320] +16:27:20 [ 15] [ 4] [0320] +16:27:20 [ 18] [ 4] [6011] +16:27:20 [ 19] [ 3] [418] +16:27:20 [ 32] [ 6] [180893] +16:27:20 [ 35] [ 32] [6213543000092501=491212019250357] +16:27:20 [ 37] [ 12] [507909270420] +16:27:20 [ 38] [ 6] [276075] +16:27:20 [ 39] [ 2] [00] +16:27:20 [ 41] [ 8] [0114XKBR] +16:27:20 [ 49] [ 3] [418] +16:27:20 [ 54] [ 40] [2001418C0001031208492002418C000103120849] +16:27:20 ============================================================================ +16:27:20 Sending to : +16:27:20 ============================================================================ +16:27:20 + + +waiting on router queue for slot.... +16:27:20 ============================================================================ +16:27:20 Slot Id : <423> +16:27:20 Transaction Type : RESPONSE +16:27:20 Received From : +16:27:20 ============================================================================ +16:27:20 FNo. Len. Field Value +16:27:20 ============================================================================ +16:27:20 [ 1] [ 4] [0210] +16:27:20 [ 2] [ 16] [6688990101497509] +16:27:20 [ 3] [ 6] [012000] +16:27:20 [ 4] [ 12] [000030000000] +16:27:20 [ 11] [ 6] [799117] +16:27:20 [ 12] [ 6] [162712] +16:27:20 [ 15] [ 4] [0320] +16:27:20 [ 18] [ 4] [6011] +16:27:20 [ 32] [ 6] [621354] +16:27:20 [ 35] [ 37] [6688990101497509=42031231750914200000] +16:27:20 [ 37] [ 12] [507904645154] +16:27:20 [ 38] [ 6] [081721] +16:27:20 [ 39] [ 2] [00] +16:27:20 [ 41] [ 8] [17000900] +16:27:20 [ 49] [ 3] [418] +16:27:20 [ 54] [ 20] [2002418C000402176885] +16:27:20 ============================================================================ +16:27:20 Calculate Source COMM Id = 0 +16:27:20 ============================================================================ +16:27:20 + + +waiting on router queue for slot.... +16:27:22 ============================================================================ +16:27:22 Slot Id : <458> +16:27:22 Transaction Type : RESPONSE +16:27:22 Received From : +16:27:22 ============================================================================ +16:27:22 FNo. Len. Field Value +16:27:22 ============================================================================ +16:27:22 [ 1] [ 4] [0210] +16:27:22 [ 2] [ 16] [6213543000092501] +16:27:22 [ 3] [ 6] [302000] +16:27:22 [ 4] [ 12] [000000000000] +16:27:22 [ 7] [ 10] [0320092625] +16:27:22 [ 11] [ 6] [270420] +16:27:22 [ 12] [ 6] [162625] +16:27:22 [ 13] [ 4] [0320] +16:27:22 [ 15] [ 4] [0320] +16:27:22 [ 18] [ 4] [6011] +16:27:22 [ 19] [ 3] [418] +16:27:22 [ 32] [ 6] [180893] +16:27:22 [ 35] [ 32] [6213543000092501=491212019250357] +16:27:22 [ 37] [ 12] [507909270420] +16:27:22 [ 38] [ 6] [276075] +16:27:22 [ 39] [ 2] [00] +16:27:22 [ 41] [ 8] [0114XKBR] +16:27:22 [ 49] [ 3] [418] +16:27:22 [ 54] [ 40] [2001418C0001031208492002418C000103120849] +16:27:22 ============================================================================ +16:27:22 Calculate Source COMM Id = 2 +16:27:22 ============================================================================ +16:27:22 + + +waiting on router queue for slot.... +16:27:25 ============================================================================ +16:27:25 Slot Id : <439> +16:27:25 Transaction Type : REQUEST +16:27:25 Received From : +16:27:25 ============================================================================ +16:27:25 FNo. Len. Field Value +16:27:25 ============================================================================ +16:27:25 [ 1] [ 4] [0200] +16:27:25 [ 2] [ 16] [6213548000206167] +16:27:25 [ 3] [ 6] [301000] +16:27:25 [ 7] [ 10] [0320092631] +16:27:25 [ 11] [ 6] [270425] +16:27:25 [ 12] [ 6] [162631] +16:27:25 [ 13] [ 4] [0320] +16:27:25 [ 14] [ 4] [1712] +16:27:25 [ 15] [ 4] [0320] +16:27:25 [ 18] [ 4] [6011] +16:27:25 [ 19] [ 3] [418] +16:27:25 [ 22] [ 3] [021] +16:27:25 [ 25] [ 2] [01] +16:27:25 [ 32] [ 6] [180893] +16:27:25 [ 35] [ 32] [6213548000206167=171212010616875] +16:27:25 [ 37] [ 12] [507909270425] +16:27:25 [ 41] [ 8] [0522XYXH] +16:27:25 [ 42] [ 15] [999999 ] +16:27:25 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:27:25 [ 49] [ 3] [418] +16:27:25 [ 52] [ 16] [1856C8AF733EC1D6] +16:27:25 ============================================================================ +16:27:25 + + +waiting on router queue for slot.... +16:27:25 Sending to : +16:27:25 ============================================================================ +16:27:25 Sending to : +16:27:25 ============================================================================ +16:27:25 ============================================================================ +16:27:25 Slot Id : <439> +16:27:25 Transaction Type : REQUEST +16:27:25 Received From : +16:27:25 ============================================================================ +16:27:25 FNo. Len. Field Value +16:27:25 ============================================================================ +16:27:25 [ 1] [ 4] [0200] +16:27:25 [ 2] [ 16] [6213548000206167] +16:27:25 [ 3] [ 6] [301000] +16:27:25 [ 7] [ 10] [0320092631] +16:27:25 [ 11] [ 6] [270425] +16:27:25 [ 12] [ 6] [162631] +16:27:25 [ 13] [ 4] [0320] +16:27:25 [ 14] [ 4] [1712] +16:27:25 [ 15] [ 4] [0320] +16:27:25 [ 18] [ 4] [6011] +16:27:25 [ 19] [ 3] [418] +16:27:25 [ 22] [ 3] [021] +16:27:25 [ 25] [ 2] [01] +16:27:25 [ 32] [ 6] [180893] +16:27:25 [ 35] [ 32] [6213548000206167=171212010616875] +16:27:25 [ 37] [ 12] [507909270425] +16:27:25 [ 41] [ 8] [0522XYXH] +16:27:25 [ 42] [ 15] [999999 ] +16:27:25 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:27:25 [ 49] [ 3] [418] +16:27:25 [ 52] [ 16] [1856C8AF733EC1D6] +16:27:25 ============================================================================ +16:27:25 + + +waiting on router queue for slot.... +16:27:25 Sending to : +16:27:25 ============================================================================ +16:27:25 ============================================================================ +16:27:25 Slot Id : <439> +16:27:25 Transaction Type : REQUEST +16:27:25 Received From : +16:27:25 ============================================================================ +16:27:25 FNo. Len. Field Value +16:27:25 ============================================================================ +16:27:25 [ 1] [ 4] [0200] +16:27:25 [ 2] [ 16] [6213548000206167] +16:27:25 [ 3] [ 6] [301000] +16:27:25 [ 7] [ 10] [0320092631] +16:27:25 [ 11] [ 6] [270425] +16:27:25 [ 12] [ 6] [162631] +16:27:25 [ 13] [ 4] [0320] +16:27:25 [ 14] [ 4] [1712] +16:27:25 [ 15] [ 4] [0320] +16:27:25 [ 18] [ 4] [6011] +16:27:25 [ 19] [ 3] [418] +16:27:25 [ 22] [ 3] [021] +16:27:25 [ 25] [ 2] [01] +16:27:25 [ 32] [ 6] [180893] +16:27:25 [ 35] [ 32] [6213548000206167=171212010616875] +16:27:25 [ 37] [ 12] [507909270425] +16:27:25 [ 41] [ 8] [0522XYXH] +16:27:25 [ 42] [ 15] [999999 ] +16:27:25 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:27:25 [ 49] [ 3] [418] +16:27:25 [ 52] [ 16] [4401AF7A91023EB9] +16:27:25 ============================================================================ +16:27:25 + + +waiting on router queue for slot.... +16:27:25 Sending to : <0> +16:27:25 ============================================================================ +16:27:25 ============================================================================ +16:27:25 Slot Id : <439> +16:27:25 Transaction Type : RESPONSE +16:27:25 Received From : +16:27:25 ============================================================================ +16:27:25 FNo. Len. Field Value +16:27:25 ============================================================================ +16:27:25 [ 1] [ 4] [0210] +16:27:25 [ 2] [ 16] [6213548000206167] +16:27:25 [ 3] [ 6] [301000] +16:27:25 [ 4] [ 12] [000000000000] +16:27:25 [ 7] [ 10] [0320092631] +16:27:25 [ 11] [ 6] [270425] +16:27:25 [ 12] [ 6] [162631] +16:27:25 [ 13] [ 4] [0320] +16:27:25 [ 15] [ 4] [0320] +16:27:25 [ 18] [ 4] [6011] +16:27:25 [ 19] [ 3] [418] +16:27:25 [ 32] [ 6] [180893] +16:27:25 [ 35] [ 32] [6213548000206167=171212010616875] +16:27:25 [ 37] [ 12] [507909270425] +16:27:25 [ 38] [ 6] [767568] +16:27:25 [ 39] [ 2] [00] +16:27:25 [ 41] [ 8] [0522XYXH] +16:27:25 [ 49] [ 3] [418] +16:27:25 [ 54] [ 40] [1001418C0000534553801002418C000053455380] +16:27:25 ============================================================================ +16:27:25 Sending to : +16:27:25 ============================================================================ +16:27:25 + + +waiting on router queue for slot.... +16:27:26 ============================================================================ +16:27:26 Slot Id : <459> +16:27:26 Transaction Type : REQUEST +16:27:26 Received From : +16:27:26 ============================================================================ +16:27:26 FNo. Len. Field Value +16:27:26 ============================================================================ +16:27:26 [ 1] [ 4] [0200] +16:27:26 [ 2] [ 16] [6213541000314255] +16:27:26 [ 3] [ 6] [010000] +16:27:26 [ 4] [ 12] [000100000000] +16:27:26 [ 7] [ 10] [0320092633] +16:27:26 [ 11] [ 6] [270427] +16:27:26 [ 12] [ 6] [162633] +16:27:26 [ 13] [ 4] [0320] +16:27:26 [ 14] [ 4] [4912] +16:27:26 [ 15] [ 4] [0320] +16:27:26 [ 18] [ 4] [6011] +16:27:26 [ 19] [ 3] [418] +16:27:26 [ 22] [ 3] [021] +16:27:26 [ 25] [ 2] [01] +16:27:26 [ 28] [ 9] [D00002000] +16:27:26 [ 32] [ 6] [180893] +16:27:26 [ 35] [ 32] [6213541000314255=491212011425008] +16:27:26 [ 37] [ 12] [507909270427] +16:27:26 [ 41] [ 8] [0482XKMO] +16:27:26 [ 42] [ 15] [999999 ] +16:27:26 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +16:27:26 [ 49] [ 3] [418] +16:27:26 [ 52] [ 16] [6C3EF849B61FB311] +16:27:26 ============================================================================ +16:27:26 + + +waiting on router queue for slot.... +16:27:26 Sending to : +16:27:26 ============================================================================ +16:27:26 Sending to : +16:27:26 ============================================================================ +16:27:27 ============================================================================ +16:27:27 Slot Id : <459> +16:27:27 Transaction Type : REQUEST +16:27:27 Received From : +16:27:27 ============================================================================ +16:27:27 FNo. Len. Field Value +16:27:27 ============================================================================ +16:27:27 [ 1] [ 4] [0200] +16:27:27 [ 2] [ 16] [6213541000314255] +16:27:27 [ 3] [ 6] [010000] +16:27:27 [ 4] [ 12] [000100000000] +16:27:27 [ 7] [ 10] [0320092633] +16:27:27 [ 11] [ 6] [270427] +16:27:27 [ 12] [ 6] [162633] +16:27:27 [ 13] [ 4] [0320] +16:27:27 [ 14] [ 4] [4912] +16:27:27 [ 15] [ 4] [0320] +16:27:27 [ 18] [ 4] [6011] +16:27:27 [ 19] [ 3] [418] +16:27:27 [ 22] [ 3] [021] +16:27:27 [ 25] [ 2] [01] +16:27:27 [ 28] [ 9] [D00002000] +16:27:27 [ 32] [ 6] [180893] +16:27:27 [ 35] [ 32] [6213541000314255=491212011425008] +16:27:27 [ 37] [ 12] [507909270427] +16:27:27 [ 41] [ 8] [0482XKMO] +16:27:27 [ 42] [ 15] [999999 ] +16:27:27 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +16:27:27 [ 49] [ 3] [418] +16:27:27 [ 52] [ 16] [6C3EF849B61FB311] +16:27:27 ============================================================================ +16:27:27 + + +waiting on router queue for slot.... +16:27:27 Sending to : +16:27:27 ============================================================================ +16:27:27 ============================================================================ +16:27:27 Slot Id : <459> +16:27:27 Transaction Type : REQUEST +16:27:27 Received From : +16:27:27 ============================================================================ +16:27:27 FNo. Len. Field Value +16:27:27 ============================================================================ +16:27:27 [ 1] [ 4] [0200] +16:27:27 [ 2] [ 16] [6213541000314255] +16:27:27 [ 3] [ 6] [010000] +16:27:27 [ 4] [ 12] [000100000000] +16:27:27 [ 7] [ 10] [0320092633] +16:27:27 [ 11] [ 6] [270427] +16:27:27 [ 12] [ 6] [162633] +16:27:27 [ 13] [ 4] [0320] +16:27:27 [ 14] [ 4] [4912] +16:27:27 [ 15] [ 4] [0320] +16:27:27 [ 18] [ 4] [6011] +16:27:27 [ 19] [ 3] [418] +16:27:27 [ 22] [ 3] [021] +16:27:27 [ 25] [ 2] [01] +16:27:27 [ 28] [ 9] [D00002000] +16:27:27 [ 32] [ 6] [180893] +16:27:27 [ 35] [ 32] [6213541000314255=491212011425008] +16:27:27 [ 37] [ 12] [507909270427] +16:27:27 [ 41] [ 8] [0482XKMO] +16:27:27 [ 42] [ 15] [999999 ] +16:27:27 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +16:27:27 [ 49] [ 3] [418] +16:27:27 [ 52] [ 16] [4D6E481CD412859B] +16:27:27 ============================================================================ +16:27:27 + + +waiting on router queue for slot.... +16:27:27 Sending to : <0> +16:27:27 ============================================================================ +16:27:27 ============================================================================ +16:27:27 Slot Id : <439> +16:27:27 Transaction Type : RESPONSE +16:27:27 Received From : +16:27:27 ============================================================================ +16:27:27 FNo. Len. Field Value +16:27:27 ============================================================================ +16:27:27 [ 1] [ 4] [0210] +16:27:27 [ 2] [ 16] [6213548000206167] +16:27:27 [ 3] [ 6] [301000] +16:27:27 [ 4] [ 12] [000000000000] +16:27:27 [ 7] [ 10] [0320092631] +16:27:27 [ 11] [ 6] [270425] +16:27:27 [ 12] [ 6] [162631] +16:27:27 [ 13] [ 4] [0320] +16:27:27 [ 15] [ 4] [0320] +16:27:27 [ 18] [ 4] [6011] +16:27:27 [ 19] [ 3] [418] +16:27:27 [ 32] [ 6] [180893] +16:27:27 [ 35] [ 32] [6213548000206167=171212010616875] +16:27:27 [ 37] [ 12] [507909270425] +16:27:27 [ 38] [ 6] [767568] +16:27:27 [ 39] [ 2] [00] +16:27:27 [ 41] [ 8] [0522XYXH] +16:27:27 [ 49] [ 3] [418] +16:27:27 [ 54] [ 40] [1001418C0000534553801002418C000053455380] +16:27:27 ============================================================================ +16:27:27 Calculate Source COMM Id = 2 +16:27:27 ============================================================================ +16:27:27 + + +waiting on router queue for slot.... +16:27:27 ============================================================================ +16:27:27 Slot Id : <459> +16:27:27 Transaction Type : RESPONSE +16:27:27 Received From : +16:27:27 ============================================================================ +16:27:27 FNo. Len. Field Value +16:27:27 ============================================================================ +16:27:27 [ 1] [ 4] [0210] +16:27:27 [ 2] [ 16] [6213541000314255] +16:27:27 [ 3] [ 6] [010000] +16:27:27 [ 4] [ 12] [000100000000] +16:27:27 [ 7] [ 10] [0320092633] +16:27:27 [ 11] [ 6] [270427] +16:27:27 [ 12] [ 6] [162633] +16:27:27 [ 13] [ 4] [0320] +16:27:27 [ 15] [ 4] [0320] +16:27:27 [ 18] [ 4] [6011] +16:27:27 [ 19] [ 3] [418] +16:27:27 [ 32] [ 6] [180893] +16:27:27 [ 35] [ 32] [6213541000314255=491212011425008] +16:27:27 [ 37] [ 12] [507909270427] +16:27:27 [ 38] [ 6] [245095] +16:27:27 [ 39] [ 2] [00] +16:27:27 [ 41] [ 8] [0482XKMO] +16:27:27 [ 49] [ 3] [418] +16:27:27 [ 54] [ 40] [0001418C0007237317210002418C000723731721] +16:27:27 ============================================================================ +16:27:27 Sending to : +16:27:27 ============================================================================ +16:27:27 + + +waiting on router queue for slot.... +16:27:29 ============================================================================ +16:27:29 Slot Id : <452> +16:27:29 Transaction Type : REQUEST +16:27:29 Received From : +16:27:29 ============================================================================ +16:27:29 FNo. Len. Field Value +16:27:29 ============================================================================ +16:27:29 [ 1] [ 4] [0800] +16:27:29 [ 2] [ 5] [02531] +16:27:29 [ 3] [ 6] [579168] +16:27:29 [ 7] [ 10] [0320092729] +16:27:29 [ 11] [ 6] [807367] +16:27:29 [ 15] [ 10] [0320092729] +16:27:29 [ 37] [ 11] [57916807367] +16:27:29 [ 70] [ 3] [001] +16:27:29 ============================================================================ +16:27:29 + + +waiting on router queue for slot.... +16:27:29 ============================================================================ +16:27:29 Slot Id : <452> +16:27:29 Transaction Type : RESPONSE +16:27:29 Received From : +16:27:29 ============================================================================ +16:27:29 FNo. Len. Field Value +16:27:29 ============================================================================ +16:27:29 [ 1] [ 4] [0810] +16:27:29 [ 7] [ 10] [0320092729] +16:27:29 [ 11] [ 6] [807367] +16:27:29 [ 15] [ 4] [0320] +16:27:29 [ 37] [ 12] [57916807367] +16:27:29 [ 39] [ 2] [00] +16:27:29 [ 70] [ 3] [001] +16:27:29 ============================================================================ +16:27:29 Sending to : +16:27:29 ============================================================================ +16:27:29 + + +waiting on router queue for slot.... +16:27:29 ============================================================================ +16:27:29 Slot Id : <459> +16:27:29 Transaction Type : RESPONSE +16:27:29 Received From : +16:27:29 ============================================================================ +16:27:29 FNo. Len. Field Value +16:27:29 ============================================================================ +16:27:29 [ 1] [ 4] [0210] +16:27:29 [ 2] [ 16] [6213541000314255] +16:27:29 [ 3] [ 6] [010000] +16:27:29 [ 4] [ 12] [000100000000] +16:27:29 [ 7] [ 10] [0320092633] +16:27:29 [ 11] [ 6] [270427] +16:27:29 [ 12] [ 6] [162633] +16:27:29 [ 13] [ 4] [0320] +16:27:29 [ 15] [ 4] [0320] +16:27:29 [ 18] [ 4] [6011] +16:27:29 [ 19] [ 3] [418] +16:27:29 [ 32] [ 6] [180893] +16:27:29 [ 35] [ 32] [6213541000314255=491212011425008] +16:27:29 [ 37] [ 12] [507909270427] +16:27:29 [ 38] [ 6] [245095] +16:27:29 [ 39] [ 2] [00] +16:27:29 [ 41] [ 8] [0482XKMO] +16:27:29 [ 49] [ 3] [418] +16:27:29 [ 54] [ 40] [0001418C0007237317210002418C000723731721] +16:27:29 ============================================================================ +16:27:29 Calculate Source COMM Id = 2 +16:27:29 ============================================================================ +16:27:29 + + +waiting on router queue for slot.... +16:27:29 ============================================================================ +16:27:29 Slot Id : <455> +16:27:29 Transaction Type : REQUEST +16:27:29 Received From : +16:27:29 ============================================================================ +16:27:29 FNo. Len. Field Value +16:27:29 ============================================================================ +16:27:29 [ 1] [ 4] [0200] +16:27:29 [ 2] [ 16] [6213541000565989] +16:27:29 [ 3] [ 6] [012000] +16:27:29 [ 4] [ 12] [000030000000] +16:27:29 [ 7] [ 10] [0320092634] +16:27:29 [ 11] [ 6] [270429] +16:27:29 [ 12] [ 6] [162634] +16:27:29 [ 13] [ 4] [0320] +16:27:29 [ 14] [ 4] [4912] +16:27:29 [ 15] [ 4] [0320] +16:27:29 [ 18] [ 4] [6011] +16:27:29 [ 19] [ 3] [418] +16:27:29 [ 22] [ 3] [021] +16:27:29 [ 25] [ 2] [01] +16:27:29 [ 28] [ 9] [D00002000] +16:27:29 [ 32] [ 6] [180893] +16:27:29 [ 35] [ 32] [6213541000565989=491212016598403] +16:27:29 [ 37] [ 12] [507909270429] +16:27:29 [ 41] [ 8] [0361BLTB] +16:27:29 [ 42] [ 15] [999999 ] +16:27:29 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +16:27:29 [ 49] [ 3] [418] +16:27:29 [ 52] [ 16] [6AF543C614CC9B01] +16:27:29 ============================================================================ +16:27:29 + + +waiting on router queue for slot.... +16:27:29 Sending to : +16:27:29 ============================================================================ +16:27:29 Sending to : +16:27:29 ============================================================================ +16:27:29 ============================================================================ +16:27:29 Slot Id : <468> +16:27:29 Transaction Type : REQUEST +16:27:29 Received From : +16:27:29 ============================================================================ +16:27:29 FNo. Len. Field Value +16:27:29 ============================================================================ +16:27:29 [ 1] [ 4] [0200] +16:27:29 [ 2] [ 16] [6688990103249205] +16:27:29 [ 3] [ 6] [010000] +16:27:29 [ 4] [ 12] [000100000000] +16:27:29 [ 7] [ 10] [0320092635] +16:27:29 [ 11] [ 6] [270430] +16:27:29 [ 12] [ 6] [162635] +16:27:29 [ 13] [ 4] [0320] +16:27:29 [ 14] [ 4] [4212] +16:27:29 [ 15] [ 4] [0320] +16:27:29 [ 18] [ 4] [6011] +16:27:29 [ 19] [ 3] [418] +16:27:29 [ 22] [ 3] [021] +16:27:29 [ 25] [ 2] [01] +16:27:29 [ 28] [ 9] [D00002000] +16:27:29 [ 32] [ 6] [180893] +16:27:29 [ 35] [ 37] [6688990103249205=42121231920564900000] +16:27:29 [ 37] [ 12] [507909270430] +16:27:29 [ 41] [ 8] [0369SLVL] +16:27:29 [ 42] [ 15] [999999 ] +16:27:29 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:27:29 [ 49] [ 3] [418] +16:27:29 [ 52] [ 16] [843A934FFD43CAA0] +16:27:29 ============================================================================ +16:27:29 + + +waiting on router queue for slot.... +16:27:29 Sending to : +16:27:29 ============================================================================ +16:27:29 Sending to : +16:27:29 ============================================================================ +16:27:30 ============================================================================ +16:27:30 Slot Id : <455> +16:27:30 Transaction Type : REQUEST +16:27:30 Received From : +16:27:30 ============================================================================ +16:27:30 FNo. Len. Field Value +16:27:30 ============================================================================ +16:27:30 [ 1] [ 4] [0200] +16:27:30 [ 2] [ 16] [6213541000565989] +16:27:30 [ 3] [ 6] [012000] +16:27:30 [ 4] [ 12] [000030000000] +16:27:30 [ 7] [ 10] [0320092634] +16:27:30 [ 11] [ 6] [270429] +16:27:30 [ 12] [ 6] [162634] +16:27:30 [ 13] [ 4] [0320] +16:27:30 [ 14] [ 4] [4912] +16:27:30 [ 15] [ 4] [0320] +16:27:30 [ 18] [ 4] [6011] +16:27:30 [ 19] [ 3] [418] +16:27:30 [ 22] [ 3] [021] +16:27:30 [ 25] [ 2] [01] +16:27:30 [ 28] [ 9] [D00002000] +16:27:30 [ 32] [ 6] [180893] +16:27:30 [ 35] [ 32] [6213541000565989=491212016598403] +16:27:30 [ 37] [ 12] [507909270429] +16:27:30 [ 41] [ 8] [0361BLTB] +16:27:30 [ 42] [ 15] [999999 ] +16:27:30 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +16:27:30 [ 49] [ 3] [418] +16:27:30 [ 52] [ 16] [6AF543C614CC9B01] +16:27:30 ============================================================================ +16:27:30 + + +waiting on router queue for slot.... +16:27:30 Sending to : +16:27:30 ============================================================================ +16:27:30 ============================================================================ +16:27:30 Slot Id : <455> +16:27:30 Transaction Type : REQUEST +16:27:30 Received From : +16:27:30 ============================================================================ +16:27:30 FNo. Len. Field Value +16:27:30 ============================================================================ +16:27:30 [ 1] [ 4] [0200] +16:27:30 [ 2] [ 16] [6213541000565989] +16:27:30 [ 3] [ 6] [012000] +16:27:30 [ 4] [ 12] [000030000000] +16:27:30 [ 7] [ 10] [0320092634] +16:27:30 [ 11] [ 6] [270429] +16:27:30 [ 12] [ 6] [162634] +16:27:30 [ 13] [ 4] [0320] +16:27:30 [ 14] [ 4] [4912] +16:27:30 [ 15] [ 4] [0320] +16:27:30 [ 18] [ 4] [6011] +16:27:30 [ 19] [ 3] [418] +16:27:30 [ 22] [ 3] [021] +16:27:30 [ 25] [ 2] [01] +16:27:30 [ 28] [ 9] [D00002000] +16:27:30 [ 32] [ 6] [180893] +16:27:30 [ 35] [ 32] [6213541000565989=491212016598403] +16:27:30 [ 37] [ 12] [507909270429] +16:27:30 [ 41] [ 8] [0361BLTB] +16:27:30 [ 42] [ 15] [999999 ] +16:27:30 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +16:27:30 [ 49] [ 3] [418] +16:27:30 [ 52] [ 16] [8F6E3E900407B7A8] +16:27:30 ============================================================================ +16:27:30 + + +waiting on router queue for slot.... +16:27:30 Sending to : <0> +16:27:30 ============================================================================ +16:27:30 ============================================================================ +16:27:30 Slot Id : <468> +16:27:30 Transaction Type : REQUEST +16:27:30 Received From : +16:27:30 ============================================================================ +16:27:30 FNo. Len. Field Value +16:27:30 ============================================================================ +16:27:30 [ 1] [ 4] [0200] +16:27:30 [ 2] [ 16] [6688990103249205] +16:27:30 [ 3] [ 6] [010000] +16:27:30 [ 4] [ 12] [000100000000] +16:27:30 [ 7] [ 10] [0320092635] +16:27:30 [ 11] [ 6] [270430] +16:27:30 [ 12] [ 6] [162635] +16:27:30 [ 13] [ 4] [0320] +16:27:30 [ 14] [ 4] [4212] +16:27:30 [ 15] [ 4] [0320] +16:27:30 [ 18] [ 4] [6011] +16:27:30 [ 19] [ 3] [418] +16:27:30 [ 22] [ 3] [021] +16:27:30 [ 25] [ 2] [01] +16:27:30 [ 28] [ 9] [D00002000] +16:27:30 [ 32] [ 6] [180893] +16:27:30 [ 35] [ 37] [6688990103249205=42121231920564900000] +16:27:30 [ 37] [ 12] [507909270430] +16:27:30 [ 41] [ 8] [0369SLVL] +16:27:30 [ 42] [ 15] [999999 ] +16:27:30 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:27:30 [ 49] [ 3] [418] +16:27:30 [ 52] [ 16] [843A934FFD43CAA0] +16:27:30 ============================================================================ +16:27:30 + + +waiting on router queue for slot.... +16:27:30 Sending to : +16:27:30 ============================================================================ +16:27:30 ============================================================================ +16:27:30 Slot Id : <468> +16:27:30 Transaction Type : REQUEST +16:27:30 Received From : +16:27:30 ============================================================================ +16:27:30 FNo. Len. Field Value +16:27:30 ============================================================================ +16:27:30 [ 1] [ 4] [0200] +16:27:30 [ 2] [ 16] [6688990103249205] +16:27:30 [ 3] [ 6] [010000] +16:27:30 [ 4] [ 12] [000100000000] +16:27:30 [ 7] [ 10] [0320092635] +16:27:30 [ 11] [ 6] [270430] +16:27:30 [ 12] [ 6] [162635] +16:27:30 [ 13] [ 4] [0320] +16:27:30 [ 14] [ 4] [4212] +16:27:30 [ 15] [ 4] [0320] +16:27:30 [ 18] [ 4] [6011] +16:27:30 [ 19] [ 3] [418] +16:27:30 [ 22] [ 3] [021] +16:27:30 [ 25] [ 2] [01] +16:27:30 [ 28] [ 9] [D00002000] +16:27:30 [ 32] [ 6] [180893] +16:27:30 [ 35] [ 37] [6688990103249205=42121231920564900000] +16:27:30 [ 37] [ 12] [507909270430] +16:27:30 [ 41] [ 8] [0369SLVL] +16:27:30 [ 42] [ 15] [999999 ] +16:27:30 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:27:30 [ 49] [ 3] [418] +16:27:30 [ 52] [ 16] [E5299EEB13B3896B] +16:27:30 ============================================================================ +16:27:30 + + +waiting on router queue for slot.... +16:27:30 Sending to : <0> +16:27:30 ============================================================================ +16:27:31 ============================================================================ +16:27:31 Slot Id : <468> +16:27:31 Transaction Type : RESPONSE +16:27:31 Received From : +16:27:31 ============================================================================ +16:27:31 FNo. Len. Field Value +16:27:31 ============================================================================ +16:27:31 [ 1] [ 4] [0210] +16:27:31 [ 2] [ 16] [6688990103249205] +16:27:31 [ 3] [ 6] [010000] +16:27:31 [ 4] [ 12] [000100000000] +16:27:31 [ 7] [ 10] [0320092635] +16:27:31 [ 11] [ 6] [270430] +16:27:31 [ 12] [ 6] [162635] +16:27:31 [ 13] [ 4] [0320] +16:27:31 [ 15] [ 4] [0320] +16:27:31 [ 18] [ 4] [6011] +16:27:31 [ 19] [ 3] [418] +16:27:31 [ 22] [ 3] [021] +16:27:31 [ 32] [ 6] [180893] +16:27:31 [ 35] [ 37] [6688990103249205=42121231920564900000] +16:27:31 [ 37] [ 12] [507909270430] +16:27:31 [ 39] [ 2] [14] +16:27:31 [ 41] [ 8] [0369SLVL] +16:27:31 [ 49] [ 3] [418] +16:27:31 ============================================================================ +16:27:31 Sending to : +16:27:31 ============================================================================ +16:27:31 + + +waiting on router queue for slot.... +16:27:31 ============================================================================ +16:27:31 Slot Id : <455> +16:27:31 Transaction Type : RESPONSE +16:27:31 Received From : +16:27:31 ============================================================================ +16:27:31 FNo. Len. Field Value +16:27:31 ============================================================================ +16:27:31 [ 1] [ 4] [0210] +16:27:31 [ 2] [ 16] [6213541000565989] +16:27:31 [ 3] [ 6] [012000] +16:27:31 [ 4] [ 12] [000030000000] +16:27:31 [ 7] [ 10] [0320092634] +16:27:31 [ 11] [ 6] [270429] +16:27:31 [ 12] [ 6] [162634] +16:27:31 [ 13] [ 4] [0320] +16:27:31 [ 15] [ 4] [0320] +16:27:31 [ 18] [ 4] [6011] +16:27:31 [ 19] [ 3] [418] +16:27:31 [ 32] [ 6] [180893] +16:27:31 [ 35] [ 32] [6213541000565989=491212016598403] +16:27:31 [ 37] [ 12] [507909270429] +16:27:31 [ 38] [ 6] [328852] +16:27:31 [ 39] [ 2] [00] +16:27:31 [ 41] [ 8] [0361BLTB] +16:27:31 [ 49] [ 3] [418] +16:27:31 [ 54] [ 40] [2001418C0000058657522002418C000005865752] +16:27:31 ============================================================================ +16:27:31 Sending to : +16:27:31 ============================================================================ +16:27:31 + + +waiting on router queue for slot.... +16:27:32 ============================================================================ +16:27:32 Slot Id : <468> +16:27:32 Transaction Type : RESPONSE +16:27:32 Received From : +16:27:32 ============================================================================ +16:27:32 FNo. Len. Field Value +16:27:32 ============================================================================ +16:27:32 [ 1] [ 4] [0210] +16:27:32 [ 2] [ 16] [6688990103249205] +16:27:32 [ 3] [ 6] [010000] +16:27:32 [ 4] [ 12] [000100000000] +16:27:32 [ 7] [ 10] [0320092635] +16:27:32 [ 11] [ 6] [270430] +16:27:32 [ 12] [ 6] [162635] +16:27:32 [ 13] [ 4] [0320] +16:27:32 [ 15] [ 4] [0320] +16:27:32 [ 18] [ 4] [6011] +16:27:32 [ 19] [ 3] [418] +16:27:32 [ 22] [ 3] [021] +16:27:32 [ 32] [ 6] [180893] +16:27:32 [ 35] [ 37] [6688990103249205=42121231920564900000] +16:27:32 [ 37] [ 12] [507909270430] +16:27:32 [ 39] [ 2] [14] +16:27:32 [ 41] [ 8] [0369SLVL] +16:27:32 [ 49] [ 3] [418] +16:27:32 ============================================================================ +16:27:32 Calculate Source COMM Id = 2 +16:27:32 ============================================================================ +16:27:32 + + +waiting on router queue for slot.... +16:27:32 ============================================================================ +16:27:32 Slot Id : <466> +16:27:32 Transaction Type : REQUEST +16:27:32 Received From : +16:27:32 ============================================================================ +16:27:32 FNo. Len. Field Value +16:27:32 ============================================================================ +16:27:32 [ 1] [ 4] [0200] +16:27:32 [ 2] [ 16] [6688990108430107] +16:27:32 [ 3] [ 6] [010000] +16:27:32 [ 4] [ 12] [000010000000] +16:27:32 [ 7] [ 10] [0320162727] +16:27:32 [ 11] [ 6] [799196] +16:27:32 [ 12] [ 6] [162727] +16:27:32 [ 13] [ 4] [0320] +16:27:32 [ 15] [ 4] [0320] +16:27:32 [ 18] [ 4] [6011] +16:27:32 [ 22] [ 3] [900] +16:27:32 [ 25] [ 2] [02] +16:27:32 [ 28] [ 9] [D00002000] +16:27:32 [ 32] [ 6] [621354] +16:27:32 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:27:32 [ 37] [ 12] [507903743401] +16:27:32 [ 41] [ 8] [06002400] +16:27:32 [ 42] [ 15] [NATIVE ] +16:27:32 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:27:32 [ 49] [ 3] [418] +16:27:32 [ 52] [ 16] [FBFD2F498C27BE7C] +16:27:32 ============================================================================ +16:27:32 + + +waiting on router queue for slot.... +16:27:32 Sending to : +16:27:32 ============================================================================ +16:27:32 Sending to : +16:27:32 ============================================================================ +16:27:32 ============================================================================ +16:27:32 Slot Id : <466> +16:27:32 Transaction Type : REQUEST +16:27:32 Received From : +16:27:32 ============================================================================ +16:27:32 FNo. Len. Field Value +16:27:32 ============================================================================ +16:27:32 [ 1] [ 4] [0200] +16:27:32 [ 2] [ 16] [6688990108430107] +16:27:32 [ 3] [ 6] [010000] +16:27:32 [ 4] [ 12] [000010000000] +16:27:32 [ 7] [ 10] [0320162727] +16:27:32 [ 11] [ 6] [799196] +16:27:32 [ 12] [ 6] [162727] +16:27:32 [ 13] [ 4] [0320] +16:27:32 [ 15] [ 4] [0320] +16:27:32 [ 18] [ 4] [6011] +16:27:32 [ 22] [ 3] [900] +16:27:32 [ 25] [ 2] [02] +16:27:32 [ 28] [ 9] [D00002000] +16:27:32 [ 32] [ 6] [621354] +16:27:32 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:27:32 [ 37] [ 12] [507903743401] +16:27:32 [ 41] [ 8] [06002400] +16:27:32 [ 42] [ 15] [NATIVE ] +16:27:32 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:27:32 [ 49] [ 3] [418] +16:27:32 [ 52] [ 16] [FBFD2F498C27BE7C] +16:27:32 ============================================================================ +16:27:32 + + +waiting on router queue for slot.... +16:27:32 Sending to : +16:27:32 ============================================================================ +16:27:32 ============================================================================ +16:27:32 Slot Id : <466> +16:27:32 Transaction Type : REQUEST +16:27:32 Received From : +16:27:32 ============================================================================ +16:27:32 FNo. Len. Field Value +16:27:32 ============================================================================ +16:27:32 [ 1] [ 4] [0200] +16:27:32 [ 2] [ 16] [6688990108430107] +16:27:32 [ 3] [ 6] [010000] +16:27:32 [ 4] [ 12] [000010000000] +16:27:32 [ 7] [ 10] [0320162727] +16:27:32 [ 11] [ 6] [799196] +16:27:32 [ 12] [ 6] [162727] +16:27:32 [ 13] [ 4] [0320] +16:27:32 [ 15] [ 4] [0320] +16:27:32 [ 18] [ 4] [6011] +16:27:32 [ 22] [ 3] [900] +16:27:32 [ 25] [ 2] [02] +16:27:32 [ 28] [ 9] [D00002000] +16:27:32 [ 32] [ 6] [621354] +16:27:32 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:27:32 [ 37] [ 12] [507903743401] +16:27:32 [ 41] [ 8] [06002400] +16:27:32 [ 42] [ 15] [NATIVE ] +16:27:32 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:27:32 [ 49] [ 3] [418] +16:27:32 [ 52] [ 16] [4168FB5C1D2D30C0] +16:27:32 ============================================================================ +16:27:32 + + +waiting on router queue for slot.... +16:27:32 Sending to : <4> +16:27:32 ============================================================================ +16:27:32 ============================================================================ +16:27:32 Slot Id : <475> +16:27:32 Transaction Type : REQUEST +16:27:32 Received From : +16:27:32 ============================================================================ +16:27:32 FNo. Len. Field Value +16:27:32 ============================================================================ +16:27:32 [ 1] [ 4] [0200] +16:27:32 [ 2] [ 16] [6688990105039802] +16:27:32 [ 3] [ 6] [011000] +16:27:32 [ 4] [ 12] [000013000000] +16:27:32 [ 7] [ 10] [0320162753] +16:27:32 [ 11] [ 6] [208693] +16:27:32 [ 12] [ 6] [042603] +16:27:32 [ 13] [ 4] [0320] +16:27:32 [ 14] [ 4] [4307] +16:27:32 [ 15] [ 4] [0320] +16:27:32 [ 18] [ 4] [6011] +16:27:32 [ 19] [ 3] [418] +16:27:32 [ 22] [ 3] [021] +16:27:32 [ 25] [ 2] [01] +16:27:32 [ 28] [ 9] [D00002000] +16:27:32 [ 32] [ 6] [198901] +16:27:32 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:27:32 [ 37] [ 12] [507916208693] +16:27:32 [ 41] [ 8] [01529031] +16:27:32 [ 42] [ 15] [000000041529031] +16:27:32 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:27:32 [ 49] [ 3] [418] +16:27:32 [ 52] [ 16] [EAE0D145F5ED04CF] +16:27:32 ============================================================================ +16:27:32 + + +waiting on router queue for slot.... +16:27:32 Sending to : +16:27:32 ============================================================================ +16:27:32 Sending to : +16:27:32 ============================================================================ +16:27:33 ============================================================================ +16:27:33 Slot Id : <475> +16:27:33 Transaction Type : REQUEST +16:27:33 Received From : +16:27:33 ============================================================================ +16:27:33 FNo. Len. Field Value +16:27:33 ============================================================================ +16:27:33 [ 1] [ 4] [0200] +16:27:33 [ 2] [ 16] [6688990105039802] +16:27:33 [ 3] [ 6] [011000] +16:27:33 [ 4] [ 12] [000013000000] +16:27:33 [ 7] [ 10] [0320162753] +16:27:33 [ 11] [ 6] [208693] +16:27:33 [ 12] [ 6] [042603] +16:27:33 [ 13] [ 4] [0320] +16:27:33 [ 14] [ 4] [4307] +16:27:33 [ 15] [ 4] [0320] +16:27:33 [ 18] [ 4] [6011] +16:27:33 [ 19] [ 3] [418] +16:27:33 [ 22] [ 3] [021] +16:27:33 [ 25] [ 2] [01] +16:27:33 [ 28] [ 9] [D00002000] +16:27:33 [ 32] [ 6] [198901] +16:27:33 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:27:33 [ 37] [ 12] [507916208693] +16:27:33 [ 41] [ 8] [01529031] +16:27:33 [ 42] [ 15] [000000041529031] +16:27:33 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:27:33 [ 49] [ 3] [418] +16:27:33 [ 52] [ 16] [EAE0D145F5ED04CF] +16:27:33 ============================================================================ +16:27:33 + + +waiting on router queue for slot.... +16:27:33 Sending to : +16:27:33 ============================================================================ +16:27:33 ============================================================================ +16:27:33 Slot Id : <475> +16:27:33 Transaction Type : REQUEST +16:27:33 Received From : +16:27:33 ============================================================================ +16:27:33 FNo. Len. Field Value +16:27:33 ============================================================================ +16:27:33 [ 1] [ 4] [0200] +16:27:33 [ 2] [ 16] [6688990105039802] +16:27:33 [ 3] [ 6] [011000] +16:27:33 [ 4] [ 12] [000013000000] +16:27:33 [ 7] [ 10] [0320162753] +16:27:33 [ 11] [ 6] [208693] +16:27:33 [ 12] [ 6] [042603] +16:27:33 [ 13] [ 4] [0320] +16:27:33 [ 14] [ 4] [4307] +16:27:33 [ 15] [ 4] [0320] +16:27:33 [ 18] [ 4] [6011] +16:27:33 [ 19] [ 3] [418] +16:27:33 [ 22] [ 3] [021] +16:27:33 [ 25] [ 2] [01] +16:27:33 [ 28] [ 9] [D00002000] +16:27:33 [ 32] [ 6] [198901] +16:27:33 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:27:33 [ 37] [ 12] [507916208693] +16:27:33 [ 41] [ 8] [01529031] +16:27:33 [ 42] [ 15] [000000041529031] +16:27:33 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:27:33 [ 49] [ 3] [418] +16:27:33 [ 52] [ 16] [AB7021312CFA3237] +16:27:33 ============================================================================ +16:27:33 + + +waiting on router queue for slot.... +16:27:33 Sending to : <4> +16:27:33 ============================================================================ +16:27:33 ============================================================================ +16:27:33 Slot Id : <466> +16:27:33 Transaction Type : RESPONSE +16:27:33 Received From : +16:27:33 ============================================================================ +16:27:33 FNo. Len. Field Value +16:27:33 ============================================================================ +16:27:33 [ 1] [ 4] [0210] +16:27:33 [ 2] [ 16] [6688990108430107] +16:27:33 [ 3] [ 6] [010000] +16:27:33 [ 4] [ 12] [000010000000] +16:27:33 [ 11] [ 6] [799196] +16:27:33 [ 12] [ 6] [162727] +16:27:33 [ 15] [ 4] [0320] +16:27:33 [ 18] [ 4] [6011] +16:27:33 [ 32] [ 6] [621354] +16:27:33 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:27:33 [ 37] [ 12] [507903743401] +16:27:33 [ 38] [ 6] [433814] +16:27:33 [ 39] [ 2] [00] +16:27:33 [ 41] [ 8] [06002400] +16:27:33 [ 49] [ 3] [418] +16:27:33 [ 54] [ 20] [0002418C000002961979] +16:27:33 ============================================================================ +16:27:33 Sending to : +16:27:33 ============================================================================ +16:27:33 + + +waiting on router queue for slot.... +16:27:34 ============================================================================ +16:27:34 Slot Id : <455> +16:27:34 Transaction Type : RESPONSE +16:27:34 Received From : +16:27:34 ============================================================================ +16:27:34 FNo. Len. Field Value +16:27:34 ============================================================================ +16:27:34 [ 1] [ 4] [0210] +16:27:34 [ 2] [ 16] [6213541000565989] +16:27:34 [ 3] [ 6] [012000] +16:27:34 [ 4] [ 12] [000030000000] +16:27:34 [ 7] [ 10] [0320092634] +16:27:34 [ 11] [ 6] [270429] +16:27:34 [ 12] [ 6] [162634] +16:27:34 [ 13] [ 4] [0320] +16:27:34 [ 15] [ 4] [0320] +16:27:34 [ 18] [ 4] [6011] +16:27:34 [ 19] [ 3] [418] +16:27:34 [ 32] [ 6] [180893] +16:27:34 [ 35] [ 32] [6213541000565989=491212016598403] +16:27:34 [ 37] [ 12] [507909270429] +16:27:34 [ 38] [ 6] [328852] +16:27:34 [ 39] [ 2] [00] +16:27:34 [ 41] [ 8] [0361BLTB] +16:27:34 [ 49] [ 3] [418] +16:27:34 [ 54] [ 40] [2001418C0000058657522002418C000005865752] +16:27:34 ============================================================================ +16:27:34 Calculate Source COMM Id = 2 +16:27:34 ============================================================================ +16:27:34 + + +waiting on router queue for slot.... +16:27:34 ============================================================================ +16:27:34 Slot Id : <475> +16:27:34 Transaction Type : RESPONSE +16:27:34 Received From : +16:27:34 ============================================================================ +16:27:34 FNo. Len. Field Value +16:27:34 ============================================================================ +16:27:34 [ 1] [ 4] [0210] +16:27:34 [ 2] [ 16] [6688990105039802] +16:27:34 [ 3] [ 6] [011000] +16:27:34 [ 4] [ 12] [000013000000] +16:27:34 [ 11] [ 6] [208693] +16:27:34 [ 12] [ 6] [042603] +16:27:34 [ 15] [ 4] [0320] +16:27:34 [ 18] [ 4] [6011] +16:27:34 [ 32] [ 6] [198901] +16:27:34 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:27:34 [ 37] [ 12] [507916208693] +16:27:34 [ 38] [ 6] [971800] +16:27:34 [ 39] [ 2] [00] +16:27:34 [ 41] [ 8] [01529031] +16:27:34 [ 49] [ 3] [418] +16:27:34 [ 54] [ 20] [1002418C000171011614] +16:27:34 ============================================================================ +16:27:34 Sending to : +16:27:34 ============================================================================ +16:27:34 + + +waiting on router queue for slot.... +16:27:35 ============================================================================ +16:27:35 Slot Id : <466> +16:27:35 Transaction Type : RESPONSE +16:27:35 Received From : +16:27:35 ============================================================================ +16:27:35 FNo. Len. Field Value +16:27:35 ============================================================================ +16:27:35 [ 1] [ 4] [0210] +16:27:35 [ 2] [ 16] [6688990108430107] +16:27:35 [ 3] [ 6] [010000] +16:27:35 [ 4] [ 12] [000010000000] +16:27:35 [ 11] [ 6] [799196] +16:27:35 [ 12] [ 6] [162727] +16:27:35 [ 15] [ 4] [0320] +16:27:35 [ 18] [ 4] [6011] +16:27:35 [ 32] [ 6] [621354] +16:27:35 [ 35] [ 37] [6688990108430107=44061231010702100000] +16:27:35 [ 37] [ 12] [507903743401] +16:27:35 [ 38] [ 6] [433814] +16:27:35 [ 39] [ 2] [00] +16:27:35 [ 41] [ 8] [06002400] +16:27:35 [ 49] [ 3] [418] +16:27:35 [ 54] [ 20] [0002418C000002961979] +16:27:35 ============================================================================ +16:27:35 Calculate Source COMM Id = 0 +16:27:35 ============================================================================ +16:27:35 + + +waiting on router queue for slot.... +16:27:36 ============================================================================ +16:27:36 Slot Id : <475> +16:27:36 Transaction Type : RESPONSE +16:27:36 Received From : +16:27:36 ============================================================================ +16:27:36 FNo. Len. Field Value +16:27:36 ============================================================================ +16:27:36 [ 1] [ 4] [0210] +16:27:36 [ 2] [ 16] [6688990105039802] +16:27:36 [ 3] [ 6] [011000] +16:27:36 [ 4] [ 12] [000013000000] +16:27:36 [ 11] [ 6] [208693] +16:27:36 [ 12] [ 6] [042603] +16:27:36 [ 15] [ 4] [0320] +16:27:36 [ 18] [ 4] [6011] +16:27:36 [ 32] [ 6] [198901] +16:27:36 [ 35] [ 37] [6688990105039802=43071231980229800000] +16:27:36 [ 37] [ 12] [507916208693] +16:27:36 [ 38] [ 6] [971800] +16:27:36 [ 39] [ 2] [00] +16:27:36 [ 41] [ 8] [01529031] +16:27:36 [ 49] [ 3] [418] +16:27:36 [ 54] [ 20] [1002418C000171011614] +16:27:36 ============================================================================ +16:27:36 Calculate Source COMM Id = 5 +16:27:36 ============================================================================ +16:27:36 + + +waiting on router queue for slot.... +16:27:36 ============================================================================ +16:27:36 Slot Id : <440> +16:27:36 Transaction Type : REQUEST +16:27:36 Received From : +16:27:36 ============================================================================ +16:27:36 FNo. Len. Field Value +16:27:36 ============================================================================ +16:27:36 [ 1] [ 4] [0200] +16:27:36 [ 2] [ 16] [6213544002113220] +16:27:36 [ 3] [ 6] [011000] +16:27:36 [ 4] [ 12] [000055000000] +16:27:36 [ 7] [ 10] [0320162757] +16:27:36 [ 11] [ 6] [208694] +16:27:36 [ 12] [ 6] [162259] +16:27:36 [ 13] [ 4] [0320] +16:27:36 [ 14] [ 4] [4912] +16:27:36 [ 15] [ 4] [0320] +16:27:36 [ 18] [ 4] [6011] +16:27:36 [ 19] [ 3] [418] +16:27:36 [ 22] [ 3] [021] +16:27:36 [ 25] [ 2] [01] +16:27:36 [ 28] [ 9] [D00002000] +16:27:36 [ 32] [ 6] [198901] +16:27:36 [ 35] [ 32] [6213544002113220=491212011322983] +16:27:36 [ 37] [ 12] [507916208694] +16:27:36 [ 41] [ 8] [19529001] +16:27:36 [ 42] [ 15] [000000041952901] +16:27:36 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:27:36 [ 49] [ 3] [418] +16:27:36 [ 52] [ 16] [4CFC92673E157986] +16:27:36 ============================================================================ +16:27:36 + + +waiting on router queue for slot.... +16:27:36 Sending to : +16:27:36 ============================================================================ +16:27:36 Sending to : +16:27:36 ============================================================================ +16:27:37 ============================================================================ +16:27:37 Slot Id : <440> +16:27:37 Transaction Type : REQUEST +16:27:37 Received From : +16:27:37 ============================================================================ +16:27:37 FNo. Len. Field Value +16:27:37 ============================================================================ +16:27:37 [ 1] [ 4] [0200] +16:27:37 [ 2] [ 16] [6213544002113220] +16:27:37 [ 3] [ 6] [011000] +16:27:37 [ 4] [ 12] [000055000000] +16:27:37 [ 7] [ 10] [0320162757] +16:27:37 [ 11] [ 6] [208694] +16:27:37 [ 12] [ 6] [162259] +16:27:37 [ 13] [ 4] [0320] +16:27:37 [ 14] [ 4] [4912] +16:27:37 [ 15] [ 4] [0320] +16:27:37 [ 18] [ 4] [6011] +16:27:37 [ 19] [ 3] [418] +16:27:37 [ 22] [ 3] [021] +16:27:37 [ 25] [ 2] [01] +16:27:37 [ 28] [ 9] [D00002000] +16:27:37 [ 32] [ 6] [198901] +16:27:37 [ 35] [ 32] [6213544002113220=491212011322983] +16:27:37 [ 37] [ 12] [507916208694] +16:27:37 [ 41] [ 8] [19529001] +16:27:37 [ 42] [ 15] [000000041952901] +16:27:37 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:27:37 [ 49] [ 3] [418] +16:27:37 [ 52] [ 16] [4CFC92673E157986] +16:27:37 ============================================================================ +16:27:37 + + +waiting on router queue for slot.... +16:27:37 Sending to : +16:27:37 ============================================================================ +16:27:37 ============================================================================ +16:27:37 Slot Id : <440> +16:27:37 Transaction Type : REQUEST +16:27:37 Received From : +16:27:37 ============================================================================ +16:27:37 FNo. Len. Field Value +16:27:37 ============================================================================ +16:27:37 [ 1] [ 4] [0200] +16:27:37 [ 2] [ 16] [6213544002113220] +16:27:37 [ 3] [ 6] [011000] +16:27:37 [ 4] [ 12] [000055000000] +16:27:37 [ 7] [ 10] [0320162757] +16:27:37 [ 11] [ 6] [208694] +16:27:37 [ 12] [ 6] [162259] +16:27:37 [ 13] [ 4] [0320] +16:27:37 [ 14] [ 4] [4912] +16:27:37 [ 15] [ 4] [0320] +16:27:37 [ 18] [ 4] [6011] +16:27:37 [ 19] [ 3] [418] +16:27:37 [ 22] [ 3] [021] +16:27:37 [ 25] [ 2] [01] +16:27:37 [ 28] [ 9] [D00002000] +16:27:37 [ 32] [ 6] [198901] +16:27:37 [ 35] [ 32] [6213544002113220=491212011322983] +16:27:37 [ 37] [ 12] [507916208694] +16:27:37 [ 41] [ 8] [19529001] +16:27:37 [ 42] [ 15] [000000041952901] +16:27:37 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:27:37 [ 49] [ 3] [418] +16:27:37 [ 52] [ 16] [4369A8B98ABC40EC] +16:27:37 ============================================================================ +16:27:37 + + +waiting on router queue for slot.... +16:27:37 Sending to : <0> +16:27:37 ============================================================================ +16:27:38 ============================================================================ +16:27:38 Slot Id : <440> +16:27:38 Transaction Type : RESPONSE +16:27:38 Received From : +16:27:38 ============================================================================ +16:27:38 FNo. Len. Field Value +16:27:38 ============================================================================ +16:27:38 [ 1] [ 4] [0210] +16:27:38 [ 2] [ 16] [6213544002113220] +16:27:38 [ 3] [ 6] [011000] +16:27:38 [ 4] [ 12] [000055000000] +16:27:38 [ 7] [ 10] [0320162757] +16:27:38 [ 11] [ 6] [208694] +16:27:38 [ 12] [ 6] [162259] +16:27:38 [ 13] [ 4] [0320] +16:27:38 [ 15] [ 4] [0320] +16:27:38 [ 18] [ 4] [6011] +16:27:38 [ 19] [ 3] [418] +16:27:38 [ 32] [ 6] [198901] +16:27:38 [ 35] [ 32] [6213544002113220=491212011322983] +16:27:38 [ 37] [ 12] [507916208694] +16:27:38 [ 38] [ 6] [311068] +16:27:38 [ 39] [ 2] [00] +16:27:38 [ 41] [ 8] [19529001] +16:27:38 [ 49] [ 3] [418] +16:27:38 [ 54] [ 40] [1001418C0000086082101002418C000008608210] +16:27:38 ============================================================================ +16:27:38 Sending to : +16:27:38 ============================================================================ +16:27:38 + + +waiting on router queue for slot.... +16:27:39 ============================================================================ +16:27:39 Slot Id : <460> +16:27:39 Transaction Type : REQUEST +16:27:39 Received From : +16:27:39 ============================================================================ +16:27:39 FNo. Len. Field Value +16:27:39 ============================================================================ +16:27:39 [ 1] [ 4] [0200] +16:27:39 [ 2] [ 16] [6688990603038702] +16:27:39 [ 3] [ 6] [010000] +16:27:39 [ 4] [ 12] [000020000000] +16:27:39 [ 7] [ 10] [0320162734] +16:27:39 [ 11] [ 6] [799237] +16:27:39 [ 12] [ 6] [162734] +16:27:39 [ 13] [ 4] [0320] +16:27:39 [ 15] [ 4] [0320] +16:27:39 [ 18] [ 4] [6011] +16:27:39 [ 22] [ 3] [900] +16:27:39 [ 25] [ 2] [02] +16:27:39 [ 28] [ 9] [D00002000] +16:27:39 [ 32] [ 6] [621354] +16:27:39 [ 35] [ 37] [6688990603038702=44040061870223000000] +16:27:39 [ 37] [ 12] [507902606252] +16:27:39 [ 41] [ 8] [05004300] +16:27:39 [ 42] [ 15] [NATIVE ] +16:27:39 [ 43] [ 40] [Ka deng office LuangprabangLAO] +16:27:39 [ 49] [ 3] [418] +16:27:39 [ 52] [ 16] [DA15356092A5712E] +16:27:39 ============================================================================ +16:27:39 + + +waiting on router queue for slot.... +16:27:39 Sending to : +16:27:39 ============================================================================ +16:27:39 Sending to : +16:27:39 ============================================================================ +16:27:39 ============================================================================ +16:27:39 Slot Id : <460> +16:27:39 Transaction Type : REQUEST +16:27:39 Received From : +16:27:39 ============================================================================ +16:27:39 FNo. Len. Field Value +16:27:39 ============================================================================ +16:27:39 [ 1] [ 4] [0200] +16:27:39 [ 2] [ 16] [6688990603038702] +16:27:39 [ 3] [ 6] [010000] +16:27:39 [ 4] [ 12] [000020000000] +16:27:39 [ 7] [ 10] [0320162734] +16:27:39 [ 11] [ 6] [799237] +16:27:39 [ 12] [ 6] [162734] +16:27:39 [ 13] [ 4] [0320] +16:27:39 [ 15] [ 4] [0320] +16:27:39 [ 18] [ 4] [6011] +16:27:39 [ 22] [ 3] [900] +16:27:39 [ 25] [ 2] [02] +16:27:39 [ 28] [ 9] [D00002000] +16:27:39 [ 32] [ 6] [621354] +16:27:39 [ 35] [ 37] [6688990603038702=44040061870223000000] +16:27:39 [ 37] [ 12] [507902606252] +16:27:39 [ 41] [ 8] [05004300] +16:27:39 [ 42] [ 15] [NATIVE ] +16:27:39 [ 43] [ 40] [Ka deng office LuangprabangLAO] +16:27:39 [ 49] [ 3] [418] +16:27:39 [ 52] [ 16] [DA15356092A5712E] +16:27:39 ============================================================================ +16:27:39 + + +waiting on router queue for slot.... +16:27:39 Sending to : +16:27:39 ============================================================================ +16:27:39 ============================================================================ +16:27:39 Slot Id : <460> +16:27:39 Transaction Type : REQUEST +16:27:39 Received From : +16:27:39 ============================================================================ +16:27:39 FNo. Len. Field Value +16:27:39 ============================================================================ +16:27:39 [ 1] [ 4] [0200] +16:27:39 [ 2] [ 16] [6688990603038702] +16:27:39 [ 3] [ 6] [010000] +16:27:39 [ 4] [ 12] [000020000000] +16:27:39 [ 7] [ 10] [0320162734] +16:27:39 [ 11] [ 6] [799237] +16:27:39 [ 12] [ 6] [162734] +16:27:39 [ 13] [ 4] [0320] +16:27:39 [ 15] [ 4] [0320] +16:27:39 [ 18] [ 4] [6011] +16:27:39 [ 22] [ 3] [900] +16:27:39 [ 25] [ 2] [02] +16:27:39 [ 28] [ 9] [D00002000] +16:27:39 [ 32] [ 6] [621354] +16:27:39 [ 35] [ 37] [6688990603038702=44040061870223000000] +16:27:39 [ 37] [ 12] [507902606252] +16:27:39 [ 41] [ 8] [05004300] +16:27:39 [ 42] [ 15] [NATIVE ] +16:27:39 [ 43] [ 40] [Ka deng office LuangprabangLAO] +16:27:39 [ 49] [ 3] [418] +16:27:39 [ 52] [ 16] [BF2DECEA46A3A6C7] +16:27:39 ============================================================================ +16:27:39 + + +waiting on router queue for slot.... +16:27:39 Sending to : <4> +16:27:39 ============================================================================ +16:27:40 ============================================================================ +16:27:40 Slot Id : <440> +16:27:40 Transaction Type : RESPONSE +16:27:40 Received From : +16:27:40 ============================================================================ +16:27:40 FNo. Len. Field Value +16:27:40 ============================================================================ +16:27:40 [ 1] [ 4] [0210] +16:27:40 [ 2] [ 16] [6213544002113220] +16:27:40 [ 3] [ 6] [011000] +16:27:40 [ 4] [ 12] [000055000000] +16:27:40 [ 7] [ 10] [0320162757] +16:27:40 [ 11] [ 6] [208694] +16:27:40 [ 12] [ 6] [162259] +16:27:40 [ 13] [ 4] [0320] +16:27:40 [ 15] [ 4] [0320] +16:27:40 [ 18] [ 4] [6011] +16:27:40 [ 19] [ 3] [418] +16:27:40 [ 32] [ 6] [198901] +16:27:40 [ 35] [ 32] [6213544002113220=491212011322983] +16:27:40 [ 37] [ 12] [507916208694] +16:27:40 [ 38] [ 6] [311068] +16:27:40 [ 39] [ 2] [00] +16:27:40 [ 41] [ 8] [19529001] +16:27:40 [ 49] [ 3] [418] +16:27:40 [ 54] [ 40] [1001418C0000086082101002418C000008608210] +16:27:40 ============================================================================ +16:27:40 Calculate Source COMM Id = 5 +16:27:40 ============================================================================ +16:27:40 + + +waiting on router queue for slot.... +16:27:40 ============================================================================ +16:27:40 Slot Id : <460> +16:27:40 Transaction Type : RESPONSE +16:27:40 Received From : +16:27:40 ============================================================================ +16:27:40 FNo. Len. Field Value +16:27:40 ============================================================================ +16:27:40 [ 1] [ 4] [0210] +16:27:40 [ 2] [ 16] [6688990603038702] +16:27:40 [ 3] [ 6] [010000] +16:27:40 [ 4] [ 12] [000020000000] +16:27:40 [ 11] [ 6] [799237] +16:27:40 [ 12] [ 6] [162734] +16:27:40 [ 15] [ 4] [0320] +16:27:40 [ 18] [ 4] [6011] +16:27:40 [ 32] [ 6] [621354] +16:27:40 [ 35] [ 37] [6688990603038702=44040061870223000000] +16:27:40 [ 37] [ 12] [507902606252] +16:27:40 [ 38] [ 6] [647020] +16:27:40 [ 39] [ 2] [00] +16:27:40 [ 41] [ 8] [05004300] +16:27:40 [ 49] [ 3] [418] +16:27:40 [ 54] [ 20] [0002418C000438351711] +16:27:40 ============================================================================ +16:27:40 Sending to : +16:27:40 ============================================================================ +16:27:40 + + +waiting on router queue for slot.... +16:27:41 ============================================================================ +16:27:41 Slot Id : <460> +16:27:41 Transaction Type : RESPONSE +16:27:41 Received From : +16:27:41 ============================================================================ +16:27:41 FNo. Len. Field Value +16:27:41 ============================================================================ +16:27:41 [ 1] [ 4] [0210] +16:27:41 [ 2] [ 16] [6688990603038702] +16:27:41 [ 3] [ 6] [010000] +16:27:41 [ 4] [ 12] [000020000000] +16:27:41 [ 11] [ 6] [799237] +16:27:41 [ 12] [ 6] [162734] +16:27:41 [ 15] [ 4] [0320] +16:27:41 [ 18] [ 4] [6011] +16:27:41 [ 32] [ 6] [621354] +16:27:41 [ 35] [ 37] [6688990603038702=44040061870223000000] +16:27:41 [ 37] [ 12] [507902606252] +16:27:41 [ 38] [ 6] [647020] +16:27:41 [ 39] [ 2] [00] +16:27:41 [ 41] [ 8] [05004300] +16:27:41 [ 49] [ 3] [418] +16:27:41 [ 54] [ 20] [0002418C000438351711] +16:27:41 ============================================================================ +16:27:41 Calculate Source COMM Id = 0 +16:27:41 ============================================================================ +16:27:41 + + +waiting on router queue for slot.... +16:27:48 ============================================================================ +16:27:48 Slot Id : <432> +16:27:48 Transaction Type : REQUEST +16:27:48 Received From : +16:27:48 ============================================================================ +16:27:48 FNo. Len. Field Value +16:27:48 ============================================================================ +16:27:48 [ 1] [ 4] [0800] +16:27:48 [ 7] [ 10] [0320092655] +16:27:48 [ 11] [ 6] [157240] +16:27:48 [ 70] [ 3] [301] +16:27:48 ============================================================================ +16:27:48 + + +waiting on router queue for slot.... +16:27:48 Sending to : +16:27:48 ============================================================================ +16:27:48 ============================================================================ +16:27:48 Slot Id : <432> +16:27:48 Transaction Type : RESPONSE +16:27:48 Received From : +16:27:48 ============================================================================ +16:27:48 FNo. Len. Field Value +16:27:48 ============================================================================ +16:27:48 [ 1] [ 4] [0810] +16:27:48 [ 7] [ 10] [0320092655] +16:27:48 [ 11] [ 6] [157240] +16:27:48 [ 39] [ 2] [00] +16:27:48 [ 70] [ 3] [301] +16:27:48 ============================================================================ +16:27:48 Calculate Source COMM Id = 2 +16:27:48 ============================================================================ +16:27:48 + + +waiting on router queue for slot.... +16:27:50 ============================================================================ +16:27:50 Slot Id : <495> +16:27:50 Transaction Type : REQUEST +16:27:50 Received From : +16:27:50 ============================================================================ +16:27:50 FNo. Len. Field Value +16:27:50 ============================================================================ +16:27:50 [ 1] [ 4] [0200] +16:27:50 [ 2] [ 16] [6688990040112748] +16:27:50 [ 3] [ 6] [010000] +16:27:50 [ 4] [ 12] [000100000000] +16:27:50 [ 7] [ 10] [0320092657] +16:27:50 [ 11] [ 6] [270436] +16:27:50 [ 12] [ 6] [162657] +16:27:50 [ 13] [ 4] [0320] +16:27:50 [ 14] [ 4] [9803] +16:27:50 [ 15] [ 4] [0320] +16:27:50 [ 18] [ 4] [6011] +16:27:50 [ 19] [ 3] [418] +16:27:50 [ 22] [ 3] [021] +16:27:50 [ 25] [ 2] [01] +16:27:50 [ 28] [ 9] [D00002000] +16:27:50 [ 32] [ 6] [180893] +16:27:50 [ 35] [ 37] [6688990040112748=98031261513567900000] +16:27:50 [ 37] [ 12] [507909270436] +16:27:50 [ 41] [ 8] [0221XKKM] +16:27:50 [ 42] [ 15] [999999 ] +16:27:50 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:27:50 [ 49] [ 3] [418] +16:27:50 [ 52] [ 16] [5B7249C5F76D6E6E] +16:27:50 ============================================================================ +16:27:50 + + +waiting on router queue for slot.... +16:27:50 Sending to : +16:27:50 ============================================================================ +16:27:50 Sending to : +16:27:50 ============================================================================ +16:27:50 ============================================================================ +16:27:50 Slot Id : <495> +16:27:50 Transaction Type : REQUEST +16:27:50 Received From : +16:27:50 ============================================================================ +16:27:50 FNo. Len. Field Value +16:27:50 ============================================================================ +16:27:50 [ 1] [ 4] [0200] +16:27:50 [ 2] [ 16] [6688990040112748] +16:27:50 [ 3] [ 6] [010000] +16:27:50 [ 4] [ 12] [000100000000] +16:27:50 [ 7] [ 10] [0320092657] +16:27:50 [ 11] [ 6] [270436] +16:27:50 [ 12] [ 6] [162657] +16:27:50 [ 13] [ 4] [0320] +16:27:50 [ 14] [ 4] [9803] +16:27:50 [ 15] [ 4] [0320] +16:27:50 [ 18] [ 4] [6011] +16:27:50 [ 19] [ 3] [418] +16:27:50 [ 22] [ 3] [021] +16:27:50 [ 25] [ 2] [01] +16:27:50 [ 28] [ 9] [D00002000] +16:27:50 [ 32] [ 6] [180893] +16:27:50 [ 35] [ 37] [6688990040112748=98031261513567900000] +16:27:50 [ 37] [ 12] [507909270436] +16:27:50 [ 41] [ 8] [0221XKKM] +16:27:50 [ 42] [ 15] [999999 ] +16:27:50 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:27:50 [ 49] [ 3] [418] +16:27:50 [ 52] [ 16] [5B7249C5F76D6E6E] +16:27:50 ============================================================================ +16:27:50 + + +waiting on router queue for slot.... +16:27:50 Sending to : +16:27:50 ============================================================================ +16:27:50 ============================================================================ +16:27:50 Slot Id : <495> +16:27:50 Transaction Type : REQUEST +16:27:50 Received From : +16:27:50 ============================================================================ +16:27:50 FNo. Len. Field Value +16:27:50 ============================================================================ +16:27:50 [ 1] [ 4] [0200] +16:27:50 [ 2] [ 16] [6688990040112748] +16:27:50 [ 3] [ 6] [010000] +16:27:50 [ 4] [ 12] [000100000000] +16:27:50 [ 7] [ 10] [0320092657] +16:27:50 [ 11] [ 6] [270436] +16:27:50 [ 12] [ 6] [162657] +16:27:50 [ 13] [ 4] [0320] +16:27:50 [ 14] [ 4] [9803] +16:27:50 [ 15] [ 4] [0320] +16:27:50 [ 18] [ 4] [6011] +16:27:50 [ 19] [ 3] [418] +16:27:50 [ 22] [ 3] [021] +16:27:50 [ 25] [ 2] [01] +16:27:50 [ 28] [ 9] [D00002000] +16:27:50 [ 32] [ 6] [180893] +16:27:50 [ 35] [ 37] [6688990040112748=98031261513567900000] +16:27:50 [ 37] [ 12] [507909270436] +16:27:50 [ 41] [ 8] [0221XKKM] +16:27:50 [ 42] [ 15] [999999 ] +16:27:50 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:27:50 [ 49] [ 3] [418] +16:27:50 [ 52] [ 16] [90F2401045884DF7] +16:27:50 ============================================================================ +16:27:50 + + +waiting on router queue for slot.... +16:27:50 Sending to : <0> +16:27:50 ============================================================================ +16:27:50 ============================================================================ +16:27:50 Slot Id : <495> +16:27:50 Transaction Type : RESPONSE +16:27:50 Received From : +16:27:50 ============================================================================ +16:27:50 FNo. Len. Field Value +16:27:50 ============================================================================ +16:27:50 [ 1] [ 4] [0210] +16:27:50 [ 2] [ 16] [6688990040112748] +16:27:50 [ 3] [ 6] [010000] +16:27:50 [ 4] [ 12] [000100000000] +16:27:50 [ 7] [ 10] [0320092657] +16:27:50 [ 11] [ 6] [270436] +16:27:50 [ 12] [ 6] [162657] +16:27:50 [ 13] [ 4] [0320] +16:27:50 [ 15] [ 4] [0320] +16:27:50 [ 18] [ 4] [6011] +16:27:50 [ 19] [ 3] [418] +16:27:50 [ 22] [ 3] [021] +16:27:50 [ 32] [ 6] [180893] +16:27:50 [ 35] [ 37] [6688990040112748=98031261513567900000] +16:27:50 [ 37] [ 12] [507909270436] +16:27:50 [ 39] [ 2] [14] +16:27:50 [ 41] [ 8] [0221XKKM] +16:27:50 [ 49] [ 3] [418] +16:27:50 ============================================================================ +16:27:50 Sending to : +16:27:50 ============================================================================ +16:27:50 + + +waiting on router queue for slot.... +16:27:52 ============================================================================ +16:27:52 Slot Id : <495> +16:27:52 Transaction Type : RESPONSE +16:27:52 Received From : +16:27:52 ============================================================================ +16:27:52 FNo. Len. Field Value +16:27:52 ============================================================================ +16:27:52 [ 1] [ 4] [0210] +16:27:52 [ 2] [ 16] [6688990040112748] +16:27:52 [ 3] [ 6] [010000] +16:27:52 [ 4] [ 12] [000100000000] +16:27:52 [ 7] [ 10] [0320092657] +16:27:52 [ 11] [ 6] [270436] +16:27:52 [ 12] [ 6] [162657] +16:27:52 [ 13] [ 4] [0320] +16:27:52 [ 15] [ 4] [0320] +16:27:52 [ 18] [ 4] [6011] +16:27:52 [ 19] [ 3] [418] +16:27:52 [ 22] [ 3] [021] +16:27:52 [ 32] [ 6] [180893] +16:27:52 [ 35] [ 37] [6688990040112748=98031261513567900000] +16:27:52 [ 37] [ 12] [507909270436] +16:27:52 [ 39] [ 2] [14] +16:27:52 [ 41] [ 8] [0221XKKM] +16:27:52 [ 49] [ 3] [418] +16:27:52 ============================================================================ +16:27:52 Calculate Source COMM Id = 2 +16:27:52 ============================================================================ +16:27:52 + + +waiting on router queue for slot.... +16:27:55 ============================================================================ +16:27:55 Slot Id : <449> +16:27:55 Transaction Type : REQUEST +16:27:55 Received From : +16:27:55 ============================================================================ +16:27:55 FNo. Len. Field Value +16:27:55 ============================================================================ +16:27:55 [ 1] [ 4] [0800] +16:27:55 [ 7] [ 10] [0320233942] +16:27:55 [ 11] [ 6] [163942] +16:27:55 [ 37] [ 12] [57916163942] +16:27:55 [ 70] [ 3] [301] +16:27:55 ============================================================================ +16:27:55 + + +waiting on router queue for slot.... +16:27:55 Sending to : +16:27:55 ============================================================================ +16:27:55 ============================================================================ +16:27:55 Slot Id : <449> +16:27:55 Transaction Type : RESPONSE +16:27:55 Received From : +16:27:55 ============================================================================ +16:27:55 FNo. Len. Field Value +16:27:55 ============================================================================ +16:27:55 [ 1] [ 4] [0810] +16:27:55 [ 7] [ 10] [0320233942] +16:27:55 [ 11] [ 6] [163942] +16:27:55 [ 37] [ 12] [579161639420] +16:27:55 [ 39] [ 2] [00] +16:27:55 [ 70] [ 3] [810] +16:27:55 ============================================================================ +16:27:55 Calculate Source COMM Id = 6 +16:27:55 ============================================================================ +16:27:55 + + +waiting on router queue for slot.... +16:28:04 ============================================================================ +16:28:04 Slot Id : <482> +16:28:04 Transaction Type : REQUEST +16:28:04 Received From : +16:28:04 ============================================================================ +16:28:04 FNo. Len. Field Value +16:28:04 ============================================================================ +16:28:04 [ 1] [ 4] [0800] +16:28:04 [ 7] [ 10] [0320092711] +16:28:04 [ 11] [ 6] [157241] +16:28:04 [ 70] [ 3] [301] +16:28:04 ============================================================================ +16:28:04 + + +waiting on router queue for slot.... +16:28:04 Sending to : +16:28:04 ============================================================================ +16:28:04 ============================================================================ +16:28:04 Slot Id : <482> +16:28:04 Transaction Type : RESPONSE +16:28:04 Received From : +16:28:04 ============================================================================ +16:28:04 FNo. Len. Field Value +16:28:04 ============================================================================ +16:28:04 [ 1] [ 4] [0810] +16:28:04 [ 7] [ 10] [0320092711] +16:28:04 [ 11] [ 6] [157241] +16:28:04 [ 39] [ 2] [00] +16:28:04 [ 70] [ 3] [301] +16:28:04 ============================================================================ +16:28:04 Calculate Source COMM Id = 2 +16:28:04 ============================================================================ +16:28:04 + + +waiting on router queue for slot.... +16:28:08 ============================================================================ +16:28:08 Slot Id : <488> +16:28:08 Transaction Type : REQUEST +16:28:08 Received From : +16:28:08 ============================================================================ +16:28:08 FNo. Len. Field Value +16:28:08 ============================================================================ +16:28:08 [ 1] [ 4] [0200] +16:28:08 [ 2] [ 16] [6213541000314255] +16:28:08 [ 3] [ 6] [010000] +16:28:08 [ 4] [ 12] [000100000000] +16:28:08 [ 7] [ 10] [0320092715] +16:28:08 [ 11] [ 6] [270440] +16:28:08 [ 12] [ 6] [162715] +16:28:08 [ 13] [ 4] [0320] +16:28:08 [ 14] [ 4] [4912] +16:28:08 [ 15] [ 4] [0320] +16:28:08 [ 18] [ 4] [6011] +16:28:08 [ 19] [ 3] [418] +16:28:08 [ 22] [ 3] [021] +16:28:08 [ 25] [ 2] [01] +16:28:08 [ 28] [ 9] [D00002000] +16:28:08 [ 32] [ 6] [180893] +16:28:08 [ 35] [ 32] [6213541000314255=491212011425008] +16:28:08 [ 37] [ 12] [507909270440] +16:28:08 [ 41] [ 8] [0482XKMO] +16:28:08 [ 42] [ 15] [999999 ] +16:28:08 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +16:28:08 [ 49] [ 3] [418] +16:28:08 [ 52] [ 16] [6C3EF849B61FB311] +16:28:08 ============================================================================ +16:28:08 + + +waiting on router queue for slot.... +16:28:08 Sending to : +16:28:08 ============================================================================ +16:28:08 Sending to : +16:28:08 ============================================================================ +16:28:08 ============================================================================ +16:28:08 Slot Id : <488> +16:28:08 Transaction Type : REQUEST +16:28:08 Received From : +16:28:08 ============================================================================ +16:28:08 FNo. Len. Field Value +16:28:08 ============================================================================ +16:28:08 [ 1] [ 4] [0200] +16:28:08 [ 2] [ 16] [6213541000314255] +16:28:08 [ 3] [ 6] [010000] +16:28:08 [ 4] [ 12] [000100000000] +16:28:08 [ 7] [ 10] [0320092715] +16:28:08 [ 11] [ 6] [270440] +16:28:08 [ 12] [ 6] [162715] +16:28:08 [ 13] [ 4] [0320] +16:28:08 [ 14] [ 4] [4912] +16:28:08 [ 15] [ 4] [0320] +16:28:08 [ 18] [ 4] [6011] +16:28:08 [ 19] [ 3] [418] +16:28:08 [ 22] [ 3] [021] +16:28:08 [ 25] [ 2] [01] +16:28:08 [ 28] [ 9] [D00002000] +16:28:08 [ 32] [ 6] [180893] +16:28:08 [ 35] [ 32] [6213541000314255=491212011425008] +16:28:08 [ 37] [ 12] [507909270440] +16:28:08 [ 41] [ 8] [0482XKMO] +16:28:08 [ 42] [ 15] [999999 ] +16:28:08 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +16:28:08 [ 49] [ 3] [418] +16:28:08 [ 52] [ 16] [6C3EF849B61FB311] +16:28:08 ============================================================================ +16:28:08 + + +waiting on router queue for slot.... +16:28:08 Sending to : +16:28:08 ============================================================================ +16:28:08 ============================================================================ +16:28:08 Slot Id : <488> +16:28:08 Transaction Type : REQUEST +16:28:08 Received From : +16:28:08 ============================================================================ +16:28:08 FNo. Len. Field Value +16:28:08 ============================================================================ +16:28:08 [ 1] [ 4] [0200] +16:28:08 [ 2] [ 16] [6213541000314255] +16:28:08 [ 3] [ 6] [010000] +16:28:08 [ 4] [ 12] [000100000000] +16:28:08 [ 7] [ 10] [0320092715] +16:28:08 [ 11] [ 6] [270440] +16:28:08 [ 12] [ 6] [162715] +16:28:08 [ 13] [ 4] [0320] +16:28:08 [ 14] [ 4] [4912] +16:28:08 [ 15] [ 4] [0320] +16:28:08 [ 18] [ 4] [6011] +16:28:08 [ 19] [ 3] [418] +16:28:08 [ 22] [ 3] [021] +16:28:08 [ 25] [ 2] [01] +16:28:08 [ 28] [ 9] [D00002000] +16:28:08 [ 32] [ 6] [180893] +16:28:08 [ 35] [ 32] [6213541000314255=491212011425008] +16:28:08 [ 37] [ 12] [507909270440] +16:28:08 [ 41] [ 8] [0482XKMO] +16:28:08 [ 42] [ 15] [999999 ] +16:28:08 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +16:28:08 [ 49] [ 3] [418] +16:28:08 [ 52] [ 16] [4D6E481CD412859B] +16:28:08 ============================================================================ +16:28:08 + + +waiting on router queue for slot.... +16:28:08 Sending to : <0> +16:28:08 ============================================================================ +16:28:09 ============================================================================ +16:28:09 Slot Id : <488> +16:28:09 Transaction Type : RESPONSE +16:28:09 Received From : +16:28:09 ============================================================================ +16:28:09 FNo. Len. Field Value +16:28:09 ============================================================================ +16:28:09 [ 1] [ 4] [0210] +16:28:09 [ 2] [ 16] [6213541000314255] +16:28:09 [ 3] [ 6] [010000] +16:28:09 [ 4] [ 12] [000100000000] +16:28:09 [ 7] [ 10] [0320092715] +16:28:09 [ 11] [ 6] [270440] +16:28:09 [ 12] [ 6] [162715] +16:28:09 [ 13] [ 4] [0320] +16:28:09 [ 15] [ 4] [0320] +16:28:09 [ 18] [ 4] [6011] +16:28:09 [ 19] [ 3] [418] +16:28:09 [ 32] [ 6] [180893] +16:28:09 [ 35] [ 32] [6213541000314255=491212011425008] +16:28:09 [ 37] [ 12] [507909270440] +16:28:09 [ 38] [ 6] [029018] +16:28:09 [ 39] [ 2] [00] +16:28:09 [ 41] [ 8] [0482XKMO] +16:28:09 [ 49] [ 3] [418] +16:28:09 [ 54] [ 40] [0001418C0006235317210002418C000623531721] +16:28:09 ============================================================================ +16:28:09 Sending to : +16:28:09 ============================================================================ +16:28:09 + + +waiting on router queue for slot.... +16:28:11 ============================================================================ +16:28:11 Slot Id : <488> +16:28:11 Transaction Type : RESPONSE +16:28:11 Received From : +16:28:11 ============================================================================ +16:28:11 FNo. Len. Field Value +16:28:11 ============================================================================ +16:28:11 [ 1] [ 4] [0210] +16:28:11 [ 2] [ 16] [6213541000314255] +16:28:11 [ 3] [ 6] [010000] +16:28:11 [ 4] [ 12] [000100000000] +16:28:11 [ 7] [ 10] [0320092715] +16:28:11 [ 11] [ 6] [270440] +16:28:11 [ 12] [ 6] [162715] +16:28:11 [ 13] [ 4] [0320] +16:28:11 [ 15] [ 4] [0320] +16:28:11 [ 18] [ 4] [6011] +16:28:11 [ 19] [ 3] [418] +16:28:11 [ 32] [ 6] [180893] +16:28:11 [ 35] [ 32] [6213541000314255=491212011425008] +16:28:11 [ 37] [ 12] [507909270440] +16:28:11 [ 38] [ 6] [029018] +16:28:11 [ 39] [ 2] [00] +16:28:11 [ 41] [ 8] [0482XKMO] +16:28:11 [ 49] [ 3] [418] +16:28:11 [ 54] [ 40] [0001418C0006235317210002418C000623531721] +16:28:11 ============================================================================ +16:28:11 Calculate Source COMM Id = 2 +16:28:11 ============================================================================ +16:28:11 + + +waiting on router queue for slot.... +16:28:13 ============================================================================ +16:28:13 Slot Id : <453> +16:28:13 Transaction Type : REQUEST +16:28:13 Received From : +16:28:13 ============================================================================ +16:28:13 FNo. Len. Field Value +16:28:13 ============================================================================ +16:28:13 [ 1] [ 4] [0200] +16:28:13 [ 2] [ 16] [6688990050006624] +16:28:13 [ 3] [ 6] [301000] +16:28:13 [ 4] [ 12] [000000000000] +16:28:13 [ 7] [ 10] [0320162808] +16:28:13 [ 11] [ 6] [799392] +16:28:13 [ 12] [ 6] [162808] +16:28:13 [ 13] [ 4] [0320] +16:28:13 [ 15] [ 4] [0320] +16:28:13 [ 18] [ 4] [6011] +16:28:13 [ 22] [ 3] [900] +16:28:13 [ 25] [ 2] [02] +16:28:13 [ 28] [ 9] [D00000000] +16:28:13 [ 32] [ 6] [621354] +16:28:13 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:28:13 [ 37] [ 12] [507904719785] +16:28:13 [ 41] [ 8] [18001000] +16:28:13 [ 42] [ 15] [NATIVE ] +16:28:13 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:28:13 [ 49] [ 3] [418] +16:28:13 [ 52] [ 16] [98168DAF2928C677] +16:28:13 ============================================================================ +16:28:13 + + +waiting on router queue for slot.... +16:28:13 Sending to : +16:28:13 ============================================================================ +16:28:13 Sending to : +16:28:13 ============================================================================ +16:28:13 ============================================================================ +16:28:13 Slot Id : <453> +16:28:13 Transaction Type : REQUEST +16:28:13 Received From : +16:28:13 ============================================================================ +16:28:13 FNo. Len. Field Value +16:28:13 ============================================================================ +16:28:13 [ 1] [ 4] [0200] +16:28:13 [ 2] [ 16] [6688990050006624] +16:28:13 [ 3] [ 6] [301000] +16:28:13 [ 4] [ 12] [000000000000] +16:28:13 [ 7] [ 10] [0320162808] +16:28:13 [ 11] [ 6] [799392] +16:28:13 [ 12] [ 6] [162808] +16:28:13 [ 13] [ 4] [0320] +16:28:13 [ 15] [ 4] [0320] +16:28:13 [ 18] [ 4] [6011] +16:28:13 [ 22] [ 3] [900] +16:28:13 [ 25] [ 2] [02] +16:28:13 [ 28] [ 9] [D00000000] +16:28:13 [ 32] [ 6] [621354] +16:28:13 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:28:13 [ 37] [ 12] [507904719785] +16:28:13 [ 41] [ 8] [18001000] +16:28:13 [ 42] [ 15] [NATIVE ] +16:28:13 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:28:13 [ 49] [ 3] [418] +16:28:13 [ 52] [ 16] [98168DAF2928C677] +16:28:13 ============================================================================ +16:28:13 + + +waiting on router queue for slot.... +16:28:13 Sending to : +16:28:13 ============================================================================ +16:28:13 ============================================================================ +16:28:13 Slot Id : <453> +16:28:13 Transaction Type : REQUEST +16:28:13 Received From : +16:28:13 ============================================================================ +16:28:13 FNo. Len. Field Value +16:28:13 ============================================================================ +16:28:13 [ 1] [ 4] [0200] +16:28:13 [ 2] [ 16] [6688990050006624] +16:28:13 [ 3] [ 6] [301000] +16:28:13 [ 4] [ 12] [000000000000] +16:28:13 [ 7] [ 10] [0320162808] +16:28:13 [ 11] [ 6] [799392] +16:28:13 [ 12] [ 6] [162808] +16:28:13 [ 13] [ 4] [0320] +16:28:13 [ 15] [ 4] [0320] +16:28:13 [ 18] [ 4] [6011] +16:28:13 [ 22] [ 3] [900] +16:28:13 [ 25] [ 2] [02] +16:28:13 [ 28] [ 9] [D00000000] +16:28:13 [ 32] [ 6] [621354] +16:28:13 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:28:13 [ 37] [ 12] [507904719785] +16:28:13 [ 41] [ 8] [18001000] +16:28:13 [ 42] [ 15] [NATIVE ] +16:28:13 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:28:13 [ 49] [ 3] [418] +16:28:13 [ 52] [ 16] [BC7CC3791A0927C1] +16:28:13 ============================================================================ +16:28:13 + + +waiting on router queue for slot.... +16:28:13 Sending to : <4> +16:28:13 ============================================================================ +16:28:14 ============================================================================ +16:28:14 Slot Id : <470> +16:28:14 Transaction Type : REQUEST +16:28:14 Received From : +16:28:14 ============================================================================ +16:28:14 FNo. Len. Field Value +16:28:14 ============================================================================ +16:28:14 [ 1] [ 4] [0200] +16:28:14 [ 2] [ 16] [1808931800005819] +16:28:14 [ 3] [ 6] [011000] +16:28:14 [ 4] [ 12] [000050000000] +16:28:14 [ 7] [ 10] [0320162809] +16:28:14 [ 11] [ 6] [799394] +16:28:14 [ 12] [ 6] [162809] +16:28:14 [ 13] [ 4] [0320] +16:28:14 [ 15] [ 4] [0320] +16:28:14 [ 18] [ 4] [6011] +16:28:14 [ 22] [ 3] [900] +16:28:14 [ 25] [ 2] [02] +16:28:14 [ 28] [ 9] [D00002000] +16:28:14 [ 32] [ 6] [621354] +16:28:14 [ 35] [ 27] [1808931800005819=1803500314] +16:28:14 [ 37] [ 12] [507904635870] +16:28:14 [ 41] [ 8] [17000800] +16:28:14 [ 42] [ 15] [NATIVE ] +16:28:14 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:28:14 [ 49] [ 3] [418] +16:28:14 [ 52] [ 16] [FB005D378095F13B] +16:28:14 ============================================================================ +16:28:14 + + +waiting on router queue for slot.... +16:28:14 Sending to : +16:28:14 ============================================================================ +16:28:14 Sending to : +16:28:14 ============================================================================ +16:28:14 ============================================================================ +16:28:14 Slot Id : <453> +16:28:14 Transaction Type : RESPONSE +16:28:14 Received From : +16:28:14 ============================================================================ +16:28:14 FNo. Len. Field Value +16:28:14 ============================================================================ +16:28:14 [ 1] [ 4] [0210] +16:28:14 [ 2] [ 16] [6688990050006624] +16:28:14 [ 3] [ 6] [301000] +16:28:14 [ 4] [ 12] [000000000000] +16:28:14 [ 11] [ 6] [799392] +16:28:14 [ 12] [ 6] [162808] +16:28:14 [ 15] [ 4] [0320] +16:28:14 [ 18] [ 4] [6011] +16:28:14 [ 32] [ 6] [621354] +16:28:14 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:28:14 [ 37] [ 12] [507904719785] +16:28:14 [ 38] [ 6] [587963] +16:28:14 [ 39] [ 2] [00] +16:28:14 [ 41] [ 8] [18001000] +16:28:14 [ 49] [ 3] [418] +16:28:14 [ 54] [ 20] [1002418C000037416176] +16:28:14 ============================================================================ +16:28:14 Sending to : +16:28:14 ============================================================================ +16:28:14 + + +waiting on router queue for slot.... +16:28:14 ============================================================================ +16:28:14 Slot Id : <470> +16:28:14 Transaction Type : REQUEST +16:28:14 Received From : +16:28:14 ============================================================================ +16:28:14 FNo. Len. Field Value +16:28:14 ============================================================================ +16:28:14 [ 1] [ 4] [0200] +16:28:14 [ 2] [ 16] [1808931800005819] +16:28:14 [ 3] [ 6] [011000] +16:28:14 [ 4] [ 12] [000050000000] +16:28:14 [ 7] [ 10] [0320162809] +16:28:14 [ 11] [ 6] [799394] +16:28:14 [ 12] [ 6] [162809] +16:28:14 [ 13] [ 4] [0320] +16:28:14 [ 15] [ 4] [0320] +16:28:14 [ 18] [ 4] [6011] +16:28:14 [ 22] [ 3] [900] +16:28:14 [ 25] [ 2] [02] +16:28:14 [ 28] [ 9] [D00002000] +16:28:14 [ 32] [ 6] [621354] +16:28:14 [ 35] [ 27] [1808931800005819=1803500314] +16:28:14 [ 37] [ 12] [507904635870] +16:28:14 [ 41] [ 8] [17000800] +16:28:14 [ 42] [ 15] [NATIVE ] +16:28:14 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:28:14 [ 49] [ 3] [418] +16:28:14 [ 52] [ 16] [FB005D378095F13B] +16:28:14 ============================================================================ +16:28:14 + + +waiting on router queue for slot.... +16:28:14 Sending to : +16:28:14 ============================================================================ +16:28:14 ============================================================================ +16:28:14 Slot Id : <470> +16:28:14 Transaction Type : REQUEST +16:28:14 Received From : +16:28:14 ============================================================================ +16:28:14 FNo. Len. Field Value +16:28:14 ============================================================================ +16:28:14 [ 1] [ 4] [0200] +16:28:14 [ 2] [ 16] [1808931800005819] +16:28:14 [ 3] [ 6] [011000] +16:28:14 [ 4] [ 12] [000050000000] +16:28:14 [ 7] [ 10] [0320162809] +16:28:14 [ 11] [ 6] [799394] +16:28:14 [ 12] [ 6] [162809] +16:28:14 [ 13] [ 4] [0320] +16:28:14 [ 15] [ 4] [0320] +16:28:14 [ 18] [ 4] [6011] +16:28:14 [ 22] [ 3] [900] +16:28:14 [ 25] [ 2] [02] +16:28:14 [ 28] [ 9] [D00002000] +16:28:14 [ 32] [ 6] [621354] +16:28:14 [ 35] [ 27] [1808931800005819=1803500314] +16:28:14 [ 37] [ 12] [507904635870] +16:28:14 [ 41] [ 8] [17000800] +16:28:14 [ 42] [ 15] [NATIVE ] +16:28:14 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:28:14 [ 49] [ 3] [418] +16:28:14 [ 52] [ 16] [98BE394402CFEE30] +16:28:14 ============================================================================ +16:28:14 + + +waiting on router queue for slot.... +16:28:14 Sending to : <2> +16:28:14 ============================================================================ +16:28:15 ============================================================================ +16:28:15 Slot Id : <453> +16:28:15 Transaction Type : RESPONSE +16:28:15 Received From : +16:28:15 ============================================================================ +16:28:15 FNo. Len. Field Value +16:28:15 ============================================================================ +16:28:15 [ 1] [ 4] [0210] +16:28:15 [ 2] [ 16] [6688990050006624] +16:28:15 [ 3] [ 6] [301000] +16:28:15 [ 4] [ 12] [000000000000] +16:28:15 [ 11] [ 6] [799392] +16:28:15 [ 12] [ 6] [162808] +16:28:15 [ 15] [ 4] [0320] +16:28:15 [ 18] [ 4] [6011] +16:28:15 [ 32] [ 6] [621354] +16:28:15 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:28:15 [ 37] [ 12] [507904719785] +16:28:15 [ 38] [ 6] [587963] +16:28:15 [ 39] [ 2] [00] +16:28:15 [ 41] [ 8] [18001000] +16:28:15 [ 49] [ 3] [418] +16:28:15 [ 54] [ 20] [1002418C000037416176] +16:28:15 ============================================================================ +16:28:15 Calculate Source COMM Id = 0 +16:28:15 ============================================================================ +16:28:15 + + +waiting on router queue for slot.... +16:28:18 ============================================================================ +16:28:18 Slot Id : <470> +16:28:18 Transaction Type : RESPONSE +16:28:18 Received From : +16:28:18 ============================================================================ +16:28:18 FNo. Len. Field Value +16:28:18 ============================================================================ +16:28:18 [ 1] [ 4] [0210] +16:28:18 [ 2] [ 16] [1808931800005819] +16:28:18 [ 3] [ 6] [011000] +16:28:18 [ 4] [ 12] [000050000000] +16:28:18 [ 6] [ 12] [000050000000] +16:28:18 [ 7] [ 10] [0320162809] +16:28:18 [ 11] [ 6] [799394] +16:28:18 [ 12] [ 6] [162809] +16:28:18 [ 13] [ 4] [0320] +16:28:18 [ 18] [ 4] [6011] +16:28:18 [ 19] [ 3] [418] +16:28:18 [ 22] [ 3] [021] +16:28:18 [ 32] [ 6] [621354] +16:28:18 [ 35] [ 27] [1808931800005819=1803500314] +16:28:18 [ 37] [ 12] [507904635870] +16:28:18 [ 38] [ 6] [799394] +16:28:18 [ 39] [ 2] [51] +16:28:18 [ 41] [ 8] [17000800] +16:28:18 [ 49] [ 3] [418] +16:28:18 [ 52] [ 16] [98BE394402CFEE30] +16:28:18 ============================================================================ +16:28:18 Sending to : +16:28:18 ============================================================================ +16:28:18 + + +waiting on router queue for slot.... +16:28:19 ============================================================================ +16:28:19 Slot Id : <470> +16:28:19 Transaction Type : RESPONSE +16:28:19 Received From : +16:28:19 ============================================================================ +16:28:19 FNo. Len. Field Value +16:28:19 ============================================================================ +16:28:19 [ 1] [ 4] [0210] +16:28:19 [ 2] [ 16] [1808931800005819] +16:28:19 [ 3] [ 6] [011000] +16:28:19 [ 4] [ 12] [000050000000] +16:28:19 [ 6] [ 12] [000050000000] +16:28:19 [ 7] [ 10] [0320162809] +16:28:19 [ 11] [ 6] [799394] +16:28:19 [ 12] [ 6] [162809] +16:28:19 [ 13] [ 4] [0320] +16:28:19 [ 18] [ 4] [6011] +16:28:19 [ 19] [ 3] [418] +16:28:19 [ 22] [ 3] [021] +16:28:19 [ 32] [ 6] [621354] +16:28:19 [ 35] [ 27] [1808931800005819=1803500314] +16:28:19 [ 37] [ 12] [507904635870] +16:28:19 [ 38] [ 6] [799394] +16:28:19 [ 39] [ 2] [51] +16:28:19 [ 41] [ 8] [17000800] +16:28:19 [ 49] [ 3] [418] +16:28:19 [ 52] [ 16] [98BE394402CFEE30] +16:28:19 ============================================================================ +16:28:19 Calculate Source COMM Id = 0 +16:28:19 ============================================================================ +16:28:19 + + +waiting on router queue for slot.... +16:28:19 ============================================================================ +16:28:19 Slot Id : <484> +16:28:19 Transaction Type : REQUEST +16:28:19 Received From : +16:28:19 ============================================================================ +16:28:19 FNo. Len. Field Value +16:28:19 ============================================================================ +16:28:19 [ 1] [ 4] [0200] +16:28:19 [ 2] [ 16] [6213548000206167] +16:28:19 [ 3] [ 6] [011000] +16:28:19 [ 4] [ 12] [000040000000] +16:28:19 [ 7] [ 10] [0320092726] +16:28:19 [ 11] [ 6] [270443] +16:28:19 [ 12] [ 6] [162726] +16:28:19 [ 13] [ 4] [0320] +16:28:19 [ 14] [ 4] [1712] +16:28:19 [ 15] [ 4] [0320] +16:28:19 [ 18] [ 4] [6011] +16:28:19 [ 19] [ 3] [418] +16:28:19 [ 22] [ 3] [021] +16:28:19 [ 25] [ 2] [01] +16:28:19 [ 28] [ 9] [D00002000] +16:28:19 [ 32] [ 6] [180893] +16:28:19 [ 35] [ 32] [6213548000206167=171212010616875] +16:28:19 [ 37] [ 12] [507909270443] +16:28:19 [ 41] [ 8] [0522XYXH] +16:28:19 [ 42] [ 15] [999999 ] +16:28:19 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:28:19 [ 49] [ 3] [418] +16:28:19 [ 52] [ 16] [1856C8AF733EC1D6] +16:28:19 ============================================================================ +16:28:19 + + +waiting on router queue for slot.... +16:28:19 Sending to : +16:28:19 ============================================================================ +16:28:19 Sending to : +16:28:19 ============================================================================ +16:28:19 ============================================================================ +16:28:19 Slot Id : <484> +16:28:19 Transaction Type : REQUEST +16:28:19 Received From : +16:28:19 ============================================================================ +16:28:19 FNo. Len. Field Value +16:28:19 ============================================================================ +16:28:19 [ 1] [ 4] [0200] +16:28:19 [ 2] [ 16] [6213548000206167] +16:28:19 [ 3] [ 6] [011000] +16:28:19 [ 4] [ 12] [000040000000] +16:28:19 [ 7] [ 10] [0320092726] +16:28:19 [ 11] [ 6] [270443] +16:28:19 [ 12] [ 6] [162726] +16:28:19 [ 13] [ 4] [0320] +16:28:19 [ 14] [ 4] [1712] +16:28:19 [ 15] [ 4] [0320] +16:28:19 [ 18] [ 4] [6011] +16:28:19 [ 19] [ 3] [418] +16:28:19 [ 22] [ 3] [021] +16:28:19 [ 25] [ 2] [01] +16:28:19 [ 28] [ 9] [D00002000] +16:28:19 [ 32] [ 6] [180893] +16:28:19 [ 35] [ 32] [6213548000206167=171212010616875] +16:28:19 [ 37] [ 12] [507909270443] +16:28:19 [ 41] [ 8] [0522XYXH] +16:28:19 [ 42] [ 15] [999999 ] +16:28:19 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:28:19 [ 49] [ 3] [418] +16:28:19 [ 52] [ 16] [1856C8AF733EC1D6] +16:28:19 ============================================================================ +16:28:19 + + +waiting on router queue for slot.... +16:28:19 Sending to : +16:28:19 ============================================================================ +16:28:19 ============================================================================ +16:28:19 Slot Id : <484> +16:28:19 Transaction Type : REQUEST +16:28:19 Received From : +16:28:19 ============================================================================ +16:28:19 FNo. Len. Field Value +16:28:19 ============================================================================ +16:28:19 [ 1] [ 4] [0200] +16:28:19 [ 2] [ 16] [6213548000206167] +16:28:19 [ 3] [ 6] [011000] +16:28:19 [ 4] [ 12] [000040000000] +16:28:19 [ 7] [ 10] [0320092726] +16:28:19 [ 11] [ 6] [270443] +16:28:19 [ 12] [ 6] [162726] +16:28:19 [ 13] [ 4] [0320] +16:28:19 [ 14] [ 4] [1712] +16:28:19 [ 15] [ 4] [0320] +16:28:19 [ 18] [ 4] [6011] +16:28:19 [ 19] [ 3] [418] +16:28:19 [ 22] [ 3] [021] +16:28:19 [ 25] [ 2] [01] +16:28:19 [ 28] [ 9] [D00002000] +16:28:19 [ 32] [ 6] [180893] +16:28:19 [ 35] [ 32] [6213548000206167=171212010616875] +16:28:19 [ 37] [ 12] [507909270443] +16:28:19 [ 41] [ 8] [0522XYXH] +16:28:19 [ 42] [ 15] [999999 ] +16:28:19 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:28:19 [ 49] [ 3] [418] +16:28:19 [ 52] [ 16] [4401AF7A91023EB9] +16:28:19 ============================================================================ +16:28:19 + + +waiting on router queue for slot.... +16:28:19 Sending to : <0> +16:28:19 ============================================================================ +16:28:20 ============================================================================ +16:28:20 Slot Id : <484> +16:28:20 Transaction Type : RESPONSE +16:28:20 Received From : +16:28:20 ============================================================================ +16:28:20 FNo. Len. Field Value +16:28:20 ============================================================================ +16:28:20 [ 1] [ 4] [0210] +16:28:20 [ 2] [ 16] [6213548000206167] +16:28:20 [ 3] [ 6] [011000] +16:28:20 [ 4] [ 12] [000040000000] +16:28:20 [ 7] [ 10] [0320092726] +16:28:20 [ 11] [ 6] [270443] +16:28:20 [ 12] [ 6] [162726] +16:28:20 [ 13] [ 4] [0320] +16:28:20 [ 15] [ 4] [0320] +16:28:20 [ 18] [ 4] [6011] +16:28:20 [ 19] [ 3] [418] +16:28:20 [ 32] [ 6] [180893] +16:28:20 [ 35] [ 32] [6213548000206167=171212010616875] +16:28:20 [ 37] [ 12] [507909270443] +16:28:20 [ 38] [ 6] [085743] +16:28:20 [ 39] [ 2] [00] +16:28:20 [ 41] [ 8] [0522XYXH] +16:28:20 [ 49] [ 3] [418] +16:28:20 [ 54] [ 40] [1001418C0000132553801002418C000013255380] +16:28:20 ============================================================================ +16:28:20 Sending to : +16:28:20 ============================================================================ +16:28:20 + + +waiting on router queue for slot.... +16:28:21 ============================================================================ +16:28:21 Slot Id : <484> +16:28:21 Transaction Type : RESPONSE +16:28:21 Received From : +16:28:21 ============================================================================ +16:28:21 FNo. Len. Field Value +16:28:21 ============================================================================ +16:28:21 [ 1] [ 4] [0210] +16:28:21 [ 2] [ 16] [6213548000206167] +16:28:21 [ 3] [ 6] [011000] +16:28:21 [ 4] [ 12] [000040000000] +16:28:21 [ 7] [ 10] [0320092726] +16:28:21 [ 11] [ 6] [270443] +16:28:21 [ 12] [ 6] [162726] +16:28:21 [ 13] [ 4] [0320] +16:28:21 [ 15] [ 4] [0320] +16:28:21 [ 18] [ 4] [6011] +16:28:21 [ 19] [ 3] [418] +16:28:21 [ 32] [ 6] [180893] +16:28:21 [ 35] [ 32] [6213548000206167=171212010616875] +16:28:21 [ 37] [ 12] [507909270443] +16:28:21 [ 38] [ 6] [085743] +16:28:21 [ 39] [ 2] [00] +16:28:21 [ 41] [ 8] [0522XYXH] +16:28:21 [ 49] [ 3] [418] +16:28:21 [ 54] [ 40] [1001418C0000132553801002418C000013255380] +16:28:21 ============================================================================ +16:28:21 Calculate Source COMM Id = 2 +16:28:21 ============================================================================ +16:28:21 + + +waiting on router queue for slot.... +16:28:24 ============================================================================ +16:28:24 Slot Id : <463> +16:28:24 Transaction Type : REQUEST +16:28:24 Received From : +16:28:24 ============================================================================ +16:28:24 FNo. Len. Field Value +16:28:24 ============================================================================ +16:28:24 [ 1] [ 4] [0200] +16:28:24 [ 2] [ 16] [6688990103638704] +16:28:24 [ 3] [ 6] [010000] +16:28:24 [ 4] [ 12] [000100000000] +16:28:24 [ 7] [ 10] [0320162819] +16:28:24 [ 11] [ 6] [799434] +16:28:24 [ 12] [ 6] [162819] +16:28:24 [ 13] [ 4] [0320] +16:28:24 [ 15] [ 4] [0320] +16:28:24 [ 18] [ 4] [6011] +16:28:24 [ 22] [ 3] [900] +16:28:24 [ 25] [ 2] [02] +16:28:24 [ 28] [ 9] [D00002000] +16:28:24 [ 32] [ 6] [621354] +16:28:24 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:28:24 [ 37] [ 12] [507903743403] +16:28:24 [ 41] [ 8] [06002400] +16:28:24 [ 42] [ 15] [NATIVE ] +16:28:24 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:28:24 [ 49] [ 3] [418] +16:28:24 [ 52] [ 16] [170FE55C2E74E4F3] +16:28:24 ============================================================================ +16:28:24 + + +waiting on router queue for slot.... +16:28:24 Sending to : +16:28:24 ============================================================================ +16:28:24 Sending to : +16:28:24 ============================================================================ +16:28:24 ============================================================================ +16:28:24 Slot Id : <463> +16:28:24 Transaction Type : REQUEST +16:28:24 Received From : +16:28:24 ============================================================================ +16:28:24 FNo. Len. Field Value +16:28:24 ============================================================================ +16:28:24 [ 1] [ 4] [0200] +16:28:24 [ 2] [ 16] [6688990103638704] +16:28:24 [ 3] [ 6] [010000] +16:28:24 [ 4] [ 12] [000100000000] +16:28:24 [ 7] [ 10] [0320162819] +16:28:24 [ 11] [ 6] [799434] +16:28:24 [ 12] [ 6] [162819] +16:28:24 [ 13] [ 4] [0320] +16:28:24 [ 15] [ 4] [0320] +16:28:24 [ 18] [ 4] [6011] +16:28:24 [ 22] [ 3] [900] +16:28:24 [ 25] [ 2] [02] +16:28:24 [ 28] [ 9] [D00002000] +16:28:24 [ 32] [ 6] [621354] +16:28:24 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:28:24 [ 37] [ 12] [507903743403] +16:28:24 [ 41] [ 8] [06002400] +16:28:24 [ 42] [ 15] [NATIVE ] +16:28:24 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:28:24 [ 49] [ 3] [418] +16:28:24 [ 52] [ 16] [170FE55C2E74E4F3] +16:28:24 ============================================================================ +16:28:24 + + +waiting on router queue for slot.... +16:28:24 Sending to : +16:28:24 ============================================================================ +16:28:24 ============================================================================ +16:28:24 Slot Id : <463> +16:28:24 Transaction Type : REQUEST +16:28:24 Received From : +16:28:24 ============================================================================ +16:28:24 FNo. Len. Field Value +16:28:24 ============================================================================ +16:28:24 [ 1] [ 4] [0200] +16:28:24 [ 2] [ 16] [6688990103638704] +16:28:24 [ 3] [ 6] [010000] +16:28:24 [ 4] [ 12] [000100000000] +16:28:24 [ 7] [ 10] [0320162819] +16:28:24 [ 11] [ 6] [799434] +16:28:24 [ 12] [ 6] [162819] +16:28:24 [ 13] [ 4] [0320] +16:28:24 [ 15] [ 4] [0320] +16:28:24 [ 18] [ 4] [6011] +16:28:24 [ 22] [ 3] [900] +16:28:24 [ 25] [ 2] [02] +16:28:24 [ 28] [ 9] [D00002000] +16:28:24 [ 32] [ 6] [621354] +16:28:24 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:28:24 [ 37] [ 12] [507903743403] +16:28:24 [ 41] [ 8] [06002400] +16:28:24 [ 42] [ 15] [NATIVE ] +16:28:24 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:28:24 [ 49] [ 3] [418] +16:28:24 [ 52] [ 16] [CBE3DAD4CBB88304] +16:28:24 ============================================================================ +16:28:24 + + +waiting on router queue for slot.... +16:28:24 Sending to : <4> +16:28:24 ============================================================================ +16:28:26 ============================================================================ +16:28:26 Slot Id : <463> +16:28:26 Transaction Type : RESPONSE +16:28:26 Received From : +16:28:26 ============================================================================ +16:28:26 FNo. Len. Field Value +16:28:26 ============================================================================ +16:28:26 [ 1] [ 4] [0210] +16:28:26 [ 2] [ 16] [6688990103638704] +16:28:26 [ 3] [ 6] [010000] +16:28:26 [ 4] [ 12] [000100000000] +16:28:26 [ 11] [ 6] [799434] +16:28:26 [ 12] [ 6] [162819] +16:28:26 [ 15] [ 4] [0320] +16:28:26 [ 18] [ 4] [6011] +16:28:26 [ 32] [ 6] [621354] +16:28:26 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:28:26 [ 37] [ 12] [507903743403] +16:28:26 [ 38] [ 6] [918712] +16:28:26 [ 39] [ 2] [00] +16:28:26 [ 41] [ 8] [06002400] +16:28:26 [ 49] [ 3] [418] +16:28:26 [ 54] [ 20] [0002418C000139710863] +16:28:26 ============================================================================ +16:28:26 Sending to : +16:28:26 ============================================================================ +16:28:26 + + +waiting on router queue for slot.... +16:28:27 ============================================================================ +16:28:27 Slot Id : <463> +16:28:27 Transaction Type : RESPONSE +16:28:27 Received From : +16:28:27 ============================================================================ +16:28:27 FNo. Len. Field Value +16:28:27 ============================================================================ +16:28:27 [ 1] [ 4] [0210] +16:28:27 [ 2] [ 16] [6688990103638704] +16:28:27 [ 3] [ 6] [010000] +16:28:27 [ 4] [ 12] [000100000000] +16:28:27 [ 11] [ 6] [799434] +16:28:27 [ 12] [ 6] [162819] +16:28:27 [ 15] [ 4] [0320] +16:28:27 [ 18] [ 4] [6011] +16:28:27 [ 32] [ 6] [621354] +16:28:27 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:28:27 [ 37] [ 12] [507903743403] +16:28:27 [ 38] [ 6] [918712] +16:28:27 [ 39] [ 2] [00] +16:28:27 [ 41] [ 8] [06002400] +16:28:27 [ 49] [ 3] [418] +16:28:27 [ 54] [ 20] [0002418C000139710863] +16:28:27 ============================================================================ +16:28:27 Calculate Source COMM Id = 0 +16:28:27 ============================================================================ +16:28:27 + + +waiting on router queue for slot.... +16:28:30 ============================================================================ +16:28:30 Slot Id : <490> +16:28:30 Transaction Type : REQUEST +16:28:30 Received From : +16:28:30 ============================================================================ +16:28:30 FNo. Len. Field Value +16:28:30 ============================================================================ +16:28:30 [ 1] [ 4] [0200] +16:28:30 [ 2] [ 16] [6213543000092501] +16:28:30 [ 3] [ 6] [010000] +16:28:30 [ 4] [ 12] [000010000000] +16:28:30 [ 7] [ 10] [0320092737] +16:28:30 [ 11] [ 6] [270446] +16:28:30 [ 12] [ 6] [162737] +16:28:30 [ 13] [ 4] [0320] +16:28:30 [ 14] [ 4] [4912] +16:28:30 [ 15] [ 4] [0320] +16:28:30 [ 18] [ 4] [6011] +16:28:30 [ 19] [ 3] [418] +16:28:30 [ 22] [ 3] [021] +16:28:30 [ 25] [ 2] [01] +16:28:30 [ 28] [ 9] [D00002000] +16:28:30 [ 32] [ 6] [180893] +16:28:30 [ 35] [ 32] [6213543000092501=491212019250357] +16:28:30 [ 37] [ 12] [507909270446] +16:28:30 [ 41] [ 8] [0114XKBR] +16:28:30 [ 42] [ 15] [999999 ] +16:28:30 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +16:28:30 [ 49] [ 3] [418] +16:28:30 [ 52] [ 16] [0679BB9376BA4443] +16:28:30 ============================================================================ +16:28:30 + + +waiting on router queue for slot.... +16:28:30 Sending to : +16:28:30 ============================================================================ +16:28:30 Sending to : +16:28:30 ============================================================================ +16:28:31 ============================================================================ +16:28:31 Slot Id : <490> +16:28:31 Transaction Type : REQUEST +16:28:31 Received From : +16:28:31 ============================================================================ +16:28:31 FNo. Len. Field Value +16:28:31 ============================================================================ +16:28:31 [ 1] [ 4] [0200] +16:28:31 [ 2] [ 16] [6213543000092501] +16:28:31 [ 3] [ 6] [010000] +16:28:31 [ 4] [ 12] [000010000000] +16:28:31 [ 7] [ 10] [0320092737] +16:28:31 [ 11] [ 6] [270446] +16:28:31 [ 12] [ 6] [162737] +16:28:31 [ 13] [ 4] [0320] +16:28:31 [ 14] [ 4] [4912] +16:28:31 [ 15] [ 4] [0320] +16:28:31 [ 18] [ 4] [6011] +16:28:31 [ 19] [ 3] [418] +16:28:31 [ 22] [ 3] [021] +16:28:31 [ 25] [ 2] [01] +16:28:31 [ 28] [ 9] [D00002000] +16:28:31 [ 32] [ 6] [180893] +16:28:31 [ 35] [ 32] [6213543000092501=491212019250357] +16:28:31 [ 37] [ 12] [507909270446] +16:28:31 [ 41] [ 8] [0114XKBR] +16:28:31 [ 42] [ 15] [999999 ] +16:28:31 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +16:28:31 [ 49] [ 3] [418] +16:28:31 [ 52] [ 16] [0679BB9376BA4443] +16:28:31 ============================================================================ +16:28:31 + + +waiting on router queue for slot.... +16:28:31 Sending to : +16:28:31 ============================================================================ +16:28:31 ============================================================================ +16:28:31 Slot Id : <490> +16:28:31 Transaction Type : REQUEST +16:28:31 Received From : +16:28:31 ============================================================================ +16:28:31 FNo. Len. Field Value +16:28:31 ============================================================================ +16:28:31 [ 1] [ 4] [0200] +16:28:31 [ 2] [ 16] [6213543000092501] +16:28:31 [ 3] [ 6] [010000] +16:28:31 [ 4] [ 12] [000010000000] +16:28:31 [ 7] [ 10] [0320092737] +16:28:31 [ 11] [ 6] [270446] +16:28:31 [ 12] [ 6] [162737] +16:28:31 [ 13] [ 4] [0320] +16:28:31 [ 14] [ 4] [4912] +16:28:31 [ 15] [ 4] [0320] +16:28:31 [ 18] [ 4] [6011] +16:28:31 [ 19] [ 3] [418] +16:28:31 [ 22] [ 3] [021] +16:28:31 [ 25] [ 2] [01] +16:28:31 [ 28] [ 9] [D00002000] +16:28:31 [ 32] [ 6] [180893] +16:28:31 [ 35] [ 32] [6213543000092501=491212019250357] +16:28:31 [ 37] [ 12] [507909270446] +16:28:31 [ 41] [ 8] [0114XKBR] +16:28:31 [ 42] [ 15] [999999 ] +16:28:31 [ 43] [ 40] [ATM XIENGKHOUANG BRANCH LOCATION, Pek, L] +16:28:31 [ 49] [ 3] [418] +16:28:31 [ 52] [ 16] [0CAACE6582BF81EC] +16:28:31 ============================================================================ +16:28:31 + + +waiting on router queue for slot.... +16:28:31 Sending to : <0> +16:28:31 ============================================================================ +16:28:31 ============================================================================ +16:28:31 Slot Id : <480> +16:28:31 Transaction Type : REQUEST +16:28:31 Received From : +16:28:31 ============================================================================ +16:28:31 FNo. Len. Field Value +16:28:31 ============================================================================ +16:28:31 [ 1] [ 4] [0800] +16:28:31 [ 2] [ 5] [02531] +16:28:31 [ 3] [ 6] [579168] +16:28:31 [ 7] [ 10] [0320092831] +16:28:31 [ 11] [ 6] [807368] +16:28:31 [ 15] [ 10] [0320092831] +16:28:31 [ 37] [ 11] [57916807368] +16:28:31 [ 70] [ 3] [001] +16:28:31 ============================================================================ +16:28:31 + + +waiting on router queue for slot.... +16:28:31 ============================================================================ +16:28:31 Slot Id : <480> +16:28:31 Transaction Type : RESPONSE +16:28:31 Received From : +16:28:31 ============================================================================ +16:28:31 FNo. Len. Field Value +16:28:31 ============================================================================ +16:28:31 [ 1] [ 4] [0810] +16:28:31 [ 7] [ 10] [0320092831] +16:28:31 [ 11] [ 6] [807368] +16:28:31 [ 15] [ 4] [0320] +16:28:31 [ 37] [ 12] [57916807368] +16:28:31 [ 39] [ 2] [00] +16:28:31 [ 70] [ 3] [001] +16:28:31 ============================================================================ +16:28:31 Sending to : +16:28:31 ============================================================================ +16:28:31 + + +waiting on router queue for slot.... +16:28:31 ============================================================================ +16:28:31 Slot Id : <490> +16:28:31 Transaction Type : RESPONSE +16:28:31 Received From : +16:28:31 ============================================================================ +16:28:31 FNo. Len. Field Value +16:28:31 ============================================================================ +16:28:31 [ 1] [ 4] [0210] +16:28:31 [ 2] [ 16] [6213543000092501] +16:28:31 [ 3] [ 6] [010000] +16:28:31 [ 4] [ 12] [000010000000] +16:28:31 [ 7] [ 10] [0320092737] +16:28:31 [ 11] [ 6] [270446] +16:28:31 [ 12] [ 6] [162737] +16:28:31 [ 13] [ 4] [0320] +16:28:31 [ 15] [ 4] [0320] +16:28:31 [ 18] [ 4] [6011] +16:28:31 [ 19] [ 3] [418] +16:28:31 [ 32] [ 6] [180893] +16:28:31 [ 35] [ 32] [6213543000092501=491212019250357] +16:28:31 [ 37] [ 12] [507909270446] +16:28:31 [ 38] [ 6] [193405] +16:28:31 [ 39] [ 2] [00] +16:28:31 [ 41] [ 8] [0114XKBR] +16:28:31 [ 49] [ 3] [418] +16:28:31 [ 54] [ 40] [0001418C0000929208490002418C000092920849] +16:28:31 ============================================================================ +16:28:31 Sending to : +16:28:31 ============================================================================ +16:28:31 + + +waiting on router queue for slot.... +16:28:33 ============================================================================ +16:28:33 Slot Id : <490> +16:28:33 Transaction Type : RESPONSE +16:28:33 Received From : +16:28:33 ============================================================================ +16:28:33 FNo. Len. Field Value +16:28:33 ============================================================================ +16:28:33 [ 1] [ 4] [0210] +16:28:33 [ 2] [ 16] [6213543000092501] +16:28:33 [ 3] [ 6] [010000] +16:28:33 [ 4] [ 12] [000010000000] +16:28:33 [ 7] [ 10] [0320092737] +16:28:33 [ 11] [ 6] [270446] +16:28:33 [ 12] [ 6] [162737] +16:28:33 [ 13] [ 4] [0320] +16:28:33 [ 15] [ 4] [0320] +16:28:33 [ 18] [ 4] [6011] +16:28:33 [ 19] [ 3] [418] +16:28:33 [ 32] [ 6] [180893] +16:28:33 [ 35] [ 32] [6213543000092501=491212019250357] +16:28:33 [ 37] [ 12] [507909270446] +16:28:33 [ 38] [ 6] [193405] +16:28:33 [ 39] [ 2] [00] +16:28:33 [ 41] [ 8] [0114XKBR] +16:28:33 [ 49] [ 3] [418] +16:28:33 [ 54] [ 40] [0001418C0000929208490002418C000092920849] +16:28:33 ============================================================================ +16:28:33 Calculate Source COMM Id = 2 +16:28:33 ============================================================================ +16:28:33 + + +waiting on router queue for slot.... +16:28:35 ============================================================================ +16:28:35 Slot Id : <448> +16:28:35 Transaction Type : REQUEST +16:28:35 Received From : +16:28:35 ============================================================================ +16:28:35 FNo. Len. Field Value +16:28:35 ============================================================================ +16:28:35 [ 1] [ 4] [0200] +16:28:35 [ 2] [ 16] [6213544002113261] +16:28:35 [ 3] [ 6] [011000] +16:28:35 [ 4] [ 12] [000040000000] +16:28:35 [ 7] [ 10] [0320162856] +16:28:35 [ 11] [ 6] [208706] +16:28:35 [ 12] [ 6] [162402] +16:28:35 [ 13] [ 4] [0320] +16:28:35 [ 14] [ 4] [4912] +16:28:35 [ 15] [ 4] [0320] +16:28:35 [ 18] [ 4] [6011] +16:28:35 [ 19] [ 3] [418] +16:28:35 [ 22] [ 3] [021] +16:28:35 [ 25] [ 2] [01] +16:28:35 [ 28] [ 9] [D00002000] +16:28:35 [ 32] [ 6] [198901] +16:28:35 [ 35] [ 32] [6213544002113261=491212011326014] +16:28:35 [ 37] [ 12] [507916208706] +16:28:35 [ 41] [ 8] [19529001] +16:28:35 [ 42] [ 15] [000000041952901] +16:28:35 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:28:35 [ 49] [ 3] [418] +16:28:35 [ 52] [ 16] [CA608CFAD20C49A8] +16:28:35 ============================================================================ +16:28:35 + + +waiting on router queue for slot.... +16:28:35 Sending to : +16:28:35 ============================================================================ +16:28:35 Sending to : +16:28:35 ============================================================================ +16:28:36 ============================================================================ +16:28:36 Slot Id : <448> +16:28:36 Transaction Type : REQUEST +16:28:36 Received From : +16:28:36 ============================================================================ +16:28:36 FNo. Len. Field Value +16:28:36 ============================================================================ +16:28:36 [ 1] [ 4] [0200] +16:28:36 [ 2] [ 16] [6213544002113261] +16:28:36 [ 3] [ 6] [011000] +16:28:36 [ 4] [ 12] [000040000000] +16:28:36 [ 7] [ 10] [0320162856] +16:28:36 [ 11] [ 6] [208706] +16:28:36 [ 12] [ 6] [162402] +16:28:36 [ 13] [ 4] [0320] +16:28:36 [ 14] [ 4] [4912] +16:28:36 [ 15] [ 4] [0320] +16:28:36 [ 18] [ 4] [6011] +16:28:36 [ 19] [ 3] [418] +16:28:36 [ 22] [ 3] [021] +16:28:36 [ 25] [ 2] [01] +16:28:36 [ 28] [ 9] [D00002000] +16:28:36 [ 32] [ 6] [198901] +16:28:36 [ 35] [ 32] [6213544002113261=491212011326014] +16:28:36 [ 37] [ 12] [507916208706] +16:28:36 [ 41] [ 8] [19529001] +16:28:36 [ 42] [ 15] [000000041952901] +16:28:36 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:28:36 [ 49] [ 3] [418] +16:28:36 [ 52] [ 16] [CA608CFAD20C49A8] +16:28:36 ============================================================================ +16:28:36 + + +waiting on router queue for slot.... +16:28:36 Sending to : +16:28:36 ============================================================================ +16:28:36 ============================================================================ +16:28:36 Slot Id : <448> +16:28:36 Transaction Type : REQUEST +16:28:36 Received From : +16:28:36 ============================================================================ +16:28:36 FNo. Len. Field Value +16:28:36 ============================================================================ +16:28:36 [ 1] [ 4] [0200] +16:28:36 [ 2] [ 16] [6213544002113261] +16:28:36 [ 3] [ 6] [011000] +16:28:36 [ 4] [ 12] [000040000000] +16:28:36 [ 7] [ 10] [0320162856] +16:28:36 [ 11] [ 6] [208706] +16:28:36 [ 12] [ 6] [162402] +16:28:36 [ 13] [ 4] [0320] +16:28:36 [ 14] [ 4] [4912] +16:28:36 [ 15] [ 4] [0320] +16:28:36 [ 18] [ 4] [6011] +16:28:36 [ 19] [ 3] [418] +16:28:36 [ 22] [ 3] [021] +16:28:36 [ 25] [ 2] [01] +16:28:36 [ 28] [ 9] [D00002000] +16:28:36 [ 32] [ 6] [198901] +16:28:36 [ 35] [ 32] [6213544002113261=491212011326014] +16:28:36 [ 37] [ 12] [507916208706] +16:28:36 [ 41] [ 8] [19529001] +16:28:36 [ 42] [ 15] [000000041952901] +16:28:36 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:28:36 [ 49] [ 3] [418] +16:28:36 [ 52] [ 16] [81428C708FE08AB0] +16:28:36 ============================================================================ +16:28:36 + + +waiting on router queue for slot.... +16:28:36 Sending to : <0> +16:28:36 ============================================================================ +16:28:36 ============================================================================ +16:28:36 Slot Id : <448> +16:28:36 Transaction Type : RESPONSE +16:28:36 Received From : +16:28:36 ============================================================================ +16:28:36 FNo. Len. Field Value +16:28:36 ============================================================================ +16:28:36 [ 1] [ 4] [0210] +16:28:36 [ 2] [ 16] [6213544002113261] +16:28:36 [ 3] [ 6] [011000] +16:28:36 [ 4] [ 12] [000040000000] +16:28:36 [ 7] [ 10] [0320162856] +16:28:36 [ 11] [ 6] [208706] +16:28:36 [ 12] [ 6] [162402] +16:28:36 [ 13] [ 4] [0320] +16:28:36 [ 15] [ 4] [0320] +16:28:36 [ 18] [ 4] [6011] +16:28:36 [ 19] [ 3] [418] +16:28:36 [ 32] [ 6] [198901] +16:28:36 [ 35] [ 32] [6213544002113261=491212011326014] +16:28:36 [ 37] [ 12] [507916208706] +16:28:36 [ 38] [ 6] [209044] +16:28:36 [ 39] [ 2] [00] +16:28:36 [ 41] [ 8] [19529001] +16:28:36 [ 49] [ 3] [418] +16:28:36 [ 54] [ 40] [1001418C0000085804171002418C000008580417] +16:28:36 ============================================================================ +16:28:36 Sending to : +16:28:36 ============================================================================ +16:28:36 + + +waiting on router queue for slot.... +16:28:38 ============================================================================ +16:28:38 Slot Id : <448> +16:28:38 Transaction Type : RESPONSE +16:28:38 Received From : +16:28:38 ============================================================================ +16:28:38 FNo. Len. Field Value +16:28:38 ============================================================================ +16:28:38 [ 1] [ 4] [0210] +16:28:38 [ 2] [ 16] [6213544002113261] +16:28:38 [ 3] [ 6] [011000] +16:28:38 [ 4] [ 12] [000040000000] +16:28:38 [ 7] [ 10] [0320162856] +16:28:38 [ 11] [ 6] [208706] +16:28:38 [ 12] [ 6] [162402] +16:28:38 [ 13] [ 4] [0320] +16:28:38 [ 15] [ 4] [0320] +16:28:38 [ 18] [ 4] [6011] +16:28:38 [ 19] [ 3] [418] +16:28:38 [ 32] [ 6] [198901] +16:28:38 [ 35] [ 32] [6213544002113261=491212011326014] +16:28:38 [ 37] [ 12] [507916208706] +16:28:38 [ 38] [ 6] [209044] +16:28:38 [ 39] [ 2] [00] +16:28:38 [ 41] [ 8] [19529001] +16:28:38 [ 49] [ 3] [418] +16:28:38 [ 54] [ 40] [1001418C0000085804171002418C000008580417] +16:28:38 ============================================================================ +16:28:38 Calculate Source COMM Id = 5 +16:28:38 ============================================================================ +16:28:38 + + +waiting on router queue for slot.... +16:28:45 ============================================================================ +16:28:45 Slot Id : <0> +16:28:45 Transaction Type : REQUEST +16:28:45 Received From : +16:28:45 ============================================================================ +16:28:45 FNo. Len. Field Value +16:28:45 ============================================================================ +16:28:45 [ 1] [ 4] [0200] +16:28:45 [ 2] [ 16] [6213541000314255] +16:28:45 [ 3] [ 6] [010000] +16:28:45 [ 4] [ 12] [000100000000] +16:28:45 [ 7] [ 10] [0320092751] +16:28:45 [ 11] [ 6] [270450] +16:28:45 [ 12] [ 6] [162751] +16:28:45 [ 13] [ 4] [0320] +16:28:45 [ 14] [ 4] [4912] +16:28:45 [ 15] [ 4] [0320] +16:28:45 [ 18] [ 4] [6011] +16:28:45 [ 19] [ 3] [418] +16:28:45 [ 22] [ 3] [021] +16:28:45 [ 25] [ 2] [01] +16:28:45 [ 28] [ 9] [D00002000] +16:28:45 [ 32] [ 6] [180893] +16:28:45 [ 35] [ 32] [6213541000314255=491212011425008] +16:28:45 [ 37] [ 12] [507909270450] +16:28:45 [ 41] [ 8] [0482XKMO] +16:28:45 [ 42] [ 15] [999999 ] +16:28:45 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +16:28:45 [ 49] [ 3] [418] +16:28:45 [ 52] [ 16] [6C3EF849B61FB311] +16:28:45 ============================================================================ +16:28:45 + + +waiting on router queue for slot.... +16:28:45 Sending to : +16:28:45 ============================================================================ +16:28:45 Sending to : +16:28:45 ============================================================================ +16:28:45 ============================================================================ +16:28:45 Slot Id : <0> +16:28:45 Transaction Type : REQUEST +16:28:45 Received From : +16:28:45 ============================================================================ +16:28:45 FNo. Len. Field Value +16:28:45 ============================================================================ +16:28:45 [ 1] [ 4] [0200] +16:28:45 [ 2] [ 16] [6213541000314255] +16:28:45 [ 3] [ 6] [010000] +16:28:45 [ 4] [ 12] [000100000000] +16:28:45 [ 7] [ 10] [0320092751] +16:28:45 [ 11] [ 6] [270450] +16:28:45 [ 12] [ 6] [162751] +16:28:45 [ 13] [ 4] [0320] +16:28:45 [ 14] [ 4] [4912] +16:28:45 [ 15] [ 4] [0320] +16:28:45 [ 18] [ 4] [6011] +16:28:45 [ 19] [ 3] [418] +16:28:45 [ 22] [ 3] [021] +16:28:45 [ 25] [ 2] [01] +16:28:45 [ 28] [ 9] [D00002000] +16:28:45 [ 32] [ 6] [180893] +16:28:45 [ 35] [ 32] [6213541000314255=491212011425008] +16:28:45 [ 37] [ 12] [507909270450] +16:28:45 [ 41] [ 8] [0482XKMO] +16:28:45 [ 42] [ 15] [999999 ] +16:28:45 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +16:28:45 [ 49] [ 3] [418] +16:28:45 [ 52] [ 16] [6C3EF849B61FB311] +16:28:45 ============================================================================ +16:28:45 + + +waiting on router queue for slot.... +16:28:45 Sending to : +16:28:45 ============================================================================ +16:28:45 ============================================================================ +16:28:45 Slot Id : <0> +16:28:45 Transaction Type : REQUEST +16:28:45 Received From : +16:28:45 ============================================================================ +16:28:45 FNo. Len. Field Value +16:28:45 ============================================================================ +16:28:45 [ 1] [ 4] [0200] +16:28:45 [ 2] [ 16] [6213541000314255] +16:28:45 [ 3] [ 6] [010000] +16:28:45 [ 4] [ 12] [000100000000] +16:28:45 [ 7] [ 10] [0320092751] +16:28:45 [ 11] [ 6] [270450] +16:28:45 [ 12] [ 6] [162751] +16:28:45 [ 13] [ 4] [0320] +16:28:45 [ 14] [ 4] [4912] +16:28:45 [ 15] [ 4] [0320] +16:28:45 [ 18] [ 4] [6011] +16:28:45 [ 19] [ 3] [418] +16:28:45 [ 22] [ 3] [021] +16:28:45 [ 25] [ 2] [01] +16:28:45 [ 28] [ 9] [D00002000] +16:28:45 [ 32] [ 6] [180893] +16:28:45 [ 35] [ 32] [6213541000314255=491212011425008] +16:28:45 [ 37] [ 12] [507909270450] +16:28:45 [ 41] [ 8] [0482XKMO] +16:28:45 [ 42] [ 15] [999999 ] +16:28:45 [ 43] [ 40] [ATM MORK XIENGKHOANG PRO, Morkmay, Lao P] +16:28:45 [ 49] [ 3] [418] +16:28:45 [ 52] [ 16] [4D6E481CD412859B] +16:28:45 ============================================================================ +16:28:45 + + +waiting on router queue for slot.... +16:28:45 Sending to : <0> +16:28:45 ============================================================================ +16:28:46 ============================================================================ +16:28:46 Slot Id : <471> +16:28:46 Transaction Type : REQUEST +16:28:46 Received From : +16:28:46 ============================================================================ +16:28:46 FNo. Len. Field Value +16:28:46 ============================================================================ +16:28:46 [ 1] [ 4] [0800] +16:28:46 [ 7] [ 10] [0320092753] +16:28:46 [ 11] [ 6] [157242] +16:28:46 [ 70] [ 3] [301] +16:28:46 ============================================================================ +16:28:46 + + +waiting on router queue for slot.... +16:28:46 Sending to : +16:28:46 ============================================================================ +16:28:46 ============================================================================ +16:28:46 Slot Id : <471> +16:28:46 Transaction Type : RESPONSE +16:28:46 Received From : +16:28:46 ============================================================================ +16:28:46 FNo. Len. Field Value +16:28:46 ============================================================================ +16:28:46 [ 1] [ 4] [0810] +16:28:46 [ 7] [ 10] [0320092753] +16:28:46 [ 11] [ 6] [157242] +16:28:46 [ 39] [ 2] [00] +16:28:46 [ 70] [ 3] [301] +16:28:46 ============================================================================ +16:28:46 Calculate Source COMM Id = 2 +16:28:46 ============================================================================ +16:28:46 + + +waiting on router queue for slot.... +16:28:46 ============================================================================ +16:28:46 Slot Id : <0> +16:28:46 Transaction Type : RESPONSE +16:28:46 Received From : +16:28:46 ============================================================================ +16:28:46 FNo. Len. Field Value +16:28:46 ============================================================================ +16:28:46 [ 1] [ 4] [0210] +16:28:46 [ 2] [ 16] [6213541000314255] +16:28:46 [ 3] [ 6] [010000] +16:28:46 [ 4] [ 12] [000100000000] +16:28:46 [ 7] [ 10] [0320092751] +16:28:46 [ 11] [ 6] [270450] +16:28:46 [ 12] [ 6] [162751] +16:28:46 [ 13] [ 4] [0320] +16:28:46 [ 15] [ 4] [0320] +16:28:46 [ 18] [ 4] [6011] +16:28:46 [ 19] [ 3] [418] +16:28:46 [ 32] [ 6] [180893] +16:28:46 [ 35] [ 32] [6213541000314255=491212011425008] +16:28:46 [ 37] [ 12] [507909270450] +16:28:46 [ 38] [ 6] [498046] +16:28:46 [ 39] [ 2] [00] +16:28:46 [ 41] [ 8] [0482XKMO] +16:28:46 [ 49] [ 3] [418] +16:28:46 [ 54] [ 40] [0001418C0005233317210002418C000523331721] +16:28:46 ============================================================================ +16:28:46 Sending to : +16:28:46 ============================================================================ +16:28:46 + + +waiting on router queue for slot.... +16:28:47 ============================================================================ +16:28:47 Slot Id : <0> +16:28:47 Transaction Type : RESPONSE +16:28:47 Received From : +16:28:47 ============================================================================ +16:28:47 FNo. Len. Field Value +16:28:47 ============================================================================ +16:28:47 [ 1] [ 4] [0210] +16:28:47 [ 2] [ 16] [6213541000314255] +16:28:47 [ 3] [ 6] [010000] +16:28:47 [ 4] [ 12] [000100000000] +16:28:47 [ 7] [ 10] [0320092751] +16:28:47 [ 11] [ 6] [270450] +16:28:47 [ 12] [ 6] [162751] +16:28:47 [ 13] [ 4] [0320] +16:28:47 [ 15] [ 4] [0320] +16:28:47 [ 18] [ 4] [6011] +16:28:47 [ 19] [ 3] [418] +16:28:47 [ 32] [ 6] [180893] +16:28:47 [ 35] [ 32] [6213541000314255=491212011425008] +16:28:47 [ 37] [ 12] [507909270450] +16:28:47 [ 38] [ 6] [498046] +16:28:47 [ 39] [ 2] [00] +16:28:47 [ 41] [ 8] [0482XKMO] +16:28:47 [ 49] [ 3] [418] +16:28:47 [ 54] [ 40] [0001418C0005233317210002418C000523331721] +16:28:47 ============================================================================ +16:28:47 Calculate Source COMM Id = 2 +16:28:47 ============================================================================ +16:28:47 + + +waiting on router queue for slot.... +16:28:57 ============================================================================ +16:28:57 Slot Id : <479> +16:28:57 Transaction Type : REQUEST +16:28:57 Received From : +16:28:57 ============================================================================ +16:28:57 FNo. Len. Field Value +16:28:57 ============================================================================ +16:28:57 [ 1] [ 4] [0200] +16:28:57 [ 2] [ 16] [1808931800005819] +16:28:57 [ 3] [ 6] [300000] +16:28:57 [ 4] [ 12] [000000000000] +16:28:57 [ 7] [ 10] [0320162852] +16:28:57 [ 11] [ 6] [799588] +16:28:57 [ 12] [ 6] [162852] +16:28:57 [ 13] [ 4] [0320] +16:28:57 [ 15] [ 4] [0320] +16:28:57 [ 18] [ 4] [6011] +16:28:57 [ 22] [ 3] [900] +16:28:57 [ 25] [ 2] [02] +16:28:57 [ 28] [ 9] [D00000000] +16:28:57 [ 32] [ 6] [621354] +16:28:57 [ 35] [ 27] [1808931800005819=1803500314] +16:28:57 [ 37] [ 12] [507904635871] +16:28:57 [ 41] [ 8] [17000800] +16:28:57 [ 42] [ 15] [NATIVE ] +16:28:57 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:28:57 [ 49] [ 3] [418] +16:28:57 [ 52] [ 16] [FB005D378095F13B] +16:28:57 ============================================================================ +16:28:57 + + +waiting on router queue for slot.... +16:28:57 Sending to : +16:28:57 ============================================================================ +16:28:57 Sending to : +16:28:57 ============================================================================ +16:28:57 ============================================================================ +16:28:57 Slot Id : <479> +16:28:57 Transaction Type : REQUEST +16:28:57 Received From : +16:28:57 ============================================================================ +16:28:57 FNo. Len. Field Value +16:28:57 ============================================================================ +16:28:57 [ 1] [ 4] [0200] +16:28:57 [ 2] [ 16] [1808931800005819] +16:28:57 [ 3] [ 6] [300000] +16:28:57 [ 4] [ 12] [000000000000] +16:28:57 [ 7] [ 10] [0320162852] +16:28:57 [ 11] [ 6] [799588] +16:28:57 [ 12] [ 6] [162852] +16:28:57 [ 13] [ 4] [0320] +16:28:57 [ 15] [ 4] [0320] +16:28:57 [ 18] [ 4] [6011] +16:28:57 [ 22] [ 3] [900] +16:28:57 [ 25] [ 2] [02] +16:28:57 [ 28] [ 9] [D00000000] +16:28:57 [ 32] [ 6] [621354] +16:28:57 [ 35] [ 27] [1808931800005819=1803500314] +16:28:57 [ 37] [ 12] [507904635871] +16:28:57 [ 41] [ 8] [17000800] +16:28:57 [ 42] [ 15] [NATIVE ] +16:28:57 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:28:57 [ 49] [ 3] [418] +16:28:57 [ 52] [ 16] [FB005D378095F13B] +16:28:57 ============================================================================ +16:28:57 + + +waiting on router queue for slot.... +16:28:57 Sending to : +16:28:57 ============================================================================ +16:28:57 ============================================================================ +16:28:57 Slot Id : <479> +16:28:57 Transaction Type : REQUEST +16:28:57 Received From : +16:28:57 ============================================================================ +16:28:57 FNo. Len. Field Value +16:28:57 ============================================================================ +16:28:57 [ 1] [ 4] [0200] +16:28:57 [ 2] [ 16] [1808931800005819] +16:28:57 [ 3] [ 6] [300000] +16:28:57 [ 4] [ 12] [000000000000] +16:28:57 [ 7] [ 10] [0320162852] +16:28:57 [ 11] [ 6] [799588] +16:28:57 [ 12] [ 6] [162852] +16:28:57 [ 13] [ 4] [0320] +16:28:57 [ 15] [ 4] [0320] +16:28:57 [ 18] [ 4] [6011] +16:28:57 [ 22] [ 3] [900] +16:28:57 [ 25] [ 2] [02] +16:28:57 [ 28] [ 9] [D00000000] +16:28:57 [ 32] [ 6] [621354] +16:28:57 [ 35] [ 27] [1808931800005819=1803500314] +16:28:57 [ 37] [ 12] [507904635871] +16:28:57 [ 41] [ 8] [17000800] +16:28:57 [ 42] [ 15] [NATIVE ] +16:28:57 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:28:57 [ 49] [ 3] [418] +16:28:57 [ 52] [ 16] [98BE394402CFEE30] +16:28:57 ============================================================================ +16:28:57 + + +waiting on router queue for slot.... +16:28:57 Sending to : <2> +16:28:57 ============================================================================ +16:29:00 ============================================================================ +16:29:00 Slot Id : <493> +16:29:00 Transaction Type : REQUEST +16:29:00 Received From : +16:29:00 ============================================================================ +16:29:00 FNo. Len. Field Value +16:29:00 ============================================================================ +16:29:00 [ 1] [ 4] [0800] +16:29:00 [ 7] [ 10] [0320234047] +16:29:00 [ 11] [ 6] [164047] +16:29:00 [ 37] [ 12] [57916164047] +16:29:00 [ 70] [ 3] [301] +16:29:00 ============================================================================ +16:29:00 + + +waiting on router queue for slot.... +16:29:00 Sending to : +16:29:00 ============================================================================ +16:29:00 ============================================================================ +16:29:00 Slot Id : <493> +16:29:00 Transaction Type : RESPONSE +16:29:00 Received From : +16:29:00 ============================================================================ +16:29:00 FNo. Len. Field Value +16:29:00 ============================================================================ +16:29:00 [ 1] [ 4] [0810] +16:29:00 [ 7] [ 10] [0320234047] +16:29:00 [ 11] [ 6] [164047] +16:29:00 [ 37] [ 12] [579161640470] +16:29:00 [ 39] [ 2] [00] +16:29:00 [ 70] [ 3] [810] +16:29:00 ============================================================================ +16:29:00 Calculate Source COMM Id = 6 +16:29:00 ============================================================================ +16:29:00 + + +waiting on router queue for slot.... +16:29:00 ============================================================================ +16:29:00 Slot Id : <2> +16:29:00 Transaction Type : REQUEST +16:29:00 Received From : +16:29:00 ============================================================================ +16:29:00 FNo. Len. Field Value +16:29:00 ============================================================================ +16:29:00 [ 1] [ 4] [0200] +16:29:00 [ 2] [ 16] [6688990108429802] +16:29:00 [ 3] [ 6] [300000] +16:29:00 [ 4] [ 12] [000000000000] +16:29:00 [ 7] [ 10] [0320162855] +16:29:00 [ 11] [ 6] [799612] +16:29:00 [ 12] [ 6] [162855] +16:29:00 [ 13] [ 4] [0320] +16:29:00 [ 15] [ 4] [0320] +16:29:00 [ 18] [ 4] [6011] +16:29:00 [ 22] [ 3] [900] +16:29:00 [ 25] [ 2] [02] +16:29:00 [ 28] [ 9] [D00000000] +16:29:00 [ 32] [ 6] [621354] +16:29:00 [ 35] [ 37] [6688990108429802=44061231980294600000] +16:29:00 [ 37] [ 12] [507903499597] +16:29:00 [ 41] [ 8] [06002200] +16:29:00 [ 42] [ 15] [NATIVE ] +16:29:00 [ 43] [ 40] [Beng Market Beng LAO] +16:29:00 [ 49] [ 3] [418] +16:29:00 [ 52] [ 16] [86EB7FFBAE4A3F4A] +16:29:00 ============================================================================ +16:29:00 + + +waiting on router queue for slot.... +16:29:00 Sending to : +16:29:00 ============================================================================ +16:29:00 Sending to : +16:29:00 ============================================================================ +16:29:00 ============================================================================ +16:29:00 Slot Id : <2> +16:29:00 Transaction Type : REQUEST +16:29:00 Received From : +16:29:00 ============================================================================ +16:29:00 FNo. Len. Field Value +16:29:00 ============================================================================ +16:29:00 [ 1] [ 4] [0200] +16:29:00 [ 2] [ 16] [6688990108429802] +16:29:00 [ 3] [ 6] [300000] +16:29:00 [ 4] [ 12] [000000000000] +16:29:00 [ 7] [ 10] [0320162855] +16:29:00 [ 11] [ 6] [799612] +16:29:00 [ 12] [ 6] [162855] +16:29:00 [ 13] [ 4] [0320] +16:29:00 [ 15] [ 4] [0320] +16:29:00 [ 18] [ 4] [6011] +16:29:00 [ 22] [ 3] [900] +16:29:00 [ 25] [ 2] [02] +16:29:00 [ 28] [ 9] [D00000000] +16:29:00 [ 32] [ 6] [621354] +16:29:00 [ 35] [ 37] [6688990108429802=44061231980294600000] +16:29:00 [ 37] [ 12] [507903499597] +16:29:00 [ 41] [ 8] [06002200] +16:29:00 [ 42] [ 15] [NATIVE ] +16:29:00 [ 43] [ 40] [Beng Market Beng LAO] +16:29:00 [ 49] [ 3] [418] +16:29:00 [ 52] [ 16] [86EB7FFBAE4A3F4A] +16:29:00 ============================================================================ +16:29:00 + + +waiting on router queue for slot.... +16:29:00 Sending to : +16:29:00 ============================================================================ +16:29:00 ============================================================================ +16:29:00 Slot Id : <2> +16:29:00 Transaction Type : REQUEST +16:29:00 Received From : +16:29:00 ============================================================================ +16:29:00 FNo. Len. Field Value +16:29:00 ============================================================================ +16:29:00 [ 1] [ 4] [0200] +16:29:00 [ 2] [ 16] [6688990108429802] +16:29:00 [ 3] [ 6] [300000] +16:29:00 [ 4] [ 12] [000000000000] +16:29:00 [ 7] [ 10] [0320162855] +16:29:00 [ 11] [ 6] [799612] +16:29:00 [ 12] [ 6] [162855] +16:29:00 [ 13] [ 4] [0320] +16:29:00 [ 15] [ 4] [0320] +16:29:00 [ 18] [ 4] [6011] +16:29:00 [ 22] [ 3] [900] +16:29:00 [ 25] [ 2] [02] +16:29:00 [ 28] [ 9] [D00000000] +16:29:00 [ 32] [ 6] [621354] +16:29:00 [ 35] [ 37] [6688990108429802=44061231980294600000] +16:29:00 [ 37] [ 12] [507903499597] +16:29:00 [ 41] [ 8] [06002200] +16:29:00 [ 42] [ 15] [NATIVE ] +16:29:00 [ 43] [ 40] [Beng Market Beng LAO] +16:29:00 [ 49] [ 3] [418] +16:29:00 [ 52] [ 16] [496F9B4BE71B7C14] +16:29:00 ============================================================================ +16:29:00 + + +waiting on router queue for slot.... +16:29:00 Sending to : <4> +16:29:00 ============================================================================ +16:29:01 ============================================================================ +16:29:01 Slot Id : <4> +16:29:01 Transaction Type : REQUEST +16:29:01 Received From : +16:29:01 ============================================================================ +16:29:01 FNo. Len. Field Value +16:29:01 ============================================================================ +16:29:01 [ 1] [ 4] [0200] +16:29:01 [ 2] [ 16] [6688990050006624] +16:29:01 [ 3] [ 6] [011000] +16:29:01 [ 4] [ 12] [000030000000] +16:29:01 [ 7] [ 10] [0320162856] +16:29:01 [ 11] [ 6] [799616] +16:29:01 [ 12] [ 6] [162856] +16:29:01 [ 13] [ 4] [0320] +16:29:01 [ 15] [ 4] [0320] +16:29:01 [ 18] [ 4] [6011] +16:29:01 [ 22] [ 3] [900] +16:29:01 [ 25] [ 2] [02] +16:29:01 [ 28] [ 9] [D00002000] +16:29:01 [ 32] [ 6] [621354] +16:29:01 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:29:01 [ 37] [ 12] [507904719787] +16:29:01 [ 41] [ 8] [18001000] +16:29:01 [ 42] [ 15] [NATIVE ] +16:29:01 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:29:01 [ 49] [ 3] [418] +16:29:01 [ 52] [ 16] [98168DAF2928C677] +16:29:01 ============================================================================ +16:29:01 + + +waiting on router queue for slot.... +16:29:01 Sending to : +16:29:01 ============================================================================ +16:29:01 Sending to : +16:29:01 ============================================================================ +16:29:01 ============================================================================ +16:29:01 Slot Id : <479> +16:29:01 Transaction Type : RESPONSE +16:29:01 Received From : +16:29:01 ============================================================================ +16:29:01 FNo. Len. Field Value +16:29:01 ============================================================================ +16:29:01 [ 1] [ 4] [0210] +16:29:01 [ 2] [ 16] [1808931800005819] +16:29:01 [ 3] [ 6] [300000] +16:29:01 [ 7] [ 10] [0320162852] +16:29:01 [ 11] [ 6] [799588] +16:29:01 [ 12] [ 6] [162852] +16:29:01 [ 13] [ 4] [0320] +16:29:01 [ 14] [ 4] [1803] +16:29:01 [ 19] [ 3] [418] +16:29:01 [ 32] [ 6] [621354] +16:29:01 [ 37] [ 12] [507904635871] +16:29:01 [ 38] [ 6] [799588] +16:29:01 [ 39] [ 2] [00] +16:29:01 [ 41] [ 8] [17000800] +16:29:01 [ 49] [ 3] [418] +16:29:01 [ 52] [ 16] [98BE394402CFEE30] +16:29:01 [ 54] [ 20] [0002418C000041458900] +16:29:01 ============================================================================ +16:29:01 Sending to : +16:29:01 ============================================================================ +16:29:01 + + +waiting on router queue for slot.... +16:29:01 ============================================================================ +16:29:01 Slot Id : <2> +16:29:01 Transaction Type : RESPONSE +16:29:01 Received From : +16:29:01 ============================================================================ +16:29:01 FNo. Len. Field Value +16:29:01 ============================================================================ +16:29:01 [ 1] [ 4] [0210] +16:29:01 [ 2] [ 16] [6688990108429802] +16:29:01 [ 3] [ 6] [300000] +16:29:01 [ 4] [ 12] [000000000000] +16:29:01 [ 11] [ 6] [799612] +16:29:01 [ 12] [ 6] [162855] +16:29:01 [ 15] [ 4] [0320] +16:29:01 [ 18] [ 4] [6011] +16:29:01 [ 32] [ 6] [621354] +16:29:01 [ 35] [ 37] [6688990108429802=44061231980294600000] +16:29:01 [ 37] [ 12] [507903499597] +16:29:01 [ 38] [ 6] [419148] +16:29:01 [ 39] [ 2] [00] +16:29:01 [ 41] [ 8] [06002200] +16:29:01 [ 49] [ 3] [418] +16:29:01 [ 54] [ 20] [0002418C000130460630] +16:29:01 ============================================================================ +16:29:01 Sending to : +16:29:01 ============================================================================ +16:29:01 + + +waiting on router queue for slot.... +16:29:01 ============================================================================ +16:29:01 Slot Id : <4> +16:29:01 Transaction Type : REQUEST +16:29:01 Received From : +16:29:01 ============================================================================ +16:29:01 FNo. Len. Field Value +16:29:01 ============================================================================ +16:29:01 [ 1] [ 4] [0200] +16:29:01 [ 2] [ 16] [6688990050006624] +16:29:01 [ 3] [ 6] [011000] +16:29:01 [ 4] [ 12] [000030000000] +16:29:01 [ 7] [ 10] [0320162856] +16:29:01 [ 11] [ 6] [799616] +16:29:01 [ 12] [ 6] [162856] +16:29:01 [ 13] [ 4] [0320] +16:29:01 [ 15] [ 4] [0320] +16:29:01 [ 18] [ 4] [6011] +16:29:01 [ 22] [ 3] [900] +16:29:01 [ 25] [ 2] [02] +16:29:01 [ 28] [ 9] [D00002000] +16:29:01 [ 32] [ 6] [621354] +16:29:01 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:29:01 [ 37] [ 12] [507904719787] +16:29:01 [ 41] [ 8] [18001000] +16:29:01 [ 42] [ 15] [NATIVE ] +16:29:01 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:29:01 [ 49] [ 3] [418] +16:29:01 [ 52] [ 16] [98168DAF2928C677] +16:29:01 ============================================================================ +16:29:01 + + +waiting on router queue for slot.... +16:29:01 Sending to : +16:29:01 ============================================================================ +16:29:01 ============================================================================ +16:29:01 Slot Id : <4> +16:29:01 Transaction Type : REQUEST +16:29:01 Received From : +16:29:01 ============================================================================ +16:29:01 FNo. Len. Field Value +16:29:01 ============================================================================ +16:29:01 [ 1] [ 4] [0200] +16:29:01 [ 2] [ 16] [6688990050006624] +16:29:01 [ 3] [ 6] [011000] +16:29:01 [ 4] [ 12] [000030000000] +16:29:01 [ 7] [ 10] [0320162856] +16:29:01 [ 11] [ 6] [799616] +16:29:01 [ 12] [ 6] [162856] +16:29:01 [ 13] [ 4] [0320] +16:29:01 [ 15] [ 4] [0320] +16:29:01 [ 18] [ 4] [6011] +16:29:01 [ 22] [ 3] [900] +16:29:01 [ 25] [ 2] [02] +16:29:01 [ 28] [ 9] [D00002000] +16:29:01 [ 32] [ 6] [621354] +16:29:01 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:29:01 [ 37] [ 12] [507904719787] +16:29:01 [ 41] [ 8] [18001000] +16:29:01 [ 42] [ 15] [NATIVE ] +16:29:01 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:29:01 [ 49] [ 3] [418] +16:29:01 [ 52] [ 16] [BC7CC3791A0927C1] +16:29:01 ============================================================================ +16:29:01 + + +waiting on router queue for slot.... +16:29:01 Sending to : <4> +16:29:01 ============================================================================ +16:29:02 ============================================================================ +16:29:02 Slot Id : <4> +16:29:02 Transaction Type : RESPONSE +16:29:02 Received From : +16:29:02 ============================================================================ +16:29:02 FNo. Len. Field Value +16:29:02 ============================================================================ +16:29:02 [ 1] [ 4] [0210] +16:29:02 [ 2] [ 16] [6688990050006624] +16:29:02 [ 3] [ 6] [011000] +16:29:02 [ 4] [ 12] [000030000000] +16:29:02 [ 11] [ 6] [799616] +16:29:02 [ 12] [ 6] [162856] +16:29:02 [ 15] [ 4] [0320] +16:29:02 [ 18] [ 4] [6011] +16:29:02 [ 32] [ 6] [621354] +16:29:02 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:29:02 [ 37] [ 12] [507904719787] +16:29:02 [ 38] [ 6] [481774] +16:29:02 [ 39] [ 2] [00] +16:29:02 [ 41] [ 8] [18001000] +16:29:02 [ 49] [ 3] [418] +16:29:02 [ 54] [ 20] [1002418C000007216176] +16:29:02 ============================================================================ +16:29:02 Sending to : +16:29:02 ============================================================================ +16:29:02 + + +waiting on router queue for slot.... +16:29:02 ============================================================================ +16:29:02 Slot Id : <479> +16:29:02 Transaction Type : RESPONSE +16:29:02 Received From : +16:29:02 ============================================================================ +16:29:02 FNo. Len. Field Value +16:29:02 ============================================================================ +16:29:02 [ 1] [ 4] [0210] +16:29:02 [ 2] [ 16] [1808931800005819] +16:29:02 [ 3] [ 6] [300000] +16:29:02 [ 7] [ 10] [0320162852] +16:29:02 [ 11] [ 6] [799588] +16:29:02 [ 12] [ 6] [162852] +16:29:02 [ 13] [ 4] [0320] +16:29:02 [ 14] [ 4] [1803] +16:29:02 [ 19] [ 3] [418] +16:29:02 [ 32] [ 6] [621354] +16:29:02 [ 37] [ 12] [507904635871] +16:29:02 [ 38] [ 6] [799588] +16:29:02 [ 39] [ 2] [00] +16:29:02 [ 41] [ 8] [17000800] +16:29:02 [ 49] [ 3] [418] +16:29:02 [ 52] [ 16] [98BE394402CFEE30] +16:29:02 [ 54] [ 20] [0002418C000041458900] +16:29:02 ============================================================================ +16:29:02 Calculate Source COMM Id = 0 +16:29:02 ============================================================================ +16:29:02 + + +waiting on router queue for slot.... +16:29:04 ============================================================================ +16:29:04 Slot Id : <4> +16:29:04 Transaction Type : RESPONSE +16:29:04 Received From : +16:29:04 ============================================================================ +16:29:04 FNo. Len. Field Value +16:29:04 ============================================================================ +16:29:04 [ 1] [ 4] [0210] +16:29:04 [ 2] [ 16] [6688990050006624] +16:29:04 [ 3] [ 6] [011000] +16:29:04 [ 4] [ 12] [000030000000] +16:29:04 [ 11] [ 6] [799616] +16:29:04 [ 12] [ 6] [162856] +16:29:04 [ 15] [ 4] [0320] +16:29:04 [ 18] [ 4] [6011] +16:29:04 [ 32] [ 6] [621354] +16:29:04 [ 35] [ 37] [6688990050006624=97111261422742400000] +16:29:04 [ 37] [ 12] [507904719787] +16:29:04 [ 38] [ 6] [481774] +16:29:04 [ 39] [ 2] [00] +16:29:04 [ 41] [ 8] [18001000] +16:29:04 [ 49] [ 3] [418] +16:29:04 [ 54] [ 20] [1002418C000007216176] +16:29:04 ============================================================================ +16:29:04 Calculate Source COMM Id = 0 +16:29:04 ============================================================================ +16:29:04 + + +waiting on router queue for slot.... +16:29:05 ============================================================================ +16:29:05 Slot Id : <1> +16:29:05 Transaction Type : REQUEST +16:29:05 Received From : +16:29:05 ============================================================================ +16:29:05 FNo. Len. Field Value +16:29:05 ============================================================================ +16:29:05 [ 1] [ 4] [0200] +16:29:05 [ 2] [ 16] [6213544002210885] +16:29:05 [ 3] [ 6] [010000] +16:29:05 [ 4] [ 12] [000020000000] +16:29:05 [ 7] [ 10] [0320162655] +16:29:05 [ 11] [ 6] [951741] +16:29:05 [ 12] [ 6] [162655] +16:29:05 [ 13] [ 4] [0320] +16:29:05 [ 15] [ 4] [0320] +16:29:05 [ 18] [ 4] [6011] +16:29:05 [ 19] [ 3] [418] +16:29:05 [ 22] [ 3] [021] +16:29:05 [ 25] [ 2] [01] +16:29:05 [ 28] [ 9] [D00002000] +16:29:05 [ 32] [ 6] [668899] +16:29:05 [ 35] [ 32] [6213544002210885=491212011088037] +16:29:05 [ 37] [ 12] [507902415463] +16:29:05 [ 41] [ 8] [03001011] +16:29:05 [ 42] [ 15] [APT ] +16:29:05 [ 43] [ 40] [ NONGNEOW UNIT NONGNEOW ] +16:29:05 [ 49] [ 3] [418] +16:29:05 [ 52] [ 16] [54425847F072E7EF] +16:29:05 ============================================================================ +16:29:05 + + +waiting on router queue for slot.... +16:29:05 Sending to : +16:29:05 ============================================================================ +16:29:05 Sending to : +16:29:05 ============================================================================ +16:29:05 ============================================================================ +16:29:05 Slot Id : <1> +16:29:05 Transaction Type : REQUEST +16:29:05 Received From : +16:29:05 ============================================================================ +16:29:05 FNo. Len. Field Value +16:29:05 ============================================================================ +16:29:05 [ 1] [ 4] [0200] +16:29:05 [ 2] [ 16] [6213544002210885] +16:29:05 [ 3] [ 6] [010000] +16:29:05 [ 4] [ 12] [000020000000] +16:29:05 [ 7] [ 10] [0320162655] +16:29:05 [ 11] [ 6] [951741] +16:29:05 [ 12] [ 6] [162655] +16:29:05 [ 13] [ 4] [0320] +16:29:05 [ 15] [ 4] [0320] +16:29:05 [ 18] [ 4] [6011] +16:29:05 [ 19] [ 3] [418] +16:29:05 [ 22] [ 3] [021] +16:29:05 [ 25] [ 2] [01] +16:29:05 [ 28] [ 9] [D00002000] +16:29:05 [ 32] [ 6] [668899] +16:29:05 [ 35] [ 32] [6213544002210885=491212011088037] +16:29:05 [ 37] [ 12] [507902415463] +16:29:05 [ 41] [ 8] [03001011] +16:29:05 [ 42] [ 15] [APT ] +16:29:05 [ 43] [ 40] [ NONGNEOW UNIT NONGNEOW ] +16:29:05 [ 49] [ 3] [418] +16:29:05 [ 52] [ 16] [54425847F072E7EF] +16:29:05 ============================================================================ +16:29:05 + + +waiting on router queue for slot.... +16:29:05 Sending to : +16:29:05 ============================================================================ +16:29:05 ============================================================================ +16:29:05 Slot Id : <1> +16:29:05 Transaction Type : REQUEST +16:29:05 Received From : +16:29:05 ============================================================================ +16:29:05 FNo. Len. Field Value +16:29:05 ============================================================================ +16:29:05 [ 1] [ 4] [0200] +16:29:05 [ 2] [ 16] [6213544002210885] +16:29:05 [ 3] [ 6] [010000] +16:29:05 [ 4] [ 12] [000020000000] +16:29:05 [ 7] [ 10] [0320162655] +16:29:05 [ 11] [ 6] [951741] +16:29:05 [ 12] [ 6] [162655] +16:29:05 [ 13] [ 4] [0320] +16:29:05 [ 15] [ 4] [0320] +16:29:05 [ 18] [ 4] [6011] +16:29:05 [ 19] [ 3] [418] +16:29:05 [ 22] [ 3] [021] +16:29:05 [ 25] [ 2] [01] +16:29:05 [ 28] [ 9] [D00002000] +16:29:05 [ 32] [ 6] [668899] +16:29:05 [ 35] [ 32] [6213544002210885=491212011088037] +16:29:05 [ 37] [ 12] [507902415463] +16:29:05 [ 41] [ 8] [03001011] +16:29:05 [ 42] [ 15] [APT ] +16:29:05 [ 43] [ 40] [ NONGNEOW UNIT NONGNEOW ] +16:29:05 [ 49] [ 3] [418] +16:29:05 [ 52] [ 16] [02E3CC40D616C139] +16:29:05 ============================================================================ +16:29:05 + + +waiting on router queue for slot.... +16:29:05 Sending to : <0> +16:29:05 ============================================================================ +16:29:06 ============================================================================ +16:29:06 Slot Id : <1> +16:29:06 Transaction Type : RESPONSE +16:29:06 Received From : +16:29:06 ============================================================================ +16:29:06 FNo. Len. Field Value +16:29:06 ============================================================================ +16:29:06 [ 1] [ 4] [0210] +16:29:06 [ 2] [ 16] [6213544002210885] +16:29:06 [ 3] [ 6] [010000] +16:29:06 [ 4] [ 12] [000020000000] +16:29:06 [ 7] [ 10] [0320162655] +16:29:06 [ 11] [ 6] [951741] +16:29:06 [ 12] [ 6] [162655] +16:29:06 [ 13] [ 4] [0320] +16:29:06 [ 15] [ 4] [0320] +16:29:06 [ 18] [ 4] [6011] +16:29:06 [ 19] [ 3] [418] +16:29:06 [ 32] [ 6] [668899] +16:29:06 [ 35] [ 32] [6213544002210885=491212011088037] +16:29:06 [ 37] [ 12] [507902415463] +16:29:06 [ 38] [ 6] [599020] +16:29:06 [ 39] [ 2] [00] +16:29:06 [ 41] [ 8] [03001011] +16:29:06 [ 49] [ 3] [418] +16:29:06 [ 54] [ 40] [0001418C0003493000000002418C000349300000] +16:29:06 ============================================================================ +16:29:06 Sending to : +16:29:06 ============================================================================ +16:29:06 + + +waiting on router queue for slot.... +16:29:06 ============================================================================ +16:29:06 Slot Id : <2> +16:29:06 Transaction Type : RESPONSE +16:29:06 Received From : +16:29:06 ============================================================================ +16:29:06 FNo. Len. Field Value +16:29:06 ============================================================================ +16:29:06 [ 1] [ 4] [0210] +16:29:06 [ 2] [ 16] [6688990108429802] +16:29:06 [ 3] [ 6] [300000] +16:29:06 [ 4] [ 12] [000000000000] +16:29:06 [ 11] [ 6] [799612] +16:29:06 [ 12] [ 6] [162855] +16:29:06 [ 15] [ 4] [0320] +16:29:06 [ 18] [ 4] [6011] +16:29:06 [ 32] [ 6] [621354] +16:29:06 [ 35] [ 37] [6688990108429802=44061231980294600000] +16:29:06 [ 37] [ 12] [507903499597] +16:29:06 [ 38] [ 6] [419148] +16:29:06 [ 39] [ 2] [00] +16:29:06 [ 41] [ 8] [06002200] +16:29:06 [ 49] [ 3] [418] +16:29:06 [ 54] [ 20] [0002418C000130460630] +16:29:06 ============================================================================ +16:29:06 Calculate Source COMM Id = 0 +16:29:06 ============================================================================ +16:29:06 + + +waiting on router queue for slot.... +16:29:08 ============================================================================ +16:29:08 Slot Id : <1> +16:29:08 Transaction Type : RESPONSE +16:29:08 Received From : +16:29:08 ============================================================================ +16:29:08 FNo. Len. Field Value +16:29:08 ============================================================================ +16:29:08 [ 1] [ 4] [0210] +16:29:08 [ 2] [ 16] [6213544002210885] +16:29:08 [ 3] [ 6] [010000] +16:29:08 [ 4] [ 12] [000020000000] +16:29:08 [ 7] [ 10] [0320162655] +16:29:08 [ 11] [ 6] [951741] +16:29:08 [ 12] [ 6] [162655] +16:29:08 [ 13] [ 4] [0320] +16:29:08 [ 15] [ 4] [0320] +16:29:08 [ 18] [ 4] [6011] +16:29:08 [ 19] [ 3] [418] +16:29:08 [ 32] [ 6] [668899] +16:29:08 [ 35] [ 32] [6213544002210885=491212011088037] +16:29:08 [ 37] [ 12] [507902415463] +16:29:08 [ 38] [ 6] [599020] +16:29:08 [ 39] [ 2] [00] +16:29:08 [ 41] [ 8] [03001011] +16:29:08 [ 49] [ 3] [418] +16:29:08 [ 54] [ 40] [0001418C0003493000000002418C000349300000] +16:29:08 ============================================================================ +16:29:08 Calculate Source COMM Id = 4 +16:29:08 ============================================================================ +16:29:08 + + +waiting on router queue for slot.... +16:29:08 ============================================================================ +16:29:08 Slot Id : <498> +16:29:08 Transaction Type : REQUEST +16:29:08 Received From : +16:29:08 ============================================================================ +16:29:08 FNo. Len. Field Value +16:29:08 ============================================================================ +16:29:08 [ 1] [ 4] [0200] +16:29:08 [ 2] [ 16] [1808930800007049] +16:29:08 [ 3] [ 6] [302000] +16:29:08 [ 4] [ 12] [000000000000] +16:29:08 [ 7] [ 10] [0320162903] +16:29:08 [ 11] [ 6] [799639] +16:29:08 [ 12] [ 6] [162903] +16:29:08 [ 13] [ 4] [0320] +16:29:08 [ 15] [ 4] [0320] +16:29:08 [ 18] [ 4] [6011] +16:29:08 [ 22] [ 3] [900] +16:29:08 [ 25] [ 2] [02] +16:29:08 [ 28] [ 9] [D00000000] +16:29:08 [ 32] [ 6] [621354] +16:29:08 [ 35] [ 27] [1808930800007049=1803500912] +16:29:08 [ 37] [ 12] [507903278924] +16:29:08 [ 41] [ 8] [12002700] +16:29:08 [ 42] [ 15] [NATIVE ] +16:29:08 [ 43] [ 40] [SAYYABOULY ATM01 Paklay LAO] +16:29:08 [ 49] [ 3] [418] +16:29:08 [ 52] [ 16] [4F9A92CD1A9B527B] +16:29:08 ============================================================================ +16:29:08 + + +waiting on router queue for slot.... +16:29:08 Sending to : +16:29:08 ============================================================================ +16:29:08 Sending to : +16:29:08 ============================================================================ +16:29:08 ============================================================================ +16:29:08 Slot Id : <498> +16:29:08 Transaction Type : REQUEST +16:29:08 Received From : +16:29:08 ============================================================================ +16:29:08 FNo. Len. Field Value +16:29:08 ============================================================================ +16:29:08 [ 1] [ 4] [0200] +16:29:08 [ 2] [ 16] [1808930800007049] +16:29:08 [ 3] [ 6] [302000] +16:29:08 [ 4] [ 12] [000000000000] +16:29:08 [ 7] [ 10] [0320162903] +16:29:08 [ 11] [ 6] [799639] +16:29:08 [ 12] [ 6] [162903] +16:29:08 [ 13] [ 4] [0320] +16:29:08 [ 15] [ 4] [0320] +16:29:08 [ 18] [ 4] [6011] +16:29:08 [ 22] [ 3] [900] +16:29:08 [ 25] [ 2] [02] +16:29:08 [ 28] [ 9] [D00000000] +16:29:08 [ 32] [ 6] [621354] +16:29:08 [ 35] [ 27] [1808930800007049=1803500912] +16:29:08 [ 37] [ 12] [507903278924] +16:29:08 [ 41] [ 8] [12002700] +16:29:08 [ 42] [ 15] [NATIVE ] +16:29:08 [ 43] [ 40] [SAYYABOULY ATM01 Paklay LAO] +16:29:08 [ 49] [ 3] [418] +16:29:08 [ 52] [ 16] [4F9A92CD1A9B527B] +16:29:08 ============================================================================ +16:29:08 + + +waiting on router queue for slot.... +16:29:08 Sending to : +16:29:08 ============================================================================ +16:29:08 ============================================================================ +16:29:08 Slot Id : <498> +16:29:08 Transaction Type : REQUEST +16:29:08 Received From : +16:29:08 ============================================================================ +16:29:08 FNo. Len. Field Value +16:29:08 ============================================================================ +16:29:08 [ 1] [ 4] [0200] +16:29:08 [ 2] [ 16] [1808930800007049] +16:29:08 [ 3] [ 6] [302000] +16:29:08 [ 4] [ 12] [000000000000] +16:29:08 [ 7] [ 10] [0320162903] +16:29:08 [ 11] [ 6] [799639] +16:29:08 [ 12] [ 6] [162903] +16:29:08 [ 13] [ 4] [0320] +16:29:08 [ 15] [ 4] [0320] +16:29:08 [ 18] [ 4] [6011] +16:29:08 [ 22] [ 3] [900] +16:29:08 [ 25] [ 2] [02] +16:29:08 [ 28] [ 9] [D00000000] +16:29:08 [ 32] [ 6] [621354] +16:29:08 [ 35] [ 27] [1808930800007049=1803500912] +16:29:08 [ 37] [ 12] [507903278924] +16:29:08 [ 41] [ 8] [12002700] +16:29:08 [ 42] [ 15] [NATIVE ] +16:29:08 [ 43] [ 40] [SAYYABOULY ATM01 Paklay LAO] +16:29:08 [ 49] [ 3] [418] +16:29:08 [ 52] [ 16] [BB75CF5685786D6A] +16:29:08 ============================================================================ +16:29:08 + + +waiting on router queue for slot.... +16:29:08 Sending to : <2> +16:29:08 ============================================================================ +16:29:10 ============================================================================ +16:29:10 Slot Id : <498> +16:29:10 Transaction Type : RESPONSE +16:29:10 Received From : +16:29:10 ============================================================================ +16:29:10 FNo. Len. Field Value +16:29:10 ============================================================================ +16:29:10 [ 1] [ 4] [0210] +16:29:10 [ 2] [ 16] [1808930800007049] +16:29:10 [ 3] [ 6] [302000] +16:29:10 [ 7] [ 10] [0320162903] +16:29:10 [ 11] [ 6] [799639] +16:29:10 [ 12] [ 6] [162903] +16:29:10 [ 13] [ 4] [0320] +16:29:10 [ 14] [ 4] [1803] +16:29:10 [ 19] [ 3] [418] +16:29:10 [ 32] [ 6] [621354] +16:29:10 [ 37] [ 12] [507903278924] +16:29:10 [ 39] [ 2] [42] +16:29:10 [ 41] [ 8] [12002700] +16:29:10 [ 49] [ 3] [418] +16:29:10 [ 52] [ 16] [BB75CF5685786D6A] +16:29:10 ============================================================================ +16:29:10 Sending to : +16:29:10 ============================================================================ +16:29:10 + + +waiting on router queue for slot.... +16:29:10 ============================================================================ +16:29:10 Slot Id : <473> +16:29:10 Transaction Type : REQUEST +16:29:10 Received From : +16:29:10 ============================================================================ +16:29:10 FNo. Len. Field Value +16:29:10 ============================================================================ +16:29:10 [ 1] [ 4] [0200] +16:29:10 [ 2] [ 16] [6213544001276697] +16:29:10 [ 3] [ 6] [302000] +16:29:10 [ 4] [ 12] [000000000000] +16:29:10 [ 7] [ 10] [0320162700] +16:29:10 [ 11] [ 6] [951748] +16:29:10 [ 12] [ 6] [162700] +16:29:10 [ 13] [ 4] [0320] +16:29:10 [ 15] [ 4] [0320] +16:29:10 [ 18] [ 4] [6011] +16:29:10 [ 19] [ 3] [418] +16:29:10 [ 22] [ 3] [021] +16:29:10 [ 25] [ 2] [01] +16:29:10 [ 28] [ 9] [D00000000] +16:29:10 [ 32] [ 6] [668899] +16:29:10 [ 35] [ 32] [6213544001276697=491212017669968] +16:29:10 [ 37] [ 12] [507901584494] +16:29:10 [ 41] [ 8] [03915001] +16:29:10 [ 42] [ 15] [APT ] +16:29:10 [ 43] [ 40] [ VUNG TAO UNIT CHAMPASAK ] +16:29:10 [ 49] [ 3] [418] +16:29:10 [ 52] [ 16] [99E49B602ED9AABE] +16:29:10 ============================================================================ +16:29:10 + + +waiting on router queue for slot.... +16:29:10 Sending to : +16:29:10 ============================================================================ +16:29:10 Sending to : +16:29:10 ============================================================================ +16:29:11 ============================================================================ +16:29:11 Slot Id : <498> +16:29:11 Transaction Type : RESPONSE +16:29:11 Received From : +16:29:11 ============================================================================ +16:29:11 FNo. Len. Field Value +16:29:11 ============================================================================ +16:29:11 [ 1] [ 4] [0210] +16:29:11 [ 2] [ 16] [1808930800007049] +16:29:11 [ 3] [ 6] [302000] +16:29:11 [ 7] [ 10] [0320162903] +16:29:11 [ 11] [ 6] [799639] +16:29:11 [ 12] [ 6] [162903] +16:29:11 [ 13] [ 4] [0320] +16:29:11 [ 14] [ 4] [1803] +16:29:11 [ 19] [ 3] [418] +16:29:11 [ 32] [ 6] [621354] +16:29:11 [ 37] [ 12] [507903278924] +16:29:11 [ 39] [ 2] [42] +16:29:11 [ 41] [ 8] [12002700] +16:29:11 [ 49] [ 3] [418] +16:29:11 [ 52] [ 16] [BB75CF5685786D6A] +16:29:11 ============================================================================ +16:29:11 Calculate Source COMM Id = 0 +16:29:11 ============================================================================ +16:29:11 + + +waiting on router queue for slot.... +16:29:11 ============================================================================ +16:29:11 Slot Id : <473> +16:29:11 Transaction Type : REQUEST +16:29:11 Received From : +16:29:11 ============================================================================ +16:29:11 FNo. Len. Field Value +16:29:11 ============================================================================ +16:29:11 [ 1] [ 4] [0200] +16:29:11 [ 2] [ 16] [6213544001276697] +16:29:11 [ 3] [ 6] [302000] +16:29:11 [ 4] [ 12] [000000000000] +16:29:11 [ 7] [ 10] [0320162700] +16:29:11 [ 11] [ 6] [951748] +16:29:11 [ 12] [ 6] [162700] +16:29:11 [ 13] [ 4] [0320] +16:29:11 [ 15] [ 4] [0320] +16:29:11 [ 18] [ 4] [6011] +16:29:11 [ 19] [ 3] [418] +16:29:11 [ 22] [ 3] [021] +16:29:11 [ 25] [ 2] [01] +16:29:11 [ 28] [ 9] [D00000000] +16:29:11 [ 32] [ 6] [668899] +16:29:11 [ 35] [ 32] [6213544001276697=491212017669968] +16:29:11 [ 37] [ 12] [507901584494] +16:29:11 [ 41] [ 8] [03915001] +16:29:11 [ 42] [ 15] [APT ] +16:29:11 [ 43] [ 40] [ VUNG TAO UNIT CHAMPASAK ] +16:29:11 [ 49] [ 3] [418] +16:29:11 [ 52] [ 16] [99E49B602ED9AABE] +16:29:11 ============================================================================ +16:29:11 + + +waiting on router queue for slot.... +16:29:11 Sending to : +16:29:11 ============================================================================ +16:29:11 ============================================================================ +16:29:11 Slot Id : <473> +16:29:11 Transaction Type : REQUEST +16:29:11 Received From : +16:29:11 ============================================================================ +16:29:11 FNo. Len. Field Value +16:29:11 ============================================================================ +16:29:11 [ 1] [ 4] [0200] +16:29:11 [ 2] [ 16] [6213544001276697] +16:29:11 [ 3] [ 6] [302000] +16:29:11 [ 4] [ 12] [000000000000] +16:29:11 [ 7] [ 10] [0320162700] +16:29:11 [ 11] [ 6] [951748] +16:29:11 [ 12] [ 6] [162700] +16:29:11 [ 13] [ 4] [0320] +16:29:11 [ 15] [ 4] [0320] +16:29:11 [ 18] [ 4] [6011] +16:29:11 [ 19] [ 3] [418] +16:29:11 [ 22] [ 3] [021] +16:29:11 [ 25] [ 2] [01] +16:29:11 [ 28] [ 9] [D00000000] +16:29:11 [ 32] [ 6] [668899] +16:29:11 [ 35] [ 32] [6213544001276697=491212017669968] +16:29:11 [ 37] [ 12] [507901584494] +16:29:11 [ 41] [ 8] [03915001] +16:29:11 [ 42] [ 15] [APT ] +16:29:11 [ 43] [ 40] [ VUNG TAO UNIT CHAMPASAK ] +16:29:11 [ 49] [ 3] [418] +16:29:11 [ 52] [ 16] [DB840CD35975F0C4] +16:29:11 ============================================================================ +16:29:11 + + +waiting on router queue for slot.... +16:29:11 Sending to : <0> +16:29:11 ============================================================================ +16:29:12 ============================================================================ +16:29:12 Slot Id : <473> +16:29:12 Transaction Type : RESPONSE +16:29:12 Received From : +16:29:12 ============================================================================ +16:29:12 FNo. Len. Field Value +16:29:12 ============================================================================ +16:29:12 [ 1] [ 4] [0210] +16:29:12 [ 2] [ 16] [6213544001276697] +16:29:12 [ 3] [ 6] [302000] +16:29:12 [ 4] [ 12] [000000000000] +16:29:12 [ 7] [ 10] [0320162700] +16:29:12 [ 11] [ 6] [951748] +16:29:12 [ 12] [ 6] [162700] +16:29:12 [ 13] [ 4] [0320] +16:29:12 [ 15] [ 4] [0320] +16:29:12 [ 18] [ 4] [6011] +16:29:12 [ 19] [ 3] [418] +16:29:12 [ 32] [ 6] [668899] +16:29:12 [ 35] [ 32] [6213544001276697=491212017669968] +16:29:12 [ 37] [ 12] [507901584494] +16:29:12 [ 38] [ 6] [254280] +16:29:12 [ 39] [ 2] [00] +16:29:12 [ 41] [ 8] [03915001] +16:29:12 [ 49] [ 3] [418] +16:29:12 [ 54] [ 40] [2001418C0003049582832002418C000304958283] +16:29:12 ============================================================================ +16:29:12 Sending to : +16:29:12 ============================================================================ +16:29:12 + + +waiting on router queue for slot.... +16:29:13 ============================================================================ +16:29:13 Slot Id : <473> +16:29:13 Transaction Type : RESPONSE +16:29:13 Received From : +16:29:13 ============================================================================ +16:29:13 FNo. Len. Field Value +16:29:13 ============================================================================ +16:29:13 [ 1] [ 4] [0210] +16:29:13 [ 2] [ 16] [6213544001276697] +16:29:13 [ 3] [ 6] [302000] +16:29:13 [ 4] [ 12] [000000000000] +16:29:13 [ 7] [ 10] [0320162700] +16:29:13 [ 11] [ 6] [951748] +16:29:13 [ 12] [ 6] [162700] +16:29:13 [ 13] [ 4] [0320] +16:29:13 [ 15] [ 4] [0320] +16:29:13 [ 18] [ 4] [6011] +16:29:13 [ 19] [ 3] [418] +16:29:13 [ 32] [ 6] [668899] +16:29:13 [ 35] [ 32] [6213544001276697=491212017669968] +16:29:13 [ 37] [ 12] [507901584494] +16:29:13 [ 38] [ 6] [254280] +16:29:13 [ 39] [ 2] [00] +16:29:13 [ 41] [ 8] [03915001] +16:29:13 [ 49] [ 3] [418] +16:29:13 [ 54] [ 40] [2001418C0003049582832002418C000304958283] +16:29:13 ============================================================================ +16:29:13 Calculate Source COMM Id = 4 +16:29:13 ============================================================================ +16:29:13 + + +waiting on router queue for slot.... +16:29:19 ============================================================================ +16:29:19 Slot Id : <477> +16:29:19 Transaction Type : REQUEST +16:29:19 Received From : +16:29:19 ============================================================================ +16:29:19 FNo. Len. Field Value +16:29:19 ============================================================================ +16:29:19 [ 1] [ 4] [0200] +16:29:19 [ 2] [ 16] [6688990103638704] +16:29:19 [ 3] [ 6] [010000] +16:29:19 [ 4] [ 12] [000100000000] +16:29:19 [ 7] [ 10] [0320162914] +16:29:19 [ 11] [ 6] [799692] +16:29:19 [ 12] [ 6] [162914] +16:29:19 [ 13] [ 4] [0320] +16:29:19 [ 15] [ 4] [0320] +16:29:19 [ 18] [ 4] [6011] +16:29:19 [ 22] [ 3] [900] +16:29:19 [ 25] [ 2] [02] +16:29:19 [ 28] [ 9] [D00002000] +16:29:19 [ 32] [ 6] [621354] +16:29:19 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:29:19 [ 37] [ 12] [507903743405] +16:29:19 [ 41] [ 8] [06002400] +16:29:19 [ 42] [ 15] [NATIVE ] +16:29:19 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:29:19 [ 49] [ 3] [418] +16:29:19 [ 52] [ 16] [170FE55C2E74E4F3] +16:29:19 ============================================================================ +16:29:19 + + +waiting on router queue for slot.... +16:29:19 Sending to : +16:29:19 ============================================================================ +16:29:19 Sending to : +16:29:19 ============================================================================ +16:29:19 ============================================================================ +16:29:19 Slot Id : <477> +16:29:19 Transaction Type : REQUEST +16:29:19 Received From : +16:29:19 ============================================================================ +16:29:19 FNo. Len. Field Value +16:29:19 ============================================================================ +16:29:19 [ 1] [ 4] [0200] +16:29:19 [ 2] [ 16] [6688990103638704] +16:29:19 [ 3] [ 6] [010000] +16:29:19 [ 4] [ 12] [000100000000] +16:29:19 [ 7] [ 10] [0320162914] +16:29:19 [ 11] [ 6] [799692] +16:29:19 [ 12] [ 6] [162914] +16:29:19 [ 13] [ 4] [0320] +16:29:19 [ 15] [ 4] [0320] +16:29:19 [ 18] [ 4] [6011] +16:29:19 [ 22] [ 3] [900] +16:29:19 [ 25] [ 2] [02] +16:29:19 [ 28] [ 9] [D00002000] +16:29:19 [ 32] [ 6] [621354] +16:29:19 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:29:19 [ 37] [ 12] [507903743405] +16:29:19 [ 41] [ 8] [06002400] +16:29:19 [ 42] [ 15] [NATIVE ] +16:29:19 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:29:19 [ 49] [ 3] [418] +16:29:19 [ 52] [ 16] [170FE55C2E74E4F3] +16:29:19 ============================================================================ +16:29:19 + + +waiting on router queue for slot.... +16:29:19 Sending to : +16:29:19 ============================================================================ +16:29:19 ============================================================================ +16:29:19 Slot Id : <477> +16:29:19 Transaction Type : REQUEST +16:29:19 Received From : +16:29:19 ============================================================================ +16:29:19 FNo. Len. Field Value +16:29:19 ============================================================================ +16:29:19 [ 1] [ 4] [0200] +16:29:19 [ 2] [ 16] [6688990103638704] +16:29:19 [ 3] [ 6] [010000] +16:29:19 [ 4] [ 12] [000100000000] +16:29:19 [ 7] [ 10] [0320162914] +16:29:19 [ 11] [ 6] [799692] +16:29:19 [ 12] [ 6] [162914] +16:29:19 [ 13] [ 4] [0320] +16:29:19 [ 15] [ 4] [0320] +16:29:19 [ 18] [ 4] [6011] +16:29:19 [ 22] [ 3] [900] +16:29:19 [ 25] [ 2] [02] +16:29:19 [ 28] [ 9] [D00002000] +16:29:19 [ 32] [ 6] [621354] +16:29:19 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:29:19 [ 37] [ 12] [507903743405] +16:29:19 [ 41] [ 8] [06002400] +16:29:19 [ 42] [ 15] [NATIVE ] +16:29:19 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:29:19 [ 49] [ 3] [418] +16:29:19 [ 52] [ 16] [CBE3DAD4CBB88304] +16:29:19 ============================================================================ +16:29:19 + + +waiting on router queue for slot.... +16:29:19 Sending to : <4> +16:29:19 ============================================================================ +16:29:20 ============================================================================ +16:29:20 Slot Id : <477> +16:29:20 Transaction Type : RESPONSE +16:29:20 Received From : +16:29:20 ============================================================================ +16:29:20 FNo. Len. Field Value +16:29:20 ============================================================================ +16:29:20 [ 1] [ 4] [0210] +16:29:20 [ 2] [ 16] [6688990103638704] +16:29:20 [ 3] [ 6] [010000] +16:29:20 [ 4] [ 12] [000100000000] +16:29:20 [ 11] [ 6] [799692] +16:29:20 [ 12] [ 6] [162914] +16:29:20 [ 15] [ 4] [0320] +16:29:20 [ 18] [ 4] [6011] +16:29:20 [ 32] [ 6] [621354] +16:29:20 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:29:20 [ 37] [ 12] [507903743405] +16:29:20 [ 38] [ 6] [694953] +16:29:20 [ 39] [ 2] [00] +16:29:20 [ 41] [ 8] [06002400] +16:29:20 [ 49] [ 3] [418] +16:29:20 [ 54] [ 20] [0002418C000039510863] +16:29:20 ============================================================================ +16:29:20 Sending to : +16:29:20 ============================================================================ +16:29:20 + + +waiting on router queue for slot.... +16:29:22 ============================================================================ +16:29:22 Slot Id : <477> +16:29:22 Transaction Type : RESPONSE +16:29:22 Received From : +16:29:22 ============================================================================ +16:29:22 FNo. Len. Field Value +16:29:22 ============================================================================ +16:29:22 [ 1] [ 4] [0210] +16:29:22 [ 2] [ 16] [6688990103638704] +16:29:22 [ 3] [ 6] [010000] +16:29:22 [ 4] [ 12] [000100000000] +16:29:22 [ 11] [ 6] [799692] +16:29:22 [ 12] [ 6] [162914] +16:29:22 [ 15] [ 4] [0320] +16:29:22 [ 18] [ 4] [6011] +16:29:22 [ 32] [ 6] [621354] +16:29:22 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:29:22 [ 37] [ 12] [507903743405] +16:29:22 [ 38] [ 6] [694953] +16:29:22 [ 39] [ 2] [00] +16:29:22 [ 41] [ 8] [06002400] +16:29:22 [ 49] [ 3] [418] +16:29:22 [ 54] [ 20] [0002418C000039510863] +16:29:22 ============================================================================ +16:29:22 Calculate Source COMM Id = 0 +16:29:22 ============================================================================ +16:29:22 + + +waiting on router queue for slot.... +16:29:23 ============================================================================ +16:29:23 Slot Id : <476> +16:29:23 Transaction Type : REQUEST +16:29:23 Received From : +16:29:23 ============================================================================ +16:29:23 FNo. Len. Field Value +16:29:23 ============================================================================ +16:29:23 [ 1] [ 4] [0800] +16:29:23 [ 7] [ 10] [0320092830] +16:29:23 [ 11] [ 6] [157243] +16:29:23 [ 70] [ 3] [301] +16:29:23 ============================================================================ +16:29:23 + + +waiting on router queue for slot.... +16:29:23 Sending to : +16:29:23 ============================================================================ +16:29:23 ============================================================================ +16:29:23 Slot Id : <476> +16:29:23 Transaction Type : RESPONSE +16:29:23 Received From : +16:29:23 ============================================================================ +16:29:23 FNo. Len. Field Value +16:29:23 ============================================================================ +16:29:23 [ 1] [ 4] [0810] +16:29:23 [ 7] [ 10] [0320092830] +16:29:23 [ 11] [ 6] [157243] +16:29:23 [ 39] [ 2] [00] +16:29:23 [ 70] [ 3] [301] +16:29:23 ============================================================================ +16:29:23 Calculate Source COMM Id = 2 +16:29:23 ============================================================================ +16:29:23 + + +waiting on router queue for slot.... +16:29:25 ============================================================================ +16:29:25 Slot Id : <489> +16:29:25 Transaction Type : REQUEST +16:29:25 Received From : +16:29:25 ============================================================================ +16:29:25 FNo. Len. Field Value +16:29:25 ============================================================================ +16:29:25 [ 1] [ 4] [0200] +16:29:25 [ 2] [ 16] [6688990103062202] +16:29:25 [ 3] [ 6] [301000] +16:29:25 [ 4] [ 12] [000000000000] +16:29:25 [ 7] [ 10] [0320162920] +16:29:25 [ 11] [ 6] [799713] +16:29:25 [ 12] [ 6] [162920] +16:29:25 [ 13] [ 4] [0320] +16:29:25 [ 15] [ 4] [0320] +16:29:25 [ 18] [ 4] [6011] +16:29:25 [ 22] [ 3] [900] +16:29:25 [ 25] [ 2] [02] +16:29:25 [ 28] [ 9] [D00000000] +16:29:25 [ 32] [ 6] [621354] +16:29:25 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:29:25 [ 37] [ 12] [507902577821] +16:29:25 [ 41] [ 8] [05004000] +16:29:25 [ 42] [ 15] [NATIVE ] +16:29:25 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:29:25 [ 49] [ 3] [418] +16:29:25 [ 52] [ 16] [8C92B539256FFA7B] +16:29:25 ============================================================================ +16:29:25 + + +waiting on router queue for slot.... +16:29:25 Sending to : +16:29:25 ============================================================================ +16:29:25 Sending to : +16:29:25 ============================================================================ +16:29:25 ============================================================================ +16:29:25 Slot Id : <489> +16:29:25 Transaction Type : REQUEST +16:29:25 Received From : +16:29:25 ============================================================================ +16:29:25 FNo. Len. Field Value +16:29:25 ============================================================================ +16:29:25 [ 1] [ 4] [0200] +16:29:25 [ 2] [ 16] [6688990103062202] +16:29:25 [ 3] [ 6] [301000] +16:29:25 [ 4] [ 12] [000000000000] +16:29:25 [ 7] [ 10] [0320162920] +16:29:25 [ 11] [ 6] [799713] +16:29:25 [ 12] [ 6] [162920] +16:29:25 [ 13] [ 4] [0320] +16:29:25 [ 15] [ 4] [0320] +16:29:25 [ 18] [ 4] [6011] +16:29:25 [ 22] [ 3] [900] +16:29:25 [ 25] [ 2] [02] +16:29:25 [ 28] [ 9] [D00000000] +16:29:25 [ 32] [ 6] [621354] +16:29:25 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:29:25 [ 37] [ 12] [507902577821] +16:29:25 [ 41] [ 8] [05004000] +16:29:25 [ 42] [ 15] [NATIVE ] +16:29:25 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:29:25 [ 49] [ 3] [418] +16:29:25 [ 52] [ 16] [8C92B539256FFA7B] +16:29:25 ============================================================================ +16:29:25 + + +waiting on router queue for slot.... +16:29:25 Sending to : +16:29:25 ============================================================================ +16:29:25 ============================================================================ +16:29:25 Slot Id : <489> +16:29:25 Transaction Type : REQUEST +16:29:25 Received From : +16:29:25 ============================================================================ +16:29:25 FNo. Len. Field Value +16:29:25 ============================================================================ +16:29:25 [ 1] [ 4] [0200] +16:29:25 [ 2] [ 16] [6688990103062202] +16:29:25 [ 3] [ 6] [301000] +16:29:25 [ 4] [ 12] [000000000000] +16:29:25 [ 7] [ 10] [0320162920] +16:29:25 [ 11] [ 6] [799713] +16:29:25 [ 12] [ 6] [162920] +16:29:25 [ 13] [ 4] [0320] +16:29:25 [ 15] [ 4] [0320] +16:29:25 [ 18] [ 4] [6011] +16:29:25 [ 22] [ 3] [900] +16:29:25 [ 25] [ 2] [02] +16:29:25 [ 28] [ 9] [D00000000] +16:29:25 [ 32] [ 6] [621354] +16:29:25 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:29:25 [ 37] [ 12] [507902577821] +16:29:25 [ 41] [ 8] [05004000] +16:29:25 [ 42] [ 15] [NATIVE ] +16:29:25 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:29:25 [ 49] [ 3] [418] +16:29:25 [ 52] [ 16] [2BAA8AB46A247FF6] +16:29:25 ============================================================================ +16:29:25 + + +waiting on router queue for slot.... +16:29:25 Sending to : <4> +16:29:25 ============================================================================ +16:29:25 ============================================================================ +16:29:25 Slot Id : <489> +16:29:25 Transaction Type : RESPONSE +16:29:25 Received From : +16:29:25 ============================================================================ +16:29:25 FNo. Len. Field Value +16:29:25 ============================================================================ +16:29:25 [ 1] [ 4] [0210] +16:29:25 [ 2] [ 16] [6688990103062202] +16:29:25 [ 3] [ 6] [301000] +16:29:25 [ 4] [ 12] [000000000000] +16:29:25 [ 7] [ 10] [0320162920] +16:29:25 [ 11] [ 6] [799713] +16:29:25 [ 12] [ 6] [162920] +16:29:25 [ 13] [ 4] [0320] +16:29:25 [ 15] [ 4] [0320] +16:29:25 [ 18] [ 4] [6011] +16:29:25 [ 22] [ 3] [021] +16:29:25 [ 32] [ 6] [621354] +16:29:25 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:29:25 [ 37] [ 12] [507902577821] +16:29:25 [ 38] [ 6] [162716] +16:29:25 [ 39] [ 2] [75] +16:29:25 [ 41] [ 8] [05004000] +16:29:25 [ 49] [ 3] [418] +16:29:25 ============================================================================ +16:29:25 Sending to : +16:29:25 ============================================================================ +16:29:25 + + +waiting on router queue for slot.... +16:29:27 ============================================================================ +16:29:27 Slot Id : <489> +16:29:27 Transaction Type : RESPONSE +16:29:27 Received From : +16:29:27 ============================================================================ +16:29:27 FNo. Len. Field Value +16:29:27 ============================================================================ +16:29:27 [ 1] [ 4] [0210] +16:29:27 [ 2] [ 16] [6688990103062202] +16:29:27 [ 3] [ 6] [301000] +16:29:27 [ 4] [ 12] [000000000000] +16:29:27 [ 7] [ 10] [0320162920] +16:29:27 [ 11] [ 6] [799713] +16:29:27 [ 12] [ 6] [162920] +16:29:27 [ 13] [ 4] [0320] +16:29:27 [ 15] [ 4] [0320] +16:29:27 [ 18] [ 4] [6011] +16:29:27 [ 22] [ 3] [021] +16:29:27 [ 32] [ 6] [621354] +16:29:27 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:29:27 [ 37] [ 12] [507902577821] +16:29:27 [ 38] [ 6] [162716] +16:29:27 [ 39] [ 2] [75] +16:29:27 [ 41] [ 8] [05004000] +16:29:27 [ 49] [ 3] [418] +16:29:27 ============================================================================ +16:29:27 Calculate Source COMM Id = 0 +16:29:27 ============================================================================ +16:29:27 + + +waiting on router queue for slot.... +16:29:33 ============================================================================ +16:29:33 Slot Id : <483> +16:29:33 Transaction Type : REQUEST +16:29:33 Received From : +16:29:33 ============================================================================ +16:29:33 FNo. Len. Field Value +16:29:33 ============================================================================ +16:29:33 [ 1] [ 4] [0800] +16:29:33 [ 2] [ 5] [02531] +16:29:33 [ 3] [ 6] [579168] +16:29:33 [ 7] [ 10] [0320092933] +16:29:33 [ 11] [ 6] [807369] +16:29:33 [ 15] [ 10] [0320092933] +16:29:33 [ 37] [ 11] [57916807369] +16:29:33 [ 70] [ 3] [001] +16:29:33 ============================================================================ +16:29:33 + + +waiting on router queue for slot.... +16:29:33 ============================================================================ +16:29:33 Slot Id : <483> +16:29:33 Transaction Type : RESPONSE +16:29:33 Received From : +16:29:33 ============================================================================ +16:29:33 FNo. Len. Field Value +16:29:33 ============================================================================ +16:29:33 [ 1] [ 4] [0810] +16:29:33 [ 7] [ 10] [0320092933] +16:29:33 [ 11] [ 6] [807369] +16:29:33 [ 15] [ 4] [0320] +16:29:33 [ 37] [ 12] [57916807369] +16:29:33 [ 39] [ 2] [00] +16:29:33 [ 70] [ 3] [001] +16:29:33 ============================================================================ +16:29:33 Sending to : +16:29:33 ============================================================================ +16:29:33 + + +waiting on router queue for slot.... +16:29:35 ============================================================================ +16:29:35 Slot Id : <486> +16:29:35 Transaction Type : REQUEST +16:29:35 Received From : +16:29:35 ============================================================================ +16:29:35 FNo. Len. Field Value +16:29:35 ============================================================================ +16:29:35 [ 1] [ 4] [0200] +16:29:35 [ 2] [ 16] [6213544001690640] +16:29:35 [ 3] [ 6] [011000] +16:29:35 [ 4] [ 12] [000055000000] +16:29:35 [ 7] [ 10] [0320162955] +16:29:35 [ 11] [ 6] [208722] +16:29:35 [ 12] [ 6] [162501] +16:29:35 [ 13] [ 4] [0320] +16:29:35 [ 14] [ 4] [4912] +16:29:35 [ 15] [ 4] [0320] +16:29:35 [ 18] [ 4] [6011] +16:29:35 [ 19] [ 3] [418] +16:29:35 [ 22] [ 3] [021] +16:29:35 [ 25] [ 2] [01] +16:29:35 [ 28] [ 9] [D00002000] +16:29:35 [ 32] [ 6] [198901] +16:29:35 [ 35] [ 32] [6213544001690640=491212019064068] +16:29:35 [ 37] [ 12] [507916208722] +16:29:35 [ 41] [ 8] [19529001] +16:29:35 [ 42] [ 15] [000000041952901] +16:29:35 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:29:35 [ 49] [ 3] [418] +16:29:35 [ 52] [ 16] [217C93F2F40AF0F5] +16:29:35 ============================================================================ +16:29:35 + + +waiting on router queue for slot.... +16:29:35 Sending to : +16:29:35 ============================================================================ +16:29:35 Sending to : +16:29:35 ============================================================================ +16:29:35 ============================================================================ +16:29:35 Slot Id : <486> +16:29:35 Transaction Type : REQUEST +16:29:35 Received From : +16:29:35 ============================================================================ +16:29:35 FNo. Len. Field Value +16:29:35 ============================================================================ +16:29:35 [ 1] [ 4] [0200] +16:29:35 [ 2] [ 16] [6213544001690640] +16:29:35 [ 3] [ 6] [011000] +16:29:35 [ 4] [ 12] [000055000000] +16:29:35 [ 7] [ 10] [0320162955] +16:29:35 [ 11] [ 6] [208722] +16:29:35 [ 12] [ 6] [162501] +16:29:35 [ 13] [ 4] [0320] +16:29:35 [ 14] [ 4] [4912] +16:29:35 [ 15] [ 4] [0320] +16:29:35 [ 18] [ 4] [6011] +16:29:35 [ 19] [ 3] [418] +16:29:35 [ 22] [ 3] [021] +16:29:35 [ 25] [ 2] [01] +16:29:35 [ 28] [ 9] [D00002000] +16:29:35 [ 32] [ 6] [198901] +16:29:35 [ 35] [ 32] [6213544001690640=491212019064068] +16:29:35 [ 37] [ 12] [507916208722] +16:29:35 [ 41] [ 8] [19529001] +16:29:35 [ 42] [ 15] [000000041952901] +16:29:35 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:29:35 [ 49] [ 3] [418] +16:29:35 [ 52] [ 16] [217C93F2F40AF0F5] +16:29:35 ============================================================================ +16:29:35 + + +waiting on router queue for slot.... +16:29:35 Sending to : +16:29:35 ============================================================================ +16:29:35 ============================================================================ +16:29:35 Slot Id : <486> +16:29:35 Transaction Type : REQUEST +16:29:35 Received From : +16:29:35 ============================================================================ +16:29:35 FNo. Len. Field Value +16:29:35 ============================================================================ +16:29:35 [ 1] [ 4] [0200] +16:29:35 [ 2] [ 16] [6213544001690640] +16:29:35 [ 3] [ 6] [011000] +16:29:35 [ 4] [ 12] [000055000000] +16:29:35 [ 7] [ 10] [0320162955] +16:29:35 [ 11] [ 6] [208722] +16:29:35 [ 12] [ 6] [162501] +16:29:35 [ 13] [ 4] [0320] +16:29:35 [ 14] [ 4] [4912] +16:29:35 [ 15] [ 4] [0320] +16:29:35 [ 18] [ 4] [6011] +16:29:35 [ 19] [ 3] [418] +16:29:35 [ 22] [ 3] [021] +16:29:35 [ 25] [ 2] [01] +16:29:35 [ 28] [ 9] [D00002000] +16:29:35 [ 32] [ 6] [198901] +16:29:35 [ 35] [ 32] [6213544001690640=491212019064068] +16:29:35 [ 37] [ 12] [507916208722] +16:29:35 [ 41] [ 8] [19529001] +16:29:35 [ 42] [ 15] [000000041952901] +16:29:35 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:29:35 [ 49] [ 3] [418] +16:29:35 [ 52] [ 16] [286B310DC3A1E40B] +16:29:35 ============================================================================ +16:29:35 + + +waiting on router queue for slot.... +16:29:35 Sending to : <0> +16:29:35 ============================================================================ +16:29:36 ============================================================================ +16:29:36 Slot Id : <485> +16:29:36 Transaction Type : REQUEST +16:29:36 Received From : +16:29:36 ============================================================================ +16:29:36 FNo. Len. Field Value +16:29:36 ============================================================================ +16:29:36 [ 1] [ 4] [0800] +16:29:36 [ 7] [ 10] [0320092842] +16:29:36 [ 11] [ 6] [157244] +16:29:36 [ 70] [ 3] [301] +16:29:36 ============================================================================ +16:29:36 + + +waiting on router queue for slot.... +16:29:36 Sending to : +16:29:36 ============================================================================ +16:29:36 ============================================================================ +16:29:36 Slot Id : <486> +16:29:36 Transaction Type : RESPONSE +16:29:36 Received From : +16:29:36 ============================================================================ +16:29:36 FNo. Len. Field Value +16:29:36 ============================================================================ +16:29:36 [ 1] [ 4] [0210] +16:29:36 [ 2] [ 16] [6213544001690640] +16:29:36 [ 3] [ 6] [011000] +16:29:36 [ 4] [ 12] [000055000000] +16:29:36 [ 7] [ 10] [0320162955] +16:29:36 [ 11] [ 6] [208722] +16:29:36 [ 12] [ 6] [162501] +16:29:36 [ 13] [ 4] [0320] +16:29:36 [ 15] [ 4] [0320] +16:29:36 [ 18] [ 4] [6011] +16:29:36 [ 19] [ 3] [418] +16:29:36 [ 32] [ 6] [198901] +16:29:36 [ 35] [ 32] [6213544001690640=491212019064068] +16:29:36 [ 37] [ 12] [507916208722] +16:29:36 [ 38] [ 6] [722039] +16:29:36 [ 39] [ 2] [00] +16:29:36 [ 41] [ 8] [19529001] +16:29:36 [ 49] [ 3] [418] +16:29:36 [ 54] [ 40] [1001418C0000066261401002418C000006626140] +16:29:36 ============================================================================ +16:29:36 Sending to : +16:29:36 ============================================================================ +16:29:36 + + +waiting on router queue for slot.... +16:29:36 ============================================================================ +16:29:36 Slot Id : <485> +16:29:36 Transaction Type : RESPONSE +16:29:36 Received From : +16:29:36 ============================================================================ +16:29:36 FNo. Len. Field Value +16:29:36 ============================================================================ +16:29:36 [ 1] [ 4] [0810] +16:29:36 [ 7] [ 10] [0320092842] +16:29:36 [ 11] [ 6] [157244] +16:29:36 [ 39] [ 2] [00] +16:29:36 [ 70] [ 3] [301] +16:29:36 ============================================================================ +16:29:36 Calculate Source COMM Id = 2 +16:29:36 ============================================================================ +16:29:36 + + +waiting on router queue for slot.... +16:29:37 ============================================================================ +16:29:37 Slot Id : <486> +16:29:37 Transaction Type : RESPONSE +16:29:37 Received From : +16:29:37 ============================================================================ +16:29:37 FNo. Len. Field Value +16:29:37 ============================================================================ +16:29:37 [ 1] [ 4] [0210] +16:29:37 [ 2] [ 16] [6213544001690640] +16:29:37 [ 3] [ 6] [011000] +16:29:37 [ 4] [ 12] [000055000000] +16:29:37 [ 7] [ 10] [0320162955] +16:29:37 [ 11] [ 6] [208722] +16:29:37 [ 12] [ 6] [162501] +16:29:37 [ 13] [ 4] [0320] +16:29:37 [ 15] [ 4] [0320] +16:29:37 [ 18] [ 4] [6011] +16:29:37 [ 19] [ 3] [418] +16:29:37 [ 32] [ 6] [198901] +16:29:37 [ 35] [ 32] [6213544001690640=491212019064068] +16:29:37 [ 37] [ 12] [507916208722] +16:29:37 [ 38] [ 6] [722039] +16:29:37 [ 39] [ 2] [00] +16:29:37 [ 41] [ 8] [19529001] +16:29:37 [ 49] [ 3] [418] +16:29:37 [ 54] [ 40] [1001418C0000066261401002418C000006626140] +16:29:37 ============================================================================ +16:29:37 Calculate Source COMM Id = 5 +16:29:37 ============================================================================ +16:29:37 + + +waiting on router queue for slot.... +16:29:44 ============================================================================ +16:29:44 Slot Id : <14> +16:29:44 Transaction Type : REQUEST +16:29:44 Received From : +16:29:44 ============================================================================ +16:29:44 FNo. Len. Field Value +16:29:44 ============================================================================ +16:29:44 [ 1] [ 4] [0200] +16:29:44 [ 2] [ 16] [6688990040112748] +16:29:44 [ 3] [ 6] [301000] +16:29:44 [ 7] [ 10] [0320092849] +16:29:44 [ 11] [ 6] [270459] +16:29:44 [ 12] [ 6] [162849] +16:29:44 [ 13] [ 4] [0320] +16:29:44 [ 14] [ 4] [9803] +16:29:44 [ 15] [ 4] [0320] +16:29:44 [ 18] [ 4] [6011] +16:29:44 [ 19] [ 3] [418] +16:29:44 [ 22] [ 3] [021] +16:29:44 [ 25] [ 2] [01] +16:29:44 [ 32] [ 6] [180893] +16:29:44 [ 35] [ 37] [6688990040112748=98031261513567900000] +16:29:44 [ 37] [ 12] [507909270459] +16:29:44 [ 41] [ 8] [0221XKKM] +16:29:44 [ 42] [ 15] [999999 ] +16:29:44 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:29:44 [ 49] [ 3] [418] +16:29:44 [ 52] [ 16] [5B7249C5F76D6E6E] +16:29:44 ============================================================================ +16:29:44 + + +waiting on router queue for slot.... +16:29:44 Sending to : +16:29:44 ============================================================================ +16:29:44 Sending to : +16:29:44 ============================================================================ +16:29:44 ============================================================================ +16:29:44 Slot Id : <14> +16:29:44 Transaction Type : REQUEST +16:29:44 Received From : +16:29:44 ============================================================================ +16:29:44 FNo. Len. Field Value +16:29:44 ============================================================================ +16:29:44 [ 1] [ 4] [0200] +16:29:44 [ 2] [ 16] [6688990040112748] +16:29:44 [ 3] [ 6] [301000] +16:29:44 [ 7] [ 10] [0320092849] +16:29:44 [ 11] [ 6] [270459] +16:29:44 [ 12] [ 6] [162849] +16:29:44 [ 13] [ 4] [0320] +16:29:44 [ 14] [ 4] [9803] +16:29:44 [ 15] [ 4] [0320] +16:29:44 [ 18] [ 4] [6011] +16:29:44 [ 19] [ 3] [418] +16:29:44 [ 22] [ 3] [021] +16:29:44 [ 25] [ 2] [01] +16:29:44 [ 32] [ 6] [180893] +16:29:44 [ 35] [ 37] [6688990040112748=98031261513567900000] +16:29:44 [ 37] [ 12] [507909270459] +16:29:44 [ 41] [ 8] [0221XKKM] +16:29:44 [ 42] [ 15] [999999 ] +16:29:44 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:29:44 [ 49] [ 3] [418] +16:29:44 [ 52] [ 16] [5B7249C5F76D6E6E] +16:29:44 ============================================================================ +16:29:44 + + +waiting on router queue for slot.... +16:29:44 Sending to : +16:29:44 ============================================================================ +16:29:44 ============================================================================ +16:29:44 Slot Id : <14> +16:29:44 Transaction Type : REQUEST +16:29:44 Received From : +16:29:44 ============================================================================ +16:29:44 FNo. Len. Field Value +16:29:44 ============================================================================ +16:29:44 [ 1] [ 4] [0200] +16:29:44 [ 2] [ 16] [6688990040112748] +16:29:44 [ 3] [ 6] [301000] +16:29:44 [ 7] [ 10] [0320092849] +16:29:44 [ 11] [ 6] [270459] +16:29:44 [ 12] [ 6] [162849] +16:29:44 [ 13] [ 4] [0320] +16:29:44 [ 14] [ 4] [9803] +16:29:44 [ 15] [ 4] [0320] +16:29:44 [ 18] [ 4] [6011] +16:29:44 [ 19] [ 3] [418] +16:29:44 [ 22] [ 3] [021] +16:29:44 [ 25] [ 2] [01] +16:29:44 [ 32] [ 6] [180893] +16:29:44 [ 35] [ 37] [6688990040112748=98031261513567900000] +16:29:44 [ 37] [ 12] [507909270459] +16:29:44 [ 41] [ 8] [0221XKKM] +16:29:44 [ 42] [ 15] [999999 ] +16:29:44 [ 43] [ 40] [ATM XIENGKHUANG KHAM SERVICE UNIT LOCATE] +16:29:44 [ 49] [ 3] [418] +16:29:44 [ 52] [ 16] [90F2401045884DF7] +16:29:44 ============================================================================ +16:29:44 + + +waiting on router queue for slot.... +16:29:44 Sending to : <0> +16:29:44 ============================================================================ +16:29:44 ============================================================================ +16:29:44 Slot Id : <14> +16:29:44 Transaction Type : RESPONSE +16:29:44 Received From : +16:29:44 ============================================================================ +16:29:44 FNo. Len. Field Value +16:29:44 ============================================================================ +16:29:44 [ 1] [ 4] [0210] +16:29:44 [ 2] [ 16] [6688990040112748] +16:29:44 [ 3] [ 6] [301000] +16:29:44 [ 4] [ 12] [000000000000] +16:29:44 [ 7] [ 10] [0320092849] +16:29:44 [ 11] [ 6] [270459] +16:29:44 [ 12] [ 6] [162849] +16:29:44 [ 13] [ 4] [0320] +16:29:44 [ 15] [ 4] [0320] +16:29:44 [ 18] [ 4] [6011] +16:29:44 [ 19] [ 3] [418] +16:29:44 [ 22] [ 3] [021] +16:29:44 [ 32] [ 6] [180893] +16:29:44 [ 35] [ 37] [6688990040112748=98031261513567900000] +16:29:44 [ 37] [ 12] [507909270459] +16:29:44 [ 39] [ 2] [14] +16:29:44 [ 41] [ 8] [0221XKKM] +16:29:44 [ 49] [ 3] [418] +16:29:44 ============================================================================ +16:29:44 Sending to : +16:29:44 ============================================================================ +16:29:44 + + +waiting on router queue for slot.... +16:29:45 ============================================================================ +16:29:45 Slot Id : <14> +16:29:45 Transaction Type : RESPONSE +16:29:45 Received From : +16:29:45 ============================================================================ +16:29:45 FNo. Len. Field Value +16:29:45 ============================================================================ +16:29:45 [ 1] [ 4] [0210] +16:29:45 [ 2] [ 16] [6688990040112748] +16:29:45 [ 3] [ 6] [301000] +16:29:45 [ 4] [ 12] [000000000000] +16:29:45 [ 7] [ 10] [0320092849] +16:29:45 [ 11] [ 6] [270459] +16:29:45 [ 12] [ 6] [162849] +16:29:45 [ 13] [ 4] [0320] +16:29:45 [ 15] [ 4] [0320] +16:29:45 [ 18] [ 4] [6011] +16:29:45 [ 19] [ 3] [418] +16:29:45 [ 22] [ 3] [021] +16:29:45 [ 32] [ 6] [180893] +16:29:45 [ 35] [ 37] [6688990040112748=98031261513567900000] +16:29:45 [ 37] [ 12] [507909270459] +16:29:45 [ 39] [ 2] [14] +16:29:45 [ 41] [ 8] [0221XKKM] +16:29:45 [ 49] [ 3] [418] +16:29:45 ============================================================================ +16:29:45 Calculate Source COMM Id = 2 +16:29:45 ============================================================================ +16:29:45 + + +waiting on router queue for slot.... +16:29:48 ============================================================================ +16:29:48 Slot Id : <474> +16:29:48 Transaction Type : REQUEST +16:29:48 Received From : +16:29:48 ============================================================================ +16:29:48 FNo. Len. Field Value +16:29:48 ============================================================================ +16:29:48 [ 1] [ 4] [0200] +16:29:48 [ 2] [ 16] [6213544001276697] +16:29:48 [ 3] [ 6] [010000] +16:29:48 [ 4] [ 12] [000100000000] +16:29:48 [ 7] [ 10] [0320162738] +16:29:48 [ 11] [ 6] [951767] +16:29:48 [ 12] [ 6] [162738] +16:29:48 [ 13] [ 4] [0320] +16:29:48 [ 15] [ 4] [0320] +16:29:48 [ 18] [ 4] [6011] +16:29:48 [ 19] [ 3] [418] +16:29:48 [ 22] [ 3] [021] +16:29:48 [ 25] [ 2] [01] +16:29:48 [ 28] [ 9] [D00002000] +16:29:48 [ 32] [ 6] [668899] +16:29:48 [ 35] [ 32] [6213544001276697=491212017669968] +16:29:48 [ 37] [ 12] [507901584495] +16:29:48 [ 41] [ 8] [03915001] +16:29:48 [ 42] [ 15] [APT ] +16:29:48 [ 43] [ 40] [ VUNG TAO UNIT CHAMPASAK ] +16:29:48 [ 49] [ 3] [418] +16:29:48 [ 52] [ 16] [99E49B602ED9AABE] +16:29:48 ============================================================================ +16:29:48 + + +waiting on router queue for slot.... +16:29:48 Sending to : +16:29:48 ============================================================================ +16:29:48 Sending to : +16:29:48 ============================================================================ +16:29:49 ============================================================================ +16:29:49 Slot Id : <474> +16:29:49 Transaction Type : REQUEST +16:29:49 Received From : +16:29:49 ============================================================================ +16:29:49 FNo. Len. Field Value +16:29:49 ============================================================================ +16:29:49 [ 1] [ 4] [0200] +16:29:49 [ 2] [ 16] [6213544001276697] +16:29:49 [ 3] [ 6] [010000] +16:29:49 [ 4] [ 12] [000100000000] +16:29:49 [ 7] [ 10] [0320162738] +16:29:49 [ 11] [ 6] [951767] +16:29:49 [ 12] [ 6] [162738] +16:29:49 [ 13] [ 4] [0320] +16:29:49 [ 15] [ 4] [0320] +16:29:49 [ 18] [ 4] [6011] +16:29:49 [ 19] [ 3] [418] +16:29:49 [ 22] [ 3] [021] +16:29:49 [ 25] [ 2] [01] +16:29:49 [ 28] [ 9] [D00002000] +16:29:49 [ 32] [ 6] [668899] +16:29:49 [ 35] [ 32] [6213544001276697=491212017669968] +16:29:49 [ 37] [ 12] [507901584495] +16:29:49 [ 41] [ 8] [03915001] +16:29:49 [ 42] [ 15] [APT ] +16:29:49 [ 43] [ 40] [ VUNG TAO UNIT CHAMPASAK ] +16:29:49 [ 49] [ 3] [418] +16:29:49 [ 52] [ 16] [99E49B602ED9AABE] +16:29:49 ============================================================================ +16:29:49 + + +waiting on router queue for slot.... +16:29:49 Sending to : +16:29:49 ============================================================================ +16:29:49 ============================================================================ +16:29:49 Slot Id : <474> +16:29:49 Transaction Type : REQUEST +16:29:49 Received From : +16:29:49 ============================================================================ +16:29:49 FNo. Len. Field Value +16:29:49 ============================================================================ +16:29:49 [ 1] [ 4] [0200] +16:29:49 [ 2] [ 16] [6213544001276697] +16:29:49 [ 3] [ 6] [010000] +16:29:49 [ 4] [ 12] [000100000000] +16:29:49 [ 7] [ 10] [0320162738] +16:29:49 [ 11] [ 6] [951767] +16:29:49 [ 12] [ 6] [162738] +16:29:49 [ 13] [ 4] [0320] +16:29:49 [ 15] [ 4] [0320] +16:29:49 [ 18] [ 4] [6011] +16:29:49 [ 19] [ 3] [418] +16:29:49 [ 22] [ 3] [021] +16:29:49 [ 25] [ 2] [01] +16:29:49 [ 28] [ 9] [D00002000] +16:29:49 [ 32] [ 6] [668899] +16:29:49 [ 35] [ 32] [6213544001276697=491212017669968] +16:29:49 [ 37] [ 12] [507901584495] +16:29:49 [ 41] [ 8] [03915001] +16:29:49 [ 42] [ 15] [APT ] +16:29:49 [ 43] [ 40] [ VUNG TAO UNIT CHAMPASAK ] +16:29:49 [ 49] [ 3] [418] +16:29:49 [ 52] [ 16] [DB840CD35975F0C4] +16:29:49 ============================================================================ +16:29:49 + + +waiting on router queue for slot.... +16:29:49 Sending to : <0> +16:29:49 ============================================================================ +16:29:49 ============================================================================ +16:29:49 Slot Id : <474> +16:29:49 Transaction Type : RESPONSE +16:29:49 Received From : +16:29:49 ============================================================================ +16:29:49 FNo. Len. Field Value +16:29:49 ============================================================================ +16:29:49 [ 1] [ 4] [0210] +16:29:49 [ 2] [ 16] [6213544001276697] +16:29:49 [ 3] [ 6] [010000] +16:29:49 [ 4] [ 12] [000100000000] +16:29:49 [ 7] [ 10] [0320162738] +16:29:49 [ 11] [ 6] [951767] +16:29:49 [ 12] [ 6] [162738] +16:29:49 [ 13] [ 4] [0320] +16:29:49 [ 15] [ 4] [0320] +16:29:49 [ 18] [ 4] [6011] +16:29:49 [ 19] [ 3] [418] +16:29:49 [ 32] [ 6] [668899] +16:29:49 [ 35] [ 32] [6213544001276697=491212017669968] +16:29:49 [ 37] [ 12] [507901584495] +16:29:49 [ 38] [ 6] [447256] +16:29:49 [ 39] [ 2] [00] +16:29:49 [ 41] [ 8] [03915001] +16:29:49 [ 49] [ 3] [418] +16:29:49 [ 54] [ 40] [0001418C0002047582830002418C000204758283] +16:29:49 ============================================================================ +16:29:49 Sending to : +16:29:49 ============================================================================ +16:29:49 + + +waiting on router queue for slot.... +16:29:51 ============================================================================ +16:29:51 Slot Id : <474> +16:29:51 Transaction Type : RESPONSE +16:29:51 Received From : +16:29:51 ============================================================================ +16:29:51 FNo. Len. Field Value +16:29:51 ============================================================================ +16:29:51 [ 1] [ 4] [0210] +16:29:51 [ 2] [ 16] [6213544001276697] +16:29:51 [ 3] [ 6] [010000] +16:29:51 [ 4] [ 12] [000100000000] +16:29:51 [ 7] [ 10] [0320162738] +16:29:51 [ 11] [ 6] [951767] +16:29:51 [ 12] [ 6] [162738] +16:29:51 [ 13] [ 4] [0320] +16:29:51 [ 15] [ 4] [0320] +16:29:51 [ 18] [ 4] [6011] +16:29:51 [ 19] [ 3] [418] +16:29:51 [ 32] [ 6] [668899] +16:29:51 [ 35] [ 32] [6213544001276697=491212017669968] +16:29:51 [ 37] [ 12] [507901584495] +16:29:51 [ 38] [ 6] [447256] +16:29:51 [ 39] [ 2] [00] +16:29:51 [ 41] [ 8] [03915001] +16:29:51 [ 49] [ 3] [418] +16:29:51 [ 54] [ 40] [0001418C0002047582830002418C000204758283] +16:29:51 ============================================================================ +16:29:51 Calculate Source COMM Id = 4 +16:29:51 ============================================================================ +16:29:51 + + +waiting on router queue for slot.... +16:29:55 ============================================================================ +16:29:55 Slot Id : <472> +16:29:55 Transaction Type : REQUEST +16:29:55 Received From : +16:29:55 ============================================================================ +16:29:55 FNo. Len. Field Value +16:29:55 ============================================================================ +16:29:55 [ 1] [ 4] [0800] +16:29:55 [ 7] [ 10] [0320093742] +16:29:55 [ 11] [ 6] [008825] +16:29:55 [ 37] [ 12] [57916008825] +16:29:55 [ 70] [ 3] [301] +16:29:55 ============================================================================ +16:29:55 + + +waiting on router queue for slot.... +16:29:55 Sending to : +16:29:55 ============================================================================ +16:29:55 ============================================================================ +16:29:55 Slot Id : <472> +16:29:55 Transaction Type : RESPONSE +16:29:55 Received From : +16:29:55 ============================================================================ +16:29:55 FNo. Len. Field Value +16:29:55 ============================================================================ +16:29:55 [ 1] [ 4] [0810] +16:29:55 [ 7] [ 10] [0320093742] +16:29:55 [ 11] [ 6] [008825] +16:29:55 [ 37] [ 12] [579160088250] +16:29:55 [ 39] [ 2] [00] +16:29:55 [ 70] [ 3] [810] +16:29:55 ============================================================================ +16:29:55 Calculate Source COMM Id = 1 +16:29:55 ============================================================================ +16:29:55 + + +waiting on router queue for slot.... +16:29:58 ============================================================================ +16:29:58 Slot Id : <6> +16:29:58 Transaction Type : REQUEST +16:29:58 Received From : +16:29:58 ============================================================================ +16:29:58 FNo. Len. Field Value +16:29:58 ============================================================================ +16:29:58 [ 1] [ 4] [0800] +16:29:58 [ 7] [ 10] [0320092905] +16:29:58 [ 11] [ 6] [157245] +16:29:58 [ 70] [ 3] [301] +16:29:58 ============================================================================ +16:29:58 + + +waiting on router queue for slot.... +16:29:58 Sending to : +16:29:58 ============================================================================ +16:29:58 ============================================================================ +16:29:58 Slot Id : <6> +16:29:58 Transaction Type : RESPONSE +16:29:58 Received From : +16:29:58 ============================================================================ +16:29:58 FNo. Len. Field Value +16:29:58 ============================================================================ +16:29:58 [ 1] [ 4] [0810] +16:29:58 [ 7] [ 10] [0320092905] +16:29:58 [ 11] [ 6] [157245] +16:29:58 [ 39] [ 2] [00] +16:29:58 [ 70] [ 3] [301] +16:29:58 ============================================================================ +16:29:58 Calculate Source COMM Id = 2 +16:29:58 ============================================================================ +16:29:58 + + +waiting on router queue for slot.... +16:30:05 ============================================================================ +16:30:05 Slot Id : <16> +16:30:05 Transaction Type : REQUEST +16:30:05 Received From : +16:30:05 ============================================================================ +16:30:05 FNo. Len. Field Value +16:30:05 ============================================================================ +16:30:05 [ 1] [ 4] [0800] +16:30:05 [ 7] [ 10] [0320234152] +16:30:05 [ 11] [ 6] [164152] +16:30:05 [ 37] [ 12] [57916164152] +16:30:05 [ 70] [ 3] [301] +16:30:05 ============================================================================ +16:30:05 + + +waiting on router queue for slot.... +16:30:05 Sending to : +16:30:05 ============================================================================ +16:30:05 ============================================================================ +16:30:05 Slot Id : <16> +16:30:05 Transaction Type : RESPONSE +16:30:05 Received From : +16:30:05 ============================================================================ +16:30:05 FNo. Len. Field Value +16:30:05 ============================================================================ +16:30:05 [ 1] [ 4] [0810] +16:30:05 [ 7] [ 10] [0320234152] +16:30:05 [ 11] [ 6] [164152] +16:30:05 [ 37] [ 12] [579161641520] +16:30:05 [ 39] [ 2] [00] +16:30:05 [ 70] [ 3] [810] +16:30:05 ============================================================================ +16:30:05 Calculate Source COMM Id = 6 +16:30:05 ============================================================================ +16:30:05 + + +waiting on router queue for slot.... +16:30:07 ============================================================================ +16:30:07 Slot Id : <492> +16:30:07 Transaction Type : REQUEST +16:30:07 Received From : +16:30:07 ============================================================================ +16:30:07 FNo. Len. Field Value +16:30:07 ============================================================================ +16:30:07 [ 1] [ 4] [0200] +16:30:07 [ 2] [ 16] [6688990103638704] +16:30:07 [ 3] [ 6] [010000] +16:30:07 [ 4] [ 12] [000100000000] +16:30:07 [ 7] [ 10] [0320163002] +16:30:07 [ 11] [ 6] [799869] +16:30:07 [ 12] [ 6] [163002] +16:30:07 [ 13] [ 4] [0320] +16:30:07 [ 15] [ 4] [0320] +16:30:07 [ 18] [ 4] [6011] +16:30:07 [ 22] [ 3] [900] +16:30:07 [ 25] [ 2] [02] +16:30:07 [ 28] [ 9] [D00002000] +16:30:07 [ 32] [ 6] [621354] +16:30:07 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:30:07 [ 37] [ 12] [507903743407] +16:30:07 [ 41] [ 8] [06002400] +16:30:07 [ 42] [ 15] [NATIVE ] +16:30:07 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:30:07 [ 49] [ 3] [418] +16:30:07 [ 52] [ 16] [170FE55C2E74E4F3] +16:30:07 ============================================================================ +16:30:07 + + +waiting on router queue for slot.... +16:30:07 Sending to : +16:30:07 ============================================================================ +16:30:07 Sending to : +16:30:07 ============================================================================ +16:30:07 ============================================================================ +16:30:07 Slot Id : <492> +16:30:07 Transaction Type : REQUEST +16:30:07 Received From : +16:30:07 ============================================================================ +16:30:07 FNo. Len. Field Value +16:30:07 ============================================================================ +16:30:07 [ 1] [ 4] [0200] +16:30:07 [ 2] [ 16] [6688990103638704] +16:30:07 [ 3] [ 6] [010000] +16:30:07 [ 4] [ 12] [000100000000] +16:30:07 [ 7] [ 10] [0320163002] +16:30:07 [ 11] [ 6] [799869] +16:30:07 [ 12] [ 6] [163002] +16:30:07 [ 13] [ 4] [0320] +16:30:07 [ 15] [ 4] [0320] +16:30:07 [ 18] [ 4] [6011] +16:30:07 [ 22] [ 3] [900] +16:30:07 [ 25] [ 2] [02] +16:30:07 [ 28] [ 9] [D00002000] +16:30:07 [ 32] [ 6] [621354] +16:30:07 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:30:07 [ 37] [ 12] [507903743407] +16:30:07 [ 41] [ 8] [06002400] +16:30:07 [ 42] [ 15] [NATIVE ] +16:30:07 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:30:07 [ 49] [ 3] [418] +16:30:07 [ 52] [ 16] [170FE55C2E74E4F3] +16:30:07 ============================================================================ +16:30:07 + + +waiting on router queue for slot.... +16:30:07 Sending to : +16:30:07 ============================================================================ +16:30:07 ============================================================================ +16:30:07 Slot Id : <492> +16:30:07 Transaction Type : REQUEST +16:30:07 Received From : +16:30:07 ============================================================================ +16:30:07 FNo. Len. Field Value +16:30:07 ============================================================================ +16:30:07 [ 1] [ 4] [0200] +16:30:07 [ 2] [ 16] [6688990103638704] +16:30:07 [ 3] [ 6] [010000] +16:30:07 [ 4] [ 12] [000100000000] +16:30:07 [ 7] [ 10] [0320163002] +16:30:07 [ 11] [ 6] [799869] +16:30:07 [ 12] [ 6] [163002] +16:30:07 [ 13] [ 4] [0320] +16:30:07 [ 15] [ 4] [0320] +16:30:07 [ 18] [ 4] [6011] +16:30:07 [ 22] [ 3] [900] +16:30:07 [ 25] [ 2] [02] +16:30:07 [ 28] [ 9] [D00002000] +16:30:07 [ 32] [ 6] [621354] +16:30:07 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:30:07 [ 37] [ 12] [507903743407] +16:30:07 [ 41] [ 8] [06002400] +16:30:07 [ 42] [ 15] [NATIVE ] +16:30:07 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:30:07 [ 49] [ 3] [418] +16:30:07 [ 52] [ 16] [CBE3DAD4CBB88304] +16:30:07 ============================================================================ +16:30:07 + + +waiting on router queue for slot.... +16:30:07 Sending to : <4> +16:30:07 ============================================================================ +16:30:07 ============================================================================ +16:30:07 Slot Id : <492> +16:30:07 Transaction Type : RESPONSE +16:30:07 Received From : +16:30:07 ============================================================================ +16:30:07 FNo. Len. Field Value +16:30:07 ============================================================================ +16:30:07 [ 1] [ 4] [0210] +16:30:07 [ 2] [ 16] [6688990103638704] +16:30:07 [ 3] [ 6] [010000] +16:30:07 [ 4] [ 12] [000100000000] +16:30:07 [ 11] [ 6] [799869] +16:30:07 [ 12] [ 6] [163002] +16:30:07 [ 15] [ 4] [0320] +16:30:07 [ 18] [ 4] [6011] +16:30:07 [ 32] [ 6] [621354] +16:30:07 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:30:07 [ 37] [ 12] [507903743407] +16:30:07 [ 39] [ 2] [51] +16:30:07 [ 41] [ 8] [06002400] +16:30:07 [ 49] [ 3] [418] +16:30:07 [ 54] [ 0] [] +16:30:07 ============================================================================ +16:30:07 Sending to : +16:30:07 ============================================================================ +16:30:07 + + +waiting on router queue for slot.... +16:30:08 ============================================================================ +16:30:08 Slot Id : <454> +16:30:08 Transaction Type : REQUEST +16:30:08 Received From : +16:30:08 ============================================================================ +16:30:08 FNo. Len. Field Value +16:30:08 ============================================================================ +16:30:08 [ 1] [ 4] [0200] +16:30:08 [ 2] [ 16] [6213544002242748] +16:30:08 [ 3] [ 6] [301000] +16:30:08 [ 4] [ 12] [000000000000] +16:30:08 [ 7] [ 10] [0320162758] +16:30:08 [ 11] [ 6] [951779] +16:30:08 [ 12] [ 6] [162758] +16:30:08 [ 13] [ 4] [0320] +16:30:08 [ 15] [ 4] [0320] +16:30:08 [ 18] [ 4] [6011] +16:30:08 [ 19] [ 3] [418] +16:30:08 [ 22] [ 3] [021] +16:30:08 [ 25] [ 2] [01] +16:30:08 [ 28] [ 9] [D00000000] +16:30:08 [ 32] [ 6] [668899] +16:30:08 [ 35] [ 32] [6213544002242748=491212014274787] +16:30:08 [ 37] [ 12] [507900577956] +16:30:08 [ 41] [ 8] [03014005] +16:30:08 [ 42] [ 15] [APT ] +16:30:08 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:30:08 [ 49] [ 3] [418] +16:30:08 [ 52] [ 16] [CD9F5BB328EAB17E] +16:30:08 ============================================================================ +16:30:08 + + +waiting on router queue for slot.... +16:30:08 Sending to : +16:30:08 ============================================================================ +16:30:08 Sending to : +16:30:08 ============================================================================ +16:30:08 ============================================================================ +16:30:08 Slot Id : <492> +16:30:08 Transaction Type : RESPONSE +16:30:08 Received From : +16:30:08 ============================================================================ +16:30:08 FNo. Len. Field Value +16:30:08 ============================================================================ +16:30:08 [ 1] [ 4] [0210] +16:30:08 [ 2] [ 16] [6688990103638704] +16:30:08 [ 3] [ 6] [010000] +16:30:08 [ 4] [ 12] [000100000000] +16:30:08 [ 11] [ 6] [799869] +16:30:08 [ 12] [ 6] [163002] +16:30:08 [ 15] [ 4] [0320] +16:30:08 [ 18] [ 4] [6011] +16:30:08 [ 32] [ 6] [621354] +16:30:08 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:30:08 [ 37] [ 12] [507903743407] +16:30:08 [ 39] [ 2] [51] +16:30:08 [ 41] [ 8] [06002400] +16:30:08 [ 49] [ 3] [418] +16:30:08 [ 54] [ 0] [] +16:30:08 ============================================================================ +16:30:08 Calculate Source COMM Id = 0 +16:30:08 ============================================================================ +16:30:08 + + +waiting on router queue for slot.... +16:30:08 ============================================================================ +16:30:08 Slot Id : <454> +16:30:08 Transaction Type : REQUEST +16:30:08 Received From : +16:30:08 ============================================================================ +16:30:08 FNo. Len. Field Value +16:30:08 ============================================================================ +16:30:08 [ 1] [ 4] [0200] +16:30:08 [ 2] [ 16] [6213544002242748] +16:30:08 [ 3] [ 6] [301000] +16:30:08 [ 4] [ 12] [000000000000] +16:30:08 [ 7] [ 10] [0320162758] +16:30:08 [ 11] [ 6] [951779] +16:30:08 [ 12] [ 6] [162758] +16:30:08 [ 13] [ 4] [0320] +16:30:08 [ 15] [ 4] [0320] +16:30:08 [ 18] [ 4] [6011] +16:30:08 [ 19] [ 3] [418] +16:30:08 [ 22] [ 3] [021] +16:30:08 [ 25] [ 2] [01] +16:30:08 [ 28] [ 9] [D00000000] +16:30:08 [ 32] [ 6] [668899] +16:30:08 [ 35] [ 32] [6213544002242748=491212014274787] +16:30:08 [ 37] [ 12] [507900577956] +16:30:08 [ 41] [ 8] [03014005] +16:30:08 [ 42] [ 15] [APT ] +16:30:08 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:30:08 [ 49] [ 3] [418] +16:30:08 [ 52] [ 16] [CD9F5BB328EAB17E] +16:30:08 ============================================================================ +16:30:08 + + +waiting on router queue for slot.... +16:30:08 Sending to : +16:30:08 ============================================================================ +16:30:08 ============================================================================ +16:30:08 Slot Id : <454> +16:30:08 Transaction Type : REQUEST +16:30:08 Received From : +16:30:08 ============================================================================ +16:30:08 FNo. Len. Field Value +16:30:08 ============================================================================ +16:30:08 [ 1] [ 4] [0200] +16:30:08 [ 2] [ 16] [6213544002242748] +16:30:08 [ 3] [ 6] [301000] +16:30:08 [ 4] [ 12] [000000000000] +16:30:08 [ 7] [ 10] [0320162758] +16:30:08 [ 11] [ 6] [951779] +16:30:08 [ 12] [ 6] [162758] +16:30:08 [ 13] [ 4] [0320] +16:30:08 [ 15] [ 4] [0320] +16:30:08 [ 18] [ 4] [6011] +16:30:08 [ 19] [ 3] [418] +16:30:08 [ 22] [ 3] [021] +16:30:08 [ 25] [ 2] [01] +16:30:08 [ 28] [ 9] [D00000000] +16:30:08 [ 32] [ 6] [668899] +16:30:08 [ 35] [ 32] [6213544002242748=491212014274787] +16:30:08 [ 37] [ 12] [507900577956] +16:30:08 [ 41] [ 8] [03014005] +16:30:08 [ 42] [ 15] [APT ] +16:30:08 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:30:08 [ 49] [ 3] [418] +16:30:08 [ 52] [ 16] [82A6C42B7D3BCADD] +16:30:08 ============================================================================ +16:30:08 + + +waiting on router queue for slot.... +16:30:08 Sending to : <0> +16:30:08 ============================================================================ +16:30:09 ============================================================================ +16:30:09 Slot Id : <454> +16:30:09 Transaction Type : RESPONSE +16:30:09 Received From : +16:30:09 ============================================================================ +16:30:09 FNo. Len. Field Value +16:30:09 ============================================================================ +16:30:09 [ 1] [ 4] [0210] +16:30:09 [ 2] [ 16] [6213544002242748] +16:30:09 [ 3] [ 6] [301000] +16:30:09 [ 4] [ 12] [000000000000] +16:30:09 [ 7] [ 10] [0320162758] +16:30:09 [ 11] [ 6] [951779] +16:30:09 [ 12] [ 6] [162758] +16:30:09 [ 13] [ 4] [0320] +16:30:09 [ 15] [ 4] [0320] +16:30:09 [ 18] [ 4] [6011] +16:30:09 [ 19] [ 3] [418] +16:30:09 [ 22] [ 3] [021] +16:30:09 [ 32] [ 6] [668899] +16:30:09 [ 35] [ 32] [6213544002242748=491212014274787] +16:30:09 [ 37] [ 12] [507900577956] +16:30:09 [ 38] [ 6] [163004] +16:30:09 [ 39] [ 2] [75] +16:30:09 [ 41] [ 8] [03014005] +16:30:09 [ 49] [ 3] [418] +16:30:09 ============================================================================ +16:30:09 Sending to : +16:30:09 ============================================================================ +16:30:09 + + +waiting on router queue for slot.... +16:30:09 ============================================================================ +16:30:09 Slot Id : <13> +16:30:09 Transaction Type : REQUEST +16:30:09 Received From : +16:30:09 ============================================================================ +16:30:09 FNo. Len. Field Value +16:30:09 ============================================================================ +16:30:09 [ 1] [ 4] [0800] +16:30:09 [ 7] [ 10] [0320092916] +16:30:09 [ 11] [ 6] [157246] +16:30:09 [ 70] [ 3] [301] +16:30:09 ============================================================================ +16:30:09 + + +waiting on router queue for slot.... +16:30:09 Sending to : +16:30:09 ============================================================================ +16:30:09 ============================================================================ +16:30:09 Slot Id : <13> +16:30:09 Transaction Type : RESPONSE +16:30:09 Received From : +16:30:09 ============================================================================ +16:30:09 FNo. Len. Field Value +16:30:09 ============================================================================ +16:30:09 [ 1] [ 4] [0810] +16:30:09 [ 7] [ 10] [0320092916] +16:30:09 [ 11] [ 6] [157246] +16:30:09 [ 39] [ 2] [00] +16:30:09 [ 70] [ 3] [301] +16:30:09 ============================================================================ +16:30:09 Calculate Source COMM Id = 2 +16:30:09 ============================================================================ +16:30:09 + + +waiting on router queue for slot.... +16:30:10 ============================================================================ +16:30:10 Slot Id : <454> +16:30:10 Transaction Type : RESPONSE +16:30:10 Received From : +16:30:10 ============================================================================ +16:30:10 FNo. Len. Field Value +16:30:10 ============================================================================ +16:30:10 [ 1] [ 4] [0210] +16:30:10 [ 2] [ 16] [6213544002242748] +16:30:10 [ 3] [ 6] [301000] +16:30:10 [ 4] [ 12] [000000000000] +16:30:10 [ 7] [ 10] [0320162758] +16:30:10 [ 11] [ 6] [951779] +16:30:10 [ 12] [ 6] [162758] +16:30:10 [ 13] [ 4] [0320] +16:30:10 [ 15] [ 4] [0320] +16:30:10 [ 18] [ 4] [6011] +16:30:10 [ 19] [ 3] [418] +16:30:10 [ 22] [ 3] [021] +16:30:10 [ 32] [ 6] [668899] +16:30:10 [ 35] [ 32] [6213544002242748=491212014274787] +16:30:10 [ 37] [ 12] [507900577956] +16:30:10 [ 38] [ 6] [163004] +16:30:10 [ 39] [ 2] [75] +16:30:10 [ 41] [ 8] [03014005] +16:30:10 [ 49] [ 3] [418] +16:30:10 ============================================================================ +16:30:10 Calculate Source COMM Id = 4 +16:30:10 ============================================================================ +16:30:10 + + +waiting on router queue for slot.... +16:30:17 ============================================================================ +16:30:17 Slot Id : <12> +16:30:17 Transaction Type : REQUEST +16:30:17 Received From : +16:30:17 ============================================================================ +16:30:17 FNo. Len. Field Value +16:30:17 ============================================================================ +16:30:17 [ 1] [ 4] [0200] +16:30:17 [ 2] [ 16] [6213545001030927] +16:30:17 [ 3] [ 6] [011000] +16:30:17 [ 4] [ 12] [000030000000] +16:30:17 [ 7] [ 10] [0320163804] +16:30:17 [ 11] [ 6] [242348] +16:30:17 [ 12] [ 6] [163804] +16:30:17 [ 13] [ 4] [0320] +16:30:17 [ 14] [ 4] [4912] +16:30:17 [ 15] [ 4] [0320] +16:30:17 [ 18] [ 4] [6011] +16:30:17 [ 22] [ 3] [900] +16:30:17 [ 25] [ 2] [02] +16:30:17 [ 28] [ 9] [D00002000] +16:30:17 [ 32] [ 6] [220699] +16:30:17 [ 35] [ 32] [6213545001030927=491212013092436] +16:30:17 [ 37] [ 12] [507900341591] +16:30:17 [ 41] [ 8] [01002000] +16:30:17 [ 42] [ 15] [APTRA ] +16:30:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:30:17 [ 49] [ 3] [418] +16:30:17 [ 52] [ 16] [068983F1068AB5A9] +16:30:17 ============================================================================ +16:30:17 + + +waiting on router queue for slot.... +16:30:17 Sending to : +16:30:17 ============================================================================ +16:30:17 Sending to : +16:30:17 ============================================================================ +16:30:17 ============================================================================ +16:30:17 Slot Id : <12> +16:30:17 Transaction Type : REQUEST +16:30:17 Received From : +16:30:17 ============================================================================ +16:30:17 FNo. Len. Field Value +16:30:17 ============================================================================ +16:30:17 [ 1] [ 4] [0200] +16:30:17 [ 2] [ 16] [6213545001030927] +16:30:17 [ 3] [ 6] [011000] +16:30:17 [ 4] [ 12] [000030000000] +16:30:17 [ 7] [ 10] [0320163804] +16:30:17 [ 11] [ 6] [242348] +16:30:17 [ 12] [ 6] [163804] +16:30:17 [ 13] [ 4] [0320] +16:30:17 [ 14] [ 4] [4912] +16:30:17 [ 15] [ 4] [0320] +16:30:17 [ 18] [ 4] [6011] +16:30:17 [ 22] [ 3] [900] +16:30:17 [ 25] [ 2] [02] +16:30:17 [ 28] [ 9] [D00002000] +16:30:17 [ 32] [ 6] [220699] +16:30:17 [ 35] [ 32] [6213545001030927=491212013092436] +16:30:17 [ 37] [ 12] [507900341591] +16:30:17 [ 41] [ 8] [01002000] +16:30:17 [ 42] [ 15] [APTRA ] +16:30:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:30:17 [ 49] [ 3] [418] +16:30:17 [ 52] [ 16] [068983F1068AB5A9] +16:30:17 ============================================================================ +16:30:17 + + +waiting on router queue for slot.... +16:30:17 Sending to : +16:30:17 ============================================================================ +16:30:17 ============================================================================ +16:30:17 Slot Id : <12> +16:30:17 Transaction Type : REQUEST +16:30:17 Received From : +16:30:17 ============================================================================ +16:30:17 FNo. Len. Field Value +16:30:17 ============================================================================ +16:30:17 [ 1] [ 4] [0200] +16:30:17 [ 2] [ 16] [6213545001030927] +16:30:17 [ 3] [ 6] [011000] +16:30:17 [ 4] [ 12] [000030000000] +16:30:17 [ 7] [ 10] [0320163804] +16:30:17 [ 11] [ 6] [242348] +16:30:17 [ 12] [ 6] [163804] +16:30:17 [ 13] [ 4] [0320] +16:30:17 [ 14] [ 4] [4912] +16:30:17 [ 15] [ 4] [0320] +16:30:17 [ 18] [ 4] [6011] +16:30:17 [ 22] [ 3] [900] +16:30:17 [ 25] [ 2] [02] +16:30:17 [ 28] [ 9] [D00002000] +16:30:17 [ 32] [ 6] [220699] +16:30:17 [ 35] [ 32] [6213545001030927=491212013092436] +16:30:17 [ 37] [ 12] [507900341591] +16:30:17 [ 41] [ 8] [01002000] +16:30:17 [ 42] [ 15] [APTRA ] +16:30:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:30:17 [ 49] [ 3] [418] +16:30:17 [ 52] [ 16] [02CBCFAEB936891D] +16:30:17 ============================================================================ +16:30:17 + + +waiting on router queue for slot.... +16:30:17 Sending to : <0> +16:30:17 ============================================================================ +16:30:18 ============================================================================ +16:30:18 Slot Id : <12> +16:30:18 Transaction Type : RESPONSE +16:30:18 Received From : +16:30:18 ============================================================================ +16:30:18 FNo. Len. Field Value +16:30:18 ============================================================================ +16:30:18 [ 1] [ 4] [0210] +16:30:18 [ 2] [ 16] [6213545001030927] +16:30:18 [ 3] [ 6] [011000] +16:30:18 [ 4] [ 12] [000030000000] +16:30:18 [ 7] [ 10] [0320163804] +16:30:18 [ 11] [ 6] [242348] +16:30:18 [ 12] [ 6] [163804] +16:30:18 [ 13] [ 4] [0320] +16:30:18 [ 15] [ 4] [0320] +16:30:18 [ 18] [ 4] [6011] +16:30:18 [ 32] [ 6] [220699] +16:30:18 [ 35] [ 32] [6213545001030927=491212013092436] +16:30:18 [ 37] [ 12] [507900341591] +16:30:18 [ 38] [ 6] [846840] +16:30:18 [ 39] [ 2] [00] +16:30:18 [ 41] [ 8] [01002000] +16:30:18 [ 49] [ 3] [418] +16:30:18 [ 54] [ 40] [1001418C0000659859831002418C000065985983] +16:30:18 ============================================================================ +16:30:18 Sending to : +16:30:18 ============================================================================ +16:30:18 + + +waiting on router queue for slot.... +16:30:19 ============================================================================ +16:30:19 Slot Id : <12> +16:30:19 Transaction Type : RESPONSE +16:30:19 Received From : +16:30:19 ============================================================================ +16:30:19 FNo. Len. Field Value +16:30:19 ============================================================================ +16:30:19 [ 1] [ 4] [0210] +16:30:19 [ 2] [ 16] [6213545001030927] +16:30:19 [ 3] [ 6] [011000] +16:30:19 [ 4] [ 12] [000030000000] +16:30:19 [ 7] [ 10] [0320163804] +16:30:19 [ 11] [ 6] [242348] +16:30:19 [ 12] [ 6] [163804] +16:30:19 [ 13] [ 4] [0320] +16:30:19 [ 15] [ 4] [0320] +16:30:19 [ 18] [ 4] [6011] +16:30:19 [ 32] [ 6] [220699] +16:30:19 [ 35] [ 32] [6213545001030927=491212013092436] +16:30:19 [ 37] [ 12] [507900341591] +16:30:19 [ 38] [ 6] [846840] +16:30:19 [ 39] [ 2] [00] +16:30:19 [ 41] [ 8] [01002000] +16:30:19 [ 49] [ 3] [418] +16:30:19 [ 54] [ 40] [1001418C0000659859831002418C000065985983] +16:30:19 ============================================================================ +16:30:19 Calculate Source COMM Id = 1 +16:30:19 ============================================================================ +16:30:19 + + +waiting on router queue for slot.... +16:30:19 ============================================================================ +16:30:19 Slot Id : <22> +16:30:19 Transaction Type : REQUEST +16:30:19 Received From : +16:30:19 ============================================================================ +16:30:19 FNo. Len. Field Value +16:30:19 ============================================================================ +16:30:19 [ 1] [ 4] [0800] +16:30:19 [ 7] [ 10] [0320092926] +16:30:19 [ 11] [ 6] [157247] +16:30:19 [ 70] [ 3] [301] +16:30:19 ============================================================================ +16:30:19 + + +waiting on router queue for slot.... +16:30:19 Sending to : +16:30:19 ============================================================================ +16:30:19 ============================================================================ +16:30:19 Slot Id : <22> +16:30:19 Transaction Type : RESPONSE +16:30:19 Received From : +16:30:19 ============================================================================ +16:30:19 FNo. Len. Field Value +16:30:19 ============================================================================ +16:30:19 [ 1] [ 4] [0810] +16:30:19 [ 7] [ 10] [0320092926] +16:30:19 [ 11] [ 6] [157247] +16:30:19 [ 39] [ 2] [00] +16:30:19 [ 70] [ 3] [301] +16:30:19 ============================================================================ +16:30:19 Calculate Source COMM Id = 2 +16:30:19 ============================================================================ +16:30:19 + + +waiting on router queue for slot.... +16:30:23 ============================================================================ +16:30:23 Slot Id : <469> +16:30:23 Transaction Type : REQUEST +16:30:23 Received From : +16:30:23 ============================================================================ +16:30:23 FNo. Len. Field Value +16:30:23 ============================================================================ +16:30:23 [ 1] [ 4] [0200] +16:30:23 [ 2] [ 16] [6213543000141910] +16:30:23 [ 3] [ 6] [301000] +16:30:23 [ 7] [ 10] [0320092929] +16:30:23 [ 11] [ 6] [270465] +16:30:23 [ 12] [ 6] [162929] +16:30:23 [ 13] [ 4] [0320] +16:30:23 [ 14] [ 4] [4912] +16:30:23 [ 15] [ 4] [0320] +16:30:23 [ 18] [ 4] [6011] +16:30:23 [ 19] [ 3] [418] +16:30:23 [ 22] [ 3] [021] +16:30:23 [ 25] [ 2] [01] +16:30:23 [ 32] [ 6] [180893] +16:30:23 [ 35] [ 32] [6213543000141910=491212014191019] +16:30:23 [ 37] [ 12] [507909270465] +16:30:23 [ 41] [ 8] [0102SAPA] +16:30:23 [ 42] [ 15] [999999 ] +16:30:23 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +16:30:23 [ 49] [ 3] [418] +16:30:23 [ 52] [ 16] [493E9A9515730C55] +16:30:23 ============================================================================ +16:30:23 + + +waiting on router queue for slot.... +16:30:23 Sending to : +16:30:23 ============================================================================ +16:30:23 Sending to : +16:30:23 ============================================================================ +16:30:23 ============================================================================ +16:30:23 Slot Id : <469> +16:30:23 Transaction Type : REQUEST +16:30:23 Received From : +16:30:23 ============================================================================ +16:30:23 FNo. Len. Field Value +16:30:23 ============================================================================ +16:30:23 [ 1] [ 4] [0200] +16:30:23 [ 2] [ 16] [6213543000141910] +16:30:23 [ 3] [ 6] [301000] +16:30:23 [ 7] [ 10] [0320092929] +16:30:23 [ 11] [ 6] [270465] +16:30:23 [ 12] [ 6] [162929] +16:30:23 [ 13] [ 4] [0320] +16:30:23 [ 14] [ 4] [4912] +16:30:23 [ 15] [ 4] [0320] +16:30:23 [ 18] [ 4] [6011] +16:30:23 [ 19] [ 3] [418] +16:30:23 [ 22] [ 3] [021] +16:30:23 [ 25] [ 2] [01] +16:30:23 [ 32] [ 6] [180893] +16:30:23 [ 35] [ 32] [6213543000141910=491212014191019] +16:30:23 [ 37] [ 12] [507909270465] +16:30:23 [ 41] [ 8] [0102SAPA] +16:30:23 [ 42] [ 15] [999999 ] +16:30:23 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +16:30:23 [ 49] [ 3] [418] +16:30:23 [ 52] [ 16] [493E9A9515730C55] +16:30:23 ============================================================================ +16:30:23 + + +waiting on router queue for slot.... +16:30:23 Sending to : +16:30:23 ============================================================================ +16:30:23 ============================================================================ +16:30:23 Slot Id : <469> +16:30:23 Transaction Type : REQUEST +16:30:23 Received From : +16:30:23 ============================================================================ +16:30:23 FNo. Len. Field Value +16:30:23 ============================================================================ +16:30:23 [ 1] [ 4] [0200] +16:30:23 [ 2] [ 16] [6213543000141910] +16:30:23 [ 3] [ 6] [301000] +16:30:23 [ 7] [ 10] [0320092929] +16:30:23 [ 11] [ 6] [270465] +16:30:23 [ 12] [ 6] [162929] +16:30:23 [ 13] [ 4] [0320] +16:30:23 [ 14] [ 4] [4912] +16:30:23 [ 15] [ 4] [0320] +16:30:23 [ 18] [ 4] [6011] +16:30:23 [ 19] [ 3] [418] +16:30:23 [ 22] [ 3] [021] +16:30:23 [ 25] [ 2] [01] +16:30:23 [ 32] [ 6] [180893] +16:30:23 [ 35] [ 32] [6213543000141910=491212014191019] +16:30:23 [ 37] [ 12] [507909270465] +16:30:23 [ 41] [ 8] [0102SAPA] +16:30:23 [ 42] [ 15] [999999 ] +16:30:23 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +16:30:23 [ 49] [ 3] [418] +16:30:23 [ 52] [ 16] [9EA97CF48CA19E5E] +16:30:23 ============================================================================ +16:30:23 + + +waiting on router queue for slot.... +16:30:23 Sending to : <0> +16:30:23 ============================================================================ +16:30:23 ============================================================================ +16:30:23 Slot Id : <469> +16:30:23 Transaction Type : RESPONSE +16:30:23 Received From : +16:30:23 ============================================================================ +16:30:23 FNo. Len. Field Value +16:30:23 ============================================================================ +16:30:23 [ 1] [ 4] [0210] +16:30:23 [ 2] [ 16] [6213543000141910] +16:30:23 [ 3] [ 6] [301000] +16:30:23 [ 4] [ 12] [000000000000] +16:30:23 [ 7] [ 10] [0320092929] +16:30:23 [ 11] [ 6] [270465] +16:30:23 [ 12] [ 6] [162929] +16:30:23 [ 13] [ 4] [0320] +16:30:23 [ 15] [ 4] [0320] +16:30:23 [ 18] [ 4] [6011] +16:30:23 [ 19] [ 3] [418] +16:30:23 [ 32] [ 6] [180893] +16:30:23 [ 35] [ 32] [6213543000141910=491212014191019] +16:30:23 [ 37] [ 12] [507909270465] +16:30:23 [ 38] [ 6] [640227] +16:30:23 [ 39] [ 2] [00] +16:30:23 [ 41] [ 8] [0102SAPA] +16:30:23 [ 49] [ 3] [418] +16:30:23 [ 54] [ 40] [1001418C0000257223581002418C000025722358] +16:30:23 ============================================================================ +16:30:23 Sending to : +16:30:23 ============================================================================ +16:30:23 + + +waiting on router queue for slot.... +16:30:24 ============================================================================ +16:30:24 Slot Id : <17> +16:30:24 Transaction Type : REQUEST +16:30:24 Received From : +16:30:24 ============================================================================ +16:30:24 FNo. Len. Field Value +16:30:24 ============================================================================ +16:30:24 [ 1] [ 4] [0200] +16:30:24 [ 2] [ 16] [6688990103062202] +16:30:24 [ 3] [ 6] [011000] +16:30:24 [ 4] [ 12] [000040000000] +16:30:24 [ 7] [ 10] [0320163019] +16:30:24 [ 11] [ 6] [799957] +16:30:24 [ 12] [ 6] [163019] +16:30:24 [ 13] [ 4] [0320] +16:30:24 [ 15] [ 4] [0320] +16:30:24 [ 18] [ 4] [6011] +16:30:24 [ 22] [ 3] [900] +16:30:24 [ 25] [ 2] [02] +16:30:24 [ 28] [ 9] [D00002000] +16:30:24 [ 32] [ 6] [621354] +16:30:24 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:30:24 [ 37] [ 12] [507902577823] +16:30:24 [ 41] [ 8] [05004000] +16:30:24 [ 42] [ 15] [NATIVE ] +16:30:24 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:30:24 [ 49] [ 3] [418] +16:30:24 [ 52] [ 16] [8C92B539256FFA7B] +16:30:24 ============================================================================ +16:30:24 + + +waiting on router queue for slot.... +16:30:24 Sending to : +16:30:24 ============================================================================ +16:30:24 Sending to : +16:30:24 ============================================================================ +16:30:25 ============================================================================ +16:30:25 Slot Id : <17> +16:30:25 Transaction Type : REQUEST +16:30:25 Received From : +16:30:25 ============================================================================ +16:30:25 FNo. Len. Field Value +16:30:25 ============================================================================ +16:30:25 [ 1] [ 4] [0200] +16:30:25 [ 2] [ 16] [6688990103062202] +16:30:25 [ 3] [ 6] [011000] +16:30:25 [ 4] [ 12] [000040000000] +16:30:25 [ 7] [ 10] [0320163019] +16:30:25 [ 11] [ 6] [799957] +16:30:25 [ 12] [ 6] [163019] +16:30:25 [ 13] [ 4] [0320] +16:30:25 [ 15] [ 4] [0320] +16:30:25 [ 18] [ 4] [6011] +16:30:25 [ 22] [ 3] [900] +16:30:25 [ 25] [ 2] [02] +16:30:25 [ 28] [ 9] [D00002000] +16:30:25 [ 32] [ 6] [621354] +16:30:25 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:30:25 [ 37] [ 12] [507902577823] +16:30:25 [ 41] [ 8] [05004000] +16:30:25 [ 42] [ 15] [NATIVE ] +16:30:25 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:30:25 [ 49] [ 3] [418] +16:30:25 [ 52] [ 16] [8C92B539256FFA7B] +16:30:25 ============================================================================ +16:30:25 + + +waiting on router queue for slot.... +16:30:25 Sending to : +16:30:25 ============================================================================ +16:30:25 ============================================================================ +16:30:25 Slot Id : <17> +16:30:25 Transaction Type : REQUEST +16:30:25 Received From : +16:30:25 ============================================================================ +16:30:25 FNo. Len. Field Value +16:30:25 ============================================================================ +16:30:25 [ 1] [ 4] [0200] +16:30:25 [ 2] [ 16] [6688990103062202] +16:30:25 [ 3] [ 6] [011000] +16:30:25 [ 4] [ 12] [000040000000] +16:30:25 [ 7] [ 10] [0320163019] +16:30:25 [ 11] [ 6] [799957] +16:30:25 [ 12] [ 6] [163019] +16:30:25 [ 13] [ 4] [0320] +16:30:25 [ 15] [ 4] [0320] +16:30:25 [ 18] [ 4] [6011] +16:30:25 [ 22] [ 3] [900] +16:30:25 [ 25] [ 2] [02] +16:30:25 [ 28] [ 9] [D00002000] +16:30:25 [ 32] [ 6] [621354] +16:30:25 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:30:25 [ 37] [ 12] [507902577823] +16:30:25 [ 41] [ 8] [05004000] +16:30:25 [ 42] [ 15] [NATIVE ] +16:30:25 [ 43] [ 40] [BAN NUMBAK MuangnumborkLAO] +16:30:25 [ 49] [ 3] [418] +16:30:25 [ 52] [ 16] [2BAA8AB46A247FF6] +16:30:25 ============================================================================ +16:30:25 + + +waiting on router queue for slot.... +16:30:25 Sending to : <4> +16:30:25 ============================================================================ +16:30:25 ============================================================================ +16:30:25 Slot Id : <17> +16:30:25 Transaction Type : RESPONSE +16:30:25 Received From : +16:30:25 ============================================================================ +16:30:25 FNo. Len. Field Value +16:30:25 ============================================================================ +16:30:25 [ 1] [ 4] [0210] +16:30:25 [ 2] [ 16] [6688990103062202] +16:30:25 [ 3] [ 6] [011000] +16:30:25 [ 4] [ 12] [000040000000] +16:30:25 [ 7] [ 10] [0320163019] +16:30:25 [ 11] [ 6] [799957] +16:30:25 [ 12] [ 6] [163019] +16:30:25 [ 13] [ 4] [0320] +16:30:25 [ 15] [ 4] [0320] +16:30:25 [ 18] [ 4] [6011] +16:30:25 [ 22] [ 3] [021] +16:30:25 [ 32] [ 6] [621354] +16:30:25 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:30:25 [ 37] [ 12] [507902577823] +16:30:25 [ 38] [ 6] [162815] +16:30:25 [ 39] [ 2] [75] +16:30:25 [ 41] [ 8] [05004000] +16:30:25 [ 49] [ 3] [418] +16:30:25 ============================================================================ +16:30:25 Sending to : +16:30:25 ============================================================================ +16:30:25 + + +waiting on router queue for slot.... +16:30:25 ============================================================================ +16:30:25 Slot Id : <469> +16:30:25 Transaction Type : RESPONSE +16:30:25 Received From : +16:30:25 ============================================================================ +16:30:25 FNo. Len. Field Value +16:30:25 ============================================================================ +16:30:25 [ 1] [ 4] [0210] +16:30:25 [ 2] [ 16] [6213543000141910] +16:30:25 [ 3] [ 6] [301000] +16:30:25 [ 4] [ 12] [000000000000] +16:30:25 [ 7] [ 10] [0320092929] +16:30:25 [ 11] [ 6] [270465] +16:30:25 [ 12] [ 6] [162929] +16:30:25 [ 13] [ 4] [0320] +16:30:25 [ 15] [ 4] [0320] +16:30:25 [ 18] [ 4] [6011] +16:30:25 [ 19] [ 3] [418] +16:30:25 [ 32] [ 6] [180893] +16:30:25 [ 35] [ 32] [6213543000141910=491212014191019] +16:30:25 [ 37] [ 12] [507909270465] +16:30:25 [ 38] [ 6] [640227] +16:30:25 [ 39] [ 2] [00] +16:30:25 [ 41] [ 8] [0102SAPA] +16:30:25 [ 49] [ 3] [418] +16:30:25 [ 54] [ 40] [1001418C0000257223581002418C000025722358] +16:30:25 ============================================================================ +16:30:25 Calculate Source COMM Id = 2 +16:30:25 ============================================================================ +16:30:25 + + +waiting on router queue for slot.... +16:30:25 ============================================================================ +16:30:25 Slot Id : <494> +16:30:25 Transaction Type : REQUEST +16:30:25 Received From : +16:30:25 ============================================================================ +16:30:25 FNo. Len. Field Value +16:30:25 ============================================================================ +16:30:25 [ 1] [ 4] [0200] +16:30:25 [ 2] [ 16] [1808931800005819] +16:30:25 [ 3] [ 6] [010000] +16:30:25 [ 4] [ 12] [000050000000] +16:30:25 [ 7] [ 10] [0320163020] +16:30:25 [ 11] [ 6] [799962] +16:30:25 [ 12] [ 6] [163020] +16:30:25 [ 13] [ 4] [0320] +16:30:25 [ 15] [ 4] [0320] +16:30:25 [ 18] [ 4] [6011] +16:30:25 [ 22] [ 3] [900] +16:30:25 [ 25] [ 2] [02] +16:30:25 [ 28] [ 9] [D00002000] +16:30:25 [ 32] [ 6] [621354] +16:30:25 [ 35] [ 27] [1808931800005819=1803500314] +16:30:25 [ 37] [ 12] [507904635873] +16:30:25 [ 41] [ 8] [17000800] +16:30:25 [ 42] [ 15] [NATIVE ] +16:30:25 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:30:25 [ 49] [ 3] [418] +16:30:25 [ 52] [ 16] [FB005D378095F13B] +16:30:25 ============================================================================ +16:30:25 + + +waiting on router queue for slot.... +16:30:25 Sending to : +16:30:25 ============================================================================ +16:30:25 Sending to : +16:30:25 ============================================================================ +16:30:25 ============================================================================ +16:30:25 Slot Id : <494> +16:30:25 Transaction Type : REQUEST +16:30:25 Received From : +16:30:25 ============================================================================ +16:30:25 FNo. Len. Field Value +16:30:25 ============================================================================ +16:30:25 [ 1] [ 4] [0200] +16:30:25 [ 2] [ 16] [1808931800005819] +16:30:25 [ 3] [ 6] [010000] +16:30:25 [ 4] [ 12] [000050000000] +16:30:25 [ 7] [ 10] [0320163020] +16:30:25 [ 11] [ 6] [799962] +16:30:25 [ 12] [ 6] [163020] +16:30:25 [ 13] [ 4] [0320] +16:30:25 [ 15] [ 4] [0320] +16:30:25 [ 18] [ 4] [6011] +16:30:25 [ 22] [ 3] [900] +16:30:25 [ 25] [ 2] [02] +16:30:25 [ 28] [ 9] [D00002000] +16:30:25 [ 32] [ 6] [621354] +16:30:25 [ 35] [ 27] [1808931800005819=1803500314] +16:30:25 [ 37] [ 12] [507904635873] +16:30:25 [ 41] [ 8] [17000800] +16:30:25 [ 42] [ 15] [NATIVE ] +16:30:25 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:30:25 [ 49] [ 3] [418] +16:30:25 [ 52] [ 16] [FB005D378095F13B] +16:30:25 ============================================================================ +16:30:25 + + +waiting on router queue for slot.... +16:30:25 Sending to : +16:30:25 ============================================================================ +16:30:25 ============================================================================ +16:30:25 Slot Id : <494> +16:30:25 Transaction Type : REQUEST +16:30:25 Received From : +16:30:25 ============================================================================ +16:30:25 FNo. Len. Field Value +16:30:25 ============================================================================ +16:30:25 [ 1] [ 4] [0200] +16:30:25 [ 2] [ 16] [1808931800005819] +16:30:25 [ 3] [ 6] [010000] +16:30:25 [ 4] [ 12] [000050000000] +16:30:25 [ 7] [ 10] [0320163020] +16:30:25 [ 11] [ 6] [799962] +16:30:25 [ 12] [ 6] [163020] +16:30:25 [ 13] [ 4] [0320] +16:30:25 [ 15] [ 4] [0320] +16:30:25 [ 18] [ 4] [6011] +16:30:25 [ 22] [ 3] [900] +16:30:25 [ 25] [ 2] [02] +16:30:25 [ 28] [ 9] [D00002000] +16:30:25 [ 32] [ 6] [621354] +16:30:25 [ 35] [ 27] [1808931800005819=1803500314] +16:30:25 [ 37] [ 12] [507904635873] +16:30:25 [ 41] [ 8] [17000800] +16:30:25 [ 42] [ 15] [NATIVE ] +16:30:25 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:30:25 [ 49] [ 3] [418] +16:30:25 [ 52] [ 16] [98BE394402CFEE30] +16:30:25 ============================================================================ +16:30:25 + + +waiting on router queue for slot.... +16:30:25 Sending to : <2> +16:30:25 ============================================================================ +16:30:26 ============================================================================ +16:30:26 Slot Id : <17> +16:30:26 Transaction Type : RESPONSE +16:30:26 Received From : +16:30:26 ============================================================================ +16:30:26 FNo. Len. Field Value +16:30:26 ============================================================================ +16:30:26 [ 1] [ 4] [0210] +16:30:26 [ 2] [ 16] [6688990103062202] +16:30:26 [ 3] [ 6] [011000] +16:30:26 [ 4] [ 12] [000040000000] +16:30:26 [ 7] [ 10] [0320163019] +16:30:26 [ 11] [ 6] [799957] +16:30:26 [ 12] [ 6] [163019] +16:30:26 [ 13] [ 4] [0320] +16:30:26 [ 15] [ 4] [0320] +16:30:26 [ 18] [ 4] [6011] +16:30:26 [ 22] [ 3] [021] +16:30:26 [ 32] [ 6] [621354] +16:30:26 [ 35] [ 37] [6688990103062202=42121231220237600000] +16:30:26 [ 37] [ 12] [507902577823] +16:30:26 [ 38] [ 6] [162815] +16:30:26 [ 39] [ 2] [75] +16:30:26 [ 41] [ 8] [05004000] +16:30:26 [ 49] [ 3] [418] +16:30:26 ============================================================================ +16:30:26 Calculate Source COMM Id = 0 +16:30:26 ============================================================================ +16:30:26 + + +waiting on router queue for slot.... +16:30:27 ============================================================================ +16:30:27 Slot Id : <491> +16:30:27 Transaction Type : REQUEST +16:30:27 Received From : +16:30:27 ============================================================================ +16:30:27 FNo. Len. Field Value +16:30:27 ============================================================================ +16:30:27 [ 1] [ 4] [0200] +16:30:27 [ 2] [ 16] [6688990103282008] +16:30:27 [ 3] [ 6] [010000] +16:30:27 [ 4] [ 12] [000100000000] +16:30:27 [ 7] [ 10] [0320163022] +16:30:27 [ 11] [ 6] [799967] +16:30:27 [ 12] [ 6] [163022] +16:30:27 [ 13] [ 4] [0320] +16:30:27 [ 15] [ 4] [0320] +16:30:27 [ 18] [ 4] [6011] +16:30:27 [ 22] [ 3] [900] +16:30:27 [ 25] [ 2] [02] +16:30:27 [ 28] [ 9] [D00002000] +16:30:27 [ 32] [ 6] [621354] +16:30:27 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:30:27 [ 37] [ 12] [507903499599] +16:30:27 [ 41] [ 8] [06002200] +16:30:27 [ 42] [ 15] [NATIVE ] +16:30:27 [ 43] [ 40] [Beng Market Beng LAO] +16:30:27 [ 49] [ 3] [418] +16:30:27 [ 52] [ 16] [D0FEEEB40B192FF5] +16:30:27 ============================================================================ +16:30:27 + + +waiting on router queue for slot.... +16:30:27 Sending to : +16:30:27 ============================================================================ +16:30:27 Sending to : +16:30:27 ============================================================================ +16:30:27 ============================================================================ +16:30:27 Slot Id : <491> +16:30:27 Transaction Type : REQUEST +16:30:27 Received From : +16:30:27 ============================================================================ +16:30:27 FNo. Len. Field Value +16:30:27 ============================================================================ +16:30:27 [ 1] [ 4] [0200] +16:30:27 [ 2] [ 16] [6688990103282008] +16:30:27 [ 3] [ 6] [010000] +16:30:27 [ 4] [ 12] [000100000000] +16:30:27 [ 7] [ 10] [0320163022] +16:30:27 [ 11] [ 6] [799967] +16:30:27 [ 12] [ 6] [163022] +16:30:27 [ 13] [ 4] [0320] +16:30:27 [ 15] [ 4] [0320] +16:30:27 [ 18] [ 4] [6011] +16:30:27 [ 22] [ 3] [900] +16:30:27 [ 25] [ 2] [02] +16:30:27 [ 28] [ 9] [D00002000] +16:30:27 [ 32] [ 6] [621354] +16:30:27 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:30:27 [ 37] [ 12] [507903499599] +16:30:27 [ 41] [ 8] [06002200] +16:30:27 [ 42] [ 15] [NATIVE ] +16:30:27 [ 43] [ 40] [Beng Market Beng LAO] +16:30:27 [ 49] [ 3] [418] +16:30:27 [ 52] [ 16] [D0FEEEB40B192FF5] +16:30:27 ============================================================================ +16:30:27 + + +waiting on router queue for slot.... +16:30:27 Sending to : +16:30:27 ============================================================================ +16:30:27 ============================================================================ +16:30:27 Slot Id : <491> +16:30:27 Transaction Type : REQUEST +16:30:27 Received From : +16:30:27 ============================================================================ +16:30:27 FNo. Len. Field Value +16:30:27 ============================================================================ +16:30:27 [ 1] [ 4] [0200] +16:30:27 [ 2] [ 16] [6688990103282008] +16:30:27 [ 3] [ 6] [010000] +16:30:27 [ 4] [ 12] [000100000000] +16:30:27 [ 7] [ 10] [0320163022] +16:30:27 [ 11] [ 6] [799967] +16:30:27 [ 12] [ 6] [163022] +16:30:27 [ 13] [ 4] [0320] +16:30:27 [ 15] [ 4] [0320] +16:30:27 [ 18] [ 4] [6011] +16:30:27 [ 22] [ 3] [900] +16:30:27 [ 25] [ 2] [02] +16:30:27 [ 28] [ 9] [D00002000] +16:30:27 [ 32] [ 6] [621354] +16:30:27 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:30:27 [ 37] [ 12] [507903499599] +16:30:27 [ 41] [ 8] [06002200] +16:30:27 [ 42] [ 15] [NATIVE ] +16:30:27 [ 43] [ 40] [Beng Market Beng LAO] +16:30:27 [ 49] [ 3] [418] +16:30:27 [ 52] [ 16] [CC8D9F7A70EF263E] +16:30:27 ============================================================================ +16:30:27 + + +waiting on router queue for slot.... +16:30:27 Sending to : <4> +16:30:27 ============================================================================ +16:30:29 ============================================================================ +16:30:29 Slot Id : <491> +16:30:29 Transaction Type : RESPONSE +16:30:29 Received From : +16:30:29 ============================================================================ +16:30:29 FNo. Len. Field Value +16:30:29 ============================================================================ +16:30:29 [ 1] [ 4] [0210] +16:30:29 [ 2] [ 16] [6688990103282008] +16:30:29 [ 3] [ 6] [010000] +16:30:29 [ 4] [ 12] [000100000000] +16:30:29 [ 11] [ 6] [799967] +16:30:29 [ 12] [ 6] [163022] +16:30:29 [ 15] [ 4] [0320] +16:30:29 [ 18] [ 4] [6011] +16:30:29 [ 32] [ 6] [621354] +16:30:29 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:30:29 [ 37] [ 12] [507903499599] +16:30:29 [ 38] [ 6] [569960] +16:30:29 [ 39] [ 2] [00] +16:30:29 [ 41] [ 8] [06002200] +16:30:29 [ 49] [ 3] [418] +16:30:29 [ 54] [ 20] [0002418C000661079477] +16:30:29 ============================================================================ +16:30:29 Sending to : +16:30:29 ============================================================================ +16:30:29 + + +waiting on router queue for slot.... +16:30:29 ============================================================================ +16:30:29 Slot Id : <494> +16:30:29 Transaction Type : RESPONSE +16:30:29 Received From : +16:30:29 ============================================================================ +16:30:29 FNo. Len. Field Value +16:30:29 ============================================================================ +16:30:29 [ 1] [ 4] [0210] +16:30:29 [ 2] [ 16] [1808931800005819] +16:30:29 [ 3] [ 6] [010000] +16:30:29 [ 4] [ 12] [000050000000] +16:30:29 [ 6] [ 12] [000050000000] +16:30:29 [ 7] [ 10] [0320163020] +16:30:29 [ 11] [ 6] [799962] +16:30:29 [ 12] [ 6] [163020] +16:30:29 [ 13] [ 4] [0320] +16:30:29 [ 18] [ 4] [6011] +16:30:29 [ 19] [ 3] [418] +16:30:29 [ 22] [ 3] [021] +16:30:29 [ 32] [ 6] [621354] +16:30:29 [ 35] [ 27] [1808931800005819=1803500314] +16:30:29 [ 37] [ 12] [507904635873] +16:30:29 [ 38] [ 6] [799962] +16:30:29 [ 39] [ 2] [51] +16:30:29 [ 41] [ 8] [17000800] +16:30:29 [ 49] [ 3] [418] +16:30:29 [ 52] [ 16] [98BE394402CFEE30] +16:30:29 ============================================================================ +16:30:29 Sending to : +16:30:29 ============================================================================ +16:30:29 + + +waiting on router queue for slot.... +16:30:30 ============================================================================ +16:30:30 Slot Id : <10> +16:30:30 Transaction Type : REQUEST +16:30:30 Received From : +16:30:30 ============================================================================ +16:30:30 FNo. Len. Field Value +16:30:30 ============================================================================ +16:30:30 [ 1] [ 4] [0200] +16:30:30 [ 2] [ 16] [6688990103084008] +16:30:30 [ 3] [ 6] [301000] +16:30:30 [ 4] [ 12] [000000000000] +16:30:30 [ 7] [ 10] [0320163025] +16:30:30 [ 11] [ 6] [799986] +16:30:30 [ 12] [ 6] [163025] +16:30:30 [ 13] [ 4] [0320] +16:30:30 [ 15] [ 4] [0320] +16:30:30 [ 18] [ 4] [6011] +16:30:30 [ 22] [ 3] [900] +16:30:30 [ 25] [ 2] [02] +16:30:30 [ 28] [ 9] [D00000000] +16:30:30 [ 32] [ 6] [621354] +16:30:30 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:30:30 [ 37] [ 12] [507904719788] +16:30:30 [ 41] [ 8] [18001000] +16:30:30 [ 42] [ 15] [NATIVE ] +16:30:30 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:30:30 [ 49] [ 3] [418] +16:30:30 [ 52] [ 16] [855D858B5CAE4147] +16:30:30 ============================================================================ +16:30:30 + + +waiting on router queue for slot.... +16:30:30 Sending to : +16:30:30 ============================================================================ +16:30:30 Sending to : +16:30:30 ============================================================================ +16:30:30 ============================================================================ +16:30:30 Slot Id : <10> +16:30:30 Transaction Type : REQUEST +16:30:30 Received From : +16:30:30 ============================================================================ +16:30:30 FNo. Len. Field Value +16:30:30 ============================================================================ +16:30:30 [ 1] [ 4] [0200] +16:30:30 [ 2] [ 16] [6688990103084008] +16:30:30 [ 3] [ 6] [301000] +16:30:30 [ 4] [ 12] [000000000000] +16:30:30 [ 7] [ 10] [0320163025] +16:30:30 [ 11] [ 6] [799986] +16:30:30 [ 12] [ 6] [163025] +16:30:30 [ 13] [ 4] [0320] +16:30:30 [ 15] [ 4] [0320] +16:30:30 [ 18] [ 4] [6011] +16:30:30 [ 22] [ 3] [900] +16:30:30 [ 25] [ 2] [02] +16:30:30 [ 28] [ 9] [D00000000] +16:30:30 [ 32] [ 6] [621354] +16:30:30 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:30:30 [ 37] [ 12] [507904719788] +16:30:30 [ 41] [ 8] [18001000] +16:30:30 [ 42] [ 15] [NATIVE ] +16:30:30 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:30:30 [ 49] [ 3] [418] +16:30:30 [ 52] [ 16] [855D858B5CAE4147] +16:30:30 ============================================================================ +16:30:30 + + +waiting on router queue for slot.... +16:30:30 Sending to : +16:30:30 ============================================================================ +16:30:30 ============================================================================ +16:30:30 Slot Id : <10> +16:30:30 Transaction Type : REQUEST +16:30:30 Received From : +16:30:30 ============================================================================ +16:30:30 FNo. Len. Field Value +16:30:30 ============================================================================ +16:30:30 [ 1] [ 4] [0200] +16:30:30 [ 2] [ 16] [6688990103084008] +16:30:30 [ 3] [ 6] [301000] +16:30:30 [ 4] [ 12] [000000000000] +16:30:30 [ 7] [ 10] [0320163025] +16:30:30 [ 11] [ 6] [799986] +16:30:30 [ 12] [ 6] [163025] +16:30:30 [ 13] [ 4] [0320] +16:30:30 [ 15] [ 4] [0320] +16:30:30 [ 18] [ 4] [6011] +16:30:30 [ 22] [ 3] [900] +16:30:30 [ 25] [ 2] [02] +16:30:30 [ 28] [ 9] [D00000000] +16:30:30 [ 32] [ 6] [621354] +16:30:30 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:30:30 [ 37] [ 12] [507904719788] +16:30:30 [ 41] [ 8] [18001000] +16:30:30 [ 42] [ 15] [NATIVE ] +16:30:30 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:30:30 [ 49] [ 3] [418] +16:30:30 [ 52] [ 16] [BCCE8F7AD8113D4A] +16:30:30 ============================================================================ +16:30:30 + + +waiting on router queue for slot.... +16:30:30 Sending to : <4> +16:30:30 ============================================================================ +16:30:31 ============================================================================ +16:30:31 Slot Id : <491> +16:30:31 Transaction Type : RESPONSE +16:30:31 Received From : +16:30:31 ============================================================================ +16:30:31 FNo. Len. Field Value +16:30:31 ============================================================================ +16:30:31 [ 1] [ 4] [0210] +16:30:31 [ 2] [ 16] [6688990103282008] +16:30:31 [ 3] [ 6] [010000] +16:30:31 [ 4] [ 12] [000100000000] +16:30:31 [ 11] [ 6] [799967] +16:30:31 [ 12] [ 6] [163022] +16:30:31 [ 15] [ 4] [0320] +16:30:31 [ 18] [ 4] [6011] +16:30:31 [ 32] [ 6] [621354] +16:30:31 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:30:31 [ 37] [ 12] [507903499599] +16:30:31 [ 38] [ 6] [569960] +16:30:31 [ 39] [ 2] [00] +16:30:31 [ 41] [ 8] [06002200] +16:30:31 [ 49] [ 3] [418] +16:30:31 [ 54] [ 20] [0002418C000661079477] +16:30:31 ============================================================================ +16:30:31 Calculate Source COMM Id = 0 +16:30:31 ============================================================================ +16:30:31 + + +waiting on router queue for slot.... +16:30:31 ============================================================================ +16:30:31 Slot Id : <494> +16:30:31 Transaction Type : RESPONSE +16:30:31 Received From : +16:30:31 ============================================================================ +16:30:31 FNo. Len. Field Value +16:30:31 ============================================================================ +16:30:31 [ 1] [ 4] [0210] +16:30:31 [ 2] [ 16] [1808931800005819] +16:30:31 [ 3] [ 6] [010000] +16:30:31 [ 4] [ 12] [000050000000] +16:30:31 [ 6] [ 12] [000050000000] +16:30:31 [ 7] [ 10] [0320163020] +16:30:31 [ 11] [ 6] [799962] +16:30:31 [ 12] [ 6] [163020] +16:30:31 [ 13] [ 4] [0320] +16:30:31 [ 18] [ 4] [6011] +16:30:31 [ 19] [ 3] [418] +16:30:31 [ 22] [ 3] [021] +16:30:31 [ 32] [ 6] [621354] +16:30:31 [ 35] [ 27] [1808931800005819=1803500314] +16:30:31 [ 37] [ 12] [507904635873] +16:30:31 [ 38] [ 6] [799962] +16:30:31 [ 39] [ 2] [51] +16:30:31 [ 41] [ 8] [17000800] +16:30:31 [ 49] [ 3] [418] +16:30:31 [ 52] [ 16] [98BE394402CFEE30] +16:30:31 ============================================================================ +16:30:31 Calculate Source COMM Id = 0 +16:30:31 ============================================================================ +16:30:31 + + +waiting on router queue for slot.... +16:30:31 ============================================================================ +16:30:31 Slot Id : <10> +16:30:31 Transaction Type : RESPONSE +16:30:31 Received From : +16:30:31 ============================================================================ +16:30:31 FNo. Len. Field Value +16:30:31 ============================================================================ +16:30:31 [ 1] [ 4] [0210] +16:30:31 [ 2] [ 16] [6688990103084008] +16:30:31 [ 3] [ 6] [301000] +16:30:31 [ 4] [ 12] [000000000000] +16:30:31 [ 11] [ 6] [799986] +16:30:31 [ 12] [ 6] [163025] +16:30:31 [ 15] [ 4] [0320] +16:30:31 [ 18] [ 4] [6011] +16:30:31 [ 32] [ 6] [621354] +16:30:31 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:30:31 [ 37] [ 12] [507904719788] +16:30:31 [ 38] [ 6] [848092] +16:30:31 [ 39] [ 2] [00] +16:30:31 [ 41] [ 8] [18001000] +16:30:31 [ 49] [ 3] [418] +16:30:31 [ 54] [ 20] [1002418C000281678766] +16:30:31 ============================================================================ +16:30:31 Sending to : +16:30:31 ============================================================================ +16:30:31 + + +waiting on router queue for slot.... +16:30:33 ============================================================================ +16:30:33 Slot Id : <10> +16:30:33 Transaction Type : RESPONSE +16:30:33 Received From : +16:30:33 ============================================================================ +16:30:33 FNo. Len. Field Value +16:30:33 ============================================================================ +16:30:33 [ 1] [ 4] [0210] +16:30:33 [ 2] [ 16] [6688990103084008] +16:30:33 [ 3] [ 6] [301000] +16:30:33 [ 4] [ 12] [000000000000] +16:30:33 [ 11] [ 6] [799986] +16:30:33 [ 12] [ 6] [163025] +16:30:33 [ 15] [ 4] [0320] +16:30:33 [ 18] [ 4] [6011] +16:30:33 [ 32] [ 6] [621354] +16:30:33 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:30:33 [ 37] [ 12] [507904719788] +16:30:33 [ 38] [ 6] [848092] +16:30:33 [ 39] [ 2] [00] +16:30:33 [ 41] [ 8] [18001000] +16:30:33 [ 49] [ 3] [418] +16:30:33 [ 54] [ 20] [1002418C000281678766] +16:30:33 ============================================================================ +16:30:33 Calculate Source COMM Id = 0 +16:30:33 ============================================================================ +16:30:33 + + +waiting on router queue for slot.... +16:30:33 ============================================================================ +16:30:33 Slot Id : <499> +16:30:33 Transaction Type : REQUEST +16:30:33 Received From : +16:30:33 ============================================================================ +16:30:33 FNo. Len. Field Value +16:30:33 ============================================================================ +16:30:33 [ 1] [ 4] [0200] +16:30:33 [ 2] [ 16] [6213544001572319] +16:30:33 [ 3] [ 6] [011000] +16:30:33 [ 4] [ 12] [000050000000] +16:30:33 [ 7] [ 10] [0320163054] +16:30:33 [ 11] [ 6] [208737] +16:30:33 [ 12] [ 6] [162600] +16:30:33 [ 13] [ 4] [0320] +16:30:33 [ 14] [ 4] [4912] +16:30:33 [ 15] [ 4] [0320] +16:30:33 [ 18] [ 4] [6011] +16:30:33 [ 19] [ 3] [418] +16:30:33 [ 22] [ 3] [021] +16:30:33 [ 25] [ 2] [01] +16:30:33 [ 28] [ 9] [D00002000] +16:30:33 [ 32] [ 6] [198901] +16:30:33 [ 35] [ 32] [6213544001572319=491212017231291] +16:30:33 [ 37] [ 12] [507916208737] +16:30:33 [ 41] [ 8] [19529001] +16:30:33 [ 42] [ 15] [000000041952901] +16:30:33 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:30:33 [ 49] [ 3] [418] +16:30:33 [ 52] [ 16] [1AF516DE9ACCB101] +16:30:33 ============================================================================ +16:30:33 + + +waiting on router queue for slot.... +16:30:33 Sending to : +16:30:33 ============================================================================ +16:30:33 Sending to : +16:30:33 ============================================================================ +16:30:33 ============================================================================ +16:30:33 Slot Id : <499> +16:30:33 Transaction Type : REQUEST +16:30:33 Received From : +16:30:33 ============================================================================ +16:30:33 FNo. Len. Field Value +16:30:33 ============================================================================ +16:30:33 [ 1] [ 4] [0200] +16:30:33 [ 2] [ 16] [6213544001572319] +16:30:33 [ 3] [ 6] [011000] +16:30:33 [ 4] [ 12] [000050000000] +16:30:33 [ 7] [ 10] [0320163054] +16:30:33 [ 11] [ 6] [208737] +16:30:33 [ 12] [ 6] [162600] +16:30:33 [ 13] [ 4] [0320] +16:30:33 [ 14] [ 4] [4912] +16:30:33 [ 15] [ 4] [0320] +16:30:33 [ 18] [ 4] [6011] +16:30:33 [ 19] [ 3] [418] +16:30:33 [ 22] [ 3] [021] +16:30:33 [ 25] [ 2] [01] +16:30:33 [ 28] [ 9] [D00002000] +16:30:33 [ 32] [ 6] [198901] +16:30:33 [ 35] [ 32] [6213544001572319=491212017231291] +16:30:33 [ 37] [ 12] [507916208737] +16:30:33 [ 41] [ 8] [19529001] +16:30:33 [ 42] [ 15] [000000041952901] +16:30:33 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:30:33 [ 49] [ 3] [418] +16:30:33 [ 52] [ 16] [1AF516DE9ACCB101] +16:30:33 ============================================================================ +16:30:33 + + +waiting on router queue for slot.... +16:30:33 Sending to : +16:30:33 ============================================================================ +16:30:34 ============================================================================ +16:30:34 Slot Id : <499> +16:30:34 Transaction Type : REQUEST +16:30:34 Received From : +16:30:34 ============================================================================ +16:30:34 FNo. Len. Field Value +16:30:34 ============================================================================ +16:30:34 [ 1] [ 4] [0200] +16:30:34 [ 2] [ 16] [6213544001572319] +16:30:34 [ 3] [ 6] [011000] +16:30:34 [ 4] [ 12] [000050000000] +16:30:34 [ 7] [ 10] [0320163054] +16:30:34 [ 11] [ 6] [208737] +16:30:34 [ 12] [ 6] [162600] +16:30:34 [ 13] [ 4] [0320] +16:30:34 [ 14] [ 4] [4912] +16:30:34 [ 15] [ 4] [0320] +16:30:34 [ 18] [ 4] [6011] +16:30:34 [ 19] [ 3] [418] +16:30:34 [ 22] [ 3] [021] +16:30:34 [ 25] [ 2] [01] +16:30:34 [ 28] [ 9] [D00002000] +16:30:34 [ 32] [ 6] [198901] +16:30:34 [ 35] [ 32] [6213544001572319=491212017231291] +16:30:34 [ 37] [ 12] [507916208737] +16:30:34 [ 41] [ 8] [19529001] +16:30:34 [ 42] [ 15] [000000041952901] +16:30:34 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:30:34 [ 49] [ 3] [418] +16:30:34 [ 52] [ 16] [DCDDC14D96C37ABC] +16:30:34 ============================================================================ +16:30:34 + + +waiting on router queue for slot.... +16:30:34 Sending to : <0> +16:30:34 ============================================================================ +16:30:34 ============================================================================ +16:30:34 Slot Id : <499> +16:30:34 Transaction Type : RESPONSE +16:30:34 Received From : +16:30:34 ============================================================================ +16:30:34 FNo. Len. Field Value +16:30:34 ============================================================================ +16:30:34 [ 1] [ 4] [0210] +16:30:34 [ 2] [ 16] [6213544001572319] +16:30:34 [ 3] [ 6] [011000] +16:30:34 [ 4] [ 12] [000050000000] +16:30:34 [ 7] [ 10] [0320163054] +16:30:34 [ 11] [ 6] [208737] +16:30:34 [ 12] [ 6] [162600] +16:30:34 [ 13] [ 4] [0320] +16:30:34 [ 15] [ 4] [0320] +16:30:34 [ 18] [ 4] [6011] +16:30:34 [ 19] [ 3] [418] +16:30:34 [ 32] [ 6] [198901] +16:30:34 [ 35] [ 32] [6213544001572319=491212017231291] +16:30:34 [ 37] [ 12] [507916208737] +16:30:34 [ 38] [ 6] [120909] +16:30:34 [ 39] [ 2] [00] +16:30:34 [ 41] [ 8] [19529001] +16:30:34 [ 49] [ 3] [418] +16:30:34 [ 54] [ 40] [1001418C0000094902441002418C000009490244] +16:30:34 ============================================================================ +16:30:34 Sending to : +16:30:34 ============================================================================ +16:30:34 + + +waiting on router queue for slot.... +16:30:35 ============================================================================ +16:30:35 Slot Id : <29> +16:30:35 Transaction Type : REQUEST +16:30:35 Received From : +16:30:35 ============================================================================ +16:30:35 FNo. Len. Field Value +16:30:35 ============================================================================ +16:30:35 [ 1] [ 4] [0800] +16:30:35 [ 2] [ 5] [02531] +16:30:35 [ 3] [ 6] [579168] +16:30:35 [ 7] [ 10] [0320093035] +16:30:35 [ 11] [ 6] [807370] +16:30:35 [ 15] [ 10] [0320093035] +16:30:35 [ 37] [ 11] [57916807370] +16:30:35 [ 70] [ 3] [001] +16:30:35 ============================================================================ +16:30:35 + + +waiting on router queue for slot.... +16:30:35 ============================================================================ +16:30:35 Slot Id : <29> +16:30:35 Transaction Type : RESPONSE +16:30:35 Received From : +16:30:35 ============================================================================ +16:30:35 FNo. Len. Field Value +16:30:35 ============================================================================ +16:30:35 [ 1] [ 4] [0810] +16:30:35 [ 7] [ 10] [0320093035] +16:30:35 [ 11] [ 6] [807370] +16:30:35 [ 15] [ 4] [0320] +16:30:35 [ 37] [ 12] [57916807370] +16:30:35 [ 39] [ 2] [00] +16:30:35 [ 70] [ 3] [001] +16:30:35 ============================================================================ +16:30:35 Sending to : +16:30:35 ============================================================================ +16:30:35 + + +waiting on router queue for slot.... +16:30:35 ============================================================================ +16:30:35 Slot Id : <499> +16:30:35 Transaction Type : RESPONSE +16:30:35 Received From : +16:30:35 ============================================================================ +16:30:35 FNo. Len. Field Value +16:30:35 ============================================================================ +16:30:35 [ 1] [ 4] [0210] +16:30:35 [ 2] [ 16] [6213544001572319] +16:30:35 [ 3] [ 6] [011000] +16:30:35 [ 4] [ 12] [000050000000] +16:30:35 [ 7] [ 10] [0320163054] +16:30:35 [ 11] [ 6] [208737] +16:30:35 [ 12] [ 6] [162600] +16:30:35 [ 13] [ 4] [0320] +16:30:35 [ 15] [ 4] [0320] +16:30:35 [ 18] [ 4] [6011] +16:30:35 [ 19] [ 3] [418] +16:30:35 [ 32] [ 6] [198901] +16:30:35 [ 35] [ 32] [6213544001572319=491212017231291] +16:30:35 [ 37] [ 12] [507916208737] +16:30:35 [ 38] [ 6] [120909] +16:30:35 [ 39] [ 2] [00] +16:30:35 [ 41] [ 8] [19529001] +16:30:35 [ 49] [ 3] [418] +16:30:35 [ 54] [ 40] [1001418C0000094902441002418C000009490244] +16:30:35 ============================================================================ +16:30:35 Calculate Source COMM Id = 5 +16:30:35 ============================================================================ +16:30:35 + + +waiting on router queue for slot.... +16:30:38 ============================================================================ +16:30:38 Slot Id : <481> +16:30:38 Transaction Type : REQUEST +16:30:38 Received From : +16:30:38 ============================================================================ +16:30:38 FNo. Len. Field Value +16:30:38 ============================================================================ +16:30:38 [ 1] [ 4] [0200] +16:30:38 [ 2] [ 16] [6213544002242748] +16:30:38 [ 3] [ 6] [300000] +16:30:38 [ 4] [ 12] [000000000000] +16:30:38 [ 7] [ 10] [0320162828] +16:30:38 [ 11] [ 6] [951793] +16:30:38 [ 12] [ 6] [162828] +16:30:38 [ 13] [ 4] [0320] +16:30:38 [ 15] [ 4] [0320] +16:30:38 [ 18] [ 4] [6011] +16:30:38 [ 19] [ 3] [418] +16:30:38 [ 22] [ 3] [021] +16:30:38 [ 25] [ 2] [01] +16:30:38 [ 28] [ 9] [D00000000] +16:30:38 [ 32] [ 6] [668899] +16:30:38 [ 35] [ 32] [6213544002242748=491212014274787] +16:30:38 [ 37] [ 12] [507900577958] +16:30:38 [ 41] [ 8] [03014005] +16:30:38 [ 42] [ 15] [APT ] +16:30:38 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:30:38 [ 49] [ 3] [418] +16:30:38 [ 52] [ 16] [CD9F5BB328EAB17E] +16:30:38 ============================================================================ +16:30:38 + + +waiting on router queue for slot.... +16:30:38 Sending to : +16:30:38 ============================================================================ +16:30:38 Sending to : +16:30:38 ============================================================================ +16:30:39 ============================================================================ +16:30:39 Slot Id : <481> +16:30:39 Transaction Type : REQUEST +16:30:39 Received From : +16:30:39 ============================================================================ +16:30:39 FNo. Len. Field Value +16:30:39 ============================================================================ +16:30:39 [ 1] [ 4] [0200] +16:30:39 [ 2] [ 16] [6213544002242748] +16:30:39 [ 3] [ 6] [300000] +16:30:39 [ 4] [ 12] [000000000000] +16:30:39 [ 7] [ 10] [0320162828] +16:30:39 [ 11] [ 6] [951793] +16:30:39 [ 12] [ 6] [162828] +16:30:39 [ 13] [ 4] [0320] +16:30:39 [ 15] [ 4] [0320] +16:30:39 [ 18] [ 4] [6011] +16:30:39 [ 19] [ 3] [418] +16:30:39 [ 22] [ 3] [021] +16:30:39 [ 25] [ 2] [01] +16:30:39 [ 28] [ 9] [D00000000] +16:30:39 [ 32] [ 6] [668899] +16:30:39 [ 35] [ 32] [6213544002242748=491212014274787] +16:30:39 [ 37] [ 12] [507900577958] +16:30:39 [ 41] [ 8] [03014005] +16:30:39 [ 42] [ 15] [APT ] +16:30:39 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:30:39 [ 49] [ 3] [418] +16:30:39 [ 52] [ 16] [CD9F5BB328EAB17E] +16:30:39 ============================================================================ +16:30:39 + + +waiting on router queue for slot.... +16:30:39 Sending to : +16:30:39 ============================================================================ +16:30:39 ============================================================================ +16:30:39 Slot Id : <481> +16:30:39 Transaction Type : REQUEST +16:30:39 Received From : +16:30:39 ============================================================================ +16:30:39 FNo. Len. Field Value +16:30:39 ============================================================================ +16:30:39 [ 1] [ 4] [0200] +16:30:39 [ 2] [ 16] [6213544002242748] +16:30:39 [ 3] [ 6] [300000] +16:30:39 [ 4] [ 12] [000000000000] +16:30:39 [ 7] [ 10] [0320162828] +16:30:39 [ 11] [ 6] [951793] +16:30:39 [ 12] [ 6] [162828] +16:30:39 [ 13] [ 4] [0320] +16:30:39 [ 15] [ 4] [0320] +16:30:39 [ 18] [ 4] [6011] +16:30:39 [ 19] [ 3] [418] +16:30:39 [ 22] [ 3] [021] +16:30:39 [ 25] [ 2] [01] +16:30:39 [ 28] [ 9] [D00000000] +16:30:39 [ 32] [ 6] [668899] +16:30:39 [ 35] [ 32] [6213544002242748=491212014274787] +16:30:39 [ 37] [ 12] [507900577958] +16:30:39 [ 41] [ 8] [03014005] +16:30:39 [ 42] [ 15] [APT ] +16:30:39 [ 43] [ 40] [ ARMY OFFICE SAVANNAKHEARM] +16:30:39 [ 49] [ 3] [418] +16:30:39 [ 52] [ 16] [82A6C42B7D3BCADD] +16:30:39 ============================================================================ +16:30:39 + + +waiting on router queue for slot.... +16:30:39 Sending to : <0> +16:30:39 ============================================================================ +16:30:39 ============================================================================ +16:30:39 Slot Id : <481> +16:30:39 Transaction Type : RESPONSE +16:30:39 Received From : +16:30:39 ============================================================================ +16:30:39 FNo. Len. Field Value +16:30:39 ============================================================================ +16:30:39 [ 1] [ 4] [0210] +16:30:39 [ 2] [ 16] [6213544002242748] +16:30:39 [ 3] [ 6] [300000] +16:30:39 [ 4] [ 12] [000000000000] +16:30:39 [ 7] [ 10] [0320162828] +16:30:39 [ 11] [ 6] [951793] +16:30:39 [ 12] [ 6] [162828] +16:30:39 [ 13] [ 4] [0320] +16:30:39 [ 15] [ 4] [0320] +16:30:39 [ 18] [ 4] [6011] +16:30:39 [ 19] [ 3] [418] +16:30:39 [ 22] [ 3] [021] +16:30:39 [ 32] [ 6] [668899] +16:30:39 [ 35] [ 32] [6213544002242748=491212014274787] +16:30:39 [ 37] [ 12] [507900577958] +16:30:39 [ 38] [ 6] [163034] +16:30:39 [ 39] [ 2] [75] +16:30:39 [ 41] [ 8] [03014005] +16:30:39 [ 49] [ 3] [418] +16:30:39 ============================================================================ +16:30:39 Sending to : +16:30:39 ============================================================================ +16:30:39 + + +waiting on router queue for slot.... +16:30:40 ============================================================================ +16:30:40 Slot Id : <481> +16:30:40 Transaction Type : RESPONSE +16:30:40 Received From : +16:30:40 ============================================================================ +16:30:40 FNo. Len. Field Value +16:30:40 ============================================================================ +16:30:40 [ 1] [ 4] [0210] +16:30:40 [ 2] [ 16] [6213544002242748] +16:30:40 [ 3] [ 6] [300000] +16:30:40 [ 4] [ 12] [000000000000] +16:30:40 [ 7] [ 10] [0320162828] +16:30:40 [ 11] [ 6] [951793] +16:30:40 [ 12] [ 6] [162828] +16:30:40 [ 13] [ 4] [0320] +16:30:40 [ 15] [ 4] [0320] +16:30:40 [ 18] [ 4] [6011] +16:30:40 [ 19] [ 3] [418] +16:30:40 [ 22] [ 3] [021] +16:30:40 [ 32] [ 6] [668899] +16:30:40 [ 35] [ 32] [6213544002242748=491212014274787] +16:30:40 [ 37] [ 12] [507900577958] +16:30:40 [ 38] [ 6] [163034] +16:30:40 [ 39] [ 2] [75] +16:30:40 [ 41] [ 8] [03014005] +16:30:40 [ 49] [ 3] [418] +16:30:40 ============================================================================ +16:30:40 Calculate Source COMM Id = 4 +16:30:40 ============================================================================ +16:30:40 + + +waiting on router queue for slot.... +16:30:40 ============================================================================ +16:30:40 Slot Id : <31> +16:30:40 Transaction Type : REQUEST +16:30:40 Received From : +16:30:40 ============================================================================ +16:30:40 FNo. Len. Field Value +16:30:40 ============================================================================ +16:30:40 [ 1] [ 4] [0200] +16:30:40 [ 2] [ 16] [6213545000334247] +16:30:40 [ 3] [ 6] [301000] +16:30:40 [ 7] [ 10] [0320092947] +16:30:40 [ 11] [ 6] [270467] +16:30:40 [ 12] [ 6] [162947] +16:30:40 [ 13] [ 4] [0320] +16:30:40 [ 14] [ 4] [4912] +16:30:40 [ 15] [ 4] [0320] +16:30:40 [ 18] [ 4] [6011] +16:30:40 [ 19] [ 3] [418] +16:30:40 [ 22] [ 3] [021] +16:30:40 [ 25] [ 2] [01] +16:30:40 [ 32] [ 6] [180893] +16:30:40 [ 35] [ 32] [6213545000334247=491212013424967] +16:30:40 [ 37] [ 12] [507909270467] +16:30:40 [ 41] [ 8] [0161HQBR] +16:30:40 [ 42] [ 15] [999999 ] +16:30:40 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +16:30:40 [ 49] [ 3] [418] +16:30:40 [ 52] [ 16] [1C915F8F9B49642B] +16:30:40 ============================================================================ +16:30:40 + + +waiting on router queue for slot.... +16:30:40 Sending to : +16:30:40 ============================================================================ +16:30:40 Sending to : +16:30:40 ============================================================================ +16:30:40 ============================================================================ +16:30:40 Slot Id : <31> +16:30:40 Transaction Type : REQUEST +16:30:40 Received From : +16:30:40 ============================================================================ +16:30:40 FNo. Len. Field Value +16:30:40 ============================================================================ +16:30:40 [ 1] [ 4] [0200] +16:30:40 [ 2] [ 16] [6213545000334247] +16:30:40 [ 3] [ 6] [301000] +16:30:40 [ 7] [ 10] [0320092947] +16:30:40 [ 11] [ 6] [270467] +16:30:40 [ 12] [ 6] [162947] +16:30:40 [ 13] [ 4] [0320] +16:30:40 [ 14] [ 4] [4912] +16:30:40 [ 15] [ 4] [0320] +16:30:40 [ 18] [ 4] [6011] +16:30:40 [ 19] [ 3] [418] +16:30:40 [ 22] [ 3] [021] +16:30:40 [ 25] [ 2] [01] +16:30:40 [ 32] [ 6] [180893] +16:30:40 [ 35] [ 32] [6213545000334247=491212013424967] +16:30:40 [ 37] [ 12] [507909270467] +16:30:40 [ 41] [ 8] [0161HQBR] +16:30:40 [ 42] [ 15] [999999 ] +16:30:40 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +16:30:40 [ 49] [ 3] [418] +16:30:40 [ 52] [ 16] [1C915F8F9B49642B] +16:30:40 ============================================================================ +16:30:41 + + +waiting on router queue for slot.... +16:30:41 Sending to : +16:30:41 ============================================================================ +16:30:41 ============================================================================ +16:30:41 Slot Id : <31> +16:30:41 Transaction Type : REQUEST +16:30:41 Received From : +16:30:41 ============================================================================ +16:30:41 FNo. Len. Field Value +16:30:41 ============================================================================ +16:30:41 [ 1] [ 4] [0200] +16:30:41 [ 2] [ 16] [6213545000334247] +16:30:41 [ 3] [ 6] [301000] +16:30:41 [ 7] [ 10] [0320092947] +16:30:41 [ 11] [ 6] [270467] +16:30:41 [ 12] [ 6] [162947] +16:30:41 [ 13] [ 4] [0320] +16:30:41 [ 14] [ 4] [4912] +16:30:41 [ 15] [ 4] [0320] +16:30:41 [ 18] [ 4] [6011] +16:30:41 [ 19] [ 3] [418] +16:30:41 [ 22] [ 3] [021] +16:30:41 [ 25] [ 2] [01] +16:30:41 [ 32] [ 6] [180893] +16:30:41 [ 35] [ 32] [6213545000334247=491212013424967] +16:30:41 [ 37] [ 12] [507909270467] +16:30:41 [ 41] [ 8] [0161HQBR] +16:30:41 [ 42] [ 15] [999999 ] +16:30:41 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +16:30:41 [ 49] [ 3] [418] +16:30:41 [ 52] [ 16] [02E1696C20E42C99] +16:30:41 ============================================================================ +16:30:41 + + +waiting on router queue for slot.... +16:30:41 Sending to : <0> +16:30:41 ============================================================================ +16:30:41 ============================================================================ +16:30:41 Slot Id : <23> +16:30:41 Transaction Type : REQUEST +16:30:41 Received From : +16:30:41 ============================================================================ +16:30:41 FNo. Len. Field Value +16:30:41 ============================================================================ +16:30:41 [ 1] [ 4] [0800] +16:30:41 [ 7] [ 10] [0320092948] +16:30:41 [ 11] [ 6] [157248] +16:30:41 [ 70] [ 3] [301] +16:30:41 ============================================================================ +16:30:41 + + +waiting on router queue for slot.... +16:30:41 Sending to : +16:30:41 ============================================================================ +16:30:41 ============================================================================ +16:30:41 Slot Id : <23> +16:30:41 Transaction Type : RESPONSE +16:30:41 Received From : +16:30:41 ============================================================================ +16:30:41 FNo. Len. Field Value +16:30:41 ============================================================================ +16:30:41 [ 1] [ 4] [0810] +16:30:41 [ 7] [ 10] [0320092948] +16:30:41 [ 11] [ 6] [157248] +16:30:41 [ 39] [ 2] [00] +16:30:41 [ 70] [ 3] [301] +16:30:41 ============================================================================ +16:30:41 Calculate Source COMM Id = 2 +16:30:41 ============================================================================ +16:30:41 + + +waiting on router queue for slot.... +16:30:41 ============================================================================ +16:30:41 Slot Id : <31> +16:30:41 Transaction Type : RESPONSE +16:30:41 Received From : +16:30:41 ============================================================================ +16:30:41 FNo. Len. Field Value +16:30:41 ============================================================================ +16:30:41 [ 1] [ 4] [0210] +16:30:41 [ 2] [ 16] [6213545000334247] +16:30:41 [ 3] [ 6] [301000] +16:30:41 [ 4] [ 12] [000000000000] +16:30:41 [ 7] [ 10] [0320092947] +16:30:41 [ 11] [ 6] [270467] +16:30:41 [ 12] [ 6] [162947] +16:30:41 [ 13] [ 4] [0320] +16:30:41 [ 15] [ 4] [0320] +16:30:41 [ 18] [ 4] [6011] +16:30:41 [ 19] [ 3] [418] +16:30:41 [ 32] [ 6] [180893] +16:30:41 [ 35] [ 32] [6213545000334247=491212013424967] +16:30:41 [ 37] [ 12] [507909270467] +16:30:41 [ 38] [ 6] [126160] +16:30:41 [ 39] [ 2] [00] +16:30:41 [ 41] [ 8] [0161HQBR] +16:30:41 [ 49] [ 3] [418] +16:30:41 [ 54] [ 40] [1001418C0002030602211002418C000203060221] +16:30:41 ============================================================================ +16:30:41 Sending to : +16:30:41 ============================================================================ +16:30:41 + + +waiting on router queue for slot.... +16:30:42 ============================================================================ +16:30:42 Slot Id : <31> +16:30:42 Transaction Type : RESPONSE +16:30:42 Received From : +16:30:42 ============================================================================ +16:30:42 FNo. Len. Field Value +16:30:42 ============================================================================ +16:30:42 [ 1] [ 4] [0210] +16:30:42 [ 2] [ 16] [6213545000334247] +16:30:42 [ 3] [ 6] [301000] +16:30:42 [ 4] [ 12] [000000000000] +16:30:42 [ 7] [ 10] [0320092947] +16:30:42 [ 11] [ 6] [270467] +16:30:42 [ 12] [ 6] [162947] +16:30:42 [ 13] [ 4] [0320] +16:30:42 [ 15] [ 4] [0320] +16:30:42 [ 18] [ 4] [6011] +16:30:42 [ 19] [ 3] [418] +16:30:42 [ 32] [ 6] [180893] +16:30:42 [ 35] [ 32] [6213545000334247=491212013424967] +16:30:42 [ 37] [ 12] [507909270467] +16:30:42 [ 38] [ 6] [126160] +16:30:42 [ 39] [ 2] [00] +16:30:42 [ 41] [ 8] [0161HQBR] +16:30:42 [ 49] [ 3] [418] +16:30:42 [ 54] [ 40] [1001418C0002030602211002418C000203060221] +16:30:42 ============================================================================ +16:30:42 Calculate Source COMM Id = 2 +16:30:42 ============================================================================ +16:30:42 + + +waiting on router queue for slot.... +16:30:55 ============================================================================ +16:30:55 Slot Id : <3> +16:30:55 Transaction Type : REQUEST +16:30:55 Received From : +16:30:55 ============================================================================ +16:30:55 FNo. Len. Field Value +16:30:55 ============================================================================ +16:30:55 [ 1] [ 4] [0200] +16:30:55 [ 2] [ 16] [6688990103638704] +16:30:55 [ 3] [ 6] [010000] +16:30:55 [ 4] [ 12] [000030000000] +16:30:55 [ 7] [ 10] [0320163050] +16:30:55 [ 11] [ 6] [800091] +16:30:55 [ 12] [ 6] [163050] +16:30:55 [ 13] [ 4] [0320] +16:30:55 [ 15] [ 4] [0320] +16:30:55 [ 18] [ 4] [6011] +16:30:55 [ 22] [ 3] [900] +16:30:55 [ 25] [ 2] [02] +16:30:55 [ 28] [ 9] [D00002000] +16:30:55 [ 32] [ 6] [621354] +16:30:55 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:30:55 [ 37] [ 12] [507903743409] +16:30:55 [ 41] [ 8] [06002400] +16:30:55 [ 42] [ 15] [NATIVE ] +16:30:55 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:30:55 [ 49] [ 3] [418] +16:30:55 [ 52] [ 16] [170FE55C2E74E4F3] +16:30:55 ============================================================================ +16:30:55 + + +waiting on router queue for slot.... +16:30:55 Sending to : +16:30:55 ============================================================================ +16:30:55 Sending to : +16:30:55 ============================================================================ +16:30:55 ============================================================================ +16:30:55 Slot Id : <3> +16:30:55 Transaction Type : REQUEST +16:30:55 Received From : +16:30:55 ============================================================================ +16:30:55 FNo. Len. Field Value +16:30:55 ============================================================================ +16:30:55 [ 1] [ 4] [0200] +16:30:55 [ 2] [ 16] [6688990103638704] +16:30:55 [ 3] [ 6] [010000] +16:30:55 [ 4] [ 12] [000030000000] +16:30:55 [ 7] [ 10] [0320163050] +16:30:55 [ 11] [ 6] [800091] +16:30:55 [ 12] [ 6] [163050] +16:30:55 [ 13] [ 4] [0320] +16:30:55 [ 15] [ 4] [0320] +16:30:55 [ 18] [ 4] [6011] +16:30:55 [ 22] [ 3] [900] +16:30:55 [ 25] [ 2] [02] +16:30:55 [ 28] [ 9] [D00002000] +16:30:55 [ 32] [ 6] [621354] +16:30:55 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:30:55 [ 37] [ 12] [507903743409] +16:30:55 [ 41] [ 8] [06002400] +16:30:55 [ 42] [ 15] [NATIVE ] +16:30:55 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:30:55 [ 49] [ 3] [418] +16:30:55 [ 52] [ 16] [170FE55C2E74E4F3] +16:30:55 ============================================================================ +16:30:55 + + +waiting on router queue for slot.... +16:30:55 Sending to : +16:30:55 ============================================================================ +16:30:55 ============================================================================ +16:30:55 Slot Id : <3> +16:30:55 Transaction Type : REQUEST +16:30:55 Received From : +16:30:55 ============================================================================ +16:30:55 FNo. Len. Field Value +16:30:55 ============================================================================ +16:30:55 [ 1] [ 4] [0200] +16:30:55 [ 2] [ 16] [6688990103638704] +16:30:55 [ 3] [ 6] [010000] +16:30:55 [ 4] [ 12] [000030000000] +16:30:55 [ 7] [ 10] [0320163050] +16:30:55 [ 11] [ 6] [800091] +16:30:55 [ 12] [ 6] [163050] +16:30:55 [ 13] [ 4] [0320] +16:30:55 [ 15] [ 4] [0320] +16:30:55 [ 18] [ 4] [6011] +16:30:55 [ 22] [ 3] [900] +16:30:55 [ 25] [ 2] [02] +16:30:55 [ 28] [ 9] [D00002000] +16:30:55 [ 32] [ 6] [621354] +16:30:55 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:30:55 [ 37] [ 12] [507903743409] +16:30:55 [ 41] [ 8] [06002400] +16:30:55 [ 42] [ 15] [NATIVE ] +16:30:55 [ 43] [ 40] [ODX Hospital Oudomxay LAO] +16:30:55 [ 49] [ 3] [418] +16:30:55 [ 52] [ 16] [CBE3DAD4CBB88304] +16:30:55 ============================================================================ +16:30:55 + + +waiting on router queue for slot.... +16:30:55 Sending to : <4> +16:30:55 ============================================================================ +16:30:56 ============================================================================ +16:30:56 Slot Id : <3> +16:30:56 Transaction Type : RESPONSE +16:30:56 Received From : +16:30:56 ============================================================================ +16:30:56 FNo. Len. Field Value +16:30:56 ============================================================================ +16:30:56 [ 1] [ 4] [0210] +16:30:56 [ 2] [ 16] [6688990103638704] +16:30:56 [ 3] [ 6] [010000] +16:30:56 [ 4] [ 12] [000030000000] +16:30:56 [ 11] [ 6] [800091] +16:30:56 [ 12] [ 6] [163050] +16:30:56 [ 15] [ 4] [0320] +16:30:56 [ 18] [ 4] [6011] +16:30:56 [ 32] [ 6] [621354] +16:30:56 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:30:56 [ 37] [ 12] [507903743409] +16:30:56 [ 38] [ 6] [567861] +16:30:56 [ 39] [ 2] [00] +16:30:56 [ 41] [ 8] [06002400] +16:30:56 [ 49] [ 3] [418] +16:30:56 [ 54] [ 20] [0002418C000009310863] +16:30:56 ============================================================================ +16:30:56 Sending to : +16:30:56 ============================================================================ +16:30:56 + + +waiting on router queue for slot.... +16:30:56 ============================================================================ +16:30:56 Slot Id : <35> +16:30:56 Transaction Type : REQUEST +16:30:56 Received From : +16:30:56 ============================================================================ +16:30:56 FNo. Len. Field Value +16:30:56 ============================================================================ +16:30:56 [ 1] [ 4] [0800] +16:30:56 [ 7] [ 10] [0320093003] +16:30:56 [ 11] [ 6] [157249] +16:30:56 [ 70] [ 3] [301] +16:30:56 ============================================================================ +16:30:56 + + +waiting on router queue for slot.... +16:30:56 Sending to : +16:30:56 ============================================================================ +16:30:56 ============================================================================ +16:30:56 Slot Id : <35> +16:30:56 Transaction Type : RESPONSE +16:30:56 Received From : +16:30:56 ============================================================================ +16:30:56 FNo. Len. Field Value +16:30:56 ============================================================================ +16:30:56 [ 1] [ 4] [0810] +16:30:56 [ 7] [ 10] [0320093003] +16:30:56 [ 11] [ 6] [157249] +16:30:56 [ 39] [ 2] [00] +16:30:56 [ 70] [ 3] [301] +16:30:56 ============================================================================ +16:30:56 Calculate Source COMM Id = 2 +16:30:56 ============================================================================ +16:30:56 + + +waiting on router queue for slot.... +16:30:58 ============================================================================ +16:30:58 Slot Id : <3> +16:30:58 Transaction Type : RESPONSE +16:30:58 Received From : +16:30:58 ============================================================================ +16:30:58 FNo. Len. Field Value +16:30:58 ============================================================================ +16:30:58 [ 1] [ 4] [0210] +16:30:58 [ 2] [ 16] [6688990103638704] +16:30:58 [ 3] [ 6] [010000] +16:30:58 [ 4] [ 12] [000030000000] +16:30:58 [ 11] [ 6] [800091] +16:30:58 [ 12] [ 6] [163050] +16:30:58 [ 15] [ 4] [0320] +16:30:58 [ 18] [ 4] [6011] +16:30:58 [ 32] [ 6] [621354] +16:30:58 [ 35] [ 37] [6688990103638704=43011231870424100000] +16:30:58 [ 37] [ 12] [507903743409] +16:30:58 [ 38] [ 6] [567861] +16:30:58 [ 39] [ 2] [00] +16:30:58 [ 41] [ 8] [06002400] +16:30:58 [ 49] [ 3] [418] +16:30:58 [ 54] [ 20] [0002418C000009310863] +16:30:58 ============================================================================ +16:30:58 Calculate Source COMM Id = 0 +16:30:58 ============================================================================ +16:30:58 + + +waiting on router queue for slot.... +16:31:04 ============================================================================ +16:31:04 Slot Id : <11> +16:31:04 Transaction Type : REQUEST +16:31:04 Received From : +16:31:04 ============================================================================ +16:31:04 FNo. Len. Field Value +16:31:04 ============================================================================ +16:31:04 [ 1] [ 4] [0200] +16:31:04 [ 2] [ 16] [6213545001031917] +16:31:04 [ 3] [ 6] [301000] +16:31:04 [ 7] [ 10] [0320093008] +16:31:04 [ 11] [ 6] [270468] +16:31:04 [ 12] [ 6] [163008] +16:31:04 [ 13] [ 4] [0320] +16:31:04 [ 14] [ 4] [4912] +16:31:04 [ 15] [ 4] [0320] +16:31:04 [ 18] [ 4] [6011] +16:31:04 [ 19] [ 3] [418] +16:31:04 [ 22] [ 3] [021] +16:31:04 [ 25] [ 2] [01] +16:31:04 [ 32] [ 6] [180893] +16:31:04 [ 35] [ 32] [6213545001031917=491212013191506] +16:31:04 [ 37] [ 12] [507909270468] +16:31:04 [ 41] [ 8] [0243VTKS] +16:31:04 [ 42] [ 15] [999999 ] +16:31:04 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:31:04 [ 49] [ 3] [418] +16:31:04 [ 52] [ 16] [29802A44A9E56CFE] +16:31:04 ============================================================================ +16:31:04 + + +waiting on router queue for slot.... +16:31:04 Sending to : +16:31:04 ============================================================================ +16:31:04 Sending to : +16:31:04 ============================================================================ +16:31:04 ============================================================================ +16:31:04 Slot Id : <11> +16:31:04 Transaction Type : REQUEST +16:31:04 Received From : +16:31:04 ============================================================================ +16:31:04 FNo. Len. Field Value +16:31:04 ============================================================================ +16:31:04 [ 1] [ 4] [0200] +16:31:04 [ 2] [ 16] [6213545001031917] +16:31:04 [ 3] [ 6] [301000] +16:31:04 [ 7] [ 10] [0320093008] +16:31:04 [ 11] [ 6] [270468] +16:31:04 [ 12] [ 6] [163008] +16:31:04 [ 13] [ 4] [0320] +16:31:04 [ 14] [ 4] [4912] +16:31:04 [ 15] [ 4] [0320] +16:31:04 [ 18] [ 4] [6011] +16:31:04 [ 19] [ 3] [418] +16:31:04 [ 22] [ 3] [021] +16:31:04 [ 25] [ 2] [01] +16:31:04 [ 32] [ 6] [180893] +16:31:04 [ 35] [ 32] [6213545001031917=491212013191506] +16:31:04 [ 37] [ 12] [507909270468] +16:31:04 [ 41] [ 8] [0243VTKS] +16:31:04 [ 42] [ 15] [999999 ] +16:31:04 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:31:04 [ 49] [ 3] [418] +16:31:04 [ 52] [ 16] [29802A44A9E56CFE] +16:31:04 ============================================================================ +16:31:04 + + +waiting on router queue for slot.... +16:31:04 Sending to : +16:31:04 ============================================================================ +16:31:04 ============================================================================ +16:31:04 Slot Id : <11> +16:31:04 Transaction Type : REQUEST +16:31:04 Received From : +16:31:04 ============================================================================ +16:31:04 FNo. Len. Field Value +16:31:04 ============================================================================ +16:31:04 [ 1] [ 4] [0200] +16:31:04 [ 2] [ 16] [6213545001031917] +16:31:04 [ 3] [ 6] [301000] +16:31:04 [ 7] [ 10] [0320093008] +16:31:04 [ 11] [ 6] [270468] +16:31:04 [ 12] [ 6] [163008] +16:31:04 [ 13] [ 4] [0320] +16:31:04 [ 14] [ 4] [4912] +16:31:04 [ 15] [ 4] [0320] +16:31:04 [ 18] [ 4] [6011] +16:31:04 [ 19] [ 3] [418] +16:31:04 [ 22] [ 3] [021] +16:31:04 [ 25] [ 2] [01] +16:31:04 [ 32] [ 6] [180893] +16:31:04 [ 35] [ 32] [6213545001031917=491212013191506] +16:31:04 [ 37] [ 12] [507909270468] +16:31:04 [ 41] [ 8] [0243VTKS] +16:31:04 [ 42] [ 15] [999999 ] +16:31:04 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:31:04 [ 49] [ 3] [418] +16:31:04 [ 52] [ 16] [7F0BECB2F6531714] +16:31:04 ============================================================================ +16:31:04 + + +waiting on router queue for slot.... +16:31:04 Sending to : <0> +16:31:04 ============================================================================ +16:31:05 ============================================================================ +16:31:05 Slot Id : <11> +16:31:05 Transaction Type : RESPONSE +16:31:05 Received From : +16:31:05 ============================================================================ +16:31:05 FNo. Len. Field Value +16:31:05 ============================================================================ +16:31:05 [ 1] [ 4] [0210] +16:31:05 [ 2] [ 16] [6213545001031917] +16:31:05 [ 3] [ 6] [301000] +16:31:05 [ 4] [ 12] [000000000000] +16:31:05 [ 7] [ 10] [0320093008] +16:31:05 [ 11] [ 6] [270468] +16:31:05 [ 12] [ 6] [163008] +16:31:05 [ 13] [ 4] [0320] +16:31:05 [ 15] [ 4] [0320] +16:31:05 [ 18] [ 4] [6011] +16:31:05 [ 19] [ 3] [418] +16:31:05 [ 32] [ 6] [180893] +16:31:05 [ 35] [ 32] [6213545001031917=491212013191506] +16:31:05 [ 37] [ 12] [507909270468] +16:31:05 [ 38] [ 6] [051049] +16:31:05 [ 39] [ 2] [00] +16:31:05 [ 41] [ 8] [0243VTKS] +16:31:05 [ 49] [ 3] [418] +16:31:05 [ 54] [ 40] [1001418C0001346516451002418C000134651645] +16:31:05 ============================================================================ +16:31:05 Sending to : +16:31:05 ============================================================================ +16:31:05 + + +waiting on router queue for slot.... +16:31:06 ============================================================================ +16:31:06 Slot Id : <11> +16:31:06 Transaction Type : RESPONSE +16:31:06 Received From : +16:31:06 ============================================================================ +16:31:06 FNo. Len. Field Value +16:31:06 ============================================================================ +16:31:06 [ 1] [ 4] [0210] +16:31:06 [ 2] [ 16] [6213545001031917] +16:31:06 [ 3] [ 6] [301000] +16:31:06 [ 4] [ 12] [000000000000] +16:31:06 [ 7] [ 10] [0320093008] +16:31:06 [ 11] [ 6] [270468] +16:31:06 [ 12] [ 6] [163008] +16:31:06 [ 13] [ 4] [0320] +16:31:06 [ 15] [ 4] [0320] +16:31:06 [ 18] [ 4] [6011] +16:31:06 [ 19] [ 3] [418] +16:31:06 [ 32] [ 6] [180893] +16:31:06 [ 35] [ 32] [6213545001031917=491212013191506] +16:31:06 [ 37] [ 12] [507909270468] +16:31:06 [ 38] [ 6] [051049] +16:31:06 [ 39] [ 2] [00] +16:31:06 [ 41] [ 8] [0243VTKS] +16:31:06 [ 49] [ 3] [418] +16:31:06 [ 54] [ 40] [1001418C0001346516451002418C000134651645] +16:31:06 ============================================================================ +16:31:06 Calculate Source COMM Id = 2 +16:31:06 ============================================================================ +16:31:06 + + +waiting on router queue for slot.... +16:31:10 ============================================================================ +16:31:10 Slot Id : <33> +16:31:10 Transaction Type : REQUEST +16:31:10 Received From : +16:31:10 ============================================================================ +16:31:10 FNo. Len. Field Value +16:31:10 ============================================================================ +16:31:10 [ 1] [ 4] [0800] +16:31:10 [ 7] [ 10] [0320234257] +16:31:10 [ 11] [ 6] [164257] +16:31:10 [ 37] [ 12] [57916164257] +16:31:10 [ 70] [ 3] [301] +16:31:10 ============================================================================ +16:31:10 + + +waiting on router queue for slot.... +16:31:10 Sending to : +16:31:10 ============================================================================ +16:31:10 ============================================================================ +16:31:10 Slot Id : <33> +16:31:10 Transaction Type : RESPONSE +16:31:10 Received From : +16:31:10 ============================================================================ +16:31:10 FNo. Len. Field Value +16:31:10 ============================================================================ +16:31:10 [ 1] [ 4] [0810] +16:31:10 [ 7] [ 10] [0320234257] +16:31:10 [ 11] [ 6] [164257] +16:31:10 [ 37] [ 12] [579161642570] +16:31:10 [ 39] [ 2] [00] +16:31:10 [ 70] [ 3] [810] +16:31:10 ============================================================================ +16:31:10 Calculate Source COMM Id = 6 +16:31:10 ============================================================================ +16:31:10 + + +waiting on router queue for slot.... +16:31:18 ============================================================================ +16:31:18 Slot Id : <21> +16:31:18 Transaction Type : REQUEST +16:31:18 Received From : +16:31:18 ============================================================================ +16:31:18 FNo. Len. Field Value +16:31:18 ============================================================================ +16:31:18 [ 1] [ 4] [0200] +16:31:18 [ 2] [ 16] [6688990103084008] +16:31:18 [ 3] [ 6] [011000] +16:31:18 [ 4] [ 12] [000100000000] +16:31:18 [ 7] [ 10] [0320163113] +16:31:18 [ 11] [ 6] [800209] +16:31:18 [ 12] [ 6] [163113] +16:31:18 [ 13] [ 4] [0320] +16:31:18 [ 15] [ 4] [0320] +16:31:18 [ 18] [ 4] [6011] +16:31:18 [ 22] [ 3] [900] +16:31:18 [ 25] [ 2] [02] +16:31:18 [ 28] [ 9] [D00002000] +16:31:18 [ 32] [ 6] [621354] +16:31:18 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:31:18 [ 37] [ 12] [507904719790] +16:31:18 [ 41] [ 8] [18001000] +16:31:18 [ 42] [ 15] [NATIVE ] +16:31:18 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:31:18 [ 49] [ 3] [418] +16:31:18 [ 52] [ 16] [855D858B5CAE4147] +16:31:18 ============================================================================ +16:31:18 + + +waiting on router queue for slot.... +16:31:18 Sending to : +16:31:18 ============================================================================ +16:31:18 Sending to : +16:31:18 ============================================================================ +16:31:18 ============================================================================ +16:31:18 Slot Id : <496> +16:31:18 Transaction Type : REQUEST +16:31:18 Received From : +16:31:18 ============================================================================ +16:31:18 FNo. Len. Field Value +16:31:18 ============================================================================ +16:31:18 [ 1] [ 4] [0800] +16:31:18 [ 7] [ 10] [0320093025] +16:31:18 [ 11] [ 6] [157250] +16:31:18 [ 70] [ 3] [301] +16:31:18 ============================================================================ +16:31:18 + + +waiting on router queue for slot.... +16:31:18 Sending to : +16:31:18 ============================================================================ +16:31:18 ============================================================================ +16:31:18 Slot Id : <496> +16:31:18 Transaction Type : RESPONSE +16:31:18 Received From : +16:31:18 ============================================================================ +16:31:18 FNo. Len. Field Value +16:31:18 ============================================================================ +16:31:18 [ 1] [ 4] [0810] +16:31:18 [ 7] [ 10] [0320093025] +16:31:18 [ 11] [ 6] [157250] +16:31:18 [ 39] [ 2] [00] +16:31:18 [ 70] [ 3] [301] +16:31:18 ============================================================================ +16:31:18 Calculate Source COMM Id = 2 +16:31:18 ============================================================================ +16:31:18 + + +waiting on router queue for slot.... +16:31:18 ============================================================================ +16:31:18 Slot Id : <21> +16:31:18 Transaction Type : REQUEST +16:31:18 Received From : +16:31:18 ============================================================================ +16:31:18 FNo. Len. Field Value +16:31:18 ============================================================================ +16:31:18 [ 1] [ 4] [0200] +16:31:18 [ 2] [ 16] [6688990103084008] +16:31:18 [ 3] [ 6] [011000] +16:31:18 [ 4] [ 12] [000100000000] +16:31:18 [ 7] [ 10] [0320163113] +16:31:18 [ 11] [ 6] [800209] +16:31:18 [ 12] [ 6] [163113] +16:31:18 [ 13] [ 4] [0320] +16:31:18 [ 15] [ 4] [0320] +16:31:18 [ 18] [ 4] [6011] +16:31:18 [ 22] [ 3] [900] +16:31:18 [ 25] [ 2] [02] +16:31:18 [ 28] [ 9] [D00002000] +16:31:18 [ 32] [ 6] [621354] +16:31:18 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:31:18 [ 37] [ 12] [507904719790] +16:31:18 [ 41] [ 8] [18001000] +16:31:18 [ 42] [ 15] [NATIVE ] +16:31:18 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:31:18 [ 49] [ 3] [418] +16:31:18 [ 52] [ 16] [855D858B5CAE4147] +16:31:18 ============================================================================ +16:31:18 + + +waiting on router queue for slot.... +16:31:18 Sending to : +16:31:18 ============================================================================ +16:31:18 ============================================================================ +16:31:18 Slot Id : <21> +16:31:18 Transaction Type : REQUEST +16:31:18 Received From : +16:31:18 ============================================================================ +16:31:18 FNo. Len. Field Value +16:31:18 ============================================================================ +16:31:18 [ 1] [ 4] [0200] +16:31:18 [ 2] [ 16] [6688990103084008] +16:31:18 [ 3] [ 6] [011000] +16:31:18 [ 4] [ 12] [000100000000] +16:31:18 [ 7] [ 10] [0320163113] +16:31:18 [ 11] [ 6] [800209] +16:31:18 [ 12] [ 6] [163113] +16:31:18 [ 13] [ 4] [0320] +16:31:18 [ 15] [ 4] [0320] +16:31:18 [ 18] [ 4] [6011] +16:31:18 [ 22] [ 3] [900] +16:31:18 [ 25] [ 2] [02] +16:31:18 [ 28] [ 9] [D00002000] +16:31:18 [ 32] [ 6] [621354] +16:31:18 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:31:18 [ 37] [ 12] [507904719790] +16:31:18 [ 41] [ 8] [18001000] +16:31:18 [ 42] [ 15] [NATIVE ] +16:31:18 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:31:18 [ 49] [ 3] [418] +16:31:18 [ 52] [ 16] [BCCE8F7AD8113D4A] +16:31:18 ============================================================================ +16:31:18 + + +waiting on router queue for slot.... +16:31:18 Sending to : <4> +16:31:18 ============================================================================ +16:31:19 ============================================================================ +16:31:19 Slot Id : <30> +16:31:19 Transaction Type : REQUEST +16:31:19 Received From : +16:31:19 ============================================================================ +16:31:19 FNo. Len. Field Value +16:31:19 ============================================================================ +16:31:19 [ 1] [ 4] [0800] +16:31:19 [ 7] [ 10] [0320093114] +16:31:19 [ 11] [ 6] [009472] +16:31:19 [ 37] [ 12] [507916009472] +16:31:19 [ 70] [ 3] [001] +16:31:19 ============================================================================ +16:31:19 + + +waiting on router queue for slot.... +16:31:19 Sending to : +16:31:19 ============================================================================ +16:31:19 ============================================================================ +16:31:19 Slot Id : <30> +16:31:19 Transaction Type : RESPONSE +16:31:19 Received From : +16:31:19 ============================================================================ +16:31:19 FNo. Len. Field Value +16:31:19 ============================================================================ +16:31:19 [ 1] [ 4] [0810] +16:31:19 [ 7] [ 10] [0320093114] +16:31:19 [ 11] [ 6] [009472] +16:31:19 [ 37] [ 12] [507916009472] +16:31:19 [ 39] [ 2] [00] +16:31:19 [ 70] [ 3] [001] +16:31:19 ============================================================================ +16:31:19 Calculate Source COMM Id = 0 +16:31:19 ============================================================================ +16:31:19 + + +waiting on router queue for slot.... +16:31:19 ============================================================================ +16:31:19 Slot Id : <21> +16:31:19 Transaction Type : RESPONSE +16:31:19 Received From : +16:31:19 ============================================================================ +16:31:19 FNo. Len. Field Value +16:31:19 ============================================================================ +16:31:19 [ 1] [ 4] [0210] +16:31:19 [ 2] [ 16] [6688990103084008] +16:31:19 [ 3] [ 6] [011000] +16:31:19 [ 4] [ 12] [000100000000] +16:31:19 [ 11] [ 6] [800209] +16:31:19 [ 12] [ 6] [163113] +16:31:19 [ 15] [ 4] [0320] +16:31:19 [ 18] [ 4] [6011] +16:31:19 [ 32] [ 6] [621354] +16:31:19 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:31:19 [ 37] [ 12] [507904719790] +16:31:19 [ 38] [ 6] [731369] +16:31:19 [ 39] [ 2] [00] +16:31:19 [ 41] [ 8] [18001000] +16:31:19 [ 49] [ 3] [418] +16:31:19 [ 54] [ 20] [1002418C000181478766] +16:31:19 ============================================================================ +16:31:19 Sending to : +16:31:19 ============================================================================ +16:31:19 + + +waiting on router queue for slot.... +16:31:19 ============================================================================ +16:31:19 Slot Id : <37> +16:31:19 Transaction Type : REQUEST +16:31:19 Received From : +16:31:19 ============================================================================ +16:31:19 FNo. Len. Field Value +16:31:19 ============================================================================ +16:31:19 [ 1] [ 4] [0200] +16:31:19 [ 2] [ 16] [6213545000334247] +16:31:19 [ 3] [ 6] [010000] +16:31:19 [ 4] [ 12] [000100000000] +16:31:19 [ 7] [ 10] [0320093025] +16:31:19 [ 11] [ 6] [270473] +16:31:19 [ 12] [ 6] [163025] +16:31:19 [ 13] [ 4] [0320] +16:31:19 [ 14] [ 4] [4912] +16:31:19 [ 15] [ 4] [0320] +16:31:19 [ 18] [ 4] [6011] +16:31:19 [ 19] [ 3] [418] +16:31:19 [ 22] [ 3] [021] +16:31:19 [ 25] [ 2] [01] +16:31:19 [ 28] [ 9] [D00002000] +16:31:19 [ 32] [ 6] [180893] +16:31:19 [ 35] [ 32] [6213545000334247=491212013424967] +16:31:19 [ 37] [ 12] [507909270473] +16:31:19 [ 41] [ 8] [0161HQBR] +16:31:19 [ 42] [ 15] [999999 ] +16:31:19 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +16:31:19 [ 49] [ 3] [418] +16:31:19 [ 52] [ 16] [1C915F8F9B49642B] +16:31:19 ============================================================================ +16:31:19 + + +waiting on router queue for slot.... +16:31:19 Sending to : +16:31:19 ============================================================================ +16:31:19 Sending to : +16:31:19 ============================================================================ +16:31:20 ============================================================================ +16:31:20 Slot Id : <37> +16:31:20 Transaction Type : REQUEST +16:31:20 Received From : +16:31:20 ============================================================================ +16:31:20 FNo. Len. Field Value +16:31:20 ============================================================================ +16:31:20 [ 1] [ 4] [0200] +16:31:20 [ 2] [ 16] [6213545000334247] +16:31:20 [ 3] [ 6] [010000] +16:31:20 [ 4] [ 12] [000100000000] +16:31:20 [ 7] [ 10] [0320093025] +16:31:20 [ 11] [ 6] [270473] +16:31:20 [ 12] [ 6] [163025] +16:31:20 [ 13] [ 4] [0320] +16:31:20 [ 14] [ 4] [4912] +16:31:20 [ 15] [ 4] [0320] +16:31:20 [ 18] [ 4] [6011] +16:31:20 [ 19] [ 3] [418] +16:31:20 [ 22] [ 3] [021] +16:31:20 [ 25] [ 2] [01] +16:31:20 [ 28] [ 9] [D00002000] +16:31:20 [ 32] [ 6] [180893] +16:31:20 [ 35] [ 32] [6213545000334247=491212013424967] +16:31:20 [ 37] [ 12] [507909270473] +16:31:20 [ 41] [ 8] [0161HQBR] +16:31:20 [ 42] [ 15] [999999 ] +16:31:20 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +16:31:20 [ 49] [ 3] [418] +16:31:20 [ 52] [ 16] [1C915F8F9B49642B] +16:31:20 ============================================================================ +16:31:20 + + +waiting on router queue for slot.... +16:31:20 Sending to : +16:31:20 ============================================================================ +16:31:20 ============================================================================ +16:31:20 Slot Id : <37> +16:31:20 Transaction Type : REQUEST +16:31:20 Received From : +16:31:20 ============================================================================ +16:31:20 FNo. Len. Field Value +16:31:20 ============================================================================ +16:31:20 [ 1] [ 4] [0200] +16:31:20 [ 2] [ 16] [6213545000334247] +16:31:20 [ 3] [ 6] [010000] +16:31:20 [ 4] [ 12] [000100000000] +16:31:20 [ 7] [ 10] [0320093025] +16:31:20 [ 11] [ 6] [270473] +16:31:20 [ 12] [ 6] [163025] +16:31:20 [ 13] [ 4] [0320] +16:31:20 [ 14] [ 4] [4912] +16:31:20 [ 15] [ 4] [0320] +16:31:20 [ 18] [ 4] [6011] +16:31:20 [ 19] [ 3] [418] +16:31:20 [ 22] [ 3] [021] +16:31:20 [ 25] [ 2] [01] +16:31:20 [ 28] [ 9] [D00002000] +16:31:20 [ 32] [ 6] [180893] +16:31:20 [ 35] [ 32] [6213545000334247=491212013424967] +16:31:20 [ 37] [ 12] [507909270473] +16:31:20 [ 41] [ 8] [0161HQBR] +16:31:20 [ 42] [ 15] [999999 ] +16:31:20 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +16:31:20 [ 49] [ 3] [418] +16:31:20 [ 52] [ 16] [02E1696C20E42C99] +16:31:20 ============================================================================ +16:31:20 + + +waiting on router queue for slot.... +16:31:20 Sending to : <0> +16:31:20 ============================================================================ +16:31:20 ============================================================================ +16:31:20 Slot Id : <37> +16:31:20 Transaction Type : RESPONSE +16:31:20 Received From : +16:31:20 ============================================================================ +16:31:20 FNo. Len. Field Value +16:31:20 ============================================================================ +16:31:20 [ 1] [ 4] [0210] +16:31:20 [ 2] [ 16] [6213545000334247] +16:31:20 [ 3] [ 6] [010000] +16:31:20 [ 4] [ 12] [000100000000] +16:31:20 [ 7] [ 10] [0320093025] +16:31:20 [ 11] [ 6] [270473] +16:31:20 [ 12] [ 6] [163025] +16:31:20 [ 13] [ 4] [0320] +16:31:20 [ 15] [ 4] [0320] +16:31:20 [ 18] [ 4] [6011] +16:31:20 [ 19] [ 3] [418] +16:31:20 [ 32] [ 6] [180893] +16:31:20 [ 35] [ 32] [6213545000334247=491212013424967] +16:31:20 [ 37] [ 12] [507909270473] +16:31:20 [ 38] [ 6] [368026] +16:31:20 [ 39] [ 2] [00] +16:31:20 [ 41] [ 8] [0161HQBR] +16:31:20 [ 49] [ 3] [418] +16:31:20 [ 54] [ 40] [0001418C0001028602210002418C000102860221] +16:31:20 ============================================================================ +16:31:20 Sending to : +16:31:20 ============================================================================ +16:31:20 + + +waiting on router queue for slot.... +16:31:21 ============================================================================ +16:31:21 Slot Id : <21> +16:31:21 Transaction Type : RESPONSE +16:31:21 Received From : +16:31:21 ============================================================================ +16:31:21 FNo. Len. Field Value +16:31:21 ============================================================================ +16:31:21 [ 1] [ 4] [0210] +16:31:21 [ 2] [ 16] [6688990103084008] +16:31:21 [ 3] [ 6] [011000] +16:31:21 [ 4] [ 12] [000100000000] +16:31:21 [ 11] [ 6] [800209] +16:31:21 [ 12] [ 6] [163113] +16:31:21 [ 15] [ 4] [0320] +16:31:21 [ 18] [ 4] [6011] +16:31:21 [ 32] [ 6] [621354] +16:31:21 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:31:21 [ 37] [ 12] [507904719790] +16:31:21 [ 38] [ 6] [731369] +16:31:21 [ 39] [ 2] [00] +16:31:21 [ 41] [ 8] [18001000] +16:31:21 [ 49] [ 3] [418] +16:31:21 [ 54] [ 20] [1002418C000181478766] +16:31:21 ============================================================================ +16:31:21 Calculate Source COMM Id = 0 +16:31:21 ============================================================================ +16:31:21 + + +waiting on router queue for slot.... +16:31:22 ============================================================================ +16:31:22 Slot Id : <461> +16:31:22 Transaction Type : REQUEST +16:31:22 Received From : +16:31:22 ============================================================================ +16:31:22 FNo. Len. Field Value +16:31:22 ============================================================================ +16:31:22 [ 1] [ 4] [0800] +16:31:22 [ 7] [ 10] [0320092912] +16:31:22 [ 11] [ 6] [036528] +16:31:22 [ 37] [ 12] [57916036528] +16:31:22 [ 70] [ 3] [301] +16:31:22 ============================================================================ +16:31:22 + + +waiting on router queue for slot.... +16:31:22 Sending to : +16:31:22 ============================================================================ +16:31:22 ============================================================================ +16:31:22 Slot Id : <461> +16:31:22 Transaction Type : RESPONSE +16:31:22 Received From : +16:31:22 ============================================================================ +16:31:22 FNo. Len. Field Value +16:31:22 ============================================================================ +16:31:22 [ 1] [ 4] [0810] +16:31:22 [ 7] [ 10] [0320092912] +16:31:22 [ 11] [ 6] [036528] +16:31:22 [ 37] [ 12] [579160365280] +16:31:22 [ 39] [ 2] [00] +16:31:22 [ 70] [ 3] [810] +16:31:22 ============================================================================ +16:31:22 Calculate Source COMM Id = 4 +16:31:22 ============================================================================ +16:31:22 + + +waiting on router queue for slot.... +16:31:22 ============================================================================ +16:31:22 Slot Id : <37> +16:31:22 Transaction Type : RESPONSE +16:31:22 Received From : +16:31:22 ============================================================================ +16:31:22 FNo. Len. Field Value +16:31:22 ============================================================================ +16:31:22 [ 1] [ 4] [0210] +16:31:22 [ 2] [ 16] [6213545000334247] +16:31:22 [ 3] [ 6] [010000] +16:31:22 [ 4] [ 12] [000100000000] +16:31:22 [ 7] [ 10] [0320093025] +16:31:22 [ 11] [ 6] [270473] +16:31:22 [ 12] [ 6] [163025] +16:31:22 [ 13] [ 4] [0320] +16:31:22 [ 15] [ 4] [0320] +16:31:22 [ 18] [ 4] [6011] +16:31:22 [ 19] [ 3] [418] +16:31:22 [ 32] [ 6] [180893] +16:31:22 [ 35] [ 32] [6213545000334247=491212013424967] +16:31:22 [ 37] [ 12] [507909270473] +16:31:22 [ 38] [ 6] [368026] +16:31:22 [ 39] [ 2] [00] +16:31:22 [ 41] [ 8] [0161HQBR] +16:31:22 [ 49] [ 3] [418] +16:31:22 [ 54] [ 40] [0001418C0001028602210002418C000102860221] +16:31:22 ============================================================================ +16:31:22 Calculate Source COMM Id = 2 +16:31:22 ============================================================================ +16:31:22 + + +waiting on router queue for slot.... +16:31:23 ============================================================================ +16:31:23 Slot Id : <9> +16:31:23 Transaction Type : REQUEST +16:31:23 Received From : +16:31:23 ============================================================================ +16:31:23 FNo. Len. Field Value +16:31:23 ============================================================================ +16:31:23 [ 1] [ 4] [0200] +16:31:23 [ 2] [ 16] [6213544001572319] +16:31:23 [ 3] [ 6] [301000] +16:31:23 [ 4] [ 12] [000000000000] +16:31:23 [ 7] [ 10] [0320163144] +16:31:23 [ 11] [ 6] [208751] +16:31:23 [ 12] [ 6] [162650] +16:31:23 [ 13] [ 4] [0320] +16:31:23 [ 14] [ 4] [4912] +16:31:23 [ 15] [ 4] [0320] +16:31:23 [ 18] [ 4] [6011] +16:31:23 [ 19] [ 3] [418] +16:31:23 [ 22] [ 3] [021] +16:31:23 [ 25] [ 2] [01] +16:31:23 [ 28] [ 9] [D00000000] +16:31:23 [ 32] [ 6] [198901] +16:31:23 [ 35] [ 32] [6213544001572319=491212017231291] +16:31:23 [ 37] [ 12] [507916208751] +16:31:23 [ 41] [ 8] [19529001] +16:31:23 [ 42] [ 15] [000000041952901] +16:31:23 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:31:23 [ 49] [ 3] [418] +16:31:23 [ 52] [ 16] [1AF516DE9ACCB101] +16:31:23 ============================================================================ +16:31:23 + + +waiting on router queue for slot.... +16:31:24 Sending to : +16:31:24 ============================================================================ +16:31:24 Sending to : +16:31:24 ============================================================================ +16:31:24 ============================================================================ +16:31:24 Slot Id : <9> +16:31:24 Transaction Type : REQUEST +16:31:24 Received From : +16:31:24 ============================================================================ +16:31:24 FNo. Len. Field Value +16:31:24 ============================================================================ +16:31:24 [ 1] [ 4] [0200] +16:31:24 [ 2] [ 16] [6213544001572319] +16:31:24 [ 3] [ 6] [301000] +16:31:24 [ 4] [ 12] [000000000000] +16:31:24 [ 7] [ 10] [0320163144] +16:31:24 [ 11] [ 6] [208751] +16:31:24 [ 12] [ 6] [162650] +16:31:24 [ 13] [ 4] [0320] +16:31:24 [ 14] [ 4] [4912] +16:31:24 [ 15] [ 4] [0320] +16:31:24 [ 18] [ 4] [6011] +16:31:24 [ 19] [ 3] [418] +16:31:24 [ 22] [ 3] [021] +16:31:24 [ 25] [ 2] [01] +16:31:24 [ 28] [ 9] [D00000000] +16:31:24 [ 32] [ 6] [198901] +16:31:24 [ 35] [ 32] [6213544001572319=491212017231291] +16:31:24 [ 37] [ 12] [507916208751] +16:31:24 [ 41] [ 8] [19529001] +16:31:24 [ 42] [ 15] [000000041952901] +16:31:24 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:31:24 [ 49] [ 3] [418] +16:31:24 [ 52] [ 16] [1AF516DE9ACCB101] +16:31:24 ============================================================================ +16:31:24 + + +waiting on router queue for slot.... +16:31:24 Sending to : +16:31:24 ============================================================================ +16:31:24 ============================================================================ +16:31:24 Slot Id : <9> +16:31:24 Transaction Type : REQUEST +16:31:24 Received From : +16:31:24 ============================================================================ +16:31:24 FNo. Len. Field Value +16:31:24 ============================================================================ +16:31:24 [ 1] [ 4] [0200] +16:31:24 [ 2] [ 16] [6213544001572319] +16:31:24 [ 3] [ 6] [301000] +16:31:24 [ 4] [ 12] [000000000000] +16:31:24 [ 7] [ 10] [0320163144] +16:31:24 [ 11] [ 6] [208751] +16:31:24 [ 12] [ 6] [162650] +16:31:24 [ 13] [ 4] [0320] +16:31:24 [ 14] [ 4] [4912] +16:31:24 [ 15] [ 4] [0320] +16:31:24 [ 18] [ 4] [6011] +16:31:24 [ 19] [ 3] [418] +16:31:24 [ 22] [ 3] [021] +16:31:24 [ 25] [ 2] [01] +16:31:24 [ 28] [ 9] [D00000000] +16:31:24 [ 32] [ 6] [198901] +16:31:24 [ 35] [ 32] [6213544001572319=491212017231291] +16:31:24 [ 37] [ 12] [507916208751] +16:31:24 [ 41] [ 8] [19529001] +16:31:24 [ 42] [ 15] [000000041952901] +16:31:24 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:31:24 [ 49] [ 3] [418] +16:31:24 [ 52] [ 16] [DCDDC14D96C37ABC] +16:31:24 ============================================================================ +16:31:24 + + +waiting on router queue for slot.... +16:31:24 Sending to : <0> +16:31:24 ============================================================================ +16:31:25 ============================================================================ +16:31:25 Slot Id : <9> +16:31:25 Transaction Type : RESPONSE +16:31:25 Received From : +16:31:25 ============================================================================ +16:31:25 FNo. Len. Field Value +16:31:25 ============================================================================ +16:31:25 [ 1] [ 4] [0210] +16:31:25 [ 2] [ 16] [6213544001572319] +16:31:25 [ 3] [ 6] [301000] +16:31:25 [ 4] [ 12] [000000000000] +16:31:25 [ 7] [ 10] [0320163144] +16:31:25 [ 11] [ 6] [208751] +16:31:25 [ 12] [ 6] [162650] +16:31:25 [ 13] [ 4] [0320] +16:31:25 [ 15] [ 4] [0320] +16:31:25 [ 18] [ 4] [6011] +16:31:25 [ 19] [ 3] [418] +16:31:25 [ 32] [ 6] [198901] +16:31:25 [ 35] [ 32] [6213544001572319=491212017231291] +16:31:25 [ 37] [ 12] [507916208751] +16:31:25 [ 38] [ 6] [463296] +16:31:25 [ 39] [ 2] [00] +16:31:25 [ 41] [ 8] [19529001] +16:31:25 [ 49] [ 3] [418] +16:31:25 [ 54] [ 40] [1001418C0000094902441002418C000009490244] +16:31:25 ============================================================================ +16:31:25 Sending to : +16:31:25 ============================================================================ +16:31:25 + + +waiting on router queue for slot.... +16:31:27 ============================================================================ +16:31:27 Slot Id : <9> +16:31:27 Transaction Type : RESPONSE +16:31:27 Received From : +16:31:27 ============================================================================ +16:31:27 FNo. Len. Field Value +16:31:27 ============================================================================ +16:31:27 [ 1] [ 4] [0210] +16:31:27 [ 2] [ 16] [6213544001572319] +16:31:27 [ 3] [ 6] [301000] +16:31:27 [ 4] [ 12] [000000000000] +16:31:27 [ 7] [ 10] [0320163144] +16:31:27 [ 11] [ 6] [208751] +16:31:27 [ 12] [ 6] [162650] +16:31:27 [ 13] [ 4] [0320] +16:31:27 [ 15] [ 4] [0320] +16:31:27 [ 18] [ 4] [6011] +16:31:27 [ 19] [ 3] [418] +16:31:27 [ 32] [ 6] [198901] +16:31:27 [ 35] [ 32] [6213544001572319=491212017231291] +16:31:27 [ 37] [ 12] [507916208751] +16:31:27 [ 38] [ 6] [463296] +16:31:27 [ 39] [ 2] [00] +16:31:27 [ 41] [ 8] [19529001] +16:31:27 [ 49] [ 3] [418] +16:31:27 [ 54] [ 40] [1001418C0000094902441002418C000009490244] +16:31:27 ============================================================================ +16:31:27 Calculate Source COMM Id = 5 +16:31:27 ============================================================================ +16:31:27 + + +waiting on router queue for slot.... +16:31:27 ============================================================================ +16:31:27 Slot Id : <36> +16:31:27 Transaction Type : REQUEST +16:31:27 Received From : +16:31:27 ============================================================================ +16:31:27 FNo. Len. Field Value +16:31:27 ============================================================================ +16:31:27 [ 1] [ 4] [0200] +16:31:27 [ 2] [ 16] [1808931800005819] +16:31:27 [ 3] [ 6] [011000] +16:31:27 [ 4] [ 12] [000020000000] +16:31:27 [ 7] [ 10] [0320163123] +16:31:27 [ 11] [ 6] [800253] +16:31:27 [ 12] [ 6] [163123] +16:31:27 [ 13] [ 4] [0320] +16:31:27 [ 15] [ 4] [0320] +16:31:27 [ 18] [ 4] [6011] +16:31:27 [ 22] [ 3] [900] +16:31:27 [ 25] [ 2] [02] +16:31:27 [ 28] [ 9] [D00002000] +16:31:27 [ 32] [ 6] [621354] +16:31:27 [ 35] [ 27] [1808931800005819=1803500314] +16:31:27 [ 37] [ 12] [507904635875] +16:31:27 [ 41] [ 8] [17000800] +16:31:27 [ 42] [ 15] [NATIVE ] +16:31:27 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:31:27 [ 49] [ 3] [418] +16:31:27 [ 52] [ 16] [FB005D378095F13B] +16:31:27 ============================================================================ +16:31:27 + + +waiting on router queue for slot.... +16:31:27 Sending to : +16:31:27 ============================================================================ +16:31:27 Sending to : +16:31:27 ============================================================================ +16:31:28 ============================================================================ +16:31:28 Slot Id : <36> +16:31:28 Transaction Type : REQUEST +16:31:28 Received From : +16:31:28 ============================================================================ +16:31:28 FNo. Len. Field Value +16:31:28 ============================================================================ +16:31:28 [ 1] [ 4] [0200] +16:31:28 [ 2] [ 16] [1808931800005819] +16:31:28 [ 3] [ 6] [011000] +16:31:28 [ 4] [ 12] [000020000000] +16:31:28 [ 7] [ 10] [0320163123] +16:31:28 [ 11] [ 6] [800253] +16:31:28 [ 12] [ 6] [163123] +16:31:28 [ 13] [ 4] [0320] +16:31:28 [ 15] [ 4] [0320] +16:31:28 [ 18] [ 4] [6011] +16:31:28 [ 22] [ 3] [900] +16:31:28 [ 25] [ 2] [02] +16:31:28 [ 28] [ 9] [D00002000] +16:31:28 [ 32] [ 6] [621354] +16:31:28 [ 35] [ 27] [1808931800005819=1803500314] +16:31:28 [ 37] [ 12] [507904635875] +16:31:28 [ 41] [ 8] [17000800] +16:31:28 [ 42] [ 15] [NATIVE ] +16:31:28 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:31:28 [ 49] [ 3] [418] +16:31:28 [ 52] [ 16] [FB005D378095F13B] +16:31:28 ============================================================================ +16:31:28 + + +waiting on router queue for slot.... +16:31:28 Sending to : +16:31:28 ============================================================================ +16:31:28 ============================================================================ +16:31:28 Slot Id : <36> +16:31:28 Transaction Type : REQUEST +16:31:28 Received From : +16:31:28 ============================================================================ +16:31:28 FNo. Len. Field Value +16:31:28 ============================================================================ +16:31:28 [ 1] [ 4] [0200] +16:31:28 [ 2] [ 16] [1808931800005819] +16:31:28 [ 3] [ 6] [011000] +16:31:28 [ 4] [ 12] [000020000000] +16:31:28 [ 7] [ 10] [0320163123] +16:31:28 [ 11] [ 6] [800253] +16:31:28 [ 12] [ 6] [163123] +16:31:28 [ 13] [ 4] [0320] +16:31:28 [ 15] [ 4] [0320] +16:31:28 [ 18] [ 4] [6011] +16:31:28 [ 22] [ 3] [900] +16:31:28 [ 25] [ 2] [02] +16:31:28 [ 28] [ 9] [D00002000] +16:31:28 [ 32] [ 6] [621354] +16:31:28 [ 35] [ 27] [1808931800005819=1803500314] +16:31:28 [ 37] [ 12] [507904635875] +16:31:28 [ 41] [ 8] [17000800] +16:31:28 [ 42] [ 15] [NATIVE ] +16:31:28 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:31:28 [ 49] [ 3] [418] +16:31:28 [ 52] [ 16] [98BE394402CFEE30] +16:31:28 ============================================================================ +16:31:28 + + +waiting on router queue for slot.... +16:31:28 Sending to : <2> +16:31:28 ============================================================================ +16:31:28 ============================================================================ +16:31:28 Slot Id : <45> +16:31:28 Transaction Type : REQUEST +16:31:28 Received From : +16:31:28 ============================================================================ +16:31:28 FNo. Len. Field Value +16:31:28 ============================================================================ +16:31:28 [ 1] [ 4] [0200] +16:31:28 [ 2] [ 16] [6688990103282008] +16:31:28 [ 3] [ 6] [300000] +16:31:28 [ 4] [ 12] [000000000000] +16:31:28 [ 7] [ 10] [0320163123] +16:31:28 [ 11] [ 6] [800256] +16:31:28 [ 12] [ 6] [163123] +16:31:28 [ 13] [ 4] [0320] +16:31:28 [ 15] [ 4] [0320] +16:31:28 [ 18] [ 4] [6011] +16:31:28 [ 22] [ 3] [900] +16:31:28 [ 25] [ 2] [02] +16:31:28 [ 28] [ 9] [D00000000] +16:31:28 [ 32] [ 6] [621354] +16:31:28 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:31:28 [ 37] [ 12] [507903499600] +16:31:28 [ 41] [ 8] [06002200] +16:31:28 [ 42] [ 15] [NATIVE ] +16:31:28 [ 43] [ 40] [Beng Market Beng LAO] +16:31:28 [ 49] [ 3] [418] +16:31:28 [ 52] [ 16] [D0FEEEB40B192FF5] +16:31:28 ============================================================================ +16:31:28 + + +waiting on router queue for slot.... +16:31:28 Sending to : +16:31:28 ============================================================================ +16:31:28 Sending to : +16:31:28 ============================================================================ +16:31:29 ============================================================================ +16:31:29 Slot Id : <45> +16:31:29 Transaction Type : REQUEST +16:31:29 Received From : +16:31:29 ============================================================================ +16:31:29 FNo. Len. Field Value +16:31:29 ============================================================================ +16:31:29 [ 1] [ 4] [0200] +16:31:29 [ 2] [ 16] [6688990103282008] +16:31:29 [ 3] [ 6] [300000] +16:31:29 [ 4] [ 12] [000000000000] +16:31:29 [ 7] [ 10] [0320163123] +16:31:29 [ 11] [ 6] [800256] +16:31:29 [ 12] [ 6] [163123] +16:31:29 [ 13] [ 4] [0320] +16:31:29 [ 15] [ 4] [0320] +16:31:29 [ 18] [ 4] [6011] +16:31:29 [ 22] [ 3] [900] +16:31:29 [ 25] [ 2] [02] +16:31:29 [ 28] [ 9] [D00000000] +16:31:29 [ 32] [ 6] [621354] +16:31:29 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:31:29 [ 37] [ 12] [507903499600] +16:31:29 [ 41] [ 8] [06002200] +16:31:29 [ 42] [ 15] [NATIVE ] +16:31:29 [ 43] [ 40] [Beng Market Beng LAO] +16:31:29 [ 49] [ 3] [418] +16:31:29 [ 52] [ 16] [D0FEEEB40B192FF5] +16:31:29 ============================================================================ +16:31:29 + + +waiting on router queue for slot.... +16:31:29 Sending to : +16:31:29 ============================================================================ +16:31:29 ============================================================================ +16:31:29 Slot Id : <45> +16:31:29 Transaction Type : REQUEST +16:31:29 Received From : +16:31:29 ============================================================================ +16:31:29 FNo. Len. Field Value +16:31:29 ============================================================================ +16:31:29 [ 1] [ 4] [0200] +16:31:29 [ 2] [ 16] [6688990103282008] +16:31:29 [ 3] [ 6] [300000] +16:31:29 [ 4] [ 12] [000000000000] +16:31:29 [ 7] [ 10] [0320163123] +16:31:29 [ 11] [ 6] [800256] +16:31:29 [ 12] [ 6] [163123] +16:31:29 [ 13] [ 4] [0320] +16:31:29 [ 15] [ 4] [0320] +16:31:29 [ 18] [ 4] [6011] +16:31:29 [ 22] [ 3] [900] +16:31:29 [ 25] [ 2] [02] +16:31:29 [ 28] [ 9] [D00000000] +16:31:29 [ 32] [ 6] [621354] +16:31:29 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:31:29 [ 37] [ 12] [507903499600] +16:31:29 [ 41] [ 8] [06002200] +16:31:29 [ 42] [ 15] [NATIVE ] +16:31:29 [ 43] [ 40] [Beng Market Beng LAO] +16:31:29 [ 49] [ 3] [418] +16:31:29 [ 52] [ 16] [CC8D9F7A70EF263E] +16:31:29 ============================================================================ +16:31:29 + + +waiting on router queue for slot.... +16:31:29 Sending to : <4> +16:31:29 ============================================================================ +16:31:30 ============================================================================ +16:31:30 Slot Id : <45> +16:31:30 Transaction Type : RESPONSE +16:31:30 Received From : +16:31:30 ============================================================================ +16:31:30 FNo. Len. Field Value +16:31:30 ============================================================================ +16:31:30 [ 1] [ 4] [0210] +16:31:30 [ 2] [ 16] [6688990103282008] +16:31:30 [ 3] [ 6] [300000] +16:31:30 [ 4] [ 12] [000000000000] +16:31:30 [ 11] [ 6] [800256] +16:31:30 [ 12] [ 6] [163123] +16:31:30 [ 15] [ 4] [0320] +16:31:30 [ 18] [ 4] [6011] +16:31:30 [ 32] [ 6] [621354] +16:31:30 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:31:30 [ 37] [ 12] [507903499600] +16:31:30 [ 38] [ 6] [078730] +16:31:30 [ 39] [ 2] [00] +16:31:30 [ 41] [ 8] [06002200] +16:31:30 [ 49] [ 3] [418] +16:31:30 [ 54] [ 20] [0002418C000661079477] +16:31:30 ============================================================================ +16:31:30 Sending to : +16:31:30 ============================================================================ +16:31:30 + + +waiting on router queue for slot.... +16:31:31 ============================================================================ +16:31:31 Slot Id : <45> +16:31:31 Transaction Type : RESPONSE +16:31:31 Received From : +16:31:31 ============================================================================ +16:31:31 FNo. Len. Field Value +16:31:31 ============================================================================ +16:31:31 [ 1] [ 4] [0210] +16:31:31 [ 2] [ 16] [6688990103282008] +16:31:31 [ 3] [ 6] [300000] +16:31:31 [ 4] [ 12] [000000000000] +16:31:31 [ 11] [ 6] [800256] +16:31:31 [ 12] [ 6] [163123] +16:31:31 [ 15] [ 4] [0320] +16:31:31 [ 18] [ 4] [6011] +16:31:31 [ 32] [ 6] [621354] +16:31:31 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:31:31 [ 37] [ 12] [507903499600] +16:31:31 [ 38] [ 6] [078730] +16:31:31 [ 39] [ 2] [00] +16:31:31 [ 41] [ 8] [06002200] +16:31:31 [ 49] [ 3] [418] +16:31:31 [ 54] [ 20] [0002418C000661079477] +16:31:31 ============================================================================ +16:31:31 Calculate Source COMM Id = 0 +16:31:31 ============================================================================ +16:31:31 + + +waiting on router queue for slot.... +16:31:31 ============================================================================ +16:31:31 Slot Id : <36> +16:31:31 Transaction Type : RESPONSE +16:31:31 Received From : +16:31:31 ============================================================================ +16:31:31 FNo. Len. Field Value +16:31:31 ============================================================================ +16:31:31 [ 1] [ 4] [0210] +16:31:31 [ 2] [ 16] [1808931800005819] +16:31:31 [ 3] [ 6] [011000] +16:31:31 [ 4] [ 12] [000020000000] +16:31:31 [ 6] [ 12] [000020000000] +16:31:31 [ 7] [ 10] [0320163123] +16:31:31 [ 11] [ 6] [800253] +16:31:31 [ 12] [ 6] [163123] +16:31:31 [ 13] [ 4] [0320] +16:31:31 [ 18] [ 4] [6011] +16:31:31 [ 19] [ 3] [418] +16:31:31 [ 22] [ 3] [021] +16:31:31 [ 32] [ 6] [621354] +16:31:31 [ 35] [ 27] [1808931800005819=1803500314] +16:31:31 [ 37] [ 12] [507904635875] +16:31:31 [ 38] [ 6] [800253] +16:31:31 [ 39] [ 2] [00] +16:31:31 [ 41] [ 8] [17000800] +16:31:31 [ 49] [ 3] [418] +16:31:31 [ 52] [ 16] [98BE394402CFEE30] +16:31:31 [ 54] [ 20] [1001418C000021258900] +16:31:31 ============================================================================ +16:31:31 Sending to : +16:31:31 ============================================================================ +16:31:31 + + +waiting on router queue for slot.... +16:31:33 ============================================================================ +16:31:33 Slot Id : <36> +16:31:33 Transaction Type : RESPONSE +16:31:33 Received From : +16:31:33 ============================================================================ +16:31:33 FNo. Len. Field Value +16:31:33 ============================================================================ +16:31:33 [ 1] [ 4] [0210] +16:31:33 [ 2] [ 16] [1808931800005819] +16:31:33 [ 3] [ 6] [011000] +16:31:33 [ 4] [ 12] [000020000000] +16:31:33 [ 6] [ 12] [000020000000] +16:31:33 [ 7] [ 10] [0320163123] +16:31:33 [ 11] [ 6] [800253] +16:31:33 [ 12] [ 6] [163123] +16:31:33 [ 13] [ 4] [0320] +16:31:33 [ 18] [ 4] [6011] +16:31:33 [ 19] [ 3] [418] +16:31:33 [ 22] [ 3] [021] +16:31:33 [ 32] [ 6] [621354] +16:31:33 [ 35] [ 27] [1808931800005819=1803500314] +16:31:33 [ 37] [ 12] [507904635875] +16:31:33 [ 38] [ 6] [800253] +16:31:33 [ 39] [ 2] [00] +16:31:33 [ 41] [ 8] [17000800] +16:31:33 [ 49] [ 3] [418] +16:31:33 [ 52] [ 16] [98BE394402CFEE30] +16:31:33 [ 54] [ 20] [1001418C000021258900] +16:31:33 ============================================================================ +16:31:33 Calculate Source COMM Id = 0 +16:31:33 ============================================================================ +16:31:33 + + +waiting on router queue for slot.... +16:31:37 ============================================================================ +16:31:37 Slot Id : <18> +16:31:37 Transaction Type : REQUEST +16:31:37 Received From : +16:31:37 ============================================================================ +16:31:37 FNo. Len. Field Value +16:31:37 ============================================================================ +16:31:37 [ 1] [ 4] [0800] +16:31:37 [ 2] [ 5] [02531] +16:31:37 [ 3] [ 6] [579168] +16:31:37 [ 7] [ 10] [0320093137] +16:31:37 [ 11] [ 6] [807371] +16:31:37 [ 15] [ 10] [0320093137] +16:31:37 [ 37] [ 11] [57916807371] +16:31:37 [ 70] [ 3] [001] +16:31:37 ============================================================================ +16:31:37 + + +waiting on router queue for slot.... +16:31:37 ============================================================================ +16:31:37 Slot Id : <18> +16:31:37 Transaction Type : RESPONSE +16:31:37 Received From : +16:31:37 ============================================================================ +16:31:37 FNo. Len. Field Value +16:31:37 ============================================================================ +16:31:37 [ 1] [ 4] [0810] +16:31:37 [ 7] [ 10] [0320093137] +16:31:37 [ 11] [ 6] [807371] +16:31:37 [ 15] [ 4] [0320] +16:31:37 [ 37] [ 12] [57916807371] +16:31:37 [ 39] [ 2] [00] +16:31:37 [ 70] [ 3] [001] +16:31:37 ============================================================================ +16:31:37 Sending to : +16:31:37 ============================================================================ +16:31:37 + + +waiting on router queue for slot.... +16:31:39 ============================================================================ +16:31:39 Slot Id : <497> +16:31:39 Transaction Type : REQUEST +16:31:39 Received From : +16:31:39 ============================================================================ +16:31:39 FNo. Len. Field Value +16:31:39 ============================================================================ +16:31:39 [ 1] [ 4] [0800] +16:31:39 [ 7] [ 10] [0320093046] +16:31:39 [ 11] [ 6] [157251] +16:31:39 [ 70] [ 3] [301] +16:31:39 ============================================================================ +16:31:39 + + +waiting on router queue for slot.... +16:31:39 Sending to : +16:31:39 ============================================================================ +16:31:39 ============================================================================ +16:31:39 Slot Id : <497> +16:31:39 Transaction Type : RESPONSE +16:31:39 Received From : +16:31:39 ============================================================================ +16:31:39 FNo. Len. Field Value +16:31:39 ============================================================================ +16:31:39 [ 1] [ 4] [0810] +16:31:39 [ 7] [ 10] [0320093046] +16:31:39 [ 11] [ 6] [157251] +16:31:39 [ 39] [ 2] [00] +16:31:39 [ 70] [ 3] [301] +16:31:39 ============================================================================ +16:31:39 Calculate Source COMM Id = 2 +16:31:39 ============================================================================ +16:31:39 + + +waiting on router queue for slot.... +16:31:42 ============================================================================ +16:31:42 Slot Id : <40> +16:31:42 Transaction Type : REQUEST +16:31:42 Received From : +16:31:42 ============================================================================ +16:31:42 FNo. Len. Field Value +16:31:42 ============================================================================ +16:31:42 [ 1] [ 4] [0200] +16:31:42 [ 2] [ 16] [6213545001031917] +16:31:42 [ 3] [ 6] [011000] +16:31:42 [ 4] [ 12] [000015000000] +16:31:42 [ 7] [ 10] [0320093049] +16:31:42 [ 11] [ 6] [270477] +16:31:42 [ 12] [ 6] [163049] +16:31:42 [ 13] [ 4] [0320] +16:31:42 [ 14] [ 4] [4912] +16:31:42 [ 15] [ 4] [0320] +16:31:42 [ 18] [ 4] [6011] +16:31:42 [ 19] [ 3] [418] +16:31:42 [ 22] [ 3] [021] +16:31:42 [ 25] [ 2] [01] +16:31:42 [ 28] [ 9] [D00002000] +16:31:42 [ 32] [ 6] [180893] +16:31:42 [ 35] [ 32] [6213545001031917=491212013191506] +16:31:42 [ 37] [ 12] [507909270477] +16:31:42 [ 41] [ 8] [0243VTKS] +16:31:42 [ 42] [ 15] [999999 ] +16:31:42 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:31:42 [ 49] [ 3] [418] +16:31:42 [ 52] [ 16] [29802A44A9E56CFE] +16:31:42 ============================================================================ +16:31:42 + + +waiting on router queue for slot.... +16:31:42 Sending to : +16:31:42 ============================================================================ +16:31:42 Sending to : +16:31:42 ============================================================================ +16:31:43 ============================================================================ +16:31:43 Slot Id : <40> +16:31:43 Transaction Type : REQUEST +16:31:43 Received From : +16:31:43 ============================================================================ +16:31:43 FNo. Len. Field Value +16:31:43 ============================================================================ +16:31:43 [ 1] [ 4] [0200] +16:31:43 [ 2] [ 16] [6213545001031917] +16:31:43 [ 3] [ 6] [011000] +16:31:43 [ 4] [ 12] [000015000000] +16:31:43 [ 7] [ 10] [0320093049] +16:31:43 [ 11] [ 6] [270477] +16:31:43 [ 12] [ 6] [163049] +16:31:43 [ 13] [ 4] [0320] +16:31:43 [ 14] [ 4] [4912] +16:31:43 [ 15] [ 4] [0320] +16:31:43 [ 18] [ 4] [6011] +16:31:43 [ 19] [ 3] [418] +16:31:43 [ 22] [ 3] [021] +16:31:43 [ 25] [ 2] [01] +16:31:43 [ 28] [ 9] [D00002000] +16:31:43 [ 32] [ 6] [180893] +16:31:43 [ 35] [ 32] [6213545001031917=491212013191506] +16:31:43 [ 37] [ 12] [507909270477] +16:31:43 [ 41] [ 8] [0243VTKS] +16:31:43 [ 42] [ 15] [999999 ] +16:31:43 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:31:43 [ 49] [ 3] [418] +16:31:43 [ 52] [ 16] [29802A44A9E56CFE] +16:31:43 ============================================================================ +16:31:43 + + +waiting on router queue for slot.... +16:31:43 Sending to : +16:31:43 ============================================================================ +16:31:43 ============================================================================ +16:31:43 Slot Id : <40> +16:31:43 Transaction Type : REQUEST +16:31:43 Received From : +16:31:43 ============================================================================ +16:31:43 FNo. Len. Field Value +16:31:43 ============================================================================ +16:31:43 [ 1] [ 4] [0200] +16:31:43 [ 2] [ 16] [6213545001031917] +16:31:43 [ 3] [ 6] [011000] +16:31:43 [ 4] [ 12] [000015000000] +16:31:43 [ 7] [ 10] [0320093049] +16:31:43 [ 11] [ 6] [270477] +16:31:43 [ 12] [ 6] [163049] +16:31:43 [ 13] [ 4] [0320] +16:31:43 [ 14] [ 4] [4912] +16:31:43 [ 15] [ 4] [0320] +16:31:43 [ 18] [ 4] [6011] +16:31:43 [ 19] [ 3] [418] +16:31:43 [ 22] [ 3] [021] +16:31:43 [ 25] [ 2] [01] +16:31:43 [ 28] [ 9] [D00002000] +16:31:43 [ 32] [ 6] [180893] +16:31:43 [ 35] [ 32] [6213545001031917=491212013191506] +16:31:43 [ 37] [ 12] [507909270477] +16:31:43 [ 41] [ 8] [0243VTKS] +16:31:43 [ 42] [ 15] [999999 ] +16:31:43 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +16:31:43 [ 49] [ 3] [418] +16:31:43 [ 52] [ 16] [7F0BECB2F6531714] +16:31:43 ============================================================================ +16:31:43 + + +waiting on router queue for slot.... +16:31:43 Sending to : <0> +16:31:43 ============================================================================ +16:31:44 ============================================================================ +16:31:44 Slot Id : <40> +16:31:44 Transaction Type : RESPONSE +16:31:44 Received From : +16:31:44 ============================================================================ +16:31:44 FNo. Len. Field Value +16:31:44 ============================================================================ +16:31:44 [ 1] [ 4] [0210] +16:31:44 [ 2] [ 16] [6213545001031917] +16:31:44 [ 3] [ 6] [011000] +16:31:44 [ 4] [ 12] [000015000000] +16:31:44 [ 7] [ 10] [0320093049] +16:31:44 [ 11] [ 6] [270477] +16:31:44 [ 12] [ 6] [163049] +16:31:44 [ 13] [ 4] [0320] +16:31:44 [ 15] [ 4] [0320] +16:31:44 [ 18] [ 4] [6011] +16:31:44 [ 19] [ 3] [418] +16:31:44 [ 32] [ 6] [180893] +16:31:44 [ 35] [ 32] [6213545001031917=491212013191506] +16:31:44 [ 37] [ 12] [507909270477] +16:31:44 [ 38] [ 6] [441979] +16:31:44 [ 39] [ 2] [00] +16:31:44 [ 41] [ 8] [0243VTKS] +16:31:44 [ 49] [ 3] [418] +16:31:44 [ 54] [ 40] [1001418C0001194516451002418C000119451645] +16:31:44 ============================================================================ +16:31:44 Sending to : +16:31:44 ============================================================================ +16:31:44 + + +waiting on router queue for slot.... +16:31:45 ============================================================================ +16:31:45 Slot Id : <40> +16:31:45 Transaction Type : RESPONSE +16:31:45 Received From : +16:31:45 ============================================================================ +16:31:45 FNo. Len. Field Value +16:31:45 ============================================================================ +16:31:45 [ 1] [ 4] [0210] +16:31:45 [ 2] [ 16] [6213545001031917] +16:31:45 [ 3] [ 6] [011000] +16:31:45 [ 4] [ 12] [000015000000] +16:31:45 [ 7] [ 10] [0320093049] +16:31:45 [ 11] [ 6] [270477] +16:31:45 [ 12] [ 6] [163049] +16:31:45 [ 13] [ 4] [0320] +16:31:45 [ 15] [ 4] [0320] +16:31:45 [ 18] [ 4] [6011] +16:31:45 [ 19] [ 3] [418] +16:31:45 [ 32] [ 6] [180893] +16:31:45 [ 35] [ 32] [6213545001031917=491212013191506] +16:31:45 [ 37] [ 12] [507909270477] +16:31:45 [ 38] [ 6] [441979] +16:31:45 [ 39] [ 2] [00] +16:31:45 [ 41] [ 8] [0243VTKS] +16:31:45 [ 49] [ 3] [418] +16:31:45 [ 54] [ 40] [1001418C0001194516451002418C000119451645] +16:31:45 ============================================================================ +16:31:45 Calculate Source COMM Id = 2 +16:31:45 ============================================================================ +16:31:45 + + +waiting on router queue for slot.... +16:32:01 ============================================================================ +16:32:01 Slot Id : <8> +16:32:01 Transaction Type : REQUEST +16:32:01 Received From : +16:32:01 ============================================================================ +16:32:01 FNo. Len. Field Value +16:32:01 ============================================================================ +16:32:01 [ 1] [ 4] [0800] +16:32:01 [ 7] [ 10] [0320093108] +16:32:01 [ 11] [ 6] [157252] +16:32:01 [ 70] [ 3] [301] +16:32:01 ============================================================================ +16:32:01 + + +waiting on router queue for slot.... +16:32:01 Sending to : +16:32:01 ============================================================================ +16:32:01 ============================================================================ +16:32:01 Slot Id : <8> +16:32:01 Transaction Type : RESPONSE +16:32:01 Received From : +16:32:01 ============================================================================ +16:32:01 FNo. Len. Field Value +16:32:01 ============================================================================ +16:32:01 [ 1] [ 4] [0810] +16:32:01 [ 7] [ 10] [0320093108] +16:32:01 [ 11] [ 6] [157252] +16:32:01 [ 39] [ 2] [00] +16:32:01 [ 70] [ 3] [301] +16:32:01 ============================================================================ +16:32:01 Calculate Source COMM Id = 2 +16:32:01 ============================================================================ +16:32:01 + + +waiting on router queue for slot.... +16:32:04 ============================================================================ +16:32:04 Slot Id : <28> +16:32:04 Transaction Type : REQUEST +16:32:04 Received From : +16:32:04 ============================================================================ +16:32:04 FNo. Len. Field Value +16:32:04 ============================================================================ +16:32:04 [ 1] [ 4] [0200] +16:32:04 [ 2] [ 16] [6688990102217500] +16:32:04 [ 3] [ 6] [010000] +16:32:04 [ 4] [ 12] [000050000000] +16:32:04 [ 7] [ 10] [0320093109] +16:32:04 [ 11] [ 6] [270483] +16:32:04 [ 12] [ 6] [163109] +16:32:04 [ 13] [ 4] [0320] +16:32:04 [ 14] [ 4] [4207] +16:32:04 [ 15] [ 4] [0320] +16:32:04 [ 18] [ 4] [6011] +16:32:04 [ 19] [ 3] [418] +16:32:04 [ 22] [ 3] [021] +16:32:04 [ 25] [ 2] [01] +16:32:04 [ 28] [ 9] [D00002000] +16:32:04 [ 32] [ 6] [180893] +16:32:04 [ 35] [ 37] [6688990102217500=42071231750087200000] +16:32:04 [ 37] [ 12] [507909270483] +16:32:04 [ 41] [ 8] [0261PSL1] +16:32:04 [ 42] [ 15] [999999 ] +16:32:04 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:32:04 [ 49] [ 3] [418] +16:32:04 [ 52] [ 16] [5CB87FF1A4DA5235] +16:32:04 ============================================================================ +16:32:04 + + +waiting on router queue for slot.... +16:32:04 Sending to : +16:32:04 ============================================================================ +16:32:04 Sending to : +16:32:04 ============================================================================ +16:32:05 ============================================================================ +16:32:05 Slot Id : <28> +16:32:05 Transaction Type : REQUEST +16:32:05 Received From : +16:32:05 ============================================================================ +16:32:05 FNo. Len. Field Value +16:32:05 ============================================================================ +16:32:05 [ 1] [ 4] [0200] +16:32:05 [ 2] [ 16] [6688990102217500] +16:32:05 [ 3] [ 6] [010000] +16:32:05 [ 4] [ 12] [000050000000] +16:32:05 [ 7] [ 10] [0320093109] +16:32:05 [ 11] [ 6] [270483] +16:32:05 [ 12] [ 6] [163109] +16:32:05 [ 13] [ 4] [0320] +16:32:05 [ 14] [ 4] [4207] +16:32:05 [ 15] [ 4] [0320] +16:32:05 [ 18] [ 4] [6011] +16:32:05 [ 19] [ 3] [418] +16:32:05 [ 22] [ 3] [021] +16:32:05 [ 25] [ 2] [01] +16:32:05 [ 28] [ 9] [D00002000] +16:32:05 [ 32] [ 6] [180893] +16:32:05 [ 35] [ 37] [6688990102217500=42071231750087200000] +16:32:05 [ 37] [ 12] [507909270483] +16:32:05 [ 41] [ 8] [0261PSL1] +16:32:05 [ 42] [ 15] [999999 ] +16:32:05 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:32:05 [ 49] [ 3] [418] +16:32:05 [ 52] [ 16] [5CB87FF1A4DA5235] +16:32:05 ============================================================================ +16:32:05 + + +waiting on router queue for slot.... +16:32:05 Sending to : +16:32:05 ============================================================================ +16:32:05 ============================================================================ +16:32:05 Slot Id : <28> +16:32:05 Transaction Type : REQUEST +16:32:05 Received From : +16:32:05 ============================================================================ +16:32:05 FNo. Len. Field Value +16:32:05 ============================================================================ +16:32:05 [ 1] [ 4] [0200] +16:32:05 [ 2] [ 16] [6688990102217500] +16:32:05 [ 3] [ 6] [010000] +16:32:05 [ 4] [ 12] [000050000000] +16:32:05 [ 7] [ 10] [0320093109] +16:32:05 [ 11] [ 6] [270483] +16:32:05 [ 12] [ 6] [163109] +16:32:05 [ 13] [ 4] [0320] +16:32:05 [ 14] [ 4] [4207] +16:32:05 [ 15] [ 4] [0320] +16:32:05 [ 18] [ 4] [6011] +16:32:05 [ 19] [ 3] [418] +16:32:05 [ 22] [ 3] [021] +16:32:05 [ 25] [ 2] [01] +16:32:05 [ 28] [ 9] [D00002000] +16:32:05 [ 32] [ 6] [180893] +16:32:05 [ 35] [ 37] [6688990102217500=42071231750087200000] +16:32:05 [ 37] [ 12] [507909270483] +16:32:05 [ 41] [ 8] [0261PSL1] +16:32:05 [ 42] [ 15] [999999 ] +16:32:05 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:32:05 [ 49] [ 3] [418] +16:32:05 [ 52] [ 16] [B34C1B4BDB1B6081] +16:32:05 ============================================================================ +16:32:05 + + +waiting on router queue for slot.... +16:32:05 Sending to : <0> +16:32:05 ============================================================================ +16:32:05 ============================================================================ +16:32:05 Slot Id : <28> +16:32:05 Transaction Type : RESPONSE +16:32:05 Received From : +16:32:05 ============================================================================ +16:32:05 FNo. Len. Field Value +16:32:05 ============================================================================ +16:32:05 [ 1] [ 4] [0210] +16:32:05 [ 2] [ 16] [6688990102217500] +16:32:05 [ 3] [ 6] [010000] +16:32:05 [ 4] [ 12] [000050000000] +16:32:05 [ 7] [ 10] [0320093109] +16:32:05 [ 11] [ 6] [270483] +16:32:05 [ 12] [ 6] [163109] +16:32:05 [ 13] [ 4] [0320] +16:32:05 [ 15] [ 4] [0320] +16:32:05 [ 18] [ 4] [6011] +16:32:05 [ 19] [ 3] [418] +16:32:05 [ 22] [ 3] [021] +16:32:05 [ 32] [ 6] [180893] +16:32:05 [ 35] [ 37] [6688990102217500=42071231750087200000] +16:32:05 [ 37] [ 12] [507909270483] +16:32:05 [ 39] [ 2] [14] +16:32:05 [ 41] [ 8] [0261PSL1] +16:32:05 [ 49] [ 3] [418] +16:32:05 ============================================================================ +16:32:05 Sending to : +16:32:05 ============================================================================ +16:32:05 + + +waiting on router queue for slot.... +16:32:06 ============================================================================ +16:32:06 Slot Id : <28> +16:32:06 Transaction Type : RESPONSE +16:32:06 Received From : +16:32:06 ============================================================================ +16:32:06 FNo. Len. Field Value +16:32:06 ============================================================================ +16:32:06 [ 1] [ 4] [0210] +16:32:06 [ 2] [ 16] [6688990102217500] +16:32:06 [ 3] [ 6] [010000] +16:32:06 [ 4] [ 12] [000050000000] +16:32:06 [ 7] [ 10] [0320093109] +16:32:06 [ 11] [ 6] [270483] +16:32:06 [ 12] [ 6] [163109] +16:32:06 [ 13] [ 4] [0320] +16:32:06 [ 15] [ 4] [0320] +16:32:06 [ 18] [ 4] [6011] +16:32:06 [ 19] [ 3] [418] +16:32:06 [ 22] [ 3] [021] +16:32:06 [ 32] [ 6] [180893] +16:32:06 [ 35] [ 37] [6688990102217500=42071231750087200000] +16:32:06 [ 37] [ 12] [507909270483] +16:32:06 [ 39] [ 2] [14] +16:32:06 [ 41] [ 8] [0261PSL1] +16:32:06 [ 49] [ 3] [418] +16:32:06 ============================================================================ +16:32:06 Calculate Source COMM Id = 2 +16:32:06 ============================================================================ +16:32:06 + + +waiting on router queue for slot.... +16:32:11 ============================================================================ +16:32:11 Slot Id : <467> +16:32:11 Transaction Type : REQUEST +16:32:11 Received From : +16:32:11 ============================================================================ +16:32:11 FNo. Len. Field Value +16:32:11 ============================================================================ +16:32:11 [ 1] [ 4] [0200] +16:32:11 [ 2] [ 16] [6213544001572319] +16:32:11 [ 3] [ 6] [011000] +16:32:11 [ 4] [ 12] [000005000000] +16:32:11 [ 7] [ 10] [0320163232] +16:32:11 [ 11] [ 6] [208753] +16:32:11 [ 12] [ 6] [162738] +16:32:11 [ 13] [ 4] [0320] +16:32:11 [ 14] [ 4] [4912] +16:32:11 [ 15] [ 4] [0320] +16:32:11 [ 18] [ 4] [6011] +16:32:11 [ 19] [ 3] [418] +16:32:11 [ 22] [ 3] [021] +16:32:11 [ 25] [ 2] [01] +16:32:11 [ 28] [ 9] [D00002000] +16:32:11 [ 32] [ 6] [198901] +16:32:11 [ 35] [ 32] [6213544001572319=491212017231291] +16:32:11 [ 37] [ 12] [507916208753] +16:32:11 [ 41] [ 8] [19529001] +16:32:11 [ 42] [ 15] [000000041952901] +16:32:11 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:32:11 [ 49] [ 3] [418] +16:32:11 [ 52] [ 16] [1AF516DE9ACCB101] +16:32:11 ============================================================================ +16:32:11 + + +waiting on router queue for slot.... +16:32:11 Sending to : +16:32:11 ============================================================================ +16:32:11 Sending to : +16:32:11 ============================================================================ +16:32:12 ============================================================================ +16:32:12 Slot Id : <467> +16:32:12 Transaction Type : REQUEST +16:32:12 Received From : +16:32:12 ============================================================================ +16:32:12 FNo. Len. Field Value +16:32:12 ============================================================================ +16:32:12 [ 1] [ 4] [0200] +16:32:12 [ 2] [ 16] [6213544001572319] +16:32:12 [ 3] [ 6] [011000] +16:32:12 [ 4] [ 12] [000005000000] +16:32:12 [ 7] [ 10] [0320163232] +16:32:12 [ 11] [ 6] [208753] +16:32:12 [ 12] [ 6] [162738] +16:32:12 [ 13] [ 4] [0320] +16:32:12 [ 14] [ 4] [4912] +16:32:12 [ 15] [ 4] [0320] +16:32:12 [ 18] [ 4] [6011] +16:32:12 [ 19] [ 3] [418] +16:32:12 [ 22] [ 3] [021] +16:32:12 [ 25] [ 2] [01] +16:32:12 [ 28] [ 9] [D00002000] +16:32:12 [ 32] [ 6] [198901] +16:32:12 [ 35] [ 32] [6213544001572319=491212017231291] +16:32:12 [ 37] [ 12] [507916208753] +16:32:12 [ 41] [ 8] [19529001] +16:32:12 [ 42] [ 15] [000000041952901] +16:32:12 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:32:12 [ 49] [ 3] [418] +16:32:12 [ 52] [ 16] [1AF516DE9ACCB101] +16:32:12 ============================================================================ +16:32:12 + + +waiting on router queue for slot.... +16:32:12 Sending to : +16:32:12 ============================================================================ +16:32:12 ============================================================================ +16:32:12 Slot Id : <467> +16:32:12 Transaction Type : REQUEST +16:32:12 Received From : +16:32:12 ============================================================================ +16:32:12 FNo. Len. Field Value +16:32:12 ============================================================================ +16:32:12 [ 1] [ 4] [0200] +16:32:12 [ 2] [ 16] [6213544001572319] +16:32:12 [ 3] [ 6] [011000] +16:32:12 [ 4] [ 12] [000005000000] +16:32:12 [ 7] [ 10] [0320163232] +16:32:12 [ 11] [ 6] [208753] +16:32:12 [ 12] [ 6] [162738] +16:32:12 [ 13] [ 4] [0320] +16:32:12 [ 14] [ 4] [4912] +16:32:12 [ 15] [ 4] [0320] +16:32:12 [ 18] [ 4] [6011] +16:32:12 [ 19] [ 3] [418] +16:32:12 [ 22] [ 3] [021] +16:32:12 [ 25] [ 2] [01] +16:32:12 [ 28] [ 9] [D00002000] +16:32:12 [ 32] [ 6] [198901] +16:32:12 [ 35] [ 32] [6213544001572319=491212017231291] +16:32:12 [ 37] [ 12] [507916208753] +16:32:12 [ 41] [ 8] [19529001] +16:32:12 [ 42] [ 15] [000000041952901] +16:32:12 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:32:12 [ 49] [ 3] [418] +16:32:12 [ 52] [ 16] [DCDDC14D96C37ABC] +16:32:12 ============================================================================ +16:32:12 + + +waiting on router queue for slot.... +16:32:12 Sending to : <0> +16:32:12 ============================================================================ +16:32:12 ============================================================================ +16:32:12 Slot Id : <467> +16:32:12 Transaction Type : RESPONSE +16:32:12 Received From : +16:32:12 ============================================================================ +16:32:12 FNo. Len. Field Value +16:32:12 ============================================================================ +16:32:12 [ 1] [ 4] [0210] +16:32:12 [ 2] [ 16] [6213544001572319] +16:32:12 [ 3] [ 6] [011000] +16:32:12 [ 4] [ 12] [000005000000] +16:32:12 [ 7] [ 10] [0320163232] +16:32:12 [ 11] [ 6] [208753] +16:32:12 [ 12] [ 6] [162738] +16:32:12 [ 13] [ 4] [0320] +16:32:12 [ 15] [ 4] [0320] +16:32:12 [ 18] [ 4] [6011] +16:32:12 [ 19] [ 3] [418] +16:32:12 [ 32] [ 6] [198901] +16:32:12 [ 35] [ 32] [6213544001572319=491212017231291] +16:32:12 [ 37] [ 12] [507916208753] +16:32:12 [ 38] [ 6] [208753] +16:32:12 [ 39] [ 2] [51] +16:32:12 [ 41] [ 8] [19529001] +16:32:12 [ 49] [ 3] [418] +16:32:12 [ 54] [ 40] [1001418C0000094902441002418C000009490244] +16:32:12 ============================================================================ +16:32:12 Sending to : +16:32:12 ============================================================================ +16:32:12 + + +waiting on router queue for slot.... +16:32:13 ============================================================================ +16:32:13 Slot Id : <467> +16:32:13 Transaction Type : RESPONSE +16:32:13 Received From : +16:32:13 ============================================================================ +16:32:13 FNo. Len. Field Value +16:32:13 ============================================================================ +16:32:13 [ 1] [ 4] [0210] +16:32:13 [ 2] [ 16] [6213544001572319] +16:32:13 [ 3] [ 6] [011000] +16:32:13 [ 4] [ 12] [000005000000] +16:32:13 [ 7] [ 10] [0320163232] +16:32:13 [ 11] [ 6] [208753] +16:32:13 [ 12] [ 6] [162738] +16:32:13 [ 13] [ 4] [0320] +16:32:13 [ 15] [ 4] [0320] +16:32:13 [ 18] [ 4] [6011] +16:32:13 [ 19] [ 3] [418] +16:32:13 [ 32] [ 6] [198901] +16:32:13 [ 35] [ 32] [6213544001572319=491212017231291] +16:32:13 [ 37] [ 12] [507916208753] +16:32:13 [ 38] [ 6] [208753] +16:32:13 [ 39] [ 2] [51] +16:32:13 [ 41] [ 8] [19529001] +16:32:13 [ 49] [ 3] [418] +16:32:13 [ 54] [ 40] [1001418C0000094902441002418C000009490244] +16:32:13 ============================================================================ +16:32:13 Calculate Source COMM Id = 5 +16:32:13 ============================================================================ +16:32:13 + + +waiting on router queue for slot.... +16:32:15 ============================================================================ +16:32:15 Slot Id : <43> +16:32:15 Transaction Type : REQUEST +16:32:15 Received From : +16:32:15 ============================================================================ +16:32:15 FNo. Len. Field Value +16:32:15 ============================================================================ +16:32:15 [ 1] [ 4] [0800] +16:32:15 [ 7] [ 10] [0320234402] +16:32:15 [ 11] [ 6] [164402] +16:32:15 [ 37] [ 12] [57916164402] +16:32:15 [ 70] [ 3] [301] +16:32:15 ============================================================================ +16:32:15 + + +waiting on router queue for slot.... +16:32:15 Sending to : +16:32:15 ============================================================================ +16:32:15 ============================================================================ +16:32:15 Slot Id : <43> +16:32:15 Transaction Type : RESPONSE +16:32:15 Received From : +16:32:15 ============================================================================ +16:32:15 FNo. Len. Field Value +16:32:15 ============================================================================ +16:32:15 [ 1] [ 4] [0810] +16:32:15 [ 7] [ 10] [0320234402] +16:32:15 [ 11] [ 6] [164402] +16:32:15 [ 37] [ 12] [579161644020] +16:32:15 [ 39] [ 2] [00] +16:32:15 [ 70] [ 3] [810] +16:32:15 ============================================================================ +16:32:15 Calculate Source COMM Id = 6 +16:32:15 ============================================================================ +16:32:15 + + +waiting on router queue for slot.... +16:32:16 ============================================================================ +16:32:16 Slot Id : <7> +16:32:16 Transaction Type : REQUEST +16:32:16 Received From : +16:32:16 ============================================================================ +16:32:16 FNo. Len. Field Value +16:32:16 ============================================================================ +16:32:16 [ 1] [ 4] [0200] +16:32:16 [ 2] [ 16] [6688990103282008] +16:32:16 [ 3] [ 6] [010000] +16:32:16 [ 4] [ 12] [000100000000] +16:32:16 [ 7] [ 10] [0320163211] +16:32:16 [ 11] [ 6] [800477] +16:32:16 [ 12] [ 6] [163211] +16:32:16 [ 13] [ 4] [0320] +16:32:16 [ 15] [ 4] [0320] +16:32:16 [ 18] [ 4] [6011] +16:32:16 [ 22] [ 3] [900] +16:32:16 [ 25] [ 2] [02] +16:32:16 [ 28] [ 9] [D00002000] +16:32:16 [ 32] [ 6] [621354] +16:32:16 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:32:16 [ 37] [ 12] [507903499602] +16:32:16 [ 41] [ 8] [06002200] +16:32:16 [ 42] [ 15] [NATIVE ] +16:32:16 [ 43] [ 40] [Beng Market Beng LAO] +16:32:16 [ 49] [ 3] [418] +16:32:16 [ 52] [ 16] [D0FEEEB40B192FF5] +16:32:16 ============================================================================ +16:32:16 + + +waiting on router queue for slot.... +16:32:16 Sending to : +16:32:16 ============================================================================ +16:32:16 Sending to : +16:32:16 ============================================================================ +16:32:17 ============================================================================ +16:32:17 Slot Id : <7> +16:32:17 Transaction Type : REQUEST +16:32:17 Received From : +16:32:17 ============================================================================ +16:32:17 FNo. Len. Field Value +16:32:17 ============================================================================ +16:32:17 [ 1] [ 4] [0200] +16:32:17 [ 2] [ 16] [6688990103282008] +16:32:17 [ 3] [ 6] [010000] +16:32:17 [ 4] [ 12] [000100000000] +16:32:17 [ 7] [ 10] [0320163211] +16:32:17 [ 11] [ 6] [800477] +16:32:17 [ 12] [ 6] [163211] +16:32:17 [ 13] [ 4] [0320] +16:32:17 [ 15] [ 4] [0320] +16:32:17 [ 18] [ 4] [6011] +16:32:17 [ 22] [ 3] [900] +16:32:17 [ 25] [ 2] [02] +16:32:17 [ 28] [ 9] [D00002000] +16:32:17 [ 32] [ 6] [621354] +16:32:17 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:32:17 [ 37] [ 12] [507903499602] +16:32:17 [ 41] [ 8] [06002200] +16:32:17 [ 42] [ 15] [NATIVE ] +16:32:17 [ 43] [ 40] [Beng Market Beng LAO] +16:32:17 [ 49] [ 3] [418] +16:32:17 [ 52] [ 16] [D0FEEEB40B192FF5] +16:32:17 ============================================================================ +16:32:17 + + +waiting on router queue for slot.... +16:32:17 Sending to : +16:32:17 ============================================================================ +16:32:17 ============================================================================ +16:32:17 Slot Id : <7> +16:32:17 Transaction Type : REQUEST +16:32:17 Received From : +16:32:17 ============================================================================ +16:32:17 FNo. Len. Field Value +16:32:17 ============================================================================ +16:32:17 [ 1] [ 4] [0200] +16:32:17 [ 2] [ 16] [6688990103282008] +16:32:17 [ 3] [ 6] [010000] +16:32:17 [ 4] [ 12] [000100000000] +16:32:17 [ 7] [ 10] [0320163211] +16:32:17 [ 11] [ 6] [800477] +16:32:17 [ 12] [ 6] [163211] +16:32:17 [ 13] [ 4] [0320] +16:32:17 [ 15] [ 4] [0320] +16:32:17 [ 18] [ 4] [6011] +16:32:17 [ 22] [ 3] [900] +16:32:17 [ 25] [ 2] [02] +16:32:17 [ 28] [ 9] [D00002000] +16:32:17 [ 32] [ 6] [621354] +16:32:17 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:32:17 [ 37] [ 12] [507903499602] +16:32:17 [ 41] [ 8] [06002200] +16:32:17 [ 42] [ 15] [NATIVE ] +16:32:17 [ 43] [ 40] [Beng Market Beng LAO] +16:32:17 [ 49] [ 3] [418] +16:32:17 [ 52] [ 16] [CC8D9F7A70EF263E] +16:32:17 ============================================================================ +16:32:17 + + +waiting on router queue for slot.... +16:32:17 Sending to : <4> +16:32:17 ============================================================================ +16:32:18 ============================================================================ +16:32:18 Slot Id : <7> +16:32:18 Transaction Type : RESPONSE +16:32:18 Received From : +16:32:18 ============================================================================ +16:32:18 FNo. Len. Field Value +16:32:18 ============================================================================ +16:32:18 [ 1] [ 4] [0210] +16:32:18 [ 2] [ 16] [6688990103282008] +16:32:18 [ 3] [ 6] [010000] +16:32:18 [ 4] [ 12] [000100000000] +16:32:18 [ 11] [ 6] [800477] +16:32:18 [ 12] [ 6] [163211] +16:32:18 [ 15] [ 4] [0320] +16:32:18 [ 18] [ 4] [6011] +16:32:18 [ 32] [ 6] [621354] +16:32:18 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:32:18 [ 37] [ 12] [507903499602] +16:32:18 [ 38] [ 6] [946264] +16:32:18 [ 39] [ 2] [00] +16:32:18 [ 41] [ 8] [06002200] +16:32:18 [ 49] [ 3] [418] +16:32:18 [ 54] [ 20] [0002418C000560879477] +16:32:18 ============================================================================ +16:32:18 Sending to : +16:32:18 ============================================================================ +16:32:18 + + +waiting on router queue for slot.... +16:32:19 ============================================================================ +16:32:19 Slot Id : <52> +16:32:19 Transaction Type : REQUEST +16:32:19 Received From : +16:32:19 ============================================================================ +16:32:19 FNo. Len. Field Value +16:32:19 ============================================================================ +16:32:19 [ 1] [ 4] [0800] +16:32:19 [ 7] [ 10] [0320093126] +16:32:19 [ 11] [ 6] [157253] +16:32:19 [ 70] [ 3] [301] +16:32:19 ============================================================================ +16:32:19 + + +waiting on router queue for slot.... +16:32:19 Sending to : +16:32:19 ============================================================================ +16:32:19 ============================================================================ +16:32:19 Slot Id : <52> +16:32:19 Transaction Type : RESPONSE +16:32:19 Received From : +16:32:19 ============================================================================ +16:32:19 FNo. Len. Field Value +16:32:19 ============================================================================ +16:32:19 [ 1] [ 4] [0810] +16:32:19 [ 7] [ 10] [0320093126] +16:32:19 [ 11] [ 6] [157253] +16:32:19 [ 39] [ 2] [00] +16:32:19 [ 70] [ 3] [301] +16:32:19 ============================================================================ +16:32:19 Calculate Source COMM Id = 2 +16:32:19 ============================================================================ +16:32:19 + + +waiting on router queue for slot.... +16:32:19 ============================================================================ +16:32:19 Slot Id : <7> +16:32:19 Transaction Type : RESPONSE +16:32:19 Received From : +16:32:19 ============================================================================ +16:32:19 FNo. Len. Field Value +16:32:19 ============================================================================ +16:32:19 [ 1] [ 4] [0210] +16:32:19 [ 2] [ 16] [6688990103282008] +16:32:19 [ 3] [ 6] [010000] +16:32:19 [ 4] [ 12] [000100000000] +16:32:19 [ 11] [ 6] [800477] +16:32:19 [ 12] [ 6] [163211] +16:32:19 [ 15] [ 4] [0320] +16:32:19 [ 18] [ 4] [6011] +16:32:19 [ 32] [ 6] [621354] +16:32:19 [ 35] [ 37] [6688990103282008=42121231200855000000] +16:32:19 [ 37] [ 12] [507903499602] +16:32:19 [ 38] [ 6] [946264] +16:32:19 [ 39] [ 2] [00] +16:32:19 [ 41] [ 8] [06002200] +16:32:19 [ 49] [ 3] [418] +16:32:19 [ 54] [ 20] [0002418C000560879477] +16:32:19 ============================================================================ +16:32:19 Calculate Source COMM Id = 0 +16:32:19 ============================================================================ +16:32:19 + + +waiting on router queue for slot.... +16:32:28 ============================================================================ +16:32:28 Slot Id : <25> +16:32:28 Transaction Type : REQUEST +16:32:28 Received From : +16:32:28 ============================================================================ +16:32:28 FNo. Len. Field Value +16:32:28 ============================================================================ +16:32:28 [ 1] [ 4] [0200] +16:32:28 [ 2] [ 16] [6688990103084008] +16:32:28 [ 3] [ 6] [011000] +16:32:28 [ 4] [ 12] [000100000000] +16:32:28 [ 7] [ 10] [0320163223] +16:32:28 [ 11] [ 6] [800524] +16:32:28 [ 12] [ 6] [163223] +16:32:28 [ 13] [ 4] [0320] +16:32:28 [ 15] [ 4] [0320] +16:32:28 [ 18] [ 4] [6011] +16:32:28 [ 22] [ 3] [900] +16:32:28 [ 25] [ 2] [02] +16:32:28 [ 28] [ 9] [D00002000] +16:32:28 [ 32] [ 6] [621354] +16:32:28 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:32:28 [ 37] [ 12] [507904719792] +16:32:28 [ 41] [ 8] [18001000] +16:32:28 [ 42] [ 15] [NATIVE ] +16:32:28 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:32:28 [ 49] [ 3] [418] +16:32:28 [ 52] [ 16] [855D858B5CAE4147] +16:32:28 ============================================================================ +16:32:28 + + +waiting on router queue for slot.... +16:32:28 Sending to : +16:32:28 ============================================================================ +16:32:28 Sending to : +16:32:28 ============================================================================ +16:32:29 ============================================================================ +16:32:29 Slot Id : <25> +16:32:29 Transaction Type : REQUEST +16:32:29 Received From : +16:32:29 ============================================================================ +16:32:29 FNo. Len. Field Value +16:32:29 ============================================================================ +16:32:29 [ 1] [ 4] [0200] +16:32:29 [ 2] [ 16] [6688990103084008] +16:32:29 [ 3] [ 6] [011000] +16:32:29 [ 4] [ 12] [000100000000] +16:32:29 [ 7] [ 10] [0320163223] +16:32:29 [ 11] [ 6] [800524] +16:32:29 [ 12] [ 6] [163223] +16:32:29 [ 13] [ 4] [0320] +16:32:29 [ 15] [ 4] [0320] +16:32:29 [ 18] [ 4] [6011] +16:32:29 [ 22] [ 3] [900] +16:32:29 [ 25] [ 2] [02] +16:32:29 [ 28] [ 9] [D00002000] +16:32:29 [ 32] [ 6] [621354] +16:32:29 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:32:29 [ 37] [ 12] [507904719792] +16:32:29 [ 41] [ 8] [18001000] +16:32:29 [ 42] [ 15] [NATIVE ] +16:32:29 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:32:29 [ 49] [ 3] [418] +16:32:29 [ 52] [ 16] [855D858B5CAE4147] +16:32:29 ============================================================================ +16:32:29 + + +waiting on router queue for slot.... +16:32:29 Sending to : +16:32:29 ============================================================================ +16:32:29 ============================================================================ +16:32:29 Slot Id : <25> +16:32:29 Transaction Type : REQUEST +16:32:29 Received From : +16:32:29 ============================================================================ +16:32:29 FNo. Len. Field Value +16:32:29 ============================================================================ +16:32:29 [ 1] [ 4] [0200] +16:32:29 [ 2] [ 16] [6688990103084008] +16:32:29 [ 3] [ 6] [011000] +16:32:29 [ 4] [ 12] [000100000000] +16:32:29 [ 7] [ 10] [0320163223] +16:32:29 [ 11] [ 6] [800524] +16:32:29 [ 12] [ 6] [163223] +16:32:29 [ 13] [ 4] [0320] +16:32:29 [ 15] [ 4] [0320] +16:32:29 [ 18] [ 4] [6011] +16:32:29 [ 22] [ 3] [900] +16:32:29 [ 25] [ 2] [02] +16:32:29 [ 28] [ 9] [D00002000] +16:32:29 [ 32] [ 6] [621354] +16:32:29 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:32:29 [ 37] [ 12] [507904719792] +16:32:29 [ 41] [ 8] [18001000] +16:32:29 [ 42] [ 15] [NATIVE ] +16:32:29 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:32:29 [ 49] [ 3] [418] +16:32:29 [ 52] [ 16] [BCCE8F7AD8113D4A] +16:32:29 ============================================================================ +16:32:29 + + +waiting on router queue for slot.... +16:32:29 Sending to : <4> +16:32:29 ============================================================================ +16:32:29 ============================================================================ +16:32:29 Slot Id : <55> +16:32:29 Transaction Type : REQUEST +16:32:29 Received From : +16:32:29 ============================================================================ +16:32:29 FNo. Len. Field Value +16:32:29 ============================================================================ +16:32:29 [ 1] [ 4] [0800] +16:32:29 [ 7] [ 10] [0320093136] +16:32:29 [ 11] [ 6] [157254] +16:32:29 [ 70] [ 3] [301] +16:32:29 ============================================================================ +16:32:29 + + +waiting on router queue for slot.... +16:32:29 Sending to : +16:32:29 ============================================================================ +16:32:29 ============================================================================ +16:32:29 Slot Id : <55> +16:32:29 Transaction Type : RESPONSE +16:32:29 Received From : +16:32:29 ============================================================================ +16:32:29 FNo. Len. Field Value +16:32:29 ============================================================================ +16:32:29 [ 1] [ 4] [0810] +16:32:29 [ 7] [ 10] [0320093136] +16:32:29 [ 11] [ 6] [157254] +16:32:29 [ 39] [ 2] [00] +16:32:29 [ 70] [ 3] [301] +16:32:29 ============================================================================ +16:32:29 Calculate Source COMM Id = 2 +16:32:29 ============================================================================ +16:32:29 + + +waiting on router queue for slot.... +16:32:30 ============================================================================ +16:32:30 Slot Id : <25> +16:32:30 Transaction Type : RESPONSE +16:32:30 Received From : +16:32:30 ============================================================================ +16:32:30 FNo. Len. Field Value +16:32:30 ============================================================================ +16:32:30 [ 1] [ 4] [0210] +16:32:30 [ 2] [ 16] [6688990103084008] +16:32:30 [ 3] [ 6] [011000] +16:32:30 [ 4] [ 12] [000100000000] +16:32:30 [ 11] [ 6] [800524] +16:32:30 [ 12] [ 6] [163223] +16:32:30 [ 15] [ 4] [0320] +16:32:30 [ 18] [ 4] [6011] +16:32:30 [ 32] [ 6] [621354] +16:32:30 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:32:30 [ 37] [ 12] [507904719792] +16:32:30 [ 38] [ 6] [090144] +16:32:30 [ 39] [ 2] [00] +16:32:30 [ 41] [ 8] [18001000] +16:32:30 [ 49] [ 3] [418] +16:32:30 [ 54] [ 20] [1002418C000081278766] +16:32:30 ============================================================================ +16:32:30 Sending to : +16:32:30 ============================================================================ +16:32:30 + + +waiting on router queue for slot.... +16:32:31 ============================================================================ +16:32:31 Slot Id : <25> +16:32:31 Transaction Type : RESPONSE +16:32:31 Received From : +16:32:31 ============================================================================ +16:32:31 FNo. Len. Field Value +16:32:31 ============================================================================ +16:32:31 [ 1] [ 4] [0210] +16:32:31 [ 2] [ 16] [6688990103084008] +16:32:31 [ 3] [ 6] [011000] +16:32:31 [ 4] [ 12] [000100000000] +16:32:31 [ 11] [ 6] [800524] +16:32:31 [ 12] [ 6] [163223] +16:32:31 [ 15] [ 4] [0320] +16:32:31 [ 18] [ 4] [6011] +16:32:31 [ 32] [ 6] [621354] +16:32:31 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:32:31 [ 37] [ 12] [507904719792] +16:32:31 [ 38] [ 6] [090144] +16:32:31 [ 39] [ 2] [00] +16:32:31 [ 41] [ 8] [18001000] +16:32:31 [ 49] [ 3] [418] +16:32:31 [ 54] [ 20] [1002418C000081278766] +16:32:31 ============================================================================ +16:32:31 Calculate Source COMM Id = 0 +16:32:31 ============================================================================ +16:32:31 + + +waiting on router queue for slot.... +16:32:33 ============================================================================ +16:32:33 Slot Id : <50> +16:32:33 Transaction Type : REQUEST +16:32:33 Received From : +16:32:33 ============================================================================ +16:32:33 FNo. Len. Field Value +16:32:33 ============================================================================ +16:32:33 [ 1] [ 4] [0200] +16:32:33 [ 2] [ 16] [6213545000334247] +16:32:33 [ 3] [ 6] [011000] +16:32:33 [ 4] [ 12] [000080000000] +16:32:33 [ 7] [ 10] [0320093139] +16:32:33 [ 11] [ 6] [270485] +16:32:33 [ 12] [ 6] [163139] +16:32:33 [ 13] [ 4] [0320] +16:32:33 [ 14] [ 4] [4912] +16:32:33 [ 15] [ 4] [0320] +16:32:33 [ 18] [ 4] [6011] +16:32:33 [ 19] [ 3] [418] +16:32:33 [ 22] [ 3] [021] +16:32:33 [ 25] [ 2] [01] +16:32:33 [ 28] [ 9] [D00002000] +16:32:33 [ 32] [ 6] [180893] +16:32:33 [ 35] [ 32] [6213545000334247=491212013424967] +16:32:33 [ 37] [ 12] [507909270485] +16:32:33 [ 41] [ 8] [0161HQBR] +16:32:33 [ 42] [ 15] [999999 ] +16:32:33 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +16:32:33 [ 49] [ 3] [418] +16:32:33 [ 52] [ 16] [1C915F8F9B49642B] +16:32:33 ============================================================================ +16:32:33 + + +waiting on router queue for slot.... +16:32:33 Sending to : +16:32:33 ============================================================================ +16:32:33 Sending to : +16:32:33 ============================================================================ +16:32:33 ============================================================================ +16:32:33 Slot Id : <50> +16:32:33 Transaction Type : REQUEST +16:32:33 Received From : +16:32:33 ============================================================================ +16:32:33 FNo. Len. Field Value +16:32:33 ============================================================================ +16:32:33 [ 1] [ 4] [0200] +16:32:33 [ 2] [ 16] [6213545000334247] +16:32:33 [ 3] [ 6] [011000] +16:32:33 [ 4] [ 12] [000080000000] +16:32:33 [ 7] [ 10] [0320093139] +16:32:33 [ 11] [ 6] [270485] +16:32:33 [ 12] [ 6] [163139] +16:32:33 [ 13] [ 4] [0320] +16:32:33 [ 14] [ 4] [4912] +16:32:33 [ 15] [ 4] [0320] +16:32:33 [ 18] [ 4] [6011] +16:32:33 [ 19] [ 3] [418] +16:32:33 [ 22] [ 3] [021] +16:32:33 [ 25] [ 2] [01] +16:32:33 [ 28] [ 9] [D00002000] +16:32:33 [ 32] [ 6] [180893] +16:32:33 [ 35] [ 32] [6213545000334247=491212013424967] +16:32:33 [ 37] [ 12] [507909270485] +16:32:33 [ 41] [ 8] [0161HQBR] +16:32:33 [ 42] [ 15] [999999 ] +16:32:33 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +16:32:33 [ 49] [ 3] [418] +16:32:33 [ 52] [ 16] [1C915F8F9B49642B] +16:32:33 ============================================================================ +16:32:33 + + +waiting on router queue for slot.... +16:32:33 Sending to : +16:32:33 ============================================================================ +16:32:33 ============================================================================ +16:32:33 Slot Id : <50> +16:32:33 Transaction Type : REQUEST +16:32:33 Received From : +16:32:33 ============================================================================ +16:32:33 FNo. Len. Field Value +16:32:33 ============================================================================ +16:32:33 [ 1] [ 4] [0200] +16:32:33 [ 2] [ 16] [6213545000334247] +16:32:33 [ 3] [ 6] [011000] +16:32:33 [ 4] [ 12] [000080000000] +16:32:33 [ 7] [ 10] [0320093139] +16:32:33 [ 11] [ 6] [270485] +16:32:33 [ 12] [ 6] [163139] +16:32:33 [ 13] [ 4] [0320] +16:32:33 [ 14] [ 4] [4912] +16:32:33 [ 15] [ 4] [0320] +16:32:33 [ 18] [ 4] [6011] +16:32:33 [ 19] [ 3] [418] +16:32:33 [ 22] [ 3] [021] +16:32:33 [ 25] [ 2] [01] +16:32:33 [ 28] [ 9] [D00002000] +16:32:33 [ 32] [ 6] [180893] +16:32:33 [ 35] [ 32] [6213545000334247=491212013424967] +16:32:33 [ 37] [ 12] [507909270485] +16:32:33 [ 41] [ 8] [0161HQBR] +16:32:33 [ 42] [ 15] [999999 ] +16:32:33 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +16:32:33 [ 49] [ 3] [418] +16:32:33 [ 52] [ 16] [02E1696C20E42C99] +16:32:33 ============================================================================ +16:32:33 + + +waiting on router queue for slot.... +16:32:33 Sending to : <0> +16:32:33 ============================================================================ +16:32:34 ============================================================================ +16:32:34 Slot Id : <50> +16:32:34 Transaction Type : RESPONSE +16:32:34 Received From : +16:32:34 ============================================================================ +16:32:34 FNo. Len. Field Value +16:32:34 ============================================================================ +16:32:34 [ 1] [ 4] [0210] +16:32:34 [ 2] [ 16] [6213545000334247] +16:32:34 [ 3] [ 6] [011000] +16:32:34 [ 4] [ 12] [000080000000] +16:32:34 [ 7] [ 10] [0320093139] +16:32:34 [ 11] [ 6] [270485] +16:32:34 [ 12] [ 6] [163139] +16:32:34 [ 13] [ 4] [0320] +16:32:34 [ 15] [ 4] [0320] +16:32:34 [ 18] [ 4] [6011] +16:32:34 [ 19] [ 3] [418] +16:32:34 [ 32] [ 6] [180893] +16:32:34 [ 35] [ 32] [6213545000334247=491212013424967] +16:32:34 [ 37] [ 12] [507909270485] +16:32:34 [ 38] [ 6] [512974] +16:32:34 [ 39] [ 2] [00] +16:32:34 [ 41] [ 8] [0161HQBR] +16:32:34 [ 49] [ 3] [418] +16:32:34 [ 54] [ 40] [1001418C0000226602211002418C000022660221] +16:32:34 ============================================================================ +16:32:34 Sending to : +16:32:34 ============================================================================ +16:32:34 + + +waiting on router queue for slot.... +16:32:36 ============================================================================ +16:32:36 Slot Id : <50> +16:32:36 Transaction Type : RESPONSE +16:32:36 Received From : +16:32:36 ============================================================================ +16:32:36 FNo. Len. Field Value +16:32:36 ============================================================================ +16:32:36 [ 1] [ 4] [0210] +16:32:36 [ 2] [ 16] [6213545000334247] +16:32:36 [ 3] [ 6] [011000] +16:32:36 [ 4] [ 12] [000080000000] +16:32:36 [ 7] [ 10] [0320093139] +16:32:36 [ 11] [ 6] [270485] +16:32:36 [ 12] [ 6] [163139] +16:32:36 [ 13] [ 4] [0320] +16:32:36 [ 15] [ 4] [0320] +16:32:36 [ 18] [ 4] [6011] +16:32:36 [ 19] [ 3] [418] +16:32:36 [ 32] [ 6] [180893] +16:32:36 [ 35] [ 32] [6213545000334247=491212013424967] +16:32:36 [ 37] [ 12] [507909270485] +16:32:36 [ 38] [ 6] [512974] +16:32:36 [ 39] [ 2] [00] +16:32:36 [ 41] [ 8] [0161HQBR] +16:32:36 [ 49] [ 3] [418] +16:32:36 [ 54] [ 40] [1001418C0000226602211002418C000022660221] +16:32:36 ============================================================================ +16:32:36 Calculate Source COMM Id = 2 +16:32:36 ============================================================================ +16:32:36 + + +waiting on router queue for slot.... +16:32:39 ============================================================================ +16:32:39 Slot Id : <61> +16:32:39 Transaction Type : REQUEST +16:32:39 Received From : +16:32:39 ============================================================================ +16:32:39 FNo. Len. Field Value +16:32:39 ============================================================================ +16:32:39 [ 1] [ 4] [0800] +16:32:39 [ 2] [ 5] [02531] +16:32:39 [ 3] [ 6] [579168] +16:32:39 [ 7] [ 10] [0320093239] +16:32:39 [ 11] [ 6] [807372] +16:32:39 [ 15] [ 10] [0320093239] +16:32:39 [ 37] [ 11] [57916807372] +16:32:39 [ 70] [ 3] [001] +16:32:39 ============================================================================ +16:32:39 + + +waiting on router queue for slot.... +16:32:39 ============================================================================ +16:32:39 Slot Id : <61> +16:32:39 Transaction Type : RESPONSE +16:32:39 Received From : +16:32:39 ============================================================================ +16:32:39 FNo. Len. Field Value +16:32:39 ============================================================================ +16:32:39 [ 1] [ 4] [0810] +16:32:39 [ 7] [ 10] [0320093239] +16:32:39 [ 11] [ 6] [807372] +16:32:39 [ 15] [ 4] [0320] +16:32:39 [ 37] [ 12] [57916807372] +16:32:39 [ 39] [ 2] [00] +16:32:39 [ 70] [ 3] [001] +16:32:39 ============================================================================ +16:32:39 Sending to : +16:32:39 ============================================================================ +16:32:39 + + +waiting on router queue for slot.... +16:32:52 ============================================================================ +16:32:52 Slot Id : <44> +16:32:52 Transaction Type : REQUEST +16:32:52 Received From : +16:32:52 ============================================================================ +16:32:52 FNo. Len. Field Value +16:32:52 ============================================================================ +16:32:52 [ 1] [ 4] [0800] +16:32:52 [ 7] [ 10] [0320093159] +16:32:52 [ 11] [ 6] [157255] +16:32:52 [ 70] [ 3] [301] +16:32:52 ============================================================================ +16:32:52 + + +waiting on router queue for slot.... +16:32:52 Sending to : +16:32:52 ============================================================================ +16:32:52 ============================================================================ +16:32:52 Slot Id : <44> +16:32:52 Transaction Type : RESPONSE +16:32:52 Received From : +16:32:52 ============================================================================ +16:32:52 FNo. Len. Field Value +16:32:52 ============================================================================ +16:32:52 [ 1] [ 4] [0810] +16:32:52 [ 7] [ 10] [0320093159] +16:32:52 [ 11] [ 6] [157255] +16:32:52 [ 39] [ 2] [00] +16:32:52 [ 70] [ 3] [301] +16:32:52 ============================================================================ +16:32:52 Calculate Source COMM Id = 2 +16:32:52 ============================================================================ +16:32:52 + + +waiting on router queue for slot.... +16:33:00 ============================================================================ +16:33:00 Slot Id : <478> +16:33:00 Transaction Type : REQUEST +16:33:00 Received From : +16:33:00 ============================================================================ +16:33:00 FNo. Len. Field Value +16:33:00 ============================================================================ +16:33:00 [ 1] [ 4] [0200] +16:33:00 [ 2] [ 16] [1808931800005819] +16:33:00 [ 3] [ 6] [010000] +16:33:00 [ 4] [ 12] [000040000000] +16:33:00 [ 7] [ 10] [0320163255] +16:33:00 [ 11] [ 6] [800646] +16:33:00 [ 12] [ 6] [163255] +16:33:00 [ 13] [ 4] [0320] +16:33:00 [ 15] [ 4] [0320] +16:33:00 [ 18] [ 4] [6011] +16:33:00 [ 22] [ 3] [900] +16:33:00 [ 25] [ 2] [02] +16:33:00 [ 28] [ 9] [D00002000] +16:33:00 [ 32] [ 6] [621354] +16:33:00 [ 35] [ 27] [1808931800005819=1803500314] +16:33:00 [ 37] [ 12] [507904635877] +16:33:00 [ 41] [ 8] [17000800] +16:33:00 [ 42] [ 15] [NATIVE ] +16:33:00 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:33:00 [ 49] [ 3] [418] +16:33:00 [ 52] [ 16] [FB005D378095F13B] +16:33:00 ============================================================================ +16:33:00 + + +waiting on router queue for slot.... +16:33:00 Sending to : +16:33:00 ============================================================================ +16:33:00 Sending to : +16:33:00 ============================================================================ +16:33:00 ============================================================================ +16:33:00 Slot Id : <60> +16:33:00 Transaction Type : REQUEST +16:33:00 Received From : +16:33:00 ============================================================================ +16:33:00 FNo. Len. Field Value +16:33:00 ============================================================================ +16:33:00 [ 1] [ 4] [0200] +16:33:00 [ 2] [ 16] [6213544002113055] +16:33:00 [ 3] [ 6] [011000] +16:33:00 [ 4] [ 12] [000050000000] +16:33:00 [ 7] [ 10] [0320163320] +16:33:00 [ 11] [ 6] [208762] +16:33:00 [ 12] [ 6] [162826] +16:33:00 [ 13] [ 4] [0320] +16:33:00 [ 14] [ 4] [4912] +16:33:00 [ 15] [ 4] [0320] +16:33:00 [ 18] [ 4] [6011] +16:33:00 [ 19] [ 3] [418] +16:33:00 [ 22] [ 3] [021] +16:33:00 [ 25] [ 2] [01] +16:33:00 [ 28] [ 9] [D00002000] +16:33:00 [ 32] [ 6] [198901] +16:33:00 [ 35] [ 32] [6213544002113055=491212011305382] +16:33:00 [ 37] [ 12] [507916208762] +16:33:00 [ 41] [ 8] [19529001] +16:33:00 [ 42] [ 15] [000000041952901] +16:33:00 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:33:00 [ 49] [ 3] [418] +16:33:00 [ 52] [ 16] [5F4D004E83183DB3] +16:33:00 ============================================================================ +16:33:00 + + +waiting on router queue for slot.... +16:33:00 Sending to : +16:33:00 ============================================================================ +16:33:00 Sending to : +16:33:00 ============================================================================ +16:33:00 ============================================================================ +16:33:00 Slot Id : <478> +16:33:00 Transaction Type : REQUEST +16:33:00 Received From : +16:33:00 ============================================================================ +16:33:00 FNo. Len. Field Value +16:33:00 ============================================================================ +16:33:00 [ 1] [ 4] [0200] +16:33:00 [ 2] [ 16] [1808931800005819] +16:33:00 [ 3] [ 6] [010000] +16:33:00 [ 4] [ 12] [000040000000] +16:33:00 [ 7] [ 10] [0320163255] +16:33:00 [ 11] [ 6] [800646] +16:33:00 [ 12] [ 6] [163255] +16:33:00 [ 13] [ 4] [0320] +16:33:00 [ 15] [ 4] [0320] +16:33:00 [ 18] [ 4] [6011] +16:33:00 [ 22] [ 3] [900] +16:33:00 [ 25] [ 2] [02] +16:33:00 [ 28] [ 9] [D00002000] +16:33:00 [ 32] [ 6] [621354] +16:33:00 [ 35] [ 27] [1808931800005819=1803500314] +16:33:00 [ 37] [ 12] [507904635877] +16:33:00 [ 41] [ 8] [17000800] +16:33:00 [ 42] [ 15] [NATIVE ] +16:33:00 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:33:00 [ 49] [ 3] [418] +16:33:00 [ 52] [ 16] [FB005D378095F13B] +16:33:00 ============================================================================ +16:33:00 + + +waiting on router queue for slot.... +16:33:00 Sending to : +16:33:00 ============================================================================ +16:33:00 ============================================================================ +16:33:00 Slot Id : <478> +16:33:00 Transaction Type : REQUEST +16:33:00 Received From : +16:33:00 ============================================================================ +16:33:00 FNo. Len. Field Value +16:33:00 ============================================================================ +16:33:00 [ 1] [ 4] [0200] +16:33:00 [ 2] [ 16] [1808931800005819] +16:33:00 [ 3] [ 6] [010000] +16:33:00 [ 4] [ 12] [000040000000] +16:33:00 [ 7] [ 10] [0320163255] +16:33:00 [ 11] [ 6] [800646] +16:33:00 [ 12] [ 6] [163255] +16:33:00 [ 13] [ 4] [0320] +16:33:00 [ 15] [ 4] [0320] +16:33:00 [ 18] [ 4] [6011] +16:33:00 [ 22] [ 3] [900] +16:33:00 [ 25] [ 2] [02] +16:33:00 [ 28] [ 9] [D00002000] +16:33:00 [ 32] [ 6] [621354] +16:33:00 [ 35] [ 27] [1808931800005819=1803500314] +16:33:00 [ 37] [ 12] [507904635877] +16:33:00 [ 41] [ 8] [17000800] +16:33:00 [ 42] [ 15] [NATIVE ] +16:33:00 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:33:00 [ 49] [ 3] [418] +16:33:00 [ 52] [ 16] [98BE394402CFEE30] +16:33:00 ============================================================================ +16:33:00 + + +waiting on router queue for slot.... +16:33:00 Sending to : <2> +16:33:00 ============================================================================ +16:33:00 ============================================================================ +16:33:00 Slot Id : <60> +16:33:00 Transaction Type : REQUEST +16:33:00 Received From : +16:33:00 ============================================================================ +16:33:00 FNo. Len. Field Value +16:33:00 ============================================================================ +16:33:00 [ 1] [ 4] [0200] +16:33:00 [ 2] [ 16] [6213544002113055] +16:33:00 [ 3] [ 6] [011000] +16:33:00 [ 4] [ 12] [000050000000] +16:33:00 [ 7] [ 10] [0320163320] +16:33:00 [ 11] [ 6] [208762] +16:33:00 [ 12] [ 6] [162826] +16:33:00 [ 13] [ 4] [0320] +16:33:00 [ 14] [ 4] [4912] +16:33:00 [ 15] [ 4] [0320] +16:33:00 [ 18] [ 4] [6011] +16:33:00 [ 19] [ 3] [418] +16:33:00 [ 22] [ 3] [021] +16:33:00 [ 25] [ 2] [01] +16:33:00 [ 28] [ 9] [D00002000] +16:33:00 [ 32] [ 6] [198901] +16:33:00 [ 35] [ 32] [6213544002113055=491212011305382] +16:33:00 [ 37] [ 12] [507916208762] +16:33:00 [ 41] [ 8] [19529001] +16:33:00 [ 42] [ 15] [000000041952901] +16:33:00 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:33:00 [ 49] [ 3] [418] +16:33:00 [ 52] [ 16] [5F4D004E83183DB3] +16:33:00 ============================================================================ +16:33:00 + + +waiting on router queue for slot.... +16:33:00 Sending to : +16:33:00 ============================================================================ +16:33:00 ============================================================================ +16:33:00 Slot Id : <60> +16:33:00 Transaction Type : REQUEST +16:33:00 Received From : +16:33:00 ============================================================================ +16:33:00 FNo. Len. Field Value +16:33:00 ============================================================================ +16:33:00 [ 1] [ 4] [0200] +16:33:00 [ 2] [ 16] [6213544002113055] +16:33:00 [ 3] [ 6] [011000] +16:33:00 [ 4] [ 12] [000050000000] +16:33:00 [ 7] [ 10] [0320163320] +16:33:00 [ 11] [ 6] [208762] +16:33:00 [ 12] [ 6] [162826] +16:33:00 [ 13] [ 4] [0320] +16:33:00 [ 14] [ 4] [4912] +16:33:00 [ 15] [ 4] [0320] +16:33:00 [ 18] [ 4] [6011] +16:33:00 [ 19] [ 3] [418] +16:33:00 [ 22] [ 3] [021] +16:33:00 [ 25] [ 2] [01] +16:33:00 [ 28] [ 9] [D00002000] +16:33:00 [ 32] [ 6] [198901] +16:33:00 [ 35] [ 32] [6213544002113055=491212011305382] +16:33:00 [ 37] [ 12] [507916208762] +16:33:00 [ 41] [ 8] [19529001] +16:33:00 [ 42] [ 15] [000000041952901] +16:33:00 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:33:00 [ 49] [ 3] [418] +16:33:00 [ 52] [ 16] [A961E4C8270B6BC0] +16:33:00 ============================================================================ +16:33:00 + + +waiting on router queue for slot.... +16:33:00 Sending to : <0> +16:33:00 ============================================================================ +16:33:01 ============================================================================ +16:33:01 Slot Id : <60> +16:33:01 Transaction Type : RESPONSE +16:33:01 Received From : +16:33:01 ============================================================================ +16:33:01 FNo. Len. Field Value +16:33:01 ============================================================================ +16:33:01 [ 1] [ 4] [0210] +16:33:01 [ 2] [ 16] [6213544002113055] +16:33:01 [ 3] [ 6] [011000] +16:33:01 [ 4] [ 12] [000050000000] +16:33:01 [ 7] [ 10] [0320163320] +16:33:01 [ 11] [ 6] [208762] +16:33:01 [ 12] [ 6] [162826] +16:33:01 [ 13] [ 4] [0320] +16:33:01 [ 15] [ 4] [0320] +16:33:01 [ 18] [ 4] [6011] +16:33:01 [ 19] [ 3] [418] +16:33:01 [ 32] [ 6] [198901] +16:33:01 [ 35] [ 32] [6213544002113055=491212011305382] +16:33:01 [ 37] [ 12] [507916208762] +16:33:01 [ 38] [ 6] [855898] +16:33:01 [ 39] [ 2] [00] +16:33:01 [ 41] [ 8] [19529001] +16:33:01 [ 49] [ 3] [418] +16:33:01 [ 54] [ 40] [1001418C0000096990271002418C000009699027] +16:33:01 ============================================================================ +16:33:01 Sending to : +16:33:01 ============================================================================ +16:33:01 + + +waiting on router queue for slot.... +16:33:02 ============================================================================ +16:33:02 Slot Id : <60> +16:33:02 Transaction Type : RESPONSE +16:33:02 Received From : +16:33:02 ============================================================================ +16:33:02 FNo. Len. Field Value +16:33:02 ============================================================================ +16:33:02 [ 1] [ 4] [0210] +16:33:02 [ 2] [ 16] [6213544002113055] +16:33:02 [ 3] [ 6] [011000] +16:33:02 [ 4] [ 12] [000050000000] +16:33:02 [ 7] [ 10] [0320163320] +16:33:02 [ 11] [ 6] [208762] +16:33:02 [ 12] [ 6] [162826] +16:33:02 [ 13] [ 4] [0320] +16:33:02 [ 15] [ 4] [0320] +16:33:02 [ 18] [ 4] [6011] +16:33:02 [ 19] [ 3] [418] +16:33:02 [ 32] [ 6] [198901] +16:33:02 [ 35] [ 32] [6213544002113055=491212011305382] +16:33:02 [ 37] [ 12] [507916208762] +16:33:02 [ 38] [ 6] [855898] +16:33:02 [ 39] [ 2] [00] +16:33:02 [ 41] [ 8] [19529001] +16:33:02 [ 49] [ 3] [418] +16:33:02 [ 54] [ 40] [1001418C0000096990271002418C000009699027] +16:33:02 ============================================================================ +16:33:02 Calculate Source COMM Id = 5 +16:33:02 ============================================================================ +16:33:02 + + +waiting on router queue for slot.... +16:33:03 ============================================================================ +16:33:03 Slot Id : <478> +16:33:03 Transaction Type : RESPONSE +16:33:03 Received From : +16:33:03 ============================================================================ +16:33:03 FNo. Len. Field Value +16:33:03 ============================================================================ +16:33:03 [ 1] [ 4] [0210] +16:33:03 [ 2] [ 16] [1808931800005819] +16:33:03 [ 3] [ 6] [010000] +16:33:03 [ 4] [ 12] [000040000000] +16:33:03 [ 6] [ 12] [000040000000] +16:33:03 [ 7] [ 10] [0320163255] +16:33:03 [ 11] [ 6] [800646] +16:33:03 [ 12] [ 6] [163255] +16:33:03 [ 13] [ 4] [0320] +16:33:03 [ 18] [ 4] [6011] +16:33:03 [ 19] [ 3] [418] +16:33:03 [ 22] [ 3] [021] +16:33:03 [ 32] [ 6] [621354] +16:33:03 [ 35] [ 27] [1808931800005819=1803500314] +16:33:03 [ 37] [ 12] [507904635877] +16:33:03 [ 38] [ 6] [800646] +16:33:03 [ 39] [ 2] [51] +16:33:03 [ 41] [ 8] [17000800] +16:33:03 [ 49] [ 3] [418] +16:33:03 [ 52] [ 16] [98BE394402CFEE30] +16:33:03 ============================================================================ +16:33:03 Sending to : +16:33:03 ============================================================================ +16:33:03 + + +waiting on router queue for slot.... +16:33:04 ============================================================================ +16:33:04 Slot Id : <478> +16:33:04 Transaction Type : RESPONSE +16:33:04 Received From : +16:33:04 ============================================================================ +16:33:04 FNo. Len. Field Value +16:33:04 ============================================================================ +16:33:04 [ 1] [ 4] [0210] +16:33:04 [ 2] [ 16] [1808931800005819] +16:33:04 [ 3] [ 6] [010000] +16:33:04 [ 4] [ 12] [000040000000] +16:33:04 [ 6] [ 12] [000040000000] +16:33:04 [ 7] [ 10] [0320163255] +16:33:04 [ 11] [ 6] [800646] +16:33:04 [ 12] [ 6] [163255] +16:33:04 [ 13] [ 4] [0320] +16:33:04 [ 18] [ 4] [6011] +16:33:04 [ 19] [ 3] [418] +16:33:04 [ 22] [ 3] [021] +16:33:04 [ 32] [ 6] [621354] +16:33:04 [ 35] [ 27] [1808931800005819=1803500314] +16:33:04 [ 37] [ 12] [507904635877] +16:33:04 [ 38] [ 6] [800646] +16:33:04 [ 39] [ 2] [51] +16:33:04 [ 41] [ 8] [17000800] +16:33:04 [ 49] [ 3] [418] +16:33:04 [ 52] [ 16] [98BE394402CFEE30] +16:33:04 ============================================================================ +16:33:04 Calculate Source COMM Id = 0 +16:33:04 ============================================================================ +16:33:04 + + +waiting on router queue for slot.... +16:33:14 ============================================================================ +16:33:14 Slot Id : <15> +16:33:14 Transaction Type : REQUEST +16:33:14 Received From : +16:33:14 ============================================================================ +16:33:14 FNo. Len. Field Value +16:33:14 ============================================================================ +16:33:14 [ 1] [ 4] [0800] +16:33:14 [ 7] [ 10] [0320093221] +16:33:14 [ 11] [ 6] [157256] +16:33:14 [ 70] [ 3] [301] +16:33:14 ============================================================================ +16:33:14 + + +waiting on router queue for slot.... +16:33:14 Sending to : +16:33:14 ============================================================================ +16:33:14 ============================================================================ +16:33:14 Slot Id : <15> +16:33:14 Transaction Type : RESPONSE +16:33:14 Received From : +16:33:14 ============================================================================ +16:33:14 FNo. Len. Field Value +16:33:14 ============================================================================ +16:33:14 [ 1] [ 4] [0810] +16:33:14 [ 7] [ 10] [0320093221] +16:33:14 [ 11] [ 6] [157256] +16:33:14 [ 39] [ 2] [00] +16:33:14 [ 70] [ 3] [301] +16:33:14 ============================================================================ +16:33:14 Calculate Source COMM Id = 2 +16:33:14 ============================================================================ +16:33:14 + + +waiting on router queue for slot.... +16:33:15 ============================================================================ +16:33:15 Slot Id : <63> +16:33:15 Transaction Type : REQUEST +16:33:15 Received From : +16:33:15 ============================================================================ +16:33:15 FNo. Len. Field Value +16:33:15 ============================================================================ +16:33:15 [ 1] [ 4] [0200] +16:33:15 [ 2] [ 16] [6213545000803498] +16:33:15 [ 3] [ 6] [011000] +16:33:15 [ 4] [ 12] [000010000000] +16:33:15 [ 7] [ 10] [0320163335] +16:33:15 [ 11] [ 6] [208765] +16:33:15 [ 12] [ 6] [043145] +16:33:15 [ 13] [ 4] [0320] +16:33:15 [ 14] [ 4] [4912] +16:33:15 [ 15] [ 4] [0320] +16:33:15 [ 18] [ 4] [6011] +16:33:15 [ 19] [ 3] [418] +16:33:15 [ 22] [ 3] [021] +16:33:15 [ 25] [ 2] [01] +16:33:15 [ 28] [ 9] [D00002000] +16:33:15 [ 32] [ 6] [198901] +16:33:15 [ 35] [ 32] [6213545000803498=491212010349171] +16:33:15 [ 37] [ 12] [507916208765] +16:33:15 [ 41] [ 8] [01529031] +16:33:15 [ 42] [ 15] [000000041529031] +16:33:15 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:33:15 [ 49] [ 3] [418] +16:33:15 [ 52] [ 16] [52D6404914168335] +16:33:15 ============================================================================ +16:33:15 + + +waiting on router queue for slot.... +16:33:15 Sending to : +16:33:15 ============================================================================ +16:33:15 Sending to : +16:33:15 ============================================================================ +16:33:15 ============================================================================ +16:33:15 Slot Id : <63> +16:33:15 Transaction Type : REQUEST +16:33:15 Received From : +16:33:15 ============================================================================ +16:33:15 FNo. Len. Field Value +16:33:15 ============================================================================ +16:33:15 [ 1] [ 4] [0200] +16:33:15 [ 2] [ 16] [6213545000803498] +16:33:15 [ 3] [ 6] [011000] +16:33:15 [ 4] [ 12] [000010000000] +16:33:15 [ 7] [ 10] [0320163335] +16:33:15 [ 11] [ 6] [208765] +16:33:15 [ 12] [ 6] [043145] +16:33:15 [ 13] [ 4] [0320] +16:33:15 [ 14] [ 4] [4912] +16:33:15 [ 15] [ 4] [0320] +16:33:15 [ 18] [ 4] [6011] +16:33:15 [ 19] [ 3] [418] +16:33:15 [ 22] [ 3] [021] +16:33:15 [ 25] [ 2] [01] +16:33:15 [ 28] [ 9] [D00002000] +16:33:15 [ 32] [ 6] [198901] +16:33:15 [ 35] [ 32] [6213545000803498=491212010349171] +16:33:15 [ 37] [ 12] [507916208765] +16:33:15 [ 41] [ 8] [01529031] +16:33:15 [ 42] [ 15] [000000041529031] +16:33:15 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:33:15 [ 49] [ 3] [418] +16:33:15 [ 52] [ 16] [52D6404914168335] +16:33:15 ============================================================================ +16:33:15 + + +waiting on router queue for slot.... +16:33:15 Sending to : +16:33:15 ============================================================================ +16:33:15 ============================================================================ +16:33:15 Slot Id : <63> +16:33:15 Transaction Type : REQUEST +16:33:15 Received From : +16:33:15 ============================================================================ +16:33:15 FNo. Len. Field Value +16:33:15 ============================================================================ +16:33:15 [ 1] [ 4] [0200] +16:33:15 [ 2] [ 16] [6213545000803498] +16:33:15 [ 3] [ 6] [011000] +16:33:15 [ 4] [ 12] [000010000000] +16:33:15 [ 7] [ 10] [0320163335] +16:33:15 [ 11] [ 6] [208765] +16:33:15 [ 12] [ 6] [043145] +16:33:15 [ 13] [ 4] [0320] +16:33:15 [ 14] [ 4] [4912] +16:33:15 [ 15] [ 4] [0320] +16:33:15 [ 18] [ 4] [6011] +16:33:15 [ 19] [ 3] [418] +16:33:15 [ 22] [ 3] [021] +16:33:15 [ 25] [ 2] [01] +16:33:15 [ 28] [ 9] [D00002000] +16:33:15 [ 32] [ 6] [198901] +16:33:15 [ 35] [ 32] [6213545000803498=491212010349171] +16:33:15 [ 37] [ 12] [507916208765] +16:33:15 [ 41] [ 8] [01529031] +16:33:15 [ 42] [ 15] [000000041529031] +16:33:15 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:33:15 [ 49] [ 3] [418] +16:33:15 [ 52] [ 16] [AD5C1EBBDA0D2D73] +16:33:15 ============================================================================ +16:33:15 + + +waiting on router queue for slot.... +16:33:15 Sending to : <0> +16:33:15 ============================================================================ +16:33:16 ============================================================================ +16:33:16 Slot Id : <63> +16:33:16 Transaction Type : RESPONSE +16:33:16 Received From : +16:33:16 ============================================================================ +16:33:16 FNo. Len. Field Value +16:33:16 ============================================================================ +16:33:16 [ 1] [ 4] [0210] +16:33:16 [ 2] [ 16] [6213545000803498] +16:33:16 [ 3] [ 6] [011000] +16:33:16 [ 4] [ 12] [000010000000] +16:33:16 [ 7] [ 10] [0320163335] +16:33:16 [ 11] [ 6] [208765] +16:33:16 [ 12] [ 6] [043145] +16:33:16 [ 13] [ 4] [0320] +16:33:16 [ 15] [ 4] [0320] +16:33:16 [ 18] [ 4] [6011] +16:33:16 [ 19] [ 3] [418] +16:33:16 [ 32] [ 6] [198901] +16:33:16 [ 35] [ 32] [6213545000803498=491212010349171] +16:33:16 [ 37] [ 12] [507916208765] +16:33:16 [ 38] [ 6] [679604] +16:33:16 [ 39] [ 2] [00] +16:33:16 [ 41] [ 8] [01529031] +16:33:16 [ 49] [ 3] [418] +16:33:16 [ 54] [ 40] [1001418C0001437869401002418C000143786940] +16:33:16 ============================================================================ +16:33:16 Sending to : +16:33:16 ============================================================================ +16:33:16 + + +waiting on router queue for slot.... +16:33:17 ============================================================================ +16:33:17 Slot Id : <63> +16:33:17 Transaction Type : RESPONSE +16:33:17 Received From : +16:33:17 ============================================================================ +16:33:17 FNo. Len. Field Value +16:33:17 ============================================================================ +16:33:17 [ 1] [ 4] [0210] +16:33:17 [ 2] [ 16] [6213545000803498] +16:33:17 [ 3] [ 6] [011000] +16:33:17 [ 4] [ 12] [000010000000] +16:33:17 [ 7] [ 10] [0320163335] +16:33:17 [ 11] [ 6] [208765] +16:33:17 [ 12] [ 6] [043145] +16:33:17 [ 13] [ 4] [0320] +16:33:17 [ 15] [ 4] [0320] +16:33:17 [ 18] [ 4] [6011] +16:33:17 [ 19] [ 3] [418] +16:33:17 [ 32] [ 6] [198901] +16:33:17 [ 35] [ 32] [6213545000803498=491212010349171] +16:33:17 [ 37] [ 12] [507916208765] +16:33:17 [ 38] [ 6] [679604] +16:33:17 [ 39] [ 2] [00] +16:33:17 [ 41] [ 8] [01529031] +16:33:17 [ 49] [ 3] [418] +16:33:17 [ 54] [ 40] [1001418C0001437869401002418C000143786940] +16:33:17 ============================================================================ +16:33:17 Calculate Source COMM Id = 5 +16:33:17 ============================================================================ +16:33:17 + + +waiting on router queue for slot.... +16:33:18 ============================================================================ +16:33:18 Slot Id : <68> +16:33:18 Transaction Type : REQUEST +16:33:18 Received From : +16:33:18 ============================================================================ +16:33:18 FNo. Len. Field Value +16:33:18 ============================================================================ +16:33:18 [ 1] [ 4] [0200] +16:33:18 [ 2] [ 16] [6688990102217500] +16:33:18 [ 3] [ 6] [010000] +16:33:18 [ 4] [ 12] [000010000000] +16:33:18 [ 7] [ 10] [0320093223] +16:33:18 [ 11] [ 6] [270493] +16:33:18 [ 12] [ 6] [163223] +16:33:18 [ 13] [ 4] [0320] +16:33:18 [ 14] [ 4] [4207] +16:33:18 [ 15] [ 4] [0320] +16:33:18 [ 18] [ 4] [6011] +16:33:18 [ 19] [ 3] [418] +16:33:18 [ 22] [ 3] [021] +16:33:18 [ 25] [ 2] [01] +16:33:18 [ 28] [ 9] [D00002000] +16:33:18 [ 32] [ 6] [180893] +16:33:18 [ 35] [ 37] [6688990102217500=42071231750087200000] +16:33:18 [ 37] [ 12] [507909270493] +16:33:18 [ 41] [ 8] [0261PSL1] +16:33:18 [ 42] [ 15] [999999 ] +16:33:18 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:33:18 [ 49] [ 3] [418] +16:33:18 [ 52] [ 16] [5CB87FF1A4DA5235] +16:33:18 ============================================================================ +16:33:18 + + +waiting on router queue for slot.... +16:33:18 Sending to : +16:33:18 ============================================================================ +16:33:18 Sending to : +16:33:18 ============================================================================ +16:33:19 ============================================================================ +16:33:19 Slot Id : <68> +16:33:19 Transaction Type : REQUEST +16:33:19 Received From : +16:33:19 ============================================================================ +16:33:19 FNo. Len. Field Value +16:33:19 ============================================================================ +16:33:19 [ 1] [ 4] [0200] +16:33:19 [ 2] [ 16] [6688990102217500] +16:33:19 [ 3] [ 6] [010000] +16:33:19 [ 4] [ 12] [000010000000] +16:33:19 [ 7] [ 10] [0320093223] +16:33:19 [ 11] [ 6] [270493] +16:33:19 [ 12] [ 6] [163223] +16:33:19 [ 13] [ 4] [0320] +16:33:19 [ 14] [ 4] [4207] +16:33:19 [ 15] [ 4] [0320] +16:33:19 [ 18] [ 4] [6011] +16:33:19 [ 19] [ 3] [418] +16:33:19 [ 22] [ 3] [021] +16:33:19 [ 25] [ 2] [01] +16:33:19 [ 28] [ 9] [D00002000] +16:33:19 [ 32] [ 6] [180893] +16:33:19 [ 35] [ 37] [6688990102217500=42071231750087200000] +16:33:19 [ 37] [ 12] [507909270493] +16:33:19 [ 41] [ 8] [0261PSL1] +16:33:19 [ 42] [ 15] [999999 ] +16:33:19 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:33:19 [ 49] [ 3] [418] +16:33:19 [ 52] [ 16] [5CB87FF1A4DA5235] +16:33:19 ============================================================================ +16:33:19 + + +waiting on router queue for slot.... +16:33:19 Sending to : +16:33:19 ============================================================================ +16:33:19 ============================================================================ +16:33:19 Slot Id : <68> +16:33:19 Transaction Type : REQUEST +16:33:19 Received From : +16:33:19 ============================================================================ +16:33:19 FNo. Len. Field Value +16:33:19 ============================================================================ +16:33:19 [ 1] [ 4] [0200] +16:33:19 [ 2] [ 16] [6688990102217500] +16:33:19 [ 3] [ 6] [010000] +16:33:19 [ 4] [ 12] [000010000000] +16:33:19 [ 7] [ 10] [0320093223] +16:33:19 [ 11] [ 6] [270493] +16:33:19 [ 12] [ 6] [163223] +16:33:19 [ 13] [ 4] [0320] +16:33:19 [ 14] [ 4] [4207] +16:33:19 [ 15] [ 4] [0320] +16:33:19 [ 18] [ 4] [6011] +16:33:19 [ 19] [ 3] [418] +16:33:19 [ 22] [ 3] [021] +16:33:19 [ 25] [ 2] [01] +16:33:19 [ 28] [ 9] [D00002000] +16:33:19 [ 32] [ 6] [180893] +16:33:19 [ 35] [ 37] [6688990102217500=42071231750087200000] +16:33:19 [ 37] [ 12] [507909270493] +16:33:19 [ 41] [ 8] [0261PSL1] +16:33:19 [ 42] [ 15] [999999 ] +16:33:19 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +16:33:19 [ 49] [ 3] [418] +16:33:19 [ 52] [ 16] [B34C1B4BDB1B6081] +16:33:19 ============================================================================ +16:33:19 + + +waiting on router queue for slot.... +16:33:19 Sending to : <0> +16:33:19 ============================================================================ +16:33:20 ============================================================================ +16:33:20 Slot Id : <68> +16:33:20 Transaction Type : RESPONSE +16:33:20 Received From : +16:33:20 ============================================================================ +16:33:20 FNo. Len. Field Value +16:33:20 ============================================================================ +16:33:20 [ 1] [ 4] [0210] +16:33:20 [ 2] [ 16] [6688990102217500] +16:33:20 [ 3] [ 6] [010000] +16:33:20 [ 4] [ 12] [000010000000] +16:33:20 [ 7] [ 10] [0320093223] +16:33:20 [ 11] [ 6] [270493] +16:33:20 [ 12] [ 6] [163223] +16:33:20 [ 13] [ 4] [0320] +16:33:20 [ 15] [ 4] [0320] +16:33:20 [ 18] [ 4] [6011] +16:33:20 [ 19] [ 3] [418] +16:33:20 [ 22] [ 3] [021] +16:33:20 [ 32] [ 6] [180893] +16:33:20 [ 35] [ 37] [6688990102217500=42071231750087200000] +16:33:20 [ 37] [ 12] [507909270493] +16:33:20 [ 39] [ 2] [14] +16:33:20 [ 41] [ 8] [0261PSL1] +16:33:20 [ 49] [ 3] [418] +16:33:20 ============================================================================ +16:33:20 Sending to : +16:33:20 ============================================================================ +16:33:20 + + +waiting on router queue for slot.... +16:33:20 ============================================================================ +16:33:20 Slot Id : <38> +16:33:20 Transaction Type : REQUEST +16:33:20 Received From : +16:33:20 ============================================================================ +16:33:20 FNo. Len. Field Value +16:33:20 ============================================================================ +16:33:20 [ 1] [ 4] [0800] +16:33:20 [ 7] [ 10] [0320234507] +16:33:20 [ 11] [ 6] [164507] +16:33:20 [ 37] [ 12] [57916164507] +16:33:20 [ 70] [ 3] [301] +16:33:20 ============================================================================ +16:33:20 + + +waiting on router queue for slot.... +16:33:20 Sending to : +16:33:20 ============================================================================ +16:33:20 ============================================================================ +16:33:20 Slot Id : <38> +16:33:20 Transaction Type : RESPONSE +16:33:20 Received From : +16:33:20 ============================================================================ +16:33:20 FNo. Len. Field Value +16:33:20 ============================================================================ +16:33:20 [ 1] [ 4] [0810] +16:33:20 [ 7] [ 10] [0320234507] +16:33:20 [ 11] [ 6] [164507] +16:33:20 [ 37] [ 12] [579161645070] +16:33:20 [ 39] [ 2] [00] +16:33:20 [ 70] [ 3] [810] +16:33:20 ============================================================================ +16:33:20 Calculate Source COMM Id = 6 +16:33:20 ============================================================================ +16:33:20 + + +waiting on router queue for slot.... +16:33:20 ============================================================================ +16:33:20 Slot Id : <73> +16:33:20 Transaction Type : REQUEST +16:33:20 Received From : +16:33:20 ============================================================================ +16:33:20 FNo. Len. Field Value +16:33:20 ============================================================================ +16:33:20 [ 1] [ 4] [0200] +16:33:20 [ 2] [ 16] [6213544002113246] +16:33:20 [ 3] [ 6] [010000] +16:33:20 [ 4] [ 12] [000047000000] +16:33:20 [ 7] [ 10] [0320163110] +16:33:20 [ 11] [ 6] [951882] +16:33:20 [ 12] [ 6] [163110] +16:33:20 [ 13] [ 4] [0320] +16:33:20 [ 15] [ 4] [0320] +16:33:20 [ 18] [ 4] [6011] +16:33:20 [ 19] [ 3] [418] +16:33:20 [ 22] [ 3] [021] +16:33:20 [ 25] [ 2] [01] +16:33:20 [ 28] [ 9] [D00002000] +16:33:20 [ 32] [ 6] [668899] +16:33:20 [ 35] [ 32] [6213544002113246=491212011324604] +16:33:20 [ 37] [ 12] [507902025602] +16:33:20 [ 41] [ 8] [03414002] +16:33:20 [ 42] [ 15] [APT ] +16:33:20 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:33:20 [ 49] [ 3] [418] +16:33:20 [ 52] [ 16] [52B52E51D3E373FE] +16:33:20 ============================================================================ +16:33:20 + + +waiting on router queue for slot.... +16:33:20 Sending to : +16:33:20 ============================================================================ +16:33:20 Sending to : +16:33:20 ============================================================================ +16:33:20 ============================================================================ +16:33:20 Slot Id : <41> +16:33:20 Transaction Type : REQUEST +16:33:20 Received From : +16:33:20 ============================================================================ +16:33:20 FNo. Len. Field Value +16:33:20 ============================================================================ +16:33:20 [ 1] [ 4] [0200] +16:33:20 [ 2] [ 16] [6688990103265300] +16:33:20 [ 3] [ 6] [010000] +16:33:20 [ 4] [ 12] [000100000000] +16:33:20 [ 7] [ 10] [0320163316] +16:33:20 [ 11] [ 6] [800770] +16:33:20 [ 12] [ 6] [163316] +16:33:20 [ 13] [ 4] [0320] +16:33:20 [ 15] [ 4] [0320] +16:33:20 [ 18] [ 4] [6011] +16:33:20 [ 22] [ 3] [900] +16:33:20 [ 25] [ 2] [02] +16:33:20 [ 28] [ 9] [D00002000] +16:33:20 [ 32] [ 6] [621354] +16:33:20 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:33:20 [ 37] [ 12] [507903499604] +16:33:20 [ 41] [ 8] [06002200] +16:33:20 [ 42] [ 15] [NATIVE ] +16:33:20 [ 43] [ 40] [Beng Market Beng LAO] +16:33:20 [ 49] [ 3] [418] +16:33:20 [ 52] [ 16] [FD87B19E17EF8EDB] +16:33:20 ============================================================================ +16:33:20 + + +waiting on router queue for slot.... +16:33:20 Sending to : +16:33:20 ============================================================================ +16:33:20 Sending to : +16:33:20 ============================================================================ +16:33:21 ============================================================================ +16:33:21 Slot Id : <73> +16:33:21 Transaction Type : REQUEST +16:33:21 Received From : +16:33:21 ============================================================================ +16:33:21 FNo. Len. Field Value +16:33:21 ============================================================================ +16:33:21 [ 1] [ 4] [0200] +16:33:21 [ 2] [ 16] [6213544002113246] +16:33:21 [ 3] [ 6] [010000] +16:33:21 [ 4] [ 12] [000047000000] +16:33:21 [ 7] [ 10] [0320163110] +16:33:21 [ 11] [ 6] [951882] +16:33:21 [ 12] [ 6] [163110] +16:33:21 [ 13] [ 4] [0320] +16:33:21 [ 15] [ 4] [0320] +16:33:21 [ 18] [ 4] [6011] +16:33:21 [ 19] [ 3] [418] +16:33:21 [ 22] [ 3] [021] +16:33:21 [ 25] [ 2] [01] +16:33:21 [ 28] [ 9] [D00002000] +16:33:21 [ 32] [ 6] [668899] +16:33:21 [ 35] [ 32] [6213544002113246=491212011324604] +16:33:21 [ 37] [ 12] [507902025602] +16:33:21 [ 41] [ 8] [03414002] +16:33:21 [ 42] [ 15] [APT ] +16:33:21 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:33:21 [ 49] [ 3] [418] +16:33:21 [ 52] [ 16] [52B52E51D3E373FE] +16:33:21 ============================================================================ +16:33:21 + + +waiting on router queue for slot.... +16:33:21 Sending to : +16:33:21 ============================================================================ +16:33:21 ============================================================================ +16:33:21 Slot Id : <73> +16:33:21 Transaction Type : REQUEST +16:33:21 Received From : +16:33:21 ============================================================================ +16:33:21 FNo. Len. Field Value +16:33:21 ============================================================================ +16:33:21 [ 1] [ 4] [0200] +16:33:21 [ 2] [ 16] [6213544002113246] +16:33:21 [ 3] [ 6] [010000] +16:33:21 [ 4] [ 12] [000047000000] +16:33:21 [ 7] [ 10] [0320163110] +16:33:21 [ 11] [ 6] [951882] +16:33:21 [ 12] [ 6] [163110] +16:33:21 [ 13] [ 4] [0320] +16:33:21 [ 15] [ 4] [0320] +16:33:21 [ 18] [ 4] [6011] +16:33:21 [ 19] [ 3] [418] +16:33:21 [ 22] [ 3] [021] +16:33:21 [ 25] [ 2] [01] +16:33:21 [ 28] [ 9] [D00002000] +16:33:21 [ 32] [ 6] [668899] +16:33:21 [ 35] [ 32] [6213544002113246=491212011324604] +16:33:21 [ 37] [ 12] [507902025602] +16:33:21 [ 41] [ 8] [03414002] +16:33:21 [ 42] [ 15] [APT ] +16:33:21 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:33:21 [ 49] [ 3] [418] +16:33:21 [ 52] [ 16] [2D34D9C502374718] +16:33:21 ============================================================================ +16:33:21 + + +waiting on router queue for slot.... +16:33:21 Sending to : <0> +16:33:21 ============================================================================ +16:33:21 ============================================================================ +16:33:21 Slot Id : <41> +16:33:21 Transaction Type : REQUEST +16:33:21 Received From : +16:33:21 ============================================================================ +16:33:21 FNo. Len. Field Value +16:33:21 ============================================================================ +16:33:21 [ 1] [ 4] [0200] +16:33:21 [ 2] [ 16] [6688990103265300] +16:33:21 [ 3] [ 6] [010000] +16:33:21 [ 4] [ 12] [000100000000] +16:33:21 [ 7] [ 10] [0320163316] +16:33:21 [ 11] [ 6] [800770] +16:33:21 [ 12] [ 6] [163316] +16:33:21 [ 13] [ 4] [0320] +16:33:21 [ 15] [ 4] [0320] +16:33:21 [ 18] [ 4] [6011] +16:33:21 [ 22] [ 3] [900] +16:33:21 [ 25] [ 2] [02] +16:33:21 [ 28] [ 9] [D00002000] +16:33:21 [ 32] [ 6] [621354] +16:33:21 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:33:21 [ 37] [ 12] [507903499604] +16:33:21 [ 41] [ 8] [06002200] +16:33:21 [ 42] [ 15] [NATIVE ] +16:33:21 [ 43] [ 40] [Beng Market Beng LAO] +16:33:21 [ 49] [ 3] [418] +16:33:21 [ 52] [ 16] [FD87B19E17EF8EDB] +16:33:21 ============================================================================ +16:33:21 + + +waiting on router queue for slot.... +16:33:21 Sending to : +16:33:21 ============================================================================ +16:33:21 ============================================================================ +16:33:21 Slot Id : <41> +16:33:21 Transaction Type : REQUEST +16:33:21 Received From : +16:33:21 ============================================================================ +16:33:21 FNo. Len. Field Value +16:33:21 ============================================================================ +16:33:21 [ 1] [ 4] [0200] +16:33:21 [ 2] [ 16] [6688990103265300] +16:33:21 [ 3] [ 6] [010000] +16:33:21 [ 4] [ 12] [000100000000] +16:33:21 [ 7] [ 10] [0320163316] +16:33:21 [ 11] [ 6] [800770] +16:33:21 [ 12] [ 6] [163316] +16:33:21 [ 13] [ 4] [0320] +16:33:21 [ 15] [ 4] [0320] +16:33:21 [ 18] [ 4] [6011] +16:33:21 [ 22] [ 3] [900] +16:33:21 [ 25] [ 2] [02] +16:33:21 [ 28] [ 9] [D00002000] +16:33:21 [ 32] [ 6] [621354] +16:33:21 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:33:21 [ 37] [ 12] [507903499604] +16:33:21 [ 41] [ 8] [06002200] +16:33:21 [ 42] [ 15] [NATIVE ] +16:33:21 [ 43] [ 40] [Beng Market Beng LAO] +16:33:21 [ 49] [ 3] [418] +16:33:21 [ 52] [ 16] [8F3D830A0CF3943E] +16:33:21 ============================================================================ +16:33:21 + + +waiting on router queue for slot.... +16:33:21 Sending to : <4> +16:33:21 ============================================================================ +16:33:21 ============================================================================ +16:33:21 Slot Id : <73> +16:33:21 Transaction Type : RESPONSE +16:33:21 Received From : +16:33:21 ============================================================================ +16:33:21 FNo. Len. Field Value +16:33:21 ============================================================================ +16:33:21 [ 1] [ 4] [0210] +16:33:21 [ 2] [ 16] [6213544002113246] +16:33:21 [ 3] [ 6] [010000] +16:33:21 [ 4] [ 12] [000047000000] +16:33:21 [ 7] [ 10] [0320163110] +16:33:21 [ 11] [ 6] [951882] +16:33:21 [ 12] [ 6] [163110] +16:33:21 [ 13] [ 4] [0320] +16:33:21 [ 15] [ 4] [0320] +16:33:21 [ 18] [ 4] [6011] +16:33:21 [ 19] [ 3] [418] +16:33:21 [ 32] [ 6] [668899] +16:33:21 [ 35] [ 32] [6213544002113246=491212011324604] +16:33:21 [ 37] [ 12] [507902025602] +16:33:21 [ 38] [ 6] [142554] +16:33:21 [ 39] [ 2] [00] +16:33:21 [ 41] [ 8] [03414002] +16:33:21 [ 49] [ 3] [418] +16:33:21 [ 54] [ 40] [0001418C0000058052910002418C000005805291] +16:33:21 ============================================================================ +16:33:21 Sending to : +16:33:21 ============================================================================ +16:33:21 + + +waiting on router queue for slot.... +16:33:22 ============================================================================ +16:33:22 Slot Id : <68> +16:33:22 Transaction Type : RESPONSE +16:33:22 Received From : +16:33:22 ============================================================================ +16:33:22 FNo. Len. Field Value +16:33:22 ============================================================================ +16:33:22 [ 1] [ 4] [0210] +16:33:22 [ 2] [ 16] [6688990102217500] +16:33:22 [ 3] [ 6] [010000] +16:33:22 [ 4] [ 12] [000010000000] +16:33:22 [ 7] [ 10] [0320093223] +16:33:22 [ 11] [ 6] [270493] +16:33:22 [ 12] [ 6] [163223] +16:33:22 [ 13] [ 4] [0320] +16:33:22 [ 15] [ 4] [0320] +16:33:22 [ 18] [ 4] [6011] +16:33:22 [ 19] [ 3] [418] +16:33:22 [ 22] [ 3] [021] +16:33:22 [ 32] [ 6] [180893] +16:33:22 [ 35] [ 37] [6688990102217500=42071231750087200000] +16:33:22 [ 37] [ 12] [507909270493] +16:33:22 [ 39] [ 2] [14] +16:33:22 [ 41] [ 8] [0261PSL1] +16:33:22 [ 49] [ 3] [418] +16:33:22 ============================================================================ +16:33:22 Calculate Source COMM Id = 2 +16:33:22 ============================================================================ +16:33:22 + + +waiting on router queue for slot.... +16:33:22 ============================================================================ +16:33:22 Slot Id : <41> +16:33:22 Transaction Type : RESPONSE +16:33:22 Received From : +16:33:22 ============================================================================ +16:33:22 FNo. Len. Field Value +16:33:22 ============================================================================ +16:33:22 [ 1] [ 4] [0210] +16:33:22 [ 2] [ 16] [6688990103265300] +16:33:22 [ 3] [ 6] [010000] +16:33:22 [ 4] [ 12] [000100000000] +16:33:22 [ 11] [ 6] [800770] +16:33:22 [ 12] [ 6] [163316] +16:33:22 [ 15] [ 4] [0320] +16:33:22 [ 18] [ 4] [6011] +16:33:22 [ 32] [ 6] [621354] +16:33:22 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:33:22 [ 37] [ 12] [507903499604] +16:33:22 [ 38] [ 6] [172323] +16:33:22 [ 39] [ 2] [00] +16:33:22 [ 41] [ 8] [06002200] +16:33:22 [ 49] [ 3] [418] +16:33:22 [ 54] [ 20] [0002418C000105809050] +16:33:22 ============================================================================ +16:33:22 Sending to : +16:33:22 ============================================================================ +16:33:22 + + +waiting on router queue for slot.... +16:33:22 ============================================================================ +16:33:22 Slot Id : <73> +16:33:22 Transaction Type : RESPONSE +16:33:22 Received From : +16:33:22 ============================================================================ +16:33:22 FNo. Len. Field Value +16:33:22 ============================================================================ +16:33:22 [ 1] [ 4] [0210] +16:33:22 [ 2] [ 16] [6213544002113246] +16:33:22 [ 3] [ 6] [010000] +16:33:22 [ 4] [ 12] [000047000000] +16:33:22 [ 7] [ 10] [0320163110] +16:33:22 [ 11] [ 6] [951882] +16:33:22 [ 12] [ 6] [163110] +16:33:22 [ 13] [ 4] [0320] +16:33:22 [ 15] [ 4] [0320] +16:33:22 [ 18] [ 4] [6011] +16:33:22 [ 19] [ 3] [418] +16:33:22 [ 32] [ 6] [668899] +16:33:22 [ 35] [ 32] [6213544002113246=491212011324604] +16:33:22 [ 37] [ 12] [507902025602] +16:33:22 [ 38] [ 6] [142554] +16:33:22 [ 39] [ 2] [00] +16:33:22 [ 41] [ 8] [03414002] +16:33:22 [ 49] [ 3] [418] +16:33:22 [ 54] [ 40] [0001418C0000058052910002418C000005805291] +16:33:22 ============================================================================ +16:33:22 Calculate Source COMM Id = 4 +16:33:22 ============================================================================ +16:33:22 + + +waiting on router queue for slot.... +16:33:24 ============================================================================ +16:33:24 Slot Id : <41> +16:33:24 Transaction Type : RESPONSE +16:33:24 Received From : +16:33:24 ============================================================================ +16:33:24 FNo. Len. Field Value +16:33:24 ============================================================================ +16:33:24 [ 1] [ 4] [0210] +16:33:24 [ 2] [ 16] [6688990103265300] +16:33:24 [ 3] [ 6] [010000] +16:33:24 [ 4] [ 12] [000100000000] +16:33:24 [ 11] [ 6] [800770] +16:33:24 [ 12] [ 6] [163316] +16:33:24 [ 15] [ 4] [0320] +16:33:24 [ 18] [ 4] [6011] +16:33:24 [ 32] [ 6] [621354] +16:33:24 [ 35] [ 37] [6688990103265300=42121231530047000000] +16:33:24 [ 37] [ 12] [507903499604] +16:33:24 [ 38] [ 6] [172323] +16:33:24 [ 39] [ 2] [00] +16:33:24 [ 41] [ 8] [06002200] +16:33:24 [ 49] [ 3] [418] +16:33:24 [ 54] [ 20] [0002418C000105809050] +16:33:24 ============================================================================ +16:33:24 Calculate Source COMM Id = 0 +16:33:24 ============================================================================ +16:33:24 + + +waiting on router queue for slot.... +16:33:24 ============================================================================ +16:33:24 Slot Id : <464> +16:33:24 Transaction Type : REQUEST +16:33:24 Received From : +16:33:24 ============================================================================ +16:33:24 FNo. Len. Field Value +16:33:24 ============================================================================ +16:33:24 [ 1] [ 4] [0200] +16:33:24 [ 2] [ 16] [6688990602685206] +16:33:24 [ 3] [ 6] [012000] +16:33:24 [ 4] [ 12] [000020000000] +16:33:24 [ 7] [ 10] [0320093230] +16:33:24 [ 11] [ 6] [270495] +16:33:24 [ 12] [ 6] [163230] +16:33:24 [ 13] [ 4] [0320] +16:33:24 [ 14] [ 4] [4310] +16:33:24 [ 15] [ 4] [0320] +16:33:24 [ 18] [ 4] [6011] +16:33:24 [ 19] [ 3] [418] +16:33:24 [ 22] [ 3] [021] +16:33:24 [ 25] [ 2] [01] +16:33:24 [ 28] [ 9] [D00002000] +16:33:24 [ 32] [ 6] [180893] +16:33:24 [ 35] [ 37] [6688990602685206=43100061520607900000] +16:33:24 [ 37] [ 12] [507909270495] +16:33:24 [ 41] [ 8] [0369SLVL] +16:33:24 [ 42] [ 15] [999999 ] +16:33:24 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:33:24 [ 49] [ 3] [418] +16:33:24 [ 52] [ 16] [289612237F9F1BB3] +16:33:24 ============================================================================ +16:33:24 + + +waiting on router queue for slot.... +16:33:24 Sending to : +16:33:24 ============================================================================ +16:33:24 Sending to : +16:33:24 ============================================================================ +16:33:24 ============================================================================ +16:33:24 Slot Id : <464> +16:33:24 Transaction Type : REQUEST +16:33:24 Received From : +16:33:24 ============================================================================ +16:33:24 FNo. Len. Field Value +16:33:24 ============================================================================ +16:33:24 [ 1] [ 4] [0200] +16:33:24 [ 2] [ 16] [6688990602685206] +16:33:24 [ 3] [ 6] [012000] +16:33:24 [ 4] [ 12] [000020000000] +16:33:24 [ 7] [ 10] [0320093230] +16:33:24 [ 11] [ 6] [270495] +16:33:24 [ 12] [ 6] [163230] +16:33:24 [ 13] [ 4] [0320] +16:33:24 [ 14] [ 4] [4310] +16:33:24 [ 15] [ 4] [0320] +16:33:24 [ 18] [ 4] [6011] +16:33:24 [ 19] [ 3] [418] +16:33:24 [ 22] [ 3] [021] +16:33:24 [ 25] [ 2] [01] +16:33:24 [ 28] [ 9] [D00002000] +16:33:24 [ 32] [ 6] [180893] +16:33:24 [ 35] [ 37] [6688990602685206=43100061520607900000] +16:33:24 [ 37] [ 12] [507909270495] +16:33:24 [ 41] [ 8] [0369SLVL] +16:33:24 [ 42] [ 15] [999999 ] +16:33:24 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:33:24 [ 49] [ 3] [418] +16:33:24 [ 52] [ 16] [289612237F9F1BB3] +16:33:24 ============================================================================ +16:33:24 + + +waiting on router queue for slot.... +16:33:24 Sending to : +16:33:24 ============================================================================ +16:33:24 ============================================================================ +16:33:24 Slot Id : <464> +16:33:24 Transaction Type : REQUEST +16:33:24 Received From : +16:33:24 ============================================================================ +16:33:24 FNo. Len. Field Value +16:33:24 ============================================================================ +16:33:24 [ 1] [ 4] [0200] +16:33:24 [ 2] [ 16] [6688990602685206] +16:33:24 [ 3] [ 6] [012000] +16:33:24 [ 4] [ 12] [000020000000] +16:33:24 [ 7] [ 10] [0320093230] +16:33:24 [ 11] [ 6] [270495] +16:33:24 [ 12] [ 6] [163230] +16:33:24 [ 13] [ 4] [0320] +16:33:24 [ 14] [ 4] [4310] +16:33:24 [ 15] [ 4] [0320] +16:33:24 [ 18] [ 4] [6011] +16:33:24 [ 19] [ 3] [418] +16:33:24 [ 22] [ 3] [021] +16:33:24 [ 25] [ 2] [01] +16:33:24 [ 28] [ 9] [D00002000] +16:33:24 [ 32] [ 6] [180893] +16:33:24 [ 35] [ 37] [6688990602685206=43100061520607900000] +16:33:24 [ 37] [ 12] [507909270495] +16:33:24 [ 41] [ 8] [0369SLVL] +16:33:24 [ 42] [ 15] [999999 ] +16:33:24 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:33:24 [ 49] [ 3] [418] +16:33:24 [ 52] [ 16] [687BBB8D20617F77] +16:33:24 ============================================================================ +16:33:24 + + +waiting on router queue for slot.... +16:33:24 Sending to : <0> +16:33:24 ============================================================================ +16:33:25 ============================================================================ +16:33:25 Slot Id : <464> +16:33:25 Transaction Type : RESPONSE +16:33:25 Received From : +16:33:25 ============================================================================ +16:33:25 FNo. Len. Field Value +16:33:25 ============================================================================ +16:33:25 [ 1] [ 4] [0210] +16:33:25 [ 2] [ 16] [6688990602685206] +16:33:25 [ 3] [ 6] [012000] +16:33:25 [ 4] [ 12] [000020000000] +16:33:25 [ 7] [ 10] [0320093230] +16:33:25 [ 11] [ 6] [270495] +16:33:25 [ 12] [ 6] [163230] +16:33:25 [ 13] [ 4] [0320] +16:33:25 [ 15] [ 4] [0320] +16:33:25 [ 18] [ 4] [6011] +16:33:25 [ 19] [ 3] [418] +16:33:25 [ 22] [ 3] [021] +16:33:25 [ 32] [ 6] [180893] +16:33:25 [ 35] [ 37] [6688990602685206=43100061520607900000] +16:33:25 [ 37] [ 12] [507909270495] +16:33:25 [ 39] [ 2] [14] +16:33:25 [ 41] [ 8] [0369SLVL] +16:33:25 [ 49] [ 3] [418] +16:33:25 ============================================================================ +16:33:25 Sending to : +16:33:25 ============================================================================ +16:33:25 + + +waiting on router queue for slot.... +16:33:26 ============================================================================ +16:33:26 Slot Id : <464> +16:33:26 Transaction Type : RESPONSE +16:33:26 Received From : +16:33:26 ============================================================================ +16:33:26 FNo. Len. Field Value +16:33:26 ============================================================================ +16:33:26 [ 1] [ 4] [0210] +16:33:26 [ 2] [ 16] [6688990602685206] +16:33:26 [ 3] [ 6] [012000] +16:33:26 [ 4] [ 12] [000020000000] +16:33:26 [ 7] [ 10] [0320093230] +16:33:26 [ 11] [ 6] [270495] +16:33:26 [ 12] [ 6] [163230] +16:33:26 [ 13] [ 4] [0320] +16:33:26 [ 15] [ 4] [0320] +16:33:26 [ 18] [ 4] [6011] +16:33:26 [ 19] [ 3] [418] +16:33:26 [ 22] [ 3] [021] +16:33:26 [ 32] [ 6] [180893] +16:33:26 [ 35] [ 37] [6688990602685206=43100061520607900000] +16:33:26 [ 37] [ 12] [507909270495] +16:33:26 [ 39] [ 2] [14] +16:33:26 [ 41] [ 8] [0369SLVL] +16:33:26 [ 49] [ 3] [418] +16:33:26 ============================================================================ +16:33:26 Calculate Source COMM Id = 2 +16:33:26 ============================================================================ +16:33:26 + + +waiting on router queue for slot.... +16:33:34 ============================================================================ +16:33:34 Slot Id : <32> +16:33:34 Transaction Type : REQUEST +16:33:34 Received From : +16:33:34 ============================================================================ +16:33:34 FNo. Len. Field Value +16:33:34 ============================================================================ +16:33:34 [ 1] [ 4] [0200] +16:33:34 [ 2] [ 16] [6213543000129998] +16:33:34 [ 3] [ 6] [010000] +16:33:34 [ 4] [ 12] [000100000000] +16:33:34 [ 7] [ 10] [0320163124] +16:33:34 [ 11] [ 6] [951888] +16:33:34 [ 12] [ 6] [163124] +16:33:34 [ 13] [ 4] [0320] +16:33:34 [ 15] [ 4] [0320] +16:33:34 [ 18] [ 4] [6011] +16:33:34 [ 19] [ 3] [418] +16:33:34 [ 22] [ 3] [021] +16:33:34 [ 25] [ 2] [01] +16:33:34 [ 28] [ 9] [D00002000] +16:33:34 [ 32] [ 6] [668899] +16:33:34 [ 35] [ 32] [6213543000129998=491212012999246] +16:33:34 [ 37] [ 12] [507902565295] +16:33:34 [ 41] [ 8] [03001014] +16:33:34 [ 42] [ 15] [APT ] +16:33:34 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +16:33:34 [ 49] [ 3] [418] +16:33:34 [ 52] [ 16] [2F776737BC166291] +16:33:34 ============================================================================ +16:33:34 + + +waiting on router queue for slot.... +16:33:34 Sending to : +16:33:34 ============================================================================ +16:33:34 Sending to : +16:33:34 ============================================================================ +16:33:35 ============================================================================ +16:33:35 Slot Id : <32> +16:33:35 Transaction Type : REQUEST +16:33:35 Received From : +16:33:35 ============================================================================ +16:33:35 FNo. Len. Field Value +16:33:35 ============================================================================ +16:33:35 [ 1] [ 4] [0200] +16:33:35 [ 2] [ 16] [6213543000129998] +16:33:35 [ 3] [ 6] [010000] +16:33:35 [ 4] [ 12] [000100000000] +16:33:35 [ 7] [ 10] [0320163124] +16:33:35 [ 11] [ 6] [951888] +16:33:35 [ 12] [ 6] [163124] +16:33:35 [ 13] [ 4] [0320] +16:33:35 [ 15] [ 4] [0320] +16:33:35 [ 18] [ 4] [6011] +16:33:35 [ 19] [ 3] [418] +16:33:35 [ 22] [ 3] [021] +16:33:35 [ 25] [ 2] [01] +16:33:35 [ 28] [ 9] [D00002000] +16:33:35 [ 32] [ 6] [668899] +16:33:35 [ 35] [ 32] [6213543000129998=491212012999246] +16:33:35 [ 37] [ 12] [507902565295] +16:33:35 [ 41] [ 8] [03001014] +16:33:35 [ 42] [ 15] [APT ] +16:33:35 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +16:33:35 [ 49] [ 3] [418] +16:33:35 [ 52] [ 16] [2F776737BC166291] +16:33:35 ============================================================================ +16:33:35 + + +waiting on router queue for slot.... +16:33:35 Sending to : +16:33:35 ============================================================================ +16:33:35 ============================================================================ +16:33:35 Slot Id : <32> +16:33:35 Transaction Type : REQUEST +16:33:35 Received From : +16:33:35 ============================================================================ +16:33:35 FNo. Len. Field Value +16:33:35 ============================================================================ +16:33:35 [ 1] [ 4] [0200] +16:33:35 [ 2] [ 16] [6213543000129998] +16:33:35 [ 3] [ 6] [010000] +16:33:35 [ 4] [ 12] [000100000000] +16:33:35 [ 7] [ 10] [0320163124] +16:33:35 [ 11] [ 6] [951888] +16:33:35 [ 12] [ 6] [163124] +16:33:35 [ 13] [ 4] [0320] +16:33:35 [ 15] [ 4] [0320] +16:33:35 [ 18] [ 4] [6011] +16:33:35 [ 19] [ 3] [418] +16:33:35 [ 22] [ 3] [021] +16:33:35 [ 25] [ 2] [01] +16:33:35 [ 28] [ 9] [D00002000] +16:33:35 [ 32] [ 6] [668899] +16:33:35 [ 35] [ 32] [6213543000129998=491212012999246] +16:33:35 [ 37] [ 12] [507902565295] +16:33:35 [ 41] [ 8] [03001014] +16:33:35 [ 42] [ 15] [APT ] +16:33:35 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +16:33:35 [ 49] [ 3] [418] +16:33:35 [ 52] [ 16] [1120D5C74863386E] +16:33:35 ============================================================================ +16:33:35 + + +waiting on router queue for slot.... +16:33:35 Sending to : <0> +16:33:35 ============================================================================ +16:33:35 ============================================================================ +16:33:35 Slot Id : <32> +16:33:35 Transaction Type : RESPONSE +16:33:35 Received From : +16:33:35 ============================================================================ +16:33:35 FNo. Len. Field Value +16:33:35 ============================================================================ +16:33:35 [ 1] [ 4] [0210] +16:33:35 [ 2] [ 16] [6213543000129998] +16:33:35 [ 3] [ 6] [010000] +16:33:35 [ 4] [ 12] [000100000000] +16:33:35 [ 7] [ 10] [0320163124] +16:33:35 [ 11] [ 6] [951888] +16:33:35 [ 12] [ 6] [163124] +16:33:35 [ 13] [ 4] [0320] +16:33:35 [ 15] [ 4] [0320] +16:33:35 [ 18] [ 4] [6011] +16:33:35 [ 19] [ 3] [418] +16:33:35 [ 32] [ 6] [668899] +16:33:35 [ 35] [ 32] [6213543000129998=491212012999246] +16:33:35 [ 37] [ 12] [507902565295] +16:33:35 [ 38] [ 6] [951888] +16:33:35 [ 39] [ 2] [51] +16:33:35 [ 41] [ 8] [03001014] +16:33:35 [ 49] [ 3] [418] +16:33:35 [ 54] [ 40] [0001418C0000158486640002418C000015848664] +16:33:35 ============================================================================ +16:33:35 Sending to : +16:33:35 ============================================================================ +16:33:35 + + +waiting on router queue for slot.... +16:33:36 ============================================================================ +16:33:36 Slot Id : <32> +16:33:36 Transaction Type : RESPONSE +16:33:36 Received From : +16:33:36 ============================================================================ +16:33:36 FNo. Len. Field Value +16:33:36 ============================================================================ +16:33:36 [ 1] [ 4] [0210] +16:33:36 [ 2] [ 16] [6213543000129998] +16:33:36 [ 3] [ 6] [010000] +16:33:36 [ 4] [ 12] [000100000000] +16:33:36 [ 7] [ 10] [0320163124] +16:33:36 [ 11] [ 6] [951888] +16:33:36 [ 12] [ 6] [163124] +16:33:36 [ 13] [ 4] [0320] +16:33:36 [ 15] [ 4] [0320] +16:33:36 [ 18] [ 4] [6011] +16:33:36 [ 19] [ 3] [418] +16:33:36 [ 32] [ 6] [668899] +16:33:36 [ 35] [ 32] [6213543000129998=491212012999246] +16:33:36 [ 37] [ 12] [507902565295] +16:33:36 [ 38] [ 6] [951888] +16:33:36 [ 39] [ 2] [51] +16:33:36 [ 41] [ 8] [03001014] +16:33:36 [ 49] [ 3] [418] +16:33:36 [ 54] [ 40] [0001418C0000158486640002418C000015848664] +16:33:36 ============================================================================ +16:33:36 Calculate Source COMM Id = 4 +16:33:36 ============================================================================ +16:33:36 + + +waiting on router queue for slot.... +16:33:37 ============================================================================ +16:33:37 Slot Id : <26> +16:33:37 Transaction Type : REQUEST +16:33:37 Received From : +16:33:37 ============================================================================ +16:33:37 FNo. Len. Field Value +16:33:37 ============================================================================ +16:33:37 [ 1] [ 4] [0200] +16:33:37 [ 2] [ 16] [6688990103084008] +16:33:37 [ 3] [ 6] [011000] +16:33:37 [ 4] [ 12] [000070000000] +16:33:37 [ 7] [ 10] [0320163332] +16:33:37 [ 11] [ 6] [800844] +16:33:37 [ 12] [ 6] [163332] +16:33:37 [ 13] [ 4] [0320] +16:33:37 [ 15] [ 4] [0320] +16:33:37 [ 18] [ 4] [6011] +16:33:37 [ 22] [ 3] [900] +16:33:37 [ 25] [ 2] [02] +16:33:37 [ 28] [ 9] [D00002000] +16:33:37 [ 32] [ 6] [621354] +16:33:37 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:33:37 [ 37] [ 12] [507904719794] +16:33:37 [ 41] [ 8] [18001000] +16:33:37 [ 42] [ 15] [NATIVE ] +16:33:37 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:33:37 [ 49] [ 3] [418] +16:33:37 [ 52] [ 16] [855D858B5CAE4147] +16:33:37 ============================================================================ +16:33:37 + + +waiting on router queue for slot.... +16:33:37 Sending to : +16:33:37 ============================================================================ +16:33:37 Sending to : +16:33:37 ============================================================================ +16:33:37 ============================================================================ +16:33:37 Slot Id : <26> +16:33:37 Transaction Type : REQUEST +16:33:37 Received From : +16:33:37 ============================================================================ +16:33:37 FNo. Len. Field Value +16:33:37 ============================================================================ +16:33:37 [ 1] [ 4] [0200] +16:33:37 [ 2] [ 16] [6688990103084008] +16:33:37 [ 3] [ 6] [011000] +16:33:37 [ 4] [ 12] [000070000000] +16:33:37 [ 7] [ 10] [0320163332] +16:33:37 [ 11] [ 6] [800844] +16:33:37 [ 12] [ 6] [163332] +16:33:37 [ 13] [ 4] [0320] +16:33:37 [ 15] [ 4] [0320] +16:33:37 [ 18] [ 4] [6011] +16:33:37 [ 22] [ 3] [900] +16:33:37 [ 25] [ 2] [02] +16:33:37 [ 28] [ 9] [D00002000] +16:33:37 [ 32] [ 6] [621354] +16:33:37 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:33:37 [ 37] [ 12] [507904719794] +16:33:37 [ 41] [ 8] [18001000] +16:33:37 [ 42] [ 15] [NATIVE ] +16:33:37 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:33:37 [ 49] [ 3] [418] +16:33:37 [ 52] [ 16] [855D858B5CAE4147] +16:33:37 ============================================================================ +16:33:37 + + +waiting on router queue for slot.... +16:33:37 Sending to : +16:33:37 ============================================================================ +16:33:37 ============================================================================ +16:33:37 Slot Id : <26> +16:33:37 Transaction Type : REQUEST +16:33:37 Received From : +16:33:37 ============================================================================ +16:33:37 FNo. Len. Field Value +16:33:37 ============================================================================ +16:33:37 [ 1] [ 4] [0200] +16:33:37 [ 2] [ 16] [6688990103084008] +16:33:37 [ 3] [ 6] [011000] +16:33:37 [ 4] [ 12] [000070000000] +16:33:37 [ 7] [ 10] [0320163332] +16:33:37 [ 11] [ 6] [800844] +16:33:37 [ 12] [ 6] [163332] +16:33:37 [ 13] [ 4] [0320] +16:33:37 [ 15] [ 4] [0320] +16:33:37 [ 18] [ 4] [6011] +16:33:37 [ 22] [ 3] [900] +16:33:37 [ 25] [ 2] [02] +16:33:37 [ 28] [ 9] [D00002000] +16:33:37 [ 32] [ 6] [621354] +16:33:37 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:33:37 [ 37] [ 12] [507904719794] +16:33:37 [ 41] [ 8] [18001000] +16:33:37 [ 42] [ 15] [NATIVE ] +16:33:37 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:33:37 [ 49] [ 3] [418] +16:33:37 [ 52] [ 16] [BCCE8F7AD8113D4A] +16:33:37 ============================================================================ +16:33:37 + + +waiting on router queue for slot.... +16:33:37 Sending to : <4> +16:33:37 ============================================================================ +16:33:39 ============================================================================ +16:33:39 Slot Id : <26> +16:33:39 Transaction Type : RESPONSE +16:33:39 Received From : +16:33:39 ============================================================================ +16:33:39 FNo. Len. Field Value +16:33:39 ============================================================================ +16:33:39 [ 1] [ 4] [0210] +16:33:39 [ 2] [ 16] [6688990103084008] +16:33:39 [ 3] [ 6] [011000] +16:33:39 [ 4] [ 12] [000070000000] +16:33:39 [ 11] [ 6] [800844] +16:33:39 [ 12] [ 6] [163332] +16:33:39 [ 15] [ 4] [0320] +16:33:39 [ 18] [ 4] [6011] +16:33:39 [ 32] [ 6] [621354] +16:33:39 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:33:39 [ 37] [ 12] [507904719794] +16:33:39 [ 38] [ 6] [785640] +16:33:39 [ 39] [ 2] [00] +16:33:39 [ 41] [ 8] [18001000] +16:33:39 [ 49] [ 3] [418] +16:33:39 [ 54] [ 20] [1002418C000011078766] +16:33:39 ============================================================================ +16:33:39 Sending to : +16:33:39 ============================================================================ +16:33:39 + + +waiting on router queue for slot.... +16:33:40 ============================================================================ +16:33:40 Slot Id : <26> +16:33:40 Transaction Type : RESPONSE +16:33:40 Received From : +16:33:40 ============================================================================ +16:33:40 FNo. Len. Field Value +16:33:40 ============================================================================ +16:33:40 [ 1] [ 4] [0210] +16:33:40 [ 2] [ 16] [6688990103084008] +16:33:40 [ 3] [ 6] [011000] +16:33:40 [ 4] [ 12] [000070000000] +16:33:40 [ 11] [ 6] [800844] +16:33:40 [ 12] [ 6] [163332] +16:33:40 [ 15] [ 4] [0320] +16:33:40 [ 18] [ 4] [6011] +16:33:40 [ 32] [ 6] [621354] +16:33:40 [ 35] [ 37] [6688990103084008=42121231400857300000] +16:33:40 [ 37] [ 12] [507904719794] +16:33:40 [ 38] [ 6] [785640] +16:33:40 [ 39] [ 2] [00] +16:33:40 [ 41] [ 8] [18001000] +16:33:40 [ 49] [ 3] [418] +16:33:40 [ 54] [ 20] [1002418C000011078766] +16:33:40 ============================================================================ +16:33:40 Calculate Source COMM Id = 0 +16:33:40 ============================================================================ +16:33:40 + + +waiting on router queue for slot.... +16:33:41 ============================================================================ +16:33:41 Slot Id : <20> +16:33:41 Transaction Type : REQUEST +16:33:41 Received From : +16:33:41 ============================================================================ +16:33:41 FNo. Len. Field Value +16:33:41 ============================================================================ +16:33:41 [ 1] [ 4] [0800] +16:33:41 [ 2] [ 5] [02531] +16:33:41 [ 3] [ 6] [579168] +16:33:41 [ 7] [ 10] [0320093341] +16:33:41 [ 11] [ 6] [807373] +16:33:41 [ 15] [ 10] [0320093341] +16:33:41 [ 37] [ 11] [57916807373] +16:33:41 [ 70] [ 3] [001] +16:33:41 ============================================================================ +16:33:41 + + +waiting on router queue for slot.... +16:33:41 ============================================================================ +16:33:41 Slot Id : <20> +16:33:41 Transaction Type : RESPONSE +16:33:41 Received From : +16:33:41 ============================================================================ +16:33:41 FNo. Len. Field Value +16:33:41 ============================================================================ +16:33:41 [ 1] [ 4] [0810] +16:33:41 [ 7] [ 10] [0320093341] +16:33:41 [ 11] [ 6] [807373] +16:33:41 [ 15] [ 4] [0320] +16:33:41 [ 37] [ 12] [57916807373] +16:33:41 [ 39] [ 2] [00] +16:33:41 [ 70] [ 3] [001] +16:33:41 ============================================================================ +16:33:41 Sending to : +16:33:41 ============================================================================ +16:33:41 + + +waiting on router queue for slot.... +16:33:41 ============================================================================ +16:33:41 Slot Id : <487> +16:33:41 Transaction Type : REQUEST +16:33:41 Received From : +16:33:41 ============================================================================ +16:33:41 FNo. Len. Field Value +16:33:41 ============================================================================ +16:33:41 [ 1] [ 4] [0800] +16:33:41 [ 7] [ 10] [0320093248] +16:33:41 [ 11] [ 6] [157257] +16:33:41 [ 70] [ 3] [301] +16:33:41 ============================================================================ +16:33:41 + + +waiting on router queue for slot.... +16:33:41 Sending to : +16:33:41 ============================================================================ +16:33:41 ============================================================================ +16:33:41 Slot Id : <487> +16:33:41 Transaction Type : RESPONSE +16:33:41 Received From : +16:33:41 ============================================================================ +16:33:41 FNo. Len. Field Value +16:33:41 ============================================================================ +16:33:41 [ 1] [ 4] [0810] +16:33:41 [ 7] [ 10] [0320093248] +16:33:41 [ 11] [ 6] [157257] +16:33:41 [ 39] [ 2] [00] +16:33:41 [ 70] [ 3] [301] +16:33:41 ============================================================================ +16:33:41 Calculate Source COMM Id = 2 +16:33:41 ============================================================================ +16:33:41 + + +waiting on router queue for slot.... +16:33:49 ============================================================================ +16:33:49 Slot Id : <69> +16:33:49 Transaction Type : REQUEST +16:33:49 Received From : +16:33:49 ============================================================================ +16:33:49 FNo. Len. Field Value +16:33:49 ============================================================================ +16:33:49 [ 1] [ 4] [0200] +16:33:49 [ 2] [ 16] [1808931800005819] +16:33:49 [ 3] [ 6] [011000] +16:33:49 [ 4] [ 12] [000020000000] +16:33:49 [ 7] [ 10] [0320163344] +16:33:49 [ 11] [ 6] [800884] +16:33:49 [ 12] [ 6] [163344] +16:33:49 [ 13] [ 4] [0320] +16:33:49 [ 15] [ 4] [0320] +16:33:49 [ 18] [ 4] [6011] +16:33:49 [ 22] [ 3] [900] +16:33:49 [ 25] [ 2] [02] +16:33:49 [ 28] [ 9] [D00002000] +16:33:49 [ 32] [ 6] [621354] +16:33:49 [ 35] [ 27] [1808931800005819=1803500314] +16:33:49 [ 37] [ 12] [507904635879] +16:33:49 [ 41] [ 8] [17000800] +16:33:49 [ 42] [ 15] [NATIVE ] +16:33:49 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:33:49 [ 49] [ 3] [418] +16:33:49 [ 52] [ 16] [FB005D378095F13B] +16:33:49 ============================================================================ +16:33:49 + + +waiting on router queue for slot.... +16:33:49 Sending to : +16:33:49 ============================================================================ +16:33:49 Sending to : +16:33:49 ============================================================================ +16:33:49 ============================================================================ +16:33:49 Slot Id : <69> +16:33:49 Transaction Type : REQUEST +16:33:49 Received From : +16:33:49 ============================================================================ +16:33:49 FNo. Len. Field Value +16:33:49 ============================================================================ +16:33:49 [ 1] [ 4] [0200] +16:33:49 [ 2] [ 16] [1808931800005819] +16:33:49 [ 3] [ 6] [011000] +16:33:49 [ 4] [ 12] [000020000000] +16:33:49 [ 7] [ 10] [0320163344] +16:33:49 [ 11] [ 6] [800884] +16:33:49 [ 12] [ 6] [163344] +16:33:49 [ 13] [ 4] [0320] +16:33:49 [ 15] [ 4] [0320] +16:33:49 [ 18] [ 4] [6011] +16:33:49 [ 22] [ 3] [900] +16:33:49 [ 25] [ 2] [02] +16:33:49 [ 28] [ 9] [D00002000] +16:33:49 [ 32] [ 6] [621354] +16:33:49 [ 35] [ 27] [1808931800005819=1803500314] +16:33:49 [ 37] [ 12] [507904635879] +16:33:49 [ 41] [ 8] [17000800] +16:33:49 [ 42] [ 15] [NATIVE ] +16:33:49 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:33:49 [ 49] [ 3] [418] +16:33:49 [ 52] [ 16] [FB005D378095F13B] +16:33:49 ============================================================================ +16:33:49 + + +waiting on router queue for slot.... +16:33:49 Sending to : +16:33:49 ============================================================================ +16:33:49 ============================================================================ +16:33:49 Slot Id : <69> +16:33:49 Transaction Type : REQUEST +16:33:49 Received From : +16:33:49 ============================================================================ +16:33:49 FNo. Len. Field Value +16:33:49 ============================================================================ +16:33:49 [ 1] [ 4] [0200] +16:33:49 [ 2] [ 16] [1808931800005819] +16:33:49 [ 3] [ 6] [011000] +16:33:49 [ 4] [ 12] [000020000000] +16:33:49 [ 7] [ 10] [0320163344] +16:33:49 [ 11] [ 6] [800884] +16:33:49 [ 12] [ 6] [163344] +16:33:49 [ 13] [ 4] [0320] +16:33:49 [ 15] [ 4] [0320] +16:33:49 [ 18] [ 4] [6011] +16:33:49 [ 22] [ 3] [900] +16:33:49 [ 25] [ 2] [02] +16:33:49 [ 28] [ 9] [D00002000] +16:33:49 [ 32] [ 6] [621354] +16:33:49 [ 35] [ 27] [1808931800005819=1803500314] +16:33:49 [ 37] [ 12] [507904635879] +16:33:49 [ 41] [ 8] [17000800] +16:33:49 [ 42] [ 15] [NATIVE ] +16:33:49 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:33:49 [ 49] [ 3] [418] +16:33:49 [ 52] [ 16] [98BE394402CFEE30] +16:33:49 ============================================================================ +16:33:49 + + +waiting on router queue for slot.... +16:33:49 Sending to : <2> +16:33:49 ============================================================================ +16:33:50 ============================================================================ +16:33:50 Slot Id : <48> +16:33:50 Transaction Type : REQUEST +16:33:50 Received From : +16:33:50 ============================================================================ +16:33:50 FNo. Len. Field Value +16:33:50 ============================================================================ +16:33:50 [ 1] [ 4] [0200] +16:33:50 [ 2] [ 16] [6688990602557702] +16:33:50 [ 3] [ 6] [010000] +16:33:50 [ 4] [ 12] [000005000000] +16:33:50 [ 7] [ 10] [0320163345] +16:33:50 [ 11] [ 6] [800892] +16:33:50 [ 12] [ 6] [163345] +16:33:50 [ 13] [ 4] [0320] +16:33:50 [ 15] [ 4] [0320] +16:33:50 [ 18] [ 4] [6011] +16:33:50 [ 22] [ 3] [900] +16:33:50 [ 25] [ 2] [02] +16:33:50 [ 28] [ 9] [D00002000] +16:33:50 [ 32] [ 6] [621354] +16:33:50 [ 35] [ 37] [6688990602557702=43080061770239200000] +16:33:50 [ 37] [ 12] [507902546930] +16:33:50 [ 41] [ 8] [05003700] +16:33:50 [ 42] [ 15] [NATIVE ] +16:33:50 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +16:33:50 [ 49] [ 3] [418] +16:33:50 [ 52] [ 16] [1107AA189F5FB791] +16:33:50 ============================================================================ +16:33:50 + + +waiting on router queue for slot.... +16:33:50 Sending to : +16:33:50 ============================================================================ +16:33:50 Sending to : +16:33:50 ============================================================================ +16:33:50 ============================================================================ +16:33:50 Slot Id : <48> +16:33:50 Transaction Type : REQUEST +16:33:50 Received From : +16:33:50 ============================================================================ +16:33:50 FNo. Len. Field Value +16:33:50 ============================================================================ +16:33:50 [ 1] [ 4] [0200] +16:33:50 [ 2] [ 16] [6688990602557702] +16:33:50 [ 3] [ 6] [010000] +16:33:50 [ 4] [ 12] [000005000000] +16:33:50 [ 7] [ 10] [0320163345] +16:33:50 [ 11] [ 6] [800892] +16:33:50 [ 12] [ 6] [163345] +16:33:50 [ 13] [ 4] [0320] +16:33:50 [ 15] [ 4] [0320] +16:33:50 [ 18] [ 4] [6011] +16:33:50 [ 22] [ 3] [900] +16:33:50 [ 25] [ 2] [02] +16:33:50 [ 28] [ 9] [D00002000] +16:33:50 [ 32] [ 6] [621354] +16:33:50 [ 35] [ 37] [6688990602557702=43080061770239200000] +16:33:50 [ 37] [ 12] [507902546930] +16:33:50 [ 41] [ 8] [05003700] +16:33:50 [ 42] [ 15] [NATIVE ] +16:33:50 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +16:33:50 [ 49] [ 3] [418] +16:33:50 [ 52] [ 16] [1107AA189F5FB791] +16:33:50 ============================================================================ +16:33:50 + + +waiting on router queue for slot.... +16:33:50 Sending to : +16:33:50 ============================================================================ +16:33:50 ============================================================================ +16:33:50 Slot Id : <48> +16:33:50 Transaction Type : REQUEST +16:33:50 Received From : +16:33:50 ============================================================================ +16:33:50 FNo. Len. Field Value +16:33:50 ============================================================================ +16:33:50 [ 1] [ 4] [0200] +16:33:50 [ 2] [ 16] [6688990602557702] +16:33:50 [ 3] [ 6] [010000] +16:33:50 [ 4] [ 12] [000005000000] +16:33:50 [ 7] [ 10] [0320163345] +16:33:50 [ 11] [ 6] [800892] +16:33:50 [ 12] [ 6] [163345] +16:33:50 [ 13] [ 4] [0320] +16:33:50 [ 15] [ 4] [0320] +16:33:50 [ 18] [ 4] [6011] +16:33:50 [ 22] [ 3] [900] +16:33:50 [ 25] [ 2] [02] +16:33:50 [ 28] [ 9] [D00002000] +16:33:50 [ 32] [ 6] [621354] +16:33:50 [ 35] [ 37] [6688990602557702=43080061770239200000] +16:33:50 [ 37] [ 12] [507902546930] +16:33:50 [ 41] [ 8] [05003700] +16:33:50 [ 42] [ 15] [NATIVE ] +16:33:50 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +16:33:50 [ 49] [ 3] [418] +16:33:50 [ 52] [ 16] [602DADDFEC5BEF52] +16:33:50 ============================================================================ +16:33:50 + + +waiting on router queue for slot.... +16:33:50 Sending to : <4> +16:33:50 ============================================================================ +16:33:51 ============================================================================ +16:33:51 Slot Id : <46> +16:33:51 Transaction Type : REQUEST +16:33:51 Received From : +16:33:51 ============================================================================ +16:33:51 FNo. Len. Field Value +16:33:51 ============================================================================ +16:33:51 [ 1] [ 4] [0200] +16:33:51 [ 2] [ 16] [6213541000430515] +16:33:51 [ 3] [ 6] [011000] +16:33:51 [ 4] [ 12] [000070000000] +16:33:51 [ 7] [ 10] [0320164138] +16:33:51 [ 11] [ 6] [240859] +16:33:51 [ 12] [ 6] [164138] +16:33:51 [ 13] [ 4] [0320] +16:33:51 [ 14] [ 4] [4912] +16:33:51 [ 15] [ 4] [0320] +16:33:51 [ 18] [ 4] [6011] +16:33:51 [ 22] [ 3] [900] +16:33:51 [ 25] [ 2] [02] +16:33:51 [ 28] [ 9] [D00002000] +16:33:51 [ 32] [ 6] [220699] +16:33:51 [ 35] [ 32] [6213541000430515=491212013051111] +16:33:51 [ 37] [ 12] [507900410449] +16:33:51 [ 41] [ 8] [08000300] +16:33:51 [ 42] [ 15] [APTRA ] +16:33:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:33:51 [ 49] [ 3] [418] +16:33:51 [ 52] [ 16] [70F434AD685EF460] +16:33:51 ============================================================================ +16:33:51 + + +waiting on router queue for slot.... +16:33:51 Sending to : +16:33:51 ============================================================================ +16:33:51 Sending to : +16:33:51 ============================================================================ +16:33:51 ============================================================================ +16:33:51 Slot Id : <46> +16:33:51 Transaction Type : REQUEST +16:33:51 Received From : +16:33:51 ============================================================================ +16:33:51 FNo. Len. Field Value +16:33:51 ============================================================================ +16:33:51 [ 1] [ 4] [0200] +16:33:51 [ 2] [ 16] [6213541000430515] +16:33:51 [ 3] [ 6] [011000] +16:33:51 [ 4] [ 12] [000070000000] +16:33:51 [ 7] [ 10] [0320164138] +16:33:51 [ 11] [ 6] [240859] +16:33:51 [ 12] [ 6] [164138] +16:33:51 [ 13] [ 4] [0320] +16:33:51 [ 14] [ 4] [4912] +16:33:51 [ 15] [ 4] [0320] +16:33:51 [ 18] [ 4] [6011] +16:33:51 [ 22] [ 3] [900] +16:33:51 [ 25] [ 2] [02] +16:33:51 [ 28] [ 9] [D00002000] +16:33:51 [ 32] [ 6] [220699] +16:33:51 [ 35] [ 32] [6213541000430515=491212013051111] +16:33:51 [ 37] [ 12] [507900410449] +16:33:51 [ 41] [ 8] [08000300] +16:33:51 [ 42] [ 15] [APTRA ] +16:33:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:33:51 [ 49] [ 3] [418] +16:33:51 [ 52] [ 16] [70F434AD685EF460] +16:33:51 ============================================================================ +16:33:51 + + +waiting on router queue for slot.... +16:33:51 Sending to : +16:33:51 ============================================================================ +16:33:51 ============================================================================ +16:33:51 Slot Id : <46> +16:33:51 Transaction Type : REQUEST +16:33:51 Received From : +16:33:51 ============================================================================ +16:33:51 FNo. Len. Field Value +16:33:51 ============================================================================ +16:33:51 [ 1] [ 4] [0200] +16:33:51 [ 2] [ 16] [6213541000430515] +16:33:51 [ 3] [ 6] [011000] +16:33:51 [ 4] [ 12] [000070000000] +16:33:51 [ 7] [ 10] [0320164138] +16:33:51 [ 11] [ 6] [240859] +16:33:51 [ 12] [ 6] [164138] +16:33:51 [ 13] [ 4] [0320] +16:33:51 [ 14] [ 4] [4912] +16:33:51 [ 15] [ 4] [0320] +16:33:51 [ 18] [ 4] [6011] +16:33:51 [ 22] [ 3] [900] +16:33:51 [ 25] [ 2] [02] +16:33:51 [ 28] [ 9] [D00002000] +16:33:51 [ 32] [ 6] [220699] +16:33:51 [ 35] [ 32] [6213541000430515=491212013051111] +16:33:51 [ 37] [ 12] [507900410449] +16:33:51 [ 41] [ 8] [08000300] +16:33:51 [ 42] [ 15] [APTRA ] +16:33:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:33:51 [ 49] [ 3] [418] +16:33:51 [ 52] [ 16] [47446043B5925609] +16:33:51 ============================================================================ +16:33:51 + + +waiting on router queue for slot.... +16:33:51 Sending to : <0> +16:33:51 ============================================================================ +16:33:51 ============================================================================ +16:33:51 Slot Id : <48> +16:33:51 Transaction Type : RESPONSE +16:33:51 Received From : +16:33:51 ============================================================================ +16:33:51 FNo. Len. Field Value +16:33:51 ============================================================================ +16:33:51 [ 1] [ 4] [0210] +16:33:51 [ 2] [ 16] [6688990602557702] +16:33:51 [ 3] [ 6] [010000] +16:33:51 [ 4] [ 12] [000005000000] +16:33:51 [ 11] [ 6] [800892] +16:33:51 [ 12] [ 6] [163345] +16:33:51 [ 15] [ 4] [0320] +16:33:51 [ 18] [ 4] [6011] +16:33:51 [ 32] [ 6] [621354] +16:33:51 [ 35] [ 37] [6688990602557702=43080061770239200000] +16:33:51 [ 37] [ 12] [507902546930] +16:33:51 [ 38] [ 6] [654264] +16:33:51 [ 39] [ 2] [00] +16:33:51 [ 41] [ 8] [05003700] +16:33:51 [ 49] [ 3] [418] +16:33:51 [ 54] [ 20] [0002418C000025084743] +16:33:51 ============================================================================ +16:33:51 Sending to : +16:33:51 ============================================================================ +16:33:51 + + +waiting on router queue for slot.... +16:33:52 ============================================================================ +16:33:52 Slot Id : <46> +16:33:52 Transaction Type : RESPONSE +16:33:52 Received From : +16:33:52 ============================================================================ +16:33:52 FNo. Len. Field Value +16:33:52 ============================================================================ +16:33:52 [ 1] [ 4] [0210] +16:33:52 [ 2] [ 16] [6213541000430515] +16:33:52 [ 3] [ 6] [011000] +16:33:52 [ 4] [ 12] [000070000000] +16:33:52 [ 7] [ 10] [0320164138] +16:33:52 [ 11] [ 6] [240859] +16:33:52 [ 12] [ 6] [164138] +16:33:52 [ 13] [ 4] [0320] +16:33:52 [ 15] [ 4] [0320] +16:33:52 [ 18] [ 4] [6011] +16:33:52 [ 32] [ 6] [220699] +16:33:52 [ 35] [ 32] [6213541000430515=491212013051111] +16:33:52 [ 37] [ 12] [507900410449] +16:33:52 [ 38] [ 6] [574566] +16:33:52 [ 39] [ 2] [00] +16:33:52 [ 41] [ 8] [08000300] +16:33:52 [ 49] [ 3] [418] +16:33:52 [ 54] [ 40] [1001840C0000003808581002840C000000380858] +16:33:52 ============================================================================ +16:33:52 Sending to : +16:33:52 ============================================================================ +16:33:52 + + +waiting on router queue for slot.... +16:33:53 ============================================================================ +16:33:53 Slot Id : <48> +16:33:53 Transaction Type : RESPONSE +16:33:53 Received From : +16:33:53 ============================================================================ +16:33:53 FNo. Len. Field Value +16:33:53 ============================================================================ +16:33:53 [ 1] [ 4] [0210] +16:33:53 [ 2] [ 16] [6688990602557702] +16:33:53 [ 3] [ 6] [010000] +16:33:53 [ 4] [ 12] [000005000000] +16:33:53 [ 11] [ 6] [800892] +16:33:53 [ 12] [ 6] [163345] +16:33:53 [ 15] [ 4] [0320] +16:33:53 [ 18] [ 4] [6011] +16:33:53 [ 32] [ 6] [621354] +16:33:53 [ 35] [ 37] [6688990602557702=43080061770239200000] +16:33:53 [ 37] [ 12] [507902546930] +16:33:53 [ 38] [ 6] [654264] +16:33:53 [ 39] [ 2] [00] +16:33:53 [ 41] [ 8] [05003700] +16:33:53 [ 49] [ 3] [418] +16:33:53 [ 54] [ 20] [0002418C000025084743] +16:33:53 ============================================================================ +16:33:53 Calculate Source COMM Id = 0 +16:33:53 ============================================================================ +16:33:53 + + +waiting on router queue for slot.... +16:33:53 ============================================================================ +16:33:53 Slot Id : <69> +16:33:53 Transaction Type : RESPONSE +16:33:53 Received From : +16:33:53 ============================================================================ +16:33:53 FNo. Len. Field Value +16:33:53 ============================================================================ +16:33:53 [ 1] [ 4] [0210] +16:33:53 [ 2] [ 16] [1808931800005819] +16:33:53 [ 3] [ 6] [011000] +16:33:53 [ 4] [ 12] [000020000000] +16:33:53 [ 6] [ 12] [000020000000] +16:33:53 [ 7] [ 10] [0320163344] +16:33:53 [ 11] [ 6] [800884] +16:33:53 [ 12] [ 6] [163344] +16:33:53 [ 13] [ 4] [0320] +16:33:53 [ 18] [ 4] [6011] +16:33:53 [ 19] [ 3] [418] +16:33:53 [ 22] [ 3] [021] +16:33:53 [ 32] [ 6] [621354] +16:33:53 [ 35] [ 27] [1808931800005819=1803500314] +16:33:53 [ 37] [ 12] [507904635879] +16:33:53 [ 38] [ 6] [800884] +16:33:53 [ 39] [ 2] [51] +16:33:53 [ 41] [ 8] [17000800] +16:33:53 [ 49] [ 3] [418] +16:33:53 [ 52] [ 16] [98BE394402CFEE30] +16:33:53 ============================================================================ +16:33:53 Sending to : +16:33:53 ============================================================================ +16:33:53 + + +waiting on router queue for slot.... +16:33:55 ============================================================================ +16:33:55 Slot Id : <46> +16:33:55 Transaction Type : RESPONSE +16:33:55 Received From : +16:33:55 ============================================================================ +16:33:55 FNo. Len. Field Value +16:33:55 ============================================================================ +16:33:55 [ 1] [ 4] [0210] +16:33:55 [ 2] [ 16] [6213541000430515] +16:33:55 [ 3] [ 6] [011000] +16:33:55 [ 4] [ 12] [000070000000] +16:33:55 [ 7] [ 10] [0320164138] +16:33:55 [ 11] [ 6] [240859] +16:33:55 [ 12] [ 6] [164138] +16:33:55 [ 13] [ 4] [0320] +16:33:55 [ 15] [ 4] [0320] +16:33:55 [ 18] [ 4] [6011] +16:33:55 [ 32] [ 6] [220699] +16:33:55 [ 35] [ 32] [6213541000430515=491212013051111] +16:33:55 [ 37] [ 12] [507900410449] +16:33:55 [ 38] [ 6] [574566] +16:33:55 [ 39] [ 2] [00] +16:33:55 [ 41] [ 8] [08000300] +16:33:55 [ 49] [ 3] [418] +16:33:55 [ 54] [ 40] [1001840C0000003808581002840C000000380858] +16:33:55 ============================================================================ +16:33:55 Calculate Source COMM Id = 1 +16:33:55 ============================================================================ +16:33:55 + + +waiting on router queue for slot.... +16:33:55 ============================================================================ +16:33:55 Slot Id : <69> +16:33:55 Transaction Type : RESPONSE +16:33:55 Received From : +16:33:55 ============================================================================ +16:33:55 FNo. Len. Field Value +16:33:55 ============================================================================ +16:33:55 [ 1] [ 4] [0210] +16:33:55 [ 2] [ 16] [1808931800005819] +16:33:55 [ 3] [ 6] [011000] +16:33:55 [ 4] [ 12] [000020000000] +16:33:55 [ 6] [ 12] [000020000000] +16:33:55 [ 7] [ 10] [0320163344] +16:33:55 [ 11] [ 6] [800884] +16:33:55 [ 12] [ 6] [163344] +16:33:55 [ 13] [ 4] [0320] +16:33:55 [ 18] [ 4] [6011] +16:33:55 [ 19] [ 3] [418] +16:33:55 [ 22] [ 3] [021] +16:33:55 [ 32] [ 6] [621354] +16:33:55 [ 35] [ 27] [1808931800005819=1803500314] +16:33:55 [ 37] [ 12] [507904635879] +16:33:55 [ 38] [ 6] [800884] +16:33:55 [ 39] [ 2] [51] +16:33:55 [ 41] [ 8] [17000800] +16:33:55 [ 49] [ 3] [418] +16:33:55 [ 52] [ 16] [98BE394402CFEE30] +16:33:55 ============================================================================ +16:33:55 Calculate Source COMM Id = 0 +16:33:55 ============================================================================ +16:33:55 + + +waiting on router queue for slot.... +16:33:55 ============================================================================ +16:33:55 Slot Id : <27> +16:33:55 Transaction Type : REQUEST +16:33:55 Received From : +16:33:55 ============================================================================ +16:33:55 FNo. Len. Field Value +16:33:55 ============================================================================ +16:33:55 [ 1] [ 4] [0200] +16:33:55 [ 2] [ 16] [6213543000129998] +16:33:55 [ 3] [ 6] [010000] +16:33:55 [ 4] [ 12] [000010000000] +16:33:55 [ 7] [ 10] [0320163145] +16:33:55 [ 11] [ 6] [951902] +16:33:55 [ 12] [ 6] [163145] +16:33:55 [ 13] [ 4] [0320] +16:33:55 [ 15] [ 4] [0320] +16:33:55 [ 18] [ 4] [6011] +16:33:55 [ 19] [ 3] [418] +16:33:55 [ 22] [ 3] [021] +16:33:55 [ 25] [ 2] [01] +16:33:55 [ 28] [ 9] [D00002000] +16:33:55 [ 32] [ 6] [668899] +16:33:55 [ 35] [ 32] [6213543000129998=491212012999246] +16:33:55 [ 37] [ 12] [507902565296] +16:33:55 [ 41] [ 8] [03001014] +16:33:55 [ 42] [ 15] [APT ] +16:33:55 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +16:33:55 [ 49] [ 3] [418] +16:33:55 [ 52] [ 16] [2F776737BC166291] +16:33:55 ============================================================================ +16:33:55 + + +waiting on router queue for slot.... +16:33:55 Sending to : +16:33:55 ============================================================================ +16:33:55 Sending to : +16:33:55 ============================================================================ +16:33:56 ============================================================================ +16:33:56 Slot Id : <27> +16:33:56 Transaction Type : REQUEST +16:33:56 Received From : +16:33:56 ============================================================================ +16:33:56 FNo. Len. Field Value +16:33:56 ============================================================================ +16:33:56 [ 1] [ 4] [0200] +16:33:56 [ 2] [ 16] [6213543000129998] +16:33:56 [ 3] [ 6] [010000] +16:33:56 [ 4] [ 12] [000010000000] +16:33:56 [ 7] [ 10] [0320163145] +16:33:56 [ 11] [ 6] [951902] +16:33:56 [ 12] [ 6] [163145] +16:33:56 [ 13] [ 4] [0320] +16:33:56 [ 15] [ 4] [0320] +16:33:56 [ 18] [ 4] [6011] +16:33:56 [ 19] [ 3] [418] +16:33:56 [ 22] [ 3] [021] +16:33:56 [ 25] [ 2] [01] +16:33:56 [ 28] [ 9] [D00002000] +16:33:56 [ 32] [ 6] [668899] +16:33:56 [ 35] [ 32] [6213543000129998=491212012999246] +16:33:56 [ 37] [ 12] [507902565296] +16:33:56 [ 41] [ 8] [03001014] +16:33:56 [ 42] [ 15] [APT ] +16:33:56 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +16:33:56 [ 49] [ 3] [418] +16:33:56 [ 52] [ 16] [2F776737BC166291] +16:33:56 ============================================================================ +16:33:56 + + +waiting on router queue for slot.... +16:33:56 Sending to : +16:33:56 ============================================================================ +16:33:56 ============================================================================ +16:33:56 Slot Id : <27> +16:33:56 Transaction Type : REQUEST +16:33:56 Received From : +16:33:56 ============================================================================ +16:33:56 FNo. Len. Field Value +16:33:56 ============================================================================ +16:33:56 [ 1] [ 4] [0200] +16:33:56 [ 2] [ 16] [6213543000129998] +16:33:56 [ 3] [ 6] [010000] +16:33:56 [ 4] [ 12] [000010000000] +16:33:56 [ 7] [ 10] [0320163145] +16:33:56 [ 11] [ 6] [951902] +16:33:56 [ 12] [ 6] [163145] +16:33:56 [ 13] [ 4] [0320] +16:33:56 [ 15] [ 4] [0320] +16:33:56 [ 18] [ 4] [6011] +16:33:56 [ 19] [ 3] [418] +16:33:56 [ 22] [ 3] [021] +16:33:56 [ 25] [ 2] [01] +16:33:56 [ 28] [ 9] [D00002000] +16:33:56 [ 32] [ 6] [668899] +16:33:56 [ 35] [ 32] [6213543000129998=491212012999246] +16:33:56 [ 37] [ 12] [507902565296] +16:33:56 [ 41] [ 8] [03001014] +16:33:56 [ 42] [ 15] [APT ] +16:33:56 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +16:33:56 [ 49] [ 3] [418] +16:33:56 [ 52] [ 16] [1120D5C74863386E] +16:33:56 ============================================================================ +16:33:56 + + +waiting on router queue for slot.... +16:33:56 Sending to : <0> +16:33:56 ============================================================================ +16:33:57 ============================================================================ +16:33:57 Slot Id : <27> +16:33:57 Transaction Type : RESPONSE +16:33:57 Received From : +16:33:57 ============================================================================ +16:33:57 FNo. Len. Field Value +16:33:57 ============================================================================ +16:33:57 [ 1] [ 4] [0210] +16:33:57 [ 2] [ 16] [6213543000129998] +16:33:57 [ 3] [ 6] [010000] +16:33:57 [ 4] [ 12] [000010000000] +16:33:57 [ 7] [ 10] [0320163145] +16:33:57 [ 11] [ 6] [951902] +16:33:57 [ 12] [ 6] [163145] +16:33:57 [ 13] [ 4] [0320] +16:33:57 [ 15] [ 4] [0320] +16:33:57 [ 18] [ 4] [6011] +16:33:57 [ 19] [ 3] [418] +16:33:57 [ 32] [ 6] [668899] +16:33:57 [ 35] [ 32] [6213543000129998=491212012999246] +16:33:57 [ 37] [ 12] [507902565296] +16:33:57 [ 38] [ 6] [345800] +16:33:57 [ 39] [ 2] [00] +16:33:57 [ 41] [ 8] [03001014] +16:33:57 [ 49] [ 3] [418] +16:33:57 [ 54] [ 40] [0001418C0000056486640002418C000005648664] +16:33:57 ============================================================================ +16:33:57 Sending to : +16:33:57 ============================================================================ +16:33:57 + + +waiting on router queue for slot.... +16:33:59 ============================================================================ +16:33:59 Slot Id : <27> +16:33:59 Transaction Type : RESPONSE +16:33:59 Received From : +16:33:59 ============================================================================ +16:33:59 FNo. Len. Field Value +16:33:59 ============================================================================ +16:33:59 [ 1] [ 4] [0210] +16:33:59 [ 2] [ 16] [6213543000129998] +16:33:59 [ 3] [ 6] [010000] +16:33:59 [ 4] [ 12] [000010000000] +16:33:59 [ 7] [ 10] [0320163145] +16:33:59 [ 11] [ 6] [951902] +16:33:59 [ 12] [ 6] [163145] +16:33:59 [ 13] [ 4] [0320] +16:33:59 [ 15] [ 4] [0320] +16:33:59 [ 18] [ 4] [6011] +16:33:59 [ 19] [ 3] [418] +16:33:59 [ 32] [ 6] [668899] +16:33:59 [ 35] [ 32] [6213543000129998=491212012999246] +16:33:59 [ 37] [ 12] [507902565296] +16:33:59 [ 38] [ 6] [345800] +16:33:59 [ 39] [ 2] [00] +16:33:59 [ 41] [ 8] [03001014] +16:33:59 [ 49] [ 3] [418] +16:33:59 [ 54] [ 40] [0001418C0000056486640002418C000005648664] +16:33:59 ============================================================================ +16:33:59 Calculate Source COMM Id = 4 +16:33:59 ============================================================================ +16:33:59 + + +waiting on router queue for slot.... +16:34:02 ============================================================================ +16:34:02 Slot Id : <19> +16:34:02 Transaction Type : REQUEST +16:34:02 Received From : +16:34:02 ============================================================================ +16:34:02 FNo. Len. Field Value +16:34:02 ============================================================================ +16:34:02 [ 1] [ 4] [0800] +16:34:02 [ 7] [ 10] [0320093309] +16:34:02 [ 11] [ 6] [157258] +16:34:02 [ 70] [ 3] [301] +16:34:02 ============================================================================ +16:34:02 + + +waiting on router queue for slot.... +16:34:02 Sending to : +16:34:02 ============================================================================ +16:34:02 ============================================================================ +16:34:02 Slot Id : <19> +16:34:02 Transaction Type : RESPONSE +16:34:02 Received From : +16:34:02 ============================================================================ +16:34:02 FNo. Len. Field Value +16:34:02 ============================================================================ +16:34:02 [ 1] [ 4] [0810] +16:34:02 [ 7] [ 10] [0320093309] +16:34:02 [ 11] [ 6] [157258] +16:34:02 [ 39] [ 2] [00] +16:34:02 [ 70] [ 3] [301] +16:34:02 ============================================================================ +16:34:02 Calculate Source COMM Id = 2 +16:34:02 ============================================================================ +16:34:02 + + +waiting on router queue for slot.... +16:34:04 ============================================================================ +16:34:04 Slot Id : <47> +16:34:04 Transaction Type : REQUEST +16:34:04 Received From : +16:34:04 ============================================================================ +16:34:04 FNo. Len. Field Value +16:34:04 ============================================================================ +16:34:04 [ 1] [ 4] [0200] +16:34:04 [ 2] [ 16] [6213544000252756] +16:34:04 [ 3] [ 6] [010000] +16:34:04 [ 4] [ 12] [000050000000] +16:34:04 [ 7] [ 10] [0320093310] +16:34:04 [ 11] [ 6] [270503] +16:34:04 [ 12] [ 6] [163310] +16:34:04 [ 13] [ 4] [0320] +16:34:04 [ 14] [ 4] [4912] +16:34:04 [ 15] [ 4] [0320] +16:34:04 [ 18] [ 4] [6011] +16:34:04 [ 19] [ 3] [418] +16:34:04 [ 22] [ 3] [021] +16:34:04 [ 25] [ 2] [01] +16:34:04 [ 28] [ 9] [D00002000] +16:34:04 [ 32] [ 6] [180893] +16:34:04 [ 35] [ 32] [6213544000252756=491212015275577] +16:34:04 [ 37] [ 12] [507909270503] +16:34:04 [ 41] [ 8] [0463LNTN] +16:34:04 [ 42] [ 15] [999999 ] +16:34:04 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +16:34:04 [ 49] [ 3] [418] +16:34:04 [ 52] [ 16] [FD93EA6BDA642018] +16:34:04 ============================================================================ +16:34:04 + + +waiting on router queue for slot.... +16:34:04 Sending to : +16:34:04 ============================================================================ +16:34:04 Sending to : +16:34:04 ============================================================================ +16:34:05 ============================================================================ +16:34:05 Slot Id : <47> +16:34:05 Transaction Type : REQUEST +16:34:05 Received From : +16:34:05 ============================================================================ +16:34:05 FNo. Len. Field Value +16:34:05 ============================================================================ +16:34:05 [ 1] [ 4] [0200] +16:34:05 [ 2] [ 16] [6213544000252756] +16:34:05 [ 3] [ 6] [010000] +16:34:05 [ 4] [ 12] [000050000000] +16:34:05 [ 7] [ 10] [0320093310] +16:34:05 [ 11] [ 6] [270503] +16:34:05 [ 12] [ 6] [163310] +16:34:05 [ 13] [ 4] [0320] +16:34:05 [ 14] [ 4] [4912] +16:34:05 [ 15] [ 4] [0320] +16:34:05 [ 18] [ 4] [6011] +16:34:05 [ 19] [ 3] [418] +16:34:05 [ 22] [ 3] [021] +16:34:05 [ 25] [ 2] [01] +16:34:05 [ 28] [ 9] [D00002000] +16:34:05 [ 32] [ 6] [180893] +16:34:05 [ 35] [ 32] [6213544000252756=491212015275577] +16:34:05 [ 37] [ 12] [507909270503] +16:34:05 [ 41] [ 8] [0463LNTN] +16:34:05 [ 42] [ 15] [999999 ] +16:34:05 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +16:34:05 [ 49] [ 3] [418] +16:34:05 [ 52] [ 16] [FD93EA6BDA642018] +16:34:05 ============================================================================ +16:34:05 + + +waiting on router queue for slot.... +16:34:05 Sending to : +16:34:05 ============================================================================ +16:34:05 ============================================================================ +16:34:05 Slot Id : <47> +16:34:05 Transaction Type : REQUEST +16:34:05 Received From : +16:34:05 ============================================================================ +16:34:05 FNo. Len. Field Value +16:34:05 ============================================================================ +16:34:05 [ 1] [ 4] [0200] +16:34:05 [ 2] [ 16] [6213544000252756] +16:34:05 [ 3] [ 6] [010000] +16:34:05 [ 4] [ 12] [000050000000] +16:34:05 [ 7] [ 10] [0320093310] +16:34:05 [ 11] [ 6] [270503] +16:34:05 [ 12] [ 6] [163310] +16:34:05 [ 13] [ 4] [0320] +16:34:05 [ 14] [ 4] [4912] +16:34:05 [ 15] [ 4] [0320] +16:34:05 [ 18] [ 4] [6011] +16:34:05 [ 19] [ 3] [418] +16:34:05 [ 22] [ 3] [021] +16:34:05 [ 25] [ 2] [01] +16:34:05 [ 28] [ 9] [D00002000] +16:34:05 [ 32] [ 6] [180893] +16:34:05 [ 35] [ 32] [6213544000252756=491212015275577] +16:34:05 [ 37] [ 12] [507909270503] +16:34:05 [ 41] [ 8] [0463LNTN] +16:34:05 [ 42] [ 15] [999999 ] +16:34:05 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +16:34:05 [ 49] [ 3] [418] +16:34:05 [ 52] [ 16] [AAEECE1AF90CBE6D] +16:34:05 ============================================================================ +16:34:05 + + +waiting on router queue for slot.... +16:34:05 Sending to : <0> +16:34:05 ============================================================================ +16:34:05 ============================================================================ +16:34:05 Slot Id : <47> +16:34:05 Transaction Type : RESPONSE +16:34:05 Received From : +16:34:05 ============================================================================ +16:34:05 FNo. Len. Field Value +16:34:05 ============================================================================ +16:34:05 [ 1] [ 4] [0210] +16:34:05 [ 2] [ 16] [6213544000252756] +16:34:05 [ 3] [ 6] [010000] +16:34:05 [ 4] [ 12] [000050000000] +16:34:05 [ 7] [ 10] [0320093310] +16:34:05 [ 11] [ 6] [270503] +16:34:05 [ 12] [ 6] [163310] +16:34:05 [ 13] [ 4] [0320] +16:34:05 [ 15] [ 4] [0320] +16:34:05 [ 18] [ 4] [6011] +16:34:05 [ 19] [ 3] [418] +16:34:05 [ 32] [ 6] [180893] +16:34:05 [ 35] [ 32] [6213544000252756=491212015275577] +16:34:05 [ 37] [ 12] [507909270503] +16:34:05 [ 38] [ 6] [333475] +16:34:05 [ 39] [ 2] [00] +16:34:05 [ 41] [ 8] [0463LNTN] +16:34:05 [ 49] [ 3] [418] +16:34:05 [ 54] [ 40] [0001418C0003550482710002418C000355048271] +16:34:05 ============================================================================ +16:34:05 Sending to : +16:34:05 ============================================================================ +16:34:05 + + +waiting on router queue for slot.... +16:34:07 ============================================================================ +16:34:07 Slot Id : <47> +16:34:07 Transaction Type : RESPONSE +16:34:07 Received From : +16:34:07 ============================================================================ +16:34:07 FNo. Len. Field Value +16:34:07 ============================================================================ +16:34:07 [ 1] [ 4] [0210] +16:34:07 [ 2] [ 16] [6213544000252756] +16:34:07 [ 3] [ 6] [010000] +16:34:07 [ 4] [ 12] [000050000000] +16:34:07 [ 7] [ 10] [0320093310] +16:34:07 [ 11] [ 6] [270503] +16:34:07 [ 12] [ 6] [163310] +16:34:07 [ 13] [ 4] [0320] +16:34:07 [ 15] [ 4] [0320] +16:34:07 [ 18] [ 4] [6011] +16:34:07 [ 19] [ 3] [418] +16:34:07 [ 32] [ 6] [180893] +16:34:07 [ 35] [ 32] [6213544000252756=491212015275577] +16:34:07 [ 37] [ 12] [507909270503] +16:34:07 [ 38] [ 6] [333475] +16:34:07 [ 39] [ 2] [00] +16:34:07 [ 41] [ 8] [0463LNTN] +16:34:07 [ 49] [ 3] [418] +16:34:07 [ 54] [ 40] [0001418C0003550482710002418C000355048271] +16:34:07 ============================================================================ +16:34:07 Calculate Source COMM Id = 2 +16:34:07 ============================================================================ +16:34:07 + + +waiting on router queue for slot.... +16:34:18 ============================================================================ +16:34:18 Slot Id : <54> +16:34:18 Transaction Type : REQUEST +16:34:18 Received From : +16:34:18 ============================================================================ +16:34:18 FNo. Len. Field Value +16:34:18 ============================================================================ +16:34:18 [ 1] [ 4] [0800] +16:34:18 [ 7] [ 10] [0320093325] +16:34:18 [ 11] [ 6] [157259] +16:34:18 [ 70] [ 3] [301] +16:34:18 ============================================================================ +16:34:18 + + +waiting on router queue for slot.... +16:34:18 Sending to : +16:34:18 ============================================================================ +16:34:18 ============================================================================ +16:34:18 Slot Id : <54> +16:34:18 Transaction Type : RESPONSE +16:34:18 Received From : +16:34:18 ============================================================================ +16:34:18 FNo. Len. Field Value +16:34:18 ============================================================================ +16:34:18 [ 1] [ 4] [0810] +16:34:18 [ 7] [ 10] [0320093325] +16:34:18 [ 11] [ 6] [157259] +16:34:18 [ 39] [ 2] [00] +16:34:18 [ 70] [ 3] [301] +16:34:18 ============================================================================ +16:34:18 Calculate Source COMM Id = 2 +16:34:18 ============================================================================ +16:34:18 + + +waiting on router queue for slot.... +16:34:25 ============================================================================ +16:34:25 Slot Id : <78> +16:34:25 Transaction Type : REQUEST +16:34:25 Received From : +16:34:25 ============================================================================ +16:34:25 FNo. Len. Field Value +16:34:25 ============================================================================ +16:34:25 [ 1] [ 4] [0800] +16:34:25 [ 7] [ 10] [0320234612] +16:34:25 [ 11] [ 6] [164612] +16:34:25 [ 37] [ 12] [57916164612] +16:34:25 [ 70] [ 3] [301] +16:34:25 ============================================================================ +16:34:25 + + +waiting on router queue for slot.... +16:34:25 Sending to : +16:34:25 ============================================================================ +16:34:25 ============================================================================ +16:34:25 Slot Id : <78> +16:34:25 Transaction Type : RESPONSE +16:34:25 Received From : +16:34:25 ============================================================================ +16:34:25 FNo. Len. Field Value +16:34:25 ============================================================================ +16:34:25 [ 1] [ 4] [0810] +16:34:25 [ 7] [ 10] [0320234612] +16:34:25 [ 11] [ 6] [164612] +16:34:25 [ 37] [ 12] [579161646120] +16:34:25 [ 39] [ 2] [00] +16:34:25 [ 70] [ 3] [810] +16:34:25 ============================================================================ +16:34:25 Calculate Source COMM Id = 6 +16:34:25 ============================================================================ +16:34:25 + + +waiting on router queue for slot.... +16:34:26 ============================================================================ +16:34:26 Slot Id : <57> +16:34:26 Transaction Type : REQUEST +16:34:26 Received From : +16:34:26 ============================================================================ +16:34:26 FNo. Len. Field Value +16:34:26 ============================================================================ +16:34:26 [ 1] [ 4] [0200] +16:34:26 [ 2] [ 16] [6213544001960852] +16:34:26 [ 3] [ 6] [011000] +16:34:26 [ 4] [ 12] [000025000000] +16:34:26 [ 7] [ 10] [0320163446] +16:34:26 [ 11] [ 6] [208782] +16:34:26 [ 12] [ 6] [162952] +16:34:26 [ 13] [ 4] [0320] +16:34:26 [ 14] [ 4] [4912] +16:34:26 [ 15] [ 4] [0320] +16:34:26 [ 18] [ 4] [6011] +16:34:26 [ 19] [ 3] [418] +16:34:26 [ 22] [ 3] [021] +16:34:26 [ 25] [ 2] [01] +16:34:26 [ 28] [ 9] [D00002000] +16:34:26 [ 32] [ 6] [198901] +16:34:26 [ 35] [ 32] [6213544001960852=491212016085679] +16:34:26 [ 37] [ 12] [507916208782] +16:34:26 [ 41] [ 8] [19529001] +16:34:26 [ 42] [ 15] [000000041952901] +16:34:26 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:34:26 [ 49] [ 3] [418] +16:34:26 [ 52] [ 16] [578E897CB513F61B] +16:34:26 ============================================================================ +16:34:26 + + +waiting on router queue for slot.... +16:34:26 Sending to : +16:34:26 ============================================================================ +16:34:26 Sending to : +16:34:26 ============================================================================ +16:34:26 ============================================================================ +16:34:26 Slot Id : <81> +16:34:26 Transaction Type : REQUEST +16:34:26 Received From : +16:34:26 ============================================================================ +16:34:26 FNo. Len. Field Value +16:34:26 ============================================================================ +16:34:26 [ 1] [ 4] [0200] +16:34:26 [ 2] [ 16] [1808930500006473] +16:34:26 [ 3] [ 6] [011000] +16:34:26 [ 4] [ 12] [000050000000] +16:34:26 [ 7] [ 10] [0320163421] +16:34:26 [ 11] [ 6] [801057] +16:34:26 [ 12] [ 6] [163421] +16:34:26 [ 13] [ 4] [0320] +16:34:26 [ 15] [ 4] [0320] +16:34:26 [ 18] [ 4] [6011] +16:34:26 [ 22] [ 3] [900] +16:34:26 [ 25] [ 2] [02] +16:34:26 [ 28] [ 9] [D00002000] +16:34:26 [ 32] [ 6] [621354] +16:34:26 [ 35] [ 27] [1808930500006473=1803500478] +16:34:26 [ 37] [ 12] [507903683895] +16:34:26 [ 41] [ 8] [01008800] +16:34:26 [ 42] [ 15] [NATIVE ] +16:34:26 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +16:34:26 [ 49] [ 3] [418] +16:34:26 [ 52] [ 16] [10EC31A68CC15CFC] +16:34:26 ============================================================================ +16:34:26 + + +waiting on router queue for slot.... +16:34:26 Sending to : +16:34:26 ============================================================================ +16:34:26 Sending to : +16:34:26 ============================================================================ +16:34:26 ============================================================================ +16:34:26 Slot Id : <57> +16:34:26 Transaction Type : REQUEST +16:34:26 Received From : +16:34:26 ============================================================================ +16:34:26 FNo. Len. Field Value +16:34:26 ============================================================================ +16:34:26 [ 1] [ 4] [0200] +16:34:26 [ 2] [ 16] [6213544001960852] +16:34:26 [ 3] [ 6] [011000] +16:34:26 [ 4] [ 12] [000025000000] +16:34:26 [ 7] [ 10] [0320163446] +16:34:26 [ 11] [ 6] [208782] +16:34:26 [ 12] [ 6] [162952] +16:34:26 [ 13] [ 4] [0320] +16:34:26 [ 14] [ 4] [4912] +16:34:26 [ 15] [ 4] [0320] +16:34:26 [ 18] [ 4] [6011] +16:34:26 [ 19] [ 3] [418] +16:34:26 [ 22] [ 3] [021] +16:34:26 [ 25] [ 2] [01] +16:34:26 [ 28] [ 9] [D00002000] +16:34:26 [ 32] [ 6] [198901] +16:34:26 [ 35] [ 32] [6213544001960852=491212016085679] +16:34:26 [ 37] [ 12] [507916208782] +16:34:26 [ 41] [ 8] [19529001] +16:34:26 [ 42] [ 15] [000000041952901] +16:34:26 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:34:26 [ 49] [ 3] [418] +16:34:26 [ 52] [ 16] [578E897CB513F61B] +16:34:26 ============================================================================ +16:34:26 + + +waiting on router queue for slot.... +16:34:26 Sending to : +16:34:26 ============================================================================ +16:34:26 ============================================================================ +16:34:26 Slot Id : <57> +16:34:26 Transaction Type : REQUEST +16:34:26 Received From : +16:34:26 ============================================================================ +16:34:26 FNo. Len. Field Value +16:34:26 ============================================================================ +16:34:26 [ 1] [ 4] [0200] +16:34:26 [ 2] [ 16] [6213544001960852] +16:34:26 [ 3] [ 6] [011000] +16:34:26 [ 4] [ 12] [000025000000] +16:34:26 [ 7] [ 10] [0320163446] +16:34:26 [ 11] [ 6] [208782] +16:34:26 [ 12] [ 6] [162952] +16:34:26 [ 13] [ 4] [0320] +16:34:26 [ 14] [ 4] [4912] +16:34:26 [ 15] [ 4] [0320] +16:34:26 [ 18] [ 4] [6011] +16:34:26 [ 19] [ 3] [418] +16:34:26 [ 22] [ 3] [021] +16:34:26 [ 25] [ 2] [01] +16:34:26 [ 28] [ 9] [D00002000] +16:34:26 [ 32] [ 6] [198901] +16:34:26 [ 35] [ 32] [6213544001960852=491212016085679] +16:34:26 [ 37] [ 12] [507916208782] +16:34:26 [ 41] [ 8] [19529001] +16:34:26 [ 42] [ 15] [000000041952901] +16:34:26 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:34:26 [ 49] [ 3] [418] +16:34:26 [ 52] [ 16] [EAEB4B1A70CC8B8F] +16:34:26 ============================================================================ +16:34:26 + + +waiting on router queue for slot.... +16:34:26 Sending to : <0> +16:34:26 ============================================================================ +16:34:26 ============================================================================ +16:34:26 Slot Id : <81> +16:34:26 Transaction Type : REQUEST +16:34:26 Received From : +16:34:26 ============================================================================ +16:34:26 FNo. Len. Field Value +16:34:26 ============================================================================ +16:34:26 [ 1] [ 4] [0200] +16:34:26 [ 2] [ 16] [1808930500006473] +16:34:26 [ 3] [ 6] [011000] +16:34:26 [ 4] [ 12] [000050000000] +16:34:26 [ 7] [ 10] [0320163421] +16:34:26 [ 11] [ 6] [801057] +16:34:26 [ 12] [ 6] [163421] +16:34:26 [ 13] [ 4] [0320] +16:34:26 [ 15] [ 4] [0320] +16:34:26 [ 18] [ 4] [6011] +16:34:26 [ 22] [ 3] [900] +16:34:26 [ 25] [ 2] [02] +16:34:26 [ 28] [ 9] [D00002000] +16:34:26 [ 32] [ 6] [621354] +16:34:26 [ 35] [ 27] [1808930500006473=1803500478] +16:34:26 [ 37] [ 12] [507903683895] +16:34:26 [ 41] [ 8] [01008800] +16:34:26 [ 42] [ 15] [NATIVE ] +16:34:26 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +16:34:26 [ 49] [ 3] [418] +16:34:26 [ 52] [ 16] [10EC31A68CC15CFC] +16:34:26 ============================================================================ +16:34:26 + + +waiting on router queue for slot.... +16:34:26 Sending to : +16:34:26 ============================================================================ +16:34:26 ============================================================================ +16:34:26 Slot Id : <81> +16:34:26 Transaction Type : REQUEST +16:34:26 Received From : +16:34:26 ============================================================================ +16:34:26 FNo. Len. Field Value +16:34:26 ============================================================================ +16:34:26 [ 1] [ 4] [0200] +16:34:26 [ 2] [ 16] [1808930500006473] +16:34:26 [ 3] [ 6] [011000] +16:34:26 [ 4] [ 12] [000050000000] +16:34:26 [ 7] [ 10] [0320163421] +16:34:26 [ 11] [ 6] [801057] +16:34:26 [ 12] [ 6] [163421] +16:34:26 [ 13] [ 4] [0320] +16:34:26 [ 15] [ 4] [0320] +16:34:26 [ 18] [ 4] [6011] +16:34:26 [ 22] [ 3] [900] +16:34:26 [ 25] [ 2] [02] +16:34:26 [ 28] [ 9] [D00002000] +16:34:26 [ 32] [ 6] [621354] +16:34:26 [ 35] [ 27] [1808930500006473=1803500478] +16:34:26 [ 37] [ 12] [507903683895] +16:34:26 [ 41] [ 8] [01008800] +16:34:26 [ 42] [ 15] [NATIVE ] +16:34:26 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +16:34:26 [ 49] [ 3] [418] +16:34:26 [ 52] [ 16] [BDFF8ED2E4CC12C4] +16:34:26 ============================================================================ +16:34:26 + + +waiting on router queue for slot.... +16:34:26 Sending to : <2> +16:34:26 ============================================================================ +16:34:27 ============================================================================ +16:34:27 Slot Id : <57> +16:34:27 Transaction Type : RESPONSE +16:34:27 Received From : +16:34:27 ============================================================================ +16:34:27 FNo. Len. Field Value +16:34:27 ============================================================================ +16:34:27 [ 1] [ 4] [0210] +16:34:27 [ 2] [ 16] [6213544001960852] +16:34:27 [ 3] [ 6] [011000] +16:34:27 [ 4] [ 12] [000025000000] +16:34:27 [ 7] [ 10] [0320163446] +16:34:27 [ 11] [ 6] [208782] +16:34:27 [ 12] [ 6] [162952] +16:34:27 [ 13] [ 4] [0320] +16:34:27 [ 15] [ 4] [0320] +16:34:27 [ 18] [ 4] [6011] +16:34:27 [ 19] [ 3] [418] +16:34:27 [ 32] [ 6] [198901] +16:34:27 [ 35] [ 32] [6213544001960852=491212016085679] +16:34:27 [ 37] [ 12] [507916208782] +16:34:27 [ 38] [ 6] [783871] +16:34:27 [ 39] [ 2] [00] +16:34:27 [ 41] [ 8] [19529001] +16:34:27 [ 49] [ 3] [418] +16:34:27 [ 54] [ 40] [1001418C0000373310541002418C000037331054] +16:34:27 ============================================================================ +16:34:27 Sending to : +16:34:27 ============================================================================ +16:34:27 + + +waiting on router queue for slot.... +16:34:27 ============================================================================ +16:34:27 Slot Id : <24> +16:34:27 Transaction Type : REQUEST +16:34:27 Received From : +16:34:27 ============================================================================ +16:34:27 FNo. Len. Field Value +16:34:27 ============================================================================ +16:34:27 [ 1] [ 4] [0200] +16:34:27 [ 2] [ 16] [6688990106047002] +16:34:27 [ 3] [ 6] [010000] +16:34:27 [ 4] [ 12] [000100000000] +16:34:27 [ 7] [ 10] [0320163422] +16:34:27 [ 11] [ 6] [801063] +16:34:27 [ 12] [ 6] [163422] +16:34:27 [ 13] [ 4] [0320] +16:34:27 [ 15] [ 4] [0320] +16:34:27 [ 18] [ 4] [6011] +16:34:27 [ 22] [ 3] [900] +16:34:27 [ 25] [ 2] [02] +16:34:27 [ 28] [ 9] [D00002000] +16:34:27 [ 32] [ 6] [621354] +16:34:27 [ 35] [ 37] [6688990106047002=43111231700244000000] +16:34:27 [ 37] [ 12] [507903499606] +16:34:27 [ 41] [ 8] [06002200] +16:34:27 [ 42] [ 15] [NATIVE ] +16:34:27 [ 43] [ 40] [Beng Market Beng LAO] +16:34:27 [ 49] [ 3] [418] +16:34:27 [ 52] [ 16] [08BEF2A6705000D5] +16:34:27 ============================================================================ +16:34:27 + + +waiting on router queue for slot.... +16:34:27 Sending to : +16:34:27 ============================================================================ +16:34:27 Sending to : +16:34:27 ============================================================================ +16:34:27 ============================================================================ +16:34:27 Slot Id : <24> +16:34:27 Transaction Type : REQUEST +16:34:27 Received From : +16:34:27 ============================================================================ +16:34:27 FNo. Len. Field Value +16:34:27 ============================================================================ +16:34:27 [ 1] [ 4] [0200] +16:34:27 [ 2] [ 16] [6688990106047002] +16:34:27 [ 3] [ 6] [010000] +16:34:27 [ 4] [ 12] [000100000000] +16:34:27 [ 7] [ 10] [0320163422] +16:34:27 [ 11] [ 6] [801063] +16:34:27 [ 12] [ 6] [163422] +16:34:27 [ 13] [ 4] [0320] +16:34:27 [ 15] [ 4] [0320] +16:34:27 [ 18] [ 4] [6011] +16:34:27 [ 22] [ 3] [900] +16:34:27 [ 25] [ 2] [02] +16:34:27 [ 28] [ 9] [D00002000] +16:34:27 [ 32] [ 6] [621354] +16:34:27 [ 35] [ 37] [6688990106047002=43111231700244000000] +16:34:27 [ 37] [ 12] [507903499606] +16:34:27 [ 41] [ 8] [06002200] +16:34:27 [ 42] [ 15] [NATIVE ] +16:34:27 [ 43] [ 40] [Beng Market Beng LAO] +16:34:27 [ 49] [ 3] [418] +16:34:27 [ 52] [ 16] [08BEF2A6705000D5] +16:34:27 ============================================================================ +16:34:27 + + +waiting on router queue for slot.... +16:34:27 Sending to : +16:34:27 ============================================================================ +16:34:27 ============================================================================ +16:34:27 Slot Id : <24> +16:34:27 Transaction Type : REQUEST +16:34:27 Received From : +16:34:27 ============================================================================ +16:34:27 FNo. Len. Field Value +16:34:27 ============================================================================ +16:34:27 [ 1] [ 4] [0200] +16:34:27 [ 2] [ 16] [6688990106047002] +16:34:27 [ 3] [ 6] [010000] +16:34:27 [ 4] [ 12] [000100000000] +16:34:27 [ 7] [ 10] [0320163422] +16:34:27 [ 11] [ 6] [801063] +16:34:27 [ 12] [ 6] [163422] +16:34:27 [ 13] [ 4] [0320] +16:34:27 [ 15] [ 4] [0320] +16:34:27 [ 18] [ 4] [6011] +16:34:27 [ 22] [ 3] [900] +16:34:27 [ 25] [ 2] [02] +16:34:27 [ 28] [ 9] [D00002000] +16:34:27 [ 32] [ 6] [621354] +16:34:27 [ 35] [ 37] [6688990106047002=43111231700244000000] +16:34:27 [ 37] [ 12] [507903499606] +16:34:27 [ 41] [ 8] [06002200] +16:34:27 [ 42] [ 15] [NATIVE ] +16:34:27 [ 43] [ 40] [Beng Market Beng LAO] +16:34:27 [ 49] [ 3] [418] +16:34:27 [ 52] [ 16] [AFA44F3B5FCA32E5] +16:34:27 ============================================================================ +16:34:27 + + +waiting on router queue for slot.... +16:34:27 Sending to : <4> +16:34:27 ============================================================================ +16:34:28 ============================================================================ +16:34:28 Slot Id : <49> +16:34:28 Transaction Type : REQUEST +16:34:28 Received From : +16:34:28 ============================================================================ +16:34:28 FNo. Len. Field Value +16:34:28 ============================================================================ +16:34:28 [ 1] [ 4] [0200] +16:34:28 [ 2] [ 16] [6688990602685206] +16:34:28 [ 3] [ 6] [012000] +16:34:28 [ 4] [ 12] [000020000000] +16:34:28 [ 7] [ 10] [0320093334] +16:34:28 [ 11] [ 6] [270508] +16:34:28 [ 12] [ 6] [163334] +16:34:28 [ 13] [ 4] [0320] +16:34:28 [ 14] [ 4] [4310] +16:34:28 [ 15] [ 4] [0320] +16:34:28 [ 18] [ 4] [6011] +16:34:28 [ 19] [ 3] [418] +16:34:28 [ 22] [ 3] [021] +16:34:28 [ 25] [ 2] [01] +16:34:28 [ 28] [ 9] [D00002000] +16:34:28 [ 32] [ 6] [180893] +16:34:28 [ 35] [ 37] [6688990602685206=43100061520607900000] +16:34:28 [ 37] [ 12] [507909270508] +16:34:28 [ 41] [ 8] [0369SLVL] +16:34:28 [ 42] [ 15] [999999 ] +16:34:28 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:34:28 [ 49] [ 3] [418] +16:34:28 [ 52] [ 16] [289612237F9F1BB3] +16:34:28 ============================================================================ +16:34:28 + + +waiting on router queue for slot.... +16:34:28 Sending to : +16:34:28 ============================================================================ +16:34:28 Sending to : +16:34:28 ============================================================================ +16:34:28 ============================================================================ +16:34:28 Slot Id : <57> +16:34:28 Transaction Type : RESPONSE +16:34:28 Received From : +16:34:28 ============================================================================ +16:34:28 FNo. Len. Field Value +16:34:28 ============================================================================ +16:34:28 [ 1] [ 4] [0210] +16:34:28 [ 2] [ 16] [6213544001960852] +16:34:28 [ 3] [ 6] [011000] +16:34:28 [ 4] [ 12] [000025000000] +16:34:28 [ 7] [ 10] [0320163446] +16:34:28 [ 11] [ 6] [208782] +16:34:28 [ 12] [ 6] [162952] +16:34:28 [ 13] [ 4] [0320] +16:34:28 [ 15] [ 4] [0320] +16:34:28 [ 18] [ 4] [6011] +16:34:28 [ 19] [ 3] [418] +16:34:28 [ 32] [ 6] [198901] +16:34:28 [ 35] [ 32] [6213544001960852=491212016085679] +16:34:28 [ 37] [ 12] [507916208782] +16:34:28 [ 38] [ 6] [783871] +16:34:28 [ 39] [ 2] [00] +16:34:28 [ 41] [ 8] [19529001] +16:34:28 [ 49] [ 3] [418] +16:34:28 [ 54] [ 40] [1001418C0000373310541002418C000037331054] +16:34:28 ============================================================================ +16:34:28 Calculate Source COMM Id = 5 +16:34:28 ============================================================================ +16:34:28 + + +waiting on router queue for slot.... +16:34:28 ============================================================================ +16:34:28 Slot Id : <42> +16:34:28 Transaction Type : REQUEST +16:34:28 Received From : +16:34:28 ============================================================================ +16:34:28 FNo. Len. Field Value +16:34:28 ============================================================================ +16:34:28 [ 1] [ 4] [0200] +16:34:28 [ 2] [ 16] [6213545001053002] +16:34:28 [ 3] [ 6] [011000] +16:34:28 [ 4] [ 12] [000030000000] +16:34:28 [ 7] [ 10] [0320093335] +16:34:28 [ 11] [ 6] [270509] +16:34:28 [ 12] [ 6] [163334] +16:34:28 [ 13] [ 4] [0320] +16:34:28 [ 14] [ 4] [4912] +16:34:28 [ 15] [ 4] [0320] +16:34:28 [ 18] [ 4] [6011] +16:34:28 [ 19] [ 3] [418] +16:34:28 [ 22] [ 3] [021] +16:34:28 [ 25] [ 2] [01] +16:34:28 [ 28] [ 9] [D00002000] +16:34:28 [ 32] [ 6] [180893] +16:34:28 [ 35] [ 32] [6213545001053002=491212015300704] +16:34:28 [ 37] [ 12] [507909270509] +16:34:28 [ 41] [ 8] [0113SVBR] +16:34:28 [ 42] [ 15] [999999 ] +16:34:28 [ 43] [ 40] [ATM SAVANNAKHET BRANCH LOCATION, Kaisone] +16:34:28 [ 49] [ 3] [418] +16:34:28 [ 52] [ 16] [DF7385C389A57C4A] +16:34:28 ============================================================================ +16:34:28 + + +waiting on router queue for slot.... +16:34:28 Sending to : +16:34:28 ============================================================================ +16:34:28 Sending to : +16:34:28 ============================================================================ +16:34:28 ============================================================================ +16:34:28 Slot Id : <24> +16:34:28 Transaction Type : RESPONSE +16:34:28 Received From : +16:34:28 ============================================================================ +16:34:28 FNo. Len. Field Value +16:34:28 ============================================================================ +16:34:28 [ 1] [ 4] [0210] +16:34:28 [ 2] [ 16] [6688990106047002] +16:34:28 [ 3] [ 6] [010000] +16:34:28 [ 4] [ 12] [000100000000] +16:34:28 [ 11] [ 6] [801063] +16:34:28 [ 12] [ 6] [163422] +16:34:28 [ 15] [ 4] [0320] +16:34:28 [ 18] [ 4] [6011] +16:34:28 [ 32] [ 6] [621354] +16:34:28 [ 35] [ 37] [6688990106047002=43111231700244000000] +16:34:28 [ 37] [ 12] [507903499606] +16:34:28 [ 38] [ 6] [883876] +16:34:28 [ 39] [ 2] [00] +16:34:28 [ 41] [ 8] [06002200] +16:34:28 [ 49] [ 3] [418] +16:34:28 [ 54] [ 20] [0002418C000410216563] +16:34:28 ============================================================================ +16:34:28 Sending to : +16:34:28 ============================================================================ +16:34:28 + + +waiting on router queue for slot.... +16:34:29 ============================================================================ +16:34:29 Slot Id : <49> +16:34:29 Transaction Type : REQUEST +16:34:29 Received From : +16:34:29 ============================================================================ +16:34:29 FNo. Len. Field Value +16:34:29 ============================================================================ +16:34:29 [ 1] [ 4] [0200] +16:34:29 [ 2] [ 16] [6688990602685206] +16:34:29 [ 3] [ 6] [012000] +16:34:29 [ 4] [ 12] [000020000000] +16:34:29 [ 7] [ 10] [0320093334] +16:34:29 [ 11] [ 6] [270508] +16:34:29 [ 12] [ 6] [163334] +16:34:29 [ 13] [ 4] [0320] +16:34:29 [ 14] [ 4] [4310] +16:34:29 [ 15] [ 4] [0320] +16:34:29 [ 18] [ 4] [6011] +16:34:29 [ 19] [ 3] [418] +16:34:29 [ 22] [ 3] [021] +16:34:29 [ 25] [ 2] [01] +16:34:29 [ 28] [ 9] [D00002000] +16:34:29 [ 32] [ 6] [180893] +16:34:29 [ 35] [ 37] [6688990602685206=43100061520607900000] +16:34:29 [ 37] [ 12] [507909270508] +16:34:29 [ 41] [ 8] [0369SLVL] +16:34:29 [ 42] [ 15] [999999 ] +16:34:29 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:34:29 [ 49] [ 3] [418] +16:34:29 [ 52] [ 16] [289612237F9F1BB3] +16:34:29 ============================================================================ +16:34:29 + + +waiting on router queue for slot.... +16:34:29 Sending to : +16:34:29 ============================================================================ +16:34:29 ============================================================================ +16:34:29 Slot Id : <49> +16:34:29 Transaction Type : REQUEST +16:34:29 Received From : +16:34:29 ============================================================================ +16:34:29 FNo. Len. Field Value +16:34:29 ============================================================================ +16:34:29 [ 1] [ 4] [0200] +16:34:29 [ 2] [ 16] [6688990602685206] +16:34:29 [ 3] [ 6] [012000] +16:34:29 [ 4] [ 12] [000020000000] +16:34:29 [ 7] [ 10] [0320093334] +16:34:29 [ 11] [ 6] [270508] +16:34:29 [ 12] [ 6] [163334] +16:34:29 [ 13] [ 4] [0320] +16:34:29 [ 14] [ 4] [4310] +16:34:29 [ 15] [ 4] [0320] +16:34:29 [ 18] [ 4] [6011] +16:34:29 [ 19] [ 3] [418] +16:34:29 [ 22] [ 3] [021] +16:34:29 [ 25] [ 2] [01] +16:34:29 [ 28] [ 9] [D00002000] +16:34:29 [ 32] [ 6] [180893] +16:34:29 [ 35] [ 37] [6688990602685206=43100061520607900000] +16:34:29 [ 37] [ 12] [507909270508] +16:34:29 [ 41] [ 8] [0369SLVL] +16:34:29 [ 42] [ 15] [999999 ] +16:34:29 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:34:29 [ 49] [ 3] [418] +16:34:29 [ 52] [ 16] [687BBB8D20617F77] +16:34:29 ============================================================================ +16:34:29 + + +waiting on router queue for slot.... +16:34:29 Sending to : <0> +16:34:29 ============================================================================ +16:34:29 ============================================================================ +16:34:29 Slot Id : <49> +16:34:29 Transaction Type : RESPONSE +16:34:29 Received From : +16:34:29 ============================================================================ +16:34:29 FNo. Len. Field Value +16:34:29 ============================================================================ +16:34:29 [ 1] [ 4] [0210] +16:34:29 [ 2] [ 16] [6688990602685206] +16:34:29 [ 3] [ 6] [012000] +16:34:29 [ 4] [ 12] [000020000000] +16:34:29 [ 7] [ 10] [0320093334] +16:34:29 [ 11] [ 6] [270508] +16:34:29 [ 12] [ 6] [163334] +16:34:29 [ 13] [ 4] [0320] +16:34:29 [ 15] [ 4] [0320] +16:34:29 [ 18] [ 4] [6011] +16:34:29 [ 19] [ 3] [418] +16:34:29 [ 22] [ 3] [021] +16:34:29 [ 32] [ 6] [180893] +16:34:29 [ 35] [ 37] [6688990602685206=43100061520607900000] +16:34:29 [ 37] [ 12] [507909270508] +16:34:29 [ 39] [ 2] [14] +16:34:29 [ 41] [ 8] [0369SLVL] +16:34:29 [ 49] [ 3] [418] +16:34:29 ============================================================================ +16:34:29 Sending to : +16:34:29 ============================================================================ +16:34:29 + + +waiting on router queue for slot.... +16:34:29 ============================================================================ +16:34:29 Slot Id : <42> +16:34:29 Transaction Type : REQUEST +16:34:29 Received From : +16:34:29 ============================================================================ +16:34:29 FNo. Len. Field Value +16:34:29 ============================================================================ +16:34:29 [ 1] [ 4] [0200] +16:34:29 [ 2] [ 16] [6213545001053002] +16:34:29 [ 3] [ 6] [011000] +16:34:29 [ 4] [ 12] [000030000000] +16:34:29 [ 7] [ 10] [0320093335] +16:34:29 [ 11] [ 6] [270509] +16:34:29 [ 12] [ 6] [163334] +16:34:29 [ 13] [ 4] [0320] +16:34:29 [ 14] [ 4] [4912] +16:34:29 [ 15] [ 4] [0320] +16:34:29 [ 18] [ 4] [6011] +16:34:29 [ 19] [ 3] [418] +16:34:29 [ 22] [ 3] [021] +16:34:29 [ 25] [ 2] [01] +16:34:29 [ 28] [ 9] [D00002000] +16:34:29 [ 32] [ 6] [180893] +16:34:29 [ 35] [ 32] [6213545001053002=491212015300704] +16:34:29 [ 37] [ 12] [507909270509] +16:34:29 [ 41] [ 8] [0113SVBR] +16:34:29 [ 42] [ 15] [999999 ] +16:34:29 [ 43] [ 40] [ATM SAVANNAKHET BRANCH LOCATION, Kaisone] +16:34:29 [ 49] [ 3] [418] +16:34:29 [ 52] [ 16] [DF7385C389A57C4A] +16:34:29 ============================================================================ +16:34:29 + + +waiting on router queue for slot.... +16:34:29 Sending to : +16:34:29 ============================================================================ +16:34:29 ============================================================================ +16:34:29 Slot Id : <42> +16:34:29 Transaction Type : REQUEST +16:34:29 Received From : +16:34:29 ============================================================================ +16:34:29 FNo. Len. Field Value +16:34:29 ============================================================================ +16:34:29 [ 1] [ 4] [0200] +16:34:29 [ 2] [ 16] [6213545001053002] +16:34:29 [ 3] [ 6] [011000] +16:34:29 [ 4] [ 12] [000030000000] +16:34:29 [ 7] [ 10] [0320093335] +16:34:29 [ 11] [ 6] [270509] +16:34:29 [ 12] [ 6] [163334] +16:34:29 [ 13] [ 4] [0320] +16:34:29 [ 14] [ 4] [4912] +16:34:29 [ 15] [ 4] [0320] +16:34:29 [ 18] [ 4] [6011] +16:34:29 [ 19] [ 3] [418] +16:34:29 [ 22] [ 3] [021] +16:34:29 [ 25] [ 2] [01] +16:34:29 [ 28] [ 9] [D00002000] +16:34:29 [ 32] [ 6] [180893] +16:34:29 [ 35] [ 32] [6213545001053002=491212015300704] +16:34:29 [ 37] [ 12] [507909270509] +16:34:29 [ 41] [ 8] [0113SVBR] +16:34:29 [ 42] [ 15] [999999 ] +16:34:29 [ 43] [ 40] [ATM SAVANNAKHET BRANCH LOCATION, Kaisone] +16:34:29 [ 49] [ 3] [418] +16:34:29 [ 52] [ 16] [F14430A46FA3448E] +16:34:29 ============================================================================ +16:34:29 + + +waiting on router queue for slot.... +16:34:29 Sending to : <0> +16:34:29 ============================================================================ +16:34:29 ============================================================================ +16:34:29 Slot Id : <42> +16:34:29 Transaction Type : RESPONSE +16:34:29 Received From : +16:34:29 ============================================================================ +16:34:29 FNo. Len. Field Value +16:34:29 ============================================================================ +16:34:29 [ 1] [ 4] [0210] +16:34:29 [ 2] [ 16] [6213545001053002] +16:34:29 [ 3] [ 6] [011000] +16:34:29 [ 4] [ 12] [000030000000] +16:34:29 [ 7] [ 10] [0320093335] +16:34:29 [ 11] [ 6] [270509] +16:34:29 [ 12] [ 6] [163334] +16:34:29 [ 13] [ 4] [0320] +16:34:29 [ 15] [ 4] [0320] +16:34:29 [ 18] [ 4] [6011] +16:34:29 [ 19] [ 3] [418] +16:34:29 [ 32] [ 6] [180893] +16:34:29 [ 35] [ 32] [6213545001053002=491212015300704] +16:34:29 [ 37] [ 12] [507909270509] +16:34:29 [ 38] [ 6] [270963] +16:34:29 [ 39] [ 2] [00] +16:34:29 [ 41] [ 8] [0113SVBR] +16:34:29 [ 49] [ 3] [418] +16:34:29 [ 54] [ 40] [1001418C0001773186811002418C000177318681] +16:34:29 ============================================================================ +16:34:29 Sending to : +16:34:29 ============================================================================ +16:34:29 + + +waiting on router queue for slot.... +16:34:30 ============================================================================ +16:34:30 Slot Id : <24> +16:34:30 Transaction Type : RESPONSE +16:34:30 Received From : +16:34:30 ============================================================================ +16:34:30 FNo. Len. Field Value +16:34:30 ============================================================================ +16:34:30 [ 1] [ 4] [0210] +16:34:30 [ 2] [ 16] [6688990106047002] +16:34:30 [ 3] [ 6] [010000] +16:34:30 [ 4] [ 12] [000100000000] +16:34:30 [ 11] [ 6] [801063] +16:34:30 [ 12] [ 6] [163422] +16:34:30 [ 15] [ 4] [0320] +16:34:30 [ 18] [ 4] [6011] +16:34:30 [ 32] [ 6] [621354] +16:34:30 [ 35] [ 37] [6688990106047002=43111231700244000000] +16:34:30 [ 37] [ 12] [507903499606] +16:34:30 [ 38] [ 6] [883876] +16:34:30 [ 39] [ 2] [00] +16:34:30 [ 41] [ 8] [06002200] +16:34:30 [ 49] [ 3] [418] +16:34:30 [ 54] [ 20] [0002418C000410216563] +16:34:30 ============================================================================ +16:34:30 Calculate Source COMM Id = 0 +16:34:30 ============================================================================ +16:34:30 + + +waiting on router queue for slot.... +16:34:31 ============================================================================ +16:34:31 Slot Id : <49> +16:34:31 Transaction Type : RESPONSE +16:34:31 Received From : +16:34:31 ============================================================================ +16:34:31 FNo. Len. Field Value +16:34:31 ============================================================================ +16:34:31 [ 1] [ 4] [0210] +16:34:31 [ 2] [ 16] [6688990602685206] +16:34:31 [ 3] [ 6] [012000] +16:34:31 [ 4] [ 12] [000020000000] +16:34:31 [ 7] [ 10] [0320093334] +16:34:31 [ 11] [ 6] [270508] +16:34:31 [ 12] [ 6] [163334] +16:34:31 [ 13] [ 4] [0320] +16:34:31 [ 15] [ 4] [0320] +16:34:31 [ 18] [ 4] [6011] +16:34:31 [ 19] [ 3] [418] +16:34:31 [ 22] [ 3] [021] +16:34:31 [ 32] [ 6] [180893] +16:34:31 [ 35] [ 37] [6688990602685206=43100061520607900000] +16:34:31 [ 37] [ 12] [507909270508] +16:34:31 [ 39] [ 2] [14] +16:34:31 [ 41] [ 8] [0369SLVL] +16:34:31 [ 49] [ 3] [418] +16:34:31 ============================================================================ +16:34:31 Calculate Source COMM Id = 2 +16:34:31 ============================================================================ +16:34:31 + + +waiting on router queue for slot.... +16:34:32 ============================================================================ +16:34:32 Slot Id : <81> +16:34:32 Transaction Type : RESPONSE +16:34:32 Received From : +16:34:32 ============================================================================ +16:34:32 FNo. Len. Field Value +16:34:32 ============================================================================ +16:34:32 [ 1] [ 4] [0210] +16:34:32 [ 2] [ 16] [1808930500006473] +16:34:32 [ 3] [ 6] [011000] +16:34:32 [ 4] [ 12] [000050000000] +16:34:32 [ 6] [ 12] [000050000000] +16:34:32 [ 7] [ 10] [0320163421] +16:34:32 [ 11] [ 6] [801057] +16:34:32 [ 12] [ 6] [163421] +16:34:32 [ 13] [ 4] [0320] +16:34:32 [ 18] [ 4] [6011] +16:34:32 [ 19] [ 3] [418] +16:34:32 [ 22] [ 3] [021] +16:34:32 [ 32] [ 6] [621354] +16:34:32 [ 35] [ 27] [1808930500006473=1803500478] +16:34:32 [ 37] [ 12] [507903683895] +16:34:32 [ 38] [ 6] [801057] +16:34:32 [ 39] [ 2] [00] +16:34:32 [ 41] [ 8] [01008800] +16:34:32 [ 49] [ 3] [418] +16:34:32 [ 52] [ 16] [BDFF8ED2E4CC12C4] +16:34:32 [ 54] [ 20] [1001418C002271225400] +16:34:32 ============================================================================ +16:34:32 Sending to : +16:34:32 ============================================================================ +16:34:32 + + +waiting on router queue for slot.... +16:34:32 ============================================================================ +16:34:32 Slot Id : <42> +16:34:32 Transaction Type : RESPONSE +16:34:32 Received From : +16:34:32 ============================================================================ +16:34:32 FNo. Len. Field Value +16:34:32 ============================================================================ +16:34:32 [ 1] [ 4] [0210] +16:34:32 [ 2] [ 16] [6213545001053002] +16:34:32 [ 3] [ 6] [011000] +16:34:32 [ 4] [ 12] [000030000000] +16:34:32 [ 7] [ 10] [0320093335] +16:34:32 [ 11] [ 6] [270509] +16:34:32 [ 12] [ 6] [163334] +16:34:32 [ 13] [ 4] [0320] +16:34:32 [ 15] [ 4] [0320] +16:34:32 [ 18] [ 4] [6011] +16:34:32 [ 19] [ 3] [418] +16:34:32 [ 32] [ 6] [180893] +16:34:32 [ 35] [ 32] [6213545001053002=491212015300704] +16:34:32 [ 37] [ 12] [507909270509] +16:34:32 [ 38] [ 6] [270963] +16:34:32 [ 39] [ 2] [00] +16:34:32 [ 41] [ 8] [0113SVBR] +16:34:32 [ 49] [ 3] [418] +16:34:32 [ 54] [ 40] [1001418C0001773186811002418C000177318681] +16:34:32 ============================================================================ +16:34:32 Calculate Source COMM Id = 2 +16:34:32 ============================================================================ +16:34:32 + + +waiting on router queue for slot.... +16:34:33 ============================================================================ +16:34:33 Slot Id : <81> +16:34:33 Transaction Type : RESPONSE +16:34:33 Received From : +16:34:33 ============================================================================ +16:34:33 FNo. Len. Field Value +16:34:33 ============================================================================ +16:34:33 [ 1] [ 4] [0210] +16:34:33 [ 2] [ 16] [1808930500006473] +16:34:33 [ 3] [ 6] [011000] +16:34:33 [ 4] [ 12] [000050000000] +16:34:33 [ 6] [ 12] [000050000000] +16:34:33 [ 7] [ 10] [0320163421] +16:34:33 [ 11] [ 6] [801057] +16:34:33 [ 12] [ 6] [163421] +16:34:33 [ 13] [ 4] [0320] +16:34:33 [ 18] [ 4] [6011] +16:34:33 [ 19] [ 3] [418] +16:34:33 [ 22] [ 3] [021] +16:34:33 [ 32] [ 6] [621354] +16:34:33 [ 35] [ 27] [1808930500006473=1803500478] +16:34:33 [ 37] [ 12] [507903683895] +16:34:33 [ 38] [ 6] [801057] +16:34:33 [ 39] [ 2] [00] +16:34:33 [ 41] [ 8] [01008800] +16:34:33 [ 49] [ 3] [418] +16:34:33 [ 52] [ 16] [BDFF8ED2E4CC12C4] +16:34:33 [ 54] [ 20] [1001418C002271225400] +16:34:33 ============================================================================ +16:34:33 Calculate Source COMM Id = 0 +16:34:33 ============================================================================ +16:34:33 + + +waiting on router queue for slot.... +16:34:43 ============================================================================ +16:34:43 Slot Id : <34> +16:34:43 Transaction Type : REQUEST +16:34:43 Received From : +16:34:43 ============================================================================ +16:34:43 FNo. Len. Field Value +16:34:43 ============================================================================ +16:34:43 [ 1] [ 4] [0800] +16:34:43 [ 2] [ 5] [02531] +16:34:43 [ 3] [ 6] [579168] +16:34:43 [ 7] [ 10] [0320093443] +16:34:43 [ 11] [ 6] [807374] +16:34:43 [ 15] [ 10] [0320093443] +16:34:43 [ 37] [ 11] [57916807374] +16:34:43 [ 70] [ 3] [001] +16:34:43 ============================================================================ +16:34:43 + + +waiting on router queue for slot.... +16:34:43 ============================================================================ +16:34:43 Slot Id : <34> +16:34:43 Transaction Type : RESPONSE +16:34:43 Received From : +16:34:43 ============================================================================ +16:34:43 FNo. Len. Field Value +16:34:43 ============================================================================ +16:34:43 [ 1] [ 4] [0810] +16:34:43 [ 7] [ 10] [0320093443] +16:34:43 [ 11] [ 6] [807374] +16:34:43 [ 15] [ 4] [0320] +16:34:43 [ 37] [ 12] [57916807374] +16:34:43 [ 39] [ 2] [00] +16:34:43 [ 70] [ 3] [001] +16:34:43 ============================================================================ +16:34:43 Sending to : +16:34:43 ============================================================================ +16:34:43 + + +waiting on router queue for slot.... +16:34:45 ============================================================================ +16:34:45 Slot Id : <88> +16:34:45 Transaction Type : REQUEST +16:34:45 Received From : +16:34:45 ============================================================================ +16:34:45 FNo. Len. Field Value +16:34:45 ============================================================================ +16:34:45 [ 1] [ 4] [0800] +16:34:45 [ 7] [ 10] [0320093352] +16:34:45 [ 11] [ 6] [157260] +16:34:45 [ 70] [ 3] [301] +16:34:45 ============================================================================ +16:34:45 + + +waiting on router queue for slot.... +16:34:45 Sending to : +16:34:45 ============================================================================ +16:34:45 ============================================================================ +16:34:45 Slot Id : <88> +16:34:45 Transaction Type : RESPONSE +16:34:45 Received From : +16:34:45 ============================================================================ +16:34:45 FNo. Len. Field Value +16:34:45 ============================================================================ +16:34:45 [ 1] [ 4] [0810] +16:34:45 [ 7] [ 10] [0320093352] +16:34:45 [ 11] [ 6] [157260] +16:34:45 [ 39] [ 2] [00] +16:34:45 [ 70] [ 3] [301] +16:34:45 ============================================================================ +16:34:45 Calculate Source COMM Id = 2 +16:34:45 ============================================================================ +16:34:45 + + +waiting on router queue for slot.... +16:34:52 ============================================================================ +16:34:52 Slot Id : <86> +16:34:52 Transaction Type : REQUEST +16:34:52 Received From : +16:34:52 ============================================================================ +16:34:52 FNo. Len. Field Value +16:34:52 ============================================================================ +16:34:52 [ 1] [ 4] [0200] +16:34:52 [ 2] [ 16] [6213545000819841] +16:34:52 [ 3] [ 6] [310000] +16:34:52 [ 4] [ 12] [000000000000] +16:34:52 [ 7] [ 10] [0320164239] +16:34:52 [ 11] [ 6] [251293] +16:34:52 [ 12] [ 6] [164239] +16:34:52 [ 13] [ 4] [0320] +16:34:52 [ 14] [ 4] [4912] +16:34:52 [ 15] [ 4] [0320] +16:34:52 [ 18] [ 4] [6011] +16:34:52 [ 22] [ 3] [900] +16:34:52 [ 25] [ 2] [02] +16:34:52 [ 28] [ 9] [000000000] +16:34:52 [ 32] [ 6] [220699] +16:34:52 [ 35] [ 32] [6213545000819841=491212011984853] +16:34:52 [ 37] [ 12] [507900336252] +16:34:52 [ 41] [ 8] [01001900] +16:34:52 [ 42] [ 15] [APTRA ] +16:34:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:34:52 [ 49] [ 3] [418] +16:34:52 [ 52] [ 16] [2E8DC20A61D1714A] +16:34:52 ============================================================================ +16:34:52 + + +waiting on router queue for slot.... +16:34:52 Sending to : +16:34:52 ============================================================================ +16:34:52 Sending to : +16:34:52 ============================================================================ +16:34:53 ============================================================================ +16:34:53 Slot Id : <86> +16:34:53 Transaction Type : REQUEST +16:34:53 Received From : +16:34:53 ============================================================================ +16:34:53 FNo. Len. Field Value +16:34:53 ============================================================================ +16:34:53 [ 1] [ 4] [0200] +16:34:53 [ 2] [ 16] [6213545000819841] +16:34:53 [ 3] [ 6] [310000] +16:34:53 [ 4] [ 12] [000000000000] +16:34:53 [ 7] [ 10] [0320164239] +16:34:53 [ 11] [ 6] [251293] +16:34:53 [ 12] [ 6] [164239] +16:34:53 [ 13] [ 4] [0320] +16:34:53 [ 14] [ 4] [4912] +16:34:53 [ 15] [ 4] [0320] +16:34:53 [ 18] [ 4] [6011] +16:34:53 [ 22] [ 3] [900] +16:34:53 [ 25] [ 2] [02] +16:34:53 [ 28] [ 9] [000000000] +16:34:53 [ 32] [ 6] [220699] +16:34:53 [ 35] [ 32] [6213545000819841=491212011984853] +16:34:53 [ 37] [ 12] [507900336252] +16:34:53 [ 41] [ 8] [01001900] +16:34:53 [ 42] [ 15] [APTRA ] +16:34:53 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:34:53 [ 49] [ 3] [418] +16:34:53 [ 52] [ 16] [2E8DC20A61D1714A] +16:34:53 ============================================================================ +16:34:53 + + +waiting on router queue for slot.... +16:34:53 Sending to : +16:34:53 ============================================================================ +16:34:53 ============================================================================ +16:34:53 Slot Id : <86> +16:34:53 Transaction Type : REQUEST +16:34:53 Received From : +16:34:53 ============================================================================ +16:34:53 FNo. Len. Field Value +16:34:53 ============================================================================ +16:34:53 [ 1] [ 4] [0200] +16:34:53 [ 2] [ 16] [6213545000819841] +16:34:53 [ 3] [ 6] [310000] +16:34:53 [ 4] [ 12] [000000000000] +16:34:53 [ 7] [ 10] [0320164239] +16:34:53 [ 11] [ 6] [251293] +16:34:53 [ 12] [ 6] [164239] +16:34:53 [ 13] [ 4] [0320] +16:34:53 [ 14] [ 4] [4912] +16:34:53 [ 15] [ 4] [0320] +16:34:53 [ 18] [ 4] [6011] +16:34:53 [ 22] [ 3] [900] +16:34:53 [ 25] [ 2] [02] +16:34:53 [ 28] [ 9] [000000000] +16:34:53 [ 32] [ 6] [220699] +16:34:53 [ 35] [ 32] [6213545000819841=491212011984853] +16:34:53 [ 37] [ 12] [507900336252] +16:34:53 [ 41] [ 8] [01001900] +16:34:53 [ 42] [ 15] [APTRA ] +16:34:53 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:34:53 [ 49] [ 3] [418] +16:34:53 [ 52] [ 16] [F2E1C57FB6BADCFE] +16:34:53 ============================================================================ +16:34:53 + + +waiting on router queue for slot.... +16:34:53 Sending to : <0> +16:34:53 ============================================================================ +16:34:53 ============================================================================ +16:34:53 Slot Id : <86> +16:34:53 Transaction Type : RESPONSE +16:34:53 Received From : +16:34:53 ============================================================================ +16:34:53 FNo. Len. Field Value +16:34:53 ============================================================================ +16:34:53 [ 1] [ 4] [0210] +16:34:53 [ 2] [ 16] [6213545000819841] +16:34:53 [ 3] [ 6] [310000] +16:34:53 [ 4] [ 12] [000000000000] +16:34:53 [ 7] [ 10] [0320164239] +16:34:53 [ 11] [ 6] [251293] +16:34:53 [ 12] [ 6] [164239] +16:34:53 [ 13] [ 4] [0320] +16:34:53 [ 15] [ 4] [0320] +16:34:53 [ 18] [ 4] [6011] +16:34:53 [ 32] [ 6] [220699] +16:34:53 [ 35] [ 32] [6213545000819841=491212011984853] +16:34:53 [ 37] [ 12] [507900336252] +16:34:53 [ 38] [ 6] [309840] +16:34:53 [ 39] [ 2] [00] +16:34:53 [ 41] [ 8] [01001900] +16:34:53 [ 49] [ 3] [418] +16:34:53 [ 54] [ 40] [0001418C0002578389250002418C000257838925] +16:34:53 ============================================================================ +16:34:53 Sending to : +16:34:53 ============================================================================ +16:34:53 + + +waiting on router queue for slot.... +16:34:54 ============================================================================ +16:34:54 Slot Id : <86> +16:34:54 Transaction Type : RESPONSE +16:34:54 Received From : +16:34:54 ============================================================================ +16:34:54 FNo. Len. Field Value +16:34:54 ============================================================================ +16:34:54 [ 1] [ 4] [0210] +16:34:54 [ 2] [ 16] [6213545000819841] +16:34:54 [ 3] [ 6] [310000] +16:34:54 [ 4] [ 12] [000000000000] +16:34:54 [ 7] [ 10] [0320164239] +16:34:54 [ 11] [ 6] [251293] +16:34:54 [ 12] [ 6] [164239] +16:34:54 [ 13] [ 4] [0320] +16:34:54 [ 15] [ 4] [0320] +16:34:54 [ 18] [ 4] [6011] +16:34:54 [ 32] [ 6] [220699] +16:34:54 [ 35] [ 32] [6213545000819841=491212011984853] +16:34:54 [ 37] [ 12] [507900336252] +16:34:54 [ 38] [ 6] [309840] +16:34:54 [ 39] [ 2] [00] +16:34:54 [ 41] [ 8] [01001900] +16:34:54 [ 49] [ 3] [418] +16:34:54 [ 54] [ 40] [0001418C0002578389250002418C000257838925] +16:34:54 ============================================================================ +16:34:54 Calculate Source COMM Id = 1 +16:34:54 ============================================================================ +16:34:54 + + +waiting on router queue for slot.... +16:34:55 ============================================================================ +16:34:55 Slot Id : <89> +16:34:55 Transaction Type : REQUEST +16:34:55 Received From : +16:34:55 ============================================================================ +16:34:55 FNo. Len. Field Value +16:34:55 ============================================================================ +16:34:55 [ 1] [ 4] [0800] +16:34:55 [ 7] [ 10] [0320094242] +16:34:55 [ 11] [ 6] [072745] +16:34:55 [ 37] [ 12] [57916072745] +16:34:55 [ 70] [ 3] [301] +16:34:55 ============================================================================ +16:34:55 + + +waiting on router queue for slot.... +16:34:55 Sending to : +16:34:55 ============================================================================ +16:34:55 ============================================================================ +16:34:55 Slot Id : <89> +16:34:55 Transaction Type : RESPONSE +16:34:55 Received From : +16:34:55 ============================================================================ +16:34:55 FNo. Len. Field Value +16:34:55 ============================================================================ +16:34:55 [ 1] [ 4] [0810] +16:34:55 [ 7] [ 10] [0320094242] +16:34:55 [ 11] [ 6] [072745] +16:34:55 [ 37] [ 12] [579160727450] +16:34:55 [ 39] [ 2] [00] +16:34:55 [ 70] [ 3] [810] +16:34:55 ============================================================================ +16:34:55 Calculate Source COMM Id = 1 +16:34:55 ============================================================================ +16:34:55 + + +waiting on router queue for slot.... +16:34:58 ============================================================================ +16:34:58 Slot Id : <79> +16:34:58 Transaction Type : REQUEST +16:34:58 Received From : +16:34:58 ============================================================================ +16:34:58 FNo. Len. Field Value +16:34:58 ============================================================================ +16:34:58 [ 1] [ 4] [0200] +16:34:58 [ 2] [ 16] [6213544002113493] +16:34:58 [ 3] [ 6] [010000] +16:34:58 [ 4] [ 12] [000044000000] +16:34:58 [ 7] [ 10] [0320163248] +16:34:58 [ 11] [ 6] [951932] +16:34:58 [ 12] [ 6] [163248] +16:34:58 [ 13] [ 4] [0320] +16:34:58 [ 15] [ 4] [0320] +16:34:58 [ 18] [ 4] [6011] +16:34:58 [ 19] [ 3] [418] +16:34:58 [ 22] [ 3] [021] +16:34:58 [ 25] [ 2] [01] +16:34:58 [ 28] [ 9] [D00002000] +16:34:58 [ 32] [ 6] [668899] +16:34:58 [ 35] [ 32] [6213544002113493=491212011349798] +16:34:58 [ 37] [ 12] [507902025604] +16:34:58 [ 41] [ 8] [03414002] +16:34:58 [ 42] [ 15] [APT ] +16:34:58 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:34:58 [ 49] [ 3] [418] +16:34:58 [ 52] [ 16] [CA0FE7F6585D7BF2] +16:34:58 ============================================================================ +16:34:58 + + +waiting on router queue for slot.... +16:34:58 Sending to : +16:34:58 ============================================================================ +16:34:58 Sending to : +16:34:58 ============================================================================ +16:34:59 ============================================================================ +16:34:59 Slot Id : <79> +16:34:59 Transaction Type : REQUEST +16:34:59 Received From : +16:34:59 ============================================================================ +16:34:59 FNo. Len. Field Value +16:34:59 ============================================================================ +16:34:59 [ 1] [ 4] [0200] +16:34:59 [ 2] [ 16] [6213544002113493] +16:34:59 [ 3] [ 6] [010000] +16:34:59 [ 4] [ 12] [000044000000] +16:34:59 [ 7] [ 10] [0320163248] +16:34:59 [ 11] [ 6] [951932] +16:34:59 [ 12] [ 6] [163248] +16:34:59 [ 13] [ 4] [0320] +16:34:59 [ 15] [ 4] [0320] +16:34:59 [ 18] [ 4] [6011] +16:34:59 [ 19] [ 3] [418] +16:34:59 [ 22] [ 3] [021] +16:34:59 [ 25] [ 2] [01] +16:34:59 [ 28] [ 9] [D00002000] +16:34:59 [ 32] [ 6] [668899] +16:34:59 [ 35] [ 32] [6213544002113493=491212011349798] +16:34:59 [ 37] [ 12] [507902025604] +16:34:59 [ 41] [ 8] [03414002] +16:34:59 [ 42] [ 15] [APT ] +16:34:59 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:34:59 [ 49] [ 3] [418] +16:34:59 [ 52] [ 16] [CA0FE7F6585D7BF2] +16:34:59 ============================================================================ +16:34:59 + + +waiting on router queue for slot.... +16:34:59 Sending to : +16:34:59 ============================================================================ +16:34:59 ============================================================================ +16:34:59 Slot Id : <79> +16:34:59 Transaction Type : REQUEST +16:34:59 Received From : +16:34:59 ============================================================================ +16:34:59 FNo. Len. Field Value +16:34:59 ============================================================================ +16:34:59 [ 1] [ 4] [0200] +16:34:59 [ 2] [ 16] [6213544002113493] +16:34:59 [ 3] [ 6] [010000] +16:34:59 [ 4] [ 12] [000044000000] +16:34:59 [ 7] [ 10] [0320163248] +16:34:59 [ 11] [ 6] [951932] +16:34:59 [ 12] [ 6] [163248] +16:34:59 [ 13] [ 4] [0320] +16:34:59 [ 15] [ 4] [0320] +16:34:59 [ 18] [ 4] [6011] +16:34:59 [ 19] [ 3] [418] +16:34:59 [ 22] [ 3] [021] +16:34:59 [ 25] [ 2] [01] +16:34:59 [ 28] [ 9] [D00002000] +16:34:59 [ 32] [ 6] [668899] +16:34:59 [ 35] [ 32] [6213544002113493=491212011349798] +16:34:59 [ 37] [ 12] [507902025604] +16:34:59 [ 41] [ 8] [03414002] +16:34:59 [ 42] [ 15] [APT ] +16:34:59 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:34:59 [ 49] [ 3] [418] +16:34:59 [ 52] [ 16] [AB8DD2619E9B95AD] +16:34:59 ============================================================================ +16:34:59 + + +waiting on router queue for slot.... +16:34:59 Sending to : <0> +16:34:59 ============================================================================ +16:34:59 ============================================================================ +16:34:59 Slot Id : <79> +16:34:59 Transaction Type : RESPONSE +16:34:59 Received From : +16:34:59 ============================================================================ +16:34:59 FNo. Len. Field Value +16:34:59 ============================================================================ +16:34:59 [ 1] [ 4] [0210] +16:34:59 [ 2] [ 16] [6213544002113493] +16:34:59 [ 3] [ 6] [010000] +16:34:59 [ 4] [ 12] [000044000000] +16:34:59 [ 7] [ 10] [0320163248] +16:34:59 [ 11] [ 6] [951932] +16:34:59 [ 12] [ 6] [163248] +16:34:59 [ 13] [ 4] [0320] +16:34:59 [ 15] [ 4] [0320] +16:34:59 [ 18] [ 4] [6011] +16:34:59 [ 19] [ 3] [418] +16:34:59 [ 32] [ 6] [668899] +16:34:59 [ 35] [ 32] [6213544002113493=491212011349798] +16:34:59 [ 37] [ 12] [507902025604] +16:34:59 [ 38] [ 6] [151022] +16:34:59 [ 39] [ 2] [00] +16:34:59 [ 41] [ 8] [03414002] +16:34:59 [ 49] [ 3] [418] +16:34:59 [ 54] [ 40] [0001418C0000068192030002418C000006819203] +16:34:59 ============================================================================ +16:34:59 Sending to : +16:34:59 ============================================================================ +16:34:59 + + +waiting on router queue for slot.... +16:35:01 ============================================================================ +16:35:01 Slot Id : <79> +16:35:01 Transaction Type : RESPONSE +16:35:01 Received From : +16:35:01 ============================================================================ +16:35:01 FNo. Len. Field Value +16:35:01 ============================================================================ +16:35:01 [ 1] [ 4] [0210] +16:35:01 [ 2] [ 16] [6213544002113493] +16:35:01 [ 3] [ 6] [010000] +16:35:01 [ 4] [ 12] [000044000000] +16:35:01 [ 7] [ 10] [0320163248] +16:35:01 [ 11] [ 6] [951932] +16:35:01 [ 12] [ 6] [163248] +16:35:01 [ 13] [ 4] [0320] +16:35:01 [ 15] [ 4] [0320] +16:35:01 [ 18] [ 4] [6011] +16:35:01 [ 19] [ 3] [418] +16:35:01 [ 32] [ 6] [668899] +16:35:01 [ 35] [ 32] [6213544002113493=491212011349798] +16:35:01 [ 37] [ 12] [507902025604] +16:35:01 [ 38] [ 6] [151022] +16:35:01 [ 39] [ 2] [00] +16:35:01 [ 41] [ 8] [03414002] +16:35:01 [ 49] [ 3] [418] +16:35:01 [ 54] [ 40] [0001418C0000068192030002418C000006819203] +16:35:01 ============================================================================ +16:35:01 Calculate Source COMM Id = 4 +16:35:01 ============================================================================ +16:35:01 + + +waiting on router queue for slot.... +16:35:01 ============================================================================ +16:35:01 Slot Id : <59> +16:35:01 Transaction Type : REQUEST +16:35:01 Received From : +16:35:01 ============================================================================ +16:35:01 FNo. Len. Field Value +16:35:01 ============================================================================ +16:35:01 [ 1] [ 4] [0800] +16:35:01 [ 7] [ 10] [0320093408] +16:35:01 [ 11] [ 6] [157261] +16:35:01 [ 70] [ 3] [301] +16:35:01 ============================================================================ +16:35:01 + + +waiting on router queue for slot.... +16:35:01 Sending to : +16:35:01 ============================================================================ +16:35:01 ============================================================================ +16:35:01 Slot Id : <59> +16:35:01 Transaction Type : RESPONSE +16:35:01 Received From : +16:35:01 ============================================================================ +16:35:01 FNo. Len. Field Value +16:35:01 ============================================================================ +16:35:01 [ 1] [ 4] [0810] +16:35:01 [ 7] [ 10] [0320093408] +16:35:01 [ 11] [ 6] [157261] +16:35:01 [ 39] [ 2] [00] +16:35:01 [ 70] [ 3] [301] +16:35:01 ============================================================================ +16:35:01 Calculate Source COMM Id = 2 +16:35:01 ============================================================================ +16:35:01 + + +waiting on router queue for slot.... +16:35:10 ============================================================================ +16:35:10 Slot Id : <84> +16:35:10 Transaction Type : REQUEST +16:35:10 Received From : +16:35:10 ============================================================================ +16:35:10 FNo. Len. Field Value +16:35:10 ============================================================================ +16:35:10 [ 1] [ 4] [0200] +16:35:10 [ 2] [ 16] [6213544001571881] +16:35:10 [ 3] [ 6] [011000] +16:35:10 [ 4] [ 12] [000050000000] +16:35:10 [ 7] [ 10] [0320163531] +16:35:10 [ 11] [ 6] [208794] +16:35:10 [ 12] [ 6] [163037] +16:35:10 [ 13] [ 4] [0320] +16:35:10 [ 14] [ 4] [4912] +16:35:10 [ 15] [ 4] [0320] +16:35:10 [ 18] [ 4] [6011] +16:35:10 [ 19] [ 3] [418] +16:35:10 [ 22] [ 3] [021] +16:35:10 [ 25] [ 2] [01] +16:35:10 [ 28] [ 9] [D00002000] +16:35:10 [ 32] [ 6] [198901] +16:35:10 [ 35] [ 32] [6213544001571881=491212017188352] +16:35:10 [ 37] [ 12] [507916208794] +16:35:10 [ 41] [ 8] [19529001] +16:35:10 [ 42] [ 15] [000000041952901] +16:35:10 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:35:10 [ 49] [ 3] [418] +16:35:10 [ 52] [ 16] [6C8337BD0068C0CE] +16:35:10 ============================================================================ +16:35:10 + + +waiting on router queue for slot.... +16:35:10 Sending to : +16:35:10 ============================================================================ +16:35:10 Sending to : +16:35:10 ============================================================================ +16:35:11 ============================================================================ +16:35:11 Slot Id : <5> +16:35:11 Transaction Type : REQUEST +16:35:11 Received From : +16:35:11 ============================================================================ +16:35:11 FNo. Len. Field Value +16:35:11 ============================================================================ +16:35:11 [ 1] [ 4] [0200] +16:35:11 [ 2] [ 16] [1808930200022523] +16:35:11 [ 3] [ 6] [010000] +16:35:11 [ 4] [ 12] [000049000000] +16:35:11 [ 7] [ 10] [0320163301] +16:35:11 [ 11] [ 6] [951940] +16:35:11 [ 12] [ 6] [163301] +16:35:11 [ 13] [ 4] [0320] +16:35:11 [ 15] [ 4] [0320] +16:35:11 [ 18] [ 4] [6011] +16:35:11 [ 19] [ 3] [418] +16:35:11 [ 22] [ 3] [021] +16:35:11 [ 25] [ 2] [01] +16:35:11 [ 28] [ 9] [D00002000] +16:35:11 [ 32] [ 6] [668899] +16:35:11 [ 35] [ 27] [1808930200022523=1803500343] +16:35:11 [ 37] [ 12] [507901541746] +16:35:11 [ 41] [ 8] [03020016] +16:35:11 [ 42] [ 15] [APT ] +16:35:11 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +16:35:11 [ 49] [ 3] [418] +16:35:11 [ 52] [ 16] [F732823F52ECD640] +16:35:11 ============================================================================ +16:35:11 + + +waiting on router queue for slot.... +16:35:11 Sending to : +16:35:11 ============================================================================ +16:35:11 Sending to : +16:35:11 ============================================================================ +16:35:11 ============================================================================ +16:35:11 Slot Id : <84> +16:35:11 Transaction Type : REQUEST +16:35:11 Received From : +16:35:11 ============================================================================ +16:35:11 FNo. Len. Field Value +16:35:11 ============================================================================ +16:35:11 [ 1] [ 4] [0200] +16:35:11 [ 2] [ 16] [6213544001571881] +16:35:11 [ 3] [ 6] [011000] +16:35:11 [ 4] [ 12] [000050000000] +16:35:11 [ 7] [ 10] [0320163531] +16:35:11 [ 11] [ 6] [208794] +16:35:11 [ 12] [ 6] [163037] +16:35:11 [ 13] [ 4] [0320] +16:35:11 [ 14] [ 4] [4912] +16:35:11 [ 15] [ 4] [0320] +16:35:11 [ 18] [ 4] [6011] +16:35:11 [ 19] [ 3] [418] +16:35:11 [ 22] [ 3] [021] +16:35:11 [ 25] [ 2] [01] +16:35:11 [ 28] [ 9] [D00002000] +16:35:11 [ 32] [ 6] [198901] +16:35:11 [ 35] [ 32] [6213544001571881=491212017188352] +16:35:11 [ 37] [ 12] [507916208794] +16:35:11 [ 41] [ 8] [19529001] +16:35:11 [ 42] [ 15] [000000041952901] +16:35:11 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:35:11 [ 49] [ 3] [418] +16:35:11 [ 52] [ 16] [6C8337BD0068C0CE] +16:35:11 ============================================================================ +16:35:11 + + +waiting on router queue for slot.... +16:35:11 Sending to : +16:35:11 ============================================================================ +16:35:11 ============================================================================ +16:35:11 Slot Id : <84> +16:35:11 Transaction Type : REQUEST +16:35:11 Received From : +16:35:11 ============================================================================ +16:35:11 FNo. Len. Field Value +16:35:11 ============================================================================ +16:35:11 [ 1] [ 4] [0200] +16:35:11 [ 2] [ 16] [6213544001571881] +16:35:11 [ 3] [ 6] [011000] +16:35:11 [ 4] [ 12] [000050000000] +16:35:11 [ 7] [ 10] [0320163531] +16:35:11 [ 11] [ 6] [208794] +16:35:11 [ 12] [ 6] [163037] +16:35:11 [ 13] [ 4] [0320] +16:35:11 [ 14] [ 4] [4912] +16:35:11 [ 15] [ 4] [0320] +16:35:11 [ 18] [ 4] [6011] +16:35:11 [ 19] [ 3] [418] +16:35:11 [ 22] [ 3] [021] +16:35:11 [ 25] [ 2] [01] +16:35:11 [ 28] [ 9] [D00002000] +16:35:11 [ 32] [ 6] [198901] +16:35:11 [ 35] [ 32] [6213544001571881=491212017188352] +16:35:11 [ 37] [ 12] [507916208794] +16:35:11 [ 41] [ 8] [19529001] +16:35:11 [ 42] [ 15] [000000041952901] +16:35:11 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:35:11 [ 49] [ 3] [418] +16:35:11 [ 52] [ 16] [2D3F38B69008004B] +16:35:11 ============================================================================ +16:35:11 + + +waiting on router queue for slot.... +16:35:11 Sending to : <0> +16:35:11 ============================================================================ +16:35:11 ============================================================================ +16:35:11 Slot Id : <5> +16:35:11 Transaction Type : REQUEST +16:35:11 Received From : +16:35:11 ============================================================================ +16:35:11 FNo. Len. Field Value +16:35:11 ============================================================================ +16:35:11 [ 1] [ 4] [0200] +16:35:11 [ 2] [ 16] [1808930200022523] +16:35:11 [ 3] [ 6] [010000] +16:35:11 [ 4] [ 12] [000049000000] +16:35:11 [ 7] [ 10] [0320163301] +16:35:11 [ 11] [ 6] [951940] +16:35:11 [ 12] [ 6] [163301] +16:35:11 [ 13] [ 4] [0320] +16:35:11 [ 15] [ 4] [0320] +16:35:11 [ 18] [ 4] [6011] +16:35:11 [ 19] [ 3] [418] +16:35:11 [ 22] [ 3] [021] +16:35:11 [ 25] [ 2] [01] +16:35:11 [ 28] [ 9] [D00002000] +16:35:11 [ 32] [ 6] [668899] +16:35:11 [ 35] [ 27] [1808930200022523=1803500343] +16:35:11 [ 37] [ 12] [507901541746] +16:35:11 [ 41] [ 8] [03020016] +16:35:11 [ 42] [ 15] [APT ] +16:35:11 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +16:35:11 [ 49] [ 3] [418] +16:35:11 [ 52] [ 16] [F732823F52ECD640] +16:35:11 ============================================================================ +16:35:11 + + +waiting on router queue for slot.... +16:35:11 Sending to : +16:35:11 ============================================================================ +16:35:11 ============================================================================ +16:35:11 Slot Id : <5> +16:35:11 Transaction Type : REQUEST +16:35:11 Received From : +16:35:11 ============================================================================ +16:35:11 FNo. Len. Field Value +16:35:11 ============================================================================ +16:35:11 [ 1] [ 4] [0200] +16:35:11 [ 2] [ 16] [1808930200022523] +16:35:11 [ 3] [ 6] [010000] +16:35:11 [ 4] [ 12] [000049000000] +16:35:11 [ 7] [ 10] [0320163301] +16:35:11 [ 11] [ 6] [951940] +16:35:11 [ 12] [ 6] [163301] +16:35:11 [ 13] [ 4] [0320] +16:35:11 [ 15] [ 4] [0320] +16:35:11 [ 18] [ 4] [6011] +16:35:11 [ 19] [ 3] [418] +16:35:11 [ 22] [ 3] [021] +16:35:11 [ 25] [ 2] [01] +16:35:11 [ 28] [ 9] [D00002000] +16:35:11 [ 32] [ 6] [668899] +16:35:11 [ 35] [ 27] [1808930200022523=1803500343] +16:35:11 [ 37] [ 12] [507901541746] +16:35:11 [ 41] [ 8] [03020016] +16:35:11 [ 42] [ 15] [APT ] +16:35:11 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +16:35:11 [ 49] [ 3] [418] +16:35:11 [ 52] [ 16] [853B99B5310E1001] +16:35:11 ============================================================================ +16:35:11 + + +waiting on router queue for slot.... +16:35:11 Sending to : <2> +16:35:11 ============================================================================ +16:35:11 ============================================================================ +16:35:11 Slot Id : <84> +16:35:11 Transaction Type : RESPONSE +16:35:11 Received From : +16:35:11 ============================================================================ +16:35:11 FNo. Len. Field Value +16:35:11 ============================================================================ +16:35:11 [ 1] [ 4] [0210] +16:35:11 [ 2] [ 16] [6213544001571881] +16:35:11 [ 3] [ 6] [011000] +16:35:11 [ 4] [ 12] [000050000000] +16:35:11 [ 7] [ 10] [0320163531] +16:35:11 [ 11] [ 6] [208794] +16:35:11 [ 12] [ 6] [163037] +16:35:11 [ 13] [ 4] [0320] +16:35:11 [ 15] [ 4] [0320] +16:35:11 [ 18] [ 4] [6011] +16:35:11 [ 19] [ 3] [418] +16:35:11 [ 32] [ 6] [198901] +16:35:11 [ 35] [ 32] [6213544001571881=491212017188352] +16:35:11 [ 37] [ 12] [507916208794] +16:35:11 [ 38] [ 6] [490559] +16:35:11 [ 39] [ 2] [00] +16:35:11 [ 41] [ 8] [19529001] +16:35:11 [ 49] [ 3] [418] +16:35:11 [ 54] [ 40] [1001418C0000096437831002418C000009643783] +16:35:11 ============================================================================ +16:35:11 Sending to : +16:35:11 ============================================================================ +16:35:11 + + +waiting on router queue for slot.... +16:35:13 ============================================================================ +16:35:13 Slot Id : <84> +16:35:13 Transaction Type : RESPONSE +16:35:13 Received From : +16:35:13 ============================================================================ +16:35:13 FNo. Len. Field Value +16:35:13 ============================================================================ +16:35:13 [ 1] [ 4] [0210] +16:35:13 [ 2] [ 16] [6213544001571881] +16:35:13 [ 3] [ 6] [011000] +16:35:13 [ 4] [ 12] [000050000000] +16:35:13 [ 7] [ 10] [0320163531] +16:35:13 [ 11] [ 6] [208794] +16:35:13 [ 12] [ 6] [163037] +16:35:13 [ 13] [ 4] [0320] +16:35:13 [ 15] [ 4] [0320] +16:35:13 [ 18] [ 4] [6011] +16:35:13 [ 19] [ 3] [418] +16:35:13 [ 32] [ 6] [198901] +16:35:13 [ 35] [ 32] [6213544001571881=491212017188352] +16:35:13 [ 37] [ 12] [507916208794] +16:35:13 [ 38] [ 6] [490559] +16:35:13 [ 39] [ 2] [00] +16:35:13 [ 41] [ 8] [19529001] +16:35:13 [ 49] [ 3] [418] +16:35:13 [ 54] [ 40] [1001418C0000096437831002418C000009643783] +16:35:13 ============================================================================ +16:35:13 Calculate Source COMM Id = 5 +16:35:13 ============================================================================ +16:35:13 + + +waiting on router queue for slot.... +16:35:16 ============================================================================ +16:35:16 Slot Id : <5> +16:35:16 Transaction Type : RESPONSE +16:35:16 Received From : +16:35:16 ============================================================================ +16:35:16 FNo. Len. Field Value +16:35:16 ============================================================================ +16:35:16 [ 1] [ 4] [0210] +16:35:16 [ 2] [ 16] [1808930200022523] +16:35:16 [ 3] [ 6] [010000] +16:35:16 [ 4] [ 12] [000049000000] +16:35:16 [ 6] [ 12] [000049000000] +16:35:16 [ 7] [ 10] [0320163301] +16:35:16 [ 11] [ 6] [951940] +16:35:16 [ 12] [ 6] [163301] +16:35:16 [ 13] [ 4] [0320] +16:35:16 [ 18] [ 4] [6011] +16:35:16 [ 19] [ 3] [418] +16:35:16 [ 22] [ 3] [021] +16:35:16 [ 32] [ 6] [668899] +16:35:16 [ 35] [ 27] [1808930200022523=1803500343] +16:35:16 [ 37] [ 12] [507901541746] +16:35:16 [ 38] [ 6] [951940] +16:35:16 [ 39] [ 2] [00] +16:35:16 [ 41] [ 8] [03020016] +16:35:16 [ 49] [ 3] [418] +16:35:16 [ 52] [ 16] [853B99B5310E1001] +16:35:16 [ 54] [ 20] [1001418C000002780100] +16:35:16 ============================================================================ +16:35:16 Sending to : +16:35:16 ============================================================================ +16:35:16 + + +waiting on router queue for slot.... +16:35:17 ============================================================================ +16:35:17 Slot Id : <5> +16:35:17 Transaction Type : RESPONSE +16:35:17 Received From : +16:35:17 ============================================================================ +16:35:17 FNo. Len. Field Value +16:35:17 ============================================================================ +16:35:17 [ 1] [ 4] [0210] +16:35:17 [ 2] [ 16] [1808930200022523] +16:35:17 [ 3] [ 6] [010000] +16:35:17 [ 4] [ 12] [000049000000] +16:35:17 [ 6] [ 12] [000049000000] +16:35:17 [ 7] [ 10] [0320163301] +16:35:17 [ 11] [ 6] [951940] +16:35:17 [ 12] [ 6] [163301] +16:35:17 [ 13] [ 4] [0320] +16:35:17 [ 18] [ 4] [6011] +16:35:17 [ 19] [ 3] [418] +16:35:17 [ 22] [ 3] [021] +16:35:17 [ 32] [ 6] [668899] +16:35:17 [ 35] [ 27] [1808930200022523=1803500343] +16:35:17 [ 37] [ 12] [507901541746] +16:35:17 [ 38] [ 6] [951940] +16:35:17 [ 39] [ 2] [00] +16:35:17 [ 41] [ 8] [03020016] +16:35:17 [ 49] [ 3] [418] +16:35:17 [ 52] [ 16] [853B99B5310E1001] +16:35:17 [ 54] [ 20] [1001418C000002780100] +16:35:17 ============================================================================ +16:35:17 Calculate Source COMM Id = 4 +16:35:17 ============================================================================ +16:35:17 + + +waiting on router queue for slot.... +16:35:22 ============================================================================ +16:35:22 Slot Id : <67> +16:35:22 Transaction Type : REQUEST +16:35:22 Received From : +16:35:22 ============================================================================ +16:35:22 FNo. Len. Field Value +16:35:22 ============================================================================ +16:35:22 [ 1] [ 4] [0800] +16:35:22 [ 7] [ 10] [0320093429] +16:35:22 [ 11] [ 6] [157262] +16:35:22 [ 70] [ 3] [301] +16:35:22 ============================================================================ +16:35:22 + + +waiting on router queue for slot.... +16:35:22 Sending to : +16:35:22 ============================================================================ +16:35:22 ============================================================================ +16:35:22 Slot Id : <67> +16:35:22 Transaction Type : RESPONSE +16:35:22 Received From : +16:35:22 ============================================================================ +16:35:22 FNo. Len. Field Value +16:35:22 ============================================================================ +16:35:22 [ 1] [ 4] [0810] +16:35:22 [ 7] [ 10] [0320093429] +16:35:22 [ 11] [ 6] [157262] +16:35:22 [ 39] [ 2] [00] +16:35:22 [ 70] [ 3] [301] +16:35:22 ============================================================================ +16:35:22 Calculate Source COMM Id = 2 +16:35:22 ============================================================================ +16:35:22 + + +waiting on router queue for slot.... +16:35:27 ============================================================================ +16:35:27 Slot Id : <62> +16:35:27 Transaction Type : REQUEST +16:35:27 Received From : +16:35:27 ============================================================================ +16:35:27 FNo. Len. Field Value +16:35:27 ============================================================================ +16:35:27 [ 1] [ 4] [0200] +16:35:27 [ 2] [ 16] [6213541000306210] +16:35:27 [ 3] [ 6] [011000] +16:35:27 [ 4] [ 12] [000100000000] +16:35:27 [ 7] [ 10] [0320163547] +16:35:27 [ 11] [ 6] [208799] +16:35:27 [ 12] [ 6] [162959] +16:35:27 [ 13] [ 4] [0320] +16:35:27 [ 14] [ 4] [4912] +16:35:27 [ 15] [ 4] [0320] +16:35:27 [ 18] [ 4] [6011] +16:35:27 [ 19] [ 3] [418] +16:35:27 [ 22] [ 3] [021] +16:35:27 [ 25] [ 2] [01] +16:35:27 [ 28] [ 9] [D00002000] +16:35:27 [ 32] [ 6] [198901] +16:35:27 [ 35] [ 32] [6213541000306210=491212010621645] +16:35:27 [ 37] [ 12] [507916208799] +16:35:27 [ 41] [ 8] [01529018] +16:35:27 [ 42] [ 15] [000000041529018] +16:35:27 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +16:35:27 [ 49] [ 3] [418] +16:35:27 [ 52] [ 16] [554CF419FFBCA15E] +16:35:27 ============================================================================ +16:35:27 + + +waiting on router queue for slot.... +16:35:27 Sending to : +16:35:27 ============================================================================ +16:35:27 Sending to : +16:35:27 ============================================================================ +16:35:27 ============================================================================ +16:35:27 Slot Id : <62> +16:35:27 Transaction Type : REQUEST +16:35:27 Received From : +16:35:27 ============================================================================ +16:35:27 FNo. Len. Field Value +16:35:27 ============================================================================ +16:35:27 [ 1] [ 4] [0200] +16:35:27 [ 2] [ 16] [6213541000306210] +16:35:27 [ 3] [ 6] [011000] +16:35:27 [ 4] [ 12] [000100000000] +16:35:27 [ 7] [ 10] [0320163547] +16:35:27 [ 11] [ 6] [208799] +16:35:27 [ 12] [ 6] [162959] +16:35:27 [ 13] [ 4] [0320] +16:35:27 [ 14] [ 4] [4912] +16:35:27 [ 15] [ 4] [0320] +16:35:27 [ 18] [ 4] [6011] +16:35:27 [ 19] [ 3] [418] +16:35:27 [ 22] [ 3] [021] +16:35:27 [ 25] [ 2] [01] +16:35:27 [ 28] [ 9] [D00002000] +16:35:27 [ 32] [ 6] [198901] +16:35:27 [ 35] [ 32] [6213541000306210=491212010621645] +16:35:27 [ 37] [ 12] [507916208799] +16:35:27 [ 41] [ 8] [01529018] +16:35:27 [ 42] [ 15] [000000041529018] +16:35:27 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +16:35:27 [ 49] [ 3] [418] +16:35:27 [ 52] [ 16] [554CF419FFBCA15E] +16:35:27 ============================================================================ +16:35:27 + + +waiting on router queue for slot.... +16:35:27 Sending to : +16:35:27 ============================================================================ +16:35:27 ============================================================================ +16:35:27 Slot Id : <62> +16:35:27 Transaction Type : REQUEST +16:35:27 Received From : +16:35:27 ============================================================================ +16:35:27 FNo. Len. Field Value +16:35:27 ============================================================================ +16:35:27 [ 1] [ 4] [0200] +16:35:27 [ 2] [ 16] [6213541000306210] +16:35:27 [ 3] [ 6] [011000] +16:35:27 [ 4] [ 12] [000100000000] +16:35:27 [ 7] [ 10] [0320163547] +16:35:27 [ 11] [ 6] [208799] +16:35:27 [ 12] [ 6] [162959] +16:35:27 [ 13] [ 4] [0320] +16:35:27 [ 14] [ 4] [4912] +16:35:27 [ 15] [ 4] [0320] +16:35:27 [ 18] [ 4] [6011] +16:35:27 [ 19] [ 3] [418] +16:35:27 [ 22] [ 3] [021] +16:35:27 [ 25] [ 2] [01] +16:35:27 [ 28] [ 9] [D00002000] +16:35:27 [ 32] [ 6] [198901] +16:35:27 [ 35] [ 32] [6213541000306210=491212010621645] +16:35:27 [ 37] [ 12] [507916208799] +16:35:27 [ 41] [ 8] [01529018] +16:35:27 [ 42] [ 15] [000000041529018] +16:35:27 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +16:35:27 [ 49] [ 3] [418] +16:35:27 [ 52] [ 16] [017958A10B1BBD13] +16:35:27 ============================================================================ +16:35:27 + + +waiting on router queue for slot.... +16:35:27 Sending to : <0> +16:35:27 ============================================================================ +16:35:28 ============================================================================ +16:35:28 Slot Id : <62> +16:35:28 Transaction Type : RESPONSE +16:35:28 Received From : +16:35:28 ============================================================================ +16:35:28 FNo. Len. Field Value +16:35:28 ============================================================================ +16:35:28 [ 1] [ 4] [0210] +16:35:28 [ 2] [ 16] [6213541000306210] +16:35:28 [ 3] [ 6] [011000] +16:35:28 [ 4] [ 12] [000100000000] +16:35:28 [ 7] [ 10] [0320163547] +16:35:28 [ 11] [ 6] [208799] +16:35:28 [ 12] [ 6] [162959] +16:35:28 [ 13] [ 4] [0320] +16:35:28 [ 15] [ 4] [0320] +16:35:28 [ 18] [ 4] [6011] +16:35:28 [ 19] [ 3] [418] +16:35:28 [ 32] [ 6] [198901] +16:35:28 [ 35] [ 32] [6213541000306210=491212010621645] +16:35:28 [ 37] [ 12] [507916208799] +16:35:28 [ 38] [ 6] [735386] +16:35:28 [ 39] [ 2] [00] +16:35:28 [ 41] [ 8] [01529018] +16:35:28 [ 49] [ 3] [418] +16:35:28 [ 54] [ 40] [1001418C0025128296951002418C002512829695] +16:35:28 ============================================================================ +16:35:28 Sending to : +16:35:28 ============================================================================ +16:35:28 + + +waiting on router queue for slot.... +16:35:29 ============================================================================ +16:35:29 Slot Id : <39> +16:35:29 Transaction Type : REQUEST +16:35:29 Received From : +16:35:29 ============================================================================ +16:35:29 FNo. Len. Field Value +16:35:29 ============================================================================ +16:35:29 [ 1] [ 4] [0200] +16:35:29 [ 2] [ 16] [2206990000064295] +16:35:29 [ 3] [ 6] [010000] +16:35:29 [ 4] [ 12] [000050000000] +16:35:29 [ 7] [ 10] [0320163524] +16:35:29 [ 11] [ 6] [801338] +16:35:29 [ 12] [ 6] [163524] +16:35:29 [ 13] [ 4] [0320] +16:35:29 [ 15] [ 4] [0320] +16:35:29 [ 18] [ 4] [6011] +16:35:29 [ 22] [ 3] [900] +16:35:29 [ 25] [ 2] [02] +16:35:29 [ 28] [ 9] [D00002000] +16:35:29 [ 32] [ 6] [621354] +16:35:29 [ 35] [ 32] [2206990000064295=970612617540474] +16:35:29 [ 37] [ 12] [507903975662] +16:35:29 [ 41] [ 8] [01011300] +16:35:29 [ 42] [ 15] [NATIVE ] +16:35:29 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +16:35:29 [ 49] [ 3] [418] +16:35:29 [ 52] [ 16] [ED18DF2B24BBAA6C] +16:35:29 ============================================================================ +16:35:29 + + +waiting on router queue for slot.... +16:35:29 Sending to : +16:35:29 ============================================================================ +16:35:29 Sending to : +16:35:29 ============================================================================ +16:35:29 ============================================================================ +16:35:29 Slot Id : <39> +16:35:29 Transaction Type : REQUEST +16:35:29 Received From : +16:35:29 ============================================================================ +16:35:29 FNo. Len. Field Value +16:35:29 ============================================================================ +16:35:29 [ 1] [ 4] [0200] +16:35:29 [ 2] [ 16] [2206990000064295] +16:35:29 [ 3] [ 6] [010000] +16:35:29 [ 4] [ 12] [000050000000] +16:35:29 [ 7] [ 10] [0320163524] +16:35:29 [ 11] [ 6] [801338] +16:35:29 [ 12] [ 6] [163524] +16:35:29 [ 13] [ 4] [0320] +16:35:29 [ 15] [ 4] [0320] +16:35:29 [ 18] [ 4] [6011] +16:35:29 [ 22] [ 3] [900] +16:35:29 [ 25] [ 2] [02] +16:35:29 [ 28] [ 9] [D00002000] +16:35:29 [ 32] [ 6] [621354] +16:35:29 [ 35] [ 32] [2206990000064295=970612617540474] +16:35:29 [ 37] [ 12] [507903975662] +16:35:29 [ 41] [ 8] [01011300] +16:35:29 [ 42] [ 15] [NATIVE ] +16:35:29 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +16:35:29 [ 49] [ 3] [418] +16:35:29 [ 52] [ 16] [ED18DF2B24BBAA6C] +16:35:29 ============================================================================ +16:35:29 + + +waiting on router queue for slot.... +16:35:29 Sending to : +16:35:29 ============================================================================ +16:35:29 ============================================================================ +16:35:29 Slot Id : <39> +16:35:29 Transaction Type : REQUEST +16:35:29 Received From : +16:35:29 ============================================================================ +16:35:29 FNo. Len. Field Value +16:35:29 ============================================================================ +16:35:29 [ 1] [ 4] [0200] +16:35:29 [ 2] [ 16] [2206990000064295] +16:35:29 [ 3] [ 6] [010000] +16:35:29 [ 4] [ 12] [000050000000] +16:35:29 [ 7] [ 10] [0320163524] +16:35:29 [ 11] [ 6] [801338] +16:35:29 [ 12] [ 6] [163524] +16:35:29 [ 13] [ 4] [0320] +16:35:29 [ 15] [ 4] [0320] +16:35:29 [ 18] [ 4] [6011] +16:35:29 [ 22] [ 3] [900] +16:35:29 [ 25] [ 2] [02] +16:35:29 [ 28] [ 9] [D00002000] +16:35:29 [ 32] [ 6] [621354] +16:35:29 [ 35] [ 32] [2206990000064295=970612617540474] +16:35:29 [ 37] [ 12] [507903975662] +16:35:29 [ 41] [ 8] [01011300] +16:35:29 [ 42] [ 15] [NATIVE ] +16:35:29 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +16:35:29 [ 49] [ 3] [418] +16:35:29 [ 52] [ 16] [36081CF6D109956B] +16:35:29 ============================================================================ +16:35:29 + + +waiting on router queue for slot.... +16:35:29 Sending to : <1> +16:35:29 ============================================================================ +16:35:30 ============================================================================ +16:35:30 Slot Id : <62> +16:35:30 Transaction Type : RESPONSE +16:35:30 Received From : +16:35:30 ============================================================================ +16:35:30 FNo. Len. Field Value +16:35:30 ============================================================================ +16:35:30 [ 1] [ 4] [0210] +16:35:30 [ 2] [ 16] [6213541000306210] +16:35:30 [ 3] [ 6] [011000] +16:35:30 [ 4] [ 12] [000100000000] +16:35:30 [ 7] [ 10] [0320163547] +16:35:30 [ 11] [ 6] [208799] +16:35:30 [ 12] [ 6] [162959] +16:35:30 [ 13] [ 4] [0320] +16:35:30 [ 15] [ 4] [0320] +16:35:30 [ 18] [ 4] [6011] +16:35:30 [ 19] [ 3] [418] +16:35:30 [ 32] [ 6] [198901] +16:35:30 [ 35] [ 32] [6213541000306210=491212010621645] +16:35:30 [ 37] [ 12] [507916208799] +16:35:30 [ 38] [ 6] [735386] +16:35:30 [ 39] [ 2] [00] +16:35:30 [ 41] [ 8] [01529018] +16:35:30 [ 49] [ 3] [418] +16:35:30 [ 54] [ 40] [1001418C0025128296951002418C002512829695] +16:35:30 ============================================================================ +16:35:30 Calculate Source COMM Id = 5 +16:35:30 ============================================================================ +16:35:30 + + +waiting on router queue for slot.... +16:35:30 ============================================================================ +16:35:30 Slot Id : <58> +16:35:30 Transaction Type : REQUEST +16:35:30 Received From : +16:35:30 ============================================================================ +16:35:30 FNo. Len. Field Value +16:35:30 ============================================================================ +16:35:30 [ 1] [ 4] [0800] +16:35:30 [ 7] [ 10] [0320234718] +16:35:30 [ 11] [ 6] [164718] +16:35:30 [ 37] [ 12] [57916164718] +16:35:30 [ 70] [ 3] [301] +16:35:30 ============================================================================ +16:35:30 + + +waiting on router queue for slot.... +16:35:30 Sending to : +16:35:30 ============================================================================ +16:35:30 ============================================================================ +16:35:30 Slot Id : <58> +16:35:30 Transaction Type : RESPONSE +16:35:30 Received From : +16:35:30 ============================================================================ +16:35:30 FNo. Len. Field Value +16:35:30 ============================================================================ +16:35:30 [ 1] [ 4] [0810] +16:35:30 [ 7] [ 10] [0320234718] +16:35:30 [ 11] [ 6] [164718] +16:35:30 [ 37] [ 12] [579161647180] +16:35:30 [ 39] [ 2] [00] +16:35:30 [ 70] [ 3] [810] +16:35:30 ============================================================================ +16:35:30 Calculate Source COMM Id = 6 +16:35:30 ============================================================================ +16:35:30 + + +waiting on router queue for slot.... +16:35:31 ============================================================================ +16:35:31 Slot Id : <51> +16:35:31 Transaction Type : REQUEST +16:35:31 Received From : +16:35:31 ============================================================================ +16:35:31 FNo. Len. Field Value +16:35:31 ============================================================================ +16:35:31 [ 1] [ 4] [0200] +16:35:31 [ 2] [ 16] [6213545000734214] +16:35:31 [ 3] [ 6] [311000] +16:35:31 [ 4] [ 12] [000000000000] +16:35:31 [ 7] [ 10] [0320164318] +16:35:31 [ 11] [ 6] [240862] +16:35:31 [ 12] [ 6] [164318] +16:35:31 [ 13] [ 4] [0320] +16:35:31 [ 14] [ 4] [4912] +16:35:31 [ 15] [ 4] [0320] +16:35:31 [ 18] [ 4] [6011] +16:35:31 [ 22] [ 3] [900] +16:35:31 [ 25] [ 2] [02] +16:35:31 [ 28] [ 9] [000000000] +16:35:31 [ 32] [ 6] [220699] +16:35:31 [ 35] [ 32] [6213545000734214=491212013421145] +16:35:31 [ 37] [ 12] [507900410451] +16:35:31 [ 41] [ 8] [08000300] +16:35:31 [ 42] [ 15] [APTRA ] +16:35:31 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:35:31 [ 49] [ 3] [418] +16:35:31 [ 52] [ 16] [5D3A7AF253C426B7] +16:35:31 ============================================================================ +16:35:31 + + +waiting on router queue for slot.... +16:35:31 Sending to : +16:35:31 ============================================================================ +16:35:31 Sending to : +16:35:31 ============================================================================ +16:35:31 ============================================================================ +16:35:31 Slot Id : <82> +16:35:31 Transaction Type : REQUEST +16:35:31 Received From : +16:35:31 ============================================================================ +16:35:31 FNo. Len. Field Value +16:35:31 ============================================================================ +16:35:31 [ 1] [ 4] [0200] +16:35:31 [ 2] [ 16] [6688990106047002] +16:35:31 [ 3] [ 6] [010000] +16:35:31 [ 4] [ 12] [000100000000] +16:35:31 [ 7] [ 10] [0320163526] +16:35:31 [ 11] [ 6] [801351] +16:35:31 [ 12] [ 6] [163526] +16:35:31 [ 13] [ 4] [0320] +16:35:31 [ 15] [ 4] [0320] +16:35:31 [ 18] [ 4] [6011] +16:35:31 [ 22] [ 3] [900] +16:35:31 [ 25] [ 2] [02] +16:35:31 [ 28] [ 9] [D00002000] +16:35:31 [ 32] [ 6] [621354] +16:35:31 [ 35] [ 37] [6688990106047002=43111231700244000000] +16:35:31 [ 37] [ 12] [507903499608] +16:35:31 [ 41] [ 8] [06002200] +16:35:31 [ 42] [ 15] [NATIVE ] +16:35:31 [ 43] [ 40] [Beng Market Beng LAO] +16:35:31 [ 49] [ 3] [418] +16:35:31 [ 52] [ 16] [08BEF2A6705000D5] +16:35:31 ============================================================================ +16:35:31 + + +waiting on router queue for slot.... +16:35:31 Sending to : +16:35:31 ============================================================================ +16:35:31 Sending to : +16:35:31 ============================================================================ +16:35:31 ============================================================================ +16:35:31 Slot Id : <51> +16:35:31 Transaction Type : REQUEST +16:35:31 Received From : +16:35:31 ============================================================================ +16:35:31 FNo. Len. Field Value +16:35:31 ============================================================================ +16:35:31 [ 1] [ 4] [0200] +16:35:31 [ 2] [ 16] [6213545000734214] +16:35:31 [ 3] [ 6] [311000] +16:35:31 [ 4] [ 12] [000000000000] +16:35:31 [ 7] [ 10] [0320164318] +16:35:31 [ 11] [ 6] [240862] +16:35:31 [ 12] [ 6] [164318] +16:35:31 [ 13] [ 4] [0320] +16:35:31 [ 14] [ 4] [4912] +16:35:31 [ 15] [ 4] [0320] +16:35:31 [ 18] [ 4] [6011] +16:35:31 [ 22] [ 3] [900] +16:35:31 [ 25] [ 2] [02] +16:35:31 [ 28] [ 9] [000000000] +16:35:31 [ 32] [ 6] [220699] +16:35:31 [ 35] [ 32] [6213545000734214=491212013421145] +16:35:31 [ 37] [ 12] [507900410451] +16:35:31 [ 41] [ 8] [08000300] +16:35:31 [ 42] [ 15] [APTRA ] +16:35:31 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:35:31 [ 49] [ 3] [418] +16:35:31 [ 52] [ 16] [5D3A7AF253C426B7] +16:35:31 ============================================================================ +16:35:31 + + +waiting on router queue for slot.... +16:35:31 Sending to : +16:35:31 ============================================================================ +16:35:31 ============================================================================ +16:35:31 Slot Id : <51> +16:35:31 Transaction Type : REQUEST +16:35:31 Received From : +16:35:31 ============================================================================ +16:35:31 FNo. Len. Field Value +16:35:31 ============================================================================ +16:35:31 [ 1] [ 4] [0200] +16:35:31 [ 2] [ 16] [6213545000734214] +16:35:31 [ 3] [ 6] [311000] +16:35:31 [ 4] [ 12] [000000000000] +16:35:31 [ 7] [ 10] [0320164318] +16:35:31 [ 11] [ 6] [240862] +16:35:31 [ 12] [ 6] [164318] +16:35:31 [ 13] [ 4] [0320] +16:35:31 [ 14] [ 4] [4912] +16:35:31 [ 15] [ 4] [0320] +16:35:31 [ 18] [ 4] [6011] +16:35:31 [ 22] [ 3] [900] +16:35:31 [ 25] [ 2] [02] +16:35:31 [ 28] [ 9] [000000000] +16:35:31 [ 32] [ 6] [220699] +16:35:31 [ 35] [ 32] [6213545000734214=491212013421145] +16:35:31 [ 37] [ 12] [507900410451] +16:35:31 [ 41] [ 8] [08000300] +16:35:31 [ 42] [ 15] [APTRA ] +16:35:31 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:35:31 [ 49] [ 3] [418] +16:35:31 [ 52] [ 16] [0BE5AA1DC8A39314] +16:35:31 ============================================================================ +16:35:31 + + +waiting on router queue for slot.... +16:35:31 Sending to : <0> +16:35:31 ============================================================================ +16:35:31 ============================================================================ +16:35:31 Slot Id : <82> +16:35:31 Transaction Type : REQUEST +16:35:31 Received From : +16:35:31 ============================================================================ +16:35:31 FNo. Len. Field Value +16:35:31 ============================================================================ +16:35:31 [ 1] [ 4] [0200] +16:35:31 [ 2] [ 16] [6688990106047002] +16:35:31 [ 3] [ 6] [010000] +16:35:31 [ 4] [ 12] [000100000000] +16:35:31 [ 7] [ 10] [0320163526] +16:35:31 [ 11] [ 6] [801351] +16:35:31 [ 12] [ 6] [163526] +16:35:31 [ 13] [ 4] [0320] +16:35:31 [ 15] [ 4] [0320] +16:35:31 [ 18] [ 4] [6011] +16:35:31 [ 22] [ 3] [900] +16:35:31 [ 25] [ 2] [02] +16:35:31 [ 28] [ 9] [D00002000] +16:35:31 [ 32] [ 6] [621354] +16:35:31 [ 35] [ 37] [6688990106047002=43111231700244000000] +16:35:31 [ 37] [ 12] [507903499608] +16:35:31 [ 41] [ 8] [06002200] +16:35:31 [ 42] [ 15] [NATIVE ] +16:35:31 [ 43] [ 40] [Beng Market Beng LAO] +16:35:31 [ 49] [ 3] [418] +16:35:31 [ 52] [ 16] [08BEF2A6705000D5] +16:35:31 ============================================================================ +16:35:31 + + +waiting on router queue for slot.... +16:35:31 Sending to : +16:35:31 ============================================================================ +16:35:31 ============================================================================ +16:35:31 Slot Id : <82> +16:35:31 Transaction Type : REQUEST +16:35:31 Received From : +16:35:31 ============================================================================ +16:35:31 FNo. Len. Field Value +16:35:31 ============================================================================ +16:35:31 [ 1] [ 4] [0200] +16:35:31 [ 2] [ 16] [6688990106047002] +16:35:31 [ 3] [ 6] [010000] +16:35:31 [ 4] [ 12] [000100000000] +16:35:31 [ 7] [ 10] [0320163526] +16:35:31 [ 11] [ 6] [801351] +16:35:31 [ 12] [ 6] [163526] +16:35:31 [ 13] [ 4] [0320] +16:35:31 [ 15] [ 4] [0320] +16:35:31 [ 18] [ 4] [6011] +16:35:31 [ 22] [ 3] [900] +16:35:31 [ 25] [ 2] [02] +16:35:31 [ 28] [ 9] [D00002000] +16:35:31 [ 32] [ 6] [621354] +16:35:31 [ 35] [ 37] [6688990106047002=43111231700244000000] +16:35:31 [ 37] [ 12] [507903499608] +16:35:31 [ 41] [ 8] [06002200] +16:35:31 [ 42] [ 15] [NATIVE ] +16:35:31 [ 43] [ 40] [Beng Market Beng LAO] +16:35:31 [ 49] [ 3] [418] +16:35:31 [ 52] [ 16] [AFA44F3B5FCA32E5] +16:35:31 ============================================================================ +16:35:31 + + +waiting on router queue for slot.... +16:35:31 Sending to : <4> +16:35:31 ============================================================================ +16:35:31 ============================================================================ +16:35:31 Slot Id : <39> +16:35:31 Transaction Type : RESPONSE +16:35:31 Received From : +16:35:31 ============================================================================ +16:35:31 FNo. Len. Field Value +16:35:31 ============================================================================ +16:35:31 [ 1] [ 4] [0210] +16:35:31 [ 2] [ 16] [2206990000064295] +16:35:31 [ 3] [ 6] [010000] +16:35:31 [ 4] [ 12] [000050000000] +16:35:31 [ 7] [ 10] [0320163524] +16:35:31 [ 11] [ 6] [801338] +16:35:31 [ 12] [ 6] [163524] +16:35:31 [ 13] [ 4] [0320] +16:35:31 [ 15] [ 4] [0320] +16:35:31 [ 18] [ 4] [6011] +16:35:31 [ 32] [ 6] [621354] +16:35:31 [ 35] [ 32] [2206990000064295=970612617540474] +16:35:31 [ 37] [ 12] [507903975662] +16:35:31 [ 38] [ 6] [467448] +16:35:31 [ 39] [ 2] [00] +16:35:31 [ 41] [ 8] [01011300] +16:35:31 [ 49] [ 3] [418] +16:35:31 [ 54] [ 40] [0001418C0004496103000002418C000449610300] +16:35:31 ============================================================================ +16:35:31 Sending to : +16:35:31 ============================================================================ +16:35:31 + + +waiting on router queue for slot.... +16:35:32 ============================================================================ +16:35:32 Slot Id : <51> +16:35:32 Transaction Type : RESPONSE +16:35:32 Received From : +16:35:32 ============================================================================ +16:35:32 FNo. Len. Field Value +16:35:32 ============================================================================ +16:35:32 [ 1] [ 4] [0210] +16:35:32 [ 2] [ 16] [6213545000734214] +16:35:32 [ 3] [ 6] [311000] +16:35:32 [ 4] [ 12] [000000000000] +16:35:32 [ 7] [ 10] [0320164318] +16:35:32 [ 11] [ 6] [240862] +16:35:32 [ 12] [ 6] [164318] +16:35:32 [ 13] [ 4] [0320] +16:35:32 [ 15] [ 4] [0320] +16:35:32 [ 18] [ 4] [6011] +16:35:32 [ 32] [ 6] [220699] +16:35:32 [ 35] [ 32] [6213545000734214=491212013421145] +16:35:32 [ 37] [ 12] [507900410451] +16:35:32 [ 38] [ 6] [704696] +16:35:32 [ 39] [ 2] [00] +16:35:32 [ 41] [ 8] [08000300] +16:35:32 [ 49] [ 3] [418] +16:35:32 [ 54] [ 40] [1001418C0000187506591002418C000018750659] +16:35:32 ============================================================================ +16:35:32 Sending to : +16:35:32 ============================================================================ +16:35:32 + + +waiting on router queue for slot.... +16:35:32 ============================================================================ +16:35:32 Slot Id : <56> +16:35:32 Transaction Type : REQUEST +16:35:32 Received From : +16:35:32 ============================================================================ +16:35:32 FNo. Len. Field Value +16:35:32 ============================================================================ +16:35:32 [ 1] [ 4] [0200] +16:35:32 [ 2] [ 16] [6688990040131631] +16:35:32 [ 3] [ 6] [010000] +16:35:32 [ 4] [ 12] [000010000000] +16:35:32 [ 7] [ 10] [0320093437] +16:35:32 [ 11] [ 6] [270515] +16:35:32 [ 12] [ 6] [163437] +16:35:32 [ 13] [ 4] [0320] +16:35:32 [ 14] [ 4] [9804] +16:35:32 [ 15] [ 4] [0320] +16:35:32 [ 18] [ 4] [6011] +16:35:32 [ 19] [ 3] [418] +16:35:32 [ 22] [ 3] [021] +16:35:32 [ 25] [ 2] [01] +16:35:32 [ 28] [ 9] [D00002000] +16:35:32 [ 32] [ 6] [180893] +16:35:32 [ 35] [ 37] [6688990040131631=98041261607013300000] +16:35:32 [ 37] [ 12] [507909270515] +16:35:32 [ 41] [ 8] [0283XYPL] +16:35:32 [ 42] [ 15] [999999 ] +16:35:32 [ 43] [ 40] [ATM XAIYABOULY PAKLAI LOCATON, Paklai, L] +16:35:32 [ 49] [ 3] [418] +16:35:32 [ 52] [ 16] [2A953A5AADBF950C] +16:35:32 ============================================================================ +16:35:32 + + +waiting on router queue for slot.... +16:35:32 Sending to : +16:35:32 ============================================================================ +16:35:32 Sending to : +16:35:32 ============================================================================ +16:35:32 ============================================================================ +16:35:32 Slot Id : <56> +16:35:32 Transaction Type : REQUEST +16:35:32 Received From : +16:35:32 ============================================================================ +16:35:32 FNo. Len. Field Value +16:35:32 ============================================================================ +16:35:32 [ 1] [ 4] [0200] +16:35:32 [ 2] [ 16] [6688990040131631] +16:35:32 [ 3] [ 6] [010000] +16:35:32 [ 4] [ 12] [000010000000] +16:35:32 [ 7] [ 10] [0320093437] +16:35:32 [ 11] [ 6] [270515] +16:35:32 [ 12] [ 6] [163437] +16:35:32 [ 13] [ 4] [0320] +16:35:32 [ 14] [ 4] [9804] +16:35:32 [ 15] [ 4] [0320] +16:35:32 [ 18] [ 4] [6011] +16:35:32 [ 19] [ 3] [418] +16:35:32 [ 22] [ 3] [021] +16:35:32 [ 25] [ 2] [01] +16:35:32 [ 28] [ 9] [D00002000] +16:35:32 [ 32] [ 6] [180893] +16:35:32 [ 35] [ 37] [6688990040131631=98041261607013300000] +16:35:32 [ 37] [ 12] [507909270515] +16:35:32 [ 41] [ 8] [0283XYPL] +16:35:32 [ 42] [ 15] [999999 ] +16:35:32 [ 43] [ 40] [ATM XAIYABOULY PAKLAI LOCATON, Paklai, L] +16:35:32 [ 49] [ 3] [418] +16:35:32 [ 52] [ 16] [2A953A5AADBF950C] +16:35:32 ============================================================================ +16:35:32 + + +waiting on router queue for slot.... +16:35:32 Sending to : +16:35:32 ============================================================================ +16:35:32 ============================================================================ +16:35:32 Slot Id : <56> +16:35:32 Transaction Type : REQUEST +16:35:32 Received From : +16:35:32 ============================================================================ +16:35:32 FNo. Len. Field Value +16:35:32 ============================================================================ +16:35:32 [ 1] [ 4] [0200] +16:35:32 [ 2] [ 16] [6688990040131631] +16:35:32 [ 3] [ 6] [010000] +16:35:32 [ 4] [ 12] [000010000000] +16:35:32 [ 7] [ 10] [0320093437] +16:35:32 [ 11] [ 6] [270515] +16:35:32 [ 12] [ 6] [163437] +16:35:32 [ 13] [ 4] [0320] +16:35:32 [ 14] [ 4] [9804] +16:35:32 [ 15] [ 4] [0320] +16:35:32 [ 18] [ 4] [6011] +16:35:32 [ 19] [ 3] [418] +16:35:32 [ 22] [ 3] [021] +16:35:32 [ 25] [ 2] [01] +16:35:32 [ 28] [ 9] [D00002000] +16:35:32 [ 32] [ 6] [180893] +16:35:32 [ 35] [ 37] [6688990040131631=98041261607013300000] +16:35:32 [ 37] [ 12] [507909270515] +16:35:32 [ 41] [ 8] [0283XYPL] +16:35:32 [ 42] [ 15] [999999 ] +16:35:32 [ 43] [ 40] [ATM XAIYABOULY PAKLAI LOCATON, Paklai, L] +16:35:32 [ 49] [ 3] [418] +16:35:32 [ 52] [ 16] [FF745A456E086121] +16:35:32 ============================================================================ +16:35:32 + + +waiting on router queue for slot.... +16:35:32 Sending to : <0> +16:35:32 ============================================================================ +16:35:33 ============================================================================ +16:35:33 Slot Id : <56> +16:35:33 Transaction Type : RESPONSE +16:35:33 Received From : +16:35:33 ============================================================================ +16:35:33 FNo. Len. Field Value +16:35:33 ============================================================================ +16:35:33 [ 1] [ 4] [0210] +16:35:33 [ 2] [ 16] [6688990040131631] +16:35:33 [ 3] [ 6] [010000] +16:35:33 [ 4] [ 12] [000010000000] +16:35:33 [ 7] [ 10] [0320093437] +16:35:33 [ 11] [ 6] [270515] +16:35:33 [ 12] [ 6] [163437] +16:35:33 [ 13] [ 4] [0320] +16:35:33 [ 15] [ 4] [0320] +16:35:33 [ 18] [ 4] [6011] +16:35:33 [ 19] [ 3] [418] +16:35:33 [ 22] [ 3] [021] +16:35:33 [ 32] [ 6] [180893] +16:35:33 [ 35] [ 37] [6688990040131631=98041261607013300000] +16:35:33 [ 37] [ 12] [507909270515] +16:35:33 [ 39] [ 2] [14] +16:35:33 [ 41] [ 8] [0283XYPL] +16:35:33 [ 49] [ 3] [418] +16:35:33 ============================================================================ +16:35:33 Sending to : +16:35:33 ============================================================================ +16:35:33 + + +waiting on router queue for slot.... +16:35:33 ============================================================================ +16:35:33 Slot Id : <82> +16:35:33 Transaction Type : RESPONSE +16:35:33 Received From : +16:35:33 ============================================================================ +16:35:33 FNo. Len. Field Value +16:35:33 ============================================================================ +16:35:33 [ 1] [ 4] [0210] +16:35:33 [ 2] [ 16] [6688990106047002] +16:35:33 [ 3] [ 6] [010000] +16:35:33 [ 4] [ 12] [000100000000] +16:35:33 [ 11] [ 6] [801351] +16:35:33 [ 12] [ 6] [163526] +16:35:33 [ 15] [ 4] [0320] +16:35:33 [ 18] [ 4] [6011] +16:35:33 [ 32] [ 6] [621354] +16:35:33 [ 35] [ 37] [6688990106047002=43111231700244000000] +16:35:33 [ 37] [ 12] [507903499608] +16:35:33 [ 38] [ 6] [579586] +16:35:33 [ 39] [ 2] [00] +16:35:33 [ 41] [ 8] [06002200] +16:35:33 [ 49] [ 3] [418] +16:35:33 [ 54] [ 20] [0002418C000310016563] +16:35:33 ============================================================================ +16:35:33 Sending to : +16:35:33 ============================================================================ +16:35:33 + + +waiting on router queue for slot.... +16:35:33 ============================================================================ +16:35:33 Slot Id : <93> +16:35:33 Transaction Type : REQUEST +16:35:33 Received From : +16:35:33 ============================================================================ +16:35:33 FNo. Len. Field Value +16:35:33 ============================================================================ +16:35:33 [ 1] [ 4] [0800] +16:35:33 [ 7] [ 10] [0320093440] +16:35:33 [ 11] [ 6] [157263] +16:35:33 [ 70] [ 3] [301] +16:35:33 ============================================================================ +16:35:33 + + +waiting on router queue for slot.... +16:35:33 Sending to : +16:35:33 ============================================================================ +16:35:33 ============================================================================ +16:35:33 Slot Id : <93> +16:35:33 Transaction Type : RESPONSE +16:35:33 Received From : +16:35:33 ============================================================================ +16:35:33 FNo. Len. Field Value +16:35:33 ============================================================================ +16:35:33 [ 1] [ 4] [0810] +16:35:33 [ 7] [ 10] [0320093440] +16:35:33 [ 11] [ 6] [157263] +16:35:33 [ 39] [ 2] [00] +16:35:33 [ 70] [ 3] [301] +16:35:33 ============================================================================ +16:35:33 Calculate Source COMM Id = 2 +16:35:33 ============================================================================ +16:35:33 + + +waiting on router queue for slot.... +16:35:33 ============================================================================ +16:35:33 Slot Id : <39> +16:35:33 Transaction Type : RESPONSE +16:35:33 Received From : +16:35:33 ============================================================================ +16:35:33 FNo. Len. Field Value +16:35:33 ============================================================================ +16:35:33 [ 1] [ 4] [0210] +16:35:33 [ 2] [ 16] [2206990000064295] +16:35:33 [ 3] [ 6] [010000] +16:35:33 [ 4] [ 12] [000050000000] +16:35:33 [ 7] [ 10] [0320163524] +16:35:33 [ 11] [ 6] [801338] +16:35:33 [ 12] [ 6] [163524] +16:35:33 [ 13] [ 4] [0320] +16:35:33 [ 15] [ 4] [0320] +16:35:33 [ 18] [ 4] [6011] +16:35:33 [ 32] [ 6] [621354] +16:35:33 [ 35] [ 32] [2206990000064295=970612617540474] +16:35:33 [ 37] [ 12] [507903975662] +16:35:33 [ 38] [ 6] [467448] +16:35:33 [ 39] [ 2] [00] +16:35:33 [ 41] [ 8] [01011300] +16:35:33 [ 49] [ 3] [418] +16:35:33 [ 54] [ 40] [0001418C0004496103000002418C000449610300] +16:35:33 ============================================================================ +16:35:33 Calculate Source COMM Id = 0 +16:35:33 ============================================================================ +16:35:33 + + +waiting on router queue for slot.... +16:35:35 ============================================================================ +16:35:35 Slot Id : <82> +16:35:35 Transaction Type : RESPONSE +16:35:35 Received From : +16:35:35 ============================================================================ +16:35:35 FNo. Len. Field Value +16:35:35 ============================================================================ +16:35:35 [ 1] [ 4] [0210] +16:35:35 [ 2] [ 16] [6688990106047002] +16:35:35 [ 3] [ 6] [010000] +16:35:35 [ 4] [ 12] [000100000000] +16:35:35 [ 11] [ 6] [801351] +16:35:35 [ 12] [ 6] [163526] +16:35:35 [ 15] [ 4] [0320] +16:35:35 [ 18] [ 4] [6011] +16:35:35 [ 32] [ 6] [621354] +16:35:35 [ 35] [ 37] [6688990106047002=43111231700244000000] +16:35:35 [ 37] [ 12] [507903499608] +16:35:35 [ 38] [ 6] [579586] +16:35:35 [ 39] [ 2] [00] +16:35:35 [ 41] [ 8] [06002200] +16:35:35 [ 49] [ 3] [418] +16:35:35 [ 54] [ 20] [0002418C000310016563] +16:35:35 ============================================================================ +16:35:35 Calculate Source COMM Id = 0 +16:35:35 ============================================================================ +16:35:35 + + +waiting on router queue for slot.... +16:35:37 ============================================================================ +16:35:37 Slot Id : <56> +16:35:37 Transaction Type : RESPONSE +16:35:37 Received From : +16:35:37 ============================================================================ +16:35:37 FNo. Len. Field Value +16:35:37 ============================================================================ +16:35:37 [ 1] [ 4] [0210] +16:35:37 [ 2] [ 16] [6688990040131631] +16:35:37 [ 3] [ 6] [010000] +16:35:37 [ 4] [ 12] [000010000000] +16:35:37 [ 7] [ 10] [0320093437] +16:35:37 [ 11] [ 6] [270515] +16:35:37 [ 12] [ 6] [163437] +16:35:37 [ 13] [ 4] [0320] +16:35:37 [ 15] [ 4] [0320] +16:35:37 [ 18] [ 4] [6011] +16:35:37 [ 19] [ 3] [418] +16:35:37 [ 22] [ 3] [021] +16:35:37 [ 32] [ 6] [180893] +16:35:37 [ 35] [ 37] [6688990040131631=98041261607013300000] +16:35:37 [ 37] [ 12] [507909270515] +16:35:37 [ 39] [ 2] [14] +16:35:37 [ 41] [ 8] [0283XYPL] +16:35:37 [ 49] [ 3] [418] +16:35:37 ============================================================================ +16:35:37 Calculate Source COMM Id = 2 +16:35:37 ============================================================================ +16:35:37 + + +waiting on router queue for slot.... +16:35:38 ============================================================================ +16:35:38 Slot Id : <51> +16:35:38 Transaction Type : RESPONSE +16:35:38 Received From : +16:35:38 ============================================================================ +16:35:38 FNo. Len. Field Value +16:35:38 ============================================================================ +16:35:38 [ 1] [ 4] [0210] +16:35:38 [ 2] [ 16] [6213545000734214] +16:35:38 [ 3] [ 6] [311000] +16:35:38 [ 4] [ 12] [000000000000] +16:35:38 [ 7] [ 10] [0320164318] +16:35:38 [ 11] [ 6] [240862] +16:35:38 [ 12] [ 6] [164318] +16:35:38 [ 13] [ 4] [0320] +16:35:38 [ 15] [ 4] [0320] +16:35:38 [ 18] [ 4] [6011] +16:35:38 [ 32] [ 6] [220699] +16:35:38 [ 35] [ 32] [6213545000734214=491212013421145] +16:35:38 [ 37] [ 12] [507900410451] +16:35:38 [ 38] [ 6] [704696] +16:35:38 [ 39] [ 2] [00] +16:35:38 [ 41] [ 8] [08000300] +16:35:38 [ 49] [ 3] [418] +16:35:38 [ 54] [ 40] [1001418C0000187506591002418C000018750659] +16:35:38 ============================================================================ +16:35:38 Calculate Source COMM Id = 1 +16:35:38 ============================================================================ +16:35:38 + + +waiting on router queue for slot.... +16:35:45 ============================================================================ +16:35:45 Slot Id : <99> +16:35:45 Transaction Type : REQUEST +16:35:45 Received From : +16:35:45 ============================================================================ +16:35:45 FNo. Len. Field Value +16:35:45 ============================================================================ +16:35:45 [ 1] [ 4] [0800] +16:35:45 [ 2] [ 5] [02531] +16:35:45 [ 3] [ 6] [579168] +16:35:45 [ 7] [ 10] [0320093545] +16:35:45 [ 11] [ 6] [807375] +16:35:45 [ 15] [ 10] [0320093545] +16:35:45 [ 37] [ 11] [57916807375] +16:35:45 [ 70] [ 3] [001] +16:35:45 ============================================================================ +16:35:45 + + +waiting on router queue for slot.... +16:35:45 ============================================================================ +16:35:45 Slot Id : <99> +16:35:45 Transaction Type : RESPONSE +16:35:45 Received From : +16:35:45 ============================================================================ +16:35:45 FNo. Len. Field Value +16:35:45 ============================================================================ +16:35:45 [ 1] [ 4] [0810] +16:35:45 [ 7] [ 10] [0320093545] +16:35:45 [ 11] [ 6] [807375] +16:35:45 [ 15] [ 4] [0320] +16:35:45 [ 37] [ 12] [57916807375] +16:35:45 [ 39] [ 2] [00] +16:35:45 [ 70] [ 3] [001] +16:35:45 ============================================================================ +16:35:45 Sending to : +16:35:45 ============================================================================ +16:35:45 + + +waiting on router queue for slot.... +16:35:48 ============================================================================ +16:35:48 Slot Id : <91> +16:35:48 Transaction Type : REQUEST +16:35:48 Received From : +16:35:48 ============================================================================ +16:35:48 FNo. Len. Field Value +16:35:48 ============================================================================ +16:35:48 [ 1] [ 4] [0800] +16:35:48 [ 7] [ 10] [0320093455] +16:35:48 [ 11] [ 6] [157264] +16:35:48 [ 70] [ 3] [301] +16:35:48 ============================================================================ +16:35:48 + + +waiting on router queue for slot.... +16:35:48 Sending to : +16:35:48 ============================================================================ +16:35:48 ============================================================================ +16:35:48 Slot Id : <91> +16:35:48 Transaction Type : RESPONSE +16:35:48 Received From : +16:35:48 ============================================================================ +16:35:48 FNo. Len. Field Value +16:35:48 ============================================================================ +16:35:48 [ 1] [ 4] [0810] +16:35:48 [ 7] [ 10] [0320093455] +16:35:48 [ 11] [ 6] [157264] +16:35:48 [ 39] [ 2] [00] +16:35:48 [ 70] [ 3] [301] +16:35:48 ============================================================================ +16:35:48 Calculate Source COMM Id = 2 +16:35:48 ============================================================================ +16:35:48 + + +waiting on router queue for slot.... +16:35:58 ============================================================================ +16:35:58 Slot Id : <64> +16:35:58 Transaction Type : REQUEST +16:35:58 Received From : +16:35:58 ============================================================================ +16:35:58 FNo. Len. Field Value +16:35:58 ============================================================================ +16:35:58 [ 1] [ 4] [0800] +16:35:58 [ 7] [ 10] [0320093505] +16:35:58 [ 11] [ 6] [157265] +16:35:58 [ 70] [ 3] [301] +16:35:58 ============================================================================ +16:35:58 + + +waiting on router queue for slot.... +16:35:58 Sending to : +16:35:58 ============================================================================ +16:35:58 ============================================================================ +16:35:58 Slot Id : <64> +16:35:58 Transaction Type : RESPONSE +16:35:58 Received From : +16:35:58 ============================================================================ +16:35:58 FNo. Len. Field Value +16:35:58 ============================================================================ +16:35:58 [ 1] [ 4] [0810] +16:35:58 [ 7] [ 10] [0320093505] +16:35:58 [ 11] [ 6] [157265] +16:35:58 [ 39] [ 2] [00] +16:35:58 [ 70] [ 3] [301] +16:35:58 ============================================================================ +16:35:58 Calculate Source COMM Id = 2 +16:35:58 ============================================================================ +16:35:58 + + +waiting on router queue for slot.... +16:36:00 ============================================================================ +16:36:00 Slot Id : <100> +16:36:00 Transaction Type : REQUEST +16:36:00 Received From : +16:36:00 ============================================================================ +16:36:00 FNo. Len. Field Value +16:36:00 ============================================================================ +16:36:00 [ 1] [ 4] [0200] +16:36:00 [ 2] [ 16] [6213545001067325] +16:36:00 [ 3] [ 6] [010000] +16:36:00 [ 4] [ 12] [000050000000] +16:36:00 [ 7] [ 10] [0320093507] +16:36:00 [ 11] [ 6] [270518] +16:36:00 [ 12] [ 6] [163507] +16:36:00 [ 13] [ 4] [0320] +16:36:00 [ 14] [ 4] [4912] +16:36:00 [ 15] [ 4] [0320] +16:36:00 [ 18] [ 4] [6011] +16:36:00 [ 19] [ 3] [418] +16:36:00 [ 22] [ 3] [021] +16:36:00 [ 25] [ 2] [01] +16:36:00 [ 28] [ 9] [D00002000] +16:36:00 [ 32] [ 6] [180893] +16:36:00 [ 35] [ 32] [6213545001067325=491212016732780] +16:36:00 [ 37] [ 12] [507909270518] +16:36:00 [ 41] [ 8] [0366SKTT] +16:36:00 [ 42] [ 15] [999999 ] +16:36:00 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +16:36:00 [ 49] [ 3] [418] +16:36:00 [ 52] [ 16] [5C3D0024046938B2] +16:36:00 ============================================================================ +16:36:00 + + +waiting on router queue for slot.... +16:36:00 Sending to : +16:36:00 ============================================================================ +16:36:00 Sending to : +16:36:00 ============================================================================ +16:36:00 ============================================================================ +16:36:00 Slot Id : <100> +16:36:00 Transaction Type : REQUEST +16:36:00 Received From : +16:36:00 ============================================================================ +16:36:00 FNo. Len. Field Value +16:36:00 ============================================================================ +16:36:00 [ 1] [ 4] [0200] +16:36:00 [ 2] [ 16] [6213545001067325] +16:36:00 [ 3] [ 6] [010000] +16:36:00 [ 4] [ 12] [000050000000] +16:36:00 [ 7] [ 10] [0320093507] +16:36:00 [ 11] [ 6] [270518] +16:36:00 [ 12] [ 6] [163507] +16:36:00 [ 13] [ 4] [0320] +16:36:00 [ 14] [ 4] [4912] +16:36:00 [ 15] [ 4] [0320] +16:36:00 [ 18] [ 4] [6011] +16:36:00 [ 19] [ 3] [418] +16:36:00 [ 22] [ 3] [021] +16:36:00 [ 25] [ 2] [01] +16:36:00 [ 28] [ 9] [D00002000] +16:36:00 [ 32] [ 6] [180893] +16:36:00 [ 35] [ 32] [6213545001067325=491212016732780] +16:36:00 [ 37] [ 12] [507909270518] +16:36:00 [ 41] [ 8] [0366SKTT] +16:36:00 [ 42] [ 15] [999999 ] +16:36:00 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +16:36:00 [ 49] [ 3] [418] +16:36:00 [ 52] [ 16] [5C3D0024046938B2] +16:36:00 ============================================================================ +16:36:00 + + +waiting on router queue for slot.... +16:36:00 Sending to : +16:36:00 ============================================================================ +16:36:00 ============================================================================ +16:36:00 Slot Id : <100> +16:36:00 Transaction Type : REQUEST +16:36:00 Received From : +16:36:00 ============================================================================ +16:36:00 FNo. Len. Field Value +16:36:00 ============================================================================ +16:36:00 [ 1] [ 4] [0200] +16:36:00 [ 2] [ 16] [6213545001067325] +16:36:00 [ 3] [ 6] [010000] +16:36:00 [ 4] [ 12] [000050000000] +16:36:00 [ 7] [ 10] [0320093507] +16:36:00 [ 11] [ 6] [270518] +16:36:00 [ 12] [ 6] [163507] +16:36:00 [ 13] [ 4] [0320] +16:36:00 [ 14] [ 4] [4912] +16:36:00 [ 15] [ 4] [0320] +16:36:00 [ 18] [ 4] [6011] +16:36:00 [ 19] [ 3] [418] +16:36:00 [ 22] [ 3] [021] +16:36:00 [ 25] [ 2] [01] +16:36:00 [ 28] [ 9] [D00002000] +16:36:00 [ 32] [ 6] [180893] +16:36:00 [ 35] [ 32] [6213545001067325=491212016732780] +16:36:00 [ 37] [ 12] [507909270518] +16:36:00 [ 41] [ 8] [0366SKTT] +16:36:00 [ 42] [ 15] [999999 ] +16:36:00 [ 43] [ 40] [ATM THATENG SEKONG BRANCH LOCATION, That] +16:36:00 [ 49] [ 3] [418] +16:36:00 [ 52] [ 16] [0990C6DDE8CB9458] +16:36:00 ============================================================================ +16:36:00 + + +waiting on router queue for slot.... +16:36:00 Sending to : <0> +16:36:00 ============================================================================ +16:36:01 ============================================================================ +16:36:01 Slot Id : <100> +16:36:01 Transaction Type : RESPONSE +16:36:01 Received From : +16:36:01 ============================================================================ +16:36:01 FNo. Len. Field Value +16:36:01 ============================================================================ +16:36:01 [ 1] [ 4] [0210] +16:36:01 [ 2] [ 16] [6213545001067325] +16:36:01 [ 3] [ 6] [010000] +16:36:01 [ 4] [ 12] [000050000000] +16:36:01 [ 7] [ 10] [0320093507] +16:36:01 [ 11] [ 6] [270518] +16:36:01 [ 12] [ 6] [163507] +16:36:01 [ 13] [ 4] [0320] +16:36:01 [ 15] [ 4] [0320] +16:36:01 [ 18] [ 4] [6011] +16:36:01 [ 19] [ 3] [418] +16:36:01 [ 32] [ 6] [180893] +16:36:01 [ 35] [ 32] [6213545001067325=491212016732780] +16:36:01 [ 37] [ 12] [507909270518] +16:36:01 [ 38] [ 6] [958838] +16:36:01 [ 39] [ 2] [00] +16:36:01 [ 41] [ 8] [0366SKTT] +16:36:01 [ 49] [ 3] [418] +16:36:01 [ 54] [ 40] [0001418C0002441202790002418C000244120279] +16:36:01 ============================================================================ +16:36:01 Sending to : +16:36:01 ============================================================================ +16:36:01 + + +waiting on router queue for slot.... +16:36:01 ============================================================================ +16:36:01 Slot Id : <65> +16:36:01 Transaction Type : REQUEST +16:36:01 Received From : +16:36:01 ============================================================================ +16:36:01 FNo. Len. Field Value +16:36:01 ============================================================================ +16:36:01 [ 1] [ 4] [0200] +16:36:01 [ 2] [ 16] [6213544002158878] +16:36:01 [ 3] [ 6] [011000] +16:36:01 [ 4] [ 12] [000020000000] +16:36:01 [ 7] [ 10] [0320163621] +16:36:01 [ 11] [ 6] [208809] +16:36:01 [ 12] [ 6] [163127] +16:36:01 [ 13] [ 4] [0320] +16:36:01 [ 14] [ 4] [4912] +16:36:01 [ 15] [ 4] [0320] +16:36:01 [ 18] [ 4] [6011] +16:36:01 [ 19] [ 3] [418] +16:36:01 [ 22] [ 3] [021] +16:36:01 [ 25] [ 2] [01] +16:36:01 [ 28] [ 9] [D00002000] +16:36:01 [ 32] [ 6] [198901] +16:36:01 [ 35] [ 32] [6213544002158878=491212015887848] +16:36:01 [ 37] [ 12] [507916208809] +16:36:01 [ 41] [ 8] [19529001] +16:36:01 [ 42] [ 15] [000000041952901] +16:36:01 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:36:01 [ 49] [ 3] [418] +16:36:01 [ 52] [ 16] [5635F815A6DF2640] +16:36:01 ============================================================================ +16:36:01 + + +waiting on router queue for slot.... +16:36:01 Sending to : +16:36:01 ============================================================================ +16:36:01 Sending to : +16:36:01 ============================================================================ +16:36:01 ============================================================================ +16:36:01 Slot Id : <65> +16:36:01 Transaction Type : REQUEST +16:36:01 Received From : +16:36:01 ============================================================================ +16:36:01 FNo. Len. Field Value +16:36:01 ============================================================================ +16:36:01 [ 1] [ 4] [0200] +16:36:01 [ 2] [ 16] [6213544002158878] +16:36:01 [ 3] [ 6] [011000] +16:36:01 [ 4] [ 12] [000020000000] +16:36:01 [ 7] [ 10] [0320163621] +16:36:01 [ 11] [ 6] [208809] +16:36:01 [ 12] [ 6] [163127] +16:36:01 [ 13] [ 4] [0320] +16:36:01 [ 14] [ 4] [4912] +16:36:01 [ 15] [ 4] [0320] +16:36:01 [ 18] [ 4] [6011] +16:36:01 [ 19] [ 3] [418] +16:36:01 [ 22] [ 3] [021] +16:36:01 [ 25] [ 2] [01] +16:36:01 [ 28] [ 9] [D00002000] +16:36:01 [ 32] [ 6] [198901] +16:36:01 [ 35] [ 32] [6213544002158878=491212015887848] +16:36:01 [ 37] [ 12] [507916208809] +16:36:01 [ 41] [ 8] [19529001] +16:36:01 [ 42] [ 15] [000000041952901] +16:36:01 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:36:01 [ 49] [ 3] [418] +16:36:01 [ 52] [ 16] [5635F815A6DF2640] +16:36:01 ============================================================================ +16:36:01 + + +waiting on router queue for slot.... +16:36:01 Sending to : +16:36:01 ============================================================================ +16:36:01 ============================================================================ +16:36:01 Slot Id : <65> +16:36:01 Transaction Type : REQUEST +16:36:01 Received From : +16:36:01 ============================================================================ +16:36:01 FNo. Len. Field Value +16:36:01 ============================================================================ +16:36:01 [ 1] [ 4] [0200] +16:36:01 [ 2] [ 16] [6213544002158878] +16:36:01 [ 3] [ 6] [011000] +16:36:01 [ 4] [ 12] [000020000000] +16:36:01 [ 7] [ 10] [0320163621] +16:36:01 [ 11] [ 6] [208809] +16:36:01 [ 12] [ 6] [163127] +16:36:01 [ 13] [ 4] [0320] +16:36:01 [ 14] [ 4] [4912] +16:36:01 [ 15] [ 4] [0320] +16:36:01 [ 18] [ 4] [6011] +16:36:01 [ 19] [ 3] [418] +16:36:01 [ 22] [ 3] [021] +16:36:01 [ 25] [ 2] [01] +16:36:01 [ 28] [ 9] [D00002000] +16:36:01 [ 32] [ 6] [198901] +16:36:01 [ 35] [ 32] [6213544002158878=491212015887848] +16:36:01 [ 37] [ 12] [507916208809] +16:36:01 [ 41] [ 8] [19529001] +16:36:01 [ 42] [ 15] [000000041952901] +16:36:01 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:36:01 [ 49] [ 3] [418] +16:36:01 [ 52] [ 16] [0D3FD21002D155C8] +16:36:01 ============================================================================ +16:36:01 + + +waiting on router queue for slot.... +16:36:01 Sending to : <0> +16:36:01 ============================================================================ +16:36:01 ============================================================================ +16:36:01 Slot Id : <65> +16:36:01 Transaction Type : RESPONSE +16:36:01 Received From : +16:36:01 ============================================================================ +16:36:01 FNo. Len. Field Value +16:36:01 ============================================================================ +16:36:01 [ 1] [ 4] [0210] +16:36:01 [ 2] [ 16] [6213544002158878] +16:36:01 [ 3] [ 6] [011000] +16:36:01 [ 4] [ 12] [000020000000] +16:36:01 [ 7] [ 10] [0320163621] +16:36:01 [ 11] [ 6] [208809] +16:36:01 [ 12] [ 6] [163127] +16:36:01 [ 13] [ 4] [0320] +16:36:01 [ 15] [ 4] [0320] +16:36:01 [ 18] [ 4] [6011] +16:36:01 [ 19] [ 3] [418] +16:36:01 [ 22] [ 3] [021] +16:36:01 [ 32] [ 6] [198901] +16:36:01 [ 35] [ 32] [6213544002158878=491212015887848] +16:36:01 [ 37] [ 12] [507916208809] +16:36:01 [ 38] [ 6] [163557] +16:36:01 [ 39] [ 2] [55] +16:36:01 [ 41] [ 8] [19529001] +16:36:01 [ 49] [ 3] [418] +16:36:01 ============================================================================ +16:36:01 Sending to : +16:36:01 ============================================================================ +16:36:01 + + +waiting on router queue for slot.... +16:36:02 ============================================================================ +16:36:02 Slot Id : <100> +16:36:02 Transaction Type : RESPONSE +16:36:02 Received From : +16:36:02 ============================================================================ +16:36:02 FNo. Len. Field Value +16:36:02 ============================================================================ +16:36:02 [ 1] [ 4] [0210] +16:36:02 [ 2] [ 16] [6213545001067325] +16:36:02 [ 3] [ 6] [010000] +16:36:02 [ 4] [ 12] [000050000000] +16:36:02 [ 7] [ 10] [0320093507] +16:36:02 [ 11] [ 6] [270518] +16:36:02 [ 12] [ 6] [163507] +16:36:02 [ 13] [ 4] [0320] +16:36:02 [ 15] [ 4] [0320] +16:36:02 [ 18] [ 4] [6011] +16:36:02 [ 19] [ 3] [418] +16:36:02 [ 32] [ 6] [180893] +16:36:02 [ 35] [ 32] [6213545001067325=491212016732780] +16:36:02 [ 37] [ 12] [507909270518] +16:36:02 [ 38] [ 6] [958838] +16:36:02 [ 39] [ 2] [00] +16:36:02 [ 41] [ 8] [0366SKTT] +16:36:02 [ 49] [ 3] [418] +16:36:02 [ 54] [ 40] [0001418C0002441202790002418C000244120279] +16:36:02 ============================================================================ +16:36:02 Calculate Source COMM Id = 2 +16:36:02 ============================================================================ +16:36:02 + + +waiting on router queue for slot.... +16:36:04 ============================================================================ +16:36:04 Slot Id : <65> +16:36:04 Transaction Type : RESPONSE +16:36:04 Received From : +16:36:04 ============================================================================ +16:36:04 FNo. Len. Field Value +16:36:04 ============================================================================ +16:36:04 [ 1] [ 4] [0210] +16:36:04 [ 2] [ 16] [6213544002158878] +16:36:04 [ 3] [ 6] [011000] +16:36:04 [ 4] [ 12] [000020000000] +16:36:04 [ 7] [ 10] [0320163621] +16:36:04 [ 11] [ 6] [208809] +16:36:04 [ 12] [ 6] [163127] +16:36:04 [ 13] [ 4] [0320] +16:36:04 [ 15] [ 4] [0320] +16:36:04 [ 18] [ 4] [6011] +16:36:04 [ 19] [ 3] [418] +16:36:04 [ 22] [ 3] [021] +16:36:04 [ 32] [ 6] [198901] +16:36:04 [ 35] [ 32] [6213544002158878=491212015887848] +16:36:04 [ 37] [ 12] [507916208809] +16:36:04 [ 38] [ 6] [163557] +16:36:04 [ 39] [ 2] [55] +16:36:04 [ 41] [ 8] [19529001] +16:36:04 [ 49] [ 3] [418] +16:36:04 ============================================================================ +16:36:04 Calculate Source COMM Id = 5 +16:36:04 ============================================================================ +16:36:04 + + +waiting on router queue for slot.... +16:36:14 ============================================================================ +16:36:14 Slot Id : <72> +16:36:14 Transaction Type : REQUEST +16:36:14 Received From : +16:36:14 ============================================================================ +16:36:14 FNo. Len. Field Value +16:36:14 ============================================================================ +16:36:14 [ 1] [ 4] [0800] +16:36:14 [ 7] [ 10] [0320093521] +16:36:14 [ 11] [ 6] [157266] +16:36:14 [ 70] [ 3] [301] +16:36:14 ============================================================================ +16:36:14 + + +waiting on router queue for slot.... +16:36:14 Sending to : +16:36:14 ============================================================================ +16:36:14 ============================================================================ +16:36:14 Slot Id : <72> +16:36:14 Transaction Type : RESPONSE +16:36:14 Received From : +16:36:14 ============================================================================ +16:36:14 FNo. Len. Field Value +16:36:14 ============================================================================ +16:36:14 [ 1] [ 4] [0810] +16:36:14 [ 7] [ 10] [0320093521] +16:36:14 [ 11] [ 6] [157266] +16:36:14 [ 39] [ 2] [00] +16:36:14 [ 70] [ 3] [301] +16:36:14 ============================================================================ +16:36:14 Calculate Source COMM Id = 2 +16:36:14 ============================================================================ +16:36:14 + + +waiting on router queue for slot.... +16:36:18 ============================================================================ +16:36:18 Slot Id : <76> +16:36:18 Transaction Type : REQUEST +16:36:18 Received From : +16:36:18 ============================================================================ +16:36:18 FNo. Len. Field Value +16:36:18 ============================================================================ +16:36:18 [ 1] [ 4] [0200] +16:36:18 [ 2] [ 16] [6213545000624910] +16:36:18 [ 3] [ 6] [010000] +16:36:18 [ 4] [ 12] [000200000000] +16:36:18 [ 7] [ 10] [0320093524] +16:36:18 [ 11] [ 6] [270523] +16:36:18 [ 12] [ 6] [163524] +16:36:18 [ 13] [ 4] [0320] +16:36:18 [ 14] [ 4] [4912] +16:36:18 [ 15] [ 4] [0320] +16:36:18 [ 18] [ 4] [6011] +16:36:18 [ 19] [ 3] [418] +16:36:18 [ 22] [ 3] [021] +16:36:18 [ 25] [ 2] [01] +16:36:18 [ 28] [ 9] [D00002000] +16:36:18 [ 32] [ 6] [180893] +16:36:18 [ 35] [ 32] [6213545000624910=491212012491050] +16:36:18 [ 37] [ 12] [507909270523] +16:36:18 [ 41] [ 8] [0109SKTB] +16:36:18 [ 42] [ 15] [999999 ] +16:36:18 [ 43] [ 40] [ATM SERVICE UNIT SIKHODTABONG LOCATION, ] +16:36:18 [ 49] [ 3] [418] +16:36:18 [ 52] [ 16] [87941B98F7FDB93C] +16:36:18 ============================================================================ +16:36:18 + + +waiting on router queue for slot.... +16:36:18 Sending to : +16:36:18 ============================================================================ +16:36:18 Sending to : +16:36:18 ============================================================================ +16:36:18 ============================================================================ +16:36:18 Slot Id : <76> +16:36:18 Transaction Type : REQUEST +16:36:18 Received From : +16:36:18 ============================================================================ +16:36:18 FNo. Len. Field Value +16:36:18 ============================================================================ +16:36:18 [ 1] [ 4] [0200] +16:36:18 [ 2] [ 16] [6213545000624910] +16:36:18 [ 3] [ 6] [010000] +16:36:18 [ 4] [ 12] [000200000000] +16:36:18 [ 7] [ 10] [0320093524] +16:36:18 [ 11] [ 6] [270523] +16:36:18 [ 12] [ 6] [163524] +16:36:18 [ 13] [ 4] [0320] +16:36:18 [ 14] [ 4] [4912] +16:36:18 [ 15] [ 4] [0320] +16:36:18 [ 18] [ 4] [6011] +16:36:18 [ 19] [ 3] [418] +16:36:18 [ 22] [ 3] [021] +16:36:18 [ 25] [ 2] [01] +16:36:18 [ 28] [ 9] [D00002000] +16:36:18 [ 32] [ 6] [180893] +16:36:18 [ 35] [ 32] [6213545000624910=491212012491050] +16:36:18 [ 37] [ 12] [507909270523] +16:36:18 [ 41] [ 8] [0109SKTB] +16:36:18 [ 42] [ 15] [999999 ] +16:36:18 [ 43] [ 40] [ATM SERVICE UNIT SIKHODTABONG LOCATION, ] +16:36:18 [ 49] [ 3] [418] +16:36:18 [ 52] [ 16] [87941B98F7FDB93C] +16:36:18 ============================================================================ +16:36:18 + + +waiting on router queue for slot.... +16:36:18 Sending to : +16:36:18 ============================================================================ +16:36:18 ============================================================================ +16:36:18 Slot Id : <76> +16:36:18 Transaction Type : REQUEST +16:36:18 Received From : +16:36:18 ============================================================================ +16:36:18 FNo. Len. Field Value +16:36:18 ============================================================================ +16:36:18 [ 1] [ 4] [0200] +16:36:18 [ 2] [ 16] [6213545000624910] +16:36:18 [ 3] [ 6] [010000] +16:36:18 [ 4] [ 12] [000200000000] +16:36:18 [ 7] [ 10] [0320093524] +16:36:18 [ 11] [ 6] [270523] +16:36:18 [ 12] [ 6] [163524] +16:36:18 [ 13] [ 4] [0320] +16:36:18 [ 14] [ 4] [4912] +16:36:18 [ 15] [ 4] [0320] +16:36:18 [ 18] [ 4] [6011] +16:36:18 [ 19] [ 3] [418] +16:36:18 [ 22] [ 3] [021] +16:36:18 [ 25] [ 2] [01] +16:36:18 [ 28] [ 9] [D00002000] +16:36:18 [ 32] [ 6] [180893] +16:36:18 [ 35] [ 32] [6213545000624910=491212012491050] +16:36:18 [ 37] [ 12] [507909270523] +16:36:18 [ 41] [ 8] [0109SKTB] +16:36:18 [ 42] [ 15] [999999 ] +16:36:18 [ 43] [ 40] [ATM SERVICE UNIT SIKHODTABONG LOCATION, ] +16:36:18 [ 49] [ 3] [418] +16:36:18 [ 52] [ 16] [6852C36222732E7A] +16:36:18 ============================================================================ +16:36:18 + + +waiting on router queue for slot.... +16:36:18 Sending to : <0> +16:36:18 ============================================================================ +16:36:18 ============================================================================ +16:36:18 Slot Id : <76> +16:36:18 Transaction Type : RESPONSE +16:36:18 Received From : +16:36:18 ============================================================================ +16:36:18 FNo. Len. Field Value +16:36:18 ============================================================================ +16:36:18 [ 1] [ 4] [0210] +16:36:18 [ 2] [ 16] [6213545000624910] +16:36:18 [ 3] [ 6] [010000] +16:36:18 [ 4] [ 12] [000200000000] +16:36:18 [ 7] [ 10] [0320093524] +16:36:18 [ 11] [ 6] [270523] +16:36:18 [ 12] [ 6] [163524] +16:36:18 [ 13] [ 4] [0320] +16:36:18 [ 15] [ 4] [0320] +16:36:18 [ 18] [ 4] [6011] +16:36:18 [ 19] [ 3] [418] +16:36:18 [ 22] [ 3] [021] +16:36:18 [ 32] [ 6] [180893] +16:36:18 [ 35] [ 32] [6213545000624910=491212012491050] +16:36:18 [ 37] [ 12] [507909270523] +16:36:18 [ 39] [ 2] [61] +16:36:18 [ 41] [ 8] [0109SKTB] +16:36:18 [ 49] [ 3] [418] +16:36:18 ============================================================================ +16:36:18 Sending to : +16:36:18 ============================================================================ +16:36:18 + + +waiting on router queue for slot.... +16:36:19 ============================================================================ +16:36:19 Slot Id : <76> +16:36:19 Transaction Type : RESPONSE +16:36:19 Received From : +16:36:19 ============================================================================ +16:36:19 FNo. Len. Field Value +16:36:19 ============================================================================ +16:36:19 [ 1] [ 4] [0210] +16:36:19 [ 2] [ 16] [6213545000624910] +16:36:19 [ 3] [ 6] [010000] +16:36:19 [ 4] [ 12] [000200000000] +16:36:19 [ 7] [ 10] [0320093524] +16:36:19 [ 11] [ 6] [270523] +16:36:19 [ 12] [ 6] [163524] +16:36:19 [ 13] [ 4] [0320] +16:36:19 [ 15] [ 4] [0320] +16:36:19 [ 18] [ 4] [6011] +16:36:19 [ 19] [ 3] [418] +16:36:19 [ 22] [ 3] [021] +16:36:19 [ 32] [ 6] [180893] +16:36:19 [ 35] [ 32] [6213545000624910=491212012491050] +16:36:19 [ 37] [ 12] [507909270523] +16:36:19 [ 39] [ 2] [61] +16:36:19 [ 41] [ 8] [0109SKTB] +16:36:19 [ 49] [ 3] [418] +16:36:19 ============================================================================ +16:36:19 Calculate Source COMM Id = 2 +16:36:19 ============================================================================ +16:36:19 + + +waiting on router queue for slot.... +16:36:22 ============================================================================ +16:36:22 Slot Id : <90> +16:36:22 Transaction Type : REQUEST +16:36:22 Received From : +16:36:22 ============================================================================ +16:36:22 FNo. Len. Field Value +16:36:22 ============================================================================ +16:36:22 [ 1] [ 4] [0800] +16:36:22 [ 7] [ 10] [0320093412] +16:36:22 [ 11] [ 6] [019987] +16:36:22 [ 37] [ 12] [57916019987] +16:36:22 [ 70] [ 3] [301] +16:36:22 ============================================================================ +16:36:22 + + +waiting on router queue for slot.... +16:36:22 Sending to : +16:36:22 ============================================================================ +16:36:22 ============================================================================ +16:36:22 Slot Id : <90> +16:36:22 Transaction Type : RESPONSE +16:36:22 Received From : +16:36:22 ============================================================================ +16:36:22 FNo. Len. Field Value +16:36:22 ============================================================================ +16:36:22 [ 1] [ 4] [0810] +16:36:22 [ 7] [ 10] [0320093412] +16:36:22 [ 11] [ 6] [019987] +16:36:22 [ 37] [ 12] [579160199870] +16:36:22 [ 39] [ 2] [00] +16:36:22 [ 70] [ 3] [810] +16:36:22 ============================================================================ +16:36:22 Calculate Source COMM Id = 4 +16:36:22 ============================================================================ +16:36:22 + + +waiting on router queue for slot.... +16:36:30 ============================================================================ +16:36:30 Slot Id : <106> +16:36:30 Transaction Type : REQUEST +16:36:30 Received From : +16:36:30 ============================================================================ +16:36:30 FNo. Len. Field Value +16:36:30 ============================================================================ +16:36:30 [ 1] [ 4] [0800] +16:36:30 [ 7] [ 10] [0320093537] +16:36:30 [ 11] [ 6] [157267] +16:36:30 [ 70] [ 3] [301] +16:36:30 ============================================================================ +16:36:30 + + +waiting on router queue for slot.... +16:36:30 Sending to : +16:36:30 ============================================================================ +16:36:30 ============================================================================ +16:36:30 Slot Id : <106> +16:36:30 Transaction Type : RESPONSE +16:36:30 Received From : +16:36:30 ============================================================================ +16:36:30 FNo. Len. Field Value +16:36:30 ============================================================================ +16:36:30 [ 1] [ 4] [0810] +16:36:30 [ 7] [ 10] [0320093537] +16:36:30 [ 11] [ 6] [157267] +16:36:30 [ 39] [ 2] [00] +16:36:30 [ 70] [ 3] [301] +16:36:30 ============================================================================ +16:36:30 Calculate Source COMM Id = 2 +16:36:30 ============================================================================ +16:36:30 + + +waiting on router queue for slot.... +16:36:35 ============================================================================ +16:36:35 Slot Id : <114> +16:36:35 Transaction Type : REQUEST +16:36:35 Received From : +16:36:35 ============================================================================ +16:36:35 FNo. Len. Field Value +16:36:35 ============================================================================ +16:36:35 [ 1] [ 4] [0800] +16:36:35 [ 7] [ 10] [0320234823] +16:36:35 [ 11] [ 6] [164823] +16:36:35 [ 37] [ 12] [57916164823] +16:36:35 [ 70] [ 3] [301] +16:36:35 ============================================================================ +16:36:35 + + +waiting on router queue for slot.... +16:36:35 Sending to : +16:36:35 ============================================================================ +16:36:35 ============================================================================ +16:36:35 Slot Id : <114> +16:36:35 Transaction Type : RESPONSE +16:36:35 Received From : +16:36:35 ============================================================================ +16:36:35 FNo. Len. Field Value +16:36:35 ============================================================================ +16:36:35 [ 1] [ 4] [0810] +16:36:35 [ 7] [ 10] [0320234823] +16:36:35 [ 11] [ 6] [164823] +16:36:35 [ 37] [ 12] [579161648230] +16:36:35 [ 39] [ 2] [00] +16:36:35 [ 70] [ 3] [810] +16:36:35 ============================================================================ +16:36:35 Calculate Source COMM Id = 6 +16:36:35 ============================================================================ +16:36:35 + + +waiting on router queue for slot.... +16:36:36 ============================================================================ +16:36:36 Slot Id : <66> +16:36:36 Transaction Type : REQUEST +16:36:36 Received From : +16:36:36 ============================================================================ +16:36:36 FNo. Len. Field Value +16:36:36 ============================================================================ +16:36:36 [ 1] [ 4] [0200] +16:36:36 [ 2] [ 16] [6688990040131631] +16:36:36 [ 3] [ 6] [301000] +16:36:36 [ 7] [ 10] [0320093542] +16:36:36 [ 11] [ 6] [270525] +16:36:36 [ 12] [ 6] [163542] +16:36:36 [ 13] [ 4] [0320] +16:36:36 [ 14] [ 4] [9804] +16:36:36 [ 15] [ 4] [0320] +16:36:36 [ 18] [ 4] [6011] +16:36:36 [ 19] [ 3] [418] +16:36:36 [ 22] [ 3] [021] +16:36:36 [ 25] [ 2] [01] +16:36:36 [ 32] [ 6] [180893] +16:36:36 [ 35] [ 37] [6688990040131631=98041261607013300000] +16:36:36 [ 37] [ 12] [507909270525] +16:36:36 [ 41] [ 8] [0283XYPL] +16:36:36 [ 42] [ 15] [999999 ] +16:36:36 [ 43] [ 40] [ATM XAIYABOULY PAKLAI LOCATON, Paklai, L] +16:36:36 [ 49] [ 3] [418] +16:36:36 [ 52] [ 16] [2A953A5AADBF950C] +16:36:36 ============================================================================ +16:36:36 + + +waiting on router queue for slot.... +16:36:36 Sending to : +16:36:36 ============================================================================ +16:36:36 Sending to : +16:36:36 ============================================================================ +16:36:36 ============================================================================ +16:36:36 Slot Id : <66> +16:36:36 Transaction Type : REQUEST +16:36:36 Received From : +16:36:36 ============================================================================ +16:36:36 FNo. Len. Field Value +16:36:36 ============================================================================ +16:36:36 [ 1] [ 4] [0200] +16:36:36 [ 2] [ 16] [6688990040131631] +16:36:36 [ 3] [ 6] [301000] +16:36:36 [ 7] [ 10] [0320093542] +16:36:36 [ 11] [ 6] [270525] +16:36:36 [ 12] [ 6] [163542] +16:36:36 [ 13] [ 4] [0320] +16:36:36 [ 14] [ 4] [9804] +16:36:36 [ 15] [ 4] [0320] +16:36:36 [ 18] [ 4] [6011] +16:36:36 [ 19] [ 3] [418] +16:36:36 [ 22] [ 3] [021] +16:36:36 [ 25] [ 2] [01] +16:36:36 [ 32] [ 6] [180893] +16:36:36 [ 35] [ 37] [6688990040131631=98041261607013300000] +16:36:36 [ 37] [ 12] [507909270525] +16:36:36 [ 41] [ 8] [0283XYPL] +16:36:36 [ 42] [ 15] [999999 ] +16:36:36 [ 43] [ 40] [ATM XAIYABOULY PAKLAI LOCATON, Paklai, L] +16:36:36 [ 49] [ 3] [418] +16:36:36 [ 52] [ 16] [2A953A5AADBF950C] +16:36:36 ============================================================================ +16:36:36 + + +waiting on router queue for slot.... +16:36:36 Sending to : +16:36:36 ============================================================================ +16:36:36 ============================================================================ +16:36:36 Slot Id : <66> +16:36:36 Transaction Type : REQUEST +16:36:36 Received From : +16:36:36 ============================================================================ +16:36:36 FNo. Len. Field Value +16:36:36 ============================================================================ +16:36:36 [ 1] [ 4] [0200] +16:36:36 [ 2] [ 16] [6688990040131631] +16:36:36 [ 3] [ 6] [301000] +16:36:36 [ 7] [ 10] [0320093542] +16:36:36 [ 11] [ 6] [270525] +16:36:36 [ 12] [ 6] [163542] +16:36:36 [ 13] [ 4] [0320] +16:36:36 [ 14] [ 4] [9804] +16:36:36 [ 15] [ 4] [0320] +16:36:36 [ 18] [ 4] [6011] +16:36:36 [ 19] [ 3] [418] +16:36:36 [ 22] [ 3] [021] +16:36:36 [ 25] [ 2] [01] +16:36:36 [ 32] [ 6] [180893] +16:36:36 [ 35] [ 37] [6688990040131631=98041261607013300000] +16:36:36 [ 37] [ 12] [507909270525] +16:36:36 [ 41] [ 8] [0283XYPL] +16:36:36 [ 42] [ 15] [999999 ] +16:36:36 [ 43] [ 40] [ATM XAIYABOULY PAKLAI LOCATON, Paklai, L] +16:36:36 [ 49] [ 3] [418] +16:36:36 [ 52] [ 16] [FF745A456E086121] +16:36:36 ============================================================================ +16:36:36 + + +waiting on router queue for slot.... +16:36:36 Sending to : <0> +16:36:36 ============================================================================ +16:36:36 ============================================================================ +16:36:36 Slot Id : <66> +16:36:36 Transaction Type : RESPONSE +16:36:36 Received From : +16:36:36 ============================================================================ +16:36:36 FNo. Len. Field Value +16:36:36 ============================================================================ +16:36:36 [ 1] [ 4] [0210] +16:36:36 [ 2] [ 16] [6688990040131631] +16:36:36 [ 3] [ 6] [301000] +16:36:36 [ 4] [ 12] [000000000000] +16:36:36 [ 7] [ 10] [0320093542] +16:36:36 [ 11] [ 6] [270525] +16:36:36 [ 12] [ 6] [163542] +16:36:36 [ 13] [ 4] [0320] +16:36:36 [ 15] [ 4] [0320] +16:36:36 [ 18] [ 4] [6011] +16:36:36 [ 19] [ 3] [418] +16:36:36 [ 22] [ 3] [021] +16:36:36 [ 32] [ 6] [180893] +16:36:36 [ 35] [ 37] [6688990040131631=98041261607013300000] +16:36:36 [ 37] [ 12] [507909270525] +16:36:36 [ 39] [ 2] [14] +16:36:36 [ 41] [ 8] [0283XYPL] +16:36:36 [ 49] [ 3] [418] +16:36:36 ============================================================================ +16:36:36 Sending to : +16:36:36 ============================================================================ +16:36:36 + + +waiting on router queue for slot.... +16:36:37 ============================================================================ +16:36:37 Slot Id : <118> +16:36:37 Transaction Type : REQUEST +16:36:37 Received From : +16:36:37 ============================================================================ +16:36:37 FNo. Len. Field Value +16:36:37 ============================================================================ +16:36:37 [ 1] [ 4] [0200] +16:36:37 [ 2] [ 16] [6213544002158878] +16:36:37 [ 3] [ 6] [011000] +16:36:37 [ 4] [ 12] [000020000000] +16:36:37 [ 7] [ 10] [0320163657] +16:36:37 [ 11] [ 6] [208815] +16:36:37 [ 12] [ 6] [163203] +16:36:37 [ 13] [ 4] [0320] +16:36:37 [ 14] [ 4] [4912] +16:36:37 [ 15] [ 4] [0320] +16:36:37 [ 18] [ 4] [6011] +16:36:37 [ 19] [ 3] [418] +16:36:37 [ 22] [ 3] [021] +16:36:37 [ 25] [ 2] [01] +16:36:37 [ 28] [ 9] [D00002000] +16:36:37 [ 32] [ 6] [198901] +16:36:37 [ 35] [ 32] [6213544002158878=491212015887848] +16:36:37 [ 37] [ 12] [507916208815] +16:36:37 [ 41] [ 8] [19529001] +16:36:37 [ 42] [ 15] [000000041952901] +16:36:37 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:36:37 [ 49] [ 3] [418] +16:36:37 [ 52] [ 16] [D0F9309E93735B84] +16:36:37 ============================================================================ +16:36:37 + + +waiting on router queue for slot.... +16:36:37 Sending to : +16:36:37 ============================================================================ +16:36:37 Sending to : +16:36:37 ============================================================================ +16:36:37 ============================================================================ +16:36:37 Slot Id : <118> +16:36:37 Transaction Type : REQUEST +16:36:37 Received From : +16:36:37 ============================================================================ +16:36:37 FNo. Len. Field Value +16:36:37 ============================================================================ +16:36:37 [ 1] [ 4] [0200] +16:36:37 [ 2] [ 16] [6213544002158878] +16:36:37 [ 3] [ 6] [011000] +16:36:37 [ 4] [ 12] [000020000000] +16:36:37 [ 7] [ 10] [0320163657] +16:36:37 [ 11] [ 6] [208815] +16:36:37 [ 12] [ 6] [163203] +16:36:37 [ 13] [ 4] [0320] +16:36:37 [ 14] [ 4] [4912] +16:36:37 [ 15] [ 4] [0320] +16:36:37 [ 18] [ 4] [6011] +16:36:37 [ 19] [ 3] [418] +16:36:37 [ 22] [ 3] [021] +16:36:37 [ 25] [ 2] [01] +16:36:37 [ 28] [ 9] [D00002000] +16:36:37 [ 32] [ 6] [198901] +16:36:37 [ 35] [ 32] [6213544002158878=491212015887848] +16:36:37 [ 37] [ 12] [507916208815] +16:36:37 [ 41] [ 8] [19529001] +16:36:37 [ 42] [ 15] [000000041952901] +16:36:37 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:36:37 [ 49] [ 3] [418] +16:36:37 [ 52] [ 16] [D0F9309E93735B84] +16:36:37 ============================================================================ +16:36:37 + + +waiting on router queue for slot.... +16:36:37 Sending to : +16:36:37 ============================================================================ +16:36:37 ============================================================================ +16:36:37 Slot Id : <118> +16:36:37 Transaction Type : REQUEST +16:36:37 Received From : +16:36:37 ============================================================================ +16:36:37 FNo. Len. Field Value +16:36:37 ============================================================================ +16:36:37 [ 1] [ 4] [0200] +16:36:37 [ 2] [ 16] [6213544002158878] +16:36:37 [ 3] [ 6] [011000] +16:36:37 [ 4] [ 12] [000020000000] +16:36:37 [ 7] [ 10] [0320163657] +16:36:37 [ 11] [ 6] [208815] +16:36:37 [ 12] [ 6] [163203] +16:36:37 [ 13] [ 4] [0320] +16:36:37 [ 14] [ 4] [4912] +16:36:37 [ 15] [ 4] [0320] +16:36:37 [ 18] [ 4] [6011] +16:36:37 [ 19] [ 3] [418] +16:36:37 [ 22] [ 3] [021] +16:36:37 [ 25] [ 2] [01] +16:36:37 [ 28] [ 9] [D00002000] +16:36:37 [ 32] [ 6] [198901] +16:36:37 [ 35] [ 32] [6213544002158878=491212015887848] +16:36:37 [ 37] [ 12] [507916208815] +16:36:37 [ 41] [ 8] [19529001] +16:36:37 [ 42] [ 15] [000000041952901] +16:36:37 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:36:37 [ 49] [ 3] [418] +16:36:37 [ 52] [ 16] [08A218B6A0614EBC] +16:36:37 ============================================================================ +16:36:37 + + +waiting on router queue for slot.... +16:36:37 Sending to : <0> +16:36:37 ============================================================================ +16:36:38 ============================================================================ +16:36:38 Slot Id : <66> +16:36:38 Transaction Type : RESPONSE +16:36:38 Received From : +16:36:38 ============================================================================ +16:36:38 FNo. Len. Field Value +16:36:38 ============================================================================ +16:36:38 [ 1] [ 4] [0210] +16:36:38 [ 2] [ 16] [6688990040131631] +16:36:38 [ 3] [ 6] [301000] +16:36:38 [ 4] [ 12] [000000000000] +16:36:38 [ 7] [ 10] [0320093542] +16:36:38 [ 11] [ 6] [270525] +16:36:38 [ 12] [ 6] [163542] +16:36:38 [ 13] [ 4] [0320] +16:36:38 [ 15] [ 4] [0320] +16:36:38 [ 18] [ 4] [6011] +16:36:38 [ 19] [ 3] [418] +16:36:38 [ 22] [ 3] [021] +16:36:38 [ 32] [ 6] [180893] +16:36:38 [ 35] [ 37] [6688990040131631=98041261607013300000] +16:36:38 [ 37] [ 12] [507909270525] +16:36:38 [ 39] [ 2] [14] +16:36:38 [ 41] [ 8] [0283XYPL] +16:36:38 [ 49] [ 3] [418] +16:36:38 ============================================================================ +16:36:38 Calculate Source COMM Id = 2 +16:36:38 ============================================================================ +16:36:38 + + +waiting on router queue for slot.... +16:36:38 ============================================================================ +16:36:38 Slot Id : <118> +16:36:38 Transaction Type : RESPONSE +16:36:38 Received From : +16:36:38 ============================================================================ +16:36:38 FNo. Len. Field Value +16:36:38 ============================================================================ +16:36:38 [ 1] [ 4] [0210] +16:36:38 [ 2] [ 16] [6213544002158878] +16:36:38 [ 3] [ 6] [011000] +16:36:38 [ 4] [ 12] [000020000000] +16:36:38 [ 7] [ 10] [0320163657] +16:36:38 [ 11] [ 6] [208815] +16:36:38 [ 12] [ 6] [163203] +16:36:38 [ 13] [ 4] [0320] +16:36:38 [ 15] [ 4] [0320] +16:36:38 [ 18] [ 4] [6011] +16:36:38 [ 19] [ 3] [418] +16:36:38 [ 32] [ 6] [198901] +16:36:38 [ 35] [ 32] [6213544002158878=491212015887848] +16:36:38 [ 37] [ 12] [507916208815] +16:36:38 [ 38] [ 6] [758875] +16:36:38 [ 39] [ 2] [00] +16:36:38 [ 41] [ 8] [19529001] +16:36:38 [ 49] [ 3] [418] +16:36:38 [ 54] [ 40] [1001418C0000414314611002418C000041431461] +16:36:38 ============================================================================ +16:36:38 Sending to : +16:36:38 ============================================================================ +16:36:38 + + +waiting on router queue for slot.... +16:36:40 ============================================================================ +16:36:40 Slot Id : <118> +16:36:40 Transaction Type : RESPONSE +16:36:40 Received From : +16:36:40 ============================================================================ +16:36:40 FNo. Len. Field Value +16:36:40 ============================================================================ +16:36:40 [ 1] [ 4] [0210] +16:36:40 [ 2] [ 16] [6213544002158878] +16:36:40 [ 3] [ 6] [011000] +16:36:40 [ 4] [ 12] [000020000000] +16:36:40 [ 7] [ 10] [0320163657] +16:36:40 [ 11] [ 6] [208815] +16:36:40 [ 12] [ 6] [163203] +16:36:40 [ 13] [ 4] [0320] +16:36:40 [ 15] [ 4] [0320] +16:36:40 [ 18] [ 4] [6011] +16:36:40 [ 19] [ 3] [418] +16:36:40 [ 32] [ 6] [198901] +16:36:40 [ 35] [ 32] [6213544002158878=491212015887848] +16:36:40 [ 37] [ 12] [507916208815] +16:36:40 [ 38] [ 6] [758875] +16:36:40 [ 39] [ 2] [00] +16:36:40 [ 41] [ 8] [19529001] +16:36:40 [ 49] [ 3] [418] +16:36:40 [ 54] [ 40] [1001418C0000414314611002418C000041431461] +16:36:40 ============================================================================ +16:36:40 Calculate Source COMM Id = 5 +16:36:40 ============================================================================ +16:36:40 + + +waiting on router queue for slot.... +16:36:42 ============================================================================ +16:36:42 Slot Id : <83> +16:36:42 Transaction Type : REQUEST +16:36:42 Received From : +16:36:42 ============================================================================ +16:36:42 FNo. Len. Field Value +16:36:42 ============================================================================ +16:36:42 [ 1] [ 4] [0200] +16:36:42 [ 2] [ 16] [6688990030010944] +16:36:42 [ 3] [ 6] [010000] +16:36:42 [ 4] [ 12] [000100000000] +16:36:42 [ 7] [ 10] [0320093548] +16:36:42 [ 11] [ 6] [270526] +16:36:42 [ 12] [ 6] [163548] +16:36:42 [ 13] [ 4] [0320] +16:36:42 [ 14] [ 4] [9802] +16:36:42 [ 15] [ 4] [0320] +16:36:42 [ 18] [ 4] [6011] +16:36:42 [ 19] [ 3] [418] +16:36:42 [ 22] [ 3] [021] +16:36:42 [ 25] [ 2] [01] +16:36:42 [ 28] [ 9] [D00002000] +16:36:42 [ 32] [ 6] [180893] +16:36:42 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:36:42 [ 37] [ 12] [507909270526] +16:36:42 [ 41] [ 8] [0523XYNG] +16:36:42 [ 42] [ 15] [999999 ] +16:36:42 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +16:36:42 [ 49] [ 3] [418] +16:36:42 [ 52] [ 16] [55D1A6FC2545A0D7] +16:36:42 ============================================================================ +16:36:42 + + +waiting on router queue for slot.... +16:36:42 Sending to : +16:36:42 ============================================================================ +16:36:42 Sending to : +16:36:42 ============================================================================ +16:36:42 ============================================================================ +16:36:42 Slot Id : <83> +16:36:42 Transaction Type : REQUEST +16:36:42 Received From : +16:36:42 ============================================================================ +16:36:42 FNo. Len. Field Value +16:36:42 ============================================================================ +16:36:42 [ 1] [ 4] [0200] +16:36:42 [ 2] [ 16] [6688990030010944] +16:36:42 [ 3] [ 6] [010000] +16:36:42 [ 4] [ 12] [000100000000] +16:36:42 [ 7] [ 10] [0320093548] +16:36:42 [ 11] [ 6] [270526] +16:36:42 [ 12] [ 6] [163548] +16:36:42 [ 13] [ 4] [0320] +16:36:42 [ 14] [ 4] [9802] +16:36:42 [ 15] [ 4] [0320] +16:36:42 [ 18] [ 4] [6011] +16:36:42 [ 19] [ 3] [418] +16:36:42 [ 22] [ 3] [021] +16:36:42 [ 25] [ 2] [01] +16:36:42 [ 28] [ 9] [D00002000] +16:36:42 [ 32] [ 6] [180893] +16:36:42 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:36:42 [ 37] [ 12] [507909270526] +16:36:42 [ 41] [ 8] [0523XYNG] +16:36:42 [ 42] [ 15] [999999 ] +16:36:42 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +16:36:42 [ 49] [ 3] [418] +16:36:42 [ 52] [ 16] [55D1A6FC2545A0D7] +16:36:42 ============================================================================ +16:36:42 + + +waiting on router queue for slot.... +16:36:42 Sending to : +16:36:42 ============================================================================ +16:36:42 ============================================================================ +16:36:42 Slot Id : <83> +16:36:42 Transaction Type : REQUEST +16:36:42 Received From : +16:36:42 ============================================================================ +16:36:42 FNo. Len. Field Value +16:36:42 ============================================================================ +16:36:42 [ 1] [ 4] [0200] +16:36:42 [ 2] [ 16] [6688990030010944] +16:36:42 [ 3] [ 6] [010000] +16:36:42 [ 4] [ 12] [000100000000] +16:36:42 [ 7] [ 10] [0320093548] +16:36:42 [ 11] [ 6] [270526] +16:36:42 [ 12] [ 6] [163548] +16:36:42 [ 13] [ 4] [0320] +16:36:42 [ 14] [ 4] [9802] +16:36:42 [ 15] [ 4] [0320] +16:36:42 [ 18] [ 4] [6011] +16:36:42 [ 19] [ 3] [418] +16:36:42 [ 22] [ 3] [021] +16:36:42 [ 25] [ 2] [01] +16:36:42 [ 28] [ 9] [D00002000] +16:36:42 [ 32] [ 6] [180893] +16:36:42 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:36:42 [ 37] [ 12] [507909270526] +16:36:42 [ 41] [ 8] [0523XYNG] +16:36:42 [ 42] [ 15] [999999 ] +16:36:42 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +16:36:42 [ 49] [ 3] [418] +16:36:42 [ 52] [ 16] [9067361A00457C31] +16:36:42 ============================================================================ +16:36:42 + + +waiting on router queue for slot.... +16:36:42 Sending to : <0> +16:36:42 ============================================================================ +16:36:42 ============================================================================ +16:36:42 Slot Id : <83> +16:36:42 Transaction Type : RESPONSE +16:36:42 Received From : +16:36:42 ============================================================================ +16:36:42 FNo. Len. Field Value +16:36:42 ============================================================================ +16:36:42 [ 1] [ 4] [0210] +16:36:42 [ 2] [ 16] [6688990030010944] +16:36:42 [ 3] [ 6] [010000] +16:36:42 [ 4] [ 12] [000100000000] +16:36:42 [ 7] [ 10] [0320093548] +16:36:42 [ 11] [ 6] [270526] +16:36:42 [ 12] [ 6] [163548] +16:36:42 [ 13] [ 4] [0320] +16:36:42 [ 15] [ 4] [0320] +16:36:42 [ 18] [ 4] [6011] +16:36:42 [ 19] [ 3] [418] +16:36:42 [ 22] [ 3] [021] +16:36:42 [ 32] [ 6] [180893] +16:36:42 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:36:42 [ 37] [ 12] [507909270526] +16:36:42 [ 39] [ 2] [14] +16:36:42 [ 41] [ 8] [0523XYNG] +16:36:42 [ 49] [ 3] [418] +16:36:42 ============================================================================ +16:36:42 Sending to : +16:36:42 ============================================================================ +16:36:42 + + +waiting on router queue for slot.... +16:36:43 ============================================================================ +16:36:43 Slot Id : <83> +16:36:43 Transaction Type : RESPONSE +16:36:43 Received From : +16:36:43 ============================================================================ +16:36:43 FNo. Len. Field Value +16:36:43 ============================================================================ +16:36:43 [ 1] [ 4] [0210] +16:36:43 [ 2] [ 16] [6688990030010944] +16:36:43 [ 3] [ 6] [010000] +16:36:43 [ 4] [ 12] [000100000000] +16:36:43 [ 7] [ 10] [0320093548] +16:36:43 [ 11] [ 6] [270526] +16:36:43 [ 12] [ 6] [163548] +16:36:43 [ 13] [ 4] [0320] +16:36:43 [ 15] [ 4] [0320] +16:36:43 [ 18] [ 4] [6011] +16:36:43 [ 19] [ 3] [418] +16:36:43 [ 22] [ 3] [021] +16:36:43 [ 32] [ 6] [180893] +16:36:43 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:36:43 [ 37] [ 12] [507909270526] +16:36:43 [ 39] [ 2] [14] +16:36:43 [ 41] [ 8] [0523XYNG] +16:36:43 [ 49] [ 3] [418] +16:36:43 ============================================================================ +16:36:43 Calculate Source COMM Id = 2 +16:36:43 ============================================================================ +16:36:43 + + +waiting on router queue for slot.... +16:36:45 ============================================================================ +16:36:45 Slot Id : <121> +16:36:45 Transaction Type : REQUEST +16:36:45 Received From : +16:36:45 ============================================================================ +16:36:45 FNo. Len. Field Value +16:36:45 ============================================================================ +16:36:45 [ 1] [ 4] [0200] +16:36:45 [ 2] [ 16] [6213545000624910] +16:36:45 [ 3] [ 6] [010000] +16:36:45 [ 4] [ 12] [000100000000] +16:36:45 [ 7] [ 10] [0320093551] +16:36:45 [ 11] [ 6] [270528] +16:36:45 [ 12] [ 6] [163551] +16:36:45 [ 13] [ 4] [0320] +16:36:45 [ 14] [ 4] [4912] +16:36:45 [ 15] [ 4] [0320] +16:36:45 [ 18] [ 4] [6011] +16:36:45 [ 19] [ 3] [418] +16:36:45 [ 22] [ 3] [021] +16:36:45 [ 25] [ 2] [01] +16:36:45 [ 28] [ 9] [D00002000] +16:36:45 [ 32] [ 6] [180893] +16:36:45 [ 35] [ 32] [6213545000624910=491212012491050] +16:36:45 [ 37] [ 12] [507909270528] +16:36:45 [ 41] [ 8] [0109SKTB] +16:36:45 [ 42] [ 15] [999999 ] +16:36:45 [ 43] [ 40] [ATM SERVICE UNIT SIKHODTABONG LOCATION, ] +16:36:45 [ 49] [ 3] [418] +16:36:45 [ 52] [ 16] [87941B98F7FDB93C] +16:36:45 ============================================================================ +16:36:45 + + +waiting on router queue for slot.... +16:36:45 Sending to : +16:36:45 ============================================================================ +16:36:45 Sending to : +16:36:45 ============================================================================ +16:36:45 ============================================================================ +16:36:45 Slot Id : <121> +16:36:45 Transaction Type : REQUEST +16:36:45 Received From : +16:36:45 ============================================================================ +16:36:45 FNo. Len. Field Value +16:36:45 ============================================================================ +16:36:45 [ 1] [ 4] [0200] +16:36:45 [ 2] [ 16] [6213545000624910] +16:36:45 [ 3] [ 6] [010000] +16:36:45 [ 4] [ 12] [000100000000] +16:36:45 [ 7] [ 10] [0320093551] +16:36:45 [ 11] [ 6] [270528] +16:36:45 [ 12] [ 6] [163551] +16:36:45 [ 13] [ 4] [0320] +16:36:45 [ 14] [ 4] [4912] +16:36:45 [ 15] [ 4] [0320] +16:36:45 [ 18] [ 4] [6011] +16:36:45 [ 19] [ 3] [418] +16:36:45 [ 22] [ 3] [021] +16:36:45 [ 25] [ 2] [01] +16:36:45 [ 28] [ 9] [D00002000] +16:36:45 [ 32] [ 6] [180893] +16:36:45 [ 35] [ 32] [6213545000624910=491212012491050] +16:36:45 [ 37] [ 12] [507909270528] +16:36:45 [ 41] [ 8] [0109SKTB] +16:36:45 [ 42] [ 15] [999999 ] +16:36:45 [ 43] [ 40] [ATM SERVICE UNIT SIKHODTABONG LOCATION, ] +16:36:45 [ 49] [ 3] [418] +16:36:45 [ 52] [ 16] [87941B98F7FDB93C] +16:36:45 ============================================================================ +16:36:45 + + +waiting on router queue for slot.... +16:36:45 Sending to : +16:36:45 ============================================================================ +16:36:45 ============================================================================ +16:36:45 Slot Id : <121> +16:36:45 Transaction Type : REQUEST +16:36:45 Received From : +16:36:45 ============================================================================ +16:36:45 FNo. Len. Field Value +16:36:45 ============================================================================ +16:36:45 [ 1] [ 4] [0200] +16:36:45 [ 2] [ 16] [6213545000624910] +16:36:45 [ 3] [ 6] [010000] +16:36:45 [ 4] [ 12] [000100000000] +16:36:45 [ 7] [ 10] [0320093551] +16:36:45 [ 11] [ 6] [270528] +16:36:45 [ 12] [ 6] [163551] +16:36:45 [ 13] [ 4] [0320] +16:36:45 [ 14] [ 4] [4912] +16:36:45 [ 15] [ 4] [0320] +16:36:45 [ 18] [ 4] [6011] +16:36:45 [ 19] [ 3] [418] +16:36:45 [ 22] [ 3] [021] +16:36:45 [ 25] [ 2] [01] +16:36:45 [ 28] [ 9] [D00002000] +16:36:45 [ 32] [ 6] [180893] +16:36:45 [ 35] [ 32] [6213545000624910=491212012491050] +16:36:45 [ 37] [ 12] [507909270528] +16:36:45 [ 41] [ 8] [0109SKTB] +16:36:45 [ 42] [ 15] [999999 ] +16:36:45 [ 43] [ 40] [ATM SERVICE UNIT SIKHODTABONG LOCATION, ] +16:36:45 [ 49] [ 3] [418] +16:36:45 [ 52] [ 16] [6852C36222732E7A] +16:36:45 ============================================================================ +16:36:45 + + +waiting on router queue for slot.... +16:36:45 Sending to : <0> +16:36:45 ============================================================================ +16:36:46 ============================================================================ +16:36:46 Slot Id : <121> +16:36:46 Transaction Type : RESPONSE +16:36:46 Received From : +16:36:46 ============================================================================ +16:36:46 FNo. Len. Field Value +16:36:46 ============================================================================ +16:36:46 [ 1] [ 4] [0210] +16:36:46 [ 2] [ 16] [6213545000624910] +16:36:46 [ 3] [ 6] [010000] +16:36:46 [ 4] [ 12] [000100000000] +16:36:46 [ 7] [ 10] [0320093551] +16:36:46 [ 11] [ 6] [270528] +16:36:46 [ 12] [ 6] [163551] +16:36:46 [ 13] [ 4] [0320] +16:36:46 [ 15] [ 4] [0320] +16:36:46 [ 18] [ 4] [6011] +16:36:46 [ 19] [ 3] [418] +16:36:46 [ 32] [ 6] [180893] +16:36:46 [ 35] [ 32] [6213545000624910=491212012491050] +16:36:46 [ 37] [ 12] [507909270528] +16:36:46 [ 38] [ 6] [731442] +16:36:46 [ 39] [ 2] [00] +16:36:46 [ 41] [ 8] [0109SKTB] +16:36:46 [ 49] [ 3] [418] +16:36:46 [ 54] [ 40] [0001418C0000792283670002418C000079228367] +16:36:46 ============================================================================ +16:36:46 Sending to : +16:36:46 ============================================================================ +16:36:46 + + +waiting on router queue for slot.... +16:36:47 ============================================================================ +16:36:47 Slot Id : <107> +16:36:47 Transaction Type : REQUEST +16:36:47 Received From : +16:36:47 ============================================================================ +16:36:47 FNo. Len. Field Value +16:36:47 ============================================================================ +16:36:47 [ 1] [ 4] [0800] +16:36:47 [ 2] [ 5] [02531] +16:36:47 [ 3] [ 6] [579168] +16:36:47 [ 7] [ 10] [0320093647] +16:36:47 [ 11] [ 6] [807376] +16:36:47 [ 15] [ 10] [0320093647] +16:36:47 [ 37] [ 11] [57916807376] +16:36:47 [ 70] [ 3] [001] +16:36:47 ============================================================================ +16:36:47 + + +waiting on router queue for slot.... +16:36:47 ============================================================================ +16:36:47 Slot Id : <107> +16:36:47 Transaction Type : RESPONSE +16:36:47 Received From : +16:36:47 ============================================================================ +16:36:47 FNo. Len. Field Value +16:36:47 ============================================================================ +16:36:47 [ 1] [ 4] [0810] +16:36:47 [ 7] [ 10] [0320093647] +16:36:47 [ 11] [ 6] [807376] +16:36:47 [ 15] [ 4] [0320] +16:36:47 [ 37] [ 12] [57916807376] +16:36:47 [ 39] [ 2] [00] +16:36:47 [ 70] [ 3] [001] +16:36:47 ============================================================================ +16:36:47 Sending to : +16:36:47 ============================================================================ +16:36:47 + + +waiting on router queue for slot.... +16:36:47 ============================================================================ +16:36:47 Slot Id : <121> +16:36:47 Transaction Type : RESPONSE +16:36:47 Received From : +16:36:47 ============================================================================ +16:36:47 FNo. Len. Field Value +16:36:47 ============================================================================ +16:36:47 [ 1] [ 4] [0210] +16:36:47 [ 2] [ 16] [6213545000624910] +16:36:47 [ 3] [ 6] [010000] +16:36:47 [ 4] [ 12] [000100000000] +16:36:47 [ 7] [ 10] [0320093551] +16:36:47 [ 11] [ 6] [270528] +16:36:47 [ 12] [ 6] [163551] +16:36:47 [ 13] [ 4] [0320] +16:36:47 [ 15] [ 4] [0320] +16:36:47 [ 18] [ 4] [6011] +16:36:47 [ 19] [ 3] [418] +16:36:47 [ 32] [ 6] [180893] +16:36:47 [ 35] [ 32] [6213545000624910=491212012491050] +16:36:47 [ 37] [ 12] [507909270528] +16:36:47 [ 38] [ 6] [731442] +16:36:47 [ 39] [ 2] [00] +16:36:47 [ 41] [ 8] [0109SKTB] +16:36:47 [ 49] [ 3] [418] +16:36:47 [ 54] [ 40] [0001418C0000792283670002418C000079228367] +16:36:47 ============================================================================ +16:36:47 Calculate Source COMM Id = 2 +16:36:47 ============================================================================ +16:36:47 + + +waiting on router queue for slot.... +16:36:54 ============================================================================ +16:36:54 Slot Id : <74> +16:36:54 Transaction Type : REQUEST +16:36:54 Received From : +16:36:54 ============================================================================ +16:36:54 FNo. Len. Field Value +16:36:54 ============================================================================ +16:36:54 [ 1] [ 4] [0200] +16:36:54 [ 2] [ 16] [6213545000734214] +16:36:54 [ 3] [ 6] [311000] +16:36:54 [ 4] [ 12] [000000000000] +16:36:54 [ 7] [ 10] [0320164441] +16:36:54 [ 11] [ 6] [240865] +16:36:54 [ 12] [ 6] [164441] +16:36:54 [ 13] [ 4] [0320] +16:36:54 [ 14] [ 4] [4912] +16:36:54 [ 15] [ 4] [0320] +16:36:54 [ 18] [ 4] [6011] +16:36:54 [ 22] [ 3] [900] +16:36:54 [ 25] [ 2] [02] +16:36:54 [ 28] [ 9] [000000000] +16:36:54 [ 32] [ 6] [220699] +16:36:54 [ 35] [ 32] [6213545000734214=491212013421145] +16:36:54 [ 37] [ 12] [507900410453] +16:36:54 [ 41] [ 8] [08000300] +16:36:54 [ 42] [ 15] [APTRA ] +16:36:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:36:54 [ 49] [ 3] [418] +16:36:54 [ 52] [ 16] [5D3A7AF253C426B7] +16:36:54 ============================================================================ +16:36:54 + + +waiting on router queue for slot.... +16:36:54 Sending to : +16:36:54 ============================================================================ +16:36:54 Sending to : +16:36:54 ============================================================================ +16:36:54 ============================================================================ +16:36:54 Slot Id : <74> +16:36:54 Transaction Type : REQUEST +16:36:54 Received From : +16:36:54 ============================================================================ +16:36:54 FNo. Len. Field Value +16:36:54 ============================================================================ +16:36:54 [ 1] [ 4] [0200] +16:36:54 [ 2] [ 16] [6213545000734214] +16:36:54 [ 3] [ 6] [311000] +16:36:54 [ 4] [ 12] [000000000000] +16:36:54 [ 7] [ 10] [0320164441] +16:36:54 [ 11] [ 6] [240865] +16:36:54 [ 12] [ 6] [164441] +16:36:54 [ 13] [ 4] [0320] +16:36:54 [ 14] [ 4] [4912] +16:36:54 [ 15] [ 4] [0320] +16:36:54 [ 18] [ 4] [6011] +16:36:54 [ 22] [ 3] [900] +16:36:54 [ 25] [ 2] [02] +16:36:54 [ 28] [ 9] [000000000] +16:36:54 [ 32] [ 6] [220699] +16:36:54 [ 35] [ 32] [6213545000734214=491212013421145] +16:36:54 [ 37] [ 12] [507900410453] +16:36:54 [ 41] [ 8] [08000300] +16:36:54 [ 42] [ 15] [APTRA ] +16:36:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:36:54 [ 49] [ 3] [418] +16:36:54 [ 52] [ 16] [5D3A7AF253C426B7] +16:36:54 ============================================================================ +16:36:54 + + +waiting on router queue for slot.... +16:36:54 Sending to : +16:36:54 ============================================================================ +16:36:55 ============================================================================ +16:36:55 Slot Id : <74> +16:36:55 Transaction Type : REQUEST +16:36:55 Received From : +16:36:55 ============================================================================ +16:36:55 FNo. Len. Field Value +16:36:55 ============================================================================ +16:36:55 [ 1] [ 4] [0200] +16:36:55 [ 2] [ 16] [6213545000734214] +16:36:55 [ 3] [ 6] [311000] +16:36:55 [ 4] [ 12] [000000000000] +16:36:55 [ 7] [ 10] [0320164441] +16:36:55 [ 11] [ 6] [240865] +16:36:55 [ 12] [ 6] [164441] +16:36:55 [ 13] [ 4] [0320] +16:36:55 [ 14] [ 4] [4912] +16:36:55 [ 15] [ 4] [0320] +16:36:55 [ 18] [ 4] [6011] +16:36:55 [ 22] [ 3] [900] +16:36:55 [ 25] [ 2] [02] +16:36:55 [ 28] [ 9] [000000000] +16:36:55 [ 32] [ 6] [220699] +16:36:55 [ 35] [ 32] [6213545000734214=491212013421145] +16:36:55 [ 37] [ 12] [507900410453] +16:36:55 [ 41] [ 8] [08000300] +16:36:55 [ 42] [ 15] [APTRA ] +16:36:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:36:55 [ 49] [ 3] [418] +16:36:55 [ 52] [ 16] [0BE5AA1DC8A39314] +16:36:55 ============================================================================ +16:36:55 + + +waiting on router queue for slot.... +16:36:55 Sending to : <0> +16:36:55 ============================================================================ +16:36:55 ============================================================================ +16:36:55 Slot Id : <74> +16:36:55 Transaction Type : RESPONSE +16:36:55 Received From : +16:36:55 ============================================================================ +16:36:55 FNo. Len. Field Value +16:36:55 ============================================================================ +16:36:55 [ 1] [ 4] [0210] +16:36:55 [ 2] [ 16] [6213545000734214] +16:36:55 [ 3] [ 6] [311000] +16:36:55 [ 4] [ 12] [000000000000] +16:36:55 [ 7] [ 10] [0320164441] +16:36:55 [ 11] [ 6] [240865] +16:36:55 [ 12] [ 6] [164441] +16:36:55 [ 13] [ 4] [0320] +16:36:55 [ 15] [ 4] [0320] +16:36:55 [ 18] [ 4] [6011] +16:36:55 [ 32] [ 6] [220699] +16:36:55 [ 35] [ 32] [6213545000734214=491212013421145] +16:36:55 [ 37] [ 12] [507900410453] +16:36:55 [ 38] [ 6] [111495] +16:36:55 [ 39] [ 2] [00] +16:36:55 [ 41] [ 8] [08000300] +16:36:55 [ 49] [ 3] [418] +16:36:55 [ 54] [ 40] [1001418C0000187506591002418C000018750659] +16:36:55 ============================================================================ +16:36:55 Sending to : +16:36:55 ============================================================================ +16:36:55 + + +waiting on router queue for slot.... +16:36:56 ============================================================================ +16:36:56 Slot Id : <74> +16:36:56 Transaction Type : RESPONSE +16:36:56 Received From : +16:36:56 ============================================================================ +16:36:56 FNo. Len. Field Value +16:36:56 ============================================================================ +16:36:56 [ 1] [ 4] [0210] +16:36:56 [ 2] [ 16] [6213545000734214] +16:36:56 [ 3] [ 6] [311000] +16:36:56 [ 4] [ 12] [000000000000] +16:36:56 [ 7] [ 10] [0320164441] +16:36:56 [ 11] [ 6] [240865] +16:36:56 [ 12] [ 6] [164441] +16:36:56 [ 13] [ 4] [0320] +16:36:56 [ 15] [ 4] [0320] +16:36:56 [ 18] [ 4] [6011] +16:36:56 [ 32] [ 6] [220699] +16:36:56 [ 35] [ 32] [6213545000734214=491212013421145] +16:36:56 [ 37] [ 12] [507900410453] +16:36:56 [ 38] [ 6] [111495] +16:36:56 [ 39] [ 2] [00] +16:36:56 [ 41] [ 8] [08000300] +16:36:56 [ 49] [ 3] [418] +16:36:56 [ 54] [ 40] [1001418C0000187506591002418C000018750659] +16:36:56 ============================================================================ +16:36:56 Calculate Source COMM Id = 1 +16:36:56 ============================================================================ +16:36:56 + + +waiting on router queue for slot.... +16:37:01 ============================================================================ +16:37:01 Slot Id : <115> +16:37:01 Transaction Type : REQUEST +16:37:01 Received From : +16:37:01 ============================================================================ +16:37:01 FNo. Len. Field Value +16:37:01 ============================================================================ +16:37:01 [ 1] [ 4] [0200] +16:37:01 [ 2] [ 16] [6688990108424209] +16:37:01 [ 3] [ 6] [301000] +16:37:01 [ 4] [ 12] [000000000000] +16:37:01 [ 7] [ 10] [0320163656] +16:37:01 [ 11] [ 6] [801751] +16:37:01 [ 12] [ 6] [163656] +16:37:01 [ 13] [ 4] [0320] +16:37:01 [ 15] [ 4] [0320] +16:37:01 [ 18] [ 4] [6011] +16:37:01 [ 22] [ 3] [900] +16:37:01 [ 25] [ 2] [02] +16:37:01 [ 28] [ 9] [D00000000] +16:37:01 [ 32] [ 6] [621354] +16:37:01 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:37:01 [ 37] [ 12] [507903499609] +16:37:01 [ 41] [ 8] [06002200] +16:37:01 [ 42] [ 15] [NATIVE ] +16:37:01 [ 43] [ 40] [Beng Market Beng LAO] +16:37:01 [ 49] [ 3] [418] +16:37:01 [ 52] [ 16] [50FF66322288B481] +16:37:01 ============================================================================ +16:37:01 + + +waiting on router queue for slot.... +16:37:01 Sending to : +16:37:01 ============================================================================ +16:37:01 Sending to : +16:37:01 ============================================================================ +16:37:01 ============================================================================ +16:37:01 Slot Id : <115> +16:37:01 Transaction Type : REQUEST +16:37:01 Received From : +16:37:01 ============================================================================ +16:37:01 FNo. Len. Field Value +16:37:01 ============================================================================ +16:37:01 [ 1] [ 4] [0200] +16:37:01 [ 2] [ 16] [6688990108424209] +16:37:01 [ 3] [ 6] [301000] +16:37:01 [ 4] [ 12] [000000000000] +16:37:01 [ 7] [ 10] [0320163656] +16:37:01 [ 11] [ 6] [801751] +16:37:01 [ 12] [ 6] [163656] +16:37:01 [ 13] [ 4] [0320] +16:37:01 [ 15] [ 4] [0320] +16:37:01 [ 18] [ 4] [6011] +16:37:01 [ 22] [ 3] [900] +16:37:01 [ 25] [ 2] [02] +16:37:01 [ 28] [ 9] [D00000000] +16:37:01 [ 32] [ 6] [621354] +16:37:01 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:37:01 [ 37] [ 12] [507903499609] +16:37:01 [ 41] [ 8] [06002200] +16:37:01 [ 42] [ 15] [NATIVE ] +16:37:01 [ 43] [ 40] [Beng Market Beng LAO] +16:37:01 [ 49] [ 3] [418] +16:37:01 [ 52] [ 16] [50FF66322288B481] +16:37:01 ============================================================================ +16:37:01 + + +waiting on router queue for slot.... +16:37:01 Sending to : +16:37:01 ============================================================================ +16:37:01 ============================================================================ +16:37:01 Slot Id : <115> +16:37:01 Transaction Type : REQUEST +16:37:01 Received From : +16:37:01 ============================================================================ +16:37:01 FNo. Len. Field Value +16:37:01 ============================================================================ +16:37:01 [ 1] [ 4] [0200] +16:37:01 [ 2] [ 16] [6688990108424209] +16:37:01 [ 3] [ 6] [301000] +16:37:01 [ 4] [ 12] [000000000000] +16:37:01 [ 7] [ 10] [0320163656] +16:37:01 [ 11] [ 6] [801751] +16:37:01 [ 12] [ 6] [163656] +16:37:01 [ 13] [ 4] [0320] +16:37:01 [ 15] [ 4] [0320] +16:37:01 [ 18] [ 4] [6011] +16:37:01 [ 22] [ 3] [900] +16:37:01 [ 25] [ 2] [02] +16:37:01 [ 28] [ 9] [D00000000] +16:37:01 [ 32] [ 6] [621354] +16:37:01 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:37:01 [ 37] [ 12] [507903499609] +16:37:01 [ 41] [ 8] [06002200] +16:37:01 [ 42] [ 15] [NATIVE ] +16:37:01 [ 43] [ 40] [Beng Market Beng LAO] +16:37:01 [ 49] [ 3] [418] +16:37:01 [ 52] [ 16] [18594C5E4BD5B510] +16:37:01 ============================================================================ +16:37:01 + + +waiting on router queue for slot.... +16:37:01 Sending to : <4> +16:37:01 ============================================================================ +16:37:02 ============================================================================ +16:37:02 Slot Id : <92> +16:37:02 Transaction Type : REQUEST +16:37:02 Received From : +16:37:02 ============================================================================ +16:37:02 FNo. Len. Field Value +16:37:02 ============================================================================ +16:37:02 [ 1] [ 4] [0800] +16:37:02 [ 7] [ 10] [0320093608] +16:37:02 [ 11] [ 6] [157268] +16:37:02 [ 70] [ 3] [301] +16:37:02 ============================================================================ +16:37:02 + + +waiting on router queue for slot.... +16:37:02 Sending to : +16:37:02 ============================================================================ +16:37:02 ============================================================================ +16:37:02 Slot Id : <92> +16:37:02 Transaction Type : RESPONSE +16:37:02 Received From : +16:37:02 ============================================================================ +16:37:02 FNo. Len. Field Value +16:37:02 ============================================================================ +16:37:02 [ 1] [ 4] [0810] +16:37:02 [ 7] [ 10] [0320093608] +16:37:02 [ 11] [ 6] [157268] +16:37:02 [ 39] [ 2] [00] +16:37:02 [ 70] [ 3] [301] +16:37:02 ============================================================================ +16:37:02 Calculate Source COMM Id = 2 +16:37:02 ============================================================================ +16:37:02 + + +waiting on router queue for slot.... +16:37:02 ============================================================================ +16:37:02 Slot Id : <115> +16:37:02 Transaction Type : RESPONSE +16:37:02 Received From : +16:37:02 ============================================================================ +16:37:02 FNo. Len. Field Value +16:37:02 ============================================================================ +16:37:02 [ 1] [ 4] [0210] +16:37:02 [ 2] [ 16] [6688990108424209] +16:37:02 [ 3] [ 6] [301000] +16:37:02 [ 4] [ 12] [000000000000] +16:37:02 [ 11] [ 6] [801751] +16:37:02 [ 12] [ 6] [163656] +16:37:02 [ 15] [ 4] [0320] +16:37:02 [ 18] [ 4] [6011] +16:37:02 [ 32] [ 6] [621354] +16:37:02 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:37:02 [ 37] [ 12] [507903499609] +16:37:02 [ 38] [ 6] [492375] +16:37:02 [ 39] [ 2] [00] +16:37:02 [ 41] [ 8] [06002200] +16:37:02 [ 49] [ 3] [418] +16:37:02 [ 54] [ 20] [1002418C000281159720] +16:37:02 ============================================================================ +16:37:02 Sending to : +16:37:02 ============================================================================ +16:37:02 + + +waiting on router queue for slot.... +16:37:04 ============================================================================ +16:37:04 Slot Id : <115> +16:37:04 Transaction Type : RESPONSE +16:37:04 Received From : +16:37:04 ============================================================================ +16:37:04 FNo. Len. Field Value +16:37:04 ============================================================================ +16:37:04 [ 1] [ 4] [0210] +16:37:04 [ 2] [ 16] [6688990108424209] +16:37:04 [ 3] [ 6] [301000] +16:37:04 [ 4] [ 12] [000000000000] +16:37:04 [ 11] [ 6] [801751] +16:37:04 [ 12] [ 6] [163656] +16:37:04 [ 15] [ 4] [0320] +16:37:04 [ 18] [ 4] [6011] +16:37:04 [ 32] [ 6] [621354] +16:37:04 [ 35] [ 37] [6688990108424209=44061231420938800000] +16:37:04 [ 37] [ 12] [507903499609] +16:37:04 [ 38] [ 6] [492375] +16:37:04 [ 39] [ 2] [00] +16:37:04 [ 41] [ 8] [06002200] +16:37:04 [ 49] [ 3] [418] +16:37:04 [ 54] [ 20] [1002418C000281159720] +16:37:04 ============================================================================ +16:37:04 Calculate Source COMM Id = 0 +16:37:04 ============================================================================ +16:37:04 + + +waiting on router queue for slot.... +16:37:04 ============================================================================ +16:37:04 Slot Id : <113> +16:37:04 Transaction Type : REQUEST +16:37:04 Received From : +16:37:04 ============================================================================ +16:37:04 FNo. Len. Field Value +16:37:04 ============================================================================ +16:37:04 [ 1] [ 4] [0200] +16:37:04 [ 2] [ 16] [6688990106119306] +16:37:04 [ 3] [ 6] [011000] +16:37:04 [ 4] [ 12] [000010000000] +16:37:04 [ 7] [ 10] [0320163659] +16:37:04 [ 11] [ 6] [801775] +16:37:04 [ 12] [ 6] [163659] +16:37:04 [ 13] [ 4] [0320] +16:37:04 [ 15] [ 4] [0320] +16:37:04 [ 18] [ 4] [6011] +16:37:04 [ 22] [ 3] [900] +16:37:04 [ 25] [ 2] [02] +16:37:04 [ 28] [ 9] [D00002000] +16:37:04 [ 32] [ 6] [621354] +16:37:04 [ 35] [ 37] [6688990106119306=43111231930669800000] +16:37:04 [ 37] [ 12] [507904755493] +16:37:04 [ 41] [ 8] [07001100] +16:37:04 [ 42] [ 15] [NATIVE ] +16:37:04 [ 43] [ 40] [Industry Market Namtar LAO] +16:37:04 [ 49] [ 3] [418] +16:37:04 [ 52] [ 16] [4CD60AE0231842D0] +16:37:04 ============================================================================ +16:37:04 + + +waiting on router queue for slot.... +16:37:04 Sending to : +16:37:04 ============================================================================ +16:37:04 Sending to : +16:37:04 ============================================================================ +16:37:04 ============================================================================ +16:37:04 Slot Id : <113> +16:37:04 Transaction Type : REQUEST +16:37:04 Received From : +16:37:04 ============================================================================ +16:37:04 FNo. Len. Field Value +16:37:04 ============================================================================ +16:37:04 [ 1] [ 4] [0200] +16:37:04 [ 2] [ 16] [6688990106119306] +16:37:04 [ 3] [ 6] [011000] +16:37:04 [ 4] [ 12] [000010000000] +16:37:04 [ 7] [ 10] [0320163659] +16:37:04 [ 11] [ 6] [801775] +16:37:04 [ 12] [ 6] [163659] +16:37:04 [ 13] [ 4] [0320] +16:37:04 [ 15] [ 4] [0320] +16:37:04 [ 18] [ 4] [6011] +16:37:04 [ 22] [ 3] [900] +16:37:04 [ 25] [ 2] [02] +16:37:04 [ 28] [ 9] [D00002000] +16:37:04 [ 32] [ 6] [621354] +16:37:04 [ 35] [ 37] [6688990106119306=43111231930669800000] +16:37:04 [ 37] [ 12] [507904755493] +16:37:04 [ 41] [ 8] [07001100] +16:37:04 [ 42] [ 15] [NATIVE ] +16:37:04 [ 43] [ 40] [Industry Market Namtar LAO] +16:37:04 [ 49] [ 3] [418] +16:37:04 [ 52] [ 16] [4CD60AE0231842D0] +16:37:04 ============================================================================ +16:37:04 + + +waiting on router queue for slot.... +16:37:04 Sending to : +16:37:04 ============================================================================ +16:37:04 ============================================================================ +16:37:04 Slot Id : <113> +16:37:04 Transaction Type : REQUEST +16:37:04 Received From : +16:37:04 ============================================================================ +16:37:04 FNo. Len. Field Value +16:37:04 ============================================================================ +16:37:04 [ 1] [ 4] [0200] +16:37:04 [ 2] [ 16] [6688990106119306] +16:37:04 [ 3] [ 6] [011000] +16:37:04 [ 4] [ 12] [000010000000] +16:37:04 [ 7] [ 10] [0320163659] +16:37:04 [ 11] [ 6] [801775] +16:37:04 [ 12] [ 6] [163659] +16:37:04 [ 13] [ 4] [0320] +16:37:04 [ 15] [ 4] [0320] +16:37:04 [ 18] [ 4] [6011] +16:37:04 [ 22] [ 3] [900] +16:37:04 [ 25] [ 2] [02] +16:37:04 [ 28] [ 9] [D00002000] +16:37:04 [ 32] [ 6] [621354] +16:37:04 [ 35] [ 37] [6688990106119306=43111231930669800000] +16:37:04 [ 37] [ 12] [507904755493] +16:37:04 [ 41] [ 8] [07001100] +16:37:04 [ 42] [ 15] [NATIVE ] +16:37:04 [ 43] [ 40] [Industry Market Namtar LAO] +16:37:04 [ 49] [ 3] [418] +16:37:04 [ 52] [ 16] [2E005BABA9041E3F] +16:37:04 ============================================================================ +16:37:04 + + +waiting on router queue for slot.... +16:37:04 Sending to : <4> +16:37:04 ============================================================================ +16:37:05 ============================================================================ +16:37:05 Slot Id : <113> +16:37:05 Transaction Type : RESPONSE +16:37:05 Received From : +16:37:05 ============================================================================ +16:37:05 FNo. Len. Field Value +16:37:05 ============================================================================ +16:37:05 [ 1] [ 4] [0210] +16:37:05 [ 2] [ 16] [6688990106119306] +16:37:05 [ 3] [ 6] [011000] +16:37:05 [ 4] [ 12] [000010000000] +16:37:05 [ 11] [ 6] [801775] +16:37:05 [ 12] [ 6] [163659] +16:37:05 [ 15] [ 4] [0320] +16:37:05 [ 18] [ 4] [6011] +16:37:05 [ 32] [ 6] [621354] +16:37:05 [ 35] [ 37] [6688990106119306=43111231930669800000] +16:37:05 [ 37] [ 12] [507904755493] +16:37:05 [ 38] [ 6] [636858] +16:37:05 [ 39] [ 2] [00] +16:37:05 [ 41] [ 8] [07001100] +16:37:05 [ 49] [ 3] [418] +16:37:05 [ 54] [ 20] [1002418C000095903199] +16:37:05 ============================================================================ +16:37:05 Sending to : +16:37:05 ============================================================================ +16:37:05 + + +waiting on router queue for slot.... +16:37:07 ============================================================================ +16:37:07 Slot Id : <113> +16:37:07 Transaction Type : RESPONSE +16:37:07 Received From : +16:37:07 ============================================================================ +16:37:07 FNo. Len. Field Value +16:37:07 ============================================================================ +16:37:07 [ 1] [ 4] [0210] +16:37:07 [ 2] [ 16] [6688990106119306] +16:37:07 [ 3] [ 6] [011000] +16:37:07 [ 4] [ 12] [000010000000] +16:37:07 [ 11] [ 6] [801775] +16:37:07 [ 12] [ 6] [163659] +16:37:07 [ 15] [ 4] [0320] +16:37:07 [ 18] [ 4] [6011] +16:37:07 [ 32] [ 6] [621354] +16:37:07 [ 35] [ 37] [6688990106119306=43111231930669800000] +16:37:07 [ 37] [ 12] [507904755493] +16:37:07 [ 38] [ 6] [636858] +16:37:07 [ 39] [ 2] [00] +16:37:07 [ 41] [ 8] [07001100] +16:37:07 [ 49] [ 3] [418] +16:37:07 [ 54] [ 20] [1002418C000095903199] +16:37:07 ============================================================================ +16:37:07 Calculate Source COMM Id = 0 +16:37:07 ============================================================================ +16:37:07 + + +waiting on router queue for slot.... +16:37:17 ============================================================================ +16:37:17 Slot Id : <108> +16:37:17 Transaction Type : REQUEST +16:37:17 Received From : +16:37:17 ============================================================================ +16:37:17 FNo. Len. Field Value +16:37:17 ============================================================================ +16:37:17 [ 1] [ 4] [0800] +16:37:17 [ 7] [ 10] [0320093624] +16:37:17 [ 11] [ 6] [157269] +16:37:17 [ 70] [ 3] [301] +16:37:17 ============================================================================ +16:37:17 + + +waiting on router queue for slot.... +16:37:17 Sending to : +16:37:17 ============================================================================ +16:37:17 ============================================================================ +16:37:17 Slot Id : <108> +16:37:17 Transaction Type : RESPONSE +16:37:17 Received From : +16:37:17 ============================================================================ +16:37:17 FNo. Len. Field Value +16:37:17 ============================================================================ +16:37:17 [ 1] [ 4] [0810] +16:37:17 [ 7] [ 10] [0320093624] +16:37:17 [ 11] [ 6] [157269] +16:37:17 [ 39] [ 2] [00] +16:37:17 [ 70] [ 3] [301] +16:37:17 ============================================================================ +16:37:17 Calculate Source COMM Id = 2 +16:37:17 ============================================================================ +16:37:17 + + +waiting on router queue for slot.... +16:37:25 ============================================================================ +16:37:25 Slot Id : <127> +16:37:25 Transaction Type : REQUEST +16:37:25 Received From : +16:37:25 ============================================================================ +16:37:25 FNo. Len. Field Value +16:37:25 ============================================================================ +16:37:25 [ 1] [ 4] [0200] +16:37:25 [ 2] [ 16] [6688990040139667] +16:37:25 [ 3] [ 6] [010000] +16:37:25 [ 4] [ 12] [000050000000] +16:37:25 [ 7] [ 10] [0320093630] +16:37:25 [ 11] [ 6] [270535] +16:37:25 [ 12] [ 6] [163630] +16:37:25 [ 13] [ 4] [0320] +16:37:25 [ 14] [ 4] [9804] +16:37:25 [ 15] [ 4] [0320] +16:37:25 [ 18] [ 4] [6011] +16:37:25 [ 19] [ 3] [418] +16:37:25 [ 22] [ 3] [021] +16:37:25 [ 25] [ 2] [01] +16:37:25 [ 28] [ 9] [D00002000] +16:37:25 [ 32] [ 6] [180893] +16:37:25 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:37:25 [ 37] [ 12] [507909270535] +16:37:25 [ 41] [ 8] [0321LNTV] +16:37:25 [ 42] [ 15] [999999 ] +16:37:25 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +16:37:25 [ 49] [ 3] [418] +16:37:25 [ 52] [ 16] [9D960BB62B253AC5] +16:37:25 ============================================================================ +16:37:25 + + +waiting on router queue for slot.... +16:37:25 Sending to : +16:37:25 ============================================================================ +16:37:25 Sending to : +16:37:25 ============================================================================ +16:37:26 ============================================================================ +16:37:26 Slot Id : <127> +16:37:26 Transaction Type : REQUEST +16:37:26 Received From : +16:37:26 ============================================================================ +16:37:26 FNo. Len. Field Value +16:37:26 ============================================================================ +16:37:26 [ 1] [ 4] [0200] +16:37:26 [ 2] [ 16] [6688990040139667] +16:37:26 [ 3] [ 6] [010000] +16:37:26 [ 4] [ 12] [000050000000] +16:37:26 [ 7] [ 10] [0320093630] +16:37:26 [ 11] [ 6] [270535] +16:37:26 [ 12] [ 6] [163630] +16:37:26 [ 13] [ 4] [0320] +16:37:26 [ 14] [ 4] [9804] +16:37:26 [ 15] [ 4] [0320] +16:37:26 [ 18] [ 4] [6011] +16:37:26 [ 19] [ 3] [418] +16:37:26 [ 22] [ 3] [021] +16:37:26 [ 25] [ 2] [01] +16:37:26 [ 28] [ 9] [D00002000] +16:37:26 [ 32] [ 6] [180893] +16:37:26 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:37:26 [ 37] [ 12] [507909270535] +16:37:26 [ 41] [ 8] [0321LNTV] +16:37:26 [ 42] [ 15] [999999 ] +16:37:26 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +16:37:26 [ 49] [ 3] [418] +16:37:26 [ 52] [ 16] [9D960BB62B253AC5] +16:37:26 ============================================================================ +16:37:26 + + +waiting on router queue for slot.... +16:37:26 Sending to : +16:37:26 ============================================================================ +16:37:26 ============================================================================ +16:37:26 Slot Id : <127> +16:37:26 Transaction Type : REQUEST +16:37:26 Received From : +16:37:26 ============================================================================ +16:37:26 FNo. Len. Field Value +16:37:26 ============================================================================ +16:37:26 [ 1] [ 4] [0200] +16:37:26 [ 2] [ 16] [6688990040139667] +16:37:26 [ 3] [ 6] [010000] +16:37:26 [ 4] [ 12] [000050000000] +16:37:26 [ 7] [ 10] [0320093630] +16:37:26 [ 11] [ 6] [270535] +16:37:26 [ 12] [ 6] [163630] +16:37:26 [ 13] [ 4] [0320] +16:37:26 [ 14] [ 4] [9804] +16:37:26 [ 15] [ 4] [0320] +16:37:26 [ 18] [ 4] [6011] +16:37:26 [ 19] [ 3] [418] +16:37:26 [ 22] [ 3] [021] +16:37:26 [ 25] [ 2] [01] +16:37:26 [ 28] [ 9] [D00002000] +16:37:26 [ 32] [ 6] [180893] +16:37:26 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:37:26 [ 37] [ 12] [507909270535] +16:37:26 [ 41] [ 8] [0321LNTV] +16:37:26 [ 42] [ 15] [999999 ] +16:37:26 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +16:37:26 [ 49] [ 3] [418] +16:37:26 [ 52] [ 16] [3A542D0B1C03B85E] +16:37:26 ============================================================================ +16:37:26 + + +waiting on router queue for slot.... +16:37:26 Sending to : <0> +16:37:26 ============================================================================ +16:37:26 ============================================================================ +16:37:26 Slot Id : <127> +16:37:26 Transaction Type : RESPONSE +16:37:26 Received From : +16:37:26 ============================================================================ +16:37:26 FNo. Len. Field Value +16:37:26 ============================================================================ +16:37:26 [ 1] [ 4] [0210] +16:37:26 [ 2] [ 16] [6688990040139667] +16:37:26 [ 3] [ 6] [010000] +16:37:26 [ 4] [ 12] [000050000000] +16:37:26 [ 7] [ 10] [0320093630] +16:37:26 [ 11] [ 6] [270535] +16:37:26 [ 12] [ 6] [163630] +16:37:26 [ 13] [ 4] [0320] +16:37:26 [ 15] [ 4] [0320] +16:37:26 [ 18] [ 4] [6011] +16:37:26 [ 19] [ 3] [418] +16:37:26 [ 22] [ 3] [021] +16:37:26 [ 32] [ 6] [180893] +16:37:26 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:37:26 [ 37] [ 12] [507909270535] +16:37:26 [ 39] [ 2] [14] +16:37:26 [ 41] [ 8] [0321LNTV] +16:37:26 [ 49] [ 3] [418] +16:37:26 ============================================================================ +16:37:26 Sending to : +16:37:26 ============================================================================ +16:37:26 + + +waiting on router queue for slot.... +16:37:26 ============================================================================ +16:37:26 Slot Id : <75> +16:37:26 Transaction Type : REQUEST +16:37:26 Received From : +16:37:26 ============================================================================ +16:37:26 FNo. Len. Field Value +16:37:26 ============================================================================ +16:37:26 [ 1] [ 4] [0200] +16:37:26 [ 2] [ 16] [6213544001690632] +16:37:26 [ 3] [ 6] [010000] +16:37:26 [ 4] [ 12] [000040000000] +16:37:26 [ 7] [ 10] [0320163516] +16:37:26 [ 11] [ 6] [952014] +16:37:26 [ 12] [ 6] [163516] +16:37:26 [ 13] [ 4] [0320] +16:37:26 [ 15] [ 4] [0320] +16:37:26 [ 18] [ 4] [6011] +16:37:26 [ 19] [ 3] [418] +16:37:26 [ 22] [ 3] [021] +16:37:26 [ 25] [ 2] [01] +16:37:26 [ 28] [ 9] [D00002000] +16:37:26 [ 32] [ 6] [668899] +16:37:26 [ 35] [ 32] [6213544001690632=491212019063073] +16:37:26 [ 37] [ 12] [507902025607] +16:37:26 [ 41] [ 8] [03414002] +16:37:26 [ 42] [ 15] [APT ] +16:37:26 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:37:26 [ 49] [ 3] [418] +16:37:26 [ 52] [ 16] [1036A3771563C085] +16:37:26 ============================================================================ +16:37:26 + + +waiting on router queue for slot.... +16:37:26 Sending to : +16:37:26 ============================================================================ +16:37:26 Sending to : +16:37:26 ============================================================================ +16:37:27 ============================================================================ +16:37:27 Slot Id : <94> +16:37:27 Transaction Type : REQUEST +16:37:27 Received From : +16:37:27 ============================================================================ +16:37:27 FNo. Len. Field Value +16:37:27 ============================================================================ +16:37:27 [ 1] [ 4] [0200] +16:37:27 [ 2] [ 16] [1999990000002975] +16:37:27 [ 3] [ 6] [010000] +16:37:27 [ 4] [ 12] [000080000000] +16:37:27 [ 7] [ 10] [0320163517] +16:37:27 [ 11] [ 6] [952015] +16:37:27 [ 12] [ 6] [163517] +16:37:27 [ 13] [ 4] [0320] +16:37:27 [ 15] [ 4] [0320] +16:37:27 [ 18] [ 4] [6011] +16:37:27 [ 19] [ 3] [418] +16:37:27 [ 22] [ 3] [021] +16:37:27 [ 25] [ 2] [01] +16:37:27 [ 28] [ 9] [D00002000] +16:37:27 [ 32] [ 6] [668899] +16:37:27 [ 35] [ 32] [1999990000002975=000010100000482] +16:37:27 [ 37] [ 12] [507902623501] +16:37:27 [ 41] [ 8] [03003006] +16:37:27 [ 42] [ 15] [APT ] +16:37:27 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:37:27 [ 49] [ 3] [418] +16:37:27 [ 52] [ 16] [DB87D16B103AF7E7] +16:37:27 ============================================================================ +16:37:27 + + +waiting on router queue for slot.... +16:37:27 Sending to : +16:37:27 ============================================================================ +16:37:27 Sending to : +16:37:27 ============================================================================ +16:37:27 ============================================================================ +16:37:27 Slot Id : <75> +16:37:27 Transaction Type : REQUEST +16:37:27 Received From : +16:37:27 ============================================================================ +16:37:27 FNo. Len. Field Value +16:37:27 ============================================================================ +16:37:27 [ 1] [ 4] [0200] +16:37:27 [ 2] [ 16] [6213544001690632] +16:37:27 [ 3] [ 6] [010000] +16:37:27 [ 4] [ 12] [000040000000] +16:37:27 [ 7] [ 10] [0320163516] +16:37:27 [ 11] [ 6] [952014] +16:37:27 [ 12] [ 6] [163516] +16:37:27 [ 13] [ 4] [0320] +16:37:27 [ 15] [ 4] [0320] +16:37:27 [ 18] [ 4] [6011] +16:37:27 [ 19] [ 3] [418] +16:37:27 [ 22] [ 3] [021] +16:37:27 [ 25] [ 2] [01] +16:37:27 [ 28] [ 9] [D00002000] +16:37:27 [ 32] [ 6] [668899] +16:37:27 [ 35] [ 32] [6213544001690632=491212019063073] +16:37:27 [ 37] [ 12] [507902025607] +16:37:27 [ 41] [ 8] [03414002] +16:37:27 [ 42] [ 15] [APT ] +16:37:27 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:37:27 [ 49] [ 3] [418] +16:37:27 [ 52] [ 16] [1036A3771563C085] +16:37:27 ============================================================================ +16:37:27 + + +waiting on router queue for slot.... +16:37:27 Sending to : +16:37:27 ============================================================================ +16:37:27 ============================================================================ +16:37:27 Slot Id : <75> +16:37:27 Transaction Type : REQUEST +16:37:27 Received From : +16:37:27 ============================================================================ +16:37:27 FNo. Len. Field Value +16:37:27 ============================================================================ +16:37:27 [ 1] [ 4] [0200] +16:37:27 [ 2] [ 16] [6213544001690632] +16:37:27 [ 3] [ 6] [010000] +16:37:27 [ 4] [ 12] [000040000000] +16:37:27 [ 7] [ 10] [0320163516] +16:37:27 [ 11] [ 6] [952014] +16:37:27 [ 12] [ 6] [163516] +16:37:27 [ 13] [ 4] [0320] +16:37:27 [ 15] [ 4] [0320] +16:37:27 [ 18] [ 4] [6011] +16:37:27 [ 19] [ 3] [418] +16:37:27 [ 22] [ 3] [021] +16:37:27 [ 25] [ 2] [01] +16:37:27 [ 28] [ 9] [D00002000] +16:37:27 [ 32] [ 6] [668899] +16:37:27 [ 35] [ 32] [6213544001690632=491212019063073] +16:37:27 [ 37] [ 12] [507902025607] +16:37:27 [ 41] [ 8] [03414002] +16:37:27 [ 42] [ 15] [APT ] +16:37:27 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:37:27 [ 49] [ 3] [418] +16:37:27 [ 52] [ 16] [342D67E3ADEEE507] +16:37:27 ============================================================================ +16:37:27 + + +waiting on router queue for slot.... +16:37:27 Sending to : <0> +16:37:27 ============================================================================ +16:37:27 ============================================================================ +16:37:27 Slot Id : <127> +16:37:27 Transaction Type : RESPONSE +16:37:27 Received From : +16:37:27 ============================================================================ +16:37:27 FNo. Len. Field Value +16:37:27 ============================================================================ +16:37:27 [ 1] [ 4] [0210] +16:37:27 [ 2] [ 16] [6688990040139667] +16:37:27 [ 3] [ 6] [010000] +16:37:27 [ 4] [ 12] [000050000000] +16:37:27 [ 7] [ 10] [0320093630] +16:37:27 [ 11] [ 6] [270535] +16:37:27 [ 12] [ 6] [163630] +16:37:27 [ 13] [ 4] [0320] +16:37:27 [ 15] [ 4] [0320] +16:37:27 [ 18] [ 4] [6011] +16:37:27 [ 19] [ 3] [418] +16:37:27 [ 22] [ 3] [021] +16:37:27 [ 32] [ 6] [180893] +16:37:27 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:37:27 [ 37] [ 12] [507909270535] +16:37:27 [ 39] [ 2] [14] +16:37:27 [ 41] [ 8] [0321LNTV] +16:37:27 [ 49] [ 3] [418] +16:37:27 ============================================================================ +16:37:27 Calculate Source COMM Id = 2 +16:37:27 ============================================================================ +16:37:27 + + +waiting on router queue for slot.... +16:37:27 ============================================================================ +16:37:27 Slot Id : <94> +16:37:27 Transaction Type : REQUEST +16:37:27 Received From : +16:37:27 ============================================================================ +16:37:27 FNo. Len. Field Value +16:37:27 ============================================================================ +16:37:27 [ 1] [ 4] [0200] +16:37:27 [ 2] [ 16] [1999990000002975] +16:37:27 [ 3] [ 6] [010000] +16:37:27 [ 4] [ 12] [000080000000] +16:37:27 [ 7] [ 10] [0320163517] +16:37:27 [ 11] [ 6] [952015] +16:37:27 [ 12] [ 6] [163517] +16:37:27 [ 13] [ 4] [0320] +16:37:27 [ 15] [ 4] [0320] +16:37:27 [ 18] [ 4] [6011] +16:37:27 [ 19] [ 3] [418] +16:37:27 [ 22] [ 3] [021] +16:37:27 [ 25] [ 2] [01] +16:37:27 [ 28] [ 9] [D00002000] +16:37:27 [ 32] [ 6] [668899] +16:37:27 [ 35] [ 32] [1999990000002975=000010100000482] +16:37:27 [ 37] [ 12] [507902623501] +16:37:27 [ 41] [ 8] [03003006] +16:37:27 [ 42] [ 15] [APT ] +16:37:27 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:37:27 [ 49] [ 3] [418] +16:37:27 [ 52] [ 16] [DB87D16B103AF7E7] +16:37:27 ============================================================================ +16:37:27 + + +waiting on router queue for slot.... +16:37:27 Sending to : +16:37:27 ============================================================================ +16:37:27 ============================================================================ +16:37:27 Slot Id : <94> +16:37:27 Transaction Type : REQUEST +16:37:27 Received From : +16:37:27 ============================================================================ +16:37:27 FNo. Len. Field Value +16:37:27 ============================================================================ +16:37:27 [ 1] [ 4] [0200] +16:37:27 [ 2] [ 16] [1999990000002975] +16:37:27 [ 3] [ 6] [010000] +16:37:27 [ 4] [ 12] [000080000000] +16:37:27 [ 7] [ 10] [0320163517] +16:37:27 [ 11] [ 6] [952015] +16:37:27 [ 12] [ 6] [163517] +16:37:27 [ 13] [ 4] [0320] +16:37:27 [ 15] [ 4] [0320] +16:37:27 [ 18] [ 4] [6011] +16:37:27 [ 19] [ 3] [418] +16:37:27 [ 22] [ 3] [021] +16:37:27 [ 25] [ 2] [01] +16:37:27 [ 28] [ 9] [D00002000] +16:37:27 [ 32] [ 6] [668899] +16:37:27 [ 35] [ 32] [1999990000002975=000010100000482] +16:37:27 [ 37] [ 12] [507902623501] +16:37:27 [ 41] [ 8] [03003006] +16:37:27 [ 42] [ 15] [APT ] +16:37:27 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:37:27 [ 49] [ 3] [418] +16:37:27 [ 52] [ 16] [69468AA2F3682BBE] +16:37:27 ============================================================================ +16:37:27 + + +waiting on router queue for slot.... +16:37:27 Sending to : <5> +16:37:27 ============================================================================ +16:37:27 ============================================================================ +16:37:27 Slot Id : <95> +16:37:27 Transaction Type : REQUEST +16:37:27 Received From : +16:37:27 ============================================================================ +16:37:27 FNo. Len. Field Value +16:37:27 ============================================================================ +16:37:27 [ 1] [ 4] [0200] +16:37:27 [ 2] [ 16] [6213545000734214] +16:37:27 [ 3] [ 6] [011000] +16:37:27 [ 4] [ 12] [000010000000] +16:37:27 [ 7] [ 10] [0320164514] +16:37:27 [ 11] [ 6] [240866] +16:37:27 [ 12] [ 6] [164514] +16:37:27 [ 13] [ 4] [0320] +16:37:27 [ 14] [ 4] [4912] +16:37:27 [ 15] [ 4] [0320] +16:37:27 [ 18] [ 4] [6011] +16:37:27 [ 22] [ 3] [900] +16:37:27 [ 25] [ 2] [02] +16:37:27 [ 28] [ 9] [D00002000] +16:37:27 [ 32] [ 6] [220699] +16:37:27 [ 35] [ 32] [6213545000734214=491212013421145] +16:37:27 [ 37] [ 12] [507900410454] +16:37:27 [ 41] [ 8] [08000300] +16:37:27 [ 42] [ 15] [APTRA ] +16:37:27 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:37:27 [ 49] [ 3] [418] +16:37:27 [ 52] [ 16] [5D3A7AF253C426B7] +16:37:27 ============================================================================ +16:37:27 + + +waiting on router queue for slot.... +16:37:27 Sending to : +16:37:27 ============================================================================ +16:37:27 Sending to : +16:37:27 ============================================================================ +16:37:27 ============================================================================ +16:37:27 Slot Id : <75> +16:37:27 Transaction Type : RESPONSE +16:37:27 Received From : +16:37:27 ============================================================================ +16:37:27 FNo. Len. Field Value +16:37:27 ============================================================================ +16:37:27 [ 1] [ 4] [0210] +16:37:27 [ 2] [ 16] [6213544001690632] +16:37:27 [ 3] [ 6] [010000] +16:37:27 [ 4] [ 12] [000040000000] +16:37:27 [ 7] [ 10] [0320163516] +16:37:27 [ 11] [ 6] [952014] +16:37:27 [ 12] [ 6] [163516] +16:37:27 [ 13] [ 4] [0320] +16:37:27 [ 15] [ 4] [0320] +16:37:27 [ 18] [ 4] [6011] +16:37:27 [ 19] [ 3] [418] +16:37:27 [ 32] [ 6] [668899] +16:37:27 [ 35] [ 32] [6213544001690632=491212019063073] +16:37:27 [ 37] [ 12] [507902025607] +16:37:27 [ 38] [ 6] [252669] +16:37:27 [ 39] [ 2] [00] +16:37:27 [ 41] [ 8] [03414002] +16:37:27 [ 49] [ 3] [418] +16:37:27 [ 54] [ 40] [0001418C0000141520300002418C000014152030] +16:37:27 ============================================================================ +16:37:27 Sending to : +16:37:27 ============================================================================ +16:37:27 + + +waiting on router queue for slot.... +16:37:28 ============================================================================ +16:37:28 Slot Id : <95> +16:37:28 Transaction Type : REQUEST +16:37:28 Received From : +16:37:28 ============================================================================ +16:37:28 FNo. Len. Field Value +16:37:28 ============================================================================ +16:37:28 [ 1] [ 4] [0200] +16:37:28 [ 2] [ 16] [6213545000734214] +16:37:28 [ 3] [ 6] [011000] +16:37:28 [ 4] [ 12] [000010000000] +16:37:28 [ 7] [ 10] [0320164514] +16:37:28 [ 11] [ 6] [240866] +16:37:28 [ 12] [ 6] [164514] +16:37:28 [ 13] [ 4] [0320] +16:37:28 [ 14] [ 4] [4912] +16:37:28 [ 15] [ 4] [0320] +16:37:28 [ 18] [ 4] [6011] +16:37:28 [ 22] [ 3] [900] +16:37:28 [ 25] [ 2] [02] +16:37:28 [ 28] [ 9] [D00002000] +16:37:28 [ 32] [ 6] [220699] +16:37:28 [ 35] [ 32] [6213545000734214=491212013421145] +16:37:28 [ 37] [ 12] [507900410454] +16:37:28 [ 41] [ 8] [08000300] +16:37:28 [ 42] [ 15] [APTRA ] +16:37:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:37:28 [ 49] [ 3] [418] +16:37:28 [ 52] [ 16] [5D3A7AF253C426B7] +16:37:28 ============================================================================ +16:37:28 + + +waiting on router queue for slot.... +16:37:28 Sending to : +16:37:28 ============================================================================ +16:37:28 ============================================================================ +16:37:28 Slot Id : <95> +16:37:28 Transaction Type : REQUEST +16:37:28 Received From : +16:37:28 ============================================================================ +16:37:28 FNo. Len. Field Value +16:37:28 ============================================================================ +16:37:28 [ 1] [ 4] [0200] +16:37:28 [ 2] [ 16] [6213545000734214] +16:37:28 [ 3] [ 6] [011000] +16:37:28 [ 4] [ 12] [000010000000] +16:37:28 [ 7] [ 10] [0320164514] +16:37:28 [ 11] [ 6] [240866] +16:37:28 [ 12] [ 6] [164514] +16:37:28 [ 13] [ 4] [0320] +16:37:28 [ 14] [ 4] [4912] +16:37:28 [ 15] [ 4] [0320] +16:37:28 [ 18] [ 4] [6011] +16:37:28 [ 22] [ 3] [900] +16:37:28 [ 25] [ 2] [02] +16:37:28 [ 28] [ 9] [D00002000] +16:37:28 [ 32] [ 6] [220699] +16:37:28 [ 35] [ 32] [6213545000734214=491212013421145] +16:37:28 [ 37] [ 12] [507900410454] +16:37:28 [ 41] [ 8] [08000300] +16:37:28 [ 42] [ 15] [APTRA ] +16:37:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:37:28 [ 49] [ 3] [418] +16:37:28 [ 52] [ 16] [0BE5AA1DC8A39314] +16:37:28 ============================================================================ +16:37:28 + + +waiting on router queue for slot.... +16:37:28 Sending to : <0> +16:37:28 ============================================================================ +16:37:28 ============================================================================ +16:37:28 Slot Id : <95> +16:37:28 Transaction Type : RESPONSE +16:37:28 Received From : +16:37:28 ============================================================================ +16:37:28 FNo. Len. Field Value +16:37:28 ============================================================================ +16:37:28 [ 1] [ 4] [0210] +16:37:28 [ 2] [ 16] [6213545000734214] +16:37:28 [ 3] [ 6] [011000] +16:37:28 [ 4] [ 12] [000010000000] +16:37:28 [ 7] [ 10] [0320164514] +16:37:28 [ 11] [ 6] [240866] +16:37:28 [ 12] [ 6] [164514] +16:37:28 [ 13] [ 4] [0320] +16:37:28 [ 15] [ 4] [0320] +16:37:28 [ 18] [ 4] [6011] +16:37:28 [ 32] [ 6] [220699] +16:37:28 [ 35] [ 32] [6213545000734214=491212013421145] +16:37:28 [ 37] [ 12] [507900410454] +16:37:28 [ 38] [ 6] [169999] +16:37:28 [ 39] [ 2] [00] +16:37:28 [ 41] [ 8] [08000300] +16:37:28 [ 49] [ 3] [418] +16:37:28 [ 54] [ 40] [1001418C0000085506591002418C000008550659] +16:37:28 ============================================================================ +16:37:28 Sending to : +16:37:28 ============================================================================ +16:37:28 + + +waiting on router queue for slot.... +16:37:29 ============================================================================ +16:37:29 Slot Id : <75> +16:37:29 Transaction Type : RESPONSE +16:37:29 Received From : +16:37:29 ============================================================================ +16:37:29 FNo. Len. Field Value +16:37:29 ============================================================================ +16:37:29 [ 1] [ 4] [0210] +16:37:29 [ 2] [ 16] [6213544001690632] +16:37:29 [ 3] [ 6] [010000] +16:37:29 [ 4] [ 12] [000040000000] +16:37:29 [ 7] [ 10] [0320163516] +16:37:29 [ 11] [ 6] [952014] +16:37:29 [ 12] [ 6] [163516] +16:37:29 [ 13] [ 4] [0320] +16:37:29 [ 15] [ 4] [0320] +16:37:29 [ 18] [ 4] [6011] +16:37:29 [ 19] [ 3] [418] +16:37:29 [ 32] [ 6] [668899] +16:37:29 [ 35] [ 32] [6213544001690632=491212019063073] +16:37:29 [ 37] [ 12] [507902025607] +16:37:29 [ 38] [ 6] [252669] +16:37:29 [ 39] [ 2] [00] +16:37:29 [ 41] [ 8] [03414002] +16:37:29 [ 49] [ 3] [418] +16:37:29 [ 54] [ 40] [0001418C0000141520300002418C000014152030] +16:37:29 ============================================================================ +16:37:29 Calculate Source COMM Id = 4 +16:37:29 ============================================================================ +16:37:29 + + +waiting on router queue for slot.... +16:37:29 ============================================================================ +16:37:29 Slot Id : <98> +16:37:29 Transaction Type : REQUEST +16:37:29 Received From : +16:37:29 ============================================================================ +16:37:29 FNo. Len. Field Value +16:37:29 ============================================================================ +16:37:29 [ 1] [ 4] [0800] +16:37:29 [ 7] [ 10] [0320093635] +16:37:29 [ 11] [ 6] [157270] +16:37:29 [ 70] [ 3] [301] +16:37:29 ============================================================================ +16:37:29 + + +waiting on router queue for slot.... +16:37:29 Sending to : +16:37:29 ============================================================================ +16:37:29 ============================================================================ +16:37:29 Slot Id : <98> +16:37:29 Transaction Type : RESPONSE +16:37:29 Received From : +16:37:29 ============================================================================ +16:37:29 FNo. Len. Field Value +16:37:29 ============================================================================ +16:37:29 [ 1] [ 4] [0810] +16:37:29 [ 7] [ 10] [0320093635] +16:37:29 [ 11] [ 6] [157270] +16:37:29 [ 39] [ 2] [00] +16:37:29 [ 70] [ 3] [301] +16:37:29 ============================================================================ +16:37:29 Calculate Source COMM Id = 2 +16:37:29 ============================================================================ +16:37:29 + + +waiting on router queue for slot.... +16:37:30 ============================================================================ +16:37:30 Slot Id : <95> +16:37:30 Transaction Type : RESPONSE +16:37:30 Received From : +16:37:30 ============================================================================ +16:37:30 FNo. Len. Field Value +16:37:30 ============================================================================ +16:37:30 [ 1] [ 4] [0210] +16:37:30 [ 2] [ 16] [6213545000734214] +16:37:30 [ 3] [ 6] [011000] +16:37:30 [ 4] [ 12] [000010000000] +16:37:30 [ 7] [ 10] [0320164514] +16:37:30 [ 11] [ 6] [240866] +16:37:30 [ 12] [ 6] [164514] +16:37:30 [ 13] [ 4] [0320] +16:37:30 [ 15] [ 4] [0320] +16:37:30 [ 18] [ 4] [6011] +16:37:30 [ 32] [ 6] [220699] +16:37:30 [ 35] [ 32] [6213545000734214=491212013421145] +16:37:30 [ 37] [ 12] [507900410454] +16:37:30 [ 38] [ 6] [169999] +16:37:30 [ 39] [ 2] [00] +16:37:30 [ 41] [ 8] [08000300] +16:37:30 [ 49] [ 3] [418] +16:37:30 [ 54] [ 40] [1001418C0000085506591002418C000008550659] +16:37:30 ============================================================================ +16:37:30 Calculate Source COMM Id = 1 +16:37:30 ============================================================================ +16:37:30 + + +waiting on router queue for slot.... +16:37:33 ============================================================================ +16:37:33 Slot Id : <53> +16:37:33 Transaction Type : REQUEST +16:37:33 Received From : +16:37:33 ============================================================================ +16:37:33 FNo. Len. Field Value +16:37:33 ============================================================================ +16:37:33 [ 1] [ 4] [0200] +16:37:33 [ 2] [ 16] [6213545000624910] +16:37:33 [ 3] [ 6] [010000] +16:37:33 [ 4] [ 12] [000050000000] +16:37:33 [ 7] [ 10] [0320093640] +16:37:33 [ 11] [ 6] [270537] +16:37:33 [ 12] [ 6] [163640] +16:37:33 [ 13] [ 4] [0320] +16:37:33 [ 14] [ 4] [4912] +16:37:33 [ 15] [ 4] [0320] +16:37:33 [ 18] [ 4] [6011] +16:37:33 [ 19] [ 3] [418] +16:37:33 [ 22] [ 3] [021] +16:37:33 [ 25] [ 2] [01] +16:37:33 [ 28] [ 9] [D00002000] +16:37:33 [ 32] [ 6] [180893] +16:37:33 [ 35] [ 32] [6213545000624910=491212012491050] +16:37:33 [ 37] [ 12] [507909270537] +16:37:33 [ 41] [ 8] [0109SKTB] +16:37:33 [ 42] [ 15] [999999 ] +16:37:33 [ 43] [ 40] [ATM SERVICE UNIT SIKHODTABONG LOCATION, ] +16:37:33 [ 49] [ 3] [418] +16:37:33 [ 52] [ 16] [87941B98F7FDB93C] +16:37:33 ============================================================================ +16:37:33 + + +waiting on router queue for slot.... +16:37:33 Sending to : +16:37:33 ============================================================================ +16:37:33 Sending to : +16:37:33 ============================================================================ +16:37:33 ============================================================================ +16:37:33 Slot Id : <53> +16:37:33 Transaction Type : REQUEST +16:37:33 Received From : +16:37:33 ============================================================================ +16:37:33 FNo. Len. Field Value +16:37:33 ============================================================================ +16:37:33 [ 1] [ 4] [0200] +16:37:33 [ 2] [ 16] [6213545000624910] +16:37:33 [ 3] [ 6] [010000] +16:37:33 [ 4] [ 12] [000050000000] +16:37:33 [ 7] [ 10] [0320093640] +16:37:33 [ 11] [ 6] [270537] +16:37:33 [ 12] [ 6] [163640] +16:37:33 [ 13] [ 4] [0320] +16:37:33 [ 14] [ 4] [4912] +16:37:33 [ 15] [ 4] [0320] +16:37:33 [ 18] [ 4] [6011] +16:37:33 [ 19] [ 3] [418] +16:37:33 [ 22] [ 3] [021] +16:37:33 [ 25] [ 2] [01] +16:37:33 [ 28] [ 9] [D00002000] +16:37:33 [ 32] [ 6] [180893] +16:37:33 [ 35] [ 32] [6213545000624910=491212012491050] +16:37:33 [ 37] [ 12] [507909270537] +16:37:33 [ 41] [ 8] [0109SKTB] +16:37:33 [ 42] [ 15] [999999 ] +16:37:33 [ 43] [ 40] [ATM SERVICE UNIT SIKHODTABONG LOCATION, ] +16:37:33 [ 49] [ 3] [418] +16:37:33 [ 52] [ 16] [87941B98F7FDB93C] +16:37:33 ============================================================================ +16:37:33 + + +waiting on router queue for slot.... +16:37:33 Sending to : +16:37:33 ============================================================================ +16:37:33 ============================================================================ +16:37:33 Slot Id : <53> +16:37:33 Transaction Type : REQUEST +16:37:33 Received From : +16:37:33 ============================================================================ +16:37:33 FNo. Len. Field Value +16:37:33 ============================================================================ +16:37:33 [ 1] [ 4] [0200] +16:37:33 [ 2] [ 16] [6213545000624910] +16:37:33 [ 3] [ 6] [010000] +16:37:33 [ 4] [ 12] [000050000000] +16:37:33 [ 7] [ 10] [0320093640] +16:37:33 [ 11] [ 6] [270537] +16:37:33 [ 12] [ 6] [163640] +16:37:33 [ 13] [ 4] [0320] +16:37:33 [ 14] [ 4] [4912] +16:37:33 [ 15] [ 4] [0320] +16:37:33 [ 18] [ 4] [6011] +16:37:33 [ 19] [ 3] [418] +16:37:33 [ 22] [ 3] [021] +16:37:33 [ 25] [ 2] [01] +16:37:33 [ 28] [ 9] [D00002000] +16:37:33 [ 32] [ 6] [180893] +16:37:33 [ 35] [ 32] [6213545000624910=491212012491050] +16:37:33 [ 37] [ 12] [507909270537] +16:37:33 [ 41] [ 8] [0109SKTB] +16:37:33 [ 42] [ 15] [999999 ] +16:37:33 [ 43] [ 40] [ATM SERVICE UNIT SIKHODTABONG LOCATION, ] +16:37:33 [ 49] [ 3] [418] +16:37:33 [ 52] [ 16] [6852C36222732E7A] +16:37:33 ============================================================================ +16:37:33 + + +waiting on router queue for slot.... +16:37:33 Sending to : <0> +16:37:33 ============================================================================ +16:37:34 ============================================================================ +16:37:34 Slot Id : <53> +16:37:34 Transaction Type : RESPONSE +16:37:34 Received From : +16:37:34 ============================================================================ +16:37:34 FNo. Len. Field Value +16:37:34 ============================================================================ +16:37:34 [ 1] [ 4] [0210] +16:37:34 [ 2] [ 16] [6213545000624910] +16:37:34 [ 3] [ 6] [010000] +16:37:34 [ 4] [ 12] [000050000000] +16:37:34 [ 7] [ 10] [0320093640] +16:37:34 [ 11] [ 6] [270537] +16:37:34 [ 12] [ 6] [163640] +16:37:34 [ 13] [ 4] [0320] +16:37:34 [ 15] [ 4] [0320] +16:37:34 [ 18] [ 4] [6011] +16:37:34 [ 19] [ 3] [418] +16:37:34 [ 32] [ 6] [180893] +16:37:34 [ 35] [ 32] [6213545000624910=491212012491050] +16:37:34 [ 37] [ 12] [507909270537] +16:37:34 [ 38] [ 6] [997468] +16:37:34 [ 39] [ 2] [00] +16:37:34 [ 41] [ 8] [0109SKTB] +16:37:34 [ 49] [ 3] [418] +16:37:34 [ 54] [ 40] [0001418C0000290283670002418C000029028367] +16:37:34 ============================================================================ +16:37:34 Sending to : +16:37:34 ============================================================================ +16:37:34 + + +waiting on router queue for slot.... +16:37:34 ============================================================================ +16:37:34 Slot Id : <94> +16:37:34 Transaction Type : RESPONSE +16:37:34 Received From : +16:37:34 ============================================================================ +16:37:34 FNo. Len. Field Value +16:37:34 ============================================================================ +16:37:34 [ 1] [ 4] [0210] +16:37:34 [ 2] [ 16] [1999990000002975] +16:37:34 [ 3] [ 6] [010000] +16:37:34 [ 4] [ 12] [000080000000] +16:37:34 [ 7] [ 10] [0320163517] +16:37:34 [ 11] [ 6] [952015] +16:37:34 [ 12] [ 6] [163517] +16:37:34 [ 13] [ 4] [0320] +16:37:34 [ 15] [ 4] [0320] +16:37:34 [ 18] [ 4] [6011] +16:37:34 [ 19] [ 3] [418] +16:37:34 [ 32] [ 6] [668899] +16:37:34 [ 37] [ 12] [507902623501] +16:37:34 [ 38] [ 6] [000000] +16:37:34 [ 39] [ 2] [51] +16:37:34 [ 41] [ 8] [03003006] +16:37:34 [ 49] [ 3] [418] +16:37:34 ============================================================================ +16:37:34 Sending to : +16:37:34 ============================================================================ +16:37:34 + + +waiting on router queue for slot.... +16:37:35 ============================================================================ +16:37:35 Slot Id : <53> +16:37:35 Transaction Type : RESPONSE +16:37:35 Received From : +16:37:35 ============================================================================ +16:37:35 FNo. Len. Field Value +16:37:35 ============================================================================ +16:37:35 [ 1] [ 4] [0210] +16:37:35 [ 2] [ 16] [6213545000624910] +16:37:35 [ 3] [ 6] [010000] +16:37:35 [ 4] [ 12] [000050000000] +16:37:35 [ 7] [ 10] [0320093640] +16:37:35 [ 11] [ 6] [270537] +16:37:35 [ 12] [ 6] [163640] +16:37:35 [ 13] [ 4] [0320] +16:37:35 [ 15] [ 4] [0320] +16:37:35 [ 18] [ 4] [6011] +16:37:35 [ 19] [ 3] [418] +16:37:35 [ 32] [ 6] [180893] +16:37:35 [ 35] [ 32] [6213545000624910=491212012491050] +16:37:35 [ 37] [ 12] [507909270537] +16:37:35 [ 38] [ 6] [997468] +16:37:35 [ 39] [ 2] [00] +16:37:35 [ 41] [ 8] [0109SKTB] +16:37:35 [ 49] [ 3] [418] +16:37:35 [ 54] [ 40] [0001418C0000290283670002418C000029028367] +16:37:35 ============================================================================ +16:37:35 Calculate Source COMM Id = 2 +16:37:35 ============================================================================ +16:37:35 + + +waiting on router queue for slot.... +16:37:36 ============================================================================ +16:37:36 Slot Id : <94> +16:37:36 Transaction Type : RESPONSE +16:37:36 Received From : +16:37:36 ============================================================================ +16:37:36 FNo. Len. Field Value +16:37:36 ============================================================================ +16:37:36 [ 1] [ 4] [0210] +16:37:36 [ 2] [ 16] [1999990000002975] +16:37:36 [ 3] [ 6] [010000] +16:37:36 [ 4] [ 12] [000080000000] +16:37:36 [ 7] [ 10] [0320163517] +16:37:36 [ 11] [ 6] [952015] +16:37:36 [ 12] [ 6] [163517] +16:37:36 [ 13] [ 4] [0320] +16:37:36 [ 15] [ 4] [0320] +16:37:36 [ 18] [ 4] [6011] +16:37:36 [ 19] [ 3] [418] +16:37:36 [ 32] [ 6] [668899] +16:37:36 [ 37] [ 12] [507902623501] +16:37:36 [ 38] [ 6] [000000] +16:37:36 [ 39] [ 2] [51] +16:37:36 [ 41] [ 8] [03003006] +16:37:36 [ 49] [ 3] [418] +16:37:36 ============================================================================ +16:37:36 Calculate Source COMM Id = 4 +16:37:36 ============================================================================ +16:37:36 + + +waiting on router queue for slot.... +16:37:40 ============================================================================ +16:37:40 Slot Id : <134> +16:37:40 Transaction Type : REQUEST +16:37:40 Received From : +16:37:40 ============================================================================ +16:37:40 FNo. Len. Field Value +16:37:40 ============================================================================ +16:37:40 [ 1] [ 4] [0800] +16:37:40 [ 7] [ 10] [0320234928] +16:37:40 [ 11] [ 6] [164928] +16:37:40 [ 37] [ 12] [57916164928] +16:37:40 [ 70] [ 3] [301] +16:37:40 ============================================================================ +16:37:40 + + +waiting on router queue for slot.... +16:37:40 Sending to : +16:37:40 ============================================================================ +16:37:40 ============================================================================ +16:37:40 Slot Id : <134> +16:37:40 Transaction Type : RESPONSE +16:37:40 Received From : +16:37:40 ============================================================================ +16:37:40 FNo. Len. Field Value +16:37:40 ============================================================================ +16:37:40 [ 1] [ 4] [0810] +16:37:40 [ 7] [ 10] [0320234928] +16:37:40 [ 11] [ 6] [164928] +16:37:40 [ 37] [ 12] [579161649280] +16:37:40 [ 39] [ 2] [00] +16:37:40 [ 70] [ 3] [810] +16:37:40 ============================================================================ +16:37:40 Calculate Source COMM Id = 6 +16:37:40 ============================================================================ +16:37:40 + + +waiting on router queue for slot.... +16:37:45 ============================================================================ +16:37:45 Slot Id : <125> +16:37:45 Transaction Type : REQUEST +16:37:45 Received From : +16:37:45 ============================================================================ +16:37:45 FNo. Len. Field Value +16:37:45 ============================================================================ +16:37:45 [ 1] [ 4] [0800] +16:37:45 [ 7] [ 10] [0320163731] +16:37:45 [ 11] [ 6] [024842] +16:37:45 [ 37] [ 12] [507916024842] +16:37:45 [ 70] [ 3] [ ] +16:37:45 ============================================================================ +16:37:45 + + +waiting on router queue for slot.... +16:37:45 Sending to : +16:37:45 ============================================================================ +16:37:45 ============================================================================ +16:37:45 Slot Id : <125> +16:37:45 Transaction Type : RESPONSE +16:37:45 Received From : +16:37:45 ============================================================================ +16:37:45 FNo. Len. Field Value +16:37:45 ============================================================================ +16:37:45 [ 1] [ 4] [0810] +16:37:45 [ 7] [ 10] [0320163731] +16:37:45 [ 11] [ 6] [024842] +16:37:45 [ 37] [ 12] [507916024842] +16:37:45 [ 39] [ 2] [91] +16:37:45 [ 70] [ 3] [ ] +16:37:45 ============================================================================ +16:37:45 Calculate Source COMM Id = 3 +16:37:45 ============================================================================ +16:37:45 + + +waiting on router queue for slot.... +16:37:47 ============================================================================ +16:37:47 Slot Id : <103> +16:37:47 Transaction Type : REQUEST +16:37:47 Received From : +16:37:47 ============================================================================ +16:37:47 FNo. Len. Field Value +16:37:47 ============================================================================ +16:37:47 [ 1] [ 4] [0200] +16:37:47 [ 2] [ 16] [1808931400007850] +16:37:47 [ 3] [ 6] [300000] +16:37:47 [ 4] [ 12] [000000000000] +16:37:47 [ 7] [ 10] [0320163742] +16:37:47 [ 11] [ 6] [801964] +16:37:47 [ 12] [ 6] [163742] +16:37:47 [ 13] [ 4] [0320] +16:37:47 [ 15] [ 4] [0320] +16:37:47 [ 18] [ 4] [6011] +16:37:47 [ 22] [ 3] [900] +16:37:47 [ 25] [ 2] [02] +16:37:47 [ 28] [ 9] [D00000000] +16:37:47 [ 32] [ 6] [621354] +16:37:47 [ 35] [ 27] [1808931400007850=1803500731] +16:37:47 [ 37] [ 12] [507904719795] +16:37:47 [ 41] [ 8] [18001000] +16:37:47 [ 42] [ 15] [NATIVE ] +16:37:47 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:37:47 [ 49] [ 3] [418] +16:37:47 [ 52] [ 16] [1B46B0978C06F21B] +16:37:47 ============================================================================ +16:37:47 + + +waiting on router queue for slot.... +16:37:47 Sending to : +16:37:47 ============================================================================ +16:37:47 Sending to : +16:37:47 ============================================================================ +16:37:47 ============================================================================ +16:37:47 Slot Id : <103> +16:37:47 Transaction Type : REQUEST +16:37:47 Received From : +16:37:47 ============================================================================ +16:37:47 FNo. Len. Field Value +16:37:47 ============================================================================ +16:37:47 [ 1] [ 4] [0200] +16:37:47 [ 2] [ 16] [1808931400007850] +16:37:47 [ 3] [ 6] [300000] +16:37:47 [ 4] [ 12] [000000000000] +16:37:47 [ 7] [ 10] [0320163742] +16:37:47 [ 11] [ 6] [801964] +16:37:47 [ 12] [ 6] [163742] +16:37:47 [ 13] [ 4] [0320] +16:37:47 [ 15] [ 4] [0320] +16:37:47 [ 18] [ 4] [6011] +16:37:47 [ 22] [ 3] [900] +16:37:47 [ 25] [ 2] [02] +16:37:47 [ 28] [ 9] [D00000000] +16:37:47 [ 32] [ 6] [621354] +16:37:47 [ 35] [ 27] [1808931400007850=1803500731] +16:37:47 [ 37] [ 12] [507904719795] +16:37:47 [ 41] [ 8] [18001000] +16:37:47 [ 42] [ 15] [NATIVE ] +16:37:47 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:37:47 [ 49] [ 3] [418] +16:37:47 [ 52] [ 16] [1B46B0978C06F21B] +16:37:47 ============================================================================ +16:37:47 + + +waiting on router queue for slot.... +16:37:47 Sending to : +16:37:47 ============================================================================ +16:37:47 ============================================================================ +16:37:47 Slot Id : <103> +16:37:47 Transaction Type : REQUEST +16:37:47 Received From : +16:37:47 ============================================================================ +16:37:47 FNo. Len. Field Value +16:37:47 ============================================================================ +16:37:47 [ 1] [ 4] [0200] +16:37:47 [ 2] [ 16] [1808931400007850] +16:37:47 [ 3] [ 6] [300000] +16:37:47 [ 4] [ 12] [000000000000] +16:37:47 [ 7] [ 10] [0320163742] +16:37:47 [ 11] [ 6] [801964] +16:37:47 [ 12] [ 6] [163742] +16:37:47 [ 13] [ 4] [0320] +16:37:47 [ 15] [ 4] [0320] +16:37:47 [ 18] [ 4] [6011] +16:37:47 [ 22] [ 3] [900] +16:37:47 [ 25] [ 2] [02] +16:37:47 [ 28] [ 9] [D00000000] +16:37:47 [ 32] [ 6] [621354] +16:37:47 [ 35] [ 27] [1808931400007850=1803500731] +16:37:47 [ 37] [ 12] [507904719795] +16:37:47 [ 41] [ 8] [18001000] +16:37:47 [ 42] [ 15] [NATIVE ] +16:37:47 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:37:47 [ 49] [ 3] [418] +16:37:47 [ 52] [ 16] [FAFCBCCF0E789021] +16:37:47 ============================================================================ +16:37:47 + + +waiting on router queue for slot.... +16:37:47 Sending to : <2> +16:37:47 ============================================================================ +16:37:49 ============================================================================ +16:37:49 Slot Id : <96> +16:37:49 Transaction Type : REQUEST +16:37:49 Received From : +16:37:49 ============================================================================ +16:37:49 FNo. Len. Field Value +16:37:49 ============================================================================ +16:37:49 [ 1] [ 4] [0800] +16:37:49 [ 2] [ 5] [02531] +16:37:49 [ 3] [ 6] [579168] +16:37:49 [ 7] [ 10] [0320093749] +16:37:49 [ 11] [ 6] [807377] +16:37:49 [ 15] [ 10] [0320093749] +16:37:49 [ 37] [ 11] [57916807377] +16:37:49 [ 70] [ 3] [001] +16:37:49 ============================================================================ +16:37:49 + + +waiting on router queue for slot.... +16:37:49 ============================================================================ +16:37:49 Slot Id : <96> +16:37:49 Transaction Type : RESPONSE +16:37:49 Received From : +16:37:49 ============================================================================ +16:37:49 FNo. Len. Field Value +16:37:49 ============================================================================ +16:37:49 [ 1] [ 4] [0810] +16:37:49 [ 7] [ 10] [0320093749] +16:37:49 [ 11] [ 6] [807377] +16:37:49 [ 15] [ 4] [0320] +16:37:49 [ 37] [ 12] [57916807377] +16:37:49 [ 39] [ 2] [00] +16:37:49 [ 70] [ 3] [001] +16:37:49 ============================================================================ +16:37:49 Sending to : +16:37:49 ============================================================================ +16:37:49 + + +waiting on router queue for slot.... +16:37:49 ============================================================================ +16:37:49 Slot Id : <103> +16:37:49 Transaction Type : RESPONSE +16:37:49 Received From : +16:37:49 ============================================================================ +16:37:49 FNo. Len. Field Value +16:37:49 ============================================================================ +16:37:49 [ 1] [ 4] [0210] +16:37:49 [ 2] [ 16] [1808931400007850] +16:37:49 [ 3] [ 6] [300000] +16:37:49 [ 7] [ 10] [0320163742] +16:37:49 [ 11] [ 6] [801964] +16:37:49 [ 12] [ 6] [163742] +16:37:49 [ 13] [ 4] [0320] +16:37:49 [ 14] [ 4] [1803] +16:37:49 [ 19] [ 3] [418] +16:37:49 [ 32] [ 6] [621354] +16:37:49 [ 37] [ 12] [507904719795] +16:37:49 [ 38] [ 6] [801964] +16:37:49 [ 39] [ 2] [00] +16:37:49 [ 41] [ 8] [18001000] +16:37:49 [ 49] [ 3] [418] +16:37:49 [ 52] [ 16] [FAFCBCCF0E789021] +16:37:49 [ 54] [ 20] [0002418C000003221400] +16:37:49 ============================================================================ +16:37:49 Sending to : +16:37:49 ============================================================================ +16:37:49 + + +waiting on router queue for slot.... +16:37:50 ============================================================================ +16:37:50 Slot Id : <103> +16:37:50 Transaction Type : RESPONSE +16:37:50 Received From : +16:37:50 ============================================================================ +16:37:50 FNo. Len. Field Value +16:37:50 ============================================================================ +16:37:50 [ 1] [ 4] [0210] +16:37:50 [ 2] [ 16] [1808931400007850] +16:37:50 [ 3] [ 6] [300000] +16:37:50 [ 7] [ 10] [0320163742] +16:37:50 [ 11] [ 6] [801964] +16:37:50 [ 12] [ 6] [163742] +16:37:50 [ 13] [ 4] [0320] +16:37:50 [ 14] [ 4] [1803] +16:37:50 [ 19] [ 3] [418] +16:37:50 [ 32] [ 6] [621354] +16:37:50 [ 37] [ 12] [507904719795] +16:37:50 [ 38] [ 6] [801964] +16:37:50 [ 39] [ 2] [00] +16:37:50 [ 41] [ 8] [18001000] +16:37:50 [ 49] [ 3] [418] +16:37:50 [ 52] [ 16] [FAFCBCCF0E789021] +16:37:50 [ 54] [ 20] [0002418C000003221400] +16:37:50 ============================================================================ +16:37:50 Calculate Source COMM Id = 0 +16:37:50 ============================================================================ +16:37:50 + + +waiting on router queue for slot.... +16:37:54 ============================================================================ +16:37:54 Slot Id : <70> +16:37:54 Transaction Type : REQUEST +16:37:54 Received From : +16:37:54 ============================================================================ +16:37:54 FNo. Len. Field Value +16:37:54 ============================================================================ +16:37:54 [ 1] [ 4] [0200] +16:37:54 [ 2] [ 16] [1999990000002975] +16:37:54 [ 3] [ 6] [010000] +16:37:54 [ 4] [ 12] [000070000000] +16:37:54 [ 7] [ 10] [0320163544] +16:37:54 [ 11] [ 6] [952023] +16:37:54 [ 12] [ 6] [163544] +16:37:54 [ 13] [ 4] [0320] +16:37:54 [ 15] [ 4] [0320] +16:37:54 [ 18] [ 4] [6011] +16:37:54 [ 19] [ 3] [418] +16:37:54 [ 22] [ 3] [021] +16:37:54 [ 25] [ 2] [01] +16:37:54 [ 28] [ 9] [D00002000] +16:37:54 [ 32] [ 6] [668899] +16:37:54 [ 35] [ 32] [1999990000002975=000010100000482] +16:37:54 [ 37] [ 12] [507902623502] +16:37:54 [ 41] [ 8] [03003006] +16:37:54 [ 42] [ 15] [APT ] +16:37:54 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:37:54 [ 49] [ 3] [418] +16:37:54 [ 52] [ 16] [DB87D16B103AF7E7] +16:37:54 ============================================================================ +16:37:54 + + +waiting on router queue for slot.... +16:37:54 Sending to : +16:37:54 ============================================================================ +16:37:54 Sending to : +16:37:54 ============================================================================ +16:37:54 ============================================================================ +16:37:54 Slot Id : <70> +16:37:54 Transaction Type : REQUEST +16:37:54 Received From : +16:37:54 ============================================================================ +16:37:54 FNo. Len. Field Value +16:37:54 ============================================================================ +16:37:54 [ 1] [ 4] [0200] +16:37:54 [ 2] [ 16] [1999990000002975] +16:37:54 [ 3] [ 6] [010000] +16:37:54 [ 4] [ 12] [000070000000] +16:37:54 [ 7] [ 10] [0320163544] +16:37:54 [ 11] [ 6] [952023] +16:37:54 [ 12] [ 6] [163544] +16:37:54 [ 13] [ 4] [0320] +16:37:54 [ 15] [ 4] [0320] +16:37:54 [ 18] [ 4] [6011] +16:37:54 [ 19] [ 3] [418] +16:37:54 [ 22] [ 3] [021] +16:37:54 [ 25] [ 2] [01] +16:37:54 [ 28] [ 9] [D00002000] +16:37:54 [ 32] [ 6] [668899] +16:37:54 [ 35] [ 32] [1999990000002975=000010100000482] +16:37:54 [ 37] [ 12] [507902623502] +16:37:54 [ 41] [ 8] [03003006] +16:37:54 [ 42] [ 15] [APT ] +16:37:54 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:37:54 [ 49] [ 3] [418] +16:37:54 [ 52] [ 16] [DB87D16B103AF7E7] +16:37:54 ============================================================================ +16:37:54 + + +waiting on router queue for slot.... +16:37:54 Sending to : +16:37:54 ============================================================================ +16:37:54 ============================================================================ +16:37:54 Slot Id : <70> +16:37:54 Transaction Type : REQUEST +16:37:54 Received From : +16:37:54 ============================================================================ +16:37:54 FNo. Len. Field Value +16:37:54 ============================================================================ +16:37:54 [ 1] [ 4] [0200] +16:37:54 [ 2] [ 16] [1999990000002975] +16:37:54 [ 3] [ 6] [010000] +16:37:54 [ 4] [ 12] [000070000000] +16:37:54 [ 7] [ 10] [0320163544] +16:37:54 [ 11] [ 6] [952023] +16:37:54 [ 12] [ 6] [163544] +16:37:54 [ 13] [ 4] [0320] +16:37:54 [ 15] [ 4] [0320] +16:37:54 [ 18] [ 4] [6011] +16:37:54 [ 19] [ 3] [418] +16:37:54 [ 22] [ 3] [021] +16:37:54 [ 25] [ 2] [01] +16:37:54 [ 28] [ 9] [D00002000] +16:37:54 [ 32] [ 6] [668899] +16:37:54 [ 35] [ 32] [1999990000002975=000010100000482] +16:37:54 [ 37] [ 12] [507902623502] +16:37:54 [ 41] [ 8] [03003006] +16:37:54 [ 42] [ 15] [APT ] +16:37:54 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:37:54 [ 49] [ 3] [418] +16:37:54 [ 52] [ 16] [69468AA2F3682BBE] +16:37:54 ============================================================================ +16:37:54 + + +waiting on router queue for slot.... +16:37:54 Sending to : <5> +16:37:54 ============================================================================ +16:37:57 ============================================================================ +16:37:57 Slot Id : <70> +16:37:57 Transaction Type : RESPONSE +16:37:57 Received From : +16:37:57 ============================================================================ +16:37:57 FNo. Len. Field Value +16:37:57 ============================================================================ +16:37:57 [ 1] [ 4] [0210] +16:37:57 [ 2] [ 16] [1999990000002975] +16:37:57 [ 3] [ 6] [010000] +16:37:57 [ 4] [ 12] [000070000000] +16:37:57 [ 7] [ 10] [0320163544] +16:37:57 [ 11] [ 6] [952023] +16:37:57 [ 12] [ 6] [163544] +16:37:57 [ 13] [ 4] [0320] +16:37:57 [ 15] [ 4] [0320] +16:37:57 [ 18] [ 4] [6011] +16:37:57 [ 19] [ 3] [418] +16:37:57 [ 32] [ 6] [668899] +16:37:57 [ 37] [ 12] [507902623502] +16:37:57 [ 38] [ 6] [000000] +16:37:57 [ 39] [ 2] [51] +16:37:57 [ 41] [ 8] [03003006] +16:37:57 [ 49] [ 3] [418] +16:37:57 ============================================================================ +16:37:57 Sending to : +16:37:57 ============================================================================ +16:37:57 + + +waiting on router queue for slot.... +16:37:58 ============================================================================ +16:37:58 Slot Id : <70> +16:37:58 Transaction Type : RESPONSE +16:37:58 Received From : +16:37:58 ============================================================================ +16:37:58 FNo. Len. Field Value +16:37:58 ============================================================================ +16:37:58 [ 1] [ 4] [0210] +16:37:58 [ 2] [ 16] [1999990000002975] +16:37:58 [ 3] [ 6] [010000] +16:37:58 [ 4] [ 12] [000070000000] +16:37:58 [ 7] [ 10] [0320163544] +16:37:58 [ 11] [ 6] [952023] +16:37:58 [ 12] [ 6] [163544] +16:37:58 [ 13] [ 4] [0320] +16:37:58 [ 15] [ 4] [0320] +16:37:58 [ 18] [ 4] [6011] +16:37:58 [ 19] [ 3] [418] +16:37:58 [ 32] [ 6] [668899] +16:37:58 [ 37] [ 12] [507902623502] +16:37:58 [ 38] [ 6] [000000] +16:37:58 [ 39] [ 2] [51] +16:37:58 [ 41] [ 8] [03003006] +16:37:58 [ 49] [ 3] [418] +16:37:58 ============================================================================ +16:37:58 Calculate Source COMM Id = 4 +16:37:58 ============================================================================ +16:37:58 + + +waiting on router queue for slot.... +16:38:00 ============================================================================ +16:38:00 Slot Id : <101> +16:38:00 Transaction Type : REQUEST +16:38:00 Received From : +16:38:00 ============================================================================ +16:38:00 FNo. Len. Field Value +16:38:00 ============================================================================ +16:38:00 [ 1] [ 4] [0800] +16:38:00 [ 7] [ 10] [0320093707] +16:38:00 [ 11] [ 6] [157271] +16:38:00 [ 70] [ 3] [301] +16:38:00 ============================================================================ +16:38:00 + + +waiting on router queue for slot.... +16:38:00 Sending to : +16:38:00 ============================================================================ +16:38:00 ============================================================================ +16:38:00 Slot Id : <101> +16:38:00 Transaction Type : RESPONSE +16:38:00 Received From : +16:38:00 ============================================================================ +16:38:00 FNo. Len. Field Value +16:38:00 ============================================================================ +16:38:00 [ 1] [ 4] [0810] +16:38:00 [ 7] [ 10] [0320093707] +16:38:00 [ 11] [ 6] [157271] +16:38:00 [ 39] [ 2] [00] +16:38:00 [ 70] [ 3] [301] +16:38:00 ============================================================================ +16:38:00 Calculate Source COMM Id = 2 +16:38:00 ============================================================================ +16:38:00 + + +waiting on router queue for slot.... +16:38:06 ============================================================================ +16:38:06 Slot Id : <77> +16:38:06 Transaction Type : REQUEST +16:38:06 Received From : +16:38:06 ============================================================================ +16:38:06 FNo. Len. Field Value +16:38:06 ============================================================================ +16:38:06 [ 1] [ 4] [0200] +16:38:06 [ 2] [ 16] [6213544002251244] +16:38:06 [ 3] [ 6] [011000] +16:38:06 [ 4] [ 12] [000045000000] +16:38:06 [ 7] [ 10] [0320163827] +16:38:06 [ 11] [ 6] [208829] +16:38:06 [ 12] [ 6] [163333] +16:38:06 [ 13] [ 4] [0320] +16:38:06 [ 14] [ 4] [4912] +16:38:06 [ 15] [ 4] [0320] +16:38:06 [ 18] [ 4] [6011] +16:38:06 [ 19] [ 3] [418] +16:38:06 [ 22] [ 3] [021] +16:38:06 [ 25] [ 2] [01] +16:38:06 [ 28] [ 9] [D00002000] +16:38:06 [ 32] [ 6] [198901] +16:38:06 [ 35] [ 32] [6213544002251244=491212015124378] +16:38:06 [ 37] [ 12] [507916208829] +16:38:06 [ 41] [ 8] [19529001] +16:38:06 [ 42] [ 15] [000000041952901] +16:38:06 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:38:06 [ 49] [ 3] [418] +16:38:06 [ 52] [ 16] [447714048D64EAE3] +16:38:06 ============================================================================ +16:38:06 + + +waiting on router queue for slot.... +16:38:06 Sending to : +16:38:06 ============================================================================ +16:38:06 Sending to : +16:38:06 ============================================================================ +16:38:07 ============================================================================ +16:38:07 Slot Id : <77> +16:38:07 Transaction Type : REQUEST +16:38:07 Received From : +16:38:07 ============================================================================ +16:38:07 FNo. Len. Field Value +16:38:07 ============================================================================ +16:38:07 [ 1] [ 4] [0200] +16:38:07 [ 2] [ 16] [6213544002251244] +16:38:07 [ 3] [ 6] [011000] +16:38:07 [ 4] [ 12] [000045000000] +16:38:07 [ 7] [ 10] [0320163827] +16:38:07 [ 11] [ 6] [208829] +16:38:07 [ 12] [ 6] [163333] +16:38:07 [ 13] [ 4] [0320] +16:38:07 [ 14] [ 4] [4912] +16:38:07 [ 15] [ 4] [0320] +16:38:07 [ 18] [ 4] [6011] +16:38:07 [ 19] [ 3] [418] +16:38:07 [ 22] [ 3] [021] +16:38:07 [ 25] [ 2] [01] +16:38:07 [ 28] [ 9] [D00002000] +16:38:07 [ 32] [ 6] [198901] +16:38:07 [ 35] [ 32] [6213544002251244=491212015124378] +16:38:07 [ 37] [ 12] [507916208829] +16:38:07 [ 41] [ 8] [19529001] +16:38:07 [ 42] [ 15] [000000041952901] +16:38:07 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:38:07 [ 49] [ 3] [418] +16:38:07 [ 52] [ 16] [447714048D64EAE3] +16:38:07 ============================================================================ +16:38:07 + + +waiting on router queue for slot.... +16:38:07 Sending to : +16:38:07 ============================================================================ +16:38:07 ============================================================================ +16:38:07 Slot Id : <77> +16:38:07 Transaction Type : REQUEST +16:38:07 Received From : +16:38:07 ============================================================================ +16:38:07 FNo. Len. Field Value +16:38:07 ============================================================================ +16:38:07 [ 1] [ 4] [0200] +16:38:07 [ 2] [ 16] [6213544002251244] +16:38:07 [ 3] [ 6] [011000] +16:38:07 [ 4] [ 12] [000045000000] +16:38:07 [ 7] [ 10] [0320163827] +16:38:07 [ 11] [ 6] [208829] +16:38:07 [ 12] [ 6] [163333] +16:38:07 [ 13] [ 4] [0320] +16:38:07 [ 14] [ 4] [4912] +16:38:07 [ 15] [ 4] [0320] +16:38:07 [ 18] [ 4] [6011] +16:38:07 [ 19] [ 3] [418] +16:38:07 [ 22] [ 3] [021] +16:38:07 [ 25] [ 2] [01] +16:38:07 [ 28] [ 9] [D00002000] +16:38:07 [ 32] [ 6] [198901] +16:38:07 [ 35] [ 32] [6213544002251244=491212015124378] +16:38:07 [ 37] [ 12] [507916208829] +16:38:07 [ 41] [ 8] [19529001] +16:38:07 [ 42] [ 15] [000000041952901] +16:38:07 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:38:07 [ 49] [ 3] [418] +16:38:07 [ 52] [ 16] [AE61A6A32401EE78] +16:38:07 ============================================================================ +16:38:07 + + +waiting on router queue for slot.... +16:38:07 Sending to : <0> +16:38:07 ============================================================================ +16:38:07 ============================================================================ +16:38:07 Slot Id : <77> +16:38:07 Transaction Type : RESPONSE +16:38:07 Received From : +16:38:07 ============================================================================ +16:38:07 FNo. Len. Field Value +16:38:07 ============================================================================ +16:38:07 [ 1] [ 4] [0210] +16:38:07 [ 2] [ 16] [6213544002251244] +16:38:07 [ 3] [ 6] [011000] +16:38:07 [ 4] [ 12] [000045000000] +16:38:07 [ 7] [ 10] [0320163827] +16:38:07 [ 11] [ 6] [208829] +16:38:07 [ 12] [ 6] [163333] +16:38:07 [ 13] [ 4] [0320] +16:38:07 [ 15] [ 4] [0320] +16:38:07 [ 18] [ 4] [6011] +16:38:07 [ 19] [ 3] [418] +16:38:07 [ 32] [ 6] [198901] +16:38:07 [ 35] [ 32] [6213544002251244=491212015124378] +16:38:07 [ 37] [ 12] [507916208829] +16:38:07 [ 38] [ 6] [398344] +16:38:07 [ 39] [ 2] [00] +16:38:07 [ 41] [ 8] [19529001] +16:38:07 [ 49] [ 3] [418] +16:38:07 [ 54] [ 40] [1001418C0000117659801002418C000011765980] +16:38:07 ============================================================================ +16:38:07 Sending to : +16:38:07 ============================================================================ +16:38:07 + + +waiting on router queue for slot.... +16:38:08 ============================================================================ +16:38:08 Slot Id : <102> +16:38:08 Transaction Type : REQUEST +16:38:08 Received From : +16:38:08 ============================================================================ +16:38:08 FNo. Len. Field Value +16:38:08 ============================================================================ +16:38:08 [ 1] [ 4] [0200] +16:38:08 [ 2] [ 16] [6688990040139667] +16:38:08 [ 3] [ 6] [010000] +16:38:08 [ 4] [ 12] [000050000000] +16:38:08 [ 7] [ 10] [0320093713] +16:38:08 [ 11] [ 6] [270545] +16:38:08 [ 12] [ 6] [163713] +16:38:08 [ 13] [ 4] [0320] +16:38:08 [ 14] [ 4] [9804] +16:38:08 [ 15] [ 4] [0320] +16:38:08 [ 18] [ 4] [6011] +16:38:08 [ 19] [ 3] [418] +16:38:08 [ 22] [ 3] [021] +16:38:08 [ 25] [ 2] [01] +16:38:08 [ 28] [ 9] [D00002000] +16:38:08 [ 32] [ 6] [180893] +16:38:08 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:38:08 [ 37] [ 12] [507909270545] +16:38:08 [ 41] [ 8] [0321LNTV] +16:38:08 [ 42] [ 15] [999999 ] +16:38:08 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +16:38:08 [ 49] [ 3] [418] +16:38:08 [ 52] [ 16] [9D960BB62B253AC5] +16:38:08 ============================================================================ +16:38:08 + + +waiting on router queue for slot.... +16:38:08 Sending to : +16:38:08 ============================================================================ +16:38:08 Sending to : +16:38:08 ============================================================================ +16:38:08 ============================================================================ +16:38:08 Slot Id : <102> +16:38:08 Transaction Type : REQUEST +16:38:08 Received From : +16:38:08 ============================================================================ +16:38:08 FNo. Len. Field Value +16:38:08 ============================================================================ +16:38:08 [ 1] [ 4] [0200] +16:38:08 [ 2] [ 16] [6688990040139667] +16:38:08 [ 3] [ 6] [010000] +16:38:08 [ 4] [ 12] [000050000000] +16:38:08 [ 7] [ 10] [0320093713] +16:38:08 [ 11] [ 6] [270545] +16:38:08 [ 12] [ 6] [163713] +16:38:08 [ 13] [ 4] [0320] +16:38:08 [ 14] [ 4] [9804] +16:38:08 [ 15] [ 4] [0320] +16:38:08 [ 18] [ 4] [6011] +16:38:08 [ 19] [ 3] [418] +16:38:08 [ 22] [ 3] [021] +16:38:08 [ 25] [ 2] [01] +16:38:08 [ 28] [ 9] [D00002000] +16:38:08 [ 32] [ 6] [180893] +16:38:08 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:38:08 [ 37] [ 12] [507909270545] +16:38:08 [ 41] [ 8] [0321LNTV] +16:38:08 [ 42] [ 15] [999999 ] +16:38:08 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +16:38:08 [ 49] [ 3] [418] +16:38:08 [ 52] [ 16] [9D960BB62B253AC5] +16:38:08 ============================================================================ +16:38:08 + + +waiting on router queue for slot.... +16:38:08 Sending to : +16:38:08 ============================================================================ +16:38:08 ============================================================================ +16:38:08 Slot Id : <102> +16:38:08 Transaction Type : REQUEST +16:38:08 Received From : +16:38:08 ============================================================================ +16:38:08 FNo. Len. Field Value +16:38:08 ============================================================================ +16:38:08 [ 1] [ 4] [0200] +16:38:08 [ 2] [ 16] [6688990040139667] +16:38:08 [ 3] [ 6] [010000] +16:38:08 [ 4] [ 12] [000050000000] +16:38:08 [ 7] [ 10] [0320093713] +16:38:08 [ 11] [ 6] [270545] +16:38:08 [ 12] [ 6] [163713] +16:38:08 [ 13] [ 4] [0320] +16:38:08 [ 14] [ 4] [9804] +16:38:08 [ 15] [ 4] [0320] +16:38:08 [ 18] [ 4] [6011] +16:38:08 [ 19] [ 3] [418] +16:38:08 [ 22] [ 3] [021] +16:38:08 [ 25] [ 2] [01] +16:38:08 [ 28] [ 9] [D00002000] +16:38:08 [ 32] [ 6] [180893] +16:38:08 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:38:08 [ 37] [ 12] [507909270545] +16:38:08 [ 41] [ 8] [0321LNTV] +16:38:08 [ 42] [ 15] [999999 ] +16:38:08 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +16:38:08 [ 49] [ 3] [418] +16:38:08 [ 52] [ 16] [3A542D0B1C03B85E] +16:38:08 ============================================================================ +16:38:08 + + +waiting on router queue for slot.... +16:38:08 Sending to : <0> +16:38:08 ============================================================================ +16:38:08 ============================================================================ +16:38:08 Slot Id : <102> +16:38:08 Transaction Type : RESPONSE +16:38:08 Received From : +16:38:08 ============================================================================ +16:38:08 FNo. Len. Field Value +16:38:08 ============================================================================ +16:38:08 [ 1] [ 4] [0210] +16:38:08 [ 2] [ 16] [6688990040139667] +16:38:08 [ 3] [ 6] [010000] +16:38:08 [ 4] [ 12] [000050000000] +16:38:08 [ 7] [ 10] [0320093713] +16:38:08 [ 11] [ 6] [270545] +16:38:08 [ 12] [ 6] [163713] +16:38:08 [ 13] [ 4] [0320] +16:38:08 [ 15] [ 4] [0320] +16:38:08 [ 18] [ 4] [6011] +16:38:08 [ 19] [ 3] [418] +16:38:08 [ 22] [ 3] [021] +16:38:08 [ 32] [ 6] [180893] +16:38:08 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:38:08 [ 37] [ 12] [507909270545] +16:38:08 [ 39] [ 2] [14] +16:38:08 [ 41] [ 8] [0321LNTV] +16:38:08 [ 49] [ 3] [418] +16:38:08 ============================================================================ +16:38:08 Sending to : +16:38:08 ============================================================================ +16:38:08 + + +waiting on router queue for slot.... +16:38:09 ============================================================================ +16:38:09 Slot Id : <77> +16:38:09 Transaction Type : RESPONSE +16:38:09 Received From : +16:38:09 ============================================================================ +16:38:09 FNo. Len. Field Value +16:38:09 ============================================================================ +16:38:09 [ 1] [ 4] [0210] +16:38:09 [ 2] [ 16] [6213544002251244] +16:38:09 [ 3] [ 6] [011000] +16:38:09 [ 4] [ 12] [000045000000] +16:38:09 [ 7] [ 10] [0320163827] +16:38:09 [ 11] [ 6] [208829] +16:38:09 [ 12] [ 6] [163333] +16:38:09 [ 13] [ 4] [0320] +16:38:09 [ 15] [ 4] [0320] +16:38:09 [ 18] [ 4] [6011] +16:38:09 [ 19] [ 3] [418] +16:38:09 [ 32] [ 6] [198901] +16:38:09 [ 35] [ 32] [6213544002251244=491212015124378] +16:38:09 [ 37] [ 12] [507916208829] +16:38:09 [ 38] [ 6] [398344] +16:38:09 [ 39] [ 2] [00] +16:38:09 [ 41] [ 8] [19529001] +16:38:09 [ 49] [ 3] [418] +16:38:09 [ 54] [ 40] [1001418C0000117659801002418C000011765980] +16:38:09 ============================================================================ +16:38:09 Calculate Source COMM Id = 5 +16:38:09 ============================================================================ +16:38:09 + + +waiting on router queue for slot.... +16:38:10 ============================================================================ +16:38:10 Slot Id : <102> +16:38:10 Transaction Type : RESPONSE +16:38:10 Received From : +16:38:10 ============================================================================ +16:38:10 FNo. Len. Field Value +16:38:10 ============================================================================ +16:38:10 [ 1] [ 4] [0210] +16:38:10 [ 2] [ 16] [6688990040139667] +16:38:10 [ 3] [ 6] [010000] +16:38:10 [ 4] [ 12] [000050000000] +16:38:10 [ 7] [ 10] [0320093713] +16:38:10 [ 11] [ 6] [270545] +16:38:10 [ 12] [ 6] [163713] +16:38:10 [ 13] [ 4] [0320] +16:38:10 [ 15] [ 4] [0320] +16:38:10 [ 18] [ 4] [6011] +16:38:10 [ 19] [ 3] [418] +16:38:10 [ 22] [ 3] [021] +16:38:10 [ 32] [ 6] [180893] +16:38:10 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:38:10 [ 37] [ 12] [507909270545] +16:38:10 [ 39] [ 2] [14] +16:38:10 [ 41] [ 8] [0321LNTV] +16:38:10 [ 49] [ 3] [418] +16:38:10 ============================================================================ +16:38:10 Calculate Source COMM Id = 2 +16:38:10 ============================================================================ +16:38:10 + + +waiting on router queue for slot.... +16:38:10 ============================================================================ +16:38:10 Slot Id : <109> +16:38:10 Transaction Type : REQUEST +16:38:10 Received From : +16:38:10 ============================================================================ +16:38:10 FNo. Len. Field Value +16:38:10 ============================================================================ +16:38:10 [ 1] [ 4] [0800] +16:38:10 [ 7] [ 10] [0320093717] +16:38:10 [ 11] [ 6] [157272] +16:38:10 [ 70] [ 3] [301] +16:38:10 ============================================================================ +16:38:10 + + +waiting on router queue for slot.... +16:38:10 Sending to : +16:38:10 ============================================================================ +16:38:10 ============================================================================ +16:38:10 Slot Id : <109> +16:38:10 Transaction Type : RESPONSE +16:38:10 Received From : +16:38:10 ============================================================================ +16:38:10 FNo. Len. Field Value +16:38:10 ============================================================================ +16:38:10 [ 1] [ 4] [0810] +16:38:10 [ 7] [ 10] [0320093717] +16:38:10 [ 11] [ 6] [157272] +16:38:10 [ 39] [ 2] [00] +16:38:10 [ 70] [ 3] [301] +16:38:10 ============================================================================ +16:38:10 Calculate Source COMM Id = 2 +16:38:10 ============================================================================ +16:38:10 + + +waiting on router queue for slot.... +16:38:16 ============================================================================ +16:38:16 Slot Id : <71> +16:38:16 Transaction Type : REQUEST +16:38:16 Received From : +16:38:16 ============================================================================ +16:38:16 FNo. Len. Field Value +16:38:16 ============================================================================ +16:38:16 [ 1] [ 4] [0200] +16:38:16 [ 2] [ 16] [6688990103639900] +16:38:16 [ 3] [ 6] [300000] +16:38:16 [ 4] [ 12] [000000000000] +16:38:16 [ 7] [ 10] [0320163811] +16:38:16 [ 11] [ 6] [802094] +16:38:16 [ 12] [ 6] [163811] +16:38:16 [ 13] [ 4] [0320] +16:38:16 [ 15] [ 4] [0320] +16:38:16 [ 18] [ 4] [6011] +16:38:16 [ 22] [ 3] [900] +16:38:16 [ 25] [ 2] [02] +16:38:16 [ 28] [ 9] [D00000000] +16:38:16 [ 32] [ 6] [621354] +16:38:16 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:38:16 [ 37] [ 12] [507903499610] +16:38:16 [ 41] [ 8] [06002200] +16:38:16 [ 42] [ 15] [NATIVE ] +16:38:16 [ 43] [ 40] [Beng Market Beng LAO] +16:38:16 [ 49] [ 3] [418] +16:38:16 [ 52] [ 16] [48D2EEB63F10A8A0] +16:38:16 ============================================================================ +16:38:16 + + +waiting on router queue for slot.... +16:38:16 Sending to : +16:38:16 ============================================================================ +16:38:16 Sending to : +16:38:16 ============================================================================ +16:38:16 ============================================================================ +16:38:16 Slot Id : <71> +16:38:16 Transaction Type : REQUEST +16:38:16 Received From : +16:38:16 ============================================================================ +16:38:16 FNo. Len. Field Value +16:38:16 ============================================================================ +16:38:16 [ 1] [ 4] [0200] +16:38:16 [ 2] [ 16] [6688990103639900] +16:38:16 [ 3] [ 6] [300000] +16:38:16 [ 4] [ 12] [000000000000] +16:38:16 [ 7] [ 10] [0320163811] +16:38:16 [ 11] [ 6] [802094] +16:38:16 [ 12] [ 6] [163811] +16:38:16 [ 13] [ 4] [0320] +16:38:16 [ 15] [ 4] [0320] +16:38:16 [ 18] [ 4] [6011] +16:38:16 [ 22] [ 3] [900] +16:38:16 [ 25] [ 2] [02] +16:38:16 [ 28] [ 9] [D00000000] +16:38:16 [ 32] [ 6] [621354] +16:38:16 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:38:16 [ 37] [ 12] [507903499610] +16:38:16 [ 41] [ 8] [06002200] +16:38:16 [ 42] [ 15] [NATIVE ] +16:38:16 [ 43] [ 40] [Beng Market Beng LAO] +16:38:16 [ 49] [ 3] [418] +16:38:16 [ 52] [ 16] [48D2EEB63F10A8A0] +16:38:16 ============================================================================ +16:38:16 + + +waiting on router queue for slot.... +16:38:16 Sending to : +16:38:16 ============================================================================ +16:38:16 ============================================================================ +16:38:16 Slot Id : <71> +16:38:16 Transaction Type : REQUEST +16:38:16 Received From : +16:38:16 ============================================================================ +16:38:16 FNo. Len. Field Value +16:38:16 ============================================================================ +16:38:16 [ 1] [ 4] [0200] +16:38:16 [ 2] [ 16] [6688990103639900] +16:38:16 [ 3] [ 6] [300000] +16:38:16 [ 4] [ 12] [000000000000] +16:38:16 [ 7] [ 10] [0320163811] +16:38:16 [ 11] [ 6] [802094] +16:38:16 [ 12] [ 6] [163811] +16:38:16 [ 13] [ 4] [0320] +16:38:16 [ 15] [ 4] [0320] +16:38:16 [ 18] [ 4] [6011] +16:38:16 [ 22] [ 3] [900] +16:38:16 [ 25] [ 2] [02] +16:38:16 [ 28] [ 9] [D00000000] +16:38:16 [ 32] [ 6] [621354] +16:38:16 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:38:16 [ 37] [ 12] [507903499610] +16:38:16 [ 41] [ 8] [06002200] +16:38:16 [ 42] [ 15] [NATIVE ] +16:38:16 [ 43] [ 40] [Beng Market Beng LAO] +16:38:16 [ 49] [ 3] [418] +16:38:16 [ 52] [ 16] [E50625F8037D9A71] +16:38:16 ============================================================================ +16:38:16 + + +waiting on router queue for slot.... +16:38:16 Sending to : <4> +16:38:16 ============================================================================ +16:38:17 ============================================================================ +16:38:17 Slot Id : <136> +16:38:17 Transaction Type : REQUEST +16:38:17 Received From : +16:38:17 ============================================================================ +16:38:17 FNo. Len. Field Value +16:38:17 ============================================================================ +16:38:17 [ 1] [ 4] [0200] +16:38:17 [ 2] [ 16] [1999990000002975] +16:38:17 [ 3] [ 6] [010000] +16:38:17 [ 4] [ 12] [000050000000] +16:38:17 [ 7] [ 10] [0320163607] +16:38:17 [ 11] [ 6] [952040] +16:38:17 [ 12] [ 6] [163607] +16:38:17 [ 13] [ 4] [0320] +16:38:17 [ 15] [ 4] [0320] +16:38:17 [ 18] [ 4] [6011] +16:38:17 [ 19] [ 3] [418] +16:38:17 [ 22] [ 3] [021] +16:38:17 [ 25] [ 2] [01] +16:38:17 [ 28] [ 9] [D00002000] +16:38:17 [ 32] [ 6] [668899] +16:38:17 [ 35] [ 32] [1999990000002975=000010100000482] +16:38:17 [ 37] [ 12] [507902623503] +16:38:17 [ 41] [ 8] [03003006] +16:38:17 [ 42] [ 15] [APT ] +16:38:17 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:38:17 [ 49] [ 3] [418] +16:38:17 [ 52] [ 16] [DB87D16B103AF7E7] +16:38:17 ============================================================================ +16:38:17 + + +waiting on router queue for slot.... +16:38:17 Sending to : +16:38:17 ============================================================================ +16:38:17 Sending to : +16:38:17 ============================================================================ +16:38:17 ============================================================================ +16:38:17 Slot Id : <71> +16:38:17 Transaction Type : RESPONSE +16:38:17 Received From : +16:38:17 ============================================================================ +16:38:17 FNo. Len. Field Value +16:38:17 ============================================================================ +16:38:17 [ 1] [ 4] [0210] +16:38:17 [ 2] [ 16] [6688990103639900] +16:38:17 [ 3] [ 6] [300000] +16:38:17 [ 4] [ 12] [000000000000] +16:38:17 [ 11] [ 6] [802094] +16:38:17 [ 12] [ 6] [163811] +16:38:17 [ 15] [ 4] [0320] +16:38:17 [ 18] [ 4] [6011] +16:38:17 [ 32] [ 6] [621354] +16:38:17 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:38:17 [ 37] [ 12] [507903499610] +16:38:17 [ 38] [ 6] [641637] +16:38:17 [ 39] [ 2] [00] +16:38:17 [ 41] [ 8] [06002200] +16:38:17 [ 49] [ 3] [418] +16:38:17 [ 54] [ 20] [0002418C000224306194] +16:38:17 ============================================================================ +16:38:17 Sending to : +16:38:17 ============================================================================ +16:38:17 + + +waiting on router queue for slot.... +16:38:18 ============================================================================ +16:38:18 Slot Id : <136> +16:38:18 Transaction Type : REQUEST +16:38:18 Received From : +16:38:18 ============================================================================ +16:38:18 FNo. Len. Field Value +16:38:18 ============================================================================ +16:38:18 [ 1] [ 4] [0200] +16:38:18 [ 2] [ 16] [1999990000002975] +16:38:18 [ 3] [ 6] [010000] +16:38:18 [ 4] [ 12] [000050000000] +16:38:18 [ 7] [ 10] [0320163607] +16:38:18 [ 11] [ 6] [952040] +16:38:18 [ 12] [ 6] [163607] +16:38:18 [ 13] [ 4] [0320] +16:38:18 [ 15] [ 4] [0320] +16:38:18 [ 18] [ 4] [6011] +16:38:18 [ 19] [ 3] [418] +16:38:18 [ 22] [ 3] [021] +16:38:18 [ 25] [ 2] [01] +16:38:18 [ 28] [ 9] [D00002000] +16:38:18 [ 32] [ 6] [668899] +16:38:18 [ 35] [ 32] [1999990000002975=000010100000482] +16:38:18 [ 37] [ 12] [507902623503] +16:38:18 [ 41] [ 8] [03003006] +16:38:18 [ 42] [ 15] [APT ] +16:38:18 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:38:18 [ 49] [ 3] [418] +16:38:18 [ 52] [ 16] [DB87D16B103AF7E7] +16:38:18 ============================================================================ +16:38:18 + + +waiting on router queue for slot.... +16:38:18 Sending to : +16:38:18 ============================================================================ +16:38:18 ============================================================================ +16:38:18 Slot Id : <136> +16:38:18 Transaction Type : REQUEST +16:38:18 Received From : +16:38:18 ============================================================================ +16:38:18 FNo. Len. Field Value +16:38:18 ============================================================================ +16:38:18 [ 1] [ 4] [0200] +16:38:18 [ 2] [ 16] [1999990000002975] +16:38:18 [ 3] [ 6] [010000] +16:38:18 [ 4] [ 12] [000050000000] +16:38:18 [ 7] [ 10] [0320163607] +16:38:18 [ 11] [ 6] [952040] +16:38:18 [ 12] [ 6] [163607] +16:38:18 [ 13] [ 4] [0320] +16:38:18 [ 15] [ 4] [0320] +16:38:18 [ 18] [ 4] [6011] +16:38:18 [ 19] [ 3] [418] +16:38:18 [ 22] [ 3] [021] +16:38:18 [ 25] [ 2] [01] +16:38:18 [ 28] [ 9] [D00002000] +16:38:18 [ 32] [ 6] [668899] +16:38:18 [ 35] [ 32] [1999990000002975=000010100000482] +16:38:18 [ 37] [ 12] [507902623503] +16:38:18 [ 41] [ 8] [03003006] +16:38:18 [ 42] [ 15] [APT ] +16:38:18 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:38:18 [ 49] [ 3] [418] +16:38:18 [ 52] [ 16] [69468AA2F3682BBE] +16:38:18 ============================================================================ +16:38:18 + + +waiting on router queue for slot.... +16:38:18 Sending to : <5> +16:38:18 ============================================================================ +16:38:19 ============================================================================ +16:38:19 Slot Id : <71> +16:38:19 Transaction Type : RESPONSE +16:38:19 Received From : +16:38:19 ============================================================================ +16:38:19 FNo. Len. Field Value +16:38:19 ============================================================================ +16:38:19 [ 1] [ 4] [0210] +16:38:19 [ 2] [ 16] [6688990103639900] +16:38:19 [ 3] [ 6] [300000] +16:38:19 [ 4] [ 12] [000000000000] +16:38:19 [ 11] [ 6] [802094] +16:38:19 [ 12] [ 6] [163811] +16:38:19 [ 15] [ 4] [0320] +16:38:19 [ 18] [ 4] [6011] +16:38:19 [ 32] [ 6] [621354] +16:38:19 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:38:19 [ 37] [ 12] [507903499610] +16:38:19 [ 38] [ 6] [641637] +16:38:19 [ 39] [ 2] [00] +16:38:19 [ 41] [ 8] [06002200] +16:38:19 [ 49] [ 3] [418] +16:38:19 [ 54] [ 20] [0002418C000224306194] +16:38:19 ============================================================================ +16:38:19 Calculate Source COMM Id = 0 +16:38:19 ============================================================================ +16:38:19 + + +waiting on router queue for slot.... +16:38:20 ============================================================================ +16:38:20 Slot Id : <136> +16:38:20 Transaction Type : RESPONSE +16:38:20 Received From : +16:38:20 ============================================================================ +16:38:20 FNo. Len. Field Value +16:38:20 ============================================================================ +16:38:20 [ 1] [ 4] [0210] +16:38:20 [ 2] [ 16] [1999990000002975] +16:38:20 [ 3] [ 6] [010000] +16:38:20 [ 4] [ 12] [000050000000] +16:38:20 [ 7] [ 10] [0320163607] +16:38:20 [ 11] [ 6] [952040] +16:38:20 [ 12] [ 6] [163607] +16:38:20 [ 13] [ 4] [0320] +16:38:20 [ 15] [ 4] [0320] +16:38:20 [ 18] [ 4] [6011] +16:38:20 [ 19] [ 3] [418] +16:38:20 [ 32] [ 6] [668899] +16:38:20 [ 37] [ 12] [507902623503] +16:38:20 [ 38] [ 6] [000000] +16:38:20 [ 39] [ 2] [51] +16:38:20 [ 41] [ 8] [03003006] +16:38:20 [ 49] [ 3] [418] +16:38:20 ============================================================================ +16:38:20 Sending to : +16:38:20 ============================================================================ +16:38:20 + + +waiting on router queue for slot.... +16:38:21 ============================================================================ +16:38:21 Slot Id : <136> +16:38:21 Transaction Type : RESPONSE +16:38:21 Received From : +16:38:21 ============================================================================ +16:38:21 FNo. Len. Field Value +16:38:21 ============================================================================ +16:38:21 [ 1] [ 4] [0210] +16:38:21 [ 2] [ 16] [1999990000002975] +16:38:21 [ 3] [ 6] [010000] +16:38:21 [ 4] [ 12] [000050000000] +16:38:21 [ 7] [ 10] [0320163607] +16:38:21 [ 11] [ 6] [952040] +16:38:21 [ 12] [ 6] [163607] +16:38:21 [ 13] [ 4] [0320] +16:38:21 [ 15] [ 4] [0320] +16:38:21 [ 18] [ 4] [6011] +16:38:21 [ 19] [ 3] [418] +16:38:21 [ 32] [ 6] [668899] +16:38:21 [ 37] [ 12] [507902623503] +16:38:21 [ 38] [ 6] [000000] +16:38:21 [ 39] [ 2] [51] +16:38:21 [ 41] [ 8] [03003006] +16:38:21 [ 49] [ 3] [418] +16:38:21 ============================================================================ +16:38:21 Calculate Source COMM Id = 4 +16:38:21 ============================================================================ +16:38:21 + + +waiting on router queue for slot.... +16:38:26 ============================================================================ +16:38:26 Slot Id : <85> +16:38:26 Transaction Type : REQUEST +16:38:26 Received From : +16:38:26 ============================================================================ +16:38:26 FNo. Len. Field Value +16:38:26 ============================================================================ +16:38:26 [ 1] [ 4] [0800] +16:38:26 [ 7] [ 10] [0320093733] +16:38:26 [ 11] [ 6] [157273] +16:38:26 [ 70] [ 3] [301] +16:38:26 ============================================================================ +16:38:26 + + +waiting on router queue for slot.... +16:38:26 Sending to : +16:38:26 ============================================================================ +16:38:26 ============================================================================ +16:38:26 Slot Id : <85> +16:38:26 Transaction Type : RESPONSE +16:38:26 Received From : +16:38:26 ============================================================================ +16:38:26 FNo. Len. Field Value +16:38:26 ============================================================================ +16:38:26 [ 1] [ 4] [0810] +16:38:26 [ 7] [ 10] [0320093733] +16:38:26 [ 11] [ 6] [157273] +16:38:26 [ 39] [ 2] [00] +16:38:26 [ 70] [ 3] [301] +16:38:26 ============================================================================ +16:38:26 Calculate Source COMM Id = 2 +16:38:26 ============================================================================ +16:38:26 + + +waiting on router queue for slot.... +16:38:30 ============================================================================ +16:38:30 Slot Id : <87> +16:38:30 Transaction Type : REQUEST +16:38:30 Received From : +16:38:30 ============================================================================ +16:38:30 FNo. Len. Field Value +16:38:30 ============================================================================ +16:38:30 [ 1] [ 4] [0200] +16:38:30 [ 2] [ 16] [1808931400007850] +16:38:30 [ 3] [ 6] [300000] +16:38:30 [ 4] [ 12] [000000000000] +16:38:30 [ 7] [ 10] [0320163825] +16:38:30 [ 11] [ 6] [802169] +16:38:30 [ 12] [ 6] [163825] +16:38:30 [ 13] [ 4] [0320] +16:38:30 [ 15] [ 4] [0320] +16:38:30 [ 18] [ 4] [6011] +16:38:30 [ 22] [ 3] [900] +16:38:30 [ 25] [ 2] [02] +16:38:30 [ 28] [ 9] [D00000000] +16:38:30 [ 32] [ 6] [621354] +16:38:30 [ 35] [ 27] [1808931400007850=1803500731] +16:38:30 [ 37] [ 12] [507904719796] +16:38:30 [ 41] [ 8] [18001000] +16:38:30 [ 42] [ 15] [NATIVE ] +16:38:30 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:38:30 [ 49] [ 3] [418] +16:38:30 [ 52] [ 16] [1B46B0978C06F21B] +16:38:30 ============================================================================ +16:38:30 + + +waiting on router queue for slot.... +16:38:30 Sending to : +16:38:30 ============================================================================ +16:38:30 Sending to : +16:38:30 ============================================================================ +16:38:31 ============================================================================ +16:38:31 Slot Id : <87> +16:38:31 Transaction Type : REQUEST +16:38:31 Received From : +16:38:31 ============================================================================ +16:38:31 FNo. Len. Field Value +16:38:31 ============================================================================ +16:38:31 [ 1] [ 4] [0200] +16:38:31 [ 2] [ 16] [1808931400007850] +16:38:31 [ 3] [ 6] [300000] +16:38:31 [ 4] [ 12] [000000000000] +16:38:31 [ 7] [ 10] [0320163825] +16:38:31 [ 11] [ 6] [802169] +16:38:31 [ 12] [ 6] [163825] +16:38:31 [ 13] [ 4] [0320] +16:38:31 [ 15] [ 4] [0320] +16:38:31 [ 18] [ 4] [6011] +16:38:31 [ 22] [ 3] [900] +16:38:31 [ 25] [ 2] [02] +16:38:31 [ 28] [ 9] [D00000000] +16:38:31 [ 32] [ 6] [621354] +16:38:31 [ 35] [ 27] [1808931400007850=1803500731] +16:38:31 [ 37] [ 12] [507904719796] +16:38:31 [ 41] [ 8] [18001000] +16:38:31 [ 42] [ 15] [NATIVE ] +16:38:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:38:31 [ 49] [ 3] [418] +16:38:31 [ 52] [ 16] [1B46B0978C06F21B] +16:38:31 ============================================================================ +16:38:31 + + +waiting on router queue for slot.... +16:38:31 Sending to : +16:38:31 ============================================================================ +16:38:31 ============================================================================ +16:38:31 Slot Id : <87> +16:38:31 Transaction Type : REQUEST +16:38:31 Received From : +16:38:31 ============================================================================ +16:38:31 FNo. Len. Field Value +16:38:31 ============================================================================ +16:38:31 [ 1] [ 4] [0200] +16:38:31 [ 2] [ 16] [1808931400007850] +16:38:31 [ 3] [ 6] [300000] +16:38:31 [ 4] [ 12] [000000000000] +16:38:31 [ 7] [ 10] [0320163825] +16:38:31 [ 11] [ 6] [802169] +16:38:31 [ 12] [ 6] [163825] +16:38:31 [ 13] [ 4] [0320] +16:38:31 [ 15] [ 4] [0320] +16:38:31 [ 18] [ 4] [6011] +16:38:31 [ 22] [ 3] [900] +16:38:31 [ 25] [ 2] [02] +16:38:31 [ 28] [ 9] [D00000000] +16:38:31 [ 32] [ 6] [621354] +16:38:31 [ 35] [ 27] [1808931400007850=1803500731] +16:38:31 [ 37] [ 12] [507904719796] +16:38:31 [ 41] [ 8] [18001000] +16:38:31 [ 42] [ 15] [NATIVE ] +16:38:31 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:38:31 [ 49] [ 3] [418] +16:38:31 [ 52] [ 16] [FAFCBCCF0E789021] +16:38:31 ============================================================================ +16:38:31 + + +waiting on router queue for slot.... +16:38:31 Sending to : <2> +16:38:31 ============================================================================ +16:38:34 ============================================================================ +16:38:34 Slot Id : <87> +16:38:34 Transaction Type : RESPONSE +16:38:34 Received From : +16:38:34 ============================================================================ +16:38:34 FNo. Len. Field Value +16:38:34 ============================================================================ +16:38:34 [ 1] [ 4] [0210] +16:38:34 [ 2] [ 16] [1808931400007850] +16:38:34 [ 3] [ 6] [300000] +16:38:34 [ 7] [ 10] [0320163825] +16:38:34 [ 11] [ 6] [802169] +16:38:34 [ 12] [ 6] [163825] +16:38:34 [ 13] [ 4] [0320] +16:38:34 [ 14] [ 4] [1803] +16:38:34 [ 19] [ 3] [418] +16:38:34 [ 32] [ 6] [621354] +16:38:34 [ 37] [ 12] [507904719796] +16:38:34 [ 38] [ 6] [802169] +16:38:34 [ 39] [ 2] [00] +16:38:34 [ 41] [ 8] [18001000] +16:38:34 [ 49] [ 3] [418] +16:38:34 [ 52] [ 16] [FAFCBCCF0E789021] +16:38:34 [ 54] [ 20] [0002418C000003221400] +16:38:34 ============================================================================ +16:38:34 Sending to : +16:38:34 ============================================================================ +16:38:34 + + +waiting on router queue for slot.... +16:38:34 ============================================================================ +16:38:34 Slot Id : <129> +16:38:34 Transaction Type : REQUEST +16:38:34 Received From : +16:38:34 ============================================================================ +16:38:34 FNo. Len. Field Value +16:38:34 ============================================================================ +16:38:34 [ 1] [ 4] [0200] +16:38:34 [ 2] [ 16] [6688990030010944] +16:38:34 [ 3] [ 6] [010000] +16:38:34 [ 4] [ 12] [000200000000] +16:38:34 [ 7] [ 10] [0320093741] +16:38:34 [ 11] [ 6] [270551] +16:38:34 [ 12] [ 6] [163741] +16:38:34 [ 13] [ 4] [0320] +16:38:34 [ 14] [ 4] [9802] +16:38:34 [ 15] [ 4] [0320] +16:38:34 [ 18] [ 4] [6011] +16:38:34 [ 19] [ 3] [418] +16:38:34 [ 22] [ 3] [021] +16:38:34 [ 25] [ 2] [01] +16:38:34 [ 28] [ 9] [D00002000] +16:38:34 [ 32] [ 6] [180893] +16:38:34 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:38:34 [ 37] [ 12] [507909270551] +16:38:34 [ 41] [ 8] [0523XYNG] +16:38:34 [ 42] [ 15] [999999 ] +16:38:34 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +16:38:34 [ 49] [ 3] [418] +16:38:34 [ 52] [ 16] [55D1A6FC2545A0D7] +16:38:34 ============================================================================ +16:38:34 + + +waiting on router queue for slot.... +16:38:34 Sending to : +16:38:34 ============================================================================ +16:38:34 Sending to : +16:38:34 ============================================================================ +16:38:35 ============================================================================ +16:38:35 Slot Id : <129> +16:38:35 Transaction Type : REQUEST +16:38:35 Received From : +16:38:35 ============================================================================ +16:38:35 FNo. Len. Field Value +16:38:35 ============================================================================ +16:38:35 [ 1] [ 4] [0200] +16:38:35 [ 2] [ 16] [6688990030010944] +16:38:35 [ 3] [ 6] [010000] +16:38:35 [ 4] [ 12] [000200000000] +16:38:35 [ 7] [ 10] [0320093741] +16:38:35 [ 11] [ 6] [270551] +16:38:35 [ 12] [ 6] [163741] +16:38:35 [ 13] [ 4] [0320] +16:38:35 [ 14] [ 4] [9802] +16:38:35 [ 15] [ 4] [0320] +16:38:35 [ 18] [ 4] [6011] +16:38:35 [ 19] [ 3] [418] +16:38:35 [ 22] [ 3] [021] +16:38:35 [ 25] [ 2] [01] +16:38:35 [ 28] [ 9] [D00002000] +16:38:35 [ 32] [ 6] [180893] +16:38:35 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:38:35 [ 37] [ 12] [507909270551] +16:38:35 [ 41] [ 8] [0523XYNG] +16:38:35 [ 42] [ 15] [999999 ] +16:38:35 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +16:38:35 [ 49] [ 3] [418] +16:38:35 [ 52] [ 16] [55D1A6FC2545A0D7] +16:38:35 ============================================================================ +16:38:35 + + +waiting on router queue for slot.... +16:38:35 Sending to : +16:38:35 ============================================================================ +16:38:35 ============================================================================ +16:38:35 Slot Id : <129> +16:38:35 Transaction Type : REQUEST +16:38:35 Received From : +16:38:35 ============================================================================ +16:38:35 FNo. Len. Field Value +16:38:35 ============================================================================ +16:38:35 [ 1] [ 4] [0200] +16:38:35 [ 2] [ 16] [6688990030010944] +16:38:35 [ 3] [ 6] [010000] +16:38:35 [ 4] [ 12] [000200000000] +16:38:35 [ 7] [ 10] [0320093741] +16:38:35 [ 11] [ 6] [270551] +16:38:35 [ 12] [ 6] [163741] +16:38:35 [ 13] [ 4] [0320] +16:38:35 [ 14] [ 4] [9802] +16:38:35 [ 15] [ 4] [0320] +16:38:35 [ 18] [ 4] [6011] +16:38:35 [ 19] [ 3] [418] +16:38:35 [ 22] [ 3] [021] +16:38:35 [ 25] [ 2] [01] +16:38:35 [ 28] [ 9] [D00002000] +16:38:35 [ 32] [ 6] [180893] +16:38:35 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:38:35 [ 37] [ 12] [507909270551] +16:38:35 [ 41] [ 8] [0523XYNG] +16:38:35 [ 42] [ 15] [999999 ] +16:38:35 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +16:38:35 [ 49] [ 3] [418] +16:38:35 [ 52] [ 16] [9067361A00457C31] +16:38:35 ============================================================================ +16:38:35 + + +waiting on router queue for slot.... +16:38:35 Sending to : <0> +16:38:35 ============================================================================ +16:38:35 ============================================================================ +16:38:35 Slot Id : <129> +16:38:35 Transaction Type : RESPONSE +16:38:35 Received From : +16:38:35 ============================================================================ +16:38:35 FNo. Len. Field Value +16:38:35 ============================================================================ +16:38:35 [ 1] [ 4] [0210] +16:38:35 [ 2] [ 16] [6688990030010944] +16:38:35 [ 3] [ 6] [010000] +16:38:35 [ 4] [ 12] [000200000000] +16:38:35 [ 7] [ 10] [0320093741] +16:38:35 [ 11] [ 6] [270551] +16:38:35 [ 12] [ 6] [163741] +16:38:35 [ 13] [ 4] [0320] +16:38:35 [ 15] [ 4] [0320] +16:38:35 [ 18] [ 4] [6011] +16:38:35 [ 19] [ 3] [418] +16:38:35 [ 22] [ 3] [021] +16:38:35 [ 32] [ 6] [180893] +16:38:35 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:38:35 [ 37] [ 12] [507909270551] +16:38:35 [ 39] [ 2] [61] +16:38:35 [ 41] [ 8] [0523XYNG] +16:38:35 [ 49] [ 3] [418] +16:38:35 ============================================================================ +16:38:35 Sending to : +16:38:35 ============================================================================ +16:38:35 + + +waiting on router queue for slot.... +16:38:35 ============================================================================ +16:38:35 Slot Id : <87> +16:38:35 Transaction Type : RESPONSE +16:38:35 Received From : +16:38:35 ============================================================================ +16:38:35 FNo. Len. Field Value +16:38:35 ============================================================================ +16:38:35 [ 1] [ 4] [0210] +16:38:35 [ 2] [ 16] [1808931400007850] +16:38:35 [ 3] [ 6] [300000] +16:38:35 [ 7] [ 10] [0320163825] +16:38:35 [ 11] [ 6] [802169] +16:38:35 [ 12] [ 6] [163825] +16:38:35 [ 13] [ 4] [0320] +16:38:35 [ 14] [ 4] [1803] +16:38:35 [ 19] [ 3] [418] +16:38:35 [ 32] [ 6] [621354] +16:38:35 [ 37] [ 12] [507904719796] +16:38:35 [ 38] [ 6] [802169] +16:38:35 [ 39] [ 2] [00] +16:38:35 [ 41] [ 8] [18001000] +16:38:35 [ 49] [ 3] [418] +16:38:35 [ 52] [ 16] [FAFCBCCF0E789021] +16:38:35 [ 54] [ 20] [0002418C000003221400] +16:38:35 ============================================================================ +16:38:35 Calculate Source COMM Id = 0 +16:38:35 ============================================================================ +16:38:35 + + +waiting on router queue for slot.... +16:38:36 ============================================================================ +16:38:36 Slot Id : <105> +16:38:36 Transaction Type : REQUEST +16:38:36 Received From : +16:38:36 ============================================================================ +16:38:36 FNo. Len. Field Value +16:38:36 ============================================================================ +16:38:36 [ 1] [ 4] [0200] +16:38:36 [ 2] [ 16] [1999990000002975] +16:38:36 [ 3] [ 6] [010000] +16:38:36 [ 4] [ 12] [000070000000] +16:38:36 [ 7] [ 10] [0320163626] +16:38:36 [ 11] [ 6] [952051] +16:38:36 [ 12] [ 6] [163626] +16:38:36 [ 13] [ 4] [0320] +16:38:36 [ 15] [ 4] [0320] +16:38:36 [ 18] [ 4] [6011] +16:38:36 [ 19] [ 3] [418] +16:38:36 [ 22] [ 3] [021] +16:38:36 [ 25] [ 2] [01] +16:38:36 [ 28] [ 9] [D00002000] +16:38:36 [ 32] [ 6] [668899] +16:38:36 [ 35] [ 32] [1999990000002975=000010100000482] +16:38:36 [ 37] [ 12] [507902623504] +16:38:36 [ 41] [ 8] [03003006] +16:38:36 [ 42] [ 15] [APT ] +16:38:36 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:38:36 [ 49] [ 3] [418] +16:38:36 [ 52] [ 16] [DB87D16B103AF7E7] +16:38:36 ============================================================================ +16:38:36 + + +waiting on router queue for slot.... +16:38:36 Sending to : +16:38:36 ============================================================================ +16:38:36 Sending to : +16:38:36 ============================================================================ +16:38:37 ============================================================================ +16:38:37 Slot Id : <129> +16:38:37 Transaction Type : RESPONSE +16:38:37 Received From : +16:38:37 ============================================================================ +16:38:37 FNo. Len. Field Value +16:38:37 ============================================================================ +16:38:37 [ 1] [ 4] [0210] +16:38:37 [ 2] [ 16] [6688990030010944] +16:38:37 [ 3] [ 6] [010000] +16:38:37 [ 4] [ 12] [000200000000] +16:38:37 [ 7] [ 10] [0320093741] +16:38:37 [ 11] [ 6] [270551] +16:38:37 [ 12] [ 6] [163741] +16:38:37 [ 13] [ 4] [0320] +16:38:37 [ 15] [ 4] [0320] +16:38:37 [ 18] [ 4] [6011] +16:38:37 [ 19] [ 3] [418] +16:38:37 [ 22] [ 3] [021] +16:38:37 [ 32] [ 6] [180893] +16:38:37 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:38:37 [ 37] [ 12] [507909270551] +16:38:37 [ 39] [ 2] [61] +16:38:37 [ 41] [ 8] [0523XYNG] +16:38:37 [ 49] [ 3] [418] +16:38:37 ============================================================================ +16:38:37 Calculate Source COMM Id = 2 +16:38:37 ============================================================================ +16:38:37 + + +waiting on router queue for slot.... +16:38:37 ============================================================================ +16:38:37 Slot Id : <105> +16:38:37 Transaction Type : REQUEST +16:38:37 Received From : +16:38:37 ============================================================================ +16:38:37 FNo. Len. Field Value +16:38:37 ============================================================================ +16:38:37 [ 1] [ 4] [0200] +16:38:37 [ 2] [ 16] [1999990000002975] +16:38:37 [ 3] [ 6] [010000] +16:38:37 [ 4] [ 12] [000070000000] +16:38:37 [ 7] [ 10] [0320163626] +16:38:37 [ 11] [ 6] [952051] +16:38:37 [ 12] [ 6] [163626] +16:38:37 [ 13] [ 4] [0320] +16:38:37 [ 15] [ 4] [0320] +16:38:37 [ 18] [ 4] [6011] +16:38:37 [ 19] [ 3] [418] +16:38:37 [ 22] [ 3] [021] +16:38:37 [ 25] [ 2] [01] +16:38:37 [ 28] [ 9] [D00002000] +16:38:37 [ 32] [ 6] [668899] +16:38:37 [ 35] [ 32] [1999990000002975=000010100000482] +16:38:37 [ 37] [ 12] [507902623504] +16:38:37 [ 41] [ 8] [03003006] +16:38:37 [ 42] [ 15] [APT ] +16:38:37 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:38:37 [ 49] [ 3] [418] +16:38:37 [ 52] [ 16] [DB87D16B103AF7E7] +16:38:37 ============================================================================ +16:38:37 + + +waiting on router queue for slot.... +16:38:37 Sending to : +16:38:37 ============================================================================ +16:38:37 ============================================================================ +16:38:37 Slot Id : <105> +16:38:37 Transaction Type : REQUEST +16:38:37 Received From : +16:38:37 ============================================================================ +16:38:37 FNo. Len. Field Value +16:38:37 ============================================================================ +16:38:37 [ 1] [ 4] [0200] +16:38:37 [ 2] [ 16] [1999990000002975] +16:38:37 [ 3] [ 6] [010000] +16:38:37 [ 4] [ 12] [000070000000] +16:38:37 [ 7] [ 10] [0320163626] +16:38:37 [ 11] [ 6] [952051] +16:38:37 [ 12] [ 6] [163626] +16:38:37 [ 13] [ 4] [0320] +16:38:37 [ 15] [ 4] [0320] +16:38:37 [ 18] [ 4] [6011] +16:38:37 [ 19] [ 3] [418] +16:38:37 [ 22] [ 3] [021] +16:38:37 [ 25] [ 2] [01] +16:38:37 [ 28] [ 9] [D00002000] +16:38:37 [ 32] [ 6] [668899] +16:38:37 [ 35] [ 32] [1999990000002975=000010100000482] +16:38:37 [ 37] [ 12] [507902623504] +16:38:37 [ 41] [ 8] [03003006] +16:38:37 [ 42] [ 15] [APT ] +16:38:37 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:38:37 [ 49] [ 3] [418] +16:38:37 [ 52] [ 16] [69468AA2F3682BBE] +16:38:37 ============================================================================ +16:38:37 + + +waiting on router queue for slot.... +16:38:37 Sending to : <5> +16:38:37 ============================================================================ +16:38:40 ============================================================================ +16:38:40 Slot Id : <105> +16:38:40 Transaction Type : RESPONSE +16:38:40 Received From : +16:38:40 ============================================================================ +16:38:40 FNo. Len. Field Value +16:38:40 ============================================================================ +16:38:40 [ 1] [ 4] [0210] +16:38:40 [ 2] [ 16] [1999990000002975] +16:38:40 [ 3] [ 6] [010000] +16:38:40 [ 4] [ 12] [000070000000] +16:38:40 [ 7] [ 10] [0320163626] +16:38:40 [ 11] [ 6] [952051] +16:38:40 [ 12] [ 6] [163626] +16:38:40 [ 13] [ 4] [0320] +16:38:40 [ 15] [ 4] [0320] +16:38:40 [ 18] [ 4] [6011] +16:38:40 [ 19] [ 3] [418] +16:38:40 [ 32] [ 6] [668899] +16:38:40 [ 37] [ 12] [507902623504] +16:38:40 [ 38] [ 6] [000000] +16:38:40 [ 39] [ 2] [51] +16:38:40 [ 41] [ 8] [03003006] +16:38:40 [ 49] [ 3] [418] +16:38:40 ============================================================================ +16:38:40 Sending to : +16:38:40 ============================================================================ +16:38:40 + + +waiting on router queue for slot.... +16:38:41 ============================================================================ +16:38:41 Slot Id : <105> +16:38:41 Transaction Type : RESPONSE +16:38:41 Received From : +16:38:41 ============================================================================ +16:38:41 FNo. Len. Field Value +16:38:41 ============================================================================ +16:38:41 [ 1] [ 4] [0210] +16:38:41 [ 2] [ 16] [1999990000002975] +16:38:41 [ 3] [ 6] [010000] +16:38:41 [ 4] [ 12] [000070000000] +16:38:41 [ 7] [ 10] [0320163626] +16:38:41 [ 11] [ 6] [952051] +16:38:41 [ 12] [ 6] [163626] +16:38:41 [ 13] [ 4] [0320] +16:38:41 [ 15] [ 4] [0320] +16:38:41 [ 18] [ 4] [6011] +16:38:41 [ 19] [ 3] [418] +16:38:41 [ 32] [ 6] [668899] +16:38:41 [ 37] [ 12] [507902623504] +16:38:41 [ 38] [ 6] [000000] +16:38:41 [ 39] [ 2] [51] +16:38:41 [ 41] [ 8] [03003006] +16:38:41 [ 49] [ 3] [418] +16:38:41 ============================================================================ +16:38:41 Calculate Source COMM Id = 4 +16:38:41 ============================================================================ +16:38:41 + + +waiting on router queue for slot.... +16:38:43 ============================================================================ +16:38:43 Slot Id : <131> +16:38:43 Transaction Type : REQUEST +16:38:43 Received From : +16:38:43 ============================================================================ +16:38:43 FNo. Len. Field Value +16:38:43 ============================================================================ +16:38:43 [ 1] [ 4] [0200] +16:38:43 [ 2] [ 16] [6213544002162433] +16:38:43 [ 3] [ 6] [010000] +16:38:43 [ 4] [ 12] [000052000000] +16:38:43 [ 7] [ 10] [0320163633] +16:38:43 [ 11] [ 6] [952055] +16:38:43 [ 12] [ 6] [163633] +16:38:43 [ 13] [ 4] [0320] +16:38:43 [ 15] [ 4] [0320] +16:38:43 [ 18] [ 4] [6011] +16:38:43 [ 19] [ 3] [418] +16:38:43 [ 22] [ 3] [021] +16:38:43 [ 25] [ 2] [01] +16:38:43 [ 28] [ 9] [D00002000] +16:38:43 [ 32] [ 6] [668899] +16:38:43 [ 35] [ 32] [6213544002162433=491212016243654] +16:38:43 [ 37] [ 12] [507902025609] +16:38:43 [ 41] [ 8] [03414002] +16:38:43 [ 42] [ 15] [APT ] +16:38:43 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:38:43 [ 49] [ 3] [418] +16:38:43 [ 52] [ 16] [D07912BAF07A9CEC] +16:38:43 ============================================================================ +16:38:43 + + +waiting on router queue for slot.... +16:38:43 Sending to : +16:38:43 ============================================================================ +16:38:43 Sending to : +16:38:43 ============================================================================ +16:38:43 ============================================================================ +16:38:43 Slot Id : <131> +16:38:43 Transaction Type : REQUEST +16:38:43 Received From : +16:38:43 ============================================================================ +16:38:43 FNo. Len. Field Value +16:38:43 ============================================================================ +16:38:43 [ 1] [ 4] [0200] +16:38:43 [ 2] [ 16] [6213544002162433] +16:38:43 [ 3] [ 6] [010000] +16:38:43 [ 4] [ 12] [000052000000] +16:38:43 [ 7] [ 10] [0320163633] +16:38:43 [ 11] [ 6] [952055] +16:38:43 [ 12] [ 6] [163633] +16:38:43 [ 13] [ 4] [0320] +16:38:43 [ 15] [ 4] [0320] +16:38:43 [ 18] [ 4] [6011] +16:38:43 [ 19] [ 3] [418] +16:38:43 [ 22] [ 3] [021] +16:38:43 [ 25] [ 2] [01] +16:38:43 [ 28] [ 9] [D00002000] +16:38:43 [ 32] [ 6] [668899] +16:38:43 [ 35] [ 32] [6213544002162433=491212016243654] +16:38:43 [ 37] [ 12] [507902025609] +16:38:43 [ 41] [ 8] [03414002] +16:38:43 [ 42] [ 15] [APT ] +16:38:43 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:38:43 [ 49] [ 3] [418] +16:38:43 [ 52] [ 16] [D07912BAF07A9CEC] +16:38:43 ============================================================================ +16:38:43 + + +waiting on router queue for slot.... +16:38:43 Sending to : +16:38:43 ============================================================================ +16:38:44 ============================================================================ +16:38:44 Slot Id : <131> +16:38:44 Transaction Type : REQUEST +16:38:44 Received From : +16:38:44 ============================================================================ +16:38:44 FNo. Len. Field Value +16:38:44 ============================================================================ +16:38:44 [ 1] [ 4] [0200] +16:38:44 [ 2] [ 16] [6213544002162433] +16:38:44 [ 3] [ 6] [010000] +16:38:44 [ 4] [ 12] [000052000000] +16:38:44 [ 7] [ 10] [0320163633] +16:38:44 [ 11] [ 6] [952055] +16:38:44 [ 12] [ 6] [163633] +16:38:44 [ 13] [ 4] [0320] +16:38:44 [ 15] [ 4] [0320] +16:38:44 [ 18] [ 4] [6011] +16:38:44 [ 19] [ 3] [418] +16:38:44 [ 22] [ 3] [021] +16:38:44 [ 25] [ 2] [01] +16:38:44 [ 28] [ 9] [D00002000] +16:38:44 [ 32] [ 6] [668899] +16:38:44 [ 35] [ 32] [6213544002162433=491212016243654] +16:38:44 [ 37] [ 12] [507902025609] +16:38:44 [ 41] [ 8] [03414002] +16:38:44 [ 42] [ 15] [APT ] +16:38:44 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:38:44 [ 49] [ 3] [418] +16:38:44 [ 52] [ 16] [92929BAFAE992C07] +16:38:44 ============================================================================ +16:38:44 + + +waiting on router queue for slot.... +16:38:44 Sending to : <0> +16:38:44 ============================================================================ +16:38:44 ============================================================================ +16:38:44 Slot Id : <131> +16:38:44 Transaction Type : RESPONSE +16:38:44 Received From : +16:38:44 ============================================================================ +16:38:44 FNo. Len. Field Value +16:38:44 ============================================================================ +16:38:44 [ 1] [ 4] [0210] +16:38:44 [ 2] [ 16] [6213544002162433] +16:38:44 [ 3] [ 6] [010000] +16:38:44 [ 4] [ 12] [000052000000] +16:38:44 [ 7] [ 10] [0320163633] +16:38:44 [ 11] [ 6] [952055] +16:38:44 [ 12] [ 6] [163633] +16:38:44 [ 13] [ 4] [0320] +16:38:44 [ 15] [ 4] [0320] +16:38:44 [ 18] [ 4] [6011] +16:38:44 [ 19] [ 3] [418] +16:38:44 [ 32] [ 6] [668899] +16:38:44 [ 35] [ 32] [6213544002162433=491212016243654] +16:38:44 [ 37] [ 12] [507902025609] +16:38:44 [ 38] [ 6] [109441] +16:38:44 [ 39] [ 2] [00] +16:38:44 [ 41] [ 8] [03414002] +16:38:44 [ 49] [ 3] [418] +16:38:44 [ 54] [ 40] [0001418C0000065483770002418C000006548377] +16:38:44 ============================================================================ +16:38:44 Sending to : +16:38:44 ============================================================================ +16:38:44 + + +waiting on router queue for slot.... +16:38:45 ============================================================================ +16:38:45 Slot Id : <116> +16:38:45 Transaction Type : REQUEST +16:38:45 Received From : +16:38:45 ============================================================================ +16:38:45 FNo. Len. Field Value +16:38:45 ============================================================================ +16:38:45 [ 1] [ 4] [0800] +16:38:45 [ 7] [ 10] [0320235033] +16:38:45 [ 11] [ 6] [165033] +16:38:45 [ 37] [ 12] [57916165033] +16:38:45 [ 70] [ 3] [301] +16:38:45 ============================================================================ +16:38:45 + + +waiting on router queue for slot.... +16:38:45 Sending to : +16:38:45 ============================================================================ +16:38:45 ============================================================================ +16:38:45 Slot Id : <116> +16:38:45 Transaction Type : RESPONSE +16:38:45 Received From : +16:38:45 ============================================================================ +16:38:45 FNo. Len. Field Value +16:38:45 ============================================================================ +16:38:45 [ 1] [ 4] [0810] +16:38:45 [ 7] [ 10] [0320235033] +16:38:45 [ 11] [ 6] [165033] +16:38:45 [ 37] [ 12] [579161650330] +16:38:45 [ 39] [ 2] [00] +16:38:45 [ 70] [ 3] [810] +16:38:45 ============================================================================ +16:38:45 Calculate Source COMM Id = 6 +16:38:45 ============================================================================ +16:38:45 + + +waiting on router queue for slot.... +16:38:46 ============================================================================ +16:38:46 Slot Id : <131> +16:38:46 Transaction Type : RESPONSE +16:38:46 Received From : +16:38:46 ============================================================================ +16:38:46 FNo. Len. Field Value +16:38:46 ============================================================================ +16:38:46 [ 1] [ 4] [0210] +16:38:46 [ 2] [ 16] [6213544002162433] +16:38:46 [ 3] [ 6] [010000] +16:38:46 [ 4] [ 12] [000052000000] +16:38:46 [ 7] [ 10] [0320163633] +16:38:46 [ 11] [ 6] [952055] +16:38:46 [ 12] [ 6] [163633] +16:38:46 [ 13] [ 4] [0320] +16:38:46 [ 15] [ 4] [0320] +16:38:46 [ 18] [ 4] [6011] +16:38:46 [ 19] [ 3] [418] +16:38:46 [ 32] [ 6] [668899] +16:38:46 [ 35] [ 32] [6213544002162433=491212016243654] +16:38:46 [ 37] [ 12] [507902025609] +16:38:46 [ 38] [ 6] [109441] +16:38:46 [ 39] [ 2] [00] +16:38:46 [ 41] [ 8] [03414002] +16:38:46 [ 49] [ 3] [418] +16:38:46 [ 54] [ 40] [0001418C0000065483770002418C000006548377] +16:38:46 ============================================================================ +16:38:46 Calculate Source COMM Id = 4 +16:38:46 ============================================================================ +16:38:46 + + +waiting on router queue for slot.... +16:38:51 ============================================================================ +16:38:51 Slot Id : <138> +16:38:51 Transaction Type : REQUEST +16:38:51 Received From : +16:38:51 ============================================================================ +16:38:51 FNo. Len. Field Value +16:38:51 ============================================================================ +16:38:51 [ 1] [ 4] [0800] +16:38:51 [ 2] [ 5] [02531] +16:38:51 [ 3] [ 6] [579168] +16:38:51 [ 7] [ 10] [0320093851] +16:38:51 [ 11] [ 6] [807378] +16:38:51 [ 15] [ 10] [0320093851] +16:38:51 [ 37] [ 11] [57916807378] +16:38:51 [ 70] [ 3] [001] +16:38:51 ============================================================================ +16:38:51 + + +waiting on router queue for slot.... +16:38:51 ============================================================================ +16:38:51 Slot Id : <138> +16:38:51 Transaction Type : RESPONSE +16:38:51 Received From : +16:38:51 ============================================================================ +16:38:51 FNo. Len. Field Value +16:38:51 ============================================================================ +16:38:51 [ 1] [ 4] [0810] +16:38:51 [ 7] [ 10] [0320093851] +16:38:51 [ 11] [ 6] [807378] +16:38:51 [ 15] [ 4] [0320] +16:38:51 [ 37] [ 12] [57916807378] +16:38:51 [ 39] [ 2] [00] +16:38:51 [ 70] [ 3] [001] +16:38:51 ============================================================================ +16:38:51 Sending to : +16:38:51 ============================================================================ +16:38:51 + + +waiting on router queue for slot.... +16:38:52 ============================================================================ +16:38:52 Slot Id : <104> +16:38:52 Transaction Type : REQUEST +16:38:52 Received From : +16:38:52 ============================================================================ +16:38:52 FNo. Len. Field Value +16:38:52 ============================================================================ +16:38:52 [ 1] [ 4] [0800] +16:38:52 [ 7] [ 10] [0320093759] +16:38:52 [ 11] [ 6] [157274] +16:38:52 [ 70] [ 3] [301] +16:38:52 ============================================================================ +16:38:52 + + +waiting on router queue for slot.... +16:38:52 Sending to : +16:38:52 ============================================================================ +16:38:52 ============================================================================ +16:38:52 Slot Id : <104> +16:38:52 Transaction Type : RESPONSE +16:38:52 Received From : +16:38:52 ============================================================================ +16:38:52 FNo. Len. Field Value +16:38:52 ============================================================================ +16:38:52 [ 1] [ 4] [0810] +16:38:52 [ 7] [ 10] [0320093759] +16:38:52 [ 11] [ 6] [157274] +16:38:52 [ 39] [ 2] [00] +16:38:52 [ 70] [ 3] [301] +16:38:52 ============================================================================ +16:38:52 Calculate Source COMM Id = 2 +16:38:52 ============================================================================ +16:38:52 + + +waiting on router queue for slot.... +16:38:53 ============================================================================ +16:38:53 Slot Id : <112> +16:38:53 Transaction Type : REQUEST +16:38:53 Received From : +16:38:53 ============================================================================ +16:38:53 FNo. Len. Field Value +16:38:53 ============================================================================ +16:38:53 [ 1] [ 4] [0200] +16:38:53 [ 2] [ 16] [6688990030010936] +16:38:53 [ 3] [ 6] [300000] +16:38:53 [ 4] [ 12] [000000000000] +16:38:53 [ 7] [ 10] [0320163848] +16:38:53 [ 11] [ 6] [802263] +16:38:53 [ 12] [ 6] [163848] +16:38:53 [ 13] [ 4] [0320] +16:38:53 [ 15] [ 4] [0320] +16:38:53 [ 18] [ 4] [6011] +16:38:53 [ 22] [ 3] [900] +16:38:53 [ 25] [ 2] [02] +16:38:53 [ 28] [ 9] [D00002000] +16:38:53 [ 32] [ 6] [621354] +16:38:53 [ 35] [ 37] [6688990030010936=98021261786678600000] +16:38:53 [ 37] [ 12] [507903177592] +16:38:53 [ 41] [ 8] [04002700] +16:38:53 [ 42] [ 15] [NATIVE ] +16:38:53 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +16:38:53 [ 49] [ 3] [418] +16:38:53 [ 52] [ 16] [6E9F46C24A3F805B] +16:38:53 ============================================================================ +16:38:53 + + +waiting on router queue for slot.... +16:38:53 Sending to : +16:38:53 ============================================================================ +16:38:53 Sending to : +16:38:53 ============================================================================ +16:38:53 ============================================================================ +16:38:53 Slot Id : <112> +16:38:53 Transaction Type : REQUEST +16:38:53 Received From : +16:38:53 ============================================================================ +16:38:53 FNo. Len. Field Value +16:38:53 ============================================================================ +16:38:53 [ 1] [ 4] [0200] +16:38:53 [ 2] [ 16] [6688990030010936] +16:38:53 [ 3] [ 6] [300000] +16:38:53 [ 4] [ 12] [000000000000] +16:38:53 [ 7] [ 10] [0320163848] +16:38:53 [ 11] [ 6] [802263] +16:38:53 [ 12] [ 6] [163848] +16:38:53 [ 13] [ 4] [0320] +16:38:53 [ 15] [ 4] [0320] +16:38:53 [ 18] [ 4] [6011] +16:38:53 [ 22] [ 3] [900] +16:38:53 [ 25] [ 2] [02] +16:38:53 [ 28] [ 9] [D00002000] +16:38:53 [ 32] [ 6] [621354] +16:38:53 [ 35] [ 37] [6688990030010936=98021261786678600000] +16:38:53 [ 37] [ 12] [507903177592] +16:38:53 [ 41] [ 8] [04002700] +16:38:53 [ 42] [ 15] [NATIVE ] +16:38:53 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +16:38:53 [ 49] [ 3] [418] +16:38:53 [ 52] [ 16] [6E9F46C24A3F805B] +16:38:53 ============================================================================ +16:38:53 + + +waiting on router queue for slot.... +16:38:53 Sending to : +16:38:53 ============================================================================ +16:38:53 ============================================================================ +16:38:53 Slot Id : <112> +16:38:53 Transaction Type : REQUEST +16:38:53 Received From : +16:38:53 ============================================================================ +16:38:53 FNo. Len. Field Value +16:38:53 ============================================================================ +16:38:53 [ 1] [ 4] [0200] +16:38:53 [ 2] [ 16] [6688990030010936] +16:38:53 [ 3] [ 6] [300000] +16:38:53 [ 4] [ 12] [000000000000] +16:38:53 [ 7] [ 10] [0320163848] +16:38:53 [ 11] [ 6] [802263] +16:38:53 [ 12] [ 6] [163848] +16:38:53 [ 13] [ 4] [0320] +16:38:53 [ 15] [ 4] [0320] +16:38:53 [ 18] [ 4] [6011] +16:38:53 [ 22] [ 3] [900] +16:38:53 [ 25] [ 2] [02] +16:38:53 [ 28] [ 9] [D00002000] +16:38:53 [ 32] [ 6] [621354] +16:38:53 [ 35] [ 37] [6688990030010936=98021261786678600000] +16:38:53 [ 37] [ 12] [507903177592] +16:38:53 [ 41] [ 8] [04002700] +16:38:53 [ 42] [ 15] [NATIVE ] +16:38:53 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +16:38:53 [ 49] [ 3] [418] +16:38:53 [ 52] [ 16] [A8679BAC430736A2] +16:38:53 ============================================================================ +16:38:53 + + +waiting on router queue for slot.... +16:38:53 Sending to : <4> +16:38:53 ============================================================================ +16:38:54 ============================================================================ +16:38:54 Slot Id : <97> +16:38:54 Transaction Type : REQUEST +16:38:54 Received From : +16:38:54 ============================================================================ +16:38:54 FNo. Len. Field Value +16:38:54 ============================================================================ +16:38:54 [ 1] [ 4] [0200] +16:38:54 [ 2] [ 16] [6688990602652008] +16:38:54 [ 3] [ 6] [301000] +16:38:54 [ 4] [ 12] [000000000000] +16:38:54 [ 7] [ 10] [0320163849] +16:38:54 [ 11] [ 6] [802270] +16:38:54 [ 12] [ 6] [163849] +16:38:54 [ 13] [ 4] [0320] +16:38:54 [ 15] [ 4] [0320] +16:38:54 [ 18] [ 4] [6011] +16:38:54 [ 22] [ 3] [900] +16:38:54 [ 25] [ 2] [02] +16:38:54 [ 28] [ 9] [D00000000] +16:38:54 [ 32] [ 6] [621354] +16:38:54 [ 35] [ 37] [6688990602652008=43100061200842200000] +16:38:54 [ 37] [ 12] [507902606275] +16:38:54 [ 41] [ 8] [05004300] +16:38:54 [ 42] [ 15] [NATIVE ] +16:38:54 [ 43] [ 40] [Ka deng office LuangprabangLAO] +16:38:54 [ 49] [ 3] [418] +16:38:54 [ 52] [ 16] [CB05F811C789F443] +16:38:54 ============================================================================ +16:38:54 + + +waiting on router queue for slot.... +16:38:54 Sending to : +16:38:54 ============================================================================ +16:38:54 Sending to : +16:38:54 ============================================================================ +16:38:54 ============================================================================ +16:38:54 Slot Id : <97> +16:38:54 Transaction Type : REQUEST +16:38:54 Received From : +16:38:54 ============================================================================ +16:38:54 FNo. Len. Field Value +16:38:54 ============================================================================ +16:38:54 [ 1] [ 4] [0200] +16:38:54 [ 2] [ 16] [6688990602652008] +16:38:54 [ 3] [ 6] [301000] +16:38:54 [ 4] [ 12] [000000000000] +16:38:54 [ 7] [ 10] [0320163849] +16:38:54 [ 11] [ 6] [802270] +16:38:54 [ 12] [ 6] [163849] +16:38:54 [ 13] [ 4] [0320] +16:38:54 [ 15] [ 4] [0320] +16:38:54 [ 18] [ 4] [6011] +16:38:54 [ 22] [ 3] [900] +16:38:54 [ 25] [ 2] [02] +16:38:54 [ 28] [ 9] [D00000000] +16:38:54 [ 32] [ 6] [621354] +16:38:54 [ 35] [ 37] [6688990602652008=43100061200842200000] +16:38:54 [ 37] [ 12] [507902606275] +16:38:54 [ 41] [ 8] [05004300] +16:38:54 [ 42] [ 15] [NATIVE ] +16:38:54 [ 43] [ 40] [Ka deng office LuangprabangLAO] +16:38:54 [ 49] [ 3] [418] +16:38:54 [ 52] [ 16] [CB05F811C789F443] +16:38:54 ============================================================================ +16:38:54 + + +waiting on router queue for slot.... +16:38:54 Sending to : +16:38:54 ============================================================================ +16:38:54 ============================================================================ +16:38:54 Slot Id : <112> +16:38:54 Transaction Type : RESPONSE +16:38:54 Received From : +16:38:54 ============================================================================ +16:38:54 FNo. Len. Field Value +16:38:54 ============================================================================ +16:38:54 [ 1] [ 4] [0210] +16:38:54 [ 2] [ 16] [6688990030010936] +16:38:54 [ 3] [ 6] [300000] +16:38:54 [ 4] [ 12] [000000000000] +16:38:54 [ 11] [ 6] [802263] +16:38:54 [ 12] [ 6] [163848] +16:38:54 [ 15] [ 4] [0320] +16:38:54 [ 18] [ 4] [6011] +16:38:54 [ 32] [ 6] [621354] +16:38:54 [ 35] [ 37] [6688990030010936=98021261786678600000] +16:38:54 [ 37] [ 12] [507903177592] +16:38:54 [ 38] [ 6] [761634] +16:38:54 [ 39] [ 2] [00] +16:38:54 [ 41] [ 8] [04002700] +16:38:54 [ 49] [ 3] [418] +16:38:54 [ 54] [ 20] [0002418C000042829460] +16:38:54 ============================================================================ +16:38:54 Sending to : +16:38:54 ============================================================================ +16:38:54 + + +waiting on router queue for slot.... +16:38:54 ============================================================================ +16:38:54 Slot Id : <97> +16:38:54 Transaction Type : REQUEST +16:38:54 Received From : +16:38:54 ============================================================================ +16:38:54 FNo. Len. Field Value +16:38:54 ============================================================================ +16:38:54 [ 1] [ 4] [0200] +16:38:54 [ 2] [ 16] [6688990602652008] +16:38:54 [ 3] [ 6] [301000] +16:38:54 [ 4] [ 12] [000000000000] +16:38:54 [ 7] [ 10] [0320163849] +16:38:54 [ 11] [ 6] [802270] +16:38:54 [ 12] [ 6] [163849] +16:38:54 [ 13] [ 4] [0320] +16:38:54 [ 15] [ 4] [0320] +16:38:54 [ 18] [ 4] [6011] +16:38:54 [ 22] [ 3] [900] +16:38:54 [ 25] [ 2] [02] +16:38:54 [ 28] [ 9] [D00000000] +16:38:54 [ 32] [ 6] [621354] +16:38:54 [ 35] [ 37] [6688990602652008=43100061200842200000] +16:38:54 [ 37] [ 12] [507902606275] +16:38:54 [ 41] [ 8] [05004300] +16:38:54 [ 42] [ 15] [NATIVE ] +16:38:54 [ 43] [ 40] [Ka deng office LuangprabangLAO] +16:38:54 [ 49] [ 3] [418] +16:38:54 [ 52] [ 16] [8B5A0CCD12020D53] +16:38:54 ============================================================================ +16:38:54 + + +waiting on router queue for slot.... +16:38:54 Sending to : <4> +16:38:54 ============================================================================ +16:38:55 ============================================================================ +16:38:55 Slot Id : <97> +16:38:55 Transaction Type : RESPONSE +16:38:55 Received From : +16:38:55 ============================================================================ +16:38:55 FNo. Len. Field Value +16:38:55 ============================================================================ +16:38:55 [ 1] [ 4] [0210] +16:38:55 [ 2] [ 16] [6688990602652008] +16:38:55 [ 3] [ 6] [301000] +16:38:55 [ 4] [ 12] [000000000000] +16:38:55 [ 11] [ 6] [802270] +16:38:55 [ 12] [ 6] [163849] +16:38:55 [ 15] [ 4] [0320] +16:38:55 [ 18] [ 4] [6011] +16:38:55 [ 32] [ 6] [621354] +16:38:55 [ 35] [ 37] [6688990602652008=43100061200842200000] +16:38:55 [ 37] [ 12] [507902606275] +16:38:55 [ 38] [ 6] [568888] +16:38:55 [ 39] [ 2] [00] +16:38:55 [ 41] [ 8] [05004300] +16:38:55 [ 49] [ 3] [418] +16:38:55 [ 54] [ 20] [1002418C000033229383] +16:38:55 ============================================================================ +16:38:55 Sending to : +16:38:55 ============================================================================ +16:38:55 + + +waiting on router queue for slot.... +16:38:56 ============================================================================ +16:38:56 Slot Id : <112> +16:38:56 Transaction Type : RESPONSE +16:38:56 Received From : +16:38:56 ============================================================================ +16:38:56 FNo. Len. Field Value +16:38:56 ============================================================================ +16:38:56 [ 1] [ 4] [0210] +16:38:56 [ 2] [ 16] [6688990030010936] +16:38:56 [ 3] [ 6] [300000] +16:38:56 [ 4] [ 12] [000000000000] +16:38:56 [ 11] [ 6] [802263] +16:38:56 [ 12] [ 6] [163848] +16:38:56 [ 15] [ 4] [0320] +16:38:56 [ 18] [ 4] [6011] +16:38:56 [ 32] [ 6] [621354] +16:38:56 [ 35] [ 37] [6688990030010936=98021261786678600000] +16:38:56 [ 37] [ 12] [507903177592] +16:38:56 [ 38] [ 6] [761634] +16:38:56 [ 39] [ 2] [00] +16:38:56 [ 41] [ 8] [04002700] +16:38:56 [ 49] [ 3] [418] +16:38:56 [ 54] [ 20] [0002418C000042829460] +16:38:56 ============================================================================ +16:38:56 Calculate Source COMM Id = 0 +16:38:56 ============================================================================ +16:38:56 + + +waiting on router queue for slot.... +16:38:57 ============================================================================ +16:38:57 Slot Id : <97> +16:38:57 Transaction Type : RESPONSE +16:38:57 Received From : +16:38:57 ============================================================================ +16:38:57 FNo. Len. Field Value +16:38:57 ============================================================================ +16:38:57 [ 1] [ 4] [0210] +16:38:57 [ 2] [ 16] [6688990602652008] +16:38:57 [ 3] [ 6] [301000] +16:38:57 [ 4] [ 12] [000000000000] +16:38:57 [ 11] [ 6] [802270] +16:38:57 [ 12] [ 6] [163849] +16:38:57 [ 15] [ 4] [0320] +16:38:57 [ 18] [ 4] [6011] +16:38:57 [ 32] [ 6] [621354] +16:38:57 [ 35] [ 37] [6688990602652008=43100061200842200000] +16:38:57 [ 37] [ 12] [507902606275] +16:38:57 [ 38] [ 6] [568888] +16:38:57 [ 39] [ 2] [00] +16:38:57 [ 41] [ 8] [05004300] +16:38:57 [ 49] [ 3] [418] +16:38:57 [ 54] [ 20] [1002418C000033229383] +16:38:57 ============================================================================ +16:38:57 Calculate Source COMM Id = 0 +16:38:57 ============================================================================ +16:38:57 + + +waiting on router queue for slot.... +16:39:01 ============================================================================ +16:39:01 Slot Id : <140> +16:39:01 Transaction Type : REQUEST +16:39:01 Received From : +16:39:01 ============================================================================ +16:39:01 FNo. Len. Field Value +16:39:01 ============================================================================ +16:39:01 [ 1] [ 4] [0200] +16:39:01 [ 2] [ 16] [1999990000002975] +16:39:01 [ 3] [ 6] [010000] +16:39:01 [ 4] [ 12] [000030000000] +16:39:01 [ 7] [ 10] [0320163651] +16:39:01 [ 11] [ 6] [952061] +16:39:01 [ 12] [ 6] [163651] +16:39:01 [ 13] [ 4] [0320] +16:39:01 [ 15] [ 4] [0320] +16:39:01 [ 18] [ 4] [6011] +16:39:01 [ 19] [ 3] [418] +16:39:01 [ 22] [ 3] [021] +16:39:01 [ 25] [ 2] [01] +16:39:01 [ 28] [ 9] [D00002000] +16:39:01 [ 32] [ 6] [668899] +16:39:01 [ 35] [ 32] [1999990000002975=000010100000482] +16:39:01 [ 37] [ 12] [507902623505] +16:39:01 [ 41] [ 8] [03003006] +16:39:01 [ 42] [ 15] [APT ] +16:39:01 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:39:01 [ 49] [ 3] [418] +16:39:01 [ 52] [ 16] [DB87D16B103AF7E7] +16:39:01 ============================================================================ +16:39:01 + + +waiting on router queue for slot.... +16:39:01 Sending to : +16:39:01 ============================================================================ +16:39:01 Sending to : +16:39:01 ============================================================================ +16:39:02 ============================================================================ +16:39:02 Slot Id : <140> +16:39:02 Transaction Type : REQUEST +16:39:02 Received From : +16:39:02 ============================================================================ +16:39:02 FNo. Len. Field Value +16:39:02 ============================================================================ +16:39:02 [ 1] [ 4] [0200] +16:39:02 [ 2] [ 16] [1999990000002975] +16:39:02 [ 3] [ 6] [010000] +16:39:02 [ 4] [ 12] [000030000000] +16:39:02 [ 7] [ 10] [0320163651] +16:39:02 [ 11] [ 6] [952061] +16:39:02 [ 12] [ 6] [163651] +16:39:02 [ 13] [ 4] [0320] +16:39:02 [ 15] [ 4] [0320] +16:39:02 [ 18] [ 4] [6011] +16:39:02 [ 19] [ 3] [418] +16:39:02 [ 22] [ 3] [021] +16:39:02 [ 25] [ 2] [01] +16:39:02 [ 28] [ 9] [D00002000] +16:39:02 [ 32] [ 6] [668899] +16:39:02 [ 35] [ 32] [1999990000002975=000010100000482] +16:39:02 [ 37] [ 12] [507902623505] +16:39:02 [ 41] [ 8] [03003006] +16:39:02 [ 42] [ 15] [APT ] +16:39:02 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:39:02 [ 49] [ 3] [418] +16:39:02 [ 52] [ 16] [DB87D16B103AF7E7] +16:39:02 ============================================================================ +16:39:02 + + +waiting on router queue for slot.... +16:39:02 Sending to : +16:39:02 ============================================================================ +16:39:02 ============================================================================ +16:39:02 Slot Id : <140> +16:39:02 Transaction Type : REQUEST +16:39:02 Received From : +16:39:02 ============================================================================ +16:39:02 FNo. Len. Field Value +16:39:02 ============================================================================ +16:39:02 [ 1] [ 4] [0200] +16:39:02 [ 2] [ 16] [1999990000002975] +16:39:02 [ 3] [ 6] [010000] +16:39:02 [ 4] [ 12] [000030000000] +16:39:02 [ 7] [ 10] [0320163651] +16:39:02 [ 11] [ 6] [952061] +16:39:02 [ 12] [ 6] [163651] +16:39:02 [ 13] [ 4] [0320] +16:39:02 [ 15] [ 4] [0320] +16:39:02 [ 18] [ 4] [6011] +16:39:02 [ 19] [ 3] [418] +16:39:02 [ 22] [ 3] [021] +16:39:02 [ 25] [ 2] [01] +16:39:02 [ 28] [ 9] [D00002000] +16:39:02 [ 32] [ 6] [668899] +16:39:02 [ 35] [ 32] [1999990000002975=000010100000482] +16:39:02 [ 37] [ 12] [507902623505] +16:39:02 [ 41] [ 8] [03003006] +16:39:02 [ 42] [ 15] [APT ] +16:39:02 [ 43] [ 40] [ BUS STATION LUANGNAMTHBUS] +16:39:02 [ 49] [ 3] [418] +16:39:02 [ 52] [ 16] [69468AA2F3682BBE] +16:39:02 ============================================================================ +16:39:02 + + +waiting on router queue for slot.... +16:39:02 Sending to : <5> +16:39:02 ============================================================================ +16:39:03 ============================================================================ +16:39:03 Slot Id : <111> +16:39:03 Transaction Type : REQUEST +16:39:03 Received From : +16:39:03 ============================================================================ +16:39:03 FNo. Len. Field Value +16:39:03 ============================================================================ +16:39:03 [ 1] [ 4] [0800] +16:39:03 [ 7] [ 10] [0320093809] +16:39:03 [ 11] [ 6] [157275] +16:39:03 [ 70] [ 3] [301] +16:39:03 ============================================================================ +16:39:03 + + +waiting on router queue for slot.... +16:39:03 Sending to : +16:39:03 ============================================================================ +16:39:03 ============================================================================ +16:39:03 Slot Id : <111> +16:39:03 Transaction Type : RESPONSE +16:39:03 Received From : +16:39:03 ============================================================================ +16:39:03 FNo. Len. Field Value +16:39:03 ============================================================================ +16:39:03 [ 1] [ 4] [0810] +16:39:03 [ 7] [ 10] [0320093809] +16:39:03 [ 11] [ 6] [157275] +16:39:03 [ 39] [ 2] [00] +16:39:03 [ 70] [ 3] [301] +16:39:03 ============================================================================ +16:39:03 Calculate Source COMM Id = 2 +16:39:03 ============================================================================ +16:39:03 + + +waiting on router queue for slot.... +16:39:05 ============================================================================ +16:39:05 Slot Id : <140> +16:39:05 Transaction Type : RESPONSE +16:39:05 Received From : +16:39:05 ============================================================================ +16:39:05 FNo. Len. Field Value +16:39:05 ============================================================================ +16:39:05 [ 1] [ 4] [0210] +16:39:05 [ 2] [ 16] [1999990000002975] +16:39:05 [ 3] [ 6] [010000] +16:39:05 [ 4] [ 12] [000030000000] +16:39:05 [ 7] [ 10] [0320163651] +16:39:05 [ 11] [ 6] [952061] +16:39:05 [ 12] [ 6] [163651] +16:39:05 [ 13] [ 4] [0320] +16:39:05 [ 15] [ 4] [0320] +16:39:05 [ 18] [ 4] [6011] +16:39:05 [ 19] [ 3] [418] +16:39:05 [ 32] [ 6] [668899] +16:39:05 [ 37] [ 12] [507902623505] +16:39:05 [ 38] [ 6] [579463] +16:39:05 [ 39] [ 2] [00] +16:39:05 [ 41] [ 8] [03003006] +16:39:05 [ 49] [ 3] [418] +16:39:05 [ 54] [ 0] [] +16:39:05 ============================================================================ +16:39:05 Sending to : +16:39:05 ============================================================================ +16:39:05 + + +waiting on router queue for slot.... +16:39:06 ============================================================================ +16:39:06 Slot Id : <140> +16:39:06 Transaction Type : RESPONSE +16:39:06 Received From : +16:39:06 ============================================================================ +16:39:06 FNo. Len. Field Value +16:39:06 ============================================================================ +16:39:06 [ 1] [ 4] [0210] +16:39:06 [ 2] [ 16] [1999990000002975] +16:39:06 [ 3] [ 6] [010000] +16:39:06 [ 4] [ 12] [000030000000] +16:39:06 [ 7] [ 10] [0320163651] +16:39:06 [ 11] [ 6] [952061] +16:39:06 [ 12] [ 6] [163651] +16:39:06 [ 13] [ 4] [0320] +16:39:06 [ 15] [ 4] [0320] +16:39:06 [ 18] [ 4] [6011] +16:39:06 [ 19] [ 3] [418] +16:39:06 [ 32] [ 6] [668899] +16:39:06 [ 37] [ 12] [507902623505] +16:39:06 [ 38] [ 6] [579463] +16:39:06 [ 39] [ 2] [00] +16:39:06 [ 41] [ 8] [03003006] +16:39:06 [ 49] [ 3] [418] +16:39:06 [ 54] [ 0] [] +16:39:06 ============================================================================ +16:39:06 Calculate Source COMM Id = 4 +16:39:06 ============================================================================ +16:39:06 + + +waiting on router queue for slot.... +16:39:18 ============================================================================ +16:39:18 Slot Id : <124> +16:39:18 Transaction Type : REQUEST +16:39:18 Received From : +16:39:18 ============================================================================ +16:39:18 FNo. Len. Field Value +16:39:18 ============================================================================ +16:39:18 [ 1] [ 4] [0800] +16:39:18 [ 7] [ 10] [0320093824] +16:39:18 [ 11] [ 6] [157276] +16:39:18 [ 70] [ 3] [301] +16:39:18 ============================================================================ +16:39:18 + + +waiting on router queue for slot.... +16:39:18 Sending to : +16:39:18 ============================================================================ +16:39:18 ============================================================================ +16:39:18 Slot Id : <124> +16:39:18 Transaction Type : RESPONSE +16:39:18 Received From : +16:39:18 ============================================================================ +16:39:18 FNo. Len. Field Value +16:39:18 ============================================================================ +16:39:18 [ 1] [ 4] [0810] +16:39:18 [ 7] [ 10] [0320093824] +16:39:18 [ 11] [ 6] [157276] +16:39:18 [ 39] [ 2] [00] +16:39:18 [ 70] [ 3] [301] +16:39:18 ============================================================================ +16:39:18 Calculate Source COMM Id = 2 +16:39:18 ============================================================================ +16:39:18 + + +waiting on router queue for slot.... +16:39:19 ============================================================================ +16:39:19 Slot Id : <117> +16:39:19 Transaction Type : REQUEST +16:39:19 Received From : +16:39:19 ============================================================================ +16:39:19 FNo. Len. Field Value +16:39:19 ============================================================================ +16:39:19 [ 1] [ 4] [0200] +16:39:19 [ 2] [ 16] [6688990103639900] +16:39:19 [ 3] [ 6] [010000] +16:39:19 [ 4] [ 12] [000100000000] +16:39:19 [ 7] [ 10] [0320163914] +16:39:19 [ 11] [ 6] [802378] +16:39:19 [ 12] [ 6] [163914] +16:39:19 [ 13] [ 4] [0320] +16:39:19 [ 15] [ 4] [0320] +16:39:19 [ 18] [ 4] [6011] +16:39:19 [ 22] [ 3] [900] +16:39:19 [ 25] [ 2] [02] +16:39:19 [ 28] [ 9] [D00002000] +16:39:19 [ 32] [ 6] [621354] +16:39:19 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:39:19 [ 37] [ 12] [507903499612] +16:39:19 [ 41] [ 8] [06002200] +16:39:19 [ 42] [ 15] [NATIVE ] +16:39:19 [ 43] [ 40] [Beng Market Beng LAO] +16:39:19 [ 49] [ 3] [418] +16:39:19 [ 52] [ 16] [48D2EEB63F10A8A0] +16:39:19 ============================================================================ +16:39:19 + + +waiting on router queue for slot.... +16:39:19 Sending to : +16:39:19 ============================================================================ +16:39:19 Sending to : +16:39:19 ============================================================================ +16:39:19 ============================================================================ +16:39:19 Slot Id : <123> +16:39:19 Transaction Type : REQUEST +16:39:19 Received From : +16:39:19 ============================================================================ +16:39:19 FNo. Len. Field Value +16:39:19 ============================================================================ +16:39:19 [ 1] [ 4] [0200] +16:39:19 [ 2] [ 16] [1808931400007850] +16:39:19 [ 3] [ 6] [300000] +16:39:19 [ 4] [ 12] [000000000000] +16:39:19 [ 7] [ 10] [0320163914] +16:39:19 [ 11] [ 6] [802380] +16:39:19 [ 12] [ 6] [163914] +16:39:19 [ 13] [ 4] [0320] +16:39:19 [ 15] [ 4] [0320] +16:39:19 [ 18] [ 4] [6011] +16:39:19 [ 22] [ 3] [900] +16:39:19 [ 25] [ 2] [02] +16:39:19 [ 28] [ 9] [D00000000] +16:39:19 [ 32] [ 6] [621354] +16:39:19 [ 35] [ 27] [1808931400007850=1803500731] +16:39:19 [ 37] [ 12] [507904719797] +16:39:19 [ 41] [ 8] [18001000] +16:39:19 [ 42] [ 15] [NATIVE ] +16:39:19 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:39:19 [ 49] [ 3] [418] +16:39:19 [ 52] [ 16] [1B46B0978C06F21B] +16:39:19 ============================================================================ +16:39:19 + + +waiting on router queue for slot.... +16:39:19 Sending to : +16:39:19 ============================================================================ +16:39:19 Sending to : +16:39:19 ============================================================================ +16:39:19 ============================================================================ +16:39:19 Slot Id : <117> +16:39:19 Transaction Type : REQUEST +16:39:19 Received From : +16:39:19 ============================================================================ +16:39:19 FNo. Len. Field Value +16:39:19 ============================================================================ +16:39:19 [ 1] [ 4] [0200] +16:39:19 [ 2] [ 16] [6688990103639900] +16:39:19 [ 3] [ 6] [010000] +16:39:19 [ 4] [ 12] [000100000000] +16:39:19 [ 7] [ 10] [0320163914] +16:39:19 [ 11] [ 6] [802378] +16:39:19 [ 12] [ 6] [163914] +16:39:19 [ 13] [ 4] [0320] +16:39:19 [ 15] [ 4] [0320] +16:39:19 [ 18] [ 4] [6011] +16:39:19 [ 22] [ 3] [900] +16:39:19 [ 25] [ 2] [02] +16:39:19 [ 28] [ 9] [D00002000] +16:39:19 [ 32] [ 6] [621354] +16:39:19 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:39:19 [ 37] [ 12] [507903499612] +16:39:19 [ 41] [ 8] [06002200] +16:39:19 [ 42] [ 15] [NATIVE ] +16:39:19 [ 43] [ 40] [Beng Market Beng LAO] +16:39:19 [ 49] [ 3] [418] +16:39:19 [ 52] [ 16] [48D2EEB63F10A8A0] +16:39:19 ============================================================================ +16:39:19 + + +waiting on router queue for slot.... +16:39:19 Sending to : +16:39:19 ============================================================================ +16:39:19 ============================================================================ +16:39:19 Slot Id : <117> +16:39:19 Transaction Type : REQUEST +16:39:19 Received From : +16:39:19 ============================================================================ +16:39:19 FNo. Len. Field Value +16:39:19 ============================================================================ +16:39:19 [ 1] [ 4] [0200] +16:39:19 [ 2] [ 16] [6688990103639900] +16:39:19 [ 3] [ 6] [010000] +16:39:19 [ 4] [ 12] [000100000000] +16:39:19 [ 7] [ 10] [0320163914] +16:39:19 [ 11] [ 6] [802378] +16:39:19 [ 12] [ 6] [163914] +16:39:19 [ 13] [ 4] [0320] +16:39:19 [ 15] [ 4] [0320] +16:39:19 [ 18] [ 4] [6011] +16:39:19 [ 22] [ 3] [900] +16:39:19 [ 25] [ 2] [02] +16:39:19 [ 28] [ 9] [D00002000] +16:39:19 [ 32] [ 6] [621354] +16:39:19 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:39:19 [ 37] [ 12] [507903499612] +16:39:19 [ 41] [ 8] [06002200] +16:39:19 [ 42] [ 15] [NATIVE ] +16:39:19 [ 43] [ 40] [Beng Market Beng LAO] +16:39:19 [ 49] [ 3] [418] +16:39:19 [ 52] [ 16] [E50625F8037D9A71] +16:39:19 ============================================================================ +16:39:19 + + +waiting on router queue for slot.... +16:39:19 Sending to : <4> +16:39:19 ============================================================================ +16:39:19 ============================================================================ +16:39:19 Slot Id : <123> +16:39:19 Transaction Type : REQUEST +16:39:19 Received From : +16:39:19 ============================================================================ +16:39:19 FNo. Len. Field Value +16:39:19 ============================================================================ +16:39:19 [ 1] [ 4] [0200] +16:39:19 [ 2] [ 16] [1808931400007850] +16:39:19 [ 3] [ 6] [300000] +16:39:19 [ 4] [ 12] [000000000000] +16:39:19 [ 7] [ 10] [0320163914] +16:39:19 [ 11] [ 6] [802380] +16:39:19 [ 12] [ 6] [163914] +16:39:19 [ 13] [ 4] [0320] +16:39:19 [ 15] [ 4] [0320] +16:39:19 [ 18] [ 4] [6011] +16:39:19 [ 22] [ 3] [900] +16:39:19 [ 25] [ 2] [02] +16:39:19 [ 28] [ 9] [D00000000] +16:39:19 [ 32] [ 6] [621354] +16:39:19 [ 35] [ 27] [1808931400007850=1803500731] +16:39:19 [ 37] [ 12] [507904719797] +16:39:19 [ 41] [ 8] [18001000] +16:39:19 [ 42] [ 15] [NATIVE ] +16:39:19 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:39:19 [ 49] [ 3] [418] +16:39:19 [ 52] [ 16] [1B46B0978C06F21B] +16:39:19 ============================================================================ +16:39:19 + + +waiting on router queue for slot.... +16:39:19 Sending to : +16:39:19 ============================================================================ +16:39:19 ============================================================================ +16:39:19 Slot Id : <123> +16:39:19 Transaction Type : REQUEST +16:39:19 Received From : +16:39:19 ============================================================================ +16:39:19 FNo. Len. Field Value +16:39:19 ============================================================================ +16:39:19 [ 1] [ 4] [0200] +16:39:19 [ 2] [ 16] [1808931400007850] +16:39:19 [ 3] [ 6] [300000] +16:39:19 [ 4] [ 12] [000000000000] +16:39:19 [ 7] [ 10] [0320163914] +16:39:19 [ 11] [ 6] [802380] +16:39:19 [ 12] [ 6] [163914] +16:39:19 [ 13] [ 4] [0320] +16:39:19 [ 15] [ 4] [0320] +16:39:19 [ 18] [ 4] [6011] +16:39:19 [ 22] [ 3] [900] +16:39:19 [ 25] [ 2] [02] +16:39:19 [ 28] [ 9] [D00000000] +16:39:19 [ 32] [ 6] [621354] +16:39:19 [ 35] [ 27] [1808931400007850=1803500731] +16:39:19 [ 37] [ 12] [507904719797] +16:39:19 [ 41] [ 8] [18001000] +16:39:19 [ 42] [ 15] [NATIVE ] +16:39:19 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:39:19 [ 49] [ 3] [418] +16:39:19 [ 52] [ 16] [FAFCBCCF0E789021] +16:39:19 ============================================================================ +16:39:19 + + +waiting on router queue for slot.... +16:39:19 Sending to : <2> +16:39:19 ============================================================================ +16:39:20 ============================================================================ +16:39:20 Slot Id : <123> +16:39:20 Transaction Type : RESPONSE +16:39:20 Received From : +16:39:20 ============================================================================ +16:39:20 FNo. Len. Field Value +16:39:20 ============================================================================ +16:39:20 [ 1] [ 4] [0210] +16:39:20 [ 2] [ 16] [1808931400007850] +16:39:20 [ 3] [ 6] [300000] +16:39:20 [ 7] [ 10] [0320163914] +16:39:20 [ 11] [ 6] [802380] +16:39:20 [ 12] [ 6] [163914] +16:39:20 [ 13] [ 4] [0320] +16:39:20 [ 14] [ 4] [1803] +16:39:20 [ 19] [ 3] [418] +16:39:20 [ 32] [ 6] [621354] +16:39:20 [ 37] [ 12] [507904719797] +16:39:20 [ 38] [ 6] [802380] +16:39:20 [ 39] [ 2] [00] +16:39:20 [ 41] [ 8] [18001000] +16:39:20 [ 49] [ 3] [418] +16:39:20 [ 52] [ 16] [FAFCBCCF0E789021] +16:39:20 [ 54] [ 20] [0002418C000003221400] +16:39:20 ============================================================================ +16:39:20 Sending to : +16:39:20 ============================================================================ +16:39:20 + + +waiting on router queue for slot.... +16:39:20 ============================================================================ +16:39:20 Slot Id : <117> +16:39:20 Transaction Type : RESPONSE +16:39:20 Received From : +16:39:20 ============================================================================ +16:39:20 FNo. Len. Field Value +16:39:20 ============================================================================ +16:39:20 [ 1] [ 4] [0210] +16:39:20 [ 2] [ 16] [6688990103639900] +16:39:20 [ 3] [ 6] [010000] +16:39:20 [ 4] [ 12] [000100000000] +16:39:20 [ 11] [ 6] [802378] +16:39:20 [ 12] [ 6] [163914] +16:39:20 [ 15] [ 4] [0320] +16:39:20 [ 18] [ 4] [6011] +16:39:20 [ 32] [ 6] [621354] +16:39:20 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:39:20 [ 37] [ 12] [507903499612] +16:39:20 [ 38] [ 6] [557038] +16:39:20 [ 39] [ 2] [00] +16:39:20 [ 41] [ 8] [06002200] +16:39:20 [ 49] [ 3] [418] +16:39:20 [ 54] [ 20] [0002418C000124106194] +16:39:20 ============================================================================ +16:39:20 Sending to : +16:39:20 ============================================================================ +16:39:20 + + +waiting on router queue for slot.... +16:39:21 ============================================================================ +16:39:21 Slot Id : <80> +16:39:21 Transaction Type : REQUEST +16:39:21 Received From : +16:39:21 ============================================================================ +16:39:21 FNo. Len. Field Value +16:39:21 ============================================================================ +16:39:21 [ 1] [ 4] [0200] +16:39:21 [ 2] [ 16] [6688990030010944] +16:39:21 [ 3] [ 6] [010000] +16:39:21 [ 4] [ 12] [000100000000] +16:39:21 [ 7] [ 10] [0320093828] +16:39:21 [ 11] [ 6] [270560] +16:39:21 [ 12] [ 6] [163828] +16:39:21 [ 13] [ 4] [0320] +16:39:21 [ 14] [ 4] [9802] +16:39:21 [ 15] [ 4] [0320] +16:39:21 [ 18] [ 4] [6011] +16:39:21 [ 19] [ 3] [418] +16:39:21 [ 22] [ 3] [021] +16:39:21 [ 25] [ 2] [01] +16:39:21 [ 28] [ 9] [D00002000] +16:39:21 [ 32] [ 6] [180893] +16:39:21 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:39:21 [ 37] [ 12] [507909270560] +16:39:21 [ 41] [ 8] [0523XYNG] +16:39:21 [ 42] [ 15] [999999 ] +16:39:21 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +16:39:21 [ 49] [ 3] [418] +16:39:21 [ 52] [ 16] [55D1A6FC2545A0D7] +16:39:21 ============================================================================ +16:39:21 + + +waiting on router queue for slot.... +16:39:21 Sending to : +16:39:21 ============================================================================ +16:39:21 Sending to : +16:39:21 ============================================================================ +16:39:21 ============================================================================ +16:39:21 Slot Id : <80> +16:39:21 Transaction Type : REQUEST +16:39:21 Received From : +16:39:21 ============================================================================ +16:39:21 FNo. Len. Field Value +16:39:21 ============================================================================ +16:39:21 [ 1] [ 4] [0200] +16:39:21 [ 2] [ 16] [6688990030010944] +16:39:21 [ 3] [ 6] [010000] +16:39:21 [ 4] [ 12] [000100000000] +16:39:21 [ 7] [ 10] [0320093828] +16:39:21 [ 11] [ 6] [270560] +16:39:21 [ 12] [ 6] [163828] +16:39:21 [ 13] [ 4] [0320] +16:39:21 [ 14] [ 4] [9802] +16:39:21 [ 15] [ 4] [0320] +16:39:21 [ 18] [ 4] [6011] +16:39:21 [ 19] [ 3] [418] +16:39:21 [ 22] [ 3] [021] +16:39:21 [ 25] [ 2] [01] +16:39:21 [ 28] [ 9] [D00002000] +16:39:21 [ 32] [ 6] [180893] +16:39:21 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:39:21 [ 37] [ 12] [507909270560] +16:39:21 [ 41] [ 8] [0523XYNG] +16:39:21 [ 42] [ 15] [999999 ] +16:39:21 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +16:39:21 [ 49] [ 3] [418] +16:39:21 [ 52] [ 16] [55D1A6FC2545A0D7] +16:39:21 ============================================================================ +16:39:21 + + +waiting on router queue for slot.... +16:39:21 Sending to : +16:39:21 ============================================================================ +16:39:21 ============================================================================ +16:39:21 Slot Id : <80> +16:39:21 Transaction Type : REQUEST +16:39:21 Received From : +16:39:21 ============================================================================ +16:39:21 FNo. Len. Field Value +16:39:21 ============================================================================ +16:39:21 [ 1] [ 4] [0200] +16:39:21 [ 2] [ 16] [6688990030010944] +16:39:21 [ 3] [ 6] [010000] +16:39:21 [ 4] [ 12] [000100000000] +16:39:21 [ 7] [ 10] [0320093828] +16:39:21 [ 11] [ 6] [270560] +16:39:21 [ 12] [ 6] [163828] +16:39:21 [ 13] [ 4] [0320] +16:39:21 [ 14] [ 4] [9802] +16:39:21 [ 15] [ 4] [0320] +16:39:21 [ 18] [ 4] [6011] +16:39:21 [ 19] [ 3] [418] +16:39:21 [ 22] [ 3] [021] +16:39:21 [ 25] [ 2] [01] +16:39:21 [ 28] [ 9] [D00002000] +16:39:21 [ 32] [ 6] [180893] +16:39:21 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:39:21 [ 37] [ 12] [507909270560] +16:39:21 [ 41] [ 8] [0523XYNG] +16:39:21 [ 42] [ 15] [999999 ] +16:39:21 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +16:39:21 [ 49] [ 3] [418] +16:39:21 [ 52] [ 16] [9067361A00457C31] +16:39:21 ============================================================================ +16:39:21 + + +waiting on router queue for slot.... +16:39:21 Sending to : <0> +16:39:21 ============================================================================ +16:39:21 ============================================================================ +16:39:21 Slot Id : <80> +16:39:21 Transaction Type : RESPONSE +16:39:21 Received From : +16:39:21 ============================================================================ +16:39:21 FNo. Len. Field Value +16:39:21 ============================================================================ +16:39:21 [ 1] [ 4] [0210] +16:39:21 [ 2] [ 16] [6688990030010944] +16:39:21 [ 3] [ 6] [010000] +16:39:21 [ 4] [ 12] [000100000000] +16:39:21 [ 7] [ 10] [0320093828] +16:39:21 [ 11] [ 6] [270560] +16:39:21 [ 12] [ 6] [163828] +16:39:21 [ 13] [ 4] [0320] +16:39:21 [ 15] [ 4] [0320] +16:39:21 [ 18] [ 4] [6011] +16:39:21 [ 19] [ 3] [418] +16:39:21 [ 22] [ 3] [021] +16:39:21 [ 32] [ 6] [180893] +16:39:21 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:39:21 [ 37] [ 12] [507909270560] +16:39:21 [ 39] [ 2] [14] +16:39:21 [ 41] [ 8] [0523XYNG] +16:39:21 [ 49] [ 3] [418] +16:39:21 ============================================================================ +16:39:21 Sending to : +16:39:21 ============================================================================ +16:39:21 + + +waiting on router queue for slot.... +16:39:22 ============================================================================ +16:39:22 Slot Id : <123> +16:39:22 Transaction Type : RESPONSE +16:39:22 Received From : +16:39:22 ============================================================================ +16:39:22 FNo. Len. Field Value +16:39:22 ============================================================================ +16:39:22 [ 1] [ 4] [0210] +16:39:22 [ 2] [ 16] [1808931400007850] +16:39:22 [ 3] [ 6] [300000] +16:39:22 [ 7] [ 10] [0320163914] +16:39:22 [ 11] [ 6] [802380] +16:39:22 [ 12] [ 6] [163914] +16:39:22 [ 13] [ 4] [0320] +16:39:22 [ 14] [ 4] [1803] +16:39:22 [ 19] [ 3] [418] +16:39:22 [ 32] [ 6] [621354] +16:39:22 [ 37] [ 12] [507904719797] +16:39:22 [ 38] [ 6] [802380] +16:39:22 [ 39] [ 2] [00] +16:39:22 [ 41] [ 8] [18001000] +16:39:22 [ 49] [ 3] [418] +16:39:22 [ 52] [ 16] [FAFCBCCF0E789021] +16:39:22 [ 54] [ 20] [0002418C000003221400] +16:39:22 ============================================================================ +16:39:22 Calculate Source COMM Id = 0 +16:39:22 ============================================================================ +16:39:22 + + +waiting on router queue for slot.... +16:39:23 ============================================================================ +16:39:23 Slot Id : <80> +16:39:23 Transaction Type : RESPONSE +16:39:23 Received From : +16:39:23 ============================================================================ +16:39:23 FNo. Len. Field Value +16:39:23 ============================================================================ +16:39:23 [ 1] [ 4] [0210] +16:39:23 [ 2] [ 16] [6688990030010944] +16:39:23 [ 3] [ 6] [010000] +16:39:23 [ 4] [ 12] [000100000000] +16:39:23 [ 7] [ 10] [0320093828] +16:39:23 [ 11] [ 6] [270560] +16:39:23 [ 12] [ 6] [163828] +16:39:23 [ 13] [ 4] [0320] +16:39:23 [ 15] [ 4] [0320] +16:39:23 [ 18] [ 4] [6011] +16:39:23 [ 19] [ 3] [418] +16:39:23 [ 22] [ 3] [021] +16:39:23 [ 32] [ 6] [180893] +16:39:23 [ 35] [ 37] [6688990030010944=98021261793712900000] +16:39:23 [ 37] [ 12] [507909270560] +16:39:23 [ 39] [ 2] [14] +16:39:23 [ 41] [ 8] [0523XYNG] +16:39:23 [ 49] [ 3] [418] +16:39:23 ============================================================================ +16:39:23 Calculate Source COMM Id = 2 +16:39:23 ============================================================================ +16:39:23 + + +waiting on router queue for slot.... +16:39:24 ============================================================================ +16:39:24 Slot Id : <117> +16:39:24 Transaction Type : RESPONSE +16:39:24 Received From : +16:39:24 ============================================================================ +16:39:24 FNo. Len. Field Value +16:39:24 ============================================================================ +16:39:24 [ 1] [ 4] [0210] +16:39:24 [ 2] [ 16] [6688990103639900] +16:39:24 [ 3] [ 6] [010000] +16:39:24 [ 4] [ 12] [000100000000] +16:39:24 [ 11] [ 6] [802378] +16:39:24 [ 12] [ 6] [163914] +16:39:24 [ 15] [ 4] [0320] +16:39:24 [ 18] [ 4] [6011] +16:39:24 [ 32] [ 6] [621354] +16:39:24 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:39:24 [ 37] [ 12] [507903499612] +16:39:24 [ 38] [ 6] [557038] +16:39:24 [ 39] [ 2] [00] +16:39:24 [ 41] [ 8] [06002200] +16:39:24 [ 49] [ 3] [418] +16:39:24 [ 54] [ 20] [0002418C000124106194] +16:39:24 ============================================================================ +16:39:24 Calculate Source COMM Id = 0 +16:39:24 ============================================================================ +16:39:24 + + +waiting on router queue for slot.... +16:39:34 ============================================================================ +16:39:34 Slot Id : <147> +16:39:34 Transaction Type : REQUEST +16:39:34 Received From : +16:39:34 ============================================================================ +16:39:34 FNo. Len. Field Value +16:39:34 ============================================================================ +16:39:34 [ 1] [ 4] [0800] +16:39:34 [ 7] [ 10] [0320093840] +16:39:34 [ 11] [ 6] [157277] +16:39:34 [ 70] [ 3] [301] +16:39:34 ============================================================================ +16:39:34 + + +waiting on router queue for slot.... +16:39:34 Sending to : +16:39:34 ============================================================================ +16:39:34 ============================================================================ +16:39:34 Slot Id : <147> +16:39:34 Transaction Type : RESPONSE +16:39:34 Received From : +16:39:34 ============================================================================ +16:39:34 FNo. Len. Field Value +16:39:34 ============================================================================ +16:39:34 [ 1] [ 4] [0810] +16:39:34 [ 7] [ 10] [0320093840] +16:39:34 [ 11] [ 6] [157277] +16:39:34 [ 39] [ 2] [00] +16:39:34 [ 70] [ 3] [301] +16:39:34 ============================================================================ +16:39:34 Calculate Source COMM Id = 2 +16:39:34 ============================================================================ +16:39:34 + + +waiting on router queue for slot.... +16:39:46 ============================================================================ +16:39:46 Slot Id : <161> +16:39:46 Transaction Type : REQUEST +16:39:46 Received From : +16:39:46 ============================================================================ +16:39:46 FNo. Len. Field Value +16:39:46 ============================================================================ +16:39:46 [ 1] [ 4] [0200] +16:39:46 [ 2] [ 16] [6688990040139667] +16:39:46 [ 3] [ 6] [010000] +16:39:46 [ 4] [ 12] [000050000000] +16:39:46 [ 7] [ 10] [0320093853] +16:39:46 [ 11] [ 6] [270564] +16:39:46 [ 12] [ 6] [163853] +16:39:46 [ 13] [ 4] [0320] +16:39:46 [ 14] [ 4] [9804] +16:39:46 [ 15] [ 4] [0320] +16:39:46 [ 18] [ 4] [6011] +16:39:46 [ 19] [ 3] [418] +16:39:46 [ 22] [ 3] [021] +16:39:46 [ 25] [ 2] [01] +16:39:46 [ 28] [ 9] [D00002000] +16:39:46 [ 32] [ 6] [180893] +16:39:46 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:39:46 [ 37] [ 12] [507909270564] +16:39:46 [ 41] [ 8] [0321LNTV] +16:39:46 [ 42] [ 15] [999999 ] +16:39:46 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +16:39:46 [ 49] [ 3] [418] +16:39:46 [ 52] [ 16] [9D960BB62B253AC5] +16:39:46 ============================================================================ +16:39:46 + + +waiting on router queue for slot.... +16:39:46 Sending to : +16:39:46 ============================================================================ +16:39:46 Sending to : +16:39:46 ============================================================================ +16:39:46 ============================================================================ +16:39:46 Slot Id : <161> +16:39:46 Transaction Type : REQUEST +16:39:46 Received From : +16:39:46 ============================================================================ +16:39:46 FNo. Len. Field Value +16:39:46 ============================================================================ +16:39:46 [ 1] [ 4] [0200] +16:39:46 [ 2] [ 16] [6688990040139667] +16:39:46 [ 3] [ 6] [010000] +16:39:46 [ 4] [ 12] [000050000000] +16:39:46 [ 7] [ 10] [0320093853] +16:39:46 [ 11] [ 6] [270564] +16:39:46 [ 12] [ 6] [163853] +16:39:46 [ 13] [ 4] [0320] +16:39:46 [ 14] [ 4] [9804] +16:39:46 [ 15] [ 4] [0320] +16:39:46 [ 18] [ 4] [6011] +16:39:46 [ 19] [ 3] [418] +16:39:46 [ 22] [ 3] [021] +16:39:46 [ 25] [ 2] [01] +16:39:46 [ 28] [ 9] [D00002000] +16:39:46 [ 32] [ 6] [180893] +16:39:46 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:39:46 [ 37] [ 12] [507909270564] +16:39:46 [ 41] [ 8] [0321LNTV] +16:39:46 [ 42] [ 15] [999999 ] +16:39:46 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +16:39:46 [ 49] [ 3] [418] +16:39:46 [ 52] [ 16] [9D960BB62B253AC5] +16:39:46 ============================================================================ +16:39:46 + + +waiting on router queue for slot.... +16:39:46 Sending to : +16:39:46 ============================================================================ +16:39:47 ============================================================================ +16:39:47 Slot Id : <161> +16:39:47 Transaction Type : REQUEST +16:39:47 Received From : +16:39:47 ============================================================================ +16:39:47 FNo. Len. Field Value +16:39:47 ============================================================================ +16:39:47 [ 1] [ 4] [0200] +16:39:47 [ 2] [ 16] [6688990040139667] +16:39:47 [ 3] [ 6] [010000] +16:39:47 [ 4] [ 12] [000050000000] +16:39:47 [ 7] [ 10] [0320093853] +16:39:47 [ 11] [ 6] [270564] +16:39:47 [ 12] [ 6] [163853] +16:39:47 [ 13] [ 4] [0320] +16:39:47 [ 14] [ 4] [9804] +16:39:47 [ 15] [ 4] [0320] +16:39:47 [ 18] [ 4] [6011] +16:39:47 [ 19] [ 3] [418] +16:39:47 [ 22] [ 3] [021] +16:39:47 [ 25] [ 2] [01] +16:39:47 [ 28] [ 9] [D00002000] +16:39:47 [ 32] [ 6] [180893] +16:39:47 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:39:47 [ 37] [ 12] [507909270564] +16:39:47 [ 41] [ 8] [0321LNTV] +16:39:47 [ 42] [ 15] [999999 ] +16:39:47 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +16:39:47 [ 49] [ 3] [418] +16:39:47 [ 52] [ 16] [3A542D0B1C03B85E] +16:39:47 ============================================================================ +16:39:47 + + +waiting on router queue for slot.... +16:39:47 Sending to : <0> +16:39:47 ============================================================================ +16:39:47 ============================================================================ +16:39:47 Slot Id : <161> +16:39:47 Transaction Type : RESPONSE +16:39:47 Received From : +16:39:47 ============================================================================ +16:39:47 FNo. Len. Field Value +16:39:47 ============================================================================ +16:39:47 [ 1] [ 4] [0210] +16:39:47 [ 2] [ 16] [6688990040139667] +16:39:47 [ 3] [ 6] [010000] +16:39:47 [ 4] [ 12] [000050000000] +16:39:47 [ 7] [ 10] [0320093853] +16:39:47 [ 11] [ 6] [270564] +16:39:47 [ 12] [ 6] [163853] +16:39:47 [ 13] [ 4] [0320] +16:39:47 [ 15] [ 4] [0320] +16:39:47 [ 18] [ 4] [6011] +16:39:47 [ 19] [ 3] [418] +16:39:47 [ 22] [ 3] [021] +16:39:47 [ 32] [ 6] [180893] +16:39:47 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:39:47 [ 37] [ 12] [507909270564] +16:39:47 [ 39] [ 2] [14] +16:39:47 [ 41] [ 8] [0321LNTV] +16:39:47 [ 49] [ 3] [418] +16:39:47 ============================================================================ +16:39:47 Sending to : +16:39:47 ============================================================================ +16:39:47 + + +waiting on router queue for slot.... +16:39:47 ============================================================================ +16:39:47 Slot Id : <162> +16:39:47 Transaction Type : REQUEST +16:39:47 Received From : +16:39:47 ============================================================================ +16:39:47 FNo. Len. Field Value +16:39:47 ============================================================================ +16:39:47 [ 1] [ 4] [0200] +16:39:47 [ 2] [ 16] [6213544002112909] +16:39:47 [ 3] [ 6] [011000] +16:39:47 [ 4] [ 12] [000020000000] +16:39:47 [ 7] [ 10] [0320164007] +16:39:47 [ 11] [ 6] [208862] +16:39:47 [ 12] [ 6] [163513] +16:39:47 [ 13] [ 4] [0320] +16:39:47 [ 14] [ 4] [4912] +16:39:47 [ 15] [ 4] [0320] +16:39:47 [ 18] [ 4] [6011] +16:39:47 [ 19] [ 3] [418] +16:39:47 [ 22] [ 3] [021] +16:39:47 [ 25] [ 2] [01] +16:39:47 [ 28] [ 9] [D00002000] +16:39:47 [ 32] [ 6] [198901] +16:39:47 [ 35] [ 32] [6213544002112909=491212011290503] +16:39:47 [ 37] [ 12] [507916208862] +16:39:47 [ 41] [ 8] [19529001] +16:39:47 [ 42] [ 15] [000000041952901] +16:39:47 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:39:47 [ 49] [ 3] [418] +16:39:47 [ 52] [ 16] [493CFE510DF56133] +16:39:47 ============================================================================ +16:39:47 + + +waiting on router queue for slot.... +16:39:47 Sending to : +16:39:47 ============================================================================ +16:39:47 Sending to : +16:39:47 ============================================================================ +16:39:47 ============================================================================ +16:39:47 Slot Id : <162> +16:39:47 Transaction Type : REQUEST +16:39:47 Received From : +16:39:47 ============================================================================ +16:39:47 FNo. Len. Field Value +16:39:47 ============================================================================ +16:39:47 [ 1] [ 4] [0200] +16:39:47 [ 2] [ 16] [6213544002112909] +16:39:47 [ 3] [ 6] [011000] +16:39:47 [ 4] [ 12] [000020000000] +16:39:47 [ 7] [ 10] [0320164007] +16:39:47 [ 11] [ 6] [208862] +16:39:47 [ 12] [ 6] [163513] +16:39:47 [ 13] [ 4] [0320] +16:39:47 [ 14] [ 4] [4912] +16:39:47 [ 15] [ 4] [0320] +16:39:47 [ 18] [ 4] [6011] +16:39:47 [ 19] [ 3] [418] +16:39:47 [ 22] [ 3] [021] +16:39:47 [ 25] [ 2] [01] +16:39:47 [ 28] [ 9] [D00002000] +16:39:47 [ 32] [ 6] [198901] +16:39:47 [ 35] [ 32] [6213544002112909=491212011290503] +16:39:47 [ 37] [ 12] [507916208862] +16:39:47 [ 41] [ 8] [19529001] +16:39:47 [ 42] [ 15] [000000041952901] +16:39:47 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:39:47 [ 49] [ 3] [418] +16:39:47 [ 52] [ 16] [493CFE510DF56133] +16:39:47 ============================================================================ +16:39:47 + + +waiting on router queue for slot.... +16:39:47 Sending to : +16:39:47 ============================================================================ +16:39:47 ============================================================================ +16:39:47 Slot Id : <162> +16:39:47 Transaction Type : REQUEST +16:39:47 Received From : +16:39:47 ============================================================================ +16:39:47 FNo. Len. Field Value +16:39:47 ============================================================================ +16:39:47 [ 1] [ 4] [0200] +16:39:47 [ 2] [ 16] [6213544002112909] +16:39:47 [ 3] [ 6] [011000] +16:39:47 [ 4] [ 12] [000020000000] +16:39:47 [ 7] [ 10] [0320164007] +16:39:47 [ 11] [ 6] [208862] +16:39:47 [ 12] [ 6] [163513] +16:39:47 [ 13] [ 4] [0320] +16:39:47 [ 14] [ 4] [4912] +16:39:47 [ 15] [ 4] [0320] +16:39:47 [ 18] [ 4] [6011] +16:39:47 [ 19] [ 3] [418] +16:39:47 [ 22] [ 3] [021] +16:39:47 [ 25] [ 2] [01] +16:39:47 [ 28] [ 9] [D00002000] +16:39:47 [ 32] [ 6] [198901] +16:39:47 [ 35] [ 32] [6213544002112909=491212011290503] +16:39:47 [ 37] [ 12] [507916208862] +16:39:47 [ 41] [ 8] [19529001] +16:39:47 [ 42] [ 15] [000000041952901] +16:39:47 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:39:47 [ 49] [ 3] [418] +16:39:47 [ 52] [ 16] [2742D97CFA8749BC] +16:39:47 ============================================================================ +16:39:47 + + +waiting on router queue for slot.... +16:39:47 Sending to : <0> +16:39:47 ============================================================================ +16:39:48 ============================================================================ +16:39:48 Slot Id : <162> +16:39:48 Transaction Type : RESPONSE +16:39:48 Received From : +16:39:48 ============================================================================ +16:39:48 FNo. Len. Field Value +16:39:48 ============================================================================ +16:39:48 [ 1] [ 4] [0210] +16:39:48 [ 2] [ 16] [6213544002112909] +16:39:48 [ 3] [ 6] [011000] +16:39:48 [ 4] [ 12] [000020000000] +16:39:48 [ 7] [ 10] [0320164007] +16:39:48 [ 11] [ 6] [208862] +16:39:48 [ 12] [ 6] [163513] +16:39:48 [ 13] [ 4] [0320] +16:39:48 [ 15] [ 4] [0320] +16:39:48 [ 18] [ 4] [6011] +16:39:48 [ 19] [ 3] [418] +16:39:48 [ 32] [ 6] [198901] +16:39:48 [ 35] [ 32] [6213544002112909=491212011290503] +16:39:48 [ 37] [ 12] [507916208862] +16:39:48 [ 38] [ 6] [676088] +16:39:48 [ 39] [ 2] [00] +16:39:48 [ 41] [ 8] [19529001] +16:39:48 [ 49] [ 3] [418] +16:39:48 [ 54] [ 40] [1001418C0000382457321002418C000038245732] +16:39:48 ============================================================================ +16:39:48 Sending to : +16:39:48 ============================================================================ +16:39:48 + + +waiting on router queue for slot.... +16:39:48 ============================================================================ +16:39:48 Slot Id : <161> +16:39:48 Transaction Type : RESPONSE +16:39:48 Received From : +16:39:48 ============================================================================ +16:39:48 FNo. Len. Field Value +16:39:48 ============================================================================ +16:39:48 [ 1] [ 4] [0210] +16:39:48 [ 2] [ 16] [6688990040139667] +16:39:48 [ 3] [ 6] [010000] +16:39:48 [ 4] [ 12] [000050000000] +16:39:48 [ 7] [ 10] [0320093853] +16:39:48 [ 11] [ 6] [270564] +16:39:48 [ 12] [ 6] [163853] +16:39:48 [ 13] [ 4] [0320] +16:39:48 [ 15] [ 4] [0320] +16:39:48 [ 18] [ 4] [6011] +16:39:48 [ 19] [ 3] [418] +16:39:48 [ 22] [ 3] [021] +16:39:48 [ 32] [ 6] [180893] +16:39:48 [ 35] [ 37] [6688990040139667=98041261643138600000] +16:39:48 [ 37] [ 12] [507909270564] +16:39:48 [ 39] [ 2] [14] +16:39:48 [ 41] [ 8] [0321LNTV] +16:39:48 [ 49] [ 3] [418] +16:39:48 ============================================================================ +16:39:48 Calculate Source COMM Id = 2 +16:39:48 ============================================================================ +16:39:48 + + +waiting on router queue for slot.... +16:39:49 ============================================================================ +16:39:49 Slot Id : <132> +16:39:49 Transaction Type : REQUEST +16:39:49 Received From : +16:39:49 ============================================================================ +16:39:49 FNo. Len. Field Value +16:39:49 ============================================================================ +16:39:49 [ 1] [ 4] [0200] +16:39:49 [ 2] [ 16] [6688990602652008] +16:39:49 [ 3] [ 6] [011000] +16:39:49 [ 4] [ 12] [000030000000] +16:39:49 [ 7] [ 10] [0320163944] +16:39:49 [ 11] [ 6] [802500] +16:39:49 [ 12] [ 6] [163944] +16:39:49 [ 13] [ 4] [0320] +16:39:49 [ 15] [ 4] [0320] +16:39:49 [ 18] [ 4] [6011] +16:39:49 [ 22] [ 3] [900] +16:39:49 [ 25] [ 2] [02] +16:39:49 [ 28] [ 9] [D00002000] +16:39:49 [ 32] [ 6] [621354] +16:39:49 [ 35] [ 37] [6688990602652008=43100061200842200000] +16:39:49 [ 37] [ 12] [507902606277] +16:39:49 [ 41] [ 8] [05004300] +16:39:49 [ 42] [ 15] [NATIVE ] +16:39:49 [ 43] [ 40] [Ka deng office LuangprabangLAO] +16:39:49 [ 49] [ 3] [418] +16:39:49 [ 52] [ 16] [CB05F811C789F443] +16:39:49 ============================================================================ +16:39:49 + + +waiting on router queue for slot.... +16:39:49 Sending to : +16:39:49 ============================================================================ +16:39:49 Sending to : +16:39:49 ============================================================================ +16:39:49 ============================================================================ +16:39:49 Slot Id : <132> +16:39:49 Transaction Type : REQUEST +16:39:49 Received From : +16:39:49 ============================================================================ +16:39:49 FNo. Len. Field Value +16:39:49 ============================================================================ +16:39:49 [ 1] [ 4] [0200] +16:39:49 [ 2] [ 16] [6688990602652008] +16:39:49 [ 3] [ 6] [011000] +16:39:49 [ 4] [ 12] [000030000000] +16:39:49 [ 7] [ 10] [0320163944] +16:39:49 [ 11] [ 6] [802500] +16:39:49 [ 12] [ 6] [163944] +16:39:49 [ 13] [ 4] [0320] +16:39:49 [ 15] [ 4] [0320] +16:39:49 [ 18] [ 4] [6011] +16:39:49 [ 22] [ 3] [900] +16:39:49 [ 25] [ 2] [02] +16:39:49 [ 28] [ 9] [D00002000] +16:39:49 [ 32] [ 6] [621354] +16:39:49 [ 35] [ 37] [6688990602652008=43100061200842200000] +16:39:49 [ 37] [ 12] [507902606277] +16:39:49 [ 41] [ 8] [05004300] +16:39:49 [ 42] [ 15] [NATIVE ] +16:39:49 [ 43] [ 40] [Ka deng office LuangprabangLAO] +16:39:49 [ 49] [ 3] [418] +16:39:49 [ 52] [ 16] [CB05F811C789F443] +16:39:49 ============================================================================ +16:39:49 + + +waiting on router queue for slot.... +16:39:49 Sending to : +16:39:49 ============================================================================ +16:39:49 ============================================================================ +16:39:49 Slot Id : <132> +16:39:49 Transaction Type : REQUEST +16:39:49 Received From : +16:39:49 ============================================================================ +16:39:49 FNo. Len. Field Value +16:39:49 ============================================================================ +16:39:49 [ 1] [ 4] [0200] +16:39:49 [ 2] [ 16] [6688990602652008] +16:39:49 [ 3] [ 6] [011000] +16:39:49 [ 4] [ 12] [000030000000] +16:39:49 [ 7] [ 10] [0320163944] +16:39:49 [ 11] [ 6] [802500] +16:39:49 [ 12] [ 6] [163944] +16:39:49 [ 13] [ 4] [0320] +16:39:49 [ 15] [ 4] [0320] +16:39:49 [ 18] [ 4] [6011] +16:39:49 [ 22] [ 3] [900] +16:39:49 [ 25] [ 2] [02] +16:39:49 [ 28] [ 9] [D00002000] +16:39:49 [ 32] [ 6] [621354] +16:39:49 [ 35] [ 37] [6688990602652008=43100061200842200000] +16:39:49 [ 37] [ 12] [507902606277] +16:39:49 [ 41] [ 8] [05004300] +16:39:49 [ 42] [ 15] [NATIVE ] +16:39:49 [ 43] [ 40] [Ka deng office LuangprabangLAO] +16:39:49 [ 49] [ 3] [418] +16:39:49 [ 52] [ 16] [8B5A0CCD12020D53] +16:39:49 ============================================================================ +16:39:49 + + +waiting on router queue for slot.... +16:39:49 Sending to : <4> +16:39:49 ============================================================================ +16:39:49 ============================================================================ +16:39:49 Slot Id : <162> +16:39:49 Transaction Type : RESPONSE +16:39:49 Received From : +16:39:49 ============================================================================ +16:39:49 FNo. Len. Field Value +16:39:49 ============================================================================ +16:39:49 [ 1] [ 4] [0210] +16:39:49 [ 2] [ 16] [6213544002112909] +16:39:49 [ 3] [ 6] [011000] +16:39:49 [ 4] [ 12] [000020000000] +16:39:49 [ 7] [ 10] [0320164007] +16:39:49 [ 11] [ 6] [208862] +16:39:49 [ 12] [ 6] [163513] +16:39:49 [ 13] [ 4] [0320] +16:39:49 [ 15] [ 4] [0320] +16:39:49 [ 18] [ 4] [6011] +16:39:49 [ 19] [ 3] [418] +16:39:49 [ 32] [ 6] [198901] +16:39:49 [ 35] [ 32] [6213544002112909=491212011290503] +16:39:49 [ 37] [ 12] [507916208862] +16:39:49 [ 38] [ 6] [676088] +16:39:49 [ 39] [ 2] [00] +16:39:49 [ 41] [ 8] [19529001] +16:39:49 [ 49] [ 3] [418] +16:39:49 [ 54] [ 40] [1001418C0000382457321002418C000038245732] +16:39:49 ============================================================================ +16:39:49 Calculate Source COMM Id = 5 +16:39:49 ============================================================================ +16:39:49 + + +waiting on router queue for slot.... +16:39:50 ============================================================================ +16:39:50 Slot Id : <122> +16:39:50 Transaction Type : REQUEST +16:39:50 Received From : +16:39:50 ============================================================================ +16:39:50 FNo. Len. Field Value +16:39:50 ============================================================================ +16:39:50 [ 1] [ 4] [0800] +16:39:50 [ 7] [ 10] [0320235138] +16:39:50 [ 11] [ 6] [165138] +16:39:50 [ 37] [ 12] [57916165138] +16:39:50 [ 70] [ 3] [301] +16:39:50 ============================================================================ +16:39:50 + + +waiting on router queue for slot.... +16:39:50 Sending to : +16:39:50 ============================================================================ +16:39:50 ============================================================================ +16:39:50 Slot Id : <122> +16:39:50 Transaction Type : RESPONSE +16:39:50 Received From : +16:39:50 ============================================================================ +16:39:50 FNo. Len. Field Value +16:39:50 ============================================================================ +16:39:50 [ 1] [ 4] [0810] +16:39:50 [ 7] [ 10] [0320235138] +16:39:50 [ 11] [ 6] [165138] +16:39:50 [ 37] [ 12] [579161651380] +16:39:50 [ 39] [ 2] [00] +16:39:50 [ 70] [ 3] [810] +16:39:50 ============================================================================ +16:39:50 Calculate Source COMM Id = 6 +16:39:50 ============================================================================ +16:39:50 + + +waiting on router queue for slot.... +16:39:50 ============================================================================ +16:39:50 Slot Id : <132> +16:39:50 Transaction Type : RESPONSE +16:39:50 Received From : +16:39:50 ============================================================================ +16:39:50 FNo. Len. Field Value +16:39:50 ============================================================================ +16:39:50 [ 1] [ 4] [0210] +16:39:50 [ 2] [ 16] [6688990602652008] +16:39:50 [ 3] [ 6] [011000] +16:39:50 [ 4] [ 12] [000030000000] +16:39:50 [ 11] [ 6] [802500] +16:39:50 [ 12] [ 6] [163944] +16:39:50 [ 15] [ 4] [0320] +16:39:50 [ 18] [ 4] [6011] +16:39:50 [ 32] [ 6] [621354] +16:39:50 [ 35] [ 37] [6688990602652008=43100061200842200000] +16:39:50 [ 37] [ 12] [507902606277] +16:39:50 [ 38] [ 6] [437707] +16:39:50 [ 39] [ 2] [00] +16:39:50 [ 41] [ 8] [05004300] +16:39:50 [ 49] [ 3] [418] +16:39:50 [ 54] [ 20] [1002418C000003029383] +16:39:50 ============================================================================ +16:39:50 Sending to : +16:39:50 ============================================================================ +16:39:50 + + +waiting on router queue for slot.... +16:39:52 ============================================================================ +16:39:52 Slot Id : <132> +16:39:52 Transaction Type : RESPONSE +16:39:52 Received From : +16:39:52 ============================================================================ +16:39:52 FNo. Len. Field Value +16:39:52 ============================================================================ +16:39:52 [ 1] [ 4] [0210] +16:39:52 [ 2] [ 16] [6688990602652008] +16:39:52 [ 3] [ 6] [011000] +16:39:52 [ 4] [ 12] [000030000000] +16:39:52 [ 11] [ 6] [802500] +16:39:52 [ 12] [ 6] [163944] +16:39:52 [ 15] [ 4] [0320] +16:39:52 [ 18] [ 4] [6011] +16:39:52 [ 32] [ 6] [621354] +16:39:52 [ 35] [ 37] [6688990602652008=43100061200842200000] +16:39:52 [ 37] [ 12] [507902606277] +16:39:52 [ 38] [ 6] [437707] +16:39:52 [ 39] [ 2] [00] +16:39:52 [ 41] [ 8] [05004300] +16:39:52 [ 49] [ 3] [418] +16:39:52 [ 54] [ 20] [1002418C000003029383] +16:39:52 ============================================================================ +16:39:52 Calculate Source COMM Id = 0 +16:39:52 ============================================================================ +16:39:52 + + +waiting on router queue for slot.... +16:39:53 ============================================================================ +16:39:53 Slot Id : <145> +16:39:53 Transaction Type : REQUEST +16:39:53 Received From : +16:39:53 ============================================================================ +16:39:53 FNo. Len. Field Value +16:39:53 ============================================================================ +16:39:53 [ 1] [ 4] [0800] +16:39:53 [ 2] [ 5] [02531] +16:39:53 [ 3] [ 6] [579168] +16:39:53 [ 7] [ 10] [0320093953] +16:39:53 [ 11] [ 6] [807379] +16:39:53 [ 15] [ 10] [0320093953] +16:39:53 [ 37] [ 11] [57916807379] +16:39:53 [ 70] [ 3] [001] +16:39:53 ============================================================================ +16:39:53 + + +waiting on router queue for slot.... +16:39:53 ============================================================================ +16:39:53 Slot Id : <145> +16:39:53 Transaction Type : RESPONSE +16:39:53 Received From : +16:39:53 ============================================================================ +16:39:53 FNo. Len. Field Value +16:39:53 ============================================================================ +16:39:53 [ 1] [ 4] [0810] +16:39:53 [ 7] [ 10] [0320093953] +16:39:53 [ 11] [ 6] [807379] +16:39:53 [ 15] [ 4] [0320] +16:39:53 [ 37] [ 12] [57916807379] +16:39:53 [ 39] [ 2] [00] +16:39:53 [ 70] [ 3] [001] +16:39:53 ============================================================================ +16:39:53 Sending to : +16:39:53 ============================================================================ +16:39:53 + + +waiting on router queue for slot.... +16:39:54 ============================================================================ +16:39:54 Slot Id : <143> +16:39:54 Transaction Type : REQUEST +16:39:54 Received From : +16:39:54 ============================================================================ +16:39:54 FNo. Len. Field Value +16:39:54 ============================================================================ +16:39:54 [ 1] [ 4] [0200] +16:39:54 [ 2] [ 16] [6213544001865051] +16:39:54 [ 3] [ 6] [010000] +16:39:54 [ 4] [ 12] [000054000000] +16:39:54 [ 7] [ 10] [0320163744] +16:39:54 [ 11] [ 6] [952080] +16:39:54 [ 12] [ 6] [163744] +16:39:54 [ 13] [ 4] [0320] +16:39:54 [ 15] [ 4] [0320] +16:39:54 [ 18] [ 4] [6011] +16:39:54 [ 19] [ 3] [418] +16:39:54 [ 22] [ 3] [021] +16:39:54 [ 25] [ 2] [01] +16:39:54 [ 28] [ 9] [D00002000] +16:39:54 [ 32] [ 6] [668899] +16:39:54 [ 35] [ 32] [6213544001865051=491212016505090] +16:39:54 [ 37] [ 12] [507902025611] +16:39:54 [ 41] [ 8] [03414002] +16:39:54 [ 42] [ 15] [APT ] +16:39:54 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:39:54 [ 49] [ 3] [418] +16:39:54 [ 52] [ 16] [90E910AEAE4B5EC7] +16:39:54 ============================================================================ +16:39:54 + + +waiting on router queue for slot.... +16:39:54 Sending to : +16:39:54 ============================================================================ +16:39:54 Sending to : +16:39:54 ============================================================================ +16:39:54 ============================================================================ +16:39:54 Slot Id : <143> +16:39:54 Transaction Type : REQUEST +16:39:54 Received From : +16:39:54 ============================================================================ +16:39:54 FNo. Len. Field Value +16:39:54 ============================================================================ +16:39:54 [ 1] [ 4] [0200] +16:39:54 [ 2] [ 16] [6213544001865051] +16:39:54 [ 3] [ 6] [010000] +16:39:54 [ 4] [ 12] [000054000000] +16:39:54 [ 7] [ 10] [0320163744] +16:39:54 [ 11] [ 6] [952080] +16:39:54 [ 12] [ 6] [163744] +16:39:54 [ 13] [ 4] [0320] +16:39:54 [ 15] [ 4] [0320] +16:39:54 [ 18] [ 4] [6011] +16:39:54 [ 19] [ 3] [418] +16:39:54 [ 22] [ 3] [021] +16:39:54 [ 25] [ 2] [01] +16:39:54 [ 28] [ 9] [D00002000] +16:39:54 [ 32] [ 6] [668899] +16:39:54 [ 35] [ 32] [6213544001865051=491212016505090] +16:39:54 [ 37] [ 12] [507902025611] +16:39:54 [ 41] [ 8] [03414002] +16:39:54 [ 42] [ 15] [APT ] +16:39:54 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:39:54 [ 49] [ 3] [418] +16:39:54 [ 52] [ 16] [90E910AEAE4B5EC7] +16:39:54 ============================================================================ +16:39:54 + + +waiting on router queue for slot.... +16:39:54 Sending to : +16:39:54 ============================================================================ +16:39:54 ============================================================================ +16:39:54 Slot Id : <143> +16:39:54 Transaction Type : REQUEST +16:39:54 Received From : +16:39:54 ============================================================================ +16:39:54 FNo. Len. Field Value +16:39:54 ============================================================================ +16:39:54 [ 1] [ 4] [0200] +16:39:54 [ 2] [ 16] [6213544001865051] +16:39:54 [ 3] [ 6] [010000] +16:39:54 [ 4] [ 12] [000054000000] +16:39:54 [ 7] [ 10] [0320163744] +16:39:54 [ 11] [ 6] [952080] +16:39:54 [ 12] [ 6] [163744] +16:39:54 [ 13] [ 4] [0320] +16:39:54 [ 15] [ 4] [0320] +16:39:54 [ 18] [ 4] [6011] +16:39:54 [ 19] [ 3] [418] +16:39:54 [ 22] [ 3] [021] +16:39:54 [ 25] [ 2] [01] +16:39:54 [ 28] [ 9] [D00002000] +16:39:54 [ 32] [ 6] [668899] +16:39:54 [ 35] [ 32] [6213544001865051=491212016505090] +16:39:54 [ 37] [ 12] [507902025611] +16:39:54 [ 41] [ 8] [03414002] +16:39:54 [ 42] [ 15] [APT ] +16:39:54 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:39:54 [ 49] [ 3] [418] +16:39:54 [ 52] [ 16] [ED3E991515D7FC0B] +16:39:54 ============================================================================ +16:39:54 + + +waiting on router queue for slot.... +16:39:54 Sending to : <0> +16:39:54 ============================================================================ +16:39:55 ============================================================================ +16:39:55 Slot Id : <143> +16:39:55 Transaction Type : RESPONSE +16:39:55 Received From : +16:39:55 ============================================================================ +16:39:55 FNo. Len. Field Value +16:39:55 ============================================================================ +16:39:55 [ 1] [ 4] [0210] +16:39:55 [ 2] [ 16] [6213544001865051] +16:39:55 [ 3] [ 6] [010000] +16:39:55 [ 4] [ 12] [000054000000] +16:39:55 [ 7] [ 10] [0320163744] +16:39:55 [ 11] [ 6] [952080] +16:39:55 [ 12] [ 6] [163744] +16:39:55 [ 13] [ 4] [0320] +16:39:55 [ 15] [ 4] [0320] +16:39:55 [ 18] [ 4] [6011] +16:39:55 [ 19] [ 3] [418] +16:39:55 [ 32] [ 6] [668899] +16:39:55 [ 35] [ 32] [6213544001865051=491212016505090] +16:39:55 [ 37] [ 12] [507902025611] +16:39:55 [ 38] [ 6] [640026] +16:39:55 [ 39] [ 2] [00] +16:39:55 [ 41] [ 8] [03414002] +16:39:55 [ 49] [ 3] [418] +16:39:55 [ 54] [ 40] [0001418C0000053154820002418C000005315482] +16:39:55 ============================================================================ +16:39:55 Sending to : +16:39:55 ============================================================================ +16:39:55 + + +waiting on router queue for slot.... +16:39:55 ============================================================================ +16:39:55 Slot Id : <154> +16:39:55 Transaction Type : REQUEST +16:39:55 Received From : +16:39:55 ============================================================================ +16:39:55 FNo. Len. Field Value +16:39:55 ============================================================================ +16:39:55 [ 1] [ 4] [0800] +16:39:55 [ 7] [ 10] [0320094742] +16:39:55 [ 11] [ 6] [044536] +16:39:55 [ 37] [ 12] [57916044536] +16:39:55 [ 70] [ 3] [301] +16:39:55 ============================================================================ +16:39:55 + + +waiting on router queue for slot.... +16:39:55 Sending to : +16:39:55 ============================================================================ +16:39:55 ============================================================================ +16:39:55 Slot Id : <154> +16:39:55 Transaction Type : RESPONSE +16:39:55 Received From : +16:39:55 ============================================================================ +16:39:55 FNo. Len. Field Value +16:39:55 ============================================================================ +16:39:55 [ 1] [ 4] [0810] +16:39:55 [ 7] [ 10] [0320094742] +16:39:55 [ 11] [ 6] [044536] +16:39:55 [ 37] [ 12] [579160445360] +16:39:55 [ 39] [ 2] [00] +16:39:55 [ 70] [ 3] [810] +16:39:55 ============================================================================ +16:39:55 Calculate Source COMM Id = 1 +16:39:55 ============================================================================ +16:39:55 + + +waiting on router queue for slot.... +16:39:56 ============================================================================ +16:39:56 Slot Id : <143> +16:39:56 Transaction Type : RESPONSE +16:39:56 Received From : +16:39:56 ============================================================================ +16:39:56 FNo. Len. Field Value +16:39:56 ============================================================================ +16:39:56 [ 1] [ 4] [0210] +16:39:56 [ 2] [ 16] [6213544001865051] +16:39:56 [ 3] [ 6] [010000] +16:39:56 [ 4] [ 12] [000054000000] +16:39:56 [ 7] [ 10] [0320163744] +16:39:56 [ 11] [ 6] [952080] +16:39:56 [ 12] [ 6] [163744] +16:39:56 [ 13] [ 4] [0320] +16:39:56 [ 15] [ 4] [0320] +16:39:56 [ 18] [ 4] [6011] +16:39:56 [ 19] [ 3] [418] +16:39:56 [ 32] [ 6] [668899] +16:39:56 [ 35] [ 32] [6213544001865051=491212016505090] +16:39:56 [ 37] [ 12] [507902025611] +16:39:56 [ 38] [ 6] [640026] +16:39:56 [ 39] [ 2] [00] +16:39:56 [ 41] [ 8] [03414002] +16:39:56 [ 49] [ 3] [418] +16:39:56 [ 54] [ 40] [0001418C0000053154820002418C000005315482] +16:39:56 ============================================================================ +16:39:56 Calculate Source COMM Id = 4 +16:39:56 ============================================================================ +16:39:56 + + +waiting on router queue for slot.... +16:40:00 ============================================================================ +16:40:00 Slot Id : <166> +16:40:00 Transaction Type : REQUEST +16:40:00 Received From : +16:40:00 ============================================================================ +16:40:00 FNo. Len. Field Value +16:40:00 ============================================================================ +16:40:00 [ 1] [ 4] [0800] +16:40:00 [ 7] [ 10] [0320093907] +16:40:00 [ 11] [ 6] [157278] +16:40:00 [ 70] [ 3] [301] +16:40:00 ============================================================================ +16:40:00 + + +waiting on router queue for slot.... +16:40:00 Sending to : +16:40:00 ============================================================================ +16:40:00 ============================================================================ +16:40:00 Slot Id : <166> +16:40:00 Transaction Type : RESPONSE +16:40:00 Received From : +16:40:00 ============================================================================ +16:40:00 FNo. Len. Field Value +16:40:00 ============================================================================ +16:40:00 [ 1] [ 4] [0810] +16:40:00 [ 7] [ 10] [0320093907] +16:40:00 [ 11] [ 6] [157278] +16:40:00 [ 39] [ 2] [00] +16:40:00 [ 70] [ 3] [301] +16:40:00 ============================================================================ +16:40:00 Calculate Source COMM Id = 2 +16:40:00 ============================================================================ +16:40:00 + + +waiting on router queue for slot.... +16:40:04 ============================================================================ +16:40:04 Slot Id : <158> +16:40:04 Transaction Type : REQUEST +16:40:04 Received From : +16:40:04 ============================================================================ +16:40:04 FNo. Len. Field Value +16:40:04 ============================================================================ +16:40:04 [ 1] [ 4] [0200] +16:40:04 [ 2] [ 16] [1808931400007850] +16:40:04 [ 3] [ 6] [010000] +16:40:04 [ 4] [ 12] [000050000000] +16:40:04 [ 7] [ 10] [0320163959] +16:40:04 [ 11] [ 6] [802573] +16:40:04 [ 12] [ 6] [163959] +16:40:04 [ 13] [ 4] [0320] +16:40:04 [ 15] [ 4] [0320] +16:40:04 [ 18] [ 4] [6011] +16:40:04 [ 22] [ 3] [900] +16:40:04 [ 25] [ 2] [02] +16:40:04 [ 28] [ 9] [D00002000] +16:40:04 [ 32] [ 6] [621354] +16:40:04 [ 35] [ 27] [1808931400007850=1803500731] +16:40:04 [ 37] [ 12] [507904719799] +16:40:04 [ 41] [ 8] [18001000] +16:40:04 [ 42] [ 15] [NATIVE ] +16:40:04 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:40:04 [ 49] [ 3] [418] +16:40:04 [ 52] [ 16] [1B46B0978C06F21B] +16:40:04 ============================================================================ +16:40:04 + + +waiting on router queue for slot.... +16:40:04 Sending to : +16:40:04 ============================================================================ +16:40:04 Sending to : +16:40:04 ============================================================================ +16:40:04 ============================================================================ +16:40:04 Slot Id : <153> +16:40:04 Transaction Type : REQUEST +16:40:04 Received From : +16:40:04 ============================================================================ +16:40:04 FNo. Len. Field Value +16:40:04 ============================================================================ +16:40:04 [ 1] [ 4] [0200] +16:40:04 [ 2] [ 16] [6213544001368544] +16:40:04 [ 3] [ 6] [010000] +16:40:04 [ 4] [ 12] [000010000000] +16:40:04 [ 7] [ 10] [0320093910] +16:40:04 [ 11] [ 6] [270567] +16:40:04 [ 12] [ 6] [163910] +16:40:04 [ 13] [ 4] [0320] +16:40:04 [ 14] [ 4] [4912] +16:40:04 [ 15] [ 4] [0320] +16:40:04 [ 18] [ 4] [6011] +16:40:04 [ 19] [ 3] [418] +16:40:04 [ 22] [ 3] [021] +16:40:04 [ 25] [ 2] [01] +16:40:04 [ 28] [ 9] [D00002000] +16:40:04 [ 32] [ 6] [180893] +16:40:04 [ 35] [ 32] [6213544001368544=491212016854430] +16:40:04 [ 37] [ 12] [507909270567] +16:40:04 [ 41] [ 8] [0344SVKV] +16:40:04 [ 42] [ 15] [999999 ] +16:40:04 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:40:04 [ 49] [ 3] [418] +16:40:04 [ 52] [ 16] [7137BC7669FA7E5C] +16:40:04 ============================================================================ +16:40:04 + + +waiting on router queue for slot.... +16:40:04 Sending to : +16:40:04 ============================================================================ +16:40:04 Sending to : +16:40:04 ============================================================================ +16:40:04 ============================================================================ +16:40:04 Slot Id : <158> +16:40:04 Transaction Type : REQUEST +16:40:04 Received From : +16:40:04 ============================================================================ +16:40:04 FNo. Len. Field Value +16:40:04 ============================================================================ +16:40:04 [ 1] [ 4] [0200] +16:40:04 [ 2] [ 16] [1808931400007850] +16:40:04 [ 3] [ 6] [010000] +16:40:04 [ 4] [ 12] [000050000000] +16:40:04 [ 7] [ 10] [0320163959] +16:40:04 [ 11] [ 6] [802573] +16:40:04 [ 12] [ 6] [163959] +16:40:04 [ 13] [ 4] [0320] +16:40:04 [ 15] [ 4] [0320] +16:40:04 [ 18] [ 4] [6011] +16:40:04 [ 22] [ 3] [900] +16:40:04 [ 25] [ 2] [02] +16:40:04 [ 28] [ 9] [D00002000] +16:40:04 [ 32] [ 6] [621354] +16:40:04 [ 35] [ 27] [1808931400007850=1803500731] +16:40:04 [ 37] [ 12] [507904719799] +16:40:04 [ 41] [ 8] [18001000] +16:40:04 [ 42] [ 15] [NATIVE ] +16:40:04 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:40:04 [ 49] [ 3] [418] +16:40:04 [ 52] [ 16] [1B46B0978C06F21B] +16:40:04 ============================================================================ +16:40:04 + + +waiting on router queue for slot.... +16:40:04 Sending to : +16:40:04 ============================================================================ +16:40:04 ============================================================================ +16:40:04 Slot Id : <158> +16:40:04 Transaction Type : REQUEST +16:40:04 Received From : +16:40:04 ============================================================================ +16:40:04 FNo. Len. Field Value +16:40:04 ============================================================================ +16:40:04 [ 1] [ 4] [0200] +16:40:04 [ 2] [ 16] [1808931400007850] +16:40:04 [ 3] [ 6] [010000] +16:40:04 [ 4] [ 12] [000050000000] +16:40:04 [ 7] [ 10] [0320163959] +16:40:04 [ 11] [ 6] [802573] +16:40:04 [ 12] [ 6] [163959] +16:40:04 [ 13] [ 4] [0320] +16:40:04 [ 15] [ 4] [0320] +16:40:04 [ 18] [ 4] [6011] +16:40:04 [ 22] [ 3] [900] +16:40:04 [ 25] [ 2] [02] +16:40:04 [ 28] [ 9] [D00002000] +16:40:04 [ 32] [ 6] [621354] +16:40:04 [ 35] [ 27] [1808931400007850=1803500731] +16:40:04 [ 37] [ 12] [507904719799] +16:40:04 [ 41] [ 8] [18001000] +16:40:04 [ 42] [ 15] [NATIVE ] +16:40:04 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:40:04 [ 49] [ 3] [418] +16:40:04 [ 52] [ 16] [FAFCBCCF0E789021] +16:40:04 ============================================================================ +16:40:04 + + +waiting on router queue for slot.... +16:40:04 Sending to : <2> +16:40:04 ============================================================================ +16:40:04 ============================================================================ +16:40:04 Slot Id : <120> +16:40:04 Transaction Type : REQUEST +16:40:04 Received From : +16:40:04 ============================================================================ +16:40:04 FNo. Len. Field Value +16:40:04 ============================================================================ +16:40:04 [ 1] [ 4] [0200] +16:40:04 [ 2] [ 16] [6213544001704219] +16:40:04 [ 3] [ 6] [010000] +16:40:04 [ 4] [ 12] [000030000000] +16:40:04 [ 7] [ 10] [0320164751] +16:40:04 [ 11] [ 6] [259307] +16:40:04 [ 12] [ 6] [164751] +16:40:04 [ 13] [ 4] [0320] +16:40:04 [ 14] [ 4] [4912] +16:40:04 [ 15] [ 4] [0320] +16:40:04 [ 18] [ 4] [6011] +16:40:04 [ 22] [ 3] [900] +16:40:04 [ 25] [ 2] [02] +16:40:04 [ 28] [ 9] [D00002000] +16:40:04 [ 32] [ 6] [220699] +16:40:04 [ 35] [ 32] [6213544001704219=491212010421172] +16:40:04 [ 37] [ 12] [507900040632] +16:40:04 [ 41] [ 8] [01000400] +16:40:04 [ 42] [ 15] [APTRA ] +16:40:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:40:04 [ 49] [ 3] [418] +16:40:04 [ 52] [ 16] [E0024DA96F2D5402] +16:40:04 ============================================================================ +16:40:04 + + +waiting on router queue for slot.... +16:40:04 Sending to : +16:40:04 ============================================================================ +16:40:04 Sending to : +16:40:04 ============================================================================ +16:40:04 ============================================================================ +16:40:04 Slot Id : <153> +16:40:04 Transaction Type : REQUEST +16:40:04 Received From : +16:40:04 ============================================================================ +16:40:04 FNo. Len. Field Value +16:40:04 ============================================================================ +16:40:04 [ 1] [ 4] [0200] +16:40:04 [ 2] [ 16] [6213544001368544] +16:40:04 [ 3] [ 6] [010000] +16:40:04 [ 4] [ 12] [000010000000] +16:40:04 [ 7] [ 10] [0320093910] +16:40:04 [ 11] [ 6] [270567] +16:40:04 [ 12] [ 6] [163910] +16:40:04 [ 13] [ 4] [0320] +16:40:04 [ 14] [ 4] [4912] +16:40:04 [ 15] [ 4] [0320] +16:40:04 [ 18] [ 4] [6011] +16:40:04 [ 19] [ 3] [418] +16:40:04 [ 22] [ 3] [021] +16:40:04 [ 25] [ 2] [01] +16:40:04 [ 28] [ 9] [D00002000] +16:40:04 [ 32] [ 6] [180893] +16:40:04 [ 35] [ 32] [6213544001368544=491212016854430] +16:40:04 [ 37] [ 12] [507909270567] +16:40:04 [ 41] [ 8] [0344SVKV] +16:40:04 [ 42] [ 15] [999999 ] +16:40:04 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:40:04 [ 49] [ 3] [418] +16:40:04 [ 52] [ 16] [7137BC7669FA7E5C] +16:40:04 ============================================================================ +16:40:04 + + +waiting on router queue for slot.... +16:40:04 Sending to : +16:40:04 ============================================================================ +16:40:04 ============================================================================ +16:40:04 Slot Id : <153> +16:40:04 Transaction Type : REQUEST +16:40:04 Received From : +16:40:04 ============================================================================ +16:40:04 FNo. Len. Field Value +16:40:04 ============================================================================ +16:40:04 [ 1] [ 4] [0200] +16:40:04 [ 2] [ 16] [6213544001368544] +16:40:04 [ 3] [ 6] [010000] +16:40:04 [ 4] [ 12] [000010000000] +16:40:04 [ 7] [ 10] [0320093910] +16:40:04 [ 11] [ 6] [270567] +16:40:04 [ 12] [ 6] [163910] +16:40:04 [ 13] [ 4] [0320] +16:40:04 [ 14] [ 4] [4912] +16:40:04 [ 15] [ 4] [0320] +16:40:04 [ 18] [ 4] [6011] +16:40:04 [ 19] [ 3] [418] +16:40:04 [ 22] [ 3] [021] +16:40:04 [ 25] [ 2] [01] +16:40:04 [ 28] [ 9] [D00002000] +16:40:04 [ 32] [ 6] [180893] +16:40:04 [ 35] [ 32] [6213544001368544=491212016854430] +16:40:04 [ 37] [ 12] [507909270567] +16:40:04 [ 41] [ 8] [0344SVKV] +16:40:04 [ 42] [ 15] [999999 ] +16:40:04 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:40:04 [ 49] [ 3] [418] +16:40:04 [ 52] [ 16] [E8C1D00EBF983760] +16:40:04 ============================================================================ +16:40:04 + + +waiting on router queue for slot.... +16:40:04 Sending to : <0> +16:40:04 ============================================================================ +16:40:04 ============================================================================ +16:40:04 Slot Id : <133> +16:40:04 Transaction Type : REQUEST +16:40:04 Received From : +16:40:04 ============================================================================ +16:40:04 FNo. Len. Field Value +16:40:04 ============================================================================ +16:40:04 [ 1] [ 4] [0200] +16:40:04 [ 2] [ 16] [1808930400011938] +16:40:04 [ 3] [ 6] [301000] +16:40:04 [ 4] [ 12] [000000000000] +16:40:04 [ 7] [ 10] [0320164025] +16:40:04 [ 11] [ 6] [208867] +16:40:04 [ 12] [ 6] [163618] +16:40:04 [ 13] [ 4] [0320] +16:40:04 [ 14] [ 4] [1803] +16:40:04 [ 15] [ 4] [0320] +16:40:04 [ 18] [ 4] [6011] +16:40:04 [ 19] [ 3] [418] +16:40:04 [ 22] [ 3] [021] +16:40:04 [ 25] [ 2] [01] +16:40:04 [ 28] [ 9] [D00000000] +16:40:04 [ 32] [ 6] [198901] +16:40:04 [ 35] [ 27] [1808930400011938=1803500765] +16:40:04 [ 37] [ 12] [507916208867] +16:40:04 [ 41] [ 8] [00852902] +16:40:04 [ 42] [ 15] [000000040852902] +16:40:04 [ 43] [ 40] [ATM SAVANCH II VN ] +16:40:04 [ 49] [ 3] [418] +16:40:04 [ 52] [ 16] [0D4117D3A7F9E440] +16:40:04 ============================================================================ +16:40:04 + + +waiting on router queue for slot.... +16:40:04 Sending to : +16:40:04 ============================================================================ +16:40:04 Sending to : +16:40:04 ============================================================================ +16:40:05 ============================================================================ +16:40:05 Slot Id : <120> +16:40:05 Transaction Type : REQUEST +16:40:05 Received From : +16:40:05 ============================================================================ +16:40:05 FNo. Len. Field Value +16:40:05 ============================================================================ +16:40:05 [ 1] [ 4] [0200] +16:40:05 [ 2] [ 16] [6213544001704219] +16:40:05 [ 3] [ 6] [010000] +16:40:05 [ 4] [ 12] [000030000000] +16:40:05 [ 7] [ 10] [0320164751] +16:40:05 [ 11] [ 6] [259307] +16:40:05 [ 12] [ 6] [164751] +16:40:05 [ 13] [ 4] [0320] +16:40:05 [ 14] [ 4] [4912] +16:40:05 [ 15] [ 4] [0320] +16:40:05 [ 18] [ 4] [6011] +16:40:05 [ 22] [ 3] [900] +16:40:05 [ 25] [ 2] [02] +16:40:05 [ 28] [ 9] [D00002000] +16:40:05 [ 32] [ 6] [220699] +16:40:05 [ 35] [ 32] [6213544001704219=491212010421172] +16:40:05 [ 37] [ 12] [507900040632] +16:40:05 [ 41] [ 8] [01000400] +16:40:05 [ 42] [ 15] [APTRA ] +16:40:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:40:05 [ 49] [ 3] [418] +16:40:05 [ 52] [ 16] [E0024DA96F2D5402] +16:40:05 ============================================================================ +16:40:05 + + +waiting on router queue for slot.... +16:40:05 Sending to : +16:40:05 ============================================================================ +16:40:05 ============================================================================ +16:40:05 Slot Id : <120> +16:40:05 Transaction Type : REQUEST +16:40:05 Received From : +16:40:05 ============================================================================ +16:40:05 FNo. Len. Field Value +16:40:05 ============================================================================ +16:40:05 [ 1] [ 4] [0200] +16:40:05 [ 2] [ 16] [6213544001704219] +16:40:05 [ 3] [ 6] [010000] +16:40:05 [ 4] [ 12] [000030000000] +16:40:05 [ 7] [ 10] [0320164751] +16:40:05 [ 11] [ 6] [259307] +16:40:05 [ 12] [ 6] [164751] +16:40:05 [ 13] [ 4] [0320] +16:40:05 [ 14] [ 4] [4912] +16:40:05 [ 15] [ 4] [0320] +16:40:05 [ 18] [ 4] [6011] +16:40:05 [ 22] [ 3] [900] +16:40:05 [ 25] [ 2] [02] +16:40:05 [ 28] [ 9] [D00002000] +16:40:05 [ 32] [ 6] [220699] +16:40:05 [ 35] [ 32] [6213544001704219=491212010421172] +16:40:05 [ 37] [ 12] [507900040632] +16:40:05 [ 41] [ 8] [01000400] +16:40:05 [ 42] [ 15] [APTRA ] +16:40:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:40:05 [ 49] [ 3] [418] +16:40:05 [ 52] [ 16] [56EE88529EE9D2BF] +16:40:05 ============================================================================ +16:40:05 + + +waiting on router queue for slot.... +16:40:05 Sending to : <0> +16:40:05 ============================================================================ +16:40:05 ============================================================================ +16:40:05 Slot Id : <133> +16:40:05 Transaction Type : REQUEST +16:40:05 Received From : +16:40:05 ============================================================================ +16:40:05 FNo. Len. Field Value +16:40:05 ============================================================================ +16:40:05 [ 1] [ 4] [0200] +16:40:05 [ 2] [ 16] [1808930400011938] +16:40:05 [ 3] [ 6] [301000] +16:40:05 [ 4] [ 12] [000000000000] +16:40:05 [ 7] [ 10] [0320164025] +16:40:05 [ 11] [ 6] [208867] +16:40:05 [ 12] [ 6] [163618] +16:40:05 [ 13] [ 4] [0320] +16:40:05 [ 14] [ 4] [1803] +16:40:05 [ 15] [ 4] [0320] +16:40:05 [ 18] [ 4] [6011] +16:40:05 [ 19] [ 3] [418] +16:40:05 [ 22] [ 3] [021] +16:40:05 [ 25] [ 2] [01] +16:40:05 [ 28] [ 9] [D00000000] +16:40:05 [ 32] [ 6] [198901] +16:40:05 [ 35] [ 27] [1808930400011938=1803500765] +16:40:05 [ 37] [ 12] [507916208867] +16:40:05 [ 41] [ 8] [00852902] +16:40:05 [ 42] [ 15] [000000040852902] +16:40:05 [ 43] [ 40] [ATM SAVANCH II VN ] +16:40:05 [ 49] [ 3] [418] +16:40:05 [ 52] [ 16] [0D4117D3A7F9E440] +16:40:05 ============================================================================ +16:40:05 + + +waiting on router queue for slot.... +16:40:05 Sending to : +16:40:05 ============================================================================ +16:40:05 ============================================================================ +16:40:05 Slot Id : <133> +16:40:05 Transaction Type : REQUEST +16:40:05 Received From : +16:40:05 ============================================================================ +16:40:05 FNo. Len. Field Value +16:40:05 ============================================================================ +16:40:05 [ 1] [ 4] [0200] +16:40:05 [ 2] [ 16] [1808930400011938] +16:40:05 [ 3] [ 6] [301000] +16:40:05 [ 4] [ 12] [000000000000] +16:40:05 [ 7] [ 10] [0320164025] +16:40:05 [ 11] [ 6] [208867] +16:40:05 [ 12] [ 6] [163618] +16:40:05 [ 13] [ 4] [0320] +16:40:05 [ 14] [ 4] [1803] +16:40:05 [ 15] [ 4] [0320] +16:40:05 [ 18] [ 4] [6011] +16:40:05 [ 19] [ 3] [418] +16:40:05 [ 22] [ 3] [021] +16:40:05 [ 25] [ 2] [01] +16:40:05 [ 28] [ 9] [D00000000] +16:40:05 [ 32] [ 6] [198901] +16:40:05 [ 35] [ 27] [1808930400011938=1803500765] +16:40:05 [ 37] [ 12] [507916208867] +16:40:05 [ 41] [ 8] [00852902] +16:40:05 [ 42] [ 15] [000000040852902] +16:40:05 [ 43] [ 40] [ATM SAVANCH II VN ] +16:40:05 [ 49] [ 3] [418] +16:40:05 [ 52] [ 16] [FDBBA6F40F41E86C] +16:40:05 ============================================================================ +16:40:05 + + +waiting on router queue for slot.... +16:40:05 Sending to : <2> +16:40:05 ============================================================================ +16:40:05 ============================================================================ +16:40:05 Slot Id : <120> +16:40:05 Transaction Type : RESPONSE +16:40:05 Received From : +16:40:05 ============================================================================ +16:40:05 FNo. Len. Field Value +16:40:05 ============================================================================ +16:40:05 [ 1] [ 4] [0210] +16:40:05 [ 2] [ 16] [6213544001704219] +16:40:05 [ 3] [ 6] [010000] +16:40:05 [ 4] [ 12] [000030000000] +16:40:05 [ 7] [ 10] [0320164751] +16:40:05 [ 11] [ 6] [259307] +16:40:05 [ 12] [ 6] [164751] +16:40:05 [ 13] [ 4] [0320] +16:40:05 [ 15] [ 4] [0320] +16:40:05 [ 18] [ 4] [6011] +16:40:05 [ 32] [ 6] [220699] +16:40:05 [ 35] [ 32] [6213544001704219=491212010421172] +16:40:05 [ 37] [ 12] [507900040632] +16:40:05 [ 38] [ 6] [259307] +16:40:05 [ 39] [ 2] [51] +16:40:05 [ 41] [ 8] [01000400] +16:40:05 [ 49] [ 3] [418] +16:40:05 [ 54] [ 40] [0001418C0000324017150002418C000032401715] +16:40:05 ============================================================================ +16:40:05 Sending to : +16:40:05 ============================================================================ +16:40:05 + + +waiting on router queue for slot.... +16:40:05 ============================================================================ +16:40:05 Slot Id : <153> +16:40:05 Transaction Type : RESPONSE +16:40:05 Received From : +16:40:05 ============================================================================ +16:40:05 FNo. Len. Field Value +16:40:05 ============================================================================ +16:40:05 [ 1] [ 4] [0210] +16:40:05 [ 2] [ 16] [6213544001368544] +16:40:05 [ 3] [ 6] [010000] +16:40:05 [ 4] [ 12] [000010000000] +16:40:05 [ 7] [ 10] [0320093910] +16:40:05 [ 11] [ 6] [270567] +16:40:05 [ 12] [ 6] [163910] +16:40:05 [ 13] [ 4] [0320] +16:40:05 [ 15] [ 4] [0320] +16:40:05 [ 18] [ 4] [6011] +16:40:05 [ 19] [ 3] [418] +16:40:05 [ 32] [ 6] [180893] +16:40:05 [ 35] [ 32] [6213544001368544=491212016854430] +16:40:05 [ 37] [ 12] [507909270567] +16:40:05 [ 38] [ 6] [974913] +16:40:05 [ 39] [ 2] [00] +16:40:05 [ 41] [ 8] [0344SVKV] +16:40:05 [ 49] [ 3] [418] +16:40:05 [ 54] [ 40] [0001418C0002457621100002418C000245762110] +16:40:05 ============================================================================ +16:40:05 Sending to : +16:40:05 ============================================================================ +16:40:05 + + +waiting on router queue for slot.... +16:40:06 ============================================================================ +16:40:06 Slot Id : <120> +16:40:06 Transaction Type : RESPONSE +16:40:06 Received From : +16:40:06 ============================================================================ +16:40:06 FNo. Len. Field Value +16:40:06 ============================================================================ +16:40:06 [ 1] [ 4] [0210] +16:40:06 [ 2] [ 16] [6213544001704219] +16:40:06 [ 3] [ 6] [010000] +16:40:06 [ 4] [ 12] [000030000000] +16:40:06 [ 7] [ 10] [0320164751] +16:40:06 [ 11] [ 6] [259307] +16:40:06 [ 12] [ 6] [164751] +16:40:06 [ 13] [ 4] [0320] +16:40:06 [ 15] [ 4] [0320] +16:40:06 [ 18] [ 4] [6011] +16:40:06 [ 32] [ 6] [220699] +16:40:06 [ 35] [ 32] [6213544001704219=491212010421172] +16:40:06 [ 37] [ 12] [507900040632] +16:40:06 [ 38] [ 6] [259307] +16:40:06 [ 39] [ 2] [51] +16:40:06 [ 41] [ 8] [01000400] +16:40:06 [ 49] [ 3] [418] +16:40:06 [ 54] [ 40] [0001418C0000324017150002418C000032401715] +16:40:06 ============================================================================ +16:40:06 Calculate Source COMM Id = 1 +16:40:06 ============================================================================ +16:40:06 + + +waiting on router queue for slot.... +16:40:08 ============================================================================ +16:40:08 Slot Id : <153> +16:40:08 Transaction Type : RESPONSE +16:40:08 Received From : +16:40:08 ============================================================================ +16:40:08 FNo. Len. Field Value +16:40:08 ============================================================================ +16:40:08 [ 1] [ 4] [0210] +16:40:08 [ 2] [ 16] [6213544001368544] +16:40:08 [ 3] [ 6] [010000] +16:40:08 [ 4] [ 12] [000010000000] +16:40:08 [ 7] [ 10] [0320093910] +16:40:08 [ 11] [ 6] [270567] +16:40:08 [ 12] [ 6] [163910] +16:40:08 [ 13] [ 4] [0320] +16:40:08 [ 15] [ 4] [0320] +16:40:08 [ 18] [ 4] [6011] +16:40:08 [ 19] [ 3] [418] +16:40:08 [ 32] [ 6] [180893] +16:40:08 [ 35] [ 32] [6213544001368544=491212016854430] +16:40:08 [ 37] [ 12] [507909270567] +16:40:08 [ 38] [ 6] [974913] +16:40:08 [ 39] [ 2] [00] +16:40:08 [ 41] [ 8] [0344SVKV] +16:40:08 [ 49] [ 3] [418] +16:40:08 [ 54] [ 40] [0001418C0002457621100002418C000245762110] +16:40:08 ============================================================================ +16:40:08 Calculate Source COMM Id = 2 +16:40:08 ============================================================================ +16:40:08 + + +waiting on router queue for slot.... +16:40:08 ============================================================================ +16:40:08 Slot Id : <150> +16:40:08 Transaction Type : REQUEST +16:40:08 Received From : +16:40:08 ============================================================================ +16:40:08 FNo. Len. Field Value +16:40:08 ============================================================================ +16:40:08 [ 1] [ 4] [0200] +16:40:08 [ 2] [ 16] [6213545000190052] +16:40:08 [ 3] [ 6] [011000] +16:40:08 [ 4] [ 12] [000030000000] +16:40:08 [ 7] [ 10] [0320164755] +16:40:08 [ 11] [ 6] [240869] +16:40:08 [ 12] [ 6] [164755] +16:40:08 [ 13] [ 4] [0320] +16:40:08 [ 14] [ 4] [4912] +16:40:08 [ 15] [ 4] [0320] +16:40:08 [ 18] [ 4] [6011] +16:40:08 [ 22] [ 3] [900] +16:40:08 [ 25] [ 2] [02] +16:40:08 [ 28] [ 9] [D00002000] +16:40:08 [ 32] [ 6] [220699] +16:40:08 [ 35] [ 32] [6213545000190052=491212019005799] +16:40:08 [ 37] [ 12] [507900410456] +16:40:08 [ 41] [ 8] [08000300] +16:40:08 [ 42] [ 15] [APTRA ] +16:40:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:40:08 [ 49] [ 3] [418] +16:40:08 [ 52] [ 16] [706019EAD985B2EF] +16:40:08 ============================================================================ +16:40:08 + + +waiting on router queue for slot.... +16:40:08 Sending to : +16:40:08 ============================================================================ +16:40:08 Sending to : +16:40:08 ============================================================================ +16:40:08 ============================================================================ +16:40:08 Slot Id : <150> +16:40:08 Transaction Type : REQUEST +16:40:08 Received From : +16:40:08 ============================================================================ +16:40:08 FNo. Len. Field Value +16:40:08 ============================================================================ +16:40:08 [ 1] [ 4] [0200] +16:40:08 [ 2] [ 16] [6213545000190052] +16:40:08 [ 3] [ 6] [011000] +16:40:08 [ 4] [ 12] [000030000000] +16:40:08 [ 7] [ 10] [0320164755] +16:40:08 [ 11] [ 6] [240869] +16:40:08 [ 12] [ 6] [164755] +16:40:08 [ 13] [ 4] [0320] +16:40:08 [ 14] [ 4] [4912] +16:40:08 [ 15] [ 4] [0320] +16:40:08 [ 18] [ 4] [6011] +16:40:08 [ 22] [ 3] [900] +16:40:08 [ 25] [ 2] [02] +16:40:08 [ 28] [ 9] [D00002000] +16:40:08 [ 32] [ 6] [220699] +16:40:08 [ 35] [ 32] [6213545000190052=491212019005799] +16:40:08 [ 37] [ 12] [507900410456] +16:40:08 [ 41] [ 8] [08000300] +16:40:08 [ 42] [ 15] [APTRA ] +16:40:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:40:08 [ 49] [ 3] [418] +16:40:08 [ 52] [ 16] [706019EAD985B2EF] +16:40:08 ============================================================================ +16:40:08 + + +waiting on router queue for slot.... +16:40:08 Sending to : +16:40:08 ============================================================================ +16:40:08 ============================================================================ +16:40:08 Slot Id : <150> +16:40:08 Transaction Type : REQUEST +16:40:08 Received From : +16:40:08 ============================================================================ +16:40:08 FNo. Len. Field Value +16:40:08 ============================================================================ +16:40:08 [ 1] [ 4] [0200] +16:40:08 [ 2] [ 16] [6213545000190052] +16:40:08 [ 3] [ 6] [011000] +16:40:08 [ 4] [ 12] [000030000000] +16:40:08 [ 7] [ 10] [0320164755] +16:40:08 [ 11] [ 6] [240869] +16:40:08 [ 12] [ 6] [164755] +16:40:08 [ 13] [ 4] [0320] +16:40:08 [ 14] [ 4] [4912] +16:40:08 [ 15] [ 4] [0320] +16:40:08 [ 18] [ 4] [6011] +16:40:08 [ 22] [ 3] [900] +16:40:08 [ 25] [ 2] [02] +16:40:08 [ 28] [ 9] [D00002000] +16:40:08 [ 32] [ 6] [220699] +16:40:08 [ 35] [ 32] [6213545000190052=491212019005799] +16:40:08 [ 37] [ 12] [507900410456] +16:40:08 [ 41] [ 8] [08000300] +16:40:08 [ 42] [ 15] [APTRA ] +16:40:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:40:08 [ 49] [ 3] [418] +16:40:08 [ 52] [ 16] [A25755F4B9093FDF] +16:40:08 ============================================================================ +16:40:08 + + +waiting on router queue for slot.... +16:40:08 Sending to : <0> +16:40:08 ============================================================================ +16:40:10 ============================================================================ +16:40:10 Slot Id : <150> +16:40:10 Transaction Type : RESPONSE +16:40:10 Received From : +16:40:10 ============================================================================ +16:40:10 FNo. Len. Field Value +16:40:10 ============================================================================ +16:40:10 [ 1] [ 4] [0210] +16:40:10 [ 2] [ 16] [6213545000190052] +16:40:10 [ 3] [ 6] [011000] +16:40:10 [ 4] [ 12] [000030000000] +16:40:10 [ 7] [ 10] [0320164755] +16:40:10 [ 11] [ 6] [240869] +16:40:10 [ 12] [ 6] [164755] +16:40:10 [ 13] [ 4] [0320] +16:40:10 [ 15] [ 4] [0320] +16:40:10 [ 18] [ 4] [6011] +16:40:10 [ 32] [ 6] [220699] +16:40:10 [ 35] [ 32] [6213545000190052=491212019005799] +16:40:10 [ 37] [ 12] [507900410456] +16:40:10 [ 38] [ 6] [012225] +16:40:10 [ 39] [ 2] [00] +16:40:10 [ 41] [ 8] [08000300] +16:40:10 [ 49] [ 3] [418] +16:40:10 [ 54] [ 40] [1001418C0000238604931002418C000023860493] +16:40:10 ============================================================================ +16:40:10 Sending to : +16:40:10 ============================================================================ +16:40:10 + + +waiting on router queue for slot.... +16:40:10 ============================================================================ +16:40:10 Slot Id : <158> +16:40:10 Transaction Type : RESPONSE +16:40:10 Received From : +16:40:10 ============================================================================ +16:40:10 FNo. Len. Field Value +16:40:10 ============================================================================ +16:40:10 [ 1] [ 4] [0210] +16:40:10 [ 2] [ 16] [1808931400007850] +16:40:10 [ 3] [ 6] [010000] +16:40:10 [ 4] [ 12] [000050000000] +16:40:10 [ 6] [ 12] [000050000000] +16:40:10 [ 7] [ 10] [0320163959] +16:40:10 [ 11] [ 6] [802573] +16:40:10 [ 12] [ 6] [163959] +16:40:10 [ 13] [ 4] [0320] +16:40:10 [ 18] [ 4] [6011] +16:40:10 [ 19] [ 3] [418] +16:40:10 [ 22] [ 3] [021] +16:40:10 [ 32] [ 6] [621354] +16:40:10 [ 35] [ 27] [1808931400007850=1803500731] +16:40:10 [ 37] [ 12] [507904719799] +16:40:10 [ 38] [ 6] [802573] +16:40:10 [ 39] [ 2] [51] +16:40:10 [ 41] [ 8] [18001000] +16:40:10 [ 49] [ 3] [418] +16:40:10 [ 52] [ 16] [FAFCBCCF0E789021] +16:40:10 ============================================================================ +16:40:10 Sending to : +16:40:10 ============================================================================ +16:40:10 + + +waiting on router queue for slot.... +16:40:10 ============================================================================ +16:40:10 Slot Id : <133> +16:40:10 Transaction Type : RESPONSE +16:40:10 Received From : +16:40:10 ============================================================================ +16:40:10 FNo. Len. Field Value +16:40:10 ============================================================================ +16:40:10 [ 1] [ 4] [0210] +16:40:10 [ 2] [ 16] [1808930400011938] +16:40:10 [ 3] [ 6] [301000] +16:40:10 [ 7] [ 10] [0320164025] +16:40:10 [ 11] [ 6] [208867] +16:40:10 [ 12] [ 6] [163618] +16:40:10 [ 13] [ 4] [0320] +16:40:10 [ 14] [ 4] [1803] +16:40:10 [ 19] [ 3] [418] +16:40:10 [ 32] [ 6] [198901] +16:40:10 [ 37] [ 12] [507916208867] +16:40:10 [ 38] [ 6] [208867] +16:40:10 [ 39] [ 2] [00] +16:40:10 [ 41] [ 8] [00852902] +16:40:10 [ 49] [ 3] [418] +16:40:10 [ 52] [ 16] [FDBBA6F40F41E86C] +16:40:10 [ 54] [ 20] [1002418C000107898600] +16:40:10 ============================================================================ +16:40:10 Sending to : +16:40:10 ============================================================================ +16:40:10 + + +waiting on router queue for slot.... +16:40:12 ============================================================================ +16:40:12 Slot Id : <150> +16:40:12 Transaction Type : RESPONSE +16:40:12 Received From : +16:40:12 ============================================================================ +16:40:12 FNo. Len. Field Value +16:40:12 ============================================================================ +16:40:12 [ 1] [ 4] [0210] +16:40:12 [ 2] [ 16] [6213545000190052] +16:40:12 [ 3] [ 6] [011000] +16:40:12 [ 4] [ 12] [000030000000] +16:40:12 [ 7] [ 10] [0320164755] +16:40:12 [ 11] [ 6] [240869] +16:40:12 [ 12] [ 6] [164755] +16:40:12 [ 13] [ 4] [0320] +16:40:12 [ 15] [ 4] [0320] +16:40:12 [ 18] [ 4] [6011] +16:40:12 [ 32] [ 6] [220699] +16:40:12 [ 35] [ 32] [6213545000190052=491212019005799] +16:40:12 [ 37] [ 12] [507900410456] +16:40:12 [ 38] [ 6] [012225] +16:40:12 [ 39] [ 2] [00] +16:40:12 [ 41] [ 8] [08000300] +16:40:12 [ 49] [ 3] [418] +16:40:12 [ 54] [ 40] [1001418C0000238604931002418C000023860493] +16:40:12 ============================================================================ +16:40:12 Calculate Source COMM Id = 1 +16:40:12 ============================================================================ +16:40:12 + + +waiting on router queue for slot.... +16:40:12 ============================================================================ +16:40:12 Slot Id : <133> +16:40:12 Transaction Type : RESPONSE +16:40:12 Received From : +16:40:12 ============================================================================ +16:40:12 FNo. Len. Field Value +16:40:12 ============================================================================ +16:40:12 [ 1] [ 4] [0210] +16:40:12 [ 2] [ 16] [1808930400011938] +16:40:12 [ 3] [ 6] [301000] +16:40:12 [ 7] [ 10] [0320164025] +16:40:12 [ 11] [ 6] [208867] +16:40:12 [ 12] [ 6] [163618] +16:40:12 [ 13] [ 4] [0320] +16:40:12 [ 14] [ 4] [1803] +16:40:12 [ 19] [ 3] [418] +16:40:12 [ 32] [ 6] [198901] +16:40:12 [ 37] [ 12] [507916208867] +16:40:12 [ 38] [ 6] [208867] +16:40:12 [ 39] [ 2] [00] +16:40:12 [ 41] [ 8] [00852902] +16:40:12 [ 49] [ 3] [418] +16:40:12 [ 52] [ 16] [FDBBA6F40F41E86C] +16:40:12 [ 54] [ 20] [1002418C000107898600] +16:40:12 ============================================================================ +16:40:12 Calculate Source COMM Id = 5 +16:40:12 ============================================================================ +16:40:12 + + +waiting on router queue for slot.... +16:40:14 ============================================================================ +16:40:14 Slot Id : <158> +16:40:14 Transaction Type : RESPONSE +16:40:14 Received From : +16:40:14 ============================================================================ +16:40:14 FNo. Len. Field Value +16:40:14 ============================================================================ +16:40:14 [ 1] [ 4] [0210] +16:40:14 [ 2] [ 16] [1808931400007850] +16:40:14 [ 3] [ 6] [010000] +16:40:14 [ 4] [ 12] [000050000000] +16:40:14 [ 6] [ 12] [000050000000] +16:40:14 [ 7] [ 10] [0320163959] +16:40:14 [ 11] [ 6] [802573] +16:40:14 [ 12] [ 6] [163959] +16:40:14 [ 13] [ 4] [0320] +16:40:14 [ 18] [ 4] [6011] +16:40:14 [ 19] [ 3] [418] +16:40:14 [ 22] [ 3] [021] +16:40:14 [ 32] [ 6] [621354] +16:40:14 [ 35] [ 27] [1808931400007850=1803500731] +16:40:14 [ 37] [ 12] [507904719799] +16:40:14 [ 38] [ 6] [802573] +16:40:14 [ 39] [ 2] [51] +16:40:14 [ 41] [ 8] [18001000] +16:40:14 [ 49] [ 3] [418] +16:40:14 [ 52] [ 16] [FAFCBCCF0E789021] +16:40:14 ============================================================================ +16:40:14 Calculate Source COMM Id = 0 +16:40:14 ============================================================================ +16:40:14 + + +waiting on router queue for slot.... +16:40:21 ============================================================================ +16:40:21 Slot Id : <110> +16:40:21 Transaction Type : REQUEST +16:40:21 Received From : +16:40:21 ============================================================================ +16:40:21 FNo. Len. Field Value +16:40:21 ============================================================================ +16:40:21 [ 1] [ 4] [0800] +16:40:21 [ 7] [ 10] [0320093927] +16:40:21 [ 11] [ 6] [157279] +16:40:21 [ 70] [ 3] [301] +16:40:21 ============================================================================ +16:40:21 + + +waiting on router queue for slot.... +16:40:21 Sending to : +16:40:21 ============================================================================ +16:40:21 ============================================================================ +16:40:21 Slot Id : <110> +16:40:21 Transaction Type : RESPONSE +16:40:21 Received From : +16:40:21 ============================================================================ +16:40:21 FNo. Len. Field Value +16:40:21 ============================================================================ +16:40:21 [ 1] [ 4] [0810] +16:40:21 [ 7] [ 10] [0320093927] +16:40:21 [ 11] [ 6] [157279] +16:40:21 [ 39] [ 2] [00] +16:40:21 [ 70] [ 3] [301] +16:40:21 ============================================================================ +16:40:21 Calculate Source COMM Id = 2 +16:40:21 ============================================================================ +16:40:21 + + +waiting on router queue for slot.... +16:40:29 ============================================================================ +16:40:29 Slot Id : <159> +16:40:29 Transaction Type : REQUEST +16:40:29 Received From : +16:40:29 ============================================================================ +16:40:29 FNo. Len. Field Value +16:40:29 ============================================================================ +16:40:29 [ 1] [ 4] [0200] +16:40:29 [ 2] [ 16] [1808930400011938] +16:40:29 [ 3] [ 6] [011000] +16:40:29 [ 4] [ 12] [000100000000] +16:40:29 [ 7] [ 10] [0320164050] +16:40:29 [ 11] [ 6] [208875] +16:40:29 [ 12] [ 6] [163643] +16:40:29 [ 13] [ 4] [0320] +16:40:29 [ 14] [ 4] [1803] +16:40:29 [ 15] [ 4] [0320] +16:40:29 [ 18] [ 4] [6011] +16:40:29 [ 19] [ 3] [418] +16:40:29 [ 22] [ 3] [021] +16:40:29 [ 25] [ 2] [01] +16:40:29 [ 28] [ 9] [D00002000] +16:40:29 [ 32] [ 6] [198901] +16:40:29 [ 35] [ 27] [1808930400011938=1803500765] +16:40:29 [ 37] [ 12] [507916208875] +16:40:29 [ 41] [ 8] [00852902] +16:40:29 [ 42] [ 15] [000000040852902] +16:40:29 [ 43] [ 40] [ATM SAVANCH II VN ] +16:40:29 [ 49] [ 3] [418] +16:40:29 [ 52] [ 16] [0D4117D3A7F9E440] +16:40:29 ============================================================================ +16:40:29 + + +waiting on router queue for slot.... +16:40:29 Sending to : +16:40:29 ============================================================================ +16:40:29 Sending to : +16:40:29 ============================================================================ +16:40:29 ============================================================================ +16:40:29 Slot Id : <159> +16:40:29 Transaction Type : REQUEST +16:40:29 Received From : +16:40:29 ============================================================================ +16:40:29 FNo. Len. Field Value +16:40:29 ============================================================================ +16:40:29 [ 1] [ 4] [0200] +16:40:29 [ 2] [ 16] [1808930400011938] +16:40:29 [ 3] [ 6] [011000] +16:40:29 [ 4] [ 12] [000100000000] +16:40:29 [ 7] [ 10] [0320164050] +16:40:29 [ 11] [ 6] [208875] +16:40:29 [ 12] [ 6] [163643] +16:40:29 [ 13] [ 4] [0320] +16:40:29 [ 14] [ 4] [1803] +16:40:29 [ 15] [ 4] [0320] +16:40:29 [ 18] [ 4] [6011] +16:40:29 [ 19] [ 3] [418] +16:40:29 [ 22] [ 3] [021] +16:40:29 [ 25] [ 2] [01] +16:40:29 [ 28] [ 9] [D00002000] +16:40:29 [ 32] [ 6] [198901] +16:40:29 [ 35] [ 27] [1808930400011938=1803500765] +16:40:29 [ 37] [ 12] [507916208875] +16:40:29 [ 41] [ 8] [00852902] +16:40:29 [ 42] [ 15] [000000040852902] +16:40:29 [ 43] [ 40] [ATM SAVANCH II VN ] +16:40:29 [ 49] [ 3] [418] +16:40:29 [ 52] [ 16] [0D4117D3A7F9E440] +16:40:29 ============================================================================ +16:40:29 + + +waiting on router queue for slot.... +16:40:29 Sending to : +16:40:29 ============================================================================ +16:40:29 ============================================================================ +16:40:29 Slot Id : <159> +16:40:29 Transaction Type : REQUEST +16:40:29 Received From : +16:40:29 ============================================================================ +16:40:29 FNo. Len. Field Value +16:40:29 ============================================================================ +16:40:29 [ 1] [ 4] [0200] +16:40:29 [ 2] [ 16] [1808930400011938] +16:40:29 [ 3] [ 6] [011000] +16:40:29 [ 4] [ 12] [000100000000] +16:40:29 [ 7] [ 10] [0320164050] +16:40:29 [ 11] [ 6] [208875] +16:40:29 [ 12] [ 6] [163643] +16:40:29 [ 13] [ 4] [0320] +16:40:29 [ 14] [ 4] [1803] +16:40:29 [ 15] [ 4] [0320] +16:40:29 [ 18] [ 4] [6011] +16:40:29 [ 19] [ 3] [418] +16:40:29 [ 22] [ 3] [021] +16:40:29 [ 25] [ 2] [01] +16:40:29 [ 28] [ 9] [D00002000] +16:40:29 [ 32] [ 6] [198901] +16:40:29 [ 35] [ 27] [1808930400011938=1803500765] +16:40:29 [ 37] [ 12] [507916208875] +16:40:29 [ 41] [ 8] [00852902] +16:40:29 [ 42] [ 15] [000000040852902] +16:40:29 [ 43] [ 40] [ATM SAVANCH II VN ] +16:40:29 [ 49] [ 3] [418] +16:40:29 [ 52] [ 16] [FDBBA6F40F41E86C] +16:40:29 ============================================================================ +16:40:29 + + +waiting on router queue for slot.... +16:40:29 Sending to : <2> +16:40:29 ============================================================================ +16:40:35 ============================================================================ +16:40:35 Slot Id : <159> +16:40:35 Transaction Type : RESPONSE +16:40:35 Received From : +16:40:35 ============================================================================ +16:40:35 FNo. Len. Field Value +16:40:35 ============================================================================ +16:40:35 [ 1] [ 4] [0210] +16:40:35 [ 2] [ 16] [1808930400011938] +16:40:35 [ 3] [ 6] [011000] +16:40:35 [ 4] [ 12] [000100000000] +16:40:35 [ 6] [ 12] [000100000000] +16:40:35 [ 7] [ 10] [0320164050] +16:40:35 [ 11] [ 6] [208875] +16:40:35 [ 12] [ 6] [163643] +16:40:35 [ 13] [ 4] [0320] +16:40:35 [ 14] [ 4] [1803] +16:40:35 [ 18] [ 4] [6011] +16:40:35 [ 19] [ 3] [418] +16:40:35 [ 22] [ 3] [021] +16:40:35 [ 32] [ 6] [198901] +16:40:35 [ 35] [ 27] [1808930400011938=1803500765] +16:40:35 [ 37] [ 12] [507916208875] +16:40:35 [ 38] [ 6] [208875] +16:40:35 [ 39] [ 2] [00] +16:40:35 [ 41] [ 8] [00852902] +16:40:35 [ 49] [ 3] [418] +16:40:35 [ 52] [ 16] [FDBBA6F40F41E86C] +16:40:35 [ 54] [ 20] [1001418C000007698600] +16:40:35 ============================================================================ +16:40:35 Sending to : +16:40:35 ============================================================================ +16:40:35 + + +waiting on router queue for slot.... +16:40:36 ============================================================================ +16:40:36 Slot Id : <142> +16:40:36 Transaction Type : REQUEST +16:40:36 Received From : +16:40:36 ============================================================================ +16:40:36 FNo. Len. Field Value +16:40:36 ============================================================================ +16:40:36 [ 1] [ 4] [0200] +16:40:36 [ 2] [ 16] [6688990103639900] +16:40:36 [ 3] [ 6] [010000] +16:40:36 [ 4] [ 12] [000100000000] +16:40:36 [ 7] [ 10] [0320164031] +16:40:36 [ 11] [ 6] [802714] +16:40:36 [ 12] [ 6] [164031] +16:40:36 [ 13] [ 4] [0320] +16:40:36 [ 15] [ 4] [0320] +16:40:36 [ 18] [ 4] [6011] +16:40:36 [ 22] [ 3] [900] +16:40:36 [ 25] [ 2] [02] +16:40:36 [ 28] [ 9] [D00002000] +16:40:36 [ 32] [ 6] [621354] +16:40:36 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:40:36 [ 37] [ 12] [507903499614] +16:40:36 [ 41] [ 8] [06002200] +16:40:36 [ 42] [ 15] [NATIVE ] +16:40:36 [ 43] [ 40] [Beng Market Beng LAO] +16:40:36 [ 49] [ 3] [418] +16:40:36 [ 52] [ 16] [48D2EEB63F10A8A0] +16:40:36 ============================================================================ +16:40:36 + + +waiting on router queue for slot.... +16:40:36 Sending to : +16:40:36 ============================================================================ +16:40:36 Sending to : +16:40:36 ============================================================================ +16:40:36 ============================================================================ +16:40:36 Slot Id : <142> +16:40:36 Transaction Type : REQUEST +16:40:36 Received From : +16:40:36 ============================================================================ +16:40:36 FNo. Len. Field Value +16:40:36 ============================================================================ +16:40:36 [ 1] [ 4] [0200] +16:40:36 [ 2] [ 16] [6688990103639900] +16:40:36 [ 3] [ 6] [010000] +16:40:36 [ 4] [ 12] [000100000000] +16:40:36 [ 7] [ 10] [0320164031] +16:40:36 [ 11] [ 6] [802714] +16:40:36 [ 12] [ 6] [164031] +16:40:36 [ 13] [ 4] [0320] +16:40:36 [ 15] [ 4] [0320] +16:40:36 [ 18] [ 4] [6011] +16:40:36 [ 22] [ 3] [900] +16:40:36 [ 25] [ 2] [02] +16:40:36 [ 28] [ 9] [D00002000] +16:40:36 [ 32] [ 6] [621354] +16:40:36 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:40:36 [ 37] [ 12] [507903499614] +16:40:36 [ 41] [ 8] [06002200] +16:40:36 [ 42] [ 15] [NATIVE ] +16:40:36 [ 43] [ 40] [Beng Market Beng LAO] +16:40:36 [ 49] [ 3] [418] +16:40:36 [ 52] [ 16] [48D2EEB63F10A8A0] +16:40:36 ============================================================================ +16:40:36 + + +waiting on router queue for slot.... +16:40:36 Sending to : +16:40:36 ============================================================================ +16:40:36 ============================================================================ +16:40:36 Slot Id : <142> +16:40:36 Transaction Type : REQUEST +16:40:36 Received From : +16:40:36 ============================================================================ +16:40:36 FNo. Len. Field Value +16:40:36 ============================================================================ +16:40:36 [ 1] [ 4] [0200] +16:40:36 [ 2] [ 16] [6688990103639900] +16:40:36 [ 3] [ 6] [010000] +16:40:36 [ 4] [ 12] [000100000000] +16:40:36 [ 7] [ 10] [0320164031] +16:40:36 [ 11] [ 6] [802714] +16:40:36 [ 12] [ 6] [164031] +16:40:36 [ 13] [ 4] [0320] +16:40:36 [ 15] [ 4] [0320] +16:40:36 [ 18] [ 4] [6011] +16:40:36 [ 22] [ 3] [900] +16:40:36 [ 25] [ 2] [02] +16:40:36 [ 28] [ 9] [D00002000] +16:40:36 [ 32] [ 6] [621354] +16:40:36 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:40:36 [ 37] [ 12] [507903499614] +16:40:36 [ 41] [ 8] [06002200] +16:40:36 [ 42] [ 15] [NATIVE ] +16:40:36 [ 43] [ 40] [Beng Market Beng LAO] +16:40:36 [ 49] [ 3] [418] +16:40:36 [ 52] [ 16] [E50625F8037D9A71] +16:40:36 ============================================================================ +16:40:36 + + +waiting on router queue for slot.... +16:40:36 Sending to : <4> +16:40:36 ============================================================================ +16:40:36 ============================================================================ +16:40:36 Slot Id : <159> +16:40:36 Transaction Type : RESPONSE +16:40:36 Received From : +16:40:36 ============================================================================ +16:40:36 FNo. Len. Field Value +16:40:36 ============================================================================ +16:40:36 [ 1] [ 4] [0210] +16:40:36 [ 2] [ 16] [1808930400011938] +16:40:36 [ 3] [ 6] [011000] +16:40:36 [ 4] [ 12] [000100000000] +16:40:36 [ 6] [ 12] [000100000000] +16:40:36 [ 7] [ 10] [0320164050] +16:40:36 [ 11] [ 6] [208875] +16:40:36 [ 12] [ 6] [163643] +16:40:36 [ 13] [ 4] [0320] +16:40:36 [ 14] [ 4] [1803] +16:40:36 [ 18] [ 4] [6011] +16:40:36 [ 19] [ 3] [418] +16:40:36 [ 22] [ 3] [021] +16:40:36 [ 32] [ 6] [198901] +16:40:36 [ 35] [ 27] [1808930400011938=1803500765] +16:40:36 [ 37] [ 12] [507916208875] +16:40:36 [ 38] [ 6] [208875] +16:40:36 [ 39] [ 2] [00] +16:40:36 [ 41] [ 8] [00852902] +16:40:36 [ 49] [ 3] [418] +16:40:36 [ 52] [ 16] [FDBBA6F40F41E86C] +16:40:36 [ 54] [ 20] [1001418C000007698600] +16:40:36 ============================================================================ +16:40:36 Calculate Source COMM Id = 5 +16:40:36 ============================================================================ +16:40:36 + + +waiting on router queue for slot.... +16:40:37 ============================================================================ +16:40:37 Slot Id : <142> +16:40:37 Transaction Type : RESPONSE +16:40:37 Received From : +16:40:37 ============================================================================ +16:40:37 FNo. Len. Field Value +16:40:37 ============================================================================ +16:40:37 [ 1] [ 4] [0210] +16:40:37 [ 2] [ 16] [6688990103639900] +16:40:37 [ 3] [ 6] [010000] +16:40:37 [ 4] [ 12] [000100000000] +16:40:37 [ 11] [ 6] [802714] +16:40:37 [ 12] [ 6] [164031] +16:40:37 [ 15] [ 4] [0320] +16:40:37 [ 18] [ 4] [6011] +16:40:37 [ 32] [ 6] [621354] +16:40:37 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:40:37 [ 37] [ 12] [507903499614] +16:40:37 [ 38] [ 6] [548466] +16:40:37 [ 39] [ 2] [00] +16:40:37 [ 41] [ 8] [06002200] +16:40:37 [ 49] [ 3] [418] +16:40:37 [ 54] [ 20] [0002418C000023906194] +16:40:37 ============================================================================ +16:40:37 Sending to : +16:40:37 ============================================================================ +16:40:37 + + +waiting on router queue for slot.... +16:40:39 ============================================================================ +16:40:39 Slot Id : <142> +16:40:39 Transaction Type : RESPONSE +16:40:39 Received From : +16:40:39 ============================================================================ +16:40:39 FNo. Len. Field Value +16:40:39 ============================================================================ +16:40:39 [ 1] [ 4] [0210] +16:40:39 [ 2] [ 16] [6688990103639900] +16:40:39 [ 3] [ 6] [010000] +16:40:39 [ 4] [ 12] [000100000000] +16:40:39 [ 11] [ 6] [802714] +16:40:39 [ 12] [ 6] [164031] +16:40:39 [ 15] [ 4] [0320] +16:40:39 [ 18] [ 4] [6011] +16:40:39 [ 32] [ 6] [621354] +16:40:39 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:40:39 [ 37] [ 12] [507903499614] +16:40:39 [ 38] [ 6] [548466] +16:40:39 [ 39] [ 2] [00] +16:40:39 [ 41] [ 8] [06002200] +16:40:39 [ 49] [ 3] [418] +16:40:39 [ 54] [ 20] [0002418C000023906194] +16:40:39 ============================================================================ +16:40:39 Calculate Source COMM Id = 0 +16:40:39 ============================================================================ +16:40:39 + + +waiting on router queue for slot.... +16:40:39 ============================================================================ +16:40:39 Slot Id : <130> +16:40:39 Transaction Type : REQUEST +16:40:39 Received From : +16:40:39 ============================================================================ +16:40:39 FNo. Len. Field Value +16:40:39 ============================================================================ +16:40:39 [ 1] [ 4] [0200] +16:40:39 [ 2] [ 16] [6213548000001345] +16:40:39 [ 3] [ 6] [012000] +16:40:39 [ 4] [ 12] [000014000000] +16:40:39 [ 7] [ 10] [0320093946] +16:40:39 [ 11] [ 6] [270572] +16:40:39 [ 12] [ 6] [163946] +16:40:39 [ 13] [ 4] [0320] +16:40:39 [ 14] [ 4] [1303] +16:40:39 [ 15] [ 4] [0320] +16:40:39 [ 18] [ 4] [6011] +16:40:39 [ 19] [ 3] [418] +16:40:39 [ 22] [ 3] [021] +16:40:39 [ 25] [ 2] [01] +16:40:39 [ 28] [ 9] [D00002000] +16:40:39 [ 32] [ 6] [180893] +16:40:39 [ 35] [ 32] [6213548000001345=130312010134736] +16:40:39 [ 37] [ 12] [507909270572] +16:40:39 [ 41] [ 8] [0301LPBX] +16:40:39 [ 42] [ 15] [999999 ] +16:40:39 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:40:39 [ 49] [ 3] [418] +16:40:39 [ 52] [ 16] [42B31A951AE324EA] +16:40:39 ============================================================================ +16:40:39 + + +waiting on router queue for slot.... +16:40:39 Sending to : +16:40:39 ============================================================================ +16:40:39 Sending to : +16:40:39 ============================================================================ +16:40:40 ============================================================================ +16:40:40 Slot Id : <130> +16:40:40 Transaction Type : REQUEST +16:40:40 Received From : +16:40:40 ============================================================================ +16:40:40 FNo. Len. Field Value +16:40:40 ============================================================================ +16:40:40 [ 1] [ 4] [0200] +16:40:40 [ 2] [ 16] [6213548000001345] +16:40:40 [ 3] [ 6] [012000] +16:40:40 [ 4] [ 12] [000014000000] +16:40:40 [ 7] [ 10] [0320093946] +16:40:40 [ 11] [ 6] [270572] +16:40:40 [ 12] [ 6] [163946] +16:40:40 [ 13] [ 4] [0320] +16:40:40 [ 14] [ 4] [1303] +16:40:40 [ 15] [ 4] [0320] +16:40:40 [ 18] [ 4] [6011] +16:40:40 [ 19] [ 3] [418] +16:40:40 [ 22] [ 3] [021] +16:40:40 [ 25] [ 2] [01] +16:40:40 [ 28] [ 9] [D00002000] +16:40:40 [ 32] [ 6] [180893] +16:40:40 [ 35] [ 32] [6213548000001345=130312010134736] +16:40:40 [ 37] [ 12] [507909270572] +16:40:40 [ 41] [ 8] [0301LPBX] +16:40:40 [ 42] [ 15] [999999 ] +16:40:40 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:40:40 [ 49] [ 3] [418] +16:40:40 [ 52] [ 16] [42B31A951AE324EA] +16:40:40 ============================================================================ +16:40:40 + + +waiting on router queue for slot.... +16:40:40 Sending to : +16:40:40 ============================================================================ +16:40:40 ============================================================================ +16:40:40 Slot Id : <130> +16:40:40 Transaction Type : REQUEST +16:40:40 Received From : +16:40:40 ============================================================================ +16:40:40 FNo. Len. Field Value +16:40:40 ============================================================================ +16:40:40 [ 1] [ 4] [0200] +16:40:40 [ 2] [ 16] [6213548000001345] +16:40:40 [ 3] [ 6] [012000] +16:40:40 [ 4] [ 12] [000014000000] +16:40:40 [ 7] [ 10] [0320093946] +16:40:40 [ 11] [ 6] [270572] +16:40:40 [ 12] [ 6] [163946] +16:40:40 [ 13] [ 4] [0320] +16:40:40 [ 14] [ 4] [1303] +16:40:40 [ 15] [ 4] [0320] +16:40:40 [ 18] [ 4] [6011] +16:40:40 [ 19] [ 3] [418] +16:40:40 [ 22] [ 3] [021] +16:40:40 [ 25] [ 2] [01] +16:40:40 [ 28] [ 9] [D00002000] +16:40:40 [ 32] [ 6] [180893] +16:40:40 [ 35] [ 32] [6213548000001345=130312010134736] +16:40:40 [ 37] [ 12] [507909270572] +16:40:40 [ 41] [ 8] [0301LPBX] +16:40:40 [ 42] [ 15] [999999 ] +16:40:40 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +16:40:40 [ 49] [ 3] [418] +16:40:40 [ 52] [ 16] [1C4CAA40F19BCFE9] +16:40:40 ============================================================================ +16:40:40 + + +waiting on router queue for slot.... +16:40:40 Sending to : <0> +16:40:40 ============================================================================ +16:40:41 ============================================================================ +16:40:41 Slot Id : <130> +16:40:41 Transaction Type : RESPONSE +16:40:41 Received From : +16:40:41 ============================================================================ +16:40:41 FNo. Len. Field Value +16:40:41 ============================================================================ +16:40:41 [ 1] [ 4] [0210] +16:40:41 [ 2] [ 16] [6213548000001345] +16:40:41 [ 3] [ 6] [012000] +16:40:41 [ 4] [ 12] [000014000000] +16:40:41 [ 7] [ 10] [0320093946] +16:40:41 [ 11] [ 6] [270572] +16:40:41 [ 12] [ 6] [163946] +16:40:41 [ 13] [ 4] [0320] +16:40:41 [ 15] [ 4] [0320] +16:40:41 [ 18] [ 4] [6011] +16:40:41 [ 19] [ 3] [418] +16:40:41 [ 22] [ 3] [021] +16:40:41 [ 32] [ 6] [180893] +16:40:41 [ 35] [ 32] [6213548000001345=130312010134736] +16:40:41 [ 37] [ 12] [507909270572] +16:40:41 [ 38] [ 6] [164035] +16:40:41 [ 39] [ 2] [75] +16:40:41 [ 41] [ 8] [0301LPBX] +16:40:41 [ 49] [ 3] [418] +16:40:41 ============================================================================ +16:40:41 Sending to : +16:40:41 ============================================================================ +16:40:41 + + +waiting on router queue for slot.... +16:40:41 ============================================================================ +16:40:41 Slot Id : <167> +16:40:41 Transaction Type : REQUEST +16:40:41 Received From : +16:40:41 ============================================================================ +16:40:41 FNo. Len. Field Value +16:40:41 ============================================================================ +16:40:41 [ 1] [ 4] [0800] +16:40:41 [ 7] [ 10] [0320093948] +16:40:41 [ 11] [ 6] [157280] +16:40:41 [ 70] [ 3] [301] +16:40:41 ============================================================================ +16:40:41 + + +waiting on router queue for slot.... +16:40:41 Sending to : +16:40:41 ============================================================================ +16:40:41 ============================================================================ +16:40:41 Slot Id : <167> +16:40:41 Transaction Type : RESPONSE +16:40:41 Received From : +16:40:41 ============================================================================ +16:40:41 FNo. Len. Field Value +16:40:41 ============================================================================ +16:40:41 [ 1] [ 4] [0810] +16:40:41 [ 7] [ 10] [0320093948] +16:40:41 [ 11] [ 6] [157280] +16:40:41 [ 39] [ 2] [00] +16:40:41 [ 70] [ 3] [301] +16:40:41 ============================================================================ +16:40:41 Calculate Source COMM Id = 2 +16:40:41 ============================================================================ +16:40:41 + + +waiting on router queue for slot.... +16:40:42 ============================================================================ +16:40:42 Slot Id : <130> +16:40:42 Transaction Type : RESPONSE +16:40:42 Received From : +16:40:42 ============================================================================ +16:40:42 FNo. Len. Field Value +16:40:42 ============================================================================ +16:40:42 [ 1] [ 4] [0210] +16:40:42 [ 2] [ 16] [6213548000001345] +16:40:42 [ 3] [ 6] [012000] +16:40:42 [ 4] [ 12] [000014000000] +16:40:42 [ 7] [ 10] [0320093946] +16:40:42 [ 11] [ 6] [270572] +16:40:42 [ 12] [ 6] [163946] +16:40:42 [ 13] [ 4] [0320] +16:40:42 [ 15] [ 4] [0320] +16:40:42 [ 18] [ 4] [6011] +16:40:42 [ 19] [ 3] [418] +16:40:42 [ 22] [ 3] [021] +16:40:42 [ 32] [ 6] [180893] +16:40:42 [ 35] [ 32] [6213548000001345=130312010134736] +16:40:42 [ 37] [ 12] [507909270572] +16:40:42 [ 38] [ 6] [164035] +16:40:42 [ 39] [ 2] [75] +16:40:42 [ 41] [ 8] [0301LPBX] +16:40:42 [ 49] [ 3] [418] +16:40:42 ============================================================================ +16:40:42 Calculate Source COMM Id = 2 +16:40:42 ============================================================================ +16:40:42 + + +waiting on router queue for slot.... +16:40:43 ============================================================================ +16:40:43 Slot Id : <146> +16:40:43 Transaction Type : REQUEST +16:40:43 Received From : +16:40:43 ============================================================================ +16:40:43 FNo. Len. Field Value +16:40:43 ============================================================================ +16:40:43 [ 1] [ 4] [0200] +16:40:43 [ 2] [ 16] [6213544002180435] +16:40:43 [ 3] [ 6] [011000] +16:40:43 [ 4] [ 12] [000050000000] +16:40:43 [ 7] [ 10] [0320164104] +16:40:43 [ 11] [ 6] [208879] +16:40:43 [ 12] [ 6] [163610] +16:40:43 [ 13] [ 4] [0320] +16:40:43 [ 14] [ 4] [4912] +16:40:43 [ 15] [ 4] [0320] +16:40:43 [ 18] [ 4] [6011] +16:40:43 [ 19] [ 3] [418] +16:40:43 [ 22] [ 3] [021] +16:40:43 [ 25] [ 2] [01] +16:40:43 [ 28] [ 9] [D00002000] +16:40:43 [ 32] [ 6] [198901] +16:40:43 [ 35] [ 32] [6213544002180435=491212018043327] +16:40:43 [ 37] [ 12] [507916208879] +16:40:43 [ 41] [ 8] [19529001] +16:40:43 [ 42] [ 15] [000000041952901] +16:40:43 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:40:43 [ 49] [ 3] [418] +16:40:43 [ 52] [ 16] [D0F777FE1E332556] +16:40:43 ============================================================================ +16:40:43 + + +waiting on router queue for slot.... +16:40:43 Sending to : +16:40:43 ============================================================================ +16:40:43 Sending to : +16:40:43 ============================================================================ +16:40:44 ============================================================================ +16:40:44 Slot Id : <146> +16:40:44 Transaction Type : REQUEST +16:40:44 Received From : +16:40:44 ============================================================================ +16:40:44 FNo. Len. Field Value +16:40:44 ============================================================================ +16:40:44 [ 1] [ 4] [0200] +16:40:44 [ 2] [ 16] [6213544002180435] +16:40:44 [ 3] [ 6] [011000] +16:40:44 [ 4] [ 12] [000050000000] +16:40:44 [ 7] [ 10] [0320164104] +16:40:44 [ 11] [ 6] [208879] +16:40:44 [ 12] [ 6] [163610] +16:40:44 [ 13] [ 4] [0320] +16:40:44 [ 14] [ 4] [4912] +16:40:44 [ 15] [ 4] [0320] +16:40:44 [ 18] [ 4] [6011] +16:40:44 [ 19] [ 3] [418] +16:40:44 [ 22] [ 3] [021] +16:40:44 [ 25] [ 2] [01] +16:40:44 [ 28] [ 9] [D00002000] +16:40:44 [ 32] [ 6] [198901] +16:40:44 [ 35] [ 32] [6213544002180435=491212018043327] +16:40:44 [ 37] [ 12] [507916208879] +16:40:44 [ 41] [ 8] [19529001] +16:40:44 [ 42] [ 15] [000000041952901] +16:40:44 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:40:44 [ 49] [ 3] [418] +16:40:44 [ 52] [ 16] [D0F777FE1E332556] +16:40:44 ============================================================================ +16:40:44 + + +waiting on router queue for slot.... +16:40:44 Sending to : +16:40:44 ============================================================================ +16:40:44 ============================================================================ +16:40:44 Slot Id : <146> +16:40:44 Transaction Type : REQUEST +16:40:44 Received From : +16:40:44 ============================================================================ +16:40:44 FNo. Len. Field Value +16:40:44 ============================================================================ +16:40:44 [ 1] [ 4] [0200] +16:40:44 [ 2] [ 16] [6213544002180435] +16:40:44 [ 3] [ 6] [011000] +16:40:44 [ 4] [ 12] [000050000000] +16:40:44 [ 7] [ 10] [0320164104] +16:40:44 [ 11] [ 6] [208879] +16:40:44 [ 12] [ 6] [163610] +16:40:44 [ 13] [ 4] [0320] +16:40:44 [ 14] [ 4] [4912] +16:40:44 [ 15] [ 4] [0320] +16:40:44 [ 18] [ 4] [6011] +16:40:44 [ 19] [ 3] [418] +16:40:44 [ 22] [ 3] [021] +16:40:44 [ 25] [ 2] [01] +16:40:44 [ 28] [ 9] [D00002000] +16:40:44 [ 32] [ 6] [198901] +16:40:44 [ 35] [ 32] [6213544002180435=491212018043327] +16:40:44 [ 37] [ 12] [507916208879] +16:40:44 [ 41] [ 8] [19529001] +16:40:44 [ 42] [ 15] [000000041952901] +16:40:44 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:40:44 [ 49] [ 3] [418] +16:40:44 [ 52] [ 16] [C54C7A7F7081043F] +16:40:44 ============================================================================ +16:40:44 + + +waiting on router queue for slot.... +16:40:44 Sending to : <0> +16:40:44 ============================================================================ +16:40:44 ============================================================================ +16:40:44 Slot Id : <146> +16:40:44 Transaction Type : RESPONSE +16:40:44 Received From : +16:40:44 ============================================================================ +16:40:44 FNo. Len. Field Value +16:40:44 ============================================================================ +16:40:44 [ 1] [ 4] [0210] +16:40:44 [ 2] [ 16] [6213544002180435] +16:40:44 [ 3] [ 6] [011000] +16:40:44 [ 4] [ 12] [000050000000] +16:40:44 [ 7] [ 10] [0320164104] +16:40:44 [ 11] [ 6] [208879] +16:40:44 [ 12] [ 6] [163610] +16:40:44 [ 13] [ 4] [0320] +16:40:44 [ 15] [ 4] [0320] +16:40:44 [ 18] [ 4] [6011] +16:40:44 [ 19] [ 3] [418] +16:40:44 [ 32] [ 6] [198901] +16:40:44 [ 35] [ 32] [6213544002180435=491212018043327] +16:40:44 [ 37] [ 12] [507916208879] +16:40:44 [ 38] [ 6] [401936] +16:40:44 [ 39] [ 2] [00] +16:40:44 [ 41] [ 8] [19529001] +16:40:44 [ 49] [ 3] [418] +16:40:44 [ 54] [ 40] [1001418C0000064749601002418C000006474960] +16:40:44 ============================================================================ +16:40:44 Sending to : +16:40:44 ============================================================================ +16:40:44 + + +waiting on router queue for slot.... +16:40:46 ============================================================================ +16:40:46 Slot Id : <146> +16:40:46 Transaction Type : RESPONSE +16:40:46 Received From : +16:40:46 ============================================================================ +16:40:46 FNo. Len. Field Value +16:40:46 ============================================================================ +16:40:46 [ 1] [ 4] [0210] +16:40:46 [ 2] [ 16] [6213544002180435] +16:40:46 [ 3] [ 6] [011000] +16:40:46 [ 4] [ 12] [000050000000] +16:40:46 [ 7] [ 10] [0320164104] +16:40:46 [ 11] [ 6] [208879] +16:40:46 [ 12] [ 6] [163610] +16:40:46 [ 13] [ 4] [0320] +16:40:46 [ 15] [ 4] [0320] +16:40:46 [ 18] [ 4] [6011] +16:40:46 [ 19] [ 3] [418] +16:40:46 [ 32] [ 6] [198901] +16:40:46 [ 35] [ 32] [6213544002180435=491212018043327] +16:40:46 [ 37] [ 12] [507916208879] +16:40:46 [ 38] [ 6] [401936] +16:40:46 [ 39] [ 2] [00] +16:40:46 [ 41] [ 8] [19529001] +16:40:46 [ 49] [ 3] [418] +16:40:46 [ 54] [ 40] [1001418C0000064749601002418C000006474960] +16:40:46 ============================================================================ +16:40:46 Calculate Source COMM Id = 5 +16:40:46 ============================================================================ +16:40:46 + + +waiting on router queue for slot.... +16:40:51 ============================================================================ +16:40:51 Slot Id : <137> +16:40:51 Transaction Type : REQUEST +16:40:51 Received From : +16:40:51 ============================================================================ +16:40:51 FNo. Len. Field Value +16:40:51 ============================================================================ +16:40:51 [ 1] [ 4] [0200] +16:40:51 [ 2] [ 16] [6213548000425460] +16:40:51 [ 3] [ 6] [010000] +16:40:51 [ 4] [ 12] [000010000000] +16:40:51 [ 7] [ 10] [0320163841] +16:40:51 [ 11] [ 6] [952102] +16:40:51 [ 12] [ 6] [163841] +16:40:51 [ 13] [ 4] [0320] +16:40:51 [ 15] [ 4] [0320] +16:40:51 [ 18] [ 4] [6011] +16:40:51 [ 19] [ 3] [418] +16:40:51 [ 22] [ 3] [021] +16:40:51 [ 25] [ 2] [01] +16:40:51 [ 28] [ 9] [D00002000] +16:40:51 [ 32] [ 6] [668899] +16:40:51 [ 35] [ 32] [6213548000425460=180612012546922] +16:40:51 [ 37] [ 12] [507901963676] +16:40:51 [ 41] [ 8] [03020019] +16:40:51 [ 42] [ 15] [APT ] +16:40:51 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +16:40:51 [ 49] [ 3] [418] +16:40:51 [ 52] [ 16] [5FC2DDBFED9A43F6] +16:40:51 ============================================================================ +16:40:51 + + +waiting on router queue for slot.... +16:40:51 Sending to : +16:40:51 ============================================================================ +16:40:51 Sending to : +16:40:51 ============================================================================ +16:40:51 ============================================================================ +16:40:51 Slot Id : <175> +16:40:51 Transaction Type : REQUEST +16:40:51 Received From : +16:40:51 ============================================================================ +16:40:51 FNo. Len. Field Value +16:40:51 ============================================================================ +16:40:51 [ 1] [ 4] [0200] +16:40:51 [ 2] [ 16] [6213544001704219] +16:40:51 [ 3] [ 6] [010000] +16:40:51 [ 4] [ 12] [000025000000] +16:40:51 [ 7] [ 10] [0320164838] +16:40:51 [ 11] [ 6] [259310] +16:40:51 [ 12] [ 6] [164838] +16:40:51 [ 13] [ 4] [0320] +16:40:51 [ 14] [ 4] [4912] +16:40:51 [ 15] [ 4] [0320] +16:40:51 [ 18] [ 4] [6011] +16:40:51 [ 22] [ 3] [900] +16:40:51 [ 25] [ 2] [02] +16:40:51 [ 28] [ 9] [D00002000] +16:40:51 [ 32] [ 6] [220699] +16:40:51 [ 35] [ 32] [6213544001704219=491212010421172] +16:40:51 [ 37] [ 12] [507900040634] +16:40:51 [ 41] [ 8] [01000400] +16:40:51 [ 42] [ 15] [APTRA ] +16:40:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:40:51 [ 49] [ 3] [418] +16:40:51 [ 52] [ 16] [E0024DA96F2D5402] +16:40:51 ============================================================================ +16:40:51 + + +waiting on router queue for slot.... +16:40:51 Sending to : +16:40:51 ============================================================================ +16:40:51 Sending to : +16:40:51 ============================================================================ +16:40:51 ============================================================================ +16:40:51 Slot Id : <137> +16:40:51 Transaction Type : REQUEST +16:40:51 Received From : +16:40:51 ============================================================================ +16:40:51 FNo. Len. Field Value +16:40:51 ============================================================================ +16:40:51 [ 1] [ 4] [0200] +16:40:51 [ 2] [ 16] [6213548000425460] +16:40:51 [ 3] [ 6] [010000] +16:40:51 [ 4] [ 12] [000010000000] +16:40:51 [ 7] [ 10] [0320163841] +16:40:51 [ 11] [ 6] [952102] +16:40:51 [ 12] [ 6] [163841] +16:40:51 [ 13] [ 4] [0320] +16:40:51 [ 15] [ 4] [0320] +16:40:51 [ 18] [ 4] [6011] +16:40:51 [ 19] [ 3] [418] +16:40:51 [ 22] [ 3] [021] +16:40:51 [ 25] [ 2] [01] +16:40:51 [ 28] [ 9] [D00002000] +16:40:51 [ 32] [ 6] [668899] +16:40:51 [ 35] [ 32] [6213548000425460=180612012546922] +16:40:51 [ 37] [ 12] [507901963676] +16:40:51 [ 41] [ 8] [03020019] +16:40:51 [ 42] [ 15] [APT ] +16:40:51 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +16:40:51 [ 49] [ 3] [418] +16:40:51 [ 52] [ 16] [5FC2DDBFED9A43F6] +16:40:51 ============================================================================ +16:40:51 + + +waiting on router queue for slot.... +16:40:51 Sending to : +16:40:51 ============================================================================ +16:40:51 ============================================================================ +16:40:51 Slot Id : <137> +16:40:51 Transaction Type : REQUEST +16:40:51 Received From : +16:40:51 ============================================================================ +16:40:51 FNo. Len. Field Value +16:40:51 ============================================================================ +16:40:51 [ 1] [ 4] [0200] +16:40:51 [ 2] [ 16] [6213548000425460] +16:40:51 [ 3] [ 6] [010000] +16:40:51 [ 4] [ 12] [000010000000] +16:40:51 [ 7] [ 10] [0320163841] +16:40:51 [ 11] [ 6] [952102] +16:40:51 [ 12] [ 6] [163841] +16:40:51 [ 13] [ 4] [0320] +16:40:51 [ 15] [ 4] [0320] +16:40:51 [ 18] [ 4] [6011] +16:40:51 [ 19] [ 3] [418] +16:40:51 [ 22] [ 3] [021] +16:40:51 [ 25] [ 2] [01] +16:40:51 [ 28] [ 9] [D00002000] +16:40:51 [ 32] [ 6] [668899] +16:40:51 [ 35] [ 32] [6213548000425460=180612012546922] +16:40:51 [ 37] [ 12] [507901963676] +16:40:51 [ 41] [ 8] [03020019] +16:40:51 [ 42] [ 15] [APT ] +16:40:51 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +16:40:51 [ 49] [ 3] [418] +16:40:51 [ 52] [ 16] [12896C13E042C76E] +16:40:51 ============================================================================ +16:40:51 + + +waiting on router queue for slot.... +16:40:51 Sending to : <0> +16:40:51 ============================================================================ +16:40:51 ============================================================================ +16:40:51 Slot Id : <175> +16:40:51 Transaction Type : REQUEST +16:40:51 Received From : +16:40:51 ============================================================================ +16:40:51 FNo. Len. Field Value +16:40:51 ============================================================================ +16:40:51 [ 1] [ 4] [0200] +16:40:51 [ 2] [ 16] [6213544001704219] +16:40:51 [ 3] [ 6] [010000] +16:40:51 [ 4] [ 12] [000025000000] +16:40:51 [ 7] [ 10] [0320164838] +16:40:51 [ 11] [ 6] [259310] +16:40:51 [ 12] [ 6] [164838] +16:40:51 [ 13] [ 4] [0320] +16:40:51 [ 14] [ 4] [4912] +16:40:51 [ 15] [ 4] [0320] +16:40:51 [ 18] [ 4] [6011] +16:40:51 [ 22] [ 3] [900] +16:40:51 [ 25] [ 2] [02] +16:40:51 [ 28] [ 9] [D00002000] +16:40:51 [ 32] [ 6] [220699] +16:40:51 [ 35] [ 32] [6213544001704219=491212010421172] +16:40:51 [ 37] [ 12] [507900040634] +16:40:51 [ 41] [ 8] [01000400] +16:40:51 [ 42] [ 15] [APTRA ] +16:40:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:40:51 [ 49] [ 3] [418] +16:40:51 [ 52] [ 16] [E0024DA96F2D5402] +16:40:51 ============================================================================ +16:40:51 + + +waiting on router queue for slot.... +16:40:51 Sending to : +16:40:51 ============================================================================ +16:40:51 ============================================================================ +16:40:51 Slot Id : <175> +16:40:51 Transaction Type : REQUEST +16:40:51 Received From : +16:40:51 ============================================================================ +16:40:51 FNo. Len. Field Value +16:40:51 ============================================================================ +16:40:51 [ 1] [ 4] [0200] +16:40:51 [ 2] [ 16] [6213544001704219] +16:40:51 [ 3] [ 6] [010000] +16:40:51 [ 4] [ 12] [000025000000] +16:40:51 [ 7] [ 10] [0320164838] +16:40:51 [ 11] [ 6] [259310] +16:40:51 [ 12] [ 6] [164838] +16:40:51 [ 13] [ 4] [0320] +16:40:51 [ 14] [ 4] [4912] +16:40:51 [ 15] [ 4] [0320] +16:40:51 [ 18] [ 4] [6011] +16:40:51 [ 22] [ 3] [900] +16:40:51 [ 25] [ 2] [02] +16:40:51 [ 28] [ 9] [D00002000] +16:40:51 [ 32] [ 6] [220699] +16:40:51 [ 35] [ 32] [6213544001704219=491212010421172] +16:40:51 [ 37] [ 12] [507900040634] +16:40:51 [ 41] [ 8] [01000400] +16:40:51 [ 42] [ 15] [APTRA ] +16:40:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:40:51 [ 49] [ 3] [418] +16:40:51 [ 52] [ 16] [56EE88529EE9D2BF] +16:40:51 ============================================================================ +16:40:51 + + +waiting on router queue for slot.... +16:40:51 Sending to : <0> +16:40:51 ============================================================================ +16:40:52 ============================================================================ +16:40:52 Slot Id : <137> +16:40:52 Transaction Type : RESPONSE +16:40:52 Received From : +16:40:52 ============================================================================ +16:40:52 FNo. Len. Field Value +16:40:52 ============================================================================ +16:40:52 [ 1] [ 4] [0210] +16:40:52 [ 2] [ 16] [6213548000425460] +16:40:52 [ 3] [ 6] [010000] +16:40:52 [ 4] [ 12] [000010000000] +16:40:52 [ 7] [ 10] [0320163841] +16:40:52 [ 11] [ 6] [952102] +16:40:52 [ 12] [ 6] [163841] +16:40:52 [ 13] [ 4] [0320] +16:40:52 [ 15] [ 4] [0320] +16:40:52 [ 18] [ 4] [6011] +16:40:52 [ 19] [ 3] [418] +16:40:52 [ 32] [ 6] [668899] +16:40:52 [ 35] [ 32] [6213548000425460=180612012546922] +16:40:52 [ 37] [ 12] [507901963676] +16:40:52 [ 38] [ 6] [906700] +16:40:52 [ 39] [ 2] [00] +16:40:52 [ 41] [ 8] [03020019] +16:40:52 [ 49] [ 3] [418] +16:40:52 [ 54] [ 40] [0001418C0000247367820002418C000024736782] +16:40:52 ============================================================================ +16:40:52 Sending to : +16:40:52 ============================================================================ +16:40:52 + + +waiting on router queue for slot.... +16:40:52 ============================================================================ +16:40:52 Slot Id : <175> +16:40:52 Transaction Type : RESPONSE +16:40:52 Received From : +16:40:52 ============================================================================ +16:40:52 FNo. Len. Field Value +16:40:52 ============================================================================ +16:40:52 [ 1] [ 4] [0210] +16:40:52 [ 2] [ 16] [6213544001704219] +16:40:52 [ 3] [ 6] [010000] +16:40:52 [ 4] [ 12] [000025000000] +16:40:52 [ 7] [ 10] [0320164838] +16:40:52 [ 11] [ 6] [259310] +16:40:52 [ 12] [ 6] [164838] +16:40:52 [ 13] [ 4] [0320] +16:40:52 [ 15] [ 4] [0320] +16:40:52 [ 18] [ 4] [6011] +16:40:52 [ 32] [ 6] [220699] +16:40:52 [ 35] [ 32] [6213544001704219=491212010421172] +16:40:52 [ 37] [ 12] [507900040634] +16:40:52 [ 38] [ 6] [018440] +16:40:52 [ 39] [ 2] [00] +16:40:52 [ 41] [ 8] [01000400] +16:40:52 [ 49] [ 3] [418] +16:40:52 [ 54] [ 40] [0001418C0000072017150002418C000007201715] +16:40:52 ============================================================================ +16:40:52 Sending to : +16:40:52 ============================================================================ +16:40:52 + + +waiting on router queue for slot.... +16:40:53 ============================================================================ +16:40:53 Slot Id : <137> +16:40:53 Transaction Type : RESPONSE +16:40:53 Received From : +16:40:53 ============================================================================ +16:40:53 FNo. Len. Field Value +16:40:53 ============================================================================ +16:40:53 [ 1] [ 4] [0210] +16:40:53 [ 2] [ 16] [6213548000425460] +16:40:53 [ 3] [ 6] [010000] +16:40:53 [ 4] [ 12] [000010000000] +16:40:53 [ 7] [ 10] [0320163841] +16:40:53 [ 11] [ 6] [952102] +16:40:53 [ 12] [ 6] [163841] +16:40:53 [ 13] [ 4] [0320] +16:40:53 [ 15] [ 4] [0320] +16:40:53 [ 18] [ 4] [6011] +16:40:53 [ 19] [ 3] [418] +16:40:53 [ 32] [ 6] [668899] +16:40:53 [ 35] [ 32] [6213548000425460=180612012546922] +16:40:53 [ 37] [ 12] [507901963676] +16:40:53 [ 38] [ 6] [906700] +16:40:53 [ 39] [ 2] [00] +16:40:53 [ 41] [ 8] [03020019] +16:40:53 [ 49] [ 3] [418] +16:40:53 [ 54] [ 40] [0001418C0000247367820002418C000024736782] +16:40:53 ============================================================================ +16:40:53 Calculate Source COMM Id = 4 +16:40:53 ============================================================================ +16:40:53 + + +waiting on router queue for slot.... +16:40:54 ============================================================================ +16:40:54 Slot Id : <170> +16:40:54 Transaction Type : REQUEST +16:40:54 Received From : +16:40:54 ============================================================================ +16:40:54 FNo. Len. Field Value +16:40:54 ============================================================================ +16:40:54 [ 1] [ 4] [0200] +16:40:54 [ 2] [ 16] [6213544001960738] +16:40:54 [ 3] [ 6] [010000] +16:40:54 [ 4] [ 12] [000030000000] +16:40:54 [ 7] [ 10] [0320163844] +16:40:54 [ 11] [ 6] [952107] +16:40:54 [ 12] [ 6] [163844] +16:40:54 [ 13] [ 4] [0320] +16:40:54 [ 15] [ 4] [0320] +16:40:54 [ 18] [ 4] [6011] +16:40:54 [ 19] [ 3] [418] +16:40:54 [ 22] [ 3] [021] +16:40:54 [ 25] [ 2] [01] +16:40:54 [ 28] [ 9] [D00002000] +16:40:54 [ 32] [ 6] [668899] +16:40:54 [ 35] [ 32] [6213544001960738=491212016073177] +16:40:54 [ 37] [ 12] [507902025613] +16:40:54 [ 41] [ 8] [03414002] +16:40:54 [ 42] [ 15] [APT ] +16:40:54 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:40:54 [ 49] [ 3] [418] +16:40:54 [ 52] [ 16] [3D157629F4F8EF36] +16:40:54 ============================================================================ +16:40:54 + + +waiting on router queue for slot.... +16:40:54 Sending to : +16:40:54 ============================================================================ +16:40:54 Sending to : +16:40:54 ============================================================================ +16:40:55 ============================================================================ +16:40:55 Slot Id : <170> +16:40:55 Transaction Type : REQUEST +16:40:55 Received From : +16:40:55 ============================================================================ +16:40:55 FNo. Len. Field Value +16:40:55 ============================================================================ +16:40:55 [ 1] [ 4] [0200] +16:40:55 [ 2] [ 16] [6213544001960738] +16:40:55 [ 3] [ 6] [010000] +16:40:55 [ 4] [ 12] [000030000000] +16:40:55 [ 7] [ 10] [0320163844] +16:40:55 [ 11] [ 6] [952107] +16:40:55 [ 12] [ 6] [163844] +16:40:55 [ 13] [ 4] [0320] +16:40:55 [ 15] [ 4] [0320] +16:40:55 [ 18] [ 4] [6011] +16:40:55 [ 19] [ 3] [418] +16:40:55 [ 22] [ 3] [021] +16:40:55 [ 25] [ 2] [01] +16:40:55 [ 28] [ 9] [D00002000] +16:40:55 [ 32] [ 6] [668899] +16:40:55 [ 35] [ 32] [6213544001960738=491212016073177] +16:40:55 [ 37] [ 12] [507902025613] +16:40:55 [ 41] [ 8] [03414002] +16:40:55 [ 42] [ 15] [APT ] +16:40:55 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:40:55 [ 49] [ 3] [418] +16:40:55 [ 52] [ 16] [3D157629F4F8EF36] +16:40:55 ============================================================================ +16:40:55 + + +waiting on router queue for slot.... +16:40:55 Sending to : +16:40:55 ============================================================================ +16:40:55 ============================================================================ +16:40:55 Slot Id : <170> +16:40:55 Transaction Type : REQUEST +16:40:55 Received From : +16:40:55 ============================================================================ +16:40:55 FNo. Len. Field Value +16:40:55 ============================================================================ +16:40:55 [ 1] [ 4] [0200] +16:40:55 [ 2] [ 16] [6213544001960738] +16:40:55 [ 3] [ 6] [010000] +16:40:55 [ 4] [ 12] [000030000000] +16:40:55 [ 7] [ 10] [0320163844] +16:40:55 [ 11] [ 6] [952107] +16:40:55 [ 12] [ 6] [163844] +16:40:55 [ 13] [ 4] [0320] +16:40:55 [ 15] [ 4] [0320] +16:40:55 [ 18] [ 4] [6011] +16:40:55 [ 19] [ 3] [418] +16:40:55 [ 22] [ 3] [021] +16:40:55 [ 25] [ 2] [01] +16:40:55 [ 28] [ 9] [D00002000] +16:40:55 [ 32] [ 6] [668899] +16:40:55 [ 35] [ 32] [6213544001960738=491212016073177] +16:40:55 [ 37] [ 12] [507902025613] +16:40:55 [ 41] [ 8] [03414002] +16:40:55 [ 42] [ 15] [APT ] +16:40:55 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:40:55 [ 49] [ 3] [418] +16:40:55 [ 52] [ 16] [C9E613BA8B33C284] +16:40:55 ============================================================================ +16:40:55 + + +waiting on router queue for slot.... +16:40:55 Sending to : <0> +16:40:55 ============================================================================ +16:40:55 ============================================================================ +16:40:55 Slot Id : <128> +16:40:55 Transaction Type : REQUEST +16:40:55 Received From : +16:40:55 ============================================================================ +16:40:55 FNo. Len. Field Value +16:40:55 ============================================================================ +16:40:55 [ 1] [ 4] [0800] +16:40:55 [ 2] [ 5] [02531] +16:40:55 [ 3] [ 6] [579168] +16:40:55 [ 7] [ 10] [0320094055] +16:40:55 [ 11] [ 6] [807380] +16:40:55 [ 15] [ 10] [0320094055] +16:40:55 [ 37] [ 11] [57916807380] +16:40:55 [ 70] [ 3] [001] +16:40:55 ============================================================================ +16:40:55 + + +waiting on router queue for slot.... +16:40:55 ============================================================================ +16:40:55 Slot Id : <157> +16:40:55 Transaction Type : REQUEST +16:40:55 Received From : +16:40:55 ============================================================================ +16:40:55 FNo. Len. Field Value +16:40:55 ============================================================================ +16:40:55 [ 1] [ 4] [0800] +16:40:55 [ 7] [ 10] [0320235243] +16:40:55 [ 11] [ 6] [165243] +16:40:55 [ 37] [ 12] [57916165243] +16:40:55 [ 70] [ 3] [301] +16:40:55 ============================================================================ +16:40:55 + + +waiting on router queue for slot.... +16:40:55 Sending to : +16:40:55 ============================================================================ +16:40:55 ============================================================================ +16:40:55 Slot Id : <157> +16:40:55 Transaction Type : RESPONSE +16:40:55 Received From : +16:40:55 ============================================================================ +16:40:55 FNo. Len. Field Value +16:40:55 ============================================================================ +16:40:55 [ 1] [ 4] [0810] +16:40:55 [ 7] [ 10] [0320235243] +16:40:55 [ 11] [ 6] [165243] +16:40:55 [ 37] [ 12] [579161652430] +16:40:55 [ 39] [ 2] [00] +16:40:55 [ 70] [ 3] [810] +16:40:55 ============================================================================ +16:40:55 Calculate Source COMM Id = 6 +16:40:55 ============================================================================ +16:40:55 + + +waiting on router queue for slot.... +16:40:55 ============================================================================ +16:40:55 Slot Id : <128> +16:40:55 Transaction Type : RESPONSE +16:40:55 Received From : +16:40:55 ============================================================================ +16:40:55 FNo. Len. Field Value +16:40:55 ============================================================================ +16:40:55 [ 1] [ 4] [0810] +16:40:55 [ 7] [ 10] [0320094055] +16:40:55 [ 11] [ 6] [807380] +16:40:55 [ 15] [ 4] [0320] +16:40:55 [ 37] [ 12] [57916807380] +16:40:55 [ 39] [ 2] [00] +16:40:55 [ 70] [ 3] [001] +16:40:55 ============================================================================ +16:40:55 Sending to : +16:40:55 ============================================================================ +16:40:55 + + +waiting on router queue for slot.... +16:40:55 ============================================================================ +16:40:55 Slot Id : <175> +16:40:55 Transaction Type : RESPONSE +16:40:55 Received From : +16:40:55 ============================================================================ +16:40:55 FNo. Len. Field Value +16:40:55 ============================================================================ +16:40:55 [ 1] [ 4] [0210] +16:40:55 [ 2] [ 16] [6213544001704219] +16:40:55 [ 3] [ 6] [010000] +16:40:55 [ 4] [ 12] [000025000000] +16:40:55 [ 7] [ 10] [0320164838] +16:40:55 [ 11] [ 6] [259310] +16:40:55 [ 12] [ 6] [164838] +16:40:55 [ 13] [ 4] [0320] +16:40:55 [ 15] [ 4] [0320] +16:40:55 [ 18] [ 4] [6011] +16:40:55 [ 32] [ 6] [220699] +16:40:55 [ 35] [ 32] [6213544001704219=491212010421172] +16:40:55 [ 37] [ 12] [507900040634] +16:40:55 [ 38] [ 6] [018440] +16:40:55 [ 39] [ 2] [00] +16:40:55 [ 41] [ 8] [01000400] +16:40:55 [ 49] [ 3] [418] +16:40:55 [ 54] [ 40] [0001418C0000072017150002418C000007201715] +16:40:55 ============================================================================ +16:40:55 Calculate Source COMM Id = 1 +16:40:55 ============================================================================ +16:40:55 + + +waiting on router queue for slot.... +16:40:56 ============================================================================ +16:40:56 Slot Id : <170> +16:40:56 Transaction Type : RESPONSE +16:40:56 Received From : +16:40:56 ============================================================================ +16:40:56 FNo. Len. Field Value +16:40:56 ============================================================================ +16:40:56 [ 1] [ 4] [0210] +16:40:56 [ 2] [ 16] [6213544001960738] +16:40:56 [ 3] [ 6] [010000] +16:40:56 [ 4] [ 12] [000030000000] +16:40:56 [ 7] [ 10] [0320163844] +16:40:56 [ 11] [ 6] [952107] +16:40:56 [ 12] [ 6] [163844] +16:40:56 [ 13] [ 4] [0320] +16:40:56 [ 15] [ 4] [0320] +16:40:56 [ 18] [ 4] [6011] +16:40:56 [ 19] [ 3] [418] +16:40:56 [ 32] [ 6] [668899] +16:40:56 [ 35] [ 32] [6213544001960738=491212016073177] +16:40:56 [ 37] [ 12] [507902025613] +16:40:56 [ 38] [ 6] [186662] +16:40:56 [ 39] [ 2] [00] +16:40:56 [ 41] [ 8] [03414002] +16:40:56 [ 49] [ 3] [418] +16:40:56 [ 54] [ 40] [0001418C0000249248260002418C000024924826] +16:40:56 ============================================================================ +16:40:56 Sending to : +16:40:56 ============================================================================ +16:40:56 + + +waiting on router queue for slot.... +16:40:57 ============================================================================ +16:40:57 Slot Id : <151> +16:40:57 Transaction Type : REQUEST +16:40:57 Received From : +16:40:57 ============================================================================ +16:40:57 FNo. Len. Field Value +16:40:57 ============================================================================ +16:40:57 [ 1] [ 4] [0200] +16:40:57 [ 2] [ 16] [6688990040106997] +16:40:57 [ 3] [ 6] [010000] +16:40:57 [ 4] [ 12] [000050000000] +16:40:57 [ 7] [ 10] [0320164052] +16:40:57 [ 11] [ 6] [802786] +16:40:57 [ 12] [ 6] [164052] +16:40:57 [ 13] [ 4] [0320] +16:40:57 [ 15] [ 4] [0320] +16:40:57 [ 18] [ 4] [6011] +16:40:57 [ 22] [ 3] [900] +16:40:57 [ 25] [ 2] [02] +16:40:57 [ 28] [ 9] [D00002000] +16:40:57 [ 32] [ 6] [621354] +16:40:57 [ 35] [ 37] [6688990040106997=98031261956147300000] +16:40:57 [ 37] [ 12] [507903032305] +16:40:57 [ 41] [ 8] [12002600] +16:40:57 [ 42] [ 15] [NATIVE ] +16:40:57 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +16:40:57 [ 49] [ 3] [418] +16:40:57 [ 52] [ 16] [DA122161EA1902D4] +16:40:57 ============================================================================ +16:40:57 + + +waiting on router queue for slot.... +16:40:57 Sending to : +16:40:57 ============================================================================ +16:40:57 Sending to : +16:40:57 ============================================================================ +16:40:57 ============================================================================ +16:40:57 Slot Id : <151> +16:40:57 Transaction Type : REQUEST +16:40:57 Received From : +16:40:57 ============================================================================ +16:40:57 FNo. Len. Field Value +16:40:57 ============================================================================ +16:40:57 [ 1] [ 4] [0200] +16:40:57 [ 2] [ 16] [6688990040106997] +16:40:57 [ 3] [ 6] [010000] +16:40:57 [ 4] [ 12] [000050000000] +16:40:57 [ 7] [ 10] [0320164052] +16:40:57 [ 11] [ 6] [802786] +16:40:57 [ 12] [ 6] [164052] +16:40:57 [ 13] [ 4] [0320] +16:40:57 [ 15] [ 4] [0320] +16:40:57 [ 18] [ 4] [6011] +16:40:57 [ 22] [ 3] [900] +16:40:57 [ 25] [ 2] [02] +16:40:57 [ 28] [ 9] [D00002000] +16:40:57 [ 32] [ 6] [621354] +16:40:57 [ 35] [ 37] [6688990040106997=98031261956147300000] +16:40:57 [ 37] [ 12] [507903032305] +16:40:57 [ 41] [ 8] [12002600] +16:40:57 [ 42] [ 15] [NATIVE ] +16:40:57 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +16:40:57 [ 49] [ 3] [418] +16:40:57 [ 52] [ 16] [DA122161EA1902D4] +16:40:57 ============================================================================ +16:40:57 + + +waiting on router queue for slot.... +16:40:57 Sending to : +16:40:57 ============================================================================ +16:40:57 ============================================================================ +16:40:57 Slot Id : <151> +16:40:57 Transaction Type : REQUEST +16:40:57 Received From : +16:40:57 ============================================================================ +16:40:57 FNo. Len. Field Value +16:40:57 ============================================================================ +16:40:57 [ 1] [ 4] [0200] +16:40:57 [ 2] [ 16] [6688990040106997] +16:40:57 [ 3] [ 6] [010000] +16:40:57 [ 4] [ 12] [000050000000] +16:40:57 [ 7] [ 10] [0320164052] +16:40:57 [ 11] [ 6] [802786] +16:40:57 [ 12] [ 6] [164052] +16:40:57 [ 13] [ 4] [0320] +16:40:57 [ 15] [ 4] [0320] +16:40:57 [ 18] [ 4] [6011] +16:40:57 [ 22] [ 3] [900] +16:40:57 [ 25] [ 2] [02] +16:40:57 [ 28] [ 9] [D00002000] +16:40:57 [ 32] [ 6] [621354] +16:40:57 [ 35] [ 37] [6688990040106997=98031261956147300000] +16:40:57 [ 37] [ 12] [507903032305] +16:40:57 [ 41] [ 8] [12002600] +16:40:57 [ 42] [ 15] [NATIVE ] +16:40:57 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +16:40:57 [ 49] [ 3] [418] +16:40:57 [ 52] [ 16] [CD23C2612D76E31A] +16:40:57 ============================================================================ +16:40:57 + + +waiting on router queue for slot.... +16:40:57 Sending to : <4> +16:40:57 ============================================================================ +16:40:58 ============================================================================ +16:40:58 Slot Id : <170> +16:40:58 Transaction Type : RESPONSE +16:40:58 Received From : +16:40:58 ============================================================================ +16:40:58 FNo. Len. Field Value +16:40:58 ============================================================================ +16:40:58 [ 1] [ 4] [0210] +16:40:58 [ 2] [ 16] [6213544001960738] +16:40:58 [ 3] [ 6] [010000] +16:40:58 [ 4] [ 12] [000030000000] +16:40:58 [ 7] [ 10] [0320163844] +16:40:58 [ 11] [ 6] [952107] +16:40:58 [ 12] [ 6] [163844] +16:40:58 [ 13] [ 4] [0320] +16:40:58 [ 15] [ 4] [0320] +16:40:58 [ 18] [ 4] [6011] +16:40:58 [ 19] [ 3] [418] +16:40:58 [ 32] [ 6] [668899] +16:40:58 [ 35] [ 32] [6213544001960738=491212016073177] +16:40:58 [ 37] [ 12] [507902025613] +16:40:58 [ 38] [ 6] [186662] +16:40:58 [ 39] [ 2] [00] +16:40:58 [ 41] [ 8] [03414002] +16:40:58 [ 49] [ 3] [418] +16:40:58 [ 54] [ 40] [0001418C0000249248260002418C000024924826] +16:40:58 ============================================================================ +16:40:58 Calculate Source COMM Id = 4 +16:40:58 ============================================================================ +16:40:58 + + +waiting on router queue for slot.... +16:40:58 ============================================================================ +16:40:58 Slot Id : <141> +16:40:58 Transaction Type : REQUEST +16:40:58 Received From : +16:40:58 ============================================================================ +16:40:58 FNo. Len. Field Value +16:40:58 ============================================================================ +16:40:58 [ 1] [ 4] [0800] +16:40:58 [ 7] [ 10] [0320094005] +16:40:58 [ 11] [ 6] [157281] +16:40:58 [ 70] [ 3] [301] +16:40:58 ============================================================================ +16:40:58 + + +waiting on router queue for slot.... +16:40:58 Sending to : +16:40:58 ============================================================================ +16:40:58 ============================================================================ +16:40:58 Slot Id : <141> +16:40:58 Transaction Type : RESPONSE +16:40:58 Received From : +16:40:58 ============================================================================ +16:40:58 FNo. Len. Field Value +16:40:58 ============================================================================ +16:40:58 [ 1] [ 4] [0810] +16:40:58 [ 7] [ 10] [0320094005] +16:40:58 [ 11] [ 6] [157281] +16:40:58 [ 39] [ 2] [00] +16:40:58 [ 70] [ 3] [301] +16:40:58 ============================================================================ +16:40:58 Calculate Source COMM Id = 2 +16:40:58 ============================================================================ +16:40:58 + + +waiting on router queue for slot.... +16:40:59 ============================================================================ +16:40:59 Slot Id : <151> +16:40:59 Transaction Type : RESPONSE +16:40:59 Received From : +16:40:59 ============================================================================ +16:40:59 FNo. Len. Field Value +16:40:59 ============================================================================ +16:40:59 [ 1] [ 4] [0210] +16:40:59 [ 2] [ 16] [6688990040106997] +16:40:59 [ 3] [ 6] [010000] +16:40:59 [ 4] [ 12] [000050000000] +16:40:59 [ 11] [ 6] [802786] +16:40:59 [ 12] [ 6] [164052] +16:40:59 [ 15] [ 4] [0320] +16:40:59 [ 18] [ 4] [6011] +16:40:59 [ 32] [ 6] [621354] +16:40:59 [ 35] [ 37] [6688990040106997=98031261956147300000] +16:40:59 [ 37] [ 12] [507903032305] +16:40:59 [ 38] [ 6] [561639] +16:40:59 [ 39] [ 2] [00] +16:40:59 [ 41] [ 8] [12002600] +16:40:59 [ 49] [ 3] [418] +16:40:59 [ 54] [ 20] [0002418C000010673849] +16:40:59 ============================================================================ +16:40:59 Sending to : +16:40:59 ============================================================================ +16:40:59 + + +waiting on router queue for slot.... +16:41:01 ============================================================================ +16:41:01 Slot Id : <151> +16:41:01 Transaction Type : RESPONSE +16:41:01 Received From : +16:41:01 ============================================================================ +16:41:01 FNo. Len. Field Value +16:41:01 ============================================================================ +16:41:01 [ 1] [ 4] [0210] +16:41:01 [ 2] [ 16] [6688990040106997] +16:41:01 [ 3] [ 6] [010000] +16:41:01 [ 4] [ 12] [000050000000] +16:41:01 [ 11] [ 6] [802786] +16:41:01 [ 12] [ 6] [164052] +16:41:01 [ 15] [ 4] [0320] +16:41:01 [ 18] [ 4] [6011] +16:41:01 [ 32] [ 6] [621354] +16:41:01 [ 35] [ 37] [6688990040106997=98031261956147300000] +16:41:01 [ 37] [ 12] [507903032305] +16:41:01 [ 38] [ 6] [561639] +16:41:01 [ 39] [ 2] [00] +16:41:01 [ 41] [ 8] [12002600] +16:41:01 [ 49] [ 3] [418] +16:41:01 [ 54] [ 20] [0002418C000010673849] +16:41:01 ============================================================================ +16:41:01 Calculate Source COMM Id = 0 +16:41:01 ============================================================================ +16:41:01 + + +waiting on router queue for slot.... +16:41:02 ============================================================================ +16:41:02 Slot Id : <172> +16:41:02 Transaction Type : REQUEST +16:41:02 Received From : +16:41:02 ============================================================================ +16:41:02 FNo. Len. Field Value +16:41:02 ============================================================================ +16:41:02 [ 1] [ 4] [0200] +16:41:02 [ 2] [ 16] [6213544001368544] +16:41:02 [ 3] [ 6] [011000] +16:41:02 [ 4] [ 12] [000020000000] +16:41:02 [ 7] [ 10] [0320094009] +16:41:02 [ 11] [ 6] [270574] +16:41:02 [ 12] [ 6] [164009] +16:41:02 [ 13] [ 4] [0320] +16:41:02 [ 14] [ 4] [4912] +16:41:02 [ 15] [ 4] [0320] +16:41:02 [ 18] [ 4] [6011] +16:41:02 [ 19] [ 3] [418] +16:41:02 [ 22] [ 3] [021] +16:41:02 [ 25] [ 2] [01] +16:41:02 [ 28] [ 9] [D00002000] +16:41:02 [ 32] [ 6] [180893] +16:41:02 [ 35] [ 32] [6213544001368544=491212016854430] +16:41:02 [ 37] [ 12] [507909270574] +16:41:02 [ 41] [ 8] [0344SVKV] +16:41:02 [ 42] [ 15] [999999 ] +16:41:02 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:41:02 [ 49] [ 3] [418] +16:41:02 [ 52] [ 16] [7137BC7669FA7E5C] +16:41:02 ============================================================================ +16:41:02 + + +waiting on router queue for slot.... +16:41:02 Sending to : +16:41:02 ============================================================================ +16:41:02 Sending to : +16:41:02 ============================================================================ +16:41:02 ============================================================================ +16:41:02 Slot Id : <172> +16:41:02 Transaction Type : REQUEST +16:41:02 Received From : +16:41:02 ============================================================================ +16:41:02 FNo. Len. Field Value +16:41:02 ============================================================================ +16:41:02 [ 1] [ 4] [0200] +16:41:02 [ 2] [ 16] [6213544001368544] +16:41:02 [ 3] [ 6] [011000] +16:41:02 [ 4] [ 12] [000020000000] +16:41:02 [ 7] [ 10] [0320094009] +16:41:02 [ 11] [ 6] [270574] +16:41:02 [ 12] [ 6] [164009] +16:41:02 [ 13] [ 4] [0320] +16:41:02 [ 14] [ 4] [4912] +16:41:02 [ 15] [ 4] [0320] +16:41:02 [ 18] [ 4] [6011] +16:41:02 [ 19] [ 3] [418] +16:41:02 [ 22] [ 3] [021] +16:41:02 [ 25] [ 2] [01] +16:41:02 [ 28] [ 9] [D00002000] +16:41:02 [ 32] [ 6] [180893] +16:41:02 [ 35] [ 32] [6213544001368544=491212016854430] +16:41:02 [ 37] [ 12] [507909270574] +16:41:02 [ 41] [ 8] [0344SVKV] +16:41:02 [ 42] [ 15] [999999 ] +16:41:02 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:41:02 [ 49] [ 3] [418] +16:41:02 [ 52] [ 16] [7137BC7669FA7E5C] +16:41:02 ============================================================================ +16:41:02 + + +waiting on router queue for slot.... +16:41:02 Sending to : +16:41:02 ============================================================================ +16:41:02 ============================================================================ +16:41:02 Slot Id : <172> +16:41:02 Transaction Type : REQUEST +16:41:02 Received From : +16:41:02 ============================================================================ +16:41:02 FNo. Len. Field Value +16:41:02 ============================================================================ +16:41:02 [ 1] [ 4] [0200] +16:41:02 [ 2] [ 16] [6213544001368544] +16:41:02 [ 3] [ 6] [011000] +16:41:02 [ 4] [ 12] [000020000000] +16:41:02 [ 7] [ 10] [0320094009] +16:41:02 [ 11] [ 6] [270574] +16:41:02 [ 12] [ 6] [164009] +16:41:02 [ 13] [ 4] [0320] +16:41:02 [ 14] [ 4] [4912] +16:41:02 [ 15] [ 4] [0320] +16:41:02 [ 18] [ 4] [6011] +16:41:02 [ 19] [ 3] [418] +16:41:02 [ 22] [ 3] [021] +16:41:02 [ 25] [ 2] [01] +16:41:02 [ 28] [ 9] [D00002000] +16:41:02 [ 32] [ 6] [180893] +16:41:02 [ 35] [ 32] [6213544001368544=491212016854430] +16:41:02 [ 37] [ 12] [507909270574] +16:41:02 [ 41] [ 8] [0344SVKV] +16:41:02 [ 42] [ 15] [999999 ] +16:41:02 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:41:02 [ 49] [ 3] [418] +16:41:02 [ 52] [ 16] [E8C1D00EBF983760] +16:41:02 ============================================================================ +16:41:02 + + +waiting on router queue for slot.... +16:41:02 Sending to : <0> +16:41:02 ============================================================================ +16:41:03 ============================================================================ +16:41:03 Slot Id : <172> +16:41:03 Transaction Type : RESPONSE +16:41:03 Received From : +16:41:03 ============================================================================ +16:41:03 FNo. Len. Field Value +16:41:03 ============================================================================ +16:41:03 [ 1] [ 4] [0210] +16:41:03 [ 2] [ 16] [6213544001368544] +16:41:03 [ 3] [ 6] [011000] +16:41:03 [ 4] [ 12] [000020000000] +16:41:03 [ 7] [ 10] [0320094009] +16:41:03 [ 11] [ 6] [270574] +16:41:03 [ 12] [ 6] [164009] +16:41:03 [ 13] [ 4] [0320] +16:41:03 [ 15] [ 4] [0320] +16:41:03 [ 18] [ 4] [6011] +16:41:03 [ 19] [ 3] [418] +16:41:03 [ 32] [ 6] [180893] +16:41:03 [ 35] [ 32] [6213544001368544=491212016854430] +16:41:03 [ 37] [ 12] [507909270574] +16:41:03 [ 38] [ 6] [036909] +16:41:03 [ 39] [ 2] [00] +16:41:03 [ 41] [ 8] [0344SVKV] +16:41:03 [ 49] [ 3] [418] +16:41:03 [ 54] [ 40] [1001418C0002255621101002418C000225562110] +16:41:03 ============================================================================ +16:41:03 Sending to : +16:41:03 ============================================================================ +16:41:03 + + +waiting on router queue for slot.... +16:41:05 ============================================================================ +16:41:05 Slot Id : <172> +16:41:05 Transaction Type : RESPONSE +16:41:05 Received From : +16:41:05 ============================================================================ +16:41:05 FNo. Len. Field Value +16:41:05 ============================================================================ +16:41:05 [ 1] [ 4] [0210] +16:41:05 [ 2] [ 16] [6213544001368544] +16:41:05 [ 3] [ 6] [011000] +16:41:05 [ 4] [ 12] [000020000000] +16:41:05 [ 7] [ 10] [0320094009] +16:41:05 [ 11] [ 6] [270574] +16:41:05 [ 12] [ 6] [164009] +16:41:05 [ 13] [ 4] [0320] +16:41:05 [ 15] [ 4] [0320] +16:41:05 [ 18] [ 4] [6011] +16:41:05 [ 19] [ 3] [418] +16:41:05 [ 32] [ 6] [180893] +16:41:05 [ 35] [ 32] [6213544001368544=491212016854430] +16:41:05 [ 37] [ 12] [507909270574] +16:41:05 [ 38] [ 6] [036909] +16:41:05 [ 39] [ 2] [00] +16:41:05 [ 41] [ 8] [0344SVKV] +16:41:05 [ 49] [ 3] [418] +16:41:05 [ 54] [ 40] [1001418C0002255621101002418C000225562110] +16:41:05 ============================================================================ +16:41:05 Calculate Source COMM Id = 2 +16:41:05 ============================================================================ +16:41:05 + + +waiting on router queue for slot.... +16:41:09 ============================================================================ +16:41:09 Slot Id : <171> +16:41:09 Transaction Type : REQUEST +16:41:09 Received From : +16:41:09 ============================================================================ +16:41:09 FNo. Len. Field Value +16:41:09 ============================================================================ +16:41:09 [ 1] [ 4] [0200] +16:41:09 [ 2] [ 16] [6688990040140806] +16:41:09 [ 3] [ 6] [011000] +16:41:09 [ 4] [ 12] [000005000000] +16:41:09 [ 7] [ 10] [0320164104] +16:41:09 [ 11] [ 6] [802847] +16:41:09 [ 12] [ 6] [164104] +16:41:09 [ 13] [ 4] [0320] +16:41:09 [ 15] [ 4] [0320] +16:41:09 [ 18] [ 4] [6011] +16:41:09 [ 22] [ 3] [900] +16:41:09 [ 25] [ 2] [02] +16:41:09 [ 28] [ 9] [D00002000] +16:41:09 [ 32] [ 6] [621354] +16:41:09 [ 35] [ 37] [6688990040140806=98041261622143500000] +16:41:09 [ 37] [ 12] [507905200938] +16:41:09 [ 41] [ 8] [07001700] +16:41:09 [ 42] [ 15] [NATIVE ] +16:41:09 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +16:41:09 [ 49] [ 3] [418] +16:41:09 [ 52] [ 16] [7C6EAFEA63F18C45] +16:41:09 ============================================================================ +16:41:09 + + +waiting on router queue for slot.... +16:41:09 Sending to : +16:41:09 ============================================================================ +16:41:09 Sending to : +16:41:09 ============================================================================ +16:41:09 ============================================================================ +16:41:09 Slot Id : <171> +16:41:09 Transaction Type : REQUEST +16:41:09 Received From : +16:41:09 ============================================================================ +16:41:09 FNo. Len. Field Value +16:41:09 ============================================================================ +16:41:09 [ 1] [ 4] [0200] +16:41:09 [ 2] [ 16] [6688990040140806] +16:41:09 [ 3] [ 6] [011000] +16:41:09 [ 4] [ 12] [000005000000] +16:41:09 [ 7] [ 10] [0320164104] +16:41:09 [ 11] [ 6] [802847] +16:41:09 [ 12] [ 6] [164104] +16:41:09 [ 13] [ 4] [0320] +16:41:09 [ 15] [ 4] [0320] +16:41:09 [ 18] [ 4] [6011] +16:41:09 [ 22] [ 3] [900] +16:41:09 [ 25] [ 2] [02] +16:41:09 [ 28] [ 9] [D00002000] +16:41:09 [ 32] [ 6] [621354] +16:41:09 [ 35] [ 37] [6688990040140806=98041261622143500000] +16:41:09 [ 37] [ 12] [507905200938] +16:41:09 [ 41] [ 8] [07001700] +16:41:09 [ 42] [ 15] [NATIVE ] +16:41:09 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +16:41:09 [ 49] [ 3] [418] +16:41:09 [ 52] [ 16] [7C6EAFEA63F18C45] +16:41:09 ============================================================================ +16:41:09 + + +waiting on router queue for slot.... +16:41:09 Sending to : +16:41:09 ============================================================================ +16:41:09 ============================================================================ +16:41:09 Slot Id : <171> +16:41:09 Transaction Type : REQUEST +16:41:09 Received From : +16:41:09 ============================================================================ +16:41:09 FNo. Len. Field Value +16:41:09 ============================================================================ +16:41:09 [ 1] [ 4] [0200] +16:41:09 [ 2] [ 16] [6688990040140806] +16:41:09 [ 3] [ 6] [011000] +16:41:09 [ 4] [ 12] [000005000000] +16:41:09 [ 7] [ 10] [0320164104] +16:41:09 [ 11] [ 6] [802847] +16:41:09 [ 12] [ 6] [164104] +16:41:09 [ 13] [ 4] [0320] +16:41:09 [ 15] [ 4] [0320] +16:41:09 [ 18] [ 4] [6011] +16:41:09 [ 22] [ 3] [900] +16:41:09 [ 25] [ 2] [02] +16:41:09 [ 28] [ 9] [D00002000] +16:41:09 [ 32] [ 6] [621354] +16:41:09 [ 35] [ 37] [6688990040140806=98041261622143500000] +16:41:09 [ 37] [ 12] [507905200938] +16:41:09 [ 41] [ 8] [07001700] +16:41:09 [ 42] [ 15] [NATIVE ] +16:41:09 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +16:41:09 [ 49] [ 3] [418] +16:41:09 [ 52] [ 16] [C9C3D148E5099F9F] +16:41:09 ============================================================================ +16:41:09 + + +waiting on router queue for slot.... +16:41:09 Sending to : <4> +16:41:09 ============================================================================ +16:41:10 ============================================================================ +16:41:10 Slot Id : <171> +16:41:10 Transaction Type : RESPONSE +16:41:10 Received From : +16:41:10 ============================================================================ +16:41:10 FNo. Len. Field Value +16:41:10 ============================================================================ +16:41:10 [ 1] [ 4] [0210] +16:41:10 [ 2] [ 16] [6688990040140806] +16:41:10 [ 3] [ 6] [011000] +16:41:10 [ 4] [ 12] [000005000000] +16:41:10 [ 11] [ 6] [802847] +16:41:10 [ 12] [ 6] [164104] +16:41:10 [ 15] [ 4] [0320] +16:41:10 [ 18] [ 4] [6011] +16:41:10 [ 32] [ 6] [621354] +16:41:10 [ 35] [ 37] [6688990040140806=98041261622143500000] +16:41:10 [ 37] [ 12] [507905200938] +16:41:10 [ 38] [ 6] [341757] +16:41:10 [ 39] [ 2] [00] +16:41:10 [ 41] [ 8] [07001700] +16:41:10 [ 49] [ 3] [418] +16:41:10 [ 54] [ 20] [1002418C000168595600] +16:41:10 ============================================================================ +16:41:10 Sending to : +16:41:10 ============================================================================ +16:41:10 + + +waiting on router queue for slot.... +16:41:11 ============================================================================ +16:41:11 Slot Id : <171> +16:41:11 Transaction Type : RESPONSE +16:41:11 Received From : +16:41:11 ============================================================================ +16:41:11 FNo. Len. Field Value +16:41:11 ============================================================================ +16:41:11 [ 1] [ 4] [0210] +16:41:11 [ 2] [ 16] [6688990040140806] +16:41:11 [ 3] [ 6] [011000] +16:41:11 [ 4] [ 12] [000005000000] +16:41:11 [ 11] [ 6] [802847] +16:41:11 [ 12] [ 6] [164104] +16:41:11 [ 15] [ 4] [0320] +16:41:11 [ 18] [ 4] [6011] +16:41:11 [ 32] [ 6] [621354] +16:41:11 [ 35] [ 37] [6688990040140806=98041261622143500000] +16:41:11 [ 37] [ 12] [507905200938] +16:41:11 [ 38] [ 6] [341757] +16:41:11 [ 39] [ 2] [00] +16:41:11 [ 41] [ 8] [07001700] +16:41:11 [ 49] [ 3] [418] +16:41:11 [ 54] [ 20] [1002418C000168595600] +16:41:11 ============================================================================ +16:41:11 Calculate Source COMM Id = 0 +16:41:11 ============================================================================ +16:41:11 + + +waiting on router queue for slot.... +16:41:20 ============================================================================ +16:41:20 Slot Id : <186> +16:41:20 Transaction Type : REQUEST +16:41:20 Received From : +16:41:20 ============================================================================ +16:41:20 FNo. Len. Field Value +16:41:20 ============================================================================ +16:41:20 [ 1] [ 4] [0800] +16:41:20 [ 7] [ 10] [0320094027] +16:41:20 [ 11] [ 6] [157282] +16:41:20 [ 70] [ 3] [301] +16:41:20 ============================================================================ +16:41:20 + + +waiting on router queue for slot.... +16:41:20 Sending to : +16:41:20 ============================================================================ +16:41:20 ============================================================================ +16:41:20 Slot Id : <186> +16:41:20 Transaction Type : RESPONSE +16:41:20 Received From : +16:41:20 ============================================================================ +16:41:20 FNo. Len. Field Value +16:41:20 ============================================================================ +16:41:20 [ 1] [ 4] [0810] +16:41:20 [ 7] [ 10] [0320094027] +16:41:20 [ 11] [ 6] [157282] +16:41:20 [ 39] [ 2] [00] +16:41:20 [ 70] [ 3] [301] +16:41:20 ============================================================================ +16:41:20 Calculate Source COMM Id = 2 +16:41:20 ============================================================================ +16:41:20 + + +waiting on router queue for slot.... +16:41:22 ============================================================================ +16:41:22 Slot Id : <164> +16:41:22 Transaction Type : REQUEST +16:41:22 Received From : +16:41:22 ============================================================================ +16:41:22 FNo. Len. Field Value +16:41:22 ============================================================================ +16:41:22 [ 1] [ 4] [0800] +16:41:22 [ 7] [ 10] [0320093912] +16:41:22 [ 11] [ 6] [097514] +16:41:22 [ 37] [ 12] [57916097514] +16:41:22 [ 70] [ 3] [301] +16:41:22 ============================================================================ +16:41:22 + + +waiting on router queue for slot.... +16:41:22 Sending to : +16:41:22 ============================================================================ +16:41:22 ============================================================================ +16:41:22 Slot Id : <164> +16:41:22 Transaction Type : RESPONSE +16:41:22 Received From : +16:41:22 ============================================================================ +16:41:22 FNo. Len. Field Value +16:41:22 ============================================================================ +16:41:22 [ 1] [ 4] [0810] +16:41:22 [ 7] [ 10] [0320093912] +16:41:22 [ 11] [ 6] [097514] +16:41:22 [ 37] [ 12] [579160975140] +16:41:22 [ 39] [ 2] [00] +16:41:22 [ 70] [ 3] [810] +16:41:22 ============================================================================ +16:41:22 Calculate Source COMM Id = 4 +16:41:22 ============================================================================ +16:41:22 + + +waiting on router queue for slot.... +16:41:26 ============================================================================ +16:41:26 Slot Id : <126> +16:41:26 Transaction Type : REQUEST +16:41:26 Received From : +16:41:26 ============================================================================ +16:41:26 FNo. Len. Field Value +16:41:26 ============================================================================ +16:41:26 [ 1] [ 4] [0200] +16:41:26 [ 2] [ 16] [6213541000520216] +16:41:26 [ 3] [ 6] [011000] +16:41:26 [ 4] [ 12] [000010000000] +16:41:26 [ 7] [ 10] [0320094033] +16:41:26 [ 11] [ 6] [270577] +16:41:26 [ 12] [ 6] [164033] +16:41:26 [ 13] [ 4] [0320] +16:41:26 [ 14] [ 4] [4912] +16:41:26 [ 15] [ 4] [0320] +16:41:26 [ 18] [ 4] [6011] +16:41:26 [ 19] [ 3] [418] +16:41:26 [ 22] [ 3] [021] +16:41:26 [ 25] [ 2] [01] +16:41:26 [ 28] [ 9] [D00002000] +16:41:26 [ 32] [ 6] [180893] +16:41:26 [ 35] [ 32] [6213541000520216=491212012021755] +16:41:26 [ 37] [ 12] [507909270577] +16:41:26 [ 41] [ 8] [0463LNTN] +16:41:26 [ 42] [ 15] [999999 ] +16:41:26 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +16:41:26 [ 49] [ 3] [418] +16:41:26 [ 52] [ 16] [F304F0EDF5305207] +16:41:26 ============================================================================ +16:41:26 + + +waiting on router queue for slot.... +16:41:26 Sending to : +16:41:26 ============================================================================ +16:41:26 Sending to : +16:41:26 ============================================================================ +16:41:26 ============================================================================ +16:41:26 Slot Id : <126> +16:41:26 Transaction Type : REQUEST +16:41:26 Received From : +16:41:26 ============================================================================ +16:41:26 FNo. Len. Field Value +16:41:26 ============================================================================ +16:41:26 [ 1] [ 4] [0200] +16:41:26 [ 2] [ 16] [6213541000520216] +16:41:26 [ 3] [ 6] [011000] +16:41:26 [ 4] [ 12] [000010000000] +16:41:26 [ 7] [ 10] [0320094033] +16:41:26 [ 11] [ 6] [270577] +16:41:26 [ 12] [ 6] [164033] +16:41:26 [ 13] [ 4] [0320] +16:41:26 [ 14] [ 4] [4912] +16:41:26 [ 15] [ 4] [0320] +16:41:26 [ 18] [ 4] [6011] +16:41:26 [ 19] [ 3] [418] +16:41:26 [ 22] [ 3] [021] +16:41:26 [ 25] [ 2] [01] +16:41:26 [ 28] [ 9] [D00002000] +16:41:26 [ 32] [ 6] [180893] +16:41:26 [ 35] [ 32] [6213541000520216=491212012021755] +16:41:26 [ 37] [ 12] [507909270577] +16:41:26 [ 41] [ 8] [0463LNTN] +16:41:26 [ 42] [ 15] [999999 ] +16:41:26 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +16:41:26 [ 49] [ 3] [418] +16:41:26 [ 52] [ 16] [F304F0EDF5305207] +16:41:26 ============================================================================ +16:41:26 + + +waiting on router queue for slot.... +16:41:26 Sending to : +16:41:26 ============================================================================ +16:41:26 ============================================================================ +16:41:26 Slot Id : <126> +16:41:26 Transaction Type : REQUEST +16:41:26 Received From : +16:41:26 ============================================================================ +16:41:26 FNo. Len. Field Value +16:41:26 ============================================================================ +16:41:26 [ 1] [ 4] [0200] +16:41:26 [ 2] [ 16] [6213541000520216] +16:41:26 [ 3] [ 6] [011000] +16:41:26 [ 4] [ 12] [000010000000] +16:41:26 [ 7] [ 10] [0320094033] +16:41:26 [ 11] [ 6] [270577] +16:41:26 [ 12] [ 6] [164033] +16:41:26 [ 13] [ 4] [0320] +16:41:26 [ 14] [ 4] [4912] +16:41:26 [ 15] [ 4] [0320] +16:41:26 [ 18] [ 4] [6011] +16:41:26 [ 19] [ 3] [418] +16:41:26 [ 22] [ 3] [021] +16:41:26 [ 25] [ 2] [01] +16:41:26 [ 28] [ 9] [D00002000] +16:41:26 [ 32] [ 6] [180893] +16:41:26 [ 35] [ 32] [6213541000520216=491212012021755] +16:41:26 [ 37] [ 12] [507909270577] +16:41:26 [ 41] [ 8] [0463LNTN] +16:41:26 [ 42] [ 15] [999999 ] +16:41:26 [ 43] [ 40] [ATM NALAE LUANGNUMTHA, Nalae, Lao People] +16:41:26 [ 49] [ 3] [418] +16:41:26 [ 52] [ 16] [9D593EF59D88B70F] +16:41:26 ============================================================================ +16:41:26 + + +waiting on router queue for slot.... +16:41:26 Sending to : <0> +16:41:26 ============================================================================ +16:41:27 ============================================================================ +16:41:27 Slot Id : <126> +16:41:27 Transaction Type : RESPONSE +16:41:27 Received From : +16:41:27 ============================================================================ +16:41:27 FNo. Len. Field Value +16:41:27 ============================================================================ +16:41:27 [ 1] [ 4] [0210] +16:41:27 [ 2] [ 16] [6213541000520216] +16:41:27 [ 3] [ 6] [011000] +16:41:27 [ 4] [ 12] [000010000000] +16:41:27 [ 7] [ 10] [0320094033] +16:41:27 [ 11] [ 6] [270577] +16:41:27 [ 12] [ 6] [164033] +16:41:27 [ 13] [ 4] [0320] +16:41:27 [ 15] [ 4] [0320] +16:41:27 [ 18] [ 4] [6011] +16:41:27 [ 19] [ 3] [418] +16:41:27 [ 32] [ 6] [180893] +16:41:27 [ 35] [ 32] [6213541000520216=491212012021755] +16:41:27 [ 37] [ 12] [507909270577] +16:41:27 [ 38] [ 6] [072965] +16:41:27 [ 39] [ 2] [00] +16:41:27 [ 41] [ 8] [0463LNTN] +16:41:27 [ 49] [ 3] [418] +16:41:27 [ 54] [ 40] [1001418C0000927982911002418C000092798291] +16:41:27 ============================================================================ +16:41:27 Sending to : +16:41:27 ============================================================================ +16:41:27 + + +waiting on router queue for slot.... +16:41:28 ============================================================================ +16:41:28 Slot Id : <126> +16:41:28 Transaction Type : RESPONSE +16:41:28 Received From : +16:41:28 ============================================================================ +16:41:28 FNo. Len. Field Value +16:41:28 ============================================================================ +16:41:28 [ 1] [ 4] [0210] +16:41:28 [ 2] [ 16] [6213541000520216] +16:41:28 [ 3] [ 6] [011000] +16:41:28 [ 4] [ 12] [000010000000] +16:41:28 [ 7] [ 10] [0320094033] +16:41:28 [ 11] [ 6] [270577] +16:41:28 [ 12] [ 6] [164033] +16:41:28 [ 13] [ 4] [0320] +16:41:28 [ 15] [ 4] [0320] +16:41:28 [ 18] [ 4] [6011] +16:41:28 [ 19] [ 3] [418] +16:41:28 [ 32] [ 6] [180893] +16:41:28 [ 35] [ 32] [6213541000520216=491212012021755] +16:41:28 [ 37] [ 12] [507909270577] +16:41:28 [ 38] [ 6] [072965] +16:41:28 [ 39] [ 2] [00] +16:41:28 [ 41] [ 8] [0463LNTN] +16:41:28 [ 49] [ 3] [418] +16:41:28 [ 54] [ 40] [1001418C0000927982911002418C000092798291] +16:41:28 ============================================================================ +16:41:28 Calculate Source COMM Id = 2 +16:41:28 ============================================================================ +16:41:28 + + +waiting on router queue for slot.... +16:41:32 ============================================================================ +16:41:32 Slot Id : <139> +16:41:32 Transaction Type : REQUEST +16:41:32 Received From : +16:41:32 ============================================================================ +16:41:32 FNo. Len. Field Value +16:41:32 ============================================================================ +16:41:32 [ 1] [ 4] [0200] +16:41:32 [ 2] [ 16] [6213544002131305] +16:41:32 [ 3] [ 6] [301000] +16:41:32 [ 4] [ 12] [000000000000] +16:41:32 [ 7] [ 10] [0320164152] +16:41:32 [ 11] [ 6] [208894] +16:41:32 [ 12] [ 6] [163657] +16:41:32 [ 13] [ 4] [0320] +16:41:32 [ 14] [ 4] [4912] +16:41:32 [ 15] [ 4] [0320] +16:41:32 [ 18] [ 4] [6011] +16:41:32 [ 19] [ 3] [418] +16:41:32 [ 22] [ 3] [021] +16:41:32 [ 25] [ 2] [01] +16:41:32 [ 28] [ 9] [D00000000] +16:41:32 [ 32] [ 6] [198901] +16:41:32 [ 35] [ 32] [6213544002131305=491212013130334] +16:41:32 [ 37] [ 12] [507916208894] +16:41:32 [ 41] [ 8] [19529001] +16:41:32 [ 42] [ 15] [000000041952901] +16:41:32 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:41:32 [ 49] [ 3] [418] +16:41:32 [ 52] [ 16] [C781D597723BB729] +16:41:32 ============================================================================ +16:41:32 + + +waiting on router queue for slot.... +16:41:32 Sending to : +16:41:32 ============================================================================ +16:41:32 Sending to : +16:41:32 ============================================================================ +16:41:32 ============================================================================ +16:41:32 Slot Id : <139> +16:41:32 Transaction Type : REQUEST +16:41:32 Received From : +16:41:32 ============================================================================ +16:41:32 FNo. Len. Field Value +16:41:32 ============================================================================ +16:41:32 [ 1] [ 4] [0200] +16:41:32 [ 2] [ 16] [6213544002131305] +16:41:32 [ 3] [ 6] [301000] +16:41:32 [ 4] [ 12] [000000000000] +16:41:32 [ 7] [ 10] [0320164152] +16:41:32 [ 11] [ 6] [208894] +16:41:32 [ 12] [ 6] [163657] +16:41:32 [ 13] [ 4] [0320] +16:41:32 [ 14] [ 4] [4912] +16:41:32 [ 15] [ 4] [0320] +16:41:32 [ 18] [ 4] [6011] +16:41:32 [ 19] [ 3] [418] +16:41:32 [ 22] [ 3] [021] +16:41:32 [ 25] [ 2] [01] +16:41:32 [ 28] [ 9] [D00000000] +16:41:32 [ 32] [ 6] [198901] +16:41:32 [ 35] [ 32] [6213544002131305=491212013130334] +16:41:32 [ 37] [ 12] [507916208894] +16:41:32 [ 41] [ 8] [19529001] +16:41:32 [ 42] [ 15] [000000041952901] +16:41:32 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:41:32 [ 49] [ 3] [418] +16:41:32 [ 52] [ 16] [C781D597723BB729] +16:41:32 ============================================================================ +16:41:32 + + +waiting on router queue for slot.... +16:41:32 Sending to : +16:41:32 ============================================================================ +16:41:32 ============================================================================ +16:41:32 Slot Id : <139> +16:41:32 Transaction Type : REQUEST +16:41:32 Received From : +16:41:32 ============================================================================ +16:41:32 FNo. Len. Field Value +16:41:32 ============================================================================ +16:41:32 [ 1] [ 4] [0200] +16:41:32 [ 2] [ 16] [6213544002131305] +16:41:32 [ 3] [ 6] [301000] +16:41:32 [ 4] [ 12] [000000000000] +16:41:32 [ 7] [ 10] [0320164152] +16:41:32 [ 11] [ 6] [208894] +16:41:32 [ 12] [ 6] [163657] +16:41:32 [ 13] [ 4] [0320] +16:41:32 [ 14] [ 4] [4912] +16:41:32 [ 15] [ 4] [0320] +16:41:32 [ 18] [ 4] [6011] +16:41:32 [ 19] [ 3] [418] +16:41:32 [ 22] [ 3] [021] +16:41:32 [ 25] [ 2] [01] +16:41:32 [ 28] [ 9] [D00000000] +16:41:32 [ 32] [ 6] [198901] +16:41:32 [ 35] [ 32] [6213544002131305=491212013130334] +16:41:32 [ 37] [ 12] [507916208894] +16:41:32 [ 41] [ 8] [19529001] +16:41:32 [ 42] [ 15] [000000041952901] +16:41:32 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:41:32 [ 49] [ 3] [418] +16:41:32 [ 52] [ 16] [065FC812F902D21C] +16:41:32 ============================================================================ +16:41:32 + + +waiting on router queue for slot.... +16:41:32 Sending to : <0> +16:41:32 ============================================================================ +16:41:33 ============================================================================ +16:41:33 Slot Id : <139> +16:41:33 Transaction Type : RESPONSE +16:41:33 Received From : +16:41:33 ============================================================================ +16:41:33 FNo. Len. Field Value +16:41:33 ============================================================================ +16:41:33 [ 1] [ 4] [0210] +16:41:33 [ 2] [ 16] [6213544002131305] +16:41:33 [ 3] [ 6] [301000] +16:41:33 [ 4] [ 12] [000000000000] +16:41:33 [ 7] [ 10] [0320164152] +16:41:33 [ 11] [ 6] [208894] +16:41:33 [ 12] [ 6] [163657] +16:41:33 [ 13] [ 4] [0320] +16:41:33 [ 15] [ 4] [0320] +16:41:33 [ 18] [ 4] [6011] +16:41:33 [ 19] [ 3] [418] +16:41:33 [ 32] [ 6] [198901] +16:41:33 [ 35] [ 32] [6213544002131305=491212013130334] +16:41:33 [ 37] [ 12] [507916208894] +16:41:33 [ 38] [ 6] [007689] +16:41:33 [ 39] [ 2] [00] +16:41:33 [ 41] [ 8] [19529001] +16:41:33 [ 49] [ 3] [418] +16:41:33 [ 54] [ 40] [1001418C0000657877141002418C000065787714] +16:41:33 ============================================================================ +16:41:33 Sending to : +16:41:33 ============================================================================ +16:41:33 + + +waiting on router queue for slot.... +16:41:34 ============================================================================ +16:41:34 Slot Id : <139> +16:41:34 Transaction Type : RESPONSE +16:41:34 Received From : +16:41:34 ============================================================================ +16:41:34 FNo. Len. Field Value +16:41:34 ============================================================================ +16:41:34 [ 1] [ 4] [0210] +16:41:34 [ 2] [ 16] [6213544002131305] +16:41:34 [ 3] [ 6] [301000] +16:41:34 [ 4] [ 12] [000000000000] +16:41:34 [ 7] [ 10] [0320164152] +16:41:34 [ 11] [ 6] [208894] +16:41:34 [ 12] [ 6] [163657] +16:41:34 [ 13] [ 4] [0320] +16:41:34 [ 15] [ 4] [0320] +16:41:34 [ 18] [ 4] [6011] +16:41:34 [ 19] [ 3] [418] +16:41:34 [ 32] [ 6] [198901] +16:41:34 [ 35] [ 32] [6213544002131305=491212013130334] +16:41:34 [ 37] [ 12] [507916208894] +16:41:34 [ 38] [ 6] [007689] +16:41:34 [ 39] [ 2] [00] +16:41:34 [ 41] [ 8] [19529001] +16:41:34 [ 49] [ 3] [418] +16:41:34 [ 54] [ 40] [1001418C0000657877141002418C000065787714] +16:41:34 ============================================================================ +16:41:34 Calculate Source COMM Id = 5 +16:41:34 ============================================================================ +16:41:34 + + +waiting on router queue for slot.... +16:41:38 ============================================================================ +16:41:38 Slot Id : <148> +16:41:38 Transaction Type : REQUEST +16:41:38 Received From : +16:41:38 ============================================================================ +16:41:38 FNo. Len. Field Value +16:41:38 ============================================================================ +16:41:38 [ 1] [ 4] [0200] +16:41:38 [ 2] [ 16] [6688990103639900] +16:41:38 [ 3] [ 6] [010000] +16:41:38 [ 4] [ 12] [000020000000] +16:41:38 [ 7] [ 10] [0320164133] +16:41:38 [ 11] [ 6] [802996] +16:41:38 [ 12] [ 6] [164133] +16:41:38 [ 13] [ 4] [0320] +16:41:38 [ 15] [ 4] [0320] +16:41:38 [ 18] [ 4] [6011] +16:41:38 [ 22] [ 3] [900] +16:41:38 [ 25] [ 2] [02] +16:41:38 [ 28] [ 9] [D00002000] +16:41:38 [ 32] [ 6] [621354] +16:41:38 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:41:38 [ 37] [ 12] [507903499616] +16:41:38 [ 41] [ 8] [06002200] +16:41:38 [ 42] [ 15] [NATIVE ] +16:41:38 [ 43] [ 40] [Beng Market Beng LAO] +16:41:38 [ 49] [ 3] [418] +16:41:38 [ 52] [ 16] [48D2EEB63F10A8A0] +16:41:38 ============================================================================ +16:41:38 + + +waiting on router queue for slot.... +16:41:38 Sending to : +16:41:38 ============================================================================ +16:41:38 Sending to : +16:41:38 ============================================================================ +16:41:39 ============================================================================ +16:41:39 Slot Id : <148> +16:41:39 Transaction Type : REQUEST +16:41:39 Received From : +16:41:39 ============================================================================ +16:41:39 FNo. Len. Field Value +16:41:39 ============================================================================ +16:41:39 [ 1] [ 4] [0200] +16:41:39 [ 2] [ 16] [6688990103639900] +16:41:39 [ 3] [ 6] [010000] +16:41:39 [ 4] [ 12] [000020000000] +16:41:39 [ 7] [ 10] [0320164133] +16:41:39 [ 11] [ 6] [802996] +16:41:39 [ 12] [ 6] [164133] +16:41:39 [ 13] [ 4] [0320] +16:41:39 [ 15] [ 4] [0320] +16:41:39 [ 18] [ 4] [6011] +16:41:39 [ 22] [ 3] [900] +16:41:39 [ 25] [ 2] [02] +16:41:39 [ 28] [ 9] [D00002000] +16:41:39 [ 32] [ 6] [621354] +16:41:39 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:41:39 [ 37] [ 12] [507903499616] +16:41:39 [ 41] [ 8] [06002200] +16:41:39 [ 42] [ 15] [NATIVE ] +16:41:39 [ 43] [ 40] [Beng Market Beng LAO] +16:41:39 [ 49] [ 3] [418] +16:41:39 [ 52] [ 16] [48D2EEB63F10A8A0] +16:41:39 ============================================================================ +16:41:39 + + +waiting on router queue for slot.... +16:41:39 Sending to : +16:41:39 ============================================================================ +16:41:39 ============================================================================ +16:41:39 Slot Id : <148> +16:41:39 Transaction Type : REQUEST +16:41:39 Received From : +16:41:39 ============================================================================ +16:41:39 FNo. Len. Field Value +16:41:39 ============================================================================ +16:41:39 [ 1] [ 4] [0200] +16:41:39 [ 2] [ 16] [6688990103639900] +16:41:39 [ 3] [ 6] [010000] +16:41:39 [ 4] [ 12] [000020000000] +16:41:39 [ 7] [ 10] [0320164133] +16:41:39 [ 11] [ 6] [802996] +16:41:39 [ 12] [ 6] [164133] +16:41:39 [ 13] [ 4] [0320] +16:41:39 [ 15] [ 4] [0320] +16:41:39 [ 18] [ 4] [6011] +16:41:39 [ 22] [ 3] [900] +16:41:39 [ 25] [ 2] [02] +16:41:39 [ 28] [ 9] [D00002000] +16:41:39 [ 32] [ 6] [621354] +16:41:39 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:41:39 [ 37] [ 12] [507903499616] +16:41:39 [ 41] [ 8] [06002200] +16:41:39 [ 42] [ 15] [NATIVE ] +16:41:39 [ 43] [ 40] [Beng Market Beng LAO] +16:41:39 [ 49] [ 3] [418] +16:41:39 [ 52] [ 16] [E50625F8037D9A71] +16:41:39 ============================================================================ +16:41:39 + + +waiting on router queue for slot.... +16:41:39 Sending to : <4> +16:41:39 ============================================================================ +16:41:40 ============================================================================ +16:41:40 Slot Id : <148> +16:41:40 Transaction Type : RESPONSE +16:41:40 Received From : +16:41:40 ============================================================================ +16:41:40 FNo. Len. Field Value +16:41:40 ============================================================================ +16:41:40 [ 1] [ 4] [0210] +16:41:40 [ 2] [ 16] [6688990103639900] +16:41:40 [ 3] [ 6] [010000] +16:41:40 [ 4] [ 12] [000020000000] +16:41:40 [ 11] [ 6] [802996] +16:41:40 [ 12] [ 6] [164133] +16:41:40 [ 15] [ 4] [0320] +16:41:40 [ 18] [ 4] [6011] +16:41:40 [ 32] [ 6] [621354] +16:41:40 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:41:40 [ 37] [ 12] [507903499616] +16:41:40 [ 38] [ 6] [086425] +16:41:40 [ 39] [ 2] [00] +16:41:40 [ 41] [ 8] [06002200] +16:41:40 [ 49] [ 3] [418] +16:41:40 [ 54] [ 20] [0002418C000003706194] +16:41:40 ============================================================================ +16:41:40 Sending to : +16:41:40 ============================================================================ +16:41:40 + + +waiting on router queue for slot.... +16:41:41 ============================================================================ +16:41:41 Slot Id : <148> +16:41:41 Transaction Type : RESPONSE +16:41:41 Received From : +16:41:41 ============================================================================ +16:41:41 FNo. Len. Field Value +16:41:41 ============================================================================ +16:41:41 [ 1] [ 4] [0210] +16:41:41 [ 2] [ 16] [6688990103639900] +16:41:41 [ 3] [ 6] [010000] +16:41:41 [ 4] [ 12] [000020000000] +16:41:41 [ 11] [ 6] [802996] +16:41:41 [ 12] [ 6] [164133] +16:41:41 [ 15] [ 4] [0320] +16:41:41 [ 18] [ 4] [6011] +16:41:41 [ 32] [ 6] [621354] +16:41:41 [ 35] [ 37] [6688990103639900=43011231990010200000] +16:41:41 [ 37] [ 12] [507903499616] +16:41:41 [ 38] [ 6] [086425] +16:41:41 [ 39] [ 2] [00] +16:41:41 [ 41] [ 8] [06002200] +16:41:41 [ 49] [ 3] [418] +16:41:41 [ 54] [ 20] [0002418C000003706194] +16:41:41 ============================================================================ +16:41:41 Calculate Source COMM Id = 0 +16:41:41 ============================================================================ +16:41:41 + + +waiting on router queue for slot.... +16:41:41 ============================================================================ +16:41:41 Slot Id : <119> +16:41:41 Transaction Type : REQUEST +16:41:41 Received From : +16:41:41 ============================================================================ +16:41:41 FNo. Len. Field Value +16:41:41 ============================================================================ +16:41:41 [ 1] [ 4] [0800] +16:41:41 [ 7] [ 10] [0320094048] +16:41:41 [ 11] [ 6] [157283] +16:41:41 [ 70] [ 3] [301] +16:41:41 ============================================================================ +16:41:41 + + +waiting on router queue for slot.... +16:41:41 Sending to : +16:41:41 ============================================================================ +16:41:41 ============================================================================ +16:41:41 Slot Id : <119> +16:41:41 Transaction Type : RESPONSE +16:41:41 Received From : +16:41:41 ============================================================================ +16:41:41 FNo. Len. Field Value +16:41:41 ============================================================================ +16:41:41 [ 1] [ 4] [0810] +16:41:41 [ 7] [ 10] [0320094048] +16:41:41 [ 11] [ 6] [157283] +16:41:41 [ 39] [ 2] [00] +16:41:41 [ 70] [ 3] [301] +16:41:41 ============================================================================ +16:41:41 Calculate Source COMM Id = 2 +16:41:41 ============================================================================ +16:41:41 + + +waiting on router queue for slot.... +16:41:44 ============================================================================ +16:41:44 Slot Id : <202> +16:41:44 Transaction Type : REQUEST +16:41:44 Received From : +16:41:44 ============================================================================ +16:41:44 FNo. Len. Field Value +16:41:44 ============================================================================ +16:41:44 [ 1] [ 4] [0200] +16:41:44 [ 2] [ 16] [6213544000465044] +16:41:44 [ 3] [ 6] [010000] +16:41:44 [ 4] [ 12] [000062000000] +16:41:44 [ 7] [ 10] [0320164931] +16:41:44 [ 11] [ 6] [240435] +16:41:44 [ 12] [ 6] [164931] +16:41:44 [ 13] [ 4] [0320] +16:41:44 [ 14] [ 4] [4912] +16:41:44 [ 15] [ 4] [0320] +16:41:44 [ 18] [ 4] [6011] +16:41:44 [ 22] [ 3] [900] +16:41:44 [ 25] [ 2] [02] +16:41:44 [ 28] [ 9] [D00002000] +16:41:44 [ 32] [ 6] [220699] +16:41:44 [ 35] [ 32] [6213544000465044=491212016504446] +16:41:44 [ 37] [ 12] [507900360200] +16:41:44 [ 41] [ 8] [05000300] +16:41:44 [ 42] [ 15] [APTRA ] +16:41:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:41:44 [ 49] [ 3] [418] +16:41:44 [ 52] [ 16] [B82AEB07A79BE317] +16:41:44 ============================================================================ +16:41:44 + + +waiting on router queue for slot.... +16:41:44 Sending to : +16:41:44 ============================================================================ +16:41:44 Sending to : +16:41:44 ============================================================================ +16:41:44 ============================================================================ +16:41:44 Slot Id : <202> +16:41:44 Transaction Type : REQUEST +16:41:44 Received From : +16:41:44 ============================================================================ +16:41:44 FNo. Len. Field Value +16:41:44 ============================================================================ +16:41:44 [ 1] [ 4] [0200] +16:41:44 [ 2] [ 16] [6213544000465044] +16:41:44 [ 3] [ 6] [010000] +16:41:44 [ 4] [ 12] [000062000000] +16:41:44 [ 7] [ 10] [0320164931] +16:41:44 [ 11] [ 6] [240435] +16:41:44 [ 12] [ 6] [164931] +16:41:44 [ 13] [ 4] [0320] +16:41:44 [ 14] [ 4] [4912] +16:41:44 [ 15] [ 4] [0320] +16:41:44 [ 18] [ 4] [6011] +16:41:44 [ 22] [ 3] [900] +16:41:44 [ 25] [ 2] [02] +16:41:44 [ 28] [ 9] [D00002000] +16:41:44 [ 32] [ 6] [220699] +16:41:44 [ 35] [ 32] [6213544000465044=491212016504446] +16:41:44 [ 37] [ 12] [507900360200] +16:41:44 [ 41] [ 8] [05000300] +16:41:44 [ 42] [ 15] [APTRA ] +16:41:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:41:44 [ 49] [ 3] [418] +16:41:44 [ 52] [ 16] [B82AEB07A79BE317] +16:41:44 ============================================================================ +16:41:44 + + +waiting on router queue for slot.... +16:41:44 Sending to : +16:41:44 ============================================================================ +16:41:44 ============================================================================ +16:41:44 Slot Id : <202> +16:41:44 Transaction Type : REQUEST +16:41:44 Received From : +16:41:44 ============================================================================ +16:41:44 FNo. Len. Field Value +16:41:44 ============================================================================ +16:41:44 [ 1] [ 4] [0200] +16:41:44 [ 2] [ 16] [6213544000465044] +16:41:44 [ 3] [ 6] [010000] +16:41:44 [ 4] [ 12] [000062000000] +16:41:44 [ 7] [ 10] [0320164931] +16:41:44 [ 11] [ 6] [240435] +16:41:44 [ 12] [ 6] [164931] +16:41:44 [ 13] [ 4] [0320] +16:41:44 [ 14] [ 4] [4912] +16:41:44 [ 15] [ 4] [0320] +16:41:44 [ 18] [ 4] [6011] +16:41:44 [ 22] [ 3] [900] +16:41:44 [ 25] [ 2] [02] +16:41:44 [ 28] [ 9] [D00002000] +16:41:44 [ 32] [ 6] [220699] +16:41:44 [ 35] [ 32] [6213544000465044=491212016504446] +16:41:44 [ 37] [ 12] [507900360200] +16:41:44 [ 41] [ 8] [05000300] +16:41:44 [ 42] [ 15] [APTRA ] +16:41:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:41:44 [ 49] [ 3] [418] +16:41:44 [ 52] [ 16] [03C9F44B41910361] +16:41:44 ============================================================================ +16:41:44 + + +waiting on router queue for slot.... +16:41:44 Sending to : <0> +16:41:44 ============================================================================ +16:41:44 ============================================================================ +16:41:44 Slot Id : <202> +16:41:44 Transaction Type : RESPONSE +16:41:44 Received From : +16:41:44 ============================================================================ +16:41:44 FNo. Len. Field Value +16:41:44 ============================================================================ +16:41:44 [ 1] [ 4] [0210] +16:41:44 [ 2] [ 16] [6213544000465044] +16:41:44 [ 3] [ 6] [010000] +16:41:44 [ 4] [ 12] [000062000000] +16:41:44 [ 7] [ 10] [0320164931] +16:41:44 [ 11] [ 6] [240435] +16:41:44 [ 12] [ 6] [164931] +16:41:44 [ 13] [ 4] [0320] +16:41:44 [ 15] [ 4] [0320] +16:41:44 [ 18] [ 4] [6011] +16:41:44 [ 32] [ 6] [220699] +16:41:44 [ 35] [ 32] [6213544000465044=491212016504446] +16:41:44 [ 37] [ 12] [507900360200] +16:41:44 [ 38] [ 6] [240435] +16:41:44 [ 39] [ 2] [51] +16:41:44 [ 41] [ 8] [05000300] +16:41:44 [ 49] [ 3] [418] +16:41:44 [ 54] [ 40] [0001418C0000671305820002418C000067130582] +16:41:44 ============================================================================ +16:41:44 Sending to : +16:41:44 ============================================================================ +16:41:44 + + +waiting on router queue for slot.... +16:41:46 ============================================================================ +16:41:46 Slot Id : <202> +16:41:46 Transaction Type : RESPONSE +16:41:46 Received From : +16:41:46 ============================================================================ +16:41:46 FNo. Len. Field Value +16:41:46 ============================================================================ +16:41:46 [ 1] [ 4] [0210] +16:41:46 [ 2] [ 16] [6213544000465044] +16:41:46 [ 3] [ 6] [010000] +16:41:46 [ 4] [ 12] [000062000000] +16:41:46 [ 7] [ 10] [0320164931] +16:41:46 [ 11] [ 6] [240435] +16:41:46 [ 12] [ 6] [164931] +16:41:46 [ 13] [ 4] [0320] +16:41:46 [ 15] [ 4] [0320] +16:41:46 [ 18] [ 4] [6011] +16:41:46 [ 32] [ 6] [220699] +16:41:46 [ 35] [ 32] [6213544000465044=491212016504446] +16:41:46 [ 37] [ 12] [507900360200] +16:41:46 [ 38] [ 6] [240435] +16:41:46 [ 39] [ 2] [51] +16:41:46 [ 41] [ 8] [05000300] +16:41:46 [ 49] [ 3] [418] +16:41:46 [ 54] [ 40] [0001418C0000671305820002418C000067130582] +16:41:46 ============================================================================ +16:41:46 Calculate Source COMM Id = 1 +16:41:46 ============================================================================ +16:41:46 + + +waiting on router queue for slot.... +16:41:52 ============================================================================ +16:41:52 Slot Id : <176> +16:41:52 Transaction Type : REQUEST +16:41:52 Received From : +16:41:52 ============================================================================ +16:41:52 FNo. Len. Field Value +16:41:52 ============================================================================ +16:41:52 [ 1] [ 4] [0200] +16:41:52 [ 2] [ 16] [6213544002131305] +16:41:52 [ 3] [ 6] [301000] +16:41:52 [ 4] [ 12] [000000000000] +16:41:52 [ 7] [ 10] [0320164212] +16:41:52 [ 11] [ 6] [208896] +16:41:52 [ 12] [ 6] [163718] +16:41:52 [ 13] [ 4] [0320] +16:41:52 [ 14] [ 4] [4912] +16:41:52 [ 15] [ 4] [0320] +16:41:52 [ 18] [ 4] [6011] +16:41:52 [ 19] [ 3] [418] +16:41:52 [ 22] [ 3] [021] +16:41:52 [ 25] [ 2] [01] +16:41:52 [ 28] [ 9] [D00000000] +16:41:52 [ 32] [ 6] [198901] +16:41:52 [ 35] [ 32] [6213544002131305=491212013130334] +16:41:52 [ 37] [ 12] [507916208896] +16:41:52 [ 41] [ 8] [19529001] +16:41:52 [ 42] [ 15] [000000041952901] +16:41:52 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:41:52 [ 49] [ 3] [418] +16:41:52 [ 52] [ 16] [C781D597723BB729] +16:41:52 ============================================================================ +16:41:52 + + +waiting on router queue for slot.... +16:41:52 Sending to : +16:41:52 ============================================================================ +16:41:52 Sending to : +16:41:52 ============================================================================ +16:41:52 ============================================================================ +16:41:52 Slot Id : <176> +16:41:52 Transaction Type : REQUEST +16:41:52 Received From : +16:41:52 ============================================================================ +16:41:52 FNo. Len. Field Value +16:41:52 ============================================================================ +16:41:52 [ 1] [ 4] [0200] +16:41:52 [ 2] [ 16] [6213544002131305] +16:41:52 [ 3] [ 6] [301000] +16:41:52 [ 4] [ 12] [000000000000] +16:41:52 [ 7] [ 10] [0320164212] +16:41:52 [ 11] [ 6] [208896] +16:41:52 [ 12] [ 6] [163718] +16:41:52 [ 13] [ 4] [0320] +16:41:52 [ 14] [ 4] [4912] +16:41:52 [ 15] [ 4] [0320] +16:41:52 [ 18] [ 4] [6011] +16:41:52 [ 19] [ 3] [418] +16:41:52 [ 22] [ 3] [021] +16:41:52 [ 25] [ 2] [01] +16:41:52 [ 28] [ 9] [D00000000] +16:41:52 [ 32] [ 6] [198901] +16:41:52 [ 35] [ 32] [6213544002131305=491212013130334] +16:41:52 [ 37] [ 12] [507916208896] +16:41:52 [ 41] [ 8] [19529001] +16:41:52 [ 42] [ 15] [000000041952901] +16:41:52 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:41:52 [ 49] [ 3] [418] +16:41:52 [ 52] [ 16] [C781D597723BB729] +16:41:52 ============================================================================ +16:41:52 + + +waiting on router queue for slot.... +16:41:52 Sending to : +16:41:52 ============================================================================ +16:41:52 ============================================================================ +16:41:52 Slot Id : <176> +16:41:52 Transaction Type : REQUEST +16:41:52 Received From : +16:41:52 ============================================================================ +16:41:52 FNo. Len. Field Value +16:41:52 ============================================================================ +16:41:52 [ 1] [ 4] [0200] +16:41:52 [ 2] [ 16] [6213544002131305] +16:41:52 [ 3] [ 6] [301000] +16:41:52 [ 4] [ 12] [000000000000] +16:41:52 [ 7] [ 10] [0320164212] +16:41:52 [ 11] [ 6] [208896] +16:41:52 [ 12] [ 6] [163718] +16:41:52 [ 13] [ 4] [0320] +16:41:52 [ 14] [ 4] [4912] +16:41:52 [ 15] [ 4] [0320] +16:41:52 [ 18] [ 4] [6011] +16:41:52 [ 19] [ 3] [418] +16:41:52 [ 22] [ 3] [021] +16:41:52 [ 25] [ 2] [01] +16:41:52 [ 28] [ 9] [D00000000] +16:41:52 [ 32] [ 6] [198901] +16:41:52 [ 35] [ 32] [6213544002131305=491212013130334] +16:41:52 [ 37] [ 12] [507916208896] +16:41:52 [ 41] [ 8] [19529001] +16:41:52 [ 42] [ 15] [000000041952901] +16:41:52 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:41:52 [ 49] [ 3] [418] +16:41:52 [ 52] [ 16] [065FC812F902D21C] +16:41:52 ============================================================================ +16:41:52 + + +waiting on router queue for slot.... +16:41:52 Sending to : <0> +16:41:52 ============================================================================ +16:41:52 ============================================================================ +16:41:52 Slot Id : <176> +16:41:52 Transaction Type : RESPONSE +16:41:52 Received From : +16:41:52 ============================================================================ +16:41:52 FNo. Len. Field Value +16:41:52 ============================================================================ +16:41:52 [ 1] [ 4] [0210] +16:41:52 [ 2] [ 16] [6213544002131305] +16:41:52 [ 3] [ 6] [301000] +16:41:52 [ 4] [ 12] [000000000000] +16:41:52 [ 7] [ 10] [0320164212] +16:41:52 [ 11] [ 6] [208896] +16:41:52 [ 12] [ 6] [163718] +16:41:52 [ 13] [ 4] [0320] +16:41:52 [ 15] [ 4] [0320] +16:41:52 [ 18] [ 4] [6011] +16:41:52 [ 19] [ 3] [418] +16:41:52 [ 32] [ 6] [198901] +16:41:52 [ 35] [ 32] [6213544002131305=491212013130334] +16:41:52 [ 37] [ 12] [507916208896] +16:41:52 [ 38] [ 6] [774402] +16:41:52 [ 39] [ 2] [00] +16:41:52 [ 41] [ 8] [19529001] +16:41:52 [ 49] [ 3] [418] +16:41:52 [ 54] [ 40] [1001418C0000657877141002418C000065787714] +16:41:52 ============================================================================ +16:41:52 Sending to : +16:41:52 ============================================================================ +16:41:52 + + +waiting on router queue for slot.... +16:41:53 ============================================================================ +16:41:53 Slot Id : <182> +16:41:53 Transaction Type : REQUEST +16:41:53 Received From : +16:41:53 ============================================================================ +16:41:53 FNo. Len. Field Value +16:41:53 ============================================================================ +16:41:53 [ 1] [ 4] [0800] +16:41:53 [ 7] [ 10] [0320094100] +16:41:53 [ 11] [ 6] [157284] +16:41:53 [ 70] [ 3] [301] +16:41:53 ============================================================================ +16:41:53 + + +waiting on router queue for slot.... +16:41:53 Sending to : +16:41:53 ============================================================================ +16:41:53 ============================================================================ +16:41:53 Slot Id : <182> +16:41:53 Transaction Type : RESPONSE +16:41:53 Received From : +16:41:53 ============================================================================ +16:41:53 FNo. Len. Field Value +16:41:53 ============================================================================ +16:41:53 [ 1] [ 4] [0810] +16:41:53 [ 7] [ 10] [0320094100] +16:41:53 [ 11] [ 6] [157284] +16:41:53 [ 39] [ 2] [00] +16:41:53 [ 70] [ 3] [301] +16:41:53 ============================================================================ +16:41:53 Calculate Source COMM Id = 2 +16:41:53 ============================================================================ +16:41:53 + + +waiting on router queue for slot.... +16:41:54 ============================================================================ +16:41:54 Slot Id : <176> +16:41:54 Transaction Type : RESPONSE +16:41:54 Received From : +16:41:54 ============================================================================ +16:41:54 FNo. Len. Field Value +16:41:54 ============================================================================ +16:41:54 [ 1] [ 4] [0210] +16:41:54 [ 2] [ 16] [6213544002131305] +16:41:54 [ 3] [ 6] [301000] +16:41:54 [ 4] [ 12] [000000000000] +16:41:54 [ 7] [ 10] [0320164212] +16:41:54 [ 11] [ 6] [208896] +16:41:54 [ 12] [ 6] [163718] +16:41:54 [ 13] [ 4] [0320] +16:41:54 [ 15] [ 4] [0320] +16:41:54 [ 18] [ 4] [6011] +16:41:54 [ 19] [ 3] [418] +16:41:54 [ 32] [ 6] [198901] +16:41:54 [ 35] [ 32] [6213544002131305=491212013130334] +16:41:54 [ 37] [ 12] [507916208896] +16:41:54 [ 38] [ 6] [774402] +16:41:54 [ 39] [ 2] [00] +16:41:54 [ 41] [ 8] [19529001] +16:41:54 [ 49] [ 3] [418] +16:41:54 [ 54] [ 40] [1001418C0000657877141002418C000065787714] +16:41:54 ============================================================================ +16:41:54 Calculate Source COMM Id = 5 +16:41:54 ============================================================================ +16:41:54 + + +waiting on router queue for slot.... +16:41:57 ============================================================================ +16:41:57 Slot Id : <187> +16:41:57 Transaction Type : REQUEST +16:41:57 Received From : +16:41:57 ============================================================================ +16:41:57 FNo. Len. Field Value +16:41:57 ============================================================================ +16:41:57 [ 1] [ 4] [0800] +16:41:57 [ 2] [ 5] [02531] +16:41:57 [ 3] [ 6] [579168] +16:41:57 [ 7] [ 10] [0320094157] +16:41:57 [ 11] [ 6] [807381] +16:41:57 [ 15] [ 10] [0320094157] +16:41:57 [ 37] [ 11] [57916807381] +16:41:57 [ 70] [ 3] [001] +16:41:57 ============================================================================ +16:41:57 + + +waiting on router queue for slot.... +16:41:57 ============================================================================ +16:41:57 Slot Id : <187> +16:41:57 Transaction Type : RESPONSE +16:41:57 Received From : +16:41:57 ============================================================================ +16:41:57 FNo. Len. Field Value +16:41:57 ============================================================================ +16:41:57 [ 1] [ 4] [0810] +16:41:57 [ 7] [ 10] [0320094157] +16:41:57 [ 11] [ 6] [807381] +16:41:57 [ 15] [ 4] [0320] +16:41:57 [ 37] [ 12] [57916807381] +16:41:57 [ 39] [ 2] [00] +16:41:57 [ 70] [ 3] [001] +16:41:57 ============================================================================ +16:41:57 Sending to : +16:41:57 ============================================================================ +16:41:57 + + +waiting on router queue for slot.... +16:41:58 ============================================================================ +16:41:58 Slot Id : <160> +16:41:58 Transaction Type : REQUEST +16:41:58 Received From : +16:41:58 ============================================================================ +16:41:58 FNo. Len. Field Value +16:41:58 ============================================================================ +16:41:58 [ 1] [ 4] [0200] +16:41:58 [ 2] [ 16] [6213544002118070] +16:41:58 [ 3] [ 6] [010000] +16:41:58 [ 4] [ 12] [000052000000] +16:41:58 [ 7] [ 10] [0320163948] +16:41:58 [ 11] [ 6] [952145] +16:41:58 [ 12] [ 6] [163948] +16:41:58 [ 13] [ 4] [0320] +16:41:58 [ 15] [ 4] [0320] +16:41:58 [ 18] [ 4] [6011] +16:41:58 [ 19] [ 3] [418] +16:41:58 [ 22] [ 3] [021] +16:41:58 [ 25] [ 2] [01] +16:41:58 [ 28] [ 9] [D00002000] +16:41:58 [ 32] [ 6] [668899] +16:41:58 [ 35] [ 32] [6213544002118070=491212011807616] +16:41:58 [ 37] [ 12] [507902025615] +16:41:58 [ 41] [ 8] [03414002] +16:41:58 [ 42] [ 15] [APT ] +16:41:58 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:41:58 [ 49] [ 3] [418] +16:41:58 [ 52] [ 16] [7ADF2437DB2DA6C3] +16:41:58 ============================================================================ +16:41:58 + + +waiting on router queue for slot.... +16:41:58 Sending to : +16:41:58 ============================================================================ +16:41:58 Sending to : +16:41:58 ============================================================================ +16:41:58 ============================================================================ +16:41:58 Slot Id : <160> +16:41:58 Transaction Type : REQUEST +16:41:58 Received From : +16:41:58 ============================================================================ +16:41:58 FNo. Len. Field Value +16:41:58 ============================================================================ +16:41:58 [ 1] [ 4] [0200] +16:41:58 [ 2] [ 16] [6213544002118070] +16:41:58 [ 3] [ 6] [010000] +16:41:58 [ 4] [ 12] [000052000000] +16:41:58 [ 7] [ 10] [0320163948] +16:41:58 [ 11] [ 6] [952145] +16:41:58 [ 12] [ 6] [163948] +16:41:58 [ 13] [ 4] [0320] +16:41:58 [ 15] [ 4] [0320] +16:41:58 [ 18] [ 4] [6011] +16:41:58 [ 19] [ 3] [418] +16:41:58 [ 22] [ 3] [021] +16:41:58 [ 25] [ 2] [01] +16:41:58 [ 28] [ 9] [D00002000] +16:41:58 [ 32] [ 6] [668899] +16:41:58 [ 35] [ 32] [6213544002118070=491212011807616] +16:41:58 [ 37] [ 12] [507902025615] +16:41:58 [ 41] [ 8] [03414002] +16:41:58 [ 42] [ 15] [APT ] +16:41:58 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:41:58 [ 49] [ 3] [418] +16:41:58 [ 52] [ 16] [7ADF2437DB2DA6C3] +16:41:58 ============================================================================ +16:41:58 + + +waiting on router queue for slot.... +16:41:58 Sending to : +16:41:58 ============================================================================ +16:41:58 ============================================================================ +16:41:58 Slot Id : <160> +16:41:58 Transaction Type : REQUEST +16:41:58 Received From : +16:41:58 ============================================================================ +16:41:58 FNo. Len. Field Value +16:41:58 ============================================================================ +16:41:58 [ 1] [ 4] [0200] +16:41:58 [ 2] [ 16] [6213544002118070] +16:41:58 [ 3] [ 6] [010000] +16:41:58 [ 4] [ 12] [000052000000] +16:41:58 [ 7] [ 10] [0320163948] +16:41:58 [ 11] [ 6] [952145] +16:41:58 [ 12] [ 6] [163948] +16:41:58 [ 13] [ 4] [0320] +16:41:58 [ 15] [ 4] [0320] +16:41:58 [ 18] [ 4] [6011] +16:41:58 [ 19] [ 3] [418] +16:41:58 [ 22] [ 3] [021] +16:41:58 [ 25] [ 2] [01] +16:41:58 [ 28] [ 9] [D00002000] +16:41:58 [ 32] [ 6] [668899] +16:41:58 [ 35] [ 32] [6213544002118070=491212011807616] +16:41:58 [ 37] [ 12] [507902025615] +16:41:58 [ 41] [ 8] [03414002] +16:41:58 [ 42] [ 15] [APT ] +16:41:58 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:41:58 [ 49] [ 3] [418] +16:41:58 [ 52] [ 16] [307F08A65C4384DD] +16:41:58 ============================================================================ +16:41:58 + + +waiting on router queue for slot.... +16:41:58 Sending to : <0> +16:41:58 ============================================================================ +16:41:59 ============================================================================ +16:41:59 Slot Id : <160> +16:41:59 Transaction Type : RESPONSE +16:41:59 Received From : +16:41:59 ============================================================================ +16:41:59 FNo. Len. Field Value +16:41:59 ============================================================================ +16:41:59 [ 1] [ 4] [0210] +16:41:59 [ 2] [ 16] [6213544002118070] +16:41:59 [ 3] [ 6] [010000] +16:41:59 [ 4] [ 12] [000052000000] +16:41:59 [ 7] [ 10] [0320163948] +16:41:59 [ 11] [ 6] [952145] +16:41:59 [ 12] [ 6] [163948] +16:41:59 [ 13] [ 4] [0320] +16:41:59 [ 15] [ 4] [0320] +16:41:59 [ 18] [ 4] [6011] +16:41:59 [ 19] [ 3] [418] +16:41:59 [ 32] [ 6] [668899] +16:41:59 [ 35] [ 32] [6213544002118070=491212011807616] +16:41:59 [ 37] [ 12] [507902025615] +16:41:59 [ 38] [ 6] [517592] +16:41:59 [ 39] [ 2] [00] +16:41:59 [ 41] [ 8] [03414002] +16:41:59 [ 49] [ 3] [418] +16:41:59 [ 54] [ 40] [0001418C0000076463740002418C000007646374] +16:41:59 ============================================================================ +16:41:59 Sending to : +16:41:59 ============================================================================ +16:41:59 + + +waiting on router queue for slot.... +16:42:00 ============================================================================ +16:42:00 Slot Id : <144> +16:42:00 Transaction Type : REQUEST +16:42:00 Received From : +16:42:00 ============================================================================ +16:42:00 FNo. Len. Field Value +16:42:00 ============================================================================ +16:42:00 [ 1] [ 4] [0800] +16:42:00 [ 7] [ 10] [0320235348] +16:42:00 [ 11] [ 6] [165348] +16:42:00 [ 37] [ 12] [57916165348] +16:42:00 [ 70] [ 3] [301] +16:42:00 ============================================================================ +16:42:00 + + +waiting on router queue for slot.... +16:42:00 Sending to : +16:42:00 ============================================================================ +16:42:00 ============================================================================ +16:42:00 Slot Id : <144> +16:42:00 Transaction Type : RESPONSE +16:42:00 Received From : +16:42:00 ============================================================================ +16:42:00 FNo. Len. Field Value +16:42:00 ============================================================================ +16:42:00 [ 1] [ 4] [0810] +16:42:00 [ 7] [ 10] [0320235348] +16:42:00 [ 11] [ 6] [165348] +16:42:00 [ 37] [ 12] [579161653480] +16:42:00 [ 39] [ 2] [00] +16:42:00 [ 70] [ 3] [810] +16:42:00 ============================================================================ +16:42:00 Calculate Source COMM Id = 6 +16:42:00 ============================================================================ +16:42:00 + + +waiting on router queue for slot.... +16:42:00 ============================================================================ +16:42:00 Slot Id : <160> +16:42:00 Transaction Type : RESPONSE +16:42:00 Received From : +16:42:00 ============================================================================ +16:42:00 FNo. Len. Field Value +16:42:00 ============================================================================ +16:42:00 [ 1] [ 4] [0210] +16:42:00 [ 2] [ 16] [6213544002118070] +16:42:00 [ 3] [ 6] [010000] +16:42:00 [ 4] [ 12] [000052000000] +16:42:00 [ 7] [ 10] [0320163948] +16:42:00 [ 11] [ 6] [952145] +16:42:00 [ 12] [ 6] [163948] +16:42:00 [ 13] [ 4] [0320] +16:42:00 [ 15] [ 4] [0320] +16:42:00 [ 18] [ 4] [6011] +16:42:00 [ 19] [ 3] [418] +16:42:00 [ 32] [ 6] [668899] +16:42:00 [ 35] [ 32] [6213544002118070=491212011807616] +16:42:00 [ 37] [ 12] [507902025615] +16:42:00 [ 38] [ 6] [517592] +16:42:00 [ 39] [ 2] [00] +16:42:00 [ 41] [ 8] [03414002] +16:42:00 [ 49] [ 3] [418] +16:42:00 [ 54] [ 40] [0001418C0000076463740002418C000007646374] +16:42:00 ============================================================================ +16:42:00 Calculate Source COMM Id = 4 +16:42:00 ============================================================================ +16:42:00 + + +waiting on router queue for slot.... +16:42:03 ============================================================================ +16:42:03 Slot Id : <163> +16:42:03 Transaction Type : REQUEST +16:42:03 Received From : +16:42:03 ============================================================================ +16:42:03 FNo. Len. Field Value +16:42:03 ============================================================================ +16:42:03 [ 1] [ 4] [0200] +16:42:03 [ 2] [ 16] [6688990040096073] +16:42:03 [ 3] [ 6] [310000] +16:42:03 [ 4] [ 12] [000000000000] +16:42:03 [ 7] [ 10] [0320164950] +16:42:03 [ 11] [ 6] [259313] +16:42:03 [ 12] [ 6] [164950] +16:42:03 [ 13] [ 4] [0320] +16:42:03 [ 14] [ 4] [9802] +16:42:03 [ 15] [ 4] [0320] +16:42:03 [ 18] [ 4] [6011] +16:42:03 [ 22] [ 3] [900] +16:42:03 [ 25] [ 2] [02] +16:42:03 [ 28] [ 9] [000000000] +16:42:03 [ 32] [ 6] [220699] +16:42:03 [ 35] [ 37] [6688990040096073=98021261322610200000] +16:42:03 [ 37] [ 12] [507900040636] +16:42:03 [ 41] [ 8] [01000400] +16:42:03 [ 42] [ 15] [APTRA ] +16:42:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:42:03 [ 49] [ 3] [418] +16:42:03 [ 52] [ 16] [D073B9FEB4CE48D7] +16:42:03 ============================================================================ +16:42:03 + + +waiting on router queue for slot.... +16:42:03 Sending to : +16:42:03 ============================================================================ +16:42:03 Sending to : +16:42:03 ============================================================================ +16:42:04 ============================================================================ +16:42:04 Slot Id : <163> +16:42:04 Transaction Type : REQUEST +16:42:04 Received From : +16:42:04 ============================================================================ +16:42:04 FNo. Len. Field Value +16:42:04 ============================================================================ +16:42:04 [ 1] [ 4] [0200] +16:42:04 [ 2] [ 16] [6688990040096073] +16:42:04 [ 3] [ 6] [310000] +16:42:04 [ 4] [ 12] [000000000000] +16:42:04 [ 7] [ 10] [0320164950] +16:42:04 [ 11] [ 6] [259313] +16:42:04 [ 12] [ 6] [164950] +16:42:04 [ 13] [ 4] [0320] +16:42:04 [ 14] [ 4] [9802] +16:42:04 [ 15] [ 4] [0320] +16:42:04 [ 18] [ 4] [6011] +16:42:04 [ 22] [ 3] [900] +16:42:04 [ 25] [ 2] [02] +16:42:04 [ 28] [ 9] [000000000] +16:42:04 [ 32] [ 6] [220699] +16:42:04 [ 35] [ 37] [6688990040096073=98021261322610200000] +16:42:04 [ 37] [ 12] [507900040636] +16:42:04 [ 41] [ 8] [01000400] +16:42:04 [ 42] [ 15] [APTRA ] +16:42:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:42:04 [ 49] [ 3] [418] +16:42:04 [ 52] [ 16] [D073B9FEB4CE48D7] +16:42:04 ============================================================================ +16:42:04 + + +waiting on router queue for slot.... +16:42:04 Sending to : +16:42:04 ============================================================================ +16:42:04 ============================================================================ +16:42:04 Slot Id : <163> +16:42:04 Transaction Type : REQUEST +16:42:04 Received From : +16:42:04 ============================================================================ +16:42:04 FNo. Len. Field Value +16:42:04 ============================================================================ +16:42:04 [ 1] [ 4] [0200] +16:42:04 [ 2] [ 16] [6688990040096073] +16:42:04 [ 3] [ 6] [310000] +16:42:04 [ 4] [ 12] [000000000000] +16:42:04 [ 7] [ 10] [0320164950] +16:42:04 [ 11] [ 6] [259313] +16:42:04 [ 12] [ 6] [164950] +16:42:04 [ 13] [ 4] [0320] +16:42:04 [ 14] [ 4] [9802] +16:42:04 [ 15] [ 4] [0320] +16:42:04 [ 18] [ 4] [6011] +16:42:04 [ 22] [ 3] [900] +16:42:04 [ 25] [ 2] [02] +16:42:04 [ 28] [ 9] [000000000] +16:42:04 [ 32] [ 6] [220699] +16:42:04 [ 35] [ 37] [6688990040096073=98021261322610200000] +16:42:04 [ 37] [ 12] [507900040636] +16:42:04 [ 41] [ 8] [01000400] +16:42:04 [ 42] [ 15] [APTRA ] +16:42:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:42:04 [ 49] [ 3] [418] +16:42:04 [ 52] [ 16] [B05FCADA273FEA2A] +16:42:04 ============================================================================ +16:42:04 + + +waiting on router queue for slot.... +16:42:04 Sending to : <0> +16:42:04 ============================================================================ +16:42:04 ============================================================================ +16:42:04 Slot Id : <163> +16:42:04 Transaction Type : RESPONSE +16:42:04 Received From : +16:42:04 ============================================================================ +16:42:04 FNo. Len. Field Value +16:42:04 ============================================================================ +16:42:04 [ 1] [ 4] [0210] +16:42:04 [ 2] [ 16] [6688990040096073] +16:42:04 [ 3] [ 6] [310000] +16:42:04 [ 4] [ 12] [000000000000] +16:42:04 [ 7] [ 10] [0320164950] +16:42:04 [ 11] [ 6] [259313] +16:42:04 [ 12] [ 6] [164950] +16:42:04 [ 13] [ 4] [0320] +16:42:04 [ 15] [ 4] [0320] +16:42:04 [ 18] [ 4] [6011] +16:42:04 [ 22] [ 3] [900] +16:42:04 [ 32] [ 6] [220699] +16:42:04 [ 35] [ 37] [6688990040096073=98021261322610200000] +16:42:04 [ 37] [ 12] [507900040636] +16:42:04 [ 39] [ 2] [14] +16:42:04 [ 41] [ 8] [01000400] +16:42:04 [ 49] [ 3] [418] +16:42:04 ============================================================================ +16:42:04 Sending to : +16:42:04 ============================================================================ +16:42:04 + + +waiting on router queue for slot.... +16:42:05 ============================================================================ +16:42:05 Slot Id : <163> +16:42:05 Transaction Type : RESPONSE +16:42:05 Received From : +16:42:05 ============================================================================ +16:42:05 FNo. Len. Field Value +16:42:05 ============================================================================ +16:42:05 [ 1] [ 4] [0210] +16:42:05 [ 2] [ 16] [6688990040096073] +16:42:05 [ 3] [ 6] [310000] +16:42:05 [ 4] [ 12] [000000000000] +16:42:05 [ 7] [ 10] [0320164950] +16:42:05 [ 11] [ 6] [259313] +16:42:05 [ 12] [ 6] [164950] +16:42:05 [ 13] [ 4] [0320] +16:42:05 [ 15] [ 4] [0320] +16:42:05 [ 18] [ 4] [6011] +16:42:05 [ 22] [ 3] [900] +16:42:05 [ 32] [ 6] [220699] +16:42:05 [ 35] [ 37] [6688990040096073=98021261322610200000] +16:42:05 [ 37] [ 12] [507900040636] +16:42:05 [ 39] [ 2] [14] +16:42:05 [ 41] [ 8] [01000400] +16:42:05 [ 49] [ 3] [418] +16:42:05 ============================================================================ +16:42:05 Calculate Source COMM Id = 1 +16:42:05 ============================================================================ +16:42:05 + + +waiting on router queue for slot.... +16:42:07 ============================================================================ +16:42:07 Slot Id : <203> +16:42:07 Transaction Type : REQUEST +16:42:07 Received From : +16:42:07 ============================================================================ +16:42:07 FNo. Len. Field Value +16:42:07 ============================================================================ +16:42:07 [ 1] [ 4] [0200] +16:42:07 [ 2] [ 16] [6213544001531265] +16:42:07 [ 3] [ 6] [010000] +16:42:07 [ 4] [ 12] [000200000000] +16:42:07 [ 7] [ 10] [0320094113] +16:42:07 [ 11] [ 6] [270581] +16:42:07 [ 12] [ 6] [164113] +16:42:07 [ 13] [ 4] [0320] +16:42:07 [ 14] [ 4] [4912] +16:42:07 [ 15] [ 4] [0320] +16:42:07 [ 18] [ 4] [6011] +16:42:07 [ 19] [ 3] [418] +16:42:07 [ 22] [ 3] [021] +16:42:07 [ 25] [ 2] [01] +16:42:07 [ 28] [ 9] [D00002000] +16:42:07 [ 32] [ 6] [180893] +16:42:07 [ 35] [ 32] [6213544001531265=491212013126722] +16:42:07 [ 37] [ 12] [507909270581] +16:42:07 [ 41] [ 8] [0344SVKV] +16:42:07 [ 42] [ 15] [999999 ] +16:42:07 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:42:07 [ 49] [ 3] [418] +16:42:07 [ 52] [ 16] [BD458847B3A48F87] +16:42:07 ============================================================================ +16:42:07 + + +waiting on router queue for slot.... +16:42:07 Sending to : +16:42:07 ============================================================================ +16:42:07 Sending to : +16:42:07 ============================================================================ +16:42:07 ============================================================================ +16:42:07 Slot Id : <203> +16:42:07 Transaction Type : REQUEST +16:42:07 Received From : +16:42:07 ============================================================================ +16:42:07 FNo. Len. Field Value +16:42:07 ============================================================================ +16:42:07 [ 1] [ 4] [0200] +16:42:07 [ 2] [ 16] [6213544001531265] +16:42:07 [ 3] [ 6] [010000] +16:42:07 [ 4] [ 12] [000200000000] +16:42:07 [ 7] [ 10] [0320094113] +16:42:07 [ 11] [ 6] [270581] +16:42:07 [ 12] [ 6] [164113] +16:42:07 [ 13] [ 4] [0320] +16:42:07 [ 14] [ 4] [4912] +16:42:07 [ 15] [ 4] [0320] +16:42:07 [ 18] [ 4] [6011] +16:42:07 [ 19] [ 3] [418] +16:42:07 [ 22] [ 3] [021] +16:42:07 [ 25] [ 2] [01] +16:42:07 [ 28] [ 9] [D00002000] +16:42:07 [ 32] [ 6] [180893] +16:42:07 [ 35] [ 32] [6213544001531265=491212013126722] +16:42:07 [ 37] [ 12] [507909270581] +16:42:07 [ 41] [ 8] [0344SVKV] +16:42:07 [ 42] [ 15] [999999 ] +16:42:07 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:42:07 [ 49] [ 3] [418] +16:42:07 [ 52] [ 16] [BD458847B3A48F87] +16:42:07 ============================================================================ +16:42:07 + + +waiting on router queue for slot.... +16:42:07 Sending to : +16:42:07 ============================================================================ +16:42:07 ============================================================================ +16:42:07 Slot Id : <203> +16:42:07 Transaction Type : REQUEST +16:42:07 Received From : +16:42:07 ============================================================================ +16:42:07 FNo. Len. Field Value +16:42:07 ============================================================================ +16:42:07 [ 1] [ 4] [0200] +16:42:07 [ 2] [ 16] [6213544001531265] +16:42:07 [ 3] [ 6] [010000] +16:42:07 [ 4] [ 12] [000200000000] +16:42:07 [ 7] [ 10] [0320094113] +16:42:07 [ 11] [ 6] [270581] +16:42:07 [ 12] [ 6] [164113] +16:42:07 [ 13] [ 4] [0320] +16:42:07 [ 14] [ 4] [4912] +16:42:07 [ 15] [ 4] [0320] +16:42:07 [ 18] [ 4] [6011] +16:42:07 [ 19] [ 3] [418] +16:42:07 [ 22] [ 3] [021] +16:42:07 [ 25] [ 2] [01] +16:42:07 [ 28] [ 9] [D00002000] +16:42:07 [ 32] [ 6] [180893] +16:42:07 [ 35] [ 32] [6213544001531265=491212013126722] +16:42:07 [ 37] [ 12] [507909270581] +16:42:07 [ 41] [ 8] [0344SVKV] +16:42:07 [ 42] [ 15] [999999 ] +16:42:07 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:42:07 [ 49] [ 3] [418] +16:42:07 [ 52] [ 16] [CC8098A5D05717A3] +16:42:07 ============================================================================ +16:42:07 + + +waiting on router queue for slot.... +16:42:07 Sending to : <0> +16:42:07 ============================================================================ +16:42:08 ============================================================================ +16:42:08 Slot Id : <203> +16:42:08 Transaction Type : RESPONSE +16:42:08 Received From : +16:42:08 ============================================================================ +16:42:08 FNo. Len. Field Value +16:42:08 ============================================================================ +16:42:08 [ 1] [ 4] [0210] +16:42:08 [ 2] [ 16] [6213544001531265] +16:42:08 [ 3] [ 6] [010000] +16:42:08 [ 4] [ 12] [000200000000] +16:42:08 [ 7] [ 10] [0320094113] +16:42:08 [ 11] [ 6] [270581] +16:42:08 [ 12] [ 6] [164113] +16:42:08 [ 13] [ 4] [0320] +16:42:08 [ 15] [ 4] [0320] +16:42:08 [ 18] [ 4] [6011] +16:42:08 [ 19] [ 3] [418] +16:42:08 [ 22] [ 3] [021] +16:42:08 [ 32] [ 6] [180893] +16:42:08 [ 35] [ 32] [6213544001531265=491212013126722] +16:42:08 [ 37] [ 12] [507909270581] +16:42:08 [ 39] [ 2] [61] +16:42:08 [ 41] [ 8] [0344SVKV] +16:42:08 [ 49] [ 3] [418] +16:42:08 ============================================================================ +16:42:08 Sending to : +16:42:08 ============================================================================ +16:42:08 + + +waiting on router queue for slot.... +16:42:09 ============================================================================ +16:42:09 Slot Id : <203> +16:42:09 Transaction Type : RESPONSE +16:42:09 Received From : +16:42:09 ============================================================================ +16:42:09 FNo. Len. Field Value +16:42:09 ============================================================================ +16:42:09 [ 1] [ 4] [0210] +16:42:09 [ 2] [ 16] [6213544001531265] +16:42:09 [ 3] [ 6] [010000] +16:42:09 [ 4] [ 12] [000200000000] +16:42:09 [ 7] [ 10] [0320094113] +16:42:09 [ 11] [ 6] [270581] +16:42:09 [ 12] [ 6] [164113] +16:42:09 [ 13] [ 4] [0320] +16:42:09 [ 15] [ 4] [0320] +16:42:09 [ 18] [ 4] [6011] +16:42:09 [ 19] [ 3] [418] +16:42:09 [ 22] [ 3] [021] +16:42:09 [ 32] [ 6] [180893] +16:42:09 [ 35] [ 32] [6213544001531265=491212013126722] +16:42:09 [ 37] [ 12] [507909270581] +16:42:09 [ 39] [ 2] [61] +16:42:09 [ 41] [ 8] [0344SVKV] +16:42:09 [ 49] [ 3] [418] +16:42:09 ============================================================================ +16:42:09 Calculate Source COMM Id = 2 +16:42:09 ============================================================================ +16:42:09 + + +waiting on router queue for slot.... +16:42:09 ============================================================================ +16:42:09 Slot Id : <204> +16:42:09 Transaction Type : REQUEST +16:42:09 Received From : +16:42:09 ============================================================================ +16:42:09 FNo. Len. Field Value +16:42:09 ============================================================================ +16:42:09 [ 1] [ 4] [0800] +16:42:09 [ 7] [ 10] [0320094116] +16:42:09 [ 11] [ 6] [157285] +16:42:09 [ 70] [ 3] [301] +16:42:09 ============================================================================ +16:42:09 + + +waiting on router queue for slot.... +16:42:09 Sending to : +16:42:09 ============================================================================ +16:42:09 ============================================================================ +16:42:09 Slot Id : <204> +16:42:09 Transaction Type : RESPONSE +16:42:09 Received From : +16:42:09 ============================================================================ +16:42:09 FNo. Len. Field Value +16:42:09 ============================================================================ +16:42:09 [ 1] [ 4] [0810] +16:42:09 [ 7] [ 10] [0320094116] +16:42:09 [ 11] [ 6] [157285] +16:42:09 [ 39] [ 2] [00] +16:42:09 [ 70] [ 3] [301] +16:42:09 ============================================================================ +16:42:09 Calculate Source COMM Id = 2 +16:42:09 ============================================================================ +16:42:09 + + +waiting on router queue for slot.... +16:42:20 ============================================================================ +16:42:20 Slot Id : <156> +16:42:20 Transaction Type : REQUEST +16:42:20 Received From : +16:42:20 ============================================================================ +16:42:20 FNo. Len. Field Value +16:42:20 ============================================================================ +16:42:20 [ 1] [ 4] [0800] +16:42:20 [ 7] [ 10] [0320094127] +16:42:20 [ 11] [ 6] [157286] +16:42:20 [ 70] [ 3] [301] +16:42:20 ============================================================================ +16:42:20 + + +waiting on router queue for slot.... +16:42:20 Sending to : +16:42:20 ============================================================================ +16:42:20 ============================================================================ +16:42:20 Slot Id : <156> +16:42:20 Transaction Type : RESPONSE +16:42:20 Received From : +16:42:20 ============================================================================ +16:42:20 FNo. Len. Field Value +16:42:20 ============================================================================ +16:42:20 [ 1] [ 4] [0810] +16:42:20 [ 7] [ 10] [0320094127] +16:42:20 [ 11] [ 6] [157286] +16:42:20 [ 39] [ 2] [00] +16:42:20 [ 70] [ 3] [301] +16:42:20 ============================================================================ +16:42:20 Calculate Source COMM Id = 2 +16:42:20 ============================================================================ +16:42:20 + + +waiting on router queue for slot.... +16:42:24 ============================================================================ +16:42:24 Slot Id : <179> +16:42:24 Transaction Type : REQUEST +16:42:24 Received From : +16:42:24 ============================================================================ +16:42:24 FNo. Len. Field Value +16:42:24 ============================================================================ +16:42:24 [ 1] [ 4] [0200] +16:42:24 [ 2] [ 16] [6213544000465044] +16:42:24 [ 3] [ 6] [010000] +16:42:24 [ 4] [ 12] [000060000000] +16:42:24 [ 7] [ 10] [0320165012] +16:42:24 [ 11] [ 6] [240438] +16:42:24 [ 12] [ 6] [165012] +16:42:24 [ 13] [ 4] [0320] +16:42:24 [ 14] [ 4] [4912] +16:42:24 [ 15] [ 4] [0320] +16:42:24 [ 18] [ 4] [6011] +16:42:24 [ 22] [ 3] [900] +16:42:24 [ 25] [ 2] [02] +16:42:24 [ 28] [ 9] [D00002000] +16:42:24 [ 32] [ 6] [220699] +16:42:24 [ 35] [ 32] [6213544000465044=491212016504446] +16:42:24 [ 37] [ 12] [507900360202] +16:42:24 [ 41] [ 8] [05000300] +16:42:24 [ 42] [ 15] [APTRA ] +16:42:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:42:24 [ 49] [ 3] [418] +16:42:24 [ 52] [ 16] [B82AEB07A79BE317] +16:42:24 ============================================================================ +16:42:24 + + +waiting on router queue for slot.... +16:42:25 Sending to : +16:42:25 ============================================================================ +16:42:25 Sending to : +16:42:25 ============================================================================ +16:42:25 ============================================================================ +16:42:25 Slot Id : <179> +16:42:25 Transaction Type : REQUEST +16:42:25 Received From : +16:42:25 ============================================================================ +16:42:25 FNo. Len. Field Value +16:42:25 ============================================================================ +16:42:25 [ 1] [ 4] [0200] +16:42:25 [ 2] [ 16] [6213544000465044] +16:42:25 [ 3] [ 6] [010000] +16:42:25 [ 4] [ 12] [000060000000] +16:42:25 [ 7] [ 10] [0320165012] +16:42:25 [ 11] [ 6] [240438] +16:42:25 [ 12] [ 6] [165012] +16:42:25 [ 13] [ 4] [0320] +16:42:25 [ 14] [ 4] [4912] +16:42:25 [ 15] [ 4] [0320] +16:42:25 [ 18] [ 4] [6011] +16:42:25 [ 22] [ 3] [900] +16:42:25 [ 25] [ 2] [02] +16:42:25 [ 28] [ 9] [D00002000] +16:42:25 [ 32] [ 6] [220699] +16:42:25 [ 35] [ 32] [6213544000465044=491212016504446] +16:42:25 [ 37] [ 12] [507900360202] +16:42:25 [ 41] [ 8] [05000300] +16:42:25 [ 42] [ 15] [APTRA ] +16:42:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:42:25 [ 49] [ 3] [418] +16:42:25 [ 52] [ 16] [B82AEB07A79BE317] +16:42:25 ============================================================================ +16:42:25 + + +waiting on router queue for slot.... +16:42:25 Sending to : +16:42:25 ============================================================================ +16:42:25 ============================================================================ +16:42:25 Slot Id : <179> +16:42:25 Transaction Type : REQUEST +16:42:25 Received From : +16:42:25 ============================================================================ +16:42:25 FNo. Len. Field Value +16:42:25 ============================================================================ +16:42:25 [ 1] [ 4] [0200] +16:42:25 [ 2] [ 16] [6213544000465044] +16:42:25 [ 3] [ 6] [010000] +16:42:25 [ 4] [ 12] [000060000000] +16:42:25 [ 7] [ 10] [0320165012] +16:42:25 [ 11] [ 6] [240438] +16:42:25 [ 12] [ 6] [165012] +16:42:25 [ 13] [ 4] [0320] +16:42:25 [ 14] [ 4] [4912] +16:42:25 [ 15] [ 4] [0320] +16:42:25 [ 18] [ 4] [6011] +16:42:25 [ 22] [ 3] [900] +16:42:25 [ 25] [ 2] [02] +16:42:25 [ 28] [ 9] [D00002000] +16:42:25 [ 32] [ 6] [220699] +16:42:25 [ 35] [ 32] [6213544000465044=491212016504446] +16:42:25 [ 37] [ 12] [507900360202] +16:42:25 [ 41] [ 8] [05000300] +16:42:25 [ 42] [ 15] [APTRA ] +16:42:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:42:25 [ 49] [ 3] [418] +16:42:25 [ 52] [ 16] [03C9F44B41910361] +16:42:25 ============================================================================ +16:42:25 + + +waiting on router queue for slot.... +16:42:25 Sending to : <0> +16:42:25 ============================================================================ +16:42:25 ============================================================================ +16:42:25 Slot Id : <179> +16:42:25 Transaction Type : RESPONSE +16:42:25 Received From : +16:42:25 ============================================================================ +16:42:25 FNo. Len. Field Value +16:42:25 ============================================================================ +16:42:25 [ 1] [ 4] [0210] +16:42:25 [ 2] [ 16] [6213544000465044] +16:42:25 [ 3] [ 6] [010000] +16:42:25 [ 4] [ 12] [000060000000] +16:42:25 [ 7] [ 10] [0320165012] +16:42:25 [ 11] [ 6] [240438] +16:42:25 [ 12] [ 6] [165012] +16:42:25 [ 13] [ 4] [0320] +16:42:25 [ 15] [ 4] [0320] +16:42:25 [ 18] [ 4] [6011] +16:42:25 [ 32] [ 6] [220699] +16:42:25 [ 35] [ 32] [6213544000465044=491212016504446] +16:42:25 [ 37] [ 12] [507900360202] +16:42:25 [ 38] [ 6] [434200] +16:42:25 [ 39] [ 2] [00] +16:42:25 [ 41] [ 8] [05000300] +16:42:25 [ 49] [ 3] [418] +16:42:25 [ 54] [ 40] [0001418C0000069305820002418C000006930582] +16:42:25 ============================================================================ +16:42:25 Sending to : +16:42:25 ============================================================================ +16:42:25 + + +waiting on router queue for slot.... +16:42:27 ============================================================================ +16:42:27 Slot Id : <179> +16:42:27 Transaction Type : RESPONSE +16:42:27 Received From : +16:42:27 ============================================================================ +16:42:27 FNo. Len. Field Value +16:42:27 ============================================================================ +16:42:27 [ 1] [ 4] [0210] +16:42:27 [ 2] [ 16] [6213544000465044] +16:42:27 [ 3] [ 6] [010000] +16:42:27 [ 4] [ 12] [000060000000] +16:42:27 [ 7] [ 10] [0320165012] +16:42:27 [ 11] [ 6] [240438] +16:42:27 [ 12] [ 6] [165012] +16:42:27 [ 13] [ 4] [0320] +16:42:27 [ 15] [ 4] [0320] +16:42:27 [ 18] [ 4] [6011] +16:42:27 [ 32] [ 6] [220699] +16:42:27 [ 35] [ 32] [6213544000465044=491212016504446] +16:42:27 [ 37] [ 12] [507900360202] +16:42:27 [ 38] [ 6] [434200] +16:42:27 [ 39] [ 2] [00] +16:42:27 [ 41] [ 8] [05000300] +16:42:27 [ 49] [ 3] [418] +16:42:27 [ 54] [ 40] [0001418C0000069305820002418C000006930582] +16:42:27 ============================================================================ +16:42:27 Calculate Source COMM Id = 1 +16:42:27 ============================================================================ +16:42:27 + + +waiting on router queue for slot.... +16:42:36 ============================================================================ +16:42:36 Slot Id : <191> +16:42:36 Transaction Type : REQUEST +16:42:36 Received From : +16:42:36 ============================================================================ +16:42:36 FNo. Len. Field Value +16:42:36 ============================================================================ +16:42:36 [ 1] [ 4] [0800] +16:42:36 [ 7] [ 10] [0320094142] +16:42:36 [ 11] [ 6] [157287] +16:42:36 [ 70] [ 3] [301] +16:42:36 ============================================================================ +16:42:36 + + +waiting on router queue for slot.... +16:42:36 Sending to : +16:42:36 ============================================================================ +16:42:36 ============================================================================ +16:42:36 Slot Id : <191> +16:42:36 Transaction Type : RESPONSE +16:42:36 Received From : +16:42:36 ============================================================================ +16:42:36 FNo. Len. Field Value +16:42:36 ============================================================================ +16:42:36 [ 1] [ 4] [0810] +16:42:36 [ 7] [ 10] [0320094142] +16:42:36 [ 11] [ 6] [157287] +16:42:36 [ 39] [ 2] [00] +16:42:36 [ 70] [ 3] [301] +16:42:36 ============================================================================ +16:42:36 Calculate Source COMM Id = 2 +16:42:36 ============================================================================ +16:42:36 + + +waiting on router queue for slot.... +16:42:47 ============================================================================ +16:42:47 Slot Id : <135> +16:42:47 Transaction Type : REQUEST +16:42:47 Received From : +16:42:47 ============================================================================ +16:42:47 FNo. Len. Field Value +16:42:47 ============================================================================ +16:42:47 [ 1] [ 4] [0200] +16:42:47 [ 2] [ 16] [6213545000699276] +16:42:47 [ 3] [ 6] [300000] +16:42:47 [ 4] [ 12] [000000000000] +16:42:47 [ 7] [ 10] [0320164037] +16:42:47 [ 11] [ 6] [952173] +16:42:47 [ 12] [ 6] [164037] +16:42:47 [ 13] [ 4] [0320] +16:42:47 [ 15] [ 4] [0320] +16:42:47 [ 18] [ 4] [6011] +16:42:47 [ 19] [ 3] [418] +16:42:47 [ 22] [ 3] [021] +16:42:47 [ 25] [ 2] [01] +16:42:47 [ 28] [ 9] [D00000000] +16:42:47 [ 32] [ 6] [668899] +16:42:47 [ 35] [ 32] [6213545000699276=491212019927403] +16:42:47 [ 37] [ 12] [507901203937] +16:42:47 [ 41] [ 8] [03020012] +16:42:47 [ 42] [ 15] [APT ] +16:42:47 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +16:42:47 [ 49] [ 3] [418] +16:42:47 [ 52] [ 16] [6CB8C4B14F872077] +16:42:47 ============================================================================ +16:42:47 + + +waiting on router queue for slot.... +16:42:47 Sending to : +16:42:47 ============================================================================ +16:42:47 Sending to : +16:42:47 ============================================================================ +16:42:48 ============================================================================ +16:42:48 Slot Id : <135> +16:42:48 Transaction Type : REQUEST +16:42:48 Received From : +16:42:48 ============================================================================ +16:42:48 FNo. Len. Field Value +16:42:48 ============================================================================ +16:42:48 [ 1] [ 4] [0200] +16:42:48 [ 2] [ 16] [6213545000699276] +16:42:48 [ 3] [ 6] [300000] +16:42:48 [ 4] [ 12] [000000000000] +16:42:48 [ 7] [ 10] [0320164037] +16:42:48 [ 11] [ 6] [952173] +16:42:48 [ 12] [ 6] [164037] +16:42:48 [ 13] [ 4] [0320] +16:42:48 [ 15] [ 4] [0320] +16:42:48 [ 18] [ 4] [6011] +16:42:48 [ 19] [ 3] [418] +16:42:48 [ 22] [ 3] [021] +16:42:48 [ 25] [ 2] [01] +16:42:48 [ 28] [ 9] [D00000000] +16:42:48 [ 32] [ 6] [668899] +16:42:48 [ 35] [ 32] [6213545000699276=491212019927403] +16:42:48 [ 37] [ 12] [507901203937] +16:42:48 [ 41] [ 8] [03020012] +16:42:48 [ 42] [ 15] [APT ] +16:42:48 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +16:42:48 [ 49] [ 3] [418] +16:42:48 [ 52] [ 16] [6CB8C4B14F872077] +16:42:48 ============================================================================ +16:42:48 + + +waiting on router queue for slot.... +16:42:48 Sending to : +16:42:48 ============================================================================ +16:42:48 ============================================================================ +16:42:48 Slot Id : <135> +16:42:48 Transaction Type : REQUEST +16:42:48 Received From : +16:42:48 ============================================================================ +16:42:48 FNo. Len. Field Value +16:42:48 ============================================================================ +16:42:48 [ 1] [ 4] [0200] +16:42:48 [ 2] [ 16] [6213545000699276] +16:42:48 [ 3] [ 6] [300000] +16:42:48 [ 4] [ 12] [000000000000] +16:42:48 [ 7] [ 10] [0320164037] +16:42:48 [ 11] [ 6] [952173] +16:42:48 [ 12] [ 6] [164037] +16:42:48 [ 13] [ 4] [0320] +16:42:48 [ 15] [ 4] [0320] +16:42:48 [ 18] [ 4] [6011] +16:42:48 [ 19] [ 3] [418] +16:42:48 [ 22] [ 3] [021] +16:42:48 [ 25] [ 2] [01] +16:42:48 [ 28] [ 9] [D00000000] +16:42:48 [ 32] [ 6] [668899] +16:42:48 [ 35] [ 32] [6213545000699276=491212019927403] +16:42:48 [ 37] [ 12] [507901203937] +16:42:48 [ 41] [ 8] [03020012] +16:42:48 [ 42] [ 15] [APT ] +16:42:48 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +16:42:48 [ 49] [ 3] [418] +16:42:48 [ 52] [ 16] [186888A6876A3A0C] +16:42:48 ============================================================================ +16:42:48 + + +waiting on router queue for slot.... +16:42:48 Sending to : <0> +16:42:48 ============================================================================ +16:42:48 ============================================================================ +16:42:48 Slot Id : <135> +16:42:48 Transaction Type : RESPONSE +16:42:48 Received From : +16:42:48 ============================================================================ +16:42:48 FNo. Len. Field Value +16:42:48 ============================================================================ +16:42:48 [ 1] [ 4] [0210] +16:42:48 [ 2] [ 16] [6213545000699276] +16:42:48 [ 3] [ 6] [300000] +16:42:48 [ 4] [ 12] [000000000000] +16:42:48 [ 7] [ 10] [0320164037] +16:42:48 [ 11] [ 6] [952173] +16:42:48 [ 12] [ 6] [164037] +16:42:48 [ 13] [ 4] [0320] +16:42:48 [ 15] [ 4] [0320] +16:42:48 [ 18] [ 4] [6011] +16:42:48 [ 19] [ 3] [418] +16:42:48 [ 32] [ 6] [668899] +16:42:48 [ 35] [ 32] [6213545000699276=491212019927403] +16:42:48 [ 37] [ 12] [507901203937] +16:42:48 [ 38] [ 6] [332066] +16:42:48 [ 39] [ 2] [00] +16:42:48 [ 41] [ 8] [03020012] +16:42:48 [ 49] [ 3] [418] +16:42:48 [ 54] [ 40] [0001418C0001821753810002418C000182175381] +16:42:48 ============================================================================ +16:42:48 Sending to : +16:42:48 ============================================================================ +16:42:48 + + +waiting on router queue for slot.... +16:42:50 ============================================================================ +16:42:50 Slot Id : <135> +16:42:50 Transaction Type : RESPONSE +16:42:50 Received From : +16:42:50 ============================================================================ +16:42:50 FNo. Len. Field Value +16:42:50 ============================================================================ +16:42:50 [ 1] [ 4] [0210] +16:42:50 [ 2] [ 16] [6213545000699276] +16:42:50 [ 3] [ 6] [300000] +16:42:50 [ 4] [ 12] [000000000000] +16:42:50 [ 7] [ 10] [0320164037] +16:42:50 [ 11] [ 6] [952173] +16:42:50 [ 12] [ 6] [164037] +16:42:50 [ 13] [ 4] [0320] +16:42:50 [ 15] [ 4] [0320] +16:42:50 [ 18] [ 4] [6011] +16:42:50 [ 19] [ 3] [418] +16:42:50 [ 32] [ 6] [668899] +16:42:50 [ 35] [ 32] [6213545000699276=491212019927403] +16:42:50 [ 37] [ 12] [507901203937] +16:42:50 [ 38] [ 6] [332066] +16:42:50 [ 39] [ 2] [00] +16:42:50 [ 41] [ 8] [03020012] +16:42:50 [ 49] [ 3] [418] +16:42:50 [ 54] [ 40] [0001418C0001821753810002418C000182175381] +16:42:50 ============================================================================ +16:42:50 Calculate Source COMM Id = 4 +16:42:50 ============================================================================ +16:42:50 + + +waiting on router queue for slot.... +16:42:51 ============================================================================ +16:42:51 Slot Id : <192> +16:42:51 Transaction Type : REQUEST +16:42:51 Received From : +16:42:51 ============================================================================ +16:42:51 FNo. Len. Field Value +16:42:51 ============================================================================ +16:42:51 [ 1] [ 4] [0800] +16:42:51 [ 7] [ 10] [0320094158] +16:42:51 [ 11] [ 6] [157288] +16:42:51 [ 70] [ 3] [301] +16:42:51 ============================================================================ +16:42:51 + + +waiting on router queue for slot.... +16:42:51 Sending to : +16:42:51 ============================================================================ +16:42:51 ============================================================================ +16:42:51 Slot Id : <192> +16:42:51 Transaction Type : RESPONSE +16:42:51 Received From : +16:42:51 ============================================================================ +16:42:51 FNo. Len. Field Value +16:42:51 ============================================================================ +16:42:51 [ 1] [ 4] [0810] +16:42:51 [ 7] [ 10] [0320094158] +16:42:51 [ 11] [ 6] [157288] +16:42:51 [ 39] [ 2] [00] +16:42:51 [ 70] [ 3] [301] +16:42:51 ============================================================================ +16:42:51 Calculate Source COMM Id = 2 +16:42:51 ============================================================================ +16:42:51 + + +waiting on router queue for slot.... +16:42:58 ============================================================================ +16:42:58 Slot Id : <152> +16:42:58 Transaction Type : REQUEST +16:42:58 Received From : +16:42:58 ============================================================================ +16:42:58 FNo. Len. Field Value +16:42:58 ============================================================================ +16:42:58 [ 1] [ 4] [0200] +16:42:58 [ 2] [ 16] [6213544002131305] +16:42:58 [ 3] [ 6] [011000] +16:42:58 [ 4] [ 12] [000050000000] +16:42:58 [ 7] [ 10] [0320164318] +16:42:58 [ 11] [ 6] [208906] +16:42:58 [ 12] [ 6] [163824] +16:42:58 [ 13] [ 4] [0320] +16:42:58 [ 14] [ 4] [4912] +16:42:58 [ 15] [ 4] [0320] +16:42:58 [ 18] [ 4] [6011] +16:42:58 [ 19] [ 3] [418] +16:42:58 [ 22] [ 3] [021] +16:42:58 [ 25] [ 2] [01] +16:42:58 [ 28] [ 9] [D00002000] +16:42:58 [ 32] [ 6] [198901] +16:42:58 [ 35] [ 32] [6213544002131305=491212013130334] +16:42:58 [ 37] [ 12] [507916208906] +16:42:58 [ 41] [ 8] [19529001] +16:42:58 [ 42] [ 15] [000000041952901] +16:42:58 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:42:58 [ 49] [ 3] [418] +16:42:58 [ 52] [ 16] [C781D597723BB729] +16:42:58 ============================================================================ +16:42:58 + + +waiting on router queue for slot.... +16:42:58 Sending to : +16:42:58 ============================================================================ +16:42:58 Sending to : +16:42:58 ============================================================================ +16:42:58 ============================================================================ +16:42:58 Slot Id : <152> +16:42:58 Transaction Type : REQUEST +16:42:58 Received From : +16:42:58 ============================================================================ +16:42:58 FNo. Len. Field Value +16:42:58 ============================================================================ +16:42:58 [ 1] [ 4] [0200] +16:42:58 [ 2] [ 16] [6213544002131305] +16:42:58 [ 3] [ 6] [011000] +16:42:58 [ 4] [ 12] [000050000000] +16:42:58 [ 7] [ 10] [0320164318] +16:42:58 [ 11] [ 6] [208906] +16:42:58 [ 12] [ 6] [163824] +16:42:58 [ 13] [ 4] [0320] +16:42:58 [ 14] [ 4] [4912] +16:42:58 [ 15] [ 4] [0320] +16:42:58 [ 18] [ 4] [6011] +16:42:58 [ 19] [ 3] [418] +16:42:58 [ 22] [ 3] [021] +16:42:58 [ 25] [ 2] [01] +16:42:58 [ 28] [ 9] [D00002000] +16:42:58 [ 32] [ 6] [198901] +16:42:58 [ 35] [ 32] [6213544002131305=491212013130334] +16:42:58 [ 37] [ 12] [507916208906] +16:42:58 [ 41] [ 8] [19529001] +16:42:58 [ 42] [ 15] [000000041952901] +16:42:58 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:42:58 [ 49] [ 3] [418] +16:42:58 [ 52] [ 16] [C781D597723BB729] +16:42:58 ============================================================================ +16:42:58 + + +waiting on router queue for slot.... +16:42:58 Sending to : +16:42:58 ============================================================================ +16:42:58 ============================================================================ +16:42:58 Slot Id : <152> +16:42:58 Transaction Type : REQUEST +16:42:58 Received From : +16:42:58 ============================================================================ +16:42:58 FNo. Len. Field Value +16:42:58 ============================================================================ +16:42:58 [ 1] [ 4] [0200] +16:42:58 [ 2] [ 16] [6213544002131305] +16:42:58 [ 3] [ 6] [011000] +16:42:58 [ 4] [ 12] [000050000000] +16:42:58 [ 7] [ 10] [0320164318] +16:42:58 [ 11] [ 6] [208906] +16:42:58 [ 12] [ 6] [163824] +16:42:58 [ 13] [ 4] [0320] +16:42:58 [ 14] [ 4] [4912] +16:42:58 [ 15] [ 4] [0320] +16:42:58 [ 18] [ 4] [6011] +16:42:58 [ 19] [ 3] [418] +16:42:58 [ 22] [ 3] [021] +16:42:58 [ 25] [ 2] [01] +16:42:58 [ 28] [ 9] [D00002000] +16:42:58 [ 32] [ 6] [198901] +16:42:58 [ 35] [ 32] [6213544002131305=491212013130334] +16:42:58 [ 37] [ 12] [507916208906] +16:42:58 [ 41] [ 8] [19529001] +16:42:58 [ 42] [ 15] [000000041952901] +16:42:58 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:42:58 [ 49] [ 3] [418] +16:42:58 [ 52] [ 16] [065FC812F902D21C] +16:42:58 ============================================================================ +16:42:58 + + +waiting on router queue for slot.... +16:42:58 Sending to : <0> +16:42:58 ============================================================================ +16:42:59 ============================================================================ +16:42:59 Slot Id : <190> +16:42:59 Transaction Type : REQUEST +16:42:59 Received From : +16:42:59 ============================================================================ +16:42:59 FNo. Len. Field Value +16:42:59 ============================================================================ +16:42:59 [ 1] [ 4] [0800] +16:42:59 [ 2] [ 5] [02531] +16:42:59 [ 3] [ 6] [579168] +16:42:59 [ 7] [ 10] [0320094259] +16:42:59 [ 11] [ 6] [807382] +16:42:59 [ 15] [ 10] [0320094259] +16:42:59 [ 37] [ 11] [57916807382] +16:42:59 [ 70] [ 3] [001] +16:42:59 ============================================================================ +16:42:59 + + +waiting on router queue for slot.... +16:42:59 ============================================================================ +16:42:59 Slot Id : <190> +16:42:59 Transaction Type : RESPONSE +16:42:59 Received From : +16:42:59 ============================================================================ +16:42:59 FNo. Len. Field Value +16:42:59 ============================================================================ +16:42:59 [ 1] [ 4] [0810] +16:42:59 [ 7] [ 10] [0320094259] +16:42:59 [ 11] [ 6] [807382] +16:42:59 [ 15] [ 4] [0320] +16:42:59 [ 37] [ 12] [57916807382] +16:42:59 [ 39] [ 2] [00] +16:42:59 [ 70] [ 3] [001] +16:42:59 ============================================================================ +16:42:59 Sending to : +16:42:59 ============================================================================ +16:42:59 + + +waiting on router queue for slot.... +16:42:59 ============================================================================ +16:42:59 Slot Id : <152> +16:42:59 Transaction Type : RESPONSE +16:42:59 Received From : +16:42:59 ============================================================================ +16:42:59 FNo. Len. Field Value +16:42:59 ============================================================================ +16:42:59 [ 1] [ 4] [0210] +16:42:59 [ 2] [ 16] [6213544002131305] +16:42:59 [ 3] [ 6] [011000] +16:42:59 [ 4] [ 12] [000050000000] +16:42:59 [ 7] [ 10] [0320164318] +16:42:59 [ 11] [ 6] [208906] +16:42:59 [ 12] [ 6] [163824] +16:42:59 [ 13] [ 4] [0320] +16:42:59 [ 15] [ 4] [0320] +16:42:59 [ 18] [ 4] [6011] +16:42:59 [ 19] [ 3] [418] +16:42:59 [ 32] [ 6] [198901] +16:42:59 [ 35] [ 32] [6213544002131305=491212013130334] +16:42:59 [ 37] [ 12] [507916208906] +16:42:59 [ 38] [ 6] [992488] +16:42:59 [ 39] [ 2] [00] +16:42:59 [ 41] [ 8] [19529001] +16:42:59 [ 49] [ 3] [418] +16:42:59 [ 54] [ 40] [1001418C0000155877141002418C000015587714] +16:42:59 ============================================================================ +16:42:59 Sending to : +16:42:59 ============================================================================ +16:42:59 + + +waiting on router queue for slot.... +16:43:00 ============================================================================ +16:43:00 Slot Id : <152> +16:43:00 Transaction Type : RESPONSE +16:43:00 Received From : +16:43:00 ============================================================================ +16:43:00 FNo. Len. Field Value +16:43:00 ============================================================================ +16:43:00 [ 1] [ 4] [0210] +16:43:00 [ 2] [ 16] [6213544002131305] +16:43:00 [ 3] [ 6] [011000] +16:43:00 [ 4] [ 12] [000050000000] +16:43:00 [ 7] [ 10] [0320164318] +16:43:00 [ 11] [ 6] [208906] +16:43:00 [ 12] [ 6] [163824] +16:43:00 [ 13] [ 4] [0320] +16:43:00 [ 15] [ 4] [0320] +16:43:00 [ 18] [ 4] [6011] +16:43:00 [ 19] [ 3] [418] +16:43:00 [ 32] [ 6] [198901] +16:43:00 [ 35] [ 32] [6213544002131305=491212013130334] +16:43:00 [ 37] [ 12] [507916208906] +16:43:00 [ 38] [ 6] [992488] +16:43:00 [ 39] [ 2] [00] +16:43:00 [ 41] [ 8] [19529001] +16:43:00 [ 49] [ 3] [418] +16:43:00 [ 54] [ 40] [1001418C0000155877141002418C000015587714] +16:43:00 ============================================================================ +16:43:00 Calculate Source COMM Id = 5 +16:43:00 ============================================================================ +16:43:00 + + +waiting on router queue for slot.... +16:43:01 ============================================================================ +16:43:01 Slot Id : <196> +16:43:01 Transaction Type : REQUEST +16:43:01 Received From : +16:43:01 ============================================================================ +16:43:01 FNo. Len. Field Value +16:43:01 ============================================================================ +16:43:01 [ 1] [ 4] [0200] +16:43:01 [ 2] [ 16] [6688990103640601] +16:43:01 [ 3] [ 6] [010000] +16:43:01 [ 4] [ 12] [000100000000] +16:43:01 [ 7] [ 10] [0320164256] +16:43:01 [ 11] [ 6] [803411] +16:43:01 [ 12] [ 6] [164256] +16:43:01 [ 13] [ 4] [0320] +16:43:01 [ 15] [ 4] [0320] +16:43:01 [ 18] [ 4] [6011] +16:43:01 [ 22] [ 3] [900] +16:43:01 [ 25] [ 2] [02] +16:43:01 [ 28] [ 9] [D00002000] +16:43:01 [ 32] [ 6] [621354] +16:43:01 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:43:01 [ 37] [ 12] [507903499618] +16:43:01 [ 41] [ 8] [06002200] +16:43:01 [ 42] [ 15] [NATIVE ] +16:43:01 [ 43] [ 40] [Beng Market Beng LAO] +16:43:01 [ 49] [ 3] [418] +16:43:01 [ 52] [ 16] [89C4B68DA1F90685] +16:43:01 ============================================================================ +16:43:01 + + +waiting on router queue for slot.... +16:43:01 Sending to : +16:43:01 ============================================================================ +16:43:01 Sending to : +16:43:01 ============================================================================ +16:43:02 ============================================================================ +16:43:02 Slot Id : <196> +16:43:02 Transaction Type : REQUEST +16:43:02 Received From : +16:43:02 ============================================================================ +16:43:02 FNo. Len. Field Value +16:43:02 ============================================================================ +16:43:02 [ 1] [ 4] [0200] +16:43:02 [ 2] [ 16] [6688990103640601] +16:43:02 [ 3] [ 6] [010000] +16:43:02 [ 4] [ 12] [000100000000] +16:43:02 [ 7] [ 10] [0320164256] +16:43:02 [ 11] [ 6] [803411] +16:43:02 [ 12] [ 6] [164256] +16:43:02 [ 13] [ 4] [0320] +16:43:02 [ 15] [ 4] [0320] +16:43:02 [ 18] [ 4] [6011] +16:43:02 [ 22] [ 3] [900] +16:43:02 [ 25] [ 2] [02] +16:43:02 [ 28] [ 9] [D00002000] +16:43:02 [ 32] [ 6] [621354] +16:43:02 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:43:02 [ 37] [ 12] [507903499618] +16:43:02 [ 41] [ 8] [06002200] +16:43:02 [ 42] [ 15] [NATIVE ] +16:43:02 [ 43] [ 40] [Beng Market Beng LAO] +16:43:02 [ 49] [ 3] [418] +16:43:02 [ 52] [ 16] [89C4B68DA1F90685] +16:43:02 ============================================================================ +16:43:02 + + +waiting on router queue for slot.... +16:43:02 Sending to : +16:43:02 ============================================================================ +16:43:02 ============================================================================ +16:43:02 Slot Id : <196> +16:43:02 Transaction Type : REQUEST +16:43:02 Received From : +16:43:02 ============================================================================ +16:43:02 FNo. Len. Field Value +16:43:02 ============================================================================ +16:43:02 [ 1] [ 4] [0200] +16:43:02 [ 2] [ 16] [6688990103640601] +16:43:02 [ 3] [ 6] [010000] +16:43:02 [ 4] [ 12] [000100000000] +16:43:02 [ 7] [ 10] [0320164256] +16:43:02 [ 11] [ 6] [803411] +16:43:02 [ 12] [ 6] [164256] +16:43:02 [ 13] [ 4] [0320] +16:43:02 [ 15] [ 4] [0320] +16:43:02 [ 18] [ 4] [6011] +16:43:02 [ 22] [ 3] [900] +16:43:02 [ 25] [ 2] [02] +16:43:02 [ 28] [ 9] [D00002000] +16:43:02 [ 32] [ 6] [621354] +16:43:02 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:43:02 [ 37] [ 12] [507903499618] +16:43:02 [ 41] [ 8] [06002200] +16:43:02 [ 42] [ 15] [NATIVE ] +16:43:02 [ 43] [ 40] [Beng Market Beng LAO] +16:43:02 [ 49] [ 3] [418] +16:43:02 [ 52] [ 16] [19321739A518059D] +16:43:02 ============================================================================ +16:43:02 + + +waiting on router queue for slot.... +16:43:02 Sending to : <4> +16:43:02 ============================================================================ +16:43:02 ============================================================================ +16:43:02 Slot Id : <198> +16:43:02 Transaction Type : REQUEST +16:43:02 Received From : +16:43:02 ============================================================================ +16:43:02 FNo. Len. Field Value +16:43:02 ============================================================================ +16:43:02 [ 1] [ 4] [0800] +16:43:02 [ 7] [ 10] [0320094209] +16:43:02 [ 11] [ 6] [157289] +16:43:02 [ 70] [ 3] [301] +16:43:02 ============================================================================ +16:43:02 + + +waiting on router queue for slot.... +16:43:02 Sending to : +16:43:02 ============================================================================ +16:43:02 ============================================================================ +16:43:02 Slot Id : <198> +16:43:02 Transaction Type : RESPONSE +16:43:02 Received From : +16:43:02 ============================================================================ +16:43:02 FNo. Len. Field Value +16:43:02 ============================================================================ +16:43:02 [ 1] [ 4] [0810] +16:43:02 [ 7] [ 10] [0320094209] +16:43:02 [ 11] [ 6] [157289] +16:43:02 [ 39] [ 2] [00] +16:43:02 [ 70] [ 3] [301] +16:43:02 ============================================================================ +16:43:02 Calculate Source COMM Id = 2 +16:43:02 ============================================================================ +16:43:02 + + +waiting on router queue for slot.... +16:43:03 ============================================================================ +16:43:03 Slot Id : <196> +16:43:03 Transaction Type : RESPONSE +16:43:03 Received From : +16:43:03 ============================================================================ +16:43:03 FNo. Len. Field Value +16:43:03 ============================================================================ +16:43:03 [ 1] [ 4] [0210] +16:43:03 [ 2] [ 16] [6688990103640601] +16:43:03 [ 3] [ 6] [010000] +16:43:03 [ 4] [ 12] [000100000000] +16:43:03 [ 11] [ 6] [803411] +16:43:03 [ 12] [ 6] [164256] +16:43:03 [ 15] [ 4] [0320] +16:43:03 [ 18] [ 4] [6011] +16:43:03 [ 32] [ 6] [621354] +16:43:03 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:43:03 [ 37] [ 12] [507903499618] +16:43:03 [ 38] [ 6] [950146] +16:43:03 [ 39] [ 2] [00] +16:43:03 [ 41] [ 8] [06002200] +16:43:03 [ 49] [ 3] [418] +16:43:03 [ 54] [ 20] [0002418C000211905538] +16:43:03 ============================================================================ +16:43:03 Sending to : +16:43:03 ============================================================================ +16:43:03 + + +waiting on router queue for slot.... +16:43:04 ============================================================================ +16:43:04 Slot Id : <196> +16:43:04 Transaction Type : RESPONSE +16:43:04 Received From : +16:43:04 ============================================================================ +16:43:04 FNo. Len. Field Value +16:43:04 ============================================================================ +16:43:04 [ 1] [ 4] [0210] +16:43:04 [ 2] [ 16] [6688990103640601] +16:43:04 [ 3] [ 6] [010000] +16:43:04 [ 4] [ 12] [000100000000] +16:43:04 [ 11] [ 6] [803411] +16:43:04 [ 12] [ 6] [164256] +16:43:04 [ 15] [ 4] [0320] +16:43:04 [ 18] [ 4] [6011] +16:43:04 [ 32] [ 6] [621354] +16:43:04 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:43:04 [ 37] [ 12] [507903499618] +16:43:04 [ 38] [ 6] [950146] +16:43:04 [ 39] [ 2] [00] +16:43:04 [ 41] [ 8] [06002200] +16:43:04 [ 49] [ 3] [418] +16:43:04 [ 54] [ 20] [0002418C000211905538] +16:43:04 ============================================================================ +16:43:04 Calculate Source COMM Id = 0 +16:43:04 ============================================================================ +16:43:04 + + +waiting on router queue for slot.... +16:43:05 ============================================================================ +16:43:05 Slot Id : <155> +16:43:05 Transaction Type : REQUEST +16:43:05 Received From : +16:43:05 ============================================================================ +16:43:05 FNo. Len. Field Value +16:43:05 ============================================================================ +16:43:05 [ 1] [ 4] [0800] +16:43:05 [ 7] [ 10] [0320235453] +16:43:05 [ 11] [ 6] [165453] +16:43:05 [ 37] [ 12] [57916165453] +16:43:05 [ 70] [ 3] [301] +16:43:05 ============================================================================ +16:43:05 + + +waiting on router queue for slot.... +16:43:05 Sending to : +16:43:05 ============================================================================ +16:43:05 ============================================================================ +16:43:05 Slot Id : <155> +16:43:05 Transaction Type : RESPONSE +16:43:05 Received From : +16:43:05 ============================================================================ +16:43:05 FNo. Len. Field Value +16:43:05 ============================================================================ +16:43:05 [ 1] [ 4] [0810] +16:43:05 [ 7] [ 10] [0320235453] +16:43:05 [ 11] [ 6] [165453] +16:43:05 [ 37] [ 12] [579161654530] +16:43:05 [ 39] [ 2] [00] +16:43:05 [ 70] [ 3] [810] +16:43:05 ============================================================================ +16:43:05 Calculate Source COMM Id = 6 +16:43:05 ============================================================================ +16:43:05 + + +waiting on router queue for slot.... +16:43:19 ============================================================================ +16:43:19 Slot Id : <181> +16:43:19 Transaction Type : REQUEST +16:43:19 Received From : +16:43:19 ============================================================================ +16:43:19 FNo. Len. Field Value +16:43:19 ============================================================================ +16:43:19 [ 1] [ 4] [0800] +16:43:19 [ 7] [ 10] [0320094226] +16:43:19 [ 11] [ 6] [157290] +16:43:19 [ 70] [ 3] [301] +16:43:19 ============================================================================ +16:43:19 + + +waiting on router queue for slot.... +16:43:19 Sending to : +16:43:19 ============================================================================ +16:43:19 ============================================================================ +16:43:19 Slot Id : <181> +16:43:19 Transaction Type : RESPONSE +16:43:19 Received From : +16:43:19 ============================================================================ +16:43:19 FNo. Len. Field Value +16:43:19 ============================================================================ +16:43:19 [ 1] [ 4] [0810] +16:43:19 [ 7] [ 10] [0320094226] +16:43:19 [ 11] [ 6] [157290] +16:43:19 [ 39] [ 2] [00] +16:43:19 [ 70] [ 3] [301] +16:43:19 ============================================================================ +16:43:19 Calculate Source COMM Id = 2 +16:43:19 ============================================================================ +16:43:19 + + +waiting on router queue for slot.... +16:43:29 ============================================================================ +16:43:29 Slot Id : <201> +16:43:29 Transaction Type : REQUEST +16:43:29 Received From : +16:43:29 ============================================================================ +16:43:29 FNo. Len. Field Value +16:43:29 ============================================================================ +16:43:29 [ 1] [ 4] [0800] +16:43:29 [ 7] [ 10] [0320094236] +16:43:29 [ 11] [ 6] [157291] +16:43:29 [ 70] [ 3] [301] +16:43:29 ============================================================================ +16:43:29 + + +waiting on router queue for slot.... +16:43:29 Sending to : +16:43:29 ============================================================================ +16:43:29 ============================================================================ +16:43:29 Slot Id : <201> +16:43:29 Transaction Type : RESPONSE +16:43:29 Received From : +16:43:29 ============================================================================ +16:43:29 FNo. Len. Field Value +16:43:29 ============================================================================ +16:43:29 [ 1] [ 4] [0810] +16:43:29 [ 7] [ 10] [0320094236] +16:43:29 [ 11] [ 6] [157291] +16:43:29 [ 39] [ 2] [00] +16:43:29 [ 70] [ 3] [301] +16:43:29 ============================================================================ +16:43:29 Calculate Source COMM Id = 2 +16:43:29 ============================================================================ +16:43:29 + + +waiting on router queue for slot.... +16:43:36 ============================================================================ +16:43:36 Slot Id : <165> +16:43:36 Transaction Type : REQUEST +16:43:36 Received From : +16:43:36 ============================================================================ +16:43:36 FNo. Len. Field Value +16:43:36 ============================================================================ +16:43:36 [ 1] [ 4] [0200] +16:43:36 [ 2] [ 16] [6688990100962206] +16:43:36 [ 3] [ 6] [011000] +16:43:36 [ 4] [ 12] [000100000000] +16:43:36 [ 7] [ 10] [0320164331] +16:43:36 [ 11] [ 6] [803576] +16:43:36 [ 12] [ 6] [164331] +16:43:36 [ 13] [ 4] [0320] +16:43:36 [ 15] [ 4] [0320] +16:43:36 [ 18] [ 4] [6011] +16:43:36 [ 22] [ 3] [900] +16:43:36 [ 25] [ 2] [02] +16:43:36 [ 28] [ 9] [D00002000] +16:43:36 [ 32] [ 6] [621354] +16:43:36 [ 35] [ 37] [6688990100962206=41121231220618500000] +16:43:36 [ 37] [ 12] [507904719801] +16:43:36 [ 41] [ 8] [18001000] +16:43:36 [ 42] [ 15] [NATIVE ] +16:43:36 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:43:36 [ 49] [ 3] [418] +16:43:36 [ 52] [ 16] [0A0818B6426E8A53] +16:43:36 ============================================================================ +16:43:36 + + +waiting on router queue for slot.... +16:43:36 Sending to : +16:43:36 ============================================================================ +16:43:36 Sending to : +16:43:36 ============================================================================ +16:43:36 ============================================================================ +16:43:36 Slot Id : <165> +16:43:36 Transaction Type : REQUEST +16:43:36 Received From : +16:43:36 ============================================================================ +16:43:36 FNo. Len. Field Value +16:43:36 ============================================================================ +16:43:36 [ 1] [ 4] [0200] +16:43:36 [ 2] [ 16] [6688990100962206] +16:43:36 [ 3] [ 6] [011000] +16:43:36 [ 4] [ 12] [000100000000] +16:43:36 [ 7] [ 10] [0320164331] +16:43:36 [ 11] [ 6] [803576] +16:43:36 [ 12] [ 6] [164331] +16:43:36 [ 13] [ 4] [0320] +16:43:36 [ 15] [ 4] [0320] +16:43:36 [ 18] [ 4] [6011] +16:43:36 [ 22] [ 3] [900] +16:43:36 [ 25] [ 2] [02] +16:43:36 [ 28] [ 9] [D00002000] +16:43:36 [ 32] [ 6] [621354] +16:43:36 [ 35] [ 37] [6688990100962206=41121231220618500000] +16:43:36 [ 37] [ 12] [507904719801] +16:43:36 [ 41] [ 8] [18001000] +16:43:36 [ 42] [ 15] [NATIVE ] +16:43:36 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:43:36 [ 49] [ 3] [418] +16:43:36 [ 52] [ 16] [0A0818B6426E8A53] +16:43:36 ============================================================================ +16:43:36 + + +waiting on router queue for slot.... +16:43:36 Sending to : +16:43:36 ============================================================================ +16:43:36 ============================================================================ +16:43:36 Slot Id : <165> +16:43:36 Transaction Type : REQUEST +16:43:36 Received From : +16:43:36 ============================================================================ +16:43:36 FNo. Len. Field Value +16:43:36 ============================================================================ +16:43:36 [ 1] [ 4] [0200] +16:43:36 [ 2] [ 16] [6688990100962206] +16:43:36 [ 3] [ 6] [011000] +16:43:36 [ 4] [ 12] [000100000000] +16:43:36 [ 7] [ 10] [0320164331] +16:43:36 [ 11] [ 6] [803576] +16:43:36 [ 12] [ 6] [164331] +16:43:36 [ 13] [ 4] [0320] +16:43:36 [ 15] [ 4] [0320] +16:43:36 [ 18] [ 4] [6011] +16:43:36 [ 22] [ 3] [900] +16:43:36 [ 25] [ 2] [02] +16:43:36 [ 28] [ 9] [D00002000] +16:43:36 [ 32] [ 6] [621354] +16:43:36 [ 35] [ 37] [6688990100962206=41121231220618500000] +16:43:36 [ 37] [ 12] [507904719801] +16:43:36 [ 41] [ 8] [18001000] +16:43:36 [ 42] [ 15] [NATIVE ] +16:43:36 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:43:36 [ 49] [ 3] [418] +16:43:36 [ 52] [ 16] [BF2828E6027BB81F] +16:43:36 ============================================================================ +16:43:36 + + +waiting on router queue for slot.... +16:43:36 Sending to : <4> +16:43:36 ============================================================================ +16:43:37 ============================================================================ +16:43:37 Slot Id : <165> +16:43:37 Transaction Type : RESPONSE +16:43:37 Received From : +16:43:37 ============================================================================ +16:43:37 FNo. Len. Field Value +16:43:37 ============================================================================ +16:43:37 [ 1] [ 4] [0210] +16:43:37 [ 2] [ 16] [6688990100962206] +16:43:37 [ 3] [ 6] [011000] +16:43:37 [ 4] [ 12] [000100000000] +16:43:37 [ 11] [ 6] [803576] +16:43:37 [ 12] [ 6] [164331] +16:43:37 [ 15] [ 4] [0320] +16:43:37 [ 18] [ 4] [6011] +16:43:37 [ 32] [ 6] [621354] +16:43:37 [ 35] [ 37] [6688990100962206=41121231220618500000] +16:43:37 [ 37] [ 12] [507904719801] +16:43:37 [ 38] [ 6] [322805] +16:43:37 [ 39] [ 2] [00] +16:43:37 [ 41] [ 8] [18001000] +16:43:37 [ 49] [ 3] [418] +16:43:37 [ 54] [ 20] [1002418C000037312619] +16:43:37 ============================================================================ +16:43:37 Sending to : +16:43:37 ============================================================================ +16:43:37 + + +waiting on router queue for slot.... +16:43:38 ============================================================================ +16:43:38 Slot Id : <165> +16:43:38 Transaction Type : RESPONSE +16:43:38 Received From : +16:43:38 ============================================================================ +16:43:38 FNo. Len. Field Value +16:43:38 ============================================================================ +16:43:38 [ 1] [ 4] [0210] +16:43:38 [ 2] [ 16] [6688990100962206] +16:43:38 [ 3] [ 6] [011000] +16:43:38 [ 4] [ 12] [000100000000] +16:43:38 [ 11] [ 6] [803576] +16:43:38 [ 12] [ 6] [164331] +16:43:38 [ 15] [ 4] [0320] +16:43:38 [ 18] [ 4] [6011] +16:43:38 [ 32] [ 6] [621354] +16:43:38 [ 35] [ 37] [6688990100962206=41121231220618500000] +16:43:38 [ 37] [ 12] [507904719801] +16:43:38 [ 38] [ 6] [322805] +16:43:38 [ 39] [ 2] [00] +16:43:38 [ 41] [ 8] [18001000] +16:43:38 [ 49] [ 3] [418] +16:43:38 [ 54] [ 20] [1002418C000037312619] +16:43:38 ============================================================================ +16:43:38 Calculate Source COMM Id = 0 +16:43:38 ============================================================================ +16:43:38 + + +waiting on router queue for slot.... +16:43:40 ============================================================================ +16:43:40 Slot Id : <214> +16:43:40 Transaction Type : REQUEST +16:43:40 Received From : +16:43:40 ============================================================================ +16:43:40 FNo. Len. Field Value +16:43:40 ============================================================================ +16:43:40 [ 1] [ 4] [0800] +16:43:40 [ 7] [ 10] [0320094247] +16:43:40 [ 11] [ 6] [157292] +16:43:40 [ 70] [ 3] [301] +16:43:40 ============================================================================ +16:43:40 + + +waiting on router queue for slot.... +16:43:40 Sending to : +16:43:40 ============================================================================ +16:43:40 ============================================================================ +16:43:40 Slot Id : <214> +16:43:40 Transaction Type : RESPONSE +16:43:40 Received From : +16:43:40 ============================================================================ +16:43:40 FNo. Len. Field Value +16:43:40 ============================================================================ +16:43:40 [ 1] [ 4] [0810] +16:43:40 [ 7] [ 10] [0320094247] +16:43:40 [ 11] [ 6] [157292] +16:43:40 [ 39] [ 2] [00] +16:43:40 [ 70] [ 3] [301] +16:43:40 ============================================================================ +16:43:40 Calculate Source COMM Id = 2 +16:43:40 ============================================================================ +16:43:40 + + +waiting on router queue for slot.... +16:43:41 ============================================================================ +16:43:41 Slot Id : <209> +16:43:41 Transaction Type : REQUEST +16:43:41 Received From : +16:43:41 ============================================================================ +16:43:41 FNo. Len. Field Value +16:43:41 ============================================================================ +16:43:41 [ 1] [ 4] [0200] +16:43:41 [ 2] [ 16] [6213544001919676] +16:43:41 [ 3] [ 6] [010000] +16:43:41 [ 4] [ 12] [000055000000] +16:43:41 [ 7] [ 10] [0320165128] +16:43:41 [ 11] [ 6] [240441] +16:43:41 [ 12] [ 6] [165128] +16:43:41 [ 13] [ 4] [0320] +16:43:41 [ 14] [ 4] [4912] +16:43:41 [ 15] [ 4] [0320] +16:43:41 [ 18] [ 4] [6011] +16:43:41 [ 22] [ 3] [900] +16:43:41 [ 25] [ 2] [02] +16:43:41 [ 28] [ 9] [D00002000] +16:43:41 [ 32] [ 6] [220699] +16:43:41 [ 35] [ 32] [6213544001919676=491212011967316] +16:43:41 [ 37] [ 12] [507900360204] +16:43:41 [ 41] [ 8] [05000300] +16:43:41 [ 42] [ 15] [APTRA ] +16:43:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:43:41 [ 49] [ 3] [418] +16:43:41 [ 52] [ 16] [AAD4F37C648B8C33] +16:43:41 ============================================================================ +16:43:41 + + +waiting on router queue for slot.... +16:43:41 Sending to : +16:43:41 ============================================================================ +16:43:41 Sending to : +16:43:41 ============================================================================ +16:43:41 ============================================================================ +16:43:41 Slot Id : <209> +16:43:41 Transaction Type : REQUEST +16:43:41 Received From : +16:43:41 ============================================================================ +16:43:41 FNo. Len. Field Value +16:43:41 ============================================================================ +16:43:41 [ 1] [ 4] [0200] +16:43:41 [ 2] [ 16] [6213544001919676] +16:43:41 [ 3] [ 6] [010000] +16:43:41 [ 4] [ 12] [000055000000] +16:43:41 [ 7] [ 10] [0320165128] +16:43:41 [ 11] [ 6] [240441] +16:43:41 [ 12] [ 6] [165128] +16:43:41 [ 13] [ 4] [0320] +16:43:41 [ 14] [ 4] [4912] +16:43:41 [ 15] [ 4] [0320] +16:43:41 [ 18] [ 4] [6011] +16:43:41 [ 22] [ 3] [900] +16:43:41 [ 25] [ 2] [02] +16:43:41 [ 28] [ 9] [D00002000] +16:43:41 [ 32] [ 6] [220699] +16:43:41 [ 35] [ 32] [6213544001919676=491212011967316] +16:43:41 [ 37] [ 12] [507900360204] +16:43:41 [ 41] [ 8] [05000300] +16:43:41 [ 42] [ 15] [APTRA ] +16:43:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:43:41 [ 49] [ 3] [418] +16:43:41 [ 52] [ 16] [AAD4F37C648B8C33] +16:43:41 ============================================================================ +16:43:41 + + +waiting on router queue for slot.... +16:43:41 Sending to : +16:43:41 ============================================================================ +16:43:41 ============================================================================ +16:43:41 Slot Id : <209> +16:43:41 Transaction Type : REQUEST +16:43:41 Received From : +16:43:41 ============================================================================ +16:43:41 FNo. Len. Field Value +16:43:41 ============================================================================ +16:43:41 [ 1] [ 4] [0200] +16:43:41 [ 2] [ 16] [6213544001919676] +16:43:41 [ 3] [ 6] [010000] +16:43:41 [ 4] [ 12] [000055000000] +16:43:41 [ 7] [ 10] [0320165128] +16:43:41 [ 11] [ 6] [240441] +16:43:41 [ 12] [ 6] [165128] +16:43:41 [ 13] [ 4] [0320] +16:43:41 [ 14] [ 4] [4912] +16:43:41 [ 15] [ 4] [0320] +16:43:41 [ 18] [ 4] [6011] +16:43:41 [ 22] [ 3] [900] +16:43:41 [ 25] [ 2] [02] +16:43:41 [ 28] [ 9] [D00002000] +16:43:41 [ 32] [ 6] [220699] +16:43:41 [ 35] [ 32] [6213544001919676=491212011967316] +16:43:41 [ 37] [ 12] [507900360204] +16:43:41 [ 41] [ 8] [05000300] +16:43:41 [ 42] [ 15] [APTRA ] +16:43:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:43:41 [ 49] [ 3] [418] +16:43:41 [ 52] [ 16] [9DE1DA56A4566BC3] +16:43:41 ============================================================================ +16:43:41 + + +waiting on router queue for slot.... +16:43:41 Sending to : <0> +16:43:41 ============================================================================ +16:43:42 ============================================================================ +16:43:42 Slot Id : <209> +16:43:42 Transaction Type : RESPONSE +16:43:42 Received From : +16:43:42 ============================================================================ +16:43:42 FNo. Len. Field Value +16:43:42 ============================================================================ +16:43:42 [ 1] [ 4] [0210] +16:43:42 [ 2] [ 16] [6213544001919676] +16:43:42 [ 3] [ 6] [010000] +16:43:42 [ 4] [ 12] [000055000000] +16:43:42 [ 7] [ 10] [0320165128] +16:43:42 [ 11] [ 6] [240441] +16:43:42 [ 12] [ 6] [165128] +16:43:42 [ 13] [ 4] [0320] +16:43:42 [ 15] [ 4] [0320] +16:43:42 [ 18] [ 4] [6011] +16:43:42 [ 32] [ 6] [220699] +16:43:42 [ 35] [ 32] [6213544001919676=491212011967316] +16:43:42 [ 37] [ 12] [507900360204] +16:43:42 [ 38] [ 6] [420563] +16:43:42 [ 39] [ 2] [00] +16:43:42 [ 41] [ 8] [05000300] +16:43:42 [ 49] [ 3] [418] +16:43:42 [ 54] [ 40] [0001418C0000075317160002418C000007531716] +16:43:42 ============================================================================ +16:43:42 Sending to : +16:43:42 ============================================================================ +16:43:42 + + +waiting on router queue for slot.... +16:43:43 ============================================================================ +16:43:43 Slot Id : <209> +16:43:43 Transaction Type : RESPONSE +16:43:43 Received From : +16:43:43 ============================================================================ +16:43:43 FNo. Len. Field Value +16:43:43 ============================================================================ +16:43:43 [ 1] [ 4] [0210] +16:43:43 [ 2] [ 16] [6213544001919676] +16:43:43 [ 3] [ 6] [010000] +16:43:43 [ 4] [ 12] [000055000000] +16:43:43 [ 7] [ 10] [0320165128] +16:43:43 [ 11] [ 6] [240441] +16:43:43 [ 12] [ 6] [165128] +16:43:43 [ 13] [ 4] [0320] +16:43:43 [ 15] [ 4] [0320] +16:43:43 [ 18] [ 4] [6011] +16:43:43 [ 32] [ 6] [220699] +16:43:43 [ 35] [ 32] [6213544001919676=491212011967316] +16:43:43 [ 37] [ 12] [507900360204] +16:43:43 [ 38] [ 6] [420563] +16:43:43 [ 39] [ 2] [00] +16:43:43 [ 41] [ 8] [05000300] +16:43:43 [ 49] [ 3] [418] +16:43:43 [ 54] [ 40] [0001418C0000075317160002418C000007531716] +16:43:43 ============================================================================ +16:43:43 Calculate Source COMM Id = 1 +16:43:43 ============================================================================ +16:43:43 + + +waiting on router queue for slot.... +16:43:43 ============================================================================ +16:43:43 Slot Id : <195> +16:43:43 Transaction Type : REQUEST +16:43:43 Received From : +16:43:43 ============================================================================ +16:43:43 FNo. Len. Field Value +16:43:43 ============================================================================ +16:43:43 [ 1] [ 4] [0200] +16:43:43 [ 2] [ 16] [6213544002226543] +16:43:43 [ 3] [ 6] [010000] +16:43:43 [ 4] [ 12] [000052000000] +16:43:43 [ 7] [ 10] [0320164133] +16:43:43 [ 11] [ 6] [952208] +16:43:43 [ 12] [ 6] [164133] +16:43:43 [ 13] [ 4] [0320] +16:43:43 [ 15] [ 4] [0320] +16:43:43 [ 18] [ 4] [6011] +16:43:43 [ 19] [ 3] [418] +16:43:43 [ 22] [ 3] [021] +16:43:43 [ 25] [ 2] [01] +16:43:43 [ 28] [ 9] [D00002000] +16:43:43 [ 32] [ 6] [668899] +16:43:43 [ 35] [ 32] [6213544002226543=491212012654894] +16:43:43 [ 37] [ 12] [507902025617] +16:43:43 [ 41] [ 8] [03414002] +16:43:43 [ 42] [ 15] [APT ] +16:43:43 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:43:43 [ 49] [ 3] [418] +16:43:43 [ 52] [ 16] [5B03F9AC5DB52B15] +16:43:43 ============================================================================ +16:43:43 + + +waiting on router queue for slot.... +16:43:43 Sending to : +16:43:43 ============================================================================ +16:43:43 Sending to : +16:43:43 ============================================================================ +16:43:44 ============================================================================ +16:43:44 Slot Id : <195> +16:43:44 Transaction Type : REQUEST +16:43:44 Received From : +16:43:44 ============================================================================ +16:43:44 FNo. Len. Field Value +16:43:44 ============================================================================ +16:43:44 [ 1] [ 4] [0200] +16:43:44 [ 2] [ 16] [6213544002226543] +16:43:44 [ 3] [ 6] [010000] +16:43:44 [ 4] [ 12] [000052000000] +16:43:44 [ 7] [ 10] [0320164133] +16:43:44 [ 11] [ 6] [952208] +16:43:44 [ 12] [ 6] [164133] +16:43:44 [ 13] [ 4] [0320] +16:43:44 [ 15] [ 4] [0320] +16:43:44 [ 18] [ 4] [6011] +16:43:44 [ 19] [ 3] [418] +16:43:44 [ 22] [ 3] [021] +16:43:44 [ 25] [ 2] [01] +16:43:44 [ 28] [ 9] [D00002000] +16:43:44 [ 32] [ 6] [668899] +16:43:44 [ 35] [ 32] [6213544002226543=491212012654894] +16:43:44 [ 37] [ 12] [507902025617] +16:43:44 [ 41] [ 8] [03414002] +16:43:44 [ 42] [ 15] [APT ] +16:43:44 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:43:44 [ 49] [ 3] [418] +16:43:44 [ 52] [ 16] [5B03F9AC5DB52B15] +16:43:44 ============================================================================ +16:43:44 + + +waiting on router queue for slot.... +16:43:44 Sending to : +16:43:44 ============================================================================ +16:43:44 ============================================================================ +16:43:44 Slot Id : <195> +16:43:44 Transaction Type : REQUEST +16:43:44 Received From : +16:43:44 ============================================================================ +16:43:44 FNo. Len. Field Value +16:43:44 ============================================================================ +16:43:44 [ 1] [ 4] [0200] +16:43:44 [ 2] [ 16] [6213544002226543] +16:43:44 [ 3] [ 6] [010000] +16:43:44 [ 4] [ 12] [000052000000] +16:43:44 [ 7] [ 10] [0320164133] +16:43:44 [ 11] [ 6] [952208] +16:43:44 [ 12] [ 6] [164133] +16:43:44 [ 13] [ 4] [0320] +16:43:44 [ 15] [ 4] [0320] +16:43:44 [ 18] [ 4] [6011] +16:43:44 [ 19] [ 3] [418] +16:43:44 [ 22] [ 3] [021] +16:43:44 [ 25] [ 2] [01] +16:43:44 [ 28] [ 9] [D00002000] +16:43:44 [ 32] [ 6] [668899] +16:43:44 [ 35] [ 32] [6213544002226543=491212012654894] +16:43:44 [ 37] [ 12] [507902025617] +16:43:44 [ 41] [ 8] [03414002] +16:43:44 [ 42] [ 15] [APT ] +16:43:44 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:43:44 [ 49] [ 3] [418] +16:43:44 [ 52] [ 16] [D35B47DA7921E34F] +16:43:44 ============================================================================ +16:43:44 + + +waiting on router queue for slot.... +16:43:44 Sending to : <0> +16:43:44 ============================================================================ +16:43:44 ============================================================================ +16:43:44 Slot Id : <195> +16:43:44 Transaction Type : RESPONSE +16:43:44 Received From : +16:43:44 ============================================================================ +16:43:44 FNo. Len. Field Value +16:43:44 ============================================================================ +16:43:44 [ 1] [ 4] [0210] +16:43:44 [ 2] [ 16] [6213544002226543] +16:43:44 [ 3] [ 6] [010000] +16:43:44 [ 4] [ 12] [000052000000] +16:43:44 [ 7] [ 10] [0320164133] +16:43:44 [ 11] [ 6] [952208] +16:43:44 [ 12] [ 6] [164133] +16:43:44 [ 13] [ 4] [0320] +16:43:44 [ 15] [ 4] [0320] +16:43:44 [ 18] [ 4] [6011] +16:43:44 [ 19] [ 3] [418] +16:43:44 [ 32] [ 6] [668899] +16:43:44 [ 35] [ 32] [6213544002226543=491212012654894] +16:43:44 [ 37] [ 12] [507902025617] +16:43:44 [ 38] [ 6] [420535] +16:43:44 [ 39] [ 2] [00] +16:43:44 [ 41] [ 8] [03414002] +16:43:44 [ 49] [ 3] [418] +16:43:44 [ 54] [ 40] [0001418C0000060187240002418C000006018724] +16:43:44 ============================================================================ +16:43:44 Sending to : +16:43:44 ============================================================================ +16:43:44 + + +waiting on router queue for slot.... +16:43:45 ============================================================================ +16:43:45 Slot Id : <195> +16:43:45 Transaction Type : RESPONSE +16:43:45 Received From : +16:43:45 ============================================================================ +16:43:45 FNo. Len. Field Value +16:43:45 ============================================================================ +16:43:45 [ 1] [ 4] [0210] +16:43:45 [ 2] [ 16] [6213544002226543] +16:43:45 [ 3] [ 6] [010000] +16:43:45 [ 4] [ 12] [000052000000] +16:43:45 [ 7] [ 10] [0320164133] +16:43:45 [ 11] [ 6] [952208] +16:43:45 [ 12] [ 6] [164133] +16:43:45 [ 13] [ 4] [0320] +16:43:45 [ 15] [ 4] [0320] +16:43:45 [ 18] [ 4] [6011] +16:43:45 [ 19] [ 3] [418] +16:43:45 [ 32] [ 6] [668899] +16:43:45 [ 35] [ 32] [6213544002226543=491212012654894] +16:43:45 [ 37] [ 12] [507902025617] +16:43:45 [ 38] [ 6] [420535] +16:43:45 [ 39] [ 2] [00] +16:43:45 [ 41] [ 8] [03414002] +16:43:45 [ 49] [ 3] [418] +16:43:45 [ 54] [ 40] [0001418C0000060187240002418C000006018724] +16:43:45 ============================================================================ +16:43:45 Calculate Source COMM Id = 4 +16:43:45 ============================================================================ +16:43:45 + + +waiting on router queue for slot.... +16:43:48 ============================================================================ +16:43:48 Slot Id : <178> +16:43:48 Transaction Type : REQUEST +16:43:48 Received From : +16:43:48 ============================================================================ +16:43:48 FNo. Len. Field Value +16:43:48 ============================================================================ +16:43:48 [ 1] [ 4] [0200] +16:43:48 [ 2] [ 16] [6213544001531265] +16:43:48 [ 3] [ 6] [010000] +16:43:48 [ 4] [ 12] [000010000000] +16:43:48 [ 7] [ 10] [0320094254] +16:43:48 [ 11] [ 6] [270584] +16:43:48 [ 12] [ 6] [164254] +16:43:48 [ 13] [ 4] [0320] +16:43:48 [ 14] [ 4] [4912] +16:43:48 [ 15] [ 4] [0320] +16:43:48 [ 18] [ 4] [6011] +16:43:48 [ 19] [ 3] [418] +16:43:48 [ 22] [ 3] [021] +16:43:48 [ 25] [ 2] [01] +16:43:48 [ 28] [ 9] [D00002000] +16:43:48 [ 32] [ 6] [180893] +16:43:48 [ 35] [ 32] [6213544001531265=491212013126722] +16:43:48 [ 37] [ 12] [507909270584] +16:43:48 [ 41] [ 8] [0344SVKV] +16:43:48 [ 42] [ 15] [999999 ] +16:43:48 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:43:48 [ 49] [ 3] [418] +16:43:48 [ 52] [ 16] [07F4AF864F614643] +16:43:48 ============================================================================ +16:43:48 + + +waiting on router queue for slot.... +16:43:48 Sending to : +16:43:48 ============================================================================ +16:43:48 Sending to : +16:43:48 ============================================================================ +16:43:48 ============================================================================ +16:43:48 Slot Id : <178> +16:43:48 Transaction Type : REQUEST +16:43:48 Received From : +16:43:48 ============================================================================ +16:43:48 FNo. Len. Field Value +16:43:48 ============================================================================ +16:43:48 [ 1] [ 4] [0200] +16:43:48 [ 2] [ 16] [6213544001531265] +16:43:48 [ 3] [ 6] [010000] +16:43:48 [ 4] [ 12] [000010000000] +16:43:48 [ 7] [ 10] [0320094254] +16:43:48 [ 11] [ 6] [270584] +16:43:48 [ 12] [ 6] [164254] +16:43:48 [ 13] [ 4] [0320] +16:43:48 [ 14] [ 4] [4912] +16:43:48 [ 15] [ 4] [0320] +16:43:48 [ 18] [ 4] [6011] +16:43:48 [ 19] [ 3] [418] +16:43:48 [ 22] [ 3] [021] +16:43:48 [ 25] [ 2] [01] +16:43:48 [ 28] [ 9] [D00002000] +16:43:48 [ 32] [ 6] [180893] +16:43:48 [ 35] [ 32] [6213544001531265=491212013126722] +16:43:48 [ 37] [ 12] [507909270584] +16:43:48 [ 41] [ 8] [0344SVKV] +16:43:48 [ 42] [ 15] [999999 ] +16:43:48 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:43:48 [ 49] [ 3] [418] +16:43:48 [ 52] [ 16] [07F4AF864F614643] +16:43:48 ============================================================================ +16:43:48 + + +waiting on router queue for slot.... +16:43:48 Sending to : +16:43:48 ============================================================================ +16:43:48 ============================================================================ +16:43:48 Slot Id : <178> +16:43:48 Transaction Type : REQUEST +16:43:48 Received From : +16:43:48 ============================================================================ +16:43:48 FNo. Len. Field Value +16:43:48 ============================================================================ +16:43:48 [ 1] [ 4] [0200] +16:43:48 [ 2] [ 16] [6213544001531265] +16:43:48 [ 3] [ 6] [010000] +16:43:48 [ 4] [ 12] [000010000000] +16:43:48 [ 7] [ 10] [0320094254] +16:43:48 [ 11] [ 6] [270584] +16:43:48 [ 12] [ 6] [164254] +16:43:48 [ 13] [ 4] [0320] +16:43:48 [ 14] [ 4] [4912] +16:43:48 [ 15] [ 4] [0320] +16:43:48 [ 18] [ 4] [6011] +16:43:48 [ 19] [ 3] [418] +16:43:48 [ 22] [ 3] [021] +16:43:48 [ 25] [ 2] [01] +16:43:48 [ 28] [ 9] [D00002000] +16:43:48 [ 32] [ 6] [180893] +16:43:48 [ 35] [ 32] [6213544001531265=491212013126722] +16:43:48 [ 37] [ 12] [507909270584] +16:43:48 [ 41] [ 8] [0344SVKV] +16:43:48 [ 42] [ 15] [999999 ] +16:43:48 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:43:48 [ 49] [ 3] [418] +16:43:48 [ 52] [ 16] [900B0AA8F597BEAC] +16:43:48 ============================================================================ +16:43:48 + + +waiting on router queue for slot.... +16:43:48 Sending to : <0> +16:43:48 ============================================================================ +16:43:48 ============================================================================ +16:43:48 Slot Id : <178> +16:43:48 Transaction Type : RESPONSE +16:43:48 Received From : +16:43:48 ============================================================================ +16:43:48 FNo. Len. Field Value +16:43:48 ============================================================================ +16:43:48 [ 1] [ 4] [0210] +16:43:48 [ 2] [ 16] [6213544001531265] +16:43:48 [ 3] [ 6] [010000] +16:43:48 [ 4] [ 12] [000010000000] +16:43:48 [ 7] [ 10] [0320094254] +16:43:48 [ 11] [ 6] [270584] +16:43:48 [ 12] [ 6] [164254] +16:43:48 [ 13] [ 4] [0320] +16:43:48 [ 15] [ 4] [0320] +16:43:48 [ 18] [ 4] [6011] +16:43:48 [ 19] [ 3] [418] +16:43:48 [ 22] [ 3] [021] +16:43:48 [ 32] [ 6] [180893] +16:43:48 [ 35] [ 32] [6213544001531265=491212013126722] +16:43:48 [ 37] [ 12] [507909270584] +16:43:48 [ 38] [ 6] [164343] +16:43:48 [ 39] [ 2] [55] +16:43:48 [ 41] [ 8] [0344SVKV] +16:43:48 [ 49] [ 3] [418] +16:43:48 ============================================================================ +16:43:48 Sending to : +16:43:48 ============================================================================ +16:43:48 + + +waiting on router queue for slot.... +16:43:49 ============================================================================ +16:43:49 Slot Id : <178> +16:43:49 Transaction Type : RESPONSE +16:43:49 Received From : +16:43:49 ============================================================================ +16:43:49 FNo. Len. Field Value +16:43:49 ============================================================================ +16:43:49 [ 1] [ 4] [0210] +16:43:49 [ 2] [ 16] [6213544001531265] +16:43:49 [ 3] [ 6] [010000] +16:43:49 [ 4] [ 12] [000010000000] +16:43:49 [ 7] [ 10] [0320094254] +16:43:49 [ 11] [ 6] [270584] +16:43:49 [ 12] [ 6] [164254] +16:43:49 [ 13] [ 4] [0320] +16:43:49 [ 15] [ 4] [0320] +16:43:49 [ 18] [ 4] [6011] +16:43:49 [ 19] [ 3] [418] +16:43:49 [ 22] [ 3] [021] +16:43:49 [ 32] [ 6] [180893] +16:43:49 [ 35] [ 32] [6213544001531265=491212013126722] +16:43:49 [ 37] [ 12] [507909270584] +16:43:49 [ 38] [ 6] [164343] +16:43:49 [ 39] [ 2] [55] +16:43:49 [ 41] [ 8] [0344SVKV] +16:43:49 [ 49] [ 3] [418] +16:43:49 ============================================================================ +16:43:49 Calculate Source COMM Id = 2 +16:43:49 ============================================================================ +16:43:49 + + +waiting on router queue for slot.... +16:44:00 ============================================================================ +16:44:00 Slot Id : <184> +16:44:00 Transaction Type : REQUEST +16:44:00 Received From : +16:44:00 ============================================================================ +16:44:00 FNo. Len. Field Value +16:44:00 ============================================================================ +16:44:00 [ 1] [ 4] [0200] +16:44:00 [ 2] [ 16] [6213544002188289] +16:44:00 [ 3] [ 6] [010000] +16:44:00 [ 4] [ 12] [000020000000] +16:44:00 [ 7] [ 10] [0320164150] +16:44:00 [ 11] [ 6] [952218] +16:44:00 [ 12] [ 6] [164150] +16:44:00 [ 13] [ 4] [0320] +16:44:00 [ 15] [ 4] [0320] +16:44:00 [ 18] [ 4] [6011] +16:44:00 [ 19] [ 3] [418] +16:44:00 [ 22] [ 3] [021] +16:44:00 [ 25] [ 2] [01] +16:44:00 [ 28] [ 9] [D00002000] +16:44:00 [ 32] [ 6] [668899] +16:44:00 [ 35] [ 32] [6213544002188289=491212018828936] +16:44:00 [ 37] [ 12] [507901963678] +16:44:00 [ 41] [ 8] [03020019] +16:44:00 [ 42] [ 15] [APT ] +16:44:00 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +16:44:00 [ 49] [ 3] [418] +16:44:00 [ 52] [ 16] [720E0169B91913EB] +16:44:00 ============================================================================ +16:44:00 + + +waiting on router queue for slot.... +16:44:00 Sending to : +16:44:00 ============================================================================ +16:44:00 Sending to : +16:44:00 ============================================================================ +16:44:01 ============================================================================ +16:44:01 Slot Id : <184> +16:44:01 Transaction Type : REQUEST +16:44:01 Received From : +16:44:01 ============================================================================ +16:44:01 FNo. Len. Field Value +16:44:01 ============================================================================ +16:44:01 [ 1] [ 4] [0200] +16:44:01 [ 2] [ 16] [6213544002188289] +16:44:01 [ 3] [ 6] [010000] +16:44:01 [ 4] [ 12] [000020000000] +16:44:01 [ 7] [ 10] [0320164150] +16:44:01 [ 11] [ 6] [952218] +16:44:01 [ 12] [ 6] [164150] +16:44:01 [ 13] [ 4] [0320] +16:44:01 [ 15] [ 4] [0320] +16:44:01 [ 18] [ 4] [6011] +16:44:01 [ 19] [ 3] [418] +16:44:01 [ 22] [ 3] [021] +16:44:01 [ 25] [ 2] [01] +16:44:01 [ 28] [ 9] [D00002000] +16:44:01 [ 32] [ 6] [668899] +16:44:01 [ 35] [ 32] [6213544002188289=491212018828936] +16:44:01 [ 37] [ 12] [507901963678] +16:44:01 [ 41] [ 8] [03020019] +16:44:01 [ 42] [ 15] [APT ] +16:44:01 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +16:44:01 [ 49] [ 3] [418] +16:44:01 [ 52] [ 16] [720E0169B91913EB] +16:44:01 ============================================================================ +16:44:01 + + +waiting on router queue for slot.... +16:44:01 Sending to : +16:44:01 ============================================================================ +16:44:01 ============================================================================ +16:44:01 Slot Id : <184> +16:44:01 Transaction Type : REQUEST +16:44:01 Received From : +16:44:01 ============================================================================ +16:44:01 FNo. Len. Field Value +16:44:01 ============================================================================ +16:44:01 [ 1] [ 4] [0200] +16:44:01 [ 2] [ 16] [6213544002188289] +16:44:01 [ 3] [ 6] [010000] +16:44:01 [ 4] [ 12] [000020000000] +16:44:01 [ 7] [ 10] [0320164150] +16:44:01 [ 11] [ 6] [952218] +16:44:01 [ 12] [ 6] [164150] +16:44:01 [ 13] [ 4] [0320] +16:44:01 [ 15] [ 4] [0320] +16:44:01 [ 18] [ 4] [6011] +16:44:01 [ 19] [ 3] [418] +16:44:01 [ 22] [ 3] [021] +16:44:01 [ 25] [ 2] [01] +16:44:01 [ 28] [ 9] [D00002000] +16:44:01 [ 32] [ 6] [668899] +16:44:01 [ 35] [ 32] [6213544002188289=491212018828936] +16:44:01 [ 37] [ 12] [507901963678] +16:44:01 [ 41] [ 8] [03020019] +16:44:01 [ 42] [ 15] [APT ] +16:44:01 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +16:44:01 [ 49] [ 3] [418] +16:44:01 [ 52] [ 16] [B61058E9E11C8C91] +16:44:01 ============================================================================ +16:44:01 + + +waiting on router queue for slot.... +16:44:01 Sending to : <0> +16:44:01 ============================================================================ +16:44:01 ============================================================================ +16:44:01 Slot Id : <206> +16:44:01 Transaction Type : REQUEST +16:44:01 Received From : +16:44:01 ============================================================================ +16:44:01 FNo. Len. Field Value +16:44:01 ============================================================================ +16:44:01 [ 1] [ 4] [0800] +16:44:01 [ 2] [ 5] [02531] +16:44:01 [ 3] [ 6] [579168] +16:44:01 [ 7] [ 10] [0320094401] +16:44:01 [ 11] [ 6] [807383] +16:44:01 [ 15] [ 10] [0320094401] +16:44:01 [ 37] [ 11] [57916807383] +16:44:01 [ 70] [ 3] [001] +16:44:01 ============================================================================ +16:44:01 + + +waiting on router queue for slot.... +16:44:01 ============================================================================ +16:44:01 Slot Id : <206> +16:44:01 Transaction Type : RESPONSE +16:44:01 Received From : +16:44:01 ============================================================================ +16:44:01 FNo. Len. Field Value +16:44:01 ============================================================================ +16:44:01 [ 1] [ 4] [0810] +16:44:01 [ 7] [ 10] [0320094401] +16:44:01 [ 11] [ 6] [807383] +16:44:01 [ 15] [ 4] [0320] +16:44:01 [ 37] [ 12] [57916807383] +16:44:01 [ 39] [ 2] [00] +16:44:01 [ 70] [ 3] [001] +16:44:01 ============================================================================ +16:44:01 Sending to : +16:44:01 ============================================================================ +16:44:01 + + +waiting on router queue for slot.... +16:44:01 ============================================================================ +16:44:01 Slot Id : <184> +16:44:01 Transaction Type : RESPONSE +16:44:01 Received From : +16:44:01 ============================================================================ +16:44:01 FNo. Len. Field Value +16:44:01 ============================================================================ +16:44:01 [ 1] [ 4] [0210] +16:44:01 [ 2] [ 16] [6213544002188289] +16:44:01 [ 3] [ 6] [010000] +16:44:01 [ 4] [ 12] [000020000000] +16:44:01 [ 7] [ 10] [0320164150] +16:44:01 [ 11] [ 6] [952218] +16:44:01 [ 12] [ 6] [164150] +16:44:01 [ 13] [ 4] [0320] +16:44:01 [ 15] [ 4] [0320] +16:44:01 [ 18] [ 4] [6011] +16:44:01 [ 19] [ 3] [418] +16:44:01 [ 32] [ 6] [668899] +16:44:01 [ 35] [ 32] [6213544002188289=491212018828936] +16:44:01 [ 37] [ 12] [507901963678] +16:44:01 [ 38] [ 6] [170423] +16:44:01 [ 39] [ 2] [00] +16:44:01 [ 41] [ 8] [03020019] +16:44:01 [ 49] [ 3] [418] +16:44:01 [ 54] [ 40] [0001418C0000367000000002418C000036700000] +16:44:01 ============================================================================ +16:44:01 Sending to : +16:44:01 ============================================================================ +16:44:01 + + +waiting on router queue for slot.... +16:44:01 ============================================================================ +16:44:01 Slot Id : <194> +16:44:01 Transaction Type : REQUEST +16:44:01 Received From : +16:44:01 ============================================================================ +16:44:01 FNo. Len. Field Value +16:44:01 ============================================================================ +16:44:01 [ 1] [ 4] [0800] +16:44:01 [ 7] [ 10] [0320094308] +16:44:01 [ 11] [ 6] [157293] +16:44:01 [ 70] [ 3] [301] +16:44:01 ============================================================================ +16:44:01 + + +waiting on router queue for slot.... +16:44:01 Sending to : +16:44:01 ============================================================================ +16:44:01 ============================================================================ +16:44:01 Slot Id : <194> +16:44:01 Transaction Type : RESPONSE +16:44:01 Received From : +16:44:01 ============================================================================ +16:44:01 FNo. Len. Field Value +16:44:01 ============================================================================ +16:44:01 [ 1] [ 4] [0810] +16:44:01 [ 7] [ 10] [0320094308] +16:44:01 [ 11] [ 6] [157293] +16:44:01 [ 39] [ 2] [00] +16:44:01 [ 70] [ 3] [301] +16:44:01 ============================================================================ +16:44:01 Calculate Source COMM Id = 2 +16:44:01 ============================================================================ +16:44:01 + + +waiting on router queue for slot.... +16:44:02 ============================================================================ +16:44:02 Slot Id : <212> +16:44:02 Transaction Type : REQUEST +16:44:02 Received From : +16:44:02 ============================================================================ +16:44:02 FNo. Len. Field Value +16:44:02 ============================================================================ +16:44:02 [ 1] [ 4] [0200] +16:44:02 [ 2] [ 16] [6213545000815559] +16:44:02 [ 3] [ 6] [011000] +16:44:02 [ 4] [ 12] [000020000000] +16:44:02 [ 7] [ 10] [0320094308] +16:44:02 [ 11] [ 6] [270587] +16:44:02 [ 12] [ 6] [164308] +16:44:02 [ 13] [ 4] [0320] +16:44:02 [ 14] [ 4] [4912] +16:44:02 [ 15] [ 4] [0320] +16:44:02 [ 18] [ 4] [6011] +16:44:02 [ 19] [ 3] [418] +16:44:02 [ 22] [ 3] [021] +16:44:02 [ 25] [ 2] [01] +16:44:02 [ 28] [ 9] [D00002000] +16:44:02 [ 32] [ 6] [180893] +16:44:02 [ 35] [ 32] [6213545000815559=491212011555799] +16:44:02 [ 37] [ 12] [507909270587] +16:44:02 [ 41] [ 8] [0262PSLB] +16:44:02 [ 42] [ 15] [999999 ] +16:44:02 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +16:44:02 [ 49] [ 3] [418] +16:44:02 [ 52] [ 16] [C30BF0098360C124] +16:44:02 ============================================================================ +16:44:02 + + +waiting on router queue for slot.... +16:44:02 Sending to : +16:44:02 ============================================================================ +16:44:02 Sending to : +16:44:02 ============================================================================ +16:44:02 ============================================================================ +16:44:02 Slot Id : <212> +16:44:02 Transaction Type : REQUEST +16:44:02 Received From : +16:44:02 ============================================================================ +16:44:02 FNo. Len. Field Value +16:44:02 ============================================================================ +16:44:02 [ 1] [ 4] [0200] +16:44:02 [ 2] [ 16] [6213545000815559] +16:44:02 [ 3] [ 6] [011000] +16:44:02 [ 4] [ 12] [000020000000] +16:44:02 [ 7] [ 10] [0320094308] +16:44:02 [ 11] [ 6] [270587] +16:44:02 [ 12] [ 6] [164308] +16:44:02 [ 13] [ 4] [0320] +16:44:02 [ 14] [ 4] [4912] +16:44:02 [ 15] [ 4] [0320] +16:44:02 [ 18] [ 4] [6011] +16:44:02 [ 19] [ 3] [418] +16:44:02 [ 22] [ 3] [021] +16:44:02 [ 25] [ 2] [01] +16:44:02 [ 28] [ 9] [D00002000] +16:44:02 [ 32] [ 6] [180893] +16:44:02 [ 35] [ 32] [6213545000815559=491212011555799] +16:44:02 [ 37] [ 12] [507909270587] +16:44:02 [ 41] [ 8] [0262PSLB] +16:44:02 [ 42] [ 15] [999999 ] +16:44:02 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +16:44:02 [ 49] [ 3] [418] +16:44:02 [ 52] [ 16] [C30BF0098360C124] +16:44:02 ============================================================================ +16:44:02 + + +waiting on router queue for slot.... +16:44:02 Sending to : +16:44:02 ============================================================================ +16:44:02 ============================================================================ +16:44:02 Slot Id : <212> +16:44:02 Transaction Type : REQUEST +16:44:02 Received From : +16:44:02 ============================================================================ +16:44:02 FNo. Len. Field Value +16:44:02 ============================================================================ +16:44:02 [ 1] [ 4] [0200] +16:44:02 [ 2] [ 16] [6213545000815559] +16:44:02 [ 3] [ 6] [011000] +16:44:02 [ 4] [ 12] [000020000000] +16:44:02 [ 7] [ 10] [0320094308] +16:44:02 [ 11] [ 6] [270587] +16:44:02 [ 12] [ 6] [164308] +16:44:02 [ 13] [ 4] [0320] +16:44:02 [ 14] [ 4] [4912] +16:44:02 [ 15] [ 4] [0320] +16:44:02 [ 18] [ 4] [6011] +16:44:02 [ 19] [ 3] [418] +16:44:02 [ 22] [ 3] [021] +16:44:02 [ 25] [ 2] [01] +16:44:02 [ 28] [ 9] [D00002000] +16:44:02 [ 32] [ 6] [180893] +16:44:02 [ 35] [ 32] [6213545000815559=491212011555799] +16:44:02 [ 37] [ 12] [507909270587] +16:44:02 [ 41] [ 8] [0262PSLB] +16:44:02 [ 42] [ 15] [999999 ] +16:44:02 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +16:44:02 [ 49] [ 3] [418] +16:44:02 [ 52] [ 16] [932E46F88F3CF808] +16:44:02 ============================================================================ +16:44:02 + + +waiting on router queue for slot.... +16:44:02 Sending to : <0> +16:44:02 ============================================================================ +16:44:03 ============================================================================ +16:44:03 Slot Id : <184> +16:44:03 Transaction Type : RESPONSE +16:44:03 Received From : +16:44:03 ============================================================================ +16:44:03 FNo. Len. Field Value +16:44:03 ============================================================================ +16:44:03 [ 1] [ 4] [0210] +16:44:03 [ 2] [ 16] [6213544002188289] +16:44:03 [ 3] [ 6] [010000] +16:44:03 [ 4] [ 12] [000020000000] +16:44:03 [ 7] [ 10] [0320164150] +16:44:03 [ 11] [ 6] [952218] +16:44:03 [ 12] [ 6] [164150] +16:44:03 [ 13] [ 4] [0320] +16:44:03 [ 15] [ 4] [0320] +16:44:03 [ 18] [ 4] [6011] +16:44:03 [ 19] [ 3] [418] +16:44:03 [ 32] [ 6] [668899] +16:44:03 [ 35] [ 32] [6213544002188289=491212018828936] +16:44:03 [ 37] [ 12] [507901963678] +16:44:03 [ 38] [ 6] [170423] +16:44:03 [ 39] [ 2] [00] +16:44:03 [ 41] [ 8] [03020019] +16:44:03 [ 49] [ 3] [418] +16:44:03 [ 54] [ 40] [0001418C0000367000000002418C000036700000] +16:44:03 ============================================================================ +16:44:03 Calculate Source COMM Id = 4 +16:44:03 ============================================================================ +16:44:03 + + +waiting on router queue for slot.... +16:44:03 ============================================================================ +16:44:03 Slot Id : <212> +16:44:03 Transaction Type : RESPONSE +16:44:03 Received From : +16:44:03 ============================================================================ +16:44:03 FNo. Len. Field Value +16:44:03 ============================================================================ +16:44:03 [ 1] [ 4] [0210] +16:44:03 [ 2] [ 16] [6213545000815559] +16:44:03 [ 3] [ 6] [011000] +16:44:03 [ 4] [ 12] [000020000000] +16:44:03 [ 7] [ 10] [0320094308] +16:44:03 [ 11] [ 6] [270587] +16:44:03 [ 12] [ 6] [164308] +16:44:03 [ 13] [ 4] [0320] +16:44:03 [ 15] [ 4] [0320] +16:44:03 [ 18] [ 4] [6011] +16:44:03 [ 19] [ 3] [418] +16:44:03 [ 32] [ 6] [180893] +16:44:03 [ 35] [ 32] [6213545000815559=491212011555799] +16:44:03 [ 37] [ 12] [507909270587] +16:44:03 [ 38] [ 6] [442578] +16:44:03 [ 39] [ 2] [00] +16:44:03 [ 41] [ 8] [0262PSLB] +16:44:03 [ 49] [ 3] [418] +16:44:03 [ 54] [ 40] [1001418C0000919839161002418C000091983916] +16:44:03 ============================================================================ +16:44:03 Sending to : +16:44:03 ============================================================================ +16:44:03 + + +waiting on router queue for slot.... +16:44:04 ============================================================================ +16:44:04 Slot Id : <212> +16:44:04 Transaction Type : RESPONSE +16:44:04 Received From : +16:44:04 ============================================================================ +16:44:04 FNo. Len. Field Value +16:44:04 ============================================================================ +16:44:04 [ 1] [ 4] [0210] +16:44:04 [ 2] [ 16] [6213545000815559] +16:44:04 [ 3] [ 6] [011000] +16:44:04 [ 4] [ 12] [000020000000] +16:44:04 [ 7] [ 10] [0320094308] +16:44:04 [ 11] [ 6] [270587] +16:44:04 [ 12] [ 6] [164308] +16:44:04 [ 13] [ 4] [0320] +16:44:04 [ 15] [ 4] [0320] +16:44:04 [ 18] [ 4] [6011] +16:44:04 [ 19] [ 3] [418] +16:44:04 [ 32] [ 6] [180893] +16:44:04 [ 35] [ 32] [6213545000815559=491212011555799] +16:44:04 [ 37] [ 12] [507909270587] +16:44:04 [ 38] [ 6] [442578] +16:44:04 [ 39] [ 2] [00] +16:44:04 [ 41] [ 8] [0262PSLB] +16:44:04 [ 49] [ 3] [418] +16:44:04 [ 54] [ 40] [1001418C0000919839161002418C000091983916] +16:44:04 ============================================================================ +16:44:04 Calculate Source COMM Id = 2 +16:44:04 ============================================================================ +16:44:04 + + +waiting on router queue for slot.... +16:44:10 ============================================================================ +16:44:10 Slot Id : <193> +16:44:10 Transaction Type : REQUEST +16:44:10 Received From : +16:44:10 ============================================================================ +16:44:10 FNo. Len. Field Value +16:44:10 ============================================================================ +16:44:10 [ 1] [ 4] [0800] +16:44:10 [ 7] [ 10] [0320235558] +16:44:10 [ 11] [ 6] [165558] +16:44:10 [ 37] [ 12] [57916165558] +16:44:10 [ 70] [ 3] [301] +16:44:10 ============================================================================ +16:44:10 + + +waiting on router queue for slot.... +16:44:10 Sending to : +16:44:10 ============================================================================ +16:44:10 ============================================================================ +16:44:10 Slot Id : <193> +16:44:10 Transaction Type : RESPONSE +16:44:10 Received From : +16:44:10 ============================================================================ +16:44:10 FNo. Len. Field Value +16:44:10 ============================================================================ +16:44:10 [ 1] [ 4] [0810] +16:44:10 [ 7] [ 10] [0320235558] +16:44:10 [ 11] [ 6] [165558] +16:44:10 [ 37] [ 12] [579161655580] +16:44:10 [ 39] [ 2] [00] +16:44:10 [ 70] [ 3] [810] +16:44:10 ============================================================================ +16:44:10 Calculate Source COMM Id = 6 +16:44:10 ============================================================================ +16:44:10 + + +waiting on router queue for slot.... +16:44:17 ============================================================================ +16:44:17 Slot Id : <213> +16:44:17 Transaction Type : REQUEST +16:44:17 Received From : +16:44:17 ============================================================================ +16:44:17 FNo. Len. Field Value +16:44:17 ============================================================================ +16:44:17 [ 1] [ 4] [0200] +16:44:17 [ 2] [ 16] [6688990103640601] +16:44:17 [ 3] [ 6] [010000] +16:44:17 [ 4] [ 12] [000100000000] +16:44:17 [ 7] [ 10] [0320164412] +16:44:17 [ 11] [ 6] [803769] +16:44:17 [ 12] [ 6] [164412] +16:44:17 [ 13] [ 4] [0320] +16:44:17 [ 15] [ 4] [0320] +16:44:17 [ 18] [ 4] [6011] +16:44:17 [ 22] [ 3] [900] +16:44:17 [ 25] [ 2] [02] +16:44:17 [ 28] [ 9] [D00002000] +16:44:17 [ 32] [ 6] [621354] +16:44:17 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:44:17 [ 37] [ 12] [507903499620] +16:44:17 [ 41] [ 8] [06002200] +16:44:17 [ 42] [ 15] [NATIVE ] +16:44:17 [ 43] [ 40] [Beng Market Beng LAO] +16:44:17 [ 49] [ 3] [418] +16:44:17 [ 52] [ 16] [89C4B68DA1F90685] +16:44:17 ============================================================================ +16:44:17 + + +waiting on router queue for slot.... +16:44:17 Sending to : +16:44:17 ============================================================================ +16:44:17 Sending to : +16:44:17 ============================================================================ +16:44:17 ============================================================================ +16:44:17 Slot Id : <207> +16:44:17 Transaction Type : REQUEST +16:44:17 Received From : +16:44:17 ============================================================================ +16:44:17 FNo. Len. Field Value +16:44:17 ============================================================================ +16:44:17 [ 1] [ 4] [0800] +16:44:17 [ 7] [ 10] [0320094324] +16:44:17 [ 11] [ 6] [157294] +16:44:17 [ 70] [ 3] [301] +16:44:17 ============================================================================ +16:44:17 + + +waiting on router queue for slot.... +16:44:17 Sending to : +16:44:17 ============================================================================ +16:44:17 ============================================================================ +16:44:17 Slot Id : <207> +16:44:17 Transaction Type : RESPONSE +16:44:17 Received From : +16:44:17 ============================================================================ +16:44:17 FNo. Len. Field Value +16:44:17 ============================================================================ +16:44:17 [ 1] [ 4] [0810] +16:44:17 [ 7] [ 10] [0320094324] +16:44:17 [ 11] [ 6] [157294] +16:44:17 [ 39] [ 2] [00] +16:44:17 [ 70] [ 3] [301] +16:44:17 ============================================================================ +16:44:17 Calculate Source COMM Id = 2 +16:44:17 ============================================================================ +16:44:17 + + +waiting on router queue for slot.... +16:44:17 ============================================================================ +16:44:17 Slot Id : <213> +16:44:17 Transaction Type : REQUEST +16:44:17 Received From : +16:44:17 ============================================================================ +16:44:17 FNo. Len. Field Value +16:44:17 ============================================================================ +16:44:17 [ 1] [ 4] [0200] +16:44:17 [ 2] [ 16] [6688990103640601] +16:44:17 [ 3] [ 6] [010000] +16:44:17 [ 4] [ 12] [000100000000] +16:44:17 [ 7] [ 10] [0320164412] +16:44:17 [ 11] [ 6] [803769] +16:44:17 [ 12] [ 6] [164412] +16:44:17 [ 13] [ 4] [0320] +16:44:17 [ 15] [ 4] [0320] +16:44:17 [ 18] [ 4] [6011] +16:44:17 [ 22] [ 3] [900] +16:44:17 [ 25] [ 2] [02] +16:44:17 [ 28] [ 9] [D00002000] +16:44:17 [ 32] [ 6] [621354] +16:44:17 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:44:17 [ 37] [ 12] [507903499620] +16:44:17 [ 41] [ 8] [06002200] +16:44:17 [ 42] [ 15] [NATIVE ] +16:44:17 [ 43] [ 40] [Beng Market Beng LAO] +16:44:17 [ 49] [ 3] [418] +16:44:17 [ 52] [ 16] [89C4B68DA1F90685] +16:44:17 ============================================================================ +16:44:17 + + +waiting on router queue for slot.... +16:44:17 Sending to : +16:44:17 ============================================================================ +16:44:17 ============================================================================ +16:44:17 Slot Id : <213> +16:44:17 Transaction Type : REQUEST +16:44:17 Received From : +16:44:17 ============================================================================ +16:44:17 FNo. Len. Field Value +16:44:17 ============================================================================ +16:44:17 [ 1] [ 4] [0200] +16:44:17 [ 2] [ 16] [6688990103640601] +16:44:17 [ 3] [ 6] [010000] +16:44:17 [ 4] [ 12] [000100000000] +16:44:17 [ 7] [ 10] [0320164412] +16:44:17 [ 11] [ 6] [803769] +16:44:17 [ 12] [ 6] [164412] +16:44:17 [ 13] [ 4] [0320] +16:44:17 [ 15] [ 4] [0320] +16:44:17 [ 18] [ 4] [6011] +16:44:17 [ 22] [ 3] [900] +16:44:17 [ 25] [ 2] [02] +16:44:17 [ 28] [ 9] [D00002000] +16:44:17 [ 32] [ 6] [621354] +16:44:17 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:44:17 [ 37] [ 12] [507903499620] +16:44:17 [ 41] [ 8] [06002200] +16:44:17 [ 42] [ 15] [NATIVE ] +16:44:17 [ 43] [ 40] [Beng Market Beng LAO] +16:44:17 [ 49] [ 3] [418] +16:44:17 [ 52] [ 16] [19321739A518059D] +16:44:17 ============================================================================ +16:44:17 + + +waiting on router queue for slot.... +16:44:17 Sending to : <4> +16:44:17 ============================================================================ +16:44:18 ============================================================================ +16:44:18 Slot Id : <213> +16:44:18 Transaction Type : RESPONSE +16:44:18 Received From : +16:44:18 ============================================================================ +16:44:18 FNo. Len. Field Value +16:44:18 ============================================================================ +16:44:18 [ 1] [ 4] [0210] +16:44:18 [ 2] [ 16] [6688990103640601] +16:44:18 [ 3] [ 6] [010000] +16:44:18 [ 4] [ 12] [000100000000] +16:44:18 [ 11] [ 6] [803769] +16:44:18 [ 12] [ 6] [164412] +16:44:18 [ 15] [ 4] [0320] +16:44:18 [ 18] [ 4] [6011] +16:44:18 [ 32] [ 6] [621354] +16:44:18 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:44:18 [ 37] [ 12] [507903499620] +16:44:18 [ 38] [ 6] [468988] +16:44:18 [ 39] [ 2] [00] +16:44:18 [ 41] [ 8] [06002200] +16:44:18 [ 49] [ 3] [418] +16:44:18 [ 54] [ 20] [0002418C000111705538] +16:44:18 ============================================================================ +16:44:18 Sending to : +16:44:18 ============================================================================ +16:44:18 + + +waiting on router queue for slot.... +16:44:19 ============================================================================ +16:44:19 Slot Id : <221> +16:44:19 Transaction Type : REQUEST +16:44:19 Received From : +16:44:19 ============================================================================ +16:44:19 FNo. Len. Field Value +16:44:19 ============================================================================ +16:44:19 [ 1] [ 4] [0200] +16:44:19 [ 2] [ 16] [6213544001969556] +16:44:19 [ 3] [ 6] [011000] +16:44:19 [ 4] [ 12] [000060000000] +16:44:19 [ 7] [ 10] [0320164439] +16:44:19 [ 11] [ 6] [208921] +16:44:19 [ 12] [ 6] [163945] +16:44:19 [ 13] [ 4] [0320] +16:44:19 [ 14] [ 4] [4912] +16:44:19 [ 15] [ 4] [0320] +16:44:19 [ 18] [ 4] [6011] +16:44:19 [ 19] [ 3] [418] +16:44:19 [ 22] [ 3] [021] +16:44:19 [ 25] [ 2] [01] +16:44:19 [ 28] [ 9] [D00002000] +16:44:19 [ 32] [ 6] [198901] +16:44:19 [ 35] [ 32] [6213544001969556=491212016955490] +16:44:19 [ 37] [ 12] [507916208921] +16:44:19 [ 41] [ 8] [19529001] +16:44:19 [ 42] [ 15] [000000041952901] +16:44:19 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:44:19 [ 49] [ 3] [418] +16:44:19 [ 52] [ 16] [A0CD424469444291] +16:44:19 ============================================================================ +16:44:19 + + +waiting on router queue for slot.... +16:44:19 Sending to : +16:44:19 ============================================================================ +16:44:19 Sending to : +16:44:19 ============================================================================ +16:44:19 ============================================================================ +16:44:19 Slot Id : <221> +16:44:19 Transaction Type : REQUEST +16:44:19 Received From : +16:44:19 ============================================================================ +16:44:19 FNo. Len. Field Value +16:44:19 ============================================================================ +16:44:19 [ 1] [ 4] [0200] +16:44:19 [ 2] [ 16] [6213544001969556] +16:44:19 [ 3] [ 6] [011000] +16:44:19 [ 4] [ 12] [000060000000] +16:44:19 [ 7] [ 10] [0320164439] +16:44:19 [ 11] [ 6] [208921] +16:44:19 [ 12] [ 6] [163945] +16:44:19 [ 13] [ 4] [0320] +16:44:19 [ 14] [ 4] [4912] +16:44:19 [ 15] [ 4] [0320] +16:44:19 [ 18] [ 4] [6011] +16:44:19 [ 19] [ 3] [418] +16:44:19 [ 22] [ 3] [021] +16:44:19 [ 25] [ 2] [01] +16:44:19 [ 28] [ 9] [D00002000] +16:44:19 [ 32] [ 6] [198901] +16:44:19 [ 35] [ 32] [6213544001969556=491212016955490] +16:44:19 [ 37] [ 12] [507916208921] +16:44:19 [ 41] [ 8] [19529001] +16:44:19 [ 42] [ 15] [000000041952901] +16:44:19 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:44:19 [ 49] [ 3] [418] +16:44:19 [ 52] [ 16] [A0CD424469444291] +16:44:19 ============================================================================ +16:44:19 + + +waiting on router queue for slot.... +16:44:19 Sending to : +16:44:19 ============================================================================ +16:44:19 ============================================================================ +16:44:19 Slot Id : <221> +16:44:19 Transaction Type : REQUEST +16:44:19 Received From : +16:44:19 ============================================================================ +16:44:19 FNo. Len. Field Value +16:44:19 ============================================================================ +16:44:19 [ 1] [ 4] [0200] +16:44:19 [ 2] [ 16] [6213544001969556] +16:44:19 [ 3] [ 6] [011000] +16:44:19 [ 4] [ 12] [000060000000] +16:44:19 [ 7] [ 10] [0320164439] +16:44:19 [ 11] [ 6] [208921] +16:44:19 [ 12] [ 6] [163945] +16:44:19 [ 13] [ 4] [0320] +16:44:19 [ 14] [ 4] [4912] +16:44:19 [ 15] [ 4] [0320] +16:44:19 [ 18] [ 4] [6011] +16:44:19 [ 19] [ 3] [418] +16:44:19 [ 22] [ 3] [021] +16:44:19 [ 25] [ 2] [01] +16:44:19 [ 28] [ 9] [D00002000] +16:44:19 [ 32] [ 6] [198901] +16:44:19 [ 35] [ 32] [6213544001969556=491212016955490] +16:44:19 [ 37] [ 12] [507916208921] +16:44:19 [ 41] [ 8] [19529001] +16:44:19 [ 42] [ 15] [000000041952901] +16:44:19 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:44:19 [ 49] [ 3] [418] +16:44:19 [ 52] [ 16] [91DC4F75CBCF9A9B] +16:44:19 ============================================================================ +16:44:19 + + +waiting on router queue for slot.... +16:44:19 Sending to : <0> +16:44:19 ============================================================================ +16:44:19 ============================================================================ +16:44:19 Slot Id : <213> +16:44:19 Transaction Type : RESPONSE +16:44:19 Received From : +16:44:19 ============================================================================ +16:44:19 FNo. Len. Field Value +16:44:19 ============================================================================ +16:44:19 [ 1] [ 4] [0210] +16:44:19 [ 2] [ 16] [6688990103640601] +16:44:19 [ 3] [ 6] [010000] +16:44:19 [ 4] [ 12] [000100000000] +16:44:19 [ 11] [ 6] [803769] +16:44:19 [ 12] [ 6] [164412] +16:44:19 [ 15] [ 4] [0320] +16:44:19 [ 18] [ 4] [6011] +16:44:19 [ 32] [ 6] [621354] +16:44:19 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:44:19 [ 37] [ 12] [507903499620] +16:44:19 [ 38] [ 6] [468988] +16:44:19 [ 39] [ 2] [00] +16:44:19 [ 41] [ 8] [06002200] +16:44:19 [ 49] [ 3] [418] +16:44:19 [ 54] [ 20] [0002418C000111705538] +16:44:19 ============================================================================ +16:44:19 Calculate Source COMM Id = 0 +16:44:19 ============================================================================ +16:44:19 + + +waiting on router queue for slot.... +16:44:20 ============================================================================ +16:44:20 Slot Id : <221> +16:44:20 Transaction Type : RESPONSE +16:44:20 Received From : +16:44:20 ============================================================================ +16:44:20 FNo. Len. Field Value +16:44:20 ============================================================================ +16:44:20 [ 1] [ 4] [0210] +16:44:20 [ 2] [ 16] [6213544001969556] +16:44:20 [ 3] [ 6] [011000] +16:44:20 [ 4] [ 12] [000060000000] +16:44:20 [ 7] [ 10] [0320164439] +16:44:20 [ 11] [ 6] [208921] +16:44:20 [ 12] [ 6] [163945] +16:44:20 [ 13] [ 4] [0320] +16:44:20 [ 15] [ 4] [0320] +16:44:20 [ 18] [ 4] [6011] +16:44:20 [ 19] [ 3] [418] +16:44:20 [ 32] [ 6] [198901] +16:44:20 [ 35] [ 32] [6213544001969556=491212016955490] +16:44:20 [ 37] [ 12] [507916208921] +16:44:20 [ 38] [ 6] [739838] +16:44:20 [ 39] [ 2] [00] +16:44:20 [ 41] [ 8] [19529001] +16:44:20 [ 49] [ 3] [418] +16:44:20 [ 54] [ 40] [1001418C0000071938641002418C000007193864] +16:44:20 ============================================================================ +16:44:20 Sending to : +16:44:20 ============================================================================ +16:44:20 + + +waiting on router queue for slot.... +16:44:21 ============================================================================ +16:44:21 Slot Id : <221> +16:44:21 Transaction Type : RESPONSE +16:44:21 Received From : +16:44:21 ============================================================================ +16:44:21 FNo. Len. Field Value +16:44:21 ============================================================================ +16:44:21 [ 1] [ 4] [0210] +16:44:21 [ 2] [ 16] [6213544001969556] +16:44:21 [ 3] [ 6] [011000] +16:44:21 [ 4] [ 12] [000060000000] +16:44:21 [ 7] [ 10] [0320164439] +16:44:21 [ 11] [ 6] [208921] +16:44:21 [ 12] [ 6] [163945] +16:44:21 [ 13] [ 4] [0320] +16:44:21 [ 15] [ 4] [0320] +16:44:21 [ 18] [ 4] [6011] +16:44:21 [ 19] [ 3] [418] +16:44:21 [ 32] [ 6] [198901] +16:44:21 [ 35] [ 32] [6213544001969556=491212016955490] +16:44:21 [ 37] [ 12] [507916208921] +16:44:21 [ 38] [ 6] [739838] +16:44:21 [ 39] [ 2] [00] +16:44:21 [ 41] [ 8] [19529001] +16:44:21 [ 49] [ 3] [418] +16:44:21 [ 54] [ 40] [1001418C0000071938641002418C000007193864] +16:44:21 ============================================================================ +16:44:21 Calculate Source COMM Id = 5 +16:44:21 ============================================================================ +16:44:21 + + +waiting on router queue for slot.... +16:44:28 ============================================================================ +16:44:28 Slot Id : <230> +16:44:28 Transaction Type : REQUEST +16:44:28 Received From : +16:44:28 ============================================================================ +16:44:28 FNo. Len. Field Value +16:44:28 ============================================================================ +16:44:28 [ 1] [ 4] [0800] +16:44:28 [ 7] [ 10] [0320094335] +16:44:28 [ 11] [ 6] [157295] +16:44:28 [ 70] [ 3] [301] +16:44:28 ============================================================================ +16:44:28 + + +waiting on router queue for slot.... +16:44:28 Sending to : +16:44:28 ============================================================================ +16:44:28 ============================================================================ +16:44:28 Slot Id : <230> +16:44:28 Transaction Type : RESPONSE +16:44:28 Received From : +16:44:28 ============================================================================ +16:44:28 FNo. Len. Field Value +16:44:28 ============================================================================ +16:44:28 [ 1] [ 4] [0810] +16:44:28 [ 7] [ 10] [0320094335] +16:44:28 [ 11] [ 6] [157295] +16:44:28 [ 39] [ 2] [00] +16:44:28 [ 70] [ 3] [301] +16:44:28 ============================================================================ +16:44:28 Calculate Source COMM Id = 2 +16:44:28 ============================================================================ +16:44:28 + + +waiting on router queue for slot.... +16:44:32 ============================================================================ +16:44:32 Slot Id : <183> +16:44:32 Transaction Type : REQUEST +16:44:32 Received From : +16:44:32 ============================================================================ +16:44:32 FNo. Len. Field Value +16:44:32 ============================================================================ +16:44:32 [ 1] [ 4] [0200] +16:44:32 [ 2] [ 16] [6213544001919676] +16:44:32 [ 3] [ 6] [010000] +16:44:32 [ 4] [ 12] [000002000000] +16:44:32 [ 7] [ 10] [0320165220] +16:44:32 [ 11] [ 6] [240444] +16:44:32 [ 12] [ 6] [165220] +16:44:32 [ 13] [ 4] [0320] +16:44:32 [ 14] [ 4] [4912] +16:44:32 [ 15] [ 4] [0320] +16:44:32 [ 18] [ 4] [6011] +16:44:32 [ 22] [ 3] [900] +16:44:32 [ 25] [ 2] [02] +16:44:32 [ 28] [ 9] [D00002000] +16:44:32 [ 32] [ 6] [220699] +16:44:32 [ 35] [ 32] [6213544001919676=491212011967316] +16:44:32 [ 37] [ 12] [507900360206] +16:44:32 [ 41] [ 8] [05000300] +16:44:32 [ 42] [ 15] [APTRA ] +16:44:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:44:32 [ 49] [ 3] [418] +16:44:32 [ 52] [ 16] [AAD4F37C648B8C33] +16:44:32 ============================================================================ +16:44:32 + + +waiting on router queue for slot.... +16:44:32 Sending to : +16:44:32 ============================================================================ +16:44:32 Sending to : +16:44:32 ============================================================================ +16:44:33 ============================================================================ +16:44:33 Slot Id : <183> +16:44:33 Transaction Type : REQUEST +16:44:33 Received From : +16:44:33 ============================================================================ +16:44:33 FNo. Len. Field Value +16:44:33 ============================================================================ +16:44:33 [ 1] [ 4] [0200] +16:44:33 [ 2] [ 16] [6213544001919676] +16:44:33 [ 3] [ 6] [010000] +16:44:33 [ 4] [ 12] [000002000000] +16:44:33 [ 7] [ 10] [0320165220] +16:44:33 [ 11] [ 6] [240444] +16:44:33 [ 12] [ 6] [165220] +16:44:33 [ 13] [ 4] [0320] +16:44:33 [ 14] [ 4] [4912] +16:44:33 [ 15] [ 4] [0320] +16:44:33 [ 18] [ 4] [6011] +16:44:33 [ 22] [ 3] [900] +16:44:33 [ 25] [ 2] [02] +16:44:33 [ 28] [ 9] [D00002000] +16:44:33 [ 32] [ 6] [220699] +16:44:33 [ 35] [ 32] [6213544001919676=491212011967316] +16:44:33 [ 37] [ 12] [507900360206] +16:44:33 [ 41] [ 8] [05000300] +16:44:33 [ 42] [ 15] [APTRA ] +16:44:33 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:44:33 [ 49] [ 3] [418] +16:44:33 [ 52] [ 16] [AAD4F37C648B8C33] +16:44:33 ============================================================================ +16:44:33 + + +waiting on router queue for slot.... +16:44:33 Sending to : +16:44:33 ============================================================================ +16:44:33 ============================================================================ +16:44:33 Slot Id : <183> +16:44:33 Transaction Type : REQUEST +16:44:33 Received From : +16:44:33 ============================================================================ +16:44:33 FNo. Len. Field Value +16:44:33 ============================================================================ +16:44:33 [ 1] [ 4] [0200] +16:44:33 [ 2] [ 16] [6213544001919676] +16:44:33 [ 3] [ 6] [010000] +16:44:33 [ 4] [ 12] [000002000000] +16:44:33 [ 7] [ 10] [0320165220] +16:44:33 [ 11] [ 6] [240444] +16:44:33 [ 12] [ 6] [165220] +16:44:33 [ 13] [ 4] [0320] +16:44:33 [ 14] [ 4] [4912] +16:44:33 [ 15] [ 4] [0320] +16:44:33 [ 18] [ 4] [6011] +16:44:33 [ 22] [ 3] [900] +16:44:33 [ 25] [ 2] [02] +16:44:33 [ 28] [ 9] [D00002000] +16:44:33 [ 32] [ 6] [220699] +16:44:33 [ 35] [ 32] [6213544001919676=491212011967316] +16:44:33 [ 37] [ 12] [507900360206] +16:44:33 [ 41] [ 8] [05000300] +16:44:33 [ 42] [ 15] [APTRA ] +16:44:33 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:44:33 [ 49] [ 3] [418] +16:44:33 [ 52] [ 16] [9DE1DA56A4566BC3] +16:44:33 ============================================================================ +16:44:33 + + +waiting on router queue for slot.... +16:44:33 Sending to : <0> +16:44:33 ============================================================================ +16:44:33 ============================================================================ +16:44:33 Slot Id : <183> +16:44:33 Transaction Type : RESPONSE +16:44:33 Received From : +16:44:33 ============================================================================ +16:44:33 FNo. Len. Field Value +16:44:33 ============================================================================ +16:44:33 [ 1] [ 4] [0210] +16:44:33 [ 2] [ 16] [6213544001919676] +16:44:33 [ 3] [ 6] [010000] +16:44:33 [ 4] [ 12] [000002000000] +16:44:33 [ 7] [ 10] [0320165220] +16:44:33 [ 11] [ 6] [240444] +16:44:33 [ 12] [ 6] [165220] +16:44:33 [ 13] [ 4] [0320] +16:44:33 [ 15] [ 4] [0320] +16:44:33 [ 18] [ 4] [6011] +16:44:33 [ 32] [ 6] [220699] +16:44:33 [ 35] [ 32] [6213544001919676=491212011967316] +16:44:33 [ 37] [ 12] [507900360206] +16:44:33 [ 38] [ 6] [425294] +16:44:33 [ 39] [ 2] [00] +16:44:33 [ 41] [ 8] [05000300] +16:44:33 [ 49] [ 3] [418] +16:44:33 [ 54] [ 40] [0001418C0000053317160002418C000005331716] +16:44:33 ============================================================================ +16:44:33 Sending to : +16:44:33 ============================================================================ +16:44:33 + + +waiting on router queue for slot.... +16:44:35 ============================================================================ +16:44:35 Slot Id : <183> +16:44:35 Transaction Type : RESPONSE +16:44:35 Received From : +16:44:35 ============================================================================ +16:44:35 FNo. Len. Field Value +16:44:35 ============================================================================ +16:44:35 [ 1] [ 4] [0210] +16:44:35 [ 2] [ 16] [6213544001919676] +16:44:35 [ 3] [ 6] [010000] +16:44:35 [ 4] [ 12] [000002000000] +16:44:35 [ 7] [ 10] [0320165220] +16:44:35 [ 11] [ 6] [240444] +16:44:35 [ 12] [ 6] [165220] +16:44:35 [ 13] [ 4] [0320] +16:44:35 [ 15] [ 4] [0320] +16:44:35 [ 18] [ 4] [6011] +16:44:35 [ 32] [ 6] [220699] +16:44:35 [ 35] [ 32] [6213544001919676=491212011967316] +16:44:35 [ 37] [ 12] [507900360206] +16:44:35 [ 38] [ 6] [425294] +16:44:35 [ 39] [ 2] [00] +16:44:35 [ 41] [ 8] [05000300] +16:44:35 [ 49] [ 3] [418] +16:44:35 [ 54] [ 40] [0001418C0000053317160002418C000005331716] +16:44:35 ============================================================================ +16:44:35 Calculate Source COMM Id = 1 +16:44:35 ============================================================================ +16:44:35 + + +waiting on router queue for slot.... +16:44:35 ============================================================================ +16:44:35 Slot Id : <169> +16:44:35 Transaction Type : REQUEST +16:44:35 Received From : +16:44:35 ============================================================================ +16:44:35 FNo. Len. Field Value +16:44:35 ============================================================================ +16:44:35 [ 1] [ 4] [0200] +16:44:35 [ 2] [ 16] [6688990100962206] +16:44:35 [ 3] [ 6] [011000] +16:44:35 [ 4] [ 12] [000100000000] +16:44:35 [ 7] [ 10] [0320164430] +16:44:35 [ 11] [ 6] [803859] +16:44:35 [ 12] [ 6] [164430] +16:44:35 [ 13] [ 4] [0320] +16:44:35 [ 15] [ 4] [0320] +16:44:35 [ 18] [ 4] [6011] +16:44:35 [ 22] [ 3] [900] +16:44:35 [ 25] [ 2] [02] +16:44:35 [ 28] [ 9] [D00002000] +16:44:35 [ 32] [ 6] [621354] +16:44:35 [ 35] [ 37] [6688990100962206=41121231220618500000] +16:44:35 [ 37] [ 12] [507904719803] +16:44:35 [ 41] [ 8] [18001000] +16:44:35 [ 42] [ 15] [NATIVE ] +16:44:35 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:44:35 [ 49] [ 3] [418] +16:44:35 [ 52] [ 16] [0A0818B6426E8A53] +16:44:35 ============================================================================ +16:44:35 + + +waiting on router queue for slot.... +16:44:35 Sending to : +16:44:35 ============================================================================ +16:44:35 Sending to : +16:44:35 ============================================================================ +16:44:35 ============================================================================ +16:44:35 Slot Id : <169> +16:44:35 Transaction Type : REQUEST +16:44:35 Received From : +16:44:35 ============================================================================ +16:44:35 FNo. Len. Field Value +16:44:35 ============================================================================ +16:44:35 [ 1] [ 4] [0200] +16:44:35 [ 2] [ 16] [6688990100962206] +16:44:35 [ 3] [ 6] [011000] +16:44:35 [ 4] [ 12] [000100000000] +16:44:35 [ 7] [ 10] [0320164430] +16:44:35 [ 11] [ 6] [803859] +16:44:35 [ 12] [ 6] [164430] +16:44:35 [ 13] [ 4] [0320] +16:44:35 [ 15] [ 4] [0320] +16:44:35 [ 18] [ 4] [6011] +16:44:35 [ 22] [ 3] [900] +16:44:35 [ 25] [ 2] [02] +16:44:35 [ 28] [ 9] [D00002000] +16:44:35 [ 32] [ 6] [621354] +16:44:35 [ 35] [ 37] [6688990100962206=41121231220618500000] +16:44:35 [ 37] [ 12] [507904719803] +16:44:35 [ 41] [ 8] [18001000] +16:44:35 [ 42] [ 15] [NATIVE ] +16:44:35 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:44:35 [ 49] [ 3] [418] +16:44:35 [ 52] [ 16] [0A0818B6426E8A53] +16:44:35 ============================================================================ +16:44:35 + + +waiting on router queue for slot.... +16:44:35 Sending to : +16:44:35 ============================================================================ +16:44:35 ============================================================================ +16:44:35 Slot Id : <169> +16:44:35 Transaction Type : REQUEST +16:44:35 Received From : +16:44:35 ============================================================================ +16:44:35 FNo. Len. Field Value +16:44:35 ============================================================================ +16:44:35 [ 1] [ 4] [0200] +16:44:35 [ 2] [ 16] [6688990100962206] +16:44:35 [ 3] [ 6] [011000] +16:44:35 [ 4] [ 12] [000100000000] +16:44:35 [ 7] [ 10] [0320164430] +16:44:35 [ 11] [ 6] [803859] +16:44:35 [ 12] [ 6] [164430] +16:44:35 [ 13] [ 4] [0320] +16:44:35 [ 15] [ 4] [0320] +16:44:35 [ 18] [ 4] [6011] +16:44:35 [ 22] [ 3] [900] +16:44:35 [ 25] [ 2] [02] +16:44:35 [ 28] [ 9] [D00002000] +16:44:35 [ 32] [ 6] [621354] +16:44:35 [ 35] [ 37] [6688990100962206=41121231220618500000] +16:44:35 [ 37] [ 12] [507904719803] +16:44:35 [ 41] [ 8] [18001000] +16:44:35 [ 42] [ 15] [NATIVE ] +16:44:35 [ 43] [ 40] [Khoua Unit Khoua LAO] +16:44:35 [ 49] [ 3] [418] +16:44:35 [ 52] [ 16] [BF2828E6027BB81F] +16:44:35 ============================================================================ +16:44:35 + + +waiting on router queue for slot.... +16:44:35 Sending to : <4> +16:44:35 ============================================================================ +16:44:37 ============================================================================ +16:44:37 Slot Id : <169> +16:44:37 Transaction Type : RESPONSE +16:44:37 Received From : +16:44:37 ============================================================================ +16:44:37 FNo. Len. Field Value +16:44:37 ============================================================================ +16:44:37 [ 1] [ 4] [0210] +16:44:37 [ 2] [ 16] [6688990100962206] +16:44:37 [ 3] [ 6] [011000] +16:44:37 [ 4] [ 12] [000100000000] +16:44:37 [ 11] [ 6] [803859] +16:44:37 [ 12] [ 6] [164430] +16:44:37 [ 15] [ 4] [0320] +16:44:37 [ 18] [ 4] [6011] +16:44:37 [ 32] [ 6] [621354] +16:44:37 [ 35] [ 37] [6688990100962206=41121231220618500000] +16:44:37 [ 37] [ 12] [507904719803] +16:44:37 [ 39] [ 2] [51] +16:44:37 [ 41] [ 8] [18001000] +16:44:37 [ 49] [ 3] [418] +16:44:37 [ 54] [ 0] [] +16:44:37 ============================================================================ +16:44:37 Sending to : +16:44:37 ============================================================================ +16:44:37 + + +waiting on router queue for slot.... +16:44:38 ============================================================================ +16:44:38 Slot Id : <169> +16:44:38 Transaction Type : RESPONSE +16:44:38 Received From : +16:44:38 ============================================================================ +16:44:38 FNo. Len. Field Value +16:44:38 ============================================================================ +16:44:38 [ 1] [ 4] [0210] +16:44:38 [ 2] [ 16] [6688990100962206] +16:44:38 [ 3] [ 6] [011000] +16:44:38 [ 4] [ 12] [000100000000] +16:44:38 [ 11] [ 6] [803859] +16:44:38 [ 12] [ 6] [164430] +16:44:38 [ 15] [ 4] [0320] +16:44:38 [ 18] [ 4] [6011] +16:44:38 [ 32] [ 6] [621354] +16:44:38 [ 35] [ 37] [6688990100962206=41121231220618500000] +16:44:38 [ 37] [ 12] [507904719803] +16:44:38 [ 39] [ 2] [51] +16:44:38 [ 41] [ 8] [18001000] +16:44:38 [ 49] [ 3] [418] +16:44:38 [ 54] [ 0] [] +16:44:38 ============================================================================ +16:44:38 Calculate Source COMM Id = 0 +16:44:38 ============================================================================ +16:44:38 + + +waiting on router queue for slot.... +16:44:44 ============================================================================ +16:44:44 Slot Id : <205> +16:44:44 Transaction Type : REQUEST +16:44:44 Received From : +16:44:44 ============================================================================ +16:44:44 FNo. Len. Field Value +16:44:44 ============================================================================ +16:44:44 [ 1] [ 4] [0800] +16:44:44 [ 7] [ 10] [0320094351] +16:44:44 [ 11] [ 6] [157296] +16:44:44 [ 70] [ 3] [301] +16:44:44 ============================================================================ +16:44:44 + + +waiting on router queue for slot.... +16:44:44 Sending to : +16:44:44 ============================================================================ +16:44:44 ============================================================================ +16:44:44 Slot Id : <205> +16:44:44 Transaction Type : RESPONSE +16:44:44 Received From : +16:44:44 ============================================================================ +16:44:44 FNo. Len. Field Value +16:44:44 ============================================================================ +16:44:44 [ 1] [ 4] [0810] +16:44:44 [ 7] [ 10] [0320094351] +16:44:44 [ 11] [ 6] [157296] +16:44:44 [ 39] [ 2] [00] +16:44:44 [ 70] [ 3] [301] +16:44:44 ============================================================================ +16:44:44 Calculate Source COMM Id = 2 +16:44:44 ============================================================================ +16:44:44 + + +waiting on router queue for slot.... +16:44:55 ============================================================================ +16:44:55 Slot Id : <208> +16:44:55 Transaction Type : REQUEST +16:44:55 Received From : +16:44:55 ============================================================================ +16:44:55 FNo. Len. Field Value +16:44:55 ============================================================================ +16:44:55 [ 1] [ 4] [0800] +16:44:55 [ 7] [ 10] [0320095242] +16:44:55 [ 11] [ 6] [057232] +16:44:55 [ 37] [ 12] [57916057232] +16:44:55 [ 70] [ 3] [301] +16:44:55 ============================================================================ +16:44:55 + + +waiting on router queue for slot.... +16:44:55 Sending to : +16:44:55 ============================================================================ +16:44:55 ============================================================================ +16:44:55 Slot Id : <208> +16:44:55 Transaction Type : RESPONSE +16:44:55 Received From : +16:44:55 ============================================================================ +16:44:55 FNo. Len. Field Value +16:44:55 ============================================================================ +16:44:55 [ 1] [ 4] [0810] +16:44:55 [ 7] [ 10] [0320095242] +16:44:55 [ 11] [ 6] [057232] +16:44:55 [ 37] [ 12] [579160572320] +16:44:55 [ 39] [ 2] [00] +16:44:55 [ 70] [ 3] [810] +16:44:55 ============================================================================ +16:44:55 Calculate Source COMM Id = 1 +16:44:55 ============================================================================ +16:44:55 + + +waiting on router queue for slot.... +16:44:57 ============================================================================ +16:44:57 Slot Id : <211> +16:44:57 Transaction Type : REQUEST +16:44:57 Received From : +16:44:57 ============================================================================ +16:44:57 FNo. Len. Field Value +16:44:57 ============================================================================ +16:44:57 [ 1] [ 4] [0800] +16:44:57 [ 7] [ 10] [0320094403] +16:44:57 [ 11] [ 6] [157297] +16:44:57 [ 70] [ 3] [301] +16:44:57 ============================================================================ +16:44:57 + + +waiting on router queue for slot.... +16:44:57 Sending to : +16:44:57 ============================================================================ +16:44:57 ============================================================================ +16:44:57 Slot Id : <211> +16:44:57 Transaction Type : RESPONSE +16:44:57 Received From : +16:44:57 ============================================================================ +16:44:57 FNo. Len. Field Value +16:44:57 ============================================================================ +16:44:57 [ 1] [ 4] [0810] +16:44:57 [ 7] [ 10] [0320094403] +16:44:57 [ 11] [ 6] [157297] +16:44:57 [ 39] [ 2] [00] +16:44:57 [ 70] [ 3] [301] +16:44:57 ============================================================================ +16:44:57 Calculate Source COMM Id = 2 +16:44:57 ============================================================================ +16:44:57 + + +waiting on router queue for slot.... +16:45:03 ============================================================================ +16:45:03 Slot Id : <185> +16:45:03 Transaction Type : REQUEST +16:45:03 Received From : +16:45:03 ============================================================================ +16:45:03 FNo. Len. Field Value +16:45:03 ============================================================================ +16:45:03 [ 1] [ 4] [0800] +16:45:03 [ 2] [ 5] [02531] +16:45:03 [ 3] [ 6] [579168] +16:45:03 [ 7] [ 10] [0320094503] +16:45:03 [ 11] [ 6] [807384] +16:45:03 [ 15] [ 10] [0320094503] +16:45:03 [ 37] [ 11] [57916807384] +16:45:03 [ 70] [ 3] [001] +16:45:03 ============================================================================ +16:45:03 + + +waiting on router queue for slot.... +16:45:03 ============================================================================ +16:45:03 Slot Id : <185> +16:45:03 Transaction Type : RESPONSE +16:45:03 Received From : +16:45:03 ============================================================================ +16:45:03 FNo. Len. Field Value +16:45:03 ============================================================================ +16:45:03 [ 1] [ 4] [0810] +16:45:03 [ 7] [ 10] [0320094503] +16:45:03 [ 11] [ 6] [807384] +16:45:03 [ 15] [ 4] [0320] +16:45:03 [ 37] [ 12] [57916807384] +16:45:03 [ 39] [ 2] [00] +16:45:03 [ 70] [ 3] [001] +16:45:03 ============================================================================ +16:45:03 Sending to : +16:45:03 ============================================================================ +16:45:03 + + +waiting on router queue for slot.... +16:45:07 ============================================================================ +16:45:07 Slot Id : <232> +16:45:07 Transaction Type : REQUEST +16:45:07 Received From : +16:45:07 ============================================================================ +16:45:07 FNo. Len. Field Value +16:45:07 ============================================================================ +16:45:07 [ 1] [ 4] [0200] +16:45:07 [ 2] [ 16] [6213544002226436] +16:45:07 [ 3] [ 6] [010000] +16:45:07 [ 4] [ 12] [000045000000] +16:45:07 [ 7] [ 10] [0320164257] +16:45:07 [ 11] [ 6] [952255] +16:45:07 [ 12] [ 6] [164257] +16:45:07 [ 13] [ 4] [0320] +16:45:07 [ 15] [ 4] [0320] +16:45:07 [ 18] [ 4] [6011] +16:45:07 [ 19] [ 3] [418] +16:45:07 [ 22] [ 3] [021] +16:45:07 [ 25] [ 2] [01] +16:45:07 [ 28] [ 9] [D00002000] +16:45:07 [ 32] [ 6] [668899] +16:45:07 [ 35] [ 32] [6213544002226436=491212012643161] +16:45:07 [ 37] [ 12] [507902025619] +16:45:07 [ 41] [ 8] [03414002] +16:45:07 [ 42] [ 15] [APT ] +16:45:07 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:45:07 [ 49] [ 3] [418] +16:45:07 [ 52] [ 16] [9BF4F62A03204E2D] +16:45:07 ============================================================================ +16:45:07 + + +waiting on router queue for slot.... +16:45:07 Sending to : +16:45:07 ============================================================================ +16:45:07 Sending to : +16:45:07 ============================================================================ +16:45:07 ============================================================================ +16:45:07 Slot Id : <232> +16:45:07 Transaction Type : REQUEST +16:45:07 Received From : +16:45:07 ============================================================================ +16:45:07 FNo. Len. Field Value +16:45:07 ============================================================================ +16:45:07 [ 1] [ 4] [0200] +16:45:07 [ 2] [ 16] [6213544002226436] +16:45:07 [ 3] [ 6] [010000] +16:45:07 [ 4] [ 12] [000045000000] +16:45:07 [ 7] [ 10] [0320164257] +16:45:07 [ 11] [ 6] [952255] +16:45:07 [ 12] [ 6] [164257] +16:45:07 [ 13] [ 4] [0320] +16:45:07 [ 15] [ 4] [0320] +16:45:07 [ 18] [ 4] [6011] +16:45:07 [ 19] [ 3] [418] +16:45:07 [ 22] [ 3] [021] +16:45:07 [ 25] [ 2] [01] +16:45:07 [ 28] [ 9] [D00002000] +16:45:07 [ 32] [ 6] [668899] +16:45:07 [ 35] [ 32] [6213544002226436=491212012643161] +16:45:07 [ 37] [ 12] [507902025619] +16:45:07 [ 41] [ 8] [03414002] +16:45:07 [ 42] [ 15] [APT ] +16:45:07 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:45:07 [ 49] [ 3] [418] +16:45:07 [ 52] [ 16] [9BF4F62A03204E2D] +16:45:07 ============================================================================ +16:45:07 + + +waiting on router queue for slot.... +16:45:07 Sending to : +16:45:07 ============================================================================ +16:45:07 ============================================================================ +16:45:07 Slot Id : <232> +16:45:07 Transaction Type : REQUEST +16:45:07 Received From : +16:45:07 ============================================================================ +16:45:07 FNo. Len. Field Value +16:45:07 ============================================================================ +16:45:07 [ 1] [ 4] [0200] +16:45:07 [ 2] [ 16] [6213544002226436] +16:45:07 [ 3] [ 6] [010000] +16:45:07 [ 4] [ 12] [000045000000] +16:45:07 [ 7] [ 10] [0320164257] +16:45:07 [ 11] [ 6] [952255] +16:45:07 [ 12] [ 6] [164257] +16:45:07 [ 13] [ 4] [0320] +16:45:07 [ 15] [ 4] [0320] +16:45:07 [ 18] [ 4] [6011] +16:45:07 [ 19] [ 3] [418] +16:45:07 [ 22] [ 3] [021] +16:45:07 [ 25] [ 2] [01] +16:45:07 [ 28] [ 9] [D00002000] +16:45:07 [ 32] [ 6] [668899] +16:45:07 [ 35] [ 32] [6213544002226436=491212012643161] +16:45:07 [ 37] [ 12] [507902025619] +16:45:07 [ 41] [ 8] [03414002] +16:45:07 [ 42] [ 15] [APT ] +16:45:07 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:45:07 [ 49] [ 3] [418] +16:45:07 [ 52] [ 16] [6585030877D923D9] +16:45:07 ============================================================================ +16:45:07 + + +waiting on router queue for slot.... +16:45:07 Sending to : <0> +16:45:07 ============================================================================ +16:45:08 ============================================================================ +16:45:08 Slot Id : <149> +16:45:08 Transaction Type : REQUEST +16:45:08 Received From : +16:45:08 ============================================================================ +16:45:08 FNo. Len. Field Value +16:45:08 ============================================================================ +16:45:08 [ 1] [ 4] [0800] +16:45:08 [ 7] [ 10] [0320094414] +16:45:08 [ 11] [ 6] [157298] +16:45:08 [ 70] [ 3] [301] +16:45:08 ============================================================================ +16:45:08 + + +waiting on router queue for slot.... +16:45:08 Sending to : +16:45:08 ============================================================================ +16:45:08 ============================================================================ +16:45:08 Slot Id : <149> +16:45:08 Transaction Type : RESPONSE +16:45:08 Received From : +16:45:08 ============================================================================ +16:45:08 FNo. Len. Field Value +16:45:08 ============================================================================ +16:45:08 [ 1] [ 4] [0810] +16:45:08 [ 7] [ 10] [0320094414] +16:45:08 [ 11] [ 6] [157298] +16:45:08 [ 39] [ 2] [00] +16:45:08 [ 70] [ 3] [301] +16:45:08 ============================================================================ +16:45:08 Calculate Source COMM Id = 2 +16:45:08 ============================================================================ +16:45:08 + + +waiting on router queue for slot.... +16:45:08 ============================================================================ +16:45:08 Slot Id : <232> +16:45:08 Transaction Type : RESPONSE +16:45:08 Received From : +16:45:08 ============================================================================ +16:45:08 FNo. Len. Field Value +16:45:08 ============================================================================ +16:45:08 [ 1] [ 4] [0210] +16:45:08 [ 2] [ 16] [6213544002226436] +16:45:08 [ 3] [ 6] [010000] +16:45:08 [ 4] [ 12] [000045000000] +16:45:08 [ 7] [ 10] [0320164257] +16:45:08 [ 11] [ 6] [952255] +16:45:08 [ 12] [ 6] [164257] +16:45:08 [ 13] [ 4] [0320] +16:45:08 [ 15] [ 4] [0320] +16:45:08 [ 18] [ 4] [6011] +16:45:08 [ 19] [ 3] [418] +16:45:08 [ 32] [ 6] [668899] +16:45:08 [ 35] [ 32] [6213544002226436=491212012643161] +16:45:08 [ 37] [ 12] [507902025619] +16:45:08 [ 38] [ 6] [917922] +16:45:08 [ 39] [ 2] [00] +16:45:08 [ 41] [ 8] [03414002] +16:45:08 [ 49] [ 3] [418] +16:45:08 [ 54] [ 40] [0001418C0000066205270002418C000006620527] +16:45:08 ============================================================================ +16:45:08 Sending to : +16:45:08 ============================================================================ +16:45:08 + + +waiting on router queue for slot.... +16:45:09 ============================================================================ +16:45:09 Slot Id : <232> +16:45:09 Transaction Type : RESPONSE +16:45:09 Received From : +16:45:09 ============================================================================ +16:45:09 FNo. Len. Field Value +16:45:09 ============================================================================ +16:45:09 [ 1] [ 4] [0210] +16:45:09 [ 2] [ 16] [6213544002226436] +16:45:09 [ 3] [ 6] [010000] +16:45:09 [ 4] [ 12] [000045000000] +16:45:09 [ 7] [ 10] [0320164257] +16:45:09 [ 11] [ 6] [952255] +16:45:09 [ 12] [ 6] [164257] +16:45:09 [ 13] [ 4] [0320] +16:45:09 [ 15] [ 4] [0320] +16:45:09 [ 18] [ 4] [6011] +16:45:09 [ 19] [ 3] [418] +16:45:09 [ 32] [ 6] [668899] +16:45:09 [ 35] [ 32] [6213544002226436=491212012643161] +16:45:09 [ 37] [ 12] [507902025619] +16:45:09 [ 38] [ 6] [917922] +16:45:09 [ 39] [ 2] [00] +16:45:09 [ 41] [ 8] [03414002] +16:45:09 [ 49] [ 3] [418] +16:45:09 [ 54] [ 40] [0001418C0000066205270002418C000006620527] +16:45:09 ============================================================================ +16:45:09 Calculate Source COMM Id = 4 +16:45:09 ============================================================================ +16:45:09 + + +waiting on router queue for slot.... +16:45:12 ============================================================================ +16:45:12 Slot Id : <189> +16:45:12 Transaction Type : REQUEST +16:45:12 Received From : +16:45:12 ============================================================================ +16:45:12 FNo. Len. Field Value +16:45:12 ============================================================================ +16:45:12 [ 1] [ 4] [0200] +16:45:12 [ 2] [ 16] [6213544001531265] +16:45:12 [ 3] [ 6] [010000] +16:45:12 [ 4] [ 12] [000010000000] +16:45:12 [ 7] [ 10] [0320094417] +16:45:12 [ 11] [ 6] [270592] +16:45:12 [ 12] [ 6] [164417] +16:45:12 [ 13] [ 4] [0320] +16:45:12 [ 14] [ 4] [4912] +16:45:12 [ 15] [ 4] [0320] +16:45:12 [ 18] [ 4] [6011] +16:45:12 [ 19] [ 3] [418] +16:45:12 [ 22] [ 3] [021] +16:45:12 [ 25] [ 2] [01] +16:45:12 [ 28] [ 9] [D00002000] +16:45:12 [ 32] [ 6] [180893] +16:45:12 [ 35] [ 32] [6213544001531265=491212013126722] +16:45:12 [ 37] [ 12] [507909270592] +16:45:12 [ 41] [ 8] [0344SVKV] +16:45:12 [ 42] [ 15] [999999 ] +16:45:12 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:45:12 [ 49] [ 3] [418] +16:45:12 [ 52] [ 16] [BD458847B3A48F87] +16:45:12 ============================================================================ +16:45:12 + + +waiting on router queue for slot.... +16:45:12 Sending to : +16:45:12 ============================================================================ +16:45:12 Sending to : +16:45:12 ============================================================================ +16:45:12 ============================================================================ +16:45:12 Slot Id : <189> +16:45:12 Transaction Type : REQUEST +16:45:12 Received From : +16:45:12 ============================================================================ +16:45:12 FNo. Len. Field Value +16:45:12 ============================================================================ +16:45:12 [ 1] [ 4] [0200] +16:45:12 [ 2] [ 16] [6213544001531265] +16:45:12 [ 3] [ 6] [010000] +16:45:12 [ 4] [ 12] [000010000000] +16:45:12 [ 7] [ 10] [0320094417] +16:45:12 [ 11] [ 6] [270592] +16:45:12 [ 12] [ 6] [164417] +16:45:12 [ 13] [ 4] [0320] +16:45:12 [ 14] [ 4] [4912] +16:45:12 [ 15] [ 4] [0320] +16:45:12 [ 18] [ 4] [6011] +16:45:12 [ 19] [ 3] [418] +16:45:12 [ 22] [ 3] [021] +16:45:12 [ 25] [ 2] [01] +16:45:12 [ 28] [ 9] [D00002000] +16:45:12 [ 32] [ 6] [180893] +16:45:12 [ 35] [ 32] [6213544001531265=491212013126722] +16:45:12 [ 37] [ 12] [507909270592] +16:45:12 [ 41] [ 8] [0344SVKV] +16:45:12 [ 42] [ 15] [999999 ] +16:45:12 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:45:12 [ 49] [ 3] [418] +16:45:12 [ 52] [ 16] [BD458847B3A48F87] +16:45:12 ============================================================================ +16:45:12 + + +waiting on router queue for slot.... +16:45:12 Sending to : +16:45:12 ============================================================================ +16:45:12 ============================================================================ +16:45:12 Slot Id : <189> +16:45:12 Transaction Type : REQUEST +16:45:12 Received From : +16:45:12 ============================================================================ +16:45:12 FNo. Len. Field Value +16:45:12 ============================================================================ +16:45:12 [ 1] [ 4] [0200] +16:45:12 [ 2] [ 16] [6213544001531265] +16:45:12 [ 3] [ 6] [010000] +16:45:12 [ 4] [ 12] [000010000000] +16:45:12 [ 7] [ 10] [0320094417] +16:45:12 [ 11] [ 6] [270592] +16:45:12 [ 12] [ 6] [164417] +16:45:12 [ 13] [ 4] [0320] +16:45:12 [ 14] [ 4] [4912] +16:45:12 [ 15] [ 4] [0320] +16:45:12 [ 18] [ 4] [6011] +16:45:12 [ 19] [ 3] [418] +16:45:12 [ 22] [ 3] [021] +16:45:12 [ 25] [ 2] [01] +16:45:12 [ 28] [ 9] [D00002000] +16:45:12 [ 32] [ 6] [180893] +16:45:12 [ 35] [ 32] [6213544001531265=491212013126722] +16:45:12 [ 37] [ 12] [507909270592] +16:45:12 [ 41] [ 8] [0344SVKV] +16:45:12 [ 42] [ 15] [999999 ] +16:45:12 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +16:45:12 [ 49] [ 3] [418] +16:45:12 [ 52] [ 16] [CC8098A5D05717A3] +16:45:12 ============================================================================ +16:45:12 + + +waiting on router queue for slot.... +16:45:12 Sending to : <0> +16:45:12 ============================================================================ +16:45:12 ============================================================================ +16:45:12 Slot Id : <168> +16:45:12 Transaction Type : REQUEST +16:45:12 Received From : +16:45:12 ============================================================================ +16:45:12 FNo. Len. Field Value +16:45:12 ============================================================================ +16:45:12 [ 1] [ 4] [0200] +16:45:12 [ 2] [ 16] [6213545000325492] +16:45:12 [ 3] [ 6] [012000] +16:45:12 [ 4] [ 12] [000018000000] +16:45:12 [ 7] [ 10] [0320094419] +16:45:12 [ 11] [ 6] [270593] +16:45:12 [ 12] [ 6] [164419] +16:45:12 [ 13] [ 4] [0320] +16:45:12 [ 14] [ 4] [4912] +16:45:12 [ 15] [ 4] [0320] +16:45:12 [ 18] [ 4] [6011] +16:45:12 [ 19] [ 3] [418] +16:45:12 [ 22] [ 3] [021] +16:45:12 [ 25] [ 2] [01] +16:45:12 [ 28] [ 9] [D00002000] +16:45:12 [ 32] [ 6] [180893] +16:45:12 [ 35] [ 32] [6213545000325492=491212012549209] +16:45:12 [ 37] [ 12] [507909270593] +16:45:12 [ 41] [ 8] [0401XSBR] +16:45:12 [ 42] [ 15] [999999 ] +16:45:12 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:45:12 [ 49] [ 3] [418] +16:45:12 [ 52] [ 16] [95848908257AF43B] +16:45:12 ============================================================================ +16:45:12 + + +waiting on router queue for slot.... +16:45:12 Sending to : +16:45:12 ============================================================================ +16:45:12 Sending to : +16:45:12 ============================================================================ +16:45:13 ============================================================================ +16:45:13 Slot Id : <168> +16:45:13 Transaction Type : REQUEST +16:45:13 Received From : +16:45:13 ============================================================================ +16:45:13 FNo. Len. Field Value +16:45:13 ============================================================================ +16:45:13 [ 1] [ 4] [0200] +16:45:13 [ 2] [ 16] [6213545000325492] +16:45:13 [ 3] [ 6] [012000] +16:45:13 [ 4] [ 12] [000018000000] +16:45:13 [ 7] [ 10] [0320094419] +16:45:13 [ 11] [ 6] [270593] +16:45:13 [ 12] [ 6] [164419] +16:45:13 [ 13] [ 4] [0320] +16:45:13 [ 14] [ 4] [4912] +16:45:13 [ 15] [ 4] [0320] +16:45:13 [ 18] [ 4] [6011] +16:45:13 [ 19] [ 3] [418] +16:45:13 [ 22] [ 3] [021] +16:45:13 [ 25] [ 2] [01] +16:45:13 [ 28] [ 9] [D00002000] +16:45:13 [ 32] [ 6] [180893] +16:45:13 [ 35] [ 32] [6213545000325492=491212012549209] +16:45:13 [ 37] [ 12] [507909270593] +16:45:13 [ 41] [ 8] [0401XSBR] +16:45:13 [ 42] [ 15] [999999 ] +16:45:13 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:45:13 [ 49] [ 3] [418] +16:45:13 [ 52] [ 16] [95848908257AF43B] +16:45:13 ============================================================================ +16:45:13 + + +waiting on router queue for slot.... +16:45:13 Sending to : +16:45:13 ============================================================================ +16:45:13 ============================================================================ +16:45:13 Slot Id : <168> +16:45:13 Transaction Type : REQUEST +16:45:13 Received From : +16:45:13 ============================================================================ +16:45:13 FNo. Len. Field Value +16:45:13 ============================================================================ +16:45:13 [ 1] [ 4] [0200] +16:45:13 [ 2] [ 16] [6213545000325492] +16:45:13 [ 3] [ 6] [012000] +16:45:13 [ 4] [ 12] [000018000000] +16:45:13 [ 7] [ 10] [0320094419] +16:45:13 [ 11] [ 6] [270593] +16:45:13 [ 12] [ 6] [164419] +16:45:13 [ 13] [ 4] [0320] +16:45:13 [ 14] [ 4] [4912] +16:45:13 [ 15] [ 4] [0320] +16:45:13 [ 18] [ 4] [6011] +16:45:13 [ 19] [ 3] [418] +16:45:13 [ 22] [ 3] [021] +16:45:13 [ 25] [ 2] [01] +16:45:13 [ 28] [ 9] [D00002000] +16:45:13 [ 32] [ 6] [180893] +16:45:13 [ 35] [ 32] [6213545000325492=491212012549209] +16:45:13 [ 37] [ 12] [507909270593] +16:45:13 [ 41] [ 8] [0401XSBR] +16:45:13 [ 42] [ 15] [999999 ] +16:45:13 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:45:13 [ 49] [ 3] [418] +16:45:13 [ 52] [ 16] [508AFBE2CC995018] +16:45:13 ============================================================================ +16:45:13 + + +waiting on router queue for slot.... +16:45:13 Sending to : <0> +16:45:13 ============================================================================ +16:45:13 ============================================================================ +16:45:13 Slot Id : <189> +16:45:13 Transaction Type : RESPONSE +16:45:13 Received From : +16:45:13 ============================================================================ +16:45:13 FNo. Len. Field Value +16:45:13 ============================================================================ +16:45:13 [ 1] [ 4] [0210] +16:45:13 [ 2] [ 16] [6213544001531265] +16:45:13 [ 3] [ 6] [010000] +16:45:13 [ 4] [ 12] [000010000000] +16:45:13 [ 7] [ 10] [0320094417] +16:45:13 [ 11] [ 6] [270592] +16:45:13 [ 12] [ 6] [164417] +16:45:13 [ 13] [ 4] [0320] +16:45:13 [ 15] [ 4] [0320] +16:45:13 [ 18] [ 4] [6011] +16:45:13 [ 19] [ 3] [418] +16:45:13 [ 32] [ 6] [180893] +16:45:13 [ 35] [ 32] [6213544001531265=491212013126722] +16:45:13 [ 37] [ 12] [507909270592] +16:45:13 [ 38] [ 6] [684360] +16:45:13 [ 39] [ 2] [00] +16:45:13 [ 41] [ 8] [0344SVKV] +16:45:13 [ 49] [ 3] [418] +16:45:13 [ 54] [ 40] [0001418C0000110268710002418C000011026871] +16:45:13 ============================================================================ +16:45:13 Sending to : +16:45:13 ============================================================================ +16:45:13 + + +waiting on router queue for slot.... +16:45:13 ============================================================================ +16:45:13 Slot Id : <168> +16:45:13 Transaction Type : RESPONSE +16:45:13 Received From : +16:45:13 ============================================================================ +16:45:13 FNo. Len. Field Value +16:45:13 ============================================================================ +16:45:13 [ 1] [ 4] [0210] +16:45:13 [ 2] [ 16] [6213545000325492] +16:45:13 [ 3] [ 6] [012000] +16:45:13 [ 4] [ 12] [000018000000] +16:45:13 [ 7] [ 10] [0320094419] +16:45:13 [ 11] [ 6] [270593] +16:45:13 [ 12] [ 6] [164419] +16:45:13 [ 13] [ 4] [0320] +16:45:13 [ 15] [ 4] [0320] +16:45:13 [ 18] [ 4] [6011] +16:45:13 [ 19] [ 3] [418] +16:45:13 [ 32] [ 6] [180893] +16:45:13 [ 35] [ 32] [6213545000325492=491212012549209] +16:45:13 [ 37] [ 12] [507909270593] +16:45:13 [ 38] [ 6] [124791] +16:45:13 [ 39] [ 2] [00] +16:45:13 [ 41] [ 8] [0401XSBR] +16:45:13 [ 49] [ 3] [418] +16:45:13 [ 54] [ 40] [2001418C0003713986502002418C000371398650] +16:45:13 ============================================================================ +16:45:13 Sending to : +16:45:13 ============================================================================ +16:45:13 + + +waiting on router queue for slot.... +16:45:14 ============================================================================ +16:45:14 Slot Id : <189> +16:45:14 Transaction Type : RESPONSE +16:45:14 Received From : +16:45:14 ============================================================================ +16:45:14 FNo. Len. Field Value +16:45:14 ============================================================================ +16:45:14 [ 1] [ 4] [0210] +16:45:14 [ 2] [ 16] [6213544001531265] +16:45:14 [ 3] [ 6] [010000] +16:45:14 [ 4] [ 12] [000010000000] +16:45:14 [ 7] [ 10] [0320094417] +16:45:14 [ 11] [ 6] [270592] +16:45:14 [ 12] [ 6] [164417] +16:45:14 [ 13] [ 4] [0320] +16:45:14 [ 15] [ 4] [0320] +16:45:14 [ 18] [ 4] [6011] +16:45:14 [ 19] [ 3] [418] +16:45:14 [ 32] [ 6] [180893] +16:45:14 [ 35] [ 32] [6213544001531265=491212013126722] +16:45:14 [ 37] [ 12] [507909270592] +16:45:14 [ 38] [ 6] [684360] +16:45:14 [ 39] [ 2] [00] +16:45:14 [ 41] [ 8] [0344SVKV] +16:45:14 [ 49] [ 3] [418] +16:45:14 [ 54] [ 40] [0001418C0000110268710002418C000011026871] +16:45:14 ============================================================================ +16:45:14 Calculate Source COMM Id = 2 +16:45:14 ============================================================================ +16:45:14 + + +waiting on router queue for slot.... +16:45:15 ============================================================================ +16:45:15 Slot Id : <222> +16:45:15 Transaction Type : REQUEST +16:45:15 Received From : +16:45:15 ============================================================================ +16:45:15 FNo. Len. Field Value +16:45:15 ============================================================================ +16:45:15 [ 1] [ 4] [0800] +16:45:15 [ 7] [ 10] [0320235703] +16:45:15 [ 11] [ 6] [165703] +16:45:15 [ 37] [ 12] [57916165703] +16:45:15 [ 70] [ 3] [301] +16:45:15 ============================================================================ +16:45:15 + + +waiting on router queue for slot.... +16:45:15 Sending to : +16:45:15 ============================================================================ +16:45:15 ============================================================================ +16:45:15 Slot Id : <222> +16:45:15 Transaction Type : RESPONSE +16:45:15 Received From : +16:45:15 ============================================================================ +16:45:15 FNo. Len. Field Value +16:45:15 ============================================================================ +16:45:15 [ 1] [ 4] [0810] +16:45:15 [ 7] [ 10] [0320235703] +16:45:15 [ 11] [ 6] [165703] +16:45:15 [ 37] [ 12] [579161657030] +16:45:15 [ 39] [ 2] [00] +16:45:15 [ 70] [ 3] [810] +16:45:15 ============================================================================ +16:45:15 Calculate Source COMM Id = 6 +16:45:15 ============================================================================ +16:45:15 + + +waiting on router queue for slot.... +16:45:16 ============================================================================ +16:45:16 Slot Id : <168> +16:45:16 Transaction Type : RESPONSE +16:45:16 Received From : +16:45:16 ============================================================================ +16:45:16 FNo. Len. Field Value +16:45:16 ============================================================================ +16:45:16 [ 1] [ 4] [0210] +16:45:16 [ 2] [ 16] [6213545000325492] +16:45:16 [ 3] [ 6] [012000] +16:45:16 [ 4] [ 12] [000018000000] +16:45:16 [ 7] [ 10] [0320094419] +16:45:16 [ 11] [ 6] [270593] +16:45:16 [ 12] [ 6] [164419] +16:45:16 [ 13] [ 4] [0320] +16:45:16 [ 15] [ 4] [0320] +16:45:16 [ 18] [ 4] [6011] +16:45:16 [ 19] [ 3] [418] +16:45:16 [ 32] [ 6] [180893] +16:45:16 [ 35] [ 32] [6213545000325492=491212012549209] +16:45:16 [ 37] [ 12] [507909270593] +16:45:16 [ 38] [ 6] [124791] +16:45:16 [ 39] [ 2] [00] +16:45:16 [ 41] [ 8] [0401XSBR] +16:45:16 [ 49] [ 3] [418] +16:45:16 [ 54] [ 40] [2001418C0003713986502002418C000371398650] +16:45:16 ============================================================================ +16:45:16 Calculate Source COMM Id = 2 +16:45:16 ============================================================================ +16:45:16 + + +waiting on router queue for slot.... +16:45:18 ============================================================================ +16:45:18 Slot Id : <180> +16:45:18 Transaction Type : REQUEST +16:45:18 Received From : +16:45:18 ============================================================================ +16:45:18 FNo. Len. Field Value +16:45:18 ============================================================================ +16:45:18 [ 1] [ 4] [0200] +16:45:18 [ 2] [ 16] [6688990103640601] +16:45:18 [ 3] [ 6] [010000] +16:45:18 [ 4] [ 12] [000100000000] +16:45:18 [ 7] [ 10] [0320164513] +16:45:18 [ 11] [ 6] [804088] +16:45:18 [ 12] [ 6] [164513] +16:45:18 [ 13] [ 4] [0320] +16:45:18 [ 15] [ 4] [0320] +16:45:18 [ 18] [ 4] [6011] +16:45:18 [ 22] [ 3] [900] +16:45:18 [ 25] [ 2] [02] +16:45:18 [ 28] [ 9] [D00002000] +16:45:18 [ 32] [ 6] [621354] +16:45:18 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:45:18 [ 37] [ 12] [507903499622] +16:45:18 [ 41] [ 8] [06002200] +16:45:18 [ 42] [ 15] [NATIVE ] +16:45:18 [ 43] [ 40] [Beng Market Beng LAO] +16:45:18 [ 49] [ 3] [418] +16:45:18 [ 52] [ 16] [89C4B68DA1F90685] +16:45:18 ============================================================================ +16:45:18 + + +waiting on router queue for slot.... +16:45:18 Sending to : +16:45:18 ============================================================================ +16:45:18 Sending to : +16:45:18 ============================================================================ +16:45:19 ============================================================================ +16:45:19 Slot Id : <180> +16:45:19 Transaction Type : REQUEST +16:45:19 Received From : +16:45:19 ============================================================================ +16:45:19 FNo. Len. Field Value +16:45:19 ============================================================================ +16:45:19 [ 1] [ 4] [0200] +16:45:19 [ 2] [ 16] [6688990103640601] +16:45:19 [ 3] [ 6] [010000] +16:45:19 [ 4] [ 12] [000100000000] +16:45:19 [ 7] [ 10] [0320164513] +16:45:19 [ 11] [ 6] [804088] +16:45:19 [ 12] [ 6] [164513] +16:45:19 [ 13] [ 4] [0320] +16:45:19 [ 15] [ 4] [0320] +16:45:19 [ 18] [ 4] [6011] +16:45:19 [ 22] [ 3] [900] +16:45:19 [ 25] [ 2] [02] +16:45:19 [ 28] [ 9] [D00002000] +16:45:19 [ 32] [ 6] [621354] +16:45:19 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:45:19 [ 37] [ 12] [507903499622] +16:45:19 [ 41] [ 8] [06002200] +16:45:19 [ 42] [ 15] [NATIVE ] +16:45:19 [ 43] [ 40] [Beng Market Beng LAO] +16:45:19 [ 49] [ 3] [418] +16:45:19 [ 52] [ 16] [89C4B68DA1F90685] +16:45:19 ============================================================================ +16:45:19 + + +waiting on router queue for slot.... +16:45:19 Sending to : +16:45:19 ============================================================================ +16:45:19 ============================================================================ +16:45:19 Slot Id : <180> +16:45:19 Transaction Type : REQUEST +16:45:19 Received From : +16:45:19 ============================================================================ +16:45:19 FNo. Len. Field Value +16:45:19 ============================================================================ +16:45:19 [ 1] [ 4] [0200] +16:45:19 [ 2] [ 16] [6688990103640601] +16:45:19 [ 3] [ 6] [010000] +16:45:19 [ 4] [ 12] [000100000000] +16:45:19 [ 7] [ 10] [0320164513] +16:45:19 [ 11] [ 6] [804088] +16:45:19 [ 12] [ 6] [164513] +16:45:19 [ 13] [ 4] [0320] +16:45:19 [ 15] [ 4] [0320] +16:45:19 [ 18] [ 4] [6011] +16:45:19 [ 22] [ 3] [900] +16:45:19 [ 25] [ 2] [02] +16:45:19 [ 28] [ 9] [D00002000] +16:45:19 [ 32] [ 6] [621354] +16:45:19 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:45:19 [ 37] [ 12] [507903499622] +16:45:19 [ 41] [ 8] [06002200] +16:45:19 [ 42] [ 15] [NATIVE ] +16:45:19 [ 43] [ 40] [Beng Market Beng LAO] +16:45:19 [ 49] [ 3] [418] +16:45:19 [ 52] [ 16] [19321739A518059D] +16:45:19 ============================================================================ +16:45:19 + + +waiting on router queue for slot.... +16:45:19 Sending to : <4> +16:45:19 ============================================================================ +16:45:20 ============================================================================ +16:45:20 Slot Id : <180> +16:45:20 Transaction Type : RESPONSE +16:45:20 Received From : +16:45:20 ============================================================================ +16:45:20 FNo. Len. Field Value +16:45:20 ============================================================================ +16:45:20 [ 1] [ 4] [0210] +16:45:20 [ 2] [ 16] [6688990103640601] +16:45:20 [ 3] [ 6] [010000] +16:45:20 [ 4] [ 12] [000100000000] +16:45:20 [ 11] [ 6] [804088] +16:45:20 [ 12] [ 6] [164513] +16:45:20 [ 15] [ 4] [0320] +16:45:20 [ 18] [ 4] [6011] +16:45:20 [ 32] [ 6] [621354] +16:45:20 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:45:20 [ 37] [ 12] [507903499622] +16:45:20 [ 38] [ 6] [988538] +16:45:20 [ 39] [ 2] [00] +16:45:20 [ 41] [ 8] [06002200] +16:45:20 [ 49] [ 3] [418] +16:45:20 [ 54] [ 20] [0002418C000011505538] +16:45:20 ============================================================================ +16:45:20 Sending to : +16:45:20 ============================================================================ +16:45:20 + + +waiting on router queue for slot.... +16:45:21 ============================================================================ +16:45:21 Slot Id : <180> +16:45:21 Transaction Type : RESPONSE +16:45:21 Received From : +16:45:21 ============================================================================ +16:45:21 FNo. Len. Field Value +16:45:21 ============================================================================ +16:45:21 [ 1] [ 4] [0210] +16:45:21 [ 2] [ 16] [6688990103640601] +16:45:21 [ 3] [ 6] [010000] +16:45:21 [ 4] [ 12] [000100000000] +16:45:21 [ 11] [ 6] [804088] +16:45:21 [ 12] [ 6] [164513] +16:45:21 [ 15] [ 4] [0320] +16:45:21 [ 18] [ 4] [6011] +16:45:21 [ 32] [ 6] [621354] +16:45:21 [ 35] [ 37] [6688990103640601=43011231060159600000] +16:45:21 [ 37] [ 12] [507903499622] +16:45:21 [ 38] [ 6] [988538] +16:45:21 [ 39] [ 2] [00] +16:45:21 [ 41] [ 8] [06002200] +16:45:21 [ 49] [ 3] [418] +16:45:21 [ 54] [ 20] [0002418C000011505538] +16:45:21 ============================================================================ +16:45:21 Calculate Source COMM Id = 0 +16:45:21 ============================================================================ +16:45:21 + + +waiting on router queue for slot.... +16:45:27 ============================================================================ +16:45:27 Slot Id : <229> +16:45:27 Transaction Type : REQUEST +16:45:27 Received From : +16:45:27 ============================================================================ +16:45:27 FNo. Len. Field Value +16:45:27 ============================================================================ +16:45:27 [ 1] [ 4] [0800] +16:45:27 [ 7] [ 10] [0320094435] +16:45:27 [ 11] [ 6] [157299] +16:45:27 [ 70] [ 3] [301] +16:45:27 ============================================================================ +16:45:27 + + +waiting on router queue for slot.... +16:45:27 Sending to : +16:45:27 ============================================================================ +16:45:27 ============================================================================ +16:45:27 Slot Id : <229> +16:45:27 Transaction Type : RESPONSE +16:45:27 Received From : +16:45:27 ============================================================================ +16:45:27 FNo. Len. Field Value +16:45:27 ============================================================================ +16:45:27 [ 1] [ 4] [0810] +16:45:27 [ 7] [ 10] [0320094435] +16:45:27 [ 11] [ 6] [157299] +16:45:27 [ 39] [ 2] [00] +16:45:27 [ 70] [ 3] [301] +16:45:27 ============================================================================ +16:45:27 Calculate Source COMM Id = 2 +16:45:27 ============================================================================ +16:45:27 + + +waiting on router queue for slot.... +16:45:30 ============================================================================ +16:45:30 Slot Id : <174> +16:45:30 Transaction Type : REQUEST +16:45:30 Received From : +16:45:30 ============================================================================ +16:45:30 FNo. Len. Field Value +16:45:30 ============================================================================ +16:45:30 [ 1] [ 4] [0200] +16:45:30 [ 2] [ 16] [6213544002157342] +16:45:30 [ 3] [ 6] [010000] +16:45:30 [ 4] [ 12] [000036000000] +16:45:30 [ 7] [ 10] [0320165317] +16:45:30 [ 11] [ 6] [240447] +16:45:30 [ 12] [ 6] [165317] +16:45:30 [ 13] [ 4] [0320] +16:45:30 [ 14] [ 4] [4912] +16:45:30 [ 15] [ 4] [0320] +16:45:30 [ 18] [ 4] [6011] +16:45:30 [ 22] [ 3] [900] +16:45:30 [ 25] [ 2] [02] +16:45:30 [ 28] [ 9] [D00002000] +16:45:30 [ 32] [ 6] [220699] +16:45:30 [ 35] [ 32] [6213544002157342=491212015734613] +16:45:30 [ 37] [ 12] [507900360208] +16:45:30 [ 41] [ 8] [05000300] +16:45:30 [ 42] [ 15] [APTRA ] +16:45:30 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:45:30 [ 49] [ 3] [418] +16:45:30 [ 52] [ 16] [F9D9A558BC09F86A] +16:45:30 ============================================================================ +16:45:30 + + +waiting on router queue for slot.... +16:45:30 Sending to : +16:45:30 ============================================================================ +16:45:30 Sending to : +16:45:30 ============================================================================ +16:45:30 ============================================================================ +16:45:30 Slot Id : <174> +16:45:30 Transaction Type : REQUEST +16:45:30 Received From : +16:45:30 ============================================================================ +16:45:30 FNo. Len. Field Value +16:45:30 ============================================================================ +16:45:30 [ 1] [ 4] [0200] +16:45:30 [ 2] [ 16] [6213544002157342] +16:45:30 [ 3] [ 6] [010000] +16:45:30 [ 4] [ 12] [000036000000] +16:45:30 [ 7] [ 10] [0320165317] +16:45:30 [ 11] [ 6] [240447] +16:45:30 [ 12] [ 6] [165317] +16:45:30 [ 13] [ 4] [0320] +16:45:30 [ 14] [ 4] [4912] +16:45:30 [ 15] [ 4] [0320] +16:45:30 [ 18] [ 4] [6011] +16:45:30 [ 22] [ 3] [900] +16:45:30 [ 25] [ 2] [02] +16:45:30 [ 28] [ 9] [D00002000] +16:45:30 [ 32] [ 6] [220699] +16:45:30 [ 35] [ 32] [6213544002157342=491212015734613] +16:45:30 [ 37] [ 12] [507900360208] +16:45:30 [ 41] [ 8] [05000300] +16:45:30 [ 42] [ 15] [APTRA ] +16:45:30 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:45:30 [ 49] [ 3] [418] +16:45:30 [ 52] [ 16] [F9D9A558BC09F86A] +16:45:30 ============================================================================ +16:45:30 + + +waiting on router queue for slot.... +16:45:30 Sending to : +16:45:30 ============================================================================ +16:45:30 ============================================================================ +16:45:30 Slot Id : <174> +16:45:30 Transaction Type : REQUEST +16:45:30 Received From : +16:45:30 ============================================================================ +16:45:30 FNo. Len. Field Value +16:45:30 ============================================================================ +16:45:30 [ 1] [ 4] [0200] +16:45:30 [ 2] [ 16] [6213544002157342] +16:45:30 [ 3] [ 6] [010000] +16:45:30 [ 4] [ 12] [000036000000] +16:45:30 [ 7] [ 10] [0320165317] +16:45:30 [ 11] [ 6] [240447] +16:45:30 [ 12] [ 6] [165317] +16:45:30 [ 13] [ 4] [0320] +16:45:30 [ 14] [ 4] [4912] +16:45:30 [ 15] [ 4] [0320] +16:45:30 [ 18] [ 4] [6011] +16:45:30 [ 22] [ 3] [900] +16:45:30 [ 25] [ 2] [02] +16:45:30 [ 28] [ 9] [D00002000] +16:45:30 [ 32] [ 6] [220699] +16:45:30 [ 35] [ 32] [6213544002157342=491212015734613] +16:45:30 [ 37] [ 12] [507900360208] +16:45:30 [ 41] [ 8] [05000300] +16:45:30 [ 42] [ 15] [APTRA ] +16:45:30 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:45:30 [ 49] [ 3] [418] +16:45:30 [ 52] [ 16] [13C079283C08328B] +16:45:30 ============================================================================ +16:45:30 + + +waiting on router queue for slot.... +16:45:30 Sending to : <0> +16:45:30 ============================================================================ +16:45:31 ============================================================================ +16:45:31 Slot Id : <174> +16:45:31 Transaction Type : RESPONSE +16:45:31 Received From : +16:45:31 ============================================================================ +16:45:31 FNo. Len. Field Value +16:45:31 ============================================================================ +16:45:31 [ 1] [ 4] [0210] +16:45:31 [ 2] [ 16] [6213544002157342] +16:45:31 [ 3] [ 6] [010000] +16:45:31 [ 4] [ 12] [000036000000] +16:45:31 [ 7] [ 10] [0320165317] +16:45:31 [ 11] [ 6] [240447] +16:45:31 [ 12] [ 6] [165317] +16:45:31 [ 13] [ 4] [0320] +16:45:31 [ 15] [ 4] [0320] +16:45:31 [ 18] [ 4] [6011] +16:45:31 [ 32] [ 6] [220699] +16:45:31 [ 35] [ 32] [6213544002157342=491212015734613] +16:45:31 [ 37] [ 12] [507900360208] +16:45:31 [ 38] [ 6] [651653] +16:45:31 [ 39] [ 2] [00] +16:45:31 [ 41] [ 8] [05000300] +16:45:31 [ 49] [ 3] [418] +16:45:31 [ 54] [ 40] [0001418C0000051689930002418C000005168993] +16:45:31 ============================================================================ +16:45:31 Sending to : +16:45:31 ============================================================================ +16:45:31 + + +waiting on router queue for slot.... +16:45:32 ============================================================================ +16:45:32 Slot Id : <174> +16:45:32 Transaction Type : RESPONSE +16:45:32 Received From : +16:45:32 ============================================================================ +16:45:32 FNo. Len. Field Value +16:45:32 ============================================================================ +16:45:32 [ 1] [ 4] [0210] +16:45:32 [ 2] [ 16] [6213544002157342] +16:45:32 [ 3] [ 6] [010000] +16:45:32 [ 4] [ 12] [000036000000] +16:45:32 [ 7] [ 10] [0320165317] +16:45:32 [ 11] [ 6] [240447] +16:45:32 [ 12] [ 6] [165317] +16:45:32 [ 13] [ 4] [0320] +16:45:32 [ 15] [ 4] [0320] +16:45:32 [ 18] [ 4] [6011] +16:45:32 [ 32] [ 6] [220699] +16:45:32 [ 35] [ 32] [6213544002157342=491212015734613] +16:45:32 [ 37] [ 12] [507900360208] +16:45:32 [ 38] [ 6] [651653] +16:45:32 [ 39] [ 2] [00] +16:45:32 [ 41] [ 8] [05000300] +16:45:32 [ 49] [ 3] [418] +16:45:32 [ 54] [ 40] [0001418C0000051689930002418C000005168993] +16:45:32 ============================================================================ +16:45:32 Calculate Source COMM Id = 1 +16:45:32 ============================================================================ +16:45:32 + + +waiting on router queue for slot.... +16:45:33 ============================================================================ +16:45:33 Slot Id : <173> +16:45:33 Transaction Type : REQUEST +16:45:33 Received From : +16:45:33 ============================================================================ +16:45:33 FNo. Len. Field Value +16:45:33 ============================================================================ +16:45:33 [ 1] [ 4] [0200] +16:45:33 [ 2] [ 16] [6213544002251558] +16:45:33 [ 3] [ 6] [011000] +16:45:33 [ 4] [ 12] [000055000000] +16:45:33 [ 7] [ 10] [0320164554] +16:45:33 [ 11] [ 6] [208945] +16:45:33 [ 12] [ 6] [164100] +16:45:33 [ 13] [ 4] [0320] +16:45:33 [ 14] [ 4] [4912] +16:45:33 [ 15] [ 4] [0320] +16:45:33 [ 18] [ 4] [6011] +16:45:33 [ 19] [ 3] [418] +16:45:33 [ 22] [ 3] [021] +16:45:33 [ 25] [ 2] [01] +16:45:33 [ 28] [ 9] [D00002000] +16:45:33 [ 32] [ 6] [198901] +16:45:33 [ 35] [ 32] [6213544002251558=491212015155904] +16:45:33 [ 37] [ 12] [507916208945] +16:45:33 [ 41] [ 8] [19529001] +16:45:33 [ 42] [ 15] [000000041952901] +16:45:33 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:45:33 [ 49] [ 3] [418] +16:45:33 [ 52] [ 16] [35FF6C9DAC060BE6] +16:45:33 ============================================================================ +16:45:33 + + +waiting on router queue for slot.... +16:45:33 Sending to : +16:45:33 ============================================================================ +16:45:33 Sending to : +16:45:33 ============================================================================ +16:45:34 ============================================================================ +16:45:34 Slot Id : <173> +16:45:34 Transaction Type : REQUEST +16:45:34 Received From : +16:45:34 ============================================================================ +16:45:34 FNo. Len. Field Value +16:45:34 ============================================================================ +16:45:34 [ 1] [ 4] [0200] +16:45:34 [ 2] [ 16] [6213544002251558] +16:45:34 [ 3] [ 6] [011000] +16:45:34 [ 4] [ 12] [000055000000] +16:45:34 [ 7] [ 10] [0320164554] +16:45:34 [ 11] [ 6] [208945] +16:45:34 [ 12] [ 6] [164100] +16:45:34 [ 13] [ 4] [0320] +16:45:34 [ 14] [ 4] [4912] +16:45:34 [ 15] [ 4] [0320] +16:45:34 [ 18] [ 4] [6011] +16:45:34 [ 19] [ 3] [418] +16:45:34 [ 22] [ 3] [021] +16:45:34 [ 25] [ 2] [01] +16:45:34 [ 28] [ 9] [D00002000] +16:45:34 [ 32] [ 6] [198901] +16:45:34 [ 35] [ 32] [6213544002251558=491212015155904] +16:45:34 [ 37] [ 12] [507916208945] +16:45:34 [ 41] [ 8] [19529001] +16:45:34 [ 42] [ 15] [000000041952901] +16:45:34 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:45:34 [ 49] [ 3] [418] +16:45:34 [ 52] [ 16] [35FF6C9DAC060BE6] +16:45:34 ============================================================================ +16:45:34 + + +waiting on router queue for slot.... +16:45:34 Sending to : +16:45:34 ============================================================================ +16:45:34 ============================================================================ +16:45:34 Slot Id : <173> +16:45:34 Transaction Type : REQUEST +16:45:34 Received From : +16:45:34 ============================================================================ +16:45:34 FNo. Len. Field Value +16:45:34 ============================================================================ +16:45:34 [ 1] [ 4] [0200] +16:45:34 [ 2] [ 16] [6213544002251558] +16:45:34 [ 3] [ 6] [011000] +16:45:34 [ 4] [ 12] [000055000000] +16:45:34 [ 7] [ 10] [0320164554] +16:45:34 [ 11] [ 6] [208945] +16:45:34 [ 12] [ 6] [164100] +16:45:34 [ 13] [ 4] [0320] +16:45:34 [ 14] [ 4] [4912] +16:45:34 [ 15] [ 4] [0320] +16:45:34 [ 18] [ 4] [6011] +16:45:34 [ 19] [ 3] [418] +16:45:34 [ 22] [ 3] [021] +16:45:34 [ 25] [ 2] [01] +16:45:34 [ 28] [ 9] [D00002000] +16:45:34 [ 32] [ 6] [198901] +16:45:34 [ 35] [ 32] [6213544002251558=491212015155904] +16:45:34 [ 37] [ 12] [507916208945] +16:45:34 [ 41] [ 8] [19529001] +16:45:34 [ 42] [ 15] [000000041952901] +16:45:34 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:45:34 [ 49] [ 3] [418] +16:45:34 [ 52] [ 16] [930C55BE0A0D5C42] +16:45:34 ============================================================================ +16:45:34 + + +waiting on router queue for slot.... +16:45:34 Sending to : <0> +16:45:34 ============================================================================ +16:45:35 ============================================================================ +16:45:35 Slot Id : <173> +16:45:35 Transaction Type : RESPONSE +16:45:35 Received From : +16:45:35 ============================================================================ +16:45:35 FNo. Len. Field Value +16:45:35 ============================================================================ +16:45:35 [ 1] [ 4] [0210] +16:45:35 [ 2] [ 16] [6213544002251558] +16:45:35 [ 3] [ 6] [011000] +16:45:35 [ 4] [ 12] [000055000000] +16:45:35 [ 7] [ 10] [0320164554] +16:45:35 [ 11] [ 6] [208945] +16:45:35 [ 12] [ 6] [164100] +16:45:35 [ 13] [ 4] [0320] +16:45:35 [ 15] [ 4] [0320] +16:45:35 [ 18] [ 4] [6011] +16:45:35 [ 19] [ 3] [418] +16:45:35 [ 32] [ 6] [198901] +16:45:35 [ 35] [ 32] [6213544002251558=491212015155904] +16:45:35 [ 37] [ 12] [507916208945] +16:45:35 [ 38] [ 6] [241028] +16:45:35 [ 39] [ 2] [00] +16:45:35 [ 41] [ 8] [19529001] +16:45:35 [ 49] [ 3] [418] +16:45:35 [ 54] [ 40] [1001418C0000062110581002418C000006211058] +16:45:35 ============================================================================ +16:45:35 Sending to : +16:45:35 ============================================================================ +16:45:35 + + +waiting on router queue for slot.... +16:45:36 ============================================================================ +16:45:36 Slot Id : <246> +16:45:36 Transaction Type : REQUEST +16:45:36 Received From : +16:45:36 ============================================================================ +16:45:36 FNo. Len. Field Value +16:45:36 ============================================================================ +16:45:36 [ 1] [ 4] [0200] +16:45:36 [ 2] [ 16] [6213541000711898] +16:45:36 [ 3] [ 6] [010000] +16:45:36 [ 4] [ 12] [000020000000] +16:45:36 [ 7] [ 10] [0320165323] +16:45:36 [ 11] [ 6] [251311] +16:45:36 [ 12] [ 6] [165323] +16:45:36 [ 13] [ 4] [0320] +16:45:36 [ 14] [ 4] [4912] +16:45:36 [ 15] [ 4] [0320] +16:45:36 [ 18] [ 4] [6011] +16:45:36 [ 22] [ 3] [900] +16:45:36 [ 25] [ 2] [02] +16:45:36 [ 28] [ 9] [D00002000] +16:45:36 [ 32] [ 6] [220699] +16:45:36 [ 35] [ 32] [6213541000711898=491212011189967] +16:45:36 [ 37] [ 12] [507900336264] +16:45:36 [ 41] [ 8] [01001900] +16:45:36 [ 42] [ 15] [APTRA ] +16:45:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:45:36 [ 49] [ 3] [418] +16:45:36 [ 52] [ 16] [D6276A0B0D68B7C6] +16:45:36 ============================================================================ +16:45:36 + + +waiting on router queue for slot.... +16:45:36 Sending to : +16:45:36 ============================================================================ +16:45:36 Sending to : +16:45:36 ============================================================================ +16:45:36 ============================================================================ +16:45:36 Slot Id : <246> +16:45:36 Transaction Type : REQUEST +16:45:36 Received From : +16:45:36 ============================================================================ +16:45:36 FNo. Len. Field Value +16:45:36 ============================================================================ +16:45:36 [ 1] [ 4] [0200] +16:45:36 [ 2] [ 16] [6213541000711898] +16:45:36 [ 3] [ 6] [010000] +16:45:36 [ 4] [ 12] [000020000000] +16:45:36 [ 7] [ 10] [0320165323] +16:45:36 [ 11] [ 6] [251311] +16:45:36 [ 12] [ 6] [165323] +16:45:36 [ 13] [ 4] [0320] +16:45:36 [ 14] [ 4] [4912] +16:45:36 [ 15] [ 4] [0320] +16:45:36 [ 18] [ 4] [6011] +16:45:36 [ 22] [ 3] [900] +16:45:36 [ 25] [ 2] [02] +16:45:36 [ 28] [ 9] [D00002000] +16:45:36 [ 32] [ 6] [220699] +16:45:36 [ 35] [ 32] [6213541000711898=491212011189967] +16:45:36 [ 37] [ 12] [507900336264] +16:45:36 [ 41] [ 8] [01001900] +16:45:36 [ 42] [ 15] [APTRA ] +16:45:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:45:36 [ 49] [ 3] [418] +16:45:36 [ 52] [ 16] [D6276A0B0D68B7C6] +16:45:36 ============================================================================ +16:45:36 + + +waiting on router queue for slot.... +16:45:36 Sending to : +16:45:36 ============================================================================ +16:45:36 ============================================================================ +16:45:36 Slot Id : <246> +16:45:36 Transaction Type : REQUEST +16:45:36 Received From : +16:45:36 ============================================================================ +16:45:36 FNo. Len. Field Value +16:45:36 ============================================================================ +16:45:36 [ 1] [ 4] [0200] +16:45:36 [ 2] [ 16] [6213541000711898] +16:45:36 [ 3] [ 6] [010000] +16:45:36 [ 4] [ 12] [000020000000] +16:45:36 [ 7] [ 10] [0320165323] +16:45:36 [ 11] [ 6] [251311] +16:45:36 [ 12] [ 6] [165323] +16:45:36 [ 13] [ 4] [0320] +16:45:36 [ 14] [ 4] [4912] +16:45:36 [ 15] [ 4] [0320] +16:45:36 [ 18] [ 4] [6011] +16:45:36 [ 22] [ 3] [900] +16:45:36 [ 25] [ 2] [02] +16:45:36 [ 28] [ 9] [D00002000] +16:45:36 [ 32] [ 6] [220699] +16:45:36 [ 35] [ 32] [6213541000711898=491212011189967] +16:45:36 [ 37] [ 12] [507900336264] +16:45:36 [ 41] [ 8] [01001900] +16:45:36 [ 42] [ 15] [APTRA ] +16:45:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:45:36 [ 49] [ 3] [418] +16:45:36 [ 52] [ 16] [6DECD9ADA9E58839] +16:45:36 ============================================================================ +16:45:36 + + +waiting on router queue for slot.... +16:45:36 Sending to : <0> +16:45:36 ============================================================================ +16:45:36 ============================================================================ +16:45:36 Slot Id : <246> +16:45:36 Transaction Type : RESPONSE +16:45:36 Received From : +16:45:36 ============================================================================ +16:45:36 FNo. Len. Field Value +16:45:36 ============================================================================ +16:45:36 [ 1] [ 4] [0210] +16:45:36 [ 2] [ 16] [6213541000711898] +16:45:36 [ 3] [ 6] [010000] +16:45:36 [ 4] [ 12] [000020000000] +16:45:36 [ 7] [ 10] [0320165323] +16:45:36 [ 11] [ 6] [251311] +16:45:36 [ 12] [ 6] [165323] +16:45:36 [ 13] [ 4] [0320] +16:45:36 [ 15] [ 4] [0320] +16:45:36 [ 18] [ 4] [6011] +16:45:36 [ 32] [ 6] [220699] +16:45:36 [ 35] [ 32] [6213541000711898=491212011189967] +16:45:36 [ 37] [ 12] [507900336264] +16:45:36 [ 38] [ 6] [515364] +16:45:36 [ 39] [ 2] [00] +16:45:36 [ 41] [ 8] [01001900] +16:45:36 [ 49] [ 3] [418] +16:45:36 [ 54] [ 40] [0001418C0000090114270002418C000009011427] +16:45:36 ============================================================================ +16:45:36 Sending to : +16:45:36 ============================================================================ +16:45:36 + + +waiting on router queue for slot.... +16:45:37 ============================================================================ +16:45:37 Slot Id : <173> +16:45:37 Transaction Type : RESPONSE +16:45:37 Received From : +16:45:37 ============================================================================ +16:45:37 FNo. Len. Field Value +16:45:37 ============================================================================ +16:45:37 [ 1] [ 4] [0210] +16:45:37 [ 2] [ 16] [6213544002251558] +16:45:37 [ 3] [ 6] [011000] +16:45:37 [ 4] [ 12] [000055000000] +16:45:37 [ 7] [ 10] [0320164554] +16:45:37 [ 11] [ 6] [208945] +16:45:37 [ 12] [ 6] [164100] +16:45:37 [ 13] [ 4] [0320] +16:45:37 [ 15] [ 4] [0320] +16:45:37 [ 18] [ 4] [6011] +16:45:37 [ 19] [ 3] [418] +16:45:37 [ 32] [ 6] [198901] +16:45:37 [ 35] [ 32] [6213544002251558=491212015155904] +16:45:37 [ 37] [ 12] [507916208945] +16:45:37 [ 38] [ 6] [241028] +16:45:37 [ 39] [ 2] [00] +16:45:37 [ 41] [ 8] [19529001] +16:45:37 [ 49] [ 3] [418] +16:45:37 [ 54] [ 40] [1001418C0000062110581002418C000006211058] +16:45:37 ============================================================================ +16:45:37 Calculate Source COMM Id = 5 +16:45:37 ============================================================================ +16:45:37 + + +waiting on router queue for slot.... +16:45:37 ============================================================================ +16:45:37 Slot Id : <188> +16:45:37 Transaction Type : REQUEST +16:45:37 Received From : +16:45:37 ============================================================================ +16:45:37 FNo. Len. Field Value +16:45:37 ============================================================================ +16:45:37 [ 1] [ 4] [0200] +16:45:37 [ 2] [ 16] [6213544001657805] +16:45:37 [ 3] [ 6] [011000] +16:45:37 [ 4] [ 12] [000010000000] +16:45:37 [ 7] [ 10] [0320164557] +16:45:37 [ 11] [ 6] [208947] +16:45:37 [ 12] [ 6] [164009] +16:45:37 [ 13] [ 4] [0320] +16:45:37 [ 14] [ 4] [4912] +16:45:37 [ 15] [ 4] [0320] +16:45:37 [ 18] [ 4] [6011] +16:45:37 [ 19] [ 3] [418] +16:45:37 [ 22] [ 3] [021] +16:45:37 [ 25] [ 2] [01] +16:45:37 [ 28] [ 9] [D00002000] +16:45:37 [ 32] [ 6] [198901] +16:45:37 [ 35] [ 32] [6213544001657805=491212015780197] +16:45:37 [ 37] [ 12] [507916208947] +16:45:37 [ 41] [ 8] [01529018] +16:45:37 [ 42] [ 15] [000000041529018] +16:45:37 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +16:45:37 [ 49] [ 3] [418] +16:45:37 [ 52] [ 16] [971EF57BF9E1DC4B] +16:45:37 ============================================================================ +16:45:37 + + +waiting on router queue for slot.... +16:45:37 Sending to : +16:45:37 ============================================================================ +16:45:37 Sending to : +16:45:37 ============================================================================ +16:45:37 ============================================================================ +16:45:37 Slot Id : <223> +16:45:37 Transaction Type : REQUEST +16:45:37 Received From : +16:45:37 ============================================================================ +16:45:37 FNo. Len. Field Value +16:45:37 ============================================================================ +16:45:37 [ 1] [ 4] [0200] +16:45:37 [ 2] [ 16] [6213545000670681] +16:45:37 [ 3] [ 6] [010000] +16:45:37 [ 4] [ 12] [000020000000] +16:45:37 [ 7] [ 10] [0320164327] +16:45:37 [ 11] [ 6] [952272] +16:45:37 [ 12] [ 6] [164327] +16:45:37 [ 13] [ 4] [0320] +16:45:37 [ 15] [ 4] [0320] +16:45:37 [ 18] [ 4] [6011] +16:45:37 [ 19] [ 3] [418] +16:45:37 [ 22] [ 3] [021] +16:45:37 [ 25] [ 2] [01] +16:45:37 [ 28] [ 9] [D00002000] +16:45:37 [ 32] [ 6] [668899] +16:45:37 [ 35] [ 32] [6213545000670681=491212017068693] +16:45:37 [ 37] [ 12] [507901203939] +16:45:37 [ 41] [ 8] [03020012] +16:45:37 [ 42] [ 15] [APT ] +16:45:37 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +16:45:37 [ 49] [ 3] [418] +16:45:37 [ 52] [ 16] [D82BCC8ACB6EFD7F] +16:45:37 ============================================================================ +16:45:37 + + +waiting on router queue for slot.... +16:45:37 Sending to : +16:45:37 ============================================================================ +16:45:37 Sending to : +16:45:37 ============================================================================ +16:45:37 ============================================================================ +16:45:37 Slot Id : <188> +16:45:37 Transaction Type : REQUEST +16:45:37 Received From : +16:45:37 ============================================================================ +16:45:37 FNo. Len. Field Value +16:45:37 ============================================================================ +16:45:37 [ 1] [ 4] [0200] +16:45:37 [ 2] [ 16] [6213544001657805] +16:45:37 [ 3] [ 6] [011000] +16:45:37 [ 4] [ 12] [000010000000] +16:45:37 [ 7] [ 10] [0320164557] +16:45:37 [ 11] [ 6] [208947] +16:45:37 [ 12] [ 6] [164009] +16:45:37 [ 13] [ 4] [0320] +16:45:37 [ 14] [ 4] [4912] +16:45:37 [ 15] [ 4] [0320] +16:45:37 [ 18] [ 4] [6011] +16:45:37 [ 19] [ 3] [418] +16:45:37 [ 22] [ 3] [021] +16:45:37 [ 25] [ 2] [01] +16:45:37 [ 28] [ 9] [D00002000] +16:45:37 [ 32] [ 6] [198901] +16:45:37 [ 35] [ 32] [6213544001657805=491212015780197] +16:45:37 [ 37] [ 12] [507916208947] +16:45:37 [ 41] [ 8] [01529018] +16:45:37 [ 42] [ 15] [000000041529018] +16:45:37 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +16:45:37 [ 49] [ 3] [418] +16:45:37 [ 52] [ 16] [971EF57BF9E1DC4B] +16:45:37 ============================================================================ +16:45:37 + + +waiting on router queue for slot.... +16:45:37 Sending to : +16:45:37 ============================================================================ +16:45:37 ============================================================================ +16:45:37 Slot Id : <188> +16:45:37 Transaction Type : REQUEST +16:45:37 Received From : +16:45:37 ============================================================================ +16:45:37 FNo. Len. Field Value +16:45:37 ============================================================================ +16:45:37 [ 1] [ 4] [0200] +16:45:37 [ 2] [ 16] [6213544001657805] +16:45:37 [ 3] [ 6] [011000] +16:45:37 [ 4] [ 12] [000010000000] +16:45:37 [ 7] [ 10] [0320164557] +16:45:37 [ 11] [ 6] [208947] +16:45:37 [ 12] [ 6] [164009] +16:45:37 [ 13] [ 4] [0320] +16:45:37 [ 14] [ 4] [4912] +16:45:37 [ 15] [ 4] [0320] +16:45:37 [ 18] [ 4] [6011] +16:45:37 [ 19] [ 3] [418] +16:45:37 [ 22] [ 3] [021] +16:45:37 [ 25] [ 2] [01] +16:45:37 [ 28] [ 9] [D00002000] +16:45:37 [ 32] [ 6] [198901] +16:45:37 [ 35] [ 32] [6213544001657805=491212015780197] +16:45:37 [ 37] [ 12] [507916208947] +16:45:37 [ 41] [ 8] [01529018] +16:45:37 [ 42] [ 15] [000000041529018] +16:45:37 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +16:45:37 [ 49] [ 3] [418] +16:45:37 [ 52] [ 16] [0B9C91AA9204DBE3] +16:45:37 ============================================================================ +16:45:37 + + +waiting on router queue for slot.... +16:45:37 Sending to : <0> +16:45:37 ============================================================================ +16:45:37 ============================================================================ +16:45:37 Slot Id : <223> +16:45:37 Transaction Type : REQUEST +16:45:37 Received From : +16:45:37 ============================================================================ +16:45:37 FNo. Len. Field Value +16:45:37 ============================================================================ +16:45:37 [ 1] [ 4] [0200] +16:45:37 [ 2] [ 16] [6213545000670681] +16:45:37 [ 3] [ 6] [010000] +16:45:37 [ 4] [ 12] [000020000000] +16:45:37 [ 7] [ 10] [0320164327] +16:45:37 [ 11] [ 6] [952272] +16:45:37 [ 12] [ 6] [164327] +16:45:37 [ 13] [ 4] [0320] +16:45:37 [ 15] [ 4] [0320] +16:45:37 [ 18] [ 4] [6011] +16:45:37 [ 19] [ 3] [418] +16:45:37 [ 22] [ 3] [021] +16:45:37 [ 25] [ 2] [01] +16:45:37 [ 28] [ 9] [D00002000] +16:45:37 [ 32] [ 6] [668899] +16:45:37 [ 35] [ 32] [6213545000670681=491212017068693] +16:45:37 [ 37] [ 12] [507901203939] +16:45:37 [ 41] [ 8] [03020012] +16:45:37 [ 42] [ 15] [APT ] +16:45:37 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +16:45:37 [ 49] [ 3] [418] +16:45:37 [ 52] [ 16] [D82BCC8ACB6EFD7F] +16:45:37 ============================================================================ +16:45:37 + + +waiting on router queue for slot.... +16:45:37 Sending to : +16:45:37 ============================================================================ +16:45:37 ============================================================================ +16:45:37 Slot Id : <223> +16:45:37 Transaction Type : REQUEST +16:45:37 Received From : +16:45:37 ============================================================================ +16:45:37 FNo. Len. Field Value +16:45:37 ============================================================================ +16:45:37 [ 1] [ 4] [0200] +16:45:37 [ 2] [ 16] [6213545000670681] +16:45:37 [ 3] [ 6] [010000] +16:45:37 [ 4] [ 12] [000020000000] +16:45:37 [ 7] [ 10] [0320164327] +16:45:37 [ 11] [ 6] [952272] +16:45:37 [ 12] [ 6] [164327] +16:45:37 [ 13] [ 4] [0320] +16:45:37 [ 15] [ 4] [0320] +16:45:37 [ 18] [ 4] [6011] +16:45:37 [ 19] [ 3] [418] +16:45:37 [ 22] [ 3] [021] +16:45:37 [ 25] [ 2] [01] +16:45:37 [ 28] [ 9] [D00002000] +16:45:37 [ 32] [ 6] [668899] +16:45:37 [ 35] [ 32] [6213545000670681=491212017068693] +16:45:37 [ 37] [ 12] [507901203939] +16:45:37 [ 41] [ 8] [03020012] +16:45:37 [ 42] [ 15] [APT ] +16:45:37 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +16:45:37 [ 49] [ 3] [418] +16:45:37 [ 52] [ 16] [DBF29A75EC9AA12E] +16:45:37 ============================================================================ +16:45:37 + + +waiting on router queue for slot.... +16:45:37 Sending to : <0> +16:45:37 ============================================================================ +16:45:38 ============================================================================ +16:45:38 Slot Id : <246> +16:45:38 Transaction Type : RESPONSE +16:45:38 Received From : +16:45:38 ============================================================================ +16:45:38 FNo. Len. Field Value +16:45:38 ============================================================================ +16:45:38 [ 1] [ 4] [0210] +16:45:38 [ 2] [ 16] [6213541000711898] +16:45:38 [ 3] [ 6] [010000] +16:45:38 [ 4] [ 12] [000020000000] +16:45:38 [ 7] [ 10] [0320165323] +16:45:38 [ 11] [ 6] [251311] +16:45:38 [ 12] [ 6] [165323] +16:45:38 [ 13] [ 4] [0320] +16:45:38 [ 15] [ 4] [0320] +16:45:38 [ 18] [ 4] [6011] +16:45:38 [ 32] [ 6] [220699] +16:45:38 [ 35] [ 32] [6213541000711898=491212011189967] +16:45:38 [ 37] [ 12] [507900336264] +16:45:38 [ 38] [ 6] [515364] +16:45:38 [ 39] [ 2] [00] +16:45:38 [ 41] [ 8] [01001900] +16:45:38 [ 49] [ 3] [418] +16:45:38 [ 54] [ 40] [0001418C0000090114270002418C000009011427] +16:45:38 ============================================================================ +16:45:38 Calculate Source COMM Id = 1 +16:45:38 ============================================================================ +16:45:38 + + +waiting on router queue for slot.... +16:45:38 ============================================================================ +16:45:38 Slot Id : <188> +16:45:38 Transaction Type : RESPONSE +16:45:38 Received From : +16:45:38 ============================================================================ +16:45:38 FNo. Len. Field Value +16:45:38 ============================================================================ +16:45:38 [ 1] [ 4] [0210] +16:45:38 [ 2] [ 16] [6213544001657805] +16:45:38 [ 3] [ 6] [011000] +16:45:38 [ 4] [ 12] [000010000000] +16:45:38 [ 7] [ 10] [0320164557] +16:45:38 [ 11] [ 6] [208947] +16:45:38 [ 12] [ 6] [164009] +16:45:38 [ 13] [ 4] [0320] +16:45:38 [ 15] [ 4] [0320] +16:45:38 [ 18] [ 4] [6011] +16:45:38 [ 19] [ 3] [418] +16:45:38 [ 32] [ 6] [198901] +16:45:38 [ 35] [ 32] [6213544001657805=491212015780197] +16:45:38 [ 37] [ 12] [507916208947] +16:45:38 [ 38] [ 6] [632051] +16:45:38 [ 39] [ 2] [00] +16:45:38 [ 41] [ 8] [01529018] +16:45:38 [ 49] [ 3] [418] +16:45:38 [ 54] [ 40] [1001418C0000111845181002418C000011184518] +16:45:38 ============================================================================ +16:45:38 Sending to : +16:45:38 ============================================================================ +16:45:38 + + +waiting on router queue for slot.... +16:45:38 ============================================================================ +16:45:38 Slot Id : <223> +16:45:38 Transaction Type : RESPONSE +16:45:38 Received From : +16:45:38 ============================================================================ +16:45:38 FNo. Len. Field Value +16:45:38 ============================================================================ +16:45:38 [ 1] [ 4] [0210] +16:45:38 [ 2] [ 16] [6213545000670681] +16:45:38 [ 3] [ 6] [010000] +16:45:38 [ 4] [ 12] [000020000000] +16:45:38 [ 7] [ 10] [0320164327] +16:45:38 [ 11] [ 6] [952272] +16:45:38 [ 12] [ 6] [164327] +16:45:38 [ 13] [ 4] [0320] +16:45:38 [ 15] [ 4] [0320] +16:45:38 [ 18] [ 4] [6011] +16:45:38 [ 19] [ 3] [418] +16:45:38 [ 32] [ 6] [668899] +16:45:38 [ 35] [ 32] [6213545000670681=491212017068693] +16:45:38 [ 37] [ 12] [507901203939] +16:45:38 [ 38] [ 6] [743364] +16:45:38 [ 39] [ 2] [00] +16:45:38 [ 41] [ 8] [03020012] +16:45:38 [ 49] [ 3] [418] +16:45:38 [ 54] [ 40] [0001418C0001244360430002418C000124436043] +16:45:38 ============================================================================ +16:45:38 Sending to : +16:45:38 ============================================================================ +16:45:38 + + +waiting on router queue for slot.... +16:45:39 ============================================================================ +16:45:39 Slot Id : <188> +16:45:39 Transaction Type : RESPONSE +16:45:39 Received From : +16:45:39 ============================================================================ +16:45:39 FNo. Len. Field Value +16:45:39 ============================================================================ +16:45:39 [ 1] [ 4] [0210] +16:45:39 [ 2] [ 16] [6213544001657805] +16:45:39 [ 3] [ 6] [011000] +16:45:39 [ 4] [ 12] [000010000000] +16:45:39 [ 7] [ 10] [0320164557] +16:45:39 [ 11] [ 6] [208947] +16:45:39 [ 12] [ 6] [164009] +16:45:39 [ 13] [ 4] [0320] +16:45:39 [ 15] [ 4] [0320] +16:45:39 [ 18] [ 4] [6011] +16:45:39 [ 19] [ 3] [418] +16:45:39 [ 32] [ 6] [198901] +16:45:39 [ 35] [ 32] [6213544001657805=491212015780197] +16:45:39 [ 37] [ 12] [507916208947] +16:45:39 [ 38] [ 6] [632051] +16:45:39 [ 39] [ 2] [00] +16:45:39 [ 41] [ 8] [01529018] +16:45:39 [ 49] [ 3] [418] +16:45:39 [ 54] [ 40] [1001418C0000111845181002418C000011184518] +16:45:39 ============================================================================ +16:45:39 Calculate Source COMM Id = 5 +16:45:39 ============================================================================ +16:45:39 + + +waiting on router queue for slot.... +16:45:40 ============================================================================ +16:45:40 Slot Id : <235> +16:45:40 Transaction Type : REQUEST +16:45:40 Received From : +16:45:40 ============================================================================ +16:45:40 FNo. Len. Field Value +16:45:40 ============================================================================ +16:45:40 [ 1] [ 4] [0200] +16:45:40 [ 2] [ 16] [1808931800013086] +16:45:40 [ 3] [ 6] [012000] +16:45:40 [ 4] [ 12] [000002000000] +16:45:40 [ 7] [ 10] [0320164535] +16:45:40 [ 11] [ 6] [804175] +16:45:40 [ 12] [ 6] [164535] +16:45:40 [ 13] [ 4] [0320] +16:45:40 [ 15] [ 4] [0320] +16:45:40 [ 18] [ 4] [6011] +16:45:40 [ 22] [ 3] [900] +16:45:40 [ 25] [ 2] [02] +16:45:40 [ 28] [ 9] [D00002000] +16:45:40 [ 32] [ 6] [621354] +16:45:40 [ 35] [ 27] [1808931800013086=1803500007] +16:45:40 [ 37] [ 12] [507904635908] +16:45:40 [ 41] [ 8] [17000800] +16:45:40 [ 42] [ 15] [NATIVE ] +16:45:40 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:45:40 [ 49] [ 3] [418] +16:45:40 [ 52] [ 16] [5038FBB29B9718CD] +16:45:40 ============================================================================ +16:45:40 + + +waiting on router queue for slot.... +16:45:40 Sending to : +16:45:40 ============================================================================ +16:45:40 Sending to : +16:45:40 ============================================================================ +16:45:40 ============================================================================ +16:45:40 Slot Id : <235> +16:45:40 Transaction Type : REQUEST +16:45:40 Received From : +16:45:40 ============================================================================ +16:45:40 FNo. Len. Field Value +16:45:40 ============================================================================ +16:45:40 [ 1] [ 4] [0200] +16:45:40 [ 2] [ 16] [1808931800013086] +16:45:40 [ 3] [ 6] [012000] +16:45:40 [ 4] [ 12] [000002000000] +16:45:40 [ 7] [ 10] [0320164535] +16:45:40 [ 11] [ 6] [804175] +16:45:40 [ 12] [ 6] [164535] +16:45:40 [ 13] [ 4] [0320] +16:45:40 [ 15] [ 4] [0320] +16:45:40 [ 18] [ 4] [6011] +16:45:40 [ 22] [ 3] [900] +16:45:40 [ 25] [ 2] [02] +16:45:40 [ 28] [ 9] [D00002000] +16:45:40 [ 32] [ 6] [621354] +16:45:40 [ 35] [ 27] [1808931800013086=1803500007] +16:45:40 [ 37] [ 12] [507904635908] +16:45:40 [ 41] [ 8] [17000800] +16:45:40 [ 42] [ 15] [NATIVE ] +16:45:40 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:45:40 [ 49] [ 3] [418] +16:45:40 [ 52] [ 16] [5038FBB29B9718CD] +16:45:40 ============================================================================ +16:45:40 + + +waiting on router queue for slot.... +16:45:40 Sending to : +16:45:40 ============================================================================ +16:45:40 ============================================================================ +16:45:40 Slot Id : <235> +16:45:40 Transaction Type : REQUEST +16:45:40 Received From : +16:45:40 ============================================================================ +16:45:40 FNo. Len. Field Value +16:45:40 ============================================================================ +16:45:40 [ 1] [ 4] [0200] +16:45:40 [ 2] [ 16] [1808931800013086] +16:45:40 [ 3] [ 6] [012000] +16:45:40 [ 4] [ 12] [000002000000] +16:45:40 [ 7] [ 10] [0320164535] +16:45:40 [ 11] [ 6] [804175] +16:45:40 [ 12] [ 6] [164535] +16:45:40 [ 13] [ 4] [0320] +16:45:40 [ 15] [ 4] [0320] +16:45:40 [ 18] [ 4] [6011] +16:45:40 [ 22] [ 3] [900] +16:45:40 [ 25] [ 2] [02] +16:45:40 [ 28] [ 9] [D00002000] +16:45:40 [ 32] [ 6] [621354] +16:45:40 [ 35] [ 27] [1808931800013086=1803500007] +16:45:40 [ 37] [ 12] [507904635908] +16:45:40 [ 41] [ 8] [17000800] +16:45:40 [ 42] [ 15] [NATIVE ] +16:45:40 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:45:40 [ 49] [ 3] [418] +16:45:40 [ 52] [ 16] [D14224C62C5F278E] +16:45:40 ============================================================================ +16:45:40 + + +waiting on router queue for slot.... +16:45:40 Sending to : <2> +16:45:40 ============================================================================ +16:45:40 ============================================================================ +16:45:40 Slot Id : <223> +16:45:40 Transaction Type : RESPONSE +16:45:40 Received From : +16:45:40 ============================================================================ +16:45:40 FNo. Len. Field Value +16:45:40 ============================================================================ +16:45:40 [ 1] [ 4] [0210] +16:45:40 [ 2] [ 16] [6213545000670681] +16:45:40 [ 3] [ 6] [010000] +16:45:40 [ 4] [ 12] [000020000000] +16:45:40 [ 7] [ 10] [0320164327] +16:45:40 [ 11] [ 6] [952272] +16:45:40 [ 12] [ 6] [164327] +16:45:40 [ 13] [ 4] [0320] +16:45:40 [ 15] [ 4] [0320] +16:45:40 [ 18] [ 4] [6011] +16:45:40 [ 19] [ 3] [418] +16:45:40 [ 32] [ 6] [668899] +16:45:40 [ 35] [ 32] [6213545000670681=491212017068693] +16:45:40 [ 37] [ 12] [507901203939] +16:45:40 [ 38] [ 6] [743364] +16:45:40 [ 39] [ 2] [00] +16:45:40 [ 41] [ 8] [03020012] +16:45:40 [ 49] [ 3] [418] +16:45:40 [ 54] [ 40] [0001418C0001244360430002418C000124436043] +16:45:40 ============================================================================ +16:45:40 Calculate Source COMM Id = 4 +16:45:40 ============================================================================ +16:45:40 + + +waiting on router queue for slot.... +16:45:41 ============================================================================ +16:45:41 Slot Id : <235> +16:45:41 Transaction Type : RESPONSE +16:45:41 Received From : +16:45:41 ============================================================================ +16:45:41 FNo. Len. Field Value +16:45:41 ============================================================================ +16:45:41 [ 1] [ 4] [0210] +16:45:41 [ 2] [ 16] [1808931800013086] +16:45:41 [ 3] [ 6] [012000] +16:45:41 [ 4] [ 12] [000002000000] +16:45:41 [ 7] [ 10] [0320164535] +16:45:41 [ 11] [ 6] [804175] +16:45:41 [ 12] [ 6] [164535] +16:45:41 [ 13] [ 4] [0320] +16:45:41 [ 18] [ 4] [6011] +16:45:41 [ 19] [ 3] [418] +16:45:41 [ 22] [ 3] [021] +16:45:41 [ 28] [ 9] [D00002000] +16:45:41 [ 32] [ 6] [621354] +16:45:41 [ 35] [ 27] [1808931800013086=1803500007] +16:45:41 [ 37] [ 12] [507904635908] +16:45:41 [ 39] [ 2] [42] +16:45:41 [ 41] [ 8] [17000800] +16:45:41 [ 49] [ 3] [418] +16:45:41 [ 52] [ 16] [D14224C62C5F278E] +16:45:41 ============================================================================ +16:45:41 Sending to : +16:45:41 ============================================================================ +16:45:41 + + +waiting on router queue for slot.... +16:45:42 ============================================================================ +16:45:42 Slot Id : <235> +16:45:42 Transaction Type : RESPONSE +16:45:42 Received From : +16:45:42 ============================================================================ +16:45:42 FNo. Len. Field Value +16:45:42 ============================================================================ +16:45:42 [ 1] [ 4] [0210] +16:45:42 [ 2] [ 16] [1808931800013086] +16:45:42 [ 3] [ 6] [012000] +16:45:42 [ 4] [ 12] [000002000000] +16:45:42 [ 7] [ 10] [0320164535] +16:45:42 [ 11] [ 6] [804175] +16:45:42 [ 12] [ 6] [164535] +16:45:42 [ 13] [ 4] [0320] +16:45:42 [ 18] [ 4] [6011] +16:45:42 [ 19] [ 3] [418] +16:45:42 [ 22] [ 3] [021] +16:45:42 [ 28] [ 9] [D00002000] +16:45:42 [ 32] [ 6] [621354] +16:45:42 [ 35] [ 27] [1808931800013086=1803500007] +16:45:42 [ 37] [ 12] [507904635908] +16:45:42 [ 39] [ 2] [42] +16:45:42 [ 41] [ 8] [17000800] +16:45:42 [ 49] [ 3] [418] +16:45:42 [ 52] [ 16] [D14224C62C5F278E] +16:45:42 ============================================================================ +16:45:42 Calculate Source COMM Id = 0 +16:45:42 ============================================================================ +16:45:42 + + +waiting on router queue for slot.... +16:45:43 ============================================================================ +16:45:43 Slot Id : <227> +16:45:43 Transaction Type : REQUEST +16:45:43 Received From : +16:45:43 ============================================================================ +16:45:43 FNo. Len. Field Value +16:45:43 ============================================================================ +16:45:43 [ 1] [ 4] [0200] +16:45:43 [ 2] [ 16] [1808931700021783] +16:45:43 [ 3] [ 6] [011000] +16:45:43 [ 4] [ 12] [000050000000] +16:45:43 [ 7] [ 10] [0320164538] +16:45:43 [ 11] [ 6] [804195] +16:45:43 [ 12] [ 6] [164538] +16:45:43 [ 13] [ 4] [0320] +16:45:43 [ 15] [ 4] [0320] +16:45:43 [ 18] [ 4] [6011] +16:45:43 [ 22] [ 3] [900] +16:45:43 [ 25] [ 2] [02] +16:45:43 [ 28] [ 9] [D00002000] +16:45:43 [ 32] [ 6] [621354] +16:45:43 [ 35] [ 27] [1808931700021783=1803500691] +16:45:43 [ 37] [ 12] [507902382506] +16:45:43 [ 41] [ 8] [01006300] +16:45:43 [ 42] [ 15] [NATIVE ] +16:45:43 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +16:45:43 [ 49] [ 3] [418] +16:45:43 [ 52] [ 16] [9EF76F2667BE9DBC] +16:45:43 ============================================================================ +16:45:43 + + +waiting on router queue for slot.... +16:45:43 Sending to : +16:45:43 ============================================================================ +16:45:43 Sending to : +16:45:43 ============================================================================ +16:45:43 ============================================================================ +16:45:43 Slot Id : <227> +16:45:43 Transaction Type : REQUEST +16:45:43 Received From : +16:45:43 ============================================================================ +16:45:43 FNo. Len. Field Value +16:45:43 ============================================================================ +16:45:43 [ 1] [ 4] [0200] +16:45:43 [ 2] [ 16] [1808931700021783] +16:45:43 [ 3] [ 6] [011000] +16:45:43 [ 4] [ 12] [000050000000] +16:45:43 [ 7] [ 10] [0320164538] +16:45:43 [ 11] [ 6] [804195] +16:45:43 [ 12] [ 6] [164538] +16:45:43 [ 13] [ 4] [0320] +16:45:43 [ 15] [ 4] [0320] +16:45:43 [ 18] [ 4] [6011] +16:45:43 [ 22] [ 3] [900] +16:45:43 [ 25] [ 2] [02] +16:45:43 [ 28] [ 9] [D00002000] +16:45:43 [ 32] [ 6] [621354] +16:45:43 [ 35] [ 27] [1808931700021783=1803500691] +16:45:43 [ 37] [ 12] [507902382506] +16:45:43 [ 41] [ 8] [01006300] +16:45:43 [ 42] [ 15] [NATIVE ] +16:45:43 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +16:45:43 [ 49] [ 3] [418] +16:45:43 [ 52] [ 16] [9EF76F2667BE9DBC] +16:45:43 ============================================================================ +16:45:43 + + +waiting on router queue for slot.... +16:45:43 Sending to : +16:45:43 ============================================================================ +16:45:43 ============================================================================ +16:45:43 Slot Id : <227> +16:45:43 Transaction Type : REQUEST +16:45:43 Received From : +16:45:43 ============================================================================ +16:45:43 FNo. Len. Field Value +16:45:43 ============================================================================ +16:45:43 [ 1] [ 4] [0200] +16:45:43 [ 2] [ 16] [1808931700021783] +16:45:43 [ 3] [ 6] [011000] +16:45:43 [ 4] [ 12] [000050000000] +16:45:43 [ 7] [ 10] [0320164538] +16:45:43 [ 11] [ 6] [804195] +16:45:43 [ 12] [ 6] [164538] +16:45:43 [ 13] [ 4] [0320] +16:45:43 [ 15] [ 4] [0320] +16:45:43 [ 18] [ 4] [6011] +16:45:43 [ 22] [ 3] [900] +16:45:43 [ 25] [ 2] [02] +16:45:43 [ 28] [ 9] [D00002000] +16:45:43 [ 32] [ 6] [621354] +16:45:43 [ 35] [ 27] [1808931700021783=1803500691] +16:45:43 [ 37] [ 12] [507902382506] +16:45:43 [ 41] [ 8] [01006300] +16:45:43 [ 42] [ 15] [NATIVE ] +16:45:43 [ 43] [ 40] [Shopping Mall 2 ChanthaboulyLAO] +16:45:43 [ 49] [ 3] [418] +16:45:43 [ 52] [ 16] [93236D167AACB58E] +16:45:43 ============================================================================ +16:45:43 + + +waiting on router queue for slot.... +16:45:43 Sending to : <2> +16:45:43 ============================================================================ +16:45:50 ============================================================================ +16:45:50 Slot Id : <215> +16:45:50 Transaction Type : REQUEST +16:45:50 Received From : +16:45:50 ============================================================================ +16:45:50 FNo. Len. Field Value +16:45:50 ============================================================================ +16:45:50 [ 1] [ 4] [0200] +16:45:50 [ 2] [ 16] [6213548000567576] +16:45:50 [ 3] [ 6] [010000] +16:45:50 [ 4] [ 12] [000070000000] +16:45:50 [ 7] [ 10] [0320164340] +16:45:50 [ 11] [ 6] [952280] +16:45:50 [ 12] [ 6] [164340] +16:45:50 [ 13] [ 4] [0320] +16:45:50 [ 15] [ 4] [0320] +16:45:50 [ 18] [ 4] [6011] +16:45:50 [ 19] [ 3] [418] +16:45:50 [ 22] [ 3] [021] +16:45:50 [ 25] [ 2] [01] +16:45:50 [ 28] [ 9] [D00002000] +16:45:50 [ 32] [ 6] [668899] +16:45:50 [ 35] [ 32] [6213548000567576=190212016757550] +16:45:50 [ 37] [ 12] [507902093418] +16:45:50 [ 41] [ 8] [03020021] +16:45:50 [ 42] [ 15] [APT ] +16:45:50 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:45:50 [ 49] [ 3] [418] +16:45:50 [ 52] [ 16] [83B510F97704234D] +16:45:50 ============================================================================ +16:45:50 + + +waiting on router queue for slot.... +16:45:50 Sending to : +16:45:50 ============================================================================ +16:45:50 Sending to : +16:45:50 ============================================================================ +16:45:50 ============================================================================ +16:45:50 Slot Id : <215> +16:45:50 Transaction Type : REQUEST +16:45:50 Received From : +16:45:50 ============================================================================ +16:45:50 FNo. Len. Field Value +16:45:50 ============================================================================ +16:45:50 [ 1] [ 4] [0200] +16:45:50 [ 2] [ 16] [6213548000567576] +16:45:50 [ 3] [ 6] [010000] +16:45:50 [ 4] [ 12] [000070000000] +16:45:50 [ 7] [ 10] [0320164340] +16:45:50 [ 11] [ 6] [952280] +16:45:50 [ 12] [ 6] [164340] +16:45:50 [ 13] [ 4] [0320] +16:45:50 [ 15] [ 4] [0320] +16:45:50 [ 18] [ 4] [6011] +16:45:50 [ 19] [ 3] [418] +16:45:50 [ 22] [ 3] [021] +16:45:50 [ 25] [ 2] [01] +16:45:50 [ 28] [ 9] [D00002000] +16:45:50 [ 32] [ 6] [668899] +16:45:50 [ 35] [ 32] [6213548000567576=190212016757550] +16:45:50 [ 37] [ 12] [507902093418] +16:45:50 [ 41] [ 8] [03020021] +16:45:50 [ 42] [ 15] [APT ] +16:45:50 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:45:50 [ 49] [ 3] [418] +16:45:50 [ 52] [ 16] [83B510F97704234D] +16:45:50 ============================================================================ +16:45:50 + + +waiting on router queue for slot.... +16:45:50 Sending to : +16:45:50 ============================================================================ +16:45:50 ============================================================================ +16:45:50 Slot Id : <215> +16:45:50 Transaction Type : REQUEST +16:45:50 Received From : +16:45:50 ============================================================================ +16:45:50 FNo. Len. Field Value +16:45:50 ============================================================================ +16:45:50 [ 1] [ 4] [0200] +16:45:50 [ 2] [ 16] [6213548000567576] +16:45:50 [ 3] [ 6] [010000] +16:45:50 [ 4] [ 12] [000070000000] +16:45:50 [ 7] [ 10] [0320164340] +16:45:50 [ 11] [ 6] [952280] +16:45:50 [ 12] [ 6] [164340] +16:45:50 [ 13] [ 4] [0320] +16:45:50 [ 15] [ 4] [0320] +16:45:50 [ 18] [ 4] [6011] +16:45:50 [ 19] [ 3] [418] +16:45:50 [ 22] [ 3] [021] +16:45:50 [ 25] [ 2] [01] +16:45:50 [ 28] [ 9] [D00002000] +16:45:50 [ 32] [ 6] [668899] +16:45:50 [ 35] [ 32] [6213548000567576=190212016757550] +16:45:50 [ 37] [ 12] [507902093418] +16:45:50 [ 41] [ 8] [03020021] +16:45:50 [ 42] [ 15] [APT ] +16:45:50 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:45:50 [ 49] [ 3] [418] +16:45:50 [ 52] [ 16] [E4C10F33C61EF9D6] +16:45:50 ============================================================================ +16:45:50 + + +waiting on router queue for slot.... +16:45:50 Sending to : <0> +16:45:50 ============================================================================ +16:45:51 ============================================================================ +16:45:51 Slot Id : <215> +16:45:51 Transaction Type : RESPONSE +16:45:51 Received From : +16:45:51 ============================================================================ +16:45:51 FNo. Len. Field Value +16:45:51 ============================================================================ +16:45:51 [ 1] [ 4] [0210] +16:45:51 [ 2] [ 16] [6213548000567576] +16:45:51 [ 3] [ 6] [010000] +16:45:51 [ 4] [ 12] [000070000000] +16:45:51 [ 7] [ 10] [0320164340] +16:45:51 [ 11] [ 6] [952280] +16:45:51 [ 12] [ 6] [164340] +16:45:51 [ 13] [ 4] [0320] +16:45:51 [ 15] [ 4] [0320] +16:45:51 [ 18] [ 4] [6011] +16:45:51 [ 19] [ 3] [418] +16:45:51 [ 32] [ 6] [668899] +16:45:51 [ 35] [ 32] [6213548000567576=190212016757550] +16:45:51 [ 37] [ 12] [507902093418] +16:45:51 [ 38] [ 6] [952280] +16:45:51 [ 39] [ 2] [51] +16:45:51 [ 41] [ 8] [03020021] +16:45:51 [ 49] [ 3] [418] +16:45:51 [ 54] [ 40] [0001418C0000680616240002418C000068061624] +16:45:51 ============================================================================ +16:45:51 Sending to : +16:45:51 ============================================================================ +16:45:51 + + +waiting on router queue for slot.... +16:45:52 ============================================================================ +16:45:52 Slot Id : <227> +16:45:52 Transaction Type : RESPONSE +16:45:52 Received From : +16:45:52 ============================================================================ +16:45:52 FNo. Len. Field Value +16:45:52 ============================================================================ +16:45:52 [ 1] [ 4] [0210] +16:45:52 [ 2] [ 16] [1808931700021783] +16:45:52 [ 3] [ 6] [011000] +16:45:52 [ 4] [ 12] [000050000000] +16:45:52 [ 6] [ 12] [000050000000] +16:45:52 [ 7] [ 10] [0320164538] +16:45:52 [ 11] [ 6] [804195] +16:45:52 [ 12] [ 6] [164538] +16:45:52 [ 13] [ 4] [0320] +16:45:52 [ 18] [ 4] [6011] +16:45:52 [ 19] [ 3] [418] +16:45:52 [ 22] [ 3] [021] +16:45:52 [ 32] [ 6] [621354] +16:45:52 [ 35] [ 27] [1808931700021783=1803500691] +16:45:52 [ 37] [ 12] [507902382506] +16:45:52 [ 38] [ 6] [804195] +16:45:52 [ 39] [ 2] [00] +16:45:52 [ 41] [ 8] [01006300] +16:45:52 [ 49] [ 3] [418] +16:45:52 [ 52] [ 16] [93236D167AACB58E] +16:45:52 [ 54] [ 20] [1001418C000151477300] +16:45:52 ============================================================================ +16:45:52 Sending to : +16:45:52 ============================================================================ +16:45:52 + + +waiting on router queue for slot.... +16:45:52 ============================================================================ +16:45:52 Slot Id : <215> +16:45:52 Transaction Type : RESPONSE +16:45:52 Received From : +16:45:52 ============================================================================ +16:45:52 FNo. Len. Field Value +16:45:52 ============================================================================ +16:45:52 [ 1] [ 4] [0210] +16:45:52 [ 2] [ 16] [6213548000567576] +16:45:52 [ 3] [ 6] [010000] +16:45:52 [ 4] [ 12] [000070000000] +16:45:52 [ 7] [ 10] [0320164340] +16:45:52 [ 11] [ 6] [952280] +16:45:52 [ 12] [ 6] [164340] +16:45:52 [ 13] [ 4] [0320] +16:45:52 [ 15] [ 4] [0320] +16:45:52 [ 18] [ 4] [6011] +16:45:52 [ 19] [ 3] [418] +16:45:52 [ 32] [ 6] [668899] +16:45:52 [ 35] [ 32] [6213548000567576=190212016757550] +16:45:52 [ 37] [ 12] [507902093418] +16:45:52 [ 38] [ 6] [952280] +16:45:52 [ 39] [ 2] [51] +16:45:52 [ 41] [ 8] [03020021] +16:45:52 [ 49] [ 3] [418] +16:45:52 [ 54] [ 40] [0001418C0000680616240002418C000068061624] +16:45:52 ============================================================================ +16:45:52 Calculate Source COMM Id = 4 +16:45:52 ============================================================================ +16:45:52 + + +waiting on router queue for slot.... +16:45:53 ============================================================================ +16:45:53 Slot Id : <227> +16:45:53 Transaction Type : RESPONSE +16:45:53 Received From : +16:45:53 ============================================================================ +16:45:53 FNo. Len. Field Value +16:45:53 ============================================================================ +16:45:53 [ 1] [ 4] [0210] +16:45:53 [ 2] [ 16] [1808931700021783] +16:45:53 [ 3] [ 6] [011000] +16:45:53 [ 4] [ 12] [000050000000] +16:45:53 [ 6] [ 12] [000050000000] +16:45:53 [ 7] [ 10] [0320164538] +16:45:53 [ 11] [ 6] [804195] +16:45:53 [ 12] [ 6] [164538] +16:45:53 [ 13] [ 4] [0320] +16:45:53 [ 18] [ 4] [6011] +16:45:53 [ 19] [ 3] [418] +16:45:53 [ 22] [ 3] [021] +16:45:53 [ 32] [ 6] [621354] +16:45:53 [ 35] [ 27] [1808931700021783=1803500691] +16:45:53 [ 37] [ 12] [507902382506] +16:45:53 [ 38] [ 6] [804195] +16:45:53 [ 39] [ 2] [00] +16:45:53 [ 41] [ 8] [01006300] +16:45:53 [ 49] [ 3] [418] +16:45:53 [ 52] [ 16] [93236D167AACB58E] +16:45:53 [ 54] [ 20] [1001418C000151477300] +16:45:53 ============================================================================ +16:45:53 Calculate Source COMM Id = 0 +16:45:53 ============================================================================ +16:45:53 + + +waiting on router queue for slot.... +16:45:55 ============================================================================ +16:45:55 Slot Id : <248> +16:45:55 Transaction Type : REQUEST +16:45:55 Received From : +16:45:55 ============================================================================ +16:45:55 FNo. Len. Field Value +16:45:55 ============================================================================ +16:45:55 [ 1] [ 4] [0200] +16:45:55 [ 2] [ 16] [6688990040164780] +16:45:55 [ 3] [ 6] [011000] +16:45:55 [ 4] [ 12] [000030000000] +16:45:55 [ 7] [ 10] [0320164550] +16:45:55 [ 11] [ 6] [804250] +16:45:55 [ 12] [ 6] [164550] +16:45:55 [ 13] [ 4] [0320] +16:45:55 [ 15] [ 4] [0320] +16:45:55 [ 18] [ 4] [6011] +16:45:55 [ 22] [ 3] [900] +16:45:55 [ 25] [ 2] [02] +16:45:55 [ 28] [ 9] [D00002000] +16:45:55 [ 32] [ 6] [621354] +16:45:55 [ 35] [ 37] [6688990040164780=98061261126977400000] +16:45:55 [ 37] [ 12] [507903433343] +16:45:55 [ 41] [ 8] [06001600] +16:45:55 [ 42] [ 15] [NATIVE ] +16:45:55 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +16:45:55 [ 49] [ 3] [418] +16:45:55 [ 52] [ 16] [2AC9125B72BD2348] +16:45:55 ============================================================================ +16:45:55 + + +waiting on router queue for slot.... +16:45:55 Sending to : +16:45:55 ============================================================================ +16:45:55 Sending to : +16:45:55 ============================================================================ +16:45:56 ============================================================================ +16:45:56 Slot Id : <248> +16:45:56 Transaction Type : REQUEST +16:45:56 Received From : +16:45:56 ============================================================================ +16:45:56 FNo. Len. Field Value +16:45:56 ============================================================================ +16:45:56 [ 1] [ 4] [0200] +16:45:56 [ 2] [ 16] [6688990040164780] +16:45:56 [ 3] [ 6] [011000] +16:45:56 [ 4] [ 12] [000030000000] +16:45:56 [ 7] [ 10] [0320164550] +16:45:56 [ 11] [ 6] [804250] +16:45:56 [ 12] [ 6] [164550] +16:45:56 [ 13] [ 4] [0320] +16:45:56 [ 15] [ 4] [0320] +16:45:56 [ 18] [ 4] [6011] +16:45:56 [ 22] [ 3] [900] +16:45:56 [ 25] [ 2] [02] +16:45:56 [ 28] [ 9] [D00002000] +16:45:56 [ 32] [ 6] [621354] +16:45:56 [ 35] [ 37] [6688990040164780=98061261126977400000] +16:45:56 [ 37] [ 12] [507903433343] +16:45:56 [ 41] [ 8] [06001600] +16:45:56 [ 42] [ 15] [NATIVE ] +16:45:56 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +16:45:56 [ 49] [ 3] [418] +16:45:56 [ 52] [ 16] [2AC9125B72BD2348] +16:45:56 ============================================================================ +16:45:56 + + +waiting on router queue for slot.... +16:45:56 Sending to : +16:45:56 ============================================================================ +16:45:56 ============================================================================ +16:45:56 Slot Id : <248> +16:45:56 Transaction Type : REQUEST +16:45:56 Received From : +16:45:56 ============================================================================ +16:45:56 FNo. Len. Field Value +16:45:56 ============================================================================ +16:45:56 [ 1] [ 4] [0200] +16:45:56 [ 2] [ 16] [6688990040164780] +16:45:56 [ 3] [ 6] [011000] +16:45:56 [ 4] [ 12] [000030000000] +16:45:56 [ 7] [ 10] [0320164550] +16:45:56 [ 11] [ 6] [804250] +16:45:56 [ 12] [ 6] [164550] +16:45:56 [ 13] [ 4] [0320] +16:45:56 [ 15] [ 4] [0320] +16:45:56 [ 18] [ 4] [6011] +16:45:56 [ 22] [ 3] [900] +16:45:56 [ 25] [ 2] [02] +16:45:56 [ 28] [ 9] [D00002000] +16:45:56 [ 32] [ 6] [621354] +16:45:56 [ 35] [ 37] [6688990040164780=98061261126977400000] +16:45:56 [ 37] [ 12] [507903433343] +16:45:56 [ 41] [ 8] [06001600] +16:45:56 [ 42] [ 15] [NATIVE ] +16:45:56 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +16:45:56 [ 49] [ 3] [418] +16:45:56 [ 52] [ 16] [A2EF37FD027D97FA] +16:45:56 ============================================================================ +16:45:56 + + +waiting on router queue for slot.... +16:45:56 Sending to : <4> +16:45:56 ============================================================================ +16:45:57 ============================================================================ +16:45:57 Slot Id : <248> +16:45:57 Transaction Type : RESPONSE +16:45:57 Received From : +16:45:57 ============================================================================ +16:45:57 FNo. Len. Field Value +16:45:57 ============================================================================ +16:45:57 [ 1] [ 4] [0210] +16:45:57 [ 2] [ 16] [6688990040164780] +16:45:57 [ 3] [ 6] [011000] +16:45:57 [ 4] [ 12] [000030000000] +16:45:57 [ 11] [ 6] [804250] +16:45:57 [ 12] [ 6] [164550] +16:45:57 [ 15] [ 4] [0320] +16:45:57 [ 18] [ 4] [6011] +16:45:57 [ 32] [ 6] [621354] +16:45:57 [ 35] [ 37] [6688990040164780=98061261126977400000] +16:45:57 [ 37] [ 12] [507903433343] +16:45:57 [ 38] [ 6] [987785] +16:45:57 [ 39] [ 2] [00] +16:45:57 [ 41] [ 8] [06001600] +16:45:57 [ 49] [ 3] [418] +16:45:57 [ 54] [ 20] [1002418C003011937726] +16:45:57 ============================================================================ +16:45:57 Sending to : +16:45:57 ============================================================================ +16:45:57 + + +waiting on router queue for slot.... +16:45:58 ============================================================================ +16:45:58 Slot Id : <244> +16:45:58 Transaction Type : REQUEST +16:45:58 Received From : +16:45:58 ============================================================================ +16:45:58 FNo. Len. Field Value +16:45:58 ============================================================================ +16:45:58 [ 1] [ 4] [0800] +16:45:58 [ 7] [ 10] [0320094505] +16:45:58 [ 11] [ 6] [157300] +16:45:58 [ 70] [ 3] [301] +16:45:58 ============================================================================ +16:45:58 + + +waiting on router queue for slot.... +16:45:58 Sending to : +16:45:58 ============================================================================ +16:45:58 ============================================================================ +16:45:58 Slot Id : <244> +16:45:58 Transaction Type : RESPONSE +16:45:58 Received From : +16:45:58 ============================================================================ +16:45:58 FNo. Len. Field Value +16:45:58 ============================================================================ +16:45:58 [ 1] [ 4] [0810] +16:45:58 [ 7] [ 10] [0320094505] +16:45:58 [ 11] [ 6] [157300] +16:45:58 [ 39] [ 2] [00] +16:45:58 [ 70] [ 3] [301] +16:45:58 ============================================================================ +16:45:58 Calculate Source COMM Id = 2 +16:45:58 ============================================================================ +16:45:58 + + +waiting on router queue for slot.... +16:45:58 ============================================================================ +16:45:58 Slot Id : <248> +16:45:58 Transaction Type : RESPONSE +16:45:58 Received From : +16:45:58 ============================================================================ +16:45:58 FNo. Len. Field Value +16:45:58 ============================================================================ +16:45:58 [ 1] [ 4] [0210] +16:45:58 [ 2] [ 16] [6688990040164780] +16:45:58 [ 3] [ 6] [011000] +16:45:58 [ 4] [ 12] [000030000000] +16:45:58 [ 11] [ 6] [804250] +16:45:58 [ 12] [ 6] [164550] +16:45:58 [ 15] [ 4] [0320] +16:45:58 [ 18] [ 4] [6011] +16:45:58 [ 32] [ 6] [621354] +16:45:58 [ 35] [ 37] [6688990040164780=98061261126977400000] +16:45:58 [ 37] [ 12] [507903433343] +16:45:58 [ 38] [ 6] [987785] +16:45:58 [ 39] [ 2] [00] +16:45:58 [ 41] [ 8] [06001600] +16:45:58 [ 49] [ 3] [418] +16:45:58 [ 54] [ 20] [1002418C003011937726] +16:45:58 ============================================================================ +16:45:58 Calculate Source COMM Id = 0 +16:45:58 ============================================================================ +16:45:58 + + +waiting on router queue for slot.... +16:46:00 ============================================================================ +16:46:00 Slot Id : <243> +16:46:00 Transaction Type : REQUEST +16:46:00 Received From : +16:46:00 ============================================================================ +16:46:00 FNo. Len. Field Value +16:46:00 ============================================================================ +16:46:00 [ 1] [ 4] [0200] +16:46:00 [ 2] [ 16] [6213544002074950] +16:46:00 [ 3] [ 6] [301000] +16:46:00 [ 4] [ 12] [000000000000] +16:46:00 [ 7] [ 10] [0320164350] +16:46:00 [ 11] [ 6] [952285] +16:46:00 [ 12] [ 6] [164350] +16:46:00 [ 13] [ 4] [0320] +16:46:00 [ 15] [ 4] [0320] +16:46:00 [ 18] [ 4] [6011] +16:46:00 [ 19] [ 3] [418] +16:46:00 [ 22] [ 3] [021] +16:46:00 [ 25] [ 2] [01] +16:46:00 [ 28] [ 9] [D00000000] +16:46:00 [ 32] [ 6] [668899] +16:46:00 [ 35] [ 32] [6213544002074950=491212017495088] +16:46:00 [ 37] [ 12] [507901422832] +16:46:00 [ 41] [ 8] [03314001] +16:46:00 [ 42] [ 15] [APT ] +16:46:00 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +16:46:00 [ 49] [ 3] [418] +16:46:00 [ 52] [ 16] [0F8A72070E6744E7] +16:46:00 ============================================================================ +16:46:00 + + +waiting on router queue for slot.... +16:46:00 Sending to : +16:46:00 ============================================================================ +16:46:00 Sending to : +16:46:00 ============================================================================ +16:46:00 ============================================================================ +16:46:00 Slot Id : <243> +16:46:00 Transaction Type : REQUEST +16:46:00 Received From : +16:46:00 ============================================================================ +16:46:00 FNo. Len. Field Value +16:46:00 ============================================================================ +16:46:00 [ 1] [ 4] [0200] +16:46:00 [ 2] [ 16] [6213544002074950] +16:46:00 [ 3] [ 6] [301000] +16:46:00 [ 4] [ 12] [000000000000] +16:46:00 [ 7] [ 10] [0320164350] +16:46:00 [ 11] [ 6] [952285] +16:46:00 [ 12] [ 6] [164350] +16:46:00 [ 13] [ 4] [0320] +16:46:00 [ 15] [ 4] [0320] +16:46:00 [ 18] [ 4] [6011] +16:46:00 [ 19] [ 3] [418] +16:46:00 [ 22] [ 3] [021] +16:46:00 [ 25] [ 2] [01] +16:46:00 [ 28] [ 9] [D00000000] +16:46:00 [ 32] [ 6] [668899] +16:46:00 [ 35] [ 32] [6213544002074950=491212017495088] +16:46:00 [ 37] [ 12] [507901422832] +16:46:00 [ 41] [ 8] [03314001] +16:46:00 [ 42] [ 15] [APT ] +16:46:00 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +16:46:00 [ 49] [ 3] [418] +16:46:00 [ 52] [ 16] [0F8A72070E6744E7] +16:46:00 ============================================================================ +16:46:00 + + +waiting on router queue for slot.... +16:46:00 Sending to : +16:46:00 ============================================================================ +16:46:00 ============================================================================ +16:46:00 Slot Id : <243> +16:46:00 Transaction Type : REQUEST +16:46:00 Received From : +16:46:00 ============================================================================ +16:46:00 FNo. Len. Field Value +16:46:00 ============================================================================ +16:46:00 [ 1] [ 4] [0200] +16:46:00 [ 2] [ 16] [6213544002074950] +16:46:00 [ 3] [ 6] [301000] +16:46:00 [ 4] [ 12] [000000000000] +16:46:00 [ 7] [ 10] [0320164350] +16:46:00 [ 11] [ 6] [952285] +16:46:00 [ 12] [ 6] [164350] +16:46:00 [ 13] [ 4] [0320] +16:46:00 [ 15] [ 4] [0320] +16:46:00 [ 18] [ 4] [6011] +16:46:00 [ 19] [ 3] [418] +16:46:00 [ 22] [ 3] [021] +16:46:00 [ 25] [ 2] [01] +16:46:00 [ 28] [ 9] [D00000000] +16:46:00 [ 32] [ 6] [668899] +16:46:00 [ 35] [ 32] [6213544002074950=491212017495088] +16:46:00 [ 37] [ 12] [507901422832] +16:46:00 [ 41] [ 8] [03314001] +16:46:00 [ 42] [ 15] [APT ] +16:46:00 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +16:46:00 [ 49] [ 3] [418] +16:46:00 [ 52] [ 16] [D086A4226CD66BC3] +16:46:00 ============================================================================ +16:46:00 + + +waiting on router queue for slot.... +16:46:00 Sending to : <0> +16:46:00 ============================================================================ +16:46:01 ============================================================================ +16:46:01 Slot Id : <243> +16:46:01 Transaction Type : RESPONSE +16:46:01 Received From : +16:46:01 ============================================================================ +16:46:01 FNo. Len. Field Value +16:46:01 ============================================================================ +16:46:01 [ 1] [ 4] [0210] +16:46:01 [ 2] [ 16] [6213544002074950] +16:46:01 [ 3] [ 6] [301000] +16:46:01 [ 4] [ 12] [000000000000] +16:46:01 [ 7] [ 10] [0320164350] +16:46:01 [ 11] [ 6] [952285] +16:46:01 [ 12] [ 6] [164350] +16:46:01 [ 13] [ 4] [0320] +16:46:01 [ 15] [ 4] [0320] +16:46:01 [ 18] [ 4] [6011] +16:46:01 [ 19] [ 3] [418] +16:46:01 [ 32] [ 6] [668899] +16:46:01 [ 35] [ 32] [6213544002074950=491212017495088] +16:46:01 [ 37] [ 12] [507901422832] +16:46:01 [ 38] [ 6] [560049] +16:46:01 [ 39] [ 2] [00] +16:46:01 [ 41] [ 8] [03314001] +16:46:01 [ 49] [ 3] [418] +16:46:01 [ 54] [ 40] [1001418C0000246241061002418C000024624106] +16:46:01 ============================================================================ +16:46:01 Sending to : +16:46:01 ============================================================================ +16:46:01 + + +waiting on router queue for slot.... +16:46:03 ============================================================================ +16:46:03 Slot Id : <243> +16:46:03 Transaction Type : RESPONSE +16:46:03 Received From : +16:46:03 ============================================================================ +16:46:03 FNo. Len. Field Value +16:46:03 ============================================================================ +16:46:03 [ 1] [ 4] [0210] +16:46:03 [ 2] [ 16] [6213544002074950] +16:46:03 [ 3] [ 6] [301000] +16:46:03 [ 4] [ 12] [000000000000] +16:46:03 [ 7] [ 10] [0320164350] +16:46:03 [ 11] [ 6] [952285] +16:46:03 [ 12] [ 6] [164350] +16:46:03 [ 13] [ 4] [0320] +16:46:03 [ 15] [ 4] [0320] +16:46:03 [ 18] [ 4] [6011] +16:46:03 [ 19] [ 3] [418] +16:46:03 [ 32] [ 6] [668899] +16:46:03 [ 35] [ 32] [6213544002074950=491212017495088] +16:46:03 [ 37] [ 12] [507901422832] +16:46:03 [ 38] [ 6] [560049] +16:46:03 [ 39] [ 2] [00] +16:46:03 [ 41] [ 8] [03314001] +16:46:03 [ 49] [ 3] [418] +16:46:03 [ 54] [ 40] [1001418C0000246241061002418C000024624106] +16:46:03 ============================================================================ +16:46:03 Calculate Source COMM Id = 4 +16:46:03 ============================================================================ +16:46:03 + + +waiting on router queue for slot.... +16:46:05 ============================================================================ +16:46:05 Slot Id : <251> +16:46:05 Transaction Type : REQUEST +16:46:05 Received From : +16:46:05 ============================================================================ +16:46:05 FNo. Len. Field Value +16:46:05 ============================================================================ +16:46:05 [ 1] [ 4] [0800] +16:46:05 [ 2] [ 5] [02531] +16:46:05 [ 3] [ 6] [579168] +16:46:05 [ 7] [ 10] [0320094605] +16:46:05 [ 11] [ 6] [807385] +16:46:05 [ 15] [ 10] [0320094605] +16:46:05 [ 37] [ 11] [57916807385] +16:46:05 [ 70] [ 3] [001] +16:46:05 ============================================================================ +16:46:05 + + +waiting on router queue for slot.... +16:46:05 ============================================================================ +16:46:05 Slot Id : <251> +16:46:05 Transaction Type : RESPONSE +16:46:05 Received From : +16:46:05 ============================================================================ +16:46:05 FNo. Len. Field Value +16:46:05 ============================================================================ +16:46:05 [ 1] [ 4] [0810] +16:46:05 [ 7] [ 10] [0320094605] +16:46:05 [ 11] [ 6] [807385] +16:46:05 [ 15] [ 4] [0320] +16:46:05 [ 37] [ 12] [57916807385] +16:46:05 [ 39] [ 2] [00] +16:46:05 [ 70] [ 3] [001] +16:46:05 ============================================================================ +16:46:05 Sending to : +16:46:05 ============================================================================ +16:46:05 + + +waiting on router queue for slot.... +16:46:14 ============================================================================ +16:46:14 Slot Id : <242> +16:46:14 Transaction Type : REQUEST +16:46:14 Received From : +16:46:14 ============================================================================ +16:46:14 FNo. Len. Field Value +16:46:14 ============================================================================ +16:46:14 [ 1] [ 4] [0800] +16:46:14 [ 7] [ 10] [0320094521] +16:46:14 [ 11] [ 6] [157301] +16:46:14 [ 70] [ 3] [301] +16:46:14 ============================================================================ +16:46:14 + + +waiting on router queue for slot.... +16:46:14 Sending to : +16:46:14 ============================================================================ +16:46:14 ============================================================================ +16:46:14 Slot Id : <242> +16:46:14 Transaction Type : RESPONSE +16:46:14 Received From : +16:46:14 ============================================================================ +16:46:14 FNo. Len. Field Value +16:46:14 ============================================================================ +16:46:14 [ 1] [ 4] [0810] +16:46:14 [ 7] [ 10] [0320094521] +16:46:14 [ 11] [ 6] [157301] +16:46:14 [ 39] [ 2] [00] +16:46:14 [ 70] [ 3] [301] +16:46:14 ============================================================================ +16:46:14 Calculate Source COMM Id = 2 +16:46:14 ============================================================================ +16:46:14 + + +waiting on router queue for slot.... +16:46:20 ============================================================================ +16:46:20 Slot Id : <177> +16:46:20 Transaction Type : REQUEST +16:46:20 Received From : +16:46:20 ============================================================================ +16:46:20 FNo. Len. Field Value +16:46:20 ============================================================================ +16:46:20 [ 1] [ 4] [0200] +16:46:20 [ 2] [ 16] [6213548000567576] +16:46:20 [ 3] [ 6] [010000] +16:46:20 [ 4] [ 12] [000060000000] +16:46:20 [ 7] [ 10] [0320164410] +16:46:20 [ 11] [ 6] [952298] +16:46:20 [ 12] [ 6] [164410] +16:46:20 [ 13] [ 4] [0320] +16:46:20 [ 15] [ 4] [0320] +16:46:20 [ 18] [ 4] [6011] +16:46:20 [ 19] [ 3] [418] +16:46:20 [ 22] [ 3] [021] +16:46:20 [ 25] [ 2] [01] +16:46:20 [ 28] [ 9] [D00002000] +16:46:20 [ 32] [ 6] [668899] +16:46:20 [ 35] [ 32] [6213548000567576=190212016757550] +16:46:20 [ 37] [ 12] [507902093419] +16:46:20 [ 41] [ 8] [03020021] +16:46:20 [ 42] [ 15] [APT ] +16:46:20 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:46:20 [ 49] [ 3] [418] +16:46:20 [ 52] [ 16] [83B510F97704234D] +16:46:20 ============================================================================ +16:46:20 + + +waiting on router queue for slot.... +16:46:20 Sending to : +16:46:20 ============================================================================ +16:46:20 Sending to : +16:46:20 ============================================================================ +16:46:20 ============================================================================ +16:46:20 Slot Id : <250> +16:46:20 Transaction Type : REQUEST +16:46:20 Received From : +16:46:20 ============================================================================ +16:46:20 FNo. Len. Field Value +16:46:20 ============================================================================ +16:46:20 [ 1] [ 4] [0800] +16:46:20 [ 7] [ 10] [0320235808] +16:46:20 [ 11] [ 6] [165808] +16:46:20 [ 37] [ 12] [57916165808] +16:46:20 [ 70] [ 3] [301] +16:46:20 ============================================================================ +16:46:20 + + +waiting on router queue for slot.... +16:46:20 Sending to : +16:46:20 ============================================================================ +16:46:20 ============================================================================ +16:46:20 Slot Id : <250> +16:46:20 Transaction Type : RESPONSE +16:46:20 Received From : +16:46:20 ============================================================================ +16:46:20 FNo. Len. Field Value +16:46:20 ============================================================================ +16:46:20 [ 1] [ 4] [0810] +16:46:20 [ 7] [ 10] [0320235808] +16:46:20 [ 11] [ 6] [165808] +16:46:20 [ 37] [ 12] [579161658080] +16:46:20 [ 39] [ 2] [00] +16:46:20 [ 70] [ 3] [810] +16:46:20 ============================================================================ +16:46:20 Calculate Source COMM Id = 6 +16:46:20 ============================================================================ +16:46:20 + + +waiting on router queue for slot.... +16:46:20 ============================================================================ +16:46:20 Slot Id : <177> +16:46:20 Transaction Type : REQUEST +16:46:20 Received From : +16:46:20 ============================================================================ +16:46:20 FNo. Len. Field Value +16:46:20 ============================================================================ +16:46:20 [ 1] [ 4] [0200] +16:46:20 [ 2] [ 16] [6213548000567576] +16:46:20 [ 3] [ 6] [010000] +16:46:20 [ 4] [ 12] [000060000000] +16:46:20 [ 7] [ 10] [0320164410] +16:46:20 [ 11] [ 6] [952298] +16:46:20 [ 12] [ 6] [164410] +16:46:20 [ 13] [ 4] [0320] +16:46:20 [ 15] [ 4] [0320] +16:46:20 [ 18] [ 4] [6011] +16:46:20 [ 19] [ 3] [418] +16:46:20 [ 22] [ 3] [021] +16:46:20 [ 25] [ 2] [01] +16:46:20 [ 28] [ 9] [D00002000] +16:46:20 [ 32] [ 6] [668899] +16:46:20 [ 35] [ 32] [6213548000567576=190212016757550] +16:46:20 [ 37] [ 12] [507902093419] +16:46:20 [ 41] [ 8] [03020021] +16:46:20 [ 42] [ 15] [APT ] +16:46:20 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:46:20 [ 49] [ 3] [418] +16:46:20 [ 52] [ 16] [83B510F97704234D] +16:46:20 ============================================================================ +16:46:20 + + +waiting on router queue for slot.... +16:46:20 Sending to : +16:46:20 ============================================================================ +16:46:20 ============================================================================ +16:46:20 Slot Id : <177> +16:46:20 Transaction Type : REQUEST +16:46:20 Received From : +16:46:20 ============================================================================ +16:46:20 FNo. Len. Field Value +16:46:20 ============================================================================ +16:46:20 [ 1] [ 4] [0200] +16:46:20 [ 2] [ 16] [6213548000567576] +16:46:20 [ 3] [ 6] [010000] +16:46:20 [ 4] [ 12] [000060000000] +16:46:20 [ 7] [ 10] [0320164410] +16:46:20 [ 11] [ 6] [952298] +16:46:20 [ 12] [ 6] [164410] +16:46:20 [ 13] [ 4] [0320] +16:46:20 [ 15] [ 4] [0320] +16:46:20 [ 18] [ 4] [6011] +16:46:20 [ 19] [ 3] [418] +16:46:20 [ 22] [ 3] [021] +16:46:20 [ 25] [ 2] [01] +16:46:20 [ 28] [ 9] [D00002000] +16:46:20 [ 32] [ 6] [668899] +16:46:20 [ 35] [ 32] [6213548000567576=190212016757550] +16:46:20 [ 37] [ 12] [507902093419] +16:46:20 [ 41] [ 8] [03020021] +16:46:20 [ 42] [ 15] [APT ] +16:46:20 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +16:46:20 [ 49] [ 3] [418] +16:46:20 [ 52] [ 16] [E4C10F33C61EF9D6] +16:46:20 ============================================================================ +16:46:20 + + +waiting on router queue for slot.... +16:46:20 Sending to : <0> +16:46:20 ============================================================================ +16:46:21 ============================================================================ +16:46:21 Slot Id : <177> +16:46:21 Transaction Type : RESPONSE +16:46:21 Received From : +16:46:21 ============================================================================ +16:46:21 FNo. Len. Field Value +16:46:21 ============================================================================ +16:46:21 [ 1] [ 4] [0210] +16:46:21 [ 2] [ 16] [6213548000567576] +16:46:21 [ 3] [ 6] [010000] +16:46:21 [ 4] [ 12] [000060000000] +16:46:21 [ 7] [ 10] [0320164410] +16:46:21 [ 11] [ 6] [952298] +16:46:21 [ 12] [ 6] [164410] +16:46:21 [ 13] [ 4] [0320] +16:46:21 [ 15] [ 4] [0320] +16:46:21 [ 18] [ 4] [6011] +16:46:21 [ 19] [ 3] [418] +16:46:21 [ 32] [ 6] [668899] +16:46:21 [ 35] [ 32] [6213548000567576=190212016757550] +16:46:21 [ 37] [ 12] [507902093419] +16:46:21 [ 38] [ 6] [661257] +16:46:21 [ 39] [ 2] [00] +16:46:21 [ 41] [ 8] [03020021] +16:46:21 [ 49] [ 3] [418] +16:46:21 [ 54] [ 40] [0001418C0000078616240002418C000007861624] +16:46:21 ============================================================================ +16:46:21 Sending to : +16:46:21 ============================================================================ +16:46:21 + + +waiting on router queue for slot.... +16:46:22 ============================================================================ +16:46:22 Slot Id : <255> +16:46:22 Transaction Type : REQUEST +16:46:22 Received From : +16:46:22 ============================================================================ +16:46:22 FNo. Len. Field Value +16:46:22 ============================================================================ +16:46:22 [ 1] [ 4] [0800] +16:46:22 [ 7] [ 10] [0320094412] +16:46:22 [ 11] [ 6] [021457] +16:46:22 [ 37] [ 12] [57916021457] +16:46:22 [ 70] [ 3] [301] +16:46:22 ============================================================================ +16:46:22 + + +waiting on router queue for slot.... +16:46:22 Sending to : +16:46:22 ============================================================================ +16:46:22 ============================================================================ +16:46:22 Slot Id : <255> +16:46:22 Transaction Type : RESPONSE +16:46:22 Received From : +16:46:22 ============================================================================ +16:46:22 FNo. Len. Field Value +16:46:22 ============================================================================ +16:46:22 [ 1] [ 4] [0810] +16:46:22 [ 7] [ 10] [0320094412] +16:46:22 [ 11] [ 6] [021457] +16:46:22 [ 37] [ 12] [579160214570] +16:46:22 [ 39] [ 2] [00] +16:46:22 [ 70] [ 3] [810] +16:46:22 ============================================================================ +16:46:22 Calculate Source COMM Id = 4 +16:46:22 ============================================================================ +16:46:22 + + +waiting on router queue for slot.... +16:46:22 ============================================================================ +16:46:22 Slot Id : <177> +16:46:22 Transaction Type : RESPONSE +16:46:22 Received From : +16:46:22 ============================================================================ +16:46:22 FNo. Len. Field Value +16:46:22 ============================================================================ +16:46:22 [ 1] [ 4] [0210] +16:46:22 [ 2] [ 16] [6213548000567576] +16:46:22 [ 3] [ 6] [010000] +16:46:22 [ 4] [ 12] [000060000000] +16:46:22 [ 7] [ 10] [0320164410] +16:46:22 [ 11] [ 6] [952298] +16:46:22 [ 12] [ 6] [164410] +16:46:22 [ 13] [ 4] [0320] +16:46:22 [ 15] [ 4] [0320] +16:46:22 [ 18] [ 4] [6011] +16:46:22 [ 19] [ 3] [418] +16:46:22 [ 32] [ 6] [668899] +16:46:22 [ 35] [ 32] [6213548000567576=190212016757550] +16:46:22 [ 37] [ 12] [507902093419] +16:46:22 [ 38] [ 6] [661257] +16:46:22 [ 39] [ 2] [00] +16:46:22 [ 41] [ 8] [03020021] +16:46:22 [ 49] [ 3] [418] +16:46:22 [ 54] [ 40] [0001418C0000078616240002418C000007861624] +16:46:22 ============================================================================ +16:46:22 Calculate Source COMM Id = 4 +16:46:22 ============================================================================ +16:46:22 + + +waiting on router queue for slot.... +16:46:22 ============================================================================ +16:46:22 Slot Id : <226> +16:46:22 Transaction Type : REQUEST +16:46:22 Received From : +16:46:22 ============================================================================ +16:46:22 FNo. Len. Field Value +16:46:22 ============================================================================ +16:46:22 [ 1] [ 4] [0200] +16:46:22 [ 2] [ 16] [6213544000465044] +16:46:22 [ 3] [ 6] [010000] +16:46:22 [ 4] [ 12] [000001000000] +16:46:22 [ 7] [ 10] [0320165409] +16:46:22 [ 11] [ 6] [240450] +16:46:22 [ 12] [ 6] [165409] +16:46:22 [ 13] [ 4] [0320] +16:46:22 [ 14] [ 4] [4912] +16:46:22 [ 15] [ 4] [0320] +16:46:22 [ 18] [ 4] [6011] +16:46:22 [ 22] [ 3] [900] +16:46:22 [ 25] [ 2] [02] +16:46:22 [ 28] [ 9] [D00002000] +16:46:22 [ 32] [ 6] [220699] +16:46:22 [ 35] [ 32] [6213544000465044=491212016504446] +16:46:22 [ 37] [ 12] [507900360210] +16:46:22 [ 41] [ 8] [05000300] +16:46:22 [ 42] [ 15] [APTRA ] +16:46:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:46:22 [ 49] [ 3] [418] +16:46:22 [ 52] [ 16] [B82AEB07A79BE317] +16:46:22 ============================================================================ +16:46:22 + + +waiting on router queue for slot.... +16:46:22 Sending to : +16:46:22 ============================================================================ +16:46:22 Sending to : +16:46:22 ============================================================================ +16:46:22 ============================================================================ +16:46:22 Slot Id : <226> +16:46:22 Transaction Type : REQUEST +16:46:22 Received From : +16:46:22 ============================================================================ +16:46:22 FNo. Len. Field Value +16:46:22 ============================================================================ +16:46:22 [ 1] [ 4] [0200] +16:46:22 [ 2] [ 16] [6213544000465044] +16:46:22 [ 3] [ 6] [010000] +16:46:22 [ 4] [ 12] [000001000000] +16:46:22 [ 7] [ 10] [0320165409] +16:46:22 [ 11] [ 6] [240450] +16:46:22 [ 12] [ 6] [165409] +16:46:22 [ 13] [ 4] [0320] +16:46:22 [ 14] [ 4] [4912] +16:46:22 [ 15] [ 4] [0320] +16:46:22 [ 18] [ 4] [6011] +16:46:22 [ 22] [ 3] [900] +16:46:22 [ 25] [ 2] [02] +16:46:22 [ 28] [ 9] [D00002000] +16:46:22 [ 32] [ 6] [220699] +16:46:22 [ 35] [ 32] [6213544000465044=491212016504446] +16:46:22 [ 37] [ 12] [507900360210] +16:46:22 [ 41] [ 8] [05000300] +16:46:22 [ 42] [ 15] [APTRA ] +16:46:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:46:22 [ 49] [ 3] [418] +16:46:22 [ 52] [ 16] [B82AEB07A79BE317] +16:46:22 ============================================================================ +16:46:22 + + +waiting on router queue for slot.... +16:46:22 Sending to : +16:46:22 ============================================================================ +16:46:23 ============================================================================ +16:46:23 Slot Id : <226> +16:46:23 Transaction Type : REQUEST +16:46:23 Received From : +16:46:23 ============================================================================ +16:46:23 FNo. Len. Field Value +16:46:23 ============================================================================ +16:46:23 [ 1] [ 4] [0200] +16:46:23 [ 2] [ 16] [6213544000465044] +16:46:23 [ 3] [ 6] [010000] +16:46:23 [ 4] [ 12] [000001000000] +16:46:23 [ 7] [ 10] [0320165409] +16:46:23 [ 11] [ 6] [240450] +16:46:23 [ 12] [ 6] [165409] +16:46:23 [ 13] [ 4] [0320] +16:46:23 [ 14] [ 4] [4912] +16:46:23 [ 15] [ 4] [0320] +16:46:23 [ 18] [ 4] [6011] +16:46:23 [ 22] [ 3] [900] +16:46:23 [ 25] [ 2] [02] +16:46:23 [ 28] [ 9] [D00002000] +16:46:23 [ 32] [ 6] [220699] +16:46:23 [ 35] [ 32] [6213544000465044=491212016504446] +16:46:23 [ 37] [ 12] [507900360210] +16:46:23 [ 41] [ 8] [05000300] +16:46:23 [ 42] [ 15] [APTRA ] +16:46:23 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:46:23 [ 49] [ 3] [418] +16:46:23 [ 52] [ 16] [03C9F44B41910361] +16:46:23 ============================================================================ +16:46:23 + + +waiting on router queue for slot.... +16:46:23 Sending to : <0> +16:46:23 ============================================================================ +16:46:23 ============================================================================ +16:46:23 Slot Id : <233> +16:46:23 Transaction Type : REQUEST +16:46:23 Received From : +16:46:23 ============================================================================ +16:46:23 FNo. Len. Field Value +16:46:23 ============================================================================ +16:46:23 [ 1] [ 4] [0200] +16:46:23 [ 2] [ 16] [6213544002199849] +16:46:23 [ 3] [ 6] [010000] +16:46:23 [ 4] [ 12] [000035000000] +16:46:23 [ 7] [ 10] [0320164413] +16:46:23 [ 11] [ 6] [952300] +16:46:23 [ 12] [ 6] [164413] +16:46:23 [ 13] [ 4] [0320] +16:46:23 [ 15] [ 4] [0320] +16:46:23 [ 18] [ 4] [6011] +16:46:23 [ 19] [ 3] [418] +16:46:23 [ 22] [ 3] [021] +16:46:23 [ 25] [ 2] [01] +16:46:23 [ 28] [ 9] [D00002000] +16:46:23 [ 32] [ 6] [668899] +16:46:23 [ 35] [ 32] [6213544002199849=491212019984618] +16:46:23 [ 37] [ 12] [507902025621] +16:46:23 [ 41] [ 8] [03414002] +16:46:23 [ 42] [ 15] [APT ] +16:46:23 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:46:23 [ 49] [ 3] [418] +16:46:23 [ 52] [ 16] [C8826D5794C0849E] +16:46:23 ============================================================================ +16:46:23 + + +waiting on router queue for slot.... +16:46:23 Sending to : +16:46:23 ============================================================================ +16:46:23 Sending to : +16:46:23 ============================================================================ +16:46:23 ============================================================================ +16:46:23 Slot Id : <233> +16:46:23 Transaction Type : REQUEST +16:46:23 Received From : +16:46:23 ============================================================================ +16:46:23 FNo. Len. Field Value +16:46:23 ============================================================================ +16:46:23 [ 1] [ 4] [0200] +16:46:23 [ 2] [ 16] [6213544002199849] +16:46:23 [ 3] [ 6] [010000] +16:46:23 [ 4] [ 12] [000035000000] +16:46:23 [ 7] [ 10] [0320164413] +16:46:23 [ 11] [ 6] [952300] +16:46:23 [ 12] [ 6] [164413] +16:46:23 [ 13] [ 4] [0320] +16:46:23 [ 15] [ 4] [0320] +16:46:23 [ 18] [ 4] [6011] +16:46:23 [ 19] [ 3] [418] +16:46:23 [ 22] [ 3] [021] +16:46:23 [ 25] [ 2] [01] +16:46:23 [ 28] [ 9] [D00002000] +16:46:23 [ 32] [ 6] [668899] +16:46:23 [ 35] [ 32] [6213544002199849=491212019984618] +16:46:23 [ 37] [ 12] [507902025621] +16:46:23 [ 41] [ 8] [03414002] +16:46:23 [ 42] [ 15] [APT ] +16:46:23 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:46:23 [ 49] [ 3] [418] +16:46:23 [ 52] [ 16] [C8826D5794C0849E] +16:46:23 ============================================================================ +16:46:23 + + +waiting on router queue for slot.... +16:46:23 Sending to : +16:46:23 ============================================================================ +16:46:23 ============================================================================ +16:46:23 Slot Id : <233> +16:46:23 Transaction Type : REQUEST +16:46:23 Received From : +16:46:23 ============================================================================ +16:46:23 FNo. Len. Field Value +16:46:23 ============================================================================ +16:46:23 [ 1] [ 4] [0200] +16:46:23 [ 2] [ 16] [6213544002199849] +16:46:23 [ 3] [ 6] [010000] +16:46:23 [ 4] [ 12] [000035000000] +16:46:23 [ 7] [ 10] [0320164413] +16:46:23 [ 11] [ 6] [952300] +16:46:23 [ 12] [ 6] [164413] +16:46:23 [ 13] [ 4] [0320] +16:46:23 [ 15] [ 4] [0320] +16:46:23 [ 18] [ 4] [6011] +16:46:23 [ 19] [ 3] [418] +16:46:23 [ 22] [ 3] [021] +16:46:23 [ 25] [ 2] [01] +16:46:23 [ 28] [ 9] [D00002000] +16:46:23 [ 32] [ 6] [668899] +16:46:23 [ 35] [ 32] [6213544002199849=491212019984618] +16:46:23 [ 37] [ 12] [507902025621] +16:46:23 [ 41] [ 8] [03414002] +16:46:23 [ 42] [ 15] [APT ] +16:46:23 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:46:23 [ 49] [ 3] [418] +16:46:23 [ 52] [ 16] [AA3C406BB4A9BB63] +16:46:23 ============================================================================ +16:46:23 + + +waiting on router queue for slot.... +16:46:23 Sending to : <0> +16:46:23 ============================================================================ +16:46:23 ============================================================================ +16:46:23 Slot Id : <226> +16:46:23 Transaction Type : RESPONSE +16:46:23 Received From : +16:46:23 ============================================================================ +16:46:23 FNo. Len. Field Value +16:46:23 ============================================================================ +16:46:23 [ 1] [ 4] [0210] +16:46:23 [ 2] [ 16] [6213544000465044] +16:46:23 [ 3] [ 6] [010000] +16:46:23 [ 4] [ 12] [000001000000] +16:46:23 [ 7] [ 10] [0320165409] +16:46:23 [ 11] [ 6] [240450] +16:46:23 [ 12] [ 6] [165409] +16:46:23 [ 13] [ 4] [0320] +16:46:23 [ 15] [ 4] [0320] +16:46:23 [ 18] [ 4] [6011] +16:46:23 [ 32] [ 6] [220699] +16:46:23 [ 35] [ 32] [6213544000465044=491212016504446] +16:46:23 [ 37] [ 12] [507900360210] +16:46:23 [ 38] [ 6] [080265] +16:46:23 [ 39] [ 2] [00] +16:46:23 [ 41] [ 8] [05000300] +16:46:23 [ 49] [ 3] [418] +16:46:23 [ 54] [ 40] [0001418C0000057305820002418C000005730582] +16:46:23 ============================================================================ +16:46:23 Sending to : +16:46:23 ============================================================================ +16:46:23 + + +waiting on router queue for slot.... +16:46:24 ============================================================================ +16:46:24 Slot Id : <233> +16:46:24 Transaction Type : RESPONSE +16:46:24 Received From : +16:46:24 ============================================================================ +16:46:24 FNo. Len. Field Value +16:46:24 ============================================================================ +16:46:24 [ 1] [ 4] [0210] +16:46:24 [ 2] [ 16] [6213544002199849] +16:46:24 [ 3] [ 6] [010000] +16:46:24 [ 4] [ 12] [000035000000] +16:46:24 [ 7] [ 10] [0320164413] +16:46:24 [ 11] [ 6] [952300] +16:46:24 [ 12] [ 6] [164413] +16:46:24 [ 13] [ 4] [0320] +16:46:24 [ 15] [ 4] [0320] +16:46:24 [ 18] [ 4] [6011] +16:46:24 [ 19] [ 3] [418] +16:46:24 [ 32] [ 6] [668899] +16:46:24 [ 35] [ 32] [6213544002199849=491212019984618] +16:46:24 [ 37] [ 12] [507902025621] +16:46:24 [ 38] [ 6] [518957] +16:46:24 [ 39] [ 2] [00] +16:46:24 [ 41] [ 8] [03414002] +16:46:24 [ 49] [ 3] [418] +16:46:24 [ 54] [ 40] [0001418C0000061273780002418C000006127378] +16:46:24 ============================================================================ +16:46:24 Sending to : +16:46:24 ============================================================================ +16:46:24 + + +waiting on router queue for slot.... +16:46:24 ============================================================================ +16:46:24 Slot Id : <226> +16:46:24 Transaction Type : RESPONSE +16:46:24 Received From : +16:46:24 ============================================================================ +16:46:24 FNo. Len. Field Value +16:46:24 ============================================================================ +16:46:24 [ 1] [ 4] [0210] +16:46:24 [ 2] [ 16] [6213544000465044] +16:46:24 [ 3] [ 6] [010000] +16:46:24 [ 4] [ 12] [000001000000] +16:46:24 [ 7] [ 10] [0320165409] +16:46:24 [ 11] [ 6] [240450] +16:46:24 [ 12] [ 6] [165409] +16:46:24 [ 13] [ 4] [0320] +16:46:24 [ 15] [ 4] [0320] +16:46:24 [ 18] [ 4] [6011] +16:46:24 [ 32] [ 6] [220699] +16:46:24 [ 35] [ 32] [6213544000465044=491212016504446] +16:46:24 [ 37] [ 12] [507900360210] +16:46:24 [ 38] [ 6] [080265] +16:46:24 [ 39] [ 2] [00] +16:46:24 [ 41] [ 8] [05000300] +16:46:24 [ 49] [ 3] [418] +16:46:24 [ 54] [ 40] [0001418C0000057305820002418C000005730582] +16:46:24 ============================================================================ +16:46:24 Calculate Source COMM Id = 1 +16:46:24 ============================================================================ +16:46:24 + + +waiting on router queue for slot.... +16:46:26 ============================================================================ +16:46:26 Slot Id : <233> +16:46:26 Transaction Type : RESPONSE +16:46:26 Received From : +16:46:26 ============================================================================ +16:46:26 FNo. Len. Field Value +16:46:26 ============================================================================ +16:46:26 [ 1] [ 4] [0210] +16:46:26 [ 2] [ 16] [6213544002199849] +16:46:26 [ 3] [ 6] [010000] +16:46:26 [ 4] [ 12] [000035000000] +16:46:26 [ 7] [ 10] [0320164413] +16:46:26 [ 11] [ 6] [952300] +16:46:26 [ 12] [ 6] [164413] +16:46:26 [ 13] [ 4] [0320] +16:46:26 [ 15] [ 4] [0320] +16:46:26 [ 18] [ 4] [6011] +16:46:26 [ 19] [ 3] [418] +16:46:26 [ 32] [ 6] [668899] +16:46:26 [ 35] [ 32] [6213544002199849=491212019984618] +16:46:26 [ 37] [ 12] [507902025621] +16:46:26 [ 38] [ 6] [518957] +16:46:26 [ 39] [ 2] [00] +16:46:26 [ 41] [ 8] [03414002] +16:46:26 [ 49] [ 3] [418] +16:46:26 [ 54] [ 40] [0001418C0000061273780002418C000006127378] +16:46:26 ============================================================================ +16:46:26 Calculate Source COMM Id = 4 +16:46:26 ============================================================================ +16:46:26 + + +waiting on router queue for slot.... +16:46:29 ============================================================================ +16:46:29 Slot Id : <237> +16:46:29 Transaction Type : REQUEST +16:46:29 Received From : +16:46:29 ============================================================================ +16:46:29 FNo. Len. Field Value +16:46:29 ============================================================================ +16:46:29 [ 1] [ 4] [0800] +16:46:29 [ 7] [ 10] [0320094536] +16:46:29 [ 11] [ 6] [157302] +16:46:29 [ 70] [ 3] [301] +16:46:29 ============================================================================ +16:46:29 + + +waiting on router queue for slot.... +16:46:29 Sending to : +16:46:29 ============================================================================ +16:46:29 ============================================================================ +16:46:29 Slot Id : <237> +16:46:29 Transaction Type : RESPONSE +16:46:29 Received From : +16:46:29 ============================================================================ +16:46:29 FNo. Len. Field Value +16:46:29 ============================================================================ +16:46:29 [ 1] [ 4] [0810] +16:46:29 [ 7] [ 10] [0320094536] +16:46:29 [ 11] [ 6] [157302] +16:46:29 [ 39] [ 2] [00] +16:46:29 [ 70] [ 3] [301] +16:46:29 ============================================================================ +16:46:29 Calculate Source COMM Id = 2 +16:46:29 ============================================================================ +16:46:29 + + +waiting on router queue for slot.... +16:46:33 ============================================================================ +16:46:33 Slot Id : <200> +16:46:33 Transaction Type : REQUEST +16:46:33 Received From : +16:46:33 ============================================================================ +16:46:33 FNo. Len. Field Value +16:46:33 ============================================================================ +16:46:33 [ 1] [ 4] [0200] +16:46:33 [ 2] [ 16] [6213545000325492] +16:46:33 [ 3] [ 6] [010000] +16:46:33 [ 4] [ 12] [000150000000] +16:46:33 [ 7] [ 10] [0320094539] +16:46:33 [ 11] [ 6] [270601] +16:46:33 [ 12] [ 6] [164539] +16:46:33 [ 13] [ 4] [0320] +16:46:33 [ 14] [ 4] [4912] +16:46:33 [ 15] [ 4] [0320] +16:46:33 [ 18] [ 4] [6011] +16:46:33 [ 19] [ 3] [418] +16:46:33 [ 22] [ 3] [021] +16:46:33 [ 25] [ 2] [01] +16:46:33 [ 28] [ 9] [D00002000] +16:46:33 [ 32] [ 6] [180893] +16:46:33 [ 35] [ 32] [6213545000325492=491212012549209] +16:46:33 [ 37] [ 12] [507909270601] +16:46:33 [ 41] [ 8] [0401XSBR] +16:46:33 [ 42] [ 15] [999999 ] +16:46:33 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:46:33 [ 49] [ 3] [418] +16:46:33 [ 52] [ 16] [95848908257AF43B] +16:46:33 ============================================================================ +16:46:33 + + +waiting on router queue for slot.... +16:46:33 Sending to : +16:46:33 ============================================================================ +16:46:33 Sending to : +16:46:33 ============================================================================ +16:46:33 ============================================================================ +16:46:33 Slot Id : <200> +16:46:33 Transaction Type : REQUEST +16:46:33 Received From : +16:46:33 ============================================================================ +16:46:33 FNo. Len. Field Value +16:46:33 ============================================================================ +16:46:33 [ 1] [ 4] [0200] +16:46:33 [ 2] [ 16] [6213545000325492] +16:46:33 [ 3] [ 6] [010000] +16:46:33 [ 4] [ 12] [000150000000] +16:46:33 [ 7] [ 10] [0320094539] +16:46:33 [ 11] [ 6] [270601] +16:46:33 [ 12] [ 6] [164539] +16:46:33 [ 13] [ 4] [0320] +16:46:33 [ 14] [ 4] [4912] +16:46:33 [ 15] [ 4] [0320] +16:46:33 [ 18] [ 4] [6011] +16:46:33 [ 19] [ 3] [418] +16:46:33 [ 22] [ 3] [021] +16:46:33 [ 25] [ 2] [01] +16:46:33 [ 28] [ 9] [D00002000] +16:46:33 [ 32] [ 6] [180893] +16:46:33 [ 35] [ 32] [6213545000325492=491212012549209] +16:46:33 [ 37] [ 12] [507909270601] +16:46:33 [ 41] [ 8] [0401XSBR] +16:46:33 [ 42] [ 15] [999999 ] +16:46:33 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:46:33 [ 49] [ 3] [418] +16:46:33 [ 52] [ 16] [95848908257AF43B] +16:46:33 ============================================================================ +16:46:33 + + +waiting on router queue for slot.... +16:46:33 Sending to : +16:46:33 ============================================================================ +16:46:33 ============================================================================ +16:46:33 Slot Id : <200> +16:46:33 Transaction Type : REQUEST +16:46:33 Received From : +16:46:33 ============================================================================ +16:46:33 FNo. Len. Field Value +16:46:33 ============================================================================ +16:46:33 [ 1] [ 4] [0200] +16:46:33 [ 2] [ 16] [6213545000325492] +16:46:33 [ 3] [ 6] [010000] +16:46:33 [ 4] [ 12] [000150000000] +16:46:33 [ 7] [ 10] [0320094539] +16:46:33 [ 11] [ 6] [270601] +16:46:33 [ 12] [ 6] [164539] +16:46:33 [ 13] [ 4] [0320] +16:46:33 [ 14] [ 4] [4912] +16:46:33 [ 15] [ 4] [0320] +16:46:33 [ 18] [ 4] [6011] +16:46:33 [ 19] [ 3] [418] +16:46:33 [ 22] [ 3] [021] +16:46:33 [ 25] [ 2] [01] +16:46:33 [ 28] [ 9] [D00002000] +16:46:33 [ 32] [ 6] [180893] +16:46:33 [ 35] [ 32] [6213545000325492=491212012549209] +16:46:33 [ 37] [ 12] [507909270601] +16:46:33 [ 41] [ 8] [0401XSBR] +16:46:33 [ 42] [ 15] [999999 ] +16:46:33 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:46:33 [ 49] [ 3] [418] +16:46:33 [ 52] [ 16] [508AFBE2CC995018] +16:46:33 ============================================================================ +16:46:33 + + +waiting on router queue for slot.... +16:46:33 Sending to : <0> +16:46:33 ============================================================================ +16:46:33 ============================================================================ +16:46:33 Slot Id : <200> +16:46:33 Transaction Type : RESPONSE +16:46:33 Received From : +16:46:33 ============================================================================ +16:46:33 FNo. Len. Field Value +16:46:33 ============================================================================ +16:46:33 [ 1] [ 4] [0210] +16:46:33 [ 2] [ 16] [6213545000325492] +16:46:33 [ 3] [ 6] [010000] +16:46:33 [ 4] [ 12] [000150000000] +16:46:33 [ 7] [ 10] [0320094539] +16:46:33 [ 11] [ 6] [270601] +16:46:33 [ 12] [ 6] [164539] +16:46:33 [ 13] [ 4] [0320] +16:46:33 [ 15] [ 4] [0320] +16:46:33 [ 18] [ 4] [6011] +16:46:33 [ 19] [ 3] [418] +16:46:33 [ 22] [ 3] [021] +16:46:33 [ 32] [ 6] [180893] +16:46:33 [ 35] [ 32] [6213545000325492=491212012549209] +16:46:33 [ 37] [ 12] [507909270601] +16:46:33 [ 39] [ 2] [61] +16:46:33 [ 41] [ 8] [0401XSBR] +16:46:33 [ 49] [ 3] [418] +16:46:33 ============================================================================ +16:46:33 Sending to : +16:46:33 ============================================================================ +16:46:33 + + +waiting on router queue for slot.... +16:46:34 ============================================================================ +16:46:34 Slot Id : <200> +16:46:34 Transaction Type : RESPONSE +16:46:34 Received From : +16:46:34 ============================================================================ +16:46:34 FNo. Len. Field Value +16:46:34 ============================================================================ +16:46:34 [ 1] [ 4] [0210] +16:46:34 [ 2] [ 16] [6213545000325492] +16:46:34 [ 3] [ 6] [010000] +16:46:34 [ 4] [ 12] [000150000000] +16:46:34 [ 7] [ 10] [0320094539] +16:46:34 [ 11] [ 6] [270601] +16:46:34 [ 12] [ 6] [164539] +16:46:34 [ 13] [ 4] [0320] +16:46:34 [ 15] [ 4] [0320] +16:46:34 [ 18] [ 4] [6011] +16:46:34 [ 19] [ 3] [418] +16:46:34 [ 22] [ 3] [021] +16:46:34 [ 32] [ 6] [180893] +16:46:34 [ 35] [ 32] [6213545000325492=491212012549209] +16:46:34 [ 37] [ 12] [507909270601] +16:46:34 [ 39] [ 2] [61] +16:46:34 [ 41] [ 8] [0401XSBR] +16:46:34 [ 49] [ 3] [418] +16:46:34 ============================================================================ +16:46:34 Calculate Source COMM Id = 2 +16:46:34 ============================================================================ +16:46:34 + + +waiting on router queue for slot.... +16:46:35 ============================================================================ +16:46:35 Slot Id : <238> +16:46:35 Transaction Type : REQUEST +16:46:35 Received From : +16:46:35 ============================================================================ +16:46:35 FNo. Len. Field Value +16:46:35 ============================================================================ +16:46:35 [ 1] [ 4] [0200] +16:46:35 [ 2] [ 16] [6688990050035599] +16:46:35 [ 3] [ 6] [011000] +16:46:35 [ 4] [ 12] [000010000000] +16:46:35 [ 7] [ 10] [0320165422] +16:46:35 [ 11] [ 6] [240872] +16:46:35 [ 12] [ 6] [165422] +16:46:35 [ 13] [ 4] [0320] +16:46:35 [ 14] [ 4] [9803] +16:46:35 [ 15] [ 4] [0320] +16:46:35 [ 18] [ 4] [6011] +16:46:35 [ 22] [ 3] [900] +16:46:35 [ 25] [ 2] [02] +16:46:35 [ 28] [ 9] [D00002000] +16:46:35 [ 32] [ 6] [220699] +16:46:35 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:46:35 [ 37] [ 12] [507900410458] +16:46:35 [ 41] [ 8] [08000300] +16:46:35 [ 42] [ 15] [APTRA ] +16:46:35 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:46:35 [ 49] [ 3] [418] +16:46:35 [ 52] [ 16] [BE9E2D016205384A] +16:46:35 ============================================================================ +16:46:35 + + +waiting on router queue for slot.... +16:46:35 Sending to : +16:46:35 ============================================================================ +16:46:35 Sending to : +16:46:35 ============================================================================ +16:46:35 ============================================================================ +16:46:35 Slot Id : <238> +16:46:35 Transaction Type : REQUEST +16:46:35 Received From : +16:46:35 ============================================================================ +16:46:35 FNo. Len. Field Value +16:46:35 ============================================================================ +16:46:35 [ 1] [ 4] [0200] +16:46:35 [ 2] [ 16] [6688990050035599] +16:46:35 [ 3] [ 6] [011000] +16:46:35 [ 4] [ 12] [000010000000] +16:46:35 [ 7] [ 10] [0320165422] +16:46:35 [ 11] [ 6] [240872] +16:46:35 [ 12] [ 6] [165422] +16:46:35 [ 13] [ 4] [0320] +16:46:35 [ 14] [ 4] [9803] +16:46:35 [ 15] [ 4] [0320] +16:46:35 [ 18] [ 4] [6011] +16:46:35 [ 22] [ 3] [900] +16:46:35 [ 25] [ 2] [02] +16:46:35 [ 28] [ 9] [D00002000] +16:46:35 [ 32] [ 6] [220699] +16:46:35 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:46:35 [ 37] [ 12] [507900410458] +16:46:35 [ 41] [ 8] [08000300] +16:46:35 [ 42] [ 15] [APTRA ] +16:46:35 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:46:35 [ 49] [ 3] [418] +16:46:35 [ 52] [ 16] [BE9E2D016205384A] +16:46:35 ============================================================================ +16:46:35 + + +waiting on router queue for slot.... +16:46:35 Sending to : +16:46:35 ============================================================================ +16:46:35 ============================================================================ +16:46:35 Slot Id : <238> +16:46:35 Transaction Type : REQUEST +16:46:35 Received From : +16:46:35 ============================================================================ +16:46:35 FNo. Len. Field Value +16:46:35 ============================================================================ +16:46:35 [ 1] [ 4] [0200] +16:46:35 [ 2] [ 16] [6688990050035599] +16:46:35 [ 3] [ 6] [011000] +16:46:35 [ 4] [ 12] [000010000000] +16:46:35 [ 7] [ 10] [0320165422] +16:46:35 [ 11] [ 6] [240872] +16:46:35 [ 12] [ 6] [165422] +16:46:35 [ 13] [ 4] [0320] +16:46:35 [ 14] [ 4] [9803] +16:46:35 [ 15] [ 4] [0320] +16:46:35 [ 18] [ 4] [6011] +16:46:35 [ 22] [ 3] [900] +16:46:35 [ 25] [ 2] [02] +16:46:35 [ 28] [ 9] [D00002000] +16:46:35 [ 32] [ 6] [220699] +16:46:35 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:46:35 [ 37] [ 12] [507900410458] +16:46:35 [ 41] [ 8] [08000300] +16:46:35 [ 42] [ 15] [APTRA ] +16:46:35 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:46:35 [ 49] [ 3] [418] +16:46:35 [ 52] [ 16] [FD679D240874A658] +16:46:35 ============================================================================ +16:46:35 + + +waiting on router queue for slot.... +16:46:35 Sending to : <0> +16:46:35 ============================================================================ +16:46:36 ============================================================================ +16:46:36 Slot Id : <238> +16:46:36 Transaction Type : RESPONSE +16:46:36 Received From : +16:46:36 ============================================================================ +16:46:36 FNo. Len. Field Value +16:46:36 ============================================================================ +16:46:36 [ 1] [ 4] [0210] +16:46:36 [ 2] [ 16] [6688990050035599] +16:46:36 [ 3] [ 6] [011000] +16:46:36 [ 4] [ 12] [000010000000] +16:46:36 [ 7] [ 10] [0320165422] +16:46:36 [ 11] [ 6] [240872] +16:46:36 [ 12] [ 6] [165422] +16:46:36 [ 13] [ 4] [0320] +16:46:36 [ 15] [ 4] [0320] +16:46:36 [ 18] [ 4] [6011] +16:46:36 [ 22] [ 3] [900] +16:46:36 [ 32] [ 6] [220699] +16:46:36 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:46:36 [ 37] [ 12] [507900410458] +16:46:36 [ 39] [ 2] [14] +16:46:36 [ 41] [ 8] [08000300] +16:46:36 [ 49] [ 3] [418] +16:46:36 ============================================================================ +16:46:36 Sending to : +16:46:36 ============================================================================ +16:46:36 + + +waiting on router queue for slot.... +16:46:36 ============================================================================ +16:46:36 Slot Id : <238> +16:46:36 Transaction Type : RESPONSE +16:46:36 Received From : +16:46:36 ============================================================================ +16:46:36 FNo. Len. Field Value +16:46:36 ============================================================================ +16:46:36 [ 1] [ 4] [0210] +16:46:36 [ 2] [ 16] [6688990050035599] +16:46:36 [ 3] [ 6] [011000] +16:46:36 [ 4] [ 12] [000010000000] +16:46:36 [ 7] [ 10] [0320165422] +16:46:36 [ 11] [ 6] [240872] +16:46:36 [ 12] [ 6] [165422] +16:46:36 [ 13] [ 4] [0320] +16:46:36 [ 15] [ 4] [0320] +16:46:36 [ 18] [ 4] [6011] +16:46:36 [ 22] [ 3] [900] +16:46:36 [ 32] [ 6] [220699] +16:46:36 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:46:36 [ 37] [ 12] [507900410458] +16:46:36 [ 39] [ 2] [14] +16:46:36 [ 41] [ 8] [08000300] +16:46:36 [ 49] [ 3] [418] +16:46:36 ============================================================================ +16:46:36 Calculate Source COMM Id = 1 +16:46:36 ============================================================================ +16:46:36 + + +waiting on router queue for slot.... +16:46:39 ============================================================================ +16:46:39 Slot Id : <260> +16:46:39 Transaction Type : REQUEST +16:46:39 Received From : +16:46:39 ============================================================================ +16:46:39 FNo. Len. Field Value +16:46:39 ============================================================================ +16:46:39 [ 1] [ 4] [0200] +16:46:39 [ 2] [ 16] [6688990107166108] +16:46:39 [ 3] [ 6] [010000] +16:46:39 [ 4] [ 12] [000100000000] +16:46:39 [ 7] [ 10] [0320164634] +16:46:39 [ 11] [ 6] [804439] +16:46:39 [ 12] [ 6] [164634] +16:46:39 [ 13] [ 4] [0320] +16:46:39 [ 15] [ 4] [0320] +16:46:39 [ 18] [ 4] [6011] +16:46:39 [ 22] [ 3] [900] +16:46:39 [ 25] [ 2] [02] +16:46:39 [ 28] [ 9] [D00002000] +16:46:39 [ 32] [ 6] [621354] +16:46:39 [ 35] [ 37] [6688990107166108=44021231610888800000] +16:46:39 [ 37] [ 12] [507903245311] +16:46:39 [ 41] [ 8] [04003400] +16:46:39 [ 42] [ 15] [NATIVE ] +16:46:39 [ 43] [ 40] [PAKSE AIRPORT Pakse LAO] +16:46:39 [ 49] [ 3] [418] +16:46:39 [ 52] [ 16] [79041636F42FB32D] +16:46:39 ============================================================================ +16:46:39 + + +waiting on router queue for slot.... +16:46:39 Sending to : +16:46:39 ============================================================================ +16:46:39 Sending to : +16:46:39 ============================================================================ +16:46:39 ============================================================================ +16:46:39 Slot Id : <260> +16:46:39 Transaction Type : REQUEST +16:46:39 Received From : +16:46:39 ============================================================================ +16:46:39 FNo. Len. Field Value +16:46:39 ============================================================================ +16:46:39 [ 1] [ 4] [0200] +16:46:39 [ 2] [ 16] [6688990107166108] +16:46:39 [ 3] [ 6] [010000] +16:46:39 [ 4] [ 12] [000100000000] +16:46:39 [ 7] [ 10] [0320164634] +16:46:39 [ 11] [ 6] [804439] +16:46:39 [ 12] [ 6] [164634] +16:46:39 [ 13] [ 4] [0320] +16:46:39 [ 15] [ 4] [0320] +16:46:39 [ 18] [ 4] [6011] +16:46:39 [ 22] [ 3] [900] +16:46:39 [ 25] [ 2] [02] +16:46:39 [ 28] [ 9] [D00002000] +16:46:39 [ 32] [ 6] [621354] +16:46:39 [ 35] [ 37] [6688990107166108=44021231610888800000] +16:46:39 [ 37] [ 12] [507903245311] +16:46:39 [ 41] [ 8] [04003400] +16:46:39 [ 42] [ 15] [NATIVE ] +16:46:39 [ 43] [ 40] [PAKSE AIRPORT Pakse LAO] +16:46:39 [ 49] [ 3] [418] +16:46:39 [ 52] [ 16] [79041636F42FB32D] +16:46:39 ============================================================================ +16:46:39 + + +waiting on router queue for slot.... +16:46:39 Sending to : +16:46:39 ============================================================================ +16:46:39 ============================================================================ +16:46:39 Slot Id : <260> +16:46:39 Transaction Type : REQUEST +16:46:39 Received From : +16:46:39 ============================================================================ +16:46:39 FNo. Len. Field Value +16:46:39 ============================================================================ +16:46:39 [ 1] [ 4] [0200] +16:46:39 [ 2] [ 16] [6688990107166108] +16:46:39 [ 3] [ 6] [010000] +16:46:39 [ 4] [ 12] [000100000000] +16:46:39 [ 7] [ 10] [0320164634] +16:46:39 [ 11] [ 6] [804439] +16:46:39 [ 12] [ 6] [164634] +16:46:39 [ 13] [ 4] [0320] +16:46:39 [ 15] [ 4] [0320] +16:46:39 [ 18] [ 4] [6011] +16:46:39 [ 22] [ 3] [900] +16:46:39 [ 25] [ 2] [02] +16:46:39 [ 28] [ 9] [D00002000] +16:46:39 [ 32] [ 6] [621354] +16:46:39 [ 35] [ 37] [6688990107166108=44021231610888800000] +16:46:39 [ 37] [ 12] [507903245311] +16:46:39 [ 41] [ 8] [04003400] +16:46:39 [ 42] [ 15] [NATIVE ] +16:46:39 [ 43] [ 40] [PAKSE AIRPORT Pakse LAO] +16:46:39 [ 49] [ 3] [418] +16:46:39 [ 52] [ 16] [5F84B0DA085509A5] +16:46:39 ============================================================================ +16:46:39 + + +waiting on router queue for slot.... +16:46:39 Sending to : <4> +16:46:39 ============================================================================ +16:46:40 ============================================================================ +16:46:40 Slot Id : <260> +16:46:40 Transaction Type : RESPONSE +16:46:40 Received From : +16:46:40 ============================================================================ +16:46:40 FNo. Len. Field Value +16:46:40 ============================================================================ +16:46:40 [ 1] [ 4] [0210] +16:46:40 [ 2] [ 16] [6688990107166108] +16:46:40 [ 3] [ 6] [010000] +16:46:40 [ 4] [ 12] [000100000000] +16:46:40 [ 11] [ 6] [804439] +16:46:40 [ 12] [ 6] [164634] +16:46:40 [ 15] [ 4] [0320] +16:46:40 [ 18] [ 4] [6011] +16:46:40 [ 32] [ 6] [621354] +16:46:40 [ 35] [ 37] [6688990107166108=44021231610888800000] +16:46:40 [ 37] [ 12] [507903245311] +16:46:40 [ 38] [ 6] [873830] +16:46:40 [ 39] [ 2] [00] +16:46:40 [ 41] [ 8] [04003400] +16:46:40 [ 49] [ 3] [418] +16:46:40 [ 54] [ 20] [0002418C001570122719] +16:46:40 ============================================================================ +16:46:40 Sending to : +16:46:40 ============================================================================ +16:46:40 + + +waiting on router queue for slot.... +16:46:41 ============================================================================ +16:46:41 Slot Id : <234> +16:46:41 Transaction Type : REQUEST +16:46:41 Received From : +16:46:41 ============================================================================ +16:46:41 FNo. Len. Field Value +16:46:41 ============================================================================ +16:46:41 [ 1] [ 4] [0200] +16:46:41 [ 2] [ 16] [6213544001558847] +16:46:41 [ 3] [ 6] [011000] +16:46:41 [ 4] [ 12] [000050000000] +16:46:41 [ 7] [ 10] [0320164701] +16:46:41 [ 11] [ 6] [208965] +16:46:41 [ 12] [ 6] [164207] +16:46:41 [ 13] [ 4] [0320] +16:46:41 [ 14] [ 4] [4912] +16:46:41 [ 15] [ 4] [0320] +16:46:41 [ 18] [ 4] [6011] +16:46:41 [ 19] [ 3] [418] +16:46:41 [ 22] [ 3] [021] +16:46:41 [ 25] [ 2] [01] +16:46:41 [ 28] [ 9] [D00002000] +16:46:41 [ 32] [ 6] [198901] +16:46:41 [ 35] [ 32] [6213544001558847=491212015884675] +16:46:41 [ 37] [ 12] [507916208965] +16:46:41 [ 41] [ 8] [19529001] +16:46:41 [ 42] [ 15] [000000041952901] +16:46:41 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:46:41 [ 49] [ 3] [418] +16:46:41 [ 52] [ 16] [142433AA30D86A46] +16:46:41 ============================================================================ +16:46:41 + + +waiting on router queue for slot.... +16:46:41 Sending to : +16:46:41 ============================================================================ +16:46:41 Sending to : +16:46:41 ============================================================================ +16:46:41 ============================================================================ +16:46:41 Slot Id : <234> +16:46:41 Transaction Type : REQUEST +16:46:41 Received From : +16:46:41 ============================================================================ +16:46:41 FNo. Len. Field Value +16:46:41 ============================================================================ +16:46:41 [ 1] [ 4] [0200] +16:46:41 [ 2] [ 16] [6213544001558847] +16:46:41 [ 3] [ 6] [011000] +16:46:41 [ 4] [ 12] [000050000000] +16:46:41 [ 7] [ 10] [0320164701] +16:46:41 [ 11] [ 6] [208965] +16:46:41 [ 12] [ 6] [164207] +16:46:41 [ 13] [ 4] [0320] +16:46:41 [ 14] [ 4] [4912] +16:46:41 [ 15] [ 4] [0320] +16:46:41 [ 18] [ 4] [6011] +16:46:41 [ 19] [ 3] [418] +16:46:41 [ 22] [ 3] [021] +16:46:41 [ 25] [ 2] [01] +16:46:41 [ 28] [ 9] [D00002000] +16:46:41 [ 32] [ 6] [198901] +16:46:41 [ 35] [ 32] [6213544001558847=491212015884675] +16:46:41 [ 37] [ 12] [507916208965] +16:46:41 [ 41] [ 8] [19529001] +16:46:41 [ 42] [ 15] [000000041952901] +16:46:41 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:46:41 [ 49] [ 3] [418] +16:46:41 [ 52] [ 16] [142433AA30D86A46] +16:46:41 ============================================================================ +16:46:41 + + +waiting on router queue for slot.... +16:46:41 Sending to : +16:46:41 ============================================================================ +16:46:41 ============================================================================ +16:46:41 Slot Id : <234> +16:46:41 Transaction Type : REQUEST +16:46:41 Received From : +16:46:41 ============================================================================ +16:46:41 FNo. Len. Field Value +16:46:41 ============================================================================ +16:46:41 [ 1] [ 4] [0200] +16:46:41 [ 2] [ 16] [6213544001558847] +16:46:41 [ 3] [ 6] [011000] +16:46:41 [ 4] [ 12] [000050000000] +16:46:41 [ 7] [ 10] [0320164701] +16:46:41 [ 11] [ 6] [208965] +16:46:41 [ 12] [ 6] [164207] +16:46:41 [ 13] [ 4] [0320] +16:46:41 [ 14] [ 4] [4912] +16:46:41 [ 15] [ 4] [0320] +16:46:41 [ 18] [ 4] [6011] +16:46:41 [ 19] [ 3] [418] +16:46:41 [ 22] [ 3] [021] +16:46:41 [ 25] [ 2] [01] +16:46:41 [ 28] [ 9] [D00002000] +16:46:41 [ 32] [ 6] [198901] +16:46:41 [ 35] [ 32] [6213544001558847=491212015884675] +16:46:41 [ 37] [ 12] [507916208965] +16:46:41 [ 41] [ 8] [19529001] +16:46:41 [ 42] [ 15] [000000041952901] +16:46:41 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:46:41 [ 49] [ 3] [418] +16:46:41 [ 52] [ 16] [81C37CBECBB5DBB6] +16:46:41 ============================================================================ +16:46:41 + + +waiting on router queue for slot.... +16:46:41 Sending to : <0> +16:46:41 ============================================================================ +16:46:42 ============================================================================ +16:46:42 Slot Id : <234> +16:46:42 Transaction Type : RESPONSE +16:46:42 Received From : +16:46:42 ============================================================================ +16:46:42 FNo. Len. Field Value +16:46:42 ============================================================================ +16:46:42 [ 1] [ 4] [0210] +16:46:42 [ 2] [ 16] [6213544001558847] +16:46:42 [ 3] [ 6] [011000] +16:46:42 [ 4] [ 12] [000050000000] +16:46:42 [ 7] [ 10] [0320164701] +16:46:42 [ 11] [ 6] [208965] +16:46:42 [ 12] [ 6] [164207] +16:46:42 [ 13] [ 4] [0320] +16:46:42 [ 15] [ 4] [0320] +16:46:42 [ 18] [ 4] [6011] +16:46:42 [ 19] [ 3] [418] +16:46:42 [ 32] [ 6] [198901] +16:46:42 [ 35] [ 32] [6213544001558847=491212015884675] +16:46:42 [ 37] [ 12] [507916208965] +16:46:42 [ 38] [ 6] [803811] +16:46:42 [ 39] [ 2] [00] +16:46:42 [ 41] [ 8] [19529001] +16:46:42 [ 49] [ 3] [418] +16:46:42 [ 54] [ 40] [1001418C0000123543641002418C000012354364] +16:46:42 ============================================================================ +16:46:42 Sending to : +16:46:42 ============================================================================ +16:46:42 + + +waiting on router queue for slot.... +16:46:42 ============================================================================ +16:46:42 Slot Id : <260> +16:46:42 Transaction Type : RESPONSE +16:46:42 Received From : +16:46:42 ============================================================================ +16:46:42 FNo. Len. Field Value +16:46:42 ============================================================================ +16:46:42 [ 1] [ 4] [0210] +16:46:42 [ 2] [ 16] [6688990107166108] +16:46:42 [ 3] [ 6] [010000] +16:46:42 [ 4] [ 12] [000100000000] +16:46:42 [ 11] [ 6] [804439] +16:46:42 [ 12] [ 6] [164634] +16:46:42 [ 15] [ 4] [0320] +16:46:42 [ 18] [ 4] [6011] +16:46:42 [ 32] [ 6] [621354] +16:46:42 [ 35] [ 37] [6688990107166108=44021231610888800000] +16:46:42 [ 37] [ 12] [507903245311] +16:46:42 [ 38] [ 6] [873830] +16:46:42 [ 39] [ 2] [00] +16:46:42 [ 41] [ 8] [04003400] +16:46:42 [ 49] [ 3] [418] +16:46:42 [ 54] [ 20] [0002418C001570122719] +16:46:42 ============================================================================ +16:46:42 Calculate Source COMM Id = 0 +16:46:42 ============================================================================ +16:46:42 + + +waiting on router queue for slot.... +16:46:43 ============================================================================ +16:46:43 Slot Id : <234> +16:46:43 Transaction Type : RESPONSE +16:46:43 Received From : +16:46:43 ============================================================================ +16:46:43 FNo. Len. Field Value +16:46:43 ============================================================================ +16:46:43 [ 1] [ 4] [0210] +16:46:43 [ 2] [ 16] [6213544001558847] +16:46:43 [ 3] [ 6] [011000] +16:46:43 [ 4] [ 12] [000050000000] +16:46:43 [ 7] [ 10] [0320164701] +16:46:43 [ 11] [ 6] [208965] +16:46:43 [ 12] [ 6] [164207] +16:46:43 [ 13] [ 4] [0320] +16:46:43 [ 15] [ 4] [0320] +16:46:43 [ 18] [ 4] [6011] +16:46:43 [ 19] [ 3] [418] +16:46:43 [ 32] [ 6] [198901] +16:46:43 [ 35] [ 32] [6213544001558847=491212015884675] +16:46:43 [ 37] [ 12] [507916208965] +16:46:43 [ 38] [ 6] [803811] +16:46:43 [ 39] [ 2] [00] +16:46:43 [ 41] [ 8] [19529001] +16:46:43 [ 49] [ 3] [418] +16:46:43 [ 54] [ 40] [1001418C0000123543641002418C000012354364] +16:46:43 ============================================================================ +16:46:43 Calculate Source COMM Id = 5 +16:46:43 ============================================================================ +16:46:43 + + +waiting on router queue for slot.... +16:46:53 ============================================================================ +16:46:53 Slot Id : <253> +16:46:53 Transaction Type : REQUEST +16:46:53 Received From : +16:46:53 ============================================================================ +16:46:53 FNo. Len. Field Value +16:46:53 ============================================================================ +16:46:53 [ 1] [ 4] [0800] +16:46:53 [ 7] [ 10] [0320094558] +16:46:53 [ 11] [ 6] [157303] +16:46:53 [ 70] [ 3] [301] +16:46:53 ============================================================================ +16:46:53 + + +waiting on router queue for slot.... +16:46:53 Sending to : +16:46:53 ============================================================================ +16:46:53 ============================================================================ +16:46:53 Slot Id : <253> +16:46:53 Transaction Type : RESPONSE +16:46:53 Received From : +16:46:53 ============================================================================ +16:46:53 FNo. Len. Field Value +16:46:53 ============================================================================ +16:46:53 [ 1] [ 4] [0810] +16:46:53 [ 7] [ 10] [0320094558] +16:46:53 [ 11] [ 6] [157303] +16:46:53 [ 39] [ 2] [00] +16:46:53 [ 70] [ 3] [301] +16:46:53 ============================================================================ +16:46:53 Calculate Source COMM Id = 2 +16:46:53 ============================================================================ +16:46:53 + + +waiting on router queue for slot.... +16:46:58 ============================================================================ +16:46:58 Slot Id : <216> +16:46:58 Transaction Type : REQUEST +16:46:58 Received From : +16:46:58 ============================================================================ +16:46:58 FNo. Len. Field Value +16:46:58 ============================================================================ +16:46:58 [ 1] [ 4] [0200] +16:46:58 [ 2] [ 16] [6688990103500508] +16:46:58 [ 3] [ 6] [300000] +16:46:58 [ 4] [ 12] [000000000000] +16:46:58 [ 7] [ 10] [0320164653] +16:46:58 [ 11] [ 6] [804531] +16:46:58 [ 12] [ 6] [164653] +16:46:58 [ 13] [ 4] [0320] +16:46:58 [ 15] [ 4] [0320] +16:46:58 [ 18] [ 4] [6011] +16:46:58 [ 22] [ 3] [900] +16:46:58 [ 25] [ 2] [02] +16:46:58 [ 28] [ 9] [D00000000] +16:46:58 [ 32] [ 6] [621354] +16:46:58 [ 35] [ 37] [6688990103500508=43011231050823100000] +16:46:58 [ 37] [ 12] [507903499623] +16:46:58 [ 41] [ 8] [06002200] +16:46:58 [ 42] [ 15] [NATIVE ] +16:46:58 [ 43] [ 40] [Beng Market Beng LAO] +16:46:58 [ 49] [ 3] [418] +16:46:58 [ 52] [ 16] [CF3B4993A1DE52A3] +16:46:58 ============================================================================ +16:46:58 + + +waiting on router queue for slot.... +16:46:58 Sending to : +16:46:58 ============================================================================ +16:46:58 Sending to : +16:46:58 ============================================================================ +16:46:58 ============================================================================ +16:46:58 Slot Id : <216> +16:46:58 Transaction Type : REQUEST +16:46:58 Received From : +16:46:58 ============================================================================ +16:46:58 FNo. Len. Field Value +16:46:58 ============================================================================ +16:46:58 [ 1] [ 4] [0200] +16:46:58 [ 2] [ 16] [6688990103500508] +16:46:58 [ 3] [ 6] [300000] +16:46:58 [ 4] [ 12] [000000000000] +16:46:58 [ 7] [ 10] [0320164653] +16:46:58 [ 11] [ 6] [804531] +16:46:58 [ 12] [ 6] [164653] +16:46:58 [ 13] [ 4] [0320] +16:46:58 [ 15] [ 4] [0320] +16:46:58 [ 18] [ 4] [6011] +16:46:58 [ 22] [ 3] [900] +16:46:58 [ 25] [ 2] [02] +16:46:58 [ 28] [ 9] [D00000000] +16:46:58 [ 32] [ 6] [621354] +16:46:58 [ 35] [ 37] [6688990103500508=43011231050823100000] +16:46:58 [ 37] [ 12] [507903499623] +16:46:58 [ 41] [ 8] [06002200] +16:46:58 [ 42] [ 15] [NATIVE ] +16:46:58 [ 43] [ 40] [Beng Market Beng LAO] +16:46:58 [ 49] [ 3] [418] +16:46:58 [ 52] [ 16] [CF3B4993A1DE52A3] +16:46:58 ============================================================================ +16:46:58 + + +waiting on router queue for slot.... +16:46:58 Sending to : +16:46:58 ============================================================================ +16:46:58 ============================================================================ +16:46:58 Slot Id : <216> +16:46:58 Transaction Type : REQUEST +16:46:58 Received From : +16:46:58 ============================================================================ +16:46:58 FNo. Len. Field Value +16:46:58 ============================================================================ +16:46:58 [ 1] [ 4] [0200] +16:46:58 [ 2] [ 16] [6688990103500508] +16:46:58 [ 3] [ 6] [300000] +16:46:58 [ 4] [ 12] [000000000000] +16:46:58 [ 7] [ 10] [0320164653] +16:46:58 [ 11] [ 6] [804531] +16:46:58 [ 12] [ 6] [164653] +16:46:58 [ 13] [ 4] [0320] +16:46:58 [ 15] [ 4] [0320] +16:46:58 [ 18] [ 4] [6011] +16:46:58 [ 22] [ 3] [900] +16:46:58 [ 25] [ 2] [02] +16:46:58 [ 28] [ 9] [D00000000] +16:46:58 [ 32] [ 6] [621354] +16:46:58 [ 35] [ 37] [6688990103500508=43011231050823100000] +16:46:58 [ 37] [ 12] [507903499623] +16:46:58 [ 41] [ 8] [06002200] +16:46:58 [ 42] [ 15] [NATIVE ] +16:46:58 [ 43] [ 40] [Beng Market Beng LAO] +16:46:58 [ 49] [ 3] [418] +16:46:58 [ 52] [ 16] [21AB6C58B0EDACC6] +16:46:58 ============================================================================ +16:46:58 + + +waiting on router queue for slot.... +16:46:58 Sending to : <4> +16:46:58 ============================================================================ +16:47:00 ============================================================================ +16:47:00 Slot Id : <216> +16:47:00 Transaction Type : RESPONSE +16:47:00 Received From : +16:47:00 ============================================================================ +16:47:00 FNo. Len. Field Value +16:47:00 ============================================================================ +16:47:00 [ 1] [ 4] [0210] +16:47:00 [ 2] [ 16] [6688990103500508] +16:47:00 [ 3] [ 6] [300000] +16:47:00 [ 4] [ 12] [000000000000] +16:47:00 [ 11] [ 6] [804531] +16:47:00 [ 12] [ 6] [164653] +16:47:00 [ 15] [ 4] [0320] +16:47:00 [ 18] [ 4] [6011] +16:47:00 [ 32] [ 6] [621354] +16:47:00 [ 35] [ 37] [6688990103500508=43011231050823100000] +16:47:00 [ 37] [ 12] [507903499623] +16:47:00 [ 38] [ 6] [622002] +16:47:00 [ 39] [ 2] [00] +16:47:00 [ 41] [ 8] [06002200] +16:47:00 [ 49] [ 3] [418] +16:47:00 [ 54] [ 20] [0002418C002549647976] +16:47:00 ============================================================================ +16:47:00 Sending to : +16:47:00 ============================================================================ +16:47:00 + + +waiting on router queue for slot.... +16:47:02 ============================================================================ +16:47:02 Slot Id : <216> +16:47:02 Transaction Type : RESPONSE +16:47:02 Received From : +16:47:02 ============================================================================ +16:47:02 FNo. Len. Field Value +16:47:02 ============================================================================ +16:47:02 [ 1] [ 4] [0210] +16:47:02 [ 2] [ 16] [6688990103500508] +16:47:02 [ 3] [ 6] [300000] +16:47:02 [ 4] [ 12] [000000000000] +16:47:02 [ 11] [ 6] [804531] +16:47:02 [ 12] [ 6] [164653] +16:47:02 [ 15] [ 4] [0320] +16:47:02 [ 18] [ 4] [6011] +16:47:02 [ 32] [ 6] [621354] +16:47:02 [ 35] [ 37] [6688990103500508=43011231050823100000] +16:47:02 [ 37] [ 12] [507903499623] +16:47:02 [ 38] [ 6] [622002] +16:47:02 [ 39] [ 2] [00] +16:47:02 [ 41] [ 8] [06002200] +16:47:02 [ 49] [ 3] [418] +16:47:02 [ 54] [ 20] [0002418C002549647976] +16:47:02 ============================================================================ +16:47:02 Calculate Source COMM Id = 0 +16:47:02 ============================================================================ +16:47:02 + + +waiting on router queue for slot.... +16:47:04 ============================================================================ +16:47:04 Slot Id : <263> +16:47:04 Transaction Type : REQUEST +16:47:04 Received From : +16:47:04 ============================================================================ +16:47:04 FNo. Len. Field Value +16:47:04 ============================================================================ +16:47:04 [ 1] [ 4] [0200] +16:47:04 [ 2] [ 16] [6213544002074950] +16:47:04 [ 3] [ 6] [010000] +16:47:04 [ 4] [ 12] [000019000000] +16:47:04 [ 7] [ 10] [0320164454] +16:47:04 [ 11] [ 6] [952322] +16:47:04 [ 12] [ 6] [164454] +16:47:04 [ 13] [ 4] [0320] +16:47:04 [ 15] [ 4] [0320] +16:47:04 [ 18] [ 4] [6011] +16:47:04 [ 19] [ 3] [418] +16:47:04 [ 22] [ 3] [021] +16:47:04 [ 25] [ 2] [01] +16:47:04 [ 28] [ 9] [D00002000] +16:47:04 [ 32] [ 6] [668899] +16:47:04 [ 35] [ 32] [6213544002074950=491212017495088] +16:47:04 [ 37] [ 12] [507901422833] +16:47:04 [ 41] [ 8] [03314001] +16:47:04 [ 42] [ 15] [APT ] +16:47:04 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +16:47:04 [ 49] [ 3] [418] +16:47:04 [ 52] [ 16] [0F8A72070E6744E7] +16:47:04 ============================================================================ +16:47:04 + + +waiting on router queue for slot.... +16:47:04 Sending to : +16:47:04 ============================================================================ +16:47:04 Sending to : +16:47:04 ============================================================================ +16:47:04 ============================================================================ +16:47:04 Slot Id : <263> +16:47:04 Transaction Type : REQUEST +16:47:04 Received From : +16:47:04 ============================================================================ +16:47:04 FNo. Len. Field Value +16:47:04 ============================================================================ +16:47:04 [ 1] [ 4] [0200] +16:47:04 [ 2] [ 16] [6213544002074950] +16:47:04 [ 3] [ 6] [010000] +16:47:04 [ 4] [ 12] [000019000000] +16:47:04 [ 7] [ 10] [0320164454] +16:47:04 [ 11] [ 6] [952322] +16:47:04 [ 12] [ 6] [164454] +16:47:04 [ 13] [ 4] [0320] +16:47:04 [ 15] [ 4] [0320] +16:47:04 [ 18] [ 4] [6011] +16:47:04 [ 19] [ 3] [418] +16:47:04 [ 22] [ 3] [021] +16:47:04 [ 25] [ 2] [01] +16:47:04 [ 28] [ 9] [D00002000] +16:47:04 [ 32] [ 6] [668899] +16:47:04 [ 35] [ 32] [6213544002074950=491212017495088] +16:47:04 [ 37] [ 12] [507901422833] +16:47:04 [ 41] [ 8] [03314001] +16:47:04 [ 42] [ 15] [APT ] +16:47:04 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +16:47:04 [ 49] [ 3] [418] +16:47:04 [ 52] [ 16] [0F8A72070E6744E7] +16:47:04 ============================================================================ +16:47:04 + + +waiting on router queue for slot.... +16:47:04 Sending to : +16:47:04 ============================================================================ +16:47:04 ============================================================================ +16:47:04 Slot Id : <263> +16:47:04 Transaction Type : REQUEST +16:47:04 Received From : +16:47:04 ============================================================================ +16:47:04 FNo. Len. Field Value +16:47:04 ============================================================================ +16:47:04 [ 1] [ 4] [0200] +16:47:04 [ 2] [ 16] [6213544002074950] +16:47:04 [ 3] [ 6] [010000] +16:47:04 [ 4] [ 12] [000019000000] +16:47:04 [ 7] [ 10] [0320164454] +16:47:04 [ 11] [ 6] [952322] +16:47:04 [ 12] [ 6] [164454] +16:47:04 [ 13] [ 4] [0320] +16:47:04 [ 15] [ 4] [0320] +16:47:04 [ 18] [ 4] [6011] +16:47:04 [ 19] [ 3] [418] +16:47:04 [ 22] [ 3] [021] +16:47:04 [ 25] [ 2] [01] +16:47:04 [ 28] [ 9] [D00002000] +16:47:04 [ 32] [ 6] [668899] +16:47:04 [ 35] [ 32] [6213544002074950=491212017495088] +16:47:04 [ 37] [ 12] [507901422833] +16:47:04 [ 41] [ 8] [03314001] +16:47:04 [ 42] [ 15] [APT ] +16:47:04 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +16:47:04 [ 49] [ 3] [418] +16:47:04 [ 52] [ 16] [D086A4226CD66BC3] +16:47:04 ============================================================================ +16:47:04 + + +waiting on router queue for slot.... +16:47:04 Sending to : <0> +16:47:04 ============================================================================ +16:47:05 ============================================================================ +16:47:05 Slot Id : <263> +16:47:05 Transaction Type : RESPONSE +16:47:05 Received From : +16:47:05 ============================================================================ +16:47:05 FNo. Len. Field Value +16:47:05 ============================================================================ +16:47:05 [ 1] [ 4] [0210] +16:47:05 [ 2] [ 16] [6213544002074950] +16:47:05 [ 3] [ 6] [010000] +16:47:05 [ 4] [ 12] [000019000000] +16:47:05 [ 7] [ 10] [0320164454] +16:47:05 [ 11] [ 6] [952322] +16:47:05 [ 12] [ 6] [164454] +16:47:05 [ 13] [ 4] [0320] +16:47:05 [ 15] [ 4] [0320] +16:47:05 [ 18] [ 4] [6011] +16:47:05 [ 19] [ 3] [418] +16:47:05 [ 32] [ 6] [668899] +16:47:05 [ 35] [ 32] [6213544002074950=491212017495088] +16:47:05 [ 37] [ 12] [507901422833] +16:47:05 [ 38] [ 6] [041409] +16:47:05 [ 39] [ 2] [00] +16:47:05 [ 41] [ 8] [03314001] +16:47:05 [ 49] [ 3] [418] +16:47:05 [ 54] [ 40] [0001418C0000054241060002418C000005424106] +16:47:05 ============================================================================ +16:47:05 Sending to : +16:47:05 ============================================================================ +16:47:05 + + +waiting on router queue for slot.... +16:47:07 ============================================================================ +16:47:07 Slot Id : <263> +16:47:07 Transaction Type : RESPONSE +16:47:07 Received From : +16:47:07 ============================================================================ +16:47:07 FNo. Len. Field Value +16:47:07 ============================================================================ +16:47:07 [ 1] [ 4] [0210] +16:47:07 [ 2] [ 16] [6213544002074950] +16:47:07 [ 3] [ 6] [010000] +16:47:07 [ 4] [ 12] [000019000000] +16:47:07 [ 7] [ 10] [0320164454] +16:47:07 [ 11] [ 6] [952322] +16:47:07 [ 12] [ 6] [164454] +16:47:07 [ 13] [ 4] [0320] +16:47:07 [ 15] [ 4] [0320] +16:47:07 [ 18] [ 4] [6011] +16:47:07 [ 19] [ 3] [418] +16:47:07 [ 32] [ 6] [668899] +16:47:07 [ 35] [ 32] [6213544002074950=491212017495088] +16:47:07 [ 37] [ 12] [507901422833] +16:47:07 [ 38] [ 6] [041409] +16:47:07 [ 39] [ 2] [00] +16:47:07 [ 41] [ 8] [03314001] +16:47:07 [ 49] [ 3] [418] +16:47:07 [ 54] [ 40] [0001418C0000054241060002418C000005424106] +16:47:07 ============================================================================ +16:47:07 Calculate Source COMM Id = 4 +16:47:07 ============================================================================ +16:47:07 + + +waiting on router queue for slot.... +16:47:07 ============================================================================ +16:47:07 Slot Id : <259> +16:47:07 Transaction Type : REQUEST +16:47:07 Received From : +16:47:07 ============================================================================ +16:47:07 FNo. Len. Field Value +16:47:07 ============================================================================ +16:47:07 [ 1] [ 4] [0800] +16:47:07 [ 7] [ 10] [0320094614] +16:47:07 [ 11] [ 6] [157304] +16:47:07 [ 70] [ 3] [301] +16:47:07 ============================================================================ +16:47:07 + + +waiting on router queue for slot.... +16:47:07 Sending to : +16:47:07 ============================================================================ +16:47:07 ============================================================================ +16:47:07 Slot Id : <259> +16:47:07 Transaction Type : RESPONSE +16:47:07 Received From : +16:47:07 ============================================================================ +16:47:07 FNo. Len. Field Value +16:47:07 ============================================================================ +16:47:07 [ 1] [ 4] [0810] +16:47:07 [ 7] [ 10] [0320094614] +16:47:07 [ 11] [ 6] [157304] +16:47:07 [ 39] [ 2] [00] +16:47:07 [ 70] [ 3] [301] +16:47:07 ============================================================================ +16:47:07 Calculate Source COMM Id = 2 +16:47:07 ============================================================================ +16:47:07 + + +waiting on router queue for slot.... +16:47:07 ============================================================================ +16:47:07 Slot Id : <249> +16:47:07 Transaction Type : REQUEST +16:47:07 Received From : +16:47:07 ============================================================================ +16:47:07 FNo. Len. Field Value +16:47:07 ============================================================================ +16:47:07 [ 1] [ 4] [0800] +16:47:07 [ 2] [ 5] [02531] +16:47:07 [ 3] [ 6] [579168] +16:47:07 [ 7] [ 10] [0320094707] +16:47:07 [ 11] [ 6] [807386] +16:47:07 [ 15] [ 10] [0320094707] +16:47:07 [ 37] [ 11] [57916807386] +16:47:07 [ 70] [ 3] [001] +16:47:07 ============================================================================ +16:47:07 + + +waiting on router queue for slot.... +16:47:07 ============================================================================ +16:47:07 Slot Id : <249> +16:47:07 Transaction Type : RESPONSE +16:47:07 Received From : +16:47:07 ============================================================================ +16:47:07 FNo. Len. Field Value +16:47:07 ============================================================================ +16:47:07 [ 1] [ 4] [0810] +16:47:07 [ 7] [ 10] [0320094707] +16:47:07 [ 11] [ 6] [807386] +16:47:07 [ 15] [ 4] [0320] +16:47:07 [ 37] [ 12] [57916807386] +16:47:07 [ 39] [ 2] [00] +16:47:07 [ 70] [ 3] [001] +16:47:07 ============================================================================ +16:47:07 Sending to : +16:47:07 ============================================================================ +16:47:07 + + +waiting on router queue for slot.... +16:47:07 ============================================================================ +16:47:07 Slot Id : <210> +16:47:07 Transaction Type : REQUEST +16:47:07 Received From : +16:47:07 ============================================================================ +16:47:07 FNo. Len. Field Value +16:47:07 ============================================================================ +16:47:07 [ 1] [ 4] [0200] +16:47:07 [ 2] [ 16] [6688990105652406] +16:47:07 [ 3] [ 6] [012000] +16:47:07 [ 4] [ 12] [000070000000] +16:47:07 [ 7] [ 10] [0320164702] +16:47:07 [ 11] [ 6] [804575] +16:47:07 [ 12] [ 6] [164702] +16:47:07 [ 13] [ 4] [0320] +16:47:07 [ 15] [ 4] [0320] +16:47:07 [ 18] [ 4] [6011] +16:47:07 [ 22] [ 3] [900] +16:47:07 [ 25] [ 2] [02] +16:47:07 [ 28] [ 9] [D00002000] +16:47:07 [ 32] [ 6] [621354] +16:47:07 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:47:07 [ 37] [ 12] [507904635911] +16:47:07 [ 41] [ 8] [17000800] +16:47:07 [ 42] [ 15] [NATIVE ] +16:47:07 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:47:07 [ 49] [ 3] [418] +16:47:07 [ 52] [ 16] [64C297C18B391997] +16:47:07 ============================================================================ +16:47:07 + + +waiting on router queue for slot.... +16:47:07 Sending to : +16:47:07 ============================================================================ +16:47:07 Sending to : +16:47:07 ============================================================================ +16:47:08 ============================================================================ +16:47:08 Slot Id : <210> +16:47:08 Transaction Type : REQUEST +16:47:08 Received From : +16:47:08 ============================================================================ +16:47:08 FNo. Len. Field Value +16:47:08 ============================================================================ +16:47:08 [ 1] [ 4] [0200] +16:47:08 [ 2] [ 16] [6688990105652406] +16:47:08 [ 3] [ 6] [012000] +16:47:08 [ 4] [ 12] [000070000000] +16:47:08 [ 7] [ 10] [0320164702] +16:47:08 [ 11] [ 6] [804575] +16:47:08 [ 12] [ 6] [164702] +16:47:08 [ 13] [ 4] [0320] +16:47:08 [ 15] [ 4] [0320] +16:47:08 [ 18] [ 4] [6011] +16:47:08 [ 22] [ 3] [900] +16:47:08 [ 25] [ 2] [02] +16:47:08 [ 28] [ 9] [D00002000] +16:47:08 [ 32] [ 6] [621354] +16:47:08 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:47:08 [ 37] [ 12] [507904635911] +16:47:08 [ 41] [ 8] [17000800] +16:47:08 [ 42] [ 15] [NATIVE ] +16:47:08 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:47:08 [ 49] [ 3] [418] +16:47:08 [ 52] [ 16] [64C297C18B391997] +16:47:08 ============================================================================ +16:47:08 + + +waiting on router queue for slot.... +16:47:08 Sending to : +16:47:08 ============================================================================ +16:47:08 ============================================================================ +16:47:08 Slot Id : <210> +16:47:08 Transaction Type : REQUEST +16:47:08 Received From : +16:47:08 ============================================================================ +16:47:08 FNo. Len. Field Value +16:47:08 ============================================================================ +16:47:08 [ 1] [ 4] [0200] +16:47:08 [ 2] [ 16] [6688990105652406] +16:47:08 [ 3] [ 6] [012000] +16:47:08 [ 4] [ 12] [000070000000] +16:47:08 [ 7] [ 10] [0320164702] +16:47:08 [ 11] [ 6] [804575] +16:47:08 [ 12] [ 6] [164702] +16:47:08 [ 13] [ 4] [0320] +16:47:08 [ 15] [ 4] [0320] +16:47:08 [ 18] [ 4] [6011] +16:47:08 [ 22] [ 3] [900] +16:47:08 [ 25] [ 2] [02] +16:47:08 [ 28] [ 9] [D00002000] +16:47:08 [ 32] [ 6] [621354] +16:47:08 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:47:08 [ 37] [ 12] [507904635911] +16:47:08 [ 41] [ 8] [17000800] +16:47:08 [ 42] [ 15] [NATIVE ] +16:47:08 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:47:08 [ 49] [ 3] [418] +16:47:08 [ 52] [ 16] [C62C22191E0D84E6] +16:47:08 ============================================================================ +16:47:08 + + +waiting on router queue for slot.... +16:47:08 Sending to : <4> +16:47:08 ============================================================================ +16:47:08 ============================================================================ +16:47:08 Slot Id : <210> +16:47:08 Transaction Type : RESPONSE +16:47:08 Received From : +16:47:08 ============================================================================ +16:47:08 FNo. Len. Field Value +16:47:08 ============================================================================ +16:47:08 [ 1] [ 4] [0210] +16:47:08 [ 2] [ 16] [6688990105652406] +16:47:08 [ 3] [ 6] [012000] +16:47:08 [ 4] [ 12] [000070000000] +16:47:08 [ 11] [ 6] [804575] +16:47:08 [ 12] [ 6] [164702] +16:47:08 [ 15] [ 4] [0320] +16:47:08 [ 18] [ 4] [6011] +16:47:08 [ 32] [ 6] [621354] +16:47:08 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:47:08 [ 37] [ 12] [507904635911] +16:47:08 [ 38] [ 6] [938921] +16:47:08 [ 39] [ 2] [00] +16:47:08 [ 41] [ 8] [17000800] +16:47:08 [ 49] [ 3] [418] +16:47:08 [ 54] [ 20] [2002418C000319542416] +16:47:08 ============================================================================ +16:47:08 Sending to : +16:47:08 ============================================================================ +16:47:08 + + +waiting on router queue for slot.... +16:47:10 ============================================================================ +16:47:10 Slot Id : <210> +16:47:10 Transaction Type : RESPONSE +16:47:10 Received From : +16:47:10 ============================================================================ +16:47:10 FNo. Len. Field Value +16:47:10 ============================================================================ +16:47:10 [ 1] [ 4] [0210] +16:47:10 [ 2] [ 16] [6688990105652406] +16:47:10 [ 3] [ 6] [012000] +16:47:10 [ 4] [ 12] [000070000000] +16:47:10 [ 11] [ 6] [804575] +16:47:10 [ 12] [ 6] [164702] +16:47:10 [ 15] [ 4] [0320] +16:47:10 [ 18] [ 4] [6011] +16:47:10 [ 32] [ 6] [621354] +16:47:10 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:47:10 [ 37] [ 12] [507904635911] +16:47:10 [ 38] [ 6] [938921] +16:47:10 [ 39] [ 2] [00] +16:47:10 [ 41] [ 8] [17000800] +16:47:10 [ 49] [ 3] [418] +16:47:10 [ 54] [ 20] [2002418C000319542416] +16:47:10 ============================================================================ +16:47:10 Calculate Source COMM Id = 0 +16:47:10 ============================================================================ +16:47:10 + + +waiting on router queue for slot.... +16:47:12 ============================================================================ +16:47:12 Slot Id : <261> +16:47:12 Transaction Type : REQUEST +16:47:12 Received From : +16:47:12 ============================================================================ +16:47:12 FNo. Len. Field Value +16:47:12 ============================================================================ +16:47:12 [ 1] [ 4] [0200] +16:47:12 [ 2] [ 16] [6213545000325492] +16:47:12 [ 3] [ 6] [010000] +16:47:12 [ 4] [ 12] [000100000000] +16:47:12 [ 7] [ 10] [0320094619] +16:47:12 [ 11] [ 6] [270608] +16:47:12 [ 12] [ 6] [164619] +16:47:12 [ 13] [ 4] [0320] +16:47:12 [ 14] [ 4] [4912] +16:47:12 [ 15] [ 4] [0320] +16:47:12 [ 18] [ 4] [6011] +16:47:12 [ 19] [ 3] [418] +16:47:12 [ 22] [ 3] [021] +16:47:12 [ 25] [ 2] [01] +16:47:12 [ 28] [ 9] [D00002000] +16:47:12 [ 32] [ 6] [180893] +16:47:12 [ 35] [ 32] [6213545000325492=491212012549209] +16:47:12 [ 37] [ 12] [507909270608] +16:47:12 [ 41] [ 8] [0401XSBR] +16:47:12 [ 42] [ 15] [999999 ] +16:47:12 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:47:12 [ 49] [ 3] [418] +16:47:12 [ 52] [ 16] [95848908257AF43B] +16:47:12 ============================================================================ +16:47:12 + + +waiting on router queue for slot.... +16:47:12 Sending to : +16:47:12 ============================================================================ +16:47:12 Sending to : +16:47:12 ============================================================================ +16:47:12 ============================================================================ +16:47:12 Slot Id : <261> +16:47:12 Transaction Type : REQUEST +16:47:12 Received From : +16:47:12 ============================================================================ +16:47:12 FNo. Len. Field Value +16:47:12 ============================================================================ +16:47:12 [ 1] [ 4] [0200] +16:47:12 [ 2] [ 16] [6213545000325492] +16:47:12 [ 3] [ 6] [010000] +16:47:12 [ 4] [ 12] [000100000000] +16:47:12 [ 7] [ 10] [0320094619] +16:47:12 [ 11] [ 6] [270608] +16:47:12 [ 12] [ 6] [164619] +16:47:12 [ 13] [ 4] [0320] +16:47:12 [ 14] [ 4] [4912] +16:47:12 [ 15] [ 4] [0320] +16:47:12 [ 18] [ 4] [6011] +16:47:12 [ 19] [ 3] [418] +16:47:12 [ 22] [ 3] [021] +16:47:12 [ 25] [ 2] [01] +16:47:12 [ 28] [ 9] [D00002000] +16:47:12 [ 32] [ 6] [180893] +16:47:12 [ 35] [ 32] [6213545000325492=491212012549209] +16:47:12 [ 37] [ 12] [507909270608] +16:47:12 [ 41] [ 8] [0401XSBR] +16:47:12 [ 42] [ 15] [999999 ] +16:47:12 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:47:12 [ 49] [ 3] [418] +16:47:12 [ 52] [ 16] [95848908257AF43B] +16:47:12 ============================================================================ +16:47:12 + + +waiting on router queue for slot.... +16:47:12 Sending to : +16:47:12 ============================================================================ +16:47:12 ============================================================================ +16:47:12 Slot Id : <261> +16:47:12 Transaction Type : REQUEST +16:47:12 Received From : +16:47:12 ============================================================================ +16:47:12 FNo. Len. Field Value +16:47:12 ============================================================================ +16:47:12 [ 1] [ 4] [0200] +16:47:12 [ 2] [ 16] [6213545000325492] +16:47:12 [ 3] [ 6] [010000] +16:47:12 [ 4] [ 12] [000100000000] +16:47:12 [ 7] [ 10] [0320094619] +16:47:12 [ 11] [ 6] [270608] +16:47:12 [ 12] [ 6] [164619] +16:47:12 [ 13] [ 4] [0320] +16:47:12 [ 14] [ 4] [4912] +16:47:12 [ 15] [ 4] [0320] +16:47:12 [ 18] [ 4] [6011] +16:47:12 [ 19] [ 3] [418] +16:47:12 [ 22] [ 3] [021] +16:47:12 [ 25] [ 2] [01] +16:47:12 [ 28] [ 9] [D00002000] +16:47:12 [ 32] [ 6] [180893] +16:47:12 [ 35] [ 32] [6213545000325492=491212012549209] +16:47:12 [ 37] [ 12] [507909270608] +16:47:12 [ 41] [ 8] [0401XSBR] +16:47:12 [ 42] [ 15] [999999 ] +16:47:12 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:47:12 [ 49] [ 3] [418] +16:47:12 [ 52] [ 16] [508AFBE2CC995018] +16:47:12 ============================================================================ +16:47:12 + + +waiting on router queue for slot.... +16:47:12 Sending to : <0> +16:47:12 ============================================================================ +16:47:13 ============================================================================ +16:47:13 Slot Id : <261> +16:47:13 Transaction Type : RESPONSE +16:47:13 Received From : +16:47:13 ============================================================================ +16:47:13 FNo. Len. Field Value +16:47:13 ============================================================================ +16:47:13 [ 1] [ 4] [0210] +16:47:13 [ 2] [ 16] [6213545000325492] +16:47:13 [ 3] [ 6] [010000] +16:47:13 [ 4] [ 12] [000100000000] +16:47:13 [ 7] [ 10] [0320094619] +16:47:13 [ 11] [ 6] [270608] +16:47:13 [ 12] [ 6] [164619] +16:47:13 [ 13] [ 4] [0320] +16:47:13 [ 15] [ 4] [0320] +16:47:13 [ 18] [ 4] [6011] +16:47:13 [ 19] [ 3] [418] +16:47:13 [ 32] [ 6] [180893] +16:47:13 [ 35] [ 32] [6213545000325492=491212012549209] +16:47:13 [ 37] [ 12] [507909270608] +16:47:13 [ 38] [ 6] [897951] +16:47:13 [ 39] [ 2] [00] +16:47:13 [ 41] [ 8] [0401XSBR] +16:47:13 [ 49] [ 3] [418] +16:47:13 [ 54] [ 40] [0001418C0002711986500002418C000271198650] +16:47:13 ============================================================================ +16:47:13 Sending to : +16:47:13 ============================================================================ +16:47:13 + + +waiting on router queue for slot.... +16:47:14 ============================================================================ +16:47:14 Slot Id : <225> +16:47:14 Transaction Type : REQUEST +16:47:14 Received From : +16:47:14 ============================================================================ +16:47:14 FNo. Len. Field Value +16:47:14 ============================================================================ +16:47:14 [ 1] [ 4] [0200] +16:47:14 [ 2] [ 16] [6213544001930392] +16:47:14 [ 3] [ 6] [010000] +16:47:14 [ 4] [ 12] [000050000000] +16:47:14 [ 7] [ 10] [0320164504] +16:47:14 [ 11] [ 6] [952327] +16:47:14 [ 12] [ 6] [164504] +16:47:14 [ 13] [ 4] [0320] +16:47:14 [ 15] [ 4] [0320] +16:47:14 [ 18] [ 4] [6011] +16:47:14 [ 19] [ 3] [418] +16:47:14 [ 22] [ 3] [021] +16:47:14 [ 25] [ 2] [01] +16:47:14 [ 28] [ 9] [D00002000] +16:47:14 [ 32] [ 6] [668899] +16:47:14 [ 35] [ 32] [6213544001930392=491212013039474] +16:47:14 [ 37] [ 12] [507902025623] +16:47:14 [ 41] [ 8] [03414002] +16:47:14 [ 42] [ 15] [APT ] +16:47:14 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:47:14 [ 49] [ 3] [418] +16:47:14 [ 52] [ 16] [B02E1E2525A2AEDE] +16:47:14 ============================================================================ +16:47:14 + + +waiting on router queue for slot.... +16:47:14 Sending to : +16:47:14 ============================================================================ +16:47:14 Sending to : +16:47:14 ============================================================================ +16:47:14 ============================================================================ +16:47:14 Slot Id : <225> +16:47:14 Transaction Type : REQUEST +16:47:14 Received From : +16:47:14 ============================================================================ +16:47:14 FNo. Len. Field Value +16:47:14 ============================================================================ +16:47:14 [ 1] [ 4] [0200] +16:47:14 [ 2] [ 16] [6213544001930392] +16:47:14 [ 3] [ 6] [010000] +16:47:14 [ 4] [ 12] [000050000000] +16:47:14 [ 7] [ 10] [0320164504] +16:47:14 [ 11] [ 6] [952327] +16:47:14 [ 12] [ 6] [164504] +16:47:14 [ 13] [ 4] [0320] +16:47:14 [ 15] [ 4] [0320] +16:47:14 [ 18] [ 4] [6011] +16:47:14 [ 19] [ 3] [418] +16:47:14 [ 22] [ 3] [021] +16:47:14 [ 25] [ 2] [01] +16:47:14 [ 28] [ 9] [D00002000] +16:47:14 [ 32] [ 6] [668899] +16:47:14 [ 35] [ 32] [6213544001930392=491212013039474] +16:47:14 [ 37] [ 12] [507902025623] +16:47:14 [ 41] [ 8] [03414002] +16:47:14 [ 42] [ 15] [APT ] +16:47:14 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:47:14 [ 49] [ 3] [418] +16:47:14 [ 52] [ 16] [B02E1E2525A2AEDE] +16:47:14 ============================================================================ +16:47:14 + + +waiting on router queue for slot.... +16:47:14 Sending to : +16:47:14 ============================================================================ +16:47:14 ============================================================================ +16:47:14 Slot Id : <225> +16:47:14 Transaction Type : REQUEST +16:47:14 Received From : +16:47:14 ============================================================================ +16:47:14 FNo. Len. Field Value +16:47:14 ============================================================================ +16:47:14 [ 1] [ 4] [0200] +16:47:14 [ 2] [ 16] [6213544001930392] +16:47:14 [ 3] [ 6] [010000] +16:47:14 [ 4] [ 12] [000050000000] +16:47:14 [ 7] [ 10] [0320164504] +16:47:14 [ 11] [ 6] [952327] +16:47:14 [ 12] [ 6] [164504] +16:47:14 [ 13] [ 4] [0320] +16:47:14 [ 15] [ 4] [0320] +16:47:14 [ 18] [ 4] [6011] +16:47:14 [ 19] [ 3] [418] +16:47:14 [ 22] [ 3] [021] +16:47:14 [ 25] [ 2] [01] +16:47:14 [ 28] [ 9] [D00002000] +16:47:14 [ 32] [ 6] [668899] +16:47:14 [ 35] [ 32] [6213544001930392=491212013039474] +16:47:14 [ 37] [ 12] [507902025623] +16:47:14 [ 41] [ 8] [03414002] +16:47:14 [ 42] [ 15] [APT ] +16:47:14 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:47:14 [ 49] [ 3] [418] +16:47:14 [ 52] [ 16] [2BDDE2F25CC5C4BF] +16:47:14 ============================================================================ +16:47:14 + + +waiting on router queue for slot.... +16:47:14 Sending to : <0> +16:47:14 ============================================================================ +16:47:14 ============================================================================ +16:47:14 Slot Id : <261> +16:47:14 Transaction Type : RESPONSE +16:47:14 Received From : +16:47:14 ============================================================================ +16:47:14 FNo. Len. Field Value +16:47:14 ============================================================================ +16:47:14 [ 1] [ 4] [0210] +16:47:14 [ 2] [ 16] [6213545000325492] +16:47:14 [ 3] [ 6] [010000] +16:47:14 [ 4] [ 12] [000100000000] +16:47:14 [ 7] [ 10] [0320094619] +16:47:14 [ 11] [ 6] [270608] +16:47:14 [ 12] [ 6] [164619] +16:47:14 [ 13] [ 4] [0320] +16:47:14 [ 15] [ 4] [0320] +16:47:14 [ 18] [ 4] [6011] +16:47:14 [ 19] [ 3] [418] +16:47:14 [ 32] [ 6] [180893] +16:47:14 [ 35] [ 32] [6213545000325492=491212012549209] +16:47:14 [ 37] [ 12] [507909270608] +16:47:14 [ 38] [ 6] [897951] +16:47:14 [ 39] [ 2] [00] +16:47:14 [ 41] [ 8] [0401XSBR] +16:47:14 [ 49] [ 3] [418] +16:47:14 [ 54] [ 40] [0001418C0002711986500002418C000271198650] +16:47:14 ============================================================================ +16:47:14 Calculate Source COMM Id = 2 +16:47:14 ============================================================================ +16:47:14 + + +waiting on router queue for slot.... +16:47:15 ============================================================================ +16:47:15 Slot Id : <225> +16:47:15 Transaction Type : RESPONSE +16:47:15 Received From : +16:47:15 ============================================================================ +16:47:15 FNo. Len. Field Value +16:47:15 ============================================================================ +16:47:15 [ 1] [ 4] [0210] +16:47:15 [ 2] [ 16] [6213544001930392] +16:47:15 [ 3] [ 6] [010000] +16:47:15 [ 4] [ 12] [000050000000] +16:47:15 [ 7] [ 10] [0320164504] +16:47:15 [ 11] [ 6] [952327] +16:47:15 [ 12] [ 6] [164504] +16:47:15 [ 13] [ 4] [0320] +16:47:15 [ 15] [ 4] [0320] +16:47:15 [ 18] [ 4] [6011] +16:47:15 [ 19] [ 3] [418] +16:47:15 [ 32] [ 6] [668899] +16:47:15 [ 35] [ 32] [6213544001930392=491212013039474] +16:47:15 [ 37] [ 12] [507902025623] +16:47:15 [ 38] [ 6] [867361] +16:47:15 [ 39] [ 2] [00] +16:47:15 [ 41] [ 8] [03414002] +16:47:15 [ 49] [ 3] [418] +16:47:15 [ 54] [ 40] [0001418C0000099383500002418C000009938350] +16:47:15 ============================================================================ +16:47:15 Sending to : +16:47:15 ============================================================================ +16:47:15 + + +waiting on router queue for slot.... +16:47:16 ============================================================================ +16:47:16 Slot Id : <225> +16:47:16 Transaction Type : RESPONSE +16:47:16 Received From : +16:47:16 ============================================================================ +16:47:16 FNo. Len. Field Value +16:47:16 ============================================================================ +16:47:16 [ 1] [ 4] [0210] +16:47:16 [ 2] [ 16] [6213544001930392] +16:47:16 [ 3] [ 6] [010000] +16:47:16 [ 4] [ 12] [000050000000] +16:47:16 [ 7] [ 10] [0320164504] +16:47:16 [ 11] [ 6] [952327] +16:47:16 [ 12] [ 6] [164504] +16:47:16 [ 13] [ 4] [0320] +16:47:16 [ 15] [ 4] [0320] +16:47:16 [ 18] [ 4] [6011] +16:47:16 [ 19] [ 3] [418] +16:47:16 [ 32] [ 6] [668899] +16:47:16 [ 35] [ 32] [6213544001930392=491212013039474] +16:47:16 [ 37] [ 12] [507902025623] +16:47:16 [ 38] [ 6] [867361] +16:47:16 [ 39] [ 2] [00] +16:47:16 [ 41] [ 8] [03414002] +16:47:16 [ 49] [ 3] [418] +16:47:16 [ 54] [ 40] [0001418C0000099383500002418C000009938350] +16:47:16 ============================================================================ +16:47:16 Calculate Source COMM Id = 4 +16:47:16 ============================================================================ +16:47:16 + + +waiting on router queue for slot.... +16:47:17 ============================================================================ +16:47:17 Slot Id : <269> +16:47:17 Transaction Type : REQUEST +16:47:17 Received From : +16:47:17 ============================================================================ +16:47:17 FNo. Len. Field Value +16:47:17 ============================================================================ +16:47:17 [ 1] [ 4] [0200] +16:47:17 [ 2] [ 16] [6688990050035599] +16:47:17 [ 3] [ 6] [011000] +16:47:17 [ 4] [ 12] [000010000000] +16:47:17 [ 7] [ 10] [0320165505] +16:47:17 [ 11] [ 6] [240875] +16:47:17 [ 12] [ 6] [165505] +16:47:17 [ 13] [ 4] [0320] +16:47:17 [ 14] [ 4] [9803] +16:47:17 [ 15] [ 4] [0320] +16:47:17 [ 18] [ 4] [6011] +16:47:17 [ 22] [ 3] [900] +16:47:17 [ 25] [ 2] [02] +16:47:17 [ 28] [ 9] [D00002000] +16:47:17 [ 32] [ 6] [220699] +16:47:17 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:47:17 [ 37] [ 12] [507900410460] +16:47:17 [ 41] [ 8] [08000300] +16:47:17 [ 42] [ 15] [APTRA ] +16:47:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:47:17 [ 49] [ 3] [418] +16:47:17 [ 52] [ 16] [BE9E2D016205384A] +16:47:17 ============================================================================ +16:47:17 + + +waiting on router queue for slot.... +16:47:17 Sending to : +16:47:17 ============================================================================ +16:47:17 Sending to : +16:47:17 ============================================================================ +16:47:18 ============================================================================ +16:47:18 Slot Id : <269> +16:47:18 Transaction Type : REQUEST +16:47:18 Received From : +16:47:18 ============================================================================ +16:47:18 FNo. Len. Field Value +16:47:18 ============================================================================ +16:47:18 [ 1] [ 4] [0200] +16:47:18 [ 2] [ 16] [6688990050035599] +16:47:18 [ 3] [ 6] [011000] +16:47:18 [ 4] [ 12] [000010000000] +16:47:18 [ 7] [ 10] [0320165505] +16:47:18 [ 11] [ 6] [240875] +16:47:18 [ 12] [ 6] [165505] +16:47:18 [ 13] [ 4] [0320] +16:47:18 [ 14] [ 4] [9803] +16:47:18 [ 15] [ 4] [0320] +16:47:18 [ 18] [ 4] [6011] +16:47:18 [ 22] [ 3] [900] +16:47:18 [ 25] [ 2] [02] +16:47:18 [ 28] [ 9] [D00002000] +16:47:18 [ 32] [ 6] [220699] +16:47:18 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:47:18 [ 37] [ 12] [507900410460] +16:47:18 [ 41] [ 8] [08000300] +16:47:18 [ 42] [ 15] [APTRA ] +16:47:18 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:47:18 [ 49] [ 3] [418] +16:47:18 [ 52] [ 16] [BE9E2D016205384A] +16:47:18 ============================================================================ +16:47:18 + + +waiting on router queue for slot.... +16:47:18 Sending to : +16:47:18 ============================================================================ +16:47:18 ============================================================================ +16:47:18 Slot Id : <269> +16:47:18 Transaction Type : REQUEST +16:47:18 Received From : +16:47:18 ============================================================================ +16:47:18 FNo. Len. Field Value +16:47:18 ============================================================================ +16:47:18 [ 1] [ 4] [0200] +16:47:18 [ 2] [ 16] [6688990050035599] +16:47:18 [ 3] [ 6] [011000] +16:47:18 [ 4] [ 12] [000010000000] +16:47:18 [ 7] [ 10] [0320165505] +16:47:18 [ 11] [ 6] [240875] +16:47:18 [ 12] [ 6] [165505] +16:47:18 [ 13] [ 4] [0320] +16:47:18 [ 14] [ 4] [9803] +16:47:18 [ 15] [ 4] [0320] +16:47:18 [ 18] [ 4] [6011] +16:47:18 [ 22] [ 3] [900] +16:47:18 [ 25] [ 2] [02] +16:47:18 [ 28] [ 9] [D00002000] +16:47:18 [ 32] [ 6] [220699] +16:47:18 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:47:18 [ 37] [ 12] [507900410460] +16:47:18 [ 41] [ 8] [08000300] +16:47:18 [ 42] [ 15] [APTRA ] +16:47:18 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:47:18 [ 49] [ 3] [418] +16:47:18 [ 52] [ 16] [FD679D240874A658] +16:47:18 ============================================================================ +16:47:18 + + +waiting on router queue for slot.... +16:47:18 Sending to : <0> +16:47:18 ============================================================================ +16:47:19 ============================================================================ +16:47:19 Slot Id : <269> +16:47:19 Transaction Type : RESPONSE +16:47:19 Received From : +16:47:19 ============================================================================ +16:47:19 FNo. Len. Field Value +16:47:19 ============================================================================ +16:47:19 [ 1] [ 4] [0210] +16:47:19 [ 2] [ 16] [6688990050035599] +16:47:19 [ 3] [ 6] [011000] +16:47:19 [ 4] [ 12] [000010000000] +16:47:19 [ 7] [ 10] [0320165505] +16:47:19 [ 11] [ 6] [240875] +16:47:19 [ 12] [ 6] [165505] +16:47:19 [ 13] [ 4] [0320] +16:47:19 [ 15] [ 4] [0320] +16:47:19 [ 18] [ 4] [6011] +16:47:19 [ 22] [ 3] [900] +16:47:19 [ 32] [ 6] [220699] +16:47:19 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:47:19 [ 37] [ 12] [507900410460] +16:47:19 [ 39] [ 2] [14] +16:47:19 [ 41] [ 8] [08000300] +16:47:19 [ 49] [ 3] [418] +16:47:19 ============================================================================ +16:47:19 Sending to : +16:47:19 ============================================================================ +16:47:19 + + +waiting on router queue for slot.... +16:47:20 ============================================================================ +16:47:20 Slot Id : <269> +16:47:20 Transaction Type : RESPONSE +16:47:20 Received From : +16:47:20 ============================================================================ +16:47:20 FNo. Len. Field Value +16:47:20 ============================================================================ +16:47:20 [ 1] [ 4] [0210] +16:47:20 [ 2] [ 16] [6688990050035599] +16:47:20 [ 3] [ 6] [011000] +16:47:20 [ 4] [ 12] [000010000000] +16:47:20 [ 7] [ 10] [0320165505] +16:47:20 [ 11] [ 6] [240875] +16:47:20 [ 12] [ 6] [165505] +16:47:20 [ 13] [ 4] [0320] +16:47:20 [ 15] [ 4] [0320] +16:47:20 [ 18] [ 4] [6011] +16:47:20 [ 22] [ 3] [900] +16:47:20 [ 32] [ 6] [220699] +16:47:20 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:47:20 [ 37] [ 12] [507900410460] +16:47:20 [ 39] [ 2] [14] +16:47:20 [ 41] [ 8] [08000300] +16:47:20 [ 49] [ 3] [418] +16:47:20 ============================================================================ +16:47:20 Calculate Source COMM Id = 1 +16:47:20 ============================================================================ +16:47:20 + + +waiting on router queue for slot.... +16:47:23 ============================================================================ +16:47:23 Slot Id : <270> +16:47:23 Transaction Type : REQUEST +16:47:23 Received From : +16:47:23 ============================================================================ +16:47:23 FNo. Len. Field Value +16:47:23 ============================================================================ +16:47:23 [ 1] [ 4] [0200] +16:47:23 [ 2] [ 16] [6213544001613212] +16:47:23 [ 3] [ 6] [310000] +16:47:23 [ 4] [ 12] [000000000000] +16:47:23 [ 7] [ 10] [0320165510] +16:47:23 [ 11] [ 6] [240454] +16:47:23 [ 12] [ 6] [165510] +16:47:23 [ 13] [ 4] [0320] +16:47:23 [ 14] [ 4] [4912] +16:47:23 [ 15] [ 4] [0320] +16:47:23 [ 18] [ 4] [6011] +16:47:23 [ 22] [ 3] [900] +16:47:23 [ 25] [ 2] [02] +16:47:23 [ 28] [ 9] [000000000] +16:47:23 [ 32] [ 6] [220699] +16:47:23 [ 35] [ 32] [6213544001613212=491212011321233] +16:47:23 [ 37] [ 12] [507900360212] +16:47:23 [ 41] [ 8] [05000300] +16:47:23 [ 42] [ 15] [APTRA ] +16:47:23 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:47:23 [ 49] [ 3] [418] +16:47:23 [ 52] [ 16] [1D1031BFB92EE33B] +16:47:23 ============================================================================ +16:47:23 + + +waiting on router queue for slot.... +16:47:23 Sending to : +16:47:23 ============================================================================ +16:47:23 Sending to : +16:47:23 ============================================================================ +16:47:23 ============================================================================ +16:47:23 Slot Id : <270> +16:47:23 Transaction Type : REQUEST +16:47:23 Received From : +16:47:23 ============================================================================ +16:47:23 FNo. Len. Field Value +16:47:23 ============================================================================ +16:47:23 [ 1] [ 4] [0200] +16:47:23 [ 2] [ 16] [6213544001613212] +16:47:23 [ 3] [ 6] [310000] +16:47:23 [ 4] [ 12] [000000000000] +16:47:23 [ 7] [ 10] [0320165510] +16:47:23 [ 11] [ 6] [240454] +16:47:23 [ 12] [ 6] [165510] +16:47:23 [ 13] [ 4] [0320] +16:47:23 [ 14] [ 4] [4912] +16:47:23 [ 15] [ 4] [0320] +16:47:23 [ 18] [ 4] [6011] +16:47:23 [ 22] [ 3] [900] +16:47:23 [ 25] [ 2] [02] +16:47:23 [ 28] [ 9] [000000000] +16:47:23 [ 32] [ 6] [220699] +16:47:23 [ 35] [ 32] [6213544001613212=491212011321233] +16:47:23 [ 37] [ 12] [507900360212] +16:47:23 [ 41] [ 8] [05000300] +16:47:23 [ 42] [ 15] [APTRA ] +16:47:23 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:47:23 [ 49] [ 3] [418] +16:47:23 [ 52] [ 16] [1D1031BFB92EE33B] +16:47:23 ============================================================================ +16:47:23 + + +waiting on router queue for slot.... +16:47:23 Sending to : +16:47:23 ============================================================================ +16:47:23 ============================================================================ +16:47:23 Slot Id : <270> +16:47:23 Transaction Type : REQUEST +16:47:23 Received From : +16:47:23 ============================================================================ +16:47:23 FNo. Len. Field Value +16:47:23 ============================================================================ +16:47:23 [ 1] [ 4] [0200] +16:47:23 [ 2] [ 16] [6213544001613212] +16:47:23 [ 3] [ 6] [310000] +16:47:23 [ 4] [ 12] [000000000000] +16:47:23 [ 7] [ 10] [0320165510] +16:47:23 [ 11] [ 6] [240454] +16:47:23 [ 12] [ 6] [165510] +16:47:23 [ 13] [ 4] [0320] +16:47:23 [ 14] [ 4] [4912] +16:47:23 [ 15] [ 4] [0320] +16:47:23 [ 18] [ 4] [6011] +16:47:23 [ 22] [ 3] [900] +16:47:23 [ 25] [ 2] [02] +16:47:23 [ 28] [ 9] [000000000] +16:47:23 [ 32] [ 6] [220699] +16:47:23 [ 35] [ 32] [6213544001613212=491212011321233] +16:47:23 [ 37] [ 12] [507900360212] +16:47:23 [ 41] [ 8] [05000300] +16:47:23 [ 42] [ 15] [APTRA ] +16:47:23 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:47:23 [ 49] [ 3] [418] +16:47:23 [ 52] [ 16] [B1A49E7A2CF231FD] +16:47:23 ============================================================================ +16:47:23 + + +waiting on router queue for slot.... +16:47:23 Sending to : <0> +16:47:23 ============================================================================ +16:47:24 ============================================================================ +16:47:24 Slot Id : <270> +16:47:24 Transaction Type : RESPONSE +16:47:24 Received From : +16:47:24 ============================================================================ +16:47:24 FNo. Len. Field Value +16:47:24 ============================================================================ +16:47:24 [ 1] [ 4] [0210] +16:47:24 [ 2] [ 16] [6213544001613212] +16:47:24 [ 3] [ 6] [310000] +16:47:24 [ 4] [ 12] [000000000000] +16:47:24 [ 7] [ 10] [0320165510] +16:47:24 [ 11] [ 6] [240454] +16:47:24 [ 12] [ 6] [165510] +16:47:24 [ 13] [ 4] [0320] +16:47:24 [ 15] [ 4] [0320] +16:47:24 [ 18] [ 4] [6011] +16:47:24 [ 32] [ 6] [220699] +16:47:24 [ 35] [ 32] [6213544001613212=491212011321233] +16:47:24 [ 37] [ 12] [507900360212] +16:47:24 [ 38] [ 6] [767919] +16:47:24 [ 39] [ 2] [00] +16:47:24 [ 41] [ 8] [05000300] +16:47:24 [ 49] [ 3] [418] +16:47:24 [ 54] [ 40] [0001418C0000630016840002418C000063001684] +16:47:24 ============================================================================ +16:47:24 Sending to : +16:47:24 ============================================================================ +16:47:24 + + +waiting on router queue for slot.... +16:47:25 ============================================================================ +16:47:25 Slot Id : <199> +16:47:25 Transaction Type : REQUEST +16:47:25 Received From : +16:47:25 ============================================================================ +16:47:25 FNo. Len. Field Value +16:47:25 ============================================================================ +16:47:25 [ 1] [ 4] [0800] +16:47:25 [ 7] [ 10] [0320235913] +16:47:25 [ 11] [ 6] [165913] +16:47:25 [ 37] [ 12] [57916165913] +16:47:25 [ 70] [ 3] [301] +16:47:25 ============================================================================ +16:47:25 + + +waiting on router queue for slot.... +16:47:25 Sending to : +16:47:25 ============================================================================ +16:47:25 ============================================================================ +16:47:25 Slot Id : <199> +16:47:25 Transaction Type : RESPONSE +16:47:25 Received From : +16:47:25 ============================================================================ +16:47:25 FNo. Len. Field Value +16:47:25 ============================================================================ +16:47:25 [ 1] [ 4] [0810] +16:47:25 [ 7] [ 10] [0320235913] +16:47:25 [ 11] [ 6] [165913] +16:47:25 [ 37] [ 12] [579161659130] +16:47:25 [ 39] [ 2] [00] +16:47:25 [ 70] [ 3] [810] +16:47:25 ============================================================================ +16:47:25 Calculate Source COMM Id = 6 +16:47:25 ============================================================================ +16:47:25 + + +waiting on router queue for slot.... +16:47:25 ============================================================================ +16:47:25 Slot Id : <270> +16:47:25 Transaction Type : RESPONSE +16:47:25 Received From : +16:47:25 ============================================================================ +16:47:25 FNo. Len. Field Value +16:47:25 ============================================================================ +16:47:25 [ 1] [ 4] [0210] +16:47:25 [ 2] [ 16] [6213544001613212] +16:47:25 [ 3] [ 6] [310000] +16:47:25 [ 4] [ 12] [000000000000] +16:47:25 [ 7] [ 10] [0320165510] +16:47:25 [ 11] [ 6] [240454] +16:47:25 [ 12] [ 6] [165510] +16:47:25 [ 13] [ 4] [0320] +16:47:25 [ 15] [ 4] [0320] +16:47:25 [ 18] [ 4] [6011] +16:47:25 [ 32] [ 6] [220699] +16:47:25 [ 35] [ 32] [6213544001613212=491212011321233] +16:47:25 [ 37] [ 12] [507900360212] +16:47:25 [ 38] [ 6] [767919] +16:47:25 [ 39] [ 2] [00] +16:47:25 [ 41] [ 8] [05000300] +16:47:25 [ 49] [ 3] [418] +16:47:25 [ 54] [ 40] [0001418C0000630016840002418C000063001684] +16:47:25 ============================================================================ +16:47:25 Calculate Source COMM Id = 1 +16:47:25 ============================================================================ +16:47:25 + + +waiting on router queue for slot.... +16:47:28 ============================================================================ +16:47:28 Slot Id : <240> +16:47:28 Transaction Type : REQUEST +16:47:28 Received From : +16:47:28 ============================================================================ +16:47:28 FNo. Len. Field Value +16:47:28 ============================================================================ +16:47:28 [ 1] [ 4] [0200] +16:47:28 [ 2] [ 16] [6213545000937916] +16:47:28 [ 3] [ 6] [010000] +16:47:28 [ 4] [ 12] [000010000000] +16:47:28 [ 7] [ 10] [0320094634] +16:47:28 [ 11] [ 6] [270609] +16:47:28 [ 12] [ 6] [164633] +16:47:28 [ 13] [ 4] [0320] +16:47:28 [ 14] [ 4] [4912] +16:47:28 [ 15] [ 4] [0320] +16:47:28 [ 18] [ 4] [6011] +16:47:28 [ 19] [ 3] [418] +16:47:28 [ 22] [ 3] [021] +16:47:28 [ 25] [ 2] [01] +16:47:28 [ 28] [ 9] [D00002000] +16:47:28 [ 32] [ 6] [180893] +16:47:28 [ 35] [ 32] [6213545000937916=491212013791854] +16:47:28 [ 37] [ 12] [507909270609] +16:47:28 [ 41] [ 8] [0543VLSC] +16:47:28 [ 42] [ 15] [999999 ] +16:47:28 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +16:47:28 [ 49] [ 3] [418] +16:47:28 [ 52] [ 16] [7B9D70ACA3535CED] +16:47:28 ============================================================================ +16:47:28 + + +waiting on router queue for slot.... +16:47:28 Sending to : +16:47:28 ============================================================================ +16:47:28 Sending to : +16:47:28 ============================================================================ +16:47:28 ============================================================================ +16:47:28 Slot Id : <240> +16:47:28 Transaction Type : REQUEST +16:47:28 Received From : +16:47:28 ============================================================================ +16:47:28 FNo. Len. Field Value +16:47:28 ============================================================================ +16:47:28 [ 1] [ 4] [0200] +16:47:28 [ 2] [ 16] [6213545000937916] +16:47:28 [ 3] [ 6] [010000] +16:47:28 [ 4] [ 12] [000010000000] +16:47:28 [ 7] [ 10] [0320094634] +16:47:28 [ 11] [ 6] [270609] +16:47:28 [ 12] [ 6] [164633] +16:47:28 [ 13] [ 4] [0320] +16:47:28 [ 14] [ 4] [4912] +16:47:28 [ 15] [ 4] [0320] +16:47:28 [ 18] [ 4] [6011] +16:47:28 [ 19] [ 3] [418] +16:47:28 [ 22] [ 3] [021] +16:47:28 [ 25] [ 2] [01] +16:47:28 [ 28] [ 9] [D00002000] +16:47:28 [ 32] [ 6] [180893] +16:47:28 [ 35] [ 32] [6213545000937916=491212013791854] +16:47:28 [ 37] [ 12] [507909270609] +16:47:28 [ 41] [ 8] [0543VLSC] +16:47:28 [ 42] [ 15] [999999 ] +16:47:28 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +16:47:28 [ 49] [ 3] [418] +16:47:28 [ 52] [ 16] [7B9D70ACA3535CED] +16:47:28 ============================================================================ +16:47:28 + + +waiting on router queue for slot.... +16:47:28 Sending to : +16:47:28 ============================================================================ +16:47:28 ============================================================================ +16:47:28 Slot Id : <240> +16:47:28 Transaction Type : REQUEST +16:47:28 Received From : +16:47:28 ============================================================================ +16:47:28 FNo. Len. Field Value +16:47:28 ============================================================================ +16:47:28 [ 1] [ 4] [0200] +16:47:28 [ 2] [ 16] [6213545000937916] +16:47:28 [ 3] [ 6] [010000] +16:47:28 [ 4] [ 12] [000010000000] +16:47:28 [ 7] [ 10] [0320094634] +16:47:28 [ 11] [ 6] [270609] +16:47:28 [ 12] [ 6] [164633] +16:47:28 [ 13] [ 4] [0320] +16:47:28 [ 14] [ 4] [4912] +16:47:28 [ 15] [ 4] [0320] +16:47:28 [ 18] [ 4] [6011] +16:47:28 [ 19] [ 3] [418] +16:47:28 [ 22] [ 3] [021] +16:47:28 [ 25] [ 2] [01] +16:47:28 [ 28] [ 9] [D00002000] +16:47:28 [ 32] [ 6] [180893] +16:47:28 [ 35] [ 32] [6213545000937916=491212013791854] +16:47:28 [ 37] [ 12] [507909270609] +16:47:28 [ 41] [ 8] [0543VLSC] +16:47:28 [ 42] [ 15] [999999 ] +16:47:28 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +16:47:28 [ 49] [ 3] [418] +16:47:28 [ 52] [ 16] [8637E869A69712B4] +16:47:28 ============================================================================ +16:47:28 + + +waiting on router queue for slot.... +16:47:28 Sending to : <0> +16:47:28 ============================================================================ +16:47:28 ============================================================================ +16:47:28 Slot Id : <275> +16:47:28 Transaction Type : REQUEST +16:47:28 Received From : +16:47:28 ============================================================================ +16:47:28 FNo. Len. Field Value +16:47:28 ============================================================================ +16:47:28 [ 1] [ 4] [0800] +16:47:28 [ 7] [ 10] [0320094635] +16:47:28 [ 11] [ 6] [157305] +16:47:28 [ 70] [ 3] [301] +16:47:28 ============================================================================ +16:47:28 + + +waiting on router queue for slot.... +16:47:28 Sending to : +16:47:28 ============================================================================ +16:47:28 ============================================================================ +16:47:28 Slot Id : <275> +16:47:28 Transaction Type : RESPONSE +16:47:28 Received From : +16:47:28 ============================================================================ +16:47:28 FNo. Len. Field Value +16:47:28 ============================================================================ +16:47:28 [ 1] [ 4] [0810] +16:47:28 [ 7] [ 10] [0320094635] +16:47:28 [ 11] [ 6] [157305] +16:47:28 [ 39] [ 2] [00] +16:47:28 [ 70] [ 3] [301] +16:47:28 ============================================================================ +16:47:28 Calculate Source COMM Id = 2 +16:47:28 ============================================================================ +16:47:28 + + +waiting on router queue for slot.... +16:47:29 ============================================================================ +16:47:29 Slot Id : <240> +16:47:29 Transaction Type : RESPONSE +16:47:29 Received From : +16:47:29 ============================================================================ +16:47:29 FNo. Len. Field Value +16:47:29 ============================================================================ +16:47:29 [ 1] [ 4] [0210] +16:47:29 [ 2] [ 16] [6213545000937916] +16:47:29 [ 3] [ 6] [010000] +16:47:29 [ 4] [ 12] [000010000000] +16:47:29 [ 7] [ 10] [0320094634] +16:47:29 [ 11] [ 6] [270609] +16:47:29 [ 12] [ 6] [164633] +16:47:29 [ 13] [ 4] [0320] +16:47:29 [ 15] [ 4] [0320] +16:47:29 [ 18] [ 4] [6011] +16:47:29 [ 19] [ 3] [418] +16:47:29 [ 32] [ 6] [180893] +16:47:29 [ 35] [ 32] [6213545000937916=491212013791854] +16:47:29 [ 37] [ 12] [507909270609] +16:47:29 [ 38] [ 6] [270609] +16:47:29 [ 39] [ 2] [51] +16:47:29 [ 41] [ 8] [0543VLSC] +16:47:29 [ 49] [ 3] [418] +16:47:29 [ 54] [ 40] [0001418C0000126831950002418C000012683195] +16:47:29 ============================================================================ +16:47:29 Sending to : +16:47:29 ============================================================================ +16:47:29 + + +waiting on router queue for slot.... +16:47:30 ============================================================================ +16:47:30 Slot Id : <240> +16:47:30 Transaction Type : RESPONSE +16:47:30 Received From : +16:47:30 ============================================================================ +16:47:30 FNo. Len. Field Value +16:47:30 ============================================================================ +16:47:30 [ 1] [ 4] [0210] +16:47:30 [ 2] [ 16] [6213545000937916] +16:47:30 [ 3] [ 6] [010000] +16:47:30 [ 4] [ 12] [000010000000] +16:47:30 [ 7] [ 10] [0320094634] +16:47:30 [ 11] [ 6] [270609] +16:47:30 [ 12] [ 6] [164633] +16:47:30 [ 13] [ 4] [0320] +16:47:30 [ 15] [ 4] [0320] +16:47:30 [ 18] [ 4] [6011] +16:47:30 [ 19] [ 3] [418] +16:47:30 [ 32] [ 6] [180893] +16:47:30 [ 35] [ 32] [6213545000937916=491212013791854] +16:47:30 [ 37] [ 12] [507909270609] +16:47:30 [ 38] [ 6] [270609] +16:47:30 [ 39] [ 2] [51] +16:47:30 [ 41] [ 8] [0543VLSC] +16:47:30 [ 49] [ 3] [418] +16:47:30 [ 54] [ 40] [0001418C0000126831950002418C000012683195] +16:47:30 ============================================================================ +16:47:30 Calculate Source COMM Id = 2 +16:47:30 ============================================================================ +16:47:30 + + +waiting on router queue for slot.... +16:47:41 ============================================================================ +16:47:41 Slot Id : <197> +16:47:41 Transaction Type : REQUEST +16:47:41 Received From : +16:47:41 ============================================================================ +16:47:41 FNo. Len. Field Value +16:47:41 ============================================================================ +16:47:41 [ 1] [ 4] [0200] +16:47:41 [ 2] [ 16] [6688990040086033] +16:47:41 [ 3] [ 6] [011000] +16:47:41 [ 4] [ 12] [000020000000] +16:47:41 [ 7] [ 10] [0320164736] +16:47:41 [ 11] [ 6] [804739] +16:47:41 [ 12] [ 6] [164736] +16:47:41 [ 13] [ 4] [0320] +16:47:41 [ 15] [ 4] [0320] +16:47:41 [ 18] [ 4] [6011] +16:47:41 [ 22] [ 3] [900] +16:47:41 [ 25] [ 2] [02] +16:47:41 [ 28] [ 9] [D00002000] +16:47:41 [ 32] [ 6] [621354] +16:47:41 [ 35] [ 37] [6688990040086033=98011261602789800000] +16:47:41 [ 37] [ 12] [507903908903] +16:47:41 [ 41] [ 8] [01010600] +16:47:41 [ 42] [ 15] [NATIVE ] +16:47:41 [ 43] [ 40] [Maria Hospital Phonhong LAO] +16:47:41 [ 49] [ 3] [418] +16:47:41 [ 52] [ 16] [24CE6F1E565C2EF7] +16:47:41 ============================================================================ +16:47:41 + + +waiting on router queue for slot.... +16:47:41 Sending to : +16:47:41 ============================================================================ +16:47:41 Sending to : +16:47:41 ============================================================================ +16:47:42 ============================================================================ +16:47:42 Slot Id : <256> +16:47:42 Transaction Type : REQUEST +16:47:42 Received From : +16:47:42 ============================================================================ +16:47:42 FNo. Len. Field Value +16:47:42 ============================================================================ +16:47:42 [ 1] [ 4] [0200] +16:47:42 [ 2] [ 16] [1234010100209604] +16:47:42 [ 3] [ 6] [010000] +16:47:42 [ 4] [ 12] [000010000000] +16:47:42 [ 7] [ 10] [0320164737] +16:47:42 [ 11] [ 6] [804742] +16:47:42 [ 12] [ 6] [164737] +16:47:42 [ 13] [ 4] [0320] +16:47:42 [ 15] [ 4] [0320] +16:47:42 [ 18] [ 4] [6011] +16:47:42 [ 22] [ 3] [900] +16:47:42 [ 25] [ 2] [02] +16:47:42 [ 28] [ 9] [D00002000] +16:47:42 [ 32] [ 6] [621354] +16:47:42 [ 35] [ 32] [1234010100209604=160400010960000] +16:47:42 [ 37] [ 12] [507903625312] +16:47:42 [ 41] [ 8] [16001500] +16:47:42 [ 42] [ 15] [NATIVE ] +16:47:42 [ 43] [ 40] [Sea game Village Xaythany LAO] +16:47:42 [ 49] [ 3] [418] +16:47:42 [ 52] [ 16] [CD56AF0251DFEA4A] +16:47:42 ============================================================================ +16:47:42 + + +waiting on router queue for slot.... +16:47:42 Sending to : +16:47:42 ============================================================================ +16:47:42 Sending to : +16:47:42 ============================================================================ +16:47:42 ============================================================================ +16:47:42 Slot Id : <197> +16:47:42 Transaction Type : REQUEST +16:47:42 Received From : +16:47:42 ============================================================================ +16:47:42 FNo. Len. Field Value +16:47:42 ============================================================================ +16:47:42 [ 1] [ 4] [0200] +16:47:42 [ 2] [ 16] [6688990040086033] +16:47:42 [ 3] [ 6] [011000] +16:47:42 [ 4] [ 12] [000020000000] +16:47:42 [ 7] [ 10] [0320164736] +16:47:42 [ 11] [ 6] [804739] +16:47:42 [ 12] [ 6] [164736] +16:47:42 [ 13] [ 4] [0320] +16:47:42 [ 15] [ 4] [0320] +16:47:42 [ 18] [ 4] [6011] +16:47:42 [ 22] [ 3] [900] +16:47:42 [ 25] [ 2] [02] +16:47:42 [ 28] [ 9] [D00002000] +16:47:42 [ 32] [ 6] [621354] +16:47:42 [ 35] [ 37] [6688990040086033=98011261602789800000] +16:47:42 [ 37] [ 12] [507903908903] +16:47:42 [ 41] [ 8] [01010600] +16:47:42 [ 42] [ 15] [NATIVE ] +16:47:42 [ 43] [ 40] [Maria Hospital Phonhong LAO] +16:47:42 [ 49] [ 3] [418] +16:47:42 [ 52] [ 16] [24CE6F1E565C2EF7] +16:47:42 ============================================================================ +16:47:42 + + +waiting on router queue for slot.... +16:47:42 Sending to : +16:47:42 ============================================================================ +16:47:42 ============================================================================ +16:47:42 Slot Id : <197> +16:47:42 Transaction Type : REQUEST +16:47:42 Received From : +16:47:42 ============================================================================ +16:47:42 FNo. Len. Field Value +16:47:42 ============================================================================ +16:47:42 [ 1] [ 4] [0200] +16:47:42 [ 2] [ 16] [6688990040086033] +16:47:42 [ 3] [ 6] [011000] +16:47:42 [ 4] [ 12] [000020000000] +16:47:42 [ 7] [ 10] [0320164736] +16:47:42 [ 11] [ 6] [804739] +16:47:42 [ 12] [ 6] [164736] +16:47:42 [ 13] [ 4] [0320] +16:47:42 [ 15] [ 4] [0320] +16:47:42 [ 18] [ 4] [6011] +16:47:42 [ 22] [ 3] [900] +16:47:42 [ 25] [ 2] [02] +16:47:42 [ 28] [ 9] [D00002000] +16:47:42 [ 32] [ 6] [621354] +16:47:42 [ 35] [ 37] [6688990040086033=98011261602789800000] +16:47:42 [ 37] [ 12] [507903908903] +16:47:42 [ 41] [ 8] [01010600] +16:47:42 [ 42] [ 15] [NATIVE ] +16:47:42 [ 43] [ 40] [Maria Hospital Phonhong LAO] +16:47:42 [ 49] [ 3] [418] +16:47:42 [ 52] [ 16] [94D033539C6C9280] +16:47:42 ============================================================================ +16:47:42 + + +waiting on router queue for slot.... +16:47:42 Sending to : <4> +16:47:42 ============================================================================ +16:47:42 ============================================================================ +16:47:42 Slot Id : <256> +16:47:42 Transaction Type : REQUEST +16:47:42 Received From : +16:47:42 ============================================================================ +16:47:42 FNo. Len. Field Value +16:47:42 ============================================================================ +16:47:42 [ 1] [ 4] [0200] +16:47:42 [ 2] [ 16] [1234010100209604] +16:47:42 [ 3] [ 6] [010000] +16:47:42 [ 4] [ 12] [000010000000] +16:47:42 [ 7] [ 10] [0320164737] +16:47:42 [ 11] [ 6] [804742] +16:47:42 [ 12] [ 6] [164737] +16:47:42 [ 13] [ 4] [0320] +16:47:42 [ 15] [ 4] [0320] +16:47:42 [ 18] [ 4] [6011] +16:47:42 [ 22] [ 3] [900] +16:47:42 [ 25] [ 2] [02] +16:47:42 [ 28] [ 9] [D00002000] +16:47:42 [ 32] [ 6] [621354] +16:47:42 [ 35] [ 32] [1234010100209604=160400010960000] +16:47:42 [ 37] [ 12] [507903625312] +16:47:42 [ 41] [ 8] [16001500] +16:47:42 [ 42] [ 15] [NATIVE ] +16:47:42 [ 43] [ 40] [Sea game Village Xaythany LAO] +16:47:42 [ 49] [ 3] [418] +16:47:42 [ 52] [ 16] [CD56AF0251DFEA4A] +16:47:42 ============================================================================ +16:47:42 + + +waiting on router queue for slot.... +16:47:42 Sending to : +16:47:42 ============================================================================ +16:47:42 ============================================================================ +16:47:42 Slot Id : <256> +16:47:42 Transaction Type : REQUEST +16:47:42 Received From : +16:47:42 ============================================================================ +16:47:42 FNo. Len. Field Value +16:47:42 ============================================================================ +16:47:42 [ 1] [ 4] [0200] +16:47:42 [ 2] [ 16] [1234010100209604] +16:47:42 [ 3] [ 6] [010000] +16:47:42 [ 4] [ 12] [000010000000] +16:47:42 [ 7] [ 10] [0320164737] +16:47:42 [ 11] [ 6] [804742] +16:47:42 [ 12] [ 6] [164737] +16:47:42 [ 13] [ 4] [0320] +16:47:42 [ 15] [ 4] [0320] +16:47:42 [ 18] [ 4] [6011] +16:47:42 [ 22] [ 3] [900] +16:47:42 [ 25] [ 2] [02] +16:47:42 [ 28] [ 9] [D00002000] +16:47:42 [ 32] [ 6] [621354] +16:47:42 [ 35] [ 32] [1234010100209604=160400010960000] +16:47:42 [ 37] [ 12] [507903625312] +16:47:42 [ 41] [ 8] [16001500] +16:47:42 [ 42] [ 15] [NATIVE ] +16:47:42 [ 43] [ 40] [Sea game Village Xaythany LAO] +16:47:42 [ 49] [ 3] [418] +16:47:42 [ 52] [ 16] [19F552345D393B72] +16:47:42 ============================================================================ +16:47:42 + + +waiting on router queue for slot.... +16:47:42 Sending to : <6> +16:47:42 ============================================================================ +16:47:43 ============================================================================ +16:47:43 Slot Id : <197> +16:47:43 Transaction Type : RESPONSE +16:47:43 Received From : +16:47:43 ============================================================================ +16:47:43 FNo. Len. Field Value +16:47:43 ============================================================================ +16:47:43 [ 1] [ 4] [0210] +16:47:43 [ 2] [ 16] [6688990040086033] +16:47:43 [ 3] [ 6] [011000] +16:47:43 [ 4] [ 12] [000020000000] +16:47:43 [ 11] [ 6] [804739] +16:47:43 [ 12] [ 6] [164736] +16:47:43 [ 15] [ 4] [0320] +16:47:43 [ 18] [ 4] [6011] +16:47:43 [ 32] [ 6] [621354] +16:47:43 [ 35] [ 37] [6688990040086033=98011261602789800000] +16:47:43 [ 37] [ 12] [507903908903] +16:47:43 [ 38] [ 6] [035215] +16:47:43 [ 39] [ 2] [00] +16:47:43 [ 41] [ 8] [01010600] +16:47:43 [ 49] [ 3] [418] +16:47:43 [ 54] [ 20] [1002418C000030655889] +16:47:43 ============================================================================ +16:47:43 Sending to : +16:47:43 ============================================================================ +16:47:43 + + +waiting on router queue for slot.... +16:47:44 ============================================================================ +16:47:44 Slot Id : <197> +16:47:44 Transaction Type : RESPONSE +16:47:44 Received From : +16:47:44 ============================================================================ +16:47:44 FNo. Len. Field Value +16:47:44 ============================================================================ +16:47:44 [ 1] [ 4] [0210] +16:47:44 [ 2] [ 16] [6688990040086033] +16:47:44 [ 3] [ 6] [011000] +16:47:44 [ 4] [ 12] [000020000000] +16:47:44 [ 11] [ 6] [804739] +16:47:44 [ 12] [ 6] [164736] +16:47:44 [ 15] [ 4] [0320] +16:47:44 [ 18] [ 4] [6011] +16:47:44 [ 32] [ 6] [621354] +16:47:44 [ 35] [ 37] [6688990040086033=98011261602789800000] +16:47:44 [ 37] [ 12] [507903908903] +16:47:44 [ 38] [ 6] [035215] +16:47:44 [ 39] [ 2] [00] +16:47:44 [ 41] [ 8] [01010600] +16:47:44 [ 49] [ 3] [418] +16:47:44 [ 54] [ 20] [1002418C000030655889] +16:47:44 ============================================================================ +16:47:44 Calculate Source COMM Id = 0 +16:47:44 ============================================================================ +16:47:44 + + +waiting on router queue for slot.... +16:47:45 ============================================================================ +16:47:45 Slot Id : <218> +16:47:45 Transaction Type : REQUEST +16:47:45 Received From : +16:47:45 ============================================================================ +16:47:45 FNo. Len. Field Value +16:47:45 ============================================================================ +16:47:45 [ 1] [ 4] [0800] +16:47:45 [ 7] [ 10] [0320094652] +16:47:45 [ 11] [ 6] [157306] +16:47:45 [ 70] [ 3] [301] +16:47:45 ============================================================================ +16:47:45 + + +waiting on router queue for slot.... +16:47:45 Sending to : +16:47:45 ============================================================================ +16:47:45 ============================================================================ +16:47:45 Slot Id : <218> +16:47:45 Transaction Type : RESPONSE +16:47:45 Received From : +16:47:45 ============================================================================ +16:47:45 FNo. Len. Field Value +16:47:45 ============================================================================ +16:47:45 [ 1] [ 4] [0810] +16:47:45 [ 7] [ 10] [0320094652] +16:47:45 [ 11] [ 6] [157306] +16:47:45 [ 39] [ 2] [00] +16:47:45 [ 70] [ 3] [301] +16:47:45 ============================================================================ +16:47:45 Calculate Source COMM Id = 2 +16:47:45 ============================================================================ +16:47:45 + + +waiting on router queue for slot.... +16:47:46 ============================================================================ +16:47:46 Slot Id : <256> +16:47:46 Transaction Type : RESPONSE +16:47:46 Received From : +16:47:46 ============================================================================ +16:47:46 FNo. Len. Field Value +16:47:46 ============================================================================ +16:47:46 [ 1] [ 4] [0210] +16:47:46 [ 2] [ 16] [1234010100209604] +16:47:46 [ 3] [ 6] [010000] +16:47:46 [ 4] [ 12] [000010000000] +16:47:46 [ 7] [ 10] [0320164737] +16:47:46 [ 11] [ 6] [804742] +16:47:46 [ 12] [ 6] [164737] +16:47:46 [ 13] [ 4] [0320] +16:47:46 [ 15] [ 4] [0320] +16:47:46 [ 18] [ 4] [6011] +16:47:46 [ 19] [ 3] [418] +16:47:46 [ 32] [ 6] [621354] +16:47:46 [ 35] [ 32] [1234010100209604=160400010960000] +16:47:46 [ 37] [ 12] [507903625312] +16:47:46 [ 38] [ 6] [493187] +16:47:46 [ 39] [ 2] [00] +16:47:46 [ 41] [ 8] [16001500] +16:47:46 [ 49] [ 3] [418] +16:47:46 ============================================================================ +16:47:46 Sending to : +16:47:46 ============================================================================ +16:47:46 + + +waiting on router queue for slot.... +16:47:47 ============================================================================ +16:47:47 Slot Id : <228> +16:47:47 Transaction Type : REQUEST +16:47:47 Received From : +16:47:47 ============================================================================ +16:47:47 FNo. Len. Field Value +16:47:47 ============================================================================ +16:47:47 [ 1] [ 4] [0200] +16:47:47 [ 2] [ 16] [6213544002279120] +16:47:47 [ 3] [ 6] [011000] +16:47:47 [ 4] [ 12] [000040000000] +16:47:47 [ 7] [ 10] [0320164807] +16:47:47 [ 11] [ 6] [208976] +16:47:47 [ 12] [ 6] [164313] +16:47:47 [ 13] [ 4] [0320] +16:47:47 [ 14] [ 4] [4912] +16:47:47 [ 15] [ 4] [0320] +16:47:47 [ 18] [ 4] [6011] +16:47:47 [ 19] [ 3] [418] +16:47:47 [ 22] [ 3] [021] +16:47:47 [ 25] [ 2] [01] +16:47:47 [ 28] [ 9] [D00002000] +16:47:47 [ 32] [ 6] [198901] +16:47:47 [ 35] [ 32] [6213544002279120=491212017912051] +16:47:47 [ 37] [ 12] [507916208976] +16:47:47 [ 41] [ 8] [19529001] +16:47:47 [ 42] [ 15] [000000041952901] +16:47:47 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:47:47 [ 49] [ 3] [418] +16:47:47 [ 52] [ 16] [0296ED91256AEBB0] +16:47:47 ============================================================================ +16:47:47 + + +waiting on router queue for slot.... +16:47:47 Sending to : +16:47:47 ============================================================================ +16:47:47 Sending to : +16:47:47 ============================================================================ +16:47:47 ============================================================================ +16:47:47 Slot Id : <228> +16:47:47 Transaction Type : REQUEST +16:47:47 Received From : +16:47:47 ============================================================================ +16:47:47 FNo. Len. Field Value +16:47:47 ============================================================================ +16:47:47 [ 1] [ 4] [0200] +16:47:47 [ 2] [ 16] [6213544002279120] +16:47:47 [ 3] [ 6] [011000] +16:47:47 [ 4] [ 12] [000040000000] +16:47:47 [ 7] [ 10] [0320164807] +16:47:47 [ 11] [ 6] [208976] +16:47:47 [ 12] [ 6] [164313] +16:47:47 [ 13] [ 4] [0320] +16:47:47 [ 14] [ 4] [4912] +16:47:47 [ 15] [ 4] [0320] +16:47:47 [ 18] [ 4] [6011] +16:47:47 [ 19] [ 3] [418] +16:47:47 [ 22] [ 3] [021] +16:47:47 [ 25] [ 2] [01] +16:47:47 [ 28] [ 9] [D00002000] +16:47:47 [ 32] [ 6] [198901] +16:47:47 [ 35] [ 32] [6213544002279120=491212017912051] +16:47:47 [ 37] [ 12] [507916208976] +16:47:47 [ 41] [ 8] [19529001] +16:47:47 [ 42] [ 15] [000000041952901] +16:47:47 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:47:47 [ 49] [ 3] [418] +16:47:47 [ 52] [ 16] [0296ED91256AEBB0] +16:47:47 ============================================================================ +16:47:47 + + +waiting on router queue for slot.... +16:47:47 Sending to : +16:47:47 ============================================================================ +16:47:47 ============================================================================ +16:47:47 Slot Id : <228> +16:47:47 Transaction Type : REQUEST +16:47:47 Received From : +16:47:47 ============================================================================ +16:47:47 FNo. Len. Field Value +16:47:47 ============================================================================ +16:47:47 [ 1] [ 4] [0200] +16:47:47 [ 2] [ 16] [6213544002279120] +16:47:47 [ 3] [ 6] [011000] +16:47:47 [ 4] [ 12] [000040000000] +16:47:47 [ 7] [ 10] [0320164807] +16:47:47 [ 11] [ 6] [208976] +16:47:47 [ 12] [ 6] [164313] +16:47:47 [ 13] [ 4] [0320] +16:47:47 [ 14] [ 4] [4912] +16:47:47 [ 15] [ 4] [0320] +16:47:47 [ 18] [ 4] [6011] +16:47:47 [ 19] [ 3] [418] +16:47:47 [ 22] [ 3] [021] +16:47:47 [ 25] [ 2] [01] +16:47:47 [ 28] [ 9] [D00002000] +16:47:47 [ 32] [ 6] [198901] +16:47:47 [ 35] [ 32] [6213544002279120=491212017912051] +16:47:47 [ 37] [ 12] [507916208976] +16:47:47 [ 41] [ 8] [19529001] +16:47:47 [ 42] [ 15] [000000041952901] +16:47:47 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:47:47 [ 49] [ 3] [418] +16:47:47 [ 52] [ 16] [3278C75BACF8E3B8] +16:47:47 ============================================================================ +16:47:47 + + +waiting on router queue for slot.... +16:47:47 Sending to : <0> +16:47:47 ============================================================================ +16:47:47 ============================================================================ +16:47:47 Slot Id : <256> +16:47:47 Transaction Type : RESPONSE +16:47:47 Received From : +16:47:47 ============================================================================ +16:47:47 FNo. Len. Field Value +16:47:47 ============================================================================ +16:47:47 [ 1] [ 4] [0210] +16:47:47 [ 2] [ 16] [1234010100209604] +16:47:47 [ 3] [ 6] [010000] +16:47:47 [ 4] [ 12] [000010000000] +16:47:47 [ 7] [ 10] [0320164737] +16:47:47 [ 11] [ 6] [804742] +16:47:47 [ 12] [ 6] [164737] +16:47:47 [ 13] [ 4] [0320] +16:47:47 [ 15] [ 4] [0320] +16:47:47 [ 18] [ 4] [6011] +16:47:47 [ 19] [ 3] [418] +16:47:47 [ 32] [ 6] [621354] +16:47:47 [ 35] [ 32] [1234010100209604=160400010960000] +16:47:47 [ 37] [ 12] [507903625312] +16:47:47 [ 38] [ 6] [493187] +16:47:47 [ 39] [ 2] [00] +16:47:47 [ 41] [ 8] [16001500] +16:47:47 [ 49] [ 3] [418] +16:47:47 ============================================================================ +16:47:47 Calculate Source COMM Id = 0 +16:47:47 ============================================================================ +16:47:47 + + +waiting on router queue for slot.... +16:47:48 ============================================================================ +16:47:48 Slot Id : <228> +16:47:48 Transaction Type : RESPONSE +16:47:48 Received From : +16:47:48 ============================================================================ +16:47:48 FNo. Len. Field Value +16:47:48 ============================================================================ +16:47:48 [ 1] [ 4] [0210] +16:47:48 [ 2] [ 16] [6213544002279120] +16:47:48 [ 3] [ 6] [011000] +16:47:48 [ 4] [ 12] [000040000000] +16:47:48 [ 7] [ 10] [0320164807] +16:47:48 [ 11] [ 6] [208976] +16:47:48 [ 12] [ 6] [164313] +16:47:48 [ 13] [ 4] [0320] +16:47:48 [ 15] [ 4] [0320] +16:47:48 [ 18] [ 4] [6011] +16:47:48 [ 19] [ 3] [418] +16:47:48 [ 32] [ 6] [198901] +16:47:48 [ 35] [ 32] [6213544002279120=491212017912051] +16:47:48 [ 37] [ 12] [507916208976] +16:47:48 [ 38] [ 6] [709178] +16:47:48 [ 39] [ 2] [00] +16:47:48 [ 41] [ 8] [19529001] +16:47:48 [ 49] [ 3] [418] +16:47:48 [ 54] [ 40] [1001418C0000085317301002418C000008531730] +16:47:48 ============================================================================ +16:47:48 Sending to : +16:47:48 ============================================================================ +16:47:48 + + +waiting on router queue for slot.... +16:47:49 ============================================================================ +16:47:49 Slot Id : <228> +16:47:49 Transaction Type : RESPONSE +16:47:49 Received From : +16:47:49 ============================================================================ +16:47:49 FNo. Len. Field Value +16:47:49 ============================================================================ +16:47:49 [ 1] [ 4] [0210] +16:47:49 [ 2] [ 16] [6213544002279120] +16:47:49 [ 3] [ 6] [011000] +16:47:49 [ 4] [ 12] [000040000000] +16:47:49 [ 7] [ 10] [0320164807] +16:47:49 [ 11] [ 6] [208976] +16:47:49 [ 12] [ 6] [164313] +16:47:49 [ 13] [ 4] [0320] +16:47:49 [ 15] [ 4] [0320] +16:47:49 [ 18] [ 4] [6011] +16:47:49 [ 19] [ 3] [418] +16:47:49 [ 32] [ 6] [198901] +16:47:49 [ 35] [ 32] [6213544002279120=491212017912051] +16:47:49 [ 37] [ 12] [507916208976] +16:47:49 [ 38] [ 6] [709178] +16:47:49 [ 39] [ 2] [00] +16:47:49 [ 41] [ 8] [19529001] +16:47:49 [ 49] [ 3] [418] +16:47:49 [ 54] [ 40] [1001418C0000085317301002418C000008531730] +16:47:49 ============================================================================ +16:47:49 Calculate Source COMM Id = 5 +16:47:49 ============================================================================ +16:47:49 + + +waiting on router queue for slot.... +16:47:55 ============================================================================ +16:47:55 Slot Id : <274> +16:47:55 Transaction Type : REQUEST +16:47:55 Received From : +16:47:55 ============================================================================ +16:47:55 FNo. Len. Field Value +16:47:55 ============================================================================ +16:47:55 [ 1] [ 4] [0200] +16:47:55 [ 2] [ 16] [6213544001613212] +16:47:55 [ 3] [ 6] [010000] +16:47:55 [ 4] [ 12] [000047000000] +16:47:55 [ 7] [ 10] [0320165542] +16:47:55 [ 11] [ 6] [240455] +16:47:55 [ 12] [ 6] [165542] +16:47:55 [ 13] [ 4] [0320] +16:47:55 [ 14] [ 4] [4912] +16:47:55 [ 15] [ 4] [0320] +16:47:55 [ 18] [ 4] [6011] +16:47:55 [ 22] [ 3] [900] +16:47:55 [ 25] [ 2] [02] +16:47:55 [ 28] [ 9] [D00002000] +16:47:55 [ 32] [ 6] [220699] +16:47:55 [ 35] [ 32] [6213544001613212=491212011321233] +16:47:55 [ 37] [ 12] [507900360213] +16:47:55 [ 41] [ 8] [05000300] +16:47:55 [ 42] [ 15] [APTRA ] +16:47:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:47:55 [ 49] [ 3] [418] +16:47:55 [ 52] [ 16] [1D1031BFB92EE33B] +16:47:55 ============================================================================ +16:47:55 + + +waiting on router queue for slot.... +16:47:55 Sending to : +16:47:55 ============================================================================ +16:47:55 Sending to : +16:47:55 ============================================================================ +16:47:55 ============================================================================ +16:47:55 Slot Id : <274> +16:47:55 Transaction Type : REQUEST +16:47:55 Received From : +16:47:55 ============================================================================ +16:47:55 FNo. Len. Field Value +16:47:55 ============================================================================ +16:47:55 [ 1] [ 4] [0200] +16:47:55 [ 2] [ 16] [6213544001613212] +16:47:55 [ 3] [ 6] [010000] +16:47:55 [ 4] [ 12] [000047000000] +16:47:55 [ 7] [ 10] [0320165542] +16:47:55 [ 11] [ 6] [240455] +16:47:55 [ 12] [ 6] [165542] +16:47:55 [ 13] [ 4] [0320] +16:47:55 [ 14] [ 4] [4912] +16:47:55 [ 15] [ 4] [0320] +16:47:55 [ 18] [ 4] [6011] +16:47:55 [ 22] [ 3] [900] +16:47:55 [ 25] [ 2] [02] +16:47:55 [ 28] [ 9] [D00002000] +16:47:55 [ 32] [ 6] [220699] +16:47:55 [ 35] [ 32] [6213544001613212=491212011321233] +16:47:55 [ 37] [ 12] [507900360213] +16:47:55 [ 41] [ 8] [05000300] +16:47:55 [ 42] [ 15] [APTRA ] +16:47:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:47:55 [ 49] [ 3] [418] +16:47:55 [ 52] [ 16] [1D1031BFB92EE33B] +16:47:55 ============================================================================ +16:47:55 + + +waiting on router queue for slot.... +16:47:55 Sending to : +16:47:55 ============================================================================ +16:47:55 ============================================================================ +16:47:55 Slot Id : <274> +16:47:55 Transaction Type : REQUEST +16:47:55 Received From : +16:47:55 ============================================================================ +16:47:55 FNo. Len. Field Value +16:47:55 ============================================================================ +16:47:55 [ 1] [ 4] [0200] +16:47:55 [ 2] [ 16] [6213544001613212] +16:47:55 [ 3] [ 6] [010000] +16:47:55 [ 4] [ 12] [000047000000] +16:47:55 [ 7] [ 10] [0320165542] +16:47:55 [ 11] [ 6] [240455] +16:47:55 [ 12] [ 6] [165542] +16:47:55 [ 13] [ 4] [0320] +16:47:55 [ 14] [ 4] [4912] +16:47:55 [ 15] [ 4] [0320] +16:47:55 [ 18] [ 4] [6011] +16:47:55 [ 22] [ 3] [900] +16:47:55 [ 25] [ 2] [02] +16:47:55 [ 28] [ 9] [D00002000] +16:47:55 [ 32] [ 6] [220699] +16:47:55 [ 35] [ 32] [6213544001613212=491212011321233] +16:47:55 [ 37] [ 12] [507900360213] +16:47:55 [ 41] [ 8] [05000300] +16:47:55 [ 42] [ 15] [APTRA ] +16:47:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:47:55 [ 49] [ 3] [418] +16:47:55 [ 52] [ 16] [B1A49E7A2CF231FD] +16:47:55 ============================================================================ +16:47:55 + + +waiting on router queue for slot.... +16:47:55 Sending to : <0> +16:47:55 ============================================================================ +16:47:56 ============================================================================ +16:47:56 Slot Id : <274> +16:47:56 Transaction Type : RESPONSE +16:47:56 Received From : +16:47:56 ============================================================================ +16:47:56 FNo. Len. Field Value +16:47:56 ============================================================================ +16:47:56 [ 1] [ 4] [0210] +16:47:56 [ 2] [ 16] [6213544001613212] +16:47:56 [ 3] [ 6] [010000] +16:47:56 [ 4] [ 12] [000047000000] +16:47:56 [ 7] [ 10] [0320165542] +16:47:56 [ 11] [ 6] [240455] +16:47:56 [ 12] [ 6] [165542] +16:47:56 [ 13] [ 4] [0320] +16:47:56 [ 15] [ 4] [0320] +16:47:56 [ 18] [ 4] [6011] +16:47:56 [ 32] [ 6] [220699] +16:47:56 [ 35] [ 32] [6213544001613212=491212011321233] +16:47:56 [ 37] [ 12] [507900360213] +16:47:56 [ 38] [ 6] [768272] +16:47:56 [ 39] [ 2] [00] +16:47:56 [ 41] [ 8] [05000300] +16:47:56 [ 49] [ 3] [418] +16:47:56 [ 54] [ 40] [0001418C0000158016840002418C000015801684] +16:47:56 ============================================================================ +16:47:56 Sending to : +16:47:56 ============================================================================ +16:47:56 + + +waiting on router queue for slot.... +16:47:57 ============================================================================ +16:47:57 Slot Id : <265> +16:47:57 Transaction Type : REQUEST +16:47:57 Received From : +16:47:57 ============================================================================ +16:47:57 FNo. Len. Field Value +16:47:57 ============================================================================ +16:47:57 [ 1] [ 4] [0800] +16:47:57 [ 7] [ 10] [0320094703] +16:47:57 [ 11] [ 6] [157307] +16:47:57 [ 70] [ 3] [301] +16:47:57 ============================================================================ +16:47:57 + + +waiting on router queue for slot.... +16:47:57 Sending to : +16:47:57 ============================================================================ +16:47:57 ============================================================================ +16:47:57 Slot Id : <265> +16:47:57 Transaction Type : RESPONSE +16:47:57 Received From : +16:47:57 ============================================================================ +16:47:57 FNo. Len. Field Value +16:47:57 ============================================================================ +16:47:57 [ 1] [ 4] [0810] +16:47:57 [ 7] [ 10] [0320094703] +16:47:57 [ 11] [ 6] [157307] +16:47:57 [ 39] [ 2] [00] +16:47:57 [ 70] [ 3] [301] +16:47:57 ============================================================================ +16:47:57 Calculate Source COMM Id = 2 +16:47:57 ============================================================================ +16:47:57 + + +waiting on router queue for slot.... +16:47:57 ============================================================================ +16:47:57 Slot Id : <274> +16:47:57 Transaction Type : RESPONSE +16:47:57 Received From : +16:47:57 ============================================================================ +16:47:57 FNo. Len. Field Value +16:47:57 ============================================================================ +16:47:57 [ 1] [ 4] [0210] +16:47:57 [ 2] [ 16] [6213544001613212] +16:47:57 [ 3] [ 6] [010000] +16:47:57 [ 4] [ 12] [000047000000] +16:47:57 [ 7] [ 10] [0320165542] +16:47:57 [ 11] [ 6] [240455] +16:47:57 [ 12] [ 6] [165542] +16:47:57 [ 13] [ 4] [0320] +16:47:57 [ 15] [ 4] [0320] +16:47:57 [ 18] [ 4] [6011] +16:47:57 [ 32] [ 6] [220699] +16:47:57 [ 35] [ 32] [6213544001613212=491212011321233] +16:47:57 [ 37] [ 12] [507900360213] +16:47:57 [ 38] [ 6] [768272] +16:47:57 [ 39] [ 2] [00] +16:47:57 [ 41] [ 8] [05000300] +16:47:57 [ 49] [ 3] [418] +16:47:57 [ 54] [ 40] [0001418C0000158016840002418C000015801684] +16:47:57 ============================================================================ +16:47:57 Calculate Source COMM Id = 1 +16:47:57 ============================================================================ +16:47:57 + + +waiting on router queue for slot.... +16:48:01 ============================================================================ +16:48:01 Slot Id : <247> +16:48:01 Transaction Type : REQUEST +16:48:01 Received From : +16:48:01 ============================================================================ +16:48:01 FNo. Len. Field Value +16:48:01 ============================================================================ +16:48:01 [ 1] [ 4] [0800] +16:48:01 [ 7] [ 10] [0320094756] +16:48:01 [ 11] [ 6] [071760] +16:48:01 [ 37] [ 12] [507916071760] +16:48:01 [ 70] [ 3] [001] +16:48:01 ============================================================================ +16:48:01 + + +waiting on router queue for slot.... +16:48:01 Sending to : +16:48:01 ============================================================================ +16:48:01 ============================================================================ +16:48:01 Slot Id : <247> +16:48:01 Transaction Type : RESPONSE +16:48:01 Received From : +16:48:01 ============================================================================ +16:48:01 FNo. Len. Field Value +16:48:01 ============================================================================ +16:48:01 [ 1] [ 4] [0810] +16:48:01 [ 7] [ 10] [0320094756] +16:48:01 [ 11] [ 6] [071760] +16:48:01 [ 37] [ 12] [507916071760] +16:48:01 [ 39] [ 2] [00] +16:48:01 [ 70] [ 3] [001] +16:48:01 ============================================================================ +16:48:01 Calculate Source COMM Id = 0 +16:48:01 ============================================================================ +16:48:01 + + +waiting on router queue for slot.... +16:48:05 ============================================================================ +16:48:05 Slot Id : <264> +16:48:05 Transaction Type : REQUEST +16:48:05 Received From : +16:48:05 ============================================================================ +16:48:05 FNo. Len. Field Value +16:48:05 ============================================================================ +16:48:05 [ 1] [ 4] [0200] +16:48:05 [ 2] [ 16] [2206990000112292] +16:48:05 [ 3] [ 6] [011000] +16:48:05 [ 4] [ 12] [000100000000] +16:48:05 [ 7] [ 10] [0320164800] +16:48:05 [ 11] [ 6] [804860] +16:48:05 [ 12] [ 6] [164800] +16:48:05 [ 13] [ 4] [0320] +16:48:05 [ 15] [ 4] [0320] +16:48:05 [ 18] [ 4] [6011] +16:48:05 [ 22] [ 3] [900] +16:48:05 [ 25] [ 2] [02] +16:48:05 [ 28] [ 9] [D00002000] +16:48:05 [ 32] [ 6] [621354] +16:48:05 [ 35] [ 32] [2206990000112292=980112612353019] +16:48:05 [ 37] [ 12] [507903310695] +16:48:05 [ 41] [ 8] [13001100] +16:48:05 [ 42] [ 15] [NATIVE ] +16:48:05 [ 43] [ 40] [Xiegkhouang ATM02 Paek LAO] +16:48:05 [ 49] [ 3] [418] +16:48:05 [ 52] [ 16] [EC324EB570713859] +16:48:05 ============================================================================ +16:48:05 + + +waiting on router queue for slot.... +16:48:05 Sending to : +16:48:05 ============================================================================ +16:48:05 Sending to : +16:48:05 ============================================================================ +16:48:05 ============================================================================ +16:48:05 Slot Id : <264> +16:48:05 Transaction Type : REQUEST +16:48:05 Received From : +16:48:05 ============================================================================ +16:48:05 FNo. Len. Field Value +16:48:05 ============================================================================ +16:48:05 [ 1] [ 4] [0200] +16:48:05 [ 2] [ 16] [2206990000112292] +16:48:05 [ 3] [ 6] [011000] +16:48:05 [ 4] [ 12] [000100000000] +16:48:05 [ 7] [ 10] [0320164800] +16:48:05 [ 11] [ 6] [804860] +16:48:05 [ 12] [ 6] [164800] +16:48:05 [ 13] [ 4] [0320] +16:48:05 [ 15] [ 4] [0320] +16:48:05 [ 18] [ 4] [6011] +16:48:05 [ 22] [ 3] [900] +16:48:05 [ 25] [ 2] [02] +16:48:05 [ 28] [ 9] [D00002000] +16:48:05 [ 32] [ 6] [621354] +16:48:05 [ 35] [ 32] [2206990000112292=980112612353019] +16:48:05 [ 37] [ 12] [507903310695] +16:48:05 [ 41] [ 8] [13001100] +16:48:05 [ 42] [ 15] [NATIVE ] +16:48:05 [ 43] [ 40] [Xiegkhouang ATM02 Paek LAO] +16:48:05 [ 49] [ 3] [418] +16:48:05 [ 52] [ 16] [EC324EB570713859] +16:48:05 ============================================================================ +16:48:05 + + +waiting on router queue for slot.... +16:48:05 Sending to : +16:48:05 ============================================================================ +16:48:05 ============================================================================ +16:48:05 Slot Id : <264> +16:48:05 Transaction Type : REQUEST +16:48:05 Received From : +16:48:05 ============================================================================ +16:48:05 FNo. Len. Field Value +16:48:05 ============================================================================ +16:48:05 [ 1] [ 4] [0200] +16:48:05 [ 2] [ 16] [2206990000112292] +16:48:05 [ 3] [ 6] [011000] +16:48:05 [ 4] [ 12] [000100000000] +16:48:05 [ 7] [ 10] [0320164800] +16:48:05 [ 11] [ 6] [804860] +16:48:05 [ 12] [ 6] [164800] +16:48:05 [ 13] [ 4] [0320] +16:48:05 [ 15] [ 4] [0320] +16:48:05 [ 18] [ 4] [6011] +16:48:05 [ 22] [ 3] [900] +16:48:05 [ 25] [ 2] [02] +16:48:05 [ 28] [ 9] [D00002000] +16:48:05 [ 32] [ 6] [621354] +16:48:05 [ 35] [ 32] [2206990000112292=980112612353019] +16:48:05 [ 37] [ 12] [507903310695] +16:48:05 [ 41] [ 8] [13001100] +16:48:05 [ 42] [ 15] [NATIVE ] +16:48:05 [ 43] [ 40] [Xiegkhouang ATM02 Paek LAO] +16:48:05 [ 49] [ 3] [418] +16:48:05 [ 52] [ 16] [E283EB4503D0B306] +16:48:05 ============================================================================ +16:48:05 + + +waiting on router queue for slot.... +16:48:05 Sending to : <1> +16:48:05 ============================================================================ +16:48:07 ============================================================================ +16:48:07 Slot Id : <264> +16:48:07 Transaction Type : RESPONSE +16:48:07 Received From : +16:48:07 ============================================================================ +16:48:07 FNo. Len. Field Value +16:48:07 ============================================================================ +16:48:07 [ 1] [ 4] [0210] +16:48:07 [ 2] [ 16] [2206990000112292] +16:48:07 [ 3] [ 6] [011000] +16:48:07 [ 4] [ 12] [000100000000] +16:48:07 [ 7] [ 10] [0320164800] +16:48:07 [ 11] [ 6] [804860] +16:48:07 [ 12] [ 6] [164800] +16:48:07 [ 13] [ 4] [0320] +16:48:07 [ 15] [ 4] [0320] +16:48:07 [ 18] [ 4] [6011] +16:48:07 [ 32] [ 6] [621354] +16:48:07 [ 35] [ 32] [2206990000112292=980112612353019] +16:48:07 [ 37] [ 12] [507903310695] +16:48:07 [ 38] [ 6] [597907] +16:48:07 [ 39] [ 2] [00] +16:48:07 [ 41] [ 8] [13001100] +16:48:07 [ 49] [ 3] [418] +16:48:07 [ 54] [ 40] [1001418C0000982476001002418C000098247600] +16:48:07 ============================================================================ +16:48:07 Sending to : +16:48:07 ============================================================================ +16:48:07 + + +waiting on router queue for slot.... +16:48:07 ============================================================================ +16:48:07 Slot Id : <279> +16:48:07 Transaction Type : REQUEST +16:48:07 Received From : +16:48:07 ============================================================================ +16:48:07 FNo. Len. Field Value +16:48:07 ============================================================================ +16:48:07 [ 1] [ 4] [0200] +16:48:07 [ 2] [ 16] [6688990050035599] +16:48:07 [ 3] [ 6] [011000] +16:48:07 [ 4] [ 12] [000008000000] +16:48:07 [ 7] [ 10] [0320165555] +16:48:07 [ 11] [ 6] [240878] +16:48:07 [ 12] [ 6] [165555] +16:48:07 [ 13] [ 4] [0320] +16:48:07 [ 14] [ 4] [9803] +16:48:07 [ 15] [ 4] [0320] +16:48:07 [ 18] [ 4] [6011] +16:48:07 [ 22] [ 3] [900] +16:48:07 [ 25] [ 2] [02] +16:48:07 [ 28] [ 9] [D00002000] +16:48:07 [ 32] [ 6] [220699] +16:48:07 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:48:07 [ 37] [ 12] [507900410462] +16:48:07 [ 41] [ 8] [08000300] +16:48:07 [ 42] [ 15] [APTRA ] +16:48:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:48:07 [ 49] [ 3] [418] +16:48:07 [ 52] [ 16] [BE9E2D016205384A] +16:48:07 ============================================================================ +16:48:07 + + +waiting on router queue for slot.... +16:48:07 Sending to : +16:48:07 ============================================================================ +16:48:07 Sending to : +16:48:07 ============================================================================ +16:48:08 ============================================================================ +16:48:08 Slot Id : <279> +16:48:08 Transaction Type : REQUEST +16:48:08 Received From : +16:48:08 ============================================================================ +16:48:08 FNo. Len. Field Value +16:48:08 ============================================================================ +16:48:08 [ 1] [ 4] [0200] +16:48:08 [ 2] [ 16] [6688990050035599] +16:48:08 [ 3] [ 6] [011000] +16:48:08 [ 4] [ 12] [000008000000] +16:48:08 [ 7] [ 10] [0320165555] +16:48:08 [ 11] [ 6] [240878] +16:48:08 [ 12] [ 6] [165555] +16:48:08 [ 13] [ 4] [0320] +16:48:08 [ 14] [ 4] [9803] +16:48:08 [ 15] [ 4] [0320] +16:48:08 [ 18] [ 4] [6011] +16:48:08 [ 22] [ 3] [900] +16:48:08 [ 25] [ 2] [02] +16:48:08 [ 28] [ 9] [D00002000] +16:48:08 [ 32] [ 6] [220699] +16:48:08 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:48:08 [ 37] [ 12] [507900410462] +16:48:08 [ 41] [ 8] [08000300] +16:48:08 [ 42] [ 15] [APTRA ] +16:48:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:48:08 [ 49] [ 3] [418] +16:48:08 [ 52] [ 16] [BE9E2D016205384A] +16:48:08 ============================================================================ +16:48:08 + + +waiting on router queue for slot.... +16:48:08 Sending to : +16:48:08 ============================================================================ +16:48:08 ============================================================================ +16:48:08 Slot Id : <279> +16:48:08 Transaction Type : REQUEST +16:48:08 Received From : +16:48:08 ============================================================================ +16:48:08 FNo. Len. Field Value +16:48:08 ============================================================================ +16:48:08 [ 1] [ 4] [0200] +16:48:08 [ 2] [ 16] [6688990050035599] +16:48:08 [ 3] [ 6] [011000] +16:48:08 [ 4] [ 12] [000008000000] +16:48:08 [ 7] [ 10] [0320165555] +16:48:08 [ 11] [ 6] [240878] +16:48:08 [ 12] [ 6] [165555] +16:48:08 [ 13] [ 4] [0320] +16:48:08 [ 14] [ 4] [9803] +16:48:08 [ 15] [ 4] [0320] +16:48:08 [ 18] [ 4] [6011] +16:48:08 [ 22] [ 3] [900] +16:48:08 [ 25] [ 2] [02] +16:48:08 [ 28] [ 9] [D00002000] +16:48:08 [ 32] [ 6] [220699] +16:48:08 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:48:08 [ 37] [ 12] [507900410462] +16:48:08 [ 41] [ 8] [08000300] +16:48:08 [ 42] [ 15] [APTRA ] +16:48:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:48:08 [ 49] [ 3] [418] +16:48:08 [ 52] [ 16] [FD679D240874A658] +16:48:08 ============================================================================ +16:48:08 + + +waiting on router queue for slot.... +16:48:08 Sending to : <0> +16:48:08 ============================================================================ +16:48:08 ============================================================================ +16:48:08 Slot Id : <279> +16:48:08 Transaction Type : RESPONSE +16:48:08 Received From : +16:48:08 ============================================================================ +16:48:08 FNo. Len. Field Value +16:48:08 ============================================================================ +16:48:08 [ 1] [ 4] [0210] +16:48:08 [ 2] [ 16] [6688990050035599] +16:48:08 [ 3] [ 6] [011000] +16:48:08 [ 4] [ 12] [000008000000] +16:48:08 [ 7] [ 10] [0320165555] +16:48:08 [ 11] [ 6] [240878] +16:48:08 [ 12] [ 6] [165555] +16:48:08 [ 13] [ 4] [0320] +16:48:08 [ 15] [ 4] [0320] +16:48:08 [ 18] [ 4] [6011] +16:48:08 [ 22] [ 3] [900] +16:48:08 [ 32] [ 6] [220699] +16:48:08 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:48:08 [ 37] [ 12] [507900410462] +16:48:08 [ 39] [ 2] [14] +16:48:08 [ 41] [ 8] [08000300] +16:48:08 [ 49] [ 3] [418] +16:48:08 ============================================================================ +16:48:08 Sending to : +16:48:08 ============================================================================ +16:48:08 + + +waiting on router queue for slot.... +16:48:09 ============================================================================ +16:48:09 Slot Id : <264> +16:48:09 Transaction Type : RESPONSE +16:48:09 Received From : +16:48:09 ============================================================================ +16:48:09 FNo. Len. Field Value +16:48:09 ============================================================================ +16:48:09 [ 1] [ 4] [0210] +16:48:09 [ 2] [ 16] [2206990000112292] +16:48:09 [ 3] [ 6] [011000] +16:48:09 [ 4] [ 12] [000100000000] +16:48:09 [ 7] [ 10] [0320164800] +16:48:09 [ 11] [ 6] [804860] +16:48:09 [ 12] [ 6] [164800] +16:48:09 [ 13] [ 4] [0320] +16:48:09 [ 15] [ 4] [0320] +16:48:09 [ 18] [ 4] [6011] +16:48:09 [ 32] [ 6] [621354] +16:48:09 [ 35] [ 32] [2206990000112292=980112612353019] +16:48:09 [ 37] [ 12] [507903310695] +16:48:09 [ 38] [ 6] [597907] +16:48:09 [ 39] [ 2] [00] +16:48:09 [ 41] [ 8] [13001100] +16:48:09 [ 49] [ 3] [418] +16:48:09 [ 54] [ 40] [1001418C0000982476001002418C000098247600] +16:48:09 ============================================================================ +16:48:09 Calculate Source COMM Id = 0 +16:48:09 ============================================================================ +16:48:09 + + +waiting on router queue for slot.... +16:48:09 ============================================================================ +16:48:09 Slot Id : <273> +16:48:09 Transaction Type : REQUEST +16:48:09 Received From : +16:48:09 ============================================================================ +16:48:09 FNo. Len. Field Value +16:48:09 ============================================================================ +16:48:09 [ 1] [ 4] [0200] +16:48:09 [ 2] [ 16] [6213544002012091] +16:48:09 [ 3] [ 6] [010000] +16:48:09 [ 4] [ 12] [000050000000] +16:48:09 [ 7] [ 10] [0320164559] +16:48:09 [ 11] [ 6] [952338] +16:48:09 [ 12] [ 6] [164559] +16:48:09 [ 13] [ 4] [0320] +16:48:09 [ 15] [ 4] [0320] +16:48:09 [ 18] [ 4] [6011] +16:48:09 [ 19] [ 3] [418] +16:48:09 [ 22] [ 3] [021] +16:48:09 [ 25] [ 2] [01] +16:48:09 [ 28] [ 9] [D00002000] +16:48:09 [ 32] [ 6] [668899] +16:48:09 [ 35] [ 32] [6213544002012091=491212011209445] +16:48:09 [ 37] [ 12] [507902025625] +16:48:09 [ 41] [ 8] [03414002] +16:48:09 [ 42] [ 15] [APT ] +16:48:09 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:48:09 [ 49] [ 3] [418] +16:48:09 [ 52] [ 16] [872550C166D7613A] +16:48:09 ============================================================================ +16:48:09 + + +waiting on router queue for slot.... +16:48:09 Sending to : +16:48:09 ============================================================================ +16:48:09 Sending to : +16:48:09 ============================================================================ +16:48:09 ============================================================================ +16:48:09 Slot Id : <220> +16:48:09 Transaction Type : REQUEST +16:48:09 Received From : +16:48:09 ============================================================================ +16:48:09 FNo. Len. Field Value +16:48:09 ============================================================================ +16:48:09 [ 1] [ 4] [0800] +16:48:09 [ 2] [ 5] [02531] +16:48:09 [ 3] [ 6] [579168] +16:48:09 [ 7] [ 10] [0320094809] +16:48:09 [ 11] [ 6] [807387] +16:48:09 [ 15] [ 10] [0320094809] +16:48:09 [ 37] [ 11] [57916807387] +16:48:09 [ 70] [ 3] [001] +16:48:09 ============================================================================ +16:48:09 + + +waiting on router queue for slot.... +16:48:09 ============================================================================ +16:48:09 Slot Id : <220> +16:48:09 Transaction Type : RESPONSE +16:48:09 Received From : +16:48:09 ============================================================================ +16:48:09 FNo. Len. Field Value +16:48:09 ============================================================================ +16:48:09 [ 1] [ 4] [0810] +16:48:09 [ 7] [ 10] [0320094809] +16:48:09 [ 11] [ 6] [807387] +16:48:09 [ 15] [ 4] [0320] +16:48:09 [ 37] [ 12] [57916807387] +16:48:09 [ 39] [ 2] [00] +16:48:09 [ 70] [ 3] [001] +16:48:09 ============================================================================ +16:48:09 Sending to : +16:48:09 ============================================================================ +16:48:09 + + +waiting on router queue for slot.... +16:48:09 ============================================================================ +16:48:09 Slot Id : <273> +16:48:09 Transaction Type : REQUEST +16:48:09 Received From : +16:48:09 ============================================================================ +16:48:09 FNo. Len. Field Value +16:48:09 ============================================================================ +16:48:09 [ 1] [ 4] [0200] +16:48:09 [ 2] [ 16] [6213544002012091] +16:48:09 [ 3] [ 6] [010000] +16:48:09 [ 4] [ 12] [000050000000] +16:48:09 [ 7] [ 10] [0320164559] +16:48:09 [ 11] [ 6] [952338] +16:48:09 [ 12] [ 6] [164559] +16:48:09 [ 13] [ 4] [0320] +16:48:09 [ 15] [ 4] [0320] +16:48:09 [ 18] [ 4] [6011] +16:48:09 [ 19] [ 3] [418] +16:48:09 [ 22] [ 3] [021] +16:48:09 [ 25] [ 2] [01] +16:48:09 [ 28] [ 9] [D00002000] +16:48:09 [ 32] [ 6] [668899] +16:48:09 [ 35] [ 32] [6213544002012091=491212011209445] +16:48:09 [ 37] [ 12] [507902025625] +16:48:09 [ 41] [ 8] [03414002] +16:48:09 [ 42] [ 15] [APT ] +16:48:09 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:48:09 [ 49] [ 3] [418] +16:48:09 [ 52] [ 16] [872550C166D7613A] +16:48:09 ============================================================================ +16:48:09 + + +waiting on router queue for slot.... +16:48:09 Sending to : +16:48:09 ============================================================================ +16:48:09 ============================================================================ +16:48:09 Slot Id : <273> +16:48:09 Transaction Type : REQUEST +16:48:09 Received From : +16:48:09 ============================================================================ +16:48:09 FNo. Len. Field Value +16:48:09 ============================================================================ +16:48:09 [ 1] [ 4] [0200] +16:48:09 [ 2] [ 16] [6213544002012091] +16:48:09 [ 3] [ 6] [010000] +16:48:09 [ 4] [ 12] [000050000000] +16:48:09 [ 7] [ 10] [0320164559] +16:48:09 [ 11] [ 6] [952338] +16:48:09 [ 12] [ 6] [164559] +16:48:09 [ 13] [ 4] [0320] +16:48:09 [ 15] [ 4] [0320] +16:48:09 [ 18] [ 4] [6011] +16:48:09 [ 19] [ 3] [418] +16:48:09 [ 22] [ 3] [021] +16:48:09 [ 25] [ 2] [01] +16:48:09 [ 28] [ 9] [D00002000] +16:48:09 [ 32] [ 6] [668899] +16:48:09 [ 35] [ 32] [6213544002012091=491212011209445] +16:48:09 [ 37] [ 12] [507902025625] +16:48:09 [ 41] [ 8] [03414002] +16:48:09 [ 42] [ 15] [APT ] +16:48:09 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:48:09 [ 49] [ 3] [418] +16:48:09 [ 52] [ 16] [D8568FC7B557E1C7] +16:48:09 ============================================================================ +16:48:09 + + +waiting on router queue for slot.... +16:48:09 Sending to : <0> +16:48:09 ============================================================================ +16:48:10 ============================================================================ +16:48:10 Slot Id : <279> +16:48:10 Transaction Type : RESPONSE +16:48:10 Received From : +16:48:10 ============================================================================ +16:48:10 FNo. Len. Field Value +16:48:10 ============================================================================ +16:48:10 [ 1] [ 4] [0210] +16:48:10 [ 2] [ 16] [6688990050035599] +16:48:10 [ 3] [ 6] [011000] +16:48:10 [ 4] [ 12] [000008000000] +16:48:10 [ 7] [ 10] [0320165555] +16:48:10 [ 11] [ 6] [240878] +16:48:10 [ 12] [ 6] [165555] +16:48:10 [ 13] [ 4] [0320] +16:48:10 [ 15] [ 4] [0320] +16:48:10 [ 18] [ 4] [6011] +16:48:10 [ 22] [ 3] [900] +16:48:10 [ 32] [ 6] [220699] +16:48:10 [ 35] [ 37] [6688990050035599=98031261214505400000] +16:48:10 [ 37] [ 12] [507900410462] +16:48:10 [ 39] [ 2] [14] +16:48:10 [ 41] [ 8] [08000300] +16:48:10 [ 49] [ 3] [418] +16:48:10 ============================================================================ +16:48:10 Calculate Source COMM Id = 1 +16:48:10 ============================================================================ +16:48:10 + + +waiting on router queue for slot.... +16:48:10 ============================================================================ +16:48:10 Slot Id : <273> +16:48:10 Transaction Type : RESPONSE +16:48:10 Received From : +16:48:10 ============================================================================ +16:48:10 FNo. Len. Field Value +16:48:10 ============================================================================ +16:48:10 [ 1] [ 4] [0210] +16:48:10 [ 2] [ 16] [6213544002012091] +16:48:10 [ 3] [ 6] [010000] +16:48:10 [ 4] [ 12] [000050000000] +16:48:10 [ 7] [ 10] [0320164559] +16:48:10 [ 11] [ 6] [952338] +16:48:10 [ 12] [ 6] [164559] +16:48:10 [ 13] [ 4] [0320] +16:48:10 [ 15] [ 4] [0320] +16:48:10 [ 18] [ 4] [6011] +16:48:10 [ 19] [ 3] [418] +16:48:10 [ 32] [ 6] [668899] +16:48:10 [ 35] [ 32] [6213544002012091=491212011209445] +16:48:10 [ 37] [ 12] [507902025625] +16:48:10 [ 38] [ 6] [572645] +16:48:10 [ 39] [ 2] [00] +16:48:10 [ 41] [ 8] [03414002] +16:48:10 [ 49] [ 3] [418] +16:48:10 [ 54] [ 40] [0001418C0000153862030002418C000015386203] +16:48:10 ============================================================================ +16:48:10 Sending to : +16:48:10 ============================================================================ +16:48:10 + + +waiting on router queue for slot.... +16:48:11 ============================================================================ +16:48:11 Slot Id : <273> +16:48:11 Transaction Type : RESPONSE +16:48:11 Received From : +16:48:11 ============================================================================ +16:48:11 FNo. Len. Field Value +16:48:11 ============================================================================ +16:48:11 [ 1] [ 4] [0210] +16:48:11 [ 2] [ 16] [6213544002012091] +16:48:11 [ 3] [ 6] [010000] +16:48:11 [ 4] [ 12] [000050000000] +16:48:11 [ 7] [ 10] [0320164559] +16:48:11 [ 11] [ 6] [952338] +16:48:11 [ 12] [ 6] [164559] +16:48:11 [ 13] [ 4] [0320] +16:48:11 [ 15] [ 4] [0320] +16:48:11 [ 18] [ 4] [6011] +16:48:11 [ 19] [ 3] [418] +16:48:11 [ 32] [ 6] [668899] +16:48:11 [ 35] [ 32] [6213544002012091=491212011209445] +16:48:11 [ 37] [ 12] [507902025625] +16:48:11 [ 38] [ 6] [572645] +16:48:11 [ 39] [ 2] [00] +16:48:11 [ 41] [ 8] [03414002] +16:48:11 [ 49] [ 3] [418] +16:48:11 [ 54] [ 40] [0001418C0000153862030002418C000015386203] +16:48:11 ============================================================================ +16:48:11 Calculate Source COMM Id = 4 +16:48:11 ============================================================================ +16:48:11 + + +waiting on router queue for slot.... +16:48:12 ============================================================================ +16:48:12 Slot Id : <231> +16:48:12 Transaction Type : REQUEST +16:48:12 Received From : +16:48:12 ============================================================================ +16:48:12 FNo. Len. Field Value +16:48:12 ============================================================================ +16:48:12 [ 1] [ 4] [0800] +16:48:12 [ 7] [ 10] [0320094719] +16:48:12 [ 11] [ 6] [157308] +16:48:12 [ 70] [ 3] [301] +16:48:12 ============================================================================ +16:48:12 + + +waiting on router queue for slot.... +16:48:12 Sending to : +16:48:12 ============================================================================ +16:48:12 ============================================================================ +16:48:12 Slot Id : <231> +16:48:12 Transaction Type : RESPONSE +16:48:12 Received From : +16:48:12 ============================================================================ +16:48:12 FNo. Len. Field Value +16:48:12 ============================================================================ +16:48:12 [ 1] [ 4] [0810] +16:48:12 [ 7] [ 10] [0320094719] +16:48:12 [ 11] [ 6] [157308] +16:48:12 [ 39] [ 2] [00] +16:48:12 [ 70] [ 3] [301] +16:48:12 ============================================================================ +16:48:12 Calculate Source COMM Id = 2 +16:48:12 ============================================================================ +16:48:12 + + +waiting on router queue for slot.... +16:48:12 ============================================================================ +16:48:12 Slot Id : <239> +16:48:12 Transaction Type : REQUEST +16:48:12 Received From : +16:48:12 ============================================================================ +16:48:12 FNo. Len. Field Value +16:48:12 ============================================================================ +16:48:12 [ 1] [ 4] [0200] +16:48:12 [ 2] [ 16] [6688990103836704] +16:48:12 [ 3] [ 6] [012000] +16:48:12 [ 4] [ 12] [000010000000] +16:48:12 [ 7] [ 10] [0320164807] +16:48:12 [ 11] [ 6] [804894] +16:48:12 [ 12] [ 6] [164807] +16:48:12 [ 13] [ 4] [0320] +16:48:12 [ 15] [ 4] [0320] +16:48:12 [ 18] [ 4] [6011] +16:48:12 [ 22] [ 3] [900] +16:48:12 [ 25] [ 2] [02] +16:48:12 [ 28] [ 9] [D00002000] +16:48:12 [ 32] [ 6] [621354] +16:48:12 [ 35] [ 37] [6688990103836704=43021231670418400000] +16:48:12 [ 37] [ 12] [507904524232] +16:48:12 [ 41] [ 8] [02001500] +16:48:12 [ 42] [ 15] [NATIVE ] +16:48:12 [ 43] [ 40] [Nabo School Thakek LAO] +16:48:12 [ 49] [ 3] [418] +16:48:12 [ 52] [ 16] [A35404EADCAB14DA] +16:48:12 ============================================================================ +16:48:12 + + +waiting on router queue for slot.... +16:48:12 Sending to : +16:48:12 ============================================================================ +16:48:12 Sending to : +16:48:12 ============================================================================ +16:48:13 ============================================================================ +16:48:13 Slot Id : <239> +16:48:13 Transaction Type : REQUEST +16:48:13 Received From : +16:48:13 ============================================================================ +16:48:13 FNo. Len. Field Value +16:48:13 ============================================================================ +16:48:13 [ 1] [ 4] [0200] +16:48:13 [ 2] [ 16] [6688990103836704] +16:48:13 [ 3] [ 6] [012000] +16:48:13 [ 4] [ 12] [000010000000] +16:48:13 [ 7] [ 10] [0320164807] +16:48:13 [ 11] [ 6] [804894] +16:48:13 [ 12] [ 6] [164807] +16:48:13 [ 13] [ 4] [0320] +16:48:13 [ 15] [ 4] [0320] +16:48:13 [ 18] [ 4] [6011] +16:48:13 [ 22] [ 3] [900] +16:48:13 [ 25] [ 2] [02] +16:48:13 [ 28] [ 9] [D00002000] +16:48:13 [ 32] [ 6] [621354] +16:48:13 [ 35] [ 37] [6688990103836704=43021231670418400000] +16:48:13 [ 37] [ 12] [507904524232] +16:48:13 [ 41] [ 8] [02001500] +16:48:13 [ 42] [ 15] [NATIVE ] +16:48:13 [ 43] [ 40] [Nabo School Thakek LAO] +16:48:13 [ 49] [ 3] [418] +16:48:13 [ 52] [ 16] [A35404EADCAB14DA] +16:48:13 ============================================================================ +16:48:13 + + +waiting on router queue for slot.... +16:48:13 Sending to : +16:48:13 ============================================================================ +16:48:13 ============================================================================ +16:48:13 Slot Id : <239> +16:48:13 Transaction Type : REQUEST +16:48:13 Received From : +16:48:13 ============================================================================ +16:48:13 FNo. Len. Field Value +16:48:13 ============================================================================ +16:48:13 [ 1] [ 4] [0200] +16:48:13 [ 2] [ 16] [6688990103836704] +16:48:13 [ 3] [ 6] [012000] +16:48:13 [ 4] [ 12] [000010000000] +16:48:13 [ 7] [ 10] [0320164807] +16:48:13 [ 11] [ 6] [804894] +16:48:13 [ 12] [ 6] [164807] +16:48:13 [ 13] [ 4] [0320] +16:48:13 [ 15] [ 4] [0320] +16:48:13 [ 18] [ 4] [6011] +16:48:13 [ 22] [ 3] [900] +16:48:13 [ 25] [ 2] [02] +16:48:13 [ 28] [ 9] [D00002000] +16:48:13 [ 32] [ 6] [621354] +16:48:13 [ 35] [ 37] [6688990103836704=43021231670418400000] +16:48:13 [ 37] [ 12] [507904524232] +16:48:13 [ 41] [ 8] [02001500] +16:48:13 [ 42] [ 15] [NATIVE ] +16:48:13 [ 43] [ 40] [Nabo School Thakek LAO] +16:48:13 [ 49] [ 3] [418] +16:48:13 [ 52] [ 16] [DAD4564375FAD29A] +16:48:13 ============================================================================ +16:48:13 + + +waiting on router queue for slot.... +16:48:13 Sending to : <4> +16:48:13 ============================================================================ +16:48:15 ============================================================================ +16:48:15 Slot Id : <239> +16:48:15 Transaction Type : RESPONSE +16:48:15 Received From : +16:48:15 ============================================================================ +16:48:15 FNo. Len. Field Value +16:48:15 ============================================================================ +16:48:15 [ 1] [ 4] [0210] +16:48:15 [ 2] [ 16] [6688990103836704] +16:48:15 [ 3] [ 6] [012000] +16:48:15 [ 4] [ 12] [000010000000] +16:48:15 [ 11] [ 6] [804894] +16:48:15 [ 12] [ 6] [164807] +16:48:15 [ 15] [ 4] [0320] +16:48:15 [ 18] [ 4] [6011] +16:48:15 [ 32] [ 6] [621354] +16:48:15 [ 35] [ 37] [6688990103836704=43021231670418400000] +16:48:15 [ 37] [ 12] [507904524232] +16:48:15 [ 38] [ 6] [030107] +16:48:15 [ 39] [ 2] [00] +16:48:15 [ 41] [ 8] [02001500] +16:48:15 [ 49] [ 3] [418] +16:48:15 [ 54] [ 20] [2002418C000195952595] +16:48:15 ============================================================================ +16:48:15 Sending to : +16:48:15 ============================================================================ +16:48:15 + + +waiting on router queue for slot.... +16:48:16 ============================================================================ +16:48:16 Slot Id : <239> +16:48:16 Transaction Type : RESPONSE +16:48:16 Received From : +16:48:16 ============================================================================ +16:48:16 FNo. Len. Field Value +16:48:16 ============================================================================ +16:48:16 [ 1] [ 4] [0210] +16:48:16 [ 2] [ 16] [6688990103836704] +16:48:16 [ 3] [ 6] [012000] +16:48:16 [ 4] [ 12] [000010000000] +16:48:16 [ 11] [ 6] [804894] +16:48:16 [ 12] [ 6] [164807] +16:48:16 [ 15] [ 4] [0320] +16:48:16 [ 18] [ 4] [6011] +16:48:16 [ 32] [ 6] [621354] +16:48:16 [ 35] [ 37] [6688990103836704=43021231670418400000] +16:48:16 [ 37] [ 12] [507904524232] +16:48:16 [ 38] [ 6] [030107] +16:48:16 [ 39] [ 2] [00] +16:48:16 [ 41] [ 8] [02001500] +16:48:16 [ 49] [ 3] [418] +16:48:16 [ 54] [ 20] [2002418C000195952595] +16:48:16 ============================================================================ +16:48:16 Calculate Source COMM Id = 0 +16:48:16 ============================================================================ +16:48:16 + + +waiting on router queue for slot.... +16:48:19 ============================================================================ +16:48:19 Slot Id : <252> +16:48:19 Transaction Type : REQUEST +16:48:19 Received From : +16:48:19 ============================================================================ +16:48:19 FNo. Len. Field Value +16:48:19 ============================================================================ +16:48:19 [ 1] [ 4] [0200] +16:48:19 [ 2] [ 16] [6688990105652406] +16:48:19 [ 3] [ 6] [010000] +16:48:19 [ 4] [ 12] [000100000000] +16:48:19 [ 7] [ 10] [0320164814] +16:48:19 [ 11] [ 6] [804919] +16:48:19 [ 12] [ 6] [164814] +16:48:19 [ 13] [ 4] [0320] +16:48:19 [ 15] [ 4] [0320] +16:48:19 [ 18] [ 4] [6011] +16:48:19 [ 22] [ 3] [900] +16:48:19 [ 25] [ 2] [02] +16:48:19 [ 28] [ 9] [D00002000] +16:48:19 [ 32] [ 6] [621354] +16:48:19 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:48:19 [ 37] [ 12] [507904635913] +16:48:19 [ 41] [ 8] [17000800] +16:48:19 [ 42] [ 15] [NATIVE ] +16:48:19 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:48:19 [ 49] [ 3] [418] +16:48:19 [ 52] [ 16] [64C297C18B391997] +16:48:19 ============================================================================ +16:48:19 + + +waiting on router queue for slot.... +16:48:19 Sending to : +16:48:19 ============================================================================ +16:48:19 Sending to : +16:48:19 ============================================================================ +16:48:19 ============================================================================ +16:48:19 Slot Id : <252> +16:48:19 Transaction Type : REQUEST +16:48:19 Received From : +16:48:19 ============================================================================ +16:48:19 FNo. Len. Field Value +16:48:19 ============================================================================ +16:48:19 [ 1] [ 4] [0200] +16:48:19 [ 2] [ 16] [6688990105652406] +16:48:19 [ 3] [ 6] [010000] +16:48:19 [ 4] [ 12] [000100000000] +16:48:19 [ 7] [ 10] [0320164814] +16:48:19 [ 11] [ 6] [804919] +16:48:19 [ 12] [ 6] [164814] +16:48:19 [ 13] [ 4] [0320] +16:48:19 [ 15] [ 4] [0320] +16:48:19 [ 18] [ 4] [6011] +16:48:19 [ 22] [ 3] [900] +16:48:19 [ 25] [ 2] [02] +16:48:19 [ 28] [ 9] [D00002000] +16:48:19 [ 32] [ 6] [621354] +16:48:19 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:48:19 [ 37] [ 12] [507904635913] +16:48:19 [ 41] [ 8] [17000800] +16:48:19 [ 42] [ 15] [NATIVE ] +16:48:19 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:48:19 [ 49] [ 3] [418] +16:48:19 [ 52] [ 16] [64C297C18B391997] +16:48:19 ============================================================================ +16:48:19 + + +waiting on router queue for slot.... +16:48:19 Sending to : +16:48:19 ============================================================================ +16:48:19 ============================================================================ +16:48:19 Slot Id : <252> +16:48:19 Transaction Type : REQUEST +16:48:19 Received From : +16:48:19 ============================================================================ +16:48:19 FNo. Len. Field Value +16:48:19 ============================================================================ +16:48:19 [ 1] [ 4] [0200] +16:48:19 [ 2] [ 16] [6688990105652406] +16:48:19 [ 3] [ 6] [010000] +16:48:19 [ 4] [ 12] [000100000000] +16:48:19 [ 7] [ 10] [0320164814] +16:48:19 [ 11] [ 6] [804919] +16:48:19 [ 12] [ 6] [164814] +16:48:19 [ 13] [ 4] [0320] +16:48:19 [ 15] [ 4] [0320] +16:48:19 [ 18] [ 4] [6011] +16:48:19 [ 22] [ 3] [900] +16:48:19 [ 25] [ 2] [02] +16:48:19 [ 28] [ 9] [D00002000] +16:48:19 [ 32] [ 6] [621354] +16:48:19 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:48:19 [ 37] [ 12] [507904635913] +16:48:19 [ 41] [ 8] [17000800] +16:48:19 [ 42] [ 15] [NATIVE ] +16:48:19 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:48:19 [ 49] [ 3] [418] +16:48:19 [ 52] [ 16] [C62C22191E0D84E6] +16:48:19 ============================================================================ +16:48:19 + + +waiting on router queue for slot.... +16:48:19 Sending to : <4> +16:48:19 ============================================================================ +16:48:20 ============================================================================ +16:48:20 Slot Id : <252> +16:48:20 Transaction Type : RESPONSE +16:48:20 Received From : +16:48:20 ============================================================================ +16:48:20 FNo. Len. Field Value +16:48:20 ============================================================================ +16:48:20 [ 1] [ 4] [0210] +16:48:20 [ 2] [ 16] [6688990105652406] +16:48:20 [ 3] [ 6] [010000] +16:48:20 [ 4] [ 12] [000100000000] +16:48:20 [ 11] [ 6] [804919] +16:48:20 [ 12] [ 6] [164814] +16:48:20 [ 15] [ 4] [0320] +16:48:20 [ 18] [ 4] [6011] +16:48:20 [ 32] [ 6] [621354] +16:48:20 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:48:20 [ 37] [ 12] [507904635913] +16:48:20 [ 38] [ 6] [447041] +16:48:20 [ 39] [ 2] [00] +16:48:20 [ 41] [ 8] [17000800] +16:48:20 [ 49] [ 3] [418] +16:48:20 [ 54] [ 20] [0002418C000219342416] +16:48:20 ============================================================================ +16:48:20 Sending to : +16:48:20 ============================================================================ +16:48:20 + + +waiting on router queue for slot.... +16:48:20 ============================================================================ +16:48:20 Slot Id : <254> +16:48:20 Transaction Type : REQUEST +16:48:20 Received From : +16:48:20 ============================================================================ +16:48:20 FNo. Len. Field Value +16:48:20 ============================================================================ +16:48:20 [ 1] [ 4] [0200] +16:48:20 [ 2] [ 16] [6688990103500508] +16:48:20 [ 3] [ 6] [300000] +16:48:20 [ 4] [ 12] [000000000000] +16:48:20 [ 7] [ 10] [0320164815] +16:48:20 [ 11] [ 6] [804930] +16:48:20 [ 12] [ 6] [164815] +16:48:20 [ 13] [ 4] [0320] +16:48:20 [ 15] [ 4] [0320] +16:48:20 [ 18] [ 4] [6011] +16:48:20 [ 22] [ 3] [900] +16:48:20 [ 25] [ 2] [02] +16:48:20 [ 28] [ 9] [D00000000] +16:48:20 [ 32] [ 6] [621354] +16:48:20 [ 35] [ 37] [6688990103500508=43011231050823100000] +16:48:20 [ 37] [ 12] [507903499624] +16:48:20 [ 41] [ 8] [06002200] +16:48:20 [ 42] [ 15] [NATIVE ] +16:48:20 [ 43] [ 40] [Beng Market Beng LAO] +16:48:20 [ 49] [ 3] [418] +16:48:20 [ 52] [ 16] [CF3B4993A1DE52A3] +16:48:20 ============================================================================ +16:48:20 + + +waiting on router queue for slot.... +16:48:20 Sending to : +16:48:20 ============================================================================ +16:48:20 Sending to : +16:48:20 ============================================================================ +16:48:20 ============================================================================ +16:48:20 Slot Id : <254> +16:48:20 Transaction Type : REQUEST +16:48:20 Received From : +16:48:20 ============================================================================ +16:48:20 FNo. Len. Field Value +16:48:20 ============================================================================ +16:48:20 [ 1] [ 4] [0200] +16:48:20 [ 2] [ 16] [6688990103500508] +16:48:20 [ 3] [ 6] [300000] +16:48:20 [ 4] [ 12] [000000000000] +16:48:20 [ 7] [ 10] [0320164815] +16:48:20 [ 11] [ 6] [804930] +16:48:20 [ 12] [ 6] [164815] +16:48:20 [ 13] [ 4] [0320] +16:48:20 [ 15] [ 4] [0320] +16:48:20 [ 18] [ 4] [6011] +16:48:20 [ 22] [ 3] [900] +16:48:20 [ 25] [ 2] [02] +16:48:20 [ 28] [ 9] [D00000000] +16:48:20 [ 32] [ 6] [621354] +16:48:20 [ 35] [ 37] [6688990103500508=43011231050823100000] +16:48:20 [ 37] [ 12] [507903499624] +16:48:20 [ 41] [ 8] [06002200] +16:48:20 [ 42] [ 15] [NATIVE ] +16:48:20 [ 43] [ 40] [Beng Market Beng LAO] +16:48:20 [ 49] [ 3] [418] +16:48:20 [ 52] [ 16] [CF3B4993A1DE52A3] +16:48:20 ============================================================================ +16:48:20 + + +waiting on router queue for slot.... +16:48:20 Sending to : +16:48:20 ============================================================================ +16:48:20 ============================================================================ +16:48:20 Slot Id : <254> +16:48:20 Transaction Type : REQUEST +16:48:20 Received From : +16:48:20 ============================================================================ +16:48:20 FNo. Len. Field Value +16:48:20 ============================================================================ +16:48:20 [ 1] [ 4] [0200] +16:48:20 [ 2] [ 16] [6688990103500508] +16:48:20 [ 3] [ 6] [300000] +16:48:20 [ 4] [ 12] [000000000000] +16:48:20 [ 7] [ 10] [0320164815] +16:48:20 [ 11] [ 6] [804930] +16:48:20 [ 12] [ 6] [164815] +16:48:20 [ 13] [ 4] [0320] +16:48:20 [ 15] [ 4] [0320] +16:48:20 [ 18] [ 4] [6011] +16:48:20 [ 22] [ 3] [900] +16:48:20 [ 25] [ 2] [02] +16:48:20 [ 28] [ 9] [D00000000] +16:48:20 [ 32] [ 6] [621354] +16:48:20 [ 35] [ 37] [6688990103500508=43011231050823100000] +16:48:20 [ 37] [ 12] [507903499624] +16:48:20 [ 41] [ 8] [06002200] +16:48:20 [ 42] [ 15] [NATIVE ] +16:48:20 [ 43] [ 40] [Beng Market Beng LAO] +16:48:20 [ 49] [ 3] [418] +16:48:20 [ 52] [ 16] [21AB6C58B0EDACC6] +16:48:20 ============================================================================ +16:48:20 + + +waiting on router queue for slot.... +16:48:20 Sending to : <4> +16:48:20 ============================================================================ +16:48:21 ============================================================================ +16:48:21 Slot Id : <254> +16:48:21 Transaction Type : RESPONSE +16:48:21 Received From : +16:48:21 ============================================================================ +16:48:21 FNo. Len. Field Value +16:48:21 ============================================================================ +16:48:21 [ 1] [ 4] [0210] +16:48:21 [ 2] [ 16] [6688990103500508] +16:48:21 [ 3] [ 6] [300000] +16:48:21 [ 4] [ 12] [000000000000] +16:48:21 [ 11] [ 6] [804930] +16:48:21 [ 12] [ 6] [164815] +16:48:21 [ 15] [ 4] [0320] +16:48:21 [ 18] [ 4] [6011] +16:48:21 [ 32] [ 6] [621354] +16:48:21 [ 35] [ 37] [6688990103500508=43011231050823100000] +16:48:21 [ 37] [ 12] [507903499624] +16:48:21 [ 38] [ 6] [785607] +16:48:21 [ 39] [ 2] [00] +16:48:21 [ 41] [ 8] [06002200] +16:48:21 [ 49] [ 3] [418] +16:48:21 [ 54] [ 20] [0002418C002549647976] +16:48:21 ============================================================================ +16:48:21 Sending to : +16:48:21 ============================================================================ +16:48:21 + + +waiting on router queue for slot.... +16:48:22 ============================================================================ +16:48:22 Slot Id : <252> +16:48:22 Transaction Type : RESPONSE +16:48:22 Received From : +16:48:22 ============================================================================ +16:48:22 FNo. Len. Field Value +16:48:22 ============================================================================ +16:48:22 [ 1] [ 4] [0210] +16:48:22 [ 2] [ 16] [6688990105652406] +16:48:22 [ 3] [ 6] [010000] +16:48:22 [ 4] [ 12] [000100000000] +16:48:22 [ 11] [ 6] [804919] +16:48:22 [ 12] [ 6] [164814] +16:48:22 [ 15] [ 4] [0320] +16:48:22 [ 18] [ 4] [6011] +16:48:22 [ 32] [ 6] [621354] +16:48:22 [ 35] [ 37] [6688990105652406=43101231240689100000] +16:48:22 [ 37] [ 12] [507904635913] +16:48:22 [ 38] [ 6] [447041] +16:48:22 [ 39] [ 2] [00] +16:48:22 [ 41] [ 8] [17000800] +16:48:22 [ 49] [ 3] [418] +16:48:22 [ 54] [ 20] [0002418C000219342416] +16:48:22 ============================================================================ +16:48:22 Calculate Source COMM Id = 0 +16:48:22 ============================================================================ +16:48:22 + + +waiting on router queue for slot.... +16:48:23 ============================================================================ +16:48:23 Slot Id : <272> +16:48:23 Transaction Type : REQUEST +16:48:23 Received From : +16:48:23 ============================================================================ +16:48:23 FNo. Len. Field Value +16:48:23 ============================================================================ +16:48:23 [ 1] [ 4] [0800] +16:48:23 [ 7] [ 10] [0320094730] +16:48:23 [ 11] [ 6] [157309] +16:48:23 [ 70] [ 3] [301] +16:48:23 ============================================================================ +16:48:23 + + +waiting on router queue for slot.... +16:48:23 Sending to : +16:48:23 ============================================================================ +16:48:23 ============================================================================ +16:48:23 Slot Id : <272> +16:48:23 Transaction Type : RESPONSE +16:48:23 Received From : +16:48:23 ============================================================================ +16:48:23 FNo. Len. Field Value +16:48:23 ============================================================================ +16:48:23 [ 1] [ 4] [0810] +16:48:23 [ 7] [ 10] [0320094730] +16:48:23 [ 11] [ 6] [157309] +16:48:23 [ 39] [ 2] [00] +16:48:23 [ 70] [ 3] [301] +16:48:23 ============================================================================ +16:48:23 Calculate Source COMM Id = 2 +16:48:23 ============================================================================ +16:48:23 + + +waiting on router queue for slot.... +16:48:23 ============================================================================ +16:48:23 Slot Id : <254> +16:48:23 Transaction Type : RESPONSE +16:48:23 Received From : +16:48:23 ============================================================================ +16:48:23 FNo. Len. Field Value +16:48:23 ============================================================================ +16:48:23 [ 1] [ 4] [0210] +16:48:23 [ 2] [ 16] [6688990103500508] +16:48:23 [ 3] [ 6] [300000] +16:48:23 [ 4] [ 12] [000000000000] +16:48:23 [ 11] [ 6] [804930] +16:48:23 [ 12] [ 6] [164815] +16:48:23 [ 15] [ 4] [0320] +16:48:23 [ 18] [ 4] [6011] +16:48:23 [ 32] [ 6] [621354] +16:48:23 [ 35] [ 37] [6688990103500508=43011231050823100000] +16:48:23 [ 37] [ 12] [507903499624] +16:48:23 [ 38] [ 6] [785607] +16:48:23 [ 39] [ 2] [00] +16:48:23 [ 41] [ 8] [06002200] +16:48:23 [ 49] [ 3] [418] +16:48:23 [ 54] [ 20] [0002418C002549647976] +16:48:23 ============================================================================ +16:48:23 Calculate Source COMM Id = 0 +16:48:23 ============================================================================ +16:48:23 + + +waiting on router queue for slot.... +16:48:23 ============================================================================ +16:48:23 Slot Id : <282> +16:48:23 Transaction Type : REQUEST +16:48:23 Received From : +16:48:23 ============================================================================ +16:48:23 FNo. Len. Field Value +16:48:23 ============================================================================ +16:48:23 [ 1] [ 4] [0200] +16:48:23 [ 2] [ 16] [6213544002141262] +16:48:23 [ 3] [ 6] [010000] +16:48:23 [ 4] [ 12] [000010000000] +16:48:23 [ 7] [ 10] [0320094730] +16:48:23 [ 11] [ 6] [270614] +16:48:23 [ 12] [ 6] [164730] +16:48:23 [ 13] [ 4] [0320] +16:48:23 [ 14] [ 4] [4912] +16:48:23 [ 15] [ 4] [0320] +16:48:23 [ 18] [ 4] [6011] +16:48:23 [ 19] [ 3] [418] +16:48:23 [ 22] [ 3] [021] +16:48:23 [ 25] [ 2] [01] +16:48:23 [ 28] [ 9] [D00002000] +16:48:23 [ 32] [ 6] [180893] +16:48:23 [ 35] [ 32] [6213544002141262=491212014126596] +16:48:23 [ 37] [ 12] [507909270614] +16:48:23 [ 41] [ 8] [0369SLVL] +16:48:23 [ 42] [ 15] [999999 ] +16:48:23 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:48:23 [ 49] [ 3] [418] +16:48:23 [ 52] [ 16] [8F440B1D9112BE17] +16:48:23 ============================================================================ +16:48:23 + + +waiting on router queue for slot.... +16:48:23 Sending to : +16:48:23 ============================================================================ +16:48:23 Sending to : +16:48:23 ============================================================================ +16:48:24 ============================================================================ +16:48:24 Slot Id : <282> +16:48:24 Transaction Type : REQUEST +16:48:24 Received From : +16:48:24 ============================================================================ +16:48:24 FNo. Len. Field Value +16:48:24 ============================================================================ +16:48:24 [ 1] [ 4] [0200] +16:48:24 [ 2] [ 16] [6213544002141262] +16:48:24 [ 3] [ 6] [010000] +16:48:24 [ 4] [ 12] [000010000000] +16:48:24 [ 7] [ 10] [0320094730] +16:48:24 [ 11] [ 6] [270614] +16:48:24 [ 12] [ 6] [164730] +16:48:24 [ 13] [ 4] [0320] +16:48:24 [ 14] [ 4] [4912] +16:48:24 [ 15] [ 4] [0320] +16:48:24 [ 18] [ 4] [6011] +16:48:24 [ 19] [ 3] [418] +16:48:24 [ 22] [ 3] [021] +16:48:24 [ 25] [ 2] [01] +16:48:24 [ 28] [ 9] [D00002000] +16:48:24 [ 32] [ 6] [180893] +16:48:24 [ 35] [ 32] [6213544002141262=491212014126596] +16:48:24 [ 37] [ 12] [507909270614] +16:48:24 [ 41] [ 8] [0369SLVL] +16:48:24 [ 42] [ 15] [999999 ] +16:48:24 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:48:24 [ 49] [ 3] [418] +16:48:24 [ 52] [ 16] [8F440B1D9112BE17] +16:48:24 ============================================================================ +16:48:24 + + +waiting on router queue for slot.... +16:48:24 Sending to : +16:48:24 ============================================================================ +16:48:24 ============================================================================ +16:48:24 Slot Id : <282> +16:48:24 Transaction Type : REQUEST +16:48:24 Received From : +16:48:24 ============================================================================ +16:48:24 FNo. Len. Field Value +16:48:24 ============================================================================ +16:48:24 [ 1] [ 4] [0200] +16:48:24 [ 2] [ 16] [6213544002141262] +16:48:24 [ 3] [ 6] [010000] +16:48:24 [ 4] [ 12] [000010000000] +16:48:24 [ 7] [ 10] [0320094730] +16:48:24 [ 11] [ 6] [270614] +16:48:24 [ 12] [ 6] [164730] +16:48:24 [ 13] [ 4] [0320] +16:48:24 [ 14] [ 4] [4912] +16:48:24 [ 15] [ 4] [0320] +16:48:24 [ 18] [ 4] [6011] +16:48:24 [ 19] [ 3] [418] +16:48:24 [ 22] [ 3] [021] +16:48:24 [ 25] [ 2] [01] +16:48:24 [ 28] [ 9] [D00002000] +16:48:24 [ 32] [ 6] [180893] +16:48:24 [ 35] [ 32] [6213544002141262=491212014126596] +16:48:24 [ 37] [ 12] [507909270614] +16:48:24 [ 41] [ 8] [0369SLVL] +16:48:24 [ 42] [ 15] [999999 ] +16:48:24 [ 43] [ 40] [ATM LAONGARM SALAVAN BRANCH LOCATION, La] +16:48:24 [ 49] [ 3] [418] +16:48:24 [ 52] [ 16] [19B56A286547609B] +16:48:24 ============================================================================ +16:48:24 + + +waiting on router queue for slot.... +16:48:24 Sending to : <0> +16:48:24 ============================================================================ +16:48:25 ============================================================================ +16:48:25 Slot Id : <282> +16:48:25 Transaction Type : RESPONSE +16:48:25 Received From : +16:48:25 ============================================================================ +16:48:25 FNo. Len. Field Value +16:48:25 ============================================================================ +16:48:25 [ 1] [ 4] [0210] +16:48:25 [ 2] [ 16] [6213544002141262] +16:48:25 [ 3] [ 6] [010000] +16:48:25 [ 4] [ 12] [000010000000] +16:48:25 [ 7] [ 10] [0320094730] +16:48:25 [ 11] [ 6] [270614] +16:48:25 [ 12] [ 6] [164730] +16:48:25 [ 13] [ 4] [0320] +16:48:25 [ 15] [ 4] [0320] +16:48:25 [ 18] [ 4] [6011] +16:48:25 [ 19] [ 3] [418] +16:48:25 [ 32] [ 6] [180893] +16:48:25 [ 35] [ 32] [6213544002141262=491212014126596] +16:48:25 [ 37] [ 12] [507909270614] +16:48:25 [ 38] [ 6] [352986] +16:48:25 [ 39] [ 2] [00] +16:48:25 [ 41] [ 8] [0369SLVL] +16:48:25 [ 49] [ 3] [418] +16:48:25 [ 54] [ 40] [0001418C0003496304110002418C000349630411] +16:48:25 ============================================================================ +16:48:25 Sending to : +16:48:25 ============================================================================ +16:48:25 + + +waiting on router queue for slot.... +16:48:27 ============================================================================ +16:48:27 Slot Id : <282> +16:48:27 Transaction Type : RESPONSE +16:48:27 Received From : +16:48:27 ============================================================================ +16:48:27 FNo. Len. Field Value +16:48:27 ============================================================================ +16:48:27 [ 1] [ 4] [0210] +16:48:27 [ 2] [ 16] [6213544002141262] +16:48:27 [ 3] [ 6] [010000] +16:48:27 [ 4] [ 12] [000010000000] +16:48:27 [ 7] [ 10] [0320094730] +16:48:27 [ 11] [ 6] [270614] +16:48:27 [ 12] [ 6] [164730] +16:48:27 [ 13] [ 4] [0320] +16:48:27 [ 15] [ 4] [0320] +16:48:27 [ 18] [ 4] [6011] +16:48:27 [ 19] [ 3] [418] +16:48:27 [ 32] [ 6] [180893] +16:48:27 [ 35] [ 32] [6213544002141262=491212014126596] +16:48:27 [ 37] [ 12] [507909270614] +16:48:27 [ 38] [ 6] [352986] +16:48:27 [ 39] [ 2] [00] +16:48:27 [ 41] [ 8] [0369SLVL] +16:48:27 [ 49] [ 3] [418] +16:48:27 [ 54] [ 40] [0001418C0003496304110002418C000349630411] +16:48:27 ============================================================================ +16:48:27 Calculate Source COMM Id = 2 +16:48:27 ============================================================================ +16:48:27 + + +waiting on router queue for slot.... +16:48:30 ============================================================================ +16:48:30 Slot Id : <266> +16:48:30 Transaction Type : REQUEST +16:48:30 Received From : +16:48:30 ============================================================================ +16:48:30 FNo. Len. Field Value +16:48:30 ============================================================================ +16:48:30 [ 1] [ 4] [0800] +16:48:30 [ 7] [ 10] [0321000018] +16:48:30 [ 11] [ 6] [170018] +16:48:30 [ 37] [ 12] [57917170018] +16:48:30 [ 70] [ 3] [301] +16:48:30 ============================================================================ +16:48:30 + + +waiting on router queue for slot.... +16:48:30 Sending to : +16:48:30 ============================================================================ +16:48:30 ============================================================================ +16:48:30 Slot Id : <266> +16:48:30 Transaction Type : RESPONSE +16:48:30 Received From : +16:48:30 ============================================================================ +16:48:30 FNo. Len. Field Value +16:48:30 ============================================================================ +16:48:30 [ 1] [ 4] [0810] +16:48:30 [ 7] [ 10] [0321000018] +16:48:30 [ 11] [ 6] [170018] +16:48:30 [ 37] [ 12] [579171700180] +16:48:30 [ 39] [ 2] [00] +16:48:30 [ 70] [ 3] [810] +16:48:30 ============================================================================ +16:48:30 Calculate Source COMM Id = 6 +16:48:30 ============================================================================ +16:48:30 + + +waiting on router queue for slot.... +16:48:30 ============================================================================ +16:48:30 Slot Id : <276> +16:48:30 Transaction Type : REQUEST +16:48:30 Received From : +16:48:30 ============================================================================ +16:48:30 FNo. Len. Field Value +16:48:30 ============================================================================ +16:48:30 [ 1] [ 4] [0200] +16:48:30 [ 2] [ 16] [6213545000937916] +16:48:30 [ 3] [ 6] [301000] +16:48:30 [ 7] [ 10] [0320094736] +16:48:30 [ 11] [ 6] [270615] +16:48:30 [ 12] [ 6] [164736] +16:48:30 [ 13] [ 4] [0320] +16:48:30 [ 14] [ 4] [4912] +16:48:30 [ 15] [ 4] [0320] +16:48:30 [ 18] [ 4] [6011] +16:48:30 [ 19] [ 3] [418] +16:48:30 [ 22] [ 3] [021] +16:48:30 [ 25] [ 2] [01] +16:48:30 [ 32] [ 6] [180893] +16:48:30 [ 35] [ 32] [6213545000937916=491212013791854] +16:48:30 [ 37] [ 12] [507909270615] +16:48:30 [ 41] [ 8] [0543VLSC] +16:48:30 [ 42] [ 15] [999999 ] +16:48:30 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +16:48:30 [ 49] [ 3] [418] +16:48:30 [ 52] [ 16] [7B9D70ACA3535CED] +16:48:30 ============================================================================ +16:48:30 + + +waiting on router queue for slot.... +16:48:30 Sending to : +16:48:30 ============================================================================ +16:48:30 Sending to : +16:48:30 ============================================================================ +16:48:30 ============================================================================ +16:48:30 Slot Id : <276> +16:48:30 Transaction Type : REQUEST +16:48:30 Received From : +16:48:30 ============================================================================ +16:48:30 FNo. Len. Field Value +16:48:30 ============================================================================ +16:48:30 [ 1] [ 4] [0200] +16:48:30 [ 2] [ 16] [6213545000937916] +16:48:30 [ 3] [ 6] [301000] +16:48:30 [ 7] [ 10] [0320094736] +16:48:30 [ 11] [ 6] [270615] +16:48:30 [ 12] [ 6] [164736] +16:48:30 [ 13] [ 4] [0320] +16:48:30 [ 14] [ 4] [4912] +16:48:30 [ 15] [ 4] [0320] +16:48:30 [ 18] [ 4] [6011] +16:48:30 [ 19] [ 3] [418] +16:48:30 [ 22] [ 3] [021] +16:48:30 [ 25] [ 2] [01] +16:48:30 [ 32] [ 6] [180893] +16:48:30 [ 35] [ 32] [6213545000937916=491212013791854] +16:48:30 [ 37] [ 12] [507909270615] +16:48:30 [ 41] [ 8] [0543VLSC] +16:48:30 [ 42] [ 15] [999999 ] +16:48:30 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +16:48:30 [ 49] [ 3] [418] +16:48:30 [ 52] [ 16] [7B9D70ACA3535CED] +16:48:30 ============================================================================ +16:48:30 + + +waiting on router queue for slot.... +16:48:30 Sending to : +16:48:30 ============================================================================ +16:48:30 ============================================================================ +16:48:30 Slot Id : <276> +16:48:30 Transaction Type : REQUEST +16:48:30 Received From : +16:48:30 ============================================================================ +16:48:30 FNo. Len. Field Value +16:48:30 ============================================================================ +16:48:30 [ 1] [ 4] [0200] +16:48:30 [ 2] [ 16] [6213545000937916] +16:48:30 [ 3] [ 6] [301000] +16:48:30 [ 7] [ 10] [0320094736] +16:48:30 [ 11] [ 6] [270615] +16:48:30 [ 12] [ 6] [164736] +16:48:30 [ 13] [ 4] [0320] +16:48:30 [ 14] [ 4] [4912] +16:48:30 [ 15] [ 4] [0320] +16:48:30 [ 18] [ 4] [6011] +16:48:30 [ 19] [ 3] [418] +16:48:30 [ 22] [ 3] [021] +16:48:30 [ 25] [ 2] [01] +16:48:30 [ 32] [ 6] [180893] +16:48:30 [ 35] [ 32] [6213545000937916=491212013791854] +16:48:30 [ 37] [ 12] [507909270615] +16:48:30 [ 41] [ 8] [0543VLSC] +16:48:30 [ 42] [ 15] [999999 ] +16:48:30 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +16:48:30 [ 49] [ 3] [418] +16:48:30 [ 52] [ 16] [8637E869A69712B4] +16:48:30 ============================================================================ +16:48:30 + + +waiting on router queue for slot.... +16:48:30 Sending to : <0> +16:48:30 ============================================================================ +16:48:31 ============================================================================ +16:48:31 Slot Id : <241> +16:48:31 Transaction Type : REQUEST +16:48:31 Received From : +16:48:31 ============================================================================ +16:48:31 FNo. Len. Field Value +16:48:31 ============================================================================ +16:48:31 [ 1] [ 4] [0800] +16:48:31 [ 7] [ 10] [0320164817] +16:48:31 [ 11] [ 6] [047886] +16:48:31 [ 37] [ 12] [507916047886] +16:48:31 [ 70] [ 3] [ ] +16:48:31 ============================================================================ +16:48:31 + + +waiting on router queue for slot.... +16:48:31 Sending to : +16:48:31 ============================================================================ +16:48:31 ============================================================================ +16:48:31 Slot Id : <241> +16:48:31 Transaction Type : RESPONSE +16:48:31 Received From : +16:48:31 ============================================================================ +16:48:31 FNo. Len. Field Value +16:48:31 ============================================================================ +16:48:31 [ 1] [ 4] [0810] +16:48:31 [ 7] [ 10] [0320164817] +16:48:31 [ 11] [ 6] [047886] +16:48:31 [ 37] [ 12] [507916047886] +16:48:31 [ 39] [ 2] [91] +16:48:31 [ 70] [ 3] [ ] +16:48:31 ============================================================================ +16:48:31 Calculate Source COMM Id = 3 +16:48:31 ============================================================================ +16:48:31 + + +waiting on router queue for slot.... +16:48:31 ============================================================================ +16:48:31 Slot Id : <276> +16:48:31 Transaction Type : RESPONSE +16:48:31 Received From : +16:48:31 ============================================================================ +16:48:31 FNo. Len. Field Value +16:48:31 ============================================================================ +16:48:31 [ 1] [ 4] [0210] +16:48:31 [ 2] [ 16] [6213545000937916] +16:48:31 [ 3] [ 6] [301000] +16:48:31 [ 4] [ 12] [000000000000] +16:48:31 [ 7] [ 10] [0320094736] +16:48:31 [ 11] [ 6] [270615] +16:48:31 [ 12] [ 6] [164736] +16:48:31 [ 13] [ 4] [0320] +16:48:31 [ 15] [ 4] [0320] +16:48:31 [ 18] [ 4] [6011] +16:48:31 [ 19] [ 3] [418] +16:48:31 [ 32] [ 6] [180893] +16:48:31 [ 35] [ 32] [6213545000937916=491212013791854] +16:48:31 [ 37] [ 12] [507909270615] +16:48:31 [ 38] [ 6] [949551] +16:48:31 [ 39] [ 2] [00] +16:48:31 [ 41] [ 8] [0543VLSC] +16:48:31 [ 49] [ 3] [418] +16:48:31 [ 54] [ 40] [1001418C0000126831951002418C000012683195] +16:48:31 ============================================================================ +16:48:31 Sending to : +16:48:31 ============================================================================ +16:48:31 + + +waiting on router queue for slot.... +16:48:32 ============================================================================ +16:48:32 Slot Id : <276> +16:48:32 Transaction Type : RESPONSE +16:48:32 Received From : +16:48:32 ============================================================================ +16:48:32 FNo. Len. Field Value +16:48:32 ============================================================================ +16:48:32 [ 1] [ 4] [0210] +16:48:32 [ 2] [ 16] [6213545000937916] +16:48:32 [ 3] [ 6] [301000] +16:48:32 [ 4] [ 12] [000000000000] +16:48:32 [ 7] [ 10] [0320094736] +16:48:32 [ 11] [ 6] [270615] +16:48:32 [ 12] [ 6] [164736] +16:48:32 [ 13] [ 4] [0320] +16:48:32 [ 15] [ 4] [0320] +16:48:32 [ 18] [ 4] [6011] +16:48:32 [ 19] [ 3] [418] +16:48:32 [ 32] [ 6] [180893] +16:48:32 [ 35] [ 32] [6213545000937916=491212013791854] +16:48:32 [ 37] [ 12] [507909270615] +16:48:32 [ 38] [ 6] [949551] +16:48:32 [ 39] [ 2] [00] +16:48:32 [ 41] [ 8] [0543VLSC] +16:48:32 [ 49] [ 3] [418] +16:48:32 [ 54] [ 40] [1001418C0000126831951002418C000012683195] +16:48:32 ============================================================================ +16:48:32 Calculate Source COMM Id = 2 +16:48:32 ============================================================================ +16:48:32 + + +waiting on router queue for slot.... +16:48:32 ============================================================================ +16:48:32 Slot Id : <280> +16:48:32 Transaction Type : REQUEST +16:48:32 Received From : +16:48:32 ============================================================================ +16:48:32 FNo. Len. Field Value +16:48:32 ============================================================================ +16:48:32 [ 1] [ 4] [0200] +16:48:32 [ 2] [ 16] [6213545000325492] +16:48:32 [ 3] [ 6] [012000] +16:48:32 [ 4] [ 12] [000070000000] +16:48:32 [ 7] [ 10] [0320094739] +16:48:32 [ 11] [ 6] [270617] +16:48:32 [ 12] [ 6] [164739] +16:48:32 [ 13] [ 4] [0320] +16:48:32 [ 14] [ 4] [4912] +16:48:32 [ 15] [ 4] [0320] +16:48:32 [ 18] [ 4] [6011] +16:48:32 [ 19] [ 3] [418] +16:48:32 [ 22] [ 3] [021] +16:48:32 [ 25] [ 2] [01] +16:48:32 [ 28] [ 9] [D00002000] +16:48:32 [ 32] [ 6] [180893] +16:48:32 [ 35] [ 32] [6213545000325492=491212012549209] +16:48:32 [ 37] [ 12] [507909270617] +16:48:32 [ 41] [ 8] [0401XSBR] +16:48:32 [ 42] [ 15] [999999 ] +16:48:32 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:48:32 [ 49] [ 3] [418] +16:48:32 [ 52] [ 16] [95848908257AF43B] +16:48:32 ============================================================================ +16:48:32 + + +waiting on router queue for slot.... +16:48:32 Sending to : +16:48:32 ============================================================================ +16:48:32 Sending to : +16:48:32 ============================================================================ +16:48:33 ============================================================================ +16:48:33 Slot Id : <280> +16:48:33 Transaction Type : REQUEST +16:48:33 Received From : +16:48:33 ============================================================================ +16:48:33 FNo. Len. Field Value +16:48:33 ============================================================================ +16:48:33 [ 1] [ 4] [0200] +16:48:33 [ 2] [ 16] [6213545000325492] +16:48:33 [ 3] [ 6] [012000] +16:48:33 [ 4] [ 12] [000070000000] +16:48:33 [ 7] [ 10] [0320094739] +16:48:33 [ 11] [ 6] [270617] +16:48:33 [ 12] [ 6] [164739] +16:48:33 [ 13] [ 4] [0320] +16:48:33 [ 14] [ 4] [4912] +16:48:33 [ 15] [ 4] [0320] +16:48:33 [ 18] [ 4] [6011] +16:48:33 [ 19] [ 3] [418] +16:48:33 [ 22] [ 3] [021] +16:48:33 [ 25] [ 2] [01] +16:48:33 [ 28] [ 9] [D00002000] +16:48:33 [ 32] [ 6] [180893] +16:48:33 [ 35] [ 32] [6213545000325492=491212012549209] +16:48:33 [ 37] [ 12] [507909270617] +16:48:33 [ 41] [ 8] [0401XSBR] +16:48:33 [ 42] [ 15] [999999 ] +16:48:33 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:48:33 [ 49] [ 3] [418] +16:48:33 [ 52] [ 16] [95848908257AF43B] +16:48:33 ============================================================================ +16:48:33 + + +waiting on router queue for slot.... +16:48:33 Sending to : +16:48:33 ============================================================================ +16:48:33 ============================================================================ +16:48:33 Slot Id : <280> +16:48:33 Transaction Type : REQUEST +16:48:33 Received From : +16:48:33 ============================================================================ +16:48:33 FNo. Len. Field Value +16:48:33 ============================================================================ +16:48:33 [ 1] [ 4] [0200] +16:48:33 [ 2] [ 16] [6213545000325492] +16:48:33 [ 3] [ 6] [012000] +16:48:33 [ 4] [ 12] [000070000000] +16:48:33 [ 7] [ 10] [0320094739] +16:48:33 [ 11] [ 6] [270617] +16:48:33 [ 12] [ 6] [164739] +16:48:33 [ 13] [ 4] [0320] +16:48:33 [ 14] [ 4] [4912] +16:48:33 [ 15] [ 4] [0320] +16:48:33 [ 18] [ 4] [6011] +16:48:33 [ 19] [ 3] [418] +16:48:33 [ 22] [ 3] [021] +16:48:33 [ 25] [ 2] [01] +16:48:33 [ 28] [ 9] [D00002000] +16:48:33 [ 32] [ 6] [180893] +16:48:33 [ 35] [ 32] [6213545000325492=491212012549209] +16:48:33 [ 37] [ 12] [507909270617] +16:48:33 [ 41] [ 8] [0401XSBR] +16:48:33 [ 42] [ 15] [999999 ] +16:48:33 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:48:33 [ 49] [ 3] [418] +16:48:33 [ 52] [ 16] [508AFBE2CC995018] +16:48:33 ============================================================================ +16:48:33 + + +waiting on router queue for slot.... +16:48:33 Sending to : <0> +16:48:33 ============================================================================ +16:48:33 ============================================================================ +16:48:33 Slot Id : <280> +16:48:33 Transaction Type : RESPONSE +16:48:33 Received From : +16:48:33 ============================================================================ +16:48:33 FNo. Len. Field Value +16:48:33 ============================================================================ +16:48:33 [ 1] [ 4] [0210] +16:48:33 [ 2] [ 16] [6213545000325492] +16:48:33 [ 3] [ 6] [012000] +16:48:33 [ 4] [ 12] [000070000000] +16:48:33 [ 7] [ 10] [0320094739] +16:48:33 [ 11] [ 6] [270617] +16:48:33 [ 12] [ 6] [164739] +16:48:33 [ 13] [ 4] [0320] +16:48:33 [ 15] [ 4] [0320] +16:48:33 [ 18] [ 4] [6011] +16:48:33 [ 19] [ 3] [418] +16:48:33 [ 32] [ 6] [180893] +16:48:33 [ 35] [ 32] [6213545000325492=491212012549209] +16:48:33 [ 37] [ 12] [507909270617] +16:48:33 [ 38] [ 6] [178371] +16:48:33 [ 39] [ 2] [00] +16:48:33 [ 41] [ 8] [0401XSBR] +16:48:33 [ 49] [ 3] [418] +16:48:33 [ 54] [ 40] [2001418C0002009986502002418C000200998650] +16:48:33 ============================================================================ +16:48:33 Sending to : +16:48:33 ============================================================================ +16:48:33 + + +waiting on router queue for slot.... +16:48:35 ============================================================================ +16:48:35 Slot Id : <280> +16:48:35 Transaction Type : RESPONSE +16:48:35 Received From : +16:48:35 ============================================================================ +16:48:35 FNo. Len. Field Value +16:48:35 ============================================================================ +16:48:35 [ 1] [ 4] [0210] +16:48:35 [ 2] [ 16] [6213545000325492] +16:48:35 [ 3] [ 6] [012000] +16:48:35 [ 4] [ 12] [000070000000] +16:48:35 [ 7] [ 10] [0320094739] +16:48:35 [ 11] [ 6] [270617] +16:48:35 [ 12] [ 6] [164739] +16:48:35 [ 13] [ 4] [0320] +16:48:35 [ 15] [ 4] [0320] +16:48:35 [ 18] [ 4] [6011] +16:48:35 [ 19] [ 3] [418] +16:48:35 [ 32] [ 6] [180893] +16:48:35 [ 35] [ 32] [6213545000325492=491212012549209] +16:48:35 [ 37] [ 12] [507909270617] +16:48:35 [ 38] [ 6] [178371] +16:48:35 [ 39] [ 2] [00] +16:48:35 [ 41] [ 8] [0401XSBR] +16:48:35 [ 49] [ 3] [418] +16:48:35 [ 54] [ 40] [2001418C0002009986502002418C000200998650] +16:48:35 ============================================================================ +16:48:35 Calculate Source COMM Id = 2 +16:48:35 ============================================================================ +16:48:35 + + +waiting on router queue for slot.... +16:48:44 ============================================================================ +16:48:44 Slot Id : <258> +16:48:44 Transaction Type : REQUEST +16:48:44 Received From : +16:48:44 ============================================================================ +16:48:44 FNo. Len. Field Value +16:48:44 ============================================================================ +16:48:44 [ 1] [ 4] [0200] +16:48:44 [ 2] [ 16] [6213544002278775] +16:48:44 [ 3] [ 6] [011000] +16:48:44 [ 4] [ 12] [000050000000] +16:48:44 [ 7] [ 10] [0320164905] +16:48:44 [ 11] [ 6] [208993] +16:48:44 [ 12] [ 6] [164411] +16:48:44 [ 13] [ 4] [0320] +16:48:44 [ 14] [ 4] [4912] +16:48:44 [ 15] [ 4] [0320] +16:48:44 [ 18] [ 4] [6011] +16:48:44 [ 19] [ 3] [418] +16:48:44 [ 22] [ 3] [021] +16:48:44 [ 25] [ 2] [01] +16:48:44 [ 28] [ 9] [D00002000] +16:48:44 [ 32] [ 6] [198901] +16:48:44 [ 35] [ 32] [6213544002278775=491212017877895] +16:48:44 [ 37] [ 12] [507916208993] +16:48:44 [ 41] [ 8] [19529001] +16:48:44 [ 42] [ 15] [000000041952901] +16:48:44 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:48:44 [ 49] [ 3] [418] +16:48:44 [ 52] [ 16] [BF289B9CAEEE3251] +16:48:44 ============================================================================ +16:48:44 + + +waiting on router queue for slot.... +16:48:44 Sending to : +16:48:44 ============================================================================ +16:48:44 Sending to : +16:48:44 ============================================================================ +16:48:45 ============================================================================ +16:48:45 Slot Id : <258> +16:48:45 Transaction Type : REQUEST +16:48:45 Received From : +16:48:45 ============================================================================ +16:48:45 FNo. Len. Field Value +16:48:45 ============================================================================ +16:48:45 [ 1] [ 4] [0200] +16:48:45 [ 2] [ 16] [6213544002278775] +16:48:45 [ 3] [ 6] [011000] +16:48:45 [ 4] [ 12] [000050000000] +16:48:45 [ 7] [ 10] [0320164905] +16:48:45 [ 11] [ 6] [208993] +16:48:45 [ 12] [ 6] [164411] +16:48:45 [ 13] [ 4] [0320] +16:48:45 [ 14] [ 4] [4912] +16:48:45 [ 15] [ 4] [0320] +16:48:45 [ 18] [ 4] [6011] +16:48:45 [ 19] [ 3] [418] +16:48:45 [ 22] [ 3] [021] +16:48:45 [ 25] [ 2] [01] +16:48:45 [ 28] [ 9] [D00002000] +16:48:45 [ 32] [ 6] [198901] +16:48:45 [ 35] [ 32] [6213544002278775=491212017877895] +16:48:45 [ 37] [ 12] [507916208993] +16:48:45 [ 41] [ 8] [19529001] +16:48:45 [ 42] [ 15] [000000041952901] +16:48:45 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:48:45 [ 49] [ 3] [418] +16:48:45 [ 52] [ 16] [BF289B9CAEEE3251] +16:48:45 ============================================================================ +16:48:45 + + +waiting on router queue for slot.... +16:48:45 Sending to : +16:48:45 ============================================================================ +16:48:45 ============================================================================ +16:48:45 Slot Id : <258> +16:48:45 Transaction Type : REQUEST +16:48:45 Received From : +16:48:45 ============================================================================ +16:48:45 FNo. Len. Field Value +16:48:45 ============================================================================ +16:48:45 [ 1] [ 4] [0200] +16:48:45 [ 2] [ 16] [6213544002278775] +16:48:45 [ 3] [ 6] [011000] +16:48:45 [ 4] [ 12] [000050000000] +16:48:45 [ 7] [ 10] [0320164905] +16:48:45 [ 11] [ 6] [208993] +16:48:45 [ 12] [ 6] [164411] +16:48:45 [ 13] [ 4] [0320] +16:48:45 [ 14] [ 4] [4912] +16:48:45 [ 15] [ 4] [0320] +16:48:45 [ 18] [ 4] [6011] +16:48:45 [ 19] [ 3] [418] +16:48:45 [ 22] [ 3] [021] +16:48:45 [ 25] [ 2] [01] +16:48:45 [ 28] [ 9] [D00002000] +16:48:45 [ 32] [ 6] [198901] +16:48:45 [ 35] [ 32] [6213544002278775=491212017877895] +16:48:45 [ 37] [ 12] [507916208993] +16:48:45 [ 41] [ 8] [19529001] +16:48:45 [ 42] [ 15] [000000041952901] +16:48:45 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:48:45 [ 49] [ 3] [418] +16:48:45 [ 52] [ 16] [0D00FC785341C33D] +16:48:45 ============================================================================ +16:48:45 + + +waiting on router queue for slot.... +16:48:45 Sending to : <0> +16:48:45 ============================================================================ +16:48:45 ============================================================================ +16:48:45 Slot Id : <258> +16:48:45 Transaction Type : RESPONSE +16:48:45 Received From : +16:48:45 ============================================================================ +16:48:45 FNo. Len. Field Value +16:48:45 ============================================================================ +16:48:45 [ 1] [ 4] [0210] +16:48:45 [ 2] [ 16] [6213544002278775] +16:48:45 [ 3] [ 6] [011000] +16:48:45 [ 4] [ 12] [000050000000] +16:48:45 [ 7] [ 10] [0320164905] +16:48:45 [ 11] [ 6] [208993] +16:48:45 [ 12] [ 6] [164411] +16:48:45 [ 13] [ 4] [0320] +16:48:45 [ 15] [ 4] [0320] +16:48:45 [ 18] [ 4] [6011] +16:48:45 [ 19] [ 3] [418] +16:48:45 [ 32] [ 6] [198901] +16:48:45 [ 35] [ 32] [6213544002278775=491212017877895] +16:48:45 [ 37] [ 12] [507916208993] +16:48:45 [ 38] [ 6] [208993] +16:48:45 [ 39] [ 2] [51] +16:48:45 [ 41] [ 8] [19529001] +16:48:45 [ 49] [ 3] [418] +16:48:45 [ 54] [ 40] [1001418C0000543985581002418C000054398558] +16:48:45 ============================================================================ +16:48:45 Sending to : +16:48:45 ============================================================================ +16:48:45 + + +waiting on router queue for slot.... +16:48:46 ============================================================================ +16:48:46 Slot Id : <258> +16:48:46 Transaction Type : RESPONSE +16:48:46 Received From : +16:48:46 ============================================================================ +16:48:46 FNo. Len. Field Value +16:48:46 ============================================================================ +16:48:46 [ 1] [ 4] [0210] +16:48:46 [ 2] [ 16] [6213544002278775] +16:48:46 [ 3] [ 6] [011000] +16:48:46 [ 4] [ 12] [000050000000] +16:48:46 [ 7] [ 10] [0320164905] +16:48:46 [ 11] [ 6] [208993] +16:48:46 [ 12] [ 6] [164411] +16:48:46 [ 13] [ 4] [0320] +16:48:46 [ 15] [ 4] [0320] +16:48:46 [ 18] [ 4] [6011] +16:48:46 [ 19] [ 3] [418] +16:48:46 [ 32] [ 6] [198901] +16:48:46 [ 35] [ 32] [6213544002278775=491212017877895] +16:48:46 [ 37] [ 12] [507916208993] +16:48:46 [ 38] [ 6] [208993] +16:48:46 [ 39] [ 2] [51] +16:48:46 [ 41] [ 8] [19529001] +16:48:46 [ 49] [ 3] [418] +16:48:46 [ 54] [ 40] [1001418C0000543985581002418C000054398558] +16:48:46 ============================================================================ +16:48:46 Calculate Source COMM Id = 5 +16:48:46 ============================================================================ +16:48:46 + + +waiting on router queue for slot.... +16:48:49 ============================================================================ +16:48:49 Slot Id : <224> +16:48:49 Transaction Type : REQUEST +16:48:49 Received From : +16:48:49 ============================================================================ +16:48:49 FNo. Len. Field Value +16:48:49 ============================================================================ +16:48:49 [ 1] [ 4] [0800] +16:48:49 [ 7] [ 10] [0320094756] +16:48:49 [ 11] [ 6] [157310] +16:48:49 [ 70] [ 3] [301] +16:48:49 ============================================================================ +16:48:49 + + +waiting on router queue for slot.... +16:48:49 Sending to : +16:48:49 ============================================================================ +16:48:49 ============================================================================ +16:48:49 Slot Id : <224> +16:48:49 Transaction Type : RESPONSE +16:48:49 Received From : +16:48:49 ============================================================================ +16:48:49 FNo. Len. Field Value +16:48:49 ============================================================================ +16:48:49 [ 1] [ 4] [0810] +16:48:49 [ 7] [ 10] [0320094756] +16:48:49 [ 11] [ 6] [157310] +16:48:49 [ 39] [ 2] [00] +16:48:49 [ 70] [ 3] [301] +16:48:49 ============================================================================ +16:48:49 Calculate Source COMM Id = 2 +16:48:49 ============================================================================ +16:48:49 + + +waiting on router queue for slot.... +16:48:54 ============================================================================ +16:48:54 Slot Id : <219> +16:48:54 Transaction Type : REQUEST +16:48:54 Received From : +16:48:54 ============================================================================ +16:48:54 FNo. Len. Field Value +16:48:54 ============================================================================ +16:48:54 [ 1] [ 4] [0200] +16:48:54 [ 2] [ 16] [6213544002225941] +16:48:54 [ 3] [ 6] [010000] +16:48:54 [ 4] [ 12] [000044000000] +16:48:54 [ 7] [ 10] [0320165641] +16:48:54 [ 11] [ 6] [240458] +16:48:54 [ 12] [ 6] [165641] +16:48:54 [ 13] [ 4] [0320] +16:48:54 [ 14] [ 4] [4912] +16:48:54 [ 15] [ 4] [0320] +16:48:54 [ 18] [ 4] [6011] +16:48:54 [ 22] [ 3] [900] +16:48:54 [ 25] [ 2] [02] +16:48:54 [ 28] [ 9] [D00002000] +16:48:54 [ 32] [ 6] [220699] +16:48:54 [ 35] [ 32] [6213544002225941=491212012594586] +16:48:54 [ 37] [ 12] [507900360215] +16:48:54 [ 41] [ 8] [05000300] +16:48:54 [ 42] [ 15] [APTRA ] +16:48:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:48:54 [ 49] [ 3] [418] +16:48:54 [ 52] [ 16] [181E95E07A9AEE92] +16:48:54 ============================================================================ +16:48:54 + + +waiting on router queue for slot.... +16:48:54 Sending to : +16:48:54 ============================================================================ +16:48:54 Sending to : +16:48:54 ============================================================================ +16:48:55 ============================================================================ +16:48:55 Slot Id : <219> +16:48:55 Transaction Type : REQUEST +16:48:55 Received From : +16:48:55 ============================================================================ +16:48:55 FNo. Len. Field Value +16:48:55 ============================================================================ +16:48:55 [ 1] [ 4] [0200] +16:48:55 [ 2] [ 16] [6213544002225941] +16:48:55 [ 3] [ 6] [010000] +16:48:55 [ 4] [ 12] [000044000000] +16:48:55 [ 7] [ 10] [0320165641] +16:48:55 [ 11] [ 6] [240458] +16:48:55 [ 12] [ 6] [165641] +16:48:55 [ 13] [ 4] [0320] +16:48:55 [ 14] [ 4] [4912] +16:48:55 [ 15] [ 4] [0320] +16:48:55 [ 18] [ 4] [6011] +16:48:55 [ 22] [ 3] [900] +16:48:55 [ 25] [ 2] [02] +16:48:55 [ 28] [ 9] [D00002000] +16:48:55 [ 32] [ 6] [220699] +16:48:55 [ 35] [ 32] [6213544002225941=491212012594586] +16:48:55 [ 37] [ 12] [507900360215] +16:48:55 [ 41] [ 8] [05000300] +16:48:55 [ 42] [ 15] [APTRA ] +16:48:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:48:55 [ 49] [ 3] [418] +16:48:55 [ 52] [ 16] [181E95E07A9AEE92] +16:48:55 ============================================================================ +16:48:55 + + +waiting on router queue for slot.... +16:48:55 Sending to : +16:48:55 ============================================================================ +16:48:55 ============================================================================ +16:48:55 Slot Id : <219> +16:48:55 Transaction Type : REQUEST +16:48:55 Received From : +16:48:55 ============================================================================ +16:48:55 FNo. Len. Field Value +16:48:55 ============================================================================ +16:48:55 [ 1] [ 4] [0200] +16:48:55 [ 2] [ 16] [6213544002225941] +16:48:55 [ 3] [ 6] [010000] +16:48:55 [ 4] [ 12] [000044000000] +16:48:55 [ 7] [ 10] [0320165641] +16:48:55 [ 11] [ 6] [240458] +16:48:55 [ 12] [ 6] [165641] +16:48:55 [ 13] [ 4] [0320] +16:48:55 [ 14] [ 4] [4912] +16:48:55 [ 15] [ 4] [0320] +16:48:55 [ 18] [ 4] [6011] +16:48:55 [ 22] [ 3] [900] +16:48:55 [ 25] [ 2] [02] +16:48:55 [ 28] [ 9] [D00002000] +16:48:55 [ 32] [ 6] [220699] +16:48:55 [ 35] [ 32] [6213544002225941=491212012594586] +16:48:55 [ 37] [ 12] [507900360215] +16:48:55 [ 41] [ 8] [05000300] +16:48:55 [ 42] [ 15] [APTRA ] +16:48:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:48:55 [ 49] [ 3] [418] +16:48:55 [ 52] [ 16] [4E4B45169F932D7C] +16:48:55 ============================================================================ +16:48:55 + + +waiting on router queue for slot.... +16:48:55 Sending to : <0> +16:48:55 ============================================================================ +16:48:55 ============================================================================ +16:48:55 Slot Id : <219> +16:48:55 Transaction Type : RESPONSE +16:48:55 Received From : +16:48:55 ============================================================================ +16:48:55 FNo. Len. Field Value +16:48:55 ============================================================================ +16:48:55 [ 1] [ 4] [0210] +16:48:55 [ 2] [ 16] [6213544002225941] +16:48:55 [ 3] [ 6] [010000] +16:48:55 [ 4] [ 12] [000044000000] +16:48:55 [ 7] [ 10] [0320165641] +16:48:55 [ 11] [ 6] [240458] +16:48:55 [ 12] [ 6] [165641] +16:48:55 [ 13] [ 4] [0320] +16:48:55 [ 15] [ 4] [0320] +16:48:55 [ 18] [ 4] [6011] +16:48:55 [ 32] [ 6] [220699] +16:48:55 [ 35] [ 32] [6213544002225941=491212012594586] +16:48:55 [ 37] [ 12] [507900360215] +16:48:55 [ 38] [ 6] [265157] +16:48:55 [ 39] [ 2] [00] +16:48:55 [ 41] [ 8] [05000300] +16:48:55 [ 49] [ 3] [418] +16:48:55 [ 54] [ 40] [0001418C0000089817310002418C000008981731] +16:48:55 ============================================================================ +16:48:55 Sending to : +16:48:55 ============================================================================ +16:48:55 + + +waiting on router queue for slot.... +16:48:57 ============================================================================ +16:48:57 Slot Id : <219> +16:48:57 Transaction Type : RESPONSE +16:48:57 Received From : +16:48:57 ============================================================================ +16:48:57 FNo. Len. Field Value +16:48:57 ============================================================================ +16:48:57 [ 1] [ 4] [0210] +16:48:57 [ 2] [ 16] [6213544002225941] +16:48:57 [ 3] [ 6] [010000] +16:48:57 [ 4] [ 12] [000044000000] +16:48:57 [ 7] [ 10] [0320165641] +16:48:57 [ 11] [ 6] [240458] +16:48:57 [ 12] [ 6] [165641] +16:48:57 [ 13] [ 4] [0320] +16:48:57 [ 15] [ 4] [0320] +16:48:57 [ 18] [ 4] [6011] +16:48:57 [ 32] [ 6] [220699] +16:48:57 [ 35] [ 32] [6213544002225941=491212012594586] +16:48:57 [ 37] [ 12] [507900360215] +16:48:57 [ 38] [ 6] [265157] +16:48:57 [ 39] [ 2] [00] +16:48:57 [ 41] [ 8] [05000300] +16:48:57 [ 49] [ 3] [418] +16:48:57 [ 54] [ 40] [0001418C0000089817310002418C000008981731] +16:48:57 ============================================================================ +16:48:57 Calculate Source COMM Id = 1 +16:48:57 ============================================================================ +16:48:57 + + +waiting on router queue for slot.... +16:48:59 ============================================================================ +16:48:59 Slot Id : <284> +16:48:59 Transaction Type : REQUEST +16:48:59 Received From : +16:48:59 ============================================================================ +16:48:59 FNo. Len. Field Value +16:48:59 ============================================================================ +16:48:59 [ 1] [ 4] [0800] +16:48:59 [ 7] [ 10] [0320094806] +16:48:59 [ 11] [ 6] [157311] +16:48:59 [ 70] [ 3] [301] +16:48:59 ============================================================================ +16:48:59 + + +waiting on router queue for slot.... +16:48:59 Sending to : +16:48:59 ============================================================================ +16:48:59 ============================================================================ +16:48:59 Slot Id : <284> +16:48:59 Transaction Type : RESPONSE +16:48:59 Received From : +16:48:59 ============================================================================ +16:48:59 FNo. Len. Field Value +16:48:59 ============================================================================ +16:48:59 [ 1] [ 4] [0810] +16:48:59 [ 7] [ 10] [0320094806] +16:48:59 [ 11] [ 6] [157311] +16:48:59 [ 39] [ 2] [00] +16:48:59 [ 70] [ 3] [301] +16:48:59 ============================================================================ +16:48:59 Calculate Source COMM Id = 2 +16:48:59 ============================================================================ +16:48:59 + + +waiting on router queue for slot.... +16:49:06 ============================================================================ +16:49:06 Slot Id : <287> +16:49:06 Transaction Type : REQUEST +16:49:06 Received From : +16:49:06 ============================================================================ +16:49:06 FNo. Len. Field Value +16:49:06 ============================================================================ +16:49:06 [ 1] [ 4] [0200] +16:49:06 [ 2] [ 16] [6213545000718134] +16:49:06 [ 3] [ 6] [301000] +16:49:06 [ 7] [ 10] [0320094813] +16:49:06 [ 11] [ 6] [270624] +16:49:06 [ 12] [ 6] [164813] +16:49:06 [ 13] [ 4] [0320] +16:49:06 [ 14] [ 4] [4912] +16:49:06 [ 15] [ 4] [0320] +16:49:06 [ 18] [ 4] [6011] +16:49:06 [ 19] [ 3] [418] +16:49:06 [ 22] [ 3] [021] +16:49:06 [ 25] [ 2] [01] +16:49:06 [ 32] [ 6] [180893] +16:49:06 [ 35] [ 32] [6213545000718134=491212011813056] +16:49:06 [ 37] [ 12] [507909270624] +16:49:06 [ 41] [ 8] [0112CPBR] +16:49:06 [ 42] [ 15] [999999 ] +16:49:06 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +16:49:06 [ 49] [ 3] [418] +16:49:06 [ 52] [ 16] [69907DE5F96B4F13] +16:49:06 ============================================================================ +16:49:06 + + +waiting on router queue for slot.... +16:49:06 Sending to : +16:49:06 ============================================================================ +16:49:06 Sending to : +16:49:06 ============================================================================ +16:49:07 ============================================================================ +16:49:07 Slot Id : <287> +16:49:07 Transaction Type : REQUEST +16:49:07 Received From : +16:49:07 ============================================================================ +16:49:07 FNo. Len. Field Value +16:49:07 ============================================================================ +16:49:07 [ 1] [ 4] [0200] +16:49:07 [ 2] [ 16] [6213545000718134] +16:49:07 [ 3] [ 6] [301000] +16:49:07 [ 7] [ 10] [0320094813] +16:49:07 [ 11] [ 6] [270624] +16:49:07 [ 12] [ 6] [164813] +16:49:07 [ 13] [ 4] [0320] +16:49:07 [ 14] [ 4] [4912] +16:49:07 [ 15] [ 4] [0320] +16:49:07 [ 18] [ 4] [6011] +16:49:07 [ 19] [ 3] [418] +16:49:07 [ 22] [ 3] [021] +16:49:07 [ 25] [ 2] [01] +16:49:07 [ 32] [ 6] [180893] +16:49:07 [ 35] [ 32] [6213545000718134=491212011813056] +16:49:07 [ 37] [ 12] [507909270624] +16:49:07 [ 41] [ 8] [0112CPBR] +16:49:07 [ 42] [ 15] [999999 ] +16:49:07 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +16:49:07 [ 49] [ 3] [418] +16:49:07 [ 52] [ 16] [69907DE5F96B4F13] +16:49:07 ============================================================================ +16:49:07 + + +waiting on router queue for slot.... +16:49:07 Sending to : +16:49:07 ============================================================================ +16:49:07 ============================================================================ +16:49:07 Slot Id : <287> +16:49:07 Transaction Type : REQUEST +16:49:07 Received From : +16:49:07 ============================================================================ +16:49:07 FNo. Len. Field Value +16:49:07 ============================================================================ +16:49:07 [ 1] [ 4] [0200] +16:49:07 [ 2] [ 16] [6213545000718134] +16:49:07 [ 3] [ 6] [301000] +16:49:07 [ 7] [ 10] [0320094813] +16:49:07 [ 11] [ 6] [270624] +16:49:07 [ 12] [ 6] [164813] +16:49:07 [ 13] [ 4] [0320] +16:49:07 [ 14] [ 4] [4912] +16:49:07 [ 15] [ 4] [0320] +16:49:07 [ 18] [ 4] [6011] +16:49:07 [ 19] [ 3] [418] +16:49:07 [ 22] [ 3] [021] +16:49:07 [ 25] [ 2] [01] +16:49:07 [ 32] [ 6] [180893] +16:49:07 [ 35] [ 32] [6213545000718134=491212011813056] +16:49:07 [ 37] [ 12] [507909270624] +16:49:07 [ 41] [ 8] [0112CPBR] +16:49:07 [ 42] [ 15] [999999 ] +16:49:07 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +16:49:07 [ 49] [ 3] [418] +16:49:07 [ 52] [ 16] [FB6337617131D20C] +16:49:07 ============================================================================ +16:49:07 + + +waiting on router queue for slot.... +16:49:07 Sending to : <0> +16:49:07 ============================================================================ +16:49:07 ============================================================================ +16:49:07 Slot Id : <287> +16:49:07 Transaction Type : RESPONSE +16:49:07 Received From : +16:49:07 ============================================================================ +16:49:07 FNo. Len. Field Value +16:49:07 ============================================================================ +16:49:07 [ 1] [ 4] [0210] +16:49:07 [ 2] [ 16] [6213545000718134] +16:49:07 [ 3] [ 6] [301000] +16:49:07 [ 4] [ 12] [000000000000] +16:49:07 [ 7] [ 10] [0320094813] +16:49:07 [ 11] [ 6] [270624] +16:49:07 [ 12] [ 6] [164813] +16:49:07 [ 13] [ 4] [0320] +16:49:07 [ 15] [ 4] [0320] +16:49:07 [ 18] [ 4] [6011] +16:49:07 [ 19] [ 3] [418] +16:49:07 [ 32] [ 6] [180893] +16:49:07 [ 35] [ 32] [6213545000718134=491212011813056] +16:49:07 [ 37] [ 12] [507909270624] +16:49:07 [ 38] [ 6] [341656] +16:49:07 [ 39] [ 2] [00] +16:49:07 [ 41] [ 8] [0112CPBR] +16:49:07 [ 49] [ 3] [418] +16:49:07 [ 54] [ 40] [1001418C0000286590291002418C000028659029] +16:49:07 ============================================================================ +16:49:07 Sending to : +16:49:07 ============================================================================ +16:49:07 + + +waiting on router queue for slot.... +16:49:09 ============================================================================ +16:49:09 Slot Id : <287> +16:49:09 Transaction Type : RESPONSE +16:49:09 Received From : +16:49:09 ============================================================================ +16:49:09 FNo. Len. Field Value +16:49:09 ============================================================================ +16:49:09 [ 1] [ 4] [0210] +16:49:09 [ 2] [ 16] [6213545000718134] +16:49:09 [ 3] [ 6] [301000] +16:49:09 [ 4] [ 12] [000000000000] +16:49:09 [ 7] [ 10] [0320094813] +16:49:09 [ 11] [ 6] [270624] +16:49:09 [ 12] [ 6] [164813] +16:49:09 [ 13] [ 4] [0320] +16:49:09 [ 15] [ 4] [0320] +16:49:09 [ 18] [ 4] [6011] +16:49:09 [ 19] [ 3] [418] +16:49:09 [ 32] [ 6] [180893] +16:49:09 [ 35] [ 32] [6213545000718134=491212011813056] +16:49:09 [ 37] [ 12] [507909270624] +16:49:09 [ 38] [ 6] [341656] +16:49:09 [ 39] [ 2] [00] +16:49:09 [ 41] [ 8] [0112CPBR] +16:49:09 [ 49] [ 3] [418] +16:49:09 [ 54] [ 40] [1001418C0000286590291002418C000028659029] +16:49:09 ============================================================================ +16:49:09 Calculate Source COMM Id = 2 +16:49:09 ============================================================================ +16:49:09 + + +waiting on router queue for slot.... +16:49:09 ============================================================================ +16:49:09 Slot Id : <277> +16:49:09 Transaction Type : REQUEST +16:49:09 Received From : +16:49:09 ============================================================================ +16:49:09 FNo. Len. Field Value +16:49:09 ============================================================================ +16:49:09 [ 1] [ 4] [0200] +16:49:09 [ 2] [ 16] [6213544002278775] +16:49:09 [ 3] [ 6] [011000] +16:49:09 [ 4] [ 12] [000045000000] +16:49:09 [ 7] [ 10] [0320164929] +16:49:09 [ 11] [ 6] [208998] +16:49:09 [ 12] [ 6] [164435] +16:49:09 [ 13] [ 4] [0320] +16:49:09 [ 14] [ 4] [4912] +16:49:09 [ 15] [ 4] [0320] +16:49:09 [ 18] [ 4] [6011] +16:49:09 [ 19] [ 3] [418] +16:49:09 [ 22] [ 3] [021] +16:49:09 [ 25] [ 2] [01] +16:49:09 [ 28] [ 9] [D00002000] +16:49:09 [ 32] [ 6] [198901] +16:49:09 [ 35] [ 32] [6213544002278775=491212017877895] +16:49:09 [ 37] [ 12] [507916208998] +16:49:09 [ 41] [ 8] [19529001] +16:49:09 [ 42] [ 15] [000000041952901] +16:49:09 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:49:09 [ 49] [ 3] [418] +16:49:09 [ 52] [ 16] [BF289B9CAEEE3251] +16:49:09 ============================================================================ +16:49:09 + + +waiting on router queue for slot.... +16:49:09 Sending to : +16:49:09 ============================================================================ +16:49:09 Sending to : +16:49:09 ============================================================================ +16:49:09 ============================================================================ +16:49:09 Slot Id : <277> +16:49:09 Transaction Type : REQUEST +16:49:09 Received From : +16:49:09 ============================================================================ +16:49:09 FNo. Len. Field Value +16:49:09 ============================================================================ +16:49:09 [ 1] [ 4] [0200] +16:49:09 [ 2] [ 16] [6213544002278775] +16:49:09 [ 3] [ 6] [011000] +16:49:09 [ 4] [ 12] [000045000000] +16:49:09 [ 7] [ 10] [0320164929] +16:49:09 [ 11] [ 6] [208998] +16:49:09 [ 12] [ 6] [164435] +16:49:09 [ 13] [ 4] [0320] +16:49:09 [ 14] [ 4] [4912] +16:49:09 [ 15] [ 4] [0320] +16:49:09 [ 18] [ 4] [6011] +16:49:09 [ 19] [ 3] [418] +16:49:09 [ 22] [ 3] [021] +16:49:09 [ 25] [ 2] [01] +16:49:09 [ 28] [ 9] [D00002000] +16:49:09 [ 32] [ 6] [198901] +16:49:09 [ 35] [ 32] [6213544002278775=491212017877895] +16:49:09 [ 37] [ 12] [507916208998] +16:49:09 [ 41] [ 8] [19529001] +16:49:09 [ 42] [ 15] [000000041952901] +16:49:09 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:49:09 [ 49] [ 3] [418] +16:49:09 [ 52] [ 16] [BF289B9CAEEE3251] +16:49:09 ============================================================================ +16:49:09 + + +waiting on router queue for slot.... +16:49:09 Sending to : +16:49:09 ============================================================================ +16:49:09 ============================================================================ +16:49:09 Slot Id : <277> +16:49:09 Transaction Type : REQUEST +16:49:09 Received From : +16:49:09 ============================================================================ +16:49:09 FNo. Len. Field Value +16:49:09 ============================================================================ +16:49:09 [ 1] [ 4] [0200] +16:49:09 [ 2] [ 16] [6213544002278775] +16:49:09 [ 3] [ 6] [011000] +16:49:09 [ 4] [ 12] [000045000000] +16:49:09 [ 7] [ 10] [0320164929] +16:49:09 [ 11] [ 6] [208998] +16:49:09 [ 12] [ 6] [164435] +16:49:09 [ 13] [ 4] [0320] +16:49:09 [ 14] [ 4] [4912] +16:49:09 [ 15] [ 4] [0320] +16:49:09 [ 18] [ 4] [6011] +16:49:09 [ 19] [ 3] [418] +16:49:09 [ 22] [ 3] [021] +16:49:09 [ 25] [ 2] [01] +16:49:09 [ 28] [ 9] [D00002000] +16:49:09 [ 32] [ 6] [198901] +16:49:09 [ 35] [ 32] [6213544002278775=491212017877895] +16:49:09 [ 37] [ 12] [507916208998] +16:49:09 [ 41] [ 8] [19529001] +16:49:09 [ 42] [ 15] [000000041952901] +16:49:09 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:49:09 [ 49] [ 3] [418] +16:49:09 [ 52] [ 16] [0D00FC785341C33D] +16:49:09 ============================================================================ +16:49:09 + + +waiting on router queue for slot.... +16:49:09 Sending to : <0> +16:49:09 ============================================================================ +16:49:10 ============================================================================ +16:49:10 Slot Id : <277> +16:49:10 Transaction Type : RESPONSE +16:49:10 Received From : +16:49:10 ============================================================================ +16:49:10 FNo. Len. Field Value +16:49:10 ============================================================================ +16:49:10 [ 1] [ 4] [0210] +16:49:10 [ 2] [ 16] [6213544002278775] +16:49:10 [ 3] [ 6] [011000] +16:49:10 [ 4] [ 12] [000045000000] +16:49:10 [ 7] [ 10] [0320164929] +16:49:10 [ 11] [ 6] [208998] +16:49:10 [ 12] [ 6] [164435] +16:49:10 [ 13] [ 4] [0320] +16:49:10 [ 15] [ 4] [0320] +16:49:10 [ 18] [ 4] [6011] +16:49:10 [ 19] [ 3] [418] +16:49:10 [ 32] [ 6] [198901] +16:49:10 [ 35] [ 32] [6213544002278775=491212017877895] +16:49:10 [ 37] [ 12] [507916208998] +16:49:10 [ 38] [ 6] [716647] +16:49:10 [ 39] [ 2] [00] +16:49:10 [ 41] [ 8] [19529001] +16:49:10 [ 49] [ 3] [418] +16:49:10 [ 54] [ 40] [1001418C0000091985581002418C000009198558] +16:49:10 ============================================================================ +16:49:10 Sending to : +16:49:10 ============================================================================ +16:49:10 + + +waiting on router queue for slot.... +16:49:11 ============================================================================ +16:49:11 Slot Id : <290> +16:49:11 Transaction Type : REQUEST +16:49:11 Received From : +16:49:11 ============================================================================ +16:49:11 FNo. Len. Field Value +16:49:11 ============================================================================ +16:49:11 [ 1] [ 4] [0800] +16:49:11 [ 2] [ 5] [02531] +16:49:11 [ 3] [ 6] [579168] +16:49:11 [ 7] [ 10] [0320094911] +16:49:11 [ 11] [ 6] [807388] +16:49:11 [ 15] [ 10] [0320094911] +16:49:11 [ 37] [ 11] [57916807388] +16:49:11 [ 70] [ 3] [001] +16:49:11 ============================================================================ +16:49:11 + + +waiting on router queue for slot.... +16:49:11 ============================================================================ +16:49:11 Slot Id : <290> +16:49:11 Transaction Type : RESPONSE +16:49:11 Received From : +16:49:11 ============================================================================ +16:49:11 FNo. Len. Field Value +16:49:11 ============================================================================ +16:49:11 [ 1] [ 4] [0810] +16:49:11 [ 7] [ 10] [0320094911] +16:49:11 [ 11] [ 6] [807388] +16:49:11 [ 15] [ 4] [0320] +16:49:11 [ 37] [ 12] [57916807388] +16:49:11 [ 39] [ 2] [00] +16:49:11 [ 70] [ 3] [001] +16:49:11 ============================================================================ +16:49:11 Sending to : +16:49:11 ============================================================================ +16:49:11 + + +waiting on router queue for slot.... +16:49:11 ============================================================================ +16:49:11 Slot Id : <277> +16:49:11 Transaction Type : RESPONSE +16:49:11 Received From : +16:49:11 ============================================================================ +16:49:11 FNo. Len. Field Value +16:49:11 ============================================================================ +16:49:11 [ 1] [ 4] [0210] +16:49:11 [ 2] [ 16] [6213544002278775] +16:49:11 [ 3] [ 6] [011000] +16:49:11 [ 4] [ 12] [000045000000] +16:49:11 [ 7] [ 10] [0320164929] +16:49:11 [ 11] [ 6] [208998] +16:49:11 [ 12] [ 6] [164435] +16:49:11 [ 13] [ 4] [0320] +16:49:11 [ 15] [ 4] [0320] +16:49:11 [ 18] [ 4] [6011] +16:49:11 [ 19] [ 3] [418] +16:49:11 [ 32] [ 6] [198901] +16:49:11 [ 35] [ 32] [6213544002278775=491212017877895] +16:49:11 [ 37] [ 12] [507916208998] +16:49:11 [ 38] [ 6] [716647] +16:49:11 [ 39] [ 2] [00] +16:49:11 [ 41] [ 8] [19529001] +16:49:11 [ 49] [ 3] [418] +16:49:11 [ 54] [ 40] [1001418C0000091985581002418C000009198558] +16:49:11 ============================================================================ +16:49:11 Calculate Source COMM Id = 5 +16:49:11 ============================================================================ +16:49:11 + + +waiting on router queue for slot.... +16:49:20 ============================================================================ +16:49:20 Slot Id : <271> +16:49:20 Transaction Type : REQUEST +16:49:20 Received From : +16:49:20 ============================================================================ +16:49:20 FNo. Len. Field Value +16:49:20 ============================================================================ +16:49:20 [ 1] [ 4] [0800] +16:49:20 [ 7] [ 10] [0320094827] +16:49:20 [ 11] [ 6] [157312] +16:49:20 [ 70] [ 3] [301] +16:49:20 ============================================================================ +16:49:20 + + +waiting on router queue for slot.... +16:49:20 Sending to : +16:49:20 ============================================================================ +16:49:20 ============================================================================ +16:49:20 Slot Id : <271> +16:49:20 Transaction Type : RESPONSE +16:49:20 Received From : +16:49:20 ============================================================================ +16:49:20 FNo. Len. Field Value +16:49:20 ============================================================================ +16:49:20 [ 1] [ 4] [0810] +16:49:20 [ 7] [ 10] [0320094827] +16:49:20 [ 11] [ 6] [157312] +16:49:20 [ 39] [ 2] [00] +16:49:20 [ 70] [ 3] [301] +16:49:20 ============================================================================ +16:49:20 Calculate Source COMM Id = 2 +16:49:20 ============================================================================ +16:49:20 + + +waiting on router queue for slot.... +16:49:25 ============================================================================ +16:49:25 Slot Id : <267> +16:49:25 Transaction Type : REQUEST +16:49:25 Received From : +16:49:25 ============================================================================ +16:49:25 FNo. Len. Field Value +16:49:25 ============================================================================ +16:49:25 [ 1] [ 4] [0200] +16:49:25 [ 2] [ 16] [6688990105312209] +16:49:25 [ 3] [ 6] [301000] +16:49:25 [ 4] [ 12] [000000000000] +16:49:25 [ 7] [ 10] [0320164920] +16:49:25 [ 11] [ 6] [805248] +16:49:25 [ 12] [ 6] [164920] +16:49:25 [ 13] [ 4] [0320] +16:49:25 [ 15] [ 4] [0320] +16:49:25 [ 18] [ 4] [6011] +16:49:25 [ 22] [ 3] [900] +16:49:25 [ 25] [ 2] [02] +16:49:25 [ 28] [ 9] [D00000000] +16:49:25 [ 32] [ 6] [621354] +16:49:25 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:49:25 [ 37] [ 12] [507903884028] +16:49:25 [ 41] [ 8] [01010400] +16:49:25 [ 42] [ 15] [NATIVE ] +16:49:25 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +16:49:25 [ 49] [ 3] [418] +16:49:25 [ 52] [ 16] [D44E4CB8566A4AF1] +16:49:25 ============================================================================ +16:49:25 + + +waiting on router queue for slot.... +16:49:25 Sending to : +16:49:25 ============================================================================ +16:49:25 Sending to : +16:49:25 ============================================================================ +16:49:25 ============================================================================ +16:49:25 Slot Id : <267> +16:49:25 Transaction Type : REQUEST +16:49:25 Received From : +16:49:25 ============================================================================ +16:49:25 FNo. Len. Field Value +16:49:25 ============================================================================ +16:49:25 [ 1] [ 4] [0200] +16:49:25 [ 2] [ 16] [6688990105312209] +16:49:25 [ 3] [ 6] [301000] +16:49:25 [ 4] [ 12] [000000000000] +16:49:25 [ 7] [ 10] [0320164920] +16:49:25 [ 11] [ 6] [805248] +16:49:25 [ 12] [ 6] [164920] +16:49:25 [ 13] [ 4] [0320] +16:49:25 [ 15] [ 4] [0320] +16:49:25 [ 18] [ 4] [6011] +16:49:25 [ 22] [ 3] [900] +16:49:25 [ 25] [ 2] [02] +16:49:25 [ 28] [ 9] [D00000000] +16:49:25 [ 32] [ 6] [621354] +16:49:25 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:49:25 [ 37] [ 12] [507903884028] +16:49:25 [ 41] [ 8] [01010400] +16:49:25 [ 42] [ 15] [NATIVE ] +16:49:25 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +16:49:25 [ 49] [ 3] [418] +16:49:25 [ 52] [ 16] [D44E4CB8566A4AF1] +16:49:25 ============================================================================ +16:49:25 + + +waiting on router queue for slot.... +16:49:25 Sending to : +16:49:25 ============================================================================ +16:49:25 ============================================================================ +16:49:25 Slot Id : <267> +16:49:25 Transaction Type : REQUEST +16:49:25 Received From : +16:49:25 ============================================================================ +16:49:25 FNo. Len. Field Value +16:49:25 ============================================================================ +16:49:25 [ 1] [ 4] [0200] +16:49:25 [ 2] [ 16] [6688990105312209] +16:49:25 [ 3] [ 6] [301000] +16:49:25 [ 4] [ 12] [000000000000] +16:49:25 [ 7] [ 10] [0320164920] +16:49:25 [ 11] [ 6] [805248] +16:49:25 [ 12] [ 6] [164920] +16:49:25 [ 13] [ 4] [0320] +16:49:25 [ 15] [ 4] [0320] +16:49:25 [ 18] [ 4] [6011] +16:49:25 [ 22] [ 3] [900] +16:49:25 [ 25] [ 2] [02] +16:49:25 [ 28] [ 9] [D00000000] +16:49:25 [ 32] [ 6] [621354] +16:49:25 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:49:25 [ 37] [ 12] [507903884028] +16:49:25 [ 41] [ 8] [01010400] +16:49:25 [ 42] [ 15] [NATIVE ] +16:49:25 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +16:49:25 [ 49] [ 3] [418] +16:49:25 [ 52] [ 16] [A2454C96897FF213] +16:49:25 ============================================================================ +16:49:25 + + +waiting on router queue for slot.... +16:49:25 Sending to : <4> +16:49:25 ============================================================================ +16:49:27 ============================================================================ +16:49:27 Slot Id : <245> +16:49:27 Transaction Type : REQUEST +16:49:27 Received From : +16:49:27 ============================================================================ +16:49:27 FNo. Len. Field Value +16:49:27 ============================================================================ +16:49:27 [ 1] [ 4] [0200] +16:49:27 [ 2] [ 16] [6688990040019349] +16:49:27 [ 3] [ 6] [011000] +16:49:27 [ 4] [ 12] [000030000000] +16:49:27 [ 7] [ 10] [0320164922] +16:49:27 [ 11] [ 6] [805262] +16:49:27 [ 12] [ 6] [164922] +16:49:27 [ 13] [ 4] [0320] +16:49:27 [ 15] [ 4] [0320] +16:49:27 [ 18] [ 4] [6011] +16:49:27 [ 22] [ 3] [900] +16:49:27 [ 25] [ 2] [02] +16:49:27 [ 28] [ 9] [D00002000] +16:49:27 [ 32] [ 6] [621354] +16:49:27 [ 35] [ 37] [6688990040019349=97101261490417600000] +16:49:27 [ 37] [ 12] [507904645167] +16:49:27 [ 41] [ 8] [17000900] +16:49:27 [ 42] [ 15] [NATIVE ] +16:49:27 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:49:27 [ 49] [ 3] [418] +16:49:27 [ 52] [ 16] [BE0B5FDE79C3BF6F] +16:49:27 ============================================================================ +16:49:27 + + +waiting on router queue for slot.... +16:49:27 Sending to : +16:49:27 ============================================================================ +16:49:27 Sending to : +16:49:27 ============================================================================ +16:49:27 ============================================================================ +16:49:27 Slot Id : <267> +16:49:27 Transaction Type : RESPONSE +16:49:27 Received From : +16:49:27 ============================================================================ +16:49:27 FNo. Len. Field Value +16:49:27 ============================================================================ +16:49:27 [ 1] [ 4] [0210] +16:49:27 [ 2] [ 16] [6688990105312209] +16:49:27 [ 3] [ 6] [301000] +16:49:27 [ 4] [ 12] [000000000000] +16:49:27 [ 11] [ 6] [805248] +16:49:27 [ 12] [ 6] [164920] +16:49:27 [ 15] [ 4] [0320] +16:49:27 [ 18] [ 4] [6011] +16:49:27 [ 32] [ 6] [621354] +16:49:27 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:49:27 [ 37] [ 12] [507903884028] +16:49:27 [ 38] [ 6] [633682] +16:49:27 [ 39] [ 2] [00] +16:49:27 [ 41] [ 8] [01010400] +16:49:27 [ 49] [ 3] [418] +16:49:27 [ 54] [ 20] [1002418C004255960703] +16:49:27 ============================================================================ +16:49:27 Sending to : +16:49:27 ============================================================================ +16:49:27 + + +waiting on router queue for slot.... +16:49:27 ============================================================================ +16:49:27 Slot Id : <245> +16:49:27 Transaction Type : REQUEST +16:49:27 Received From : +16:49:27 ============================================================================ +16:49:27 FNo. Len. Field Value +16:49:27 ============================================================================ +16:49:27 [ 1] [ 4] [0200] +16:49:27 [ 2] [ 16] [6688990040019349] +16:49:27 [ 3] [ 6] [011000] +16:49:27 [ 4] [ 12] [000030000000] +16:49:27 [ 7] [ 10] [0320164922] +16:49:27 [ 11] [ 6] [805262] +16:49:27 [ 12] [ 6] [164922] +16:49:27 [ 13] [ 4] [0320] +16:49:27 [ 15] [ 4] [0320] +16:49:27 [ 18] [ 4] [6011] +16:49:27 [ 22] [ 3] [900] +16:49:27 [ 25] [ 2] [02] +16:49:27 [ 28] [ 9] [D00002000] +16:49:27 [ 32] [ 6] [621354] +16:49:27 [ 35] [ 37] [6688990040019349=97101261490417600000] +16:49:27 [ 37] [ 12] [507904645167] +16:49:27 [ 41] [ 8] [17000900] +16:49:27 [ 42] [ 15] [NATIVE ] +16:49:27 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:49:27 [ 49] [ 3] [418] +16:49:27 [ 52] [ 16] [BE0B5FDE79C3BF6F] +16:49:27 ============================================================================ +16:49:27 + + +waiting on router queue for slot.... +16:49:27 Sending to : +16:49:27 ============================================================================ +16:49:27 ============================================================================ +16:49:27 Slot Id : <245> +16:49:27 Transaction Type : REQUEST +16:49:27 Received From : +16:49:27 ============================================================================ +16:49:27 FNo. Len. Field Value +16:49:27 ============================================================================ +16:49:27 [ 1] [ 4] [0200] +16:49:27 [ 2] [ 16] [6688990040019349] +16:49:27 [ 3] [ 6] [011000] +16:49:27 [ 4] [ 12] [000030000000] +16:49:27 [ 7] [ 10] [0320164922] +16:49:27 [ 11] [ 6] [805262] +16:49:27 [ 12] [ 6] [164922] +16:49:27 [ 13] [ 4] [0320] +16:49:27 [ 15] [ 4] [0320] +16:49:27 [ 18] [ 4] [6011] +16:49:27 [ 22] [ 3] [900] +16:49:27 [ 25] [ 2] [02] +16:49:27 [ 28] [ 9] [D00002000] +16:49:27 [ 32] [ 6] [621354] +16:49:27 [ 35] [ 37] [6688990040019349=97101261490417600000] +16:49:27 [ 37] [ 12] [507904645167] +16:49:27 [ 41] [ 8] [17000900] +16:49:27 [ 42] [ 15] [NATIVE ] +16:49:27 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +16:49:27 [ 49] [ 3] [418] +16:49:27 [ 52] [ 16] [84C4879D31F5D67F] +16:49:27 ============================================================================ +16:49:27 + + +waiting on router queue for slot.... +16:49:27 Sending to : <4> +16:49:27 ============================================================================ +16:49:28 ============================================================================ +16:49:28 Slot Id : <245> +16:49:28 Transaction Type : RESPONSE +16:49:28 Received From : +16:49:28 ============================================================================ +16:49:28 FNo. Len. Field Value +16:49:28 ============================================================================ +16:49:28 [ 1] [ 4] [0210] +16:49:28 [ 2] [ 16] [6688990040019349] +16:49:28 [ 3] [ 6] [011000] +16:49:28 [ 4] [ 12] [000030000000] +16:49:28 [ 11] [ 6] [805262] +16:49:28 [ 12] [ 6] [164922] +16:49:28 [ 15] [ 4] [0320] +16:49:28 [ 18] [ 4] [6011] +16:49:28 [ 32] [ 6] [621354] +16:49:28 [ 35] [ 37] [6688990040019349=97101261490417600000] +16:49:28 [ 37] [ 12] [507904645167] +16:49:28 [ 38] [ 6] [729933] +16:49:28 [ 39] [ 2] [00] +16:49:28 [ 41] [ 8] [17000900] +16:49:28 [ 49] [ 3] [418] +16:49:28 [ 54] [ 20] [1002418C000121522782] +16:49:28 ============================================================================ +16:49:28 Sending to : +16:49:28 ============================================================================ +16:49:28 + + +waiting on router queue for slot.... +16:49:29 ============================================================================ +16:49:29 Slot Id : <294> +16:49:29 Transaction Type : REQUEST +16:49:29 Received From : +16:49:29 ============================================================================ +16:49:29 FNo. Len. Field Value +16:49:29 ============================================================================ +16:49:29 [ 1] [ 4] [0200] +16:49:29 [ 2] [ 16] [1808931800013086] +16:49:29 [ 3] [ 6] [010000] +16:49:29 [ 4] [ 12] [000100000000] +16:49:29 [ 7] [ 10] [0320164924] +16:49:29 [ 11] [ 6] [805272] +16:49:29 [ 12] [ 6] [164924] +16:49:29 [ 13] [ 4] [0320] +16:49:29 [ 15] [ 4] [0320] +16:49:29 [ 18] [ 4] [6011] +16:49:29 [ 22] [ 3] [900] +16:49:29 [ 25] [ 2] [02] +16:49:29 [ 28] [ 9] [D00002000] +16:49:29 [ 32] [ 6] [621354] +16:49:29 [ 35] [ 27] [1808931800013086=1803500007] +16:49:29 [ 37] [ 12] [507904635915] +16:49:29 [ 41] [ 8] [17000800] +16:49:29 [ 42] [ 15] [NATIVE ] +16:49:29 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:49:29 [ 49] [ 3] [418] +16:49:29 [ 52] [ 16] [5038FBB29B9718CD] +16:49:29 ============================================================================ +16:49:29 + + +waiting on router queue for slot.... +16:49:29 Sending to : +16:49:29 ============================================================================ +16:49:29 Sending to : +16:49:29 ============================================================================ +16:49:29 ============================================================================ +16:49:29 Slot Id : <267> +16:49:29 Transaction Type : RESPONSE +16:49:29 Received From : +16:49:29 ============================================================================ +16:49:29 FNo. Len. Field Value +16:49:29 ============================================================================ +16:49:29 [ 1] [ 4] [0210] +16:49:29 [ 2] [ 16] [6688990105312209] +16:49:29 [ 3] [ 6] [301000] +16:49:29 [ 4] [ 12] [000000000000] +16:49:29 [ 11] [ 6] [805248] +16:49:29 [ 12] [ 6] [164920] +16:49:29 [ 15] [ 4] [0320] +16:49:29 [ 18] [ 4] [6011] +16:49:29 [ 32] [ 6] [621354] +16:49:29 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:49:29 [ 37] [ 12] [507903884028] +16:49:29 [ 38] [ 6] [633682] +16:49:29 [ 39] [ 2] [00] +16:49:29 [ 41] [ 8] [01010400] +16:49:29 [ 49] [ 3] [418] +16:49:29 [ 54] [ 20] [1002418C004255960703] +16:49:29 ============================================================================ +16:49:29 Calculate Source COMM Id = 0 +16:49:29 ============================================================================ +16:49:29 + + +waiting on router queue for slot.... +16:49:29 ============================================================================ +16:49:29 Slot Id : <294> +16:49:29 Transaction Type : REQUEST +16:49:29 Received From : +16:49:29 ============================================================================ +16:49:29 FNo. Len. Field Value +16:49:29 ============================================================================ +16:49:29 [ 1] [ 4] [0200] +16:49:29 [ 2] [ 16] [1808931800013086] +16:49:29 [ 3] [ 6] [010000] +16:49:29 [ 4] [ 12] [000100000000] +16:49:29 [ 7] [ 10] [0320164924] +16:49:29 [ 11] [ 6] [805272] +16:49:29 [ 12] [ 6] [164924] +16:49:29 [ 13] [ 4] [0320] +16:49:29 [ 15] [ 4] [0320] +16:49:29 [ 18] [ 4] [6011] +16:49:29 [ 22] [ 3] [900] +16:49:29 [ 25] [ 2] [02] +16:49:29 [ 28] [ 9] [D00002000] +16:49:29 [ 32] [ 6] [621354] +16:49:29 [ 35] [ 27] [1808931800013086=1803500007] +16:49:29 [ 37] [ 12] [507904635915] +16:49:29 [ 41] [ 8] [17000800] +16:49:29 [ 42] [ 15] [NATIVE ] +16:49:29 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:49:29 [ 49] [ 3] [418] +16:49:29 [ 52] [ 16] [5038FBB29B9718CD] +16:49:29 ============================================================================ +16:49:29 + + +waiting on router queue for slot.... +16:49:29 Sending to : +16:49:29 ============================================================================ +16:49:29 ============================================================================ +16:49:29 Slot Id : <294> +16:49:29 Transaction Type : REQUEST +16:49:29 Received From : +16:49:29 ============================================================================ +16:49:29 FNo. Len. Field Value +16:49:29 ============================================================================ +16:49:29 [ 1] [ 4] [0200] +16:49:29 [ 2] [ 16] [1808931800013086] +16:49:29 [ 3] [ 6] [010000] +16:49:29 [ 4] [ 12] [000100000000] +16:49:29 [ 7] [ 10] [0320164924] +16:49:29 [ 11] [ 6] [805272] +16:49:29 [ 12] [ 6] [164924] +16:49:29 [ 13] [ 4] [0320] +16:49:29 [ 15] [ 4] [0320] +16:49:29 [ 18] [ 4] [6011] +16:49:29 [ 22] [ 3] [900] +16:49:29 [ 25] [ 2] [02] +16:49:29 [ 28] [ 9] [D00002000] +16:49:29 [ 32] [ 6] [621354] +16:49:29 [ 35] [ 27] [1808931800013086=1803500007] +16:49:29 [ 37] [ 12] [507904635915] +16:49:29 [ 41] [ 8] [17000800] +16:49:29 [ 42] [ 15] [NATIVE ] +16:49:29 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:49:29 [ 49] [ 3] [418] +16:49:29 [ 52] [ 16] [D14224C62C5F278E] +16:49:29 ============================================================================ +16:49:29 + + +waiting on router queue for slot.... +16:49:29 Sending to : <2> +16:49:29 ============================================================================ +16:49:30 ============================================================================ +16:49:30 Slot Id : <245> +16:49:30 Transaction Type : RESPONSE +16:49:30 Received From : +16:49:30 ============================================================================ +16:49:30 FNo. Len. Field Value +16:49:30 ============================================================================ +16:49:30 [ 1] [ 4] [0210] +16:49:30 [ 2] [ 16] [6688990040019349] +16:49:30 [ 3] [ 6] [011000] +16:49:30 [ 4] [ 12] [000030000000] +16:49:30 [ 11] [ 6] [805262] +16:49:30 [ 12] [ 6] [164922] +16:49:30 [ 15] [ 4] [0320] +16:49:30 [ 18] [ 4] [6011] +16:49:30 [ 32] [ 6] [621354] +16:49:30 [ 35] [ 37] [6688990040019349=97101261490417600000] +16:49:30 [ 37] [ 12] [507904645167] +16:49:30 [ 38] [ 6] [729933] +16:49:30 [ 39] [ 2] [00] +16:49:30 [ 41] [ 8] [17000900] +16:49:30 [ 49] [ 3] [418] +16:49:30 [ 54] [ 20] [1002418C000121522782] +16:49:30 ============================================================================ +16:49:30 Calculate Source COMM Id = 0 +16:49:30 ============================================================================ +16:49:30 + + +waiting on router queue for slot.... +16:49:35 ============================================================================ +16:49:35 Slot Id : <236> +16:49:35 Transaction Type : REQUEST +16:49:35 Received From : +16:49:35 ============================================================================ +16:49:35 FNo. Len. Field Value +16:49:35 ============================================================================ +16:49:35 [ 1] [ 4] [0800] +16:49:35 [ 7] [ 10] [0321000123] +16:49:35 [ 11] [ 6] [170123] +16:49:35 [ 37] [ 12] [57917170123] +16:49:35 [ 70] [ 3] [301] +16:49:35 ============================================================================ +16:49:35 + + +waiting on router queue for slot.... +16:49:35 Sending to : +16:49:35 ============================================================================ +16:49:35 ============================================================================ +16:49:35 Slot Id : <236> +16:49:35 Transaction Type : RESPONSE +16:49:35 Received From : +16:49:35 ============================================================================ +16:49:35 FNo. Len. Field Value +16:49:35 ============================================================================ +16:49:35 [ 1] [ 4] [0810] +16:49:35 [ 7] [ 10] [0321000123] +16:49:35 [ 11] [ 6] [170123] +16:49:35 [ 37] [ 12] [579171701230] +16:49:35 [ 39] [ 2] [00] +16:49:35 [ 70] [ 3] [810] +16:49:35 ============================================================================ +16:49:35 Calculate Source COMM Id = 6 +16:49:35 ============================================================================ +16:49:35 + + +waiting on router queue for slot.... +16:49:36 ============================================================================ +16:49:36 Slot Id : <294> +16:49:36 Transaction Type : RESPONSE +16:49:36 Received From : +16:49:36 ============================================================================ +16:49:36 FNo. Len. Field Value +16:49:36 ============================================================================ +16:49:36 [ 1] [ 4] [0210] +16:49:36 [ 2] [ 16] [1808931800013086] +16:49:36 [ 3] [ 6] [010000] +16:49:36 [ 4] [ 12] [000100000000] +16:49:36 [ 6] [ 12] [000100000000] +16:49:36 [ 7] [ 10] [0320164924] +16:49:36 [ 11] [ 6] [805272] +16:49:36 [ 12] [ 6] [164924] +16:49:36 [ 13] [ 4] [0320] +16:49:36 [ 18] [ 4] [6011] +16:49:36 [ 19] [ 3] [418] +16:49:36 [ 22] [ 3] [021] +16:49:36 [ 32] [ 6] [621354] +16:49:36 [ 35] [ 27] [1808931800013086=1803500007] +16:49:36 [ 37] [ 12] [507904635915] +16:49:36 [ 38] [ 6] [805272] +16:49:36 [ 39] [ 2] [00] +16:49:36 [ 41] [ 8] [17000800] +16:49:36 [ 49] [ 3] [418] +16:49:36 [ 52] [ 16] [D14224C62C5F278E] +16:49:36 [ 54] [ 20] [1001418C000093157100] +16:49:36 ============================================================================ +16:49:36 Sending to : +16:49:36 ============================================================================ +16:49:36 + + +waiting on router queue for slot.... +16:49:37 ============================================================================ +16:49:37 Slot Id : <294> +16:49:37 Transaction Type : RESPONSE +16:49:37 Received From : +16:49:37 ============================================================================ +16:49:37 FNo. Len. Field Value +16:49:37 ============================================================================ +16:49:37 [ 1] [ 4] [0210] +16:49:37 [ 2] [ 16] [1808931800013086] +16:49:37 [ 3] [ 6] [010000] +16:49:37 [ 4] [ 12] [000100000000] +16:49:37 [ 6] [ 12] [000100000000] +16:49:37 [ 7] [ 10] [0320164924] +16:49:37 [ 11] [ 6] [805272] +16:49:37 [ 12] [ 6] [164924] +16:49:37 [ 13] [ 4] [0320] +16:49:37 [ 18] [ 4] [6011] +16:49:37 [ 19] [ 3] [418] +16:49:37 [ 22] [ 3] [021] +16:49:37 [ 32] [ 6] [621354] +16:49:37 [ 35] [ 27] [1808931800013086=1803500007] +16:49:37 [ 37] [ 12] [507904635915] +16:49:37 [ 38] [ 6] [805272] +16:49:37 [ 39] [ 2] [00] +16:49:37 [ 41] [ 8] [17000800] +16:49:37 [ 49] [ 3] [418] +16:49:37 [ 52] [ 16] [D14224C62C5F278E] +16:49:37 [ 54] [ 20] [1001418C000093157100] +16:49:37 ============================================================================ +16:49:37 Calculate Source COMM Id = 0 +16:49:37 ============================================================================ +16:49:37 + + +waiting on router queue for slot.... +16:49:38 ============================================================================ +16:49:38 Slot Id : <303> +16:49:38 Transaction Type : REQUEST +16:49:38 Received From : +16:49:38 ============================================================================ +16:49:38 FNo. Len. Field Value +16:49:38 ============================================================================ +16:49:38 [ 1] [ 4] [0200] +16:49:38 [ 2] [ 16] [6213544001795712] +16:49:38 [ 3] [ 6] [010000] +16:49:38 [ 4] [ 12] [000020000000] +16:49:38 [ 7] [ 10] [0320164728] +16:49:38 [ 11] [ 6] [952404] +16:49:38 [ 12] [ 6] [164728] +16:49:38 [ 13] [ 4] [0320] +16:49:38 [ 15] [ 4] [0320] +16:49:38 [ 18] [ 4] [6011] +16:49:38 [ 19] [ 3] [418] +16:49:38 [ 22] [ 3] [021] +16:49:38 [ 25] [ 2] [01] +16:49:38 [ 28] [ 9] [D00002000] +16:49:38 [ 32] [ 6] [668899] +16:49:38 [ 35] [ 32] [6213544001795712=491212019571437] +16:49:38 [ 37] [ 12] [507902025627] +16:49:38 [ 41] [ 8] [03414002] +16:49:38 [ 42] [ 15] [APT ] +16:49:38 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:49:38 [ 49] [ 3] [418] +16:49:38 [ 52] [ 16] [02CA87E4014C1ED3] +16:49:38 ============================================================================ +16:49:38 + + +waiting on router queue for slot.... +16:49:38 Sending to : +16:49:38 ============================================================================ +16:49:38 Sending to : +16:49:38 ============================================================================ +16:49:38 ============================================================================ +16:49:38 Slot Id : <303> +16:49:38 Transaction Type : REQUEST +16:49:38 Received From : +16:49:38 ============================================================================ +16:49:38 FNo. Len. Field Value +16:49:38 ============================================================================ +16:49:38 [ 1] [ 4] [0200] +16:49:38 [ 2] [ 16] [6213544001795712] +16:49:38 [ 3] [ 6] [010000] +16:49:38 [ 4] [ 12] [000020000000] +16:49:38 [ 7] [ 10] [0320164728] +16:49:38 [ 11] [ 6] [952404] +16:49:38 [ 12] [ 6] [164728] +16:49:38 [ 13] [ 4] [0320] +16:49:38 [ 15] [ 4] [0320] +16:49:38 [ 18] [ 4] [6011] +16:49:38 [ 19] [ 3] [418] +16:49:38 [ 22] [ 3] [021] +16:49:38 [ 25] [ 2] [01] +16:49:38 [ 28] [ 9] [D00002000] +16:49:38 [ 32] [ 6] [668899] +16:49:38 [ 35] [ 32] [6213544001795712=491212019571437] +16:49:38 [ 37] [ 12] [507902025627] +16:49:38 [ 41] [ 8] [03414002] +16:49:38 [ 42] [ 15] [APT ] +16:49:38 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:49:38 [ 49] [ 3] [418] +16:49:38 [ 52] [ 16] [02CA87E4014C1ED3] +16:49:38 ============================================================================ +16:49:38 + + +waiting on router queue for slot.... +16:49:38 Sending to : +16:49:38 ============================================================================ +16:49:38 ============================================================================ +16:49:38 Slot Id : <303> +16:49:38 Transaction Type : REQUEST +16:49:38 Received From : +16:49:38 ============================================================================ +16:49:38 FNo. Len. Field Value +16:49:38 ============================================================================ +16:49:38 [ 1] [ 4] [0200] +16:49:38 [ 2] [ 16] [6213544001795712] +16:49:38 [ 3] [ 6] [010000] +16:49:38 [ 4] [ 12] [000020000000] +16:49:38 [ 7] [ 10] [0320164728] +16:49:38 [ 11] [ 6] [952404] +16:49:38 [ 12] [ 6] [164728] +16:49:38 [ 13] [ 4] [0320] +16:49:38 [ 15] [ 4] [0320] +16:49:38 [ 18] [ 4] [6011] +16:49:38 [ 19] [ 3] [418] +16:49:38 [ 22] [ 3] [021] +16:49:38 [ 25] [ 2] [01] +16:49:38 [ 28] [ 9] [D00002000] +16:49:38 [ 32] [ 6] [668899] +16:49:38 [ 35] [ 32] [6213544001795712=491212019571437] +16:49:38 [ 37] [ 12] [507902025627] +16:49:38 [ 41] [ 8] [03414002] +16:49:38 [ 42] [ 15] [APT ] +16:49:38 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:49:38 [ 49] [ 3] [418] +16:49:38 [ 52] [ 16] [B7B1A6970241C2DB] +16:49:38 ============================================================================ +16:49:38 + + +waiting on router queue for slot.... +16:49:38 Sending to : <0> +16:49:38 ============================================================================ +16:49:39 ============================================================================ +16:49:39 Slot Id : <303> +16:49:39 Transaction Type : RESPONSE +16:49:39 Received From : +16:49:39 ============================================================================ +16:49:39 FNo. Len. Field Value +16:49:39 ============================================================================ +16:49:39 [ 1] [ 4] [0210] +16:49:39 [ 2] [ 16] [6213544001795712] +16:49:39 [ 3] [ 6] [010000] +16:49:39 [ 4] [ 12] [000020000000] +16:49:39 [ 7] [ 10] [0320164728] +16:49:39 [ 11] [ 6] [952404] +16:49:39 [ 12] [ 6] [164728] +16:49:39 [ 13] [ 4] [0320] +16:49:39 [ 15] [ 4] [0320] +16:49:39 [ 18] [ 4] [6011] +16:49:39 [ 19] [ 3] [418] +16:49:39 [ 32] [ 6] [668899] +16:49:39 [ 35] [ 32] [6213544001795712=491212019571437] +16:49:39 [ 37] [ 12] [507902025627] +16:49:39 [ 38] [ 6] [607464] +16:49:39 [ 39] [ 2] [00] +16:49:39 [ 41] [ 8] [03414002] +16:49:39 [ 49] [ 3] [418] +16:49:39 [ 54] [ 40] [0001418C0000429579380002418C000042957938] +16:49:39 ============================================================================ +16:49:39 Sending to : +16:49:39 ============================================================================ +16:49:39 + + +waiting on router queue for slot.... +16:49:39 ============================================================================ +16:49:39 Slot Id : <217> +16:49:39 Transaction Type : REQUEST +16:49:39 Received From : +16:49:39 ============================================================================ +16:49:39 FNo. Len. Field Value +16:49:39 ============================================================================ +16:49:39 [ 1] [ 4] [0200] +16:49:39 [ 2] [ 16] [6213545000937916] +16:49:39 [ 3] [ 6] [011000] +16:49:39 [ 4] [ 12] [000009000000] +16:49:39 [ 7] [ 10] [0320094846] +16:49:39 [ 11] [ 6] [270630] +16:49:39 [ 12] [ 6] [164846] +16:49:39 [ 13] [ 4] [0320] +16:49:39 [ 14] [ 4] [4912] +16:49:39 [ 15] [ 4] [0320] +16:49:39 [ 18] [ 4] [6011] +16:49:39 [ 19] [ 3] [418] +16:49:39 [ 22] [ 3] [021] +16:49:39 [ 25] [ 2] [01] +16:49:39 [ 28] [ 9] [D00002000] +16:49:39 [ 32] [ 6] [180893] +16:49:39 [ 35] [ 32] [6213545000937916=491212013791854] +16:49:39 [ 37] [ 12] [507909270630] +16:49:39 [ 41] [ 8] [0543VLSC] +16:49:39 [ 42] [ 15] [999999 ] +16:49:39 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +16:49:39 [ 49] [ 3] [418] +16:49:39 [ 52] [ 16] [7B9D70ACA3535CED] +16:49:39 ============================================================================ +16:49:39 + + +waiting on router queue for slot.... +16:49:39 Sending to : +16:49:39 ============================================================================ +16:49:39 Sending to : +16:49:39 ============================================================================ +16:49:39 ============================================================================ +16:49:39 Slot Id : <217> +16:49:39 Transaction Type : REQUEST +16:49:39 Received From : +16:49:39 ============================================================================ +16:49:39 FNo. Len. Field Value +16:49:39 ============================================================================ +16:49:39 [ 1] [ 4] [0200] +16:49:39 [ 2] [ 16] [6213545000937916] +16:49:39 [ 3] [ 6] [011000] +16:49:39 [ 4] [ 12] [000009000000] +16:49:39 [ 7] [ 10] [0320094846] +16:49:39 [ 11] [ 6] [270630] +16:49:39 [ 12] [ 6] [164846] +16:49:39 [ 13] [ 4] [0320] +16:49:39 [ 14] [ 4] [4912] +16:49:39 [ 15] [ 4] [0320] +16:49:39 [ 18] [ 4] [6011] +16:49:39 [ 19] [ 3] [418] +16:49:39 [ 22] [ 3] [021] +16:49:39 [ 25] [ 2] [01] +16:49:39 [ 28] [ 9] [D00002000] +16:49:39 [ 32] [ 6] [180893] +16:49:39 [ 35] [ 32] [6213545000937916=491212013791854] +16:49:39 [ 37] [ 12] [507909270630] +16:49:39 [ 41] [ 8] [0543VLSC] +16:49:39 [ 42] [ 15] [999999 ] +16:49:39 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +16:49:39 [ 49] [ 3] [418] +16:49:39 [ 52] [ 16] [7B9D70ACA3535CED] +16:49:39 ============================================================================ +16:49:39 + + +waiting on router queue for slot.... +16:49:39 Sending to : +16:49:39 ============================================================================ +16:49:39 ============================================================================ +16:49:39 Slot Id : <217> +16:49:39 Transaction Type : REQUEST +16:49:39 Received From : +16:49:39 ============================================================================ +16:49:39 FNo. Len. Field Value +16:49:39 ============================================================================ +16:49:39 [ 1] [ 4] [0200] +16:49:39 [ 2] [ 16] [6213545000937916] +16:49:39 [ 3] [ 6] [011000] +16:49:39 [ 4] [ 12] [000009000000] +16:49:39 [ 7] [ 10] [0320094846] +16:49:39 [ 11] [ 6] [270630] +16:49:39 [ 12] [ 6] [164846] +16:49:39 [ 13] [ 4] [0320] +16:49:39 [ 14] [ 4] [4912] +16:49:39 [ 15] [ 4] [0320] +16:49:39 [ 18] [ 4] [6011] +16:49:39 [ 19] [ 3] [418] +16:49:39 [ 22] [ 3] [021] +16:49:39 [ 25] [ 2] [01] +16:49:39 [ 28] [ 9] [D00002000] +16:49:39 [ 32] [ 6] [180893] +16:49:39 [ 35] [ 32] [6213545000937916=491212013791854] +16:49:39 [ 37] [ 12] [507909270630] +16:49:39 [ 41] [ 8] [0543VLSC] +16:49:39 [ 42] [ 15] [999999 ] +16:49:39 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +16:49:39 [ 49] [ 3] [418] +16:49:39 [ 52] [ 16] [8637E869A69712B4] +16:49:39 ============================================================================ +16:49:39 + + +waiting on router queue for slot.... +16:49:39 Sending to : <0> +16:49:39 ============================================================================ +16:49:40 ============================================================================ +16:49:40 Slot Id : <303> +16:49:40 Transaction Type : RESPONSE +16:49:40 Received From : +16:49:40 ============================================================================ +16:49:40 FNo. Len. Field Value +16:49:40 ============================================================================ +16:49:40 [ 1] [ 4] [0210] +16:49:40 [ 2] [ 16] [6213544001795712] +16:49:40 [ 3] [ 6] [010000] +16:49:40 [ 4] [ 12] [000020000000] +16:49:40 [ 7] [ 10] [0320164728] +16:49:40 [ 11] [ 6] [952404] +16:49:40 [ 12] [ 6] [164728] +16:49:40 [ 13] [ 4] [0320] +16:49:40 [ 15] [ 4] [0320] +16:49:40 [ 18] [ 4] [6011] +16:49:40 [ 19] [ 3] [418] +16:49:40 [ 32] [ 6] [668899] +16:49:40 [ 35] [ 32] [6213544001795712=491212019571437] +16:49:40 [ 37] [ 12] [507902025627] +16:49:40 [ 38] [ 6] [607464] +16:49:40 [ 39] [ 2] [00] +16:49:40 [ 41] [ 8] [03414002] +16:49:40 [ 49] [ 3] [418] +16:49:40 [ 54] [ 40] [0001418C0000429579380002418C000042957938] +16:49:40 ============================================================================ +16:49:40 Calculate Source COMM Id = 4 +16:49:40 ============================================================================ +16:49:40 + + +waiting on router queue for slot.... +16:49:41 ============================================================================ +16:49:41 Slot Id : <217> +16:49:41 Transaction Type : RESPONSE +16:49:41 Received From : +16:49:41 ============================================================================ +16:49:41 FNo. Len. Field Value +16:49:41 ============================================================================ +16:49:41 [ 1] [ 4] [0210] +16:49:41 [ 2] [ 16] [6213545000937916] +16:49:41 [ 3] [ 6] [011000] +16:49:41 [ 4] [ 12] [000009000000] +16:49:41 [ 7] [ 10] [0320094846] +16:49:41 [ 11] [ 6] [270630] +16:49:41 [ 12] [ 6] [164846] +16:49:41 [ 13] [ 4] [0320] +16:49:41 [ 15] [ 4] [0320] +16:49:41 [ 18] [ 4] [6011] +16:49:41 [ 19] [ 3] [418] +16:49:41 [ 32] [ 6] [180893] +16:49:41 [ 35] [ 32] [6213545000937916=491212013791854] +16:49:41 [ 37] [ 12] [507909270630] +16:49:41 [ 38] [ 6] [270630] +16:49:41 [ 39] [ 2] [51] +16:49:41 [ 41] [ 8] [0543VLSC] +16:49:41 [ 49] [ 3] [418] +16:49:41 [ 54] [ 40] [1001418C0000126831951002418C000012683195] +16:49:41 ============================================================================ +16:49:41 Sending to : +16:49:41 ============================================================================ +16:49:41 + + +waiting on router queue for slot.... +16:49:42 ============================================================================ +16:49:42 Slot Id : <217> +16:49:42 Transaction Type : RESPONSE +16:49:42 Received From : +16:49:42 ============================================================================ +16:49:42 FNo. Len. Field Value +16:49:42 ============================================================================ +16:49:42 [ 1] [ 4] [0210] +16:49:42 [ 2] [ 16] [6213545000937916] +16:49:42 [ 3] [ 6] [011000] +16:49:42 [ 4] [ 12] [000009000000] +16:49:42 [ 7] [ 10] [0320094846] +16:49:42 [ 11] [ 6] [270630] +16:49:42 [ 12] [ 6] [164846] +16:49:42 [ 13] [ 4] [0320] +16:49:42 [ 15] [ 4] [0320] +16:49:42 [ 18] [ 4] [6011] +16:49:42 [ 19] [ 3] [418] +16:49:42 [ 32] [ 6] [180893] +16:49:42 [ 35] [ 32] [6213545000937916=491212013791854] +16:49:42 [ 37] [ 12] [507909270630] +16:49:42 [ 38] [ 6] [270630] +16:49:42 [ 39] [ 2] [51] +16:49:42 [ 41] [ 8] [0543VLSC] +16:49:42 [ 49] [ 3] [418] +16:49:42 [ 54] [ 40] [1001418C0000126831951002418C000012683195] +16:49:42 ============================================================================ +16:49:42 Calculate Source COMM Id = 2 +16:49:42 ============================================================================ +16:49:42 + + +waiting on router queue for slot.... +16:49:42 ============================================================================ +16:49:42 Slot Id : <298> +16:49:42 Transaction Type : REQUEST +16:49:42 Received From : +16:49:42 ============================================================================ +16:49:42 FNo. Len. Field Value +16:49:42 ============================================================================ +16:49:42 [ 1] [ 4] [0200] +16:49:42 [ 2] [ 16] [6688990102793104] +16:49:42 [ 3] [ 6] [011000] +16:49:42 [ 4] [ 12] [000010000000] +16:49:42 [ 7] [ 10] [0320164937] +16:49:42 [ 11] [ 6] [805341] +16:49:42 [ 12] [ 6] [164937] +16:49:42 [ 13] [ 4] [0320] +16:49:42 [ 15] [ 4] [0320] +16:49:42 [ 18] [ 4] [6011] +16:49:42 [ 22] [ 3] [900] +16:49:42 [ 25] [ 2] [02] +16:49:42 [ 28] [ 9] [D00002000] +16:49:42 [ 32] [ 6] [621354] +16:49:42 [ 35] [ 37] [6688990102793104=42101231310460600000] +16:49:42 [ 37] [ 12] [507905344241] +16:49:42 [ 41] [ 8] [15001200] +16:49:42 [ 42] [ 15] [NATIVE ] +16:49:42 [ 43] [ 40] [Borkham Lek20 Bolikhamxay LAO] +16:49:42 [ 49] [ 3] [418] +16:49:42 [ 52] [ 16] [7798128B7B868D5F] +16:49:42 ============================================================================ +16:49:42 + + +waiting on router queue for slot.... +16:49:42 Sending to : +16:49:42 ============================================================================ +16:49:42 Sending to : +16:49:42 ============================================================================ +16:49:42 ============================================================================ +16:49:42 Slot Id : <298> +16:49:42 Transaction Type : REQUEST +16:49:42 Received From : +16:49:42 ============================================================================ +16:49:42 FNo. Len. Field Value +16:49:42 ============================================================================ +16:49:42 [ 1] [ 4] [0200] +16:49:42 [ 2] [ 16] [6688990102793104] +16:49:42 [ 3] [ 6] [011000] +16:49:42 [ 4] [ 12] [000010000000] +16:49:42 [ 7] [ 10] [0320164937] +16:49:42 [ 11] [ 6] [805341] +16:49:42 [ 12] [ 6] [164937] +16:49:42 [ 13] [ 4] [0320] +16:49:42 [ 15] [ 4] [0320] +16:49:42 [ 18] [ 4] [6011] +16:49:42 [ 22] [ 3] [900] +16:49:42 [ 25] [ 2] [02] +16:49:42 [ 28] [ 9] [D00002000] +16:49:42 [ 32] [ 6] [621354] +16:49:42 [ 35] [ 37] [6688990102793104=42101231310460600000] +16:49:42 [ 37] [ 12] [507905344241] +16:49:42 [ 41] [ 8] [15001200] +16:49:42 [ 42] [ 15] [NATIVE ] +16:49:42 [ 43] [ 40] [Borkham Lek20 Bolikhamxay LAO] +16:49:42 [ 49] [ 3] [418] +16:49:42 [ 52] [ 16] [7798128B7B868D5F] +16:49:42 ============================================================================ +16:49:42 + + +waiting on router queue for slot.... +16:49:42 Sending to : +16:49:42 ============================================================================ +16:49:42 ============================================================================ +16:49:42 Slot Id : <298> +16:49:42 Transaction Type : REQUEST +16:49:42 Received From : +16:49:42 ============================================================================ +16:49:42 FNo. Len. Field Value +16:49:42 ============================================================================ +16:49:42 [ 1] [ 4] [0200] +16:49:42 [ 2] [ 16] [6688990102793104] +16:49:42 [ 3] [ 6] [011000] +16:49:42 [ 4] [ 12] [000010000000] +16:49:42 [ 7] [ 10] [0320164937] +16:49:42 [ 11] [ 6] [805341] +16:49:42 [ 12] [ 6] [164937] +16:49:42 [ 13] [ 4] [0320] +16:49:42 [ 15] [ 4] [0320] +16:49:42 [ 18] [ 4] [6011] +16:49:42 [ 22] [ 3] [900] +16:49:42 [ 25] [ 2] [02] +16:49:42 [ 28] [ 9] [D00002000] +16:49:42 [ 32] [ 6] [621354] +16:49:42 [ 35] [ 37] [6688990102793104=42101231310460600000] +16:49:42 [ 37] [ 12] [507905344241] +16:49:42 [ 41] [ 8] [15001200] +16:49:42 [ 42] [ 15] [NATIVE ] +16:49:42 [ 43] [ 40] [Borkham Lek20 Bolikhamxay LAO] +16:49:42 [ 49] [ 3] [418] +16:49:42 [ 52] [ 16] [D9077B560DE0E38D] +16:49:42 ============================================================================ +16:49:42 + + +waiting on router queue for slot.... +16:49:42 Sending to : <4> +16:49:42 ============================================================================ +16:49:44 ============================================================================ +16:49:44 Slot Id : <298> +16:49:44 Transaction Type : RESPONSE +16:49:44 Received From : +16:49:44 ============================================================================ +16:49:44 FNo. Len. Field Value +16:49:44 ============================================================================ +16:49:44 [ 1] [ 4] [0210] +16:49:44 [ 2] [ 16] [6688990102793104] +16:49:44 [ 3] [ 6] [011000] +16:49:44 [ 4] [ 12] [000010000000] +16:49:44 [ 11] [ 6] [805341] +16:49:44 [ 12] [ 6] [164937] +16:49:44 [ 15] [ 4] [0320] +16:49:44 [ 18] [ 4] [6011] +16:49:44 [ 32] [ 6] [621354] +16:49:44 [ 35] [ 37] [6688990102793104=42101231310460600000] +16:49:44 [ 37] [ 12] [507905344241] +16:49:44 [ 38] [ 6] [748621] +16:49:44 [ 39] [ 2] [00] +16:49:44 [ 41] [ 8] [15001200] +16:49:44 [ 49] [ 3] [418] +16:49:44 [ 54] [ 20] [1002418C000132655470] +16:49:44 ============================================================================ +16:49:44 Sending to : +16:49:44 ============================================================================ +16:49:44 + + +waiting on router queue for slot.... +16:49:45 ============================================================================ +16:49:45 Slot Id : <298> +16:49:45 Transaction Type : RESPONSE +16:49:45 Received From : +16:49:45 ============================================================================ +16:49:45 FNo. Len. Field Value +16:49:45 ============================================================================ +16:49:45 [ 1] [ 4] [0210] +16:49:45 [ 2] [ 16] [6688990102793104] +16:49:45 [ 3] [ 6] [011000] +16:49:45 [ 4] [ 12] [000010000000] +16:49:45 [ 11] [ 6] [805341] +16:49:45 [ 12] [ 6] [164937] +16:49:45 [ 15] [ 4] [0320] +16:49:45 [ 18] [ 4] [6011] +16:49:45 [ 32] [ 6] [621354] +16:49:45 [ 35] [ 37] [6688990102793104=42101231310460600000] +16:49:45 [ 37] [ 12] [507905344241] +16:49:45 [ 38] [ 6] [748621] +16:49:45 [ 39] [ 2] [00] +16:49:45 [ 41] [ 8] [15001200] +16:49:45 [ 49] [ 3] [418] +16:49:45 [ 54] [ 20] [1002418C000132655470] +16:49:45 ============================================================================ +16:49:45 Calculate Source COMM Id = 0 +16:49:45 ============================================================================ +16:49:45 + + +waiting on router queue for slot.... +16:49:55 ============================================================================ +16:49:55 Slot Id : <293> +16:49:55 Transaction Type : REQUEST +16:49:55 Received From : +16:49:55 ============================================================================ +16:49:55 FNo. Len. Field Value +16:49:55 ============================================================================ +16:49:55 [ 1] [ 4] [0800] +16:49:55 [ 7] [ 10] [0320094902] +16:49:55 [ 11] [ 6] [157313] +16:49:55 [ 70] [ 3] [301] +16:49:55 ============================================================================ +16:49:55 + + +waiting on router queue for slot.... +16:49:55 Sending to : +16:49:55 ============================================================================ +16:49:55 ============================================================================ +16:49:55 Slot Id : <293> +16:49:55 Transaction Type : RESPONSE +16:49:55 Received From : +16:49:55 ============================================================================ +16:49:55 FNo. Len. Field Value +16:49:55 ============================================================================ +16:49:55 [ 1] [ 4] [0810] +16:49:55 [ 7] [ 10] [0320094902] +16:49:55 [ 11] [ 6] [157313] +16:49:55 [ 39] [ 2] [00] +16:49:55 [ 70] [ 3] [301] +16:49:55 ============================================================================ +16:49:55 Calculate Source COMM Id = 2 +16:49:55 ============================================================================ +16:49:55 + + +waiting on router queue for slot.... +16:49:55 ============================================================================ +16:49:55 Slot Id : <300> +16:49:55 Transaction Type : REQUEST +16:49:55 Received From : +16:49:55 ============================================================================ +16:49:55 FNo. Len. Field Value +16:49:55 ============================================================================ +16:49:55 [ 1] [ 4] [0800] +16:49:55 [ 7] [ 10] [0320095742] +16:49:55 [ 11] [ 6] [005152] +16:49:55 [ 37] [ 12] [57916005152] +16:49:55 [ 70] [ 3] [301] +16:49:55 ============================================================================ +16:49:55 + + +waiting on router queue for slot.... +16:49:55 Sending to : +16:49:55 ============================================================================ +16:49:55 ============================================================================ +16:49:55 Slot Id : <300> +16:49:55 Transaction Type : RESPONSE +16:49:55 Received From : +16:49:55 ============================================================================ +16:49:55 FNo. Len. Field Value +16:49:55 ============================================================================ +16:49:55 [ 1] [ 4] [0810] +16:49:55 [ 7] [ 10] [0320095742] +16:49:55 [ 11] [ 6] [005152] +16:49:55 [ 37] [ 12] [579160051520] +16:49:55 [ 39] [ 2] [00] +16:49:55 [ 70] [ 3] [810] +16:49:55 ============================================================================ +16:49:55 Calculate Source COMM Id = 1 +16:49:55 ============================================================================ +16:49:55 + + +waiting on router queue for slot.... +16:50:05 ============================================================================ +16:50:05 Slot Id : <299> +16:50:05 Transaction Type : REQUEST +16:50:05 Received From : +16:50:05 ============================================================================ +16:50:05 FNo. Len. Field Value +16:50:05 ============================================================================ +16:50:05 [ 1] [ 4] [0200] +16:50:05 [ 2] [ 16] [6213544002179445] +16:50:05 [ 3] [ 6] [010000] +16:50:05 [ 4] [ 12] [000054000000] +16:50:05 [ 7] [ 10] [0320165752] +16:50:05 [ 11] [ 6] [240463] +16:50:05 [ 12] [ 6] [165752] +16:50:05 [ 13] [ 4] [0320] +16:50:05 [ 14] [ 4] [4912] +16:50:05 [ 15] [ 4] [0320] +16:50:05 [ 18] [ 4] [6011] +16:50:05 [ 22] [ 3] [900] +16:50:05 [ 25] [ 2] [02] +16:50:05 [ 28] [ 9] [D00002000] +16:50:05 [ 32] [ 6] [220699] +16:50:05 [ 35] [ 32] [6213544002179445=491212017944800] +16:50:05 [ 37] [ 12] [507900360217] +16:50:05 [ 41] [ 8] [05000300] +16:50:05 [ 42] [ 15] [APTRA ] +16:50:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:50:05 [ 49] [ 3] [418] +16:50:05 [ 52] [ 16] [EC01DF39BB7395E0] +16:50:05 ============================================================================ +16:50:05 + + +waiting on router queue for slot.... +16:50:05 Sending to : +16:50:05 ============================================================================ +16:50:05 Sending to : +16:50:05 ============================================================================ +16:50:05 ============================================================================ +16:50:05 Slot Id : <299> +16:50:05 Transaction Type : REQUEST +16:50:05 Received From : +16:50:05 ============================================================================ +16:50:05 FNo. Len. Field Value +16:50:05 ============================================================================ +16:50:05 [ 1] [ 4] [0200] +16:50:05 [ 2] [ 16] [6213544002179445] +16:50:05 [ 3] [ 6] [010000] +16:50:05 [ 4] [ 12] [000054000000] +16:50:05 [ 7] [ 10] [0320165752] +16:50:05 [ 11] [ 6] [240463] +16:50:05 [ 12] [ 6] [165752] +16:50:05 [ 13] [ 4] [0320] +16:50:05 [ 14] [ 4] [4912] +16:50:05 [ 15] [ 4] [0320] +16:50:05 [ 18] [ 4] [6011] +16:50:05 [ 22] [ 3] [900] +16:50:05 [ 25] [ 2] [02] +16:50:05 [ 28] [ 9] [D00002000] +16:50:05 [ 32] [ 6] [220699] +16:50:05 [ 35] [ 32] [6213544002179445=491212017944800] +16:50:05 [ 37] [ 12] [507900360217] +16:50:05 [ 41] [ 8] [05000300] +16:50:05 [ 42] [ 15] [APTRA ] +16:50:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:50:05 [ 49] [ 3] [418] +16:50:05 [ 52] [ 16] [EC01DF39BB7395E0] +16:50:05 ============================================================================ +16:50:05 + + +waiting on router queue for slot.... +16:50:05 Sending to : +16:50:05 ============================================================================ +16:50:05 ============================================================================ +16:50:05 Slot Id : <299> +16:50:05 Transaction Type : REQUEST +16:50:05 Received From : +16:50:05 ============================================================================ +16:50:05 FNo. Len. Field Value +16:50:05 ============================================================================ +16:50:05 [ 1] [ 4] [0200] +16:50:05 [ 2] [ 16] [6213544002179445] +16:50:05 [ 3] [ 6] [010000] +16:50:05 [ 4] [ 12] [000054000000] +16:50:05 [ 7] [ 10] [0320165752] +16:50:05 [ 11] [ 6] [240463] +16:50:05 [ 12] [ 6] [165752] +16:50:05 [ 13] [ 4] [0320] +16:50:05 [ 14] [ 4] [4912] +16:50:05 [ 15] [ 4] [0320] +16:50:05 [ 18] [ 4] [6011] +16:50:05 [ 22] [ 3] [900] +16:50:05 [ 25] [ 2] [02] +16:50:05 [ 28] [ 9] [D00002000] +16:50:05 [ 32] [ 6] [220699] +16:50:05 [ 35] [ 32] [6213544002179445=491212017944800] +16:50:05 [ 37] [ 12] [507900360217] +16:50:05 [ 41] [ 8] [05000300] +16:50:05 [ 42] [ 15] [APTRA ] +16:50:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:50:05 [ 49] [ 3] [418] +16:50:05 [ 52] [ 16] [DDD821A4BBC5EBE5] +16:50:05 ============================================================================ +16:50:05 + + +waiting on router queue for slot.... +16:50:05 Sending to : <0> +16:50:05 ============================================================================ +16:50:06 ============================================================================ +16:50:06 Slot Id : <299> +16:50:06 Transaction Type : RESPONSE +16:50:06 Received From : +16:50:06 ============================================================================ +16:50:06 FNo. Len. Field Value +16:50:06 ============================================================================ +16:50:06 [ 1] [ 4] [0210] +16:50:06 [ 2] [ 16] [6213544002179445] +16:50:06 [ 3] [ 6] [010000] +16:50:06 [ 4] [ 12] [000054000000] +16:50:06 [ 7] [ 10] [0320165752] +16:50:06 [ 11] [ 6] [240463] +16:50:06 [ 12] [ 6] [165752] +16:50:06 [ 13] [ 4] [0320] +16:50:06 [ 15] [ 4] [0320] +16:50:06 [ 18] [ 4] [6011] +16:50:06 [ 32] [ 6] [220699] +16:50:06 [ 35] [ 32] [6213544002179445=491212017944800] +16:50:06 [ 37] [ 12] [507900360217] +16:50:06 [ 38] [ 6] [856771] +16:50:06 [ 39] [ 2] [00] +16:50:06 [ 41] [ 8] [05000300] +16:50:06 [ 49] [ 3] [418] +16:50:06 [ 54] [ 40] [0001418C0000082582880002418C000008258288] +16:50:06 ============================================================================ +16:50:06 Sending to : +16:50:06 ============================================================================ +16:50:06 + + +waiting on router queue for slot.... +16:50:08 ============================================================================ +16:50:08 Slot Id : <299> +16:50:08 Transaction Type : RESPONSE +16:50:08 Received From : +16:50:08 ============================================================================ +16:50:08 FNo. Len. Field Value +16:50:08 ============================================================================ +16:50:08 [ 1] [ 4] [0210] +16:50:08 [ 2] [ 16] [6213544002179445] +16:50:08 [ 3] [ 6] [010000] +16:50:08 [ 4] [ 12] [000054000000] +16:50:08 [ 7] [ 10] [0320165752] +16:50:08 [ 11] [ 6] [240463] +16:50:08 [ 12] [ 6] [165752] +16:50:08 [ 13] [ 4] [0320] +16:50:08 [ 15] [ 4] [0320] +16:50:08 [ 18] [ 4] [6011] +16:50:08 [ 32] [ 6] [220699] +16:50:08 [ 35] [ 32] [6213544002179445=491212017944800] +16:50:08 [ 37] [ 12] [507900360217] +16:50:08 [ 38] [ 6] [856771] +16:50:08 [ 39] [ 2] [00] +16:50:08 [ 41] [ 8] [05000300] +16:50:08 [ 49] [ 3] [418] +16:50:08 [ 54] [ 40] [0001418C0000082582880002418C000008258288] +16:50:08 ============================================================================ +16:50:08 Calculate Source COMM Id = 1 +16:50:08 ============================================================================ +16:50:08 + + +waiting on router queue for slot.... +16:50:10 ============================================================================ +16:50:10 Slot Id : <257> +16:50:10 Transaction Type : REQUEST +16:50:10 Received From : +16:50:10 ============================================================================ +16:50:10 FNo. Len. Field Value +16:50:10 ============================================================================ +16:50:10 [ 1] [ 4] [0800] +16:50:10 [ 7] [ 10] [0320094917] +16:50:10 [ 11] [ 6] [157314] +16:50:10 [ 70] [ 3] [301] +16:50:10 ============================================================================ +16:50:10 + + +waiting on router queue for slot.... +16:50:10 Sending to : +16:50:10 ============================================================================ +16:50:10 ============================================================================ +16:50:10 Slot Id : <257> +16:50:10 Transaction Type : RESPONSE +16:50:10 Received From : +16:50:10 ============================================================================ +16:50:10 FNo. Len. Field Value +16:50:10 ============================================================================ +16:50:10 [ 1] [ 4] [0810] +16:50:10 [ 7] [ 10] [0320094917] +16:50:10 [ 11] [ 6] [157314] +16:50:10 [ 39] [ 2] [00] +16:50:10 [ 70] [ 3] [301] +16:50:10 ============================================================================ +16:50:10 Calculate Source COMM Id = 2 +16:50:10 ============================================================================ +16:50:10 + + +waiting on router queue for slot.... +16:50:10 ============================================================================ +16:50:10 Slot Id : <278> +16:50:10 Transaction Type : REQUEST +16:50:10 Received From : +16:50:10 ============================================================================ +16:50:10 FNo. Len. Field Value +16:50:10 ============================================================================ +16:50:10 [ 1] [ 4] [0200] +16:50:10 [ 2] [ 16] [6213541000677008] +16:50:10 [ 3] [ 6] [011000] +16:50:10 [ 4] [ 12] [000070000000] +16:50:10 [ 7] [ 10] [0320094916] +16:50:10 [ 11] [ 6] [270633] +16:50:10 [ 12] [ 6] [164916] +16:50:10 [ 13] [ 4] [0320] +16:50:10 [ 14] [ 4] [4912] +16:50:10 [ 15] [ 4] [0320] +16:50:10 [ 18] [ 4] [6011] +16:50:10 [ 19] [ 3] [418] +16:50:10 [ 22] [ 3] [021] +16:50:10 [ 25] [ 2] [01] +16:50:10 [ 28] [ 9] [D00002000] +16:50:10 [ 32] [ 6] [180893] +16:50:10 [ 35] [ 32] [6213541000677008=491212017700391] +16:50:10 [ 37] [ 12] [507909270633] +16:50:10 [ 41] [ 8] [0102SAPA] +16:50:10 [ 42] [ 15] [999999 ] +16:50:10 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +16:50:10 [ 49] [ 3] [418] +16:50:10 [ 52] [ 16] [D55C2CF779B2DD6E] +16:50:10 ============================================================================ +16:50:10 + + +waiting on router queue for slot.... +16:50:10 Sending to : +16:50:10 ============================================================================ +16:50:10 Sending to : +16:50:10 ============================================================================ +16:50:11 ============================================================================ +16:50:11 Slot Id : <278> +16:50:11 Transaction Type : REQUEST +16:50:11 Received From : +16:50:11 ============================================================================ +16:50:11 FNo. Len. Field Value +16:50:11 ============================================================================ +16:50:11 [ 1] [ 4] [0200] +16:50:11 [ 2] [ 16] [6213541000677008] +16:50:11 [ 3] [ 6] [011000] +16:50:11 [ 4] [ 12] [000070000000] +16:50:11 [ 7] [ 10] [0320094916] +16:50:11 [ 11] [ 6] [270633] +16:50:11 [ 12] [ 6] [164916] +16:50:11 [ 13] [ 4] [0320] +16:50:11 [ 14] [ 4] [4912] +16:50:11 [ 15] [ 4] [0320] +16:50:11 [ 18] [ 4] [6011] +16:50:11 [ 19] [ 3] [418] +16:50:11 [ 22] [ 3] [021] +16:50:11 [ 25] [ 2] [01] +16:50:11 [ 28] [ 9] [D00002000] +16:50:11 [ 32] [ 6] [180893] +16:50:11 [ 35] [ 32] [6213541000677008=491212017700391] +16:50:11 [ 37] [ 12] [507909270633] +16:50:11 [ 41] [ 8] [0102SAPA] +16:50:11 [ 42] [ 15] [999999 ] +16:50:11 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +16:50:11 [ 49] [ 3] [418] +16:50:11 [ 52] [ 16] [D55C2CF779B2DD6E] +16:50:11 ============================================================================ +16:50:11 + + +waiting on router queue for slot.... +16:50:11 Sending to : +16:50:11 ============================================================================ +16:50:11 ============================================================================ +16:50:11 Slot Id : <278> +16:50:11 Transaction Type : REQUEST +16:50:11 Received From : +16:50:11 ============================================================================ +16:50:11 FNo. Len. Field Value +16:50:11 ============================================================================ +16:50:11 [ 1] [ 4] [0200] +16:50:11 [ 2] [ 16] [6213541000677008] +16:50:11 [ 3] [ 6] [011000] +16:50:11 [ 4] [ 12] [000070000000] +16:50:11 [ 7] [ 10] [0320094916] +16:50:11 [ 11] [ 6] [270633] +16:50:11 [ 12] [ 6] [164916] +16:50:11 [ 13] [ 4] [0320] +16:50:11 [ 14] [ 4] [4912] +16:50:11 [ 15] [ 4] [0320] +16:50:11 [ 18] [ 4] [6011] +16:50:11 [ 19] [ 3] [418] +16:50:11 [ 22] [ 3] [021] +16:50:11 [ 25] [ 2] [01] +16:50:11 [ 28] [ 9] [D00002000] +16:50:11 [ 32] [ 6] [180893] +16:50:11 [ 35] [ 32] [6213541000677008=491212017700391] +16:50:11 [ 37] [ 12] [507909270633] +16:50:11 [ 41] [ 8] [0102SAPA] +16:50:11 [ 42] [ 15] [999999 ] +16:50:11 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +16:50:11 [ 49] [ 3] [418] +16:50:11 [ 52] [ 16] [F36F9F286565E5B3] +16:50:11 ============================================================================ +16:50:11 + + +waiting on router queue for slot.... +16:50:11 Sending to : <0> +16:50:11 ============================================================================ +16:50:11 ============================================================================ +16:50:11 Slot Id : <281> +16:50:11 Transaction Type : REQUEST +16:50:11 Received From : +16:50:11 ============================================================================ +16:50:11 FNo. Len. Field Value +16:50:11 ============================================================================ +16:50:11 [ 1] [ 4] [0200] +16:50:11 [ 2] [ 16] [6688990105312209] +16:50:11 [ 3] [ 6] [011000] +16:50:11 [ 4] [ 12] [000100000000] +16:50:11 [ 7] [ 10] [0320165006] +16:50:11 [ 11] [ 6] [805470] +16:50:11 [ 12] [ 6] [165006] +16:50:11 [ 13] [ 4] [0320] +16:50:11 [ 15] [ 4] [0320] +16:50:11 [ 18] [ 4] [6011] +16:50:11 [ 22] [ 3] [900] +16:50:11 [ 25] [ 2] [02] +16:50:11 [ 28] [ 9] [D00002000] +16:50:11 [ 32] [ 6] [621354] +16:50:11 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:50:11 [ 37] [ 12] [507903884030] +16:50:11 [ 41] [ 8] [01010400] +16:50:11 [ 42] [ 15] [NATIVE ] +16:50:11 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +16:50:11 [ 49] [ 3] [418] +16:50:11 [ 52] [ 16] [D44E4CB8566A4AF1] +16:50:11 ============================================================================ +16:50:11 + + +waiting on router queue for slot.... +16:50:11 Sending to : +16:50:11 ============================================================================ +16:50:11 Sending to : +16:50:11 ============================================================================ +16:50:11 ============================================================================ +16:50:11 Slot Id : <281> +16:50:11 Transaction Type : REQUEST +16:50:11 Received From : +16:50:11 ============================================================================ +16:50:11 FNo. Len. Field Value +16:50:11 ============================================================================ +16:50:11 [ 1] [ 4] [0200] +16:50:11 [ 2] [ 16] [6688990105312209] +16:50:11 [ 3] [ 6] [011000] +16:50:11 [ 4] [ 12] [000100000000] +16:50:11 [ 7] [ 10] [0320165006] +16:50:11 [ 11] [ 6] [805470] +16:50:11 [ 12] [ 6] [165006] +16:50:11 [ 13] [ 4] [0320] +16:50:11 [ 15] [ 4] [0320] +16:50:11 [ 18] [ 4] [6011] +16:50:11 [ 22] [ 3] [900] +16:50:11 [ 25] [ 2] [02] +16:50:11 [ 28] [ 9] [D00002000] +16:50:11 [ 32] [ 6] [621354] +16:50:11 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:50:11 [ 37] [ 12] [507903884030] +16:50:11 [ 41] [ 8] [01010400] +16:50:11 [ 42] [ 15] [NATIVE ] +16:50:11 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +16:50:11 [ 49] [ 3] [418] +16:50:11 [ 52] [ 16] [D44E4CB8566A4AF1] +16:50:11 ============================================================================ +16:50:11 + + +waiting on router queue for slot.... +16:50:11 Sending to : +16:50:11 ============================================================================ +16:50:11 ============================================================================ +16:50:11 Slot Id : <281> +16:50:11 Transaction Type : REQUEST +16:50:11 Received From : +16:50:11 ============================================================================ +16:50:11 FNo. Len. Field Value +16:50:11 ============================================================================ +16:50:11 [ 1] [ 4] [0200] +16:50:11 [ 2] [ 16] [6688990105312209] +16:50:11 [ 3] [ 6] [011000] +16:50:11 [ 4] [ 12] [000100000000] +16:50:11 [ 7] [ 10] [0320165006] +16:50:11 [ 11] [ 6] [805470] +16:50:11 [ 12] [ 6] [165006] +16:50:11 [ 13] [ 4] [0320] +16:50:11 [ 15] [ 4] [0320] +16:50:11 [ 18] [ 4] [6011] +16:50:11 [ 22] [ 3] [900] +16:50:11 [ 25] [ 2] [02] +16:50:11 [ 28] [ 9] [D00002000] +16:50:11 [ 32] [ 6] [621354] +16:50:11 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:50:11 [ 37] [ 12] [507903884030] +16:50:11 [ 41] [ 8] [01010400] +16:50:11 [ 42] [ 15] [NATIVE ] +16:50:11 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +16:50:11 [ 49] [ 3] [418] +16:50:11 [ 52] [ 16] [A2454C96897FF213] +16:50:11 ============================================================================ +16:50:11 + + +waiting on router queue for slot.... +16:50:11 Sending to : <4> +16:50:11 ============================================================================ +16:50:11 ============================================================================ +16:50:11 Slot Id : <278> +16:50:11 Transaction Type : RESPONSE +16:50:11 Received From : +16:50:11 ============================================================================ +16:50:11 FNo. Len. Field Value +16:50:11 ============================================================================ +16:50:11 [ 1] [ 4] [0210] +16:50:11 [ 2] [ 16] [6213541000677008] +16:50:11 [ 3] [ 6] [011000] +16:50:11 [ 4] [ 12] [000070000000] +16:50:11 [ 7] [ 10] [0320094916] +16:50:11 [ 11] [ 6] [270633] +16:50:11 [ 12] [ 6] [164916] +16:50:11 [ 13] [ 4] [0320] +16:50:11 [ 15] [ 4] [0320] +16:50:11 [ 18] [ 4] [6011] +16:50:11 [ 19] [ 3] [418] +16:50:11 [ 32] [ 6] [180893] +16:50:11 [ 35] [ 32] [6213541000677008=491212017700391] +16:50:11 [ 37] [ 12] [507909270633] +16:50:11 [ 38] [ 6] [330764] +16:50:11 [ 39] [ 2] [00] +16:50:11 [ 41] [ 8] [0102SAPA] +16:50:11 [ 49] [ 3] [418] +16:50:11 [ 54] [ 40] [1001418C0000191239901002418C000019123990] +16:50:11 ============================================================================ +16:50:11 Sending to : +16:50:11 ============================================================================ +16:50:11 + + +waiting on router queue for slot.... +16:50:12 ============================================================================ +16:50:12 Slot Id : <281> +16:50:12 Transaction Type : RESPONSE +16:50:12 Received From : +16:50:12 ============================================================================ +16:50:12 FNo. Len. Field Value +16:50:12 ============================================================================ +16:50:12 [ 1] [ 4] [0210] +16:50:12 [ 2] [ 16] [6688990105312209] +16:50:12 [ 3] [ 6] [011000] +16:50:12 [ 4] [ 12] [000100000000] +16:50:12 [ 11] [ 6] [805470] +16:50:12 [ 12] [ 6] [165006] +16:50:12 [ 15] [ 4] [0320] +16:50:12 [ 18] [ 4] [6011] +16:50:12 [ 32] [ 6] [621354] +16:50:12 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:50:12 [ 37] [ 12] [507903884030] +16:50:12 [ 38] [ 6] [594080] +16:50:12 [ 39] [ 2] [00] +16:50:12 [ 41] [ 8] [01010400] +16:50:12 [ 49] [ 3] [418] +16:50:12 [ 54] [ 20] [1002418C004155760703] +16:50:12 ============================================================================ +16:50:12 Sending to : +16:50:12 ============================================================================ +16:50:12 + + +waiting on router queue for slot.... +16:50:12 ============================================================================ +16:50:12 Slot Id : <295> +16:50:12 Transaction Type : REQUEST +16:50:12 Received From : +16:50:12 ============================================================================ +16:50:12 FNo. Len. Field Value +16:50:12 ============================================================================ +16:50:12 [ 1] [ 4] [0200] +16:50:12 [ 2] [ 16] [6213544002226303] +16:50:12 [ 3] [ 6] [301000] +16:50:12 [ 4] [ 12] [000000000000] +16:50:12 [ 7] [ 10] [0320165033] +16:50:12 [ 11] [ 6] [209012] +16:50:12 [ 12] [ 6] [164539] +16:50:12 [ 13] [ 4] [0320] +16:50:12 [ 14] [ 4] [4912] +16:50:12 [ 15] [ 4] [0320] +16:50:12 [ 18] [ 4] [6011] +16:50:12 [ 19] [ 3] [418] +16:50:12 [ 22] [ 3] [021] +16:50:12 [ 25] [ 2] [01] +16:50:12 [ 28] [ 9] [D00000000] +16:50:12 [ 32] [ 6] [198901] +16:50:12 [ 35] [ 32] [6213544002226303=491212012630439] +16:50:12 [ 37] [ 12] [507916209012] +16:50:12 [ 41] [ 8] [19529001] +16:50:12 [ 42] [ 15] [000000041952901] +16:50:12 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:50:12 [ 49] [ 3] [418] +16:50:12 [ 52] [ 16] [3ABA7CD25DD9DDAB] +16:50:12 ============================================================================ +16:50:12 + + +waiting on router queue for slot.... +16:50:12 Sending to : +16:50:12 ============================================================================ +16:50:12 Sending to : +16:50:12 ============================================================================ +16:50:13 ============================================================================ +16:50:13 Slot Id : <278> +16:50:13 Transaction Type : RESPONSE +16:50:13 Received From : +16:50:13 ============================================================================ +16:50:13 FNo. Len. Field Value +16:50:13 ============================================================================ +16:50:13 [ 1] [ 4] [0210] +16:50:13 [ 2] [ 16] [6213541000677008] +16:50:13 [ 3] [ 6] [011000] +16:50:13 [ 4] [ 12] [000070000000] +16:50:13 [ 7] [ 10] [0320094916] +16:50:13 [ 11] [ 6] [270633] +16:50:13 [ 12] [ 6] [164916] +16:50:13 [ 13] [ 4] [0320] +16:50:13 [ 15] [ 4] [0320] +16:50:13 [ 18] [ 4] [6011] +16:50:13 [ 19] [ 3] [418] +16:50:13 [ 32] [ 6] [180893] +16:50:13 [ 35] [ 32] [6213541000677008=491212017700391] +16:50:13 [ 37] [ 12] [507909270633] +16:50:13 [ 38] [ 6] [330764] +16:50:13 [ 39] [ 2] [00] +16:50:13 [ 41] [ 8] [0102SAPA] +16:50:13 [ 49] [ 3] [418] +16:50:13 [ 54] [ 40] [1001418C0000191239901002418C000019123990] +16:50:13 ============================================================================ +16:50:13 Calculate Source COMM Id = 2 +16:50:13 ============================================================================ +16:50:13 + + +waiting on router queue for slot.... +16:50:13 ============================================================================ +16:50:13 Slot Id : <295> +16:50:13 Transaction Type : REQUEST +16:50:13 Received From : +16:50:13 ============================================================================ +16:50:13 FNo. Len. Field Value +16:50:13 ============================================================================ +16:50:13 [ 1] [ 4] [0200] +16:50:13 [ 2] [ 16] [6213544002226303] +16:50:13 [ 3] [ 6] [301000] +16:50:13 [ 4] [ 12] [000000000000] +16:50:13 [ 7] [ 10] [0320165033] +16:50:13 [ 11] [ 6] [209012] +16:50:13 [ 12] [ 6] [164539] +16:50:13 [ 13] [ 4] [0320] +16:50:13 [ 14] [ 4] [4912] +16:50:13 [ 15] [ 4] [0320] +16:50:13 [ 18] [ 4] [6011] +16:50:13 [ 19] [ 3] [418] +16:50:13 [ 22] [ 3] [021] +16:50:13 [ 25] [ 2] [01] +16:50:13 [ 28] [ 9] [D00000000] +16:50:13 [ 32] [ 6] [198901] +16:50:13 [ 35] [ 32] [6213544002226303=491212012630439] +16:50:13 [ 37] [ 12] [507916209012] +16:50:13 [ 41] [ 8] [19529001] +16:50:13 [ 42] [ 15] [000000041952901] +16:50:13 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:50:13 [ 49] [ 3] [418] +16:50:13 [ 52] [ 16] [3ABA7CD25DD9DDAB] +16:50:13 ============================================================================ +16:50:13 + + +waiting on router queue for slot.... +16:50:13 Sending to : +16:50:13 ============================================================================ +16:50:13 ============================================================================ +16:50:13 Slot Id : <295> +16:50:13 Transaction Type : REQUEST +16:50:13 Received From : +16:50:13 ============================================================================ +16:50:13 FNo. Len. Field Value +16:50:13 ============================================================================ +16:50:13 [ 1] [ 4] [0200] +16:50:13 [ 2] [ 16] [6213544002226303] +16:50:13 [ 3] [ 6] [301000] +16:50:13 [ 4] [ 12] [000000000000] +16:50:13 [ 7] [ 10] [0320165033] +16:50:13 [ 11] [ 6] [209012] +16:50:13 [ 12] [ 6] [164539] +16:50:13 [ 13] [ 4] [0320] +16:50:13 [ 14] [ 4] [4912] +16:50:13 [ 15] [ 4] [0320] +16:50:13 [ 18] [ 4] [6011] +16:50:13 [ 19] [ 3] [418] +16:50:13 [ 22] [ 3] [021] +16:50:13 [ 25] [ 2] [01] +16:50:13 [ 28] [ 9] [D00000000] +16:50:13 [ 32] [ 6] [198901] +16:50:13 [ 35] [ 32] [6213544002226303=491212012630439] +16:50:13 [ 37] [ 12] [507916209012] +16:50:13 [ 41] [ 8] [19529001] +16:50:13 [ 42] [ 15] [000000041952901] +16:50:13 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:50:13 [ 49] [ 3] [418] +16:50:13 [ 52] [ 16] [57E7E102AD59B49A] +16:50:13 ============================================================================ +16:50:13 + + +waiting on router queue for slot.... +16:50:13 Sending to : <0> +16:50:13 ============================================================================ +16:50:13 ============================================================================ +16:50:13 Slot Id : <308> +16:50:13 Transaction Type : REQUEST +16:50:13 Received From : +16:50:13 ============================================================================ +16:50:13 FNo. Len. Field Value +16:50:13 ============================================================================ +16:50:13 [ 1] [ 4] [0800] +16:50:13 [ 2] [ 5] [02531] +16:50:13 [ 3] [ 6] [579168] +16:50:13 [ 7] [ 10] [0320095013] +16:50:13 [ 11] [ 6] [807389] +16:50:13 [ 15] [ 10] [0320095013] +16:50:13 [ 37] [ 11] [57916807389] +16:50:13 [ 70] [ 3] [001] +16:50:13 ============================================================================ +16:50:13 + + +waiting on router queue for slot.... +16:50:13 ============================================================================ +16:50:13 Slot Id : <308> +16:50:13 Transaction Type : RESPONSE +16:50:13 Received From : +16:50:13 ============================================================================ +16:50:13 FNo. Len. Field Value +16:50:13 ============================================================================ +16:50:13 [ 1] [ 4] [0810] +16:50:13 [ 7] [ 10] [0320095013] +16:50:13 [ 11] [ 6] [807389] +16:50:13 [ 15] [ 4] [0320] +16:50:13 [ 37] [ 12] [57916807389] +16:50:13 [ 39] [ 2] [00] +16:50:13 [ 70] [ 3] [001] +16:50:13 ============================================================================ +16:50:13 Sending to : +16:50:13 ============================================================================ +16:50:13 + + +waiting on router queue for slot.... +16:50:13 ============================================================================ +16:50:13 Slot Id : <295> +16:50:13 Transaction Type : RESPONSE +16:50:13 Received From : +16:50:13 ============================================================================ +16:50:13 FNo. Len. Field Value +16:50:13 ============================================================================ +16:50:13 [ 1] [ 4] [0210] +16:50:13 [ 2] [ 16] [6213544002226303] +16:50:13 [ 3] [ 6] [301000] +16:50:13 [ 4] [ 12] [000000000000] +16:50:13 [ 7] [ 10] [0320165033] +16:50:13 [ 11] [ 6] [209012] +16:50:13 [ 12] [ 6] [164539] +16:50:13 [ 13] [ 4] [0320] +16:50:13 [ 15] [ 4] [0320] +16:50:13 [ 18] [ 4] [6011] +16:50:13 [ 19] [ 3] [418] +16:50:13 [ 32] [ 6] [198901] +16:50:13 [ 35] [ 32] [6213544002226303=491212012630439] +16:50:13 [ 37] [ 12] [507916209012] +16:50:13 [ 38] [ 6] [304458] +16:50:13 [ 39] [ 2] [00] +16:50:13 [ 41] [ 8] [19529001] +16:50:13 [ 49] [ 3] [418] +16:50:13 [ 54] [ 40] [1001418C0000610606481002418C000061060648] +16:50:13 ============================================================================ +16:50:13 Sending to : +16:50:13 ============================================================================ +16:50:13 + + +waiting on router queue for slot.... +16:50:14 ============================================================================ +16:50:14 Slot Id : <281> +16:50:14 Transaction Type : RESPONSE +16:50:14 Received From : +16:50:14 ============================================================================ +16:50:14 FNo. Len. Field Value +16:50:14 ============================================================================ +16:50:14 [ 1] [ 4] [0210] +16:50:14 [ 2] [ 16] [6688990105312209] +16:50:14 [ 3] [ 6] [011000] +16:50:14 [ 4] [ 12] [000100000000] +16:50:14 [ 11] [ 6] [805470] +16:50:14 [ 12] [ 6] [165006] +16:50:14 [ 15] [ 4] [0320] +16:50:14 [ 18] [ 4] [6011] +16:50:14 [ 32] [ 6] [621354] +16:50:14 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:50:14 [ 37] [ 12] [507903884030] +16:50:14 [ 38] [ 6] [594080] +16:50:14 [ 39] [ 2] [00] +16:50:14 [ 41] [ 8] [01010400] +16:50:14 [ 49] [ 3] [418] +16:50:14 [ 54] [ 20] [1002418C004155760703] +16:50:14 ============================================================================ +16:50:14 Calculate Source COMM Id = 0 +16:50:14 ============================================================================ +16:50:14 + + +waiting on router queue for slot.... +16:50:16 ============================================================================ +16:50:16 Slot Id : <295> +16:50:16 Transaction Type : RESPONSE +16:50:16 Received From : +16:50:16 ============================================================================ +16:50:16 FNo. Len. Field Value +16:50:16 ============================================================================ +16:50:16 [ 1] [ 4] [0210] +16:50:16 [ 2] [ 16] [6213544002226303] +16:50:16 [ 3] [ 6] [301000] +16:50:16 [ 4] [ 12] [000000000000] +16:50:16 [ 7] [ 10] [0320165033] +16:50:16 [ 11] [ 6] [209012] +16:50:16 [ 12] [ 6] [164539] +16:50:16 [ 13] [ 4] [0320] +16:50:16 [ 15] [ 4] [0320] +16:50:16 [ 18] [ 4] [6011] +16:50:16 [ 19] [ 3] [418] +16:50:16 [ 32] [ 6] [198901] +16:50:16 [ 35] [ 32] [6213544002226303=491212012630439] +16:50:16 [ 37] [ 12] [507916209012] +16:50:16 [ 38] [ 6] [304458] +16:50:16 [ 39] [ 2] [00] +16:50:16 [ 41] [ 8] [19529001] +16:50:16 [ 49] [ 3] [418] +16:50:16 [ 54] [ 40] [1001418C0000610606481002418C000061060648] +16:50:16 ============================================================================ +16:50:16 Calculate Source COMM Id = 5 +16:50:16 ============================================================================ +16:50:16 + + +waiting on router queue for slot.... +16:50:18 ============================================================================ +16:50:18 Slot Id : <296> +16:50:18 Transaction Type : REQUEST +16:50:18 Received From : +16:50:18 ============================================================================ +16:50:18 FNo. Len. Field Value +16:50:18 ============================================================================ +16:50:18 [ 1] [ 4] [0420] +16:50:18 [ 2] [ 16] [6688990102793104] +16:50:18 [ 3] [ 6] [011000] +16:50:18 [ 4] [ 12] [000010000000] +16:50:18 [ 7] [ 10] [0320164937] +16:50:18 [ 11] [ 6] [805341] +16:50:18 [ 12] [ 6] [164937] +16:50:18 [ 13] [ 4] [0320] +16:50:18 [ 15] [ 4] [0320] +16:50:18 [ 18] [ 4] [6011] +16:50:18 [ 22] [ 3] [900] +16:50:18 [ 25] [ 2] [02] +16:50:18 [ 28] [ 9] [C00002000] +16:50:18 [ 32] [ 6] [621354] +16:50:18 [ 35] [ 37] [6688990102793104=42101231310460600000] +16:50:18 [ 37] [ 12] [507905344241] +16:50:18 [ 39] [ 2] [00] +16:50:18 [ 41] [ 8] [15001200] +16:50:18 [ 42] [ 15] [NATIVE ] +16:50:18 [ 43] [ 40] [Borkham Lek20 Bolikhamxay LAO] +16:50:18 [ 49] [ 3] [418] +16:50:18 [ 90] [ 42] [020080534103201649370000062135400000000000] +16:50:18 ============================================================================ +16:50:18 + + +waiting on router queue for slot.... +16:50:18 Sending to : +16:50:18 ============================================================================ +16:50:18 ============================================================================ +16:50:18 Slot Id : <286> +16:50:18 Transaction Type : REQUEST +16:50:18 Received From : +16:50:18 ============================================================================ +16:50:18 FNo. Len. Field Value +16:50:18 ============================================================================ +16:50:18 [ 1] [ 4] [0200] +16:50:18 [ 2] [ 16] [6213541000252612] +16:50:18 [ 3] [ 6] [301000] +16:50:18 [ 4] [ 12] [000000000000] +16:50:18 [ 7] [ 10] [0320164808] +16:50:18 [ 11] [ 6] [952429] +16:50:18 [ 12] [ 6] [164808] +16:50:18 [ 13] [ 4] [0320] +16:50:18 [ 15] [ 4] [0320] +16:50:18 [ 18] [ 4] [6011] +16:50:18 [ 19] [ 3] [418] +16:50:18 [ 22] [ 3] [021] +16:50:18 [ 25] [ 2] [01] +16:50:18 [ 28] [ 9] [D00000000] +16:50:18 [ 32] [ 6] [668899] +16:50:18 [ 35] [ 32] [6213541000252612=491212015261160] +16:50:18 [ 37] [ 12] [507902151084] +16:50:18 [ 41] [ 8] [03020025] +16:50:18 [ 42] [ 15] [APT ] +16:50:18 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +16:50:18 [ 49] [ 3] [418] +16:50:18 [ 52] [ 16] [13A0AB60CEC2012F] +16:50:18 ============================================================================ +16:50:18 + + +waiting on router queue for slot.... +16:50:18 Sending to : +16:50:18 ============================================================================ +16:50:18 Sending to : +16:50:18 ============================================================================ +16:50:19 ============================================================================ +16:50:19 Slot Id : <286> +16:50:19 Transaction Type : REQUEST +16:50:19 Received From : +16:50:19 ============================================================================ +16:50:19 FNo. Len. Field Value +16:50:19 ============================================================================ +16:50:19 [ 1] [ 4] [0200] +16:50:19 [ 2] [ 16] [6213541000252612] +16:50:19 [ 3] [ 6] [301000] +16:50:19 [ 4] [ 12] [000000000000] +16:50:19 [ 7] [ 10] [0320164808] +16:50:19 [ 11] [ 6] [952429] +16:50:19 [ 12] [ 6] [164808] +16:50:19 [ 13] [ 4] [0320] +16:50:19 [ 15] [ 4] [0320] +16:50:19 [ 18] [ 4] [6011] +16:50:19 [ 19] [ 3] [418] +16:50:19 [ 22] [ 3] [021] +16:50:19 [ 25] [ 2] [01] +16:50:19 [ 28] [ 9] [D00000000] +16:50:19 [ 32] [ 6] [668899] +16:50:19 [ 35] [ 32] [6213541000252612=491212015261160] +16:50:19 [ 37] [ 12] [507902151084] +16:50:19 [ 41] [ 8] [03020025] +16:50:19 [ 42] [ 15] [APT ] +16:50:19 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +16:50:19 [ 49] [ 3] [418] +16:50:19 [ 52] [ 16] [13A0AB60CEC2012F] +16:50:19 ============================================================================ +16:50:19 + + +waiting on router queue for slot.... +16:50:19 Sending to : +16:50:19 ============================================================================ +16:50:19 ============================================================================ +16:50:19 Slot Id : <286> +16:50:19 Transaction Type : REQUEST +16:50:19 Received From : +16:50:19 ============================================================================ +16:50:19 FNo. Len. Field Value +16:50:19 ============================================================================ +16:50:19 [ 1] [ 4] [0200] +16:50:19 [ 2] [ 16] [6213541000252612] +16:50:19 [ 3] [ 6] [301000] +16:50:19 [ 4] [ 12] [000000000000] +16:50:19 [ 7] [ 10] [0320164808] +16:50:19 [ 11] [ 6] [952429] +16:50:19 [ 12] [ 6] [164808] +16:50:19 [ 13] [ 4] [0320] +16:50:19 [ 15] [ 4] [0320] +16:50:19 [ 18] [ 4] [6011] +16:50:19 [ 19] [ 3] [418] +16:50:19 [ 22] [ 3] [021] +16:50:19 [ 25] [ 2] [01] +16:50:19 [ 28] [ 9] [D00000000] +16:50:19 [ 32] [ 6] [668899] +16:50:19 [ 35] [ 32] [6213541000252612=491212015261160] +16:50:19 [ 37] [ 12] [507902151084] +16:50:19 [ 41] [ 8] [03020025] +16:50:19 [ 42] [ 15] [APT ] +16:50:19 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +16:50:19 [ 49] [ 3] [418] +16:50:19 [ 52] [ 16] [00757D9888B820E9] +16:50:19 ============================================================================ +16:50:19 + + +waiting on router queue for slot.... +16:50:19 Sending to : <0> +16:50:19 ============================================================================ +16:50:19 ============================================================================ +16:50:19 Slot Id : <286> +16:50:19 Transaction Type : RESPONSE +16:50:19 Received From : +16:50:19 ============================================================================ +16:50:19 FNo. Len. Field Value +16:50:19 ============================================================================ +16:50:19 [ 1] [ 4] [0210] +16:50:19 [ 2] [ 16] [6213541000252612] +16:50:19 [ 3] [ 6] [301000] +16:50:19 [ 4] [ 12] [000000000000] +16:50:19 [ 7] [ 10] [0320164808] +16:50:19 [ 11] [ 6] [952429] +16:50:19 [ 12] [ 6] [164808] +16:50:19 [ 13] [ 4] [0320] +16:50:19 [ 15] [ 4] [0320] +16:50:19 [ 18] [ 4] [6011] +16:50:19 [ 19] [ 3] [418] +16:50:19 [ 32] [ 6] [668899] +16:50:19 [ 35] [ 32] [6213541000252612=491212015261160] +16:50:19 [ 37] [ 12] [507902151084] +16:50:19 [ 38] [ 6] [305971] +16:50:19 [ 39] [ 2] [00] +16:50:19 [ 41] [ 8] [03020025] +16:50:19 [ 49] [ 3] [418] +16:50:19 [ 54] [ 40] [1001418C0008234398051002418C000823439805] +16:50:19 ============================================================================ +16:50:19 Sending to : +16:50:19 ============================================================================ +16:50:19 + + +waiting on router queue for slot.... +16:50:22 ============================================================================ +16:50:22 Slot Id : <296> +16:50:22 Transaction Type : RESPONSE +16:50:22 Received From : +16:50:22 ============================================================================ +16:50:22 FNo. Len. Field Value +16:50:22 ============================================================================ +16:50:22 [ 1] [ 4] [0430] +16:50:22 [ 2] [ 16] [6688990102793104] +16:50:22 [ 3] [ 6] [011000] +16:50:22 [ 4] [ 12] [000010000000] +16:50:22 [ 7] [ 10] [0320164937] +16:50:22 [ 11] [ 6] [805341] +16:50:22 [ 12] [ 6] [164937] +16:50:22 [ 13] [ 4] [0320] +16:50:22 [ 15] [ 4] [0320] +16:50:22 [ 18] [ 4] [6011] +16:50:22 [ 22] [ 3] [900] +16:50:22 [ 25] [ 2] [02] +16:50:22 [ 28] [ 9] [C00002000] +16:50:22 [ 32] [ 6] [621354] +16:50:22 [ 35] [ 37] [6688990102793104=42101231310460600000] +16:50:22 [ 37] [ 12] [507905344241] +16:50:22 [ 39] [ 2] [00] +16:50:22 [ 41] [ 8] [15001200] +16:50:22 [ 42] [ 15] [NATIVE ] +16:50:22 [ 43] [ 40] [Borkham Lek20 Bolikhamxay LAO] +16:50:22 [ 49] [ 3] [418] +16:50:22 [ 90] [ 42] [020080534103201649370000062135400000000000] +16:50:22 ============================================================================ +16:50:22 Calculate Source COMM Id = 0 +16:50:22 ============================================================================ +16:50:22 + + +waiting on router queue for slot.... +16:50:23 ============================================================================ +16:50:23 Slot Id : <286> +16:50:23 Transaction Type : RESPONSE +16:50:23 Received From : +16:50:23 ============================================================================ +16:50:23 FNo. Len. Field Value +16:50:23 ============================================================================ +16:50:23 [ 1] [ 4] [0210] +16:50:23 [ 2] [ 16] [6213541000252612] +16:50:23 [ 3] [ 6] [301000] +16:50:23 [ 4] [ 12] [000000000000] +16:50:23 [ 7] [ 10] [0320164808] +16:50:23 [ 11] [ 6] [952429] +16:50:23 [ 12] [ 6] [164808] +16:50:23 [ 13] [ 4] [0320] +16:50:23 [ 15] [ 4] [0320] +16:50:23 [ 18] [ 4] [6011] +16:50:23 [ 19] [ 3] [418] +16:50:23 [ 32] [ 6] [668899] +16:50:23 [ 35] [ 32] [6213541000252612=491212015261160] +16:50:23 [ 37] [ 12] [507902151084] +16:50:23 [ 38] [ 6] [305971] +16:50:23 [ 39] [ 2] [00] +16:50:23 [ 41] [ 8] [03020025] +16:50:23 [ 49] [ 3] [418] +16:50:23 [ 54] [ 40] [1001418C0008234398051002418C000823439805] +16:50:23 ============================================================================ +16:50:23 Calculate Source COMM Id = 4 +16:50:23 ============================================================================ +16:50:23 + + +waiting on router queue for slot.... +16:50:26 ============================================================================ +16:50:26 Slot Id : <283> +16:50:26 Transaction Type : REQUEST +16:50:26 Received From : +16:50:26 ============================================================================ +16:50:26 FNo. Len. Field Value +16:50:26 ============================================================================ +16:50:26 [ 1] [ 4] [0800] +16:50:26 [ 7] [ 10] [0320094933] +16:50:26 [ 11] [ 6] [157315] +16:50:26 [ 70] [ 3] [301] +16:50:26 ============================================================================ +16:50:26 + + +waiting on router queue for slot.... +16:50:26 Sending to : +16:50:26 ============================================================================ +16:50:26 ============================================================================ +16:50:26 Slot Id : <283> +16:50:26 Transaction Type : RESPONSE +16:50:26 Received From : +16:50:26 ============================================================================ +16:50:26 FNo. Len. Field Value +16:50:26 ============================================================================ +16:50:26 [ 1] [ 4] [0810] +16:50:26 [ 7] [ 10] [0320094933] +16:50:26 [ 11] [ 6] [157315] +16:50:26 [ 39] [ 2] [00] +16:50:26 [ 70] [ 3] [301] +16:50:26 ============================================================================ +16:50:26 Calculate Source COMM Id = 2 +16:50:26 ============================================================================ +16:50:26 + + +waiting on router queue for slot.... +16:50:33 ============================================================================ +16:50:33 Slot Id : <316> +16:50:33 Transaction Type : REQUEST +16:50:33 Received From : +16:50:33 ============================================================================ +16:50:33 FNo. Len. Field Value +16:50:33 ============================================================================ +16:50:33 [ 1] [ 4] [0200] +16:50:33 [ 2] [ 16] [1808931800013086] +16:50:33 [ 3] [ 6] [010000] +16:50:33 [ 4] [ 12] [000100000000] +16:50:33 [ 7] [ 10] [0320165028] +16:50:33 [ 11] [ 6] [805584] +16:50:33 [ 12] [ 6] [165028] +16:50:33 [ 13] [ 4] [0320] +16:50:33 [ 15] [ 4] [0320] +16:50:33 [ 18] [ 4] [6011] +16:50:33 [ 22] [ 3] [900] +16:50:33 [ 25] [ 2] [02] +16:50:33 [ 28] [ 9] [D00002000] +16:50:33 [ 32] [ 6] [621354] +16:50:33 [ 35] [ 27] [1808931800013086=1803500007] +16:50:33 [ 37] [ 12] [507904635917] +16:50:33 [ 41] [ 8] [17000800] +16:50:33 [ 42] [ 15] [NATIVE ] +16:50:33 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:50:33 [ 49] [ 3] [418] +16:50:33 [ 52] [ 16] [5038FBB29B9718CD] +16:50:33 ============================================================================ +16:50:33 + + +waiting on router queue for slot.... +16:50:33 Sending to : +16:50:33 ============================================================================ +16:50:33 Sending to : +16:50:33 ============================================================================ +16:50:33 ============================================================================ +16:50:33 Slot Id : <316> +16:50:33 Transaction Type : REQUEST +16:50:33 Received From : +16:50:33 ============================================================================ +16:50:33 FNo. Len. Field Value +16:50:33 ============================================================================ +16:50:33 [ 1] [ 4] [0200] +16:50:33 [ 2] [ 16] [1808931800013086] +16:50:33 [ 3] [ 6] [010000] +16:50:33 [ 4] [ 12] [000100000000] +16:50:33 [ 7] [ 10] [0320165028] +16:50:33 [ 11] [ 6] [805584] +16:50:33 [ 12] [ 6] [165028] +16:50:33 [ 13] [ 4] [0320] +16:50:33 [ 15] [ 4] [0320] +16:50:33 [ 18] [ 4] [6011] +16:50:33 [ 22] [ 3] [900] +16:50:33 [ 25] [ 2] [02] +16:50:33 [ 28] [ 9] [D00002000] +16:50:33 [ 32] [ 6] [621354] +16:50:33 [ 35] [ 27] [1808931800013086=1803500007] +16:50:33 [ 37] [ 12] [507904635917] +16:50:33 [ 41] [ 8] [17000800] +16:50:33 [ 42] [ 15] [NATIVE ] +16:50:33 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:50:33 [ 49] [ 3] [418] +16:50:33 [ 52] [ 16] [5038FBB29B9718CD] +16:50:33 ============================================================================ +16:50:33 + + +waiting on router queue for slot.... +16:50:33 Sending to : +16:50:33 ============================================================================ +16:50:34 ============================================================================ +16:50:34 Slot Id : <316> +16:50:34 Transaction Type : REQUEST +16:50:34 Received From : +16:50:34 ============================================================================ +16:50:34 FNo. Len. Field Value +16:50:34 ============================================================================ +16:50:34 [ 1] [ 4] [0200] +16:50:34 [ 2] [ 16] [1808931800013086] +16:50:34 [ 3] [ 6] [010000] +16:50:34 [ 4] [ 12] [000100000000] +16:50:34 [ 7] [ 10] [0320165028] +16:50:34 [ 11] [ 6] [805584] +16:50:34 [ 12] [ 6] [165028] +16:50:34 [ 13] [ 4] [0320] +16:50:34 [ 15] [ 4] [0320] +16:50:34 [ 18] [ 4] [6011] +16:50:34 [ 22] [ 3] [900] +16:50:34 [ 25] [ 2] [02] +16:50:34 [ 28] [ 9] [D00002000] +16:50:34 [ 32] [ 6] [621354] +16:50:34 [ 35] [ 27] [1808931800013086=1803500007] +16:50:34 [ 37] [ 12] [507904635917] +16:50:34 [ 41] [ 8] [17000800] +16:50:34 [ 42] [ 15] [NATIVE ] +16:50:34 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:50:34 [ 49] [ 3] [418] +16:50:34 [ 52] [ 16] [D14224C62C5F278E] +16:50:34 ============================================================================ +16:50:34 + + +waiting on router queue for slot.... +16:50:34 Sending to : <2> +16:50:34 ============================================================================ +16:50:37 ============================================================================ +16:50:37 Slot Id : <311> +16:50:37 Transaction Type : REQUEST +16:50:37 Received From : +16:50:37 ============================================================================ +16:50:37 FNo. Len. Field Value +16:50:37 ============================================================================ +16:50:37 [ 1] [ 4] [0200] +16:50:37 [ 2] [ 16] [6213544002086699] +16:50:37 [ 3] [ 6] [010000] +16:50:37 [ 4] [ 12] [000050000000] +16:50:37 [ 7] [ 10] [0320164827] +16:50:37 [ 11] [ 6] [952437] +16:50:37 [ 12] [ 6] [164827] +16:50:37 [ 13] [ 4] [0320] +16:50:37 [ 15] [ 4] [0320] +16:50:37 [ 18] [ 4] [6011] +16:50:37 [ 19] [ 3] [418] +16:50:37 [ 22] [ 3] [021] +16:50:37 [ 25] [ 2] [01] +16:50:37 [ 28] [ 9] [D00002000] +16:50:37 [ 32] [ 6] [668899] +16:50:37 [ 35] [ 32] [6213544002086699=491212018669762] +16:50:37 [ 37] [ 12] [507902025629] +16:50:37 [ 41] [ 8] [03414002] +16:50:37 [ 42] [ 15] [APT ] +16:50:37 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:50:37 [ 49] [ 3] [418] +16:50:37 [ 52] [ 16] [822AE3FB92DFBCA4] +16:50:37 ============================================================================ +16:50:37 + + +waiting on router queue for slot.... +16:50:37 Sending to : +16:50:37 ============================================================================ +16:50:37 Sending to : +16:50:37 ============================================================================ +16:50:37 ============================================================================ +16:50:37 Slot Id : <311> +16:50:37 Transaction Type : REQUEST +16:50:37 Received From : +16:50:37 ============================================================================ +16:50:37 FNo. Len. Field Value +16:50:37 ============================================================================ +16:50:37 [ 1] [ 4] [0200] +16:50:37 [ 2] [ 16] [6213544002086699] +16:50:37 [ 3] [ 6] [010000] +16:50:37 [ 4] [ 12] [000050000000] +16:50:37 [ 7] [ 10] [0320164827] +16:50:37 [ 11] [ 6] [952437] +16:50:37 [ 12] [ 6] [164827] +16:50:37 [ 13] [ 4] [0320] +16:50:37 [ 15] [ 4] [0320] +16:50:37 [ 18] [ 4] [6011] +16:50:37 [ 19] [ 3] [418] +16:50:37 [ 22] [ 3] [021] +16:50:37 [ 25] [ 2] [01] +16:50:37 [ 28] [ 9] [D00002000] +16:50:37 [ 32] [ 6] [668899] +16:50:37 [ 35] [ 32] [6213544002086699=491212018669762] +16:50:37 [ 37] [ 12] [507902025629] +16:50:37 [ 41] [ 8] [03414002] +16:50:37 [ 42] [ 15] [APT ] +16:50:37 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:50:37 [ 49] [ 3] [418] +16:50:37 [ 52] [ 16] [822AE3FB92DFBCA4] +16:50:37 ============================================================================ +16:50:37 + + +waiting on router queue for slot.... +16:50:37 Sending to : +16:50:37 ============================================================================ +16:50:37 ============================================================================ +16:50:37 Slot Id : <311> +16:50:37 Transaction Type : REQUEST +16:50:37 Received From : +16:50:37 ============================================================================ +16:50:37 FNo. Len. Field Value +16:50:37 ============================================================================ +16:50:37 [ 1] [ 4] [0200] +16:50:37 [ 2] [ 16] [6213544002086699] +16:50:37 [ 3] [ 6] [010000] +16:50:37 [ 4] [ 12] [000050000000] +16:50:37 [ 7] [ 10] [0320164827] +16:50:37 [ 11] [ 6] [952437] +16:50:37 [ 12] [ 6] [164827] +16:50:37 [ 13] [ 4] [0320] +16:50:37 [ 15] [ 4] [0320] +16:50:37 [ 18] [ 4] [6011] +16:50:37 [ 19] [ 3] [418] +16:50:37 [ 22] [ 3] [021] +16:50:37 [ 25] [ 2] [01] +16:50:37 [ 28] [ 9] [D00002000] +16:50:37 [ 32] [ 6] [668899] +16:50:37 [ 35] [ 32] [6213544002086699=491212018669762] +16:50:37 [ 37] [ 12] [507902025629] +16:50:37 [ 41] [ 8] [03414002] +16:50:37 [ 42] [ 15] [APT ] +16:50:37 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:50:37 [ 49] [ 3] [418] +16:50:37 [ 52] [ 16] [52E3ECC244DDA2AF] +16:50:37 ============================================================================ +16:50:37 + + +waiting on router queue for slot.... +16:50:37 Sending to : <0> +16:50:37 ============================================================================ +16:50:38 ============================================================================ +16:50:38 Slot Id : <311> +16:50:38 Transaction Type : RESPONSE +16:50:38 Received From : +16:50:38 ============================================================================ +16:50:38 FNo. Len. Field Value +16:50:38 ============================================================================ +16:50:38 [ 1] [ 4] [0210] +16:50:38 [ 2] [ 16] [6213544002086699] +16:50:38 [ 3] [ 6] [010000] +16:50:38 [ 4] [ 12] [000050000000] +16:50:38 [ 7] [ 10] [0320164827] +16:50:38 [ 11] [ 6] [952437] +16:50:38 [ 12] [ 6] [164827] +16:50:38 [ 13] [ 4] [0320] +16:50:38 [ 15] [ 4] [0320] +16:50:38 [ 18] [ 4] [6011] +16:50:38 [ 19] [ 3] [418] +16:50:38 [ 32] [ 6] [668899] +16:50:38 [ 35] [ 32] [6213544002086699=491212018669762] +16:50:38 [ 37] [ 12] [507902025629] +16:50:38 [ 38] [ 6] [952437] +16:50:38 [ 39] [ 2] [51] +16:50:38 [ 41] [ 8] [03414002] +16:50:38 [ 49] [ 3] [418] +16:50:38 [ 54] [ 40] [0001418C0000538777950002418C000053877795] +16:50:38 ============================================================================ +16:50:38 Sending to : +16:50:38 ============================================================================ +16:50:38 + + +waiting on router queue for slot.... +16:50:38 ============================================================================ +16:50:38 Slot Id : <312> +16:50:38 Transaction Type : REQUEST +16:50:38 Received From : +16:50:38 ============================================================================ +16:50:38 FNo. Len. Field Value +16:50:38 ============================================================================ +16:50:38 [ 1] [ 4] [0200] +16:50:38 [ 2] [ 16] [6213545000937916] +16:50:38 [ 3] [ 6] [011000] +16:50:38 [ 4] [ 12] [000007000000] +16:50:38 [ 7] [ 10] [0320094944] +16:50:38 [ 11] [ 6] [270638] +16:50:38 [ 12] [ 6] [164944] +16:50:38 [ 13] [ 4] [0320] +16:50:38 [ 14] [ 4] [4912] +16:50:38 [ 15] [ 4] [0320] +16:50:38 [ 18] [ 4] [6011] +16:50:38 [ 19] [ 3] [418] +16:50:38 [ 22] [ 3] [021] +16:50:38 [ 25] [ 2] [01] +16:50:38 [ 28] [ 9] [D00002000] +16:50:38 [ 32] [ 6] [180893] +16:50:38 [ 35] [ 32] [6213545000937916=491212013791854] +16:50:38 [ 37] [ 12] [507909270638] +16:50:38 [ 41] [ 8] [0543VLSC] +16:50:38 [ 42] [ 15] [999999 ] +16:50:38 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +16:50:38 [ 49] [ 3] [418] +16:50:38 [ 52] [ 16] [7B9D70ACA3535CED] +16:50:38 ============================================================================ +16:50:38 + + +waiting on router queue for slot.... +16:50:38 Sending to : +16:50:38 ============================================================================ +16:50:38 Sending to : +16:50:38 ============================================================================ +16:50:38 ============================================================================ +16:50:38 Slot Id : <312> +16:50:38 Transaction Type : REQUEST +16:50:38 Received From : +16:50:38 ============================================================================ +16:50:38 FNo. Len. Field Value +16:50:38 ============================================================================ +16:50:38 [ 1] [ 4] [0200] +16:50:38 [ 2] [ 16] [6213545000937916] +16:50:38 [ 3] [ 6] [011000] +16:50:38 [ 4] [ 12] [000007000000] +16:50:38 [ 7] [ 10] [0320094944] +16:50:38 [ 11] [ 6] [270638] +16:50:38 [ 12] [ 6] [164944] +16:50:38 [ 13] [ 4] [0320] +16:50:38 [ 14] [ 4] [4912] +16:50:38 [ 15] [ 4] [0320] +16:50:38 [ 18] [ 4] [6011] +16:50:38 [ 19] [ 3] [418] +16:50:38 [ 22] [ 3] [021] +16:50:38 [ 25] [ 2] [01] +16:50:38 [ 28] [ 9] [D00002000] +16:50:38 [ 32] [ 6] [180893] +16:50:38 [ 35] [ 32] [6213545000937916=491212013791854] +16:50:38 [ 37] [ 12] [507909270638] +16:50:38 [ 41] [ 8] [0543VLSC] +16:50:38 [ 42] [ 15] [999999 ] +16:50:38 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +16:50:38 [ 49] [ 3] [418] +16:50:38 [ 52] [ 16] [7B9D70ACA3535CED] +16:50:38 ============================================================================ +16:50:38 + + +waiting on router queue for slot.... +16:50:38 Sending to : +16:50:38 ============================================================================ +16:50:38 ============================================================================ +16:50:38 Slot Id : <312> +16:50:38 Transaction Type : REQUEST +16:50:38 Received From : +16:50:38 ============================================================================ +16:50:38 FNo. Len. Field Value +16:50:38 ============================================================================ +16:50:38 [ 1] [ 4] [0200] +16:50:38 [ 2] [ 16] [6213545000937916] +16:50:38 [ 3] [ 6] [011000] +16:50:38 [ 4] [ 12] [000007000000] +16:50:38 [ 7] [ 10] [0320094944] +16:50:38 [ 11] [ 6] [270638] +16:50:38 [ 12] [ 6] [164944] +16:50:38 [ 13] [ 4] [0320] +16:50:38 [ 14] [ 4] [4912] +16:50:38 [ 15] [ 4] [0320] +16:50:38 [ 18] [ 4] [6011] +16:50:38 [ 19] [ 3] [418] +16:50:38 [ 22] [ 3] [021] +16:50:38 [ 25] [ 2] [01] +16:50:38 [ 28] [ 9] [D00002000] +16:50:38 [ 32] [ 6] [180893] +16:50:38 [ 35] [ 32] [6213545000937916=491212013791854] +16:50:38 [ 37] [ 12] [507909270638] +16:50:38 [ 41] [ 8] [0543VLSC] +16:50:38 [ 42] [ 15] [999999 ] +16:50:38 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +16:50:38 [ 49] [ 3] [418] +16:50:38 [ 52] [ 16] [8637E869A69712B4] +16:50:38 ============================================================================ +16:50:38 + + +waiting on router queue for slot.... +16:50:38 Sending to : <0> +16:50:38 ============================================================================ +16:50:39 ============================================================================ +16:50:39 Slot Id : <312> +16:50:39 Transaction Type : RESPONSE +16:50:39 Received From : +16:50:39 ============================================================================ +16:50:39 FNo. Len. Field Value +16:50:39 ============================================================================ +16:50:39 [ 1] [ 4] [0210] +16:50:39 [ 2] [ 16] [6213545000937916] +16:50:39 [ 3] [ 6] [011000] +16:50:39 [ 4] [ 12] [000007000000] +16:50:39 [ 7] [ 10] [0320094944] +16:50:39 [ 11] [ 6] [270638] +16:50:39 [ 12] [ 6] [164944] +16:50:39 [ 13] [ 4] [0320] +16:50:39 [ 15] [ 4] [0320] +16:50:39 [ 18] [ 4] [6011] +16:50:39 [ 19] [ 3] [418] +16:50:39 [ 32] [ 6] [180893] +16:50:39 [ 35] [ 32] [6213545000937916=491212013791854] +16:50:39 [ 37] [ 12] [507909270638] +16:50:39 [ 38] [ 6] [848796] +16:50:39 [ 39] [ 2] [00] +16:50:39 [ 41] [ 8] [0543VLSC] +16:50:39 [ 49] [ 3] [418] +16:50:39 [ 54] [ 40] [1001418C0000054831951002418C000005483195] +16:50:39 ============================================================================ +16:50:39 Sending to : +16:50:39 ============================================================================ +16:50:39 + + +waiting on router queue for slot.... +16:50:39 ============================================================================ +16:50:39 Slot Id : <311> +16:50:39 Transaction Type : RESPONSE +16:50:39 Received From : +16:50:39 ============================================================================ +16:50:39 FNo. Len. Field Value +16:50:39 ============================================================================ +16:50:39 [ 1] [ 4] [0210] +16:50:39 [ 2] [ 16] [6213544002086699] +16:50:39 [ 3] [ 6] [010000] +16:50:39 [ 4] [ 12] [000050000000] +16:50:39 [ 7] [ 10] [0320164827] +16:50:39 [ 11] [ 6] [952437] +16:50:39 [ 12] [ 6] [164827] +16:50:39 [ 13] [ 4] [0320] +16:50:39 [ 15] [ 4] [0320] +16:50:39 [ 18] [ 4] [6011] +16:50:39 [ 19] [ 3] [418] +16:50:39 [ 32] [ 6] [668899] +16:50:39 [ 35] [ 32] [6213544002086699=491212018669762] +16:50:39 [ 37] [ 12] [507902025629] +16:50:39 [ 38] [ 6] [952437] +16:50:39 [ 39] [ 2] [51] +16:50:39 [ 41] [ 8] [03414002] +16:50:39 [ 49] [ 3] [418] +16:50:39 [ 54] [ 40] [0001418C0000538777950002418C000053877795] +16:50:39 ============================================================================ +16:50:39 Calculate Source COMM Id = 4 +16:50:39 ============================================================================ +16:50:39 + + +waiting on router queue for slot.... +16:50:39 ============================================================================ +16:50:39 Slot Id : <316> +16:50:39 Transaction Type : RESPONSE +16:50:39 Received From : +16:50:39 ============================================================================ +16:50:39 FNo. Len. Field Value +16:50:39 ============================================================================ +16:50:39 [ 1] [ 4] [0210] +16:50:39 [ 2] [ 16] [1808931800013086] +16:50:39 [ 3] [ 6] [010000] +16:50:39 [ 4] [ 12] [000100000000] +16:50:39 [ 6] [ 12] [000100000000] +16:50:39 [ 7] [ 10] [0320165028] +16:50:39 [ 11] [ 6] [805584] +16:50:39 [ 12] [ 6] [165028] +16:50:39 [ 13] [ 4] [0320] +16:50:39 [ 18] [ 4] [6011] +16:50:39 [ 19] [ 3] [418] +16:50:39 [ 22] [ 3] [021] +16:50:39 [ 32] [ 6] [621354] +16:50:39 [ 35] [ 27] [1808931800013086=1803500007] +16:50:39 [ 37] [ 12] [507904635917] +16:50:39 [ 38] [ 6] [805584] +16:50:39 [ 39] [ 2] [51] +16:50:39 [ 41] [ 8] [17000800] +16:50:39 [ 49] [ 3] [418] +16:50:39 [ 52] [ 16] [D14224C62C5F278E] +16:50:39 ============================================================================ +16:50:39 Sending to : +16:50:39 ============================================================================ +16:50:39 + + +waiting on router queue for slot.... +16:50:40 ============================================================================ +16:50:40 Slot Id : <306> +16:50:40 Transaction Type : REQUEST +16:50:40 Received From : +16:50:40 ============================================================================ +16:50:40 FNo. Len. Field Value +16:50:40 ============================================================================ +16:50:40 [ 1] [ 4] [0800] +16:50:40 [ 7] [ 10] [0321000228] +16:50:40 [ 11] [ 6] [170228] +16:50:40 [ 37] [ 12] [57917170228] +16:50:40 [ 70] [ 3] [301] +16:50:40 ============================================================================ +16:50:40 + + +waiting on router queue for slot.... +16:50:40 Sending to : +16:50:40 ============================================================================ +16:50:40 ============================================================================ +16:50:40 Slot Id : <306> +16:50:40 Transaction Type : RESPONSE +16:50:40 Received From : +16:50:40 ============================================================================ +16:50:40 FNo. Len. Field Value +16:50:40 ============================================================================ +16:50:40 [ 1] [ 4] [0810] +16:50:40 [ 7] [ 10] [0321000228] +16:50:40 [ 11] [ 6] [170228] +16:50:40 [ 37] [ 12] [579171702280] +16:50:40 [ 39] [ 2] [00] +16:50:40 [ 70] [ 3] [810] +16:50:40 ============================================================================ +16:50:40 Calculate Source COMM Id = 6 +16:50:40 ============================================================================ +16:50:40 + + +waiting on router queue for slot.... +16:50:40 ============================================================================ +16:50:40 Slot Id : <312> +16:50:40 Transaction Type : RESPONSE +16:50:40 Received From : +16:50:40 ============================================================================ +16:50:40 FNo. Len. Field Value +16:50:40 ============================================================================ +16:50:40 [ 1] [ 4] [0210] +16:50:40 [ 2] [ 16] [6213545000937916] +16:50:40 [ 3] [ 6] [011000] +16:50:40 [ 4] [ 12] [000007000000] +16:50:40 [ 7] [ 10] [0320094944] +16:50:40 [ 11] [ 6] [270638] +16:50:40 [ 12] [ 6] [164944] +16:50:40 [ 13] [ 4] [0320] +16:50:40 [ 15] [ 4] [0320] +16:50:40 [ 18] [ 4] [6011] +16:50:40 [ 19] [ 3] [418] +16:50:40 [ 32] [ 6] [180893] +16:50:40 [ 35] [ 32] [6213545000937916=491212013791854] +16:50:40 [ 37] [ 12] [507909270638] +16:50:40 [ 38] [ 6] [848796] +16:50:40 [ 39] [ 2] [00] +16:50:40 [ 41] [ 8] [0543VLSC] +16:50:40 [ 49] [ 3] [418] +16:50:40 [ 54] [ 40] [1001418C0000054831951002418C000005483195] +16:50:40 ============================================================================ +16:50:40 Calculate Source COMM Id = 2 +16:50:40 ============================================================================ +16:50:40 + + +waiting on router queue for slot.... +16:50:41 ============================================================================ +16:50:41 Slot Id : <316> +16:50:41 Transaction Type : RESPONSE +16:50:41 Received From : +16:50:41 ============================================================================ +16:50:41 FNo. Len. Field Value +16:50:41 ============================================================================ +16:50:41 [ 1] [ 4] [0210] +16:50:41 [ 2] [ 16] [1808931800013086] +16:50:41 [ 3] [ 6] [010000] +16:50:41 [ 4] [ 12] [000100000000] +16:50:41 [ 6] [ 12] [000100000000] +16:50:41 [ 7] [ 10] [0320165028] +16:50:41 [ 11] [ 6] [805584] +16:50:41 [ 12] [ 6] [165028] +16:50:41 [ 13] [ 4] [0320] +16:50:41 [ 18] [ 4] [6011] +16:50:41 [ 19] [ 3] [418] +16:50:41 [ 22] [ 3] [021] +16:50:41 [ 32] [ 6] [621354] +16:50:41 [ 35] [ 27] [1808931800013086=1803500007] +16:50:41 [ 37] [ 12] [507904635917] +16:50:41 [ 38] [ 6] [805584] +16:50:41 [ 39] [ 2] [51] +16:50:41 [ 41] [ 8] [17000800] +16:50:41 [ 49] [ 3] [418] +16:50:41 [ 52] [ 16] [D14224C62C5F278E] +16:50:41 ============================================================================ +16:50:41 Calculate Source COMM Id = 0 +16:50:41 ============================================================================ +16:50:41 + + +waiting on router queue for slot.... +16:50:52 ============================================================================ +16:50:52 Slot Id : <310> +16:50:52 Transaction Type : REQUEST +16:50:52 Received From : +16:50:52 ============================================================================ +16:50:52 FNo. Len. Field Value +16:50:52 ============================================================================ +16:50:52 [ 1] [ 4] [0200] +16:50:52 [ 2] [ 16] [6213544002226303] +16:50:52 [ 3] [ 6] [011000] +16:50:52 [ 4] [ 12] [000050000000] +16:50:52 [ 7] [ 10] [0320165112] +16:50:52 [ 11] [ 6] [209025] +16:50:52 [ 12] [ 6] [164618] +16:50:52 [ 13] [ 4] [0320] +16:50:52 [ 14] [ 4] [4912] +16:50:52 [ 15] [ 4] [0320] +16:50:52 [ 18] [ 4] [6011] +16:50:52 [ 19] [ 3] [418] +16:50:52 [ 22] [ 3] [021] +16:50:52 [ 25] [ 2] [01] +16:50:52 [ 28] [ 9] [D00002000] +16:50:52 [ 32] [ 6] [198901] +16:50:52 [ 35] [ 32] [6213544002226303=491212012630439] +16:50:52 [ 37] [ 12] [507916209025] +16:50:52 [ 41] [ 8] [19529001] +16:50:52 [ 42] [ 15] [000000041952901] +16:50:52 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:50:52 [ 49] [ 3] [418] +16:50:52 [ 52] [ 16] [3ABA7CD25DD9DDAB] +16:50:52 ============================================================================ +16:50:52 + + +waiting on router queue for slot.... +16:50:52 Sending to : +16:50:52 ============================================================================ +16:50:52 Sending to : +16:50:52 ============================================================================ +16:50:52 ============================================================================ +16:50:52 Slot Id : <310> +16:50:52 Transaction Type : REQUEST +16:50:52 Received From : +16:50:52 ============================================================================ +16:50:52 FNo. Len. Field Value +16:50:52 ============================================================================ +16:50:52 [ 1] [ 4] [0200] +16:50:52 [ 2] [ 16] [6213544002226303] +16:50:52 [ 3] [ 6] [011000] +16:50:52 [ 4] [ 12] [000050000000] +16:50:52 [ 7] [ 10] [0320165112] +16:50:52 [ 11] [ 6] [209025] +16:50:52 [ 12] [ 6] [164618] +16:50:52 [ 13] [ 4] [0320] +16:50:52 [ 14] [ 4] [4912] +16:50:52 [ 15] [ 4] [0320] +16:50:52 [ 18] [ 4] [6011] +16:50:52 [ 19] [ 3] [418] +16:50:52 [ 22] [ 3] [021] +16:50:52 [ 25] [ 2] [01] +16:50:52 [ 28] [ 9] [D00002000] +16:50:52 [ 32] [ 6] [198901] +16:50:52 [ 35] [ 32] [6213544002226303=491212012630439] +16:50:52 [ 37] [ 12] [507916209025] +16:50:52 [ 41] [ 8] [19529001] +16:50:52 [ 42] [ 15] [000000041952901] +16:50:52 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:50:52 [ 49] [ 3] [418] +16:50:52 [ 52] [ 16] [3ABA7CD25DD9DDAB] +16:50:52 ============================================================================ +16:50:52 + + +waiting on router queue for slot.... +16:50:52 Sending to : +16:50:52 ============================================================================ +16:50:52 ============================================================================ +16:50:52 Slot Id : <310> +16:50:52 Transaction Type : REQUEST +16:50:52 Received From : +16:50:52 ============================================================================ +16:50:52 FNo. Len. Field Value +16:50:52 ============================================================================ +16:50:52 [ 1] [ 4] [0200] +16:50:52 [ 2] [ 16] [6213544002226303] +16:50:52 [ 3] [ 6] [011000] +16:50:52 [ 4] [ 12] [000050000000] +16:50:52 [ 7] [ 10] [0320165112] +16:50:52 [ 11] [ 6] [209025] +16:50:52 [ 12] [ 6] [164618] +16:50:52 [ 13] [ 4] [0320] +16:50:52 [ 14] [ 4] [4912] +16:50:52 [ 15] [ 4] [0320] +16:50:52 [ 18] [ 4] [6011] +16:50:52 [ 19] [ 3] [418] +16:50:52 [ 22] [ 3] [021] +16:50:52 [ 25] [ 2] [01] +16:50:52 [ 28] [ 9] [D00002000] +16:50:52 [ 32] [ 6] [198901] +16:50:52 [ 35] [ 32] [6213544002226303=491212012630439] +16:50:52 [ 37] [ 12] [507916209025] +16:50:52 [ 41] [ 8] [19529001] +16:50:52 [ 42] [ 15] [000000041952901] +16:50:52 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:50:52 [ 49] [ 3] [418] +16:50:52 [ 52] [ 16] [57E7E102AD59B49A] +16:50:52 ============================================================================ +16:50:52 + + +waiting on router queue for slot.... +16:50:52 Sending to : <0> +16:50:52 ============================================================================ +16:50:53 ============================================================================ +16:50:53 Slot Id : <310> +16:50:53 Transaction Type : RESPONSE +16:50:53 Received From : +16:50:53 ============================================================================ +16:50:53 FNo. Len. Field Value +16:50:53 ============================================================================ +16:50:53 [ 1] [ 4] [0210] +16:50:53 [ 2] [ 16] [6213544002226303] +16:50:53 [ 3] [ 6] [011000] +16:50:53 [ 4] [ 12] [000050000000] +16:50:53 [ 7] [ 10] [0320165112] +16:50:53 [ 11] [ 6] [209025] +16:50:53 [ 12] [ 6] [164618] +16:50:53 [ 13] [ 4] [0320] +16:50:53 [ 15] [ 4] [0320] +16:50:53 [ 18] [ 4] [6011] +16:50:53 [ 19] [ 3] [418] +16:50:53 [ 32] [ 6] [198901] +16:50:53 [ 35] [ 32] [6213544002226303=491212012630439] +16:50:53 [ 37] [ 12] [507916209025] +16:50:53 [ 38] [ 6] [740879] +16:50:53 [ 39] [ 2] [00] +16:50:53 [ 41] [ 8] [19529001] +16:50:53 [ 49] [ 3] [418] +16:50:53 [ 54] [ 40] [1001418C0000108606481002418C000010860648] +16:50:53 ============================================================================ +16:50:53 Sending to : +16:50:53 ============================================================================ +16:50:53 + + +waiting on router queue for slot.... +16:50:53 ============================================================================ +16:50:53 Slot Id : <307> +16:50:53 Transaction Type : REQUEST +16:50:53 Received From : +16:50:53 ============================================================================ +16:50:53 FNo. Len. Field Value +16:50:53 ============================================================================ +16:50:53 [ 1] [ 4] [0800] +16:50:53 [ 7] [ 10] [0320095000] +16:50:53 [ 11] [ 6] [157316] +16:50:53 [ 70] [ 3] [301] +16:50:53 ============================================================================ +16:50:53 + + +waiting on router queue for slot.... +16:50:53 Sending to : +16:50:53 ============================================================================ +16:50:53 ============================================================================ +16:50:53 Slot Id : <307> +16:50:53 Transaction Type : RESPONSE +16:50:53 Received From : +16:50:53 ============================================================================ +16:50:53 FNo. Len. Field Value +16:50:53 ============================================================================ +16:50:53 [ 1] [ 4] [0810] +16:50:53 [ 7] [ 10] [0320095000] +16:50:53 [ 11] [ 6] [157316] +16:50:53 [ 39] [ 2] [00] +16:50:53 [ 70] [ 3] [301] +16:50:53 ============================================================================ +16:50:53 Calculate Source COMM Id = 2 +16:50:53 ============================================================================ +16:50:53 + + +waiting on router queue for slot.... +16:50:54 ============================================================================ +16:50:54 Slot Id : <317> +16:50:54 Transaction Type : REQUEST +16:50:54 Received From : +16:50:54 ============================================================================ +16:50:54 FNo. Len. Field Value +16:50:54 ============================================================================ +16:50:54 [ 1] [ 4] [0200] +16:50:54 [ 2] [ 16] [6213544002138748] +16:50:54 [ 3] [ 6] [010000] +16:50:54 [ 4] [ 12] [000050000000] +16:50:54 [ 7] [ 10] [0320165841] +16:50:54 [ 11] [ 6] [240466] +16:50:54 [ 12] [ 6] [165841] +16:50:54 [ 13] [ 4] [0320] +16:50:54 [ 14] [ 4] [4912] +16:50:54 [ 15] [ 4] [0320] +16:50:54 [ 18] [ 4] [6011] +16:50:54 [ 22] [ 3] [900] +16:50:54 [ 25] [ 2] [02] +16:50:54 [ 28] [ 9] [D00002000] +16:50:54 [ 32] [ 6] [220699] +16:50:54 [ 35] [ 32] [6213544002138748=491212013874101] +16:50:54 [ 37] [ 12] [507900360219] +16:50:54 [ 41] [ 8] [05000300] +16:50:54 [ 42] [ 15] [APTRA ] +16:50:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:50:54 [ 49] [ 3] [418] +16:50:54 [ 52] [ 16] [38A8BE3C2B3594A3] +16:50:54 ============================================================================ +16:50:54 + + +waiting on router queue for slot.... +16:50:54 Sending to : +16:50:54 ============================================================================ +16:50:54 Sending to : +16:50:54 ============================================================================ +16:50:54 ============================================================================ +16:50:54 Slot Id : <317> +16:50:54 Transaction Type : REQUEST +16:50:54 Received From : +16:50:54 ============================================================================ +16:50:54 FNo. Len. Field Value +16:50:54 ============================================================================ +16:50:54 [ 1] [ 4] [0200] +16:50:54 [ 2] [ 16] [6213544002138748] +16:50:54 [ 3] [ 6] [010000] +16:50:54 [ 4] [ 12] [000050000000] +16:50:54 [ 7] [ 10] [0320165841] +16:50:54 [ 11] [ 6] [240466] +16:50:54 [ 12] [ 6] [165841] +16:50:54 [ 13] [ 4] [0320] +16:50:54 [ 14] [ 4] [4912] +16:50:54 [ 15] [ 4] [0320] +16:50:54 [ 18] [ 4] [6011] +16:50:54 [ 22] [ 3] [900] +16:50:54 [ 25] [ 2] [02] +16:50:54 [ 28] [ 9] [D00002000] +16:50:54 [ 32] [ 6] [220699] +16:50:54 [ 35] [ 32] [6213544002138748=491212013874101] +16:50:54 [ 37] [ 12] [507900360219] +16:50:54 [ 41] [ 8] [05000300] +16:50:54 [ 42] [ 15] [APTRA ] +16:50:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:50:54 [ 49] [ 3] [418] +16:50:54 [ 52] [ 16] [38A8BE3C2B3594A3] +16:50:54 ============================================================================ +16:50:54 + + +waiting on router queue for slot.... +16:50:54 Sending to : +16:50:54 ============================================================================ +16:50:54 ============================================================================ +16:50:54 Slot Id : <317> +16:50:54 Transaction Type : REQUEST +16:50:54 Received From : +16:50:54 ============================================================================ +16:50:54 FNo. Len. Field Value +16:50:54 ============================================================================ +16:50:54 [ 1] [ 4] [0200] +16:50:54 [ 2] [ 16] [6213544002138748] +16:50:54 [ 3] [ 6] [010000] +16:50:54 [ 4] [ 12] [000050000000] +16:50:54 [ 7] [ 10] [0320165841] +16:50:54 [ 11] [ 6] [240466] +16:50:54 [ 12] [ 6] [165841] +16:50:54 [ 13] [ 4] [0320] +16:50:54 [ 14] [ 4] [4912] +16:50:54 [ 15] [ 4] [0320] +16:50:54 [ 18] [ 4] [6011] +16:50:54 [ 22] [ 3] [900] +16:50:54 [ 25] [ 2] [02] +16:50:54 [ 28] [ 9] [D00002000] +16:50:54 [ 32] [ 6] [220699] +16:50:54 [ 35] [ 32] [6213544002138748=491212013874101] +16:50:54 [ 37] [ 12] [507900360219] +16:50:54 [ 41] [ 8] [05000300] +16:50:54 [ 42] [ 15] [APTRA ] +16:50:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:50:54 [ 49] [ 3] [418] +16:50:54 [ 52] [ 16] [09F4CF888E691FB9] +16:50:54 ============================================================================ +16:50:54 + + +waiting on router queue for slot.... +16:50:54 Sending to : <0> +16:50:54 ============================================================================ +16:50:54 ============================================================================ +16:50:54 Slot Id : <310> +16:50:54 Transaction Type : RESPONSE +16:50:54 Received From : +16:50:54 ============================================================================ +16:50:54 FNo. Len. Field Value +16:50:54 ============================================================================ +16:50:54 [ 1] [ 4] [0210] +16:50:54 [ 2] [ 16] [6213544002226303] +16:50:54 [ 3] [ 6] [011000] +16:50:54 [ 4] [ 12] [000050000000] +16:50:54 [ 7] [ 10] [0320165112] +16:50:54 [ 11] [ 6] [209025] +16:50:54 [ 12] [ 6] [164618] +16:50:54 [ 13] [ 4] [0320] +16:50:54 [ 15] [ 4] [0320] +16:50:54 [ 18] [ 4] [6011] +16:50:54 [ 19] [ 3] [418] +16:50:54 [ 32] [ 6] [198901] +16:50:54 [ 35] [ 32] [6213544002226303=491212012630439] +16:50:54 [ 37] [ 12] [507916209025] +16:50:54 [ 38] [ 6] [740879] +16:50:54 [ 39] [ 2] [00] +16:50:54 [ 41] [ 8] [19529001] +16:50:54 [ 49] [ 3] [418] +16:50:54 [ 54] [ 40] [1001418C0000108606481002418C000010860648] +16:50:54 ============================================================================ +16:50:54 Calculate Source COMM Id = 5 +16:50:54 ============================================================================ +16:50:54 + + +waiting on router queue for slot.... +16:50:54 ============================================================================ +16:50:54 Slot Id : <317> +16:50:54 Transaction Type : RESPONSE +16:50:54 Received From : +16:50:54 ============================================================================ +16:50:54 FNo. Len. Field Value +16:50:54 ============================================================================ +16:50:54 [ 1] [ 4] [0210] +16:50:54 [ 2] [ 16] [6213544002138748] +16:50:54 [ 3] [ 6] [010000] +16:50:54 [ 4] [ 12] [000050000000] +16:50:54 [ 7] [ 10] [0320165841] +16:50:54 [ 11] [ 6] [240466] +16:50:54 [ 12] [ 6] [165841] +16:50:54 [ 13] [ 4] [0320] +16:50:54 [ 15] [ 4] [0320] +16:50:54 [ 18] [ 4] [6011] +16:50:54 [ 32] [ 6] [220699] +16:50:54 [ 35] [ 32] [6213544002138748=491212013874101] +16:50:54 [ 37] [ 12] [507900360219] +16:50:54 [ 38] [ 6] [453030] +16:50:54 [ 39] [ 2] [00] +16:50:54 [ 41] [ 8] [05000300] +16:50:54 [ 49] [ 3] [418] +16:50:54 [ 54] [ 40] [0001418C0000266335410002418C000026633541] +16:50:54 ============================================================================ +16:50:54 Sending to : +16:50:54 ============================================================================ +16:50:54 + + +waiting on router queue for slot.... +16:50:56 ============================================================================ +16:50:56 Slot Id : <317> +16:50:56 Transaction Type : RESPONSE +16:50:56 Received From : +16:50:56 ============================================================================ +16:50:56 FNo. Len. Field Value +16:50:56 ============================================================================ +16:50:56 [ 1] [ 4] [0210] +16:50:56 [ 2] [ 16] [6213544002138748] +16:50:56 [ 3] [ 6] [010000] +16:50:56 [ 4] [ 12] [000050000000] +16:50:56 [ 7] [ 10] [0320165841] +16:50:56 [ 11] [ 6] [240466] +16:50:56 [ 12] [ 6] [165841] +16:50:56 [ 13] [ 4] [0320] +16:50:56 [ 15] [ 4] [0320] +16:50:56 [ 18] [ 4] [6011] +16:50:56 [ 32] [ 6] [220699] +16:50:56 [ 35] [ 32] [6213544002138748=491212013874101] +16:50:56 [ 37] [ 12] [507900360219] +16:50:56 [ 38] [ 6] [453030] +16:50:56 [ 39] [ 2] [00] +16:50:56 [ 41] [ 8] [05000300] +16:50:56 [ 49] [ 3] [418] +16:50:56 [ 54] [ 40] [0001418C0000266335410002418C000026633541] +16:50:56 ============================================================================ +16:50:56 Calculate Source COMM Id = 1 +16:50:56 ============================================================================ +16:50:56 + + +waiting on router queue for slot.... +16:50:58 ============================================================================ +16:50:58 Slot Id : <288> +16:50:58 Transaction Type : REQUEST +16:50:58 Received From : +16:50:58 ============================================================================ +16:50:58 FNo. Len. Field Value +16:50:58 ============================================================================ +16:50:58 [ 1] [ 4] [0200] +16:50:58 [ 2] [ 16] [6213544002086699] +16:50:58 [ 3] [ 6] [010000] +16:50:58 [ 4] [ 12] [000030000000] +16:50:58 [ 7] [ 10] [0320164847] +16:50:58 [ 11] [ 6] [952446] +16:50:58 [ 12] [ 6] [164847] +16:50:58 [ 13] [ 4] [0320] +16:50:58 [ 15] [ 4] [0320] +16:50:58 [ 18] [ 4] [6011] +16:50:58 [ 19] [ 3] [418] +16:50:58 [ 22] [ 3] [021] +16:50:58 [ 25] [ 2] [01] +16:50:58 [ 28] [ 9] [D00002000] +16:50:58 [ 32] [ 6] [668899] +16:50:58 [ 35] [ 32] [6213544002086699=491212018669762] +16:50:58 [ 37] [ 12] [507902025630] +16:50:58 [ 41] [ 8] [03414002] +16:50:58 [ 42] [ 15] [APT ] +16:50:58 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:50:58 [ 49] [ 3] [418] +16:50:58 [ 52] [ 16] [822AE3FB92DFBCA4] +16:50:58 ============================================================================ +16:50:58 + + +waiting on router queue for slot.... +16:50:58 Sending to : +16:50:58 ============================================================================ +16:50:58 Sending to : +16:50:58 ============================================================================ +16:50:58 ============================================================================ +16:50:58 Slot Id : <288> +16:50:58 Transaction Type : REQUEST +16:50:58 Received From : +16:50:58 ============================================================================ +16:50:58 FNo. Len. Field Value +16:50:58 ============================================================================ +16:50:58 [ 1] [ 4] [0200] +16:50:58 [ 2] [ 16] [6213544002086699] +16:50:58 [ 3] [ 6] [010000] +16:50:58 [ 4] [ 12] [000030000000] +16:50:58 [ 7] [ 10] [0320164847] +16:50:58 [ 11] [ 6] [952446] +16:50:58 [ 12] [ 6] [164847] +16:50:58 [ 13] [ 4] [0320] +16:50:58 [ 15] [ 4] [0320] +16:50:58 [ 18] [ 4] [6011] +16:50:58 [ 19] [ 3] [418] +16:50:58 [ 22] [ 3] [021] +16:50:58 [ 25] [ 2] [01] +16:50:58 [ 28] [ 9] [D00002000] +16:50:58 [ 32] [ 6] [668899] +16:50:58 [ 35] [ 32] [6213544002086699=491212018669762] +16:50:58 [ 37] [ 12] [507902025630] +16:50:58 [ 41] [ 8] [03414002] +16:50:58 [ 42] [ 15] [APT ] +16:50:58 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:50:58 [ 49] [ 3] [418] +16:50:58 [ 52] [ 16] [822AE3FB92DFBCA4] +16:50:58 ============================================================================ +16:50:58 + + +waiting on router queue for slot.... +16:50:58 Sending to : +16:50:58 ============================================================================ +16:50:58 ============================================================================ +16:50:58 Slot Id : <288> +16:50:58 Transaction Type : REQUEST +16:50:58 Received From : +16:50:58 ============================================================================ +16:50:58 FNo. Len. Field Value +16:50:58 ============================================================================ +16:50:58 [ 1] [ 4] [0200] +16:50:58 [ 2] [ 16] [6213544002086699] +16:50:58 [ 3] [ 6] [010000] +16:50:58 [ 4] [ 12] [000030000000] +16:50:58 [ 7] [ 10] [0320164847] +16:50:58 [ 11] [ 6] [952446] +16:50:58 [ 12] [ 6] [164847] +16:50:58 [ 13] [ 4] [0320] +16:50:58 [ 15] [ 4] [0320] +16:50:58 [ 18] [ 4] [6011] +16:50:58 [ 19] [ 3] [418] +16:50:58 [ 22] [ 3] [021] +16:50:58 [ 25] [ 2] [01] +16:50:58 [ 28] [ 9] [D00002000] +16:50:58 [ 32] [ 6] [668899] +16:50:58 [ 35] [ 32] [6213544002086699=491212018669762] +16:50:58 [ 37] [ 12] [507902025630] +16:50:58 [ 41] [ 8] [03414002] +16:50:58 [ 42] [ 15] [APT ] +16:50:58 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:50:58 [ 49] [ 3] [418] +16:50:58 [ 52] [ 16] [52E3ECC244DDA2AF] +16:50:58 ============================================================================ +16:50:58 + + +waiting on router queue for slot.... +16:50:58 Sending to : <0> +16:50:58 ============================================================================ +16:50:59 ============================================================================ +16:50:59 Slot Id : <288> +16:50:59 Transaction Type : RESPONSE +16:50:59 Received From : +16:50:59 ============================================================================ +16:50:59 FNo. Len. Field Value +16:50:59 ============================================================================ +16:50:59 [ 1] [ 4] [0210] +16:50:59 [ 2] [ 16] [6213544002086699] +16:50:59 [ 3] [ 6] [010000] +16:50:59 [ 4] [ 12] [000030000000] +16:50:59 [ 7] [ 10] [0320164847] +16:50:59 [ 11] [ 6] [952446] +16:50:59 [ 12] [ 6] [164847] +16:50:59 [ 13] [ 4] [0320] +16:50:59 [ 15] [ 4] [0320] +16:50:59 [ 18] [ 4] [6011] +16:50:59 [ 19] [ 3] [418] +16:50:59 [ 32] [ 6] [668899] +16:50:59 [ 35] [ 32] [6213544002086699=491212018669762] +16:50:59 [ 37] [ 12] [507902025630] +16:50:59 [ 38] [ 6] [443766] +16:50:59 [ 39] [ 2] [00] +16:50:59 [ 41] [ 8] [03414002] +16:50:59 [ 49] [ 3] [418] +16:50:59 [ 54] [ 40] [0001418C0000236777950002418C000023677795] +16:50:59 ============================================================================ +16:50:59 Sending to : +16:50:59 ============================================================================ +16:50:59 + + +waiting on router queue for slot.... +16:51:00 ============================================================================ +16:51:00 Slot Id : <288> +16:51:00 Transaction Type : RESPONSE +16:51:00 Received From : +16:51:00 ============================================================================ +16:51:00 FNo. Len. Field Value +16:51:00 ============================================================================ +16:51:00 [ 1] [ 4] [0210] +16:51:00 [ 2] [ 16] [6213544002086699] +16:51:00 [ 3] [ 6] [010000] +16:51:00 [ 4] [ 12] [000030000000] +16:51:00 [ 7] [ 10] [0320164847] +16:51:00 [ 11] [ 6] [952446] +16:51:00 [ 12] [ 6] [164847] +16:51:00 [ 13] [ 4] [0320] +16:51:00 [ 15] [ 4] [0320] +16:51:00 [ 18] [ 4] [6011] +16:51:00 [ 19] [ 3] [418] +16:51:00 [ 32] [ 6] [668899] +16:51:00 [ 35] [ 32] [6213544002086699=491212018669762] +16:51:00 [ 37] [ 12] [507902025630] +16:51:00 [ 38] [ 6] [443766] +16:51:00 [ 39] [ 2] [00] +16:51:00 [ 41] [ 8] [03414002] +16:51:00 [ 49] [ 3] [418] +16:51:00 [ 54] [ 40] [0001418C0000236777950002418C000023677795] +16:51:00 ============================================================================ +16:51:00 Calculate Source COMM Id = 4 +16:51:00 ============================================================================ +16:51:00 + + +waiting on router queue for slot.... +16:51:04 ============================================================================ +16:51:04 Slot Id : <318> +16:51:04 Transaction Type : REQUEST +16:51:04 Received From : +16:51:04 ============================================================================ +16:51:04 FNo. Len. Field Value +16:51:04 ============================================================================ +16:51:04 [ 1] [ 4] [0800] +16:51:04 [ 7] [ 10] [0320095011] +16:51:04 [ 11] [ 6] [157317] +16:51:04 [ 70] [ 3] [301] +16:51:04 ============================================================================ +16:51:04 + + +waiting on router queue for slot.... +16:51:04 Sending to : +16:51:04 ============================================================================ +16:51:04 ============================================================================ +16:51:04 Slot Id : <318> +16:51:04 Transaction Type : RESPONSE +16:51:04 Received From : +16:51:04 ============================================================================ +16:51:04 FNo. Len. Field Value +16:51:04 ============================================================================ +16:51:04 [ 1] [ 4] [0810] +16:51:04 [ 7] [ 10] [0320095011] +16:51:04 [ 11] [ 6] [157317] +16:51:04 [ 39] [ 2] [00] +16:51:04 [ 70] [ 3] [301] +16:51:04 ============================================================================ +16:51:04 Calculate Source COMM Id = 2 +16:51:04 ============================================================================ +16:51:04 + + +waiting on router queue for slot.... +16:51:10 ============================================================================ +16:51:10 Slot Id : <322> +16:51:10 Transaction Type : REQUEST +16:51:10 Received From : +16:51:10 ============================================================================ +16:51:10 FNo. Len. Field Value +16:51:10 ============================================================================ +16:51:10 [ 1] [ 4] [0200] +16:51:10 [ 2] [ 16] [6688990105312209] +16:51:10 [ 3] [ 6] [011000] +16:51:10 [ 4] [ 12] [000100000000] +16:51:10 [ 7] [ 10] [0320165105] +16:51:10 [ 11] [ 6] [805760] +16:51:10 [ 12] [ 6] [165105] +16:51:10 [ 13] [ 4] [0320] +16:51:10 [ 15] [ 4] [0320] +16:51:10 [ 18] [ 4] [6011] +16:51:10 [ 22] [ 3] [900] +16:51:10 [ 25] [ 2] [02] +16:51:10 [ 28] [ 9] [D00002000] +16:51:10 [ 32] [ 6] [621354] +16:51:10 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:51:10 [ 37] [ 12] [507903884032] +16:51:10 [ 41] [ 8] [01010400] +16:51:10 [ 42] [ 15] [NATIVE ] +16:51:10 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +16:51:10 [ 49] [ 3] [418] +16:51:10 [ 52] [ 16] [D44E4CB8566A4AF1] +16:51:10 ============================================================================ +16:51:10 + + +waiting on router queue for slot.... +16:51:10 Sending to : +16:51:10 ============================================================================ +16:51:10 Sending to : +16:51:10 ============================================================================ +16:51:10 ============================================================================ +16:51:10 Slot Id : <322> +16:51:10 Transaction Type : REQUEST +16:51:10 Received From : +16:51:10 ============================================================================ +16:51:10 FNo. Len. Field Value +16:51:10 ============================================================================ +16:51:10 [ 1] [ 4] [0200] +16:51:10 [ 2] [ 16] [6688990105312209] +16:51:10 [ 3] [ 6] [011000] +16:51:10 [ 4] [ 12] [000100000000] +16:51:10 [ 7] [ 10] [0320165105] +16:51:10 [ 11] [ 6] [805760] +16:51:10 [ 12] [ 6] [165105] +16:51:10 [ 13] [ 4] [0320] +16:51:10 [ 15] [ 4] [0320] +16:51:10 [ 18] [ 4] [6011] +16:51:10 [ 22] [ 3] [900] +16:51:10 [ 25] [ 2] [02] +16:51:10 [ 28] [ 9] [D00002000] +16:51:10 [ 32] [ 6] [621354] +16:51:10 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:51:10 [ 37] [ 12] [507903884032] +16:51:10 [ 41] [ 8] [01010400] +16:51:10 [ 42] [ 15] [NATIVE ] +16:51:10 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +16:51:10 [ 49] [ 3] [418] +16:51:10 [ 52] [ 16] [D44E4CB8566A4AF1] +16:51:10 ============================================================================ +16:51:10 + + +waiting on router queue for slot.... +16:51:10 Sending to : +16:51:10 ============================================================================ +16:51:10 ============================================================================ +16:51:10 Slot Id : <322> +16:51:10 Transaction Type : REQUEST +16:51:10 Received From : +16:51:10 ============================================================================ +16:51:10 FNo. Len. Field Value +16:51:10 ============================================================================ +16:51:10 [ 1] [ 4] [0200] +16:51:10 [ 2] [ 16] [6688990105312209] +16:51:10 [ 3] [ 6] [011000] +16:51:10 [ 4] [ 12] [000100000000] +16:51:10 [ 7] [ 10] [0320165105] +16:51:10 [ 11] [ 6] [805760] +16:51:10 [ 12] [ 6] [165105] +16:51:10 [ 13] [ 4] [0320] +16:51:10 [ 15] [ 4] [0320] +16:51:10 [ 18] [ 4] [6011] +16:51:10 [ 22] [ 3] [900] +16:51:10 [ 25] [ 2] [02] +16:51:10 [ 28] [ 9] [D00002000] +16:51:10 [ 32] [ 6] [621354] +16:51:10 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:51:10 [ 37] [ 12] [507903884032] +16:51:10 [ 41] [ 8] [01010400] +16:51:10 [ 42] [ 15] [NATIVE ] +16:51:10 [ 43] [ 40] [Sea Food T2 SikhottabongLAO] +16:51:10 [ 49] [ 3] [418] +16:51:10 [ 52] [ 16] [A2454C96897FF213] +16:51:10 ============================================================================ +16:51:10 + + +waiting on router queue for slot.... +16:51:10 Sending to : <4> +16:51:10 ============================================================================ +16:51:10 ============================================================================ +16:51:10 Slot Id : <315> +16:51:10 Transaction Type : REQUEST +16:51:10 Received From : +16:51:10 ============================================================================ +16:51:10 FNo. Len. Field Value +16:51:10 ============================================================================ +16:51:10 [ 1] [ 4] [0200] +16:51:10 [ 2] [ 16] [2206990000132845] +16:51:10 [ 3] [ 6] [011000] +16:51:10 [ 4] [ 12] [000020000000] +16:51:10 [ 7] [ 10] [0320165105] +16:51:10 [ 11] [ 6] [805764] +16:51:10 [ 12] [ 6] [165105] +16:51:10 [ 13] [ 4] [0320] +16:51:10 [ 15] [ 4] [0320] +16:51:10 [ 18] [ 4] [6011] +16:51:10 [ 22] [ 3] [900] +16:51:10 [ 25] [ 2] [02] +16:51:10 [ 28] [ 9] [D00002000] +16:51:10 [ 32] [ 6] [621354] +16:51:10 [ 35] [ 32] [2206990000132845=190212818088179] +16:51:10 [ 37] [ 12] [507903975709] +16:51:10 [ 41] [ 8] [01011300] +16:51:10 [ 42] [ 15] [NATIVE ] +16:51:10 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +16:51:10 [ 49] [ 3] [418] +16:51:10 [ 52] [ 16] [F0CD11622EF552E2] +16:51:10 ============================================================================ +16:51:10 + + +waiting on router queue for slot.... +16:51:10 Sending to : +16:51:10 ============================================================================ +16:51:10 Sending to : +16:51:10 ============================================================================ +16:51:11 ============================================================================ +16:51:11 Slot Id : <315> +16:51:11 Transaction Type : REQUEST +16:51:11 Received From : +16:51:11 ============================================================================ +16:51:11 FNo. Len. Field Value +16:51:11 ============================================================================ +16:51:11 [ 1] [ 4] [0200] +16:51:11 [ 2] [ 16] [2206990000132845] +16:51:11 [ 3] [ 6] [011000] +16:51:11 [ 4] [ 12] [000020000000] +16:51:11 [ 7] [ 10] [0320165105] +16:51:11 [ 11] [ 6] [805764] +16:51:11 [ 12] [ 6] [165105] +16:51:11 [ 13] [ 4] [0320] +16:51:11 [ 15] [ 4] [0320] +16:51:11 [ 18] [ 4] [6011] +16:51:11 [ 22] [ 3] [900] +16:51:11 [ 25] [ 2] [02] +16:51:11 [ 28] [ 9] [D00002000] +16:51:11 [ 32] [ 6] [621354] +16:51:11 [ 35] [ 32] [2206990000132845=190212818088179] +16:51:11 [ 37] [ 12] [507903975709] +16:51:11 [ 41] [ 8] [01011300] +16:51:11 [ 42] [ 15] [NATIVE ] +16:51:11 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +16:51:11 [ 49] [ 3] [418] +16:51:11 [ 52] [ 16] [F0CD11622EF552E2] +16:51:11 ============================================================================ +16:51:11 + + +waiting on router queue for slot.... +16:51:11 Sending to : +16:51:11 ============================================================================ +16:51:11 ============================================================================ +16:51:11 Slot Id : <315> +16:51:11 Transaction Type : REQUEST +16:51:11 Received From : +16:51:11 ============================================================================ +16:51:11 FNo. Len. Field Value +16:51:11 ============================================================================ +16:51:11 [ 1] [ 4] [0200] +16:51:11 [ 2] [ 16] [2206990000132845] +16:51:11 [ 3] [ 6] [011000] +16:51:11 [ 4] [ 12] [000020000000] +16:51:11 [ 7] [ 10] [0320165105] +16:51:11 [ 11] [ 6] [805764] +16:51:11 [ 12] [ 6] [165105] +16:51:11 [ 13] [ 4] [0320] +16:51:11 [ 15] [ 4] [0320] +16:51:11 [ 18] [ 4] [6011] +16:51:11 [ 22] [ 3] [900] +16:51:11 [ 25] [ 2] [02] +16:51:11 [ 28] [ 9] [D00002000] +16:51:11 [ 32] [ 6] [621354] +16:51:11 [ 35] [ 32] [2206990000132845=190212818088179] +16:51:11 [ 37] [ 12] [507903975709] +16:51:11 [ 41] [ 8] [01011300] +16:51:11 [ 42] [ 15] [NATIVE ] +16:51:11 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +16:51:11 [ 49] [ 3] [418] +16:51:11 [ 52] [ 16] [9A73E36B8CC108CD] +16:51:11 ============================================================================ +16:51:11 + + +waiting on router queue for slot.... +16:51:11 Sending to : <1> +16:51:11 ============================================================================ +16:51:11 ============================================================================ +16:51:11 Slot Id : <322> +16:51:11 Transaction Type : RESPONSE +16:51:11 Received From : +16:51:11 ============================================================================ +16:51:11 FNo. Len. Field Value +16:51:11 ============================================================================ +16:51:11 [ 1] [ 4] [0210] +16:51:11 [ 2] [ 16] [6688990105312209] +16:51:11 [ 3] [ 6] [011000] +16:51:11 [ 4] [ 12] [000100000000] +16:51:11 [ 11] [ 6] [805760] +16:51:11 [ 12] [ 6] [165105] +16:51:11 [ 15] [ 4] [0320] +16:51:11 [ 18] [ 4] [6011] +16:51:11 [ 32] [ 6] [621354] +16:51:11 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:51:11 [ 37] [ 12] [507903884032] +16:51:11 [ 38] [ 6] [589586] +16:51:11 [ 39] [ 2] [00] +16:51:11 [ 41] [ 8] [01010400] +16:51:11 [ 49] [ 3] [418] +16:51:11 [ 54] [ 20] [1002418C004055560703] +16:51:11 ============================================================================ +16:51:11 Sending to : +16:51:11 ============================================================================ +16:51:11 + + +waiting on router queue for slot.... +16:51:12 ============================================================================ +16:51:12 Slot Id : <325> +16:51:12 Transaction Type : REQUEST +16:51:12 Received From : +16:51:12 ============================================================================ +16:51:12 FNo. Len. Field Value +16:51:12 ============================================================================ +16:51:12 [ 1] [ 4] [0200] +16:51:12 [ 2] [ 16] [6213544000423498] +16:51:12 [ 3] [ 6] [301000] +16:51:12 [ 7] [ 10] [0320095016] +16:51:12 [ 11] [ 6] [270643] +16:51:12 [ 12] [ 6] [165016] +16:51:12 [ 13] [ 4] [0320] +16:51:12 [ 14] [ 4] [4912] +16:51:12 [ 15] [ 4] [0320] +16:51:12 [ 18] [ 4] [6011] +16:51:12 [ 19] [ 3] [418] +16:51:12 [ 22] [ 3] [021] +16:51:12 [ 25] [ 2] [01] +16:51:12 [ 32] [ 6] [180893] +16:51:12 [ 35] [ 32] [6213544000423498=491212012349890] +16:51:12 [ 37] [ 12] [507909270643] +16:51:12 [ 41] [ 8] [0363CPSH] +16:51:12 [ 42] [ 15] [999999 ] +16:51:12 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:51:12 [ 49] [ 3] [418] +16:51:12 [ 52] [ 16] [8F311223A741B474] +16:51:12 ============================================================================ +16:51:12 + + +waiting on router queue for slot.... +16:51:12 Sending to : +16:51:12 ============================================================================ +16:51:12 Sending to : +16:51:12 ============================================================================ +16:51:12 ============================================================================ +16:51:12 Slot Id : <325> +16:51:12 Transaction Type : REQUEST +16:51:12 Received From : +16:51:12 ============================================================================ +16:51:12 FNo. Len. Field Value +16:51:12 ============================================================================ +16:51:12 [ 1] [ 4] [0200] +16:51:12 [ 2] [ 16] [6213544000423498] +16:51:12 [ 3] [ 6] [301000] +16:51:12 [ 7] [ 10] [0320095016] +16:51:12 [ 11] [ 6] [270643] +16:51:12 [ 12] [ 6] [165016] +16:51:12 [ 13] [ 4] [0320] +16:51:12 [ 14] [ 4] [4912] +16:51:12 [ 15] [ 4] [0320] +16:51:12 [ 18] [ 4] [6011] +16:51:12 [ 19] [ 3] [418] +16:51:12 [ 22] [ 3] [021] +16:51:12 [ 25] [ 2] [01] +16:51:12 [ 32] [ 6] [180893] +16:51:12 [ 35] [ 32] [6213544000423498=491212012349890] +16:51:12 [ 37] [ 12] [507909270643] +16:51:12 [ 41] [ 8] [0363CPSH] +16:51:12 [ 42] [ 15] [999999 ] +16:51:12 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:51:12 [ 49] [ 3] [418] +16:51:12 [ 52] [ 16] [8F311223A741B474] +16:51:12 ============================================================================ +16:51:12 + + +waiting on router queue for slot.... +16:51:12 Sending to : +16:51:12 ============================================================================ +16:51:12 ============================================================================ +16:51:12 Slot Id : <325> +16:51:12 Transaction Type : REQUEST +16:51:12 Received From : +16:51:12 ============================================================================ +16:51:12 FNo. Len. Field Value +16:51:12 ============================================================================ +16:51:12 [ 1] [ 4] [0200] +16:51:12 [ 2] [ 16] [6213544000423498] +16:51:12 [ 3] [ 6] [301000] +16:51:12 [ 7] [ 10] [0320095016] +16:51:12 [ 11] [ 6] [270643] +16:51:12 [ 12] [ 6] [165016] +16:51:12 [ 13] [ 4] [0320] +16:51:12 [ 14] [ 4] [4912] +16:51:12 [ 15] [ 4] [0320] +16:51:12 [ 18] [ 4] [6011] +16:51:12 [ 19] [ 3] [418] +16:51:12 [ 22] [ 3] [021] +16:51:12 [ 25] [ 2] [01] +16:51:12 [ 32] [ 6] [180893] +16:51:12 [ 35] [ 32] [6213544000423498=491212012349890] +16:51:12 [ 37] [ 12] [507909270643] +16:51:12 [ 41] [ 8] [0363CPSH] +16:51:12 [ 42] [ 15] [999999 ] +16:51:12 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:51:12 [ 49] [ 3] [418] +16:51:12 [ 52] [ 16] [D9FDABCCEBDC6C8D] +16:51:12 ============================================================================ +16:51:12 + + +waiting on router queue for slot.... +16:51:12 Sending to : <0> +16:51:12 ============================================================================ +16:51:13 ============================================================================ +16:51:13 Slot Id : <325> +16:51:13 Transaction Type : RESPONSE +16:51:13 Received From : +16:51:13 ============================================================================ +16:51:13 FNo. Len. Field Value +16:51:13 ============================================================================ +16:51:13 [ 1] [ 4] [0210] +16:51:13 [ 2] [ 16] [6213544000423498] +16:51:13 [ 3] [ 6] [301000] +16:51:13 [ 4] [ 12] [000000000000] +16:51:13 [ 7] [ 10] [0320095016] +16:51:13 [ 11] [ 6] [270643] +16:51:13 [ 12] [ 6] [165016] +16:51:13 [ 13] [ 4] [0320] +16:51:13 [ 15] [ 4] [0320] +16:51:13 [ 18] [ 4] [6011] +16:51:13 [ 19] [ 3] [418] +16:51:13 [ 32] [ 6] [180893] +16:51:13 [ 35] [ 32] [6213544000423498=491212012349890] +16:51:13 [ 37] [ 12] [507909270643] +16:51:13 [ 38] [ 6] [753655] +16:51:13 [ 39] [ 2] [00] +16:51:13 [ 41] [ 8] [0363CPSH] +16:51:13 [ 49] [ 3] [418] +16:51:13 [ 54] [ 40] [1001418C0001496142101002418C000149614210] +16:51:13 ============================================================================ +16:51:13 Sending to : +16:51:13 ============================================================================ +16:51:13 + + +waiting on router queue for slot.... +16:51:13 ============================================================================ +16:51:13 Slot Id : <322> +16:51:13 Transaction Type : RESPONSE +16:51:13 Received From : +16:51:13 ============================================================================ +16:51:13 FNo. Len. Field Value +16:51:13 ============================================================================ +16:51:13 [ 1] [ 4] [0210] +16:51:13 [ 2] [ 16] [6688990105312209] +16:51:13 [ 3] [ 6] [011000] +16:51:13 [ 4] [ 12] [000100000000] +16:51:13 [ 11] [ 6] [805760] +16:51:13 [ 12] [ 6] [165105] +16:51:13 [ 15] [ 4] [0320] +16:51:13 [ 18] [ 4] [6011] +16:51:13 [ 32] [ 6] [621354] +16:51:13 [ 35] [ 37] [6688990105312209=43081231220991000000] +16:51:13 [ 37] [ 12] [507903884032] +16:51:13 [ 38] [ 6] [589586] +16:51:13 [ 39] [ 2] [00] +16:51:13 [ 41] [ 8] [01010400] +16:51:13 [ 49] [ 3] [418] +16:51:13 [ 54] [ 20] [1002418C004055560703] +16:51:13 ============================================================================ +16:51:13 Calculate Source COMM Id = 0 +16:51:13 ============================================================================ +16:51:13 + + +waiting on router queue for slot.... +16:51:13 ============================================================================ +16:51:13 Slot Id : <315> +16:51:13 Transaction Type : RESPONSE +16:51:13 Received From : +16:51:13 ============================================================================ +16:51:13 FNo. Len. Field Value +16:51:13 ============================================================================ +16:51:13 [ 1] [ 4] [0210] +16:51:13 [ 2] [ 16] [2206990000132845] +16:51:13 [ 3] [ 6] [011000] +16:51:13 [ 4] [ 12] [000020000000] +16:51:13 [ 7] [ 10] [0320165105] +16:51:13 [ 11] [ 6] [805764] +16:51:13 [ 12] [ 6] [165105] +16:51:13 [ 13] [ 4] [0320] +16:51:13 [ 15] [ 4] [0320] +16:51:13 [ 18] [ 4] [6011] +16:51:13 [ 32] [ 6] [621354] +16:51:13 [ 35] [ 32] [2206990000132845=190212818088179] +16:51:13 [ 37] [ 12] [507903975709] +16:51:13 [ 38] [ 6] [222294] +16:51:13 [ 39] [ 2] [00] +16:51:13 [ 41] [ 8] [01011300] +16:51:13 [ 49] [ 3] [418] +16:51:13 [ 54] [ 40] [1001418C0000380357001002418C000038035700] +16:51:13 ============================================================================ +16:51:13 Sending to : +16:51:13 ============================================================================ +16:51:13 + + +waiting on router queue for slot.... +16:51:14 ============================================================================ +16:51:14 Slot Id : <325> +16:51:14 Transaction Type : RESPONSE +16:51:14 Received From : +16:51:14 ============================================================================ +16:51:14 FNo. Len. Field Value +16:51:14 ============================================================================ +16:51:14 [ 1] [ 4] [0210] +16:51:14 [ 2] [ 16] [6213544000423498] +16:51:14 [ 3] [ 6] [301000] +16:51:14 [ 4] [ 12] [000000000000] +16:51:14 [ 7] [ 10] [0320095016] +16:51:14 [ 11] [ 6] [270643] +16:51:14 [ 12] [ 6] [165016] +16:51:14 [ 13] [ 4] [0320] +16:51:14 [ 15] [ 4] [0320] +16:51:14 [ 18] [ 4] [6011] +16:51:14 [ 19] [ 3] [418] +16:51:14 [ 32] [ 6] [180893] +16:51:14 [ 35] [ 32] [6213544000423498=491212012349890] +16:51:14 [ 37] [ 12] [507909270643] +16:51:14 [ 38] [ 6] [753655] +16:51:14 [ 39] [ 2] [00] +16:51:14 [ 41] [ 8] [0363CPSH] +16:51:14 [ 49] [ 3] [418] +16:51:14 [ 54] [ 40] [1001418C0001496142101002418C000149614210] +16:51:14 ============================================================================ +16:51:14 Calculate Source COMM Id = 2 +16:51:14 ============================================================================ +16:51:14 + + +waiting on router queue for slot.... +16:51:15 ============================================================================ +16:51:15 Slot Id : <297> +16:51:15 Transaction Type : REQUEST +16:51:15 Received From : +16:51:15 ============================================================================ +16:51:15 FNo. Len. Field Value +16:51:15 ============================================================================ +16:51:15 [ 1] [ 4] [0800] +16:51:15 [ 2] [ 5] [02531] +16:51:15 [ 3] [ 6] [579168] +16:51:15 [ 7] [ 10] [0320095115] +16:51:15 [ 11] [ 6] [807390] +16:51:15 [ 15] [ 10] [0320095115] +16:51:15 [ 37] [ 11] [57916807390] +16:51:15 [ 70] [ 3] [001] +16:51:15 ============================================================================ +16:51:15 + + +waiting on router queue for slot.... +16:51:15 ============================================================================ +16:51:15 Slot Id : <297> +16:51:15 Transaction Type : RESPONSE +16:51:15 Received From : +16:51:15 ============================================================================ +16:51:15 FNo. Len. Field Value +16:51:15 ============================================================================ +16:51:15 [ 1] [ 4] [0810] +16:51:15 [ 7] [ 10] [0320095115] +16:51:15 [ 11] [ 6] [807390] +16:51:15 [ 15] [ 4] [0320] +16:51:15 [ 37] [ 12] [57916807390] +16:51:15 [ 39] [ 2] [00] +16:51:15 [ 70] [ 3] [001] +16:51:15 ============================================================================ +16:51:15 Sending to : +16:51:15 ============================================================================ +16:51:15 + + +waiting on router queue for slot.... +16:51:16 ============================================================================ +16:51:16 Slot Id : <315> +16:51:16 Transaction Type : RESPONSE +16:51:16 Received From : +16:51:16 ============================================================================ +16:51:16 FNo. Len. Field Value +16:51:16 ============================================================================ +16:51:16 [ 1] [ 4] [0210] +16:51:16 [ 2] [ 16] [2206990000132845] +16:51:16 [ 3] [ 6] [011000] +16:51:16 [ 4] [ 12] [000020000000] +16:51:16 [ 7] [ 10] [0320165105] +16:51:16 [ 11] [ 6] [805764] +16:51:16 [ 12] [ 6] [165105] +16:51:16 [ 13] [ 4] [0320] +16:51:16 [ 15] [ 4] [0320] +16:51:16 [ 18] [ 4] [6011] +16:51:16 [ 32] [ 6] [621354] +16:51:16 [ 35] [ 32] [2206990000132845=190212818088179] +16:51:16 [ 37] [ 12] [507903975709] +16:51:16 [ 38] [ 6] [222294] +16:51:16 [ 39] [ 2] [00] +16:51:16 [ 41] [ 8] [01011300] +16:51:16 [ 49] [ 3] [418] +16:51:16 [ 54] [ 40] [1001418C0000380357001002418C000038035700] +16:51:16 ============================================================================ +16:51:16 Calculate Source COMM Id = 0 +16:51:16 ============================================================================ +16:51:16 + + +waiting on router queue for slot.... +16:51:18 ============================================================================ +16:51:18 Slot Id : <304> +16:51:18 Transaction Type : REQUEST +16:51:18 Received From : +16:51:18 ============================================================================ +16:51:18 FNo. Len. Field Value +16:51:18 ============================================================================ +16:51:18 [ 1] [ 4] [0200] +16:51:18 [ 2] [ 16] [1808931800013086] +16:51:18 [ 3] [ 6] [010000] +16:51:18 [ 4] [ 12] [000080000000] +16:51:18 [ 7] [ 10] [0320165113] +16:51:18 [ 11] [ 6] [805787] +16:51:18 [ 12] [ 6] [165113] +16:51:18 [ 13] [ 4] [0320] +16:51:18 [ 15] [ 4] [0320] +16:51:18 [ 18] [ 4] [6011] +16:51:18 [ 22] [ 3] [900] +16:51:18 [ 25] [ 2] [02] +16:51:18 [ 28] [ 9] [D00002000] +16:51:18 [ 32] [ 6] [621354] +16:51:18 [ 35] [ 27] [1808931800013086=1803500007] +16:51:18 [ 37] [ 12] [507904635919] +16:51:18 [ 41] [ 8] [17000800] +16:51:18 [ 42] [ 15] [NATIVE ] +16:51:18 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:51:18 [ 49] [ 3] [418] +16:51:18 [ 52] [ 16] [5038FBB29B9718CD] +16:51:18 ============================================================================ +16:51:18 + + +waiting on router queue for slot.... +16:51:18 Sending to : +16:51:18 ============================================================================ +16:51:18 Sending to : +16:51:18 ============================================================================ +16:51:18 ============================================================================ +16:51:18 Slot Id : <304> +16:51:18 Transaction Type : REQUEST +16:51:18 Received From : +16:51:18 ============================================================================ +16:51:18 FNo. Len. Field Value +16:51:18 ============================================================================ +16:51:18 [ 1] [ 4] [0200] +16:51:18 [ 2] [ 16] [1808931800013086] +16:51:18 [ 3] [ 6] [010000] +16:51:18 [ 4] [ 12] [000080000000] +16:51:18 [ 7] [ 10] [0320165113] +16:51:18 [ 11] [ 6] [805787] +16:51:18 [ 12] [ 6] [165113] +16:51:18 [ 13] [ 4] [0320] +16:51:18 [ 15] [ 4] [0320] +16:51:18 [ 18] [ 4] [6011] +16:51:18 [ 22] [ 3] [900] +16:51:18 [ 25] [ 2] [02] +16:51:18 [ 28] [ 9] [D00002000] +16:51:18 [ 32] [ 6] [621354] +16:51:18 [ 35] [ 27] [1808931800013086=1803500007] +16:51:18 [ 37] [ 12] [507904635919] +16:51:18 [ 41] [ 8] [17000800] +16:51:18 [ 42] [ 15] [NATIVE ] +16:51:18 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:51:18 [ 49] [ 3] [418] +16:51:18 [ 52] [ 16] [5038FBB29B9718CD] +16:51:18 ============================================================================ +16:51:18 + + +waiting on router queue for slot.... +16:51:18 Sending to : +16:51:18 ============================================================================ +16:51:18 ============================================================================ +16:51:18 Slot Id : <304> +16:51:18 Transaction Type : REQUEST +16:51:18 Received From : +16:51:18 ============================================================================ +16:51:18 FNo. Len. Field Value +16:51:18 ============================================================================ +16:51:18 [ 1] [ 4] [0200] +16:51:18 [ 2] [ 16] [1808931800013086] +16:51:18 [ 3] [ 6] [010000] +16:51:18 [ 4] [ 12] [000080000000] +16:51:18 [ 7] [ 10] [0320165113] +16:51:18 [ 11] [ 6] [805787] +16:51:18 [ 12] [ 6] [165113] +16:51:18 [ 13] [ 4] [0320] +16:51:18 [ 15] [ 4] [0320] +16:51:18 [ 18] [ 4] [6011] +16:51:18 [ 22] [ 3] [900] +16:51:18 [ 25] [ 2] [02] +16:51:18 [ 28] [ 9] [D00002000] +16:51:18 [ 32] [ 6] [621354] +16:51:18 [ 35] [ 27] [1808931800013086=1803500007] +16:51:18 [ 37] [ 12] [507904635919] +16:51:18 [ 41] [ 8] [17000800] +16:51:18 [ 42] [ 15] [NATIVE ] +16:51:18 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:51:18 [ 49] [ 3] [418] +16:51:18 [ 52] [ 16] [D14224C62C5F278E] +16:51:18 ============================================================================ +16:51:18 + + +waiting on router queue for slot.... +16:51:18 Sending to : <2> +16:51:18 ============================================================================ +16:51:22 ============================================================================ +16:51:22 Slot Id : <289> +16:51:22 Transaction Type : REQUEST +16:51:22 Received From : +16:51:22 ============================================================================ +16:51:22 FNo. Len. Field Value +16:51:22 ============================================================================ +16:51:22 [ 1] [ 4] [0800] +16:51:22 [ 7] [ 10] [0320094912] +16:51:22 [ 11] [ 6] [016910] +16:51:22 [ 37] [ 12] [57916016910] +16:51:22 [ 70] [ 3] [301] +16:51:22 ============================================================================ +16:51:22 + + +waiting on router queue for slot.... +16:51:22 Sending to : +16:51:22 ============================================================================ +16:51:22 ============================================================================ +16:51:22 Slot Id : <289> +16:51:22 Transaction Type : RESPONSE +16:51:22 Received From : +16:51:22 ============================================================================ +16:51:22 FNo. Len. Field Value +16:51:22 ============================================================================ +16:51:22 [ 1] [ 4] [0810] +16:51:22 [ 7] [ 10] [0320094912] +16:51:22 [ 11] [ 6] [016910] +16:51:22 [ 37] [ 12] [579160169100] +16:51:22 [ 39] [ 2] [00] +16:51:22 [ 70] [ 3] [810] +16:51:22 ============================================================================ +16:51:22 Calculate Source COMM Id = 4 +16:51:22 ============================================================================ +16:51:22 + + +waiting on router queue for slot.... +16:51:23 ============================================================================ +16:51:23 Slot Id : <304> +16:51:23 Transaction Type : RESPONSE +16:51:23 Received From : +16:51:23 ============================================================================ +16:51:23 FNo. Len. Field Value +16:51:23 ============================================================================ +16:51:23 [ 1] [ 4] [0210] +16:51:23 [ 2] [ 16] [1808931800013086] +16:51:23 [ 3] [ 6] [010000] +16:51:23 [ 4] [ 12] [000080000000] +16:51:23 [ 6] [ 12] [000080000000] +16:51:23 [ 7] [ 10] [0320165113] +16:51:23 [ 11] [ 6] [805787] +16:51:23 [ 12] [ 6] [165113] +16:51:23 [ 13] [ 4] [0320] +16:51:23 [ 18] [ 4] [6011] +16:51:23 [ 19] [ 3] [418] +16:51:23 [ 22] [ 3] [021] +16:51:23 [ 32] [ 6] [621354] +16:51:23 [ 35] [ 27] [1808931800013086=1803500007] +16:51:23 [ 37] [ 12] [507904635919] +16:51:23 [ 38] [ 6] [805787] +16:51:23 [ 39] [ 2] [00] +16:51:23 [ 41] [ 8] [17000800] +16:51:23 [ 49] [ 3] [418] +16:51:23 [ 52] [ 16] [D14224C62C5F278E] +16:51:23 [ 54] [ 20] [1001418C000012957100] +16:51:23 ============================================================================ +16:51:23 Sending to : +16:51:23 ============================================================================ +16:51:23 + + +waiting on router queue for slot.... +16:51:24 ============================================================================ +16:51:24 Slot Id : <304> +16:51:24 Transaction Type : RESPONSE +16:51:24 Received From : +16:51:24 ============================================================================ +16:51:24 FNo. Len. Field Value +16:51:24 ============================================================================ +16:51:24 [ 1] [ 4] [0210] +16:51:24 [ 2] [ 16] [1808931800013086] +16:51:24 [ 3] [ 6] [010000] +16:51:24 [ 4] [ 12] [000080000000] +16:51:24 [ 6] [ 12] [000080000000] +16:51:24 [ 7] [ 10] [0320165113] +16:51:24 [ 11] [ 6] [805787] +16:51:24 [ 12] [ 6] [165113] +16:51:24 [ 13] [ 4] [0320] +16:51:24 [ 18] [ 4] [6011] +16:51:24 [ 19] [ 3] [418] +16:51:24 [ 22] [ 3] [021] +16:51:24 [ 32] [ 6] [621354] +16:51:24 [ 35] [ 27] [1808931800013086=1803500007] +16:51:24 [ 37] [ 12] [507904635919] +16:51:24 [ 38] [ 6] [805787] +16:51:24 [ 39] [ 2] [00] +16:51:24 [ 41] [ 8] [17000800] +16:51:24 [ 49] [ 3] [418] +16:51:24 [ 52] [ 16] [D14224C62C5F278E] +16:51:24 [ 54] [ 20] [1001418C000012957100] +16:51:24 ============================================================================ +16:51:24 Calculate Source COMM Id = 0 +16:51:24 ============================================================================ +16:51:24 + + +waiting on router queue for slot.... +16:51:31 ============================================================================ +16:51:31 Slot Id : <326> +16:51:31 Transaction Type : REQUEST +16:51:31 Received From : +16:51:31 ============================================================================ +16:51:31 FNo. Len. Field Value +16:51:31 ============================================================================ +16:51:31 [ 1] [ 4] [0800] +16:51:31 [ 7] [ 10] [0320095038] +16:51:31 [ 11] [ 6] [157318] +16:51:31 [ 70] [ 3] [301] +16:51:31 ============================================================================ +16:51:31 + + +waiting on router queue for slot.... +16:51:31 Sending to : +16:51:31 ============================================================================ +16:51:31 ============================================================================ +16:51:31 Slot Id : <326> +16:51:31 Transaction Type : RESPONSE +16:51:31 Received From : +16:51:31 ============================================================================ +16:51:31 FNo. Len. Field Value +16:51:31 ============================================================================ +16:51:31 [ 1] [ 4] [0810] +16:51:31 [ 7] [ 10] [0320095038] +16:51:31 [ 11] [ 6] [157318] +16:51:31 [ 39] [ 2] [00] +16:51:31 [ 70] [ 3] [301] +16:51:31 ============================================================================ +16:51:31 Calculate Source COMM Id = 2 +16:51:31 ============================================================================ +16:51:31 + + +waiting on router queue for slot.... +16:51:34 ============================================================================ +16:51:34 Slot Id : <285> +16:51:34 Transaction Type : REQUEST +16:51:34 Received From : +16:51:34 ============================================================================ +16:51:34 FNo. Len. Field Value +16:51:34 ============================================================================ +16:51:34 [ 0] [ 4] [0420] +16:51:34 [ 1] [ 4] [0420] +16:51:34 [ 2] [ 16] [6688990102793104] +16:51:34 [ 3] [ 6] [011000] +16:51:34 [ 4] [ 12] [000010000000] +16:51:34 [ 6] [ 12] [000010000000] +16:51:34 [ 7] [ 10] [0320164937] +16:51:34 [ 11] [ 6] [805341] +16:51:34 [ 12] [ 6] [164937] +16:51:34 [ 13] [ 4] [0320] +16:51:34 [ 15] [ 4] [0320] +16:51:34 [ 18] [ 4] [6011] +16:51:34 [ 22] [ 3] [900] +16:51:34 [ 25] [ 2] [02] +16:51:34 [ 28] [ 9] [D00002000] +16:51:34 [ 32] [ 6] [621354] +16:51:34 [ 35] [ 37] [6688990102793104=42101231310460600000] +16:51:34 [ 37] [ 12] [507905344241] +16:51:34 [ 39] [ 2] [00] +16:51:34 [ 41] [ 8] [15001200] +16:51:34 [ 42] [ 15] [NATIVE ] +16:51:34 [ 43] [ 40] [Borkham Lek20 Bolikhamxay LAO] +16:51:34 [ 49] [ 3] [418] +16:51:34 [ 52] [ 16] [7798128B7B868D5F] +16:51:34 ============================================================================ +16:51:34 + + +waiting on router queue for slot.... +16:51:35 ============================================================================ +16:51:35 Slot Id : <285> +16:51:35 Transaction Type : RESPONSE +16:51:35 Received From : +16:51:35 ============================================================================ +16:51:35 FNo. Len. Field Value +16:51:35 ============================================================================ +16:51:35 [ 1] [ 4] [0430] +16:51:35 [ 2] [ 16] [6688990102793104] +16:51:35 [ 3] [ 6] [011000] +16:51:35 [ 4] [ 12] [000010000000] +16:51:35 [ 7] [ 10] [0320164937] +16:51:35 [ 11] [ 6] [805341] +16:51:35 [ 32] [ 6] [621354] +16:51:35 [ 35] [ 37] [6688990102793104=42101231310460600000] +16:51:35 [ 37] [ 12] [507905344241] +16:51:35 [ 39] [ 2] [00] +16:51:35 [ 41] [ 8] [15001200] +16:51:35 [ 43] [ 40] [Borkham Lek20 Bolikhamxay LAO] +16:51:35 [ 49] [ 3] [418] +16:51:35 [ 90] [ 42] [020080534103201649370000062135400000000000] +16:51:35 ============================================================================ +16:51:35 Successfully send the slot [285] To REVERSAL Process +16:51:35 + + +waiting on router queue for slot.... +16:51:41 ============================================================================ +16:51:41 Slot Id : <301> +16:51:41 Transaction Type : REQUEST +16:51:41 Received From : +16:51:41 ============================================================================ +16:51:41 FNo. Len. Field Value +16:51:41 ============================================================================ +16:51:41 [ 1] [ 4] [0200] +16:51:41 [ 2] [ 16] [6213544002180112] +16:51:41 [ 3] [ 6] [301000] +16:51:41 [ 4] [ 12] [000000000000] +16:51:41 [ 7] [ 10] [0320165201] +16:51:41 [ 11] [ 6] [209039] +16:51:41 [ 12] [ 6] [164707] +16:51:41 [ 13] [ 4] [0320] +16:51:41 [ 14] [ 4] [4912] +16:51:41 [ 15] [ 4] [0320] +16:51:41 [ 18] [ 4] [6011] +16:51:41 [ 19] [ 3] [418] +16:51:41 [ 22] [ 3] [021] +16:51:41 [ 25] [ 2] [01] +16:51:41 [ 28] [ 9] [D00000000] +16:51:41 [ 32] [ 6] [198901] +16:51:41 [ 35] [ 32] [6213544002180112=491212018011298] +16:51:41 [ 37] [ 12] [507916209039] +16:51:41 [ 41] [ 8] [19529001] +16:51:41 [ 42] [ 15] [000000041952901] +16:51:41 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:51:41 [ 49] [ 3] [418] +16:51:41 [ 52] [ 16] [9558D4C4BF7DE4F2] +16:51:41 ============================================================================ +16:51:41 + + +waiting on router queue for slot.... +16:51:41 Sending to : +16:51:41 ============================================================================ +16:51:41 Sending to : +16:51:41 ============================================================================ +16:51:41 ============================================================================ +16:51:41 Slot Id : <301> +16:51:41 Transaction Type : REQUEST +16:51:41 Received From : +16:51:41 ============================================================================ +16:51:41 FNo. Len. Field Value +16:51:41 ============================================================================ +16:51:41 [ 1] [ 4] [0200] +16:51:41 [ 2] [ 16] [6213544002180112] +16:51:41 [ 3] [ 6] [301000] +16:51:41 [ 4] [ 12] [000000000000] +16:51:41 [ 7] [ 10] [0320165201] +16:51:41 [ 11] [ 6] [209039] +16:51:41 [ 12] [ 6] [164707] +16:51:41 [ 13] [ 4] [0320] +16:51:41 [ 14] [ 4] [4912] +16:51:41 [ 15] [ 4] [0320] +16:51:41 [ 18] [ 4] [6011] +16:51:41 [ 19] [ 3] [418] +16:51:41 [ 22] [ 3] [021] +16:51:41 [ 25] [ 2] [01] +16:51:41 [ 28] [ 9] [D00000000] +16:51:41 [ 32] [ 6] [198901] +16:51:41 [ 35] [ 32] [6213544002180112=491212018011298] +16:51:41 [ 37] [ 12] [507916209039] +16:51:41 [ 41] [ 8] [19529001] +16:51:41 [ 42] [ 15] [000000041952901] +16:51:41 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:51:41 [ 49] [ 3] [418] +16:51:41 [ 52] [ 16] [9558D4C4BF7DE4F2] +16:51:41 ============================================================================ +16:51:41 + + +waiting on router queue for slot.... +16:51:41 Sending to : +16:51:41 ============================================================================ +16:51:41 ============================================================================ +16:51:41 Slot Id : <301> +16:51:41 Transaction Type : REQUEST +16:51:41 Received From : +16:51:41 ============================================================================ +16:51:41 FNo. Len. Field Value +16:51:41 ============================================================================ +16:51:41 [ 1] [ 4] [0200] +16:51:41 [ 2] [ 16] [6213544002180112] +16:51:41 [ 3] [ 6] [301000] +16:51:41 [ 4] [ 12] [000000000000] +16:51:41 [ 7] [ 10] [0320165201] +16:51:41 [ 11] [ 6] [209039] +16:51:41 [ 12] [ 6] [164707] +16:51:41 [ 13] [ 4] [0320] +16:51:41 [ 14] [ 4] [4912] +16:51:41 [ 15] [ 4] [0320] +16:51:41 [ 18] [ 4] [6011] +16:51:41 [ 19] [ 3] [418] +16:51:41 [ 22] [ 3] [021] +16:51:41 [ 25] [ 2] [01] +16:51:41 [ 28] [ 9] [D00000000] +16:51:41 [ 32] [ 6] [198901] +16:51:41 [ 35] [ 32] [6213544002180112=491212018011298] +16:51:41 [ 37] [ 12] [507916209039] +16:51:41 [ 41] [ 8] [19529001] +16:51:41 [ 42] [ 15] [000000041952901] +16:51:41 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:51:41 [ 49] [ 3] [418] +16:51:41 [ 52] [ 16] [4B4CBA56C27774B5] +16:51:41 ============================================================================ +16:51:41 + + +waiting on router queue for slot.... +16:51:41 Sending to : <0> +16:51:41 ============================================================================ +16:51:41 ============================================================================ +16:51:41 Slot Id : <301> +16:51:41 Transaction Type : RESPONSE +16:51:41 Received From : +16:51:41 ============================================================================ +16:51:41 FNo. Len. Field Value +16:51:41 ============================================================================ +16:51:41 [ 1] [ 4] [0210] +16:51:41 [ 2] [ 16] [6213544002180112] +16:51:41 [ 3] [ 6] [301000] +16:51:41 [ 4] [ 12] [000000000000] +16:51:41 [ 7] [ 10] [0320165201] +16:51:41 [ 11] [ 6] [209039] +16:51:41 [ 12] [ 6] [164707] +16:51:41 [ 13] [ 4] [0320] +16:51:41 [ 15] [ 4] [0320] +16:51:41 [ 18] [ 4] [6011] +16:51:41 [ 19] [ 3] [418] +16:51:41 [ 32] [ 6] [198901] +16:51:41 [ 35] [ 32] [6213544002180112=491212018011298] +16:51:41 [ 37] [ 12] [507916209039] +16:51:41 [ 38] [ 6] [732573] +16:51:41 [ 39] [ 2] [00] +16:51:41 [ 41] [ 8] [19529001] +16:51:41 [ 49] [ 3] [418] +16:51:41 [ 54] [ 40] [1001418C0000644010411002418C000064401041] +16:51:41 ============================================================================ +16:51:41 Sending to : +16:51:41 ============================================================================ +16:51:41 + + +waiting on router queue for slot.... +16:51:42 ============================================================================ +16:51:42 Slot Id : <291> +16:51:42 Transaction Type : REQUEST +16:51:42 Received From : +16:51:42 ============================================================================ +16:51:42 FNo. Len. Field Value +16:51:42 ============================================================================ +16:51:42 [ 1] [ 4] [0800] +16:51:42 [ 7] [ 10] [0320095049] +16:51:42 [ 11] [ 6] [157319] +16:51:42 [ 70] [ 3] [301] +16:51:42 ============================================================================ +16:51:42 + + +waiting on router queue for slot.... +16:51:42 Sending to : +16:51:42 ============================================================================ +16:51:42 ============================================================================ +16:51:42 Slot Id : <291> +16:51:42 Transaction Type : RESPONSE +16:51:42 Received From : +16:51:42 ============================================================================ +16:51:42 FNo. Len. Field Value +16:51:42 ============================================================================ +16:51:42 [ 1] [ 4] [0810] +16:51:42 [ 7] [ 10] [0320095049] +16:51:42 [ 11] [ 6] [157319] +16:51:42 [ 39] [ 2] [00] +16:51:42 [ 70] [ 3] [301] +16:51:42 ============================================================================ +16:51:42 Calculate Source COMM Id = 2 +16:51:42 ============================================================================ +16:51:42 + + +waiting on router queue for slot.... +16:51:43 ============================================================================ +16:51:43 Slot Id : <301> +16:51:43 Transaction Type : RESPONSE +16:51:43 Received From : +16:51:43 ============================================================================ +16:51:43 FNo. Len. Field Value +16:51:43 ============================================================================ +16:51:43 [ 1] [ 4] [0210] +16:51:43 [ 2] [ 16] [6213544002180112] +16:51:43 [ 3] [ 6] [301000] +16:51:43 [ 4] [ 12] [000000000000] +16:51:43 [ 7] [ 10] [0320165201] +16:51:43 [ 11] [ 6] [209039] +16:51:43 [ 12] [ 6] [164707] +16:51:43 [ 13] [ 4] [0320] +16:51:43 [ 15] [ 4] [0320] +16:51:43 [ 18] [ 4] [6011] +16:51:43 [ 19] [ 3] [418] +16:51:43 [ 32] [ 6] [198901] +16:51:43 [ 35] [ 32] [6213544002180112=491212018011298] +16:51:43 [ 37] [ 12] [507916209039] +16:51:43 [ 38] [ 6] [732573] +16:51:43 [ 39] [ 2] [00] +16:51:43 [ 41] [ 8] [19529001] +16:51:43 [ 49] [ 3] [418] +16:51:43 [ 54] [ 40] [1001418C0000644010411002418C000064401041] +16:51:43 ============================================================================ +16:51:43 Calculate Source COMM Id = 5 +16:51:43 ============================================================================ +16:51:43 + + +waiting on router queue for slot.... +16:51:44 ============================================================================ +16:51:44 Slot Id : <331> +16:51:44 Transaction Type : REQUEST +16:51:44 Received From : +16:51:44 ============================================================================ +16:51:44 FNo. Len. Field Value +16:51:44 ============================================================================ +16:51:44 [ 1] [ 4] [0200] +16:51:44 [ 2] [ 16] [6213545001075187] +16:51:44 [ 3] [ 6] [010000] +16:51:44 [ 4] [ 12] [000040000000] +16:51:44 [ 7] [ 10] [0320164934] +16:51:44 [ 11] [ 6] [952467] +16:51:44 [ 12] [ 6] [164934] +16:51:44 [ 13] [ 4] [0320] +16:51:44 [ 15] [ 4] [0320] +16:51:44 [ 18] [ 4] [6011] +16:51:44 [ 19] [ 3] [418] +16:51:44 [ 22] [ 3] [021] +16:51:44 [ 25] [ 2] [01] +16:51:44 [ 28] [ 9] [D00002000] +16:51:44 [ 32] [ 6] [668899] +16:51:44 [ 35] [ 32] [6213545001075187=491212017518363] +16:51:44 [ 37] [ 12] [507900285849] +16:51:44 [ 41] [ 8] [03010005] +16:51:44 [ 42] [ 15] [APT ] +16:51:44 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +16:51:44 [ 49] [ 3] [418] +16:51:44 [ 52] [ 16] [E961F9156A18717C] +16:51:44 ============================================================================ +16:51:44 + + +waiting on router queue for slot.... +16:51:44 Sending to : +16:51:44 ============================================================================ +16:51:44 Sending to : +16:51:44 ============================================================================ +16:51:44 ============================================================================ +16:51:44 Slot Id : <331> +16:51:44 Transaction Type : REQUEST +16:51:44 Received From : +16:51:44 ============================================================================ +16:51:44 FNo. Len. Field Value +16:51:44 ============================================================================ +16:51:44 [ 1] [ 4] [0200] +16:51:44 [ 2] [ 16] [6213545001075187] +16:51:44 [ 3] [ 6] [010000] +16:51:44 [ 4] [ 12] [000040000000] +16:51:44 [ 7] [ 10] [0320164934] +16:51:44 [ 11] [ 6] [952467] +16:51:44 [ 12] [ 6] [164934] +16:51:44 [ 13] [ 4] [0320] +16:51:44 [ 15] [ 4] [0320] +16:51:44 [ 18] [ 4] [6011] +16:51:44 [ 19] [ 3] [418] +16:51:44 [ 22] [ 3] [021] +16:51:44 [ 25] [ 2] [01] +16:51:44 [ 28] [ 9] [D00002000] +16:51:44 [ 32] [ 6] [668899] +16:51:44 [ 35] [ 32] [6213545001075187=491212017518363] +16:51:44 [ 37] [ 12] [507900285849] +16:51:44 [ 41] [ 8] [03010005] +16:51:44 [ 42] [ 15] [APT ] +16:51:44 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +16:51:44 [ 49] [ 3] [418] +16:51:44 [ 52] [ 16] [E961F9156A18717C] +16:51:44 ============================================================================ +16:51:44 + + +waiting on router queue for slot.... +16:51:44 Sending to : +16:51:44 ============================================================================ +16:51:44 ============================================================================ +16:51:44 Slot Id : <331> +16:51:44 Transaction Type : REQUEST +16:51:44 Received From : +16:51:44 ============================================================================ +16:51:44 FNo. Len. Field Value +16:51:44 ============================================================================ +16:51:44 [ 1] [ 4] [0200] +16:51:44 [ 2] [ 16] [6213545001075187] +16:51:44 [ 3] [ 6] [010000] +16:51:44 [ 4] [ 12] [000040000000] +16:51:44 [ 7] [ 10] [0320164934] +16:51:44 [ 11] [ 6] [952467] +16:51:44 [ 12] [ 6] [164934] +16:51:44 [ 13] [ 4] [0320] +16:51:44 [ 15] [ 4] [0320] +16:51:44 [ 18] [ 4] [6011] +16:51:44 [ 19] [ 3] [418] +16:51:44 [ 22] [ 3] [021] +16:51:44 [ 25] [ 2] [01] +16:51:44 [ 28] [ 9] [D00002000] +16:51:44 [ 32] [ 6] [668899] +16:51:44 [ 35] [ 32] [6213545001075187=491212017518363] +16:51:44 [ 37] [ 12] [507900285849] +16:51:44 [ 41] [ 8] [03010005] +16:51:44 [ 42] [ 15] [APT ] +16:51:44 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +16:51:44 [ 49] [ 3] [418] +16:51:44 [ 52] [ 16] [58FF353F79199AA0] +16:51:44 ============================================================================ +16:51:44 + + +waiting on router queue for slot.... +16:51:44 Sending to : <0> +16:51:44 ============================================================================ +16:51:45 ============================================================================ +16:51:45 Slot Id : <331> +16:51:45 Transaction Type : RESPONSE +16:51:45 Received From : +16:51:45 ============================================================================ +16:51:45 FNo. Len. Field Value +16:51:45 ============================================================================ +16:51:45 [ 1] [ 4] [0210] +16:51:45 [ 2] [ 16] [6213545001075187] +16:51:45 [ 3] [ 6] [010000] +16:51:45 [ 4] [ 12] [000040000000] +16:51:45 [ 7] [ 10] [0320164934] +16:51:45 [ 11] [ 6] [952467] +16:51:45 [ 12] [ 6] [164934] +16:51:45 [ 13] [ 4] [0320] +16:51:45 [ 15] [ 4] [0320] +16:51:45 [ 18] [ 4] [6011] +16:51:45 [ 19] [ 3] [418] +16:51:45 [ 32] [ 6] [668899] +16:51:45 [ 35] [ 32] [6213545001075187=491212017518363] +16:51:45 [ 37] [ 12] [507900285849] +16:51:45 [ 38] [ 6] [664254] +16:51:45 [ 39] [ 2] [00] +16:51:45 [ 41] [ 8] [03010005] +16:51:45 [ 49] [ 3] [418] +16:51:45 [ 54] [ 40] [0001418C0002415787230002418C000241578723] +16:51:45 ============================================================================ +16:51:45 Sending to : +16:51:45 ============================================================================ +16:51:45 + + +waiting on router queue for slot.... +16:51:45 ============================================================================ +16:51:45 Slot Id : <327> +16:51:45 Transaction Type : REQUEST +16:51:45 Received From : +16:51:45 ============================================================================ +16:51:45 FNo. Len. Field Value +16:51:45 ============================================================================ +16:51:45 [ 1] [ 4] [0800] +16:51:45 [ 7] [ 10] [0321000333] +16:51:45 [ 11] [ 6] [170333] +16:51:45 [ 37] [ 12] [57917170333] +16:51:45 [ 70] [ 3] [301] +16:51:45 ============================================================================ +16:51:45 + + +waiting on router queue for slot.... +16:51:45 Sending to : +16:51:45 ============================================================================ +16:51:45 ============================================================================ +16:51:45 Slot Id : <327> +16:51:45 Transaction Type : RESPONSE +16:51:45 Received From : +16:51:45 ============================================================================ +16:51:45 FNo. Len. Field Value +16:51:45 ============================================================================ +16:51:45 [ 1] [ 4] [0810] +16:51:45 [ 7] [ 10] [0321000333] +16:51:45 [ 11] [ 6] [170333] +16:51:45 [ 37] [ 12] [579171703330] +16:51:45 [ 39] [ 2] [00] +16:51:45 [ 70] [ 3] [810] +16:51:45 ============================================================================ +16:51:45 Calculate Source COMM Id = 6 +16:51:45 ============================================================================ +16:51:45 + + +waiting on router queue for slot.... +16:51:46 ============================================================================ +16:51:46 Slot Id : <331> +16:51:46 Transaction Type : RESPONSE +16:51:46 Received From : +16:51:46 ============================================================================ +16:51:46 FNo. Len. Field Value +16:51:46 ============================================================================ +16:51:46 [ 1] [ 4] [0210] +16:51:46 [ 2] [ 16] [6213545001075187] +16:51:46 [ 3] [ 6] [010000] +16:51:46 [ 4] [ 12] [000040000000] +16:51:46 [ 7] [ 10] [0320164934] +16:51:46 [ 11] [ 6] [952467] +16:51:46 [ 12] [ 6] [164934] +16:51:46 [ 13] [ 4] [0320] +16:51:46 [ 15] [ 4] [0320] +16:51:46 [ 18] [ 4] [6011] +16:51:46 [ 19] [ 3] [418] +16:51:46 [ 32] [ 6] [668899] +16:51:46 [ 35] [ 32] [6213545001075187=491212017518363] +16:51:46 [ 37] [ 12] [507900285849] +16:51:46 [ 38] [ 6] [664254] +16:51:46 [ 39] [ 2] [00] +16:51:46 [ 41] [ 8] [03010005] +16:51:46 [ 49] [ 3] [418] +16:51:46 [ 54] [ 40] [0001418C0002415787230002418C000241578723] +16:51:46 ============================================================================ +16:51:46 Calculate Source COMM Id = 4 +16:51:46 ============================================================================ +16:51:46 + + +waiting on router queue for slot.... +16:51:57 ============================================================================ +16:51:57 Slot Id : <305> +16:51:57 Transaction Type : REQUEST +16:51:57 Received From : +16:51:57 ============================================================================ +16:51:57 FNo. Len. Field Value +16:51:57 ============================================================================ +16:51:57 [ 1] [ 4] [0800] +16:51:57 [ 7] [ 10] [0320095104] +16:51:57 [ 11] [ 6] [157320] +16:51:57 [ 70] [ 3] [301] +16:51:57 ============================================================================ +16:51:57 + + +waiting on router queue for slot.... +16:51:57 Sending to : +16:51:57 ============================================================================ +16:51:57 ============================================================================ +16:51:57 Slot Id : <305> +16:51:57 Transaction Type : RESPONSE +16:51:57 Received From : +16:51:57 ============================================================================ +16:51:57 FNo. Len. Field Value +16:51:57 ============================================================================ +16:51:57 [ 1] [ 4] [0810] +16:51:57 [ 7] [ 10] [0320095104] +16:51:57 [ 11] [ 6] [157320] +16:51:57 [ 39] [ 2] [00] +16:51:57 [ 70] [ 3] [301] +16:51:57 ============================================================================ +16:51:57 Calculate Source COMM Id = 2 +16:51:57 ============================================================================ +16:51:57 + + +waiting on router queue for slot.... +16:52:08 ============================================================================ +16:52:08 Slot Id : <302> +16:52:08 Transaction Type : REQUEST +16:52:08 Received From : +16:52:08 ============================================================================ +16:52:08 FNo. Len. Field Value +16:52:08 ============================================================================ +16:52:08 [ 1] [ 4] [0200] +16:52:08 [ 2] [ 16] [6213544002180112] +16:52:08 [ 3] [ 6] [011000] +16:52:08 [ 4] [ 12] [000055000000] +16:52:08 [ 7] [ 10] [0320165229] +16:52:08 [ 11] [ 6] [209040] +16:52:08 [ 12] [ 6] [164734] +16:52:08 [ 13] [ 4] [0320] +16:52:08 [ 14] [ 4] [4912] +16:52:08 [ 15] [ 4] [0320] +16:52:08 [ 18] [ 4] [6011] +16:52:08 [ 19] [ 3] [418] +16:52:08 [ 22] [ 3] [021] +16:52:08 [ 25] [ 2] [01] +16:52:08 [ 28] [ 9] [D00002000] +16:52:08 [ 32] [ 6] [198901] +16:52:08 [ 35] [ 32] [6213544002180112=491212018011298] +16:52:08 [ 37] [ 12] [507916209040] +16:52:08 [ 41] [ 8] [19529001] +16:52:08 [ 42] [ 15] [000000041952901] +16:52:08 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:52:08 [ 49] [ 3] [418] +16:52:08 [ 52] [ 16] [9558D4C4BF7DE4F2] +16:52:08 ============================================================================ +16:52:08 + + +waiting on router queue for slot.... +16:52:08 Sending to : +16:52:08 ============================================================================ +16:52:08 Sending to : +16:52:08 ============================================================================ +16:52:08 ============================================================================ +16:52:08 Slot Id : <302> +16:52:08 Transaction Type : REQUEST +16:52:08 Received From : +16:52:08 ============================================================================ +16:52:08 FNo. Len. Field Value +16:52:08 ============================================================================ +16:52:08 [ 1] [ 4] [0200] +16:52:08 [ 2] [ 16] [6213544002180112] +16:52:08 [ 3] [ 6] [011000] +16:52:08 [ 4] [ 12] [000055000000] +16:52:08 [ 7] [ 10] [0320165229] +16:52:08 [ 11] [ 6] [209040] +16:52:08 [ 12] [ 6] [164734] +16:52:08 [ 13] [ 4] [0320] +16:52:08 [ 14] [ 4] [4912] +16:52:08 [ 15] [ 4] [0320] +16:52:08 [ 18] [ 4] [6011] +16:52:08 [ 19] [ 3] [418] +16:52:08 [ 22] [ 3] [021] +16:52:08 [ 25] [ 2] [01] +16:52:08 [ 28] [ 9] [D00002000] +16:52:08 [ 32] [ 6] [198901] +16:52:08 [ 35] [ 32] [6213544002180112=491212018011298] +16:52:08 [ 37] [ 12] [507916209040] +16:52:08 [ 41] [ 8] [19529001] +16:52:08 [ 42] [ 15] [000000041952901] +16:52:08 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:52:08 [ 49] [ 3] [418] +16:52:08 [ 52] [ 16] [9558D4C4BF7DE4F2] +16:52:08 ============================================================================ +16:52:08 + + +waiting on router queue for slot.... +16:52:08 Sending to : +16:52:08 ============================================================================ +16:52:08 ============================================================================ +16:52:08 Slot Id : <302> +16:52:08 Transaction Type : REQUEST +16:52:08 Received From : +16:52:08 ============================================================================ +16:52:08 FNo. Len. Field Value +16:52:08 ============================================================================ +16:52:08 [ 1] [ 4] [0200] +16:52:08 [ 2] [ 16] [6213544002180112] +16:52:08 [ 3] [ 6] [011000] +16:52:08 [ 4] [ 12] [000055000000] +16:52:08 [ 7] [ 10] [0320165229] +16:52:08 [ 11] [ 6] [209040] +16:52:08 [ 12] [ 6] [164734] +16:52:08 [ 13] [ 4] [0320] +16:52:08 [ 14] [ 4] [4912] +16:52:08 [ 15] [ 4] [0320] +16:52:08 [ 18] [ 4] [6011] +16:52:08 [ 19] [ 3] [418] +16:52:08 [ 22] [ 3] [021] +16:52:08 [ 25] [ 2] [01] +16:52:08 [ 28] [ 9] [D00002000] +16:52:08 [ 32] [ 6] [198901] +16:52:08 [ 35] [ 32] [6213544002180112=491212018011298] +16:52:08 [ 37] [ 12] [507916209040] +16:52:08 [ 41] [ 8] [19529001] +16:52:08 [ 42] [ 15] [000000041952901] +16:52:08 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:52:08 [ 49] [ 3] [418] +16:52:08 [ 52] [ 16] [4B4CBA56C27774B5] +16:52:08 ============================================================================ +16:52:08 + + +waiting on router queue for slot.... +16:52:08 Sending to : <0> +16:52:08 ============================================================================ +16:52:09 ============================================================================ +16:52:09 Slot Id : <302> +16:52:09 Transaction Type : RESPONSE +16:52:09 Received From : +16:52:09 ============================================================================ +16:52:09 FNo. Len. Field Value +16:52:09 ============================================================================ +16:52:09 [ 1] [ 4] [0210] +16:52:09 [ 2] [ 16] [6213544002180112] +16:52:09 [ 3] [ 6] [011000] +16:52:09 [ 4] [ 12] [000055000000] +16:52:09 [ 7] [ 10] [0320165229] +16:52:09 [ 11] [ 6] [209040] +16:52:09 [ 12] [ 6] [164734] +16:52:09 [ 13] [ 4] [0320] +16:52:09 [ 15] [ 4] [0320] +16:52:09 [ 18] [ 4] [6011] +16:52:09 [ 19] [ 3] [418] +16:52:09 [ 32] [ 6] [198901] +16:52:09 [ 35] [ 32] [6213544002180112=491212018011298] +16:52:09 [ 37] [ 12] [507916209040] +16:52:09 [ 38] [ 6] [061859] +16:52:09 [ 39] [ 2] [00] +16:52:09 [ 41] [ 8] [19529001] +16:52:09 [ 49] [ 3] [418] +16:52:09 [ 54] [ 40] [1001418C0000092010411002418C000009201041] +16:52:09 ============================================================================ +16:52:09 Sending to : +16:52:09 ============================================================================ +16:52:09 + + +waiting on router queue for slot.... +16:52:10 ============================================================================ +16:52:10 Slot Id : <302> +16:52:10 Transaction Type : RESPONSE +16:52:10 Received From : +16:52:10 ============================================================================ +16:52:10 FNo. Len. Field Value +16:52:10 ============================================================================ +16:52:10 [ 1] [ 4] [0210] +16:52:10 [ 2] [ 16] [6213544002180112] +16:52:10 [ 3] [ 6] [011000] +16:52:10 [ 4] [ 12] [000055000000] +16:52:10 [ 7] [ 10] [0320165229] +16:52:10 [ 11] [ 6] [209040] +16:52:10 [ 12] [ 6] [164734] +16:52:10 [ 13] [ 4] [0320] +16:52:10 [ 15] [ 4] [0320] +16:52:10 [ 18] [ 4] [6011] +16:52:10 [ 19] [ 3] [418] +16:52:10 [ 32] [ 6] [198901] +16:52:10 [ 35] [ 32] [6213544002180112=491212018011298] +16:52:10 [ 37] [ 12] [507916209040] +16:52:10 [ 38] [ 6] [061859] +16:52:10 [ 39] [ 2] [00] +16:52:10 [ 41] [ 8] [19529001] +16:52:10 [ 49] [ 3] [418] +16:52:10 [ 54] [ 40] [1001418C0000092010411002418C000009201041] +16:52:10 ============================================================================ +16:52:10 Calculate Source COMM Id = 5 +16:52:10 ============================================================================ +16:52:10 + + +waiting on router queue for slot.... +16:52:14 ============================================================================ +16:52:14 Slot Id : <314> +16:52:14 Transaction Type : REQUEST +16:52:14 Received From : +16:52:14 ============================================================================ +16:52:14 FNo. Len. Field Value +16:52:14 ============================================================================ +16:52:14 [ 1] [ 4] [0800] +16:52:14 [ 7] [ 10] [0320095120] +16:52:14 [ 11] [ 6] [157321] +16:52:14 [ 70] [ 3] [301] +16:52:14 ============================================================================ +16:52:14 + + +waiting on router queue for slot.... +16:52:14 Sending to : +16:52:14 ============================================================================ +16:52:14 ============================================================================ +16:52:14 Slot Id : <314> +16:52:14 Transaction Type : RESPONSE +16:52:14 Received From : +16:52:14 ============================================================================ +16:52:14 FNo. Len. Field Value +16:52:14 ============================================================================ +16:52:14 [ 1] [ 4] [0810] +16:52:14 [ 7] [ 10] [0320095120] +16:52:14 [ 11] [ 6] [157321] +16:52:14 [ 39] [ 2] [00] +16:52:14 [ 70] [ 3] [301] +16:52:14 ============================================================================ +16:52:14 Calculate Source COMM Id = 2 +16:52:14 ============================================================================ +16:52:14 + + +waiting on router queue for slot.... +16:52:17 ============================================================================ +16:52:17 Slot Id : <292> +16:52:17 Transaction Type : REQUEST +16:52:17 Received From : +16:52:17 ============================================================================ +16:52:17 FNo. Len. Field Value +16:52:17 ============================================================================ +16:52:17 [ 1] [ 4] [0800] +16:52:17 [ 2] [ 5] [02531] +16:52:17 [ 3] [ 6] [579168] +16:52:17 [ 7] [ 10] [0320095217] +16:52:17 [ 11] [ 6] [807391] +16:52:17 [ 15] [ 10] [0320095217] +16:52:17 [ 37] [ 11] [57916807391] +16:52:17 [ 70] [ 3] [001] +16:52:17 ============================================================================ +16:52:17 + + +waiting on router queue for slot.... +16:52:17 ============================================================================ +16:52:17 Slot Id : <292> +16:52:17 Transaction Type : RESPONSE +16:52:17 Received From : +16:52:17 ============================================================================ +16:52:17 FNo. Len. Field Value +16:52:17 ============================================================================ +16:52:17 [ 1] [ 4] [0810] +16:52:17 [ 7] [ 10] [0320095217] +16:52:17 [ 11] [ 6] [807391] +16:52:17 [ 15] [ 4] [0320] +16:52:17 [ 37] [ 12] [57916807391] +16:52:17 [ 39] [ 2] [00] +16:52:17 [ 70] [ 3] [001] +16:52:17 ============================================================================ +16:52:17 Sending to : +16:52:17 ============================================================================ +16:52:17 + + +waiting on router queue for slot.... +16:52:21 ============================================================================ +16:52:21 Slot Id : <335> +16:52:21 Transaction Type : REQUEST +16:52:21 Received From : +16:52:21 ============================================================================ +16:52:21 FNo. Len. Field Value +16:52:21 ============================================================================ +16:52:21 [ 1] [ 4] [0200] +16:52:21 [ 2] [ 16] [6213544000423498] +16:52:21 [ 3] [ 6] [010000] +16:52:21 [ 4] [ 12] [000100000000] +16:52:21 [ 7] [ 10] [0320095127] +16:52:21 [ 11] [ 6] [270650] +16:52:21 [ 12] [ 6] [165127] +16:52:21 [ 13] [ 4] [0320] +16:52:21 [ 14] [ 4] [4912] +16:52:21 [ 15] [ 4] [0320] +16:52:21 [ 18] [ 4] [6011] +16:52:21 [ 19] [ 3] [418] +16:52:21 [ 22] [ 3] [021] +16:52:21 [ 25] [ 2] [01] +16:52:21 [ 28] [ 9] [D00002000] +16:52:21 [ 32] [ 6] [180893] +16:52:21 [ 35] [ 32] [6213544000423498=491212012349890] +16:52:21 [ 37] [ 12] [507909270650] +16:52:21 [ 41] [ 8] [0363CPSH] +16:52:21 [ 42] [ 15] [999999 ] +16:52:21 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:52:21 [ 49] [ 3] [418] +16:52:21 [ 52] [ 16] [8F311223A741B474] +16:52:21 ============================================================================ +16:52:21 + + +waiting on router queue for slot.... +16:52:21 Sending to : +16:52:21 ============================================================================ +16:52:21 Sending to : +16:52:21 ============================================================================ +16:52:22 ============================================================================ +16:52:22 Slot Id : <335> +16:52:22 Transaction Type : REQUEST +16:52:22 Received From : +16:52:22 ============================================================================ +16:52:22 FNo. Len. Field Value +16:52:22 ============================================================================ +16:52:22 [ 1] [ 4] [0200] +16:52:22 [ 2] [ 16] [6213544000423498] +16:52:22 [ 3] [ 6] [010000] +16:52:22 [ 4] [ 12] [000100000000] +16:52:22 [ 7] [ 10] [0320095127] +16:52:22 [ 11] [ 6] [270650] +16:52:22 [ 12] [ 6] [165127] +16:52:22 [ 13] [ 4] [0320] +16:52:22 [ 14] [ 4] [4912] +16:52:22 [ 15] [ 4] [0320] +16:52:22 [ 18] [ 4] [6011] +16:52:22 [ 19] [ 3] [418] +16:52:22 [ 22] [ 3] [021] +16:52:22 [ 25] [ 2] [01] +16:52:22 [ 28] [ 9] [D00002000] +16:52:22 [ 32] [ 6] [180893] +16:52:22 [ 35] [ 32] [6213544000423498=491212012349890] +16:52:22 [ 37] [ 12] [507909270650] +16:52:22 [ 41] [ 8] [0363CPSH] +16:52:22 [ 42] [ 15] [999999 ] +16:52:22 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:52:22 [ 49] [ 3] [418] +16:52:22 [ 52] [ 16] [8F311223A741B474] +16:52:22 ============================================================================ +16:52:22 + + +waiting on router queue for slot.... +16:52:22 Sending to : +16:52:22 ============================================================================ +16:52:22 ============================================================================ +16:52:22 Slot Id : <335> +16:52:22 Transaction Type : REQUEST +16:52:22 Received From : +16:52:22 ============================================================================ +16:52:22 FNo. Len. Field Value +16:52:22 ============================================================================ +16:52:22 [ 1] [ 4] [0200] +16:52:22 [ 2] [ 16] [6213544000423498] +16:52:22 [ 3] [ 6] [010000] +16:52:22 [ 4] [ 12] [000100000000] +16:52:22 [ 7] [ 10] [0320095127] +16:52:22 [ 11] [ 6] [270650] +16:52:22 [ 12] [ 6] [165127] +16:52:22 [ 13] [ 4] [0320] +16:52:22 [ 14] [ 4] [4912] +16:52:22 [ 15] [ 4] [0320] +16:52:22 [ 18] [ 4] [6011] +16:52:22 [ 19] [ 3] [418] +16:52:22 [ 22] [ 3] [021] +16:52:22 [ 25] [ 2] [01] +16:52:22 [ 28] [ 9] [D00002000] +16:52:22 [ 32] [ 6] [180893] +16:52:22 [ 35] [ 32] [6213544000423498=491212012349890] +16:52:22 [ 37] [ 12] [507909270650] +16:52:22 [ 41] [ 8] [0363CPSH] +16:52:22 [ 42] [ 15] [999999 ] +16:52:22 [ 43] [ 40] [ATM HOSPITAL CHAMPASAK LOCATION, Pakse, ] +16:52:22 [ 49] [ 3] [418] +16:52:22 [ 52] [ 16] [D9FDABCCEBDC6C8D] +16:52:22 ============================================================================ +16:52:22 + + +waiting on router queue for slot.... +16:52:22 Sending to : <0> +16:52:22 ============================================================================ +16:52:22 ============================================================================ +16:52:22 Slot Id : <335> +16:52:22 Transaction Type : RESPONSE +16:52:22 Received From : +16:52:22 ============================================================================ +16:52:22 FNo. Len. Field Value +16:52:22 ============================================================================ +16:52:22 [ 1] [ 4] [0210] +16:52:22 [ 2] [ 16] [6213544000423498] +16:52:22 [ 3] [ 6] [010000] +16:52:22 [ 4] [ 12] [000100000000] +16:52:22 [ 7] [ 10] [0320095127] +16:52:22 [ 11] [ 6] [270650] +16:52:22 [ 12] [ 6] [165127] +16:52:22 [ 13] [ 4] [0320] +16:52:22 [ 15] [ 4] [0320] +16:52:22 [ 18] [ 4] [6011] +16:52:22 [ 19] [ 3] [418] +16:52:22 [ 32] [ 6] [180893] +16:52:22 [ 35] [ 32] [6213544000423498=491212012349890] +16:52:22 [ 37] [ 12] [507909270650] +16:52:22 [ 38] [ 6] [346116] +16:52:22 [ 39] [ 2] [00] +16:52:22 [ 41] [ 8] [0363CPSH] +16:52:22 [ 49] [ 3] [418] +16:52:22 [ 54] [ 40] [0001418C0000494142100002418C000049414210] +16:52:22 ============================================================================ +16:52:22 Sending to : +16:52:22 ============================================================================ +16:52:22 + + +waiting on router queue for slot.... +16:52:22 ============================================================================ +16:52:22 Slot Id : <333> +16:52:22 Transaction Type : REQUEST +16:52:22 Received From : +16:52:22 ============================================================================ +16:52:22 FNo. Len. Field Value +16:52:22 ============================================================================ +16:52:22 [ 1] [ 4] [0200] +16:52:22 [ 2] [ 16] [6213545001079668] +16:52:22 [ 3] [ 6] [010000] +16:52:22 [ 4] [ 12] [000010000000] +16:52:22 [ 7] [ 10] [0320095129] +16:52:22 [ 11] [ 6] [270651] +16:52:22 [ 12] [ 6] [165129] +16:52:22 [ 13] [ 4] [0320] +16:52:22 [ 14] [ 4] [4912] +16:52:22 [ 15] [ 4] [0320] +16:52:22 [ 18] [ 4] [6011] +16:52:22 [ 19] [ 3] [418] +16:52:22 [ 22] [ 3] [021] +16:52:22 [ 25] [ 2] [01] +16:52:22 [ 28] [ 9] [D00002000] +16:52:22 [ 32] [ 6] [180893] +16:52:22 [ 35] [ 32] [6213545001079668=491212017966413] +16:52:22 [ 37] [ 12] [507909270651] +16:52:22 [ 41] [ 8] [0262PSLB] +16:52:22 [ 42] [ 15] [999999 ] +16:52:22 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +16:52:22 [ 49] [ 3] [418] +16:52:22 [ 52] [ 16] [1B7820B6D767EB72] +16:52:22 ============================================================================ +16:52:22 + + +waiting on router queue for slot.... +16:52:22 Sending to : +16:52:22 ============================================================================ +16:52:22 Sending to : +16:52:22 ============================================================================ +16:52:23 ============================================================================ +16:52:23 Slot Id : <333> +16:52:23 Transaction Type : REQUEST +16:52:23 Received From : +16:52:23 ============================================================================ +16:52:23 FNo. Len. Field Value +16:52:23 ============================================================================ +16:52:23 [ 1] [ 4] [0200] +16:52:23 [ 2] [ 16] [6213545001079668] +16:52:23 [ 3] [ 6] [010000] +16:52:23 [ 4] [ 12] [000010000000] +16:52:23 [ 7] [ 10] [0320095129] +16:52:23 [ 11] [ 6] [270651] +16:52:23 [ 12] [ 6] [165129] +16:52:23 [ 13] [ 4] [0320] +16:52:23 [ 14] [ 4] [4912] +16:52:23 [ 15] [ 4] [0320] +16:52:23 [ 18] [ 4] [6011] +16:52:23 [ 19] [ 3] [418] +16:52:23 [ 22] [ 3] [021] +16:52:23 [ 25] [ 2] [01] +16:52:23 [ 28] [ 9] [D00002000] +16:52:23 [ 32] [ 6] [180893] +16:52:23 [ 35] [ 32] [6213545001079668=491212017966413] +16:52:23 [ 37] [ 12] [507909270651] +16:52:23 [ 41] [ 8] [0262PSLB] +16:52:23 [ 42] [ 15] [999999 ] +16:52:23 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +16:52:23 [ 49] [ 3] [418] +16:52:23 [ 52] [ 16] [1B7820B6D767EB72] +16:52:23 ============================================================================ +16:52:23 + + +waiting on router queue for slot.... +16:52:23 Sending to : +16:52:23 ============================================================================ +16:52:23 ============================================================================ +16:52:23 Slot Id : <333> +16:52:23 Transaction Type : REQUEST +16:52:23 Received From : +16:52:23 ============================================================================ +16:52:23 FNo. Len. Field Value +16:52:23 ============================================================================ +16:52:23 [ 1] [ 4] [0200] +16:52:23 [ 2] [ 16] [6213545001079668] +16:52:23 [ 3] [ 6] [010000] +16:52:23 [ 4] [ 12] [000010000000] +16:52:23 [ 7] [ 10] [0320095129] +16:52:23 [ 11] [ 6] [270651] +16:52:23 [ 12] [ 6] [165129] +16:52:23 [ 13] [ 4] [0320] +16:52:23 [ 14] [ 4] [4912] +16:52:23 [ 15] [ 4] [0320] +16:52:23 [ 18] [ 4] [6011] +16:52:23 [ 19] [ 3] [418] +16:52:23 [ 22] [ 3] [021] +16:52:23 [ 25] [ 2] [01] +16:52:23 [ 28] [ 9] [D00002000] +16:52:23 [ 32] [ 6] [180893] +16:52:23 [ 35] [ 32] [6213545001079668=491212017966413] +16:52:23 [ 37] [ 12] [507909270651] +16:52:23 [ 41] [ 8] [0262PSLB] +16:52:23 [ 42] [ 15] [999999 ] +16:52:23 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +16:52:23 [ 49] [ 3] [418] +16:52:23 [ 52] [ 16] [DE0710F667E0736C] +16:52:23 ============================================================================ +16:52:23 + + +waiting on router queue for slot.... +16:52:23 Sending to : <0> +16:52:23 ============================================================================ +16:52:23 ============================================================================ +16:52:23 Slot Id : <333> +16:52:23 Transaction Type : RESPONSE +16:52:23 Received From : +16:52:23 ============================================================================ +16:52:23 FNo. Len. Field Value +16:52:23 ============================================================================ +16:52:23 [ 1] [ 4] [0210] +16:52:23 [ 2] [ 16] [6213545001079668] +16:52:23 [ 3] [ 6] [010000] +16:52:23 [ 4] [ 12] [000010000000] +16:52:23 [ 7] [ 10] [0320095129] +16:52:23 [ 11] [ 6] [270651] +16:52:23 [ 12] [ 6] [165129] +16:52:23 [ 13] [ 4] [0320] +16:52:23 [ 15] [ 4] [0320] +16:52:23 [ 18] [ 4] [6011] +16:52:23 [ 19] [ 3] [418] +16:52:23 [ 32] [ 6] [180893] +16:52:23 [ 35] [ 32] [6213545001079668=491212017966413] +16:52:23 [ 37] [ 12] [507909270651] +16:52:23 [ 38] [ 6] [361862] +16:52:23 [ 39] [ 2] [00] +16:52:23 [ 41] [ 8] [0262PSLB] +16:52:23 [ 49] [ 3] [418] +16:52:23 [ 54] [ 40] [0001418C0001954646050002418C000195464605] +16:52:23 ============================================================================ +16:52:23 Sending to : +16:52:23 ============================================================================ +16:52:23 + + +waiting on router queue for slot.... +16:52:24 ============================================================================ +16:52:24 Slot Id : <335> +16:52:24 Transaction Type : RESPONSE +16:52:24 Received From : +16:52:24 ============================================================================ +16:52:24 FNo. Len. Field Value +16:52:24 ============================================================================ +16:52:24 [ 1] [ 4] [0210] +16:52:24 [ 2] [ 16] [6213544000423498] +16:52:24 [ 3] [ 6] [010000] +16:52:24 [ 4] [ 12] [000100000000] +16:52:24 [ 7] [ 10] [0320095127] +16:52:24 [ 11] [ 6] [270650] +16:52:24 [ 12] [ 6] [165127] +16:52:24 [ 13] [ 4] [0320] +16:52:24 [ 15] [ 4] [0320] +16:52:24 [ 18] [ 4] [6011] +16:52:24 [ 19] [ 3] [418] +16:52:24 [ 32] [ 6] [180893] +16:52:24 [ 35] [ 32] [6213544000423498=491212012349890] +16:52:24 [ 37] [ 12] [507909270650] +16:52:24 [ 38] [ 6] [346116] +16:52:24 [ 39] [ 2] [00] +16:52:24 [ 41] [ 8] [0363CPSH] +16:52:24 [ 49] [ 3] [418] +16:52:24 [ 54] [ 40] [0001418C0000494142100002418C000049414210] +16:52:24 ============================================================================ +16:52:24 Calculate Source COMM Id = 2 +16:52:24 ============================================================================ +16:52:24 + + +waiting on router queue for slot.... +16:52:24 ============================================================================ +16:52:24 Slot Id : <262> +16:52:24 Transaction Type : REQUEST +16:52:24 Received From : +16:52:24 ============================================================================ +16:52:24 FNo. Len. Field Value +16:52:24 ============================================================================ +16:52:24 [ 1] [ 4] [0200] +16:52:24 [ 2] [ 16] [6688990104449309] +16:52:24 [ 3] [ 6] [012000] +16:52:24 [ 4] [ 12] [000100000000] +16:52:24 [ 7] [ 10] [0320165219] +16:52:24 [ 11] [ 6] [806077] +16:52:24 [ 12] [ 6] [165219] +16:52:24 [ 13] [ 4] [0320] +16:52:24 [ 15] [ 4] [0320] +16:52:24 [ 18] [ 4] [6011] +16:52:24 [ 22] [ 3] [900] +16:52:24 [ 25] [ 2] [02] +16:52:24 [ 28] [ 9] [D00002000] +16:52:24 [ 32] [ 6] [621354] +16:52:24 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:52:24 [ 37] [ 12] [507903499627] +16:52:24 [ 41] [ 8] [06002200] +16:52:24 [ 42] [ 15] [NATIVE ] +16:52:24 [ 43] [ 40] [Beng Market Beng LAO] +16:52:24 [ 49] [ 3] [418] +16:52:24 [ 52] [ 16] [E44E90AEE92E23D1] +16:52:24 ============================================================================ +16:52:24 + + +waiting on router queue for slot.... +16:52:24 Sending to : +16:52:24 ============================================================================ +16:52:24 Sending to : +16:52:24 ============================================================================ +16:52:24 ============================================================================ +16:52:24 Slot Id : <262> +16:52:24 Transaction Type : REQUEST +16:52:24 Received From : +16:52:24 ============================================================================ +16:52:24 FNo. Len. Field Value +16:52:24 ============================================================================ +16:52:24 [ 1] [ 4] [0200] +16:52:24 [ 2] [ 16] [6688990104449309] +16:52:24 [ 3] [ 6] [012000] +16:52:24 [ 4] [ 12] [000100000000] +16:52:24 [ 7] [ 10] [0320165219] +16:52:24 [ 11] [ 6] [806077] +16:52:24 [ 12] [ 6] [165219] +16:52:24 [ 13] [ 4] [0320] +16:52:24 [ 15] [ 4] [0320] +16:52:24 [ 18] [ 4] [6011] +16:52:24 [ 22] [ 3] [900] +16:52:24 [ 25] [ 2] [02] +16:52:24 [ 28] [ 9] [D00002000] +16:52:24 [ 32] [ 6] [621354] +16:52:24 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:52:24 [ 37] [ 12] [507903499627] +16:52:24 [ 41] [ 8] [06002200] +16:52:24 [ 42] [ 15] [NATIVE ] +16:52:24 [ 43] [ 40] [Beng Market Beng LAO] +16:52:24 [ 49] [ 3] [418] +16:52:24 [ 52] [ 16] [E44E90AEE92E23D1] +16:52:24 ============================================================================ +16:52:24 + + +waiting on router queue for slot.... +16:52:24 Sending to : +16:52:24 ============================================================================ +16:52:24 ============================================================================ +16:52:24 Slot Id : <262> +16:52:24 Transaction Type : REQUEST +16:52:24 Received From : +16:52:24 ============================================================================ +16:52:24 FNo. Len. Field Value +16:52:24 ============================================================================ +16:52:24 [ 1] [ 4] [0200] +16:52:24 [ 2] [ 16] [6688990104449309] +16:52:24 [ 3] [ 6] [012000] +16:52:24 [ 4] [ 12] [000100000000] +16:52:24 [ 7] [ 10] [0320165219] +16:52:24 [ 11] [ 6] [806077] +16:52:24 [ 12] [ 6] [165219] +16:52:24 [ 13] [ 4] [0320] +16:52:24 [ 15] [ 4] [0320] +16:52:24 [ 18] [ 4] [6011] +16:52:24 [ 22] [ 3] [900] +16:52:24 [ 25] [ 2] [02] +16:52:24 [ 28] [ 9] [D00002000] +16:52:24 [ 32] [ 6] [621354] +16:52:24 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:52:24 [ 37] [ 12] [507903499627] +16:52:24 [ 41] [ 8] [06002200] +16:52:24 [ 42] [ 15] [NATIVE ] +16:52:24 [ 43] [ 40] [Beng Market Beng LAO] +16:52:24 [ 49] [ 3] [418] +16:52:24 [ 52] [ 16] [421E7DE0E6D73813] +16:52:24 ============================================================================ +16:52:24 + + +waiting on router queue for slot.... +16:52:24 Sending to : <4> +16:52:24 ============================================================================ +16:52:25 ============================================================================ +16:52:25 Slot Id : <262> +16:52:25 Transaction Type : RESPONSE +16:52:25 Received From : +16:52:25 ============================================================================ +16:52:25 FNo. Len. Field Value +16:52:25 ============================================================================ +16:52:25 [ 1] [ 4] [0210] +16:52:25 [ 2] [ 16] [6688990104449309] +16:52:25 [ 3] [ 6] [012000] +16:52:25 [ 4] [ 12] [000100000000] +16:52:25 [ 11] [ 6] [806077] +16:52:25 [ 12] [ 6] [165219] +16:52:25 [ 15] [ 4] [0320] +16:52:25 [ 18] [ 4] [6011] +16:52:25 [ 32] [ 6] [621354] +16:52:25 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:52:25 [ 37] [ 12] [507903499627] +16:52:25 [ 38] [ 6] [684294] +16:52:25 [ 39] [ 2] [00] +16:52:25 [ 41] [ 8] [06002200] +16:52:25 [ 49] [ 3] [418] +16:52:25 [ 54] [ 20] [2002418C000263201119] +16:52:25 ============================================================================ +16:52:25 Sending to : +16:52:25 ============================================================================ +16:52:25 + + +waiting on router queue for slot.... +16:52:25 ============================================================================ +16:52:25 Slot Id : <333> +16:52:25 Transaction Type : RESPONSE +16:52:25 Received From : +16:52:25 ============================================================================ +16:52:25 FNo. Len. Field Value +16:52:25 ============================================================================ +16:52:25 [ 1] [ 4] [0210] +16:52:25 [ 2] [ 16] [6213545001079668] +16:52:25 [ 3] [ 6] [010000] +16:52:25 [ 4] [ 12] [000010000000] +16:52:25 [ 7] [ 10] [0320095129] +16:52:25 [ 11] [ 6] [270651] +16:52:25 [ 12] [ 6] [165129] +16:52:25 [ 13] [ 4] [0320] +16:52:25 [ 15] [ 4] [0320] +16:52:25 [ 18] [ 4] [6011] +16:52:25 [ 19] [ 3] [418] +16:52:25 [ 32] [ 6] [180893] +16:52:25 [ 35] [ 32] [6213545001079668=491212017966413] +16:52:25 [ 37] [ 12] [507909270651] +16:52:25 [ 38] [ 6] [361862] +16:52:25 [ 39] [ 2] [00] +16:52:25 [ 41] [ 8] [0262PSLB] +16:52:25 [ 49] [ 3] [418] +16:52:25 [ 54] [ 40] [0001418C0001954646050002418C000195464605] +16:52:25 ============================================================================ +16:52:25 Calculate Source COMM Id = 2 +16:52:25 ============================================================================ +16:52:25 + + +waiting on router queue for slot.... +16:52:27 ============================================================================ +16:52:27 Slot Id : <262> +16:52:27 Transaction Type : RESPONSE +16:52:27 Received From : +16:52:27 ============================================================================ +16:52:27 FNo. Len. Field Value +16:52:27 ============================================================================ +16:52:27 [ 1] [ 4] [0210] +16:52:27 [ 2] [ 16] [6688990104449309] +16:52:27 [ 3] [ 6] [012000] +16:52:27 [ 4] [ 12] [000100000000] +16:52:27 [ 11] [ 6] [806077] +16:52:27 [ 12] [ 6] [165219] +16:52:27 [ 15] [ 4] [0320] +16:52:27 [ 18] [ 4] [6011] +16:52:27 [ 32] [ 6] [621354] +16:52:27 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:52:27 [ 37] [ 12] [507903499627] +16:52:27 [ 38] [ 6] [684294] +16:52:27 [ 39] [ 2] [00] +16:52:27 [ 41] [ 8] [06002200] +16:52:27 [ 49] [ 3] [418] +16:52:27 [ 54] [ 20] [2002418C000263201119] +16:52:27 ============================================================================ +16:52:27 Calculate Source COMM Id = 0 +16:52:27 ============================================================================ +16:52:27 + + +waiting on router queue for slot.... +16:52:32 ============================================================================ +16:52:32 Slot Id : <334> +16:52:32 Transaction Type : REQUEST +16:52:32 Received From : +16:52:32 ============================================================================ +16:52:32 FNo. Len. Field Value +16:52:32 ============================================================================ +16:52:32 [ 1] [ 4] [0200] +16:52:32 [ 2] [ 16] [6213544001612388] +16:52:32 [ 3] [ 6] [010000] +16:52:32 [ 4] [ 12] [000028000000] +16:52:32 [ 7] [ 10] [0320165022] +16:52:32 [ 11] [ 6] [952494] +16:52:32 [ 12] [ 6] [165022] +16:52:32 [ 13] [ 4] [0320] +16:52:32 [ 15] [ 4] [0320] +16:52:32 [ 18] [ 4] [6011] +16:52:32 [ 19] [ 3] [418] +16:52:32 [ 22] [ 3] [021] +16:52:32 [ 25] [ 2] [01] +16:52:32 [ 28] [ 9] [D00002000] +16:52:32 [ 32] [ 6] [668899] +16:52:32 [ 35] [ 32] [6213544001612388=491212011238771] +16:52:32 [ 37] [ 12] [507902025632] +16:52:32 [ 41] [ 8] [03414002] +16:52:32 [ 42] [ 15] [APT ] +16:52:32 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:52:32 [ 49] [ 3] [418] +16:52:32 [ 52] [ 16] [D1C0717E9A112BB2] +16:52:32 ============================================================================ +16:52:32 + + +waiting on router queue for slot.... +16:52:32 Sending to : +16:52:32 ============================================================================ +16:52:32 Sending to : +16:52:32 ============================================================================ +16:52:32 ============================================================================ +16:52:32 Slot Id : <334> +16:52:32 Transaction Type : REQUEST +16:52:32 Received From : +16:52:32 ============================================================================ +16:52:32 FNo. Len. Field Value +16:52:32 ============================================================================ +16:52:32 [ 1] [ 4] [0200] +16:52:32 [ 2] [ 16] [6213544001612388] +16:52:32 [ 3] [ 6] [010000] +16:52:32 [ 4] [ 12] [000028000000] +16:52:32 [ 7] [ 10] [0320165022] +16:52:32 [ 11] [ 6] [952494] +16:52:32 [ 12] [ 6] [165022] +16:52:32 [ 13] [ 4] [0320] +16:52:32 [ 15] [ 4] [0320] +16:52:32 [ 18] [ 4] [6011] +16:52:32 [ 19] [ 3] [418] +16:52:32 [ 22] [ 3] [021] +16:52:32 [ 25] [ 2] [01] +16:52:32 [ 28] [ 9] [D00002000] +16:52:32 [ 32] [ 6] [668899] +16:52:32 [ 35] [ 32] [6213544001612388=491212011238771] +16:52:32 [ 37] [ 12] [507902025632] +16:52:32 [ 41] [ 8] [03414002] +16:52:32 [ 42] [ 15] [APT ] +16:52:32 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:52:32 [ 49] [ 3] [418] +16:52:32 [ 52] [ 16] [D1C0717E9A112BB2] +16:52:32 ============================================================================ +16:52:32 + + +waiting on router queue for slot.... +16:52:32 Sending to : +16:52:32 ============================================================================ +16:52:32 ============================================================================ +16:52:32 Slot Id : <334> +16:52:32 Transaction Type : REQUEST +16:52:32 Received From : +16:52:32 ============================================================================ +16:52:32 FNo. Len. Field Value +16:52:32 ============================================================================ +16:52:32 [ 1] [ 4] [0200] +16:52:32 [ 2] [ 16] [6213544001612388] +16:52:32 [ 3] [ 6] [010000] +16:52:32 [ 4] [ 12] [000028000000] +16:52:32 [ 7] [ 10] [0320165022] +16:52:32 [ 11] [ 6] [952494] +16:52:32 [ 12] [ 6] [165022] +16:52:32 [ 13] [ 4] [0320] +16:52:32 [ 15] [ 4] [0320] +16:52:32 [ 18] [ 4] [6011] +16:52:32 [ 19] [ 3] [418] +16:52:32 [ 22] [ 3] [021] +16:52:32 [ 25] [ 2] [01] +16:52:32 [ 28] [ 9] [D00002000] +16:52:32 [ 32] [ 6] [668899] +16:52:32 [ 35] [ 32] [6213544001612388=491212011238771] +16:52:32 [ 37] [ 12] [507902025632] +16:52:32 [ 41] [ 8] [03414002] +16:52:32 [ 42] [ 15] [APT ] +16:52:32 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:52:32 [ 49] [ 3] [418] +16:52:32 [ 52] [ 16] [A5F2A09219DB4B57] +16:52:32 ============================================================================ +16:52:32 + + +waiting on router queue for slot.... +16:52:32 Sending to : <0> +16:52:32 ============================================================================ +16:52:33 ============================================================================ +16:52:33 Slot Id : <334> +16:52:33 Transaction Type : RESPONSE +16:52:33 Received From : +16:52:33 ============================================================================ +16:52:33 FNo. Len. Field Value +16:52:33 ============================================================================ +16:52:33 [ 1] [ 4] [0210] +16:52:33 [ 2] [ 16] [6213544001612388] +16:52:33 [ 3] [ 6] [010000] +16:52:33 [ 4] [ 12] [000028000000] +16:52:33 [ 7] [ 10] [0320165022] +16:52:33 [ 11] [ 6] [952494] +16:52:33 [ 12] [ 6] [165022] +16:52:33 [ 13] [ 4] [0320] +16:52:33 [ 15] [ 4] [0320] +16:52:33 [ 18] [ 4] [6011] +16:52:33 [ 19] [ 3] [418] +16:52:33 [ 32] [ 6] [668899] +16:52:33 [ 35] [ 32] [6213544001612388=491212011238771] +16:52:33 [ 37] [ 12] [507902025632] +16:52:33 [ 38] [ 6] [651633] +16:52:33 [ 39] [ 2] [00] +16:52:33 [ 41] [ 8] [03414002] +16:52:33 [ 49] [ 3] [418] +16:52:33 [ 54] [ 40] [0001418C0000378329070002418C000037832907] +16:52:33 ============================================================================ +16:52:33 Sending to : +16:52:33 ============================================================================ +16:52:33 + + +waiting on router queue for slot.... +16:52:34 ============================================================================ +16:52:34 Slot Id : <334> +16:52:34 Transaction Type : RESPONSE +16:52:34 Received From : +16:52:34 ============================================================================ +16:52:34 FNo. Len. Field Value +16:52:34 ============================================================================ +16:52:34 [ 1] [ 4] [0210] +16:52:34 [ 2] [ 16] [6213544001612388] +16:52:34 [ 3] [ 6] [010000] +16:52:34 [ 4] [ 12] [000028000000] +16:52:34 [ 7] [ 10] [0320165022] +16:52:34 [ 11] [ 6] [952494] +16:52:34 [ 12] [ 6] [165022] +16:52:34 [ 13] [ 4] [0320] +16:52:34 [ 15] [ 4] [0320] +16:52:34 [ 18] [ 4] [6011] +16:52:34 [ 19] [ 3] [418] +16:52:34 [ 32] [ 6] [668899] +16:52:34 [ 35] [ 32] [6213544001612388=491212011238771] +16:52:34 [ 37] [ 12] [507902025632] +16:52:34 [ 38] [ 6] [651633] +16:52:34 [ 39] [ 2] [00] +16:52:34 [ 41] [ 8] [03414002] +16:52:34 [ 49] [ 3] [418] +16:52:34 [ 54] [ 40] [0001418C0000378329070002418C000037832907] +16:52:34 ============================================================================ +16:52:34 Calculate Source COMM Id = 4 +16:52:34 ============================================================================ +16:52:34 + + +waiting on router queue for slot.... +16:52:39 ============================================================================ +16:52:39 Slot Id : <321> +16:52:39 Transaction Type : REQUEST +16:52:39 Received From : +16:52:39 ============================================================================ +16:52:39 FNo. Len. Field Value +16:52:39 ============================================================================ +16:52:39 [ 1] [ 4] [0200] +16:52:39 [ 2] [ 16] [1808931800013086] +16:52:39 [ 3] [ 6] [010000] +16:52:39 [ 4] [ 12] [000010000000] +16:52:39 [ 7] [ 10] [0320165234] +16:52:39 [ 11] [ 6] [806142] +16:52:39 [ 12] [ 6] [165234] +16:52:39 [ 13] [ 4] [0320] +16:52:39 [ 15] [ 4] [0320] +16:52:39 [ 18] [ 4] [6011] +16:52:39 [ 22] [ 3] [900] +16:52:39 [ 25] [ 2] [02] +16:52:39 [ 28] [ 9] [D00002000] +16:52:39 [ 32] [ 6] [621354] +16:52:39 [ 35] [ 27] [1808931800013086=1803500007] +16:52:39 [ 37] [ 12] [507904635921] +16:52:39 [ 41] [ 8] [17000800] +16:52:39 [ 42] [ 15] [NATIVE ] +16:52:39 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:52:39 [ 49] [ 3] [418] +16:52:39 [ 52] [ 16] [5038FBB29B9718CD] +16:52:39 ============================================================================ +16:52:39 + + +waiting on router queue for slot.... +16:52:39 Sending to : +16:52:39 ============================================================================ +16:52:39 Sending to : +16:52:39 ============================================================================ +16:52:39 ============================================================================ +16:52:39 Slot Id : <321> +16:52:39 Transaction Type : REQUEST +16:52:39 Received From : +16:52:39 ============================================================================ +16:52:39 FNo. Len. Field Value +16:52:39 ============================================================================ +16:52:39 [ 1] [ 4] [0200] +16:52:39 [ 2] [ 16] [1808931800013086] +16:52:39 [ 3] [ 6] [010000] +16:52:39 [ 4] [ 12] [000010000000] +16:52:39 [ 7] [ 10] [0320165234] +16:52:39 [ 11] [ 6] [806142] +16:52:39 [ 12] [ 6] [165234] +16:52:39 [ 13] [ 4] [0320] +16:52:39 [ 15] [ 4] [0320] +16:52:39 [ 18] [ 4] [6011] +16:52:39 [ 22] [ 3] [900] +16:52:39 [ 25] [ 2] [02] +16:52:39 [ 28] [ 9] [D00002000] +16:52:39 [ 32] [ 6] [621354] +16:52:39 [ 35] [ 27] [1808931800013086=1803500007] +16:52:39 [ 37] [ 12] [507904635921] +16:52:39 [ 41] [ 8] [17000800] +16:52:39 [ 42] [ 15] [NATIVE ] +16:52:39 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:52:39 [ 49] [ 3] [418] +16:52:39 [ 52] [ 16] [5038FBB29B9718CD] +16:52:39 ============================================================================ +16:52:39 + + +waiting on router queue for slot.... +16:52:39 Sending to : +16:52:39 ============================================================================ +16:52:39 ============================================================================ +16:52:39 Slot Id : <321> +16:52:39 Transaction Type : REQUEST +16:52:39 Received From : +16:52:39 ============================================================================ +16:52:39 FNo. Len. Field Value +16:52:39 ============================================================================ +16:52:39 [ 1] [ 4] [0200] +16:52:39 [ 2] [ 16] [1808931800013086] +16:52:39 [ 3] [ 6] [010000] +16:52:39 [ 4] [ 12] [000010000000] +16:52:39 [ 7] [ 10] [0320165234] +16:52:39 [ 11] [ 6] [806142] +16:52:39 [ 12] [ 6] [165234] +16:52:39 [ 13] [ 4] [0320] +16:52:39 [ 15] [ 4] [0320] +16:52:39 [ 18] [ 4] [6011] +16:52:39 [ 22] [ 3] [900] +16:52:39 [ 25] [ 2] [02] +16:52:39 [ 28] [ 9] [D00002000] +16:52:39 [ 32] [ 6] [621354] +16:52:39 [ 35] [ 27] [1808931800013086=1803500007] +16:52:39 [ 37] [ 12] [507904635921] +16:52:39 [ 41] [ 8] [17000800] +16:52:39 [ 42] [ 15] [NATIVE ] +16:52:39 [ 43] [ 40] [Ban Nakhai Naxay LAO] +16:52:39 [ 49] [ 3] [418] +16:52:39 [ 52] [ 16] [D14224C62C5F278E] +16:52:39 ============================================================================ +16:52:39 + + +waiting on router queue for slot.... +16:52:39 Sending to : <2> +16:52:39 ============================================================================ +16:52:39 ============================================================================ +16:52:39 Slot Id : <336> +16:52:39 Transaction Type : REQUEST +16:52:39 Received From : +16:52:39 ============================================================================ +16:52:39 FNo. Len. Field Value +16:52:39 ============================================================================ +16:52:39 [ 1] [ 4] [0800] +16:52:39 [ 7] [ 10] [0320095146] +16:52:39 [ 11] [ 6] [157322] +16:52:39 [ 70] [ 3] [301] +16:52:39 ============================================================================ +16:52:39 + + +waiting on router queue for slot.... +16:52:39 Sending to : +16:52:39 ============================================================================ +16:52:39 ============================================================================ +16:52:39 Slot Id : <336> +16:52:39 Transaction Type : RESPONSE +16:52:39 Received From : +16:52:39 ============================================================================ +16:52:39 FNo. Len. Field Value +16:52:39 ============================================================================ +16:52:39 [ 1] [ 4] [0810] +16:52:39 [ 7] [ 10] [0320095146] +16:52:39 [ 11] [ 6] [157322] +16:52:39 [ 39] [ 2] [00] +16:52:39 [ 70] [ 3] [301] +16:52:39 ============================================================================ +16:52:39 Calculate Source COMM Id = 2 +16:52:39 ============================================================================ +16:52:39 + + +waiting on router queue for slot.... +16:52:45 ============================================================================ +16:52:45 Slot Id : <321> +16:52:45 Transaction Type : RESPONSE +16:52:45 Received From : +16:52:45 ============================================================================ +16:52:45 FNo. Len. Field Value +16:52:45 ============================================================================ +16:52:45 [ 1] [ 4] [0210] +16:52:45 [ 2] [ 16] [1808931800013086] +16:52:45 [ 3] [ 6] [010000] +16:52:45 [ 4] [ 12] [000010000000] +16:52:45 [ 6] [ 12] [000010000000] +16:52:45 [ 7] [ 10] [0320165234] +16:52:45 [ 11] [ 6] [806142] +16:52:45 [ 12] [ 6] [165234] +16:52:45 [ 13] [ 4] [0320] +16:52:45 [ 18] [ 4] [6011] +16:52:45 [ 19] [ 3] [418] +16:52:45 [ 22] [ 3] [021] +16:52:45 [ 32] [ 6] [621354] +16:52:45 [ 35] [ 27] [1808931800013086=1803500007] +16:52:45 [ 37] [ 12] [507904635921] +16:52:45 [ 38] [ 6] [806142] +16:52:45 [ 39] [ 2] [00] +16:52:45 [ 41] [ 8] [17000800] +16:52:45 [ 49] [ 3] [418] +16:52:45 [ 52] [ 16] [D14224C62C5F278E] +16:52:45 [ 54] [ 20] [1001418C000002757100] +16:52:45 ============================================================================ +16:52:45 Sending to : +16:52:45 ============================================================================ +16:52:45 + + +waiting on router queue for slot.... +16:52:47 ============================================================================ +16:52:47 Slot Id : <321> +16:52:47 Transaction Type : RESPONSE +16:52:47 Received From : +16:52:47 ============================================================================ +16:52:47 FNo. Len. Field Value +16:52:47 ============================================================================ +16:52:47 [ 1] [ 4] [0210] +16:52:47 [ 2] [ 16] [1808931800013086] +16:52:47 [ 3] [ 6] [010000] +16:52:47 [ 4] [ 12] [000010000000] +16:52:47 [ 6] [ 12] [000010000000] +16:52:47 [ 7] [ 10] [0320165234] +16:52:47 [ 11] [ 6] [806142] +16:52:47 [ 12] [ 6] [165234] +16:52:47 [ 13] [ 4] [0320] +16:52:47 [ 18] [ 4] [6011] +16:52:47 [ 19] [ 3] [418] +16:52:47 [ 22] [ 3] [021] +16:52:47 [ 32] [ 6] [621354] +16:52:47 [ 35] [ 27] [1808931800013086=1803500007] +16:52:47 [ 37] [ 12] [507904635921] +16:52:47 [ 38] [ 6] [806142] +16:52:47 [ 39] [ 2] [00] +16:52:47 [ 41] [ 8] [17000800] +16:52:47 [ 49] [ 3] [418] +16:52:47 [ 52] [ 16] [D14224C62C5F278E] +16:52:47 [ 54] [ 20] [1001418C000002757100] +16:52:47 ============================================================================ +16:52:47 Calculate Source COMM Id = 0 +16:52:47 ============================================================================ +16:52:47 + + +waiting on router queue for slot.... +16:52:50 ============================================================================ +16:52:50 Slot Id : <341> +16:52:50 Transaction Type : REQUEST +16:52:50 Received From : +16:52:50 ============================================================================ +16:52:50 FNo. Len. Field Value +16:52:50 ============================================================================ +16:52:50 [ 1] [ 4] [0800] +16:52:50 [ 7] [ 10] [0321000438] +16:52:50 [ 11] [ 6] [170438] +16:52:50 [ 37] [ 12] [57917170438] +16:52:50 [ 70] [ 3] [301] +16:52:50 ============================================================================ +16:52:50 + + +waiting on router queue for slot.... +16:52:50 Sending to : +16:52:50 ============================================================================ +16:52:50 ============================================================================ +16:52:50 Slot Id : <341> +16:52:50 Transaction Type : RESPONSE +16:52:50 Received From : +16:52:50 ============================================================================ +16:52:50 FNo. Len. Field Value +16:52:50 ============================================================================ +16:52:50 [ 1] [ 4] [0810] +16:52:50 [ 7] [ 10] [0321000438] +16:52:50 [ 11] [ 6] [170438] +16:52:50 [ 37] [ 12] [579171704380] +16:52:50 [ 39] [ 2] [00] +16:52:50 [ 70] [ 3] [810] +16:52:50 ============================================================================ +16:52:50 Calculate Source COMM Id = 6 +16:52:50 ============================================================================ +16:52:50 + + +waiting on router queue for slot.... +16:52:50 ============================================================================ +16:52:50 Slot Id : <323> +16:52:50 Transaction Type : REQUEST +16:52:50 Received From : +16:52:50 ============================================================================ +16:52:50 FNo. Len. Field Value +16:52:50 ============================================================================ +16:52:50 [ 1] [ 4] [0800] +16:52:50 [ 7] [ 10] [0320095157] +16:52:50 [ 11] [ 6] [157323] +16:52:50 [ 70] [ 3] [301] +16:52:50 ============================================================================ +16:52:50 + + +waiting on router queue for slot.... +16:52:50 Sending to : +16:52:50 ============================================================================ +16:52:50 ============================================================================ +16:52:50 Slot Id : <323> +16:52:50 Transaction Type : RESPONSE +16:52:50 Received From : +16:52:50 ============================================================================ +16:52:50 FNo. Len. Field Value +16:52:50 ============================================================================ +16:52:50 [ 1] [ 4] [0810] +16:52:50 [ 7] [ 10] [0320095157] +16:52:50 [ 11] [ 6] [157323] +16:52:50 [ 39] [ 2] [00] +16:52:50 [ 70] [ 3] [301] +16:52:50 ============================================================================ +16:52:50 Calculate Source COMM Id = 2 +16:52:50 ============================================================================ +16:52:50 + + +waiting on router queue for slot.... +16:53:01 ============================================================================ +16:53:01 Slot Id : <320> +16:53:01 Transaction Type : REQUEST +16:53:01 Received From : +16:53:01 ============================================================================ +16:53:01 FNo. Len. Field Value +16:53:01 ============================================================================ +16:53:01 [ 1] [ 4] [0800] +16:53:01 [ 7] [ 10] [0320095208] +16:53:01 [ 11] [ 6] [157324] +16:53:01 [ 70] [ 3] [301] +16:53:01 ============================================================================ +16:53:01 + + +waiting on router queue for slot.... +16:53:01 Sending to : +16:53:01 ============================================================================ +16:53:01 ============================================================================ +16:53:01 Slot Id : <320> +16:53:01 Transaction Type : RESPONSE +16:53:01 Received From : +16:53:01 ============================================================================ +16:53:01 FNo. Len. Field Value +16:53:01 ============================================================================ +16:53:01 [ 1] [ 4] [0810] +16:53:01 [ 7] [ 10] [0320095208] +16:53:01 [ 11] [ 6] [157324] +16:53:01 [ 39] [ 2] [00] +16:53:01 [ 70] [ 3] [301] +16:53:01 ============================================================================ +16:53:01 Calculate Source COMM Id = 2 +16:53:01 ============================================================================ +16:53:01 + + +waiting on router queue for slot.... +16:53:06 ============================================================================ +16:53:06 Slot Id : <339> +16:53:06 Transaction Type : REQUEST +16:53:06 Received From : +16:53:06 ============================================================================ +16:53:06 FNo. Len. Field Value +16:53:06 ============================================================================ +16:53:06 [ 1] [ 4] [0200] +16:53:06 [ 2] [ 16] [6213544001895181] +16:53:06 [ 3] [ 6] [011000] +16:53:06 [ 4] [ 12] [000050000000] +16:53:06 [ 7] [ 10] [0320165326] +16:53:06 [ 11] [ 6] [209054] +16:53:06 [ 12] [ 6] [164832] +16:53:06 [ 13] [ 4] [0320] +16:53:06 [ 14] [ 4] [4912] +16:53:06 [ 15] [ 4] [0320] +16:53:06 [ 18] [ 4] [6011] +16:53:06 [ 19] [ 3] [418] +16:53:06 [ 22] [ 3] [021] +16:53:06 [ 25] [ 2] [01] +16:53:06 [ 28] [ 9] [D00002000] +16:53:06 [ 32] [ 6] [198901] +16:53:06 [ 35] [ 32] [6213544001895181=491212019518707] +16:53:06 [ 37] [ 12] [507916209054] +16:53:06 [ 41] [ 8] [19529001] +16:53:06 [ 42] [ 15] [000000041952901] +16:53:06 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:53:06 [ 49] [ 3] [418] +16:53:06 [ 52] [ 16] [E750FBD4E88E0309] +16:53:06 ============================================================================ +16:53:06 + + +waiting on router queue for slot.... +16:53:06 Sending to : +16:53:06 ============================================================================ +16:53:06 Sending to : +16:53:06 ============================================================================ +16:53:06 ============================================================================ +16:53:06 Slot Id : <339> +16:53:06 Transaction Type : REQUEST +16:53:06 Received From : +16:53:06 ============================================================================ +16:53:06 FNo. Len. Field Value +16:53:06 ============================================================================ +16:53:06 [ 1] [ 4] [0200] +16:53:06 [ 2] [ 16] [6213544001895181] +16:53:06 [ 3] [ 6] [011000] +16:53:06 [ 4] [ 12] [000050000000] +16:53:06 [ 7] [ 10] [0320165326] +16:53:06 [ 11] [ 6] [209054] +16:53:06 [ 12] [ 6] [164832] +16:53:06 [ 13] [ 4] [0320] +16:53:06 [ 14] [ 4] [4912] +16:53:06 [ 15] [ 4] [0320] +16:53:06 [ 18] [ 4] [6011] +16:53:06 [ 19] [ 3] [418] +16:53:06 [ 22] [ 3] [021] +16:53:06 [ 25] [ 2] [01] +16:53:06 [ 28] [ 9] [D00002000] +16:53:06 [ 32] [ 6] [198901] +16:53:06 [ 35] [ 32] [6213544001895181=491212019518707] +16:53:06 [ 37] [ 12] [507916209054] +16:53:06 [ 41] [ 8] [19529001] +16:53:06 [ 42] [ 15] [000000041952901] +16:53:06 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:53:06 [ 49] [ 3] [418] +16:53:06 [ 52] [ 16] [E750FBD4E88E0309] +16:53:06 ============================================================================ +16:53:06 + + +waiting on router queue for slot.... +16:53:06 Sending to : +16:53:06 ============================================================================ +16:53:06 ============================================================================ +16:53:06 Slot Id : <339> +16:53:06 Transaction Type : REQUEST +16:53:06 Received From : +16:53:06 ============================================================================ +16:53:06 FNo. Len. Field Value +16:53:06 ============================================================================ +16:53:06 [ 1] [ 4] [0200] +16:53:06 [ 2] [ 16] [6213544001895181] +16:53:06 [ 3] [ 6] [011000] +16:53:06 [ 4] [ 12] [000050000000] +16:53:06 [ 7] [ 10] [0320165326] +16:53:06 [ 11] [ 6] [209054] +16:53:06 [ 12] [ 6] [164832] +16:53:06 [ 13] [ 4] [0320] +16:53:06 [ 14] [ 4] [4912] +16:53:06 [ 15] [ 4] [0320] +16:53:06 [ 18] [ 4] [6011] +16:53:06 [ 19] [ 3] [418] +16:53:06 [ 22] [ 3] [021] +16:53:06 [ 25] [ 2] [01] +16:53:06 [ 28] [ 9] [D00002000] +16:53:06 [ 32] [ 6] [198901] +16:53:06 [ 35] [ 32] [6213544001895181=491212019518707] +16:53:06 [ 37] [ 12] [507916209054] +16:53:06 [ 41] [ 8] [19529001] +16:53:06 [ 42] [ 15] [000000041952901] +16:53:06 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:53:06 [ 49] [ 3] [418] +16:53:06 [ 52] [ 16] [570AB1EF52EE2B44] +16:53:06 ============================================================================ +16:53:06 + + +waiting on router queue for slot.... +16:53:06 Sending to : <0> +16:53:06 ============================================================================ +16:53:07 ============================================================================ +16:53:07 Slot Id : <339> +16:53:07 Transaction Type : RESPONSE +16:53:07 Received From : +16:53:07 ============================================================================ +16:53:07 FNo. Len. Field Value +16:53:07 ============================================================================ +16:53:07 [ 1] [ 4] [0210] +16:53:07 [ 2] [ 16] [6213544001895181] +16:53:07 [ 3] [ 6] [011000] +16:53:07 [ 4] [ 12] [000050000000] +16:53:07 [ 7] [ 10] [0320165326] +16:53:07 [ 11] [ 6] [209054] +16:53:07 [ 12] [ 6] [164832] +16:53:07 [ 13] [ 4] [0320] +16:53:07 [ 15] [ 4] [0320] +16:53:07 [ 18] [ 4] [6011] +16:53:07 [ 19] [ 3] [418] +16:53:07 [ 32] [ 6] [198901] +16:53:07 [ 35] [ 32] [6213544001895181=491212019518707] +16:53:07 [ 37] [ 12] [507916209054] +16:53:07 [ 38] [ 6] [840254] +16:53:07 [ 39] [ 2] [00] +16:53:07 [ 41] [ 8] [19529001] +16:53:07 [ 49] [ 3] [418] +16:53:07 [ 54] [ 40] [1001418C0000083636701002418C000008363670] +16:53:07 ============================================================================ +16:53:07 Sending to : +16:53:07 ============================================================================ +16:53:07 + + +waiting on router queue for slot.... +16:53:08 ============================================================================ +16:53:08 Slot Id : <339> +16:53:08 Transaction Type : RESPONSE +16:53:08 Received From : +16:53:08 ============================================================================ +16:53:08 FNo. Len. Field Value +16:53:08 ============================================================================ +16:53:08 [ 1] [ 4] [0210] +16:53:08 [ 2] [ 16] [6213544001895181] +16:53:08 [ 3] [ 6] [011000] +16:53:08 [ 4] [ 12] [000050000000] +16:53:08 [ 7] [ 10] [0320165326] +16:53:08 [ 11] [ 6] [209054] +16:53:08 [ 12] [ 6] [164832] +16:53:08 [ 13] [ 4] [0320] +16:53:08 [ 15] [ 4] [0320] +16:53:08 [ 18] [ 4] [6011] +16:53:08 [ 19] [ 3] [418] +16:53:08 [ 32] [ 6] [198901] +16:53:08 [ 35] [ 32] [6213544001895181=491212019518707] +16:53:08 [ 37] [ 12] [507916209054] +16:53:08 [ 38] [ 6] [840254] +16:53:08 [ 39] [ 2] [00] +16:53:08 [ 41] [ 8] [19529001] +16:53:08 [ 49] [ 3] [418] +16:53:08 [ 54] [ 40] [1001418C0000083636701002418C000008363670] +16:53:08 ============================================================================ +16:53:08 Calculate Source COMM Id = 5 +16:53:08 ============================================================================ +16:53:08 + + +waiting on router queue for slot.... +16:53:11 ============================================================================ +16:53:11 Slot Id : <342> +16:53:11 Transaction Type : REQUEST +16:53:11 Received From : +16:53:11 ============================================================================ +16:53:11 FNo. Len. Field Value +16:53:11 ============================================================================ +16:53:11 [ 1] [ 4] [0800] +16:53:11 [ 7] [ 10] [0320095218] +16:53:11 [ 11] [ 6] [157325] +16:53:11 [ 70] [ 3] [301] +16:53:11 ============================================================================ +16:53:11 + + +waiting on router queue for slot.... +16:53:11 Sending to : +16:53:11 ============================================================================ +16:53:11 ============================================================================ +16:53:11 Slot Id : <342> +16:53:11 Transaction Type : RESPONSE +16:53:11 Received From : +16:53:11 ============================================================================ +16:53:11 FNo. Len. Field Value +16:53:11 ============================================================================ +16:53:11 [ 1] [ 4] [0810] +16:53:11 [ 7] [ 10] [0320095218] +16:53:11 [ 11] [ 6] [157325] +16:53:11 [ 39] [ 2] [00] +16:53:11 [ 70] [ 3] [301] +16:53:11 ============================================================================ +16:53:11 Calculate Source COMM Id = 2 +16:53:11 ============================================================================ +16:53:11 + + +waiting on router queue for slot.... +16:53:19 ============================================================================ +16:53:19 Slot Id : <268> +16:53:19 Transaction Type : REQUEST +16:53:19 Received From : +16:53:19 ============================================================================ +16:53:19 FNo. Len. Field Value +16:53:19 ============================================================================ +16:53:19 [ 1] [ 4] [0800] +16:53:19 [ 2] [ 5] [02531] +16:53:19 [ 3] [ 6] [579168] +16:53:19 [ 7] [ 10] [0320095319] +16:53:19 [ 11] [ 6] [807392] +16:53:19 [ 15] [ 10] [0320095319] +16:53:19 [ 37] [ 11] [57916807392] +16:53:19 [ 70] [ 3] [001] +16:53:19 ============================================================================ +16:53:19 + + +waiting on router queue for slot.... +16:53:19 ============================================================================ +16:53:19 Slot Id : <268> +16:53:19 Transaction Type : RESPONSE +16:53:19 Received From : +16:53:19 ============================================================================ +16:53:19 FNo. Len. Field Value +16:53:19 ============================================================================ +16:53:19 [ 1] [ 4] [0810] +16:53:19 [ 7] [ 10] [0320095319] +16:53:19 [ 11] [ 6] [807392] +16:53:19 [ 15] [ 4] [0320] +16:53:19 [ 37] [ 12] [57916807392] +16:53:19 [ 39] [ 2] [00] +16:53:19 [ 70] [ 3] [001] +16:53:19 ============================================================================ +16:53:19 Sending to : +16:53:19 ============================================================================ +16:53:19 + + +waiting on router queue for slot.... +16:53:21 ============================================================================ +16:53:21 Slot Id : <352> +16:53:21 Transaction Type : REQUEST +16:53:21 Received From : +16:53:21 ============================================================================ +16:53:21 FNo. Len. Field Value +16:53:21 ============================================================================ +16:53:21 [ 1] [ 4] [0800] +16:53:21 [ 7] [ 10] [0320095228] +16:53:21 [ 11] [ 6] [157326] +16:53:21 [ 70] [ 3] [301] +16:53:21 ============================================================================ +16:53:21 + + +waiting on router queue for slot.... +16:53:21 Sending to : +16:53:21 ============================================================================ +16:53:21 ============================================================================ +16:53:21 Slot Id : <352> +16:53:21 Transaction Type : RESPONSE +16:53:21 Received From : +16:53:21 ============================================================================ +16:53:21 FNo. Len. Field Value +16:53:21 ============================================================================ +16:53:21 [ 1] [ 4] [0810] +16:53:21 [ 7] [ 10] [0320095228] +16:53:21 [ 11] [ 6] [157326] +16:53:21 [ 39] [ 2] [00] +16:53:21 [ 70] [ 3] [301] +16:53:21 ============================================================================ +16:53:21 Calculate Source COMM Id = 2 +16:53:21 ============================================================================ +16:53:21 + + +waiting on router queue for slot.... +16:53:25 ============================================================================ +16:53:25 Slot Id : <309> +16:53:25 Transaction Type : REQUEST +16:53:25 Received From : +16:53:25 ============================================================================ +16:53:25 FNo. Len. Field Value +16:53:25 ============================================================================ +16:53:25 [ 1] [ 4] [0200] +16:53:25 [ 2] [ 16] [6213544002002407] +16:53:25 [ 3] [ 6] [010000] +16:53:25 [ 4] [ 12] [000040000000] +16:53:25 [ 7] [ 10] [0320170112] +16:53:25 [ 11] [ 6] [240471] +16:53:25 [ 12] [ 6] [170112] +16:53:25 [ 13] [ 4] [0320] +16:53:25 [ 14] [ 4] [4912] +16:53:25 [ 15] [ 4] [0320] +16:53:25 [ 18] [ 4] [6011] +16:53:25 [ 22] [ 3] [900] +16:53:25 [ 25] [ 2] [02] +16:53:25 [ 28] [ 9] [D00002000] +16:53:25 [ 32] [ 6] [220699] +16:53:25 [ 35] [ 32] [6213544002002407=491212010240255] +16:53:25 [ 37] [ 12] [507900360221] +16:53:25 [ 41] [ 8] [05000300] +16:53:25 [ 42] [ 15] [APTRA ] +16:53:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:53:25 [ 49] [ 3] [418] +16:53:25 [ 52] [ 16] [F6A3B9AAC72FF57F] +16:53:25 ============================================================================ +16:53:25 + + +waiting on router queue for slot.... +16:53:25 Sending to : +16:53:25 ============================================================================ +16:53:25 Sending to : +16:53:25 ============================================================================ +16:53:25 ============================================================================ +16:53:25 Slot Id : <309> +16:53:25 Transaction Type : REQUEST +16:53:25 Received From : +16:53:25 ============================================================================ +16:53:25 FNo. Len. Field Value +16:53:25 ============================================================================ +16:53:25 [ 1] [ 4] [0200] +16:53:25 [ 2] [ 16] [6213544002002407] +16:53:25 [ 3] [ 6] [010000] +16:53:25 [ 4] [ 12] [000040000000] +16:53:25 [ 7] [ 10] [0320170112] +16:53:25 [ 11] [ 6] [240471] +16:53:25 [ 12] [ 6] [170112] +16:53:25 [ 13] [ 4] [0320] +16:53:25 [ 14] [ 4] [4912] +16:53:25 [ 15] [ 4] [0320] +16:53:25 [ 18] [ 4] [6011] +16:53:25 [ 22] [ 3] [900] +16:53:25 [ 25] [ 2] [02] +16:53:25 [ 28] [ 9] [D00002000] +16:53:25 [ 32] [ 6] [220699] +16:53:25 [ 35] [ 32] [6213544002002407=491212010240255] +16:53:25 [ 37] [ 12] [507900360221] +16:53:25 [ 41] [ 8] [05000300] +16:53:25 [ 42] [ 15] [APTRA ] +16:53:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:53:25 [ 49] [ 3] [418] +16:53:25 [ 52] [ 16] [F6A3B9AAC72FF57F] +16:53:25 ============================================================================ +16:53:25 + + +waiting on router queue for slot.... +16:53:25 Sending to : +16:53:25 ============================================================================ +16:53:25 ============================================================================ +16:53:25 Slot Id : <309> +16:53:25 Transaction Type : REQUEST +16:53:25 Received From : +16:53:25 ============================================================================ +16:53:25 FNo. Len. Field Value +16:53:25 ============================================================================ +16:53:25 [ 1] [ 4] [0200] +16:53:25 [ 2] [ 16] [6213544002002407] +16:53:25 [ 3] [ 6] [010000] +16:53:25 [ 4] [ 12] [000040000000] +16:53:25 [ 7] [ 10] [0320170112] +16:53:25 [ 11] [ 6] [240471] +16:53:25 [ 12] [ 6] [170112] +16:53:25 [ 13] [ 4] [0320] +16:53:25 [ 14] [ 4] [4912] +16:53:25 [ 15] [ 4] [0320] +16:53:25 [ 18] [ 4] [6011] +16:53:25 [ 22] [ 3] [900] +16:53:25 [ 25] [ 2] [02] +16:53:25 [ 28] [ 9] [D00002000] +16:53:25 [ 32] [ 6] [220699] +16:53:25 [ 35] [ 32] [6213544002002407=491212010240255] +16:53:25 [ 37] [ 12] [507900360221] +16:53:25 [ 41] [ 8] [05000300] +16:53:25 [ 42] [ 15] [APTRA ] +16:53:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:53:25 [ 49] [ 3] [418] +16:53:25 [ 52] [ 16] [AA631FDEC28CD692] +16:53:25 ============================================================================ +16:53:25 + + +waiting on router queue for slot.... +16:53:25 Sending to : <0> +16:53:25 ============================================================================ +16:53:26 ============================================================================ +16:53:26 Slot Id : <309> +16:53:26 Transaction Type : RESPONSE +16:53:26 Received From : +16:53:26 ============================================================================ +16:53:26 FNo. Len. Field Value +16:53:26 ============================================================================ +16:53:26 [ 1] [ 4] [0210] +16:53:26 [ 2] [ 16] [6213544002002407] +16:53:26 [ 3] [ 6] [010000] +16:53:26 [ 4] [ 12] [000040000000] +16:53:26 [ 7] [ 10] [0320170112] +16:53:26 [ 11] [ 6] [240471] +16:53:26 [ 12] [ 6] [170112] +16:53:26 [ 13] [ 4] [0320] +16:53:26 [ 15] [ 4] [0320] +16:53:26 [ 18] [ 4] [6011] +16:53:26 [ 32] [ 6] [220699] +16:53:26 [ 35] [ 32] [6213544002002407=491212010240255] +16:53:26 [ 37] [ 12] [507900360221] +16:53:26 [ 38] [ 6] [647968] +16:53:26 [ 39] [ 2] [00] +16:53:26 [ 41] [ 8] [05000300] +16:53:26 [ 49] [ 3] [418] +16:53:26 [ 54] [ 40] [0001418C0000094412500002418C000009441250] +16:53:26 ============================================================================ +16:53:26 Sending to : +16:53:26 ============================================================================ +16:53:26 + + +waiting on router queue for slot.... +16:53:27 ============================================================================ +16:53:27 Slot Id : <309> +16:53:27 Transaction Type : RESPONSE +16:53:27 Received From : +16:53:27 ============================================================================ +16:53:27 FNo. Len. Field Value +16:53:27 ============================================================================ +16:53:27 [ 1] [ 4] [0210] +16:53:27 [ 2] [ 16] [6213544002002407] +16:53:27 [ 3] [ 6] [010000] +16:53:27 [ 4] [ 12] [000040000000] +16:53:27 [ 7] [ 10] [0320170112] +16:53:27 [ 11] [ 6] [240471] +16:53:27 [ 12] [ 6] [170112] +16:53:27 [ 13] [ 4] [0320] +16:53:27 [ 15] [ 4] [0320] +16:53:27 [ 18] [ 4] [6011] +16:53:27 [ 32] [ 6] [220699] +16:53:27 [ 35] [ 32] [6213544002002407=491212010240255] +16:53:27 [ 37] [ 12] [507900360221] +16:53:27 [ 38] [ 6] [647968] +16:53:27 [ 39] [ 2] [00] +16:53:27 [ 41] [ 8] [05000300] +16:53:27 [ 49] [ 3] [418] +16:53:27 [ 54] [ 40] [0001418C0000094412500002418C000009441250] +16:53:27 ============================================================================ +16:53:27 Calculate Source COMM Id = 1 +16:53:27 ============================================================================ +16:53:27 + + +waiting on router queue for slot.... +16:53:36 ============================================================================ +16:53:36 Slot Id : <348> +16:53:36 Transaction Type : REQUEST +16:53:36 Received From : +16:53:36 ============================================================================ +16:53:36 FNo. Len. Field Value +16:53:36 ============================================================================ +16:53:36 [ 1] [ 4] [0800] +16:53:36 [ 7] [ 10] [0320095243] +16:53:36 [ 11] [ 6] [157327] +16:53:36 [ 70] [ 3] [301] +16:53:36 ============================================================================ +16:53:36 + + +waiting on router queue for slot.... +16:53:36 Sending to : +16:53:36 ============================================================================ +16:53:36 ============================================================================ +16:53:36 Slot Id : <348> +16:53:36 Transaction Type : RESPONSE +16:53:36 Received From : +16:53:36 ============================================================================ +16:53:36 FNo. Len. Field Value +16:53:36 ============================================================================ +16:53:36 [ 1] [ 4] [0810] +16:53:36 [ 7] [ 10] [0320095243] +16:53:36 [ 11] [ 6] [157327] +16:53:36 [ 39] [ 2] [00] +16:53:36 [ 70] [ 3] [301] +16:53:36 ============================================================================ +16:53:36 Calculate Source COMM Id = 2 +16:53:36 ============================================================================ +16:53:36 + + +waiting on router queue for slot.... +16:53:53 ============================================================================ +16:53:53 Slot Id : <329> +16:53:53 Transaction Type : REQUEST +16:53:53 Received From : +16:53:53 ============================================================================ +16:53:53 FNo. Len. Field Value +16:53:53 ============================================================================ +16:53:53 [ 1] [ 4] [0800] +16:53:53 [ 7] [ 10] [0320095259] +16:53:53 [ 11] [ 6] [157328] +16:53:53 [ 70] [ 3] [301] +16:53:53 ============================================================================ +16:53:53 + + +waiting on router queue for slot.... +16:53:53 Sending to : +16:53:53 ============================================================================ +16:53:53 ============================================================================ +16:53:53 Slot Id : <329> +16:53:53 Transaction Type : RESPONSE +16:53:53 Received From : +16:53:53 ============================================================================ +16:53:53 FNo. Len. Field Value +16:53:53 ============================================================================ +16:53:53 [ 1] [ 4] [0810] +16:53:53 [ 7] [ 10] [0320095259] +16:53:53 [ 11] [ 6] [157328] +16:53:53 [ 39] [ 2] [00] +16:53:53 [ 70] [ 3] [301] +16:53:53 ============================================================================ +16:53:53 Calculate Source COMM Id = 2 +16:53:53 ============================================================================ +16:53:53 + + +waiting on router queue for slot.... +16:53:54 ============================================================================ +16:53:54 Slot Id : <328> +16:53:54 Transaction Type : REQUEST +16:53:54 Received From : +16:53:54 ============================================================================ +16:53:54 FNo. Len. Field Value +16:53:54 ============================================================================ +16:53:54 [ 1] [ 4] [0200] +16:53:54 [ 2] [ 16] [6688990040045377] +16:53:54 [ 3] [ 6] [011000] +16:53:54 [ 4] [ 12] [000010000000] +16:53:54 [ 7] [ 10] [0320165350] +16:53:54 [ 11] [ 6] [806461] +16:53:54 [ 12] [ 6] [165350] +16:53:54 [ 13] [ 4] [0320] +16:53:54 [ 15] [ 4] [0320] +16:53:54 [ 18] [ 4] [6011] +16:53:54 [ 22] [ 3] [900] +16:53:54 [ 25] [ 2] [02] +16:53:54 [ 28] [ 9] [D00002000] +16:53:54 [ 32] [ 6] [621354] +16:53:54 [ 35] [ 37] [6688990040045377=97121261225891100000] +16:53:54 [ 37] [ 12] [507902627618] +16:53:54 [ 41] [ 8] [14000100] +16:53:54 [ 42] [ 15] [NATIVE ] +16:53:54 [ 43] [ 40] [VV HOSPITAL Vangvieng LAO] +16:53:54 [ 49] [ 3] [418] +16:53:54 [ 52] [ 16] [564514B3BC6DAD7F] +16:53:54 ============================================================================ +16:53:54 + + +waiting on router queue for slot.... +16:53:54 Sending to : +16:53:54 ============================================================================ +16:53:54 Sending to : +16:53:54 ============================================================================ +16:53:55 ============================================================================ +16:53:55 Slot Id : <328> +16:53:55 Transaction Type : REQUEST +16:53:55 Received From : +16:53:55 ============================================================================ +16:53:55 FNo. Len. Field Value +16:53:55 ============================================================================ +16:53:55 [ 1] [ 4] [0200] +16:53:55 [ 2] [ 16] [6688990040045377] +16:53:55 [ 3] [ 6] [011000] +16:53:55 [ 4] [ 12] [000010000000] +16:53:55 [ 7] [ 10] [0320165350] +16:53:55 [ 11] [ 6] [806461] +16:53:55 [ 12] [ 6] [165350] +16:53:55 [ 13] [ 4] [0320] +16:53:55 [ 15] [ 4] [0320] +16:53:55 [ 18] [ 4] [6011] +16:53:55 [ 22] [ 3] [900] +16:53:55 [ 25] [ 2] [02] +16:53:55 [ 28] [ 9] [D00002000] +16:53:55 [ 32] [ 6] [621354] +16:53:55 [ 35] [ 37] [6688990040045377=97121261225891100000] +16:53:55 [ 37] [ 12] [507902627618] +16:53:55 [ 41] [ 8] [14000100] +16:53:55 [ 42] [ 15] [NATIVE ] +16:53:55 [ 43] [ 40] [VV HOSPITAL Vangvieng LAO] +16:53:55 [ 49] [ 3] [418] +16:53:55 [ 52] [ 16] [564514B3BC6DAD7F] +16:53:55 ============================================================================ +16:53:55 + + +waiting on router queue for slot.... +16:53:55 Sending to : +16:53:55 ============================================================================ +16:53:55 ============================================================================ +16:53:55 Slot Id : <328> +16:53:55 Transaction Type : REQUEST +16:53:55 Received From : +16:53:55 ============================================================================ +16:53:55 FNo. Len. Field Value +16:53:55 ============================================================================ +16:53:55 [ 1] [ 4] [0200] +16:53:55 [ 2] [ 16] [6688990040045377] +16:53:55 [ 3] [ 6] [011000] +16:53:55 [ 4] [ 12] [000010000000] +16:53:55 [ 7] [ 10] [0320165350] +16:53:55 [ 11] [ 6] [806461] +16:53:55 [ 12] [ 6] [165350] +16:53:55 [ 13] [ 4] [0320] +16:53:55 [ 15] [ 4] [0320] +16:53:55 [ 18] [ 4] [6011] +16:53:55 [ 22] [ 3] [900] +16:53:55 [ 25] [ 2] [02] +16:53:55 [ 28] [ 9] [D00002000] +16:53:55 [ 32] [ 6] [621354] +16:53:55 [ 35] [ 37] [6688990040045377=97121261225891100000] +16:53:55 [ 37] [ 12] [507902627618] +16:53:55 [ 41] [ 8] [14000100] +16:53:55 [ 42] [ 15] [NATIVE ] +16:53:55 [ 43] [ 40] [VV HOSPITAL Vangvieng LAO] +16:53:55 [ 49] [ 3] [418] +16:53:55 [ 52] [ 16] [3B17AEBCA8236699] +16:53:55 ============================================================================ +16:53:55 + + +waiting on router queue for slot.... +16:53:55 Sending to : <4> +16:53:55 ============================================================================ +16:53:55 ============================================================================ +16:53:55 Slot Id : <347> +16:53:55 Transaction Type : REQUEST +16:53:55 Received From : +16:53:55 ============================================================================ +16:53:55 FNo. Len. Field Value +16:53:55 ============================================================================ +16:53:55 [ 1] [ 4] [0800] +16:53:55 [ 7] [ 10] [0321000543] +16:53:55 [ 11] [ 6] [170543] +16:53:55 [ 37] [ 12] [57917170543] +16:53:55 [ 70] [ 3] [301] +16:53:55 ============================================================================ +16:53:55 + + +waiting on router queue for slot.... +16:53:55 Sending to : +16:53:55 ============================================================================ +16:53:55 ============================================================================ +16:53:55 Slot Id : <347> +16:53:55 Transaction Type : RESPONSE +16:53:55 Received From : +16:53:55 ============================================================================ +16:53:55 FNo. Len. Field Value +16:53:55 ============================================================================ +16:53:55 [ 1] [ 4] [0810] +16:53:55 [ 7] [ 10] [0321000543] +16:53:55 [ 11] [ 6] [170543] +16:53:55 [ 37] [ 12] [579171705430] +16:53:55 [ 39] [ 2] [00] +16:53:55 [ 70] [ 3] [810] +16:53:55 ============================================================================ +16:53:55 Calculate Source COMM Id = 6 +16:53:55 ============================================================================ +16:53:55 + + +waiting on router queue for slot.... +16:53:56 ============================================================================ +16:53:56 Slot Id : <350> +16:53:56 Transaction Type : REQUEST +16:53:56 Received From : +16:53:56 ============================================================================ +16:53:56 FNo. Len. Field Value +16:53:56 ============================================================================ +16:53:56 [ 1] [ 4] [0200] +16:53:56 [ 2] [ 16] [6688990104449309] +16:53:56 [ 3] [ 6] [010000] +16:53:56 [ 4] [ 12] [000100000000] +16:53:56 [ 7] [ 10] [0320165351] +16:53:56 [ 11] [ 6] [806466] +16:53:56 [ 12] [ 6] [165351] +16:53:56 [ 13] [ 4] [0320] +16:53:56 [ 15] [ 4] [0320] +16:53:56 [ 18] [ 4] [6011] +16:53:56 [ 22] [ 3] [900] +16:53:56 [ 25] [ 2] [02] +16:53:56 [ 28] [ 9] [D00002000] +16:53:56 [ 32] [ 6] [621354] +16:53:56 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:53:56 [ 37] [ 12] [507903499629] +16:53:56 [ 41] [ 8] [06002200] +16:53:56 [ 42] [ 15] [NATIVE ] +16:53:56 [ 43] [ 40] [Beng Market Beng LAO] +16:53:56 [ 49] [ 3] [418] +16:53:56 [ 52] [ 16] [E44E90AEE92E23D1] +16:53:56 ============================================================================ +16:53:56 + + +waiting on router queue for slot.... +16:53:56 Sending to : +16:53:56 ============================================================================ +16:53:56 Sending to : +16:53:56 ============================================================================ +16:53:56 ============================================================================ +16:53:56 Slot Id : <328> +16:53:56 Transaction Type : RESPONSE +16:53:56 Received From : +16:53:56 ============================================================================ +16:53:56 FNo. Len. Field Value +16:53:56 ============================================================================ +16:53:56 [ 1] [ 4] [0210] +16:53:56 [ 2] [ 16] [6688990040045377] +16:53:56 [ 3] [ 6] [011000] +16:53:56 [ 4] [ 12] [000010000000] +16:53:56 [ 11] [ 6] [806461] +16:53:56 [ 12] [ 6] [165350] +16:53:56 [ 15] [ 4] [0320] +16:53:56 [ 18] [ 4] [6011] +16:53:56 [ 32] [ 6] [621354] +16:53:56 [ 35] [ 37] [6688990040045377=97121261225891100000] +16:53:56 [ 37] [ 12] [507902627618] +16:53:56 [ 38] [ 6] [283080] +16:53:56 [ 39] [ 2] [00] +16:53:56 [ 41] [ 8] [14000100] +16:53:56 [ 49] [ 3] [418] +16:53:56 [ 54] [ 20] [1002418C000060650108] +16:53:56 ============================================================================ +16:53:56 Sending to : +16:53:56 ============================================================================ +16:53:56 + + +waiting on router queue for slot.... +16:53:56 ============================================================================ +16:53:56 Slot Id : <350> +16:53:56 Transaction Type : REQUEST +16:53:56 Received From : +16:53:56 ============================================================================ +16:53:56 FNo. Len. Field Value +16:53:56 ============================================================================ +16:53:56 [ 1] [ 4] [0200] +16:53:56 [ 2] [ 16] [6688990104449309] +16:53:56 [ 3] [ 6] [010000] +16:53:56 [ 4] [ 12] [000100000000] +16:53:56 [ 7] [ 10] [0320165351] +16:53:56 [ 11] [ 6] [806466] +16:53:56 [ 12] [ 6] [165351] +16:53:56 [ 13] [ 4] [0320] +16:53:56 [ 15] [ 4] [0320] +16:53:56 [ 18] [ 4] [6011] +16:53:56 [ 22] [ 3] [900] +16:53:56 [ 25] [ 2] [02] +16:53:56 [ 28] [ 9] [D00002000] +16:53:56 [ 32] [ 6] [621354] +16:53:56 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:53:56 [ 37] [ 12] [507903499629] +16:53:56 [ 41] [ 8] [06002200] +16:53:56 [ 42] [ 15] [NATIVE ] +16:53:56 [ 43] [ 40] [Beng Market Beng LAO] +16:53:56 [ 49] [ 3] [418] +16:53:56 [ 52] [ 16] [E44E90AEE92E23D1] +16:53:56 ============================================================================ +16:53:56 + + +waiting on router queue for slot.... +16:53:56 Sending to : +16:53:56 ============================================================================ +16:53:56 ============================================================================ +16:53:56 Slot Id : <350> +16:53:56 Transaction Type : REQUEST +16:53:56 Received From : +16:53:56 ============================================================================ +16:53:56 FNo. Len. Field Value +16:53:56 ============================================================================ +16:53:56 [ 1] [ 4] [0200] +16:53:56 [ 2] [ 16] [6688990104449309] +16:53:56 [ 3] [ 6] [010000] +16:53:56 [ 4] [ 12] [000100000000] +16:53:56 [ 7] [ 10] [0320165351] +16:53:56 [ 11] [ 6] [806466] +16:53:56 [ 12] [ 6] [165351] +16:53:56 [ 13] [ 4] [0320] +16:53:56 [ 15] [ 4] [0320] +16:53:56 [ 18] [ 4] [6011] +16:53:56 [ 22] [ 3] [900] +16:53:56 [ 25] [ 2] [02] +16:53:56 [ 28] [ 9] [D00002000] +16:53:56 [ 32] [ 6] [621354] +16:53:56 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:53:56 [ 37] [ 12] [507903499629] +16:53:56 [ 41] [ 8] [06002200] +16:53:56 [ 42] [ 15] [NATIVE ] +16:53:56 [ 43] [ 40] [Beng Market Beng LAO] +16:53:56 [ 49] [ 3] [418] +16:53:56 [ 52] [ 16] [421E7DE0E6D73813] +16:53:56 ============================================================================ +16:53:56 + + +waiting on router queue for slot.... +16:53:56 Sending to : <4> +16:53:56 ============================================================================ +16:53:57 ============================================================================ +16:53:57 Slot Id : <350> +16:53:57 Transaction Type : RESPONSE +16:53:57 Received From : +16:53:57 ============================================================================ +16:53:57 FNo. Len. Field Value +16:53:57 ============================================================================ +16:53:57 [ 1] [ 4] [0210] +16:53:57 [ 2] [ 16] [6688990104449309] +16:53:57 [ 3] [ 6] [010000] +16:53:57 [ 4] [ 12] [000100000000] +16:53:57 [ 11] [ 6] [806466] +16:53:57 [ 12] [ 6] [165351] +16:53:57 [ 15] [ 4] [0320] +16:53:57 [ 18] [ 4] [6011] +16:53:57 [ 32] [ 6] [621354] +16:53:57 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:53:57 [ 37] [ 12] [507903499629] +16:53:57 [ 38] [ 6] [421767] +16:53:57 [ 39] [ 2] [00] +16:53:57 [ 41] [ 8] [06002200] +16:53:57 [ 49] [ 3] [418] +16:53:57 [ 54] [ 20] [0002418C000163001119] +16:53:57 ============================================================================ +16:53:57 Sending to : +16:53:57 ============================================================================ +16:53:57 + + +waiting on router queue for slot.... +16:53:57 ============================================================================ +16:53:57 Slot Id : <328> +16:53:57 Transaction Type : RESPONSE +16:53:57 Received From : +16:53:57 ============================================================================ +16:53:57 FNo. Len. Field Value +16:53:57 ============================================================================ +16:53:57 [ 1] [ 4] [0210] +16:53:57 [ 2] [ 16] [6688990040045377] +16:53:57 [ 3] [ 6] [011000] +16:53:57 [ 4] [ 12] [000010000000] +16:53:57 [ 11] [ 6] [806461] +16:53:57 [ 12] [ 6] [165350] +16:53:57 [ 15] [ 4] [0320] +16:53:57 [ 18] [ 4] [6011] +16:53:57 [ 32] [ 6] [621354] +16:53:57 [ 35] [ 37] [6688990040045377=97121261225891100000] +16:53:57 [ 37] [ 12] [507902627618] +16:53:57 [ 38] [ 6] [283080] +16:53:57 [ 39] [ 2] [00] +16:53:57 [ 41] [ 8] [14000100] +16:53:57 [ 49] [ 3] [418] +16:53:57 [ 54] [ 20] [1002418C000060650108] +16:53:57 ============================================================================ +16:53:57 Calculate Source COMM Id = 0 +16:53:57 ============================================================================ +16:53:57 + + +waiting on router queue for slot.... +16:53:59 ============================================================================ +16:53:59 Slot Id : <350> +16:53:59 Transaction Type : RESPONSE +16:53:59 Received From : +16:53:59 ============================================================================ +16:53:59 FNo. Len. Field Value +16:53:59 ============================================================================ +16:53:59 [ 1] [ 4] [0210] +16:53:59 [ 2] [ 16] [6688990104449309] +16:53:59 [ 3] [ 6] [010000] +16:53:59 [ 4] [ 12] [000100000000] +16:53:59 [ 11] [ 6] [806466] +16:53:59 [ 12] [ 6] [165351] +16:53:59 [ 15] [ 4] [0320] +16:53:59 [ 18] [ 4] [6011] +16:53:59 [ 32] [ 6] [621354] +16:53:59 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:53:59 [ 37] [ 12] [507903499629] +16:53:59 [ 38] [ 6] [421767] +16:53:59 [ 39] [ 2] [00] +16:53:59 [ 41] [ 8] [06002200] +16:53:59 [ 49] [ 3] [418] +16:53:59 [ 54] [ 20] [0002418C000163001119] +16:53:59 ============================================================================ +16:53:59 Calculate Source COMM Id = 0 +16:53:59 ============================================================================ +16:53:59 + + +waiting on router queue for slot.... +16:54:09 ============================================================================ +16:54:09 Slot Id : <337> +16:54:09 Transaction Type : REQUEST +16:54:09 Received From : +16:54:09 ============================================================================ +16:54:09 FNo. Len. Field Value +16:54:09 ============================================================================ +16:54:09 [ 1] [ 4] [0200] +16:54:09 [ 2] [ 16] [6213544001930186] +16:54:09 [ 3] [ 6] [011000] +16:54:09 [ 4] [ 12] [000025000000] +16:54:09 [ 7] [ 10] [0320165429] +16:54:09 [ 11] [ 6] [209066] +16:54:09 [ 12] [ 6] [164935] +16:54:09 [ 13] [ 4] [0320] +16:54:09 [ 14] [ 4] [4912] +16:54:09 [ 15] [ 4] [0320] +16:54:09 [ 18] [ 4] [6011] +16:54:09 [ 19] [ 3] [418] +16:54:09 [ 22] [ 3] [021] +16:54:09 [ 25] [ 2] [01] +16:54:09 [ 28] [ 9] [D00002000] +16:54:09 [ 32] [ 6] [198901] +16:54:09 [ 35] [ 32] [6213544001930186=491212013018521] +16:54:09 [ 37] [ 12] [507916209066] +16:54:09 [ 41] [ 8] [19529001] +16:54:09 [ 42] [ 15] [000000041952901] +16:54:09 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:54:09 [ 49] [ 3] [418] +16:54:09 [ 52] [ 16] [2A34DEA56022EC80] +16:54:09 ============================================================================ +16:54:09 + + +waiting on router queue for slot.... +16:54:09 Sending to : +16:54:09 ============================================================================ +16:54:09 Sending to : +16:54:09 ============================================================================ +16:54:09 ============================================================================ +16:54:09 Slot Id : <346> +16:54:09 Transaction Type : REQUEST +16:54:09 Received From : +16:54:09 ============================================================================ +16:54:09 FNo. Len. Field Value +16:54:09 ============================================================================ +16:54:09 [ 1] [ 4] [0800] +16:54:09 [ 7] [ 10] [0320095316] +16:54:09 [ 11] [ 6] [157329] +16:54:09 [ 70] [ 3] [301] +16:54:09 ============================================================================ +16:54:09 + + +waiting on router queue for slot.... +16:54:09 Sending to : +16:54:09 ============================================================================ +16:54:09 ============================================================================ +16:54:09 Slot Id : <346> +16:54:09 Transaction Type : RESPONSE +16:54:09 Received From : +16:54:09 ============================================================================ +16:54:09 FNo. Len. Field Value +16:54:09 ============================================================================ +16:54:09 [ 1] [ 4] [0810] +16:54:09 [ 7] [ 10] [0320095316] +16:54:09 [ 11] [ 6] [157329] +16:54:09 [ 39] [ 2] [00] +16:54:09 [ 70] [ 3] [301] +16:54:09 ============================================================================ +16:54:09 Calculate Source COMM Id = 2 +16:54:09 ============================================================================ +16:54:09 + + +waiting on router queue for slot.... +16:54:09 ============================================================================ +16:54:09 Slot Id : <337> +16:54:09 Transaction Type : REQUEST +16:54:09 Received From : +16:54:09 ============================================================================ +16:54:09 FNo. Len. Field Value +16:54:09 ============================================================================ +16:54:09 [ 1] [ 4] [0200] +16:54:09 [ 2] [ 16] [6213544001930186] +16:54:09 [ 3] [ 6] [011000] +16:54:09 [ 4] [ 12] [000025000000] +16:54:09 [ 7] [ 10] [0320165429] +16:54:09 [ 11] [ 6] [209066] +16:54:09 [ 12] [ 6] [164935] +16:54:09 [ 13] [ 4] [0320] +16:54:09 [ 14] [ 4] [4912] +16:54:09 [ 15] [ 4] [0320] +16:54:09 [ 18] [ 4] [6011] +16:54:09 [ 19] [ 3] [418] +16:54:09 [ 22] [ 3] [021] +16:54:09 [ 25] [ 2] [01] +16:54:09 [ 28] [ 9] [D00002000] +16:54:09 [ 32] [ 6] [198901] +16:54:09 [ 35] [ 32] [6213544001930186=491212013018521] +16:54:09 [ 37] [ 12] [507916209066] +16:54:09 [ 41] [ 8] [19529001] +16:54:09 [ 42] [ 15] [000000041952901] +16:54:09 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:54:09 [ 49] [ 3] [418] +16:54:09 [ 52] [ 16] [2A34DEA56022EC80] +16:54:09 ============================================================================ +16:54:09 + + +waiting on router queue for slot.... +16:54:09 Sending to : +16:54:09 ============================================================================ +16:54:09 ============================================================================ +16:54:09 Slot Id : <337> +16:54:09 Transaction Type : REQUEST +16:54:09 Received From : +16:54:09 ============================================================================ +16:54:09 FNo. Len. Field Value +16:54:09 ============================================================================ +16:54:09 [ 1] [ 4] [0200] +16:54:09 [ 2] [ 16] [6213544001930186] +16:54:09 [ 3] [ 6] [011000] +16:54:09 [ 4] [ 12] [000025000000] +16:54:09 [ 7] [ 10] [0320165429] +16:54:09 [ 11] [ 6] [209066] +16:54:09 [ 12] [ 6] [164935] +16:54:09 [ 13] [ 4] [0320] +16:54:09 [ 14] [ 4] [4912] +16:54:09 [ 15] [ 4] [0320] +16:54:09 [ 18] [ 4] [6011] +16:54:09 [ 19] [ 3] [418] +16:54:09 [ 22] [ 3] [021] +16:54:09 [ 25] [ 2] [01] +16:54:09 [ 28] [ 9] [D00002000] +16:54:09 [ 32] [ 6] [198901] +16:54:09 [ 35] [ 32] [6213544001930186=491212013018521] +16:54:09 [ 37] [ 12] [507916209066] +16:54:09 [ 41] [ 8] [19529001] +16:54:09 [ 42] [ 15] [000000041952901] +16:54:09 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:54:09 [ 49] [ 3] [418] +16:54:09 [ 52] [ 16] [E0BBC8E13C65D371] +16:54:09 ============================================================================ +16:54:09 + + +waiting on router queue for slot.... +16:54:09 Sending to : <0> +16:54:09 ============================================================================ +16:54:10 ============================================================================ +16:54:10 Slot Id : <337> +16:54:10 Transaction Type : RESPONSE +16:54:10 Received From : +16:54:10 ============================================================================ +16:54:10 FNo. Len. Field Value +16:54:10 ============================================================================ +16:54:10 [ 1] [ 4] [0210] +16:54:10 [ 2] [ 16] [6213544001930186] +16:54:10 [ 3] [ 6] [011000] +16:54:10 [ 4] [ 12] [000025000000] +16:54:10 [ 7] [ 10] [0320165429] +16:54:10 [ 11] [ 6] [209066] +16:54:10 [ 12] [ 6] [164935] +16:54:10 [ 13] [ 4] [0320] +16:54:10 [ 15] [ 4] [0320] +16:54:10 [ 18] [ 4] [6011] +16:54:10 [ 19] [ 3] [418] +16:54:10 [ 32] [ 6] [198901] +16:54:10 [ 35] [ 32] [6213544001930186=491212013018521] +16:54:10 [ 37] [ 12] [507916209066] +16:54:10 [ 38] [ 6] [479985] +16:54:10 [ 39] [ 2] [00] +16:54:10 [ 41] [ 8] [19529001] +16:54:10 [ 49] [ 3] [418] +16:54:10 [ 54] [ 40] [1001418C0000393475711002418C000039347571] +16:54:10 ============================================================================ +16:54:10 Sending to : +16:54:10 ============================================================================ +16:54:10 + + +waiting on router queue for slot.... +16:54:11 ============================================================================ +16:54:11 Slot Id : <337> +16:54:11 Transaction Type : RESPONSE +16:54:11 Received From : +16:54:11 ============================================================================ +16:54:11 FNo. Len. Field Value +16:54:11 ============================================================================ +16:54:11 [ 1] [ 4] [0210] +16:54:11 [ 2] [ 16] [6213544001930186] +16:54:11 [ 3] [ 6] [011000] +16:54:11 [ 4] [ 12] [000025000000] +16:54:11 [ 7] [ 10] [0320165429] +16:54:11 [ 11] [ 6] [209066] +16:54:11 [ 12] [ 6] [164935] +16:54:11 [ 13] [ 4] [0320] +16:54:11 [ 15] [ 4] [0320] +16:54:11 [ 18] [ 4] [6011] +16:54:11 [ 19] [ 3] [418] +16:54:11 [ 32] [ 6] [198901] +16:54:11 [ 35] [ 32] [6213544001930186=491212013018521] +16:54:11 [ 37] [ 12] [507916209066] +16:54:11 [ 38] [ 6] [479985] +16:54:11 [ 39] [ 2] [00] +16:54:11 [ 41] [ 8] [19529001] +16:54:11 [ 49] [ 3] [418] +16:54:11 [ 54] [ 40] [1001418C0000393475711002418C000039347571] +16:54:11 ============================================================================ +16:54:11 Calculate Source COMM Id = 5 +16:54:11 ============================================================================ +16:54:11 + + +waiting on router queue for slot.... +16:54:13 ============================================================================ +16:54:13 Slot Id : <357> +16:54:13 Transaction Type : REQUEST +16:54:13 Received From : +16:54:13 ============================================================================ +16:54:13 FNo. Len. Field Value +16:54:13 ============================================================================ +16:54:13 [ 1] [ 4] [0200] +16:54:13 [ 2] [ 16] [6213544001970901] +16:54:13 [ 3] [ 6] [010000] +16:54:13 [ 4] [ 12] [000045000000] +16:54:13 [ 7] [ 10] [0320170200] +16:54:13 [ 11] [ 6] [240474] +16:54:13 [ 12] [ 6] [170200] +16:54:13 [ 13] [ 4] [0320] +16:54:13 [ 14] [ 4] [4912] +16:54:13 [ 15] [ 4] [0320] +16:54:13 [ 18] [ 4] [6011] +16:54:13 [ 22] [ 3] [900] +16:54:13 [ 25] [ 2] [02] +16:54:13 [ 28] [ 9] [D00002000] +16:54:13 [ 32] [ 6] [220699] +16:54:13 [ 35] [ 32] [6213544001970901=491212017090379] +16:54:13 [ 37] [ 12] [507900360223] +16:54:13 [ 41] [ 8] [05000300] +16:54:13 [ 42] [ 15] [APTRA ] +16:54:13 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:54:13 [ 49] [ 3] [418] +16:54:13 [ 52] [ 16] [2290DDEB4BF7BE4E] +16:54:13 ============================================================================ +16:54:13 + + +waiting on router queue for slot.... +16:54:13 Sending to : +16:54:13 ============================================================================ +16:54:13 Sending to : +16:54:13 ============================================================================ +16:54:14 ============================================================================ +16:54:14 Slot Id : <357> +16:54:14 Transaction Type : REQUEST +16:54:14 Received From : +16:54:14 ============================================================================ +16:54:14 FNo. Len. Field Value +16:54:14 ============================================================================ +16:54:14 [ 1] [ 4] [0200] +16:54:14 [ 2] [ 16] [6213544001970901] +16:54:14 [ 3] [ 6] [010000] +16:54:14 [ 4] [ 12] [000045000000] +16:54:14 [ 7] [ 10] [0320170200] +16:54:14 [ 11] [ 6] [240474] +16:54:14 [ 12] [ 6] [170200] +16:54:14 [ 13] [ 4] [0320] +16:54:14 [ 14] [ 4] [4912] +16:54:14 [ 15] [ 4] [0320] +16:54:14 [ 18] [ 4] [6011] +16:54:14 [ 22] [ 3] [900] +16:54:14 [ 25] [ 2] [02] +16:54:14 [ 28] [ 9] [D00002000] +16:54:14 [ 32] [ 6] [220699] +16:54:14 [ 35] [ 32] [6213544001970901=491212017090379] +16:54:14 [ 37] [ 12] [507900360223] +16:54:14 [ 41] [ 8] [05000300] +16:54:14 [ 42] [ 15] [APTRA ] +16:54:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:54:14 [ 49] [ 3] [418] +16:54:14 [ 52] [ 16] [2290DDEB4BF7BE4E] +16:54:14 ============================================================================ +16:54:14 + + +waiting on router queue for slot.... +16:54:14 Sending to : +16:54:14 ============================================================================ +16:54:14 ============================================================================ +16:54:14 Slot Id : <357> +16:54:14 Transaction Type : REQUEST +16:54:14 Received From : +16:54:14 ============================================================================ +16:54:14 FNo. Len. Field Value +16:54:14 ============================================================================ +16:54:14 [ 1] [ 4] [0200] +16:54:14 [ 2] [ 16] [6213544001970901] +16:54:14 [ 3] [ 6] [010000] +16:54:14 [ 4] [ 12] [000045000000] +16:54:14 [ 7] [ 10] [0320170200] +16:54:14 [ 11] [ 6] [240474] +16:54:14 [ 12] [ 6] [170200] +16:54:14 [ 13] [ 4] [0320] +16:54:14 [ 14] [ 4] [4912] +16:54:14 [ 15] [ 4] [0320] +16:54:14 [ 18] [ 4] [6011] +16:54:14 [ 22] [ 3] [900] +16:54:14 [ 25] [ 2] [02] +16:54:14 [ 28] [ 9] [D00002000] +16:54:14 [ 32] [ 6] [220699] +16:54:14 [ 35] [ 32] [6213544001970901=491212017090379] +16:54:14 [ 37] [ 12] [507900360223] +16:54:14 [ 41] [ 8] [05000300] +16:54:14 [ 42] [ 15] [APTRA ] +16:54:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:54:14 [ 49] [ 3] [418] +16:54:14 [ 52] [ 16] [B4F663B434BD9E4F] +16:54:14 ============================================================================ +16:54:14 + + +waiting on router queue for slot.... +16:54:14 Sending to : <0> +16:54:14 ============================================================================ +16:54:14 ============================================================================ +16:54:14 Slot Id : <357> +16:54:14 Transaction Type : RESPONSE +16:54:14 Received From : +16:54:14 ============================================================================ +16:54:14 FNo. Len. Field Value +16:54:14 ============================================================================ +16:54:14 [ 1] [ 4] [0210] +16:54:14 [ 2] [ 16] [6213544001970901] +16:54:14 [ 3] [ 6] [010000] +16:54:14 [ 4] [ 12] [000045000000] +16:54:14 [ 7] [ 10] [0320170200] +16:54:14 [ 11] [ 6] [240474] +16:54:14 [ 12] [ 6] [170200] +16:54:14 [ 13] [ 4] [0320] +16:54:14 [ 15] [ 4] [0320] +16:54:14 [ 18] [ 4] [6011] +16:54:14 [ 32] [ 6] [220699] +16:54:14 [ 35] [ 32] [6213544001970901=491212017090379] +16:54:14 [ 37] [ 12] [507900360223] +16:54:14 [ 38] [ 6] [264557] +16:54:14 [ 39] [ 2] [00] +16:54:14 [ 41] [ 8] [05000300] +16:54:14 [ 49] [ 3] [418] +16:54:14 [ 54] [ 40] [0001418C0000177345800002418C000017734580] +16:54:14 ============================================================================ +16:54:14 Sending to : +16:54:14 ============================================================================ +16:54:14 + + +waiting on router queue for slot.... +16:54:16 ============================================================================ +16:54:16 Slot Id : <357> +16:54:16 Transaction Type : RESPONSE +16:54:16 Received From : +16:54:16 ============================================================================ +16:54:16 FNo. Len. Field Value +16:54:16 ============================================================================ +16:54:16 [ 1] [ 4] [0210] +16:54:16 [ 2] [ 16] [6213544001970901] +16:54:16 [ 3] [ 6] [010000] +16:54:16 [ 4] [ 12] [000045000000] +16:54:16 [ 7] [ 10] [0320170200] +16:54:16 [ 11] [ 6] [240474] +16:54:16 [ 12] [ 6] [170200] +16:54:16 [ 13] [ 4] [0320] +16:54:16 [ 15] [ 4] [0320] +16:54:16 [ 18] [ 4] [6011] +16:54:16 [ 32] [ 6] [220699] +16:54:16 [ 35] [ 32] [6213544001970901=491212017090379] +16:54:16 [ 37] [ 12] [507900360223] +16:54:16 [ 38] [ 6] [264557] +16:54:16 [ 39] [ 2] [00] +16:54:16 [ 41] [ 8] [05000300] +16:54:16 [ 49] [ 3] [418] +16:54:16 [ 54] [ 40] [0001418C0000177345800002418C000017734580] +16:54:16 ============================================================================ +16:54:16 Calculate Source COMM Id = 1 +16:54:16 ============================================================================ +16:54:16 + + +waiting on router queue for slot.... +16:54:18 ============================================================================ +16:54:18 Slot Id : <319> +16:54:18 Transaction Type : REQUEST +16:54:18 Received From : +16:54:18 ============================================================================ +16:54:18 FNo. Len. Field Value +16:54:18 ============================================================================ +16:54:18 [ 1] [ 4] [0200] +16:54:18 [ 2] [ 16] [6213544001961595] +16:54:18 [ 3] [ 6] [010000] +16:54:18 [ 4] [ 12] [000054000000] +16:54:18 [ 7] [ 10] [0320165208] +16:54:18 [ 11] [ 6] [952547] +16:54:18 [ 12] [ 6] [165208] +16:54:18 [ 13] [ 4] [0320] +16:54:18 [ 15] [ 4] [0320] +16:54:18 [ 18] [ 4] [6011] +16:54:18 [ 19] [ 3] [418] +16:54:18 [ 22] [ 3] [021] +16:54:18 [ 25] [ 2] [01] +16:54:18 [ 28] [ 9] [D00002000] +16:54:18 [ 32] [ 6] [668899] +16:54:18 [ 35] [ 32] [6213544001961595=491212016159844] +16:54:18 [ 37] [ 12] [507902025634] +16:54:18 [ 41] [ 8] [03414002] +16:54:18 [ 42] [ 15] [APT ] +16:54:18 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:54:18 [ 49] [ 3] [418] +16:54:18 [ 52] [ 16] [AC893B2B51947003] +16:54:18 ============================================================================ +16:54:18 + + +waiting on router queue for slot.... +16:54:18 Sending to : +16:54:18 ============================================================================ +16:54:18 Sending to : +16:54:18 ============================================================================ +16:54:18 ============================================================================ +16:54:18 Slot Id : <319> +16:54:18 Transaction Type : REQUEST +16:54:18 Received From : +16:54:18 ============================================================================ +16:54:18 FNo. Len. Field Value +16:54:18 ============================================================================ +16:54:18 [ 1] [ 4] [0200] +16:54:18 [ 2] [ 16] [6213544001961595] +16:54:18 [ 3] [ 6] [010000] +16:54:18 [ 4] [ 12] [000054000000] +16:54:18 [ 7] [ 10] [0320165208] +16:54:18 [ 11] [ 6] [952547] +16:54:18 [ 12] [ 6] [165208] +16:54:18 [ 13] [ 4] [0320] +16:54:18 [ 15] [ 4] [0320] +16:54:18 [ 18] [ 4] [6011] +16:54:18 [ 19] [ 3] [418] +16:54:18 [ 22] [ 3] [021] +16:54:18 [ 25] [ 2] [01] +16:54:18 [ 28] [ 9] [D00002000] +16:54:18 [ 32] [ 6] [668899] +16:54:18 [ 35] [ 32] [6213544001961595=491212016159844] +16:54:18 [ 37] [ 12] [507902025634] +16:54:18 [ 41] [ 8] [03414002] +16:54:18 [ 42] [ 15] [APT ] +16:54:18 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:54:18 [ 49] [ 3] [418] +16:54:18 [ 52] [ 16] [AC893B2B51947003] +16:54:18 ============================================================================ +16:54:18 + + +waiting on router queue for slot.... +16:54:18 Sending to : +16:54:18 ============================================================================ +16:54:18 ============================================================================ +16:54:18 Slot Id : <319> +16:54:18 Transaction Type : REQUEST +16:54:18 Received From : +16:54:18 ============================================================================ +16:54:18 FNo. Len. Field Value +16:54:18 ============================================================================ +16:54:18 [ 1] [ 4] [0200] +16:54:18 [ 2] [ 16] [6213544001961595] +16:54:18 [ 3] [ 6] [010000] +16:54:18 [ 4] [ 12] [000054000000] +16:54:18 [ 7] [ 10] [0320165208] +16:54:18 [ 11] [ 6] [952547] +16:54:18 [ 12] [ 6] [165208] +16:54:18 [ 13] [ 4] [0320] +16:54:18 [ 15] [ 4] [0320] +16:54:18 [ 18] [ 4] [6011] +16:54:18 [ 19] [ 3] [418] +16:54:18 [ 22] [ 3] [021] +16:54:18 [ 25] [ 2] [01] +16:54:18 [ 28] [ 9] [D00002000] +16:54:18 [ 32] [ 6] [668899] +16:54:18 [ 35] [ 32] [6213544001961595=491212016159844] +16:54:18 [ 37] [ 12] [507902025634] +16:54:18 [ 41] [ 8] [03414002] +16:54:18 [ 42] [ 15] [APT ] +16:54:18 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:54:18 [ 49] [ 3] [418] +16:54:18 [ 52] [ 16] [B128DC48CBE305CB] +16:54:18 ============================================================================ +16:54:18 + + +waiting on router queue for slot.... +16:54:18 Sending to : <0> +16:54:18 ============================================================================ +16:54:19 ============================================================================ +16:54:19 Slot Id : <319> +16:54:19 Transaction Type : RESPONSE +16:54:19 Received From : +16:54:19 ============================================================================ +16:54:19 FNo. Len. Field Value +16:54:19 ============================================================================ +16:54:19 [ 1] [ 4] [0210] +16:54:19 [ 2] [ 16] [6213544001961595] +16:54:19 [ 3] [ 6] [010000] +16:54:19 [ 4] [ 12] [000054000000] +16:54:19 [ 7] [ 10] [0320165208] +16:54:19 [ 11] [ 6] [952547] +16:54:19 [ 12] [ 6] [165208] +16:54:19 [ 13] [ 4] [0320] +16:54:19 [ 15] [ 4] [0320] +16:54:19 [ 18] [ 4] [6011] +16:54:19 [ 19] [ 3] [418] +16:54:19 [ 32] [ 6] [668899] +16:54:19 [ 35] [ 32] [6213544001961595=491212016159844] +16:54:19 [ 37] [ 12] [507902025634] +16:54:19 [ 38] [ 6] [967020] +16:54:19 [ 39] [ 2] [00] +16:54:19 [ 41] [ 8] [03414002] +16:54:19 [ 49] [ 3] [418] +16:54:19 [ 54] [ 40] [0001418C0000061705280002418C000006170528] +16:54:19 ============================================================================ +16:54:19 Sending to : +16:54:19 ============================================================================ +16:54:19 + + +waiting on router queue for slot.... +16:54:20 ============================================================================ +16:54:20 Slot Id : <319> +16:54:20 Transaction Type : RESPONSE +16:54:20 Received From : +16:54:20 ============================================================================ +16:54:20 FNo. Len. Field Value +16:54:20 ============================================================================ +16:54:20 [ 1] [ 4] [0210] +16:54:20 [ 2] [ 16] [6213544001961595] +16:54:20 [ 3] [ 6] [010000] +16:54:20 [ 4] [ 12] [000054000000] +16:54:20 [ 7] [ 10] [0320165208] +16:54:20 [ 11] [ 6] [952547] +16:54:20 [ 12] [ 6] [165208] +16:54:20 [ 13] [ 4] [0320] +16:54:20 [ 15] [ 4] [0320] +16:54:20 [ 18] [ 4] [6011] +16:54:20 [ 19] [ 3] [418] +16:54:20 [ 32] [ 6] [668899] +16:54:20 [ 35] [ 32] [6213544001961595=491212016159844] +16:54:20 [ 37] [ 12] [507902025634] +16:54:20 [ 38] [ 6] [967020] +16:54:20 [ 39] [ 2] [00] +16:54:20 [ 41] [ 8] [03414002] +16:54:20 [ 49] [ 3] [418] +16:54:20 [ 54] [ 40] [0001418C0000061705280002418C000006170528] +16:54:20 ============================================================================ +16:54:20 Calculate Source COMM Id = 4 +16:54:20 ============================================================================ +16:54:20 + + +waiting on router queue for slot.... +16:54:21 ============================================================================ +16:54:21 Slot Id : <332> +16:54:21 Transaction Type : REQUEST +16:54:21 Received From : +16:54:21 ============================================================================ +16:54:21 FNo. Len. Field Value +16:54:21 ============================================================================ +16:54:21 [ 1] [ 4] [0800] +16:54:21 [ 2] [ 5] [02531] +16:54:21 [ 3] [ 6] [579168] +16:54:21 [ 7] [ 10] [0320095421] +16:54:21 [ 11] [ 6] [807393] +16:54:21 [ 15] [ 10] [0320095421] +16:54:21 [ 37] [ 11] [57916807393] +16:54:21 [ 70] [ 3] [001] +16:54:21 ============================================================================ +16:54:21 + + +waiting on router queue for slot.... +16:54:21 ============================================================================ +16:54:21 Slot Id : <332> +16:54:21 Transaction Type : RESPONSE +16:54:21 Received From : +16:54:21 ============================================================================ +16:54:21 FNo. Len. Field Value +16:54:21 ============================================================================ +16:54:21 [ 1] [ 4] [0810] +16:54:21 [ 7] [ 10] [0320095421] +16:54:21 [ 11] [ 6] [807393] +16:54:21 [ 15] [ 4] [0320] +16:54:21 [ 37] [ 12] [57916807393] +16:54:21 [ 39] [ 2] [00] +16:54:21 [ 70] [ 3] [001] +16:54:21 ============================================================================ +16:54:21 Sending to : +16:54:21 ============================================================================ +16:54:21 + + +waiting on router queue for slot.... +16:54:23 ============================================================================ +16:54:23 Slot Id : <365> +16:54:23 Transaction Type : REQUEST +16:54:23 Received From : +16:54:23 ============================================================================ +16:54:23 FNo. Len. Field Value +16:54:23 ============================================================================ +16:54:23 [ 1] [ 4] [0800] +16:54:23 [ 7] [ 10] [0320095330] +16:54:23 [ 11] [ 6] [157330] +16:54:23 [ 70] [ 3] [301] +16:54:23 ============================================================================ +16:54:23 + + +waiting on router queue for slot.... +16:54:23 Sending to : +16:54:23 ============================================================================ +16:54:23 ============================================================================ +16:54:23 Slot Id : <365> +16:54:23 Transaction Type : RESPONSE +16:54:23 Received From : +16:54:23 ============================================================================ +16:54:23 FNo. Len. Field Value +16:54:23 ============================================================================ +16:54:23 [ 1] [ 4] [0810] +16:54:23 [ 7] [ 10] [0320095330] +16:54:23 [ 11] [ 6] [157330] +16:54:23 [ 39] [ 2] [00] +16:54:23 [ 70] [ 3] [301] +16:54:23 ============================================================================ +16:54:23 Calculate Source COMM Id = 2 +16:54:23 ============================================================================ +16:54:23 + + +waiting on router queue for slot.... +16:54:34 ============================================================================ +16:54:34 Slot Id : <330> +16:54:34 Transaction Type : REQUEST +16:54:34 Received From : +16:54:34 ============================================================================ +16:54:34 FNo. Len. Field Value +16:54:34 ============================================================================ +16:54:34 [ 1] [ 4] [0800] +16:54:34 [ 7] [ 10] [0320095341] +16:54:34 [ 11] [ 6] [157331] +16:54:34 [ 70] [ 3] [301] +16:54:34 ============================================================================ +16:54:34 + + +waiting on router queue for slot.... +16:54:34 Sending to : +16:54:34 ============================================================================ +16:54:34 ============================================================================ +16:54:34 Slot Id : <330> +16:54:34 Transaction Type : RESPONSE +16:54:34 Received From : +16:54:34 ============================================================================ +16:54:34 FNo. Len. Field Value +16:54:34 ============================================================================ +16:54:34 [ 1] [ 4] [0810] +16:54:34 [ 7] [ 10] [0320095341] +16:54:34 [ 11] [ 6] [157331] +16:54:34 [ 39] [ 2] [00] +16:54:34 [ 70] [ 3] [301] +16:54:34 ============================================================================ +16:54:34 Calculate Source COMM Id = 2 +16:54:34 ============================================================================ +16:54:34 + + +waiting on router queue for slot.... +16:54:49 ============================================================================ +16:54:49 Slot Id : <356> +16:54:49 Transaction Type : REQUEST +16:54:49 Received From : +16:54:49 ============================================================================ +16:54:49 FNo. Len. Field Value +16:54:49 ============================================================================ +16:54:49 [ 1] [ 4] [0800] +16:54:49 [ 7] [ 10] [0320095356] +16:54:49 [ 11] [ 6] [157332] +16:54:49 [ 70] [ 3] [301] +16:54:49 ============================================================================ +16:54:49 + + +waiting on router queue for slot.... +16:54:49 Sending to : +16:54:49 ============================================================================ +16:54:49 ============================================================================ +16:54:49 Slot Id : <356> +16:54:49 Transaction Type : RESPONSE +16:54:49 Received From : +16:54:49 ============================================================================ +16:54:49 FNo. Len. Field Value +16:54:49 ============================================================================ +16:54:49 [ 1] [ 4] [0810] +16:54:49 [ 7] [ 10] [0320095356] +16:54:49 [ 11] [ 6] [157332] +16:54:49 [ 39] [ 2] [00] +16:54:49 [ 70] [ 3] [301] +16:54:49 ============================================================================ +16:54:49 Calculate Source COMM Id = 2 +16:54:49 ============================================================================ +16:54:49 + + +waiting on router queue for slot.... +16:54:55 ============================================================================ +16:54:55 Slot Id : <371> +16:54:55 Transaction Type : REQUEST +16:54:55 Received From : +16:54:55 ============================================================================ +16:54:55 FNo. Len. Field Value +16:54:55 ============================================================================ +16:54:55 [ 1] [ 4] [0800] +16:54:55 [ 7] [ 10] [0320100242] +16:54:55 [ 11] [ 6] [068275] +16:54:55 [ 37] [ 12] [57917068275] +16:54:55 [ 70] [ 3] [301] +16:54:55 ============================================================================ +16:54:55 + + +waiting on router queue for slot.... +16:54:55 Sending to : +16:54:55 ============================================================================ +16:54:55 ============================================================================ +16:54:55 Slot Id : <371> +16:54:55 Transaction Type : RESPONSE +16:54:55 Received From : +16:54:55 ============================================================================ +16:54:55 FNo. Len. Field Value +16:54:55 ============================================================================ +16:54:55 [ 1] [ 4] [0810] +16:54:55 [ 7] [ 10] [0320100242] +16:54:55 [ 11] [ 6] [068275] +16:54:55 [ 37] [ 12] [579170682750] +16:54:55 [ 39] [ 2] [00] +16:54:55 [ 70] [ 3] [810] +16:54:55 ============================================================================ +16:54:55 Calculate Source COMM Id = 1 +16:54:55 ============================================================================ +16:54:55 + + +waiting on router queue for slot.... +16:54:56 ============================================================================ +16:54:56 Slot Id : <343> +16:54:56 Transaction Type : REQUEST +16:54:56 Received From : +16:54:56 ============================================================================ +16:54:56 FNo. Len. Field Value +16:54:56 ============================================================================ +16:54:56 [ 1] [ 4] [0200] +16:54:56 [ 2] [ 16] [6213544001119061] +16:54:56 [ 3] [ 6] [011000] +16:54:56 [ 4] [ 12] [000010000000] +16:54:56 [ 7] [ 10] [0320170243] +16:54:56 [ 11] [ 6] [240409] +16:54:56 [ 12] [ 6] [170243] +16:54:56 [ 13] [ 4] [0320] +16:54:56 [ 14] [ 4] [4912] +16:54:56 [ 15] [ 4] [0320] +16:54:56 [ 18] [ 4] [6011] +16:54:56 [ 22] [ 3] [900] +16:54:56 [ 25] [ 2] [02] +16:54:56 [ 28] [ 9] [D00002000] +16:54:56 [ 32] [ 6] [220699] +16:54:56 [ 35] [ 32] [6213544001119061=491212011906883] +16:54:56 [ 37] [ 12] [507900430287] +16:54:56 [ 41] [ 8] [01002100] +16:54:56 [ 42] [ 15] [APTRA ] +16:54:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:54:56 [ 49] [ 3] [418] +16:54:56 [ 52] [ 16] [1A2F4C3234DD06FC] +16:54:56 ============================================================================ +16:54:56 + + +waiting on router queue for slot.... +16:54:56 Sending to : +16:54:56 ============================================================================ +16:54:56 Sending to : +16:54:56 ============================================================================ +16:54:56 ============================================================================ +16:54:56 Slot Id : <343> +16:54:56 Transaction Type : REQUEST +16:54:56 Received From : +16:54:56 ============================================================================ +16:54:56 FNo. Len. Field Value +16:54:56 ============================================================================ +16:54:56 [ 1] [ 4] [0200] +16:54:56 [ 2] [ 16] [6213544001119061] +16:54:56 [ 3] [ 6] [011000] +16:54:56 [ 4] [ 12] [000010000000] +16:54:56 [ 7] [ 10] [0320170243] +16:54:56 [ 11] [ 6] [240409] +16:54:56 [ 12] [ 6] [170243] +16:54:56 [ 13] [ 4] [0320] +16:54:56 [ 14] [ 4] [4912] +16:54:56 [ 15] [ 4] [0320] +16:54:56 [ 18] [ 4] [6011] +16:54:56 [ 22] [ 3] [900] +16:54:56 [ 25] [ 2] [02] +16:54:56 [ 28] [ 9] [D00002000] +16:54:56 [ 32] [ 6] [220699] +16:54:56 [ 35] [ 32] [6213544001119061=491212011906883] +16:54:56 [ 37] [ 12] [507900430287] +16:54:56 [ 41] [ 8] [01002100] +16:54:56 [ 42] [ 15] [APTRA ] +16:54:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:54:56 [ 49] [ 3] [418] +16:54:56 [ 52] [ 16] [1A2F4C3234DD06FC] +16:54:56 ============================================================================ +16:54:56 + + +waiting on router queue for slot.... +16:54:56 Sending to : +16:54:56 ============================================================================ +16:54:56 ============================================================================ +16:54:56 Slot Id : <343> +16:54:56 Transaction Type : REQUEST +16:54:56 Received From : +16:54:56 ============================================================================ +16:54:56 FNo. Len. Field Value +16:54:56 ============================================================================ +16:54:56 [ 1] [ 4] [0200] +16:54:56 [ 2] [ 16] [6213544001119061] +16:54:56 [ 3] [ 6] [011000] +16:54:56 [ 4] [ 12] [000010000000] +16:54:56 [ 7] [ 10] [0320170243] +16:54:56 [ 11] [ 6] [240409] +16:54:56 [ 12] [ 6] [170243] +16:54:56 [ 13] [ 4] [0320] +16:54:56 [ 14] [ 4] [4912] +16:54:56 [ 15] [ 4] [0320] +16:54:56 [ 18] [ 4] [6011] +16:54:56 [ 22] [ 3] [900] +16:54:56 [ 25] [ 2] [02] +16:54:56 [ 28] [ 9] [D00002000] +16:54:56 [ 32] [ 6] [220699] +16:54:56 [ 35] [ 32] [6213544001119061=491212011906883] +16:54:56 [ 37] [ 12] [507900430287] +16:54:56 [ 41] [ 8] [01002100] +16:54:56 [ 42] [ 15] [APTRA ] +16:54:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:54:56 [ 49] [ 3] [418] +16:54:56 [ 52] [ 16] [8A842AF51237D042] +16:54:56 ============================================================================ +16:54:56 + + +waiting on router queue for slot.... +16:54:56 Sending to : <0> +16:54:56 ============================================================================ +16:54:57 ============================================================================ +16:54:57 Slot Id : <343> +16:54:57 Transaction Type : RESPONSE +16:54:57 Received From : +16:54:57 ============================================================================ +16:54:57 FNo. Len. Field Value +16:54:57 ============================================================================ +16:54:57 [ 1] [ 4] [0210] +16:54:57 [ 2] [ 16] [6213544001119061] +16:54:57 [ 3] [ 6] [011000] +16:54:57 [ 4] [ 12] [000010000000] +16:54:57 [ 7] [ 10] [0320170243] +16:54:57 [ 11] [ 6] [240409] +16:54:57 [ 12] [ 6] [170243] +16:54:57 [ 13] [ 4] [0320] +16:54:57 [ 15] [ 4] [0320] +16:54:57 [ 18] [ 4] [6011] +16:54:57 [ 32] [ 6] [220699] +16:54:57 [ 35] [ 32] [6213544001119061=491212011906883] +16:54:57 [ 37] [ 12] [507900430287] +16:54:57 [ 38] [ 6] [750144] +16:54:57 [ 39] [ 2] [00] +16:54:57 [ 41] [ 8] [01002100] +16:54:57 [ 49] [ 3] [418] +16:54:57 [ 54] [ 40] [1001418C0000181501681002418C000018150168] +16:54:57 ============================================================================ +16:54:57 Sending to : +16:54:57 ============================================================================ +16:54:57 + + +waiting on router queue for slot.... +16:54:58 ============================================================================ +16:54:58 Slot Id : <343> +16:54:58 Transaction Type : RESPONSE +16:54:58 Received From : +16:54:58 ============================================================================ +16:54:58 FNo. Len. Field Value +16:54:58 ============================================================================ +16:54:58 [ 1] [ 4] [0210] +16:54:58 [ 2] [ 16] [6213544001119061] +16:54:58 [ 3] [ 6] [011000] +16:54:58 [ 4] [ 12] [000010000000] +16:54:58 [ 7] [ 10] [0320170243] +16:54:58 [ 11] [ 6] [240409] +16:54:58 [ 12] [ 6] [170243] +16:54:58 [ 13] [ 4] [0320] +16:54:58 [ 15] [ 4] [0320] +16:54:58 [ 18] [ 4] [6011] +16:54:58 [ 32] [ 6] [220699] +16:54:58 [ 35] [ 32] [6213544001119061=491212011906883] +16:54:58 [ 37] [ 12] [507900430287] +16:54:58 [ 38] [ 6] [750144] +16:54:58 [ 39] [ 2] [00] +16:54:58 [ 41] [ 8] [01002100] +16:54:58 [ 49] [ 3] [418] +16:54:58 [ 54] [ 40] [1001418C0000181501681002418C000018150168] +16:54:58 ============================================================================ +16:54:58 Calculate Source COMM Id = 1 +16:54:58 ============================================================================ +16:54:58 + + +waiting on router queue for slot.... +16:55:00 ============================================================================ +16:55:00 Slot Id : <366> +16:55:00 Transaction Type : REQUEST +16:55:00 Received From : +16:55:00 ============================================================================ +16:55:00 FNo. Len. Field Value +16:55:00 ============================================================================ +16:55:00 [ 1] [ 4] [0800] +16:55:00 [ 7] [ 10] [0320095407] +16:55:00 [ 11] [ 6] [157333] +16:55:00 [ 70] [ 3] [301] +16:55:00 ============================================================================ +16:55:00 + + +waiting on router queue for slot.... +16:55:00 Sending to : +16:55:00 ============================================================================ +16:55:00 ============================================================================ +16:55:00 Slot Id : <366> +16:55:00 Transaction Type : RESPONSE +16:55:00 Received From : +16:55:00 ============================================================================ +16:55:00 FNo. Len. Field Value +16:55:00 ============================================================================ +16:55:00 [ 1] [ 4] [0810] +16:55:00 [ 7] [ 10] [0320095407] +16:55:00 [ 11] [ 6] [157333] +16:55:00 [ 39] [ 2] [00] +16:55:00 [ 70] [ 3] [301] +16:55:00 ============================================================================ +16:55:00 Calculate Source COMM Id = 2 +16:55:00 ============================================================================ +16:55:00 + + +waiting on router queue for slot.... +16:55:00 ============================================================================ +16:55:00 Slot Id : <313> +16:55:00 Transaction Type : REQUEST +16:55:00 Received From : +16:55:00 ============================================================================ +16:55:00 FNo. Len. Field Value +16:55:00 ============================================================================ +16:55:00 [ 1] [ 4] [0800] +16:55:00 [ 7] [ 10] [0321000648] +16:55:00 [ 11] [ 6] [170648] +16:55:00 [ 37] [ 12] [57917170648] +16:55:00 [ 70] [ 3] [301] +16:55:00 ============================================================================ +16:55:00 + + +waiting on router queue for slot.... +16:55:00 Sending to : +16:55:00 ============================================================================ +16:55:00 ============================================================================ +16:55:00 Slot Id : <313> +16:55:00 Transaction Type : RESPONSE +16:55:00 Received From : +16:55:00 ============================================================================ +16:55:00 FNo. Len. Field Value +16:55:00 ============================================================================ +16:55:00 [ 1] [ 4] [0810] +16:55:00 [ 7] [ 10] [0321000648] +16:55:00 [ 11] [ 6] [170648] +16:55:00 [ 37] [ 12] [579171706480] +16:55:00 [ 39] [ 2] [00] +16:55:00 [ 70] [ 3] [810] +16:55:00 ============================================================================ +16:55:00 Calculate Source COMM Id = 6 +16:55:00 ============================================================================ +16:55:00 + + +waiting on router queue for slot.... +16:55:08 ============================================================================ +16:55:08 Slot Id : <345> +16:55:08 Transaction Type : REQUEST +16:55:08 Received From : +16:55:08 ============================================================================ +16:55:08 FNo. Len. Field Value +16:55:08 ============================================================================ +16:55:08 [ 1] [ 4] [0200] +16:55:08 [ 2] [ 16] [6213544000807849] +16:55:08 [ 3] [ 6] [010000] +16:55:08 [ 4] [ 12] [000050000000] +16:55:08 [ 7] [ 10] [0320170657] +16:55:08 [ 11] [ 6] [412467] +16:55:08 [ 12] [ 6] [170657] +16:55:08 [ 13] [ 4] [0320] +16:55:08 [ 14] [ 4] [1249] +16:55:08 [ 15] [ 4] [0320] +16:55:08 [ 18] [ 4] [6011] +16:55:08 [ 19] [ 3] [418] +16:55:08 [ 22] [ 3] [021] +16:55:08 [ 25] [ 2] [01] +16:55:08 [ 28] [ 9] [D00002000] +16:55:08 [ 32] [ 6] [123401] +16:55:08 [ 35] [ 32] [6213544000807849=491212010784958] +16:55:08 [ 37] [ 12] [507900164633] +16:55:08 [ 41] [ 8] [01001500] +16:55:08 [ 42] [ 15] [APT ] +16:55:08 [ 43] [ 40] [LAOS WAT TAI AIR-PORT LAOS ] +16:55:08 [ 49] [ 3] [418] +16:55:08 [ 52] [ 16] [9BCCC57CB7AAD551] +16:55:08 ============================================================================ +16:55:08 + + +waiting on router queue for slot.... +16:55:08 Sending to : +16:55:08 ============================================================================ +16:55:08 Sending to : +16:55:08 ============================================================================ +16:55:09 ============================================================================ +16:55:09 Slot Id : <345> +16:55:09 Transaction Type : REQUEST +16:55:09 Received From : +16:55:09 ============================================================================ +16:55:09 FNo. Len. Field Value +16:55:09 ============================================================================ +16:55:09 [ 1] [ 4] [0200] +16:55:09 [ 2] [ 16] [6213544000807849] +16:55:09 [ 3] [ 6] [010000] +16:55:09 [ 4] [ 12] [000050000000] +16:55:09 [ 7] [ 10] [0320170657] +16:55:09 [ 11] [ 6] [412467] +16:55:09 [ 12] [ 6] [170657] +16:55:09 [ 13] [ 4] [0320] +16:55:09 [ 14] [ 4] [1249] +16:55:09 [ 15] [ 4] [0320] +16:55:09 [ 18] [ 4] [6011] +16:55:09 [ 19] [ 3] [418] +16:55:09 [ 22] [ 3] [021] +16:55:09 [ 25] [ 2] [01] +16:55:09 [ 28] [ 9] [D00002000] +16:55:09 [ 32] [ 6] [123401] +16:55:09 [ 35] [ 32] [6213544000807849=491212010784958] +16:55:09 [ 37] [ 12] [507900164633] +16:55:09 [ 41] [ 8] [01001500] +16:55:09 [ 42] [ 15] [APT ] +16:55:09 [ 43] [ 40] [LAOS WAT TAI AIR-PORT LAOS ] +16:55:09 [ 49] [ 3] [418] +16:55:09 [ 52] [ 16] [9BCCC57CB7AAD551] +16:55:09 ============================================================================ +16:55:09 + + +waiting on router queue for slot.... +16:55:09 Sending to : +16:55:09 ============================================================================ +16:55:09 ============================================================================ +16:55:09 Slot Id : <345> +16:55:09 Transaction Type : REQUEST +16:55:09 Received From : +16:55:09 ============================================================================ +16:55:09 FNo. Len. Field Value +16:55:09 ============================================================================ +16:55:09 [ 1] [ 4] [0200] +16:55:09 [ 2] [ 16] [6213544000807849] +16:55:09 [ 3] [ 6] [010000] +16:55:09 [ 4] [ 12] [000050000000] +16:55:09 [ 7] [ 10] [0320170657] +16:55:09 [ 11] [ 6] [412467] +16:55:09 [ 12] [ 6] [170657] +16:55:09 [ 13] [ 4] [0320] +16:55:09 [ 14] [ 4] [1249] +16:55:09 [ 15] [ 4] [0320] +16:55:09 [ 18] [ 4] [6011] +16:55:09 [ 19] [ 3] [418] +16:55:09 [ 22] [ 3] [021] +16:55:09 [ 25] [ 2] [01] +16:55:09 [ 28] [ 9] [D00002000] +16:55:09 [ 32] [ 6] [123401] +16:55:09 [ 35] [ 32] [6213544000807849=491212010784958] +16:55:09 [ 37] [ 12] [507900164633] +16:55:09 [ 41] [ 8] [01001500] +16:55:09 [ 42] [ 15] [APT ] +16:55:09 [ 43] [ 40] [LAOS WAT TAI AIR-PORT LAOS ] +16:55:09 [ 49] [ 3] [418] +16:55:09 [ 52] [ 16] [8F984561CB40FCC4] +16:55:09 ============================================================================ +16:55:09 + + +waiting on router queue for slot.... +16:55:09 Sending to : <0> +16:55:09 ============================================================================ +16:55:10 ============================================================================ +16:55:10 Slot Id : <345> +16:55:10 Transaction Type : RESPONSE +16:55:10 Received From : +16:55:10 ============================================================================ +16:55:10 FNo. Len. Field Value +16:55:10 ============================================================================ +16:55:10 [ 1] [ 4] [0210] +16:55:10 [ 2] [ 16] [6213544000807849] +16:55:10 [ 3] [ 6] [010000] +16:55:10 [ 4] [ 12] [000050000000] +16:55:10 [ 7] [ 10] [0320170657] +16:55:10 [ 11] [ 6] [412467] +16:55:10 [ 12] [ 6] [170657] +16:55:10 [ 13] [ 4] [0320] +16:55:10 [ 15] [ 4] [0320] +16:55:10 [ 18] [ 4] [6011] +16:55:10 [ 19] [ 3] [418] +16:55:10 [ 32] [ 6] [123401] +16:55:10 [ 35] [ 32] [6213544000807849=491212010784958] +16:55:10 [ 37] [ 12] [507900164633] +16:55:10 [ 38] [ 6] [337805] +16:55:10 [ 39] [ 2] [00] +16:55:10 [ 41] [ 8] [01001500] +16:55:10 [ 49] [ 3] [418] +16:55:10 [ 54] [ 40] [0001418C0003251124260002418C000325112426] +16:55:10 ============================================================================ +16:55:10 Sending to : +16:55:10 ============================================================================ +16:55:10 + + +waiting on router queue for slot.... +16:55:10 ============================================================================ +16:55:10 Slot Id : <378> +16:55:10 Transaction Type : REQUEST +16:55:10 Received From : +16:55:10 ============================================================================ +16:55:10 FNo. Len. Field Value +16:55:10 ============================================================================ +16:55:10 [ 1] [ 4] [0800] +16:55:10 [ 7] [ 10] [0320095417] +16:55:10 [ 11] [ 6] [157334] +16:55:10 [ 70] [ 3] [301] +16:55:10 ============================================================================ +16:55:10 + + +waiting on router queue for slot.... +16:55:10 Sending to : +16:55:10 ============================================================================ +16:55:10 ============================================================================ +16:55:10 Slot Id : <378> +16:55:10 Transaction Type : RESPONSE +16:55:10 Received From : +16:55:10 ============================================================================ +16:55:10 FNo. Len. Field Value +16:55:10 ============================================================================ +16:55:10 [ 1] [ 4] [0810] +16:55:10 [ 7] [ 10] [0320095417] +16:55:10 [ 11] [ 6] [157334] +16:55:10 [ 39] [ 2] [00] +16:55:10 [ 70] [ 3] [301] +16:55:10 ============================================================================ +16:55:10 Calculate Source COMM Id = 2 +16:55:10 ============================================================================ +16:55:10 + + +waiting on router queue for slot.... +16:55:11 ============================================================================ +16:55:11 Slot Id : <373> +16:55:11 Transaction Type : REQUEST +16:55:11 Received From : +16:55:11 ============================================================================ +16:55:11 FNo. Len. Field Value +16:55:11 ============================================================================ +16:55:11 [ 1] [ 4] [0200] +16:55:11 [ 2] [ 16] [6688990107521203] +16:55:11 [ 3] [ 6] [302000] +16:55:11 [ 4] [ 12] [000000000000] +16:55:11 [ 7] [ 10] [0320165506] +16:55:11 [ 11] [ 6] [806792] +16:55:11 [ 12] [ 6] [165506] +16:55:11 [ 13] [ 4] [0320] +16:55:11 [ 15] [ 4] [0320] +16:55:11 [ 18] [ 4] [6011] +16:55:11 [ 22] [ 3] [900] +16:55:11 [ 25] [ 2] [02] +16:55:11 [ 28] [ 9] [D00000000] +16:55:11 [ 32] [ 6] [621354] +16:55:11 [ 35] [ 37] [6688990107521203=44031231120345300000] +16:55:11 [ 37] [ 12] [507902916623] +16:55:11 [ 41] [ 8] [12001400] +16:55:11 [ 42] [ 15] [NATIVE ] +16:55:11 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +16:55:11 [ 49] [ 3] [418] +16:55:11 [ 52] [ 16] [B07A8C9146DE7F87] +16:55:11 ============================================================================ +16:55:11 + + +waiting on router queue for slot.... +16:55:11 Sending to : +16:55:11 ============================================================================ +16:55:11 Sending to : +16:55:11 ============================================================================ +16:55:11 ============================================================================ +16:55:11 Slot Id : <345> +16:55:11 Transaction Type : RESPONSE +16:55:11 Received From : +16:55:11 ============================================================================ +16:55:11 FNo. Len. Field Value +16:55:11 ============================================================================ +16:55:11 [ 1] [ 4] [0210] +16:55:11 [ 2] [ 16] [6213544000807849] +16:55:11 [ 3] [ 6] [010000] +16:55:11 [ 4] [ 12] [000050000000] +16:55:11 [ 7] [ 10] [0320170657] +16:55:11 [ 11] [ 6] [412467] +16:55:11 [ 12] [ 6] [170657] +16:55:11 [ 13] [ 4] [0320] +16:55:11 [ 15] [ 4] [0320] +16:55:11 [ 18] [ 4] [6011] +16:55:11 [ 19] [ 3] [418] +16:55:11 [ 32] [ 6] [123401] +16:55:11 [ 35] [ 32] [6213544000807849=491212010784958] +16:55:11 [ 37] [ 12] [507900164633] +16:55:11 [ 38] [ 6] [337805] +16:55:11 [ 39] [ 2] [00] +16:55:11 [ 41] [ 8] [01001500] +16:55:11 [ 49] [ 3] [418] +16:55:11 [ 54] [ 40] [0001418C0003251124260002418C000325112426] +16:55:11 ============================================================================ +16:55:11 Calculate Source COMM Id = 6 +16:55:11 ============================================================================ +16:55:11 + + +waiting on router queue for slot.... +16:55:11 ============================================================================ +16:55:11 Slot Id : <373> +16:55:11 Transaction Type : REQUEST +16:55:11 Received From : +16:55:11 ============================================================================ +16:55:11 FNo. Len. Field Value +16:55:11 ============================================================================ +16:55:11 [ 1] [ 4] [0200] +16:55:11 [ 2] [ 16] [6688990107521203] +16:55:11 [ 3] [ 6] [302000] +16:55:11 [ 4] [ 12] [000000000000] +16:55:11 [ 7] [ 10] [0320165506] +16:55:11 [ 11] [ 6] [806792] +16:55:11 [ 12] [ 6] [165506] +16:55:11 [ 13] [ 4] [0320] +16:55:11 [ 15] [ 4] [0320] +16:55:11 [ 18] [ 4] [6011] +16:55:11 [ 22] [ 3] [900] +16:55:11 [ 25] [ 2] [02] +16:55:11 [ 28] [ 9] [D00000000] +16:55:11 [ 32] [ 6] [621354] +16:55:11 [ 35] [ 37] [6688990107521203=44031231120345300000] +16:55:11 [ 37] [ 12] [507902916623] +16:55:11 [ 41] [ 8] [12001400] +16:55:11 [ 42] [ 15] [NATIVE ] +16:55:11 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +16:55:11 [ 49] [ 3] [418] +16:55:11 [ 52] [ 16] [B07A8C9146DE7F87] +16:55:11 ============================================================================ +16:55:11 + + +waiting on router queue for slot.... +16:55:11 Sending to : +16:55:11 ============================================================================ +16:55:11 ============================================================================ +16:55:11 Slot Id : <373> +16:55:11 Transaction Type : REQUEST +16:55:11 Received From : +16:55:11 ============================================================================ +16:55:11 FNo. Len. Field Value +16:55:11 ============================================================================ +16:55:11 [ 1] [ 4] [0200] +16:55:11 [ 2] [ 16] [6688990107521203] +16:55:11 [ 3] [ 6] [302000] +16:55:11 [ 4] [ 12] [000000000000] +16:55:11 [ 7] [ 10] [0320165506] +16:55:11 [ 11] [ 6] [806792] +16:55:11 [ 12] [ 6] [165506] +16:55:11 [ 13] [ 4] [0320] +16:55:11 [ 15] [ 4] [0320] +16:55:11 [ 18] [ 4] [6011] +16:55:11 [ 22] [ 3] [900] +16:55:11 [ 25] [ 2] [02] +16:55:11 [ 28] [ 9] [D00000000] +16:55:11 [ 32] [ 6] [621354] +16:55:11 [ 35] [ 37] [6688990107521203=44031231120345300000] +16:55:11 [ 37] [ 12] [507902916623] +16:55:11 [ 41] [ 8] [12001400] +16:55:11 [ 42] [ 15] [NATIVE ] +16:55:11 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +16:55:11 [ 49] [ 3] [418] +16:55:11 [ 52] [ 16] [4313757DF9CC5620] +16:55:11 ============================================================================ +16:55:11 + + +waiting on router queue for slot.... +16:55:11 Sending to : <4> +16:55:11 ============================================================================ +16:55:12 ============================================================================ +16:55:12 Slot Id : <373> +16:55:12 Transaction Type : RESPONSE +16:55:12 Received From : +16:55:12 ============================================================================ +16:55:12 FNo. Len. Field Value +16:55:12 ============================================================================ +16:55:12 [ 1] [ 4] [0210] +16:55:12 [ 2] [ 16] [6688990107521203] +16:55:12 [ 3] [ 6] [302000] +16:55:12 [ 4] [ 12] [000000000000] +16:55:12 [ 11] [ 6] [806792] +16:55:12 [ 12] [ 6] [165506] +16:55:12 [ 15] [ 4] [0320] +16:55:12 [ 18] [ 4] [6011] +16:55:12 [ 32] [ 6] [621354] +16:55:12 [ 35] [ 37] [6688990107521203=44031231120345300000] +16:55:12 [ 37] [ 12] [507902916623] +16:55:12 [ 38] [ 6] [327150] +16:55:12 [ 39] [ 2] [00] +16:55:12 [ 41] [ 8] [12001400] +16:55:12 [ 49] [ 3] [418] +16:55:12 [ 54] [ 20] [2002418C000002118775] +16:55:12 ============================================================================ +16:55:12 Sending to : +16:55:12 ============================================================================ +16:55:12 + + +waiting on router queue for slot.... +16:55:13 ============================================================================ +16:55:13 Slot Id : <340> +16:55:13 Transaction Type : REQUEST +16:55:13 Received From : +16:55:13 ============================================================================ +16:55:13 FNo. Len. Field Value +16:55:13 ============================================================================ +16:55:13 [ 1] [ 4] [0200] +16:55:13 [ 2] [ 16] [6688990104449309] +16:55:13 [ 3] [ 6] [010000] +16:55:13 [ 4] [ 12] [000100000000] +16:55:13 [ 7] [ 10] [0320165508] +16:55:13 [ 11] [ 6] [806808] +16:55:13 [ 12] [ 6] [165508] +16:55:13 [ 13] [ 4] [0320] +16:55:13 [ 15] [ 4] [0320] +16:55:13 [ 18] [ 4] [6011] +16:55:13 [ 22] [ 3] [900] +16:55:13 [ 25] [ 2] [02] +16:55:13 [ 28] [ 9] [D00002000] +16:55:13 [ 32] [ 6] [621354] +16:55:13 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:55:13 [ 37] [ 12] [507903499631] +16:55:13 [ 41] [ 8] [06002200] +16:55:13 [ 42] [ 15] [NATIVE ] +16:55:13 [ 43] [ 40] [Beng Market Beng LAO] +16:55:13 [ 49] [ 3] [418] +16:55:13 [ 52] [ 16] [E44E90AEE92E23D1] +16:55:13 ============================================================================ +16:55:13 + + +waiting on router queue for slot.... +16:55:13 Sending to : +16:55:13 ============================================================================ +16:55:13 Sending to : +16:55:13 ============================================================================ +16:55:13 ============================================================================ +16:55:13 Slot Id : <340> +16:55:13 Transaction Type : REQUEST +16:55:13 Received From : +16:55:13 ============================================================================ +16:55:13 FNo. Len. Field Value +16:55:13 ============================================================================ +16:55:13 [ 1] [ 4] [0200] +16:55:13 [ 2] [ 16] [6688990104449309] +16:55:13 [ 3] [ 6] [010000] +16:55:13 [ 4] [ 12] [000100000000] +16:55:13 [ 7] [ 10] [0320165508] +16:55:13 [ 11] [ 6] [806808] +16:55:13 [ 12] [ 6] [165508] +16:55:13 [ 13] [ 4] [0320] +16:55:13 [ 15] [ 4] [0320] +16:55:13 [ 18] [ 4] [6011] +16:55:13 [ 22] [ 3] [900] +16:55:13 [ 25] [ 2] [02] +16:55:13 [ 28] [ 9] [D00002000] +16:55:13 [ 32] [ 6] [621354] +16:55:13 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:55:13 [ 37] [ 12] [507903499631] +16:55:13 [ 41] [ 8] [06002200] +16:55:13 [ 42] [ 15] [NATIVE ] +16:55:13 [ 43] [ 40] [Beng Market Beng LAO] +16:55:13 [ 49] [ 3] [418] +16:55:13 [ 52] [ 16] [E44E90AEE92E23D1] +16:55:13 ============================================================================ +16:55:13 + + +waiting on router queue for slot.... +16:55:13 Sending to : +16:55:13 ============================================================================ +16:55:13 ============================================================================ +16:55:13 Slot Id : <340> +16:55:13 Transaction Type : REQUEST +16:55:13 Received From : +16:55:13 ============================================================================ +16:55:13 FNo. Len. Field Value +16:55:13 ============================================================================ +16:55:13 [ 1] [ 4] [0200] +16:55:13 [ 2] [ 16] [6688990104449309] +16:55:13 [ 3] [ 6] [010000] +16:55:13 [ 4] [ 12] [000100000000] +16:55:13 [ 7] [ 10] [0320165508] +16:55:13 [ 11] [ 6] [806808] +16:55:13 [ 12] [ 6] [165508] +16:55:13 [ 13] [ 4] [0320] +16:55:13 [ 15] [ 4] [0320] +16:55:13 [ 18] [ 4] [6011] +16:55:13 [ 22] [ 3] [900] +16:55:13 [ 25] [ 2] [02] +16:55:13 [ 28] [ 9] [D00002000] +16:55:13 [ 32] [ 6] [621354] +16:55:13 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:55:13 [ 37] [ 12] [507903499631] +16:55:13 [ 41] [ 8] [06002200] +16:55:13 [ 42] [ 15] [NATIVE ] +16:55:13 [ 43] [ 40] [Beng Market Beng LAO] +16:55:13 [ 49] [ 3] [418] +16:55:13 [ 52] [ 16] [421E7DE0E6D73813] +16:55:13 ============================================================================ +16:55:13 + + +waiting on router queue for slot.... +16:55:13 Sending to : <4> +16:55:13 ============================================================================ +16:55:13 ============================================================================ +16:55:13 Slot Id : <373> +16:55:13 Transaction Type : RESPONSE +16:55:13 Received From : +16:55:13 ============================================================================ +16:55:13 FNo. Len. Field Value +16:55:13 ============================================================================ +16:55:13 [ 1] [ 4] [0210] +16:55:13 [ 2] [ 16] [6688990107521203] +16:55:13 [ 3] [ 6] [302000] +16:55:13 [ 4] [ 12] [000000000000] +16:55:13 [ 11] [ 6] [806792] +16:55:13 [ 12] [ 6] [165506] +16:55:13 [ 15] [ 4] [0320] +16:55:13 [ 18] [ 4] [6011] +16:55:13 [ 32] [ 6] [621354] +16:55:13 [ 35] [ 37] [6688990107521203=44031231120345300000] +16:55:13 [ 37] [ 12] [507902916623] +16:55:13 [ 38] [ 6] [327150] +16:55:13 [ 39] [ 2] [00] +16:55:13 [ 41] [ 8] [12001400] +16:55:13 [ 49] [ 3] [418] +16:55:13 [ 54] [ 20] [2002418C000002118775] +16:55:13 ============================================================================ +16:55:13 Calculate Source COMM Id = 0 +16:55:13 ============================================================================ +16:55:13 + + +waiting on router queue for slot.... +16:55:14 ============================================================================ +16:55:14 Slot Id : <340> +16:55:14 Transaction Type : RESPONSE +16:55:14 Received From : +16:55:14 ============================================================================ +16:55:14 FNo. Len. Field Value +16:55:14 ============================================================================ +16:55:14 [ 1] [ 4] [0210] +16:55:14 [ 2] [ 16] [6688990104449309] +16:55:14 [ 3] [ 6] [010000] +16:55:14 [ 4] [ 12] [000100000000] +16:55:14 [ 11] [ 6] [806808] +16:55:14 [ 12] [ 6] [165508] +16:55:14 [ 15] [ 4] [0320] +16:55:14 [ 18] [ 4] [6011] +16:55:14 [ 32] [ 6] [621354] +16:55:14 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:55:14 [ 37] [ 12] [507903499631] +16:55:14 [ 38] [ 6] [252365] +16:55:14 [ 39] [ 2] [00] +16:55:14 [ 41] [ 8] [06002200] +16:55:14 [ 49] [ 3] [418] +16:55:14 [ 54] [ 20] [0002418C000062801119] +16:55:14 ============================================================================ +16:55:14 Sending to : +16:55:14 ============================================================================ +16:55:14 + + +waiting on router queue for slot.... +16:55:15 ============================================================================ +16:55:15 Slot Id : <340> +16:55:15 Transaction Type : RESPONSE +16:55:15 Received From : +16:55:15 ============================================================================ +16:55:15 FNo. Len. Field Value +16:55:15 ============================================================================ +16:55:15 [ 1] [ 4] [0210] +16:55:15 [ 2] [ 16] [6688990104449309] +16:55:15 [ 3] [ 6] [010000] +16:55:15 [ 4] [ 12] [000100000000] +16:55:15 [ 11] [ 6] [806808] +16:55:15 [ 12] [ 6] [165508] +16:55:15 [ 15] [ 4] [0320] +16:55:15 [ 18] [ 4] [6011] +16:55:15 [ 32] [ 6] [621354] +16:55:15 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:55:15 [ 37] [ 12] [507903499631] +16:55:15 [ 38] [ 6] [252365] +16:55:15 [ 39] [ 2] [00] +16:55:15 [ 41] [ 8] [06002200] +16:55:15 [ 49] [ 3] [418] +16:55:15 [ 54] [ 20] [0002418C000062801119] +16:55:15 ============================================================================ +16:55:15 Calculate Source COMM Id = 0 +16:55:15 ============================================================================ +16:55:15 + + +waiting on router queue for slot.... +16:55:17 ============================================================================ +16:55:17 Slot Id : <353> +16:55:17 Transaction Type : REQUEST +16:55:17 Received From : +16:55:17 ============================================================================ +16:55:17 FNo. Len. Field Value +16:55:17 ============================================================================ +16:55:17 [ 1] [ 4] [0200] +16:55:17 [ 2] [ 16] [6213544002021266] +16:55:17 [ 3] [ 6] [010000] +16:55:17 [ 4] [ 12] [000070000000] +16:55:17 [ 7] [ 10] [0320165307] +16:55:17 [ 11] [ 6] [952571] +16:55:17 [ 12] [ 6] [165307] +16:55:17 [ 13] [ 4] [0320] +16:55:17 [ 15] [ 4] [0320] +16:55:17 [ 18] [ 4] [6011] +16:55:17 [ 19] [ 3] [418] +16:55:17 [ 22] [ 3] [021] +16:55:17 [ 25] [ 2] [01] +16:55:17 [ 28] [ 9] [D00002000] +16:55:17 [ 32] [ 6] [668899] +16:55:17 [ 35] [ 32] [6213544002021266=491212012126698] +16:55:17 [ 37] [ 12] [507902362994] +16:55:17 [ 41] [ 8] [03016003] +16:55:17 [ 42] [ 15] [APT ] +16:55:17 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:55:17 [ 49] [ 3] [418] +16:55:17 [ 52] [ 16] [1841229EA4C56AFC] +16:55:17 ============================================================================ +16:55:17 + + +waiting on router queue for slot.... +16:55:17 Sending to : +16:55:17 ============================================================================ +16:55:17 Sending to : +16:55:17 ============================================================================ +16:55:17 ============================================================================ +16:55:17 Slot Id : <353> +16:55:17 Transaction Type : REQUEST +16:55:17 Received From : +16:55:17 ============================================================================ +16:55:17 FNo. Len. Field Value +16:55:17 ============================================================================ +16:55:17 [ 1] [ 4] [0200] +16:55:17 [ 2] [ 16] [6213544002021266] +16:55:17 [ 3] [ 6] [010000] +16:55:17 [ 4] [ 12] [000070000000] +16:55:17 [ 7] [ 10] [0320165307] +16:55:17 [ 11] [ 6] [952571] +16:55:17 [ 12] [ 6] [165307] +16:55:17 [ 13] [ 4] [0320] +16:55:17 [ 15] [ 4] [0320] +16:55:17 [ 18] [ 4] [6011] +16:55:17 [ 19] [ 3] [418] +16:55:17 [ 22] [ 3] [021] +16:55:17 [ 25] [ 2] [01] +16:55:17 [ 28] [ 9] [D00002000] +16:55:17 [ 32] [ 6] [668899] +16:55:17 [ 35] [ 32] [6213544002021266=491212012126698] +16:55:17 [ 37] [ 12] [507902362994] +16:55:17 [ 41] [ 8] [03016003] +16:55:17 [ 42] [ 15] [APT ] +16:55:17 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:55:17 [ 49] [ 3] [418] +16:55:17 [ 52] [ 16] [1841229EA4C56AFC] +16:55:17 ============================================================================ +16:55:17 + + +waiting on router queue for slot.... +16:55:17 Sending to : +16:55:17 ============================================================================ +16:55:17 ============================================================================ +16:55:17 Slot Id : <353> +16:55:17 Transaction Type : REQUEST +16:55:17 Received From : +16:55:17 ============================================================================ +16:55:17 FNo. Len. Field Value +16:55:17 ============================================================================ +16:55:17 [ 1] [ 4] [0200] +16:55:17 [ 2] [ 16] [6213544002021266] +16:55:17 [ 3] [ 6] [010000] +16:55:17 [ 4] [ 12] [000070000000] +16:55:17 [ 7] [ 10] [0320165307] +16:55:17 [ 11] [ 6] [952571] +16:55:17 [ 12] [ 6] [165307] +16:55:17 [ 13] [ 4] [0320] +16:55:17 [ 15] [ 4] [0320] +16:55:17 [ 18] [ 4] [6011] +16:55:17 [ 19] [ 3] [418] +16:55:17 [ 22] [ 3] [021] +16:55:17 [ 25] [ 2] [01] +16:55:17 [ 28] [ 9] [D00002000] +16:55:17 [ 32] [ 6] [668899] +16:55:17 [ 35] [ 32] [6213544002021266=491212012126698] +16:55:17 [ 37] [ 12] [507902362994] +16:55:17 [ 41] [ 8] [03016003] +16:55:17 [ 42] [ 15] [APT ] +16:55:17 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:55:17 [ 49] [ 3] [418] +16:55:17 [ 52] [ 16] [35E9994AA83DDE1A] +16:55:17 ============================================================================ +16:55:17 + + +waiting on router queue for slot.... +16:55:17 Sending to : <0> +16:55:17 ============================================================================ +16:55:18 ============================================================================ +16:55:18 Slot Id : <353> +16:55:18 Transaction Type : RESPONSE +16:55:18 Received From : +16:55:18 ============================================================================ +16:55:18 FNo. Len. Field Value +16:55:18 ============================================================================ +16:55:18 [ 1] [ 4] [0210] +16:55:18 [ 2] [ 16] [6213544002021266] +16:55:18 [ 3] [ 6] [010000] +16:55:18 [ 4] [ 12] [000070000000] +16:55:18 [ 7] [ 10] [0320165307] +16:55:18 [ 11] [ 6] [952571] +16:55:18 [ 12] [ 6] [165307] +16:55:18 [ 13] [ 4] [0320] +16:55:18 [ 15] [ 4] [0320] +16:55:18 [ 18] [ 4] [6011] +16:55:18 [ 19] [ 3] [418] +16:55:18 [ 32] [ 6] [668899] +16:55:18 [ 35] [ 32] [6213544002021266=491212012126698] +16:55:18 [ 37] [ 12] [507902362994] +16:55:18 [ 38] [ 6] [815743] +16:55:18 [ 39] [ 2] [00] +16:55:18 [ 41] [ 8] [03016003] +16:55:18 [ 49] [ 3] [418] +16:55:18 [ 54] [ 40] [0001418C0001590683930002418C000159068393] +16:55:18 ============================================================================ +16:55:18 Sending to : +16:55:18 ============================================================================ +16:55:18 + + +waiting on router queue for slot.... +16:55:19 ============================================================================ +16:55:19 Slot Id : <353> +16:55:19 Transaction Type : RESPONSE +16:55:19 Received From : +16:55:19 ============================================================================ +16:55:19 FNo. Len. Field Value +16:55:19 ============================================================================ +16:55:19 [ 1] [ 4] [0210] +16:55:19 [ 2] [ 16] [6213544002021266] +16:55:19 [ 3] [ 6] [010000] +16:55:19 [ 4] [ 12] [000070000000] +16:55:19 [ 7] [ 10] [0320165307] +16:55:19 [ 11] [ 6] [952571] +16:55:19 [ 12] [ 6] [165307] +16:55:19 [ 13] [ 4] [0320] +16:55:19 [ 15] [ 4] [0320] +16:55:19 [ 18] [ 4] [6011] +16:55:19 [ 19] [ 3] [418] +16:55:19 [ 32] [ 6] [668899] +16:55:19 [ 35] [ 32] [6213544002021266=491212012126698] +16:55:19 [ 37] [ 12] [507902362994] +16:55:19 [ 38] [ 6] [815743] +16:55:19 [ 39] [ 2] [00] +16:55:19 [ 41] [ 8] [03016003] +16:55:19 [ 49] [ 3] [418] +16:55:19 [ 54] [ 40] [0001418C0001590683930002418C000159068393] +16:55:19 ============================================================================ +16:55:19 Calculate Source COMM Id = 4 +16:55:19 ============================================================================ +16:55:19 + + +waiting on router queue for slot.... +16:55:23 ============================================================================ +16:55:23 Slot Id : <324> +16:55:23 Transaction Type : REQUEST +16:55:23 Received From : +16:55:23 ============================================================================ +16:55:23 FNo. Len. Field Value +16:55:23 ============================================================================ +16:55:23 [ 1] [ 4] [0800] +16:55:23 [ 2] [ 5] [02531] +16:55:23 [ 3] [ 6] [579168] +16:55:23 [ 7] [ 10] [0320095523] +16:55:23 [ 11] [ 6] [807394] +16:55:23 [ 15] [ 10] [0320095523] +16:55:23 [ 37] [ 11] [57916807394] +16:55:23 [ 70] [ 3] [001] +16:55:23 ============================================================================ +16:55:23 + + +waiting on router queue for slot.... +16:55:23 ============================================================================ +16:55:23 Slot Id : <324> +16:55:23 Transaction Type : RESPONSE +16:55:23 Received From : +16:55:23 ============================================================================ +16:55:23 FNo. Len. Field Value +16:55:23 ============================================================================ +16:55:23 [ 1] [ 4] [0810] +16:55:23 [ 7] [ 10] [0320095523] +16:55:23 [ 11] [ 6] [807394] +16:55:23 [ 15] [ 4] [0320] +16:55:23 [ 37] [ 12] [57916807394] +16:55:23 [ 39] [ 2] [00] +16:55:23 [ 70] [ 3] [001] +16:55:23 ============================================================================ +16:55:23 Sending to : +16:55:23 ============================================================================ +16:55:23 + + +waiting on router queue for slot.... +16:55:27 ============================================================================ +16:55:27 Slot Id : <382> +16:55:27 Transaction Type : REQUEST +16:55:27 Received From : +16:55:27 ============================================================================ +16:55:27 FNo. Len. Field Value +16:55:27 ============================================================================ +16:55:27 [ 1] [ 4] [0800] +16:55:27 [ 7] [ 10] [0320095434] +16:55:27 [ 11] [ 6] [157335] +16:55:27 [ 70] [ 3] [301] +16:55:27 ============================================================================ +16:55:27 + + +waiting on router queue for slot.... +16:55:27 Sending to : +16:55:27 ============================================================================ +16:55:27 ============================================================================ +16:55:27 Slot Id : <382> +16:55:27 Transaction Type : RESPONSE +16:55:27 Received From : +16:55:27 ============================================================================ +16:55:27 FNo. Len. Field Value +16:55:27 ============================================================================ +16:55:27 [ 1] [ 4] [0810] +16:55:27 [ 7] [ 10] [0320095434] +16:55:27 [ 11] [ 6] [157335] +16:55:27 [ 39] [ 2] [00] +16:55:27 [ 70] [ 3] [301] +16:55:27 ============================================================================ +16:55:27 Calculate Source COMM Id = 2 +16:55:27 ============================================================================ +16:55:27 + + +waiting on router queue for slot.... +16:55:29 ============================================================================ +16:55:29 Slot Id : <363> +16:55:29 Transaction Type : REQUEST +16:55:29 Received From : +16:55:29 ============================================================================ +16:55:29 FNo. Len. Field Value +16:55:29 ============================================================================ +16:55:29 [ 1] [ 4] [0200] +16:55:29 [ 2] [ 16] [6213544002226444] +16:55:29 [ 3] [ 6] [010000] +16:55:29 [ 4] [ 12] [000045000000] +16:55:29 [ 7] [ 10] [0320165319] +16:55:29 [ 11] [ 6] [952578] +16:55:29 [ 12] [ 6] [165319] +16:55:29 [ 13] [ 4] [0320] +16:55:29 [ 15] [ 4] [0320] +16:55:29 [ 18] [ 4] [6011] +16:55:29 [ 19] [ 3] [418] +16:55:29 [ 22] [ 3] [021] +16:55:29 [ 25] [ 2] [01] +16:55:29 [ 28] [ 9] [D00002000] +16:55:29 [ 32] [ 6] [668899] +16:55:29 [ 35] [ 32] [6213544002226444=491212012644130] +16:55:29 [ 37] [ 12] [507902025636] +16:55:29 [ 41] [ 8] [03414002] +16:55:29 [ 42] [ 15] [APT ] +16:55:29 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:55:29 [ 49] [ 3] [418] +16:55:29 [ 52] [ 16] [FC6BCAF1F3246C3C] +16:55:29 ============================================================================ +16:55:29 + + +waiting on router queue for slot.... +16:55:29 Sending to : +16:55:29 ============================================================================ +16:55:29 Sending to : +16:55:29 ============================================================================ +16:55:30 ============================================================================ +16:55:30 Slot Id : <363> +16:55:30 Transaction Type : REQUEST +16:55:30 Received From : +16:55:30 ============================================================================ +16:55:30 FNo. Len. Field Value +16:55:30 ============================================================================ +16:55:30 [ 1] [ 4] [0200] +16:55:30 [ 2] [ 16] [6213544002226444] +16:55:30 [ 3] [ 6] [010000] +16:55:30 [ 4] [ 12] [000045000000] +16:55:30 [ 7] [ 10] [0320165319] +16:55:30 [ 11] [ 6] [952578] +16:55:30 [ 12] [ 6] [165319] +16:55:30 [ 13] [ 4] [0320] +16:55:30 [ 15] [ 4] [0320] +16:55:30 [ 18] [ 4] [6011] +16:55:30 [ 19] [ 3] [418] +16:55:30 [ 22] [ 3] [021] +16:55:30 [ 25] [ 2] [01] +16:55:30 [ 28] [ 9] [D00002000] +16:55:30 [ 32] [ 6] [668899] +16:55:30 [ 35] [ 32] [6213544002226444=491212012644130] +16:55:30 [ 37] [ 12] [507902025636] +16:55:30 [ 41] [ 8] [03414002] +16:55:30 [ 42] [ 15] [APT ] +16:55:30 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:55:30 [ 49] [ 3] [418] +16:55:30 [ 52] [ 16] [FC6BCAF1F3246C3C] +16:55:30 ============================================================================ +16:55:30 + + +waiting on router queue for slot.... +16:55:30 Sending to : +16:55:30 ============================================================================ +16:55:30 ============================================================================ +16:55:30 Slot Id : <363> +16:55:30 Transaction Type : REQUEST +16:55:30 Received From : +16:55:30 ============================================================================ +16:55:30 FNo. Len. Field Value +16:55:30 ============================================================================ +16:55:30 [ 1] [ 4] [0200] +16:55:30 [ 2] [ 16] [6213544002226444] +16:55:30 [ 3] [ 6] [010000] +16:55:30 [ 4] [ 12] [000045000000] +16:55:30 [ 7] [ 10] [0320165319] +16:55:30 [ 11] [ 6] [952578] +16:55:30 [ 12] [ 6] [165319] +16:55:30 [ 13] [ 4] [0320] +16:55:30 [ 15] [ 4] [0320] +16:55:30 [ 18] [ 4] [6011] +16:55:30 [ 19] [ 3] [418] +16:55:30 [ 22] [ 3] [021] +16:55:30 [ 25] [ 2] [01] +16:55:30 [ 28] [ 9] [D00002000] +16:55:30 [ 32] [ 6] [668899] +16:55:30 [ 35] [ 32] [6213544002226444=491212012644130] +16:55:30 [ 37] [ 12] [507902025636] +16:55:30 [ 41] [ 8] [03414002] +16:55:30 [ 42] [ 15] [APT ] +16:55:30 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:55:30 [ 49] [ 3] [418] +16:55:30 [ 52] [ 16] [915BF1226D4D82E2] +16:55:30 ============================================================================ +16:55:30 + + +waiting on router queue for slot.... +16:55:30 Sending to : <0> +16:55:30 ============================================================================ +16:55:30 ============================================================================ +16:55:30 Slot Id : <363> +16:55:30 Transaction Type : RESPONSE +16:55:30 Received From : +16:55:30 ============================================================================ +16:55:30 FNo. Len. Field Value +16:55:30 ============================================================================ +16:55:30 [ 1] [ 4] [0210] +16:55:30 [ 2] [ 16] [6213544002226444] +16:55:30 [ 3] [ 6] [010000] +16:55:30 [ 4] [ 12] [000045000000] +16:55:30 [ 7] [ 10] [0320165319] +16:55:30 [ 11] [ 6] [952578] +16:55:30 [ 12] [ 6] [165319] +16:55:30 [ 13] [ 4] [0320] +16:55:30 [ 15] [ 4] [0320] +16:55:30 [ 18] [ 4] [6011] +16:55:30 [ 19] [ 3] [418] +16:55:30 [ 32] [ 6] [668899] +16:55:30 [ 35] [ 32] [6213544002226444=491212012644130] +16:55:30 [ 37] [ 12] [507902025636] +16:55:30 [ 38] [ 6] [302163] +16:55:30 [ 39] [ 2] [00] +16:55:30 [ 41] [ 8] [03414002] +16:55:30 [ 49] [ 3] [418] +16:55:30 [ 54] [ 40] [0001418C0000052990130002418C000005299013] +16:55:30 ============================================================================ +16:55:30 Sending to : +16:55:30 ============================================================================ +16:55:30 + + +waiting on router queue for slot.... +16:55:32 ============================================================================ +16:55:32 Slot Id : <355> +16:55:32 Transaction Type : REQUEST +16:55:32 Received From : +16:55:32 ============================================================================ +16:55:32 FNo. Len. Field Value +16:55:32 ============================================================================ +16:55:32 [ 1] [ 4] [0200] +16:55:32 [ 2] [ 16] [6213544002118302] +16:55:32 [ 3] [ 6] [010000] +16:55:32 [ 4] [ 12] [000050000000] +16:55:32 [ 7] [ 10] [0320170319] +16:55:32 [ 11] [ 6] [240478] +16:55:32 [ 12] [ 6] [170319] +16:55:32 [ 13] [ 4] [0320] +16:55:32 [ 14] [ 4] [4912] +16:55:32 [ 15] [ 4] [0320] +16:55:32 [ 18] [ 4] [6011] +16:55:32 [ 22] [ 3] [900] +16:55:32 [ 25] [ 2] [02] +16:55:32 [ 28] [ 9] [D00002000] +16:55:32 [ 32] [ 6] [220699] +16:55:32 [ 35] [ 32] [6213544002118302=491212011830556] +16:55:32 [ 37] [ 12] [507900360225] +16:55:32 [ 41] [ 8] [05000300] +16:55:32 [ 42] [ 15] [APTRA ] +16:55:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:55:32 [ 49] [ 3] [418] +16:55:32 [ 52] [ 16] [43C3BCBD53F4B1D9] +16:55:32 ============================================================================ +16:55:32 + + +waiting on router queue for slot.... +16:55:32 Sending to : +16:55:32 ============================================================================ +16:55:32 Sending to : +16:55:32 ============================================================================ +16:55:32 ============================================================================ +16:55:32 Slot Id : <363> +16:55:32 Transaction Type : RESPONSE +16:55:32 Received From : +16:55:32 ============================================================================ +16:55:32 FNo. Len. Field Value +16:55:32 ============================================================================ +16:55:32 [ 1] [ 4] [0210] +16:55:32 [ 2] [ 16] [6213544002226444] +16:55:32 [ 3] [ 6] [010000] +16:55:32 [ 4] [ 12] [000045000000] +16:55:32 [ 7] [ 10] [0320165319] +16:55:32 [ 11] [ 6] [952578] +16:55:32 [ 12] [ 6] [165319] +16:55:32 [ 13] [ 4] [0320] +16:55:32 [ 15] [ 4] [0320] +16:55:32 [ 18] [ 4] [6011] +16:55:32 [ 19] [ 3] [418] +16:55:32 [ 32] [ 6] [668899] +16:55:32 [ 35] [ 32] [6213544002226444=491212012644130] +16:55:32 [ 37] [ 12] [507902025636] +16:55:32 [ 38] [ 6] [302163] +16:55:32 [ 39] [ 2] [00] +16:55:32 [ 41] [ 8] [03414002] +16:55:32 [ 49] [ 3] [418] +16:55:32 [ 54] [ 40] [0001418C0000052990130002418C000005299013] +16:55:32 ============================================================================ +16:55:32 Calculate Source COMM Id = 4 +16:55:32 ============================================================================ +16:55:32 + + +waiting on router queue for slot.... +16:55:32 ============================================================================ +16:55:32 Slot Id : <355> +16:55:32 Transaction Type : REQUEST +16:55:32 Received From : +16:55:32 ============================================================================ +16:55:32 FNo. Len. Field Value +16:55:32 ============================================================================ +16:55:32 [ 1] [ 4] [0200] +16:55:32 [ 2] [ 16] [6213544002118302] +16:55:32 [ 3] [ 6] [010000] +16:55:32 [ 4] [ 12] [000050000000] +16:55:32 [ 7] [ 10] [0320170319] +16:55:32 [ 11] [ 6] [240478] +16:55:32 [ 12] [ 6] [170319] +16:55:32 [ 13] [ 4] [0320] +16:55:32 [ 14] [ 4] [4912] +16:55:32 [ 15] [ 4] [0320] +16:55:32 [ 18] [ 4] [6011] +16:55:32 [ 22] [ 3] [900] +16:55:32 [ 25] [ 2] [02] +16:55:32 [ 28] [ 9] [D00002000] +16:55:32 [ 32] [ 6] [220699] +16:55:32 [ 35] [ 32] [6213544002118302=491212011830556] +16:55:32 [ 37] [ 12] [507900360225] +16:55:32 [ 41] [ 8] [05000300] +16:55:32 [ 42] [ 15] [APTRA ] +16:55:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:55:32 [ 49] [ 3] [418] +16:55:32 [ 52] [ 16] [43C3BCBD53F4B1D9] +16:55:32 ============================================================================ +16:55:32 + + +waiting on router queue for slot.... +16:55:32 Sending to : +16:55:32 ============================================================================ +16:55:32 ============================================================================ +16:55:32 Slot Id : <355> +16:55:32 Transaction Type : REQUEST +16:55:32 Received From : +16:55:32 ============================================================================ +16:55:32 FNo. Len. Field Value +16:55:32 ============================================================================ +16:55:32 [ 1] [ 4] [0200] +16:55:32 [ 2] [ 16] [6213544002118302] +16:55:32 [ 3] [ 6] [010000] +16:55:32 [ 4] [ 12] [000050000000] +16:55:32 [ 7] [ 10] [0320170319] +16:55:32 [ 11] [ 6] [240478] +16:55:32 [ 12] [ 6] [170319] +16:55:32 [ 13] [ 4] [0320] +16:55:32 [ 14] [ 4] [4912] +16:55:32 [ 15] [ 4] [0320] +16:55:32 [ 18] [ 4] [6011] +16:55:32 [ 22] [ 3] [900] +16:55:32 [ 25] [ 2] [02] +16:55:32 [ 28] [ 9] [D00002000] +16:55:32 [ 32] [ 6] [220699] +16:55:32 [ 35] [ 32] [6213544002118302=491212011830556] +16:55:32 [ 37] [ 12] [507900360225] +16:55:32 [ 41] [ 8] [05000300] +16:55:32 [ 42] [ 15] [APTRA ] +16:55:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:55:32 [ 49] [ 3] [418] +16:55:32 [ 52] [ 16] [BC88D6224B96B9A3] +16:55:32 ============================================================================ +16:55:32 + + +waiting on router queue for slot.... +16:55:32 Sending to : <0> +16:55:32 ============================================================================ +16:55:32 ============================================================================ +16:55:32 Slot Id : <355> +16:55:32 Transaction Type : RESPONSE +16:55:32 Received From : +16:55:32 ============================================================================ +16:55:32 FNo. Len. Field Value +16:55:32 ============================================================================ +16:55:32 [ 1] [ 4] [0210] +16:55:32 [ 2] [ 16] [6213544002118302] +16:55:32 [ 3] [ 6] [010000] +16:55:32 [ 4] [ 12] [000050000000] +16:55:32 [ 7] [ 10] [0320170319] +16:55:33 [ 11] [ 6] [240478] +16:55:33 [ 12] [ 6] [170319] +16:55:33 [ 13] [ 4] [0320] +16:55:33 [ 15] [ 4] [0320] +16:55:33 [ 18] [ 4] [6011] +16:55:33 [ 32] [ 6] [220699] +16:55:33 [ 35] [ 32] [6213544002118302=491212011830556] +16:55:33 [ 37] [ 12] [507900360225] +16:55:33 [ 38] [ 6] [483665] +16:55:33 [ 39] [ 2] [00] +16:55:33 [ 41] [ 8] [05000300] +16:55:33 [ 49] [ 3] [418] +16:55:33 [ 54] [ 40] [0001418C0000098920210002418C000009892021] +16:55:33 ============================================================================ +16:55:33 Sending to : +16:55:33 ============================================================================ +16:55:33 + + +waiting on router queue for slot.... +16:55:34 ============================================================================ +16:55:34 Slot Id : <355> +16:55:34 Transaction Type : RESPONSE +16:55:34 Received From : +16:55:34 ============================================================================ +16:55:34 FNo. Len. Field Value +16:55:34 ============================================================================ +16:55:34 [ 1] [ 4] [0210] +16:55:34 [ 2] [ 16] [6213544002118302] +16:55:34 [ 3] [ 6] [010000] +16:55:34 [ 4] [ 12] [000050000000] +16:55:34 [ 7] [ 10] [0320170319] +16:55:34 [ 11] [ 6] [240478] +16:55:34 [ 12] [ 6] [170319] +16:55:34 [ 13] [ 4] [0320] +16:55:34 [ 15] [ 4] [0320] +16:55:34 [ 18] [ 4] [6011] +16:55:34 [ 32] [ 6] [220699] +16:55:34 [ 35] [ 32] [6213544002118302=491212011830556] +16:55:34 [ 37] [ 12] [507900360225] +16:55:34 [ 38] [ 6] [483665] +16:55:34 [ 39] [ 2] [00] +16:55:34 [ 41] [ 8] [05000300] +16:55:34 [ 49] [ 3] [418] +16:55:34 [ 54] [ 40] [0001418C0000098920210002418C000009892021] +16:55:34 ============================================================================ +16:55:34 Calculate Source COMM Id = 1 +16:55:34 ============================================================================ +16:55:34 + + +waiting on router queue for slot.... +16:55:34 ============================================================================ +16:55:34 Slot Id : <344> +16:55:34 Transaction Type : REQUEST +16:55:34 Received From : +16:55:34 ============================================================================ +16:55:34 FNo. Len. Field Value +16:55:34 ============================================================================ +16:55:34 [ 1] [ 4] [0200] +16:55:34 [ 2] [ 16] [1808931800001966] +16:55:34 [ 3] [ 6] [011000] +16:55:34 [ 4] [ 12] [000030000000] +16:55:34 [ 7] [ 10] [0320165529] +16:55:34 [ 11] [ 6] [806919] +16:55:34 [ 12] [ 6] [165529] +16:55:34 [ 13] [ 4] [0320] +16:55:34 [ 15] [ 4] [0320] +16:55:34 [ 18] [ 4] [6011] +16:55:34 [ 22] [ 3] [900] +16:55:34 [ 25] [ 2] [02] +16:55:34 [ 28] [ 9] [D00002000] +16:55:34 [ 32] [ 6] [621354] +16:55:34 [ 35] [ 27] [1808931800001966=1803500196] +16:55:34 [ 37] [ 12] [507903613140] +16:55:34 [ 41] [ 8] [16001400] +16:55:34 [ 42] [ 15] [NATIVE ] +16:55:34 [ 43] [ 40] [NOUL Xaythany LAO] +16:55:34 [ 49] [ 3] [418] +16:55:34 [ 52] [ 16] [F3C1F9BB2A3ADDBB] +16:55:34 ============================================================================ +16:55:34 + + +waiting on router queue for slot.... +16:55:34 Sending to : +16:55:34 ============================================================================ +16:55:34 Sending to : +16:55:34 ============================================================================ +16:55:35 ============================================================================ +16:55:35 Slot Id : <344> +16:55:35 Transaction Type : REQUEST +16:55:35 Received From : +16:55:35 ============================================================================ +16:55:35 FNo. Len. Field Value +16:55:35 ============================================================================ +16:55:35 [ 1] [ 4] [0200] +16:55:35 [ 2] [ 16] [1808931800001966] +16:55:35 [ 3] [ 6] [011000] +16:55:35 [ 4] [ 12] [000030000000] +16:55:35 [ 7] [ 10] [0320165529] +16:55:35 [ 11] [ 6] [806919] +16:55:35 [ 12] [ 6] [165529] +16:55:35 [ 13] [ 4] [0320] +16:55:35 [ 15] [ 4] [0320] +16:55:35 [ 18] [ 4] [6011] +16:55:35 [ 22] [ 3] [900] +16:55:35 [ 25] [ 2] [02] +16:55:35 [ 28] [ 9] [D00002000] +16:55:35 [ 32] [ 6] [621354] +16:55:35 [ 35] [ 27] [1808931800001966=1803500196] +16:55:35 [ 37] [ 12] [507903613140] +16:55:35 [ 41] [ 8] [16001400] +16:55:35 [ 42] [ 15] [NATIVE ] +16:55:35 [ 43] [ 40] [NOUL Xaythany LAO] +16:55:35 [ 49] [ 3] [418] +16:55:35 [ 52] [ 16] [F3C1F9BB2A3ADDBB] +16:55:35 ============================================================================ +16:55:35 + + +waiting on router queue for slot.... +16:55:35 Sending to : +16:55:35 ============================================================================ +16:55:35 ============================================================================ +16:55:35 Slot Id : <344> +16:55:35 Transaction Type : REQUEST +16:55:35 Received From : +16:55:35 ============================================================================ +16:55:35 FNo. Len. Field Value +16:55:35 ============================================================================ +16:55:35 [ 1] [ 4] [0200] +16:55:35 [ 2] [ 16] [1808931800001966] +16:55:35 [ 3] [ 6] [011000] +16:55:35 [ 4] [ 12] [000030000000] +16:55:35 [ 7] [ 10] [0320165529] +16:55:35 [ 11] [ 6] [806919] +16:55:35 [ 12] [ 6] [165529] +16:55:35 [ 13] [ 4] [0320] +16:55:35 [ 15] [ 4] [0320] +16:55:35 [ 18] [ 4] [6011] +16:55:35 [ 22] [ 3] [900] +16:55:35 [ 25] [ 2] [02] +16:55:35 [ 28] [ 9] [D00002000] +16:55:35 [ 32] [ 6] [621354] +16:55:35 [ 35] [ 27] [1808931800001966=1803500196] +16:55:35 [ 37] [ 12] [507903613140] +16:55:35 [ 41] [ 8] [16001400] +16:55:35 [ 42] [ 15] [NATIVE ] +16:55:35 [ 43] [ 40] [NOUL Xaythany LAO] +16:55:35 [ 49] [ 3] [418] +16:55:35 [ 52] [ 16] [28771720E771B589] +16:55:35 ============================================================================ +16:55:35 + + +waiting on router queue for slot.... +16:55:35 Sending to : <2> +16:55:35 ============================================================================ +16:55:39 ============================================================================ +16:55:39 Slot Id : <344> +16:55:39 Transaction Type : RESPONSE +16:55:39 Received From : +16:55:39 ============================================================================ +16:55:39 FNo. Len. Field Value +16:55:39 ============================================================================ +16:55:39 [ 1] [ 4] [0210] +16:55:39 [ 2] [ 16] [1808931800001966] +16:55:39 [ 3] [ 6] [011000] +16:55:39 [ 4] [ 12] [000030000000] +16:55:39 [ 6] [ 12] [000030000000] +16:55:39 [ 7] [ 10] [0320165529] +16:55:39 [ 11] [ 6] [806919] +16:55:39 [ 12] [ 6] [165529] +16:55:39 [ 13] [ 4] [0320] +16:55:39 [ 18] [ 4] [6011] +16:55:39 [ 19] [ 3] [418] +16:55:39 [ 22] [ 3] [021] +16:55:39 [ 32] [ 6] [621354] +16:55:39 [ 35] [ 27] [1808931800001966=1803500196] +16:55:39 [ 37] [ 12] [507903613140] +16:55:39 [ 38] [ 6] [806919] +16:55:39 [ 39] [ 2] [00] +16:55:39 [ 41] [ 8] [16001400] +16:55:39 [ 49] [ 3] [418] +16:55:39 [ 52] [ 16] [28771720E771B589] +16:55:39 [ 54] [ 20] [1001418C000002465900] +16:55:39 ============================================================================ +16:55:39 Sending to : +16:55:39 ============================================================================ +16:55:39 + + +waiting on router queue for slot.... +16:55:41 ============================================================================ +16:55:41 Slot Id : <344> +16:55:41 Transaction Type : RESPONSE +16:55:41 Received From : +16:55:41 ============================================================================ +16:55:41 FNo. Len. Field Value +16:55:41 ============================================================================ +16:55:41 [ 1] [ 4] [0210] +16:55:41 [ 2] [ 16] [1808931800001966] +16:55:41 [ 3] [ 6] [011000] +16:55:41 [ 4] [ 12] [000030000000] +16:55:41 [ 6] [ 12] [000030000000] +16:55:41 [ 7] [ 10] [0320165529] +16:55:41 [ 11] [ 6] [806919] +16:55:41 [ 12] [ 6] [165529] +16:55:41 [ 13] [ 4] [0320] +16:55:41 [ 18] [ 4] [6011] +16:55:41 [ 19] [ 3] [418] +16:55:41 [ 22] [ 3] [021] +16:55:41 [ 32] [ 6] [621354] +16:55:41 [ 35] [ 27] [1808931800001966=1803500196] +16:55:41 [ 37] [ 12] [507903613140] +16:55:41 [ 38] [ 6] [806919] +16:55:41 [ 39] [ 2] [00] +16:55:41 [ 41] [ 8] [16001400] +16:55:41 [ 49] [ 3] [418] +16:55:41 [ 52] [ 16] [28771720E771B589] +16:55:41 [ 54] [ 20] [1001418C000002465900] +16:55:41 ============================================================================ +16:55:41 Calculate Source COMM Id = 0 +16:55:41 ============================================================================ +16:55:41 + + +waiting on router queue for slot.... +16:55:41 ============================================================================ +16:55:41 Slot Id : <370> +16:55:41 Transaction Type : REQUEST +16:55:41 Received From : +16:55:41 ============================================================================ +16:55:41 FNo. Len. Field Value +16:55:41 ============================================================================ +16:55:41 [ 1] [ 4] [0200] +16:55:41 [ 2] [ 16] [6213544001530416] +16:55:41 [ 3] [ 6] [011000] +16:55:41 [ 4] [ 12] [000030000000] +16:55:41 [ 7] [ 10] [0320165602] +16:55:41 [ 11] [ 6] [209090] +16:55:41 [ 12] [ 6] [165107] +16:55:41 [ 13] [ 4] [0320] +16:55:41 [ 14] [ 4] [4912] +16:55:41 [ 15] [ 4] [0320] +16:55:41 [ 18] [ 4] [6011] +16:55:41 [ 19] [ 3] [418] +16:55:41 [ 22] [ 3] [021] +16:55:41 [ 25] [ 2] [01] +16:55:41 [ 28] [ 9] [D00002000] +16:55:41 [ 32] [ 6] [198901] +16:55:41 [ 35] [ 32] [6213544001530416=491212013041250] +16:55:41 [ 37] [ 12] [507916209090] +16:55:41 [ 41] [ 8] [19529001] +16:55:41 [ 42] [ 15] [000000041952901] +16:55:41 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:55:41 [ 49] [ 3] [418] +16:55:41 [ 52] [ 16] [613486C2A2F5FD35] +16:55:41 ============================================================================ +16:55:41 + + +waiting on router queue for slot.... +16:55:41 Sending to : +16:55:41 ============================================================================ +16:55:41 Sending to : +16:55:41 ============================================================================ +16:55:41 ============================================================================ +16:55:41 Slot Id : <370> +16:55:41 Transaction Type : REQUEST +16:55:41 Received From : +16:55:41 ============================================================================ +16:55:41 FNo. Len. Field Value +16:55:41 ============================================================================ +16:55:41 [ 1] [ 4] [0200] +16:55:41 [ 2] [ 16] [6213544001530416] +16:55:41 [ 3] [ 6] [011000] +16:55:41 [ 4] [ 12] [000030000000] +16:55:41 [ 7] [ 10] [0320165602] +16:55:41 [ 11] [ 6] [209090] +16:55:41 [ 12] [ 6] [165107] +16:55:41 [ 13] [ 4] [0320] +16:55:41 [ 14] [ 4] [4912] +16:55:41 [ 15] [ 4] [0320] +16:55:41 [ 18] [ 4] [6011] +16:55:41 [ 19] [ 3] [418] +16:55:41 [ 22] [ 3] [021] +16:55:41 [ 25] [ 2] [01] +16:55:41 [ 28] [ 9] [D00002000] +16:55:41 [ 32] [ 6] [198901] +16:55:41 [ 35] [ 32] [6213544001530416=491212013041250] +16:55:41 [ 37] [ 12] [507916209090] +16:55:41 [ 41] [ 8] [19529001] +16:55:41 [ 42] [ 15] [000000041952901] +16:55:41 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:55:41 [ 49] [ 3] [418] +16:55:41 [ 52] [ 16] [613486C2A2F5FD35] +16:55:41 ============================================================================ +16:55:41 + + +waiting on router queue for slot.... +16:55:41 Sending to : +16:55:41 ============================================================================ +16:55:41 ============================================================================ +16:55:41 Slot Id : <370> +16:55:41 Transaction Type : REQUEST +16:55:41 Received From : +16:55:41 ============================================================================ +16:55:41 FNo. Len. Field Value +16:55:41 ============================================================================ +16:55:41 [ 1] [ 4] [0200] +16:55:41 [ 2] [ 16] [6213544001530416] +16:55:41 [ 3] [ 6] [011000] +16:55:41 [ 4] [ 12] [000030000000] +16:55:41 [ 7] [ 10] [0320165602] +16:55:41 [ 11] [ 6] [209090] +16:55:41 [ 12] [ 6] [165107] +16:55:41 [ 13] [ 4] [0320] +16:55:41 [ 14] [ 4] [4912] +16:55:41 [ 15] [ 4] [0320] +16:55:41 [ 18] [ 4] [6011] +16:55:41 [ 19] [ 3] [418] +16:55:41 [ 22] [ 3] [021] +16:55:41 [ 25] [ 2] [01] +16:55:41 [ 28] [ 9] [D00002000] +16:55:41 [ 32] [ 6] [198901] +16:55:41 [ 35] [ 32] [6213544001530416=491212013041250] +16:55:41 [ 37] [ 12] [507916209090] +16:55:41 [ 41] [ 8] [19529001] +16:55:41 [ 42] [ 15] [000000041952901] +16:55:41 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:55:41 [ 49] [ 3] [418] +16:55:41 [ 52] [ 16] [DE319FAF557FF85C] +16:55:41 ============================================================================ +16:55:41 + + +waiting on router queue for slot.... +16:55:41 Sending to : <0> +16:55:41 ============================================================================ +16:55:42 ============================================================================ +16:55:42 Slot Id : <370> +16:55:42 Transaction Type : RESPONSE +16:55:42 Received From : +16:55:42 ============================================================================ +16:55:42 FNo. Len. Field Value +16:55:42 ============================================================================ +16:55:42 [ 1] [ 4] [0210] +16:55:42 [ 2] [ 16] [6213544001530416] +16:55:42 [ 3] [ 6] [011000] +16:55:42 [ 4] [ 12] [000030000000] +16:55:42 [ 7] [ 10] [0320165602] +16:55:42 [ 11] [ 6] [209090] +16:55:42 [ 12] [ 6] [165107] +16:55:42 [ 13] [ 4] [0320] +16:55:42 [ 15] [ 4] [0320] +16:55:42 [ 18] [ 4] [6011] +16:55:42 [ 19] [ 3] [418] +16:55:42 [ 32] [ 6] [198901] +16:55:42 [ 35] [ 32] [6213544001530416=491212013041250] +16:55:42 [ 37] [ 12] [507916209090] +16:55:42 [ 38] [ 6] [038852] +16:55:42 [ 39] [ 2] [00] +16:55:42 [ 41] [ 8] [19529001] +16:55:42 [ 49] [ 3] [418] +16:55:42 [ 54] [ 40] [1001418C0000324262941002418C000032426294] +16:55:42 ============================================================================ +16:55:42 Sending to : +16:55:42 ============================================================================ +16:55:42 + + +waiting on router queue for slot.... +16:55:43 ============================================================================ +16:55:43 Slot Id : <370> +16:55:43 Transaction Type : RESPONSE +16:55:43 Received From : +16:55:43 ============================================================================ +16:55:43 FNo. Len. Field Value +16:55:43 ============================================================================ +16:55:43 [ 1] [ 4] [0210] +16:55:43 [ 2] [ 16] [6213544001530416] +16:55:43 [ 3] [ 6] [011000] +16:55:43 [ 4] [ 12] [000030000000] +16:55:43 [ 7] [ 10] [0320165602] +16:55:43 [ 11] [ 6] [209090] +16:55:43 [ 12] [ 6] [165107] +16:55:43 [ 13] [ 4] [0320] +16:55:43 [ 15] [ 4] [0320] +16:55:43 [ 18] [ 4] [6011] +16:55:43 [ 19] [ 3] [418] +16:55:43 [ 32] [ 6] [198901] +16:55:43 [ 35] [ 32] [6213544001530416=491212013041250] +16:55:43 [ 37] [ 12] [507916209090] +16:55:43 [ 38] [ 6] [038852] +16:55:43 [ 39] [ 2] [00] +16:55:43 [ 41] [ 8] [19529001] +16:55:43 [ 49] [ 3] [418] +16:55:43 [ 54] [ 40] [1001418C0000324262941002418C000032426294] +16:55:43 ============================================================================ +16:55:43 Calculate Source COMM Id = 5 +16:55:43 ============================================================================ +16:55:43 + + +waiting on router queue for slot.... +16:55:46 ============================================================================ +16:55:46 Slot Id : <358> +16:55:46 Transaction Type : REQUEST +16:55:46 Received From : +16:55:46 ============================================================================ +16:55:46 FNo. Len. Field Value +16:55:46 ============================================================================ +16:55:46 [ 1] [ 4] [0200] +16:55:46 [ 2] [ 16] [2206990000122945] +16:55:46 [ 3] [ 6] [010000] +16:55:46 [ 4] [ 12] [000100000000] +16:55:46 [ 7] [ 10] [0320165336] +16:55:46 [ 11] [ 6] [952587] +16:55:46 [ 12] [ 6] [165336] +16:55:46 [ 13] [ 4] [0320] +16:55:46 [ 15] [ 4] [0320] +16:55:46 [ 18] [ 4] [6011] +16:55:46 [ 19] [ 3] [418] +16:55:46 [ 22] [ 3] [021] +16:55:46 [ 25] [ 2] [01] +16:55:46 [ 28] [ 9] [D00002000] +16:55:46 [ 32] [ 6] [668899] +16:55:46 [ 35] [ 32] [2206990000122945=980312615633013] +16:55:46 [ 37] [ 12] [507901912270] +16:55:46 [ 41] [ 8] [03013004] +16:55:46 [ 42] [ 15] [APT ] +16:55:46 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +16:55:46 [ 49] [ 3] [418] +16:55:46 [ 52] [ 16] [9C43F27654FBD9B2] +16:55:46 ============================================================================ +16:55:46 + + +waiting on router queue for slot.... +16:55:46 Sending to : +16:55:46 ============================================================================ +16:55:46 Sending to : +16:55:46 ============================================================================ +16:55:46 ============================================================================ +16:55:46 Slot Id : <358> +16:55:46 Transaction Type : REQUEST +16:55:46 Received From : +16:55:46 ============================================================================ +16:55:46 FNo. Len. Field Value +16:55:46 ============================================================================ +16:55:46 [ 1] [ 4] [0200] +16:55:46 [ 2] [ 16] [2206990000122945] +16:55:46 [ 3] [ 6] [010000] +16:55:46 [ 4] [ 12] [000100000000] +16:55:46 [ 7] [ 10] [0320165336] +16:55:46 [ 11] [ 6] [952587] +16:55:46 [ 12] [ 6] [165336] +16:55:46 [ 13] [ 4] [0320] +16:55:46 [ 15] [ 4] [0320] +16:55:46 [ 18] [ 4] [6011] +16:55:46 [ 19] [ 3] [418] +16:55:46 [ 22] [ 3] [021] +16:55:46 [ 25] [ 2] [01] +16:55:46 [ 28] [ 9] [D00002000] +16:55:46 [ 32] [ 6] [668899] +16:55:46 [ 35] [ 32] [2206990000122945=980312615633013] +16:55:46 [ 37] [ 12] [507901912270] +16:55:46 [ 41] [ 8] [03013004] +16:55:46 [ 42] [ 15] [APT ] +16:55:46 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +16:55:46 [ 49] [ 3] [418] +16:55:46 [ 52] [ 16] [9C43F27654FBD9B2] +16:55:46 ============================================================================ +16:55:46 + + +waiting on router queue for slot.... +16:55:46 Sending to : +16:55:46 ============================================================================ +16:55:46 ============================================================================ +16:55:46 Slot Id : <358> +16:55:46 Transaction Type : REQUEST +16:55:46 Received From : +16:55:46 ============================================================================ +16:55:46 FNo. Len. Field Value +16:55:46 ============================================================================ +16:55:46 [ 1] [ 4] [0200] +16:55:46 [ 2] [ 16] [2206990000122945] +16:55:46 [ 3] [ 6] [010000] +16:55:46 [ 4] [ 12] [000100000000] +16:55:46 [ 7] [ 10] [0320165336] +16:55:46 [ 11] [ 6] [952587] +16:55:46 [ 12] [ 6] [165336] +16:55:46 [ 13] [ 4] [0320] +16:55:46 [ 15] [ 4] [0320] +16:55:46 [ 18] [ 4] [6011] +16:55:46 [ 19] [ 3] [418] +16:55:46 [ 22] [ 3] [021] +16:55:46 [ 25] [ 2] [01] +16:55:46 [ 28] [ 9] [D00002000] +16:55:46 [ 32] [ 6] [668899] +16:55:46 [ 35] [ 32] [2206990000122945=980312615633013] +16:55:46 [ 37] [ 12] [507901912270] +16:55:46 [ 41] [ 8] [03013004] +16:55:46 [ 42] [ 15] [APT ] +16:55:46 [ 43] [ 40] [ HOSPITAL OF KHAMMOUAN THA] +16:55:46 [ 49] [ 3] [418] +16:55:46 [ 52] [ 16] [25D8D6490330F7D5] +16:55:46 ============================================================================ +16:55:46 + + +waiting on router queue for slot.... +16:55:46 Sending to : <1> +16:55:46 ============================================================================ +16:55:49 ============================================================================ +16:55:49 Slot Id : <379> +16:55:49 Transaction Type : REQUEST +16:55:49 Received From : +16:55:49 ============================================================================ +16:55:49 FNo. Len. Field Value +16:55:49 ============================================================================ +16:55:49 [ 1] [ 4] [0800] +16:55:49 [ 7] [ 10] [0320095456] +16:55:49 [ 11] [ 6] [157336] +16:55:49 [ 70] [ 3] [301] +16:55:49 ============================================================================ +16:55:49 + + +waiting on router queue for slot.... +16:55:49 Sending to : +16:55:49 ============================================================================ +16:55:49 ============================================================================ +16:55:49 Slot Id : <379> +16:55:49 Transaction Type : RESPONSE +16:55:49 Received From : +16:55:49 ============================================================================ +16:55:49 FNo. Len. Field Value +16:55:49 ============================================================================ +16:55:49 [ 1] [ 4] [0810] +16:55:49 [ 7] [ 10] [0320095456] +16:55:49 [ 11] [ 6] [157336] +16:55:49 [ 39] [ 2] [00] +16:55:49 [ 70] [ 3] [301] +16:55:49 ============================================================================ +16:55:49 Calculate Source COMM Id = 2 +16:55:49 ============================================================================ +16:55:49 + + +waiting on router queue for slot.... +16:55:49 ============================================================================ +16:55:49 Slot Id : <358> +16:55:49 Transaction Type : RESPONSE +16:55:49 Received From : +16:55:49 ============================================================================ +16:55:49 FNo. Len. Field Value +16:55:49 ============================================================================ +16:55:49 [ 1] [ 4] [0210] +16:55:49 [ 2] [ 16] [2206990000122945] +16:55:49 [ 3] [ 6] [010000] +16:55:49 [ 4] [ 12] [000100000000] +16:55:49 [ 7] [ 10] [0320165336] +16:55:49 [ 11] [ 6] [952587] +16:55:49 [ 12] [ 6] [165336] +16:55:49 [ 13] [ 4] [0320] +16:55:49 [ 15] [ 4] [0320] +16:55:49 [ 18] [ 4] [6011] +16:55:49 [ 32] [ 6] [668899] +16:55:49 [ 35] [ 32] [2206990000122945=980312615633013] +16:55:49 [ 37] [ 12] [507901912270] +16:55:49 [ 38] [ 6] [715289] +16:55:49 [ 39] [ 2] [00] +16:55:49 [ 41] [ 8] [03013004] +16:55:49 [ 49] [ 3] [418] +16:55:49 [ 54] [ 40] [0001418C0007386870000002418C000738687000] +16:55:49 ============================================================================ +16:55:49 Sending to : +16:55:49 ============================================================================ +16:55:49 + + +waiting on router queue for slot.... +16:55:50 ============================================================================ +16:55:50 Slot Id : <358> +16:55:50 Transaction Type : RESPONSE +16:55:50 Received From : +16:55:50 ============================================================================ +16:55:50 FNo. Len. Field Value +16:55:50 ============================================================================ +16:55:50 [ 1] [ 4] [0210] +16:55:50 [ 2] [ 16] [2206990000122945] +16:55:50 [ 3] [ 6] [010000] +16:55:50 [ 4] [ 12] [000100000000] +16:55:50 [ 7] [ 10] [0320165336] +16:55:50 [ 11] [ 6] [952587] +16:55:50 [ 12] [ 6] [165336] +16:55:50 [ 13] [ 4] [0320] +16:55:50 [ 15] [ 4] [0320] +16:55:50 [ 18] [ 4] [6011] +16:55:50 [ 32] [ 6] [668899] +16:55:50 [ 35] [ 32] [2206990000122945=980312615633013] +16:55:50 [ 37] [ 12] [507901912270] +16:55:50 [ 38] [ 6] [715289] +16:55:50 [ 39] [ 2] [00] +16:55:50 [ 41] [ 8] [03013004] +16:55:50 [ 49] [ 3] [418] +16:55:50 [ 54] [ 40] [0001418C0007386870000002418C000738687000] +16:55:50 ============================================================================ +16:55:50 Calculate Source COMM Id = 4 +16:55:50 ============================================================================ +16:55:50 + + +waiting on router queue for slot.... +16:56:01 ============================================================================ +16:56:01 Slot Id : <369> +16:56:01 Transaction Type : REQUEST +16:56:01 Received From : +16:56:01 ============================================================================ +16:56:01 FNo. Len. Field Value +16:56:01 ============================================================================ +16:56:01 [ 1] [ 4] [0800] +16:56:01 [ 7] [ 10] [0320095508] +16:56:01 [ 11] [ 6] [157337] +16:56:01 [ 70] [ 3] [301] +16:56:01 ============================================================================ +16:56:01 + + +waiting on router queue for slot.... +16:56:01 Sending to : +16:56:01 ============================================================================ +16:56:01 ============================================================================ +16:56:01 Slot Id : <369> +16:56:01 Transaction Type : RESPONSE +16:56:01 Received From : +16:56:01 ============================================================================ +16:56:01 FNo. Len. Field Value +16:56:01 ============================================================================ +16:56:01 [ 1] [ 4] [0810] +16:56:01 [ 7] [ 10] [0320095508] +16:56:01 [ 11] [ 6] [157337] +16:56:01 [ 39] [ 2] [00] +16:56:01 [ 70] [ 3] [301] +16:56:01 ============================================================================ +16:56:01 Calculate Source COMM Id = 2 +16:56:01 ============================================================================ +16:56:01 + + +waiting on router queue for slot.... +16:56:05 ============================================================================ +16:56:05 Slot Id : <360> +16:56:05 Transaction Type : REQUEST +16:56:05 Received From : +16:56:05 ============================================================================ +16:56:05 FNo. Len. Field Value +16:56:05 ============================================================================ +16:56:05 [ 1] [ 4] [0800] +16:56:05 [ 7] [ 10] [0321000753] +16:56:05 [ 11] [ 6] [170753] +16:56:05 [ 37] [ 12] [57917170753] +16:56:05 [ 70] [ 3] [301] +16:56:05 ============================================================================ +16:56:05 + + +waiting on router queue for slot.... +16:56:05 Sending to : +16:56:05 ============================================================================ +16:56:05 ============================================================================ +16:56:05 Slot Id : <360> +16:56:05 Transaction Type : RESPONSE +16:56:05 Received From : +16:56:05 ============================================================================ +16:56:05 FNo. Len. Field Value +16:56:05 ============================================================================ +16:56:05 [ 1] [ 4] [0810] +16:56:05 [ 7] [ 10] [0321000753] +16:56:05 [ 11] [ 6] [170753] +16:56:05 [ 37] [ 12] [579171707530] +16:56:05 [ 39] [ 2] [00] +16:56:05 [ 70] [ 3] [810] +16:56:05 ============================================================================ +16:56:05 Calculate Source COMM Id = 6 +16:56:05 ============================================================================ +16:56:05 + + +waiting on router queue for slot.... +16:56:09 ============================================================================ +16:56:09 Slot Id : <338> +16:56:09 Transaction Type : REQUEST +16:56:09 Received From : +16:56:09 ============================================================================ +16:56:09 FNo. Len. Field Value +16:56:09 ============================================================================ +16:56:09 [ 1] [ 4] [0200] +16:56:09 [ 2] [ 16] [6213544002021266] +16:56:09 [ 3] [ 6] [301000] +16:56:09 [ 4] [ 12] [000000000000] +16:56:09 [ 7] [ 10] [0320165359] +16:56:09 [ 11] [ 6] [952604] +16:56:09 [ 12] [ 6] [165359] +16:56:09 [ 13] [ 4] [0320] +16:56:09 [ 15] [ 4] [0320] +16:56:09 [ 18] [ 4] [6011] +16:56:09 [ 19] [ 3] [418] +16:56:09 [ 22] [ 3] [021] +16:56:09 [ 25] [ 2] [01] +16:56:09 [ 28] [ 9] [D00000000] +16:56:09 [ 32] [ 6] [668899] +16:56:09 [ 35] [ 32] [6213544002021266=491212012126698] +16:56:09 [ 37] [ 12] [507902362996] +16:56:09 [ 41] [ 8] [03016003] +16:56:09 [ 42] [ 15] [APT ] +16:56:09 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:56:09 [ 49] [ 3] [418] +16:56:09 [ 52] [ 16] [1841229EA4C56AFC] +16:56:09 ============================================================================ +16:56:09 + + +waiting on router queue for slot.... +16:56:09 Sending to : +16:56:09 ============================================================================ +16:56:09 Sending to : +16:56:09 ============================================================================ +16:56:09 ============================================================================ +16:56:09 Slot Id : <338> +16:56:09 Transaction Type : REQUEST +16:56:09 Received From : +16:56:09 ============================================================================ +16:56:09 FNo. Len. Field Value +16:56:09 ============================================================================ +16:56:09 [ 1] [ 4] [0200] +16:56:09 [ 2] [ 16] [6213544002021266] +16:56:09 [ 3] [ 6] [301000] +16:56:09 [ 4] [ 12] [000000000000] +16:56:09 [ 7] [ 10] [0320165359] +16:56:09 [ 11] [ 6] [952604] +16:56:09 [ 12] [ 6] [165359] +16:56:09 [ 13] [ 4] [0320] +16:56:09 [ 15] [ 4] [0320] +16:56:09 [ 18] [ 4] [6011] +16:56:09 [ 19] [ 3] [418] +16:56:09 [ 22] [ 3] [021] +16:56:09 [ 25] [ 2] [01] +16:56:09 [ 28] [ 9] [D00000000] +16:56:09 [ 32] [ 6] [668899] +16:56:09 [ 35] [ 32] [6213544002021266=491212012126698] +16:56:09 [ 37] [ 12] [507902362996] +16:56:09 [ 41] [ 8] [03016003] +16:56:09 [ 42] [ 15] [APT ] +16:56:09 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:56:09 [ 49] [ 3] [418] +16:56:09 [ 52] [ 16] [1841229EA4C56AFC] +16:56:09 ============================================================================ +16:56:09 + + +waiting on router queue for slot.... +16:56:09 Sending to : +16:56:09 ============================================================================ +16:56:09 ============================================================================ +16:56:09 Slot Id : <338> +16:56:09 Transaction Type : REQUEST +16:56:09 Received From : +16:56:09 ============================================================================ +16:56:09 FNo. Len. Field Value +16:56:09 ============================================================================ +16:56:09 [ 1] [ 4] [0200] +16:56:09 [ 2] [ 16] [6213544002021266] +16:56:09 [ 3] [ 6] [301000] +16:56:09 [ 4] [ 12] [000000000000] +16:56:09 [ 7] [ 10] [0320165359] +16:56:09 [ 11] [ 6] [952604] +16:56:09 [ 12] [ 6] [165359] +16:56:09 [ 13] [ 4] [0320] +16:56:09 [ 15] [ 4] [0320] +16:56:09 [ 18] [ 4] [6011] +16:56:09 [ 19] [ 3] [418] +16:56:09 [ 22] [ 3] [021] +16:56:09 [ 25] [ 2] [01] +16:56:09 [ 28] [ 9] [D00000000] +16:56:09 [ 32] [ 6] [668899] +16:56:09 [ 35] [ 32] [6213544002021266=491212012126698] +16:56:09 [ 37] [ 12] [507902362996] +16:56:09 [ 41] [ 8] [03016003] +16:56:09 [ 42] [ 15] [APT ] +16:56:09 [ 43] [ 40] [ TADLOR LAONGARM LAO] +16:56:09 [ 49] [ 3] [418] +16:56:09 [ 52] [ 16] [35E9994AA83DDE1A] +16:56:09 ============================================================================ +16:56:09 + + +waiting on router queue for slot.... +16:56:09 Sending to : <0> +16:56:09 ============================================================================ +16:56:10 ============================================================================ +16:56:10 Slot Id : <338> +16:56:10 Transaction Type : RESPONSE +16:56:10 Received From : +16:56:10 ============================================================================ +16:56:10 FNo. Len. Field Value +16:56:10 ============================================================================ +16:56:10 [ 1] [ 4] [0210] +16:56:10 [ 2] [ 16] [6213544002021266] +16:56:10 [ 3] [ 6] [301000] +16:56:10 [ 4] [ 12] [000000000000] +16:56:10 [ 7] [ 10] [0320165359] +16:56:10 [ 11] [ 6] [952604] +16:56:10 [ 12] [ 6] [165359] +16:56:10 [ 13] [ 4] [0320] +16:56:10 [ 15] [ 4] [0320] +16:56:10 [ 18] [ 4] [6011] +16:56:10 [ 19] [ 3] [418] +16:56:10 [ 32] [ 6] [668899] +16:56:10 [ 35] [ 32] [6213544002021266=491212012126698] +16:56:10 [ 37] [ 12] [507902362996] +16:56:10 [ 38] [ 6] [999625] +16:56:10 [ 39] [ 2] [00] +16:56:10 [ 41] [ 8] [03016003] +16:56:10 [ 49] [ 3] [418] +16:56:10 [ 54] [ 40] [1001418C0001590683931002418C000159068393] +16:56:10 ============================================================================ +16:56:10 Sending to : +16:56:10 ============================================================================ +16:56:10 + + +waiting on router queue for slot.... +16:56:11 ============================================================================ +16:56:11 Slot Id : <338> +16:56:11 Transaction Type : RESPONSE +16:56:11 Received From : +16:56:11 ============================================================================ +16:56:11 FNo. Len. Field Value +16:56:11 ============================================================================ +16:56:11 [ 1] [ 4] [0210] +16:56:11 [ 2] [ 16] [6213544002021266] +16:56:11 [ 3] [ 6] [301000] +16:56:11 [ 4] [ 12] [000000000000] +16:56:11 [ 7] [ 10] [0320165359] +16:56:11 [ 11] [ 6] [952604] +16:56:11 [ 12] [ 6] [165359] +16:56:11 [ 13] [ 4] [0320] +16:56:11 [ 15] [ 4] [0320] +16:56:11 [ 18] [ 4] [6011] +16:56:11 [ 19] [ 3] [418] +16:56:11 [ 32] [ 6] [668899] +16:56:11 [ 35] [ 32] [6213544002021266=491212012126698] +16:56:11 [ 37] [ 12] [507902362996] +16:56:11 [ 38] [ 6] [999625] +16:56:11 [ 39] [ 2] [00] +16:56:11 [ 41] [ 8] [03016003] +16:56:11 [ 49] [ 3] [418] +16:56:11 [ 54] [ 40] [1001418C0001590683931002418C000159068393] +16:56:11 ============================================================================ +16:56:11 Calculate Source COMM Id = 4 +16:56:11 ============================================================================ +16:56:11 + + +waiting on router queue for slot.... +16:56:16 ============================================================================ +16:56:16 Slot Id : <354> +16:56:16 Transaction Type : REQUEST +16:56:16 Received From : +16:56:16 ============================================================================ +16:56:16 FNo. Len. Field Value +16:56:16 ============================================================================ +16:56:16 [ 1] [ 4] [0800] +16:56:16 [ 7] [ 10] [0320095523] +16:56:16 [ 11] [ 6] [157338] +16:56:16 [ 70] [ 3] [301] +16:56:16 ============================================================================ +16:56:16 + + +waiting on router queue for slot.... +16:56:16 Sending to : +16:56:16 ============================================================================ +16:56:16 ============================================================================ +16:56:16 Slot Id : <354> +16:56:16 Transaction Type : RESPONSE +16:56:16 Received From : +16:56:16 ============================================================================ +16:56:16 FNo. Len. Field Value +16:56:16 ============================================================================ +16:56:16 [ 1] [ 4] [0810] +16:56:16 [ 7] [ 10] [0320095523] +16:56:16 [ 11] [ 6] [157338] +16:56:16 [ 39] [ 2] [00] +16:56:16 [ 70] [ 3] [301] +16:56:16 ============================================================================ +16:56:16 Calculate Source COMM Id = 2 +16:56:16 ============================================================================ +16:56:16 + + +waiting on router queue for slot.... +16:56:22 ============================================================================ +16:56:22 Slot Id : <396> +16:56:22 Transaction Type : REQUEST +16:56:22 Received From : +16:56:22 ============================================================================ +16:56:22 FNo. Len. Field Value +16:56:22 ============================================================================ +16:56:22 [ 1] [ 4] [0800] +16:56:22 [ 7] [ 10] [0320095412] +16:56:22 [ 11] [ 6] [059893] +16:56:22 [ 37] [ 12] [57916059893] +16:56:22 [ 70] [ 3] [301] +16:56:22 ============================================================================ +16:56:22 + + +waiting on router queue for slot.... +16:56:22 Sending to : +16:56:22 ============================================================================ +16:56:22 ============================================================================ +16:56:22 Slot Id : <396> +16:56:22 Transaction Type : RESPONSE +16:56:22 Received From : +16:56:22 ============================================================================ +16:56:22 FNo. Len. Field Value +16:56:22 ============================================================================ +16:56:22 [ 1] [ 4] [0810] +16:56:22 [ 7] [ 10] [0320095412] +16:56:22 [ 11] [ 6] [059893] +16:56:22 [ 37] [ 12] [579160598930] +16:56:22 [ 39] [ 2] [00] +16:56:22 [ 70] [ 3] [810] +16:56:22 ============================================================================ +16:56:22 Calculate Source COMM Id = 4 +16:56:22 ============================================================================ +16:56:22 + + +waiting on router queue for slot.... +16:56:25 ============================================================================ +16:56:25 Slot Id : <390> +16:56:25 Transaction Type : REQUEST +16:56:25 Received From : +16:56:25 ============================================================================ +16:56:25 FNo. Len. Field Value +16:56:25 ============================================================================ +16:56:25 [ 1] [ 4] [0800] +16:56:25 [ 2] [ 5] [02531] +16:56:25 [ 3] [ 6] [579168] +16:56:25 [ 7] [ 10] [0320095625] +16:56:25 [ 11] [ 6] [807395] +16:56:25 [ 15] [ 10] [0320095625] +16:56:25 [ 37] [ 11] [57916807395] +16:56:25 [ 70] [ 3] [001] +16:56:25 ============================================================================ +16:56:25 + + +waiting on router queue for slot.... +16:56:25 ============================================================================ +16:56:25 Slot Id : <390> +16:56:25 Transaction Type : RESPONSE +16:56:25 Received From : +16:56:25 ============================================================================ +16:56:25 FNo. Len. Field Value +16:56:25 ============================================================================ +16:56:25 [ 1] [ 4] [0810] +16:56:25 [ 7] [ 10] [0320095625] +16:56:25 [ 11] [ 6] [807395] +16:56:25 [ 15] [ 4] [0320] +16:56:25 [ 37] [ 12] [57916807395] +16:56:25 [ 39] [ 2] [00] +16:56:25 [ 70] [ 3] [001] +16:56:25 ============================================================================ +16:56:25 Sending to : +16:56:25 ============================================================================ +16:56:25 + + +waiting on router queue for slot.... +16:56:31 ============================================================================ +16:56:31 Slot Id : <374> +16:56:31 Transaction Type : REQUEST +16:56:31 Received From : +16:56:31 ============================================================================ +16:56:31 FNo. Len. Field Value +16:56:31 ============================================================================ +16:56:31 [ 1] [ 4] [0800] +16:56:31 [ 7] [ 10] [0320095538] +16:56:31 [ 11] [ 6] [157339] +16:56:31 [ 70] [ 3] [301] +16:56:31 ============================================================================ +16:56:31 + + +waiting on router queue for slot.... +16:56:31 Sending to : +16:56:31 ============================================================================ +16:56:31 ============================================================================ +16:56:31 Slot Id : <374> +16:56:31 Transaction Type : RESPONSE +16:56:31 Received From : +16:56:31 ============================================================================ +16:56:31 FNo. Len. Field Value +16:56:31 ============================================================================ +16:56:31 [ 1] [ 4] [0810] +16:56:31 [ 7] [ 10] [0320095538] +16:56:31 [ 11] [ 6] [157339] +16:56:31 [ 39] [ 2] [00] +16:56:31 [ 70] [ 3] [301] +16:56:31 ============================================================================ +16:56:31 Calculate Source COMM Id = 2 +16:56:31 ============================================================================ +16:56:31 + + +waiting on router queue for slot.... +16:56:33 ============================================================================ +16:56:33 Slot Id : <389> +16:56:33 Transaction Type : REQUEST +16:56:33 Received From : +16:56:33 ============================================================================ +16:56:33 FNo. Len. Field Value +16:56:33 ============================================================================ +16:56:33 [ 1] [ 4] [0200] +16:56:33 [ 2] [ 16] [6213545000822175] +16:56:33 [ 3] [ 6] [010000] +16:56:33 [ 4] [ 12] [000050000000] +16:56:33 [ 7] [ 10] [0320095539] +16:56:33 [ 11] [ 6] [270668] +16:56:33 [ 12] [ 6] [165539] +16:56:33 [ 13] [ 4] [0320] +16:56:33 [ 14] [ 4] [4912] +16:56:33 [ 15] [ 4] [0320] +16:56:33 [ 18] [ 4] [6011] +16:56:33 [ 19] [ 3] [418] +16:56:33 [ 22] [ 3] [021] +16:56:33 [ 25] [ 2] [01] +16:56:33 [ 28] [ 9] [D00002000] +16:56:33 [ 32] [ 6] [180893] +16:56:33 [ 35] [ 32] [6213545000822175=491212012217123] +16:56:33 [ 37] [ 12] [507909270668] +16:56:33 [ 41] [ 8] [0262PSLB] +16:56:33 [ 42] [ 15] [999999 ] +16:56:33 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +16:56:33 [ 49] [ 3] [418] +16:56:33 [ 52] [ 16] [7820E7CB5C58F010] +16:56:33 ============================================================================ +16:56:33 + + +waiting on router queue for slot.... +16:56:33 Sending to : +16:56:33 ============================================================================ +16:56:33 Sending to : +16:56:33 ============================================================================ +16:56:33 ============================================================================ +16:56:33 Slot Id : <389> +16:56:33 Transaction Type : REQUEST +16:56:33 Received From : +16:56:33 ============================================================================ +16:56:33 FNo. Len. Field Value +16:56:33 ============================================================================ +16:56:33 [ 1] [ 4] [0200] +16:56:33 [ 2] [ 16] [6213545000822175] +16:56:33 [ 3] [ 6] [010000] +16:56:33 [ 4] [ 12] [000050000000] +16:56:33 [ 7] [ 10] [0320095539] +16:56:33 [ 11] [ 6] [270668] +16:56:33 [ 12] [ 6] [165539] +16:56:33 [ 13] [ 4] [0320] +16:56:33 [ 14] [ 4] [4912] +16:56:33 [ 15] [ 4] [0320] +16:56:33 [ 18] [ 4] [6011] +16:56:33 [ 19] [ 3] [418] +16:56:33 [ 22] [ 3] [021] +16:56:33 [ 25] [ 2] [01] +16:56:33 [ 28] [ 9] [D00002000] +16:56:33 [ 32] [ 6] [180893] +16:56:33 [ 35] [ 32] [6213545000822175=491212012217123] +16:56:33 [ 37] [ 12] [507909270668] +16:56:33 [ 41] [ 8] [0262PSLB] +16:56:33 [ 42] [ 15] [999999 ] +16:56:33 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +16:56:33 [ 49] [ 3] [418] +16:56:33 [ 52] [ 16] [7820E7CB5C58F010] +16:56:33 ============================================================================ +16:56:33 + + +waiting on router queue for slot.... +16:56:33 Sending to : +16:56:33 ============================================================================ +16:56:33 ============================================================================ +16:56:33 Slot Id : <389> +16:56:33 Transaction Type : REQUEST +16:56:33 Received From : +16:56:33 ============================================================================ +16:56:33 FNo. Len. Field Value +16:56:33 ============================================================================ +16:56:33 [ 1] [ 4] [0200] +16:56:33 [ 2] [ 16] [6213545000822175] +16:56:33 [ 3] [ 6] [010000] +16:56:33 [ 4] [ 12] [000050000000] +16:56:33 [ 7] [ 10] [0320095539] +16:56:33 [ 11] [ 6] [270668] +16:56:33 [ 12] [ 6] [165539] +16:56:33 [ 13] [ 4] [0320] +16:56:33 [ 14] [ 4] [4912] +16:56:33 [ 15] [ 4] [0320] +16:56:33 [ 18] [ 4] [6011] +16:56:33 [ 19] [ 3] [418] +16:56:33 [ 22] [ 3] [021] +16:56:33 [ 25] [ 2] [01] +16:56:33 [ 28] [ 9] [D00002000] +16:56:33 [ 32] [ 6] [180893] +16:56:33 [ 35] [ 32] [6213545000822175=491212012217123] +16:56:33 [ 37] [ 12] [507909270668] +16:56:33 [ 41] [ 8] [0262PSLB] +16:56:33 [ 42] [ 15] [999999 ] +16:56:33 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +16:56:33 [ 49] [ 3] [418] +16:56:33 [ 52] [ 16] [D476E679C9CC6701] +16:56:33 ============================================================================ +16:56:33 + + +waiting on router queue for slot.... +16:56:33 Sending to : <0> +16:56:33 ============================================================================ +16:56:34 ============================================================================ +16:56:34 Slot Id : <389> +16:56:34 Transaction Type : RESPONSE +16:56:34 Received From : +16:56:34 ============================================================================ +16:56:34 FNo. Len. Field Value +16:56:34 ============================================================================ +16:56:34 [ 1] [ 4] [0210] +16:56:34 [ 2] [ 16] [6213545000822175] +16:56:34 [ 3] [ 6] [010000] +16:56:34 [ 4] [ 12] [000050000000] +16:56:34 [ 7] [ 10] [0320095539] +16:56:34 [ 11] [ 6] [270668] +16:56:34 [ 12] [ 6] [165539] +16:56:34 [ 13] [ 4] [0320] +16:56:34 [ 15] [ 4] [0320] +16:56:34 [ 18] [ 4] [6011] +16:56:34 [ 19] [ 3] [418] +16:56:34 [ 32] [ 6] [180893] +16:56:34 [ 35] [ 32] [6213545000822175=491212012217123] +16:56:34 [ 37] [ 12] [507909270668] +16:56:34 [ 38] [ 6] [825990] +16:56:34 [ 39] [ 2] [00] +16:56:34 [ 41] [ 8] [0262PSLB] +16:56:34 [ 49] [ 3] [418] +16:56:34 [ 54] [ 40] [0001418C0001526339720002418C000152633972] +16:56:34 ============================================================================ +16:56:34 Sending to : +16:56:34 ============================================================================ +16:56:34 + + +waiting on router queue for slot.... +16:56:34 ============================================================================ +16:56:34 Slot Id : <351> +16:56:34 Transaction Type : REQUEST +16:56:34 Received From : +16:56:34 ============================================================================ +16:56:34 FNo. Len. Field Value +16:56:34 ============================================================================ +16:56:34 [ 1] [ 4] [0200] +16:56:34 [ 2] [ 16] [6688990104449309] +16:56:34 [ 3] [ 6] [010000] +16:56:34 [ 4] [ 12] [000060000000] +16:56:34 [ 7] [ 10] [0320165629] +16:56:34 [ 11] [ 6] [807250] +16:56:34 [ 12] [ 6] [165629] +16:56:34 [ 13] [ 4] [0320] +16:56:34 [ 15] [ 4] [0320] +16:56:34 [ 18] [ 4] [6011] +16:56:34 [ 22] [ 3] [900] +16:56:34 [ 25] [ 2] [02] +16:56:34 [ 28] [ 9] [D00002000] +16:56:34 [ 32] [ 6] [621354] +16:56:34 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:56:34 [ 37] [ 12] [507903499633] +16:56:34 [ 41] [ 8] [06002200] +16:56:34 [ 42] [ 15] [NATIVE ] +16:56:34 [ 43] [ 40] [Beng Market Beng LAO] +16:56:34 [ 49] [ 3] [418] +16:56:34 [ 52] [ 16] [E44E90AEE92E23D1] +16:56:34 ============================================================================ +16:56:34 + + +waiting on router queue for slot.... +16:56:34 Sending to : +16:56:34 ============================================================================ +16:56:34 Sending to : +16:56:34 ============================================================================ +16:56:34 ============================================================================ +16:56:34 Slot Id : <361> +16:56:34 Transaction Type : REQUEST +16:56:34 Received From : +16:56:34 ============================================================================ +16:56:34 FNo. Len. Field Value +16:56:34 ============================================================================ +16:56:34 [ 1] [ 4] [0200] +16:56:34 [ 2] [ 16] [6213544002002423] +16:56:34 [ 3] [ 6] [301000] +16:56:34 [ 4] [ 12] [000000000000] +16:56:34 [ 7] [ 10] [0320165655] +16:56:34 [ 11] [ 6] [209103] +16:56:34 [ 12] [ 6] [165201] +16:56:34 [ 13] [ 4] [0320] +16:56:34 [ 14] [ 4] [4912] +16:56:34 [ 15] [ 4] [0320] +16:56:34 [ 18] [ 4] [6011] +16:56:34 [ 19] [ 3] [418] +16:56:34 [ 22] [ 3] [021] +16:56:34 [ 25] [ 2] [01] +16:56:34 [ 28] [ 9] [D00000000] +16:56:34 [ 32] [ 6] [198901] +16:56:34 [ 35] [ 32] [6213544002002423=491212010242235] +16:56:34 [ 37] [ 12] [507916209103] +16:56:34 [ 41] [ 8] [19529001] +16:56:34 [ 42] [ 15] [000000041952901] +16:56:34 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:56:34 [ 49] [ 3] [418] +16:56:34 [ 52] [ 16] [7BB5AB1D562E7512] +16:56:34 ============================================================================ +16:56:34 + + +waiting on router queue for slot.... +16:56:34 Sending to : +16:56:34 ============================================================================ +16:56:34 Sending to : +16:56:34 ============================================================================ +16:56:35 ============================================================================ +16:56:35 Slot Id : <351> +16:56:35 Transaction Type : REQUEST +16:56:35 Received From : +16:56:35 ============================================================================ +16:56:35 FNo. Len. Field Value +16:56:35 ============================================================================ +16:56:35 [ 1] [ 4] [0200] +16:56:35 [ 2] [ 16] [6688990104449309] +16:56:35 [ 3] [ 6] [010000] +16:56:35 [ 4] [ 12] [000060000000] +16:56:35 [ 7] [ 10] [0320165629] +16:56:35 [ 11] [ 6] [807250] +16:56:35 [ 12] [ 6] [165629] +16:56:35 [ 13] [ 4] [0320] +16:56:35 [ 15] [ 4] [0320] +16:56:35 [ 18] [ 4] [6011] +16:56:35 [ 22] [ 3] [900] +16:56:35 [ 25] [ 2] [02] +16:56:35 [ 28] [ 9] [D00002000] +16:56:35 [ 32] [ 6] [621354] +16:56:35 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:56:35 [ 37] [ 12] [507903499633] +16:56:35 [ 41] [ 8] [06002200] +16:56:35 [ 42] [ 15] [NATIVE ] +16:56:35 [ 43] [ 40] [Beng Market Beng LAO] +16:56:35 [ 49] [ 3] [418] +16:56:35 [ 52] [ 16] [E44E90AEE92E23D1] +16:56:35 ============================================================================ +16:56:35 + + +waiting on router queue for slot.... +16:56:35 Sending to : +16:56:35 ============================================================================ +16:56:35 ============================================================================ +16:56:35 Slot Id : <351> +16:56:35 Transaction Type : REQUEST +16:56:35 Received From : +16:56:35 ============================================================================ +16:56:35 FNo. Len. Field Value +16:56:35 ============================================================================ +16:56:35 [ 1] [ 4] [0200] +16:56:35 [ 2] [ 16] [6688990104449309] +16:56:35 [ 3] [ 6] [010000] +16:56:35 [ 4] [ 12] [000060000000] +16:56:35 [ 7] [ 10] [0320165629] +16:56:35 [ 11] [ 6] [807250] +16:56:35 [ 12] [ 6] [165629] +16:56:35 [ 13] [ 4] [0320] +16:56:35 [ 15] [ 4] [0320] +16:56:35 [ 18] [ 4] [6011] +16:56:35 [ 22] [ 3] [900] +16:56:35 [ 25] [ 2] [02] +16:56:35 [ 28] [ 9] [D00002000] +16:56:35 [ 32] [ 6] [621354] +16:56:35 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:56:35 [ 37] [ 12] [507903499633] +16:56:35 [ 41] [ 8] [06002200] +16:56:35 [ 42] [ 15] [NATIVE ] +16:56:35 [ 43] [ 40] [Beng Market Beng LAO] +16:56:35 [ 49] [ 3] [418] +16:56:35 [ 52] [ 16] [421E7DE0E6D73813] +16:56:35 ============================================================================ +16:56:35 + + +waiting on router queue for slot.... +16:56:35 Sending to : <4> +16:56:35 ============================================================================ +16:56:35 ============================================================================ +16:56:35 Slot Id : <361> +16:56:35 Transaction Type : REQUEST +16:56:35 Received From : +16:56:35 ============================================================================ +16:56:35 FNo. Len. Field Value +16:56:35 ============================================================================ +16:56:35 [ 1] [ 4] [0200] +16:56:35 [ 2] [ 16] [6213544002002423] +16:56:35 [ 3] [ 6] [301000] +16:56:35 [ 4] [ 12] [000000000000] +16:56:35 [ 7] [ 10] [0320165655] +16:56:35 [ 11] [ 6] [209103] +16:56:35 [ 12] [ 6] [165201] +16:56:35 [ 13] [ 4] [0320] +16:56:35 [ 14] [ 4] [4912] +16:56:35 [ 15] [ 4] [0320] +16:56:35 [ 18] [ 4] [6011] +16:56:35 [ 19] [ 3] [418] +16:56:35 [ 22] [ 3] [021] +16:56:35 [ 25] [ 2] [01] +16:56:35 [ 28] [ 9] [D00000000] +16:56:35 [ 32] [ 6] [198901] +16:56:35 [ 35] [ 32] [6213544002002423=491212010242235] +16:56:35 [ 37] [ 12] [507916209103] +16:56:35 [ 41] [ 8] [19529001] +16:56:35 [ 42] [ 15] [000000041952901] +16:56:35 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:56:35 [ 49] [ 3] [418] +16:56:35 [ 52] [ 16] [7BB5AB1D562E7512] +16:56:35 ============================================================================ +16:56:35 + + +waiting on router queue for slot.... +16:56:35 Sending to : +16:56:35 ============================================================================ +16:56:35 ============================================================================ +16:56:35 Slot Id : <361> +16:56:35 Transaction Type : REQUEST +16:56:35 Received From : +16:56:35 ============================================================================ +16:56:35 FNo. Len. Field Value +16:56:35 ============================================================================ +16:56:35 [ 1] [ 4] [0200] +16:56:35 [ 2] [ 16] [6213544002002423] +16:56:35 [ 3] [ 6] [301000] +16:56:35 [ 4] [ 12] [000000000000] +16:56:35 [ 7] [ 10] [0320165655] +16:56:35 [ 11] [ 6] [209103] +16:56:35 [ 12] [ 6] [165201] +16:56:35 [ 13] [ 4] [0320] +16:56:35 [ 14] [ 4] [4912] +16:56:35 [ 15] [ 4] [0320] +16:56:35 [ 18] [ 4] [6011] +16:56:35 [ 19] [ 3] [418] +16:56:35 [ 22] [ 3] [021] +16:56:35 [ 25] [ 2] [01] +16:56:35 [ 28] [ 9] [D00000000] +16:56:35 [ 32] [ 6] [198901] +16:56:35 [ 35] [ 32] [6213544002002423=491212010242235] +16:56:35 [ 37] [ 12] [507916209103] +16:56:35 [ 41] [ 8] [19529001] +16:56:35 [ 42] [ 15] [000000041952901] +16:56:35 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:56:35 [ 49] [ 3] [418] +16:56:35 [ 52] [ 16] [6128C5AC51B7C93F] +16:56:35 ============================================================================ +16:56:35 + + +waiting on router queue for slot.... +16:56:35 Sending to : <0> +16:56:35 ============================================================================ +16:56:35 ============================================================================ +16:56:35 Slot Id : <361> +16:56:35 Transaction Type : RESPONSE +16:56:35 Received From : +16:56:35 ============================================================================ +16:56:35 FNo. Len. Field Value +16:56:35 ============================================================================ +16:56:35 [ 1] [ 4] [0210] +16:56:35 [ 2] [ 16] [6213544002002423] +16:56:35 [ 3] [ 6] [301000] +16:56:35 [ 4] [ 12] [000000000000] +16:56:35 [ 7] [ 10] [0320165655] +16:56:35 [ 11] [ 6] [209103] +16:56:35 [ 12] [ 6] [165201] +16:56:35 [ 13] [ 4] [0320] +16:56:35 [ 15] [ 4] [0320] +16:56:35 [ 18] [ 4] [6011] +16:56:35 [ 19] [ 3] [418] +16:56:35 [ 32] [ 6] [198901] +16:56:35 [ 35] [ 32] [6213544002002423=491212010242235] +16:56:35 [ 37] [ 12] [507916209103] +16:56:35 [ 38] [ 6] [323433] +16:56:35 [ 39] [ 2] [00] +16:56:35 [ 41] [ 8] [19529001] +16:56:35 [ 49] [ 3] [418] +16:56:35 [ 54] [ 40] [1001418C0000576528551002418C000057652855] +16:56:35 ============================================================================ +16:56:35 Sending to : +16:56:35 ============================================================================ +16:56:35 + + +waiting on router queue for slot.... +16:56:35 ============================================================================ +16:56:35 Slot Id : <389> +16:56:35 Transaction Type : RESPONSE +16:56:35 Received From : +16:56:35 ============================================================================ +16:56:35 FNo. Len. Field Value +16:56:35 ============================================================================ +16:56:35 [ 1] [ 4] [0210] +16:56:35 [ 2] [ 16] [6213545000822175] +16:56:35 [ 3] [ 6] [010000] +16:56:35 [ 4] [ 12] [000050000000] +16:56:35 [ 7] [ 10] [0320095539] +16:56:35 [ 11] [ 6] [270668] +16:56:35 [ 12] [ 6] [165539] +16:56:35 [ 13] [ 4] [0320] +16:56:35 [ 15] [ 4] [0320] +16:56:35 [ 18] [ 4] [6011] +16:56:35 [ 19] [ 3] [418] +16:56:35 [ 32] [ 6] [180893] +16:56:35 [ 35] [ 32] [6213545000822175=491212012217123] +16:56:35 [ 37] [ 12] [507909270668] +16:56:35 [ 38] [ 6] [825990] +16:56:35 [ 39] [ 2] [00] +16:56:35 [ 41] [ 8] [0262PSLB] +16:56:35 [ 49] [ 3] [418] +16:56:35 [ 54] [ 40] [0001418C0001526339720002418C000152633972] +16:56:35 ============================================================================ +16:56:35 Calculate Source COMM Id = 2 +16:56:35 ============================================================================ +16:56:35 + + +waiting on router queue for slot.... +16:56:36 ============================================================================ +16:56:36 Slot Id : <351> +16:56:36 Transaction Type : RESPONSE +16:56:36 Received From : +16:56:36 ============================================================================ +16:56:36 FNo. Len. Field Value +16:56:36 ============================================================================ +16:56:36 [ 1] [ 4] [0210] +16:56:36 [ 2] [ 16] [6688990104449309] +16:56:36 [ 3] [ 6] [010000] +16:56:36 [ 4] [ 12] [000060000000] +16:56:36 [ 11] [ 6] [807250] +16:56:36 [ 12] [ 6] [165629] +16:56:36 [ 15] [ 4] [0320] +16:56:36 [ 18] [ 4] [6011] +16:56:36 [ 32] [ 6] [621354] +16:56:36 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:56:36 [ 37] [ 12] [507903499633] +16:56:36 [ 38] [ 6] [980157] +16:56:36 [ 39] [ 2] [00] +16:56:36 [ 41] [ 8] [06002200] +16:56:36 [ 49] [ 3] [418] +16:56:36 [ 54] [ 20] [0002418C000002601119] +16:56:36 ============================================================================ +16:56:36 Sending to : +16:56:36 ============================================================================ +16:56:36 + + +waiting on router queue for slot.... +16:56:37 ============================================================================ +16:56:37 Slot Id : <361> +16:56:37 Transaction Type : RESPONSE +16:56:37 Received From : +16:56:37 ============================================================================ +16:56:37 FNo. Len. Field Value +16:56:37 ============================================================================ +16:56:37 [ 1] [ 4] [0210] +16:56:37 [ 2] [ 16] [6213544002002423] +16:56:37 [ 3] [ 6] [301000] +16:56:37 [ 4] [ 12] [000000000000] +16:56:37 [ 7] [ 10] [0320165655] +16:56:37 [ 11] [ 6] [209103] +16:56:37 [ 12] [ 6] [165201] +16:56:37 [ 13] [ 4] [0320] +16:56:37 [ 15] [ 4] [0320] +16:56:37 [ 18] [ 4] [6011] +16:56:37 [ 19] [ 3] [418] +16:56:37 [ 32] [ 6] [198901] +16:56:37 [ 35] [ 32] [6213544002002423=491212010242235] +16:56:37 [ 37] [ 12] [507916209103] +16:56:37 [ 38] [ 6] [323433] +16:56:37 [ 39] [ 2] [00] +16:56:37 [ 41] [ 8] [19529001] +16:56:37 [ 49] [ 3] [418] +16:56:37 [ 54] [ 40] [1001418C0000576528551002418C000057652855] +16:56:37 ============================================================================ +16:56:37 Calculate Source COMM Id = 5 +16:56:37 ============================================================================ +16:56:37 + + +waiting on router queue for slot.... +16:56:39 ============================================================================ +16:56:39 Slot Id : <351> +16:56:39 Transaction Type : RESPONSE +16:56:39 Received From : +16:56:39 ============================================================================ +16:56:39 FNo. Len. Field Value +16:56:39 ============================================================================ +16:56:39 [ 1] [ 4] [0210] +16:56:39 [ 2] [ 16] [6688990104449309] +16:56:39 [ 3] [ 6] [010000] +16:56:39 [ 4] [ 12] [000060000000] +16:56:39 [ 11] [ 6] [807250] +16:56:39 [ 12] [ 6] [165629] +16:56:39 [ 15] [ 4] [0320] +16:56:39 [ 18] [ 4] [6011] +16:56:39 [ 32] [ 6] [621354] +16:56:39 [ 35] [ 37] [6688990104449309=43041231930926600000] +16:56:39 [ 37] [ 12] [507903499633] +16:56:39 [ 38] [ 6] [980157] +16:56:39 [ 39] [ 2] [00] +16:56:39 [ 41] [ 8] [06002200] +16:56:39 [ 49] [ 3] [418] +16:56:39 [ 54] [ 20] [0002418C000002601119] +16:56:39 ============================================================================ +16:56:39 Calculate Source COMM Id = 0 +16:56:39 ============================================================================ +16:56:39 + + +waiting on router queue for slot.... +16:56:39 ============================================================================ +16:56:39 Slot Id : <376> +16:56:39 Transaction Type : REQUEST +16:56:39 Received From : +16:56:39 ============================================================================ +16:56:39 FNo. Len. Field Value +16:56:39 ============================================================================ +16:56:39 [ 1] [ 4] [0200] +16:56:39 [ 2] [ 16] [6213541000657752] +16:56:39 [ 3] [ 6] [301000] +16:56:39 [ 4] [ 12] [000000000000] +16:56:39 [ 7] [ 10] [0320165429] +16:56:39 [ 11] [ 6] [952617] +16:56:39 [ 12] [ 6] [165429] +16:56:39 [ 13] [ 4] [0320] +16:56:39 [ 15] [ 4] [0320] +16:56:39 [ 18] [ 4] [6011] +16:56:39 [ 19] [ 3] [418] +16:56:39 [ 22] [ 3] [021] +16:56:39 [ 25] [ 2] [01] +16:56:39 [ 28] [ 9] [D00000000] +16:56:39 [ 32] [ 6] [668899] +16:56:39 [ 35] [ 32] [6213541000657752=491212015775569] +16:56:39 [ 37] [ 12] [507902531998] +16:56:39 [ 41] [ 8] [03020033] +16:56:39 [ 42] [ 15] [APT ] +16:56:39 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +16:56:39 [ 49] [ 3] [418] +16:56:39 [ 52] [ 16] [1E7758CFC3D9C28C] +16:56:39 ============================================================================ +16:56:39 + + +waiting on router queue for slot.... +16:56:39 Sending to : +16:56:39 ============================================================================ +16:56:39 Sending to : +16:56:39 ============================================================================ +16:56:39 ============================================================================ +16:56:39 Slot Id : <376> +16:56:39 Transaction Type : REQUEST +16:56:39 Received From : +16:56:39 ============================================================================ +16:56:39 FNo. Len. Field Value +16:56:39 ============================================================================ +16:56:39 [ 1] [ 4] [0200] +16:56:39 [ 2] [ 16] [6213541000657752] +16:56:39 [ 3] [ 6] [301000] +16:56:39 [ 4] [ 12] [000000000000] +16:56:39 [ 7] [ 10] [0320165429] +16:56:39 [ 11] [ 6] [952617] +16:56:39 [ 12] [ 6] [165429] +16:56:39 [ 13] [ 4] [0320] +16:56:39 [ 15] [ 4] [0320] +16:56:39 [ 18] [ 4] [6011] +16:56:39 [ 19] [ 3] [418] +16:56:39 [ 22] [ 3] [021] +16:56:39 [ 25] [ 2] [01] +16:56:39 [ 28] [ 9] [D00000000] +16:56:39 [ 32] [ 6] [668899] +16:56:39 [ 35] [ 32] [6213541000657752=491212015775569] +16:56:39 [ 37] [ 12] [507902531998] +16:56:39 [ 41] [ 8] [03020033] +16:56:39 [ 42] [ 15] [APT ] +16:56:39 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +16:56:39 [ 49] [ 3] [418] +16:56:39 [ 52] [ 16] [1E7758CFC3D9C28C] +16:56:39 ============================================================================ +16:56:39 + + +waiting on router queue for slot.... +16:56:39 Sending to : +16:56:39 ============================================================================ +16:56:39 ============================================================================ +16:56:39 Slot Id : <376> +16:56:39 Transaction Type : REQUEST +16:56:39 Received From : +16:56:39 ============================================================================ +16:56:39 FNo. Len. Field Value +16:56:39 ============================================================================ +16:56:39 [ 1] [ 4] [0200] +16:56:39 [ 2] [ 16] [6213541000657752] +16:56:39 [ 3] [ 6] [301000] +16:56:39 [ 4] [ 12] [000000000000] +16:56:39 [ 7] [ 10] [0320165429] +16:56:39 [ 11] [ 6] [952617] +16:56:39 [ 12] [ 6] [165429] +16:56:39 [ 13] [ 4] [0320] +16:56:39 [ 15] [ 4] [0320] +16:56:39 [ 18] [ 4] [6011] +16:56:39 [ 19] [ 3] [418] +16:56:39 [ 22] [ 3] [021] +16:56:39 [ 25] [ 2] [01] +16:56:39 [ 28] [ 9] [D00000000] +16:56:39 [ 32] [ 6] [668899] +16:56:39 [ 35] [ 32] [6213541000657752=491212015775569] +16:56:39 [ 37] [ 12] [507902531998] +16:56:39 [ 41] [ 8] [03020033] +16:56:39 [ 42] [ 15] [APT ] +16:56:39 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +16:56:39 [ 49] [ 3] [418] +16:56:39 [ 52] [ 16] [020F7B3C85D4A1E0] +16:56:39 ============================================================================ +16:56:39 + + +waiting on router queue for slot.... +16:56:39 Sending to : <0> +16:56:39 ============================================================================ +16:56:40 ============================================================================ +16:56:40 Slot Id : <376> +16:56:40 Transaction Type : RESPONSE +16:56:40 Received From : +16:56:40 ============================================================================ +16:56:40 FNo. Len. Field Value +16:56:40 ============================================================================ +16:56:40 [ 1] [ 4] [0210] +16:56:40 [ 2] [ 16] [6213541000657752] +16:56:40 [ 3] [ 6] [301000] +16:56:40 [ 4] [ 12] [000000000000] +16:56:40 [ 7] [ 10] [0320165429] +16:56:40 [ 11] [ 6] [952617] +16:56:40 [ 12] [ 6] [165429] +16:56:40 [ 13] [ 4] [0320] +16:56:40 [ 15] [ 4] [0320] +16:56:40 [ 18] [ 4] [6011] +16:56:40 [ 19] [ 3] [418] +16:56:40 [ 22] [ 3] [021] +16:56:40 [ 32] [ 6] [668899] +16:56:40 [ 35] [ 32] [6213541000657752=491212015775569] +16:56:40 [ 37] [ 12] [507902531998] +16:56:40 [ 38] [ 6] [165635] +16:56:40 [ 39] [ 2] [55] +16:56:40 [ 41] [ 8] [03020033] +16:56:40 [ 49] [ 3] [418] +16:56:40 ============================================================================ +16:56:40 Sending to : +16:56:40 ============================================================================ +16:56:40 + + +waiting on router queue for slot.... +16:56:41 ============================================================================ +16:56:41 Slot Id : <376> +16:56:41 Transaction Type : RESPONSE +16:56:41 Received From : +16:56:41 ============================================================================ +16:56:41 FNo. Len. Field Value +16:56:41 ============================================================================ +16:56:41 [ 1] [ 4] [0210] +16:56:41 [ 2] [ 16] [6213541000657752] +16:56:41 [ 3] [ 6] [301000] +16:56:41 [ 4] [ 12] [000000000000] +16:56:41 [ 7] [ 10] [0320165429] +16:56:41 [ 11] [ 6] [952617] +16:56:41 [ 12] [ 6] [165429] +16:56:41 [ 13] [ 4] [0320] +16:56:41 [ 15] [ 4] [0320] +16:56:41 [ 18] [ 4] [6011] +16:56:41 [ 19] [ 3] [418] +16:56:41 [ 22] [ 3] [021] +16:56:41 [ 32] [ 6] [668899] +16:56:41 [ 35] [ 32] [6213541000657752=491212015775569] +16:56:41 [ 37] [ 12] [507902531998] +16:56:41 [ 38] [ 6] [165635] +16:56:41 [ 39] [ 2] [55] +16:56:41 [ 41] [ 8] [03020033] +16:56:41 [ 49] [ 3] [418] +16:56:41 ============================================================================ +16:56:41 Calculate Source COMM Id = 4 +16:56:41 ============================================================================ +16:56:41 + + +waiting on router queue for slot.... +16:56:44 ============================================================================ +16:56:44 Slot Id : <359> +16:56:44 Transaction Type : REQUEST +16:56:44 Received From : +16:56:44 ============================================================================ +16:56:44 FNo. Len. Field Value +16:56:44 ============================================================================ +16:56:44 [ 1] [ 4] [0200] +16:56:44 [ 2] [ 16] [6213544001970919] +16:56:44 [ 3] [ 6] [010000] +16:56:44 [ 4] [ 12] [000057000000] +16:56:44 [ 7] [ 10] [0320170431] +16:56:44 [ 11] [ 6] [240481] +16:56:44 [ 12] [ 6] [170431] +16:56:44 [ 13] [ 4] [0320] +16:56:44 [ 14] [ 4] [4912] +16:56:44 [ 15] [ 4] [0320] +16:56:44 [ 18] [ 4] [6011] +16:56:44 [ 22] [ 3] [900] +16:56:44 [ 25] [ 2] [02] +16:56:44 [ 28] [ 9] [D00002000] +16:56:44 [ 32] [ 6] [220699] +16:56:44 [ 35] [ 32] [6213544001970919=491212017091354] +16:56:44 [ 37] [ 12] [507900360227] +16:56:44 [ 41] [ 8] [05000300] +16:56:44 [ 42] [ 15] [APTRA ] +16:56:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:56:44 [ 49] [ 3] [418] +16:56:44 [ 52] [ 16] [383D811D59C287E1] +16:56:44 ============================================================================ +16:56:44 + + +waiting on router queue for slot.... +16:56:44 Sending to : +16:56:44 ============================================================================ +16:56:44 Sending to : +16:56:44 ============================================================================ +16:56:44 ============================================================================ +16:56:44 Slot Id : <359> +16:56:44 Transaction Type : REQUEST +16:56:44 Received From : +16:56:44 ============================================================================ +16:56:44 FNo. Len. Field Value +16:56:44 ============================================================================ +16:56:44 [ 1] [ 4] [0200] +16:56:44 [ 2] [ 16] [6213544001970919] +16:56:44 [ 3] [ 6] [010000] +16:56:44 [ 4] [ 12] [000057000000] +16:56:44 [ 7] [ 10] [0320170431] +16:56:44 [ 11] [ 6] [240481] +16:56:44 [ 12] [ 6] [170431] +16:56:44 [ 13] [ 4] [0320] +16:56:44 [ 14] [ 4] [4912] +16:56:44 [ 15] [ 4] [0320] +16:56:44 [ 18] [ 4] [6011] +16:56:44 [ 22] [ 3] [900] +16:56:44 [ 25] [ 2] [02] +16:56:44 [ 28] [ 9] [D00002000] +16:56:44 [ 32] [ 6] [220699] +16:56:44 [ 35] [ 32] [6213544001970919=491212017091354] +16:56:44 [ 37] [ 12] [507900360227] +16:56:44 [ 41] [ 8] [05000300] +16:56:44 [ 42] [ 15] [APTRA ] +16:56:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:56:44 [ 49] [ 3] [418] +16:56:44 [ 52] [ 16] [383D811D59C287E1] +16:56:44 ============================================================================ +16:56:44 + + +waiting on router queue for slot.... +16:56:44 Sending to : +16:56:44 ============================================================================ +16:56:44 ============================================================================ +16:56:44 Slot Id : <359> +16:56:44 Transaction Type : REQUEST +16:56:44 Received From : +16:56:44 ============================================================================ +16:56:44 FNo. Len. Field Value +16:56:44 ============================================================================ +16:56:44 [ 1] [ 4] [0200] +16:56:44 [ 2] [ 16] [6213544001970919] +16:56:44 [ 3] [ 6] [010000] +16:56:44 [ 4] [ 12] [000057000000] +16:56:44 [ 7] [ 10] [0320170431] +16:56:44 [ 11] [ 6] [240481] +16:56:44 [ 12] [ 6] [170431] +16:56:44 [ 13] [ 4] [0320] +16:56:44 [ 14] [ 4] [4912] +16:56:44 [ 15] [ 4] [0320] +16:56:44 [ 18] [ 4] [6011] +16:56:44 [ 22] [ 3] [900] +16:56:44 [ 25] [ 2] [02] +16:56:44 [ 28] [ 9] [D00002000] +16:56:44 [ 32] [ 6] [220699] +16:56:44 [ 35] [ 32] [6213544001970919=491212017091354] +16:56:44 [ 37] [ 12] [507900360227] +16:56:44 [ 41] [ 8] [05000300] +16:56:44 [ 42] [ 15] [APTRA ] +16:56:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:56:44 [ 49] [ 3] [418] +16:56:44 [ 52] [ 16] [A6427A49D098D73B] +16:56:44 ============================================================================ +16:56:44 + + +waiting on router queue for slot.... +16:56:44 Sending to : <0> +16:56:44 ============================================================================ +16:56:45 ============================================================================ +16:56:45 Slot Id : <359> +16:56:45 Transaction Type : RESPONSE +16:56:45 Received From : +16:56:45 ============================================================================ +16:56:45 FNo. Len. Field Value +16:56:45 ============================================================================ +16:56:45 [ 1] [ 4] [0210] +16:56:45 [ 2] [ 16] [6213544001970919] +16:56:45 [ 3] [ 6] [010000] +16:56:45 [ 4] [ 12] [000057000000] +16:56:45 [ 7] [ 10] [0320170431] +16:56:45 [ 11] [ 6] [240481] +16:56:45 [ 12] [ 6] [170431] +16:56:45 [ 13] [ 4] [0320] +16:56:45 [ 15] [ 4] [0320] +16:56:45 [ 18] [ 4] [6011] +16:56:45 [ 32] [ 6] [220699] +16:56:45 [ 35] [ 32] [6213544001970919=491212017091354] +16:56:45 [ 37] [ 12] [507900360227] +16:56:45 [ 38] [ 6] [705294] +16:56:45 [ 39] [ 2] [00] +16:56:45 [ 41] [ 8] [05000300] +16:56:45 [ 49] [ 3] [418] +16:56:45 [ 54] [ 40] [0001418C0000069756910002418C000006975691] +16:56:45 ============================================================================ +16:56:45 Sending to : +16:56:45 ============================================================================ +16:56:45 + + +waiting on router queue for slot.... +16:56:46 ============================================================================ +16:56:46 Slot Id : <359> +16:56:46 Transaction Type : RESPONSE +16:56:46 Received From : +16:56:46 ============================================================================ +16:56:46 FNo. Len. Field Value +16:56:46 ============================================================================ +16:56:46 [ 1] [ 4] [0210] +16:56:46 [ 2] [ 16] [6213544001970919] +16:56:46 [ 3] [ 6] [010000] +16:56:46 [ 4] [ 12] [000057000000] +16:56:46 [ 7] [ 10] [0320170431] +16:56:46 [ 11] [ 6] [240481] +16:56:46 [ 12] [ 6] [170431] +16:56:46 [ 13] [ 4] [0320] +16:56:46 [ 15] [ 4] [0320] +16:56:46 [ 18] [ 4] [6011] +16:56:46 [ 32] [ 6] [220699] +16:56:46 [ 35] [ 32] [6213544001970919=491212017091354] +16:56:46 [ 37] [ 12] [507900360227] +16:56:46 [ 38] [ 6] [705294] +16:56:46 [ 39] [ 2] [00] +16:56:46 [ 41] [ 8] [05000300] +16:56:46 [ 49] [ 3] [418] +16:56:46 [ 54] [ 40] [0001418C0000069756910002418C000006975691] +16:56:46 ============================================================================ +16:56:46 Calculate Source COMM Id = 1 +16:56:46 ============================================================================ +16:56:46 + + +waiting on router queue for slot.... +16:56:46 ============================================================================ +16:56:46 Slot Id : <383> +16:56:46 Transaction Type : REQUEST +16:56:46 Received From : +16:56:46 ============================================================================ +16:56:46 FNo. Len. Field Value +16:56:46 ============================================================================ +16:56:46 [ 1] [ 4] [0800] +16:56:46 [ 7] [ 10] [0320095553] +16:56:46 [ 11] [ 6] [157340] +16:56:46 [ 70] [ 3] [301] +16:56:46 ============================================================================ +16:56:46 + + +waiting on router queue for slot.... +16:56:46 Sending to : +16:56:46 ============================================================================ +16:56:46 ============================================================================ +16:56:46 Slot Id : <383> +16:56:46 Transaction Type : RESPONSE +16:56:46 Received From : +16:56:46 ============================================================================ +16:56:46 FNo. Len. Field Value +16:56:46 ============================================================================ +16:56:46 [ 1] [ 4] [0810] +16:56:46 [ 7] [ 10] [0320095553] +16:56:46 [ 11] [ 6] [157340] +16:56:46 [ 39] [ 2] [00] +16:56:46 [ 70] [ 3] [301] +16:56:46 ============================================================================ +16:56:46 Calculate Source COMM Id = 2 +16:56:46 ============================================================================ +16:56:46 + + +waiting on router queue for slot.... +16:57:02 ============================================================================ +16:57:02 Slot Id : <410> +16:57:02 Transaction Type : REQUEST +16:57:02 Received From : +16:57:02 ============================================================================ +16:57:02 FNo. Len. Field Value +16:57:02 ============================================================================ +16:57:02 [ 1] [ 4] [0800] +16:57:02 [ 7] [ 10] [0320095609] +16:57:02 [ 11] [ 6] [157341] +16:57:02 [ 70] [ 3] [301] +16:57:02 ============================================================================ +16:57:02 + + +waiting on router queue for slot.... +16:57:02 Sending to : +16:57:02 ============================================================================ +16:57:02 ============================================================================ +16:57:02 Slot Id : <410> +16:57:02 Transaction Type : RESPONSE +16:57:02 Received From : +16:57:02 ============================================================================ +16:57:02 FNo. Len. Field Value +16:57:02 ============================================================================ +16:57:02 [ 1] [ 4] [0810] +16:57:02 [ 7] [ 10] [0320095609] +16:57:02 [ 11] [ 6] [157341] +16:57:02 [ 39] [ 2] [00] +16:57:02 [ 70] [ 3] [301] +16:57:02 ============================================================================ +16:57:02 Calculate Source COMM Id = 2 +16:57:02 ============================================================================ +16:57:02 + + +waiting on router queue for slot.... +16:57:05 ============================================================================ +16:57:05 Slot Id : <393> +16:57:05 Transaction Type : REQUEST +16:57:05 Received From : +16:57:05 ============================================================================ +16:57:05 FNo. Len. Field Value +16:57:05 ============================================================================ +16:57:05 [ 1] [ 4] [0200] +16:57:05 [ 2] [ 16] [6213544001530408] +16:57:05 [ 3] [ 6] [010000] +16:57:05 [ 4] [ 12] [000048000000] +16:57:05 [ 7] [ 10] [0320165455] +16:57:05 [ 11] [ 6] [952626] +16:57:05 [ 12] [ 6] [165455] +16:57:05 [ 13] [ 4] [0320] +16:57:05 [ 15] [ 4] [0320] +16:57:05 [ 18] [ 4] [6011] +16:57:05 [ 19] [ 3] [418] +16:57:05 [ 22] [ 3] [021] +16:57:05 [ 25] [ 2] [01] +16:57:05 [ 28] [ 9] [D00002000] +16:57:05 [ 32] [ 6] [668899] +16:57:05 [ 35] [ 32] [6213544001530408=491212013040610] +16:57:05 [ 37] [ 12] [507902025639] +16:57:05 [ 41] [ 8] [03414002] +16:57:05 [ 42] [ 15] [APT ] +16:57:05 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:57:05 [ 49] [ 3] [418] +16:57:05 [ 52] [ 16] [B503503BDB0067B1] +16:57:05 ============================================================================ +16:57:05 + + +waiting on router queue for slot.... +16:57:05 Sending to : +16:57:05 ============================================================================ +16:57:05 Sending to : +16:57:05 ============================================================================ +16:57:06 ============================================================================ +16:57:06 Slot Id : <393> +16:57:06 Transaction Type : REQUEST +16:57:06 Received From : +16:57:06 ============================================================================ +16:57:06 FNo. Len. Field Value +16:57:06 ============================================================================ +16:57:06 [ 1] [ 4] [0200] +16:57:06 [ 2] [ 16] [6213544001530408] +16:57:06 [ 3] [ 6] [010000] +16:57:06 [ 4] [ 12] [000048000000] +16:57:06 [ 7] [ 10] [0320165455] +16:57:06 [ 11] [ 6] [952626] +16:57:06 [ 12] [ 6] [165455] +16:57:06 [ 13] [ 4] [0320] +16:57:06 [ 15] [ 4] [0320] +16:57:06 [ 18] [ 4] [6011] +16:57:06 [ 19] [ 3] [418] +16:57:06 [ 22] [ 3] [021] +16:57:06 [ 25] [ 2] [01] +16:57:06 [ 28] [ 9] [D00002000] +16:57:06 [ 32] [ 6] [668899] +16:57:06 [ 35] [ 32] [6213544001530408=491212013040610] +16:57:06 [ 37] [ 12] [507902025639] +16:57:06 [ 41] [ 8] [03414002] +16:57:06 [ 42] [ 15] [APT ] +16:57:06 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:57:06 [ 49] [ 3] [418] +16:57:06 [ 52] [ 16] [B503503BDB0067B1] +16:57:06 ============================================================================ +16:57:06 + + +waiting on router queue for slot.... +16:57:06 Sending to : +16:57:06 ============================================================================ +16:57:06 ============================================================================ +16:57:06 Slot Id : <393> +16:57:06 Transaction Type : REQUEST +16:57:06 Received From : +16:57:06 ============================================================================ +16:57:06 FNo. Len. Field Value +16:57:06 ============================================================================ +16:57:06 [ 1] [ 4] [0200] +16:57:06 [ 2] [ 16] [6213544001530408] +16:57:06 [ 3] [ 6] [010000] +16:57:06 [ 4] [ 12] [000048000000] +16:57:06 [ 7] [ 10] [0320165455] +16:57:06 [ 11] [ 6] [952626] +16:57:06 [ 12] [ 6] [165455] +16:57:06 [ 13] [ 4] [0320] +16:57:06 [ 15] [ 4] [0320] +16:57:06 [ 18] [ 4] [6011] +16:57:06 [ 19] [ 3] [418] +16:57:06 [ 22] [ 3] [021] +16:57:06 [ 25] [ 2] [01] +16:57:06 [ 28] [ 9] [D00002000] +16:57:06 [ 32] [ 6] [668899] +16:57:06 [ 35] [ 32] [6213544001530408=491212013040610] +16:57:06 [ 37] [ 12] [507902025639] +16:57:06 [ 41] [ 8] [03414002] +16:57:06 [ 42] [ 15] [APT ] +16:57:06 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:57:06 [ 49] [ 3] [418] +16:57:06 [ 52] [ 16] [2DCF5B444289128A] +16:57:06 ============================================================================ +16:57:06 + + +waiting on router queue for slot.... +16:57:06 Sending to : <0> +16:57:06 ============================================================================ +16:57:06 ============================================================================ +16:57:06 Slot Id : <393> +16:57:06 Transaction Type : RESPONSE +16:57:06 Received From : +16:57:06 ============================================================================ +16:57:06 FNo. Len. Field Value +16:57:06 ============================================================================ +16:57:06 [ 1] [ 4] [0210] +16:57:06 [ 2] [ 16] [6213544001530408] +16:57:06 [ 3] [ 6] [010000] +16:57:06 [ 4] [ 12] [000048000000] +16:57:06 [ 7] [ 10] [0320165455] +16:57:06 [ 11] [ 6] [952626] +16:57:06 [ 12] [ 6] [165455] +16:57:06 [ 13] [ 4] [0320] +16:57:06 [ 15] [ 4] [0320] +16:57:06 [ 18] [ 4] [6011] +16:57:06 [ 19] [ 3] [418] +16:57:06 [ 32] [ 6] [668899] +16:57:06 [ 35] [ 32] [6213544001530408=491212013040610] +16:57:06 [ 37] [ 12] [507902025639] +16:57:06 [ 38] [ 6] [372482] +16:57:06 [ 39] [ 2] [00] +16:57:06 [ 41] [ 8] [03414002] +16:57:06 [ 49] [ 3] [418] +16:57:06 [ 54] [ 40] [0001418C0000064882570002418C000006488257] +16:57:06 ============================================================================ +16:57:06 Sending to : +16:57:06 ============================================================================ +16:57:06 + + +waiting on router queue for slot.... +16:57:08 ============================================================================ +16:57:08 Slot Id : <393> +16:57:08 Transaction Type : RESPONSE +16:57:08 Received From : +16:57:08 ============================================================================ +16:57:08 FNo. Len. Field Value +16:57:08 ============================================================================ +16:57:08 [ 1] [ 4] [0210] +16:57:08 [ 2] [ 16] [6213544001530408] +16:57:08 [ 3] [ 6] [010000] +16:57:08 [ 4] [ 12] [000048000000] +16:57:08 [ 7] [ 10] [0320165455] +16:57:08 [ 11] [ 6] [952626] +16:57:08 [ 12] [ 6] [165455] +16:57:08 [ 13] [ 4] [0320] +16:57:08 [ 15] [ 4] [0320] +16:57:08 [ 18] [ 4] [6011] +16:57:08 [ 19] [ 3] [418] +16:57:08 [ 32] [ 6] [668899] +16:57:08 [ 35] [ 32] [6213544001530408=491212013040610] +16:57:08 [ 37] [ 12] [507902025639] +16:57:08 [ 38] [ 6] [372482] +16:57:08 [ 39] [ 2] [00] +16:57:08 [ 41] [ 8] [03414002] +16:57:08 [ 49] [ 3] [418] +16:57:08 [ 54] [ 40] [0001418C0000064882570002418C000006488257] +16:57:08 ============================================================================ +16:57:08 Calculate Source COMM Id = 4 +16:57:08 ============================================================================ +16:57:08 + + +waiting on router queue for slot.... +16:57:10 ============================================================================ +16:57:10 Slot Id : <400> +16:57:10 Transaction Type : REQUEST +16:57:10 Received From : +16:57:10 ============================================================================ +16:57:10 FNo. Len. Field Value +16:57:10 ============================================================================ +16:57:10 [ 1] [ 4] [0800] +16:57:10 [ 7] [ 10] [0321000858] +16:57:10 [ 11] [ 6] [170858] +16:57:10 [ 37] [ 12] [57917170858] +16:57:10 [ 70] [ 3] [301] +16:57:10 ============================================================================ +16:57:10 + + +waiting on router queue for slot.... +16:57:10 Sending to : +16:57:10 ============================================================================ +16:57:10 ============================================================================ +16:57:10 Slot Id : <400> +16:57:10 Transaction Type : RESPONSE +16:57:10 Received From : +16:57:10 ============================================================================ +16:57:10 FNo. Len. Field Value +16:57:10 ============================================================================ +16:57:10 [ 1] [ 4] [0810] +16:57:10 [ 7] [ 10] [0321000858] +16:57:10 [ 11] [ 6] [170858] +16:57:10 [ 37] [ 12] [579171708580] +16:57:10 [ 39] [ 2] [00] +16:57:10 [ 70] [ 3] [810] +16:57:10 ============================================================================ +16:57:10 Calculate Source COMM Id = 6 +16:57:10 ============================================================================ +16:57:10 + + +waiting on router queue for slot.... +16:57:12 ============================================================================ +16:57:12 Slot Id : <397> +16:57:12 Transaction Type : REQUEST +16:57:12 Received From : +16:57:12 ============================================================================ +16:57:12 FNo. Len. Field Value +16:57:12 ============================================================================ +16:57:12 [ 1] [ 4] [0200] +16:57:12 [ 2] [ 16] [6213545000325484] +16:57:12 [ 3] [ 6] [010000] +16:57:12 [ 4] [ 12] [000010000000] +16:57:12 [ 7] [ 10] [0320095618] +16:57:12 [ 11] [ 6] [270674] +16:57:12 [ 12] [ 6] [165618] +16:57:12 [ 13] [ 4] [0320] +16:57:12 [ 14] [ 4] [4912] +16:57:12 [ 15] [ 4] [0320] +16:57:12 [ 18] [ 4] [6011] +16:57:12 [ 19] [ 3] [418] +16:57:12 [ 22] [ 3] [021] +16:57:12 [ 25] [ 2] [01] +16:57:12 [ 28] [ 9] [D00002000] +16:57:12 [ 32] [ 6] [180893] +16:57:12 [ 35] [ 32] [6213545000325484=491212012548244] +16:57:12 [ 37] [ 12] [507909270674] +16:57:12 [ 41] [ 8] [0401XSBR] +16:57:12 [ 42] [ 15] [999999 ] +16:57:12 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:57:12 [ 49] [ 3] [418] +16:57:12 [ 52] [ 16] [A1FF42B76B323517] +16:57:12 ============================================================================ +16:57:12 + + +waiting on router queue for slot.... +16:57:12 Sending to : +16:57:12 ============================================================================ +16:57:12 Sending to : +16:57:12 ============================================================================ +16:57:12 ============================================================================ +16:57:12 Slot Id : <397> +16:57:12 Transaction Type : REQUEST +16:57:12 Received From : +16:57:12 ============================================================================ +16:57:12 FNo. Len. Field Value +16:57:12 ============================================================================ +16:57:12 [ 1] [ 4] [0200] +16:57:12 [ 2] [ 16] [6213545000325484] +16:57:12 [ 3] [ 6] [010000] +16:57:12 [ 4] [ 12] [000010000000] +16:57:12 [ 7] [ 10] [0320095618] +16:57:12 [ 11] [ 6] [270674] +16:57:12 [ 12] [ 6] [165618] +16:57:12 [ 13] [ 4] [0320] +16:57:12 [ 14] [ 4] [4912] +16:57:12 [ 15] [ 4] [0320] +16:57:12 [ 18] [ 4] [6011] +16:57:12 [ 19] [ 3] [418] +16:57:12 [ 22] [ 3] [021] +16:57:12 [ 25] [ 2] [01] +16:57:12 [ 28] [ 9] [D00002000] +16:57:12 [ 32] [ 6] [180893] +16:57:12 [ 35] [ 32] [6213545000325484=491212012548244] +16:57:12 [ 37] [ 12] [507909270674] +16:57:12 [ 41] [ 8] [0401XSBR] +16:57:12 [ 42] [ 15] [999999 ] +16:57:12 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:57:12 [ 49] [ 3] [418] +16:57:12 [ 52] [ 16] [A1FF42B76B323517] +16:57:12 ============================================================================ +16:57:12 + + +waiting on router queue for slot.... +16:57:12 Sending to : +16:57:12 ============================================================================ +16:57:12 ============================================================================ +16:57:12 Slot Id : <397> +16:57:12 Transaction Type : REQUEST +16:57:12 Received From : +16:57:12 ============================================================================ +16:57:12 FNo. Len. Field Value +16:57:12 ============================================================================ +16:57:12 [ 1] [ 4] [0200] +16:57:12 [ 2] [ 16] [6213545000325484] +16:57:12 [ 3] [ 6] [010000] +16:57:12 [ 4] [ 12] [000010000000] +16:57:12 [ 7] [ 10] [0320095618] +16:57:12 [ 11] [ 6] [270674] +16:57:12 [ 12] [ 6] [165618] +16:57:12 [ 13] [ 4] [0320] +16:57:12 [ 14] [ 4] [4912] +16:57:12 [ 15] [ 4] [0320] +16:57:12 [ 18] [ 4] [6011] +16:57:12 [ 19] [ 3] [418] +16:57:12 [ 22] [ 3] [021] +16:57:12 [ 25] [ 2] [01] +16:57:12 [ 28] [ 9] [D00002000] +16:57:12 [ 32] [ 6] [180893] +16:57:12 [ 35] [ 32] [6213545000325484=491212012548244] +16:57:12 [ 37] [ 12] [507909270674] +16:57:12 [ 41] [ 8] [0401XSBR] +16:57:12 [ 42] [ 15] [999999 ] +16:57:12 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +16:57:12 [ 49] [ 3] [418] +16:57:12 [ 52] [ 16] [C613D29C570F794F] +16:57:12 ============================================================================ +16:57:12 + + +waiting on router queue for slot.... +16:57:12 Sending to : <0> +16:57:12 ============================================================================ +16:57:12 ============================================================================ +16:57:12 Slot Id : <395> +16:57:12 Transaction Type : REQUEST +16:57:12 Received From : +16:57:12 ============================================================================ +16:57:12 FNo. Len. Field Value +16:57:12 ============================================================================ +16:57:12 [ 1] [ 4] [0800] +16:57:12 [ 7] [ 10] [0320095619] +16:57:12 [ 11] [ 6] [157342] +16:57:12 [ 70] [ 3] [301] +16:57:12 ============================================================================ +16:57:12 + + +waiting on router queue for slot.... +16:57:12 Sending to : +16:57:12 ============================================================================ +16:57:12 ============================================================================ +16:57:12 Slot Id : <395> +16:57:12 Transaction Type : RESPONSE +16:57:12 Received From : +16:57:12 ============================================================================ +16:57:12 FNo. Len. Field Value +16:57:12 ============================================================================ +16:57:12 [ 1] [ 4] [0810] +16:57:12 [ 7] [ 10] [0320095619] +16:57:12 [ 11] [ 6] [157342] +16:57:12 [ 39] [ 2] [00] +16:57:12 [ 70] [ 3] [301] +16:57:12 ============================================================================ +16:57:12 Calculate Source COMM Id = 2 +16:57:12 ============================================================================ +16:57:12 + + +waiting on router queue for slot.... +16:57:13 ============================================================================ +16:57:13 Slot Id : <397> +16:57:13 Transaction Type : RESPONSE +16:57:13 Received From : +16:57:13 ============================================================================ +16:57:13 FNo. Len. Field Value +16:57:13 ============================================================================ +16:57:13 [ 1] [ 4] [0210] +16:57:13 [ 2] [ 16] [6213545000325484] +16:57:13 [ 3] [ 6] [010000] +16:57:13 [ 4] [ 12] [000010000000] +16:57:13 [ 7] [ 10] [0320095618] +16:57:13 [ 11] [ 6] [270674] +16:57:13 [ 12] [ 6] [165618] +16:57:13 [ 13] [ 4] [0320] +16:57:13 [ 15] [ 4] [0320] +16:57:13 [ 18] [ 4] [6011] +16:57:13 [ 19] [ 3] [418] +16:57:13 [ 32] [ 6] [180893] +16:57:13 [ 35] [ 32] [6213545000325484=491212012548244] +16:57:13 [ 37] [ 12] [507909270674] +16:57:13 [ 38] [ 6] [498289] +16:57:13 [ 39] [ 2] [00] +16:57:13 [ 41] [ 8] [0401XSBR] +16:57:13 [ 49] [ 3] [418] +16:57:13 [ 54] [ 40] [0001418C0002890252120002418C000289025212] +16:57:13 ============================================================================ +16:57:13 Sending to : +16:57:13 ============================================================================ +16:57:13 + + +waiting on router queue for slot.... +16:57:14 ============================================================================ +16:57:14 Slot Id : <397> +16:57:14 Transaction Type : RESPONSE +16:57:14 Received From : +16:57:14 ============================================================================ +16:57:14 FNo. Len. Field Value +16:57:14 ============================================================================ +16:57:14 [ 1] [ 4] [0210] +16:57:14 [ 2] [ 16] [6213545000325484] +16:57:14 [ 3] [ 6] [010000] +16:57:14 [ 4] [ 12] [000010000000] +16:57:14 [ 7] [ 10] [0320095618] +16:57:14 [ 11] [ 6] [270674] +16:57:14 [ 12] [ 6] [165618] +16:57:14 [ 13] [ 4] [0320] +16:57:14 [ 15] [ 4] [0320] +16:57:14 [ 18] [ 4] [6011] +16:57:14 [ 19] [ 3] [418] +16:57:14 [ 32] [ 6] [180893] +16:57:14 [ 35] [ 32] [6213545000325484=491212012548244] +16:57:14 [ 37] [ 12] [507909270674] +16:57:14 [ 38] [ 6] [498289] +16:57:14 [ 39] [ 2] [00] +16:57:14 [ 41] [ 8] [0401XSBR] +16:57:14 [ 49] [ 3] [418] +16:57:14 [ 54] [ 40] [0001418C0002890252120002418C000289025212] +16:57:14 ============================================================================ +16:57:14 Calculate Source COMM Id = 2 +16:57:14 ============================================================================ +16:57:14 + + +waiting on router queue for slot.... +16:57:16 ============================================================================ +16:57:16 Slot Id : <414> +16:57:16 Transaction Type : REQUEST +16:57:16 Received From : +16:57:16 ============================================================================ +16:57:16 FNo. Len. Field Value +16:57:16 ============================================================================ +16:57:16 [ 1] [ 4] [0200] +16:57:16 [ 2] [ 16] [6213544002002423] +16:57:16 [ 3] [ 6] [011000] +16:57:16 [ 4] [ 12] [000050000000] +16:57:16 [ 7] [ 10] [0320165736] +16:57:16 [ 11] [ 6] [209105] +16:57:16 [ 12] [ 6] [165242] +16:57:16 [ 13] [ 4] [0320] +16:57:16 [ 14] [ 4] [4912] +16:57:16 [ 15] [ 4] [0320] +16:57:16 [ 18] [ 4] [6011] +16:57:16 [ 19] [ 3] [418] +16:57:16 [ 22] [ 3] [021] +16:57:16 [ 25] [ 2] [01] +16:57:16 [ 28] [ 9] [D00002000] +16:57:16 [ 32] [ 6] [198901] +16:57:16 [ 35] [ 32] [6213544002002423=491212010242235] +16:57:16 [ 37] [ 12] [507916209105] +16:57:16 [ 41] [ 8] [19529001] +16:57:16 [ 42] [ 15] [000000041952901] +16:57:16 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:57:16 [ 49] [ 3] [418] +16:57:16 [ 52] [ 16] [7BB5AB1D562E7512] +16:57:16 ============================================================================ +16:57:16 + + +waiting on router queue for slot.... +16:57:16 Sending to : +16:57:16 ============================================================================ +16:57:16 Sending to : +16:57:16 ============================================================================ +16:57:16 ============================================================================ +16:57:16 Slot Id : <414> +16:57:16 Transaction Type : REQUEST +16:57:16 Received From : +16:57:16 ============================================================================ +16:57:16 FNo. Len. Field Value +16:57:16 ============================================================================ +16:57:16 [ 1] [ 4] [0200] +16:57:16 [ 2] [ 16] [6213544002002423] +16:57:16 [ 3] [ 6] [011000] +16:57:16 [ 4] [ 12] [000050000000] +16:57:16 [ 7] [ 10] [0320165736] +16:57:16 [ 11] [ 6] [209105] +16:57:16 [ 12] [ 6] [165242] +16:57:16 [ 13] [ 4] [0320] +16:57:16 [ 14] [ 4] [4912] +16:57:16 [ 15] [ 4] [0320] +16:57:16 [ 18] [ 4] [6011] +16:57:16 [ 19] [ 3] [418] +16:57:16 [ 22] [ 3] [021] +16:57:16 [ 25] [ 2] [01] +16:57:16 [ 28] [ 9] [D00002000] +16:57:16 [ 32] [ 6] [198901] +16:57:16 [ 35] [ 32] [6213544002002423=491212010242235] +16:57:16 [ 37] [ 12] [507916209105] +16:57:16 [ 41] [ 8] [19529001] +16:57:16 [ 42] [ 15] [000000041952901] +16:57:16 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:57:16 [ 49] [ 3] [418] +16:57:16 [ 52] [ 16] [7BB5AB1D562E7512] +16:57:16 ============================================================================ +16:57:16 + + +waiting on router queue for slot.... +16:57:16 Sending to : +16:57:16 ============================================================================ +16:57:16 ============================================================================ +16:57:16 Slot Id : <414> +16:57:16 Transaction Type : REQUEST +16:57:16 Received From : +16:57:16 ============================================================================ +16:57:16 FNo. Len. Field Value +16:57:16 ============================================================================ +16:57:16 [ 1] [ 4] [0200] +16:57:16 [ 2] [ 16] [6213544002002423] +16:57:16 [ 3] [ 6] [011000] +16:57:16 [ 4] [ 12] [000050000000] +16:57:16 [ 7] [ 10] [0320165736] +16:57:16 [ 11] [ 6] [209105] +16:57:16 [ 12] [ 6] [165242] +16:57:16 [ 13] [ 4] [0320] +16:57:16 [ 14] [ 4] [4912] +16:57:16 [ 15] [ 4] [0320] +16:57:16 [ 18] [ 4] [6011] +16:57:16 [ 19] [ 3] [418] +16:57:16 [ 22] [ 3] [021] +16:57:16 [ 25] [ 2] [01] +16:57:16 [ 28] [ 9] [D00002000] +16:57:16 [ 32] [ 6] [198901] +16:57:16 [ 35] [ 32] [6213544002002423=491212010242235] +16:57:16 [ 37] [ 12] [507916209105] +16:57:16 [ 41] [ 8] [19529001] +16:57:16 [ 42] [ 15] [000000041952901] +16:57:16 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:57:16 [ 49] [ 3] [418] +16:57:16 [ 52] [ 16] [6128C5AC51B7C93F] +16:57:16 ============================================================================ +16:57:16 + + +waiting on router queue for slot.... +16:57:16 Sending to : <0> +16:57:16 ============================================================================ +16:57:17 ============================================================================ +16:57:17 Slot Id : <414> +16:57:17 Transaction Type : RESPONSE +16:57:17 Received From : +16:57:17 ============================================================================ +16:57:17 FNo. Len. Field Value +16:57:17 ============================================================================ +16:57:17 [ 1] [ 4] [0210] +16:57:17 [ 2] [ 16] [6213544002002423] +16:57:17 [ 3] [ 6] [011000] +16:57:17 [ 4] [ 12] [000050000000] +16:57:17 [ 7] [ 10] [0320165736] +16:57:17 [ 11] [ 6] [209105] +16:57:17 [ 12] [ 6] [165242] +16:57:17 [ 13] [ 4] [0320] +16:57:17 [ 15] [ 4] [0320] +16:57:17 [ 18] [ 4] [6011] +16:57:17 [ 19] [ 3] [418] +16:57:17 [ 32] [ 6] [198901] +16:57:17 [ 35] [ 32] [6213544002002423=491212010242235] +16:57:17 [ 37] [ 12] [507916209105] +16:57:17 [ 38] [ 6] [847473] +16:57:17 [ 39] [ 2] [00] +16:57:17 [ 41] [ 8] [19529001] +16:57:17 [ 49] [ 3] [418] +16:57:17 [ 54] [ 40] [1001418C0000074528551002418C000007452855] +16:57:17 ============================================================================ +16:57:17 Sending to : +16:57:17 ============================================================================ +16:57:17 + + +waiting on router queue for slot.... +16:57:17 ============================================================================ +16:57:17 Slot Id : <413> +16:57:17 Transaction Type : REQUEST +16:57:17 Received From : +16:57:17 ============================================================================ +16:57:17 FNo. Len. Field Value +16:57:17 ============================================================================ +16:57:17 [ 1] [ 4] [0200] +16:57:17 [ 2] [ 16] [6688990050051133] +16:57:17 [ 3] [ 6] [012000] +16:57:17 [ 4] [ 12] [000010000000] +16:57:17 [ 7] [ 10] [0320165713] +16:57:17 [ 11] [ 6] [807461] +16:57:17 [ 12] [ 6] [165713] +16:57:17 [ 13] [ 4] [0320] +16:57:17 [ 15] [ 4] [0320] +16:57:17 [ 18] [ 4] [6011] +16:57:17 [ 22] [ 3] [900] +16:57:17 [ 25] [ 2] [02] +16:57:17 [ 28] [ 9] [D00002000] +16:57:17 [ 32] [ 6] [621354] +16:57:17 [ 35] [ 37] [6688990050051133=98041261306955700000] +16:57:17 [ 37] [ 12] [507905335247] +16:57:17 [ 41] [ 8] [05004700] +16:57:17 [ 42] [ 15] [NATIVE ] +16:57:17 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +16:57:17 [ 49] [ 3] [418] +16:57:17 [ 52] [ 16] [F54DBD06A77F7BF1] +16:57:17 ============================================================================ +16:57:17 + + +waiting on router queue for slot.... +16:57:17 Sending to : +16:57:17 ============================================================================ +16:57:17 Sending to : +16:57:17 ============================================================================ +16:57:18 ============================================================================ +16:57:18 Slot Id : <413> +16:57:18 Transaction Type : REQUEST +16:57:18 Received From : +16:57:18 ============================================================================ +16:57:18 FNo. Len. Field Value +16:57:18 ============================================================================ +16:57:18 [ 1] [ 4] [0200] +16:57:18 [ 2] [ 16] [6688990050051133] +16:57:18 [ 3] [ 6] [012000] +16:57:18 [ 4] [ 12] [000010000000] +16:57:18 [ 7] [ 10] [0320165713] +16:57:18 [ 11] [ 6] [807461] +16:57:18 [ 12] [ 6] [165713] +16:57:18 [ 13] [ 4] [0320] +16:57:18 [ 15] [ 4] [0320] +16:57:18 [ 18] [ 4] [6011] +16:57:18 [ 22] [ 3] [900] +16:57:18 [ 25] [ 2] [02] +16:57:18 [ 28] [ 9] [D00002000] +16:57:18 [ 32] [ 6] [621354] +16:57:18 [ 35] [ 37] [6688990050051133=98041261306955700000] +16:57:18 [ 37] [ 12] [507905335247] +16:57:18 [ 41] [ 8] [05004700] +16:57:18 [ 42] [ 15] [NATIVE ] +16:57:18 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +16:57:18 [ 49] [ 3] [418] +16:57:18 [ 52] [ 16] [F54DBD06A77F7BF1] +16:57:18 ============================================================================ +16:57:18 + + +waiting on router queue for slot.... +16:57:18 Sending to : +16:57:18 ============================================================================ +16:57:18 ============================================================================ +16:57:18 Slot Id : <413> +16:57:18 Transaction Type : REQUEST +16:57:18 Received From : +16:57:18 ============================================================================ +16:57:18 FNo. Len. Field Value +16:57:18 ============================================================================ +16:57:18 [ 1] [ 4] [0200] +16:57:18 [ 2] [ 16] [6688990050051133] +16:57:18 [ 3] [ 6] [012000] +16:57:18 [ 4] [ 12] [000010000000] +16:57:18 [ 7] [ 10] [0320165713] +16:57:18 [ 11] [ 6] [807461] +16:57:18 [ 12] [ 6] [165713] +16:57:18 [ 13] [ 4] [0320] +16:57:18 [ 15] [ 4] [0320] +16:57:18 [ 18] [ 4] [6011] +16:57:18 [ 22] [ 3] [900] +16:57:18 [ 25] [ 2] [02] +16:57:18 [ 28] [ 9] [D00002000] +16:57:18 [ 32] [ 6] [621354] +16:57:18 [ 35] [ 37] [6688990050051133=98041261306955700000] +16:57:18 [ 37] [ 12] [507905335247] +16:57:18 [ 41] [ 8] [05004700] +16:57:18 [ 42] [ 15] [NATIVE ] +16:57:18 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +16:57:18 [ 49] [ 3] [418] +16:57:18 [ 52] [ 16] [4E6A47965A507894] +16:57:18 ============================================================================ +16:57:18 + + +waiting on router queue for slot.... +16:57:18 Sending to : <4> +16:57:18 ============================================================================ +16:57:18 ============================================================================ +16:57:18 Slot Id : <414> +16:57:18 Transaction Type : RESPONSE +16:57:18 Received From : +16:57:18 ============================================================================ +16:57:18 FNo. Len. Field Value +16:57:18 ============================================================================ +16:57:18 [ 1] [ 4] [0210] +16:57:18 [ 2] [ 16] [6213544002002423] +16:57:18 [ 3] [ 6] [011000] +16:57:18 [ 4] [ 12] [000050000000] +16:57:18 [ 7] [ 10] [0320165736] +16:57:18 [ 11] [ 6] [209105] +16:57:18 [ 12] [ 6] [165242] +16:57:18 [ 13] [ 4] [0320] +16:57:18 [ 15] [ 4] [0320] +16:57:18 [ 18] [ 4] [6011] +16:57:18 [ 19] [ 3] [418] +16:57:18 [ 32] [ 6] [198901] +16:57:18 [ 35] [ 32] [6213544002002423=491212010242235] +16:57:18 [ 37] [ 12] [507916209105] +16:57:18 [ 38] [ 6] [847473] +16:57:18 [ 39] [ 2] [00] +16:57:18 [ 41] [ 8] [19529001] +16:57:18 [ 49] [ 3] [418] +16:57:18 [ 54] [ 40] [1001418C0000074528551002418C000007452855] +16:57:18 ============================================================================ +16:57:18 Calculate Source COMM Id = 5 +16:57:18 ============================================================================ +16:57:18 + + +waiting on router queue for slot.... +16:57:19 ============================================================================ +16:57:19 Slot Id : <413> +16:57:19 Transaction Type : RESPONSE +16:57:19 Received From : +16:57:19 ============================================================================ +16:57:19 FNo. Len. Field Value +16:57:19 ============================================================================ +16:57:19 [ 1] [ 4] [0210] +16:57:19 [ 2] [ 16] [6688990050051133] +16:57:19 [ 3] [ 6] [012000] +16:57:19 [ 4] [ 12] [000010000000] +16:57:19 [ 11] [ 6] [807461] +16:57:19 [ 12] [ 6] [165713] +16:57:19 [ 15] [ 4] [0320] +16:57:19 [ 18] [ 4] [6011] +16:57:19 [ 32] [ 6] [621354] +16:57:19 [ 35] [ 37] [6688990050051133=98041261306955700000] +16:57:19 [ 37] [ 12] [507905335247] +16:57:19 [ 38] [ 6] [145736] +16:57:19 [ 39] [ 2] [00] +16:57:19 [ 41] [ 8] [05004700] +16:57:19 [ 49] [ 3] [418] +16:57:19 [ 54] [ 20] [2002418C000024600000] +16:57:19 ============================================================================ +16:57:19 Sending to : +16:57:19 ============================================================================ +16:57:19 + + +waiting on router queue for slot.... +16:57:20 ============================================================================ +16:57:20 Slot Id : <413> +16:57:20 Transaction Type : RESPONSE +16:57:20 Received From : +16:57:20 ============================================================================ +16:57:20 FNo. Len. Field Value +16:57:20 ============================================================================ +16:57:20 [ 1] [ 4] [0210] +16:57:20 [ 2] [ 16] [6688990050051133] +16:57:20 [ 3] [ 6] [012000] +16:57:20 [ 4] [ 12] [000010000000] +16:57:20 [ 11] [ 6] [807461] +16:57:20 [ 12] [ 6] [165713] +16:57:20 [ 15] [ 4] [0320] +16:57:20 [ 18] [ 4] [6011] +16:57:20 [ 32] [ 6] [621354] +16:57:20 [ 35] [ 37] [6688990050051133=98041261306955700000] +16:57:20 [ 37] [ 12] [507905335247] +16:57:20 [ 38] [ 6] [145736] +16:57:20 [ 39] [ 2] [00] +16:57:20 [ 41] [ 8] [05004700] +16:57:20 [ 49] [ 3] [418] +16:57:20 [ 54] [ 20] [2002418C000024600000] +16:57:20 ============================================================================ +16:57:20 Calculate Source COMM Id = 0 +16:57:20 ============================================================================ +16:57:20 + + +waiting on router queue for slot.... +16:57:23 ============================================================================ +16:57:23 Slot Id : <349> +16:57:23 Transaction Type : REQUEST +16:57:23 Received From : +16:57:23 ============================================================================ +16:57:23 FNo. Len. Field Value +16:57:23 ============================================================================ +16:57:23 [ 1] [ 4] [0200] +16:57:23 [ 2] [ 16] [6213544000067857] +16:57:23 [ 3] [ 6] [301000] +16:57:23 [ 7] [ 10] [0320095630] +16:57:23 [ 11] [ 6] [270675] +16:57:23 [ 12] [ 6] [165630] +16:57:23 [ 13] [ 4] [0320] +16:57:23 [ 14] [ 4] [4912] +16:57:23 [ 15] [ 4] [0320] +16:57:23 [ 18] [ 4] [6011] +16:57:23 [ 19] [ 3] [418] +16:57:23 [ 22] [ 3] [021] +16:57:23 [ 25] [ 2] [01] +16:57:23 [ 32] [ 6] [180893] +16:57:23 [ 35] [ 32] [6213544000067857=491212016785020] +16:57:23 [ 37] [ 12] [507909270675] +16:57:23 [ 41] [ 8] [0522XYXH] +16:57:23 [ 42] [ 15] [999999 ] +16:57:23 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:57:23 [ 49] [ 3] [418] +16:57:23 [ 52] [ 16] [6D31200C008906D9] +16:57:23 ============================================================================ +16:57:23 + + +waiting on router queue for slot.... +16:57:23 Sending to : +16:57:23 ============================================================================ +16:57:23 Sending to : +16:57:23 ============================================================================ +16:57:24 ============================================================================ +16:57:24 Slot Id : <349> +16:57:24 Transaction Type : REQUEST +16:57:24 Received From : +16:57:24 ============================================================================ +16:57:24 FNo. Len. Field Value +16:57:24 ============================================================================ +16:57:24 [ 1] [ 4] [0200] +16:57:24 [ 2] [ 16] [6213544000067857] +16:57:24 [ 3] [ 6] [301000] +16:57:24 [ 7] [ 10] [0320095630] +16:57:24 [ 11] [ 6] [270675] +16:57:24 [ 12] [ 6] [165630] +16:57:24 [ 13] [ 4] [0320] +16:57:24 [ 14] [ 4] [4912] +16:57:24 [ 15] [ 4] [0320] +16:57:24 [ 18] [ 4] [6011] +16:57:24 [ 19] [ 3] [418] +16:57:24 [ 22] [ 3] [021] +16:57:24 [ 25] [ 2] [01] +16:57:24 [ 32] [ 6] [180893] +16:57:24 [ 35] [ 32] [6213544000067857=491212016785020] +16:57:24 [ 37] [ 12] [507909270675] +16:57:24 [ 41] [ 8] [0522XYXH] +16:57:24 [ 42] [ 15] [999999 ] +16:57:24 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:57:24 [ 49] [ 3] [418] +16:57:24 [ 52] [ 16] [6D31200C008906D9] +16:57:24 ============================================================================ +16:57:24 + + +waiting on router queue for slot.... +16:57:24 Sending to : +16:57:24 ============================================================================ +16:57:24 ============================================================================ +16:57:24 Slot Id : <349> +16:57:24 Transaction Type : REQUEST +16:57:24 Received From : +16:57:24 ============================================================================ +16:57:24 FNo. Len. Field Value +16:57:24 ============================================================================ +16:57:24 [ 1] [ 4] [0200] +16:57:24 [ 2] [ 16] [6213544000067857] +16:57:24 [ 3] [ 6] [301000] +16:57:24 [ 7] [ 10] [0320095630] +16:57:24 [ 11] [ 6] [270675] +16:57:24 [ 12] [ 6] [165630] +16:57:24 [ 13] [ 4] [0320] +16:57:24 [ 14] [ 4] [4912] +16:57:24 [ 15] [ 4] [0320] +16:57:24 [ 18] [ 4] [6011] +16:57:24 [ 19] [ 3] [418] +16:57:24 [ 22] [ 3] [021] +16:57:24 [ 25] [ 2] [01] +16:57:24 [ 32] [ 6] [180893] +16:57:24 [ 35] [ 32] [6213544000067857=491212016785020] +16:57:24 [ 37] [ 12] [507909270675] +16:57:24 [ 41] [ 8] [0522XYXH] +16:57:24 [ 42] [ 15] [999999 ] +16:57:24 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +16:57:24 [ 49] [ 3] [418] +16:57:24 [ 52] [ 16] [DBEDE4F12B5A0C93] +16:57:24 ============================================================================ +16:57:24 + + +waiting on router queue for slot.... +16:57:24 Sending to : <0> +16:57:24 ============================================================================ +16:57:24 ============================================================================ +16:57:24 Slot Id : <349> +16:57:24 Transaction Type : RESPONSE +16:57:24 Received From : +16:57:24 ============================================================================ +16:57:24 FNo. Len. Field Value +16:57:24 ============================================================================ +16:57:24 [ 1] [ 4] [0210] +16:57:24 [ 2] [ 16] [6213544000067857] +16:57:24 [ 3] [ 6] [301000] +16:57:24 [ 4] [ 12] [000000000000] +16:57:24 [ 7] [ 10] [0320095630] +16:57:24 [ 11] [ 6] [270675] +16:57:24 [ 12] [ 6] [165630] +16:57:24 [ 13] [ 4] [0320] +16:57:24 [ 15] [ 4] [0320] +16:57:24 [ 18] [ 4] [6011] +16:57:24 [ 19] [ 3] [418] +16:57:24 [ 32] [ 6] [180893] +16:57:24 [ 35] [ 32] [6213544000067857=491212016785020] +16:57:24 [ 37] [ 12] [507909270675] +16:57:24 [ 38] [ 6] [188707] +16:57:24 [ 39] [ 2] [00] +16:57:24 [ 41] [ 8] [0522XYXH] +16:57:24 [ 49] [ 3] [418] +16:57:24 [ 54] [ 40] [1001418C0001252732451002418C000125273245] +16:57:24 ============================================================================ +16:57:24 Sending to : +16:57:24 ============================================================================ +16:57:24 + + +waiting on router queue for slot.... +16:57:26 ============================================================================ +16:57:26 Slot Id : <349> +16:57:26 Transaction Type : RESPONSE +16:57:26 Received From : +16:57:26 ============================================================================ +16:57:26 FNo. Len. Field Value +16:57:26 ============================================================================ +16:57:26 [ 1] [ 4] [0210] +16:57:26 [ 2] [ 16] [6213544000067857] +16:57:26 [ 3] [ 6] [301000] +16:57:26 [ 4] [ 12] [000000000000] +16:57:26 [ 7] [ 10] [0320095630] +16:57:26 [ 11] [ 6] [270675] +16:57:26 [ 12] [ 6] [165630] +16:57:26 [ 13] [ 4] [0320] +16:57:26 [ 15] [ 4] [0320] +16:57:26 [ 18] [ 4] [6011] +16:57:26 [ 19] [ 3] [418] +16:57:26 [ 32] [ 6] [180893] +16:57:26 [ 35] [ 32] [6213544000067857=491212016785020] +16:57:26 [ 37] [ 12] [507909270675] +16:57:26 [ 38] [ 6] [188707] +16:57:26 [ 39] [ 2] [00] +16:57:26 [ 41] [ 8] [0522XYXH] +16:57:26 [ 49] [ 3] [418] +16:57:26 [ 54] [ 40] [1001418C0001252732451002418C000125273245] +16:57:26 ============================================================================ +16:57:26 Calculate Source COMM Id = 2 +16:57:26 ============================================================================ +16:57:26 + + +waiting on router queue for slot.... +16:57:27 ============================================================================ +16:57:27 Slot Id : <394> +16:57:27 Transaction Type : REQUEST +16:57:27 Received From : +16:57:27 ============================================================================ +16:57:27 FNo. Len. Field Value +16:57:27 ============================================================================ +16:57:27 [ 1] [ 4] [0800] +16:57:27 [ 2] [ 5] [02531] +16:57:27 [ 3] [ 6] [579168] +16:57:27 [ 7] [ 10] [0320095727] +16:57:27 [ 11] [ 6] [807396] +16:57:27 [ 15] [ 10] [0320095727] +16:57:27 [ 37] [ 11] [57916807396] +16:57:27 [ 70] [ 3] [001] +16:57:27 ============================================================================ +16:57:27 + + +waiting on router queue for slot.... +16:57:27 ============================================================================ +16:57:27 Slot Id : <394> +16:57:27 Transaction Type : RESPONSE +16:57:27 Received From : +16:57:27 ============================================================================ +16:57:27 FNo. Len. Field Value +16:57:27 ============================================================================ +16:57:27 [ 1] [ 4] [0810] +16:57:27 [ 7] [ 10] [0320095727] +16:57:27 [ 11] [ 6] [807396] +16:57:27 [ 15] [ 4] [0320] +16:57:27 [ 37] [ 12] [57916807396] +16:57:27 [ 39] [ 2] [00] +16:57:27 [ 70] [ 3] [001] +16:57:27 ============================================================================ +16:57:27 Sending to : +16:57:27 ============================================================================ +16:57:27 + + +waiting on router queue for slot.... +16:57:39 ============================================================================ +16:57:39 Slot Id : <418> +16:57:39 Transaction Type : REQUEST +16:57:39 Received From : +16:57:39 ============================================================================ +16:57:39 FNo. Len. Field Value +16:57:39 ============================================================================ +16:57:39 [ 1] [ 4] [0800] +16:57:39 [ 7] [ 10] [0320095646] +16:57:39 [ 11] [ 6] [157343] +16:57:39 [ 70] [ 3] [301] +16:57:39 ============================================================================ +16:57:39 + + +waiting on router queue for slot.... +16:57:39 Sending to : +16:57:39 ============================================================================ +16:57:39 ============================================================================ +16:57:39 Slot Id : <418> +16:57:39 Transaction Type : RESPONSE +16:57:39 Received From : +16:57:39 ============================================================================ +16:57:39 FNo. Len. Field Value +16:57:39 ============================================================================ +16:57:39 [ 1] [ 4] [0810] +16:57:39 [ 7] [ 10] [0320095646] +16:57:39 [ 11] [ 6] [157343] +16:57:39 [ 39] [ 2] [00] +16:57:39 [ 70] [ 3] [301] +16:57:39 ============================================================================ +16:57:39 Calculate Source COMM Id = 2 +16:57:39 ============================================================================ +16:57:39 + + +waiting on router queue for slot.... +16:57:48 ============================================================================ +16:57:48 Slot Id : <399> +16:57:48 Transaction Type : REQUEST +16:57:48 Received From : +16:57:48 ============================================================================ +16:57:48 FNo. Len. Field Value +16:57:48 ============================================================================ +16:57:48 [ 1] [ 4] [0200] +16:57:48 [ 2] [ 16] [6688990060029756] +16:57:48 [ 3] [ 6] [300000] +16:57:48 [ 4] [ 12] [000000000000] +16:57:48 [ 7] [ 10] [0320165743] +16:57:48 [ 11] [ 6] [807622] +16:57:48 [ 12] [ 6] [165743] +16:57:48 [ 13] [ 4] [0320] +16:57:48 [ 15] [ 4] [0320] +16:57:48 [ 18] [ 4] [6011] +16:57:48 [ 22] [ 3] [900] +16:57:48 [ 25] [ 2] [02] +16:57:48 [ 28] [ 9] [D00000000] +16:57:48 [ 32] [ 6] [621354] +16:57:48 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:57:48 [ 37] [ 12] [507904154083] +16:57:48 [ 41] [ 8] [20001000] +16:57:48 [ 42] [ 15] [NATIVE ] +16:57:48 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +16:57:48 [ 49] [ 3] [418] +16:57:48 [ 52] [ 16] [48E77688B23825A6] +16:57:48 ============================================================================ +16:57:48 + + +waiting on router queue for slot.... +16:57:48 Sending to : +16:57:48 ============================================================================ +16:57:48 Sending to : +16:57:48 ============================================================================ +16:57:48 ============================================================================ +16:57:48 Slot Id : <399> +16:57:48 Transaction Type : REQUEST +16:57:48 Received From : +16:57:48 ============================================================================ +16:57:48 FNo. Len. Field Value +16:57:48 ============================================================================ +16:57:48 [ 1] [ 4] [0200] +16:57:48 [ 2] [ 16] [6688990060029756] +16:57:48 [ 3] [ 6] [300000] +16:57:48 [ 4] [ 12] [000000000000] +16:57:48 [ 7] [ 10] [0320165743] +16:57:48 [ 11] [ 6] [807622] +16:57:48 [ 12] [ 6] [165743] +16:57:48 [ 13] [ 4] [0320] +16:57:48 [ 15] [ 4] [0320] +16:57:48 [ 18] [ 4] [6011] +16:57:48 [ 22] [ 3] [900] +16:57:48 [ 25] [ 2] [02] +16:57:48 [ 28] [ 9] [D00000000] +16:57:48 [ 32] [ 6] [621354] +16:57:48 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:57:48 [ 37] [ 12] [507904154083] +16:57:48 [ 41] [ 8] [20001000] +16:57:48 [ 42] [ 15] [NATIVE ] +16:57:48 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +16:57:48 [ 49] [ 3] [418] +16:57:48 [ 52] [ 16] [48E77688B23825A6] +16:57:48 ============================================================================ +16:57:48 + + +waiting on router queue for slot.... +16:57:48 Sending to : +16:57:48 ============================================================================ +16:57:48 ============================================================================ +16:57:48 Slot Id : <399> +16:57:48 Transaction Type : REQUEST +16:57:48 Received From : +16:57:48 ============================================================================ +16:57:48 FNo. Len. Field Value +16:57:48 ============================================================================ +16:57:48 [ 1] [ 4] [0200] +16:57:48 [ 2] [ 16] [6688990060029756] +16:57:48 [ 3] [ 6] [300000] +16:57:48 [ 4] [ 12] [000000000000] +16:57:48 [ 7] [ 10] [0320165743] +16:57:48 [ 11] [ 6] [807622] +16:57:48 [ 12] [ 6] [165743] +16:57:48 [ 13] [ 4] [0320] +16:57:48 [ 15] [ 4] [0320] +16:57:48 [ 18] [ 4] [6011] +16:57:48 [ 22] [ 3] [900] +16:57:48 [ 25] [ 2] [02] +16:57:48 [ 28] [ 9] [D00000000] +16:57:48 [ 32] [ 6] [621354] +16:57:48 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:57:48 [ 37] [ 12] [507904154083] +16:57:48 [ 41] [ 8] [20001000] +16:57:48 [ 42] [ 15] [NATIVE ] +16:57:48 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +16:57:48 [ 49] [ 3] [418] +16:57:48 [ 52] [ 16] [2160A153FE491AE1] +16:57:48 ============================================================================ +16:57:48 + + +waiting on router queue for slot.... +16:57:48 Sending to : <4> +16:57:48 ============================================================================ +16:57:48 ============================================================================ +16:57:48 Slot Id : <399> +16:57:48 Transaction Type : RESPONSE +16:57:48 Received From : +16:57:48 ============================================================================ +16:57:48 FNo. Len. Field Value +16:57:48 ============================================================================ +16:57:48 [ 1] [ 4] [0210] +16:57:48 [ 2] [ 16] [6688990060029756] +16:57:48 [ 3] [ 6] [300000] +16:57:48 [ 4] [ 12] [000000000000] +16:57:48 [ 7] [ 10] [0320165743] +16:57:48 [ 11] [ 6] [807622] +16:57:48 [ 12] [ 6] [165743] +16:57:48 [ 13] [ 4] [0320] +16:57:48 [ 15] [ 4] [0320] +16:57:48 [ 18] [ 4] [6011] +16:57:48 [ 22] [ 3] [021] +16:57:48 [ 32] [ 6] [621354] +16:57:48 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:57:48 [ 37] [ 12] [507904154083] +16:57:48 [ 38] [ 6] [165538] +16:57:48 [ 39] [ 2] [55] +16:57:48 [ 41] [ 8] [20001000] +16:57:48 [ 49] [ 3] [418] +16:57:48 ============================================================================ +16:57:48 Sending to : +16:57:48 ============================================================================ +16:57:48 + + +waiting on router queue for slot.... +16:57:49 ============================================================================ +16:57:49 Slot Id : <399> +16:57:49 Transaction Type : RESPONSE +16:57:49 Received From : +16:57:49 ============================================================================ +16:57:49 FNo. Len. Field Value +16:57:49 ============================================================================ +16:57:49 [ 1] [ 4] [0210] +16:57:49 [ 2] [ 16] [6688990060029756] +16:57:49 [ 3] [ 6] [300000] +16:57:49 [ 4] [ 12] [000000000000] +16:57:49 [ 7] [ 10] [0320165743] +16:57:49 [ 11] [ 6] [807622] +16:57:49 [ 12] [ 6] [165743] +16:57:49 [ 13] [ 4] [0320] +16:57:49 [ 15] [ 4] [0320] +16:57:49 [ 18] [ 4] [6011] +16:57:49 [ 22] [ 3] [021] +16:57:49 [ 32] [ 6] [621354] +16:57:49 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:57:49 [ 37] [ 12] [507904154083] +16:57:49 [ 38] [ 6] [165538] +16:57:49 [ 39] [ 2] [55] +16:57:49 [ 41] [ 8] [20001000] +16:57:49 [ 49] [ 3] [418] +16:57:49 ============================================================================ +16:57:49 Calculate Source COMM Id = 0 +16:57:49 ============================================================================ +16:57:49 + + +waiting on router queue for slot.... +16:57:51 ============================================================================ +16:57:51 Slot Id : <372> +16:57:51 Transaction Type : REQUEST +16:57:51 Received From : +16:57:51 ============================================================================ +16:57:51 FNo. Len. Field Value +16:57:51 ============================================================================ +16:57:51 [ 1] [ 4] [0800] +16:57:51 [ 7] [ 10] [0320095658] +16:57:51 [ 11] [ 6] [157344] +16:57:51 [ 70] [ 3] [301] +16:57:51 ============================================================================ +16:57:51 + + +waiting on router queue for slot.... +16:57:51 Sending to : +16:57:51 ============================================================================ +16:57:51 ============================================================================ +16:57:51 Slot Id : <372> +16:57:51 Transaction Type : RESPONSE +16:57:51 Received From : +16:57:51 ============================================================================ +16:57:51 FNo. Len. Field Value +16:57:51 ============================================================================ +16:57:51 [ 1] [ 4] [0810] +16:57:51 [ 7] [ 10] [0320095658] +16:57:51 [ 11] [ 6] [157344] +16:57:51 [ 39] [ 2] [00] +16:57:51 [ 70] [ 3] [301] +16:57:51 ============================================================================ +16:57:51 Calculate Source COMM Id = 2 +16:57:51 ============================================================================ +16:57:51 + + +waiting on router queue for slot.... +16:57:55 ============================================================================ +16:57:55 Slot Id : <387> +16:57:55 Transaction Type : REQUEST +16:57:55 Received From : +16:57:55 ============================================================================ +16:57:55 FNo. Len. Field Value +16:57:55 ============================================================================ +16:57:55 [ 1] [ 4] [0200] +16:57:55 [ 2] [ 16] [6213544002180526] +16:57:55 [ 3] [ 6] [010000] +16:57:55 [ 4] [ 12] [000035000000] +16:57:55 [ 7] [ 10] [0320170542] +16:57:55 [ 11] [ 6] [240484] +16:57:55 [ 12] [ 6] [170542] +16:57:55 [ 13] [ 4] [0320] +16:57:55 [ 14] [ 4] [4912] +16:57:55 [ 15] [ 4] [0320] +16:57:55 [ 18] [ 4] [6011] +16:57:55 [ 22] [ 3] [900] +16:57:55 [ 25] [ 2] [02] +16:57:55 [ 28] [ 9] [D00002000] +16:57:55 [ 32] [ 6] [220699] +16:57:55 [ 35] [ 32] [6213544002180526=491212018052434] +16:57:55 [ 37] [ 12] [507900360229] +16:57:55 [ 41] [ 8] [05000300] +16:57:55 [ 42] [ 15] [APTRA ] +16:57:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:57:55 [ 49] [ 3] [418] +16:57:55 [ 52] [ 16] [F5649C8A71E6EBE3] +16:57:55 ============================================================================ +16:57:55 + + +waiting on router queue for slot.... +16:57:55 Sending to : +16:57:55 ============================================================================ +16:57:55 Sending to : +16:57:55 ============================================================================ +16:57:55 ============================================================================ +16:57:55 Slot Id : <387> +16:57:55 Transaction Type : REQUEST +16:57:55 Received From : +16:57:55 ============================================================================ +16:57:55 FNo. Len. Field Value +16:57:55 ============================================================================ +16:57:55 [ 1] [ 4] [0200] +16:57:55 [ 2] [ 16] [6213544002180526] +16:57:55 [ 3] [ 6] [010000] +16:57:55 [ 4] [ 12] [000035000000] +16:57:55 [ 7] [ 10] [0320170542] +16:57:55 [ 11] [ 6] [240484] +16:57:55 [ 12] [ 6] [170542] +16:57:55 [ 13] [ 4] [0320] +16:57:55 [ 14] [ 4] [4912] +16:57:55 [ 15] [ 4] [0320] +16:57:55 [ 18] [ 4] [6011] +16:57:55 [ 22] [ 3] [900] +16:57:55 [ 25] [ 2] [02] +16:57:55 [ 28] [ 9] [D00002000] +16:57:55 [ 32] [ 6] [220699] +16:57:55 [ 35] [ 32] [6213544002180526=491212018052434] +16:57:55 [ 37] [ 12] [507900360229] +16:57:55 [ 41] [ 8] [05000300] +16:57:55 [ 42] [ 15] [APTRA ] +16:57:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:57:55 [ 49] [ 3] [418] +16:57:55 [ 52] [ 16] [F5649C8A71E6EBE3] +16:57:55 ============================================================================ +16:57:55 + + +waiting on router queue for slot.... +16:57:55 Sending to : +16:57:55 ============================================================================ +16:57:55 ============================================================================ +16:57:55 Slot Id : <387> +16:57:55 Transaction Type : REQUEST +16:57:55 Received From : +16:57:55 ============================================================================ +16:57:55 FNo. Len. Field Value +16:57:55 ============================================================================ +16:57:55 [ 1] [ 4] [0200] +16:57:55 [ 2] [ 16] [6213544002180526] +16:57:55 [ 3] [ 6] [010000] +16:57:55 [ 4] [ 12] [000035000000] +16:57:55 [ 7] [ 10] [0320170542] +16:57:55 [ 11] [ 6] [240484] +16:57:55 [ 12] [ 6] [170542] +16:57:55 [ 13] [ 4] [0320] +16:57:55 [ 14] [ 4] [4912] +16:57:55 [ 15] [ 4] [0320] +16:57:55 [ 18] [ 4] [6011] +16:57:55 [ 22] [ 3] [900] +16:57:55 [ 25] [ 2] [02] +16:57:55 [ 28] [ 9] [D00002000] +16:57:55 [ 32] [ 6] [220699] +16:57:55 [ 35] [ 32] [6213544002180526=491212018052434] +16:57:55 [ 37] [ 12] [507900360229] +16:57:55 [ 41] [ 8] [05000300] +16:57:55 [ 42] [ 15] [APTRA ] +16:57:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:57:55 [ 49] [ 3] [418] +16:57:55 [ 52] [ 16] [333C647782848CAF] +16:57:55 ============================================================================ +16:57:55 + + +waiting on router queue for slot.... +16:57:55 Sending to : <0> +16:57:55 ============================================================================ +16:57:56 ============================================================================ +16:57:56 Slot Id : <387> +16:57:56 Transaction Type : RESPONSE +16:57:56 Received From : +16:57:56 ============================================================================ +16:57:56 FNo. Len. Field Value +16:57:56 ============================================================================ +16:57:56 [ 1] [ 4] [0210] +16:57:56 [ 2] [ 16] [6213544002180526] +16:57:56 [ 3] [ 6] [010000] +16:57:56 [ 4] [ 12] [000035000000] +16:57:56 [ 7] [ 10] [0320170542] +16:57:56 [ 11] [ 6] [240484] +16:57:56 [ 12] [ 6] [170542] +16:57:56 [ 13] [ 4] [0320] +16:57:56 [ 15] [ 4] [0320] +16:57:56 [ 18] [ 4] [6011] +16:57:56 [ 32] [ 6] [220699] +16:57:56 [ 35] [ 32] [6213544002180526=491212018052434] +16:57:56 [ 37] [ 12] [507900360229] +16:57:56 [ 38] [ 6] [647811] +16:57:56 [ 39] [ 2] [00] +16:57:56 [ 41] [ 8] [05000300] +16:57:56 [ 49] [ 3] [418] +16:57:56 [ 54] [ 40] [0001418C0000159990600002418C000015999060] +16:57:56 ============================================================================ +16:57:56 Sending to : +16:57:56 ============================================================================ +16:57:56 + + +waiting on router queue for slot.... +16:57:56 ============================================================================ +16:57:56 Slot Id : <368> +16:57:56 Transaction Type : REQUEST +16:57:56 Received From : +16:57:56 ============================================================================ +16:57:56 FNo. Len. Field Value +16:57:56 ============================================================================ +16:57:56 [ 1] [ 4] [0200] +16:57:56 [ 2] [ 16] [6688990103291306] +16:57:56 [ 3] [ 6] [013000] +16:57:56 [ 4] [ 12] [000100000000] +16:57:56 [ 7] [ 10] [0320165751] +16:57:56 [ 11] [ 6] [807677] +16:57:56 [ 12] [ 6] [165751] +16:57:56 [ 13] [ 4] [0320] +16:57:56 [ 15] [ 4] [0320] +16:57:56 [ 18] [ 4] [6011] +16:57:56 [ 22] [ 3] [900] +16:57:56 [ 25] [ 2] [02] +16:57:56 [ 28] [ 9] [D00002000] +16:57:56 [ 32] [ 6] [621354] +16:57:56 [ 35] [ 37] [6688990103291306=42121231130645500000] +16:57:56 [ 37] [ 12] [507903499635] +16:57:56 [ 41] [ 8] [06002200] +16:57:56 [ 42] [ 15] [NATIVE ] +16:57:56 [ 43] [ 40] [Beng Market Beng LAO] +16:57:56 [ 49] [ 3] [418] +16:57:56 [ 52] [ 16] [38E4519FF4022ECA] +16:57:56 ============================================================================ +16:57:56 + + +waiting on router queue for slot.... +16:57:56 Sending to : +16:57:56 ============================================================================ +16:57:56 Sending to : +16:57:56 ============================================================================ +16:57:56 ============================================================================ +16:57:56 Slot Id : <368> +16:57:56 Transaction Type : REQUEST +16:57:56 Received From : +16:57:56 ============================================================================ +16:57:56 FNo. Len. Field Value +16:57:56 ============================================================================ +16:57:56 [ 1] [ 4] [0200] +16:57:56 [ 2] [ 16] [6688990103291306] +16:57:56 [ 3] [ 6] [013000] +16:57:56 [ 4] [ 12] [000100000000] +16:57:56 [ 7] [ 10] [0320165751] +16:57:56 [ 11] [ 6] [807677] +16:57:56 [ 12] [ 6] [165751] +16:57:56 [ 13] [ 4] [0320] +16:57:56 [ 15] [ 4] [0320] +16:57:56 [ 18] [ 4] [6011] +16:57:56 [ 22] [ 3] [900] +16:57:56 [ 25] [ 2] [02] +16:57:56 [ 28] [ 9] [D00002000] +16:57:56 [ 32] [ 6] [621354] +16:57:56 [ 35] [ 37] [6688990103291306=42121231130645500000] +16:57:56 [ 37] [ 12] [507903499635] +16:57:56 [ 41] [ 8] [06002200] +16:57:56 [ 42] [ 15] [NATIVE ] +16:57:56 [ 43] [ 40] [Beng Market Beng LAO] +16:57:56 [ 49] [ 3] [418] +16:57:56 [ 52] [ 16] [38E4519FF4022ECA] +16:57:56 ============================================================================ +16:57:56 + + +waiting on router queue for slot.... +16:57:56 Sending to : +16:57:56 ============================================================================ +16:57:56 ============================================================================ +16:57:56 Slot Id : <368> +16:57:56 Transaction Type : REQUEST +16:57:56 Received From : +16:57:56 ============================================================================ +16:57:56 FNo. Len. Field Value +16:57:56 ============================================================================ +16:57:56 [ 1] [ 4] [0200] +16:57:56 [ 2] [ 16] [6688990103291306] +16:57:56 [ 3] [ 6] [013000] +16:57:56 [ 4] [ 12] [000100000000] +16:57:56 [ 7] [ 10] [0320165751] +16:57:56 [ 11] [ 6] [807677] +16:57:56 [ 12] [ 6] [165751] +16:57:56 [ 13] [ 4] [0320] +16:57:56 [ 15] [ 4] [0320] +16:57:56 [ 18] [ 4] [6011] +16:57:56 [ 22] [ 3] [900] +16:57:56 [ 25] [ 2] [02] +16:57:56 [ 28] [ 9] [D00002000] +16:57:56 [ 32] [ 6] [621354] +16:57:56 [ 35] [ 37] [6688990103291306=42121231130645500000] +16:57:56 [ 37] [ 12] [507903499635] +16:57:56 [ 41] [ 8] [06002200] +16:57:56 [ 42] [ 15] [NATIVE ] +16:57:56 [ 43] [ 40] [Beng Market Beng LAO] +16:57:56 [ 49] [ 3] [418] +16:57:56 [ 52] [ 16] [607F46DA2443E332] +16:57:56 ============================================================================ +16:57:56 + + +waiting on router queue for slot.... +16:57:56 Sending to : <4> +16:57:56 ============================================================================ +16:57:57 ============================================================================ +16:57:57 Slot Id : <387> +16:57:57 Transaction Type : RESPONSE +16:57:57 Received From : +16:57:57 ============================================================================ +16:57:57 FNo. Len. Field Value +16:57:57 ============================================================================ +16:57:57 [ 1] [ 4] [0210] +16:57:57 [ 2] [ 16] [6213544002180526] +16:57:57 [ 3] [ 6] [010000] +16:57:57 [ 4] [ 12] [000035000000] +16:57:57 [ 7] [ 10] [0320170542] +16:57:57 [ 11] [ 6] [240484] +16:57:57 [ 12] [ 6] [170542] +16:57:57 [ 13] [ 4] [0320] +16:57:57 [ 15] [ 4] [0320] +16:57:57 [ 18] [ 4] [6011] +16:57:57 [ 32] [ 6] [220699] +16:57:57 [ 35] [ 32] [6213544002180526=491212018052434] +16:57:57 [ 37] [ 12] [507900360229] +16:57:57 [ 38] [ 6] [647811] +16:57:57 [ 39] [ 2] [00] +16:57:57 [ 41] [ 8] [05000300] +16:57:57 [ 49] [ 3] [418] +16:57:57 [ 54] [ 40] [0001418C0000159990600002418C000015999060] +16:57:57 ============================================================================ +16:57:57 Calculate Source COMM Id = 1 +16:57:57 ============================================================================ +16:57:57 + + +waiting on router queue for slot.... +16:57:57 ============================================================================ +16:57:57 Slot Id : <368> +16:57:57 Transaction Type : RESPONSE +16:57:57 Received From : +16:57:57 ============================================================================ +16:57:57 FNo. Len. Field Value +16:57:57 ============================================================================ +16:57:57 [ 1] [ 4] [0210] +16:57:57 [ 2] [ 16] [6688990103291306] +16:57:57 [ 3] [ 6] [013000] +16:57:57 [ 4] [ 12] [000100000000] +16:57:57 [ 11] [ 6] [807677] +16:57:57 [ 12] [ 6] [165751] +16:57:57 [ 15] [ 4] [0320] +16:57:57 [ 18] [ 4] [6011] +16:57:57 [ 32] [ 6] [621354] +16:57:57 [ 35] [ 37] [6688990103291306=42121231130645500000] +16:57:57 [ 37] [ 12] [507903499635] +16:57:57 [ 38] [ 6] [390448] +16:57:57 [ 39] [ 2] [00] +16:57:57 [ 41] [ 8] [06002200] +16:57:57 [ 49] [ 3] [418] +16:57:57 [ 54] [ 20] [3002418C000317502559] +16:57:57 ============================================================================ +16:57:57 Sending to : +16:57:57 ============================================================================ +16:57:57 + + +waiting on router queue for slot.... +16:57:59 ============================================================================ +16:57:59 Slot Id : <368> +16:57:59 Transaction Type : RESPONSE +16:57:59 Received From : +16:57:59 ============================================================================ +16:57:59 FNo. Len. Field Value +16:57:59 ============================================================================ +16:57:59 [ 1] [ 4] [0210] +16:57:59 [ 2] [ 16] [6688990103291306] +16:57:59 [ 3] [ 6] [013000] +16:57:59 [ 4] [ 12] [000100000000] +16:57:59 [ 11] [ 6] [807677] +16:57:59 [ 12] [ 6] [165751] +16:57:59 [ 15] [ 4] [0320] +16:57:59 [ 18] [ 4] [6011] +16:57:59 [ 32] [ 6] [621354] +16:57:59 [ 35] [ 37] [6688990103291306=42121231130645500000] +16:57:59 [ 37] [ 12] [507903499635] +16:57:59 [ 38] [ 6] [390448] +16:57:59 [ 39] [ 2] [00] +16:57:59 [ 41] [ 8] [06002200] +16:57:59 [ 49] [ 3] [418] +16:57:59 [ 54] [ 20] [3002418C000317502559] +16:57:59 ============================================================================ +16:57:59 Calculate Source COMM Id = 0 +16:57:59 ============================================================================ +16:57:59 + + +waiting on router queue for slot.... +16:58:07 ============================================================================ +16:58:07 Slot Id : <406> +16:58:07 Transaction Type : REQUEST +16:58:07 Received From : +16:58:07 ============================================================================ +16:58:07 FNo. Len. Field Value +16:58:07 ============================================================================ +16:58:07 [ 1] [ 4] [0800] +16:58:07 [ 7] [ 10] [0320095714] +16:58:07 [ 11] [ 6] [157345] +16:58:07 [ 70] [ 3] [301] +16:58:07 ============================================================================ +16:58:07 + + +waiting on router queue for slot.... +16:58:07 Sending to : +16:58:07 ============================================================================ +16:58:07 ============================================================================ +16:58:07 Slot Id : <406> +16:58:07 Transaction Type : RESPONSE +16:58:07 Received From : +16:58:07 ============================================================================ +16:58:07 FNo. Len. Field Value +16:58:07 ============================================================================ +16:58:07 [ 1] [ 4] [0810] +16:58:07 [ 7] [ 10] [0320095714] +16:58:07 [ 11] [ 6] [157345] +16:58:07 [ 39] [ 2] [00] +16:58:07 [ 70] [ 3] [301] +16:58:07 ============================================================================ +16:58:07 Calculate Source COMM Id = 2 +16:58:07 ============================================================================ +16:58:07 + + +waiting on router queue for slot.... +16:58:10 ============================================================================ +16:58:10 Slot Id : <419> +16:58:10 Transaction Type : REQUEST +16:58:10 Received From : +16:58:10 ============================================================================ +16:58:10 FNo. Len. Field Value +16:58:10 ============================================================================ +16:58:10 [ 1] [ 4] [0200] +16:58:10 [ 2] [ 16] [6213541000657752] +16:58:10 [ 3] [ 6] [010000] +16:58:10 [ 4] [ 12] [000050000000] +16:58:10 [ 7] [ 10] [0320165600] +16:58:10 [ 11] [ 6] [952654] +16:58:10 [ 12] [ 6] [165600] +16:58:10 [ 13] [ 4] [0320] +16:58:10 [ 15] [ 4] [0320] +16:58:10 [ 18] [ 4] [6011] +16:58:10 [ 19] [ 3] [418] +16:58:10 [ 22] [ 3] [021] +16:58:10 [ 25] [ 2] [01] +16:58:10 [ 28] [ 9] [D00002000] +16:58:10 [ 32] [ 6] [668899] +16:58:10 [ 35] [ 32] [6213541000657752=491212015775569] +16:58:10 [ 37] [ 12] [507902532000] +16:58:10 [ 41] [ 8] [03020033] +16:58:10 [ 42] [ 15] [APT ] +16:58:10 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +16:58:10 [ 49] [ 3] [418] +16:58:10 [ 52] [ 16] [553D483C4CD6BCA0] +16:58:10 ============================================================================ +16:58:10 + + +waiting on router queue for slot.... +16:58:10 Sending to : +16:58:10 ============================================================================ +16:58:10 Sending to : +16:58:10 ============================================================================ +16:58:10 ============================================================================ +16:58:10 Slot Id : <419> +16:58:10 Transaction Type : REQUEST +16:58:10 Received From : +16:58:10 ============================================================================ +16:58:10 FNo. Len. Field Value +16:58:10 ============================================================================ +16:58:10 [ 1] [ 4] [0200] +16:58:10 [ 2] [ 16] [6213541000657752] +16:58:10 [ 3] [ 6] [010000] +16:58:10 [ 4] [ 12] [000050000000] +16:58:10 [ 7] [ 10] [0320165600] +16:58:10 [ 11] [ 6] [952654] +16:58:10 [ 12] [ 6] [165600] +16:58:10 [ 13] [ 4] [0320] +16:58:10 [ 15] [ 4] [0320] +16:58:10 [ 18] [ 4] [6011] +16:58:10 [ 19] [ 3] [418] +16:58:10 [ 22] [ 3] [021] +16:58:10 [ 25] [ 2] [01] +16:58:10 [ 28] [ 9] [D00002000] +16:58:10 [ 32] [ 6] [668899] +16:58:10 [ 35] [ 32] [6213541000657752=491212015775569] +16:58:10 [ 37] [ 12] [507902532000] +16:58:10 [ 41] [ 8] [03020033] +16:58:10 [ 42] [ 15] [APT ] +16:58:10 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +16:58:10 [ 49] [ 3] [418] +16:58:10 [ 52] [ 16] [553D483C4CD6BCA0] +16:58:10 ============================================================================ +16:58:10 + + +waiting on router queue for slot.... +16:58:10 Sending to : +16:58:10 ============================================================================ +16:58:10 ============================================================================ +16:58:10 Slot Id : <419> +16:58:10 Transaction Type : REQUEST +16:58:10 Received From : +16:58:10 ============================================================================ +16:58:10 FNo. Len. Field Value +16:58:10 ============================================================================ +16:58:10 [ 1] [ 4] [0200] +16:58:10 [ 2] [ 16] [6213541000657752] +16:58:10 [ 3] [ 6] [010000] +16:58:10 [ 4] [ 12] [000050000000] +16:58:10 [ 7] [ 10] [0320165600] +16:58:10 [ 11] [ 6] [952654] +16:58:10 [ 12] [ 6] [165600] +16:58:10 [ 13] [ 4] [0320] +16:58:10 [ 15] [ 4] [0320] +16:58:10 [ 18] [ 4] [6011] +16:58:10 [ 19] [ 3] [418] +16:58:10 [ 22] [ 3] [021] +16:58:10 [ 25] [ 2] [01] +16:58:10 [ 28] [ 9] [D00002000] +16:58:10 [ 32] [ 6] [668899] +16:58:10 [ 35] [ 32] [6213541000657752=491212015775569] +16:58:10 [ 37] [ 12] [507902532000] +16:58:10 [ 41] [ 8] [03020033] +16:58:10 [ 42] [ 15] [APT ] +16:58:10 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +16:58:10 [ 49] [ 3] [418] +16:58:10 [ 52] [ 16] [8EB7FF25A739B34B] +16:58:10 ============================================================================ +16:58:10 + + +waiting on router queue for slot.... +16:58:10 Sending to : <0> +16:58:10 ============================================================================ +16:58:11 ============================================================================ +16:58:11 Slot Id : <419> +16:58:11 Transaction Type : RESPONSE +16:58:11 Received From : +16:58:11 ============================================================================ +16:58:11 FNo. Len. Field Value +16:58:11 ============================================================================ +16:58:11 [ 1] [ 4] [0210] +16:58:11 [ 2] [ 16] [6213541000657752] +16:58:11 [ 3] [ 6] [010000] +16:58:11 [ 4] [ 12] [000050000000] +16:58:11 [ 7] [ 10] [0320165600] +16:58:11 [ 11] [ 6] [952654] +16:58:11 [ 12] [ 6] [165600] +16:58:11 [ 13] [ 4] [0320] +16:58:11 [ 15] [ 4] [0320] +16:58:11 [ 18] [ 4] [6011] +16:58:11 [ 19] [ 3] [418] +16:58:11 [ 32] [ 6] [668899] +16:58:11 [ 35] [ 32] [6213541000657752=491212015775569] +16:58:11 [ 37] [ 12] [507902532000] +16:58:11 [ 38] [ 6] [850624] +16:58:11 [ 39] [ 2] [00] +16:58:11 [ 41] [ 8] [03020033] +16:58:11 [ 49] [ 3] [418] +16:58:11 [ 54] [ 40] [0001764C0000018664150002764C000001866415] +16:58:11 ============================================================================ +16:58:11 Sending to : +16:58:11 ============================================================================ +16:58:11 + + +waiting on router queue for slot.... +16:58:12 ============================================================================ +16:58:12 Slot Id : <419> +16:58:12 Transaction Type : RESPONSE +16:58:12 Received From : +16:58:12 ============================================================================ +16:58:12 FNo. Len. Field Value +16:58:12 ============================================================================ +16:58:12 [ 1] [ 4] [0210] +16:58:12 [ 2] [ 16] [6213541000657752] +16:58:12 [ 3] [ 6] [010000] +16:58:12 [ 4] [ 12] [000050000000] +16:58:12 [ 7] [ 10] [0320165600] +16:58:12 [ 11] [ 6] [952654] +16:58:12 [ 12] [ 6] [165600] +16:58:12 [ 13] [ 4] [0320] +16:58:12 [ 15] [ 4] [0320] +16:58:12 [ 18] [ 4] [6011] +16:58:12 [ 19] [ 3] [418] +16:58:12 [ 32] [ 6] [668899] +16:58:12 [ 35] [ 32] [6213541000657752=491212015775569] +16:58:12 [ 37] [ 12] [507902532000] +16:58:12 [ 38] [ 6] [850624] +16:58:12 [ 39] [ 2] [00] +16:58:12 [ 41] [ 8] [03020033] +16:58:12 [ 49] [ 3] [418] +16:58:12 [ 54] [ 40] [0001764C0000018664150002764C000001866415] +16:58:12 ============================================================================ +16:58:12 Calculate Source COMM Id = 4 +16:58:12 ============================================================================ +16:58:12 + + +waiting on router queue for slot.... +16:58:14 ============================================================================ +16:58:14 Slot Id : <380> +16:58:14 Transaction Type : REQUEST +16:58:14 Received From : +16:58:14 ============================================================================ +16:58:14 FNo. Len. Field Value +16:58:14 ============================================================================ +16:58:14 [ 1] [ 4] [0200] +16:58:14 [ 2] [ 16] [6213544002226402] +16:58:14 [ 3] [ 6] [010000] +16:58:14 [ 4] [ 12] [000056000000] +16:58:14 [ 7] [ 10] [0320165604] +16:58:14 [ 11] [ 6] [952656] +16:58:14 [ 12] [ 6] [165604] +16:58:14 [ 13] [ 4] [0320] +16:58:14 [ 15] [ 4] [0320] +16:58:14 [ 18] [ 4] [6011] +16:58:14 [ 19] [ 3] [418] +16:58:14 [ 22] [ 3] [021] +16:58:14 [ 25] [ 2] [01] +16:58:14 [ 28] [ 9] [D00002000] +16:58:14 [ 32] [ 6] [668899] +16:58:14 [ 35] [ 32] [6213544002226402=491212012640982] +16:58:14 [ 37] [ 12] [507902025641] +16:58:14 [ 41] [ 8] [03414002] +16:58:14 [ 42] [ 15] [APT ] +16:58:14 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:58:14 [ 49] [ 3] [418] +16:58:14 [ 52] [ 16] [7269AA37330D02E2] +16:58:14 ============================================================================ +16:58:14 + + +waiting on router queue for slot.... +16:58:14 Sending to : +16:58:14 ============================================================================ +16:58:14 Sending to : +16:58:14 ============================================================================ +16:58:14 ============================================================================ +16:58:14 Slot Id : <380> +16:58:14 Transaction Type : REQUEST +16:58:14 Received From : +16:58:14 ============================================================================ +16:58:14 FNo. Len. Field Value +16:58:14 ============================================================================ +16:58:14 [ 1] [ 4] [0200] +16:58:14 [ 2] [ 16] [6213544002226402] +16:58:14 [ 3] [ 6] [010000] +16:58:14 [ 4] [ 12] [000056000000] +16:58:14 [ 7] [ 10] [0320165604] +16:58:14 [ 11] [ 6] [952656] +16:58:14 [ 12] [ 6] [165604] +16:58:14 [ 13] [ 4] [0320] +16:58:14 [ 15] [ 4] [0320] +16:58:14 [ 18] [ 4] [6011] +16:58:14 [ 19] [ 3] [418] +16:58:14 [ 22] [ 3] [021] +16:58:14 [ 25] [ 2] [01] +16:58:14 [ 28] [ 9] [D00002000] +16:58:14 [ 32] [ 6] [668899] +16:58:14 [ 35] [ 32] [6213544002226402=491212012640982] +16:58:14 [ 37] [ 12] [507902025641] +16:58:14 [ 41] [ 8] [03414002] +16:58:14 [ 42] [ 15] [APT ] +16:58:14 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:58:14 [ 49] [ 3] [418] +16:58:14 [ 52] [ 16] [7269AA37330D02E2] +16:58:14 ============================================================================ +16:58:14 + + +waiting on router queue for slot.... +16:58:14 Sending to : +16:58:14 ============================================================================ +16:58:15 ============================================================================ +16:58:15 Slot Id : <380> +16:58:15 Transaction Type : REQUEST +16:58:15 Received From : +16:58:15 ============================================================================ +16:58:15 FNo. Len. Field Value +16:58:15 ============================================================================ +16:58:15 [ 1] [ 4] [0200] +16:58:15 [ 2] [ 16] [6213544002226402] +16:58:15 [ 3] [ 6] [010000] +16:58:15 [ 4] [ 12] [000056000000] +16:58:15 [ 7] [ 10] [0320165604] +16:58:15 [ 11] [ 6] [952656] +16:58:15 [ 12] [ 6] [165604] +16:58:15 [ 13] [ 4] [0320] +16:58:15 [ 15] [ 4] [0320] +16:58:15 [ 18] [ 4] [6011] +16:58:15 [ 19] [ 3] [418] +16:58:15 [ 22] [ 3] [021] +16:58:15 [ 25] [ 2] [01] +16:58:15 [ 28] [ 9] [D00002000] +16:58:15 [ 32] [ 6] [668899] +16:58:15 [ 35] [ 32] [6213544002226402=491212012640982] +16:58:15 [ 37] [ 12] [507902025641] +16:58:15 [ 41] [ 8] [03414002] +16:58:15 [ 42] [ 15] [APT ] +16:58:15 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:58:15 [ 49] [ 3] [418] +16:58:15 [ 52] [ 16] [FE21AD94A6F5D3A8] +16:58:15 ============================================================================ +16:58:15 + + +waiting on router queue for slot.... +16:58:15 Sending to : <0> +16:58:15 ============================================================================ +16:58:15 ============================================================================ +16:58:15 Slot Id : <380> +16:58:15 Transaction Type : RESPONSE +16:58:15 Received From : +16:58:15 ============================================================================ +16:58:15 FNo. Len. Field Value +16:58:15 ============================================================================ +16:58:15 [ 1] [ 4] [0210] +16:58:15 [ 2] [ 16] [6213544002226402] +16:58:15 [ 3] [ 6] [010000] +16:58:15 [ 4] [ 12] [000056000000] +16:58:15 [ 7] [ 10] [0320165604] +16:58:15 [ 11] [ 6] [952656] +16:58:15 [ 12] [ 6] [165604] +16:58:15 [ 13] [ 4] [0320] +16:58:15 [ 15] [ 4] [0320] +16:58:15 [ 18] [ 4] [6011] +16:58:15 [ 19] [ 3] [418] +16:58:15 [ 32] [ 6] [668899] +16:58:15 [ 35] [ 32] [6213544002226402=491212012640982] +16:58:15 [ 37] [ 12] [507902025641] +16:58:15 [ 38] [ 6] [952656] +16:58:15 [ 39] [ 2] [51] +16:58:15 [ 41] [ 8] [03414002] +16:58:15 [ 49] [ 3] [418] +16:58:15 [ 54] [ 40] [0001418C0000611327620002418C000061132762] +16:58:15 ============================================================================ +16:58:15 Sending to : +16:58:15 ============================================================================ +16:58:15 + + +waiting on router queue for slot.... +16:58:15 ============================================================================ +16:58:15 Slot Id : <411> +16:58:15 Transaction Type : REQUEST +16:58:15 Received From : +16:58:15 ============================================================================ +16:58:15 FNo. Len. Field Value +16:58:15 ============================================================================ +16:58:15 [ 1] [ 4] [0800] +16:58:15 [ 7] [ 10] [0321001003] +16:58:15 [ 11] [ 6] [171003] +16:58:15 [ 37] [ 12] [57917171003] +16:58:15 [ 70] [ 3] [301] +16:58:15 ============================================================================ +16:58:15 + + +waiting on router queue for slot.... +16:58:15 Sending to : +16:58:15 ============================================================================ +16:58:15 ============================================================================ +16:58:15 Slot Id : <411> +16:58:15 Transaction Type : RESPONSE +16:58:15 Received From : +16:58:15 ============================================================================ +16:58:15 FNo. Len. Field Value +16:58:15 ============================================================================ +16:58:15 [ 1] [ 4] [0810] +16:58:15 [ 7] [ 10] [0321001003] +16:58:15 [ 11] [ 6] [171003] +16:58:15 [ 37] [ 12] [579171710030] +16:58:15 [ 39] [ 2] [00] +16:58:15 [ 70] [ 3] [810] +16:58:15 ============================================================================ +16:58:15 Calculate Source COMM Id = 6 +16:58:15 ============================================================================ +16:58:15 + + +waiting on router queue for slot.... +16:58:16 ============================================================================ +16:58:16 Slot Id : <380> +16:58:16 Transaction Type : RESPONSE +16:58:16 Received From : +16:58:16 ============================================================================ +16:58:16 FNo. Len. Field Value +16:58:16 ============================================================================ +16:58:16 [ 1] [ 4] [0210] +16:58:16 [ 2] [ 16] [6213544002226402] +16:58:16 [ 3] [ 6] [010000] +16:58:16 [ 4] [ 12] [000056000000] +16:58:16 [ 7] [ 10] [0320165604] +16:58:16 [ 11] [ 6] [952656] +16:58:16 [ 12] [ 6] [165604] +16:58:16 [ 13] [ 4] [0320] +16:58:16 [ 15] [ 4] [0320] +16:58:16 [ 18] [ 4] [6011] +16:58:16 [ 19] [ 3] [418] +16:58:16 [ 32] [ 6] [668899] +16:58:16 [ 35] [ 32] [6213544002226402=491212012640982] +16:58:16 [ 37] [ 12] [507902025641] +16:58:16 [ 38] [ 6] [952656] +16:58:16 [ 39] [ 2] [51] +16:58:16 [ 41] [ 8] [03414002] +16:58:16 [ 49] [ 3] [418] +16:58:16 [ 54] [ 40] [0001418C0000611327620002418C000061132762] +16:58:16 ============================================================================ +16:58:16 Calculate Source COMM Id = 4 +16:58:16 ============================================================================ +16:58:16 + + +waiting on router queue for slot.... +16:58:18 ============================================================================ +16:58:18 Slot Id : <407> +16:58:18 Transaction Type : REQUEST +16:58:18 Received From : +16:58:18 ============================================================================ +16:58:18 FNo. Len. Field Value +16:58:18 ============================================================================ +16:58:18 [ 1] [ 4] [0200] +16:58:18 [ 2] [ 16] [6213544002132014] +16:58:18 [ 3] [ 6] [011000] +16:58:18 [ 4] [ 12] [000045000000] +16:58:18 [ 7] [ 10] [0320165838] +16:58:18 [ 11] [ 6] [209120] +16:58:18 [ 12] [ 6] [165344] +16:58:18 [ 13] [ 4] [0320] +16:58:18 [ 14] [ 4] [4912] +16:58:18 [ 15] [ 4] [0320] +16:58:18 [ 18] [ 4] [6011] +16:58:18 [ 19] [ 3] [418] +16:58:18 [ 22] [ 3] [021] +16:58:18 [ 25] [ 2] [01] +16:58:18 [ 28] [ 9] [D00002000] +16:58:18 [ 32] [ 6] [198901] +16:58:18 [ 35] [ 32] [6213544002132014=491212013201605] +16:58:18 [ 37] [ 12] [507916209120] +16:58:18 [ 41] [ 8] [19529001] +16:58:18 [ 42] [ 15] [000000041952901] +16:58:18 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:58:18 [ 49] [ 3] [418] +16:58:18 [ 52] [ 16] [E01AEB17FF1B7EBC] +16:58:18 ============================================================================ +16:58:18 + + +waiting on router queue for slot.... +16:58:18 Sending to : +16:58:18 ============================================================================ +16:58:18 Sending to : +16:58:18 ============================================================================ +16:58:18 ============================================================================ +16:58:18 Slot Id : <407> +16:58:18 Transaction Type : REQUEST +16:58:18 Received From : +16:58:18 ============================================================================ +16:58:18 FNo. Len. Field Value +16:58:18 ============================================================================ +16:58:18 [ 1] [ 4] [0200] +16:58:18 [ 2] [ 16] [6213544002132014] +16:58:18 [ 3] [ 6] [011000] +16:58:18 [ 4] [ 12] [000045000000] +16:58:18 [ 7] [ 10] [0320165838] +16:58:18 [ 11] [ 6] [209120] +16:58:18 [ 12] [ 6] [165344] +16:58:18 [ 13] [ 4] [0320] +16:58:18 [ 14] [ 4] [4912] +16:58:18 [ 15] [ 4] [0320] +16:58:18 [ 18] [ 4] [6011] +16:58:18 [ 19] [ 3] [418] +16:58:18 [ 22] [ 3] [021] +16:58:18 [ 25] [ 2] [01] +16:58:18 [ 28] [ 9] [D00002000] +16:58:18 [ 32] [ 6] [198901] +16:58:18 [ 35] [ 32] [6213544002132014=491212013201605] +16:58:18 [ 37] [ 12] [507916209120] +16:58:18 [ 41] [ 8] [19529001] +16:58:18 [ 42] [ 15] [000000041952901] +16:58:18 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:58:18 [ 49] [ 3] [418] +16:58:18 [ 52] [ 16] [E01AEB17FF1B7EBC] +16:58:18 ============================================================================ +16:58:18 + + +waiting on router queue for slot.... +16:58:18 Sending to : +16:58:18 ============================================================================ +16:58:18 ============================================================================ +16:58:18 Slot Id : <407> +16:58:18 Transaction Type : REQUEST +16:58:18 Received From : +16:58:18 ============================================================================ +16:58:18 FNo. Len. Field Value +16:58:18 ============================================================================ +16:58:18 [ 1] [ 4] [0200] +16:58:18 [ 2] [ 16] [6213544002132014] +16:58:18 [ 3] [ 6] [011000] +16:58:18 [ 4] [ 12] [000045000000] +16:58:18 [ 7] [ 10] [0320165838] +16:58:18 [ 11] [ 6] [209120] +16:58:18 [ 12] [ 6] [165344] +16:58:18 [ 13] [ 4] [0320] +16:58:18 [ 14] [ 4] [4912] +16:58:18 [ 15] [ 4] [0320] +16:58:18 [ 18] [ 4] [6011] +16:58:18 [ 19] [ 3] [418] +16:58:18 [ 22] [ 3] [021] +16:58:18 [ 25] [ 2] [01] +16:58:18 [ 28] [ 9] [D00002000] +16:58:18 [ 32] [ 6] [198901] +16:58:18 [ 35] [ 32] [6213544002132014=491212013201605] +16:58:18 [ 37] [ 12] [507916209120] +16:58:18 [ 41] [ 8] [19529001] +16:58:18 [ 42] [ 15] [000000041952901] +16:58:18 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:58:18 [ 49] [ 3] [418] +16:58:18 [ 52] [ 16] [AC00D44BAB9FCA78] +16:58:18 ============================================================================ +16:58:18 + + +waiting on router queue for slot.... +16:58:18 Sending to : <0> +16:58:18 ============================================================================ +16:58:19 ============================================================================ +16:58:19 Slot Id : <407> +16:58:19 Transaction Type : RESPONSE +16:58:19 Received From : +16:58:19 ============================================================================ +16:58:19 FNo. Len. Field Value +16:58:19 ============================================================================ +16:58:19 [ 1] [ 4] [0210] +16:58:19 [ 2] [ 16] [6213544002132014] +16:58:19 [ 3] [ 6] [011000] +16:58:19 [ 4] [ 12] [000045000000] +16:58:19 [ 7] [ 10] [0320165838] +16:58:19 [ 11] [ 6] [209120] +16:58:19 [ 12] [ 6] [165344] +16:58:19 [ 13] [ 4] [0320] +16:58:19 [ 15] [ 4] [0320] +16:58:19 [ 18] [ 4] [6011] +16:58:19 [ 19] [ 3] [418] +16:58:19 [ 32] [ 6] [198901] +16:58:19 [ 35] [ 32] [6213544002132014=491212013201605] +16:58:19 [ 37] [ 12] [507916209120] +16:58:19 [ 38] [ 6] [459497] +16:58:19 [ 39] [ 2] [00] +16:58:19 [ 41] [ 8] [19529001] +16:58:19 [ 49] [ 3] [418] +16:58:19 [ 54] [ 40] [1001418C0000086220481002418C000008622048] +16:58:19 ============================================================================ +16:58:19 Sending to : +16:58:19 ============================================================================ +16:58:19 + + +waiting on router queue for slot.... +16:58:19 ============================================================================ +16:58:19 Slot Id : <384> +16:58:19 Transaction Type : REQUEST +16:58:19 Received From : +16:58:19 ============================================================================ +16:58:19 FNo. Len. Field Value +16:58:19 ============================================================================ +16:58:19 [ 1] [ 4] [0800] +16:58:19 [ 7] [ 10] [0320095725] +16:58:19 [ 11] [ 6] [157346] +16:58:19 [ 70] [ 3] [301] +16:58:19 ============================================================================ +16:58:19 + + +waiting on router queue for slot.... +16:58:19 Sending to : +16:58:19 ============================================================================ +16:58:19 ============================================================================ +16:58:19 Slot Id : <384> +16:58:19 Transaction Type : RESPONSE +16:58:19 Received From : +16:58:19 ============================================================================ +16:58:19 FNo. Len. Field Value +16:58:19 ============================================================================ +16:58:19 [ 1] [ 4] [0810] +16:58:19 [ 7] [ 10] [0320095725] +16:58:19 [ 11] [ 6] [157346] +16:58:19 [ 39] [ 2] [00] +16:58:19 [ 70] [ 3] [301] +16:58:19 ============================================================================ +16:58:19 Calculate Source COMM Id = 2 +16:58:19 ============================================================================ +16:58:19 + + +waiting on router queue for slot.... +16:58:20 ============================================================================ +16:58:20 Slot Id : <407> +16:58:20 Transaction Type : RESPONSE +16:58:20 Received From : +16:58:20 ============================================================================ +16:58:20 FNo. Len. Field Value +16:58:20 ============================================================================ +16:58:20 [ 1] [ 4] [0210] +16:58:20 [ 2] [ 16] [6213544002132014] +16:58:20 [ 3] [ 6] [011000] +16:58:20 [ 4] [ 12] [000045000000] +16:58:20 [ 7] [ 10] [0320165838] +16:58:20 [ 11] [ 6] [209120] +16:58:20 [ 12] [ 6] [165344] +16:58:20 [ 13] [ 4] [0320] +16:58:20 [ 15] [ 4] [0320] +16:58:20 [ 18] [ 4] [6011] +16:58:20 [ 19] [ 3] [418] +16:58:20 [ 32] [ 6] [198901] +16:58:20 [ 35] [ 32] [6213544002132014=491212013201605] +16:58:20 [ 37] [ 12] [507916209120] +16:58:20 [ 38] [ 6] [459497] +16:58:20 [ 39] [ 2] [00] +16:58:20 [ 41] [ 8] [19529001] +16:58:20 [ 49] [ 3] [418] +16:58:20 [ 54] [ 40] [1001418C0000086220481002418C000008622048] +16:58:20 ============================================================================ +16:58:20 Calculate Source COMM Id = 5 +16:58:20 ============================================================================ +16:58:20 + + +waiting on router queue for slot.... +16:58:29 ============================================================================ +16:58:29 Slot Id : <416> +16:58:29 Transaction Type : REQUEST +16:58:29 Received From : +16:58:29 ============================================================================ +16:58:29 FNo. Len. Field Value +16:58:29 ============================================================================ +16:58:29 [ 1] [ 4] [0800] +16:58:29 [ 2] [ 5] [02531] +16:58:29 [ 3] [ 6] [579168] +16:58:29 [ 7] [ 10] [0320095829] +16:58:29 [ 11] [ 6] [807397] +16:58:29 [ 15] [ 10] [0320095829] +16:58:29 [ 37] [ 11] [57916807397] +16:58:29 [ 70] [ 3] [001] +16:58:29 ============================================================================ +16:58:29 + + +waiting on router queue for slot.... +16:58:29 ============================================================================ +16:58:29 Slot Id : <416> +16:58:29 Transaction Type : RESPONSE +16:58:29 Received From : +16:58:29 ============================================================================ +16:58:29 FNo. Len. Field Value +16:58:29 ============================================================================ +16:58:29 [ 1] [ 4] [0810] +16:58:29 [ 7] [ 10] [0320095829] +16:58:29 [ 11] [ 6] [807397] +16:58:29 [ 15] [ 4] [0320] +16:58:29 [ 37] [ 12] [57916807397] +16:58:29 [ 39] [ 2] [00] +16:58:29 [ 70] [ 3] [001] +16:58:29 ============================================================================ +16:58:29 Sending to : +16:58:29 ============================================================================ +16:58:29 + + +waiting on router queue for slot.... +16:58:34 ============================================================================ +16:58:34 Slot Id : <401> +16:58:34 Transaction Type : REQUEST +16:58:34 Received From : +16:58:34 ============================================================================ +16:58:34 FNo. Len. Field Value +16:58:34 ============================================================================ +16:58:34 [ 1] [ 4] [0800] +16:58:34 [ 7] [ 10] [0320095741] +16:58:34 [ 11] [ 6] [157347] +16:58:34 [ 70] [ 3] [301] +16:58:34 ============================================================================ +16:58:34 + + +waiting on router queue for slot.... +16:58:34 Sending to : +16:58:34 ============================================================================ +16:58:34 ============================================================================ +16:58:34 Slot Id : <401> +16:58:34 Transaction Type : RESPONSE +16:58:34 Received From : +16:58:34 ============================================================================ +16:58:34 FNo. Len. Field Value +16:58:34 ============================================================================ +16:58:34 [ 1] [ 4] [0810] +16:58:34 [ 7] [ 10] [0320095741] +16:58:34 [ 11] [ 6] [157347] +16:58:34 [ 39] [ 2] [00] +16:58:34 [ 70] [ 3] [301] +16:58:34 ============================================================================ +16:58:34 Calculate Source COMM Id = 2 +16:58:34 ============================================================================ +16:58:34 + + +waiting on router queue for slot.... +16:58:41 ============================================================================ +16:58:41 Slot Id : <381> +16:58:41 Transaction Type : REQUEST +16:58:41 Received From : +16:58:41 ============================================================================ +16:58:41 FNo. Len. Field Value +16:58:41 ============================================================================ +16:58:41 [ 1] [ 4] [0200] +16:58:41 [ 2] [ 16] [6688990060029756] +16:58:41 [ 3] [ 6] [300000] +16:58:41 [ 4] [ 12] [000000000000] +16:58:41 [ 7] [ 10] [0320165836] +16:58:41 [ 11] [ 6] [807890] +16:58:41 [ 12] [ 6] [165836] +16:58:41 [ 13] [ 4] [0320] +16:58:41 [ 15] [ 4] [0320] +16:58:41 [ 18] [ 4] [6011] +16:58:41 [ 22] [ 3] [900] +16:58:41 [ 25] [ 2] [02] +16:58:41 [ 28] [ 9] [D00000000] +16:58:41 [ 32] [ 6] [621354] +16:58:41 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:58:41 [ 37] [ 12] [507904154084] +16:58:41 [ 41] [ 8] [20001000] +16:58:41 [ 42] [ 15] [NATIVE ] +16:58:41 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +16:58:41 [ 49] [ 3] [418] +16:58:41 [ 52] [ 16] [4E0224F9D60442EB] +16:58:41 ============================================================================ +16:58:41 + + +waiting on router queue for slot.... +16:58:41 Sending to : +16:58:41 ============================================================================ +16:58:41 Sending to : +16:58:41 ============================================================================ +16:58:41 ============================================================================ +16:58:41 Slot Id : <381> +16:58:41 Transaction Type : REQUEST +16:58:41 Received From : +16:58:41 ============================================================================ +16:58:41 FNo. Len. Field Value +16:58:41 ============================================================================ +16:58:41 [ 1] [ 4] [0200] +16:58:41 [ 2] [ 16] [6688990060029756] +16:58:41 [ 3] [ 6] [300000] +16:58:41 [ 4] [ 12] [000000000000] +16:58:41 [ 7] [ 10] [0320165836] +16:58:41 [ 11] [ 6] [807890] +16:58:41 [ 12] [ 6] [165836] +16:58:41 [ 13] [ 4] [0320] +16:58:41 [ 15] [ 4] [0320] +16:58:41 [ 18] [ 4] [6011] +16:58:41 [ 22] [ 3] [900] +16:58:41 [ 25] [ 2] [02] +16:58:41 [ 28] [ 9] [D00000000] +16:58:41 [ 32] [ 6] [621354] +16:58:41 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:58:41 [ 37] [ 12] [507904154084] +16:58:41 [ 41] [ 8] [20001000] +16:58:41 [ 42] [ 15] [NATIVE ] +16:58:41 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +16:58:41 [ 49] [ 3] [418] +16:58:41 [ 52] [ 16] [4E0224F9D60442EB] +16:58:41 ============================================================================ +16:58:41 + + +waiting on router queue for slot.... +16:58:41 Sending to : +16:58:41 ============================================================================ +16:58:41 ============================================================================ +16:58:41 Slot Id : <381> +16:58:41 Transaction Type : REQUEST +16:58:41 Received From : +16:58:41 ============================================================================ +16:58:41 FNo. Len. Field Value +16:58:41 ============================================================================ +16:58:41 [ 1] [ 4] [0200] +16:58:41 [ 2] [ 16] [6688990060029756] +16:58:41 [ 3] [ 6] [300000] +16:58:41 [ 4] [ 12] [000000000000] +16:58:41 [ 7] [ 10] [0320165836] +16:58:41 [ 11] [ 6] [807890] +16:58:41 [ 12] [ 6] [165836] +16:58:41 [ 13] [ 4] [0320] +16:58:41 [ 15] [ 4] [0320] +16:58:41 [ 18] [ 4] [6011] +16:58:41 [ 22] [ 3] [900] +16:58:41 [ 25] [ 2] [02] +16:58:41 [ 28] [ 9] [D00000000] +16:58:41 [ 32] [ 6] [621354] +16:58:41 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:58:41 [ 37] [ 12] [507904154084] +16:58:41 [ 41] [ 8] [20001000] +16:58:41 [ 42] [ 15] [NATIVE ] +16:58:41 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +16:58:41 [ 49] [ 3] [418] +16:58:41 [ 52] [ 16] [C64C4AB3657E9253] +16:58:41 ============================================================================ +16:58:41 + + +waiting on router queue for slot.... +16:58:41 Sending to : <4> +16:58:41 ============================================================================ +16:58:41 ============================================================================ +16:58:41 Slot Id : <381> +16:58:41 Transaction Type : RESPONSE +16:58:41 Received From : +16:58:41 ============================================================================ +16:58:41 FNo. Len. Field Value +16:58:41 ============================================================================ +16:58:41 [ 1] [ 4] [0210] +16:58:41 [ 2] [ 16] [6688990060029756] +16:58:41 [ 3] [ 6] [300000] +16:58:41 [ 4] [ 12] [000000000000] +16:58:41 [ 7] [ 10] [0320165836] +16:58:41 [ 11] [ 6] [807890] +16:58:41 [ 12] [ 6] [165836] +16:58:41 [ 13] [ 4] [0320] +16:58:41 [ 15] [ 4] [0320] +16:58:41 [ 18] [ 4] [6011] +16:58:41 [ 22] [ 3] [021] +16:58:41 [ 32] [ 6] [621354] +16:58:41 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:58:41 [ 37] [ 12] [507904154084] +16:58:41 [ 38] [ 6] [165631] +16:58:41 [ 39] [ 2] [55] +16:58:41 [ 41] [ 8] [20001000] +16:58:41 [ 49] [ 3] [418] +16:58:41 ============================================================================ +16:58:41 Sending to : +16:58:41 ============================================================================ +16:58:41 + + +waiting on router queue for slot.... +16:58:42 ============================================================================ +16:58:42 Slot Id : <381> +16:58:42 Transaction Type : RESPONSE +16:58:42 Received From : +16:58:42 ============================================================================ +16:58:42 FNo. Len. Field Value +16:58:42 ============================================================================ +16:58:42 [ 1] [ 4] [0210] +16:58:42 [ 2] [ 16] [6688990060029756] +16:58:42 [ 3] [ 6] [300000] +16:58:42 [ 4] [ 12] [000000000000] +16:58:42 [ 7] [ 10] [0320165836] +16:58:42 [ 11] [ 6] [807890] +16:58:42 [ 12] [ 6] [165836] +16:58:42 [ 13] [ 4] [0320] +16:58:42 [ 15] [ 4] [0320] +16:58:42 [ 18] [ 4] [6011] +16:58:42 [ 22] [ 3] [021] +16:58:42 [ 32] [ 6] [621354] +16:58:42 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:58:42 [ 37] [ 12] [507904154084] +16:58:42 [ 38] [ 6] [165631] +16:58:42 [ 39] [ 2] [55] +16:58:42 [ 41] [ 8] [20001000] +16:58:42 [ 49] [ 3] [418] +16:58:42 ============================================================================ +16:58:42 Calculate Source COMM Id = 0 +16:58:42 ============================================================================ +16:58:42 + + +waiting on router queue for slot.... +16:58:44 ============================================================================ +16:58:44 Slot Id : <420> +16:58:44 Transaction Type : REQUEST +16:58:44 Received From : +16:58:44 ============================================================================ +16:58:44 FNo. Len. Field Value +16:58:44 ============================================================================ +16:58:44 [ 1] [ 4] [0200] +16:58:44 [ 2] [ 16] [6213544002226402] +16:58:44 [ 3] [ 6] [010000] +16:58:44 [ 4] [ 12] [000054000000] +16:58:44 [ 7] [ 10] [0320165634] +16:58:44 [ 11] [ 6] [952670] +16:58:44 [ 12] [ 6] [165634] +16:58:44 [ 13] [ 4] [0320] +16:58:44 [ 15] [ 4] [0320] +16:58:44 [ 18] [ 4] [6011] +16:58:44 [ 19] [ 3] [418] +16:58:44 [ 22] [ 3] [021] +16:58:44 [ 25] [ 2] [01] +16:58:44 [ 28] [ 9] [D00002000] +16:58:44 [ 32] [ 6] [668899] +16:58:44 [ 35] [ 32] [6213544002226402=491212012640982] +16:58:44 [ 37] [ 12] [507902025642] +16:58:44 [ 41] [ 8] [03414002] +16:58:44 [ 42] [ 15] [APT ] +16:58:44 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:58:44 [ 49] [ 3] [418] +16:58:44 [ 52] [ 16] [7269AA37330D02E2] +16:58:44 ============================================================================ +16:58:44 + + +waiting on router queue for slot.... +16:58:44 Sending to : +16:58:44 ============================================================================ +16:58:44 Sending to : +16:58:44 ============================================================================ +16:58:45 ============================================================================ +16:58:45 Slot Id : <420> +16:58:45 Transaction Type : REQUEST +16:58:45 Received From : +16:58:45 ============================================================================ +16:58:45 FNo. Len. Field Value +16:58:45 ============================================================================ +16:58:45 [ 1] [ 4] [0200] +16:58:45 [ 2] [ 16] [6213544002226402] +16:58:45 [ 3] [ 6] [010000] +16:58:45 [ 4] [ 12] [000054000000] +16:58:45 [ 7] [ 10] [0320165634] +16:58:45 [ 11] [ 6] [952670] +16:58:45 [ 12] [ 6] [165634] +16:58:45 [ 13] [ 4] [0320] +16:58:45 [ 15] [ 4] [0320] +16:58:45 [ 18] [ 4] [6011] +16:58:45 [ 19] [ 3] [418] +16:58:45 [ 22] [ 3] [021] +16:58:45 [ 25] [ 2] [01] +16:58:45 [ 28] [ 9] [D00002000] +16:58:45 [ 32] [ 6] [668899] +16:58:45 [ 35] [ 32] [6213544002226402=491212012640982] +16:58:45 [ 37] [ 12] [507902025642] +16:58:45 [ 41] [ 8] [03414002] +16:58:45 [ 42] [ 15] [APT ] +16:58:45 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:58:45 [ 49] [ 3] [418] +16:58:45 [ 52] [ 16] [7269AA37330D02E2] +16:58:45 ============================================================================ +16:58:45 + + +waiting on router queue for slot.... +16:58:45 Sending to : +16:58:45 ============================================================================ +16:58:45 ============================================================================ +16:58:45 Slot Id : <420> +16:58:45 Transaction Type : REQUEST +16:58:45 Received From : +16:58:45 ============================================================================ +16:58:45 FNo. Len. Field Value +16:58:45 ============================================================================ +16:58:45 [ 1] [ 4] [0200] +16:58:45 [ 2] [ 16] [6213544002226402] +16:58:45 [ 3] [ 6] [010000] +16:58:45 [ 4] [ 12] [000054000000] +16:58:45 [ 7] [ 10] [0320165634] +16:58:45 [ 11] [ 6] [952670] +16:58:45 [ 12] [ 6] [165634] +16:58:45 [ 13] [ 4] [0320] +16:58:45 [ 15] [ 4] [0320] +16:58:45 [ 18] [ 4] [6011] +16:58:45 [ 19] [ 3] [418] +16:58:45 [ 22] [ 3] [021] +16:58:45 [ 25] [ 2] [01] +16:58:45 [ 28] [ 9] [D00002000] +16:58:45 [ 32] [ 6] [668899] +16:58:45 [ 35] [ 32] [6213544002226402=491212012640982] +16:58:45 [ 37] [ 12] [507902025642] +16:58:45 [ 41] [ 8] [03414002] +16:58:45 [ 42] [ 15] [APT ] +16:58:45 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:58:45 [ 49] [ 3] [418] +16:58:45 [ 52] [ 16] [FE21AD94A6F5D3A8] +16:58:45 ============================================================================ +16:58:45 + + +waiting on router queue for slot.... +16:58:45 Sending to : <0> +16:58:45 ============================================================================ +16:58:45 ============================================================================ +16:58:45 Slot Id : <420> +16:58:45 Transaction Type : RESPONSE +16:58:45 Received From : +16:58:45 ============================================================================ +16:58:45 FNo. Len. Field Value +16:58:45 ============================================================================ +16:58:45 [ 1] [ 4] [0210] +16:58:45 [ 2] [ 16] [6213544002226402] +16:58:45 [ 3] [ 6] [010000] +16:58:45 [ 4] [ 12] [000054000000] +16:58:45 [ 7] [ 10] [0320165634] +16:58:45 [ 11] [ 6] [952670] +16:58:45 [ 12] [ 6] [165634] +16:58:45 [ 13] [ 4] [0320] +16:58:45 [ 15] [ 4] [0320] +16:58:45 [ 18] [ 4] [6011] +16:58:45 [ 19] [ 3] [418] +16:58:45 [ 32] [ 6] [668899] +16:58:45 [ 35] [ 32] [6213544002226402=491212012640982] +16:58:45 [ 37] [ 12] [507902025642] +16:58:45 [ 38] [ 6] [159810] +16:58:45 [ 39] [ 2] [00] +16:58:45 [ 41] [ 8] [03414002] +16:58:45 [ 49] [ 3] [418] +16:58:45 [ 54] [ 40] [0001418C0000069327620002418C000006932762] +16:58:45 ============================================================================ +16:58:45 Sending to : +16:58:45 ============================================================================ +16:58:45 + + +waiting on router queue for slot.... +16:58:47 ============================================================================ +16:58:47 Slot Id : <420> +16:58:47 Transaction Type : RESPONSE +16:58:47 Received From : +16:58:47 ============================================================================ +16:58:47 FNo. Len. Field Value +16:58:47 ============================================================================ +16:58:47 [ 1] [ 4] [0210] +16:58:47 [ 2] [ 16] [6213544002226402] +16:58:47 [ 3] [ 6] [010000] +16:58:47 [ 4] [ 12] [000054000000] +16:58:47 [ 7] [ 10] [0320165634] +16:58:47 [ 11] [ 6] [952670] +16:58:47 [ 12] [ 6] [165634] +16:58:47 [ 13] [ 4] [0320] +16:58:47 [ 15] [ 4] [0320] +16:58:47 [ 18] [ 4] [6011] +16:58:47 [ 19] [ 3] [418] +16:58:47 [ 32] [ 6] [668899] +16:58:47 [ 35] [ 32] [6213544002226402=491212012640982] +16:58:47 [ 37] [ 12] [507902025642] +16:58:47 [ 38] [ 6] [159810] +16:58:47 [ 39] [ 2] [00] +16:58:47 [ 41] [ 8] [03414002] +16:58:47 [ 49] [ 3] [418] +16:58:47 [ 54] [ 40] [0001418C0000069327620002418C000006932762] +16:58:47 ============================================================================ +16:58:47 Calculate Source COMM Id = 4 +16:58:47 ============================================================================ +16:58:47 + + +waiting on router queue for slot.... +16:58:47 ============================================================================ +16:58:47 Slot Id : <415> +16:58:47 Transaction Type : REQUEST +16:58:47 Received From : +16:58:47 ============================================================================ +16:58:47 FNo. Len. Field Value +16:58:47 ============================================================================ +16:58:47 [ 1] [ 4] [0200] +16:58:47 [ 2] [ 16] [6213544001608725] +16:58:47 [ 3] [ 6] [310000] +16:58:47 [ 4] [ 12] [000000000000] +16:58:47 [ 7] [ 10] [0320170634] +16:58:47 [ 11] [ 6] [240487] +16:58:47 [ 12] [ 6] [170634] +16:58:47 [ 13] [ 4] [0320] +16:58:47 [ 14] [ 4] [4912] +16:58:47 [ 15] [ 4] [0320] +16:58:47 [ 18] [ 4] [6011] +16:58:47 [ 22] [ 3] [900] +16:58:47 [ 25] [ 2] [02] +16:58:47 [ 28] [ 9] [000000000] +16:58:47 [ 32] [ 6] [220699] +16:58:47 [ 35] [ 32] [6213544001608725=491212010872686] +16:58:47 [ 37] [ 12] [507900360231] +16:58:47 [ 41] [ 8] [05000300] +16:58:47 [ 42] [ 15] [APTRA ] +16:58:47 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:58:47 [ 49] [ 3] [418] +16:58:47 [ 52] [ 16] [EEF53067FD7DCE01] +16:58:47 ============================================================================ +16:58:47 + + +waiting on router queue for slot.... +16:58:47 Sending to : +16:58:47 ============================================================================ +16:58:47 Sending to : +16:58:47 ============================================================================ +16:58:47 ============================================================================ +16:58:47 Slot Id : <415> +16:58:47 Transaction Type : REQUEST +16:58:47 Received From : +16:58:47 ============================================================================ +16:58:47 FNo. Len. Field Value +16:58:47 ============================================================================ +16:58:47 [ 1] [ 4] [0200] +16:58:47 [ 2] [ 16] [6213544001608725] +16:58:47 [ 3] [ 6] [310000] +16:58:47 [ 4] [ 12] [000000000000] +16:58:47 [ 7] [ 10] [0320170634] +16:58:47 [ 11] [ 6] [240487] +16:58:47 [ 12] [ 6] [170634] +16:58:47 [ 13] [ 4] [0320] +16:58:47 [ 14] [ 4] [4912] +16:58:47 [ 15] [ 4] [0320] +16:58:47 [ 18] [ 4] [6011] +16:58:47 [ 22] [ 3] [900] +16:58:47 [ 25] [ 2] [02] +16:58:47 [ 28] [ 9] [000000000] +16:58:47 [ 32] [ 6] [220699] +16:58:47 [ 35] [ 32] [6213544001608725=491212010872686] +16:58:47 [ 37] [ 12] [507900360231] +16:58:47 [ 41] [ 8] [05000300] +16:58:47 [ 42] [ 15] [APTRA ] +16:58:47 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:58:47 [ 49] [ 3] [418] +16:58:47 [ 52] [ 16] [EEF53067FD7DCE01] +16:58:47 ============================================================================ +16:58:47 + + +waiting on router queue for slot.... +16:58:47 Sending to : +16:58:47 ============================================================================ +16:58:47 ============================================================================ +16:58:47 Slot Id : <415> +16:58:47 Transaction Type : REQUEST +16:58:47 Received From : +16:58:47 ============================================================================ +16:58:47 FNo. Len. Field Value +16:58:47 ============================================================================ +16:58:47 [ 1] [ 4] [0200] +16:58:47 [ 2] [ 16] [6213544001608725] +16:58:47 [ 3] [ 6] [310000] +16:58:47 [ 4] [ 12] [000000000000] +16:58:47 [ 7] [ 10] [0320170634] +16:58:47 [ 11] [ 6] [240487] +16:58:47 [ 12] [ 6] [170634] +16:58:47 [ 13] [ 4] [0320] +16:58:47 [ 14] [ 4] [4912] +16:58:47 [ 15] [ 4] [0320] +16:58:47 [ 18] [ 4] [6011] +16:58:47 [ 22] [ 3] [900] +16:58:47 [ 25] [ 2] [02] +16:58:47 [ 28] [ 9] [000000000] +16:58:47 [ 32] [ 6] [220699] +16:58:47 [ 35] [ 32] [6213544001608725=491212010872686] +16:58:47 [ 37] [ 12] [507900360231] +16:58:47 [ 41] [ 8] [05000300] +16:58:47 [ 42] [ 15] [APTRA ] +16:58:47 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:58:47 [ 49] [ 3] [418] +16:58:47 [ 52] [ 16] [33ACAD09F5BA52DB] +16:58:47 ============================================================================ +16:58:47 + + +waiting on router queue for slot.... +16:58:47 Sending to : <0> +16:58:47 ============================================================================ +16:58:48 ============================================================================ +16:58:48 Slot Id : <415> +16:58:48 Transaction Type : RESPONSE +16:58:48 Received From : +16:58:48 ============================================================================ +16:58:48 FNo. Len. Field Value +16:58:48 ============================================================================ +16:58:48 [ 1] [ 4] [0210] +16:58:48 [ 2] [ 16] [6213544001608725] +16:58:48 [ 3] [ 6] [310000] +16:58:48 [ 4] [ 12] [000000000000] +16:58:48 [ 7] [ 10] [0320170634] +16:58:48 [ 11] [ 6] [240487] +16:58:48 [ 12] [ 6] [170634] +16:58:48 [ 13] [ 4] [0320] +16:58:48 [ 15] [ 4] [0320] +16:58:48 [ 18] [ 4] [6011] +16:58:48 [ 32] [ 6] [220699] +16:58:48 [ 35] [ 32] [6213544001608725=491212010872686] +16:58:48 [ 37] [ 12] [507900360231] +16:58:48 [ 38] [ 6] [606678] +16:58:48 [ 39] [ 2] [00] +16:58:48 [ 41] [ 8] [05000300] +16:58:48 [ 49] [ 3] [418] +16:58:48 [ 54] [ 40] [0001418C0000688991320002418C000068899132] +16:58:48 ============================================================================ +16:58:48 Sending to : +16:58:48 ============================================================================ +16:58:48 + + +waiting on router queue for slot.... +16:58:50 ============================================================================ +16:58:50 Slot Id : <415> +16:58:50 Transaction Type : RESPONSE +16:58:50 Received From : +16:58:50 ============================================================================ +16:58:50 FNo. Len. Field Value +16:58:50 ============================================================================ +16:58:50 [ 1] [ 4] [0210] +16:58:50 [ 2] [ 16] [6213544001608725] +16:58:50 [ 3] [ 6] [310000] +16:58:50 [ 4] [ 12] [000000000000] +16:58:50 [ 7] [ 10] [0320170634] +16:58:50 [ 11] [ 6] [240487] +16:58:50 [ 12] [ 6] [170634] +16:58:50 [ 13] [ 4] [0320] +16:58:50 [ 15] [ 4] [0320] +16:58:50 [ 18] [ 4] [6011] +16:58:50 [ 32] [ 6] [220699] +16:58:50 [ 35] [ 32] [6213544001608725=491212010872686] +16:58:50 [ 37] [ 12] [507900360231] +16:58:50 [ 38] [ 6] [606678] +16:58:50 [ 39] [ 2] [00] +16:58:50 [ 41] [ 8] [05000300] +16:58:50 [ 49] [ 3] [418] +16:58:50 [ 54] [ 40] [0001418C0000688991320002418C000068899132] +16:58:50 ============================================================================ +16:58:50 Calculate Source COMM Id = 1 +16:58:50 ============================================================================ +16:58:50 + + +waiting on router queue for slot.... +16:58:50 ============================================================================ +16:58:50 Slot Id : <433> +16:58:50 Transaction Type : REQUEST +16:58:50 Received From : +16:58:50 ============================================================================ +16:58:50 FNo. Len. Field Value +16:58:50 ============================================================================ +16:58:50 [ 1] [ 4] [0800] +16:58:50 [ 7] [ 10] [0320095757] +16:58:50 [ 11] [ 6] [157348] +16:58:50 [ 70] [ 3] [301] +16:58:50 ============================================================================ +16:58:50 + + +waiting on router queue for slot.... +16:58:50 Sending to : +16:58:50 ============================================================================ +16:58:50 ============================================================================ +16:58:50 Slot Id : <433> +16:58:50 Transaction Type : RESPONSE +16:58:50 Received From : +16:58:50 ============================================================================ +16:58:50 FNo. Len. Field Value +16:58:50 ============================================================================ +16:58:50 [ 1] [ 4] [0810] +16:58:50 [ 7] [ 10] [0320095757] +16:58:50 [ 11] [ 6] [157348] +16:58:50 [ 39] [ 2] [00] +16:58:50 [ 70] [ 3] [301] +16:58:50 ============================================================================ +16:58:50 Calculate Source COMM Id = 2 +16:58:50 ============================================================================ +16:58:50 + + +waiting on router queue for slot.... +16:59:00 ============================================================================ +16:59:00 Slot Id : <398> +16:59:00 Transaction Type : REQUEST +16:59:00 Received From : +16:59:00 ============================================================================ +16:59:00 FNo. Len. Field Value +16:59:00 ============================================================================ +16:59:00 [ 1] [ 4] [0800] +16:59:00 [ 7] [ 10] [0320095807] +16:59:00 [ 11] [ 6] [157349] +16:59:00 [ 70] [ 3] [301] +16:59:00 ============================================================================ +16:59:00 + + +waiting on router queue for slot.... +16:59:00 Sending to : +16:59:00 ============================================================================ +16:59:00 ============================================================================ +16:59:00 Slot Id : <398> +16:59:00 Transaction Type : RESPONSE +16:59:00 Received From : +16:59:00 ============================================================================ +16:59:00 FNo. Len. Field Value +16:59:00 ============================================================================ +16:59:00 [ 1] [ 4] [0810] +16:59:00 [ 7] [ 10] [0320095807] +16:59:00 [ 11] [ 6] [157349] +16:59:00 [ 39] [ 2] [00] +16:59:00 [ 70] [ 3] [301] +16:59:00 ============================================================================ +16:59:00 Calculate Source COMM Id = 2 +16:59:00 ============================================================================ +16:59:00 + + +waiting on router queue for slot.... +16:59:07 ============================================================================ +16:59:07 Slot Id : <425> +16:59:07 Transaction Type : REQUEST +16:59:07 Received From : +16:59:07 ============================================================================ +16:59:07 FNo. Len. Field Value +16:59:07 ============================================================================ +16:59:07 [ 1] [ 4] [0200] +16:59:07 [ 2] [ 16] [6688990103291306] +16:59:07 [ 3] [ 6] [010000] +16:59:07 [ 4] [ 12] [000100000000] +16:59:07 [ 7] [ 10] [0320165902] +16:59:07 [ 11] [ 6] [808003] +16:59:07 [ 12] [ 6] [165902] +16:59:07 [ 13] [ 4] [0320] +16:59:07 [ 15] [ 4] [0320] +16:59:07 [ 18] [ 4] [6011] +16:59:07 [ 22] [ 3] [900] +16:59:07 [ 25] [ 2] [02] +16:59:07 [ 28] [ 9] [D00002000] +16:59:07 [ 32] [ 6] [621354] +16:59:07 [ 35] [ 37] [6688990103291306=42121231130645500000] +16:59:07 [ 37] [ 12] [507903499637] +16:59:07 [ 41] [ 8] [06002200] +16:59:07 [ 42] [ 15] [NATIVE ] +16:59:07 [ 43] [ 40] [Beng Market Beng LAO] +16:59:07 [ 49] [ 3] [418] +16:59:07 [ 52] [ 16] [38E4519FF4022ECA] +16:59:07 ============================================================================ +16:59:07 + + +waiting on router queue for slot.... +16:59:07 Sending to : +16:59:07 ============================================================================ +16:59:07 Sending to : +16:59:07 ============================================================================ +16:59:08 ============================================================================ +16:59:08 Slot Id : <425> +16:59:08 Transaction Type : REQUEST +16:59:08 Received From : +16:59:08 ============================================================================ +16:59:08 FNo. Len. Field Value +16:59:08 ============================================================================ +16:59:08 [ 1] [ 4] [0200] +16:59:08 [ 2] [ 16] [6688990103291306] +16:59:08 [ 3] [ 6] [010000] +16:59:08 [ 4] [ 12] [000100000000] +16:59:08 [ 7] [ 10] [0320165902] +16:59:08 [ 11] [ 6] [808003] +16:59:08 [ 12] [ 6] [165902] +16:59:08 [ 13] [ 4] [0320] +16:59:08 [ 15] [ 4] [0320] +16:59:08 [ 18] [ 4] [6011] +16:59:08 [ 22] [ 3] [900] +16:59:08 [ 25] [ 2] [02] +16:59:08 [ 28] [ 9] [D00002000] +16:59:08 [ 32] [ 6] [621354] +16:59:08 [ 35] [ 37] [6688990103291306=42121231130645500000] +16:59:08 [ 37] [ 12] [507903499637] +16:59:08 [ 41] [ 8] [06002200] +16:59:08 [ 42] [ 15] [NATIVE ] +16:59:08 [ 43] [ 40] [Beng Market Beng LAO] +16:59:08 [ 49] [ 3] [418] +16:59:08 [ 52] [ 16] [38E4519FF4022ECA] +16:59:08 ============================================================================ +16:59:08 + + +waiting on router queue for slot.... +16:59:08 Sending to : +16:59:08 ============================================================================ +16:59:08 ============================================================================ +16:59:08 Slot Id : <425> +16:59:08 Transaction Type : REQUEST +16:59:08 Received From : +16:59:08 ============================================================================ +16:59:08 FNo. Len. Field Value +16:59:08 ============================================================================ +16:59:08 [ 1] [ 4] [0200] +16:59:08 [ 2] [ 16] [6688990103291306] +16:59:08 [ 3] [ 6] [010000] +16:59:08 [ 4] [ 12] [000100000000] +16:59:08 [ 7] [ 10] [0320165902] +16:59:08 [ 11] [ 6] [808003] +16:59:08 [ 12] [ 6] [165902] +16:59:08 [ 13] [ 4] [0320] +16:59:08 [ 15] [ 4] [0320] +16:59:08 [ 18] [ 4] [6011] +16:59:08 [ 22] [ 3] [900] +16:59:08 [ 25] [ 2] [02] +16:59:08 [ 28] [ 9] [D00002000] +16:59:08 [ 32] [ 6] [621354] +16:59:08 [ 35] [ 37] [6688990103291306=42121231130645500000] +16:59:08 [ 37] [ 12] [507903499637] +16:59:08 [ 41] [ 8] [06002200] +16:59:08 [ 42] [ 15] [NATIVE ] +16:59:08 [ 43] [ 40] [Beng Market Beng LAO] +16:59:08 [ 49] [ 3] [418] +16:59:08 [ 52] [ 16] [607F46DA2443E332] +16:59:08 ============================================================================ +16:59:08 + + +waiting on router queue for slot.... +16:59:08 Sending to : <4> +16:59:08 ============================================================================ +16:59:09 ============================================================================ +16:59:09 Slot Id : <425> +16:59:09 Transaction Type : RESPONSE +16:59:09 Received From : +16:59:09 ============================================================================ +16:59:09 FNo. Len. Field Value +16:59:09 ============================================================================ +16:59:09 [ 1] [ 4] [0210] +16:59:09 [ 2] [ 16] [6688990103291306] +16:59:09 [ 3] [ 6] [010000] +16:59:09 [ 4] [ 12] [000100000000] +16:59:09 [ 11] [ 6] [808003] +16:59:09 [ 12] [ 6] [165902] +16:59:09 [ 15] [ 4] [0320] +16:59:09 [ 18] [ 4] [6011] +16:59:09 [ 32] [ 6] [621354] +16:59:09 [ 35] [ 37] [6688990103291306=42121231130645500000] +16:59:09 [ 37] [ 12] [507903499637] +16:59:09 [ 38] [ 6] [009811] +16:59:09 [ 39] [ 2] [00] +16:59:09 [ 41] [ 8] [06002200] +16:59:09 [ 49] [ 3] [418] +16:59:09 [ 54] [ 20] [0002418C000217302559] +16:59:09 ============================================================================ +16:59:09 Sending to : +16:59:09 ============================================================================ +16:59:09 + + +waiting on router queue for slot.... +16:59:10 ============================================================================ +16:59:10 Slot Id : <425> +16:59:10 Transaction Type : RESPONSE +16:59:10 Received From : +16:59:10 ============================================================================ +16:59:10 FNo. Len. Field Value +16:59:10 ============================================================================ +16:59:10 [ 1] [ 4] [0210] +16:59:10 [ 2] [ 16] [6688990103291306] +16:59:10 [ 3] [ 6] [010000] +16:59:10 [ 4] [ 12] [000100000000] +16:59:10 [ 11] [ 6] [808003] +16:59:10 [ 12] [ 6] [165902] +16:59:10 [ 15] [ 4] [0320] +16:59:10 [ 18] [ 4] [6011] +16:59:10 [ 32] [ 6] [621354] +16:59:10 [ 35] [ 37] [6688990103291306=42121231130645500000] +16:59:10 [ 37] [ 12] [507903499637] +16:59:10 [ 38] [ 6] [009811] +16:59:10 [ 39] [ 2] [00] +16:59:10 [ 41] [ 8] [06002200] +16:59:10 [ 49] [ 3] [418] +16:59:10 [ 54] [ 20] [0002418C000217302559] +16:59:10 ============================================================================ +16:59:10 Calculate Source COMM Id = 0 +16:59:10 ============================================================================ +16:59:10 + + +waiting on router queue for slot.... +16:59:13 ============================================================================ +16:59:13 Slot Id : <364> +16:59:13 Transaction Type : REQUEST +16:59:13 Received From : +16:59:13 ============================================================================ +16:59:13 FNo. Len. Field Value +16:59:13 ============================================================================ +16:59:13 [ 1] [ 4] [0800] +16:59:13 [ 7] [ 10] [0320095818] +16:59:13 [ 11] [ 6] [157350] +16:59:13 [ 70] [ 3] [301] +16:59:13 ============================================================================ +16:59:13 + + +waiting on router queue for slot.... +16:59:13 Sending to : +16:59:13 ============================================================================ +16:59:13 ============================================================================ +16:59:13 Slot Id : <364> +16:59:13 Transaction Type : RESPONSE +16:59:13 Received From : +16:59:13 ============================================================================ +16:59:13 FNo. Len. Field Value +16:59:13 ============================================================================ +16:59:13 [ 1] [ 4] [0810] +16:59:13 [ 7] [ 10] [0320095818] +16:59:13 [ 11] [ 6] [157350] +16:59:13 [ 39] [ 2] [00] +16:59:13 [ 70] [ 3] [301] +16:59:13 ============================================================================ +16:59:13 Calculate Source COMM Id = 2 +16:59:13 ============================================================================ +16:59:13 + + +waiting on router queue for slot.... +16:59:14 ============================================================================ +16:59:14 Slot Id : <388> +16:59:14 Transaction Type : REQUEST +16:59:14 Received From : +16:59:14 ============================================================================ +16:59:14 FNo. Len. Field Value +16:59:14 ============================================================================ +16:59:14 [ 1] [ 4] [0200] +16:59:14 [ 2] [ 16] [6688990104895600] +16:59:14 [ 3] [ 6] [011000] +16:59:14 [ 4] [ 12] [000040000000] +16:59:14 [ 7] [ 10] [0320165910] +16:59:14 [ 11] [ 6] [808040] +16:59:14 [ 12] [ 6] [165910] +16:59:14 [ 13] [ 4] [0320] +16:59:14 [ 15] [ 4] [0320] +16:59:14 [ 18] [ 4] [6011] +16:59:14 [ 22] [ 3] [900] +16:59:14 [ 25] [ 2] [02] +16:59:14 [ 28] [ 9] [D00002000] +16:59:14 [ 32] [ 6] [621354] +16:59:14 [ 35] [ 37] [6688990104895600=43061231560036800000] +16:59:14 [ 37] [ 12] [507902486013] +16:59:14 [ 41] [ 8] [05003100] +16:59:14 [ 42] [ 15] [NATIVE ] +16:59:14 [ 43] [ 40] [LPB BRANCH 02 LuangprabangLAO] +16:59:14 [ 49] [ 3] [418] +16:59:14 [ 52] [ 16] [DCE11FEFEE9345DB] +16:59:14 ============================================================================ +16:59:14 + + +waiting on router queue for slot.... +16:59:14 Sending to : +16:59:14 ============================================================================ +16:59:14 Sending to : +16:59:14 ============================================================================ +16:59:15 ============================================================================ +16:59:15 Slot Id : <388> +16:59:15 Transaction Type : REQUEST +16:59:15 Received From : +16:59:15 ============================================================================ +16:59:15 FNo. Len. Field Value +16:59:15 ============================================================================ +16:59:15 [ 1] [ 4] [0200] +16:59:15 [ 2] [ 16] [6688990104895600] +16:59:15 [ 3] [ 6] [011000] +16:59:15 [ 4] [ 12] [000040000000] +16:59:15 [ 7] [ 10] [0320165910] +16:59:15 [ 11] [ 6] [808040] +16:59:15 [ 12] [ 6] [165910] +16:59:15 [ 13] [ 4] [0320] +16:59:15 [ 15] [ 4] [0320] +16:59:15 [ 18] [ 4] [6011] +16:59:15 [ 22] [ 3] [900] +16:59:15 [ 25] [ 2] [02] +16:59:15 [ 28] [ 9] [D00002000] +16:59:15 [ 32] [ 6] [621354] +16:59:15 [ 35] [ 37] [6688990104895600=43061231560036800000] +16:59:15 [ 37] [ 12] [507902486013] +16:59:15 [ 41] [ 8] [05003100] +16:59:15 [ 42] [ 15] [NATIVE ] +16:59:15 [ 43] [ 40] [LPB BRANCH 02 LuangprabangLAO] +16:59:15 [ 49] [ 3] [418] +16:59:15 [ 52] [ 16] [DCE11FEFEE9345DB] +16:59:15 ============================================================================ +16:59:15 + + +waiting on router queue for slot.... +16:59:15 Sending to : +16:59:15 ============================================================================ +16:59:15 ============================================================================ +16:59:15 Slot Id : <388> +16:59:15 Transaction Type : REQUEST +16:59:15 Received From : +16:59:15 ============================================================================ +16:59:15 FNo. Len. Field Value +16:59:15 ============================================================================ +16:59:15 [ 1] [ 4] [0200] +16:59:15 [ 2] [ 16] [6688990104895600] +16:59:15 [ 3] [ 6] [011000] +16:59:15 [ 4] [ 12] [000040000000] +16:59:15 [ 7] [ 10] [0320165910] +16:59:15 [ 11] [ 6] [808040] +16:59:15 [ 12] [ 6] [165910] +16:59:15 [ 13] [ 4] [0320] +16:59:15 [ 15] [ 4] [0320] +16:59:15 [ 18] [ 4] [6011] +16:59:15 [ 22] [ 3] [900] +16:59:15 [ 25] [ 2] [02] +16:59:15 [ 28] [ 9] [D00002000] +16:59:15 [ 32] [ 6] [621354] +16:59:15 [ 35] [ 37] [6688990104895600=43061231560036800000] +16:59:15 [ 37] [ 12] [507902486013] +16:59:15 [ 41] [ 8] [05003100] +16:59:15 [ 42] [ 15] [NATIVE ] +16:59:15 [ 43] [ 40] [LPB BRANCH 02 LuangprabangLAO] +16:59:15 [ 49] [ 3] [418] +16:59:15 [ 52] [ 16] [1C5EBFBAF349A7A8] +16:59:15 ============================================================================ +16:59:15 + + +waiting on router queue for slot.... +16:59:15 Sending to : <4> +16:59:15 ============================================================================ +16:59:16 ============================================================================ +16:59:16 Slot Id : <388> +16:59:16 Transaction Type : RESPONSE +16:59:16 Received From : +16:59:16 ============================================================================ +16:59:16 FNo. Len. Field Value +16:59:16 ============================================================================ +16:59:16 [ 1] [ 4] [0210] +16:59:16 [ 2] [ 16] [6688990104895600] +16:59:16 [ 3] [ 6] [011000] +16:59:16 [ 4] [ 12] [000040000000] +16:59:16 [ 11] [ 6] [808040] +16:59:16 [ 12] [ 6] [165910] +16:59:16 [ 15] [ 4] [0320] +16:59:16 [ 18] [ 4] [6011] +16:59:16 [ 32] [ 6] [621354] +16:59:16 [ 35] [ 37] [6688990104895600=43061231560036800000] +16:59:16 [ 37] [ 12] [507902486013] +16:59:16 [ 38] [ 6] [192340] +16:59:16 [ 39] [ 2] [00] +16:59:16 [ 41] [ 8] [05003100] +16:59:16 [ 49] [ 3] [418] +16:59:16 [ 54] [ 20] [1002418C000135449640] +16:59:16 ============================================================================ +16:59:16 Sending to : +16:59:16 ============================================================================ +16:59:16 + + +waiting on router queue for slot.... +16:59:16 ============================================================================ +16:59:16 Slot Id : <409> +16:59:16 Transaction Type : REQUEST +16:59:16 Received From : +16:59:16 ============================================================================ +16:59:16 FNo. Len. Field Value +16:59:16 ============================================================================ +16:59:16 [ 1] [ 4] [0800] +16:59:16 [ 7] [ 10] [0320165903] +16:59:16 [ 11] [ 6] [070676] +16:59:16 [ 37] [ 12] [507916070676] +16:59:16 [ 70] [ 3] [ ] +16:59:16 ============================================================================ +16:59:16 + + +waiting on router queue for slot.... +16:59:16 Sending to : +16:59:16 ============================================================================ +16:59:16 ============================================================================ +16:59:16 Slot Id : <409> +16:59:16 Transaction Type : RESPONSE +16:59:16 Received From : +16:59:16 ============================================================================ +16:59:16 FNo. Len. Field Value +16:59:16 ============================================================================ +16:59:16 [ 1] [ 4] [0810] +16:59:16 [ 7] [ 10] [0320165903] +16:59:16 [ 11] [ 6] [070676] +16:59:16 [ 37] [ 12] [507916070676] +16:59:16 [ 39] [ 2] [91] +16:59:16 [ 70] [ 3] [ ] +16:59:16 ============================================================================ +16:59:16 Calculate Source COMM Id = 3 +16:59:16 ============================================================================ +16:59:16 + + +waiting on router queue for slot.... +16:59:17 ============================================================================ +16:59:17 Slot Id : <430> +16:59:17 Transaction Type : REQUEST +16:59:17 Received From : +16:59:17 ============================================================================ +16:59:17 FNo. Len. Field Value +16:59:17 ============================================================================ +16:59:17 [ 1] [ 4] [0200] +16:59:17 [ 2] [ 16] [6213544001608725] +16:59:17 [ 3] [ 6] [010000] +16:59:17 [ 4] [ 12] [000062000000] +16:59:17 [ 7] [ 10] [0320170704] +16:59:17 [ 11] [ 6] [240488] +16:59:17 [ 12] [ 6] [170704] +16:59:17 [ 13] [ 4] [0320] +16:59:17 [ 14] [ 4] [4912] +16:59:17 [ 15] [ 4] [0320] +16:59:17 [ 18] [ 4] [6011] +16:59:17 [ 22] [ 3] [900] +16:59:17 [ 25] [ 2] [02] +16:59:17 [ 28] [ 9] [D00002000] +16:59:17 [ 32] [ 6] [220699] +16:59:17 [ 35] [ 32] [6213544001608725=491212010872686] +16:59:17 [ 37] [ 12] [507900360232] +16:59:17 [ 41] [ 8] [05000300] +16:59:17 [ 42] [ 15] [APTRA ] +16:59:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:59:17 [ 49] [ 3] [418] +16:59:17 [ 52] [ 16] [EEF53067FD7DCE01] +16:59:17 ============================================================================ +16:59:17 + + +waiting on router queue for slot.... +16:59:17 Sending to : +16:59:17 ============================================================================ +16:59:17 Sending to : +16:59:17 ============================================================================ +16:59:17 ============================================================================ +16:59:17 Slot Id : <430> +16:59:17 Transaction Type : REQUEST +16:59:17 Received From : +16:59:17 ============================================================================ +16:59:17 FNo. Len. Field Value +16:59:17 ============================================================================ +16:59:17 [ 1] [ 4] [0200] +16:59:17 [ 2] [ 16] [6213544001608725] +16:59:17 [ 3] [ 6] [010000] +16:59:17 [ 4] [ 12] [000062000000] +16:59:17 [ 7] [ 10] [0320170704] +16:59:17 [ 11] [ 6] [240488] +16:59:17 [ 12] [ 6] [170704] +16:59:17 [ 13] [ 4] [0320] +16:59:17 [ 14] [ 4] [4912] +16:59:17 [ 15] [ 4] [0320] +16:59:17 [ 18] [ 4] [6011] +16:59:17 [ 22] [ 3] [900] +16:59:17 [ 25] [ 2] [02] +16:59:17 [ 28] [ 9] [D00002000] +16:59:17 [ 32] [ 6] [220699] +16:59:17 [ 35] [ 32] [6213544001608725=491212010872686] +16:59:17 [ 37] [ 12] [507900360232] +16:59:17 [ 41] [ 8] [05000300] +16:59:17 [ 42] [ 15] [APTRA ] +16:59:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:59:17 [ 49] [ 3] [418] +16:59:17 [ 52] [ 16] [EEF53067FD7DCE01] +16:59:17 ============================================================================ +16:59:17 + + +waiting on router queue for slot.... +16:59:17 Sending to : +16:59:17 ============================================================================ +16:59:17 ============================================================================ +16:59:17 Slot Id : <430> +16:59:17 Transaction Type : REQUEST +16:59:17 Received From : +16:59:17 ============================================================================ +16:59:17 FNo. Len. Field Value +16:59:17 ============================================================================ +16:59:17 [ 1] [ 4] [0200] +16:59:17 [ 2] [ 16] [6213544001608725] +16:59:17 [ 3] [ 6] [010000] +16:59:17 [ 4] [ 12] [000062000000] +16:59:17 [ 7] [ 10] [0320170704] +16:59:17 [ 11] [ 6] [240488] +16:59:17 [ 12] [ 6] [170704] +16:59:17 [ 13] [ 4] [0320] +16:59:17 [ 14] [ 4] [4912] +16:59:17 [ 15] [ 4] [0320] +16:59:17 [ 18] [ 4] [6011] +16:59:17 [ 22] [ 3] [900] +16:59:17 [ 25] [ 2] [02] +16:59:17 [ 28] [ 9] [D00002000] +16:59:17 [ 32] [ 6] [220699] +16:59:17 [ 35] [ 32] [6213544001608725=491212010872686] +16:59:17 [ 37] [ 12] [507900360232] +16:59:17 [ 41] [ 8] [05000300] +16:59:17 [ 42] [ 15] [APTRA ] +16:59:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +16:59:17 [ 49] [ 3] [418] +16:59:17 [ 52] [ 16] [33ACAD09F5BA52DB] +16:59:17 ============================================================================ +16:59:17 + + +waiting on router queue for slot.... +16:59:17 Sending to : <0> +16:59:17 ============================================================================ +16:59:17 ============================================================================ +16:59:17 Slot Id : <388> +16:59:17 Transaction Type : RESPONSE +16:59:17 Received From : +16:59:17 ============================================================================ +16:59:17 FNo. Len. Field Value +16:59:17 ============================================================================ +16:59:17 [ 1] [ 4] [0210] +16:59:17 [ 2] [ 16] [6688990104895600] +16:59:17 [ 3] [ 6] [011000] +16:59:17 [ 4] [ 12] [000040000000] +16:59:17 [ 11] [ 6] [808040] +16:59:17 [ 12] [ 6] [165910] +16:59:17 [ 15] [ 4] [0320] +16:59:17 [ 18] [ 4] [6011] +16:59:17 [ 32] [ 6] [621354] +16:59:17 [ 35] [ 37] [6688990104895600=43061231560036800000] +16:59:17 [ 37] [ 12] [507902486013] +16:59:17 [ 38] [ 6] [192340] +16:59:17 [ 39] [ 2] [00] +16:59:17 [ 41] [ 8] [05003100] +16:59:17 [ 49] [ 3] [418] +16:59:17 [ 54] [ 20] [1002418C000135449640] +16:59:17 ============================================================================ +16:59:17 Calculate Source COMM Id = 0 +16:59:17 ============================================================================ +16:59:17 + + +waiting on router queue for slot.... +16:59:18 ============================================================================ +16:59:18 Slot Id : <430> +16:59:18 Transaction Type : RESPONSE +16:59:18 Received From : +16:59:18 ============================================================================ +16:59:18 FNo. Len. Field Value +16:59:18 ============================================================================ +16:59:18 [ 1] [ 4] [0210] +16:59:18 [ 2] [ 16] [6213544001608725] +16:59:18 [ 3] [ 6] [010000] +16:59:18 [ 4] [ 12] [000062000000] +16:59:18 [ 7] [ 10] [0320170704] +16:59:18 [ 11] [ 6] [240488] +16:59:18 [ 12] [ 6] [170704] +16:59:18 [ 13] [ 4] [0320] +16:59:18 [ 15] [ 4] [0320] +16:59:18 [ 18] [ 4] [6011] +16:59:18 [ 32] [ 6] [220699] +16:59:18 [ 35] [ 32] [6213544001608725=491212010872686] +16:59:18 [ 37] [ 12] [507900360232] +16:59:18 [ 38] [ 6] [588393] +16:59:18 [ 39] [ 2] [00] +16:59:18 [ 41] [ 8] [05000300] +16:59:18 [ 49] [ 3] [418] +16:59:18 [ 54] [ 40] [0001418C0000066991320002418C000006699132] +16:59:18 ============================================================================ +16:59:18 Sending to : +16:59:18 ============================================================================ +16:59:18 + + +waiting on router queue for slot.... +16:59:19 ============================================================================ +16:59:19 Slot Id : <430> +16:59:19 Transaction Type : RESPONSE +16:59:19 Received From : +16:59:19 ============================================================================ +16:59:19 FNo. Len. Field Value +16:59:19 ============================================================================ +16:59:19 [ 1] [ 4] [0210] +16:59:19 [ 2] [ 16] [6213544001608725] +16:59:19 [ 3] [ 6] [010000] +16:59:19 [ 4] [ 12] [000062000000] +16:59:19 [ 7] [ 10] [0320170704] +16:59:19 [ 11] [ 6] [240488] +16:59:19 [ 12] [ 6] [170704] +16:59:19 [ 13] [ 4] [0320] +16:59:19 [ 15] [ 4] [0320] +16:59:19 [ 18] [ 4] [6011] +16:59:19 [ 32] [ 6] [220699] +16:59:19 [ 35] [ 32] [6213544001608725=491212010872686] +16:59:19 [ 37] [ 12] [507900360232] +16:59:19 [ 38] [ 6] [588393] +16:59:19 [ 39] [ 2] [00] +16:59:19 [ 41] [ 8] [05000300] +16:59:19 [ 49] [ 3] [418] +16:59:19 [ 54] [ 40] [0001418C0000066991320002418C000006699132] +16:59:19 ============================================================================ +16:59:19 Calculate Source COMM Id = 1 +16:59:19 ============================================================================ +16:59:19 + + +waiting on router queue for slot.... +16:59:20 ============================================================================ +16:59:20 Slot Id : <367> +16:59:20 Transaction Type : REQUEST +16:59:20 Received From : +16:59:20 ============================================================================ +16:59:20 FNo. Len. Field Value +16:59:20 ============================================================================ +16:59:20 [ 1] [ 4] [0800] +16:59:20 [ 7] [ 10] [0321001108] +16:59:20 [ 11] [ 6] [171108] +16:59:20 [ 37] [ 12] [57917171108] +16:59:20 [ 70] [ 3] [301] +16:59:20 ============================================================================ +16:59:20 + + +waiting on router queue for slot.... +16:59:20 Sending to : +16:59:20 ============================================================================ +16:59:20 ============================================================================ +16:59:20 Slot Id : <367> +16:59:20 Transaction Type : RESPONSE +16:59:20 Received From : +16:59:20 ============================================================================ +16:59:20 FNo. Len. Field Value +16:59:20 ============================================================================ +16:59:20 [ 1] [ 4] [0810] +16:59:20 [ 7] [ 10] [0321001108] +16:59:20 [ 11] [ 6] [171108] +16:59:20 [ 37] [ 12] [579171711080] +16:59:20 [ 39] [ 2] [00] +16:59:20 [ 70] [ 3] [810] +16:59:20 ============================================================================ +16:59:20 Calculate Source COMM Id = 6 +16:59:20 ============================================================================ +16:59:20 + + +waiting on router queue for slot.... +16:59:21 ============================================================================ +16:59:21 Slot Id : <441> +16:59:21 Transaction Type : REQUEST +16:59:21 Received From : +16:59:21 ============================================================================ +16:59:21 FNo. Len. Field Value +16:59:21 ============================================================================ +16:59:21 [ 1] [ 4] [0200] +16:59:21 [ 2] [ 16] [6213544002095781] +16:59:21 [ 3] [ 6] [011000] +16:59:21 [ 4] [ 12] [000050000000] +16:59:21 [ 7] [ 10] [0320165942] +16:59:21 [ 11] [ 6] [209133] +16:59:21 [ 12] [ 6] [165447] +16:59:21 [ 13] [ 4] [0320] +16:59:21 [ 14] [ 4] [4912] +16:59:21 [ 15] [ 4] [0320] +16:59:21 [ 18] [ 4] [6011] +16:59:21 [ 19] [ 3] [418] +16:59:21 [ 22] [ 3] [021] +16:59:21 [ 25] [ 2] [01] +16:59:21 [ 28] [ 9] [D00002000] +16:59:21 [ 32] [ 6] [198901] +16:59:21 [ 35] [ 32] [6213544002095781=491212019578706] +16:59:21 [ 37] [ 12] [507916209133] +16:59:21 [ 41] [ 8] [19529001] +16:59:21 [ 42] [ 15] [000000041952901] +16:59:21 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:59:21 [ 49] [ 3] [418] +16:59:21 [ 52] [ 16] [7CD2AA7B92484694] +16:59:21 ============================================================================ +16:59:21 + + +waiting on router queue for slot.... +16:59:21 Sending to : +16:59:21 ============================================================================ +16:59:21 Sending to : +16:59:21 ============================================================================ +16:59:21 ============================================================================ +16:59:21 Slot Id : <441> +16:59:21 Transaction Type : REQUEST +16:59:21 Received From : +16:59:21 ============================================================================ +16:59:21 FNo. Len. Field Value +16:59:21 ============================================================================ +16:59:21 [ 1] [ 4] [0200] +16:59:21 [ 2] [ 16] [6213544002095781] +16:59:21 [ 3] [ 6] [011000] +16:59:21 [ 4] [ 12] [000050000000] +16:59:21 [ 7] [ 10] [0320165942] +16:59:21 [ 11] [ 6] [209133] +16:59:21 [ 12] [ 6] [165447] +16:59:21 [ 13] [ 4] [0320] +16:59:21 [ 14] [ 4] [4912] +16:59:21 [ 15] [ 4] [0320] +16:59:21 [ 18] [ 4] [6011] +16:59:21 [ 19] [ 3] [418] +16:59:21 [ 22] [ 3] [021] +16:59:21 [ 25] [ 2] [01] +16:59:21 [ 28] [ 9] [D00002000] +16:59:21 [ 32] [ 6] [198901] +16:59:21 [ 35] [ 32] [6213544002095781=491212019578706] +16:59:21 [ 37] [ 12] [507916209133] +16:59:21 [ 41] [ 8] [19529001] +16:59:21 [ 42] [ 15] [000000041952901] +16:59:21 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:59:21 [ 49] [ 3] [418] +16:59:21 [ 52] [ 16] [7CD2AA7B92484694] +16:59:21 ============================================================================ +16:59:21 + + +waiting on router queue for slot.... +16:59:21 Sending to : +16:59:21 ============================================================================ +16:59:21 ============================================================================ +16:59:21 Slot Id : <441> +16:59:21 Transaction Type : REQUEST +16:59:21 Received From : +16:59:21 ============================================================================ +16:59:21 FNo. Len. Field Value +16:59:21 ============================================================================ +16:59:21 [ 1] [ 4] [0200] +16:59:21 [ 2] [ 16] [6213544002095781] +16:59:21 [ 3] [ 6] [011000] +16:59:21 [ 4] [ 12] [000050000000] +16:59:21 [ 7] [ 10] [0320165942] +16:59:21 [ 11] [ 6] [209133] +16:59:21 [ 12] [ 6] [165447] +16:59:21 [ 13] [ 4] [0320] +16:59:21 [ 14] [ 4] [4912] +16:59:21 [ 15] [ 4] [0320] +16:59:21 [ 18] [ 4] [6011] +16:59:21 [ 19] [ 3] [418] +16:59:21 [ 22] [ 3] [021] +16:59:21 [ 25] [ 2] [01] +16:59:21 [ 28] [ 9] [D00002000] +16:59:21 [ 32] [ 6] [198901] +16:59:21 [ 35] [ 32] [6213544002095781=491212019578706] +16:59:21 [ 37] [ 12] [507916209133] +16:59:21 [ 41] [ 8] [19529001] +16:59:21 [ 42] [ 15] [000000041952901] +16:59:21 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +16:59:21 [ 49] [ 3] [418] +16:59:21 [ 52] [ 16] [573305E47FE6686F] +16:59:21 ============================================================================ +16:59:21 + + +waiting on router queue for slot.... +16:59:21 Sending to : <0> +16:59:21 ============================================================================ +16:59:22 ============================================================================ +16:59:22 Slot Id : <441> +16:59:22 Transaction Type : RESPONSE +16:59:22 Received From : +16:59:22 ============================================================================ +16:59:22 FNo. Len. Field Value +16:59:22 ============================================================================ +16:59:22 [ 1] [ 4] [0210] +16:59:22 [ 2] [ 16] [6213544002095781] +16:59:22 [ 3] [ 6] [011000] +16:59:22 [ 4] [ 12] [000050000000] +16:59:22 [ 7] [ 10] [0320165942] +16:59:22 [ 11] [ 6] [209133] +16:59:22 [ 12] [ 6] [165447] +16:59:22 [ 13] [ 4] [0320] +16:59:22 [ 15] [ 4] [0320] +16:59:22 [ 18] [ 4] [6011] +16:59:22 [ 19] [ 3] [418] +16:59:22 [ 32] [ 6] [198901] +16:59:22 [ 35] [ 32] [6213544002095781=491212019578706] +16:59:22 [ 37] [ 12] [507916209133] +16:59:22 [ 38] [ 6] [008899] +16:59:22 [ 39] [ 2] [00] +16:59:22 [ 41] [ 8] [19529001] +16:59:22 [ 49] [ 3] [418] +16:59:22 [ 54] [ 40] [1001418C0000093957351002418C000009395735] +16:59:22 ============================================================================ +16:59:22 Sending to : +16:59:22 ============================================================================ +16:59:22 + + +waiting on router queue for slot.... +16:59:24 ============================================================================ +16:59:24 Slot Id : <441> +16:59:24 Transaction Type : RESPONSE +16:59:24 Received From : +16:59:24 ============================================================================ +16:59:24 FNo. Len. Field Value +16:59:24 ============================================================================ +16:59:24 [ 1] [ 4] [0210] +16:59:24 [ 2] [ 16] [6213544002095781] +16:59:24 [ 3] [ 6] [011000] +16:59:24 [ 4] [ 12] [000050000000] +16:59:24 [ 7] [ 10] [0320165942] +16:59:24 [ 11] [ 6] [209133] +16:59:24 [ 12] [ 6] [165447] +16:59:24 [ 13] [ 4] [0320] +16:59:24 [ 15] [ 4] [0320] +16:59:24 [ 18] [ 4] [6011] +16:59:24 [ 19] [ 3] [418] +16:59:24 [ 32] [ 6] [198901] +16:59:24 [ 35] [ 32] [6213544002095781=491212019578706] +16:59:24 [ 37] [ 12] [507916209133] +16:59:24 [ 38] [ 6] [008899] +16:59:24 [ 39] [ 2] [00] +16:59:24 [ 41] [ 8] [19529001] +16:59:24 [ 49] [ 3] [418] +16:59:24 [ 54] [ 40] [1001418C0000093957351002418C000009395735] +16:59:24 ============================================================================ +16:59:24 Calculate Source COMM Id = 5 +16:59:24 ============================================================================ +16:59:24 + + +waiting on router queue for slot.... +16:59:27 ============================================================================ +16:59:27 Slot Id : <437> +16:59:27 Transaction Type : REQUEST +16:59:27 Received From : +16:59:27 ============================================================================ +16:59:27 FNo. Len. Field Value +16:59:27 ============================================================================ +16:59:27 [ 1] [ 4] [0200] +16:59:27 [ 2] [ 16] [6688990105202806] +16:59:27 [ 3] [ 6] [011000] +16:59:27 [ 4] [ 12] [000010000000] +16:59:27 [ 7] [ 10] [0320165948] +16:59:27 [ 11] [ 6] [209136] +16:59:27 [ 12] [ 6] [164700] +16:59:27 [ 13] [ 4] [0320] +16:59:27 [ 14] [ 4] [4308] +16:59:27 [ 15] [ 4] [0320] +16:59:27 [ 18] [ 4] [6011] +16:59:27 [ 19] [ 3] [418] +16:59:27 [ 22] [ 3] [021] +16:59:27 [ 25] [ 2] [01] +16:59:27 [ 28] [ 9] [D00002000] +16:59:27 [ 32] [ 6] [198901] +16:59:27 [ 35] [ 37] [6688990105202806=43081231280651900000] +16:59:27 [ 37] [ 12] [507916209136] +16:59:27 [ 41] [ 8] [01529019] +16:59:27 [ 42] [ 15] [000000041529019] +16:59:27 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +16:59:27 [ 49] [ 3] [418] +16:59:27 [ 52] [ 16] [6B4A297D498BA044] +16:59:27 ============================================================================ +16:59:27 + + +waiting on router queue for slot.... +16:59:27 Sending to : +16:59:27 ============================================================================ +16:59:27 Sending to : +16:59:27 ============================================================================ +16:59:27 ============================================================================ +16:59:27 Slot Id : <403> +16:59:27 Transaction Type : REQUEST +16:59:27 Received From : +16:59:27 ============================================================================ +16:59:27 FNo. Len. Field Value +16:59:27 ============================================================================ +16:59:27 [ 1] [ 4] [0800] +16:59:27 [ 7] [ 10] [0320095834] +16:59:27 [ 11] [ 6] [157351] +16:59:27 [ 70] [ 3] [301] +16:59:27 ============================================================================ +16:59:27 + + +waiting on router queue for slot.... +16:59:27 Sending to : +16:59:27 ============================================================================ +16:59:27 ============================================================================ +16:59:27 Slot Id : <403> +16:59:27 Transaction Type : RESPONSE +16:59:27 Received From : +16:59:27 ============================================================================ +16:59:27 FNo. Len. Field Value +16:59:27 ============================================================================ +16:59:27 [ 1] [ 4] [0810] +16:59:27 [ 7] [ 10] [0320095834] +16:59:27 [ 11] [ 6] [157351] +16:59:27 [ 39] [ 2] [00] +16:59:27 [ 70] [ 3] [301] +16:59:27 ============================================================================ +16:59:27 Calculate Source COMM Id = 2 +16:59:27 ============================================================================ +16:59:27 + + +waiting on router queue for slot.... +16:59:28 ============================================================================ +16:59:28 Slot Id : <437> +16:59:28 Transaction Type : REQUEST +16:59:28 Received From : +16:59:28 ============================================================================ +16:59:28 FNo. Len. Field Value +16:59:28 ============================================================================ +16:59:28 [ 1] [ 4] [0200] +16:59:28 [ 2] [ 16] [6688990105202806] +16:59:28 [ 3] [ 6] [011000] +16:59:28 [ 4] [ 12] [000010000000] +16:59:28 [ 7] [ 10] [0320165948] +16:59:28 [ 11] [ 6] [209136] +16:59:28 [ 12] [ 6] [164700] +16:59:28 [ 13] [ 4] [0320] +16:59:28 [ 14] [ 4] [4308] +16:59:28 [ 15] [ 4] [0320] +16:59:28 [ 18] [ 4] [6011] +16:59:28 [ 19] [ 3] [418] +16:59:28 [ 22] [ 3] [021] +16:59:28 [ 25] [ 2] [01] +16:59:28 [ 28] [ 9] [D00002000] +16:59:28 [ 32] [ 6] [198901] +16:59:28 [ 35] [ 37] [6688990105202806=43081231280651900000] +16:59:28 [ 37] [ 12] [507916209136] +16:59:28 [ 41] [ 8] [01529019] +16:59:28 [ 42] [ 15] [000000041529019] +16:59:28 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +16:59:28 [ 49] [ 3] [418] +16:59:28 [ 52] [ 16] [6B4A297D498BA044] +16:59:28 ============================================================================ +16:59:28 + + +waiting on router queue for slot.... +16:59:28 Sending to : +16:59:28 ============================================================================ +16:59:28 ============================================================================ +16:59:28 Slot Id : <437> +16:59:28 Transaction Type : REQUEST +16:59:28 Received From : +16:59:28 ============================================================================ +16:59:28 FNo. Len. Field Value +16:59:28 ============================================================================ +16:59:28 [ 1] [ 4] [0200] +16:59:28 [ 2] [ 16] [6688990105202806] +16:59:28 [ 3] [ 6] [011000] +16:59:28 [ 4] [ 12] [000010000000] +16:59:28 [ 7] [ 10] [0320165948] +16:59:28 [ 11] [ 6] [209136] +16:59:28 [ 12] [ 6] [164700] +16:59:28 [ 13] [ 4] [0320] +16:59:28 [ 14] [ 4] [4308] +16:59:28 [ 15] [ 4] [0320] +16:59:28 [ 18] [ 4] [6011] +16:59:28 [ 19] [ 3] [418] +16:59:28 [ 22] [ 3] [021] +16:59:28 [ 25] [ 2] [01] +16:59:28 [ 28] [ 9] [D00002000] +16:59:28 [ 32] [ 6] [198901] +16:59:28 [ 35] [ 37] [6688990105202806=43081231280651900000] +16:59:28 [ 37] [ 12] [507916209136] +16:59:28 [ 41] [ 8] [01529019] +16:59:28 [ 42] [ 15] [000000041529019] +16:59:28 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +16:59:28 [ 49] [ 3] [418] +16:59:28 [ 52] [ 16] [31F4DA6762FE99EE] +16:59:28 ============================================================================ +16:59:28 + + +waiting on router queue for slot.... +16:59:28 Sending to : <4> +16:59:28 ============================================================================ +16:59:29 ============================================================================ +16:59:29 Slot Id : <437> +16:59:29 Transaction Type : RESPONSE +16:59:29 Received From : +16:59:29 ============================================================================ +16:59:29 FNo. Len. Field Value +16:59:29 ============================================================================ +16:59:29 [ 1] [ 4] [0210] +16:59:29 [ 2] [ 16] [6688990105202806] +16:59:29 [ 3] [ 6] [011000] +16:59:29 [ 4] [ 12] [000010000000] +16:59:29 [ 11] [ 6] [209136] +16:59:29 [ 12] [ 6] [164700] +16:59:29 [ 15] [ 4] [0320] +16:59:29 [ 18] [ 4] [6011] +16:59:29 [ 32] [ 6] [198901] +16:59:29 [ 35] [ 37] [6688990105202806=43081231280651900000] +16:59:29 [ 37] [ 12] [507916209136] +16:59:29 [ 38] [ 6] [065136] +16:59:29 [ 39] [ 2] [00] +16:59:29 [ 41] [ 8] [01529019] +16:59:29 [ 49] [ 3] [418] +16:59:29 [ 54] [ 20] [1002418C000002607776] +16:59:29 ============================================================================ +16:59:29 Sending to : +16:59:29 ============================================================================ +16:59:29 + + +waiting on router queue for slot.... +16:59:30 ============================================================================ +16:59:30 Slot Id : <437> +16:59:30 Transaction Type : RESPONSE +16:59:30 Received From : +16:59:30 ============================================================================ +16:59:30 FNo. Len. Field Value +16:59:30 ============================================================================ +16:59:30 [ 1] [ 4] [0210] +16:59:30 [ 2] [ 16] [6688990105202806] +16:59:30 [ 3] [ 6] [011000] +16:59:30 [ 4] [ 12] [000010000000] +16:59:30 [ 11] [ 6] [209136] +16:59:30 [ 12] [ 6] [164700] +16:59:30 [ 15] [ 4] [0320] +16:59:30 [ 18] [ 4] [6011] +16:59:30 [ 32] [ 6] [198901] +16:59:30 [ 35] [ 37] [6688990105202806=43081231280651900000] +16:59:30 [ 37] [ 12] [507916209136] +16:59:30 [ 38] [ 6] [065136] +16:59:30 [ 39] [ 2] [00] +16:59:30 [ 41] [ 8] [01529019] +16:59:30 [ 49] [ 3] [418] +16:59:30 [ 54] [ 20] [1002418C000002607776] +16:59:30 ============================================================================ +16:59:30 Calculate Source COMM Id = 5 +16:59:30 ============================================================================ +16:59:30 + + +waiting on router queue for slot.... +16:59:31 ============================================================================ +16:59:31 Slot Id : <362> +16:59:31 Transaction Type : REQUEST +16:59:31 Received From : +16:59:31 ============================================================================ +16:59:31 FNo. Len. Field Value +16:59:31 ============================================================================ +16:59:31 [ 1] [ 4] [0200] +16:59:31 [ 2] [ 16] [6688990060029756] +16:59:31 [ 3] [ 6] [300000] +16:59:31 [ 4] [ 12] [000000000000] +16:59:31 [ 7] [ 10] [0320165926] +16:59:31 [ 11] [ 6] [808120] +16:59:31 [ 12] [ 6] [165926] +16:59:31 [ 13] [ 4] [0320] +16:59:31 [ 15] [ 4] [0320] +16:59:31 [ 18] [ 4] [6011] +16:59:31 [ 22] [ 3] [900] +16:59:31 [ 25] [ 2] [02] +16:59:31 [ 28] [ 9] [D00000000] +16:59:31 [ 32] [ 6] [621354] +16:59:31 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:59:31 [ 37] [ 12] [507904154085] +16:59:31 [ 41] [ 8] [20001000] +16:59:31 [ 42] [ 15] [NATIVE ] +16:59:31 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +16:59:31 [ 49] [ 3] [418] +16:59:31 [ 52] [ 16] [2FD6454E7C6BC9FB] +16:59:31 ============================================================================ +16:59:31 + + +waiting on router queue for slot.... +16:59:31 Sending to : +16:59:31 ============================================================================ +16:59:31 Sending to : +16:59:31 ============================================================================ +16:59:31 ============================================================================ +16:59:31 Slot Id : <402> +16:59:31 Transaction Type : REQUEST +16:59:31 Received From : +16:59:31 ============================================================================ +16:59:31 FNo. Len. Field Value +16:59:31 ============================================================================ +16:59:31 [ 1] [ 4] [0800] +16:59:31 [ 2] [ 5] [02531] +16:59:31 [ 3] [ 6] [579168] +16:59:31 [ 7] [ 10] [0320095931] +16:59:31 [ 11] [ 6] [807398] +16:59:31 [ 15] [ 10] [0320095931] +16:59:31 [ 37] [ 11] [57916807398] +16:59:31 [ 70] [ 3] [001] +16:59:31 ============================================================================ +16:59:31 + + +waiting on router queue for slot.... +16:59:31 ============================================================================ +16:59:31 Slot Id : <402> +16:59:31 Transaction Type : RESPONSE +16:59:31 Received From : +16:59:31 ============================================================================ +16:59:31 FNo. Len. Field Value +16:59:31 ============================================================================ +16:59:31 [ 1] [ 4] [0810] +16:59:31 [ 7] [ 10] [0320095931] +16:59:31 [ 11] [ 6] [807398] +16:59:31 [ 15] [ 4] [0320] +16:59:31 [ 37] [ 12] [57916807398] +16:59:31 [ 39] [ 2] [00] +16:59:31 [ 70] [ 3] [001] +16:59:31 ============================================================================ +16:59:31 Sending to : +16:59:31 ============================================================================ +16:59:31 + + +waiting on router queue for slot.... +16:59:31 ============================================================================ +16:59:31 Slot Id : <362> +16:59:31 Transaction Type : REQUEST +16:59:31 Received From : +16:59:31 ============================================================================ +16:59:31 FNo. Len. Field Value +16:59:31 ============================================================================ +16:59:31 [ 1] [ 4] [0200] +16:59:31 [ 2] [ 16] [6688990060029756] +16:59:31 [ 3] [ 6] [300000] +16:59:31 [ 4] [ 12] [000000000000] +16:59:31 [ 7] [ 10] [0320165926] +16:59:31 [ 11] [ 6] [808120] +16:59:31 [ 12] [ 6] [165926] +16:59:31 [ 13] [ 4] [0320] +16:59:31 [ 15] [ 4] [0320] +16:59:31 [ 18] [ 4] [6011] +16:59:31 [ 22] [ 3] [900] +16:59:31 [ 25] [ 2] [02] +16:59:31 [ 28] [ 9] [D00000000] +16:59:31 [ 32] [ 6] [621354] +16:59:31 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:59:31 [ 37] [ 12] [507904154085] +16:59:31 [ 41] [ 8] [20001000] +16:59:31 [ 42] [ 15] [NATIVE ] +16:59:31 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +16:59:31 [ 49] [ 3] [418] +16:59:31 [ 52] [ 16] [2FD6454E7C6BC9FB] +16:59:31 ============================================================================ +16:59:31 + + +waiting on router queue for slot.... +16:59:31 Sending to : +16:59:31 ============================================================================ +16:59:31 ============================================================================ +16:59:31 Slot Id : <362> +16:59:31 Transaction Type : REQUEST +16:59:31 Received From : +16:59:31 ============================================================================ +16:59:31 FNo. Len. Field Value +16:59:31 ============================================================================ +16:59:31 [ 1] [ 4] [0200] +16:59:31 [ 2] [ 16] [6688990060029756] +16:59:31 [ 3] [ 6] [300000] +16:59:31 [ 4] [ 12] [000000000000] +16:59:31 [ 7] [ 10] [0320165926] +16:59:31 [ 11] [ 6] [808120] +16:59:31 [ 12] [ 6] [165926] +16:59:31 [ 13] [ 4] [0320] +16:59:31 [ 15] [ 4] [0320] +16:59:31 [ 18] [ 4] [6011] +16:59:31 [ 22] [ 3] [900] +16:59:31 [ 25] [ 2] [02] +16:59:31 [ 28] [ 9] [D00000000] +16:59:31 [ 32] [ 6] [621354] +16:59:31 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:59:31 [ 37] [ 12] [507904154085] +16:59:31 [ 41] [ 8] [20001000] +16:59:31 [ 42] [ 15] [NATIVE ] +16:59:31 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +16:59:31 [ 49] [ 3] [418] +16:59:31 [ 52] [ 16] [F1D5CEF94EB5C0A4] +16:59:31 ============================================================================ +16:59:31 + + +waiting on router queue for slot.... +16:59:31 Sending to : <4> +16:59:31 ============================================================================ +16:59:31 ============================================================================ +16:59:31 Slot Id : <362> +16:59:31 Transaction Type : RESPONSE +16:59:31 Received From : +16:59:31 ============================================================================ +16:59:31 FNo. Len. Field Value +16:59:31 ============================================================================ +16:59:31 [ 1] [ 4] [0210] +16:59:31 [ 2] [ 16] [6688990060029756] +16:59:31 [ 3] [ 6] [300000] +16:59:31 [ 4] [ 12] [000000000000] +16:59:31 [ 7] [ 10] [0320165926] +16:59:31 [ 11] [ 6] [808120] +16:59:31 [ 12] [ 6] [165926] +16:59:31 [ 13] [ 4] [0320] +16:59:31 [ 15] [ 4] [0320] +16:59:31 [ 18] [ 4] [6011] +16:59:31 [ 22] [ 3] [021] +16:59:31 [ 32] [ 6] [621354] +16:59:31 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:59:31 [ 37] [ 12] [507904154085] +16:59:31 [ 38] [ 6] [165721] +16:59:31 [ 39] [ 2] [75] +16:59:31 [ 41] [ 8] [20001000] +16:59:31 [ 49] [ 3] [418] +16:59:31 ============================================================================ +16:59:31 Sending to : +16:59:31 ============================================================================ +16:59:31 + + +waiting on router queue for slot.... +16:59:32 ============================================================================ +16:59:32 Slot Id : <362> +16:59:32 Transaction Type : RESPONSE +16:59:32 Received From : +16:59:32 ============================================================================ +16:59:32 FNo. Len. Field Value +16:59:32 ============================================================================ +16:59:32 [ 1] [ 4] [0210] +16:59:32 [ 2] [ 16] [6688990060029756] +16:59:32 [ 3] [ 6] [300000] +16:59:32 [ 4] [ 12] [000000000000] +16:59:32 [ 7] [ 10] [0320165926] +16:59:32 [ 11] [ 6] [808120] +16:59:32 [ 12] [ 6] [165926] +16:59:32 [ 13] [ 4] [0320] +16:59:32 [ 15] [ 4] [0320] +16:59:32 [ 18] [ 4] [6011] +16:59:32 [ 22] [ 3] [021] +16:59:32 [ 32] [ 6] [621354] +16:59:32 [ 35] [ 37] [6688990060029756=98021261854579400000] +16:59:32 [ 37] [ 12] [507904154085] +16:59:32 [ 38] [ 6] [165721] +16:59:32 [ 39] [ 2] [75] +16:59:32 [ 41] [ 8] [20001000] +16:59:32 [ 49] [ 3] [418] +16:59:32 ============================================================================ +16:59:32 Calculate Source COMM Id = 0 +16:59:32 ============================================================================ +16:59:32 + + +waiting on router queue for slot.... +16:59:38 ============================================================================ +16:59:38 Slot Id : <392> +16:59:38 Transaction Type : REQUEST +16:59:38 Received From : +16:59:38 ============================================================================ +16:59:38 FNo. Len. Field Value +16:59:38 ============================================================================ +16:59:38 [ 1] [ 4] [0200] +16:59:38 [ 2] [ 16] [1888880000025122] +16:59:38 [ 3] [ 6] [010000] +16:59:38 [ 4] [ 12] [000020000000] +16:59:38 [ 7] [ 10] [0320165933] +16:59:38 [ 11] [ 6] [808152] +16:59:38 [ 12] [ 6] [165933] +16:59:38 [ 13] [ 4] [0320] +16:59:38 [ 15] [ 4] [0320] +16:59:38 [ 18] [ 4] [6011] +16:59:38 [ 22] [ 3] [900] +16:59:38 [ 25] [ 2] [02] +16:59:38 [ 28] [ 9] [D00002000] +16:59:38 [ 32] [ 6] [621354] +16:59:38 [ 35] [ 32] [1888880000025122=000010100000885] +16:59:38 [ 37] [ 12] [507904341774] +16:59:38 [ 41] [ 8] [03003300] +16:59:38 [ 42] [ 15] [NATIVE ] +16:59:38 [ 43] [ 40] [SVN University KaisonephomvLAO] +16:59:38 [ 49] [ 3] [418] +16:59:38 [ 52] [ 16] [296905D7442D0E3E] +16:59:38 ============================================================================ +16:59:38 + + +waiting on router queue for slot.... +16:59:38 Sending to : +16:59:38 ============================================================================ +16:59:38 Sending to : +16:59:38 ============================================================================ +16:59:38 ============================================================================ +16:59:38 Slot Id : <392> +16:59:38 Transaction Type : REQUEST +16:59:38 Received From : +16:59:38 ============================================================================ +16:59:38 FNo. Len. Field Value +16:59:38 ============================================================================ +16:59:38 [ 1] [ 4] [0200] +16:59:38 [ 2] [ 16] [1888880000025122] +16:59:38 [ 3] [ 6] [010000] +16:59:38 [ 4] [ 12] [000020000000] +16:59:38 [ 7] [ 10] [0320165933] +16:59:38 [ 11] [ 6] [808152] +16:59:38 [ 12] [ 6] [165933] +16:59:38 [ 13] [ 4] [0320] +16:59:38 [ 15] [ 4] [0320] +16:59:38 [ 18] [ 4] [6011] +16:59:38 [ 22] [ 3] [900] +16:59:38 [ 25] [ 2] [02] +16:59:38 [ 28] [ 9] [D00002000] +16:59:38 [ 32] [ 6] [621354] +16:59:38 [ 35] [ 32] [1888880000025122=000010100000885] +16:59:38 [ 37] [ 12] [507904341774] +16:59:38 [ 41] [ 8] [03003300] +16:59:38 [ 42] [ 15] [NATIVE ] +16:59:38 [ 43] [ 40] [SVN University KaisonephomvLAO] +16:59:38 [ 49] [ 3] [418] +16:59:38 [ 52] [ 16] [296905D7442D0E3E] +16:59:38 ============================================================================ +16:59:38 + + +waiting on router queue for slot.... +16:59:38 Sending to : +16:59:38 ============================================================================ +16:59:38 ============================================================================ +16:59:38 Slot Id : <392> +16:59:38 Transaction Type : REQUEST +16:59:38 Received From : +16:59:38 ============================================================================ +16:59:38 FNo. Len. Field Value +16:59:38 ============================================================================ +16:59:38 [ 1] [ 4] [0200] +16:59:38 [ 2] [ 16] [1888880000025122] +16:59:38 [ 3] [ 6] [010000] +16:59:38 [ 4] [ 12] [000020000000] +16:59:38 [ 7] [ 10] [0320165933] +16:59:38 [ 11] [ 6] [808152] +16:59:38 [ 12] [ 6] [165933] +16:59:38 [ 13] [ 4] [0320] +16:59:38 [ 15] [ 4] [0320] +16:59:38 [ 18] [ 4] [6011] +16:59:38 [ 22] [ 3] [900] +16:59:38 [ 25] [ 2] [02] +16:59:38 [ 28] [ 9] [D00002000] +16:59:38 [ 32] [ 6] [621354] +16:59:38 [ 35] [ 32] [1888880000025122=000010100000885] +16:59:38 [ 37] [ 12] [507904341774] +16:59:38 [ 41] [ 8] [03003300] +16:59:38 [ 42] [ 15] [NATIVE ] +16:59:38 [ 43] [ 40] [SVN University KaisonephomvLAO] +16:59:38 [ 49] [ 3] [418] +16:59:38 [ 52] [ 16] [ED28E70C499A480B] +16:59:38 ============================================================================ +16:59:38 + + +waiting on router queue for slot.... +16:59:38 Sending to : <5> +16:59:38 ============================================================================ +16:59:41 ============================================================================ +16:59:41 Slot Id : <375> +16:59:41 Transaction Type : REQUEST +16:59:41 Received From : +16:59:41 ============================================================================ +16:59:41 FNo. Len. Field Value +16:59:41 ============================================================================ +16:59:41 [ 1] [ 4] [0200] +16:59:41 [ 2] [ 16] [6213544002200175] +16:59:41 [ 3] [ 6] [010000] +16:59:41 [ 4] [ 12] [000050000000] +16:59:41 [ 7] [ 10] [0320165731] +16:59:41 [ 11] [ 6] [952691] +16:59:41 [ 12] [ 6] [165731] +16:59:41 [ 13] [ 4] [0320] +16:59:41 [ 15] [ 4] [0320] +16:59:41 [ 18] [ 4] [6011] +16:59:41 [ 19] [ 3] [418] +16:59:41 [ 22] [ 3] [021] +16:59:41 [ 25] [ 2] [01] +16:59:41 [ 28] [ 9] [D00002000] +16:59:41 [ 32] [ 6] [668899] +16:59:41 [ 35] [ 32] [6213544002200175=491212010017900] +16:59:41 [ 37] [ 12] [507902025644] +16:59:41 [ 41] [ 8] [03414002] +16:59:41 [ 42] [ 15] [APT ] +16:59:41 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:59:41 [ 49] [ 3] [418] +16:59:41 [ 52] [ 16] [73BF347CF99D21AD] +16:59:41 ============================================================================ +16:59:41 + + +waiting on router queue for slot.... +16:59:41 Sending to : +16:59:41 ============================================================================ +16:59:41 Sending to : +16:59:41 ============================================================================ +16:59:41 ============================================================================ +16:59:41 Slot Id : <408> +16:59:41 Transaction Type : REQUEST +16:59:41 Received From : +16:59:41 ============================================================================ +16:59:41 FNo. Len. Field Value +16:59:41 ============================================================================ +16:59:41 [ 1] [ 4] [0200] +16:59:41 [ 2] [ 16] [6213548000371862] +16:59:41 [ 3] [ 6] [301000] +16:59:41 [ 4] [ 12] [000000000000] +16:59:41 [ 7] [ 10] [0320170001] +16:59:41 [ 11] [ 6] [209139] +16:59:41 [ 12] [ 6] [045811] +16:59:41 [ 13] [ 4] [0320] +16:59:41 [ 14] [ 4] [1805] +16:59:41 [ 15] [ 4] [0320] +16:59:41 [ 18] [ 4] [6011] +16:59:41 [ 19] [ 3] [418] +16:59:41 [ 22] [ 3] [021] +16:59:41 [ 25] [ 2] [01] +16:59:41 [ 28] [ 9] [D00000000] +16:59:41 [ 32] [ 6] [198901] +16:59:41 [ 35] [ 32] [6213548000371862=180512017186023] +16:59:41 [ 37] [ 12] [507917209139] +16:59:41 [ 41] [ 8] [01529031] +16:59:41 [ 42] [ 15] [000000041529031] +16:59:41 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:59:41 [ 49] [ 3] [418] +16:59:41 [ 52] [ 16] [0E8CF4820ED12F8F] +16:59:41 ============================================================================ +16:59:41 + + +waiting on router queue for slot.... +16:59:41 Sending to : +16:59:41 ============================================================================ +16:59:41 Sending to : +16:59:41 ============================================================================ +16:59:41 ============================================================================ +16:59:41 Slot Id : <375> +16:59:41 Transaction Type : REQUEST +16:59:41 Received From : +16:59:41 ============================================================================ +16:59:41 FNo. Len. Field Value +16:59:41 ============================================================================ +16:59:41 [ 1] [ 4] [0200] +16:59:41 [ 2] [ 16] [6213544002200175] +16:59:41 [ 3] [ 6] [010000] +16:59:41 [ 4] [ 12] [000050000000] +16:59:41 [ 7] [ 10] [0320165731] +16:59:41 [ 11] [ 6] [952691] +16:59:41 [ 12] [ 6] [165731] +16:59:41 [ 13] [ 4] [0320] +16:59:41 [ 15] [ 4] [0320] +16:59:41 [ 18] [ 4] [6011] +16:59:41 [ 19] [ 3] [418] +16:59:41 [ 22] [ 3] [021] +16:59:41 [ 25] [ 2] [01] +16:59:41 [ 28] [ 9] [D00002000] +16:59:41 [ 32] [ 6] [668899] +16:59:41 [ 35] [ 32] [6213544002200175=491212010017900] +16:59:41 [ 37] [ 12] [507902025644] +16:59:41 [ 41] [ 8] [03414002] +16:59:41 [ 42] [ 15] [APT ] +16:59:41 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:59:41 [ 49] [ 3] [418] +16:59:41 [ 52] [ 16] [73BF347CF99D21AD] +16:59:41 ============================================================================ +16:59:41 + + +waiting on router queue for slot.... +16:59:41 Sending to : +16:59:41 ============================================================================ +16:59:41 ============================================================================ +16:59:41 Slot Id : <375> +16:59:41 Transaction Type : REQUEST +16:59:41 Received From : +16:59:41 ============================================================================ +16:59:41 FNo. Len. Field Value +16:59:41 ============================================================================ +16:59:41 [ 1] [ 4] [0200] +16:59:41 [ 2] [ 16] [6213544002200175] +16:59:41 [ 3] [ 6] [010000] +16:59:41 [ 4] [ 12] [000050000000] +16:59:41 [ 7] [ 10] [0320165731] +16:59:41 [ 11] [ 6] [952691] +16:59:41 [ 12] [ 6] [165731] +16:59:41 [ 13] [ 4] [0320] +16:59:41 [ 15] [ 4] [0320] +16:59:41 [ 18] [ 4] [6011] +16:59:41 [ 19] [ 3] [418] +16:59:41 [ 22] [ 3] [021] +16:59:41 [ 25] [ 2] [01] +16:59:41 [ 28] [ 9] [D00002000] +16:59:41 [ 32] [ 6] [668899] +16:59:41 [ 35] [ 32] [6213544002200175=491212010017900] +16:59:41 [ 37] [ 12] [507902025644] +16:59:41 [ 41] [ 8] [03414002] +16:59:41 [ 42] [ 15] [APT ] +16:59:41 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +16:59:41 [ 49] [ 3] [418] +16:59:41 [ 52] [ 16] [F2742A5FB7443351] +16:59:41 ============================================================================ +16:59:41 + + +waiting on router queue for slot.... +16:59:41 Sending to : <0> +16:59:41 ============================================================================ +16:59:41 ============================================================================ +16:59:41 Slot Id : <408> +16:59:41 Transaction Type : REQUEST +16:59:41 Received From : +16:59:41 ============================================================================ +16:59:41 FNo. Len. Field Value +16:59:41 ============================================================================ +16:59:41 [ 1] [ 4] [0200] +16:59:41 [ 2] [ 16] [6213548000371862] +16:59:41 [ 3] [ 6] [301000] +16:59:41 [ 4] [ 12] [000000000000] +16:59:41 [ 7] [ 10] [0320170001] +16:59:41 [ 11] [ 6] [209139] +16:59:41 [ 12] [ 6] [045811] +16:59:41 [ 13] [ 4] [0320] +16:59:41 [ 14] [ 4] [1805] +16:59:41 [ 15] [ 4] [0320] +16:59:41 [ 18] [ 4] [6011] +16:59:41 [ 19] [ 3] [418] +16:59:41 [ 22] [ 3] [021] +16:59:41 [ 25] [ 2] [01] +16:59:41 [ 28] [ 9] [D00000000] +16:59:41 [ 32] [ 6] [198901] +16:59:41 [ 35] [ 32] [6213548000371862=180512017186023] +16:59:41 [ 37] [ 12] [507917209139] +16:59:41 [ 41] [ 8] [01529031] +16:59:41 [ 42] [ 15] [000000041529031] +16:59:41 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:59:41 [ 49] [ 3] [418] +16:59:41 [ 52] [ 16] [0E8CF4820ED12F8F] +16:59:41 ============================================================================ +16:59:41 + + +waiting on router queue for slot.... +16:59:41 Sending to : +16:59:41 ============================================================================ +16:59:41 ============================================================================ +16:59:41 Slot Id : <408> +16:59:41 Transaction Type : REQUEST +16:59:41 Received From : +16:59:41 ============================================================================ +16:59:41 FNo. Len. Field Value +16:59:41 ============================================================================ +16:59:41 [ 1] [ 4] [0200] +16:59:41 [ 2] [ 16] [6213548000371862] +16:59:41 [ 3] [ 6] [301000] +16:59:41 [ 4] [ 12] [000000000000] +16:59:41 [ 7] [ 10] [0320170001] +16:59:41 [ 11] [ 6] [209139] +16:59:41 [ 12] [ 6] [045811] +16:59:41 [ 13] [ 4] [0320] +16:59:41 [ 14] [ 4] [1805] +16:59:41 [ 15] [ 4] [0320] +16:59:41 [ 18] [ 4] [6011] +16:59:41 [ 19] [ 3] [418] +16:59:41 [ 22] [ 3] [021] +16:59:41 [ 25] [ 2] [01] +16:59:41 [ 28] [ 9] [D00000000] +16:59:41 [ 32] [ 6] [198901] +16:59:41 [ 35] [ 32] [6213548000371862=180512017186023] +16:59:41 [ 37] [ 12] [507917209139] +16:59:41 [ 41] [ 8] [01529031] +16:59:41 [ 42] [ 15] [000000041529031] +16:59:41 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +16:59:41 [ 49] [ 3] [418] +16:59:41 [ 52] [ 16] [2F4B836F6829AE01] +16:59:41 ============================================================================ +16:59:41 + + +waiting on router queue for slot.... +16:59:41 Sending to : <0> +16:59:41 ============================================================================ +16:59:42 ============================================================================ +16:59:42 Slot Id : <408> +16:59:42 Transaction Type : RESPONSE +16:59:42 Received From : +16:59:42 ============================================================================ +16:59:42 FNo. Len. Field Value +16:59:42 ============================================================================ +16:59:42 [ 1] [ 4] [0210] +16:59:42 [ 2] [ 16] [6213548000371862] +16:59:42 [ 3] [ 6] [301000] +16:59:42 [ 4] [ 12] [000000000000] +16:59:42 [ 7] [ 10] [0320170001] +16:59:42 [ 11] [ 6] [209139] +16:59:42 [ 12] [ 6] [045811] +16:59:42 [ 13] [ 4] [0320] +16:59:42 [ 15] [ 4] [0320] +16:59:42 [ 18] [ 4] [6011] +16:59:42 [ 19] [ 3] [418] +16:59:42 [ 32] [ 6] [198901] +16:59:42 [ 35] [ 32] [6213548000371862=180512017186023] +16:59:42 [ 37] [ 12] [507917209139] +16:59:42 [ 38] [ 6] [848878] +16:59:42 [ 39] [ 2] [00] +16:59:42 [ 41] [ 8] [01529031] +16:59:42 [ 49] [ 3] [418] +16:59:42 [ 54] [ 40] [1001418C0000113015641002418C000011301564] +16:59:42 ============================================================================ +16:59:42 Sending to : +16:59:42 ============================================================================ +16:59:42 + + +waiting on router queue for slot.... +16:59:42 ============================================================================ +16:59:42 Slot Id : <375> +16:59:42 Transaction Type : RESPONSE +16:59:42 Received From : +16:59:42 ============================================================================ +16:59:42 FNo. Len. Field Value +16:59:42 ============================================================================ +16:59:42 [ 1] [ 4] [0210] +16:59:42 [ 2] [ 16] [6213544002200175] +16:59:42 [ 3] [ 6] [010000] +16:59:42 [ 4] [ 12] [000050000000] +16:59:42 [ 7] [ 10] [0320165731] +16:59:42 [ 11] [ 6] [952691] +16:59:42 [ 12] [ 6] [165731] +16:59:42 [ 13] [ 4] [0320] +16:59:42 [ 15] [ 4] [0320] +16:59:42 [ 18] [ 4] [6011] +16:59:42 [ 19] [ 3] [418] +16:59:42 [ 32] [ 6] [668899] +16:59:42 [ 35] [ 32] [6213544002200175=491212010017900] +16:59:42 [ 37] [ 12] [507902025644] +16:59:42 [ 38] [ 6] [952691] +16:59:42 [ 39] [ 2] [51] +16:59:42 [ 41] [ 8] [03414002] +16:59:42 [ 49] [ 3] [418] +16:59:42 [ 54] [ 40] [0001418C0000551216360002418C000055121636] +16:59:42 ============================================================================ +16:59:42 Sending to : +16:59:42 ============================================================================ +16:59:42 + + +waiting on router queue for slot.... +16:59:43 ============================================================================ +16:59:43 Slot Id : <385> +16:59:43 Transaction Type : REQUEST +16:59:43 Received From : +16:59:43 ============================================================================ +16:59:43 FNo. Len. Field Value +16:59:43 ============================================================================ +16:59:43 [ 1] [ 4] [0800] +16:59:43 [ 7] [ 10] [0320095850] +16:59:43 [ 11] [ 6] [157352] +16:59:43 [ 70] [ 3] [301] +16:59:43 ============================================================================ +16:59:43 + + +waiting on router queue for slot.... +16:59:43 Sending to : +16:59:43 ============================================================================ +16:59:43 ============================================================================ +16:59:43 Slot Id : <385> +16:59:43 Transaction Type : RESPONSE +16:59:43 Received From : +16:59:43 ============================================================================ +16:59:43 FNo. Len. Field Value +16:59:43 ============================================================================ +16:59:43 [ 1] [ 4] [0810] +16:59:43 [ 7] [ 10] [0320095850] +16:59:43 [ 11] [ 6] [157352] +16:59:43 [ 39] [ 2] [00] +16:59:43 [ 70] [ 3] [301] +16:59:43 ============================================================================ +16:59:43 Calculate Source COMM Id = 2 +16:59:43 ============================================================================ +16:59:43 + + +waiting on router queue for slot.... +16:59:43 ============================================================================ +16:59:43 Slot Id : <408> +16:59:43 Transaction Type : RESPONSE +16:59:43 Received From : +16:59:43 ============================================================================ +16:59:43 FNo. Len. Field Value +16:59:43 ============================================================================ +16:59:43 [ 1] [ 4] [0210] +16:59:43 [ 2] [ 16] [6213548000371862] +16:59:43 [ 3] [ 6] [301000] +16:59:43 [ 4] [ 12] [000000000000] +16:59:43 [ 7] [ 10] [0320170001] +16:59:43 [ 11] [ 6] [209139] +16:59:43 [ 12] [ 6] [045811] +16:59:43 [ 13] [ 4] [0320] +16:59:43 [ 15] [ 4] [0320] +16:59:43 [ 18] [ 4] [6011] +16:59:43 [ 19] [ 3] [418] +16:59:43 [ 32] [ 6] [198901] +16:59:43 [ 35] [ 32] [6213548000371862=180512017186023] +16:59:43 [ 37] [ 12] [507917209139] +16:59:43 [ 38] [ 6] [848878] +16:59:43 [ 39] [ 2] [00] +16:59:43 [ 41] [ 8] [01529031] +16:59:43 [ 49] [ 3] [418] +16:59:43 [ 54] [ 40] [1001418C0000113015641002418C000011301564] +16:59:43 ============================================================================ +16:59:43 Calculate Source COMM Id = 5 +16:59:43 ============================================================================ +16:59:43 + + +waiting on router queue for slot.... +16:59:44 ============================================================================ +16:59:44 Slot Id : <375> +16:59:44 Transaction Type : RESPONSE +16:59:44 Received From : +16:59:44 ============================================================================ +16:59:44 FNo. Len. Field Value +16:59:44 ============================================================================ +16:59:44 [ 1] [ 4] [0210] +16:59:44 [ 2] [ 16] [6213544002200175] +16:59:44 [ 3] [ 6] [010000] +16:59:44 [ 4] [ 12] [000050000000] +16:59:44 [ 7] [ 10] [0320165731] +16:59:44 [ 11] [ 6] [952691] +16:59:44 [ 12] [ 6] [165731] +16:59:44 [ 13] [ 4] [0320] +16:59:44 [ 15] [ 4] [0320] +16:59:44 [ 18] [ 4] [6011] +16:59:44 [ 19] [ 3] [418] +16:59:44 [ 32] [ 6] [668899] +16:59:44 [ 35] [ 32] [6213544002200175=491212010017900] +16:59:44 [ 37] [ 12] [507902025644] +16:59:44 [ 38] [ 6] [952691] +16:59:44 [ 39] [ 2] [51] +16:59:44 [ 41] [ 8] [03414002] +16:59:44 [ 49] [ 3] [418] +16:59:44 [ 54] [ 40] [0001418C0000551216360002418C000055121636] +16:59:44 ============================================================================ +16:59:44 Calculate Source COMM Id = 4 +16:59:44 ============================================================================ +16:59:44 + + +waiting on router queue for slot.... +16:59:46 ============================================================================ +16:59:46 Slot Id : <392> +16:59:46 Transaction Type : RESPONSE +16:59:46 Received From : +16:59:46 ============================================================================ +16:59:46 FNo. Len. Field Value +16:59:46 ============================================================================ +16:59:46 [ 1] [ 4] [0210] +16:59:46 [ 2] [ 16] [1888880000025122] +16:59:46 [ 3] [ 6] [010000] +16:59:46 [ 4] [ 12] [000020000000] +16:59:46 [ 7] [ 10] [0320165933] +16:59:46 [ 11] [ 6] [808152] +16:59:46 [ 12] [ 6] [165933] +16:59:46 [ 13] [ 4] [0320] +16:59:46 [ 15] [ 4] [0320] +16:59:46 [ 18] [ 4] [6011] +16:59:46 [ 19] [ 3] [418] +16:59:46 [ 32] [ 6] [621354] +16:59:46 [ 37] [ 12] [507904341774] +16:59:46 [ 38] [ 6] [107765] +16:59:46 [ 39] [ 2] [00] +16:59:46 [ 41] [ 8] [03003300] +16:59:46 [ 49] [ 3] [418] +16:59:46 [ 54] [ 0] [] +16:59:46 ============================================================================ +16:59:46 Sending to : +16:59:46 ============================================================================ +16:59:46 + + +waiting on router queue for slot.... +16:59:47 ============================================================================ +16:59:47 Slot Id : <392> +16:59:47 Transaction Type : RESPONSE +16:59:47 Received From : +16:59:47 ============================================================================ +16:59:47 FNo. Len. Field Value +16:59:47 ============================================================================ +16:59:47 [ 1] [ 4] [0210] +16:59:47 [ 2] [ 16] [1888880000025122] +16:59:47 [ 3] [ 6] [010000] +16:59:47 [ 4] [ 12] [000020000000] +16:59:47 [ 7] [ 10] [0320165933] +16:59:47 [ 11] [ 6] [808152] +16:59:47 [ 12] [ 6] [165933] +16:59:47 [ 13] [ 4] [0320] +16:59:47 [ 15] [ 4] [0320] +16:59:47 [ 18] [ 4] [6011] +16:59:47 [ 19] [ 3] [418] +16:59:47 [ 32] [ 6] [621354] +16:59:47 [ 37] [ 12] [507904341774] +16:59:47 [ 38] [ 6] [107765] +16:59:47 [ 39] [ 2] [00] +16:59:47 [ 41] [ 8] [03003300] +16:59:47 [ 49] [ 3] [418] +16:59:47 [ 54] [ 0] [] +16:59:47 ============================================================================ +16:59:47 Calculate Source COMM Id = 0 +16:59:47 ============================================================================ +16:59:47 + + +waiting on router queue for slot.... +16:59:55 ============================================================================ +16:59:55 Slot Id : <450> +16:59:55 Transaction Type : REQUEST +16:59:55 Received From : +16:59:55 ============================================================================ +16:59:55 FNo. Len. Field Value +16:59:55 ============================================================================ +16:59:55 [ 1] [ 4] [0800] +16:59:55 [ 7] [ 10] [0320095901] +16:59:55 [ 11] [ 6] [157353] +16:59:55 [ 70] [ 3] [301] +16:59:55 ============================================================================ +16:59:55 + + +waiting on router queue for slot.... +16:59:55 Sending to : +16:59:55 ============================================================================ +16:59:55 ============================================================================ +16:59:55 Slot Id : <450> +16:59:55 Transaction Type : RESPONSE +16:59:55 Received From : +16:59:55 ============================================================================ +16:59:55 FNo. Len. Field Value +16:59:55 ============================================================================ +16:59:55 [ 1] [ 4] [0810] +16:59:55 [ 7] [ 10] [0320095901] +16:59:55 [ 11] [ 6] [157353] +16:59:55 [ 39] [ 2] [00] +16:59:55 [ 70] [ 3] [301] +16:59:55 ============================================================================ +16:59:55 Calculate Source COMM Id = 2 +16:59:55 ============================================================================ +16:59:55 + + +waiting on router queue for slot.... +16:59:55 ============================================================================ +16:59:55 Slot Id : <417> +16:59:55 Transaction Type : REQUEST +16:59:55 Received From : +16:59:55 ============================================================================ +16:59:55 FNo. Len. Field Value +16:59:55 ============================================================================ +16:59:55 [ 1] [ 4] [0800] +16:59:55 [ 7] [ 10] [0320100742] +16:59:55 [ 11] [ 6] [086702] +16:59:55 [ 37] [ 12] [57917086702] +16:59:55 [ 70] [ 3] [301] +16:59:55 ============================================================================ +16:59:55 + + +waiting on router queue for slot.... +16:59:55 Sending to : +16:59:55 ============================================================================ +16:59:55 ============================================================================ +16:59:55 Slot Id : <417> +16:59:55 Transaction Type : RESPONSE +16:59:55 Received From : +16:59:55 ============================================================================ +16:59:55 FNo. Len. Field Value +16:59:55 ============================================================================ +16:59:55 [ 1] [ 4] [0810] +16:59:55 [ 7] [ 10] [0320100742] +16:59:55 [ 11] [ 6] [086702] +16:59:55 [ 37] [ 12] [579170867020] +16:59:55 [ 39] [ 2] [00] +16:59:55 [ 70] [ 3] [810] +16:59:55 ============================================================================ +16:59:55 Calculate Source COMM Id = 1 +16:59:55 ============================================================================ +16:59:55 + + +waiting on router queue for slot.... +16:59:58 ============================================================================ +16:59:58 Slot Id : <412> +16:59:58 Transaction Type : REQUEST +16:59:58 Received From : +16:59:58 ============================================================================ +16:59:58 FNo. Len. Field Value +16:59:58 ============================================================================ +16:59:58 [ 1] [ 4] [0200] +16:59:58 [ 2] [ 16] [6688990030017105] +16:59:58 [ 3] [ 6] [010000] +16:59:58 [ 4] [ 12] [000070000000] +16:59:58 [ 7] [ 10] [0320165953] +16:59:58 [ 11] [ 6] [808240] +16:59:58 [ 12] [ 6] [165953] +16:59:58 [ 13] [ 4] [0320] +16:59:58 [ 15] [ 4] [0320] +16:59:58 [ 18] [ 4] [6011] +16:59:58 [ 22] [ 3] [900] +16:59:58 [ 25] [ 2] [02] +16:59:58 [ 28] [ 9] [D00002000] +16:59:58 [ 32] [ 6] [621354] +16:59:58 [ 35] [ 37] [6688990030017105=98041261580696600000] +16:59:58 [ 37] [ 12] [507902546997] +16:59:58 [ 41] [ 8] [05003700] +16:59:58 [ 42] [ 15] [NATIVE ] +16:59:58 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +16:59:58 [ 49] [ 3] [418] +16:59:58 [ 52] [ 16] [FE58AC19B2A98F17] +16:59:58 ============================================================================ +16:59:58 + + +waiting on router queue for slot.... +16:59:58 Sending to : +16:59:58 ============================================================================ +16:59:58 Sending to : +16:59:58 ============================================================================ +16:59:58 ============================================================================ +16:59:58 Slot Id : <412> +16:59:58 Transaction Type : REQUEST +16:59:58 Received From : +16:59:58 ============================================================================ +16:59:58 FNo. Len. Field Value +16:59:58 ============================================================================ +16:59:58 [ 1] [ 4] [0200] +16:59:58 [ 2] [ 16] [6688990030017105] +16:59:58 [ 3] [ 6] [010000] +16:59:58 [ 4] [ 12] [000070000000] +16:59:58 [ 7] [ 10] [0320165953] +16:59:58 [ 11] [ 6] [808240] +16:59:58 [ 12] [ 6] [165953] +16:59:58 [ 13] [ 4] [0320] +16:59:58 [ 15] [ 4] [0320] +16:59:58 [ 18] [ 4] [6011] +16:59:58 [ 22] [ 3] [900] +16:59:58 [ 25] [ 2] [02] +16:59:58 [ 28] [ 9] [D00002000] +16:59:58 [ 32] [ 6] [621354] +16:59:58 [ 35] [ 37] [6688990030017105=98041261580696600000] +16:59:58 [ 37] [ 12] [507902546997] +16:59:58 [ 41] [ 8] [05003700] +16:59:58 [ 42] [ 15] [NATIVE ] +16:59:58 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +16:59:58 [ 49] [ 3] [418] +16:59:58 [ 52] [ 16] [FE58AC19B2A98F17] +16:59:58 ============================================================================ +16:59:58 + + +waiting on router queue for slot.... +16:59:58 Sending to : +16:59:58 ============================================================================ +16:59:58 ============================================================================ +16:59:58 Slot Id : <412> +16:59:58 Transaction Type : REQUEST +16:59:58 Received From : +16:59:58 ============================================================================ +16:59:58 FNo. Len. Field Value +16:59:58 ============================================================================ +16:59:58 [ 1] [ 4] [0200] +16:59:58 [ 2] [ 16] [6688990030017105] +16:59:58 [ 3] [ 6] [010000] +16:59:58 [ 4] [ 12] [000070000000] +16:59:58 [ 7] [ 10] [0320165953] +16:59:58 [ 11] [ 6] [808240] +16:59:58 [ 12] [ 6] [165953] +16:59:58 [ 13] [ 4] [0320] +16:59:58 [ 15] [ 4] [0320] +16:59:58 [ 18] [ 4] [6011] +16:59:58 [ 22] [ 3] [900] +16:59:58 [ 25] [ 2] [02] +16:59:58 [ 28] [ 9] [D00002000] +16:59:58 [ 32] [ 6] [621354] +16:59:58 [ 35] [ 37] [6688990030017105=98041261580696600000] +16:59:58 [ 37] [ 12] [507902546997] +16:59:58 [ 41] [ 8] [05003700] +16:59:58 [ 42] [ 15] [NATIVE ] +16:59:58 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +16:59:58 [ 49] [ 3] [418] +16:59:58 [ 52] [ 16] [CEA8764CAB07256F] +16:59:58 ============================================================================ +16:59:58 + + +waiting on router queue for slot.... +16:59:58 Sending to : <4> +16:59:58 ============================================================================ +16:59:59 ============================================================================ +16:59:59 Slot Id : <412> +16:59:59 Transaction Type : RESPONSE +16:59:59 Received From : +16:59:59 ============================================================================ +16:59:59 FNo. Len. Field Value +16:59:59 ============================================================================ +16:59:59 [ 1] [ 4] [0210] +16:59:59 [ 2] [ 16] [6688990030017105] +16:59:59 [ 3] [ 6] [010000] +16:59:59 [ 4] [ 12] [000070000000] +16:59:59 [ 11] [ 6] [808240] +16:59:59 [ 12] [ 6] [165953] +16:59:59 [ 15] [ 4] [0320] +16:59:59 [ 18] [ 4] [6011] +16:59:59 [ 32] [ 6] [621354] +16:59:59 [ 35] [ 37] [6688990030017105=98041261580696600000] +16:59:59 [ 37] [ 12] [507902546997] +16:59:59 [ 38] [ 6] [510726] +16:59:59 [ 39] [ 2] [00] +16:59:59 [ 41] [ 8] [05003700] +16:59:59 [ 49] [ 3] [418] +16:59:59 [ 54] [ 20] [0002418C001093457265] +16:59:59 ============================================================================ +16:59:59 Sending to : +16:59:59 ============================================================================ +16:59:59 + + +waiting on router queue for slot.... +17:00:01 ============================================================================ +17:00:01 Slot Id : <412> +17:00:01 Transaction Type : RESPONSE +17:00:01 Received From : +17:00:01 ============================================================================ +17:00:01 FNo. Len. Field Value +17:00:01 ============================================================================ +17:00:01 [ 1] [ 4] [0210] +17:00:01 [ 2] [ 16] [6688990030017105] +17:00:01 [ 3] [ 6] [010000] +17:00:01 [ 4] [ 12] [000070000000] +17:00:01 [ 11] [ 6] [808240] +17:00:01 [ 12] [ 6] [165953] +17:00:01 [ 15] [ 4] [0320] +17:00:01 [ 18] [ 4] [6011] +17:00:01 [ 32] [ 6] [621354] +17:00:01 [ 35] [ 37] [6688990030017105=98041261580696600000] +17:00:01 [ 37] [ 12] [507902546997] +17:00:01 [ 38] [ 6] [510726] +17:00:01 [ 39] [ 2] [00] +17:00:01 [ 41] [ 8] [05003700] +17:00:01 [ 49] [ 3] [418] +17:00:01 [ 54] [ 20] [0002418C001093457265] +17:00:01 ============================================================================ +17:00:01 Calculate Source COMM Id = 0 +17:00:01 ============================================================================ +17:00:01 + + +waiting on router queue for slot.... +17:00:03 ============================================================================ +17:00:03 Slot Id : <447> +17:00:03 Transaction Type : REQUEST +17:00:03 Received From : +17:00:03 ============================================================================ +17:00:03 FNo. Len. Field Value +17:00:03 ============================================================================ +17:00:03 [ 1] [ 4] [0200] +17:00:03 [ 2] [ 16] [6213545000823348] +17:00:03 [ 3] [ 6] [010000] +17:00:03 [ 4] [ 12] [000100000000] +17:00:03 [ 7] [ 10] [0320095908] +17:00:03 [ 11] [ 6] [270682] +17:00:03 [ 12] [ 6] [165908] +17:00:03 [ 13] [ 4] [0320] +17:00:03 [ 14] [ 4] [4912] +17:00:03 [ 15] [ 4] [0320] +17:00:03 [ 18] [ 4] [6011] +17:00:03 [ 19] [ 3] [418] +17:00:03 [ 22] [ 3] [021] +17:00:03 [ 25] [ 2] [01] +17:00:03 [ 28] [ 9] [D00002000] +17:00:03 [ 32] [ 6] [180893] +17:00:03 [ 35] [ 32] [6213545000823348=491212012334687] +17:00:03 [ 37] [ 12] [507909270682] +17:00:03 [ 41] [ 8] [0367BL20] +17:00:03 [ 42] [ 15] [999999 ] +17:00:03 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +17:00:03 [ 49] [ 3] [418] +17:00:03 [ 52] [ 16] [E5811F56F00F889A] +17:00:03 ============================================================================ +17:00:03 + + +waiting on router queue for slot.... +17:00:03 Sending to : +17:00:03 ============================================================================ +17:00:03 Sending to : +17:00:03 ============================================================================ +17:00:03 ============================================================================ +17:00:03 Slot Id : <447> +17:00:03 Transaction Type : REQUEST +17:00:03 Received From : +17:00:03 ============================================================================ +17:00:03 FNo. Len. Field Value +17:00:03 ============================================================================ +17:00:03 [ 1] [ 4] [0200] +17:00:03 [ 2] [ 16] [6213545000823348] +17:00:03 [ 3] [ 6] [010000] +17:00:03 [ 4] [ 12] [000100000000] +17:00:03 [ 7] [ 10] [0320095908] +17:00:03 [ 11] [ 6] [270682] +17:00:03 [ 12] [ 6] [165908] +17:00:03 [ 13] [ 4] [0320] +17:00:03 [ 14] [ 4] [4912] +17:00:03 [ 15] [ 4] [0320] +17:00:03 [ 18] [ 4] [6011] +17:00:03 [ 19] [ 3] [418] +17:00:03 [ 22] [ 3] [021] +17:00:03 [ 25] [ 2] [01] +17:00:03 [ 28] [ 9] [D00002000] +17:00:03 [ 32] [ 6] [180893] +17:00:03 [ 35] [ 32] [6213545000823348=491212012334687] +17:00:03 [ 37] [ 12] [507909270682] +17:00:03 [ 41] [ 8] [0367BL20] +17:00:03 [ 42] [ 15] [999999 ] +17:00:03 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +17:00:03 [ 49] [ 3] [418] +17:00:03 [ 52] [ 16] [E5811F56F00F889A] +17:00:03 ============================================================================ +17:00:03 + + +waiting on router queue for slot.... +17:00:03 Sending to : +17:00:03 ============================================================================ +17:00:03 ============================================================================ +17:00:03 Slot Id : <447> +17:00:03 Transaction Type : REQUEST +17:00:03 Received From : +17:00:03 ============================================================================ +17:00:03 FNo. Len. Field Value +17:00:03 ============================================================================ +17:00:03 [ 1] [ 4] [0200] +17:00:03 [ 2] [ 16] [6213545000823348] +17:00:03 [ 3] [ 6] [010000] +17:00:03 [ 4] [ 12] [000100000000] +17:00:03 [ 7] [ 10] [0320095908] +17:00:03 [ 11] [ 6] [270682] +17:00:03 [ 12] [ 6] [165908] +17:00:03 [ 13] [ 4] [0320] +17:00:03 [ 14] [ 4] [4912] +17:00:03 [ 15] [ 4] [0320] +17:00:03 [ 18] [ 4] [6011] +17:00:03 [ 19] [ 3] [418] +17:00:03 [ 22] [ 3] [021] +17:00:03 [ 25] [ 2] [01] +17:00:03 [ 28] [ 9] [D00002000] +17:00:03 [ 32] [ 6] [180893] +17:00:03 [ 35] [ 32] [6213545000823348=491212012334687] +17:00:03 [ 37] [ 12] [507909270682] +17:00:03 [ 41] [ 8] [0367BL20] +17:00:03 [ 42] [ 15] [999999 ] +17:00:03 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +17:00:03 [ 49] [ 3] [418] +17:00:03 [ 52] [ 16] [67FFE1D459E5ED89] +17:00:03 ============================================================================ +17:00:03 + + +waiting on router queue for slot.... +17:00:03 Sending to : <0> +17:00:03 ============================================================================ +17:00:04 ============================================================================ +17:00:04 Slot Id : <447> +17:00:04 Transaction Type : RESPONSE +17:00:04 Received From : +17:00:04 ============================================================================ +17:00:04 FNo. Len. Field Value +17:00:04 ============================================================================ +17:00:04 [ 1] [ 4] [0210] +17:00:04 [ 2] [ 16] [6213545000823348] +17:00:04 [ 3] [ 6] [010000] +17:00:04 [ 4] [ 12] [000100000000] +17:00:04 [ 7] [ 10] [0320095908] +17:00:04 [ 11] [ 6] [270682] +17:00:04 [ 12] [ 6] [165908] +17:00:04 [ 13] [ 4] [0320] +17:00:04 [ 15] [ 4] [0320] +17:00:04 [ 18] [ 4] [6011] +17:00:04 [ 19] [ 3] [418] +17:00:04 [ 32] [ 6] [180893] +17:00:04 [ 35] [ 32] [6213545000823348=491212012334687] +17:00:04 [ 37] [ 12] [507909270682] +17:00:04 [ 38] [ 6] [500623] +17:00:04 [ 39] [ 2] [00] +17:00:04 [ 41] [ 8] [0367BL20] +17:00:04 [ 49] [ 3] [418] +17:00:04 [ 54] [ 40] [0001418C0000162955430002418C000016295543] +17:00:04 ============================================================================ +17:00:04 Sending to : +17:00:04 ============================================================================ +17:00:04 + + +waiting on router queue for slot.... +17:00:05 ============================================================================ +17:00:05 Slot Id : <447> +17:00:05 Transaction Type : RESPONSE +17:00:05 Received From : +17:00:05 ============================================================================ +17:00:05 FNo. Len. Field Value +17:00:05 ============================================================================ +17:00:05 [ 1] [ 4] [0210] +17:00:05 [ 2] [ 16] [6213545000823348] +17:00:05 [ 3] [ 6] [010000] +17:00:05 [ 4] [ 12] [000100000000] +17:00:05 [ 7] [ 10] [0320095908] +17:00:05 [ 11] [ 6] [270682] +17:00:05 [ 12] [ 6] [165908] +17:00:05 [ 13] [ 4] [0320] +17:00:05 [ 15] [ 4] [0320] +17:00:05 [ 18] [ 4] [6011] +17:00:05 [ 19] [ 3] [418] +17:00:05 [ 32] [ 6] [180893] +17:00:05 [ 35] [ 32] [6213545000823348=491212012334687] +17:00:05 [ 37] [ 12] [507909270682] +17:00:05 [ 38] [ 6] [500623] +17:00:05 [ 39] [ 2] [00] +17:00:05 [ 41] [ 8] [0367BL20] +17:00:05 [ 49] [ 3] [418] +17:00:05 [ 54] [ 40] [0001418C0000162955430002418C000016295543] +17:00:05 ============================================================================ +17:00:05 Calculate Source COMM Id = 2 +17:00:05 ============================================================================ +17:00:05 + + +waiting on router queue for slot.... +17:00:07 ============================================================================ +17:00:07 Slot Id : <391> +17:00:07 Transaction Type : REQUEST +17:00:07 Received From : +17:00:07 ============================================================================ +17:00:07 FNo. Len. Field Value +17:00:07 ============================================================================ +17:00:07 [ 1] [ 4] [0200] +17:00:07 [ 2] [ 16] [6213544002200175] +17:00:07 [ 3] [ 6] [010000] +17:00:07 [ 4] [ 12] [000050000000] +17:00:07 [ 7] [ 10] [0320165757] +17:00:07 [ 11] [ 6] [952702] +17:00:07 [ 12] [ 6] [165757] +17:00:07 [ 13] [ 4] [0320] +17:00:07 [ 15] [ 4] [0320] +17:00:07 [ 18] [ 4] [6011] +17:00:07 [ 19] [ 3] [418] +17:00:07 [ 22] [ 3] [021] +17:00:07 [ 25] [ 2] [01] +17:00:07 [ 28] [ 9] [D00002000] +17:00:07 [ 32] [ 6] [668899] +17:00:07 [ 35] [ 32] [6213544002200175=491212010017900] +17:00:07 [ 37] [ 12] [507902025645] +17:00:07 [ 41] [ 8] [03414002] +17:00:07 [ 42] [ 15] [APT ] +17:00:07 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:00:07 [ 49] [ 3] [418] +17:00:07 [ 52] [ 16] [73BF347CF99D21AD] +17:00:07 ============================================================================ +17:00:07 + + +waiting on router queue for slot.... +17:00:07 Sending to : +17:00:07 ============================================================================ +17:00:07 Sending to : +17:00:07 ============================================================================ +17:00:07 ============================================================================ +17:00:07 Slot Id : <391> +17:00:07 Transaction Type : REQUEST +17:00:07 Received From : +17:00:07 ============================================================================ +17:00:07 FNo. Len. Field Value +17:00:07 ============================================================================ +17:00:07 [ 1] [ 4] [0200] +17:00:07 [ 2] [ 16] [6213544002200175] +17:00:07 [ 3] [ 6] [010000] +17:00:07 [ 4] [ 12] [000050000000] +17:00:07 [ 7] [ 10] [0320165757] +17:00:07 [ 11] [ 6] [952702] +17:00:07 [ 12] [ 6] [165757] +17:00:07 [ 13] [ 4] [0320] +17:00:07 [ 15] [ 4] [0320] +17:00:07 [ 18] [ 4] [6011] +17:00:07 [ 19] [ 3] [418] +17:00:07 [ 22] [ 3] [021] +17:00:07 [ 25] [ 2] [01] +17:00:07 [ 28] [ 9] [D00002000] +17:00:07 [ 32] [ 6] [668899] +17:00:07 [ 35] [ 32] [6213544002200175=491212010017900] +17:00:07 [ 37] [ 12] [507902025645] +17:00:07 [ 41] [ 8] [03414002] +17:00:07 [ 42] [ 15] [APT ] +17:00:07 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:00:07 [ 49] [ 3] [418] +17:00:07 [ 52] [ 16] [73BF347CF99D21AD] +17:00:07 ============================================================================ +17:00:07 + + +waiting on router queue for slot.... +17:00:07 Sending to : +17:00:07 ============================================================================ +17:00:07 ============================================================================ +17:00:07 Slot Id : <391> +17:00:07 Transaction Type : REQUEST +17:00:07 Received From : +17:00:07 ============================================================================ +17:00:07 FNo. Len. Field Value +17:00:07 ============================================================================ +17:00:07 [ 1] [ 4] [0200] +17:00:07 [ 2] [ 16] [6213544002200175] +17:00:07 [ 3] [ 6] [010000] +17:00:07 [ 4] [ 12] [000050000000] +17:00:07 [ 7] [ 10] [0320165757] +17:00:07 [ 11] [ 6] [952702] +17:00:07 [ 12] [ 6] [165757] +17:00:07 [ 13] [ 4] [0320] +17:00:07 [ 15] [ 4] [0320] +17:00:07 [ 18] [ 4] [6011] +17:00:07 [ 19] [ 3] [418] +17:00:07 [ 22] [ 3] [021] +17:00:07 [ 25] [ 2] [01] +17:00:07 [ 28] [ 9] [D00002000] +17:00:07 [ 32] [ 6] [668899] +17:00:07 [ 35] [ 32] [6213544002200175=491212010017900] +17:00:07 [ 37] [ 12] [507902025645] +17:00:07 [ 41] [ 8] [03414002] +17:00:07 [ 42] [ 15] [APT ] +17:00:07 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:00:07 [ 49] [ 3] [418] +17:00:07 [ 52] [ 16] [F2742A5FB7443351] +17:00:07 ============================================================================ +17:00:07 + + +waiting on router queue for slot.... +17:00:07 Sending to : <0> +17:00:07 ============================================================================ +17:00:08 ============================================================================ +17:00:08 Slot Id : <443> +17:00:08 Transaction Type : REQUEST +17:00:08 Received From : +17:00:08 ============================================================================ +17:00:08 FNo. Len. Field Value +17:00:08 ============================================================================ +17:00:08 [ 1] [ 4] [0200] +17:00:08 [ 2] [ 16] [6213541000201197] +17:00:08 [ 3] [ 6] [301000] +17:00:08 [ 4] [ 12] [000000000000] +17:00:08 [ 7] [ 10] [0320170029] +17:00:08 [ 11] [ 6] [209151] +17:00:08 [ 12] [ 6] [165145] +17:00:08 [ 13] [ 4] [0320] +17:00:08 [ 14] [ 4] [4912] +17:00:08 [ 15] [ 4] [0320] +17:00:08 [ 18] [ 4] [6011] +17:00:08 [ 19] [ 3] [418] +17:00:08 [ 22] [ 3] [021] +17:00:08 [ 25] [ 2] [01] +17:00:08 [ 28] [ 9] [D00000000] +17:00:08 [ 32] [ 6] [198901] +17:00:08 [ 35] [ 32] [6213541000201197=491212010119897] +17:00:08 [ 37] [ 12] [507917209151] +17:00:08 [ 41] [ 8] [01529026] +17:00:08 [ 42] [ 15] [000000041529026] +17:00:08 [ 43] [ 40] [JDB ATM LTC VN ] +17:00:08 [ 49] [ 3] [418] +17:00:08 [ 52] [ 16] [BC89E16A5B3758A9] +17:00:08 ============================================================================ +17:00:08 + + +waiting on router queue for slot.... +17:00:08 Sending to : +17:00:08 ============================================================================ +17:00:08 Sending to : +17:00:08 ============================================================================ +17:00:08 ============================================================================ +17:00:08 Slot Id : <405> +17:00:08 Transaction Type : REQUEST +17:00:08 Received From : +17:00:08 ============================================================================ +17:00:08 FNo. Len. Field Value +17:00:08 ============================================================================ +17:00:08 [ 1] [ 4] [0200] +17:00:08 [ 2] [ 16] [6688990103291306] +17:00:08 [ 3] [ 6] [010000] +17:00:08 [ 4] [ 12] [000100000000] +17:00:08 [ 7] [ 10] [0320170003] +17:00:08 [ 11] [ 6] [808300] +17:00:08 [ 12] [ 6] [170003] +17:00:08 [ 13] [ 4] [0320] +17:00:08 [ 15] [ 4] [0320] +17:00:08 [ 18] [ 4] [6011] +17:00:08 [ 22] [ 3] [900] +17:00:08 [ 25] [ 2] [02] +17:00:08 [ 28] [ 9] [D00002000] +17:00:08 [ 32] [ 6] [621354] +17:00:08 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:00:08 [ 37] [ 12] [507903499639] +17:00:08 [ 41] [ 8] [06002200] +17:00:08 [ 42] [ 15] [NATIVE ] +17:00:08 [ 43] [ 40] [Beng Market Beng LAO] +17:00:08 [ 49] [ 3] [418] +17:00:08 [ 52] [ 16] [38E4519FF4022ECA] +17:00:08 ============================================================================ +17:00:08 + + +waiting on router queue for slot.... +17:00:08 Sending to : +17:00:08 ============================================================================ +17:00:08 Sending to : +17:00:08 ============================================================================ +17:00:08 ============================================================================ +17:00:08 Slot Id : <443> +17:00:08 Transaction Type : REQUEST +17:00:08 Received From : +17:00:08 ============================================================================ +17:00:08 FNo. Len. Field Value +17:00:08 ============================================================================ +17:00:08 [ 1] [ 4] [0200] +17:00:08 [ 2] [ 16] [6213541000201197] +17:00:08 [ 3] [ 6] [301000] +17:00:08 [ 4] [ 12] [000000000000] +17:00:08 [ 7] [ 10] [0320170029] +17:00:08 [ 11] [ 6] [209151] +17:00:08 [ 12] [ 6] [165145] +17:00:08 [ 13] [ 4] [0320] +17:00:08 [ 14] [ 4] [4912] +17:00:08 [ 15] [ 4] [0320] +17:00:08 [ 18] [ 4] [6011] +17:00:08 [ 19] [ 3] [418] +17:00:08 [ 22] [ 3] [021] +17:00:08 [ 25] [ 2] [01] +17:00:08 [ 28] [ 9] [D00000000] +17:00:08 [ 32] [ 6] [198901] +17:00:08 [ 35] [ 32] [6213541000201197=491212010119897] +17:00:08 [ 37] [ 12] [507917209151] +17:00:08 [ 41] [ 8] [01529026] +17:00:08 [ 42] [ 15] [000000041529026] +17:00:08 [ 43] [ 40] [JDB ATM LTC VN ] +17:00:08 [ 49] [ 3] [418] +17:00:08 [ 52] [ 16] [BC89E16A5B3758A9] +17:00:08 ============================================================================ +17:00:08 + + +waiting on router queue for slot.... +17:00:08 Sending to : +17:00:08 ============================================================================ +17:00:09 ============================================================================ +17:00:09 Slot Id : <391> +17:00:09 Transaction Type : RESPONSE +17:00:09 Received From : +17:00:09 ============================================================================ +17:00:09 FNo. Len. Field Value +17:00:09 ============================================================================ +17:00:09 [ 1] [ 4] [0210] +17:00:09 [ 2] [ 16] [6213544002200175] +17:00:09 [ 3] [ 6] [010000] +17:00:09 [ 4] [ 12] [000050000000] +17:00:09 [ 7] [ 10] [0320165757] +17:00:09 [ 11] [ 6] [952702] +17:00:09 [ 12] [ 6] [165757] +17:00:09 [ 13] [ 4] [0320] +17:00:09 [ 15] [ 4] [0320] +17:00:09 [ 18] [ 4] [6011] +17:00:09 [ 19] [ 3] [418] +17:00:09 [ 32] [ 6] [668899] +17:00:09 [ 35] [ 32] [6213544002200175=491212010017900] +17:00:09 [ 37] [ 12] [507902025645] +17:00:09 [ 38] [ 6] [952702] +17:00:09 [ 39] [ 2] [51] +17:00:09 [ 41] [ 8] [03414002] +17:00:09 [ 49] [ 3] [418] +17:00:09 [ 54] [ 40] [0001418C0000551216360002418C000055121636] +17:00:09 ============================================================================ +17:00:09 Sending to : +17:00:09 ============================================================================ +17:00:09 + + +waiting on router queue for slot.... +17:00:09 ============================================================================ +17:00:09 Slot Id : <443> +17:00:09 Transaction Type : REQUEST +17:00:09 Received From : +17:00:09 ============================================================================ +17:00:09 FNo. Len. Field Value +17:00:09 ============================================================================ +17:00:09 [ 1] [ 4] [0200] +17:00:09 [ 2] [ 16] [6213541000201197] +17:00:09 [ 3] [ 6] [301000] +17:00:09 [ 4] [ 12] [000000000000] +17:00:09 [ 7] [ 10] [0320170029] +17:00:09 [ 11] [ 6] [209151] +17:00:09 [ 12] [ 6] [165145] +17:00:09 [ 13] [ 4] [0320] +17:00:09 [ 14] [ 4] [4912] +17:00:09 [ 15] [ 4] [0320] +17:00:09 [ 18] [ 4] [6011] +17:00:09 [ 19] [ 3] [418] +17:00:09 [ 22] [ 3] [021] +17:00:09 [ 25] [ 2] [01] +17:00:09 [ 28] [ 9] [D00000000] +17:00:09 [ 32] [ 6] [198901] +17:00:09 [ 35] [ 32] [6213541000201197=491212010119897] +17:00:09 [ 37] [ 12] [507917209151] +17:00:09 [ 41] [ 8] [01529026] +17:00:09 [ 42] [ 15] [000000041529026] +17:00:09 [ 43] [ 40] [JDB ATM LTC VN ] +17:00:09 [ 49] [ 3] [418] +17:00:09 [ 52] [ 16] [1A302631DD8F9C3E] +17:00:09 ============================================================================ +17:00:09 + + +waiting on router queue for slot.... +17:00:09 Sending to : <0> +17:00:09 ============================================================================ +17:00:09 ============================================================================ +17:00:09 Slot Id : <405> +17:00:09 Transaction Type : REQUEST +17:00:09 Received From : +17:00:09 ============================================================================ +17:00:09 FNo. Len. Field Value +17:00:09 ============================================================================ +17:00:09 [ 1] [ 4] [0200] +17:00:09 [ 2] [ 16] [6688990103291306] +17:00:09 [ 3] [ 6] [010000] +17:00:09 [ 4] [ 12] [000100000000] +17:00:09 [ 7] [ 10] [0320170003] +17:00:09 [ 11] [ 6] [808300] +17:00:09 [ 12] [ 6] [170003] +17:00:09 [ 13] [ 4] [0320] +17:00:09 [ 15] [ 4] [0320] +17:00:09 [ 18] [ 4] [6011] +17:00:09 [ 22] [ 3] [900] +17:00:09 [ 25] [ 2] [02] +17:00:09 [ 28] [ 9] [D00002000] +17:00:09 [ 32] [ 6] [621354] +17:00:09 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:00:09 [ 37] [ 12] [507903499639] +17:00:09 [ 41] [ 8] [06002200] +17:00:09 [ 42] [ 15] [NATIVE ] +17:00:09 [ 43] [ 40] [Beng Market Beng LAO] +17:00:09 [ 49] [ 3] [418] +17:00:09 [ 52] [ 16] [38E4519FF4022ECA] +17:00:09 ============================================================================ +17:00:09 + + +waiting on router queue for slot.... +17:00:09 Sending to : +17:00:09 ============================================================================ +17:00:09 ============================================================================ +17:00:09 Slot Id : <405> +17:00:09 Transaction Type : REQUEST +17:00:09 Received From : +17:00:09 ============================================================================ +17:00:09 FNo. Len. Field Value +17:00:09 ============================================================================ +17:00:09 [ 1] [ 4] [0200] +17:00:09 [ 2] [ 16] [6688990103291306] +17:00:09 [ 3] [ 6] [010000] +17:00:09 [ 4] [ 12] [000100000000] +17:00:09 [ 7] [ 10] [0320170003] +17:00:09 [ 11] [ 6] [808300] +17:00:09 [ 12] [ 6] [170003] +17:00:09 [ 13] [ 4] [0320] +17:00:09 [ 15] [ 4] [0320] +17:00:09 [ 18] [ 4] [6011] +17:00:09 [ 22] [ 3] [900] +17:00:09 [ 25] [ 2] [02] +17:00:09 [ 28] [ 9] [D00002000] +17:00:09 [ 32] [ 6] [621354] +17:00:09 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:00:09 [ 37] [ 12] [507903499639] +17:00:09 [ 41] [ 8] [06002200] +17:00:09 [ 42] [ 15] [NATIVE ] +17:00:09 [ 43] [ 40] [Beng Market Beng LAO] +17:00:09 [ 49] [ 3] [418] +17:00:09 [ 52] [ 16] [607F46DA2443E332] +17:00:09 ============================================================================ +17:00:09 + + +waiting on router queue for slot.... +17:00:09 Sending to : <4> +17:00:09 ============================================================================ +17:00:09 ============================================================================ +17:00:09 Slot Id : <443> +17:00:09 Transaction Type : RESPONSE +17:00:09 Received From : +17:00:09 ============================================================================ +17:00:09 FNo. Len. Field Value +17:00:09 ============================================================================ +17:00:09 [ 1] [ 4] [0210] +17:00:09 [ 2] [ 16] [6213541000201197] +17:00:09 [ 3] [ 6] [301000] +17:00:09 [ 4] [ 12] [000000000000] +17:00:09 [ 7] [ 10] [0320170029] +17:00:09 [ 11] [ 6] [209151] +17:00:09 [ 12] [ 6] [165145] +17:00:09 [ 13] [ 4] [0320] +17:00:09 [ 15] [ 4] [0320] +17:00:09 [ 18] [ 4] [6011] +17:00:09 [ 19] [ 3] [418] +17:00:09 [ 32] [ 6] [198901] +17:00:09 [ 35] [ 32] [6213541000201197=491212010119897] +17:00:09 [ 37] [ 12] [507917209151] +17:00:09 [ 38] [ 6] [047425] +17:00:09 [ 39] [ 2] [00] +17:00:09 [ 41] [ 8] [01529026] +17:00:09 [ 49] [ 3] [418] +17:00:09 [ 54] [ 40] [1001418C0010325053461002418C001032505346] +17:00:09 ============================================================================ +17:00:09 Sending to : +17:00:09 ============================================================================ +17:00:09 + + +waiting on router queue for slot.... +17:00:09 ============================================================================ +17:00:09 Slot Id : <429> +17:00:09 Transaction Type : REQUEST +17:00:09 Received From : +17:00:09 ============================================================================ +17:00:09 FNo. Len. Field Value +17:00:09 ============================================================================ +17:00:09 [ 1] [ 4] [0200] +17:00:09 [ 2] [ 16] [6213544002112842] +17:00:09 [ 3] [ 6] [310000] +17:00:09 [ 4] [ 12] [000000000000] +17:00:09 [ 7] [ 10] [0320170756] +17:00:09 [ 11] [ 6] [240491] +17:00:09 [ 12] [ 6] [170756] +17:00:09 [ 13] [ 4] [0320] +17:00:09 [ 14] [ 4] [4912] +17:00:09 [ 15] [ 4] [0320] +17:00:09 [ 18] [ 4] [6011] +17:00:09 [ 22] [ 3] [900] +17:00:09 [ 25] [ 2] [02] +17:00:09 [ 28] [ 9] [000000000] +17:00:09 [ 32] [ 6] [220699] +17:00:09 [ 35] [ 32] [6213544002112842=491212011284917] +17:00:09 [ 37] [ 12] [507900360234] +17:00:09 [ 41] [ 8] [05000300] +17:00:09 [ 42] [ 15] [APTRA ] +17:00:09 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:00:09 [ 49] [ 3] [418] +17:00:09 [ 52] [ 16] [9D93C09D12C2F12E] +17:00:09 ============================================================================ +17:00:09 + + +waiting on router queue for slot.... +17:00:09 Sending to : +17:00:09 ============================================================================ +17:00:09 Sending to : +17:00:09 ============================================================================ +17:00:10 ============================================================================ +17:00:10 Slot Id : <405> +17:00:10 Transaction Type : RESPONSE +17:00:10 Received From : +17:00:10 ============================================================================ +17:00:10 FNo. Len. Field Value +17:00:10 ============================================================================ +17:00:10 [ 1] [ 4] [0210] +17:00:10 [ 2] [ 16] [6688990103291306] +17:00:10 [ 3] [ 6] [010000] +17:00:10 [ 4] [ 12] [000100000000] +17:00:10 [ 11] [ 6] [808300] +17:00:10 [ 12] [ 6] [170003] +17:00:10 [ 15] [ 4] [0320] +17:00:10 [ 18] [ 4] [6011] +17:00:10 [ 32] [ 6] [621354] +17:00:10 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:00:10 [ 37] [ 12] [507903499639] +17:00:10 [ 38] [ 6] [861775] +17:00:10 [ 39] [ 2] [00] +17:00:10 [ 41] [ 8] [06002200] +17:00:10 [ 49] [ 3] [418] +17:00:10 [ 54] [ 20] [0002418C000117102559] +17:00:10 ============================================================================ +17:00:10 Sending to : +17:00:10 ============================================================================ +17:00:10 + + +waiting on router queue for slot.... +17:00:10 ============================================================================ +17:00:10 Slot Id : <429> +17:00:10 Transaction Type : REQUEST +17:00:10 Received From : +17:00:10 ============================================================================ +17:00:10 FNo. Len. Field Value +17:00:10 ============================================================================ +17:00:10 [ 1] [ 4] [0200] +17:00:10 [ 2] [ 16] [6213544002112842] +17:00:10 [ 3] [ 6] [310000] +17:00:10 [ 4] [ 12] [000000000000] +17:00:10 [ 7] [ 10] [0320170756] +17:00:10 [ 11] [ 6] [240491] +17:00:10 [ 12] [ 6] [170756] +17:00:10 [ 13] [ 4] [0320] +17:00:10 [ 14] [ 4] [4912] +17:00:10 [ 15] [ 4] [0320] +17:00:10 [ 18] [ 4] [6011] +17:00:10 [ 22] [ 3] [900] +17:00:10 [ 25] [ 2] [02] +17:00:10 [ 28] [ 9] [000000000] +17:00:10 [ 32] [ 6] [220699] +17:00:10 [ 35] [ 32] [6213544002112842=491212011284917] +17:00:10 [ 37] [ 12] [507900360234] +17:00:10 [ 41] [ 8] [05000300] +17:00:10 [ 42] [ 15] [APTRA ] +17:00:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:00:10 [ 49] [ 3] [418] +17:00:10 [ 52] [ 16] [9D93C09D12C2F12E] +17:00:10 ============================================================================ +17:00:10 + + +waiting on router queue for slot.... +17:00:10 ============================================================================ +17:00:10 Slot Id : <391> +17:00:10 Transaction Type : RESPONSE +17:00:10 Received From : +17:00:10 ============================================================================ +17:00:10 FNo. Len. Field Value +17:00:10 ============================================================================ +17:00:10 [ 1] [ 4] [0210] +17:00:10 [ 2] [ 16] [6213544002200175] +17:00:10 [ 3] [ 6] [010000] +17:00:10 [ 4] [ 12] [000050000000] +17:00:10 [ 7] [ 10] [0320165757] +17:00:10 [ 11] [ 6] [952702] +17:00:10 [ 12] [ 6] [165757] +17:00:10 [ 13] [ 4] [0320] +17:00:10 [ 15] [ 4] [0320] +17:00:10 [ 18] [ 4] [6011] +17:00:10 Sending to : +17:00:10 [ 19] [ 3] [418] +17:00:10 ============================================================================ +17:00:10 [ 32] [ 6] [668899] +17:00:10 [ 35] [ 32] [6213544002200175=491212010017900] +17:00:10 [ 37] [ 12] [507902025645] +17:00:10 [ 38] [ 6] [952702] +17:00:10 [ 39] [ 2] [51] +17:00:10 [ 41] [ 8] [03414002] +17:00:10 [ 49] [ 3] [418] +17:00:10 [ 54] [ 40] [0001418C0000551216360002418C000055121636] +17:00:10 ============================================================================ +17:00:10 Calculate Source COMM Id = 4 +17:00:10 ============================================================================ +17:00:10 + + +waiting on router queue for slot.... +17:00:10 ============================================================================ +17:00:10 Slot Id : <429> +17:00:10 Transaction Type : REQUEST +17:00:10 Received From : +17:00:10 ============================================================================ +17:00:10 FNo. Len. Field Value +17:00:10 ============================================================================ +17:00:10 [ 1] [ 4] [0200] +17:00:10 [ 2] [ 16] [6213544002112842] +17:00:10 [ 3] [ 6] [310000] +17:00:10 [ 4] [ 12] [000000000000] +17:00:10 [ 7] [ 10] [0320170756] +17:00:10 [ 11] [ 6] [240491] +17:00:10 [ 12] [ 6] [170756] +17:00:10 [ 13] [ 4] [0320] +17:00:10 [ 14] [ 4] [4912] +17:00:10 [ 15] [ 4] [0320] +17:00:10 [ 18] [ 4] [6011] +17:00:10 [ 22] [ 3] [900] +17:00:10 [ 25] [ 2] [02] +17:00:10 [ 28] [ 9] [000000000] +17:00:10 [ 32] [ 6] [220699] +17:00:10 [ 35] [ 32] [6213544002112842=491212011284917] +17:00:10 [ 37] [ 12] [507900360234] +17:00:10 [ 41] [ 8] [05000300] +17:00:10 [ 42] [ 15] [APTRA ] +17:00:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:00:10 [ 49] [ 3] [418] +17:00:10 [ 52] [ 16] [6545FAE92A42C37C] +17:00:10 ============================================================================ +17:00:10 + + +waiting on router queue for slot.... +17:00:10 Sending to : <0> +17:00:10 ============================================================================ +17:00:10 ============================================================================ +17:00:10 Slot Id : <429> +17:00:10 Transaction Type : RESPONSE +17:00:10 Received From : +17:00:10 ============================================================================ +17:00:10 FNo. Len. Field Value +17:00:10 ============================================================================ +17:00:10 [ 1] [ 4] [0210] +17:00:10 [ 2] [ 16] [6213544002112842] +17:00:10 [ 3] [ 6] [310000] +17:00:10 [ 4] [ 12] [000000000000] +17:00:10 [ 7] [ 10] [0320170756] +17:00:10 [ 11] [ 6] [240491] +17:00:10 [ 12] [ 6] [170756] +17:00:10 [ 13] [ 4] [0320] +17:00:10 [ 15] [ 4] [0320] +17:00:10 [ 18] [ 4] [6011] +17:00:10 [ 32] [ 6] [220699] +17:00:10 [ 35] [ 32] [6213544002112842=491212011284917] +17:00:10 [ 37] [ 12] [507900360234] +17:00:10 [ 38] [ 6] [214344] +17:00:10 [ 39] [ 2] [00] +17:00:10 [ 41] [ 8] [05000300] +17:00:10 [ 49] [ 3] [418] +17:00:10 [ 54] [ 40] [0001418C0000557290660002418C000055729066] +17:00:10 ============================================================================ +17:00:10 Sending to : +17:00:10 ============================================================================ +17:00:10 + + +waiting on router queue for slot.... +17:00:11 ============================================================================ +17:00:11 Slot Id : <386> +17:00:11 Transaction Type : REQUEST +17:00:11 Received From : +17:00:11 ============================================================================ +17:00:11 FNo. Len. Field Value +17:00:11 ============================================================================ +17:00:11 [ 1] [ 4] [0200] +17:00:11 [ 2] [ 16] [6213541000675747] +17:00:11 [ 3] [ 6] [010000] +17:00:11 [ 4] [ 12] [000100000000] +17:00:11 [ 7] [ 10] [0320165801] +17:00:11 [ 11] [ 6] [952704] +17:00:11 [ 12] [ 6] [165801] +17:00:11 [ 13] [ 4] [0320] +17:00:11 [ 15] [ 4] [0320] +17:00:11 [ 18] [ 4] [6011] +17:00:11 [ 19] [ 3] [418] +17:00:11 [ 22] [ 3] [021] +17:00:11 [ 25] [ 2] [01] +17:00:11 [ 28] [ 9] [D00002000] +17:00:11 [ 32] [ 6] [668899] +17:00:11 [ 35] [ 32] [6213541000675747=491212017574189] +17:00:11 [ 37] [ 12] [507901215104] +17:00:11 [ 41] [ 8] [03020013] +17:00:11 [ 42] [ 15] [APT ] +17:00:11 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +17:00:11 [ 49] [ 3] [418] +17:00:11 [ 52] [ 16] [3C2EF3739DE2AF27] +17:00:11 ============================================================================ +17:00:11 + + +waiting on router queue for slot.... +17:00:11 Sending to : +17:00:11 ============================================================================ +17:00:11 Sending to : +17:00:11 ============================================================================ +17:00:11 ============================================================================ +17:00:11 Slot Id : <386> +17:00:11 Transaction Type : REQUEST +17:00:11 Received From : +17:00:11 ============================================================================ +17:00:11 FNo. Len. Field Value +17:00:11 ============================================================================ +17:00:11 [ 1] [ 4] [0200] +17:00:11 [ 2] [ 16] [6213541000675747] +17:00:11 [ 3] [ 6] [010000] +17:00:11 [ 4] [ 12] [000100000000] +17:00:11 [ 7] [ 10] [0320165801] +17:00:11 [ 11] [ 6] [952704] +17:00:11 [ 12] [ 6] [165801] +17:00:11 [ 13] [ 4] [0320] +17:00:11 [ 15] [ 4] [0320] +17:00:11 [ 18] [ 4] [6011] +17:00:11 [ 19] [ 3] [418] +17:00:11 [ 22] [ 3] [021] +17:00:11 [ 25] [ 2] [01] +17:00:11 [ 28] [ 9] [D00002000] +17:00:11 [ 32] [ 6] [668899] +17:00:11 [ 35] [ 32] [6213541000675747=491212017574189] +17:00:11 [ 37] [ 12] [507901215104] +17:00:11 [ 41] [ 8] [03020013] +17:00:11 [ 42] [ 15] [APT ] +17:00:11 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +17:00:11 [ 49] [ 3] [418] +17:00:11 [ 52] [ 16] [3C2EF3739DE2AF27] +17:00:11 ============================================================================ +17:00:11 + + +waiting on router queue for slot.... +17:00:11 Sending to : +17:00:11 ============================================================================ +17:00:11 ============================================================================ +17:00:11 Slot Id : <386> +17:00:11 Transaction Type : REQUEST +17:00:11 Received From : +17:00:11 ============================================================================ +17:00:11 FNo. Len. Field Value +17:00:11 ============================================================================ +17:00:11 [ 1] [ 4] [0200] +17:00:11 [ 2] [ 16] [6213541000675747] +17:00:11 [ 3] [ 6] [010000] +17:00:11 [ 4] [ 12] [000100000000] +17:00:11 [ 7] [ 10] [0320165801] +17:00:11 [ 11] [ 6] [952704] +17:00:11 [ 12] [ 6] [165801] +17:00:11 [ 13] [ 4] [0320] +17:00:11 [ 15] [ 4] [0320] +17:00:11 [ 18] [ 4] [6011] +17:00:11 [ 19] [ 3] [418] +17:00:11 [ 22] [ 3] [021] +17:00:11 [ 25] [ 2] [01] +17:00:11 [ 28] [ 9] [D00002000] +17:00:11 [ 32] [ 6] [668899] +17:00:11 [ 35] [ 32] [6213541000675747=491212017574189] +17:00:11 [ 37] [ 12] [507901215104] +17:00:11 [ 41] [ 8] [03020013] +17:00:11 [ 42] [ 15] [APT ] +17:00:11 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +17:00:11 [ 49] [ 3] [418] +17:00:11 [ 52] [ 16] [11E8C0584C59FB9E] +17:00:11 ============================================================================ +17:00:11 + + +waiting on router queue for slot.... +17:00:11 Sending to : <0> +17:00:11 ============================================================================ +17:00:11 ============================================================================ +17:00:11 Slot Id : <405> +17:00:11 Transaction Type : RESPONSE +17:00:11 Received From : +17:00:11 ============================================================================ +17:00:11 FNo. Len. Field Value +17:00:11 ============================================================================ +17:00:11 [ 1] [ 4] [0210] +17:00:11 [ 2] [ 16] [6688990103291306] +17:00:11 [ 3] [ 6] [010000] +17:00:11 [ 4] [ 12] [000100000000] +17:00:11 [ 11] [ 6] [808300] +17:00:11 [ 12] [ 6] [170003] +17:00:11 [ 15] [ 4] [0320] +17:00:11 [ 18] [ 4] [6011] +17:00:11 [ 32] [ 6] [621354] +17:00:11 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:00:11 [ 37] [ 12] [507903499639] +17:00:11 [ 38] [ 6] [861775] +17:00:11 [ 39] [ 2] [00] +17:00:11 [ 41] [ 8] [06002200] +17:00:11 [ 49] [ 3] [418] +17:00:11 [ 54] [ 20] [0002418C000117102559] +17:00:11 ============================================================================ +17:00:11 Calculate Source COMM Id = 0 +17:00:11 ============================================================================ +17:00:11 + + +waiting on router queue for slot.... +17:00:13 ============================================================================ +17:00:13 Slot Id : <386> +17:00:13 Transaction Type : RESPONSE +17:00:13 Received From : +17:00:13 ============================================================================ +17:00:13 FNo. Len. Field Value +17:00:13 ============================================================================ +17:00:13 [ 1] [ 4] [0210] +17:00:13 [ 2] [ 16] [6213541000675747] +17:00:13 [ 3] [ 6] [010000] +17:00:13 [ 4] [ 12] [000100000000] +17:00:13 [ 7] [ 10] [0320165801] +17:00:13 [ 11] [ 6] [952704] +17:00:13 [ 12] [ 6] [165801] +17:00:13 [ 13] [ 4] [0320] +17:00:13 [ 15] [ 4] [0320] +17:00:13 [ 18] [ 4] [6011] +17:00:13 [ 19] [ 3] [418] +17:00:13 [ 32] [ 6] [668899] +17:00:13 [ 35] [ 32] [6213541000675747=491212017574189] +17:00:13 [ 37] [ 12] [507901215104] +17:00:13 [ 38] [ 6] [782328] +17:00:13 [ 39] [ 2] [00] +17:00:13 [ 41] [ 8] [03020013] +17:00:13 [ 49] [ 3] [418] +17:00:13 [ 54] [ 40] [0001840C0000001403470002840C000000140347] +17:00:13 ============================================================================ +17:00:13 Sending to : +17:00:13 ============================================================================ +17:00:13 + + +waiting on router queue for slot.... +17:00:13 ============================================================================ +17:00:13 Slot Id : <429> +17:00:13 Transaction Type : RESPONSE +17:00:13 Received From : +17:00:13 ============================================================================ +17:00:13 FNo. Len. Field Value +17:00:13 ============================================================================ +17:00:13 [ 1] [ 4] [0210] +17:00:13 [ 2] [ 16] [6213544002112842] +17:00:13 [ 3] [ 6] [310000] +17:00:13 [ 4] [ 12] [000000000000] +17:00:13 [ 7] [ 10] [0320170756] +17:00:13 [ 11] [ 6] [240491] +17:00:13 [ 12] [ 6] [170756] +17:00:13 [ 13] [ 4] [0320] +17:00:13 [ 15] [ 4] [0320] +17:00:13 [ 18] [ 4] [6011] +17:00:13 [ 32] [ 6] [220699] +17:00:13 [ 35] [ 32] [6213544002112842=491212011284917] +17:00:13 [ 37] [ 12] [507900360234] +17:00:13 [ 38] [ 6] [214344] +17:00:13 [ 39] [ 2] [00] +17:00:13 [ 41] [ 8] [05000300] +17:00:13 [ 49] [ 3] [418] +17:00:13 [ 54] [ 40] [0001418C0000557290660002418C000055729066] +17:00:13 ============================================================================ +17:00:13 Calculate Source COMM Id = 1 +17:00:13 ============================================================================ +17:00:13 + + +waiting on router queue for slot.... +17:00:14 ============================================================================ +17:00:14 Slot Id : <386> +17:00:14 Transaction Type : RESPONSE +17:00:14 Received From : +17:00:14 ============================================================================ +17:00:14 FNo. Len. Field Value +17:00:14 ============================================================================ +17:00:14 [ 1] [ 4] [0210] +17:00:14 [ 2] [ 16] [6213541000675747] +17:00:14 [ 3] [ 6] [010000] +17:00:14 [ 4] [ 12] [000100000000] +17:00:14 [ 7] [ 10] [0320165801] +17:00:14 [ 11] [ 6] [952704] +17:00:14 [ 12] [ 6] [165801] +17:00:14 [ 13] [ 4] [0320] +17:00:14 [ 15] [ 4] [0320] +17:00:14 [ 18] [ 4] [6011] +17:00:14 [ 19] [ 3] [418] +17:00:14 [ 32] [ 6] [668899] +17:00:14 [ 35] [ 32] [6213541000675747=491212017574189] +17:00:14 [ 37] [ 12] [507901215104] +17:00:14 [ 38] [ 6] [782328] +17:00:14 [ 39] [ 2] [00] +17:00:14 [ 41] [ 8] [03020013] +17:00:14 [ 49] [ 3] [418] +17:00:14 [ 54] [ 40] [0001840C0000001403470002840C000000140347] +17:00:14 ============================================================================ +17:00:14 Calculate Source COMM Id = 4 +17:00:14 ============================================================================ +17:00:14 + + +waiting on router queue for slot.... +17:00:16 ============================================================================ +17:00:16 Slot Id : <443> +17:00:16 Transaction Type : RESPONSE +17:00:16 Received From : +17:00:16 ============================================================================ +17:00:16 FNo. Len. Field Value +17:00:16 ============================================================================ +17:00:16 [ 1] [ 4] [0210] +17:00:16 [ 2] [ 16] [6213541000201197] +17:00:16 [ 3] [ 6] [301000] +17:00:16 [ 4] [ 12] [000000000000] +17:00:16 [ 7] [ 10] [0320170029] +17:00:16 [ 11] [ 6] [209151] +17:00:16 [ 12] [ 6] [165145] +17:00:16 [ 13] [ 4] [0320] +17:00:16 [ 15] [ 4] [0320] +17:00:16 [ 18] [ 4] [6011] +17:00:16 [ 19] [ 3] [418] +17:00:16 [ 32] [ 6] [198901] +17:00:16 [ 35] [ 32] [6213541000201197=491212010119897] +17:00:16 [ 37] [ 12] [507917209151] +17:00:16 [ 38] [ 6] [047425] +17:00:16 [ 39] [ 2] [00] +17:00:16 [ 41] [ 8] [01529026] +17:00:16 [ 49] [ 3] [418] +17:00:16 [ 54] [ 40] [1001418C0010325053461002418C001032505346] +17:00:16 ============================================================================ +17:00:16 Calculate Source COMM Id = 5 +17:00:16 ============================================================================ +17:00:16 + + +waiting on router queue for slot.... +17:00:17 ============================================================================ +17:00:17 Slot Id : <377> +17:00:17 Transaction Type : REQUEST +17:00:17 Received From : +17:00:17 ============================================================================ +17:00:17 FNo. Len. Field Value +17:00:17 ============================================================================ +17:00:17 [ 1] [ 4] [0200] +17:00:17 [ 2] [ 16] [6213544001970687] +17:00:17 [ 3] [ 6] [011000] +17:00:17 [ 4] [ 12] [000050000000] +17:00:17 [ 7] [ 10] [0320170037] +17:00:17 [ 11] [ 6] [209154] +17:00:17 [ 12] [ 6] [165543] +17:00:17 [ 13] [ 4] [0320] +17:00:17 [ 14] [ 4] [4912] +17:00:17 [ 15] [ 4] [0320] +17:00:17 [ 18] [ 4] [6011] +17:00:17 [ 19] [ 3] [418] +17:00:17 [ 22] [ 3] [021] +17:00:17 [ 25] [ 2] [01] +17:00:17 [ 28] [ 9] [D00002000] +17:00:17 [ 32] [ 6] [198901] +17:00:17 [ 35] [ 32] [6213544001970687=491212017068304] +17:00:17 [ 37] [ 12] [507917209154] +17:00:17 [ 41] [ 8] [19529001] +17:00:17 [ 42] [ 15] [000000041952901] +17:00:17 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:00:17 [ 49] [ 3] [418] +17:00:17 [ 52] [ 16] [22CE65D404135FE7] +17:00:17 ============================================================================ +17:00:17 + + +waiting on router queue for slot.... +17:00:17 Sending to : +17:00:17 ============================================================================ +17:00:17 Sending to : +17:00:17 ============================================================================ +17:00:17 ============================================================================ +17:00:17 Slot Id : <377> +17:00:17 Transaction Type : REQUEST +17:00:17 Received From : +17:00:17 ============================================================================ +17:00:17 FNo. Len. Field Value +17:00:17 ============================================================================ +17:00:17 [ 1] [ 4] [0200] +17:00:17 [ 2] [ 16] [6213544001970687] +17:00:17 [ 3] [ 6] [011000] +17:00:17 [ 4] [ 12] [000050000000] +17:00:17 [ 7] [ 10] [0320170037] +17:00:17 [ 11] [ 6] [209154] +17:00:17 [ 12] [ 6] [165543] +17:00:17 [ 13] [ 4] [0320] +17:00:17 [ 14] [ 4] [4912] +17:00:17 [ 15] [ 4] [0320] +17:00:17 [ 18] [ 4] [6011] +17:00:17 [ 19] [ 3] [418] +17:00:17 [ 22] [ 3] [021] +17:00:17 [ 25] [ 2] [01] +17:00:17 [ 28] [ 9] [D00002000] +17:00:17 [ 32] [ 6] [198901] +17:00:17 [ 35] [ 32] [6213544001970687=491212017068304] +17:00:17 [ 37] [ 12] [507917209154] +17:00:17 [ 41] [ 8] [19529001] +17:00:17 [ 42] [ 15] [000000041952901] +17:00:17 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:00:17 [ 49] [ 3] [418] +17:00:17 [ 52] [ 16] [22CE65D404135FE7] +17:00:17 ============================================================================ +17:00:17 + + +waiting on router queue for slot.... +17:00:17 Sending to : +17:00:17 ============================================================================ +17:00:17 ============================================================================ +17:00:17 Slot Id : <377> +17:00:17 Transaction Type : REQUEST +17:00:17 Received From : +17:00:17 ============================================================================ +17:00:17 FNo. Len. Field Value +17:00:17 ============================================================================ +17:00:17 [ 1] [ 4] [0200] +17:00:17 [ 2] [ 16] [6213544001970687] +17:00:17 [ 3] [ 6] [011000] +17:00:17 [ 4] [ 12] [000050000000] +17:00:17 [ 7] [ 10] [0320170037] +17:00:17 [ 11] [ 6] [209154] +17:00:17 [ 12] [ 6] [165543] +17:00:17 [ 13] [ 4] [0320] +17:00:17 [ 14] [ 4] [4912] +17:00:17 [ 15] [ 4] [0320] +17:00:17 [ 18] [ 4] [6011] +17:00:17 [ 19] [ 3] [418] +17:00:17 [ 22] [ 3] [021] +17:00:17 [ 25] [ 2] [01] +17:00:17 [ 28] [ 9] [D00002000] +17:00:17 [ 32] [ 6] [198901] +17:00:17 [ 35] [ 32] [6213544001970687=491212017068304] +17:00:17 [ 37] [ 12] [507917209154] +17:00:17 [ 41] [ 8] [19529001] +17:00:17 [ 42] [ 15] [000000041952901] +17:00:17 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:00:17 [ 49] [ 3] [418] +17:00:17 [ 52] [ 16] [567B91BBFCCFC342] +17:00:17 ============================================================================ +17:00:17 + + +waiting on router queue for slot.... +17:00:17 Sending to : <0> +17:00:17 ============================================================================ +17:00:19 ============================================================================ +17:00:19 Slot Id : <377> +17:00:19 Transaction Type : RESPONSE +17:00:19 Received From : +17:00:19 ============================================================================ +17:00:19 FNo. Len. Field Value +17:00:19 ============================================================================ +17:00:19 [ 1] [ 4] [0210] +17:00:19 [ 2] [ 16] [6213544001970687] +17:00:19 [ 3] [ 6] [011000] +17:00:19 [ 4] [ 12] [000050000000] +17:00:19 [ 7] [ 10] [0320170037] +17:00:19 [ 11] [ 6] [209154] +17:00:19 [ 12] [ 6] [165543] +17:00:19 [ 13] [ 4] [0320] +17:00:19 [ 15] [ 4] [0320] +17:00:19 [ 18] [ 4] [6011] +17:00:19 [ 19] [ 3] [418] +17:00:19 [ 32] [ 6] [198901] +17:00:19 [ 35] [ 32] [6213544001970687=491212017068304] +17:00:19 [ 37] [ 12] [507917209154] +17:00:19 [ 38] [ 6] [731353] +17:00:19 [ 39] [ 2] [00] +17:00:19 [ 41] [ 8] [19529001] +17:00:19 [ 49] [ 3] [418] +17:00:19 [ 54] [ 40] [1001418C0000052234231002418C000005223423] +17:00:19 ============================================================================ +17:00:19 Sending to : +17:00:19 ============================================================================ +17:00:19 + + +waiting on router queue for slot.... +17:00:20 ============================================================================ +17:00:20 Slot Id : <377> +17:00:20 Transaction Type : RESPONSE +17:00:20 Received From : +17:00:20 ============================================================================ +17:00:20 FNo. Len. Field Value +17:00:20 ============================================================================ +17:00:20 [ 1] [ 4] [0210] +17:00:20 [ 2] [ 16] [6213544001970687] +17:00:20 [ 3] [ 6] [011000] +17:00:20 [ 4] [ 12] [000050000000] +17:00:20 [ 7] [ 10] [0320170037] +17:00:20 [ 11] [ 6] [209154] +17:00:20 [ 12] [ 6] [165543] +17:00:20 [ 13] [ 4] [0320] +17:00:20 [ 15] [ 4] [0320] +17:00:20 [ 18] [ 4] [6011] +17:00:20 [ 19] [ 3] [418] +17:00:20 [ 32] [ 6] [198901] +17:00:20 [ 35] [ 32] [6213544001970687=491212017068304] +17:00:20 [ 37] [ 12] [507917209154] +17:00:20 [ 38] [ 6] [731353] +17:00:20 [ 39] [ 2] [00] +17:00:20 [ 41] [ 8] [19529001] +17:00:20 [ 49] [ 3] [418] +17:00:20 [ 54] [ 40] [1001418C0000052234231002418C000005223423] +17:00:20 ============================================================================ +17:00:20 Calculate Source COMM Id = 5 +17:00:20 ============================================================================ +17:00:20 + + +waiting on router queue for slot.... +17:00:21 ============================================================================ +17:00:21 Slot Id : <446> +17:00:21 Transaction Type : REQUEST +17:00:21 Received From : +17:00:21 ============================================================================ +17:00:21 FNo. Len. Field Value +17:00:21 ============================================================================ +17:00:21 [ 1] [ 4] [0800] +17:00:21 [ 7] [ 10] [0320095928] +17:00:21 [ 11] [ 6] [157354] +17:00:21 [ 70] [ 3] [301] +17:00:21 ============================================================================ +17:00:21 + + +waiting on router queue for slot.... +17:00:21 Sending to : +17:00:21 ============================================================================ +17:00:21 ============================================================================ +17:00:21 Slot Id : <446> +17:00:21 Transaction Type : RESPONSE +17:00:21 Received From : +17:00:21 ============================================================================ +17:00:21 FNo. Len. Field Value +17:00:21 ============================================================================ +17:00:21 [ 1] [ 4] [0810] +17:00:21 [ 7] [ 10] [0320095928] +17:00:21 [ 11] [ 6] [157354] +17:00:21 [ 39] [ 2] [00] +17:00:21 [ 70] [ 3] [301] +17:00:21 ============================================================================ +17:00:21 Calculate Source COMM Id = 2 +17:00:21 ============================================================================ +17:00:21 + + +waiting on router queue for slot.... +17:00:25 ============================================================================ +17:00:25 Slot Id : <404> +17:00:25 Transaction Type : REQUEST +17:00:25 Received From : +17:00:25 ============================================================================ +17:00:25 FNo. Len. Field Value +17:00:25 ============================================================================ +17:00:25 [ 1] [ 4] [0800] +17:00:25 [ 7] [ 10] [0321001213] +17:00:25 [ 11] [ 6] [171213] +17:00:25 [ 37] [ 12] [57917171213] +17:00:25 [ 70] [ 3] [301] +17:00:25 ============================================================================ +17:00:25 + + +waiting on router queue for slot.... +17:00:25 Sending to : +17:00:25 ============================================================================ +17:00:25 ============================================================================ +17:00:25 Slot Id : <404> +17:00:25 Transaction Type : RESPONSE +17:00:25 Received From : +17:00:25 ============================================================================ +17:00:25 FNo. Len. Field Value +17:00:25 ============================================================================ +17:00:25 [ 1] [ 4] [0810] +17:00:25 [ 7] [ 10] [0321001213] +17:00:25 [ 11] [ 6] [171213] +17:00:25 [ 37] [ 12] [579171712130] +17:00:25 [ 39] [ 2] [00] +17:00:25 [ 70] [ 3] [810] +17:00:25 ============================================================================ +17:00:25 Calculate Source COMM Id = 6 +17:00:25 ============================================================================ +17:00:25 + + +waiting on router queue for slot.... +17:00:32 ============================================================================ +17:00:32 Slot Id : <456> +17:00:32 Transaction Type : REQUEST +17:00:32 Received From : +17:00:32 ============================================================================ +17:00:32 FNo. Len. Field Value +17:00:32 ============================================================================ +17:00:32 [ 1] [ 4] [0200] +17:00:32 [ 2] [ 16] [6213544002200175] +17:00:32 [ 3] [ 6] [010000] +17:00:32 [ 4] [ 12] [000048000000] +17:00:32 [ 7] [ 10] [0320165822] +17:00:32 [ 11] [ 6] [952714] +17:00:32 [ 12] [ 6] [165822] +17:00:32 [ 13] [ 4] [0320] +17:00:32 [ 15] [ 4] [0320] +17:00:32 [ 18] [ 4] [6011] +17:00:32 [ 19] [ 3] [418] +17:00:32 [ 22] [ 3] [021] +17:00:32 [ 25] [ 2] [01] +17:00:32 [ 28] [ 9] [D00002000] +17:00:32 [ 32] [ 6] [668899] +17:00:32 [ 35] [ 32] [6213544002200175=491212010017900] +17:00:32 [ 37] [ 12] [507902025646] +17:00:32 [ 41] [ 8] [03414002] +17:00:32 [ 42] [ 15] [APT ] +17:00:32 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:00:32 [ 49] [ 3] [418] +17:00:32 [ 52] [ 16] [73BF347CF99D21AD] +17:00:32 ============================================================================ +17:00:32 + + +waiting on router queue for slot.... +17:00:32 Sending to : +17:00:32 ============================================================================ +17:00:32 Sending to : +17:00:32 ============================================================================ +17:00:32 ============================================================================ +17:00:32 Slot Id : <434> +17:00:32 Transaction Type : REQUEST +17:00:32 Received From : +17:00:32 ============================================================================ +17:00:32 FNo. Len. Field Value +17:00:32 ============================================================================ +17:00:32 [ 1] [ 4] [0800] +17:00:32 [ 7] [ 10] [0320095939] +17:00:32 [ 11] [ 6] [157355] +17:00:32 [ 70] [ 3] [301] +17:00:32 ============================================================================ +17:00:32 + + +waiting on router queue for slot.... +17:00:32 Sending to : +17:00:32 ============================================================================ +17:00:32 ============================================================================ +17:00:32 Slot Id : <434> +17:00:32 Transaction Type : RESPONSE +17:00:32 Received From : +17:00:32 ============================================================================ +17:00:32 FNo. Len. Field Value +17:00:32 ============================================================================ +17:00:32 [ 1] [ 4] [0810] +17:00:32 [ 7] [ 10] [0320095939] +17:00:32 [ 11] [ 6] [157355] +17:00:32 [ 39] [ 2] [00] +17:00:32 [ 70] [ 3] [301] +17:00:32 ============================================================================ +17:00:32 Calculate Source COMM Id = 2 +17:00:32 ============================================================================ +17:00:32 + + +waiting on router queue for slot.... +17:00:32 ============================================================================ +17:00:32 Slot Id : <456> +17:00:32 Transaction Type : REQUEST +17:00:32 Received From : +17:00:32 ============================================================================ +17:00:32 FNo. Len. Field Value +17:00:32 ============================================================================ +17:00:32 [ 1] [ 4] [0200] +17:00:32 [ 2] [ 16] [6213544002200175] +17:00:32 [ 3] [ 6] [010000] +17:00:32 [ 4] [ 12] [000048000000] +17:00:32 [ 7] [ 10] [0320165822] +17:00:32 [ 11] [ 6] [952714] +17:00:32 [ 12] [ 6] [165822] +17:00:32 [ 13] [ 4] [0320] +17:00:32 [ 15] [ 4] [0320] +17:00:32 [ 18] [ 4] [6011] +17:00:32 [ 19] [ 3] [418] +17:00:32 [ 22] [ 3] [021] +17:00:32 [ 25] [ 2] [01] +17:00:32 [ 28] [ 9] [D00002000] +17:00:32 [ 32] [ 6] [668899] +17:00:32 [ 35] [ 32] [6213544002200175=491212010017900] +17:00:32 [ 37] [ 12] [507902025646] +17:00:32 [ 41] [ 8] [03414002] +17:00:32 [ 42] [ 15] [APT ] +17:00:32 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:00:32 [ 49] [ 3] [418] +17:00:32 [ 52] [ 16] [73BF347CF99D21AD] +17:00:32 ============================================================================ +17:00:32 + + +waiting on router queue for slot.... +17:00:32 Sending to : +17:00:32 ============================================================================ +17:00:32 ============================================================================ +17:00:32 Slot Id : <456> +17:00:32 Transaction Type : REQUEST +17:00:32 Received From : +17:00:32 ============================================================================ +17:00:32 FNo. Len. Field Value +17:00:32 ============================================================================ +17:00:32 [ 1] [ 4] [0200] +17:00:32 [ 2] [ 16] [6213544002200175] +17:00:32 [ 3] [ 6] [010000] +17:00:32 [ 4] [ 12] [000048000000] +17:00:32 [ 7] [ 10] [0320165822] +17:00:32 [ 11] [ 6] [952714] +17:00:32 [ 12] [ 6] [165822] +17:00:32 [ 13] [ 4] [0320] +17:00:32 [ 15] [ 4] [0320] +17:00:32 [ 18] [ 4] [6011] +17:00:32 [ 19] [ 3] [418] +17:00:32 [ 22] [ 3] [021] +17:00:32 [ 25] [ 2] [01] +17:00:32 [ 28] [ 9] [D00002000] +17:00:32 [ 32] [ 6] [668899] +17:00:32 [ 35] [ 32] [6213544002200175=491212010017900] +17:00:32 [ 37] [ 12] [507902025646] +17:00:32 [ 41] [ 8] [03414002] +17:00:32 [ 42] [ 15] [APT ] +17:00:32 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:00:32 [ 49] [ 3] [418] +17:00:32 [ 52] [ 16] [F2742A5FB7443351] +17:00:32 ============================================================================ +17:00:32 + + +waiting on router queue for slot.... +17:00:32 Sending to : <0> +17:00:32 ============================================================================ +17:00:33 ============================================================================ +17:00:33 Slot Id : <424> +17:00:33 Transaction Type : REQUEST +17:00:33 Received From : +17:00:33 ============================================================================ +17:00:33 FNo. Len. Field Value +17:00:33 ============================================================================ +17:00:33 [ 1] [ 4] [0800] +17:00:33 [ 2] [ 5] [02531] +17:00:33 [ 3] [ 6] [579178] +17:00:33 [ 7] [ 10] [0320100033] +17:00:33 [ 11] [ 6] [807399] +17:00:33 [ 15] [ 10] [0320100033] +17:00:33 [ 37] [ 11] [57917807399] +17:00:33 [ 70] [ 3] [001] +17:00:33 ============================================================================ +17:00:33 + + +waiting on router queue for slot.... +17:00:33 ============================================================================ +17:00:33 Slot Id : <424> +17:00:33 Transaction Type : RESPONSE +17:00:33 Received From : +17:00:33 ============================================================================ +17:00:33 FNo. Len. Field Value +17:00:33 ============================================================================ +17:00:33 [ 1] [ 4] [0810] +17:00:33 [ 7] [ 10] [0320100033] +17:00:33 [ 11] [ 6] [807399] +17:00:33 [ 15] [ 4] [0320] +17:00:33 [ 37] [ 12] [57917807399] +17:00:33 [ 39] [ 2] [00] +17:00:33 [ 70] [ 3] [001] +17:00:33 ============================================================================ +17:00:33 Sending to : +17:00:33 ============================================================================ +17:00:33 + + +waiting on router queue for slot.... +17:00:33 ============================================================================ +17:00:33 Slot Id : <456> +17:00:33 Transaction Type : RESPONSE +17:00:33 Received From : +17:00:33 ============================================================================ +17:00:33 FNo. Len. Field Value +17:00:33 ============================================================================ +17:00:33 [ 1] [ 4] [0210] +17:00:33 [ 2] [ 16] [6213544002200175] +17:00:33 [ 3] [ 6] [010000] +17:00:33 [ 4] [ 12] [000048000000] +17:00:33 [ 7] [ 10] [0320165822] +17:00:33 [ 11] [ 6] [952714] +17:00:33 [ 12] [ 6] [165822] +17:00:33 [ 13] [ 4] [0320] +17:00:33 [ 15] [ 4] [0320] +17:00:33 [ 18] [ 4] [6011] +17:00:33 [ 19] [ 3] [418] +17:00:33 [ 32] [ 6] [668899] +17:00:33 [ 35] [ 32] [6213544002200175=491212010017900] +17:00:33 [ 37] [ 12] [507902025646] +17:00:33 [ 38] [ 6] [898234] +17:00:33 [ 39] [ 2] [00] +17:00:33 [ 41] [ 8] [03414002] +17:00:33 [ 49] [ 3] [418] +17:00:33 [ 54] [ 40] [0001418C0000069216360002418C000006921636] +17:00:33 ============================================================================ +17:00:33 Sending to : +17:00:33 ============================================================================ +17:00:33 + + +waiting on router queue for slot.... +17:00:34 ============================================================================ +17:00:34 Slot Id : <456> +17:00:34 Transaction Type : RESPONSE +17:00:34 Received From : +17:00:34 ============================================================================ +17:00:34 FNo. Len. Field Value +17:00:34 ============================================================================ +17:00:34 [ 1] [ 4] [0210] +17:00:34 [ 2] [ 16] [6213544002200175] +17:00:34 [ 3] [ 6] [010000] +17:00:34 [ 4] [ 12] [000048000000] +17:00:34 [ 7] [ 10] [0320165822] +17:00:34 [ 11] [ 6] [952714] +17:00:34 [ 12] [ 6] [165822] +17:00:34 [ 13] [ 4] [0320] +17:00:34 [ 15] [ 4] [0320] +17:00:34 [ 18] [ 4] [6011] +17:00:34 [ 19] [ 3] [418] +17:00:34 [ 32] [ 6] [668899] +17:00:34 [ 35] [ 32] [6213544002200175=491212010017900] +17:00:34 [ 37] [ 12] [507902025646] +17:00:34 [ 38] [ 6] [898234] +17:00:34 [ 39] [ 2] [00] +17:00:34 [ 41] [ 8] [03414002] +17:00:34 [ 49] [ 3] [418] +17:00:34 [ 54] [ 40] [0001418C0000069216360002418C000006921636] +17:00:34 ============================================================================ +17:00:34 Calculate Source COMM Id = 4 +17:00:34 ============================================================================ +17:00:34 + + +waiting on router queue for slot.... +17:00:36 ============================================================================ +17:00:36 Slot Id : <445> +17:00:36 Transaction Type : REQUEST +17:00:36 Received From : +17:00:36 ============================================================================ +17:00:36 FNo. Len. Field Value +17:00:36 ============================================================================ +17:00:36 [ 1] [ 4] [0200] +17:00:36 [ 2] [ 16] [6213548000371862] +17:00:36 [ 3] [ 6] [011000] +17:00:36 [ 4] [ 12] [000005000000] +17:00:36 [ 7] [ 10] [0320170056] +17:00:36 [ 11] [ 6] [209159] +17:00:36 [ 12] [ 6] [045906] +17:00:36 [ 13] [ 4] [0320] +17:00:36 [ 14] [ 4] [1805] +17:00:36 [ 15] [ 4] [0320] +17:00:36 [ 18] [ 4] [6011] +17:00:36 [ 19] [ 3] [418] +17:00:36 [ 22] [ 3] [021] +17:00:36 [ 25] [ 2] [01] +17:00:36 [ 28] [ 9] [D00002000] +17:00:36 [ 32] [ 6] [198901] +17:00:36 [ 35] [ 32] [6213548000371862=180512017186023] +17:00:36 [ 37] [ 12] [507917209159] +17:00:36 [ 41] [ 8] [01529031] +17:00:36 [ 42] [ 15] [000000041529031] +17:00:36 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +17:00:36 [ 49] [ 3] [418] +17:00:36 [ 52] [ 16] [0E8CF4820ED12F8F] +17:00:36 ============================================================================ +17:00:36 + + +waiting on router queue for slot.... +17:00:36 Sending to : +17:00:36 ============================================================================ +17:00:36 Sending to : +17:00:36 ============================================================================ +17:00:36 ============================================================================ +17:00:36 Slot Id : <445> +17:00:36 Transaction Type : REQUEST +17:00:36 Received From : +17:00:36 ============================================================================ +17:00:36 FNo. Len. Field Value +17:00:36 ============================================================================ +17:00:36 [ 1] [ 4] [0200] +17:00:36 [ 2] [ 16] [6213548000371862] +17:00:36 [ 3] [ 6] [011000] +17:00:36 [ 4] [ 12] [000005000000] +17:00:36 [ 7] [ 10] [0320170056] +17:00:36 [ 11] [ 6] [209159] +17:00:36 [ 12] [ 6] [045906] +17:00:36 [ 13] [ 4] [0320] +17:00:36 [ 14] [ 4] [1805] +17:00:36 [ 15] [ 4] [0320] +17:00:36 [ 18] [ 4] [6011] +17:00:36 [ 19] [ 3] [418] +17:00:36 [ 22] [ 3] [021] +17:00:36 [ 25] [ 2] [01] +17:00:36 [ 28] [ 9] [D00002000] +17:00:36 [ 32] [ 6] [198901] +17:00:36 [ 35] [ 32] [6213548000371862=180512017186023] +17:00:36 [ 37] [ 12] [507917209159] +17:00:36 [ 41] [ 8] [01529031] +17:00:36 [ 42] [ 15] [000000041529031] +17:00:36 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +17:00:36 [ 49] [ 3] [418] +17:00:36 [ 52] [ 16] [0E8CF4820ED12F8F] +17:00:36 ============================================================================ +17:00:36 + + +waiting on router queue for slot.... +17:00:36 Sending to : +17:00:36 ============================================================================ +17:00:36 ============================================================================ +17:00:36 Slot Id : <445> +17:00:36 Transaction Type : REQUEST +17:00:36 Received From : +17:00:36 ============================================================================ +17:00:36 FNo. Len. Field Value +17:00:36 ============================================================================ +17:00:36 [ 1] [ 4] [0200] +17:00:36 [ 2] [ 16] [6213548000371862] +17:00:36 [ 3] [ 6] [011000] +17:00:36 [ 4] [ 12] [000005000000] +17:00:36 [ 7] [ 10] [0320170056] +17:00:36 [ 11] [ 6] [209159] +17:00:36 [ 12] [ 6] [045906] +17:00:36 [ 13] [ 4] [0320] +17:00:36 [ 14] [ 4] [1805] +17:00:36 [ 15] [ 4] [0320] +17:00:36 [ 18] [ 4] [6011] +17:00:36 [ 19] [ 3] [418] +17:00:36 [ 22] [ 3] [021] +17:00:36 [ 25] [ 2] [01] +17:00:36 [ 28] [ 9] [D00002000] +17:00:36 [ 32] [ 6] [198901] +17:00:36 [ 35] [ 32] [6213548000371862=180512017186023] +17:00:36 [ 37] [ 12] [507917209159] +17:00:36 [ 41] [ 8] [01529031] +17:00:36 [ 42] [ 15] [000000041529031] +17:00:36 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +17:00:36 [ 49] [ 3] [418] +17:00:36 [ 52] [ 16] [2F4B836F6829AE01] +17:00:36 ============================================================================ +17:00:36 + + +waiting on router queue for slot.... +17:00:36 Sending to : <0> +17:00:36 ============================================================================ +17:00:37 ============================================================================ +17:00:37 Slot Id : <445> +17:00:37 Transaction Type : RESPONSE +17:00:37 Received From : +17:00:37 ============================================================================ +17:00:37 FNo. Len. Field Value +17:00:37 ============================================================================ +17:00:37 [ 1] [ 4] [0210] +17:00:37 [ 2] [ 16] [6213548000371862] +17:00:37 [ 3] [ 6] [011000] +17:00:37 [ 4] [ 12] [000005000000] +17:00:37 [ 7] [ 10] [0320170056] +17:00:37 [ 11] [ 6] [209159] +17:00:37 [ 12] [ 6] [045906] +17:00:37 [ 13] [ 4] [0320] +17:00:37 [ 15] [ 4] [0320] +17:00:37 [ 18] [ 4] [6011] +17:00:37 [ 19] [ 3] [418] +17:00:37 [ 32] [ 6] [198901] +17:00:37 [ 35] [ 32] [6213548000371862=180512017186023] +17:00:37 [ 37] [ 12] [507917209159] +17:00:37 [ 38] [ 6] [758598] +17:00:37 [ 39] [ 2] [00] +17:00:37 [ 41] [ 8] [01529031] +17:00:37 [ 49] [ 3] [418] +17:00:37 [ 54] [ 40] [1001418C0000061015641002418C000006101564] +17:00:37 ============================================================================ +17:00:37 Sending to : +17:00:37 ============================================================================ +17:00:37 + + +waiting on router queue for slot.... +17:00:38 ============================================================================ +17:00:38 Slot Id : <438> +17:00:38 Transaction Type : REQUEST +17:00:38 Received From : +17:00:38 ============================================================================ +17:00:38 FNo. Len. Field Value +17:00:38 ============================================================================ +17:00:38 [ 1] [ 4] [0200] +17:00:38 [ 2] [ 16] [6688990108338201] +17:00:38 [ 3] [ 6] [011000] +17:00:38 [ 4] [ 12] [000002000000] +17:00:38 [ 7] [ 10] [0320095944] +17:00:38 [ 11] [ 6] [270685] +17:00:38 [ 12] [ 6] [165944] +17:00:38 [ 13] [ 4] [0320] +17:00:38 [ 14] [ 4] [4406] +17:00:38 [ 15] [ 4] [0320] +17:00:38 [ 18] [ 4] [6011] +17:00:38 [ 19] [ 3] [418] +17:00:38 [ 22] [ 3] [021] +17:00:38 [ 25] [ 2] [01] +17:00:38 [ 28] [ 9] [D00002000] +17:00:38 [ 32] [ 6] [180893] +17:00:38 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:00:38 [ 37] [ 12] [507909270685] +17:00:38 [ 41] [ 8] [0262PSLB] +17:00:38 [ 42] [ 15] [999999 ] +17:00:38 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:00:38 [ 49] [ 3] [418] +17:00:38 [ 52] [ 16] [32DDA3AFF10FBC70] +17:00:38 ============================================================================ +17:00:38 + + +waiting on router queue for slot.... +17:00:38 Sending to : +17:00:38 ============================================================================ +17:00:38 Sending to : +17:00:38 ============================================================================ +17:00:38 ============================================================================ +17:00:38 Slot Id : <445> +17:00:38 Transaction Type : RESPONSE +17:00:38 Received From : +17:00:38 ============================================================================ +17:00:38 FNo. Len. Field Value +17:00:38 ============================================================================ +17:00:38 [ 1] [ 4] [0210] +17:00:38 [ 2] [ 16] [6213548000371862] +17:00:38 [ 3] [ 6] [011000] +17:00:38 [ 4] [ 12] [000005000000] +17:00:38 [ 7] [ 10] [0320170056] +17:00:38 [ 11] [ 6] [209159] +17:00:38 [ 12] [ 6] [045906] +17:00:38 [ 13] [ 4] [0320] +17:00:38 [ 15] [ 4] [0320] +17:00:38 [ 18] [ 4] [6011] +17:00:38 [ 19] [ 3] [418] +17:00:38 [ 32] [ 6] [198901] +17:00:38 [ 35] [ 32] [6213548000371862=180512017186023] +17:00:38 [ 37] [ 12] [507917209159] +17:00:38 [ 38] [ 6] [758598] +17:00:38 [ 39] [ 2] [00] +17:00:38 [ 41] [ 8] [01529031] +17:00:38 [ 49] [ 3] [418] +17:00:38 [ 54] [ 40] [1001418C0000061015641002418C000006101564] +17:00:38 ============================================================================ +17:00:38 Calculate Source COMM Id = 5 +17:00:38 ============================================================================ +17:00:38 + + +waiting on router queue for slot.... +17:00:38 ============================================================================ +17:00:38 Slot Id : <442> +17:00:38 Transaction Type : REQUEST +17:00:38 Received From : +17:00:38 ============================================================================ +17:00:38 FNo. Len. Field Value +17:00:38 ============================================================================ +17:00:38 [ 1] [ 4] [0200] +17:00:38 [ 2] [ 16] [6213541000201197] +17:00:38 [ 3] [ 6] [011000] +17:00:38 [ 4] [ 12] [000030000000] +17:00:38 [ 7] [ 10] [0320170059] +17:00:38 [ 11] [ 6] [209160] +17:00:38 [ 12] [ 6] [165214] +17:00:38 [ 13] [ 4] [0320] +17:00:38 [ 14] [ 4] [4912] +17:00:38 [ 15] [ 4] [0320] +17:00:38 [ 18] [ 4] [6011] +17:00:38 [ 19] [ 3] [418] +17:00:38 [ 22] [ 3] [021] +17:00:38 [ 25] [ 2] [01] +17:00:38 [ 28] [ 9] [D00002000] +17:00:38 [ 32] [ 6] [198901] +17:00:38 [ 35] [ 32] [6213541000201197=491212010119897] +17:00:38 [ 37] [ 12] [507917209160] +17:00:38 [ 41] [ 8] [01529026] +17:00:38 [ 42] [ 15] [000000041529026] +17:00:38 [ 43] [ 40] [JDB ATM LTC VN ] +17:00:38 [ 49] [ 3] [418] +17:00:38 [ 52] [ 16] [BC89E16A5B3758A9] +17:00:38 ============================================================================ +17:00:38 + + +waiting on router queue for slot.... +17:00:38 Sending to : +17:00:38 ============================================================================ +17:00:38 Sending to : +17:00:38 ============================================================================ +17:00:38 ============================================================================ +17:00:38 Slot Id : <438> +17:00:38 Transaction Type : REQUEST +17:00:38 Received From : +17:00:38 ============================================================================ +17:00:38 FNo. Len. Field Value +17:00:38 ============================================================================ +17:00:38 [ 1] [ 4] [0200] +17:00:38 [ 2] [ 16] [6688990108338201] +17:00:38 [ 3] [ 6] [011000] +17:00:38 [ 4] [ 12] [000002000000] +17:00:38 [ 7] [ 10] [0320095944] +17:00:38 [ 11] [ 6] [270685] +17:00:38 [ 12] [ 6] [165944] +17:00:38 [ 13] [ 4] [0320] +17:00:38 [ 14] [ 4] [4406] +17:00:38 [ 15] [ 4] [0320] +17:00:38 [ 18] [ 4] [6011] +17:00:38 [ 19] [ 3] [418] +17:00:38 [ 22] [ 3] [021] +17:00:38 [ 25] [ 2] [01] +17:00:38 [ 28] [ 9] [D00002000] +17:00:38 [ 32] [ 6] [180893] +17:00:38 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:00:38 [ 37] [ 12] [507909270685] +17:00:38 [ 41] [ 8] [0262PSLB] +17:00:38 [ 42] [ 15] [999999 ] +17:00:38 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:00:38 [ 49] [ 3] [418] +17:00:38 [ 52] [ 16] [32DDA3AFF10FBC70] +17:00:38 ============================================================================ +17:00:38 + + +waiting on router queue for slot.... +17:00:38 Sending to : +17:00:38 ============================================================================ +17:00:38 ============================================================================ +17:00:38 Slot Id : <438> +17:00:38 Transaction Type : REQUEST +17:00:38 Received From : +17:00:38 ============================================================================ +17:00:38 FNo. Len. Field Value +17:00:38 ============================================================================ +17:00:38 [ 1] [ 4] [0200] +17:00:38 [ 2] [ 16] [6688990108338201] +17:00:38 [ 3] [ 6] [011000] +17:00:38 [ 4] [ 12] [000002000000] +17:00:38 [ 7] [ 10] [0320095944] +17:00:38 [ 11] [ 6] [270685] +17:00:38 [ 12] [ 6] [165944] +17:00:38 [ 13] [ 4] [0320] +17:00:38 [ 14] [ 4] [4406] +17:00:38 [ 15] [ 4] [0320] +17:00:38 [ 18] [ 4] [6011] +17:00:38 [ 19] [ 3] [418] +17:00:38 [ 22] [ 3] [021] +17:00:38 [ 25] [ 2] [01] +17:00:38 [ 28] [ 9] [D00002000] +17:00:38 [ 32] [ 6] [180893] +17:00:38 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:00:38 [ 37] [ 12] [507909270685] +17:00:38 [ 41] [ 8] [0262PSLB] +17:00:38 [ 42] [ 15] [999999 ] +17:00:38 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:00:38 [ 49] [ 3] [418] +17:00:38 [ 52] [ 16] [404F28AA26527D74] +17:00:38 ============================================================================ +17:00:38 + + +waiting on router queue for slot.... +17:00:38 Sending to : <0> +17:00:38 ============================================================================ +17:00:39 ============================================================================ +17:00:39 Slot Id : <438> +17:00:39 Transaction Type : RESPONSE +17:00:39 Received From : +17:00:39 ============================================================================ +17:00:39 FNo. Len. Field Value +17:00:39 ============================================================================ +17:00:39 [ 1] [ 4] [0210] +17:00:39 [ 2] [ 16] [6688990108338201] +17:00:39 [ 3] [ 6] [011000] +17:00:39 [ 4] [ 12] [000002000000] +17:00:39 [ 7] [ 10] [0320095944] +17:00:39 [ 11] [ 6] [270685] +17:00:39 [ 12] [ 6] [165944] +17:00:39 [ 13] [ 4] [0320] +17:00:39 [ 15] [ 4] [0320] +17:00:39 [ 18] [ 4] [6011] +17:00:39 [ 19] [ 3] [418] +17:00:39 [ 22] [ 3] [021] +17:00:39 [ 32] [ 6] [180893] +17:00:39 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:00:39 [ 37] [ 12] [507909270685] +17:00:39 [ 39] [ 2] [14] +17:00:39 [ 41] [ 8] [0262PSLB] +17:00:39 [ 49] [ 3] [418] +17:00:39 ============================================================================ +17:00:39 Sending to : +17:00:39 ============================================================================ +17:00:39 + + +waiting on router queue for slot.... +17:00:39 ============================================================================ +17:00:39 Slot Id : <442> +17:00:39 Transaction Type : REQUEST +17:00:39 Received From : +17:00:39 ============================================================================ +17:00:39 FNo. Len. Field Value +17:00:39 ============================================================================ +17:00:39 [ 1] [ 4] [0200] +17:00:39 [ 2] [ 16] [6213541000201197] +17:00:39 [ 3] [ 6] [011000] +17:00:39 [ 4] [ 12] [000030000000] +17:00:39 [ 7] [ 10] [0320170059] +17:00:39 [ 11] [ 6] [209160] +17:00:39 [ 12] [ 6] [165214] +17:00:39 [ 13] [ 4] [0320] +17:00:39 [ 14] [ 4] [4912] +17:00:39 [ 15] [ 4] [0320] +17:00:39 [ 18] [ 4] [6011] +17:00:39 [ 19] [ 3] [418] +17:00:39 [ 22] [ 3] [021] +17:00:39 [ 25] [ 2] [01] +17:00:39 [ 28] [ 9] [D00002000] +17:00:39 [ 32] [ 6] [198901] +17:00:39 [ 35] [ 32] [6213541000201197=491212010119897] +17:00:39 [ 37] [ 12] [507917209160] +17:00:39 [ 41] [ 8] [01529026] +17:00:39 [ 42] [ 15] [000000041529026] +17:00:39 [ 43] [ 40] [JDB ATM LTC VN ] +17:00:39 [ 49] [ 3] [418] +17:00:39 [ 52] [ 16] [BC89E16A5B3758A9] +17:00:39 ============================================================================ +17:00:39 + + +waiting on router queue for slot.... +17:00:39 Sending to : +17:00:39 ============================================================================ +17:00:39 ============================================================================ +17:00:39 Slot Id : <442> +17:00:39 Transaction Type : REQUEST +17:00:39 Received From : +17:00:39 ============================================================================ +17:00:39 FNo. Len. Field Value +17:00:39 ============================================================================ +17:00:39 [ 1] [ 4] [0200] +17:00:39 [ 2] [ 16] [6213541000201197] +17:00:39 [ 3] [ 6] [011000] +17:00:39 [ 4] [ 12] [000030000000] +17:00:39 [ 7] [ 10] [0320170059] +17:00:39 [ 11] [ 6] [209160] +17:00:39 [ 12] [ 6] [165214] +17:00:39 [ 13] [ 4] [0320] +17:00:39 [ 14] [ 4] [4912] +17:00:39 [ 15] [ 4] [0320] +17:00:39 [ 18] [ 4] [6011] +17:00:39 [ 19] [ 3] [418] +17:00:39 [ 22] [ 3] [021] +17:00:39 [ 25] [ 2] [01] +17:00:39 [ 28] [ 9] [D00002000] +17:00:39 [ 32] [ 6] [198901] +17:00:39 [ 35] [ 32] [6213541000201197=491212010119897] +17:00:39 [ 37] [ 12] [507917209160] +17:00:39 [ 41] [ 8] [01529026] +17:00:39 [ 42] [ 15] [000000041529026] +17:00:39 [ 43] [ 40] [JDB ATM LTC VN ] +17:00:39 [ 49] [ 3] [418] +17:00:39 [ 52] [ 16] [1A302631DD8F9C3E] +17:00:39 ============================================================================ +17:00:39 + + +waiting on router queue for slot.... +17:00:39 Sending to : <0> +17:00:39 ============================================================================ +17:00:39 ============================================================================ +17:00:39 Slot Id : <435> +17:00:39 Transaction Type : REQUEST +17:00:39 Received From : +17:00:39 ============================================================================ +17:00:39 FNo. Len. Field Value +17:00:39 ============================================================================ +17:00:39 [ 1] [ 4] [0200] +17:00:39 [ 2] [ 16] [6213544002112842] +17:00:39 [ 3] [ 6] [010000] +17:00:39 [ 4] [ 12] [000020000000] +17:00:39 [ 7] [ 10] [0320170826] +17:00:39 [ 11] [ 6] [240492] +17:00:39 [ 12] [ 6] [170826] +17:00:39 [ 13] [ 4] [0320] +17:00:39 [ 14] [ 4] [4912] +17:00:39 [ 15] [ 4] [0320] +17:00:39 [ 18] [ 4] [6011] +17:00:39 [ 22] [ 3] [900] +17:00:39 [ 25] [ 2] [02] +17:00:39 [ 28] [ 9] [D00002000] +17:00:39 [ 32] [ 6] [220699] +17:00:39 [ 35] [ 32] [6213544002112842=491212011284917] +17:00:39 [ 37] [ 12] [507900360235] +17:00:39 [ 41] [ 8] [05000300] +17:00:39 [ 42] [ 15] [APTRA ] +17:00:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:00:39 [ 49] [ 3] [418] +17:00:39 [ 52] [ 16] [9D93C09D12C2F12E] +17:00:39 ============================================================================ +17:00:39 + + +waiting on router queue for slot.... +17:00:39 Sending to : +17:00:39 ============================================================================ +17:00:39 Sending to : +17:00:39 ============================================================================ +17:00:39 ============================================================================ +17:00:39 Slot Id : <442> +17:00:39 Transaction Type : RESPONSE +17:00:39 Received From : +17:00:39 ============================================================================ +17:00:39 FNo. Len. Field Value +17:00:39 ============================================================================ +17:00:39 [ 1] [ 4] [0210] +17:00:39 [ 2] [ 16] [6213541000201197] +17:00:39 [ 3] [ 6] [011000] +17:00:39 [ 4] [ 12] [000030000000] +17:00:39 [ 7] [ 10] [0320170059] +17:00:39 [ 11] [ 6] [209160] +17:00:39 [ 12] [ 6] [165214] +17:00:39 [ 13] [ 4] [0320] +17:00:39 [ 15] [ 4] [0320] +17:00:39 [ 18] [ 4] [6011] +17:00:39 [ 19] [ 3] [418] +17:00:39 [ 32] [ 6] [198901] +17:00:39 [ 35] [ 32] [6213541000201197=491212010119897] +17:00:39 [ 37] [ 12] [507917209160] +17:00:39 [ 38] [ 6] [387151] +17:00:39 [ 39] [ 2] [00] +17:00:39 [ 41] [ 8] [01529026] +17:00:39 [ 49] [ 3] [418] +17:00:39 [ 54] [ 40] [1001418C0010023053461002418C001002305346] +17:00:39 ============================================================================ +17:00:39 Sending to : +17:00:39 ============================================================================ +17:00:39 + + +waiting on router queue for slot.... +17:00:40 ============================================================================ +17:00:40 Slot Id : <435> +17:00:40 Transaction Type : REQUEST +17:00:40 Received From : +17:00:40 ============================================================================ +17:00:40 FNo. Len. Field Value +17:00:40 ============================================================================ +17:00:40 [ 1] [ 4] [0200] +17:00:40 [ 2] [ 16] [6213544002112842] +17:00:40 [ 3] [ 6] [010000] +17:00:40 [ 4] [ 12] [000020000000] +17:00:40 [ 7] [ 10] [0320170826] +17:00:40 [ 11] [ 6] [240492] +17:00:40 [ 12] [ 6] [170826] +17:00:40 [ 13] [ 4] [0320] +17:00:40 [ 14] [ 4] [4912] +17:00:40 [ 15] [ 4] [0320] +17:00:40 [ 18] [ 4] [6011] +17:00:40 [ 22] [ 3] [900] +17:00:40 [ 25] [ 2] [02] +17:00:40 [ 28] [ 9] [D00002000] +17:00:40 [ 32] [ 6] [220699] +17:00:40 [ 35] [ 32] [6213544002112842=491212011284917] +17:00:40 [ 37] [ 12] [507900360235] +17:00:40 [ 41] [ 8] [05000300] +17:00:40 [ 42] [ 15] [APTRA ] +17:00:40 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:00:40 [ 49] [ 3] [418] +17:00:40 [ 52] [ 16] [9D93C09D12C2F12E] +17:00:40 ============================================================================ +17:00:40 + + +waiting on router queue for slot.... +17:00:40 Sending to : +17:00:40 ============================================================================ +17:00:40 ============================================================================ +17:00:40 Slot Id : <435> +17:00:40 Transaction Type : REQUEST +17:00:40 Received From : +17:00:40 ============================================================================ +17:00:40 FNo. Len. Field Value +17:00:40 ============================================================================ +17:00:40 [ 1] [ 4] [0200] +17:00:40 [ 2] [ 16] [6213544002112842] +17:00:40 [ 3] [ 6] [010000] +17:00:40 [ 4] [ 12] [000020000000] +17:00:40 [ 7] [ 10] [0320170826] +17:00:40 [ 11] [ 6] [240492] +17:00:40 [ 12] [ 6] [170826] +17:00:40 [ 13] [ 4] [0320] +17:00:40 [ 14] [ 4] [4912] +17:00:40 [ 15] [ 4] [0320] +17:00:40 [ 18] [ 4] [6011] +17:00:40 [ 22] [ 3] [900] +17:00:40 [ 25] [ 2] [02] +17:00:40 [ 28] [ 9] [D00002000] +17:00:40 [ 32] [ 6] [220699] +17:00:40 [ 35] [ 32] [6213544002112842=491212011284917] +17:00:40 [ 37] [ 12] [507900360235] +17:00:40 [ 41] [ 8] [05000300] +17:00:40 [ 42] [ 15] [APTRA ] +17:00:40 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:00:40 [ 49] [ 3] [418] +17:00:40 [ 52] [ 16] [6545FAE92A42C37C] +17:00:40 ============================================================================ +17:00:40 + + +waiting on router queue for slot.... +17:00:40 Sending to : <0> +17:00:40 ============================================================================ +17:00:40 ============================================================================ +17:00:40 Slot Id : <438> +17:00:40 Transaction Type : RESPONSE +17:00:40 Received From : +17:00:40 ============================================================================ +17:00:40 FNo. Len. Field Value +17:00:40 ============================================================================ +17:00:40 [ 1] [ 4] [0210] +17:00:40 [ 2] [ 16] [6688990108338201] +17:00:40 [ 3] [ 6] [011000] +17:00:40 [ 4] [ 12] [000002000000] +17:00:40 [ 7] [ 10] [0320095944] +17:00:40 [ 11] [ 6] [270685] +17:00:40 [ 12] [ 6] [165944] +17:00:40 [ 13] [ 4] [0320] +17:00:40 [ 15] [ 4] [0320] +17:00:40 [ 18] [ 4] [6011] +17:00:40 [ 19] [ 3] [418] +17:00:40 [ 22] [ 3] [021] +17:00:40 [ 32] [ 6] [180893] +17:00:40 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:00:40 [ 37] [ 12] [507909270685] +17:00:40 [ 39] [ 2] [14] +17:00:40 [ 41] [ 8] [0262PSLB] +17:00:40 [ 49] [ 3] [418] +17:00:40 ============================================================================ +17:00:40 Calculate Source COMM Id = 2 +17:00:40 ============================================================================ +17:00:40 + + +waiting on router queue for slot.... +17:00:40 ============================================================================ +17:00:40 Slot Id : <435> +17:00:40 Transaction Type : RESPONSE +17:00:40 Received From : +17:00:40 ============================================================================ +17:00:40 FNo. Len. Field Value +17:00:40 ============================================================================ +17:00:40 [ 1] [ 4] [0210] +17:00:40 [ 2] [ 16] [6213544002112842] +17:00:40 [ 3] [ 6] [010000] +17:00:40 [ 4] [ 12] [000020000000] +17:00:40 [ 7] [ 10] [0320170826] +17:00:40 [ 11] [ 6] [240492] +17:00:40 [ 12] [ 6] [170826] +17:00:40 [ 13] [ 4] [0320] +17:00:40 [ 15] [ 4] [0320] +17:00:40 [ 18] [ 4] [6011] +17:00:40 [ 32] [ 6] [220699] +17:00:40 [ 35] [ 32] [6213544002112842=491212011284917] +17:00:40 [ 37] [ 12] [507900360235] +17:00:40 [ 38] [ 6] [126639] +17:00:40 [ 39] [ 2] [00] +17:00:40 [ 41] [ 8] [05000300] +17:00:40 [ 49] [ 3] [418] +17:00:40 [ 54] [ 40] [0001418C0000355290660002418C000035529066] +17:00:40 ============================================================================ +17:00:40 Sending to : +17:00:40 ============================================================================ +17:00:40 + + +waiting on router queue for slot.... +17:00:41 ============================================================================ +17:00:41 Slot Id : <442> +17:00:41 Transaction Type : RESPONSE +17:00:41 Received From : +17:00:41 ============================================================================ +17:00:41 FNo. Len. Field Value +17:00:41 ============================================================================ +17:00:41 [ 1] [ 4] [0210] +17:00:41 [ 2] [ 16] [6213541000201197] +17:00:41 [ 3] [ 6] [011000] +17:00:41 [ 4] [ 12] [000030000000] +17:00:41 [ 7] [ 10] [0320170059] +17:00:41 [ 11] [ 6] [209160] +17:00:41 [ 12] [ 6] [165214] +17:00:41 [ 13] [ 4] [0320] +17:00:41 [ 15] [ 4] [0320] +17:00:41 [ 18] [ 4] [6011] +17:00:41 [ 19] [ 3] [418] +17:00:41 [ 32] [ 6] [198901] +17:00:41 [ 35] [ 32] [6213541000201197=491212010119897] +17:00:41 [ 37] [ 12] [507917209160] +17:00:41 [ 38] [ 6] [387151] +17:00:41 [ 39] [ 2] [00] +17:00:41 [ 41] [ 8] [01529026] +17:00:41 [ 49] [ 3] [418] +17:00:41 [ 54] [ 40] [1001418C0010023053461002418C001002305346] +17:00:41 ============================================================================ +17:00:41 Calculate Source COMM Id = 5 +17:00:41 ============================================================================ +17:00:41 + + +waiting on router queue for slot.... +17:00:43 ============================================================================ +17:00:43 Slot Id : <435> +17:00:43 Transaction Type : RESPONSE +17:00:43 Received From : +17:00:43 ============================================================================ +17:00:43 FNo. Len. Field Value +17:00:43 ============================================================================ +17:00:43 [ 1] [ 4] [0210] +17:00:43 [ 2] [ 16] [6213544002112842] +17:00:43 [ 3] [ 6] [010000] +17:00:43 [ 4] [ 12] [000020000000] +17:00:43 [ 7] [ 10] [0320170826] +17:00:43 [ 11] [ 6] [240492] +17:00:43 [ 12] [ 6] [170826] +17:00:43 [ 13] [ 4] [0320] +17:00:43 [ 15] [ 4] [0320] +17:00:43 [ 18] [ 4] [6011] +17:00:43 [ 32] [ 6] [220699] +17:00:43 [ 35] [ 32] [6213544002112842=491212011284917] +17:00:43 [ 37] [ 12] [507900360235] +17:00:43 [ 38] [ 6] [126639] +17:00:43 [ 39] [ 2] [00] +17:00:43 [ 41] [ 8] [05000300] +17:00:43 [ 49] [ 3] [418] +17:00:43 [ 54] [ 40] [0001418C0000355290660002418C000035529066] +17:00:43 ============================================================================ +17:00:43 Calculate Source COMM Id = 1 +17:00:43 ============================================================================ +17:00:43 + + +waiting on router queue for slot.... +17:00:53 ============================================================================ +17:00:53 Slot Id : <427> +17:00:53 Transaction Type : REQUEST +17:00:53 Received From : +17:00:53 ============================================================================ +17:00:53 FNo. Len. Field Value +17:00:53 ============================================================================ +17:00:53 [ 1] [ 4] [0800] +17:00:53 [ 7] [ 10] [0320095959] +17:00:53 [ 11] [ 6] [157356] +17:00:53 [ 70] [ 3] [301] +17:00:53 ============================================================================ +17:00:53 + + +waiting on router queue for slot.... +17:00:53 Sending to : +17:00:53 ============================================================================ +17:00:53 ============================================================================ +17:00:53 Slot Id : <427> +17:00:53 Transaction Type : RESPONSE +17:00:53 Received From : +17:00:53 ============================================================================ +17:00:53 FNo. Len. Field Value +17:00:53 ============================================================================ +17:00:53 [ 1] [ 4] [0810] +17:00:53 [ 7] [ 10] [0320095959] +17:00:53 [ 11] [ 6] [157356] +17:00:53 [ 39] [ 2] [00] +17:00:53 [ 70] [ 3] [301] +17:00:53 ============================================================================ +17:00:53 Calculate Source COMM Id = 2 +17:00:53 ============================================================================ +17:00:53 + + +waiting on router queue for slot.... +17:01:03 ============================================================================ +17:01:03 Slot Id : <462> +17:01:03 Transaction Type : REQUEST +17:01:03 Received From : +17:01:03 ============================================================================ +17:01:03 FNo. Len. Field Value +17:01:03 ============================================================================ +17:01:03 [ 1] [ 4] [0200] +17:01:03 [ 2] [ 16] [6688990602643908] +17:01:03 [ 3] [ 6] [010000] +17:01:03 [ 4] [ 12] [000030000000] +17:01:03 [ 7] [ 10] [0320170058] +17:01:03 [ 11] [ 6] [808533] +17:01:03 [ 12] [ 6] [170058] +17:01:03 [ 13] [ 4] [0320] +17:01:03 [ 15] [ 4] [0320] +17:01:03 [ 18] [ 4] [6011] +17:01:03 [ 22] [ 3] [900] +17:01:03 [ 25] [ 2] [02] +17:01:03 [ 28] [ 9] [D00002000] +17:01:03 [ 32] [ 6] [621354] +17:01:03 [ 35] [ 37] [6688990602643908=43100061390807100000] +17:01:03 [ 37] [ 12] [507902606320] +17:01:03 [ 41] [ 8] [05004300] +17:01:03 [ 42] [ 15] [NATIVE ] +17:01:03 [ 43] [ 40] [Ka deng office LuangprabangLAO] +17:01:03 [ 49] [ 3] [418] +17:01:03 [ 52] [ 16] [233994CF704D9EF8] +17:01:03 ============================================================================ +17:01:03 + + +waiting on router queue for slot.... +17:01:03 Sending to : +17:01:03 ============================================================================ +17:01:03 Sending to : +17:01:03 ============================================================================ +17:01:04 ============================================================================ +17:01:04 Slot Id : <462> +17:01:04 Transaction Type : REQUEST +17:01:04 Received From : +17:01:04 ============================================================================ +17:01:04 FNo. Len. Field Value +17:01:04 ============================================================================ +17:01:04 [ 1] [ 4] [0200] +17:01:04 [ 2] [ 16] [6688990602643908] +17:01:04 [ 3] [ 6] [010000] +17:01:04 [ 4] [ 12] [000030000000] +17:01:04 [ 7] [ 10] [0320170058] +17:01:04 [ 11] [ 6] [808533] +17:01:04 [ 12] [ 6] [170058] +17:01:04 [ 13] [ 4] [0320] +17:01:04 [ 15] [ 4] [0320] +17:01:04 [ 18] [ 4] [6011] +17:01:04 [ 22] [ 3] [900] +17:01:04 [ 25] [ 2] [02] +17:01:04 [ 28] [ 9] [D00002000] +17:01:04 [ 32] [ 6] [621354] +17:01:04 [ 35] [ 37] [6688990602643908=43100061390807100000] +17:01:04 [ 37] [ 12] [507902606320] +17:01:04 [ 41] [ 8] [05004300] +17:01:04 [ 42] [ 15] [NATIVE ] +17:01:04 [ 43] [ 40] [Ka deng office LuangprabangLAO] +17:01:04 [ 49] [ 3] [418] +17:01:04 [ 52] [ 16] [233994CF704D9EF8] +17:01:04 ============================================================================ +17:01:04 + + +waiting on router queue for slot.... +17:01:04 Sending to : +17:01:04 ============================================================================ +17:01:04 ============================================================================ +17:01:04 Slot Id : <462> +17:01:04 Transaction Type : REQUEST +17:01:04 Received From : +17:01:04 ============================================================================ +17:01:04 FNo. Len. Field Value +17:01:04 ============================================================================ +17:01:04 [ 1] [ 4] [0200] +17:01:04 [ 2] [ 16] [6688990602643908] +17:01:04 [ 3] [ 6] [010000] +17:01:04 [ 4] [ 12] [000030000000] +17:01:04 [ 7] [ 10] [0320170058] +17:01:04 [ 11] [ 6] [808533] +17:01:04 [ 12] [ 6] [170058] +17:01:04 [ 13] [ 4] [0320] +17:01:04 [ 15] [ 4] [0320] +17:01:04 [ 18] [ 4] [6011] +17:01:04 [ 22] [ 3] [900] +17:01:04 [ 25] [ 2] [02] +17:01:04 [ 28] [ 9] [D00002000] +17:01:04 [ 32] [ 6] [621354] +17:01:04 [ 35] [ 37] [6688990602643908=43100061390807100000] +17:01:04 [ 37] [ 12] [507902606320] +17:01:04 [ 41] [ 8] [05004300] +17:01:04 [ 42] [ 15] [NATIVE ] +17:01:04 [ 43] [ 40] [Ka deng office LuangprabangLAO] +17:01:04 [ 49] [ 3] [418] +17:01:04 [ 52] [ 16] [4B60937587297F50] +17:01:04 ============================================================================ +17:01:04 + + +waiting on router queue for slot.... +17:01:04 Sending to : <4> +17:01:04 ============================================================================ +17:01:05 ============================================================================ +17:01:05 Slot Id : <462> +17:01:05 Transaction Type : RESPONSE +17:01:05 Received From : +17:01:05 ============================================================================ +17:01:05 FNo. Len. Field Value +17:01:05 ============================================================================ +17:01:05 [ 1] [ 4] [0210] +17:01:05 [ 2] [ 16] [6688990602643908] +17:01:05 [ 3] [ 6] [010000] +17:01:05 [ 4] [ 12] [000030000000] +17:01:05 [ 11] [ 6] [808533] +17:01:05 [ 12] [ 6] [170058] +17:01:05 [ 15] [ 4] [0320] +17:01:05 [ 18] [ 4] [6011] +17:01:05 [ 32] [ 6] [621354] +17:01:05 [ 35] [ 37] [6688990602643908=43100061390807100000] +17:01:05 [ 37] [ 12] [507902606320] +17:01:05 [ 38] [ 6] [960391] +17:01:05 [ 39] [ 2] [00] +17:01:05 [ 41] [ 8] [05004300] +17:01:05 [ 49] [ 3] [418] +17:01:05 [ 54] [ 20] [0002418C000023531601] +17:01:05 ============================================================================ +17:01:05 Sending to : +17:01:05 ============================================================================ +17:01:05 + + +waiting on router queue for slot.... +17:01:06 ============================================================================ +17:01:06 Slot Id : <428> +17:01:06 Transaction Type : REQUEST +17:01:06 Received From : +17:01:06 ============================================================================ +17:01:06 FNo. Len. Field Value +17:01:06 ============================================================================ +17:01:06 [ 1] [ 4] [0200] +17:01:06 [ 2] [ 16] [6213548000567907] +17:01:06 [ 3] [ 6] [010000] +17:01:06 [ 4] [ 12] [000050000000] +17:01:06 [ 7] [ 10] [0320165856] +17:01:06 [ 11] [ 6] [952731] +17:01:06 [ 12] [ 6] [165856] +17:01:06 [ 13] [ 4] [0320] +17:01:06 [ 15] [ 4] [0320] +17:01:06 [ 18] [ 4] [6011] +17:01:06 [ 19] [ 3] [418] +17:01:06 [ 22] [ 3] [021] +17:01:06 [ 25] [ 2] [01] +17:01:06 [ 28] [ 9] [D00002000] +17:01:06 [ 32] [ 6] [668899] +17:01:06 [ 35] [ 32] [6213548000567907=190212016790071] +17:01:06 [ 37] [ 12] [507901856596] +17:01:06 [ 41] [ 8] [03311001] +17:01:06 [ 42] [ 15] [APT ] +17:01:06 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +17:01:06 [ 49] [ 3] [418] +17:01:06 [ 52] [ 16] [CE48C6192B55EF9B] +17:01:06 ============================================================================ +17:01:06 + + +waiting on router queue for slot.... +17:01:06 Sending to : +17:01:06 ============================================================================ +17:01:06 Sending to : +17:01:06 ============================================================================ +17:01:06 ============================================================================ +17:01:06 Slot Id : <428> +17:01:06 Transaction Type : REQUEST +17:01:06 Received From : +17:01:06 ============================================================================ +17:01:06 FNo. Len. Field Value +17:01:06 ============================================================================ +17:01:06 [ 1] [ 4] [0200] +17:01:06 [ 2] [ 16] [6213548000567907] +17:01:06 [ 3] [ 6] [010000] +17:01:06 [ 4] [ 12] [000050000000] +17:01:06 [ 7] [ 10] [0320165856] +17:01:06 [ 11] [ 6] [952731] +17:01:06 [ 12] [ 6] [165856] +17:01:06 [ 13] [ 4] [0320] +17:01:06 [ 15] [ 4] [0320] +17:01:06 [ 18] [ 4] [6011] +17:01:06 [ 19] [ 3] [418] +17:01:06 [ 22] [ 3] [021] +17:01:06 [ 25] [ 2] [01] +17:01:06 [ 28] [ 9] [D00002000] +17:01:06 [ 32] [ 6] [668899] +17:01:06 [ 35] [ 32] [6213548000567907=190212016790071] +17:01:06 [ 37] [ 12] [507901856596] +17:01:06 [ 41] [ 8] [03311001] +17:01:06 [ 42] [ 15] [APT ] +17:01:06 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +17:01:06 [ 49] [ 3] [418] +17:01:06 [ 52] [ 16] [CE48C6192B55EF9B] +17:01:06 ============================================================================ +17:01:06 + + +waiting on router queue for slot.... +17:01:06 Sending to : +17:01:06 ============================================================================ +17:01:06 ============================================================================ +17:01:06 Slot Id : <428> +17:01:06 Transaction Type : REQUEST +17:01:06 Received From : +17:01:06 ============================================================================ +17:01:06 FNo. Len. Field Value +17:01:06 ============================================================================ +17:01:06 [ 1] [ 4] [0200] +17:01:06 [ 2] [ 16] [6213548000567907] +17:01:06 [ 3] [ 6] [010000] +17:01:06 [ 4] [ 12] [000050000000] +17:01:06 [ 7] [ 10] [0320165856] +17:01:06 [ 11] [ 6] [952731] +17:01:06 [ 12] [ 6] [165856] +17:01:06 [ 13] [ 4] [0320] +17:01:06 [ 15] [ 4] [0320] +17:01:06 [ 18] [ 4] [6011] +17:01:06 [ 19] [ 3] [418] +17:01:06 [ 22] [ 3] [021] +17:01:06 [ 25] [ 2] [01] +17:01:06 [ 28] [ 9] [D00002000] +17:01:06 [ 32] [ 6] [668899] +17:01:06 [ 35] [ 32] [6213548000567907=190212016790071] +17:01:06 [ 37] [ 12] [507901856596] +17:01:06 [ 41] [ 8] [03311001] +17:01:06 [ 42] [ 15] [APT ] +17:01:06 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +17:01:06 [ 49] [ 3] [418] +17:01:06 [ 52] [ 16] [2A9C43FF8E18FCC3] +17:01:06 ============================================================================ +17:01:06 + + +waiting on router queue for slot.... +17:01:06 Sending to : <0> +17:01:06 ============================================================================ +17:01:06 ============================================================================ +17:01:06 Slot Id : <462> +17:01:06 Transaction Type : RESPONSE +17:01:06 Received From : +17:01:06 ============================================================================ +17:01:06 FNo. Len. Field Value +17:01:06 ============================================================================ +17:01:06 [ 1] [ 4] [0210] +17:01:06 [ 2] [ 16] [6688990602643908] +17:01:06 [ 3] [ 6] [010000] +17:01:06 [ 4] [ 12] [000030000000] +17:01:06 [ 11] [ 6] [808533] +17:01:06 [ 12] [ 6] [170058] +17:01:06 [ 15] [ 4] [0320] +17:01:06 [ 18] [ 4] [6011] +17:01:06 [ 32] [ 6] [621354] +17:01:06 [ 35] [ 37] [6688990602643908=43100061390807100000] +17:01:06 [ 37] [ 12] [507902606320] +17:01:06 [ 38] [ 6] [960391] +17:01:06 [ 39] [ 2] [00] +17:01:06 [ 41] [ 8] [05004300] +17:01:06 [ 49] [ 3] [418] +17:01:06 [ 54] [ 20] [0002418C000023531601] +17:01:06 ============================================================================ +17:01:06 Calculate Source COMM Id = 0 +17:01:06 ============================================================================ +17:01:06 + + +waiting on router queue for slot.... +17:01:07 ============================================================================ +17:01:07 Slot Id : <428> +17:01:07 Transaction Type : RESPONSE +17:01:07 Received From : +17:01:07 ============================================================================ +17:01:07 FNo. Len. Field Value +17:01:07 ============================================================================ +17:01:07 [ 1] [ 4] [0210] +17:01:07 [ 2] [ 16] [6213548000567907] +17:01:07 [ 3] [ 6] [010000] +17:01:07 [ 4] [ 12] [000050000000] +17:01:07 [ 7] [ 10] [0320165856] +17:01:07 [ 11] [ 6] [952731] +17:01:07 [ 12] [ 6] [165856] +17:01:07 [ 13] [ 4] [0320] +17:01:07 [ 15] [ 4] [0320] +17:01:07 [ 18] [ 4] [6011] +17:01:07 [ 19] [ 3] [418] +17:01:07 [ 32] [ 6] [668899] +17:01:07 [ 35] [ 32] [6213548000567907=190212016790071] +17:01:07 [ 37] [ 12] [507901856596] +17:01:07 [ 38] [ 6] [631256] +17:01:07 [ 39] [ 2] [00] +17:01:07 [ 41] [ 8] [03311001] +17:01:07 [ 49] [ 3] [418] +17:01:07 [ 54] [ 40] [0001418C0000050885070002418C000005088507] +17:01:07 ============================================================================ +17:01:07 Sending to : +17:01:07 ============================================================================ +17:01:07 + + +waiting on router queue for slot.... +17:01:08 ============================================================================ +17:01:08 Slot Id : <428> +17:01:08 Transaction Type : RESPONSE +17:01:08 Received From : +17:01:08 ============================================================================ +17:01:08 FNo. Len. Field Value +17:01:08 ============================================================================ +17:01:08 [ 1] [ 4] [0210] +17:01:08 [ 2] [ 16] [6213548000567907] +17:01:08 [ 3] [ 6] [010000] +17:01:08 [ 4] [ 12] [000050000000] +17:01:08 [ 7] [ 10] [0320165856] +17:01:08 [ 11] [ 6] [952731] +17:01:08 [ 12] [ 6] [165856] +17:01:08 [ 13] [ 4] [0320] +17:01:08 [ 15] [ 4] [0320] +17:01:08 [ 18] [ 4] [6011] +17:01:08 [ 19] [ 3] [418] +17:01:08 [ 32] [ 6] [668899] +17:01:08 [ 35] [ 32] [6213548000567907=190212016790071] +17:01:08 [ 37] [ 12] [507901856596] +17:01:08 [ 38] [ 6] [631256] +17:01:08 [ 39] [ 2] [00] +17:01:08 [ 41] [ 8] [03311001] +17:01:08 [ 49] [ 3] [418] +17:01:08 [ 54] [ 40] [0001418C0000050885070002418C000005088507] +17:01:08 ============================================================================ +17:01:08 Calculate Source COMM Id = 4 +17:01:08 ============================================================================ +17:01:08 + + +waiting on router queue for slot.... +17:01:08 ============================================================================ +17:01:08 Slot Id : <431> +17:01:08 Transaction Type : REQUEST +17:01:08 Received From : +17:01:08 ============================================================================ +17:01:08 FNo. Len. Field Value +17:01:08 ============================================================================ +17:01:08 [ 1] [ 4] [0800] +17:01:08 [ 7] [ 10] [0320100015] +17:01:08 [ 11] [ 6] [157357] +17:01:08 [ 70] [ 3] [301] +17:01:08 ============================================================================ +17:01:08 + + +waiting on router queue for slot.... +17:01:08 Sending to : +17:01:08 ============================================================================ +17:01:08 ============================================================================ +17:01:08 Slot Id : <431> +17:01:08 Transaction Type : RESPONSE +17:01:08 Received From : +17:01:08 ============================================================================ +17:01:08 FNo. Len. Field Value +17:01:08 ============================================================================ +17:01:08 [ 1] [ 4] [0810] +17:01:08 [ 7] [ 10] [0320100015] +17:01:08 [ 11] [ 6] [157357] +17:01:08 [ 39] [ 2] [00] +17:01:08 [ 70] [ 3] [301] +17:01:08 ============================================================================ +17:01:08 Calculate Source COMM Id = 2 +17:01:08 ============================================================================ +17:01:08 + + +waiting on router queue for slot.... +17:01:08 ============================================================================ +17:01:08 Slot Id : <421> +17:01:08 Transaction Type : REQUEST +17:01:08 Received From : +17:01:08 ============================================================================ +17:01:08 FNo. Len. Field Value +17:01:08 ============================================================================ +17:01:08 [ 1] [ 4] [0200] +17:01:08 [ 2] [ 16] [6688990103291306] +17:01:08 [ 3] [ 6] [010000] +17:01:08 [ 4] [ 12] [000100000000] +17:01:08 [ 7] [ 10] [0320170103] +17:01:08 [ 11] [ 6] [808559] +17:01:08 [ 12] [ 6] [170103] +17:01:08 [ 13] [ 4] [0320] +17:01:08 [ 15] [ 4] [0320] +17:01:08 [ 18] [ 4] [6011] +17:01:08 [ 22] [ 3] [900] +17:01:08 [ 25] [ 2] [02] +17:01:08 [ 28] [ 9] [D00002000] +17:01:08 [ 32] [ 6] [621354] +17:01:08 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:01:08 [ 37] [ 12] [507903499641] +17:01:08 [ 41] [ 8] [06002200] +17:01:08 [ 42] [ 15] [NATIVE ] +17:01:08 [ 43] [ 40] [Beng Market Beng LAO] +17:01:08 [ 49] [ 3] [418] +17:01:08 [ 52] [ 16] [38E4519FF4022ECA] +17:01:08 ============================================================================ +17:01:08 + + +waiting on router queue for slot.... +17:01:08 Sending to : +17:01:08 ============================================================================ +17:01:08 Sending to : +17:01:08 ============================================================================ +17:01:08 ============================================================================ +17:01:08 Slot Id : <421> +17:01:08 Transaction Type : REQUEST +17:01:08 Received From : +17:01:08 ============================================================================ +17:01:08 FNo. Len. Field Value +17:01:08 ============================================================================ +17:01:08 [ 1] [ 4] [0200] +17:01:08 [ 2] [ 16] [6688990103291306] +17:01:08 [ 3] [ 6] [010000] +17:01:08 [ 4] [ 12] [000100000000] +17:01:08 [ 7] [ 10] [0320170103] +17:01:08 [ 11] [ 6] [808559] +17:01:08 [ 12] [ 6] [170103] +17:01:08 [ 13] [ 4] [0320] +17:01:08 [ 15] [ 4] [0320] +17:01:08 [ 18] [ 4] [6011] +17:01:08 [ 22] [ 3] [900] +17:01:08 [ 25] [ 2] [02] +17:01:08 [ 28] [ 9] [D00002000] +17:01:08 [ 32] [ 6] [621354] +17:01:08 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:01:08 [ 37] [ 12] [507903499641] +17:01:08 [ 41] [ 8] [06002200] +17:01:08 [ 42] [ 15] [NATIVE ] +17:01:08 [ 43] [ 40] [Beng Market Beng LAO] +17:01:08 [ 49] [ 3] [418] +17:01:08 [ 52] [ 16] [38E4519FF4022ECA] +17:01:08 ============================================================================ +17:01:08 + + +waiting on router queue for slot.... +17:01:08 Sending to : +17:01:08 ============================================================================ +17:01:08 ============================================================================ +17:01:08 Slot Id : <421> +17:01:08 Transaction Type : REQUEST +17:01:08 Received From : +17:01:08 ============================================================================ +17:01:08 FNo. Len. Field Value +17:01:08 ============================================================================ +17:01:08 [ 1] [ 4] [0200] +17:01:08 [ 2] [ 16] [6688990103291306] +17:01:08 [ 3] [ 6] [010000] +17:01:08 [ 4] [ 12] [000100000000] +17:01:08 [ 7] [ 10] [0320170103] +17:01:08 [ 11] [ 6] [808559] +17:01:08 [ 12] [ 6] [170103] +17:01:08 [ 13] [ 4] [0320] +17:01:08 [ 15] [ 4] [0320] +17:01:08 [ 18] [ 4] [6011] +17:01:08 [ 22] [ 3] [900] +17:01:08 [ 25] [ 2] [02] +17:01:08 [ 28] [ 9] [D00002000] +17:01:08 [ 32] [ 6] [621354] +17:01:08 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:01:08 [ 37] [ 12] [507903499641] +17:01:08 [ 41] [ 8] [06002200] +17:01:08 [ 42] [ 15] [NATIVE ] +17:01:08 [ 43] [ 40] [Beng Market Beng LAO] +17:01:08 [ 49] [ 3] [418] +17:01:08 [ 52] [ 16] [607F46DA2443E332] +17:01:08 ============================================================================ +17:01:08 + + +waiting on router queue for slot.... +17:01:08 Sending to : <4> +17:01:08 ============================================================================ +17:01:10 ============================================================================ +17:01:10 Slot Id : <421> +17:01:10 Transaction Type : RESPONSE +17:01:10 Received From : +17:01:10 ============================================================================ +17:01:10 FNo. Len. Field Value +17:01:10 ============================================================================ +17:01:10 [ 1] [ 4] [0210] +17:01:10 [ 2] [ 16] [6688990103291306] +17:01:10 [ 3] [ 6] [010000] +17:01:10 [ 4] [ 12] [000100000000] +17:01:10 [ 11] [ 6] [808559] +17:01:10 [ 12] [ 6] [170103] +17:01:10 [ 15] [ 4] [0320] +17:01:10 [ 18] [ 4] [6011] +17:01:10 [ 32] [ 6] [621354] +17:01:10 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:01:10 [ 37] [ 12] [507903499641] +17:01:10 [ 38] [ 6] [730143] +17:01:10 [ 39] [ 2] [00] +17:01:10 [ 41] [ 8] [06002200] +17:01:10 [ 49] [ 3] [418] +17:01:10 [ 54] [ 20] [0002418C000016902559] +17:01:10 ============================================================================ +17:01:10 Sending to : +17:01:10 ============================================================================ +17:01:10 + + +waiting on router queue for slot.... +17:01:12 ============================================================================ +17:01:12 Slot Id : <421> +17:01:12 Transaction Type : RESPONSE +17:01:12 Received From : +17:01:12 ============================================================================ +17:01:12 FNo. Len. Field Value +17:01:12 ============================================================================ +17:01:12 [ 1] [ 4] [0210] +17:01:12 [ 2] [ 16] [6688990103291306] +17:01:12 [ 3] [ 6] [010000] +17:01:12 [ 4] [ 12] [000100000000] +17:01:12 [ 11] [ 6] [808559] +17:01:12 [ 12] [ 6] [170103] +17:01:12 [ 15] [ 4] [0320] +17:01:12 [ 18] [ 4] [6011] +17:01:12 [ 32] [ 6] [621354] +17:01:12 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:01:12 [ 37] [ 12] [507903499641] +17:01:12 [ 38] [ 6] [730143] +17:01:12 [ 39] [ 2] [00] +17:01:12 [ 41] [ 8] [06002200] +17:01:12 [ 49] [ 3] [418] +17:01:12 [ 54] [ 20] [0002418C000016902559] +17:01:12 ============================================================================ +17:01:12 Calculate Source COMM Id = 0 +17:01:12 ============================================================================ +17:01:12 + + +waiting on router queue for slot.... +17:01:14 ============================================================================ +17:01:14 Slot Id : <422> +17:01:14 Transaction Type : REQUEST +17:01:14 Received From : +17:01:14 ============================================================================ +17:01:14 FNo. Len. Field Value +17:01:14 ============================================================================ +17:01:14 [ 1] [ 4] [0200] +17:01:14 [ 2] [ 16] [6213544002118278] +17:01:14 [ 3] [ 6] [011000] +17:01:14 [ 4] [ 12] [000020000000] +17:01:14 [ 7] [ 10] [0320170135] +17:01:14 [ 11] [ 6] [209173] +17:01:14 [ 12] [ 6] [165641] +17:01:14 [ 13] [ 4] [0320] +17:01:14 [ 14] [ 4] [4912] +17:01:14 [ 15] [ 4] [0320] +17:01:14 [ 18] [ 4] [6011] +17:01:14 [ 19] [ 3] [418] +17:01:14 [ 22] [ 3] [021] +17:01:14 [ 25] [ 2] [01] +17:01:14 [ 28] [ 9] [D00002000] +17:01:14 [ 32] [ 6] [198901] +17:01:14 [ 35] [ 32] [6213544002118278=491212011827644] +17:01:14 [ 37] [ 12] [507917209173] +17:01:14 [ 41] [ 8] [19529001] +17:01:14 [ 42] [ 15] [000000041952901] +17:01:14 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:01:14 [ 49] [ 3] [418] +17:01:14 [ 52] [ 16] [3C1A37370F7BA71C] +17:01:14 ============================================================================ +17:01:14 + + +waiting on router queue for slot.... +17:01:14 Sending to : +17:01:14 ============================================================================ +17:01:14 Sending to : +17:01:14 ============================================================================ +17:01:15 ============================================================================ +17:01:15 Slot Id : <422> +17:01:15 Transaction Type : REQUEST +17:01:15 Received From : +17:01:15 ============================================================================ +17:01:15 FNo. Len. Field Value +17:01:15 ============================================================================ +17:01:15 [ 1] [ 4] [0200] +17:01:15 [ 2] [ 16] [6213544002118278] +17:01:15 [ 3] [ 6] [011000] +17:01:15 [ 4] [ 12] [000020000000] +17:01:15 [ 7] [ 10] [0320170135] +17:01:15 [ 11] [ 6] [209173] +17:01:15 [ 12] [ 6] [165641] +17:01:15 [ 13] [ 4] [0320] +17:01:15 [ 14] [ 4] [4912] +17:01:15 [ 15] [ 4] [0320] +17:01:15 [ 18] [ 4] [6011] +17:01:15 [ 19] [ 3] [418] +17:01:15 [ 22] [ 3] [021] +17:01:15 [ 25] [ 2] [01] +17:01:15 [ 28] [ 9] [D00002000] +17:01:15 [ 32] [ 6] [198901] +17:01:15 [ 35] [ 32] [6213544002118278=491212011827644] +17:01:15 [ 37] [ 12] [507917209173] +17:01:15 [ 41] [ 8] [19529001] +17:01:15 [ 42] [ 15] [000000041952901] +17:01:15 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:01:15 [ 49] [ 3] [418] +17:01:15 [ 52] [ 16] [3C1A37370F7BA71C] +17:01:15 ============================================================================ +17:01:15 + + +waiting on router queue for slot.... +17:01:15 Sending to : +17:01:15 ============================================================================ +17:01:15 ============================================================================ +17:01:15 Slot Id : <422> +17:01:15 Transaction Type : REQUEST +17:01:15 Received From : +17:01:15 ============================================================================ +17:01:15 FNo. Len. Field Value +17:01:15 ============================================================================ +17:01:15 [ 1] [ 4] [0200] +17:01:15 [ 2] [ 16] [6213544002118278] +17:01:15 [ 3] [ 6] [011000] +17:01:15 [ 4] [ 12] [000020000000] +17:01:15 [ 7] [ 10] [0320170135] +17:01:15 [ 11] [ 6] [209173] +17:01:15 [ 12] [ 6] [165641] +17:01:15 [ 13] [ 4] [0320] +17:01:15 [ 14] [ 4] [4912] +17:01:15 [ 15] [ 4] [0320] +17:01:15 [ 18] [ 4] [6011] +17:01:15 [ 19] [ 3] [418] +17:01:15 [ 22] [ 3] [021] +17:01:15 [ 25] [ 2] [01] +17:01:15 [ 28] [ 9] [D00002000] +17:01:15 [ 32] [ 6] [198901] +17:01:15 [ 35] [ 32] [6213544002118278=491212011827644] +17:01:15 [ 37] [ 12] [507917209173] +17:01:15 [ 41] [ 8] [19529001] +17:01:15 [ 42] [ 15] [000000041952901] +17:01:15 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:01:15 [ 49] [ 3] [418] +17:01:15 [ 52] [ 16] [6D0058AD14761BD4] +17:01:15 ============================================================================ +17:01:15 + + +waiting on router queue for slot.... +17:01:15 Sending to : <0> +17:01:15 ============================================================================ +17:01:15 ============================================================================ +17:01:15 Slot Id : <422> +17:01:15 Transaction Type : RESPONSE +17:01:15 Received From : +17:01:15 ============================================================================ +17:01:15 FNo. Len. Field Value +17:01:15 ============================================================================ +17:01:15 [ 1] [ 4] [0210] +17:01:15 [ 2] [ 16] [6213544002118278] +17:01:15 [ 3] [ 6] [011000] +17:01:15 [ 4] [ 12] [000020000000] +17:01:15 [ 7] [ 10] [0320170135] +17:01:15 [ 11] [ 6] [209173] +17:01:15 [ 12] [ 6] [165641] +17:01:15 [ 13] [ 4] [0320] +17:01:15 [ 15] [ 4] [0320] +17:01:15 [ 18] [ 4] [6011] +17:01:15 [ 19] [ 3] [418] +17:01:15 [ 32] [ 6] [198901] +17:01:15 [ 35] [ 32] [6213544002118278=491212011827644] +17:01:15 [ 37] [ 12] [507917209173] +17:01:15 [ 38] [ 6] [396369] +17:01:15 [ 39] [ 2] [00] +17:01:15 [ 41] [ 8] [19529001] +17:01:15 [ 49] [ 3] [418] +17:01:15 [ 54] [ 40] [1001418C0000365671781002418C000036567178] +17:01:15 ============================================================================ +17:01:15 Sending to : +17:01:15 ============================================================================ +17:01:15 + + +waiting on router queue for slot.... +17:01:17 ============================================================================ +17:01:17 Slot Id : <422> +17:01:17 Transaction Type : RESPONSE +17:01:17 Received From : +17:01:17 ============================================================================ +17:01:17 FNo. Len. Field Value +17:01:17 ============================================================================ +17:01:17 [ 1] [ 4] [0210] +17:01:17 [ 2] [ 16] [6213544002118278] +17:01:17 [ 3] [ 6] [011000] +17:01:17 [ 4] [ 12] [000020000000] +17:01:17 [ 7] [ 10] [0320170135] +17:01:17 [ 11] [ 6] [209173] +17:01:17 [ 12] [ 6] [165641] +17:01:17 [ 13] [ 4] [0320] +17:01:17 [ 15] [ 4] [0320] +17:01:17 [ 18] [ 4] [6011] +17:01:17 [ 19] [ 3] [418] +17:01:17 [ 32] [ 6] [198901] +17:01:17 [ 35] [ 32] [6213544002118278=491212011827644] +17:01:17 [ 37] [ 12] [507917209173] +17:01:17 [ 38] [ 6] [396369] +17:01:17 [ 39] [ 2] [00] +17:01:17 [ 41] [ 8] [19529001] +17:01:17 [ 49] [ 3] [418] +17:01:17 [ 54] [ 40] [1001418C0000365671781002418C000036567178] +17:01:17 ============================================================================ +17:01:17 Calculate Source COMM Id = 5 +17:01:17 ============================================================================ +17:01:17 + + +waiting on router queue for slot.... +17:01:19 ============================================================================ +17:01:19 Slot Id : <451> +17:01:19 Transaction Type : REQUEST +17:01:19 Received From : +17:01:19 ============================================================================ +17:01:19 FNo. Len. Field Value +17:01:19 ============================================================================ +17:01:19 [ 1] [ 4] [0800] +17:01:19 [ 7] [ 10] [0320100026] +17:01:19 [ 11] [ 6] [157358] +17:01:19 [ 70] [ 3] [301] +17:01:19 ============================================================================ +17:01:19 + + +waiting on router queue for slot.... +17:01:19 Sending to : +17:01:19 ============================================================================ +17:01:19 ============================================================================ +17:01:19 Slot Id : <451> +17:01:19 Transaction Type : RESPONSE +17:01:19 Received From : +17:01:19 ============================================================================ +17:01:19 FNo. Len. Field Value +17:01:19 ============================================================================ +17:01:19 [ 1] [ 4] [0810] +17:01:19 [ 7] [ 10] [0320100026] +17:01:19 [ 11] [ 6] [157358] +17:01:19 [ 39] [ 2] [00] +17:01:19 [ 70] [ 3] [301] +17:01:19 ============================================================================ +17:01:19 Calculate Source COMM Id = 2 +17:01:19 ============================================================================ +17:01:19 + + +waiting on router queue for slot.... +17:01:22 ============================================================================ +17:01:22 Slot Id : <465> +17:01:22 Transaction Type : REQUEST +17:01:22 Received From : +17:01:22 ============================================================================ +17:01:22 FNo. Len. Field Value +17:01:22 ============================================================================ +17:01:22 [ 1] [ 4] [0800] +17:01:22 [ 7] [ 10] [0320095912] +17:01:22 [ 11] [ 6] [085692] +17:01:22 [ 37] [ 12] [57916085692] +17:01:22 [ 70] [ 3] [301] +17:01:22 ============================================================================ +17:01:22 + + +waiting on router queue for slot.... +17:01:22 Sending to : +17:01:22 ============================================================================ +17:01:22 ============================================================================ +17:01:22 Slot Id : <465> +17:01:22 Transaction Type : RESPONSE +17:01:22 Received From : +17:01:22 ============================================================================ +17:01:22 FNo. Len. Field Value +17:01:22 ============================================================================ +17:01:22 [ 1] [ 4] [0810] +17:01:22 [ 7] [ 10] [0320095912] +17:01:22 [ 11] [ 6] [085692] +17:01:22 [ 37] [ 12] [579160856920] +17:01:22 [ 39] [ 2] [00] +17:01:22 [ 70] [ 3] [810] +17:01:22 ============================================================================ +17:01:22 Calculate Source COMM Id = 4 +17:01:22 ============================================================================ +17:01:22 + + +waiting on router queue for slot.... +17:01:30 ============================================================================ +17:01:30 Slot Id : <457> +17:01:30 Transaction Type : REQUEST +17:01:30 Received From : +17:01:30 ============================================================================ +17:01:30 FNo. Len. Field Value +17:01:30 ============================================================================ +17:01:30 [ 1] [ 4] [0800] +17:01:30 [ 7] [ 10] [0321001319] +17:01:30 [ 11] [ 6] [171319] +17:01:30 [ 37] [ 12] [57917171319] +17:01:30 [ 70] [ 3] [301] +17:01:30 ============================================================================ +17:01:30 + + +waiting on router queue for slot.... +17:01:30 Sending to : +17:01:30 ============================================================================ +17:01:30 ============================================================================ +17:01:30 Slot Id : <457> +17:01:30 Transaction Type : RESPONSE +17:01:30 Received From : +17:01:30 ============================================================================ +17:01:30 FNo. Len. Field Value +17:01:30 ============================================================================ +17:01:30 [ 1] [ 4] [0810] +17:01:30 [ 7] [ 10] [0321001319] +17:01:30 [ 11] [ 6] [171319] +17:01:30 [ 37] [ 12] [579171713190] +17:01:30 [ 39] [ 2] [00] +17:01:30 [ 70] [ 3] [810] +17:01:30 ============================================================================ +17:01:30 Calculate Source COMM Id = 6 +17:01:30 ============================================================================ +17:01:30 + + +waiting on router queue for slot.... +17:01:32 ============================================================================ +17:01:32 Slot Id : <426> +17:01:32 Transaction Type : REQUEST +17:01:32 Received From : +17:01:32 ============================================================================ +17:01:32 FNo. Len. Field Value +17:01:32 ============================================================================ +17:01:32 [ 1] [ 4] [0800] +17:01:32 [ 7] [ 10] [0320100037] +17:01:32 [ 11] [ 6] [157359] +17:01:32 [ 70] [ 3] [301] +17:01:32 ============================================================================ +17:01:32 + + +waiting on router queue for slot.... +17:01:32 Sending to : +17:01:32 ============================================================================ +17:01:32 ============================================================================ +17:01:32 Slot Id : <426> +17:01:32 Transaction Type : RESPONSE +17:01:32 Received From : +17:01:32 ============================================================================ +17:01:32 FNo. Len. Field Value +17:01:32 ============================================================================ +17:01:32 [ 1] [ 4] [0810] +17:01:32 [ 7] [ 10] [0320100037] +17:01:32 [ 11] [ 6] [157359] +17:01:32 [ 39] [ 2] [00] +17:01:32 [ 70] [ 3] [301] +17:01:32 ============================================================================ +17:01:32 Calculate Source COMM Id = 2 +17:01:32 ============================================================================ +17:01:32 + + +waiting on router queue for slot.... +17:01:35 ============================================================================ +17:01:35 Slot Id : <444> +17:01:35 Transaction Type : REQUEST +17:01:35 Received From : +17:01:35 ============================================================================ +17:01:35 FNo. Len. Field Value +17:01:35 ============================================================================ +17:01:35 [ 1] [ 4] [0800] +17:01:35 [ 2] [ 5] [02531] +17:01:35 [ 3] [ 6] [579178] +17:01:35 [ 7] [ 10] [0320100135] +17:01:35 [ 11] [ 6] [807400] +17:01:35 [ 15] [ 10] [0320100135] +17:01:35 [ 37] [ 11] [57917807400] +17:01:35 [ 70] [ 3] [001] +17:01:35 ============================================================================ +17:01:35 + + +waiting on router queue for slot.... +17:01:35 ============================================================================ +17:01:35 Slot Id : <444> +17:01:35 Transaction Type : RESPONSE +17:01:35 Received From : +17:01:35 ============================================================================ +17:01:35 FNo. Len. Field Value +17:01:35 ============================================================================ +17:01:35 [ 1] [ 4] [0810] +17:01:35 [ 7] [ 10] [0320100135] +17:01:35 [ 11] [ 6] [807400] +17:01:35 [ 15] [ 4] [0320] +17:01:35 [ 37] [ 12] [57917807400] +17:01:35 [ 39] [ 2] [00] +17:01:35 [ 70] [ 3] [001] +17:01:35 ============================================================================ +17:01:35 Sending to : +17:01:35 ============================================================================ +17:01:35 + + +waiting on router queue for slot.... +17:01:36 ============================================================================ +17:01:36 Slot Id : <436> +17:01:36 Transaction Type : REQUEST +17:01:36 Received From : +17:01:36 ============================================================================ +17:01:36 FNo. Len. Field Value +17:01:36 ============================================================================ +17:01:36 [ 1] [ 4] [0200] +17:01:36 [ 2] [ 16] [6213544002113550] +17:01:36 [ 3] [ 6] [010000] +17:01:36 [ 4] [ 12] [000056000000] +17:01:36 [ 7] [ 10] [0320165926] +17:01:36 [ 11] [ 6] [952744] +17:01:36 [ 12] [ 6] [165926] +17:01:36 [ 13] [ 4] [0320] +17:01:36 [ 15] [ 4] [0320] +17:01:36 [ 18] [ 4] [6011] +17:01:36 [ 19] [ 3] [418] +17:01:36 [ 22] [ 3] [021] +17:01:36 [ 25] [ 2] [01] +17:01:36 [ 28] [ 9] [D00002000] +17:01:36 [ 32] [ 6] [668899] +17:01:36 [ 35] [ 32] [6213544002113550=491212011355795] +17:01:36 [ 37] [ 12] [507902025648] +17:01:36 [ 41] [ 8] [03414002] +17:01:36 [ 42] [ 15] [APT ] +17:01:36 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:01:36 [ 49] [ 3] [418] +17:01:36 [ 52] [ 16] [9275CCB5B1ED0B75] +17:01:36 ============================================================================ +17:01:36 + + +waiting on router queue for slot.... +17:01:36 Sending to : +17:01:36 ============================================================================ +17:01:36 Sending to : +17:01:36 ============================================================================ +17:01:37 ============================================================================ +17:01:37 Slot Id : <436> +17:01:37 Transaction Type : REQUEST +17:01:37 Received From : +17:01:37 ============================================================================ +17:01:37 FNo. Len. Field Value +17:01:37 ============================================================================ +17:01:37 [ 1] [ 4] [0200] +17:01:37 [ 2] [ 16] [6213544002113550] +17:01:37 [ 3] [ 6] [010000] +17:01:37 [ 4] [ 12] [000056000000] +17:01:37 [ 7] [ 10] [0320165926] +17:01:37 [ 11] [ 6] [952744] +17:01:37 [ 12] [ 6] [165926] +17:01:37 [ 13] [ 4] [0320] +17:01:37 [ 15] [ 4] [0320] +17:01:37 [ 18] [ 4] [6011] +17:01:37 [ 19] [ 3] [418] +17:01:37 [ 22] [ 3] [021] +17:01:37 [ 25] [ 2] [01] +17:01:37 [ 28] [ 9] [D00002000] +17:01:37 [ 32] [ 6] [668899] +17:01:37 [ 35] [ 32] [6213544002113550=491212011355795] +17:01:37 [ 37] [ 12] [507902025648] +17:01:37 [ 41] [ 8] [03414002] +17:01:37 [ 42] [ 15] [APT ] +17:01:37 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:01:37 [ 49] [ 3] [418] +17:01:37 [ 52] [ 16] [9275CCB5B1ED0B75] +17:01:37 ============================================================================ +17:01:37 + + +waiting on router queue for slot.... +17:01:37 Sending to : +17:01:37 ============================================================================ +17:01:37 ============================================================================ +17:01:37 Slot Id : <436> +17:01:37 Transaction Type : REQUEST +17:01:37 Received From : +17:01:37 ============================================================================ +17:01:37 FNo. Len. Field Value +17:01:37 ============================================================================ +17:01:37 [ 1] [ 4] [0200] +17:01:37 [ 2] [ 16] [6213544002113550] +17:01:37 [ 3] [ 6] [010000] +17:01:37 [ 4] [ 12] [000056000000] +17:01:37 [ 7] [ 10] [0320165926] +17:01:37 [ 11] [ 6] [952744] +17:01:37 [ 12] [ 6] [165926] +17:01:37 [ 13] [ 4] [0320] +17:01:37 [ 15] [ 4] [0320] +17:01:37 [ 18] [ 4] [6011] +17:01:37 [ 19] [ 3] [418] +17:01:37 [ 22] [ 3] [021] +17:01:37 [ 25] [ 2] [01] +17:01:37 [ 28] [ 9] [D00002000] +17:01:37 [ 32] [ 6] [668899] +17:01:37 [ 35] [ 32] [6213544002113550=491212011355795] +17:01:37 [ 37] [ 12] [507902025648] +17:01:37 [ 41] [ 8] [03414002] +17:01:37 [ 42] [ 15] [APT ] +17:01:37 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:01:37 [ 49] [ 3] [418] +17:01:37 [ 52] [ 16] [87D4F5F74FC43F3D] +17:01:37 ============================================================================ +17:01:37 + + +waiting on router queue for slot.... +17:01:37 Sending to : <0> +17:01:37 ============================================================================ +17:01:37 ============================================================================ +17:01:37 Slot Id : <436> +17:01:37 Transaction Type : RESPONSE +17:01:37 Received From : +17:01:37 ============================================================================ +17:01:37 FNo. Len. Field Value +17:01:37 ============================================================================ +17:01:37 [ 1] [ 4] [0210] +17:01:37 [ 2] [ 16] [6213544002113550] +17:01:37 [ 3] [ 6] [010000] +17:01:37 [ 4] [ 12] [000056000000] +17:01:37 [ 7] [ 10] [0320165926] +17:01:37 [ 11] [ 6] [952744] +17:01:37 [ 12] [ 6] [165926] +17:01:37 [ 13] [ 4] [0320] +17:01:37 [ 15] [ 4] [0320] +17:01:37 [ 18] [ 4] [6011] +17:01:37 [ 19] [ 3] [418] +17:01:37 [ 32] [ 6] [668899] +17:01:37 [ 35] [ 32] [6213544002113550=491212011355795] +17:01:37 [ 37] [ 12] [507902025648] +17:01:37 [ 38] [ 6] [081028] +17:01:37 [ 39] [ 2] [00] +17:01:37 [ 41] [ 8] [03414002] +17:01:37 [ 49] [ 3] [418] +17:01:37 [ 54] [ 40] [0001418C0000108920750002418C000010892075] +17:01:37 ============================================================================ +17:01:37 Sending to : +17:01:37 ============================================================================ +17:01:37 + + +waiting on router queue for slot.... +17:01:38 ============================================================================ +17:01:38 Slot Id : <436> +17:01:38 Transaction Type : RESPONSE +17:01:38 Received From : +17:01:38 ============================================================================ +17:01:38 FNo. Len. Field Value +17:01:38 ============================================================================ +17:01:38 [ 1] [ 4] [0210] +17:01:38 [ 2] [ 16] [6213544002113550] +17:01:38 [ 3] [ 6] [010000] +17:01:38 [ 4] [ 12] [000056000000] +17:01:38 [ 7] [ 10] [0320165926] +17:01:38 [ 11] [ 6] [952744] +17:01:38 [ 12] [ 6] [165926] +17:01:38 [ 13] [ 4] [0320] +17:01:38 [ 15] [ 4] [0320] +17:01:38 [ 18] [ 4] [6011] +17:01:38 [ 19] [ 3] [418] +17:01:38 [ 32] [ 6] [668899] +17:01:38 [ 35] [ 32] [6213544002113550=491212011355795] +17:01:38 [ 37] [ 12] [507902025648] +17:01:38 [ 38] [ 6] [081028] +17:01:38 [ 39] [ 2] [00] +17:01:38 [ 41] [ 8] [03414002] +17:01:38 [ 49] [ 3] [418] +17:01:38 [ 54] [ 40] [0001418C0000108920750002418C000010892075] +17:01:38 ============================================================================ +17:01:38 Calculate Source COMM Id = 4 +17:01:38 ============================================================================ +17:01:38 + + +waiting on router queue for slot.... +17:01:43 ============================================================================ +17:01:43 Slot Id : <423> +17:01:43 Transaction Type : REQUEST +17:01:43 Received From : +17:01:43 ============================================================================ +17:01:43 FNo. Len. Field Value +17:01:43 ============================================================================ +17:01:43 [ 1] [ 4] [0200] +17:01:43 [ 2] [ 16] [1808930600041610] +17:01:43 [ 3] [ 6] [011000] +17:01:43 [ 4] [ 12] [000020000000] +17:01:43 [ 7] [ 10] [0320170138] +17:01:43 [ 11] [ 6] [808715] +17:01:43 [ 12] [ 6] [170138] +17:01:43 [ 13] [ 4] [0320] +17:01:43 [ 15] [ 4] [0320] +17:01:43 [ 18] [ 4] [6011] +17:01:43 [ 22] [ 3] [900] +17:01:43 [ 25] [ 2] [02] +17:01:43 [ 28] [ 9] [D00002000] +17:01:43 [ 32] [ 6] [621354] +17:01:43 [ 35] [ 27] [1808930600041610=1803500520] +17:01:43 [ 37] [ 12] [507905014041] +17:01:43 [ 41] [ 8] [01012500] +17:01:43 [ 42] [ 15] [NATIVE ] +17:01:43 [ 43] [ 40] [LaoGerman Technic Vientiane LAO] +17:01:43 [ 49] [ 3] [418] +17:01:43 [ 52] [ 16] [361C0BCF2444EA44] +17:01:43 ============================================================================ +17:01:43 + + +waiting on router queue for slot.... +17:01:43 Sending to : +17:01:43 ============================================================================ +17:01:43 Sending to : +17:01:43 ============================================================================ +17:01:43 ============================================================================ +17:01:43 Slot Id : <423> +17:01:43 Transaction Type : REQUEST +17:01:43 Received From : +17:01:43 ============================================================================ +17:01:43 FNo. Len. Field Value +17:01:43 ============================================================================ +17:01:43 [ 1] [ 4] [0200] +17:01:43 [ 2] [ 16] [1808930600041610] +17:01:43 [ 3] [ 6] [011000] +17:01:43 [ 4] [ 12] [000020000000] +17:01:43 [ 7] [ 10] [0320170138] +17:01:43 [ 11] [ 6] [808715] +17:01:43 [ 12] [ 6] [170138] +17:01:43 [ 13] [ 4] [0320] +17:01:43 [ 15] [ 4] [0320] +17:01:43 [ 18] [ 4] [6011] +17:01:43 [ 22] [ 3] [900] +17:01:43 [ 25] [ 2] [02] +17:01:43 [ 28] [ 9] [D00002000] +17:01:43 [ 32] [ 6] [621354] +17:01:43 [ 35] [ 27] [1808930600041610=1803500520] +17:01:43 [ 37] [ 12] [507905014041] +17:01:43 [ 41] [ 8] [01012500] +17:01:43 [ 42] [ 15] [NATIVE ] +17:01:43 [ 43] [ 40] [LaoGerman Technic Vientiane LAO] +17:01:43 [ 49] [ 3] [418] +17:01:43 [ 52] [ 16] [361C0BCF2444EA44] +17:01:43 ============================================================================ +17:01:43 + + +waiting on router queue for slot.... +17:01:43 Sending to : +17:01:43 ============================================================================ +17:01:43 ============================================================================ +17:01:43 Slot Id : <423> +17:01:43 Transaction Type : REQUEST +17:01:43 Received From : +17:01:43 ============================================================================ +17:01:43 FNo. Len. Field Value +17:01:43 ============================================================================ +17:01:43 [ 1] [ 4] [0200] +17:01:43 [ 2] [ 16] [1808930600041610] +17:01:43 [ 3] [ 6] [011000] +17:01:43 [ 4] [ 12] [000020000000] +17:01:43 [ 7] [ 10] [0320170138] +17:01:43 [ 11] [ 6] [808715] +17:01:43 [ 12] [ 6] [170138] +17:01:43 [ 13] [ 4] [0320] +17:01:43 [ 15] [ 4] [0320] +17:01:43 [ 18] [ 4] [6011] +17:01:43 [ 22] [ 3] [900] +17:01:43 [ 25] [ 2] [02] +17:01:43 [ 28] [ 9] [D00002000] +17:01:43 [ 32] [ 6] [621354] +17:01:43 [ 35] [ 27] [1808930600041610=1803500520] +17:01:43 [ 37] [ 12] [507905014041] +17:01:43 [ 41] [ 8] [01012500] +17:01:43 [ 42] [ 15] [NATIVE ] +17:01:43 [ 43] [ 40] [LaoGerman Technic Vientiane LAO] +17:01:43 [ 49] [ 3] [418] +17:01:43 [ 52] [ 16] [8A7910606B381E09] +17:01:43 ============================================================================ +17:01:43 + + +waiting on router queue for slot.... +17:01:43 Sending to : <2> +17:01:43 ============================================================================ +17:01:49 ============================================================================ +17:01:49 Slot Id : <423> +17:01:49 Transaction Type : RESPONSE +17:01:49 Received From : +17:01:49 ============================================================================ +17:01:49 FNo. Len. Field Value +17:01:49 ============================================================================ +17:01:49 [ 1] [ 4] [0210] +17:01:49 [ 2] [ 16] [1808930600041610] +17:01:49 [ 3] [ 6] [011000] +17:01:49 [ 4] [ 12] [000020000000] +17:01:49 [ 6] [ 12] [000020000000] +17:01:49 [ 7] [ 10] [0320170138] +17:01:49 [ 11] [ 6] [808715] +17:01:49 [ 12] [ 6] [170138] +17:01:49 [ 13] [ 4] [0320] +17:01:49 [ 18] [ 4] [6011] +17:01:49 [ 19] [ 3] [418] +17:01:49 [ 22] [ 3] [021] +17:01:49 [ 32] [ 6] [621354] +17:01:49 [ 35] [ 27] [1808930600041610=1803500520] +17:01:49 [ 37] [ 12] [507905014041] +17:01:49 [ 38] [ 6] [808715] +17:01:49 [ 39] [ 2] [00] +17:01:49 [ 41] [ 8] [01012500] +17:01:49 [ 49] [ 3] [418] +17:01:49 [ 52] [ 16] [8A7910606B381E09] +17:01:49 [ 54] [ 20] [1001418C000023194000] +17:01:49 ============================================================================ +17:01:49 Sending to : +17:01:49 ============================================================================ +17:01:49 + + +waiting on router queue for slot.... +17:01:51 ============================================================================ +17:01:51 Slot Id : <423> +17:01:51 Transaction Type : RESPONSE +17:01:51 Received From : +17:01:51 ============================================================================ +17:01:51 FNo. Len. Field Value +17:01:51 ============================================================================ +17:01:51 [ 1] [ 4] [0210] +17:01:51 [ 2] [ 16] [1808930600041610] +17:01:51 [ 3] [ 6] [011000] +17:01:51 [ 4] [ 12] [000020000000] +17:01:51 [ 6] [ 12] [000020000000] +17:01:51 [ 7] [ 10] [0320170138] +17:01:51 [ 11] [ 6] [808715] +17:01:51 [ 12] [ 6] [170138] +17:01:51 [ 13] [ 4] [0320] +17:01:51 [ 18] [ 4] [6011] +17:01:51 [ 19] [ 3] [418] +17:01:51 [ 22] [ 3] [021] +17:01:51 [ 32] [ 6] [621354] +17:01:51 [ 35] [ 27] [1808930600041610=1803500520] +17:01:51 [ 37] [ 12] [507905014041] +17:01:51 [ 38] [ 6] [808715] +17:01:51 [ 39] [ 2] [00] +17:01:51 [ 41] [ 8] [01012500] +17:01:51 [ 49] [ 3] [418] +17:01:51 [ 52] [ 16] [8A7910606B381E09] +17:01:51 [ 54] [ 20] [1001418C000023194000] +17:01:51 ============================================================================ +17:01:51 Calculate Source COMM Id = 0 +17:01:51 ============================================================================ +17:01:51 + + +waiting on router queue for slot.... +17:01:57 ============================================================================ +17:01:57 Slot Id : <458> +17:01:57 Transaction Type : REQUEST +17:01:57 Received From : +17:01:57 ============================================================================ +17:01:57 FNo. Len. Field Value +17:01:57 ============================================================================ +17:01:57 [ 1] [ 4] [0800] +17:01:57 [ 7] [ 10] [0320100104] +17:01:57 [ 11] [ 6] [157360] +17:01:57 [ 70] [ 3] [301] +17:01:57 ============================================================================ +17:01:57 + + +waiting on router queue for slot.... +17:01:57 Sending to : +17:01:57 ============================================================================ +17:01:57 ============================================================================ +17:01:57 Slot Id : <458> +17:01:57 Transaction Type : RESPONSE +17:01:57 Received From : +17:01:57 ============================================================================ +17:01:57 FNo. Len. Field Value +17:01:57 ============================================================================ +17:01:57 [ 1] [ 4] [0810] +17:01:57 [ 7] [ 10] [0320100104] +17:01:57 [ 11] [ 6] [157360] +17:01:57 [ 39] [ 2] [00] +17:01:57 [ 70] [ 3] [301] +17:01:57 ============================================================================ +17:01:57 Calculate Source COMM Id = 2 +17:01:57 ============================================================================ +17:01:57 + + +waiting on router queue for slot.... +17:02:06 ============================================================================ +17:02:06 Slot Id : <439> +17:02:06 Transaction Type : REQUEST +17:02:06 Received From : +17:02:06 ============================================================================ +17:02:06 FNo. Len. Field Value +17:02:06 ============================================================================ +17:02:06 [ 1] [ 4] [0200] +17:02:06 [ 2] [ 16] [6213544001853156] +17:02:06 [ 3] [ 6] [311000] +17:02:06 [ 4] [ 12] [000000000000] +17:02:06 [ 7] [ 10] [0320170952] +17:02:06 [ 11] [ 6] [242351] +17:02:06 [ 12] [ 6] [170952] +17:02:06 [ 13] [ 4] [0320] +17:02:06 [ 14] [ 4] [4912] +17:02:06 [ 15] [ 4] [0320] +17:02:06 [ 18] [ 4] [6011] +17:02:06 [ 22] [ 3] [900] +17:02:06 [ 25] [ 2] [02] +17:02:06 [ 28] [ 9] [000000000] +17:02:06 [ 32] [ 6] [220699] +17:02:06 [ 35] [ 32] [6213544001853156=491212015315272] +17:02:06 [ 37] [ 12] [507900341593] +17:02:06 [ 41] [ 8] [01002000] +17:02:06 [ 42] [ 15] [APTRA ] +17:02:06 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:02:06 [ 49] [ 3] [418] +17:02:06 [ 52] [ 16] [C16892CDD7C73801] +17:02:06 ============================================================================ +17:02:06 + + +waiting on router queue for slot.... +17:02:06 Sending to : +17:02:06 ============================================================================ +17:02:06 Sending to : +17:02:06 ============================================================================ +17:02:06 ============================================================================ +17:02:06 Slot Id : <439> +17:02:06 Transaction Type : REQUEST +17:02:06 Received From : +17:02:06 ============================================================================ +17:02:06 FNo. Len. Field Value +17:02:06 ============================================================================ +17:02:06 [ 1] [ 4] [0200] +17:02:06 [ 2] [ 16] [6213544001853156] +17:02:06 [ 3] [ 6] [311000] +17:02:06 [ 4] [ 12] [000000000000] +17:02:06 [ 7] [ 10] [0320170952] +17:02:06 [ 11] [ 6] [242351] +17:02:06 [ 12] [ 6] [170952] +17:02:06 [ 13] [ 4] [0320] +17:02:06 [ 14] [ 4] [4912] +17:02:06 [ 15] [ 4] [0320] +17:02:06 [ 18] [ 4] [6011] +17:02:06 [ 22] [ 3] [900] +17:02:06 [ 25] [ 2] [02] +17:02:06 [ 28] [ 9] [000000000] +17:02:06 [ 32] [ 6] [220699] +17:02:06 [ 35] [ 32] [6213544001853156=491212015315272] +17:02:06 [ 37] [ 12] [507900341593] +17:02:06 [ 41] [ 8] [01002000] +17:02:06 [ 42] [ 15] [APTRA ] +17:02:06 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:02:06 [ 49] [ 3] [418] +17:02:06 [ 52] [ 16] [C16892CDD7C73801] +17:02:06 ============================================================================ +17:02:06 + + +waiting on router queue for slot.... +17:02:06 Sending to : +17:02:06 ============================================================================ +17:02:06 ============================================================================ +17:02:06 Slot Id : <439> +17:02:06 Transaction Type : REQUEST +17:02:06 Received From : +17:02:06 ============================================================================ +17:02:06 FNo. Len. Field Value +17:02:06 ============================================================================ +17:02:06 [ 1] [ 4] [0200] +17:02:06 [ 2] [ 16] [6213544001853156] +17:02:06 [ 3] [ 6] [311000] +17:02:06 [ 4] [ 12] [000000000000] +17:02:06 [ 7] [ 10] [0320170952] +17:02:06 [ 11] [ 6] [242351] +17:02:06 [ 12] [ 6] [170952] +17:02:06 [ 13] [ 4] [0320] +17:02:06 [ 14] [ 4] [4912] +17:02:06 [ 15] [ 4] [0320] +17:02:06 [ 18] [ 4] [6011] +17:02:06 [ 22] [ 3] [900] +17:02:06 [ 25] [ 2] [02] +17:02:06 [ 28] [ 9] [000000000] +17:02:06 [ 32] [ 6] [220699] +17:02:06 [ 35] [ 32] [6213544001853156=491212015315272] +17:02:06 [ 37] [ 12] [507900341593] +17:02:06 [ 41] [ 8] [01002000] +17:02:06 [ 42] [ 15] [APTRA ] +17:02:06 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:02:06 [ 49] [ 3] [418] +17:02:06 [ 52] [ 16] [50E2CADF85917FC2] +17:02:06 ============================================================================ +17:02:06 + + +waiting on router queue for slot.... +17:02:06 Sending to : <0> +17:02:06 ============================================================================ +17:02:06 ============================================================================ +17:02:06 Slot Id : <439> +17:02:06 Transaction Type : RESPONSE +17:02:06 Received From : +17:02:06 ============================================================================ +17:02:06 FNo. Len. Field Value +17:02:06 ============================================================================ +17:02:06 [ 1] [ 4] [0210] +17:02:06 [ 2] [ 16] [6213544001853156] +17:02:06 [ 3] [ 6] [311000] +17:02:06 [ 4] [ 12] [000000000000] +17:02:06 [ 7] [ 10] [0320170952] +17:02:06 [ 11] [ 6] [242351] +17:02:06 [ 12] [ 6] [170952] +17:02:06 [ 13] [ 4] [0320] +17:02:06 [ 15] [ 4] [0320] +17:02:06 [ 18] [ 4] [6011] +17:02:06 [ 22] [ 3] [900] +17:02:06 [ 32] [ 6] [220699] +17:02:06 [ 35] [ 32] [6213544001853156=491212015315272] +17:02:06 [ 37] [ 12] [507900341593] +17:02:06 [ 38] [ 6] [170201] +17:02:06 [ 39] [ 2] [55] +17:02:06 [ 41] [ 8] [01002000] +17:02:06 [ 49] [ 3] [418] +17:02:06 ============================================================================ +17:02:06 Sending to : +17:02:06 ============================================================================ +17:02:06 + + +waiting on router queue for slot.... +17:02:07 ============================================================================ +17:02:07 Slot Id : <452> +17:02:07 Transaction Type : REQUEST +17:02:07 Received From : +17:02:07 ============================================================================ +17:02:07 FNo. Len. Field Value +17:02:07 ============================================================================ +17:02:07 [ 1] [ 4] [0800] +17:02:07 [ 7] [ 10] [0320100114] +17:02:07 [ 11] [ 6] [157361] +17:02:07 [ 70] [ 3] [301] +17:02:07 ============================================================================ +17:02:07 + + +waiting on router queue for slot.... +17:02:07 Sending to : +17:02:07 ============================================================================ +17:02:07 ============================================================================ +17:02:07 Slot Id : <452> +17:02:07 Transaction Type : RESPONSE +17:02:07 Received From : +17:02:07 ============================================================================ +17:02:07 FNo. Len. Field Value +17:02:07 ============================================================================ +17:02:07 [ 1] [ 4] [0810] +17:02:07 [ 7] [ 10] [0320100114] +17:02:07 [ 11] [ 6] [157361] +17:02:07 [ 39] [ 2] [00] +17:02:07 [ 70] [ 3] [301] +17:02:07 ============================================================================ +17:02:07 Calculate Source COMM Id = 2 +17:02:07 ============================================================================ +17:02:07 + + +waiting on router queue for slot.... +17:02:07 ============================================================================ +17:02:07 Slot Id : <439> +17:02:07 Transaction Type : RESPONSE +17:02:07 Received From : +17:02:07 ============================================================================ +17:02:07 FNo. Len. Field Value +17:02:07 ============================================================================ +17:02:07 [ 1] [ 4] [0210] +17:02:07 [ 2] [ 16] [6213544001853156] +17:02:07 [ 3] [ 6] [311000] +17:02:07 [ 4] [ 12] [000000000000] +17:02:07 [ 7] [ 10] [0320170952] +17:02:07 [ 11] [ 6] [242351] +17:02:07 [ 12] [ 6] [170952] +17:02:07 [ 13] [ 4] [0320] +17:02:07 [ 15] [ 4] [0320] +17:02:07 [ 18] [ 4] [6011] +17:02:07 [ 22] [ 3] [900] +17:02:07 [ 32] [ 6] [220699] +17:02:07 [ 35] [ 32] [6213544001853156=491212015315272] +17:02:07 [ 37] [ 12] [507900341593] +17:02:07 [ 38] [ 6] [170201] +17:02:07 [ 39] [ 2] [55] +17:02:07 [ 41] [ 8] [01002000] +17:02:07 [ 49] [ 3] [418] +17:02:07 ============================================================================ +17:02:07 Calculate Source COMM Id = 1 +17:02:07 ============================================================================ +17:02:07 + + +waiting on router queue for slot.... +17:02:07 ============================================================================ +17:02:07 Slot Id : <459> +17:02:07 Transaction Type : REQUEST +17:02:07 Received From : +17:02:07 ============================================================================ +17:02:07 FNo. Len. Field Value +17:02:07 ============================================================================ +17:02:07 [ 1] [ 4] [0200] +17:02:07 [ 2] [ 16] [2206990000137026] +17:02:07 [ 3] [ 6] [011000] +17:02:07 [ 4] [ 12] [000009000000] +17:02:07 [ 7] [ 10] [0320170202] +17:02:07 [ 11] [ 6] [808813] +17:02:07 [ 12] [ 6] [170202] +17:02:07 [ 13] [ 4] [0320] +17:02:07 [ 15] [ 4] [0320] +17:02:07 [ 18] [ 4] [6011] +17:02:07 [ 22] [ 3] [900] +17:02:07 [ 25] [ 2] [02] +17:02:07 [ 28] [ 9] [D00002000] +17:02:07 [ 32] [ 6] [621354] +17:02:07 [ 35] [ 32] [2206990000137026=980612610160808] +17:02:07 [ 37] [ 12] [507902750737] +17:02:07 [ 41] [ 8] [01006900] +17:02:07 [ 42] [ 15] [NATIVE ] +17:02:07 [ 43] [ 40] [MPOINT MART DPL Sisattanak LAO] +17:02:07 [ 49] [ 3] [418] +17:02:07 [ 52] [ 16] [9D800B3786AE631D] +17:02:07 ============================================================================ +17:02:07 + + +waiting on router queue for slot.... +17:02:07 Sending to : +17:02:07 ============================================================================ +17:02:07 Sending to : +17:02:07 ============================================================================ +17:02:08 ============================================================================ +17:02:08 Slot Id : <459> +17:02:08 Transaction Type : REQUEST +17:02:08 Received From : +17:02:08 ============================================================================ +17:02:08 FNo. Len. Field Value +17:02:08 ============================================================================ +17:02:08 [ 1] [ 4] [0200] +17:02:08 [ 2] [ 16] [2206990000137026] +17:02:08 [ 3] [ 6] [011000] +17:02:08 [ 4] [ 12] [000009000000] +17:02:08 [ 7] [ 10] [0320170202] +17:02:08 [ 11] [ 6] [808813] +17:02:08 [ 12] [ 6] [170202] +17:02:08 [ 13] [ 4] [0320] +17:02:08 [ 15] [ 4] [0320] +17:02:08 [ 18] [ 4] [6011] +17:02:08 [ 22] [ 3] [900] +17:02:08 [ 25] [ 2] [02] +17:02:08 [ 28] [ 9] [D00002000] +17:02:08 [ 32] [ 6] [621354] +17:02:08 [ 35] [ 32] [2206990000137026=980612610160808] +17:02:08 [ 37] [ 12] [507902750737] +17:02:08 [ 41] [ 8] [01006900] +17:02:08 [ 42] [ 15] [NATIVE ] +17:02:08 [ 43] [ 40] [MPOINT MART DPL Sisattanak LAO] +17:02:08 [ 49] [ 3] [418] +17:02:08 [ 52] [ 16] [9D800B3786AE631D] +17:02:08 ============================================================================ +17:02:08 + + +waiting on router queue for slot.... +17:02:08 Sending to : +17:02:08 ============================================================================ +17:02:08 ============================================================================ +17:02:08 Slot Id : <459> +17:02:08 Transaction Type : REQUEST +17:02:08 Received From : +17:02:08 ============================================================================ +17:02:08 FNo. Len. Field Value +17:02:08 ============================================================================ +17:02:08 [ 1] [ 4] [0200] +17:02:08 [ 2] [ 16] [2206990000137026] +17:02:08 [ 3] [ 6] [011000] +17:02:08 [ 4] [ 12] [000009000000] +17:02:08 [ 7] [ 10] [0320170202] +17:02:08 [ 11] [ 6] [808813] +17:02:08 [ 12] [ 6] [170202] +17:02:08 [ 13] [ 4] [0320] +17:02:08 [ 15] [ 4] [0320] +17:02:08 [ 18] [ 4] [6011] +17:02:08 [ 22] [ 3] [900] +17:02:08 [ 25] [ 2] [02] +17:02:08 [ 28] [ 9] [D00002000] +17:02:08 [ 32] [ 6] [621354] +17:02:08 [ 35] [ 32] [2206990000137026=980612610160808] +17:02:08 [ 37] [ 12] [507902750737] +17:02:08 [ 41] [ 8] [01006900] +17:02:08 [ 42] [ 15] [NATIVE ] +17:02:08 [ 43] [ 40] [MPOINT MART DPL Sisattanak LAO] +17:02:08 [ 49] [ 3] [418] +17:02:08 [ 52] [ 16] [D176D1CA60F92D07] +17:02:08 ============================================================================ +17:02:08 + + +waiting on router queue for slot.... +17:02:08 Sending to : <1> +17:02:08 ============================================================================ +17:02:10 ============================================================================ +17:02:10 Slot Id : <459> +17:02:10 Transaction Type : RESPONSE +17:02:10 Received From : +17:02:10 ============================================================================ +17:02:10 FNo. Len. Field Value +17:02:10 ============================================================================ +17:02:10 [ 1] [ 4] [0210] +17:02:10 [ 2] [ 16] [2206990000137026] +17:02:10 [ 3] [ 6] [011000] +17:02:10 [ 4] [ 12] [000009000000] +17:02:10 [ 7] [ 10] [0320170202] +17:02:10 [ 11] [ 6] [808813] +17:02:10 [ 12] [ 6] [170202] +17:02:10 [ 13] [ 4] [0320] +17:02:10 [ 15] [ 4] [0320] +17:02:10 [ 18] [ 4] [6011] +17:02:10 [ 32] [ 6] [621354] +17:02:10 [ 35] [ 32] [2206990000137026=980612610160808] +17:02:10 [ 37] [ 12] [507902750737] +17:02:10 [ 38] [ 6] [270514] +17:02:10 [ 39] [ 2] [00] +17:02:10 [ 41] [ 8] [01006900] +17:02:10 [ 49] [ 3] [418] +17:02:10 [ 54] [ 40] [1001418C0000917889001002418C000091788900] +17:02:10 ============================================================================ +17:02:10 Sending to : +17:02:10 ============================================================================ +17:02:10 + + +waiting on router queue for slot.... +17:02:12 ============================================================================ +17:02:12 Slot Id : <459> +17:02:12 Transaction Type : RESPONSE +17:02:12 Received From : +17:02:12 ============================================================================ +17:02:12 FNo. Len. Field Value +17:02:12 ============================================================================ +17:02:12 [ 1] [ 4] [0210] +17:02:12 [ 2] [ 16] [2206990000137026] +17:02:12 [ 3] [ 6] [011000] +17:02:12 [ 4] [ 12] [000009000000] +17:02:12 [ 7] [ 10] [0320170202] +17:02:12 [ 11] [ 6] [808813] +17:02:12 [ 12] [ 6] [170202] +17:02:12 [ 13] [ 4] [0320] +17:02:12 [ 15] [ 4] [0320] +17:02:12 [ 18] [ 4] [6011] +17:02:12 [ 32] [ 6] [621354] +17:02:12 [ 35] [ 32] [2206990000137026=980612610160808] +17:02:12 [ 37] [ 12] [507902750737] +17:02:12 [ 38] [ 6] [270514] +17:02:12 [ 39] [ 2] [00] +17:02:12 [ 41] [ 8] [01006900] +17:02:12 [ 49] [ 3] [418] +17:02:12 [ 54] [ 40] [1001418C0000917889001002418C000091788900] +17:02:12 ============================================================================ +17:02:12 Calculate Source COMM Id = 0 +17:02:12 ============================================================================ +17:02:12 + + +waiting on router queue for slot.... +17:02:15 ============================================================================ +17:02:15 Slot Id : <468> +17:02:15 Transaction Type : REQUEST +17:02:15 Received From : +17:02:15 ============================================================================ +17:02:15 FNo. Len. Field Value +17:02:15 ============================================================================ +17:02:15 [ 1] [ 4] [0200] +17:02:15 [ 2] [ 16] [6213544002235346] +17:02:15 [ 3] [ 6] [301000] +17:02:15 [ 4] [ 12] [000000000000] +17:02:15 [ 7] [ 10] [0320170005] +17:02:15 [ 11] [ 6] [952760] +17:02:15 [ 12] [ 6] [170005] +17:02:15 [ 13] [ 4] [0320] +17:02:15 [ 15] [ 4] [0320] +17:02:15 [ 18] [ 4] [6011] +17:02:15 [ 19] [ 3] [418] +17:02:15 [ 22] [ 3] [021] +17:02:15 [ 25] [ 2] [01] +17:02:15 [ 28] [ 9] [D00000000] +17:02:15 [ 32] [ 6] [668899] +17:02:15 [ 35] [ 32] [6213544002235346=491212013534615] +17:02:15 [ 37] [ 12] [507900305061] +17:02:15 [ 41] [ 8] [03013001] +17:02:15 [ 42] [ 15] [APT ] +17:02:15 [ 43] [ 40] [ KAM OFFICE THAKHAK DIKAM ] +17:02:15 [ 49] [ 3] [418] +17:02:15 [ 52] [ 16] [245D1D2738AA40BC] +17:02:15 ============================================================================ +17:02:15 + + +waiting on router queue for slot.... +17:02:15 Sending to : +17:02:15 ============================================================================ +17:02:15 Sending to : +17:02:15 ============================================================================ +17:02:16 ============================================================================ +17:02:16 Slot Id : <468> +17:02:16 Transaction Type : REQUEST +17:02:16 Received From : +17:02:16 ============================================================================ +17:02:16 FNo. Len. Field Value +17:02:16 ============================================================================ +17:02:16 [ 1] [ 4] [0200] +17:02:16 [ 2] [ 16] [6213544002235346] +17:02:16 [ 3] [ 6] [301000] +17:02:16 [ 4] [ 12] [000000000000] +17:02:16 [ 7] [ 10] [0320170005] +17:02:16 [ 11] [ 6] [952760] +17:02:16 [ 12] [ 6] [170005] +17:02:16 [ 13] [ 4] [0320] +17:02:16 [ 15] [ 4] [0320] +17:02:16 [ 18] [ 4] [6011] +17:02:16 [ 19] [ 3] [418] +17:02:16 [ 22] [ 3] [021] +17:02:16 [ 25] [ 2] [01] +17:02:16 [ 28] [ 9] [D00000000] +17:02:16 [ 32] [ 6] [668899] +17:02:16 [ 35] [ 32] [6213544002235346=491212013534615] +17:02:16 [ 37] [ 12] [507900305061] +17:02:16 [ 41] [ 8] [03013001] +17:02:16 [ 42] [ 15] [APT ] +17:02:16 [ 43] [ 40] [ KAM OFFICE THAKHAK DIKAM ] +17:02:16 [ 49] [ 3] [418] +17:02:16 [ 52] [ 16] [245D1D2738AA40BC] +17:02:16 ============================================================================ +17:02:16 + + +waiting on router queue for slot.... +17:02:16 Sending to : +17:02:16 ============================================================================ +17:02:16 ============================================================================ +17:02:16 Slot Id : <468> +17:02:16 Transaction Type : REQUEST +17:02:16 Received From : +17:02:16 ============================================================================ +17:02:16 FNo. Len. Field Value +17:02:16 ============================================================================ +17:02:16 [ 1] [ 4] [0200] +17:02:16 [ 2] [ 16] [6213544002235346] +17:02:16 [ 3] [ 6] [301000] +17:02:16 [ 4] [ 12] [000000000000] +17:02:16 [ 7] [ 10] [0320170005] +17:02:16 [ 11] [ 6] [952760] +17:02:16 [ 12] [ 6] [170005] +17:02:16 [ 13] [ 4] [0320] +17:02:16 [ 15] [ 4] [0320] +17:02:16 [ 18] [ 4] [6011] +17:02:16 [ 19] [ 3] [418] +17:02:16 [ 22] [ 3] [021] +17:02:16 [ 25] [ 2] [01] +17:02:16 [ 28] [ 9] [D00000000] +17:02:16 [ 32] [ 6] [668899] +17:02:16 [ 35] [ 32] [6213544002235346=491212013534615] +17:02:16 [ 37] [ 12] [507900305061] +17:02:16 [ 41] [ 8] [03013001] +17:02:16 [ 42] [ 15] [APT ] +17:02:16 [ 43] [ 40] [ KAM OFFICE THAKHAK DIKAM ] +17:02:16 [ 49] [ 3] [418] +17:02:16 [ 52] [ 16] [0841C4EA0ED484F4] +17:02:16 ============================================================================ +17:02:16 + + +waiting on router queue for slot.... +17:02:16 Sending to : <0> +17:02:16 ============================================================================ +17:02:16 ============================================================================ +17:02:16 Slot Id : <468> +17:02:16 Transaction Type : RESPONSE +17:02:16 Received From : +17:02:16 ============================================================================ +17:02:16 FNo. Len. Field Value +17:02:16 ============================================================================ +17:02:16 [ 1] [ 4] [0210] +17:02:16 [ 2] [ 16] [6213544002235346] +17:02:16 [ 3] [ 6] [301000] +17:02:16 [ 4] [ 12] [000000000000] +17:02:16 [ 7] [ 10] [0320170005] +17:02:16 [ 11] [ 6] [952760] +17:02:16 [ 12] [ 6] [170005] +17:02:16 [ 13] [ 4] [0320] +17:02:16 [ 15] [ 4] [0320] +17:02:16 [ 18] [ 4] [6011] +17:02:16 [ 19] [ 3] [418] +17:02:16 [ 32] [ 6] [668899] +17:02:16 [ 35] [ 32] [6213544002235346=491212013534615] +17:02:16 [ 37] [ 12] [507900305061] +17:02:16 [ 38] [ 6] [230602] +17:02:16 [ 39] [ 2] [00] +17:02:16 [ 41] [ 8] [03013001] +17:02:16 [ 49] [ 3] [418] +17:02:16 [ 54] [ 40] [1001418C0001695000001002418C000169500000] +17:02:16 ============================================================================ +17:02:16 Sending to : +17:02:16 ============================================================================ +17:02:16 + + +waiting on router queue for slot.... +17:02:17 ============================================================================ +17:02:17 Slot Id : <468> +17:02:17 Transaction Type : RESPONSE +17:02:17 Received From : +17:02:17 ============================================================================ +17:02:17 FNo. Len. Field Value +17:02:17 ============================================================================ +17:02:17 [ 1] [ 4] [0210] +17:02:17 [ 2] [ 16] [6213544002235346] +17:02:17 [ 3] [ 6] [301000] +17:02:17 [ 4] [ 12] [000000000000] +17:02:17 [ 7] [ 10] [0320170005] +17:02:17 [ 11] [ 6] [952760] +17:02:17 [ 12] [ 6] [170005] +17:02:17 [ 13] [ 4] [0320] +17:02:17 [ 15] [ 4] [0320] +17:02:17 [ 18] [ 4] [6011] +17:02:17 [ 19] [ 3] [418] +17:02:17 [ 32] [ 6] [668899] +17:02:17 [ 35] [ 32] [6213544002235346=491212013534615] +17:02:17 [ 37] [ 12] [507900305061] +17:02:17 [ 38] [ 6] [230602] +17:02:17 [ 39] [ 2] [00] +17:02:17 [ 41] [ 8] [03013001] +17:02:17 [ 49] [ 3] [418] +17:02:17 [ 54] [ 40] [1001418C0001695000001002418C000169500000] +17:02:17 ============================================================================ +17:02:17 Calculate Source COMM Id = 4 +17:02:17 ============================================================================ +17:02:17 + + +waiting on router queue for slot.... +17:02:18 ============================================================================ +17:02:18 Slot Id : <455> +17:02:18 Transaction Type : REQUEST +17:02:18 Received From : +17:02:18 ============================================================================ +17:02:18 FNo. Len. Field Value +17:02:18 ============================================================================ +17:02:18 [ 1] [ 4] [0200] +17:02:18 [ 2] [ 16] [6213544002131933] +17:02:18 [ 3] [ 6] [011000] +17:02:18 [ 4] [ 12] [000060000000] +17:02:18 [ 7] [ 10] [0320170238] +17:02:18 [ 11] [ 6] [209177] +17:02:18 [ 12] [ 6] [165744] +17:02:18 [ 13] [ 4] [0320] +17:02:18 [ 14] [ 4] [4912] +17:02:18 [ 15] [ 4] [0320] +17:02:18 [ 18] [ 4] [6011] +17:02:18 [ 19] [ 3] [418] +17:02:18 [ 22] [ 3] [021] +17:02:18 [ 25] [ 2] [01] +17:02:18 [ 28] [ 9] [D00002000] +17:02:18 [ 32] [ 6] [198901] +17:02:18 [ 35] [ 32] [6213544002131933=491212013193061] +17:02:18 [ 37] [ 12] [507917209177] +17:02:18 [ 41] [ 8] [19529001] +17:02:18 [ 42] [ 15] [000000041952901] +17:02:18 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:02:18 [ 49] [ 3] [418] +17:02:18 [ 52] [ 16] [DBAD85811624092E] +17:02:18 ============================================================================ +17:02:18 + + +waiting on router queue for slot.... +17:02:18 Sending to : +17:02:18 ============================================================================ +17:02:18 Sending to : +17:02:18 ============================================================================ +17:02:18 ============================================================================ +17:02:18 Slot Id : <455> +17:02:18 Transaction Type : REQUEST +17:02:18 Received From : +17:02:18 ============================================================================ +17:02:18 FNo. Len. Field Value +17:02:18 ============================================================================ +17:02:18 [ 1] [ 4] [0200] +17:02:18 [ 2] [ 16] [6213544002131933] +17:02:18 [ 3] [ 6] [011000] +17:02:18 [ 4] [ 12] [000060000000] +17:02:18 [ 7] [ 10] [0320170238] +17:02:18 [ 11] [ 6] [209177] +17:02:18 [ 12] [ 6] [165744] +17:02:18 [ 13] [ 4] [0320] +17:02:18 [ 14] [ 4] [4912] +17:02:18 [ 15] [ 4] [0320] +17:02:18 [ 18] [ 4] [6011] +17:02:18 [ 19] [ 3] [418] +17:02:18 [ 22] [ 3] [021] +17:02:18 [ 25] [ 2] [01] +17:02:18 [ 28] [ 9] [D00002000] +17:02:18 [ 32] [ 6] [198901] +17:02:18 [ 35] [ 32] [6213544002131933=491212013193061] +17:02:18 [ 37] [ 12] [507917209177] +17:02:18 [ 41] [ 8] [19529001] +17:02:18 [ 42] [ 15] [000000041952901] +17:02:18 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:02:18 [ 49] [ 3] [418] +17:02:18 [ 52] [ 16] [DBAD85811624092E] +17:02:18 ============================================================================ +17:02:18 + + +waiting on router queue for slot.... +17:02:18 Sending to : +17:02:18 ============================================================================ +17:02:18 ============================================================================ +17:02:18 Slot Id : <455> +17:02:18 Transaction Type : REQUEST +17:02:18 Received From : +17:02:18 ============================================================================ +17:02:18 FNo. Len. Field Value +17:02:18 ============================================================================ +17:02:18 [ 1] [ 4] [0200] +17:02:18 [ 2] [ 16] [6213544002131933] +17:02:18 [ 3] [ 6] [011000] +17:02:18 [ 4] [ 12] [000060000000] +17:02:18 [ 7] [ 10] [0320170238] +17:02:18 [ 11] [ 6] [209177] +17:02:18 [ 12] [ 6] [165744] +17:02:18 [ 13] [ 4] [0320] +17:02:18 [ 14] [ 4] [4912] +17:02:18 [ 15] [ 4] [0320] +17:02:18 [ 18] [ 4] [6011] +17:02:18 [ 19] [ 3] [418] +17:02:18 [ 22] [ 3] [021] +17:02:18 [ 25] [ 2] [01] +17:02:18 [ 28] [ 9] [D00002000] +17:02:18 [ 32] [ 6] [198901] +17:02:18 [ 35] [ 32] [6213544002131933=491212013193061] +17:02:18 [ 37] [ 12] [507917209177] +17:02:18 [ 41] [ 8] [19529001] +17:02:18 [ 42] [ 15] [000000041952901] +17:02:18 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:02:18 [ 49] [ 3] [418] +17:02:18 [ 52] [ 16] [F212CDBF4A559B5A] +17:02:18 ============================================================================ +17:02:18 + + +waiting on router queue for slot.... +17:02:18 Sending to : <0> +17:02:18 ============================================================================ +17:02:18 ============================================================================ +17:02:18 Slot Id : <466> +17:02:18 Transaction Type : REQUEST +17:02:18 Received From : +17:02:18 ============================================================================ +17:02:18 FNo. Len. Field Value +17:02:18 ============================================================================ +17:02:18 [ 1] [ 4] [0800] +17:02:18 [ 7] [ 10] [0320100125] +17:02:18 [ 11] [ 6] [157362] +17:02:18 [ 70] [ 3] [301] +17:02:18 ============================================================================ +17:02:18 + + +waiting on router queue for slot.... +17:02:18 Sending to : +17:02:18 ============================================================================ +17:02:18 ============================================================================ +17:02:18 Slot Id : <466> +17:02:18 Transaction Type : RESPONSE +17:02:18 Received From : +17:02:18 ============================================================================ +17:02:18 FNo. Len. Field Value +17:02:18 ============================================================================ +17:02:18 [ 1] [ 4] [0810] +17:02:18 [ 7] [ 10] [0320100125] +17:02:18 [ 11] [ 6] [157362] +17:02:18 [ 39] [ 2] [00] +17:02:18 [ 70] [ 3] [301] +17:02:18 ============================================================================ +17:02:18 Calculate Source COMM Id = 2 +17:02:18 ============================================================================ +17:02:18 + + +waiting on router queue for slot.... +17:02:19 ============================================================================ +17:02:19 Slot Id : <455> +17:02:19 Transaction Type : RESPONSE +17:02:19 Received From : +17:02:19 ============================================================================ +17:02:19 FNo. Len. Field Value +17:02:19 ============================================================================ +17:02:19 [ 1] [ 4] [0210] +17:02:19 [ 2] [ 16] [6213544002131933] +17:02:19 [ 3] [ 6] [011000] +17:02:19 [ 4] [ 12] [000060000000] +17:02:19 [ 7] [ 10] [0320170238] +17:02:19 [ 11] [ 6] [209177] +17:02:19 [ 12] [ 6] [165744] +17:02:19 [ 13] [ 4] [0320] +17:02:19 [ 15] [ 4] [0320] +17:02:19 [ 18] [ 4] [6011] +17:02:19 [ 19] [ 3] [418] +17:02:19 [ 32] [ 6] [198901] +17:02:19 [ 35] [ 32] [6213544002131933=491212013193061] +17:02:19 [ 37] [ 12] [507917209177] +17:02:19 [ 38] [ 6] [658525] +17:02:19 [ 39] [ 2] [00] +17:02:19 [ 41] [ 8] [19529001] +17:02:19 [ 49] [ 3] [418] +17:02:19 [ 54] [ 40] [1001418C0000109079031002418C000010907903] +17:02:19 ============================================================================ +17:02:19 Sending to : +17:02:19 ============================================================================ +17:02:19 + + +waiting on router queue for slot.... +17:02:20 ============================================================================ +17:02:20 Slot Id : <455> +17:02:20 Transaction Type : RESPONSE +17:02:20 Received From : +17:02:20 ============================================================================ +17:02:20 FNo. Len. Field Value +17:02:20 ============================================================================ +17:02:20 [ 1] [ 4] [0210] +17:02:20 [ 2] [ 16] [6213544002131933] +17:02:20 [ 3] [ 6] [011000] +17:02:20 [ 4] [ 12] [000060000000] +17:02:20 [ 7] [ 10] [0320170238] +17:02:20 [ 11] [ 6] [209177] +17:02:20 [ 12] [ 6] [165744] +17:02:20 [ 13] [ 4] [0320] +17:02:20 [ 15] [ 4] [0320] +17:02:20 [ 18] [ 4] [6011] +17:02:20 [ 19] [ 3] [418] +17:02:20 [ 32] [ 6] [198901] +17:02:20 [ 35] [ 32] [6213544002131933=491212013193061] +17:02:20 [ 37] [ 12] [507917209177] +17:02:20 [ 38] [ 6] [658525] +17:02:20 [ 39] [ 2] [00] +17:02:20 [ 41] [ 8] [19529001] +17:02:20 [ 49] [ 3] [418] +17:02:20 [ 54] [ 40] [1001418C0000109079031002418C000010907903] +17:02:20 ============================================================================ +17:02:20 Calculate Source COMM Id = 5 +17:02:20 ============================================================================ +17:02:20 + + +waiting on router queue for slot.... +17:02:20 ============================================================================ +17:02:20 Slot Id : <475> +17:02:20 Transaction Type : REQUEST +17:02:20 Received From : +17:02:20 ============================================================================ +17:02:20 FNo. Len. Field Value +17:02:20 ============================================================================ +17:02:20 [ 1] [ 4] [0200] +17:02:20 [ 2] [ 16] [6213544001293254] +17:02:20 [ 3] [ 6] [011000] +17:02:20 [ 4] [ 12] [000030000000] +17:02:20 [ 7] [ 10] [0320100126] +17:02:20 [ 11] [ 6] [270691] +17:02:20 [ 12] [ 6] [170126] +17:02:20 [ 13] [ 4] [0320] +17:02:20 [ 14] [ 4] [4912] +17:02:20 [ 15] [ 4] [0320] +17:02:20 [ 18] [ 4] [6011] +17:02:20 [ 19] [ 3] [418] +17:02:20 [ 22] [ 3] [021] +17:02:20 [ 25] [ 2] [01] +17:02:20 [ 28] [ 9] [D00002000] +17:02:20 [ 32] [ 6] [180893] +17:02:20 [ 35] [ 32] [6213544001293254=491212019325463] +17:02:20 [ 37] [ 12] [507910270691] +17:02:20 [ 41] [ 8] [0528LPBP] +17:02:20 [ 42] [ 15] [999999 ] +17:02:20 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:02:20 [ 49] [ 3] [418] +17:02:20 [ 52] [ 16] [DA35839CFE574B5C] +17:02:20 ============================================================================ +17:02:20 + + +waiting on router queue for slot.... +17:02:20 Sending to : +17:02:20 ============================================================================ +17:02:20 Sending to : +17:02:20 ============================================================================ +17:02:21 ============================================================================ +17:02:21 Slot Id : <475> +17:02:21 Transaction Type : REQUEST +17:02:21 Received From : +17:02:21 ============================================================================ +17:02:21 FNo. Len. Field Value +17:02:21 ============================================================================ +17:02:21 [ 1] [ 4] [0200] +17:02:21 [ 2] [ 16] [6213544001293254] +17:02:21 [ 3] [ 6] [011000] +17:02:21 [ 4] [ 12] [000030000000] +17:02:21 [ 7] [ 10] [0320100126] +17:02:21 [ 11] [ 6] [270691] +17:02:21 [ 12] [ 6] [170126] +17:02:21 [ 13] [ 4] [0320] +17:02:21 [ 14] [ 4] [4912] +17:02:21 [ 15] [ 4] [0320] +17:02:21 [ 18] [ 4] [6011] +17:02:21 [ 19] [ 3] [418] +17:02:21 [ 22] [ 3] [021] +17:02:21 [ 25] [ 2] [01] +17:02:21 [ 28] [ 9] [D00002000] +17:02:21 [ 32] [ 6] [180893] +17:02:21 [ 35] [ 32] [6213544001293254=491212019325463] +17:02:21 [ 37] [ 12] [507910270691] +17:02:21 [ 41] [ 8] [0528LPBP] +17:02:21 [ 42] [ 15] [999999 ] +17:02:21 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:02:21 [ 49] [ 3] [418] +17:02:21 [ 52] [ 16] [DA35839CFE574B5C] +17:02:21 ============================================================================ +17:02:21 + + +waiting on router queue for slot.... +17:02:21 Sending to : +17:02:21 ============================================================================ +17:02:21 ============================================================================ +17:02:21 Slot Id : <475> +17:02:21 Transaction Type : REQUEST +17:02:21 Received From : +17:02:21 ============================================================================ +17:02:21 FNo. Len. Field Value +17:02:21 ============================================================================ +17:02:21 [ 1] [ 4] [0200] +17:02:21 [ 2] [ 16] [6213544001293254] +17:02:21 [ 3] [ 6] [011000] +17:02:21 [ 4] [ 12] [000030000000] +17:02:21 [ 7] [ 10] [0320100126] +17:02:21 [ 11] [ 6] [270691] +17:02:21 [ 12] [ 6] [170126] +17:02:21 [ 13] [ 4] [0320] +17:02:21 [ 14] [ 4] [4912] +17:02:21 [ 15] [ 4] [0320] +17:02:21 [ 18] [ 4] [6011] +17:02:21 [ 19] [ 3] [418] +17:02:21 [ 22] [ 3] [021] +17:02:21 [ 25] [ 2] [01] +17:02:21 [ 28] [ 9] [D00002000] +17:02:21 [ 32] [ 6] [180893] +17:02:21 [ 35] [ 32] [6213544001293254=491212019325463] +17:02:21 [ 37] [ 12] [507910270691] +17:02:21 [ 41] [ 8] [0528LPBP] +17:02:21 [ 42] [ 15] [999999 ] +17:02:21 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:02:21 [ 49] [ 3] [418] +17:02:21 [ 52] [ 16] [B839022B0A026DF0] +17:02:21 ============================================================================ +17:02:21 + + +waiting on router queue for slot.... +17:02:21 Sending to : <0> +17:02:21 ============================================================================ +17:02:23 ============================================================================ +17:02:23 Slot Id : <475> +17:02:23 Transaction Type : RESPONSE +17:02:23 Received From : +17:02:23 ============================================================================ +17:02:23 FNo. Len. Field Value +17:02:23 ============================================================================ +17:02:23 [ 1] [ 4] [0210] +17:02:23 [ 2] [ 16] [6213544001293254] +17:02:23 [ 3] [ 6] [011000] +17:02:23 [ 4] [ 12] [000030000000] +17:02:23 [ 7] [ 10] [0320100126] +17:02:23 [ 11] [ 6] [270691] +17:02:23 [ 12] [ 6] [170126] +17:02:23 [ 13] [ 4] [0320] +17:02:23 [ 15] [ 4] [0320] +17:02:23 [ 18] [ 4] [6011] +17:02:23 [ 19] [ 3] [418] +17:02:23 [ 32] [ 6] [180893] +17:02:23 [ 35] [ 32] [6213544001293254=491212019325463] +17:02:23 [ 37] [ 12] [507910270691] +17:02:23 [ 38] [ 6] [319887] +17:02:23 [ 39] [ 2] [00] +17:02:23 [ 41] [ 8] [0528LPBP] +17:02:23 [ 49] [ 3] [418] +17:02:23 [ 54] [ 40] [1001418C0000152231361002418C000015223136] +17:02:23 ============================================================================ +17:02:23 Sending to : +17:02:23 ============================================================================ +17:02:23 + + +waiting on router queue for slot.... +17:02:24 ============================================================================ +17:02:24 Slot Id : <475> +17:02:24 Transaction Type : RESPONSE +17:02:24 Received From : +17:02:24 ============================================================================ +17:02:24 FNo. Len. Field Value +17:02:24 ============================================================================ +17:02:24 [ 1] [ 4] [0210] +17:02:24 [ 2] [ 16] [6213544001293254] +17:02:24 [ 3] [ 6] [011000] +17:02:24 [ 4] [ 12] [000030000000] +17:02:24 [ 7] [ 10] [0320100126] +17:02:24 [ 11] [ 6] [270691] +17:02:24 [ 12] [ 6] [170126] +17:02:24 [ 13] [ 4] [0320] +17:02:24 [ 15] [ 4] [0320] +17:02:24 [ 18] [ 4] [6011] +17:02:24 [ 19] [ 3] [418] +17:02:24 [ 32] [ 6] [180893] +17:02:24 [ 35] [ 32] [6213544001293254=491212019325463] +17:02:24 [ 37] [ 12] [507910270691] +17:02:24 [ 38] [ 6] [319887] +17:02:24 [ 39] [ 2] [00] +17:02:24 [ 41] [ 8] [0528LPBP] +17:02:24 [ 49] [ 3] [418] +17:02:24 [ 54] [ 40] [1001418C0000152231361002418C000015223136] +17:02:24 ============================================================================ +17:02:24 Calculate Source COMM Id = 2 +17:02:24 ============================================================================ +17:02:24 + + +waiting on router queue for slot.... +17:02:34 ============================================================================ +17:02:34 Slot Id : <440> +17:02:34 Transaction Type : REQUEST +17:02:34 Received From : +17:02:34 ============================================================================ +17:02:34 FNo. Len. Field Value +17:02:34 ============================================================================ +17:02:34 [ 1] [ 4] [0200] +17:02:34 [ 2] [ 19] [6227003861190228036] +17:02:34 [ 3] [ 6] [310000] +17:02:34 [ 4] [ 12] [000000000000] +17:02:34 [ 7] [ 10] [0320171021] +17:02:34 [ 11] [ 6] [999968] +17:02:34 [ 12] [ 6] [171021] +17:02:34 [ 13] [ 4] [0320] +17:02:34 [ 14] [ 4] [4005] +17:02:34 [ 15] [ 4] [0320] +17:02:34 [ 18] [ 4] [6011] +17:02:34 [ 22] [ 3] [900] +17:02:34 [ 25] [ 2] [02] +17:02:34 [ 28] [ 9] [000000000] +17:02:34 [ 32] [ 6] [220699] +17:02:34 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:02:34 [ 37] [ 12] [507900281370] +17:02:34 [ 41] [ 8] [10000100] +17:02:34 [ 42] [ 15] [APTRA ] +17:02:34 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:02:34 [ 49] [ 3] [418] +17:02:34 [ 52] [ 16] [2C3F307D839AD02B] +17:02:34 ============================================================================ +17:02:34 + + +waiting on router queue for slot.... +17:02:34 Sending to : +17:02:34 ============================================================================ +17:02:34 Sending to : +17:02:34 ============================================================================ +17:02:34 ============================================================================ +17:02:34 Slot Id : <440> +17:02:34 Transaction Type : REQUEST +17:02:34 Received From : +17:02:34 ============================================================================ +17:02:34 FNo. Len. Field Value +17:02:34 ============================================================================ +17:02:34 [ 1] [ 4] [0200] +17:02:34 [ 2] [ 19] [6227003861190228036] +17:02:34 [ 3] [ 6] [310000] +17:02:34 [ 4] [ 12] [000000000000] +17:02:34 [ 7] [ 10] [0320171021] +17:02:34 [ 11] [ 6] [999968] +17:02:34 [ 12] [ 6] [171021] +17:02:34 [ 13] [ 4] [0320] +17:02:34 [ 14] [ 4] [4005] +17:02:34 [ 15] [ 4] [0320] +17:02:34 [ 18] [ 4] [6011] +17:02:34 [ 22] [ 3] [900] +17:02:34 [ 25] [ 2] [02] +17:02:34 [ 28] [ 9] [000000000] +17:02:34 [ 32] [ 6] [220699] +17:02:34 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:02:34 [ 37] [ 12] [507900281370] +17:02:34 [ 41] [ 8] [10000100] +17:02:34 [ 42] [ 15] [APTRA ] +17:02:34 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:02:34 [ 49] [ 3] [418] +17:02:34 [ 52] [ 16] [2C3F307D839AD02B] +17:02:34 ============================================================================ +17:02:34 + + +waiting on router queue for slot.... +17:02:34 Sending to : +17:02:34 ============================================================================ +17:02:34 ============================================================================ +17:02:34 Slot Id : <440> +17:02:34 Transaction Type : REQUEST +17:02:34 Received From : +17:02:34 ============================================================================ +17:02:34 FNo. Len. Field Value +17:02:34 ============================================================================ +17:02:34 [ 1] [ 4] [0200] +17:02:34 [ 2] [ 19] [6227003861190228036] +17:02:34 [ 3] [ 6] [310000] +17:02:34 [ 4] [ 12] [000000000000] +17:02:34 [ 7] [ 10] [0320171021] +17:02:34 [ 11] [ 6] [999968] +17:02:34 [ 12] [ 6] [171021] +17:02:34 [ 13] [ 4] [0320] +17:02:34 [ 14] [ 4] [4005] +17:02:34 [ 15] [ 4] [0320] +17:02:34 [ 18] [ 4] [6011] +17:02:34 [ 22] [ 3] [900] +17:02:34 [ 25] [ 2] [02] +17:02:34 [ 28] [ 9] [000000000] +17:02:34 [ 32] [ 6] [220699] +17:02:34 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:02:34 [ 37] [ 12] [507900281370] +17:02:34 [ 41] [ 8] [10000100] +17:02:34 [ 42] [ 15] [APTRA ] +17:02:34 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:02:34 [ 49] [ 3] [418] +17:02:34 [ 52] [ 16] [AA84C5BD22503A94] +17:02:34 ============================================================================ +17:02:34 + + +waiting on router queue for slot.... +17:02:34 Sending to : <0> +17:02:34 ============================================================================ +17:02:34 ============================================================================ +17:02:34 Slot Id : <440> +17:02:34 Transaction Type : RESPONSE +17:02:34 Received From : +17:02:34 ============================================================================ +17:02:34 FNo. Len. Field Value +17:02:34 ============================================================================ +17:02:34 [ 1] [ 4] [0210] +17:02:34 [ 2] [ 19] [6227003861190228036] +17:02:34 [ 3] [ 6] [310000] +17:02:34 [ 4] [ 12] [000000000000] +17:02:34 [ 7] [ 10] [0320171021] +17:02:34 [ 11] [ 6] [999968] +17:02:34 [ 12] [ 6] [171021] +17:02:34 [ 13] [ 4] [0320] +17:02:34 [ 15] [ 4] [0320] +17:02:34 [ 18] [ 4] [6011] +17:02:34 [ 22] [ 3] [900] +17:02:34 [ 32] [ 6] [220699] +17:02:34 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:02:34 [ 37] [ 12] [507900281370] +17:02:34 [ 38] [ 6] [999968] +17:02:34 [ 39] [ 2] [03] +17:02:34 [ 41] [ 8] [10000100] +17:02:34 [ 49] [ 3] [418] +17:02:34 [ 54] [ 0] [] +17:02:34 ============================================================================ +17:02:34 Sending to : +17:02:34 ============================================================================ +17:02:34 + + +waiting on router queue for slot.... +17:02:35 ============================================================================ +17:02:35 Slot Id : <460> +17:02:35 Transaction Type : REQUEST +17:02:35 Received From : +17:02:35 ============================================================================ +17:02:35 FNo. Len. Field Value +17:02:35 ============================================================================ +17:02:35 [ 1] [ 4] [0800] +17:02:35 [ 7] [ 10] [0321001424] +17:02:35 [ 11] [ 6] [171424] +17:02:35 [ 37] [ 12] [57917171424] +17:02:35 [ 70] [ 3] [301] +17:02:35 ============================================================================ +17:02:35 + + +waiting on router queue for slot.... +17:02:35 Sending to : +17:02:35 ============================================================================ +17:02:35 ============================================================================ +17:02:35 Slot Id : <460> +17:02:35 Transaction Type : RESPONSE +17:02:35 Received From : +17:02:35 ============================================================================ +17:02:35 FNo. Len. Field Value +17:02:35 ============================================================================ +17:02:35 [ 1] [ 4] [0810] +17:02:35 [ 7] [ 10] [0321001424] +17:02:35 [ 11] [ 6] [171424] +17:02:35 [ 37] [ 12] [579171714240] +17:02:35 [ 39] [ 2] [00] +17:02:35 [ 70] [ 3] [810] +17:02:35 ============================================================================ +17:02:35 Calculate Source COMM Id = 6 +17:02:35 ============================================================================ +17:02:35 + + +waiting on router queue for slot.... +17:02:35 ============================================================================ +17:02:35 Slot Id : <440> +17:02:35 Transaction Type : RESPONSE +17:02:35 Received From : +17:02:35 ============================================================================ +17:02:35 FNo. Len. Field Value +17:02:35 ============================================================================ +17:02:35 [ 1] [ 4] [0210] +17:02:35 [ 2] [ 19] [6227003861190228036] +17:02:35 [ 3] [ 6] [310000] +17:02:35 [ 4] [ 12] [000000000000] +17:02:35 [ 7] [ 10] [0320171021] +17:02:35 [ 11] [ 6] [999968] +17:02:35 [ 12] [ 6] [171021] +17:02:35 [ 13] [ 4] [0320] +17:02:35 [ 15] [ 4] [0320] +17:02:35 [ 18] [ 4] [6011] +17:02:35 [ 22] [ 3] [900] +17:02:35 [ 32] [ 6] [220699] +17:02:35 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:02:35 [ 37] [ 12] [507900281370] +17:02:35 [ 38] [ 6] [999968] +17:02:35 [ 39] [ 2] [03] +17:02:35 [ 41] [ 8] [10000100] +17:02:35 [ 49] [ 3] [418] +17:02:35 [ 54] [ 0] [] +17:02:35 ============================================================================ +17:02:35 Calculate Source COMM Id = 1 +17:02:35 ============================================================================ +17:02:35 + + +waiting on router queue for slot.... +17:02:37 ============================================================================ +17:02:37 Slot Id : <432> +17:02:37 Transaction Type : REQUEST +17:02:37 Received From : +17:02:37 ============================================================================ +17:02:37 FNo. Len. Field Value +17:02:37 ============================================================================ +17:02:37 [ 1] [ 4] [0200] +17:02:37 [ 2] [ 16] [6688990108338201] +17:02:37 [ 3] [ 6] [302000] +17:02:37 [ 7] [ 10] [0320100143] +17:02:37 [ 11] [ 6] [270693] +17:02:37 [ 12] [ 6] [170143] +17:02:37 [ 13] [ 4] [0320] +17:02:37 [ 14] [ 4] [4406] +17:02:37 [ 15] [ 4] [0320] +17:02:37 [ 18] [ 4] [6011] +17:02:37 [ 19] [ 3] [418] +17:02:37 [ 22] [ 3] [021] +17:02:37 [ 25] [ 2] [01] +17:02:37 [ 32] [ 6] [180893] +17:02:37 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:02:37 [ 37] [ 12] [507910270693] +17:02:37 [ 41] [ 8] [0262PSLB] +17:02:37 [ 42] [ 15] [999999 ] +17:02:37 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:02:37 [ 49] [ 3] [418] +17:02:37 [ 52] [ 16] [32DDA3AFF10FBC70] +17:02:37 ============================================================================ +17:02:37 + + +waiting on router queue for slot.... +17:02:37 Sending to : +17:02:37 ============================================================================ +17:02:37 Sending to : +17:02:37 ============================================================================ +17:02:37 ============================================================================ +17:02:37 Slot Id : <495> +17:02:37 Transaction Type : REQUEST +17:02:37 Received From : +17:02:37 ============================================================================ +17:02:37 FNo. Len. Field Value +17:02:37 ============================================================================ +17:02:37 [ 1] [ 4] [0800] +17:02:37 [ 2] [ 5] [02531] +17:02:37 [ 3] [ 6] [579178] +17:02:37 [ 7] [ 10] [0320100237] +17:02:37 [ 11] [ 6] [807401] +17:02:37 [ 15] [ 10] [0320100237] +17:02:37 [ 37] [ 11] [57917807401] +17:02:37 [ 70] [ 3] [001] +17:02:37 ============================================================================ +17:02:37 + + +waiting on router queue for slot.... +17:02:37 ============================================================================ +17:02:37 Slot Id : <495> +17:02:37 Transaction Type : RESPONSE +17:02:37 Received From : +17:02:37 ============================================================================ +17:02:37 FNo. Len. Field Value +17:02:37 ============================================================================ +17:02:37 [ 1] [ 4] [0810] +17:02:37 [ 7] [ 10] [0320100237] +17:02:37 [ 11] [ 6] [807401] +17:02:37 [ 15] [ 4] [0320] +17:02:37 [ 37] [ 12] [57917807401] +17:02:37 [ 39] [ 2] [00] +17:02:37 [ 70] [ 3] [001] +17:02:37 ============================================================================ +17:02:37 Sending to : +17:02:37 ============================================================================ +17:02:37 + + +waiting on router queue for slot.... +17:02:37 ============================================================================ +17:02:37 Slot Id : <432> +17:02:37 Transaction Type : REQUEST +17:02:37 Received From : +17:02:37 ============================================================================ +17:02:37 FNo. Len. Field Value +17:02:37 ============================================================================ +17:02:37 [ 1] [ 4] [0200] +17:02:37 [ 2] [ 16] [6688990108338201] +17:02:37 [ 3] [ 6] [302000] +17:02:37 [ 7] [ 10] [0320100143] +17:02:37 [ 11] [ 6] [270693] +17:02:37 [ 12] [ 6] [170143] +17:02:37 [ 13] [ 4] [0320] +17:02:37 [ 14] [ 4] [4406] +17:02:37 [ 15] [ 4] [0320] +17:02:37 [ 18] [ 4] [6011] +17:02:37 [ 19] [ 3] [418] +17:02:37 [ 22] [ 3] [021] +17:02:37 [ 25] [ 2] [01] +17:02:37 [ 32] [ 6] [180893] +17:02:37 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:02:37 [ 37] [ 12] [507910270693] +17:02:37 [ 41] [ 8] [0262PSLB] +17:02:37 [ 42] [ 15] [999999 ] +17:02:37 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:02:37 [ 49] [ 3] [418] +17:02:37 [ 52] [ 16] [32DDA3AFF10FBC70] +17:02:37 ============================================================================ +17:02:37 + + +waiting on router queue for slot.... +17:02:37 Sending to : +17:02:37 ============================================================================ +17:02:37 ============================================================================ +17:02:37 Slot Id : <432> +17:02:37 Transaction Type : REQUEST +17:02:37 Received From : +17:02:37 ============================================================================ +17:02:37 FNo. Len. Field Value +17:02:37 ============================================================================ +17:02:37 [ 1] [ 4] [0200] +17:02:37 [ 2] [ 16] [6688990108338201] +17:02:37 [ 3] [ 6] [302000] +17:02:37 [ 7] [ 10] [0320100143] +17:02:37 [ 11] [ 6] [270693] +17:02:37 [ 12] [ 6] [170143] +17:02:37 [ 13] [ 4] [0320] +17:02:37 [ 14] [ 4] [4406] +17:02:37 [ 15] [ 4] [0320] +17:02:37 [ 18] [ 4] [6011] +17:02:37 [ 19] [ 3] [418] +17:02:37 [ 22] [ 3] [021] +17:02:37 [ 25] [ 2] [01] +17:02:37 [ 32] [ 6] [180893] +17:02:37 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:02:37 [ 37] [ 12] [507910270693] +17:02:37 [ 41] [ 8] [0262PSLB] +17:02:37 [ 42] [ 15] [999999 ] +17:02:37 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:02:37 [ 49] [ 3] [418] +17:02:37 [ 52] [ 16] [404F28AA26527D74] +17:02:37 ============================================================================ +17:02:37 + + +waiting on router queue for slot.... +17:02:37 Sending to : <0> +17:02:37 ============================================================================ +17:02:38 ============================================================================ +17:02:38 Slot Id : <432> +17:02:38 Transaction Type : RESPONSE +17:02:38 Received From : +17:02:38 ============================================================================ +17:02:38 FNo. Len. Field Value +17:02:38 ============================================================================ +17:02:38 [ 1] [ 4] [0210] +17:02:38 [ 2] [ 16] [6688990108338201] +17:02:38 [ 3] [ 6] [302000] +17:02:38 [ 4] [ 12] [000000000000] +17:02:38 [ 7] [ 10] [0320100143] +17:02:38 [ 11] [ 6] [270693] +17:02:38 [ 12] [ 6] [170143] +17:02:38 [ 13] [ 4] [0320] +17:02:38 [ 15] [ 4] [0320] +17:02:38 [ 18] [ 4] [6011] +17:02:38 [ 19] [ 3] [418] +17:02:38 [ 22] [ 3] [021] +17:02:38 [ 32] [ 6] [180893] +17:02:38 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:02:38 [ 37] [ 12] [507910270693] +17:02:38 [ 39] [ 2] [14] +17:02:38 [ 41] [ 8] [0262PSLB] +17:02:38 [ 49] [ 3] [418] +17:02:38 ============================================================================ +17:02:38 Sending to : +17:02:38 ============================================================================ +17:02:38 + + +waiting on router queue for slot.... +17:02:39 ============================================================================ +17:02:39 Slot Id : <449> +17:02:39 Transaction Type : REQUEST +17:02:39 Received From : +17:02:39 ============================================================================ +17:02:39 FNo. Len. Field Value +17:02:39 ============================================================================ +17:02:39 [ 1] [ 4] [0200] +17:02:39 [ 2] [ 16] [6688990103291306] +17:02:39 [ 3] [ 6] [300000] +17:02:39 [ 4] [ 12] [000000000000] +17:02:39 [ 7] [ 10] [0320170234] +17:02:39 [ 11] [ 6] [808960] +17:02:39 [ 12] [ 6] [170234] +17:02:39 [ 13] [ 4] [0320] +17:02:39 [ 15] [ 4] [0320] +17:02:39 [ 18] [ 4] [6011] +17:02:39 [ 22] [ 3] [900] +17:02:39 [ 25] [ 2] [02] +17:02:39 [ 28] [ 9] [D00000000] +17:02:39 [ 32] [ 6] [621354] +17:02:39 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:02:39 [ 37] [ 12] [507903499642] +17:02:39 [ 41] [ 8] [06002200] +17:02:39 [ 42] [ 15] [NATIVE ] +17:02:39 [ 43] [ 40] [Beng Market Beng LAO] +17:02:39 [ 49] [ 3] [418] +17:02:39 [ 52] [ 16] [38E4519FF4022ECA] +17:02:39 ============================================================================ +17:02:39 + + +waiting on router queue for slot.... +17:02:39 Sending to : +17:02:39 ============================================================================ +17:02:39 Sending to : +17:02:39 ============================================================================ +17:02:39 ============================================================================ +17:02:39 Slot Id : <449> +17:02:39 Transaction Type : REQUEST +17:02:39 Received From : +17:02:39 ============================================================================ +17:02:39 FNo. Len. Field Value +17:02:39 ============================================================================ +17:02:39 [ 1] [ 4] [0200] +17:02:39 [ 2] [ 16] [6688990103291306] +17:02:39 [ 3] [ 6] [300000] +17:02:39 [ 4] [ 12] [000000000000] +17:02:39 [ 7] [ 10] [0320170234] +17:02:39 [ 11] [ 6] [808960] +17:02:39 [ 12] [ 6] [170234] +17:02:39 [ 13] [ 4] [0320] +17:02:39 [ 15] [ 4] [0320] +17:02:39 [ 18] [ 4] [6011] +17:02:39 [ 22] [ 3] [900] +17:02:39 [ 25] [ 2] [02] +17:02:39 [ 28] [ 9] [D00000000] +17:02:39 [ 32] [ 6] [621354] +17:02:39 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:02:39 [ 37] [ 12] [507903499642] +17:02:39 [ 41] [ 8] [06002200] +17:02:39 [ 42] [ 15] [NATIVE ] +17:02:39 [ 43] [ 40] [Beng Market Beng LAO] +17:02:39 [ 49] [ 3] [418] +17:02:39 [ 52] [ 16] [38E4519FF4022ECA] +17:02:39 ============================================================================ +17:02:39 + + +waiting on router queue for slot.... +17:02:39 Sending to : +17:02:39 ============================================================================ +17:02:39 ============================================================================ +17:02:39 Slot Id : <449> +17:02:39 Transaction Type : REQUEST +17:02:39 Received From : +17:02:39 ============================================================================ +17:02:39 FNo. Len. Field Value +17:02:39 ============================================================================ +17:02:39 [ 1] [ 4] [0200] +17:02:39 [ 2] [ 16] [6688990103291306] +17:02:39 [ 3] [ 6] [300000] +17:02:39 [ 4] [ 12] [000000000000] +17:02:39 [ 7] [ 10] [0320170234] +17:02:39 [ 11] [ 6] [808960] +17:02:39 [ 12] [ 6] [170234] +17:02:39 [ 13] [ 4] [0320] +17:02:39 [ 15] [ 4] [0320] +17:02:39 [ 18] [ 4] [6011] +17:02:39 [ 22] [ 3] [900] +17:02:39 [ 25] [ 2] [02] +17:02:39 [ 28] [ 9] [D00000000] +17:02:39 [ 32] [ 6] [621354] +17:02:39 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:02:39 [ 37] [ 12] [507903499642] +17:02:39 [ 41] [ 8] [06002200] +17:02:39 [ 42] [ 15] [NATIVE ] +17:02:39 [ 43] [ 40] [Beng Market Beng LAO] +17:02:39 [ 49] [ 3] [418] +17:02:39 [ 52] [ 16] [607F46DA2443E332] +17:02:39 ============================================================================ +17:02:39 + + +waiting on router queue for slot.... +17:02:39 Sending to : <4> +17:02:39 ============================================================================ +17:02:40 ============================================================================ +17:02:40 Slot Id : <432> +17:02:40 Transaction Type : RESPONSE +17:02:40 Received From : +17:02:40 ============================================================================ +17:02:40 FNo. Len. Field Value +17:02:40 ============================================================================ +17:02:40 [ 1] [ 4] [0210] +17:02:40 [ 2] [ 16] [6688990108338201] +17:02:40 [ 3] [ 6] [302000] +17:02:40 [ 4] [ 12] [000000000000] +17:02:40 [ 7] [ 10] [0320100143] +17:02:40 [ 11] [ 6] [270693] +17:02:40 [ 12] [ 6] [170143] +17:02:40 [ 13] [ 4] [0320] +17:02:40 [ 15] [ 4] [0320] +17:02:40 [ 18] [ 4] [6011] +17:02:40 [ 19] [ 3] [418] +17:02:40 [ 22] [ 3] [021] +17:02:40 [ 32] [ 6] [180893] +17:02:40 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:02:40 [ 37] [ 12] [507910270693] +17:02:40 [ 39] [ 2] [14] +17:02:40 [ 41] [ 8] [0262PSLB] +17:02:40 [ 49] [ 3] [418] +17:02:40 ============================================================================ +17:02:40 Calculate Source COMM Id = 2 +17:02:40 ============================================================================ +17:02:40 + + +waiting on router queue for slot.... +17:02:40 ============================================================================ +17:02:40 Slot Id : <482> +17:02:40 Transaction Type : REQUEST +17:02:40 Received From : +17:02:40 ============================================================================ +17:02:40 FNo. Len. Field Value +17:02:40 ============================================================================ +17:02:40 [ 1] [ 4] [0800] +17:02:40 [ 7] [ 10] [0320100147] +17:02:40 [ 11] [ 6] [157363] +17:02:40 [ 70] [ 3] [301] +17:02:40 ============================================================================ +17:02:40 + + +waiting on router queue for slot.... +17:02:40 Sending to : +17:02:40 ============================================================================ +17:02:40 ============================================================================ +17:02:40 Slot Id : <482> +17:02:40 Transaction Type : RESPONSE +17:02:40 Received From : +17:02:40 ============================================================================ +17:02:40 FNo. Len. Field Value +17:02:40 ============================================================================ +17:02:40 [ 1] [ 4] [0810] +17:02:40 [ 7] [ 10] [0320100147] +17:02:40 [ 11] [ 6] [157363] +17:02:40 [ 39] [ 2] [00] +17:02:40 [ 70] [ 3] [301] +17:02:40 ============================================================================ +17:02:40 Calculate Source COMM Id = 2 +17:02:40 ============================================================================ +17:02:40 + + +waiting on router queue for slot.... +17:02:40 ============================================================================ +17:02:40 Slot Id : <449> +17:02:40 Transaction Type : RESPONSE +17:02:40 Received From : +17:02:40 ============================================================================ +17:02:40 FNo. Len. Field Value +17:02:40 ============================================================================ +17:02:40 [ 1] [ 4] [0210] +17:02:40 [ 2] [ 16] [6688990103291306] +17:02:40 [ 3] [ 6] [300000] +17:02:40 [ 4] [ 12] [000000000000] +17:02:40 [ 11] [ 6] [808960] +17:02:40 [ 12] [ 6] [170234] +17:02:40 [ 15] [ 4] [0320] +17:02:40 [ 18] [ 4] [6011] +17:02:40 [ 32] [ 6] [621354] +17:02:40 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:02:40 [ 37] [ 12] [507903499642] +17:02:40 [ 38] [ 6] [691008] +17:02:40 [ 39] [ 2] [00] +17:02:40 [ 41] [ 8] [06002200] +17:02:40 [ 49] [ 3] [418] +17:02:40 [ 54] [ 20] [0002418C000016902559] +17:02:40 ============================================================================ +17:02:40 Sending to : +17:02:40 ============================================================================ +17:02:40 + + +waiting on router queue for slot.... +17:02:42 ============================================================================ +17:02:42 Slot Id : <449> +17:02:42 Transaction Type : RESPONSE +17:02:42 Received From : +17:02:42 ============================================================================ +17:02:42 FNo. Len. Field Value +17:02:42 ============================================================================ +17:02:42 [ 1] [ 4] [0210] +17:02:42 [ 2] [ 16] [6688990103291306] +17:02:42 [ 3] [ 6] [300000] +17:02:42 [ 4] [ 12] [000000000000] +17:02:42 [ 11] [ 6] [808960] +17:02:42 [ 12] [ 6] [170234] +17:02:42 [ 15] [ 4] [0320] +17:02:42 [ 18] [ 4] [6011] +17:02:42 [ 32] [ 6] [621354] +17:02:42 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:02:42 [ 37] [ 12] [507903499642] +17:02:42 [ 38] [ 6] [691008] +17:02:42 [ 39] [ 2] [00] +17:02:42 [ 41] [ 8] [06002200] +17:02:42 [ 49] [ 3] [418] +17:02:42 [ 54] [ 20] [0002418C000016902559] +17:02:42 ============================================================================ +17:02:42 Calculate Source COMM Id = 0 +17:02:42 ============================================================================ +17:02:42 + + +waiting on router queue for slot.... +17:02:50 ============================================================================ +17:02:50 Slot Id : <488> +17:02:50 Transaction Type : REQUEST +17:02:50 Received From : +17:02:50 ============================================================================ +17:02:50 FNo. Len. Field Value +17:02:50 ============================================================================ +17:02:50 [ 1] [ 4] [0800] +17:02:50 [ 7] [ 10] [0320100157] +17:02:50 [ 11] [ 6] [157364] +17:02:50 [ 70] [ 3] [301] +17:02:50 ============================================================================ +17:02:50 + + +waiting on router queue for slot.... +17:02:50 Sending to : +17:02:50 ============================================================================ +17:02:50 ============================================================================ +17:02:50 Slot Id : <488> +17:02:50 Transaction Type : RESPONSE +17:02:50 Received From : +17:02:50 ============================================================================ +17:02:50 FNo. Len. Field Value +17:02:50 ============================================================================ +17:02:50 [ 1] [ 4] [0810] +17:02:50 [ 7] [ 10] [0320100157] +17:02:50 [ 11] [ 6] [157364] +17:02:50 [ 39] [ 2] [00] +17:02:50 [ 70] [ 3] [301] +17:02:50 ============================================================================ +17:02:50 Calculate Source COMM Id = 2 +17:02:50 ============================================================================ +17:02:50 + + +waiting on router queue for slot.... +17:02:52 ============================================================================ +17:02:52 Slot Id : <453> +17:02:52 Transaction Type : REQUEST +17:02:52 Received From : +17:02:52 ============================================================================ +17:02:52 FNo. Len. Field Value +17:02:52 ============================================================================ +17:02:52 [ 1] [ 4] [0200] +17:02:52 [ 2] [ 16] [6213544002251053] +17:02:52 [ 3] [ 6] [010000] +17:02:52 [ 4] [ 12] [000050000000] +17:02:52 [ 7] [ 10] [0320170042] +17:02:52 [ 11] [ 6] [952783] +17:02:52 [ 12] [ 6] [170042] +17:02:52 [ 13] [ 4] [0320] +17:02:52 [ 15] [ 4] [0320] +17:02:52 [ 18] [ 4] [6011] +17:02:52 [ 19] [ 3] [418] +17:02:52 [ 22] [ 3] [021] +17:02:52 [ 25] [ 2] [01] +17:02:52 [ 28] [ 9] [D00002000] +17:02:52 [ 32] [ 6] [668899] +17:02:52 [ 35] [ 32] [6213544002251053=491212015105684] +17:02:52 [ 37] [ 12] [507902025651] +17:02:52 [ 41] [ 8] [03414002] +17:02:52 [ 42] [ 15] [APT ] +17:02:52 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:02:52 [ 49] [ 3] [418] +17:02:52 [ 52] [ 16] [2B895302592F33C0] +17:02:52 ============================================================================ +17:02:52 + + +waiting on router queue for slot.... +17:02:52 Sending to : +17:02:52 ============================================================================ +17:02:52 Sending to : +17:02:52 ============================================================================ +17:02:52 ============================================================================ +17:02:52 Slot Id : <453> +17:02:52 Transaction Type : REQUEST +17:02:52 Received From : +17:02:52 ============================================================================ +17:02:52 FNo. Len. Field Value +17:02:52 ============================================================================ +17:02:52 [ 1] [ 4] [0200] +17:02:52 [ 2] [ 16] [6213544002251053] +17:02:52 [ 3] [ 6] [010000] +17:02:52 [ 4] [ 12] [000050000000] +17:02:52 [ 7] [ 10] [0320170042] +17:02:52 [ 11] [ 6] [952783] +17:02:52 [ 12] [ 6] [170042] +17:02:52 [ 13] [ 4] [0320] +17:02:52 [ 15] [ 4] [0320] +17:02:52 [ 18] [ 4] [6011] +17:02:52 [ 19] [ 3] [418] +17:02:52 [ 22] [ 3] [021] +17:02:52 [ 25] [ 2] [01] +17:02:52 [ 28] [ 9] [D00002000] +17:02:52 [ 32] [ 6] [668899] +17:02:52 [ 35] [ 32] [6213544002251053=491212015105684] +17:02:52 [ 37] [ 12] [507902025651] +17:02:52 [ 41] [ 8] [03414002] +17:02:52 [ 42] [ 15] [APT ] +17:02:52 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:02:52 [ 49] [ 3] [418] +17:02:52 [ 52] [ 16] [2B895302592F33C0] +17:02:52 ============================================================================ +17:02:52 + + +waiting on router queue for slot.... +17:02:52 Sending to : +17:02:52 ============================================================================ +17:02:52 ============================================================================ +17:02:52 Slot Id : <453> +17:02:52 Transaction Type : REQUEST +17:02:52 Received From : +17:02:52 ============================================================================ +17:02:52 FNo. Len. Field Value +17:02:52 ============================================================================ +17:02:52 [ 1] [ 4] [0200] +17:02:52 [ 2] [ 16] [6213544002251053] +17:02:52 [ 3] [ 6] [010000] +17:02:52 [ 4] [ 12] [000050000000] +17:02:52 [ 7] [ 10] [0320170042] +17:02:52 [ 11] [ 6] [952783] +17:02:52 [ 12] [ 6] [170042] +17:02:52 [ 13] [ 4] [0320] +17:02:52 [ 15] [ 4] [0320] +17:02:52 [ 18] [ 4] [6011] +17:02:52 [ 19] [ 3] [418] +17:02:52 [ 22] [ 3] [021] +17:02:52 [ 25] [ 2] [01] +17:02:52 [ 28] [ 9] [D00002000] +17:02:52 [ 32] [ 6] [668899] +17:02:52 [ 35] [ 32] [6213544002251053=491212015105684] +17:02:52 [ 37] [ 12] [507902025651] +17:02:52 [ 41] [ 8] [03414002] +17:02:52 [ 42] [ 15] [APT ] +17:02:52 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:02:52 [ 49] [ 3] [418] +17:02:52 [ 52] [ 16] [51323C237043CF5C] +17:02:52 ============================================================================ +17:02:52 + + +waiting on router queue for slot.... +17:02:52 Sending to : <0> +17:02:52 ============================================================================ +17:02:53 ============================================================================ +17:02:53 Slot Id : <470> +17:02:53 Transaction Type : REQUEST +17:02:53 Received From : +17:02:53 ============================================================================ +17:02:53 FNo. Len. Field Value +17:02:53 ============================================================================ +17:02:53 [ 1] [ 4] [0200] +17:02:53 [ 2] [ 16] [6213544002235346] +17:02:53 [ 3] [ 6] [010000] +17:02:53 [ 4] [ 12] [000020000000] +17:02:53 [ 7] [ 10] [0320170043] +17:02:53 [ 11] [ 6] [952784] +17:02:53 [ 12] [ 6] [170043] +17:02:53 [ 13] [ 4] [0320] +17:02:53 [ 15] [ 4] [0320] +17:02:53 [ 18] [ 4] [6011] +17:02:53 [ 19] [ 3] [418] +17:02:53 [ 22] [ 3] [021] +17:02:53 [ 25] [ 2] [01] +17:02:53 [ 28] [ 9] [D00002000] +17:02:53 [ 32] [ 6] [668899] +17:02:53 [ 35] [ 32] [6213544002235346=491212013534615] +17:02:53 [ 37] [ 12] [507900305062] +17:02:53 [ 41] [ 8] [03013001] +17:02:53 [ 42] [ 15] [APT ] +17:02:53 [ 43] [ 40] [ KAM OFFICE THAKHAK DIKAM ] +17:02:53 [ 49] [ 3] [418] +17:02:53 [ 52] [ 16] [245D1D2738AA40BC] +17:02:53 ============================================================================ +17:02:53 + + +waiting on router queue for slot.... +17:02:53 Sending to : +17:02:53 ============================================================================ +17:02:53 Sending to : +17:02:53 ============================================================================ +17:02:53 ============================================================================ +17:02:53 Slot Id : <453> +17:02:53 Transaction Type : RESPONSE +17:02:53 Received From : +17:02:53 ============================================================================ +17:02:53 FNo. Len. Field Value +17:02:53 ============================================================================ +17:02:53 [ 1] [ 4] [0210] +17:02:53 [ 2] [ 16] [6213544002251053] +17:02:53 [ 3] [ 6] [010000] +17:02:53 [ 4] [ 12] [000050000000] +17:02:53 [ 7] [ 10] [0320170042] +17:02:53 [ 11] [ 6] [952783] +17:02:53 [ 12] [ 6] [170042] +17:02:53 [ 13] [ 4] [0320] +17:02:53 [ 15] [ 4] [0320] +17:02:53 [ 18] [ 4] [6011] +17:02:53 [ 19] [ 3] [418] +17:02:53 [ 32] [ 6] [668899] +17:02:53 [ 35] [ 32] [6213544002251053=491212015105684] +17:02:53 [ 37] [ 12] [507902025651] +17:02:53 [ 38] [ 6] [884668] +17:02:53 [ 39] [ 2] [00] +17:02:53 [ 41] [ 8] [03414002] +17:02:53 [ 49] [ 3] [418] +17:02:53 [ 54] [ 40] [0001418C0000111692300002418C000011169230] +17:02:53 ============================================================================ +17:02:53 Sending to : +17:02:53 ============================================================================ +17:02:53 + + +waiting on router queue for slot.... +17:02:53 ============================================================================ +17:02:53 Slot Id : <470> +17:02:53 Transaction Type : REQUEST +17:02:53 Received From : +17:02:53 ============================================================================ +17:02:53 FNo. Len. Field Value +17:02:53 ============================================================================ +17:02:53 [ 1] [ 4] [0200] +17:02:53 [ 2] [ 16] [6213544002235346] +17:02:53 [ 3] [ 6] [010000] +17:02:53 [ 4] [ 12] [000020000000] +17:02:53 [ 7] [ 10] [0320170043] +17:02:53 [ 11] [ 6] [952784] +17:02:53 [ 12] [ 6] [170043] +17:02:53 [ 13] [ 4] [0320] +17:02:53 [ 15] [ 4] [0320] +17:02:53 [ 18] [ 4] [6011] +17:02:53 [ 19] [ 3] [418] +17:02:53 [ 22] [ 3] [021] +17:02:53 [ 25] [ 2] [01] +17:02:53 [ 28] [ 9] [D00002000] +17:02:53 [ 32] [ 6] [668899] +17:02:53 [ 35] [ 32] [6213544002235346=491212013534615] +17:02:53 [ 37] [ 12] [507900305062] +17:02:53 [ 41] [ 8] [03013001] +17:02:53 [ 42] [ 15] [APT ] +17:02:53 [ 43] [ 40] [ KAM OFFICE THAKHAK DIKAM ] +17:02:53 [ 49] [ 3] [418] +17:02:53 [ 52] [ 16] [245D1D2738AA40BC] +17:02:53 ============================================================================ +17:02:53 + + +waiting on router queue for slot.... +17:02:53 Sending to : +17:02:53 ============================================================================ +17:02:53 ============================================================================ +17:02:53 Slot Id : <470> +17:02:53 Transaction Type : REQUEST +17:02:53 Received From : +17:02:53 ============================================================================ +17:02:53 FNo. Len. Field Value +17:02:53 ============================================================================ +17:02:53 [ 1] [ 4] [0200] +17:02:53 [ 2] [ 16] [6213544002235346] +17:02:53 [ 3] [ 6] [010000] +17:02:53 [ 4] [ 12] [000020000000] +17:02:53 [ 7] [ 10] [0320170043] +17:02:53 [ 11] [ 6] [952784] +17:02:53 [ 12] [ 6] [170043] +17:02:53 [ 13] [ 4] [0320] +17:02:53 [ 15] [ 4] [0320] +17:02:53 [ 18] [ 4] [6011] +17:02:53 [ 19] [ 3] [418] +17:02:53 [ 22] [ 3] [021] +17:02:53 [ 25] [ 2] [01] +17:02:53 [ 28] [ 9] [D00002000] +17:02:53 [ 32] [ 6] [668899] +17:02:53 [ 35] [ 32] [6213544002235346=491212013534615] +17:02:53 [ 37] [ 12] [507900305062] +17:02:53 [ 41] [ 8] [03013001] +17:02:53 [ 42] [ 15] [APT ] +17:02:53 [ 43] [ 40] [ KAM OFFICE THAKHAK DIKAM ] +17:02:53 [ 49] [ 3] [418] +17:02:53 [ 52] [ 16] [0841C4EA0ED484F4] +17:02:53 ============================================================================ +17:02:53 + + +waiting on router queue for slot.... +17:02:53 Sending to : <0> +17:02:53 ============================================================================ +17:02:54 ============================================================================ +17:02:54 Slot Id : <470> +17:02:54 Transaction Type : RESPONSE +17:02:54 Received From : +17:02:54 ============================================================================ +17:02:54 FNo. Len. Field Value +17:02:54 ============================================================================ +17:02:54 [ 1] [ 4] [0210] +17:02:54 [ 2] [ 16] [6213544002235346] +17:02:54 [ 3] [ 6] [010000] +17:02:54 [ 4] [ 12] [000020000000] +17:02:54 [ 7] [ 10] [0320170043] +17:02:54 [ 11] [ 6] [952784] +17:02:54 [ 12] [ 6] [170043] +17:02:54 [ 13] [ 4] [0320] +17:02:54 [ 15] [ 4] [0320] +17:02:54 [ 18] [ 4] [6011] +17:02:54 [ 19] [ 3] [418] +17:02:54 [ 32] [ 6] [668899] +17:02:54 [ 35] [ 32] [6213544002235346=491212013534615] +17:02:54 [ 37] [ 12] [507900305062] +17:02:54 [ 38] [ 6] [688009] +17:02:54 [ 39] [ 2] [00] +17:02:54 [ 41] [ 8] [03013001] +17:02:54 [ 49] [ 3] [418] +17:02:54 [ 54] [ 40] [0001418C0001493000000002418C000149300000] +17:02:54 ============================================================================ +17:02:54 Sending to : +17:02:54 ============================================================================ +17:02:54 + + +waiting on router queue for slot.... +17:02:54 ============================================================================ +17:02:54 Slot Id : <484> +17:02:54 Transaction Type : REQUEST +17:02:54 Received From : +17:02:54 ============================================================================ +17:02:54 FNo. Len. Field Value +17:02:54 ============================================================================ +17:02:54 [ 1] [ 4] [0200] +17:02:54 [ 2] [ 16] [6213544001853156] +17:02:54 [ 3] [ 6] [012000] +17:02:54 [ 4] [ 12] [000040000000] +17:02:54 [ 7] [ 10] [0320171041] +17:02:54 [ 11] [ 6] [242354] +17:02:54 [ 12] [ 6] [171041] +17:02:54 [ 13] [ 4] [0320] +17:02:54 [ 14] [ 4] [4912] +17:02:54 [ 15] [ 4] [0320] +17:02:54 [ 18] [ 4] [6011] +17:02:54 [ 22] [ 3] [900] +17:02:54 [ 25] [ 2] [02] +17:02:54 [ 28] [ 9] [D00002000] +17:02:54 [ 32] [ 6] [220699] +17:02:54 [ 35] [ 32] [6213544001853156=491212015315272] +17:02:54 [ 37] [ 12] [507900341595] +17:02:54 [ 41] [ 8] [01002000] +17:02:54 [ 42] [ 15] [APTRA ] +17:02:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:02:54 [ 49] [ 3] [418] +17:02:54 [ 52] [ 16] [C16892CDD7C73801] +17:02:54 ============================================================================ +17:02:54 + + +waiting on router queue for slot.... +17:02:54 Sending to : +17:02:54 ============================================================================ +17:02:54 Sending to : +17:02:54 ============================================================================ +17:02:54 ============================================================================ +17:02:54 Slot Id : <453> +17:02:54 Transaction Type : RESPONSE +17:02:54 Received From : +17:02:54 ============================================================================ +17:02:54 FNo. Len. Field Value +17:02:54 ============================================================================ +17:02:54 [ 1] [ 4] [0210] +17:02:54 [ 2] [ 16] [6213544002251053] +17:02:54 [ 3] [ 6] [010000] +17:02:54 [ 4] [ 12] [000050000000] +17:02:54 [ 7] [ 10] [0320170042] +17:02:54 [ 11] [ 6] [952783] +17:02:54 [ 12] [ 6] [170042] +17:02:54 [ 13] [ 4] [0320] +17:02:54 [ 15] [ 4] [0320] +17:02:54 [ 18] [ 4] [6011] +17:02:54 [ 19] [ 3] [418] +17:02:54 [ 32] [ 6] [668899] +17:02:54 [ 35] [ 32] [6213544002251053=491212015105684] +17:02:54 [ 37] [ 12] [507902025651] +17:02:54 [ 38] [ 6] [884668] +17:02:54 [ 39] [ 2] [00] +17:02:54 [ 41] [ 8] [03414002] +17:02:54 [ 49] [ 3] [418] +17:02:54 [ 54] [ 40] [0001418C0000111692300002418C000011169230] +17:02:54 ============================================================================ +17:02:54 Calculate Source COMM Id = 4 +17:02:54 ============================================================================ +17:02:54 + + +waiting on router queue for slot.... +17:02:54 ============================================================================ +17:02:54 Slot Id : <484> +17:02:54 Transaction Type : REQUEST +17:02:54 Received From : +17:02:54 ============================================================================ +17:02:54 FNo. Len. Field Value +17:02:54 ============================================================================ +17:02:54 [ 1] [ 4] [0200] +17:02:54 [ 2] [ 16] [6213544001853156] +17:02:54 [ 3] [ 6] [012000] +17:02:54 [ 4] [ 12] [000040000000] +17:02:54 [ 7] [ 10] [0320171041] +17:02:54 [ 11] [ 6] [242354] +17:02:54 [ 12] [ 6] [171041] +17:02:54 [ 13] [ 4] [0320] +17:02:54 [ 14] [ 4] [4912] +17:02:54 [ 15] [ 4] [0320] +17:02:54 [ 18] [ 4] [6011] +17:02:54 [ 22] [ 3] [900] +17:02:54 [ 25] [ 2] [02] +17:02:54 [ 28] [ 9] [D00002000] +17:02:54 [ 32] [ 6] [220699] +17:02:54 [ 35] [ 32] [6213544001853156=491212015315272] +17:02:54 [ 37] [ 12] [507900341595] +17:02:54 [ 41] [ 8] [01002000] +17:02:54 [ 42] [ 15] [APTRA ] +17:02:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:02:54 [ 49] [ 3] [418] +17:02:54 [ 52] [ 16] [C16892CDD7C73801] +17:02:54 ============================================================================ +17:02:54 + + +waiting on router queue for slot.... +17:02:54 Sending to : +17:02:54 ============================================================================ +17:02:54 ============================================================================ +17:02:54 Slot Id : <484> +17:02:54 Transaction Type : REQUEST +17:02:54 Received From : +17:02:54 ============================================================================ +17:02:54 FNo. Len. Field Value +17:02:54 ============================================================================ +17:02:54 [ 1] [ 4] [0200] +17:02:54 [ 2] [ 16] [6213544001853156] +17:02:54 [ 3] [ 6] [012000] +17:02:54 [ 4] [ 12] [000040000000] +17:02:54 [ 7] [ 10] [0320171041] +17:02:54 [ 11] [ 6] [242354] +17:02:54 [ 12] [ 6] [171041] +17:02:54 [ 13] [ 4] [0320] +17:02:54 [ 14] [ 4] [4912] +17:02:54 [ 15] [ 4] [0320] +17:02:54 [ 18] [ 4] [6011] +17:02:54 [ 22] [ 3] [900] +17:02:54 [ 25] [ 2] [02] +17:02:54 [ 28] [ 9] [D00002000] +17:02:54 [ 32] [ 6] [220699] +17:02:54 [ 35] [ 32] [6213544001853156=491212015315272] +17:02:54 [ 37] [ 12] [507900341595] +17:02:54 [ 41] [ 8] [01002000] +17:02:54 [ 42] [ 15] [APTRA ] +17:02:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:02:54 [ 49] [ 3] [418] +17:02:54 [ 52] [ 16] [50E2CADF85917FC2] +17:02:54 ============================================================================ +17:02:54 + + +waiting on router queue for slot.... +17:02:54 Sending to : <0> +17:02:54 ============================================================================ +17:02:55 ============================================================================ +17:02:55 Slot Id : <484> +17:02:55 Transaction Type : RESPONSE +17:02:55 Received From : +17:02:55 ============================================================================ +17:02:55 FNo. Len. Field Value +17:02:55 ============================================================================ +17:02:55 [ 1] [ 4] [0210] +17:02:55 [ 2] [ 16] [6213544001853156] +17:02:55 [ 3] [ 6] [012000] +17:02:55 [ 4] [ 12] [000040000000] +17:02:55 [ 7] [ 10] [0320171041] +17:02:55 [ 11] [ 6] [242354] +17:02:55 [ 12] [ 6] [171041] +17:02:55 [ 13] [ 4] [0320] +17:02:55 [ 15] [ 4] [0320] +17:02:55 [ 18] [ 4] [6011] +17:02:55 [ 22] [ 3] [900] +17:02:55 [ 32] [ 6] [220699] +17:02:55 [ 35] [ 32] [6213544001853156=491212015315272] +17:02:55 [ 37] [ 12] [507900341595] +17:02:55 [ 38] [ 6] [170250] +17:02:55 [ 39] [ 2] [55] +17:02:55 [ 41] [ 8] [01002000] +17:02:55 [ 49] [ 3] [418] +17:02:55 ============================================================================ +17:02:55 Sending to : +17:02:55 ============================================================================ +17:02:55 + + +waiting on router queue for slot.... +17:02:56 ============================================================================ +17:02:56 Slot Id : <470> +17:02:56 Transaction Type : RESPONSE +17:02:56 Received From : +17:02:56 ============================================================================ +17:02:56 FNo. Len. Field Value +17:02:56 ============================================================================ +17:02:56 [ 1] [ 4] [0210] +17:02:56 [ 2] [ 16] [6213544002235346] +17:02:56 [ 3] [ 6] [010000] +17:02:56 [ 4] [ 12] [000020000000] +17:02:56 [ 7] [ 10] [0320170043] +17:02:56 [ 11] [ 6] [952784] +17:02:56 [ 12] [ 6] [170043] +17:02:56 [ 13] [ 4] [0320] +17:02:56 [ 15] [ 4] [0320] +17:02:56 [ 18] [ 4] [6011] +17:02:56 [ 19] [ 3] [418] +17:02:56 [ 32] [ 6] [668899] +17:02:56 [ 35] [ 32] [6213544002235346=491212013534615] +17:02:56 [ 37] [ 12] [507900305062] +17:02:56 [ 38] [ 6] [688009] +17:02:56 [ 39] [ 2] [00] +17:02:56 [ 41] [ 8] [03013001] +17:02:56 [ 49] [ 3] [418] +17:02:56 [ 54] [ 40] [0001418C0001493000000002418C000149300000] +17:02:56 ============================================================================ +17:02:56 Calculate Source COMM Id = 4 +17:02:56 ============================================================================ +17:02:56 + + +waiting on router queue for slot.... +17:02:56 ============================================================================ +17:02:56 Slot Id : <484> +17:02:56 Transaction Type : RESPONSE +17:02:56 Received From : +17:02:56 ============================================================================ +17:02:56 FNo. Len. Field Value +17:02:56 ============================================================================ +17:02:56 [ 1] [ 4] [0210] +17:02:56 [ 2] [ 16] [6213544001853156] +17:02:56 [ 3] [ 6] [012000] +17:02:56 [ 4] [ 12] [000040000000] +17:02:56 [ 7] [ 10] [0320171041] +17:02:56 [ 11] [ 6] [242354] +17:02:56 [ 12] [ 6] [171041] +17:02:56 [ 13] [ 4] [0320] +17:02:56 [ 15] [ 4] [0320] +17:02:56 [ 18] [ 4] [6011] +17:02:56 [ 22] [ 3] [900] +17:02:56 [ 32] [ 6] [220699] +17:02:56 [ 35] [ 32] [6213544001853156=491212015315272] +17:02:56 [ 37] [ 12] [507900341595] +17:02:56 [ 38] [ 6] [170250] +17:02:56 [ 39] [ 2] [55] +17:02:56 [ 41] [ 8] [01002000] +17:02:56 [ 49] [ 3] [418] +17:02:56 ============================================================================ +17:02:56 Calculate Source COMM Id = 1 +17:02:56 ============================================================================ +17:02:56 + + +waiting on router queue for slot.... +17:03:06 ============================================================================ +17:03:06 Slot Id : <463> +17:03:06 Transaction Type : REQUEST +17:03:06 Received From : +17:03:06 ============================================================================ +17:03:06 FNo. Len. Field Value +17:03:06 ============================================================================ +17:03:06 [ 1] [ 4] [0800] +17:03:06 [ 7] [ 10] [0320100213] +17:03:06 [ 11] [ 6] [157365] +17:03:06 [ 70] [ 3] [301] +17:03:06 ============================================================================ +17:03:06 + + +waiting on router queue for slot.... +17:03:06 Sending to : +17:03:06 ============================================================================ +17:03:06 ============================================================================ +17:03:06 Slot Id : <463> +17:03:06 Transaction Type : RESPONSE +17:03:06 Received From : +17:03:06 ============================================================================ +17:03:06 FNo. Len. Field Value +17:03:06 ============================================================================ +17:03:06 [ 1] [ 4] [0810] +17:03:06 [ 7] [ 10] [0320100213] +17:03:06 [ 11] [ 6] [157365] +17:03:06 [ 39] [ 2] [00] +17:03:06 [ 70] [ 3] [301] +17:03:06 ============================================================================ +17:03:06 Calculate Source COMM Id = 2 +17:03:06 ============================================================================ +17:03:06 + + +waiting on router queue for slot.... +17:03:17 ============================================================================ +17:03:17 Slot Id : <480> +17:03:17 Transaction Type : REQUEST +17:03:17 Received From : +17:03:17 ============================================================================ +17:03:17 FNo. Len. Field Value +17:03:17 ============================================================================ +17:03:17 [ 1] [ 4] [0800] +17:03:17 [ 7] [ 10] [0320100224] +17:03:17 [ 11] [ 6] [157366] +17:03:17 [ 70] [ 3] [301] +17:03:17 ============================================================================ +17:03:17 + + +waiting on router queue for slot.... +17:03:17 Sending to : +17:03:17 ============================================================================ +17:03:17 ============================================================================ +17:03:17 Slot Id : <480> +17:03:17 Transaction Type : RESPONSE +17:03:17 Received From : +17:03:17 ============================================================================ +17:03:17 FNo. Len. Field Value +17:03:17 ============================================================================ +17:03:17 [ 1] [ 4] [0810] +17:03:17 [ 7] [ 10] [0320100224] +17:03:17 [ 11] [ 6] [157366] +17:03:17 [ 39] [ 2] [00] +17:03:17 [ 70] [ 3] [301] +17:03:17 ============================================================================ +17:03:17 Calculate Source COMM Id = 2 +17:03:17 ============================================================================ +17:03:17 + + +waiting on router queue for slot.... +17:03:26 ============================================================================ +17:03:26 Slot Id : <490> +17:03:26 Transaction Type : REQUEST +17:03:26 Received From : +17:03:26 ============================================================================ +17:03:26 FNo. Len. Field Value +17:03:26 ============================================================================ +17:03:26 [ 1] [ 4] [0200] +17:03:26 [ 2] [ 16] [6688990103291306] +17:03:26 [ 3] [ 6] [010000] +17:03:26 [ 4] [ 12] [000010000000] +17:03:26 [ 7] [ 10] [0320170322] +17:03:26 [ 11] [ 6] [809179] +17:03:26 [ 12] [ 6] [170322] +17:03:26 [ 13] [ 4] [0320] +17:03:26 [ 15] [ 4] [0320] +17:03:26 [ 18] [ 4] [6011] +17:03:26 [ 22] [ 3] [900] +17:03:26 [ 25] [ 2] [02] +17:03:26 [ 28] [ 9] [D00002000] +17:03:26 [ 32] [ 6] [621354] +17:03:26 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:03:26 [ 37] [ 12] [507903499644] +17:03:26 [ 41] [ 8] [06002200] +17:03:26 [ 42] [ 15] [NATIVE ] +17:03:26 [ 43] [ 40] [Beng Market Beng LAO] +17:03:26 [ 49] [ 3] [418] +17:03:26 [ 52] [ 16] [38E4519FF4022ECA] +17:03:26 ============================================================================ +17:03:26 + + +waiting on router queue for slot.... +17:03:26 Sending to : +17:03:26 ============================================================================ +17:03:26 Sending to : +17:03:26 ============================================================================ +17:03:27 ============================================================================ +17:03:27 Slot Id : <490> +17:03:27 Transaction Type : REQUEST +17:03:27 Received From : +17:03:27 ============================================================================ +17:03:27 FNo. Len. Field Value +17:03:27 ============================================================================ +17:03:27 [ 1] [ 4] [0200] +17:03:27 [ 2] [ 16] [6688990103291306] +17:03:27 [ 3] [ 6] [010000] +17:03:27 [ 4] [ 12] [000010000000] +17:03:27 [ 7] [ 10] [0320170322] +17:03:27 [ 11] [ 6] [809179] +17:03:27 [ 12] [ 6] [170322] +17:03:27 [ 13] [ 4] [0320] +17:03:27 [ 15] [ 4] [0320] +17:03:27 [ 18] [ 4] [6011] +17:03:27 [ 22] [ 3] [900] +17:03:27 [ 25] [ 2] [02] +17:03:27 [ 28] [ 9] [D00002000] +17:03:27 [ 32] [ 6] [621354] +17:03:27 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:03:27 [ 37] [ 12] [507903499644] +17:03:27 [ 41] [ 8] [06002200] +17:03:27 [ 42] [ 15] [NATIVE ] +17:03:27 [ 43] [ 40] [Beng Market Beng LAO] +17:03:27 [ 49] [ 3] [418] +17:03:27 [ 52] [ 16] [38E4519FF4022ECA] +17:03:27 ============================================================================ +17:03:27 + + +waiting on router queue for slot.... +17:03:27 Sending to : +17:03:27 ============================================================================ +17:03:27 ============================================================================ +17:03:27 Slot Id : <490> +17:03:27 Transaction Type : REQUEST +17:03:27 Received From : +17:03:27 ============================================================================ +17:03:27 FNo. Len. Field Value +17:03:27 ============================================================================ +17:03:27 [ 1] [ 4] [0200] +17:03:27 [ 2] [ 16] [6688990103291306] +17:03:27 [ 3] [ 6] [010000] +17:03:27 [ 4] [ 12] [000010000000] +17:03:27 [ 7] [ 10] [0320170322] +17:03:27 [ 11] [ 6] [809179] +17:03:27 [ 12] [ 6] [170322] +17:03:27 [ 13] [ 4] [0320] +17:03:27 [ 15] [ 4] [0320] +17:03:27 [ 18] [ 4] [6011] +17:03:27 [ 22] [ 3] [900] +17:03:27 [ 25] [ 2] [02] +17:03:27 [ 28] [ 9] [D00002000] +17:03:27 [ 32] [ 6] [621354] +17:03:27 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:03:27 [ 37] [ 12] [507903499644] +17:03:27 [ 41] [ 8] [06002200] +17:03:27 [ 42] [ 15] [NATIVE ] +17:03:27 [ 43] [ 40] [Beng Market Beng LAO] +17:03:27 [ 49] [ 3] [418] +17:03:27 [ 52] [ 16] [607F46DA2443E332] +17:03:27 ============================================================================ +17:03:27 + + +waiting on router queue for slot.... +17:03:27 Sending to : <4> +17:03:27 ============================================================================ +17:03:28 ============================================================================ +17:03:28 Slot Id : <490> +17:03:28 Transaction Type : RESPONSE +17:03:28 Received From : +17:03:28 ============================================================================ +17:03:28 FNo. Len. Field Value +17:03:28 ============================================================================ +17:03:28 [ 1] [ 4] [0210] +17:03:28 [ 2] [ 16] [6688990103291306] +17:03:28 [ 3] [ 6] [010000] +17:03:28 [ 4] [ 12] [000010000000] +17:03:28 [ 11] [ 6] [809179] +17:03:28 [ 12] [ 6] [170322] +17:03:28 [ 15] [ 4] [0320] +17:03:28 [ 18] [ 4] [6011] +17:03:28 [ 32] [ 6] [621354] +17:03:28 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:03:28 [ 37] [ 12] [507903499644] +17:03:28 [ 38] [ 6] [166881] +17:03:28 [ 39] [ 2] [00] +17:03:28 [ 41] [ 8] [06002200] +17:03:28 [ 49] [ 3] [418] +17:03:28 [ 54] [ 20] [0002418C000006702559] +17:03:28 ============================================================================ +17:03:28 Sending to : +17:03:28 ============================================================================ +17:03:28 + + +waiting on router queue for slot.... +17:03:29 ============================================================================ +17:03:29 Slot Id : <490> +17:03:29 Transaction Type : RESPONSE +17:03:29 Received From : +17:03:29 ============================================================================ +17:03:29 FNo. Len. Field Value +17:03:29 ============================================================================ +17:03:29 [ 1] [ 4] [0210] +17:03:29 [ 2] [ 16] [6688990103291306] +17:03:29 [ 3] [ 6] [010000] +17:03:29 [ 4] [ 12] [000010000000] +17:03:29 [ 11] [ 6] [809179] +17:03:29 [ 12] [ 6] [170322] +17:03:29 [ 15] [ 4] [0320] +17:03:29 [ 18] [ 4] [6011] +17:03:29 [ 32] [ 6] [621354] +17:03:29 [ 35] [ 37] [6688990103291306=42121231130645500000] +17:03:29 [ 37] [ 12] [507903499644] +17:03:29 [ 38] [ 6] [166881] +17:03:29 [ 39] [ 2] [00] +17:03:29 [ 41] [ 8] [06002200] +17:03:29 [ 49] [ 3] [418] +17:03:29 [ 54] [ 20] [0002418C000006702559] +17:03:29 ============================================================================ +17:03:29 Calculate Source COMM Id = 0 +17:03:29 ============================================================================ +17:03:29 + + +waiting on router queue for slot.... +17:03:32 ============================================================================ +17:03:32 Slot Id : <448> +17:03:32 Transaction Type : REQUEST +17:03:32 Received From : +17:03:32 ============================================================================ +17:03:32 FNo. Len. Field Value +17:03:32 ============================================================================ +17:03:32 [ 1] [ 4] [0200] +17:03:32 [ 2] [ 16] [6213544001853156] +17:03:32 [ 3] [ 6] [311000] +17:03:32 [ 4] [ 12] [000000000000] +17:03:32 [ 7] [ 10] [0320171119] +17:03:32 [ 11] [ 6] [242357] +17:03:32 [ 12] [ 6] [171119] +17:03:32 [ 13] [ 4] [0320] +17:03:32 [ 14] [ 4] [4912] +17:03:32 [ 15] [ 4] [0320] +17:03:32 [ 18] [ 4] [6011] +17:03:32 [ 22] [ 3] [900] +17:03:32 [ 25] [ 2] [02] +17:03:32 [ 28] [ 9] [000000000] +17:03:32 [ 32] [ 6] [220699] +17:03:32 [ 35] [ 32] [6213544001853156=491212015315272] +17:03:32 [ 37] [ 12] [507900341597] +17:03:32 [ 41] [ 8] [01002000] +17:03:32 [ 42] [ 15] [APTRA ] +17:03:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:03:32 [ 49] [ 3] [418] +17:03:32 [ 52] [ 16] [9C36ACC0ACB306D6] +17:03:32 ============================================================================ +17:03:32 + + +waiting on router queue for slot.... +17:03:32 Sending to : +17:03:32 ============================================================================ +17:03:32 Sending to : +17:03:32 ============================================================================ +17:03:32 ============================================================================ +17:03:32 Slot Id : <448> +17:03:32 Transaction Type : REQUEST +17:03:32 Received From : +17:03:32 ============================================================================ +17:03:32 FNo. Len. Field Value +17:03:32 ============================================================================ +17:03:32 [ 1] [ 4] [0200] +17:03:32 [ 2] [ 16] [6213544001853156] +17:03:32 [ 3] [ 6] [311000] +17:03:32 [ 4] [ 12] [000000000000] +17:03:32 [ 7] [ 10] [0320171119] +17:03:32 [ 11] [ 6] [242357] +17:03:32 [ 12] [ 6] [171119] +17:03:32 [ 13] [ 4] [0320] +17:03:32 [ 14] [ 4] [4912] +17:03:32 [ 15] [ 4] [0320] +17:03:32 [ 18] [ 4] [6011] +17:03:32 [ 22] [ 3] [900] +17:03:32 [ 25] [ 2] [02] +17:03:32 [ 28] [ 9] [000000000] +17:03:32 [ 32] [ 6] [220699] +17:03:32 [ 35] [ 32] [6213544001853156=491212015315272] +17:03:32 [ 37] [ 12] [507900341597] +17:03:32 [ 41] [ 8] [01002000] +17:03:32 [ 42] [ 15] [APTRA ] +17:03:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:03:32 [ 49] [ 3] [418] +17:03:32 [ 52] [ 16] [9C36ACC0ACB306D6] +17:03:32 ============================================================================ +17:03:32 + + +waiting on router queue for slot.... +17:03:32 Sending to : +17:03:32 ============================================================================ +17:03:32 ============================================================================ +17:03:32 Slot Id : <448> +17:03:32 Transaction Type : REQUEST +17:03:32 Received From : +17:03:32 ============================================================================ +17:03:32 FNo. Len. Field Value +17:03:32 ============================================================================ +17:03:32 [ 1] [ 4] [0200] +17:03:32 [ 2] [ 16] [6213544001853156] +17:03:32 [ 3] [ 6] [311000] +17:03:32 [ 4] [ 12] [000000000000] +17:03:32 [ 7] [ 10] [0320171119] +17:03:32 [ 11] [ 6] [242357] +17:03:32 [ 12] [ 6] [171119] +17:03:32 [ 13] [ 4] [0320] +17:03:32 [ 14] [ 4] [4912] +17:03:32 [ 15] [ 4] [0320] +17:03:32 [ 18] [ 4] [6011] +17:03:32 [ 22] [ 3] [900] +17:03:32 [ 25] [ 2] [02] +17:03:32 [ 28] [ 9] [000000000] +17:03:32 [ 32] [ 6] [220699] +17:03:32 [ 35] [ 32] [6213544001853156=491212015315272] +17:03:32 [ 37] [ 12] [507900341597] +17:03:32 [ 41] [ 8] [01002000] +17:03:32 [ 42] [ 15] [APTRA ] +17:03:32 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:03:32 [ 49] [ 3] [418] +17:03:32 [ 52] [ 16] [E75238938C234894] +17:03:32 ============================================================================ +17:03:32 + + +waiting on router queue for slot.... +17:03:32 Sending to : <0> +17:03:32 ============================================================================ +17:03:32 ============================================================================ +17:03:32 Slot Id : <448> +17:03:32 Transaction Type : RESPONSE +17:03:32 Received From : +17:03:32 ============================================================================ +17:03:32 FNo. Len. Field Value +17:03:32 ============================================================================ +17:03:32 [ 1] [ 4] [0210] +17:03:32 [ 2] [ 16] [6213544001853156] +17:03:32 [ 3] [ 6] [311000] +17:03:32 [ 4] [ 12] [000000000000] +17:03:32 [ 7] [ 10] [0320171119] +17:03:32 [ 11] [ 6] [242357] +17:03:32 [ 12] [ 6] [171119] +17:03:32 [ 13] [ 4] [0320] +17:03:32 [ 15] [ 4] [0320] +17:03:32 [ 18] [ 4] [6011] +17:03:32 [ 32] [ 6] [220699] +17:03:32 [ 35] [ 32] [6213544001853156=491212015315272] +17:03:32 [ 37] [ 12] [507900341597] +17:03:32 [ 38] [ 6] [462666] +17:03:32 [ 39] [ 2] [00] +17:03:32 [ 41] [ 8] [01002000] +17:03:32 [ 49] [ 3] [418] +17:03:32 [ 54] [ 40] [1001418C0000554882571002418C000055488257] +17:03:32 ============================================================================ +17:03:32 Sending to : +17:03:32 ============================================================================ +17:03:32 + + +waiting on router queue for slot.... +17:03:33 ============================================================================ +17:03:33 Slot Id : <471> +17:03:33 Transaction Type : REQUEST +17:03:33 Received From : +17:03:33 ============================================================================ +17:03:33 FNo. Len. Field Value +17:03:33 ============================================================================ +17:03:33 [ 1] [ 4] [0800] +17:03:33 [ 7] [ 10] [0320100240] +17:03:33 [ 11] [ 6] [157367] +17:03:33 [ 70] [ 3] [301] +17:03:33 ============================================================================ +17:03:33 + + +waiting on router queue for slot.... +17:03:33 Sending to : +17:03:33 ============================================================================ +17:03:33 ============================================================================ +17:03:33 Slot Id : <471> +17:03:33 Transaction Type : RESPONSE +17:03:33 Received From : +17:03:33 ============================================================================ +17:03:33 FNo. Len. Field Value +17:03:33 ============================================================================ +17:03:33 [ 1] [ 4] [0810] +17:03:33 [ 7] [ 10] [0320100240] +17:03:33 [ 11] [ 6] [157367] +17:03:33 [ 39] [ 2] [00] +17:03:33 [ 70] [ 3] [301] +17:03:33 ============================================================================ +17:03:33 Calculate Source COMM Id = 2 +17:03:33 ============================================================================ +17:03:33 + + +waiting on router queue for slot.... +17:03:34 ============================================================================ +17:03:34 Slot Id : <448> +17:03:34 Transaction Type : RESPONSE +17:03:34 Received From : +17:03:34 ============================================================================ +17:03:34 FNo. Len. Field Value +17:03:34 ============================================================================ +17:03:34 [ 1] [ 4] [0210] +17:03:34 [ 2] [ 16] [6213544001853156] +17:03:34 [ 3] [ 6] [311000] +17:03:34 [ 4] [ 12] [000000000000] +17:03:34 [ 7] [ 10] [0320171119] +17:03:34 [ 11] [ 6] [242357] +17:03:34 [ 12] [ 6] [171119] +17:03:34 [ 13] [ 4] [0320] +17:03:34 [ 15] [ 4] [0320] +17:03:34 [ 18] [ 4] [6011] +17:03:34 [ 32] [ 6] [220699] +17:03:34 [ 35] [ 32] [6213544001853156=491212015315272] +17:03:34 [ 37] [ 12] [507900341597] +17:03:34 [ 38] [ 6] [462666] +17:03:34 [ 39] [ 2] [00] +17:03:34 [ 41] [ 8] [01002000] +17:03:34 [ 49] [ 3] [418] +17:03:34 [ 54] [ 40] [1001418C0000554882571002418C000055488257] +17:03:34 ============================================================================ +17:03:34 Calculate Source COMM Id = 1 +17:03:34 ============================================================================ +17:03:34 + + +waiting on router queue for slot.... +17:03:37 ============================================================================ +17:03:37 Slot Id : <0> +17:03:37 Transaction Type : REQUEST +17:03:37 Received From : +17:03:37 ============================================================================ +17:03:37 FNo. Len. Field Value +17:03:37 ============================================================================ +17:03:37 [ 1] [ 4] [0200] +17:03:37 [ 2] [ 16] [6688990108338201] +17:03:37 [ 3] [ 6] [010000] +17:03:37 [ 4] [ 12] [000010000000] +17:03:37 [ 7] [ 10] [0320100243] +17:03:37 [ 11] [ 6] [270697] +17:03:37 [ 12] [ 6] [170243] +17:03:37 [ 13] [ 4] [0320] +17:03:37 [ 14] [ 4] [4406] +17:03:37 [ 15] [ 4] [0320] +17:03:37 [ 18] [ 4] [6011] +17:03:37 [ 19] [ 3] [418] +17:03:37 [ 22] [ 3] [021] +17:03:37 [ 25] [ 2] [01] +17:03:37 [ 28] [ 9] [D00002000] +17:03:37 [ 32] [ 6] [180893] +17:03:37 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:03:37 [ 37] [ 12] [507910270697] +17:03:37 [ 41] [ 8] [0262PSLB] +17:03:37 [ 42] [ 15] [999999 ] +17:03:37 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:03:37 [ 49] [ 3] [418] +17:03:37 [ 52] [ 16] [32DDA3AFF10FBC70] +17:03:37 ============================================================================ +17:03:37 + + +waiting on router queue for slot.... +17:03:37 Sending to : +17:03:37 ============================================================================ +17:03:37 Sending to : +17:03:37 ============================================================================ +17:03:37 ============================================================================ +17:03:37 Slot Id : <0> +17:03:37 Transaction Type : REQUEST +17:03:37 Received From : +17:03:37 ============================================================================ +17:03:37 FNo. Len. Field Value +17:03:37 ============================================================================ +17:03:37 [ 1] [ 4] [0200] +17:03:37 [ 2] [ 16] [6688990108338201] +17:03:37 [ 3] [ 6] [010000] +17:03:37 [ 4] [ 12] [000010000000] +17:03:37 [ 7] [ 10] [0320100243] +17:03:37 [ 11] [ 6] [270697] +17:03:37 [ 12] [ 6] [170243] +17:03:37 [ 13] [ 4] [0320] +17:03:37 [ 14] [ 4] [4406] +17:03:37 [ 15] [ 4] [0320] +17:03:37 [ 18] [ 4] [6011] +17:03:37 [ 19] [ 3] [418] +17:03:37 [ 22] [ 3] [021] +17:03:37 [ 25] [ 2] [01] +17:03:37 [ 28] [ 9] [D00002000] +17:03:37 [ 32] [ 6] [180893] +17:03:37 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:03:37 [ 37] [ 12] [507910270697] +17:03:37 [ 41] [ 8] [0262PSLB] +17:03:37 [ 42] [ 15] [999999 ] +17:03:37 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:03:37 [ 49] [ 3] [418] +17:03:37 [ 52] [ 16] [32DDA3AFF10FBC70] +17:03:37 ============================================================================ +17:03:37 + + +waiting on router queue for slot.... +17:03:37 Sending to : +17:03:37 ============================================================================ +17:03:37 ============================================================================ +17:03:37 Slot Id : <0> +17:03:37 Transaction Type : REQUEST +17:03:37 Received From : +17:03:37 ============================================================================ +17:03:37 FNo. Len. Field Value +17:03:37 ============================================================================ +17:03:37 [ 1] [ 4] [0200] +17:03:37 [ 2] [ 16] [6688990108338201] +17:03:37 [ 3] [ 6] [010000] +17:03:37 [ 4] [ 12] [000010000000] +17:03:37 [ 7] [ 10] [0320100243] +17:03:37 [ 11] [ 6] [270697] +17:03:37 [ 12] [ 6] [170243] +17:03:37 [ 13] [ 4] [0320] +17:03:37 [ 14] [ 4] [4406] +17:03:37 [ 15] [ 4] [0320] +17:03:37 [ 18] [ 4] [6011] +17:03:37 [ 19] [ 3] [418] +17:03:37 [ 22] [ 3] [021] +17:03:37 [ 25] [ 2] [01] +17:03:37 [ 28] [ 9] [D00002000] +17:03:37 [ 32] [ 6] [180893] +17:03:37 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:03:37 [ 37] [ 12] [507910270697] +17:03:37 [ 41] [ 8] [0262PSLB] +17:03:37 [ 42] [ 15] [999999 ] +17:03:37 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:03:37 [ 49] [ 3] [418] +17:03:37 [ 52] [ 16] [404F28AA26527D74] +17:03:37 ============================================================================ +17:03:37 + + +waiting on router queue for slot.... +17:03:37 Sending to : <0> +17:03:37 ============================================================================ +17:03:37 ============================================================================ +17:03:37 Slot Id : <0> +17:03:37 Transaction Type : RESPONSE +17:03:37 Received From : +17:03:37 ============================================================================ +17:03:37 FNo. Len. Field Value +17:03:37 ============================================================================ +17:03:37 [ 1] [ 4] [0210] +17:03:37 [ 2] [ 16] [6688990108338201] +17:03:37 [ 3] [ 6] [010000] +17:03:37 [ 4] [ 12] [000010000000] +17:03:37 [ 7] [ 10] [0320100243] +17:03:37 [ 11] [ 6] [270697] +17:03:37 [ 12] [ 6] [170243] +17:03:37 [ 13] [ 4] [0320] +17:03:37 [ 15] [ 4] [0320] +17:03:37 [ 18] [ 4] [6011] +17:03:37 [ 19] [ 3] [418] +17:03:37 [ 22] [ 3] [021] +17:03:37 [ 32] [ 6] [180893] +17:03:37 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:03:37 [ 37] [ 12] [507910270697] +17:03:37 [ 39] [ 2] [14] +17:03:37 [ 41] [ 8] [0262PSLB] +17:03:37 [ 49] [ 3] [418] +17:03:37 ============================================================================ +17:03:37 Sending to : +17:03:37 ============================================================================ +17:03:37 + + +waiting on router queue for slot.... +17:03:38 ============================================================================ +17:03:38 Slot Id : <0> +17:03:38 Transaction Type : RESPONSE +17:03:38 Received From : +17:03:38 ============================================================================ +17:03:38 FNo. Len. Field Value +17:03:38 ============================================================================ +17:03:38 [ 1] [ 4] [0210] +17:03:38 [ 2] [ 16] [6688990108338201] +17:03:38 [ 3] [ 6] [010000] +17:03:38 [ 4] [ 12] [000010000000] +17:03:38 [ 7] [ 10] [0320100243] +17:03:38 [ 11] [ 6] [270697] +17:03:38 [ 12] [ 6] [170243] +17:03:38 [ 13] [ 4] [0320] +17:03:38 [ 15] [ 4] [0320] +17:03:38 [ 18] [ 4] [6011] +17:03:38 [ 19] [ 3] [418] +17:03:38 [ 22] [ 3] [021] +17:03:38 [ 32] [ 6] [180893] +17:03:38 [ 35] [ 37] [6688990108338201=44061231820110000000] +17:03:38 [ 37] [ 12] [507910270697] +17:03:38 [ 39] [ 2] [14] +17:03:38 [ 41] [ 8] [0262PSLB] +17:03:38 [ 49] [ 3] [418] +17:03:38 ============================================================================ +17:03:38 Calculate Source COMM Id = 2 +17:03:38 ============================================================================ +17:03:38 + + +waiting on router queue for slot.... +17:03:39 ============================================================================ +17:03:39 Slot Id : <493> +17:03:39 Transaction Type : REQUEST +17:03:39 Received From : +17:03:39 ============================================================================ +17:03:39 FNo. Len. Field Value +17:03:39 ============================================================================ +17:03:39 [ 1] [ 4] [0800] +17:03:39 [ 2] [ 5] [02531] +17:03:39 [ 3] [ 6] [579178] +17:03:39 [ 7] [ 10] [0320100339] +17:03:39 [ 11] [ 6] [807402] +17:03:39 [ 15] [ 10] [0320100339] +17:03:39 [ 37] [ 11] [57917807402] +17:03:39 [ 70] [ 3] [001] +17:03:39 ============================================================================ +17:03:39 + + +waiting on router queue for slot.... +17:03:39 ============================================================================ +17:03:39 Slot Id : <493> +17:03:39 Transaction Type : RESPONSE +17:03:39 Received From : +17:03:39 ============================================================================ +17:03:39 FNo. Len. Field Value +17:03:39 ============================================================================ +17:03:39 [ 1] [ 4] [0810] +17:03:39 [ 7] [ 10] [0320100339] +17:03:39 [ 11] [ 6] [807402] +17:03:39 [ 15] [ 4] [0320] +17:03:39 [ 37] [ 12] [57917807402] +17:03:39 [ 39] [ 2] [00] +17:03:39 [ 70] [ 3] [001] +17:03:39 ============================================================================ +17:03:39 Sending to : +17:03:39 ============================================================================ +17:03:39 + + +waiting on router queue for slot.... +17:03:40 ============================================================================ +17:03:40 Slot Id : <479> +17:03:40 Transaction Type : REQUEST +17:03:40 Received From : +17:03:40 ============================================================================ +17:03:40 FNo. Len. Field Value +17:03:40 ============================================================================ +17:03:40 [ 1] [ 4] [0800] +17:03:40 [ 7] [ 10] [0321001529] +17:03:40 [ 11] [ 6] [171529] +17:03:40 [ 37] [ 12] [57917171529] +17:03:40 [ 70] [ 3] [301] +17:03:40 ============================================================================ +17:03:40 + + +waiting on router queue for slot.... +17:03:40 Sending to : +17:03:40 ============================================================================ +17:03:40 ============================================================================ +17:03:40 Slot Id : <479> +17:03:40 Transaction Type : RESPONSE +17:03:40 Received From : +17:03:40 ============================================================================ +17:03:40 FNo. Len. Field Value +17:03:40 ============================================================================ +17:03:40 [ 1] [ 4] [0810] +17:03:40 [ 7] [ 10] [0321001529] +17:03:40 [ 11] [ 6] [171529] +17:03:40 [ 37] [ 12] [579171715290] +17:03:40 [ 39] [ 2] [00] +17:03:40 [ 70] [ 3] [810] +17:03:40 ============================================================================ +17:03:40 Calculate Source COMM Id = 6 +17:03:40 ============================================================================ +17:03:40 + + +waiting on router queue for slot.... +17:03:42 ============================================================================ +17:03:42 Slot Id : <4> +17:03:42 Transaction Type : REQUEST +17:03:42 Received From : +17:03:42 ============================================================================ +17:03:42 FNo. Len. Field Value +17:03:42 ============================================================================ +17:03:42 [ 1] [ 4] [0200] +17:03:42 [ 2] [ 19] [6227003861190228036] +17:03:42 [ 3] [ 6] [013000] +17:03:42 [ 4] [ 12] [000030000000] +17:03:42 [ 7] [ 10] [0320171129] +17:03:42 [ 11] [ 6] [999971] +17:03:42 [ 12] [ 6] [171129] +17:03:42 [ 13] [ 4] [0320] +17:03:42 [ 14] [ 4] [4005] +17:03:42 [ 15] [ 4] [0320] +17:03:42 [ 18] [ 4] [6011] +17:03:42 [ 22] [ 3] [900] +17:03:42 [ 25] [ 2] [02] +17:03:42 [ 28] [ 9] [D00015000] +17:03:42 [ 32] [ 6] [220699] +17:03:42 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:03:42 [ 37] [ 12] [507900281372] +17:03:42 [ 41] [ 8] [10000100] +17:03:42 [ 42] [ 15] [APTRA ] +17:03:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:03:42 [ 49] [ 3] [418] +17:03:42 [ 52] [ 16] [2C3F307D839AD02B] +17:03:42 ============================================================================ +17:03:42 + + +waiting on router queue for slot.... +17:03:42 Sending to : +17:03:42 ============================================================================ +17:03:42 Sending to : +17:03:42 ============================================================================ +17:03:42 ============================================================================ +17:03:42 Slot Id : <4> +17:03:42 Transaction Type : REQUEST +17:03:42 Received From : +17:03:42 ============================================================================ +17:03:42 FNo. Len. Field Value +17:03:42 ============================================================================ +17:03:42 [ 1] [ 4] [0200] +17:03:42 [ 2] [ 19] [6227003861190228036] +17:03:42 [ 3] [ 6] [013000] +17:03:42 [ 4] [ 12] [000030000000] +17:03:42 [ 7] [ 10] [0320171129] +17:03:42 [ 11] [ 6] [999971] +17:03:42 [ 12] [ 6] [171129] +17:03:42 [ 13] [ 4] [0320] +17:03:42 [ 14] [ 4] [4005] +17:03:42 [ 15] [ 4] [0320] +17:03:42 [ 18] [ 4] [6011] +17:03:42 [ 22] [ 3] [900] +17:03:42 [ 25] [ 2] [02] +17:03:42 [ 28] [ 9] [D00015000] +17:03:42 [ 32] [ 6] [220699] +17:03:42 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:03:42 [ 37] [ 12] [507900281372] +17:03:42 [ 41] [ 8] [10000100] +17:03:42 [ 42] [ 15] [APTRA ] +17:03:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:03:42 [ 49] [ 3] [418] +17:03:42 [ 52] [ 16] [2C3F307D839AD02B] +17:03:42 ============================================================================ +17:03:42 + + +waiting on router queue for slot.... +17:03:42 Sending to : +17:03:42 ============================================================================ +17:03:42 ============================================================================ +17:03:42 Slot Id : <4> +17:03:42 Transaction Type : REQUEST +17:03:42 Received From : +17:03:42 ============================================================================ +17:03:42 FNo. Len. Field Value +17:03:42 ============================================================================ +17:03:42 [ 1] [ 4] [0200] +17:03:42 [ 2] [ 19] [6227003861190228036] +17:03:42 [ 3] [ 6] [013000] +17:03:42 [ 4] [ 12] [000030000000] +17:03:42 [ 7] [ 10] [0320171129] +17:03:42 [ 11] [ 6] [999971] +17:03:42 [ 12] [ 6] [171129] +17:03:42 [ 13] [ 4] [0320] +17:03:42 [ 14] [ 4] [4005] +17:03:42 [ 15] [ 4] [0320] +17:03:42 [ 18] [ 4] [6011] +17:03:42 [ 22] [ 3] [900] +17:03:42 [ 25] [ 2] [02] +17:03:42 [ 28] [ 9] [D00015000] +17:03:42 [ 32] [ 6] [220699] +17:03:42 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:03:42 [ 37] [ 12] [507900281372] +17:03:42 [ 41] [ 8] [10000100] +17:03:42 [ 42] [ 15] [APTRA ] +17:03:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:03:42 [ 49] [ 3] [418] +17:03:42 [ 52] [ 16] [AA84C5BD22503A94] +17:03:42 ============================================================================ +17:03:42 + + +waiting on router queue for slot.... +17:03:42 Sending to : <0> +17:03:42 ============================================================================ +17:03:42 ============================================================================ +17:03:42 Slot Id : <4> +17:03:42 Transaction Type : RESPONSE +17:03:42 Received From : +17:03:42 ============================================================================ +17:03:42 FNo. Len. Field Value +17:03:42 ============================================================================ +17:03:42 [ 1] [ 4] [0210] +17:03:42 [ 2] [ 19] [6227003861190228036] +17:03:42 [ 3] [ 6] [013000] +17:03:42 [ 4] [ 12] [000030000000] +17:03:42 [ 7] [ 10] [0320171129] +17:03:42 [ 11] [ 6] [999971] +17:03:42 [ 12] [ 6] [171129] +17:03:42 [ 13] [ 4] [0320] +17:03:42 [ 15] [ 4] [0320] +17:03:42 [ 18] [ 4] [6011] +17:03:42 [ 22] [ 3] [900] +17:03:42 [ 32] [ 6] [220699] +17:03:42 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:03:42 [ 37] [ 12] [507900281372] +17:03:42 [ 38] [ 6] [999971] +17:03:42 [ 39] [ 2] [03] +17:03:42 [ 41] [ 8] [10000100] +17:03:42 [ 49] [ 3] [418] +17:03:42 [ 54] [ 0] [] +17:03:42 ============================================================================ +17:03:42 Sending to : +17:03:42 ============================================================================ +17:03:42 + + +waiting on router queue for slot.... +17:03:44 ============================================================================ +17:03:44 Slot Id : <4> +17:03:44 Transaction Type : RESPONSE +17:03:44 Received From : +17:03:44 ============================================================================ +17:03:44 FNo. Len. Field Value +17:03:44 ============================================================================ +17:03:44 [ 1] [ 4] [0210] +17:03:44 [ 2] [ 19] [6227003861190228036] +17:03:44 [ 3] [ 6] [013000] +17:03:44 [ 4] [ 12] [000030000000] +17:03:44 [ 7] [ 10] [0320171129] +17:03:44 [ 11] [ 6] [999971] +17:03:44 [ 12] [ 6] [171129] +17:03:44 [ 13] [ 4] [0320] +17:03:44 [ 15] [ 4] [0320] +17:03:44 [ 18] [ 4] [6011] +17:03:44 [ 22] [ 3] [900] +17:03:44 [ 32] [ 6] [220699] +17:03:44 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:03:44 [ 37] [ 12] [507900281372] +17:03:44 [ 38] [ 6] [999971] +17:03:44 [ 39] [ 2] [03] +17:03:44 [ 41] [ 8] [10000100] +17:03:44 [ 49] [ 3] [418] +17:03:44 [ 54] [ 0] [] +17:03:44 ============================================================================ +17:03:44 Calculate Source COMM Id = 1 +17:03:44 ============================================================================ +17:03:44 + + +waiting on router queue for slot.... +17:03:48 ============================================================================ +17:03:48 Slot Id : <2> +17:03:48 Transaction Type : REQUEST +17:03:48 Received From : +17:03:48 ============================================================================ +17:03:48 FNo. Len. Field Value +17:03:48 ============================================================================ +17:03:48 [ 1] [ 4] [0200] +17:03:48 [ 2] [ 16] [6213544001612958] +17:03:48 [ 3] [ 6] [010000] +17:03:48 [ 4] [ 12] [000058000000] +17:03:48 [ 7] [ 10] [0320170138] +17:03:48 [ 11] [ 6] [952817] +17:03:48 [ 12] [ 6] [170138] +17:03:48 [ 13] [ 4] [0320] +17:03:48 [ 15] [ 4] [0320] +17:03:48 [ 18] [ 4] [6011] +17:03:48 [ 19] [ 3] [418] +17:03:48 [ 22] [ 3] [021] +17:03:48 [ 25] [ 2] [01] +17:03:48 [ 28] [ 9] [D00002000] +17:03:48 [ 32] [ 6] [668899] +17:03:48 [ 35] [ 32] [6213544001612958=491212011295133] +17:03:48 [ 37] [ 12] [507902025653] +17:03:48 [ 41] [ 8] [03414002] +17:03:48 [ 42] [ 15] [APT ] +17:03:48 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:03:48 [ 49] [ 3] [418] +17:03:48 [ 52] [ 16] [289F911DD6C3F3C0] +17:03:48 ============================================================================ +17:03:48 + + +waiting on router queue for slot.... +17:03:48 Sending to : +17:03:48 ============================================================================ +17:03:48 Sending to : +17:03:48 ============================================================================ +17:03:48 ============================================================================ +17:03:48 Slot Id : <2> +17:03:48 Transaction Type : REQUEST +17:03:48 Received From : +17:03:48 ============================================================================ +17:03:48 FNo. Len. Field Value +17:03:48 ============================================================================ +17:03:48 [ 1] [ 4] [0200] +17:03:48 [ 2] [ 16] [6213544001612958] +17:03:48 [ 3] [ 6] [010000] +17:03:48 [ 4] [ 12] [000058000000] +17:03:48 [ 7] [ 10] [0320170138] +17:03:48 [ 11] [ 6] [952817] +17:03:48 [ 12] [ 6] [170138] +17:03:48 [ 13] [ 4] [0320] +17:03:48 [ 15] [ 4] [0320] +17:03:48 [ 18] [ 4] [6011] +17:03:48 [ 19] [ 3] [418] +17:03:48 [ 22] [ 3] [021] +17:03:48 [ 25] [ 2] [01] +17:03:48 [ 28] [ 9] [D00002000] +17:03:48 [ 32] [ 6] [668899] +17:03:48 [ 35] [ 32] [6213544001612958=491212011295133] +17:03:48 [ 37] [ 12] [507902025653] +17:03:48 [ 41] [ 8] [03414002] +17:03:48 [ 42] [ 15] [APT ] +17:03:48 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:03:48 [ 49] [ 3] [418] +17:03:48 [ 52] [ 16] [289F911DD6C3F3C0] +17:03:48 ============================================================================ +17:03:48 + + +waiting on router queue for slot.... +17:03:48 Sending to : +17:03:48 ============================================================================ +17:03:48 ============================================================================ +17:03:48 Slot Id : <2> +17:03:48 Transaction Type : REQUEST +17:03:48 Received From : +17:03:48 ============================================================================ +17:03:48 FNo. Len. Field Value +17:03:48 ============================================================================ +17:03:48 [ 1] [ 4] [0200] +17:03:48 [ 2] [ 16] [6213544001612958] +17:03:48 [ 3] [ 6] [010000] +17:03:48 [ 4] [ 12] [000058000000] +17:03:48 [ 7] [ 10] [0320170138] +17:03:48 [ 11] [ 6] [952817] +17:03:48 [ 12] [ 6] [170138] +17:03:48 [ 13] [ 4] [0320] +17:03:48 [ 15] [ 4] [0320] +17:03:48 [ 18] [ 4] [6011] +17:03:48 [ 19] [ 3] [418] +17:03:48 [ 22] [ 3] [021] +17:03:48 [ 25] [ 2] [01] +17:03:48 [ 28] [ 9] [D00002000] +17:03:48 [ 32] [ 6] [668899] +17:03:48 [ 35] [ 32] [6213544001612958=491212011295133] +17:03:48 [ 37] [ 12] [507902025653] +17:03:48 [ 41] [ 8] [03414002] +17:03:48 [ 42] [ 15] [APT ] +17:03:48 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:03:48 [ 49] [ 3] [418] +17:03:48 [ 52] [ 16] [669C52A4EF0B5745] +17:03:48 ============================================================================ +17:03:48 + + +waiting on router queue for slot.... +17:03:48 Sending to : <0> +17:03:48 ============================================================================ +17:03:49 ============================================================================ +17:03:49 Slot Id : <2> +17:03:49 Transaction Type : RESPONSE +17:03:49 Received From : +17:03:49 ============================================================================ +17:03:49 FNo. Len. Field Value +17:03:49 ============================================================================ +17:03:49 [ 1] [ 4] [0210] +17:03:49 [ 2] [ 16] [6213544001612958] +17:03:49 [ 3] [ 6] [010000] +17:03:49 [ 4] [ 12] [000058000000] +17:03:49 [ 7] [ 10] [0320170138] +17:03:49 [ 11] [ 6] [952817] +17:03:49 [ 12] [ 6] [170138] +17:03:49 [ 13] [ 4] [0320] +17:03:49 [ 15] [ 4] [0320] +17:03:49 [ 18] [ 4] [6011] +17:03:49 [ 19] [ 3] [418] +17:03:49 [ 32] [ 6] [668899] +17:03:49 [ 35] [ 32] [6213544001612958=491212011295133] +17:03:49 [ 37] [ 12] [507902025653] +17:03:49 [ 38] [ 6] [638734] +17:03:49 [ 39] [ 2] [00] +17:03:49 [ 41] [ 8] [03414002] +17:03:49 [ 49] [ 3] [418] +17:03:49 [ 54] [ 40] [0001418C0000074132390002418C000007413239] +17:03:49 ============================================================================ +17:03:49 Sending to : +17:03:49 ============================================================================ +17:03:49 + + +waiting on router queue for slot.... +17:03:50 ============================================================================ +17:03:50 Slot Id : <2> +17:03:50 Transaction Type : RESPONSE +17:03:50 Received From : +17:03:50 ============================================================================ +17:03:50 FNo. Len. Field Value +17:03:50 ============================================================================ +17:03:50 [ 1] [ 4] [0210] +17:03:50 [ 2] [ 16] [6213544001612958] +17:03:50 [ 3] [ 6] [010000] +17:03:50 [ 4] [ 12] [000058000000] +17:03:50 [ 7] [ 10] [0320170138] +17:03:50 [ 11] [ 6] [952817] +17:03:50 [ 12] [ 6] [170138] +17:03:50 [ 13] [ 4] [0320] +17:03:50 [ 15] [ 4] [0320] +17:03:50 [ 18] [ 4] [6011] +17:03:50 [ 19] [ 3] [418] +17:03:50 [ 32] [ 6] [668899] +17:03:50 [ 35] [ 32] [6213544001612958=491212011295133] +17:03:50 [ 37] [ 12] [507902025653] +17:03:50 [ 38] [ 6] [638734] +17:03:50 [ 39] [ 2] [00] +17:03:50 [ 41] [ 8] [03414002] +17:03:50 [ 49] [ 3] [418] +17:03:50 [ 54] [ 40] [0001418C0000074132390002418C000007413239] +17:03:50 ============================================================================ +17:03:50 Calculate Source COMM Id = 4 +17:03:50 ============================================================================ +17:03:50 + + +waiting on router queue for slot.... +17:03:53 ============================================================================ +17:03:53 Slot Id : <1> +17:03:53 Transaction Type : REQUEST +17:03:53 Received From : +17:03:53 ============================================================================ +17:03:53 FNo. Len. Field Value +17:03:53 ============================================================================ +17:03:53 [ 1] [ 4] [0800] +17:03:53 [ 7] [ 10] [0320100300] +17:03:53 [ 11] [ 6] [157368] +17:03:53 [ 70] [ 3] [301] +17:03:53 ============================================================================ +17:03:53 + + +waiting on router queue for slot.... +17:03:53 Sending to : +17:03:53 ============================================================================ +17:03:53 ============================================================================ +17:03:53 Slot Id : <1> +17:03:53 Transaction Type : RESPONSE +17:03:53 Received From : +17:03:53 ============================================================================ +17:03:53 FNo. Len. Field Value +17:03:53 ============================================================================ +17:03:53 [ 1] [ 4] [0810] +17:03:53 [ 7] [ 10] [0320100300] +17:03:53 [ 11] [ 6] [157368] +17:03:53 [ 39] [ 2] [00] +17:03:53 [ 70] [ 3] [301] +17:03:53 ============================================================================ +17:03:53 Calculate Source COMM Id = 2 +17:03:53 ============================================================================ +17:03:53 + + +waiting on router queue for slot.... +17:03:56 ============================================================================ +17:03:56 Slot Id : <498> +17:03:56 Transaction Type : REQUEST +17:03:56 Received From : +17:03:56 ============================================================================ +17:03:56 FNo. Len. Field Value +17:03:56 ============================================================================ +17:03:56 [ 1] [ 4] [0200] +17:03:56 [ 2] [ 16] [6213544001853156] +17:03:56 [ 3] [ 6] [011000] +17:03:56 [ 4] [ 12] [000050000000] +17:03:56 [ 7] [ 10] [0320171143] +17:03:56 [ 11] [ 6] [242358] +17:03:56 [ 12] [ 6] [171143] +17:03:56 [ 13] [ 4] [0320] +17:03:56 [ 14] [ 4] [4912] +17:03:56 [ 15] [ 4] [0320] +17:03:56 [ 18] [ 4] [6011] +17:03:56 [ 22] [ 3] [900] +17:03:56 [ 25] [ 2] [02] +17:03:56 [ 28] [ 9] [D00002000] +17:03:56 [ 32] [ 6] [220699] +17:03:56 [ 35] [ 32] [6213544001853156=491212015315272] +17:03:56 [ 37] [ 12] [507900341598] +17:03:56 [ 41] [ 8] [01002000] +17:03:56 [ 42] [ 15] [APTRA ] +17:03:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:03:56 [ 49] [ 3] [418] +17:03:56 [ 52] [ 16] [9C36ACC0ACB306D6] +17:03:56 ============================================================================ +17:03:56 + + +waiting on router queue for slot.... +17:03:56 Sending to : +17:03:56 ============================================================================ +17:03:56 Sending to : +17:03:56 ============================================================================ +17:03:56 ============================================================================ +17:03:56 Slot Id : <498> +17:03:56 Transaction Type : REQUEST +17:03:56 Received From : +17:03:56 ============================================================================ +17:03:56 FNo. Len. Field Value +17:03:56 ============================================================================ +17:03:56 [ 1] [ 4] [0200] +17:03:56 [ 2] [ 16] [6213544001853156] +17:03:56 [ 3] [ 6] [011000] +17:03:56 [ 4] [ 12] [000050000000] +17:03:56 [ 7] [ 10] [0320171143] +17:03:56 [ 11] [ 6] [242358] +17:03:56 [ 12] [ 6] [171143] +17:03:56 [ 13] [ 4] [0320] +17:03:56 [ 14] [ 4] [4912] +17:03:56 [ 15] [ 4] [0320] +17:03:56 [ 18] [ 4] [6011] +17:03:56 [ 22] [ 3] [900] +17:03:56 [ 25] [ 2] [02] +17:03:56 [ 28] [ 9] [D00002000] +17:03:56 [ 32] [ 6] [220699] +17:03:56 [ 35] [ 32] [6213544001853156=491212015315272] +17:03:56 [ 37] [ 12] [507900341598] +17:03:56 [ 41] [ 8] [01002000] +17:03:56 [ 42] [ 15] [APTRA ] +17:03:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:03:56 [ 49] [ 3] [418] +17:03:56 [ 52] [ 16] [9C36ACC0ACB306D6] +17:03:56 ============================================================================ +17:03:56 + + +waiting on router queue for slot.... +17:03:56 Sending to : +17:03:56 ============================================================================ +17:03:56 ============================================================================ +17:03:56 Slot Id : <498> +17:03:56 Transaction Type : REQUEST +17:03:56 Received From : +17:03:56 ============================================================================ +17:03:56 FNo. Len. Field Value +17:03:56 ============================================================================ +17:03:56 [ 1] [ 4] [0200] +17:03:56 [ 2] [ 16] [6213544001853156] +17:03:56 [ 3] [ 6] [011000] +17:03:56 [ 4] [ 12] [000050000000] +17:03:56 [ 7] [ 10] [0320171143] +17:03:56 [ 11] [ 6] [242358] +17:03:56 [ 12] [ 6] [171143] +17:03:56 [ 13] [ 4] [0320] +17:03:56 [ 14] [ 4] [4912] +17:03:56 [ 15] [ 4] [0320] +17:03:56 [ 18] [ 4] [6011] +17:03:56 [ 22] [ 3] [900] +17:03:56 [ 25] [ 2] [02] +17:03:56 [ 28] [ 9] [D00002000] +17:03:56 [ 32] [ 6] [220699] +17:03:56 [ 35] [ 32] [6213544001853156=491212015315272] +17:03:56 [ 37] [ 12] [507900341598] +17:03:56 [ 41] [ 8] [01002000] +17:03:56 [ 42] [ 15] [APTRA ] +17:03:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:03:56 [ 49] [ 3] [418] +17:03:56 [ 52] [ 16] [E75238938C234894] +17:03:56 ============================================================================ +17:03:56 + + +waiting on router queue for slot.... +17:03:56 Sending to : <0> +17:03:56 ============================================================================ +17:03:57 ============================================================================ +17:03:57 Slot Id : <498> +17:03:57 Transaction Type : RESPONSE +17:03:57 Received From : +17:03:57 ============================================================================ +17:03:57 FNo. Len. Field Value +17:03:57 ============================================================================ +17:03:57 [ 1] [ 4] [0210] +17:03:57 [ 2] [ 16] [6213544001853156] +17:03:57 [ 3] [ 6] [011000] +17:03:57 [ 4] [ 12] [000050000000] +17:03:57 [ 7] [ 10] [0320171143] +17:03:57 [ 11] [ 6] [242358] +17:03:57 [ 12] [ 6] [171143] +17:03:57 [ 13] [ 4] [0320] +17:03:57 [ 15] [ 4] [0320] +17:03:57 [ 18] [ 4] [6011] +17:03:57 [ 32] [ 6] [220699] +17:03:57 [ 35] [ 32] [6213544001853156=491212015315272] +17:03:57 [ 37] [ 12] [507900341598] +17:03:57 [ 38] [ 6] [643099] +17:03:57 [ 39] [ 2] [00] +17:03:57 [ 41] [ 8] [01002000] +17:03:57 [ 49] [ 3] [418] +17:03:57 [ 54] [ 40] [1001418C0000052882571002418C000005288257] +17:03:57 ============================================================================ +17:03:57 Sending to : +17:03:57 ============================================================================ +17:03:57 + + +waiting on router queue for slot.... +17:03:58 ============================================================================ +17:03:58 Slot Id : <498> +17:03:58 Transaction Type : RESPONSE +17:03:58 Received From : +17:03:58 ============================================================================ +17:03:58 FNo. Len. Field Value +17:03:58 ============================================================================ +17:03:58 [ 1] [ 4] [0210] +17:03:58 [ 2] [ 16] [6213544001853156] +17:03:58 [ 3] [ 6] [011000] +17:03:58 [ 4] [ 12] [000050000000] +17:03:58 [ 7] [ 10] [0320171143] +17:03:58 [ 11] [ 6] [242358] +17:03:58 [ 12] [ 6] [171143] +17:03:58 [ 13] [ 4] [0320] +17:03:58 [ 15] [ 4] [0320] +17:03:58 [ 18] [ 4] [6011] +17:03:58 [ 32] [ 6] [220699] +17:03:58 [ 35] [ 32] [6213544001853156=491212015315272] +17:03:58 [ 37] [ 12] [507900341598] +17:03:58 [ 38] [ 6] [643099] +17:03:58 [ 39] [ 2] [00] +17:03:58 [ 41] [ 8] [01002000] +17:03:58 [ 49] [ 3] [418] +17:03:58 [ 54] [ 40] [1001418C0000052882571002418C000005288257] +17:03:58 ============================================================================ +17:03:58 Calculate Source COMM Id = 1 +17:03:58 ============================================================================ +17:03:58 + + +waiting on router queue for slot.... +17:04:04 ============================================================================ +17:04:04 Slot Id : <473> +17:04:04 Transaction Type : REQUEST +17:04:04 Received From : +17:04:04 ============================================================================ +17:04:04 FNo. Len. Field Value +17:04:04 ============================================================================ +17:04:04 [ 1] [ 4] [0200] +17:04:04 [ 2] [ 16] [6213544002118252] +17:04:04 [ 3] [ 6] [011000] +17:04:04 [ 4] [ 12] [000030000000] +17:04:04 [ 7] [ 10] [0320170424] +17:04:04 [ 11] [ 6] [209205] +17:04:04 [ 12] [ 6] [165930] +17:04:04 [ 13] [ 4] [0320] +17:04:04 [ 14] [ 4] [4912] +17:04:04 [ 15] [ 4] [0320] +17:04:04 [ 18] [ 4] [6011] +17:04:04 [ 19] [ 3] [418] +17:04:04 [ 22] [ 3] [021] +17:04:04 [ 25] [ 2] [01] +17:04:04 [ 28] [ 9] [D00002000] +17:04:04 [ 32] [ 6] [198901] +17:04:04 [ 35] [ 32] [6213544002118252=491212011825332] +17:04:04 [ 37] [ 12] [507917209205] +17:04:04 [ 41] [ 8] [19529001] +17:04:04 [ 42] [ 15] [000000041952901] +17:04:04 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:04:04 [ 49] [ 3] [418] +17:04:04 [ 52] [ 16] [A2ECC01B074985C8] +17:04:04 ============================================================================ +17:04:04 + + +waiting on router queue for slot.... +17:04:04 Sending to : +17:04:04 ============================================================================ +17:04:04 Sending to : +17:04:04 ============================================================================ +17:04:04 ============================================================================ +17:04:04 Slot Id : <473> +17:04:04 Transaction Type : REQUEST +17:04:04 Received From : +17:04:04 ============================================================================ +17:04:04 FNo. Len. Field Value +17:04:04 ============================================================================ +17:04:04 [ 1] [ 4] [0200] +17:04:04 [ 2] [ 16] [6213544002118252] +17:04:04 [ 3] [ 6] [011000] +17:04:04 [ 4] [ 12] [000030000000] +17:04:04 [ 7] [ 10] [0320170424] +17:04:04 [ 11] [ 6] [209205] +17:04:04 [ 12] [ 6] [165930] +17:04:04 [ 13] [ 4] [0320] +17:04:04 [ 14] [ 4] [4912] +17:04:04 [ 15] [ 4] [0320] +17:04:04 [ 18] [ 4] [6011] +17:04:04 [ 19] [ 3] [418] +17:04:04 [ 22] [ 3] [021] +17:04:04 [ 25] [ 2] [01] +17:04:04 [ 28] [ 9] [D00002000] +17:04:04 [ 32] [ 6] [198901] +17:04:04 [ 35] [ 32] [6213544002118252=491212011825332] +17:04:04 [ 37] [ 12] [507917209205] +17:04:04 [ 41] [ 8] [19529001] +17:04:04 [ 42] [ 15] [000000041952901] +17:04:04 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:04:04 [ 49] [ 3] [418] +17:04:04 [ 52] [ 16] [A2ECC01B074985C8] +17:04:04 ============================================================================ +17:04:04 + + +waiting on router queue for slot.... +17:04:04 Sending to : +17:04:04 ============================================================================ +17:04:04 ============================================================================ +17:04:04 Slot Id : <473> +17:04:04 Transaction Type : REQUEST +17:04:04 Received From : +17:04:04 ============================================================================ +17:04:04 FNo. Len. Field Value +17:04:04 ============================================================================ +17:04:04 [ 1] [ 4] [0200] +17:04:04 [ 2] [ 16] [6213544002118252] +17:04:04 [ 3] [ 6] [011000] +17:04:04 [ 4] [ 12] [000030000000] +17:04:04 [ 7] [ 10] [0320170424] +17:04:04 [ 11] [ 6] [209205] +17:04:04 [ 12] [ 6] [165930] +17:04:04 [ 13] [ 4] [0320] +17:04:04 [ 14] [ 4] [4912] +17:04:04 [ 15] [ 4] [0320] +17:04:04 [ 18] [ 4] [6011] +17:04:04 [ 19] [ 3] [418] +17:04:04 [ 22] [ 3] [021] +17:04:04 [ 25] [ 2] [01] +17:04:04 [ 28] [ 9] [D00002000] +17:04:04 [ 32] [ 6] [198901] +17:04:04 [ 35] [ 32] [6213544002118252=491212011825332] +17:04:04 [ 37] [ 12] [507917209205] +17:04:04 [ 41] [ 8] [19529001] +17:04:04 [ 42] [ 15] [000000041952901] +17:04:04 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:04:04 [ 49] [ 3] [418] +17:04:04 [ 52] [ 16] [D530CC36ED6179A5] +17:04:04 ============================================================================ +17:04:04 + + +waiting on router queue for slot.... +17:04:04 Sending to : <0> +17:04:04 ============================================================================ +17:04:05 ============================================================================ +17:04:05 Slot Id : <473> +17:04:05 Transaction Type : RESPONSE +17:04:05 Received From : +17:04:05 ============================================================================ +17:04:05 FNo. Len. Field Value +17:04:05 ============================================================================ +17:04:05 [ 1] [ 4] [0210] +17:04:05 [ 2] [ 16] [6213544002118252] +17:04:05 [ 3] [ 6] [011000] +17:04:05 [ 4] [ 12] [000030000000] +17:04:05 [ 7] [ 10] [0320170424] +17:04:05 [ 11] [ 6] [209205] +17:04:05 [ 12] [ 6] [165930] +17:04:05 [ 13] [ 4] [0320] +17:04:05 [ 15] [ 4] [0320] +17:04:05 [ 18] [ 4] [6011] +17:04:05 [ 19] [ 3] [418] +17:04:05 [ 32] [ 6] [198901] +17:04:05 [ 35] [ 32] [6213544002118252=491212011825332] +17:04:05 [ 37] [ 12] [507917209205] +17:04:05 [ 38] [ 6] [459567] +17:04:05 [ 39] [ 2] [00] +17:04:05 [ 41] [ 8] [19529001] +17:04:05 [ 49] [ 3] [418] +17:04:05 [ 54] [ 40] [1001418C0000219170261002418C000021917026] +17:04:05 ============================================================================ +17:04:05 Sending to : +17:04:05 ============================================================================ +17:04:05 + + +waiting on router queue for slot.... +17:04:06 ============================================================================ +17:04:06 Slot Id : <473> +17:04:06 Transaction Type : RESPONSE +17:04:06 Received From : +17:04:06 ============================================================================ +17:04:06 FNo. Len. Field Value +17:04:06 ============================================================================ +17:04:06 [ 1] [ 4] [0210] +17:04:06 [ 2] [ 16] [6213544002118252] +17:04:06 [ 3] [ 6] [011000] +17:04:06 [ 4] [ 12] [000030000000] +17:04:06 [ 7] [ 10] [0320170424] +17:04:06 [ 11] [ 6] [209205] +17:04:06 [ 12] [ 6] [165930] +17:04:06 [ 13] [ 4] [0320] +17:04:06 [ 15] [ 4] [0320] +17:04:06 [ 18] [ 4] [6011] +17:04:06 [ 19] [ 3] [418] +17:04:06 [ 32] [ 6] [198901] +17:04:06 [ 35] [ 32] [6213544002118252=491212011825332] +17:04:06 [ 37] [ 12] [507917209205] +17:04:06 [ 38] [ 6] [459567] +17:04:06 [ 39] [ 2] [00] +17:04:06 [ 41] [ 8] [19529001] +17:04:06 [ 49] [ 3] [418] +17:04:06 [ 54] [ 40] [1001418C0000219170261002418C000021917026] +17:04:06 ============================================================================ +17:04:06 Calculate Source COMM Id = 5 +17:04:06 ============================================================================ +17:04:06 + + +waiting on router queue for slot.... +17:04:09 ============================================================================ +17:04:09 Slot Id : <476> +17:04:09 Transaction Type : REQUEST +17:04:09 Received From : +17:04:09 ============================================================================ +17:04:09 FNo. Len. Field Value +17:04:09 ============================================================================ +17:04:09 [ 1] [ 4] [0800] +17:04:09 [ 7] [ 10] [0320100316] +17:04:09 [ 11] [ 6] [157369] +17:04:09 [ 70] [ 3] [301] +17:04:09 ============================================================================ +17:04:09 + + +waiting on router queue for slot.... +17:04:09 Sending to : +17:04:09 ============================================================================ +17:04:09 ============================================================================ +17:04:09 Slot Id : <476> +17:04:09 Transaction Type : RESPONSE +17:04:09 Received From : +17:04:09 ============================================================================ +17:04:09 FNo. Len. Field Value +17:04:09 ============================================================================ +17:04:09 [ 1] [ 4] [0810] +17:04:09 [ 7] [ 10] [0320100316] +17:04:09 [ 11] [ 6] [157369] +17:04:09 [ 39] [ 2] [00] +17:04:09 [ 70] [ 3] [301] +17:04:09 ============================================================================ +17:04:09 Calculate Source COMM Id = 2 +17:04:09 ============================================================================ +17:04:09 + + +waiting on router queue for slot.... +17:04:19 ============================================================================ +17:04:19 Slot Id : <477> +17:04:19 Transaction Type : REQUEST +17:04:19 Received From : +17:04:19 ============================================================================ +17:04:19 FNo. Len. Field Value +17:04:19 ============================================================================ +17:04:19 [ 1] [ 4] [0200] +17:04:19 [ 2] [ 19] [6227003861190228036] +17:04:19 [ 3] [ 6] [311000] +17:04:19 [ 4] [ 12] [000000000000] +17:04:19 [ 7] [ 10] [0320171206] +17:04:19 [ 11] [ 6] [999974] +17:04:19 [ 12] [ 6] [171206] +17:04:19 [ 13] [ 4] [0320] +17:04:19 [ 14] [ 4] [4005] +17:04:19 [ 15] [ 4] [0320] +17:04:19 [ 18] [ 4] [6011] +17:04:19 [ 22] [ 3] [900] +17:04:19 [ 25] [ 2] [02] +17:04:19 [ 28] [ 9] [000000000] +17:04:19 [ 32] [ 6] [220699] +17:04:19 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:04:19 [ 37] [ 12] [507900281374] +17:04:19 [ 41] [ 8] [10000100] +17:04:19 [ 42] [ 15] [APTRA ] +17:04:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:04:19 [ 49] [ 3] [418] +17:04:19 [ 52] [ 16] [2C3F307D839AD02B] +17:04:19 ============================================================================ +17:04:19 + + +waiting on router queue for slot.... +17:04:19 Sending to : +17:04:19 ============================================================================ +17:04:19 Sending to : +17:04:19 ============================================================================ +17:04:19 ============================================================================ +17:04:19 Slot Id : <477> +17:04:19 Transaction Type : REQUEST +17:04:19 Received From : +17:04:19 ============================================================================ +17:04:19 FNo. Len. Field Value +17:04:19 ============================================================================ +17:04:19 [ 1] [ 4] [0200] +17:04:19 [ 2] [ 19] [6227003861190228036] +17:04:19 [ 3] [ 6] [311000] +17:04:19 [ 4] [ 12] [000000000000] +17:04:19 [ 7] [ 10] [0320171206] +17:04:19 [ 11] [ 6] [999974] +17:04:19 [ 12] [ 6] [171206] +17:04:19 [ 13] [ 4] [0320] +17:04:19 [ 14] [ 4] [4005] +17:04:19 [ 15] [ 4] [0320] +17:04:19 [ 18] [ 4] [6011] +17:04:19 [ 22] [ 3] [900] +17:04:19 [ 25] [ 2] [02] +17:04:19 [ 28] [ 9] [000000000] +17:04:19 [ 32] [ 6] [220699] +17:04:19 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:04:19 [ 37] [ 12] [507900281374] +17:04:19 [ 41] [ 8] [10000100] +17:04:19 [ 42] [ 15] [APTRA ] +17:04:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:04:19 [ 49] [ 3] [418] +17:04:19 [ 52] [ 16] [2C3F307D839AD02B] +17:04:19 ============================================================================ +17:04:19 + + +waiting on router queue for slot.... +17:04:19 Sending to : +17:04:19 ============================================================================ +17:04:19 ============================================================================ +17:04:19 Slot Id : <477> +17:04:19 Transaction Type : REQUEST +17:04:19 Received From : +17:04:19 ============================================================================ +17:04:19 FNo. Len. Field Value +17:04:19 ============================================================================ +17:04:19 [ 1] [ 4] [0200] +17:04:19 [ 2] [ 19] [6227003861190228036] +17:04:19 [ 3] [ 6] [311000] +17:04:19 [ 4] [ 12] [000000000000] +17:04:19 [ 7] [ 10] [0320171206] +17:04:19 [ 11] [ 6] [999974] +17:04:19 [ 12] [ 6] [171206] +17:04:19 [ 13] [ 4] [0320] +17:04:19 [ 14] [ 4] [4005] +17:04:19 [ 15] [ 4] [0320] +17:04:19 [ 18] [ 4] [6011] +17:04:19 [ 22] [ 3] [900] +17:04:19 [ 25] [ 2] [02] +17:04:19 [ 28] [ 9] [000000000] +17:04:19 [ 32] [ 6] [220699] +17:04:19 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:04:19 [ 37] [ 12] [507900281374] +17:04:19 [ 41] [ 8] [10000100] +17:04:19 [ 42] [ 15] [APTRA ] +17:04:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:04:19 [ 49] [ 3] [418] +17:04:19 [ 52] [ 16] [AA84C5BD22503A94] +17:04:19 ============================================================================ +17:04:19 + + +waiting on router queue for slot.... +17:04:19 Sending to : <0> +17:04:19 ============================================================================ +17:04:19 ============================================================================ +17:04:19 Slot Id : <477> +17:04:19 Transaction Type : RESPONSE +17:04:19 Received From : +17:04:19 ============================================================================ +17:04:19 FNo. Len. Field Value +17:04:19 ============================================================================ +17:04:19 [ 1] [ 4] [0210] +17:04:19 [ 2] [ 19] [6227003861190228036] +17:04:19 [ 3] [ 6] [311000] +17:04:19 [ 4] [ 12] [000000000000] +17:04:19 [ 7] [ 10] [0320171206] +17:04:19 [ 11] [ 6] [999974] +17:04:19 [ 12] [ 6] [171206] +17:04:19 [ 13] [ 4] [0320] +17:04:19 [ 15] [ 4] [0320] +17:04:19 [ 18] [ 4] [6011] +17:04:19 [ 22] [ 3] [900] +17:04:19 [ 32] [ 6] [220699] +17:04:19 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:04:19 [ 37] [ 12] [507900281374] +17:04:19 [ 38] [ 6] [999974] +17:04:19 [ 39] [ 2] [03] +17:04:19 [ 41] [ 8] [10000100] +17:04:19 [ 49] [ 3] [418] +17:04:19 [ 54] [ 0] [] +17:04:19 ============================================================================ +17:04:19 Sending to : +17:04:19 ============================================================================ +17:04:19 + + +waiting on router queue for slot.... +17:04:19 ============================================================================ +17:04:19 Slot Id : <489> +17:04:19 Transaction Type : REQUEST +17:04:19 Received From : +17:04:19 ============================================================================ +17:04:19 FNo. Len. Field Value +17:04:19 ============================================================================ +17:04:19 [ 1] [ 4] [0800] +17:04:19 [ 7] [ 10] [0320100326] +17:04:19 [ 11] [ 6] [157370] +17:04:19 [ 70] [ 3] [301] +17:04:19 ============================================================================ +17:04:19 + + +waiting on router queue for slot.... +17:04:19 Sending to : +17:04:19 ============================================================================ +17:04:19 ============================================================================ +17:04:19 Slot Id : <489> +17:04:19 Transaction Type : RESPONSE +17:04:19 Received From : +17:04:19 ============================================================================ +17:04:19 FNo. Len. Field Value +17:04:19 ============================================================================ +17:04:19 [ 1] [ 4] [0810] +17:04:19 [ 7] [ 10] [0320100326] +17:04:19 [ 11] [ 6] [157370] +17:04:19 [ 39] [ 2] [00] +17:04:19 [ 70] [ 3] [301] +17:04:19 ============================================================================ +17:04:19 Calculate Source COMM Id = 2 +17:04:19 ============================================================================ +17:04:19 + + +waiting on router queue for slot.... +17:04:20 ============================================================================ +17:04:20 Slot Id : <477> +17:04:20 Transaction Type : RESPONSE +17:04:20 Received From : +17:04:20 ============================================================================ +17:04:20 FNo. Len. Field Value +17:04:20 ============================================================================ +17:04:20 [ 1] [ 4] [0210] +17:04:20 [ 2] [ 19] [6227003861190228036] +17:04:20 [ 3] [ 6] [311000] +17:04:20 [ 4] [ 12] [000000000000] +17:04:20 [ 7] [ 10] [0320171206] +17:04:20 [ 11] [ 6] [999974] +17:04:20 [ 12] [ 6] [171206] +17:04:20 [ 13] [ 4] [0320] +17:04:20 [ 15] [ 4] [0320] +17:04:20 [ 18] [ 4] [6011] +17:04:20 [ 22] [ 3] [900] +17:04:20 [ 32] [ 6] [220699] +17:04:20 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:04:20 [ 37] [ 12] [507900281374] +17:04:20 [ 38] [ 6] [999974] +17:04:20 [ 39] [ 2] [03] +17:04:20 [ 41] [ 8] [10000100] +17:04:20 [ 49] [ 3] [418] +17:04:20 [ 54] [ 0] [] +17:04:20 ============================================================================ +17:04:20 Calculate Source COMM Id = 1 +17:04:20 ============================================================================ +17:04:20 + + +waiting on router queue for slot.... +17:04:25 ============================================================================ +17:04:25 Slot Id : <483> +17:04:25 Transaction Type : REQUEST +17:04:25 Received From : +17:04:25 ============================================================================ +17:04:25 FNo. Len. Field Value +17:04:25 ============================================================================ +17:04:25 [ 1] [ 4] [0200] +17:04:25 [ 2] [ 16] [6688990040119396] +17:04:25 [ 3] [ 6] [010000] +17:04:25 [ 4] [ 12] [000010000000] +17:04:25 [ 7] [ 10] [0320100331] +17:04:25 [ 11] [ 6] [270702] +17:04:25 [ 12] [ 6] [170331] +17:04:25 [ 13] [ 4] [0320] +17:04:25 [ 14] [ 4] [9803] +17:04:25 [ 15] [ 4] [0320] +17:04:25 [ 18] [ 4] [6011] +17:04:25 [ 19] [ 3] [418] +17:04:25 [ 22] [ 3] [021] +17:04:25 [ 25] [ 2] [01] +17:04:25 [ 28] [ 9] [D00002000] +17:04:25 [ 32] [ 6] [180893] +17:04:25 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:04:25 [ 37] [ 12] [507910270702] +17:04:25 [ 41] [ 8] [0361BLTB] +17:04:25 [ 42] [ 15] [999999 ] +17:04:25 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +17:04:25 [ 49] [ 3] [418] +17:04:25 [ 52] [ 16] [DCEA30E4C442F722] +17:04:25 ============================================================================ +17:04:25 + + +waiting on router queue for slot.... +17:04:25 Sending to : +17:04:25 ============================================================================ +17:04:25 Sending to : +17:04:25 ============================================================================ +17:04:25 ============================================================================ +17:04:25 Slot Id : <483> +17:04:25 Transaction Type : REQUEST +17:04:25 Received From : +17:04:25 ============================================================================ +17:04:25 FNo. Len. Field Value +17:04:25 ============================================================================ +17:04:25 [ 1] [ 4] [0200] +17:04:25 [ 2] [ 16] [6688990040119396] +17:04:25 [ 3] [ 6] [010000] +17:04:25 [ 4] [ 12] [000010000000] +17:04:25 [ 7] [ 10] [0320100331] +17:04:25 [ 11] [ 6] [270702] +17:04:25 [ 12] [ 6] [170331] +17:04:25 [ 13] [ 4] [0320] +17:04:25 [ 14] [ 4] [9803] +17:04:25 [ 15] [ 4] [0320] +17:04:25 [ 18] [ 4] [6011] +17:04:25 [ 19] [ 3] [418] +17:04:25 [ 22] [ 3] [021] +17:04:25 [ 25] [ 2] [01] +17:04:25 [ 28] [ 9] [D00002000] +17:04:25 [ 32] [ 6] [180893] +17:04:25 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:04:25 [ 37] [ 12] [507910270702] +17:04:25 [ 41] [ 8] [0361BLTB] +17:04:25 [ 42] [ 15] [999999 ] +17:04:25 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +17:04:25 [ 49] [ 3] [418] +17:04:25 [ 52] [ 16] [DCEA30E4C442F722] +17:04:25 ============================================================================ +17:04:25 + + +waiting on router queue for slot.... +17:04:25 Sending to : +17:04:25 ============================================================================ +17:04:25 ============================================================================ +17:04:25 Slot Id : <483> +17:04:25 Transaction Type : REQUEST +17:04:25 Received From : +17:04:25 ============================================================================ +17:04:25 FNo. Len. Field Value +17:04:25 ============================================================================ +17:04:25 [ 1] [ 4] [0200] +17:04:25 [ 2] [ 16] [6688990040119396] +17:04:25 [ 3] [ 6] [010000] +17:04:25 [ 4] [ 12] [000010000000] +17:04:25 [ 7] [ 10] [0320100331] +17:04:25 [ 11] [ 6] [270702] +17:04:25 [ 12] [ 6] [170331] +17:04:25 [ 13] [ 4] [0320] +17:04:25 [ 14] [ 4] [9803] +17:04:25 [ 15] [ 4] [0320] +17:04:25 [ 18] [ 4] [6011] +17:04:25 [ 19] [ 3] [418] +17:04:25 [ 22] [ 3] [021] +17:04:25 [ 25] [ 2] [01] +17:04:25 [ 28] [ 9] [D00002000] +17:04:25 [ 32] [ 6] [180893] +17:04:25 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:04:25 [ 37] [ 12] [507910270702] +17:04:25 [ 41] [ 8] [0361BLTB] +17:04:25 [ 42] [ 15] [999999 ] +17:04:25 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +17:04:25 [ 49] [ 3] [418] +17:04:25 [ 52] [ 16] [A7E7F766A5506711] +17:04:25 ============================================================================ +17:04:25 + + +waiting on router queue for slot.... +17:04:25 Sending to : <0> +17:04:25 ============================================================================ +17:04:25 ============================================================================ +17:04:25 Slot Id : <483> +17:04:25 Transaction Type : RESPONSE +17:04:25 Received From : +17:04:25 ============================================================================ +17:04:25 FNo. Len. Field Value +17:04:25 ============================================================================ +17:04:25 [ 1] [ 4] [0210] +17:04:25 [ 2] [ 16] [6688990040119396] +17:04:25 [ 3] [ 6] [010000] +17:04:25 [ 4] [ 12] [000010000000] +17:04:25 [ 7] [ 10] [0320100331] +17:04:25 [ 11] [ 6] [270702] +17:04:25 [ 12] [ 6] [170331] +17:04:25 [ 13] [ 4] [0320] +17:04:25 [ 15] [ 4] [0320] +17:04:25 [ 18] [ 4] [6011] +17:04:25 [ 19] [ 3] [418] +17:04:25 [ 22] [ 3] [021] +17:04:25 [ 32] [ 6] [180893] +17:04:25 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:04:25 [ 37] [ 12] [507910270702] +17:04:25 [ 39] [ 2] [14] +17:04:25 [ 41] [ 8] [0361BLTB] +17:04:25 [ 49] [ 3] [418] +17:04:25 ============================================================================ +17:04:25 Sending to : +17:04:25 ============================================================================ +17:04:25 + + +waiting on router queue for slot.... +17:04:26 ============================================================================ +17:04:26 Slot Id : <483> +17:04:26 Transaction Type : RESPONSE +17:04:26 Received From : +17:04:26 ============================================================================ +17:04:26 FNo. Len. Field Value +17:04:26 ============================================================================ +17:04:26 [ 1] [ 4] [0210] +17:04:26 [ 2] [ 16] [6688990040119396] +17:04:26 [ 3] [ 6] [010000] +17:04:26 [ 4] [ 12] [000010000000] +17:04:26 [ 7] [ 10] [0320100331] +17:04:26 [ 11] [ 6] [270702] +17:04:26 [ 12] [ 6] [170331] +17:04:26 [ 13] [ 4] [0320] +17:04:26 [ 15] [ 4] [0320] +17:04:26 [ 18] [ 4] [6011] +17:04:26 [ 19] [ 3] [418] +17:04:26 [ 22] [ 3] [021] +17:04:26 [ 32] [ 6] [180893] +17:04:26 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:04:26 [ 37] [ 12] [507910270702] +17:04:26 [ 39] [ 2] [14] +17:04:26 [ 41] [ 8] [0361BLTB] +17:04:26 [ 49] [ 3] [418] +17:04:26 ============================================================================ +17:04:26 Calculate Source COMM Id = 2 +17:04:26 ============================================================================ +17:04:26 + + +waiting on router queue for slot.... +17:04:31 ============================================================================ +17:04:31 Slot Id : <485> +17:04:31 Transaction Type : REQUEST +17:04:31 Received From : +17:04:31 ============================================================================ +17:04:31 FNo. Len. Field Value +17:04:31 ============================================================================ +17:04:31 [ 1] [ 4] [0200] +17:04:31 [ 2] [ 16] [6688990103269203] +17:04:31 [ 3] [ 6] [010000] +17:04:31 [ 4] [ 12] [000100000000] +17:04:31 [ 7] [ 10] [0320170426] +17:04:31 [ 11] [ 6] [809485] +17:04:31 [ 12] [ 6] [170426] +17:04:31 [ 13] [ 4] [0320] +17:04:31 [ 15] [ 4] [0320] +17:04:31 [ 18] [ 4] [6011] +17:04:31 [ 22] [ 3] [900] +17:04:31 [ 25] [ 2] [02] +17:04:31 [ 28] [ 9] [D00002000] +17:04:31 [ 32] [ 6] [621354] +17:04:31 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:04:31 [ 37] [ 12] [507903499646] +17:04:31 [ 41] [ 8] [06002200] +17:04:31 [ 42] [ 15] [NATIVE ] +17:04:31 [ 43] [ 40] [Beng Market Beng LAO] +17:04:31 [ 49] [ 3] [418] +17:04:31 [ 52] [ 16] [570775FC25924772] +17:04:31 ============================================================================ +17:04:31 + + +waiting on router queue for slot.... +17:04:31 Sending to : +17:04:31 ============================================================================ +17:04:31 Sending to : +17:04:31 ============================================================================ +17:04:31 ============================================================================ +17:04:31 Slot Id : <485> +17:04:31 Transaction Type : REQUEST +17:04:31 Received From : +17:04:31 ============================================================================ +17:04:31 FNo. Len. Field Value +17:04:31 ============================================================================ +17:04:31 [ 1] [ 4] [0200] +17:04:31 [ 2] [ 16] [6688990103269203] +17:04:31 [ 3] [ 6] [010000] +17:04:31 [ 4] [ 12] [000100000000] +17:04:31 [ 7] [ 10] [0320170426] +17:04:31 [ 11] [ 6] [809485] +17:04:31 [ 12] [ 6] [170426] +17:04:31 [ 13] [ 4] [0320] +17:04:31 [ 15] [ 4] [0320] +17:04:31 [ 18] [ 4] [6011] +17:04:31 [ 22] [ 3] [900] +17:04:31 [ 25] [ 2] [02] +17:04:31 [ 28] [ 9] [D00002000] +17:04:31 [ 32] [ 6] [621354] +17:04:31 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:04:31 [ 37] [ 12] [507903499646] +17:04:31 [ 41] [ 8] [06002200] +17:04:31 [ 42] [ 15] [NATIVE ] +17:04:31 [ 43] [ 40] [Beng Market Beng LAO] +17:04:31 [ 49] [ 3] [418] +17:04:31 [ 52] [ 16] [570775FC25924772] +17:04:31 ============================================================================ +17:04:31 + + +waiting on router queue for slot.... +17:04:31 Sending to : +17:04:31 ============================================================================ +17:04:31 ============================================================================ +17:04:31 Slot Id : <485> +17:04:31 Transaction Type : REQUEST +17:04:31 Received From : +17:04:31 ============================================================================ +17:04:31 FNo. Len. Field Value +17:04:31 ============================================================================ +17:04:31 [ 1] [ 4] [0200] +17:04:31 [ 2] [ 16] [6688990103269203] +17:04:31 [ 3] [ 6] [010000] +17:04:31 [ 4] [ 12] [000100000000] +17:04:31 [ 7] [ 10] [0320170426] +17:04:31 [ 11] [ 6] [809485] +17:04:31 [ 12] [ 6] [170426] +17:04:31 [ 13] [ 4] [0320] +17:04:31 [ 15] [ 4] [0320] +17:04:31 [ 18] [ 4] [6011] +17:04:31 [ 22] [ 3] [900] +17:04:31 [ 25] [ 2] [02] +17:04:31 [ 28] [ 9] [D00002000] +17:04:31 [ 32] [ 6] [621354] +17:04:31 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:04:31 [ 37] [ 12] [507903499646] +17:04:31 [ 41] [ 8] [06002200] +17:04:31 [ 42] [ 15] [NATIVE ] +17:04:31 [ 43] [ 40] [Beng Market Beng LAO] +17:04:31 [ 49] [ 3] [418] +17:04:31 [ 52] [ 16] [004B73FEB4E6BE43] +17:04:31 ============================================================================ +17:04:31 + + +waiting on router queue for slot.... +17:04:31 Sending to : <4> +17:04:31 ============================================================================ +17:04:32 ============================================================================ +17:04:32 Slot Id : <485> +17:04:32 Transaction Type : RESPONSE +17:04:32 Received From : +17:04:32 ============================================================================ +17:04:32 FNo. Len. Field Value +17:04:32 ============================================================================ +17:04:32 [ 1] [ 4] [0210] +17:04:32 [ 2] [ 16] [6688990103269203] +17:04:32 [ 3] [ 6] [010000] +17:04:32 [ 4] [ 12] [000100000000] +17:04:32 [ 11] [ 6] [809485] +17:04:32 [ 12] [ 6] [170426] +17:04:32 [ 15] [ 4] [0320] +17:04:32 [ 18] [ 4] [6011] +17:04:32 [ 32] [ 6] [621354] +17:04:32 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:04:32 [ 37] [ 12] [507903499646] +17:04:32 [ 38] [ 6] [415406] +17:04:32 [ 39] [ 2] [00] +17:04:32 [ 41] [ 8] [06002200] +17:04:32 [ 49] [ 3] [418] +17:04:32 [ 54] [ 20] [0002418C000814141651] +17:04:32 ============================================================================ +17:04:32 Sending to : +17:04:32 ============================================================================ +17:04:32 + + +waiting on router queue for slot.... +17:04:33 ============================================================================ +17:04:33 Slot Id : <486> +17:04:33 Transaction Type : REQUEST +17:04:33 Received From : +17:04:33 ============================================================================ +17:04:33 FNo. Len. Field Value +17:04:33 ============================================================================ +17:04:33 [ 1] [ 4] [0200] +17:04:33 [ 2] [ 16] [1808930600017396] +17:04:33 [ 3] [ 6] [010000] +17:04:33 [ 4] [ 12] [000002000000] +17:04:33 [ 7] [ 10] [0320170428] +17:04:33 [ 11] [ 6] [809491] +17:04:33 [ 12] [ 6] [170428] +17:04:33 [ 13] [ 4] [0320] +17:04:33 [ 15] [ 4] [0320] +17:04:33 [ 18] [ 4] [6011] +17:04:33 [ 22] [ 3] [900] +17:04:33 [ 25] [ 2] [02] +17:04:33 [ 28] [ 9] [D00002000] +17:04:33 [ 32] [ 6] [621354] +17:04:33 [ 35] [ 27] [1808930600017396=1803500352] +17:04:33 [ 37] [ 12] [507905057822] +17:04:33 [ 41] [ 8] [03004300] +17:04:33 [ 42] [ 15] [NATIVE ] +17:04:33 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +17:04:33 [ 49] [ 3] [418] +17:04:33 [ 52] [ 16] [2C990632CF9209D4] +17:04:33 ============================================================================ +17:04:33 + + +waiting on router queue for slot.... +17:04:33 Sending to : +17:04:33 ============================================================================ +17:04:33 Sending to : +17:04:33 ============================================================================ +17:04:33 ============================================================================ +17:04:33 Slot Id : <486> +17:04:33 Transaction Type : REQUEST +17:04:33 Received From : +17:04:33 ============================================================================ +17:04:33 FNo. Len. Field Value +17:04:33 ============================================================================ +17:04:33 [ 1] [ 4] [0200] +17:04:33 [ 2] [ 16] [1808930600017396] +17:04:33 [ 3] [ 6] [010000] +17:04:33 [ 4] [ 12] [000002000000] +17:04:33 [ 7] [ 10] [0320170428] +17:04:33 [ 11] [ 6] [809491] +17:04:33 [ 12] [ 6] [170428] +17:04:33 [ 13] [ 4] [0320] +17:04:33 [ 15] [ 4] [0320] +17:04:33 [ 18] [ 4] [6011] +17:04:33 [ 22] [ 3] [900] +17:04:33 [ 25] [ 2] [02] +17:04:33 [ 28] [ 9] [D00002000] +17:04:33 [ 32] [ 6] [621354] +17:04:33 [ 35] [ 27] [1808930600017396=1803500352] +17:04:33 [ 37] [ 12] [507905057822] +17:04:33 [ 41] [ 8] [03004300] +17:04:33 [ 42] [ 15] [NATIVE ] +17:04:33 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +17:04:33 [ 49] [ 3] [418] +17:04:33 [ 52] [ 16] [2C990632CF9209D4] +17:04:33 ============================================================================ +17:04:33 + + +waiting on router queue for slot.... +17:04:33 Sending to : +17:04:33 ============================================================================ +17:04:33 ============================================================================ +17:04:33 Slot Id : <486> +17:04:33 Transaction Type : REQUEST +17:04:33 Received From : +17:04:33 ============================================================================ +17:04:33 FNo. Len. Field Value +17:04:33 ============================================================================ +17:04:33 [ 1] [ 4] [0200] +17:04:33 [ 2] [ 16] [1808930600017396] +17:04:33 [ 3] [ 6] [010000] +17:04:33 [ 4] [ 12] [000002000000] +17:04:33 [ 7] [ 10] [0320170428] +17:04:33 [ 11] [ 6] [809491] +17:04:33 [ 12] [ 6] [170428] +17:04:33 [ 13] [ 4] [0320] +17:04:33 [ 15] [ 4] [0320] +17:04:33 [ 18] [ 4] [6011] +17:04:33 [ 22] [ 3] [900] +17:04:33 [ 25] [ 2] [02] +17:04:33 [ 28] [ 9] [D00002000] +17:04:33 [ 32] [ 6] [621354] +17:04:33 [ 35] [ 27] [1808930600017396=1803500352] +17:04:33 [ 37] [ 12] [507905057822] +17:04:33 [ 41] [ 8] [03004300] +17:04:33 [ 42] [ 15] [NATIVE ] +17:04:33 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +17:04:33 [ 49] [ 3] [418] +17:04:33 [ 52] [ 16] [9B6A8BBE138B8AD8] +17:04:33 ============================================================================ +17:04:33 + + +waiting on router queue for slot.... +17:04:33 Sending to : <2> +17:04:33 ============================================================================ +17:04:34 ============================================================================ +17:04:34 Slot Id : <485> +17:04:34 Transaction Type : RESPONSE +17:04:34 Received From : +17:04:34 ============================================================================ +17:04:34 FNo. Len. Field Value +17:04:34 ============================================================================ +17:04:34 [ 1] [ 4] [0210] +17:04:34 [ 2] [ 16] [6688990103269203] +17:04:34 [ 3] [ 6] [010000] +17:04:34 [ 4] [ 12] [000100000000] +17:04:34 [ 11] [ 6] [809485] +17:04:34 [ 12] [ 6] [170426] +17:04:34 [ 15] [ 4] [0320] +17:04:34 [ 18] [ 4] [6011] +17:04:34 [ 32] [ 6] [621354] +17:04:34 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:04:34 [ 37] [ 12] [507903499646] +17:04:34 [ 38] [ 6] [415406] +17:04:34 [ 39] [ 2] [00] +17:04:34 [ 41] [ 8] [06002200] +17:04:34 [ 49] [ 3] [418] +17:04:34 [ 54] [ 20] [0002418C000814141651] +17:04:34 ============================================================================ +17:04:34 Calculate Source COMM Id = 0 +17:04:34 ============================================================================ +17:04:34 + + +waiting on router queue for slot.... +17:04:36 ============================================================================ +17:04:36 Slot Id : <14> +17:04:36 Transaction Type : REQUEST +17:04:36 Received From : +17:04:36 ============================================================================ +17:04:36 FNo. Len. Field Value +17:04:36 ============================================================================ +17:04:36 [ 1] [ 4] [0200] +17:04:36 [ 2] [ 16] [6688990107208108] +17:04:36 [ 3] [ 6] [011000] +17:04:36 [ 4] [ 12] [000080000000] +17:04:36 [ 7] [ 10] [0320170431] +17:04:36 [ 11] [ 6] [809521] +17:04:36 [ 12] [ 6] [170431] +17:04:36 [ 13] [ 4] [0320] +17:04:36 [ 15] [ 4] [0320] +17:04:36 [ 18] [ 4] [6011] +17:04:36 [ 22] [ 3] [900] +17:04:36 [ 25] [ 2] [02] +17:04:36 [ 28] [ 9] [D00002000] +17:04:36 [ 32] [ 6] [621354] +17:04:36 [ 35] [ 37] [6688990107208108=44021231810879400000] +17:04:36 [ 37] [ 12] [507904154090] +17:04:36 [ 41] [ 8] [20001000] +17:04:36 [ 42] [ 15] [NATIVE ] +17:04:36 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:04:36 [ 49] [ 3] [418] +17:04:36 [ 52] [ 16] [FD6EE897C1572945] +17:04:36 ============================================================================ +17:04:36 + + +waiting on router queue for slot.... +17:04:36 Sending to : +17:04:36 ============================================================================ +17:04:36 Sending to : +17:04:36 ============================================================================ +17:04:36 ============================================================================ +17:04:36 Slot Id : <14> +17:04:36 Transaction Type : REQUEST +17:04:36 Received From : +17:04:36 ============================================================================ +17:04:36 FNo. Len. Field Value +17:04:36 ============================================================================ +17:04:36 [ 1] [ 4] [0200] +17:04:36 [ 2] [ 16] [6688990107208108] +17:04:36 [ 3] [ 6] [011000] +17:04:36 [ 4] [ 12] [000080000000] +17:04:36 [ 7] [ 10] [0320170431] +17:04:36 [ 11] [ 6] [809521] +17:04:36 [ 12] [ 6] [170431] +17:04:36 [ 13] [ 4] [0320] +17:04:36 [ 15] [ 4] [0320] +17:04:36 [ 18] [ 4] [6011] +17:04:36 [ 22] [ 3] [900] +17:04:36 [ 25] [ 2] [02] +17:04:36 [ 28] [ 9] [D00002000] +17:04:36 [ 32] [ 6] [621354] +17:04:36 [ 35] [ 37] [6688990107208108=44021231810879400000] +17:04:36 [ 37] [ 12] [507904154090] +17:04:36 [ 41] [ 8] [20001000] +17:04:36 [ 42] [ 15] [NATIVE ] +17:04:36 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:04:36 [ 49] [ 3] [418] +17:04:36 [ 52] [ 16] [FD6EE897C1572945] +17:04:36 ============================================================================ +17:04:36 + + +waiting on router queue for slot.... +17:04:36 Sending to : +17:04:36 ============================================================================ +17:04:36 ============================================================================ +17:04:36 Slot Id : <14> +17:04:36 Transaction Type : REQUEST +17:04:36 Received From : +17:04:36 ============================================================================ +17:04:36 FNo. Len. Field Value +17:04:36 ============================================================================ +17:04:36 [ 1] [ 4] [0200] +17:04:36 [ 2] [ 16] [6688990107208108] +17:04:36 [ 3] [ 6] [011000] +17:04:36 [ 4] [ 12] [000080000000] +17:04:36 [ 7] [ 10] [0320170431] +17:04:36 [ 11] [ 6] [809521] +17:04:36 [ 12] [ 6] [170431] +17:04:36 [ 13] [ 4] [0320] +17:04:36 [ 15] [ 4] [0320] +17:04:36 [ 18] [ 4] [6011] +17:04:36 [ 22] [ 3] [900] +17:04:36 [ 25] [ 2] [02] +17:04:36 [ 28] [ 9] [D00002000] +17:04:36 [ 32] [ 6] [621354] +17:04:36 [ 35] [ 37] [6688990107208108=44021231810879400000] +17:04:36 [ 37] [ 12] [507904154090] +17:04:36 [ 41] [ 8] [20001000] +17:04:36 [ 42] [ 15] [NATIVE ] +17:04:36 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:04:36 [ 49] [ 3] [418] +17:04:36 [ 52] [ 16] [D0C1E6ADB4960258] +17:04:36 ============================================================================ +17:04:36 + + +waiting on router queue for slot.... +17:04:36 Sending to : <4> +17:04:36 ============================================================================ +17:04:37 ============================================================================ +17:04:37 Slot Id : <14> +17:04:37 Transaction Type : RESPONSE +17:04:37 Received From : +17:04:37 ============================================================================ +17:04:37 FNo. Len. Field Value +17:04:37 ============================================================================ +17:04:37 [ 1] [ 4] [0210] +17:04:37 [ 2] [ 16] [6688990107208108] +17:04:37 [ 3] [ 6] [011000] +17:04:37 [ 4] [ 12] [000080000000] +17:04:37 [ 11] [ 6] [809521] +17:04:37 [ 12] [ 6] [170431] +17:04:37 [ 15] [ 4] [0320] +17:04:37 [ 18] [ 4] [6011] +17:04:37 [ 32] [ 6] [621354] +17:04:37 [ 35] [ 37] [6688990107208108=44021231810879400000] +17:04:37 [ 37] [ 12] [507904154090] +17:04:37 [ 38] [ 6] [433314] +17:04:37 [ 39] [ 2] [00] +17:04:37 [ 41] [ 8] [20001000] +17:04:37 [ 49] [ 3] [418] +17:04:37 [ 54] [ 20] [1002418C000017592736] +17:04:37 ============================================================================ +17:04:37 Sending to : +17:04:37 ============================================================================ +17:04:37 + + +waiting on router queue for slot.... +17:04:38 ============================================================================ +17:04:38 Slot Id : <486> +17:04:38 Transaction Type : RESPONSE +17:04:38 Received From : +17:04:38 ============================================================================ +17:04:38 FNo. Len. Field Value +17:04:38 ============================================================================ +17:04:38 [ 1] [ 4] [0210] +17:04:38 [ 2] [ 16] [1808930600017396] +17:04:38 [ 3] [ 6] [010000] +17:04:38 [ 4] [ 12] [000002000000] +17:04:38 [ 6] [ 12] [000002000000] +17:04:38 [ 7] [ 10] [0320170428] +17:04:38 [ 11] [ 6] [809491] +17:04:38 [ 12] [ 6] [170428] +17:04:38 [ 13] [ 4] [0320] +17:04:38 [ 18] [ 4] [6011] +17:04:38 [ 19] [ 3] [418] +17:04:38 [ 22] [ 3] [021] +17:04:38 [ 32] [ 6] [621354] +17:04:38 [ 35] [ 27] [1808930600017396=1803500352] +17:04:38 [ 37] [ 12] [507905057822] +17:04:38 [ 38] [ 6] [809491] +17:04:38 [ 39] [ 2] [00] +17:04:38 [ 41] [ 8] [03004300] +17:04:38 [ 49] [ 3] [418] +17:04:38 [ 52] [ 16] [9B6A8BBE138B8AD8] +17:04:38 [ 54] [ 20] [1001418C000006298100] +17:04:38 ============================================================================ +17:04:38 Sending to : +17:04:38 ============================================================================ +17:04:38 + + +waiting on router queue for slot.... +17:04:39 ============================================================================ +17:04:39 Slot Id : <14> +17:04:39 Transaction Type : RESPONSE +17:04:39 Received From : +17:04:39 ============================================================================ +17:04:39 FNo. Len. Field Value +17:04:39 ============================================================================ +17:04:39 [ 1] [ 4] [0210] +17:04:39 [ 2] [ 16] [6688990107208108] +17:04:39 [ 3] [ 6] [011000] +17:04:39 [ 4] [ 12] [000080000000] +17:04:39 [ 11] [ 6] [809521] +17:04:39 [ 12] [ 6] [170431] +17:04:39 [ 15] [ 4] [0320] +17:04:39 [ 18] [ 4] [6011] +17:04:39 [ 32] [ 6] [621354] +17:04:39 [ 35] [ 37] [6688990107208108=44021231810879400000] +17:04:39 [ 37] [ 12] [507904154090] +17:04:39 [ 38] [ 6] [433314] +17:04:39 [ 39] [ 2] [00] +17:04:39 [ 41] [ 8] [20001000] +17:04:39 [ 49] [ 3] [418] +17:04:39 [ 54] [ 20] [1002418C000017592736] +17:04:39 ============================================================================ +17:04:39 Calculate Source COMM Id = 0 +17:04:39 ============================================================================ +17:04:39 + + +waiting on router queue for slot.... +17:04:40 ============================================================================ +17:04:40 Slot Id : <486> +17:04:40 Transaction Type : RESPONSE +17:04:40 Received From : +17:04:40 ============================================================================ +17:04:40 FNo. Len. Field Value +17:04:40 ============================================================================ +17:04:40 [ 1] [ 4] [0210] +17:04:40 [ 2] [ 16] [1808930600017396] +17:04:40 [ 3] [ 6] [010000] +17:04:40 [ 4] [ 12] [000002000000] +17:04:40 [ 6] [ 12] [000002000000] +17:04:40 [ 7] [ 10] [0320170428] +17:04:40 [ 11] [ 6] [809491] +17:04:40 [ 12] [ 6] [170428] +17:04:40 [ 13] [ 4] [0320] +17:04:40 [ 18] [ 4] [6011] +17:04:40 [ 19] [ 3] [418] +17:04:40 [ 22] [ 3] [021] +17:04:40 [ 32] [ 6] [621354] +17:04:40 [ 35] [ 27] [1808930600017396=1803500352] +17:04:40 [ 37] [ 12] [507905057822] +17:04:40 [ 38] [ 6] [809491] +17:04:40 [ 39] [ 2] [00] +17:04:40 [ 41] [ 8] [03004300] +17:04:40 [ 49] [ 3] [418] +17:04:40 [ 52] [ 16] [9B6A8BBE138B8AD8] +17:04:40 [ 54] [ 20] [1001418C000006298100] +17:04:40 ============================================================================ +17:04:40 Calculate Source COMM Id = 0 +17:04:40 ============================================================================ +17:04:40 + + +waiting on router queue for slot.... +17:04:41 ============================================================================ +17:04:41 Slot Id : <474> +17:04:41 Transaction Type : REQUEST +17:04:41 Received From : +17:04:41 ============================================================================ +17:04:41 FNo. Len. Field Value +17:04:41 ============================================================================ +17:04:41 [ 1] [ 4] [0800] +17:04:41 [ 2] [ 5] [02531] +17:04:41 [ 3] [ 6] [579178] +17:04:41 [ 7] [ 10] [0320100441] +17:04:41 [ 11] [ 6] [807403] +17:04:41 [ 15] [ 10] [0320100441] +17:04:41 [ 37] [ 11] [57917807403] +17:04:41 [ 70] [ 3] [001] +17:04:41 ============================================================================ +17:04:41 + + +waiting on router queue for slot.... +17:04:41 ============================================================================ +17:04:41 Slot Id : <474> +17:04:41 Transaction Type : RESPONSE +17:04:41 Received From : +17:04:41 ============================================================================ +17:04:41 FNo. Len. Field Value +17:04:41 ============================================================================ +17:04:41 [ 1] [ 4] [0810] +17:04:41 [ 7] [ 10] [0320100441] +17:04:41 [ 11] [ 6] [807403] +17:04:41 [ 15] [ 4] [0320] +17:04:41 [ 37] [ 12] [57917807403] +17:04:41 [ 39] [ 2] [00] +17:04:41 [ 70] [ 3] [001] +17:04:41 ============================================================================ +17:04:41 Sending to : +17:04:41 ============================================================================ +17:04:41 + + +waiting on router queue for slot.... +17:04:43 ============================================================================ +17:04:43 Slot Id : <472> +17:04:43 Transaction Type : REQUEST +17:04:43 Received From : +17:04:43 ============================================================================ +17:04:43 FNo. Len. Field Value +17:04:43 ============================================================================ +17:04:43 [ 1] [ 4] [0800] +17:04:43 [ 7] [ 10] [0320100438] +17:04:43 [ 11] [ 6] [077882] +17:04:43 [ 37] [ 12] [507917077882] +17:04:43 [ 70] [ 3] [001] +17:04:43 ============================================================================ +17:04:43 + + +waiting on router queue for slot.... +17:04:43 Sending to : +17:04:43 ============================================================================ +17:04:43 ============================================================================ +17:04:43 Slot Id : <472> +17:04:43 Transaction Type : RESPONSE +17:04:43 Received From : +17:04:43 ============================================================================ +17:04:43 FNo. Len. Field Value +17:04:43 ============================================================================ +17:04:43 [ 1] [ 4] [0810] +17:04:43 [ 7] [ 10] [0320100438] +17:04:43 [ 11] [ 6] [077882] +17:04:43 [ 37] [ 12] [507917077882] +17:04:43 [ 39] [ 2] [00] +17:04:43 [ 70] [ 3] [001] +17:04:43 ============================================================================ +17:04:43 Calculate Source COMM Id = 0 +17:04:43 ============================================================================ +17:04:43 + + +waiting on router queue for slot.... +17:04:45 ============================================================================ +17:04:45 Slot Id : <6> +17:04:45 Transaction Type : REQUEST +17:04:45 Received From : +17:04:45 ============================================================================ +17:04:45 FNo. Len. Field Value +17:04:45 ============================================================================ +17:04:45 [ 1] [ 4] [0800] +17:04:45 [ 7] [ 10] [0321001634] +17:04:45 [ 11] [ 6] [171634] +17:04:45 [ 37] [ 12] [57917171634] +17:04:45 [ 70] [ 3] [301] +17:04:45 ============================================================================ +17:04:45 + + +waiting on router queue for slot.... +17:04:45 Sending to : +17:04:45 ============================================================================ +17:04:45 ============================================================================ +17:04:45 Slot Id : <6> +17:04:45 Transaction Type : RESPONSE +17:04:45 Received From : +17:04:45 ============================================================================ +17:04:45 FNo. Len. Field Value +17:04:45 ============================================================================ +17:04:45 [ 1] [ 4] [0810] +17:04:45 [ 7] [ 10] [0321001634] +17:04:45 [ 11] [ 6] [171634] +17:04:45 [ 37] [ 12] [579171716340] +17:04:45 [ 39] [ 2] [00] +17:04:45 [ 70] [ 3] [810] +17:04:45 ============================================================================ +17:04:45 Calculate Source COMM Id = 6 +17:04:45 ============================================================================ +17:04:45 + + +waiting on router queue for slot.... +17:04:45 ============================================================================ +17:04:45 Slot Id : <16> +17:04:45 Transaction Type : REQUEST +17:04:45 Received From : +17:04:45 ============================================================================ +17:04:45 FNo. Len. Field Value +17:04:45 ============================================================================ +17:04:45 [ 1] [ 4] [0800] +17:04:45 [ 7] [ 10] [0320100352] +17:04:45 [ 11] [ 6] [157371] +17:04:45 [ 70] [ 3] [301] +17:04:45 ============================================================================ +17:04:45 + + +waiting on router queue for slot.... +17:04:45 Sending to : +17:04:45 ============================================================================ +17:04:45 ============================================================================ +17:04:45 Slot Id : <16> +17:04:45 Transaction Type : RESPONSE +17:04:45 Received From : +17:04:45 ============================================================================ +17:04:45 FNo. Len. Field Value +17:04:45 ============================================================================ +17:04:45 [ 1] [ 4] [0810] +17:04:45 [ 7] [ 10] [0320100352] +17:04:45 [ 11] [ 6] [157371] +17:04:45 [ 39] [ 2] [00] +17:04:45 [ 70] [ 3] [301] +17:04:45 ============================================================================ +17:04:45 Calculate Source COMM Id = 2 +17:04:45 ============================================================================ +17:04:45 + + +waiting on router queue for slot.... +17:04:50 ============================================================================ +17:04:50 Slot Id : <13> +17:04:50 Transaction Type : REQUEST +17:04:50 Received From : +17:04:50 ============================================================================ +17:04:50 FNo. Len. Field Value +17:04:50 ============================================================================ +17:04:50 [ 1] [ 4] [0200] +17:04:50 [ 2] [ 16] [6213544002117783] +17:04:50 [ 3] [ 6] [010000] +17:04:50 [ 4] [ 12] [000047000000] +17:04:50 [ 7] [ 10] [0320170240] +17:04:50 [ 11] [ 6] [952852] +17:04:50 [ 12] [ 6] [170240] +17:04:50 [ 13] [ 4] [0320] +17:04:50 [ 15] [ 4] [0320] +17:04:50 [ 18] [ 4] [6011] +17:04:50 [ 19] [ 3] [418] +17:04:50 [ 22] [ 3] [021] +17:04:50 [ 25] [ 2] [01] +17:04:50 [ 28] [ 9] [D00002000] +17:04:50 [ 32] [ 6] [668899] +17:04:50 [ 35] [ 32] [6213544002117783=491212011778503] +17:04:50 [ 37] [ 12] [507902025655] +17:04:50 [ 41] [ 8] [03414002] +17:04:50 [ 42] [ 15] [APT ] +17:04:50 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:04:50 [ 49] [ 3] [418] +17:04:50 [ 52] [ 16] [245E02E265D64D79] +17:04:50 ============================================================================ +17:04:50 + + +waiting on router queue for slot.... +17:04:50 Sending to : +17:04:50 ============================================================================ +17:04:50 Sending to : +17:04:50 ============================================================================ +17:04:51 ============================================================================ +17:04:51 Slot Id : <13> +17:04:51 Transaction Type : REQUEST +17:04:51 Received From : +17:04:51 ============================================================================ +17:04:51 FNo. Len. Field Value +17:04:51 ============================================================================ +17:04:51 [ 1] [ 4] [0200] +17:04:51 [ 2] [ 16] [6213544002117783] +17:04:51 [ 3] [ 6] [010000] +17:04:51 [ 4] [ 12] [000047000000] +17:04:51 [ 7] [ 10] [0320170240] +17:04:51 [ 11] [ 6] [952852] +17:04:51 [ 12] [ 6] [170240] +17:04:51 [ 13] [ 4] [0320] +17:04:51 [ 15] [ 4] [0320] +17:04:51 [ 18] [ 4] [6011] +17:04:51 [ 19] [ 3] [418] +17:04:51 [ 22] [ 3] [021] +17:04:51 [ 25] [ 2] [01] +17:04:51 [ 28] [ 9] [D00002000] +17:04:51 [ 32] [ 6] [668899] +17:04:51 [ 35] [ 32] [6213544002117783=491212011778503] +17:04:51 [ 37] [ 12] [507902025655] +17:04:51 [ 41] [ 8] [03414002] +17:04:51 [ 42] [ 15] [APT ] +17:04:51 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:04:51 [ 49] [ 3] [418] +17:04:51 [ 52] [ 16] [245E02E265D64D79] +17:04:51 ============================================================================ +17:04:51 + + +waiting on router queue for slot.... +17:04:51 Sending to : +17:04:51 ============================================================================ +17:04:51 ============================================================================ +17:04:51 Slot Id : <13> +17:04:51 Transaction Type : REQUEST +17:04:51 Received From : +17:04:51 ============================================================================ +17:04:51 FNo. Len. Field Value +17:04:51 ============================================================================ +17:04:51 [ 1] [ 4] [0200] +17:04:51 [ 2] [ 16] [6213544002117783] +17:04:51 [ 3] [ 6] [010000] +17:04:51 [ 4] [ 12] [000047000000] +17:04:51 [ 7] [ 10] [0320170240] +17:04:51 [ 11] [ 6] [952852] +17:04:51 [ 12] [ 6] [170240] +17:04:51 [ 13] [ 4] [0320] +17:04:51 [ 15] [ 4] [0320] +17:04:51 [ 18] [ 4] [6011] +17:04:51 [ 19] [ 3] [418] +17:04:51 [ 22] [ 3] [021] +17:04:51 [ 25] [ 2] [01] +17:04:51 [ 28] [ 9] [D00002000] +17:04:51 [ 32] [ 6] [668899] +17:04:51 [ 35] [ 32] [6213544002117783=491212011778503] +17:04:51 [ 37] [ 12] [507902025655] +17:04:51 [ 41] [ 8] [03414002] +17:04:51 [ 42] [ 15] [APT ] +17:04:51 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:04:51 [ 49] [ 3] [418] +17:04:51 [ 52] [ 16] [D8A503D3655A548F] +17:04:51 ============================================================================ +17:04:51 + + +waiting on router queue for slot.... +17:04:51 Sending to : <0> +17:04:51 ============================================================================ +17:04:51 ============================================================================ +17:04:51 Slot Id : <13> +17:04:51 Transaction Type : RESPONSE +17:04:51 Received From : +17:04:51 ============================================================================ +17:04:51 FNo. Len. Field Value +17:04:51 ============================================================================ +17:04:51 [ 1] [ 4] [0210] +17:04:51 [ 2] [ 16] [6213544002117783] +17:04:51 [ 3] [ 6] [010000] +17:04:51 [ 4] [ 12] [000047000000] +17:04:51 [ 7] [ 10] [0320170240] +17:04:51 [ 11] [ 6] [952852] +17:04:51 [ 12] [ 6] [170240] +17:04:51 [ 13] [ 4] [0320] +17:04:51 [ 15] [ 4] [0320] +17:04:51 [ 18] [ 4] [6011] +17:04:51 [ 19] [ 3] [418] +17:04:51 [ 32] [ 6] [668899] +17:04:51 [ 35] [ 32] [6213544002117783=491212011778503] +17:04:51 [ 37] [ 12] [507902025655] +17:04:51 [ 38] [ 6] [306707] +17:04:51 [ 39] [ 2] [00] +17:04:51 [ 41] [ 8] [03414002] +17:04:51 [ 49] [ 3] [418] +17:04:51 [ 54] [ 40] [0001418C0000050137820002418C000005013782] +17:04:51 ============================================================================ +17:04:51 Sending to : +17:04:51 ============================================================================ +17:04:51 + + +waiting on router queue for slot.... +17:04:53 ============================================================================ +17:04:53 Slot Id : <13> +17:04:53 Transaction Type : RESPONSE +17:04:53 Received From : +17:04:53 ============================================================================ +17:04:53 FNo. Len. Field Value +17:04:53 ============================================================================ +17:04:53 [ 1] [ 4] [0210] +17:04:53 [ 2] [ 16] [6213544002117783] +17:04:53 [ 3] [ 6] [010000] +17:04:53 [ 4] [ 12] [000047000000] +17:04:53 [ 7] [ 10] [0320170240] +17:04:53 [ 11] [ 6] [952852] +17:04:53 [ 12] [ 6] [170240] +17:04:53 [ 13] [ 4] [0320] +17:04:53 [ 15] [ 4] [0320] +17:04:53 [ 18] [ 4] [6011] +17:04:53 [ 19] [ 3] [418] +17:04:53 [ 32] [ 6] [668899] +17:04:53 [ 35] [ 32] [6213544002117783=491212011778503] +17:04:53 [ 37] [ 12] [507902025655] +17:04:53 [ 38] [ 6] [306707] +17:04:53 [ 39] [ 2] [00] +17:04:53 [ 41] [ 8] [03414002] +17:04:53 [ 49] [ 3] [418] +17:04:53 [ 54] [ 40] [0001418C0000050137820002418C000005013782] +17:04:53 ============================================================================ +17:04:53 Calculate Source COMM Id = 4 +17:04:53 ============================================================================ +17:04:53 + + +waiting on router queue for slot.... +17:04:55 ============================================================================ +17:04:55 Slot Id : <492> +17:04:55 Transaction Type : REQUEST +17:04:55 Received From : +17:04:55 ============================================================================ +17:04:55 FNo. Len. Field Value +17:04:55 ============================================================================ +17:04:55 [ 1] [ 4] [0800] +17:04:55 [ 7] [ 10] [0320101242] +17:04:55 [ 11] [ 6] [078473] +17:04:55 [ 37] [ 12] [57917078473] +17:04:55 [ 70] [ 3] [301] +17:04:55 ============================================================================ +17:04:55 + + +waiting on router queue for slot.... +17:04:55 Sending to : +17:04:55 ============================================================================ +17:04:55 ============================================================================ +17:04:55 Slot Id : <492> +17:04:55 Transaction Type : RESPONSE +17:04:55 Received From : +17:04:55 ============================================================================ +17:04:55 FNo. Len. Field Value +17:04:55 ============================================================================ +17:04:55 [ 1] [ 4] [0810] +17:04:55 [ 7] [ 10] [0320101242] +17:04:55 [ 11] [ 6] [078473] +17:04:55 [ 37] [ 12] [579170784730] +17:04:55 [ 39] [ 2] [00] +17:04:55 [ 70] [ 3] [810] +17:04:55 ============================================================================ +17:04:55 Calculate Source COMM Id = 1 +17:04:55 ============================================================================ +17:04:55 + + +waiting on router queue for slot.... +17:04:56 ============================================================================ +17:04:56 Slot Id : <454> +17:04:56 Transaction Type : REQUEST +17:04:56 Received From : +17:04:56 ============================================================================ +17:04:56 FNo. Len. Field Value +17:04:56 ============================================================================ +17:04:56 [ 1] [ 4] [0800] +17:04:56 [ 7] [ 10] [0320100403] +17:04:56 [ 11] [ 6] [157372] +17:04:56 [ 70] [ 3] [301] +17:04:56 ============================================================================ +17:04:56 + + +waiting on router queue for slot.... +17:04:56 Sending to : +17:04:56 ============================================================================ +17:04:56 ============================================================================ +17:04:56 Slot Id : <454> +17:04:56 Transaction Type : RESPONSE +17:04:56 Received From : +17:04:56 ============================================================================ +17:04:56 FNo. Len. Field Value +17:04:56 ============================================================================ +17:04:56 [ 1] [ 4] [0810] +17:04:56 [ 7] [ 10] [0320100403] +17:04:56 [ 11] [ 6] [157372] +17:04:56 [ 39] [ 2] [00] +17:04:56 [ 70] [ 3] [301] +17:04:56 ============================================================================ +17:04:56 Calculate Source COMM Id = 2 +17:04:56 ============================================================================ +17:04:56 + + +waiting on router queue for slot.... +17:05:08 ============================================================================ +17:05:08 Slot Id : <22> +17:05:08 Transaction Type : REQUEST +17:05:08 Received From : +17:05:08 ============================================================================ +17:05:08 FNo. Len. Field Value +17:05:08 ============================================================================ +17:05:08 [ 1] [ 4] [0200] +17:05:08 [ 2] [ 16] [6688990050036316] +17:05:08 [ 3] [ 6] [010000] +17:05:08 [ 4] [ 12] [000030000000] +17:05:08 [ 7] [ 10] [0320170504] +17:05:08 [ 11] [ 6] [809670] +17:05:08 [ 12] [ 6] [170504] +17:05:08 [ 13] [ 4] [0320] +17:05:08 [ 15] [ 4] [0320] +17:05:08 [ 18] [ 4] [6011] +17:05:08 [ 22] [ 3] [900] +17:05:08 [ 25] [ 2] [02] +17:05:08 [ 28] [ 9] [D00002000] +17:05:08 [ 32] [ 6] [621354] +17:05:08 [ 35] [ 37] [6688990050036316=98031261374055700000] +17:05:08 [ 37] [ 12] [507902547010] +17:05:08 [ 41] [ 8] [05003700] +17:05:08 [ 42] [ 15] [NATIVE ] +17:05:08 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +17:05:08 [ 49] [ 3] [418] +17:05:08 [ 52] [ 16] [EFE7EC6CBBDD7A01] +17:05:08 ============================================================================ +17:05:08 + + +waiting on router queue for slot.... +17:05:08 Sending to : +17:05:08 ============================================================================ +17:05:08 Sending to : +17:05:08 ============================================================================ +17:05:09 ============================================================================ +17:05:09 Slot Id : <22> +17:05:09 Transaction Type : REQUEST +17:05:09 Received From : +17:05:09 ============================================================================ +17:05:09 FNo. Len. Field Value +17:05:09 ============================================================================ +17:05:09 [ 1] [ 4] [0200] +17:05:09 [ 2] [ 16] [6688990050036316] +17:05:09 [ 3] [ 6] [010000] +17:05:09 [ 4] [ 12] [000030000000] +17:05:09 [ 7] [ 10] [0320170504] +17:05:09 [ 11] [ 6] [809670] +17:05:09 [ 12] [ 6] [170504] +17:05:09 [ 13] [ 4] [0320] +17:05:09 [ 15] [ 4] [0320] +17:05:09 [ 18] [ 4] [6011] +17:05:09 [ 22] [ 3] [900] +17:05:09 [ 25] [ 2] [02] +17:05:09 [ 28] [ 9] [D00002000] +17:05:09 [ 32] [ 6] [621354] +17:05:09 [ 35] [ 37] [6688990050036316=98031261374055700000] +17:05:09 [ 37] [ 12] [507902547010] +17:05:09 [ 41] [ 8] [05003700] +17:05:09 [ 42] [ 15] [NATIVE ] +17:05:09 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +17:05:09 [ 49] [ 3] [418] +17:05:09 [ 52] [ 16] [EFE7EC6CBBDD7A01] +17:05:09 ============================================================================ +17:05:09 + + +waiting on router queue for slot.... +17:05:09 Sending to : +17:05:09 ============================================================================ +17:05:09 ============================================================================ +17:05:09 Slot Id : <22> +17:05:09 Transaction Type : REQUEST +17:05:09 Received From : +17:05:09 ============================================================================ +17:05:09 FNo. Len. Field Value +17:05:09 ============================================================================ +17:05:09 [ 1] [ 4] [0200] +17:05:09 [ 2] [ 16] [6688990050036316] +17:05:09 [ 3] [ 6] [010000] +17:05:09 [ 4] [ 12] [000030000000] +17:05:09 [ 7] [ 10] [0320170504] +17:05:09 [ 11] [ 6] [809670] +17:05:09 [ 12] [ 6] [170504] +17:05:09 [ 13] [ 4] [0320] +17:05:09 [ 15] [ 4] [0320] +17:05:09 [ 18] [ 4] [6011] +17:05:09 [ 22] [ 3] [900] +17:05:09 [ 25] [ 2] [02] +17:05:09 [ 28] [ 9] [D00002000] +17:05:09 [ 32] [ 6] [621354] +17:05:09 [ 35] [ 37] [6688990050036316=98031261374055700000] +17:05:09 [ 37] [ 12] [507902547010] +17:05:09 [ 41] [ 8] [05003700] +17:05:09 [ 42] [ 15] [NATIVE ] +17:05:09 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +17:05:09 [ 49] [ 3] [418] +17:05:09 [ 52] [ 16] [2640619BD043C456] +17:05:09 ============================================================================ +17:05:09 + + +waiting on router queue for slot.... +17:05:09 Sending to : <4> +17:05:09 ============================================================================ +17:05:10 ============================================================================ +17:05:10 Slot Id : <22> +17:05:10 Transaction Type : RESPONSE +17:05:10 Received From : +17:05:10 ============================================================================ +17:05:10 FNo. Len. Field Value +17:05:10 ============================================================================ +17:05:10 [ 1] [ 4] [0210] +17:05:10 [ 2] [ 16] [6688990050036316] +17:05:10 [ 3] [ 6] [010000] +17:05:10 [ 4] [ 12] [000030000000] +17:05:10 [ 11] [ 6] [809670] +17:05:10 [ 12] [ 6] [170504] +17:05:10 [ 15] [ 4] [0320] +17:05:10 [ 18] [ 4] [6011] +17:05:10 [ 32] [ 6] [621354] +17:05:10 [ 35] [ 37] [6688990050036316=98031261374055700000] +17:05:10 [ 37] [ 12] [507902547010] +17:05:10 [ 38] [ 6] [134452] +17:05:10 [ 39] [ 2] [00] +17:05:10 [ 41] [ 8] [05003700] +17:05:10 [ 49] [ 3] [418] +17:05:10 [ 54] [ 20] [0002418C000078800000] +17:05:10 ============================================================================ +17:05:10 Sending to : +17:05:10 ============================================================================ +17:05:10 + + +waiting on router queue for slot.... +17:05:11 ============================================================================ +17:05:11 Slot Id : <22> +17:05:11 Transaction Type : RESPONSE +17:05:11 Received From : +17:05:11 ============================================================================ +17:05:11 FNo. Len. Field Value +17:05:11 ============================================================================ +17:05:11 [ 1] [ 4] [0210] +17:05:11 [ 2] [ 16] [6688990050036316] +17:05:11 [ 3] [ 6] [010000] +17:05:11 [ 4] [ 12] [000030000000] +17:05:11 [ 11] [ 6] [809670] +17:05:11 [ 12] [ 6] [170504] +17:05:11 [ 15] [ 4] [0320] +17:05:11 [ 18] [ 4] [6011] +17:05:11 [ 32] [ 6] [621354] +17:05:11 [ 35] [ 37] [6688990050036316=98031261374055700000] +17:05:11 [ 37] [ 12] [507902547010] +17:05:11 [ 38] [ 6] [134452] +17:05:11 [ 39] [ 2] [00] +17:05:11 [ 41] [ 8] [05003700] +17:05:11 [ 49] [ 3] [418] +17:05:11 [ 54] [ 20] [0002418C000078800000] +17:05:11 ============================================================================ +17:05:11 Calculate Source COMM Id = 0 +17:05:11 ============================================================================ +17:05:11 + + +waiting on router queue for slot.... +17:05:12 ============================================================================ +17:05:12 Slot Id : <12> +17:05:12 Transaction Type : REQUEST +17:05:12 Received From : +17:05:12 ============================================================================ +17:05:12 FNo. Len. Field Value +17:05:12 ============================================================================ +17:05:12 [ 1] [ 4] [0800] +17:05:12 [ 7] [ 10] [0320100419] +17:05:12 [ 11] [ 6] [157373] +17:05:12 [ 70] [ 3] [301] +17:05:12 ============================================================================ +17:05:12 + + +waiting on router queue for slot.... +17:05:12 Sending to : +17:05:12 ============================================================================ +17:05:12 ============================================================================ +17:05:12 Slot Id : <12> +17:05:12 Transaction Type : RESPONSE +17:05:12 Received From : +17:05:12 ============================================================================ +17:05:12 FNo. Len. Field Value +17:05:12 ============================================================================ +17:05:12 [ 1] [ 4] [0810] +17:05:12 [ 7] [ 10] [0320100419] +17:05:12 [ 11] [ 6] [157373] +17:05:12 [ 39] [ 2] [00] +17:05:12 [ 70] [ 3] [301] +17:05:12 ============================================================================ +17:05:12 Calculate Source COMM Id = 2 +17:05:12 ============================================================================ +17:05:12 + + +waiting on router queue for slot.... +17:05:23 ============================================================================ +17:05:23 Slot Id : <469> +17:05:23 Transaction Type : REQUEST +17:05:23 Received From : +17:05:23 ============================================================================ +17:05:23 FNo. Len. Field Value +17:05:23 ============================================================================ +17:05:23 [ 1] [ 4] [0800] +17:05:23 [ 7] [ 10] [0320100430] +17:05:23 [ 11] [ 6] [157374] +17:05:23 [ 70] [ 3] [301] +17:05:23 ============================================================================ +17:05:23 + + +waiting on router queue for slot.... +17:05:23 Sending to : +17:05:23 ============================================================================ +17:05:23 ============================================================================ +17:05:23 Slot Id : <469> +17:05:23 Transaction Type : RESPONSE +17:05:23 Received From : +17:05:23 ============================================================================ +17:05:23 FNo. Len. Field Value +17:05:23 ============================================================================ +17:05:23 [ 1] [ 4] [0810] +17:05:23 [ 7] [ 10] [0320100430] +17:05:23 [ 11] [ 6] [157374] +17:05:23 [ 39] [ 2] [00] +17:05:23 [ 70] [ 3] [301] +17:05:23 ============================================================================ +17:05:23 Calculate Source COMM Id = 2 +17:05:23 ============================================================================ +17:05:23 + + +waiting on router queue for slot.... +17:05:34 ============================================================================ +17:05:34 Slot Id : <17> +17:05:34 Transaction Type : REQUEST +17:05:34 Received From : +17:05:34 ============================================================================ +17:05:34 FNo. Len. Field Value +17:05:34 ============================================================================ +17:05:34 [ 1] [ 4] [0800] +17:05:34 [ 7] [ 10] [0320100441] +17:05:34 [ 11] [ 6] [157375] +17:05:34 [ 70] [ 3] [301] +17:05:34 ============================================================================ +17:05:34 + + +waiting on router queue for slot.... +17:05:34 Sending to : +17:05:34 ============================================================================ +17:05:34 ============================================================================ +17:05:34 Slot Id : <17> +17:05:34 Transaction Type : RESPONSE +17:05:34 Received From : +17:05:34 ============================================================================ +17:05:34 FNo. Len. Field Value +17:05:34 ============================================================================ +17:05:34 [ 1] [ 4] [0810] +17:05:34 [ 7] [ 10] [0320100441] +17:05:34 [ 11] [ 6] [157375] +17:05:34 [ 39] [ 2] [00] +17:05:34 [ 70] [ 3] [301] +17:05:34 ============================================================================ +17:05:34 Calculate Source COMM Id = 2 +17:05:34 ============================================================================ +17:05:34 + + +waiting on router queue for slot.... +17:05:34 ============================================================================ +17:05:34 Slot Id : <491> +17:05:34 Transaction Type : REQUEST +17:05:34 Received From : +17:05:34 ============================================================================ +17:05:34 FNo. Len. Field Value +17:05:34 ============================================================================ +17:05:34 [ 1] [ 4] [0200] +17:05:34 [ 2] [ 16] [6688990103269203] +17:05:34 [ 3] [ 6] [010000] +17:05:34 [ 4] [ 12] [000100000000] +17:05:34 [ 7] [ 10] [0320170529] +17:05:34 [ 11] [ 6] [809791] +17:05:34 [ 12] [ 6] [170529] +17:05:34 [ 13] [ 4] [0320] +17:05:34 [ 15] [ 4] [0320] +17:05:34 [ 18] [ 4] [6011] +17:05:34 [ 22] [ 3] [900] +17:05:34 [ 25] [ 2] [02] +17:05:34 [ 28] [ 9] [D00002000] +17:05:34 [ 32] [ 6] [621354] +17:05:34 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:05:34 [ 37] [ 12] [507903499648] +17:05:34 [ 41] [ 8] [06002200] +17:05:34 [ 42] [ 15] [NATIVE ] +17:05:34 [ 43] [ 40] [Beng Market Beng LAO] +17:05:34 [ 49] [ 3] [418] +17:05:34 [ 52] [ 16] [570775FC25924772] +17:05:34 ============================================================================ +17:05:34 + + +waiting on router queue for slot.... +17:05:34 Sending to : +17:05:34 ============================================================================ +17:05:34 Sending to : +17:05:34 ============================================================================ +17:05:35 ============================================================================ +17:05:35 Slot Id : <494> +17:05:35 Transaction Type : REQUEST +17:05:35 Received From : +17:05:35 ============================================================================ +17:05:35 FNo. Len. Field Value +17:05:35 ============================================================================ +17:05:35 [ 1] [ 4] [0200] +17:05:35 [ 2] [ 16] [6688990101258307] +17:05:35 [ 3] [ 6] [301000] +17:05:35 [ 4] [ 12] [000000000000] +17:05:35 [ 7] [ 10] [0320170530] +17:05:35 [ 11] [ 6] [809794] +17:05:35 [ 12] [ 6] [170530] +17:05:35 [ 13] [ 4] [0320] +17:05:35 [ 15] [ 4] [0320] +17:05:35 [ 18] [ 4] [6011] +17:05:35 [ 22] [ 3] [900] +17:05:35 [ 25] [ 2] [02] +17:05:35 [ 28] [ 9] [D00000000] +17:05:35 [ 32] [ 6] [621354] +17:05:35 [ 35] [ 37] [6688990101258307=42011231830757200000] +17:05:35 [ 37] [ 12] [507904830815] +17:05:35 [ 41] [ 8] [11000700] +17:05:35 [ 42] [ 15] [NATIVE ] +17:05:35 [ 43] [ 40] [Samosone Bokeo Houysai LAO] +17:05:35 [ 49] [ 3] [418] +17:05:35 [ 52] [ 16] [F871FEF74FE715F4] +17:05:35 ============================================================================ +17:05:35 + + +waiting on router queue for slot.... +17:05:35 Sending to : +17:05:35 ============================================================================ +17:05:35 Sending to : +17:05:35 ============================================================================ +17:05:35 ============================================================================ +17:05:35 Slot Id : <491> +17:05:35 Transaction Type : REQUEST +17:05:35 Received From : +17:05:35 ============================================================================ +17:05:35 FNo. Len. Field Value +17:05:35 ============================================================================ +17:05:35 [ 1] [ 4] [0200] +17:05:35 [ 2] [ 16] [6688990103269203] +17:05:35 [ 3] [ 6] [010000] +17:05:35 [ 4] [ 12] [000100000000] +17:05:35 [ 7] [ 10] [0320170529] +17:05:35 [ 11] [ 6] [809791] +17:05:35 [ 12] [ 6] [170529] +17:05:35 [ 13] [ 4] [0320] +17:05:35 [ 15] [ 4] [0320] +17:05:35 [ 18] [ 4] [6011] +17:05:35 [ 22] [ 3] [900] +17:05:35 [ 25] [ 2] [02] +17:05:35 [ 28] [ 9] [D00002000] +17:05:35 [ 32] [ 6] [621354] +17:05:35 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:05:35 [ 37] [ 12] [507903499648] +17:05:35 [ 41] [ 8] [06002200] +17:05:35 [ 42] [ 15] [NATIVE ] +17:05:35 [ 43] [ 40] [Beng Market Beng LAO] +17:05:35 [ 49] [ 3] [418] +17:05:35 [ 52] [ 16] [570775FC25924772] +17:05:35 ============================================================================ +17:05:35 + + +waiting on router queue for slot.... +17:05:35 Sending to : +17:05:35 ============================================================================ +17:05:35 ============================================================================ +17:05:35 Slot Id : <491> +17:05:35 Transaction Type : REQUEST +17:05:35 Received From : +17:05:35 ============================================================================ +17:05:35 FNo. Len. Field Value +17:05:35 ============================================================================ +17:05:35 [ 1] [ 4] [0200] +17:05:35 [ 2] [ 16] [6688990103269203] +17:05:35 [ 3] [ 6] [010000] +17:05:35 [ 4] [ 12] [000100000000] +17:05:35 [ 7] [ 10] [0320170529] +17:05:35 [ 11] [ 6] [809791] +17:05:35 [ 12] [ 6] [170529] +17:05:35 [ 13] [ 4] [0320] +17:05:35 [ 15] [ 4] [0320] +17:05:35 [ 18] [ 4] [6011] +17:05:35 [ 22] [ 3] [900] +17:05:35 [ 25] [ 2] [02] +17:05:35 [ 28] [ 9] [D00002000] +17:05:35 [ 32] [ 6] [621354] +17:05:35 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:05:35 [ 37] [ 12] [507903499648] +17:05:35 [ 41] [ 8] [06002200] +17:05:35 [ 42] [ 15] [NATIVE ] +17:05:35 [ 43] [ 40] [Beng Market Beng LAO] +17:05:35 [ 49] [ 3] [418] +17:05:35 [ 52] [ 16] [004B73FEB4E6BE43] +17:05:35 ============================================================================ +17:05:35 + + +waiting on router queue for slot.... +17:05:35 Sending to : <4> +17:05:35 ============================================================================ +17:05:35 ============================================================================ +17:05:35 Slot Id : <494> +17:05:35 Transaction Type : REQUEST +17:05:35 Received From : +17:05:35 ============================================================================ +17:05:35 FNo. Len. Field Value +17:05:35 ============================================================================ +17:05:35 [ 1] [ 4] [0200] +17:05:35 [ 2] [ 16] [6688990101258307] +17:05:35 [ 3] [ 6] [301000] +17:05:35 [ 4] [ 12] [000000000000] +17:05:35 [ 7] [ 10] [0320170530] +17:05:35 [ 11] [ 6] [809794] +17:05:35 [ 12] [ 6] [170530] +17:05:35 [ 13] [ 4] [0320] +17:05:35 [ 15] [ 4] [0320] +17:05:35 [ 18] [ 4] [6011] +17:05:35 [ 22] [ 3] [900] +17:05:35 [ 25] [ 2] [02] +17:05:35 [ 28] [ 9] [D00000000] +17:05:35 [ 32] [ 6] [621354] +17:05:35 [ 35] [ 37] [6688990101258307=42011231830757200000] +17:05:35 [ 37] [ 12] [507904830815] +17:05:35 [ 41] [ 8] [11000700] +17:05:35 [ 42] [ 15] [NATIVE ] +17:05:35 [ 43] [ 40] [Samosone Bokeo Houysai LAO] +17:05:35 [ 49] [ 3] [418] +17:05:35 [ 52] [ 16] [F871FEF74FE715F4] +17:05:35 ============================================================================ +17:05:35 + + +waiting on router queue for slot.... +17:05:35 Sending to : +17:05:35 ============================================================================ +17:05:35 ============================================================================ +17:05:35 Slot Id : <494> +17:05:35 Transaction Type : REQUEST +17:05:35 Received From : +17:05:35 ============================================================================ +17:05:35 FNo. Len. Field Value +17:05:35 ============================================================================ +17:05:35 [ 1] [ 4] [0200] +17:05:35 [ 2] [ 16] [6688990101258307] +17:05:35 [ 3] [ 6] [301000] +17:05:35 [ 4] [ 12] [000000000000] +17:05:35 [ 7] [ 10] [0320170530] +17:05:35 [ 11] [ 6] [809794] +17:05:35 [ 12] [ 6] [170530] +17:05:35 [ 13] [ 4] [0320] +17:05:35 [ 15] [ 4] [0320] +17:05:35 [ 18] [ 4] [6011] +17:05:35 [ 22] [ 3] [900] +17:05:35 [ 25] [ 2] [02] +17:05:35 [ 28] [ 9] [D00000000] +17:05:35 [ 32] [ 6] [621354] +17:05:35 [ 35] [ 37] [6688990101258307=42011231830757200000] +17:05:35 [ 37] [ 12] [507904830815] +17:05:35 [ 41] [ 8] [11000700] +17:05:35 [ 42] [ 15] [NATIVE ] +17:05:35 [ 43] [ 40] [Samosone Bokeo Houysai LAO] +17:05:35 [ 49] [ 3] [418] +17:05:35 [ 52] [ 16] [B6F775BBFB25DEAD] +17:05:35 ============================================================================ +17:05:35 + + +waiting on router queue for slot.... +17:05:35 Sending to : <4> +17:05:35 ============================================================================ +17:05:36 ============================================================================ +17:05:36 Slot Id : <491> +17:05:36 Transaction Type : RESPONSE +17:05:36 Received From : +17:05:36 ============================================================================ +17:05:36 FNo. Len. Field Value +17:05:36 ============================================================================ +17:05:36 [ 1] [ 4] [0210] +17:05:36 [ 2] [ 16] [6688990103269203] +17:05:36 [ 3] [ 6] [010000] +17:05:36 [ 4] [ 12] [000100000000] +17:05:36 [ 11] [ 6] [809791] +17:05:36 [ 12] [ 6] [170529] +17:05:36 [ 15] [ 4] [0320] +17:05:36 [ 18] [ 4] [6011] +17:05:36 [ 32] [ 6] [621354] +17:05:36 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:05:36 [ 37] [ 12] [507903499648] +17:05:36 [ 38] [ 6] [150148] +17:05:36 [ 39] [ 2] [00] +17:05:36 [ 41] [ 8] [06002200] +17:05:36 [ 49] [ 3] [418] +17:05:36 [ 54] [ 20] [0002418C000713941651] +17:05:36 ============================================================================ +17:05:36 Sending to : +17:05:36 ============================================================================ +17:05:36 + + +waiting on router queue for slot.... +17:05:36 ============================================================================ +17:05:36 Slot Id : <494> +17:05:36 Transaction Type : RESPONSE +17:05:36 Received From : +17:05:36 ============================================================================ +17:05:36 FNo. Len. Field Value +17:05:36 ============================================================================ +17:05:36 [ 1] [ 4] [0210] +17:05:36 [ 2] [ 16] [6688990101258307] +17:05:36 [ 3] [ 6] [301000] +17:05:36 [ 4] [ 12] [000000000000] +17:05:36 [ 11] [ 6] [809794] +17:05:36 [ 12] [ 6] [170530] +17:05:36 [ 15] [ 4] [0320] +17:05:36 [ 18] [ 4] [6011] +17:05:36 [ 32] [ 6] [621354] +17:05:36 [ 35] [ 37] [6688990101258307=42011231830757200000] +17:05:36 [ 37] [ 12] [507904830815] +17:05:36 [ 38] [ 6] [269779] +17:05:36 [ 39] [ 2] [00] +17:05:36 [ 41] [ 8] [11000700] +17:05:36 [ 49] [ 3] [418] +17:05:36 [ 54] [ 20] [1002418C000594726446] +17:05:36 ============================================================================ +17:05:36 Sending to : +17:05:36 ============================================================================ +17:05:36 + + +waiting on router queue for slot.... +17:05:37 ============================================================================ +17:05:37 Slot Id : <491> +17:05:37 Transaction Type : RESPONSE +17:05:37 Received From : +17:05:37 ============================================================================ +17:05:37 FNo. Len. Field Value +17:05:37 ============================================================================ +17:05:37 [ 1] [ 4] [0210] +17:05:37 [ 2] [ 16] [6688990103269203] +17:05:37 [ 3] [ 6] [010000] +17:05:37 [ 4] [ 12] [000100000000] +17:05:37 [ 11] [ 6] [809791] +17:05:37 [ 12] [ 6] [170529] +17:05:37 [ 15] [ 4] [0320] +17:05:37 [ 18] [ 4] [6011] +17:05:37 [ 32] [ 6] [621354] +17:05:37 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:05:37 [ 37] [ 12] [507903499648] +17:05:37 [ 38] [ 6] [150148] +17:05:37 [ 39] [ 2] [00] +17:05:37 [ 41] [ 8] [06002200] +17:05:37 [ 49] [ 3] [418] +17:05:37 [ 54] [ 20] [0002418C000713941651] +17:05:37 ============================================================================ +17:05:37 Calculate Source COMM Id = 0 +17:05:37 ============================================================================ +17:05:37 + + +waiting on router queue for slot.... +17:05:39 ============================================================================ +17:05:39 Slot Id : <494> +17:05:39 Transaction Type : RESPONSE +17:05:39 Received From : +17:05:39 ============================================================================ +17:05:39 FNo. Len. Field Value +17:05:39 ============================================================================ +17:05:39 [ 1] [ 4] [0210] +17:05:39 [ 2] [ 16] [6688990101258307] +17:05:39 [ 3] [ 6] [301000] +17:05:39 [ 4] [ 12] [000000000000] +17:05:39 [ 11] [ 6] [809794] +17:05:39 [ 12] [ 6] [170530] +17:05:39 [ 15] [ 4] [0320] +17:05:39 [ 18] [ 4] [6011] +17:05:39 [ 32] [ 6] [621354] +17:05:39 [ 35] [ 37] [6688990101258307=42011231830757200000] +17:05:39 [ 37] [ 12] [507904830815] +17:05:39 [ 38] [ 6] [269779] +17:05:39 [ 39] [ 2] [00] +17:05:39 [ 41] [ 8] [11000700] +17:05:39 [ 49] [ 3] [418] +17:05:39 [ 54] [ 20] [1002418C000594726446] +17:05:39 ============================================================================ +17:05:39 Calculate Source COMM Id = 0 +17:05:39 ============================================================================ +17:05:39 + + +waiting on router queue for slot.... +17:05:43 ============================================================================ +17:05:43 Slot Id : <10> +17:05:43 Transaction Type : REQUEST +17:05:43 Received From : +17:05:43 ============================================================================ +17:05:43 FNo. Len. Field Value +17:05:43 ============================================================================ +17:05:43 [ 1] [ 4] [0800] +17:05:43 [ 2] [ 5] [02531] +17:05:43 [ 3] [ 6] [579178] +17:05:43 [ 7] [ 10] [0320100543] +17:05:43 [ 11] [ 6] [807404] +17:05:43 [ 15] [ 10] [0320100543] +17:05:43 [ 37] [ 11] [57917807404] +17:05:43 [ 70] [ 3] [001] +17:05:43 ============================================================================ +17:05:43 + + +waiting on router queue for slot.... +17:05:43 ============================================================================ +17:05:43 Slot Id : <10> +17:05:43 Transaction Type : RESPONSE +17:05:43 Received From : +17:05:43 ============================================================================ +17:05:43 FNo. Len. Field Value +17:05:43 ============================================================================ +17:05:43 [ 1] [ 4] [0810] +17:05:43 [ 7] [ 10] [0320100543] +17:05:43 [ 11] [ 6] [807404] +17:05:43 [ 15] [ 4] [0320] +17:05:43 [ 37] [ 12] [57917807404] +17:05:43 [ 39] [ 2] [00] +17:05:43 [ 70] [ 3] [001] +17:05:43 ============================================================================ +17:05:43 Sending to : +17:05:43 ============================================================================ +17:05:43 + + +waiting on router queue for slot.... +17:05:45 ============================================================================ +17:05:45 Slot Id : <29> +17:05:45 Transaction Type : REQUEST +17:05:45 Received From : +17:05:45 ============================================================================ +17:05:45 FNo. Len. Field Value +17:05:45 ============================================================================ +17:05:45 [ 1] [ 4] [0800] +17:05:45 [ 7] [ 10] [0320100451] +17:05:45 [ 11] [ 6] [157376] +17:05:45 [ 70] [ 3] [301] +17:05:45 ============================================================================ +17:05:45 + + +waiting on router queue for slot.... +17:05:45 Sending to : +17:05:45 ============================================================================ +17:05:45 ============================================================================ +17:05:45 Slot Id : <29> +17:05:45 Transaction Type : RESPONSE +17:05:45 Received From : +17:05:45 ============================================================================ +17:05:45 FNo. Len. Field Value +17:05:45 ============================================================================ +17:05:45 [ 1] [ 4] [0810] +17:05:45 [ 7] [ 10] [0320100451] +17:05:45 [ 11] [ 6] [157376] +17:05:45 [ 39] [ 2] [00] +17:05:45 [ 70] [ 3] [301] +17:05:45 ============================================================================ +17:05:45 Calculate Source COMM Id = 2 +17:05:45 ============================================================================ +17:05:45 + + +waiting on router queue for slot.... +17:05:50 ============================================================================ +17:05:50 Slot Id : <499> +17:05:50 Transaction Type : REQUEST +17:05:50 Received From : +17:05:50 ============================================================================ +17:05:50 FNo. Len. Field Value +17:05:50 ============================================================================ +17:05:50 [ 1] [ 4] [0800] +17:05:50 [ 7] [ 10] [0321001739] +17:05:50 [ 11] [ 6] [171739] +17:05:50 [ 37] [ 12] [57917171739] +17:05:50 [ 70] [ 3] [301] +17:05:50 ============================================================================ +17:05:50 + + +waiting on router queue for slot.... +17:05:50 Sending to : +17:05:50 ============================================================================ +17:05:50 ============================================================================ +17:05:50 Slot Id : <499> +17:05:50 Transaction Type : RESPONSE +17:05:50 Received From : +17:05:50 ============================================================================ +17:05:50 FNo. Len. Field Value +17:05:50 ============================================================================ +17:05:50 [ 1] [ 4] [0810] +17:05:50 [ 7] [ 10] [0321001739] +17:05:50 [ 11] [ 6] [171739] +17:05:50 [ 37] [ 12] [579171717390] +17:05:50 [ 39] [ 2] [00] +17:05:50 [ 70] [ 3] [810] +17:05:50 ============================================================================ +17:05:50 Calculate Source COMM Id = 6 +17:05:50 ============================================================================ +17:05:50 + + +waiting on router queue for slot.... +17:05:52 ============================================================================ +17:05:52 Slot Id : <23> +17:05:52 Transaction Type : REQUEST +17:05:52 Received From : +17:05:52 ============================================================================ +17:05:52 FNo. Len. Field Value +17:05:52 ============================================================================ +17:05:52 [ 1] [ 4] [0200] +17:05:52 [ 2] [ 16] [6213544001551099] +17:05:52 [ 3] [ 6] [010000] +17:05:52 [ 4] [ 12] [000060000000] +17:05:52 [ 7] [ 10] [0320170342] +17:05:52 [ 11] [ 6] [952882] +17:05:52 [ 12] [ 6] [170342] +17:05:52 [ 13] [ 4] [0320] +17:05:52 [ 15] [ 4] [0320] +17:05:52 [ 18] [ 4] [6011] +17:05:52 [ 19] [ 3] [418] +17:05:52 [ 22] [ 3] [021] +17:05:52 [ 25] [ 2] [01] +17:05:52 [ 28] [ 9] [D00002000] +17:05:52 [ 32] [ 6] [668899] +17:05:52 [ 35] [ 32] [6213544001551099=491212015109716] +17:05:52 [ 37] [ 12] [507902025657] +17:05:52 [ 41] [ 8] [03414002] +17:05:52 [ 42] [ 15] [APT ] +17:05:52 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:05:52 [ 49] [ 3] [418] +17:05:52 [ 52] [ 16] [A9DFC45146F30EBF] +17:05:52 ============================================================================ +17:05:52 + + +waiting on router queue for slot.... +17:05:52 Sending to : +17:05:52 ============================================================================ +17:05:52 Sending to : +17:05:52 ============================================================================ +17:05:52 ============================================================================ +17:05:52 Slot Id : <23> +17:05:52 Transaction Type : REQUEST +17:05:52 Received From : +17:05:52 ============================================================================ +17:05:52 FNo. Len. Field Value +17:05:52 ============================================================================ +17:05:52 [ 1] [ 4] [0200] +17:05:52 [ 2] [ 16] [6213544001551099] +17:05:52 [ 3] [ 6] [010000] +17:05:52 [ 4] [ 12] [000060000000] +17:05:52 [ 7] [ 10] [0320170342] +17:05:52 [ 11] [ 6] [952882] +17:05:52 [ 12] [ 6] [170342] +17:05:52 [ 13] [ 4] [0320] +17:05:52 [ 15] [ 4] [0320] +17:05:52 [ 18] [ 4] [6011] +17:05:52 [ 19] [ 3] [418] +17:05:52 [ 22] [ 3] [021] +17:05:52 [ 25] [ 2] [01] +17:05:52 [ 28] [ 9] [D00002000] +17:05:52 [ 32] [ 6] [668899] +17:05:52 [ 35] [ 32] [6213544001551099=491212015109716] +17:05:52 [ 37] [ 12] [507902025657] +17:05:52 [ 41] [ 8] [03414002] +17:05:52 [ 42] [ 15] [APT ] +17:05:52 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:05:52 [ 49] [ 3] [418] +17:05:52 [ 52] [ 16] [A9DFC45146F30EBF] +17:05:52 ============================================================================ +17:05:52 + + +waiting on router queue for slot.... +17:05:52 Sending to : +17:05:52 ============================================================================ +17:05:52 ============================================================================ +17:05:52 Slot Id : <23> +17:05:52 Transaction Type : REQUEST +17:05:52 Received From : +17:05:52 ============================================================================ +17:05:52 FNo. Len. Field Value +17:05:52 ============================================================================ +17:05:52 [ 1] [ 4] [0200] +17:05:52 [ 2] [ 16] [6213544001551099] +17:05:52 [ 3] [ 6] [010000] +17:05:52 [ 4] [ 12] [000060000000] +17:05:52 [ 7] [ 10] [0320170342] +17:05:52 [ 11] [ 6] [952882] +17:05:52 [ 12] [ 6] [170342] +17:05:52 [ 13] [ 4] [0320] +17:05:52 [ 15] [ 4] [0320] +17:05:52 [ 18] [ 4] [6011] +17:05:52 [ 19] [ 3] [418] +17:05:52 [ 22] [ 3] [021] +17:05:52 [ 25] [ 2] [01] +17:05:52 [ 28] [ 9] [D00002000] +17:05:52 [ 32] [ 6] [668899] +17:05:52 [ 35] [ 32] [6213544001551099=491212015109716] +17:05:52 [ 37] [ 12] [507902025657] +17:05:52 [ 41] [ 8] [03414002] +17:05:52 [ 42] [ 15] [APT ] +17:05:52 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:05:52 [ 49] [ 3] [418] +17:05:52 [ 52] [ 16] [6EEE04FFAFF7D9EA] +17:05:52 ============================================================================ +17:05:52 + + +waiting on router queue for slot.... +17:05:52 Sending to : <0> +17:05:52 ============================================================================ +17:05:53 ============================================================================ +17:05:53 Slot Id : <23> +17:05:53 Transaction Type : RESPONSE +17:05:53 Received From : +17:05:53 ============================================================================ +17:05:53 FNo. Len. Field Value +17:05:53 ============================================================================ +17:05:53 [ 1] [ 4] [0210] +17:05:53 [ 2] [ 16] [6213544001551099] +17:05:53 [ 3] [ 6] [010000] +17:05:53 [ 4] [ 12] [000060000000] +17:05:53 [ 7] [ 10] [0320170342] +17:05:53 [ 11] [ 6] [952882] +17:05:53 [ 12] [ 6] [170342] +17:05:53 [ 13] [ 4] [0320] +17:05:53 [ 15] [ 4] [0320] +17:05:53 [ 18] [ 4] [6011] +17:05:53 [ 19] [ 3] [418] +17:05:53 [ 32] [ 6] [668899] +17:05:53 [ 35] [ 32] [6213544001551099=491212015109716] +17:05:53 [ 37] [ 12] [507902025657] +17:05:53 [ 38] [ 6] [817446] +17:05:53 [ 39] [ 2] [00] +17:05:53 [ 41] [ 8] [03414002] +17:05:53 [ 49] [ 3] [418] +17:05:53 [ 54] [ 40] [0001418C0000091259950002418C000009125995] +17:05:53 ============================================================================ +17:05:53 Sending to : +17:05:53 ============================================================================ +17:05:53 + + +waiting on router queue for slot.... +17:05:55 ============================================================================ +17:05:55 Slot Id : <23> +17:05:55 Transaction Type : RESPONSE +17:05:55 Received From : +17:05:55 ============================================================================ +17:05:55 FNo. Len. Field Value +17:05:55 ============================================================================ +17:05:55 [ 1] [ 4] [0210] +17:05:55 [ 2] [ 16] [6213544001551099] +17:05:55 [ 3] [ 6] [010000] +17:05:55 [ 4] [ 12] [000060000000] +17:05:55 [ 7] [ 10] [0320170342] +17:05:55 [ 11] [ 6] [952882] +17:05:55 [ 12] [ 6] [170342] +17:05:55 [ 13] [ 4] [0320] +17:05:55 [ 15] [ 4] [0320] +17:05:55 [ 18] [ 4] [6011] +17:05:55 [ 19] [ 3] [418] +17:05:55 [ 32] [ 6] [668899] +17:05:55 [ 35] [ 32] [6213544001551099=491212015109716] +17:05:55 [ 37] [ 12] [507902025657] +17:05:55 [ 38] [ 6] [817446] +17:05:55 [ 39] [ 2] [00] +17:05:55 [ 41] [ 8] [03414002] +17:05:55 [ 49] [ 3] [418] +17:05:55 [ 54] [ 40] [0001418C0000091259950002418C000009125995] +17:05:55 ============================================================================ +17:05:55 Calculate Source COMM Id = 4 +17:05:55 ============================================================================ +17:05:55 + + +waiting on router queue for slot.... +17:05:56 ============================================================================ +17:05:56 Slot Id : <481> +17:05:56 Transaction Type : REQUEST +17:05:56 Received From : +17:05:56 ============================================================================ +17:05:56 FNo. Len. Field Value +17:05:56 ============================================================================ +17:05:56 [ 1] [ 4] [0800] +17:05:56 [ 7] [ 10] [0320100502] +17:05:56 [ 11] [ 6] [157377] +17:05:56 [ 70] [ 3] [301] +17:05:56 ============================================================================ +17:05:56 + + +waiting on router queue for slot.... +17:05:56 Sending to : +17:05:56 ============================================================================ +17:05:56 ============================================================================ +17:05:56 Slot Id : <481> +17:05:56 Transaction Type : RESPONSE +17:05:56 Received From : +17:05:56 ============================================================================ +17:05:56 FNo. Len. Field Value +17:05:56 ============================================================================ +17:05:56 [ 1] [ 4] [0810] +17:05:56 [ 7] [ 10] [0320100502] +17:05:56 [ 11] [ 6] [157377] +17:05:56 [ 39] [ 2] [00] +17:05:56 [ 70] [ 3] [301] +17:05:56 ============================================================================ +17:05:56 Calculate Source COMM Id = 2 +17:05:56 ============================================================================ +17:05:56 + + +waiting on router queue for slot.... +17:05:56 ============================================================================ +17:05:56 Slot Id : <31> +17:05:56 Transaction Type : REQUEST +17:05:56 Received From : +17:05:56 ============================================================================ +17:05:56 FNo. Len. Field Value +17:05:56 ============================================================================ +17:05:56 [ 1] [ 4] [0200] +17:05:56 [ 2] [ 16] [6213544002002126] +17:05:56 [ 3] [ 6] [301000] +17:05:56 [ 4] [ 12] [000000000000] +17:05:56 [ 7] [ 10] [0320170616] +17:05:56 [ 11] [ 6] [209236] +17:05:56 [ 12] [ 6] [170122] +17:05:56 [ 13] [ 4] [0320] +17:05:56 [ 14] [ 4] [4912] +17:05:56 [ 15] [ 4] [0320] +17:05:56 [ 18] [ 4] [6011] +17:05:56 [ 19] [ 3] [418] +17:05:56 [ 22] [ 3] [021] +17:05:56 [ 25] [ 2] [01] +17:05:56 [ 28] [ 9] [D00000000] +17:05:56 [ 32] [ 6] [198901] +17:05:56 [ 35] [ 32] [6213544002002126=491212010212497] +17:05:56 [ 37] [ 12] [507917209236] +17:05:56 [ 41] [ 8] [19529001] +17:05:56 [ 42] [ 15] [000000041952901] +17:05:56 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:05:56 [ 49] [ 3] [418] +17:05:56 [ 52] [ 16] [AA5523F4693DCF8F] +17:05:56 ============================================================================ +17:05:56 + + +waiting on router queue for slot.... +17:05:56 Sending to : +17:05:56 ============================================================================ +17:05:56 Sending to : +17:05:56 ============================================================================ +17:05:56 ============================================================================ +17:05:56 Slot Id : <31> +17:05:56 Transaction Type : REQUEST +17:05:56 Received From : +17:05:56 ============================================================================ +17:05:56 FNo. Len. Field Value +17:05:56 ============================================================================ +17:05:56 [ 1] [ 4] [0200] +17:05:56 [ 2] [ 16] [6213544002002126] +17:05:56 [ 3] [ 6] [301000] +17:05:56 [ 4] [ 12] [000000000000] +17:05:56 [ 7] [ 10] [0320170616] +17:05:56 [ 11] [ 6] [209236] +17:05:56 [ 12] [ 6] [170122] +17:05:56 [ 13] [ 4] [0320] +17:05:56 [ 14] [ 4] [4912] +17:05:56 [ 15] [ 4] [0320] +17:05:56 [ 18] [ 4] [6011] +17:05:56 [ 19] [ 3] [418] +17:05:56 [ 22] [ 3] [021] +17:05:56 [ 25] [ 2] [01] +17:05:56 [ 28] [ 9] [D00000000] +17:05:56 [ 32] [ 6] [198901] +17:05:56 [ 35] [ 32] [6213544002002126=491212010212497] +17:05:56 [ 37] [ 12] [507917209236] +17:05:56 [ 41] [ 8] [19529001] +17:05:56 [ 42] [ 15] [000000041952901] +17:05:56 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:05:56 [ 49] [ 3] [418] +17:05:56 [ 52] [ 16] [AA5523F4693DCF8F] +17:05:56 ============================================================================ +17:05:56 + + +waiting on router queue for slot.... +17:05:56 Sending to : +17:05:56 ============================================================================ +17:05:56 ============================================================================ +17:05:56 Slot Id : <31> +17:05:56 Transaction Type : REQUEST +17:05:56 Received From : +17:05:56 ============================================================================ +17:05:56 FNo. Len. Field Value +17:05:56 ============================================================================ +17:05:56 [ 1] [ 4] [0200] +17:05:56 [ 2] [ 16] [6213544002002126] +17:05:56 [ 3] [ 6] [301000] +17:05:56 [ 4] [ 12] [000000000000] +17:05:56 [ 7] [ 10] [0320170616] +17:05:56 [ 11] [ 6] [209236] +17:05:56 [ 12] [ 6] [170122] +17:05:56 [ 13] [ 4] [0320] +17:05:56 [ 14] [ 4] [4912] +17:05:56 [ 15] [ 4] [0320] +17:05:56 [ 18] [ 4] [6011] +17:05:56 [ 19] [ 3] [418] +17:05:56 [ 22] [ 3] [021] +17:05:56 [ 25] [ 2] [01] +17:05:56 [ 28] [ 9] [D00000000] +17:05:56 [ 32] [ 6] [198901] +17:05:56 [ 35] [ 32] [6213544002002126=491212010212497] +17:05:56 [ 37] [ 12] [507917209236] +17:05:56 [ 41] [ 8] [19529001] +17:05:56 [ 42] [ 15] [000000041952901] +17:05:56 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:05:56 [ 49] [ 3] [418] +17:05:56 [ 52] [ 16] [3F7FE5089AB9C196] +17:05:56 ============================================================================ +17:05:56 + + +waiting on router queue for slot.... +17:05:56 Sending to : <0> +17:05:56 ============================================================================ +17:05:57 ============================================================================ +17:05:57 Slot Id : <31> +17:05:57 Transaction Type : RESPONSE +17:05:57 Received From : +17:05:57 ============================================================================ +17:05:57 FNo. Len. Field Value +17:05:57 ============================================================================ +17:05:57 [ 1] [ 4] [0210] +17:05:57 [ 2] [ 16] [6213544002002126] +17:05:57 [ 3] [ 6] [301000] +17:05:57 [ 4] [ 12] [000000000000] +17:05:57 [ 7] [ 10] [0320170616] +17:05:57 [ 11] [ 6] [209236] +17:05:57 [ 12] [ 6] [170122] +17:05:57 [ 13] [ 4] [0320] +17:05:57 [ 15] [ 4] [0320] +17:05:57 [ 18] [ 4] [6011] +17:05:57 [ 19] [ 3] [418] +17:05:57 [ 22] [ 3] [021] +17:05:57 [ 32] [ 6] [198901] +17:05:57 [ 35] [ 32] [6213544002002126=491212010212497] +17:05:57 [ 37] [ 12] [507917209236] +17:05:57 [ 38] [ 6] [170551] +17:05:57 [ 39] [ 2] [55] +17:05:57 [ 41] [ 8] [19529001] +17:05:57 [ 49] [ 3] [418] +17:05:57 ============================================================================ +17:05:57 Sending to : +17:05:57 ============================================================================ +17:05:57 + + +waiting on router queue for slot.... +17:05:58 ============================================================================ +17:05:58 Slot Id : <31> +17:05:58 Transaction Type : RESPONSE +17:05:58 Received From : +17:05:58 ============================================================================ +17:05:58 FNo. Len. Field Value +17:05:58 ============================================================================ +17:05:58 [ 1] [ 4] [0210] +17:05:58 [ 2] [ 16] [6213544002002126] +17:05:58 [ 3] [ 6] [301000] +17:05:58 [ 4] [ 12] [000000000000] +17:05:58 [ 7] [ 10] [0320170616] +17:05:58 [ 11] [ 6] [209236] +17:05:58 [ 12] [ 6] [170122] +17:05:58 [ 13] [ 4] [0320] +17:05:58 [ 15] [ 4] [0320] +17:05:58 [ 18] [ 4] [6011] +17:05:58 [ 19] [ 3] [418] +17:05:58 [ 22] [ 3] [021] +17:05:58 [ 32] [ 6] [198901] +17:05:58 [ 35] [ 32] [6213544002002126=491212010212497] +17:05:58 [ 37] [ 12] [507917209236] +17:05:58 [ 38] [ 6] [170551] +17:05:58 [ 39] [ 2] [55] +17:05:58 [ 41] [ 8] [19529001] +17:05:58 [ 49] [ 3] [418] +17:05:58 ============================================================================ +17:05:58 Calculate Source COMM Id = 5 +17:05:58 ============================================================================ +17:05:58 + + +waiting on router queue for slot.... +17:06:07 ============================================================================ +17:06:07 Slot Id : <35> +17:06:07 Transaction Type : REQUEST +17:06:07 Received From : +17:06:07 ============================================================================ +17:06:07 FNo. Len. Field Value +17:06:07 ============================================================================ +17:06:07 [ 1] [ 4] [0800] +17:06:07 [ 7] [ 10] [0320100513] +17:06:07 [ 11] [ 6] [157378] +17:06:07 [ 70] [ 3] [301] +17:06:07 ============================================================================ +17:06:07 + + +waiting on router queue for slot.... +17:06:07 Sending to : +17:06:07 ============================================================================ +17:06:07 ============================================================================ +17:06:07 Slot Id : <35> +17:06:07 Transaction Type : RESPONSE +17:06:07 Received From : +17:06:07 ============================================================================ +17:06:07 FNo. Len. Field Value +17:06:07 ============================================================================ +17:06:07 [ 1] [ 4] [0810] +17:06:07 [ 7] [ 10] [0320100513] +17:06:07 [ 11] [ 6] [157378] +17:06:07 [ 39] [ 2] [00] +17:06:07 [ 70] [ 3] [301] +17:06:07 ============================================================================ +17:06:07 Calculate Source COMM Id = 2 +17:06:07 ============================================================================ +17:06:07 + + +waiting on router queue for slot.... +17:06:18 ============================================================================ +17:06:18 Slot Id : <3> +17:06:18 Transaction Type : REQUEST +17:06:18 Received From : +17:06:18 ============================================================================ +17:06:18 FNo. Len. Field Value +17:06:18 ============================================================================ +17:06:18 [ 1] [ 4] [0800] +17:06:18 [ 7] [ 10] [0320100524] +17:06:18 [ 11] [ 6] [157379] +17:06:18 [ 70] [ 3] [301] +17:06:18 ============================================================================ +17:06:18 + + +waiting on router queue for slot.... +17:06:18 Sending to : +17:06:18 ============================================================================ +17:06:18 ============================================================================ +17:06:18 Slot Id : <3> +17:06:18 Transaction Type : RESPONSE +17:06:18 Received From : +17:06:18 ============================================================================ +17:06:18 FNo. Len. Field Value +17:06:18 ============================================================================ +17:06:18 [ 1] [ 4] [0810] +17:06:18 [ 7] [ 10] [0320100524] +17:06:18 [ 11] [ 6] [157379] +17:06:18 [ 39] [ 2] [00] +17:06:18 [ 70] [ 3] [301] +17:06:18 ============================================================================ +17:06:18 Calculate Source COMM Id = 2 +17:06:18 ============================================================================ +17:06:18 + + +waiting on router queue for slot.... +17:06:22 ============================================================================ +17:06:22 Slot Id : <11> +17:06:22 Transaction Type : REQUEST +17:06:22 Received From : +17:06:22 ============================================================================ +17:06:22 FNo. Len. Field Value +17:06:22 ============================================================================ +17:06:22 [ 1] [ 4] [0800] +17:06:22 [ 7] [ 10] [0320100412] +17:06:22 [ 11] [ 6] [099526] +17:06:22 [ 37] [ 12] [57917099526] +17:06:22 [ 70] [ 3] [301] +17:06:22 ============================================================================ +17:06:22 + + +waiting on router queue for slot.... +17:06:22 Sending to : +17:06:22 ============================================================================ +17:06:22 ============================================================================ +17:06:22 Slot Id : <11> +17:06:22 Transaction Type : RESPONSE +17:06:22 Received From : +17:06:22 ============================================================================ +17:06:22 FNo. Len. Field Value +17:06:22 ============================================================================ +17:06:22 [ 1] [ 4] [0810] +17:06:22 [ 7] [ 10] [0320100412] +17:06:22 [ 11] [ 6] [099526] +17:06:22 [ 37] [ 12] [579170995260] +17:06:22 [ 39] [ 2] [00] +17:06:22 [ 70] [ 3] [810] +17:06:22 ============================================================================ +17:06:22 Calculate Source COMM Id = 4 +17:06:22 ============================================================================ +17:06:22 + + +waiting on router queue for slot.... +17:06:29 ============================================================================ +17:06:29 Slot Id : <33> +17:06:29 Transaction Type : REQUEST +17:06:29 Received From : +17:06:29 ============================================================================ +17:06:29 FNo. Len. Field Value +17:06:29 ============================================================================ +17:06:29 [ 1] [ 4] [0200] +17:06:29 [ 2] [ 16] [6213544002143094] +17:06:29 [ 3] [ 6] [011000] +17:06:29 [ 4] [ 12] [000020000000] +17:06:29 [ 7] [ 10] [0320170650] +17:06:29 [ 11] [ 6] [209247] +17:06:29 [ 12] [ 6] [165511] +17:06:29 [ 13] [ 4] [0320] +17:06:29 [ 14] [ 4] [4912] +17:06:29 [ 15] [ 4] [0320] +17:06:29 [ 18] [ 4] [6011] +17:06:29 [ 19] [ 3] [418] +17:06:29 [ 22] [ 3] [021] +17:06:29 [ 25] [ 2] [01] +17:06:29 [ 28] [ 9] [D00002000] +17:06:29 [ 32] [ 6] [198901] +17:06:29 [ 35] [ 32] [6213544002143094=491212014309129] +17:06:29 [ 37] [ 12] [507917209247] +17:06:29 [ 41] [ 8] [01529024] +17:06:29 [ 42] [ 15] [000000041529024] +17:06:29 [ 43] [ 40] [JDB ATM TOKYO COIL VN ] +17:06:29 [ 49] [ 3] [418] +17:06:29 [ 52] [ 16] [8A1E600B972305DB] +17:06:29 ============================================================================ +17:06:29 + + +waiting on router queue for slot.... +17:06:29 Sending to : +17:06:29 ============================================================================ +17:06:29 Sending to : +17:06:29 ============================================================================ +17:06:30 ============================================================================ +17:06:30 Slot Id : <33> +17:06:30 Transaction Type : REQUEST +17:06:30 Received From : +17:06:30 ============================================================================ +17:06:30 FNo. Len. Field Value +17:06:30 ============================================================================ +17:06:30 [ 1] [ 4] [0200] +17:06:30 [ 2] [ 16] [6213544002143094] +17:06:30 [ 3] [ 6] [011000] +17:06:30 [ 4] [ 12] [000020000000] +17:06:30 [ 7] [ 10] [0320170650] +17:06:30 [ 11] [ 6] [209247] +17:06:30 [ 12] [ 6] [165511] +17:06:30 [ 13] [ 4] [0320] +17:06:30 [ 14] [ 4] [4912] +17:06:30 [ 15] [ 4] [0320] +17:06:30 [ 18] [ 4] [6011] +17:06:30 [ 19] [ 3] [418] +17:06:30 [ 22] [ 3] [021] +17:06:30 [ 25] [ 2] [01] +17:06:30 [ 28] [ 9] [D00002000] +17:06:30 [ 32] [ 6] [198901] +17:06:30 [ 35] [ 32] [6213544002143094=491212014309129] +17:06:30 [ 37] [ 12] [507917209247] +17:06:30 [ 41] [ 8] [01529024] +17:06:30 [ 42] [ 15] [000000041529024] +17:06:30 [ 43] [ 40] [JDB ATM TOKYO COIL VN ] +17:06:30 [ 49] [ 3] [418] +17:06:30 [ 52] [ 16] [8A1E600B972305DB] +17:06:30 ============================================================================ +17:06:30 + + +waiting on router queue for slot.... +17:06:30 Sending to : +17:06:30 ============================================================================ +17:06:30 ============================================================================ +17:06:30 Slot Id : <33> +17:06:30 Transaction Type : REQUEST +17:06:30 Received From : +17:06:30 ============================================================================ +17:06:30 FNo. Len. Field Value +17:06:30 ============================================================================ +17:06:30 [ 1] [ 4] [0200] +17:06:30 [ 2] [ 16] [6213544002143094] +17:06:30 [ 3] [ 6] [011000] +17:06:30 [ 4] [ 12] [000020000000] +17:06:30 [ 7] [ 10] [0320170650] +17:06:30 [ 11] [ 6] [209247] +17:06:30 [ 12] [ 6] [165511] +17:06:30 [ 13] [ 4] [0320] +17:06:30 [ 14] [ 4] [4912] +17:06:30 [ 15] [ 4] [0320] +17:06:30 [ 18] [ 4] [6011] +17:06:30 [ 19] [ 3] [418] +17:06:30 [ 22] [ 3] [021] +17:06:30 [ 25] [ 2] [01] +17:06:30 [ 28] [ 9] [D00002000] +17:06:30 [ 32] [ 6] [198901] +17:06:30 [ 35] [ 32] [6213544002143094=491212014309129] +17:06:30 [ 37] [ 12] [507917209247] +17:06:30 [ 41] [ 8] [01529024] +17:06:30 [ 42] [ 15] [000000041529024] +17:06:30 [ 43] [ 40] [JDB ATM TOKYO COIL VN ] +17:06:30 [ 49] [ 3] [418] +17:06:30 [ 52] [ 16] [15ADA8D40D030BD0] +17:06:30 ============================================================================ +17:06:30 + + +waiting on router queue for slot.... +17:06:30 Sending to : <0> +17:06:30 ============================================================================ +17:06:30 ============================================================================ +17:06:30 Slot Id : <33> +17:06:30 Transaction Type : RESPONSE +17:06:30 Received From : +17:06:30 ============================================================================ +17:06:30 FNo. Len. Field Value +17:06:30 ============================================================================ +17:06:30 [ 1] [ 4] [0210] +17:06:30 [ 2] [ 16] [6213544002143094] +17:06:30 [ 3] [ 6] [011000] +17:06:30 [ 4] [ 12] [000020000000] +17:06:30 [ 7] [ 10] [0320170650] +17:06:30 [ 11] [ 6] [209247] +17:06:30 [ 12] [ 6] [165511] +17:06:30 [ 13] [ 4] [0320] +17:06:30 [ 15] [ 4] [0320] +17:06:30 [ 18] [ 4] [6011] +17:06:30 [ 19] [ 3] [418] +17:06:30 [ 32] [ 6] [198901] +17:06:30 [ 35] [ 32] [6213544002143094=491212014309129] +17:06:30 [ 37] [ 12] [507917209247] +17:06:30 [ 38] [ 6] [242748] +17:06:30 [ 39] [ 2] [00] +17:06:30 [ 41] [ 8] [01529024] +17:06:30 [ 49] [ 3] [418] +17:06:30 [ 54] [ 40] [1001418C0006347116001002418C000634711600] +17:06:30 ============================================================================ +17:06:30 Sending to : +17:06:30 ============================================================================ +17:06:30 + + +waiting on router queue for slot.... +17:06:32 ============================================================================ +17:06:32 Slot Id : <33> +17:06:32 Transaction Type : RESPONSE +17:06:32 Received From : +17:06:32 ============================================================================ +17:06:32 FNo. Len. Field Value +17:06:32 ============================================================================ +17:06:32 [ 1] [ 4] [0210] +17:06:32 [ 2] [ 16] [6213544002143094] +17:06:32 [ 3] [ 6] [011000] +17:06:32 [ 4] [ 12] [000020000000] +17:06:32 [ 7] [ 10] [0320170650] +17:06:32 [ 11] [ 6] [209247] +17:06:32 [ 12] [ 6] [165511] +17:06:32 [ 13] [ 4] [0320] +17:06:32 [ 15] [ 4] [0320] +17:06:32 [ 18] [ 4] [6011] +17:06:32 [ 19] [ 3] [418] +17:06:32 [ 32] [ 6] [198901] +17:06:32 [ 35] [ 32] [6213544002143094=491212014309129] +17:06:32 [ 37] [ 12] [507917209247] +17:06:32 [ 38] [ 6] [242748] +17:06:32 [ 39] [ 2] [00] +17:06:32 [ 41] [ 8] [01529024] +17:06:32 [ 49] [ 3] [418] +17:06:32 [ 54] [ 40] [1001418C0006347116001002418C000634711600] +17:06:32 ============================================================================ +17:06:32 Calculate Source COMM Id = 5 +17:06:32 ============================================================================ +17:06:32 + + +waiting on router queue for slot.... +17:06:34 ============================================================================ +17:06:34 Slot Id : <496> +17:06:34 Transaction Type : REQUEST +17:06:34 Received From : +17:06:34 ============================================================================ +17:06:34 FNo. Len. Field Value +17:06:34 ============================================================================ +17:06:34 [ 1] [ 4] [0800] +17:06:34 [ 7] [ 10] [0320100541] +17:06:34 [ 11] [ 6] [157380] +17:06:34 [ 70] [ 3] [301] +17:06:34 ============================================================================ +17:06:34 + + +waiting on router queue for slot.... +17:06:34 Sending to : +17:06:34 ============================================================================ +17:06:34 ============================================================================ +17:06:34 Slot Id : <496> +17:06:34 Transaction Type : RESPONSE +17:06:34 Received From : +17:06:34 ============================================================================ +17:06:34 FNo. Len. Field Value +17:06:34 ============================================================================ +17:06:34 [ 1] [ 4] [0810] +17:06:34 [ 7] [ 10] [0320100541] +17:06:34 [ 11] [ 6] [157380] +17:06:34 [ 39] [ 2] [00] +17:06:34 [ 70] [ 3] [301] +17:06:34 ============================================================================ +17:06:34 Calculate Source COMM Id = 2 +17:06:34 ============================================================================ +17:06:34 + + +waiting on router queue for slot.... +17:06:38 ============================================================================ +17:06:38 Slot Id : <30> +17:06:38 Transaction Type : REQUEST +17:06:38 Received From : +17:06:38 ============================================================================ +17:06:38 FNo. Len. Field Value +17:06:38 ============================================================================ +17:06:38 [ 1] [ 4] [0200] +17:06:38 [ 2] [ 16] [6688990103269203] +17:06:38 [ 3] [ 6] [010000] +17:06:38 [ 4] [ 12] [000010000000] +17:06:38 [ 7] [ 10] [0320170633] +17:06:38 [ 11] [ 6] [810073] +17:06:38 [ 12] [ 6] [170633] +17:06:38 [ 13] [ 4] [0320] +17:06:38 [ 15] [ 4] [0320] +17:06:38 [ 18] [ 4] [6011] +17:06:38 [ 22] [ 3] [900] +17:06:38 [ 25] [ 2] [02] +17:06:38 [ 28] [ 9] [D00002000] +17:06:38 [ 32] [ 6] [621354] +17:06:38 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:06:38 [ 37] [ 12] [507903499650] +17:06:38 [ 41] [ 8] [06002200] +17:06:38 [ 42] [ 15] [NATIVE ] +17:06:38 [ 43] [ 40] [Beng Market Beng LAO] +17:06:38 [ 49] [ 3] [418] +17:06:38 [ 52] [ 16] [570775FC25924772] +17:06:38 ============================================================================ +17:06:38 + + +waiting on router queue for slot.... +17:06:38 Sending to : +17:06:38 ============================================================================ +17:06:38 Sending to : +17:06:38 ============================================================================ +17:06:38 ============================================================================ +17:06:38 Slot Id : <30> +17:06:38 Transaction Type : REQUEST +17:06:38 Received From : +17:06:38 ============================================================================ +17:06:38 FNo. Len. Field Value +17:06:38 ============================================================================ +17:06:38 [ 1] [ 4] [0200] +17:06:38 [ 2] [ 16] [6688990103269203] +17:06:38 [ 3] [ 6] [010000] +17:06:38 [ 4] [ 12] [000010000000] +17:06:38 [ 7] [ 10] [0320170633] +17:06:38 [ 11] [ 6] [810073] +17:06:38 [ 12] [ 6] [170633] +17:06:38 [ 13] [ 4] [0320] +17:06:38 [ 15] [ 4] [0320] +17:06:38 [ 18] [ 4] [6011] +17:06:38 [ 22] [ 3] [900] +17:06:38 [ 25] [ 2] [02] +17:06:38 [ 28] [ 9] [D00002000] +17:06:38 [ 32] [ 6] [621354] +17:06:38 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:06:38 [ 37] [ 12] [507903499650] +17:06:38 [ 41] [ 8] [06002200] +17:06:38 [ 42] [ 15] [NATIVE ] +17:06:38 [ 43] [ 40] [Beng Market Beng LAO] +17:06:38 [ 49] [ 3] [418] +17:06:38 [ 52] [ 16] [570775FC25924772] +17:06:38 ============================================================================ +17:06:38 + + +waiting on router queue for slot.... +17:06:38 Sending to : +17:06:38 ============================================================================ +17:06:38 ============================================================================ +17:06:38 Slot Id : <30> +17:06:38 Transaction Type : REQUEST +17:06:38 Received From : +17:06:38 ============================================================================ +17:06:38 FNo. Len. Field Value +17:06:38 ============================================================================ +17:06:38 [ 1] [ 4] [0200] +17:06:38 [ 2] [ 16] [6688990103269203] +17:06:38 [ 3] [ 6] [010000] +17:06:38 [ 4] [ 12] [000010000000] +17:06:38 [ 7] [ 10] [0320170633] +17:06:38 [ 11] [ 6] [810073] +17:06:38 [ 12] [ 6] [170633] +17:06:38 [ 13] [ 4] [0320] +17:06:38 [ 15] [ 4] [0320] +17:06:38 [ 18] [ 4] [6011] +17:06:38 [ 22] [ 3] [900] +17:06:38 [ 25] [ 2] [02] +17:06:38 [ 28] [ 9] [D00002000] +17:06:38 [ 32] [ 6] [621354] +17:06:38 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:06:38 [ 37] [ 12] [507903499650] +17:06:38 [ 41] [ 8] [06002200] +17:06:38 [ 42] [ 15] [NATIVE ] +17:06:38 [ 43] [ 40] [Beng Market Beng LAO] +17:06:38 [ 49] [ 3] [418] +17:06:38 [ 52] [ 16] [004B73FEB4E6BE43] +17:06:38 ============================================================================ +17:06:38 + + +waiting on router queue for slot.... +17:06:38 Sending to : <4> +17:06:38 ============================================================================ +17:06:39 ============================================================================ +17:06:39 Slot Id : <30> +17:06:39 Transaction Type : RESPONSE +17:06:39 Received From : +17:06:39 ============================================================================ +17:06:39 FNo. Len. Field Value +17:06:39 ============================================================================ +17:06:39 [ 1] [ 4] [0210] +17:06:39 [ 2] [ 16] [6688990103269203] +17:06:39 [ 3] [ 6] [010000] +17:06:39 [ 4] [ 12] [000010000000] +17:06:39 [ 11] [ 6] [810073] +17:06:39 [ 12] [ 6] [170633] +17:06:39 [ 15] [ 4] [0320] +17:06:39 [ 18] [ 4] [6011] +17:06:39 [ 32] [ 6] [621354] +17:06:39 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:06:39 [ 37] [ 12] [507903499650] +17:06:39 [ 38] [ 6] [388845] +17:06:39 [ 39] [ 2] [00] +17:06:39 [ 41] [ 8] [06002200] +17:06:39 [ 49] [ 3] [418] +17:06:39 [ 54] [ 20] [0002418C000703741651] +17:06:39 ============================================================================ +17:06:39 Sending to : +17:06:39 ============================================================================ +17:06:39 + + +waiting on router queue for slot.... +17:06:40 ============================================================================ +17:06:40 Slot Id : <30> +17:06:40 Transaction Type : RESPONSE +17:06:40 Received From : +17:06:40 ============================================================================ +17:06:40 FNo. Len. Field Value +17:06:40 ============================================================================ +17:06:40 [ 1] [ 4] [0210] +17:06:40 [ 2] [ 16] [6688990103269203] +17:06:40 [ 3] [ 6] [010000] +17:06:40 [ 4] [ 12] [000010000000] +17:06:40 [ 11] [ 6] [810073] +17:06:40 [ 12] [ 6] [170633] +17:06:40 [ 15] [ 4] [0320] +17:06:40 [ 18] [ 4] [6011] +17:06:40 [ 32] [ 6] [621354] +17:06:40 [ 35] [ 37] [6688990103269203=42121231920355000000] +17:06:40 [ 37] [ 12] [507903499650] +17:06:40 [ 38] [ 6] [388845] +17:06:40 [ 39] [ 2] [00] +17:06:40 [ 41] [ 8] [06002200] +17:06:40 [ 49] [ 3] [418] +17:06:40 [ 54] [ 20] [0002418C000703741651] +17:06:40 ============================================================================ +17:06:40 Calculate Source COMM Id = 0 +17:06:40 ============================================================================ +17:06:40 + + +waiting on router queue for slot.... +17:06:41 ============================================================================ +17:06:41 Slot Id : <461> +17:06:41 Transaction Type : REQUEST +17:06:41 Received From : +17:06:41 ============================================================================ +17:06:41 FNo. Len. Field Value +17:06:41 ============================================================================ +17:06:41 [ 1] [ 4] [0200] +17:06:41 [ 2] [ 16] [6213544001516217] +17:06:41 [ 3] [ 6] [010000] +17:06:41 [ 4] [ 12] [000050000000] +17:06:41 [ 7] [ 10] [0320170431] +17:06:41 [ 11] [ 6] [952910] +17:06:41 [ 12] [ 6] [170431] +17:06:41 [ 13] [ 4] [0320] +17:06:41 [ 15] [ 4] [0320] +17:06:41 [ 18] [ 4] [6011] +17:06:41 [ 19] [ 3] [418] +17:06:41 [ 22] [ 3] [021] +17:06:41 [ 25] [ 2] [01] +17:06:41 [ 28] [ 9] [D00002000] +17:06:41 [ 32] [ 6] [668899] +17:06:41 [ 35] [ 32] [6213544001516217=491212011621158] +17:06:41 [ 37] [ 12] [507902025659] +17:06:41 [ 41] [ 8] [03414002] +17:06:41 [ 42] [ 15] [APT ] +17:06:41 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:06:41 [ 49] [ 3] [418] +17:06:41 [ 52] [ 16] [04858028F3C8A6BD] +17:06:41 ============================================================================ +17:06:41 + + +waiting on router queue for slot.... +17:06:41 Sending to : +17:06:41 ============================================================================ +17:06:41 Sending to : +17:06:41 ============================================================================ +17:06:42 ============================================================================ +17:06:42 Slot Id : <461> +17:06:42 Transaction Type : REQUEST +17:06:42 Received From : +17:06:42 ============================================================================ +17:06:42 FNo. Len. Field Value +17:06:42 ============================================================================ +17:06:42 [ 1] [ 4] [0200] +17:06:42 [ 2] [ 16] [6213544001516217] +17:06:42 [ 3] [ 6] [010000] +17:06:42 [ 4] [ 12] [000050000000] +17:06:42 [ 7] [ 10] [0320170431] +17:06:42 [ 11] [ 6] [952910] +17:06:42 [ 12] [ 6] [170431] +17:06:42 [ 13] [ 4] [0320] +17:06:42 [ 15] [ 4] [0320] +17:06:42 [ 18] [ 4] [6011] +17:06:42 [ 19] [ 3] [418] +17:06:42 [ 22] [ 3] [021] +17:06:42 [ 25] [ 2] [01] +17:06:42 [ 28] [ 9] [D00002000] +17:06:42 [ 32] [ 6] [668899] +17:06:42 [ 35] [ 32] [6213544001516217=491212011621158] +17:06:42 [ 37] [ 12] [507902025659] +17:06:42 [ 41] [ 8] [03414002] +17:06:42 [ 42] [ 15] [APT ] +17:06:42 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:06:42 [ 49] [ 3] [418] +17:06:42 [ 52] [ 16] [04858028F3C8A6BD] +17:06:42 ============================================================================ +17:06:42 + + +waiting on router queue for slot.... +17:06:42 Sending to : +17:06:42 ============================================================================ +17:06:42 ============================================================================ +17:06:42 Slot Id : <461> +17:06:42 Transaction Type : REQUEST +17:06:42 Received From : +17:06:42 ============================================================================ +17:06:42 FNo. Len. Field Value +17:06:42 ============================================================================ +17:06:42 [ 1] [ 4] [0200] +17:06:42 [ 2] [ 16] [6213544001516217] +17:06:42 [ 3] [ 6] [010000] +17:06:42 [ 4] [ 12] [000050000000] +17:06:42 [ 7] [ 10] [0320170431] +17:06:42 [ 11] [ 6] [952910] +17:06:42 [ 12] [ 6] [170431] +17:06:42 [ 13] [ 4] [0320] +17:06:42 [ 15] [ 4] [0320] +17:06:42 [ 18] [ 4] [6011] +17:06:42 [ 19] [ 3] [418] +17:06:42 [ 22] [ 3] [021] +17:06:42 [ 25] [ 2] [01] +17:06:42 [ 28] [ 9] [D00002000] +17:06:42 [ 32] [ 6] [668899] +17:06:42 [ 35] [ 32] [6213544001516217=491212011621158] +17:06:42 [ 37] [ 12] [507902025659] +17:06:42 [ 41] [ 8] [03414002] +17:06:42 [ 42] [ 15] [APT ] +17:06:42 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:06:42 [ 49] [ 3] [418] +17:06:42 [ 52] [ 16] [CB58698AF0F9AA04] +17:06:42 ============================================================================ +17:06:42 + + +waiting on router queue for slot.... +17:06:42 Sending to : <0> +17:06:42 ============================================================================ +17:06:42 ============================================================================ +17:06:42 Slot Id : <461> +17:06:42 Transaction Type : RESPONSE +17:06:42 Received From : +17:06:42 ============================================================================ +17:06:42 FNo. Len. Field Value +17:06:42 ============================================================================ +17:06:42 [ 1] [ 4] [0210] +17:06:42 [ 2] [ 16] [6213544001516217] +17:06:42 [ 3] [ 6] [010000] +17:06:42 [ 4] [ 12] [000050000000] +17:06:42 [ 7] [ 10] [0320170431] +17:06:42 [ 11] [ 6] [952910] +17:06:42 [ 12] [ 6] [170431] +17:06:42 [ 13] [ 4] [0320] +17:06:42 [ 15] [ 4] [0320] +17:06:42 [ 18] [ 4] [6011] +17:06:42 [ 19] [ 3] [418] +17:06:42 [ 32] [ 6] [668899] +17:06:42 [ 35] [ 32] [6213544001516217=491212011621158] +17:06:42 [ 37] [ 12] [507902025659] +17:06:42 [ 38] [ 6] [069356] +17:06:42 [ 39] [ 2] [00] +17:06:42 [ 41] [ 8] [03414002] +17:06:42 [ 49] [ 3] [418] +17:06:42 [ 54] [ 40] [0001418C0000119871870002418C000011987187] +17:06:42 ============================================================================ +17:06:42 Sending to : +17:06:42 ============================================================================ +17:06:42 + + +waiting on router queue for slot.... +17:06:44 ============================================================================ +17:06:44 Slot Id : <461> +17:06:44 Transaction Type : RESPONSE +17:06:44 Received From : +17:06:44 ============================================================================ +17:06:44 FNo. Len. Field Value +17:06:44 ============================================================================ +17:06:44 [ 1] [ 4] [0210] +17:06:44 [ 2] [ 16] [6213544001516217] +17:06:44 [ 3] [ 6] [010000] +17:06:44 [ 4] [ 12] [000050000000] +17:06:44 [ 7] [ 10] [0320170431] +17:06:44 [ 11] [ 6] [952910] +17:06:44 [ 12] [ 6] [170431] +17:06:44 [ 13] [ 4] [0320] +17:06:44 [ 15] [ 4] [0320] +17:06:44 [ 18] [ 4] [6011] +17:06:44 [ 19] [ 3] [418] +17:06:44 [ 32] [ 6] [668899] +17:06:44 [ 35] [ 32] [6213544001516217=491212011621158] +17:06:44 [ 37] [ 12] [507902025659] +17:06:44 [ 38] [ 6] [069356] +17:06:44 [ 39] [ 2] [00] +17:06:44 [ 41] [ 8] [03414002] +17:06:44 [ 49] [ 3] [418] +17:06:44 [ 54] [ 40] [0001418C0000119871870002418C000011987187] +17:06:44 ============================================================================ +17:06:44 Calculate Source COMM Id = 4 +17:06:44 ============================================================================ +17:06:44 + + +waiting on router queue for slot.... +17:06:45 ============================================================================ +17:06:45 Slot Id : <21> +17:06:45 Transaction Type : REQUEST +17:06:45 Received From : +17:06:45 ============================================================================ +17:06:45 FNo. Len. Field Value +17:06:45 ============================================================================ +17:06:45 [ 1] [ 4] [0800] +17:06:45 [ 7] [ 10] [0320100551] +17:06:45 [ 11] [ 6] [157381] +17:06:45 [ 70] [ 3] [301] +17:06:45 ============================================================================ +17:06:45 + + +waiting on router queue for slot.... +17:06:45 Sending to : +17:06:45 ============================================================================ +17:06:45 ============================================================================ +17:06:45 Slot Id : <21> +17:06:45 Transaction Type : RESPONSE +17:06:45 Received From : +17:06:45 ============================================================================ +17:06:45 FNo. Len. Field Value +17:06:45 ============================================================================ +17:06:45 [ 1] [ 4] [0810] +17:06:45 [ 7] [ 10] [0320100551] +17:06:45 [ 11] [ 6] [157381] +17:06:45 [ 39] [ 2] [00] +17:06:45 [ 70] [ 3] [301] +17:06:45 ============================================================================ +17:06:45 Calculate Source COMM Id = 2 +17:06:45 ============================================================================ +17:06:45 + + +waiting on router queue for slot.... +17:06:45 ============================================================================ +17:06:45 Slot Id : <37> +17:06:45 Transaction Type : REQUEST +17:06:45 Received From : +17:06:45 ============================================================================ +17:06:45 FNo. Len. Field Value +17:06:45 ============================================================================ +17:06:45 [ 1] [ 4] [0800] +17:06:45 [ 2] [ 5] [02531] +17:06:45 [ 3] [ 6] [579178] +17:06:45 [ 7] [ 10] [0320100645] +17:06:45 [ 11] [ 6] [807405] +17:06:45 [ 15] [ 10] [0320100645] +17:06:45 [ 37] [ 11] [57917807405] +17:06:45 [ 70] [ 3] [001] +17:06:45 ============================================================================ +17:06:45 + + +waiting on router queue for slot.... +17:06:45 ============================================================================ +17:06:45 Slot Id : <37> +17:06:45 Transaction Type : RESPONSE +17:06:45 Received From : +17:06:45 ============================================================================ +17:06:45 FNo. Len. Field Value +17:06:45 ============================================================================ +17:06:45 [ 1] [ 4] [0810] +17:06:45 [ 7] [ 10] [0320100645] +17:06:45 [ 11] [ 6] [807405] +17:06:45 [ 15] [ 4] [0320] +17:06:45 [ 37] [ 12] [57917807405] +17:06:45 [ 39] [ 2] [00] +17:06:45 [ 70] [ 3] [001] +17:06:45 ============================================================================ +17:06:45 Sending to : +17:06:45 ============================================================================ +17:06:45 + + +waiting on router queue for slot.... +17:06:49 ============================================================================ +17:06:49 Slot Id : <9> +17:06:49 Transaction Type : REQUEST +17:06:49 Received From : +17:06:49 ============================================================================ +17:06:49 FNo. Len. Field Value +17:06:49 ============================================================================ +17:06:49 [ 1] [ 4] [0200] +17:06:49 [ 2] [ 16] [6213544001530655] +17:06:49 [ 3] [ 6] [010000] +17:06:49 [ 4] [ 12] [000020000000] +17:06:49 [ 7] [ 10] [0320170439] +17:06:49 [ 11] [ 6] [952914] +17:06:49 [ 12] [ 6] [170439] +17:06:49 [ 13] [ 4] [0320] +17:06:49 [ 15] [ 4] [0320] +17:06:49 [ 18] [ 4] [6011] +17:06:49 [ 19] [ 3] [418] +17:06:49 [ 22] [ 3] [021] +17:06:49 [ 25] [ 2] [01] +17:06:49 [ 28] [ 9] [D00002000] +17:06:49 [ 32] [ 6] [668899] +17:06:49 [ 35] [ 32] [6213544001530655=491212013065489] +17:06:49 [ 37] [ 12] [507900560137] +17:06:49 [ 41] [ 8] [03014004] +17:06:49 [ 42] [ 15] [APT ] +17:06:49 [ 43] [ 40] [ TEACHER COLLEGE KH7 SAVAN] +17:06:49 [ 49] [ 3] [418] +17:06:49 [ 52] [ 16] [66142E31314B275B] +17:06:49 ============================================================================ +17:06:49 + + +waiting on router queue for slot.... +17:06:49 Sending to : +17:06:49 ============================================================================ +17:06:49 Sending to : +17:06:49 ============================================================================ +17:06:50 ============================================================================ +17:06:50 Slot Id : <9> +17:06:50 Transaction Type : REQUEST +17:06:50 Received From : +17:06:50 ============================================================================ +17:06:50 FNo. Len. Field Value +17:06:50 ============================================================================ +17:06:50 [ 1] [ 4] [0200] +17:06:50 [ 2] [ 16] [6213544001530655] +17:06:50 [ 3] [ 6] [010000] +17:06:50 [ 4] [ 12] [000020000000] +17:06:50 [ 7] [ 10] [0320170439] +17:06:50 [ 11] [ 6] [952914] +17:06:50 [ 12] [ 6] [170439] +17:06:50 [ 13] [ 4] [0320] +17:06:50 [ 15] [ 4] [0320] +17:06:50 [ 18] [ 4] [6011] +17:06:50 [ 19] [ 3] [418] +17:06:50 [ 22] [ 3] [021] +17:06:50 [ 25] [ 2] [01] +17:06:50 [ 28] [ 9] [D00002000] +17:06:50 [ 32] [ 6] [668899] +17:06:50 [ 35] [ 32] [6213544001530655=491212013065489] +17:06:50 [ 37] [ 12] [507900560137] +17:06:50 [ 41] [ 8] [03014004] +17:06:50 [ 42] [ 15] [APT ] +17:06:50 [ 43] [ 40] [ TEACHER COLLEGE KH7 SAVAN] +17:06:50 [ 49] [ 3] [418] +17:06:50 [ 52] [ 16] [66142E31314B275B] +17:06:50 ============================================================================ +17:06:50 + + +waiting on router queue for slot.... +17:06:50 Sending to : +17:06:50 ============================================================================ +17:06:50 ============================================================================ +17:06:50 Slot Id : <9> +17:06:50 Transaction Type : REQUEST +17:06:50 Received From : +17:06:50 ============================================================================ +17:06:50 FNo. Len. Field Value +17:06:50 ============================================================================ +17:06:50 [ 1] [ 4] [0200] +17:06:50 [ 2] [ 16] [6213544001530655] +17:06:50 [ 3] [ 6] [010000] +17:06:50 [ 4] [ 12] [000020000000] +17:06:50 [ 7] [ 10] [0320170439] +17:06:50 [ 11] [ 6] [952914] +17:06:50 [ 12] [ 6] [170439] +17:06:50 [ 13] [ 4] [0320] +17:06:50 [ 15] [ 4] [0320] +17:06:50 [ 18] [ 4] [6011] +17:06:50 [ 19] [ 3] [418] +17:06:50 [ 22] [ 3] [021] +17:06:50 [ 25] [ 2] [01] +17:06:50 [ 28] [ 9] [D00002000] +17:06:50 [ 32] [ 6] [668899] +17:06:50 [ 35] [ 32] [6213544001530655=491212013065489] +17:06:50 [ 37] [ 12] [507900560137] +17:06:50 [ 41] [ 8] [03014004] +17:06:50 [ 42] [ 15] [APT ] +17:06:50 [ 43] [ 40] [ TEACHER COLLEGE KH7 SAVAN] +17:06:50 [ 49] [ 3] [418] +17:06:50 [ 52] [ 16] [E07772F66EE922E8] +17:06:50 ============================================================================ +17:06:50 + + +waiting on router queue for slot.... +17:06:50 Sending to : <0> +17:06:50 ============================================================================ +17:06:51 ============================================================================ +17:06:51 Slot Id : <9> +17:06:51 Transaction Type : RESPONSE +17:06:51 Received From : +17:06:51 ============================================================================ +17:06:51 FNo. Len. Field Value +17:06:51 ============================================================================ +17:06:51 [ 1] [ 4] [0210] +17:06:51 [ 2] [ 16] [6213544001530655] +17:06:51 [ 3] [ 6] [010000] +17:06:51 [ 4] [ 12] [000020000000] +17:06:51 [ 7] [ 10] [0320170439] +17:06:51 [ 11] [ 6] [952914] +17:06:51 [ 12] [ 6] [170439] +17:06:51 [ 13] [ 4] [0320] +17:06:51 [ 15] [ 4] [0320] +17:06:51 [ 18] [ 4] [6011] +17:06:51 [ 19] [ 3] [418] +17:06:51 [ 32] [ 6] [668899] +17:06:51 [ 35] [ 32] [6213544001530655=491212013065489] +17:06:51 [ 37] [ 12] [507900560137] +17:06:51 [ 38] [ 6] [382268] +17:06:51 [ 39] [ 2] [00] +17:06:51 [ 41] [ 8] [03014004] +17:06:51 [ 49] [ 3] [418] +17:06:51 [ 54] [ 40] [0001418C0000455112730002418C000045511273] +17:06:51 ============================================================================ +17:06:51 Sending to : +17:06:51 ============================================================================ +17:06:51 + + +waiting on router queue for slot.... +17:06:52 ============================================================================ +17:06:52 Slot Id : <9> +17:06:52 Transaction Type : RESPONSE +17:06:52 Received From : +17:06:52 ============================================================================ +17:06:52 FNo. Len. Field Value +17:06:52 ============================================================================ +17:06:52 [ 1] [ 4] [0210] +17:06:52 [ 2] [ 16] [6213544001530655] +17:06:52 [ 3] [ 6] [010000] +17:06:52 [ 4] [ 12] [000020000000] +17:06:52 [ 7] [ 10] [0320170439] +17:06:52 [ 11] [ 6] [952914] +17:06:52 [ 12] [ 6] [170439] +17:06:52 [ 13] [ 4] [0320] +17:06:52 [ 15] [ 4] [0320] +17:06:52 [ 18] [ 4] [6011] +17:06:52 [ 19] [ 3] [418] +17:06:52 [ 32] [ 6] [668899] +17:06:52 [ 35] [ 32] [6213544001530655=491212013065489] +17:06:52 [ 37] [ 12] [507900560137] +17:06:52 [ 38] [ 6] [382268] +17:06:52 [ 39] [ 2] [00] +17:06:52 [ 41] [ 8] [03014004] +17:06:52 [ 49] [ 3] [418] +17:06:52 [ 54] [ 40] [0001418C0000455112730002418C000045511273] +17:06:52 ============================================================================ +17:06:52 Calculate Source COMM Id = 4 +17:06:52 ============================================================================ +17:06:52 + + +waiting on router queue for slot.... +17:06:55 ============================================================================ +17:06:55 Slot Id : <45> +17:06:55 Transaction Type : REQUEST +17:06:55 Received From : +17:06:55 ============================================================================ +17:06:55 FNo. Len. Field Value +17:06:55 ============================================================================ +17:06:55 [ 1] [ 4] [0800] +17:06:55 [ 7] [ 10] [0321001844] +17:06:55 [ 11] [ 6] [171844] +17:06:55 [ 37] [ 12] [57917171844] +17:06:55 [ 70] [ 3] [301] +17:06:55 ============================================================================ +17:06:55 + + +waiting on router queue for slot.... +17:06:55 Sending to : +17:06:55 ============================================================================ +17:06:55 ============================================================================ +17:06:55 Slot Id : <45> +17:06:55 Transaction Type : RESPONSE +17:06:55 Received From : +17:06:55 ============================================================================ +17:06:55 FNo. Len. Field Value +17:06:55 ============================================================================ +17:06:55 [ 1] [ 4] [0810] +17:06:55 [ 7] [ 10] [0321001844] +17:06:55 [ 11] [ 6] [171844] +17:06:55 [ 37] [ 12] [579171718440] +17:06:55 [ 39] [ 2] [00] +17:06:55 [ 70] [ 3] [810] +17:06:55 ============================================================================ +17:06:55 Calculate Source COMM Id = 6 +17:06:55 ============================================================================ +17:06:55 + + +waiting on router queue for slot.... +17:06:57 ============================================================================ +17:06:57 Slot Id : <36> +17:06:57 Transaction Type : REQUEST +17:06:57 Received From : +17:06:57 ============================================================================ +17:06:57 FNo. Len. Field Value +17:06:57 ============================================================================ +17:06:57 [ 1] [ 4] [0800] +17:06:57 [ 7] [ 10] [0320100602] +17:06:57 [ 11] [ 6] [157382] +17:06:57 [ 70] [ 3] [301] +17:06:57 ============================================================================ +17:06:57 + + +waiting on router queue for slot.... +17:06:57 Sending to : +17:06:57 ============================================================================ +17:06:57 ============================================================================ +17:06:57 Slot Id : <36> +17:06:57 Transaction Type : RESPONSE +17:06:57 Received From : +17:06:57 ============================================================================ +17:06:57 FNo. Len. Field Value +17:06:57 ============================================================================ +17:06:57 [ 1] [ 4] [0810] +17:06:57 [ 7] [ 10] [0320100602] +17:06:57 [ 11] [ 6] [157382] +17:06:57 [ 39] [ 2] [00] +17:06:57 [ 70] [ 3] [301] +17:06:57 ============================================================================ +17:06:57 Calculate Source COMM Id = 2 +17:06:57 ============================================================================ +17:06:57 + + +waiting on router queue for slot.... +17:07:08 ============================================================================ +17:07:08 Slot Id : <18> +17:07:08 Transaction Type : REQUEST +17:07:08 Received From : +17:07:08 ============================================================================ +17:07:08 FNo. Len. Field Value +17:07:08 ============================================================================ +17:07:08 [ 1] [ 4] [0200] +17:07:08 [ 2] [ 16] [6213544002002126] +17:07:08 [ 3] [ 6] [011000] +17:07:08 [ 4] [ 12] [000040000000] +17:07:08 [ 7] [ 10] [0320170728] +17:07:08 [ 11] [ 6] [209249] +17:07:08 [ 12] [ 6] [170234] +17:07:08 [ 13] [ 4] [0320] +17:07:08 [ 14] [ 4] [4912] +17:07:08 [ 15] [ 4] [0320] +17:07:08 [ 18] [ 4] [6011] +17:07:08 [ 19] [ 3] [418] +17:07:08 [ 22] [ 3] [021] +17:07:08 [ 25] [ 2] [01] +17:07:08 [ 28] [ 9] [D00002000] +17:07:08 [ 32] [ 6] [198901] +17:07:08 [ 35] [ 32] [6213544002002126=491212010212497] +17:07:08 [ 37] [ 12] [507917209249] +17:07:08 [ 41] [ 8] [19529001] +17:07:08 [ 42] [ 15] [000000041952901] +17:07:08 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:07:08 [ 49] [ 3] [418] +17:07:08 [ 52] [ 16] [AA5523F4693DCF8F] +17:07:08 ============================================================================ +17:07:08 + + +waiting on router queue for slot.... +17:07:08 Sending to : +17:07:08 ============================================================================ +17:07:08 Sending to : +17:07:08 ============================================================================ +17:07:08 ============================================================================ +17:07:08 Slot Id : <18> +17:07:08 Transaction Type : REQUEST +17:07:08 Received From : +17:07:08 ============================================================================ +17:07:08 FNo. Len. Field Value +17:07:08 ============================================================================ +17:07:08 [ 1] [ 4] [0200] +17:07:08 [ 2] [ 16] [6213544002002126] +17:07:08 [ 3] [ 6] [011000] +17:07:08 [ 4] [ 12] [000040000000] +17:07:08 [ 7] [ 10] [0320170728] +17:07:08 [ 11] [ 6] [209249] +17:07:08 [ 12] [ 6] [170234] +17:07:08 [ 13] [ 4] [0320] +17:07:08 [ 14] [ 4] [4912] +17:07:08 [ 15] [ 4] [0320] +17:07:08 [ 18] [ 4] [6011] +17:07:08 [ 19] [ 3] [418] +17:07:08 [ 22] [ 3] [021] +17:07:08 [ 25] [ 2] [01] +17:07:08 [ 28] [ 9] [D00002000] +17:07:08 [ 32] [ 6] [198901] +17:07:08 [ 35] [ 32] [6213544002002126=491212010212497] +17:07:08 [ 37] [ 12] [507917209249] +17:07:08 [ 41] [ 8] [19529001] +17:07:08 [ 42] [ 15] [000000041952901] +17:07:08 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:07:08 [ 49] [ 3] [418] +17:07:08 [ 52] [ 16] [AA5523F4693DCF8F] +17:07:08 ============================================================================ +17:07:08 + + +waiting on router queue for slot.... +17:07:08 Sending to : +17:07:08 ============================================================================ +17:07:08 ============================================================================ +17:07:08 Slot Id : <18> +17:07:08 Transaction Type : REQUEST +17:07:08 Received From : +17:07:08 ============================================================================ +17:07:08 FNo. Len. Field Value +17:07:08 ============================================================================ +17:07:08 [ 1] [ 4] [0200] +17:07:08 [ 2] [ 16] [6213544002002126] +17:07:08 [ 3] [ 6] [011000] +17:07:08 [ 4] [ 12] [000040000000] +17:07:08 [ 7] [ 10] [0320170728] +17:07:08 [ 11] [ 6] [209249] +17:07:08 [ 12] [ 6] [170234] +17:07:08 [ 13] [ 4] [0320] +17:07:08 [ 14] [ 4] [4912] +17:07:08 [ 15] [ 4] [0320] +17:07:08 [ 18] [ 4] [6011] +17:07:08 [ 19] [ 3] [418] +17:07:08 [ 22] [ 3] [021] +17:07:08 [ 25] [ 2] [01] +17:07:08 [ 28] [ 9] [D00002000] +17:07:08 [ 32] [ 6] [198901] +17:07:08 [ 35] [ 32] [6213544002002126=491212010212497] +17:07:08 [ 37] [ 12] [507917209249] +17:07:08 [ 41] [ 8] [19529001] +17:07:08 [ 42] [ 15] [000000041952901] +17:07:08 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:07:08 [ 49] [ 3] [418] +17:07:08 [ 52] [ 16] [3F7FE5089AB9C196] +17:07:08 ============================================================================ +17:07:08 + + +waiting on router queue for slot.... +17:07:08 Sending to : <0> +17:07:08 ============================================================================ +17:07:08 ============================================================================ +17:07:08 Slot Id : <18> +17:07:08 Transaction Type : RESPONSE +17:07:08 Received From : +17:07:08 ============================================================================ +17:07:08 FNo. Len. Field Value +17:07:08 ============================================================================ +17:07:08 [ 1] [ 4] [0210] +17:07:08 [ 2] [ 16] [6213544002002126] +17:07:08 [ 3] [ 6] [011000] +17:07:08 [ 4] [ 12] [000040000000] +17:07:08 [ 7] [ 10] [0320170728] +17:07:08 [ 11] [ 6] [209249] +17:07:08 [ 12] [ 6] [170234] +17:07:08 [ 13] [ 4] [0320] +17:07:08 [ 15] [ 4] [0320] +17:07:08 [ 18] [ 4] [6011] +17:07:08 [ 19] [ 3] [418] +17:07:08 [ 22] [ 3] [021] +17:07:08 [ 32] [ 6] [198901] +17:07:08 [ 35] [ 32] [6213544002002126=491212010212497] +17:07:08 [ 37] [ 12] [507917209249] +17:07:08 [ 38] [ 6] [170704] +17:07:08 [ 39] [ 2] [55] +17:07:08 [ 41] [ 8] [19529001] +17:07:08 [ 49] [ 3] [418] +17:07:08 ============================================================================ +17:07:08 Sending to : +17:07:08 ============================================================================ +17:07:08 + + +waiting on router queue for slot.... +17:07:10 ============================================================================ +17:07:10 Slot Id : <18> +17:07:10 Transaction Type : RESPONSE +17:07:10 Received From : +17:07:10 ============================================================================ +17:07:10 FNo. Len. Field Value +17:07:10 ============================================================================ +17:07:10 [ 1] [ 4] [0210] +17:07:10 [ 2] [ 16] [6213544002002126] +17:07:10 [ 3] [ 6] [011000] +17:07:10 [ 4] [ 12] [000040000000] +17:07:10 [ 7] [ 10] [0320170728] +17:07:10 [ 11] [ 6] [209249] +17:07:10 [ 12] [ 6] [170234] +17:07:10 [ 13] [ 4] [0320] +17:07:10 [ 15] [ 4] [0320] +17:07:10 [ 18] [ 4] [6011] +17:07:10 [ 19] [ 3] [418] +17:07:10 [ 22] [ 3] [021] +17:07:10 [ 32] [ 6] [198901] +17:07:10 [ 35] [ 32] [6213544002002126=491212010212497] +17:07:10 [ 37] [ 12] [507917209249] +17:07:10 [ 38] [ 6] [170704] +17:07:10 [ 39] [ 2] [55] +17:07:10 [ 41] [ 8] [19529001] +17:07:10 [ 49] [ 3] [418] +17:07:10 ============================================================================ +17:07:10 Calculate Source COMM Id = 5 +17:07:10 ============================================================================ +17:07:10 + + +waiting on router queue for slot.... +17:07:10 ============================================================================ +17:07:10 Slot Id : <497> +17:07:10 Transaction Type : REQUEST +17:07:10 Received From : +17:07:10 ============================================================================ +17:07:10 FNo. Len. Field Value +17:07:10 ============================================================================ +17:07:10 [ 1] [ 4] [0200] +17:07:10 [ 2] [ 16] [6213544002040126] +17:07:10 [ 3] [ 6] [010000] +17:07:10 [ 4] [ 12] [000080000000] +17:07:10 [ 7] [ 10] [0320170459] +17:07:10 [ 11] [ 6] [952927] +17:07:10 [ 12] [ 6] [170459] +17:07:10 [ 13] [ 4] [0320] +17:07:10 [ 15] [ 4] [0320] +17:07:10 [ 18] [ 4] [6011] +17:07:10 [ 19] [ 3] [418] +17:07:10 [ 22] [ 3] [021] +17:07:10 [ 25] [ 2] [01] +17:07:10 [ 28] [ 9] [D00002000] +17:07:10 [ 32] [ 6] [668899] +17:07:10 [ 35] [ 32] [6213544002040126=491212014012676] +17:07:10 [ 37] [ 12] [507900858437] +17:07:10 [ 41] [ 8] [03015004] +17:07:10 [ 42] [ 15] [APT ] +17:07:10 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +17:07:10 [ 49] [ 3] [418] +17:07:10 [ 52] [ 16] [8144EA8E37B3B7B8] +17:07:10 ============================================================================ +17:07:10 + + +waiting on router queue for slot.... +17:07:10 Sending to : +17:07:10 ============================================================================ +17:07:10 Sending to : +17:07:10 ============================================================================ +17:07:10 ============================================================================ +17:07:10 Slot Id : <497> +17:07:10 Transaction Type : REQUEST +17:07:10 Received From : +17:07:10 ============================================================================ +17:07:10 FNo. Len. Field Value +17:07:10 ============================================================================ +17:07:10 [ 1] [ 4] [0200] +17:07:10 [ 2] [ 16] [6213544002040126] +17:07:10 [ 3] [ 6] [010000] +17:07:10 [ 4] [ 12] [000080000000] +17:07:10 [ 7] [ 10] [0320170459] +17:07:10 [ 11] [ 6] [952927] +17:07:10 [ 12] [ 6] [170459] +17:07:10 [ 13] [ 4] [0320] +17:07:10 [ 15] [ 4] [0320] +17:07:10 [ 18] [ 4] [6011] +17:07:10 [ 19] [ 3] [418] +17:07:10 [ 22] [ 3] [021] +17:07:10 [ 25] [ 2] [01] +17:07:10 [ 28] [ 9] [D00002000] +17:07:10 [ 32] [ 6] [668899] +17:07:10 [ 35] [ 32] [6213544002040126=491212014012676] +17:07:10 [ 37] [ 12] [507900858437] +17:07:10 [ 41] [ 8] [03015004] +17:07:10 [ 42] [ 15] [APT ] +17:07:10 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +17:07:10 [ 49] [ 3] [418] +17:07:10 [ 52] [ 16] [8144EA8E37B3B7B8] +17:07:10 ============================================================================ +17:07:10 + + +waiting on router queue for slot.... +17:07:10 Sending to : +17:07:10 ============================================================================ +17:07:10 ============================================================================ +17:07:10 Slot Id : <497> +17:07:10 Transaction Type : REQUEST +17:07:10 Received From : +17:07:10 ============================================================================ +17:07:10 FNo. Len. Field Value +17:07:10 ============================================================================ +17:07:10 [ 1] [ 4] [0200] +17:07:10 [ 2] [ 16] [6213544002040126] +17:07:10 [ 3] [ 6] [010000] +17:07:10 [ 4] [ 12] [000080000000] +17:07:10 [ 7] [ 10] [0320170459] +17:07:10 [ 11] [ 6] [952927] +17:07:10 [ 12] [ 6] [170459] +17:07:10 [ 13] [ 4] [0320] +17:07:10 [ 15] [ 4] [0320] +17:07:10 [ 18] [ 4] [6011] +17:07:10 [ 19] [ 3] [418] +17:07:10 [ 22] [ 3] [021] +17:07:10 [ 25] [ 2] [01] +17:07:10 [ 28] [ 9] [D00002000] +17:07:10 [ 32] [ 6] [668899] +17:07:10 [ 35] [ 32] [6213544002040126=491212014012676] +17:07:10 [ 37] [ 12] [507900858437] +17:07:10 [ 41] [ 8] [03015004] +17:07:10 [ 42] [ 15] [APT ] +17:07:10 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +17:07:10 [ 49] [ 3] [418] +17:07:10 [ 52] [ 16] [D282EA88F04E55EC] +17:07:10 ============================================================================ +17:07:10 + + +waiting on router queue for slot.... +17:07:10 Sending to : <0> +17:07:10 ============================================================================ +17:07:11 ============================================================================ +17:07:11 Slot Id : <497> +17:07:11 Transaction Type : RESPONSE +17:07:11 Received From : +17:07:11 ============================================================================ +17:07:11 FNo. Len. Field Value +17:07:11 ============================================================================ +17:07:11 [ 1] [ 4] [0210] +17:07:11 [ 2] [ 16] [6213544002040126] +17:07:11 [ 3] [ 6] [010000] +17:07:11 [ 4] [ 12] [000080000000] +17:07:11 [ 7] [ 10] [0320170459] +17:07:11 [ 11] [ 6] [952927] +17:07:11 [ 12] [ 6] [170459] +17:07:11 [ 13] [ 4] [0320] +17:07:11 [ 15] [ 4] [0320] +17:07:11 [ 18] [ 4] [6011] +17:07:11 [ 19] [ 3] [418] +17:07:11 [ 32] [ 6] [668899] +17:07:11 [ 35] [ 32] [6213544002040126=491212014012676] +17:07:11 [ 37] [ 12] [507900858437] +17:07:11 [ 38] [ 6] [464401] +17:07:11 [ 39] [ 2] [00] +17:07:11 [ 41] [ 8] [03015004] +17:07:11 [ 49] [ 3] [418] +17:07:11 [ 54] [ 40] [0001418C0000205555550002418C000020555555] +17:07:11 ============================================================================ +17:07:11 Sending to : +17:07:11 ============================================================================ +17:07:11 + + +waiting on router queue for slot.... +17:07:11 ============================================================================ +17:07:11 Slot Id : <40> +17:07:11 Transaction Type : REQUEST +17:07:11 Received From : +17:07:11 ============================================================================ +17:07:11 FNo. Len. Field Value +17:07:11 ============================================================================ +17:07:11 [ 1] [ 4] [0800] +17:07:11 [ 7] [ 10] [0320100618] +17:07:11 [ 11] [ 6] [157383] +17:07:11 [ 70] [ 3] [301] +17:07:11 ============================================================================ +17:07:11 + + +waiting on router queue for slot.... +17:07:11 Sending to : +17:07:11 ============================================================================ +17:07:11 ============================================================================ +17:07:11 Slot Id : <40> +17:07:11 Transaction Type : RESPONSE +17:07:11 Received From : +17:07:11 ============================================================================ +17:07:11 FNo. Len. Field Value +17:07:11 ============================================================================ +17:07:11 [ 1] [ 4] [0810] +17:07:11 [ 7] [ 10] [0320100618] +17:07:11 [ 11] [ 6] [157383] +17:07:11 [ 39] [ 2] [00] +17:07:11 [ 70] [ 3] [301] +17:07:11 ============================================================================ +17:07:11 Calculate Source COMM Id = 2 +17:07:11 ============================================================================ +17:07:11 + + +waiting on router queue for slot.... +17:07:12 ============================================================================ +17:07:12 Slot Id : <497> +17:07:12 Transaction Type : RESPONSE +17:07:12 Received From : +17:07:12 ============================================================================ +17:07:12 FNo. Len. Field Value +17:07:12 ============================================================================ +17:07:12 [ 1] [ 4] [0210] +17:07:12 [ 2] [ 16] [6213544002040126] +17:07:12 [ 3] [ 6] [010000] +17:07:12 [ 4] [ 12] [000080000000] +17:07:12 [ 7] [ 10] [0320170459] +17:07:12 [ 11] [ 6] [952927] +17:07:12 [ 12] [ 6] [170459] +17:07:12 [ 13] [ 4] [0320] +17:07:12 [ 15] [ 4] [0320] +17:07:12 [ 18] [ 4] [6011] +17:07:12 [ 19] [ 3] [418] +17:07:12 [ 32] [ 6] [668899] +17:07:12 [ 35] [ 32] [6213544002040126=491212014012676] +17:07:12 [ 37] [ 12] [507900858437] +17:07:12 [ 38] [ 6] [464401] +17:07:12 [ 39] [ 2] [00] +17:07:12 [ 41] [ 8] [03015004] +17:07:12 [ 49] [ 3] [418] +17:07:12 [ 54] [ 40] [0001418C0000205555550002418C000020555555] +17:07:12 ============================================================================ +17:07:12 Calculate Source COMM Id = 4 +17:07:12 ============================================================================ +17:07:12 + + +waiting on router queue for slot.... +17:07:22 ============================================================================ +17:07:22 Slot Id : <8> +17:07:22 Transaction Type : REQUEST +17:07:22 Received From : +17:07:22 ============================================================================ +17:07:22 FNo. Len. Field Value +17:07:22 ============================================================================ +17:07:22 [ 1] [ 4] [0800] +17:07:22 [ 7] [ 10] [0320100629] +17:07:22 [ 11] [ 6] [157384] +17:07:22 [ 70] [ 3] [301] +17:07:22 ============================================================================ +17:07:22 + + +waiting on router queue for slot.... +17:07:22 Sending to : +17:07:22 ============================================================================ +17:07:22 ============================================================================ +17:07:22 Slot Id : <8> +17:07:22 Transaction Type : RESPONSE +17:07:22 Received From : +17:07:22 ============================================================================ +17:07:22 FNo. Len. Field Value +17:07:22 ============================================================================ +17:07:22 [ 1] [ 4] [0810] +17:07:22 [ 7] [ 10] [0320100629] +17:07:22 [ 11] [ 6] [157384] +17:07:22 [ 39] [ 2] [00] +17:07:22 [ 70] [ 3] [301] +17:07:22 ============================================================================ +17:07:22 Calculate Source COMM Id = 2 +17:07:22 ============================================================================ +17:07:22 + + +waiting on router queue for slot.... +17:07:37 ============================================================================ +17:07:37 Slot Id : <28> +17:07:37 Transaction Type : REQUEST +17:07:37 Received From : +17:07:37 ============================================================================ +17:07:37 FNo. Len. Field Value +17:07:37 ============================================================================ +17:07:37 [ 1] [ 4] [0200] +17:07:37 [ 2] [ 16] [6213544001856019] +17:07:37 [ 3] [ 6] [301000] +17:07:37 [ 4] [ 12] [000000000000] +17:07:37 [ 7] [ 10] [0320170757] +17:07:37 [ 11] [ 6] [209261] +17:07:37 [ 12] [ 6] [170349] +17:07:37 [ 13] [ 4] [0320] +17:07:37 [ 14] [ 4] [4912] +17:07:37 [ 15] [ 4] [0320] +17:07:37 [ 18] [ 4] [6011] +17:07:37 [ 19] [ 3] [418] +17:07:37 [ 22] [ 3] [021] +17:07:37 [ 25] [ 2] [01] +17:07:37 [ 28] [ 9] [D00000000] +17:07:37 [ 32] [ 6] [198901] +17:07:37 [ 35] [ 32] [6213544001856019=491212015601403] +17:07:37 [ 37] [ 12] [507917209261] +17:07:37 [ 41] [ 8] [00852902] +17:07:37 [ 42] [ 15] [000000040852902] +17:07:37 [ 43] [ 40] [ATM SAVANCH II VN ] +17:07:37 [ 49] [ 3] [418] +17:07:37 [ 52] [ 16] [CC0234DAA66D715C] +17:07:37 ============================================================================ +17:07:37 + + +waiting on router queue for slot.... +17:07:37 Sending to : +17:07:37 ============================================================================ +17:07:37 Sending to : +17:07:37 ============================================================================ +17:07:37 ============================================================================ +17:07:37 Slot Id : <43> +17:07:37 Transaction Type : REQUEST +17:07:37 Received From : +17:07:37 ============================================================================ +17:07:37 FNo. Len. Field Value +17:07:37 ============================================================================ +17:07:37 [ 1] [ 4] [0800] +17:07:37 [ 7] [ 10] [0320100644] +17:07:37 [ 11] [ 6] [157385] +17:07:37 [ 70] [ 3] [301] +17:07:37 ============================================================================ +17:07:37 + + +waiting on router queue for slot.... +17:07:37 Sending to : +17:07:37 ============================================================================ +17:07:37 ============================================================================ +17:07:37 Slot Id : <43> +17:07:37 Transaction Type : RESPONSE +17:07:37 Received From : +17:07:37 ============================================================================ +17:07:37 FNo. Len. Field Value +17:07:37 ============================================================================ +17:07:37 [ 1] [ 4] [0810] +17:07:37 [ 7] [ 10] [0320100644] +17:07:37 [ 11] [ 6] [157385] +17:07:37 [ 39] [ 2] [00] +17:07:37 [ 70] [ 3] [301] +17:07:37 ============================================================================ +17:07:37 Calculate Source COMM Id = 2 +17:07:37 ============================================================================ +17:07:37 + + +waiting on router queue for slot.... +17:07:37 ============================================================================ +17:07:37 Slot Id : <28> +17:07:37 Transaction Type : REQUEST +17:07:37 Received From : +17:07:37 ============================================================================ +17:07:37 FNo. Len. Field Value +17:07:37 ============================================================================ +17:07:37 [ 1] [ 4] [0200] +17:07:37 [ 2] [ 16] [6213544001856019] +17:07:37 [ 3] [ 6] [301000] +17:07:37 [ 4] [ 12] [000000000000] +17:07:37 [ 7] [ 10] [0320170757] +17:07:37 [ 11] [ 6] [209261] +17:07:37 [ 12] [ 6] [170349] +17:07:37 [ 13] [ 4] [0320] +17:07:37 [ 14] [ 4] [4912] +17:07:37 [ 15] [ 4] [0320] +17:07:37 [ 18] [ 4] [6011] +17:07:37 [ 19] [ 3] [418] +17:07:37 [ 22] [ 3] [021] +17:07:37 [ 25] [ 2] [01] +17:07:37 [ 28] [ 9] [D00000000] +17:07:37 [ 32] [ 6] [198901] +17:07:37 [ 35] [ 32] [6213544001856019=491212015601403] +17:07:37 [ 37] [ 12] [507917209261] +17:07:37 [ 41] [ 8] [00852902] +17:07:37 [ 42] [ 15] [000000040852902] +17:07:37 [ 43] [ 40] [ATM SAVANCH II VN ] +17:07:37 [ 49] [ 3] [418] +17:07:37 [ 52] [ 16] [CC0234DAA66D715C] +17:07:37 ============================================================================ +17:07:37 + + +waiting on router queue for slot.... +17:07:37 Sending to : +17:07:37 ============================================================================ +17:07:37 ============================================================================ +17:07:37 Slot Id : <28> +17:07:37 Transaction Type : REQUEST +17:07:37 Received From : +17:07:37 ============================================================================ +17:07:37 FNo. Len. Field Value +17:07:37 ============================================================================ +17:07:37 [ 1] [ 4] [0200] +17:07:37 [ 2] [ 16] [6213544001856019] +17:07:37 [ 3] [ 6] [301000] +17:07:37 [ 4] [ 12] [000000000000] +17:07:37 [ 7] [ 10] [0320170757] +17:07:37 [ 11] [ 6] [209261] +17:07:37 [ 12] [ 6] [170349] +17:07:37 [ 13] [ 4] [0320] +17:07:37 [ 14] [ 4] [4912] +17:07:37 [ 15] [ 4] [0320] +17:07:37 [ 18] [ 4] [6011] +17:07:37 [ 19] [ 3] [418] +17:07:37 [ 22] [ 3] [021] +17:07:37 [ 25] [ 2] [01] +17:07:37 [ 28] [ 9] [D00000000] +17:07:37 [ 32] [ 6] [198901] +17:07:37 [ 35] [ 32] [6213544001856019=491212015601403] +17:07:37 [ 37] [ 12] [507917209261] +17:07:37 [ 41] [ 8] [00852902] +17:07:37 [ 42] [ 15] [000000040852902] +17:07:37 [ 43] [ 40] [ATM SAVANCH II VN ] +17:07:37 [ 49] [ 3] [418] +17:07:37 [ 52] [ 16] [49D36EC067A21AE5] +17:07:37 ============================================================================ +17:07:37 + + +waiting on router queue for slot.... +17:07:37 Sending to : <0> +17:07:37 ============================================================================ +17:07:38 ============================================================================ +17:07:38 Slot Id : <28> +17:07:38 Transaction Type : RESPONSE +17:07:38 Received From : +17:07:38 ============================================================================ +17:07:38 FNo. Len. Field Value +17:07:38 ============================================================================ +17:07:38 [ 1] [ 4] [0210] +17:07:38 [ 2] [ 16] [6213544001856019] +17:07:38 [ 3] [ 6] [301000] +17:07:38 [ 4] [ 12] [000000000000] +17:07:38 [ 7] [ 10] [0320170757] +17:07:38 [ 11] [ 6] [209261] +17:07:38 [ 12] [ 6] [170349] +17:07:38 [ 13] [ 4] [0320] +17:07:38 [ 15] [ 4] [0320] +17:07:38 [ 18] [ 4] [6011] +17:07:38 [ 19] [ 3] [418] +17:07:38 [ 22] [ 3] [021] +17:07:38 [ 32] [ 6] [198901] +17:07:38 [ 35] [ 32] [6213544001856019=491212015601403] +17:07:38 [ 37] [ 12] [507917209261] +17:07:38 [ 38] [ 6] [170733] +17:07:38 [ 39] [ 2] [55] +17:07:38 [ 41] [ 8] [00852902] +17:07:38 [ 49] [ 3] [418] +17:07:38 ============================================================================ +17:07:38 Sending to : +17:07:38 ============================================================================ +17:07:38 + + +waiting on router queue for slot.... +17:07:39 ============================================================================ +17:07:39 Slot Id : <28> +17:07:39 Transaction Type : RESPONSE +17:07:39 Received From : +17:07:39 ============================================================================ +17:07:39 FNo. Len. Field Value +17:07:39 ============================================================================ +17:07:39 [ 1] [ 4] [0210] +17:07:39 [ 2] [ 16] [6213544001856019] +17:07:39 [ 3] [ 6] [301000] +17:07:39 [ 4] [ 12] [000000000000] +17:07:39 [ 7] [ 10] [0320170757] +17:07:39 [ 11] [ 6] [209261] +17:07:39 [ 12] [ 6] [170349] +17:07:39 [ 13] [ 4] [0320] +17:07:39 [ 15] [ 4] [0320] +17:07:39 [ 18] [ 4] [6011] +17:07:39 [ 19] [ 3] [418] +17:07:39 [ 22] [ 3] [021] +17:07:39 [ 32] [ 6] [198901] +17:07:39 [ 35] [ 32] [6213544001856019=491212015601403] +17:07:39 [ 37] [ 12] [507917209261] +17:07:39 [ 38] [ 6] [170733] +17:07:39 [ 39] [ 2] [55] +17:07:39 [ 41] [ 8] [00852902] +17:07:39 [ 49] [ 3] [418] +17:07:39 ============================================================================ +17:07:39 Calculate Source COMM Id = 5 +17:07:39 ============================================================================ +17:07:39 + + +waiting on router queue for slot.... +17:07:42 ============================================================================ +17:07:42 Slot Id : <467> +17:07:42 Transaction Type : REQUEST +17:07:42 Received From : +17:07:42 ============================================================================ +17:07:42 FNo. Len. Field Value +17:07:42 ============================================================================ +17:07:42 [ 1] [ 4] [0200] +17:07:42 [ 2] [ 16] [6213544001930699] +17:07:42 [ 3] [ 6] [010000] +17:07:42 [ 4] [ 12] [000050000000] +17:07:42 [ 7] [ 10] [0320170532] +17:07:42 [ 11] [ 6] [952938] +17:07:42 [ 12] [ 6] [170532] +17:07:42 [ 13] [ 4] [0320] +17:07:42 [ 15] [ 4] [0320] +17:07:42 [ 18] [ 4] [6011] +17:07:42 [ 19] [ 3] [418] +17:07:42 [ 22] [ 3] [021] +17:07:42 [ 25] [ 2] [01] +17:07:42 [ 28] [ 9] [D00002000] +17:07:42 [ 32] [ 6] [668899] +17:07:42 [ 35] [ 32] [6213544001930699=491212013069054] +17:07:42 [ 37] [ 12] [507902025661] +17:07:42 [ 41] [ 8] [03414002] +17:07:42 [ 42] [ 15] [APT ] +17:07:42 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:07:42 [ 49] [ 3] [418] +17:07:42 [ 52] [ 16] [8FDB14435362300A] +17:07:42 ============================================================================ +17:07:42 + + +waiting on router queue for slot.... +17:07:42 Sending to : +17:07:42 ============================================================================ +17:07:42 Sending to : +17:07:42 ============================================================================ +17:07:42 ============================================================================ +17:07:42 Slot Id : <467> +17:07:42 Transaction Type : REQUEST +17:07:42 Received From : +17:07:42 ============================================================================ +17:07:42 FNo. Len. Field Value +17:07:42 ============================================================================ +17:07:42 [ 1] [ 4] [0200] +17:07:42 [ 2] [ 16] [6213544001930699] +17:07:42 [ 3] [ 6] [010000] +17:07:42 [ 4] [ 12] [000050000000] +17:07:42 [ 7] [ 10] [0320170532] +17:07:42 [ 11] [ 6] [952938] +17:07:42 [ 12] [ 6] [170532] +17:07:42 [ 13] [ 4] [0320] +17:07:42 [ 15] [ 4] [0320] +17:07:42 [ 18] [ 4] [6011] +17:07:42 [ 19] [ 3] [418] +17:07:42 [ 22] [ 3] [021] +17:07:42 [ 25] [ 2] [01] +17:07:42 [ 28] [ 9] [D00002000] +17:07:42 [ 32] [ 6] [668899] +17:07:42 [ 35] [ 32] [6213544001930699=491212013069054] +17:07:42 [ 37] [ 12] [507902025661] +17:07:42 [ 41] [ 8] [03414002] +17:07:42 [ 42] [ 15] [APT ] +17:07:42 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:07:42 [ 49] [ 3] [418] +17:07:42 [ 52] [ 16] [8FDB14435362300A] +17:07:42 ============================================================================ +17:07:42 + + +waiting on router queue for slot.... +17:07:42 Sending to : +17:07:42 ============================================================================ +17:07:42 ============================================================================ +17:07:42 Slot Id : <467> +17:07:42 Transaction Type : REQUEST +17:07:42 Received From : +17:07:42 ============================================================================ +17:07:42 FNo. Len. Field Value +17:07:42 ============================================================================ +17:07:42 [ 1] [ 4] [0200] +17:07:42 [ 2] [ 16] [6213544001930699] +17:07:42 [ 3] [ 6] [010000] +17:07:42 [ 4] [ 12] [000050000000] +17:07:42 [ 7] [ 10] [0320170532] +17:07:42 [ 11] [ 6] [952938] +17:07:42 [ 12] [ 6] [170532] +17:07:42 [ 13] [ 4] [0320] +17:07:42 [ 15] [ 4] [0320] +17:07:42 [ 18] [ 4] [6011] +17:07:42 [ 19] [ 3] [418] +17:07:42 [ 22] [ 3] [021] +17:07:42 [ 25] [ 2] [01] +17:07:42 [ 28] [ 9] [D00002000] +17:07:42 [ 32] [ 6] [668899] +17:07:42 [ 35] [ 32] [6213544001930699=491212013069054] +17:07:42 [ 37] [ 12] [507902025661] +17:07:42 [ 41] [ 8] [03414002] +17:07:42 [ 42] [ 15] [APT ] +17:07:42 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:07:42 [ 49] [ 3] [418] +17:07:42 [ 52] [ 16] [CA0161EAEB587871] +17:07:42 ============================================================================ +17:07:42 + + +waiting on router queue for slot.... +17:07:42 Sending to : <0> +17:07:42 ============================================================================ +17:07:43 ============================================================================ +17:07:43 Slot Id : <467> +17:07:43 Transaction Type : RESPONSE +17:07:43 Received From : +17:07:43 ============================================================================ +17:07:43 FNo. Len. Field Value +17:07:43 ============================================================================ +17:07:43 [ 1] [ 4] [0210] +17:07:43 [ 2] [ 16] [6213544001930699] +17:07:43 [ 3] [ 6] [010000] +17:07:43 [ 4] [ 12] [000050000000] +17:07:43 [ 7] [ 10] [0320170532] +17:07:43 [ 11] [ 6] [952938] +17:07:43 [ 12] [ 6] [170532] +17:07:43 [ 13] [ 4] [0320] +17:07:43 [ 15] [ 4] [0320] +17:07:43 [ 18] [ 4] [6011] +17:07:43 [ 19] [ 3] [418] +17:07:43 [ 32] [ 6] [668899] +17:07:43 [ 35] [ 32] [6213544001930699=491212013069054] +17:07:43 [ 37] [ 12] [507902025661] +17:07:43 [ 38] [ 6] [611384] +17:07:43 [ 39] [ 2] [00] +17:07:43 [ 41] [ 8] [03414002] +17:07:43 [ 49] [ 3] [418] +17:07:43 [ 54] [ 40] [0001418C0000140684270002418C000014068427] +17:07:43 ============================================================================ +17:07:43 Sending to : +17:07:43 ============================================================================ +17:07:43 + + +waiting on router queue for slot.... +17:07:44 ============================================================================ +17:07:44 Slot Id : <467> +17:07:44 Transaction Type : RESPONSE +17:07:44 Received From : +17:07:44 ============================================================================ +17:07:44 FNo. Len. Field Value +17:07:44 ============================================================================ +17:07:44 [ 1] [ 4] [0210] +17:07:44 [ 2] [ 16] [6213544001930699] +17:07:44 [ 3] [ 6] [010000] +17:07:44 [ 4] [ 12] [000050000000] +17:07:44 [ 7] [ 10] [0320170532] +17:07:44 [ 11] [ 6] [952938] +17:07:44 [ 12] [ 6] [170532] +17:07:44 [ 13] [ 4] [0320] +17:07:44 [ 15] [ 4] [0320] +17:07:44 [ 18] [ 4] [6011] +17:07:44 [ 19] [ 3] [418] +17:07:44 [ 32] [ 6] [668899] +17:07:44 [ 35] [ 32] [6213544001930699=491212013069054] +17:07:44 [ 37] [ 12] [507902025661] +17:07:44 [ 38] [ 6] [611384] +17:07:44 [ 39] [ 2] [00] +17:07:44 [ 41] [ 8] [03414002] +17:07:44 [ 49] [ 3] [418] +17:07:44 [ 54] [ 40] [0001418C0000140684270002418C000014068427] +17:07:44 ============================================================================ +17:07:44 Calculate Source COMM Id = 4 +17:07:44 ============================================================================ +17:07:44 + + +waiting on router queue for slot.... +17:07:46 ============================================================================ +17:07:46 Slot Id : <52> +17:07:46 Transaction Type : REQUEST +17:07:46 Received From : +17:07:46 ============================================================================ +17:07:46 FNo. Len. Field Value +17:07:46 ============================================================================ +17:07:46 [ 1] [ 4] [0200] +17:07:46 [ 2] [ 16] [6688990103296503] +17:07:46 [ 3] [ 6] [300000] +17:07:46 [ 4] [ 12] [000000000000] +17:07:46 [ 7] [ 10] [0320170741] +17:07:46 [ 11] [ 6] [810372] +17:07:46 [ 12] [ 6] [170741] +17:07:46 [ 13] [ 4] [0320] +17:07:46 [ 15] [ 4] [0320] +17:07:46 [ 18] [ 4] [6011] +17:07:46 [ 22] [ 3] [900] +17:07:46 [ 25] [ 2] [02] +17:07:46 [ 28] [ 9] [D00000000] +17:07:46 [ 32] [ 6] [621354] +17:07:46 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:07:46 [ 37] [ 12] [507903499651] +17:07:46 [ 41] [ 8] [06002200] +17:07:46 [ 42] [ 15] [NATIVE ] +17:07:46 [ 43] [ 40] [Beng Market Beng LAO] +17:07:46 [ 49] [ 3] [418] +17:07:46 [ 52] [ 16] [A818A29183BF310F] +17:07:46 ============================================================================ +17:07:46 + + +waiting on router queue for slot.... +17:07:46 Sending to : +17:07:46 ============================================================================ +17:07:46 Sending to : +17:07:46 ============================================================================ +17:07:46 ============================================================================ +17:07:46 Slot Id : <52> +17:07:46 Transaction Type : REQUEST +17:07:46 Received From : +17:07:46 ============================================================================ +17:07:46 FNo. Len. Field Value +17:07:46 ============================================================================ +17:07:46 [ 1] [ 4] [0200] +17:07:46 [ 2] [ 16] [6688990103296503] +17:07:46 [ 3] [ 6] [300000] +17:07:46 [ 4] [ 12] [000000000000] +17:07:46 [ 7] [ 10] [0320170741] +17:07:46 [ 11] [ 6] [810372] +17:07:46 [ 12] [ 6] [170741] +17:07:46 [ 13] [ 4] [0320] +17:07:46 [ 15] [ 4] [0320] +17:07:46 [ 18] [ 4] [6011] +17:07:46 [ 22] [ 3] [900] +17:07:46 [ 25] [ 2] [02] +17:07:46 [ 28] [ 9] [D00000000] +17:07:46 [ 32] [ 6] [621354] +17:07:46 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:07:46 [ 37] [ 12] [507903499651] +17:07:46 [ 41] [ 8] [06002200] +17:07:46 [ 42] [ 15] [NATIVE ] +17:07:46 [ 43] [ 40] [Beng Market Beng LAO] +17:07:46 [ 49] [ 3] [418] +17:07:46 [ 52] [ 16] [A818A29183BF310F] +17:07:46 ============================================================================ +17:07:46 + + +waiting on router queue for slot.... +17:07:46 Sending to : +17:07:46 ============================================================================ +17:07:46 ============================================================================ +17:07:46 Slot Id : <52> +17:07:46 Transaction Type : REQUEST +17:07:46 Received From : +17:07:46 ============================================================================ +17:07:46 FNo. Len. Field Value +17:07:46 ============================================================================ +17:07:46 [ 1] [ 4] [0200] +17:07:46 [ 2] [ 16] [6688990103296503] +17:07:46 [ 3] [ 6] [300000] +17:07:46 [ 4] [ 12] [000000000000] +17:07:46 [ 7] [ 10] [0320170741] +17:07:46 [ 11] [ 6] [810372] +17:07:46 [ 12] [ 6] [170741] +17:07:46 [ 13] [ 4] [0320] +17:07:46 [ 15] [ 4] [0320] +17:07:46 [ 18] [ 4] [6011] +17:07:46 [ 22] [ 3] [900] +17:07:46 [ 25] [ 2] [02] +17:07:46 [ 28] [ 9] [D00000000] +17:07:46 [ 32] [ 6] [621354] +17:07:46 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:07:46 [ 37] [ 12] [507903499651] +17:07:46 [ 41] [ 8] [06002200] +17:07:46 [ 42] [ 15] [NATIVE ] +17:07:46 [ 43] [ 40] [Beng Market Beng LAO] +17:07:46 [ 49] [ 3] [418] +17:07:46 [ 52] [ 16] [8F803458ACBFD8E8] +17:07:46 ============================================================================ +17:07:46 + + +waiting on router queue for slot.... +17:07:46 Sending to : <4> +17:07:46 ============================================================================ +17:07:47 ============================================================================ +17:07:47 Slot Id : <7> +17:07:47 Transaction Type : REQUEST +17:07:47 Received From : +17:07:47 ============================================================================ +17:07:47 FNo. Len. Field Value +17:07:47 ============================================================================ +17:07:47 [ 1] [ 4] [0800] +17:07:47 [ 2] [ 5] [02531] +17:07:47 [ 3] [ 6] [579178] +17:07:47 [ 7] [ 10] [0320100747] +17:07:47 [ 11] [ 6] [807406] +17:07:47 [ 15] [ 10] [0320100747] +17:07:47 [ 37] [ 11] [57917807406] +17:07:47 [ 70] [ 3] [001] +17:07:47 ============================================================================ +17:07:47 + + +waiting on router queue for slot.... +17:07:47 ============================================================================ +17:07:47 Slot Id : <7> +17:07:47 Transaction Type : RESPONSE +17:07:47 Received From : +17:07:47 ============================================================================ +17:07:47 FNo. Len. Field Value +17:07:47 ============================================================================ +17:07:47 [ 1] [ 4] [0810] +17:07:47 [ 7] [ 10] [0320100747] +17:07:47 [ 11] [ 6] [807406] +17:07:47 [ 15] [ 4] [0320] +17:07:47 [ 37] [ 12] [57917807406] +17:07:47 [ 39] [ 2] [00] +17:07:47 [ 70] [ 3] [001] +17:07:47 ============================================================================ +17:07:47 Sending to : +17:07:47 ============================================================================ +17:07:47 + + +waiting on router queue for slot.... +17:07:47 ============================================================================ +17:07:47 Slot Id : <52> +17:07:47 Transaction Type : RESPONSE +17:07:47 Received From : +17:07:47 ============================================================================ +17:07:47 FNo. Len. Field Value +17:07:47 ============================================================================ +17:07:47 [ 1] [ 4] [0210] +17:07:47 [ 2] [ 16] [6688990103296503] +17:07:47 [ 3] [ 6] [300000] +17:07:47 [ 4] [ 12] [000000000000] +17:07:47 [ 11] [ 6] [810372] +17:07:47 [ 12] [ 6] [170741] +17:07:47 [ 15] [ 4] [0320] +17:07:47 [ 18] [ 4] [6011] +17:07:47 [ 32] [ 6] [621354] +17:07:47 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:07:47 [ 37] [ 12] [507903499651] +17:07:47 [ 38] [ 6] [685105] +17:07:47 [ 39] [ 2] [00] +17:07:47 [ 41] [ 8] [06002200] +17:07:47 [ 49] [ 3] [418] +17:07:47 [ 54] [ 20] [0002418C000371930681] +17:07:47 ============================================================================ +17:07:47 Sending to : +17:07:47 ============================================================================ +17:07:47 + + +waiting on router queue for slot.... +17:07:48 ============================================================================ +17:07:48 Slot Id : <55> +17:07:48 Transaction Type : REQUEST +17:07:48 Received From : +17:07:48 ============================================================================ +17:07:48 FNo. Len. Field Value +17:07:48 ============================================================================ +17:07:48 [ 1] [ 4] [0800] +17:07:48 [ 7] [ 10] [0320100655] +17:07:48 [ 11] [ 6] [157386] +17:07:48 [ 70] [ 3] [301] +17:07:48 ============================================================================ +17:07:48 + + +waiting on router queue for slot.... +17:07:48 Sending to : +17:07:48 ============================================================================ +17:07:48 ============================================================================ +17:07:48 Slot Id : <55> +17:07:48 Transaction Type : RESPONSE +17:07:48 Received From : +17:07:48 ============================================================================ +17:07:48 FNo. Len. Field Value +17:07:48 ============================================================================ +17:07:48 [ 1] [ 4] [0810] +17:07:48 [ 7] [ 10] [0320100655] +17:07:48 [ 11] [ 6] [157386] +17:07:48 [ 39] [ 2] [00] +17:07:48 [ 70] [ 3] [301] +17:07:48 ============================================================================ +17:07:48 Calculate Source COMM Id = 2 +17:07:48 ============================================================================ +17:07:48 + + +waiting on router queue for slot.... +17:07:49 ============================================================================ +17:07:49 Slot Id : <52> +17:07:49 Transaction Type : RESPONSE +17:07:49 Received From : +17:07:49 ============================================================================ +17:07:49 FNo. Len. Field Value +17:07:49 ============================================================================ +17:07:49 [ 1] [ 4] [0210] +17:07:49 [ 2] [ 16] [6688990103296503] +17:07:49 [ 3] [ 6] [300000] +17:07:49 [ 4] [ 12] [000000000000] +17:07:49 [ 11] [ 6] [810372] +17:07:49 [ 12] [ 6] [170741] +17:07:49 [ 15] [ 4] [0320] +17:07:49 [ 18] [ 4] [6011] +17:07:49 [ 32] [ 6] [621354] +17:07:49 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:07:49 [ 37] [ 12] [507903499651] +17:07:49 [ 38] [ 6] [685105] +17:07:49 [ 39] [ 2] [00] +17:07:49 [ 41] [ 8] [06002200] +17:07:49 [ 49] [ 3] [418] +17:07:49 [ 54] [ 20] [0002418C000371930681] +17:07:49 ============================================================================ +17:07:49 Calculate Source COMM Id = 0 +17:07:49 ============================================================================ +17:07:49 + + +waiting on router queue for slot.... +17:07:55 ============================================================================ +17:07:55 Slot Id : <25> +17:07:55 Transaction Type : REQUEST +17:07:55 Received From : +17:07:55 ============================================================================ +17:07:55 FNo. Len. Field Value +17:07:55 ============================================================================ +17:07:55 [ 1] [ 4] [0200] +17:07:55 [ 2] [ 16] [6213544002112891] +17:07:55 [ 3] [ 6] [010000] +17:07:55 [ 4] [ 12] [000015000000] +17:07:55 [ 7] [ 10] [0320170545] +17:07:55 [ 11] [ 6] [952948] +17:07:55 [ 12] [ 6] [170545] +17:07:55 [ 13] [ 4] [0320] +17:07:55 [ 15] [ 4] [0320] +17:07:55 [ 18] [ 4] [6011] +17:07:55 [ 19] [ 3] [418] +17:07:55 [ 22] [ 3] [021] +17:07:55 [ 25] [ 2] [01] +17:07:55 [ 28] [ 9] [D00002000] +17:07:55 [ 32] [ 6] [668899] +17:07:55 [ 35] [ 32] [6213544002112891=491212011289831] +17:07:55 [ 37] [ 12] [507900560139] +17:07:55 [ 41] [ 8] [03014004] +17:07:55 [ 42] [ 15] [APT ] +17:07:55 [ 43] [ 40] [ TEACHER COLLEGE KH7 SAVAN] +17:07:55 [ 49] [ 3] [418] +17:07:55 [ 52] [ 16] [CA69A3F5C300C6A2] +17:07:55 ============================================================================ +17:07:55 + + +waiting on router queue for slot.... +17:07:55 Sending to : +17:07:55 ============================================================================ +17:07:55 Sending to : +17:07:55 ============================================================================ +17:07:56 ============================================================================ +17:07:56 Slot Id : <25> +17:07:56 Transaction Type : REQUEST +17:07:56 Received From : +17:07:56 ============================================================================ +17:07:56 FNo. Len. Field Value +17:07:56 ============================================================================ +17:07:56 [ 1] [ 4] [0200] +17:07:56 [ 2] [ 16] [6213544002112891] +17:07:56 [ 3] [ 6] [010000] +17:07:56 [ 4] [ 12] [000015000000] +17:07:56 [ 7] [ 10] [0320170545] +17:07:56 [ 11] [ 6] [952948] +17:07:56 [ 12] [ 6] [170545] +17:07:56 [ 13] [ 4] [0320] +17:07:56 [ 15] [ 4] [0320] +17:07:56 [ 18] [ 4] [6011] +17:07:56 [ 19] [ 3] [418] +17:07:56 [ 22] [ 3] [021] +17:07:56 [ 25] [ 2] [01] +17:07:56 [ 28] [ 9] [D00002000] +17:07:56 [ 32] [ 6] [668899] +17:07:56 [ 35] [ 32] [6213544002112891=491212011289831] +17:07:56 [ 37] [ 12] [507900560139] +17:07:56 [ 41] [ 8] [03014004] +17:07:56 [ 42] [ 15] [APT ] +17:07:56 [ 43] [ 40] [ TEACHER COLLEGE KH7 SAVAN] +17:07:56 [ 49] [ 3] [418] +17:07:56 [ 52] [ 16] [CA69A3F5C300C6A2] +17:07:56 ============================================================================ +17:07:56 + + +waiting on router queue for slot.... +17:07:56 Sending to : +17:07:56 ============================================================================ +17:07:56 ============================================================================ +17:07:56 Slot Id : <25> +17:07:56 Transaction Type : REQUEST +17:07:56 Received From : +17:07:56 ============================================================================ +17:07:56 FNo. Len. Field Value +17:07:56 ============================================================================ +17:07:56 [ 1] [ 4] [0200] +17:07:56 [ 2] [ 16] [6213544002112891] +17:07:56 [ 3] [ 6] [010000] +17:07:56 [ 4] [ 12] [000015000000] +17:07:56 [ 7] [ 10] [0320170545] +17:07:56 [ 11] [ 6] [952948] +17:07:56 [ 12] [ 6] [170545] +17:07:56 [ 13] [ 4] [0320] +17:07:56 [ 15] [ 4] [0320] +17:07:56 [ 18] [ 4] [6011] +17:07:56 [ 19] [ 3] [418] +17:07:56 [ 22] [ 3] [021] +17:07:56 [ 25] [ 2] [01] +17:07:56 [ 28] [ 9] [D00002000] +17:07:56 [ 32] [ 6] [668899] +17:07:56 [ 35] [ 32] [6213544002112891=491212011289831] +17:07:56 [ 37] [ 12] [507900560139] +17:07:56 [ 41] [ 8] [03014004] +17:07:56 [ 42] [ 15] [APT ] +17:07:56 [ 43] [ 40] [ TEACHER COLLEGE KH7 SAVAN] +17:07:56 [ 49] [ 3] [418] +17:07:56 [ 52] [ 16] [27ACC5C8665F980D] +17:07:56 ============================================================================ +17:07:56 + + +waiting on router queue for slot.... +17:07:56 Sending to : <0> +17:07:56 ============================================================================ +17:07:56 ============================================================================ +17:07:56 Slot Id : <25> +17:07:56 Transaction Type : RESPONSE +17:07:56 Received From : +17:07:56 ============================================================================ +17:07:56 FNo. Len. Field Value +17:07:56 ============================================================================ +17:07:56 [ 1] [ 4] [0210] +17:07:56 [ 2] [ 16] [6213544002112891] +17:07:56 [ 3] [ 6] [010000] +17:07:56 [ 4] [ 12] [000015000000] +17:07:56 [ 7] [ 10] [0320170545] +17:07:56 [ 11] [ 6] [952948] +17:07:56 [ 12] [ 6] [170545] +17:07:56 [ 13] [ 4] [0320] +17:07:56 [ 15] [ 4] [0320] +17:07:56 [ 18] [ 4] [6011] +17:07:56 [ 19] [ 3] [418] +17:07:56 [ 32] [ 6] [668899] +17:07:56 [ 35] [ 32] [6213544002112891=491212011289831] +17:07:56 [ 37] [ 12] [507900560139] +17:07:56 [ 38] [ 6] [296259] +17:07:56 [ 39] [ 2] [00] +17:07:56 [ 41] [ 8] [03014004] +17:07:56 [ 49] [ 3] [418] +17:07:56 [ 54] [ 40] [0001418C0000731790580002418C000073179058] +17:07:56 ============================================================================ +17:07:56 Sending to : +17:07:56 ============================================================================ +17:07:56 + + +waiting on router queue for slot.... +17:07:58 ============================================================================ +17:07:58 Slot Id : <25> +17:07:58 Transaction Type : RESPONSE +17:07:58 Received From : +17:07:58 ============================================================================ +17:07:58 FNo. Len. Field Value +17:07:58 ============================================================================ +17:07:58 [ 1] [ 4] [0210] +17:07:58 [ 2] [ 16] [6213544002112891] +17:07:58 [ 3] [ 6] [010000] +17:07:58 [ 4] [ 12] [000015000000] +17:07:58 [ 7] [ 10] [0320170545] +17:07:58 [ 11] [ 6] [952948] +17:07:58 [ 12] [ 6] [170545] +17:07:58 [ 13] [ 4] [0320] +17:07:58 [ 15] [ 4] [0320] +17:07:58 [ 18] [ 4] [6011] +17:07:58 [ 19] [ 3] [418] +17:07:58 [ 32] [ 6] [668899] +17:07:58 [ 35] [ 32] [6213544002112891=491212011289831] +17:07:58 [ 37] [ 12] [507900560139] +17:07:58 [ 38] [ 6] [296259] +17:07:58 [ 39] [ 2] [00] +17:07:58 [ 41] [ 8] [03014004] +17:07:58 [ 49] [ 3] [418] +17:07:58 [ 54] [ 40] [0001418C0000731790580002418C000073179058] +17:07:58 ============================================================================ +17:07:58 Calculate Source COMM Id = 4 +17:07:58 ============================================================================ +17:07:58 + + +waiting on router queue for slot.... +17:07:58 ============================================================================ +17:07:58 Slot Id : <50> +17:07:58 Transaction Type : REQUEST +17:07:58 Received From : +17:07:58 ============================================================================ +17:07:58 FNo. Len. Field Value +17:07:58 ============================================================================ +17:07:58 [ 1] [ 4] [0200] +17:07:58 [ 2] [ 16] [6213544002002126] +17:07:58 [ 3] [ 6] [011000] +17:07:58 [ 4] [ 12] [000040000000] +17:07:58 [ 7] [ 10] [0320170818] +17:07:58 [ 11] [ 6] [209264] +17:07:58 [ 12] [ 6] [170324] +17:07:58 [ 13] [ 4] [0320] +17:07:58 [ 14] [ 4] [4912] +17:07:58 [ 15] [ 4] [0320] +17:07:58 [ 18] [ 4] [6011] +17:07:58 [ 19] [ 3] [418] +17:07:58 [ 22] [ 3] [021] +17:07:58 [ 25] [ 2] [01] +17:07:58 [ 28] [ 9] [D00002000] +17:07:58 [ 32] [ 6] [198901] +17:07:58 [ 35] [ 32] [6213544002002126=491212010212497] +17:07:58 [ 37] [ 12] [507917209264] +17:07:58 [ 41] [ 8] [19529001] +17:07:58 [ 42] [ 15] [000000041952901] +17:07:58 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:07:58 [ 49] [ 3] [418] +17:07:58 [ 52] [ 16] [AA5523F4693DCF8F] +17:07:58 ============================================================================ +17:07:58 + + +waiting on router queue for slot.... +17:07:58 Sending to : +17:07:58 ============================================================================ +17:07:58 Sending to : +17:07:58 ============================================================================ +17:07:58 ============================================================================ +17:07:58 Slot Id : <50> +17:07:58 Transaction Type : REQUEST +17:07:58 Received From : +17:07:58 ============================================================================ +17:07:58 FNo. Len. Field Value +17:07:58 ============================================================================ +17:07:58 [ 1] [ 4] [0200] +17:07:58 [ 2] [ 16] [6213544002002126] +17:07:58 [ 3] [ 6] [011000] +17:07:58 [ 4] [ 12] [000040000000] +17:07:58 [ 7] [ 10] [0320170818] +17:07:58 [ 11] [ 6] [209264] +17:07:58 [ 12] [ 6] [170324] +17:07:58 [ 13] [ 4] [0320] +17:07:58 [ 14] [ 4] [4912] +17:07:58 [ 15] [ 4] [0320] +17:07:58 [ 18] [ 4] [6011] +17:07:58 [ 19] [ 3] [418] +17:07:58 [ 22] [ 3] [021] +17:07:58 [ 25] [ 2] [01] +17:07:58 [ 28] [ 9] [D00002000] +17:07:58 [ 32] [ 6] [198901] +17:07:58 [ 35] [ 32] [6213544002002126=491212010212497] +17:07:58 [ 37] [ 12] [507917209264] +17:07:58 [ 41] [ 8] [19529001] +17:07:58 [ 42] [ 15] [000000041952901] +17:07:58 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:07:58 [ 49] [ 3] [418] +17:07:58 [ 52] [ 16] [AA5523F4693DCF8F] +17:07:58 ============================================================================ +17:07:58 + + +waiting on router queue for slot.... +17:07:58 Sending to : +17:07:58 ============================================================================ +17:07:58 ============================================================================ +17:07:58 Slot Id : <50> +17:07:58 Transaction Type : REQUEST +17:07:58 Received From : +17:07:58 ============================================================================ +17:07:58 FNo. Len. Field Value +17:07:58 ============================================================================ +17:07:58 [ 1] [ 4] [0200] +17:07:58 [ 2] [ 16] [6213544002002126] +17:07:58 [ 3] [ 6] [011000] +17:07:58 [ 4] [ 12] [000040000000] +17:07:58 [ 7] [ 10] [0320170818] +17:07:58 [ 11] [ 6] [209264] +17:07:58 [ 12] [ 6] [170324] +17:07:58 [ 13] [ 4] [0320] +17:07:58 [ 14] [ 4] [4912] +17:07:58 [ 15] [ 4] [0320] +17:07:58 [ 18] [ 4] [6011] +17:07:58 [ 19] [ 3] [418] +17:07:58 [ 22] [ 3] [021] +17:07:58 [ 25] [ 2] [01] +17:07:58 [ 28] [ 9] [D00002000] +17:07:58 [ 32] [ 6] [198901] +17:07:58 [ 35] [ 32] [6213544002002126=491212010212497] +17:07:58 [ 37] [ 12] [507917209264] +17:07:58 [ 41] [ 8] [19529001] +17:07:58 [ 42] [ 15] [000000041952901] +17:07:58 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:07:58 [ 49] [ 3] [418] +17:07:58 [ 52] [ 16] [3F7FE5089AB9C196] +17:07:58 ============================================================================ +17:07:58 + + +waiting on router queue for slot.... +17:07:58 Sending to : <0> +17:07:58 ============================================================================ +17:07:59 ============================================================================ +17:07:59 Slot Id : <61> +17:07:59 Transaction Type : REQUEST +17:07:59 Received From : +17:07:59 ============================================================================ +17:07:59 FNo. Len. Field Value +17:07:59 ============================================================================ +17:07:59 [ 1] [ 4] [0800] +17:07:59 [ 7] [ 10] [0320100706] +17:07:59 [ 11] [ 6] [157387] +17:07:59 [ 70] [ 3] [301] +17:07:59 ============================================================================ +17:07:59 + + +waiting on router queue for slot.... +17:07:59 Sending to : +17:07:59 ============================================================================ +17:07:59 ============================================================================ +17:07:59 Slot Id : <61> +17:07:59 Transaction Type : RESPONSE +17:07:59 Received From : +17:07:59 ============================================================================ +17:07:59 FNo. Len. Field Value +17:07:59 ============================================================================ +17:07:59 [ 1] [ 4] [0810] +17:07:59 [ 7] [ 10] [0320100706] +17:07:59 [ 11] [ 6] [157387] +17:07:59 [ 39] [ 2] [00] +17:07:59 [ 70] [ 3] [301] +17:07:59 ============================================================================ +17:07:59 Calculate Source COMM Id = 2 +17:07:59 ============================================================================ +17:07:59 + + +waiting on router queue for slot.... +17:08:00 ============================================================================ +17:08:00 Slot Id : <50> +17:08:00 Transaction Type : RESPONSE +17:08:00 Received From : +17:08:00 ============================================================================ +17:08:00 FNo. Len. Field Value +17:08:00 ============================================================================ +17:08:00 [ 1] [ 4] [0210] +17:08:00 [ 2] [ 16] [6213544002002126] +17:08:00 [ 3] [ 6] [011000] +17:08:00 [ 4] [ 12] [000040000000] +17:08:00 [ 7] [ 10] [0320170818] +17:08:00 [ 11] [ 6] [209264] +17:08:00 [ 12] [ 6] [170324] +17:08:00 [ 13] [ 4] [0320] +17:08:00 [ 15] [ 4] [0320] +17:08:00 [ 18] [ 4] [6011] +17:08:00 [ 19] [ 3] [418] +17:08:00 [ 22] [ 3] [021] +17:08:00 [ 32] [ 6] [198901] +17:08:00 [ 35] [ 32] [6213544002002126=491212010212497] +17:08:00 [ 37] [ 12] [507917209264] +17:08:00 [ 38] [ 6] [170754] +17:08:00 [ 39] [ 2] [75] +17:08:00 [ 41] [ 8] [19529001] +17:08:00 [ 49] [ 3] [418] +17:08:00 ============================================================================ +17:08:00 Sending to : +17:08:00 ============================================================================ +17:08:00 + + +waiting on router queue for slot.... +17:08:00 ============================================================================ +17:08:00 Slot Id : <44> +17:08:00 Transaction Type : REQUEST +17:08:00 Received From : +17:08:00 ============================================================================ +17:08:00 FNo. Len. Field Value +17:08:00 ============================================================================ +17:08:00 [ 1] [ 4] [0800] +17:08:00 [ 7] [ 10] [0321001949] +17:08:00 [ 11] [ 6] [171949] +17:08:00 [ 37] [ 12] [57917171949] +17:08:00 [ 70] [ 3] [301] +17:08:00 ============================================================================ +17:08:00 + + +waiting on router queue for slot.... +17:08:00 Sending to : +17:08:00 ============================================================================ +17:08:00 ============================================================================ +17:08:00 Slot Id : <44> +17:08:00 Transaction Type : RESPONSE +17:08:00 Received From : +17:08:00 ============================================================================ +17:08:00 FNo. Len. Field Value +17:08:00 ============================================================================ +17:08:00 [ 1] [ 4] [0810] +17:08:00 [ 7] [ 10] [0321001949] +17:08:00 [ 11] [ 6] [171949] +17:08:00 [ 37] [ 12] [579171719490] +17:08:00 [ 39] [ 2] [00] +17:08:00 [ 70] [ 3] [810] +17:08:00 ============================================================================ +17:08:00 Calculate Source COMM Id = 6 +17:08:00 ============================================================================ +17:08:00 + + +waiting on router queue for slot.... +17:08:01 ============================================================================ +17:08:01 Slot Id : <50> +17:08:01 Transaction Type : RESPONSE +17:08:01 Received From : +17:08:01 ============================================================================ +17:08:01 FNo. Len. Field Value +17:08:01 ============================================================================ +17:08:01 [ 1] [ 4] [0210] +17:08:01 [ 2] [ 16] [6213544002002126] +17:08:01 [ 3] [ 6] [011000] +17:08:01 [ 4] [ 12] [000040000000] +17:08:01 [ 7] [ 10] [0320170818] +17:08:01 [ 11] [ 6] [209264] +17:08:01 [ 12] [ 6] [170324] +17:08:01 [ 13] [ 4] [0320] +17:08:01 [ 15] [ 4] [0320] +17:08:01 [ 18] [ 4] [6011] +17:08:01 [ 19] [ 3] [418] +17:08:01 [ 22] [ 3] [021] +17:08:01 [ 32] [ 6] [198901] +17:08:01 [ 35] [ 32] [6213544002002126=491212010212497] +17:08:01 [ 37] [ 12] [507917209264] +17:08:01 [ 38] [ 6] [170754] +17:08:01 [ 39] [ 2] [75] +17:08:01 [ 41] [ 8] [19529001] +17:08:01 [ 49] [ 3] [418] +17:08:01 ============================================================================ +17:08:01 Calculate Source COMM Id = 5 +17:08:01 ============================================================================ +17:08:01 + + +waiting on router queue for slot.... +17:08:01 ============================================================================ +17:08:01 Slot Id : <60> +17:08:01 Transaction Type : REQUEST +17:08:01 Received From : +17:08:01 ============================================================================ +17:08:01 FNo. Len. Field Value +17:08:01 ============================================================================ +17:08:01 [ 1] [ 4] [0200] +17:08:01 [ 2] [ 16] [6213544001856019] +17:08:01 [ 3] [ 6] [301000] +17:08:01 [ 4] [ 12] [000000000000] +17:08:01 [ 7] [ 10] [0320170821] +17:08:01 [ 11] [ 6] [209265] +17:08:01 [ 12] [ 6] [170415] +17:08:01 [ 13] [ 4] [0320] +17:08:01 [ 14] [ 4] [4912] +17:08:01 [ 15] [ 4] [0320] +17:08:01 [ 18] [ 4] [6011] +17:08:01 [ 19] [ 3] [418] +17:08:01 [ 22] [ 3] [021] +17:08:01 [ 25] [ 2] [01] +17:08:01 [ 28] [ 9] [D00000000] +17:08:01 [ 32] [ 6] [198901] +17:08:01 [ 35] [ 32] [6213544001856019=491212015601403] +17:08:01 [ 37] [ 12] [507917209265] +17:08:01 [ 41] [ 8] [00852902] +17:08:01 [ 42] [ 15] [000000040852902] +17:08:01 [ 43] [ 40] [ATM SAVANCH II VN ] +17:08:01 [ 49] [ 3] [418] +17:08:01 [ 52] [ 16] [7F7736FD534208A3] +17:08:01 ============================================================================ +17:08:01 + + +waiting on router queue for slot.... +17:08:01 Sending to : +17:08:01 ============================================================================ +17:08:01 Sending to : +17:08:01 ============================================================================ +17:08:01 ============================================================================ +17:08:01 Slot Id : <60> +17:08:01 Transaction Type : REQUEST +17:08:01 Received From : +17:08:01 ============================================================================ +17:08:01 FNo. Len. Field Value +17:08:01 ============================================================================ +17:08:01 [ 1] [ 4] [0200] +17:08:01 [ 2] [ 16] [6213544001856019] +17:08:01 [ 3] [ 6] [301000] +17:08:01 [ 4] [ 12] [000000000000] +17:08:01 [ 7] [ 10] [0320170821] +17:08:01 [ 11] [ 6] [209265] +17:08:01 [ 12] [ 6] [170415] +17:08:01 [ 13] [ 4] [0320] +17:08:01 [ 14] [ 4] [4912] +17:08:01 [ 15] [ 4] [0320] +17:08:01 [ 18] [ 4] [6011] +17:08:01 [ 19] [ 3] [418] +17:08:01 [ 22] [ 3] [021] +17:08:01 [ 25] [ 2] [01] +17:08:01 [ 28] [ 9] [D00000000] +17:08:01 [ 32] [ 6] [198901] +17:08:01 [ 35] [ 32] [6213544001856019=491212015601403] +17:08:01 [ 37] [ 12] [507917209265] +17:08:01 [ 41] [ 8] [00852902] +17:08:01 [ 42] [ 15] [000000040852902] +17:08:01 [ 43] [ 40] [ATM SAVANCH II VN ] +17:08:01 [ 49] [ 3] [418] +17:08:01 [ 52] [ 16] [7F7736FD534208A3] +17:08:01 ============================================================================ +17:08:01 + + +waiting on router queue for slot.... +17:08:01 Sending to : +17:08:01 ============================================================================ +17:08:01 ============================================================================ +17:08:01 Slot Id : <60> +17:08:01 Transaction Type : REQUEST +17:08:01 Received From : +17:08:01 ============================================================================ +17:08:01 FNo. Len. Field Value +17:08:01 ============================================================================ +17:08:01 [ 1] [ 4] [0200] +17:08:01 [ 2] [ 16] [6213544001856019] +17:08:01 [ 3] [ 6] [301000] +17:08:01 [ 4] [ 12] [000000000000] +17:08:01 [ 7] [ 10] [0320170821] +17:08:01 [ 11] [ 6] [209265] +17:08:01 [ 12] [ 6] [170415] +17:08:01 [ 13] [ 4] [0320] +17:08:01 [ 14] [ 4] [4912] +17:08:01 [ 15] [ 4] [0320] +17:08:01 [ 18] [ 4] [6011] +17:08:01 [ 19] [ 3] [418] +17:08:01 [ 22] [ 3] [021] +17:08:01 [ 25] [ 2] [01] +17:08:01 [ 28] [ 9] [D00000000] +17:08:01 [ 32] [ 6] [198901] +17:08:01 [ 35] [ 32] [6213544001856019=491212015601403] +17:08:01 [ 37] [ 12] [507917209265] +17:08:01 [ 41] [ 8] [00852902] +17:08:01 [ 42] [ 15] [000000040852902] +17:08:01 [ 43] [ 40] [ATM SAVANCH II VN ] +17:08:01 [ 49] [ 3] [418] +17:08:01 [ 52] [ 16] [6632C6D46493FAD9] +17:08:01 ============================================================================ +17:08:01 + + +waiting on router queue for slot.... +17:08:01 Sending to : <0> +17:08:01 ============================================================================ +17:08:02 ============================================================================ +17:08:02 Slot Id : <478> +17:08:02 Transaction Type : REQUEST +17:08:02 Received From : +17:08:02 ============================================================================ +17:08:02 FNo. Len. Field Value +17:08:02 ============================================================================ +17:08:02 [ 1] [ 4] [0200] +17:08:02 [ 2] [ 16] [6213545000955066] +17:08:02 [ 3] [ 6] [010000] +17:08:02 [ 4] [ 12] [000010000000] +17:08:02 [ 7] [ 10] [0320100708] +17:08:02 [ 11] [ 6] [270712] +17:08:02 [ 12] [ 6] [170708] +17:08:02 [ 13] [ 4] [0320] +17:08:02 [ 14] [ 4] [4912] +17:08:02 [ 15] [ 4] [0320] +17:08:02 [ 18] [ 4] [6011] +17:08:02 [ 19] [ 3] [418] +17:08:02 [ 22] [ 3] [021] +17:08:02 [ 25] [ 2] [01] +17:08:02 [ 28] [ 9] [D00002000] +17:08:02 [ 32] [ 6] [180893] +17:08:02 [ 35] [ 32] [6213545000955066=491212015506984] +17:08:02 [ 37] [ 12] [507910270712] +17:08:02 [ 41] [ 8] [0324BKDT] +17:08:02 [ 42] [ 15] [999999 ] +17:08:02 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +17:08:02 [ 49] [ 3] [418] +17:08:02 [ 52] [ 16] [1CF3B33B7008F5FA] +17:08:02 ============================================================================ +17:08:02 + + +waiting on router queue for slot.... +17:08:02 Sending to : +17:08:02 ============================================================================ +17:08:02 Sending to : +17:08:02 ============================================================================ +17:08:03 ============================================================================ +17:08:03 Slot Id : <60> +17:08:03 Transaction Type : RESPONSE +17:08:03 Received From : +17:08:03 ============================================================================ +17:08:03 FNo. Len. Field Value +17:08:03 ============================================================================ +17:08:03 [ 1] [ 4] [0210] +17:08:03 [ 2] [ 16] [6213544001856019] +17:08:03 [ 3] [ 6] [301000] +17:08:03 [ 4] [ 12] [000000000000] +17:08:03 [ 7] [ 10] [0320170821] +17:08:03 [ 11] [ 6] [209265] +17:08:03 [ 12] [ 6] [170415] +17:08:03 [ 13] [ 4] [0320] +17:08:03 [ 15] [ 4] [0320] +17:08:03 [ 18] [ 4] [6011] +17:08:03 [ 19] [ 3] [418] +17:08:03 [ 32] [ 6] [198901] +17:08:03 [ 35] [ 32] [6213544001856019=491212015601403] +17:08:03 [ 37] [ 12] [507917209265] +17:08:03 [ 38] [ 6] [911723] +17:08:03 [ 39] [ 2] [00] +17:08:03 [ 41] [ 8] [00852902] +17:08:03 [ 49] [ 3] [418] +17:08:03 [ 54] [ 40] [1001418C0000659779281002418C000065977928] +17:08:03 ============================================================================ +17:08:03 Sending to : +17:08:03 ============================================================================ +17:08:03 + + +waiting on router queue for slot.... +17:08:03 ============================================================================ +17:08:03 Slot Id : <478> +17:08:03 Transaction Type : REQUEST +17:08:03 Received From : +17:08:03 ============================================================================ +17:08:03 FNo. Len. Field Value +17:08:03 ============================================================================ +17:08:03 [ 1] [ 4] [0200] +17:08:03 [ 2] [ 16] [6213545000955066] +17:08:03 [ 3] [ 6] [010000] +17:08:03 [ 4] [ 12] [000010000000] +17:08:03 [ 7] [ 10] [0320100708] +17:08:03 [ 11] [ 6] [270712] +17:08:03 [ 12] [ 6] [170708] +17:08:03 [ 13] [ 4] [0320] +17:08:03 [ 14] [ 4] [4912] +17:08:03 [ 15] [ 4] [0320] +17:08:03 [ 18] [ 4] [6011] +17:08:03 [ 19] [ 3] [418] +17:08:03 [ 22] [ 3] [021] +17:08:03 [ 25] [ 2] [01] +17:08:03 [ 28] [ 9] [D00002000] +17:08:03 [ 32] [ 6] [180893] +17:08:03 [ 35] [ 32] [6213545000955066=491212015506984] +17:08:03 [ 37] [ 12] [507910270712] +17:08:03 [ 41] [ 8] [0324BKDT] +17:08:03 [ 42] [ 15] [999999 ] +17:08:03 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +17:08:03 [ 49] [ 3] [418] +17:08:03 [ 52] [ 16] [1CF3B33B7008F5FA] +17:08:03 ============================================================================ +17:08:03 + + +waiting on router queue for slot.... +17:08:03 Sending to : +17:08:03 ============================================================================ +17:08:03 ============================================================================ +17:08:03 Slot Id : <478> +17:08:03 Transaction Type : REQUEST +17:08:03 Received From : +17:08:03 ============================================================================ +17:08:03 FNo. Len. Field Value +17:08:03 ============================================================================ +17:08:03 [ 1] [ 4] [0200] +17:08:03 [ 2] [ 16] [6213545000955066] +17:08:03 [ 3] [ 6] [010000] +17:08:03 [ 4] [ 12] [000010000000] +17:08:03 [ 7] [ 10] [0320100708] +17:08:03 [ 11] [ 6] [270712] +17:08:03 [ 12] [ 6] [170708] +17:08:03 [ 13] [ 4] [0320] +17:08:03 [ 14] [ 4] [4912] +17:08:03 [ 15] [ 4] [0320] +17:08:03 [ 18] [ 4] [6011] +17:08:03 [ 19] [ 3] [418] +17:08:03 [ 22] [ 3] [021] +17:08:03 [ 25] [ 2] [01] +17:08:03 [ 28] [ 9] [D00002000] +17:08:03 [ 32] [ 6] [180893] +17:08:03 [ 35] [ 32] [6213545000955066=491212015506984] +17:08:03 [ 37] [ 12] [507910270712] +17:08:03 [ 41] [ 8] [0324BKDT] +17:08:03 [ 42] [ 15] [999999 ] +17:08:03 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +17:08:03 [ 49] [ 3] [418] +17:08:03 [ 52] [ 16] [C5CEE5A8BB8D5378] +17:08:03 ============================================================================ +17:08:03 + + +waiting on router queue for slot.... +17:08:03 Sending to : <0> +17:08:03 ============================================================================ +17:08:03 ============================================================================ +17:08:03 Slot Id : <478> +17:08:03 Transaction Type : RESPONSE +17:08:03 Received From : +17:08:03 ============================================================================ +17:08:03 FNo. Len. Field Value +17:08:03 ============================================================================ +17:08:03 [ 1] [ 4] [0210] +17:08:03 [ 2] [ 16] [6213545000955066] +17:08:03 [ 3] [ 6] [010000] +17:08:03 [ 4] [ 12] [000010000000] +17:08:03 [ 7] [ 10] [0320100708] +17:08:03 [ 11] [ 6] [270712] +17:08:03 [ 12] [ 6] [170708] +17:08:03 [ 13] [ 4] [0320] +17:08:03 [ 15] [ 4] [0320] +17:08:03 [ 18] [ 4] [6011] +17:08:03 [ 19] [ 3] [418] +17:08:03 [ 32] [ 6] [180893] +17:08:03 [ 35] [ 32] [6213545000955066=491212015506984] +17:08:03 [ 37] [ 12] [507910270712] +17:08:03 [ 38] [ 6] [190132] +17:08:03 [ 39] [ 2] [00] +17:08:03 [ 41] [ 8] [0324BKDT] +17:08:03 [ 49] [ 3] [418] +17:08:03 [ 54] [ 40] [0001418C0003028640290002418C000302864029] +17:08:03 ============================================================================ +17:08:03 Sending to : +17:08:03 ============================================================================ +17:08:03 + + +waiting on router queue for slot.... +17:08:04 ============================================================================ +17:08:04 Slot Id : <60> +17:08:04 Transaction Type : RESPONSE +17:08:04 Received From : +17:08:04 ============================================================================ +17:08:04 FNo. Len. Field Value +17:08:04 ============================================================================ +17:08:04 [ 1] [ 4] [0210] +17:08:04 [ 2] [ 16] [6213544001856019] +17:08:04 [ 3] [ 6] [301000] +17:08:04 [ 4] [ 12] [000000000000] +17:08:04 [ 7] [ 10] [0320170821] +17:08:04 [ 11] [ 6] [209265] +17:08:04 [ 12] [ 6] [170415] +17:08:04 [ 13] [ 4] [0320] +17:08:04 [ 15] [ 4] [0320] +17:08:04 [ 18] [ 4] [6011] +17:08:04 [ 19] [ 3] [418] +17:08:04 [ 32] [ 6] [198901] +17:08:04 [ 35] [ 32] [6213544001856019=491212015601403] +17:08:04 [ 37] [ 12] [507917209265] +17:08:04 [ 38] [ 6] [911723] +17:08:04 [ 39] [ 2] [00] +17:08:04 [ 41] [ 8] [00852902] +17:08:04 [ 49] [ 3] [418] +17:08:04 [ 54] [ 40] [1001418C0000659779281002418C000065977928] +17:08:04 ============================================================================ +17:08:04 Calculate Source COMM Id = 5 +17:08:04 ============================================================================ +17:08:04 + + +waiting on router queue for slot.... +17:08:06 ============================================================================ +17:08:06 Slot Id : <478> +17:08:06 Transaction Type : RESPONSE +17:08:06 Received From : +17:08:06 ============================================================================ +17:08:06 FNo. Len. Field Value +17:08:06 ============================================================================ +17:08:06 [ 1] [ 4] [0210] +17:08:06 [ 2] [ 16] [6213545000955066] +17:08:06 [ 3] [ 6] [010000] +17:08:06 [ 4] [ 12] [000010000000] +17:08:06 [ 7] [ 10] [0320100708] +17:08:06 [ 11] [ 6] [270712] +17:08:06 [ 12] [ 6] [170708] +17:08:06 [ 13] [ 4] [0320] +17:08:06 [ 15] [ 4] [0320] +17:08:06 [ 18] [ 4] [6011] +17:08:06 [ 19] [ 3] [418] +17:08:06 [ 32] [ 6] [180893] +17:08:06 [ 35] [ 32] [6213545000955066=491212015506984] +17:08:06 [ 37] [ 12] [507910270712] +17:08:06 [ 38] [ 6] [190132] +17:08:06 [ 39] [ 2] [00] +17:08:06 [ 41] [ 8] [0324BKDT] +17:08:06 [ 49] [ 3] [418] +17:08:06 [ 54] [ 40] [0001418C0003028640290002418C000302864029] +17:08:06 ============================================================================ +17:08:06 Calculate Source COMM Id = 2 +17:08:06 ============================================================================ +17:08:06 + + +waiting on router queue for slot.... +17:08:15 ============================================================================ +17:08:15 Slot Id : <15> +17:08:15 Transaction Type : REQUEST +17:08:15 Received From : +17:08:15 ============================================================================ +17:08:15 FNo. Len. Field Value +17:08:15 ============================================================================ +17:08:15 [ 1] [ 4] [0200] +17:08:15 [ 2] [ 16] [6213544001684445] +17:08:15 [ 3] [ 6] [011000] +17:08:15 [ 4] [ 12] [000095000000] +17:08:15 [ 7] [ 10] [0320100721] +17:08:15 [ 11] [ 6] [270714] +17:08:15 [ 12] [ 6] [170721] +17:08:15 [ 13] [ 4] [0320] +17:08:15 [ 14] [ 4] [4912] +17:08:15 [ 15] [ 4] [0320] +17:08:15 [ 18] [ 4] [6011] +17:08:15 [ 19] [ 3] [418] +17:08:15 [ 22] [ 3] [021] +17:08:15 [ 25] [ 2] [01] +17:08:15 [ 28] [ 9] [D00002000] +17:08:15 [ 32] [ 6] [180893] +17:08:15 [ 35] [ 32] [6213544001684445=491212018444829] +17:08:15 [ 37] [ 12] [507910270714] +17:08:15 [ 41] [ 8] [0528LPBP] +17:08:15 [ 42] [ 15] [999999 ] +17:08:15 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:08:15 [ 49] [ 3] [418] +17:08:15 [ 52] [ 16] [A18AEB7FBB9C1690] +17:08:15 ============================================================================ +17:08:15 + + +waiting on router queue for slot.... +17:08:15 Sending to : +17:08:15 ============================================================================ +17:08:15 Sending to : +17:08:15 ============================================================================ +17:08:16 ============================================================================ +17:08:16 Slot Id : <15> +17:08:16 Transaction Type : REQUEST +17:08:16 Received From : +17:08:16 ============================================================================ +17:08:16 FNo. Len. Field Value +17:08:16 ============================================================================ +17:08:16 [ 1] [ 4] [0200] +17:08:16 [ 2] [ 16] [6213544001684445] +17:08:16 [ 3] [ 6] [011000] +17:08:16 [ 4] [ 12] [000095000000] +17:08:16 [ 7] [ 10] [0320100721] +17:08:16 [ 11] [ 6] [270714] +17:08:16 [ 12] [ 6] [170721] +17:08:16 [ 13] [ 4] [0320] +17:08:16 [ 14] [ 4] [4912] +17:08:16 [ 15] [ 4] [0320] +17:08:16 [ 18] [ 4] [6011] +17:08:16 [ 19] [ 3] [418] +17:08:16 [ 22] [ 3] [021] +17:08:16 [ 25] [ 2] [01] +17:08:16 [ 28] [ 9] [D00002000] +17:08:16 [ 32] [ 6] [180893] +17:08:16 [ 35] [ 32] [6213544001684445=491212018444829] +17:08:16 [ 37] [ 12] [507910270714] +17:08:16 [ 41] [ 8] [0528LPBP] +17:08:16 [ 42] [ 15] [999999 ] +17:08:16 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:08:16 [ 49] [ 3] [418] +17:08:16 [ 52] [ 16] [A18AEB7FBB9C1690] +17:08:16 ============================================================================ +17:08:16 + + +waiting on router queue for slot.... +17:08:16 Sending to : +17:08:16 ============================================================================ +17:08:16 ============================================================================ +17:08:16 Slot Id : <15> +17:08:16 Transaction Type : REQUEST +17:08:16 Received From : +17:08:16 ============================================================================ +17:08:16 FNo. Len. Field Value +17:08:16 ============================================================================ +17:08:16 [ 1] [ 4] [0200] +17:08:16 [ 2] [ 16] [6213544001684445] +17:08:16 [ 3] [ 6] [011000] +17:08:16 [ 4] [ 12] [000095000000] +17:08:16 [ 7] [ 10] [0320100721] +17:08:16 [ 11] [ 6] [270714] +17:08:16 [ 12] [ 6] [170721] +17:08:16 [ 13] [ 4] [0320] +17:08:16 [ 14] [ 4] [4912] +17:08:16 [ 15] [ 4] [0320] +17:08:16 [ 18] [ 4] [6011] +17:08:16 [ 19] [ 3] [418] +17:08:16 [ 22] [ 3] [021] +17:08:16 [ 25] [ 2] [01] +17:08:16 [ 28] [ 9] [D00002000] +17:08:16 [ 32] [ 6] [180893] +17:08:16 [ 35] [ 32] [6213544001684445=491212018444829] +17:08:16 [ 37] [ 12] [507910270714] +17:08:16 [ 41] [ 8] [0528LPBP] +17:08:16 [ 42] [ 15] [999999 ] +17:08:16 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:08:16 [ 49] [ 3] [418] +17:08:16 [ 52] [ 16] [2DF205C856EE5D18] +17:08:16 ============================================================================ +17:08:16 + + +waiting on router queue for slot.... +17:08:16 Sending to : <0> +17:08:16 ============================================================================ +17:08:16 ============================================================================ +17:08:16 Slot Id : <15> +17:08:16 Transaction Type : RESPONSE +17:08:16 Received From : +17:08:16 ============================================================================ +17:08:16 FNo. Len. Field Value +17:08:16 ============================================================================ +17:08:16 [ 1] [ 4] [0210] +17:08:16 [ 2] [ 16] [6213544001684445] +17:08:16 [ 3] [ 6] [011000] +17:08:16 [ 4] [ 12] [000095000000] +17:08:16 [ 7] [ 10] [0320100721] +17:08:16 [ 11] [ 6] [270714] +17:08:16 [ 12] [ 6] [170721] +17:08:16 [ 13] [ 4] [0320] +17:08:16 [ 15] [ 4] [0320] +17:08:16 [ 18] [ 4] [6011] +17:08:16 [ 19] [ 3] [418] +17:08:16 [ 32] [ 6] [180893] +17:08:16 [ 35] [ 32] [6213544001684445=491212018444829] +17:08:16 [ 37] [ 12] [507910270714] +17:08:16 [ 38] [ 6] [313905] +17:08:16 [ 39] [ 2] [00] +17:08:16 [ 41] [ 8] [0528LPBP] +17:08:16 [ 49] [ 3] [418] +17:08:16 [ 54] [ 40] [1001418C0000059949491002418C000005994949] +17:08:16 ============================================================================ +17:08:16 Sending to : +17:08:16 ============================================================================ +17:08:16 + + +waiting on router queue for slot.... +17:08:18 ============================================================================ +17:08:18 Slot Id : <15> +17:08:18 Transaction Type : RESPONSE +17:08:18 Received From : +17:08:18 ============================================================================ +17:08:18 FNo. Len. Field Value +17:08:18 ============================================================================ +17:08:18 [ 1] [ 4] [0210] +17:08:18 [ 2] [ 16] [6213544001684445] +17:08:18 [ 3] [ 6] [011000] +17:08:18 [ 4] [ 12] [000095000000] +17:08:18 [ 7] [ 10] [0320100721] +17:08:18 [ 11] [ 6] [270714] +17:08:18 [ 12] [ 6] [170721] +17:08:18 [ 13] [ 4] [0320] +17:08:18 [ 15] [ 4] [0320] +17:08:18 [ 18] [ 4] [6011] +17:08:18 [ 19] [ 3] [418] +17:08:18 [ 32] [ 6] [180893] +17:08:18 [ 35] [ 32] [6213544001684445=491212018444829] +17:08:18 [ 37] [ 12] [507910270714] +17:08:18 [ 38] [ 6] [313905] +17:08:18 [ 39] [ 2] [00] +17:08:18 [ 41] [ 8] [0528LPBP] +17:08:18 [ 49] [ 3] [418] +17:08:18 [ 54] [ 40] [1001418C0000059949491002418C000005994949] +17:08:18 ============================================================================ +17:08:18 Calculate Source COMM Id = 2 +17:08:18 ============================================================================ +17:08:18 + + +waiting on router queue for slot.... +17:08:18 ============================================================================ +17:08:18 Slot Id : <63> +17:08:18 Transaction Type : REQUEST +17:08:18 Received From : +17:08:18 ============================================================================ +17:08:18 FNo. Len. Field Value +17:08:18 ============================================================================ +17:08:18 [ 1] [ 4] [0200] +17:08:18 [ 2] [ 16] [1808931300000351] +17:08:18 [ 3] [ 6] [011000] +17:08:18 [ 4] [ 12] [000020000000] +17:08:18 [ 7] [ 10] [0320170813] +17:08:18 [ 11] [ 6] [810532] +17:08:18 [ 12] [ 6] [170813] +17:08:18 [ 13] [ 4] [0320] +17:08:18 [ 15] [ 4] [0320] +17:08:18 [ 18] [ 4] [6011] +17:08:18 [ 22] [ 3] [900] +17:08:18 [ 25] [ 2] [02] +17:08:18 [ 28] [ 9] [D00002000] +17:08:18 [ 32] [ 6] [621354] +17:08:18 [ 35] [ 27] [1808931300000351=1803500300] +17:08:18 [ 37] [ 12] [507903444059] +17:08:18 [ 41] [ 8] [06001700] +17:08:18 [ 42] [ 15] [NATIVE ] +17:08:18 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:08:18 [ 49] [ 3] [418] +17:08:18 [ 52] [ 16] [7AE5A7504D34B3FE] +17:08:18 ============================================================================ +17:08:18 + + +waiting on router queue for slot.... +17:08:18 Sending to : +17:08:18 ============================================================================ +17:08:18 Sending to : +17:08:18 ============================================================================ +17:08:19 ============================================================================ +17:08:19 Slot Id : <63> +17:08:19 Transaction Type : REQUEST +17:08:19 Received From : +17:08:19 ============================================================================ +17:08:19 FNo. Len. Field Value +17:08:19 ============================================================================ +17:08:19 [ 1] [ 4] [0200] +17:08:19 [ 2] [ 16] [1808931300000351] +17:08:19 [ 3] [ 6] [011000] +17:08:19 [ 4] [ 12] [000020000000] +17:08:19 [ 7] [ 10] [0320170813] +17:08:19 [ 11] [ 6] [810532] +17:08:19 [ 12] [ 6] [170813] +17:08:19 [ 13] [ 4] [0320] +17:08:19 [ 15] [ 4] [0320] +17:08:19 [ 18] [ 4] [6011] +17:08:19 [ 22] [ 3] [900] +17:08:19 [ 25] [ 2] [02] +17:08:19 [ 28] [ 9] [D00002000] +17:08:19 [ 32] [ 6] [621354] +17:08:19 [ 35] [ 27] [1808931300000351=1803500300] +17:08:19 [ 37] [ 12] [507903444059] +17:08:19 [ 41] [ 8] [06001700] +17:08:19 [ 42] [ 15] [NATIVE ] +17:08:19 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:08:19 [ 49] [ 3] [418] +17:08:19 [ 52] [ 16] [7AE5A7504D34B3FE] +17:08:19 ============================================================================ +17:08:19 + + +waiting on router queue for slot.... +17:08:19 Sending to : +17:08:19 ============================================================================ +17:08:19 ============================================================================ +17:08:19 Slot Id : <63> +17:08:19 Transaction Type : REQUEST +17:08:19 Received From : +17:08:19 ============================================================================ +17:08:19 FNo. Len. Field Value +17:08:19 ============================================================================ +17:08:19 [ 1] [ 4] [0200] +17:08:19 [ 2] [ 16] [1808931300000351] +17:08:19 [ 3] [ 6] [011000] +17:08:19 [ 4] [ 12] [000020000000] +17:08:19 [ 7] [ 10] [0320170813] +17:08:19 [ 11] [ 6] [810532] +17:08:19 [ 12] [ 6] [170813] +17:08:19 [ 13] [ 4] [0320] +17:08:19 [ 15] [ 4] [0320] +17:08:19 [ 18] [ 4] [6011] +17:08:19 [ 22] [ 3] [900] +17:08:19 [ 25] [ 2] [02] +17:08:19 [ 28] [ 9] [D00002000] +17:08:19 [ 32] [ 6] [621354] +17:08:19 [ 35] [ 27] [1808931300000351=1803500300] +17:08:19 [ 37] [ 12] [507903444059] +17:08:19 [ 41] [ 8] [06001700] +17:08:19 [ 42] [ 15] [NATIVE ] +17:08:19 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:08:19 [ 49] [ 3] [418] +17:08:19 [ 52] [ 16] [14A88D151F19CD60] +17:08:19 ============================================================================ +17:08:19 + + +waiting on router queue for slot.... +17:08:19 Sending to : <2> +17:08:19 ============================================================================ +17:08:23 ============================================================================ +17:08:23 Slot Id : <63> +17:08:23 Transaction Type : RESPONSE +17:08:23 Received From : +17:08:23 ============================================================================ +17:08:23 FNo. Len. Field Value +17:08:23 ============================================================================ +17:08:23 [ 1] [ 4] [0210] +17:08:23 [ 2] [ 16] [1808931300000351] +17:08:23 [ 3] [ 6] [011000] +17:08:23 [ 4] [ 12] [000020000000] +17:08:23 [ 6] [ 12] [000020000000] +17:08:23 [ 7] [ 10] [0320170813] +17:08:23 [ 11] [ 6] [810532] +17:08:23 [ 12] [ 6] [170813] +17:08:23 [ 13] [ 4] [0320] +17:08:23 [ 18] [ 4] [6011] +17:08:23 [ 19] [ 3] [418] +17:08:23 [ 22] [ 3] [021] +17:08:23 [ 32] [ 6] [621354] +17:08:23 [ 35] [ 27] [1808931300000351=1803500300] +17:08:23 [ 37] [ 12] [507903444059] +17:08:23 [ 38] [ 6] [810532] +17:08:23 [ 39] [ 2] [00] +17:08:23 [ 41] [ 8] [06001700] +17:08:23 [ 49] [ 3] [418] +17:08:23 [ 52] [ 16] [14A88D151F19CD60] +17:08:23 [ 54] [ 20] [1001418C000066966200] +17:08:23 ============================================================================ +17:08:23 Sending to : +17:08:23 ============================================================================ +17:08:23 + + +waiting on router queue for slot.... +17:08:25 ============================================================================ +17:08:25 Slot Id : <63> +17:08:25 Transaction Type : RESPONSE +17:08:25 Received From : +17:08:25 ============================================================================ +17:08:25 FNo. Len. Field Value +17:08:25 ============================================================================ +17:08:25 [ 1] [ 4] [0210] +17:08:25 [ 2] [ 16] [1808931300000351] +17:08:25 [ 3] [ 6] [011000] +17:08:25 [ 4] [ 12] [000020000000] +17:08:25 [ 6] [ 12] [000020000000] +17:08:25 [ 7] [ 10] [0320170813] +17:08:25 [ 11] [ 6] [810532] +17:08:25 [ 12] [ 6] [170813] +17:08:25 [ 13] [ 4] [0320] +17:08:25 [ 18] [ 4] [6011] +17:08:25 [ 19] [ 3] [418] +17:08:25 [ 22] [ 3] [021] +17:08:25 [ 32] [ 6] [621354] +17:08:25 [ 35] [ 27] [1808931300000351=1803500300] +17:08:25 [ 37] [ 12] [507903444059] +17:08:25 [ 38] [ 6] [810532] +17:08:25 [ 39] [ 2] [00] +17:08:25 [ 41] [ 8] [06001700] +17:08:25 [ 49] [ 3] [418] +17:08:25 [ 52] [ 16] [14A88D151F19CD60] +17:08:25 [ 54] [ 20] [1001418C000066966200] +17:08:25 ============================================================================ +17:08:25 Calculate Source COMM Id = 0 +17:08:25 ============================================================================ +17:08:25 + + +waiting on router queue for slot.... +17:08:25 ============================================================================ +17:08:25 Slot Id : <38> +17:08:25 Transaction Type : REQUEST +17:08:25 Received From : +17:08:25 ============================================================================ +17:08:25 FNo. Len. Field Value +17:08:25 ============================================================================ +17:08:25 [ 1] [ 4] [0200] +17:08:25 [ 2] [ 19] [6227003861190228036] +17:08:25 [ 3] [ 6] [012000] +17:08:25 [ 4] [ 12] [000050000000] +17:08:25 [ 7] [ 10] [0320171612] +17:08:25 [ 11] [ 6] [999989] +17:08:25 [ 12] [ 6] [171612] +17:08:25 [ 13] [ 4] [0320] +17:08:25 [ 14] [ 4] [4005] +17:08:25 [ 15] [ 4] [0320] +17:08:25 [ 18] [ 4] [6011] +17:08:25 [ 22] [ 3] [900] +17:08:25 [ 25] [ 2] [02] +17:08:25 [ 28] [ 9] [D00015000] +17:08:25 [ 32] [ 6] [220699] +17:08:25 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:08:25 [ 37] [ 12] [507900281384] +17:08:25 [ 41] [ 8] [10000100] +17:08:25 [ 42] [ 15] [APTRA ] +17:08:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:08:25 [ 49] [ 3] [418] +17:08:25 [ 52] [ 16] [2C3F307D839AD02B] +17:08:25 ============================================================================ +17:08:25 + + +waiting on router queue for slot.... +17:08:25 Sending to : +17:08:25 ============================================================================ +17:08:25 Sending to : +17:08:25 ============================================================================ +17:08:26 ============================================================================ +17:08:26 Slot Id : <38> +17:08:26 Transaction Type : REQUEST +17:08:26 Received From : +17:08:26 ============================================================================ +17:08:26 FNo. Len. Field Value +17:08:26 ============================================================================ +17:08:26 [ 1] [ 4] [0200] +17:08:26 [ 2] [ 19] [6227003861190228036] +17:08:26 [ 3] [ 6] [012000] +17:08:26 [ 4] [ 12] [000050000000] +17:08:26 [ 7] [ 10] [0320171612] +17:08:26 [ 11] [ 6] [999989] +17:08:26 [ 12] [ 6] [171612] +17:08:26 [ 13] [ 4] [0320] +17:08:26 [ 14] [ 4] [4005] +17:08:26 [ 15] [ 4] [0320] +17:08:26 [ 18] [ 4] [6011] +17:08:26 [ 22] [ 3] [900] +17:08:26 [ 25] [ 2] [02] +17:08:26 [ 28] [ 9] [D00015000] +17:08:26 [ 32] [ 6] [220699] +17:08:26 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:08:26 [ 37] [ 12] [507900281384] +17:08:26 [ 41] [ 8] [10000100] +17:08:26 [ 42] [ 15] [APTRA ] +17:08:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:08:26 [ 49] [ 3] [418] +17:08:26 [ 52] [ 16] [2C3F307D839AD02B] +17:08:26 ============================================================================ +17:08:26 + + +waiting on router queue for slot.... +17:08:26 Sending to : +17:08:26 ============================================================================ +17:08:26 ============================================================================ +17:08:26 Slot Id : <38> +17:08:26 Transaction Type : REQUEST +17:08:26 Received From : +17:08:26 ============================================================================ +17:08:26 FNo. Len. Field Value +17:08:26 ============================================================================ +17:08:26 [ 1] [ 4] [0200] +17:08:26 [ 2] [ 19] [6227003861190228036] +17:08:26 [ 3] [ 6] [012000] +17:08:26 [ 4] [ 12] [000050000000] +17:08:26 [ 7] [ 10] [0320171612] +17:08:26 [ 11] [ 6] [999989] +17:08:26 [ 12] [ 6] [171612] +17:08:26 [ 13] [ 4] [0320] +17:08:26 [ 14] [ 4] [4005] +17:08:26 [ 15] [ 4] [0320] +17:08:26 [ 18] [ 4] [6011] +17:08:26 [ 22] [ 3] [900] +17:08:26 [ 25] [ 2] [02] +17:08:26 [ 28] [ 9] [D00015000] +17:08:26 [ 32] [ 6] [220699] +17:08:26 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:08:26 [ 37] [ 12] [507900281384] +17:08:26 [ 41] [ 8] [10000100] +17:08:26 [ 42] [ 15] [APTRA ] +17:08:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:08:26 [ 49] [ 3] [418] +17:08:26 [ 52] [ 16] [AA84C5BD22503A94] +17:08:26 ============================================================================ +17:08:26 + + +waiting on router queue for slot.... +17:08:26 Sending to : <0> +17:08:26 ============================================================================ +17:08:26 ============================================================================ +17:08:26 Slot Id : <38> +17:08:26 Transaction Type : RESPONSE +17:08:26 Received From : +17:08:26 ============================================================================ +17:08:26 FNo. Len. Field Value +17:08:26 ============================================================================ +17:08:26 [ 1] [ 4] [0210] +17:08:26 [ 2] [ 19] [6227003861190228036] +17:08:26 [ 3] [ 6] [012000] +17:08:26 [ 4] [ 12] [000050000000] +17:08:26 [ 7] [ 10] [0320171612] +17:08:26 [ 11] [ 6] [999989] +17:08:26 [ 12] [ 6] [171612] +17:08:26 [ 13] [ 4] [0320] +17:08:26 [ 15] [ 4] [0320] +17:08:26 [ 18] [ 4] [6011] +17:08:26 [ 22] [ 3] [900] +17:08:26 [ 32] [ 6] [220699] +17:08:26 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:08:26 [ 37] [ 12] [507900281384] +17:08:26 [ 38] [ 6] [999989] +17:08:26 [ 39] [ 2] [03] +17:08:26 [ 41] [ 8] [10000100] +17:08:26 [ 49] [ 3] [418] +17:08:26 [ 54] [ 0] [] +17:08:26 ============================================================================ +17:08:26 Sending to : +17:08:26 ============================================================================ +17:08:26 + + +waiting on router queue for slot.... +17:08:26 ============================================================================ +17:08:26 Slot Id : <38> +17:08:26 Transaction Type : RESPONSE +17:08:26 Received From : +17:08:26 ============================================================================ +17:08:26 FNo. Len. Field Value +17:08:26 ============================================================================ +17:08:26 [ 1] [ 4] [0210] +17:08:26 [ 2] [ 19] [6227003861190228036] +17:08:26 [ 3] [ 6] [012000] +17:08:26 [ 4] [ 12] [000050000000] +17:08:26 [ 7] [ 10] [0320171612] +17:08:26 [ 11] [ 6] [999989] +17:08:26 [ 12] [ 6] [171612] +17:08:26 [ 13] [ 4] [0320] +17:08:26 [ 15] [ 4] [0320] +17:08:26 [ 18] [ 4] [6011] +17:08:26 [ 22] [ 3] [900] +17:08:26 [ 32] [ 6] [220699] +17:08:26 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:08:26 [ 37] [ 12] [507900281384] +17:08:26 [ 38] [ 6] [999989] +17:08:26 [ 39] [ 2] [03] +17:08:26 [ 41] [ 8] [10000100] +17:08:26 [ 49] [ 3] [418] +17:08:26 [ 54] [ 0] [] +17:08:26 ============================================================================ +17:08:26 Calculate Source COMM Id = 1 +17:08:26 ============================================================================ +17:08:26 + + +waiting on router queue for slot.... +17:08:29 ============================================================================ +17:08:29 Slot Id : <68> +17:08:29 Transaction Type : REQUEST +17:08:29 Received From : +17:08:29 ============================================================================ +17:08:29 FNo. Len. Field Value +17:08:29 ============================================================================ +17:08:29 [ 1] [ 4] [0200] +17:08:29 [ 2] [ 16] [2206991200024523] +17:08:29 [ 3] [ 6] [011000] +17:08:29 [ 4] [ 12] [000070000000] +17:08:29 [ 7] [ 10] [0320170825] +17:08:29 [ 11] [ 6] [810589] +17:08:29 [ 12] [ 6] [170825] +17:08:29 [ 13] [ 4] [0320] +17:08:29 [ 15] [ 4] [0320] +17:08:29 [ 18] [ 4] [6011] +17:08:29 [ 22] [ 3] [900] +17:08:29 [ 25] [ 2] [02] +17:08:29 [ 28] [ 9] [D00002000] +17:08:29 [ 32] [ 6] [621354] +17:08:29 [ 35] [ 32] [2206991200024523=101200012452000] +17:08:29 [ 37] [ 12] [507905147417] +17:08:29 [ 41] [ 8] [09001800] +17:08:29 [ 42] [ 15] [NATIVE ] +17:08:29 [ 43] [ 40] [Donenoun unit2 Vientiane LAO] +17:08:29 [ 49] [ 3] [418] +17:08:29 [ 52] [ 16] [45CAC4EE746A13CB] +17:08:29 ============================================================================ +17:08:29 + + +waiting on router queue for slot.... +17:08:29 Sending to : +17:08:29 ============================================================================ +17:08:29 Sending to : +17:08:29 ============================================================================ +17:08:30 ============================================================================ +17:08:30 Slot Id : <68> +17:08:30 Transaction Type : REQUEST +17:08:30 Received From : +17:08:30 ============================================================================ +17:08:30 FNo. Len. Field Value +17:08:30 ============================================================================ +17:08:30 [ 1] [ 4] [0200] +17:08:30 [ 2] [ 16] [2206991200024523] +17:08:30 [ 3] [ 6] [011000] +17:08:30 [ 4] [ 12] [000070000000] +17:08:30 [ 7] [ 10] [0320170825] +17:08:30 [ 11] [ 6] [810589] +17:08:30 [ 12] [ 6] [170825] +17:08:30 [ 13] [ 4] [0320] +17:08:30 [ 15] [ 4] [0320] +17:08:30 [ 18] [ 4] [6011] +17:08:30 [ 22] [ 3] [900] +17:08:30 [ 25] [ 2] [02] +17:08:30 [ 28] [ 9] [D00002000] +17:08:30 [ 32] [ 6] [621354] +17:08:30 [ 35] [ 32] [2206991200024523=101200012452000] +17:08:30 [ 37] [ 12] [507905147417] +17:08:30 [ 41] [ 8] [09001800] +17:08:30 [ 42] [ 15] [NATIVE ] +17:08:30 [ 43] [ 40] [Donenoun unit2 Vientiane LAO] +17:08:30 [ 49] [ 3] [418] +17:08:30 [ 52] [ 16] [45CAC4EE746A13CB] +17:08:30 ============================================================================ +17:08:30 + + +waiting on router queue for slot.... +17:08:30 Sending to : +17:08:30 ============================================================================ +17:08:30 ============================================================================ +17:08:30 Slot Id : <68> +17:08:30 Transaction Type : REQUEST +17:08:30 Received From : +17:08:30 ============================================================================ +17:08:30 FNo. Len. Field Value +17:08:30 ============================================================================ +17:08:30 [ 1] [ 4] [0200] +17:08:30 [ 2] [ 16] [2206991200024523] +17:08:30 [ 3] [ 6] [011000] +17:08:30 [ 4] [ 12] [000070000000] +17:08:30 [ 7] [ 10] [0320170825] +17:08:30 [ 11] [ 6] [810589] +17:08:30 [ 12] [ 6] [170825] +17:08:30 [ 13] [ 4] [0320] +17:08:30 [ 15] [ 4] [0320] +17:08:30 [ 18] [ 4] [6011] +17:08:30 [ 22] [ 3] [900] +17:08:30 [ 25] [ 2] [02] +17:08:30 [ 28] [ 9] [D00002000] +17:08:30 [ 32] [ 6] [621354] +17:08:30 [ 35] [ 32] [2206991200024523=101200012452000] +17:08:30 [ 37] [ 12] [507905147417] +17:08:30 [ 41] [ 8] [09001800] +17:08:30 [ 42] [ 15] [NATIVE ] +17:08:30 [ 43] [ 40] [Donenoun unit2 Vientiane LAO] +17:08:30 [ 49] [ 3] [418] +17:08:30 [ 52] [ 16] [4AC4AB3F3B94A0F1] +17:08:30 ============================================================================ +17:08:30 + + +waiting on router queue for slot.... +17:08:30 Sending to : <1> +17:08:30 ============================================================================ +17:08:31 ============================================================================ +17:08:31 Slot Id : <73> +17:08:31 Transaction Type : REQUEST +17:08:31 Received From : +17:08:31 ============================================================================ +17:08:31 FNo. Len. Field Value +17:08:31 ============================================================================ +17:08:31 [ 1] [ 4] [0800] +17:08:31 [ 7] [ 10] [0320100738] +17:08:31 [ 11] [ 6] [157388] +17:08:31 [ 70] [ 3] [301] +17:08:31 ============================================================================ +17:08:31 + + +waiting on router queue for slot.... +17:08:31 Sending to : +17:08:31 ============================================================================ +17:08:31 ============================================================================ +17:08:31 Slot Id : <73> +17:08:31 Transaction Type : RESPONSE +17:08:31 Received From : +17:08:31 ============================================================================ +17:08:31 FNo. Len. Field Value +17:08:31 ============================================================================ +17:08:31 [ 1] [ 4] [0810] +17:08:31 [ 7] [ 10] [0320100738] +17:08:31 [ 11] [ 6] [157388] +17:08:31 [ 39] [ 2] [00] +17:08:31 [ 70] [ 3] [301] +17:08:31 ============================================================================ +17:08:31 Calculate Source COMM Id = 2 +17:08:31 ============================================================================ +17:08:31 + + +waiting on router queue for slot.... +17:08:33 ============================================================================ +17:08:33 Slot Id : <68> +17:08:33 Transaction Type : RESPONSE +17:08:33 Received From : +17:08:33 ============================================================================ +17:08:33 FNo. Len. Field Value +17:08:33 ============================================================================ +17:08:33 [ 1] [ 4] [0210] +17:08:33 [ 2] [ 16] [2206991200024523] +17:08:33 [ 3] [ 6] [011000] +17:08:33 [ 4] [ 12] [000070000000] +17:08:33 [ 7] [ 10] [0320170825] +17:08:33 [ 11] [ 6] [810589] +17:08:33 [ 12] [ 6] [170825] +17:08:33 [ 13] [ 4] [0320] +17:08:33 [ 15] [ 4] [0320] +17:08:33 [ 18] [ 4] [6011] +17:08:33 [ 32] [ 6] [621354] +17:08:33 [ 35] [ 32] [2206991200024523=101200012452000] +17:08:33 [ 37] [ 12] [507905147417] +17:08:33 [ 38] [ 6] [395336] +17:08:33 [ 39] [ 2] [00] +17:08:33 [ 41] [ 8] [09001800] +17:08:33 [ 49] [ 3] [418] +17:08:33 [ 54] [ 40] [1001418C0000578129001002418C000057812900] +17:08:33 ============================================================================ +17:08:33 Sending to : +17:08:33 ============================================================================ +17:08:33 + + +waiting on router queue for slot.... +17:08:34 ============================================================================ +17:08:34 Slot Id : <68> +17:08:34 Transaction Type : RESPONSE +17:08:34 Received From : +17:08:34 ============================================================================ +17:08:34 FNo. Len. Field Value +17:08:34 ============================================================================ +17:08:34 [ 1] [ 4] [0210] +17:08:34 [ 2] [ 16] [2206991200024523] +17:08:34 [ 3] [ 6] [011000] +17:08:34 [ 4] [ 12] [000070000000] +17:08:34 [ 7] [ 10] [0320170825] +17:08:34 [ 11] [ 6] [810589] +17:08:34 [ 12] [ 6] [170825] +17:08:34 [ 13] [ 4] [0320] +17:08:34 [ 15] [ 4] [0320] +17:08:34 [ 18] [ 4] [6011] +17:08:34 [ 32] [ 6] [621354] +17:08:34 [ 35] [ 32] [2206991200024523=101200012452000] +17:08:34 [ 37] [ 12] [507905147417] +17:08:34 [ 38] [ 6] [395336] +17:08:34 [ 39] [ 2] [00] +17:08:34 [ 41] [ 8] [09001800] +17:08:34 [ 49] [ 3] [418] +17:08:34 [ 54] [ 40] [1001418C0000578129001002418C000057812900] +17:08:34 ============================================================================ +17:08:34 Calculate Source COMM Id = 0 +17:08:34 ============================================================================ +17:08:34 + + +waiting on router queue for slot.... +17:08:37 ============================================================================ +17:08:37 Slot Id : <41> +17:08:37 Transaction Type : REQUEST +17:08:37 Received From : +17:08:37 ============================================================================ +17:08:37 FNo. Len. Field Value +17:08:37 ============================================================================ +17:08:37 [ 1] [ 4] [0200] +17:08:37 [ 2] [ 16] [6213544001856019] +17:08:37 [ 3] [ 6] [011000] +17:08:37 [ 4] [ 12] [000020000000] +17:08:37 [ 7] [ 10] [0320170857] +17:08:37 [ 11] [ 6] [209277] +17:08:37 [ 12] [ 6] [170450] +17:08:37 [ 13] [ 4] [0320] +17:08:37 [ 14] [ 4] [4912] +17:08:37 [ 15] [ 4] [0320] +17:08:37 [ 18] [ 4] [6011] +17:08:37 [ 19] [ 3] [418] +17:08:37 [ 22] [ 3] [021] +17:08:37 [ 25] [ 2] [01] +17:08:37 [ 28] [ 9] [D00002000] +17:08:37 [ 32] [ 6] [198901] +17:08:37 [ 35] [ 32] [6213544001856019=491212015601403] +17:08:37 [ 37] [ 12] [507917209277] +17:08:37 [ 41] [ 8] [00852902] +17:08:37 [ 42] [ 15] [000000040852902] +17:08:37 [ 43] [ 40] [ATM SAVANCH II VN ] +17:08:37 [ 49] [ 3] [418] +17:08:37 [ 52] [ 16] [7F7736FD534208A3] +17:08:37 ============================================================================ +17:08:37 + + +waiting on router queue for slot.... +17:08:37 Sending to : +17:08:37 ============================================================================ +17:08:37 Sending to : +17:08:37 ============================================================================ +17:08:37 ============================================================================ +17:08:37 Slot Id : <41> +17:08:37 Transaction Type : REQUEST +17:08:37 Received From : +17:08:37 ============================================================================ +17:08:37 FNo. Len. Field Value +17:08:37 ============================================================================ +17:08:37 [ 1] [ 4] [0200] +17:08:37 [ 2] [ 16] [6213544001856019] +17:08:37 [ 3] [ 6] [011000] +17:08:37 [ 4] [ 12] [000020000000] +17:08:37 [ 7] [ 10] [0320170857] +17:08:37 [ 11] [ 6] [209277] +17:08:37 [ 12] [ 6] [170450] +17:08:37 [ 13] [ 4] [0320] +17:08:37 [ 14] [ 4] [4912] +17:08:37 [ 15] [ 4] [0320] +17:08:37 [ 18] [ 4] [6011] +17:08:37 [ 19] [ 3] [418] +17:08:37 [ 22] [ 3] [021] +17:08:37 [ 25] [ 2] [01] +17:08:37 [ 28] [ 9] [D00002000] +17:08:37 [ 32] [ 6] [198901] +17:08:37 [ 35] [ 32] [6213544001856019=491212015601403] +17:08:37 [ 37] [ 12] [507917209277] +17:08:37 [ 41] [ 8] [00852902] +17:08:37 [ 42] [ 15] [000000040852902] +17:08:37 [ 43] [ 40] [ATM SAVANCH II VN ] +17:08:37 [ 49] [ 3] [418] +17:08:37 [ 52] [ 16] [7F7736FD534208A3] +17:08:37 ============================================================================ +17:08:37 + + +waiting on router queue for slot.... +17:08:37 Sending to : +17:08:37 ============================================================================ +17:08:37 ============================================================================ +17:08:37 Slot Id : <41> +17:08:37 Transaction Type : REQUEST +17:08:37 Received From : +17:08:37 ============================================================================ +17:08:37 FNo. Len. Field Value +17:08:37 ============================================================================ +17:08:37 [ 1] [ 4] [0200] +17:08:37 [ 2] [ 16] [6213544001856019] +17:08:37 [ 3] [ 6] [011000] +17:08:37 [ 4] [ 12] [000020000000] +17:08:37 [ 7] [ 10] [0320170857] +17:08:37 [ 11] [ 6] [209277] +17:08:37 [ 12] [ 6] [170450] +17:08:37 [ 13] [ 4] [0320] +17:08:37 [ 14] [ 4] [4912] +17:08:37 [ 15] [ 4] [0320] +17:08:37 [ 18] [ 4] [6011] +17:08:37 [ 19] [ 3] [418] +17:08:37 [ 22] [ 3] [021] +17:08:37 [ 25] [ 2] [01] +17:08:37 [ 28] [ 9] [D00002000] +17:08:37 [ 32] [ 6] [198901] +17:08:37 [ 35] [ 32] [6213544001856019=491212015601403] +17:08:37 [ 37] [ 12] [507917209277] +17:08:37 [ 41] [ 8] [00852902] +17:08:37 [ 42] [ 15] [000000040852902] +17:08:37 [ 43] [ 40] [ATM SAVANCH II VN ] +17:08:37 [ 49] [ 3] [418] +17:08:37 [ 52] [ 16] [6632C6D46493FAD9] +17:08:37 ============================================================================ +17:08:37 + + +waiting on router queue for slot.... +17:08:37 Sending to : <0> +17:08:37 ============================================================================ +17:08:38 ============================================================================ +17:08:38 Slot Id : <41> +17:08:38 Transaction Type : RESPONSE +17:08:38 Received From : +17:08:38 ============================================================================ +17:08:38 FNo. Len. Field Value +17:08:38 ============================================================================ +17:08:38 [ 1] [ 4] [0210] +17:08:38 [ 2] [ 16] [6213544001856019] +17:08:38 [ 3] [ 6] [011000] +17:08:38 [ 4] [ 12] [000020000000] +17:08:38 [ 7] [ 10] [0320170857] +17:08:38 [ 11] [ 6] [209277] +17:08:38 [ 12] [ 6] [170450] +17:08:38 [ 13] [ 4] [0320] +17:08:38 [ 15] [ 4] [0320] +17:08:38 [ 18] [ 4] [6011] +17:08:38 [ 19] [ 3] [418] +17:08:38 [ 32] [ 6] [198901] +17:08:38 [ 35] [ 32] [6213544001856019=491212015601403] +17:08:38 [ 37] [ 12] [507917209277] +17:08:38 [ 38] [ 6] [766476] +17:08:38 [ 39] [ 2] [00] +17:08:38 [ 41] [ 8] [00852902] +17:08:38 [ 49] [ 3] [418] +17:08:38 [ 54] [ 40] [1001418C0000457779281002418C000045777928] +17:08:38 ============================================================================ +17:08:38 Sending to : +17:08:38 ============================================================================ +17:08:38 + + +waiting on router queue for slot.... +17:08:39 ============================================================================ +17:08:39 Slot Id : <41> +17:08:39 Transaction Type : RESPONSE +17:08:39 Received From : +17:08:39 ============================================================================ +17:08:39 FNo. Len. Field Value +17:08:39 ============================================================================ +17:08:39 [ 1] [ 4] [0210] +17:08:39 [ 2] [ 16] [6213544001856019] +17:08:39 [ 3] [ 6] [011000] +17:08:39 [ 4] [ 12] [000020000000] +17:08:39 [ 7] [ 10] [0320170857] +17:08:39 [ 11] [ 6] [209277] +17:08:39 [ 12] [ 6] [170450] +17:08:39 [ 13] [ 4] [0320] +17:08:39 [ 15] [ 4] [0320] +17:08:39 [ 18] [ 4] [6011] +17:08:39 [ 19] [ 3] [418] +17:08:39 [ 32] [ 6] [198901] +17:08:39 [ 35] [ 32] [6213544001856019=491212015601403] +17:08:39 [ 37] [ 12] [507917209277] +17:08:39 [ 38] [ 6] [766476] +17:08:39 [ 39] [ 2] [00] +17:08:39 [ 41] [ 8] [00852902] +17:08:39 [ 49] [ 3] [418] +17:08:39 [ 54] [ 40] [1001418C0000457779281002418C000045777928] +17:08:39 ============================================================================ +17:08:39 Calculate Source COMM Id = 5 +17:08:39 ============================================================================ +17:08:39 + + +waiting on router queue for slot.... +17:08:47 ============================================================================ +17:08:47 Slot Id : <464> +17:08:47 Transaction Type : REQUEST +17:08:47 Received From : +17:08:47 ============================================================================ +17:08:47 FNo. Len. Field Value +17:08:47 ============================================================================ +17:08:47 [ 1] [ 4] [0800] +17:08:47 [ 7] [ 10] [0320100754] +17:08:47 [ 11] [ 6] [157389] +17:08:47 [ 70] [ 3] [301] +17:08:47 ============================================================================ +17:08:47 + + +waiting on router queue for slot.... +17:08:47 Sending to : +17:08:47 ============================================================================ +17:08:47 ============================================================================ +17:08:47 Slot Id : <464> +17:08:47 Transaction Type : RESPONSE +17:08:47 Received From : +17:08:47 ============================================================================ +17:08:47 FNo. Len. Field Value +17:08:47 ============================================================================ +17:08:47 [ 1] [ 4] [0810] +17:08:47 [ 7] [ 10] [0320100754] +17:08:47 [ 11] [ 6] [157389] +17:08:47 [ 39] [ 2] [00] +17:08:47 [ 70] [ 3] [301] +17:08:47 ============================================================================ +17:08:47 Calculate Source COMM Id = 2 +17:08:47 ============================================================================ +17:08:47 + + +waiting on router queue for slot.... +17:08:47 ============================================================================ +17:08:47 Slot Id : <32> +17:08:47 Transaction Type : REQUEST +17:08:47 Received From : +17:08:47 ============================================================================ +17:08:47 FNo. Len. Field Value +17:08:47 ============================================================================ +17:08:47 [ 1] [ 4] [0200] +17:08:47 [ 2] [ 16] [6213544002278957] +17:08:47 [ 3] [ 6] [011000] +17:08:47 [ 4] [ 12] [000025000000] +17:08:47 [ 7] [ 10] [0320170908] +17:08:47 [ 11] [ 6] [209280] +17:08:47 [ 12] [ 6] [170413] +17:08:47 [ 13] [ 4] [0320] +17:08:47 [ 14] [ 4] [4912] +17:08:47 [ 15] [ 4] [0320] +17:08:47 [ 18] [ 4] [6011] +17:08:47 [ 19] [ 3] [418] +17:08:47 [ 22] [ 3] [021] +17:08:47 [ 25] [ 2] [01] +17:08:47 [ 28] [ 9] [D00002000] +17:08:47 [ 32] [ 6] [198901] +17:08:47 [ 35] [ 32] [6213544002278957=491212017895179] +17:08:47 [ 37] [ 12] [507917209280] +17:08:47 [ 41] [ 8] [19529001] +17:08:47 [ 42] [ 15] [000000041952901] +17:08:47 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:08:47 [ 49] [ 3] [418] +17:08:47 [ 52] [ 16] [BFD9F52964905BA0] +17:08:47 ============================================================================ +17:08:47 + + +waiting on router queue for slot.... +17:08:47 Sending to : +17:08:47 ============================================================================ +17:08:47 Sending to : +17:08:47 ============================================================================ +17:08:48 ============================================================================ +17:08:48 Slot Id : <32> +17:08:48 Transaction Type : REQUEST +17:08:48 Received From : +17:08:48 ============================================================================ +17:08:48 FNo. Len. Field Value +17:08:48 ============================================================================ +17:08:48 [ 1] [ 4] [0200] +17:08:48 [ 2] [ 16] [6213544002278957] +17:08:48 [ 3] [ 6] [011000] +17:08:48 [ 4] [ 12] [000025000000] +17:08:48 [ 7] [ 10] [0320170908] +17:08:48 [ 11] [ 6] [209280] +17:08:48 [ 12] [ 6] [170413] +17:08:48 [ 13] [ 4] [0320] +17:08:48 [ 14] [ 4] [4912] +17:08:48 [ 15] [ 4] [0320] +17:08:48 [ 18] [ 4] [6011] +17:08:48 [ 19] [ 3] [418] +17:08:48 [ 22] [ 3] [021] +17:08:48 [ 25] [ 2] [01] +17:08:48 [ 28] [ 9] [D00002000] +17:08:48 [ 32] [ 6] [198901] +17:08:48 [ 35] [ 32] [6213544002278957=491212017895179] +17:08:48 [ 37] [ 12] [507917209280] +17:08:48 [ 41] [ 8] [19529001] +17:08:48 [ 42] [ 15] [000000041952901] +17:08:48 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:08:48 [ 49] [ 3] [418] +17:08:48 [ 52] [ 16] [BFD9F52964905BA0] +17:08:48 ============================================================================ +17:08:48 + + +waiting on router queue for slot.... +17:08:48 Sending to : +17:08:48 ============================================================================ +17:08:48 ============================================================================ +17:08:48 Slot Id : <32> +17:08:48 Transaction Type : REQUEST +17:08:48 Received From : +17:08:48 ============================================================================ +17:08:48 FNo. Len. Field Value +17:08:48 ============================================================================ +17:08:48 [ 1] [ 4] [0200] +17:08:48 [ 2] [ 16] [6213544002278957] +17:08:48 [ 3] [ 6] [011000] +17:08:48 [ 4] [ 12] [000025000000] +17:08:48 [ 7] [ 10] [0320170908] +17:08:48 [ 11] [ 6] [209280] +17:08:48 [ 12] [ 6] [170413] +17:08:48 [ 13] [ 4] [0320] +17:08:48 [ 14] [ 4] [4912] +17:08:48 [ 15] [ 4] [0320] +17:08:48 [ 18] [ 4] [6011] +17:08:48 [ 19] [ 3] [418] +17:08:48 [ 22] [ 3] [021] +17:08:48 [ 25] [ 2] [01] +17:08:48 [ 28] [ 9] [D00002000] +17:08:48 [ 32] [ 6] [198901] +17:08:48 [ 35] [ 32] [6213544002278957=491212017895179] +17:08:48 [ 37] [ 12] [507917209280] +17:08:48 [ 41] [ 8] [19529001] +17:08:48 [ 42] [ 15] [000000041952901] +17:08:48 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:08:48 [ 49] [ 3] [418] +17:08:48 [ 52] [ 16] [CAB6953D75B43A35] +17:08:48 ============================================================================ +17:08:48 + + +waiting on router queue for slot.... +17:08:48 Sending to : <0> +17:08:48 ============================================================================ +17:08:48 ============================================================================ +17:08:48 Slot Id : <32> +17:08:48 Transaction Type : RESPONSE +17:08:48 Received From : +17:08:48 ============================================================================ +17:08:48 FNo. Len. Field Value +17:08:48 ============================================================================ +17:08:48 [ 1] [ 4] [0210] +17:08:48 [ 2] [ 16] [6213544002278957] +17:08:48 [ 3] [ 6] [011000] +17:08:48 [ 4] [ 12] [000025000000] +17:08:48 [ 7] [ 10] [0320170908] +17:08:48 [ 11] [ 6] [209280] +17:08:48 [ 12] [ 6] [170413] +17:08:48 [ 13] [ 4] [0320] +17:08:48 [ 15] [ 4] [0320] +17:08:48 [ 18] [ 4] [6011] +17:08:48 [ 19] [ 3] [418] +17:08:48 [ 32] [ 6] [198901] +17:08:48 [ 35] [ 32] [6213544002278957=491212017895179] +17:08:48 [ 37] [ 12] [507917209280] +17:08:48 [ 38] [ 6] [090212] +17:08:48 [ 39] [ 2] [00] +17:08:48 [ 41] [ 8] [19529001] +17:08:48 [ 49] [ 3] [418] +17:08:48 [ 54] [ 40] [1001418C0000291947121002418C000029194712] +17:08:48 ============================================================================ +17:08:48 Sending to : +17:08:48 ============================================================================ +17:08:48 + + +waiting on router queue for slot.... +17:08:49 ============================================================================ +17:08:49 Slot Id : <487> +17:08:49 Transaction Type : REQUEST +17:08:49 Received From : +17:08:49 ============================================================================ +17:08:49 FNo. Len. Field Value +17:08:49 ============================================================================ +17:08:49 [ 1] [ 4] [0800] +17:08:49 [ 2] [ 5] [02531] +17:08:49 [ 3] [ 6] [579178] +17:08:49 [ 7] [ 10] [0320100849] +17:08:49 [ 11] [ 6] [807407] +17:08:49 [ 15] [ 10] [0320100849] +17:08:49 [ 37] [ 11] [57917807407] +17:08:49 [ 70] [ 3] [001] +17:08:49 ============================================================================ +17:08:49 + + +waiting on router queue for slot.... +17:08:49 ============================================================================ +17:08:49 Slot Id : <487> +17:08:49 Transaction Type : RESPONSE +17:08:49 Received From : +17:08:49 ============================================================================ +17:08:49 FNo. Len. Field Value +17:08:49 ============================================================================ +17:08:49 [ 1] [ 4] [0810] +17:08:49 [ 7] [ 10] [0320100849] +17:08:49 [ 11] [ 6] [807407] +17:08:49 [ 15] [ 4] [0320] +17:08:49 [ 37] [ 12] [57917807407] +17:08:49 [ 39] [ 2] [00] +17:08:49 [ 70] [ 3] [001] +17:08:49 ============================================================================ +17:08:49 Sending to : +17:08:49 ============================================================================ +17:08:49 + + +waiting on router queue for slot.... +17:08:50 ============================================================================ +17:08:50 Slot Id : <32> +17:08:50 Transaction Type : RESPONSE +17:08:50 Received From : +17:08:50 ============================================================================ +17:08:50 FNo. Len. Field Value +17:08:50 ============================================================================ +17:08:50 [ 1] [ 4] [0210] +17:08:50 [ 2] [ 16] [6213544002278957] +17:08:50 [ 3] [ 6] [011000] +17:08:50 [ 4] [ 12] [000025000000] +17:08:50 [ 7] [ 10] [0320170908] +17:08:50 [ 11] [ 6] [209280] +17:08:50 [ 12] [ 6] [170413] +17:08:50 [ 13] [ 4] [0320] +17:08:50 [ 15] [ 4] [0320] +17:08:50 [ 18] [ 4] [6011] +17:08:50 [ 19] [ 3] [418] +17:08:50 [ 32] [ 6] [198901] +17:08:50 [ 35] [ 32] [6213544002278957=491212017895179] +17:08:50 [ 37] [ 12] [507917209280] +17:08:50 [ 38] [ 6] [090212] +17:08:50 [ 39] [ 2] [00] +17:08:50 [ 41] [ 8] [19529001] +17:08:50 [ 49] [ 3] [418] +17:08:50 [ 54] [ 40] [1001418C0000291947121002418C000029194712] +17:08:50 ============================================================================ +17:08:50 Calculate Source COMM Id = 5 +17:08:50 ============================================================================ +17:08:50 + + +waiting on router queue for slot.... +17:08:50 ============================================================================ +17:08:50 Slot Id : <26> +17:08:50 Transaction Type : REQUEST +17:08:50 Received From : +17:08:50 ============================================================================ +17:08:50 FNo. Len. Field Value +17:08:50 ============================================================================ +17:08:50 [ 1] [ 4] [0200] +17:08:50 [ 2] [ 16] [6688990103296503] +17:08:50 [ 3] [ 6] [010000] +17:08:50 [ 4] [ 12] [000100000000] +17:08:50 [ 7] [ 10] [0320170845] +17:08:50 [ 11] [ 6] [810671] +17:08:50 [ 12] [ 6] [170845] +17:08:50 [ 13] [ 4] [0320] +17:08:50 [ 15] [ 4] [0320] +17:08:50 [ 18] [ 4] [6011] +17:08:50 [ 22] [ 3] [900] +17:08:50 [ 25] [ 2] [02] +17:08:50 [ 28] [ 9] [D00002000] +17:08:50 [ 32] [ 6] [621354] +17:08:50 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:08:50 [ 37] [ 12] [507903499653] +17:08:50 [ 41] [ 8] [06002200] +17:08:50 [ 42] [ 15] [NATIVE ] +17:08:50 [ 43] [ 40] [Beng Market Beng LAO] +17:08:50 [ 49] [ 3] [418] +17:08:50 [ 52] [ 16] [A818A29183BF310F] +17:08:50 ============================================================================ +17:08:50 + + +waiting on router queue for slot.... +17:08:50 Sending to : +17:08:50 ============================================================================ +17:08:50 Sending to : +17:08:50 ============================================================================ +17:08:50 ============================================================================ +17:08:50 Slot Id : <26> +17:08:50 Transaction Type : REQUEST +17:08:50 Received From : +17:08:50 ============================================================================ +17:08:50 FNo. Len. Field Value +17:08:50 ============================================================================ +17:08:50 [ 1] [ 4] [0200] +17:08:50 [ 2] [ 16] [6688990103296503] +17:08:50 [ 3] [ 6] [010000] +17:08:50 [ 4] [ 12] [000100000000] +17:08:50 [ 7] [ 10] [0320170845] +17:08:50 [ 11] [ 6] [810671] +17:08:50 [ 12] [ 6] [170845] +17:08:50 [ 13] [ 4] [0320] +17:08:50 [ 15] [ 4] [0320] +17:08:50 [ 18] [ 4] [6011] +17:08:50 [ 22] [ 3] [900] +17:08:50 [ 25] [ 2] [02] +17:08:50 [ 28] [ 9] [D00002000] +17:08:50 [ 32] [ 6] [621354] +17:08:50 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:08:50 [ 37] [ 12] [507903499653] +17:08:50 [ 41] [ 8] [06002200] +17:08:50 [ 42] [ 15] [NATIVE ] +17:08:50 [ 43] [ 40] [Beng Market Beng LAO] +17:08:50 [ 49] [ 3] [418] +17:08:50 [ 52] [ 16] [A818A29183BF310F] +17:08:50 ============================================================================ +17:08:50 + + +waiting on router queue for slot.... +17:08:50 Sending to : +17:08:50 ============================================================================ +17:08:50 ============================================================================ +17:08:50 Slot Id : <26> +17:08:50 Transaction Type : REQUEST +17:08:50 Received From : +17:08:50 ============================================================================ +17:08:50 FNo. Len. Field Value +17:08:50 ============================================================================ +17:08:50 [ 1] [ 4] [0200] +17:08:50 [ 2] [ 16] [6688990103296503] +17:08:50 [ 3] [ 6] [010000] +17:08:50 [ 4] [ 12] [000100000000] +17:08:50 [ 7] [ 10] [0320170845] +17:08:50 [ 11] [ 6] [810671] +17:08:50 [ 12] [ 6] [170845] +17:08:50 [ 13] [ 4] [0320] +17:08:50 [ 15] [ 4] [0320] +17:08:50 [ 18] [ 4] [6011] +17:08:50 [ 22] [ 3] [900] +17:08:50 [ 25] [ 2] [02] +17:08:50 [ 28] [ 9] [D00002000] +17:08:50 [ 32] [ 6] [621354] +17:08:50 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:08:50 [ 37] [ 12] [507903499653] +17:08:50 [ 41] [ 8] [06002200] +17:08:50 [ 42] [ 15] [NATIVE ] +17:08:50 [ 43] [ 40] [Beng Market Beng LAO] +17:08:50 [ 49] [ 3] [418] +17:08:50 [ 52] [ 16] [8F803458ACBFD8E8] +17:08:50 ============================================================================ +17:08:50 + + +waiting on router queue for slot.... +17:08:50 Sending to : <4> +17:08:50 ============================================================================ +17:08:52 ============================================================================ +17:08:52 Slot Id : <26> +17:08:52 Transaction Type : RESPONSE +17:08:52 Received From : +17:08:52 ============================================================================ +17:08:52 FNo. Len. Field Value +17:08:52 ============================================================================ +17:08:52 [ 1] [ 4] [0210] +17:08:52 [ 2] [ 16] [6688990103296503] +17:08:52 [ 3] [ 6] [010000] +17:08:52 [ 4] [ 12] [000100000000] +17:08:52 [ 11] [ 6] [810671] +17:08:52 [ 12] [ 6] [170845] +17:08:52 [ 15] [ 4] [0320] +17:08:52 [ 18] [ 4] [6011] +17:08:52 [ 32] [ 6] [621354] +17:08:52 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:08:52 [ 37] [ 12] [507903499653] +17:08:52 [ 38] [ 6] [808230] +17:08:52 [ 39] [ 2] [00] +17:08:52 [ 41] [ 8] [06002200] +17:08:52 [ 49] [ 3] [418] +17:08:52 [ 54] [ 20] [0002418C000271730681] +17:08:52 ============================================================================ +17:08:52 Sending to : +17:08:52 ============================================================================ +17:08:52 + + +waiting on router queue for slot.... +17:08:53 ============================================================================ +17:08:53 Slot Id : <26> +17:08:53 Transaction Type : RESPONSE +17:08:53 Received From : +17:08:53 ============================================================================ +17:08:53 FNo. Len. Field Value +17:08:53 ============================================================================ +17:08:53 [ 1] [ 4] [0210] +17:08:53 [ 2] [ 16] [6688990103296503] +17:08:53 [ 3] [ 6] [010000] +17:08:53 [ 4] [ 12] [000100000000] +17:08:53 [ 11] [ 6] [810671] +17:08:53 [ 12] [ 6] [170845] +17:08:53 [ 15] [ 4] [0320] +17:08:53 [ 18] [ 4] [6011] +17:08:53 [ 32] [ 6] [621354] +17:08:53 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:08:53 [ 37] [ 12] [507903499653] +17:08:53 [ 38] [ 6] [808230] +17:08:53 [ 39] [ 2] [00] +17:08:53 [ 41] [ 8] [06002200] +17:08:53 [ 49] [ 3] [418] +17:08:53 [ 54] [ 20] [0002418C000271730681] +17:08:53 ============================================================================ +17:08:53 Calculate Source COMM Id = 0 +17:08:53 ============================================================================ +17:08:53 + + +waiting on router queue for slot.... +17:08:59 ============================================================================ +17:08:59 Slot Id : <20> +17:08:59 Transaction Type : REQUEST +17:08:59 Received From : +17:08:59 ============================================================================ +17:08:59 FNo. Len. Field Value +17:08:59 ============================================================================ +17:08:59 [ 1] [ 4] [0800] +17:08:59 [ 7] [ 10] [0320100805] +17:08:59 [ 11] [ 6] [157390] +17:08:59 [ 70] [ 3] [301] +17:08:59 ============================================================================ +17:08:59 + + +waiting on router queue for slot.... +17:08:59 Sending to : +17:08:59 ============================================================================ +17:08:59 ============================================================================ +17:08:59 Slot Id : <20> +17:08:59 Transaction Type : RESPONSE +17:08:59 Received From : +17:08:59 ============================================================================ +17:08:59 FNo. Len. Field Value +17:08:59 ============================================================================ +17:08:59 [ 1] [ 4] [0810] +17:08:59 [ 7] [ 10] [0320100805] +17:08:59 [ 11] [ 6] [157390] +17:08:59 [ 39] [ 2] [00] +17:08:59 [ 70] [ 3] [301] +17:08:59 ============================================================================ +17:08:59 Calculate Source COMM Id = 2 +17:08:59 ============================================================================ +17:08:59 + + +waiting on router queue for slot.... +17:09:05 ============================================================================ +17:09:05 Slot Id : <48> +17:09:05 Transaction Type : REQUEST +17:09:05 Received From : +17:09:05 ============================================================================ +17:09:05 FNo. Len. Field Value +17:09:05 ============================================================================ +17:09:05 [ 1] [ 4] [0800] +17:09:05 [ 7] [ 10] [0321002054] +17:09:05 [ 11] [ 6] [172054] +17:09:05 [ 37] [ 12] [57917172054] +17:09:05 [ 70] [ 3] [301] +17:09:05 ============================================================================ +17:09:05 + + +waiting on router queue for slot.... +17:09:05 Sending to : +17:09:05 ============================================================================ +17:09:05 ============================================================================ +17:09:05 Slot Id : <48> +17:09:05 Transaction Type : RESPONSE +17:09:05 Received From : +17:09:05 ============================================================================ +17:09:05 FNo. Len. Field Value +17:09:05 ============================================================================ +17:09:05 [ 1] [ 4] [0810] +17:09:05 [ 7] [ 10] [0321002054] +17:09:05 [ 11] [ 6] [172054] +17:09:05 [ 37] [ 12] [579171720540] +17:09:05 [ 39] [ 2] [00] +17:09:05 [ 70] [ 3] [810] +17:09:05 ============================================================================ +17:09:05 Calculate Source COMM Id = 6 +17:09:05 ============================================================================ +17:09:05 + + +waiting on router queue for slot.... +17:09:09 ============================================================================ +17:09:09 Slot Id : <46> +17:09:09 Transaction Type : REQUEST +17:09:09 Received From : +17:09:09 ============================================================================ +17:09:09 FNo. Len. Field Value +17:09:09 ============================================================================ +17:09:09 [ 1] [ 4] [0200] +17:09:09 [ 2] [ 19] [6227003861190228036] +17:09:09 [ 3] [ 6] [010000] +17:09:09 [ 4] [ 12] [000030000000] +17:09:09 [ 7] [ 10] [0320171656] +17:09:09 [ 11] [ 6] [999992] +17:09:09 [ 12] [ 6] [171656] +17:09:09 [ 13] [ 4] [0320] +17:09:09 [ 14] [ 4] [4005] +17:09:09 [ 15] [ 4] [0320] +17:09:09 [ 18] [ 4] [6011] +17:09:09 [ 22] [ 3] [900] +17:09:09 [ 25] [ 2] [02] +17:09:09 [ 28] [ 9] [D00015000] +17:09:09 [ 32] [ 6] [220699] +17:09:09 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:09:09 [ 37] [ 12] [507900281386] +17:09:09 [ 41] [ 8] [10000100] +17:09:09 [ 42] [ 15] [APTRA ] +17:09:09 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:09:09 [ 49] [ 3] [418] +17:09:09 [ 52] [ 16] [2C3F307D839AD02B] +17:09:09 ============================================================================ +17:09:09 + + +waiting on router queue for slot.... +17:09:09 Sending to : +17:09:09 ============================================================================ +17:09:09 Sending to : +17:09:09 ============================================================================ +17:09:09 ============================================================================ +17:09:09 Slot Id : <46> +17:09:09 Transaction Type : REQUEST +17:09:09 Received From : +17:09:09 ============================================================================ +17:09:09 FNo. Len. Field Value +17:09:09 ============================================================================ +17:09:09 [ 1] [ 4] [0200] +17:09:09 [ 2] [ 19] [6227003861190228036] +17:09:09 [ 3] [ 6] [010000] +17:09:09 [ 4] [ 12] [000030000000] +17:09:09 [ 7] [ 10] [0320171656] +17:09:09 [ 11] [ 6] [999992] +17:09:09 [ 12] [ 6] [171656] +17:09:09 [ 13] [ 4] [0320] +17:09:09 [ 14] [ 4] [4005] +17:09:09 [ 15] [ 4] [0320] +17:09:09 [ 18] [ 4] [6011] +17:09:09 [ 22] [ 3] [900] +17:09:09 [ 25] [ 2] [02] +17:09:09 [ 28] [ 9] [D00015000] +17:09:09 [ 32] [ 6] [220699] +17:09:09 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:09:09 [ 37] [ 12] [507900281386] +17:09:09 [ 41] [ 8] [10000100] +17:09:09 [ 42] [ 15] [APTRA ] +17:09:09 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:09:09 [ 49] [ 3] [418] +17:09:09 [ 52] [ 16] [2C3F307D839AD02B] +17:09:09 ============================================================================ +17:09:09 + + +waiting on router queue for slot.... +17:09:09 Sending to : +17:09:09 ============================================================================ +17:09:09 ============================================================================ +17:09:09 Slot Id : <46> +17:09:09 Transaction Type : REQUEST +17:09:09 Received From : +17:09:09 ============================================================================ +17:09:09 FNo. Len. Field Value +17:09:09 ============================================================================ +17:09:09 [ 1] [ 4] [0200] +17:09:09 [ 2] [ 19] [6227003861190228036] +17:09:09 [ 3] [ 6] [010000] +17:09:09 [ 4] [ 12] [000030000000] +17:09:09 [ 7] [ 10] [0320171656] +17:09:09 [ 11] [ 6] [999992] +17:09:09 [ 12] [ 6] [171656] +17:09:09 [ 13] [ 4] [0320] +17:09:09 [ 14] [ 4] [4005] +17:09:09 [ 15] [ 4] [0320] +17:09:09 [ 18] [ 4] [6011] +17:09:09 [ 22] [ 3] [900] +17:09:09 [ 25] [ 2] [02] +17:09:09 [ 28] [ 9] [D00015000] +17:09:09 [ 32] [ 6] [220699] +17:09:09 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:09:09 [ 37] [ 12] [507900281386] +17:09:09 [ 41] [ 8] [10000100] +17:09:09 [ 42] [ 15] [APTRA ] +17:09:09 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:09:09 [ 49] [ 3] [418] +17:09:09 [ 52] [ 16] [AA84C5BD22503A94] +17:09:09 ============================================================================ +17:09:09 + + +waiting on router queue for slot.... +17:09:09 Sending to : <0> +17:09:09 ============================================================================ +17:09:09 ============================================================================ +17:09:09 Slot Id : <46> +17:09:09 Transaction Type : RESPONSE +17:09:09 Received From : +17:09:09 ============================================================================ +17:09:09 FNo. Len. Field Value +17:09:09 ============================================================================ +17:09:09 [ 1] [ 4] [0210] +17:09:09 [ 2] [ 19] [6227003861190228036] +17:09:09 [ 3] [ 6] [010000] +17:09:09 [ 4] [ 12] [000030000000] +17:09:09 [ 7] [ 10] [0320171656] +17:09:09 [ 11] [ 6] [999992] +17:09:09 [ 12] [ 6] [171656] +17:09:09 [ 13] [ 4] [0320] +17:09:09 [ 15] [ 4] [0320] +17:09:09 [ 18] [ 4] [6011] +17:09:09 [ 22] [ 3] [900] +17:09:09 [ 32] [ 6] [220699] +17:09:09 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:09:09 [ 37] [ 12] [507900281386] +17:09:09 [ 38] [ 6] [999992] +17:09:09 [ 39] [ 2] [03] +17:09:09 [ 41] [ 8] [10000100] +17:09:09 [ 49] [ 3] [418] +17:09:09 [ 54] [ 0] [] +17:09:09 ============================================================================ +17:09:09 Sending to : +17:09:09 ============================================================================ +17:09:09 + + +waiting on router queue for slot.... +17:09:11 ============================================================================ +17:09:11 Slot Id : <46> +17:09:11 Transaction Type : RESPONSE +17:09:11 Received From : +17:09:11 ============================================================================ +17:09:11 FNo. Len. Field Value +17:09:11 ============================================================================ +17:09:11 [ 1] [ 4] [0210] +17:09:11 [ 2] [ 19] [6227003861190228036] +17:09:11 [ 3] [ 6] [010000] +17:09:11 [ 4] [ 12] [000030000000] +17:09:11 [ 7] [ 10] [0320171656] +17:09:11 [ 11] [ 6] [999992] +17:09:11 [ 12] [ 6] [171656] +17:09:11 [ 13] [ 4] [0320] +17:09:11 [ 15] [ 4] [0320] +17:09:11 [ 18] [ 4] [6011] +17:09:11 [ 22] [ 3] [900] +17:09:11 [ 32] [ 6] [220699] +17:09:11 [ 35] [ 37] [6227003861190228036=40055205771020000] +17:09:11 [ 37] [ 12] [507900281386] +17:09:11 [ 38] [ 6] [999992] +17:09:11 [ 39] [ 2] [03] +17:09:11 [ 41] [ 8] [10000100] +17:09:11 [ 49] [ 3] [418] +17:09:11 [ 54] [ 0] [] +17:09:11 ============================================================================ +17:09:11 Calculate Source COMM Id = 1 +17:09:11 ============================================================================ +17:09:11 + + +waiting on router queue for slot.... +17:09:14 ============================================================================ +17:09:14 Slot Id : <69> +17:09:14 Transaction Type : REQUEST +17:09:14 Received From : +17:09:14 ============================================================================ +17:09:14 FNo. Len. Field Value +17:09:14 ============================================================================ +17:09:14 [ 1] [ 4] [0800] +17:09:14 [ 7] [ 10] [0320100821] +17:09:14 [ 11] [ 6] [157391] +17:09:14 [ 70] [ 3] [301] +17:09:14 ============================================================================ +17:09:14 + + +waiting on router queue for slot.... +17:09:14 Sending to : +17:09:14 ============================================================================ +17:09:14 ============================================================================ +17:09:14 Slot Id : <69> +17:09:14 Transaction Type : RESPONSE +17:09:14 Received From : +17:09:14 ============================================================================ +17:09:14 FNo. Len. Field Value +17:09:14 ============================================================================ +17:09:14 [ 1] [ 4] [0810] +17:09:14 [ 7] [ 10] [0320100821] +17:09:14 [ 11] [ 6] [157391] +17:09:14 [ 39] [ 2] [00] +17:09:14 [ 70] [ 3] [301] +17:09:14 ============================================================================ +17:09:14 Calculate Source COMM Id = 2 +17:09:14 ============================================================================ +17:09:14 + + +waiting on router queue for slot.... +17:09:20 ============================================================================ +17:09:20 Slot Id : <27> +17:09:20 Transaction Type : REQUEST +17:09:20 Received From : +17:09:20 ============================================================================ +17:09:20 FNo. Len. Field Value +17:09:20 ============================================================================ +17:09:20 [ 1] [ 4] [0200] +17:09:20 [ 2] [ 16] [6213544001465472] +17:09:20 [ 3] [ 6] [010000] +17:09:20 [ 4] [ 12] [000100000000] +17:09:20 [ 7] [ 10] [0320170710] +17:09:20 [ 11] [ 6] [952985] +17:09:20 [ 12] [ 6] [170710] +17:09:20 [ 13] [ 4] [0320] +17:09:20 [ 15] [ 4] [0320] +17:09:20 [ 18] [ 4] [6011] +17:09:20 [ 19] [ 3] [418] +17:09:20 [ 22] [ 3] [021] +17:09:20 [ 25] [ 2] [01] +17:09:20 [ 28] [ 9] [D00002000] +17:09:20 [ 32] [ 6] [668899] +17:09:20 [ 35] [ 32] [6213544001465472=491212016547762] +17:09:20 [ 37] [ 12] [507902161283] +17:09:20 [ 41] [ 8] [03020026] +17:09:20 [ 42] [ 15] [APT ] +17:09:20 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +17:09:20 [ 49] [ 3] [418] +17:09:20 [ 52] [ 16] [A904AF327003B06E] +17:09:20 ============================================================================ +17:09:20 + + +waiting on router queue for slot.... +17:09:20 Sending to : +17:09:20 ============================================================================ +17:09:20 Sending to : +17:09:20 ============================================================================ +17:09:20 ============================================================================ +17:09:20 Slot Id : <27> +17:09:20 Transaction Type : REQUEST +17:09:20 Received From : +17:09:20 ============================================================================ +17:09:20 FNo. Len. Field Value +17:09:20 ============================================================================ +17:09:20 [ 1] [ 4] [0200] +17:09:20 [ 2] [ 16] [6213544001465472] +17:09:20 [ 3] [ 6] [010000] +17:09:20 [ 4] [ 12] [000100000000] +17:09:20 [ 7] [ 10] [0320170710] +17:09:20 [ 11] [ 6] [952985] +17:09:20 [ 12] [ 6] [170710] +17:09:20 [ 13] [ 4] [0320] +17:09:20 [ 15] [ 4] [0320] +17:09:20 [ 18] [ 4] [6011] +17:09:20 [ 19] [ 3] [418] +17:09:20 [ 22] [ 3] [021] +17:09:20 [ 25] [ 2] [01] +17:09:20 [ 28] [ 9] [D00002000] +17:09:20 [ 32] [ 6] [668899] +17:09:20 [ 35] [ 32] [6213544001465472=491212016547762] +17:09:20 [ 37] [ 12] [507902161283] +17:09:20 [ 41] [ 8] [03020026] +17:09:20 [ 42] [ 15] [APT ] +17:09:20 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +17:09:20 [ 49] [ 3] [418] +17:09:20 [ 52] [ 16] [A904AF327003B06E] +17:09:20 ============================================================================ +17:09:20 + + +waiting on router queue for slot.... +17:09:20 Sending to : +17:09:20 ============================================================================ +17:09:20 ============================================================================ +17:09:20 Slot Id : <27> +17:09:20 Transaction Type : REQUEST +17:09:20 Received From : +17:09:20 ============================================================================ +17:09:20 FNo. Len. Field Value +17:09:20 ============================================================================ +17:09:20 [ 1] [ 4] [0200] +17:09:20 [ 2] [ 16] [6213544001465472] +17:09:20 [ 3] [ 6] [010000] +17:09:20 [ 4] [ 12] [000100000000] +17:09:20 [ 7] [ 10] [0320170710] +17:09:20 [ 11] [ 6] [952985] +17:09:20 [ 12] [ 6] [170710] +17:09:20 [ 13] [ 4] [0320] +17:09:20 [ 15] [ 4] [0320] +17:09:20 [ 18] [ 4] [6011] +17:09:20 [ 19] [ 3] [418] +17:09:20 [ 22] [ 3] [021] +17:09:20 [ 25] [ 2] [01] +17:09:20 [ 28] [ 9] [D00002000] +17:09:20 [ 32] [ 6] [668899] +17:09:20 [ 35] [ 32] [6213544001465472=491212016547762] +17:09:20 [ 37] [ 12] [507902161283] +17:09:20 [ 41] [ 8] [03020026] +17:09:20 [ 42] [ 15] [APT ] +17:09:20 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +17:09:20 [ 49] [ 3] [418] +17:09:20 [ 52] [ 16] [9609FC7E5AB0B42B] +17:09:20 ============================================================================ +17:09:20 + + +waiting on router queue for slot.... +17:09:20 Sending to : <0> +17:09:20 ============================================================================ +17:09:21 ============================================================================ +17:09:21 Slot Id : <27> +17:09:21 Transaction Type : RESPONSE +17:09:21 Received From : +17:09:21 ============================================================================ +17:09:21 FNo. Len. Field Value +17:09:21 ============================================================================ +17:09:21 [ 1] [ 4] [0210] +17:09:21 [ 2] [ 16] [6213544001465472] +17:09:21 [ 3] [ 6] [010000] +17:09:21 [ 4] [ 12] [000100000000] +17:09:21 [ 7] [ 10] [0320170710] +17:09:21 [ 11] [ 6] [952985] +17:09:21 [ 12] [ 6] [170710] +17:09:21 [ 13] [ 4] [0320] +17:09:21 [ 15] [ 4] [0320] +17:09:21 [ 18] [ 4] [6011] +17:09:21 [ 19] [ 3] [418] +17:09:21 [ 32] [ 6] [668899] +17:09:21 [ 35] [ 32] [6213544001465472=491212016547762] +17:09:21 [ 37] [ 12] [507902161283] +17:09:21 [ 38] [ 6] [913967] +17:09:21 [ 39] [ 2] [00] +17:09:21 [ 41] [ 8] [03020026] +17:09:21 [ 49] [ 3] [418] +17:09:21 [ 54] [ 40] [0001418C0002070616370002418C000207061637] +17:09:21 ============================================================================ +17:09:21 Sending to : +17:09:21 ============================================================================ +17:09:21 + + +waiting on router queue for slot.... +17:09:22 ============================================================================ +17:09:22 Slot Id : <27> +17:09:22 Transaction Type : RESPONSE +17:09:22 Received From : +17:09:22 ============================================================================ +17:09:22 FNo. Len. Field Value +17:09:22 ============================================================================ +17:09:22 [ 1] [ 4] [0210] +17:09:22 [ 2] [ 16] [6213544001465472] +17:09:22 [ 3] [ 6] [010000] +17:09:22 [ 4] [ 12] [000100000000] +17:09:22 [ 7] [ 10] [0320170710] +17:09:22 [ 11] [ 6] [952985] +17:09:22 [ 12] [ 6] [170710] +17:09:22 [ 13] [ 4] [0320] +17:09:22 [ 15] [ 4] [0320] +17:09:22 [ 18] [ 4] [6011] +17:09:22 [ 19] [ 3] [418] +17:09:22 [ 32] [ 6] [668899] +17:09:22 [ 35] [ 32] [6213544001465472=491212016547762] +17:09:22 [ 37] [ 12] [507902161283] +17:09:22 [ 38] [ 6] [913967] +17:09:22 [ 39] [ 2] [00] +17:09:22 [ 41] [ 8] [03020026] +17:09:22 [ 49] [ 3] [418] +17:09:22 [ 54] [ 40] [0001418C0002070616370002418C000207061637] +17:09:22 ============================================================================ +17:09:22 Calculate Source COMM Id = 4 +17:09:22 ============================================================================ +17:09:22 + + +waiting on router queue for slot.... +17:09:25 ============================================================================ +17:09:25 Slot Id : <19> +17:09:25 Transaction Type : REQUEST +17:09:25 Received From : +17:09:25 ============================================================================ +17:09:25 FNo. Len. Field Value +17:09:25 ============================================================================ +17:09:25 [ 1] [ 4] [0800] +17:09:25 [ 7] [ 10] [0320100832] +17:09:25 [ 11] [ 6] [157392] +17:09:25 [ 70] [ 3] [301] +17:09:25 ============================================================================ +17:09:25 + + +waiting on router queue for slot.... +17:09:25 Sending to : +17:09:25 ============================================================================ +17:09:25 ============================================================================ +17:09:25 Slot Id : <19> +17:09:25 Transaction Type : RESPONSE +17:09:25 Received From : +17:09:25 ============================================================================ +17:09:25 FNo. Len. Field Value +17:09:25 ============================================================================ +17:09:25 [ 1] [ 4] [0810] +17:09:25 [ 7] [ 10] [0320100832] +17:09:25 [ 11] [ 6] [157392] +17:09:25 [ 39] [ 2] [00] +17:09:25 [ 70] [ 3] [301] +17:09:25 ============================================================================ +17:09:25 Calculate Source COMM Id = 2 +17:09:25 ============================================================================ +17:09:25 + + +waiting on router queue for slot.... +17:09:36 ============================================================================ +17:09:36 Slot Id : <47> +17:09:36 Transaction Type : REQUEST +17:09:36 Received From : +17:09:36 ============================================================================ +17:09:36 FNo. Len. Field Value +17:09:36 ============================================================================ +17:09:36 [ 1] [ 4] [0200] +17:09:36 [ 2] [ 16] [6213545001065287] +17:09:36 [ 3] [ 6] [010000] +17:09:36 [ 4] [ 12] [000010000000] +17:09:36 [ 7] [ 10] [0320100842] +17:09:36 [ 11] [ 6] [270724] +17:09:36 [ 12] [ 6] [170842] +17:09:36 [ 13] [ 4] [0320] +17:09:36 [ 14] [ 4] [4912] +17:09:36 [ 15] [ 4] [0320] +17:09:36 [ 18] [ 4] [6011] +17:09:36 [ 19] [ 3] [418] +17:09:36 [ 22] [ 3] [021] +17:09:36 [ 25] [ 2] [01] +17:09:36 [ 28] [ 9] [D00002000] +17:09:36 [ 32] [ 6] [180893] +17:09:36 [ 35] [ 32] [6213545001065287=491212016528925] +17:09:36 [ 37] [ 12] [507910270724] +17:09:36 [ 41] [ 8] [0324BKDT] +17:09:36 [ 42] [ 15] [999999 ] +17:09:36 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +17:09:36 [ 49] [ 3] [418] +17:09:36 [ 52] [ 16] [B65F3F19F1B5A6ED] +17:09:36 ============================================================================ +17:09:36 + + +waiting on router queue for slot.... +17:09:36 Sending to : +17:09:36 ============================================================================ +17:09:36 Sending to : +17:09:36 ============================================================================ +17:09:36 ============================================================================ +17:09:36 Slot Id : <47> +17:09:36 Transaction Type : REQUEST +17:09:36 Received From : +17:09:36 ============================================================================ +17:09:36 FNo. Len. Field Value +17:09:36 ============================================================================ +17:09:36 [ 1] [ 4] [0200] +17:09:36 [ 2] [ 16] [6213545001065287] +17:09:36 [ 3] [ 6] [010000] +17:09:36 [ 4] [ 12] [000010000000] +17:09:36 [ 7] [ 10] [0320100842] +17:09:36 [ 11] [ 6] [270724] +17:09:36 [ 12] [ 6] [170842] +17:09:36 [ 13] [ 4] [0320] +17:09:36 [ 14] [ 4] [4912] +17:09:36 [ 15] [ 4] [0320] +17:09:36 [ 18] [ 4] [6011] +17:09:36 [ 19] [ 3] [418] +17:09:36 [ 22] [ 3] [021] +17:09:36 [ 25] [ 2] [01] +17:09:36 [ 28] [ 9] [D00002000] +17:09:36 [ 32] [ 6] [180893] +17:09:36 [ 35] [ 32] [6213545001065287=491212016528925] +17:09:36 [ 37] [ 12] [507910270724] +17:09:36 [ 41] [ 8] [0324BKDT] +17:09:36 [ 42] [ 15] [999999 ] +17:09:36 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +17:09:36 [ 49] [ 3] [418] +17:09:36 [ 52] [ 16] [B65F3F19F1B5A6ED] +17:09:36 ============================================================================ +17:09:36 + + +waiting on router queue for slot.... +17:09:36 Sending to : +17:09:36 ============================================================================ +17:09:36 ============================================================================ +17:09:36 Slot Id : <47> +17:09:36 Transaction Type : REQUEST +17:09:36 Received From : +17:09:36 ============================================================================ +17:09:36 FNo. Len. Field Value +17:09:36 ============================================================================ +17:09:36 [ 1] [ 4] [0200] +17:09:36 [ 2] [ 16] [6213545001065287] +17:09:36 [ 3] [ 6] [010000] +17:09:36 [ 4] [ 12] [000010000000] +17:09:36 [ 7] [ 10] [0320100842] +17:09:36 [ 11] [ 6] [270724] +17:09:36 [ 12] [ 6] [170842] +17:09:36 [ 13] [ 4] [0320] +17:09:36 [ 14] [ 4] [4912] +17:09:36 [ 15] [ 4] [0320] +17:09:36 [ 18] [ 4] [6011] +17:09:36 [ 19] [ 3] [418] +17:09:36 [ 22] [ 3] [021] +17:09:36 [ 25] [ 2] [01] +17:09:36 [ 28] [ 9] [D00002000] +17:09:36 [ 32] [ 6] [180893] +17:09:36 [ 35] [ 32] [6213545001065287=491212016528925] +17:09:36 [ 37] [ 12] [507910270724] +17:09:36 [ 41] [ 8] [0324BKDT] +17:09:36 [ 42] [ 15] [999999 ] +17:09:36 [ 43] [ 40] [ATM BORKEO LOCATION DARNTHIN, Hauysay, L] +17:09:36 [ 49] [ 3] [418] +17:09:36 [ 52] [ 16] [C7521A56831225F3] +17:09:36 ============================================================================ +17:09:36 + + +waiting on router queue for slot.... +17:09:36 Sending to : <0> +17:09:36 ============================================================================ +17:09:37 ============================================================================ +17:09:37 Slot Id : <47> +17:09:37 Transaction Type : RESPONSE +17:09:37 Received From : +17:09:37 ============================================================================ +17:09:37 FNo. Len. Field Value +17:09:37 ============================================================================ +17:09:37 [ 1] [ 4] [0210] +17:09:37 [ 2] [ 16] [6213545001065287] +17:09:37 [ 3] [ 6] [010000] +17:09:37 [ 4] [ 12] [000010000000] +17:09:37 [ 7] [ 10] [0320100842] +17:09:37 [ 11] [ 6] [270724] +17:09:37 [ 12] [ 6] [170842] +17:09:37 [ 13] [ 4] [0320] +17:09:37 [ 15] [ 4] [0320] +17:09:37 [ 18] [ 4] [6011] +17:09:37 [ 19] [ 3] [418] +17:09:37 [ 32] [ 6] [180893] +17:09:37 [ 35] [ 32] [6213545001065287=491212016528925] +17:09:37 [ 37] [ 12] [507910270724] +17:09:37 [ 38] [ 6] [895109] +17:09:37 [ 39] [ 2] [00] +17:09:37 [ 41] [ 8] [0324BKDT] +17:09:37 [ 49] [ 3] [418] +17:09:37 [ 54] [ 40] [0001418C0000054421470002418C000005442147] +17:09:37 ============================================================================ +17:09:37 Sending to : +17:09:37 ============================================================================ +17:09:37 + + +waiting on router queue for slot.... +17:09:37 ============================================================================ +17:09:37 Slot Id : <54> +17:09:37 Transaction Type : REQUEST +17:09:37 Received From : +17:09:37 ============================================================================ +17:09:37 FNo. Len. Field Value +17:09:37 ============================================================================ +17:09:37 [ 1] [ 4] [0200] +17:09:37 [ 2] [ 16] [6213544002118104] +17:09:37 [ 3] [ 6] [011000] +17:09:37 [ 4] [ 12] [000020000000] +17:09:37 [ 7] [ 10] [0320170958] +17:09:37 [ 11] [ 6] [209294] +17:09:37 [ 12] [ 6] [170503] +17:09:37 [ 13] [ 4] [0320] +17:09:37 [ 14] [ 4] [4912] +17:09:37 [ 15] [ 4] [0320] +17:09:37 [ 18] [ 4] [6011] +17:09:37 [ 19] [ 3] [418] +17:09:37 [ 22] [ 3] [021] +17:09:37 [ 25] [ 2] [01] +17:09:37 [ 28] [ 9] [D00002000] +17:09:37 [ 32] [ 6] [198901] +17:09:37 [ 35] [ 32] [6213544002118104=491212011810333] +17:09:37 [ 37] [ 12] [507917209294] +17:09:37 [ 41] [ 8] [19529001] +17:09:37 [ 42] [ 15] [000000041952901] +17:09:37 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:09:37 [ 49] [ 3] [418] +17:09:37 [ 52] [ 16] [498D43EEF3404D81] +17:09:37 ============================================================================ +17:09:37 + + +waiting on router queue for slot.... +17:09:37 Sending to : +17:09:37 ============================================================================ +17:09:37 Sending to : +17:09:37 ============================================================================ +17:09:37 ============================================================================ +17:09:37 Slot Id : <54> +17:09:37 Transaction Type : REQUEST +17:09:37 Received From : +17:09:37 ============================================================================ +17:09:37 FNo. Len. Field Value +17:09:37 ============================================================================ +17:09:37 [ 1] [ 4] [0200] +17:09:37 [ 2] [ 16] [6213544002118104] +17:09:37 [ 3] [ 6] [011000] +17:09:37 [ 4] [ 12] [000020000000] +17:09:37 [ 7] [ 10] [0320170958] +17:09:37 [ 11] [ 6] [209294] +17:09:37 [ 12] [ 6] [170503] +17:09:37 [ 13] [ 4] [0320] +17:09:37 [ 14] [ 4] [4912] +17:09:37 [ 15] [ 4] [0320] +17:09:37 [ 18] [ 4] [6011] +17:09:37 [ 19] [ 3] [418] +17:09:37 [ 22] [ 3] [021] +17:09:37 [ 25] [ 2] [01] +17:09:37 [ 28] [ 9] [D00002000] +17:09:37 [ 32] [ 6] [198901] +17:09:37 [ 35] [ 32] [6213544002118104=491212011810333] +17:09:37 [ 37] [ 12] [507917209294] +17:09:37 [ 41] [ 8] [19529001] +17:09:37 [ 42] [ 15] [000000041952901] +17:09:37 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:09:37 [ 49] [ 3] [418] +17:09:37 [ 52] [ 16] [498D43EEF3404D81] +17:09:37 ============================================================================ +17:09:37 + + +waiting on router queue for slot.... +17:09:37 Sending to : +17:09:37 ============================================================================ +17:09:37 ============================================================================ +17:09:37 Slot Id : <54> +17:09:37 Transaction Type : REQUEST +17:09:37 Received From : +17:09:37 ============================================================================ +17:09:37 FNo. Len. Field Value +17:09:37 ============================================================================ +17:09:37 [ 1] [ 4] [0200] +17:09:37 [ 2] [ 16] [6213544002118104] +17:09:37 [ 3] [ 6] [011000] +17:09:37 [ 4] [ 12] [000020000000] +17:09:37 [ 7] [ 10] [0320170958] +17:09:37 [ 11] [ 6] [209294] +17:09:37 [ 12] [ 6] [170503] +17:09:37 [ 13] [ 4] [0320] +17:09:37 [ 14] [ 4] [4912] +17:09:37 [ 15] [ 4] [0320] +17:09:37 [ 18] [ 4] [6011] +17:09:37 [ 19] [ 3] [418] +17:09:37 [ 22] [ 3] [021] +17:09:37 [ 25] [ 2] [01] +17:09:37 [ 28] [ 9] [D00002000] +17:09:37 [ 32] [ 6] [198901] +17:09:37 [ 35] [ 32] [6213544002118104=491212011810333] +17:09:37 [ 37] [ 12] [507917209294] +17:09:37 [ 41] [ 8] [19529001] +17:09:37 [ 42] [ 15] [000000041952901] +17:09:37 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:09:37 [ 49] [ 3] [418] +17:09:37 [ 52] [ 16] [6898C6CA138C1645] +17:09:37 ============================================================================ +17:09:37 + + +waiting on router queue for slot.... +17:09:37 Sending to : <0> +17:09:37 ============================================================================ +17:09:38 ============================================================================ +17:09:38 Slot Id : <54> +17:09:38 Transaction Type : RESPONSE +17:09:38 Received From : +17:09:38 ============================================================================ +17:09:38 FNo. Len. Field Value +17:09:38 ============================================================================ +17:09:38 [ 1] [ 4] [0210] +17:09:38 [ 2] [ 16] [6213544002118104] +17:09:38 [ 3] [ 6] [011000] +17:09:38 [ 4] [ 12] [000020000000] +17:09:38 [ 7] [ 10] [0320170958] +17:09:38 [ 11] [ 6] [209294] +17:09:38 [ 12] [ 6] [170503] +17:09:38 [ 13] [ 4] [0320] +17:09:38 [ 15] [ 4] [0320] +17:09:38 [ 18] [ 4] [6011] +17:09:38 [ 19] [ 3] [418] +17:09:38 [ 22] [ 3] [021] +17:09:38 [ 32] [ 6] [198901] +17:09:38 [ 35] [ 32] [6213544002118104=491212011810333] +17:09:38 [ 37] [ 12] [507917209294] +17:09:38 [ 38] [ 6] [170933] +17:09:38 [ 39] [ 2] [55] +17:09:38 [ 41] [ 8] [19529001] +17:09:38 [ 49] [ 3] [418] +17:09:38 ============================================================================ +17:09:38 Sending to : +17:09:38 ============================================================================ +17:09:38 + + +waiting on router queue for slot.... +17:09:38 ============================================================================ +17:09:38 Slot Id : <47> +17:09:38 Transaction Type : RESPONSE +17:09:38 Received From : +17:09:38 ============================================================================ +17:09:38 FNo. Len. Field Value +17:09:38 ============================================================================ +17:09:38 [ 1] [ 4] [0210] +17:09:38 [ 2] [ 16] [6213545001065287] +17:09:38 [ 3] [ 6] [010000] +17:09:38 [ 4] [ 12] [000010000000] +17:09:38 [ 7] [ 10] [0320100842] +17:09:38 [ 11] [ 6] [270724] +17:09:38 [ 12] [ 6] [170842] +17:09:38 [ 13] [ 4] [0320] +17:09:38 [ 15] [ 4] [0320] +17:09:38 [ 18] [ 4] [6011] +17:09:38 [ 19] [ 3] [418] +17:09:38 [ 32] [ 6] [180893] +17:09:38 [ 35] [ 32] [6213545001065287=491212016528925] +17:09:38 [ 37] [ 12] [507910270724] +17:09:38 [ 38] [ 6] [895109] +17:09:38 [ 39] [ 2] [00] +17:09:38 [ 41] [ 8] [0324BKDT] +17:09:38 [ 49] [ 3] [418] +17:09:38 [ 54] [ 40] [0001418C0000054421470002418C000005442147] +17:09:38 ============================================================================ +17:09:38 Calculate Source COMM Id = 2 +17:09:38 ============================================================================ +17:09:38 + + +waiting on router queue for slot.... +17:09:39 ============================================================================ +17:09:39 Slot Id : <54> +17:09:39 Transaction Type : RESPONSE +17:09:39 Received From : +17:09:39 ============================================================================ +17:09:39 FNo. Len. Field Value +17:09:39 ============================================================================ +17:09:39 [ 1] [ 4] [0210] +17:09:39 [ 2] [ 16] [6213544002118104] +17:09:39 [ 3] [ 6] [011000] +17:09:39 [ 4] [ 12] [000020000000] +17:09:39 [ 7] [ 10] [0320170958] +17:09:39 [ 11] [ 6] [209294] +17:09:39 [ 12] [ 6] [170503] +17:09:39 [ 13] [ 4] [0320] +17:09:39 [ 15] [ 4] [0320] +17:09:39 [ 18] [ 4] [6011] +17:09:39 [ 19] [ 3] [418] +17:09:39 [ 22] [ 3] [021] +17:09:39 [ 32] [ 6] [198901] +17:09:39 [ 35] [ 32] [6213544002118104=491212011810333] +17:09:39 [ 37] [ 12] [507917209294] +17:09:39 [ 38] [ 6] [170933] +17:09:39 [ 39] [ 2] [55] +17:09:39 [ 41] [ 8] [19529001] +17:09:39 [ 49] [ 3] [418] +17:09:39 ============================================================================ +17:09:39 Calculate Source COMM Id = 5 +17:09:39 ============================================================================ +17:09:39 + + +waiting on router queue for slot.... +17:09:51 ============================================================================ +17:09:51 Slot Id : <78> +17:09:51 Transaction Type : REQUEST +17:09:51 Received From : +17:09:51 ============================================================================ +17:09:51 FNo. Len. Field Value +17:09:51 ============================================================================ +17:09:51 [ 1] [ 4] [0800] +17:09:51 [ 2] [ 5] [02531] +17:09:51 [ 3] [ 6] [579178] +17:09:51 [ 7] [ 10] [0320100951] +17:09:51 [ 11] [ 6] [807408] +17:09:51 [ 15] [ 10] [0320100951] +17:09:51 [ 37] [ 11] [57917807408] +17:09:51 [ 70] [ 3] [001] +17:09:51 ============================================================================ +17:09:51 + + +waiting on router queue for slot.... +17:09:51 ============================================================================ +17:09:51 Slot Id : <78> +17:09:51 Transaction Type : RESPONSE +17:09:51 Received From : +17:09:51 ============================================================================ +17:09:51 FNo. Len. Field Value +17:09:51 ============================================================================ +17:09:51 [ 1] [ 4] [0810] +17:09:51 [ 7] [ 10] [0320100951] +17:09:51 [ 11] [ 6] [807408] +17:09:51 [ 15] [ 4] [0320] +17:09:51 [ 37] [ 12] [57917807408] +17:09:51 [ 39] [ 2] [00] +17:09:51 [ 70] [ 3] [001] +17:09:51 ============================================================================ +17:09:51 Sending to : +17:09:51 ============================================================================ +17:09:51 + + +waiting on router queue for slot.... +17:09:52 ============================================================================ +17:09:52 Slot Id : <57> +17:09:52 Transaction Type : REQUEST +17:09:52 Received From : +17:09:52 ============================================================================ +17:09:52 FNo. Len. Field Value +17:09:52 ============================================================================ +17:09:52 [ 1] [ 4] [0800] +17:09:52 [ 7] [ 10] [0320100859] +17:09:52 [ 11] [ 6] [157393] +17:09:52 [ 70] [ 3] [301] +17:09:52 ============================================================================ +17:09:52 + + +waiting on router queue for slot.... +17:09:52 Sending to : +17:09:52 ============================================================================ +17:09:52 ============================================================================ +17:09:52 Slot Id : <57> +17:09:52 Transaction Type : RESPONSE +17:09:52 Received From : +17:09:52 ============================================================================ +17:09:52 FNo. Len. Field Value +17:09:52 ============================================================================ +17:09:52 [ 1] [ 4] [0810] +17:09:52 [ 7] [ 10] [0320100859] +17:09:52 [ 11] [ 6] [157393] +17:09:52 [ 39] [ 2] [00] +17:09:52 [ 70] [ 3] [301] +17:09:52 ============================================================================ +17:09:52 Calculate Source COMM Id = 2 +17:09:52 ============================================================================ +17:09:52 + + +waiting on router queue for slot.... +17:09:55 ============================================================================ +17:09:55 Slot Id : <24> +17:09:55 Transaction Type : REQUEST +17:09:55 Received From : +17:09:55 ============================================================================ +17:09:55 FNo. Len. Field Value +17:09:55 ============================================================================ +17:09:55 [ 1] [ 4] [0800] +17:09:55 [ 7] [ 10] [0320101742] +17:09:55 [ 11] [ 6] [061888] +17:09:55 [ 37] [ 12] [57917061888] +17:09:55 [ 70] [ 3] [301] +17:09:55 ============================================================================ +17:09:55 + + +waiting on router queue for slot.... +17:09:55 Sending to : +17:09:55 ============================================================================ +17:09:55 ============================================================================ +17:09:55 Slot Id : <24> +17:09:55 Transaction Type : RESPONSE +17:09:55 Received From : +17:09:55 ============================================================================ +17:09:55 FNo. Len. Field Value +17:09:55 ============================================================================ +17:09:55 [ 1] [ 4] [0810] +17:09:55 [ 7] [ 10] [0320101742] +17:09:55 [ 11] [ 6] [061888] +17:09:55 [ 37] [ 12] [579170618880] +17:09:55 [ 39] [ 2] [00] +17:09:55 [ 70] [ 3] [810] +17:09:55 ============================================================================ +17:09:55 Calculate Source COMM Id = 1 +17:09:55 ============================================================================ +17:09:55 + + +waiting on router queue for slot.... +17:09:55 ============================================================================ +17:09:55 Slot Id : <49> +17:09:55 Transaction Type : REQUEST +17:09:55 Received From : +17:09:55 ============================================================================ +17:09:55 FNo. Len. Field Value +17:09:55 ============================================================================ +17:09:55 [ 1] [ 4] [0200] +17:09:55 [ 2] [ 16] [6688990040118976] +17:09:55 [ 3] [ 6] [311000] +17:09:55 [ 4] [ 12] [000000000000] +17:09:55 [ 7] [ 10] [0320171742] +17:09:55 [ 11] [ 6] [999995] +17:09:55 [ 12] [ 6] [171742] +17:09:55 [ 13] [ 4] [0320] +17:09:55 [ 14] [ 4] [9803] +17:09:55 [ 15] [ 4] [0320] +17:09:55 [ 18] [ 4] [6011] +17:09:55 [ 22] [ 3] [900] +17:09:55 [ 25] [ 2] [02] +17:09:55 [ 28] [ 9] [000000000] +17:09:55 [ 32] [ 6] [220699] +17:09:55 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:09:55 [ 37] [ 12] [507900281388] +17:09:55 [ 41] [ 8] [10000100] +17:09:55 [ 42] [ 15] [APTRA ] +17:09:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:09:55 [ 49] [ 3] [418] +17:09:55 [ 52] [ 16] [CCD7D89836BDCCB5] +17:09:55 ============================================================================ +17:09:55 + + +waiting on router queue for slot.... +17:09:55 Sending to : +17:09:55 ============================================================================ +17:09:55 Sending to : +17:09:55 ============================================================================ +17:09:56 ============================================================================ +17:09:56 Slot Id : <49> +17:09:56 Transaction Type : REQUEST +17:09:56 Received From : +17:09:56 ============================================================================ +17:09:56 FNo. Len. Field Value +17:09:56 ============================================================================ +17:09:56 [ 1] [ 4] [0200] +17:09:56 [ 2] [ 16] [6688990040118976] +17:09:56 [ 3] [ 6] [311000] +17:09:56 [ 4] [ 12] [000000000000] +17:09:56 [ 7] [ 10] [0320171742] +17:09:56 [ 11] [ 6] [999995] +17:09:56 [ 12] [ 6] [171742] +17:09:56 [ 13] [ 4] [0320] +17:09:56 [ 14] [ 4] [9803] +17:09:56 [ 15] [ 4] [0320] +17:09:56 [ 18] [ 4] [6011] +17:09:56 [ 22] [ 3] [900] +17:09:56 [ 25] [ 2] [02] +17:09:56 [ 28] [ 9] [000000000] +17:09:56 [ 32] [ 6] [220699] +17:09:56 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:09:56 [ 37] [ 12] [507900281388] +17:09:56 [ 41] [ 8] [10000100] +17:09:56 [ 42] [ 15] [APTRA ] +17:09:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:09:56 [ 49] [ 3] [418] +17:09:56 [ 52] [ 16] [CCD7D89836BDCCB5] +17:09:56 ============================================================================ +17:09:56 + + +waiting on router queue for slot.... +17:09:56 Sending to : +17:09:56 ============================================================================ +17:09:56 ============================================================================ +17:09:56 Slot Id : <49> +17:09:56 Transaction Type : REQUEST +17:09:56 Received From : +17:09:56 ============================================================================ +17:09:56 FNo. Len. Field Value +17:09:56 ============================================================================ +17:09:56 [ 1] [ 4] [0200] +17:09:56 [ 2] [ 16] [6688990040118976] +17:09:56 [ 3] [ 6] [311000] +17:09:56 [ 4] [ 12] [000000000000] +17:09:56 [ 7] [ 10] [0320171742] +17:09:56 [ 11] [ 6] [999995] +17:09:56 [ 12] [ 6] [171742] +17:09:56 [ 13] [ 4] [0320] +17:09:56 [ 14] [ 4] [9803] +17:09:56 [ 15] [ 4] [0320] +17:09:56 [ 18] [ 4] [6011] +17:09:56 [ 22] [ 3] [900] +17:09:56 [ 25] [ 2] [02] +17:09:56 [ 28] [ 9] [000000000] +17:09:56 [ 32] [ 6] [220699] +17:09:56 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:09:56 [ 37] [ 12] [507900281388] +17:09:56 [ 41] [ 8] [10000100] +17:09:56 [ 42] [ 15] [APTRA ] +17:09:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:09:56 [ 49] [ 3] [418] +17:09:56 [ 52] [ 16] [3F8FA5C817D40D98] +17:09:56 ============================================================================ +17:09:56 + + +waiting on router queue for slot.... +17:09:56 Sending to : <0> +17:09:56 ============================================================================ +17:09:56 ============================================================================ +17:09:56 Slot Id : <49> +17:09:56 Transaction Type : RESPONSE +17:09:56 Received From : +17:09:56 ============================================================================ +17:09:56 FNo. Len. Field Value +17:09:56 ============================================================================ +17:09:56 [ 1] [ 4] [0210] +17:09:56 [ 2] [ 16] [6688990040118976] +17:09:56 [ 3] [ 6] [311000] +17:09:56 [ 4] [ 12] [000000000000] +17:09:56 [ 7] [ 10] [0320171742] +17:09:56 [ 11] [ 6] [999995] +17:09:56 [ 12] [ 6] [171742] +17:09:56 [ 13] [ 4] [0320] +17:09:56 [ 15] [ 4] [0320] +17:09:56 [ 18] [ 4] [6011] +17:09:56 [ 22] [ 3] [900] +17:09:56 [ 32] [ 6] [220699] +17:09:56 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:09:56 [ 37] [ 12] [507900281388] +17:09:56 [ 39] [ 2] [14] +17:09:56 [ 41] [ 8] [10000100] +17:09:56 [ 49] [ 3] [418] +17:09:56 ============================================================================ +17:09:56 Sending to : +17:09:56 ============================================================================ +17:09:56 + + +waiting on router queue for slot.... +17:09:57 ============================================================================ +17:09:57 Slot Id : <49> +17:09:57 Transaction Type : RESPONSE +17:09:57 Received From : +17:09:57 ============================================================================ +17:09:57 FNo. Len. Field Value +17:09:57 ============================================================================ +17:09:57 [ 1] [ 4] [0210] +17:09:57 [ 2] [ 16] [6688990040118976] +17:09:57 [ 3] [ 6] [311000] +17:09:57 [ 4] [ 12] [000000000000] +17:09:57 [ 7] [ 10] [0320171742] +17:09:57 [ 11] [ 6] [999995] +17:09:57 [ 12] [ 6] [171742] +17:09:57 [ 13] [ 4] [0320] +17:09:57 [ 15] [ 4] [0320] +17:09:57 [ 18] [ 4] [6011] +17:09:57 [ 22] [ 3] [900] +17:09:57 [ 32] [ 6] [220699] +17:09:57 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:09:57 [ 37] [ 12] [507900281388] +17:09:57 [ 39] [ 2] [14] +17:09:57 [ 41] [ 8] [10000100] +17:09:57 [ 49] [ 3] [418] +17:09:57 ============================================================================ +17:09:57 Calculate Source COMM Id = 1 +17:09:57 ============================================================================ +17:09:57 + + +waiting on router queue for slot.... +17:09:58 ============================================================================ +17:09:58 Slot Id : <42> +17:09:58 Transaction Type : REQUEST +17:09:58 Received From : +17:09:58 ============================================================================ +17:09:58 FNo. Len. Field Value +17:09:58 ============================================================================ +17:09:58 [ 1] [ 4] [0200] +17:09:58 [ 2] [ 16] [6688990103296503] +17:09:58 [ 3] [ 6] [010000] +17:09:58 [ 4] [ 12] [000070000000] +17:09:58 [ 7] [ 10] [0320170953] +17:09:58 [ 11] [ 6] [810988] +17:09:58 [ 12] [ 6] [170953] +17:09:58 [ 13] [ 4] [0320] +17:09:58 [ 15] [ 4] [0320] +17:09:58 [ 18] [ 4] [6011] +17:09:58 [ 22] [ 3] [900] +17:09:58 [ 25] [ 2] [02] +17:09:58 [ 28] [ 9] [D00002000] +17:09:58 [ 32] [ 6] [621354] +17:09:58 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:09:58 [ 37] [ 12] [507903499655] +17:09:58 [ 41] [ 8] [06002200] +17:09:58 [ 42] [ 15] [NATIVE ] +17:09:58 [ 43] [ 40] [Beng Market Beng LAO] +17:09:58 [ 49] [ 3] [418] +17:09:58 [ 52] [ 16] [A818A29183BF310F] +17:09:58 ============================================================================ +17:09:58 + + +waiting on router queue for slot.... +17:09:58 Sending to : +17:09:58 ============================================================================ +17:09:58 Sending to : +17:09:58 ============================================================================ +17:09:59 ============================================================================ +17:09:59 Slot Id : <42> +17:09:59 Transaction Type : REQUEST +17:09:59 Received From : +17:09:59 ============================================================================ +17:09:59 FNo. Len. Field Value +17:09:59 ============================================================================ +17:09:59 [ 1] [ 4] [0200] +17:09:59 [ 2] [ 16] [6688990103296503] +17:09:59 [ 3] [ 6] [010000] +17:09:59 [ 4] [ 12] [000070000000] +17:09:59 [ 7] [ 10] [0320170953] +17:09:59 [ 11] [ 6] [810988] +17:09:59 [ 12] [ 6] [170953] +17:09:59 [ 13] [ 4] [0320] +17:09:59 [ 15] [ 4] [0320] +17:09:59 [ 18] [ 4] [6011] +17:09:59 [ 22] [ 3] [900] +17:09:59 [ 25] [ 2] [02] +17:09:59 [ 28] [ 9] [D00002000] +17:09:59 [ 32] [ 6] [621354] +17:09:59 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:09:59 [ 37] [ 12] [507903499655] +17:09:59 [ 41] [ 8] [06002200] +17:09:59 [ 42] [ 15] [NATIVE ] +17:09:59 [ 43] [ 40] [Beng Market Beng LAO] +17:09:59 [ 49] [ 3] [418] +17:09:59 [ 52] [ 16] [A818A29183BF310F] +17:09:59 ============================================================================ +17:09:59 + + +waiting on router queue for slot.... +17:09:59 Sending to : +17:09:59 ============================================================================ +17:09:59 ============================================================================ +17:09:59 Slot Id : <42> +17:09:59 Transaction Type : REQUEST +17:09:59 Received From : +17:09:59 ============================================================================ +17:09:59 FNo. Len. Field Value +17:09:59 ============================================================================ +17:09:59 [ 1] [ 4] [0200] +17:09:59 [ 2] [ 16] [6688990103296503] +17:09:59 [ 3] [ 6] [010000] +17:09:59 [ 4] [ 12] [000070000000] +17:09:59 [ 7] [ 10] [0320170953] +17:09:59 [ 11] [ 6] [810988] +17:09:59 [ 12] [ 6] [170953] +17:09:59 [ 13] [ 4] [0320] +17:09:59 [ 15] [ 4] [0320] +17:09:59 [ 18] [ 4] [6011] +17:09:59 [ 22] [ 3] [900] +17:09:59 [ 25] [ 2] [02] +17:09:59 [ 28] [ 9] [D00002000] +17:09:59 [ 32] [ 6] [621354] +17:09:59 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:09:59 [ 37] [ 12] [507903499655] +17:09:59 [ 41] [ 8] [06002200] +17:09:59 [ 42] [ 15] [NATIVE ] +17:09:59 [ 43] [ 40] [Beng Market Beng LAO] +17:09:59 [ 49] [ 3] [418] +17:09:59 [ 52] [ 16] [8F803458ACBFD8E8] +17:09:59 ============================================================================ +17:09:59 + + +waiting on router queue for slot.... +17:09:59 Sending to : <4> +17:09:59 ============================================================================ +17:10:00 ============================================================================ +17:10:00 Slot Id : <42> +17:10:00 Transaction Type : RESPONSE +17:10:00 Received From : +17:10:00 ============================================================================ +17:10:00 FNo. Len. Field Value +17:10:00 ============================================================================ +17:10:00 [ 1] [ 4] [0210] +17:10:00 [ 2] [ 16] [6688990103296503] +17:10:00 [ 3] [ 6] [010000] +17:10:00 [ 4] [ 12] [000070000000] +17:10:00 [ 11] [ 6] [810988] +17:10:00 [ 12] [ 6] [170953] +17:10:00 [ 15] [ 4] [0320] +17:10:00 [ 18] [ 4] [6011] +17:10:00 [ 32] [ 6] [621354] +17:10:00 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:10:00 [ 37] [ 12] [507903499655] +17:10:00 [ 38] [ 6] [039026] +17:10:00 [ 39] [ 2] [00] +17:10:00 [ 41] [ 8] [06002200] +17:10:00 [ 49] [ 3] [418] +17:10:00 [ 54] [ 20] [0002418C000201530681] +17:10:00 ============================================================================ +17:10:00 Sending to : +17:10:00 ============================================================================ +17:10:00 + + +waiting on router queue for slot.... +17:10:00 ============================================================================ +17:10:00 Slot Id : <81> +17:10:00 Transaction Type : REQUEST +17:10:00 Received From : +17:10:00 ============================================================================ +17:10:00 FNo. Len. Field Value +17:10:00 ============================================================================ +17:10:00 [ 1] [ 4] [0200] +17:10:00 [ 2] [ 16] [6213544001919569] +17:10:00 [ 3] [ 6] [301000] +17:10:00 [ 4] [ 12] [000000000000] +17:10:00 [ 7] [ 10] [0320171020] +17:10:00 [ 11] [ 6] [209305] +17:10:00 [ 12] [ 6] [170613] +17:10:00 [ 13] [ 4] [0320] +17:10:00 [ 14] [ 4] [4912] +17:10:00 [ 15] [ 4] [0320] +17:10:00 [ 18] [ 4] [6011] +17:10:00 [ 19] [ 3] [418] +17:10:00 [ 22] [ 3] [021] +17:10:00 [ 25] [ 2] [01] +17:10:00 [ 28] [ 9] [D00000000] +17:10:00 [ 32] [ 6] [198901] +17:10:00 [ 35] [ 32] [6213544001919569=491212011956794] +17:10:00 [ 37] [ 12] [507917209305] +17:10:00 [ 41] [ 8] [00852902] +17:10:00 [ 42] [ 15] [000000040852902] +17:10:00 [ 43] [ 40] [ATM SAVANCH II VN ] +17:10:00 [ 49] [ 3] [418] +17:10:00 [ 52] [ 16] [C8FAF58BF1B23BA1] +17:10:00 ============================================================================ +17:10:00 + + +waiting on router queue for slot.... +17:10:00 Sending to : +17:10:00 ============================================================================ +17:10:00 Sending to : +17:10:00 ============================================================================ +17:10:00 ============================================================================ +17:10:00 Slot Id : <81> +17:10:00 Transaction Type : REQUEST +17:10:00 Received From : +17:10:00 ============================================================================ +17:10:00 FNo. Len. Field Value +17:10:00 ============================================================================ +17:10:00 [ 1] [ 4] [0200] +17:10:00 [ 2] [ 16] [6213544001919569] +17:10:00 [ 3] [ 6] [301000] +17:10:00 [ 4] [ 12] [000000000000] +17:10:00 [ 7] [ 10] [0320171020] +17:10:00 [ 11] [ 6] [209305] +17:10:00 [ 12] [ 6] [170613] +17:10:00 [ 13] [ 4] [0320] +17:10:00 [ 14] [ 4] [4912] +17:10:00 [ 15] [ 4] [0320] +17:10:00 [ 18] [ 4] [6011] +17:10:00 [ 19] [ 3] [418] +17:10:00 [ 22] [ 3] [021] +17:10:00 [ 25] [ 2] [01] +17:10:00 [ 28] [ 9] [D00000000] +17:10:00 [ 32] [ 6] [198901] +17:10:00 [ 35] [ 32] [6213544001919569=491212011956794] +17:10:00 [ 37] [ 12] [507917209305] +17:10:00 [ 41] [ 8] [00852902] +17:10:00 [ 42] [ 15] [000000040852902] +17:10:00 [ 43] [ 40] [ATM SAVANCH II VN ] +17:10:00 [ 49] [ 3] [418] +17:10:00 [ 52] [ 16] [C8FAF58BF1B23BA1] +17:10:00 ============================================================================ +17:10:00 + + +waiting on router queue for slot.... +17:10:00 Sending to : +17:10:00 ============================================================================ +17:10:00 ============================================================================ +17:10:00 Slot Id : <81> +17:10:00 Transaction Type : REQUEST +17:10:00 Received From : +17:10:00 ============================================================================ +17:10:00 FNo. Len. Field Value +17:10:00 ============================================================================ +17:10:00 [ 1] [ 4] [0200] +17:10:00 [ 2] [ 16] [6213544001919569] +17:10:00 [ 3] [ 6] [301000] +17:10:00 [ 4] [ 12] [000000000000] +17:10:00 [ 7] [ 10] [0320171020] +17:10:00 [ 11] [ 6] [209305] +17:10:00 [ 12] [ 6] [170613] +17:10:00 [ 13] [ 4] [0320] +17:10:00 [ 14] [ 4] [4912] +17:10:00 [ 15] [ 4] [0320] +17:10:00 [ 18] [ 4] [6011] +17:10:00 [ 19] [ 3] [418] +17:10:00 [ 22] [ 3] [021] +17:10:00 [ 25] [ 2] [01] +17:10:00 [ 28] [ 9] [D00000000] +17:10:00 [ 32] [ 6] [198901] +17:10:00 [ 35] [ 32] [6213544001919569=491212011956794] +17:10:00 [ 37] [ 12] [507917209305] +17:10:00 [ 41] [ 8] [00852902] +17:10:00 [ 42] [ 15] [000000040852902] +17:10:00 [ 43] [ 40] [ATM SAVANCH II VN ] +17:10:00 [ 49] [ 3] [418] +17:10:00 [ 52] [ 16] [9E160AB263EFC28D] +17:10:00 ============================================================================ +17:10:00 + + +waiting on router queue for slot.... +17:10:00 Sending to : <0> +17:10:00 ============================================================================ +17:10:01 ============================================================================ +17:10:01 Slot Id : <81> +17:10:01 Transaction Type : RESPONSE +17:10:01 Received From : +17:10:01 ============================================================================ +17:10:01 FNo. Len. Field Value +17:10:01 ============================================================================ +17:10:01 [ 1] [ 4] [0210] +17:10:01 [ 2] [ 16] [6213544001919569] +17:10:01 [ 3] [ 6] [301000] +17:10:01 [ 4] [ 12] [000000000000] +17:10:01 [ 7] [ 10] [0320171020] +17:10:01 [ 11] [ 6] [209305] +17:10:01 [ 12] [ 6] [170613] +17:10:01 [ 13] [ 4] [0320] +17:10:01 [ 15] [ 4] [0320] +17:10:01 [ 18] [ 4] [6011] +17:10:01 [ 19] [ 3] [418] +17:10:01 [ 32] [ 6] [198901] +17:10:01 [ 35] [ 32] [6213544001919569=491212011956794] +17:10:01 [ 37] [ 12] [507917209305] +17:10:01 [ 38] [ 6] [732592] +17:10:01 [ 39] [ 2] [00] +17:10:01 [ 41] [ 8] [00852902] +17:10:01 [ 49] [ 3] [418] +17:10:01 [ 54] [ 40] [1001418C0000563118841002418C000056311884] +17:10:01 ============================================================================ +17:10:01 Sending to : +17:10:01 ============================================================================ +17:10:01 + + +waiting on router queue for slot.... +17:10:01 ============================================================================ +17:10:01 Slot Id : <42> +17:10:01 Transaction Type : RESPONSE +17:10:01 Received From : +17:10:01 ============================================================================ +17:10:01 FNo. Len. Field Value +17:10:01 ============================================================================ +17:10:01 [ 1] [ 4] [0210] +17:10:01 [ 2] [ 16] [6688990103296503] +17:10:01 [ 3] [ 6] [010000] +17:10:01 [ 4] [ 12] [000070000000] +17:10:01 [ 11] [ 6] [810988] +17:10:01 [ 12] [ 6] [170953] +17:10:01 [ 15] [ 4] [0320] +17:10:01 [ 18] [ 4] [6011] +17:10:01 [ 32] [ 6] [621354] +17:10:01 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:10:01 [ 37] [ 12] [507903499655] +17:10:01 [ 38] [ 6] [039026] +17:10:01 [ 39] [ 2] [00] +17:10:01 [ 41] [ 8] [06002200] +17:10:01 [ 49] [ 3] [418] +17:10:01 [ 54] [ 20] [0002418C000201530681] +17:10:01 ============================================================================ +17:10:01 Calculate Source COMM Id = 0 +17:10:01 ============================================================================ +17:10:01 + + +waiting on router queue for slot.... +17:10:02 ============================================================================ +17:10:02 Slot Id : <34> +17:10:02 Transaction Type : REQUEST +17:10:02 Received From : +17:10:02 ============================================================================ +17:10:02 FNo. Len. Field Value +17:10:02 ============================================================================ +17:10:02 [ 1] [ 4] [0800] +17:10:02 [ 7] [ 10] [0320170949] +17:10:02 [ 11] [ 6] [098569] +17:10:02 [ 37] [ 12] [507917098569] +17:10:02 [ 70] [ 3] [ ] +17:10:02 ============================================================================ +17:10:02 + + +waiting on router queue for slot.... +17:10:02 Sending to : +17:10:02 ============================================================================ +17:10:02 ============================================================================ +17:10:02 Slot Id : <34> +17:10:02 Transaction Type : RESPONSE +17:10:02 Received From : +17:10:02 ============================================================================ +17:10:02 FNo. Len. Field Value +17:10:02 ============================================================================ +17:10:02 [ 1] [ 4] [0810] +17:10:02 [ 7] [ 10] [0320170949] +17:10:02 [ 11] [ 6] [098569] +17:10:02 [ 37] [ 12] [507917098569] +17:10:02 [ 39] [ 2] [91] +17:10:02 [ 70] [ 3] [ ] +17:10:02 ============================================================================ +17:10:02 Calculate Source COMM Id = 3 +17:10:02 ============================================================================ +17:10:02 + + +waiting on router queue for slot.... +17:10:02 ============================================================================ +17:10:02 Slot Id : <81> +17:10:02 Transaction Type : RESPONSE +17:10:02 Received From : +17:10:02 ============================================================================ +17:10:02 FNo. Len. Field Value +17:10:02 ============================================================================ +17:10:02 [ 1] [ 4] [0210] +17:10:02 [ 2] [ 16] [6213544001919569] +17:10:02 [ 3] [ 6] [301000] +17:10:02 [ 4] [ 12] [000000000000] +17:10:02 [ 7] [ 10] [0320171020] +17:10:02 [ 11] [ 6] [209305] +17:10:02 [ 12] [ 6] [170613] +17:10:02 [ 13] [ 4] [0320] +17:10:02 [ 15] [ 4] [0320] +17:10:02 [ 18] [ 4] [6011] +17:10:02 [ 19] [ 3] [418] +17:10:02 [ 32] [ 6] [198901] +17:10:02 [ 35] [ 32] [6213544001919569=491212011956794] +17:10:02 [ 37] [ 12] [507917209305] +17:10:02 [ 38] [ 6] [732592] +17:10:02 [ 39] [ 2] [00] +17:10:02 [ 41] [ 8] [00852902] +17:10:02 [ 49] [ 3] [418] +17:10:02 [ 54] [ 40] [1001418C0000563118841002418C000056311884] +17:10:02 ============================================================================ +17:10:02 Calculate Source COMM Id = 5 +17:10:02 ============================================================================ +17:10:02 + + +waiting on router queue for slot.... +17:10:03 ============================================================================ +17:10:03 Slot Id : <88> +17:10:03 Transaction Type : REQUEST +17:10:03 Received From : +17:10:03 ============================================================================ +17:10:03 FNo. Len. Field Value +17:10:03 ============================================================================ +17:10:03 [ 1] [ 4] [0200] +17:10:03 [ 2] [ 16] [6213544002113451] +17:10:03 [ 3] [ 6] [010000] +17:10:03 [ 4] [ 12] [000050000000] +17:10:03 [ 7] [ 10] [0320170753] +17:10:03 [ 11] [ 6] [953010] +17:10:03 [ 12] [ 6] [170753] +17:10:03 [ 13] [ 4] [0320] +17:10:03 [ 15] [ 4] [0320] +17:10:03 [ 18] [ 4] [6011] +17:10:03 [ 19] [ 3] [418] +17:10:03 [ 22] [ 3] [021] +17:10:03 [ 25] [ 2] [01] +17:10:03 [ 28] [ 9] [D00002000] +17:10:03 [ 32] [ 6] [668899] +17:10:03 [ 35] [ 32] [6213544002113451=491212011345608] +17:10:03 [ 37] [ 12] [507902025664] +17:10:03 [ 41] [ 8] [03414002] +17:10:03 [ 42] [ 15] [APT ] +17:10:03 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:10:03 [ 49] [ 3] [418] +17:10:03 [ 52] [ 16] [F90EA863C18C5F51] +17:10:03 ============================================================================ +17:10:03 + + +waiting on router queue for slot.... +17:10:03 Sending to : +17:10:03 ============================================================================ +17:10:03 Sending to : +17:10:03 ============================================================================ +17:10:04 ============================================================================ +17:10:04 Slot Id : <88> +17:10:04 Transaction Type : REQUEST +17:10:04 Received From : +17:10:04 ============================================================================ +17:10:04 FNo. Len. Field Value +17:10:04 ============================================================================ +17:10:04 [ 1] [ 4] [0200] +17:10:04 [ 2] [ 16] [6213544002113451] +17:10:04 [ 3] [ 6] [010000] +17:10:04 [ 4] [ 12] [000050000000] +17:10:04 [ 7] [ 10] [0320170753] +17:10:04 [ 11] [ 6] [953010] +17:10:04 [ 12] [ 6] [170753] +17:10:04 [ 13] [ 4] [0320] +17:10:04 [ 15] [ 4] [0320] +17:10:04 [ 18] [ 4] [6011] +17:10:04 [ 19] [ 3] [418] +17:10:04 [ 22] [ 3] [021] +17:10:04 [ 25] [ 2] [01] +17:10:04 [ 28] [ 9] [D00002000] +17:10:04 [ 32] [ 6] [668899] +17:10:04 [ 35] [ 32] [6213544002113451=491212011345608] +17:10:04 [ 37] [ 12] [507902025664] +17:10:04 [ 41] [ 8] [03414002] +17:10:04 [ 42] [ 15] [APT ] +17:10:04 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:10:04 [ 49] [ 3] [418] +17:10:04 [ 52] [ 16] [F90EA863C18C5F51] +17:10:04 ============================================================================ +17:10:04 + + +waiting on router queue for slot.... +17:10:04 Sending to : +17:10:04 ============================================================================ +17:10:04 ============================================================================ +17:10:04 Slot Id : <88> +17:10:04 Transaction Type : REQUEST +17:10:04 Received From : +17:10:04 ============================================================================ +17:10:04 FNo. Len. Field Value +17:10:04 ============================================================================ +17:10:04 [ 1] [ 4] [0200] +17:10:04 [ 2] [ 16] [6213544002113451] +17:10:04 [ 3] [ 6] [010000] +17:10:04 [ 4] [ 12] [000050000000] +17:10:04 [ 7] [ 10] [0320170753] +17:10:04 [ 11] [ 6] [953010] +17:10:04 [ 12] [ 6] [170753] +17:10:04 [ 13] [ 4] [0320] +17:10:04 [ 15] [ 4] [0320] +17:10:04 [ 18] [ 4] [6011] +17:10:04 [ 19] [ 3] [418] +17:10:04 [ 22] [ 3] [021] +17:10:04 [ 25] [ 2] [01] +17:10:04 [ 28] [ 9] [D00002000] +17:10:04 [ 32] [ 6] [668899] +17:10:04 [ 35] [ 32] [6213544002113451=491212011345608] +17:10:04 [ 37] [ 12] [507902025664] +17:10:04 [ 41] [ 8] [03414002] +17:10:04 [ 42] [ 15] [APT ] +17:10:04 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:10:04 [ 49] [ 3] [418] +17:10:04 [ 52] [ 16] [E97B30815F3B4E48] +17:10:04 ============================================================================ +17:10:04 + + +waiting on router queue for slot.... +17:10:04 Sending to : <0> +17:10:04 ============================================================================ +17:10:04 ============================================================================ +17:10:04 Slot Id : <89> +17:10:04 Transaction Type : REQUEST +17:10:04 Received From : +17:10:04 ============================================================================ +17:10:04 FNo. Len. Field Value +17:10:04 ============================================================================ +17:10:04 [ 1] [ 4] [0200] +17:10:04 [ 2] [ 16] [6213544001135638] +17:10:04 [ 3] [ 6] [011000] +17:10:04 [ 4] [ 12] [000047000000] +17:10:04 [ 7] [ 10] [0320171751] +17:10:04 [ 11] [ 6] [010429] +17:10:04 [ 12] [ 6] [171751] +17:10:04 [ 13] [ 4] [0320] +17:10:04 [ 14] [ 4] [4912] +17:10:04 [ 15] [ 4] [0320] +17:10:04 [ 18] [ 4] [6011] +17:10:04 [ 22] [ 3] [900] +17:10:04 [ 25] [ 2] [02] +17:10:04 [ 28] [ 9] [D00002000] +17:10:04 [ 32] [ 6] [220699] +17:10:04 [ 35] [ 32] [6213544001135638=491212013563242] +17:10:04 [ 37] [ 12] [507900220658] +17:10:04 [ 41] [ 8] [05000200] +17:10:04 [ 42] [ 15] [APTRA ] +17:10:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:10:04 [ 49] [ 3] [418] +17:10:04 [ 52] [ 16] [8570B53E902B122F] +17:10:04 ============================================================================ +17:10:04 + + +waiting on router queue for slot.... +17:10:04 Sending to : +17:10:04 ============================================================================ +17:10:04 Sending to : +17:10:04 ============================================================================ +17:10:05 ============================================================================ +17:10:05 Slot Id : <88> +17:10:05 Transaction Type : RESPONSE +17:10:05 Received From : +17:10:05 ============================================================================ +17:10:05 FNo. Len. Field Value +17:10:05 ============================================================================ +17:10:05 [ 1] [ 4] [0210] +17:10:05 [ 2] [ 16] [6213544002113451] +17:10:05 [ 3] [ 6] [010000] +17:10:05 [ 4] [ 12] [000050000000] +17:10:05 [ 7] [ 10] [0320170753] +17:10:05 [ 11] [ 6] [953010] +17:10:05 [ 12] [ 6] [170753] +17:10:05 [ 13] [ 4] [0320] +17:10:05 [ 15] [ 4] [0320] +17:10:05 [ 18] [ 4] [6011] +17:10:05 [ 19] [ 3] [418] +17:10:05 [ 32] [ 6] [668899] +17:10:05 [ 35] [ 32] [6213544002113451=491212011345608] +17:10:05 [ 37] [ 12] [507902025664] +17:10:05 [ 38] [ 6] [318834] +17:10:05 [ 39] [ 2] [00] +17:10:05 [ 41] [ 8] [03414002] +17:10:05 [ 49] [ 3] [418] +17:10:05 [ 54] [ 40] [0001418C0000144940560002418C000014494056] +17:10:05 ============================================================================ +17:10:05 Sending to : +17:10:05 ============================================================================ +17:10:05 + + +waiting on router queue for slot.... +17:10:05 ============================================================================ +17:10:05 Slot Id : <89> +17:10:05 Transaction Type : REQUEST +17:10:05 Received From : +17:10:05 ============================================================================ +17:10:05 FNo. Len. Field Value +17:10:05 ============================================================================ +17:10:05 [ 1] [ 4] [0200] +17:10:05 [ 2] [ 16] [6213544001135638] +17:10:05 [ 3] [ 6] [011000] +17:10:05 [ 4] [ 12] [000047000000] +17:10:05 [ 7] [ 10] [0320171751] +17:10:05 [ 11] [ 6] [010429] +17:10:05 [ 12] [ 6] [171751] +17:10:05 [ 13] [ 4] [0320] +17:10:05 [ 14] [ 4] [4912] +17:10:05 [ 15] [ 4] [0320] +17:10:05 [ 18] [ 4] [6011] +17:10:05 [ 22] [ 3] [900] +17:10:05 [ 25] [ 2] [02] +17:10:05 [ 28] [ 9] [D00002000] +17:10:05 [ 32] [ 6] [220699] +17:10:05 [ 35] [ 32] [6213544001135638=491212013563242] +17:10:05 [ 37] [ 12] [507900220658] +17:10:05 [ 41] [ 8] [05000200] +17:10:05 [ 42] [ 15] [APTRA ] +17:10:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:10:05 [ 49] [ 3] [418] +17:10:05 [ 52] [ 16] [8570B53E902B122F] +17:10:05 ============================================================================ +17:10:05 + + +waiting on router queue for slot.... +17:10:05 Sending to : +17:10:05 ============================================================================ +17:10:05 ============================================================================ +17:10:05 Slot Id : <89> +17:10:05 Transaction Type : REQUEST +17:10:05 Received From : +17:10:05 ============================================================================ +17:10:05 FNo. Len. Field Value +17:10:05 ============================================================================ +17:10:05 [ 1] [ 4] [0200] +17:10:05 [ 2] [ 16] [6213544001135638] +17:10:05 [ 3] [ 6] [011000] +17:10:05 [ 4] [ 12] [000047000000] +17:10:05 [ 7] [ 10] [0320171751] +17:10:05 [ 11] [ 6] [010429] +17:10:05 [ 12] [ 6] [171751] +17:10:05 [ 13] [ 4] [0320] +17:10:05 [ 14] [ 4] [4912] +17:10:05 [ 15] [ 4] [0320] +17:10:05 [ 18] [ 4] [6011] +17:10:05 [ 22] [ 3] [900] +17:10:05 [ 25] [ 2] [02] +17:10:05 [ 28] [ 9] [D00002000] +17:10:05 [ 32] [ 6] [220699] +17:10:05 [ 35] [ 32] [6213544001135638=491212013563242] +17:10:05 [ 37] [ 12] [507900220658] +17:10:05 [ 41] [ 8] [05000200] +17:10:05 [ 42] [ 15] [APTRA ] +17:10:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:10:05 [ 49] [ 3] [418] +17:10:05 [ 52] [ 16] [8D0B34368F280294] +17:10:05 ============================================================================ +17:10:05 + + +waiting on router queue for slot.... +17:10:05 Sending to : <0> +17:10:05 ============================================================================ +17:10:06 ============================================================================ +17:10:06 Slot Id : <89> +17:10:06 Transaction Type : RESPONSE +17:10:06 Received From : +17:10:06 ============================================================================ +17:10:06 FNo. Len. Field Value +17:10:06 ============================================================================ +17:10:06 [ 1] [ 4] [0210] +17:10:06 [ 2] [ 16] [6213544001135638] +17:10:06 [ 3] [ 6] [011000] +17:10:06 [ 4] [ 12] [000047000000] +17:10:06 [ 7] [ 10] [0320171751] +17:10:06 [ 11] [ 6] [010429] +17:10:06 [ 12] [ 6] [171751] +17:10:06 [ 13] [ 4] [0320] +17:10:06 [ 15] [ 4] [0320] +17:10:06 [ 18] [ 4] [6011] +17:10:06 [ 32] [ 6] [220699] +17:10:06 [ 35] [ 32] [6213544001135638=491212013563242] +17:10:06 [ 37] [ 12] [507900220658] +17:10:06 [ 38] [ 6] [213969] +17:10:06 [ 39] [ 2] [00] +17:10:06 [ 41] [ 8] [05000200] +17:10:06 [ 49] [ 3] [418] +17:10:06 [ 54] [ 40] [1001418C0000129925991002418C000012992599] +17:10:06 ============================================================================ +17:10:06 Sending to : +17:10:06 ============================================================================ +17:10:06 + + +waiting on router queue for slot.... +17:10:07 ============================================================================ +17:10:07 Slot Id : <88> +17:10:07 Transaction Type : RESPONSE +17:10:07 Received From : +17:10:07 ============================================================================ +17:10:07 FNo. Len. Field Value +17:10:07 ============================================================================ +17:10:07 [ 1] [ 4] [0210] +17:10:07 [ 2] [ 16] [6213544002113451] +17:10:07 [ 3] [ 6] [010000] +17:10:07 [ 4] [ 12] [000050000000] +17:10:07 [ 7] [ 10] [0320170753] +17:10:07 [ 11] [ 6] [953010] +17:10:07 [ 12] [ 6] [170753] +17:10:07 [ 13] [ 4] [0320] +17:10:07 [ 15] [ 4] [0320] +17:10:07 [ 18] [ 4] [6011] +17:10:07 [ 19] [ 3] [418] +17:10:07 [ 32] [ 6] [668899] +17:10:07 [ 35] [ 32] [6213544002113451=491212011345608] +17:10:07 [ 37] [ 12] [507902025664] +17:10:07 [ 38] [ 6] [318834] +17:10:07 [ 39] [ 2] [00] +17:10:07 [ 41] [ 8] [03414002] +17:10:07 [ 49] [ 3] [418] +17:10:07 [ 54] [ 40] [0001418C0000144940560002418C000014494056] +17:10:07 ============================================================================ +17:10:07 Calculate Source COMM Id = 4 +17:10:07 ============================================================================ +17:10:07 + + +waiting on router queue for slot.... +17:10:08 ============================================================================ +17:10:08 Slot Id : <89> +17:10:08 Transaction Type : RESPONSE +17:10:08 Received From : +17:10:08 ============================================================================ +17:10:08 FNo. Len. Field Value +17:10:08 ============================================================================ +17:10:08 [ 1] [ 4] [0210] +17:10:08 [ 2] [ 16] [6213544001135638] +17:10:08 [ 3] [ 6] [011000] +17:10:08 [ 4] [ 12] [000047000000] +17:10:08 [ 7] [ 10] [0320171751] +17:10:08 [ 11] [ 6] [010429] +17:10:08 [ 12] [ 6] [171751] +17:10:08 [ 13] [ 4] [0320] +17:10:08 [ 15] [ 4] [0320] +17:10:08 [ 18] [ 4] [6011] +17:10:08 [ 32] [ 6] [220699] +17:10:08 [ 35] [ 32] [6213544001135638=491212013563242] +17:10:08 [ 37] [ 12] [507900220658] +17:10:08 [ 38] [ 6] [213969] +17:10:08 [ 39] [ 2] [00] +17:10:08 [ 41] [ 8] [05000200] +17:10:08 [ 49] [ 3] [418] +17:10:08 [ 54] [ 40] [1001418C0000129925991002418C000012992599] +17:10:08 ============================================================================ +17:10:08 Calculate Source COMM Id = 1 +17:10:08 ============================================================================ +17:10:08 + + +waiting on router queue for slot.... +17:10:08 ============================================================================ +17:10:08 Slot Id : <86> +17:10:08 Transaction Type : REQUEST +17:10:08 Received From : +17:10:08 ============================================================================ +17:10:08 FNo. Len. Field Value +17:10:08 ============================================================================ +17:10:08 [ 1] [ 4] [0800] +17:10:08 [ 7] [ 10] [0320100915] +17:10:08 [ 11] [ 6] [157394] +17:10:08 [ 70] [ 3] [301] +17:10:08 ============================================================================ +17:10:08 + + +waiting on router queue for slot.... +17:10:08 Sending to : +17:10:08 ============================================================================ +17:10:08 ============================================================================ +17:10:08 Slot Id : <86> +17:10:08 Transaction Type : RESPONSE +17:10:08 Received From : +17:10:08 ============================================================================ +17:10:08 FNo. Len. Field Value +17:10:08 ============================================================================ +17:10:08 [ 1] [ 4] [0810] +17:10:08 [ 7] [ 10] [0320100915] +17:10:08 [ 11] [ 6] [157394] +17:10:08 [ 39] [ 2] [00] +17:10:08 [ 70] [ 3] [301] +17:10:08 ============================================================================ +17:10:08 Calculate Source COMM Id = 2 +17:10:08 ============================================================================ +17:10:08 + + +waiting on router queue for slot.... +17:10:10 ============================================================================ +17:10:10 Slot Id : <59> +17:10:10 Transaction Type : REQUEST +17:10:10 Received From : +17:10:10 ============================================================================ +17:10:10 FNo. Len. Field Value +17:10:10 ============================================================================ +17:10:10 [ 1] [ 4] [0800] +17:10:10 [ 7] [ 10] [0321002159] +17:10:10 [ 11] [ 6] [172159] +17:10:10 [ 37] [ 12] [57917172159] +17:10:10 [ 70] [ 3] [301] +17:10:10 ============================================================================ +17:10:10 + + +waiting on router queue for slot.... +17:10:10 Sending to : +17:10:10 ============================================================================ +17:10:10 ============================================================================ +17:10:10 Slot Id : <59> +17:10:10 Transaction Type : RESPONSE +17:10:10 Received From : +17:10:10 ============================================================================ +17:10:10 FNo. Len. Field Value +17:10:10 ============================================================================ +17:10:10 [ 1] [ 4] [0810] +17:10:10 [ 7] [ 10] [0321002159] +17:10:10 [ 11] [ 6] [172159] +17:10:10 [ 37] [ 12] [579171721590] +17:10:10 [ 39] [ 2] [00] +17:10:10 [ 70] [ 3] [810] +17:10:10 ============================================================================ +17:10:10 Calculate Source COMM Id = 6 +17:10:10 ============================================================================ +17:10:10 + + +waiting on router queue for slot.... +17:10:12 ============================================================================ +17:10:12 Slot Id : <79> +17:10:12 Transaction Type : REQUEST +17:10:12 Received From : +17:10:12 ============================================================================ +17:10:12 FNo. Len. Field Value +17:10:12 ============================================================================ +17:10:12 [ 1] [ 4] [0200] +17:10:12 [ 2] [ 16] [6213544002118104] +17:10:12 [ 3] [ 6] [011000] +17:10:12 [ 4] [ 12] [000020000000] +17:10:12 [ 7] [ 10] [0320171032] +17:10:12 [ 11] [ 6] [209309] +17:10:12 [ 12] [ 6] [170538] +17:10:12 [ 13] [ 4] [0320] +17:10:12 [ 14] [ 4] [4912] +17:10:12 [ 15] [ 4] [0320] +17:10:12 [ 18] [ 4] [6011] +17:10:12 [ 19] [ 3] [418] +17:10:12 [ 22] [ 3] [021] +17:10:12 [ 25] [ 2] [01] +17:10:12 [ 28] [ 9] [D00002000] +17:10:12 [ 32] [ 6] [198901] +17:10:12 [ 35] [ 32] [6213544002118104=491212011810333] +17:10:12 [ 37] [ 12] [507917209309] +17:10:12 [ 41] [ 8] [19529001] +17:10:12 [ 42] [ 15] [000000041952901] +17:10:12 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:10:12 [ 49] [ 3] [418] +17:10:12 [ 52] [ 16] [498D43EEF3404D81] +17:10:12 ============================================================================ +17:10:12 + + +waiting on router queue for slot.... +17:10:12 Sending to : +17:10:12 ============================================================================ +17:10:12 Sending to : +17:10:12 ============================================================================ +17:10:12 ============================================================================ +17:10:12 Slot Id : <79> +17:10:12 Transaction Type : REQUEST +17:10:12 Received From : +17:10:12 ============================================================================ +17:10:12 FNo. Len. Field Value +17:10:12 ============================================================================ +17:10:12 [ 1] [ 4] [0200] +17:10:12 [ 2] [ 16] [6213544002118104] +17:10:12 [ 3] [ 6] [011000] +17:10:12 [ 4] [ 12] [000020000000] +17:10:12 [ 7] [ 10] [0320171032] +17:10:12 [ 11] [ 6] [209309] +17:10:12 [ 12] [ 6] [170538] +17:10:12 [ 13] [ 4] [0320] +17:10:12 [ 14] [ 4] [4912] +17:10:12 [ 15] [ 4] [0320] +17:10:12 [ 18] [ 4] [6011] +17:10:12 [ 19] [ 3] [418] +17:10:12 [ 22] [ 3] [021] +17:10:12 [ 25] [ 2] [01] +17:10:12 [ 28] [ 9] [D00002000] +17:10:12 [ 32] [ 6] [198901] +17:10:12 [ 35] [ 32] [6213544002118104=491212011810333] +17:10:12 [ 37] [ 12] [507917209309] +17:10:12 [ 41] [ 8] [19529001] +17:10:12 [ 42] [ 15] [000000041952901] +17:10:12 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:10:12 [ 49] [ 3] [418] +17:10:12 [ 52] [ 16] [498D43EEF3404D81] +17:10:12 ============================================================================ +17:10:12 + + +waiting on router queue for slot.... +17:10:12 Sending to : +17:10:12 ============================================================================ +17:10:12 ============================================================================ +17:10:12 Slot Id : <79> +17:10:12 Transaction Type : REQUEST +17:10:12 Received From : +17:10:12 ============================================================================ +17:10:12 FNo. Len. Field Value +17:10:12 ============================================================================ +17:10:12 [ 1] [ 4] [0200] +17:10:12 [ 2] [ 16] [6213544002118104] +17:10:12 [ 3] [ 6] [011000] +17:10:12 [ 4] [ 12] [000020000000] +17:10:12 [ 7] [ 10] [0320171032] +17:10:12 [ 11] [ 6] [209309] +17:10:12 [ 12] [ 6] [170538] +17:10:12 [ 13] [ 4] [0320] +17:10:12 [ 14] [ 4] [4912] +17:10:12 [ 15] [ 4] [0320] +17:10:12 [ 18] [ 4] [6011] +17:10:12 [ 19] [ 3] [418] +17:10:12 [ 22] [ 3] [021] +17:10:12 [ 25] [ 2] [01] +17:10:12 [ 28] [ 9] [D00002000] +17:10:12 [ 32] [ 6] [198901] +17:10:12 [ 35] [ 32] [6213544002118104=491212011810333] +17:10:12 [ 37] [ 12] [507917209309] +17:10:12 [ 41] [ 8] [19529001] +17:10:12 [ 42] [ 15] [000000041952901] +17:10:12 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:10:12 [ 49] [ 3] [418] +17:10:12 [ 52] [ 16] [6898C6CA138C1645] +17:10:12 ============================================================================ +17:10:12 + + +waiting on router queue for slot.... +17:10:12 Sending to : <0> +17:10:12 ============================================================================ +17:10:12 ============================================================================ +17:10:12 Slot Id : <79> +17:10:12 Transaction Type : RESPONSE +17:10:12 Received From : +17:10:12 ============================================================================ +17:10:12 FNo. Len. Field Value +17:10:12 ============================================================================ +17:10:12 [ 1] [ 4] [0210] +17:10:12 [ 2] [ 16] [6213544002118104] +17:10:12 [ 3] [ 6] [011000] +17:10:12 [ 4] [ 12] [000020000000] +17:10:12 [ 7] [ 10] [0320171032] +17:10:12 [ 11] [ 6] [209309] +17:10:12 [ 12] [ 6] [170538] +17:10:12 [ 13] [ 4] [0320] +17:10:12 [ 15] [ 4] [0320] +17:10:12 [ 18] [ 4] [6011] +17:10:12 [ 19] [ 3] [418] +17:10:12 [ 22] [ 3] [021] +17:10:12 [ 32] [ 6] [198901] +17:10:12 [ 35] [ 32] [6213544002118104=491212011810333] +17:10:12 [ 37] [ 12] [507917209309] +17:10:12 [ 38] [ 6] [171007] +17:10:12 [ 39] [ 2] [55] +17:10:12 [ 41] [ 8] [19529001] +17:10:12 [ 49] [ 3] [418] +17:10:12 ============================================================================ +17:10:12 Sending to : +17:10:12 ============================================================================ +17:10:12 + + +waiting on router queue for slot.... +17:10:13 ============================================================================ +17:10:13 Slot Id : <79> +17:10:13 Transaction Type : RESPONSE +17:10:13 Received From : +17:10:13 ============================================================================ +17:10:13 FNo. Len. Field Value +17:10:13 ============================================================================ +17:10:13 [ 1] [ 4] [0210] +17:10:13 [ 2] [ 16] [6213544002118104] +17:10:13 [ 3] [ 6] [011000] +17:10:13 [ 4] [ 12] [000020000000] +17:10:13 [ 7] [ 10] [0320171032] +17:10:13 [ 11] [ 6] [209309] +17:10:13 [ 12] [ 6] [170538] +17:10:13 [ 13] [ 4] [0320] +17:10:13 [ 15] [ 4] [0320] +17:10:13 [ 18] [ 4] [6011] +17:10:13 [ 19] [ 3] [418] +17:10:13 [ 22] [ 3] [021] +17:10:13 [ 32] [ 6] [198901] +17:10:13 [ 35] [ 32] [6213544002118104=491212011810333] +17:10:13 [ 37] [ 12] [507917209309] +17:10:13 [ 38] [ 6] [171007] +17:10:13 [ 39] [ 2] [55] +17:10:13 [ 41] [ 8] [19529001] +17:10:13 [ 49] [ 3] [418] +17:10:13 ============================================================================ +17:10:13 Calculate Source COMM Id = 5 +17:10:13 ============================================================================ +17:10:13 + + +waiting on router queue for slot.... +17:10:14 ============================================================================ +17:10:14 Slot Id : <84> +17:10:14 Transaction Type : REQUEST +17:10:14 Received From : +17:10:14 ============================================================================ +17:10:14 FNo. Len. Field Value +17:10:14 ============================================================================ +17:10:14 [ 1] [ 4] [0200] +17:10:14 [ 2] [ 16] [6688990100962206] +17:10:14 [ 3] [ 6] [010000] +17:10:14 [ 4] [ 12] [000100000000] +17:10:14 [ 7] [ 10] [0320100921] +17:10:14 [ 11] [ 6] [270730] +17:10:14 [ 12] [ 6] [170920] +17:10:14 [ 13] [ 4] [0320] +17:10:14 [ 14] [ 4] [4112] +17:10:14 [ 15] [ 4] [0320] +17:10:14 [ 18] [ 4] [6011] +17:10:14 [ 19] [ 3] [418] +17:10:14 [ 22] [ 3] [021] +17:10:14 [ 25] [ 2] [01] +17:10:14 [ 28] [ 9] [D00002000] +17:10:14 [ 32] [ 6] [180893] +17:10:14 [ 35] [ 37] [6688990100962206=41121231220618500000] +17:10:14 [ 37] [ 12] [507910270730] +17:10:14 [ 41] [ 8] [0467PSLK] +17:10:14 [ 42] [ 15] [999999 ] +17:10:14 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:10:14 [ 49] [ 3] [418] +17:10:14 [ 52] [ 16] [F08A842573FC776B] +17:10:14 ============================================================================ +17:10:14 + + +waiting on router queue for slot.... +17:10:14 Sending to : +17:10:14 ============================================================================ +17:10:14 Sending to : +17:10:14 ============================================================================ +17:10:14 ============================================================================ +17:10:14 Slot Id : <84> +17:10:14 Transaction Type : REQUEST +17:10:14 Received From : +17:10:14 ============================================================================ +17:10:14 FNo. Len. Field Value +17:10:14 ============================================================================ +17:10:14 [ 1] [ 4] [0200] +17:10:14 [ 2] [ 16] [6688990100962206] +17:10:14 [ 3] [ 6] [010000] +17:10:14 [ 4] [ 12] [000100000000] +17:10:14 [ 7] [ 10] [0320100921] +17:10:14 [ 11] [ 6] [270730] +17:10:14 [ 12] [ 6] [170920] +17:10:14 [ 13] [ 4] [0320] +17:10:14 [ 14] [ 4] [4112] +17:10:14 [ 15] [ 4] [0320] +17:10:14 [ 18] [ 4] [6011] +17:10:14 [ 19] [ 3] [418] +17:10:14 [ 22] [ 3] [021] +17:10:14 [ 25] [ 2] [01] +17:10:14 [ 28] [ 9] [D00002000] +17:10:14 [ 32] [ 6] [180893] +17:10:14 [ 35] [ 37] [6688990100962206=41121231220618500000] +17:10:14 [ 37] [ 12] [507910270730] +17:10:14 [ 41] [ 8] [0467PSLK] +17:10:14 [ 42] [ 15] [999999 ] +17:10:14 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:10:14 [ 49] [ 3] [418] +17:10:14 [ 52] [ 16] [F08A842573FC776B] +17:10:14 ============================================================================ +17:10:14 + + +waiting on router queue for slot.... +17:10:14 Sending to : +17:10:14 ============================================================================ +17:10:14 ============================================================================ +17:10:14 Slot Id : <84> +17:10:14 Transaction Type : REQUEST +17:10:14 Received From : +17:10:14 ============================================================================ +17:10:14 FNo. Len. Field Value +17:10:14 ============================================================================ +17:10:14 [ 1] [ 4] [0200] +17:10:14 [ 2] [ 16] [6688990100962206] +17:10:14 [ 3] [ 6] [010000] +17:10:14 [ 4] [ 12] [000100000000] +17:10:14 [ 7] [ 10] [0320100921] +17:10:14 [ 11] [ 6] [270730] +17:10:14 [ 12] [ 6] [170920] +17:10:14 [ 13] [ 4] [0320] +17:10:14 [ 14] [ 4] [4112] +17:10:14 [ 15] [ 4] [0320] +17:10:14 [ 18] [ 4] [6011] +17:10:14 [ 19] [ 3] [418] +17:10:14 [ 22] [ 3] [021] +17:10:14 [ 25] [ 2] [01] +17:10:14 [ 28] [ 9] [D00002000] +17:10:14 [ 32] [ 6] [180893] +17:10:14 [ 35] [ 37] [6688990100962206=41121231220618500000] +17:10:14 [ 37] [ 12] [507910270730] +17:10:14 [ 41] [ 8] [0467PSLK] +17:10:14 [ 42] [ 15] [999999 ] +17:10:14 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:10:14 [ 49] [ 3] [418] +17:10:14 [ 52] [ 16] [0A0818B6426E8A53] +17:10:14 ============================================================================ +17:10:14 + + +waiting on router queue for slot.... +17:10:14 Sending to : <0> +17:10:14 ============================================================================ +17:10:15 ============================================================================ +17:10:15 Slot Id : <84> +17:10:15 Transaction Type : RESPONSE +17:10:15 Received From : +17:10:15 ============================================================================ +17:10:15 FNo. Len. Field Value +17:10:15 ============================================================================ +17:10:15 [ 1] [ 4] [0210] +17:10:15 [ 2] [ 16] [6688990100962206] +17:10:15 [ 3] [ 6] [010000] +17:10:15 [ 4] [ 12] [000100000000] +17:10:15 [ 7] [ 10] [0320100921] +17:10:15 [ 11] [ 6] [270730] +17:10:15 [ 12] [ 6] [170920] +17:10:15 [ 13] [ 4] [0320] +17:10:15 [ 15] [ 4] [0320] +17:10:15 [ 18] [ 4] [6011] +17:10:15 [ 19] [ 3] [418] +17:10:15 [ 22] [ 3] [021] +17:10:15 [ 32] [ 6] [180893] +17:10:15 [ 35] [ 37] [6688990100962206=41121231220618500000] +17:10:15 [ 37] [ 12] [507910270730] +17:10:15 [ 39] [ 2] [14] +17:10:15 [ 41] [ 8] [0467PSLK] +17:10:15 [ 49] [ 3] [418] +17:10:15 ============================================================================ +17:10:15 Sending to : +17:10:15 ============================================================================ +17:10:15 + + +waiting on router queue for slot.... +17:10:16 ============================================================================ +17:10:16 Slot Id : <84> +17:10:16 Transaction Type : RESPONSE +17:10:16 Received From : +17:10:16 ============================================================================ +17:10:16 FNo. Len. Field Value +17:10:16 ============================================================================ +17:10:16 [ 1] [ 4] [0210] +17:10:16 [ 2] [ 16] [6688990100962206] +17:10:16 [ 3] [ 6] [010000] +17:10:16 [ 4] [ 12] [000100000000] +17:10:16 [ 7] [ 10] [0320100921] +17:10:16 [ 11] [ 6] [270730] +17:10:16 [ 12] [ 6] [170920] +17:10:16 [ 13] [ 4] [0320] +17:10:16 [ 15] [ 4] [0320] +17:10:16 [ 18] [ 4] [6011] +17:10:16 [ 19] [ 3] [418] +17:10:16 [ 22] [ 3] [021] +17:10:16 [ 32] [ 6] [180893] +17:10:16 [ 35] [ 37] [6688990100962206=41121231220618500000] +17:10:16 [ 37] [ 12] [507910270730] +17:10:16 [ 39] [ 2] [14] +17:10:16 [ 41] [ 8] [0467PSLK] +17:10:16 [ 49] [ 3] [418] +17:10:16 ============================================================================ +17:10:16 Calculate Source COMM Id = 2 +17:10:16 ============================================================================ +17:10:16 + + +waiting on router queue for slot.... +17:10:19 ============================================================================ +17:10:19 Slot Id : <5> +17:10:19 Transaction Type : REQUEST +17:10:19 Received From : +17:10:19 ============================================================================ +17:10:19 FNo. Len. Field Value +17:10:19 ============================================================================ +17:10:19 [ 1] [ 4] [0200] +17:10:19 [ 2] [ 16] [6213544001465472] +17:10:19 [ 3] [ 6] [010000] +17:10:19 [ 4] [ 12] [000100000000] +17:10:19 [ 7] [ 10] [0320170809] +17:10:19 [ 11] [ 6] [953020] +17:10:19 [ 12] [ 6] [170809] +17:10:19 [ 13] [ 4] [0320] +17:10:19 [ 15] [ 4] [0320] +17:10:19 [ 18] [ 4] [6011] +17:10:19 [ 19] [ 3] [418] +17:10:19 [ 22] [ 3] [021] +17:10:19 [ 25] [ 2] [01] +17:10:19 [ 28] [ 9] [D00002000] +17:10:19 [ 32] [ 6] [668899] +17:10:19 [ 35] [ 32] [6213544001465472=491212016547762] +17:10:19 [ 37] [ 12] [507902161285] +17:10:19 [ 41] [ 8] [03020026] +17:10:19 [ 42] [ 15] [APT ] +17:10:19 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +17:10:19 [ 49] [ 3] [418] +17:10:19 [ 52] [ 16] [A904AF327003B06E] +17:10:19 ============================================================================ +17:10:19 + + +waiting on router queue for slot.... +17:10:19 Sending to : +17:10:19 ============================================================================ +17:10:19 Sending to : +17:10:19 ============================================================================ +17:10:20 ============================================================================ +17:10:20 Slot Id : <5> +17:10:20 Transaction Type : REQUEST +17:10:20 Received From : +17:10:20 ============================================================================ +17:10:20 FNo. Len. Field Value +17:10:20 ============================================================================ +17:10:20 [ 1] [ 4] [0200] +17:10:20 [ 2] [ 16] [6213544001465472] +17:10:20 [ 3] [ 6] [010000] +17:10:20 [ 4] [ 12] [000100000000] +17:10:20 [ 7] [ 10] [0320170809] +17:10:20 [ 11] [ 6] [953020] +17:10:20 [ 12] [ 6] [170809] +17:10:20 [ 13] [ 4] [0320] +17:10:20 [ 15] [ 4] [0320] +17:10:20 [ 18] [ 4] [6011] +17:10:20 [ 19] [ 3] [418] +17:10:20 [ 22] [ 3] [021] +17:10:20 [ 25] [ 2] [01] +17:10:20 [ 28] [ 9] [D00002000] +17:10:20 [ 32] [ 6] [668899] +17:10:20 [ 35] [ 32] [6213544001465472=491212016547762] +17:10:20 [ 37] [ 12] [507902161285] +17:10:20 [ 41] [ 8] [03020026] +17:10:20 [ 42] [ 15] [APT ] +17:10:20 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +17:10:20 [ 49] [ 3] [418] +17:10:20 [ 52] [ 16] [A904AF327003B06E] +17:10:20 ============================================================================ +17:10:20 + + +waiting on router queue for slot.... +17:10:20 Sending to : +17:10:20 ============================================================================ +17:10:20 ============================================================================ +17:10:20 Slot Id : <5> +17:10:20 Transaction Type : REQUEST +17:10:20 Received From : +17:10:20 ============================================================================ +17:10:20 FNo. Len. Field Value +17:10:20 ============================================================================ +17:10:20 [ 1] [ 4] [0200] +17:10:20 [ 2] [ 16] [6213544001465472] +17:10:20 [ 3] [ 6] [010000] +17:10:20 [ 4] [ 12] [000100000000] +17:10:20 [ 7] [ 10] [0320170809] +17:10:20 [ 11] [ 6] [953020] +17:10:20 [ 12] [ 6] [170809] +17:10:20 [ 13] [ 4] [0320] +17:10:20 [ 15] [ 4] [0320] +17:10:20 [ 18] [ 4] [6011] +17:10:20 [ 19] [ 3] [418] +17:10:20 [ 22] [ 3] [021] +17:10:20 [ 25] [ 2] [01] +17:10:20 [ 28] [ 9] [D00002000] +17:10:20 [ 32] [ 6] [668899] +17:10:20 [ 35] [ 32] [6213544001465472=491212016547762] +17:10:20 [ 37] [ 12] [507902161285] +17:10:20 [ 41] [ 8] [03020026] +17:10:20 [ 42] [ 15] [APT ] +17:10:20 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +17:10:20 [ 49] [ 3] [418] +17:10:20 [ 52] [ 16] [9609FC7E5AB0B42B] +17:10:20 ============================================================================ +17:10:20 + + +waiting on router queue for slot.... +17:10:20 Sending to : <0> +17:10:20 ============================================================================ +17:10:20 ============================================================================ +17:10:20 Slot Id : <5> +17:10:20 Transaction Type : RESPONSE +17:10:20 Received From : +17:10:20 ============================================================================ +17:10:20 FNo. Len. Field Value +17:10:20 ============================================================================ +17:10:20 [ 1] [ 4] [0210] +17:10:20 [ 2] [ 16] [6213544001465472] +17:10:20 [ 3] [ 6] [010000] +17:10:20 [ 4] [ 12] [000100000000] +17:10:20 [ 7] [ 10] [0320170809] +17:10:20 [ 11] [ 6] [953020] +17:10:20 [ 12] [ 6] [170809] +17:10:20 [ 13] [ 4] [0320] +17:10:20 [ 15] [ 4] [0320] +17:10:20 [ 18] [ 4] [6011] +17:10:20 [ 19] [ 3] [418] +17:10:20 [ 32] [ 6] [668899] +17:10:20 [ 35] [ 32] [6213544001465472=491212016547762] +17:10:20 [ 37] [ 12] [507902161285] +17:10:20 [ 38] [ 6] [317704] +17:10:20 [ 39] [ 2] [00] +17:10:20 [ 41] [ 8] [03020026] +17:10:20 [ 49] [ 3] [418] +17:10:20 [ 54] [ 40] [0001418C0001068616370002418C000106861637] +17:10:20 ============================================================================ +17:10:20 Sending to : +17:10:20 ============================================================================ +17:10:20 + + +waiting on router queue for slot.... +17:10:22 ============================================================================ +17:10:22 Slot Id : <5> +17:10:22 Transaction Type : RESPONSE +17:10:22 Received From : +17:10:22 ============================================================================ +17:10:22 FNo. Len. Field Value +17:10:22 ============================================================================ +17:10:22 [ 1] [ 4] [0210] +17:10:22 [ 2] [ 16] [6213544001465472] +17:10:22 [ 3] [ 6] [010000] +17:10:22 [ 4] [ 12] [000100000000] +17:10:22 [ 7] [ 10] [0320170809] +17:10:22 [ 11] [ 6] [953020] +17:10:22 [ 12] [ 6] [170809] +17:10:22 [ 13] [ 4] [0320] +17:10:22 [ 15] [ 4] [0320] +17:10:22 [ 18] [ 4] [6011] +17:10:22 [ 19] [ 3] [418] +17:10:22 [ 32] [ 6] [668899] +17:10:22 [ 35] [ 32] [6213544001465472=491212016547762] +17:10:22 [ 37] [ 12] [507902161285] +17:10:22 [ 38] [ 6] [317704] +17:10:22 [ 39] [ 2] [00] +17:10:22 [ 41] [ 8] [03020026] +17:10:22 [ 49] [ 3] [418] +17:10:22 [ 54] [ 40] [0001418C0001068616370002418C000106861637] +17:10:22 ============================================================================ +17:10:22 Calculate Source COMM Id = 4 +17:10:22 ============================================================================ +17:10:22 + + +waiting on router queue for slot.... +17:10:29 ============================================================================ +17:10:29 Slot Id : <67> +17:10:29 Transaction Type : REQUEST +17:10:29 Received From : +17:10:29 ============================================================================ +17:10:29 FNo. Len. Field Value +17:10:29 ============================================================================ +17:10:29 [ 1] [ 4] [0800] +17:10:29 [ 7] [ 10] [0320100936] +17:10:29 [ 11] [ 6] [157395] +17:10:29 [ 70] [ 3] [301] +17:10:29 ============================================================================ +17:10:29 + + +waiting on router queue for slot.... +17:10:29 Sending to : +17:10:29 ============================================================================ +17:10:29 ============================================================================ +17:10:29 Slot Id : <67> +17:10:29 Transaction Type : RESPONSE +17:10:29 Received From : +17:10:29 ============================================================================ +17:10:29 FNo. Len. Field Value +17:10:29 ============================================================================ +17:10:29 [ 1] [ 4] [0810] +17:10:29 [ 7] [ 10] [0320100936] +17:10:29 [ 11] [ 6] [157395] +17:10:29 [ 39] [ 2] [00] +17:10:29 [ 70] [ 3] [301] +17:10:29 ============================================================================ +17:10:29 Calculate Source COMM Id = 2 +17:10:29 ============================================================================ +17:10:29 + + +waiting on router queue for slot.... +17:10:31 ============================================================================ +17:10:31 Slot Id : <58> +17:10:31 Transaction Type : REQUEST +17:10:31 Received From : +17:10:31 ============================================================================ +17:10:31 FNo. Len. Field Value +17:10:31 ============================================================================ +17:10:31 [ 1] [ 4] [0200] +17:10:31 [ 2] [ 16] [6213544001727301] +17:10:31 [ 3] [ 6] [011000] +17:10:31 [ 4] [ 12] [000004000000] +17:10:31 [ 7] [ 10] [0320100935] +17:10:31 [ 11] [ 6] [270732] +17:10:31 [ 12] [ 6] [170935] +17:10:31 [ 13] [ 4] [0320] +17:10:31 [ 14] [ 4] [4912] +17:10:31 [ 15] [ 4] [0320] +17:10:31 [ 18] [ 4] [6011] +17:10:31 [ 19] [ 3] [418] +17:10:31 [ 22] [ 3] [021] +17:10:31 [ 25] [ 2] [01] +17:10:31 [ 28] [ 9] [D00002000] +17:10:31 [ 32] [ 6] [180893] +17:10:31 [ 35] [ 32] [6213544001727301=491212012730227] +17:10:31 [ 37] [ 12] [507910270732] +17:10:31 [ 41] [ 8] [0104NUOL] +17:10:31 [ 42] [ 15] [999999 ] +17:10:31 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +17:10:31 [ 49] [ 3] [418] +17:10:31 [ 52] [ 16] [640281561FF60254] +17:10:31 ============================================================================ +17:10:31 + + +waiting on router queue for slot.... +17:10:31 Sending to : +17:10:31 ============================================================================ +17:10:31 Sending to : +17:10:31 ============================================================================ +17:10:32 ============================================================================ +17:10:32 Slot Id : <58> +17:10:32 Transaction Type : REQUEST +17:10:32 Received From : +17:10:32 ============================================================================ +17:10:32 FNo. Len. Field Value +17:10:32 ============================================================================ +17:10:32 [ 1] [ 4] [0200] +17:10:32 [ 2] [ 16] [6213544001727301] +17:10:32 [ 3] [ 6] [011000] +17:10:32 [ 4] [ 12] [000004000000] +17:10:32 [ 7] [ 10] [0320100935] +17:10:32 [ 11] [ 6] [270732] +17:10:32 [ 12] [ 6] [170935] +17:10:32 [ 13] [ 4] [0320] +17:10:32 [ 14] [ 4] [4912] +17:10:32 [ 15] [ 4] [0320] +17:10:32 [ 18] [ 4] [6011] +17:10:32 [ 19] [ 3] [418] +17:10:32 [ 22] [ 3] [021] +17:10:32 [ 25] [ 2] [01] +17:10:32 [ 28] [ 9] [D00002000] +17:10:32 [ 32] [ 6] [180893] +17:10:32 [ 35] [ 32] [6213544001727301=491212012730227] +17:10:32 [ 37] [ 12] [507910270732] +17:10:32 [ 41] [ 8] [0104NUOL] +17:10:32 [ 42] [ 15] [999999 ] +17:10:32 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +17:10:32 [ 49] [ 3] [418] +17:10:32 [ 52] [ 16] [640281561FF60254] +17:10:32 ============================================================================ +17:10:32 + + +waiting on router queue for slot.... +17:10:32 Sending to : +17:10:32 ============================================================================ +17:10:32 ============================================================================ +17:10:32 Slot Id : <58> +17:10:32 Transaction Type : REQUEST +17:10:32 Received From : +17:10:32 ============================================================================ +17:10:32 FNo. Len. Field Value +17:10:32 ============================================================================ +17:10:32 [ 1] [ 4] [0200] +17:10:32 [ 2] [ 16] [6213544001727301] +17:10:32 [ 3] [ 6] [011000] +17:10:32 [ 4] [ 12] [000004000000] +17:10:32 [ 7] [ 10] [0320100935] +17:10:32 [ 11] [ 6] [270732] +17:10:32 [ 12] [ 6] [170935] +17:10:32 [ 13] [ 4] [0320] +17:10:32 [ 14] [ 4] [4912] +17:10:32 [ 15] [ 4] [0320] +17:10:32 [ 18] [ 4] [6011] +17:10:32 [ 19] [ 3] [418] +17:10:32 [ 22] [ 3] [021] +17:10:32 [ 25] [ 2] [01] +17:10:32 [ 28] [ 9] [D00002000] +17:10:32 [ 32] [ 6] [180893] +17:10:32 [ 35] [ 32] [6213544001727301=491212012730227] +17:10:32 [ 37] [ 12] [507910270732] +17:10:32 [ 41] [ 8] [0104NUOL] +17:10:32 [ 42] [ 15] [999999 ] +17:10:32 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +17:10:32 [ 49] [ 3] [418] +17:10:32 [ 52] [ 16] [6232062125CCE38D] +17:10:32 ============================================================================ +17:10:32 + + +waiting on router queue for slot.... +17:10:32 Sending to : <0> +17:10:32 ============================================================================ +17:10:32 ============================================================================ +17:10:32 Slot Id : <58> +17:10:32 Transaction Type : RESPONSE +17:10:32 Received From : +17:10:32 ============================================================================ +17:10:32 FNo. Len. Field Value +17:10:32 ============================================================================ +17:10:32 [ 1] [ 4] [0210] +17:10:32 [ 2] [ 16] [6213544001727301] +17:10:32 [ 3] [ 6] [011000] +17:10:32 [ 4] [ 12] [000004000000] +17:10:32 [ 7] [ 10] [0320100935] +17:10:32 [ 11] [ 6] [270732] +17:10:32 [ 12] [ 6] [170935] +17:10:32 [ 13] [ 4] [0320] +17:10:32 [ 15] [ 4] [0320] +17:10:32 [ 18] [ 4] [6011] +17:10:32 [ 19] [ 3] [418] +17:10:32 [ 32] [ 6] [180893] +17:10:32 [ 35] [ 32] [6213544001727301=491212012730227] +17:10:32 [ 37] [ 12] [507910270732] +17:10:32 [ 38] [ 6] [270732] +17:10:32 [ 39] [ 2] [51] +17:10:32 [ 41] [ 8] [0104NUOL] +17:10:32 [ 49] [ 3] [418] +17:10:32 [ 54] [ 40] [1001418C0000065081481002418C000006508148] +17:10:32 ============================================================================ +17:10:32 Sending to : +17:10:32 ============================================================================ +17:10:32 + + +waiting on router queue for slot.... +17:10:33 ============================================================================ +17:10:33 Slot Id : <58> +17:10:33 Transaction Type : RESPONSE +17:10:33 Received From : +17:10:33 ============================================================================ +17:10:33 FNo. Len. Field Value +17:10:33 ============================================================================ +17:10:33 [ 1] [ 4] [0210] +17:10:33 [ 2] [ 16] [6213544001727301] +17:10:33 [ 3] [ 6] [011000] +17:10:33 [ 4] [ 12] [000004000000] +17:10:33 [ 7] [ 10] [0320100935] +17:10:33 [ 11] [ 6] [270732] +17:10:33 [ 12] [ 6] [170935] +17:10:33 [ 13] [ 4] [0320] +17:10:33 [ 15] [ 4] [0320] +17:10:33 [ 18] [ 4] [6011] +17:10:33 [ 19] [ 3] [418] +17:10:33 [ 32] [ 6] [180893] +17:10:33 [ 35] [ 32] [6213544001727301=491212012730227] +17:10:33 [ 37] [ 12] [507910270732] +17:10:33 [ 38] [ 6] [270732] +17:10:33 [ 39] [ 2] [51] +17:10:33 [ 41] [ 8] [0104NUOL] +17:10:33 [ 49] [ 3] [418] +17:10:33 [ 54] [ 40] [1001418C0000065081481002418C000006508148] +17:10:33 ============================================================================ +17:10:33 Calculate Source COMM Id = 2 +17:10:33 ============================================================================ +17:10:33 + + +waiting on router queue for slot.... +17:10:36 ============================================================================ +17:10:36 Slot Id : <62> +17:10:36 Transaction Type : REQUEST +17:10:36 Received From : +17:10:36 ============================================================================ +17:10:36 FNo. Len. Field Value +17:10:36 ============================================================================ +17:10:36 [ 1] [ 4] [0200] +17:10:36 [ 2] [ 16] [6213544001919569] +17:10:36 [ 3] [ 6] [011000] +17:10:36 [ 4] [ 12] [000050000000] +17:10:36 [ 7] [ 10] [0320171056] +17:10:36 [ 11] [ 6] [209317] +17:10:36 [ 12] [ 6] [170650] +17:10:36 [ 13] [ 4] [0320] +17:10:36 [ 14] [ 4] [4912] +17:10:36 [ 15] [ 4] [0320] +17:10:36 [ 18] [ 4] [6011] +17:10:36 [ 19] [ 3] [418] +17:10:36 [ 22] [ 3] [021] +17:10:36 [ 25] [ 2] [01] +17:10:36 [ 28] [ 9] [D00002000] +17:10:36 [ 32] [ 6] [198901] +17:10:36 [ 35] [ 32] [6213544001919569=491212011956794] +17:10:36 [ 37] [ 12] [507917209317] +17:10:36 [ 41] [ 8] [00852902] +17:10:36 [ 42] [ 15] [000000040852902] +17:10:36 [ 43] [ 40] [ATM SAVANCH II VN ] +17:10:36 [ 49] [ 3] [418] +17:10:36 [ 52] [ 16] [C8FAF58BF1B23BA1] +17:10:36 ============================================================================ +17:10:36 + + +waiting on router queue for slot.... +17:10:36 Sending to : +17:10:36 ============================================================================ +17:10:36 Sending to : +17:10:36 ============================================================================ +17:10:36 ============================================================================ +17:10:36 Slot Id : <62> +17:10:36 Transaction Type : REQUEST +17:10:36 Received From : +17:10:36 ============================================================================ +17:10:36 FNo. Len. Field Value +17:10:36 ============================================================================ +17:10:36 [ 1] [ 4] [0200] +17:10:36 [ 2] [ 16] [6213544001919569] +17:10:36 [ 3] [ 6] [011000] +17:10:36 [ 4] [ 12] [000050000000] +17:10:36 [ 7] [ 10] [0320171056] +17:10:36 [ 11] [ 6] [209317] +17:10:36 [ 12] [ 6] [170650] +17:10:36 [ 13] [ 4] [0320] +17:10:36 [ 14] [ 4] [4912] +17:10:36 [ 15] [ 4] [0320] +17:10:36 [ 18] [ 4] [6011] +17:10:36 [ 19] [ 3] [418] +17:10:36 [ 22] [ 3] [021] +17:10:36 [ 25] [ 2] [01] +17:10:36 [ 28] [ 9] [D00002000] +17:10:36 [ 32] [ 6] [198901] +17:10:36 [ 35] [ 32] [6213544001919569=491212011956794] +17:10:36 [ 37] [ 12] [507917209317] +17:10:36 [ 41] [ 8] [00852902] +17:10:36 [ 42] [ 15] [000000040852902] +17:10:36 [ 43] [ 40] [ATM SAVANCH II VN ] +17:10:36 [ 49] [ 3] [418] +17:10:36 [ 52] [ 16] [C8FAF58BF1B23BA1] +17:10:36 ============================================================================ +17:10:36 + + +waiting on router queue for slot.... +17:10:36 Sending to : +17:10:36 ============================================================================ +17:10:36 ============================================================================ +17:10:36 Slot Id : <62> +17:10:36 Transaction Type : REQUEST +17:10:36 Received From : +17:10:36 ============================================================================ +17:10:36 FNo. Len. Field Value +17:10:36 ============================================================================ +17:10:36 [ 1] [ 4] [0200] +17:10:36 [ 2] [ 16] [6213544001919569] +17:10:36 [ 3] [ 6] [011000] +17:10:36 [ 4] [ 12] [000050000000] +17:10:36 [ 7] [ 10] [0320171056] +17:10:36 [ 11] [ 6] [209317] +17:10:36 [ 12] [ 6] [170650] +17:10:36 [ 13] [ 4] [0320] +17:10:36 [ 14] [ 4] [4912] +17:10:36 [ 15] [ 4] [0320] +17:10:36 [ 18] [ 4] [6011] +17:10:36 [ 19] [ 3] [418] +17:10:36 [ 22] [ 3] [021] +17:10:36 [ 25] [ 2] [01] +17:10:36 [ 28] [ 9] [D00002000] +17:10:36 [ 32] [ 6] [198901] +17:10:36 [ 35] [ 32] [6213544001919569=491212011956794] +17:10:36 [ 37] [ 12] [507917209317] +17:10:36 [ 41] [ 8] [00852902] +17:10:36 [ 42] [ 15] [000000040852902] +17:10:36 [ 43] [ 40] [ATM SAVANCH II VN ] +17:10:36 [ 49] [ 3] [418] +17:10:36 [ 52] [ 16] [9E160AB263EFC28D] +17:10:36 ============================================================================ +17:10:36 + + +waiting on router queue for slot.... +17:10:36 Sending to : <0> +17:10:36 ============================================================================ +17:10:37 ============================================================================ +17:10:37 Slot Id : <62> +17:10:37 Transaction Type : RESPONSE +17:10:37 Received From : +17:10:37 ============================================================================ +17:10:37 FNo. Len. Field Value +17:10:37 ============================================================================ +17:10:37 [ 1] [ 4] [0210] +17:10:37 [ 2] [ 16] [6213544001919569] +17:10:37 [ 3] [ 6] [011000] +17:10:37 [ 4] [ 12] [000050000000] +17:10:37 [ 7] [ 10] [0320171056] +17:10:37 [ 11] [ 6] [209317] +17:10:37 [ 12] [ 6] [170650] +17:10:37 [ 13] [ 4] [0320] +17:10:37 [ 15] [ 4] [0320] +17:10:37 [ 18] [ 4] [6011] +17:10:37 [ 19] [ 3] [418] +17:10:37 [ 32] [ 6] [198901] +17:10:37 [ 35] [ 32] [6213544001919569=491212011956794] +17:10:37 [ 37] [ 12] [507917209317] +17:10:37 [ 38] [ 6] [003239] +17:10:37 [ 39] [ 2] [00] +17:10:37 [ 41] [ 8] [00852902] +17:10:37 [ 49] [ 3] [418] +17:10:37 [ 54] [ 40] [1001418C0000061118841002418C000006111884] +17:10:37 ============================================================================ +17:10:37 Sending to : +17:10:37 ============================================================================ +17:10:37 + + +waiting on router queue for slot.... +17:10:38 ============================================================================ +17:10:38 Slot Id : <62> +17:10:38 Transaction Type : RESPONSE +17:10:38 Received From : +17:10:38 ============================================================================ +17:10:38 FNo. Len. Field Value +17:10:38 ============================================================================ +17:10:38 [ 1] [ 4] [0210] +17:10:38 [ 2] [ 16] [6213544001919569] +17:10:38 [ 3] [ 6] [011000] +17:10:38 [ 4] [ 12] [000050000000] +17:10:38 [ 7] [ 10] [0320171056] +17:10:38 [ 11] [ 6] [209317] +17:10:38 [ 12] [ 6] [170650] +17:10:38 [ 13] [ 4] [0320] +17:10:38 [ 15] [ 4] [0320] +17:10:38 [ 18] [ 4] [6011] +17:10:38 [ 19] [ 3] [418] +17:10:38 [ 32] [ 6] [198901] +17:10:38 [ 35] [ 32] [6213544001919569=491212011956794] +17:10:38 [ 37] [ 12] [507917209317] +17:10:38 [ 38] [ 6] [003239] +17:10:38 [ 39] [ 2] [00] +17:10:38 [ 41] [ 8] [00852902] +17:10:38 [ 49] [ 3] [418] +17:10:38 [ 54] [ 40] [1001418C0000061118841002418C000006111884] +17:10:38 ============================================================================ +17:10:38 Calculate Source COMM Id = 5 +17:10:38 ============================================================================ +17:10:38 + + +waiting on router queue for slot.... +17:10:43 ============================================================================ +17:10:43 Slot Id : <93> +17:10:43 Transaction Type : REQUEST +17:10:43 Received From : +17:10:43 ============================================================================ +17:10:43 FNo. Len. Field Value +17:10:43 ============================================================================ +17:10:43 [ 1] [ 4] [0200] +17:10:43 [ 2] [ 16] [6688990106678707] +17:10:43 [ 3] [ 6] [011000] +17:10:43 [ 4] [ 12] [000030000000] +17:10:43 [ 7] [ 10] [0320171038] +17:10:43 [ 11] [ 6] [811174] +17:10:43 [ 12] [ 6] [171038] +17:10:43 [ 13] [ 4] [0320] +17:10:43 [ 15] [ 4] [0320] +17:10:43 [ 18] [ 4] [6011] +17:10:43 [ 22] [ 3] [900] +17:10:43 [ 25] [ 2] [02] +17:10:43 [ 28] [ 9] [D00002000] +17:10:43 [ 32] [ 6] [621354] +17:10:43 [ 35] [ 37] [6688990106678707=44011231870739600000] +17:10:43 [ 37] [ 12] [507902846525] +17:10:43 [ 41] [ 8] [01007800] +17:10:43 [ 42] [ 15] [NATIVE ] +17:10:43 [ 43] [ 40] [NORTH STATION SikhottabongLAO] +17:10:43 [ 49] [ 3] [418] +17:10:43 [ 52] [ 16] [B91CA22BA8D80A44] +17:10:43 ============================================================================ +17:10:43 + + +waiting on router queue for slot.... +17:10:43 Sending to : +17:10:43 ============================================================================ +17:10:43 Sending to : +17:10:43 ============================================================================ +17:10:44 ============================================================================ +17:10:44 Slot Id : <93> +17:10:44 Transaction Type : REQUEST +17:10:44 Received From : +17:10:44 ============================================================================ +17:10:44 FNo. Len. Field Value +17:10:44 ============================================================================ +17:10:44 [ 1] [ 4] [0200] +17:10:44 [ 2] [ 16] [6688990106678707] +17:10:44 [ 3] [ 6] [011000] +17:10:44 [ 4] [ 12] [000030000000] +17:10:44 [ 7] [ 10] [0320171038] +17:10:44 [ 11] [ 6] [811174] +17:10:44 [ 12] [ 6] [171038] +17:10:44 [ 13] [ 4] [0320] +17:10:44 [ 15] [ 4] [0320] +17:10:44 [ 18] [ 4] [6011] +17:10:44 [ 22] [ 3] [900] +17:10:44 [ 25] [ 2] [02] +17:10:44 [ 28] [ 9] [D00002000] +17:10:44 [ 32] [ 6] [621354] +17:10:44 [ 35] [ 37] [6688990106678707=44011231870739600000] +17:10:44 [ 37] [ 12] [507902846525] +17:10:44 [ 41] [ 8] [01007800] +17:10:44 [ 42] [ 15] [NATIVE ] +17:10:44 [ 43] [ 40] [NORTH STATION SikhottabongLAO] +17:10:44 [ 49] [ 3] [418] +17:10:44 [ 52] [ 16] [B91CA22BA8D80A44] +17:10:44 ============================================================================ +17:10:44 + + +waiting on router queue for slot.... +17:10:44 Sending to : +17:10:44 ============================================================================ +17:10:44 ============================================================================ +17:10:44 Slot Id : <93> +17:10:44 Transaction Type : REQUEST +17:10:44 Received From : +17:10:44 ============================================================================ +17:10:44 FNo. Len. Field Value +17:10:44 ============================================================================ +17:10:44 [ 1] [ 4] [0200] +17:10:44 [ 2] [ 16] [6688990106678707] +17:10:44 [ 3] [ 6] [011000] +17:10:44 [ 4] [ 12] [000030000000] +17:10:44 [ 7] [ 10] [0320171038] +17:10:44 [ 11] [ 6] [811174] +17:10:44 [ 12] [ 6] [171038] +17:10:44 [ 13] [ 4] [0320] +17:10:44 [ 15] [ 4] [0320] +17:10:44 [ 18] [ 4] [6011] +17:10:44 [ 22] [ 3] [900] +17:10:44 [ 25] [ 2] [02] +17:10:44 [ 28] [ 9] [D00002000] +17:10:44 [ 32] [ 6] [621354] +17:10:44 [ 35] [ 37] [6688990106678707=44011231870739600000] +17:10:44 [ 37] [ 12] [507902846525] +17:10:44 [ 41] [ 8] [01007800] +17:10:44 [ 42] [ 15] [NATIVE ] +17:10:44 [ 43] [ 40] [NORTH STATION SikhottabongLAO] +17:10:44 [ 49] [ 3] [418] +17:10:44 [ 52] [ 16] [69A9A2D1148744C3] +17:10:44 ============================================================================ +17:10:44 + + +waiting on router queue for slot.... +17:10:44 Sending to : <4> +17:10:44 ============================================================================ +17:10:45 ============================================================================ +17:10:45 Slot Id : <39> +17:10:45 Transaction Type : REQUEST +17:10:45 Received From : +17:10:45 ============================================================================ +17:10:45 FNo. Len. Field Value +17:10:45 ============================================================================ +17:10:45 [ 1] [ 4] [0200] +17:10:45 [ 2] [ 16] [6688990040118976] +17:10:45 [ 3] [ 6] [010000] +17:10:45 [ 4] [ 12] [000010000000] +17:10:45 [ 7] [ 10] [0320171832] +17:10:45 [ 11] [ 6] [999998] +17:10:45 [ 12] [ 6] [171832] +17:10:45 [ 13] [ 4] [0320] +17:10:45 [ 14] [ 4] [9803] +17:10:45 [ 15] [ 4] [0320] +17:10:45 [ 18] [ 4] [6011] +17:10:45 [ 22] [ 3] [900] +17:10:45 [ 25] [ 2] [02] +17:10:45 [ 28] [ 9] [D00002000] +17:10:45 [ 32] [ 6] [220699] +17:10:45 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:10:45 [ 37] [ 12] [507900281390] +17:10:45 [ 41] [ 8] [10000100] +17:10:45 [ 42] [ 15] [APTRA ] +17:10:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:10:45 [ 49] [ 3] [418] +17:10:45 [ 52] [ 16] [CCD7D89836BDCCB5] +17:10:45 ============================================================================ +17:10:45 + + +waiting on router queue for slot.... +17:10:45 Sending to : +17:10:45 ============================================================================ +17:10:45 Sending to : +17:10:45 ============================================================================ +17:10:45 ============================================================================ +17:10:45 Slot Id : <93> +17:10:45 Transaction Type : RESPONSE +17:10:45 Received From : +17:10:45 ============================================================================ +17:10:45 FNo. Len. Field Value +17:10:45 ============================================================================ +17:10:45 [ 1] [ 4] [0210] +17:10:45 [ 2] [ 16] [6688990106678707] +17:10:45 [ 3] [ 6] [011000] +17:10:45 [ 4] [ 12] [000030000000] +17:10:45 [ 11] [ 6] [811174] +17:10:45 [ 12] [ 6] [171038] +17:10:45 [ 15] [ 4] [0320] +17:10:45 [ 18] [ 4] [6011] +17:10:45 [ 32] [ 6] [621354] +17:10:45 [ 35] [ 37] [6688990106678707=44011231870739600000] +17:10:45 [ 37] [ 12] [507902846525] +17:10:45 [ 38] [ 6] [963480] +17:10:45 [ 39] [ 2] [00] +17:10:45 [ 41] [ 8] [01007800] +17:10:45 [ 49] [ 3] [418] +17:10:45 [ 54] [ 20] [1002418C000272834245] +17:10:45 ============================================================================ +17:10:45 Sending to : +17:10:45 ============================================================================ +17:10:45 + + +waiting on router queue for slot.... +17:10:45 ============================================================================ +17:10:45 Slot Id : <39> +17:10:45 Transaction Type : REQUEST +17:10:45 Received From : +17:10:45 ============================================================================ +17:10:45 FNo. Len. Field Value +17:10:45 ============================================================================ +17:10:45 [ 1] [ 4] [0200] +17:10:45 [ 2] [ 16] [6688990040118976] +17:10:45 [ 3] [ 6] [010000] +17:10:45 [ 4] [ 12] [000010000000] +17:10:45 [ 7] [ 10] [0320171832] +17:10:45 [ 11] [ 6] [999998] +17:10:45 [ 12] [ 6] [171832] +17:10:45 [ 13] [ 4] [0320] +17:10:45 [ 14] [ 4] [9803] +17:10:45 [ 15] [ 4] [0320] +17:10:45 [ 18] [ 4] [6011] +17:10:45 [ 22] [ 3] [900] +17:10:45 [ 25] [ 2] [02] +17:10:45 [ 28] [ 9] [D00002000] +17:10:45 [ 32] [ 6] [220699] +17:10:45 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:10:45 [ 37] [ 12] [507900281390] +17:10:45 [ 41] [ 8] [10000100] +17:10:45 [ 42] [ 15] [APTRA ] +17:10:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:10:45 [ 49] [ 3] [418] +17:10:45 [ 52] [ 16] [CCD7D89836BDCCB5] +17:10:45 ============================================================================ +17:10:45 + + +waiting on router queue for slot.... +17:10:45 Sending to : +17:10:45 ============================================================================ +17:10:45 ============================================================================ +17:10:45 Slot Id : <39> +17:10:45 Transaction Type : REQUEST +17:10:45 Received From : +17:10:45 ============================================================================ +17:10:45 FNo. Len. Field Value +17:10:45 ============================================================================ +17:10:45 [ 1] [ 4] [0200] +17:10:45 [ 2] [ 16] [6688990040118976] +17:10:45 [ 3] [ 6] [010000] +17:10:45 [ 4] [ 12] [000010000000] +17:10:45 [ 7] [ 10] [0320171832] +17:10:45 [ 11] [ 6] [999998] +17:10:45 [ 12] [ 6] [171832] +17:10:45 [ 13] [ 4] [0320] +17:10:45 [ 14] [ 4] [9803] +17:10:45 [ 15] [ 4] [0320] +17:10:45 [ 18] [ 4] [6011] +17:10:45 [ 22] [ 3] [900] +17:10:45 [ 25] [ 2] [02] +17:10:45 [ 28] [ 9] [D00002000] +17:10:45 [ 32] [ 6] [220699] +17:10:45 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:10:45 [ 37] [ 12] [507900281390] +17:10:45 [ 41] [ 8] [10000100] +17:10:45 [ 42] [ 15] [APTRA ] +17:10:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:10:45 [ 49] [ 3] [418] +17:10:45 [ 52] [ 16] [3F8FA5C817D40D98] +17:10:45 ============================================================================ +17:10:45 + + +waiting on router queue for slot.... +17:10:45 Sending to : <0> +17:10:45 ============================================================================ +17:10:45 ============================================================================ +17:10:45 Slot Id : <39> +17:10:45 Transaction Type : RESPONSE +17:10:45 Received From : +17:10:45 ============================================================================ +17:10:45 FNo. Len. Field Value +17:10:45 ============================================================================ +17:10:45 [ 1] [ 4] [0210] +17:10:45 [ 2] [ 16] [6688990040118976] +17:10:45 [ 3] [ 6] [010000] +17:10:45 [ 4] [ 12] [000010000000] +17:10:45 [ 7] [ 10] [0320171832] +17:10:45 [ 11] [ 6] [999998] +17:10:45 [ 12] [ 6] [171832] +17:10:45 [ 13] [ 4] [0320] +17:10:45 [ 15] [ 4] [0320] +17:10:45 [ 18] [ 4] [6011] +17:10:45 [ 22] [ 3] [900] +17:10:45 [ 32] [ 6] [220699] +17:10:45 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:10:45 [ 37] [ 12] [507900281390] +17:10:45 [ 39] [ 2] [14] +17:10:45 [ 41] [ 8] [10000100] +17:10:45 [ 49] [ 3] [418] +17:10:45 ============================================================================ +17:10:45 Sending to : +17:10:45 ============================================================================ +17:10:45 + + +waiting on router queue for slot.... +17:10:46 ============================================================================ +17:10:46 Slot Id : <93> +17:10:46 Transaction Type : RESPONSE +17:10:46 Received From : +17:10:46 ============================================================================ +17:10:46 FNo. Len. Field Value +17:10:46 ============================================================================ +17:10:46 [ 1] [ 4] [0210] +17:10:46 [ 2] [ 16] [6688990106678707] +17:10:46 [ 3] [ 6] [011000] +17:10:46 [ 4] [ 12] [000030000000] +17:10:46 [ 11] [ 6] [811174] +17:10:46 [ 12] [ 6] [171038] +17:10:46 [ 15] [ 4] [0320] +17:10:46 [ 18] [ 4] [6011] +17:10:46 [ 32] [ 6] [621354] +17:10:46 [ 35] [ 37] [6688990106678707=44011231870739600000] +17:10:46 [ 37] [ 12] [507902846525] +17:10:46 [ 38] [ 6] [963480] +17:10:46 [ 39] [ 2] [00] +17:10:46 [ 41] [ 8] [01007800] +17:10:46 [ 49] [ 3] [418] +17:10:46 [ 54] [ 20] [1002418C000272834245] +17:10:46 ============================================================================ +17:10:46 Calculate Source COMM Id = 0 +17:10:46 ============================================================================ +17:10:46 + + +waiting on router queue for slot.... +17:10:47 ============================================================================ +17:10:47 Slot Id : <39> +17:10:47 Transaction Type : RESPONSE +17:10:47 Received From : +17:10:47 ============================================================================ +17:10:47 FNo. Len. Field Value +17:10:47 ============================================================================ +17:10:47 [ 1] [ 4] [0210] +17:10:47 [ 2] [ 16] [6688990040118976] +17:10:47 [ 3] [ 6] [010000] +17:10:47 [ 4] [ 12] [000010000000] +17:10:47 [ 7] [ 10] [0320171832] +17:10:47 [ 11] [ 6] [999998] +17:10:47 [ 12] [ 6] [171832] +17:10:47 [ 13] [ 4] [0320] +17:10:47 [ 15] [ 4] [0320] +17:10:47 [ 18] [ 4] [6011] +17:10:47 [ 22] [ 3] [900] +17:10:47 [ 32] [ 6] [220699] +17:10:47 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:10:47 [ 37] [ 12] [507900281390] +17:10:47 [ 39] [ 2] [14] +17:10:47 [ 41] [ 8] [10000100] +17:10:47 [ 49] [ 3] [418] +17:10:47 ============================================================================ +17:10:47 Calculate Source COMM Id = 1 +17:10:47 ============================================================================ +17:10:47 + + +waiting on router queue for slot.... +17:10:48 ============================================================================ +17:10:48 Slot Id : <82> +17:10:48 Transaction Type : REQUEST +17:10:48 Received From : +17:10:48 ============================================================================ +17:10:48 FNo. Len. Field Value +17:10:48 ============================================================================ +17:10:48 [ 1] [ 4] [0200] +17:10:48 [ 2] [ 16] [6688990103296503] +17:10:48 [ 3] [ 6] [300000] +17:10:48 [ 4] [ 12] [000000000000] +17:10:48 [ 7] [ 10] [0320171043] +17:10:48 [ 11] [ 6] [811200] +17:10:48 [ 12] [ 6] [171043] +17:10:48 [ 13] [ 4] [0320] +17:10:48 [ 15] [ 4] [0320] +17:10:48 [ 18] [ 4] [6011] +17:10:48 [ 22] [ 3] [900] +17:10:48 [ 25] [ 2] [02] +17:10:48 [ 28] [ 9] [D00000000] +17:10:48 [ 32] [ 6] [621354] +17:10:48 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:10:48 [ 37] [ 12] [507903499656] +17:10:48 [ 41] [ 8] [06002200] +17:10:48 [ 42] [ 15] [NATIVE ] +17:10:48 [ 43] [ 40] [Beng Market Beng LAO] +17:10:48 [ 49] [ 3] [418] +17:10:48 [ 52] [ 16] [A818A29183BF310F] +17:10:48 ============================================================================ +17:10:48 + + +waiting on router queue for slot.... +17:10:48 Sending to : +17:10:48 ============================================================================ +17:10:48 Sending to : +17:10:48 ============================================================================ +17:10:48 ============================================================================ +17:10:48 Slot Id : <82> +17:10:48 Transaction Type : REQUEST +17:10:48 Received From : +17:10:48 ============================================================================ +17:10:48 FNo. Len. Field Value +17:10:48 ============================================================================ +17:10:48 [ 1] [ 4] [0200] +17:10:48 [ 2] [ 16] [6688990103296503] +17:10:48 [ 3] [ 6] [300000] +17:10:48 [ 4] [ 12] [000000000000] +17:10:48 [ 7] [ 10] [0320171043] +17:10:48 [ 11] [ 6] [811200] +17:10:48 [ 12] [ 6] [171043] +17:10:48 [ 13] [ 4] [0320] +17:10:48 [ 15] [ 4] [0320] +17:10:48 [ 18] [ 4] [6011] +17:10:48 [ 22] [ 3] [900] +17:10:48 [ 25] [ 2] [02] +17:10:48 [ 28] [ 9] [D00000000] +17:10:48 [ 32] [ 6] [621354] +17:10:48 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:10:48 [ 37] [ 12] [507903499656] +17:10:48 [ 41] [ 8] [06002200] +17:10:48 [ 42] [ 15] [NATIVE ] +17:10:48 [ 43] [ 40] [Beng Market Beng LAO] +17:10:48 [ 49] [ 3] [418] +17:10:48 [ 52] [ 16] [A818A29183BF310F] +17:10:48 ============================================================================ +17:10:48 + + +waiting on router queue for slot.... +17:10:48 Sending to : +17:10:48 ============================================================================ +17:10:48 ============================================================================ +17:10:48 Slot Id : <82> +17:10:48 Transaction Type : REQUEST +17:10:48 Received From : +17:10:48 ============================================================================ +17:10:48 FNo. Len. Field Value +17:10:48 ============================================================================ +17:10:48 [ 1] [ 4] [0200] +17:10:48 [ 2] [ 16] [6688990103296503] +17:10:48 [ 3] [ 6] [300000] +17:10:48 [ 4] [ 12] [000000000000] +17:10:48 [ 7] [ 10] [0320171043] +17:10:48 [ 11] [ 6] [811200] +17:10:48 [ 12] [ 6] [171043] +17:10:48 [ 13] [ 4] [0320] +17:10:48 [ 15] [ 4] [0320] +17:10:48 [ 18] [ 4] [6011] +17:10:48 [ 22] [ 3] [900] +17:10:48 [ 25] [ 2] [02] +17:10:48 [ 28] [ 9] [D00000000] +17:10:48 [ 32] [ 6] [621354] +17:10:48 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:10:48 [ 37] [ 12] [507903499656] +17:10:48 [ 41] [ 8] [06002200] +17:10:48 [ 42] [ 15] [NATIVE ] +17:10:48 [ 43] [ 40] [Beng Market Beng LAO] +17:10:48 [ 49] [ 3] [418] +17:10:48 [ 52] [ 16] [8F803458ACBFD8E8] +17:10:48 ============================================================================ +17:10:48 + + +waiting on router queue for slot.... +17:10:48 Sending to : <4> +17:10:48 ============================================================================ +17:10:50 ============================================================================ +17:10:50 Slot Id : <82> +17:10:50 Transaction Type : RESPONSE +17:10:50 Received From : +17:10:50 ============================================================================ +17:10:50 FNo. Len. Field Value +17:10:50 ============================================================================ +17:10:50 [ 1] [ 4] [0210] +17:10:50 [ 2] [ 16] [6688990103296503] +17:10:50 [ 3] [ 6] [300000] +17:10:50 [ 4] [ 12] [000000000000] +17:10:50 [ 11] [ 6] [811200] +17:10:50 [ 12] [ 6] [171043] +17:10:50 [ 15] [ 4] [0320] +17:10:50 [ 18] [ 4] [6011] +17:10:50 [ 32] [ 6] [621354] +17:10:50 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:10:50 [ 37] [ 12] [507903499656] +17:10:50 [ 38] [ 6] [478634] +17:10:50 [ 39] [ 2] [00] +17:10:50 [ 41] [ 8] [06002200] +17:10:50 [ 49] [ 3] [418] +17:10:50 [ 54] [ 20] [0002418C000201530681] +17:10:50 ============================================================================ +17:10:50 Sending to : +17:10:50 ============================================================================ +17:10:50 + + +waiting on router queue for slot.... +17:10:50 ============================================================================ +17:10:50 Slot Id : <56> +17:10:50 Transaction Type : REQUEST +17:10:50 Received From : +17:10:50 ============================================================================ +17:10:50 FNo. Len. Field Value +17:10:50 ============================================================================ +17:10:50 [ 1] [ 4] [0800] +17:10:50 [ 7] [ 10] [0320100956] +17:10:50 [ 11] [ 6] [157396] +17:10:50 [ 70] [ 3] [301] +17:10:50 ============================================================================ +17:10:50 + + +waiting on router queue for slot.... +17:10:50 Sending to : +17:10:50 ============================================================================ +17:10:50 ============================================================================ +17:10:50 Slot Id : <56> +17:10:50 Transaction Type : RESPONSE +17:10:50 Received From : +17:10:50 ============================================================================ +17:10:50 FNo. Len. Field Value +17:10:50 ============================================================================ +17:10:50 [ 1] [ 4] [0810] +17:10:50 [ 7] [ 10] [0320100956] +17:10:50 [ 11] [ 6] [157396] +17:10:50 [ 39] [ 2] [00] +17:10:50 [ 70] [ 3] [301] +17:10:50 ============================================================================ +17:10:50 Calculate Source COMM Id = 2 +17:10:50 ============================================================================ +17:10:50 + + +waiting on router queue for slot.... +17:10:52 ============================================================================ +17:10:52 Slot Id : <82> +17:10:52 Transaction Type : RESPONSE +17:10:52 Received From : +17:10:52 ============================================================================ +17:10:52 FNo. Len. Field Value +17:10:52 ============================================================================ +17:10:52 [ 1] [ 4] [0210] +17:10:52 [ 2] [ 16] [6688990103296503] +17:10:52 [ 3] [ 6] [300000] +17:10:52 [ 4] [ 12] [000000000000] +17:10:52 [ 11] [ 6] [811200] +17:10:52 [ 12] [ 6] [171043] +17:10:52 [ 15] [ 4] [0320] +17:10:52 [ 18] [ 4] [6011] +17:10:52 [ 32] [ 6] [621354] +17:10:52 [ 35] [ 37] [6688990103296503=42121231650308900000] +17:10:52 [ 37] [ 12] [507903499656] +17:10:52 [ 38] [ 6] [478634] +17:10:52 [ 39] [ 2] [00] +17:10:52 [ 41] [ 8] [06002200] +17:10:52 [ 49] [ 3] [418] +17:10:52 [ 54] [ 20] [0002418C000201530681] +17:10:52 ============================================================================ +17:10:52 Calculate Source COMM Id = 0 +17:10:52 ============================================================================ +17:10:52 + + +waiting on router queue for slot.... +17:10:53 ============================================================================ +17:10:53 Slot Id : <51> +17:10:53 Transaction Type : REQUEST +17:10:53 Received From : +17:10:53 ============================================================================ +17:10:53 FNo. Len. Field Value +17:10:53 ============================================================================ +17:10:53 [ 1] [ 4] [0800] +17:10:53 [ 2] [ 5] [02531] +17:10:53 [ 3] [ 6] [579178] +17:10:53 [ 7] [ 10] [0320101053] +17:10:53 [ 11] [ 6] [807409] +17:10:53 [ 15] [ 10] [0320101053] +17:10:53 [ 37] [ 11] [57917807409] +17:10:53 [ 70] [ 3] [001] +17:10:53 ============================================================================ +17:10:53 + + +waiting on router queue for slot.... +17:10:53 ============================================================================ +17:10:53 Slot Id : <51> +17:10:53 Transaction Type : RESPONSE +17:10:53 Received From : +17:10:53 ============================================================================ +17:10:53 FNo. Len. Field Value +17:10:53 ============================================================================ +17:10:53 [ 1] [ 4] [0810] +17:10:53 [ 7] [ 10] [0320101053] +17:10:53 [ 11] [ 6] [807409] +17:10:53 [ 15] [ 4] [0320] +17:10:53 [ 37] [ 12] [57917807409] +17:10:53 [ 39] [ 2] [00] +17:10:53 [ 70] [ 3] [001] +17:10:53 ============================================================================ +17:10:53 Sending to : +17:10:53 ============================================================================ +17:10:53 + + +waiting on router queue for slot.... +17:10:57 ============================================================================ +17:10:57 Slot Id : <99> +17:10:57 Transaction Type : REQUEST +17:10:57 Received From : +17:10:57 ============================================================================ +17:10:57 FNo. Len. Field Value +17:10:57 ============================================================================ +17:10:57 [ 1] [ 4] [0200] +17:10:57 [ 2] [ 16] [6688990100962206] +17:10:57 [ 3] [ 6] [301000] +17:10:57 [ 7] [ 10] [0320101003] +17:10:57 [ 11] [ 6] [270733] +17:10:57 [ 12] [ 6] [171003] +17:10:57 [ 13] [ 4] [0320] +17:10:57 [ 14] [ 4] [4112] +17:10:57 [ 15] [ 4] [0320] +17:10:57 [ 18] [ 4] [6011] +17:10:57 [ 19] [ 3] [418] +17:10:57 [ 22] [ 3] [021] +17:10:57 [ 25] [ 2] [01] +17:10:57 [ 32] [ 6] [180893] +17:10:57 [ 35] [ 37] [6688990100962206=41121231220618500000] +17:10:57 [ 37] [ 12] [507910270733] +17:10:57 [ 41] [ 8] [0467PSLK] +17:10:57 [ 42] [ 15] [999999 ] +17:10:57 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:10:57 [ 49] [ 3] [418] +17:10:57 [ 52] [ 16] [F08A842573FC776B] +17:10:57 ============================================================================ +17:10:57 + + +waiting on router queue for slot.... +17:10:57 Sending to : +17:10:57 ============================================================================ +17:10:57 Sending to : +17:10:57 ============================================================================ +17:10:57 ============================================================================ +17:10:57 Slot Id : <91> +17:10:57 Transaction Type : REQUEST +17:10:57 Received From : +17:10:57 ============================================================================ +17:10:57 FNo. Len. Field Value +17:10:57 ============================================================================ +17:10:57 [ 1] [ 4] [0200] +17:10:57 [ 2] [ 16] [6213544002118104] +17:10:57 [ 3] [ 6] [011000] +17:10:57 [ 4] [ 12] [000025000000] +17:10:57 [ 7] [ 10] [0320171117] +17:10:57 [ 11] [ 6] [209326] +17:10:57 [ 12] [ 6] [170623] +17:10:57 [ 13] [ 4] [0320] +17:10:57 [ 14] [ 4] [4912] +17:10:57 [ 15] [ 4] [0320] +17:10:57 [ 18] [ 4] [6011] +17:10:57 [ 19] [ 3] [418] +17:10:57 [ 22] [ 3] [021] +17:10:57 [ 25] [ 2] [01] +17:10:57 [ 28] [ 9] [D00002000] +17:10:57 [ 32] [ 6] [198901] +17:10:57 [ 35] [ 32] [6213544002118104=491212011810333] +17:10:57 [ 37] [ 12] [507917209326] +17:10:57 [ 41] [ 8] [19529001] +17:10:57 [ 42] [ 15] [000000041952901] +17:10:57 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:10:57 [ 49] [ 3] [418] +17:10:57 [ 52] [ 16] [498D43EEF3404D81] +17:10:57 ============================================================================ +17:10:57 + + +waiting on router queue for slot.... +17:10:57 Sending to : +17:10:57 ============================================================================ +17:10:57 Sending to : +17:10:57 ============================================================================ +17:10:57 ============================================================================ +17:10:57 Slot Id : <99> +17:10:57 Transaction Type : REQUEST +17:10:57 Received From : +17:10:57 ============================================================================ +17:10:57 FNo. Len. Field Value +17:10:57 ============================================================================ +17:10:57 [ 1] [ 4] [0200] +17:10:57 [ 2] [ 16] [6688990100962206] +17:10:57 [ 3] [ 6] [301000] +17:10:57 [ 7] [ 10] [0320101003] +17:10:57 [ 11] [ 6] [270733] +17:10:57 [ 12] [ 6] [171003] +17:10:57 [ 13] [ 4] [0320] +17:10:57 [ 14] [ 4] [4112] +17:10:57 [ 15] [ 4] [0320] +17:10:57 [ 18] [ 4] [6011] +17:10:57 [ 19] [ 3] [418] +17:10:57 [ 22] [ 3] [021] +17:10:57 [ 25] [ 2] [01] +17:10:57 [ 32] [ 6] [180893] +17:10:57 [ 35] [ 37] [6688990100962206=41121231220618500000] +17:10:57 [ 37] [ 12] [507910270733] +17:10:57 [ 41] [ 8] [0467PSLK] +17:10:57 [ 42] [ 15] [999999 ] +17:10:57 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:10:57 [ 49] [ 3] [418] +17:10:57 [ 52] [ 16] [F08A842573FC776B] +17:10:57 ============================================================================ +17:10:57 + + +waiting on router queue for slot.... +17:10:57 Sending to : +17:10:57 ============================================================================ +17:10:57 ============================================================================ +17:10:57 Slot Id : <99> +17:10:57 Transaction Type : REQUEST +17:10:57 Received From : +17:10:57 ============================================================================ +17:10:57 FNo. Len. Field Value +17:10:57 ============================================================================ +17:10:57 [ 1] [ 4] [0200] +17:10:57 [ 2] [ 16] [6688990100962206] +17:10:57 [ 3] [ 6] [301000] +17:10:57 [ 7] [ 10] [0320101003] +17:10:57 [ 11] [ 6] [270733] +17:10:57 [ 12] [ 6] [171003] +17:10:57 [ 13] [ 4] [0320] +17:10:57 [ 14] [ 4] [4112] +17:10:57 [ 15] [ 4] [0320] +17:10:57 [ 18] [ 4] [6011] +17:10:57 [ 19] [ 3] [418] +17:10:57 [ 22] [ 3] [021] +17:10:57 [ 25] [ 2] [01] +17:10:57 [ 32] [ 6] [180893] +17:10:57 [ 35] [ 37] [6688990100962206=41121231220618500000] +17:10:57 [ 37] [ 12] [507910270733] +17:10:57 [ 41] [ 8] [0467PSLK] +17:10:57 [ 42] [ 15] [999999 ] +17:10:57 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:10:57 [ 49] [ 3] [418] +17:10:57 [ 52] [ 16] [0A0818B6426E8A53] +17:10:57 ============================================================================ +17:10:57 + + +waiting on router queue for slot.... +17:10:57 Sending to : <0> +17:10:57 ============================================================================ +17:10:57 ============================================================================ +17:10:57 Slot Id : <99> +17:10:57 Transaction Type : RESPONSE +17:10:57 Received From : +17:10:57 ============================================================================ +17:10:57 FNo. Len. Field Value +17:10:57 ============================================================================ +17:10:57 [ 1] [ 4] [0210] +17:10:57 [ 2] [ 16] [6688990100962206] +17:10:57 [ 3] [ 6] [301000] +17:10:57 [ 4] [ 12] [000000000000] +17:10:57 [ 7] [ 10] [0320101003] +17:10:57 [ 11] [ 6] [270733] +17:10:57 [ 12] [ 6] [171003] +17:10:57 [ 13] [ 4] [0320] +17:10:57 [ 15] [ 4] [0320] +17:10:57 [ 18] [ 4] [6011] +17:10:57 [ 19] [ 3] [418] +17:10:57 [ 22] [ 3] [021] +17:10:57 [ 32] [ 6] [180893] +17:10:57 [ 35] [ 37] [6688990100962206=41121231220618500000] +17:10:57 [ 37] [ 12] [507910270733] +17:10:57 [ 39] [ 2] [14] +17:10:57 [ 41] [ 8] [0467PSLK] +17:10:57 [ 49] [ 3] [418] +17:10:57 ============================================================================ +17:10:57 Sending to : +17:10:57 ============================================================================ +17:10:57 + + +waiting on router queue for slot.... +17:10:57 ============================================================================ +17:10:57 Slot Id : <91> +17:10:57 Transaction Type : REQUEST +17:10:57 Received From : +17:10:57 ============================================================================ +17:10:57 FNo. Len. Field Value +17:10:57 ============================================================================ +17:10:57 [ 1] [ 4] [0200] +17:10:57 [ 2] [ 16] [6213544002118104] +17:10:57 [ 3] [ 6] [011000] +17:10:57 [ 4] [ 12] [000025000000] +17:10:57 [ 7] [ 10] [0320171117] +17:10:57 [ 11] [ 6] [209326] +17:10:57 [ 12] [ 6] [170623] +17:10:57 [ 13] [ 4] [0320] +17:10:57 [ 14] [ 4] [4912] +17:10:57 [ 15] [ 4] [0320] +17:10:57 [ 18] [ 4] [6011] +17:10:57 [ 19] [ 3] [418] +17:10:57 [ 22] [ 3] [021] +17:10:57 [ 25] [ 2] [01] +17:10:57 [ 28] [ 9] [D00002000] +17:10:57 [ 32] [ 6] [198901] +17:10:57 [ 35] [ 32] [6213544002118104=491212011810333] +17:10:57 [ 37] [ 12] [507917209326] +17:10:57 [ 41] [ 8] [19529001] +17:10:57 [ 42] [ 15] [000000041952901] +17:10:57 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:10:57 [ 49] [ 3] [418] +17:10:57 [ 52] [ 16] [498D43EEF3404D81] +17:10:57 ============================================================================ +17:10:57 + + +waiting on router queue for slot.... +17:10:57 Sending to : +17:10:57 ============================================================================ +17:10:57 ============================================================================ +17:10:57 Slot Id : <91> +17:10:57 Transaction Type : REQUEST +17:10:57 Received From : +17:10:57 ============================================================================ +17:10:57 FNo. Len. Field Value +17:10:57 ============================================================================ +17:10:57 [ 1] [ 4] [0200] +17:10:57 [ 2] [ 16] [6213544002118104] +17:10:57 [ 3] [ 6] [011000] +17:10:57 [ 4] [ 12] [000025000000] +17:10:57 [ 7] [ 10] [0320171117] +17:10:57 [ 11] [ 6] [209326] +17:10:57 [ 12] [ 6] [170623] +17:10:57 [ 13] [ 4] [0320] +17:10:57 [ 14] [ 4] [4912] +17:10:57 [ 15] [ 4] [0320] +17:10:57 [ 18] [ 4] [6011] +17:10:57 [ 19] [ 3] [418] +17:10:57 [ 22] [ 3] [021] +17:10:57 [ 25] [ 2] [01] +17:10:57 [ 28] [ 9] [D00002000] +17:10:57 [ 32] [ 6] [198901] +17:10:57 [ 35] [ 32] [6213544002118104=491212011810333] +17:10:57 [ 37] [ 12] [507917209326] +17:10:57 [ 41] [ 8] [19529001] +17:10:57 [ 42] [ 15] [000000041952901] +17:10:57 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:10:57 [ 49] [ 3] [418] +17:10:57 [ 52] [ 16] [6898C6CA138C1645] +17:10:57 ============================================================================ +17:10:57 + + +waiting on router queue for slot.... +17:10:57 Sending to : <0> +17:10:57 ============================================================================ +17:10:57 ============================================================================ +17:10:57 Slot Id : <91> +17:10:57 Transaction Type : RESPONSE +17:10:57 Received From : +17:10:57 ============================================================================ +17:10:57 FNo. Len. Field Value +17:10:57 ============================================================================ +17:10:57 [ 1] [ 4] [0210] +17:10:57 [ 2] [ 16] [6213544002118104] +17:10:57 [ 3] [ 6] [011000] +17:10:57 [ 4] [ 12] [000025000000] +17:10:57 [ 7] [ 10] [0320171117] +17:10:57 [ 11] [ 6] [209326] +17:10:57 [ 12] [ 6] [170623] +17:10:57 [ 13] [ 4] [0320] +17:10:57 [ 15] [ 4] [0320] +17:10:57 [ 18] [ 4] [6011] +17:10:57 [ 19] [ 3] [418] +17:10:57 [ 22] [ 3] [021] +17:10:57 [ 32] [ 6] [198901] +17:10:57 [ 35] [ 32] [6213544002118104=491212011810333] +17:10:57 [ 37] [ 12] [507917209326] +17:10:57 [ 38] [ 6] [171052] +17:10:57 [ 39] [ 2] [75] +17:10:57 [ 41] [ 8] [19529001] +17:10:57 [ 49] [ 3] [418] +17:10:57 ============================================================================ +17:10:57 Sending to : +17:10:57 ============================================================================ +17:10:57 + + +waiting on router queue for slot.... +17:10:58 ============================================================================ +17:10:58 Slot Id : <99> +17:10:58 Transaction Type : RESPONSE +17:10:58 Received From : +17:10:58 ============================================================================ +17:10:58 FNo. Len. Field Value +17:10:58 ============================================================================ +17:10:58 [ 1] [ 4] [0210] +17:10:58 [ 2] [ 16] [6688990100962206] +17:10:58 [ 3] [ 6] [301000] +17:10:58 [ 4] [ 12] [000000000000] +17:10:58 [ 7] [ 10] [0320101003] +17:10:58 [ 11] [ 6] [270733] +17:10:58 [ 12] [ 6] [171003] +17:10:58 [ 13] [ 4] [0320] +17:10:58 [ 15] [ 4] [0320] +17:10:58 [ 18] [ 4] [6011] +17:10:58 [ 19] [ 3] [418] +17:10:58 [ 22] [ 3] [021] +17:10:58 [ 32] [ 6] [180893] +17:10:58 [ 35] [ 37] [6688990100962206=41121231220618500000] +17:10:58 [ 37] [ 12] [507910270733] +17:10:58 [ 39] [ 2] [14] +17:10:58 [ 41] [ 8] [0467PSLK] +17:10:58 [ 49] [ 3] [418] +17:10:58 ============================================================================ +17:10:58 Calculate Source COMM Id = 2 +17:10:58 ============================================================================ +17:10:58 + + +waiting on router queue for slot.... +17:11:00 ============================================================================ +17:11:00 Slot Id : <91> +17:11:00 Transaction Type : RESPONSE +17:11:00 Received From : +17:11:00 ============================================================================ +17:11:00 FNo. Len. Field Value +17:11:00 ============================================================================ +17:11:00 [ 1] [ 4] [0210] +17:11:00 [ 2] [ 16] [6213544002118104] +17:11:00 [ 3] [ 6] [011000] +17:11:00 [ 4] [ 12] [000025000000] +17:11:00 [ 7] [ 10] [0320171117] +17:11:00 [ 11] [ 6] [209326] +17:11:00 [ 12] [ 6] [170623] +17:11:00 [ 13] [ 4] [0320] +17:11:00 [ 15] [ 4] [0320] +17:11:00 [ 18] [ 4] [6011] +17:11:00 [ 19] [ 3] [418] +17:11:00 [ 22] [ 3] [021] +17:11:00 [ 32] [ 6] [198901] +17:11:00 [ 35] [ 32] [6213544002118104=491212011810333] +17:11:00 [ 37] [ 12] [507917209326] +17:11:00 [ 38] [ 6] [171052] +17:11:00 [ 39] [ 2] [75] +17:11:00 [ 41] [ 8] [19529001] +17:11:00 [ 49] [ 3] [418] +17:11:00 ============================================================================ +17:11:00 Calculate Source COMM Id = 5 +17:11:00 ============================================================================ +17:11:00 + + +waiting on router queue for slot.... +17:11:00 ============================================================================ +17:11:00 Slot Id : <64> +17:11:00 Transaction Type : REQUEST +17:11:00 Received From : +17:11:00 ============================================================================ +17:11:00 FNo. Len. Field Value +17:11:00 ============================================================================ +17:11:00 [ 1] [ 4] [0800] +17:11:00 [ 7] [ 10] [0320101007] +17:11:00 [ 11] [ 6] [157397] +17:11:00 [ 70] [ 3] [301] +17:11:00 ============================================================================ +17:11:00 + + +waiting on router queue for slot.... +17:11:00 Sending to : +17:11:00 ============================================================================ +17:11:00 ============================================================================ +17:11:00 Slot Id : <64> +17:11:00 Transaction Type : RESPONSE +17:11:00 Received From : +17:11:00 ============================================================================ +17:11:00 FNo. Len. Field Value +17:11:00 ============================================================================ +17:11:00 [ 1] [ 4] [0810] +17:11:00 [ 7] [ 10] [0320101007] +17:11:00 [ 11] [ 6] [157397] +17:11:00 [ 39] [ 2] [00] +17:11:00 [ 70] [ 3] [301] +17:11:00 ============================================================================ +17:11:00 Calculate Source COMM Id = 2 +17:11:00 ============================================================================ +17:11:00 + + +waiting on router queue for slot.... +17:11:11 ============================================================================ +17:11:11 Slot Id : <100> +17:11:11 Transaction Type : REQUEST +17:11:11 Received From : +17:11:11 ============================================================================ +17:11:11 FNo. Len. Field Value +17:11:11 ============================================================================ +17:11:11 [ 1] [ 4] [0800] +17:11:11 [ 7] [ 10] [0320101018] +17:11:11 [ 11] [ 6] [157398] +17:11:11 [ 70] [ 3] [301] +17:11:11 ============================================================================ +17:11:11 + + +waiting on router queue for slot.... +17:11:11 Sending to : +17:11:11 ============================================================================ +17:11:11 ============================================================================ +17:11:11 Slot Id : <100> +17:11:11 Transaction Type : RESPONSE +17:11:11 Received From : +17:11:11 ============================================================================ +17:11:11 FNo. Len. Field Value +17:11:11 ============================================================================ +17:11:11 [ 1] [ 4] [0810] +17:11:11 [ 7] [ 10] [0320101018] +17:11:11 [ 11] [ 6] [157398] +17:11:11 [ 39] [ 2] [00] +17:11:11 [ 70] [ 3] [301] +17:11:11 ============================================================================ +17:11:11 Calculate Source COMM Id = 2 +17:11:11 ============================================================================ +17:11:11 + + +waiting on router queue for slot.... +17:11:12 ============================================================================ +17:11:12 Slot Id : <65> +17:11:12 Transaction Type : REQUEST +17:11:12 Received From : +17:11:12 ============================================================================ +17:11:12 FNo. Len. Field Value +17:11:12 ============================================================================ +17:11:12 [ 1] [ 4] [0200] +17:11:12 [ 2] [ 16] [6213544001465472] +17:11:12 [ 3] [ 6] [010000] +17:11:12 [ 4] [ 12] [000100000000] +17:11:12 [ 7] [ 10] [0320170902] +17:11:12 [ 11] [ 6] [953051] +17:11:12 [ 12] [ 6] [170902] +17:11:12 [ 13] [ 4] [0320] +17:11:12 [ 15] [ 4] [0320] +17:11:12 [ 18] [ 4] [6011] +17:11:12 [ 19] [ 3] [418] +17:11:12 [ 22] [ 3] [021] +17:11:12 [ 25] [ 2] [01] +17:11:12 [ 28] [ 9] [D00002000] +17:11:12 [ 32] [ 6] [668899] +17:11:12 [ 35] [ 32] [6213544001465472=491212016547762] +17:11:12 [ 37] [ 12] [507902161287] +17:11:12 [ 41] [ 8] [03020026] +17:11:12 [ 42] [ 15] [APT ] +17:11:12 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +17:11:12 [ 49] [ 3] [418] +17:11:12 [ 52] [ 16] [A904AF327003B06E] +17:11:12 ============================================================================ +17:11:12 + + +waiting on router queue for slot.... +17:11:12 Sending to : +17:11:12 ============================================================================ +17:11:12 Sending to : +17:11:12 ============================================================================ +17:11:12 ============================================================================ +17:11:12 Slot Id : <65> +17:11:12 Transaction Type : REQUEST +17:11:12 Received From : +17:11:12 ============================================================================ +17:11:12 FNo. Len. Field Value +17:11:12 ============================================================================ +17:11:12 [ 1] [ 4] [0200] +17:11:12 [ 2] [ 16] [6213544001465472] +17:11:12 [ 3] [ 6] [010000] +17:11:12 [ 4] [ 12] [000100000000] +17:11:12 [ 7] [ 10] [0320170902] +17:11:12 [ 11] [ 6] [953051] +17:11:12 [ 12] [ 6] [170902] +17:11:12 [ 13] [ 4] [0320] +17:11:12 [ 15] [ 4] [0320] +17:11:12 [ 18] [ 4] [6011] +17:11:12 [ 19] [ 3] [418] +17:11:12 [ 22] [ 3] [021] +17:11:12 [ 25] [ 2] [01] +17:11:12 [ 28] [ 9] [D00002000] +17:11:12 [ 32] [ 6] [668899] +17:11:12 [ 35] [ 32] [6213544001465472=491212016547762] +17:11:12 [ 37] [ 12] [507902161287] +17:11:12 [ 41] [ 8] [03020026] +17:11:12 [ 42] [ 15] [APT ] +17:11:12 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +17:11:12 [ 49] [ 3] [418] +17:11:12 [ 52] [ 16] [A904AF327003B06E] +17:11:12 ============================================================================ +17:11:12 + + +waiting on router queue for slot.... +17:11:12 Sending to : +17:11:12 ============================================================================ +17:11:12 ============================================================================ +17:11:12 Slot Id : <65> +17:11:12 Transaction Type : REQUEST +17:11:12 Received From : +17:11:12 ============================================================================ +17:11:12 FNo. Len. Field Value +17:11:12 ============================================================================ +17:11:12 [ 1] [ 4] [0200] +17:11:12 [ 2] [ 16] [6213544001465472] +17:11:12 [ 3] [ 6] [010000] +17:11:12 [ 4] [ 12] [000100000000] +17:11:12 [ 7] [ 10] [0320170902] +17:11:12 [ 11] [ 6] [953051] +17:11:12 [ 12] [ 6] [170902] +17:11:12 [ 13] [ 4] [0320] +17:11:12 [ 15] [ 4] [0320] +17:11:12 [ 18] [ 4] [6011] +17:11:12 [ 19] [ 3] [418] +17:11:12 [ 22] [ 3] [021] +17:11:12 [ 25] [ 2] [01] +17:11:12 [ 28] [ 9] [D00002000] +17:11:12 [ 32] [ 6] [668899] +17:11:12 [ 35] [ 32] [6213544001465472=491212016547762] +17:11:12 [ 37] [ 12] [507902161287] +17:11:12 [ 41] [ 8] [03020026] +17:11:12 [ 42] [ 15] [APT ] +17:11:12 [ 43] [ 40] [ CHAO ANOUVONG STATDUIM VI] +17:11:12 [ 49] [ 3] [418] +17:11:12 [ 52] [ 16] [9609FC7E5AB0B42B] +17:11:12 ============================================================================ +17:11:12 + + +waiting on router queue for slot.... +17:11:12 Sending to : <0> +17:11:12 ============================================================================ +17:11:13 ============================================================================ +17:11:13 Slot Id : <65> +17:11:13 Transaction Type : RESPONSE +17:11:13 Received From : +17:11:13 ============================================================================ +17:11:13 FNo. Len. Field Value +17:11:13 ============================================================================ +17:11:13 [ 1] [ 4] [0210] +17:11:13 [ 2] [ 16] [6213544001465472] +17:11:13 [ 3] [ 6] [010000] +17:11:13 [ 4] [ 12] [000100000000] +17:11:13 [ 7] [ 10] [0320170902] +17:11:13 [ 11] [ 6] [953051] +17:11:13 [ 12] [ 6] [170902] +17:11:13 [ 13] [ 4] [0320] +17:11:13 [ 15] [ 4] [0320] +17:11:13 [ 18] [ 4] [6011] +17:11:13 [ 19] [ 3] [418] +17:11:13 [ 32] [ 6] [668899] +17:11:13 [ 35] [ 32] [6213544001465472=491212016547762] +17:11:13 [ 37] [ 12] [507902161287] +17:11:13 [ 38] [ 6] [583411] +17:11:13 [ 39] [ 2] [00] +17:11:13 [ 41] [ 8] [03020026] +17:11:13 [ 49] [ 3] [418] +17:11:13 [ 54] [ 40] [0001418C0000066616370002418C000006661637] +17:11:13 ============================================================================ +17:11:13 Sending to : +17:11:13 ============================================================================ +17:11:13 + + +waiting on router queue for slot.... +17:11:14 ============================================================================ +17:11:14 Slot Id : <65> +17:11:14 Transaction Type : RESPONSE +17:11:14 Received From : +17:11:14 ============================================================================ +17:11:14 FNo. Len. Field Value +17:11:14 ============================================================================ +17:11:14 [ 1] [ 4] [0210] +17:11:14 [ 2] [ 16] [6213544001465472] +17:11:14 [ 3] [ 6] [010000] +17:11:14 [ 4] [ 12] [000100000000] +17:11:14 [ 7] [ 10] [0320170902] +17:11:14 [ 11] [ 6] [953051] +17:11:14 [ 12] [ 6] [170902] +17:11:14 [ 13] [ 4] [0320] +17:11:14 [ 15] [ 4] [0320] +17:11:14 [ 18] [ 4] [6011] +17:11:14 [ 19] [ 3] [418] +17:11:14 [ 32] [ 6] [668899] +17:11:14 [ 35] [ 32] [6213544001465472=491212016547762] +17:11:14 [ 37] [ 12] [507902161287] +17:11:14 [ 38] [ 6] [583411] +17:11:14 [ 39] [ 2] [00] +17:11:14 [ 41] [ 8] [03020026] +17:11:14 [ 49] [ 3] [418] +17:11:14 [ 54] [ 40] [0001418C0000066616370002418C000006661637] +17:11:14 ============================================================================ +17:11:14 Calculate Source COMM Id = 4 +17:11:14 ============================================================================ +17:11:14 + + +waiting on router queue for slot.... +17:11:15 ============================================================================ +17:11:15 Slot Id : <72> +17:11:15 Transaction Type : REQUEST +17:11:15 Received From : +17:11:15 ============================================================================ +17:11:15 FNo. Len. Field Value +17:11:15 ============================================================================ +17:11:15 [ 1] [ 4] [0800] +17:11:15 [ 7] [ 10] [0321002304] +17:11:15 [ 11] [ 6] [172304] +17:11:15 [ 37] [ 12] [57917172304] +17:11:15 [ 70] [ 3] [301] +17:11:15 ============================================================================ +17:11:15 + + +waiting on router queue for slot.... +17:11:15 Sending to : +17:11:15 ============================================================================ +17:11:15 ============================================================================ +17:11:15 Slot Id : <72> +17:11:15 Transaction Type : RESPONSE +17:11:15 Received From : +17:11:15 ============================================================================ +17:11:15 FNo. Len. Field Value +17:11:15 ============================================================================ +17:11:15 [ 1] [ 4] [0810] +17:11:15 [ 7] [ 10] [0321002304] +17:11:15 [ 11] [ 6] [172304] +17:11:15 [ 37] [ 12] [579171723040] +17:11:15 [ 39] [ 2] [00] +17:11:15 [ 70] [ 3] [810] +17:11:15 ============================================================================ +17:11:15 Calculate Source COMM Id = 6 +17:11:15 ============================================================================ +17:11:15 + + +waiting on router queue for slot.... +17:11:15 ============================================================================ +17:11:15 Slot Id : <76> +17:11:15 Transaction Type : REQUEST +17:11:15 Received From : +17:11:15 ============================================================================ +17:11:15 FNo. Len. Field Value +17:11:15 ============================================================================ +17:11:15 [ 1] [ 4] [0200] +17:11:15 [ 2] [ 16] [6213544002162235] +17:11:15 [ 3] [ 6] [010000] +17:11:15 [ 4] [ 12] [000045000000] +17:11:15 [ 7] [ 10] [0320170905] +17:11:15 [ 11] [ 6] [953053] +17:11:15 [ 12] [ 6] [170905] +17:11:15 [ 13] [ 4] [0320] +17:11:15 [ 15] [ 4] [0320] +17:11:15 [ 18] [ 4] [6011] +17:11:15 [ 19] [ 3] [418] +17:11:15 [ 22] [ 3] [021] +17:11:15 [ 25] [ 2] [01] +17:11:15 [ 28] [ 9] [D00002000] +17:11:15 [ 32] [ 6] [668899] +17:11:15 [ 35] [ 32] [6213544002162235=491212016223882] +17:11:15 [ 37] [ 12] [507902025666] +17:11:15 [ 41] [ 8] [03414002] +17:11:15 [ 42] [ 15] [APT ] +17:11:15 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:11:15 [ 49] [ 3] [418] +17:11:15 [ 52] [ 16] [A47CE1DF2D20D1A9] +17:11:15 ============================================================================ +17:11:15 + + +waiting on router queue for slot.... +17:11:15 Sending to : +17:11:15 ============================================================================ +17:11:15 Sending to : +17:11:15 ============================================================================ +17:11:16 ============================================================================ +17:11:16 Slot Id : <76> +17:11:16 Transaction Type : REQUEST +17:11:16 Received From : +17:11:16 ============================================================================ +17:11:16 FNo. Len. Field Value +17:11:16 ============================================================================ +17:11:16 [ 1] [ 4] [0200] +17:11:16 [ 2] [ 16] [6213544002162235] +17:11:16 [ 3] [ 6] [010000] +17:11:16 [ 4] [ 12] [000045000000] +17:11:16 [ 7] [ 10] [0320170905] +17:11:16 [ 11] [ 6] [953053] +17:11:16 [ 12] [ 6] [170905] +17:11:16 [ 13] [ 4] [0320] +17:11:16 [ 15] [ 4] [0320] +17:11:16 [ 18] [ 4] [6011] +17:11:16 [ 19] [ 3] [418] +17:11:16 [ 22] [ 3] [021] +17:11:16 [ 25] [ 2] [01] +17:11:16 [ 28] [ 9] [D00002000] +17:11:16 [ 32] [ 6] [668899] +17:11:16 [ 35] [ 32] [6213544002162235=491212016223882] +17:11:16 [ 37] [ 12] [507902025666] +17:11:16 [ 41] [ 8] [03414002] +17:11:16 [ 42] [ 15] [APT ] +17:11:16 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:11:16 [ 49] [ 3] [418] +17:11:16 [ 52] [ 16] [A47CE1DF2D20D1A9] +17:11:16 ============================================================================ +17:11:16 + + +waiting on router queue for slot.... +17:11:16 Sending to : +17:11:16 ============================================================================ +17:11:16 ============================================================================ +17:11:16 Slot Id : <76> +17:11:16 Transaction Type : REQUEST +17:11:16 Received From : +17:11:16 ============================================================================ +17:11:16 FNo. Len. Field Value +17:11:16 ============================================================================ +17:11:16 [ 1] [ 4] [0200] +17:11:16 [ 2] [ 16] [6213544002162235] +17:11:16 [ 3] [ 6] [010000] +17:11:16 [ 4] [ 12] [000045000000] +17:11:16 [ 7] [ 10] [0320170905] +17:11:16 [ 11] [ 6] [953053] +17:11:16 [ 12] [ 6] [170905] +17:11:16 [ 13] [ 4] [0320] +17:11:16 [ 15] [ 4] [0320] +17:11:16 [ 18] [ 4] [6011] +17:11:16 [ 19] [ 3] [418] +17:11:16 [ 22] [ 3] [021] +17:11:16 [ 25] [ 2] [01] +17:11:16 [ 28] [ 9] [D00002000] +17:11:16 [ 32] [ 6] [668899] +17:11:16 [ 35] [ 32] [6213544002162235=491212016223882] +17:11:16 [ 37] [ 12] [507902025666] +17:11:16 [ 41] [ 8] [03414002] +17:11:16 [ 42] [ 15] [APT ] +17:11:16 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:11:16 [ 49] [ 3] [418] +17:11:16 [ 52] [ 16] [C79020B31BA90731] +17:11:16 ============================================================================ +17:11:16 + + +waiting on router queue for slot.... +17:11:16 Sending to : <0> +17:11:16 ============================================================================ +17:11:17 ============================================================================ +17:11:17 Slot Id : <76> +17:11:17 Transaction Type : RESPONSE +17:11:17 Received From : +17:11:17 ============================================================================ +17:11:17 FNo. Len. Field Value +17:11:17 ============================================================================ +17:11:17 [ 1] [ 4] [0210] +17:11:17 [ 2] [ 16] [6213544002162235] +17:11:17 [ 3] [ 6] [010000] +17:11:17 [ 4] [ 12] [000045000000] +17:11:17 [ 7] [ 10] [0320170905] +17:11:17 [ 11] [ 6] [953053] +17:11:17 [ 12] [ 6] [170905] +17:11:17 [ 13] [ 4] [0320] +17:11:17 [ 15] [ 4] [0320] +17:11:17 [ 18] [ 4] [6011] +17:11:17 [ 19] [ 3] [418] +17:11:17 [ 32] [ 6] [668899] +17:11:17 [ 35] [ 32] [6213544002162235=491212016223882] +17:11:17 [ 37] [ 12] [507902025666] +17:11:17 [ 38] [ 6] [953053] +17:11:17 [ 39] [ 2] [51] +17:11:17 [ 41] [ 8] [03414002] +17:11:17 [ 49] [ 3] [418] +17:11:17 [ 54] [ 40] [0001418C0000354983170002418C000035498317] +17:11:17 ============================================================================ +17:11:17 Sending to : +17:11:17 ============================================================================ +17:11:17 + + +waiting on router queue for slot.... +17:11:19 ============================================================================ +17:11:19 Slot Id : <76> +17:11:19 Transaction Type : RESPONSE +17:11:19 Received From : +17:11:19 ============================================================================ +17:11:19 FNo. Len. Field Value +17:11:19 ============================================================================ +17:11:19 [ 1] [ 4] [0210] +17:11:19 [ 2] [ 16] [6213544002162235] +17:11:19 [ 3] [ 6] [010000] +17:11:19 [ 4] [ 12] [000045000000] +17:11:19 [ 7] [ 10] [0320170905] +17:11:19 [ 11] [ 6] [953053] +17:11:19 [ 12] [ 6] [170905] +17:11:19 [ 13] [ 4] [0320] +17:11:19 [ 15] [ 4] [0320] +17:11:19 [ 18] [ 4] [6011] +17:11:19 [ 19] [ 3] [418] +17:11:19 [ 32] [ 6] [668899] +17:11:19 [ 35] [ 32] [6213544002162235=491212016223882] +17:11:19 [ 37] [ 12] [507902025666] +17:11:19 [ 38] [ 6] [953053] +17:11:19 [ 39] [ 2] [51] +17:11:19 [ 41] [ 8] [03414002] +17:11:19 [ 49] [ 3] [418] +17:11:19 [ 54] [ 40] [0001418C0000354983170002418C000035498317] +17:11:19 ============================================================================ +17:11:19 Calculate Source COMM Id = 4 +17:11:19 ============================================================================ +17:11:19 + + +waiting on router queue for slot.... +17:11:21 ============================================================================ +17:11:21 Slot Id : <90> +17:11:21 Transaction Type : REQUEST +17:11:21 Received From : +17:11:21 ============================================================================ +17:11:21 FNo. Len. Field Value +17:11:21 ============================================================================ +17:11:21 [ 1] [ 4] [0800] +17:11:21 [ 7] [ 10] [0320101028] +17:11:21 [ 11] [ 6] [157399] +17:11:21 [ 70] [ 3] [301] +17:11:21 ============================================================================ +17:11:21 + + +waiting on router queue for slot.... +17:11:21 Sending to : +17:11:21 ============================================================================ +17:11:21 ============================================================================ +17:11:21 Slot Id : <90> +17:11:21 Transaction Type : RESPONSE +17:11:21 Received From : +17:11:21 ============================================================================ +17:11:21 FNo. Len. Field Value +17:11:21 ============================================================================ +17:11:21 [ 1] [ 4] [0810] +17:11:21 [ 7] [ 10] [0320101028] +17:11:21 [ 11] [ 6] [157399] +17:11:21 [ 39] [ 2] [00] +17:11:21 [ 70] [ 3] [301] +17:11:21 ============================================================================ +17:11:21 Calculate Source COMM Id = 2 +17:11:21 ============================================================================ +17:11:21 + + +waiting on router queue for slot.... +17:11:22 ============================================================================ +17:11:22 Slot Id : <106> +17:11:22 Transaction Type : REQUEST +17:11:22 Received From : +17:11:22 ============================================================================ +17:11:22 FNo. Len. Field Value +17:11:22 ============================================================================ +17:11:22 [ 1] [ 4] [0800] +17:11:22 [ 7] [ 10] [0320100912] +17:11:22 [ 11] [ 6] [087568] +17:11:22 [ 37] [ 12] [57917087568] +17:11:22 [ 70] [ 3] [301] +17:11:22 ============================================================================ +17:11:22 + + +waiting on router queue for slot.... +17:11:22 Sending to : +17:11:22 ============================================================================ +17:11:22 ============================================================================ +17:11:22 Slot Id : <106> +17:11:22 Transaction Type : RESPONSE +17:11:22 Received From : +17:11:22 ============================================================================ +17:11:22 FNo. Len. Field Value +17:11:22 ============================================================================ +17:11:22 [ 1] [ 4] [0810] +17:11:22 [ 7] [ 10] [0320100912] +17:11:22 [ 11] [ 6] [087568] +17:11:22 [ 37] [ 12] [579170875680] +17:11:22 [ 39] [ 2] [00] +17:11:22 [ 70] [ 3] [810] +17:11:22 ============================================================================ +17:11:22 Calculate Source COMM Id = 4 +17:11:22 ============================================================================ +17:11:22 + + +waiting on router queue for slot.... +17:11:25 ============================================================================ +17:11:25 Slot Id : <114> +17:11:25 Transaction Type : REQUEST +17:11:25 Received From : +17:11:25 ============================================================================ +17:11:25 FNo. Len. Field Value +17:11:25 ============================================================================ +17:11:25 [ 1] [ 4] [0200] +17:11:25 [ 2] [ 16] [6213544001612677] +17:11:25 [ 3] [ 6] [301000] +17:11:25 [ 4] [ 12] [000000000000] +17:11:25 [ 7] [ 10] [0320171145] +17:11:25 [ 11] [ 6] [209332] +17:11:25 [ 12] [ 6] [170738] +17:11:25 [ 13] [ 4] [0320] +17:11:25 [ 14] [ 4] [4912] +17:11:25 [ 15] [ 4] [0320] +17:11:25 [ 18] [ 4] [6011] +17:11:25 [ 19] [ 3] [418] +17:11:25 [ 22] [ 3] [021] +17:11:25 [ 25] [ 2] [01] +17:11:25 [ 28] [ 9] [D00000000] +17:11:25 [ 32] [ 6] [198901] +17:11:25 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:25 [ 37] [ 12] [507917209332] +17:11:25 [ 41] [ 8] [00852902] +17:11:25 [ 42] [ 15] [000000040852902] +17:11:25 [ 43] [ 40] [ATM SAVANCH II VN ] +17:11:25 [ 49] [ 3] [418] +17:11:25 [ 52] [ 16] [508D27236AC1A75E] +17:11:25 ============================================================================ +17:11:25 + + +waiting on router queue for slot.... +17:11:25 Sending to : +17:11:25 ============================================================================ +17:11:25 Sending to : +17:11:25 ============================================================================ +17:11:25 ============================================================================ +17:11:25 Slot Id : <114> +17:11:25 Transaction Type : REQUEST +17:11:25 Received From : +17:11:25 ============================================================================ +17:11:25 FNo. Len. Field Value +17:11:25 ============================================================================ +17:11:25 [ 1] [ 4] [0200] +17:11:25 [ 2] [ 16] [6213544001612677] +17:11:25 [ 3] [ 6] [301000] +17:11:25 [ 4] [ 12] [000000000000] +17:11:25 [ 7] [ 10] [0320171145] +17:11:25 [ 11] [ 6] [209332] +17:11:25 [ 12] [ 6] [170738] +17:11:25 [ 13] [ 4] [0320] +17:11:25 [ 14] [ 4] [4912] +17:11:25 [ 15] [ 4] [0320] +17:11:25 [ 18] [ 4] [6011] +17:11:25 [ 19] [ 3] [418] +17:11:25 [ 22] [ 3] [021] +17:11:25 [ 25] [ 2] [01] +17:11:25 [ 28] [ 9] [D00000000] +17:11:25 [ 32] [ 6] [198901] +17:11:25 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:25 [ 37] [ 12] [507917209332] +17:11:25 [ 41] [ 8] [00852902] +17:11:25 [ 42] [ 15] [000000040852902] +17:11:25 [ 43] [ 40] [ATM SAVANCH II VN ] +17:11:25 [ 49] [ 3] [418] +17:11:25 [ 52] [ 16] [508D27236AC1A75E] +17:11:25 ============================================================================ +17:11:25 + + +waiting on router queue for slot.... +17:11:25 Sending to : +17:11:25 ============================================================================ +17:11:25 ============================================================================ +17:11:25 Slot Id : <114> +17:11:25 Transaction Type : REQUEST +17:11:25 Received From : +17:11:25 ============================================================================ +17:11:25 FNo. Len. Field Value +17:11:25 ============================================================================ +17:11:25 [ 1] [ 4] [0200] +17:11:25 [ 2] [ 16] [6213544001612677] +17:11:25 [ 3] [ 6] [301000] +17:11:25 [ 4] [ 12] [000000000000] +17:11:25 [ 7] [ 10] [0320171145] +17:11:25 [ 11] [ 6] [209332] +17:11:25 [ 12] [ 6] [170738] +17:11:25 [ 13] [ 4] [0320] +17:11:25 [ 14] [ 4] [4912] +17:11:25 [ 15] [ 4] [0320] +17:11:25 [ 18] [ 4] [6011] +17:11:25 [ 19] [ 3] [418] +17:11:25 [ 22] [ 3] [021] +17:11:25 [ 25] [ 2] [01] +17:11:25 [ 28] [ 9] [D00000000] +17:11:25 [ 32] [ 6] [198901] +17:11:25 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:25 [ 37] [ 12] [507917209332] +17:11:25 [ 41] [ 8] [00852902] +17:11:25 [ 42] [ 15] [000000040852902] +17:11:25 [ 43] [ 40] [ATM SAVANCH II VN ] +17:11:25 [ 49] [ 3] [418] +17:11:25 [ 52] [ 16] [5487B3E58276B6DC] +17:11:25 ============================================================================ +17:11:25 + + +waiting on router queue for slot.... +17:11:25 Sending to : <0> +17:11:25 ============================================================================ +17:11:25 ============================================================================ +17:11:25 Slot Id : <114> +17:11:25 Transaction Type : RESPONSE +17:11:25 Received From : +17:11:25 ============================================================================ +17:11:25 FNo. Len. Field Value +17:11:25 ============================================================================ +17:11:25 [ 1] [ 4] [0210] +17:11:25 [ 2] [ 16] [6213544001612677] +17:11:25 [ 3] [ 6] [301000] +17:11:25 [ 4] [ 12] [000000000000] +17:11:25 [ 7] [ 10] [0320171145] +17:11:25 [ 11] [ 6] [209332] +17:11:25 [ 12] [ 6] [170738] +17:11:25 [ 13] [ 4] [0320] +17:11:25 [ 15] [ 4] [0320] +17:11:25 [ 18] [ 4] [6011] +17:11:25 [ 19] [ 3] [418] +17:11:25 [ 32] [ 6] [198901] +17:11:25 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:25 [ 37] [ 12] [507917209332] +17:11:25 [ 38] [ 6] [472415] +17:11:25 [ 39] [ 2] [00] +17:11:25 [ 41] [ 8] [00852902] +17:11:25 [ 49] [ 3] [418] +17:11:25 [ 54] [ 40] [1001418C0000607243131002418C000060724313] +17:11:25 ============================================================================ +17:11:25 Sending to : +17:11:25 ============================================================================ +17:11:25 + + +waiting on router queue for slot.... +17:11:27 ============================================================================ +17:11:27 Slot Id : <114> +17:11:27 Transaction Type : RESPONSE +17:11:27 Received From : +17:11:27 ============================================================================ +17:11:27 FNo. Len. Field Value +17:11:27 ============================================================================ +17:11:27 [ 1] [ 4] [0210] +17:11:27 [ 2] [ 16] [6213544001612677] +17:11:27 [ 3] [ 6] [301000] +17:11:27 [ 4] [ 12] [000000000000] +17:11:27 [ 7] [ 10] [0320171145] +17:11:27 [ 11] [ 6] [209332] +17:11:27 [ 12] [ 6] [170738] +17:11:27 [ 13] [ 4] [0320] +17:11:27 [ 15] [ 4] [0320] +17:11:27 [ 18] [ 4] [6011] +17:11:27 [ 19] [ 3] [418] +17:11:27 [ 32] [ 6] [198901] +17:11:27 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:27 [ 37] [ 12] [507917209332] +17:11:27 [ 38] [ 6] [472415] +17:11:27 [ 39] [ 2] [00] +17:11:27 [ 41] [ 8] [00852902] +17:11:27 [ 49] [ 3] [418] +17:11:27 [ 54] [ 40] [1001418C0000607243131002418C000060724313] +17:11:27 ============================================================================ +17:11:27 Calculate Source COMM Id = 5 +17:11:27 ============================================================================ +17:11:27 + + +waiting on router queue for slot.... +17:11:30 ============================================================================ +17:11:30 Slot Id : <66> +17:11:30 Transaction Type : REQUEST +17:11:30 Received From : +17:11:30 ============================================================================ +17:11:30 FNo. Len. Field Value +17:11:30 ============================================================================ +17:11:30 [ 1] [ 4] [0200] +17:11:30 [ 2] [ 16] [6213548000115673] +17:11:30 [ 3] [ 6] [010000] +17:11:30 [ 4] [ 12] [000030000000] +17:11:30 [ 7] [ 10] [0320170920] +17:11:30 [ 11] [ 6] [953059] +17:11:30 [ 12] [ 6] [170920] +17:11:30 [ 13] [ 4] [0320] +17:11:30 [ 15] [ 4] [0320] +17:11:30 [ 18] [ 4] [6011] +17:11:30 [ 19] [ 3] [418] +17:11:30 [ 22] [ 3] [021] +17:11:30 [ 25] [ 2] [01] +17:11:30 [ 28] [ 9] [D00002000] +17:11:30 [ 32] [ 6] [668899] +17:11:30 [ 35] [ 32] [6213548000115673=131012011567024] +17:11:30 [ 37] [ 12] [507900844994] +17:11:30 [ 41] [ 8] [03015003] +17:11:30 [ 42] [ 15] [APT ] +17:11:30 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +17:11:30 [ 49] [ 3] [418] +17:11:30 [ 52] [ 16] [85D63E2522763690] +17:11:30 ============================================================================ +17:11:30 + + +waiting on router queue for slot.... +17:11:30 Sending to : +17:11:30 ============================================================================ +17:11:30 Sending to : +17:11:30 ============================================================================ +17:11:30 ============================================================================ +17:11:30 Slot Id : <66> +17:11:30 Transaction Type : REQUEST +17:11:30 Received From : +17:11:30 ============================================================================ +17:11:30 FNo. Len. Field Value +17:11:30 ============================================================================ +17:11:30 [ 1] [ 4] [0200] +17:11:30 [ 2] [ 16] [6213548000115673] +17:11:30 [ 3] [ 6] [010000] +17:11:30 [ 4] [ 12] [000030000000] +17:11:30 [ 7] [ 10] [0320170920] +17:11:30 [ 11] [ 6] [953059] +17:11:30 [ 12] [ 6] [170920] +17:11:30 [ 13] [ 4] [0320] +17:11:30 [ 15] [ 4] [0320] +17:11:30 [ 18] [ 4] [6011] +17:11:30 [ 19] [ 3] [418] +17:11:30 [ 22] [ 3] [021] +17:11:30 [ 25] [ 2] [01] +17:11:30 [ 28] [ 9] [D00002000] +17:11:30 [ 32] [ 6] [668899] +17:11:30 [ 35] [ 32] [6213548000115673=131012011567024] +17:11:30 [ 37] [ 12] [507900844994] +17:11:30 [ 41] [ 8] [03015003] +17:11:30 [ 42] [ 15] [APT ] +17:11:30 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +17:11:30 [ 49] [ 3] [418] +17:11:30 [ 52] [ 16] [85D63E2522763690] +17:11:30 ============================================================================ +17:11:30 + + +waiting on router queue for slot.... +17:11:30 Sending to : +17:11:30 ============================================================================ +17:11:30 ============================================================================ +17:11:30 Slot Id : <66> +17:11:30 Transaction Type : REQUEST +17:11:30 Received From : +17:11:30 ============================================================================ +17:11:30 FNo. Len. Field Value +17:11:30 ============================================================================ +17:11:30 [ 1] [ 4] [0200] +17:11:30 [ 2] [ 16] [6213548000115673] +17:11:30 [ 3] [ 6] [010000] +17:11:30 [ 4] [ 12] [000030000000] +17:11:30 [ 7] [ 10] [0320170920] +17:11:30 [ 11] [ 6] [953059] +17:11:30 [ 12] [ 6] [170920] +17:11:30 [ 13] [ 4] [0320] +17:11:30 [ 15] [ 4] [0320] +17:11:30 [ 18] [ 4] [6011] +17:11:30 [ 19] [ 3] [418] +17:11:30 [ 22] [ 3] [021] +17:11:30 [ 25] [ 2] [01] +17:11:30 [ 28] [ 9] [D00002000] +17:11:30 [ 32] [ 6] [668899] +17:11:30 [ 35] [ 32] [6213548000115673=131012011567024] +17:11:30 [ 37] [ 12] [507900844994] +17:11:30 [ 41] [ 8] [03015003] +17:11:30 [ 42] [ 15] [APT ] +17:11:30 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +17:11:30 [ 49] [ 3] [418] +17:11:30 [ 52] [ 16] [F48C861273861C75] +17:11:30 ============================================================================ +17:11:30 + + +waiting on router queue for slot.... +17:11:30 Sending to : <0> +17:11:30 ============================================================================ +17:11:31 ============================================================================ +17:11:31 Slot Id : <66> +17:11:31 Transaction Type : RESPONSE +17:11:31 Received From : +17:11:31 ============================================================================ +17:11:31 FNo. Len. Field Value +17:11:31 ============================================================================ +17:11:31 [ 1] [ 4] [0210] +17:11:31 [ 2] [ 16] [6213548000115673] +17:11:31 [ 3] [ 6] [010000] +17:11:31 [ 4] [ 12] [000030000000] +17:11:31 [ 7] [ 10] [0320170920] +17:11:31 [ 11] [ 6] [953059] +17:11:31 [ 12] [ 6] [170920] +17:11:31 [ 13] [ 4] [0320] +17:11:31 [ 15] [ 4] [0320] +17:11:31 [ 18] [ 4] [6011] +17:11:31 [ 19] [ 3] [418] +17:11:31 [ 32] [ 6] [668899] +17:11:31 [ 35] [ 32] [6213548000115673=131012011567024] +17:11:31 [ 37] [ 12] [507900844994] +17:11:31 [ 38] [ 6] [518675] +17:11:31 [ 39] [ 2] [00] +17:11:31 [ 41] [ 8] [03015003] +17:11:31 [ 49] [ 3] [418] +17:11:31 [ 54] [ 40] [0001418C0000650393630002418C000065039363] +17:11:31 ============================================================================ +17:11:31 Sending to : +17:11:31 ============================================================================ +17:11:31 + + +waiting on router queue for slot.... +17:11:32 ============================================================================ +17:11:32 Slot Id : <66> +17:11:32 Transaction Type : RESPONSE +17:11:32 Received From : +17:11:32 ============================================================================ +17:11:32 FNo. Len. Field Value +17:11:32 ============================================================================ +17:11:32 [ 1] [ 4] [0210] +17:11:32 [ 2] [ 16] [6213548000115673] +17:11:32 [ 3] [ 6] [010000] +17:11:32 [ 4] [ 12] [000030000000] +17:11:32 [ 7] [ 10] [0320170920] +17:11:32 [ 11] [ 6] [953059] +17:11:32 [ 12] [ 6] [170920] +17:11:32 [ 13] [ 4] [0320] +17:11:32 [ 15] [ 4] [0320] +17:11:32 [ 18] [ 4] [6011] +17:11:32 [ 19] [ 3] [418] +17:11:32 [ 32] [ 6] [668899] +17:11:32 [ 35] [ 32] [6213548000115673=131012011567024] +17:11:32 [ 37] [ 12] [507900844994] +17:11:32 [ 38] [ 6] [518675] +17:11:32 [ 39] [ 2] [00] +17:11:32 [ 41] [ 8] [03015003] +17:11:32 [ 49] [ 3] [418] +17:11:32 [ 54] [ 40] [0001418C0000650393630002418C000065039363] +17:11:32 ============================================================================ +17:11:32 Calculate Source COMM Id = 4 +17:11:32 ============================================================================ +17:11:32 + + +waiting on router queue for slot.... +17:11:32 ============================================================================ +17:11:32 Slot Id : <118> +17:11:32 Transaction Type : REQUEST +17:11:32 Received From : +17:11:32 ============================================================================ +17:11:32 FNo. Len. Field Value +17:11:32 ============================================================================ +17:11:32 [ 1] [ 4] [0200] +17:11:32 [ 2] [ 16] [6213544001960241] +17:11:32 [ 3] [ 6] [011000] +17:11:32 [ 4] [ 12] [000060000000] +17:11:32 [ 7] [ 10] [0320171152] +17:11:32 [ 11] [ 6] [209333] +17:11:32 [ 12] [ 6] [170658] +17:11:32 [ 13] [ 4] [0320] +17:11:32 [ 14] [ 4] [4912] +17:11:32 [ 15] [ 4] [0320] +17:11:32 [ 18] [ 4] [6011] +17:11:32 [ 19] [ 3] [418] +17:11:32 [ 22] [ 3] [021] +17:11:32 [ 25] [ 2] [01] +17:11:32 [ 28] [ 9] [D00002000] +17:11:32 [ 32] [ 6] [198901] +17:11:32 [ 35] [ 32] [6213544001960241=491212016024252] +17:11:32 [ 37] [ 12] [507917209333] +17:11:32 [ 41] [ 8] [19529001] +17:11:32 [ 42] [ 15] [000000041952901] +17:11:32 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:11:32 [ 49] [ 3] [418] +17:11:32 [ 52] [ 16] [C2F2AF18FB487DCF] +17:11:32 ============================================================================ +17:11:32 + + +waiting on router queue for slot.... +17:11:32 Sending to : +17:11:32 ============================================================================ +17:11:32 Sending to : +17:11:32 ============================================================================ +17:11:32 ============================================================================ +17:11:32 Slot Id : <83> +17:11:32 Transaction Type : REQUEST +17:11:32 Received From : +17:11:32 ============================================================================ +17:11:32 FNo. Len. Field Value +17:11:32 ============================================================================ +17:11:32 [ 1] [ 4] [0800] +17:11:32 [ 7] [ 10] [0320101039] +17:11:32 [ 11] [ 6] [157400] +17:11:32 [ 70] [ 3] [301] +17:11:32 ============================================================================ +17:11:32 + + +waiting on router queue for slot.... +17:11:32 Sending to : +17:11:32 ============================================================================ +17:11:32 ============================================================================ +17:11:32 Slot Id : <83> +17:11:32 Transaction Type : RESPONSE +17:11:32 Received From : +17:11:32 ============================================================================ +17:11:32 FNo. Len. Field Value +17:11:32 ============================================================================ +17:11:32 [ 1] [ 4] [0810] +17:11:32 [ 7] [ 10] [0320101039] +17:11:32 [ 11] [ 6] [157400] +17:11:32 [ 39] [ 2] [00] +17:11:32 [ 70] [ 3] [301] +17:11:32 ============================================================================ +17:11:32 Calculate Source COMM Id = 2 +17:11:32 ============================================================================ +17:11:32 + + +waiting on router queue for slot.... +17:11:32 ============================================================================ +17:11:32 Slot Id : <118> +17:11:32 Transaction Type : REQUEST +17:11:32 Received From : +17:11:32 ============================================================================ +17:11:32 FNo. Len. Field Value +17:11:32 ============================================================================ +17:11:32 [ 1] [ 4] [0200] +17:11:32 [ 2] [ 16] [6213544001960241] +17:11:32 [ 3] [ 6] [011000] +17:11:32 [ 4] [ 12] [000060000000] +17:11:32 [ 7] [ 10] [0320171152] +17:11:32 [ 11] [ 6] [209333] +17:11:32 [ 12] [ 6] [170658] +17:11:32 [ 13] [ 4] [0320] +17:11:32 [ 14] [ 4] [4912] +17:11:32 [ 15] [ 4] [0320] +17:11:32 [ 18] [ 4] [6011] +17:11:32 [ 19] [ 3] [418] +17:11:32 [ 22] [ 3] [021] +17:11:32 [ 25] [ 2] [01] +17:11:32 [ 28] [ 9] [D00002000] +17:11:32 [ 32] [ 6] [198901] +17:11:32 [ 35] [ 32] [6213544001960241=491212016024252] +17:11:32 [ 37] [ 12] [507917209333] +17:11:32 [ 41] [ 8] [19529001] +17:11:32 [ 42] [ 15] [000000041952901] +17:11:32 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:11:32 [ 49] [ 3] [418] +17:11:32 [ 52] [ 16] [C2F2AF18FB487DCF] +17:11:32 ============================================================================ +17:11:32 + + +waiting on router queue for slot.... +17:11:32 Sending to : +17:11:32 ============================================================================ +17:11:32 ============================================================================ +17:11:32 Slot Id : <118> +17:11:32 Transaction Type : REQUEST +17:11:32 Received From : +17:11:32 ============================================================================ +17:11:32 FNo. Len. Field Value +17:11:32 ============================================================================ +17:11:32 [ 1] [ 4] [0200] +17:11:32 [ 2] [ 16] [6213544001960241] +17:11:32 [ 3] [ 6] [011000] +17:11:32 [ 4] [ 12] [000060000000] +17:11:32 [ 7] [ 10] [0320171152] +17:11:32 [ 11] [ 6] [209333] +17:11:32 [ 12] [ 6] [170658] +17:11:32 [ 13] [ 4] [0320] +17:11:32 [ 14] [ 4] [4912] +17:11:32 [ 15] [ 4] [0320] +17:11:32 [ 18] [ 4] [6011] +17:11:32 [ 19] [ 3] [418] +17:11:32 [ 22] [ 3] [021] +17:11:32 [ 25] [ 2] [01] +17:11:32 [ 28] [ 9] [D00002000] +17:11:32 [ 32] [ 6] [198901] +17:11:32 [ 35] [ 32] [6213544001960241=491212016024252] +17:11:32 [ 37] [ 12] [507917209333] +17:11:32 [ 41] [ 8] [19529001] +17:11:32 [ 42] [ 15] [000000041952901] +17:11:32 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:11:32 [ 49] [ 3] [418] +17:11:32 [ 52] [ 16] [27F7E5492F05BFA5] +17:11:32 ============================================================================ +17:11:32 + + +waiting on router queue for slot.... +17:11:32 Sending to : <0> +17:11:32 ============================================================================ +17:11:33 ============================================================================ +17:11:33 Slot Id : <118> +17:11:33 Transaction Type : RESPONSE +17:11:33 Received From : +17:11:33 ============================================================================ +17:11:33 FNo. Len. Field Value +17:11:33 ============================================================================ +17:11:33 [ 1] [ 4] [0210] +17:11:33 [ 2] [ 16] [6213544001960241] +17:11:33 [ 3] [ 6] [011000] +17:11:33 [ 4] [ 12] [000060000000] +17:11:33 [ 7] [ 10] [0320171152] +17:11:33 [ 11] [ 6] [209333] +17:11:33 [ 12] [ 6] [170658] +17:11:33 [ 13] [ 4] [0320] +17:11:33 [ 15] [ 4] [0320] +17:11:33 [ 18] [ 4] [6011] +17:11:33 [ 19] [ 3] [418] +17:11:33 [ 32] [ 6] [198901] +17:11:33 [ 35] [ 32] [6213544001960241=491212016024252] +17:11:33 [ 37] [ 12] [507917209333] +17:11:33 [ 38] [ 6] [900873] +17:11:33 [ 39] [ 2] [00] +17:11:33 [ 41] [ 8] [19529001] +17:11:33 [ 49] [ 3] [418] +17:11:33 [ 54] [ 40] [1001418C0000070127901002418C000007012790] +17:11:33 ============================================================================ +17:11:33 Sending to : +17:11:33 ============================================================================ +17:11:33 + + +waiting on router queue for slot.... +17:11:33 ============================================================================ +17:11:33 Slot Id : <107> +17:11:33 Transaction Type : REQUEST +17:11:33 Received From : +17:11:33 ============================================================================ +17:11:33 FNo. Len. Field Value +17:11:33 ============================================================================ +17:11:33 [ 1] [ 4] [0200] +17:11:33 [ 2] [ 16] [6688990106047002] +17:11:33 [ 3] [ 6] [010000] +17:11:33 [ 4] [ 12] [000100000000] +17:11:33 [ 7] [ 10] [0320171128] +17:11:33 [ 11] [ 6] [811386] +17:11:33 [ 12] [ 6] [171128] +17:11:33 [ 13] [ 4] [0320] +17:11:33 [ 15] [ 4] [0320] +17:11:33 [ 18] [ 4] [6011] +17:11:33 [ 22] [ 3] [900] +17:11:33 [ 25] [ 2] [02] +17:11:33 [ 28] [ 9] [D00002000] +17:11:33 [ 32] [ 6] [621354] +17:11:33 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:11:33 [ 37] [ 12] [507903499658] +17:11:33 [ 41] [ 8] [06002200] +17:11:33 [ 42] [ 15] [NATIVE ] +17:11:33 [ 43] [ 40] [Beng Market Beng LAO] +17:11:33 [ 49] [ 3] [418] +17:11:33 [ 52] [ 16] [08BEF2A6705000D5] +17:11:33 ============================================================================ +17:11:33 + + +waiting on router queue for slot.... +17:11:33 Sending to : +17:11:33 ============================================================================ +17:11:33 Sending to : +17:11:33 ============================================================================ +17:11:34 ============================================================================ +17:11:34 Slot Id : <107> +17:11:34 Transaction Type : REQUEST +17:11:34 Received From : +17:11:34 ============================================================================ +17:11:34 FNo. Len. Field Value +17:11:34 ============================================================================ +17:11:34 [ 1] [ 4] [0200] +17:11:34 [ 2] [ 16] [6688990106047002] +17:11:34 [ 3] [ 6] [010000] +17:11:34 [ 4] [ 12] [000100000000] +17:11:34 [ 7] [ 10] [0320171128] +17:11:34 [ 11] [ 6] [811386] +17:11:34 [ 12] [ 6] [171128] +17:11:34 [ 13] [ 4] [0320] +17:11:34 [ 15] [ 4] [0320] +17:11:34 [ 18] [ 4] [6011] +17:11:34 [ 22] [ 3] [900] +17:11:34 [ 25] [ 2] [02] +17:11:34 [ 28] [ 9] [D00002000] +17:11:34 [ 32] [ 6] [621354] +17:11:34 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:11:34 [ 37] [ 12] [507903499658] +17:11:34 [ 41] [ 8] [06002200] +17:11:34 [ 42] [ 15] [NATIVE ] +17:11:34 [ 43] [ 40] [Beng Market Beng LAO] +17:11:34 [ 49] [ 3] [418] +17:11:34 [ 52] [ 16] [08BEF2A6705000D5] +17:11:34 ============================================================================ +17:11:34 + + +waiting on router queue for slot.... +17:11:34 Sending to : +17:11:34 ============================================================================ +17:11:34 ============================================================================ +17:11:34 Slot Id : <107> +17:11:34 Transaction Type : REQUEST +17:11:34 Received From : +17:11:34 ============================================================================ +17:11:34 FNo. Len. Field Value +17:11:34 ============================================================================ +17:11:34 [ 1] [ 4] [0200] +17:11:34 [ 2] [ 16] [6688990106047002] +17:11:34 [ 3] [ 6] [010000] +17:11:34 [ 4] [ 12] [000100000000] +17:11:34 [ 7] [ 10] [0320171128] +17:11:34 [ 11] [ 6] [811386] +17:11:34 [ 12] [ 6] [171128] +17:11:34 [ 13] [ 4] [0320] +17:11:34 [ 15] [ 4] [0320] +17:11:34 [ 18] [ 4] [6011] +17:11:34 [ 22] [ 3] [900] +17:11:34 [ 25] [ 2] [02] +17:11:34 [ 28] [ 9] [D00002000] +17:11:34 [ 32] [ 6] [621354] +17:11:34 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:11:34 [ 37] [ 12] [507903499658] +17:11:34 [ 41] [ 8] [06002200] +17:11:34 [ 42] [ 15] [NATIVE ] +17:11:34 [ 43] [ 40] [Beng Market Beng LAO] +17:11:34 [ 49] [ 3] [418] +17:11:34 [ 52] [ 16] [AFA44F3B5FCA32E5] +17:11:34 ============================================================================ +17:11:34 + + +waiting on router queue for slot.... +17:11:34 Sending to : <4> +17:11:34 ============================================================================ +17:11:34 ============================================================================ +17:11:34 Slot Id : <118> +17:11:34 Transaction Type : RESPONSE +17:11:34 Received From : +17:11:34 ============================================================================ +17:11:34 FNo. Len. Field Value +17:11:34 ============================================================================ +17:11:34 [ 1] [ 4] [0210] +17:11:34 [ 2] [ 16] [6213544001960241] +17:11:34 [ 3] [ 6] [011000] +17:11:34 [ 4] [ 12] [000060000000] +17:11:34 [ 7] [ 10] [0320171152] +17:11:34 [ 11] [ 6] [209333] +17:11:34 [ 12] [ 6] [170658] +17:11:34 [ 13] [ 4] [0320] +17:11:34 [ 15] [ 4] [0320] +17:11:34 [ 18] [ 4] [6011] +17:11:34 [ 19] [ 3] [418] +17:11:34 [ 32] [ 6] [198901] +17:11:34 [ 35] [ 32] [6213544001960241=491212016024252] +17:11:34 [ 37] [ 12] [507917209333] +17:11:34 [ 38] [ 6] [900873] +17:11:34 [ 39] [ 2] [00] +17:11:34 [ 41] [ 8] [19529001] +17:11:34 [ 49] [ 3] [418] +17:11:34 [ 54] [ 40] [1001418C0000070127901002418C000007012790] +17:11:34 ============================================================================ +17:11:34 Calculate Source COMM Id = 5 +17:11:34 ============================================================================ +17:11:34 + + +waiting on router queue for slot.... +17:11:35 ============================================================================ +17:11:35 Slot Id : <107> +17:11:35 Transaction Type : RESPONSE +17:11:35 Received From : +17:11:35 ============================================================================ +17:11:35 FNo. Len. Field Value +17:11:35 ============================================================================ +17:11:35 [ 1] [ 4] [0210] +17:11:35 [ 2] [ 16] [6688990106047002] +17:11:35 [ 3] [ 6] [010000] +17:11:35 [ 4] [ 12] [000100000000] +17:11:35 [ 11] [ 6] [811386] +17:11:35 [ 12] [ 6] [171128] +17:11:35 [ 15] [ 4] [0320] +17:11:35 [ 18] [ 4] [6011] +17:11:35 [ 32] [ 6] [621354] +17:11:35 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:11:35 [ 37] [ 12] [507903499658] +17:11:35 [ 38] [ 6] [968240] +17:11:35 [ 39] [ 2] [00] +17:11:35 [ 41] [ 8] [06002200] +17:11:35 [ 49] [ 3] [418] +17:11:35 [ 54] [ 20] [0002418C000209816563] +17:11:35 ============================================================================ +17:11:35 Sending to : +17:11:35 ============================================================================ +17:11:35 + + +waiting on router queue for slot.... +17:11:36 ============================================================================ +17:11:36 Slot Id : <107> +17:11:36 Transaction Type : RESPONSE +17:11:36 Received From : +17:11:36 ============================================================================ +17:11:36 FNo. Len. Field Value +17:11:36 ============================================================================ +17:11:36 [ 1] [ 4] [0210] +17:11:36 [ 2] [ 16] [6688990106047002] +17:11:36 [ 3] [ 6] [010000] +17:11:36 [ 4] [ 12] [000100000000] +17:11:36 [ 11] [ 6] [811386] +17:11:36 [ 12] [ 6] [171128] +17:11:36 [ 15] [ 4] [0320] +17:11:36 [ 18] [ 4] [6011] +17:11:36 [ 32] [ 6] [621354] +17:11:36 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:11:36 [ 37] [ 12] [507903499658] +17:11:36 [ 38] [ 6] [968240] +17:11:36 [ 39] [ 2] [00] +17:11:36 [ 41] [ 8] [06002200] +17:11:36 [ 49] [ 3] [418] +17:11:36 [ 54] [ 20] [0002418C000209816563] +17:11:36 ============================================================================ +17:11:36 Calculate Source COMM Id = 0 +17:11:36 ============================================================================ +17:11:36 + + +waiting on router queue for slot.... +17:11:38 ============================================================================ +17:11:38 Slot Id : <121> +17:11:38 Transaction Type : REQUEST +17:11:38 Received From : +17:11:38 ============================================================================ +17:11:38 FNo. Len. Field Value +17:11:38 ============================================================================ +17:11:38 [ 1] [ 4] [0200] +17:11:38 [ 2] [ 16] [6213544001612677] +17:11:38 [ 3] [ 6] [301000] +17:11:38 [ 4] [ 12] [000000000000] +17:11:38 [ 7] [ 10] [0320171159] +17:11:38 [ 11] [ 6] [209334] +17:11:38 [ 12] [ 6] [170752] +17:11:38 [ 13] [ 4] [0320] +17:11:38 [ 14] [ 4] [4912] +17:11:38 [ 15] [ 4] [0320] +17:11:38 [ 18] [ 4] [6011] +17:11:38 [ 19] [ 3] [418] +17:11:38 [ 22] [ 3] [021] +17:11:38 [ 25] [ 2] [01] +17:11:38 [ 28] [ 9] [D00000000] +17:11:38 [ 32] [ 6] [198901] +17:11:38 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:38 [ 37] [ 12] [507917209334] +17:11:38 [ 41] [ 8] [00852902] +17:11:38 [ 42] [ 15] [000000040852902] +17:11:38 [ 43] [ 40] [ATM SAVANCH II VN ] +17:11:38 [ 49] [ 3] [418] +17:11:38 [ 52] [ 16] [508D27236AC1A75E] +17:11:38 ============================================================================ +17:11:38 + + +waiting on router queue for slot.... +17:11:38 Sending to : +17:11:38 ============================================================================ +17:11:38 Sending to : +17:11:38 ============================================================================ +17:11:39 ============================================================================ +17:11:39 Slot Id : <121> +17:11:39 Transaction Type : REQUEST +17:11:39 Received From : +17:11:39 ============================================================================ +17:11:39 FNo. Len. Field Value +17:11:39 ============================================================================ +17:11:39 [ 1] [ 4] [0200] +17:11:39 [ 2] [ 16] [6213544001612677] +17:11:39 [ 3] [ 6] [301000] +17:11:39 [ 4] [ 12] [000000000000] +17:11:39 [ 7] [ 10] [0320171159] +17:11:39 [ 11] [ 6] [209334] +17:11:39 [ 12] [ 6] [170752] +17:11:39 [ 13] [ 4] [0320] +17:11:39 [ 14] [ 4] [4912] +17:11:39 [ 15] [ 4] [0320] +17:11:39 [ 18] [ 4] [6011] +17:11:39 [ 19] [ 3] [418] +17:11:39 [ 22] [ 3] [021] +17:11:39 [ 25] [ 2] [01] +17:11:39 [ 28] [ 9] [D00000000] +17:11:39 [ 32] [ 6] [198901] +17:11:39 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:39 [ 37] [ 12] [507917209334] +17:11:39 [ 41] [ 8] [00852902] +17:11:39 [ 42] [ 15] [000000040852902] +17:11:39 [ 43] [ 40] [ATM SAVANCH II VN ] +17:11:39 [ 49] [ 3] [418] +17:11:39 [ 52] [ 16] [508D27236AC1A75E] +17:11:39 ============================================================================ +17:11:39 + + +waiting on router queue for slot.... +17:11:39 Sending to : +17:11:39 ============================================================================ +17:11:39 ============================================================================ +17:11:39 Slot Id : <121> +17:11:39 Transaction Type : REQUEST +17:11:39 Received From : +17:11:39 ============================================================================ +17:11:39 FNo. Len. Field Value +17:11:39 ============================================================================ +17:11:39 [ 1] [ 4] [0200] +17:11:39 [ 2] [ 16] [6213544001612677] +17:11:39 [ 3] [ 6] [301000] +17:11:39 [ 4] [ 12] [000000000000] +17:11:39 [ 7] [ 10] [0320171159] +17:11:39 [ 11] [ 6] [209334] +17:11:39 [ 12] [ 6] [170752] +17:11:39 [ 13] [ 4] [0320] +17:11:39 [ 14] [ 4] [4912] +17:11:39 [ 15] [ 4] [0320] +17:11:39 [ 18] [ 4] [6011] +17:11:39 [ 19] [ 3] [418] +17:11:39 [ 22] [ 3] [021] +17:11:39 [ 25] [ 2] [01] +17:11:39 [ 28] [ 9] [D00000000] +17:11:39 [ 32] [ 6] [198901] +17:11:39 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:39 [ 37] [ 12] [507917209334] +17:11:39 [ 41] [ 8] [00852902] +17:11:39 [ 42] [ 15] [000000040852902] +17:11:39 [ 43] [ 40] [ATM SAVANCH II VN ] +17:11:39 [ 49] [ 3] [418] +17:11:39 [ 52] [ 16] [5487B3E58276B6DC] +17:11:39 ============================================================================ +17:11:39 + + +waiting on router queue for slot.... +17:11:39 Sending to : <0> +17:11:39 ============================================================================ +17:11:39 ============================================================================ +17:11:39 Slot Id : <121> +17:11:39 Transaction Type : RESPONSE +17:11:39 Received From : +17:11:39 ============================================================================ +17:11:39 FNo. Len. Field Value +17:11:39 ============================================================================ +17:11:39 [ 1] [ 4] [0210] +17:11:39 [ 2] [ 16] [6213544001612677] +17:11:39 [ 3] [ 6] [301000] +17:11:39 [ 4] [ 12] [000000000000] +17:11:39 [ 7] [ 10] [0320171159] +17:11:39 [ 11] [ 6] [209334] +17:11:39 [ 12] [ 6] [170752] +17:11:39 [ 13] [ 4] [0320] +17:11:39 [ 15] [ 4] [0320] +17:11:39 [ 18] [ 4] [6011] +17:11:39 [ 19] [ 3] [418] +17:11:39 [ 32] [ 6] [198901] +17:11:39 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:39 [ 37] [ 12] [507917209334] +17:11:39 [ 38] [ 6] [089365] +17:11:39 [ 39] [ 2] [00] +17:11:39 [ 41] [ 8] [00852902] +17:11:39 [ 49] [ 3] [418] +17:11:39 [ 54] [ 40] [1001418C0000607243131002418C000060724313] +17:11:39 ============================================================================ +17:11:39 Sending to : +17:11:39 ============================================================================ +17:11:39 + + +waiting on router queue for slot.... +17:11:41 ============================================================================ +17:11:41 Slot Id : <121> +17:11:41 Transaction Type : RESPONSE +17:11:41 Received From : +17:11:41 ============================================================================ +17:11:41 FNo. Len. Field Value +17:11:41 ============================================================================ +17:11:41 [ 1] [ 4] [0210] +17:11:41 [ 2] [ 16] [6213544001612677] +17:11:41 [ 3] [ 6] [301000] +17:11:41 [ 4] [ 12] [000000000000] +17:11:41 [ 7] [ 10] [0320171159] +17:11:41 [ 11] [ 6] [209334] +17:11:41 [ 12] [ 6] [170752] +17:11:41 [ 13] [ 4] [0320] +17:11:41 [ 15] [ 4] [0320] +17:11:41 [ 18] [ 4] [6011] +17:11:41 [ 19] [ 3] [418] +17:11:41 [ 32] [ 6] [198901] +17:11:41 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:41 [ 37] [ 12] [507917209334] +17:11:41 [ 38] [ 6] [089365] +17:11:41 [ 39] [ 2] [00] +17:11:41 [ 41] [ 8] [00852902] +17:11:41 [ 49] [ 3] [418] +17:11:41 [ 54] [ 40] [1001418C0000607243131002418C000060724313] +17:11:41 ============================================================================ +17:11:41 Calculate Source COMM Id = 5 +17:11:41 ============================================================================ +17:11:41 + + +waiting on router queue for slot.... +17:11:42 ============================================================================ +17:11:42 Slot Id : <74> +17:11:42 Transaction Type : REQUEST +17:11:42 Received From : +17:11:42 ============================================================================ +17:11:42 FNo. Len. Field Value +17:11:42 ============================================================================ +17:11:42 [ 1] [ 4] [0200] +17:11:42 [ 2] [ 16] [6688990102658109] +17:11:42 [ 3] [ 6] [010000] +17:11:42 [ 4] [ 12] [000200000000] +17:11:42 [ 7] [ 10] [0320101047] +17:11:42 [ 11] [ 6] [270736] +17:11:42 [ 12] [ 6] [171047] +17:11:42 [ 13] [ 4] [0320] +17:11:42 [ 14] [ 4] [4209] +17:11:42 [ 15] [ 4] [0320] +17:11:42 [ 18] [ 4] [6011] +17:11:42 [ 19] [ 3] [418] +17:11:42 [ 22] [ 3] [021] +17:11:42 [ 25] [ 2] [01] +17:11:42 [ 28] [ 9] [D00002000] +17:11:42 [ 32] [ 6] [180893] +17:11:42 [ 35] [ 37] [6688990102658109=42091231810907900000] +17:11:42 [ 37] [ 12] [507910270736] +17:11:42 [ 41] [ 8] [0527LPBL] +17:11:42 [ 42] [ 15] [999999 ] +17:11:42 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +17:11:42 [ 49] [ 3] [418] +17:11:42 [ 52] [ 16] [21228FF6FBB04369] +17:11:42 ============================================================================ +17:11:42 + + +waiting on router queue for slot.... +17:11:42 Sending to : +17:11:42 ============================================================================ +17:11:42 Sending to : +17:11:42 ============================================================================ +17:11:42 ============================================================================ +17:11:42 Slot Id : <92> +17:11:42 Transaction Type : REQUEST +17:11:42 Received From : +17:11:42 ============================================================================ +17:11:42 FNo. Len. Field Value +17:11:42 ============================================================================ +17:11:42 [ 1] [ 4] [0200] +17:11:42 [ 2] [ 16] [6213544002162235] +17:11:42 [ 3] [ 6] [010000] +17:11:42 [ 4] [ 12] [000030000000] +17:11:42 [ 7] [ 10] [0320170932] +17:11:42 [ 11] [ 6] [953072] +17:11:42 [ 12] [ 6] [170932] +17:11:42 [ 13] [ 4] [0320] +17:11:42 [ 15] [ 4] [0320] +17:11:42 [ 18] [ 4] [6011] +17:11:42 [ 19] [ 3] [418] +17:11:42 [ 22] [ 3] [021] +17:11:42 [ 25] [ 2] [01] +17:11:42 [ 28] [ 9] [D00002000] +17:11:42 [ 32] [ 6] [668899] +17:11:42 [ 35] [ 32] [6213544002162235=491212016223882] +17:11:42 [ 37] [ 12] [507902025667] +17:11:42 [ 41] [ 8] [03414002] +17:11:42 [ 42] [ 15] [APT ] +17:11:42 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:11:42 [ 49] [ 3] [418] +17:11:42 [ 52] [ 16] [A47CE1DF2D20D1A9] +17:11:42 ============================================================================ +17:11:42 + + +waiting on router queue for slot.... +17:11:42 Sending to : +17:11:42 ============================================================================ +17:11:42 Sending to : +17:11:42 ============================================================================ +17:11:42 ============================================================================ +17:11:42 Slot Id : <74> +17:11:42 Transaction Type : REQUEST +17:11:42 Received From : +17:11:42 ============================================================================ +17:11:42 FNo. Len. Field Value +17:11:42 ============================================================================ +17:11:42 [ 1] [ 4] [0200] +17:11:42 [ 2] [ 16] [6688990102658109] +17:11:42 [ 3] [ 6] [010000] +17:11:42 [ 4] [ 12] [000200000000] +17:11:42 [ 7] [ 10] [0320101047] +17:11:42 [ 11] [ 6] [270736] +17:11:42 [ 12] [ 6] [171047] +17:11:42 [ 13] [ 4] [0320] +17:11:42 [ 14] [ 4] [4209] +17:11:42 [ 15] [ 4] [0320] +17:11:42 [ 18] [ 4] [6011] +17:11:42 [ 19] [ 3] [418] +17:11:42 [ 22] [ 3] [021] +17:11:42 [ 25] [ 2] [01] +17:11:42 [ 28] [ 9] [D00002000] +17:11:42 [ 32] [ 6] [180893] +17:11:42 [ 35] [ 37] [6688990102658109=42091231810907900000] +17:11:42 [ 37] [ 12] [507910270736] +17:11:42 [ 41] [ 8] [0527LPBL] +17:11:42 [ 42] [ 15] [999999 ] +17:11:42 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +17:11:42 [ 49] [ 3] [418] +17:11:42 [ 52] [ 16] [21228FF6FBB04369] +17:11:42 ============================================================================ +17:11:42 + + +waiting on router queue for slot.... +17:11:42 Sending to : +17:11:42 ============================================================================ +17:11:42 ============================================================================ +17:11:42 Slot Id : <74> +17:11:42 Transaction Type : REQUEST +17:11:42 Received From : +17:11:42 ============================================================================ +17:11:42 FNo. Len. Field Value +17:11:42 ============================================================================ +17:11:42 [ 1] [ 4] [0200] +17:11:42 [ 2] [ 16] [6688990102658109] +17:11:42 [ 3] [ 6] [010000] +17:11:42 [ 4] [ 12] [000200000000] +17:11:42 [ 7] [ 10] [0320101047] +17:11:42 [ 11] [ 6] [270736] +17:11:42 [ 12] [ 6] [171047] +17:11:42 [ 13] [ 4] [0320] +17:11:42 [ 14] [ 4] [4209] +17:11:42 [ 15] [ 4] [0320] +17:11:42 [ 18] [ 4] [6011] +17:11:42 [ 19] [ 3] [418] +17:11:42 [ 22] [ 3] [021] +17:11:42 [ 25] [ 2] [01] +17:11:42 [ 28] [ 9] [D00002000] +17:11:42 [ 32] [ 6] [180893] +17:11:42 [ 35] [ 37] [6688990102658109=42091231810907900000] +17:11:42 [ 37] [ 12] [507910270736] +17:11:42 [ 41] [ 8] [0527LPBL] +17:11:42 [ 42] [ 15] [999999 ] +17:11:42 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +17:11:42 [ 49] [ 3] [418] +17:11:42 [ 52] [ 16] [9A7CECD3276AE487] +17:11:42 ============================================================================ +17:11:42 + + +waiting on router queue for slot.... +17:11:42 Sending to : <0> +17:11:42 ============================================================================ +17:11:43 ============================================================================ +17:11:43 Slot Id : <74> +17:11:43 Transaction Type : RESPONSE +17:11:43 Received From : +17:11:43 ============================================================================ +17:11:43 FNo. Len. Field Value +17:11:43 ============================================================================ +17:11:43 [ 1] [ 4] [0210] +17:11:43 [ 2] [ 16] [6688990102658109] +17:11:43 [ 3] [ 6] [010000] +17:11:43 [ 4] [ 12] [000200000000] +17:11:43 [ 7] [ 10] [0320101047] +17:11:43 [ 11] [ 6] [270736] +17:11:43 [ 12] [ 6] [171047] +17:11:43 [ 13] [ 4] [0320] +17:11:43 [ 15] [ 4] [0320] +17:11:43 [ 18] [ 4] [6011] +17:11:43 [ 19] [ 3] [418] +17:11:43 [ 22] [ 3] [021] +17:11:43 [ 32] [ 6] [180893] +17:11:43 [ 35] [ 37] [6688990102658109=42091231810907900000] +17:11:43 [ 37] [ 12] [507910270736] +17:11:43 [ 39] [ 2] [61] +17:11:43 [ 41] [ 8] [0527LPBL] +17:11:43 [ 49] [ 3] [418] +17:11:43 ============================================================================ +17:11:43 Sending to : +17:11:43 ============================================================================ +17:11:43 + + +waiting on router queue for slot.... +17:11:43 ============================================================================ +17:11:43 Slot Id : <92> +17:11:43 Transaction Type : REQUEST +17:11:43 Received From : +17:11:43 ============================================================================ +17:11:43 FNo. Len. Field Value +17:11:43 ============================================================================ +17:11:43 [ 1] [ 4] [0200] +17:11:43 [ 2] [ 16] [6213544002162235] +17:11:43 [ 3] [ 6] [010000] +17:11:43 [ 4] [ 12] [000030000000] +17:11:43 [ 7] [ 10] [0320170932] +17:11:43 [ 11] [ 6] [953072] +17:11:43 [ 12] [ 6] [170932] +17:11:43 [ 13] [ 4] [0320] +17:11:43 [ 15] [ 4] [0320] +17:11:43 [ 18] [ 4] [6011] +17:11:43 [ 19] [ 3] [418] +17:11:43 [ 22] [ 3] [021] +17:11:43 [ 25] [ 2] [01] +17:11:43 [ 28] [ 9] [D00002000] +17:11:43 [ 32] [ 6] [668899] +17:11:43 [ 35] [ 32] [6213544002162235=491212016223882] +17:11:43 [ 37] [ 12] [507902025667] +17:11:43 [ 41] [ 8] [03414002] +17:11:43 [ 42] [ 15] [APT ] +17:11:43 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:11:43 [ 49] [ 3] [418] +17:11:43 [ 52] [ 16] [A47CE1DF2D20D1A9] +17:11:43 ============================================================================ +17:11:43 + + +waiting on router queue for slot.... +17:11:43 Sending to : +17:11:43 ============================================================================ +17:11:43 ============================================================================ +17:11:43 Slot Id : <92> +17:11:43 Transaction Type : REQUEST +17:11:43 Received From : +17:11:43 ============================================================================ +17:11:43 FNo. Len. Field Value +17:11:43 ============================================================================ +17:11:43 [ 1] [ 4] [0200] +17:11:43 [ 2] [ 16] [6213544002162235] +17:11:43 [ 3] [ 6] [010000] +17:11:43 [ 4] [ 12] [000030000000] +17:11:43 [ 7] [ 10] [0320170932] +17:11:43 [ 11] [ 6] [953072] +17:11:43 [ 12] [ 6] [170932] +17:11:43 [ 13] [ 4] [0320] +17:11:43 [ 15] [ 4] [0320] +17:11:43 [ 18] [ 4] [6011] +17:11:43 [ 19] [ 3] [418] +17:11:43 [ 22] [ 3] [021] +17:11:43 [ 25] [ 2] [01] +17:11:43 [ 28] [ 9] [D00002000] +17:11:43 [ 32] [ 6] [668899] +17:11:43 [ 35] [ 32] [6213544002162235=491212016223882] +17:11:43 [ 37] [ 12] [507902025667] +17:11:43 [ 41] [ 8] [03414002] +17:11:43 [ 42] [ 15] [APT ] +17:11:43 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:11:43 [ 49] [ 3] [418] +17:11:43 [ 52] [ 16] [C79020B31BA90731] +17:11:43 ============================================================================ +17:11:43 + + +waiting on router queue for slot.... +17:11:43 Sending to : <0> +17:11:43 ============================================================================ +17:11:44 ============================================================================ +17:11:44 Slot Id : <74> +17:11:44 Transaction Type : RESPONSE +17:11:44 Received From : +17:11:44 ============================================================================ +17:11:44 FNo. Len. Field Value +17:11:44 ============================================================================ +17:11:44 [ 1] [ 4] [0210] +17:11:44 [ 2] [ 16] [6688990102658109] +17:11:44 [ 3] [ 6] [010000] +17:11:44 [ 4] [ 12] [000200000000] +17:11:44 [ 7] [ 10] [0320101047] +17:11:44 [ 11] [ 6] [270736] +17:11:44 [ 12] [ 6] [171047] +17:11:44 [ 13] [ 4] [0320] +17:11:44 [ 15] [ 4] [0320] +17:11:44 [ 18] [ 4] [6011] +17:11:44 [ 19] [ 3] [418] +17:11:44 [ 22] [ 3] [021] +17:11:44 [ 32] [ 6] [180893] +17:11:44 [ 35] [ 37] [6688990102658109=42091231810907900000] +17:11:44 [ 37] [ 12] [507910270736] +17:11:44 [ 39] [ 2] [61] +17:11:44 [ 41] [ 8] [0527LPBL] +17:11:44 [ 49] [ 3] [418] +17:11:44 ============================================================================ +17:11:44 Calculate Source COMM Id = 2 +17:11:44 ============================================================================ +17:11:44 + + +waiting on router queue for slot.... +17:11:44 ============================================================================ +17:11:44 Slot Id : <92> +17:11:44 Transaction Type : RESPONSE +17:11:44 Received From : +17:11:44 ============================================================================ +17:11:44 FNo. Len. Field Value +17:11:44 ============================================================================ +17:11:44 [ 1] [ 4] [0210] +17:11:44 [ 2] [ 16] [6213544002162235] +17:11:44 [ 3] [ 6] [010000] +17:11:44 [ 4] [ 12] [000030000000] +17:11:44 [ 7] [ 10] [0320170932] +17:11:44 [ 11] [ 6] [953072] +17:11:44 [ 12] [ 6] [170932] +17:11:44 [ 13] [ 4] [0320] +17:11:44 [ 15] [ 4] [0320] +17:11:44 [ 18] [ 4] [6011] +17:11:44 [ 19] [ 3] [418] +17:11:44 [ 32] [ 6] [668899] +17:11:44 [ 35] [ 32] [6213544002162235=491212016223882] +17:11:44 [ 37] [ 12] [507902025667] +17:11:44 [ 38] [ 6] [084957] +17:11:44 [ 39] [ 2] [00] +17:11:44 [ 41] [ 8] [03414002] +17:11:44 [ 49] [ 3] [418] +17:11:44 [ 54] [ 40] [0001418C0000052983170002418C000005298317] +17:11:44 ============================================================================ +17:11:44 Sending to : +17:11:44 ============================================================================ +17:11:44 + + +waiting on router queue for slot.... +17:11:44 ============================================================================ +17:11:44 Slot Id : <115> +17:11:44 Transaction Type : REQUEST +17:11:44 Received From : +17:11:44 ============================================================================ +17:11:44 FNo. Len. Field Value +17:11:44 ============================================================================ +17:11:44 [ 1] [ 4] [0800] +17:11:44 [ 7] [ 10] [0320101050] +17:11:44 [ 11] [ 6] [157401] +17:11:44 [ 70] [ 3] [301] +17:11:44 ============================================================================ +17:11:44 + + +waiting on router queue for slot.... +17:11:44 Sending to : +17:11:44 ============================================================================ +17:11:44 ============================================================================ +17:11:44 Slot Id : <115> +17:11:44 Transaction Type : RESPONSE +17:11:44 Received From : +17:11:44 ============================================================================ +17:11:44 FNo. Len. Field Value +17:11:44 ============================================================================ +17:11:44 [ 1] [ 4] [0810] +17:11:44 [ 7] [ 10] [0320101050] +17:11:44 [ 11] [ 6] [157401] +17:11:44 [ 39] [ 2] [00] +17:11:44 [ 70] [ 3] [301] +17:11:44 ============================================================================ +17:11:44 Calculate Source COMM Id = 2 +17:11:44 ============================================================================ +17:11:44 + + +waiting on router queue for slot.... +17:11:46 ============================================================================ +17:11:46 Slot Id : <92> +17:11:46 Transaction Type : RESPONSE +17:11:46 Received From : +17:11:46 ============================================================================ +17:11:46 FNo. Len. Field Value +17:11:46 ============================================================================ +17:11:46 [ 1] [ 4] [0210] +17:11:46 [ 2] [ 16] [6213544002162235] +17:11:46 [ 3] [ 6] [010000] +17:11:46 [ 4] [ 12] [000030000000] +17:11:46 [ 7] [ 10] [0320170932] +17:11:46 [ 11] [ 6] [953072] +17:11:46 [ 12] [ 6] [170932] +17:11:46 [ 13] [ 4] [0320] +17:11:46 [ 15] [ 4] [0320] +17:11:46 [ 18] [ 4] [6011] +17:11:46 [ 19] [ 3] [418] +17:11:46 [ 32] [ 6] [668899] +17:11:46 [ 35] [ 32] [6213544002162235=491212016223882] +17:11:46 [ 37] [ 12] [507902025667] +17:11:46 [ 38] [ 6] [084957] +17:11:46 [ 39] [ 2] [00] +17:11:46 [ 41] [ 8] [03414002] +17:11:46 [ 49] [ 3] [418] +17:11:46 [ 54] [ 40] [0001418C0000052983170002418C000005298317] +17:11:46 ============================================================================ +17:11:46 Calculate Source COMM Id = 4 +17:11:46 ============================================================================ +17:11:46 + + +waiting on router queue for slot.... +17:11:47 ============================================================================ +17:11:47 Slot Id : <113> +17:11:47 Transaction Type : REQUEST +17:11:47 Received From : +17:11:47 ============================================================================ +17:11:47 FNo. Len. Field Value +17:11:47 ============================================================================ +17:11:47 [ 1] [ 4] [0200] +17:11:47 [ 2] [ 16] [6688990100952900] +17:11:47 [ 3] [ 6] [010000] +17:11:47 [ 4] [ 12] [000100000000] +17:11:47 [ 7] [ 10] [0320101053] +17:11:47 [ 11] [ 6] [270739] +17:11:47 [ 12] [ 6] [171053] +17:11:47 [ 13] [ 4] [0320] +17:11:47 [ 14] [ 4] [4112] +17:11:47 [ 15] [ 4] [0320] +17:11:47 [ 18] [ 4] [6011] +17:11:47 [ 19] [ 3] [418] +17:11:47 [ 22] [ 3] [021] +17:11:47 [ 25] [ 2] [01] +17:11:47 [ 28] [ 9] [D00002000] +17:11:47 [ 32] [ 6] [180893] +17:11:47 [ 35] [ 37] [6688990100952900=41121231290056600000] +17:11:47 [ 37] [ 12] [507910270739] +17:11:47 [ 41] [ 8] [0467PSLK] +17:11:47 [ 42] [ 15] [999999 ] +17:11:47 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:11:47 [ 49] [ 3] [418] +17:11:47 [ 52] [ 16] [EEA6F836B1B3144A] +17:11:47 ============================================================================ +17:11:47 + + +waiting on router queue for slot.... +17:11:47 Sending to : +17:11:47 ============================================================================ +17:11:47 Sending to : +17:11:47 ============================================================================ +17:11:48 ============================================================================ +17:11:48 Slot Id : <113> +17:11:48 Transaction Type : REQUEST +17:11:48 Received From : +17:11:48 ============================================================================ +17:11:48 FNo. Len. Field Value +17:11:48 ============================================================================ +17:11:48 [ 1] [ 4] [0200] +17:11:48 [ 2] [ 16] [6688990100952900] +17:11:48 [ 3] [ 6] [010000] +17:11:48 [ 4] [ 12] [000100000000] +17:11:48 [ 7] [ 10] [0320101053] +17:11:48 [ 11] [ 6] [270739] +17:11:48 [ 12] [ 6] [171053] +17:11:48 [ 13] [ 4] [0320] +17:11:48 [ 14] [ 4] [4112] +17:11:48 [ 15] [ 4] [0320] +17:11:48 [ 18] [ 4] [6011] +17:11:48 [ 19] [ 3] [418] +17:11:48 [ 22] [ 3] [021] +17:11:48 [ 25] [ 2] [01] +17:11:48 [ 28] [ 9] [D00002000] +17:11:48 [ 32] [ 6] [180893] +17:11:48 [ 35] [ 37] [6688990100952900=41121231290056600000] +17:11:48 [ 37] [ 12] [507910270739] +17:11:48 [ 41] [ 8] [0467PSLK] +17:11:48 [ 42] [ 15] [999999 ] +17:11:48 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:11:48 [ 49] [ 3] [418] +17:11:48 [ 52] [ 16] [EEA6F836B1B3144A] +17:11:48 ============================================================================ +17:11:48 + + +waiting on router queue for slot.... +17:11:48 Sending to : +17:11:48 ============================================================================ +17:11:48 ============================================================================ +17:11:48 Slot Id : <113> +17:11:48 Transaction Type : REQUEST +17:11:48 Received From : +17:11:48 ============================================================================ +17:11:48 FNo. Len. Field Value +17:11:48 ============================================================================ +17:11:48 [ 1] [ 4] [0200] +17:11:48 [ 2] [ 16] [6688990100952900] +17:11:48 [ 3] [ 6] [010000] +17:11:48 [ 4] [ 12] [000100000000] +17:11:48 [ 7] [ 10] [0320101053] +17:11:48 [ 11] [ 6] [270739] +17:11:48 [ 12] [ 6] [171053] +17:11:48 [ 13] [ 4] [0320] +17:11:48 [ 14] [ 4] [4112] +17:11:48 [ 15] [ 4] [0320] +17:11:48 [ 18] [ 4] [6011] +17:11:48 [ 19] [ 3] [418] +17:11:48 [ 22] [ 3] [021] +17:11:48 [ 25] [ 2] [01] +17:11:48 [ 28] [ 9] [D00002000] +17:11:48 [ 32] [ 6] [180893] +17:11:48 [ 35] [ 37] [6688990100952900=41121231290056600000] +17:11:48 [ 37] [ 12] [507910270739] +17:11:48 [ 41] [ 8] [0467PSLK] +17:11:48 [ 42] [ 15] [999999 ] +17:11:48 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:11:48 [ 49] [ 3] [418] +17:11:48 [ 52] [ 16] [00E567B53428B90D] +17:11:48 ============================================================================ +17:11:48 + + +waiting on router queue for slot.... +17:11:48 Sending to : <0> +17:11:48 ============================================================================ +17:11:48 ============================================================================ +17:11:48 Slot Id : <113> +17:11:48 Transaction Type : RESPONSE +17:11:48 Received From : +17:11:48 ============================================================================ +17:11:48 FNo. Len. Field Value +17:11:48 ============================================================================ +17:11:48 [ 1] [ 4] [0210] +17:11:48 [ 2] [ 16] [6688990100952900] +17:11:48 [ 3] [ 6] [010000] +17:11:48 [ 4] [ 12] [000100000000] +17:11:48 [ 7] [ 10] [0320101053] +17:11:48 [ 11] [ 6] [270739] +17:11:48 [ 12] [ 6] [171053] +17:11:48 [ 13] [ 4] [0320] +17:11:48 [ 15] [ 4] [0320] +17:11:48 [ 18] [ 4] [6011] +17:11:48 [ 19] [ 3] [418] +17:11:48 [ 22] [ 3] [021] +17:11:48 [ 32] [ 6] [180893] +17:11:48 [ 35] [ 37] [6688990100952900=41121231290056600000] +17:11:48 [ 37] [ 12] [507910270739] +17:11:48 [ 39] [ 2] [14] +17:11:48 [ 41] [ 8] [0467PSLK] +17:11:48 [ 49] [ 3] [418] +17:11:48 ============================================================================ +17:11:48 Sending to : +17:11:48 ============================================================================ +17:11:48 + + +waiting on router queue for slot.... +17:11:49 ============================================================================ +17:11:49 Slot Id : <113> +17:11:49 Transaction Type : RESPONSE +17:11:49 Received From : +17:11:49 ============================================================================ +17:11:49 FNo. Len. Field Value +17:11:49 ============================================================================ +17:11:49 [ 1] [ 4] [0210] +17:11:49 [ 2] [ 16] [6688990100952900] +17:11:49 [ 3] [ 6] [010000] +17:11:49 [ 4] [ 12] [000100000000] +17:11:49 [ 7] [ 10] [0320101053] +17:11:49 [ 11] [ 6] [270739] +17:11:49 [ 12] [ 6] [171053] +17:11:49 [ 13] [ 4] [0320] +17:11:49 [ 15] [ 4] [0320] +17:11:49 [ 18] [ 4] [6011] +17:11:49 [ 19] [ 3] [418] +17:11:49 [ 22] [ 3] [021] +17:11:49 [ 32] [ 6] [180893] +17:11:49 [ 35] [ 37] [6688990100952900=41121231290056600000] +17:11:49 [ 37] [ 12] [507910270739] +17:11:49 [ 39] [ 2] [14] +17:11:49 [ 41] [ 8] [0467PSLK] +17:11:49 [ 49] [ 3] [418] +17:11:49 ============================================================================ +17:11:49 Calculate Source COMM Id = 2 +17:11:49 ============================================================================ +17:11:49 + + +waiting on router queue for slot.... +17:11:52 ============================================================================ +17:11:52 Slot Id : <108> +17:11:52 Transaction Type : REQUEST +17:11:52 Received From : +17:11:52 ============================================================================ +17:11:52 FNo. Len. Field Value +17:11:52 ============================================================================ +17:11:52 [ 1] [ 4] [0200] +17:11:52 [ 2] [ 16] [6213544001612677] +17:11:52 [ 3] [ 6] [301000] +17:11:52 [ 4] [ 12] [000000000000] +17:11:52 [ 7] [ 10] [0320171213] +17:11:52 [ 11] [ 6] [209337] +17:11:52 [ 12] [ 6] [170806] +17:11:52 [ 13] [ 4] [0320] +17:11:52 [ 14] [ 4] [4912] +17:11:52 [ 15] [ 4] [0320] +17:11:52 [ 18] [ 4] [6011] +17:11:52 [ 19] [ 3] [418] +17:11:52 [ 22] [ 3] [021] +17:11:52 [ 25] [ 2] [01] +17:11:52 [ 28] [ 9] [D00000000] +17:11:52 [ 32] [ 6] [198901] +17:11:52 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:52 [ 37] [ 12] [507917209337] +17:11:52 [ 41] [ 8] [00852902] +17:11:52 [ 42] [ 15] [000000040852902] +17:11:52 [ 43] [ 40] [ATM SAVANCH II VN ] +17:11:52 [ 49] [ 3] [418] +17:11:52 [ 52] [ 16] [508D27236AC1A75E] +17:11:52 ============================================================================ +17:11:52 + + +waiting on router queue for slot.... +17:11:52 Sending to : +17:11:52 ============================================================================ +17:11:52 Sending to : +17:11:52 ============================================================================ +17:11:53 ============================================================================ +17:11:53 Slot Id : <108> +17:11:53 Transaction Type : REQUEST +17:11:53 Received From : +17:11:53 ============================================================================ +17:11:53 FNo. Len. Field Value +17:11:53 ============================================================================ +17:11:53 [ 1] [ 4] [0200] +17:11:53 [ 2] [ 16] [6213544001612677] +17:11:53 [ 3] [ 6] [301000] +17:11:53 [ 4] [ 12] [000000000000] +17:11:53 [ 7] [ 10] [0320171213] +17:11:53 [ 11] [ 6] [209337] +17:11:53 [ 12] [ 6] [170806] +17:11:53 [ 13] [ 4] [0320] +17:11:53 [ 14] [ 4] [4912] +17:11:53 [ 15] [ 4] [0320] +17:11:53 [ 18] [ 4] [6011] +17:11:53 [ 19] [ 3] [418] +17:11:53 [ 22] [ 3] [021] +17:11:53 [ 25] [ 2] [01] +17:11:53 [ 28] [ 9] [D00000000] +17:11:53 [ 32] [ 6] [198901] +17:11:53 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:53 [ 37] [ 12] [507917209337] +17:11:53 [ 41] [ 8] [00852902] +17:11:53 [ 42] [ 15] [000000040852902] +17:11:53 [ 43] [ 40] [ATM SAVANCH II VN ] +17:11:53 [ 49] [ 3] [418] +17:11:53 [ 52] [ 16] [508D27236AC1A75E] +17:11:53 ============================================================================ +17:11:53 + + +waiting on router queue for slot.... +17:11:53 Sending to : +17:11:53 ============================================================================ +17:11:53 ============================================================================ +17:11:53 Slot Id : <108> +17:11:53 Transaction Type : REQUEST +17:11:53 Received From : +17:11:53 ============================================================================ +17:11:53 FNo. Len. Field Value +17:11:53 ============================================================================ +17:11:53 [ 1] [ 4] [0200] +17:11:53 [ 2] [ 16] [6213544001612677] +17:11:53 [ 3] [ 6] [301000] +17:11:53 [ 4] [ 12] [000000000000] +17:11:53 [ 7] [ 10] [0320171213] +17:11:53 [ 11] [ 6] [209337] +17:11:53 [ 12] [ 6] [170806] +17:11:53 [ 13] [ 4] [0320] +17:11:53 [ 14] [ 4] [4912] +17:11:53 [ 15] [ 4] [0320] +17:11:53 [ 18] [ 4] [6011] +17:11:53 [ 19] [ 3] [418] +17:11:53 [ 22] [ 3] [021] +17:11:53 [ 25] [ 2] [01] +17:11:53 [ 28] [ 9] [D00000000] +17:11:53 [ 32] [ 6] [198901] +17:11:53 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:53 [ 37] [ 12] [507917209337] +17:11:53 [ 41] [ 8] [00852902] +17:11:53 [ 42] [ 15] [000000040852902] +17:11:53 [ 43] [ 40] [ATM SAVANCH II VN ] +17:11:53 [ 49] [ 3] [418] +17:11:53 [ 52] [ 16] [5487B3E58276B6DC] +17:11:53 ============================================================================ +17:11:53 + + +waiting on router queue for slot.... +17:11:53 Sending to : <0> +17:11:53 ============================================================================ +17:11:53 ============================================================================ +17:11:53 Slot Id : <108> +17:11:53 Transaction Type : RESPONSE +17:11:53 Received From : +17:11:53 ============================================================================ +17:11:53 FNo. Len. Field Value +17:11:53 ============================================================================ +17:11:53 [ 1] [ 4] [0210] +17:11:53 [ 2] [ 16] [6213544001612677] +17:11:53 [ 3] [ 6] [301000] +17:11:53 [ 4] [ 12] [000000000000] +17:11:53 [ 7] [ 10] [0320171213] +17:11:53 [ 11] [ 6] [209337] +17:11:53 [ 12] [ 6] [170806] +17:11:53 [ 13] [ 4] [0320] +17:11:53 [ 15] [ 4] [0320] +17:11:53 [ 18] [ 4] [6011] +17:11:53 [ 19] [ 3] [418] +17:11:53 [ 32] [ 6] [198901] +17:11:53 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:53 [ 37] [ 12] [507917209337] +17:11:53 [ 38] [ 6] [083283] +17:11:53 [ 39] [ 2] [00] +17:11:53 [ 41] [ 8] [00852902] +17:11:53 [ 49] [ 3] [418] +17:11:53 [ 54] [ 40] [1001418C0000607243131002418C000060724313] +17:11:53 ============================================================================ +17:11:53 Sending to : +17:11:53 ============================================================================ +17:11:53 + + +waiting on router queue for slot.... +17:11:54 ============================================================================ +17:11:54 Slot Id : <108> +17:11:54 Transaction Type : RESPONSE +17:11:54 Received From : +17:11:54 ============================================================================ +17:11:54 FNo. Len. Field Value +17:11:54 ============================================================================ +17:11:54 [ 1] [ 4] [0210] +17:11:54 [ 2] [ 16] [6213544001612677] +17:11:54 [ 3] [ 6] [301000] +17:11:54 [ 4] [ 12] [000000000000] +17:11:54 [ 7] [ 10] [0320171213] +17:11:54 [ 11] [ 6] [209337] +17:11:54 [ 12] [ 6] [170806] +17:11:54 [ 13] [ 4] [0320] +17:11:54 [ 15] [ 4] [0320] +17:11:54 [ 18] [ 4] [6011] +17:11:54 [ 19] [ 3] [418] +17:11:54 [ 32] [ 6] [198901] +17:11:54 [ 35] [ 32] [6213544001612677=491212011267886] +17:11:54 [ 37] [ 12] [507917209337] +17:11:54 [ 38] [ 6] [083283] +17:11:54 [ 39] [ 2] [00] +17:11:54 [ 41] [ 8] [00852902] +17:11:54 [ 49] [ 3] [418] +17:11:54 [ 54] [ 40] [1001418C0000607243131002418C000060724313] +17:11:54 ============================================================================ +17:11:54 Calculate Source COMM Id = 5 +17:11:54 ============================================================================ +17:11:54 + + +waiting on router queue for slot.... +17:11:55 ============================================================================ +17:11:55 Slot Id : <98> +17:11:55 Transaction Type : REQUEST +17:11:55 Received From : +17:11:55 ============================================================================ +17:11:55 FNo. Len. Field Value +17:11:55 ============================================================================ +17:11:55 [ 1] [ 4] [0800] +17:11:55 [ 2] [ 5] [02531] +17:11:55 [ 3] [ 6] [579178] +17:11:55 [ 7] [ 10] [0320101155] +17:11:55 [ 11] [ 6] [807410] +17:11:55 [ 15] [ 10] [0320101155] +17:11:55 [ 37] [ 11] [57917807410] +17:11:55 [ 70] [ 3] [001] +17:11:55 ============================================================================ +17:11:55 + + +waiting on router queue for slot.... +17:11:55 ============================================================================ +17:11:55 Slot Id : <98> +17:11:55 Transaction Type : RESPONSE +17:11:55 Received From : +17:11:55 ============================================================================ +17:11:55 FNo. Len. Field Value +17:11:55 ============================================================================ +17:11:55 [ 1] [ 4] [0810] +17:11:55 [ 7] [ 10] [0320101155] +17:11:55 [ 11] [ 6] [807410] +17:11:55 [ 15] [ 4] [0320] +17:11:55 [ 37] [ 12] [57917807410] +17:11:55 [ 39] [ 2] [00] +17:11:55 [ 70] [ 3] [001] +17:11:55 ============================================================================ +17:11:55 Sending to : +17:11:55 ============================================================================ +17:11:55 + + +waiting on router queue for slot.... +17:11:57 ============================================================================ +17:11:57 Slot Id : <127> +17:11:57 Transaction Type : REQUEST +17:11:57 Received From : +17:11:57 ============================================================================ +17:11:57 FNo. Len. Field Value +17:11:57 ============================================================================ +17:11:57 [ 1] [ 4] [0200] +17:11:57 [ 2] [ 16] [6213544000040177] +17:11:57 [ 3] [ 6] [010000] +17:11:57 [ 4] [ 12] [000050000000] +17:11:57 [ 7] [ 10] [0320101104] +17:11:57 [ 11] [ 6] [270742] +17:11:57 [ 12] [ 6] [171104] +17:11:57 [ 13] [ 4] [0320] +17:11:57 [ 14] [ 4] [4912] +17:11:57 [ 15] [ 4] [0320] +17:11:57 [ 18] [ 4] [6011] +17:11:57 [ 19] [ 3] [418] +17:11:57 [ 22] [ 3] [021] +17:11:57 [ 25] [ 2] [01] +17:11:57 [ 28] [ 9] [D00002000] +17:11:57 [ 32] [ 6] [180893] +17:11:57 [ 35] [ 32] [6213544000040177=491212014017699] +17:11:57 [ 37] [ 12] [507910270742] +17:11:57 [ 41] [ 8] [0421BKPH] +17:11:57 [ 42] [ 15] [999999 ] +17:11:57 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:11:57 [ 49] [ 3] [418] +17:11:57 [ 52] [ 16] [5FCDEECCDF131B89] +17:11:57 ============================================================================ +17:11:57 + + +waiting on router queue for slot.... +17:11:57 Sending to : +17:11:57 ============================================================================ +17:11:57 Sending to : +17:11:57 ============================================================================ +17:11:58 ============================================================================ +17:11:58 Slot Id : <127> +17:11:58 Transaction Type : REQUEST +17:11:58 Received From : +17:11:58 ============================================================================ +17:11:58 FNo. Len. Field Value +17:11:58 ============================================================================ +17:11:58 [ 1] [ 4] [0200] +17:11:58 [ 2] [ 16] [6213544000040177] +17:11:58 [ 3] [ 6] [010000] +17:11:58 [ 4] [ 12] [000050000000] +17:11:58 [ 7] [ 10] [0320101104] +17:11:58 [ 11] [ 6] [270742] +17:11:58 [ 12] [ 6] [171104] +17:11:58 [ 13] [ 4] [0320] +17:11:58 [ 14] [ 4] [4912] +17:11:58 [ 15] [ 4] [0320] +17:11:58 [ 18] [ 4] [6011] +17:11:58 [ 19] [ 3] [418] +17:11:58 [ 22] [ 3] [021] +17:11:58 [ 25] [ 2] [01] +17:11:58 [ 28] [ 9] [D00002000] +17:11:58 [ 32] [ 6] [180893] +17:11:58 [ 35] [ 32] [6213544000040177=491212014017699] +17:11:58 [ 37] [ 12] [507910270742] +17:11:58 [ 41] [ 8] [0421BKPH] +17:11:58 [ 42] [ 15] [999999 ] +17:11:58 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:11:58 [ 49] [ 3] [418] +17:11:58 [ 52] [ 16] [5FCDEECCDF131B89] +17:11:58 ============================================================================ +17:11:58 + + +waiting on router queue for slot.... +17:11:58 Sending to : +17:11:58 ============================================================================ +17:11:58 ============================================================================ +17:11:58 Slot Id : <127> +17:11:58 Transaction Type : REQUEST +17:11:58 Received From : +17:11:58 ============================================================================ +17:11:58 FNo. Len. Field Value +17:11:58 ============================================================================ +17:11:58 [ 1] [ 4] [0200] +17:11:58 [ 2] [ 16] [6213544000040177] +17:11:58 [ 3] [ 6] [010000] +17:11:58 [ 4] [ 12] [000050000000] +17:11:58 [ 7] [ 10] [0320101104] +17:11:58 [ 11] [ 6] [270742] +17:11:58 [ 12] [ 6] [171104] +17:11:58 [ 13] [ 4] [0320] +17:11:58 [ 14] [ 4] [4912] +17:11:58 [ 15] [ 4] [0320] +17:11:58 [ 18] [ 4] [6011] +17:11:58 [ 19] [ 3] [418] +17:11:58 [ 22] [ 3] [021] +17:11:58 [ 25] [ 2] [01] +17:11:58 [ 28] [ 9] [D00002000] +17:11:58 [ 32] [ 6] [180893] +17:11:58 [ 35] [ 32] [6213544000040177=491212014017699] +17:11:58 [ 37] [ 12] [507910270742] +17:11:58 [ 41] [ 8] [0421BKPH] +17:11:58 [ 42] [ 15] [999999 ] +17:11:58 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:11:58 [ 49] [ 3] [418] +17:11:58 [ 52] [ 16] [F9BBB6AE26FF4B8F] +17:11:58 ============================================================================ +17:11:58 + + +waiting on router queue for slot.... +17:11:58 Sending to : <0> +17:11:58 ============================================================================ +17:11:58 ============================================================================ +17:11:58 Slot Id : <127> +17:11:58 Transaction Type : RESPONSE +17:11:58 Received From : +17:11:58 ============================================================================ +17:11:58 FNo. Len. Field Value +17:11:58 ============================================================================ +17:11:58 [ 1] [ 4] [0210] +17:11:58 [ 2] [ 16] [6213544000040177] +17:11:58 [ 3] [ 6] [010000] +17:11:58 [ 4] [ 12] [000050000000] +17:11:58 [ 7] [ 10] [0320101104] +17:11:58 [ 11] [ 6] [270742] +17:11:58 [ 12] [ 6] [171104] +17:11:58 [ 13] [ 4] [0320] +17:11:58 [ 15] [ 4] [0320] +17:11:58 [ 18] [ 4] [6011] +17:11:58 [ 19] [ 3] [418] +17:11:58 [ 32] [ 6] [180893] +17:11:58 [ 35] [ 32] [6213544000040177=491212014017699] +17:11:58 [ 37] [ 12] [507910270742] +17:11:58 [ 38] [ 6] [270742] +17:11:58 [ 39] [ 2] [51] +17:11:58 [ 41] [ 8] [0421BKPH] +17:11:58 [ 49] [ 3] [418] +17:11:58 [ 54] [ 40] [0001418C0000547049060002418C000054704906] +17:11:58 ============================================================================ +17:11:58 Sending to : +17:11:58 ============================================================================ +17:11:58 + + +waiting on router queue for slot.... +17:11:59 ============================================================================ +17:11:59 Slot Id : <127> +17:11:59 Transaction Type : RESPONSE +17:11:59 Received From : +17:11:59 ============================================================================ +17:11:59 FNo. Len. Field Value +17:11:59 ============================================================================ +17:11:59 [ 1] [ 4] [0210] +17:11:59 [ 2] [ 16] [6213544000040177] +17:11:59 [ 3] [ 6] [010000] +17:11:59 [ 4] [ 12] [000050000000] +17:11:59 [ 7] [ 10] [0320101104] +17:11:59 [ 11] [ 6] [270742] +17:11:59 [ 12] [ 6] [171104] +17:11:59 [ 13] [ 4] [0320] +17:11:59 [ 15] [ 4] [0320] +17:11:59 [ 18] [ 4] [6011] +17:11:59 [ 19] [ 3] [418] +17:11:59 [ 32] [ 6] [180893] +17:11:59 [ 35] [ 32] [6213544000040177=491212014017699] +17:11:59 [ 37] [ 12] [507910270742] +17:11:59 [ 38] [ 6] [270742] +17:11:59 [ 39] [ 2] [51] +17:11:59 [ 41] [ 8] [0421BKPH] +17:11:59 [ 49] [ 3] [418] +17:11:59 [ 54] [ 40] [0001418C0000547049060002418C000054704906] +17:11:59 ============================================================================ +17:11:59 Calculate Source COMM Id = 2 +17:11:59 ============================================================================ +17:11:59 + + +waiting on router queue for slot.... +17:12:08 ============================================================================ +17:12:08 Slot Id : <75> +17:12:08 Transaction Type : REQUEST +17:12:08 Received From : +17:12:08 ============================================================================ +17:12:08 FNo. Len. Field Value +17:12:08 ============================================================================ +17:12:08 [ 1] [ 4] [0200] +17:12:08 [ 2] [ 16] [6213544001612677] +17:12:08 [ 3] [ 6] [011000] +17:12:08 [ 4] [ 12] [000020000000] +17:12:08 [ 7] [ 10] [0320171229] +17:12:08 [ 11] [ 6] [209340] +17:12:08 [ 12] [ 6] [170822] +17:12:08 [ 13] [ 4] [0320] +17:12:08 [ 14] [ 4] [4912] +17:12:08 [ 15] [ 4] [0320] +17:12:08 [ 18] [ 4] [6011] +17:12:08 [ 19] [ 3] [418] +17:12:08 [ 22] [ 3] [021] +17:12:08 [ 25] [ 2] [01] +17:12:08 [ 28] [ 9] [D00002000] +17:12:08 [ 32] [ 6] [198901] +17:12:08 [ 35] [ 32] [6213544001612677=491212011267886] +17:12:08 [ 37] [ 12] [507917209340] +17:12:08 [ 41] [ 8] [00852902] +17:12:08 [ 42] [ 15] [000000040852902] +17:12:08 [ 43] [ 40] [ATM SAVANCH II VN ] +17:12:08 [ 49] [ 3] [418] +17:12:08 [ 52] [ 16] [508D27236AC1A75E] +17:12:08 ============================================================================ +17:12:08 + + +waiting on router queue for slot.... +17:12:08 Sending to : +17:12:08 ============================================================================ +17:12:08 Sending to : +17:12:08 ============================================================================ +17:12:09 ============================================================================ +17:12:09 Slot Id : <75> +17:12:09 Transaction Type : REQUEST +17:12:09 Received From : +17:12:09 ============================================================================ +17:12:09 FNo. Len. Field Value +17:12:09 ============================================================================ +17:12:09 [ 1] [ 4] [0200] +17:12:09 [ 2] [ 16] [6213544001612677] +17:12:09 [ 3] [ 6] [011000] +17:12:09 [ 4] [ 12] [000020000000] +17:12:09 [ 7] [ 10] [0320171229] +17:12:09 [ 11] [ 6] [209340] +17:12:09 [ 12] [ 6] [170822] +17:12:09 [ 13] [ 4] [0320] +17:12:09 [ 14] [ 4] [4912] +17:12:09 [ 15] [ 4] [0320] +17:12:09 [ 18] [ 4] [6011] +17:12:09 [ 19] [ 3] [418] +17:12:09 [ 22] [ 3] [021] +17:12:09 [ 25] [ 2] [01] +17:12:09 [ 28] [ 9] [D00002000] +17:12:09 [ 32] [ 6] [198901] +17:12:09 [ 35] [ 32] [6213544001612677=491212011267886] +17:12:09 [ 37] [ 12] [507917209340] +17:12:09 [ 41] [ 8] [00852902] +17:12:09 [ 42] [ 15] [000000040852902] +17:12:09 [ 43] [ 40] [ATM SAVANCH II VN ] +17:12:09 [ 49] [ 3] [418] +17:12:09 [ 52] [ 16] [508D27236AC1A75E] +17:12:09 ============================================================================ +17:12:09 + + +waiting on router queue for slot.... +17:12:09 Sending to : +17:12:09 ============================================================================ +17:12:09 ============================================================================ +17:12:09 Slot Id : <75> +17:12:09 Transaction Type : REQUEST +17:12:09 Received From : +17:12:09 ============================================================================ +17:12:09 FNo. Len. Field Value +17:12:09 ============================================================================ +17:12:09 [ 1] [ 4] [0200] +17:12:09 [ 2] [ 16] [6213544001612677] +17:12:09 [ 3] [ 6] [011000] +17:12:09 [ 4] [ 12] [000020000000] +17:12:09 [ 7] [ 10] [0320171229] +17:12:09 [ 11] [ 6] [209340] +17:12:09 [ 12] [ 6] [170822] +17:12:09 [ 13] [ 4] [0320] +17:12:09 [ 14] [ 4] [4912] +17:12:09 [ 15] [ 4] [0320] +17:12:09 [ 18] [ 4] [6011] +17:12:09 [ 19] [ 3] [418] +17:12:09 [ 22] [ 3] [021] +17:12:09 [ 25] [ 2] [01] +17:12:09 [ 28] [ 9] [D00002000] +17:12:09 [ 32] [ 6] [198901] +17:12:09 [ 35] [ 32] [6213544001612677=491212011267886] +17:12:09 [ 37] [ 12] [507917209340] +17:12:09 [ 41] [ 8] [00852902] +17:12:09 [ 42] [ 15] [000000040852902] +17:12:09 [ 43] [ 40] [ATM SAVANCH II VN ] +17:12:09 [ 49] [ 3] [418] +17:12:09 [ 52] [ 16] [5487B3E58276B6DC] +17:12:09 ============================================================================ +17:12:09 + + +waiting on router queue for slot.... +17:12:09 Sending to : <0> +17:12:09 ============================================================================ +17:12:09 ============================================================================ +17:12:09 Slot Id : <75> +17:12:09 Transaction Type : RESPONSE +17:12:09 Received From : +17:12:09 ============================================================================ +17:12:09 FNo. Len. Field Value +17:12:09 ============================================================================ +17:12:09 [ 1] [ 4] [0210] +17:12:09 [ 2] [ 16] [6213544001612677] +17:12:09 [ 3] [ 6] [011000] +17:12:09 [ 4] [ 12] [000020000000] +17:12:09 [ 7] [ 10] [0320171229] +17:12:09 [ 11] [ 6] [209340] +17:12:09 [ 12] [ 6] [170822] +17:12:09 [ 13] [ 4] [0320] +17:12:09 [ 15] [ 4] [0320] +17:12:09 [ 18] [ 4] [6011] +17:12:09 [ 19] [ 3] [418] +17:12:09 [ 32] [ 6] [198901] +17:12:09 [ 35] [ 32] [6213544001612677=491212011267886] +17:12:09 [ 37] [ 12] [507917209340] +17:12:09 [ 38] [ 6] [059732] +17:12:09 [ 39] [ 2] [00] +17:12:09 [ 41] [ 8] [00852902] +17:12:09 [ 49] [ 3] [418] +17:12:09 [ 54] [ 40] [1001418C0000405243131002418C000040524313] +17:12:09 ============================================================================ +17:12:09 Sending to : +17:12:09 ============================================================================ +17:12:09 + + +waiting on router queue for slot.... +17:12:10 ============================================================================ +17:12:10 Slot Id : <95> +17:12:10 Transaction Type : REQUEST +17:12:10 Received From : +17:12:10 ============================================================================ +17:12:10 FNo. Len. Field Value +17:12:10 ============================================================================ +17:12:10 [ 1] [ 4] [0800] +17:12:10 [ 7] [ 10] [0320101116] +17:12:10 [ 11] [ 6] [157402] +17:12:10 [ 70] [ 3] [301] +17:12:10 ============================================================================ +17:12:10 + + +waiting on router queue for slot.... +17:12:10 Sending to : +17:12:10 ============================================================================ +17:12:10 ============================================================================ +17:12:10 Slot Id : <95> +17:12:10 Transaction Type : RESPONSE +17:12:10 Received From : +17:12:10 ============================================================================ +17:12:10 FNo. Len. Field Value +17:12:10 ============================================================================ +17:12:10 [ 1] [ 4] [0810] +17:12:10 [ 7] [ 10] [0320101116] +17:12:10 [ 11] [ 6] [157402] +17:12:10 [ 39] [ 2] [00] +17:12:10 [ 70] [ 3] [301] +17:12:10 ============================================================================ +17:12:10 Calculate Source COMM Id = 2 +17:12:10 ============================================================================ +17:12:10 + + +waiting on router queue for slot.... +17:12:11 ============================================================================ +17:12:11 Slot Id : <75> +17:12:11 Transaction Type : RESPONSE +17:12:11 Received From : +17:12:11 ============================================================================ +17:12:11 FNo. Len. Field Value +17:12:11 ============================================================================ +17:12:11 [ 1] [ 4] [0210] +17:12:11 [ 2] [ 16] [6213544001612677] +17:12:11 [ 3] [ 6] [011000] +17:12:11 [ 4] [ 12] [000020000000] +17:12:11 [ 7] [ 10] [0320171229] +17:12:11 [ 11] [ 6] [209340] +17:12:11 [ 12] [ 6] [170822] +17:12:11 [ 13] [ 4] [0320] +17:12:11 [ 15] [ 4] [0320] +17:12:11 [ 18] [ 4] [6011] +17:12:11 [ 19] [ 3] [418] +17:12:11 [ 32] [ 6] [198901] +17:12:11 [ 35] [ 32] [6213544001612677=491212011267886] +17:12:11 [ 37] [ 12] [507917209340] +17:12:11 [ 38] [ 6] [059732] +17:12:11 [ 39] [ 2] [00] +17:12:11 [ 41] [ 8] [00852902] +17:12:11 [ 49] [ 3] [418] +17:12:11 [ 54] [ 40] [1001418C0000405243131002418C000040524313] +17:12:11 ============================================================================ +17:12:11 Calculate Source COMM Id = 5 +17:12:11 ============================================================================ +17:12:11 + + +waiting on router queue for slot.... +17:12:20 ============================================================================ +17:12:20 Slot Id : <53> +17:12:20 Transaction Type : REQUEST +17:12:20 Received From : +17:12:20 ============================================================================ +17:12:20 FNo. Len. Field Value +17:12:20 ============================================================================ +17:12:20 [ 1] [ 4] [0800] +17:12:20 [ 7] [ 10] [0321002409] +17:12:20 [ 11] [ 6] [172409] +17:12:20 [ 37] [ 12] [57917172409] +17:12:20 [ 70] [ 3] [301] +17:12:20 ============================================================================ +17:12:20 + + +waiting on router queue for slot.... +17:12:20 Sending to : +17:12:20 ============================================================================ +17:12:20 ============================================================================ +17:12:20 Slot Id : <53> +17:12:20 Transaction Type : RESPONSE +17:12:20 Received From : +17:12:20 ============================================================================ +17:12:20 FNo. Len. Field Value +17:12:20 ============================================================================ +17:12:20 [ 1] [ 4] [0810] +17:12:20 [ 7] [ 10] [0321002409] +17:12:20 [ 11] [ 6] [172409] +17:12:20 [ 37] [ 12] [579171724090] +17:12:20 [ 39] [ 2] [00] +17:12:20 [ 70] [ 3] [810] +17:12:20 ============================================================================ +17:12:20 Calculate Source COMM Id = 6 +17:12:20 ============================================================================ +17:12:20 + + +waiting on router queue for slot.... +17:12:26 ============================================================================ +17:12:26 Slot Id : <94> +17:12:26 Transaction Type : REQUEST +17:12:26 Received From : +17:12:26 ============================================================================ +17:12:26 FNo. Len. Field Value +17:12:26 ============================================================================ +17:12:26 [ 1] [ 4] [0800] +17:12:26 [ 7] [ 10] [0320101132] +17:12:26 [ 11] [ 6] [157403] +17:12:26 [ 70] [ 3] [301] +17:12:26 ============================================================================ +17:12:26 + + +waiting on router queue for slot.... +17:12:26 Sending to : +17:12:26 ============================================================================ +17:12:26 ============================================================================ +17:12:26 Slot Id : <94> +17:12:26 Transaction Type : RESPONSE +17:12:26 Received From : +17:12:26 ============================================================================ +17:12:26 FNo. Len. Field Value +17:12:26 ============================================================================ +17:12:26 [ 1] [ 4] [0810] +17:12:26 [ 7] [ 10] [0320101132] +17:12:26 [ 11] [ 6] [157403] +17:12:26 [ 39] [ 2] [00] +17:12:26 [ 70] [ 3] [301] +17:12:26 ============================================================================ +17:12:26 Calculate Source COMM Id = 2 +17:12:26 ============================================================================ +17:12:26 + + +waiting on router queue for slot.... +17:12:28 ============================================================================ +17:12:28 Slot Id : <134> +17:12:28 Transaction Type : REQUEST +17:12:28 Received From : +17:12:28 ============================================================================ +17:12:28 FNo. Len. Field Value +17:12:28 ============================================================================ +17:12:28 [ 1] [ 4] [0200] +17:12:28 [ 2] [ 16] [6213544001960258] +17:12:28 [ 3] [ 6] [011000] +17:12:28 [ 4] [ 12] [000055000000] +17:12:28 [ 7] [ 10] [0320171249] +17:12:28 [ 11] [ 6] [209346] +17:12:28 [ 12] [ 6] [170754] +17:12:28 [ 13] [ 4] [0320] +17:12:28 [ 14] [ 4] [4912] +17:12:28 [ 15] [ 4] [0320] +17:12:28 [ 18] [ 4] [6011] +17:12:28 [ 19] [ 3] [418] +17:12:28 [ 22] [ 3] [021] +17:12:28 [ 25] [ 2] [01] +17:12:28 [ 28] [ 9] [D00002000] +17:12:28 [ 32] [ 6] [198901] +17:12:28 [ 35] [ 32] [6213544001960258=491212016025353] +17:12:28 [ 37] [ 12] [507917209346] +17:12:28 [ 41] [ 8] [19529001] +17:12:28 [ 42] [ 15] [000000041952901] +17:12:28 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:12:28 [ 49] [ 3] [418] +17:12:28 [ 52] [ 16] [B14DC1E1A4533D67] +17:12:28 ============================================================================ +17:12:28 + + +waiting on router queue for slot.... +17:12:28 Sending to : +17:12:28 ============================================================================ +17:12:28 Sending to : +17:12:28 ============================================================================ +17:12:29 ============================================================================ +17:12:29 Slot Id : <134> +17:12:29 Transaction Type : REQUEST +17:12:29 Received From : +17:12:29 ============================================================================ +17:12:29 FNo. Len. Field Value +17:12:29 ============================================================================ +17:12:29 [ 1] [ 4] [0200] +17:12:29 [ 2] [ 16] [6213544001960258] +17:12:29 [ 3] [ 6] [011000] +17:12:29 [ 4] [ 12] [000055000000] +17:12:29 [ 7] [ 10] [0320171249] +17:12:29 [ 11] [ 6] [209346] +17:12:29 [ 12] [ 6] [170754] +17:12:29 [ 13] [ 4] [0320] +17:12:29 [ 14] [ 4] [4912] +17:12:29 [ 15] [ 4] [0320] +17:12:29 [ 18] [ 4] [6011] +17:12:29 [ 19] [ 3] [418] +17:12:29 [ 22] [ 3] [021] +17:12:29 [ 25] [ 2] [01] +17:12:29 [ 28] [ 9] [D00002000] +17:12:29 [ 32] [ 6] [198901] +17:12:29 [ 35] [ 32] [6213544001960258=491212016025353] +17:12:29 [ 37] [ 12] [507917209346] +17:12:29 [ 41] [ 8] [19529001] +17:12:29 [ 42] [ 15] [000000041952901] +17:12:29 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:12:29 [ 49] [ 3] [418] +17:12:29 [ 52] [ 16] [B14DC1E1A4533D67] +17:12:29 ============================================================================ +17:12:29 + + +waiting on router queue for slot.... +17:12:29 Sending to : +17:12:29 ============================================================================ +17:12:29 ============================================================================ +17:12:29 Slot Id : <134> +17:12:29 Transaction Type : REQUEST +17:12:29 Received From : +17:12:29 ============================================================================ +17:12:29 FNo. Len. Field Value +17:12:29 ============================================================================ +17:12:29 [ 1] [ 4] [0200] +17:12:29 [ 2] [ 16] [6213544001960258] +17:12:29 [ 3] [ 6] [011000] +17:12:29 [ 4] [ 12] [000055000000] +17:12:29 [ 7] [ 10] [0320171249] +17:12:29 [ 11] [ 6] [209346] +17:12:29 [ 12] [ 6] [170754] +17:12:29 [ 13] [ 4] [0320] +17:12:29 [ 14] [ 4] [4912] +17:12:29 [ 15] [ 4] [0320] +17:12:29 [ 18] [ 4] [6011] +17:12:29 [ 19] [ 3] [418] +17:12:29 [ 22] [ 3] [021] +17:12:29 [ 25] [ 2] [01] +17:12:29 [ 28] [ 9] [D00002000] +17:12:29 [ 32] [ 6] [198901] +17:12:29 [ 35] [ 32] [6213544001960258=491212016025353] +17:12:29 [ 37] [ 12] [507917209346] +17:12:29 [ 41] [ 8] [19529001] +17:12:29 [ 42] [ 15] [000000041952901] +17:12:29 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:12:29 [ 49] [ 3] [418] +17:12:29 [ 52] [ 16] [65B011F83CCE0088] +17:12:29 ============================================================================ +17:12:29 + + +waiting on router queue for slot.... +17:12:29 Sending to : <0> +17:12:29 ============================================================================ +17:12:29 ============================================================================ +17:12:29 Slot Id : <134> +17:12:29 Transaction Type : RESPONSE +17:12:29 Received From : +17:12:29 ============================================================================ +17:12:29 FNo. Len. Field Value +17:12:29 ============================================================================ +17:12:29 [ 1] [ 4] [0210] +17:12:29 [ 2] [ 16] [6213544001960258] +17:12:29 [ 3] [ 6] [011000] +17:12:29 [ 4] [ 12] [000055000000] +17:12:29 [ 7] [ 10] [0320171249] +17:12:29 [ 11] [ 6] [209346] +17:12:29 [ 12] [ 6] [170754] +17:12:29 [ 13] [ 4] [0320] +17:12:29 [ 15] [ 4] [0320] +17:12:29 [ 18] [ 4] [6011] +17:12:29 [ 19] [ 3] [418] +17:12:29 [ 32] [ 6] [198901] +17:12:29 [ 35] [ 32] [6213544001960258=491212016025353] +17:12:29 [ 37] [ 12] [507917209346] +17:12:29 [ 38] [ 6] [282138] +17:12:29 [ 39] [ 2] [00] +17:12:29 [ 41] [ 8] [19529001] +17:12:29 [ 49] [ 3] [418] +17:12:29 [ 54] [ 40] [1001418C0000052044251002418C000005204425] +17:12:29 ============================================================================ +17:12:29 Sending to : +17:12:29 ============================================================================ +17:12:29 + + +waiting on router queue for slot.... +17:12:31 ============================================================================ +17:12:31 Slot Id : <134> +17:12:31 Transaction Type : RESPONSE +17:12:31 Received From : +17:12:31 ============================================================================ +17:12:31 FNo. Len. Field Value +17:12:31 ============================================================================ +17:12:31 [ 1] [ 4] [0210] +17:12:31 [ 2] [ 16] [6213544001960258] +17:12:31 [ 3] [ 6] [011000] +17:12:31 [ 4] [ 12] [000055000000] +17:12:31 [ 7] [ 10] [0320171249] +17:12:31 [ 11] [ 6] [209346] +17:12:31 [ 12] [ 6] [170754] +17:12:31 [ 13] [ 4] [0320] +17:12:31 [ 15] [ 4] [0320] +17:12:31 [ 18] [ 4] [6011] +17:12:31 [ 19] [ 3] [418] +17:12:31 [ 32] [ 6] [198901] +17:12:31 [ 35] [ 32] [6213544001960258=491212016025353] +17:12:31 [ 37] [ 12] [507917209346] +17:12:31 [ 38] [ 6] [282138] +17:12:31 [ 39] [ 2] [00] +17:12:31 [ 41] [ 8] [19529001] +17:12:31 [ 49] [ 3] [418] +17:12:31 [ 54] [ 40] [1001418C0000052044251002418C000005204425] +17:12:31 ============================================================================ +17:12:31 Calculate Source COMM Id = 5 +17:12:31 ============================================================================ +17:12:31 + + +waiting on router queue for slot.... +17:12:32 ============================================================================ +17:12:32 Slot Id : <125> +17:12:32 Transaction Type : REQUEST +17:12:32 Received From : +17:12:32 ============================================================================ +17:12:32 FNo. Len. Field Value +17:12:32 ============================================================================ +17:12:32 [ 1] [ 4] [0200] +17:12:32 [ 2] [ 16] [6688990102658109] +17:12:32 [ 3] [ 6] [301000] +17:12:32 [ 7] [ 10] [0320101138] +17:12:32 [ 11] [ 6] [270744] +17:12:32 [ 12] [ 6] [171138] +17:12:32 [ 13] [ 4] [0320] +17:12:32 [ 14] [ 4] [4209] +17:12:32 [ 15] [ 4] [0320] +17:12:32 [ 18] [ 4] [6011] +17:12:32 [ 19] [ 3] [418] +17:12:32 [ 22] [ 3] [021] +17:12:32 [ 25] [ 2] [01] +17:12:32 [ 32] [ 6] [180893] +17:12:32 [ 35] [ 37] [6688990102658109=42091231810907900000] +17:12:32 [ 37] [ 12] [507910270744] +17:12:32 [ 41] [ 8] [0527LPBL] +17:12:32 [ 42] [ 15] [999999 ] +17:12:32 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +17:12:32 [ 49] [ 3] [418] +17:12:32 [ 52] [ 16] [21228FF6FBB04369] +17:12:32 ============================================================================ +17:12:32 + + +waiting on router queue for slot.... +17:12:32 Sending to : +17:12:32 ============================================================================ +17:12:32 Sending to : +17:12:32 ============================================================================ +17:12:32 ============================================================================ +17:12:32 Slot Id : <125> +17:12:32 Transaction Type : REQUEST +17:12:32 Received From : +17:12:32 ============================================================================ +17:12:32 FNo. Len. Field Value +17:12:32 ============================================================================ +17:12:32 [ 1] [ 4] [0200] +17:12:32 [ 2] [ 16] [6688990102658109] +17:12:32 [ 3] [ 6] [301000] +17:12:32 [ 7] [ 10] [0320101138] +17:12:32 [ 11] [ 6] [270744] +17:12:32 [ 12] [ 6] [171138] +17:12:32 [ 13] [ 4] [0320] +17:12:32 [ 14] [ 4] [4209] +17:12:32 [ 15] [ 4] [0320] +17:12:32 [ 18] [ 4] [6011] +17:12:32 [ 19] [ 3] [418] +17:12:32 [ 22] [ 3] [021] +17:12:32 [ 25] [ 2] [01] +17:12:32 [ 32] [ 6] [180893] +17:12:32 [ 35] [ 37] [6688990102658109=42091231810907900000] +17:12:32 [ 37] [ 12] [507910270744] +17:12:32 [ 41] [ 8] [0527LPBL] +17:12:32 [ 42] [ 15] [999999 ] +17:12:32 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +17:12:32 [ 49] [ 3] [418] +17:12:32 [ 52] [ 16] [21228FF6FBB04369] +17:12:32 ============================================================================ +17:12:32 + + +waiting on router queue for slot.... +17:12:32 Sending to : +17:12:32 ============================================================================ +17:12:32 ============================================================================ +17:12:32 Slot Id : <125> +17:12:32 Transaction Type : REQUEST +17:12:32 Received From : +17:12:32 ============================================================================ +17:12:32 FNo. Len. Field Value +17:12:32 ============================================================================ +17:12:32 [ 1] [ 4] [0200] +17:12:32 [ 2] [ 16] [6688990102658109] +17:12:32 [ 3] [ 6] [301000] +17:12:32 [ 7] [ 10] [0320101138] +17:12:32 [ 11] [ 6] [270744] +17:12:32 [ 12] [ 6] [171138] +17:12:32 [ 13] [ 4] [0320] +17:12:32 [ 14] [ 4] [4209] +17:12:32 [ 15] [ 4] [0320] +17:12:32 [ 18] [ 4] [6011] +17:12:32 [ 19] [ 3] [418] +17:12:32 [ 22] [ 3] [021] +17:12:32 [ 25] [ 2] [01] +17:12:32 [ 32] [ 6] [180893] +17:12:32 [ 35] [ 37] [6688990102658109=42091231810907900000] +17:12:32 [ 37] [ 12] [507910270744] +17:12:32 [ 41] [ 8] [0527LPBL] +17:12:32 [ 42] [ 15] [999999 ] +17:12:32 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +17:12:32 [ 49] [ 3] [418] +17:12:32 [ 52] [ 16] [9A7CECD3276AE487] +17:12:32 ============================================================================ +17:12:32 + + +waiting on router queue for slot.... +17:12:32 Sending to : <0> +17:12:32 ============================================================================ +17:12:32 ============================================================================ +17:12:32 Slot Id : <125> +17:12:32 Transaction Type : RESPONSE +17:12:32 Received From : +17:12:32 ============================================================================ +17:12:32 FNo. Len. Field Value +17:12:32 ============================================================================ +17:12:32 [ 1] [ 4] [0210] +17:12:32 [ 2] [ 16] [6688990102658109] +17:12:32 [ 3] [ 6] [301000] +17:12:32 [ 4] [ 12] [000000000000] +17:12:32 [ 7] [ 10] [0320101138] +17:12:32 [ 11] [ 6] [270744] +17:12:32 [ 12] [ 6] [171138] +17:12:32 [ 13] [ 4] [0320] +17:12:32 [ 15] [ 4] [0320] +17:12:32 [ 18] [ 4] [6011] +17:12:32 [ 19] [ 3] [418] +17:12:32 [ 22] [ 3] [021] +17:12:32 [ 32] [ 6] [180893] +17:12:32 [ 35] [ 37] [6688990102658109=42091231810907900000] +17:12:32 [ 37] [ 12] [507910270744] +17:12:32 [ 39] [ 2] [14] +17:12:32 [ 41] [ 8] [0527LPBL] +17:12:32 [ 49] [ 3] [418] +17:12:32 ============================================================================ +17:12:32 Sending to : +17:12:32 ============================================================================ +17:12:32 + + +waiting on router queue for slot.... +17:12:33 ============================================================================ +17:12:33 Slot Id : <125> +17:12:33 Transaction Type : RESPONSE +17:12:33 Received From : +17:12:33 ============================================================================ +17:12:33 FNo. Len. Field Value +17:12:33 ============================================================================ +17:12:33 [ 1] [ 4] [0210] +17:12:33 [ 2] [ 16] [6688990102658109] +17:12:33 [ 3] [ 6] [301000] +17:12:33 [ 4] [ 12] [000000000000] +17:12:33 [ 7] [ 10] [0320101138] +17:12:33 [ 11] [ 6] [270744] +17:12:33 [ 12] [ 6] [171138] +17:12:33 [ 13] [ 4] [0320] +17:12:33 [ 15] [ 4] [0320] +17:12:33 [ 18] [ 4] [6011] +17:12:33 [ 19] [ 3] [418] +17:12:33 [ 22] [ 3] [021] +17:12:33 [ 32] [ 6] [180893] +17:12:33 [ 35] [ 37] [6688990102658109=42091231810907900000] +17:12:33 [ 37] [ 12] [507910270744] +17:12:33 [ 39] [ 2] [14] +17:12:33 [ 41] [ 8] [0527LPBL] +17:12:33 [ 49] [ 3] [418] +17:12:33 ============================================================================ +17:12:33 Calculate Source COMM Id = 2 +17:12:33 ============================================================================ +17:12:33 + + +waiting on router queue for slot.... +17:12:34 ============================================================================ +17:12:34 Slot Id : <96> +17:12:34 Transaction Type : REQUEST +17:12:34 Received From : +17:12:34 ============================================================================ +17:12:34 FNo. Len. Field Value +17:12:34 ============================================================================ +17:12:34 [ 1] [ 4] [0200] +17:12:34 [ 2] [ 16] [6688990106047002] +17:12:34 [ 3] [ 6] [010000] +17:12:34 [ 4] [ 12] [000100000000] +17:12:34 [ 7] [ 10] [0320171229] +17:12:34 [ 11] [ 6] [811654] +17:12:34 [ 12] [ 6] [171229] +17:12:34 [ 13] [ 4] [0320] +17:12:34 [ 15] [ 4] [0320] +17:12:34 [ 18] [ 4] [6011] +17:12:34 [ 22] [ 3] [900] +17:12:34 [ 25] [ 2] [02] +17:12:34 [ 28] [ 9] [D00002000] +17:12:34 [ 32] [ 6] [621354] +17:12:34 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:12:34 [ 37] [ 12] [507903499660] +17:12:34 [ 41] [ 8] [06002200] +17:12:34 [ 42] [ 15] [NATIVE ] +17:12:34 [ 43] [ 40] [Beng Market Beng LAO] +17:12:34 [ 49] [ 3] [418] +17:12:34 [ 52] [ 16] [08BEF2A6705000D5] +17:12:34 ============================================================================ +17:12:34 + + +waiting on router queue for slot.... +17:12:34 Sending to : +17:12:34 ============================================================================ +17:12:34 Sending to : +17:12:34 ============================================================================ +17:12:35 ============================================================================ +17:12:35 Slot Id : <96> +17:12:35 Transaction Type : REQUEST +17:12:35 Received From : +17:12:35 ============================================================================ +17:12:35 FNo. Len. Field Value +17:12:35 ============================================================================ +17:12:35 [ 1] [ 4] [0200] +17:12:35 [ 2] [ 16] [6688990106047002] +17:12:35 [ 3] [ 6] [010000] +17:12:35 [ 4] [ 12] [000100000000] +17:12:35 [ 7] [ 10] [0320171229] +17:12:35 [ 11] [ 6] [811654] +17:12:35 [ 12] [ 6] [171229] +17:12:35 [ 13] [ 4] [0320] +17:12:35 [ 15] [ 4] [0320] +17:12:35 [ 18] [ 4] [6011] +17:12:35 [ 22] [ 3] [900] +17:12:35 [ 25] [ 2] [02] +17:12:35 [ 28] [ 9] [D00002000] +17:12:35 [ 32] [ 6] [621354] +17:12:35 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:12:35 [ 37] [ 12] [507903499660] +17:12:35 [ 41] [ 8] [06002200] +17:12:35 [ 42] [ 15] [NATIVE ] +17:12:35 [ 43] [ 40] [Beng Market Beng LAO] +17:12:35 [ 49] [ 3] [418] +17:12:35 [ 52] [ 16] [08BEF2A6705000D5] +17:12:35 ============================================================================ +17:12:35 + + +waiting on router queue for slot.... +17:12:35 Sending to : +17:12:35 ============================================================================ +17:12:35 ============================================================================ +17:12:35 Slot Id : <96> +17:12:35 Transaction Type : REQUEST +17:12:35 Received From : +17:12:35 ============================================================================ +17:12:35 FNo. Len. Field Value +17:12:35 ============================================================================ +17:12:35 [ 1] [ 4] [0200] +17:12:35 [ 2] [ 16] [6688990106047002] +17:12:35 [ 3] [ 6] [010000] +17:12:35 [ 4] [ 12] [000100000000] +17:12:35 [ 7] [ 10] [0320171229] +17:12:35 [ 11] [ 6] [811654] +17:12:35 [ 12] [ 6] [171229] +17:12:35 [ 13] [ 4] [0320] +17:12:35 [ 15] [ 4] [0320] +17:12:35 [ 18] [ 4] [6011] +17:12:35 [ 22] [ 3] [900] +17:12:35 [ 25] [ 2] [02] +17:12:35 [ 28] [ 9] [D00002000] +17:12:35 [ 32] [ 6] [621354] +17:12:35 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:12:35 [ 37] [ 12] [507903499660] +17:12:35 [ 41] [ 8] [06002200] +17:12:35 [ 42] [ 15] [NATIVE ] +17:12:35 [ 43] [ 40] [Beng Market Beng LAO] +17:12:35 [ 49] [ 3] [418] +17:12:35 [ 52] [ 16] [AFA44F3B5FCA32E5] +17:12:35 ============================================================================ +17:12:35 + + +waiting on router queue for slot.... +17:12:35 Sending to : <4> +17:12:35 ============================================================================ +17:12:36 ============================================================================ +17:12:36 Slot Id : <103> +17:12:36 Transaction Type : REQUEST +17:12:36 Received From : +17:12:36 ============================================================================ +17:12:36 FNo. Len. Field Value +17:12:36 ============================================================================ +17:12:36 [ 1] [ 4] [0200] +17:12:36 [ 2] [ 16] [6213545001002710] +17:12:36 [ 3] [ 6] [011000] +17:12:36 [ 4] [ 12] [000020000000] +17:12:36 [ 7] [ 10] [0320101141] +17:12:36 [ 11] [ 6] [270747] +17:12:36 [ 12] [ 6] [171141] +17:12:36 [ 13] [ 4] [0320] +17:12:36 [ 14] [ 4] [4912] +17:12:36 [ 15] [ 4] [0320] +17:12:36 [ 18] [ 4] [6011] +17:12:36 [ 19] [ 3] [418] +17:12:36 [ 22] [ 3] [021] +17:12:36 [ 25] [ 2] [01] +17:12:36 [ 28] [ 9] [D00002000] +17:12:36 [ 32] [ 6] [180893] +17:12:36 [ 35] [ 32] [6213545001002710=491212010271415] +17:12:36 [ 37] [ 12] [507910270747] +17:12:36 [ 41] [ 8] [0301LPBX] +17:12:36 [ 42] [ 15] [999999 ] +17:12:36 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +17:12:36 [ 49] [ 3] [418] +17:12:36 [ 52] [ 16] [03D365C61B758106] +17:12:36 ============================================================================ +17:12:36 + + +waiting on router queue for slot.... +17:12:36 Sending to : +17:12:36 ============================================================================ +17:12:36 Sending to : +17:12:36 ============================================================================ +17:12:36 ============================================================================ +17:12:36 Slot Id : <96> +17:12:36 Transaction Type : RESPONSE +17:12:36 Received From : +17:12:36 ============================================================================ +17:12:36 FNo. Len. Field Value +17:12:36 ============================================================================ +17:12:36 [ 1] [ 4] [0210] +17:12:36 [ 2] [ 16] [6688990106047002] +17:12:36 [ 3] [ 6] [010000] +17:12:36 [ 4] [ 12] [000100000000] +17:12:36 [ 11] [ 6] [811654] +17:12:36 [ 12] [ 6] [171229] +17:12:36 [ 15] [ 4] [0320] +17:12:36 [ 18] [ 4] [6011] +17:12:36 [ 32] [ 6] [621354] +17:12:36 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:12:36 [ 37] [ 12] [507903499660] +17:12:36 [ 38] [ 6] [096271] +17:12:36 [ 39] [ 2] [00] +17:12:36 [ 41] [ 8] [06002200] +17:12:36 [ 49] [ 3] [418] +17:12:36 [ 54] [ 20] [0002418C000109616563] +17:12:36 ============================================================================ +17:12:36 Sending to : +17:12:36 ============================================================================ +17:12:36 + + +waiting on router queue for slot.... +17:12:36 ============================================================================ +17:12:36 Slot Id : <103> +17:12:36 Transaction Type : REQUEST +17:12:36 Received From : +17:12:36 ============================================================================ +17:12:36 FNo. Len. Field Value +17:12:36 ============================================================================ +17:12:36 [ 1] [ 4] [0200] +17:12:36 [ 2] [ 16] [6213545001002710] +17:12:36 [ 3] [ 6] [011000] +17:12:36 [ 4] [ 12] [000020000000] +17:12:36 [ 7] [ 10] [0320101141] +17:12:36 [ 11] [ 6] [270747] +17:12:36 [ 12] [ 6] [171141] +17:12:36 [ 13] [ 4] [0320] +17:12:36 [ 14] [ 4] [4912] +17:12:36 [ 15] [ 4] [0320] +17:12:36 [ 18] [ 4] [6011] +17:12:36 [ 19] [ 3] [418] +17:12:36 [ 22] [ 3] [021] +17:12:36 [ 25] [ 2] [01] +17:12:36 [ 28] [ 9] [D00002000] +17:12:36 [ 32] [ 6] [180893] +17:12:36 [ 35] [ 32] [6213545001002710=491212010271415] +17:12:36 [ 37] [ 12] [507910270747] +17:12:36 [ 41] [ 8] [0301LPBX] +17:12:36 [ 42] [ 15] [999999 ] +17:12:36 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +17:12:36 [ 49] [ 3] [418] +17:12:36 [ 52] [ 16] [03D365C61B758106] +17:12:36 ============================================================================ +17:12:36 + + +waiting on router queue for slot.... +17:12:36 Sending to : +17:12:36 ============================================================================ +17:12:36 ============================================================================ +17:12:36 Slot Id : <103> +17:12:36 Transaction Type : REQUEST +17:12:36 Received From : +17:12:36 ============================================================================ +17:12:36 FNo. Len. Field Value +17:12:36 ============================================================================ +17:12:36 [ 1] [ 4] [0200] +17:12:36 [ 2] [ 16] [6213545001002710] +17:12:36 [ 3] [ 6] [011000] +17:12:36 [ 4] [ 12] [000020000000] +17:12:36 [ 7] [ 10] [0320101141] +17:12:36 [ 11] [ 6] [270747] +17:12:36 [ 12] [ 6] [171141] +17:12:36 [ 13] [ 4] [0320] +17:12:36 [ 14] [ 4] [4912] +17:12:36 [ 15] [ 4] [0320] +17:12:36 [ 18] [ 4] [6011] +17:12:36 [ 19] [ 3] [418] +17:12:36 [ 22] [ 3] [021] +17:12:36 [ 25] [ 2] [01] +17:12:36 [ 28] [ 9] [D00002000] +17:12:36 [ 32] [ 6] [180893] +17:12:36 [ 35] [ 32] [6213545001002710=491212010271415] +17:12:36 [ 37] [ 12] [507910270747] +17:12:36 [ 41] [ 8] [0301LPBX] +17:12:36 [ 42] [ 15] [999999 ] +17:12:36 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +17:12:36 [ 49] [ 3] [418] +17:12:36 [ 52] [ 16] [828D75DA7AF8B684] +17:12:36 ============================================================================ +17:12:36 + + +waiting on router queue for slot.... +17:12:36 Sending to : <0> +17:12:36 ============================================================================ +17:12:36 ============================================================================ +17:12:36 Slot Id : <103> +17:12:36 Transaction Type : RESPONSE +17:12:36 Received From : +17:12:36 ============================================================================ +17:12:36 FNo. Len. Field Value +17:12:36 ============================================================================ +17:12:36 [ 1] [ 4] [0210] +17:12:36 [ 2] [ 16] [6213545001002710] +17:12:36 [ 3] [ 6] [011000] +17:12:36 [ 4] [ 12] [000020000000] +17:12:36 [ 7] [ 10] [0320101141] +17:12:36 [ 11] [ 6] [270747] +17:12:36 [ 12] [ 6] [171141] +17:12:36 [ 13] [ 4] [0320] +17:12:36 [ 15] [ 4] [0320] +17:12:36 [ 18] [ 4] [6011] +17:12:36 [ 19] [ 3] [418] +17:12:36 [ 32] [ 6] [180893] +17:12:36 [ 35] [ 32] [6213545001002710=491212010271415] +17:12:36 [ 37] [ 12] [507910270747] +17:12:36 [ 38] [ 6] [391027] +17:12:36 [ 39] [ 2] [00] +17:12:36 [ 41] [ 8] [0301LPBX] +17:12:36 [ 49] [ 3] [418] +17:12:36 [ 54] [ 40] [1001418C0000260186961002418C000026018696] +17:12:36 ============================================================================ +17:12:36 Sending to : +17:12:36 ============================================================================ +17:12:36 + + +waiting on router queue for slot.... +17:12:37 ============================================================================ +17:12:37 Slot Id : <96> +17:12:37 Transaction Type : RESPONSE +17:12:37 Received From : +17:12:37 ============================================================================ +17:12:37 FNo. Len. Field Value +17:12:37 ============================================================================ +17:12:37 [ 1] [ 4] [0210] +17:12:37 [ 2] [ 16] [6688990106047002] +17:12:37 [ 3] [ 6] [010000] +17:12:37 [ 4] [ 12] [000100000000] +17:12:37 [ 11] [ 6] [811654] +17:12:37 [ 12] [ 6] [171229] +17:12:37 [ 15] [ 4] [0320] +17:12:37 [ 18] [ 4] [6011] +17:12:37 [ 32] [ 6] [621354] +17:12:37 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:12:37 [ 37] [ 12] [507903499660] +17:12:37 [ 38] [ 6] [096271] +17:12:37 [ 39] [ 2] [00] +17:12:37 [ 41] [ 8] [06002200] +17:12:37 [ 49] [ 3] [418] +17:12:37 [ 54] [ 20] [0002418C000109616563] +17:12:37 ============================================================================ +17:12:37 Calculate Source COMM Id = 0 +17:12:37 ============================================================================ +17:12:37 + + +waiting on router queue for slot.... +17:12:39 ============================================================================ +17:12:39 Slot Id : <103> +17:12:39 Transaction Type : RESPONSE +17:12:39 Received From : +17:12:39 ============================================================================ +17:12:39 FNo. Len. Field Value +17:12:39 ============================================================================ +17:12:39 [ 1] [ 4] [0210] +17:12:39 [ 2] [ 16] [6213545001002710] +17:12:39 [ 3] [ 6] [011000] +17:12:39 [ 4] [ 12] [000020000000] +17:12:39 [ 7] [ 10] [0320101141] +17:12:39 [ 11] [ 6] [270747] +17:12:39 [ 12] [ 6] [171141] +17:12:39 [ 13] [ 4] [0320] +17:12:39 [ 15] [ 4] [0320] +17:12:39 [ 18] [ 4] [6011] +17:12:39 [ 19] [ 3] [418] +17:12:39 [ 32] [ 6] [180893] +17:12:39 [ 35] [ 32] [6213545001002710=491212010271415] +17:12:39 [ 37] [ 12] [507910270747] +17:12:39 [ 38] [ 6] [391027] +17:12:39 [ 39] [ 2] [00] +17:12:39 [ 41] [ 8] [0301LPBX] +17:12:39 [ 49] [ 3] [418] +17:12:39 [ 54] [ 40] [1001418C0000260186961002418C000026018696] +17:12:39 ============================================================================ +17:12:39 Calculate Source COMM Id = 2 +17:12:39 ============================================================================ +17:12:39 + + +waiting on router queue for slot.... +17:12:40 ============================================================================ +17:12:40 Slot Id : <101> +17:12:40 Transaction Type : REQUEST +17:12:40 Received From : +17:12:40 ============================================================================ +17:12:40 FNo. Len. Field Value +17:12:40 ============================================================================ +17:12:40 [ 1] [ 4] [0200] +17:12:40 [ 2] [ 16] [6213544001721759] +17:12:40 [ 3] [ 6] [010000] +17:12:40 [ 4] [ 12] [000200000000] +17:12:40 [ 7] [ 10] [0320101146] +17:12:40 [ 11] [ 6] [270749] +17:12:40 [ 12] [ 6] [171146] +17:12:40 [ 13] [ 4] [0320] +17:12:40 [ 14] [ 4] [4912] +17:12:40 [ 15] [ 4] [0320] +17:12:40 [ 18] [ 4] [6011] +17:12:40 [ 19] [ 3] [418] +17:12:40 [ 22] [ 3] [021] +17:12:40 [ 25] [ 2] [01] +17:12:40 [ 28] [ 9] [D00002000] +17:12:40 [ 32] [ 6] [180893] +17:12:40 [ 35] [ 32] [6213544001721759=491212012175383] +17:12:40 [ 37] [ 12] [507910270749] +17:12:40 [ 41] [ 8] [0243VTKS] +17:12:40 [ 42] [ 15] [999999 ] +17:12:40 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +17:12:40 [ 49] [ 3] [418] +17:12:40 [ 52] [ 16] [AA68CC813A1CAB2D] +17:12:40 ============================================================================ +17:12:40 + + +waiting on router queue for slot.... +17:12:40 Sending to : +17:12:40 ============================================================================ +17:12:40 Sending to : +17:12:40 ============================================================================ +17:12:40 ============================================================================ +17:12:40 Slot Id : <101> +17:12:40 Transaction Type : REQUEST +17:12:40 Received From : +17:12:40 ============================================================================ +17:12:40 FNo. Len. Field Value +17:12:40 ============================================================================ +17:12:40 [ 1] [ 4] [0200] +17:12:40 [ 2] [ 16] [6213544001721759] +17:12:40 [ 3] [ 6] [010000] +17:12:40 [ 4] [ 12] [000200000000] +17:12:40 [ 7] [ 10] [0320101146] +17:12:40 [ 11] [ 6] [270749] +17:12:40 [ 12] [ 6] [171146] +17:12:40 [ 13] [ 4] [0320] +17:12:40 [ 14] [ 4] [4912] +17:12:40 [ 15] [ 4] [0320] +17:12:40 [ 18] [ 4] [6011] +17:12:40 [ 19] [ 3] [418] +17:12:40 [ 22] [ 3] [021] +17:12:40 [ 25] [ 2] [01] +17:12:40 [ 28] [ 9] [D00002000] +17:12:40 [ 32] [ 6] [180893] +17:12:40 [ 35] [ 32] [6213544001721759=491212012175383] +17:12:40 [ 37] [ 12] [507910270749] +17:12:40 [ 41] [ 8] [0243VTKS] +17:12:40 [ 42] [ 15] [999999 ] +17:12:40 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +17:12:40 [ 49] [ 3] [418] +17:12:40 [ 52] [ 16] [AA68CC813A1CAB2D] +17:12:40 ============================================================================ +17:12:40 + + +waiting on router queue for slot.... +17:12:40 Sending to : +17:12:40 ============================================================================ +17:12:40 ============================================================================ +17:12:40 Slot Id : <101> +17:12:40 Transaction Type : REQUEST +17:12:40 Received From : +17:12:40 ============================================================================ +17:12:40 FNo. Len. Field Value +17:12:40 ============================================================================ +17:12:40 [ 1] [ 4] [0200] +17:12:40 [ 2] [ 16] [6213544001721759] +17:12:40 [ 3] [ 6] [010000] +17:12:40 [ 4] [ 12] [000200000000] +17:12:40 [ 7] [ 10] [0320101146] +17:12:40 [ 11] [ 6] [270749] +17:12:40 [ 12] [ 6] [171146] +17:12:40 [ 13] [ 4] [0320] +17:12:40 [ 14] [ 4] [4912] +17:12:40 [ 15] [ 4] [0320] +17:12:40 [ 18] [ 4] [6011] +17:12:40 [ 19] [ 3] [418] +17:12:40 [ 22] [ 3] [021] +17:12:40 [ 25] [ 2] [01] +17:12:40 [ 28] [ 9] [D00002000] +17:12:40 [ 32] [ 6] [180893] +17:12:40 [ 35] [ 32] [6213544001721759=491212012175383] +17:12:40 [ 37] [ 12] [507910270749] +17:12:40 [ 41] [ 8] [0243VTKS] +17:12:40 [ 42] [ 15] [999999 ] +17:12:40 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +17:12:40 [ 49] [ 3] [418] +17:12:40 [ 52] [ 16] [B6D9B5E03D45620F] +17:12:40 ============================================================================ +17:12:40 + + +waiting on router queue for slot.... +17:12:40 Sending to : <0> +17:12:40 ============================================================================ +17:12:41 ============================================================================ +17:12:41 Slot Id : <101> +17:12:41 Transaction Type : RESPONSE +17:12:41 Received From : +17:12:41 ============================================================================ +17:12:41 FNo. Len. Field Value +17:12:41 ============================================================================ +17:12:41 [ 1] [ 4] [0210] +17:12:41 [ 2] [ 16] [6213544001721759] +17:12:41 [ 3] [ 6] [010000] +17:12:41 [ 4] [ 12] [000200000000] +17:12:41 [ 7] [ 10] [0320101146] +17:12:41 [ 11] [ 6] [270749] +17:12:41 [ 12] [ 6] [171146] +17:12:41 [ 13] [ 4] [0320] +17:12:41 [ 15] [ 4] [0320] +17:12:41 [ 18] [ 4] [6011] +17:12:41 [ 19] [ 3] [418] +17:12:41 [ 22] [ 3] [021] +17:12:41 [ 32] [ 6] [180893] +17:12:41 [ 35] [ 32] [6213544001721759=491212012175383] +17:12:41 [ 37] [ 12] [507910270749] +17:12:41 [ 39] [ 2] [61] +17:12:41 [ 41] [ 8] [0243VTKS] +17:12:41 [ 49] [ 3] [418] +17:12:41 ============================================================================ +17:12:41 Sending to : +17:12:41 ============================================================================ +17:12:41 + + +waiting on router queue for slot.... +17:12:42 ============================================================================ +17:12:42 Slot Id : <101> +17:12:42 Transaction Type : RESPONSE +17:12:42 Received From : +17:12:42 ============================================================================ +17:12:42 FNo. Len. Field Value +17:12:42 ============================================================================ +17:12:42 [ 1] [ 4] [0210] +17:12:42 [ 2] [ 16] [6213544001721759] +17:12:42 [ 3] [ 6] [010000] +17:12:42 [ 4] [ 12] [000200000000] +17:12:42 [ 7] [ 10] [0320101146] +17:12:42 [ 11] [ 6] [270749] +17:12:42 [ 12] [ 6] [171146] +17:12:42 [ 13] [ 4] [0320] +17:12:42 [ 15] [ 4] [0320] +17:12:42 [ 18] [ 4] [6011] +17:12:42 [ 19] [ 3] [418] +17:12:42 [ 22] [ 3] [021] +17:12:42 [ 32] [ 6] [180893] +17:12:42 [ 35] [ 32] [6213544001721759=491212012175383] +17:12:42 [ 37] [ 12] [507910270749] +17:12:42 [ 39] [ 2] [61] +17:12:42 [ 41] [ 8] [0243VTKS] +17:12:42 [ 49] [ 3] [418] +17:12:42 ============================================================================ +17:12:42 Calculate Source COMM Id = 2 +17:12:42 ============================================================================ +17:12:42 + + +waiting on router queue for slot.... +17:12:48 ============================================================================ +17:12:48 Slot Id : <70> +17:12:48 Transaction Type : REQUEST +17:12:48 Received From : +17:12:48 ============================================================================ +17:12:48 FNo. Len. Field Value +17:12:48 ============================================================================ +17:12:48 [ 1] [ 4] [0200] +17:12:48 [ 2] [ 16] [6213544000040177] +17:12:48 [ 3] [ 6] [010000] +17:12:48 [ 4] [ 12] [000050000000] +17:12:48 [ 7] [ 10] [0320101154] +17:12:48 [ 11] [ 6] [270752] +17:12:48 [ 12] [ 6] [171154] +17:12:48 [ 13] [ 4] [0320] +17:12:48 [ 14] [ 4] [4912] +17:12:48 [ 15] [ 4] [0320] +17:12:48 [ 18] [ 4] [6011] +17:12:48 [ 19] [ 3] [418] +17:12:48 [ 22] [ 3] [021] +17:12:48 [ 25] [ 2] [01] +17:12:48 [ 28] [ 9] [D00002000] +17:12:48 [ 32] [ 6] [180893] +17:12:48 [ 35] [ 32] [6213544000040177=491212014017699] +17:12:48 [ 37] [ 12] [507910270752] +17:12:48 [ 41] [ 8] [0421BKPH] +17:12:48 [ 42] [ 15] [999999 ] +17:12:48 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:12:48 [ 49] [ 3] [418] +17:12:48 [ 52] [ 16] [5FCDEECCDF131B89] +17:12:48 ============================================================================ +17:12:48 + + +waiting on router queue for slot.... +17:12:48 Sending to : +17:12:48 ============================================================================ +17:12:48 Sending to : +17:12:48 ============================================================================ +17:12:48 ============================================================================ +17:12:48 Slot Id : <70> +17:12:48 Transaction Type : REQUEST +17:12:48 Received From : +17:12:48 ============================================================================ +17:12:48 FNo. Len. Field Value +17:12:48 ============================================================================ +17:12:48 [ 1] [ 4] [0200] +17:12:48 [ 2] [ 16] [6213544000040177] +17:12:48 [ 3] [ 6] [010000] +17:12:48 [ 4] [ 12] [000050000000] +17:12:48 [ 7] [ 10] [0320101154] +17:12:48 [ 11] [ 6] [270752] +17:12:48 [ 12] [ 6] [171154] +17:12:48 [ 13] [ 4] [0320] +17:12:48 [ 14] [ 4] [4912] +17:12:48 [ 15] [ 4] [0320] +17:12:48 [ 18] [ 4] [6011] +17:12:48 [ 19] [ 3] [418] +17:12:48 [ 22] [ 3] [021] +17:12:48 [ 25] [ 2] [01] +17:12:48 [ 28] [ 9] [D00002000] +17:12:48 [ 32] [ 6] [180893] +17:12:48 [ 35] [ 32] [6213544000040177=491212014017699] +17:12:48 [ 37] [ 12] [507910270752] +17:12:48 [ 41] [ 8] [0421BKPH] +17:12:48 [ 42] [ 15] [999999 ] +17:12:48 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:12:48 [ 49] [ 3] [418] +17:12:48 [ 52] [ 16] [5FCDEECCDF131B89] +17:12:48 ============================================================================ +17:12:48 + + +waiting on router queue for slot.... +17:12:48 Sending to : +17:12:48 ============================================================================ +17:12:48 ============================================================================ +17:12:48 Slot Id : <70> +17:12:48 Transaction Type : REQUEST +17:12:48 Received From : +17:12:48 ============================================================================ +17:12:48 FNo. Len. Field Value +17:12:48 ============================================================================ +17:12:48 [ 1] [ 4] [0200] +17:12:48 [ 2] [ 16] [6213544000040177] +17:12:48 [ 3] [ 6] [010000] +17:12:48 [ 4] [ 12] [000050000000] +17:12:48 [ 7] [ 10] [0320101154] +17:12:48 [ 11] [ 6] [270752] +17:12:48 [ 12] [ 6] [171154] +17:12:48 [ 13] [ 4] [0320] +17:12:48 [ 14] [ 4] [4912] +17:12:48 [ 15] [ 4] [0320] +17:12:48 [ 18] [ 4] [6011] +17:12:48 [ 19] [ 3] [418] +17:12:48 [ 22] [ 3] [021] +17:12:48 [ 25] [ 2] [01] +17:12:48 [ 28] [ 9] [D00002000] +17:12:48 [ 32] [ 6] [180893] +17:12:48 [ 35] [ 32] [6213544000040177=491212014017699] +17:12:48 [ 37] [ 12] [507910270752] +17:12:48 [ 41] [ 8] [0421BKPH] +17:12:48 [ 42] [ 15] [999999 ] +17:12:48 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:12:48 [ 49] [ 3] [418] +17:12:48 [ 52] [ 16] [F9BBB6AE26FF4B8F] +17:12:48 ============================================================================ +17:12:48 + + +waiting on router queue for slot.... +17:12:48 Sending to : <0> +17:12:48 ============================================================================ +17:12:49 ============================================================================ +17:12:49 Slot Id : <70> +17:12:49 Transaction Type : RESPONSE +17:12:49 Received From : +17:12:49 ============================================================================ +17:12:49 FNo. Len. Field Value +17:12:49 ============================================================================ +17:12:49 [ 1] [ 4] [0210] +17:12:49 [ 2] [ 16] [6213544000040177] +17:12:49 [ 3] [ 6] [010000] +17:12:49 [ 4] [ 12] [000050000000] +17:12:49 [ 7] [ 10] [0320101154] +17:12:49 [ 11] [ 6] [270752] +17:12:49 [ 12] [ 6] [171154] +17:12:49 [ 13] [ 4] [0320] +17:12:49 [ 15] [ 4] [0320] +17:12:49 [ 18] [ 4] [6011] +17:12:49 [ 19] [ 3] [418] +17:12:49 [ 32] [ 6] [180893] +17:12:49 [ 35] [ 32] [6213544000040177=491212014017699] +17:12:49 [ 37] [ 12] [507910270752] +17:12:49 [ 38] [ 6] [270752] +17:12:49 [ 39] [ 2] [51] +17:12:49 [ 41] [ 8] [0421BKPH] +17:12:49 [ 49] [ 3] [418] +17:12:49 [ 54] [ 40] [0001418C0000547049060002418C000054704906] +17:12:49 ============================================================================ +17:12:49 Sending to : +17:12:49 ============================================================================ +17:12:49 + + +waiting on router queue for slot.... +17:12:50 ============================================================================ +17:12:50 Slot Id : <70> +17:12:50 Transaction Type : RESPONSE +17:12:50 Received From : +17:12:50 ============================================================================ +17:12:50 FNo. Len. Field Value +17:12:50 ============================================================================ +17:12:50 [ 1] [ 4] [0210] +17:12:50 [ 2] [ 16] [6213544000040177] +17:12:50 [ 3] [ 6] [010000] +17:12:50 [ 4] [ 12] [000050000000] +17:12:50 [ 7] [ 10] [0320101154] +17:12:50 [ 11] [ 6] [270752] +17:12:50 [ 12] [ 6] [171154] +17:12:50 [ 13] [ 4] [0320] +17:12:50 [ 15] [ 4] [0320] +17:12:50 [ 18] [ 4] [6011] +17:12:50 [ 19] [ 3] [418] +17:12:50 [ 32] [ 6] [180893] +17:12:50 [ 35] [ 32] [6213544000040177=491212014017699] +17:12:50 [ 37] [ 12] [507910270752] +17:12:50 [ 38] [ 6] [270752] +17:12:50 [ 39] [ 2] [51] +17:12:50 [ 41] [ 8] [0421BKPH] +17:12:50 [ 49] [ 3] [418] +17:12:50 [ 54] [ 40] [0001418C0000547049060002418C000054704906] +17:12:50 ============================================================================ +17:12:50 Calculate Source COMM Id = 2 +17:12:50 ============================================================================ +17:12:50 + + +waiting on router queue for slot.... +17:12:51 ============================================================================ +17:12:51 Slot Id : <109> +17:12:51 Transaction Type : REQUEST +17:12:51 Received From : +17:12:51 ============================================================================ +17:12:51 FNo. Len. Field Value +17:12:51 ============================================================================ +17:12:51 [ 1] [ 4] [0200] +17:12:51 [ 2] [ 16] [6213544002199351] +17:12:51 [ 3] [ 6] [010000] +17:12:51 [ 4] [ 12] [000030000000] +17:12:51 [ 7] [ 10] [0320171041] +17:12:51 [ 11] [ 6] [953101] +17:12:51 [ 12] [ 6] [171041] +17:12:51 [ 13] [ 4] [0320] +17:12:51 [ 15] [ 4] [0320] +17:12:51 [ 18] [ 4] [6011] +17:12:51 [ 19] [ 3] [418] +17:12:51 [ 22] [ 3] [021] +17:12:51 [ 25] [ 2] [01] +17:12:51 [ 28] [ 9] [D00002000] +17:12:51 [ 32] [ 6] [668899] +17:12:51 [ 35] [ 32] [6213544002199351=491212019935402] +17:12:51 [ 37] [ 12] [507902025669] +17:12:51 [ 41] [ 8] [03414002] +17:12:51 [ 42] [ 15] [APT ] +17:12:51 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:12:51 [ 49] [ 3] [418] +17:12:51 [ 52] [ 16] [53E10E14979B11B9] +17:12:51 ============================================================================ +17:12:51 + + +waiting on router queue for slot.... +17:12:51 Sending to : +17:12:51 ============================================================================ +17:12:51 Sending to : +17:12:51 ============================================================================ +17:12:52 ============================================================================ +17:12:52 Slot Id : <109> +17:12:52 Transaction Type : REQUEST +17:12:52 Received From : +17:12:52 ============================================================================ +17:12:52 FNo. Len. Field Value +17:12:52 ============================================================================ +17:12:52 [ 1] [ 4] [0200] +17:12:52 [ 2] [ 16] [6213544002199351] +17:12:52 [ 3] [ 6] [010000] +17:12:52 [ 4] [ 12] [000030000000] +17:12:52 [ 7] [ 10] [0320171041] +17:12:52 [ 11] [ 6] [953101] +17:12:52 [ 12] [ 6] [171041] +17:12:52 [ 13] [ 4] [0320] +17:12:52 [ 15] [ 4] [0320] +17:12:52 [ 18] [ 4] [6011] +17:12:52 [ 19] [ 3] [418] +17:12:52 [ 22] [ 3] [021] +17:12:52 [ 25] [ 2] [01] +17:12:52 [ 28] [ 9] [D00002000] +17:12:52 [ 32] [ 6] [668899] +17:12:52 [ 35] [ 32] [6213544002199351=491212019935402] +17:12:52 [ 37] [ 12] [507902025669] +17:12:52 [ 41] [ 8] [03414002] +17:12:52 [ 42] [ 15] [APT ] +17:12:52 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:12:52 [ 49] [ 3] [418] +17:12:52 [ 52] [ 16] [53E10E14979B11B9] +17:12:52 ============================================================================ +17:12:52 + + +waiting on router queue for slot.... +17:12:52 Sending to : +17:12:52 ============================================================================ +17:12:52 ============================================================================ +17:12:52 Slot Id : <109> +17:12:52 Transaction Type : REQUEST +17:12:52 Received From : +17:12:52 ============================================================================ +17:12:52 FNo. Len. Field Value +17:12:52 ============================================================================ +17:12:52 [ 1] [ 4] [0200] +17:12:52 [ 2] [ 16] [6213544002199351] +17:12:52 [ 3] [ 6] [010000] +17:12:52 [ 4] [ 12] [000030000000] +17:12:52 [ 7] [ 10] [0320171041] +17:12:52 [ 11] [ 6] [953101] +17:12:52 [ 12] [ 6] [171041] +17:12:52 [ 13] [ 4] [0320] +17:12:52 [ 15] [ 4] [0320] +17:12:52 [ 18] [ 4] [6011] +17:12:52 [ 19] [ 3] [418] +17:12:52 [ 22] [ 3] [021] +17:12:52 [ 25] [ 2] [01] +17:12:52 [ 28] [ 9] [D00002000] +17:12:52 [ 32] [ 6] [668899] +17:12:52 [ 35] [ 32] [6213544002199351=491212019935402] +17:12:52 [ 37] [ 12] [507902025669] +17:12:52 [ 41] [ 8] [03414002] +17:12:52 [ 42] [ 15] [APT ] +17:12:52 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:12:52 [ 49] [ 3] [418] +17:12:52 [ 52] [ 16] [C475E22D962EA648] +17:12:52 ============================================================================ +17:12:52 + + +waiting on router queue for slot.... +17:12:52 Sending to : <0> +17:12:52 ============================================================================ +17:12:53 ============================================================================ +17:12:53 Slot Id : <109> +17:12:53 Transaction Type : RESPONSE +17:12:53 Received From : +17:12:53 ============================================================================ +17:12:53 FNo. Len. Field Value +17:12:53 ============================================================================ +17:12:53 [ 1] [ 4] [0210] +17:12:53 [ 2] [ 16] [6213544002199351] +17:12:53 [ 3] [ 6] [010000] +17:12:53 [ 4] [ 12] [000030000000] +17:12:53 [ 7] [ 10] [0320171041] +17:12:53 [ 11] [ 6] [953101] +17:12:53 [ 12] [ 6] [171041] +17:12:53 [ 13] [ 4] [0320] +17:12:53 [ 15] [ 4] [0320] +17:12:53 [ 18] [ 4] [6011] +17:12:53 [ 19] [ 3] [418] +17:12:53 [ 32] [ 6] [668899] +17:12:53 [ 35] [ 32] [6213544002199351=491212019935402] +17:12:53 [ 37] [ 12] [507902025669] +17:12:53 [ 38] [ 6] [058781] +17:12:53 [ 39] [ 2] [00] +17:12:53 [ 41] [ 8] [03414002] +17:12:53 [ 49] [ 3] [418] +17:12:53 [ 54] [ 40] [0001418C0000324045430002418C000032404543] +17:12:53 ============================================================================ +17:12:53 Sending to : +17:12:53 ============================================================================ +17:12:53 + + +waiting on router queue for slot.... +17:12:55 ============================================================================ +17:12:55 Slot Id : <109> +17:12:55 Transaction Type : RESPONSE +17:12:55 Received From : +17:12:55 ============================================================================ +17:12:55 FNo. Len. Field Value +17:12:55 ============================================================================ +17:12:55 [ 1] [ 4] [0210] +17:12:55 [ 2] [ 16] [6213544002199351] +17:12:55 [ 3] [ 6] [010000] +17:12:55 [ 4] [ 12] [000030000000] +17:12:55 [ 7] [ 10] [0320171041] +17:12:55 [ 11] [ 6] [953101] +17:12:55 [ 12] [ 6] [171041] +17:12:55 [ 13] [ 4] [0320] +17:12:55 [ 15] [ 4] [0320] +17:12:55 [ 18] [ 4] [6011] +17:12:55 [ 19] [ 3] [418] +17:12:55 [ 32] [ 6] [668899] +17:12:55 [ 35] [ 32] [6213544002199351=491212019935402] +17:12:55 [ 37] [ 12] [507902025669] +17:12:55 [ 38] [ 6] [058781] +17:12:55 [ 39] [ 2] [00] +17:12:55 [ 41] [ 8] [03414002] +17:12:55 [ 49] [ 3] [418] +17:12:55 [ 54] [ 40] [0001418C0000324045430002418C000032404543] +17:12:55 ============================================================================ +17:12:55 Calculate Source COMM Id = 4 +17:12:55 ============================================================================ +17:12:55 + + +waiting on router queue for slot.... +17:12:57 ============================================================================ +17:12:57 Slot Id : <77> +17:12:57 Transaction Type : REQUEST +17:12:57 Received From : +17:12:57 ============================================================================ +17:12:57 FNo. Len. Field Value +17:12:57 ============================================================================ +17:12:57 [ 1] [ 4] [0800] +17:12:57 [ 2] [ 5] [02531] +17:12:57 [ 3] [ 6] [579178] +17:12:57 [ 7] [ 10] [0320101257] +17:12:57 [ 11] [ 6] [807411] +17:12:57 [ 15] [ 10] [0320101257] +17:12:57 [ 37] [ 11] [57917807411] +17:12:57 [ 70] [ 3] [001] +17:12:57 ============================================================================ +17:12:57 + + +waiting on router queue for slot.... +17:12:57 ============================================================================ +17:12:57 Slot Id : <77> +17:12:57 Transaction Type : RESPONSE +17:12:57 Received From : +17:12:57 ============================================================================ +17:12:57 FNo. Len. Field Value +17:12:57 ============================================================================ +17:12:57 [ 1] [ 4] [0810] +17:12:57 [ 7] [ 10] [0320101257] +17:12:57 [ 11] [ 6] [807411] +17:12:57 [ 15] [ 4] [0320] +17:12:57 [ 37] [ 12] [57917807411] +17:12:57 [ 39] [ 2] [00] +17:12:57 [ 70] [ 3] [001] +17:12:57 ============================================================================ +17:12:57 Sending to : +17:12:57 ============================================================================ +17:12:57 + + +waiting on router queue for slot.... +17:13:04 ============================================================================ +17:13:04 Slot Id : <102> +17:13:04 Transaction Type : REQUEST +17:13:04 Received From : +17:13:04 ============================================================================ +17:13:04 FNo. Len. Field Value +17:13:04 ============================================================================ +17:13:04 [ 1] [ 4] [0800] +17:13:04 [ 7] [ 10] [0320101210] +17:13:04 [ 11] [ 6] [157404] +17:13:04 [ 70] [ 3] [301] +17:13:04 ============================================================================ +17:13:04 + + +waiting on router queue for slot.... +17:13:04 Sending to : +17:13:04 ============================================================================ +17:13:04 ============================================================================ +17:13:04 Slot Id : <102> +17:13:04 Transaction Type : RESPONSE +17:13:04 Received From : +17:13:04 ============================================================================ +17:13:04 FNo. Len. Field Value +17:13:04 ============================================================================ +17:13:04 [ 1] [ 4] [0810] +17:13:04 [ 7] [ 10] [0320101210] +17:13:04 [ 11] [ 6] [157404] +17:13:04 [ 39] [ 2] [00] +17:13:04 [ 70] [ 3] [301] +17:13:04 ============================================================================ +17:13:04 Calculate Source COMM Id = 2 +17:13:04 ============================================================================ +17:13:04 + + +waiting on router queue for slot.... +17:13:19 ============================================================================ +17:13:19 Slot Id : <71> +17:13:19 Transaction Type : REQUEST +17:13:19 Received From : +17:13:19 ============================================================================ +17:13:19 FNo. Len. Field Value +17:13:19 ============================================================================ +17:13:19 [ 1] [ 4] [0200] +17:13:19 [ 2] [ 16] [6213544001525333] +17:13:19 [ 3] [ 6] [011000] +17:13:19 [ 4] [ 12] [000060000000] +17:13:19 [ 7] [ 10] [0320171339] +17:13:19 [ 11] [ 6] [209360] +17:13:19 [ 12] [ 6] [170845] +17:13:19 [ 13] [ 4] [0320] +17:13:19 [ 14] [ 4] [4912] +17:13:19 [ 15] [ 4] [0320] +17:13:19 [ 18] [ 4] [6011] +17:13:19 [ 19] [ 3] [418] +17:13:19 [ 22] [ 3] [021] +17:13:19 [ 25] [ 2] [01] +17:13:19 [ 28] [ 9] [D00002000] +17:13:19 [ 32] [ 6] [198901] +17:13:19 [ 35] [ 32] [6213544001525333=491212012533281] +17:13:19 [ 37] [ 12] [507917209360] +17:13:19 [ 41] [ 8] [19529001] +17:13:19 [ 42] [ 15] [000000041952901] +17:13:19 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:13:19 [ 49] [ 3] [418] +17:13:19 [ 52] [ 16] [C225D6B663B49DAA] +17:13:19 ============================================================================ +17:13:19 + + +waiting on router queue for slot.... +17:13:19 Sending to : +17:13:19 ============================================================================ +17:13:19 Sending to : +17:13:19 ============================================================================ +17:13:19 ============================================================================ +17:13:19 Slot Id : <136> +17:13:19 Transaction Type : REQUEST +17:13:19 Received From : +17:13:19 ============================================================================ +17:13:19 FNo. Len. Field Value +17:13:19 ============================================================================ +17:13:19 [ 1] [ 4] [0800] +17:13:19 [ 7] [ 10] [0320101226] +17:13:19 [ 11] [ 6] [157405] +17:13:19 [ 70] [ 3] [301] +17:13:19 ============================================================================ +17:13:19 + + +waiting on router queue for slot.... +17:13:19 Sending to : +17:13:19 ============================================================================ +17:13:19 ============================================================================ +17:13:19 Slot Id : <136> +17:13:19 Transaction Type : RESPONSE +17:13:19 Received From : +17:13:19 ============================================================================ +17:13:19 FNo. Len. Field Value +17:13:19 ============================================================================ +17:13:19 [ 1] [ 4] [0810] +17:13:19 [ 7] [ 10] [0320101226] +17:13:19 [ 11] [ 6] [157405] +17:13:19 [ 39] [ 2] [00] +17:13:19 [ 70] [ 3] [301] +17:13:19 ============================================================================ +17:13:19 Calculate Source COMM Id = 2 +17:13:19 ============================================================================ +17:13:19 + + +waiting on router queue for slot.... +17:13:19 ============================================================================ +17:13:19 Slot Id : <71> +17:13:19 Transaction Type : REQUEST +17:13:19 Received From : +17:13:19 ============================================================================ +17:13:19 FNo. Len. Field Value +17:13:19 ============================================================================ +17:13:19 [ 1] [ 4] [0200] +17:13:19 [ 2] [ 16] [6213544001525333] +17:13:19 [ 3] [ 6] [011000] +17:13:19 [ 4] [ 12] [000060000000] +17:13:19 [ 7] [ 10] [0320171339] +17:13:19 [ 11] [ 6] [209360] +17:13:19 [ 12] [ 6] [170845] +17:13:19 [ 13] [ 4] [0320] +17:13:19 [ 14] [ 4] [4912] +17:13:19 [ 15] [ 4] [0320] +17:13:19 [ 18] [ 4] [6011] +17:13:19 [ 19] [ 3] [418] +17:13:19 [ 22] [ 3] [021] +17:13:19 [ 25] [ 2] [01] +17:13:19 [ 28] [ 9] [D00002000] +17:13:19 [ 32] [ 6] [198901] +17:13:19 [ 35] [ 32] [6213544001525333=491212012533281] +17:13:19 [ 37] [ 12] [507917209360] +17:13:19 [ 41] [ 8] [19529001] +17:13:19 [ 42] [ 15] [000000041952901] +17:13:19 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:13:19 [ 49] [ 3] [418] +17:13:19 [ 52] [ 16] [C225D6B663B49DAA] +17:13:19 ============================================================================ +17:13:19 + + +waiting on router queue for slot.... +17:13:19 Sending to : +17:13:19 ============================================================================ +17:13:19 ============================================================================ +17:13:19 Slot Id : <71> +17:13:19 Transaction Type : REQUEST +17:13:19 Received From : +17:13:19 ============================================================================ +17:13:19 FNo. Len. Field Value +17:13:19 ============================================================================ +17:13:19 [ 1] [ 4] [0200] +17:13:19 [ 2] [ 16] [6213544001525333] +17:13:19 [ 3] [ 6] [011000] +17:13:19 [ 4] [ 12] [000060000000] +17:13:19 [ 7] [ 10] [0320171339] +17:13:19 [ 11] [ 6] [209360] +17:13:19 [ 12] [ 6] [170845] +17:13:19 [ 13] [ 4] [0320] +17:13:19 [ 14] [ 4] [4912] +17:13:19 [ 15] [ 4] [0320] +17:13:19 [ 18] [ 4] [6011] +17:13:19 [ 19] [ 3] [418] +17:13:19 [ 22] [ 3] [021] +17:13:19 [ 25] [ 2] [01] +17:13:19 [ 28] [ 9] [D00002000] +17:13:19 [ 32] [ 6] [198901] +17:13:19 [ 35] [ 32] [6213544001525333=491212012533281] +17:13:19 [ 37] [ 12] [507917209360] +17:13:19 [ 41] [ 8] [19529001] +17:13:19 [ 42] [ 15] [000000041952901] +17:13:19 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:13:19 [ 49] [ 3] [418] +17:13:19 [ 52] [ 16] [A3075906F3E741D0] +17:13:19 ============================================================================ +17:13:19 + + +waiting on router queue for slot.... +17:13:19 Sending to : <0> +17:13:19 ============================================================================ +17:13:20 ============================================================================ +17:13:20 Slot Id : <71> +17:13:20 Transaction Type : RESPONSE +17:13:20 Received From : +17:13:20 ============================================================================ +17:13:20 FNo. Len. Field Value +17:13:20 ============================================================================ +17:13:20 [ 1] [ 4] [0210] +17:13:20 [ 2] [ 16] [6213544001525333] +17:13:20 [ 3] [ 6] [011000] +17:13:20 [ 4] [ 12] [000060000000] +17:13:20 [ 7] [ 10] [0320171339] +17:13:20 [ 11] [ 6] [209360] +17:13:20 [ 12] [ 6] [170845] +17:13:20 [ 13] [ 4] [0320] +17:13:20 [ 15] [ 4] [0320] +17:13:20 [ 18] [ 4] [6011] +17:13:20 [ 19] [ 3] [418] +17:13:20 [ 32] [ 6] [198901] +17:13:20 [ 35] [ 32] [6213544001525333=491212012533281] +17:13:20 [ 37] [ 12] [507917209360] +17:13:20 [ 38] [ 6] [652390] +17:13:20 [ 39] [ 2] [00] +17:13:20 [ 41] [ 8] [19529001] +17:13:20 [ 49] [ 3] [418] +17:13:20 [ 54] [ 40] [1001418C0000097982581002418C000009798258] +17:13:20 ============================================================================ +17:13:20 Sending to : +17:13:20 ============================================================================ +17:13:20 + + +waiting on router queue for slot.... +17:13:21 ============================================================================ +17:13:21 Slot Id : <71> +17:13:21 Transaction Type : RESPONSE +17:13:21 Received From : +17:13:21 ============================================================================ +17:13:21 FNo. Len. Field Value +17:13:21 ============================================================================ +17:13:21 [ 1] [ 4] [0210] +17:13:21 [ 2] [ 16] [6213544001525333] +17:13:21 [ 3] [ 6] [011000] +17:13:21 [ 4] [ 12] [000060000000] +17:13:21 [ 7] [ 10] [0320171339] +17:13:21 [ 11] [ 6] [209360] +17:13:21 [ 12] [ 6] [170845] +17:13:21 [ 13] [ 4] [0320] +17:13:21 [ 15] [ 4] [0320] +17:13:21 [ 18] [ 4] [6011] +17:13:21 [ 19] [ 3] [418] +17:13:21 [ 32] [ 6] [198901] +17:13:21 [ 35] [ 32] [6213544001525333=491212012533281] +17:13:21 [ 37] [ 12] [507917209360] +17:13:21 [ 38] [ 6] [652390] +17:13:21 [ 39] [ 2] [00] +17:13:21 [ 41] [ 8] [19529001] +17:13:21 [ 49] [ 3] [418] +17:13:21 [ 54] [ 40] [1001418C0000097982581002418C000009798258] +17:13:21 ============================================================================ +17:13:21 Calculate Source COMM Id = 5 +17:13:21 ============================================================================ +17:13:21 + + +waiting on router queue for slot.... +17:13:25 ============================================================================ +17:13:25 Slot Id : <85> +17:13:25 Transaction Type : REQUEST +17:13:25 Received From : +17:13:25 ============================================================================ +17:13:25 FNo. Len. Field Value +17:13:25 ============================================================================ +17:13:25 [ 1] [ 4] [0800] +17:13:25 [ 7] [ 10] [0321002514] +17:13:25 [ 11] [ 6] [172514] +17:13:25 [ 37] [ 12] [57917172514] +17:13:25 [ 70] [ 3] [301] +17:13:25 ============================================================================ +17:13:25 + + +waiting on router queue for slot.... +17:13:25 Sending to : +17:13:25 ============================================================================ +17:13:25 ============================================================================ +17:13:25 Slot Id : <85> +17:13:25 Transaction Type : RESPONSE +17:13:25 Received From : +17:13:25 ============================================================================ +17:13:25 FNo. Len. Field Value +17:13:25 ============================================================================ +17:13:25 [ 1] [ 4] [0810] +17:13:25 [ 7] [ 10] [0321002514] +17:13:25 [ 11] [ 6] [172514] +17:13:25 [ 37] [ 12] [579171725140] +17:13:25 [ 39] [ 2] [00] +17:13:25 [ 70] [ 3] [810] +17:13:25 ============================================================================ +17:13:25 Calculate Source COMM Id = 6 +17:13:25 ============================================================================ +17:13:25 + + +waiting on router queue for slot.... +17:13:25 ============================================================================ +17:13:25 Slot Id : <87> +17:13:25 Transaction Type : REQUEST +17:13:25 Received From : +17:13:25 ============================================================================ +17:13:25 FNo. Len. Field Value +17:13:25 ============================================================================ +17:13:25 [ 1] [ 4] [0200] +17:13:25 [ 2] [ 16] [2206990000088468] +17:13:25 [ 3] [ 6] [011000] +17:13:25 [ 4] [ 12] [000050000000] +17:13:25 [ 7] [ 10] [0320171320] +17:13:25 [ 11] [ 6] [811836] +17:13:25 [ 12] [ 6] [171320] +17:13:25 [ 13] [ 4] [0320] +17:13:25 [ 15] [ 4] [0320] +17:13:25 [ 18] [ 4] [6011] +17:13:25 [ 22] [ 3] [900] +17:13:25 [ 25] [ 2] [02] +17:13:25 [ 28] [ 9] [D00002000] +17:13:25 [ 32] [ 6] [621354] +17:13:25 [ 35] [ 32] [2206990000088468=180612811519306] +17:13:25 [ 37] [ 12] [507903837788] +17:13:25 [ 41] [ 8] [01009900] +17:13:25 [ 42] [ 15] [NATIVE ] +17:13:25 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +17:13:25 [ 49] [ 3] [418] +17:13:25 [ 52] [ 16] [664B291F2450C668] +17:13:25 ============================================================================ +17:13:25 + + +waiting on router queue for slot.... +17:13:25 Sending to : +17:13:25 ============================================================================ +17:13:25 Sending to : +17:13:25 ============================================================================ +17:13:26 ============================================================================ +17:13:26 Slot Id : <87> +17:13:26 Transaction Type : REQUEST +17:13:26 Received From : +17:13:26 ============================================================================ +17:13:26 FNo. Len. Field Value +17:13:26 ============================================================================ +17:13:26 [ 1] [ 4] [0200] +17:13:26 [ 2] [ 16] [2206990000088468] +17:13:26 [ 3] [ 6] [011000] +17:13:26 [ 4] [ 12] [000050000000] +17:13:26 [ 7] [ 10] [0320171320] +17:13:26 [ 11] [ 6] [811836] +17:13:26 [ 12] [ 6] [171320] +17:13:26 [ 13] [ 4] [0320] +17:13:26 [ 15] [ 4] [0320] +17:13:26 [ 18] [ 4] [6011] +17:13:26 [ 22] [ 3] [900] +17:13:26 [ 25] [ 2] [02] +17:13:26 [ 28] [ 9] [D00002000] +17:13:26 [ 32] [ 6] [621354] +17:13:26 [ 35] [ 32] [2206990000088468=180612811519306] +17:13:26 [ 37] [ 12] [507903837788] +17:13:26 [ 41] [ 8] [01009900] +17:13:26 [ 42] [ 15] [NATIVE ] +17:13:26 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +17:13:26 [ 49] [ 3] [418] +17:13:26 [ 52] [ 16] [664B291F2450C668] +17:13:26 ============================================================================ +17:13:26 + + +waiting on router queue for slot.... +17:13:26 Sending to : +17:13:26 ============================================================================ +17:13:26 ============================================================================ +17:13:26 Slot Id : <87> +17:13:26 Transaction Type : REQUEST +17:13:26 Received From : +17:13:26 ============================================================================ +17:13:26 FNo. Len. Field Value +17:13:26 ============================================================================ +17:13:26 [ 1] [ 4] [0200] +17:13:26 [ 2] [ 16] [2206990000088468] +17:13:26 [ 3] [ 6] [011000] +17:13:26 [ 4] [ 12] [000050000000] +17:13:26 [ 7] [ 10] [0320171320] +17:13:26 [ 11] [ 6] [811836] +17:13:26 [ 12] [ 6] [171320] +17:13:26 [ 13] [ 4] [0320] +17:13:26 [ 15] [ 4] [0320] +17:13:26 [ 18] [ 4] [6011] +17:13:26 [ 22] [ 3] [900] +17:13:26 [ 25] [ 2] [02] +17:13:26 [ 28] [ 9] [D00002000] +17:13:26 [ 32] [ 6] [621354] +17:13:26 [ 35] [ 32] [2206990000088468=180612811519306] +17:13:26 [ 37] [ 12] [507903837788] +17:13:26 [ 41] [ 8] [01009900] +17:13:26 [ 42] [ 15] [NATIVE ] +17:13:26 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +17:13:26 [ 49] [ 3] [418] +17:13:26 [ 52] [ 16] [A0EF41E7695FAC6E] +17:13:26 ============================================================================ +17:13:26 + + +waiting on router queue for slot.... +17:13:26 Sending to : <1> +17:13:26 ============================================================================ +17:13:29 ============================================================================ +17:13:29 Slot Id : <129> +17:13:29 Transaction Type : REQUEST +17:13:29 Received From : +17:13:29 ============================================================================ +17:13:29 FNo. Len. Field Value +17:13:29 ============================================================================ +17:13:29 [ 1] [ 4] [0200] +17:13:29 [ 2] [ 16] [6213544001969523] +17:13:29 [ 3] [ 6] [301000] +17:13:29 [ 4] [ 12] [000000000000] +17:13:29 [ 7] [ 10] [0320171349] +17:13:29 [ 11] [ 6] [209365] +17:13:29 [ 12] [ 6] [170943] +17:13:29 [ 13] [ 4] [0320] +17:13:29 [ 14] [ 4] [4912] +17:13:29 [ 15] [ 4] [0320] +17:13:29 [ 18] [ 4] [6011] +17:13:29 [ 19] [ 3] [418] +17:13:29 [ 22] [ 3] [021] +17:13:29 [ 25] [ 2] [01] +17:13:29 [ 28] [ 9] [D00000000] +17:13:29 [ 32] [ 6] [198901] +17:13:29 [ 35] [ 32] [6213544001969523=491212016952421] +17:13:29 [ 37] [ 12] [507917209365] +17:13:29 [ 41] [ 8] [00852902] +17:13:29 [ 42] [ 15] [000000040852902] +17:13:29 [ 43] [ 40] [ATM SAVANCH II VN ] +17:13:29 [ 49] [ 3] [418] +17:13:29 [ 52] [ 16] [CD8C73B36689C0B5] +17:13:29 ============================================================================ +17:13:29 + + +waiting on router queue for slot.... +17:13:29 Sending to : +17:13:29 ============================================================================ +17:13:29 Sending to : +17:13:29 ============================================================================ +17:13:29 ============================================================================ +17:13:29 Slot Id : <129> +17:13:29 Transaction Type : REQUEST +17:13:29 Received From : +17:13:29 ============================================================================ +17:13:29 FNo. Len. Field Value +17:13:29 ============================================================================ +17:13:29 [ 1] [ 4] [0200] +17:13:29 [ 2] [ 16] [6213544001969523] +17:13:29 [ 3] [ 6] [301000] +17:13:29 [ 4] [ 12] [000000000000] +17:13:29 [ 7] [ 10] [0320171349] +17:13:29 [ 11] [ 6] [209365] +17:13:29 [ 12] [ 6] [170943] +17:13:29 [ 13] [ 4] [0320] +17:13:29 [ 14] [ 4] [4912] +17:13:29 [ 15] [ 4] [0320] +17:13:29 [ 18] [ 4] [6011] +17:13:29 [ 19] [ 3] [418] +17:13:29 [ 22] [ 3] [021] +17:13:29 [ 25] [ 2] [01] +17:13:29 [ 28] [ 9] [D00000000] +17:13:29 [ 32] [ 6] [198901] +17:13:29 [ 35] [ 32] [6213544001969523=491212016952421] +17:13:29 [ 37] [ 12] [507917209365] +17:13:29 [ 41] [ 8] [00852902] +17:13:29 [ 42] [ 15] [000000040852902] +17:13:29 [ 43] [ 40] [ATM SAVANCH II VN ] +17:13:29 [ 49] [ 3] [418] +17:13:29 [ 52] [ 16] [CD8C73B36689C0B5] +17:13:29 ============================================================================ +17:13:29 + + +waiting on router queue for slot.... +17:13:29 Sending to : +17:13:29 ============================================================================ +17:13:29 ============================================================================ +17:13:29 Slot Id : <129> +17:13:29 Transaction Type : REQUEST +17:13:29 Received From : +17:13:29 ============================================================================ +17:13:29 FNo. Len. Field Value +17:13:29 ============================================================================ +17:13:29 [ 1] [ 4] [0200] +17:13:29 [ 2] [ 16] [6213544001969523] +17:13:29 [ 3] [ 6] [301000] +17:13:29 [ 4] [ 12] [000000000000] +17:13:29 [ 7] [ 10] [0320171349] +17:13:29 [ 11] [ 6] [209365] +17:13:29 [ 12] [ 6] [170943] +17:13:29 [ 13] [ 4] [0320] +17:13:29 [ 14] [ 4] [4912] +17:13:29 [ 15] [ 4] [0320] +17:13:29 [ 18] [ 4] [6011] +17:13:29 [ 19] [ 3] [418] +17:13:29 [ 22] [ 3] [021] +17:13:29 [ 25] [ 2] [01] +17:13:29 [ 28] [ 9] [D00000000] +17:13:29 [ 32] [ 6] [198901] +17:13:29 [ 35] [ 32] [6213544001969523=491212016952421] +17:13:29 [ 37] [ 12] [507917209365] +17:13:29 [ 41] [ 8] [00852902] +17:13:29 [ 42] [ 15] [000000040852902] +17:13:29 [ 43] [ 40] [ATM SAVANCH II VN ] +17:13:29 [ 49] [ 3] [418] +17:13:29 [ 52] [ 16] [469D8CD5D67711B2] +17:13:29 ============================================================================ +17:13:29 + + +waiting on router queue for slot.... +17:13:29 Sending to : <0> +17:13:29 ============================================================================ +17:13:30 ============================================================================ +17:13:30 Slot Id : <105> +17:13:30 Transaction Type : REQUEST +17:13:30 Received From : +17:13:30 ============================================================================ +17:13:30 FNo. Len. Field Value +17:13:30 ============================================================================ +17:13:30 [ 1] [ 4] [0800] +17:13:30 [ 7] [ 10] [0320101236] +17:13:30 [ 11] [ 6] [157406] +17:13:30 [ 70] [ 3] [301] +17:13:30 ============================================================================ +17:13:30 + + +waiting on router queue for slot.... +17:13:30 Sending to : +17:13:30 ============================================================================ +17:13:30 ============================================================================ +17:13:30 Slot Id : <105> +17:13:30 Transaction Type : RESPONSE +17:13:30 Received From : +17:13:30 ============================================================================ +17:13:30 FNo. Len. Field Value +17:13:30 ============================================================================ +17:13:30 [ 1] [ 4] [0810] +17:13:30 [ 7] [ 10] [0320101236] +17:13:30 [ 11] [ 6] [157406] +17:13:30 [ 39] [ 2] [00] +17:13:30 [ 70] [ 3] [301] +17:13:30 ============================================================================ +17:13:30 Calculate Source COMM Id = 2 +17:13:30 ============================================================================ +17:13:30 + + +waiting on router queue for slot.... +17:13:30 ============================================================================ +17:13:30 Slot Id : <129> +17:13:30 Transaction Type : RESPONSE +17:13:30 Received From : +17:13:30 ============================================================================ +17:13:30 FNo. Len. Field Value +17:13:30 ============================================================================ +17:13:30 [ 1] [ 4] [0210] +17:13:30 [ 2] [ 16] [6213544001969523] +17:13:30 [ 3] [ 6] [301000] +17:13:30 [ 4] [ 12] [000000000000] +17:13:30 [ 7] [ 10] [0320171349] +17:13:30 [ 11] [ 6] [209365] +17:13:30 [ 12] [ 6] [170943] +17:13:30 [ 13] [ 4] [0320] +17:13:30 [ 15] [ 4] [0320] +17:13:30 [ 18] [ 4] [6011] +17:13:30 [ 19] [ 3] [418] +17:13:30 [ 32] [ 6] [198901] +17:13:30 [ 35] [ 32] [6213544001969523=491212016952421] +17:13:30 [ 37] [ 12] [507917209365] +17:13:30 [ 38] [ 6] [827826] +17:13:30 [ 39] [ 2] [00] +17:13:30 [ 41] [ 8] [00852902] +17:13:30 [ 49] [ 3] [418] +17:13:30 [ 54] [ 40] [1001418C0000613607281002418C000061360728] +17:13:30 ============================================================================ +17:13:30 Sending to : +17:13:30 ============================================================================ +17:13:30 + + +waiting on router queue for slot.... +17:13:31 ============================================================================ +17:13:31 Slot Id : <129> +17:13:31 Transaction Type : RESPONSE +17:13:31 Received From : +17:13:31 ============================================================================ +17:13:31 FNo. Len. Field Value +17:13:31 ============================================================================ +17:13:31 [ 1] [ 4] [0210] +17:13:31 [ 2] [ 16] [6213544001969523] +17:13:31 [ 3] [ 6] [301000] +17:13:31 [ 4] [ 12] [000000000000] +17:13:31 [ 7] [ 10] [0320171349] +17:13:31 [ 11] [ 6] [209365] +17:13:31 [ 12] [ 6] [170943] +17:13:31 [ 13] [ 4] [0320] +17:13:31 [ 15] [ 4] [0320] +17:13:31 [ 18] [ 4] [6011] +17:13:31 [ 19] [ 3] [418] +17:13:31 [ 32] [ 6] [198901] +17:13:31 [ 35] [ 32] [6213544001969523=491212016952421] +17:13:31 [ 37] [ 12] [507917209365] +17:13:31 [ 38] [ 6] [827826] +17:13:31 [ 39] [ 2] [00] +17:13:31 [ 41] [ 8] [00852902] +17:13:31 [ 49] [ 3] [418] +17:13:31 [ 54] [ 40] [1001418C0000613607281002418C000061360728] +17:13:31 ============================================================================ +17:13:31 Calculate Source COMM Id = 5 +17:13:31 ============================================================================ +17:13:31 + + +waiting on router queue for slot.... +17:13:33 ============================================================================ +17:13:33 Slot Id : <116> +17:13:33 Transaction Type : REQUEST +17:13:33 Received From : +17:13:33 ============================================================================ +17:13:33 FNo. Len. Field Value +17:13:33 ============================================================================ +17:13:33 [ 1] [ 4] [0200] +17:13:33 [ 2] [ 16] [6213544000040177] +17:13:33 [ 3] [ 6] [301000] +17:13:33 [ 7] [ 10] [0320101239] +17:13:33 [ 11] [ 6] [270755] +17:13:33 [ 12] [ 6] [171239] +17:13:33 [ 13] [ 4] [0320] +17:13:33 [ 14] [ 4] [4912] +17:13:33 [ 15] [ 4] [0320] +17:13:33 [ 18] [ 4] [6011] +17:13:33 [ 19] [ 3] [418] +17:13:33 [ 22] [ 3] [021] +17:13:33 [ 25] [ 2] [01] +17:13:33 [ 32] [ 6] [180893] +17:13:33 [ 35] [ 32] [6213544000040177=491212014017699] +17:13:33 [ 37] [ 12] [507910270755] +17:13:33 [ 41] [ 8] [0421BKPH] +17:13:33 [ 42] [ 15] [999999 ] +17:13:33 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:13:33 [ 49] [ 3] [418] +17:13:33 [ 52] [ 16] [5FCDEECCDF131B89] +17:13:33 ============================================================================ +17:13:33 + + +waiting on router queue for slot.... +17:13:33 Sending to : +17:13:33 ============================================================================ +17:13:33 Sending to : +17:13:33 ============================================================================ +17:13:33 ============================================================================ +17:13:33 Slot Id : <116> +17:13:33 Transaction Type : REQUEST +17:13:33 Received From : +17:13:33 ============================================================================ +17:13:33 FNo. Len. Field Value +17:13:33 ============================================================================ +17:13:33 [ 1] [ 4] [0200] +17:13:33 [ 2] [ 16] [6213544000040177] +17:13:33 [ 3] [ 6] [301000] +17:13:33 [ 7] [ 10] [0320101239] +17:13:33 [ 11] [ 6] [270755] +17:13:33 [ 12] [ 6] [171239] +17:13:33 [ 13] [ 4] [0320] +17:13:33 [ 14] [ 4] [4912] +17:13:33 [ 15] [ 4] [0320] +17:13:33 [ 18] [ 4] [6011] +17:13:33 [ 19] [ 3] [418] +17:13:33 [ 22] [ 3] [021] +17:13:33 [ 25] [ 2] [01] +17:13:33 [ 32] [ 6] [180893] +17:13:33 [ 35] [ 32] [6213544000040177=491212014017699] +17:13:33 [ 37] [ 12] [507910270755] +17:13:33 [ 41] [ 8] [0421BKPH] +17:13:33 [ 42] [ 15] [999999 ] +17:13:33 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:13:33 [ 49] [ 3] [418] +17:13:33 [ 52] [ 16] [5FCDEECCDF131B89] +17:13:33 ============================================================================ +17:13:33 + + +waiting on router queue for slot.... +17:13:33 Sending to : +17:13:33 ============================================================================ +17:13:33 ============================================================================ +17:13:33 Slot Id : <116> +17:13:33 Transaction Type : REQUEST +17:13:33 Received From : +17:13:33 ============================================================================ +17:13:33 FNo. Len. Field Value +17:13:33 ============================================================================ +17:13:33 [ 1] [ 4] [0200] +17:13:33 [ 2] [ 16] [6213544000040177] +17:13:33 [ 3] [ 6] [301000] +17:13:33 [ 7] [ 10] [0320101239] +17:13:33 [ 11] [ 6] [270755] +17:13:33 [ 12] [ 6] [171239] +17:13:33 [ 13] [ 4] [0320] +17:13:33 [ 14] [ 4] [4912] +17:13:33 [ 15] [ 4] [0320] +17:13:33 [ 18] [ 4] [6011] +17:13:33 [ 19] [ 3] [418] +17:13:33 [ 22] [ 3] [021] +17:13:33 [ 25] [ 2] [01] +17:13:33 [ 32] [ 6] [180893] +17:13:33 [ 35] [ 32] [6213544000040177=491212014017699] +17:13:33 [ 37] [ 12] [507910270755] +17:13:33 [ 41] [ 8] [0421BKPH] +17:13:33 [ 42] [ 15] [999999 ] +17:13:33 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:13:33 [ 49] [ 3] [418] +17:13:33 [ 52] [ 16] [F9BBB6AE26FF4B8F] +17:13:33 ============================================================================ +17:13:33 + + +waiting on router queue for slot.... +17:13:33 Sending to : <0> +17:13:33 ============================================================================ +17:13:34 ============================================================================ +17:13:34 Slot Id : <131> +17:13:34 Transaction Type : REQUEST +17:13:34 Received From : +17:13:34 ============================================================================ +17:13:34 FNo. Len. Field Value +17:13:34 ============================================================================ +17:13:34 [ 1] [ 4] [0200] +17:13:34 [ 2] [ 16] [6688990106047002] +17:13:34 [ 3] [ 6] [300000] +17:13:34 [ 4] [ 12] [000000000000] +17:13:34 [ 7] [ 10] [0320171330] +17:13:34 [ 11] [ 6] [811882] +17:13:34 [ 12] [ 6] [171330] +17:13:34 [ 13] [ 4] [0320] +17:13:34 [ 15] [ 4] [0320] +17:13:34 [ 18] [ 4] [6011] +17:13:34 [ 22] [ 3] [900] +17:13:34 [ 25] [ 2] [02] +17:13:34 [ 28] [ 9] [D00000000] +17:13:34 [ 32] [ 6] [621354] +17:13:34 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:13:34 [ 37] [ 12] [507903499661] +17:13:34 [ 41] [ 8] [06002200] +17:13:34 [ 42] [ 15] [NATIVE ] +17:13:34 [ 43] [ 40] [Beng Market Beng LAO] +17:13:34 [ 49] [ 3] [418] +17:13:34 [ 52] [ 16] [08BEF2A6705000D5] +17:13:34 ============================================================================ +17:13:34 + + +waiting on router queue for slot.... +17:13:34 Sending to : +17:13:34 ============================================================================ +17:13:34 Sending to : +17:13:34 ============================================================================ +17:13:35 ============================================================================ +17:13:35 Slot Id : <116> +17:13:35 Transaction Type : RESPONSE +17:13:35 Received From : +17:13:35 ============================================================================ +17:13:35 FNo. Len. Field Value +17:13:35 ============================================================================ +17:13:35 [ 1] [ 4] [0210] +17:13:35 [ 2] [ 16] [6213544000040177] +17:13:35 [ 3] [ 6] [301000] +17:13:35 [ 4] [ 12] [000000000000] +17:13:35 [ 7] [ 10] [0320101239] +17:13:35 [ 11] [ 6] [270755] +17:13:35 [ 12] [ 6] [171239] +17:13:35 [ 13] [ 4] [0320] +17:13:35 [ 15] [ 4] [0320] +17:13:35 [ 18] [ 4] [6011] +17:13:35 [ 19] [ 3] [418] +17:13:35 [ 32] [ 6] [180893] +17:13:35 [ 35] [ 32] [6213544000040177=491212014017699] +17:13:35 [ 37] [ 12] [507910270755] +17:13:35 [ 38] [ 6] [689552] +17:13:35 [ 39] [ 2] [00] +17:13:35 [ 41] [ 8] [0421BKPH] +17:13:35 [ 49] [ 3] [418] +17:13:35 [ 54] [ 40] [1001418C0000547049061002418C000054704906] +17:13:35 ============================================================================ +17:13:35 Sending to : +17:13:35 ============================================================================ +17:13:35 + + +waiting on router queue for slot.... +17:13:35 ============================================================================ +17:13:35 Slot Id : <131> +17:13:35 Transaction Type : REQUEST +17:13:35 Received From : +17:13:35 ============================================================================ +17:13:35 FNo. Len. Field Value +17:13:35 ============================================================================ +17:13:35 [ 1] [ 4] [0200] +17:13:35 [ 2] [ 16] [6688990106047002] +17:13:35 [ 3] [ 6] [300000] +17:13:35 [ 4] [ 12] [000000000000] +17:13:35 [ 7] [ 10] [0320171330] +17:13:35 [ 11] [ 6] [811882] +17:13:35 [ 12] [ 6] [171330] +17:13:35 [ 13] [ 4] [0320] +17:13:35 [ 15] [ 4] [0320] +17:13:35 [ 18] [ 4] [6011] +17:13:35 [ 22] [ 3] [900] +17:13:35 [ 25] [ 2] [02] +17:13:35 [ 28] [ 9] [D00000000] +17:13:35 [ 32] [ 6] [621354] +17:13:35 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:13:35 [ 37] [ 12] [507903499661] +17:13:35 [ 41] [ 8] [06002200] +17:13:35 [ 42] [ 15] [NATIVE ] +17:13:35 [ 43] [ 40] [Beng Market Beng LAO] +17:13:35 [ 49] [ 3] [418] +17:13:35 [ 52] [ 16] [08BEF2A6705000D5] +17:13:35 ============================================================================ +17:13:35 + + +waiting on router queue for slot.... +17:13:35 Sending to : +17:13:35 ============================================================================ +17:13:35 ============================================================================ +17:13:35 Slot Id : <131> +17:13:35 Transaction Type : REQUEST +17:13:35 Received From : +17:13:35 ============================================================================ +17:13:35 FNo. Len. Field Value +17:13:35 ============================================================================ +17:13:35 [ 1] [ 4] [0200] +17:13:35 [ 2] [ 16] [6688990106047002] +17:13:35 [ 3] [ 6] [300000] +17:13:35 [ 4] [ 12] [000000000000] +17:13:35 [ 7] [ 10] [0320171330] +17:13:35 [ 11] [ 6] [811882] +17:13:35 [ 12] [ 6] [171330] +17:13:35 [ 13] [ 4] [0320] +17:13:35 [ 15] [ 4] [0320] +17:13:35 [ 18] [ 4] [6011] +17:13:35 [ 22] [ 3] [900] +17:13:35 [ 25] [ 2] [02] +17:13:35 [ 28] [ 9] [D00000000] +17:13:35 [ 32] [ 6] [621354] +17:13:35 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:13:35 [ 37] [ 12] [507903499661] +17:13:35 [ 41] [ 8] [06002200] +17:13:35 [ 42] [ 15] [NATIVE ] +17:13:35 [ 43] [ 40] [Beng Market Beng LAO] +17:13:35 [ 49] [ 3] [418] +17:13:35 [ 52] [ 16] [AFA44F3B5FCA32E5] +17:13:35 ============================================================================ +17:13:35 + + +waiting on router queue for slot.... +17:13:35 Sending to : <4> +17:13:35 ============================================================================ +17:13:36 ============================================================================ +17:13:36 Slot Id : <131> +17:13:36 Transaction Type : RESPONSE +17:13:36 Received From : +17:13:36 ============================================================================ +17:13:36 FNo. Len. Field Value +17:13:36 ============================================================================ +17:13:36 [ 1] [ 4] [0210] +17:13:36 [ 2] [ 16] [6688990106047002] +17:13:36 [ 3] [ 6] [300000] +17:13:36 [ 4] [ 12] [000000000000] +17:13:36 [ 11] [ 6] [811882] +17:13:36 [ 12] [ 6] [171330] +17:13:36 [ 15] [ 4] [0320] +17:13:36 [ 18] [ 4] [6011] +17:13:36 [ 32] [ 6] [621354] +17:13:36 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:13:36 [ 37] [ 12] [507903499661] +17:13:36 [ 38] [ 6] [162319] +17:13:36 [ 39] [ 2] [00] +17:13:36 [ 41] [ 8] [06002200] +17:13:36 [ 49] [ 3] [418] +17:13:36 [ 54] [ 20] [0002418C000109616563] +17:13:36 ============================================================================ +17:13:36 Sending to : +17:13:36 ============================================================================ +17:13:36 + + +waiting on router queue for slot.... +17:13:36 ============================================================================ +17:13:36 Slot Id : <116> +17:13:36 Transaction Type : RESPONSE +17:13:36 Received From : +17:13:36 ============================================================================ +17:13:36 FNo. Len. Field Value +17:13:36 ============================================================================ +17:13:36 [ 1] [ 4] [0210] +17:13:36 [ 2] [ 16] [6213544000040177] +17:13:36 [ 3] [ 6] [301000] +17:13:36 [ 4] [ 12] [000000000000] +17:13:36 [ 7] [ 10] [0320101239] +17:13:36 [ 11] [ 6] [270755] +17:13:36 [ 12] [ 6] [171239] +17:13:36 [ 13] [ 4] [0320] +17:13:36 [ 15] [ 4] [0320] +17:13:36 [ 18] [ 4] [6011] +17:13:36 [ 19] [ 3] [418] +17:13:36 [ 32] [ 6] [180893] +17:13:36 [ 35] [ 32] [6213544000040177=491212014017699] +17:13:36 [ 37] [ 12] [507910270755] +17:13:36 [ 38] [ 6] [689552] +17:13:36 [ 39] [ 2] [00] +17:13:36 [ 41] [ 8] [0421BKPH] +17:13:36 [ 49] [ 3] [418] +17:13:36 [ 54] [ 40] [1001418C0000547049061002418C000054704906] +17:13:36 ============================================================================ +17:13:36 Calculate Source COMM Id = 2 +17:13:36 ============================================================================ +17:13:36 + + +waiting on router queue for slot.... +17:13:37 ============================================================================ +17:13:37 Slot Id : <131> +17:13:37 Transaction Type : RESPONSE +17:13:37 Received From : +17:13:37 ============================================================================ +17:13:37 FNo. Len. Field Value +17:13:37 ============================================================================ +17:13:37 [ 1] [ 4] [0210] +17:13:37 [ 2] [ 16] [6688990106047002] +17:13:37 [ 3] [ 6] [300000] +17:13:37 [ 4] [ 12] [000000000000] +17:13:37 [ 11] [ 6] [811882] +17:13:37 [ 12] [ 6] [171330] +17:13:37 [ 15] [ 4] [0320] +17:13:37 [ 18] [ 4] [6011] +17:13:37 [ 32] [ 6] [621354] +17:13:37 [ 35] [ 37] [6688990106047002=43111231700244000000] +17:13:37 [ 37] [ 12] [507903499661] +17:13:37 [ 38] [ 6] [162319] +17:13:37 [ 39] [ 2] [00] +17:13:37 [ 41] [ 8] [06002200] +17:13:37 [ 49] [ 3] [418] +17:13:37 [ 54] [ 20] [0002418C000109616563] +17:13:37 ============================================================================ +17:13:37 Calculate Source COMM Id = 0 +17:13:37 ============================================================================ +17:13:37 + + +waiting on router queue for slot.... +17:13:51 ============================================================================ +17:13:51 Slot Id : <104> +17:13:51 Transaction Type : REQUEST +17:13:51 Received From : +17:13:51 ============================================================================ +17:13:51 FNo. Len. Field Value +17:13:51 ============================================================================ +17:13:51 [ 1] [ 4] [0800] +17:13:51 [ 7] [ 10] [0320101258] +17:13:51 [ 11] [ 6] [157407] +17:13:51 [ 70] [ 3] [301] +17:13:51 ============================================================================ +17:13:51 + + +waiting on router queue for slot.... +17:13:51 Sending to : +17:13:51 ============================================================================ +17:13:51 ============================================================================ +17:13:51 Slot Id : <104> +17:13:51 Transaction Type : RESPONSE +17:13:51 Received From : +17:13:51 ============================================================================ +17:13:51 FNo. Len. Field Value +17:13:51 ============================================================================ +17:13:51 [ 1] [ 4] [0810] +17:13:51 [ 7] [ 10] [0320101258] +17:13:51 [ 11] [ 6] [157407] +17:13:51 [ 39] [ 2] [00] +17:13:51 [ 70] [ 3] [301] +17:13:51 ============================================================================ +17:13:51 Calculate Source COMM Id = 2 +17:13:51 ============================================================================ +17:13:51 + + +waiting on router queue for slot.... +17:13:55 ============================================================================ +17:13:55 Slot Id : <138> +17:13:55 Transaction Type : REQUEST +17:13:55 Received From : +17:13:55 ============================================================================ +17:13:55 FNo. Len. Field Value +17:13:55 ============================================================================ +17:13:55 [ 1] [ 4] [0200] +17:13:55 [ 2] [ 16] [6213544001969523] +17:13:55 [ 3] [ 6] [011000] +17:13:55 [ 4] [ 12] [000050000000] +17:13:55 [ 7] [ 10] [0320171416] +17:13:55 [ 11] [ 6] [209372] +17:13:55 [ 12] [ 6] [171008] +17:13:55 [ 13] [ 4] [0320] +17:13:55 [ 14] [ 4] [4912] +17:13:55 [ 15] [ 4] [0320] +17:13:55 [ 18] [ 4] [6011] +17:13:55 [ 19] [ 3] [418] +17:13:55 [ 22] [ 3] [021] +17:13:55 [ 25] [ 2] [01] +17:13:55 [ 28] [ 9] [D00002000] +17:13:55 [ 32] [ 6] [198901] +17:13:55 [ 35] [ 32] [6213544001969523=491212016952421] +17:13:55 [ 37] [ 12] [507917209372] +17:13:55 [ 41] [ 8] [00852902] +17:13:55 [ 42] [ 15] [000000040852902] +17:13:55 [ 43] [ 40] [ATM SAVANCH II VN ] +17:13:55 [ 49] [ 3] [418] +17:13:55 [ 52] [ 16] [CD8C73B36689C0B5] +17:13:55 ============================================================================ +17:13:55 + + +waiting on router queue for slot.... +17:13:55 Sending to : +17:13:55 ============================================================================ +17:13:55 Sending to : +17:13:55 ============================================================================ +17:13:56 ============================================================================ +17:13:56 Slot Id : <138> +17:13:56 Transaction Type : REQUEST +17:13:56 Received From : +17:13:56 ============================================================================ +17:13:56 FNo. Len. Field Value +17:13:56 ============================================================================ +17:13:56 [ 1] [ 4] [0200] +17:13:56 [ 2] [ 16] [6213544001969523] +17:13:56 [ 3] [ 6] [011000] +17:13:56 [ 4] [ 12] [000050000000] +17:13:56 [ 7] [ 10] [0320171416] +17:13:56 [ 11] [ 6] [209372] +17:13:56 [ 12] [ 6] [171008] +17:13:56 [ 13] [ 4] [0320] +17:13:56 [ 14] [ 4] [4912] +17:13:56 [ 15] [ 4] [0320] +17:13:56 [ 18] [ 4] [6011] +17:13:56 [ 19] [ 3] [418] +17:13:56 [ 22] [ 3] [021] +17:13:56 [ 25] [ 2] [01] +17:13:56 [ 28] [ 9] [D00002000] +17:13:56 [ 32] [ 6] [198901] +17:13:56 [ 35] [ 32] [6213544001969523=491212016952421] +17:13:56 [ 37] [ 12] [507917209372] +17:13:56 [ 41] [ 8] [00852902] +17:13:56 [ 42] [ 15] [000000040852902] +17:13:56 [ 43] [ 40] [ATM SAVANCH II VN ] +17:13:56 [ 49] [ 3] [418] +17:13:56 [ 52] [ 16] [CD8C73B36689C0B5] +17:13:56 ============================================================================ +17:13:56 + + +waiting on router queue for slot.... +17:13:56 Sending to : +17:13:56 ============================================================================ +17:13:56 ============================================================================ +17:13:56 Slot Id : <138> +17:13:56 Transaction Type : REQUEST +17:13:56 Received From : +17:13:56 ============================================================================ +17:13:56 FNo. Len. Field Value +17:13:56 ============================================================================ +17:13:56 [ 1] [ 4] [0200] +17:13:56 [ 2] [ 16] [6213544001969523] +17:13:56 [ 3] [ 6] [011000] +17:13:56 [ 4] [ 12] [000050000000] +17:13:56 [ 7] [ 10] [0320171416] +17:13:56 [ 11] [ 6] [209372] +17:13:56 [ 12] [ 6] [171008] +17:13:56 [ 13] [ 4] [0320] +17:13:56 [ 14] [ 4] [4912] +17:13:56 [ 15] [ 4] [0320] +17:13:56 [ 18] [ 4] [6011] +17:13:56 [ 19] [ 3] [418] +17:13:56 [ 22] [ 3] [021] +17:13:56 [ 25] [ 2] [01] +17:13:56 [ 28] [ 9] [D00002000] +17:13:56 [ 32] [ 6] [198901] +17:13:56 [ 35] [ 32] [6213544001969523=491212016952421] +17:13:56 [ 37] [ 12] [507917209372] +17:13:56 [ 41] [ 8] [00852902] +17:13:56 [ 42] [ 15] [000000040852902] +17:13:56 [ 43] [ 40] [ATM SAVANCH II VN ] +17:13:56 [ 49] [ 3] [418] +17:13:56 [ 52] [ 16] [469D8CD5D67711B2] +17:13:56 ============================================================================ +17:13:56 + + +waiting on router queue for slot.... +17:13:56 Sending to : <0> +17:13:56 ============================================================================ +17:13:56 ============================================================================ +17:13:56 Slot Id : <138> +17:13:56 Transaction Type : RESPONSE +17:13:56 Received From : +17:13:56 ============================================================================ +17:13:56 FNo. Len. Field Value +17:13:56 ============================================================================ +17:13:56 [ 1] [ 4] [0210] +17:13:56 [ 2] [ 16] [6213544001969523] +17:13:56 [ 3] [ 6] [011000] +17:13:56 [ 4] [ 12] [000050000000] +17:13:56 [ 7] [ 10] [0320171416] +17:13:56 [ 11] [ 6] [209372] +17:13:56 [ 12] [ 6] [171008] +17:13:56 [ 13] [ 4] [0320] +17:13:56 [ 15] [ 4] [0320] +17:13:56 [ 18] [ 4] [6011] +17:13:56 [ 19] [ 3] [418] +17:13:56 [ 32] [ 6] [198901] +17:13:56 [ 35] [ 32] [6213544001969523=491212016952421] +17:13:56 [ 37] [ 12] [507917209372] +17:13:56 [ 38] [ 6] [140230] +17:13:56 [ 39] [ 2] [00] +17:13:56 [ 41] [ 8] [00852902] +17:13:56 [ 49] [ 3] [418] +17:13:56 [ 54] [ 40] [1001418C0000111607281002418C000011160728] +17:13:56 ============================================================================ +17:13:56 Sending to : +17:13:56 ============================================================================ +17:13:56 + + +waiting on router queue for slot.... +17:13:57 ============================================================================ +17:13:57 Slot Id : <112> +17:13:57 Transaction Type : REQUEST +17:13:57 Received From : +17:13:57 ============================================================================ +17:13:57 FNo. Len. Field Value +17:13:57 ============================================================================ +17:13:57 [ 1] [ 4] [0420] +17:13:57 [ 2] [ 16] [2206990000088468] +17:13:57 [ 3] [ 6] [011000] +17:13:57 [ 4] [ 12] [000050000000] +17:13:57 [ 7] [ 10] [0320171320] +17:13:57 [ 11] [ 6] [811836] +17:13:57 [ 12] [ 6] [171320] +17:13:57 [ 13] [ 4] [0320] +17:13:57 [ 15] [ 4] [0320] +17:13:57 [ 18] [ 4] [6011] +17:13:57 [ 22] [ 3] [900] +17:13:57 [ 25] [ 2] [02] +17:13:57 [ 28] [ 9] [C00002000] +17:13:57 [ 32] [ 6] [621354] +17:13:57 [ 35] [ 32] [2206990000088468=180612811519306] +17:13:57 [ 37] [ 12] [507903837788] +17:13:57 [ 39] [ 2] [00] +17:13:57 [ 41] [ 8] [01009900] +17:13:57 [ 42] [ 15] [NATIVE ] +17:13:57 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +17:13:57 [ 49] [ 3] [418] +17:13:57 [ 90] [ 42] [020081183603201713200000062135400000000000] +17:13:57 ============================================================================ +17:13:57 + + +waiting on router queue for slot.... +17:13:57 Sending to : +17:13:57 ============================================================================ +17:13:58 ============================================================================ +17:13:58 Slot Id : <138> +17:13:58 Transaction Type : RESPONSE +17:13:58 Received From : +17:13:58 ============================================================================ +17:13:58 FNo. Len. Field Value +17:13:58 ============================================================================ +17:13:58 [ 1] [ 4] [0210] +17:13:58 [ 2] [ 16] [6213544001969523] +17:13:58 [ 3] [ 6] [011000] +17:13:58 [ 4] [ 12] [000050000000] +17:13:58 [ 7] [ 10] [0320171416] +17:13:58 [ 11] [ 6] [209372] +17:13:58 [ 12] [ 6] [171008] +17:13:58 [ 13] [ 4] [0320] +17:13:58 [ 15] [ 4] [0320] +17:13:58 [ 18] [ 4] [6011] +17:13:58 [ 19] [ 3] [418] +17:13:58 [ 32] [ 6] [198901] +17:13:58 [ 35] [ 32] [6213544001969523=491212016952421] +17:13:58 [ 37] [ 12] [507917209372] +17:13:58 [ 38] [ 6] [140230] +17:13:58 [ 39] [ 2] [00] +17:13:58 [ 41] [ 8] [00852902] +17:13:58 [ 49] [ 3] [418] +17:13:58 [ 54] [ 40] [1001418C0000111607281002418C000011160728] +17:13:58 ============================================================================ +17:13:58 Calculate Source COMM Id = 5 +17:13:58 ============================================================================ +17:13:58 + + +waiting on router queue for slot.... +17:13:59 ============================================================================ +17:13:59 Slot Id : <97> +17:13:59 Transaction Type : REQUEST +17:13:59 Received From : +17:13:59 ============================================================================ +17:13:59 FNo. Len. Field Value +17:13:59 ============================================================================ +17:13:59 [ 1] [ 4] [0800] +17:13:59 [ 2] [ 5] [02531] +17:13:59 [ 3] [ 6] [579178] +17:13:59 [ 7] [ 10] [0320101359] +17:13:59 [ 11] [ 6] [807412] +17:13:59 [ 15] [ 10] [0320101359] +17:13:59 [ 37] [ 11] [57917807412] +17:13:59 [ 70] [ 3] [001] +17:13:59 ============================================================================ +17:13:59 + + +waiting on router queue for slot.... +17:13:59 ============================================================================ +17:13:59 Slot Id : <97> +17:13:59 Transaction Type : RESPONSE +17:13:59 Received From : +17:13:59 ============================================================================ +17:13:59 FNo. Len. Field Value +17:13:59 ============================================================================ +17:13:59 [ 1] [ 4] [0810] +17:13:59 [ 7] [ 10] [0320101359] +17:13:59 [ 11] [ 6] [807412] +17:13:59 [ 15] [ 4] [0320] +17:13:59 [ 37] [ 12] [57917807412] +17:13:59 [ 39] [ 2] [00] +17:13:59 [ 70] [ 3] [001] +17:13:59 ============================================================================ +17:13:59 Sending to : +17:13:59 ============================================================================ +17:13:59 + + +waiting on router queue for slot.... +17:14:02 ============================================================================ +17:14:02 Slot Id : <112> +17:14:02 Transaction Type : RESPONSE +17:14:02 Received From : +17:14:02 ============================================================================ +17:14:02 FNo. Len. Field Value +17:14:02 ============================================================================ +17:14:02 [ 1] [ 4] [0430] +17:14:02 [ 2] [ 16] [2206990000088468] +17:14:02 [ 3] [ 6] [011000] +17:14:02 [ 4] [ 12] [000050000000] +17:14:02 [ 7] [ 10] [0320171320] +17:14:02 [ 11] [ 6] [811836] +17:14:02 [ 12] [ 6] [171320] +17:14:02 [ 13] [ 4] [0320] +17:14:02 [ 15] [ 4] [0320] +17:14:02 [ 18] [ 4] [6011] +17:14:02 [ 22] [ 3] [900] +17:14:02 [ 25] [ 2] [02] +17:14:02 [ 28] [ 9] [C00002000] +17:14:02 [ 32] [ 6] [621354] +17:14:02 [ 35] [ 32] [2206990000088468=180612811519306] +17:14:02 [ 37] [ 12] [507903837788] +17:14:02 [ 39] [ 2] [00] +17:14:02 [ 41] [ 8] [01009900] +17:14:02 [ 42] [ 15] [NATIVE ] +17:14:02 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +17:14:02 [ 49] [ 3] [418] +17:14:02 [ 90] [ 42] [020081183603201713200000062135400000000000] +17:14:02 ============================================================================ +17:14:02 Calculate Source COMM Id = 0 +17:14:02 ============================================================================ +17:14:02 + + +waiting on router queue for slot.... +17:14:02 ============================================================================ +17:14:02 Slot Id : <111> +17:14:02 Transaction Type : REQUEST +17:14:02 Received From : +17:14:02 ============================================================================ +17:14:02 FNo. Len. Field Value +17:14:02 ============================================================================ +17:14:02 [ 1] [ 4] [0800] +17:14:02 [ 7] [ 10] [0320101309] +17:14:02 [ 11] [ 6] [157408] +17:14:02 [ 70] [ 3] [301] +17:14:02 ============================================================================ +17:14:02 + + +waiting on router queue for slot.... +17:14:02 Sending to : +17:14:02 ============================================================================ +17:14:02 ============================================================================ +17:14:02 Slot Id : <111> +17:14:02 Transaction Type : RESPONSE +17:14:02 Received From : +17:14:02 ============================================================================ +17:14:02 FNo. Len. Field Value +17:14:02 ============================================================================ +17:14:02 [ 1] [ 4] [0810] +17:14:02 [ 7] [ 10] [0320101309] +17:14:02 [ 11] [ 6] [157408] +17:14:02 [ 39] [ 2] [00] +17:14:02 [ 70] [ 3] [301] +17:14:02 ============================================================================ +17:14:02 Calculate Source COMM Id = 2 +17:14:02 ============================================================================ +17:14:02 + + +waiting on router queue for slot.... +17:14:12 ============================================================================ +17:14:12 Slot Id : <87> +17:14:12 17:14:12 Received From : <> +17:14:12 ============================================================================ +17:14:12 FNo. Len. Field Value +17:14:12 ============================================================================ +17:14:12 Sending to : +17:14:12 ============================================================================ +17:14:12 + + +waiting on router queue for slot.... +17:14:12 ============================================================================ +17:14:12 Slot Id : <140> +17:14:12 Transaction Type : REQUEST +17:14:12 Received From : +17:14:12 ============================================================================ +17:14:12 FNo. Len. Field Value +17:14:12 ============================================================================ +17:14:12 [ 1] [ 4] [0800] +17:14:12 [ 7] [ 10] [0320101319] +17:14:12 [ 11] [ 6] [157409] +17:14:12 [ 70] [ 3] [301] +17:14:12 ============================================================================ +17:14:12 + + +waiting on router queue for slot.... +17:14:12 Sending to : +17:14:12 ============================================================================ +17:14:12 ============================================================================ +17:14:12 Slot Id : <140> +17:14:12 Transaction Type : RESPONSE +17:14:12 Received From : +17:14:12 ============================================================================ +17:14:12 FNo. Len. Field Value +17:14:12 ============================================================================ +17:14:12 [ 1] [ 4] [0810] +17:14:12 [ 7] [ 10] [0320101319] +17:14:12 [ 11] [ 6] [157409] +17:14:12 [ 39] [ 2] [00] +17:14:12 [ 70] [ 3] [301] +17:14:12 ============================================================================ +17:14:12 Calculate Source COMM Id = 2 +17:14:12 ============================================================================ +17:14:12 + + +waiting on router queue for slot.... +17:14:23 ============================================================================ +17:14:23 Slot Id : <124> +17:14:23 Transaction Type : REQUEST +17:14:23 Received From : +17:14:23 ============================================================================ +17:14:23 FNo. Len. Field Value +17:14:23 ============================================================================ +17:14:23 [ 1] [ 4] [0800] +17:14:23 [ 7] [ 10] [0320101330] +17:14:23 [ 11] [ 6] [157410] +17:14:23 [ 70] [ 3] [301] +17:14:23 ============================================================================ +17:14:23 + + +waiting on router queue for slot.... +17:14:23 Sending to : +17:14:23 ============================================================================ +17:14:23 ============================================================================ +17:14:23 Slot Id : <124> +17:14:23 Transaction Type : RESPONSE +17:14:23 Received From : +17:14:23 ============================================================================ +17:14:23 FNo. Len. Field Value +17:14:23 ============================================================================ +17:14:23 [ 1] [ 4] [0810] +17:14:23 [ 7] [ 10] [0320101330] +17:14:23 [ 11] [ 6] [157410] +17:14:23 [ 39] [ 2] [00] +17:14:23 [ 70] [ 3] [301] +17:14:23 ============================================================================ +17:14:23 Calculate Source COMM Id = 2 +17:14:23 ============================================================================ +17:14:23 + + +waiting on router queue for slot.... +17:14:24 ============================================================================ +17:14:24 Slot Id : <123> +17:14:24 Transaction Type : REQUEST +17:14:24 Received From : +17:14:24 ============================================================================ +17:14:24 FNo. Len. Field Value +17:14:24 ============================================================================ +17:14:24 [ 1] [ 4] [0200] +17:14:24 [ 2] [ 16] [6213544002131669] +17:14:24 [ 3] [ 6] [010000] +17:14:24 [ 4] [ 12] [000048000000] +17:14:24 [ 7] [ 10] [0320172211] +17:14:24 [ 11] [ 6] [240495] +17:14:24 [ 12] [ 6] [172211] +17:14:24 [ 13] [ 4] [0320] +17:14:24 [ 14] [ 4] [4912] +17:14:24 [ 15] [ 4] [0320] +17:14:24 [ 18] [ 4] [6011] +17:14:24 [ 22] [ 3] [900] +17:14:24 [ 25] [ 2] [02] +17:14:24 [ 28] [ 9] [D00002000] +17:14:24 [ 32] [ 6] [220699] +17:14:24 [ 35] [ 32] [6213544002131669=491212013166652] +17:14:24 [ 37] [ 12] [507900360237] +17:14:24 [ 41] [ 8] [05000300] +17:14:24 [ 42] [ 15] [APTRA ] +17:14:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:14:24 [ 49] [ 3] [418] +17:14:24 [ 52] [ 16] [2B30318169037763] +17:14:24 ============================================================================ +17:14:24 + + +waiting on router queue for slot.... +17:14:24 Sending to : +17:14:24 ============================================================================ +17:14:24 Sending to : +17:14:24 ============================================================================ +17:14:24 ============================================================================ +17:14:24 Slot Id : <123> +17:14:24 Transaction Type : REQUEST +17:14:24 Received From : +17:14:24 ============================================================================ +17:14:24 FNo. Len. Field Value +17:14:24 ============================================================================ +17:14:24 [ 1] [ 4] [0200] +17:14:24 [ 2] [ 16] [6213544002131669] +17:14:24 [ 3] [ 6] [010000] +17:14:24 [ 4] [ 12] [000048000000] +17:14:24 [ 7] [ 10] [0320172211] +17:14:24 [ 11] [ 6] [240495] +17:14:24 [ 12] [ 6] [172211] +17:14:24 [ 13] [ 4] [0320] +17:14:24 [ 14] [ 4] [4912] +17:14:24 [ 15] [ 4] [0320] +17:14:24 [ 18] [ 4] [6011] +17:14:24 [ 22] [ 3] [900] +17:14:24 [ 25] [ 2] [02] +17:14:24 [ 28] [ 9] [D00002000] +17:14:24 [ 32] [ 6] [220699] +17:14:24 [ 35] [ 32] [6213544002131669=491212013166652] +17:14:24 [ 37] [ 12] [507900360237] +17:14:24 [ 41] [ 8] [05000300] +17:14:24 [ 42] [ 15] [APTRA ] +17:14:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:14:24 [ 49] [ 3] [418] +17:14:24 [ 52] [ 16] [2B30318169037763] +17:14:24 ============================================================================ +17:14:24 + + +waiting on router queue for slot.... +17:14:24 Sending to : +17:14:24 ============================================================================ +17:14:24 ============================================================================ +17:14:24 Slot Id : <123> +17:14:24 Transaction Type : REQUEST +17:14:24 Received From : +17:14:24 ============================================================================ +17:14:24 FNo. Len. Field Value +17:14:24 ============================================================================ +17:14:24 [ 1] [ 4] [0200] +17:14:24 [ 2] [ 16] [6213544002131669] +17:14:24 [ 3] [ 6] [010000] +17:14:24 [ 4] [ 12] [000048000000] +17:14:24 [ 7] [ 10] [0320172211] +17:14:24 [ 11] [ 6] [240495] +17:14:24 [ 12] [ 6] [172211] +17:14:24 [ 13] [ 4] [0320] +17:14:24 [ 14] [ 4] [4912] +17:14:24 [ 15] [ 4] [0320] +17:14:24 [ 18] [ 4] [6011] +17:14:24 [ 22] [ 3] [900] +17:14:24 [ 25] [ 2] [02] +17:14:24 [ 28] [ 9] [D00002000] +17:14:24 [ 32] [ 6] [220699] +17:14:24 [ 35] [ 32] [6213544002131669=491212013166652] +17:14:24 [ 37] [ 12] [507900360237] +17:14:24 [ 41] [ 8] [05000300] +17:14:24 [ 42] [ 15] [APTRA ] +17:14:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:14:24 [ 49] [ 3] [418] +17:14:24 [ 52] [ 16] [4508726598C3225F] +17:14:24 ============================================================================ +17:14:24 + + +waiting on router queue for slot.... +17:14:24 Sending to : <0> +17:14:24 ============================================================================ +17:14:26 ============================================================================ +17:14:26 Slot Id : <123> +17:14:26 Transaction Type : RESPONSE +17:14:26 Received From : +17:14:26 ============================================================================ +17:14:26 FNo. Len. Field Value +17:14:26 ============================================================================ +17:14:26 [ 1] [ 4] [0210] +17:14:26 [ 2] [ 16] [6213544002131669] +17:14:26 [ 3] [ 6] [010000] +17:14:26 [ 4] [ 12] [000048000000] +17:14:26 [ 7] [ 10] [0320172211] +17:14:26 [ 11] [ 6] [240495] +17:14:26 [ 12] [ 6] [172211] +17:14:26 [ 13] [ 4] [0320] +17:14:26 [ 15] [ 4] [0320] +17:14:26 [ 18] [ 4] [6011] +17:14:26 [ 32] [ 6] [220699] +17:14:26 [ 35] [ 32] [6213544002131669=491212013166652] +17:14:26 [ 37] [ 12] [507900360237] +17:14:26 [ 38] [ 6] [621267] +17:14:26 [ 39] [ 2] [00] +17:14:26 [ 41] [ 8] [05000300] +17:14:26 [ 49] [ 3] [418] +17:14:26 [ 54] [ 40] [0001418C0000062935870002418C000006293587] +17:14:26 ============================================================================ +17:14:26 Sending to : +17:14:26 ============================================================================ +17:14:26 + + +waiting on router queue for slot.... +17:14:27 ============================================================================ +17:14:27 Slot Id : <123> +17:14:27 Transaction Type : RESPONSE +17:14:27 Received From : +17:14:27 ============================================================================ +17:14:27 FNo. Len. Field Value +17:14:27 ============================================================================ +17:14:27 [ 1] [ 4] [0210] +17:14:27 [ 2] [ 16] [6213544002131669] +17:14:27 [ 3] [ 6] [010000] +17:14:27 [ 4] [ 12] [000048000000] +17:14:27 [ 7] [ 10] [0320172211] +17:14:27 [ 11] [ 6] [240495] +17:14:27 [ 12] [ 6] [172211] +17:14:27 [ 13] [ 4] [0320] +17:14:27 [ 15] [ 4] [0320] +17:14:27 [ 18] [ 4] [6011] +17:14:27 [ 32] [ 6] [220699] +17:14:27 [ 35] [ 32] [6213544002131669=491212013166652] +17:14:27 [ 37] [ 12] [507900360237] +17:14:27 [ 38] [ 6] [621267] +17:14:27 [ 39] [ 2] [00] +17:14:27 [ 41] [ 8] [05000300] +17:14:27 [ 49] [ 3] [418] +17:14:27 [ 54] [ 40] [0001418C0000062935870002418C000006293587] +17:14:27 ============================================================================ +17:14:27 Calculate Source COMM Id = 1 +17:14:27 ============================================================================ +17:14:27 + + +waiting on router queue for slot.... +17:14:30 ============================================================================ +17:14:30 Slot Id : <80> +17:14:30 Transaction Type : REQUEST +17:14:30 Received From : +17:14:30 ============================================================================ +17:14:30 FNo. Len. Field Value +17:14:30 ============================================================================ +17:14:30 [ 1] [ 4] [0800] +17:14:30 [ 7] [ 10] [0321002619] +17:14:30 [ 11] [ 6] [172619] +17:14:30 [ 37] [ 12] [57917172619] +17:14:30 [ 70] [ 3] [301] +17:14:30 ============================================================================ +17:14:30 + + +waiting on router queue for slot.... +17:14:30 Sending to : +17:14:30 ============================================================================ +17:14:30 ============================================================================ +17:14:30 Slot Id : <80> +17:14:30 Transaction Type : RESPONSE +17:14:30 Received From : +17:14:30 ============================================================================ +17:14:30 FNo. Len. Field Value +17:14:30 ============================================================================ +17:14:30 [ 1] [ 4] [0810] +17:14:30 [ 7] [ 10] [0321002619] +17:14:30 [ 11] [ 6] [172619] +17:14:30 [ 37] [ 12] [579171726190] +17:14:30 [ 39] [ 2] [00] +17:14:30 [ 70] [ 3] [810] +17:14:30 ============================================================================ +17:14:30 Calculate Source COMM Id = 6 +17:14:30 ============================================================================ +17:14:30 + + +waiting on router queue for slot.... +17:14:32 ============================================================================ +17:14:32 Slot Id : <117> +17:14:32 Transaction Type : REQUEST +17:14:32 Received From : +17:14:32 ============================================================================ +17:14:32 FNo. Len. Field Value +17:14:32 ============================================================================ +17:14:32 [ 1] [ 4] [0200] +17:14:32 [ 2] [ 16] [6688990108175306] +17:14:32 [ 3] [ 6] [010000] +17:14:32 [ 4] [ 12] [000100000000] +17:14:32 [ 7] [ 10] [0320101338] +17:14:32 [ 11] [ 6] [270762] +17:14:32 [ 12] [ 6] [171338] +17:14:32 [ 13] [ 4] [0320] +17:14:32 [ 14] [ 4] [4405] +17:14:32 [ 15] [ 4] [0320] +17:14:32 [ 18] [ 4] [6011] +17:14:32 [ 19] [ 3] [418] +17:14:32 [ 22] [ 3] [021] +17:14:32 [ 25] [ 2] [01] +17:14:32 [ 28] [ 9] [D00002000] +17:14:32 [ 32] [ 6] [180893] +17:14:32 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:14:32 [ 37] [ 12] [507910270762] +17:14:32 [ 41] [ 8] [0264UDXH] +17:14:32 [ 42] [ 15] [999999 ] +17:14:32 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +17:14:32 [ 49] [ 3] [418] +17:14:32 [ 52] [ 16] [5FE751DD5B3CBCC4] +17:14:32 ============================================================================ +17:14:32 + + +waiting on router queue for slot.... +17:14:32 Sending to : +17:14:32 ============================================================================ +17:14:32 Sending to : +17:14:32 ============================================================================ +17:14:32 ============================================================================ +17:14:32 Slot Id : <117> +17:14:32 Transaction Type : REQUEST +17:14:32 Received From : +17:14:32 ============================================================================ +17:14:32 FNo. Len. Field Value +17:14:32 ============================================================================ +17:14:32 [ 1] [ 4] [0200] +17:14:32 [ 2] [ 16] [6688990108175306] +17:14:32 [ 3] [ 6] [010000] +17:14:32 [ 4] [ 12] [000100000000] +17:14:32 [ 7] [ 10] [0320101338] +17:14:32 [ 11] [ 6] [270762] +17:14:32 [ 12] [ 6] [171338] +17:14:32 [ 13] [ 4] [0320] +17:14:32 [ 14] [ 4] [4405] +17:14:32 [ 15] [ 4] [0320] +17:14:32 [ 18] [ 4] [6011] +17:14:32 [ 19] [ 3] [418] +17:14:32 [ 22] [ 3] [021] +17:14:32 [ 25] [ 2] [01] +17:14:32 [ 28] [ 9] [D00002000] +17:14:32 [ 32] [ 6] [180893] +17:14:32 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:14:32 [ 37] [ 12] [507910270762] +17:14:32 [ 41] [ 8] [0264UDXH] +17:14:32 [ 42] [ 15] [999999 ] +17:14:32 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +17:14:32 [ 49] [ 3] [418] +17:14:32 [ 52] [ 16] [5FE751DD5B3CBCC4] +17:14:32 ============================================================================ +17:14:32 + + +waiting on router queue for slot.... +17:14:32 Sending to : +17:14:32 ============================================================================ +17:14:32 ============================================================================ +17:14:32 Slot Id : <117> +17:14:32 Transaction Type : REQUEST +17:14:32 Received From : +17:14:32 ============================================================================ +17:14:32 FNo. Len. Field Value +17:14:32 ============================================================================ +17:14:32 [ 1] [ 4] [0200] +17:14:32 [ 2] [ 16] [6688990108175306] +17:14:32 [ 3] [ 6] [010000] +17:14:32 [ 4] [ 12] [000100000000] +17:14:32 [ 7] [ 10] [0320101338] +17:14:32 [ 11] [ 6] [270762] +17:14:32 [ 12] [ 6] [171338] +17:14:32 [ 13] [ 4] [0320] +17:14:32 [ 14] [ 4] [4405] +17:14:32 [ 15] [ 4] [0320] +17:14:32 [ 18] [ 4] [6011] +17:14:32 [ 19] [ 3] [418] +17:14:32 [ 22] [ 3] [021] +17:14:32 [ 25] [ 2] [01] +17:14:32 [ 28] [ 9] [D00002000] +17:14:32 [ 32] [ 6] [180893] +17:14:32 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:14:32 [ 37] [ 12] [507910270762] +17:14:32 [ 41] [ 8] [0264UDXH] +17:14:32 [ 42] [ 15] [999999 ] +17:14:32 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +17:14:32 [ 49] [ 3] [418] +17:14:32 [ 52] [ 16] [D0A84B9AD3CCE2A9] +17:14:32 ============================================================================ +17:14:32 + + +waiting on router queue for slot.... +17:14:32 Sending to : <0> +17:14:32 ============================================================================ +17:14:32 ============================================================================ +17:14:32 Slot Id : <117> +17:14:32 Transaction Type : RESPONSE +17:14:32 Received From : +17:14:32 ============================================================================ +17:14:32 FNo. Len. Field Value +17:14:32 ============================================================================ +17:14:32 [ 1] [ 4] [0210] +17:14:32 [ 2] [ 16] [6688990108175306] +17:14:32 [ 3] [ 6] [010000] +17:14:32 [ 4] [ 12] [000100000000] +17:14:32 [ 7] [ 10] [0320101338] +17:14:32 [ 11] [ 6] [270762] +17:14:32 [ 12] [ 6] [171338] +17:14:32 [ 13] [ 4] [0320] +17:14:32 [ 15] [ 4] [0320] +17:14:32 [ 18] [ 4] [6011] +17:14:32 [ 19] [ 3] [418] +17:14:32 [ 22] [ 3] [021] +17:14:32 [ 32] [ 6] [180893] +17:14:32 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:14:32 [ 37] [ 12] [507910270762] +17:14:32 [ 39] [ 2] [14] +17:14:32 [ 41] [ 8] [0264UDXH] +17:14:32 [ 49] [ 3] [418] +17:14:32 ============================================================================ +17:14:32 Sending to : +17:14:32 ============================================================================ +17:14:32 + + +waiting on router queue for slot.... +17:14:33 ============================================================================ +17:14:33 Slot Id : <147> +17:14:33 Transaction Type : REQUEST +17:14:33 Received From : +17:14:33 ============================================================================ +17:14:33 FNo. Len. Field Value +17:14:33 ============================================================================ +17:14:33 [ 1] [ 4] [0800] +17:14:33 [ 7] [ 10] [0320101340] +17:14:33 [ 11] [ 6] [157411] +17:14:33 [ 70] [ 3] [301] +17:14:33 ============================================================================ +17:14:33 + + +waiting on router queue for slot.... +17:14:33 Sending to : +17:14:33 ============================================================================ +17:14:33 ============================================================================ +17:14:33 Slot Id : <147> +17:14:33 Transaction Type : RESPONSE +17:14:33 Received From : +17:14:33 ============================================================================ +17:14:33 FNo. Len. Field Value +17:14:33 ============================================================================ +17:14:33 [ 1] [ 4] [0810] +17:14:33 [ 7] [ 10] [0320101340] +17:14:33 [ 11] [ 6] [157411] +17:14:33 [ 39] [ 2] [00] +17:14:33 [ 70] [ 3] [301] +17:14:33 ============================================================================ +17:14:33 Calculate Source COMM Id = 2 +17:14:33 ============================================================================ +17:14:33 + + +waiting on router queue for slot.... +17:14:34 ============================================================================ +17:14:34 Slot Id : <117> +17:14:34 Transaction Type : RESPONSE +17:14:34 Received From : +17:14:34 ============================================================================ +17:14:34 FNo. Len. Field Value +17:14:34 ============================================================================ +17:14:34 [ 1] [ 4] [0210] +17:14:34 [ 2] [ 16] [6688990108175306] +17:14:34 [ 3] [ 6] [010000] +17:14:34 [ 4] [ 12] [000100000000] +17:14:34 [ 7] [ 10] [0320101338] +17:14:34 [ 11] [ 6] [270762] +17:14:34 [ 12] [ 6] [171338] +17:14:34 [ 13] [ 4] [0320] +17:14:34 [ 15] [ 4] [0320] +17:14:34 [ 18] [ 4] [6011] +17:14:34 [ 19] [ 3] [418] +17:14:34 [ 22] [ 3] [021] +17:14:34 [ 32] [ 6] [180893] +17:14:34 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:14:34 [ 37] [ 12] [507910270762] +17:14:34 [ 39] [ 2] [14] +17:14:34 [ 41] [ 8] [0264UDXH] +17:14:34 [ 49] [ 3] [418] +17:14:34 ============================================================================ +17:14:34 Calculate Source COMM Id = 2 +17:14:34 ============================================================================ +17:14:34 + + +waiting on router queue for slot.... +17:14:49 ============================================================================ +17:14:49 Slot Id : <122> +17:14:49 Transaction Type : REQUEST +17:14:49 Received From : +17:14:49 ============================================================================ +17:14:49 FNo. Len. Field Value +17:14:49 ============================================================================ +17:14:49 [ 1] [ 4] [0800] +17:14:49 [ 7] [ 10] [0320101356] +17:14:49 [ 11] [ 6] [157412] +17:14:49 [ 70] [ 3] [301] +17:14:49 ============================================================================ +17:14:49 + + +waiting on router queue for slot.... +17:14:49 Sending to : +17:14:49 ============================================================================ +17:14:49 ============================================================================ +17:14:49 Slot Id : <122> +17:14:49 Transaction Type : RESPONSE +17:14:49 Received From : +17:14:49 ============================================================================ +17:14:49 FNo. Len. Field Value +17:14:49 ============================================================================ +17:14:49 [ 1] [ 4] [0810] +17:14:49 [ 7] [ 10] [0320101356] +17:14:49 [ 11] [ 6] [157412] +17:14:49 [ 39] [ 2] [00] +17:14:49 [ 70] [ 3] [301] +17:14:49 ============================================================================ +17:14:49 Calculate Source COMM Id = 2 +17:14:49 ============================================================================ +17:14:49 + + +waiting on router queue for slot.... +17:14:51 ============================================================================ +17:14:51 Slot Id : <161> +17:14:51 Transaction Type : REQUEST +17:14:51 Received From : +17:14:51 ============================================================================ +17:14:51 FNo. Len. Field Value +17:14:51 ============================================================================ +17:14:51 [ 1] [ 4] [0200] +17:14:51 [ 2] [ 16] [6213544000040177] +17:14:51 [ 3] [ 6] [011000] +17:14:51 [ 4] [ 12] [000040000000] +17:14:51 [ 7] [ 10] [0320101357] +17:14:51 [ 11] [ 6] [270765] +17:14:51 [ 12] [ 6] [171357] +17:14:51 [ 13] [ 4] [0320] +17:14:51 [ 14] [ 4] [4912] +17:14:51 [ 15] [ 4] [0320] +17:14:51 [ 18] [ 4] [6011] +17:14:51 [ 19] [ 3] [418] +17:14:51 [ 22] [ 3] [021] +17:14:51 [ 25] [ 2] [01] +17:14:51 [ 28] [ 9] [D00002000] +17:14:51 [ 32] [ 6] [180893] +17:14:51 [ 35] [ 32] [6213544000040177=491212014017699] +17:14:51 [ 37] [ 12] [507910270765] +17:14:51 [ 41] [ 8] [0421BKPH] +17:14:51 [ 42] [ 15] [999999 ] +17:14:51 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:14:51 [ 49] [ 3] [418] +17:14:51 [ 52] [ 16] [5FCDEECCDF131B89] +17:14:51 ============================================================================ +17:14:51 + + +waiting on router queue for slot.... +17:14:51 Sending to : +17:14:51 ============================================================================ +17:14:51 Sending to : +17:14:51 ============================================================================ +17:14:51 ============================================================================ +17:14:51 Slot Id : <161> +17:14:51 Transaction Type : REQUEST +17:14:51 Received From : +17:14:51 ============================================================================ +17:14:51 FNo. Len. Field Value +17:14:51 ============================================================================ +17:14:51 [ 1] [ 4] [0200] +17:14:51 [ 2] [ 16] [6213544000040177] +17:14:51 [ 3] [ 6] [011000] +17:14:51 [ 4] [ 12] [000040000000] +17:14:51 [ 7] [ 10] [0320101357] +17:14:51 [ 11] [ 6] [270765] +17:14:51 [ 12] [ 6] [171357] +17:14:51 [ 13] [ 4] [0320] +17:14:51 [ 14] [ 4] [4912] +17:14:51 [ 15] [ 4] [0320] +17:14:51 [ 18] [ 4] [6011] +17:14:51 [ 19] [ 3] [418] +17:14:51 [ 22] [ 3] [021] +17:14:51 [ 25] [ 2] [01] +17:14:51 [ 28] [ 9] [D00002000] +17:14:51 [ 32] [ 6] [180893] +17:14:51 [ 35] [ 32] [6213544000040177=491212014017699] +17:14:51 [ 37] [ 12] [507910270765] +17:14:51 [ 41] [ 8] [0421BKPH] +17:14:51 [ 42] [ 15] [999999 ] +17:14:51 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:14:51 [ 49] [ 3] [418] +17:14:51 [ 52] [ 16] [5FCDEECCDF131B89] +17:14:51 ============================================================================ +17:14:51 + + +waiting on router queue for slot.... +17:14:51 Sending to : +17:14:51 ============================================================================ +17:14:51 ============================================================================ +17:14:51 Slot Id : <161> +17:14:51 Transaction Type : REQUEST +17:14:51 Received From : +17:14:51 ============================================================================ +17:14:51 FNo. Len. Field Value +17:14:51 ============================================================================ +17:14:51 [ 1] [ 4] [0200] +17:14:51 [ 2] [ 16] [6213544000040177] +17:14:51 [ 3] [ 6] [011000] +17:14:51 [ 4] [ 12] [000040000000] +17:14:51 [ 7] [ 10] [0320101357] +17:14:51 [ 11] [ 6] [270765] +17:14:51 [ 12] [ 6] [171357] +17:14:51 [ 13] [ 4] [0320] +17:14:51 [ 14] [ 4] [4912] +17:14:51 [ 15] [ 4] [0320] +17:14:51 [ 18] [ 4] [6011] +17:14:51 [ 19] [ 3] [418] +17:14:51 [ 22] [ 3] [021] +17:14:51 [ 25] [ 2] [01] +17:14:51 [ 28] [ 9] [D00002000] +17:14:51 [ 32] [ 6] [180893] +17:14:51 [ 35] [ 32] [6213544000040177=491212014017699] +17:14:51 [ 37] [ 12] [507910270765] +17:14:51 [ 41] [ 8] [0421BKPH] +17:14:51 [ 42] [ 15] [999999 ] +17:14:51 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:14:51 [ 49] [ 3] [418] +17:14:51 [ 52] [ 16] [F9BBB6AE26FF4B8F] +17:14:51 ============================================================================ +17:14:51 + + +waiting on router queue for slot.... +17:14:51 Sending to : <0> +17:14:51 ============================================================================ +17:14:52 ============================================================================ +17:14:52 Slot Id : <161> +17:14:52 Transaction Type : RESPONSE +17:14:52 Received From : +17:14:52 ============================================================================ +17:14:52 FNo. Len. Field Value +17:14:52 ============================================================================ +17:14:52 [ 1] [ 4] [0210] +17:14:52 [ 2] [ 16] [6213544000040177] +17:14:52 [ 3] [ 6] [011000] +17:14:52 [ 4] [ 12] [000040000000] +17:14:52 [ 7] [ 10] [0320101357] +17:14:52 [ 11] [ 6] [270765] +17:14:52 [ 12] [ 6] [171357] +17:14:52 [ 13] [ 4] [0320] +17:14:52 [ 15] [ 4] [0320] +17:14:52 [ 18] [ 4] [6011] +17:14:52 [ 19] [ 3] [418] +17:14:52 [ 32] [ 6] [180893] +17:14:52 [ 35] [ 32] [6213544000040177=491212014017699] +17:14:52 [ 37] [ 12] [507910270765] +17:14:52 [ 38] [ 6] [841800] +17:14:52 [ 39] [ 2] [00] +17:14:52 [ 41] [ 8] [0421BKPH] +17:14:52 [ 49] [ 3] [418] +17:14:52 [ 54] [ 40] [1001418C0000145049061002418C000014504906] +17:14:52 ============================================================================ +17:14:52 Sending to : +17:14:52 ============================================================================ +17:14:52 + + +waiting on router queue for slot.... +17:14:53 ============================================================================ +17:14:53 Slot Id : <161> +17:14:53 Transaction Type : RESPONSE +17:14:53 Received From : +17:14:53 ============================================================================ +17:14:53 FNo. Len. Field Value +17:14:53 ============================================================================ +17:14:53 [ 1] [ 4] [0210] +17:14:53 [ 2] [ 16] [6213544000040177] +17:14:53 [ 3] [ 6] [011000] +17:14:53 [ 4] [ 12] [000040000000] +17:14:53 [ 7] [ 10] [0320101357] +17:14:53 [ 11] [ 6] [270765] +17:14:53 [ 12] [ 6] [171357] +17:14:53 [ 13] [ 4] [0320] +17:14:53 [ 15] [ 4] [0320] +17:14:53 [ 18] [ 4] [6011] +17:14:53 [ 19] [ 3] [418] +17:14:53 [ 32] [ 6] [180893] +17:14:53 [ 35] [ 32] [6213544000040177=491212014017699] +17:14:53 [ 37] [ 12] [507910270765] +17:14:53 [ 38] [ 6] [841800] +17:14:53 [ 39] [ 2] [00] +17:14:53 [ 41] [ 8] [0421BKPH] +17:14:53 [ 49] [ 3] [418] +17:14:53 [ 54] [ 40] [1001418C0000145049061002418C000014504906] +17:14:53 ============================================================================ +17:14:53 Calculate Source COMM Id = 2 +17:14:53 ============================================================================ +17:14:53 + + +waiting on router queue for slot.... +17:14:55 ============================================================================ +17:14:55 Slot Id : <162> +17:14:55 Transaction Type : REQUEST +17:14:55 Received From : +17:14:55 ============================================================================ +17:14:55 FNo. Len. Field Value +17:14:55 ============================================================================ +17:14:55 [ 1] [ 4] [0800] +17:14:55 [ 7] [ 10] [0320102242] +17:14:55 [ 11] [ 6] [019524] +17:14:55 [ 37] [ 12] [57917019524] +17:14:55 [ 70] [ 3] [301] +17:14:55 ============================================================================ +17:14:55 + + +waiting on router queue for slot.... +17:14:55 Sending to : +17:14:55 ============================================================================ +17:14:55 ============================================================================ +17:14:55 Slot Id : <162> +17:14:55 Transaction Type : RESPONSE +17:14:55 Received From : +17:14:55 ============================================================================ +17:14:55 FNo. Len. Field Value +17:14:55 ============================================================================ +17:14:55 [ 1] [ 4] [0810] +17:14:55 [ 7] [ 10] [0320102242] +17:14:55 [ 11] [ 6] [019524] +17:14:55 [ 37] [ 12] [579170195240] +17:14:55 [ 39] [ 2] [00] +17:14:55 [ 70] [ 3] [810] +17:14:55 ============================================================================ +17:14:55 Calculate Source COMM Id = 1 +17:14:55 ============================================================================ +17:14:55 + + +waiting on router queue for slot.... +17:15:01 ============================================================================ +17:15:01 Slot Id : <132> +17:15:01 Transaction Type : REQUEST +17:15:01 Received From : +17:15:01 ============================================================================ +17:15:01 FNo. Len. Field Value +17:15:01 ============================================================================ +17:15:01 [ 1] [ 4] [0800] +17:15:01 [ 2] [ 5] [02531] +17:15:01 [ 3] [ 6] [579178] +17:15:01 [ 7] [ 10] [0320101501] +17:15:01 [ 11] [ 6] [807413] +17:15:01 [ 15] [ 10] [0320101501] +17:15:01 [ 37] [ 11] [57917807413] +17:15:01 [ 70] [ 3] [001] +17:15:01 ============================================================================ +17:15:01 + + +waiting on router queue for slot.... +17:15:01 ============================================================================ +17:15:01 Slot Id : <132> +17:15:01 Transaction Type : RESPONSE +17:15:01 Received From : +17:15:01 ============================================================================ +17:15:01 FNo. Len. Field Value +17:15:01 ============================================================================ +17:15:01 [ 1] [ 4] [0810] +17:15:01 [ 7] [ 10] [0320101501] +17:15:01 [ 11] [ 6] [807413] +17:15:01 [ 15] [ 4] [0320] +17:15:01 [ 37] [ 12] [57917807413] +17:15:01 [ 39] [ 2] [00] +17:15:01 [ 70] [ 3] [001] +17:15:01 ============================================================================ +17:15:01 Sending to : +17:15:01 ============================================================================ +17:15:01 + + +waiting on router queue for slot.... +17:15:01 ============================================================================ +17:15:01 Slot Id : <145> +17:15:01 Transaction Type : REQUEST +17:15:01 Received From : +17:15:01 ============================================================================ +17:15:01 FNo. Len. Field Value +17:15:01 ============================================================================ +17:15:01 [ 1] [ 4] [0200] +17:15:01 [ 2] [ 16] [6688990106397506] +17:15:01 [ 3] [ 6] [301000] +17:15:01 [ 4] [ 12] [000000000000] +17:15:01 [ 7] [ 10] [0320171456] +17:15:01 [ 11] [ 6] [812260] +17:15:01 [ 12] [ 6] [171456] +17:15:01 [ 13] [ 4] [0320] +17:15:01 [ 15] [ 4] [0320] +17:15:01 [ 18] [ 4] [6011] +17:15:01 [ 22] [ 3] [900] +17:15:01 [ 25] [ 2] [02] +17:15:01 [ 28] [ 9] [D00000000] +17:15:01 [ 32] [ 6] [621354] +17:15:01 [ 35] [ 37] [6688990106397506=43121231750620800000] +17:15:01 [ 37] [ 12] [507905170370] +17:15:01 [ 41] [ 8] [01012900] +17:15:01 [ 42] [ 15] [NATIVE ] +17:15:01 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +17:15:01 [ 49] [ 3] [418] +17:15:01 [ 52] [ 16] [9E5C15DFDA49AEC8] +17:15:01 ============================================================================ +17:15:01 + + +waiting on router queue for slot.... +17:15:01 Sending to : +17:15:01 ============================================================================ +17:15:01 Sending to : +17:15:01 ============================================================================ +17:15:02 ============================================================================ +17:15:02 Slot Id : <145> +17:15:02 Transaction Type : REQUEST +17:15:02 Received From : +17:15:02 ============================================================================ +17:15:02 FNo. Len. Field Value +17:15:02 ============================================================================ +17:15:02 [ 1] [ 4] [0200] +17:15:02 [ 2] [ 16] [6688990106397506] +17:15:02 [ 3] [ 6] [301000] +17:15:02 [ 4] [ 12] [000000000000] +17:15:02 [ 7] [ 10] [0320171456] +17:15:02 [ 11] [ 6] [812260] +17:15:02 [ 12] [ 6] [171456] +17:15:02 [ 13] [ 4] [0320] +17:15:02 [ 15] [ 4] [0320] +17:15:02 [ 18] [ 4] [6011] +17:15:02 [ 22] [ 3] [900] +17:15:02 [ 25] [ 2] [02] +17:15:02 [ 28] [ 9] [D00000000] +17:15:02 [ 32] [ 6] [621354] +17:15:02 [ 35] [ 37] [6688990106397506=43121231750620800000] +17:15:02 [ 37] [ 12] [507905170370] +17:15:02 [ 41] [ 8] [01012900] +17:15:02 [ 42] [ 15] [NATIVE ] +17:15:02 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +17:15:02 [ 49] [ 3] [418] +17:15:02 [ 52] [ 16] [9E5C15DFDA49AEC8] +17:15:02 ============================================================================ +17:15:02 + + +waiting on router queue for slot.... +17:15:02 Sending to : +17:15:02 ============================================================================ +17:15:02 ============================================================================ +17:15:02 Slot Id : <145> +17:15:02 Transaction Type : REQUEST +17:15:02 Received From : +17:15:02 ============================================================================ +17:15:02 FNo. Len. Field Value +17:15:02 ============================================================================ +17:15:02 [ 1] [ 4] [0200] +17:15:02 [ 2] [ 16] [6688990106397506] +17:15:02 [ 3] [ 6] [301000] +17:15:02 [ 4] [ 12] [000000000000] +17:15:02 [ 7] [ 10] [0320171456] +17:15:02 [ 11] [ 6] [812260] +17:15:02 [ 12] [ 6] [171456] +17:15:02 [ 13] [ 4] [0320] +17:15:02 [ 15] [ 4] [0320] +17:15:02 [ 18] [ 4] [6011] +17:15:02 [ 22] [ 3] [900] +17:15:02 [ 25] [ 2] [02] +17:15:02 [ 28] [ 9] [D00000000] +17:15:02 [ 32] [ 6] [621354] +17:15:02 [ 35] [ 37] [6688990106397506=43121231750620800000] +17:15:02 [ 37] [ 12] [507905170370] +17:15:02 [ 41] [ 8] [01012900] +17:15:02 [ 42] [ 15] [NATIVE ] +17:15:02 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +17:15:02 [ 49] [ 3] [418] +17:15:02 [ 52] [ 16] [F1CE3F49C588D922] +17:15:02 ============================================================================ +17:15:02 + + +waiting on router queue for slot.... +17:15:02 Sending to : <4> +17:15:02 ============================================================================ +17:15:02 ============================================================================ +17:15:02 Slot Id : <154> +17:15:02 Transaction Type : REQUEST +17:15:02 Received From : +17:15:02 ============================================================================ +17:15:02 FNo. Len. Field Value +17:15:02 ============================================================================ +17:15:02 [ 1] [ 4] [0200] +17:15:02 [ 2] [ 16] [6213544001232419] +17:15:02 [ 3] [ 6] [010000] +17:15:02 [ 4] [ 12] [000010000000] +17:15:02 [ 7] [ 10] [0320101409] +17:15:02 [ 11] [ 6] [270767] +17:15:02 [ 12] [ 6] [171409] +17:15:02 [ 13] [ 4] [0320] +17:15:02 [ 14] [ 4] [4912] +17:15:02 [ 15] [ 4] [0320] +17:15:02 [ 18] [ 4] [6011] +17:15:02 [ 19] [ 3] [418] +17:15:02 [ 22] [ 3] [021] +17:15:02 [ 25] [ 2] [01] +17:15:02 [ 28] [ 9] [D00002000] +17:15:02 [ 32] [ 6] [180893] +17:15:02 [ 35] [ 32] [6213544001232419=491212013241076] +17:15:02 [ 37] [ 12] [507910270767] +17:15:02 [ 41] [ 8] [0401XSBR] +17:15:02 [ 42] [ 15] [999999 ] +17:15:02 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +17:15:02 [ 49] [ 3] [418] +17:15:02 [ 52] [ 16] [5689CE9A7D385523] +17:15:02 ============================================================================ +17:15:02 + + +waiting on router queue for slot.... +17:15:02 Sending to : +17:15:02 ============================================================================ +17:15:02 Sending to : +17:15:02 ============================================================================ +17:15:03 ============================================================================ +17:15:03 Slot Id : <145> +17:15:03 Transaction Type : RESPONSE +17:15:03 Received From : +17:15:03 ============================================================================ +17:15:03 FNo. Len. Field Value +17:15:03 ============================================================================ +17:15:03 [ 1] [ 4] [0210] +17:15:03 [ 2] [ 16] [6688990106397506] +17:15:03 [ 3] [ 6] [301000] +17:15:03 [ 4] [ 12] [000000000000] +17:15:03 [ 11] [ 6] [812260] +17:15:03 [ 12] [ 6] [171456] +17:15:03 [ 15] [ 4] [0320] +17:15:03 [ 18] [ 4] [6011] +17:15:03 [ 32] [ 6] [621354] +17:15:03 [ 35] [ 37] [6688990106397506=43121231750620800000] +17:15:03 [ 37] [ 12] [507905170370] +17:15:03 [ 38] [ 6] [962638] +17:15:03 [ 39] [ 2] [00] +17:15:03 [ 41] [ 8] [01012900] +17:15:03 [ 49] [ 3] [418] +17:15:03 [ 54] [ 20] [1002418C000093003082] +17:15:03 ============================================================================ +17:15:03 Sending to : +17:15:03 ============================================================================ +17:15:03 + + +waiting on router queue for slot.... +17:15:03 ============================================================================ +17:15:03 Slot Id : <154> +17:15:03 Transaction Type : REQUEST +17:15:03 Received From : +17:15:03 ============================================================================ +17:15:03 FNo. Len. Field Value +17:15:03 ============================================================================ +17:15:03 [ 1] [ 4] [0200] +17:15:03 [ 2] [ 16] [6213544001232419] +17:15:03 [ 3] [ 6] [010000] +17:15:03 [ 4] [ 12] [000010000000] +17:15:03 [ 7] [ 10] [0320101409] +17:15:03 [ 11] [ 6] [270767] +17:15:03 [ 12] [ 6] [171409] +17:15:03 [ 13] [ 4] [0320] +17:15:03 [ 14] [ 4] [4912] +17:15:03 [ 15] [ 4] [0320] +17:15:03 [ 18] [ 4] [6011] +17:15:03 [ 19] [ 3] [418] +17:15:03 [ 22] [ 3] [021] +17:15:03 [ 25] [ 2] [01] +17:15:03 [ 28] [ 9] [D00002000] +17:15:03 [ 32] [ 6] [180893] +17:15:03 [ 35] [ 32] [6213544001232419=491212013241076] +17:15:03 [ 37] [ 12] [507910270767] +17:15:03 [ 41] [ 8] [0401XSBR] +17:15:03 [ 42] [ 15] [999999 ] +17:15:03 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +17:15:03 [ 49] [ 3] [418] +17:15:03 [ 52] [ 16] [5689CE9A7D385523] +17:15:03 ============================================================================ +17:15:03 + + +waiting on router queue for slot.... +17:15:03 Sending to : +17:15:03 ============================================================================ +17:15:03 ============================================================================ +17:15:03 Slot Id : <154> +17:15:03 Transaction Type : REQUEST +17:15:03 Received From : +17:15:03 ============================================================================ +17:15:03 FNo. Len. Field Value +17:15:03 ============================================================================ +17:15:03 [ 1] [ 4] [0200] +17:15:03 [ 2] [ 16] [6213544001232419] +17:15:03 [ 3] [ 6] [010000] +17:15:03 [ 4] [ 12] [000010000000] +17:15:03 [ 7] [ 10] [0320101409] +17:15:03 [ 11] [ 6] [270767] +17:15:03 [ 12] [ 6] [171409] +17:15:03 [ 13] [ 4] [0320] +17:15:03 [ 14] [ 4] [4912] +17:15:03 [ 15] [ 4] [0320] +17:15:03 [ 18] [ 4] [6011] +17:15:03 [ 19] [ 3] [418] +17:15:03 [ 22] [ 3] [021] +17:15:03 [ 25] [ 2] [01] +17:15:03 [ 28] [ 9] [D00002000] +17:15:03 [ 32] [ 6] [180893] +17:15:03 [ 35] [ 32] [6213544001232419=491212013241076] +17:15:03 [ 37] [ 12] [507910270767] +17:15:03 [ 41] [ 8] [0401XSBR] +17:15:03 [ 42] [ 15] [999999 ] +17:15:03 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +17:15:03 [ 49] [ 3] [418] +17:15:03 [ 52] [ 16] [49675D741FD64C13] +17:15:03 ============================================================================ +17:15:03 + + +waiting on router queue for slot.... +17:15:03 Sending to : <0> +17:15:03 ============================================================================ +17:15:03 ============================================================================ +17:15:03 Slot Id : <154> +17:15:03 Transaction Type : RESPONSE +17:15:03 Received From : +17:15:03 ============================================================================ +17:15:03 FNo. Len. Field Value +17:15:03 ============================================================================ +17:15:03 [ 1] [ 4] [0210] +17:15:03 [ 2] [ 16] [6213544001232419] +17:15:03 [ 3] [ 6] [010000] +17:15:03 [ 4] [ 12] [000010000000] +17:15:03 [ 7] [ 10] [0320101409] +17:15:03 [ 11] [ 6] [270767] +17:15:03 [ 12] [ 6] [171409] +17:15:03 [ 13] [ 4] [0320] +17:15:03 [ 15] [ 4] [0320] +17:15:03 [ 18] [ 4] [6011] +17:15:03 [ 19] [ 3] [418] +17:15:03 [ 32] [ 6] [180893] +17:15:03 [ 35] [ 32] [6213544001232419=491212013241076] +17:15:03 [ 37] [ 12] [507910270767] +17:15:03 [ 38] [ 6] [374200] +17:15:03 [ 39] [ 2] [00] +17:15:03 [ 41] [ 8] [0401XSBR] +17:15:03 [ 49] [ 3] [418] +17:15:03 [ 54] [ 40] [0001418C0000563082820002418C000056308282] +17:15:03 ============================================================================ +17:15:03 Sending to : +17:15:03 ============================================================================ +17:15:03 + + +waiting on router queue for slot.... +17:15:04 ============================================================================ +17:15:04 Slot Id : <145> +17:15:04 Transaction Type : RESPONSE +17:15:04 Received From : +17:15:04 ============================================================================ +17:15:04 FNo. Len. Field Value +17:15:04 ============================================================================ +17:15:04 [ 1] [ 4] [0210] +17:15:04 [ 2] [ 16] [6688990106397506] +17:15:04 [ 3] [ 6] [301000] +17:15:04 [ 4] [ 12] [000000000000] +17:15:04 [ 11] [ 6] [812260] +17:15:04 [ 12] [ 6] [171456] +17:15:04 [ 15] [ 4] [0320] +17:15:04 [ 18] [ 4] [6011] +17:15:04 [ 32] [ 6] [621354] +17:15:04 [ 35] [ 37] [6688990106397506=43121231750620800000] +17:15:04 [ 37] [ 12] [507905170370] +17:15:04 [ 38] [ 6] [962638] +17:15:04 [ 39] [ 2] [00] +17:15:04 [ 41] [ 8] [01012900] +17:15:04 [ 49] [ 3] [418] +17:15:04 [ 54] [ 20] [1002418C000093003082] +17:15:04 ============================================================================ +17:15:04 Calculate Source COMM Id = 0 +17:15:04 ============================================================================ +17:15:04 + + +waiting on router queue for slot.... +17:15:04 ============================================================================ +17:15:04 Slot Id : <143> +17:15:04 Transaction Type : REQUEST +17:15:04 Received From : +17:15:04 ============================================================================ +17:15:04 FNo. Len. Field Value +17:15:04 ============================================================================ +17:15:04 [ 1] [ 4] [0800] +17:15:04 [ 7] [ 10] [0320101411] +17:15:04 [ 11] [ 6] [157413] +17:15:04 [ 70] [ 3] [301] +17:15:04 ============================================================================ +17:15:04 + + +waiting on router queue for slot.... +17:15:04 Sending to : +17:15:04 ============================================================================ +17:15:04 ============================================================================ +17:15:04 Slot Id : <143> +17:15:04 Transaction Type : RESPONSE +17:15:04 Received From : +17:15:04 ============================================================================ +17:15:04 FNo. Len. Field Value +17:15:04 ============================================================================ +17:15:04 [ 1] [ 4] [0810] +17:15:04 [ 7] [ 10] [0320101411] +17:15:04 [ 11] [ 6] [157413] +17:15:04 [ 39] [ 2] [00] +17:15:04 [ 70] [ 3] [301] +17:15:04 ============================================================================ +17:15:04 Calculate Source COMM Id = 2 +17:15:04 ============================================================================ +17:15:04 + + +waiting on router queue for slot.... +17:15:06 ============================================================================ +17:15:06 Slot Id : <154> +17:15:06 Transaction Type : RESPONSE +17:15:06 Received From : +17:15:06 ============================================================================ +17:15:06 FNo. Len. Field Value +17:15:06 ============================================================================ +17:15:06 [ 1] [ 4] [0210] +17:15:06 [ 2] [ 16] [6213544001232419] +17:15:06 [ 3] [ 6] [010000] +17:15:06 [ 4] [ 12] [000010000000] +17:15:06 [ 7] [ 10] [0320101409] +17:15:06 [ 11] [ 6] [270767] +17:15:06 [ 12] [ 6] [171409] +17:15:06 [ 13] [ 4] [0320] +17:15:06 [ 15] [ 4] [0320] +17:15:06 [ 18] [ 4] [6011] +17:15:06 [ 19] [ 3] [418] +17:15:06 [ 32] [ 6] [180893] +17:15:06 [ 35] [ 32] [6213544001232419=491212013241076] +17:15:06 [ 37] [ 12] [507910270767] +17:15:06 [ 38] [ 6] [374200] +17:15:06 [ 39] [ 2] [00] +17:15:06 [ 41] [ 8] [0401XSBR] +17:15:06 [ 49] [ 3] [418] +17:15:06 [ 54] [ 40] [0001418C0000563082820002418C000056308282] +17:15:06 ============================================================================ +17:15:06 Calculate Source COMM Id = 2 +17:15:06 ============================================================================ +17:15:06 + + +waiting on router queue for slot.... +17:15:06 ============================================================================ +17:15:06 Slot Id : <166> +17:15:06 Transaction Type : REQUEST +17:15:06 Received From : +17:15:06 ============================================================================ +17:15:06 FNo. Len. Field Value +17:15:06 ============================================================================ +17:15:06 [ 1] [ 4] [0200] +17:15:06 [ 2] [ 16] [6688990040134965] +17:15:06 [ 3] [ 6] [011000] +17:15:06 [ 4] [ 12] [000020000000] +17:15:06 [ 7] [ 10] [0320171501] +17:15:06 [ 11] [ 6] [812285] +17:15:06 [ 12] [ 6] [171501] +17:15:06 [ 13] [ 4] [0320] +17:15:06 [ 15] [ 4] [0320] +17:15:06 [ 18] [ 4] [6011] +17:15:06 [ 22] [ 3] [900] +17:15:06 [ 25] [ 2] [02] +17:15:06 [ 28] [ 9] [D00002000] +17:15:06 [ 32] [ 6] [621354] +17:15:06 [ 35] [ 37] [6688990040134965=98041261801050300000] +17:15:06 [ 37] [ 12] [507904755528] +17:15:06 [ 41] [ 8] [07001100] +17:15:06 [ 42] [ 15] [NATIVE ] +17:15:06 [ 43] [ 40] [Industry Market Namtar LAO] +17:15:06 [ 49] [ 3] [418] +17:15:06 [ 52] [ 16] [47EAF41199344248] +17:15:06 ============================================================================ +17:15:06 + + +waiting on router queue for slot.... +17:15:06 Sending to : +17:15:06 ============================================================================ +17:15:06 Sending to : +17:15:06 ============================================================================ +17:15:06 ============================================================================ +17:15:06 Slot Id : <166> +17:15:06 Transaction Type : REQUEST +17:15:06 Received From : +17:15:06 ============================================================================ +17:15:06 FNo. Len. Field Value +17:15:06 ============================================================================ +17:15:06 [ 1] [ 4] [0200] +17:15:06 [ 2] [ 16] [6688990040134965] +17:15:06 [ 3] [ 6] [011000] +17:15:06 [ 4] [ 12] [000020000000] +17:15:06 [ 7] [ 10] [0320171501] +17:15:06 [ 11] [ 6] [812285] +17:15:06 [ 12] [ 6] [171501] +17:15:06 [ 13] [ 4] [0320] +17:15:06 [ 15] [ 4] [0320] +17:15:06 [ 18] [ 4] [6011] +17:15:06 [ 22] [ 3] [900] +17:15:06 [ 25] [ 2] [02] +17:15:06 [ 28] [ 9] [D00002000] +17:15:06 [ 32] [ 6] [621354] +17:15:06 [ 35] [ 37] [6688990040134965=98041261801050300000] +17:15:06 [ 37] [ 12] [507904755528] +17:15:06 [ 41] [ 8] [07001100] +17:15:06 [ 42] [ 15] [NATIVE ] +17:15:06 [ 43] [ 40] [Industry Market Namtar LAO] +17:15:06 [ 49] [ 3] [418] +17:15:06 [ 52] [ 16] [47EAF41199344248] +17:15:06 ============================================================================ +17:15:06 + + +waiting on router queue for slot.... +17:15:06 Sending to : +17:15:06 ============================================================================ +17:15:06 ============================================================================ +17:15:06 Slot Id : <166> +17:15:06 Transaction Type : REQUEST +17:15:06 Received From : +17:15:06 ============================================================================ +17:15:06 FNo. Len. Field Value +17:15:06 ============================================================================ +17:15:06 [ 1] [ 4] [0200] +17:15:06 [ 2] [ 16] [6688990040134965] +17:15:06 [ 3] [ 6] [011000] +17:15:06 [ 4] [ 12] [000020000000] +17:15:06 [ 7] [ 10] [0320171501] +17:15:06 [ 11] [ 6] [812285] +17:15:06 [ 12] [ 6] [171501] +17:15:06 [ 13] [ 4] [0320] +17:15:06 [ 15] [ 4] [0320] +17:15:06 [ 18] [ 4] [6011] +17:15:06 [ 22] [ 3] [900] +17:15:06 [ 25] [ 2] [02] +17:15:06 [ 28] [ 9] [D00002000] +17:15:06 [ 32] [ 6] [621354] +17:15:06 [ 35] [ 37] [6688990040134965=98041261801050300000] +17:15:06 [ 37] [ 12] [507904755528] +17:15:06 [ 41] [ 8] [07001100] +17:15:06 [ 42] [ 15] [NATIVE ] +17:15:06 [ 43] [ 40] [Industry Market Namtar LAO] +17:15:06 [ 49] [ 3] [418] +17:15:06 [ 52] [ 16] [B9A433FFABAE801B] +17:15:06 ============================================================================ +17:15:06 + + +waiting on router queue for slot.... +17:15:06 Sending to : <4> +17:15:06 ============================================================================ +17:15:08 ============================================================================ +17:15:08 Slot Id : <166> +17:15:08 Transaction Type : RESPONSE +17:15:08 Received From : +17:15:08 ============================================================================ +17:15:08 FNo. Len. Field Value +17:15:08 ============================================================================ +17:15:08 [ 1] [ 4] [0210] +17:15:08 [ 2] [ 16] [6688990040134965] +17:15:08 [ 3] [ 6] [011000] +17:15:08 [ 4] [ 12] [000020000000] +17:15:08 [ 11] [ 6] [812285] +17:15:08 [ 12] [ 6] [171501] +17:15:08 [ 15] [ 4] [0320] +17:15:08 [ 18] [ 4] [6011] +17:15:08 [ 32] [ 6] [621354] +17:15:08 [ 35] [ 37] [6688990040134965=98041261801050300000] +17:15:08 [ 37] [ 12] [507904755528] +17:15:08 [ 38] [ 6] [258080] +17:15:08 [ 39] [ 2] [00] +17:15:08 [ 41] [ 8] [07001100] +17:15:08 [ 49] [ 3] [418] +17:15:08 [ 54] [ 20] [1002418C000091595600] +17:15:08 ============================================================================ +17:15:08 Sending to : +17:15:08 ============================================================================ +17:15:08 + + +waiting on router queue for slot.... +17:15:09 ============================================================================ +17:15:09 Slot Id : <120> +17:15:09 Transaction Type : REQUEST +17:15:09 Received From : +17:15:09 ============================================================================ +17:15:09 FNo. Len. Field Value +17:15:09 ============================================================================ +17:15:09 [ 1] [ 4] [0200] +17:15:09 [ 2] [ 16] [6688990103637607] +17:15:09 [ 3] [ 6] [300000] +17:15:09 [ 4] [ 12] [000000000000] +17:15:09 [ 7] [ 10] [0320171504] +17:15:09 [ 11] [ 6] [812315] +17:15:09 [ 12] [ 6] [171504] +17:15:09 [ 13] [ 4] [0320] +17:15:09 [ 15] [ 4] [0320] +17:15:09 [ 18] [ 4] [6011] +17:15:09 [ 22] [ 3] [900] +17:15:09 [ 25] [ 2] [02] +17:15:09 [ 28] [ 9] [D00000000] +17:15:09 [ 32] [ 6] [621354] +17:15:09 [ 35] [ 37] [6688990103637607=43011231760728200000] +17:15:09 [ 37] [ 12] [507903499662] +17:15:09 [ 41] [ 8] [06002200] +17:15:09 [ 42] [ 15] [NATIVE ] +17:15:09 [ 43] [ 40] [Beng Market Beng LAO] +17:15:09 [ 49] [ 3] [418] +17:15:09 [ 52] [ 16] [8F15CA6B39729CF3] +17:15:09 ============================================================================ +17:15:09 + + +waiting on router queue for slot.... +17:15:09 Sending to : +17:15:09 ============================================================================ +17:15:09 Sending to : +17:15:09 ============================================================================ +17:15:09 ============================================================================ +17:15:09 Slot Id : <120> +17:15:09 Transaction Type : REQUEST +17:15:09 Received From : +17:15:09 ============================================================================ +17:15:09 FNo. Len. Field Value +17:15:09 ============================================================================ +17:15:09 [ 1] [ 4] [0200] +17:15:09 [ 2] [ 16] [6688990103637607] +17:15:09 [ 3] [ 6] [300000] +17:15:09 [ 4] [ 12] [000000000000] +17:15:09 [ 7] [ 10] [0320171504] +17:15:09 [ 11] [ 6] [812315] +17:15:09 [ 12] [ 6] [171504] +17:15:09 [ 13] [ 4] [0320] +17:15:09 [ 15] [ 4] [0320] +17:15:09 [ 18] [ 4] [6011] +17:15:09 [ 22] [ 3] [900] +17:15:09 [ 25] [ 2] [02] +17:15:09 [ 28] [ 9] [D00000000] +17:15:09 [ 32] [ 6] [621354] +17:15:09 [ 35] [ 37] [6688990103637607=43011231760728200000] +17:15:09 [ 37] [ 12] [507903499662] +17:15:09 [ 41] [ 8] [06002200] +17:15:09 [ 42] [ 15] [NATIVE ] +17:15:09 [ 43] [ 40] [Beng Market Beng LAO] +17:15:09 [ 49] [ 3] [418] +17:15:09 [ 52] [ 16] [8F15CA6B39729CF3] +17:15:09 ============================================================================ +17:15:09 + + +waiting on router queue for slot.... +17:15:09 Sending to : +17:15:09 ============================================================================ +17:15:09 ============================================================================ +17:15:09 Slot Id : <120> +17:15:09 Transaction Type : REQUEST +17:15:09 Received From : +17:15:09 ============================================================================ +17:15:09 FNo. Len. Field Value +17:15:09 ============================================================================ +17:15:09 [ 1] [ 4] [0200] +17:15:09 [ 2] [ 16] [6688990103637607] +17:15:09 [ 3] [ 6] [300000] +17:15:09 [ 4] [ 12] [000000000000] +17:15:09 [ 7] [ 10] [0320171504] +17:15:09 [ 11] [ 6] [812315] +17:15:09 [ 12] [ 6] [171504] +17:15:09 [ 13] [ 4] [0320] +17:15:09 [ 15] [ 4] [0320] +17:15:09 [ 18] [ 4] [6011] +17:15:09 [ 22] [ 3] [900] +17:15:09 [ 25] [ 2] [02] +17:15:09 [ 28] [ 9] [D00000000] +17:15:09 [ 32] [ 6] [621354] +17:15:09 [ 35] [ 37] [6688990103637607=43011231760728200000] +17:15:09 [ 37] [ 12] [507903499662] +17:15:09 [ 41] [ 8] [06002200] +17:15:09 [ 42] [ 15] [NATIVE ] +17:15:09 [ 43] [ 40] [Beng Market Beng LAO] +17:15:09 [ 49] [ 3] [418] +17:15:09 [ 52] [ 16] [23F7F8A1CEC3D465] +17:15:09 ============================================================================ +17:15:09 + + +waiting on router queue for slot.... +17:15:09 Sending to : <4> +17:15:09 ============================================================================ +17:15:10 ============================================================================ +17:15:10 Slot Id : <166> +17:15:10 Transaction Type : RESPONSE +17:15:10 Received From : +17:15:10 ============================================================================ +17:15:10 FNo. Len. Field Value +17:15:10 ============================================================================ +17:15:10 [ 1] [ 4] [0210] +17:15:10 [ 2] [ 16] [6688990040134965] +17:15:10 [ 3] [ 6] [011000] +17:15:10 [ 4] [ 12] [000020000000] +17:15:10 [ 11] [ 6] [812285] +17:15:10 [ 12] [ 6] [171501] +17:15:10 [ 15] [ 4] [0320] +17:15:10 [ 18] [ 4] [6011] +17:15:10 [ 32] [ 6] [621354] +17:15:10 [ 35] [ 37] [6688990040134965=98041261801050300000] +17:15:10 [ 37] [ 12] [507904755528] +17:15:10 [ 38] [ 6] [258080] +17:15:10 [ 39] [ 2] [00] +17:15:10 [ 41] [ 8] [07001100] +17:15:10 [ 49] [ 3] [418] +17:15:10 [ 54] [ 20] [1002418C000091595600] +17:15:10 ============================================================================ +17:15:10 Calculate Source COMM Id = 0 +17:15:10 ============================================================================ +17:15:10 + + +waiting on router queue for slot.... +17:15:10 ============================================================================ +17:15:10 Slot Id : <120> +17:15:10 Transaction Type : RESPONSE +17:15:10 Received From : +17:15:10 ============================================================================ +17:15:10 FNo. Len. Field Value +17:15:10 ============================================================================ +17:15:10 [ 1] [ 4] [0210] +17:15:10 [ 2] [ 16] [6688990103637607] +17:15:10 [ 3] [ 6] [300000] +17:15:10 [ 4] [ 12] [000000000000] +17:15:10 [ 11] [ 6] [812315] +17:15:10 [ 12] [ 6] [171504] +17:15:10 [ 15] [ 4] [0320] +17:15:10 [ 18] [ 4] [6011] +17:15:10 [ 32] [ 6] [621354] +17:15:10 [ 35] [ 37] [6688990103637607=43011231760728200000] +17:15:10 [ 37] [ 12] [507903499662] +17:15:10 [ 38] [ 6] [619326] +17:15:10 [ 39] [ 2] [00] +17:15:10 [ 41] [ 8] [06002200] +17:15:10 [ 49] [ 3] [418] +17:15:10 [ 54] [ 20] [0002418C000242094623] +17:15:10 ============================================================================ +17:15:10 Sending to : +17:15:10 ============================================================================ +17:15:10 + + +waiting on router queue for slot.... +17:15:11 ============================================================================ +17:15:11 Slot Id : <120> +17:15:11 Transaction Type : RESPONSE +17:15:11 Received From : +17:15:11 ============================================================================ +17:15:11 FNo. Len. Field Value +17:15:11 ============================================================================ +17:15:11 [ 1] [ 4] [0210] +17:15:11 [ 2] [ 16] [6688990103637607] +17:15:11 [ 3] [ 6] [300000] +17:15:11 [ 4] [ 12] [000000000000] +17:15:11 [ 11] [ 6] [812315] +17:15:11 [ 12] [ 6] [171504] +17:15:11 [ 15] [ 4] [0320] +17:15:11 [ 18] [ 4] [6011] +17:15:11 [ 32] [ 6] [621354] +17:15:11 [ 35] [ 37] [6688990103637607=43011231760728200000] +17:15:11 [ 37] [ 12] [507903499662] +17:15:11 [ 38] [ 6] [619326] +17:15:11 [ 39] [ 2] [00] +17:15:11 [ 41] [ 8] [06002200] +17:15:11 [ 49] [ 3] [418] +17:15:11 [ 54] [ 20] [0002418C000242094623] +17:15:11 ============================================================================ +17:15:11 Calculate Source COMM Id = 0 +17:15:11 ============================================================================ +17:15:11 + + +waiting on router queue for slot.... +17:15:13 ============================================================================ +17:15:13 Slot Id : <153> +17:15:13 Transaction Type : REQUEST +17:15:13 Received From : +17:15:13 ============================================================================ +17:15:13 FNo. Len. Field Value +17:15:13 ============================================================================ +17:15:13 [ 1] [ 4] [0200] +17:15:13 [ 2] [ 16] [6213544001571899] +17:15:13 [ 3] [ 6] [010000] +17:15:13 [ 4] [ 12] [000050000000] +17:15:13 [ 7] [ 10] [0320171303] +17:15:13 [ 11] [ 6] [953152] +17:15:13 [ 12] [ 6] [171303] +17:15:13 [ 13] [ 4] [0320] +17:15:13 [ 15] [ 4] [0320] +17:15:13 [ 18] [ 4] [6011] +17:15:13 [ 19] [ 3] [418] +17:15:13 [ 22] [ 3] [021] +17:15:13 [ 25] [ 2] [01] +17:15:13 [ 28] [ 9] [D00002000] +17:15:13 [ 32] [ 6] [668899] +17:15:13 [ 35] [ 32] [6213544001571899=491212017189464] +17:15:13 [ 37] [ 12] [507902025671] +17:15:13 [ 41] [ 8] [03414002] +17:15:13 [ 42] [ 15] [APT ] +17:15:13 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:15:13 [ 49] [ 3] [418] +17:15:13 [ 52] [ 16] [5B04B05361CEDBF0] +17:15:13 ============================================================================ +17:15:13 + + +waiting on router queue for slot.... +17:15:13 Sending to : +17:15:13 ============================================================================ +17:15:13 Sending to : +17:15:13 ============================================================================ +17:15:13 ============================================================================ +17:15:13 Slot Id : <150> +17:15:13 Transaction Type : REQUEST +17:15:13 Received From : +17:15:13 ============================================================================ +17:15:13 FNo. Len. Field Value +17:15:13 ============================================================================ +17:15:13 [ 0] [ 4] [0420] +17:15:13 [ 1] [ 4] [0420] +17:15:13 [ 2] [ 16] [2206990000088468] +17:15:13 [ 3] [ 6] [011000] +17:15:13 [ 4] [ 12] [000050000000] +17:15:13 [ 6] [ 12] [000050000000] +17:15:13 [ 7] [ 10] [0320171320] +17:15:13 [ 11] [ 6] [811836] +17:15:13 [ 12] [ 6] [171320] +17:15:13 [ 13] [ 4] [0320] +17:15:13 [ 15] [ 4] [0320] +17:15:13 [ 18] [ 4] [6011] +17:15:13 [ 22] [ 3] [900] +17:15:13 [ 25] [ 2] [02] +17:15:13 [ 28] [ 9] [D00002000] +17:15:13 [ 32] [ 6] [621354] +17:15:13 [ 35] [ 32] [2206990000088468=180612811519306] +17:15:13 [ 37] [ 12] [507903837788] +17:15:13 [ 39] [ 2] [00] +17:15:13 [ 41] [ 8] [01009900] +17:15:13 [ 42] [ 15] [NATIVE ] +17:15:13 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +17:15:13 [ 49] [ 3] [418] +17:15:13 [ 52] [ 16] [664B291F2450C668] +17:15:13 ============================================================================ +17:15:13 + + +waiting on router queue for slot.... +17:15:13 ============================================================================ +17:15:13 Slot Id : <153> +17:15:13 Transaction Type : REQUEST +17:15:13 Received From : +17:15:13 ============================================================================ +17:15:13 FNo. Len. Field Value +17:15:13 ============================================================================ +17:15:13 [ 1] [ 4] [0200] +17:15:13 [ 2] [ 16] [6213544001571899] +17:15:13 [ 3] [ 6] [010000] +17:15:13 [ 4] [ 12] [000050000000] +17:15:13 [ 7] [ 10] [0320171303] +17:15:13 [ 11] [ 6] [953152] +17:15:13 [ 12] [ 6] [171303] +17:15:13 [ 13] [ 4] [0320] +17:15:13 [ 15] [ 4] [0320] +17:15:13 [ 18] [ 4] [6011] +17:15:13 [ 19] [ 3] [418] +17:15:13 [ 22] [ 3] [021] +17:15:13 [ 25] [ 2] [01] +17:15:13 [ 28] [ 9] [D00002000] +17:15:13 [ 32] [ 6] [668899] +17:15:13 [ 35] [ 32] [6213544001571899=491212017189464] +17:15:13 [ 37] [ 12] [507902025671] +17:15:13 [ 41] [ 8] [03414002] +17:15:13 [ 42] [ 15] [APT ] +17:15:13 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:15:13 [ 49] [ 3] [418] +17:15:13 [ 52] [ 16] [5B04B05361CEDBF0] +17:15:13 ============================================================================ +17:15:13 + + +waiting on router queue for slot.... +17:15:13 Sending to : +17:15:13 ============================================================================ +17:15:13 ============================================================================ +17:15:13 Slot Id : <153> +17:15:13 Transaction Type : REQUEST +17:15:13 Received From : +17:15:13 ============================================================================ +17:15:13 FNo. Len. Field Value +17:15:13 ============================================================================ +17:15:13 [ 1] [ 4] [0200] +17:15:13 [ 2] [ 16] [6213544001571899] +17:15:13 [ 3] [ 6] [010000] +17:15:13 [ 4] [ 12] [000050000000] +17:15:13 [ 7] [ 10] [0320171303] +17:15:13 [ 11] [ 6] [953152] +17:15:13 [ 12] [ 6] [171303] +17:15:13 [ 13] [ 4] [0320] +17:15:13 [ 15] [ 4] [0320] +17:15:13 [ 18] [ 4] [6011] +17:15:13 [ 19] [ 3] [418] +17:15:13 [ 22] [ 3] [021] +17:15:13 [ 25] [ 2] [01] +17:15:13 [ 28] [ 9] [D00002000] +17:15:13 [ 32] [ 6] [668899] +17:15:13 [ 35] [ 32] [6213544001571899=491212017189464] +17:15:13 [ 37] [ 12] [507902025671] +17:15:13 [ 41] [ 8] [03414002] +17:15:13 [ 42] [ 15] [APT ] +17:15:13 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:15:13 [ 49] [ 3] [418] +17:15:13 [ 52] [ 16] [DB651D875E34D326] +17:15:13 ============================================================================ +17:15:13 + + +waiting on router queue for slot.... +17:15:13 Sending to : <0> +17:15:13 ============================================================================ +17:15:13 ============================================================================ +17:15:13 Slot Id : <150> +17:15:13 Transaction Type : RESPONSE +17:15:13 Received From : +17:15:13 ============================================================================ +17:15:13 FNo. Len. Field Value +17:15:13 ============================================================================ +17:15:13 [ 1] [ 4] [0430] +17:15:13 [ 2] [ 16] [2206990000088468] +17:15:13 [ 3] [ 6] [011000] +17:15:13 [ 4] [ 12] [000050000000] +17:15:13 [ 7] [ 10] [0320171320] +17:15:13 [ 11] [ 6] [811836] +17:15:13 [ 32] [ 6] [621354] +17:15:13 [ 35] [ 32] [2206990000088468=180612811519306] +17:15:13 [ 37] [ 12] [507903837788] +17:15:13 [ 39] [ 2] [00] +17:15:13 [ 41] [ 8] [01009900] +17:15:13 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +17:15:13 [ 49] [ 3] [418] +17:15:13 [ 90] [ 42] [020081183603201713200000062135400000000000] +17:15:13 ============================================================================ +17:15:13 Successfully send the slot [150] To REVERSAL Process +17:15:13 + + +waiting on router queue for slot.... +17:15:14 ============================================================================ +17:15:14 Slot Id : <153> +17:15:14 Transaction Type : RESPONSE +17:15:14 Received From : +17:15:14 ============================================================================ +17:15:14 FNo. Len. Field Value +17:15:14 ============================================================================ +17:15:14 [ 1] [ 4] [0210] +17:15:14 [ 2] [ 16] [6213544001571899] +17:15:14 [ 3] [ 6] [010000] +17:15:14 [ 4] [ 12] [000050000000] +17:15:14 [ 7] [ 10] [0320171303] +17:15:14 [ 11] [ 6] [953152] +17:15:14 [ 12] [ 6] [171303] +17:15:14 [ 13] [ 4] [0320] +17:15:14 [ 15] [ 4] [0320] +17:15:14 [ 18] [ 4] [6011] +17:15:14 [ 19] [ 3] [418] +17:15:14 [ 22] [ 3] [021] +17:15:14 [ 32] [ 6] [668899] +17:15:14 [ 35] [ 32] [6213544001571899=491212017189464] +17:15:14 [ 37] [ 12] [507902025671] +17:15:14 [ 38] [ 6] [171508] +17:15:14 [ 39] [ 2] [55] +17:15:14 [ 41] [ 8] [03414002] +17:15:14 [ 49] [ 3] [418] +17:15:14 ============================================================================ +17:15:14 Sending to : +17:15:14 ============================================================================ +17:15:14 + + +waiting on router queue for slot.... +17:15:15 ============================================================================ +17:15:15 Slot Id : <153> +17:15:15 Transaction Type : RESPONSE +17:15:15 Received From : +17:15:15 ============================================================================ +17:15:15 FNo. Len. Field Value +17:15:15 ============================================================================ +17:15:15 [ 1] [ 4] [0210] +17:15:15 [ 2] [ 16] [6213544001571899] +17:15:15 [ 3] [ 6] [010000] +17:15:15 [ 4] [ 12] [000050000000] +17:15:15 [ 7] [ 10] [0320171303] +17:15:15 [ 11] [ 6] [953152] +17:15:15 [ 12] [ 6] [171303] +17:15:15 [ 13] [ 4] [0320] +17:15:15 [ 15] [ 4] [0320] +17:15:15 [ 18] [ 4] [6011] +17:15:15 [ 19] [ 3] [418] +17:15:15 [ 22] [ 3] [021] +17:15:15 [ 32] [ 6] [668899] +17:15:15 [ 35] [ 32] [6213544001571899=491212017189464] +17:15:15 [ 37] [ 12] [507902025671] +17:15:15 [ 38] [ 6] [171508] +17:15:15 [ 39] [ 2] [55] +17:15:15 [ 41] [ 8] [03414002] +17:15:15 [ 49] [ 3] [418] +17:15:15 ============================================================================ +17:15:15 Calculate Source COMM Id = 4 +17:15:15 ============================================================================ +17:15:15 + + +waiting on router queue for slot.... +17:15:16 ============================================================================ +17:15:16 Slot Id : <133> +17:15:16 Transaction Type : REQUEST +17:15:16 Received From : +17:15:16 ============================================================================ +17:15:16 FNo. Len. Field Value +17:15:16 ============================================================================ +17:15:16 [ 1] [ 4] [0800] +17:15:16 [ 7] [ 10] [0320101423] +17:15:16 [ 11] [ 6] [157414] +17:15:16 [ 70] [ 3] [301] +17:15:16 ============================================================================ +17:15:16 + + +waiting on router queue for slot.... +17:15:16 Sending to : +17:15:16 ============================================================================ +17:15:16 ============================================================================ +17:15:16 Slot Id : <133> +17:15:16 Transaction Type : RESPONSE +17:15:16 Received From : +17:15:16 ============================================================================ +17:15:16 FNo. Len. Field Value +17:15:16 ============================================================================ +17:15:16 [ 1] [ 4] [0810] +17:15:16 [ 7] [ 10] [0320101423] +17:15:16 [ 11] [ 6] [157414] +17:15:16 [ 39] [ 2] [00] +17:15:16 [ 70] [ 3] [301] +17:15:16 ============================================================================ +17:15:16 Calculate Source COMM Id = 2 +17:15:16 ============================================================================ +17:15:16 + + +waiting on router queue for slot.... +17:15:25 ============================================================================ +17:15:25 Slot Id : <158> +17:15:25 Transaction Type : REQUEST +17:15:25 Received From : +17:15:25 ============================================================================ +17:15:25 FNo. Len. Field Value +17:15:25 ============================================================================ +17:15:25 [ 1] [ 4] [0200] +17:15:25 [ 2] [ 16] [6688990040028514] +17:15:25 [ 3] [ 6] [011000] +17:15:25 [ 4] [ 12] [000050000000] +17:15:25 [ 7] [ 10] [0320171520] +17:15:25 [ 11] [ 6] [812383] +17:15:25 [ 12] [ 6] [171520] +17:15:25 [ 13] [ 4] [0320] +17:15:25 [ 15] [ 4] [0320] +17:15:25 [ 18] [ 4] [6011] +17:15:25 [ 22] [ 3] [900] +17:15:25 [ 25] [ 2] [02] +17:15:25 [ 28] [ 9] [D00002000] +17:15:25 [ 32] [ 6] [621354] +17:15:25 [ 35] [ 37] [6688990040028514=97111261217142600000] +17:15:25 [ 37] [ 12] [507903699746] +17:15:25 [ 41] [ 8] [05004500] +17:15:25 [ 42] [ 15] [NATIVE ] +17:15:25 [ 43] [ 40] [Tourism LuangprabangLAO] +17:15:25 [ 49] [ 3] [418] +17:15:25 [ 52] [ 16] [78BEE18F50F62458] +17:15:25 ============================================================================ +17:15:25 + + +waiting on router queue for slot.... +17:15:25 Sending to : +17:15:25 ============================================================================ +17:15:25 Sending to : +17:15:25 ============================================================================ +17:15:26 ============================================================================ +17:15:26 Slot Id : <158> +17:15:26 Transaction Type : REQUEST +17:15:26 Received From : +17:15:26 ============================================================================ +17:15:26 FNo. Len. Field Value +17:15:26 ============================================================================ +17:15:26 [ 1] [ 4] [0200] +17:15:26 [ 2] [ 16] [6688990040028514] +17:15:26 [ 3] [ 6] [011000] +17:15:26 [ 4] [ 12] [000050000000] +17:15:26 [ 7] [ 10] [0320171520] +17:15:26 [ 11] [ 6] [812383] +17:15:26 [ 12] [ 6] [171520] +17:15:26 [ 13] [ 4] [0320] +17:15:26 [ 15] [ 4] [0320] +17:15:26 [ 18] [ 4] [6011] +17:15:26 [ 22] [ 3] [900] +17:15:26 [ 25] [ 2] [02] +17:15:26 [ 28] [ 9] [D00002000] +17:15:26 [ 32] [ 6] [621354] +17:15:26 [ 35] [ 37] [6688990040028514=97111261217142600000] +17:15:26 [ 37] [ 12] [507903699746] +17:15:26 [ 41] [ 8] [05004500] +17:15:26 [ 42] [ 15] [NATIVE ] +17:15:26 [ 43] [ 40] [Tourism LuangprabangLAO] +17:15:26 [ 49] [ 3] [418] +17:15:26 [ 52] [ 16] [78BEE18F50F62458] +17:15:26 ============================================================================ +17:15:26 + + +waiting on router queue for slot.... +17:15:26 Sending to : +17:15:26 ============================================================================ +17:15:26 ============================================================================ +17:15:26 Slot Id : <158> +17:15:26 Transaction Type : REQUEST +17:15:26 Received From : +17:15:26 ============================================================================ +17:15:26 FNo. Len. Field Value +17:15:26 ============================================================================ +17:15:26 [ 1] [ 4] [0200] +17:15:26 [ 2] [ 16] [6688990040028514] +17:15:26 [ 3] [ 6] [011000] +17:15:26 [ 4] [ 12] [000050000000] +17:15:26 [ 7] [ 10] [0320171520] +17:15:26 [ 11] [ 6] [812383] +17:15:26 [ 12] [ 6] [171520] +17:15:26 [ 13] [ 4] [0320] +17:15:26 [ 15] [ 4] [0320] +17:15:26 [ 18] [ 4] [6011] +17:15:26 [ 22] [ 3] [900] +17:15:26 [ 25] [ 2] [02] +17:15:26 [ 28] [ 9] [D00002000] +17:15:26 [ 32] [ 6] [621354] +17:15:26 [ 35] [ 37] [6688990040028514=97111261217142600000] +17:15:26 [ 37] [ 12] [507903699746] +17:15:26 [ 41] [ 8] [05004500] +17:15:26 [ 42] [ 15] [NATIVE ] +17:15:26 [ 43] [ 40] [Tourism LuangprabangLAO] +17:15:26 [ 49] [ 3] [418] +17:15:26 [ 52] [ 16] [934334E1FF4FBD8B] +17:15:26 ============================================================================ +17:15:26 + + +waiting on router queue for slot.... +17:15:26 Sending to : <4> +17:15:26 ============================================================================ +17:15:26 ============================================================================ +17:15:26 Slot Id : <110> +17:15:26 Transaction Type : REQUEST +17:15:26 Received From : +17:15:26 ============================================================================ +17:15:26 FNo. Len. Field Value +17:15:26 ============================================================================ +17:15:26 [ 1] [ 4] [0800] +17:15:26 [ 7] [ 10] [0320101433] +17:15:26 [ 11] [ 6] [157415] +17:15:26 [ 70] [ 3] [301] +17:15:26 ============================================================================ +17:15:26 + + +waiting on router queue for slot.... +17:15:26 Sending to : +17:15:26 ============================================================================ +17:15:26 ============================================================================ +17:15:26 Slot Id : <110> +17:15:26 Transaction Type : RESPONSE +17:15:26 Received From : +17:15:26 ============================================================================ +17:15:26 FNo. Len. Field Value +17:15:26 ============================================================================ +17:15:26 [ 1] [ 4] [0810] +17:15:26 [ 7] [ 10] [0320101433] +17:15:26 [ 11] [ 6] [157415] +17:15:26 [ 39] [ 2] [00] +17:15:26 [ 70] [ 3] [301] +17:15:26 ============================================================================ +17:15:26 Calculate Source COMM Id = 2 +17:15:26 ============================================================================ +17:15:26 + + +waiting on router queue for slot.... +17:15:27 ============================================================================ +17:15:27 Slot Id : <158> +17:15:27 Transaction Type : RESPONSE +17:15:27 Received From : +17:15:27 ============================================================================ +17:15:27 FNo. Len. Field Value +17:15:27 ============================================================================ +17:15:27 [ 1] [ 4] [0210] +17:15:27 [ 2] [ 16] [6688990040028514] +17:15:27 [ 3] [ 6] [011000] +17:15:27 [ 4] [ 12] [000050000000] +17:15:27 [ 11] [ 6] [812383] +17:15:27 [ 12] [ 6] [171520] +17:15:27 [ 15] [ 4] [0320] +17:15:27 [ 18] [ 4] [6011] +17:15:27 [ 32] [ 6] [621354] +17:15:27 [ 35] [ 37] [6688990040028514=97111261217142600000] +17:15:27 [ 37] [ 12] [507903699746] +17:15:27 [ 38] [ 6] [866448] +17:15:27 [ 39] [ 2] [00] +17:15:27 [ 41] [ 8] [05004500] +17:15:27 [ 49] [ 3] [418] +17:15:27 [ 54] [ 20] [1002418C000204211138] +17:15:27 ============================================================================ +17:15:27 Sending to : +17:15:27 ============================================================================ +17:15:27 + + +waiting on router queue for slot.... +17:15:28 ============================================================================ +17:15:28 Slot Id : <158> +17:15:28 Transaction Type : RESPONSE +17:15:28 Received From : +17:15:28 ============================================================================ +17:15:28 FNo. Len. Field Value +17:15:28 ============================================================================ +17:15:28 [ 1] [ 4] [0210] +17:15:28 [ 2] [ 16] [6688990040028514] +17:15:28 [ 3] [ 6] [011000] +17:15:28 [ 4] [ 12] [000050000000] +17:15:28 [ 11] [ 6] [812383] +17:15:28 [ 12] [ 6] [171520] +17:15:28 [ 15] [ 4] [0320] +17:15:28 [ 18] [ 4] [6011] +17:15:28 [ 32] [ 6] [621354] +17:15:28 [ 35] [ 37] [6688990040028514=97111261217142600000] +17:15:28 [ 37] [ 12] [507903699746] +17:15:28 [ 38] [ 6] [866448] +17:15:28 [ 39] [ 2] [00] +17:15:28 [ 41] [ 8] [05004500] +17:15:28 [ 49] [ 3] [418] +17:15:28 [ 54] [ 20] [1002418C000204211138] +17:15:28 ============================================================================ +17:15:28 Calculate Source COMM Id = 0 +17:15:28 ============================================================================ +17:15:28 + + +waiting on router queue for slot.... +17:15:35 ============================================================================ +17:15:35 Slot Id : <159> +17:15:35 Transaction Type : REQUEST +17:15:35 Received From : +17:15:35 ============================================================================ +17:15:35 FNo. Len. Field Value +17:15:35 ============================================================================ +17:15:35 [ 1] [ 4] [0800] +17:15:35 [ 7] [ 10] [0321002724] +17:15:35 [ 11] [ 6] [172724] +17:15:35 [ 37] [ 12] [57917172724] +17:15:35 [ 70] [ 3] [301] +17:15:35 ============================================================================ +17:15:35 + + +waiting on router queue for slot.... +17:15:35 Sending to : +17:15:35 ============================================================================ +17:15:35 ============================================================================ +17:15:35 Slot Id : <159> +17:15:35 Transaction Type : RESPONSE +17:15:35 Received From : +17:15:35 ============================================================================ +17:15:35 FNo. Len. Field Value +17:15:35 ============================================================================ +17:15:35 [ 1] [ 4] [0810] +17:15:35 [ 7] [ 10] [0321002724] +17:15:35 [ 11] [ 6] [172724] +17:15:35 [ 37] [ 12] [579171727240] +17:15:35 [ 39] [ 2] [00] +17:15:35 [ 70] [ 3] [810] +17:15:35 ============================================================================ +17:15:35 Calculate Source COMM Id = 6 +17:15:35 ============================================================================ +17:15:35 + + +waiting on router queue for slot.... +17:15:37 ============================================================================ +17:15:37 Slot Id : <142> +17:15:37 Transaction Type : REQUEST +17:15:37 Received From : +17:15:37 ============================================================================ +17:15:37 FNo. Len. Field Value +17:15:37 ============================================================================ +17:15:37 [ 1] [ 4] [0800] +17:15:37 [ 7] [ 10] [0320101444] +17:15:37 [ 11] [ 6] [157416] +17:15:37 [ 70] [ 3] [301] +17:15:37 ============================================================================ +17:15:37 + + +waiting on router queue for slot.... +17:15:37 Sending to : +17:15:37 ============================================================================ +17:15:37 ============================================================================ +17:15:37 Slot Id : <142> +17:15:37 Transaction Type : RESPONSE +17:15:37 Received From : +17:15:37 ============================================================================ +17:15:37 FNo. Len. Field Value +17:15:37 ============================================================================ +17:15:37 [ 1] [ 4] [0810] +17:15:37 [ 7] [ 10] [0320101444] +17:15:37 [ 11] [ 6] [157416] +17:15:37 [ 39] [ 2] [00] +17:15:37 [ 70] [ 3] [301] +17:15:37 ============================================================================ +17:15:37 Calculate Source COMM Id = 2 +17:15:37 ============================================================================ +17:15:37 + + +waiting on router queue for slot.... +17:15:41 ============================================================================ +17:15:41 Slot Id : <167> +17:15:41 Transaction Type : REQUEST +17:15:41 Received From : +17:15:41 ============================================================================ +17:15:41 FNo. Len. Field Value +17:15:41 ============================================================================ +17:15:41 [ 1] [ 4] [0200] +17:15:41 [ 2] [ 16] [6213544001969705] +17:15:41 [ 3] [ 6] [010000] +17:15:41 [ 4] [ 12] [000060000000] +17:15:41 [ 7] [ 10] [0320172328] +17:15:41 [ 11] [ 6] [240498] +17:15:41 [ 12] [ 6] [172328] +17:15:41 [ 13] [ 4] [0320] +17:15:41 [ 14] [ 4] [4912] +17:15:41 [ 15] [ 4] [0320] +17:15:41 [ 18] [ 4] [6011] +17:15:41 [ 22] [ 3] [900] +17:15:41 [ 25] [ 2] [02] +17:15:41 [ 28] [ 9] [D00002000] +17:15:41 [ 32] [ 6] [220699] +17:15:41 [ 35] [ 32] [6213544001969705=491212016970933] +17:15:41 [ 37] [ 12] [507900360239] +17:15:41 [ 41] [ 8] [05000300] +17:15:41 [ 42] [ 15] [APTRA ] +17:15:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:15:41 [ 49] [ 3] [418] +17:15:41 [ 52] [ 16] [0F06393A5456D30C] +17:15:41 ============================================================================ +17:15:41 + + +waiting on router queue for slot.... +17:15:41 Sending to : +17:15:41 ============================================================================ +17:15:41 Sending to : +17:15:41 ============================================================================ +17:15:41 ============================================================================ +17:15:41 Slot Id : <130> +17:15:41 Transaction Type : REQUEST +17:15:41 Received From : +17:15:41 ============================================================================ +17:15:41 FNo. Len. Field Value +17:15:41 ============================================================================ +17:15:41 [ 1] [ 4] [0200] +17:15:41 [ 2] [ 16] [2206990000088468] +17:15:41 [ 3] [ 6] [011000] +17:15:41 [ 4] [ 12] [000050000000] +17:15:41 [ 7] [ 10] [0320171536] +17:15:41 [ 11] [ 6] [812456] +17:15:41 [ 12] [ 6] [171536] +17:15:41 [ 13] [ 4] [0320] +17:15:41 [ 15] [ 4] [0320] +17:15:41 [ 18] [ 4] [6011] +17:15:41 [ 22] [ 3] [900] +17:15:41 [ 25] [ 2] [02] +17:15:41 [ 28] [ 9] [D00002000] +17:15:41 [ 32] [ 6] [621354] +17:15:41 [ 35] [ 32] [2206990000088468=180612811519306] +17:15:41 [ 37] [ 12] [507905006056] +17:15:41 [ 41] [ 8] [01012400] +17:15:41 [ 42] [ 15] [NATIVE ] +17:15:41 [ 43] [ 40] [Xaysetha Hospital02 Vientiane LAO] +17:15:41 [ 49] [ 3] [418] +17:15:41 [ 52] [ 16] [664B291F2450C668] +17:15:41 ============================================================================ +17:15:41 + + +waiting on router queue for slot.... +17:15:41 Sending to : +17:15:41 ============================================================================ +17:15:41 Sending to : +17:15:41 ============================================================================ +17:15:41 ============================================================================ +17:15:41 Slot Id : <167> +17:15:41 Transaction Type : REQUEST +17:15:41 Received From : +17:15:41 ============================================================================ +17:15:41 FNo. Len. Field Value +17:15:41 ============================================================================ +17:15:41 [ 1] [ 4] [0200] +17:15:41 [ 2] [ 16] [6213544001969705] +17:15:41 [ 3] [ 6] [010000] +17:15:41 [ 4] [ 12] [000060000000] +17:15:41 [ 7] [ 10] [0320172328] +17:15:41 [ 11] [ 6] [240498] +17:15:41 [ 12] [ 6] [172328] +17:15:41 [ 13] [ 4] [0320] +17:15:41 [ 14] [ 4] [4912] +17:15:41 [ 15] [ 4] [0320] +17:15:41 [ 18] [ 4] [6011] +17:15:41 [ 22] [ 3] [900] +17:15:41 [ 25] [ 2] [02] +17:15:41 [ 28] [ 9] [D00002000] +17:15:41 [ 32] [ 6] [220699] +17:15:41 [ 35] [ 32] [6213544001969705=491212016970933] +17:15:41 [ 37] [ 12] [507900360239] +17:15:41 [ 41] [ 8] [05000300] +17:15:41 [ 42] [ 15] [APTRA ] +17:15:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:15:41 [ 49] [ 3] [418] +17:15:41 [ 52] [ 16] [0F06393A5456D30C] +17:15:41 ============================================================================ +17:15:41 + + +waiting on router queue for slot.... +17:15:41 Sending to : +17:15:41 ============================================================================ +17:15:41 ============================================================================ +17:15:41 Slot Id : <167> +17:15:41 Transaction Type : REQUEST +17:15:41 Received From : +17:15:41 ============================================================================ +17:15:41 FNo. Len. Field Value +17:15:41 ============================================================================ +17:15:41 [ 1] [ 4] [0200] +17:15:41 [ 2] [ 16] [6213544001969705] +17:15:41 [ 3] [ 6] [010000] +17:15:41 [ 4] [ 12] [000060000000] +17:15:41 [ 7] [ 10] [0320172328] +17:15:41 [ 11] [ 6] [240498] +17:15:41 [ 12] [ 6] [172328] +17:15:41 [ 13] [ 4] [0320] +17:15:41 [ 14] [ 4] [4912] +17:15:41 [ 15] [ 4] [0320] +17:15:41 [ 18] [ 4] [6011] +17:15:41 [ 22] [ 3] [900] +17:15:41 [ 25] [ 2] [02] +17:15:41 [ 28] [ 9] [D00002000] +17:15:41 [ 32] [ 6] [220699] +17:15:41 [ 35] [ 32] [6213544001969705=491212016970933] +17:15:41 [ 37] [ 12] [507900360239] +17:15:41 [ 41] [ 8] [05000300] +17:15:41 [ 42] [ 15] [APTRA ] +17:15:41 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:15:41 [ 49] [ 3] [418] +17:15:41 [ 52] [ 16] [80BF2EB8E674211D] +17:15:41 ============================================================================ +17:15:41 + + +waiting on router queue for slot.... +17:15:41 Sending to : <0> +17:15:41 ============================================================================ +17:15:42 ============================================================================ +17:15:42 Slot Id : <130> +17:15:42 Transaction Type : REQUEST +17:15:42 Received From : +17:15:42 ============================================================================ +17:15:42 FNo. Len. Field Value +17:15:42 ============================================================================ +17:15:42 [ 1] [ 4] [0200] +17:15:42 [ 2] [ 16] [2206990000088468] +17:15:42 [ 3] [ 6] [011000] +17:15:42 [ 4] [ 12] [000050000000] +17:15:42 [ 7] [ 10] [0320171536] +17:15:42 [ 11] [ 6] [812456] +17:15:42 [ 12] [ 6] [171536] +17:15:42 [ 13] [ 4] [0320] +17:15:42 [ 15] [ 4] [0320] +17:15:42 [ 18] [ 4] [6011] +17:15:42 [ 22] [ 3] [900] +17:15:42 [ 25] [ 2] [02] +17:15:42 [ 28] [ 9] [D00002000] +17:15:42 [ 32] [ 6] [621354] +17:15:42 [ 35] [ 32] [2206990000088468=180612811519306] +17:15:42 [ 37] [ 12] [507905006056] +17:15:42 [ 41] [ 8] [01012400] +17:15:42 [ 42] [ 15] [NATIVE ] +17:15:42 [ 43] [ 40] [Xaysetha Hospital02 Vientiane LAO] +17:15:42 [ 49] [ 3] [418] +17:15:42 [ 52] [ 16] [664B291F2450C668] +17:15:42 ============================================================================ +17:15:42 + + +waiting on router queue for slot.... +17:15:42 Sending to : +17:15:42 ============================================================================ +17:15:42 ============================================================================ +17:15:42 Slot Id : <130> +17:15:42 Transaction Type : REQUEST +17:15:42 Received From : +17:15:42 ============================================================================ +17:15:42 FNo. Len. Field Value +17:15:42 ============================================================================ +17:15:42 [ 1] [ 4] [0200] +17:15:42 [ 2] [ 16] [2206990000088468] +17:15:42 [ 3] [ 6] [011000] +17:15:42 [ 4] [ 12] [000050000000] +17:15:42 [ 7] [ 10] [0320171536] +17:15:42 [ 11] [ 6] [812456] +17:15:42 [ 12] [ 6] [171536] +17:15:42 [ 13] [ 4] [0320] +17:15:42 [ 15] [ 4] [0320] +17:15:42 [ 18] [ 4] [6011] +17:15:42 [ 22] [ 3] [900] +17:15:42 [ 25] [ 2] [02] +17:15:42 [ 28] [ 9] [D00002000] +17:15:42 [ 32] [ 6] [621354] +17:15:42 [ 35] [ 32] [2206990000088468=180612811519306] +17:15:42 [ 37] [ 12] [507905006056] +17:15:42 [ 41] [ 8] [01012400] +17:15:42 [ 42] [ 15] [NATIVE ] +17:15:42 [ 43] [ 40] [Xaysetha Hospital02 Vientiane LAO] +17:15:42 [ 49] [ 3] [418] +17:15:42 [ 52] [ 16] [A0EF41E7695FAC6E] +17:15:42 ============================================================================ +17:15:42 + + +waiting on router queue for slot.... +17:15:42 Sending to : <1> +17:15:42 ============================================================================ +17:15:42 ============================================================================ +17:15:42 Slot Id : <167> +17:15:42 Transaction Type : RESPONSE +17:15:42 Received From : +17:15:42 ============================================================================ +17:15:42 FNo. Len. Field Value +17:15:42 ============================================================================ +17:15:42 [ 1] [ 4] [0210] +17:15:42 [ 2] [ 16] [6213544001969705] +17:15:42 [ 3] [ 6] [010000] +17:15:42 [ 4] [ 12] [000060000000] +17:15:42 [ 7] [ 10] [0320172328] +17:15:42 [ 11] [ 6] [240498] +17:15:42 [ 12] [ 6] [172328] +17:15:42 [ 13] [ 4] [0320] +17:15:42 [ 15] [ 4] [0320] +17:15:42 [ 18] [ 4] [6011] +17:15:42 [ 32] [ 6] [220699] +17:15:42 [ 35] [ 32] [6213544001969705=491212016970933] +17:15:42 [ 37] [ 12] [507900360239] +17:15:42 [ 38] [ 6] [920511] +17:15:42 [ 39] [ 2] [00] +17:15:42 [ 41] [ 8] [05000300] +17:15:42 [ 49] [ 3] [418] +17:15:42 [ 54] [ 40] [0001418C0000058801470002418C000005880147] +17:15:42 ============================================================================ +17:15:42 Sending to : +17:15:42 ============================================================================ +17:15:42 + + +waiting on router queue for slot.... +17:15:42 ============================================================================ +17:15:42 Slot Id : <146> +17:15:42 Transaction Type : REQUEST +17:15:42 Received From : +17:15:42 ============================================================================ +17:15:42 FNo. Len. Field Value +17:15:42 ============================================================================ +17:15:42 [ 1] [ 4] [0200] +17:15:42 [ 2] [ 16] [6213541000697261] +17:15:42 [ 3] [ 6] [011000] +17:15:42 [ 4] [ 12] [000030000000] +17:15:42 [ 7] [ 10] [0320172329] +17:15:42 [ 11] [ 6] [240881] +17:15:42 [ 12] [ 6] [172329] +17:15:42 [ 13] [ 4] [0320] +17:15:42 [ 14] [ 4] [4912] +17:15:42 [ 15] [ 4] [0320] +17:15:42 [ 18] [ 4] [6011] +17:15:42 [ 22] [ 3] [900] +17:15:42 [ 25] [ 2] [02] +17:15:42 [ 28] [ 9] [D00002000] +17:15:42 [ 32] [ 6] [220699] +17:15:42 [ 35] [ 32] [6213541000697261=491212019726672] +17:15:42 [ 37] [ 12] [507900410464] +17:15:42 [ 41] [ 8] [08000300] +17:15:42 [ 42] [ 15] [APTRA ] +17:15:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:15:42 [ 49] [ 3] [418] +17:15:42 [ 52] [ 16] [673317D029ECF1BD] +17:15:42 ============================================================================ +17:15:42 + + +waiting on router queue for slot.... +17:15:42 Sending to : +17:15:42 ============================================================================ +17:15:42 Sending to : +17:15:42 ============================================================================ +17:15:43 ============================================================================ +17:15:43 Slot Id : <146> +17:15:43 Transaction Type : REQUEST +17:15:43 Received From : +17:15:43 ============================================================================ +17:15:43 FNo. Len. Field Value +17:15:43 ============================================================================ +17:15:43 [ 1] [ 4] [0200] +17:15:43 [ 2] [ 16] [6213541000697261] +17:15:43 [ 3] [ 6] [011000] +17:15:43 [ 4] [ 12] [000030000000] +17:15:43 [ 7] [ 10] [0320172329] +17:15:43 [ 11] [ 6] [240881] +17:15:43 [ 12] [ 6] [172329] +17:15:43 [ 13] [ 4] [0320] +17:15:43 [ 14] [ 4] [4912] +17:15:43 [ 15] [ 4] [0320] +17:15:43 [ 18] [ 4] [6011] +17:15:43 [ 22] [ 3] [900] +17:15:43 [ 25] [ 2] [02] +17:15:43 [ 28] [ 9] [D00002000] +17:15:43 [ 32] [ 6] [220699] +17:15:43 [ 35] [ 32] [6213541000697261=491212019726672] +17:15:43 [ 37] [ 12] [507900410464] +17:15:43 [ 41] [ 8] [08000300] +17:15:43 [ 42] [ 15] [APTRA ] +17:15:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:15:43 [ 49] [ 3] [418] +17:15:43 [ 52] [ 16] [673317D029ECF1BD] +17:15:43 ============================================================================ +17:15:43 + + +waiting on router queue for slot.... +17:15:43 Sending to : +17:15:43 ============================================================================ +17:15:43 ============================================================================ +17:15:43 Slot Id : <146> +17:15:43 Transaction Type : REQUEST +17:15:43 Received From : +17:15:43 ============================================================================ +17:15:43 FNo. Len. Field Value +17:15:43 ============================================================================ +17:15:43 [ 1] [ 4] [0200] +17:15:43 [ 2] [ 16] [6213541000697261] +17:15:43 [ 3] [ 6] [011000] +17:15:43 [ 4] [ 12] [000030000000] +17:15:43 [ 7] [ 10] [0320172329] +17:15:43 [ 11] [ 6] [240881] +17:15:43 [ 12] [ 6] [172329] +17:15:43 [ 13] [ 4] [0320] +17:15:43 [ 14] [ 4] [4912] +17:15:43 [ 15] [ 4] [0320] +17:15:43 [ 18] [ 4] [6011] +17:15:43 [ 22] [ 3] [900] +17:15:43 [ 25] [ 2] [02] +17:15:43 [ 28] [ 9] [D00002000] +17:15:43 [ 32] [ 6] [220699] +17:15:43 [ 35] [ 32] [6213541000697261=491212019726672] +17:15:43 [ 37] [ 12] [507900410464] +17:15:43 [ 41] [ 8] [08000300] +17:15:43 [ 42] [ 15] [APTRA ] +17:15:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:15:43 [ 49] [ 3] [418] +17:15:43 [ 52] [ 16] [8962D8BF1904DFF9] +17:15:43 ============================================================================ +17:15:43 + + +waiting on router queue for slot.... +17:15:43 Sending to : <0> +17:15:43 ============================================================================ +17:15:43 ============================================================================ +17:15:43 Slot Id : <146> +17:15:43 Transaction Type : RESPONSE +17:15:43 Received From : +17:15:43 ============================================================================ +17:15:43 FNo. Len. Field Value +17:15:43 ============================================================================ +17:15:43 [ 1] [ 4] [0210] +17:15:43 [ 2] [ 16] [6213541000697261] +17:15:43 [ 3] [ 6] [011000] +17:15:43 [ 4] [ 12] [000030000000] +17:15:43 [ 7] [ 10] [0320172329] +17:15:43 [ 11] [ 6] [240881] +17:15:43 [ 12] [ 6] [172329] +17:15:43 [ 13] [ 4] [0320] +17:15:43 [ 15] [ 4] [0320] +17:15:43 [ 18] [ 4] [6011] +17:15:43 [ 32] [ 6] [220699] +17:15:43 [ 35] [ 32] [6213541000697261=491212019726672] +17:15:43 [ 37] [ 12] [507900410464] +17:15:43 [ 38] [ 6] [048651] +17:15:43 [ 39] [ 2] [00] +17:15:43 [ 41] [ 8] [08000300] +17:15:43 [ 49] [ 3] [418] +17:15:43 [ 54] [ 40] [1001418C0000305239501002418C000030523950] +17:15:43 ============================================================================ +17:15:43 Sending to : +17:15:43 ============================================================================ +17:15:43 + + +waiting on router queue for slot.... +17:15:43 ============================================================================ +17:15:43 Slot Id : <167> +17:15:43 Transaction Type : RESPONSE +17:15:43 Received From : +17:15:43 ============================================================================ +17:15:43 FNo. Len. Field Value +17:15:43 ============================================================================ +17:15:43 [ 1] [ 4] [0210] +17:15:43 [ 2] [ 16] [6213544001969705] +17:15:43 [ 3] [ 6] [010000] +17:15:43 [ 4] [ 12] [000060000000] +17:15:43 [ 7] [ 10] [0320172328] +17:15:43 [ 11] [ 6] [240498] +17:15:43 [ 12] [ 6] [172328] +17:15:43 [ 13] [ 4] [0320] +17:15:43 [ 15] [ 4] [0320] +17:15:43 [ 18] [ 4] [6011] +17:15:43 [ 32] [ 6] [220699] +17:15:43 [ 35] [ 32] [6213544001969705=491212016970933] +17:15:43 [ 37] [ 12] [507900360239] +17:15:43 [ 38] [ 6] [920511] +17:15:43 [ 39] [ 2] [00] +17:15:43 [ 41] [ 8] [05000300] +17:15:43 [ 49] [ 3] [418] +17:15:43 [ 54] [ 40] [0001418C0000058801470002418C000005880147] +17:15:43 ============================================================================ +17:15:43 Calculate Source COMM Id = 1 +17:15:43 ============================================================================ +17:15:43 + + +waiting on router queue for slot.... +17:15:44 ============================================================================ +17:15:44 Slot Id : <130> +17:15:44 Transaction Type : RESPONSE +17:15:44 Received From : +17:15:44 ============================================================================ +17:15:44 FNo. Len. Field Value +17:15:44 ============================================================================ +17:15:44 [ 1] [ 4] [0210] +17:15:44 [ 2] [ 16] [2206990000088468] +17:15:44 [ 3] [ 6] [011000] +17:15:44 [ 4] [ 12] [000050000000] +17:15:44 [ 7] [ 10] [0320171536] +17:15:44 [ 11] [ 6] [812456] +17:15:44 [ 12] [ 6] [171536] +17:15:44 [ 13] [ 4] [0320] +17:15:44 [ 15] [ 4] [0320] +17:15:44 [ 18] [ 4] [6011] +17:15:44 [ 32] [ 6] [621354] +17:15:44 [ 35] [ 32] [2206990000088468=180612811519306] +17:15:44 [ 37] [ 12] [507905006056] +17:15:44 [ 38] [ 6] [213073] +17:15:44 [ 39] [ 2] [00] +17:15:44 [ 41] [ 8] [01012400] +17:15:44 [ 49] [ 3] [418] +17:15:44 [ 54] [ 40] [1001418C0000621495001002418C000062149500] +17:15:44 ============================================================================ +17:15:44 Sending to : +17:15:44 ============================================================================ +17:15:44 + + +waiting on router queue for slot.... +17:15:44 ============================================================================ +17:15:44 Slot Id : <157> +17:15:44 Transaction Type : REQUEST +17:15:44 Received From : +17:15:44 ============================================================================ +17:15:44 FNo. Len. Field Value +17:15:44 ============================================================================ +17:15:44 [ 1] [ 4] [0200] +17:15:44 [ 2] [ 16] [6688990106397506] +17:15:44 [ 3] [ 6] [011000] +17:15:44 [ 4] [ 12] [000030000000] +17:15:44 [ 7] [ 10] [0320171539] +17:15:44 [ 11] [ 6] [812475] +17:15:44 [ 12] [ 6] [171539] +17:15:44 [ 13] [ 4] [0320] +17:15:44 [ 15] [ 4] [0320] +17:15:44 [ 18] [ 4] [6011] +17:15:44 [ 22] [ 3] [900] +17:15:44 [ 25] [ 2] [02] +17:15:44 [ 28] [ 9] [D00002000] +17:15:44 [ 32] [ 6] [621354] +17:15:44 [ 35] [ 37] [6688990106397506=43121231750620800000] +17:15:44 [ 37] [ 12] [507905170372] +17:15:44 [ 41] [ 8] [01012900] +17:15:44 [ 42] [ 15] [NATIVE ] +17:15:44 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +17:15:44 [ 49] [ 3] [418] +17:15:44 [ 52] [ 16] [9E5C15DFDA49AEC8] +17:15:44 ============================================================================ +17:15:44 + + +waiting on router queue for slot.... +17:15:44 Sending to : +17:15:44 ============================================================================ +17:15:44 Sending to : +17:15:44 ============================================================================ +17:15:45 ============================================================================ +17:15:45 Slot Id : <157> +17:15:45 Transaction Type : REQUEST +17:15:45 Received From : +17:15:45 ============================================================================ +17:15:45 FNo. Len. Field Value +17:15:45 ============================================================================ +17:15:45 [ 1] [ 4] [0200] +17:15:45 [ 2] [ 16] [6688990106397506] +17:15:45 [ 3] [ 6] [011000] +17:15:45 [ 4] [ 12] [000030000000] +17:15:45 [ 7] [ 10] [0320171539] +17:15:45 [ 11] [ 6] [812475] +17:15:45 [ 12] [ 6] [171539] +17:15:45 [ 13] [ 4] [0320] +17:15:45 [ 15] [ 4] [0320] +17:15:45 [ 18] [ 4] [6011] +17:15:45 [ 22] [ 3] [900] +17:15:45 [ 25] [ 2] [02] +17:15:45 [ 28] [ 9] [D00002000] +17:15:45 [ 32] [ 6] [621354] +17:15:45 [ 35] [ 37] [6688990106397506=43121231750620800000] +17:15:45 [ 37] [ 12] [507905170372] +17:15:45 [ 41] [ 8] [01012900] +17:15:45 [ 42] [ 15] [NATIVE ] +17:15:45 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +17:15:45 [ 49] [ 3] [418] +17:15:45 [ 52] [ 16] [9E5C15DFDA49AEC8] +17:15:45 ============================================================================ +17:15:45 + + +waiting on router queue for slot.... +17:15:45 Sending to : +17:15:45 ============================================================================ +17:15:45 ============================================================================ +17:15:45 Slot Id : <157> +17:15:45 Transaction Type : REQUEST +17:15:45 Received From : +17:15:45 ============================================================================ +17:15:45 FNo. Len. Field Value +17:15:45 ============================================================================ +17:15:45 [ 1] [ 4] [0200] +17:15:45 [ 2] [ 16] [6688990106397506] +17:15:45 [ 3] [ 6] [011000] +17:15:45 [ 4] [ 12] [000030000000] +17:15:45 [ 7] [ 10] [0320171539] +17:15:45 [ 11] [ 6] [812475] +17:15:45 [ 12] [ 6] [171539] +17:15:45 [ 13] [ 4] [0320] +17:15:45 [ 15] [ 4] [0320] +17:15:45 [ 18] [ 4] [6011] +17:15:45 [ 22] [ 3] [900] +17:15:45 [ 25] [ 2] [02] +17:15:45 [ 28] [ 9] [D00002000] +17:15:45 [ 32] [ 6] [621354] +17:15:45 [ 35] [ 37] [6688990106397506=43121231750620800000] +17:15:45 [ 37] [ 12] [507905170372] +17:15:45 [ 41] [ 8] [01012900] +17:15:45 [ 42] [ 15] [NATIVE ] +17:15:45 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +17:15:45 [ 49] [ 3] [418] +17:15:45 [ 52] [ 16] [F1CE3F49C588D922] +17:15:45 ============================================================================ +17:15:45 + + +waiting on router queue for slot.... +17:15:45 Sending to : <4> +17:15:45 ============================================================================ +17:15:45 ============================================================================ +17:15:45 Slot Id : <146> +17:15:45 Transaction Type : RESPONSE +17:15:45 Received From : +17:15:45 ============================================================================ +17:15:45 FNo. Len. Field Value +17:15:45 ============================================================================ +17:15:45 [ 1] [ 4] [0210] +17:15:45 [ 2] [ 16] [6213541000697261] +17:15:45 [ 3] [ 6] [011000] +17:15:45 [ 4] [ 12] [000030000000] +17:15:45 [ 7] [ 10] [0320172329] +17:15:45 [ 11] [ 6] [240881] +17:15:45 [ 12] [ 6] [172329] +17:15:45 [ 13] [ 4] [0320] +17:15:45 [ 15] [ 4] [0320] +17:15:45 [ 18] [ 4] [6011] +17:15:45 [ 32] [ 6] [220699] +17:15:45 [ 35] [ 32] [6213541000697261=491212019726672] +17:15:45 [ 37] [ 12] [507900410464] +17:15:45 [ 38] [ 6] [048651] +17:15:45 [ 39] [ 2] [00] +17:15:45 [ 41] [ 8] [08000300] +17:15:45 [ 49] [ 3] [418] +17:15:45 [ 54] [ 40] [1001418C0000305239501002418C000030523950] +17:15:45 ============================================================================ +17:15:45 Calculate Source COMM Id = 1 +17:15:45 ============================================================================ +17:15:45 + + +waiting on router queue for slot.... +17:15:46 ============================================================================ +17:15:46 Slot Id : <157> +17:15:46 Transaction Type : RESPONSE +17:15:46 Received From : +17:15:46 ============================================================================ +17:15:46 FNo. Len. Field Value +17:15:46 ============================================================================ +17:15:46 [ 1] [ 4] [0210] +17:15:46 [ 2] [ 16] [6688990106397506] +17:15:46 [ 3] [ 6] [011000] +17:15:46 [ 4] [ 12] [000030000000] +17:15:46 [ 11] [ 6] [812475] +17:15:46 [ 12] [ 6] [171539] +17:15:46 [ 15] [ 4] [0320] +17:15:46 [ 18] [ 4] [6011] +17:15:46 [ 32] [ 6] [621354] +17:15:46 [ 35] [ 37] [6688990106397506=43121231750620800000] +17:15:46 [ 37] [ 12] [507905170372] +17:15:46 [ 38] [ 6] [808487] +17:15:46 [ 39] [ 2] [00] +17:15:46 [ 41] [ 8] [01012900] +17:15:46 [ 49] [ 3] [418] +17:15:46 [ 54] [ 20] [1002418C000062803082] +17:15:46 ============================================================================ +17:15:46 Sending to : +17:15:46 ============================================================================ +17:15:46 + + +waiting on router queue for slot.... +17:15:47 ============================================================================ +17:15:47 Slot Id : <130> +17:15:47 Transaction Type : RESPONSE +17:15:47 Received From : +17:15:47 ============================================================================ +17:15:47 FNo. Len. Field Value +17:15:47 ============================================================================ +17:15:47 [ 1] [ 4] [0210] +17:15:47 [ 2] [ 16] [2206990000088468] +17:15:47 [ 3] [ 6] [011000] +17:15:47 [ 4] [ 12] [000050000000] +17:15:47 [ 7] [ 10] [0320171536] +17:15:47 [ 11] [ 6] [812456] +17:15:47 [ 12] [ 6] [171536] +17:15:47 [ 13] [ 4] [0320] +17:15:47 [ 15] [ 4] [0320] +17:15:47 [ 18] [ 4] [6011] +17:15:47 [ 32] [ 6] [621354] +17:15:47 [ 35] [ 32] [2206990000088468=180612811519306] +17:15:47 [ 37] [ 12] [507905006056] +17:15:47 [ 38] [ 6] [213073] +17:15:47 [ 39] [ 2] [00] +17:15:47 [ 41] [ 8] [01012400] +17:15:47 [ 49] [ 3] [418] +17:15:47 [ 54] [ 40] [1001418C0000621495001002418C000062149500] +17:15:47 ============================================================================ +17:15:47 Calculate Source COMM Id = 0 +17:15:47 ============================================================================ +17:15:47 + + +waiting on router queue for slot.... +17:15:48 ============================================================================ +17:15:48 Slot Id : <137> +17:15:48 Transaction Type : REQUEST +17:15:48 Received From : +17:15:48 ============================================================================ +17:15:48 FNo. Len. Field Value +17:15:48 ============================================================================ +17:15:48 [ 1] [ 4] [0800] +17:15:48 [ 7] [ 10] [0320101455] +17:15:48 [ 11] [ 6] [157417] +17:15:48 [ 70] [ 3] [301] +17:15:48 ============================================================================ +17:15:48 + + +waiting on router queue for slot.... +17:15:48 Sending to : +17:15:48 ============================================================================ +17:15:48 ============================================================================ +17:15:48 Slot Id : <137> +17:15:48 Transaction Type : RESPONSE +17:15:48 Received From : +17:15:48 ============================================================================ +17:15:48 FNo. Len. Field Value +17:15:48 ============================================================================ +17:15:48 [ 1] [ 4] [0810] +17:15:48 [ 7] [ 10] [0320101455] +17:15:48 [ 11] [ 6] [157417] +17:15:48 [ 39] [ 2] [00] +17:15:48 [ 70] [ 3] [301] +17:15:48 ============================================================================ +17:15:48 Calculate Source COMM Id = 2 +17:15:48 ============================================================================ +17:15:48 + + +waiting on router queue for slot.... +17:15:48 ============================================================================ +17:15:48 Slot Id : <157> +17:15:48 Transaction Type : RESPONSE +17:15:48 Received From : +17:15:48 ============================================================================ +17:15:48 FNo. Len. Field Value +17:15:48 ============================================================================ +17:15:48 [ 1] [ 4] [0210] +17:15:48 [ 2] [ 16] [6688990106397506] +17:15:48 [ 3] [ 6] [011000] +17:15:48 [ 4] [ 12] [000030000000] +17:15:48 [ 11] [ 6] [812475] +17:15:48 [ 12] [ 6] [171539] +17:15:48 [ 15] [ 4] [0320] +17:15:48 [ 18] [ 4] [6011] +17:15:48 [ 32] [ 6] [621354] +17:15:48 [ 35] [ 37] [6688990106397506=43121231750620800000] +17:15:48 [ 37] [ 12] [507905170372] +17:15:48 [ 38] [ 6] [808487] +17:15:48 [ 39] [ 2] [00] +17:15:48 [ 41] [ 8] [01012900] +17:15:48 [ 49] [ 3] [418] +17:15:48 [ 54] [ 20] [1002418C000062803082] +17:15:48 ============================================================================ +17:15:48 Calculate Source COMM Id = 0 +17:15:48 ============================================================================ +17:15:48 + + +waiting on router queue for slot.... +17:15:53 ============================================================================ +17:15:53 Slot Id : <128> +17:15:53 Transaction Type : REQUEST +17:15:53 Received From : +17:15:53 ============================================================================ +17:15:53 FNo. Len. Field Value +17:15:53 ============================================================================ +17:15:53 [ 1] [ 4] [0200] +17:15:53 [ 2] [ 16] [6213544001970141] +17:15:53 [ 3] [ 6] [011000] +17:15:53 [ 4] [ 12] [000055000000] +17:15:53 [ 7] [ 10] [0320171613] +17:15:53 [ 11] [ 6] [209404] +17:15:53 [ 12] [ 6] [171119] +17:15:53 [ 13] [ 4] [0320] +17:15:53 [ 14] [ 4] [4912] +17:15:53 [ 15] [ 4] [0320] +17:15:53 [ 18] [ 4] [6011] +17:15:53 [ 19] [ 3] [418] +17:15:53 [ 22] [ 3] [021] +17:15:53 [ 25] [ 2] [01] +17:15:53 [ 28] [ 9] [D00002000] +17:15:53 [ 32] [ 6] [198901] +17:15:53 [ 35] [ 32] [6213544001970141=491212017014973] +17:15:53 [ 37] [ 12] [507917209404] +17:15:53 [ 41] [ 8] [19529001] +17:15:53 [ 42] [ 15] [000000041952901] +17:15:53 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:15:53 [ 49] [ 3] [418] +17:15:53 [ 52] [ 16] [C97F6A6485398A50] +17:15:53 ============================================================================ +17:15:53 + + +waiting on router queue for slot.... +17:15:53 Sending to : +17:15:53 ============================================================================ +17:15:53 Sending to : +17:15:53 ============================================================================ +17:15:53 ============================================================================ +17:15:53 Slot Id : <128> +17:15:53 Transaction Type : REQUEST +17:15:53 Received From : +17:15:53 ============================================================================ +17:15:53 FNo. Len. Field Value +17:15:53 ============================================================================ +17:15:53 [ 1] [ 4] [0200] +17:15:53 [ 2] [ 16] [6213544001970141] +17:15:53 [ 3] [ 6] [011000] +17:15:53 [ 4] [ 12] [000055000000] +17:15:53 [ 7] [ 10] [0320171613] +17:15:53 [ 11] [ 6] [209404] +17:15:53 [ 12] [ 6] [171119] +17:15:53 [ 13] [ 4] [0320] +17:15:53 [ 14] [ 4] [4912] +17:15:53 [ 15] [ 4] [0320] +17:15:53 [ 18] [ 4] [6011] +17:15:53 [ 19] [ 3] [418] +17:15:53 [ 22] [ 3] [021] +17:15:53 [ 25] [ 2] [01] +17:15:53 [ 28] [ 9] [D00002000] +17:15:53 [ 32] [ 6] [198901] +17:15:53 [ 35] [ 32] [6213544001970141=491212017014973] +17:15:53 [ 37] [ 12] [507917209404] +17:15:53 [ 41] [ 8] [19529001] +17:15:53 [ 42] [ 15] [000000041952901] +17:15:53 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:15:53 [ 49] [ 3] [418] +17:15:53 [ 52] [ 16] [C97F6A6485398A50] +17:15:53 ============================================================================ +17:15:53 + + +waiting on router queue for slot.... +17:15:53 Sending to : +17:15:53 ============================================================================ +17:15:53 ============================================================================ +17:15:53 Slot Id : <128> +17:15:53 Transaction Type : REQUEST +17:15:53 Received From : +17:15:53 ============================================================================ +17:15:53 FNo. Len. Field Value +17:15:53 ============================================================================ +17:15:53 [ 1] [ 4] [0200] +17:15:53 [ 2] [ 16] [6213544001970141] +17:15:53 [ 3] [ 6] [011000] +17:15:53 [ 4] [ 12] [000055000000] +17:15:53 [ 7] [ 10] [0320171613] +17:15:53 [ 11] [ 6] [209404] +17:15:53 [ 12] [ 6] [171119] +17:15:53 [ 13] [ 4] [0320] +17:15:53 [ 14] [ 4] [4912] +17:15:53 [ 15] [ 4] [0320] +17:15:53 [ 18] [ 4] [6011] +17:15:53 [ 19] [ 3] [418] +17:15:53 [ 22] [ 3] [021] +17:15:53 [ 25] [ 2] [01] +17:15:53 [ 28] [ 9] [D00002000] +17:15:53 [ 32] [ 6] [198901] +17:15:53 [ 35] [ 32] [6213544001970141=491212017014973] +17:15:53 [ 37] [ 12] [507917209404] +17:15:53 [ 41] [ 8] [19529001] +17:15:53 [ 42] [ 15] [000000041952901] +17:15:53 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:15:53 [ 49] [ 3] [418] +17:15:53 [ 52] [ 16] [F01AF1E8EA990068] +17:15:53 ============================================================================ +17:15:53 + + +waiting on router queue for slot.... +17:15:53 Sending to : <0> +17:15:53 ============================================================================ +17:15:53 ============================================================================ +17:15:53 Slot Id : <141> +17:15:53 Transaction Type : REQUEST +17:15:53 Received From : +17:15:53 ============================================================================ +17:15:53 FNo. Len. Field Value +17:15:53 ============================================================================ +17:15:53 [ 1] [ 4] [0200] +17:15:53 [ 2] [ 16] [6213544000040177] +17:15:53 [ 3] [ 6] [011000] +17:15:53 [ 4] [ 12] [000005000000] +17:15:53 [ 7] [ 10] [0320101500] +17:15:53 [ 11] [ 6] [270772] +17:15:53 [ 12] [ 6] [171500] +17:15:53 [ 13] [ 4] [0320] +17:15:53 [ 14] [ 4] [4912] +17:15:53 [ 15] [ 4] [0320] +17:15:53 [ 18] [ 4] [6011] +17:15:53 [ 19] [ 3] [418] +17:15:53 [ 22] [ 3] [021] +17:15:53 [ 25] [ 2] [01] +17:15:53 [ 28] [ 9] [D00002000] +17:15:53 [ 32] [ 6] [180893] +17:15:53 [ 35] [ 32] [6213544000040177=491212014017699] +17:15:53 [ 37] [ 12] [507910270772] +17:15:53 [ 41] [ 8] [0421BKPH] +17:15:53 [ 42] [ 15] [999999 ] +17:15:53 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:15:53 [ 49] [ 3] [418] +17:15:53 [ 52] [ 16] [5FCDEECCDF131B89] +17:15:53 ============================================================================ +17:15:53 + + +waiting on router queue for slot.... +17:15:53 Sending to : +17:15:53 ============================================================================ +17:15:53 Sending to : +17:15:53 ============================================================================ +17:15:54 ============================================================================ +17:15:54 Slot Id : <141> +17:15:54 Transaction Type : REQUEST +17:15:54 Received From : +17:15:54 ============================================================================ +17:15:54 FNo. Len. Field Value +17:15:54 ============================================================================ +17:15:54 [ 1] [ 4] [0200] +17:15:54 [ 2] [ 16] [6213544000040177] +17:15:54 [ 3] [ 6] [011000] +17:15:54 [ 4] [ 12] [000005000000] +17:15:54 [ 7] [ 10] [0320101500] +17:15:54 [ 11] [ 6] [270772] +17:15:54 [ 12] [ 6] [171500] +17:15:54 [ 13] [ 4] [0320] +17:15:54 [ 14] [ 4] [4912] +17:15:54 [ 15] [ 4] [0320] +17:15:54 [ 18] [ 4] [6011] +17:15:54 [ 19] [ 3] [418] +17:15:54 [ 22] [ 3] [021] +17:15:54 [ 25] [ 2] [01] +17:15:54 [ 28] [ 9] [D00002000] +17:15:54 [ 32] [ 6] [180893] +17:15:54 [ 35] [ 32] [6213544000040177=491212014017699] +17:15:54 [ 37] [ 12] [507910270772] +17:15:54 [ 41] [ 8] [0421BKPH] +17:15:54 [ 42] [ 15] [999999 ] +17:15:54 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:15:54 [ 49] [ 3] [418] +17:15:54 [ 52] [ 16] [5FCDEECCDF131B89] +17:15:54 ============================================================================ +17:15:54 + + +waiting on router queue for slot.... +17:15:54 Sending to : +17:15:54 ============================================================================ +17:15:54 ============================================================================ +17:15:54 Slot Id : <141> +17:15:54 Transaction Type : REQUEST +17:15:54 Received From : +17:15:54 ============================================================================ +17:15:54 FNo. Len. Field Value +17:15:54 ============================================================================ +17:15:54 [ 1] [ 4] [0200] +17:15:54 [ 2] [ 16] [6213544000040177] +17:15:54 [ 3] [ 6] [011000] +17:15:54 [ 4] [ 12] [000005000000] +17:15:54 [ 7] [ 10] [0320101500] +17:15:54 [ 11] [ 6] [270772] +17:15:54 [ 12] [ 6] [171500] +17:15:54 [ 13] [ 4] [0320] +17:15:54 [ 14] [ 4] [4912] +17:15:54 [ 15] [ 4] [0320] +17:15:54 [ 18] [ 4] [6011] +17:15:54 [ 19] [ 3] [418] +17:15:54 [ 22] [ 3] [021] +17:15:54 [ 25] [ 2] [01] +17:15:54 [ 28] [ 9] [D00002000] +17:15:54 [ 32] [ 6] [180893] +17:15:54 [ 35] [ 32] [6213544000040177=491212014017699] +17:15:54 [ 37] [ 12] [507910270772] +17:15:54 [ 41] [ 8] [0421BKPH] +17:15:54 [ 42] [ 15] [999999 ] +17:15:54 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:15:54 [ 49] [ 3] [418] +17:15:54 [ 52] [ 16] [F9BBB6AE26FF4B8F] +17:15:54 ============================================================================ +17:15:54 + + +waiting on router queue for slot.... +17:15:54 Sending to : <0> +17:15:54 ============================================================================ +17:15:54 ============================================================================ +17:15:54 Slot Id : <128> +17:15:54 Transaction Type : RESPONSE +17:15:54 Received From : +17:15:54 ============================================================================ +17:15:54 FNo. Len. Field Value +17:15:54 ============================================================================ +17:15:54 [ 1] [ 4] [0210] +17:15:54 [ 2] [ 16] [6213544001970141] +17:15:54 [ 3] [ 6] [011000] +17:15:54 [ 4] [ 12] [000055000000] +17:15:54 [ 7] [ 10] [0320171613] +17:15:54 [ 11] [ 6] [209404] +17:15:54 [ 12] [ 6] [171119] +17:15:54 [ 13] [ 4] [0320] +17:15:54 [ 15] [ 4] [0320] +17:15:54 [ 18] [ 4] [6011] +17:15:54 [ 19] [ 3] [418] +17:15:54 [ 32] [ 6] [198901] +17:15:54 [ 35] [ 32] [6213544001970141=491212017014973] +17:15:54 [ 37] [ 12] [507917209404] +17:15:54 [ 38] [ 6] [710280] +17:15:54 [ 39] [ 2] [00] +17:15:54 [ 41] [ 8] [19529001] +17:15:54 [ 49] [ 3] [418] +17:15:54 [ 54] [ 40] [1001418C0000074679941002418C000007467994] +17:15:54 ============================================================================ +17:15:54 Sending to : +17:15:54 ============================================================================ +17:15:54 + + +waiting on router queue for slot.... +17:15:54 ============================================================================ +17:15:54 Slot Id : <141> +17:15:54 Transaction Type : RESPONSE +17:15:54 Received From : +17:15:54 ============================================================================ +17:15:54 FNo. Len. Field Value +17:15:54 ============================================================================ +17:15:54 [ 1] [ 4] [0210] +17:15:54 [ 2] [ 16] [6213544000040177] +17:15:54 [ 3] [ 6] [011000] +17:15:54 [ 4] [ 12] [000005000000] +17:15:54 [ 7] [ 10] [0320101500] +17:15:54 [ 11] [ 6] [270772] +17:15:54 [ 12] [ 6] [171500] +17:15:54 [ 13] [ 4] [0320] +17:15:54 [ 15] [ 4] [0320] +17:15:54 [ 18] [ 4] [6011] +17:15:54 [ 19] [ 3] [418] +17:15:54 [ 32] [ 6] [180893] +17:15:54 [ 35] [ 32] [6213544000040177=491212014017699] +17:15:54 [ 37] [ 12] [507910270772] +17:15:54 [ 38] [ 6] [215717] +17:15:54 [ 39] [ 2] [00] +17:15:54 [ 41] [ 8] [0421BKPH] +17:15:54 [ 49] [ 3] [418] +17:15:54 [ 54] [ 40] [1001418C0000093049061002418C000009304906] +17:15:54 ============================================================================ +17:15:54 Sending to : +17:15:54 ============================================================================ +17:15:54 + + +waiting on router queue for slot.... +17:15:55 ============================================================================ +17:15:55 Slot Id : <128> +17:15:55 Transaction Type : RESPONSE +17:15:55 Received From : +17:15:55 ============================================================================ +17:15:55 FNo. Len. Field Value +17:15:55 ============================================================================ +17:15:55 [ 1] [ 4] [0210] +17:15:55 [ 2] [ 16] [6213544001970141] +17:15:55 [ 3] [ 6] [011000] +17:15:55 [ 4] [ 12] [000055000000] +17:15:55 [ 7] [ 10] [0320171613] +17:15:55 [ 11] [ 6] [209404] +17:15:55 [ 12] [ 6] [171119] +17:15:55 [ 13] [ 4] [0320] +17:15:55 [ 15] [ 4] [0320] +17:15:55 [ 18] [ 4] [6011] +17:15:55 [ 19] [ 3] [418] +17:15:55 [ 32] [ 6] [198901] +17:15:55 [ 35] [ 32] [6213544001970141=491212017014973] +17:15:55 [ 37] [ 12] [507917209404] +17:15:55 [ 38] [ 6] [710280] +17:15:55 [ 39] [ 2] [00] +17:15:55 [ 41] [ 8] [19529001] +17:15:55 [ 49] [ 3] [418] +17:15:55 [ 54] [ 40] [1001418C0000074679941002418C000007467994] +17:15:55 ============================================================================ +17:15:55 Calculate Source COMM Id = 5 +17:15:55 ============================================================================ +17:15:55 + + +waiting on router queue for slot.... +17:15:57 ============================================================================ +17:15:57 Slot Id : <141> +17:15:57 Transaction Type : RESPONSE +17:15:57 Received From : +17:15:57 ============================================================================ +17:15:57 FNo. Len. Field Value +17:15:57 ============================================================================ +17:15:57 [ 1] [ 4] [0210] +17:15:57 [ 2] [ 16] [6213544000040177] +17:15:57 [ 3] [ 6] [011000] +17:15:57 [ 4] [ 12] [000005000000] +17:15:57 [ 7] [ 10] [0320101500] +17:15:57 [ 11] [ 6] [270772] +17:15:57 [ 12] [ 6] [171500] +17:15:57 [ 13] [ 4] [0320] +17:15:57 [ 15] [ 4] [0320] +17:15:57 [ 18] [ 4] [6011] +17:15:57 [ 19] [ 3] [418] +17:15:57 [ 32] [ 6] [180893] +17:15:57 [ 35] [ 32] [6213544000040177=491212014017699] +17:15:57 [ 37] [ 12] [507910270772] +17:15:57 [ 38] [ 6] [215717] +17:15:57 [ 39] [ 2] [00] +17:15:57 [ 41] [ 8] [0421BKPH] +17:15:57 [ 49] [ 3] [418] +17:15:57 [ 54] [ 40] [1001418C0000093049061002418C000009304906] +17:15:57 ============================================================================ +17:15:57 Calculate Source COMM Id = 2 +17:15:57 ============================================================================ +17:15:57 + + +waiting on router queue for slot.... +17:16:03 ============================================================================ +17:16:03 Slot Id : <175> +17:16:03 Transaction Type : REQUEST +17:16:03 Received From : +17:16:03 ============================================================================ +17:16:03 FNo. Len. Field Value +17:16:03 ============================================================================ +17:16:03 [ 1] [ 4] [0800] +17:16:03 [ 2] [ 5] [02531] +17:16:03 [ 3] [ 6] [579178] +17:16:03 [ 7] [ 10] [0320101603] +17:16:03 [ 11] [ 6] [807414] +17:16:03 [ 15] [ 10] [0320101603] +17:16:03 [ 37] [ 11] [57917807414] +17:16:03 [ 70] [ 3] [001] +17:16:03 ============================================================================ +17:16:03 + + +waiting on router queue for slot.... +17:16:03 ============================================================================ +17:16:03 Slot Id : <175> +17:16:03 Transaction Type : RESPONSE +17:16:03 Received From : +17:16:03 ============================================================================ +17:16:03 FNo. Len. Field Value +17:16:03 ============================================================================ +17:16:03 [ 1] [ 4] [0810] +17:16:03 [ 7] [ 10] [0320101603] +17:16:03 [ 11] [ 6] [807414] +17:16:03 [ 15] [ 4] [0320] +17:16:03 [ 37] [ 12] [57917807414] +17:16:03 [ 39] [ 2] [00] +17:16:03 [ 70] [ 3] [001] +17:16:03 ============================================================================ +17:16:03 Sending to : +17:16:03 ============================================================================ +17:16:03 + + +waiting on router queue for slot.... +17:16:04 ============================================================================ +17:16:04 Slot Id : <170> +17:16:04 Transaction Type : REQUEST +17:16:04 Received From : +17:16:04 ============================================================================ +17:16:04 FNo. Len. Field Value +17:16:04 ============================================================================ +17:16:04 [ 1] [ 4] [0200] +17:16:04 [ 2] [ 16] [6688990108175306] +17:16:04 [ 3] [ 6] [301000] +17:16:04 [ 7] [ 10] [0320101510] +17:16:04 [ 11] [ 6] [270773] +17:16:04 [ 12] [ 6] [171510] +17:16:04 [ 13] [ 4] [0320] +17:16:04 [ 14] [ 4] [4405] +17:16:04 [ 15] [ 4] [0320] +17:16:04 [ 18] [ 4] [6011] +17:16:04 [ 19] [ 3] [418] +17:16:04 [ 22] [ 3] [021] +17:16:04 [ 25] [ 2] [01] +17:16:04 [ 32] [ 6] [180893] +17:16:04 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:16:04 [ 37] [ 12] [507910270773] +17:16:04 [ 41] [ 8] [0264UDXH] +17:16:04 [ 42] [ 15] [999999 ] +17:16:04 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +17:16:04 [ 49] [ 3] [418] +17:16:04 [ 52] [ 16] [5FE751DD5B3CBCC4] +17:16:04 ============================================================================ +17:16:04 + + +waiting on router queue for slot.... +17:16:04 Sending to : +17:16:04 ============================================================================ +17:16:04 Sending to : +17:16:04 ============================================================================ +17:16:04 ============================================================================ +17:16:04 Slot Id : <170> +17:16:04 Transaction Type : REQUEST +17:16:04 Received From : +17:16:04 ============================================================================ +17:16:04 FNo. Len. Field Value +17:16:04 ============================================================================ +17:16:04 [ 1] [ 4] [0200] +17:16:04 [ 2] [ 16] [6688990108175306] +17:16:04 [ 3] [ 6] [301000] +17:16:04 [ 7] [ 10] [0320101510] +17:16:04 [ 11] [ 6] [270773] +17:16:04 [ 12] [ 6] [171510] +17:16:04 [ 13] [ 4] [0320] +17:16:04 [ 14] [ 4] [4405] +17:16:04 [ 15] [ 4] [0320] +17:16:04 [ 18] [ 4] [6011] +17:16:04 [ 19] [ 3] [418] +17:16:04 [ 22] [ 3] [021] +17:16:04 [ 25] [ 2] [01] +17:16:04 [ 32] [ 6] [180893] +17:16:04 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:16:04 [ 37] [ 12] [507910270773] +17:16:04 [ 41] [ 8] [0264UDXH] +17:16:04 [ 42] [ 15] [999999 ] +17:16:04 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +17:16:04 [ 49] [ 3] [418] +17:16:04 [ 52] [ 16] [5FE751DD5B3CBCC4] +17:16:04 ============================================================================ +17:16:04 + + +waiting on router queue for slot.... +17:16:04 Sending to : +17:16:04 ============================================================================ +17:16:04 ============================================================================ +17:16:04 Slot Id : <170> +17:16:04 Transaction Type : REQUEST +17:16:04 Received From : +17:16:04 ============================================================================ +17:16:04 FNo. Len. Field Value +17:16:04 ============================================================================ +17:16:04 [ 1] [ 4] [0200] +17:16:04 [ 2] [ 16] [6688990108175306] +17:16:04 [ 3] [ 6] [301000] +17:16:04 [ 7] [ 10] [0320101510] +17:16:04 [ 11] [ 6] [270773] +17:16:04 [ 12] [ 6] [171510] +17:16:04 [ 13] [ 4] [0320] +17:16:04 [ 14] [ 4] [4405] +17:16:04 [ 15] [ 4] [0320] +17:16:04 [ 18] [ 4] [6011] +17:16:04 [ 19] [ 3] [418] +17:16:04 [ 22] [ 3] [021] +17:16:04 [ 25] [ 2] [01] +17:16:04 [ 32] [ 6] [180893] +17:16:04 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:16:04 [ 37] [ 12] [507910270773] +17:16:04 [ 41] [ 8] [0264UDXH] +17:16:04 [ 42] [ 15] [999999 ] +17:16:04 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +17:16:04 [ 49] [ 3] [418] +17:16:04 [ 52] [ 16] [D0A84B9AD3CCE2A9] +17:16:04 ============================================================================ +17:16:04 + + +waiting on router queue for slot.... +17:16:04 Sending to : <0> +17:16:04 ============================================================================ +17:16:05 ============================================================================ +17:16:05 Slot Id : <170> +17:16:05 Transaction Type : RESPONSE +17:16:05 Received From : +17:16:05 ============================================================================ +17:16:05 FNo. Len. Field Value +17:16:05 ============================================================================ +17:16:05 [ 1] [ 4] [0210] +17:16:05 [ 2] [ 16] [6688990108175306] +17:16:05 [ 3] [ 6] [301000] +17:16:05 [ 4] [ 12] [000000000000] +17:16:05 [ 7] [ 10] [0320101510] +17:16:05 [ 11] [ 6] [270773] +17:16:05 [ 12] [ 6] [171510] +17:16:05 [ 13] [ 4] [0320] +17:16:05 [ 15] [ 4] [0320] +17:16:05 [ 18] [ 4] [6011] +17:16:05 [ 19] [ 3] [418] +17:16:05 [ 22] [ 3] [021] +17:16:05 [ 32] [ 6] [180893] +17:16:05 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:16:05 [ 37] [ 12] [507910270773] +17:16:05 [ 39] [ 2] [14] +17:16:05 [ 41] [ 8] [0264UDXH] +17:16:05 [ 49] [ 3] [418] +17:16:05 ============================================================================ +17:16:05 Sending to : +17:16:05 ============================================================================ +17:16:05 + + +waiting on router queue for slot.... +17:16:06 ============================================================================ +17:16:06 Slot Id : <170> +17:16:06 Transaction Type : RESPONSE +17:16:06 Received From : +17:16:06 ============================================================================ +17:16:06 FNo. Len. Field Value +17:16:06 ============================================================================ +17:16:06 [ 1] [ 4] [0210] +17:16:06 [ 2] [ 16] [6688990108175306] +17:16:06 [ 3] [ 6] [301000] +17:16:06 [ 4] [ 12] [000000000000] +17:16:06 [ 7] [ 10] [0320101510] +17:16:06 [ 11] [ 6] [270773] +17:16:06 [ 12] [ 6] [171510] +17:16:06 [ 13] [ 4] [0320] +17:16:06 [ 15] [ 4] [0320] +17:16:06 [ 18] [ 4] [6011] +17:16:06 [ 19] [ 3] [418] +17:16:06 [ 22] [ 3] [021] +17:16:06 [ 32] [ 6] [180893] +17:16:06 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:16:06 [ 37] [ 12] [507910270773] +17:16:06 [ 39] [ 2] [14] +17:16:06 [ 41] [ 8] [0264UDXH] +17:16:06 [ 49] [ 3] [418] +17:16:06 ============================================================================ +17:16:06 Calculate Source COMM Id = 2 +17:16:06 ============================================================================ +17:16:06 + + +waiting on router queue for slot.... +17:16:06 ============================================================================ +17:16:06 Slot Id : <151> +17:16:06 Transaction Type : REQUEST +17:16:06 Received From : +17:16:06 ============================================================================ +17:16:06 FNo. Len. Field Value +17:16:06 ============================================================================ +17:16:06 [ 1] [ 4] [0200] +17:16:06 [ 2] [ 16] [6213544001571899] +17:16:06 [ 3] [ 6] [010000] +17:16:06 [ 4] [ 12] [000050000000] +17:16:06 [ 7] [ 10] [0320171356] +17:16:06 [ 11] [ 6] [953172] +17:16:06 [ 12] [ 6] [171356] +17:16:06 [ 13] [ 4] [0320] +17:16:06 [ 15] [ 4] [0320] +17:16:06 [ 18] [ 4] [6011] +17:16:06 [ 19] [ 3] [418] +17:16:06 [ 22] [ 3] [021] +17:16:06 [ 25] [ 2] [01] +17:16:06 [ 28] [ 9] [D00002000] +17:16:06 [ 32] [ 6] [668899] +17:16:06 [ 35] [ 32] [6213544001571899=491212017189464] +17:16:06 [ 37] [ 12] [507902025673] +17:16:06 [ 41] [ 8] [03414002] +17:16:06 [ 42] [ 15] [APT ] +17:16:06 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:16:06 [ 49] [ 3] [418] +17:16:06 [ 52] [ 16] [C3D6F457391743DE] +17:16:06 ============================================================================ +17:16:06 + + +waiting on router queue for slot.... +17:16:06 Sending to : +17:16:06 ============================================================================ +17:16:06 Sending to : +17:16:06 ============================================================================ +17:16:06 ============================================================================ +17:16:06 Slot Id : <151> +17:16:06 Transaction Type : REQUEST +17:16:06 Received From : +17:16:06 ============================================================================ +17:16:06 FNo. Len. Field Value +17:16:06 ============================================================================ +17:16:06 [ 1] [ 4] [0200] +17:16:06 [ 2] [ 16] [6213544001571899] +17:16:06 [ 3] [ 6] [010000] +17:16:06 [ 4] [ 12] [000050000000] +17:16:06 [ 7] [ 10] [0320171356] +17:16:06 [ 11] [ 6] [953172] +17:16:06 [ 12] [ 6] [171356] +17:16:06 [ 13] [ 4] [0320] +17:16:06 [ 15] [ 4] [0320] +17:16:06 [ 18] [ 4] [6011] +17:16:06 [ 19] [ 3] [418] +17:16:06 [ 22] [ 3] [021] +17:16:06 [ 25] [ 2] [01] +17:16:06 [ 28] [ 9] [D00002000] +17:16:06 [ 32] [ 6] [668899] +17:16:06 [ 35] [ 32] [6213544001571899=491212017189464] +17:16:06 [ 37] [ 12] [507902025673] +17:16:06 [ 41] [ 8] [03414002] +17:16:06 [ 42] [ 15] [APT ] +17:16:06 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:16:06 [ 49] [ 3] [418] +17:16:06 [ 52] [ 16] [C3D6F457391743DE] +17:16:06 ============================================================================ +17:16:06 + + +waiting on router queue for slot.... +17:16:06 Sending to : +17:16:06 ============================================================================ +17:16:06 ============================================================================ +17:16:06 Slot Id : <151> +17:16:06 Transaction Type : REQUEST +17:16:06 Received From : +17:16:06 ============================================================================ +17:16:06 FNo. Len. Field Value +17:16:06 ============================================================================ +17:16:06 [ 1] [ 4] [0200] +17:16:06 [ 2] [ 16] [6213544001571899] +17:16:06 [ 3] [ 6] [010000] +17:16:06 [ 4] [ 12] [000050000000] +17:16:06 [ 7] [ 10] [0320171356] +17:16:06 [ 11] [ 6] [953172] +17:16:06 [ 12] [ 6] [171356] +17:16:06 [ 13] [ 4] [0320] +17:16:06 [ 15] [ 4] [0320] +17:16:06 [ 18] [ 4] [6011] +17:16:06 [ 19] [ 3] [418] +17:16:06 [ 22] [ 3] [021] +17:16:06 [ 25] [ 2] [01] +17:16:06 [ 28] [ 9] [D00002000] +17:16:06 [ 32] [ 6] [668899] +17:16:06 [ 35] [ 32] [6213544001571899=491212017189464] +17:16:06 [ 37] [ 12] [507902025673] +17:16:06 [ 41] [ 8] [03414002] +17:16:06 [ 42] [ 15] [APT ] +17:16:06 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:16:06 [ 49] [ 3] [418] +17:16:06 [ 52] [ 16] [AD1DD120A68221EE] +17:16:06 ============================================================================ +17:16:06 + + +waiting on router queue for slot.... +17:16:06 Sending to : <0> +17:16:06 ============================================================================ +17:16:07 ============================================================================ +17:16:07 Slot Id : <151> +17:16:07 Transaction Type : RESPONSE +17:16:07 Received From : +17:16:07 ============================================================================ +17:16:07 FNo. Len. Field Value +17:16:07 ============================================================================ +17:16:07 [ 1] [ 4] [0210] +17:16:07 [ 2] [ 16] [6213544001571899] +17:16:07 [ 3] [ 6] [010000] +17:16:07 [ 4] [ 12] [000050000000] +17:16:07 [ 7] [ 10] [0320171356] +17:16:07 [ 11] [ 6] [953172] +17:16:07 [ 12] [ 6] [171356] +17:16:07 [ 13] [ 4] [0320] +17:16:07 [ 15] [ 4] [0320] +17:16:07 [ 18] [ 4] [6011] +17:16:07 [ 19] [ 3] [418] +17:16:07 [ 22] [ 3] [021] +17:16:07 [ 32] [ 6] [668899] +17:16:07 [ 35] [ 32] [6213544001571899=491212017189464] +17:16:07 [ 37] [ 12] [507902025673] +17:16:07 [ 39] [ 2] [05] +17:16:07 [ 41] [ 8] [03414002] +17:16:07 [ 49] [ 3] [418] +17:16:07 ============================================================================ +17:16:07 Sending to : +17:16:07 ============================================================================ +17:16:07 + + +waiting on router queue for slot.... +17:16:09 ============================================================================ +17:16:09 Slot Id : <151> +17:16:09 Transaction Type : RESPONSE +17:16:09 Received From : +17:16:09 ============================================================================ +17:16:09 FNo. Len. Field Value +17:16:09 ============================================================================ +17:16:09 [ 1] [ 4] [0210] +17:16:09 [ 2] [ 16] [6213544001571899] +17:16:09 [ 3] [ 6] [010000] +17:16:09 [ 4] [ 12] [000050000000] +17:16:09 [ 7] [ 10] [0320171356] +17:16:09 [ 11] [ 6] [953172] +17:16:09 [ 12] [ 6] [171356] +17:16:09 [ 13] [ 4] [0320] +17:16:09 [ 15] [ 4] [0320] +17:16:09 [ 18] [ 4] [6011] +17:16:09 [ 19] [ 3] [418] +17:16:09 [ 22] [ 3] [021] +17:16:09 [ 32] [ 6] [668899] +17:16:09 [ 35] [ 32] [6213544001571899=491212017189464] +17:16:09 [ 37] [ 12] [507902025673] +17:16:09 [ 39] [ 2] [05] +17:16:09 [ 41] [ 8] [03414002] +17:16:09 [ 49] [ 3] [418] +17:16:09 ============================================================================ +17:16:09 Calculate Source COMM Id = 4 +17:16:09 ============================================================================ +17:16:09 + + +waiting on router queue for slot.... +17:16:15 ============================================================================ +17:16:15 Slot Id : <172> +17:16:15 Transaction Type : REQUEST +17:16:15 Received From : +17:16:15 ============================================================================ +17:16:15 FNo. Len. Field Value +17:16:15 ============================================================================ +17:16:15 [ 1] [ 4] [0200] +17:16:15 [ 2] [ 16] [1808930500011291] +17:16:15 [ 3] [ 6] [011000] +17:16:15 [ 4] [ 12] [000005000000] +17:16:15 [ 7] [ 10] [0320171610] +17:16:15 [ 11] [ 6] [812599] +17:16:15 [ 12] [ 6] [171610] +17:16:15 [ 13] [ 4] [0320] +17:16:15 [ 15] [ 4] [0320] +17:16:15 [ 18] [ 4] [6011] +17:16:15 [ 22] [ 3] [900] +17:16:15 [ 25] [ 2] [02] +17:16:15 [ 28] [ 9] [D00002000] +17:16:15 [ 32] [ 6] [621354] +17:16:15 [ 35] [ 27] [1808930500011291=1803500785] +17:16:15 [ 37] [ 12] [507903161484] +17:16:15 [ 41] [ 8] [04002600] +17:16:15 [ 42] [ 15] [NATIVE ] +17:16:15 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +17:16:15 [ 49] [ 3] [418] +17:16:15 [ 52] [ 16] [CEDF6176C729AFBF] +17:16:15 ============================================================================ +17:16:15 + + +waiting on router queue for slot.... +17:16:15 Sending to : +17:16:15 ============================================================================ +17:16:15 Sending to : +17:16:15 ============================================================================ +17:16:15 ============================================================================ +17:16:15 Slot Id : <172> +17:16:15 Transaction Type : REQUEST +17:16:15 Received From : +17:16:15 ============================================================================ +17:16:15 FNo. Len. Field Value +17:16:15 ============================================================================ +17:16:15 [ 1] [ 4] [0200] +17:16:15 [ 2] [ 16] [1808930500011291] +17:16:15 [ 3] [ 6] [011000] +17:16:15 [ 4] [ 12] [000005000000] +17:16:15 [ 7] [ 10] [0320171610] +17:16:15 [ 11] [ 6] [812599] +17:16:15 [ 12] [ 6] [171610] +17:16:15 [ 13] [ 4] [0320] +17:16:15 [ 15] [ 4] [0320] +17:16:15 [ 18] [ 4] [6011] +17:16:15 [ 22] [ 3] [900] +17:16:15 [ 25] [ 2] [02] +17:16:15 [ 28] [ 9] [D00002000] +17:16:15 [ 32] [ 6] [621354] +17:16:15 [ 35] [ 27] [1808930500011291=1803500785] +17:16:15 [ 37] [ 12] [507903161484] +17:16:15 [ 41] [ 8] [04002600] +17:16:15 [ 42] [ 15] [NATIVE ] +17:16:15 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +17:16:15 [ 49] [ 3] [418] +17:16:15 [ 52] [ 16] [CEDF6176C729AFBF] +17:16:15 ============================================================================ +17:16:15 + + +waiting on router queue for slot.... +17:16:15 Sending to : +17:16:15 ============================================================================ +17:16:15 ============================================================================ +17:16:15 Slot Id : <172> +17:16:15 Transaction Type : REQUEST +17:16:15 Received From : +17:16:15 ============================================================================ +17:16:15 FNo. Len. Field Value +17:16:15 ============================================================================ +17:16:15 [ 1] [ 4] [0200] +17:16:15 [ 2] [ 16] [1808930500011291] +17:16:15 [ 3] [ 6] [011000] +17:16:15 [ 4] [ 12] [000005000000] +17:16:15 [ 7] [ 10] [0320171610] +17:16:15 [ 11] [ 6] [812599] +17:16:15 [ 12] [ 6] [171610] +17:16:15 [ 13] [ 4] [0320] +17:16:15 [ 15] [ 4] [0320] +17:16:15 [ 18] [ 4] [6011] +17:16:15 [ 22] [ 3] [900] +17:16:15 [ 25] [ 2] [02] +17:16:15 [ 28] [ 9] [D00002000] +17:16:15 [ 32] [ 6] [621354] +17:16:15 [ 35] [ 27] [1808930500011291=1803500785] +17:16:15 [ 37] [ 12] [507903161484] +17:16:15 [ 41] [ 8] [04002600] +17:16:15 [ 42] [ 15] [NATIVE ] +17:16:15 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +17:16:15 [ 49] [ 3] [418] +17:16:15 [ 52] [ 16] [7F10714BBE16C7C8] +17:16:15 ============================================================================ +17:16:15 + + +waiting on router queue for slot.... +17:16:15 Sending to : <2> +17:16:15 ============================================================================ +17:16:16 ============================================================================ +17:16:16 Slot Id : <172> +17:16:16 Transaction Type : RESPONSE +17:16:16 Received From : +17:16:16 ============================================================================ +17:16:16 FNo. Len. Field Value +17:16:16 ============================================================================ +17:16:16 [ 1] [ 4] [0210] +17:16:16 [ 2] [ 16] [1808930500011291] +17:16:16 [ 3] [ 6] [011000] +17:16:16 [ 4] [ 12] [000005000000] +17:16:16 [ 6] [ 12] [000005000000] +17:16:16 [ 7] [ 10] [0320171610] +17:16:16 [ 11] [ 6] [812599] +17:16:16 [ 12] [ 6] [171610] +17:16:16 [ 13] [ 4] [0320] +17:16:16 [ 18] [ 4] [6011] +17:16:16 [ 19] [ 3] [418] +17:16:16 [ 22] [ 3] [021] +17:16:16 [ 28] [ 9] [D00002000] +17:16:16 [ 32] [ 6] [621354] +17:16:16 [ 35] [ 27] [1808930500011291=1803500785] +17:16:16 [ 37] [ 12] [507903161484] +17:16:16 [ 39] [ 2] [55] +17:16:16 [ 41] [ 8] [04002600] +17:16:16 [ 49] [ 3] [418] +17:16:16 [ 51] [ 3] [418] +17:16:16 [ 52] [ 16] [7F10714BBE16C7C8] +17:16:16 ============================================================================ +17:16:16 Sending to : +17:16:16 ============================================================================ +17:16:16 + + +waiting on router queue for slot.... +17:16:16 ============================================================================ +17:16:16 Slot Id : <171> +17:16:16 Transaction Type : REQUEST +17:16:16 Received From : +17:16:16 ============================================================================ +17:16:16 FNo. Len. Field Value +17:16:16 ============================================================================ +17:16:16 [ 1] [ 4] [0200] +17:16:16 [ 2] [ 16] [6213548000206316] +17:16:16 [ 3] [ 6] [010000] +17:16:16 [ 4] [ 12] [000050000000] +17:16:16 [ 7] [ 10] [0320101523] +17:16:16 [ 11] [ 6] [270777] +17:16:16 [ 12] [ 6] [171523] +17:16:16 [ 13] [ 4] [0320] +17:16:16 [ 14] [ 4] [1712] +17:16:16 [ 15] [ 4] [0320] +17:16:16 [ 18] [ 4] [6011] +17:16:16 [ 19] [ 3] [418] +17:16:16 [ 22] [ 3] [021] +17:16:16 [ 25] [ 2] [01] +17:16:16 [ 28] [ 9] [D00002000] +17:16:16 [ 32] [ 6] [180893] +17:16:16 [ 35] [ 32] [6213548000206316=171212010631004] +17:16:16 [ 37] [ 12] [507910270777] +17:16:16 [ 41] [ 8] [0522XYXH] +17:16:16 [ 42] [ 15] [999999 ] +17:16:16 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +17:16:16 [ 49] [ 3] [418] +17:16:16 [ 52] [ 16] [776D4BF8AC10337D] +17:16:16 ============================================================================ +17:16:16 + + +waiting on router queue for slot.... +17:16:16 Sending to : +17:16:16 ============================================================================ +17:16:16 Sending to : +17:16:16 ============================================================================ +17:16:17 ============================================================================ +17:16:17 Slot Id : <171> +17:16:17 Transaction Type : REQUEST +17:16:17 Received From : +17:16:17 ============================================================================ +17:16:17 FNo. Len. Field Value +17:16:17 ============================================================================ +17:16:17 [ 1] [ 4] [0200] +17:16:17 [ 2] [ 16] [6213548000206316] +17:16:17 [ 3] [ 6] [010000] +17:16:17 [ 4] [ 12] [000050000000] +17:16:17 [ 7] [ 10] [0320101523] +17:16:17 [ 11] [ 6] [270777] +17:16:17 [ 12] [ 6] [171523] +17:16:17 [ 13] [ 4] [0320] +17:16:17 [ 14] [ 4] [1712] +17:16:17 [ 15] [ 4] [0320] +17:16:17 [ 18] [ 4] [6011] +17:16:17 [ 19] [ 3] [418] +17:16:17 [ 22] [ 3] [021] +17:16:17 [ 25] [ 2] [01] +17:16:17 [ 28] [ 9] [D00002000] +17:16:17 [ 32] [ 6] [180893] +17:16:17 [ 35] [ 32] [6213548000206316=171212010631004] +17:16:17 [ 37] [ 12] [507910270777] +17:16:17 [ 41] [ 8] [0522XYXH] +17:16:17 [ 42] [ 15] [999999 ] +17:16:17 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +17:16:17 [ 49] [ 3] [418] +17:16:17 [ 52] [ 16] [776D4BF8AC10337D] +17:16:17 ============================================================================ +17:16:17 + + +waiting on router queue for slot.... +17:16:17 Sending to : +17:16:17 ============================================================================ +17:16:17 ============================================================================ +17:16:17 Slot Id : <171> +17:16:17 Transaction Type : REQUEST +17:16:17 Received From : +17:16:17 ============================================================================ +17:16:17 FNo. Len. Field Value +17:16:17 ============================================================================ +17:16:17 [ 1] [ 4] [0200] +17:16:17 [ 2] [ 16] [6213548000206316] +17:16:17 [ 3] [ 6] [010000] +17:16:17 [ 4] [ 12] [000050000000] +17:16:17 [ 7] [ 10] [0320101523] +17:16:17 [ 11] [ 6] [270777] +17:16:17 [ 12] [ 6] [171523] +17:16:17 [ 13] [ 4] [0320] +17:16:17 [ 14] [ 4] [1712] +17:16:17 [ 15] [ 4] [0320] +17:16:17 [ 18] [ 4] [6011] +17:16:17 [ 19] [ 3] [418] +17:16:17 [ 22] [ 3] [021] +17:16:17 [ 25] [ 2] [01] +17:16:17 [ 28] [ 9] [D00002000] +17:16:17 [ 32] [ 6] [180893] +17:16:17 [ 35] [ 32] [6213548000206316=171212010631004] +17:16:17 [ 37] [ 12] [507910270777] +17:16:17 [ 41] [ 8] [0522XYXH] +17:16:17 [ 42] [ 15] [999999 ] +17:16:17 [ 43] [ 40] [ATM XIENGHON LOCATION, Xienghon, Lao Peo] +17:16:17 [ 49] [ 3] [418] +17:16:17 [ 52] [ 16] [78731E829C3C854A] +17:16:17 ============================================================================ +17:16:17 + + +waiting on router queue for slot.... +17:16:17 Sending to : <0> +17:16:17 ============================================================================ +17:16:17 ============================================================================ +17:16:17 Slot Id : <171> +17:16:17 Transaction Type : RESPONSE +17:16:17 Received From : +17:16:17 ============================================================================ +17:16:17 FNo. Len. Field Value +17:16:17 ============================================================================ +17:16:17 [ 1] [ 4] [0210] +17:16:17 [ 2] [ 16] [6213548000206316] +17:16:17 [ 3] [ 6] [010000] +17:16:17 [ 4] [ 12] [000050000000] +17:16:17 [ 7] [ 10] [0320101523] +17:16:17 [ 11] [ 6] [270777] +17:16:17 [ 12] [ 6] [171523] +17:16:17 [ 13] [ 4] [0320] +17:16:17 [ 15] [ 4] [0320] +17:16:17 [ 18] [ 4] [6011] +17:16:17 [ 19] [ 3] [418] +17:16:17 [ 22] [ 3] [021] +17:16:17 [ 32] [ 6] [180893] +17:16:17 [ 35] [ 32] [6213548000206316=171212010631004] +17:16:17 [ 37] [ 12] [507910270777] +17:16:17 [ 38] [ 6] [171612] +17:16:17 [ 39] [ 2] [55] +17:16:17 [ 41] [ 8] [0522XYXH] +17:16:17 [ 49] [ 3] [418] +17:16:17 ============================================================================ +17:16:17 Sending to : +17:16:17 ============================================================================ +17:16:17 + + +waiting on router queue for slot.... +17:16:17 ============================================================================ +17:16:17 Slot Id : <172> +17:16:17 Transaction Type : RESPONSE +17:16:17 Received From : +17:16:17 ============================================================================ +17:16:17 FNo. Len. Field Value +17:16:17 ============================================================================ +17:16:17 [ 1] [ 4] [0210] +17:16:17 [ 2] [ 16] [1808930500011291] +17:16:17 [ 3] [ 6] [011000] +17:16:17 [ 4] [ 12] [000005000000] +17:16:17 [ 6] [ 12] [000005000000] +17:16:17 [ 7] [ 10] [0320171610] +17:16:17 [ 11] [ 6] [812599] +17:16:17 [ 12] [ 6] [171610] +17:16:17 [ 13] [ 4] [0320] +17:16:17 [ 18] [ 4] [6011] +17:16:17 [ 19] [ 3] [418] +17:16:17 [ 22] [ 3] [021] +17:16:17 [ 28] [ 9] [D00002000] +17:16:17 [ 32] [ 6] [621354] +17:16:17 [ 35] [ 27] [1808930500011291=1803500785] +17:16:17 [ 37] [ 12] [507903161484] +17:16:17 [ 39] [ 2] [55] +17:16:17 [ 41] [ 8] [04002600] +17:16:17 [ 49] [ 3] [418] +17:16:17 [ 51] [ 3] [418] +17:16:17 [ 52] [ 16] [7F10714BBE16C7C8] +17:16:17 ============================================================================ +17:16:17 Calculate Source COMM Id = 0 +17:16:17 ============================================================================ +17:16:17 + + +waiting on router queue for slot.... +17:16:18 ============================================================================ +17:16:18 Slot Id : <171> +17:16:18 Transaction Type : RESPONSE +17:16:18 Received From : +17:16:18 ============================================================================ +17:16:18 FNo. Len. Field Value +17:16:18 ============================================================================ +17:16:18 [ 1] [ 4] [0210] +17:16:18 [ 2] [ 16] [6213548000206316] +17:16:18 [ 3] [ 6] [010000] +17:16:18 [ 4] [ 12] [000050000000] +17:16:18 [ 7] [ 10] [0320101523] +17:16:18 [ 11] [ 6] [270777] +17:16:18 [ 12] [ 6] [171523] +17:16:18 [ 13] [ 4] [0320] +17:16:18 [ 15] [ 4] [0320] +17:16:18 [ 18] [ 4] [6011] +17:16:18 [ 19] [ 3] [418] +17:16:18 [ 22] [ 3] [021] +17:16:18 [ 32] [ 6] [180893] +17:16:18 [ 35] [ 32] [6213548000206316=171212010631004] +17:16:18 [ 37] [ 12] [507910270777] +17:16:18 [ 38] [ 6] [171612] +17:16:18 [ 39] [ 2] [55] +17:16:18 [ 41] [ 8] [0522XYXH] +17:16:18 [ 49] [ 3] [418] +17:16:18 ============================================================================ +17:16:18 Calculate Source COMM Id = 2 +17:16:18 ============================================================================ +17:16:18 + + +waiting on router queue for slot.... +17:16:19 ============================================================================ +17:16:19 Slot Id : <186> +17:16:19 Transaction Type : REQUEST +17:16:19 Received From : +17:16:19 ============================================================================ +17:16:19 FNo. Len. Field Value +17:16:19 ============================================================================ +17:16:19 [ 1] [ 4] [0200] +17:16:19 [ 2] [ 16] [6688990106552308] +17:16:19 [ 3] [ 6] [300000] +17:16:19 [ 4] [ 12] [000000000000] +17:16:19 [ 7] [ 10] [0320171614] +17:16:19 [ 11] [ 6] [812619] +17:16:19 [ 12] [ 6] [171614] +17:16:19 [ 13] [ 4] [0320] +17:16:19 [ 15] [ 4] [0320] +17:16:19 [ 18] [ 4] [6011] +17:16:19 [ 22] [ 3] [900] +17:16:19 [ 25] [ 2] [02] +17:16:19 [ 28] [ 9] [D00000000] +17:16:19 [ 32] [ 6] [621354] +17:16:19 [ 35] [ 37] [6688990106552308=43121231230837000000] +17:16:19 [ 37] [ 12] [507905200943] +17:16:19 [ 41] [ 8] [07001700] +17:16:19 [ 42] [ 15] [NATIVE ] +17:16:19 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +17:16:19 [ 49] [ 3] [418] +17:16:19 [ 52] [ 16] [7B4CCFB4831F4A75] +17:16:19 ============================================================================ +17:16:19 + + +waiting on router queue for slot.... +17:16:19 Sending to : +17:16:19 ============================================================================ +17:16:19 Sending to : +17:16:19 ============================================================================ +17:16:20 ============================================================================ +17:16:20 Slot Id : <186> +17:16:20 Transaction Type : REQUEST +17:16:20 Received From : +17:16:20 ============================================================================ +17:16:20 FNo. Len. Field Value +17:16:20 ============================================================================ +17:16:20 [ 1] [ 4] [0200] +17:16:20 [ 2] [ 16] [6688990106552308] +17:16:20 [ 3] [ 6] [300000] +17:16:20 [ 4] [ 12] [000000000000] +17:16:20 [ 7] [ 10] [0320171614] +17:16:20 [ 11] [ 6] [812619] +17:16:20 [ 12] [ 6] [171614] +17:16:20 [ 13] [ 4] [0320] +17:16:20 [ 15] [ 4] [0320] +17:16:20 [ 18] [ 4] [6011] +17:16:20 [ 22] [ 3] [900] +17:16:20 [ 25] [ 2] [02] +17:16:20 [ 28] [ 9] [D00000000] +17:16:20 [ 32] [ 6] [621354] +17:16:20 [ 35] [ 37] [6688990106552308=43121231230837000000] +17:16:20 [ 37] [ 12] [507905200943] +17:16:20 [ 41] [ 8] [07001700] +17:16:20 [ 42] [ 15] [NATIVE ] +17:16:20 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +17:16:20 [ 49] [ 3] [418] +17:16:20 [ 52] [ 16] [7B4CCFB4831F4A75] +17:16:20 ============================================================================ +17:16:20 + + +waiting on router queue for slot.... +17:16:20 Sending to : +17:16:20 ============================================================================ +17:16:20 ============================================================================ +17:16:20 Slot Id : <186> +17:16:20 Transaction Type : REQUEST +17:16:20 Received From : +17:16:20 ============================================================================ +17:16:20 FNo. Len. Field Value +17:16:20 ============================================================================ +17:16:20 [ 1] [ 4] [0200] +17:16:20 [ 2] [ 16] [6688990106552308] +17:16:20 [ 3] [ 6] [300000] +17:16:20 [ 4] [ 12] [000000000000] +17:16:20 [ 7] [ 10] [0320171614] +17:16:20 [ 11] [ 6] [812619] +17:16:20 [ 12] [ 6] [171614] +17:16:20 [ 13] [ 4] [0320] +17:16:20 [ 15] [ 4] [0320] +17:16:20 [ 18] [ 4] [6011] +17:16:20 [ 22] [ 3] [900] +17:16:20 [ 25] [ 2] [02] +17:16:20 [ 28] [ 9] [D00000000] +17:16:20 [ 32] [ 6] [621354] +17:16:20 [ 35] [ 37] [6688990106552308=43121231230837000000] +17:16:20 [ 37] [ 12] [507905200943] +17:16:20 [ 41] [ 8] [07001700] +17:16:20 [ 42] [ 15] [NATIVE ] +17:16:20 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +17:16:20 [ 49] [ 3] [418] +17:16:20 [ 52] [ 16] [3476803733346755] +17:16:20 ============================================================================ +17:16:20 + + +waiting on router queue for slot.... +17:16:20 Sending to : <4> +17:16:20 ============================================================================ +17:16:22 ============================================================================ +17:16:22 Slot Id : <186> +17:16:22 Transaction Type : RESPONSE +17:16:22 Received From : +17:16:22 ============================================================================ +17:16:22 FNo. Len. Field Value +17:16:22 ============================================================================ +17:16:22 [ 1] [ 4] [0210] +17:16:22 [ 2] [ 16] [6688990106552308] +17:16:22 [ 3] [ 6] [300000] +17:16:22 [ 4] [ 12] [000000000000] +17:16:22 [ 11] [ 6] [812619] +17:16:22 [ 12] [ 6] [171614] +17:16:22 [ 15] [ 4] [0320] +17:16:22 [ 18] [ 4] [6011] +17:16:22 [ 32] [ 6] [621354] +17:16:22 [ 35] [ 37] [6688990106552308=43121231230837000000] +17:16:22 [ 37] [ 12] [507905200943] +17:16:22 [ 38] [ 6] [061504] +17:16:22 [ 39] [ 2] [00] +17:16:22 [ 41] [ 8] [07001700] +17:16:22 [ 49] [ 3] [418] +17:16:22 [ 54] [ 20] [0002418C000196255548] +17:16:22 ============================================================================ +17:16:22 Sending to : +17:16:22 ============================================================================ +17:16:22 + + +waiting on router queue for slot.... +17:16:22 ============================================================================ +17:16:22 Slot Id : <164> +17:16:22 Transaction Type : REQUEST +17:16:22 Received From : +17:16:22 ============================================================================ +17:16:22 FNo. Len. Field Value +17:16:22 ============================================================================ +17:16:22 [ 1] [ 4] [0800] +17:16:22 [ 7] [ 10] [0320101412] +17:16:22 [ 11] [ 6] [065280] +17:16:22 [ 37] [ 12] [57917065280] +17:16:22 [ 70] [ 3] [301] +17:16:22 ============================================================================ +17:16:22 + + +waiting on router queue for slot.... +17:16:22 Sending to : +17:16:22 ============================================================================ +17:16:22 ============================================================================ +17:16:22 Slot Id : <164> +17:16:22 Transaction Type : RESPONSE +17:16:22 Received From : +17:16:22 ============================================================================ +17:16:22 FNo. Len. Field Value +17:16:22 ============================================================================ +17:16:22 [ 1] [ 4] [0810] +17:16:22 [ 7] [ 10] [0320101412] +17:16:22 [ 11] [ 6] [065280] +17:16:22 [ 37] [ 12] [579170652800] +17:16:22 [ 39] [ 2] [00] +17:16:22 [ 70] [ 3] [810] +17:16:22 ============================================================================ +17:16:22 Calculate Source COMM Id = 4 +17:16:22 ============================================================================ +17:16:22 + + +waiting on router queue for slot.... +17:16:23 ============================================================================ +17:16:23 Slot Id : <186> +17:16:23 Transaction Type : RESPONSE +17:16:23 Received From : +17:16:23 ============================================================================ +17:16:23 FNo. Len. Field Value +17:16:23 ============================================================================ +17:16:23 [ 1] [ 4] [0210] +17:16:23 [ 2] [ 16] [6688990106552308] +17:16:23 [ 3] [ 6] [300000] +17:16:23 [ 4] [ 12] [000000000000] +17:16:23 [ 11] [ 6] [812619] +17:16:23 [ 12] [ 6] [171614] +17:16:23 [ 15] [ 4] [0320] +17:16:23 [ 18] [ 4] [6011] +17:16:23 [ 32] [ 6] [621354] +17:16:23 [ 35] [ 37] [6688990106552308=43121231230837000000] +17:16:23 [ 37] [ 12] [507905200943] +17:16:23 [ 38] [ 6] [061504] +17:16:23 [ 39] [ 2] [00] +17:16:23 [ 41] [ 8] [07001700] +17:16:23 [ 49] [ 3] [418] +17:16:23 [ 54] [ 20] [0002418C000196255548] +17:16:23 ============================================================================ +17:16:23 Calculate Source COMM Id = 0 +17:16:23 ============================================================================ +17:16:23 + + +waiting on router queue for slot.... +17:16:31 ============================================================================ +17:16:31 Slot Id : <126> +17:16:31 Transaction Type : REQUEST +17:16:31 Received From : +17:16:31 ============================================================================ +17:16:31 FNo. Len. Field Value +17:16:31 ============================================================================ +17:16:31 [ 1] [ 4] [0200] +17:16:31 [ 2] [ 16] [6688990103637607] +17:16:31 [ 3] [ 6] [010000] +17:16:31 [ 4] [ 12] [000040000000] +17:16:31 [ 7] [ 10] [0320171626] +17:16:31 [ 11] [ 6] [812678] +17:16:31 [ 12] [ 6] [171626] +17:16:31 [ 13] [ 4] [0320] +17:16:31 [ 15] [ 4] [0320] +17:16:31 [ 18] [ 4] [6011] +17:16:31 [ 22] [ 3] [900] +17:16:31 [ 25] [ 2] [02] +17:16:31 [ 28] [ 9] [D00002000] +17:16:31 [ 32] [ 6] [621354] +17:16:31 [ 35] [ 37] [6688990103637607=43011231760728200000] +17:16:31 [ 37] [ 12] [507903499664] +17:16:31 [ 41] [ 8] [06002200] +17:16:31 [ 42] [ 15] [NATIVE ] +17:16:31 [ 43] [ 40] [Beng Market Beng LAO] +17:16:31 [ 49] [ 3] [418] +17:16:31 [ 52] [ 16] [8F15CA6B39729CF3] +17:16:31 ============================================================================ +17:16:31 + + +waiting on router queue for slot.... +17:16:31 Sending to : +17:16:31 ============================================================================ +17:16:31 Sending to : +17:16:31 ============================================================================ +17:16:31 ============================================================================ +17:16:31 Slot Id : <126> +17:16:31 Transaction Type : REQUEST +17:16:31 Received From : +17:16:31 ============================================================================ +17:16:31 FNo. Len. Field Value +17:16:31 ============================================================================ +17:16:31 [ 1] [ 4] [0200] +17:16:31 [ 2] [ 16] [6688990103637607] +17:16:31 [ 3] [ 6] [010000] +17:16:31 [ 4] [ 12] [000040000000] +17:16:31 [ 7] [ 10] [0320171626] +17:16:31 [ 11] [ 6] [812678] +17:16:31 [ 12] [ 6] [171626] +17:16:31 [ 13] [ 4] [0320] +17:16:31 [ 15] [ 4] [0320] +17:16:31 [ 18] [ 4] [6011] +17:16:31 [ 22] [ 3] [900] +17:16:31 [ 25] [ 2] [02] +17:16:31 [ 28] [ 9] [D00002000] +17:16:31 [ 32] [ 6] [621354] +17:16:31 [ 35] [ 37] [6688990103637607=43011231760728200000] +17:16:31 [ 37] [ 12] [507903499664] +17:16:31 [ 41] [ 8] [06002200] +17:16:31 [ 42] [ 15] [NATIVE ] +17:16:31 [ 43] [ 40] [Beng Market Beng LAO] +17:16:31 [ 49] [ 3] [418] +17:16:31 [ 52] [ 16] [8F15CA6B39729CF3] +17:16:31 ============================================================================ +17:16:31 + + +waiting on router queue for slot.... +17:16:31 Sending to : +17:16:31 ============================================================================ +17:16:31 ============================================================================ +17:16:31 Slot Id : <126> +17:16:31 Transaction Type : REQUEST +17:16:31 Received From : +17:16:31 ============================================================================ +17:16:31 FNo. Len. Field Value +17:16:31 ============================================================================ +17:16:31 [ 1] [ 4] [0200] +17:16:31 [ 2] [ 16] [6688990103637607] +17:16:31 [ 3] [ 6] [010000] +17:16:31 [ 4] [ 12] [000040000000] +17:16:31 [ 7] [ 10] [0320171626] +17:16:31 [ 11] [ 6] [812678] +17:16:31 [ 12] [ 6] [171626] +17:16:31 [ 13] [ 4] [0320] +17:16:31 [ 15] [ 4] [0320] +17:16:31 [ 18] [ 4] [6011] +17:16:31 [ 22] [ 3] [900] +17:16:31 [ 25] [ 2] [02] +17:16:31 [ 28] [ 9] [D00002000] +17:16:31 [ 32] [ 6] [621354] +17:16:31 [ 35] [ 37] [6688990103637607=43011231760728200000] +17:16:31 [ 37] [ 12] [507903499664] +17:16:31 [ 41] [ 8] [06002200] +17:16:31 [ 42] [ 15] [NATIVE ] +17:16:31 [ 43] [ 40] [Beng Market Beng LAO] +17:16:31 [ 49] [ 3] [418] +17:16:31 [ 52] [ 16] [23F7F8A1CEC3D465] +17:16:31 ============================================================================ +17:16:31 + + +waiting on router queue for slot.... +17:16:31 Sending to : <4> +17:16:31 ============================================================================ +17:16:32 ============================================================================ +17:16:32 Slot Id : <126> +17:16:32 Transaction Type : RESPONSE +17:16:32 Received From : +17:16:32 ============================================================================ +17:16:32 FNo. Len. Field Value +17:16:32 ============================================================================ +17:16:32 [ 1] [ 4] [0210] +17:16:32 [ 2] [ 16] [6688990103637607] +17:16:32 [ 3] [ 6] [010000] +17:16:32 [ 4] [ 12] [000040000000] +17:16:32 [ 11] [ 6] [812678] +17:16:32 [ 12] [ 6] [171626] +17:16:32 [ 15] [ 4] [0320] +17:16:32 [ 18] [ 4] [6011] +17:16:32 [ 32] [ 6] [621354] +17:16:32 [ 35] [ 37] [6688990103637607=43011231760728200000] +17:16:32 [ 37] [ 12] [507903499664] +17:16:32 [ 38] [ 6] [567221] +17:16:32 [ 39] [ 2] [00] +17:16:32 [ 41] [ 8] [06002200] +17:16:32 [ 49] [ 3] [418] +17:16:32 [ 54] [ 20] [0002418C000201894623] +17:16:32 ============================================================================ +17:16:32 Sending to : +17:16:32 ============================================================================ +17:16:32 + + +waiting on router queue for slot.... +17:16:33 ============================================================================ +17:16:33 Slot Id : <139> +17:16:33 Transaction Type : REQUEST +17:16:33 Received From : +17:16:33 ============================================================================ +17:16:33 FNo. Len. Field Value +17:16:33 ============================================================================ +17:16:33 [ 1] [ 4] [0800] +17:16:33 [ 7] [ 10] [0320101539] +17:16:33 [ 11] [ 6] [157418] +17:16:33 [ 70] [ 3] [301] +17:16:33 ============================================================================ +17:16:33 + + +waiting on router queue for slot.... +17:16:33 Sending to : +17:16:33 ============================================================================ +17:16:33 ============================================================================ +17:16:33 Slot Id : <139> +17:16:33 Transaction Type : RESPONSE +17:16:33 Received From : +17:16:33 ============================================================================ +17:16:33 FNo. Len. Field Value +17:16:33 ============================================================================ +17:16:33 [ 1] [ 4] [0810] +17:16:33 [ 7] [ 10] [0320101539] +17:16:33 [ 11] [ 6] [157418] +17:16:33 [ 39] [ 2] [00] +17:16:33 [ 70] [ 3] [301] +17:16:33 ============================================================================ +17:16:33 Calculate Source COMM Id = 2 +17:16:33 ============================================================================ +17:16:33 + + +waiting on router queue for slot.... +17:16:34 ============================================================================ +17:16:34 Slot Id : <126> +17:16:34 Transaction Type : RESPONSE +17:16:34 Received From : +17:16:34 ============================================================================ +17:16:34 FNo. Len. Field Value +17:16:34 ============================================================================ +17:16:34 [ 1] [ 4] [0210] +17:16:34 [ 2] [ 16] [6688990103637607] +17:16:34 [ 3] [ 6] [010000] +17:16:34 [ 4] [ 12] [000040000000] +17:16:34 [ 11] [ 6] [812678] +17:16:34 [ 12] [ 6] [171626] +17:16:34 [ 15] [ 4] [0320] +17:16:34 [ 18] [ 4] [6011] +17:16:34 [ 32] [ 6] [621354] +17:16:34 [ 35] [ 37] [6688990103637607=43011231760728200000] +17:16:34 [ 37] [ 12] [507903499664] +17:16:34 [ 38] [ 6] [567221] +17:16:34 [ 39] [ 2] [00] +17:16:34 [ 41] [ 8] [06002200] +17:16:34 [ 49] [ 3] [418] +17:16:34 [ 54] [ 20] [0002418C000201894623] +17:16:34 ============================================================================ +17:16:34 Calculate Source COMM Id = 0 +17:16:34 ============================================================================ +17:16:34 + + +waiting on router queue for slot.... +17:16:40 ============================================================================ +17:16:40 Slot Id : <119> +17:16:40 Transaction Type : REQUEST +17:16:40 Received From : +17:16:40 ============================================================================ +17:16:40 FNo. Len. Field Value +17:16:40 ============================================================================ +17:16:40 [ 1] [ 4] [0800] +17:16:40 [ 7] [ 10] [0321002829] +17:16:40 [ 11] [ 6] [172829] +17:16:40 [ 37] [ 12] [57917172829] +17:16:40 [ 70] [ 3] [301] +17:16:40 ============================================================================ +17:16:40 + + +waiting on router queue for slot.... +17:16:40 Sending to : +17:16:40 ============================================================================ +17:16:40 ============================================================================ +17:16:40 Slot Id : <119> +17:16:40 Transaction Type : RESPONSE +17:16:40 Received From : +17:16:40 ============================================================================ +17:16:40 FNo. Len. Field Value +17:16:40 ============================================================================ +17:16:40 [ 1] [ 4] [0810] +17:16:40 [ 7] [ 10] [0321002829] +17:16:40 [ 11] [ 6] [172829] +17:16:40 [ 37] [ 12] [579171728290] +17:16:40 [ 39] [ 2] [00] +17:16:40 [ 70] [ 3] [810] +17:16:40 ============================================================================ +17:16:40 Calculate Source COMM Id = 6 +17:16:40 ============================================================================ +17:16:40 + + +waiting on router queue for slot.... +17:16:44 ============================================================================ +17:16:44 Slot Id : <148> +17:16:44 Transaction Type : REQUEST +17:16:44 Received From : +17:16:44 ============================================================================ +17:16:44 FNo. Len. Field Value +17:16:44 ============================================================================ +17:16:44 [ 1] [ 4] [0800] +17:16:44 [ 7] [ 10] [0320101551] +17:16:44 [ 11] [ 6] [157419] +17:16:44 [ 70] [ 3] [301] +17:16:44 ============================================================================ +17:16:44 + + +waiting on router queue for slot.... +17:16:44 Sending to : +17:16:44 ============================================================================ +17:16:44 ============================================================================ +17:16:44 Slot Id : <148> +17:16:44 Transaction Type : RESPONSE +17:16:44 Received From : +17:16:44 ============================================================================ +17:16:44 FNo. Len. Field Value +17:16:44 ============================================================================ +17:16:44 [ 1] [ 4] [0810] +17:16:44 [ 7] [ 10] [0320101551] +17:16:44 [ 11] [ 6] [157419] +17:16:44 [ 39] [ 2] [00] +17:16:44 [ 70] [ 3] [301] +17:16:44 ============================================================================ +17:16:44 Calculate Source COMM Id = 2 +17:16:44 ============================================================================ +17:16:44 + + +waiting on router queue for slot.... +17:16:46 ============================================================================ +17:16:46 Slot Id : <202> +17:16:46 Transaction Type : REQUEST +17:16:46 Received From : +17:16:46 ============================================================================ +17:16:46 FNo. Len. Field Value +17:16:46 ============================================================================ +17:16:46 [ 1] [ 4] [0200] +17:16:46 [ 2] [ 16] [6213544002131669] +17:16:46 [ 3] [ 6] [010000] +17:16:46 [ 4] [ 12] [000001000000] +17:16:46 [ 7] [ 10] [0320172433] +17:16:46 [ 11] [ 6] [240501] +17:16:46 [ 12] [ 6] [172433] +17:16:46 [ 13] [ 4] [0320] +17:16:46 [ 14] [ 4] [4912] +17:16:46 [ 15] [ 4] [0320] +17:16:46 [ 18] [ 4] [6011] +17:16:46 [ 22] [ 3] [900] +17:16:46 [ 25] [ 2] [02] +17:16:46 [ 28] [ 9] [D00002000] +17:16:46 [ 32] [ 6] [220699] +17:16:46 [ 35] [ 32] [6213544002131669=491212013166652] +17:16:46 [ 37] [ 12] [507900360241] +17:16:46 [ 41] [ 8] [05000300] +17:16:46 [ 42] [ 15] [APTRA ] +17:16:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:16:46 [ 49] [ 3] [418] +17:16:46 [ 52] [ 16] [2B30318169037763] +17:16:46 ============================================================================ +17:16:46 + + +waiting on router queue for slot.... +17:16:46 Sending to : +17:16:46 ============================================================================ +17:16:46 Sending to : +17:16:46 ============================================================================ +17:16:46 ============================================================================ +17:16:46 Slot Id : <182> +17:16:46 Transaction Type : REQUEST +17:16:46 Received From : +17:16:46 ============================================================================ +17:16:46 FNo. Len. Field Value +17:16:46 ============================================================================ +17:16:46 [ 1] [ 4] [0200] +17:16:46 [ 2] [ 16] [6213544000040177] +17:16:46 [ 3] [ 6] [011000] +17:16:46 [ 4] [ 12] [000002000000] +17:16:46 [ 7] [ 10] [0320101552] +17:16:46 [ 11] [ 6] [270780] +17:16:46 [ 12] [ 6] [171552] +17:16:46 [ 13] [ 4] [0320] +17:16:46 [ 14] [ 4] [4912] +17:16:46 [ 15] [ 4] [0320] +17:16:46 [ 18] [ 4] [6011] +17:16:46 [ 19] [ 3] [418] +17:16:46 [ 22] [ 3] [021] +17:16:46 [ 25] [ 2] [01] +17:16:46 [ 28] [ 9] [D00002000] +17:16:46 [ 32] [ 6] [180893] +17:16:46 [ 35] [ 32] [6213544000040177=491212014017699] +17:16:46 [ 37] [ 12] [507910270780] +17:16:46 [ 41] [ 8] [0421BKPH] +17:16:46 [ 42] [ 15] [999999 ] +17:16:46 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:16:46 [ 49] [ 3] [418] +17:16:46 [ 52] [ 16] [5FCDEECCDF131B89] +17:16:46 ============================================================================ +17:16:46 + + +waiting on router queue for slot.... +17:16:46 Sending to : +17:16:46 ============================================================================ +17:16:46 Sending to : +17:16:46 ============================================================================ +17:16:46 ============================================================================ +17:16:46 Slot Id : <202> +17:16:46 Transaction Type : REQUEST +17:16:46 Received From : +17:16:46 ============================================================================ +17:16:46 FNo. Len. Field Value +17:16:46 ============================================================================ +17:16:46 [ 1] [ 4] [0200] +17:16:46 [ 2] [ 16] [6213544002131669] +17:16:46 [ 3] [ 6] [010000] +17:16:46 [ 4] [ 12] [000001000000] +17:16:46 [ 7] [ 10] [0320172433] +17:16:46 [ 11] [ 6] [240501] +17:16:46 [ 12] [ 6] [172433] +17:16:46 [ 13] [ 4] [0320] +17:16:46 [ 14] [ 4] [4912] +17:16:46 [ 15] [ 4] [0320] +17:16:46 [ 18] [ 4] [6011] +17:16:46 [ 22] [ 3] [900] +17:16:46 [ 25] [ 2] [02] +17:16:46 [ 28] [ 9] [D00002000] +17:16:46 [ 32] [ 6] [220699] +17:16:46 [ 35] [ 32] [6213544002131669=491212013166652] +17:16:46 [ 37] [ 12] [507900360241] +17:16:46 [ 41] [ 8] [05000300] +17:16:46 [ 42] [ 15] [APTRA ] +17:16:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:16:46 [ 49] [ 3] [418] +17:16:46 [ 52] [ 16] [2B30318169037763] +17:16:46 ============================================================================ +17:16:46 + + +waiting on router queue for slot.... +17:16:46 Sending to : +17:16:46 ============================================================================ +17:16:46 ============================================================================ +17:16:46 Slot Id : <202> +17:16:46 Transaction Type : REQUEST +17:16:46 Received From : +17:16:46 ============================================================================ +17:16:46 FNo. Len. Field Value +17:16:46 ============================================================================ +17:16:46 [ 1] [ 4] [0200] +17:16:46 [ 2] [ 16] [6213544002131669] +17:16:46 [ 3] [ 6] [010000] +17:16:46 [ 4] [ 12] [000001000000] +17:16:46 [ 7] [ 10] [0320172433] +17:16:46 [ 11] [ 6] [240501] +17:16:46 [ 12] [ 6] [172433] +17:16:46 [ 13] [ 4] [0320] +17:16:46 [ 14] [ 4] [4912] +17:16:46 [ 15] [ 4] [0320] +17:16:46 [ 18] [ 4] [6011] +17:16:46 [ 22] [ 3] [900] +17:16:46 [ 25] [ 2] [02] +17:16:46 [ 28] [ 9] [D00002000] +17:16:46 [ 32] [ 6] [220699] +17:16:46 [ 35] [ 32] [6213544002131669=491212013166652] +17:16:46 [ 37] [ 12] [507900360241] +17:16:46 [ 41] [ 8] [05000300] +17:16:46 [ 42] [ 15] [APTRA ] +17:16:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:16:46 [ 49] [ 3] [418] +17:16:46 [ 52] [ 16] [4508726598C3225F] +17:16:46 ============================================================================ +17:16:46 + + +waiting on router queue for slot.... +17:16:46 Sending to : <0> +17:16:46 ============================================================================ +17:16:46 ============================================================================ +17:16:46 Slot Id : <182> +17:16:46 Transaction Type : REQUEST +17:16:46 Received From : +17:16:46 ============================================================================ +17:16:46 FNo. Len. Field Value +17:16:46 ============================================================================ +17:16:46 [ 1] [ 4] [0200] +17:16:46 [ 2] [ 16] [6213544000040177] +17:16:46 [ 3] [ 6] [011000] +17:16:46 [ 4] [ 12] [000002000000] +17:16:46 [ 7] [ 10] [0320101552] +17:16:46 [ 11] [ 6] [270780] +17:16:46 [ 12] [ 6] [171552] +17:16:46 [ 13] [ 4] [0320] +17:16:46 [ 14] [ 4] [4912] +17:16:46 [ 15] [ 4] [0320] +17:16:46 [ 18] [ 4] [6011] +17:16:46 [ 19] [ 3] [418] +17:16:46 [ 22] [ 3] [021] +17:16:46 [ 25] [ 2] [01] +17:16:46 [ 28] [ 9] [D00002000] +17:16:46 [ 32] [ 6] [180893] +17:16:46 [ 35] [ 32] [6213544000040177=491212014017699] +17:16:46 [ 37] [ 12] [507910270780] +17:16:46 [ 41] [ 8] [0421BKPH] +17:16:46 [ 42] [ 15] [999999 ] +17:16:46 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:16:46 [ 49] [ 3] [418] +17:16:46 [ 52] [ 16] [5FCDEECCDF131B89] +17:16:46 ============================================================================ +17:16:46 + + +waiting on router queue for slot.... +17:16:46 Sending to : +17:16:46 ============================================================================ +17:16:46 ============================================================================ +17:16:46 Slot Id : <182> +17:16:46 Transaction Type : REQUEST +17:16:46 Received From : +17:16:46 ============================================================================ +17:16:46 FNo. Len. Field Value +17:16:46 ============================================================================ +17:16:46 [ 1] [ 4] [0200] +17:16:46 [ 2] [ 16] [6213544000040177] +17:16:46 [ 3] [ 6] [011000] +17:16:46 [ 4] [ 12] [000002000000] +17:16:46 [ 7] [ 10] [0320101552] +17:16:46 [ 11] [ 6] [270780] +17:16:46 [ 12] [ 6] [171552] +17:16:46 [ 13] [ 4] [0320] +17:16:46 [ 14] [ 4] [4912] +17:16:46 [ 15] [ 4] [0320] +17:16:46 [ 18] [ 4] [6011] +17:16:46 [ 19] [ 3] [418] +17:16:46 [ 22] [ 3] [021] +17:16:46 [ 25] [ 2] [01] +17:16:46 [ 28] [ 9] [D00002000] +17:16:46 [ 32] [ 6] [180893] +17:16:46 [ 35] [ 32] [6213544000040177=491212014017699] +17:16:46 [ 37] [ 12] [507910270780] +17:16:46 [ 41] [ 8] [0421BKPH] +17:16:46 [ 42] [ 15] [999999 ] +17:16:46 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:16:46 [ 49] [ 3] [418] +17:16:46 [ 52] [ 16] [F9BBB6AE26FF4B8F] +17:16:46 ============================================================================ +17:16:46 + + +waiting on router queue for slot.... +17:16:46 Sending to : <0> +17:16:46 ============================================================================ +17:16:46 ============================================================================ +17:16:46 Slot Id : <202> +17:16:46 Transaction Type : RESPONSE +17:16:46 Received From : +17:16:46 ============================================================================ +17:16:46 FNo. Len. Field Value +17:16:46 ============================================================================ +17:16:46 [ 1] [ 4] [0210] +17:16:46 [ 2] [ 16] [6213544002131669] +17:16:46 [ 3] [ 6] [010000] +17:16:46 [ 4] [ 12] [000001000000] +17:16:46 [ 7] [ 10] [0320172433] +17:16:46 [ 11] [ 6] [240501] +17:16:46 [ 12] [ 6] [172433] +17:16:46 [ 13] [ 4] [0320] +17:16:46 [ 15] [ 4] [0320] +17:16:46 [ 18] [ 4] [6011] +17:16:46 [ 32] [ 6] [220699] +17:16:46 [ 35] [ 32] [6213544002131669=491212013166652] +17:16:46 [ 37] [ 12] [507900360241] +17:16:46 [ 38] [ 6] [392166] +17:16:46 [ 39] [ 2] [00] +17:16:46 [ 41] [ 8] [05000300] +17:16:46 [ 49] [ 3] [418] +17:16:46 [ 54] [ 40] [0001418C0000050935870002418C000005093587] +17:16:46 ============================================================================ +17:16:46 Sending to : +17:16:46 ============================================================================ +17:16:46 + + +waiting on router queue for slot.... +17:16:47 ============================================================================ +17:16:47 Slot Id : <182> +17:16:47 Transaction Type : RESPONSE +17:16:47 Received From : +17:16:47 ============================================================================ +17:16:47 FNo. Len. Field Value +17:16:47 ============================================================================ +17:16:47 [ 1] [ 4] [0210] +17:16:47 [ 2] [ 16] [6213544000040177] +17:16:47 [ 3] [ 6] [011000] +17:16:47 [ 4] [ 12] [000002000000] +17:16:47 [ 7] [ 10] [0320101552] +17:16:47 [ 11] [ 6] [270780] +17:16:47 [ 12] [ 6] [171552] +17:16:47 [ 13] [ 4] [0320] +17:16:47 [ 15] [ 4] [0320] +17:16:47 [ 18] [ 4] [6011] +17:16:47 [ 19] [ 3] [418] +17:16:47 [ 32] [ 6] [180893] +17:16:47 [ 35] [ 32] [6213544000040177=491212014017699] +17:16:47 [ 37] [ 12] [507910270780] +17:16:47 [ 38] [ 6] [511404] +17:16:47 [ 39] [ 2] [00] +17:16:47 [ 41] [ 8] [0421BKPH] +17:16:47 [ 49] [ 3] [418] +17:16:47 [ 54] [ 40] [1001418C0000071049061002418C000007104906] +17:16:47 ============================================================================ +17:16:47 Sending to : +17:16:47 ============================================================================ +17:16:47 + + +waiting on router queue for slot.... +17:16:48 ============================================================================ +17:16:48 Slot Id : <202> +17:16:48 Transaction Type : RESPONSE +17:16:48 Received From : +17:16:48 ============================================================================ +17:16:48 FNo. Len. Field Value +17:16:48 ============================================================================ +17:16:48 [ 1] [ 4] [0210] +17:16:48 [ 2] [ 16] [6213544002131669] +17:16:48 [ 3] [ 6] [010000] +17:16:48 [ 4] [ 12] [000001000000] +17:16:48 [ 7] [ 10] [0320172433] +17:16:48 [ 11] [ 6] [240501] +17:16:48 [ 12] [ 6] [172433] +17:16:48 [ 13] [ 4] [0320] +17:16:48 [ 15] [ 4] [0320] +17:16:48 [ 18] [ 4] [6011] +17:16:48 [ 32] [ 6] [220699] +17:16:48 [ 35] [ 32] [6213544002131669=491212013166652] +17:16:48 [ 37] [ 12] [507900360241] +17:16:48 [ 38] [ 6] [392166] +17:16:48 [ 39] [ 2] [00] +17:16:48 [ 41] [ 8] [05000300] +17:16:48 [ 49] [ 3] [418] +17:16:48 [ 54] [ 40] [0001418C0000050935870002418C000005093587] +17:16:48 ============================================================================ +17:16:48 Calculate Source COMM Id = 1 +17:16:48 ============================================================================ +17:16:48 + + +waiting on router queue for slot.... +17:16:49 ============================================================================ +17:16:49 Slot Id : <182> +17:16:49 Transaction Type : RESPONSE +17:16:49 Received From : +17:16:49 ============================================================================ +17:16:49 FNo. Len. Field Value +17:16:49 ============================================================================ +17:16:49 [ 1] [ 4] [0210] +17:16:49 [ 2] [ 16] [6213544000040177] +17:16:49 [ 3] [ 6] [011000] +17:16:49 [ 4] [ 12] [000002000000] +17:16:49 [ 7] [ 10] [0320101552] +17:16:49 [ 11] [ 6] [270780] +17:16:49 [ 12] [ 6] [171552] +17:16:49 [ 13] [ 4] [0320] +17:16:49 [ 15] [ 4] [0320] +17:16:49 [ 18] [ 4] [6011] +17:16:49 [ 19] [ 3] [418] +17:16:49 [ 32] [ 6] [180893] +17:16:49 [ 35] [ 32] [6213544000040177=491212014017699] +17:16:49 [ 37] [ 12] [507910270780] +17:16:49 [ 38] [ 6] [511404] +17:16:49 [ 39] [ 2] [00] +17:16:49 [ 41] [ 8] [0421BKPH] +17:16:49 [ 49] [ 3] [418] +17:16:49 [ 54] [ 40] [1001418C0000071049061002418C000007104906] +17:16:49 ============================================================================ +17:16:49 Calculate Source COMM Id = 2 +17:16:49 ============================================================================ +17:16:49 + + +waiting on router queue for slot.... +17:17:05 ============================================================================ +17:17:05 Slot Id : <176> +17:17:05 Transaction Type : REQUEST +17:17:05 Received From : +17:17:05 ============================================================================ +17:17:05 FNo. Len. Field Value +17:17:05 ============================================================================ +17:17:05 [ 1] [ 4] [0800] +17:17:05 [ 2] [ 5] [02531] +17:17:05 [ 3] [ 6] [579178] +17:17:05 [ 7] [ 10] [0320101705] +17:17:05 [ 11] [ 6] [807415] +17:17:05 [ 15] [ 10] [0320101705] +17:17:05 [ 37] [ 11] [57917807415] +17:17:05 [ 70] [ 3] [001] +17:17:05 ============================================================================ +17:17:05 + + +waiting on router queue for slot.... +17:17:05 ============================================================================ +17:17:05 Slot Id : <176> +17:17:05 Transaction Type : RESPONSE +17:17:05 Received From : +17:17:05 ============================================================================ +17:17:05 FNo. Len. Field Value +17:17:05 ============================================================================ +17:17:05 [ 1] [ 4] [0810] +17:17:05 [ 7] [ 10] [0320101705] +17:17:05 [ 11] [ 6] [807415] +17:17:05 [ 15] [ 4] [0320] +17:17:05 [ 37] [ 12] [57917807415] +17:17:05 [ 39] [ 2] [00] +17:17:05 [ 70] [ 3] [001] +17:17:05 ============================================================================ +17:17:05 Sending to : +17:17:05 ============================================================================ +17:17:05 + + +waiting on router queue for slot.... +17:17:07 ============================================================================ +17:17:07 Slot Id : <187> +17:17:07 Transaction Type : REQUEST +17:17:07 Received From : +17:17:07 ============================================================================ +17:17:07 FNo. Len. Field Value +17:17:07 ============================================================================ +17:17:07 [ 1] [ 4] [0800] +17:17:07 [ 7] [ 10] [0320101614] +17:17:07 [ 11] [ 6] [157420] +17:17:07 [ 70] [ 3] [301] +17:17:07 ============================================================================ +17:17:07 + + +waiting on router queue for slot.... +17:17:07 Sending to : +17:17:07 ============================================================================ +17:17:07 ============================================================================ +17:17:07 Slot Id : <187> +17:17:07 Transaction Type : RESPONSE +17:17:07 Received From : +17:17:07 ============================================================================ +17:17:07 FNo. Len. Field Value +17:17:07 ============================================================================ +17:17:07 [ 1] [ 4] [0810] +17:17:07 [ 7] [ 10] [0320101614] +17:17:07 [ 11] [ 6] [157420] +17:17:07 [ 39] [ 2] [00] +17:17:07 [ 70] [ 3] [301] +17:17:07 ============================================================================ +17:17:07 Calculate Source COMM Id = 2 +17:17:07 ============================================================================ +17:17:07 + + +waiting on router queue for slot.... +17:17:22 ============================================================================ +17:17:22 Slot Id : <144> +17:17:22 Transaction Type : REQUEST +17:17:22 Received From : +17:17:22 ============================================================================ +17:17:22 FNo. Len. Field Value +17:17:22 ============================================================================ +17:17:22 [ 1] [ 4] [0800] +17:17:22 [ 7] [ 10] [0320101628] +17:17:22 [ 11] [ 6] [157421] +17:17:22 [ 70] [ 3] [301] +17:17:22 ============================================================================ +17:17:22 + + +waiting on router queue for slot.... +17:17:22 Sending to : +17:17:22 ============================================================================ +17:17:22 ============================================================================ +17:17:22 Slot Id : <144> +17:17:22 Transaction Type : RESPONSE +17:17:22 Received From : +17:17:22 ============================================================================ +17:17:22 FNo. Len. Field Value +17:17:22 ============================================================================ +17:17:22 [ 1] [ 4] [0810] +17:17:22 [ 7] [ 10] [0320101628] +17:17:22 [ 11] [ 6] [157421] +17:17:22 [ 39] [ 2] [00] +17:17:22 [ 70] [ 3] [301] +17:17:22 ============================================================================ +17:17:22 Calculate Source COMM Id = 2 +17:17:22 ============================================================================ +17:17:22 + + +waiting on router queue for slot.... +17:17:28 ============================================================================ +17:17:28 Slot Id : <160> +17:17:28 Transaction Type : REQUEST +17:17:28 Received From : +17:17:28 ============================================================================ +17:17:28 FNo. Len. Field Value +17:17:28 ============================================================================ +17:17:28 [ 1] [ 4] [0200] +17:17:28 [ 2] [ 16] [6213544002138797] +17:17:28 [ 3] [ 6] [011000] +17:17:28 [ 4] [ 12] [000020000000] +17:17:28 [ 7] [ 10] [0320171748] +17:17:28 [ 11] [ 6] [209419] +17:17:28 [ 12] [ 6] [171254] +17:17:28 [ 13] [ 4] [0320] +17:17:28 [ 14] [ 4] [4912] +17:17:28 [ 15] [ 4] [0320] +17:17:28 [ 18] [ 4] [6011] +17:17:28 [ 19] [ 3] [418] +17:17:28 [ 22] [ 3] [021] +17:17:28 [ 25] [ 2] [01] +17:17:28 [ 28] [ 9] [D00002000] +17:17:28 [ 32] [ 6] [198901] +17:17:28 [ 35] [ 32] [6213544002138797=491212013879715] +17:17:28 [ 37] [ 12] [507917209419] +17:17:28 [ 41] [ 8] [19529001] +17:17:28 [ 42] [ 15] [000000041952901] +17:17:28 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:17:28 [ 49] [ 3] [418] +17:17:28 [ 52] [ 16] [609C30BEDCAF8AB9] +17:17:28 ============================================================================ +17:17:28 + + +waiting on router queue for slot.... +17:17:28 Sending to : +17:17:28 ============================================================================ +17:17:28 Sending to : +17:17:28 ============================================================================ +17:17:28 ============================================================================ +17:17:28 Slot Id : <160> +17:17:28 Transaction Type : REQUEST +17:17:28 Received From : +17:17:28 ============================================================================ +17:17:28 FNo. Len. Field Value +17:17:28 ============================================================================ +17:17:28 [ 1] [ 4] [0200] +17:17:28 [ 2] [ 16] [6213544002138797] +17:17:28 [ 3] [ 6] [011000] +17:17:28 [ 4] [ 12] [000020000000] +17:17:28 [ 7] [ 10] [0320171748] +17:17:28 [ 11] [ 6] [209419] +17:17:28 [ 12] [ 6] [171254] +17:17:28 [ 13] [ 4] [0320] +17:17:28 [ 14] [ 4] [4912] +17:17:28 [ 15] [ 4] [0320] +17:17:28 [ 18] [ 4] [6011] +17:17:28 [ 19] [ 3] [418] +17:17:28 [ 22] [ 3] [021] +17:17:28 [ 25] [ 2] [01] +17:17:28 [ 28] [ 9] [D00002000] +17:17:28 [ 32] [ 6] [198901] +17:17:28 [ 35] [ 32] [6213544002138797=491212013879715] +17:17:28 [ 37] [ 12] [507917209419] +17:17:28 [ 41] [ 8] [19529001] +17:17:28 [ 42] [ 15] [000000041952901] +17:17:28 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:17:28 [ 49] [ 3] [418] +17:17:28 [ 52] [ 16] [609C30BEDCAF8AB9] +17:17:28 ============================================================================ +17:17:28 + + +waiting on router queue for slot.... +17:17:28 Sending to : +17:17:28 ============================================================================ +17:17:28 ============================================================================ +17:17:28 Slot Id : <160> +17:17:28 Transaction Type : REQUEST +17:17:28 Received From : +17:17:28 ============================================================================ +17:17:28 FNo. Len. Field Value +17:17:28 ============================================================================ +17:17:28 [ 1] [ 4] [0200] +17:17:28 [ 2] [ 16] [6213544002138797] +17:17:28 [ 3] [ 6] [011000] +17:17:28 [ 4] [ 12] [000020000000] +17:17:28 [ 7] [ 10] [0320171748] +17:17:28 [ 11] [ 6] [209419] +17:17:28 [ 12] [ 6] [171254] +17:17:28 [ 13] [ 4] [0320] +17:17:28 [ 14] [ 4] [4912] +17:17:28 [ 15] [ 4] [0320] +17:17:28 [ 18] [ 4] [6011] +17:17:28 [ 19] [ 3] [418] +17:17:28 [ 22] [ 3] [021] +17:17:28 [ 25] [ 2] [01] +17:17:28 [ 28] [ 9] [D00002000] +17:17:28 [ 32] [ 6] [198901] +17:17:28 [ 35] [ 32] [6213544002138797=491212013879715] +17:17:28 [ 37] [ 12] [507917209419] +17:17:28 [ 41] [ 8] [19529001] +17:17:28 [ 42] [ 15] [000000041952901] +17:17:28 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:17:28 [ 49] [ 3] [418] +17:17:28 [ 52] [ 16] [DCE39C95BC9D0D89] +17:17:28 ============================================================================ +17:17:28 + + +waiting on router queue for slot.... +17:17:28 Sending to : <0> +17:17:28 ============================================================================ +17:17:29 ============================================================================ +17:17:29 Slot Id : <160> +17:17:29 Transaction Type : RESPONSE +17:17:29 Received From : +17:17:29 ============================================================================ +17:17:29 FNo. Len. Field Value +17:17:29 ============================================================================ +17:17:29 [ 1] [ 4] [0210] +17:17:29 [ 2] [ 16] [6213544002138797] +17:17:29 [ 3] [ 6] [011000] +17:17:29 [ 4] [ 12] [000020000000] +17:17:29 [ 7] [ 10] [0320171748] +17:17:29 [ 11] [ 6] [209419] +17:17:29 [ 12] [ 6] [171254] +17:17:29 [ 13] [ 4] [0320] +17:17:29 [ 15] [ 4] [0320] +17:17:29 [ 18] [ 4] [6011] +17:17:29 [ 19] [ 3] [418] +17:17:29 [ 32] [ 6] [198901] +17:17:29 [ 35] [ 32] [6213544002138797=491212013879715] +17:17:29 [ 37] [ 12] [507917209419] +17:17:29 [ 38] [ 6] [752928] +17:17:29 [ 39] [ 2] [00] +17:17:29 [ 41] [ 8] [19529001] +17:17:29 [ 49] [ 3] [418] +17:17:29 [ 54] [ 40] [1001418C0000094618111002418C000009461811] +17:17:29 ============================================================================ +17:17:29 Sending to : +17:17:29 ============================================================================ +17:17:29 + + +waiting on router queue for slot.... +17:17:29 ============================================================================ +17:17:29 Slot Id : <163> +17:17:29 Transaction Type : REQUEST +17:17:29 Received From : +17:17:29 ============================================================================ +17:17:29 FNo. Len. Field Value +17:17:29 ============================================================================ +17:17:29 [ 1] [ 4] [0200] +17:17:29 [ 2] [ 16] [6213545000828917] +17:17:29 [ 3] [ 6] [010000] +17:17:29 [ 4] [ 12] [000050000000] +17:17:29 [ 7] [ 10] [0320101636] +17:17:29 [ 11] [ 6] [270785] +17:17:29 [ 12] [ 6] [171636] +17:17:29 [ 13] [ 4] [0320] +17:17:29 [ 14] [ 4] [4912] +17:17:29 [ 15] [ 4] [0320] +17:17:29 [ 18] [ 4] [6011] +17:17:29 [ 19] [ 3] [418] +17:17:29 [ 22] [ 3] [021] +17:17:29 [ 25] [ 2] [01] +17:17:29 [ 28] [ 9] [D00002000] +17:17:29 [ 32] [ 6] [180893] +17:17:29 [ 35] [ 32] [6213545000828917=491212012891506] +17:17:29 [ 37] [ 12] [507910270785] +17:17:29 [ 41] [ 8] [0262PSLB] +17:17:29 [ 42] [ 15] [999999 ] +17:17:29 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:17:29 [ 49] [ 3] [418] +17:17:29 [ 52] [ 16] [B32D4A2BE77BB008] +17:17:29 ============================================================================ +17:17:29 + + +waiting on router queue for slot.... +17:17:29 Sending to : +17:17:29 ============================================================================ +17:17:29 Sending to : +17:17:29 ============================================================================ +17:17:30 ============================================================================ +17:17:30 Slot Id : <163> +17:17:30 Transaction Type : REQUEST +17:17:30 Received From : +17:17:30 ============================================================================ +17:17:30 FNo. Len. Field Value +17:17:30 ============================================================================ +17:17:30 [ 1] [ 4] [0200] +17:17:30 [ 2] [ 16] [6213545000828917] +17:17:30 [ 3] [ 6] [010000] +17:17:30 [ 4] [ 12] [000050000000] +17:17:30 [ 7] [ 10] [0320101636] +17:17:30 [ 11] [ 6] [270785] +17:17:30 [ 12] [ 6] [171636] +17:17:30 [ 13] [ 4] [0320] +17:17:30 [ 14] [ 4] [4912] +17:17:30 [ 15] [ 4] [0320] +17:17:30 [ 18] [ 4] [6011] +17:17:30 [ 19] [ 3] [418] +17:17:30 [ 22] [ 3] [021] +17:17:30 [ 25] [ 2] [01] +17:17:30 [ 28] [ 9] [D00002000] +17:17:30 [ 32] [ 6] [180893] +17:17:30 [ 35] [ 32] [6213545000828917=491212012891506] +17:17:30 [ 37] [ 12] [507910270785] +17:17:30 [ 41] [ 8] [0262PSLB] +17:17:30 [ 42] [ 15] [999999 ] +17:17:30 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:17:30 [ 49] [ 3] [418] +17:17:30 [ 52] [ 16] [B32D4A2BE77BB008] +17:17:30 ============================================================================ +17:17:30 + + +waiting on router queue for slot.... +17:17:30 Sending to : +17:17:30 ============================================================================ +17:17:30 ============================================================================ +17:17:30 Slot Id : <163> +17:17:30 Transaction Type : REQUEST +17:17:30 Received From : +17:17:30 ============================================================================ +17:17:30 FNo. Len. Field Value +17:17:30 ============================================================================ +17:17:30 [ 1] [ 4] [0200] +17:17:30 [ 2] [ 16] [6213545000828917] +17:17:30 [ 3] [ 6] [010000] +17:17:30 [ 4] [ 12] [000050000000] +17:17:30 [ 7] [ 10] [0320101636] +17:17:30 [ 11] [ 6] [270785] +17:17:30 [ 12] [ 6] [171636] +17:17:30 [ 13] [ 4] [0320] +17:17:30 [ 14] [ 4] [4912] +17:17:30 [ 15] [ 4] [0320] +17:17:30 [ 18] [ 4] [6011] +17:17:30 [ 19] [ 3] [418] +17:17:30 [ 22] [ 3] [021] +17:17:30 [ 25] [ 2] [01] +17:17:30 [ 28] [ 9] [D00002000] +17:17:30 [ 32] [ 6] [180893] +17:17:30 [ 35] [ 32] [6213545000828917=491212012891506] +17:17:30 [ 37] [ 12] [507910270785] +17:17:30 [ 41] [ 8] [0262PSLB] +17:17:30 [ 42] [ 15] [999999 ] +17:17:30 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:17:30 [ 49] [ 3] [418] +17:17:30 [ 52] [ 16] [C0B0C4446AB9F655] +17:17:30 ============================================================================ +17:17:30 + + +waiting on router queue for slot.... +17:17:30 Sending to : <0> +17:17:30 ============================================================================ +17:17:30 ============================================================================ +17:17:30 Slot Id : <204> +17:17:30 Transaction Type : REQUEST +17:17:30 Received From : +17:17:30 ============================================================================ +17:17:30 FNo. Len. Field Value +17:17:30 ============================================================================ +17:17:30 [ 1] [ 4] [0200] +17:17:30 [ 2] [ 16] [1808930900004383] +17:17:30 [ 3] [ 6] [011000] +17:17:30 [ 4] [ 12] [000050000000] +17:17:30 [ 7] [ 10] [0320171725] +17:17:30 [ 11] [ 6] [812884] +17:17:30 [ 12] [ 6] [171725] +17:17:30 [ 13] [ 4] [0320] +17:17:30 [ 15] [ 4] [0320] +17:17:30 [ 18] [ 4] [6011] +17:17:30 [ 22] [ 3] [900] +17:17:30 [ 25] [ 2] [02] +17:17:30 [ 28] [ 9] [D00002000] +17:17:30 [ 32] [ 6] [621354] +17:17:30 [ 35] [ 27] [1808930900004383=1803500761] +17:17:30 [ 37] [ 12] [507902606346] +17:17:30 [ 41] [ 8] [05004300] +17:17:30 [ 42] [ 15] [NATIVE ] +17:17:30 [ 43] [ 40] [Ka deng office LuangprabangLAO] +17:17:30 [ 49] [ 3] [418] +17:17:30 [ 52] [ 16] [BE8CE7C906E0ECEE] +17:17:30 ============================================================================ +17:17:30 + + +waiting on router queue for slot.... +17:17:30 Sending to : +17:17:30 ============================================================================ +17:17:30 Sending to : +17:17:30 ============================================================================ +17:17:30 ============================================================================ +17:17:30 Slot Id : <204> +17:17:30 Transaction Type : REQUEST +17:17:30 Received From : +17:17:30 ============================================================================ +17:17:30 FNo. Len. Field Value +17:17:30 ============================================================================ +17:17:30 [ 1] [ 4] [0200] +17:17:30 [ 2] [ 16] [1808930900004383] +17:17:30 [ 3] [ 6] [011000] +17:17:30 [ 4] [ 12] [000050000000] +17:17:30 [ 7] [ 10] [0320171725] +17:17:30 [ 11] [ 6] [812884] +17:17:30 [ 12] [ 6] [171725] +17:17:30 [ 13] [ 4] [0320] +17:17:30 [ 15] [ 4] [0320] +17:17:30 [ 18] [ 4] [6011] +17:17:30 [ 22] [ 3] [900] +17:17:30 [ 25] [ 2] [02] +17:17:30 [ 28] [ 9] [D00002000] +17:17:30 [ 32] [ 6] [621354] +17:17:30 [ 35] [ 27] [1808930900004383=1803500761] +17:17:30 [ 37] [ 12] [507902606346] +17:17:30 [ 41] [ 8] [05004300] +17:17:30 [ 42] [ 15] [NATIVE ] +17:17:30 [ 43] [ 40] [Ka deng office LuangprabangLAO] +17:17:30 [ 49] [ 3] [418] +17:17:30 [ 52] [ 16] [BE8CE7C906E0ECEE] +17:17:30 ============================================================================ +17:17:30 + + +waiting on router queue for slot.... +17:17:30 Sending to : +17:17:30 ============================================================================ +17:17:30 ============================================================================ +17:17:30 Slot Id : <204> +17:17:30 Transaction Type : REQUEST +17:17:30 Received From : +17:17:30 ============================================================================ +17:17:30 FNo. Len. Field Value +17:17:30 ============================================================================ +17:17:30 [ 1] [ 4] [0200] +17:17:30 [ 2] [ 16] [1808930900004383] +17:17:30 [ 3] [ 6] [011000] +17:17:30 [ 4] [ 12] [000050000000] +17:17:30 [ 7] [ 10] [0320171725] +17:17:30 [ 11] [ 6] [812884] +17:17:30 [ 12] [ 6] [171725] +17:17:30 [ 13] [ 4] [0320] +17:17:30 [ 15] [ 4] [0320] +17:17:30 [ 18] [ 4] [6011] +17:17:30 [ 22] [ 3] [900] +17:17:30 [ 25] [ 2] [02] +17:17:30 [ 28] [ 9] [D00002000] +17:17:30 [ 32] [ 6] [621354] +17:17:30 [ 35] [ 27] [1808930900004383=1803500761] +17:17:30 [ 37] [ 12] [507902606346] +17:17:30 [ 41] [ 8] [05004300] +17:17:30 [ 42] [ 15] [NATIVE ] +17:17:30 [ 43] [ 40] [Ka deng office LuangprabangLAO] +17:17:30 [ 49] [ 3] [418] +17:17:30 [ 52] [ 16] [80DCAF94EB216A22] +17:17:30 ============================================================================ +17:17:30 + + +waiting on router queue for slot.... +17:17:30 Sending to : <2> +17:17:30 ============================================================================ +17:17:30 ============================================================================ +17:17:30 Slot Id : <160> +17:17:30 Transaction Type : RESPONSE +17:17:30 Received From : +17:17:30 ============================================================================ +17:17:30 FNo. Len. Field Value +17:17:30 ============================================================================ +17:17:30 [ 1] [ 4] [0210] +17:17:30 [ 2] [ 16] [6213544002138797] +17:17:30 [ 3] [ 6] [011000] +17:17:30 [ 4] [ 12] [000020000000] +17:17:30 [ 7] [ 10] [0320171748] +17:17:30 [ 11] [ 6] [209419] +17:17:30 [ 12] [ 6] [171254] +17:17:30 [ 13] [ 4] [0320] +17:17:30 [ 15] [ 4] [0320] +17:17:30 [ 18] [ 4] [6011] +17:17:30 [ 19] [ 3] [418] +17:17:30 [ 32] [ 6] [198901] +17:17:30 [ 35] [ 32] [6213544002138797=491212013879715] +17:17:30 [ 37] [ 12] [507917209419] +17:17:30 [ 38] [ 6] [752928] +17:17:30 [ 39] [ 2] [00] +17:17:30 [ 41] [ 8] [19529001] +17:17:30 [ 49] [ 3] [418] +17:17:30 [ 54] [ 40] [1001418C0000094618111002418C000009461811] +17:17:30 ============================================================================ +17:17:30 Calculate Source COMM Id = 5 +17:17:30 ============================================================================ +17:17:30 + + +waiting on router queue for slot.... +17:17:30 ============================================================================ +17:17:30 Slot Id : <163> +17:17:30 Transaction Type : RESPONSE +17:17:30 Received From : +17:17:30 ============================================================================ +17:17:30 FNo. Len. Field Value +17:17:30 ============================================================================ +17:17:30 [ 1] [ 4] [0210] +17:17:30 [ 2] [ 16] [6213545000828917] +17:17:30 [ 3] [ 6] [010000] +17:17:30 [ 4] [ 12] [000050000000] +17:17:30 [ 7] [ 10] [0320101636] +17:17:30 [ 11] [ 6] [270785] +17:17:30 [ 12] [ 6] [171636] +17:17:30 [ 13] [ 4] [0320] +17:17:30 [ 15] [ 4] [0320] +17:17:30 [ 18] [ 4] [6011] +17:17:30 [ 19] [ 3] [418] +17:17:30 [ 32] [ 6] [180893] +17:17:30 [ 35] [ 32] [6213545000828917=491212012891506] +17:17:30 [ 37] [ 12] [507910270785] +17:17:30 [ 38] [ 6] [103970] +17:17:30 [ 39] [ 2] [00] +17:17:30 [ 41] [ 8] [0262PSLB] +17:17:30 [ 49] [ 3] [418] +17:17:30 [ 54] [ 40] [0001418C0002662991700002418C000266299170] +17:17:30 ============================================================================ +17:17:30 Sending to : +17:17:30 ============================================================================ +17:17:30 + + +waiting on router queue for slot.... +17:17:32 ============================================================================ +17:17:32 Slot Id : <163> +17:17:32 Transaction Type : RESPONSE +17:17:32 Received From : +17:17:32 ============================================================================ +17:17:32 FNo. Len. Field Value +17:17:32 ============================================================================ +17:17:32 [ 1] [ 4] [0210] +17:17:32 [ 2] [ 16] [6213545000828917] +17:17:32 [ 3] [ 6] [010000] +17:17:32 [ 4] [ 12] [000050000000] +17:17:32 [ 7] [ 10] [0320101636] +17:17:32 [ 11] [ 6] [270785] +17:17:32 [ 12] [ 6] [171636] +17:17:32 [ 13] [ 4] [0320] +17:17:32 [ 15] [ 4] [0320] +17:17:32 [ 18] [ 4] [6011] +17:17:32 [ 19] [ 3] [418] +17:17:32 [ 32] [ 6] [180893] +17:17:32 [ 35] [ 32] [6213545000828917=491212012891506] +17:17:32 [ 37] [ 12] [507910270785] +17:17:32 [ 38] [ 6] [103970] +17:17:32 [ 39] [ 2] [00] +17:17:32 [ 41] [ 8] [0262PSLB] +17:17:32 [ 49] [ 3] [418] +17:17:32 [ 54] [ 40] [0001418C0002662991700002418C000266299170] +17:17:32 ============================================================================ +17:17:32 Calculate Source COMM Id = 2 +17:17:32 ============================================================================ +17:17:32 + + +waiting on router queue for slot.... +17:17:33 ============================================================================ +17:17:33 Slot Id : <204> +17:17:33 Transaction Type : RESPONSE +17:17:33 Received From : +17:17:33 ============================================================================ +17:17:33 FNo. Len. Field Value +17:17:33 ============================================================================ +17:17:33 [ 1] [ 4] [0210] +17:17:33 [ 2] [ 16] [1808930900004383] +17:17:33 [ 3] [ 6] [011000] +17:17:33 [ 4] [ 12] [000050000000] +17:17:33 [ 6] [ 12] [000050000000] +17:17:33 [ 7] [ 10] [0320171725] +17:17:33 [ 11] [ 6] [812884] +17:17:33 [ 12] [ 6] [171725] +17:17:33 [ 13] [ 4] [0320] +17:17:33 [ 18] [ 4] [6011] +17:17:33 [ 19] [ 3] [418] +17:17:33 [ 22] [ 3] [021] +17:17:33 [ 32] [ 6] [621354] +17:17:33 [ 35] [ 27] [1808930900004383=1803500761] +17:17:33 [ 37] [ 12] [507902606346] +17:17:33 [ 38] [ 6] [812884] +17:17:33 [ 39] [ 2] [00] +17:17:33 [ 41] [ 8] [05004300] +17:17:33 [ 49] [ 3] [418] +17:17:33 [ 52] [ 16] [80DCAF94EB216A22] +17:17:33 [ 54] [ 20] [1001418C000957424800] +17:17:33 ============================================================================ +17:17:33 Sending to : +17:17:33 ============================================================================ +17:17:33 + + +waiting on router queue for slot.... +17:17:34 ============================================================================ +17:17:34 Slot Id : <204> +17:17:34 Transaction Type : RESPONSE +17:17:34 Received From : +17:17:34 ============================================================================ +17:17:34 FNo. Len. Field Value +17:17:34 ============================================================================ +17:17:34 [ 1] [ 4] [0210] +17:17:34 [ 2] [ 16] [1808930900004383] +17:17:34 [ 3] [ 6] [011000] +17:17:34 [ 4] [ 12] [000050000000] +17:17:34 [ 6] [ 12] [000050000000] +17:17:34 [ 7] [ 10] [0320171725] +17:17:34 [ 11] [ 6] [812884] +17:17:34 [ 12] [ 6] [171725] +17:17:34 [ 13] [ 4] [0320] +17:17:34 [ 18] [ 4] [6011] +17:17:34 [ 19] [ 3] [418] +17:17:34 [ 22] [ 3] [021] +17:17:34 [ 32] [ 6] [621354] +17:17:34 [ 35] [ 27] [1808930900004383=1803500761] +17:17:34 [ 37] [ 12] [507902606346] +17:17:34 [ 38] [ 6] [812884] +17:17:34 [ 39] [ 2] [00] +17:17:34 [ 41] [ 8] [05004300] +17:17:34 [ 49] [ 3] [418] +17:17:34 [ 52] [ 16] [80DCAF94EB216A22] +17:17:34 [ 54] [ 20] [1001418C000957424800] +17:17:34 ============================================================================ +17:17:34 Calculate Source COMM Id = 0 +17:17:34 ============================================================================ +17:17:34 + + +waiting on router queue for slot.... +17:17:44 ============================================================================ +17:17:44 Slot Id : <203> +17:17:44 Transaction Type : REQUEST +17:17:44 Received From : +17:17:44 ============================================================================ +17:17:44 FNo. Len. Field Value +17:17:44 ============================================================================ +17:17:44 [ 1] [ 4] [0800] +17:17:44 [ 7] [ 10] [0320101651] +17:17:44 [ 11] [ 6] [157422] +17:17:44 [ 70] [ 3] [301] +17:17:44 ============================================================================ +17:17:44 + + +waiting on router queue for slot.... +17:17:44 Sending to : +17:17:44 ============================================================================ +17:17:44 ============================================================================ +17:17:44 Slot Id : <203> +17:17:44 Transaction Type : RESPONSE +17:17:44 Received From : +17:17:44 ============================================================================ +17:17:44 FNo. Len. Field Value +17:17:44 ============================================================================ +17:17:44 [ 1] [ 4] [0810] +17:17:44 [ 7] [ 10] [0320101651] +17:17:44 [ 11] [ 6] [157422] +17:17:44 [ 39] [ 2] [00] +17:17:44 [ 70] [ 3] [301] +17:17:44 ============================================================================ +17:17:44 Calculate Source COMM Id = 2 +17:17:44 ============================================================================ +17:17:44 + + +waiting on router queue for slot.... +17:17:45 ============================================================================ +17:17:45 Slot Id : <156> +17:17:45 Transaction Type : REQUEST +17:17:45 Received From : +17:17:45 ============================================================================ +17:17:45 FNo. Len. Field Value +17:17:45 ============================================================================ +17:17:45 [ 1] [ 4] [0200] +17:17:45 [ 2] [ 16] [6213544000040177] +17:17:45 [ 3] [ 6] [011000] +17:17:45 [ 4] [ 12] [000002000000] +17:17:45 [ 7] [ 10] [0320101651] +17:17:45 [ 11] [ 6] [270788] +17:17:45 [ 12] [ 6] [171651] +17:17:45 [ 13] [ 4] [0320] +17:17:45 [ 14] [ 4] [4912] +17:17:45 [ 15] [ 4] [0320] +17:17:45 [ 18] [ 4] [6011] +17:17:45 [ 19] [ 3] [418] +17:17:45 [ 22] [ 3] [021] +17:17:45 [ 25] [ 2] [01] +17:17:45 [ 28] [ 9] [D00002000] +17:17:45 [ 32] [ 6] [180893] +17:17:45 [ 35] [ 32] [6213544000040177=491212014017699] +17:17:45 [ 37] [ 12] [507910270788] +17:17:45 [ 41] [ 8] [0421BKPH] +17:17:45 [ 42] [ 15] [999999 ] +17:17:45 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:17:45 [ 49] [ 3] [418] +17:17:45 [ 52] [ 16] [5FCDEECCDF131B89] +17:17:45 ============================================================================ +17:17:45 + + +waiting on router queue for slot.... +17:17:45 Sending to : +17:17:45 ============================================================================ +17:17:45 Sending to : +17:17:45 ============================================================================ +17:17:45 ============================================================================ +17:17:45 Slot Id : <156> +17:17:45 Transaction Type : REQUEST +17:17:45 Received From : +17:17:45 ============================================================================ +17:17:45 FNo. Len. Field Value +17:17:45 ============================================================================ +17:17:45 [ 1] [ 4] [0200] +17:17:45 [ 2] [ 16] [6213544000040177] +17:17:45 [ 3] [ 6] [011000] +17:17:45 [ 4] [ 12] [000002000000] +17:17:45 [ 7] [ 10] [0320101651] +17:17:45 [ 11] [ 6] [270788] +17:17:45 [ 12] [ 6] [171651] +17:17:45 [ 13] [ 4] [0320] +17:17:45 [ 14] [ 4] [4912] +17:17:45 [ 15] [ 4] [0320] +17:17:45 [ 18] [ 4] [6011] +17:17:45 [ 19] [ 3] [418] +17:17:45 [ 22] [ 3] [021] +17:17:45 [ 25] [ 2] [01] +17:17:45 [ 28] [ 9] [D00002000] +17:17:45 [ 32] [ 6] [180893] +17:17:45 [ 35] [ 32] [6213544000040177=491212014017699] +17:17:45 [ 37] [ 12] [507910270788] +17:17:45 [ 41] [ 8] [0421BKPH] +17:17:45 [ 42] [ 15] [999999 ] +17:17:45 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:17:45 [ 49] [ 3] [418] +17:17:45 [ 52] [ 16] [5FCDEECCDF131B89] +17:17:45 ============================================================================ +17:17:45 + + +waiting on router queue for slot.... +17:17:45 Sending to : +17:17:45 ============================================================================ +17:17:45 ============================================================================ +17:17:45 Slot Id : <156> +17:17:45 Transaction Type : REQUEST +17:17:45 Received From : +17:17:45 ============================================================================ +17:17:45 FNo. Len. Field Value +17:17:45 ============================================================================ +17:17:45 [ 1] [ 4] [0200] +17:17:45 [ 2] [ 16] [6213544000040177] +17:17:45 [ 3] [ 6] [011000] +17:17:45 [ 4] [ 12] [000002000000] +17:17:45 [ 7] [ 10] [0320101651] +17:17:45 [ 11] [ 6] [270788] +17:17:45 [ 12] [ 6] [171651] +17:17:45 [ 13] [ 4] [0320] +17:17:45 [ 14] [ 4] [4912] +17:17:45 [ 15] [ 4] [0320] +17:17:45 [ 18] [ 4] [6011] +17:17:45 [ 19] [ 3] [418] +17:17:45 [ 22] [ 3] [021] +17:17:45 [ 25] [ 2] [01] +17:17:45 [ 28] [ 9] [D00002000] +17:17:45 [ 32] [ 6] [180893] +17:17:45 [ 35] [ 32] [6213544000040177=491212014017699] +17:17:45 [ 37] [ 12] [507910270788] +17:17:45 [ 41] [ 8] [0421BKPH] +17:17:45 [ 42] [ 15] [999999 ] +17:17:45 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:17:45 [ 49] [ 3] [418] +17:17:45 [ 52] [ 16] [F9BBB6AE26FF4B8F] +17:17:45 ============================================================================ +17:17:45 + + +waiting on router queue for slot.... +17:17:45 Sending to : <0> +17:17:45 ============================================================================ +17:17:45 ============================================================================ +17:17:45 Slot Id : <179> +17:17:45 Transaction Type : REQUEST +17:17:45 Received From : +17:17:45 ============================================================================ +17:17:45 FNo. Len. Field Value +17:17:45 ============================================================================ +17:17:45 [ 1] [ 4] [0800] +17:17:45 [ 7] [ 10] [0321002934] +17:17:45 [ 11] [ 6] [172934] +17:17:45 [ 37] [ 12] [57917172934] +17:17:45 [ 70] [ 3] [301] +17:17:45 ============================================================================ +17:17:45 + + +waiting on router queue for slot.... +17:17:45 Sending to : +17:17:45 ============================================================================ +17:17:45 ============================================================================ +17:17:45 Slot Id : <179> +17:17:45 Transaction Type : RESPONSE +17:17:45 Received From : +17:17:45 ============================================================================ +17:17:45 FNo. Len. Field Value +17:17:45 ============================================================================ +17:17:45 [ 1] [ 4] [0810] +17:17:45 [ 7] [ 10] [0321002934] +17:17:45 [ 11] [ 6] [172934] +17:17:45 [ 37] [ 12] [579171729340] +17:17:45 [ 39] [ 2] [00] +17:17:45 [ 70] [ 3] [810] +17:17:45 ============================================================================ +17:17:45 Calculate Source COMM Id = 6 +17:17:45 ============================================================================ +17:17:45 + + +waiting on router queue for slot.... +17:17:46 ============================================================================ +17:17:46 Slot Id : <156> +17:17:46 Transaction Type : RESPONSE +17:17:46 Received From : +17:17:46 ============================================================================ +17:17:46 FNo. Len. Field Value +17:17:46 ============================================================================ +17:17:46 [ 1] [ 4] [0210] +17:17:46 [ 2] [ 16] [6213544000040177] +17:17:46 [ 3] [ 6] [011000] +17:17:46 [ 4] [ 12] [000002000000] +17:17:46 [ 7] [ 10] [0320101651] +17:17:46 [ 11] [ 6] [270788] +17:17:46 [ 12] [ 6] [171651] +17:17:46 [ 13] [ 4] [0320] +17:17:46 [ 15] [ 4] [0320] +17:17:46 [ 18] [ 4] [6011] +17:17:46 [ 19] [ 3] [418] +17:17:46 [ 32] [ 6] [180893] +17:17:46 [ 35] [ 32] [6213544000040177=491212014017699] +17:17:46 [ 37] [ 12] [507910270788] +17:17:46 [ 38] [ 6] [270788] +17:17:46 [ 39] [ 2] [51] +17:17:46 [ 41] [ 8] [0421BKPH] +17:17:46 [ 49] [ 3] [418] +17:17:46 [ 54] [ 40] [1001418C0000071049061002418C000007104906] +17:17:46 ============================================================================ +17:17:46 Sending to : +17:17:46 ============================================================================ +17:17:46 + + +waiting on router queue for slot.... +17:17:47 ============================================================================ +17:17:47 Slot Id : <156> +17:17:47 Transaction Type : RESPONSE +17:17:47 Received From : +17:17:47 ============================================================================ +17:17:47 FNo. Len. Field Value +17:17:47 ============================================================================ +17:17:47 [ 1] [ 4] [0210] +17:17:47 [ 2] [ 16] [6213544000040177] +17:17:47 [ 3] [ 6] [011000] +17:17:47 [ 4] [ 12] [000002000000] +17:17:47 [ 7] [ 10] [0320101651] +17:17:47 [ 11] [ 6] [270788] +17:17:47 [ 12] [ 6] [171651] +17:17:47 [ 13] [ 4] [0320] +17:17:47 [ 15] [ 4] [0320] +17:17:47 [ 18] [ 4] [6011] +17:17:47 [ 19] [ 3] [418] +17:17:47 [ 32] [ 6] [180893] +17:17:47 [ 35] [ 32] [6213544000040177=491212014017699] +17:17:47 [ 37] [ 12] [507910270788] +17:17:47 [ 38] [ 6] [270788] +17:17:47 [ 39] [ 2] [51] +17:17:47 [ 41] [ 8] [0421BKPH] +17:17:47 [ 49] [ 3] [418] +17:17:47 [ 54] [ 40] [1001418C0000071049061002418C000007104906] +17:17:47 ============================================================================ +17:17:47 Calculate Source COMM Id = 2 +17:17:47 ============================================================================ +17:17:47 + + +waiting on router queue for slot.... +17:17:47 ============================================================================ +17:17:47 Slot Id : <191> +17:17:47 Transaction Type : REQUEST +17:17:47 Received From : +17:17:47 ============================================================================ +17:17:47 FNo. Len. Field Value +17:17:47 ============================================================================ +17:17:47 [ 1] [ 4] [0200] +17:17:47 [ 2] [ 16] [1808930500011291] +17:17:47 [ 3] [ 6] [011000] +17:17:47 [ 4] [ 12] [000005000000] +17:17:47 [ 7] [ 10] [0320171742] +17:17:47 [ 11] [ 6] [812944] +17:17:47 [ 12] [ 6] [171742] +17:17:47 [ 13] [ 4] [0320] +17:17:47 [ 15] [ 4] [0320] +17:17:47 [ 18] [ 4] [6011] +17:17:47 [ 22] [ 3] [900] +17:17:47 [ 25] [ 2] [02] +17:17:47 [ 28] [ 9] [D00002000] +17:17:47 [ 32] [ 6] [621354] +17:17:47 [ 35] [ 27] [1808930500011291=1803500785] +17:17:47 [ 37] [ 12] [507903161486] +17:17:47 [ 41] [ 8] [04002600] +17:17:47 [ 42] [ 15] [NATIVE ] +17:17:47 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +17:17:47 [ 49] [ 3] [418] +17:17:47 [ 52] [ 16] [9748AA6CC99D2C29] +17:17:47 ============================================================================ +17:17:47 + + +waiting on router queue for slot.... +17:17:47 Sending to : +17:17:47 ============================================================================ +17:17:47 Sending to : +17:17:47 ============================================================================ +17:17:48 ============================================================================ +17:17:48 Slot Id : <191> +17:17:48 Transaction Type : REQUEST +17:17:48 Received From : +17:17:48 ============================================================================ +17:17:48 FNo. Len. Field Value +17:17:48 ============================================================================ +17:17:48 [ 1] [ 4] [0200] +17:17:48 [ 2] [ 16] [1808930500011291] +17:17:48 [ 3] [ 6] [011000] +17:17:48 [ 4] [ 12] [000005000000] +17:17:48 [ 7] [ 10] [0320171742] +17:17:48 [ 11] [ 6] [812944] +17:17:48 [ 12] [ 6] [171742] +17:17:48 [ 13] [ 4] [0320] +17:17:48 [ 15] [ 4] [0320] +17:17:48 [ 18] [ 4] [6011] +17:17:48 [ 22] [ 3] [900] +17:17:48 [ 25] [ 2] [02] +17:17:48 [ 28] [ 9] [D00002000] +17:17:48 [ 32] [ 6] [621354] +17:17:48 [ 35] [ 27] [1808930500011291=1803500785] +17:17:48 [ 37] [ 12] [507903161486] +17:17:48 [ 41] [ 8] [04002600] +17:17:48 [ 42] [ 15] [NATIVE ] +17:17:48 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +17:17:48 [ 49] [ 3] [418] +17:17:48 [ 52] [ 16] [9748AA6CC99D2C29] +17:17:48 ============================================================================ +17:17:48 + + +waiting on router queue for slot.... +17:17:48 Sending to : +17:17:48 ============================================================================ +17:17:48 ============================================================================ +17:17:48 Slot Id : <191> +17:17:48 Transaction Type : REQUEST +17:17:48 Received From : +17:17:48 ============================================================================ +17:17:48 FNo. Len. Field Value +17:17:48 ============================================================================ +17:17:48 [ 1] [ 4] [0200] +17:17:48 [ 2] [ 16] [1808930500011291] +17:17:48 [ 3] [ 6] [011000] +17:17:48 [ 4] [ 12] [000005000000] +17:17:48 [ 7] [ 10] [0320171742] +17:17:48 [ 11] [ 6] [812944] +17:17:48 [ 12] [ 6] [171742] +17:17:48 [ 13] [ 4] [0320] +17:17:48 [ 15] [ 4] [0320] +17:17:48 [ 18] [ 4] [6011] +17:17:48 [ 22] [ 3] [900] +17:17:48 [ 25] [ 2] [02] +17:17:48 [ 28] [ 9] [D00002000] +17:17:48 [ 32] [ 6] [621354] +17:17:48 [ 35] [ 27] [1808930500011291=1803500785] +17:17:48 [ 37] [ 12] [507903161486] +17:17:48 [ 41] [ 8] [04002600] +17:17:48 [ 42] [ 15] [NATIVE ] +17:17:48 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +17:17:48 [ 49] [ 3] [418] +17:17:48 [ 52] [ 16] [E00B73B68ECC6849] +17:17:48 ============================================================================ +17:17:48 + + +waiting on router queue for slot.... +17:17:48 Sending to : <2> +17:17:48 ============================================================================ +17:17:51 ============================================================================ +17:17:51 Slot Id : <191> +17:17:51 Transaction Type : RESPONSE +17:17:51 Received From : +17:17:51 ============================================================================ +17:17:51 FNo. Len. Field Value +17:17:51 ============================================================================ +17:17:51 [ 1] [ 4] [0210] +17:17:51 [ 2] [ 16] [1808930500011291] +17:17:51 [ 3] [ 6] [011000] +17:17:51 [ 4] [ 12] [000005000000] +17:17:51 [ 6] [ 12] [000005000000] +17:17:51 [ 7] [ 10] [0320171742] +17:17:51 [ 11] [ 6] [812944] +17:17:51 [ 12] [ 6] [171742] +17:17:51 [ 13] [ 4] [0320] +17:17:51 [ 18] [ 4] [6011] +17:17:51 [ 19] [ 3] [418] +17:17:51 [ 22] [ 3] [021] +17:17:51 [ 32] [ 6] [621354] +17:17:51 [ 35] [ 27] [1808930500011291=1803500785] +17:17:51 [ 37] [ 12] [507903161486] +17:17:51 [ 38] [ 6] [812944] +17:17:51 [ 39] [ 2] [00] +17:17:51 [ 41] [ 8] [04002600] +17:17:51 [ 49] [ 3] [418] +17:17:51 [ 52] [ 16] [E00B73B68ECC6849] +17:17:51 [ 54] [ 20] [1001418C000102610100] +17:17:51 ============================================================================ +17:17:51 Sending to : +17:17:51 ============================================================================ +17:17:51 + + +waiting on router queue for slot.... +17:17:53 ============================================================================ +17:17:53 Slot Id : <191> +17:17:53 Transaction Type : RESPONSE +17:17:53 Received From : +17:17:53 ============================================================================ +17:17:53 FNo. Len. Field Value +17:17:53 ============================================================================ +17:17:53 [ 1] [ 4] [0210] +17:17:53 [ 2] [ 16] [1808930500011291] +17:17:53 [ 3] [ 6] [011000] +17:17:53 [ 4] [ 12] [000005000000] +17:17:53 [ 6] [ 12] [000005000000] +17:17:53 [ 7] [ 10] [0320171742] +17:17:53 [ 11] [ 6] [812944] +17:17:53 [ 12] [ 6] [171742] +17:17:53 [ 13] [ 4] [0320] +17:17:53 [ 18] [ 4] [6011] +17:17:53 [ 19] [ 3] [418] +17:17:53 [ 22] [ 3] [021] +17:17:53 [ 32] [ 6] [621354] +17:17:53 [ 35] [ 27] [1808930500011291=1803500785] +17:17:53 [ 37] [ 12] [507903161486] +17:17:53 [ 38] [ 6] [812944] +17:17:53 [ 39] [ 2] [00] +17:17:53 [ 41] [ 8] [04002600] +17:17:53 [ 49] [ 3] [418] +17:17:53 [ 52] [ 16] [E00B73B68ECC6849] +17:17:53 [ 54] [ 20] [1001418C000102610100] +17:17:53 ============================================================================ +17:17:53 Calculate Source COMM Id = 0 +17:17:53 ============================================================================ +17:17:53 + + +waiting on router queue for slot.... +17:18:00 ============================================================================ +17:18:00 Slot Id : <192> +17:18:00 Transaction Type : REQUEST +17:18:00 Received From : +17:18:00 ============================================================================ +17:18:00 FNo. Len. Field Value +17:18:00 ============================================================================ +17:18:00 [ 1] [ 4] [0800] +17:18:00 [ 7] [ 10] [0320101707] +17:18:00 [ 11] [ 6] [157423] +17:18:00 [ 70] [ 3] [301] +17:18:00 ============================================================================ +17:18:00 + + +waiting on router queue for slot.... +17:18:00 Sending to : +17:18:00 ============================================================================ +17:18:00 ============================================================================ +17:18:00 Slot Id : <192> +17:18:00 Transaction Type : RESPONSE +17:18:00 Received From : +17:18:00 ============================================================================ +17:18:00 FNo. Len. Field Value +17:18:00 ============================================================================ +17:18:00 [ 1] [ 4] [0810] +17:18:00 [ 7] [ 10] [0320101707] +17:18:00 [ 11] [ 6] [157423] +17:18:00 [ 39] [ 2] [00] +17:18:00 [ 70] [ 3] [301] +17:18:00 ============================================================================ +17:18:00 Calculate Source COMM Id = 2 +17:18:00 ============================================================================ +17:18:00 + + +waiting on router queue for slot.... +17:18:02 ============================================================================ +17:18:02 Slot Id : <135> +17:18:02 Transaction Type : REQUEST +17:18:02 Received From : +17:18:02 ============================================================================ +17:18:02 FNo. Len. Field Value +17:18:02 ============================================================================ +17:18:02 [ 1] [ 4] [0200] +17:18:02 [ 2] [ 16] [6213544001473005] +17:18:02 [ 3] [ 6] [010000] +17:18:02 [ 4] [ 12] [000050000000] +17:18:02 [ 7] [ 10] [0320172549] +17:18:02 [ 11] [ 6] [240504] +17:18:02 [ 12] [ 6] [172549] +17:18:02 [ 13] [ 4] [0320] +17:18:02 [ 14] [ 4] [4912] +17:18:02 [ 15] [ 4] [0320] +17:18:02 [ 18] [ 4] [6011] +17:18:02 [ 22] [ 3] [900] +17:18:02 [ 25] [ 2] [02] +17:18:02 [ 28] [ 9] [D00002000] +17:18:02 [ 32] [ 6] [220699] +17:18:02 [ 35] [ 32] [6213544001473005=491212017300327] +17:18:02 [ 37] [ 12] [507900360243] +17:18:02 [ 41] [ 8] [05000300] +17:18:02 [ 42] [ 15] [APTRA ] +17:18:02 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:18:02 [ 49] [ 3] [418] +17:18:02 [ 52] [ 16] [0EC850AD5F068D61] +17:18:02 ============================================================================ +17:18:02 + + +waiting on router queue for slot.... +17:18:02 Sending to : +17:18:02 ============================================================================ +17:18:02 Sending to : +17:18:02 ============================================================================ +17:18:02 ============================================================================ +17:18:02 Slot Id : <190> +17:18:02 Transaction Type : REQUEST +17:18:02 Received From : +17:18:02 ============================================================================ +17:18:02 FNo. Len. Field Value +17:18:02 ============================================================================ +17:18:02 [ 1] [ 4] [0200] +17:18:02 [ 2] [ 16] [6688990108175306] +17:18:02 [ 3] [ 6] [302000] +17:18:02 [ 7] [ 10] [0320101709] +17:18:02 [ 11] [ 6] [270790] +17:18:02 [ 12] [ 6] [171709] +17:18:02 [ 13] [ 4] [0320] +17:18:02 [ 14] [ 4] [4405] +17:18:02 [ 15] [ 4] [0320] +17:18:02 [ 18] [ 4] [6011] +17:18:02 [ 19] [ 3] [418] +17:18:02 [ 22] [ 3] [021] +17:18:02 [ 25] [ 2] [01] +17:18:02 [ 32] [ 6] [180893] +17:18:02 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:18:02 [ 37] [ 12] [507910270790] +17:18:02 [ 41] [ 8] [0264UDXH] +17:18:02 [ 42] [ 15] [999999 ] +17:18:02 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +17:18:02 [ 49] [ 3] [418] +17:18:02 [ 52] [ 16] [5FE751DD5B3CBCC4] +17:18:02 ============================================================================ +17:18:02 + + +waiting on router queue for slot.... +17:18:02 Sending to : +17:18:02 ============================================================================ +17:18:02 Sending to : +17:18:02 ============================================================================ +17:18:03 ============================================================================ +17:18:03 Slot Id : <135> +17:18:03 Transaction Type : REQUEST +17:18:03 Received From : +17:18:03 ============================================================================ +17:18:03 FNo. Len. Field Value +17:18:03 ============================================================================ +17:18:03 [ 1] [ 4] [0200] +17:18:03 [ 2] [ 16] [6213544001473005] +17:18:03 [ 3] [ 6] [010000] +17:18:03 [ 4] [ 12] [000050000000] +17:18:03 [ 7] [ 10] [0320172549] +17:18:03 [ 11] [ 6] [240504] +17:18:03 [ 12] [ 6] [172549] +17:18:03 [ 13] [ 4] [0320] +17:18:03 [ 14] [ 4] [4912] +17:18:03 [ 15] [ 4] [0320] +17:18:03 [ 18] [ 4] [6011] +17:18:03 [ 22] [ 3] [900] +17:18:03 [ 25] [ 2] [02] +17:18:03 [ 28] [ 9] [D00002000] +17:18:03 [ 32] [ 6] [220699] +17:18:03 [ 35] [ 32] [6213544001473005=491212017300327] +17:18:03 [ 37] [ 12] [507900360243] +17:18:03 [ 41] [ 8] [05000300] +17:18:03 [ 42] [ 15] [APTRA ] +17:18:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:18:03 [ 49] [ 3] [418] +17:18:03 [ 52] [ 16] [0EC850AD5F068D61] +17:18:03 ============================================================================ +17:18:03 + + +waiting on router queue for slot.... +17:18:03 Sending to : +17:18:03 ============================================================================ +17:18:03 ============================================================================ +17:18:03 Slot Id : <135> +17:18:03 Transaction Type : REQUEST +17:18:03 Received From : +17:18:03 ============================================================================ +17:18:03 FNo. Len. Field Value +17:18:03 ============================================================================ +17:18:03 [ 1] [ 4] [0200] +17:18:03 [ 2] [ 16] [6213544001473005] +17:18:03 [ 3] [ 6] [010000] +17:18:03 [ 4] [ 12] [000050000000] +17:18:03 [ 7] [ 10] [0320172549] +17:18:03 [ 11] [ 6] [240504] +17:18:03 [ 12] [ 6] [172549] +17:18:03 [ 13] [ 4] [0320] +17:18:03 [ 14] [ 4] [4912] +17:18:03 [ 15] [ 4] [0320] +17:18:03 [ 18] [ 4] [6011] +17:18:03 [ 22] [ 3] [900] +17:18:03 [ 25] [ 2] [02] +17:18:03 [ 28] [ 9] [D00002000] +17:18:03 [ 32] [ 6] [220699] +17:18:03 [ 35] [ 32] [6213544001473005=491212017300327] +17:18:03 [ 37] [ 12] [507900360243] +17:18:03 [ 41] [ 8] [05000300] +17:18:03 [ 42] [ 15] [APTRA ] +17:18:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:18:03 [ 49] [ 3] [418] +17:18:03 [ 52] [ 16] [DD37CC435D8FC994] +17:18:03 ============================================================================ +17:18:03 + + +waiting on router queue for slot.... +17:18:03 Sending to : <0> +17:18:03 ============================================================================ +17:18:03 ============================================================================ +17:18:03 Slot Id : <190> +17:18:03 Transaction Type : REQUEST +17:18:03 Received From : +17:18:03 ============================================================================ +17:18:03 FNo. Len. Field Value +17:18:03 ============================================================================ +17:18:03 [ 1] [ 4] [0200] +17:18:03 [ 2] [ 16] [6688990108175306] +17:18:03 [ 3] [ 6] [302000] +17:18:03 [ 7] [ 10] [0320101709] +17:18:03 [ 11] [ 6] [270790] +17:18:03 [ 12] [ 6] [171709] +17:18:03 [ 13] [ 4] [0320] +17:18:03 [ 14] [ 4] [4405] +17:18:03 [ 15] [ 4] [0320] +17:18:03 [ 18] [ 4] [6011] +17:18:03 [ 19] [ 3] [418] +17:18:03 [ 22] [ 3] [021] +17:18:03 [ 25] [ 2] [01] +17:18:03 [ 32] [ 6] [180893] +17:18:03 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:18:03 [ 37] [ 12] [507910270790] +17:18:03 [ 41] [ 8] [0264UDXH] +17:18:03 [ 42] [ 15] [999999 ] +17:18:03 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +17:18:03 [ 49] [ 3] [418] +17:18:03 [ 52] [ 16] [5FE751DD5B3CBCC4] +17:18:03 ============================================================================ +17:18:03 + + +waiting on router queue for slot.... +17:18:03 Sending to : +17:18:03 ============================================================================ +17:18:03 ============================================================================ +17:18:03 Slot Id : <190> +17:18:03 Transaction Type : REQUEST +17:18:03 Received From : +17:18:03 ============================================================================ +17:18:03 FNo. Len. Field Value +17:18:03 ============================================================================ +17:18:03 [ 1] [ 4] [0200] +17:18:03 [ 2] [ 16] [6688990108175306] +17:18:03 [ 3] [ 6] [302000] +17:18:03 [ 7] [ 10] [0320101709] +17:18:03 [ 11] [ 6] [270790] +17:18:03 [ 12] [ 6] [171709] +17:18:03 [ 13] [ 4] [0320] +17:18:03 [ 14] [ 4] [4405] +17:18:03 [ 15] [ 4] [0320] +17:18:03 [ 18] [ 4] [6011] +17:18:03 [ 19] [ 3] [418] +17:18:03 [ 22] [ 3] [021] +17:18:03 [ 25] [ 2] [01] +17:18:03 [ 32] [ 6] [180893] +17:18:03 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:18:03 [ 37] [ 12] [507910270790] +17:18:03 [ 41] [ 8] [0264UDXH] +17:18:03 [ 42] [ 15] [999999 ] +17:18:03 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +17:18:03 [ 49] [ 3] [418] +17:18:03 [ 52] [ 16] [D0A84B9AD3CCE2A9] +17:18:03 ============================================================================ +17:18:03 + + +waiting on router queue for slot.... +17:18:03 Sending to : <0> +17:18:03 ============================================================================ +17:18:03 ============================================================================ +17:18:03 Slot Id : <190> +17:18:03 Transaction Type : RESPONSE +17:18:03 Received From : +17:18:03 ============================================================================ +17:18:03 FNo. Len. Field Value +17:18:03 ============================================================================ +17:18:03 [ 1] [ 4] [0210] +17:18:03 [ 2] [ 16] [6688990108175306] +17:18:03 [ 3] [ 6] [302000] +17:18:03 [ 4] [ 12] [000000000000] +17:18:03 [ 7] [ 10] [0320101709] +17:18:03 [ 11] [ 6] [270790] +17:18:03 [ 12] [ 6] [171709] +17:18:03 [ 13] [ 4] [0320] +17:18:03 [ 15] [ 4] [0320] +17:18:03 [ 18] [ 4] [6011] +17:18:03 [ 19] [ 3] [418] +17:18:03 [ 22] [ 3] [021] +17:18:03 [ 32] [ 6] [180893] +17:18:03 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:18:03 [ 37] [ 12] [507910270790] +17:18:03 [ 39] [ 2] [14] +17:18:03 [ 41] [ 8] [0264UDXH] +17:18:03 [ 49] [ 3] [418] +17:18:03 ============================================================================ +17:18:03 Sending to : +17:18:03 ============================================================================ +17:18:03 + + +waiting on router queue for slot.... +17:18:03 ============================================================================ +17:18:03 Slot Id : <135> +17:18:03 Transaction Type : RESPONSE +17:18:03 Received From : +17:18:03 ============================================================================ +17:18:03 FNo. Len. Field Value +17:18:03 ============================================================================ +17:18:03 [ 1] [ 4] [0210] +17:18:03 [ 2] [ 16] [6213544001473005] +17:18:03 [ 3] [ 6] [010000] +17:18:03 [ 4] [ 12] [000050000000] +17:18:03 [ 7] [ 10] [0320172549] +17:18:03 [ 11] [ 6] [240504] +17:18:03 [ 12] [ 6] [172549] +17:18:03 [ 13] [ 4] [0320] +17:18:03 [ 15] [ 4] [0320] +17:18:03 [ 18] [ 4] [6011] +17:18:03 [ 32] [ 6] [220699] +17:18:03 [ 35] [ 32] [6213544001473005=491212017300327] +17:18:03 [ 37] [ 12] [507900360243] +17:18:03 [ 38] [ 6] [249334] +17:18:03 [ 39] [ 2] [00] +17:18:03 [ 41] [ 8] [05000300] +17:18:03 [ 49] [ 3] [418] +17:18:03 [ 54] [ 40] [0001418C0000095150410002418C000009515041] +17:18:03 ============================================================================ +17:18:03 Sending to : +17:18:03 ============================================================================ +17:18:03 + + +waiting on router queue for slot.... +17:18:04 ============================================================================ +17:18:04 Slot Id : <190> +17:18:04 Transaction Type : RESPONSE +17:18:04 Received From : +17:18:04 ============================================================================ +17:18:04 FNo. Len. Field Value +17:18:04 ============================================================================ +17:18:04 [ 1] [ 4] [0210] +17:18:04 [ 2] [ 16] [6688990108175306] +17:18:04 [ 3] [ 6] [302000] +17:18:04 [ 4] [ 12] [000000000000] +17:18:04 [ 7] [ 10] [0320101709] +17:18:04 [ 11] [ 6] [270790] +17:18:04 [ 12] [ 6] [171709] +17:18:04 [ 13] [ 4] [0320] +17:18:04 [ 15] [ 4] [0320] +17:18:04 [ 18] [ 4] [6011] +17:18:04 [ 19] [ 3] [418] +17:18:04 [ 22] [ 3] [021] +17:18:04 [ 32] [ 6] [180893] +17:18:04 [ 35] [ 37] [6688990108175306=44051231530635300000] +17:18:04 [ 37] [ 12] [507910270790] +17:18:04 [ 39] [ 2] [14] +17:18:04 [ 41] [ 8] [0264UDXH] +17:18:04 [ 49] [ 3] [418] +17:18:04 ============================================================================ +17:18:04 Calculate Source COMM Id = 2 +17:18:04 ============================================================================ +17:18:04 + + +waiting on router queue for slot.... +17:18:05 ============================================================================ +17:18:05 Slot Id : <198> +17:18:05 Transaction Type : REQUEST +17:18:05 Received From : +17:18:05 ============================================================================ +17:18:05 FNo. Len. Field Value +17:18:05 ============================================================================ +17:18:05 [ 1] [ 4] [0200] +17:18:05 [ 2] [ 16] [6213544002231014] +17:18:05 [ 3] [ 6] [010000] +17:18:05 [ 4] [ 12] [000100000000] +17:18:05 [ 7] [ 10] [0320171555] +17:18:05 [ 11] [ 6] [953216] +17:18:05 [ 12] [ 6] [171555] +17:18:05 [ 13] [ 4] [0320] +17:18:05 [ 15] [ 4] [0320] +17:18:05 [ 18] [ 4] [6011] +17:18:05 [ 19] [ 3] [418] +17:18:05 [ 22] [ 3] [021] +17:18:05 [ 25] [ 2] [01] +17:18:05 [ 28] [ 9] [D00002000] +17:18:05 [ 32] [ 6] [668899] +17:18:05 [ 35] [ 32] [6213544002231014=491212013101965] +17:18:05 [ 37] [ 12] [507901614541] +17:18:05 [ 41] [ 8] [03001007] +17:18:05 [ 42] [ 15] [APT ] +17:18:05 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:18:05 [ 49] [ 3] [418] +17:18:05 [ 52] [ 16] [806DD7EED3D7E3DF] +17:18:05 ============================================================================ +17:18:05 + + +waiting on router queue for slot.... +17:18:05 Sending to : +17:18:05 ============================================================================ +17:18:05 Sending to : +17:18:05 ============================================================================ +17:18:05 ============================================================================ +17:18:05 Slot Id : <198> +17:18:05 Transaction Type : REQUEST +17:18:05 Received From : +17:18:05 ============================================================================ +17:18:05 FNo. Len. Field Value +17:18:05 ============================================================================ +17:18:05 [ 1] [ 4] [0200] +17:18:05 [ 2] [ 16] [6213544002231014] +17:18:05 [ 3] [ 6] [010000] +17:18:05 [ 4] [ 12] [000100000000] +17:18:05 [ 7] [ 10] [0320171555] +17:18:05 [ 11] [ 6] [953216] +17:18:05 [ 12] [ 6] [171555] +17:18:05 [ 13] [ 4] [0320] +17:18:05 [ 15] [ 4] [0320] +17:18:05 [ 18] [ 4] [6011] +17:18:05 [ 19] [ 3] [418] +17:18:05 [ 22] [ 3] [021] +17:18:05 [ 25] [ 2] [01] +17:18:05 [ 28] [ 9] [D00002000] +17:18:05 [ 32] [ 6] [668899] +17:18:05 [ 35] [ 32] [6213544002231014=491212013101965] +17:18:05 [ 37] [ 12] [507901614541] +17:18:05 [ 41] [ 8] [03001007] +17:18:05 [ 42] [ 15] [APT ] +17:18:05 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:18:05 [ 49] [ 3] [418] +17:18:05 [ 52] [ 16] [806DD7EED3D7E3DF] +17:18:05 ============================================================================ +17:18:05 + + +waiting on router queue for slot.... +17:18:05 Sending to : +17:18:05 ============================================================================ +17:18:05 ============================================================================ +17:18:05 Slot Id : <198> +17:18:05 Transaction Type : REQUEST +17:18:05 Received From : +17:18:05 ============================================================================ +17:18:05 FNo. Len. Field Value +17:18:05 ============================================================================ +17:18:05 [ 1] [ 4] [0200] +17:18:05 [ 2] [ 16] [6213544002231014] +17:18:05 [ 3] [ 6] [010000] +17:18:05 [ 4] [ 12] [000100000000] +17:18:05 [ 7] [ 10] [0320171555] +17:18:05 [ 11] [ 6] [953216] +17:18:05 [ 12] [ 6] [171555] +17:18:05 [ 13] [ 4] [0320] +17:18:05 [ 15] [ 4] [0320] +17:18:05 [ 18] [ 4] [6011] +17:18:05 [ 19] [ 3] [418] +17:18:05 [ 22] [ 3] [021] +17:18:05 [ 25] [ 2] [01] +17:18:05 [ 28] [ 9] [D00002000] +17:18:05 [ 32] [ 6] [668899] +17:18:05 [ 35] [ 32] [6213544002231014=491212013101965] +17:18:05 [ 37] [ 12] [507901614541] +17:18:05 [ 41] [ 8] [03001007] +17:18:05 [ 42] [ 15] [APT ] +17:18:05 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:18:05 [ 49] [ 3] [418] +17:18:05 [ 52] [ 16] [2EBE32D91D3335F3] +17:18:05 ============================================================================ +17:18:05 + + +waiting on router queue for slot.... +17:18:05 Sending to : <0> +17:18:05 ============================================================================ +17:18:06 ============================================================================ +17:18:06 Slot Id : <198> +17:18:06 Transaction Type : RESPONSE +17:18:06 Received From : +17:18:06 ============================================================================ +17:18:06 FNo. Len. Field Value +17:18:06 ============================================================================ +17:18:06 [ 1] [ 4] [0210] +17:18:06 [ 2] [ 16] [6213544002231014] +17:18:06 [ 3] [ 6] [010000] +17:18:06 [ 4] [ 12] [000100000000] +17:18:06 [ 7] [ 10] [0320171555] +17:18:06 [ 11] [ 6] [953216] +17:18:06 [ 12] [ 6] [171555] +17:18:06 [ 13] [ 4] [0320] +17:18:06 [ 15] [ 4] [0320] +17:18:06 [ 18] [ 4] [6011] +17:18:06 [ 19] [ 3] [418] +17:18:06 [ 22] [ 3] [021] +17:18:06 [ 32] [ 6] [668899] +17:18:06 [ 35] [ 32] [6213544002231014=491212013101965] +17:18:06 [ 37] [ 12] [507901614541] +17:18:06 [ 38] [ 6] [171800] +17:18:06 [ 39] [ 2] [55] +17:18:06 [ 41] [ 8] [03001007] +17:18:06 [ 49] [ 3] [418] +17:18:06 ============================================================================ +17:18:06 Sending to : +17:18:06 ============================================================================ +17:18:06 + + +waiting on router queue for slot.... +17:18:06 ============================================================================ +17:18:06 Slot Id : <135> +17:18:06 Transaction Type : RESPONSE +17:18:06 Received From : +17:18:06 ============================================================================ +17:18:06 FNo. Len. Field Value +17:18:06 ============================================================================ +17:18:06 [ 1] [ 4] [0210] +17:18:06 [ 2] [ 16] [6213544001473005] +17:18:06 [ 3] [ 6] [010000] +17:18:06 [ 4] [ 12] [000050000000] +17:18:06 [ 7] [ 10] [0320172549] +17:18:06 [ 11] [ 6] [240504] +17:18:06 [ 12] [ 6] [172549] +17:18:06 [ 13] [ 4] [0320] +17:18:06 [ 15] [ 4] [0320] +17:18:06 [ 18] [ 4] [6011] +17:18:06 [ 32] [ 6] [220699] +17:18:06 [ 35] [ 32] [6213544001473005=491212017300327] +17:18:06 [ 37] [ 12] [507900360243] +17:18:06 [ 38] [ 6] [249334] +17:18:06 [ 39] [ 2] [00] +17:18:06 [ 41] [ 8] [05000300] +17:18:06 [ 49] [ 3] [418] +17:18:06 [ 54] [ 40] [0001418C0000095150410002418C000009515041] +17:18:06 ============================================================================ +17:18:06 Calculate Source COMM Id = 1 +17:18:06 ============================================================================ +17:18:06 + + +waiting on router queue for slot.... +17:18:07 ============================================================================ +17:18:07 Slot Id : <198> +17:18:07 Transaction Type : RESPONSE +17:18:07 Received From : +17:18:07 ============================================================================ +17:18:07 FNo. Len. Field Value +17:18:07 ============================================================================ +17:18:07 [ 1] [ 4] [0210] +17:18:07 [ 2] [ 16] [6213544002231014] +17:18:07 [ 3] [ 6] [010000] +17:18:07 [ 4] [ 12] [000100000000] +17:18:07 [ 7] [ 10] [0320171555] +17:18:07 [ 11] [ 6] [953216] +17:18:07 [ 12] [ 6] [171555] +17:18:07 [ 13] [ 4] [0320] +17:18:07 [ 15] [ 4] [0320] +17:18:07 [ 18] [ 4] [6011] +17:18:07 [ 19] [ 3] [418] +17:18:07 [ 22] [ 3] [021] +17:18:07 [ 32] [ 6] [668899] +17:18:07 [ 35] [ 32] [6213544002231014=491212013101965] +17:18:07 [ 37] [ 12] [507901614541] +17:18:07 [ 38] [ 6] [171800] +17:18:07 [ 39] [ 2] [55] +17:18:07 [ 41] [ 8] [03001007] +17:18:07 [ 49] [ 3] [418] +17:18:07 ============================================================================ +17:18:07 Calculate Source COMM Id = 4 +17:18:07 ============================================================================ +17:18:07 + + +waiting on router queue for slot.... +17:18:07 ============================================================================ +17:18:07 Slot Id : <152> +17:18:07 Transaction Type : REQUEST +17:18:07 Received From : +17:18:07 ============================================================================ +17:18:07 FNo. Len. Field Value +17:18:07 ============================================================================ +17:18:07 [ 1] [ 4] [0800] +17:18:07 [ 2] [ 5] [02531] +17:18:07 [ 3] [ 6] [579178] +17:18:07 [ 7] [ 10] [0320101807] +17:18:07 [ 11] [ 6] [807416] +17:18:07 [ 15] [ 10] [0320101807] +17:18:07 [ 37] [ 11] [57917807416] +17:18:07 [ 70] [ 3] [001] +17:18:07 ============================================================================ +17:18:07 + + +waiting on router queue for slot.... +17:18:07 ============================================================================ +17:18:07 Slot Id : <152> +17:18:07 Transaction Type : RESPONSE +17:18:07 Received From : +17:18:07 ============================================================================ +17:18:07 FNo. Len. Field Value +17:18:07 ============================================================================ +17:18:07 [ 1] [ 4] [0810] +17:18:07 [ 7] [ 10] [0320101807] +17:18:07 [ 11] [ 6] [807416] +17:18:07 [ 15] [ 4] [0320] +17:18:07 [ 37] [ 12] [57917807416] +17:18:07 [ 39] [ 2] [00] +17:18:07 [ 70] [ 3] [001] +17:18:07 ============================================================================ +17:18:07 Sending to : +17:18:07 ============================================================================ +17:18:07 + + +waiting on router queue for slot.... +17:18:16 ============================================================================ +17:18:16 Slot Id : <155> +17:18:16 Transaction Type : REQUEST +17:18:16 Received From : +17:18:16 ============================================================================ +17:18:16 FNo. Len. Field Value +17:18:16 ============================================================================ +17:18:16 [ 1] [ 4] [0200] +17:18:16 [ 2] [ 16] [6213544000040177] +17:18:16 [ 3] [ 6] [301000] +17:18:16 [ 7] [ 10] [0320101719] +17:18:16 [ 11] [ 6] [270792] +17:18:16 [ 12] [ 6] [171719] +17:18:16 [ 13] [ 4] [0320] +17:18:16 [ 14] [ 4] [4912] +17:18:16 [ 15] [ 4] [0320] +17:18:16 [ 18] [ 4] [6011] +17:18:16 [ 19] [ 3] [418] +17:18:16 [ 22] [ 3] [021] +17:18:16 [ 25] [ 2] [01] +17:18:16 [ 32] [ 6] [180893] +17:18:16 [ 35] [ 32] [6213544000040177=491212014017699] +17:18:16 [ 37] [ 12] [507910270792] +17:18:16 [ 41] [ 8] [0421BKPH] +17:18:16 [ 42] [ 15] [999999 ] +17:18:16 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:18:16 [ 49] [ 3] [418] +17:18:16 [ 52] [ 16] [5FCDEECCDF131B89] +17:18:16 ============================================================================ +17:18:16 + + +waiting on router queue for slot.... +17:18:16 Sending to : +17:18:16 ============================================================================ +17:18:16 Sending to : +17:18:16 ============================================================================ +17:18:17 ============================================================================ +17:18:17 Slot Id : <155> +17:18:17 Transaction Type : REQUEST +17:18:17 Received From : +17:18:17 ============================================================================ +17:18:17 FNo. Len. Field Value +17:18:17 ============================================================================ +17:18:17 [ 1] [ 4] [0200] +17:18:17 [ 2] [ 16] [6213544000040177] +17:18:17 [ 3] [ 6] [301000] +17:18:17 [ 7] [ 10] [0320101719] +17:18:17 [ 11] [ 6] [270792] +17:18:17 [ 12] [ 6] [171719] +17:18:17 [ 13] [ 4] [0320] +17:18:17 [ 14] [ 4] [4912] +17:18:17 [ 15] [ 4] [0320] +17:18:17 [ 18] [ 4] [6011] +17:18:17 [ 19] [ 3] [418] +17:18:17 [ 22] [ 3] [021] +17:18:17 [ 25] [ 2] [01] +17:18:17 [ 32] [ 6] [180893] +17:18:17 [ 35] [ 32] [6213544000040177=491212014017699] +17:18:17 [ 37] [ 12] [507910270792] +17:18:17 [ 41] [ 8] [0421BKPH] +17:18:17 [ 42] [ 15] [999999 ] +17:18:17 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:18:17 [ 49] [ 3] [418] +17:18:17 [ 52] [ 16] [5FCDEECCDF131B89] +17:18:17 ============================================================================ +17:18:17 + + +waiting on router queue for slot.... +17:18:17 Sending to : +17:18:17 ============================================================================ +17:18:17 ============================================================================ +17:18:17 Slot Id : <155> +17:18:17 Transaction Type : REQUEST +17:18:17 Received From : +17:18:17 ============================================================================ +17:18:17 FNo. Len. Field Value +17:18:17 ============================================================================ +17:18:17 [ 1] [ 4] [0200] +17:18:17 [ 2] [ 16] [6213544000040177] +17:18:17 [ 3] [ 6] [301000] +17:18:17 [ 7] [ 10] [0320101719] +17:18:17 [ 11] [ 6] [270792] +17:18:17 [ 12] [ 6] [171719] +17:18:17 [ 13] [ 4] [0320] +17:18:17 [ 14] [ 4] [4912] +17:18:17 [ 15] [ 4] [0320] +17:18:17 [ 18] [ 4] [6011] +17:18:17 [ 19] [ 3] [418] +17:18:17 [ 22] [ 3] [021] +17:18:17 [ 25] [ 2] [01] +17:18:17 [ 32] [ 6] [180893] +17:18:17 [ 35] [ 32] [6213544000040177=491212014017699] +17:18:17 [ 37] [ 12] [507910270792] +17:18:17 [ 41] [ 8] [0421BKPH] +17:18:17 [ 42] [ 15] [999999 ] +17:18:17 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:18:17 [ 49] [ 3] [418] +17:18:17 [ 52] [ 16] [F9BBB6AE26FF4B8F] +17:18:17 ============================================================================ +17:18:17 + + +waiting on router queue for slot.... +17:18:17 Sending to : <0> +17:18:17 ============================================================================ +17:18:17 ============================================================================ +17:18:17 Slot Id : <155> +17:18:17 Transaction Type : RESPONSE +17:18:17 Received From : +17:18:17 ============================================================================ +17:18:17 FNo. Len. Field Value +17:18:17 ============================================================================ +17:18:17 [ 1] [ 4] [0210] +17:18:17 [ 2] [ 16] [6213544000040177] +17:18:17 [ 3] [ 6] [301000] +17:18:17 [ 4] [ 12] [000000000000] +17:18:17 [ 7] [ 10] [0320101719] +17:18:17 [ 11] [ 6] [270792] +17:18:17 [ 12] [ 6] [171719] +17:18:17 [ 13] [ 4] [0320] +17:18:17 [ 15] [ 4] [0320] +17:18:17 [ 18] [ 4] [6011] +17:18:17 [ 19] [ 3] [418] +17:18:17 [ 32] [ 6] [180893] +17:18:17 [ 35] [ 32] [6213544000040177=491212014017699] +17:18:17 [ 37] [ 12] [507910270792] +17:18:17 [ 38] [ 6] [207921] +17:18:17 [ 39] [ 2] [00] +17:18:17 [ 41] [ 8] [0421BKPH] +17:18:17 [ 49] [ 3] [418] +17:18:17 [ 54] [ 40] [1001418C0000071049061002418C000007104906] +17:18:17 ============================================================================ +17:18:17 Sending to : +17:18:17 ============================================================================ +17:18:17 + + +waiting on router queue for slot.... +17:18:18 ============================================================================ +17:18:18 Slot Id : <196> +17:18:18 Transaction Type : REQUEST +17:18:18 Received From : +17:18:18 ============================================================================ +17:18:18 FNo. Len. Field Value +17:18:18 ============================================================================ +17:18:18 [ 1] [ 4] [0800] +17:18:18 [ 7] [ 10] [0320101724] +17:18:18 [ 11] [ 6] [157424] +17:18:18 [ 70] [ 3] [301] +17:18:18 ============================================================================ +17:18:18 + + +waiting on router queue for slot.... +17:18:18 Sending to : +17:18:18 ============================================================================ +17:18:18 ============================================================================ +17:18:18 Slot Id : <196> +17:18:18 Transaction Type : RESPONSE +17:18:18 Received From : +17:18:18 ============================================================================ +17:18:18 FNo. Len. Field Value +17:18:18 ============================================================================ +17:18:18 [ 1] [ 4] [0810] +17:18:18 [ 7] [ 10] [0320101724] +17:18:18 [ 11] [ 6] [157424] +17:18:18 [ 39] [ 2] [00] +17:18:18 [ 70] [ 3] [301] +17:18:18 ============================================================================ +17:18:18 Calculate Source COMM Id = 2 +17:18:18 ============================================================================ +17:18:18 + + +waiting on router queue for slot.... +17:18:18 ============================================================================ +17:18:18 Slot Id : <181> +17:18:18 Transaction Type : REQUEST +17:18:18 Received From : +17:18:18 ============================================================================ +17:18:18 FNo. Len. Field Value +17:18:18 ============================================================================ +17:18:18 [ 1] [ 4] [0200] +17:18:18 [ 2] [ 16] [6213545000735278] +17:18:18 [ 3] [ 6] [010000] +17:18:18 [ 4] [ 12] [000100000000] +17:18:18 [ 7] [ 10] [0320101724] +17:18:18 [ 11] [ 6] [270795] +17:18:18 [ 12] [ 6] [171724] +17:18:18 [ 13] [ 4] [0320] +17:18:18 [ 14] [ 4] [4912] +17:18:18 [ 15] [ 4] [0320] +17:18:18 [ 18] [ 4] [6011] +17:18:18 [ 19] [ 3] [418] +17:18:18 [ 22] [ 3] [021] +17:18:18 [ 25] [ 2] [01] +17:18:18 [ 28] [ 9] [D00002000] +17:18:18 [ 32] [ 6] [180893] +17:18:18 [ 35] [ 32] [6213545000735278=491212013527283] +17:18:18 [ 37] [ 12] [507910270795] +17:18:18 [ 41] [ 8] [0121SKBR] +17:18:18 [ 42] [ 15] [999999 ] +17:18:18 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +17:18:18 [ 49] [ 3] [418] +17:18:18 [ 52] [ 16] [380E7E0692E7AF42] +17:18:18 ============================================================================ +17:18:18 + + +waiting on router queue for slot.... +17:18:18 Sending to : +17:18:18 ============================================================================ +17:18:18 Sending to : +17:18:18 ============================================================================ +17:18:19 ============================================================================ +17:18:19 Slot Id : <181> +17:18:19 Transaction Type : REQUEST +17:18:19 Received From : +17:18:19 ============================================================================ +17:18:19 FNo. Len. Field Value +17:18:19 ============================================================================ +17:18:19 [ 1] [ 4] [0200] +17:18:19 [ 2] [ 16] [6213545000735278] +17:18:19 [ 3] [ 6] [010000] +17:18:19 [ 4] [ 12] [000100000000] +17:18:19 [ 7] [ 10] [0320101724] +17:18:19 [ 11] [ 6] [270795] +17:18:19 [ 12] [ 6] [171724] +17:18:19 [ 13] [ 4] [0320] +17:18:19 [ 14] [ 4] [4912] +17:18:19 [ 15] [ 4] [0320] +17:18:19 [ 18] [ 4] [6011] +17:18:19 [ 19] [ 3] [418] +17:18:19 [ 22] [ 3] [021] +17:18:19 [ 25] [ 2] [01] +17:18:19 [ 28] [ 9] [D00002000] +17:18:19 [ 32] [ 6] [180893] +17:18:19 [ 35] [ 32] [6213545000735278=491212013527283] +17:18:19 [ 37] [ 12] [507910270795] +17:18:19 [ 41] [ 8] [0121SKBR] +17:18:19 [ 42] [ 15] [999999 ] +17:18:19 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +17:18:19 [ 49] [ 3] [418] +17:18:19 [ 52] [ 16] [380E7E0692E7AF42] +17:18:19 ============================================================================ +17:18:19 + + +waiting on router queue for slot.... +17:18:19 Sending to : +17:18:19 ============================================================================ +17:18:19 ============================================================================ +17:18:19 Slot Id : <181> +17:18:19 Transaction Type : REQUEST +17:18:19 Received From : +17:18:19 ============================================================================ +17:18:19 FNo. Len. Field Value +17:18:19 ============================================================================ +17:18:19 [ 1] [ 4] [0200] +17:18:19 [ 2] [ 16] [6213545000735278] +17:18:19 [ 3] [ 6] [010000] +17:18:19 [ 4] [ 12] [000100000000] +17:18:19 [ 7] [ 10] [0320101724] +17:18:19 [ 11] [ 6] [270795] +17:18:19 [ 12] [ 6] [171724] +17:18:19 [ 13] [ 4] [0320] +17:18:19 [ 14] [ 4] [4912] +17:18:19 [ 15] [ 4] [0320] +17:18:19 [ 18] [ 4] [6011] +17:18:19 [ 19] [ 3] [418] +17:18:19 [ 22] [ 3] [021] +17:18:19 [ 25] [ 2] [01] +17:18:19 [ 28] [ 9] [D00002000] +17:18:19 [ 32] [ 6] [180893] +17:18:19 [ 35] [ 32] [6213545000735278=491212013527283] +17:18:19 [ 37] [ 12] [507910270795] +17:18:19 [ 41] [ 8] [0121SKBR] +17:18:19 [ 42] [ 15] [999999 ] +17:18:19 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +17:18:19 [ 49] [ 3] [418] +17:18:19 [ 52] [ 16] [AECE8A054FCF4F12] +17:18:19 ============================================================================ +17:18:19 + + +waiting on router queue for slot.... +17:18:19 Sending to : <0> +17:18:19 ============================================================================ +17:18:19 ============================================================================ +17:18:19 Slot Id : <155> +17:18:19 Transaction Type : RESPONSE +17:18:19 Received From : +17:18:19 ============================================================================ +17:18:19 FNo. Len. Field Value +17:18:19 ============================================================================ +17:18:19 [ 1] [ 4] [0210] +17:18:19 [ 2] [ 16] [6213544000040177] +17:18:19 [ 3] [ 6] [301000] +17:18:19 [ 4] [ 12] [000000000000] +17:18:19 [ 7] [ 10] [0320101719] +17:18:19 [ 11] [ 6] [270792] +17:18:19 [ 12] [ 6] [171719] +17:18:19 [ 13] [ 4] [0320] +17:18:19 [ 15] [ 4] [0320] +17:18:19 [ 18] [ 4] [6011] +17:18:19 [ 19] [ 3] [418] +17:18:19 [ 32] [ 6] [180893] +17:18:19 [ 35] [ 32] [6213544000040177=491212014017699] +17:18:19 [ 37] [ 12] [507910270792] +17:18:19 [ 38] [ 6] [207921] +17:18:19 [ 39] [ 2] [00] +17:18:19 [ 41] [ 8] [0421BKPH] +17:18:19 [ 49] [ 3] [418] +17:18:19 [ 54] [ 40] [1001418C0000071049061002418C000007104906] +17:18:19 ============================================================================ +17:18:19 Calculate Source COMM Id = 2 +17:18:19 ============================================================================ +17:18:19 + + +waiting on router queue for slot.... +17:18:19 ============================================================================ +17:18:19 Slot Id : <181> +17:18:19 Transaction Type : RESPONSE +17:18:19 Received From : +17:18:19 ============================================================================ +17:18:19 FNo. Len. Field Value +17:18:19 ============================================================================ +17:18:19 [ 1] [ 4] [0210] +17:18:19 [ 2] [ 16] [6213545000735278] +17:18:19 [ 3] [ 6] [010000] +17:18:19 [ 4] [ 12] [000100000000] +17:18:19 [ 7] [ 10] [0320101724] +17:18:19 [ 11] [ 6] [270795] +17:18:19 [ 12] [ 6] [171724] +17:18:19 [ 13] [ 4] [0320] +17:18:19 [ 15] [ 4] [0320] +17:18:19 [ 18] [ 4] [6011] +17:18:19 [ 19] [ 3] [418] +17:18:19 [ 32] [ 6] [180893] +17:18:19 [ 35] [ 32] [6213545000735278=491212013527283] +17:18:19 [ 37] [ 12] [507910270795] +17:18:19 [ 38] [ 6] [090454] +17:18:19 [ 39] [ 2] [00] +17:18:19 [ 41] [ 8] [0121SKBR] +17:18:19 [ 49] [ 3] [418] +17:18:19 [ 54] [ 40] [0001418C0009087391250002418C000908739125] +17:18:19 ============================================================================ +17:18:19 Sending to : +17:18:19 ============================================================================ +17:18:19 + + +waiting on router queue for slot.... +17:18:19 ============================================================================ +17:18:19 Slot Id : <201> +17:18:19 Transaction Type : REQUEST +17:18:19 Received From : +17:18:19 ============================================================================ +17:18:19 FNo. Len. Field Value +17:18:19 ============================================================================ +17:18:19 [ 1] [ 4] [0200] +17:18:19 [ 2] [ 16] [6213544002250964] +17:18:19 [ 3] [ 6] [011000] +17:18:19 [ 4] [ 12] [000055000000] +17:18:19 [ 7] [ 10] [0320171840] +17:18:19 [ 11] [ 6] [209428] +17:18:19 [ 12] [ 6] [171346] +17:18:19 [ 13] [ 4] [0320] +17:18:19 [ 14] [ 4] [4912] +17:18:19 [ 15] [ 4] [0320] +17:18:19 [ 18] [ 4] [6011] +17:18:19 [ 19] [ 3] [418] +17:18:19 [ 22] [ 3] [021] +17:18:19 [ 25] [ 2] [01] +17:18:19 [ 28] [ 9] [D00002000] +17:18:19 [ 32] [ 6] [198901] +17:18:19 [ 35] [ 32] [6213544002250964=491212015096983] +17:18:19 [ 37] [ 12] [507917209428] +17:18:19 [ 41] [ 8] [19529001] +17:18:19 [ 42] [ 15] [000000041952901] +17:18:19 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:18:19 [ 49] [ 3] [418] +17:18:19 [ 52] [ 16] [DBDC131BF512249D] +17:18:19 ============================================================================ +17:18:19 + + +waiting on router queue for slot.... +17:18:19 Sending to : +17:18:19 ============================================================================ +17:18:19 Sending to : +17:18:19 ============================================================================ +17:18:20 ============================================================================ +17:18:20 Slot Id : <201> +17:18:20 Transaction Type : REQUEST +17:18:20 Received From : +17:18:20 ============================================================================ +17:18:20 FNo. Len. Field Value +17:18:20 ============================================================================ +17:18:20 [ 1] [ 4] [0200] +17:18:20 [ 2] [ 16] [6213544002250964] +17:18:20 [ 3] [ 6] [011000] +17:18:20 [ 4] [ 12] [000055000000] +17:18:20 [ 7] [ 10] [0320171840] +17:18:20 [ 11] [ 6] [209428] +17:18:20 [ 12] [ 6] [171346] +17:18:20 [ 13] [ 4] [0320] +17:18:20 [ 14] [ 4] [4912] +17:18:20 [ 15] [ 4] [0320] +17:18:20 [ 18] [ 4] [6011] +17:18:20 [ 19] [ 3] [418] +17:18:20 [ 22] [ 3] [021] +17:18:20 [ 25] [ 2] [01] +17:18:20 [ 28] [ 9] [D00002000] +17:18:20 [ 32] [ 6] [198901] +17:18:20 [ 35] [ 32] [6213544002250964=491212015096983] +17:18:20 [ 37] [ 12] [507917209428] +17:18:20 [ 41] [ 8] [19529001] +17:18:20 [ 42] [ 15] [000000041952901] +17:18:20 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:18:20 [ 49] [ 3] [418] +17:18:20 [ 52] [ 16] [DBDC131BF512249D] +17:18:20 ============================================================================ +17:18:20 + + +waiting on router queue for slot.... +17:18:20 Sending to : +17:18:20 ============================================================================ +17:18:20 ============================================================================ +17:18:20 Slot Id : <201> +17:18:20 Transaction Type : REQUEST +17:18:20 Received From : +17:18:20 ============================================================================ +17:18:20 FNo. Len. Field Value +17:18:20 ============================================================================ +17:18:20 [ 1] [ 4] [0200] +17:18:20 [ 2] [ 16] [6213544002250964] +17:18:20 [ 3] [ 6] [011000] +17:18:20 [ 4] [ 12] [000055000000] +17:18:20 [ 7] [ 10] [0320171840] +17:18:20 [ 11] [ 6] [209428] +17:18:20 [ 12] [ 6] [171346] +17:18:20 [ 13] [ 4] [0320] +17:18:20 [ 14] [ 4] [4912] +17:18:20 [ 15] [ 4] [0320] +17:18:20 [ 18] [ 4] [6011] +17:18:20 [ 19] [ 3] [418] +17:18:20 [ 22] [ 3] [021] +17:18:20 [ 25] [ 2] [01] +17:18:20 [ 28] [ 9] [D00002000] +17:18:20 [ 32] [ 6] [198901] +17:18:20 [ 35] [ 32] [6213544002250964=491212015096983] +17:18:20 [ 37] [ 12] [507917209428] +17:18:20 [ 41] [ 8] [19529001] +17:18:20 [ 42] [ 15] [000000041952901] +17:18:20 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:18:20 [ 49] [ 3] [418] +17:18:20 [ 52] [ 16] [3F113203B1873444] +17:18:20 ============================================================================ +17:18:20 + + +waiting on router queue for slot.... +17:18:20 Sending to : <0> +17:18:20 ============================================================================ +17:18:20 ============================================================================ +17:18:20 Slot Id : <201> +17:18:20 Transaction Type : RESPONSE +17:18:20 Received From : +17:18:20 ============================================================================ +17:18:20 FNo. Len. Field Value +17:18:20 ============================================================================ +17:18:20 [ 1] [ 4] [0210] +17:18:20 [ 2] [ 16] [6213544002250964] +17:18:20 [ 3] [ 6] [011000] +17:18:20 [ 4] [ 12] [000055000000] +17:18:20 [ 7] [ 10] [0320171840] +17:18:20 [ 11] [ 6] [209428] +17:18:20 [ 12] [ 6] [171346] +17:18:20 [ 13] [ 4] [0320] +17:18:20 [ 15] [ 4] [0320] +17:18:20 [ 18] [ 4] [6011] +17:18:20 [ 19] [ 3] [418] +17:18:20 [ 32] [ 6] [198901] +17:18:20 [ 35] [ 32] [6213544002250964=491212015096983] +17:18:20 [ 37] [ 12] [507917209428] +17:18:20 [ 38] [ 6] [239078] +17:18:20 [ 39] [ 2] [00] +17:18:20 [ 41] [ 8] [19529001] +17:18:20 [ 49] [ 3] [418] +17:18:20 [ 54] [ 40] [1001418C0000084187501002418C000008418750] +17:18:20 ============================================================================ +17:18:20 Sending to : +17:18:20 ============================================================================ +17:18:20 + + +waiting on router queue for slot.... +17:18:20 ============================================================================ +17:18:20 Slot Id : <181> +17:18:20 Transaction Type : RESPONSE +17:18:20 Received From : +17:18:20 ============================================================================ +17:18:20 FNo. Len. Field Value +17:18:20 ============================================================================ +17:18:20 [ 1] [ 4] [0210] +17:18:20 [ 2] [ 16] [6213545000735278] +17:18:20 [ 3] [ 6] [010000] +17:18:20 [ 4] [ 12] [000100000000] +17:18:20 [ 7] [ 10] [0320101724] +17:18:20 [ 11] [ 6] [270795] +17:18:20 [ 12] [ 6] [171724] +17:18:20 [ 13] [ 4] [0320] +17:18:20 [ 15] [ 4] [0320] +17:18:20 [ 18] [ 4] [6011] +17:18:20 [ 19] [ 3] [418] +17:18:20 [ 32] [ 6] [180893] +17:18:20 [ 35] [ 32] [6213545000735278=491212013527283] +17:18:20 [ 37] [ 12] [507910270795] +17:18:20 [ 38] [ 6] [090454] +17:18:20 [ 39] [ 2] [00] +17:18:20 [ 41] [ 8] [0121SKBR] +17:18:20 [ 49] [ 3] [418] +17:18:20 [ 54] [ 40] [0001418C0009087391250002418C000908739125] +17:18:20 ============================================================================ +17:18:20 Calculate Source COMM Id = 2 +17:18:20 ============================================================================ +17:18:20 + + +waiting on router queue for slot.... +17:18:22 ============================================================================ +17:18:22 Slot Id : <201> +17:18:22 Transaction Type : RESPONSE +17:18:22 Received From : +17:18:22 ============================================================================ +17:18:22 FNo. Len. Field Value +17:18:22 ============================================================================ +17:18:22 [ 1] [ 4] [0210] +17:18:22 [ 2] [ 16] [6213544002250964] +17:18:22 [ 3] [ 6] [011000] +17:18:22 [ 4] [ 12] [000055000000] +17:18:22 [ 7] [ 10] [0320171840] +17:18:22 [ 11] [ 6] [209428] +17:18:22 [ 12] [ 6] [171346] +17:18:22 [ 13] [ 4] [0320] +17:18:22 [ 15] [ 4] [0320] +17:18:22 [ 18] [ 4] [6011] +17:18:22 [ 19] [ 3] [418] +17:18:22 [ 32] [ 6] [198901] +17:18:22 [ 35] [ 32] [6213544002250964=491212015096983] +17:18:22 [ 37] [ 12] [507917209428] +17:18:22 [ 38] [ 6] [239078] +17:18:22 [ 39] [ 2] [00] +17:18:22 [ 41] [ 8] [19529001] +17:18:22 [ 49] [ 3] [418] +17:18:22 [ 54] [ 40] [1001418C0000084187501002418C000008418750] +17:18:22 ============================================================================ +17:18:22 Calculate Source COMM Id = 5 +17:18:22 ============================================================================ +17:18:22 + + +waiting on router queue for slot.... +17:18:25 ============================================================================ +17:18:25 Slot Id : <214> +17:18:25 Transaction Type : REQUEST +17:18:25 Received From : +17:18:25 ============================================================================ +17:18:25 FNo. Len. Field Value +17:18:25 ============================================================================ +17:18:25 [ 1] [ 4] [0200] +17:18:25 [ 2] [ 16] [6213544000188638] +17:18:25 [ 3] [ 6] [301000] +17:18:25 [ 7] [ 10] [0320101731] +17:18:25 [ 11] [ 6] [270797] +17:18:25 [ 12] [ 6] [171731] +17:18:25 [ 13] [ 4] [0320] +17:18:25 [ 14] [ 4] [4912] +17:18:25 [ 15] [ 4] [0320] +17:18:25 [ 18] [ 4] [6011] +17:18:25 [ 19] [ 3] [418] +17:18:25 [ 22] [ 3] [021] +17:18:25 [ 25] [ 2] [01] +17:18:25 [ 32] [ 6] [180893] +17:18:25 [ 35] [ 32] [6213544000188638=491212018863383] +17:18:25 [ 37] [ 12] [507910270797] +17:18:25 [ 41] [ 8] [0368KMMX] +17:18:25 [ 42] [ 15] [999999 ] +17:18:25 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +17:18:25 [ 49] [ 3] [418] +17:18:25 [ 52] [ 16] [80A616EC17BE941F] +17:18:25 ============================================================================ +17:18:25 + + +waiting on router queue for slot.... +17:18:25 Sending to : +17:18:25 ============================================================================ +17:18:25 Sending to : +17:18:25 ============================================================================ +17:18:25 ============================================================================ +17:18:25 Slot Id : <214> +17:18:25 Transaction Type : REQUEST +17:18:25 Received From : +17:18:25 ============================================================================ +17:18:25 FNo. Len. Field Value +17:18:25 ============================================================================ +17:18:25 [ 1] [ 4] [0200] +17:18:25 [ 2] [ 16] [6213544000188638] +17:18:25 [ 3] [ 6] [301000] +17:18:25 [ 7] [ 10] [0320101731] +17:18:25 [ 11] [ 6] [270797] +17:18:25 [ 12] [ 6] [171731] +17:18:25 [ 13] [ 4] [0320] +17:18:25 [ 14] [ 4] [4912] +17:18:25 [ 15] [ 4] [0320] +17:18:25 [ 18] [ 4] [6011] +17:18:25 [ 19] [ 3] [418] +17:18:25 [ 22] [ 3] [021] +17:18:25 [ 25] [ 2] [01] +17:18:25 [ 32] [ 6] [180893] +17:18:25 [ 35] [ 32] [6213544000188638=491212018863383] +17:18:25 [ 37] [ 12] [507910270797] +17:18:25 [ 41] [ 8] [0368KMMX] +17:18:25 [ 42] [ 15] [999999 ] +17:18:25 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +17:18:25 [ 49] [ 3] [418] +17:18:25 [ 52] [ 16] [80A616EC17BE941F] +17:18:25 ============================================================================ +17:18:25 + + +waiting on router queue for slot.... +17:18:25 Sending to : +17:18:25 ============================================================================ +17:18:25 ============================================================================ +17:18:25 Slot Id : <214> +17:18:25 Transaction Type : REQUEST +17:18:25 Received From : +17:18:25 ============================================================================ +17:18:25 FNo. Len. Field Value +17:18:25 ============================================================================ +17:18:25 [ 1] [ 4] [0200] +17:18:25 [ 2] [ 16] [6213544000188638] +17:18:25 [ 3] [ 6] [301000] +17:18:25 [ 7] [ 10] [0320101731] +17:18:25 [ 11] [ 6] [270797] +17:18:25 [ 12] [ 6] [171731] +17:18:25 [ 13] [ 4] [0320] +17:18:25 [ 14] [ 4] [4912] +17:18:25 [ 15] [ 4] [0320] +17:18:25 [ 18] [ 4] [6011] +17:18:25 [ 19] [ 3] [418] +17:18:25 [ 22] [ 3] [021] +17:18:25 [ 25] [ 2] [01] +17:18:25 [ 32] [ 6] [180893] +17:18:25 [ 35] [ 32] [6213544000188638=491212018863383] +17:18:25 [ 37] [ 12] [507910270797] +17:18:25 [ 41] [ 8] [0368KMMX] +17:18:25 [ 42] [ 15] [999999 ] +17:18:25 [ 43] [ 40] [ATM MAHAXAI KHAMMUAN LOCATION, Mahaxay, ] +17:18:25 [ 49] [ 3] [418] +17:18:25 [ 52] [ 16] [EC712E789CC8F385] +17:18:25 ============================================================================ +17:18:25 + + +waiting on router queue for slot.... +17:18:25 Sending to : <0> +17:18:25 ============================================================================ +17:18:26 ============================================================================ +17:18:26 Slot Id : <214> +17:18:26 Transaction Type : RESPONSE +17:18:26 Received From : +17:18:26 ============================================================================ +17:18:26 FNo. Len. Field Value +17:18:26 ============================================================================ +17:18:26 [ 1] [ 4] [0210] +17:18:26 [ 2] [ 16] [6213544000188638] +17:18:26 [ 3] [ 6] [301000] +17:18:26 [ 4] [ 12] [000000000000] +17:18:26 [ 7] [ 10] [0320101731] +17:18:26 [ 11] [ 6] [270797] +17:18:26 [ 12] [ 6] [171731] +17:18:26 [ 13] [ 4] [0320] +17:18:26 [ 15] [ 4] [0320] +17:18:26 [ 18] [ 4] [6011] +17:18:26 [ 19] [ 3] [418] +17:18:26 [ 32] [ 6] [180893] +17:18:26 [ 35] [ 32] [6213544000188638=491212018863383] +17:18:26 [ 37] [ 12] [507910270797] +17:18:26 [ 38] [ 6] [785366] +17:18:26 [ 39] [ 2] [00] +17:18:26 [ 41] [ 8] [0368KMMX] +17:18:26 [ 49] [ 3] [418] +17:18:26 [ 54] [ 40] [1001840C0000000011151002840C000000001115] +17:18:26 ============================================================================ +17:18:26 Sending to : +17:18:26 ============================================================================ +17:18:26 + + +waiting on router queue for slot.... +17:18:27 ============================================================================ +17:18:27 Slot Id : <214> +17:18:27 Transaction Type : RESPONSE +17:18:27 Received From : +17:18:27 ============================================================================ +17:18:27 FNo. Len. Field Value +17:18:27 ============================================================================ +17:18:27 [ 1] [ 4] [0210] +17:18:27 [ 2] [ 16] [6213544000188638] +17:18:27 [ 3] [ 6] [301000] +17:18:27 [ 4] [ 12] [000000000000] +17:18:27 [ 7] [ 10] [0320101731] +17:18:27 [ 11] [ 6] [270797] +17:18:27 [ 12] [ 6] [171731] +17:18:27 [ 13] [ 4] [0320] +17:18:27 [ 15] [ 4] [0320] +17:18:27 [ 18] [ 4] [6011] +17:18:27 [ 19] [ 3] [418] +17:18:27 [ 32] [ 6] [180893] +17:18:27 [ 35] [ 32] [6213544000188638=491212018863383] +17:18:27 [ 37] [ 12] [507910270797] +17:18:27 [ 38] [ 6] [785366] +17:18:27 [ 39] [ 2] [00] +17:18:27 [ 41] [ 8] [0368KMMX] +17:18:27 [ 49] [ 3] [418] +17:18:27 [ 54] [ 40] [1001840C0000000011151002840C000000001115] +17:18:27 ============================================================================ +17:18:27 Calculate Source COMM Id = 2 +17:18:27 ============================================================================ +17:18:27 + + +waiting on router queue for slot.... +17:18:29 ============================================================================ +17:18:29 Slot Id : <165> +17:18:29 Transaction Type : REQUEST +17:18:29 Received From : +17:18:29 ============================================================================ +17:18:29 FNo. Len. Field Value +17:18:29 ============================================================================ +17:18:29 [ 1] [ 4] [0200] +17:18:29 [ 2] [ 16] [6213544001721759] +17:18:29 [ 3] [ 6] [012000] +17:18:29 [ 4] [ 12] [000100000000] +17:18:29 [ 7] [ 10] [0320101735] +17:18:29 [ 11] [ 6] [270798] +17:18:29 [ 12] [ 6] [171735] +17:18:29 [ 13] [ 4] [0320] +17:18:29 [ 14] [ 4] [4912] +17:18:29 [ 15] [ 4] [0320] +17:18:29 [ 18] [ 4] [6011] +17:18:29 [ 19] [ 3] [418] +17:18:29 [ 22] [ 3] [021] +17:18:29 [ 25] [ 2] [01] +17:18:29 [ 28] [ 9] [D00002000] +17:18:29 [ 32] [ 6] [180893] +17:18:29 [ 35] [ 32] [6213544001721759=491212012175383] +17:18:29 [ 37] [ 12] [507910270798] +17:18:29 [ 41] [ 8] [0243VTKS] +17:18:29 [ 42] [ 15] [999999 ] +17:18:29 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +17:18:29 [ 49] [ 3] [418] +17:18:29 [ 52] [ 16] [AA68CC813A1CAB2D] +17:18:29 ============================================================================ +17:18:29 + + +waiting on router queue for slot.... +17:18:29 Sending to : +17:18:29 ============================================================================ +17:18:29 Sending to : +17:18:29 ============================================================================ +17:18:29 ============================================================================ +17:18:29 Slot Id : <165> +17:18:29 Transaction Type : REQUEST +17:18:29 Received From : +17:18:29 ============================================================================ +17:18:29 FNo. Len. Field Value +17:18:29 ============================================================================ +17:18:29 [ 1] [ 4] [0200] +17:18:29 [ 2] [ 16] [6213544001721759] +17:18:29 [ 3] [ 6] [012000] +17:18:29 [ 4] [ 12] [000100000000] +17:18:29 [ 7] [ 10] [0320101735] +17:18:29 [ 11] [ 6] [270798] +17:18:29 [ 12] [ 6] [171735] +17:18:29 [ 13] [ 4] [0320] +17:18:29 [ 14] [ 4] [4912] +17:18:29 [ 15] [ 4] [0320] +17:18:29 [ 18] [ 4] [6011] +17:18:29 [ 19] [ 3] [418] +17:18:29 [ 22] [ 3] [021] +17:18:29 [ 25] [ 2] [01] +17:18:29 [ 28] [ 9] [D00002000] +17:18:29 [ 32] [ 6] [180893] +17:18:29 [ 35] [ 32] [6213544001721759=491212012175383] +17:18:29 [ 37] [ 12] [507910270798] +17:18:29 [ 41] [ 8] [0243VTKS] +17:18:29 [ 42] [ 15] [999999 ] +17:18:29 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +17:18:29 [ 49] [ 3] [418] +17:18:29 [ 52] [ 16] [AA68CC813A1CAB2D] +17:18:29 ============================================================================ +17:18:29 + + +waiting on router queue for slot.... +17:18:29 Sending to : +17:18:29 ============================================================================ +17:18:29 ============================================================================ +17:18:29 Slot Id : <165> +17:18:29 Transaction Type : REQUEST +17:18:29 Received From : +17:18:29 ============================================================================ +17:18:29 FNo. Len. Field Value +17:18:29 ============================================================================ +17:18:29 [ 1] [ 4] [0200] +17:18:29 [ 2] [ 16] [6213544001721759] +17:18:29 [ 3] [ 6] [012000] +17:18:29 [ 4] [ 12] [000100000000] +17:18:29 [ 7] [ 10] [0320101735] +17:18:29 [ 11] [ 6] [270798] +17:18:29 [ 12] [ 6] [171735] +17:18:29 [ 13] [ 4] [0320] +17:18:29 [ 14] [ 4] [4912] +17:18:29 [ 15] [ 4] [0320] +17:18:29 [ 18] [ 4] [6011] +17:18:29 [ 19] [ 3] [418] +17:18:29 [ 22] [ 3] [021] +17:18:29 [ 25] [ 2] [01] +17:18:29 [ 28] [ 9] [D00002000] +17:18:29 [ 32] [ 6] [180893] +17:18:29 [ 35] [ 32] [6213544001721759=491212012175383] +17:18:29 [ 37] [ 12] [507910270798] +17:18:29 [ 41] [ 8] [0243VTKS] +17:18:29 [ 42] [ 15] [999999 ] +17:18:29 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +17:18:29 [ 49] [ 3] [418] +17:18:29 [ 52] [ 16] [B6D9B5E03D45620F] +17:18:29 ============================================================================ +17:18:29 + + +waiting on router queue for slot.... +17:18:29 Sending to : <0> +17:18:29 ============================================================================ +17:18:30 ============================================================================ +17:18:30 Slot Id : <165> +17:18:30 Transaction Type : RESPONSE +17:18:30 Received From : +17:18:30 ============================================================================ +17:18:30 FNo. Len. Field Value +17:18:30 ============================================================================ +17:18:30 [ 1] [ 4] [0210] +17:18:30 [ 2] [ 16] [6213544001721759] +17:18:30 [ 3] [ 6] [012000] +17:18:30 [ 4] [ 12] [000100000000] +17:18:30 [ 7] [ 10] [0320101735] +17:18:30 [ 11] [ 6] [270798] +17:18:30 [ 12] [ 6] [171735] +17:18:30 [ 13] [ 4] [0320] +17:18:30 [ 15] [ 4] [0320] +17:18:30 [ 18] [ 4] [6011] +17:18:30 [ 19] [ 3] [418] +17:18:30 [ 32] [ 6] [180893] +17:18:30 [ 35] [ 32] [6213544001721759=491212012175383] +17:18:30 [ 37] [ 12] [507910270798] +17:18:30 [ 38] [ 6] [896971] +17:18:30 [ 39] [ 2] [00] +17:18:30 [ 41] [ 8] [0243VTKS] +17:18:30 [ 49] [ 3] [418] +17:18:30 [ 54] [ 40] [2001418C0001890003802002418C000189000380] +17:18:30 ============================================================================ +17:18:30 Sending to : +17:18:30 ============================================================================ +17:18:30 + + +waiting on router queue for slot.... +17:18:31 ============================================================================ +17:18:31 Slot Id : <165> +17:18:31 Transaction Type : RESPONSE +17:18:31 Received From : +17:18:31 ============================================================================ +17:18:31 FNo. Len. Field Value +17:18:31 ============================================================================ +17:18:31 [ 1] [ 4] [0210] +17:18:31 [ 2] [ 16] [6213544001721759] +17:18:31 [ 3] [ 6] [012000] +17:18:31 [ 4] [ 12] [000100000000] +17:18:31 [ 7] [ 10] [0320101735] +17:18:31 [ 11] [ 6] [270798] +17:18:31 [ 12] [ 6] [171735] +17:18:31 [ 13] [ 4] [0320] +17:18:31 [ 15] [ 4] [0320] +17:18:31 [ 18] [ 4] [6011] +17:18:31 [ 19] [ 3] [418] +17:18:31 [ 32] [ 6] [180893] +17:18:31 [ 35] [ 32] [6213544001721759=491212012175383] +17:18:31 [ 37] [ 12] [507910270798] +17:18:31 [ 38] [ 6] [896971] +17:18:31 [ 39] [ 2] [00] +17:18:31 [ 41] [ 8] [0243VTKS] +17:18:31 [ 49] [ 3] [418] +17:18:31 [ 54] [ 40] [2001418C0001890003802002418C000189000380] +17:18:31 ============================================================================ +17:18:31 Calculate Source COMM Id = 2 +17:18:31 ============================================================================ +17:18:31 + + +waiting on router queue for slot.... +17:18:42 ============================================================================ +17:18:42 Slot Id : <209> +17:18:42 Transaction Type : REQUEST +17:18:42 Received From : +17:18:42 ============================================================================ +17:18:42 FNo. Len. Field Value +17:18:42 ============================================================================ +17:18:42 [ 1] [ 4] [0800] +17:18:42 [ 7] [ 10] [0320101749] +17:18:42 [ 11] [ 6] [157425] +17:18:42 [ 70] [ 3] [301] +17:18:42 ============================================================================ +17:18:42 + + +waiting on router queue for slot.... +17:18:42 Sending to : +17:18:42 ============================================================================ +17:18:42 ============================================================================ +17:18:42 Slot Id : <209> +17:18:42 Transaction Type : RESPONSE +17:18:42 Received From : +17:18:42 ============================================================================ +17:18:42 FNo. Len. Field Value +17:18:42 ============================================================================ +17:18:42 [ 1] [ 4] [0810] +17:18:42 [ 7] [ 10] [0320101749] +17:18:42 [ 11] [ 6] [157425] +17:18:42 [ 39] [ 2] [00] +17:18:42 [ 70] [ 3] [301] +17:18:42 ============================================================================ +17:18:42 Calculate Source COMM Id = 2 +17:18:42 ============================================================================ +17:18:42 + + +waiting on router queue for slot.... +17:18:50 ============================================================================ +17:18:50 Slot Id : <195> +17:18:50 Transaction Type : REQUEST +17:18:50 Received From : +17:18:50 ============================================================================ +17:18:50 FNo. Len. Field Value +17:18:50 ============================================================================ +17:18:50 [ 1] [ 4] [0800] +17:18:50 [ 7] [ 10] [0321003039] +17:18:50 [ 11] [ 6] [173039] +17:18:50 [ 37] [ 12] [57917173039] +17:18:50 [ 70] [ 3] [301] +17:18:50 ============================================================================ +17:18:50 + + +waiting on router queue for slot.... +17:18:50 Sending to : +17:18:50 ============================================================================ +17:18:50 ============================================================================ +17:18:50 Slot Id : <195> +17:18:50 Transaction Type : RESPONSE +17:18:50 Received From : +17:18:50 ============================================================================ +17:18:50 FNo. Len. Field Value +17:18:50 ============================================================================ +17:18:50 [ 1] [ 4] [0810] +17:18:50 [ 7] [ 10] [0321003039] +17:18:50 [ 11] [ 6] [173039] +17:18:50 [ 37] [ 12] [579171730390] +17:18:50 [ 39] [ 2] [00] +17:18:50 [ 70] [ 3] [810] +17:18:50 ============================================================================ +17:18:50 Calculate Source COMM Id = 6 +17:18:50 ============================================================================ +17:18:50 + + +waiting on router queue for slot.... +17:18:54 ============================================================================ +17:18:54 Slot Id : <178> +17:18:54 Transaction Type : REQUEST +17:18:54 Received From : +17:18:54 ============================================================================ +17:18:54 FNo. Len. Field Value +17:18:54 ============================================================================ +17:18:54 [ 1] [ 4] [0800] +17:18:54 [ 7] [ 10] [0320101801] +17:18:54 [ 11] [ 6] [157426] +17:18:54 [ 70] [ 3] [301] +17:18:54 ============================================================================ +17:18:54 + + +waiting on router queue for slot.... +17:18:54 Sending to : +17:18:54 ============================================================================ +17:18:54 ============================================================================ +17:18:54 Slot Id : <178> +17:18:54 Transaction Type : RESPONSE +17:18:54 Received From : +17:18:54 ============================================================================ +17:18:54 FNo. Len. Field Value +17:18:54 ============================================================================ +17:18:54 [ 1] [ 4] [0810] +17:18:54 [ 7] [ 10] [0320101801] +17:18:54 [ 11] [ 6] [157426] +17:18:54 [ 39] [ 2] [00] +17:18:54 [ 70] [ 3] [301] +17:18:54 ============================================================================ +17:18:54 Calculate Source COMM Id = 2 +17:18:54 ============================================================================ +17:18:54 + + +waiting on router queue for slot.... +17:19:00 ============================================================================ +17:19:00 Slot Id : <194> +17:19:00 Transaction Type : REQUEST +17:19:00 Received From : +17:19:00 ============================================================================ +17:19:00 FNo. Len. Field Value +17:19:00 ============================================================================ +17:19:00 [ 1] [ 4] [0200] +17:19:00 [ 2] [ 16] [6213544000040177] +17:19:00 [ 3] [ 6] [011000] +17:19:00 [ 4] [ 12] [000002000000] +17:19:00 [ 7] [ 10] [0320101806] +17:19:00 [ 11] [ 6] [270803] +17:19:00 [ 12] [ 6] [171806] +17:19:00 [ 13] [ 4] [0320] +17:19:00 [ 14] [ 4] [4912] +17:19:00 [ 15] [ 4] [0320] +17:19:00 [ 18] [ 4] [6011] +17:19:00 [ 19] [ 3] [418] +17:19:00 [ 22] [ 3] [021] +17:19:00 [ 25] [ 2] [01] +17:19:00 [ 28] [ 9] [D00002000] +17:19:00 [ 32] [ 6] [180893] +17:19:00 [ 35] [ 32] [6213544000040177=491212014017699] +17:19:00 [ 37] [ 12] [507910270803] +17:19:00 [ 41] [ 8] [0421BKPH] +17:19:00 [ 42] [ 15] [999999 ] +17:19:00 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:19:00 [ 49] [ 3] [418] +17:19:00 [ 52] [ 16] [5FCDEECCDF131B89] +17:19:00 ============================================================================ +17:19:00 + + +waiting on router queue for slot.... +17:19:00 Sending to : +17:19:00 ============================================================================ +17:19:00 Sending to : +17:19:00 ============================================================================ +17:19:00 ============================================================================ +17:19:00 Slot Id : <194> +17:19:00 Transaction Type : REQUEST +17:19:00 Received From : +17:19:00 ============================================================================ +17:19:00 FNo. Len. Field Value +17:19:00 ============================================================================ +17:19:00 [ 1] [ 4] [0200] +17:19:00 [ 2] [ 16] [6213544000040177] +17:19:00 [ 3] [ 6] [011000] +17:19:00 [ 4] [ 12] [000002000000] +17:19:00 [ 7] [ 10] [0320101806] +17:19:00 [ 11] [ 6] [270803] +17:19:00 [ 12] [ 6] [171806] +17:19:00 [ 13] [ 4] [0320] +17:19:00 [ 14] [ 4] [4912] +17:19:00 [ 15] [ 4] [0320] +17:19:00 [ 18] [ 4] [6011] +17:19:00 [ 19] [ 3] [418] +17:19:00 [ 22] [ 3] [021] +17:19:00 [ 25] [ 2] [01] +17:19:00 [ 28] [ 9] [D00002000] +17:19:00 [ 32] [ 6] [180893] +17:19:00 [ 35] [ 32] [6213544000040177=491212014017699] +17:19:00 [ 37] [ 12] [507910270803] +17:19:00 [ 41] [ 8] [0421BKPH] +17:19:00 [ 42] [ 15] [999999 ] +17:19:00 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:19:00 [ 49] [ 3] [418] +17:19:00 [ 52] [ 16] [5FCDEECCDF131B89] +17:19:00 ============================================================================ +17:19:00 + + +waiting on router queue for slot.... +17:19:00 Sending to : +17:19:00 ============================================================================ +17:19:00 ============================================================================ +17:19:00 Slot Id : <194> +17:19:00 Transaction Type : REQUEST +17:19:00 Received From : +17:19:00 ============================================================================ +17:19:00 FNo. Len. Field Value +17:19:00 ============================================================================ +17:19:00 [ 1] [ 4] [0200] +17:19:00 [ 2] [ 16] [6213544000040177] +17:19:00 [ 3] [ 6] [011000] +17:19:00 [ 4] [ 12] [000002000000] +17:19:00 [ 7] [ 10] [0320101806] +17:19:00 [ 11] [ 6] [270803] +17:19:00 [ 12] [ 6] [171806] +17:19:00 [ 13] [ 4] [0320] +17:19:00 [ 14] [ 4] [4912] +17:19:00 [ 15] [ 4] [0320] +17:19:00 [ 18] [ 4] [6011] +17:19:00 [ 19] [ 3] [418] +17:19:00 [ 22] [ 3] [021] +17:19:00 [ 25] [ 2] [01] +17:19:00 [ 28] [ 9] [D00002000] +17:19:00 [ 32] [ 6] [180893] +17:19:00 [ 35] [ 32] [6213544000040177=491212014017699] +17:19:00 [ 37] [ 12] [507910270803] +17:19:00 [ 41] [ 8] [0421BKPH] +17:19:00 [ 42] [ 15] [999999 ] +17:19:00 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:19:00 [ 49] [ 3] [418] +17:19:00 [ 52] [ 16] [F9BBB6AE26FF4B8F] +17:19:00 ============================================================================ +17:19:00 + + +waiting on router queue for slot.... +17:19:00 Sending to : <0> +17:19:00 ============================================================================ +17:19:00 ============================================================================ +17:19:00 Slot Id : <194> +17:19:00 Transaction Type : RESPONSE +17:19:00 Received From : +17:19:00 ============================================================================ +17:19:00 FNo. Len. Field Value +17:19:00 ============================================================================ +17:19:00 [ 1] [ 4] [0210] +17:19:00 [ 2] [ 16] [6213544000040177] +17:19:00 [ 3] [ 6] [011000] +17:19:00 [ 4] [ 12] [000002000000] +17:19:00 [ 7] [ 10] [0320101806] +17:19:00 [ 11] [ 6] [270803] +17:19:00 [ 12] [ 6] [171806] +17:19:00 [ 13] [ 4] [0320] +17:19:00 [ 15] [ 4] [0320] +17:19:00 [ 18] [ 4] [6011] +17:19:00 [ 19] [ 3] [418] +17:19:00 [ 32] [ 6] [180893] +17:19:00 [ 35] [ 32] [6213544000040177=491212014017699] +17:19:00 [ 37] [ 12] [507910270803] +17:19:00 [ 38] [ 6] [270803] +17:19:00 [ 39] [ 2] [51] +17:19:00 [ 41] [ 8] [0421BKPH] +17:19:00 [ 49] [ 3] [418] +17:19:00 [ 54] [ 40] [1001418C0000071049061002418C000007104906] +17:19:00 ============================================================================ +17:19:00 Sending to : +17:19:00 ============================================================================ +17:19:00 + + +waiting on router queue for slot.... +17:19:02 ============================================================================ +17:19:02 Slot Id : <206> +17:19:02 Transaction Type : REQUEST +17:19:02 Received From : +17:19:02 ============================================================================ +17:19:02 FNo. Len. Field Value +17:19:02 ============================================================================ +17:19:02 [ 1] [ 4] [0200] +17:19:02 [ 2] [ 16] [6213544002231014] +17:19:02 [ 3] [ 6] [300000] +17:19:02 [ 4] [ 12] [000000000000] +17:19:02 [ 7] [ 10] [0320171651] +17:19:02 [ 11] [ 6] [953240] +17:19:02 [ 12] [ 6] [171651] +17:19:02 [ 13] [ 4] [0320] +17:19:02 [ 15] [ 4] [0320] +17:19:02 [ 18] [ 4] [6011] +17:19:02 [ 19] [ 3] [418] +17:19:02 [ 22] [ 3] [021] +17:19:02 [ 25] [ 2] [01] +17:19:02 [ 28] [ 9] [D00000000] +17:19:02 [ 32] [ 6] [668899] +17:19:02 [ 35] [ 32] [6213544002231014=491212013101965] +17:19:02 [ 37] [ 12] [507901614543] +17:19:02 [ 41] [ 8] [03001007] +17:19:02 [ 42] [ 15] [APT ] +17:19:02 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:19:02 [ 49] [ 3] [418] +17:19:02 [ 52] [ 16] [806DD7EED3D7E3DF] +17:19:02 ============================================================================ +17:19:02 + + +waiting on router queue for slot.... +17:19:02 Sending to : +17:19:02 ============================================================================ +17:19:02 Sending to : +17:19:02 ============================================================================ +17:19:02 ============================================================================ +17:19:02 Slot Id : <194> +17:19:02 Transaction Type : RESPONSE +17:19:02 Received From : +17:19:02 ============================================================================ +17:19:02 FNo. Len. Field Value +17:19:02 ============================================================================ +17:19:02 [ 1] [ 4] [0210] +17:19:02 [ 2] [ 16] [6213544000040177] +17:19:02 [ 3] [ 6] [011000] +17:19:02 [ 4] [ 12] [000002000000] +17:19:02 [ 7] [ 10] [0320101806] +17:19:02 [ 11] [ 6] [270803] +17:19:02 [ 12] [ 6] [171806] +17:19:02 [ 13] [ 4] [0320] +17:19:02 [ 15] [ 4] [0320] +17:19:02 [ 18] [ 4] [6011] +17:19:02 [ 19] [ 3] [418] +17:19:02 [ 32] [ 6] [180893] +17:19:02 [ 35] [ 32] [6213544000040177=491212014017699] +17:19:02 [ 37] [ 12] [507910270803] +17:19:02 [ 38] [ 6] [270803] +17:19:02 [ 39] [ 2] [51] +17:19:02 [ 41] [ 8] [0421BKPH] +17:19:02 [ 49] [ 3] [418] +17:19:02 [ 54] [ 40] [1001418C0000071049061002418C000007104906] +17:19:02 ============================================================================ +17:19:02 Calculate Source COMM Id = 2 +17:19:02 ============================================================================ +17:19:02 + + +waiting on router queue for slot.... +17:19:02 ============================================================================ +17:19:02 Slot Id : <206> +17:19:02 Transaction Type : REQUEST +17:19:02 Received From : +17:19:02 ============================================================================ +17:19:02 FNo. Len. Field Value +17:19:02 ============================================================================ +17:19:02 [ 1] [ 4] [0200] +17:19:02 [ 2] [ 16] [6213544002231014] +17:19:02 [ 3] [ 6] [300000] +17:19:02 [ 4] [ 12] [000000000000] +17:19:02 [ 7] [ 10] [0320171651] +17:19:02 [ 11] [ 6] [953240] +17:19:02 [ 12] [ 6] [171651] +17:19:02 [ 13] [ 4] [0320] +17:19:02 [ 15] [ 4] [0320] +17:19:02 [ 18] [ 4] [6011] +17:19:02 [ 19] [ 3] [418] +17:19:02 [ 22] [ 3] [021] +17:19:02 [ 25] [ 2] [01] +17:19:02 [ 28] [ 9] [D00000000] +17:19:02 [ 32] [ 6] [668899] +17:19:02 [ 35] [ 32] [6213544002231014=491212013101965] +17:19:02 [ 37] [ 12] [507901614543] +17:19:02 [ 41] [ 8] [03001007] +17:19:02 [ 42] [ 15] [APT ] +17:19:02 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:19:02 [ 49] [ 3] [418] +17:19:02 [ 52] [ 16] [806DD7EED3D7E3DF] +17:19:02 ============================================================================ +17:19:02 + + +waiting on router queue for slot.... +17:19:02 Sending to : +17:19:02 ============================================================================ +17:19:02 ============================================================================ +17:19:02 Slot Id : <206> +17:19:02 Transaction Type : REQUEST +17:19:02 Received From : +17:19:02 ============================================================================ +17:19:02 FNo. Len. Field Value +17:19:02 ============================================================================ +17:19:02 [ 1] [ 4] [0200] +17:19:02 [ 2] [ 16] [6213544002231014] +17:19:02 [ 3] [ 6] [300000] +17:19:02 [ 4] [ 12] [000000000000] +17:19:02 [ 7] [ 10] [0320171651] +17:19:02 [ 11] [ 6] [953240] +17:19:02 [ 12] [ 6] [171651] +17:19:02 [ 13] [ 4] [0320] +17:19:02 [ 15] [ 4] [0320] +17:19:02 [ 18] [ 4] [6011] +17:19:02 [ 19] [ 3] [418] +17:19:02 [ 22] [ 3] [021] +17:19:02 [ 25] [ 2] [01] +17:19:02 [ 28] [ 9] [D00000000] +17:19:02 [ 32] [ 6] [668899] +17:19:02 [ 35] [ 32] [6213544002231014=491212013101965] +17:19:02 [ 37] [ 12] [507901614543] +17:19:02 [ 41] [ 8] [03001007] +17:19:02 [ 42] [ 15] [APT ] +17:19:02 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:19:02 [ 49] [ 3] [418] +17:19:02 [ 52] [ 16] [2EBE32D91D3335F3] +17:19:02 ============================================================================ +17:19:02 + + +waiting on router queue for slot.... +17:19:02 Sending to : <0> +17:19:02 ============================================================================ +17:19:02 ============================================================================ +17:19:02 Slot Id : <206> +17:19:02 Transaction Type : RESPONSE +17:19:02 Received From : +17:19:02 ============================================================================ +17:19:02 FNo. Len. Field Value +17:19:02 ============================================================================ +17:19:02 [ 1] [ 4] [0210] +17:19:02 [ 2] [ 16] [6213544002231014] +17:19:02 [ 3] [ 6] [300000] +17:19:02 [ 4] [ 12] [000000000000] +17:19:02 [ 7] [ 10] [0320171651] +17:19:02 [ 11] [ 6] [953240] +17:19:02 [ 12] [ 6] [171651] +17:19:02 [ 13] [ 4] [0320] +17:19:02 [ 15] [ 4] [0320] +17:19:02 [ 18] [ 4] [6011] +17:19:02 [ 19] [ 3] [418] +17:19:02 [ 22] [ 3] [021] +17:19:02 [ 32] [ 6] [668899] +17:19:02 [ 35] [ 32] [6213544002231014=491212013101965] +17:19:02 [ 37] [ 12] [507901614543] +17:19:02 [ 38] [ 6] [171857] +17:19:02 [ 39] [ 2] [55] +17:19:02 [ 41] [ 8] [03001007] +17:19:02 [ 49] [ 3] [418] +17:19:02 ============================================================================ +17:19:02 Sending to : +17:19:02 ============================================================================ +17:19:02 + + +waiting on router queue for slot.... +17:19:03 ============================================================================ +17:19:03 Slot Id : <206> +17:19:03 Transaction Type : RESPONSE +17:19:03 Received From : +17:19:03 ============================================================================ +17:19:03 FNo. Len. Field Value +17:19:03 ============================================================================ +17:19:03 [ 1] [ 4] [0210] +17:19:03 [ 2] [ 16] [6213544002231014] +17:19:03 [ 3] [ 6] [300000] +17:19:03 [ 4] [ 12] [000000000000] +17:19:03 [ 7] [ 10] [0320171651] +17:19:03 [ 11] [ 6] [953240] +17:19:03 [ 12] [ 6] [171651] +17:19:03 [ 13] [ 4] [0320] +17:19:03 [ 15] [ 4] [0320] +17:19:03 [ 18] [ 4] [6011] +17:19:03 [ 19] [ 3] [418] +17:19:03 [ 22] [ 3] [021] +17:19:03 [ 32] [ 6] [668899] +17:19:03 [ 35] [ 32] [6213544002231014=491212013101965] +17:19:03 [ 37] [ 12] [507901614543] +17:19:03 [ 38] [ 6] [171857] +17:19:03 [ 39] [ 2] [55] +17:19:03 [ 41] [ 8] [03001007] +17:19:03 [ 49] [ 3] [418] +17:19:03 ============================================================================ +17:19:03 Calculate Source COMM Id = 4 +17:19:03 ============================================================================ +17:19:03 + + +waiting on router queue for slot.... +17:19:08 ============================================================================ +17:19:08 Slot Id : <184> +17:19:08 Transaction Type : REQUEST +17:19:08 Received From : +17:19:08 ============================================================================ +17:19:08 FNo. Len. Field Value +17:19:08 ============================================================================ +17:19:08 [ 1] [ 4] [0200] +17:19:08 [ 2] [ 16] [6213544002251285] +17:19:08 [ 3] [ 6] [011000] +17:19:08 [ 4] [ 12] [000055000000] +17:19:08 [ 7] [ 10] [0320171928] +17:19:08 [ 11] [ 6] [209438] +17:19:08 [ 12] [ 6] [171434] +17:19:08 [ 13] [ 4] [0320] +17:19:08 [ 14] [ 4] [4912] +17:19:08 [ 15] [ 4] [0320] +17:19:08 [ 18] [ 4] [6011] +17:19:08 [ 19] [ 3] [418] +17:19:08 [ 22] [ 3] [021] +17:19:08 [ 25] [ 2] [01] +17:19:08 [ 28] [ 9] [D00002000] +17:19:08 [ 32] [ 6] [198901] +17:19:08 [ 35] [ 32] [6213544002251285=491212015128237] +17:19:08 [ 37] [ 12] [507917209438] +17:19:08 [ 41] [ 8] [19529001] +17:19:08 [ 42] [ 15] [000000041952901] +17:19:08 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:19:08 [ 49] [ 3] [418] +17:19:08 [ 52] [ 16] [F2B7711CEEA1EE5B] +17:19:08 ============================================================================ +17:19:08 + + +waiting on router queue for slot.... +17:19:08 Sending to : +17:19:08 ============================================================================ +17:19:08 Sending to : +17:19:08 ============================================================================ +17:19:08 ============================================================================ +17:19:08 Slot Id : <184> +17:19:08 Transaction Type : REQUEST +17:19:08 Received From : +17:19:08 ============================================================================ +17:19:08 FNo. Len. Field Value +17:19:08 ============================================================================ +17:19:08 [ 1] [ 4] [0200] +17:19:08 [ 2] [ 16] [6213544002251285] +17:19:08 [ 3] [ 6] [011000] +17:19:08 [ 4] [ 12] [000055000000] +17:19:08 [ 7] [ 10] [0320171928] +17:19:08 [ 11] [ 6] [209438] +17:19:08 [ 12] [ 6] [171434] +17:19:08 [ 13] [ 4] [0320] +17:19:08 [ 14] [ 4] [4912] +17:19:08 [ 15] [ 4] [0320] +17:19:08 [ 18] [ 4] [6011] +17:19:08 [ 19] [ 3] [418] +17:19:08 [ 22] [ 3] [021] +17:19:08 [ 25] [ 2] [01] +17:19:08 [ 28] [ 9] [D00002000] +17:19:08 [ 32] [ 6] [198901] +17:19:08 [ 35] [ 32] [6213544002251285=491212015128237] +17:19:08 [ 37] [ 12] [507917209438] +17:19:08 [ 41] [ 8] [19529001] +17:19:08 [ 42] [ 15] [000000041952901] +17:19:08 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:19:08 [ 49] [ 3] [418] +17:19:08 [ 52] [ 16] [F2B7711CEEA1EE5B] +17:19:08 ============================================================================ +17:19:08 + + +waiting on router queue for slot.... +17:19:08 Sending to : +17:19:08 ============================================================================ +17:19:08 ============================================================================ +17:19:08 Slot Id : <184> +17:19:08 Transaction Type : REQUEST +17:19:08 Received From : +17:19:08 ============================================================================ +17:19:08 FNo. Len. Field Value +17:19:08 ============================================================================ +17:19:08 [ 1] [ 4] [0200] +17:19:08 [ 2] [ 16] [6213544002251285] +17:19:08 [ 3] [ 6] [011000] +17:19:08 [ 4] [ 12] [000055000000] +17:19:08 [ 7] [ 10] [0320171928] +17:19:08 [ 11] [ 6] [209438] +17:19:08 [ 12] [ 6] [171434] +17:19:08 [ 13] [ 4] [0320] +17:19:08 [ 14] [ 4] [4912] +17:19:08 [ 15] [ 4] [0320] +17:19:08 [ 18] [ 4] [6011] +17:19:08 [ 19] [ 3] [418] +17:19:08 [ 22] [ 3] [021] +17:19:08 [ 25] [ 2] [01] +17:19:08 [ 28] [ 9] [D00002000] +17:19:08 [ 32] [ 6] [198901] +17:19:08 [ 35] [ 32] [6213544002251285=491212015128237] +17:19:08 [ 37] [ 12] [507917209438] +17:19:08 [ 41] [ 8] [19529001] +17:19:08 [ 42] [ 15] [000000041952901] +17:19:08 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:19:08 [ 49] [ 3] [418] +17:19:08 [ 52] [ 16] [F547F57B320EBDAC] +17:19:08 ============================================================================ +17:19:08 + + +waiting on router queue for slot.... +17:19:08 Sending to : <0> +17:19:08 ============================================================================ +17:19:09 ============================================================================ +17:19:09 Slot Id : <212> +17:19:09 Transaction Type : REQUEST +17:19:09 Received From : +17:19:09 ============================================================================ +17:19:09 FNo. Len. Field Value +17:19:09 ============================================================================ +17:19:09 [ 1] [ 4] [0200] +17:19:09 [ 2] [ 16] [6213544001473005] +17:19:09 [ 3] [ 6] [010000] +17:19:09 [ 4] [ 12] [000004000000] +17:19:09 [ 7] [ 10] [0320172656] +17:19:09 [ 11] [ 6] [240507] +17:19:09 [ 12] [ 6] [172656] +17:19:09 [ 13] [ 4] [0320] +17:19:09 [ 14] [ 4] [4912] +17:19:09 [ 15] [ 4] [0320] +17:19:09 [ 18] [ 4] [6011] +17:19:09 [ 22] [ 3] [900] +17:19:09 [ 25] [ 2] [02] +17:19:09 [ 28] [ 9] [D00002000] +17:19:09 [ 32] [ 6] [220699] +17:19:09 [ 35] [ 32] [6213544001473005=491212017300327] +17:19:09 [ 37] [ 12] [507900360245] +17:19:09 [ 41] [ 8] [05000300] +17:19:09 [ 42] [ 15] [APTRA ] +17:19:09 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:19:09 [ 49] [ 3] [418] +17:19:09 [ 52] [ 16] [0EC850AD5F068D61] +17:19:09 ============================================================================ +17:19:09 + + +waiting on router queue for slot.... +17:19:09 Sending to : +17:19:09 ============================================================================ +17:19:09 Sending to : +17:19:09 ============================================================================ +17:19:09 ============================================================================ +17:19:09 Slot Id : <193> +17:19:09 Transaction Type : REQUEST +17:19:09 Received From : +17:19:09 ============================================================================ +17:19:09 FNo. Len. Field Value +17:19:09 ============================================================================ +17:19:09 [ 1] [ 4] [0800] +17:19:09 [ 2] [ 5] [02531] +17:19:09 [ 3] [ 6] [579178] +17:19:09 [ 7] [ 10] [0320101909] +17:19:09 [ 11] [ 6] [807417] +17:19:09 [ 15] [ 10] [0320101909] +17:19:09 [ 37] [ 11] [57917807417] +17:19:09 [ 70] [ 3] [001] +17:19:09 ============================================================================ +17:19:09 + + +waiting on router queue for slot.... +17:19:09 ============================================================================ +17:19:09 Slot Id : <184> +17:19:09 Transaction Type : RESPONSE +17:19:09 Received From : +17:19:09 ============================================================================ +17:19:09 FNo. Len. Field Value +17:19:09 ============================================================================ +17:19:09 [ 1] [ 4] [0210] +17:19:09 [ 2] [ 16] [6213544002251285] +17:19:09 [ 3] [ 6] [011000] +17:19:09 [ 4] [ 12] [000055000000] +17:19:09 [ 7] [ 10] [0320171928] +17:19:09 [ 11] [ 6] [209438] +17:19:09 [ 12] [ 6] [171434] +17:19:09 [ 13] [ 4] [0320] +17:19:09 [ 15] [ 4] [0320] +17:19:09 [ 18] [ 4] [6011] +17:19:09 [ 19] [ 3] [418] +17:19:09 [ 32] [ 6] [198901] +17:19:09 [ 35] [ 32] [6213544002251285=491212015128237] +17:19:09 [ 37] [ 12] [507917209438] +17:19:09 [ 38] [ 6] [717401] +17:19:09 [ 39] [ 2] [00] +17:19:09 [ 41] [ 8] [19529001] +17:19:09 [ 49] [ 3] [418] +17:19:09 [ 54] [ 40] [1001418C0000088625001002418C000008862500] +17:19:09 ============================================================================ +17:19:09 Sending to : +17:19:09 ============================================================================ +17:19:09 + + +waiting on router queue for slot.... +17:19:09 ============================================================================ +17:19:09 Slot Id : <193> +17:19:09 Transaction Type : RESPONSE +17:19:09 Received From : +17:19:09 ============================================================================ +17:19:09 FNo. Len. Field Value +17:19:09 ============================================================================ +17:19:09 [ 1] [ 4] [0810] +17:19:09 [ 7] [ 10] [0320101909] +17:19:09 [ 11] [ 6] [807417] +17:19:09 [ 15] [ 4] [0320] +17:19:09 [ 37] [ 12] [57917807417] +17:19:09 [ 39] [ 2] [00] +17:19:09 [ 70] [ 3] [001] +17:19:09 ============================================================================ +17:19:09 Sending to : +17:19:09 ============================================================================ +17:19:09 + + +waiting on router queue for slot.... +17:19:09 ============================================================================ +17:19:09 Slot Id : <212> +17:19:09 Transaction Type : REQUEST +17:19:09 Received From : +17:19:09 ============================================================================ +17:19:09 FNo. Len. Field Value +17:19:09 ============================================================================ +17:19:09 [ 1] [ 4] [0200] +17:19:09 [ 2] [ 16] [6213544001473005] +17:19:09 [ 3] [ 6] [010000] +17:19:09 [ 4] [ 12] [000004000000] +17:19:09 [ 7] [ 10] [0320172656] +17:19:09 [ 11] [ 6] [240507] +17:19:09 [ 12] [ 6] [172656] +17:19:09 [ 13] [ 4] [0320] +17:19:09 [ 14] [ 4] [4912] +17:19:09 [ 15] [ 4] [0320] +17:19:09 [ 18] [ 4] [6011] +17:19:09 [ 22] [ 3] [900] +17:19:09 [ 25] [ 2] [02] +17:19:09 [ 28] [ 9] [D00002000] +17:19:09 [ 32] [ 6] [220699] +17:19:09 [ 35] [ 32] [6213544001473005=491212017300327] +17:19:09 [ 37] [ 12] [507900360245] +17:19:09 [ 41] [ 8] [05000300] +17:19:09 [ 42] [ 15] [APTRA ] +17:19:09 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:19:09 [ 49] [ 3] [418] +17:19:09 [ 52] [ 16] [0EC850AD5F068D61] +17:19:09 ============================================================================ +17:19:09 + + +waiting on router queue for slot.... +17:19:09 Sending to : +17:19:09 ============================================================================ +17:19:09 ============================================================================ +17:19:09 Slot Id : <212> +17:19:09 Transaction Type : REQUEST +17:19:09 Received From : +17:19:09 ============================================================================ +17:19:09 FNo. Len. Field Value +17:19:09 ============================================================================ +17:19:09 [ 1] [ 4] [0200] +17:19:09 [ 2] [ 16] [6213544001473005] +17:19:09 [ 3] [ 6] [010000] +17:19:09 [ 4] [ 12] [000004000000] +17:19:09 [ 7] [ 10] [0320172656] +17:19:09 [ 11] [ 6] [240507] +17:19:09 [ 12] [ 6] [172656] +17:19:09 [ 13] [ 4] [0320] +17:19:09 [ 14] [ 4] [4912] +17:19:09 [ 15] [ 4] [0320] +17:19:09 [ 18] [ 4] [6011] +17:19:09 [ 22] [ 3] [900] +17:19:09 [ 25] [ 2] [02] +17:19:09 [ 28] [ 9] [D00002000] +17:19:09 [ 32] [ 6] [220699] +17:19:09 [ 35] [ 32] [6213544001473005=491212017300327] +17:19:09 [ 37] [ 12] [507900360245] +17:19:09 [ 41] [ 8] [05000300] +17:19:09 [ 42] [ 15] [APTRA ] +17:19:09 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:19:09 [ 49] [ 3] [418] +17:19:09 [ 52] [ 16] [DD37CC435D8FC994] +17:19:09 ============================================================================ +17:19:09 + + +waiting on router queue for slot.... +17:19:09 Sending to : <0> +17:19:09 ============================================================================ +17:19:10 ============================================================================ +17:19:10 Slot Id : <212> +17:19:10 Transaction Type : RESPONSE +17:19:10 Received From : +17:19:10 ============================================================================ +17:19:10 FNo. Len. Field Value +17:19:10 ============================================================================ +17:19:10 [ 1] [ 4] [0210] +17:19:10 [ 2] [ 16] [6213544001473005] +17:19:10 [ 3] [ 6] [010000] +17:19:10 [ 4] [ 12] [000004000000] +17:19:10 [ 7] [ 10] [0320172656] +17:19:10 [ 11] [ 6] [240507] +17:19:10 [ 12] [ 6] [172656] +17:19:10 [ 13] [ 4] [0320] +17:19:10 [ 15] [ 4] [0320] +17:19:10 [ 18] [ 4] [6011] +17:19:10 [ 32] [ 6] [220699] +17:19:10 [ 35] [ 32] [6213544001473005=491212017300327] +17:19:10 [ 37] [ 12] [507900360245] +17:19:10 [ 38] [ 6] [646985] +17:19:10 [ 39] [ 2] [00] +17:19:10 [ 41] [ 8] [05000300] +17:19:10 [ 49] [ 3] [418] +17:19:10 [ 54] [ 40] [0001418C0000053150410002418C000005315041] +17:19:10 ============================================================================ +17:19:10 Sending to : +17:19:10 ============================================================================ +17:19:10 + + +waiting on router queue for slot.... +17:19:10 ============================================================================ +17:19:10 Slot Id : <184> +17:19:10 Transaction Type : RESPONSE +17:19:10 Received From : +17:19:10 ============================================================================ +17:19:10 FNo. Len. Field Value +17:19:10 ============================================================================ +17:19:10 [ 1] [ 4] [0210] +17:19:10 [ 2] [ 16] [6213544002251285] +17:19:10 [ 3] [ 6] [011000] +17:19:10 [ 4] [ 12] [000055000000] +17:19:10 [ 7] [ 10] [0320171928] +17:19:10 [ 11] [ 6] [209438] +17:19:10 [ 12] [ 6] [171434] +17:19:10 [ 13] [ 4] [0320] +17:19:10 [ 15] [ 4] [0320] +17:19:10 [ 18] [ 4] [6011] +17:19:10 [ 19] [ 3] [418] +17:19:10 [ 32] [ 6] [198901] +17:19:10 [ 35] [ 32] [6213544002251285=491212015128237] +17:19:10 [ 37] [ 12] [507917209438] +17:19:10 [ 38] [ 6] [717401] +17:19:10 [ 39] [ 2] [00] +17:19:10 [ 41] [ 8] [19529001] +17:19:10 [ 49] [ 3] [418] +17:19:10 [ 54] [ 40] [1001418C0000088625001002418C000008862500] +17:19:10 ============================================================================ +17:19:10 Calculate Source COMM Id = 5 +17:19:10 ============================================================================ +17:19:10 + + +waiting on router queue for slot.... +17:19:12 ============================================================================ +17:19:12 Slot Id : <212> +17:19:12 Transaction Type : RESPONSE +17:19:12 Received From : +17:19:12 ============================================================================ +17:19:12 FNo. Len. Field Value +17:19:12 ============================================================================ +17:19:12 [ 1] [ 4] [0210] +17:19:12 [ 2] [ 16] [6213544001473005] +17:19:12 [ 3] [ 6] [010000] +17:19:12 [ 4] [ 12] [000004000000] +17:19:12 [ 7] [ 10] [0320172656] +17:19:12 [ 11] [ 6] [240507] +17:19:12 [ 12] [ 6] [172656] +17:19:12 [ 13] [ 4] [0320] +17:19:12 [ 15] [ 4] [0320] +17:19:12 [ 18] [ 4] [6011] +17:19:12 [ 32] [ 6] [220699] +17:19:12 [ 35] [ 32] [6213544001473005=491212017300327] +17:19:12 [ 37] [ 12] [507900360245] +17:19:12 [ 38] [ 6] [646985] +17:19:12 [ 39] [ 2] [00] +17:19:12 [ 41] [ 8] [05000300] +17:19:12 [ 49] [ 3] [418] +17:19:12 [ 54] [ 40] [0001418C0000053150410002418C000005315041] +17:19:12 ============================================================================ +17:19:12 Calculate Source COMM Id = 1 +17:19:12 ============================================================================ +17:19:12 + + +waiting on router queue for slot.... +17:19:14 ============================================================================ +17:19:14 Slot Id : <207> +17:19:14 Transaction Type : REQUEST +17:19:14 Received From : +17:19:14 ============================================================================ +17:19:14 FNo. Len. Field Value +17:19:14 ============================================================================ +17:19:14 [ 1] [ 4] [0800] +17:19:14 [ 7] [ 10] [0320101821] +17:19:14 [ 11] [ 6] [157427] +17:19:14 [ 70] [ 3] [301] +17:19:14 ============================================================================ +17:19:14 + + +waiting on router queue for slot.... +17:19:14 Sending to : +17:19:14 ============================================================================ +17:19:14 ============================================================================ +17:19:14 Slot Id : <207> +17:19:14 Transaction Type : RESPONSE +17:19:14 Received From : +17:19:14 ============================================================================ +17:19:14 FNo. Len. Field Value +17:19:14 ============================================================================ +17:19:14 [ 1] [ 4] [0810] +17:19:14 [ 7] [ 10] [0320101821] +17:19:14 [ 11] [ 6] [157427] +17:19:14 [ 39] [ 2] [00] +17:19:14 [ 70] [ 3] [301] +17:19:14 ============================================================================ +17:19:14 Calculate Source COMM Id = 2 +17:19:14 ============================================================================ +17:19:14 + + +waiting on router queue for slot.... +17:19:30 ============================================================================ +17:19:30 Slot Id : <213> +17:19:30 Transaction Type : REQUEST +17:19:30 Received From : +17:19:30 ============================================================================ +17:19:30 FNo. Len. Field Value +17:19:30 ============================================================================ +17:19:30 [ 1] [ 4] [0800] +17:19:30 [ 7] [ 10] [0320101837] +17:19:30 [ 11] [ 6] [157428] +17:19:30 [ 70] [ 3] [301] +17:19:30 ============================================================================ +17:19:30 + + +waiting on router queue for slot.... +17:19:30 Sending to : +17:19:30 ============================================================================ +17:19:30 ============================================================================ +17:19:30 Slot Id : <213> +17:19:30 Transaction Type : RESPONSE +17:19:30 Received From : +17:19:30 ============================================================================ +17:19:30 FNo. Len. Field Value +17:19:30 ============================================================================ +17:19:30 [ 1] [ 4] [0810] +17:19:30 [ 7] [ 10] [0320101837] +17:19:30 [ 11] [ 6] [157428] +17:19:30 [ 39] [ 2] [00] +17:19:30 [ 70] [ 3] [301] +17:19:30 ============================================================================ +17:19:30 Calculate Source COMM Id = 2 +17:19:30 ============================================================================ +17:19:30 + + +waiting on router queue for slot.... +17:19:32 ============================================================================ +17:19:32 Slot Id : <221> +17:19:32 Transaction Type : REQUEST +17:19:32 Received From : +17:19:32 ============================================================================ +17:19:32 FNo. Len. Field Value +17:19:32 ============================================================================ +17:19:32 [ 1] [ 4] [0200] +17:19:32 [ 2] [ 16] [6213544001721759] +17:19:32 [ 3] [ 6] [012000] +17:19:32 [ 4] [ 12] [000100000000] +17:19:32 [ 7] [ 10] [0320101839] +17:19:32 [ 11] [ 6] [270807] +17:19:32 [ 12] [ 6] [171839] +17:19:32 [ 13] [ 4] [0320] +17:19:32 [ 14] [ 4] [4912] +17:19:32 [ 15] [ 4] [0320] +17:19:32 [ 18] [ 4] [6011] +17:19:32 [ 19] [ 3] [418] +17:19:32 [ 22] [ 3] [021] +17:19:32 [ 25] [ 2] [01] +17:19:32 [ 28] [ 9] [D00002000] +17:19:32 [ 32] [ 6] [180893] +17:19:32 [ 35] [ 32] [6213544001721759=491212012175383] +17:19:32 [ 37] [ 12] [507910270807] +17:19:32 [ 41] [ 8] [0243VTKS] +17:19:32 [ 42] [ 15] [999999 ] +17:19:32 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +17:19:32 [ 49] [ 3] [418] +17:19:32 [ 52] [ 16] [AA68CC813A1CAB2D] +17:19:32 ============================================================================ +17:19:32 + + +waiting on router queue for slot.... +17:19:32 Sending to : +17:19:32 ============================================================================ +17:19:32 Sending to : +17:19:32 ============================================================================ +17:19:33 ============================================================================ +17:19:33 Slot Id : <221> +17:19:33 Transaction Type : REQUEST +17:19:33 Received From : +17:19:33 ============================================================================ +17:19:33 FNo. Len. Field Value +17:19:33 ============================================================================ +17:19:33 [ 1] [ 4] [0200] +17:19:33 [ 2] [ 16] [6213544001721759] +17:19:33 [ 3] [ 6] [012000] +17:19:33 [ 4] [ 12] [000100000000] +17:19:33 [ 7] [ 10] [0320101839] +17:19:33 [ 11] [ 6] [270807] +17:19:33 [ 12] [ 6] [171839] +17:19:33 [ 13] [ 4] [0320] +17:19:33 [ 14] [ 4] [4912] +17:19:33 [ 15] [ 4] [0320] +17:19:33 [ 18] [ 4] [6011] +17:19:33 [ 19] [ 3] [418] +17:19:33 [ 22] [ 3] [021] +17:19:33 [ 25] [ 2] [01] +17:19:33 [ 28] [ 9] [D00002000] +17:19:33 [ 32] [ 6] [180893] +17:19:33 [ 35] [ 32] [6213544001721759=491212012175383] +17:19:33 [ 37] [ 12] [507910270807] +17:19:33 [ 41] [ 8] [0243VTKS] +17:19:33 [ 42] [ 15] [999999 ] +17:19:33 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +17:19:33 [ 49] [ 3] [418] +17:19:33 [ 52] [ 16] [AA68CC813A1CAB2D] +17:19:33 ============================================================================ +17:19:33 + + +waiting on router queue for slot.... +17:19:33 Sending to : +17:19:33 ============================================================================ +17:19:33 ============================================================================ +17:19:33 Slot Id : <221> +17:19:33 Transaction Type : REQUEST +17:19:33 Received From : +17:19:33 ============================================================================ +17:19:33 FNo. Len. Field Value +17:19:33 ============================================================================ +17:19:33 [ 1] [ 4] [0200] +17:19:33 [ 2] [ 16] [6213544001721759] +17:19:33 [ 3] [ 6] [012000] +17:19:33 [ 4] [ 12] [000100000000] +17:19:33 [ 7] [ 10] [0320101839] +17:19:33 [ 11] [ 6] [270807] +17:19:33 [ 12] [ 6] [171839] +17:19:33 [ 13] [ 4] [0320] +17:19:33 [ 14] [ 4] [4912] +17:19:33 [ 15] [ 4] [0320] +17:19:33 [ 18] [ 4] [6011] +17:19:33 [ 19] [ 3] [418] +17:19:33 [ 22] [ 3] [021] +17:19:33 [ 25] [ 2] [01] +17:19:33 [ 28] [ 9] [D00002000] +17:19:33 [ 32] [ 6] [180893] +17:19:33 [ 35] [ 32] [6213544001721759=491212012175383] +17:19:33 [ 37] [ 12] [507910270807] +17:19:33 [ 41] [ 8] [0243VTKS] +17:19:33 [ 42] [ 15] [999999 ] +17:19:33 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +17:19:33 [ 49] [ 3] [418] +17:19:33 [ 52] [ 16] [B6D9B5E03D45620F] +17:19:33 ============================================================================ +17:19:33 + + +waiting on router queue for slot.... +17:19:33 Sending to : <0> +17:19:33 ============================================================================ +17:19:33 ============================================================================ +17:19:33 Slot Id : <230> +17:19:33 Transaction Type : REQUEST +17:19:33 Received From : +17:19:33 ============================================================================ +17:19:33 FNo. Len. Field Value +17:19:33 ============================================================================ +17:19:33 [ 1] [ 4] [0200] +17:19:33 [ 2] [ 16] [6688990108143908] +17:19:33 [ 3] [ 6] [011000] +17:19:33 [ 4] [ 12] [000007000000] +17:19:33 [ 7] [ 10] [0320171928] +17:19:33 [ 11] [ 6] [813425] +17:19:33 [ 12] [ 6] [171928] +17:19:33 [ 13] [ 4] [0320] +17:19:33 [ 15] [ 4] [0320] +17:19:33 [ 18] [ 4] [6011] +17:19:33 [ 22] [ 3] [900] +17:19:33 [ 25] [ 2] [02] +17:19:33 [ 28] [ 9] [D00002000] +17:19:33 [ 32] [ 6] [621354] +17:19:33 [ 35] [ 37] [6688990108143908=44051231390838900000] +17:19:33 [ 37] [ 12] [507904994923] +17:19:33 [ 41] [ 8] [16002100] +17:19:33 [ 42] [ 15] [NATIVE ] +17:19:33 [ 43] [ 40] [Thangone Unit Thangone LAO] +17:19:33 [ 49] [ 3] [418] +17:19:33 [ 52] [ 16] [724F5A3B00D108E9] +17:19:33 ============================================================================ +17:19:33 + + +waiting on router queue for slot.... +17:19:33 Sending to : +17:19:33 ============================================================================ +17:19:33 Sending to : +17:19:33 ============================================================================ +17:19:33 ============================================================================ +17:19:33 Slot Id : <221> +17:19:33 Transaction Type : RESPONSE +17:19:33 Received From : +17:19:33 ============================================================================ +17:19:33 FNo. Len. Field Value +17:19:33 ============================================================================ +17:19:33 [ 1] [ 4] [0210] +17:19:33 [ 2] [ 16] [6213544001721759] +17:19:33 [ 3] [ 6] [012000] +17:19:33 [ 4] [ 12] [000100000000] +17:19:33 [ 7] [ 10] [0320101839] +17:19:33 [ 11] [ 6] [270807] +17:19:33 [ 12] [ 6] [171839] +17:19:33 [ 13] [ 4] [0320] +17:19:33 [ 15] [ 4] [0320] +17:19:33 [ 18] [ 4] [6011] +17:19:33 [ 19] [ 3] [418] +17:19:33 [ 32] [ 6] [180893] +17:19:33 [ 35] [ 32] [6213544001721759=491212012175383] +17:19:33 [ 37] [ 12] [507910270807] +17:19:33 [ 38] [ 6] [226748] +17:19:33 [ 39] [ 2] [00] +17:19:33 [ 41] [ 8] [0243VTKS] +17:19:33 [ 49] [ 3] [418] +17:19:33 [ 54] [ 40] [2001418C0000888003802002418C000088800380] +17:19:33 ============================================================================ +17:19:33 Sending to : +17:19:33 ============================================================================ +17:19:33 + + +waiting on router queue for slot.... +17:19:34 ============================================================================ +17:19:34 Slot Id : <230> +17:19:34 Transaction Type : REQUEST +17:19:34 Received From : +17:19:34 ============================================================================ +17:19:34 FNo. Len. Field Value +17:19:34 ============================================================================ +17:19:34 [ 1] [ 4] [0200] +17:19:34 [ 2] [ 16] [6688990108143908] +17:19:34 [ 3] [ 6] [011000] +17:19:34 [ 4] [ 12] [000007000000] +17:19:34 [ 7] [ 10] [0320171928] +17:19:34 [ 11] [ 6] [813425] +17:19:34 [ 12] [ 6] [171928] +17:19:34 [ 13] [ 4] [0320] +17:19:34 [ 15] [ 4] [0320] +17:19:34 [ 18] [ 4] [6011] +17:19:34 [ 22] [ 3] [900] +17:19:34 [ 25] [ 2] [02] +17:19:34 [ 28] [ 9] [D00002000] +17:19:34 [ 32] [ 6] [621354] +17:19:34 [ 35] [ 37] [6688990108143908=44051231390838900000] +17:19:34 [ 37] [ 12] [507904994923] +17:19:34 [ 41] [ 8] [16002100] +17:19:34 [ 42] [ 15] [NATIVE ] +17:19:34 [ 43] [ 40] [Thangone Unit Thangone LAO] +17:19:34 [ 49] [ 3] [418] +17:19:34 [ 52] [ 16] [724F5A3B00D108E9] +17:19:34 ============================================================================ +17:19:34 + + +waiting on router queue for slot.... +17:19:34 Sending to : +17:19:34 ============================================================================ +17:19:34 ============================================================================ +17:19:34 Slot Id : <230> +17:19:34 Transaction Type : REQUEST +17:19:34 Received From : +17:19:34 ============================================================================ +17:19:34 FNo. Len. Field Value +17:19:34 ============================================================================ +17:19:34 [ 1] [ 4] [0200] +17:19:34 [ 2] [ 16] [6688990108143908] +17:19:34 [ 3] [ 6] [011000] +17:19:34 [ 4] [ 12] [000007000000] +17:19:34 [ 7] [ 10] [0320171928] +17:19:34 [ 11] [ 6] [813425] +17:19:34 [ 12] [ 6] [171928] +17:19:34 [ 13] [ 4] [0320] +17:19:34 [ 15] [ 4] [0320] +17:19:34 [ 18] [ 4] [6011] +17:19:34 [ 22] [ 3] [900] +17:19:34 [ 25] [ 2] [02] +17:19:34 [ 28] [ 9] [D00002000] +17:19:34 [ 32] [ 6] [621354] +17:19:34 [ 35] [ 37] [6688990108143908=44051231390838900000] +17:19:34 [ 37] [ 12] [507904994923] +17:19:34 [ 41] [ 8] [16002100] +17:19:34 [ 42] [ 15] [NATIVE ] +17:19:34 [ 43] [ 40] [Thangone Unit Thangone LAO] +17:19:34 [ 49] [ 3] [418] +17:19:34 [ 52] [ 16] [B4EDBBB19B87234D] +17:19:34 ============================================================================ +17:19:34 + + +waiting on router queue for slot.... +17:19:34 Sending to : <4> +17:19:34 ============================================================================ +17:19:35 ============================================================================ +17:19:35 Slot Id : <230> +17:19:35 Transaction Type : RESPONSE +17:19:35 Received From : +17:19:35 ============================================================================ +17:19:35 FNo. Len. Field Value +17:19:35 ============================================================================ +17:19:35 [ 1] [ 4] [0210] +17:19:35 [ 2] [ 16] [6688990108143908] +17:19:35 [ 3] [ 6] [011000] +17:19:35 [ 4] [ 12] [000007000000] +17:19:35 [ 11] [ 6] [813425] +17:19:35 [ 12] [ 6] [171928] +17:19:35 [ 15] [ 4] [0320] +17:19:35 [ 18] [ 4] [6011] +17:19:35 [ 32] [ 6] [621354] +17:19:35 [ 35] [ 37] [6688990108143908=44051231390838900000] +17:19:35 [ 37] [ 12] [507904994923] +17:19:35 [ 38] [ 6] [796149] +17:19:35 [ 39] [ 2] [00] +17:19:35 [ 41] [ 8] [16002100] +17:19:35 [ 49] [ 3] [418] +17:19:35 [ 54] [ 20] [1002418C000014455565] +17:19:35 ============================================================================ +17:19:35 Sending to : +17:19:35 ============================================================================ +17:19:35 + + +waiting on router queue for slot.... +17:19:35 ============================================================================ +17:19:35 Slot Id : <221> +17:19:35 Transaction Type : RESPONSE +17:19:35 Received From : +17:19:35 ============================================================================ +17:19:35 FNo. Len. Field Value +17:19:35 ============================================================================ +17:19:35 [ 1] [ 4] [0210] +17:19:35 [ 2] [ 16] [6213544001721759] +17:19:35 [ 3] [ 6] [012000] +17:19:35 [ 4] [ 12] [000100000000] +17:19:35 [ 7] [ 10] [0320101839] +17:19:35 [ 11] [ 6] [270807] +17:19:35 [ 12] [ 6] [171839] +17:19:35 [ 13] [ 4] [0320] +17:19:35 [ 15] [ 4] [0320] +17:19:35 [ 18] [ 4] [6011] +17:19:35 [ 19] [ 3] [418] +17:19:35 [ 32] [ 6] [180893] +17:19:35 [ 35] [ 32] [6213544001721759=491212012175383] +17:19:35 [ 37] [ 12] [507910270807] +17:19:35 [ 38] [ 6] [226748] +17:19:35 [ 39] [ 2] [00] +17:19:35 [ 41] [ 8] [0243VTKS] +17:19:35 [ 49] [ 3] [418] +17:19:35 [ 54] [ 40] [2001418C0000888003802002418C000088800380] +17:19:35 ============================================================================ +17:19:35 Calculate Source COMM Id = 2 +17:19:35 ============================================================================ +17:19:35 + + +waiting on router queue for slot.... +17:19:36 ============================================================================ +17:19:36 Slot Id : <230> +17:19:36 Transaction Type : RESPONSE +17:19:36 Received From : +17:19:36 ============================================================================ +17:19:36 FNo. Len. Field Value +17:19:36 ============================================================================ +17:19:36 [ 1] [ 4] [0210] +17:19:36 [ 2] [ 16] [6688990108143908] +17:19:36 [ 3] [ 6] [011000] +17:19:36 [ 4] [ 12] [000007000000] +17:19:36 [ 11] [ 6] [813425] +17:19:36 [ 12] [ 6] [171928] +17:19:36 [ 15] [ 4] [0320] +17:19:36 [ 18] [ 4] [6011] +17:19:36 [ 32] [ 6] [621354] +17:19:36 [ 35] [ 37] [6688990108143908=44051231390838900000] +17:19:36 [ 37] [ 12] [507904994923] +17:19:36 [ 38] [ 6] [796149] +17:19:36 [ 39] [ 2] [00] +17:19:36 [ 41] [ 8] [16002100] +17:19:36 [ 49] [ 3] [418] +17:19:36 [ 54] [ 20] [1002418C000014455565] +17:19:36 ============================================================================ +17:19:36 Calculate Source COMM Id = 0 +17:19:36 ============================================================================ +17:19:36 + + +waiting on router queue for slot.... +17:19:37 ============================================================================ +17:19:37 Slot Id : <183> +17:19:37 Transaction Type : REQUEST +17:19:37 Received From : +17:19:37 ============================================================================ +17:19:37 FNo. Len. Field Value +17:19:37 ============================================================================ +17:19:37 [ 1] [ 4] [0200] +17:19:37 [ 2] [ 16] [6213544000040177] +17:19:37 [ 3] [ 6] [301000] +17:19:37 [ 7] [ 10] [0320101844] +17:19:37 [ 11] [ 6] [270808] +17:19:37 [ 12] [ 6] [171844] +17:19:37 [ 13] [ 4] [0320] +17:19:37 [ 14] [ 4] [4912] +17:19:37 [ 15] [ 4] [0320] +17:19:37 [ 18] [ 4] [6011] +17:19:37 [ 19] [ 3] [418] +17:19:37 [ 22] [ 3] [021] +17:19:37 [ 25] [ 2] [01] +17:19:37 [ 32] [ 6] [180893] +17:19:37 [ 35] [ 32] [6213544000040177=491212014017699] +17:19:37 [ 37] [ 12] [507910270808] +17:19:37 [ 41] [ 8] [0421BKPH] +17:19:37 [ 42] [ 15] [999999 ] +17:19:37 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:19:37 [ 49] [ 3] [418] +17:19:37 [ 52] [ 16] [5FCDEECCDF131B89] +17:19:37 ============================================================================ +17:19:37 + + +waiting on router queue for slot.... +17:19:37 Sending to : +17:19:37 ============================================================================ +17:19:37 Sending to : +17:19:37 ============================================================================ +17:19:38 ============================================================================ +17:19:38 Slot Id : <183> +17:19:38 Transaction Type : REQUEST +17:19:38 Received From : +17:19:38 ============================================================================ +17:19:38 FNo. Len. Field Value +17:19:38 ============================================================================ +17:19:38 [ 1] [ 4] [0200] +17:19:38 [ 2] [ 16] [6213544000040177] +17:19:38 [ 3] [ 6] [301000] +17:19:38 [ 7] [ 10] [0320101844] +17:19:38 [ 11] [ 6] [270808] +17:19:38 [ 12] [ 6] [171844] +17:19:38 [ 13] [ 4] [0320] +17:19:38 [ 14] [ 4] [4912] +17:19:38 [ 15] [ 4] [0320] +17:19:38 [ 18] [ 4] [6011] +17:19:38 [ 19] [ 3] [418] +17:19:38 [ 22] [ 3] [021] +17:19:38 [ 25] [ 2] [01] +17:19:38 [ 32] [ 6] [180893] +17:19:38 [ 35] [ 32] [6213544000040177=491212014017699] +17:19:38 [ 37] [ 12] [507910270808] +17:19:38 [ 41] [ 8] [0421BKPH] +17:19:38 [ 42] [ 15] [999999 ] +17:19:38 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:19:38 [ 49] [ 3] [418] +17:19:38 [ 52] [ 16] [5FCDEECCDF131B89] +17:19:38 ============================================================================ +17:19:38 + + +waiting on router queue for slot.... +17:19:38 Sending to : +17:19:38 ============================================================================ +17:19:38 ============================================================================ +17:19:38 Slot Id : <183> +17:19:38 Transaction Type : REQUEST +17:19:38 Received From : +17:19:38 ============================================================================ +17:19:38 FNo. Len. Field Value +17:19:38 ============================================================================ +17:19:38 [ 1] [ 4] [0200] +17:19:38 [ 2] [ 16] [6213544000040177] +17:19:38 [ 3] [ 6] [301000] +17:19:38 [ 7] [ 10] [0320101844] +17:19:38 [ 11] [ 6] [270808] +17:19:38 [ 12] [ 6] [171844] +17:19:38 [ 13] [ 4] [0320] +17:19:38 [ 14] [ 4] [4912] +17:19:38 [ 15] [ 4] [0320] +17:19:38 [ 18] [ 4] [6011] +17:19:38 [ 19] [ 3] [418] +17:19:38 [ 22] [ 3] [021] +17:19:38 [ 25] [ 2] [01] +17:19:38 [ 32] [ 6] [180893] +17:19:38 [ 35] [ 32] [6213544000040177=491212014017699] +17:19:38 [ 37] [ 12] [507910270808] +17:19:38 [ 41] [ 8] [0421BKPH] +17:19:38 [ 42] [ 15] [999999 ] +17:19:38 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +17:19:38 [ 49] [ 3] [418] +17:19:38 [ 52] [ 16] [F9BBB6AE26FF4B8F] +17:19:38 ============================================================================ +17:19:38 + + +waiting on router queue for slot.... +17:19:38 Sending to : <0> +17:19:38 ============================================================================ +17:19:39 ============================================================================ +17:19:39 Slot Id : <183> +17:19:39 Transaction Type : RESPONSE +17:19:39 Received From : +17:19:39 ============================================================================ +17:19:39 FNo. Len. Field Value +17:19:39 ============================================================================ +17:19:39 [ 1] [ 4] [0210] +17:19:39 [ 2] [ 16] [6213544000040177] +17:19:39 [ 3] [ 6] [301000] +17:19:39 [ 4] [ 12] [000000000000] +17:19:39 [ 7] [ 10] [0320101844] +17:19:39 [ 11] [ 6] [270808] +17:19:39 [ 12] [ 6] [171844] +17:19:39 [ 13] [ 4] [0320] +17:19:39 [ 15] [ 4] [0320] +17:19:39 [ 18] [ 4] [6011] +17:19:39 [ 19] [ 3] [418] +17:19:39 [ 32] [ 6] [180893] +17:19:39 [ 35] [ 32] [6213544000040177=491212014017699] +17:19:39 [ 37] [ 12] [507910270808] +17:19:39 [ 38] [ 6] [054134] +17:19:39 [ 39] [ 2] [00] +17:19:39 [ 41] [ 8] [0421BKPH] +17:19:39 [ 49] [ 3] [418] +17:19:39 [ 54] [ 40] [1001418C0000071049061002418C000007104906] +17:19:39 ============================================================================ +17:19:39 Sending to : +17:19:39 ============================================================================ +17:19:39 + + +waiting on router queue for slot.... +17:19:40 ============================================================================ +17:19:40 Slot Id : <183> +17:19:40 Transaction Type : RESPONSE +17:19:40 Received From : +17:19:40 ============================================================================ +17:19:40 FNo. Len. Field Value +17:19:40 ============================================================================ +17:19:40 [ 1] [ 4] [0210] +17:19:40 [ 2] [ 16] [6213544000040177] +17:19:40 [ 3] [ 6] [301000] +17:19:40 [ 4] [ 12] [000000000000] +17:19:40 [ 7] [ 10] [0320101844] +17:19:40 [ 11] [ 6] [270808] +17:19:40 [ 12] [ 6] [171844] +17:19:40 [ 13] [ 4] [0320] +17:19:40 [ 15] [ 4] [0320] +17:19:40 [ 18] [ 4] [6011] +17:19:40 [ 19] [ 3] [418] +17:19:40 [ 32] [ 6] [180893] +17:19:40 [ 35] [ 32] [6213544000040177=491212014017699] +17:19:40 [ 37] [ 12] [507910270808] +17:19:40 [ 38] [ 6] [054134] +17:19:40 [ 39] [ 2] [00] +17:19:40 [ 41] [ 8] [0421BKPH] +17:19:40 [ 49] [ 3] [418] +17:19:40 [ 54] [ 40] [1001418C0000071049061002418C000007104906] +17:19:40 ============================================================================ +17:19:40 Calculate Source COMM Id = 2 +17:19:40 ============================================================================ +17:19:40 + + +waiting on router queue for slot.... +17:19:40 ============================================================================ +17:19:40 Slot Id : <169> +17:19:40 Transaction Type : REQUEST +17:19:40 Received From : +17:19:40 ============================================================================ +17:19:40 FNo. Len. Field Value +17:19:40 ============================================================================ +17:19:40 [ 1] [ 4] [0200] +17:19:40 [ 2] [ 16] [6688990106552308] +17:19:40 [ 3] [ 6] [300000] +17:19:40 [ 4] [ 12] [000000000000] +17:19:40 [ 7] [ 10] [0320171935] +17:19:40 [ 11] [ 6] [813453] +17:19:40 [ 12] [ 6] [171935] +17:19:40 [ 13] [ 4] [0320] +17:19:40 [ 15] [ 4] [0320] +17:19:40 [ 18] [ 4] [6011] +17:19:40 [ 22] [ 3] [900] +17:19:40 [ 25] [ 2] [02] +17:19:40 [ 28] [ 9] [D00000000] +17:19:40 [ 32] [ 6] [621354] +17:19:40 [ 35] [ 37] [6688990106552308=43121231230837000000] +17:19:40 [ 37] [ 12] [507905200945] +17:19:40 [ 41] [ 8] [07001700] +17:19:40 [ 42] [ 15] [NATIVE ] +17:19:40 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +17:19:40 [ 49] [ 3] [418] +17:19:40 [ 52] [ 16] [CF1A39A80AE9456C] +17:19:40 ============================================================================ +17:19:40 + + +waiting on router queue for slot.... +17:19:40 Sending to : +17:19:40 ============================================================================ +17:19:40 Sending to : +17:19:40 ============================================================================ +17:19:41 ============================================================================ +17:19:41 Slot Id : <169> +17:19:41 Transaction Type : REQUEST +17:19:41 Received From : +17:19:41 ============================================================================ +17:19:41 FNo. Len. Field Value +17:19:41 ============================================================================ +17:19:41 [ 1] [ 4] [0200] +17:19:41 [ 2] [ 16] [6688990106552308] +17:19:41 [ 3] [ 6] [300000] +17:19:41 [ 4] [ 12] [000000000000] +17:19:41 [ 7] [ 10] [0320171935] +17:19:41 [ 11] [ 6] [813453] +17:19:41 [ 12] [ 6] [171935] +17:19:41 [ 13] [ 4] [0320] +17:19:41 [ 15] [ 4] [0320] +17:19:41 [ 18] [ 4] [6011] +17:19:41 [ 22] [ 3] [900] +17:19:41 [ 25] [ 2] [02] +17:19:41 [ 28] [ 9] [D00000000] +17:19:41 [ 32] [ 6] [621354] +17:19:41 [ 35] [ 37] [6688990106552308=43121231230837000000] +17:19:41 [ 37] [ 12] [507905200945] +17:19:41 [ 41] [ 8] [07001700] +17:19:41 [ 42] [ 15] [NATIVE ] +17:19:41 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +17:19:41 [ 49] [ 3] [418] +17:19:41 [ 52] [ 16] [CF1A39A80AE9456C] +17:19:41 ============================================================================ +17:19:41 + + +waiting on router queue for slot.... +17:19:41 Sending to : +17:19:41 ============================================================================ +17:19:41 ============================================================================ +17:19:41 Slot Id : <169> +17:19:41 Transaction Type : REQUEST +17:19:41 Received From : +17:19:41 ============================================================================ +17:19:41 FNo. Len. Field Value +17:19:41 ============================================================================ +17:19:41 [ 1] [ 4] [0200] +17:19:41 [ 2] [ 16] [6688990106552308] +17:19:41 [ 3] [ 6] [300000] +17:19:41 [ 4] [ 12] [000000000000] +17:19:41 [ 7] [ 10] [0320171935] +17:19:41 [ 11] [ 6] [813453] +17:19:41 [ 12] [ 6] [171935] +17:19:41 [ 13] [ 4] [0320] +17:19:41 [ 15] [ 4] [0320] +17:19:41 [ 18] [ 4] [6011] +17:19:41 [ 22] [ 3] [900] +17:19:41 [ 25] [ 2] [02] +17:19:41 [ 28] [ 9] [D00000000] +17:19:41 [ 32] [ 6] [621354] +17:19:41 [ 35] [ 37] [6688990106552308=43121231230837000000] +17:19:41 [ 37] [ 12] [507905200945] +17:19:41 [ 41] [ 8] [07001700] +17:19:41 [ 42] [ 15] [NATIVE ] +17:19:41 [ 43] [ 40] [Luangnamtha Airport Luangnamtha LAO] +17:19:41 [ 49] [ 3] [418] +17:19:41 [ 52] [ 16] [FBF45A0E8B93AB1D] +17:19:41 ============================================================================ +17:19:41 + + +waiting on router queue for slot.... +17:19:41 Sending to : <4> +17:19:41 ============================================================================ +17:19:42 ============================================================================ +17:19:42 Slot Id : <169> +17:19:42 Transaction Type : RESPONSE +17:19:42 Received From : +17:19:42 ============================================================================ +17:19:42 FNo. Len. Field Value +17:19:42 ============================================================================ +17:19:42 [ 1] [ 4] [0210] +17:19:42 [ 2] [ 16] [6688990106552308] +17:19:42 [ 3] [ 6] [300000] +17:19:42 [ 4] [ 12] [000000000000] +17:19:42 [ 7] [ 10] [0320171935] +17:19:42 [ 11] [ 6] [813453] +17:19:42 [ 12] [ 6] [171935] +17:19:42 [ 13] [ 4] [0320] +17:19:42 [ 15] [ 4] [0320] +17:19:42 [ 18] [ 4] [6011] +17:19:42 [ 22] [ 3] [021] +17:19:42 [ 32] [ 6] [621354] +17:19:42 [ 35] [ 37] [6688990106552308=43121231230837000000] +17:19:42 [ 37] [ 12] [507905200945] +17:19:42 [ 38] [ 6] [171731] +17:19:42 [ 39] [ 2] [55] +17:19:42 [ 41] [ 8] [07001700] +17:19:42 [ 49] [ 3] [418] +17:19:42 ============================================================================ +17:19:42 Sending to : +17:19:42 ============================================================================ +17:19:42 + + +waiting on router queue for slot.... +17:19:42 ============================================================================ +17:19:42 Slot Id : <205> +17:19:42 Transaction Type : REQUEST +17:19:42 Received From : +17:19:42 ============================================================================ +17:19:42 FNo. Len. Field Value +17:19:42 ============================================================================ +17:19:42 [ 1] [ 4] [0200] +17:19:42 [ 2] [ 16] [6688990040037606] +17:19:42 [ 3] [ 6] [012000] +17:19:42 [ 4] [ 12] [000030000000] +17:19:42 [ 7] [ 10] [0320101846] +17:19:42 [ 11] [ 6] [270809] +17:19:42 [ 12] [ 6] [171846] +17:19:42 [ 13] [ 4] [0320] +17:19:42 [ 14] [ 4] [9711] +17:19:42 [ 15] [ 4] [0320] +17:19:42 [ 18] [ 4] [6011] +17:19:42 [ 19] [ 3] [418] +17:19:42 [ 22] [ 3] [021] +17:19:42 [ 25] [ 2] [01] +17:19:42 [ 28] [ 9] [D00002000] +17:19:42 [ 32] [ 6] [180893] +17:19:42 [ 35] [ 37] [6688990040037606=97111261070685200000] +17:19:42 [ 37] [ 12] [507910270809] +17:19:42 [ 41] [ 8] [0262PSLB] +17:19:42 [ 42] [ 15] [999999 ] +17:19:42 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:19:42 [ 49] [ 3] [418] +17:19:42 [ 52] [ 16] [D1D700B9DE41FDB7] +17:19:42 ============================================================================ +17:19:42 + + +waiting on router queue for slot.... +17:19:42 Sending to : +17:19:42 ============================================================================ +17:19:42 Sending to : +17:19:42 ============================================================================ +17:19:42 ============================================================================ +17:19:42 Slot Id : <169> +17:19:42 Transaction Type : RESPONSE +17:19:42 Received From : +17:19:42 ============================================================================ +17:19:42 FNo. Len. Field Value +17:19:42 ============================================================================ +17:19:42 [ 1] [ 4] [0210] +17:19:42 [ 2] [ 16] [6688990106552308] +17:19:42 [ 3] [ 6] [300000] +17:19:42 [ 4] [ 12] [000000000000] +17:19:42 [ 7] [ 10] [0320171935] +17:19:42 [ 11] [ 6] [813453] +17:19:42 [ 12] [ 6] [171935] +17:19:42 [ 13] [ 4] [0320] +17:19:42 [ 15] [ 4] [0320] +17:19:42 [ 18] [ 4] [6011] +17:19:42 [ 22] [ 3] [021] +17:19:42 [ 32] [ 6] [621354] +17:19:42 [ 35] [ 37] [6688990106552308=43121231230837000000] +17:19:42 [ 37] [ 12] [507905200945] +17:19:42 [ 38] [ 6] [171731] +17:19:42 [ 39] [ 2] [55] +17:19:42 [ 41] [ 8] [07001700] +17:19:42 [ 49] [ 3] [418] +17:19:42 ============================================================================ +17:19:42 Calculate Source COMM Id = 0 +17:19:42 ============================================================================ +17:19:42 + + +waiting on router queue for slot.... +17:19:43 ============================================================================ +17:19:43 Slot Id : <205> +17:19:43 Transaction Type : REQUEST +17:19:43 Received From : +17:19:43 ============================================================================ +17:19:43 FNo. Len. Field Value +17:19:43 ============================================================================ +17:19:43 [ 1] [ 4] [0200] +17:19:43 [ 2] [ 16] [6688990040037606] +17:19:43 [ 3] [ 6] [012000] +17:19:43 [ 4] [ 12] [000030000000] +17:19:43 [ 7] [ 10] [0320101846] +17:19:43 [ 11] [ 6] [270809] +17:19:43 [ 12] [ 6] [171846] +17:19:43 [ 13] [ 4] [0320] +17:19:43 [ 14] [ 4] [9711] +17:19:43 [ 15] [ 4] [0320] +17:19:43 [ 18] [ 4] [6011] +17:19:43 [ 19] [ 3] [418] +17:19:43 [ 22] [ 3] [021] +17:19:43 [ 25] [ 2] [01] +17:19:43 [ 28] [ 9] [D00002000] +17:19:43 [ 32] [ 6] [180893] +17:19:43 [ 35] [ 37] [6688990040037606=97111261070685200000] +17:19:43 [ 37] [ 12] [507910270809] +17:19:43 [ 41] [ 8] [0262PSLB] +17:19:43 [ 42] [ 15] [999999 ] +17:19:43 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:19:43 [ 49] [ 3] [418] +17:19:43 [ 52] [ 16] [D1D700B9DE41FDB7] +17:19:43 ============================================================================ +17:19:43 + + +waiting on router queue for slot.... +17:19:43 Sending to : +17:19:43 ============================================================================ +17:19:43 ============================================================================ +17:19:43 Slot Id : <205> +17:19:43 Transaction Type : REQUEST +17:19:43 Received From : +17:19:43 ============================================================================ +17:19:43 FNo. Len. Field Value +17:19:43 ============================================================================ +17:19:43 [ 1] [ 4] [0200] +17:19:43 [ 2] [ 16] [6688990040037606] +17:19:43 [ 3] [ 6] [012000] +17:19:43 [ 4] [ 12] [000030000000] +17:19:43 [ 7] [ 10] [0320101846] +17:19:43 [ 11] [ 6] [270809] +17:19:43 [ 12] [ 6] [171846] +17:19:43 [ 13] [ 4] [0320] +17:19:43 [ 14] [ 4] [9711] +17:19:43 [ 15] [ 4] [0320] +17:19:43 [ 18] [ 4] [6011] +17:19:43 [ 19] [ 3] [418] +17:19:43 [ 22] [ 3] [021] +17:19:43 [ 25] [ 2] [01] +17:19:43 [ 28] [ 9] [D00002000] +17:19:43 [ 32] [ 6] [180893] +17:19:43 [ 35] [ 37] [6688990040037606=97111261070685200000] +17:19:43 [ 37] [ 12] [507910270809] +17:19:43 [ 41] [ 8] [0262PSLB] +17:19:43 [ 42] [ 15] [999999 ] +17:19:43 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:19:43 [ 49] [ 3] [418] +17:19:43 [ 52] [ 16] [49E89C69E3196910] +17:19:43 ============================================================================ +17:19:43 + + +waiting on router queue for slot.... +17:19:43 Sending to : <0> +17:19:43 ============================================================================ +17:19:43 ============================================================================ +17:19:43 Slot Id : <205> +17:19:43 Transaction Type : RESPONSE +17:19:43 Received From : +17:19:43 ============================================================================ +17:19:43 FNo. Len. Field Value +17:19:43 ============================================================================ +17:19:43 [ 1] [ 4] [0210] +17:19:43 [ 2] [ 16] [6688990040037606] +17:19:43 [ 3] [ 6] [012000] +17:19:43 [ 4] [ 12] [000030000000] +17:19:43 [ 7] [ 10] [0320101846] +17:19:43 [ 11] [ 6] [270809] +17:19:43 [ 12] [ 6] [171846] +17:19:43 [ 13] [ 4] [0320] +17:19:43 [ 15] [ 4] [0320] +17:19:43 [ 18] [ 4] [6011] +17:19:43 [ 19] [ 3] [418] +17:19:43 [ 22] [ 3] [021] +17:19:43 [ 32] [ 6] [180893] +17:19:43 [ 35] [ 37] [6688990040037606=97111261070685200000] +17:19:43 [ 37] [ 12] [507910270809] +17:19:43 [ 39] [ 2] [14] +17:19:43 [ 41] [ 8] [0262PSLB] +17:19:43 [ 49] [ 3] [418] +17:19:43 ============================================================================ +17:19:43 Sending to : +17:19:43 ============================================================================ +17:19:43 + + +waiting on router queue for slot.... +17:19:43 ============================================================================ +17:19:43 Slot Id : <205> +17:19:43 Transaction Type : RESPONSE +17:19:43 Received From : +17:19:43 ============================================================================ +17:19:43 FNo. Len. Field Value +17:19:43 ============================================================================ +17:19:43 [ 1] [ 4] [0210] +17:19:43 [ 2] [ 16] [6688990040037606] +17:19:43 [ 3] [ 6] [012000] +17:19:43 [ 4] [ 12] [000030000000] +17:19:43 [ 7] [ 10] [0320101846] +17:19:43 [ 11] [ 6] [270809] +17:19:43 [ 12] [ 6] [171846] +17:19:43 [ 13] [ 4] [0320] +17:19:43 [ 15] [ 4] [0320] +17:19:43 [ 18] [ 4] [6011] +17:19:43 [ 19] [ 3] [418] +17:19:43 [ 22] [ 3] [021] +17:19:43 [ 32] [ 6] [180893] +17:19:43 [ 35] [ 37] [6688990040037606=97111261070685200000] +17:19:43 [ 37] [ 12] [507910270809] +17:19:43 [ 39] [ 2] [14] +17:19:43 [ 41] [ 8] [0262PSLB] +17:19:43 [ 49] [ 3] [418] +17:19:43 ============================================================================ +17:19:43 Calculate Source COMM Id = 2 +17:19:43 ============================================================================ +17:19:43 + + +waiting on router queue for slot.... +17:19:53 ============================================================================ +17:19:53 Slot Id : <208> +17:19:53 Transaction Type : REQUEST +17:19:53 Received From : +17:19:53 ============================================================================ +17:19:53 FNo. Len. Field Value +17:19:53 ============================================================================ +17:19:53 [ 1] [ 4] [0200] +17:19:53 [ 2] [ 16] [6213544001532479] +17:19:53 [ 3] [ 6] [010000] +17:19:53 [ 4] [ 12] [000020000000] +17:19:53 [ 7] [ 10] [0320171743] +17:19:53 [ 11] [ 6] [953264] +17:19:53 [ 12] [ 6] [171743] +17:19:53 [ 13] [ 4] [0320] +17:19:53 [ 15] [ 4] [0320] +17:19:53 [ 18] [ 4] [6011] +17:19:53 [ 19] [ 3] [418] +17:19:53 [ 22] [ 3] [021] +17:19:53 [ 25] [ 2] [01] +17:19:53 [ 28] [ 9] [D00002000] +17:19:53 [ 32] [ 6] [668899] +17:19:53 [ 35] [ 32] [6213544001532479=491212013247375] +17:19:53 [ 37] [ 12] [507901963702] +17:19:53 [ 41] [ 8] [03020019] +17:19:53 [ 42] [ 15] [APT ] +17:19:53 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +17:19:53 [ 49] [ 3] [418] +17:19:53 [ 52] [ 16] [5A0A85D831E5749B] +17:19:53 ============================================================================ +17:19:53 + + +waiting on router queue for slot.... +17:19:53 Sending to : +17:19:53 ============================================================================ +17:19:53 Sending to : +17:19:53 ============================================================================ +17:19:53 ============================================================================ +17:19:53 Slot Id : <208> +17:19:53 Transaction Type : REQUEST +17:19:53 Received From : +17:19:53 ============================================================================ +17:19:53 FNo. Len. Field Value +17:19:53 ============================================================================ +17:19:53 [ 1] [ 4] [0200] +17:19:53 [ 2] [ 16] [6213544001532479] +17:19:53 [ 3] [ 6] [010000] +17:19:53 [ 4] [ 12] [000020000000] +17:19:53 [ 7] [ 10] [0320171743] +17:19:53 [ 11] [ 6] [953264] +17:19:53 [ 12] [ 6] [171743] +17:19:53 [ 13] [ 4] [0320] +17:19:53 [ 15] [ 4] [0320] +17:19:53 [ 18] [ 4] [6011] +17:19:53 [ 19] [ 3] [418] +17:19:53 [ 22] [ 3] [021] +17:19:53 [ 25] [ 2] [01] +17:19:53 [ 28] [ 9] [D00002000] +17:19:53 [ 32] [ 6] [668899] +17:19:53 [ 35] [ 32] [6213544001532479=491212013247375] +17:19:53 [ 37] [ 12] [507901963702] +17:19:53 [ 41] [ 8] [03020019] +17:19:53 [ 42] [ 15] [APT ] +17:19:53 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +17:19:53 [ 49] [ 3] [418] +17:19:53 [ 52] [ 16] [5A0A85D831E5749B] +17:19:53 ============================================================================ +17:19:53 + + +waiting on router queue for slot.... +17:19:53 Sending to : +17:19:53 ============================================================================ +17:19:53 ============================================================================ +17:19:53 Slot Id : <208> +17:19:53 Transaction Type : REQUEST +17:19:53 Received From : +17:19:53 ============================================================================ +17:19:53 FNo. Len. Field Value +17:19:53 ============================================================================ +17:19:53 [ 1] [ 4] [0200] +17:19:53 [ 2] [ 16] [6213544001532479] +17:19:53 [ 3] [ 6] [010000] +17:19:53 [ 4] [ 12] [000020000000] +17:19:53 [ 7] [ 10] [0320171743] +17:19:53 [ 11] [ 6] [953264] +17:19:53 [ 12] [ 6] [171743] +17:19:53 [ 13] [ 4] [0320] +17:19:53 [ 15] [ 4] [0320] +17:19:53 [ 18] [ 4] [6011] +17:19:53 [ 19] [ 3] [418] +17:19:53 [ 22] [ 3] [021] +17:19:53 [ 25] [ 2] [01] +17:19:53 [ 28] [ 9] [D00002000] +17:19:53 [ 32] [ 6] [668899] +17:19:53 [ 35] [ 32] [6213544001532479=491212013247375] +17:19:53 [ 37] [ 12] [507901963702] +17:19:53 [ 41] [ 8] [03020019] +17:19:53 [ 42] [ 15] [APT ] +17:19:53 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +17:19:53 [ 49] [ 3] [418] +17:19:53 [ 52] [ 16] [94EA04562E557552] +17:19:53 ============================================================================ +17:19:53 + + +waiting on router queue for slot.... +17:19:53 Sending to : <0> +17:19:53 ============================================================================ +17:19:54 ============================================================================ +17:19:54 Slot Id : <208> +17:19:54 Transaction Type : RESPONSE +17:19:54 Received From : +17:19:54 ============================================================================ +17:19:54 FNo. Len. Field Value +17:19:54 ============================================================================ +17:19:54 [ 1] [ 4] [0210] +17:19:54 [ 2] [ 16] [6213544001532479] +17:19:54 [ 3] [ 6] [010000] +17:19:54 [ 4] [ 12] [000020000000] +17:19:54 [ 7] [ 10] [0320171743] +17:19:54 [ 11] [ 6] [953264] +17:19:54 [ 12] [ 6] [171743] +17:19:54 [ 13] [ 4] [0320] +17:19:54 [ 15] [ 4] [0320] +17:19:54 [ 18] [ 4] [6011] +17:19:54 [ 19] [ 3] [418] +17:19:54 [ 32] [ 6] [668899] +17:19:54 [ 35] [ 32] [6213544001532479=491212013247375] +17:19:54 [ 37] [ 12] [507901963702] +17:19:54 [ 38] [ 6] [953264] +17:19:54 [ 39] [ 2] [51] +17:19:54 [ 41] [ 8] [03020019] +17:19:54 [ 49] [ 3] [418] +17:19:54 [ 54] [ 40] [0001418C0000058809310002418C000005880931] +17:19:54 ============================================================================ +17:19:54 Sending to : +17:19:54 ============================================================================ +17:19:54 + + +waiting on router queue for slot.... +17:19:54 ============================================================================ +17:19:54 Slot Id : <211> +17:19:54 Transaction Type : REQUEST +17:19:54 Received From : +17:19:54 ============================================================================ +17:19:54 FNo. Len. Field Value +17:19:54 ============================================================================ +17:19:54 [ 1] [ 4] [0200] +17:19:54 [ 2] [ 16] [6213544002131776] +17:19:54 [ 3] [ 6] [011000] +17:19:54 [ 4] [ 12] [000055000000] +17:19:54 [ 7] [ 10] [0320172014] +17:19:54 [ 11] [ 6] [209448] +17:19:54 [ 12] [ 6] [171520] +17:19:54 [ 13] [ 4] [0320] +17:19:54 [ 14] [ 4] [4912] +17:19:54 [ 15] [ 4] [0320] +17:19:54 [ 18] [ 4] [6011] +17:19:54 [ 19] [ 3] [418] +17:19:54 [ 22] [ 3] [021] +17:19:54 [ 25] [ 2] [01] +17:19:54 [ 28] [ 9] [D00002000] +17:19:54 [ 32] [ 6] [198901] +17:19:54 [ 35] [ 32] [6213544002131776=491212013177333] +17:19:54 [ 37] [ 12] [507917209448] +17:19:54 [ 41] [ 8] [19529001] +17:19:54 [ 42] [ 15] [000000041952901] +17:19:54 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:19:54 [ 49] [ 3] [418] +17:19:54 [ 52] [ 16] [91F852CFDDF08DE6] +17:19:54 ============================================================================ +17:19:54 + + +waiting on router queue for slot.... +17:19:54 Sending to : +17:19:54 ============================================================================ +17:19:54 Sending to : +17:19:54 ============================================================================ +17:19:54 ============================================================================ +17:19:54 Slot Id : <211> +17:19:54 Transaction Type : REQUEST +17:19:54 Received From : +17:19:54 ============================================================================ +17:19:54 FNo. Len. Field Value +17:19:54 ============================================================================ +17:19:54 [ 1] [ 4] [0200] +17:19:54 [ 2] [ 16] [6213544002131776] +17:19:54 [ 3] [ 6] [011000] +17:19:54 [ 4] [ 12] [000055000000] +17:19:54 [ 7] [ 10] [0320172014] +17:19:54 [ 11] [ 6] [209448] +17:19:54 [ 12] [ 6] [171520] +17:19:54 [ 13] [ 4] [0320] +17:19:54 [ 14] [ 4] [4912] +17:19:54 [ 15] [ 4] [0320] +17:19:54 [ 18] [ 4] [6011] +17:19:54 [ 19] [ 3] [418] +17:19:54 [ 22] [ 3] [021] +17:19:54 [ 25] [ 2] [01] +17:19:54 [ 28] [ 9] [D00002000] +17:19:54 [ 32] [ 6] [198901] +17:19:54 [ 35] [ 32] [6213544002131776=491212013177333] +17:19:54 [ 37] [ 12] [507917209448] +17:19:54 [ 41] [ 8] [19529001] +17:19:54 [ 42] [ 15] [000000041952901] +17:19:54 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:19:54 [ 49] [ 3] [418] +17:19:54 [ 52] [ 16] [91F852CFDDF08DE6] +17:19:54 ============================================================================ +17:19:54 + + +waiting on router queue for slot.... +17:19:54 Sending to : +17:19:54 ============================================================================ +17:19:54 ============================================================================ +17:19:54 Slot Id : <211> +17:19:54 Transaction Type : REQUEST +17:19:54 Received From : +17:19:54 ============================================================================ +17:19:54 FNo. Len. Field Value +17:19:54 ============================================================================ +17:19:54 [ 1] [ 4] [0200] +17:19:54 [ 2] [ 16] [6213544002131776] +17:19:54 [ 3] [ 6] [011000] +17:19:54 [ 4] [ 12] [000055000000] +17:19:54 [ 7] [ 10] [0320172014] +17:19:54 [ 11] [ 6] [209448] +17:19:54 [ 12] [ 6] [171520] +17:19:54 [ 13] [ 4] [0320] +17:19:54 [ 14] [ 4] [4912] +17:19:54 [ 15] [ 4] [0320] +17:19:54 [ 18] [ 4] [6011] +17:19:54 [ 19] [ 3] [418] +17:19:54 [ 22] [ 3] [021] +17:19:54 [ 25] [ 2] [01] +17:19:54 [ 28] [ 9] [D00002000] +17:19:54 [ 32] [ 6] [198901] +17:19:54 [ 35] [ 32] [6213544002131776=491212013177333] +17:19:54 [ 37] [ 12] [507917209448] +17:19:54 [ 41] [ 8] [19529001] +17:19:54 [ 42] [ 15] [000000041952901] +17:19:54 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:19:54 [ 49] [ 3] [418] +17:19:54 [ 52] [ 16] [FB84A81ED342674A] +17:19:54 ============================================================================ +17:19:54 + + +waiting on router queue for slot.... +17:19:54 Sending to : <0> +17:19:54 ============================================================================ +17:19:55 ============================================================================ +17:19:55 Slot Id : <208> +17:19:55 Transaction Type : RESPONSE +17:19:55 Received From : +17:19:55 ============================================================================ +17:19:55 FNo. Len. Field Value +17:19:55 ============================================================================ +17:19:55 [ 1] [ 4] [0210] +17:19:55 [ 2] [ 16] [6213544001532479] +17:19:55 [ 3] [ 6] [010000] +17:19:55 [ 4] [ 12] [000020000000] +17:19:55 [ 7] [ 10] [0320171743] +17:19:55 [ 11] [ 6] [953264] +17:19:55 [ 12] [ 6] [171743] +17:19:55 [ 13] [ 4] [0320] +17:19:55 [ 15] [ 4] [0320] +17:19:55 [ 18] [ 4] [6011] +17:19:55 [ 19] [ 3] [418] +17:19:55 [ 32] [ 6] [668899] +17:19:55 [ 35] [ 32] [6213544001532479=491212013247375] +17:19:55 [ 37] [ 12] [507901963702] +17:19:55 [ 38] [ 6] [953264] +17:19:55 [ 39] [ 2] [51] +17:19:55 [ 41] [ 8] [03020019] +17:19:55 [ 49] [ 3] [418] +17:19:55 [ 54] [ 40] [0001418C0000058809310002418C000005880931] +17:19:55 ============================================================================ +17:19:55 Calculate Source COMM Id = 4 +17:19:55 ============================================================================ +17:19:55 + + +waiting on router queue for slot.... +17:19:55 ============================================================================ +17:19:55 Slot Id : <211> +17:19:55 Transaction Type : RESPONSE +17:19:55 Received From : +17:19:55 ============================================================================ +17:19:55 FNo. Len. Field Value +17:19:55 ============================================================================ +17:19:55 [ 1] [ 4] [0210] +17:19:55 [ 2] [ 16] [6213544002131776] +17:19:55 [ 3] [ 6] [011000] +17:19:55 [ 4] [ 12] [000055000000] +17:19:55 [ 7] [ 10] [0320172014] +17:19:55 [ 11] [ 6] [209448] +17:19:55 [ 12] [ 6] [171520] +17:19:55 [ 13] [ 4] [0320] +17:19:55 [ 15] [ 4] [0320] +17:19:55 [ 18] [ 4] [6011] +17:19:55 [ 19] [ 3] [418] +17:19:55 [ 32] [ 6] [198901] +17:19:55 [ 35] [ 32] [6213544002131776=491212013177333] +17:19:55 [ 37] [ 12] [507917209448] +17:19:55 [ 38] [ 6] [937714] +17:19:55 [ 39] [ 2] [00] +17:19:55 [ 41] [ 8] [19529001] +17:19:55 [ 49] [ 3] [418] +17:19:55 [ 54] [ 40] [1001418C0000091285811002418C000009128581] +17:19:55 ============================================================================ +17:19:55 Sending to : +17:19:55 ============================================================================ +17:19:55 + + +waiting on router queue for slot.... +17:19:55 ============================================================================ +17:19:55 Slot Id : <185> +17:19:55 Transaction Type : REQUEST +17:19:55 Received From : +17:19:55 ============================================================================ +17:19:55 FNo. Len. Field Value +17:19:55 ============================================================================ +17:19:55 [ 1] [ 4] [0800] +17:19:55 [ 7] [ 10] [0320102742] +17:19:55 [ 11] [ 6] [084388] +17:19:55 [ 37] [ 12] [57917084388] +17:19:55 [ 70] [ 3] [301] +17:19:55 ============================================================================ +17:19:55 + + +waiting on router queue for slot.... +17:19:55 Sending to : +17:19:55 ============================================================================ +17:19:55 ============================================================================ +17:19:55 Slot Id : <185> +17:19:55 Transaction Type : RESPONSE +17:19:55 Received From : +17:19:55 ============================================================================ +17:19:55 FNo. Len. Field Value +17:19:55 ============================================================================ +17:19:55 [ 1] [ 4] [0810] +17:19:55 [ 7] [ 10] [0320102742] +17:19:55 [ 11] [ 6] [084388] +17:19:55 [ 37] [ 12] [579170843880] +17:19:55 [ 39] [ 2] [00] +17:19:55 [ 70] [ 3] [810] +17:19:55 ============================================================================ +17:19:55 Calculate Source COMM Id = 1 +17:19:55 ============================================================================ +17:19:55 + + +waiting on router queue for slot.... +17:19:55 ============================================================================ +17:19:55 Slot Id : <149> +17:19:55 Transaction Type : REQUEST +17:19:55 Received From : +17:19:55 ============================================================================ +17:19:55 FNo. Len. Field Value +17:19:55 ============================================================================ +17:19:55 [ 1] [ 4] [0800] +17:19:55 [ 7] [ 10] [0321003144] +17:19:55 [ 11] [ 6] [173144] +17:19:55 [ 37] [ 12] [57917173144] +17:19:55 [ 70] [ 3] [301] +17:19:55 ============================================================================ +17:19:55 + + +waiting on router queue for slot.... +17:19:55 Sending to : +17:19:55 ============================================================================ +17:19:55 ============================================================================ +17:19:55 Slot Id : <149> +17:19:55 Transaction Type : RESPONSE +17:19:55 Received From : +17:19:55 ============================================================================ +17:19:55 FNo. Len. Field Value +17:19:55 ============================================================================ +17:19:55 [ 1] [ 4] [0810] +17:19:55 [ 7] [ 10] [0321003144] +17:19:55 [ 11] [ 6] [173144] +17:19:55 [ 37] [ 12] [579171731440] +17:19:55 [ 39] [ 2] [00] +17:19:55 [ 70] [ 3] [810] +17:19:55 ============================================================================ +17:19:55 Calculate Source COMM Id = 6 +17:19:55 ============================================================================ +17:19:55 + + +waiting on router queue for slot.... +17:19:56 ============================================================================ +17:19:56 Slot Id : <232> +17:19:56 Transaction Type : REQUEST +17:19:56 Received From : +17:19:56 ============================================================================ +17:19:56 FNo. Len. Field Value +17:19:56 ============================================================================ +17:19:56 [ 1] [ 4] [0800] +17:19:56 [ 7] [ 10] [0320101903] +17:19:56 [ 11] [ 6] [157429] +17:19:56 [ 70] [ 3] [301] +17:19:56 ============================================================================ +17:19:56 + + +waiting on router queue for slot.... +17:19:56 Sending to : +17:19:56 ============================================================================ +17:19:56 ============================================================================ +17:19:56 Slot Id : <232> +17:19:56 Transaction Type : RESPONSE +17:19:56 Received From : +17:19:56 ============================================================================ +17:19:56 FNo. Len. Field Value +17:19:56 ============================================================================ +17:19:56 [ 1] [ 4] [0810] +17:19:56 [ 7] [ 10] [0320101903] +17:19:56 [ 11] [ 6] [157429] +17:19:56 [ 39] [ 2] [00] +17:19:56 [ 70] [ 3] [301] +17:19:56 ============================================================================ +17:19:56 Calculate Source COMM Id = 2 +17:19:56 ============================================================================ +17:19:56 + + +waiting on router queue for slot.... +17:19:56 ============================================================================ +17:19:56 Slot Id : <211> +17:19:56 Transaction Type : RESPONSE +17:19:56 Received From : +17:19:56 ============================================================================ +17:19:56 FNo. Len. Field Value +17:19:56 ============================================================================ +17:19:56 [ 1] [ 4] [0210] +17:19:56 [ 2] [ 16] [6213544002131776] +17:19:56 [ 3] [ 6] [011000] +17:19:56 [ 4] [ 12] [000055000000] +17:19:56 [ 7] [ 10] [0320172014] +17:19:56 [ 11] [ 6] [209448] +17:19:56 [ 12] [ 6] [171520] +17:19:56 [ 13] [ 4] [0320] +17:19:56 [ 15] [ 4] [0320] +17:19:56 [ 18] [ 4] [6011] +17:19:56 [ 19] [ 3] [418] +17:19:56 [ 32] [ 6] [198901] +17:19:56 [ 35] [ 32] [6213544002131776=491212013177333] +17:19:56 [ 37] [ 12] [507917209448] +17:19:56 [ 38] [ 6] [937714] +17:19:56 [ 39] [ 2] [00] +17:19:56 [ 41] [ 8] [19529001] +17:19:56 [ 49] [ 3] [418] +17:19:56 [ 54] [ 40] [1001418C0000091285811002418C000009128581] +17:19:56 ============================================================================ +17:19:56 Calculate Source COMM Id = 5 +17:19:56 ============================================================================ +17:19:56 + + +waiting on router queue for slot.... +17:20:07 ============================================================================ +17:20:07 Slot Id : <222> +17:20:07 Transaction Type : REQUEST +17:20:07 Received From : +17:20:07 ============================================================================ +17:20:07 FNo. Len. Field Value +17:20:07 ============================================================================ +17:20:07 [ 1] [ 4] [0200] +17:20:07 [ 2] [ 16] [6213544001532479] +17:20:07 [ 3] [ 6] [300000] +17:20:07 [ 4] [ 12] [000000000000] +17:20:07 [ 7] [ 10] [0320171756] +17:20:07 [ 11] [ 6] [953267] +17:20:07 [ 12] [ 6] [171756] +17:20:07 [ 13] [ 4] [0320] +17:20:07 [ 15] [ 4] [0320] +17:20:07 [ 18] [ 4] [6011] +17:20:07 [ 19] [ 3] [418] +17:20:07 [ 22] [ 3] [021] +17:20:07 [ 25] [ 2] [01] +17:20:07 [ 28] [ 9] [D00000000] +17:20:07 [ 32] [ 6] [668899] +17:20:07 [ 35] [ 32] [6213544001532479=491212013247375] +17:20:07 [ 37] [ 12] [507901963703] +17:20:07 [ 41] [ 8] [03020019] +17:20:07 [ 42] [ 15] [APT ] +17:20:07 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +17:20:07 [ 49] [ 3] [418] +17:20:07 [ 52] [ 16] [5A0A85D831E5749B] +17:20:07 ============================================================================ +17:20:07 + + +waiting on router queue for slot.... +17:20:07 Sending to : +17:20:07 ============================================================================ +17:20:07 Sending to : +17:20:07 ============================================================================ +17:20:07 ============================================================================ +17:20:07 Slot Id : <222> +17:20:07 Transaction Type : REQUEST +17:20:07 Received From : +17:20:07 ============================================================================ +17:20:07 FNo. Len. Field Value +17:20:07 ============================================================================ +17:20:07 [ 1] [ 4] [0200] +17:20:07 [ 2] [ 16] [6213544001532479] +17:20:07 [ 3] [ 6] [300000] +17:20:07 [ 4] [ 12] [000000000000] +17:20:07 [ 7] [ 10] [0320171756] +17:20:07 [ 11] [ 6] [953267] +17:20:07 [ 12] [ 6] [171756] +17:20:07 [ 13] [ 4] [0320] +17:20:07 [ 15] [ 4] [0320] +17:20:07 [ 18] [ 4] [6011] +17:20:07 [ 19] [ 3] [418] +17:20:07 [ 22] [ 3] [021] +17:20:07 [ 25] [ 2] [01] +17:20:07 [ 28] [ 9] [D00000000] +17:20:07 [ 32] [ 6] [668899] +17:20:07 [ 35] [ 32] [6213544001532479=491212013247375] +17:20:07 [ 37] [ 12] [507901963703] +17:20:07 [ 41] [ 8] [03020019] +17:20:07 [ 42] [ 15] [APT ] +17:20:07 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +17:20:07 [ 49] [ 3] [418] +17:20:07 [ 52] [ 16] [5A0A85D831E5749B] +17:20:07 ============================================================================ +17:20:07 + + +waiting on router queue for slot.... +17:20:07 Sending to : +17:20:07 ============================================================================ +17:20:07 ============================================================================ +17:20:07 Slot Id : <222> +17:20:07 Transaction Type : REQUEST +17:20:07 Received From : +17:20:07 ============================================================================ +17:20:07 FNo. Len. Field Value +17:20:07 ============================================================================ +17:20:07 [ 1] [ 4] [0200] +17:20:07 [ 2] [ 16] [6213544001532479] +17:20:07 [ 3] [ 6] [300000] +17:20:07 [ 4] [ 12] [000000000000] +17:20:07 [ 7] [ 10] [0320171756] +17:20:07 [ 11] [ 6] [953267] +17:20:07 [ 12] [ 6] [171756] +17:20:07 [ 13] [ 4] [0320] +17:20:07 [ 15] [ 4] [0320] +17:20:07 [ 18] [ 4] [6011] +17:20:07 [ 19] [ 3] [418] +17:20:07 [ 22] [ 3] [021] +17:20:07 [ 25] [ 2] [01] +17:20:07 [ 28] [ 9] [D00000000] +17:20:07 [ 32] [ 6] [668899] +17:20:07 [ 35] [ 32] [6213544001532479=491212013247375] +17:20:07 [ 37] [ 12] [507901963703] +17:20:07 [ 41] [ 8] [03020019] +17:20:07 [ 42] [ 15] [APT ] +17:20:07 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +17:20:07 [ 49] [ 3] [418] +17:20:07 [ 52] [ 16] [94EA04562E557552] +17:20:07 ============================================================================ +17:20:07 + + +waiting on router queue for slot.... +17:20:07 Sending to : <0> +17:20:07 ============================================================================ +17:20:07 ============================================================================ +17:20:07 Slot Id : <222> +17:20:07 Transaction Type : RESPONSE +17:20:07 Received From : +17:20:07 ============================================================================ +17:20:07 FNo. Len. Field Value +17:20:07 ============================================================================ +17:20:07 [ 1] [ 4] [0210] +17:20:07 [ 2] [ 16] [6213544001532479] +17:20:07 [ 3] [ 6] [300000] +17:20:07 [ 4] [ 12] [000000000000] +17:20:07 [ 7] [ 10] [0320171756] +17:20:07 [ 11] [ 6] [953267] +17:20:07 [ 12] [ 6] [171756] +17:20:07 [ 13] [ 4] [0320] +17:20:07 [ 15] [ 4] [0320] +17:20:07 [ 18] [ 4] [6011] +17:20:07 [ 19] [ 3] [418] +17:20:07 [ 32] [ 6] [668899] +17:20:07 [ 35] [ 32] [6213544001532479=491212013247375] +17:20:07 [ 37] [ 12] [507901963703] +17:20:07 [ 38] [ 6] [401111] +17:20:07 [ 39] [ 2] [00] +17:20:07 [ 41] [ 8] [03020019] +17:20:07 [ 49] [ 3] [418] +17:20:07 [ 54] [ 40] [0001418C0000058809310002418C000005880931] +17:20:07 ============================================================================ +17:20:07 Sending to : +17:20:07 ============================================================================ +17:20:07 + + +waiting on router queue for slot.... +17:20:09 ============================================================================ +17:20:09 Slot Id : <222> +17:20:09 Transaction Type : RESPONSE +17:20:09 Received From : +17:20:09 ============================================================================ +17:20:09 FNo. Len. Field Value +17:20:09 ============================================================================ +17:20:09 [ 1] [ 4] [0210] +17:20:09 [ 2] [ 16] [6213544001532479] +17:20:09 [ 3] [ 6] [300000] +17:20:09 [ 4] [ 12] [000000000000] +17:20:09 [ 7] [ 10] [0320171756] +17:20:09 [ 11] [ 6] [953267] +17:20:09 [ 12] [ 6] [171756] +17:20:09 [ 13] [ 4] [0320] +17:20:09 [ 15] [ 4] [0320] +17:20:09 [ 18] [ 4] [6011] +17:20:09 [ 19] [ 3] [418] +17:20:09 [ 32] [ 6] [668899] +17:20:09 [ 35] [ 32] [6213544001532479=491212013247375] +17:20:09 [ 37] [ 12] [507901963703] +17:20:09 [ 38] [ 6] [401111] +17:20:09 [ 39] [ 2] [00] +17:20:09 [ 41] [ 8] [03020019] +17:20:09 [ 49] [ 3] [418] +17:20:09 [ 54] [ 40] [0001418C0000058809310002418C000005880931] +17:20:09 ============================================================================ +17:20:09 Calculate Source COMM Id = 4 +17:20:09 ============================================================================ +17:20:09 + + +waiting on router queue for slot.... +17:20:11 ============================================================================ +17:20:11 Slot Id : <189> +17:20:11 Transaction Type : REQUEST +17:20:11 Received From : +17:20:11 ============================================================================ +17:20:11 FNo. Len. Field Value +17:20:11 ============================================================================ +17:20:11 [ 1] [ 4] [0200] +17:20:11 [ 2] [ 16] [6213544001835450] +17:20:11 [ 3] [ 6] [010000] +17:20:11 [ 4] [ 12] [000055000000] +17:20:11 [ 7] [ 10] [0320172758] +17:20:11 [ 11] [ 6] [240510] +17:20:11 [ 12] [ 6] [172758] +17:20:11 [ 13] [ 4] [0320] +17:20:11 [ 14] [ 4] [4912] +17:20:11 [ 15] [ 4] [0320] +17:20:11 [ 18] [ 4] [6011] +17:20:11 [ 22] [ 3] [900] +17:20:11 [ 25] [ 2] [02] +17:20:11 [ 28] [ 9] [D00002000] +17:20:11 [ 32] [ 6] [220699] +17:20:11 [ 35] [ 32] [6213544001835450=491212013545930] +17:20:11 [ 37] [ 12] [507900360247] +17:20:11 [ 41] [ 8] [05000300] +17:20:11 [ 42] [ 15] [APTRA ] +17:20:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:20:11 [ 49] [ 3] [418] +17:20:11 [ 52] [ 16] [738145348C79044A] +17:20:11 ============================================================================ +17:20:11 + + +waiting on router queue for slot.... +17:20:11 Sending to : +17:20:11 ============================================================================ +17:20:11 Sending to : +17:20:11 ============================================================================ +17:20:11 ============================================================================ +17:20:11 Slot Id : <168> +17:20:11 Transaction Type : REQUEST +17:20:11 Received From : +17:20:11 ============================================================================ +17:20:11 FNo. Len. Field Value +17:20:11 ============================================================================ +17:20:11 [ 1] [ 4] [0800] +17:20:11 [ 2] [ 5] [02531] +17:20:11 [ 3] [ 6] [579178] +17:20:11 [ 7] [ 10] [0320102011] +17:20:11 [ 11] [ 6] [807418] +17:20:11 [ 15] [ 10] [0320102011] +17:20:11 [ 37] [ 11] [57917807418] +17:20:11 [ 70] [ 3] [001] +17:20:11 ============================================================================ +17:20:11 + + +waiting on router queue for slot.... +17:20:11 ============================================================================ +17:20:11 Slot Id : <168> +17:20:11 Transaction Type : RESPONSE +17:20:11 Received From : +17:20:11 ============================================================================ +17:20:11 FNo. Len. Field Value +17:20:11 ============================================================================ +17:20:11 [ 1] [ 4] [0810] +17:20:11 [ 7] [ 10] [0320102011] +17:20:11 [ 11] [ 6] [807418] +17:20:11 [ 15] [ 4] [0320] +17:20:11 [ 37] [ 12] [57917807418] +17:20:11 [ 39] [ 2] [00] +17:20:11 [ 70] [ 3] [001] +17:20:11 ============================================================================ +17:20:11 Sending to : +17:20:11 ============================================================================ +17:20:11 + + +waiting on router queue for slot.... +17:20:11 ============================================================================ +17:20:11 Slot Id : <180> +17:20:11 Transaction Type : REQUEST +17:20:11 Received From : +17:20:11 ============================================================================ +17:20:11 FNo. Len. Field Value +17:20:11 ============================================================================ +17:20:11 [ 1] [ 4] [0800] +17:20:11 [ 7] [ 10] [0320101918] +17:20:11 [ 11] [ 6] [157430] +17:20:11 [ 70] [ 3] [301] +17:20:11 ============================================================================ +17:20:11 + + +waiting on router queue for slot.... +17:20:11 Sending to : +17:20:11 ============================================================================ +17:20:11 ============================================================================ +17:20:11 Slot Id : <180> +17:20:11 Transaction Type : RESPONSE +17:20:11 Received From : +17:20:11 ============================================================================ +17:20:11 FNo. Len. Field Value +17:20:11 ============================================================================ +17:20:11 [ 1] [ 4] [0810] +17:20:11 [ 7] [ 10] [0320101918] +17:20:11 [ 11] [ 6] [157430] +17:20:11 [ 39] [ 2] [00] +17:20:11 [ 70] [ 3] [301] +17:20:11 ============================================================================ +17:20:11 Calculate Source COMM Id = 2 +17:20:11 ============================================================================ +17:20:11 + + +waiting on router queue for slot.... +17:20:11 ============================================================================ +17:20:11 Slot Id : <189> +17:20:11 Transaction Type : REQUEST +17:20:11 Received From : +17:20:11 ============================================================================ +17:20:11 FNo. Len. Field Value +17:20:11 ============================================================================ +17:20:11 [ 1] [ 4] [0200] +17:20:11 [ 2] [ 16] [6213544001835450] +17:20:11 [ 3] [ 6] [010000] +17:20:11 [ 4] [ 12] [000055000000] +17:20:11 [ 7] [ 10] [0320172758] +17:20:11 [ 11] [ 6] [240510] +17:20:11 [ 12] [ 6] [172758] +17:20:11 [ 13] [ 4] [0320] +17:20:11 [ 14] [ 4] [4912] +17:20:11 [ 15] [ 4] [0320] +17:20:11 [ 18] [ 4] [6011] +17:20:11 [ 22] [ 3] [900] +17:20:11 [ 25] [ 2] [02] +17:20:11 [ 28] [ 9] [D00002000] +17:20:11 [ 32] [ 6] [220699] +17:20:11 [ 35] [ 32] [6213544001835450=491212013545930] +17:20:11 [ 37] [ 12] [507900360247] +17:20:11 [ 41] [ 8] [05000300] +17:20:11 [ 42] [ 15] [APTRA ] +17:20:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:20:11 [ 49] [ 3] [418] +17:20:11 [ 52] [ 16] [738145348C79044A] +17:20:11 ============================================================================ +17:20:11 + + +waiting on router queue for slot.... +17:20:11 Sending to : +17:20:11 ============================================================================ +17:20:11 ============================================================================ +17:20:11 Slot Id : <189> +17:20:11 Transaction Type : REQUEST +17:20:11 Received From : +17:20:11 ============================================================================ +17:20:11 FNo. Len. Field Value +17:20:11 ============================================================================ +17:20:11 [ 1] [ 4] [0200] +17:20:11 [ 2] [ 16] [6213544001835450] +17:20:11 [ 3] [ 6] [010000] +17:20:11 [ 4] [ 12] [000055000000] +17:20:11 [ 7] [ 10] [0320172758] +17:20:11 [ 11] [ 6] [240510] +17:20:11 [ 12] [ 6] [172758] +17:20:11 [ 13] [ 4] [0320] +17:20:11 [ 14] [ 4] [4912] +17:20:11 [ 15] [ 4] [0320] +17:20:11 [ 18] [ 4] [6011] +17:20:11 [ 22] [ 3] [900] +17:20:11 [ 25] [ 2] [02] +17:20:11 [ 28] [ 9] [D00002000] +17:20:11 [ 32] [ 6] [220699] +17:20:11 [ 35] [ 32] [6213544001835450=491212013545930] +17:20:11 [ 37] [ 12] [507900360247] +17:20:11 [ 41] [ 8] [05000300] +17:20:11 [ 42] [ 15] [APTRA ] +17:20:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:20:11 [ 49] [ 3] [418] +17:20:11 [ 52] [ 16] [5048AE3D6D945CDE] +17:20:11 ============================================================================ +17:20:11 + + +waiting on router queue for slot.... +17:20:11 Sending to : <0> +17:20:11 ============================================================================ +17:20:12 ============================================================================ +17:20:12 Slot Id : <189> +17:20:12 Transaction Type : RESPONSE +17:20:12 Received From : +17:20:12 ============================================================================ +17:20:12 FNo. Len. Field Value +17:20:12 ============================================================================ +17:20:12 [ 1] [ 4] [0210] +17:20:12 [ 2] [ 16] [6213544001835450] +17:20:12 [ 3] [ 6] [010000] +17:20:12 [ 4] [ 12] [000055000000] +17:20:12 [ 7] [ 10] [0320172758] +17:20:12 [ 11] [ 6] [240510] +17:20:12 [ 12] [ 6] [172758] +17:20:12 [ 13] [ 4] [0320] +17:20:12 [ 15] [ 4] [0320] +17:20:12 [ 18] [ 4] [6011] +17:20:12 [ 32] [ 6] [220699] +17:20:12 [ 35] [ 32] [6213544001835450=491212013545930] +17:20:12 [ 37] [ 12] [507900360247] +17:20:12 [ 38] [ 6] [598596] +17:20:12 [ 39] [ 2] [00] +17:20:12 [ 41] [ 8] [05000300] +17:20:12 [ 49] [ 3] [418] +17:20:12 [ 54] [ 40] [0001418C0000054825220002418C000005482522] +17:20:12 ============================================================================ +17:20:12 Sending to : +17:20:12 ============================================================================ +17:20:12 + + +waiting on router queue for slot.... +17:20:13 ============================================================================ +17:20:13 Slot Id : <189> +17:20:13 Transaction Type : RESPONSE +17:20:13 Received From : +17:20:13 ============================================================================ +17:20:13 FNo. Len. Field Value +17:20:13 ============================================================================ +17:20:13 [ 1] [ 4] [0210] +17:20:13 [ 2] [ 16] [6213544001835450] +17:20:13 [ 3] [ 6] [010000] +17:20:13 [ 4] [ 12] [000055000000] +17:20:13 [ 7] [ 10] [0320172758] +17:20:13 [ 11] [ 6] [240510] +17:20:13 [ 12] [ 6] [172758] +17:20:13 [ 13] [ 4] [0320] +17:20:13 [ 15] [ 4] [0320] +17:20:13 [ 18] [ 4] [6011] +17:20:13 [ 32] [ 6] [220699] +17:20:13 [ 35] [ 32] [6213544001835450=491212013545930] +17:20:13 [ 37] [ 12] [507900360247] +17:20:13 [ 38] [ 6] [598596] +17:20:13 [ 39] [ 2] [00] +17:20:13 [ 41] [ 8] [05000300] +17:20:13 [ 49] [ 3] [418] +17:20:13 [ 54] [ 40] [0001418C0000054825220002418C000005482522] +17:20:13 ============================================================================ +17:20:13 Calculate Source COMM Id = 1 +17:20:13 ============================================================================ +17:20:13 + + +waiting on router queue for slot.... +17:20:22 ============================================================================ +17:20:22 Slot Id : <229> +17:20:22 Transaction Type : REQUEST +17:20:22 Received From : +17:20:22 ============================================================================ +17:20:22 FNo. Len. Field Value +17:20:22 ============================================================================ +17:20:22 [ 1] [ 4] [0800] +17:20:22 [ 7] [ 10] [0320101929] +17:20:22 [ 11] [ 6] [157431] +17:20:22 [ 70] [ 3] [301] +17:20:22 ============================================================================ +17:20:22 + + +waiting on router queue for slot.... +17:20:22 Sending to : +17:20:22 ============================================================================ +17:20:22 ============================================================================ +17:20:22 Slot Id : <229> +17:20:22 Transaction Type : RESPONSE +17:20:22 Received From : +17:20:22 ============================================================================ +17:20:22 FNo. Len. Field Value +17:20:22 ============================================================================ +17:20:22 [ 1] [ 4] [0810] +17:20:22 [ 7] [ 10] [0320101929] +17:20:22 [ 11] [ 6] [157431] +17:20:22 [ 39] [ 2] [00] +17:20:22 [ 70] [ 3] [301] +17:20:22 ============================================================================ +17:20:22 Calculate Source COMM Id = 2 +17:20:22 ============================================================================ +17:20:22 + + +waiting on router queue for slot.... +17:20:29 ============================================================================ +17:20:29 Slot Id : <174> +17:20:29 Transaction Type : REQUEST +17:20:29 Received From : +17:20:29 ============================================================================ +17:20:29 FNo. Len. Field Value +17:20:29 ============================================================================ +17:20:29 [ 1] [ 4] [0200] +17:20:29 [ 2] [ 16] [6213545001042468] +17:20:29 [ 3] [ 6] [010000] +17:20:29 [ 4] [ 12] [000100000000] +17:20:29 [ 7] [ 10] [0320171819] +17:20:29 [ 11] [ 6] [953276] +17:20:29 [ 12] [ 6] [171819] +17:20:29 [ 13] [ 4] [0320] +17:20:29 [ 15] [ 4] [0320] +17:20:29 [ 18] [ 4] [6011] +17:20:29 [ 19] [ 3] [418] +17:20:29 [ 22] [ 3] [021] +17:20:29 [ 25] [ 2] [01] +17:20:29 [ 28] [ 9] [D00002000] +17:20:29 [ 32] [ 6] [668899] +17:20:29 [ 35] [ 32] [6213545001042468=491212014246446] +17:20:29 [ 37] [ 12] [507900844996] +17:20:29 [ 41] [ 8] [03015003] +17:20:29 [ 42] [ 15] [APT ] +17:20:29 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +17:20:29 [ 49] [ 3] [418] +17:20:29 [ 52] [ 16] [C56B0B35253BEA3F] +17:20:29 ============================================================================ +17:20:29 + + +waiting on router queue for slot.... +17:20:29 Sending to : +17:20:29 ============================================================================ +17:20:29 Sending to : +17:20:29 ============================================================================ +17:20:30 ============================================================================ +17:20:30 Slot Id : <174> +17:20:30 Transaction Type : REQUEST +17:20:30 Received From : +17:20:30 ============================================================================ +17:20:30 FNo. Len. Field Value +17:20:30 ============================================================================ +17:20:30 [ 1] [ 4] [0200] +17:20:30 [ 2] [ 16] [6213545001042468] +17:20:30 [ 3] [ 6] [010000] +17:20:30 [ 4] [ 12] [000100000000] +17:20:30 [ 7] [ 10] [0320171819] +17:20:30 [ 11] [ 6] [953276] +17:20:30 [ 12] [ 6] [171819] +17:20:30 [ 13] [ 4] [0320] +17:20:30 [ 15] [ 4] [0320] +17:20:30 [ 18] [ 4] [6011] +17:20:30 [ 19] [ 3] [418] +17:20:30 [ 22] [ 3] [021] +17:20:30 [ 25] [ 2] [01] +17:20:30 [ 28] [ 9] [D00002000] +17:20:30 [ 32] [ 6] [668899] +17:20:30 [ 35] [ 32] [6213545001042468=491212014246446] +17:20:30 [ 37] [ 12] [507900844996] +17:20:30 [ 41] [ 8] [03015003] +17:20:30 [ 42] [ 15] [APT ] +17:20:30 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +17:20:30 [ 49] [ 3] [418] +17:20:30 [ 52] [ 16] [C56B0B35253BEA3F] +17:20:30 ============================================================================ +17:20:30 + + +waiting on router queue for slot.... +17:20:30 Sending to : +17:20:30 ============================================================================ +17:20:30 ============================================================================ +17:20:30 Slot Id : <174> +17:20:30 Transaction Type : REQUEST +17:20:30 Received From : +17:20:30 ============================================================================ +17:20:30 FNo. Len. Field Value +17:20:30 ============================================================================ +17:20:30 [ 1] [ 4] [0200] +17:20:30 [ 2] [ 16] [6213545001042468] +17:20:30 [ 3] [ 6] [010000] +17:20:30 [ 4] [ 12] [000100000000] +17:20:30 [ 7] [ 10] [0320171819] +17:20:30 [ 11] [ 6] [953276] +17:20:30 [ 12] [ 6] [171819] +17:20:30 [ 13] [ 4] [0320] +17:20:30 [ 15] [ 4] [0320] +17:20:30 [ 18] [ 4] [6011] +17:20:30 [ 19] [ 3] [418] +17:20:30 [ 22] [ 3] [021] +17:20:30 [ 25] [ 2] [01] +17:20:30 [ 28] [ 9] [D00002000] +17:20:30 [ 32] [ 6] [668899] +17:20:30 [ 35] [ 32] [6213545001042468=491212014246446] +17:20:30 [ 37] [ 12] [507900844996] +17:20:30 [ 41] [ 8] [03015003] +17:20:30 [ 42] [ 15] [APT ] +17:20:30 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +17:20:30 [ 49] [ 3] [418] +17:20:30 [ 52] [ 16] [3724826B32D2B9E9] +17:20:30 ============================================================================ +17:20:30 + + +waiting on router queue for slot.... +17:20:30 Sending to : <0> +17:20:30 ============================================================================ +17:20:30 ============================================================================ +17:20:30 Slot Id : <174> +17:20:30 Transaction Type : RESPONSE +17:20:30 Received From : +17:20:30 ============================================================================ +17:20:30 FNo. Len. Field Value +17:20:30 ============================================================================ +17:20:30 [ 1] [ 4] [0210] +17:20:30 [ 2] [ 16] [6213545001042468] +17:20:30 [ 3] [ 6] [010000] +17:20:30 [ 4] [ 12] [000100000000] +17:20:30 [ 7] [ 10] [0320171819] +17:20:30 [ 11] [ 6] [953276] +17:20:30 [ 12] [ 6] [171819] +17:20:30 [ 13] [ 4] [0320] +17:20:30 [ 15] [ 4] [0320] +17:20:30 [ 18] [ 4] [6011] +17:20:30 [ 19] [ 3] [418] +17:20:30 [ 32] [ 6] [668899] +17:20:30 [ 35] [ 32] [6213545001042468=491212014246446] +17:20:30 [ 37] [ 12] [507900844996] +17:20:30 [ 38] [ 6] [075217] +17:20:30 [ 39] [ 2] [00] +17:20:30 [ 41] [ 8] [03015003] +17:20:30 [ 49] [ 3] [418] +17:20:30 [ 54] [ 40] [0001418C0000267191140002418C000026719114] +17:20:30 ============================================================================ +17:20:30 Sending to : +17:20:30 ============================================================================ +17:20:30 + + +waiting on router queue for slot.... +17:20:32 ============================================================================ +17:20:32 Slot Id : <174> +17:20:32 Transaction Type : RESPONSE +17:20:32 Received From : +17:20:32 ============================================================================ +17:20:32 FNo. Len. Field Value +17:20:32 ============================================================================ +17:20:32 [ 1] [ 4] [0210] +17:20:32 [ 2] [ 16] [6213545001042468] +17:20:32 [ 3] [ 6] [010000] +17:20:32 [ 4] [ 12] [000100000000] +17:20:32 [ 7] [ 10] [0320171819] +17:20:32 [ 11] [ 6] [953276] +17:20:32 [ 12] [ 6] [171819] +17:20:32 [ 13] [ 4] [0320] +17:20:32 [ 15] [ 4] [0320] +17:20:32 [ 18] [ 4] [6011] +17:20:32 [ 19] [ 3] [418] +17:20:32 [ 32] [ 6] [668899] +17:20:32 [ 35] [ 32] [6213545001042468=491212014246446] +17:20:32 [ 37] [ 12] [507900844996] +17:20:32 [ 38] [ 6] [075217] +17:20:32 [ 39] [ 2] [00] +17:20:32 [ 41] [ 8] [03015003] +17:20:32 [ 49] [ 3] [418] +17:20:32 [ 54] [ 40] [0001418C0000267191140002418C000026719114] +17:20:32 ============================================================================ +17:20:32 Calculate Source COMM Id = 4 +17:20:32 ============================================================================ +17:20:32 + + +waiting on router queue for slot.... +17:20:32 ============================================================================ +17:20:32 Slot Id : <173> +17:20:32 Transaction Type : REQUEST +17:20:32 Received From : +17:20:32 ============================================================================ +17:20:32 FNo. Len. Field Value +17:20:32 ============================================================================ +17:20:32 [ 1] [ 4] [0800] +17:20:32 [ 7] [ 10] [0320101939] +17:20:32 [ 11] [ 6] [157432] +17:20:32 [ 70] [ 3] [301] +17:20:32 ============================================================================ +17:20:32 + + +waiting on router queue for slot.... +17:20:32 Sending to : +17:20:32 ============================================================================ +17:20:32 ============================================================================ +17:20:32 Slot Id : <173> +17:20:32 Transaction Type : RESPONSE +17:20:32 Received From : +17:20:32 ============================================================================ +17:20:32 FNo. Len. Field Value +17:20:32 ============================================================================ +17:20:32 [ 1] [ 4] [0810] +17:20:32 [ 7] [ 10] [0320101939] +17:20:32 [ 11] [ 6] [157432] +17:20:32 [ 39] [ 2] [00] +17:20:32 [ 70] [ 3] [301] +17:20:32 ============================================================================ +17:20:32 Calculate Source COMM Id = 2 +17:20:32 ============================================================================ +17:20:32 + + +waiting on router queue for slot.... +17:20:47 ============================================================================ +17:20:47 Slot Id : <246> +17:20:47 Transaction Type : REQUEST +17:20:47 Received From : +17:20:47 ============================================================================ +17:20:47 FNo. Len. Field Value +17:20:47 ============================================================================ +17:20:47 [ 1] [ 4] [0800] +17:20:47 [ 7] [ 10] [0320101954] +17:20:47 [ 11] [ 6] [157433] +17:20:47 [ 70] [ 3] [301] +17:20:47 ============================================================================ +17:20:47 + + +waiting on router queue for slot.... +17:20:47 Sending to : +17:20:47 ============================================================================ +17:20:47 ============================================================================ +17:20:47 Slot Id : <246> +17:20:47 Transaction Type : RESPONSE +17:20:47 Received From : +17:20:47 ============================================================================ +17:20:47 FNo. Len. Field Value +17:20:47 ============================================================================ +17:20:47 [ 1] [ 4] [0810] +17:20:47 [ 7] [ 10] [0320101954] +17:20:47 [ 11] [ 6] [157433] +17:20:47 [ 39] [ 2] [00] +17:20:47 [ 70] [ 3] [301] +17:20:47 ============================================================================ +17:20:47 Calculate Source COMM Id = 2 +17:20:47 ============================================================================ +17:20:47 + + +waiting on router queue for slot.... +17:20:48 ============================================================================ +17:20:48 Slot Id : <188> +17:20:48 Transaction Type : REQUEST +17:20:48 Received From : +17:20:48 ============================================================================ +17:20:48 FNo. Len. Field Value +17:20:48 ============================================================================ +17:20:48 [ 1] [ 4] [0800] +17:20:48 [ 7] [ 10] [0320172034] +17:20:48 [ 11] [ 6] [030268] +17:20:48 [ 37] [ 12] [507917030268] +17:20:48 [ 70] [ 3] [ ] +17:20:48 ============================================================================ +17:20:48 + + +waiting on router queue for slot.... +17:20:48 Sending to : +17:20:48 ============================================================================ +17:20:48 ============================================================================ +17:20:48 Slot Id : <188> +17:20:48 Transaction Type : RESPONSE +17:20:48 Received From : +17:20:48 ============================================================================ +17:20:48 FNo. Len. Field Value +17:20:48 ============================================================================ +17:20:48 [ 1] [ 4] [0810] +17:20:48 [ 7] [ 10] [0320172034] +17:20:48 [ 11] [ 6] [030268] +17:20:48 [ 37] [ 12] [507917030268] +17:20:48 [ 39] [ 2] [91] +17:20:48 [ 70] [ 3] [ ] +17:20:48 ============================================================================ +17:20:48 Calculate Source COMM Id = 3 +17:20:48 ============================================================================ +17:20:48 + + +waiting on router queue for slot.... +17:21:00 ============================================================================ +17:21:00 Slot Id : <223> +17:21:00 Transaction Type : REQUEST +17:21:00 Received From : +17:21:00 ============================================================================ +17:21:00 FNo. Len. Field Value +17:21:00 ============================================================================ +17:21:00 [ 1] [ 4] [0800] +17:21:00 [ 7] [ 10] [0321003249] +17:21:00 [ 11] [ 6] [173249] +17:21:00 [ 37] [ 12] [57917173249] +17:21:00 [ 70] [ 3] [301] +17:21:00 ============================================================================ +17:21:00 + + +waiting on router queue for slot.... +17:21:00 Sending to : +17:21:00 ============================================================================ +17:21:00 ============================================================================ +17:21:00 Slot Id : <223> +17:21:00 Transaction Type : RESPONSE +17:21:00 Received From : +17:21:00 ============================================================================ +17:21:00 FNo. Len. Field Value +17:21:00 ============================================================================ +17:21:00 [ 1] [ 4] [0810] +17:21:00 [ 7] [ 10] [0321003249] +17:21:00 [ 11] [ 6] [173249] +17:21:00 [ 37] [ 12] [579171732490] +17:21:00 [ 39] [ 2] [00] +17:21:00 [ 70] [ 3] [810] +17:21:00 ============================================================================ +17:21:00 Calculate Source COMM Id = 6 +17:21:00 ============================================================================ +17:21:00 + + +waiting on router queue for slot.... +17:21:02 ============================================================================ +17:21:02 Slot Id : <235> +17:21:02 Transaction Type : REQUEST +17:21:02 Received From : +17:21:02 ============================================================================ +17:21:02 FNo. Len. Field Value +17:21:02 ============================================================================ +17:21:02 [ 1] [ 4] [0800] +17:21:02 [ 7] [ 10] [0320102009] +17:21:02 [ 11] [ 6] [157434] +17:21:02 [ 70] [ 3] [301] +17:21:02 ============================================================================ +17:21:02 + + +waiting on router queue for slot.... +17:21:02 Sending to : +17:21:02 ============================================================================ +17:21:02 ============================================================================ +17:21:02 Slot Id : <235> +17:21:02 Transaction Type : RESPONSE +17:21:02 Received From : +17:21:02 ============================================================================ +17:21:02 FNo. Len. Field Value +17:21:02 ============================================================================ +17:21:02 [ 1] [ 4] [0810] +17:21:02 [ 7] [ 10] [0320102009] +17:21:02 [ 11] [ 6] [157434] +17:21:02 [ 39] [ 2] [00] +17:21:02 [ 70] [ 3] [301] +17:21:02 ============================================================================ +17:21:02 Calculate Source COMM Id = 2 +17:21:02 ============================================================================ +17:21:02 + + +waiting on router queue for slot.... +17:21:09 ============================================================================ +17:21:09 Slot Id : <215> +17:21:09 Transaction Type : REQUEST +17:21:09 Received From : +17:21:09 ============================================================================ +17:21:09 FNo. Len. Field Value +17:21:09 ============================================================================ +17:21:09 [ 1] [ 4] [0200] +17:21:09 [ 2] [ 16] [6213544002118138] +17:21:09 [ 3] [ 6] [011000] +17:21:09 [ 4] [ 12] [000055000000] +17:21:09 [ 7] [ 10] [0320172130] +17:21:09 [ 11] [ 6] [209469] +17:21:09 [ 12] [ 6] [171636] +17:21:09 [ 13] [ 4] [0320] +17:21:09 [ 14] [ 4] [4912] +17:21:09 [ 15] [ 4] [0320] +17:21:09 [ 18] [ 4] [6011] +17:21:09 [ 19] [ 3] [418] +17:21:09 [ 22] [ 3] [021] +17:21:09 [ 25] [ 2] [01] +17:21:09 [ 28] [ 9] [D00002000] +17:21:09 [ 32] [ 6] [198901] +17:21:09 [ 35] [ 32] [6213544002118138=491212011813423] +17:21:09 [ 37] [ 12] [507917209469] +17:21:09 [ 41] [ 8] [19529001] +17:21:09 [ 42] [ 15] [000000041952901] +17:21:09 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:21:09 [ 49] [ 3] [418] +17:21:09 [ 52] [ 16] [97C6EF113B78830F] +17:21:09 ============================================================================ +17:21:09 + + +waiting on router queue for slot.... +17:21:09 Sending to : +17:21:09 ============================================================================ +17:21:09 Sending to : +17:21:09 ============================================================================ +17:21:10 ============================================================================ +17:21:10 Slot Id : <215> +17:21:10 Transaction Type : REQUEST +17:21:10 Received From : +17:21:10 ============================================================================ +17:21:10 FNo. Len. Field Value +17:21:10 ============================================================================ +17:21:10 [ 1] [ 4] [0200] +17:21:10 [ 2] [ 16] [6213544002118138] +17:21:10 [ 3] [ 6] [011000] +17:21:10 [ 4] [ 12] [000055000000] +17:21:10 [ 7] [ 10] [0320172130] +17:21:10 [ 11] [ 6] [209469] +17:21:10 [ 12] [ 6] [171636] +17:21:10 [ 13] [ 4] [0320] +17:21:10 [ 14] [ 4] [4912] +17:21:10 [ 15] [ 4] [0320] +17:21:10 [ 18] [ 4] [6011] +17:21:10 [ 19] [ 3] [418] +17:21:10 [ 22] [ 3] [021] +17:21:10 [ 25] [ 2] [01] +17:21:10 [ 28] [ 9] [D00002000] +17:21:10 [ 32] [ 6] [198901] +17:21:10 [ 35] [ 32] [6213544002118138=491212011813423] +17:21:10 [ 37] [ 12] [507917209469] +17:21:10 [ 41] [ 8] [19529001] +17:21:10 [ 42] [ 15] [000000041952901] +17:21:10 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:21:10 [ 49] [ 3] [418] +17:21:10 [ 52] [ 16] [97C6EF113B78830F] +17:21:10 ============================================================================ +17:21:10 + + +waiting on router queue for slot.... +17:21:10 Sending to : +17:21:10 ============================================================================ +17:21:10 ============================================================================ +17:21:10 Slot Id : <215> +17:21:10 Transaction Type : REQUEST +17:21:10 Received From : +17:21:10 ============================================================================ +17:21:10 FNo. Len. Field Value +17:21:10 ============================================================================ +17:21:10 [ 1] [ 4] [0200] +17:21:10 [ 2] [ 16] [6213544002118138] +17:21:10 [ 3] [ 6] [011000] +17:21:10 [ 4] [ 12] [000055000000] +17:21:10 [ 7] [ 10] [0320172130] +17:21:10 [ 11] [ 6] [209469] +17:21:10 [ 12] [ 6] [171636] +17:21:10 [ 13] [ 4] [0320] +17:21:10 [ 14] [ 4] [4912] +17:21:10 [ 15] [ 4] [0320] +17:21:10 [ 18] [ 4] [6011] +17:21:10 [ 19] [ 3] [418] +17:21:10 [ 22] [ 3] [021] +17:21:10 [ 25] [ 2] [01] +17:21:10 [ 28] [ 9] [D00002000] +17:21:10 [ 32] [ 6] [198901] +17:21:10 [ 35] [ 32] [6213544002118138=491212011813423] +17:21:10 [ 37] [ 12] [507917209469] +17:21:10 [ 41] [ 8] [19529001] +17:21:10 [ 42] [ 15] [000000041952901] +17:21:10 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:21:10 [ 49] [ 3] [418] +17:21:10 [ 52] [ 16] [10933CB316D8605A] +17:21:10 ============================================================================ +17:21:10 + + +waiting on router queue for slot.... +17:21:10 Sending to : <0> +17:21:10 ============================================================================ +17:21:10 ============================================================================ +17:21:10 Slot Id : <215> +17:21:10 Transaction Type : RESPONSE +17:21:10 Received From : +17:21:10 ============================================================================ +17:21:10 FNo. Len. Field Value +17:21:10 ============================================================================ +17:21:10 [ 1] [ 4] [0210] +17:21:10 [ 2] [ 16] [6213544002118138] +17:21:10 [ 3] [ 6] [011000] +17:21:10 [ 4] [ 12] [000055000000] +17:21:10 [ 7] [ 10] [0320172130] +17:21:10 [ 11] [ 6] [209469] +17:21:10 [ 12] [ 6] [171636] +17:21:10 [ 13] [ 4] [0320] +17:21:10 [ 15] [ 4] [0320] +17:21:10 [ 18] [ 4] [6011] +17:21:10 [ 19] [ 3] [418] +17:21:10 [ 32] [ 6] [198901] +17:21:10 [ 35] [ 32] [6213544002118138=491212011813423] +17:21:10 [ 37] [ 12] [507917209469] +17:21:10 [ 38] [ 6] [265417] +17:21:10 [ 39] [ 2] [00] +17:21:10 [ 41] [ 8] [19529001] +17:21:10 [ 49] [ 3] [418] +17:21:10 [ 54] [ 40] [1001418C0000068141211002418C000006814121] +17:21:10 ============================================================================ +17:21:10 Sending to : +17:21:10 ============================================================================ +17:21:10 + + +waiting on router queue for slot.... +17:21:12 ============================================================================ +17:21:12 Slot Id : <215> +17:21:12 Transaction Type : RESPONSE +17:21:12 Received From : +17:21:12 ============================================================================ +17:21:12 FNo. Len. Field Value +17:21:12 ============================================================================ +17:21:12 [ 1] [ 4] [0210] +17:21:12 [ 2] [ 16] [6213544002118138] +17:21:12 [ 3] [ 6] [011000] +17:21:12 [ 4] [ 12] [000055000000] +17:21:12 [ 7] [ 10] [0320172130] +17:21:12 [ 11] [ 6] [209469] +17:21:12 [ 12] [ 6] [171636] +17:21:12 [ 13] [ 4] [0320] +17:21:12 [ 15] [ 4] [0320] +17:21:12 [ 18] [ 4] [6011] +17:21:12 [ 19] [ 3] [418] +17:21:12 [ 32] [ 6] [198901] +17:21:12 [ 35] [ 32] [6213544002118138=491212011813423] +17:21:12 [ 37] [ 12] [507917209469] +17:21:12 [ 38] [ 6] [265417] +17:21:12 [ 39] [ 2] [00] +17:21:12 [ 41] [ 8] [19529001] +17:21:12 [ 49] [ 3] [418] +17:21:12 [ 54] [ 40] [1001418C0000068141211002418C000006814121] +17:21:12 ============================================================================ +17:21:12 Calculate Source COMM Id = 5 +17:21:12 ============================================================================ +17:21:12 + + +waiting on router queue for slot.... +17:21:12 ============================================================================ +17:21:12 Slot Id : <227> +17:21:12 Transaction Type : REQUEST +17:21:12 Received From : +17:21:12 ============================================================================ +17:21:12 FNo. Len. Field Value +17:21:12 ============================================================================ +17:21:12 [ 1] [ 4] [0800] +17:21:12 [ 7] [ 10] [0320102019] +17:21:12 [ 11] [ 6] [157435] +17:21:12 [ 70] [ 3] [301] +17:21:12 ============================================================================ +17:21:12 + + +waiting on router queue for slot.... +17:21:12 Sending to : +17:21:12 ============================================================================ +17:21:12 ============================================================================ +17:21:12 Slot Id : <227> +17:21:12 Transaction Type : RESPONSE +17:21:12 Received From : +17:21:12 ============================================================================ +17:21:12 FNo. Len. Field Value +17:21:12 ============================================================================ +17:21:12 [ 1] [ 4] [0810] +17:21:12 [ 7] [ 10] [0320102019] +17:21:12 [ 11] [ 6] [157435] +17:21:12 [ 39] [ 2] [00] +17:21:12 [ 70] [ 3] [301] +17:21:12 ============================================================================ +17:21:12 Calculate Source COMM Id = 2 +17:21:12 ============================================================================ +17:21:12 + + +waiting on router queue for slot.... +17:21:13 ============================================================================ +17:21:13 Slot Id : <244> +17:21:13 Transaction Type : REQUEST +17:21:13 Received From : +17:21:13 ============================================================================ +17:21:13 FNo. Len. Field Value +17:21:13 ============================================================================ +17:21:13 [ 1] [ 4] [0800] +17:21:13 [ 2] [ 5] [02531] +17:21:13 [ 3] [ 6] [579178] +17:21:13 [ 7] [ 10] [0320102113] +17:21:13 [ 11] [ 6] [807419] +17:21:13 [ 15] [ 10] [0320102113] +17:21:13 [ 37] [ 11] [57917807419] +17:21:13 [ 70] [ 3] [001] +17:21:13 ============================================================================ +17:21:13 + + +waiting on router queue for slot.... +17:21:13 ============================================================================ +17:21:13 Slot Id : <244> +17:21:13 Transaction Type : RESPONSE +17:21:13 Received From : +17:21:13 ============================================================================ +17:21:13 FNo. Len. Field Value +17:21:13 ============================================================================ +17:21:13 [ 1] [ 4] [0810] +17:21:13 [ 7] [ 10] [0320102113] +17:21:13 [ 11] [ 6] [807419] +17:21:13 [ 15] [ 4] [0320] +17:21:13 [ 37] [ 12] [57917807419] +17:21:13 [ 39] [ 2] [00] +17:21:13 [ 70] [ 3] [001] +17:21:13 ============================================================================ +17:21:13 Sending to : +17:21:13 ============================================================================ +17:21:13 + + +waiting on router queue for slot.... +17:21:17 ============================================================================ +17:21:17 Slot Id : <248> +17:21:17 Transaction Type : REQUEST +17:21:17 Received From : +17:21:17 ============================================================================ +17:21:17 FNo. Len. Field Value +17:21:17 ============================================================================ +17:21:17 [ 1] [ 4] [0200] +17:21:17 [ 2] [ 16] [6213544002118161] +17:21:17 [ 3] [ 6] [010000] +17:21:17 [ 4] [ 12] [000049000000] +17:21:17 [ 7] [ 10] [0320172904] +17:21:17 [ 11] [ 6] [240513] +17:21:17 [ 12] [ 6] [172904] +17:21:17 [ 13] [ 4] [0320] +17:21:17 [ 14] [ 4] [4912] +17:21:17 [ 15] [ 4] [0320] +17:21:17 [ 18] [ 4] [6011] +17:21:17 [ 22] [ 3] [900] +17:21:17 [ 25] [ 2] [02] +17:21:17 [ 28] [ 9] [D00002000] +17:21:17 [ 32] [ 6] [220699] +17:21:17 [ 35] [ 32] [6213544002118161=491212011816115] +17:21:17 [ 37] [ 12] [507900360249] +17:21:17 [ 41] [ 8] [05000300] +17:21:17 [ 42] [ 15] [APTRA ] +17:21:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:21:17 [ 49] [ 3] [418] +17:21:17 [ 52] [ 16] [501E4FE3A744811C] +17:21:17 ============================================================================ +17:21:17 + + +waiting on router queue for slot.... +17:21:17 Sending to : +17:21:17 ============================================================================ +17:21:17 Sending to : +17:21:17 ============================================================================ +17:21:17 ============================================================================ +17:21:17 Slot Id : <248> +17:21:17 Transaction Type : REQUEST +17:21:17 Received From : +17:21:17 ============================================================================ +17:21:17 FNo. Len. Field Value +17:21:17 ============================================================================ +17:21:17 [ 1] [ 4] [0200] +17:21:17 [ 2] [ 16] [6213544002118161] +17:21:17 [ 3] [ 6] [010000] +17:21:17 [ 4] [ 12] [000049000000] +17:21:17 [ 7] [ 10] [0320172904] +17:21:17 [ 11] [ 6] [240513] +17:21:17 [ 12] [ 6] [172904] +17:21:17 [ 13] [ 4] [0320] +17:21:17 [ 14] [ 4] [4912] +17:21:17 [ 15] [ 4] [0320] +17:21:17 [ 18] [ 4] [6011] +17:21:17 [ 22] [ 3] [900] +17:21:17 [ 25] [ 2] [02] +17:21:17 [ 28] [ 9] [D00002000] +17:21:17 [ 32] [ 6] [220699] +17:21:17 [ 35] [ 32] [6213544002118161=491212011816115] +17:21:17 [ 37] [ 12] [507900360249] +17:21:17 [ 41] [ 8] [05000300] +17:21:17 [ 42] [ 15] [APTRA ] +17:21:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:21:17 [ 49] [ 3] [418] +17:21:17 [ 52] [ 16] [501E4FE3A744811C] +17:21:17 ============================================================================ +17:21:17 + + +waiting on router queue for slot.... +17:21:17 Sending to : +17:21:17 ============================================================================ +17:21:17 ============================================================================ +17:21:17 Slot Id : <248> +17:21:17 Transaction Type : REQUEST +17:21:17 Received From : +17:21:17 ============================================================================ +17:21:17 FNo. Len. Field Value +17:21:17 ============================================================================ +17:21:17 [ 1] [ 4] [0200] +17:21:17 [ 2] [ 16] [6213544002118161] +17:21:17 [ 3] [ 6] [010000] +17:21:17 [ 4] [ 12] [000049000000] +17:21:17 [ 7] [ 10] [0320172904] +17:21:17 [ 11] [ 6] [240513] +17:21:17 [ 12] [ 6] [172904] +17:21:17 [ 13] [ 4] [0320] +17:21:17 [ 14] [ 4] [4912] +17:21:17 [ 15] [ 4] [0320] +17:21:17 [ 18] [ 4] [6011] +17:21:17 [ 22] [ 3] [900] +17:21:17 [ 25] [ 2] [02] +17:21:17 [ 28] [ 9] [D00002000] +17:21:17 [ 32] [ 6] [220699] +17:21:17 [ 35] [ 32] [6213544002118161=491212011816115] +17:21:17 [ 37] [ 12] [507900360249] +17:21:17 [ 41] [ 8] [05000300] +17:21:17 [ 42] [ 15] [APTRA ] +17:21:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:21:17 [ 49] [ 3] [418] +17:21:17 [ 52] [ 16] [33C9C807C4321733] +17:21:17 ============================================================================ +17:21:17 + + +waiting on router queue for slot.... +17:21:17 Sending to : <0> +17:21:17 ============================================================================ +17:21:18 ============================================================================ +17:21:18 Slot Id : <248> +17:21:18 Transaction Type : RESPONSE +17:21:18 Received From : +17:21:18 ============================================================================ +17:21:18 FNo. Len. Field Value +17:21:18 ============================================================================ +17:21:18 [ 1] [ 4] [0210] +17:21:18 [ 2] [ 16] [6213544002118161] +17:21:18 [ 3] [ 6] [010000] +17:21:18 [ 4] [ 12] [000049000000] +17:21:18 [ 7] [ 10] [0320172904] +17:21:18 [ 11] [ 6] [240513] +17:21:18 [ 12] [ 6] [172904] +17:21:18 [ 13] [ 4] [0320] +17:21:18 [ 15] [ 4] [0320] +17:21:18 [ 18] [ 4] [6011] +17:21:18 [ 32] [ 6] [220699] +17:21:18 [ 35] [ 32] [6213544002118161=491212011816115] +17:21:18 [ 37] [ 12] [507900360249] +17:21:18 [ 38] [ 6] [597688] +17:21:18 [ 39] [ 2] [00] +17:21:18 [ 41] [ 8] [05000300] +17:21:18 [ 49] [ 3] [418] +17:21:18 [ 54] [ 40] [0001418C0000069472210002418C000006947221] +17:21:18 ============================================================================ +17:21:18 Sending to : +17:21:18 ============================================================================ +17:21:18 + + +waiting on router queue for slot.... +17:21:19 ============================================================================ +17:21:19 Slot Id : <248> +17:21:19 Transaction Type : RESPONSE +17:21:19 Received From : +17:21:19 ============================================================================ +17:21:19 FNo. Len. Field Value +17:21:19 ============================================================================ +17:21:19 [ 1] [ 4] [0210] +17:21:19 [ 2] [ 16] [6213544002118161] +17:21:19 [ 3] [ 6] [010000] +17:21:19 [ 4] [ 12] [000049000000] +17:21:19 [ 7] [ 10] [0320172904] +17:21:19 [ 11] [ 6] [240513] +17:21:19 [ 12] [ 6] [172904] +17:21:19 [ 13] [ 4] [0320] +17:21:19 [ 15] [ 4] [0320] +17:21:19 [ 18] [ 4] [6011] +17:21:19 [ 32] [ 6] [220699] +17:21:19 [ 35] [ 32] [6213544002118161=491212011816115] +17:21:19 [ 37] [ 12] [507900360249] +17:21:19 [ 38] [ 6] [597688] +17:21:19 [ 39] [ 2] [00] +17:21:19 [ 41] [ 8] [05000300] +17:21:19 [ 49] [ 3] [418] +17:21:19 [ 54] [ 40] [0001418C0000069472210002418C000006947221] +17:21:19 ============================================================================ +17:21:19 Calculate Source COMM Id = 1 +17:21:19 ============================================================================ +17:21:19 + + +waiting on router queue for slot.... +17:21:22 ============================================================================ +17:21:22 Slot Id : <243> +17:21:22 Transaction Type : REQUEST +17:21:22 Received From : +17:21:22 ============================================================================ +17:21:22 FNo. Len. Field Value +17:21:22 ============================================================================ +17:21:22 [ 1] [ 4] [0800] +17:21:22 [ 7] [ 10] [0320101912] +17:21:22 [ 11] [ 6] [019654] +17:21:22 [ 37] [ 12] [57917019654] +17:21:22 [ 70] [ 3] [301] +17:21:22 ============================================================================ +17:21:22 + + +waiting on router queue for slot.... +17:21:22 Sending to : +17:21:22 ============================================================================ +17:21:22 ============================================================================ +17:21:22 Slot Id : <243> +17:21:22 Transaction Type : RESPONSE +17:21:22 Received From : +17:21:22 ============================================================================ +17:21:22 FNo. Len. Field Value +17:21:22 ============================================================================ +17:21:22 [ 1] [ 4] [0810] +17:21:22 [ 7] [ 10] [0320101912] +17:21:22 [ 11] [ 6] [019654] +17:21:22 [ 37] [ 12] [579170196540] +17:21:22 [ 39] [ 2] [00] +17:21:22 [ 70] [ 3] [810] +17:21:22 ============================================================================ +17:21:22 Calculate Source COMM Id = 4 +17:21:22 ============================================================================ +17:21:22 + + +waiting on router queue for slot.... +17:21:23 ============================================================================ +17:21:23 Slot Id : <251> +17:21:23 Transaction Type : REQUEST +17:21:23 Received From : +17:21:23 ============================================================================ +17:21:23 FNo. Len. Field Value +17:21:23 ============================================================================ +17:21:23 [ 1] [ 4] [0800] +17:21:23 [ 7] [ 10] [0320102029] +17:21:23 [ 11] [ 6] [157436] +17:21:23 [ 70] [ 3] [301] +17:21:23 ============================================================================ +17:21:23 + + +waiting on router queue for slot.... +17:21:23 Sending to : +17:21:23 ============================================================================ +17:21:23 ============================================================================ +17:21:23 Slot Id : <251> +17:21:23 Transaction Type : RESPONSE +17:21:23 Received From : +17:21:23 ============================================================================ +17:21:23 FNo. Len. Field Value +17:21:23 ============================================================================ +17:21:23 [ 1] [ 4] [0810] +17:21:23 [ 7] [ 10] [0320102029] +17:21:23 [ 11] [ 6] [157436] +17:21:23 [ 39] [ 2] [00] +17:21:23 [ 70] [ 3] [301] +17:21:23 ============================================================================ +17:21:23 Calculate Source COMM Id = 2 +17:21:23 ============================================================================ +17:21:23 + + +waiting on router queue for slot.... +17:21:25 ============================================================================ +17:21:25 Slot Id : <242> +17:21:25 Transaction Type : REQUEST +17:21:25 Received From : +17:21:25 ============================================================================ +17:21:25 FNo. Len. Field Value +17:21:25 ============================================================================ +17:21:25 [ 1] [ 4] [0800] +17:21:25 [ 7] [ 10] [0320102120] +17:21:25 [ 11] [ 6] [098168] +17:21:25 [ 37] [ 12] [507917098168] +17:21:25 [ 70] [ 3] [001] +17:21:25 ============================================================================ +17:21:25 + + +waiting on router queue for slot.... +17:21:25 Sending to : +17:21:25 ============================================================================ +17:21:25 ============================================================================ +17:21:25 Slot Id : <242> +17:21:25 Transaction Type : RESPONSE +17:21:25 Received From : +17:21:25 ============================================================================ +17:21:25 FNo. Len. Field Value +17:21:25 ============================================================================ +17:21:25 [ 1] [ 4] [0810] +17:21:25 [ 7] [ 10] [0320102120] +17:21:25 [ 11] [ 6] [098168] +17:21:25 [ 37] [ 12] [507917098168] +17:21:25 [ 39] [ 2] [00] +17:21:25 [ 70] [ 3] [001] +17:21:25 ============================================================================ +17:21:25 Calculate Source COMM Id = 0 +17:21:25 ============================================================================ +17:21:25 + + +waiting on router queue for slot.... +17:21:38 ============================================================================ +17:21:38 Slot Id : <250> +17:21:38 Transaction Type : REQUEST +17:21:38 Received From : +17:21:38 ============================================================================ +17:21:38 FNo. Len. Field Value +17:21:38 ============================================================================ +17:21:38 [ 1] [ 4] [0200] +17:21:38 [ 2] [ 16] [6688990100193307] +17:21:38 [ 3] [ 6] [301000] +17:21:38 [ 4] [ 12] [000000000000] +17:21:38 [ 7] [ 10] [0320172133] +17:21:38 [ 11] [ 6] [813946] +17:21:38 [ 12] [ 6] [172133] +17:21:38 [ 13] [ 4] [0320] +17:21:38 [ 15] [ 4] [0320] +17:21:38 [ 18] [ 4] [6011] +17:21:38 [ 22] [ 3] [900] +17:21:38 [ 25] [ 2] [02] +17:21:38 [ 28] [ 9] [D00000000] +17:21:38 [ 32] [ 6] [621354] +17:21:38 [ 35] [ 37] [6688990100193307=41031231330770100000] +17:21:38 [ 37] [ 12] [507904789493] +17:21:38 [ 41] [ 8] [07001400] +17:21:38 [ 42] [ 15] [NATIVE ] +17:21:38 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +17:21:38 [ 49] [ 3] [418] +17:21:38 [ 52] [ 16] [E0799764BE4E4818] +17:21:38 ============================================================================ +17:21:38 + + +waiting on router queue for slot.... +17:21:38 Sending to : +17:21:38 ============================================================================ +17:21:38 Sending to : +17:21:38 ============================================================================ +17:21:38 ============================================================================ +17:21:38 Slot Id : <250> +17:21:38 Transaction Type : REQUEST +17:21:38 Received From : +17:21:38 ============================================================================ +17:21:38 FNo. Len. Field Value +17:21:38 ============================================================================ +17:21:38 [ 1] [ 4] [0200] +17:21:38 [ 2] [ 16] [6688990100193307] +17:21:38 [ 3] [ 6] [301000] +17:21:38 [ 4] [ 12] [000000000000] +17:21:38 [ 7] [ 10] [0320172133] +17:21:38 [ 11] [ 6] [813946] +17:21:38 [ 12] [ 6] [172133] +17:21:38 [ 13] [ 4] [0320] +17:21:38 [ 15] [ 4] [0320] +17:21:38 [ 18] [ 4] [6011] +17:21:38 [ 22] [ 3] [900] +17:21:38 [ 25] [ 2] [02] +17:21:38 [ 28] [ 9] [D00000000] +17:21:38 [ 32] [ 6] [621354] +17:21:38 [ 35] [ 37] [6688990100193307=41031231330770100000] +17:21:38 [ 37] [ 12] [507904789493] +17:21:38 [ 41] [ 8] [07001400] +17:21:38 [ 42] [ 15] [NATIVE ] +17:21:38 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +17:21:38 [ 49] [ 3] [418] +17:21:38 [ 52] [ 16] [E0799764BE4E4818] +17:21:38 ============================================================================ +17:21:38 + + +waiting on router queue for slot.... +17:21:38 Sending to : +17:21:38 ============================================================================ +17:21:38 ============================================================================ +17:21:38 Slot Id : <250> +17:21:38 Transaction Type : REQUEST +17:21:38 Received From : +17:21:38 ============================================================================ +17:21:38 FNo. Len. Field Value +17:21:38 ============================================================================ +17:21:38 [ 1] [ 4] [0200] +17:21:38 [ 2] [ 16] [6688990100193307] +17:21:38 [ 3] [ 6] [301000] +17:21:38 [ 4] [ 12] [000000000000] +17:21:38 [ 7] [ 10] [0320172133] +17:21:38 [ 11] [ 6] [813946] +17:21:38 [ 12] [ 6] [172133] +17:21:38 [ 13] [ 4] [0320] +17:21:38 [ 15] [ 4] [0320] +17:21:38 [ 18] [ 4] [6011] +17:21:38 [ 22] [ 3] [900] +17:21:38 [ 25] [ 2] [02] +17:21:38 [ 28] [ 9] [D00000000] +17:21:38 [ 32] [ 6] [621354] +17:21:38 [ 35] [ 37] [6688990100193307=41031231330770100000] +17:21:38 [ 37] [ 12] [507904789493] +17:21:38 [ 41] [ 8] [07001400] +17:21:38 [ 42] [ 15] [NATIVE ] +17:21:38 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +17:21:38 [ 49] [ 3] [418] +17:21:38 [ 52] [ 16] [3558FB131647EC79] +17:21:38 ============================================================================ +17:21:38 + + +waiting on router queue for slot.... +17:21:38 Sending to : <4> +17:21:38 ============================================================================ +17:21:38 ============================================================================ +17:21:38 Slot Id : <255> +17:21:38 Transaction Type : REQUEST +17:21:38 Received From : +17:21:38 ============================================================================ +17:21:38 FNo. Len. Field Value +17:21:38 ============================================================================ +17:21:38 [ 1] [ 4] [0800] +17:21:38 [ 7] [ 10] [0320102045] +17:21:38 [ 11] [ 6] [157437] +17:21:38 [ 70] [ 3] [301] +17:21:38 ============================================================================ +17:21:38 + + +waiting on router queue for slot.... +17:21:38 Sending to : +17:21:38 ============================================================================ +17:21:38 ============================================================================ +17:21:38 Slot Id : <255> +17:21:38 Transaction Type : RESPONSE +17:21:38 Received From : +17:21:38 ============================================================================ +17:21:38 FNo. Len. Field Value +17:21:38 ============================================================================ +17:21:38 [ 1] [ 4] [0810] +17:21:38 [ 7] [ 10] [0320102045] +17:21:38 [ 11] [ 6] [157437] +17:21:38 [ 39] [ 2] [00] +17:21:38 [ 70] [ 3] [301] +17:21:38 ============================================================================ +17:21:38 Calculate Source COMM Id = 2 +17:21:38 ============================================================================ +17:21:38 + + +waiting on router queue for slot.... +17:21:39 ============================================================================ +17:21:39 Slot Id : <250> +17:21:39 Transaction Type : RESPONSE +17:21:39 Received From : +17:21:39 ============================================================================ +17:21:39 FNo. Len. Field Value +17:21:39 ============================================================================ +17:21:39 [ 1] [ 4] [0210] +17:21:39 [ 2] [ 16] [6688990100193307] +17:21:39 [ 3] [ 6] [301000] +17:21:39 [ 4] [ 12] [000000000000] +17:21:39 [ 11] [ 6] [813946] +17:21:39 [ 12] [ 6] [172133] +17:21:39 [ 15] [ 4] [0320] +17:21:39 [ 18] [ 4] [6011] +17:21:39 [ 32] [ 6] [621354] +17:21:39 [ 35] [ 37] [6688990100193307=41031231330770100000] +17:21:39 [ 37] [ 12] [507904789493] +17:21:39 [ 38] [ 6] [580788] +17:21:39 [ 39] [ 2] [00] +17:21:39 [ 41] [ 8] [07001400] +17:21:39 [ 49] [ 3] [418] +17:21:39 [ 54] [ 20] [1002418C000169846490] +17:21:39 ============================================================================ +17:21:39 Sending to : +17:21:39 ============================================================================ +17:21:39 + + +waiting on router queue for slot.... +17:21:41 ============================================================================ +17:21:41 Slot Id : <250> +17:21:41 Transaction Type : RESPONSE +17:21:41 Received From : +17:21:41 ============================================================================ +17:21:41 FNo. Len. Field Value +17:21:41 ============================================================================ +17:21:41 [ 1] [ 4] [0210] +17:21:41 [ 2] [ 16] [6688990100193307] +17:21:41 [ 3] [ 6] [301000] +17:21:41 [ 4] [ 12] [000000000000] +17:21:41 [ 11] [ 6] [813946] +17:21:41 [ 12] [ 6] [172133] +17:21:41 [ 15] [ 4] [0320] +17:21:41 [ 18] [ 4] [6011] +17:21:41 [ 32] [ 6] [621354] +17:21:41 [ 35] [ 37] [6688990100193307=41031231330770100000] +17:21:41 [ 37] [ 12] [507904789493] +17:21:41 [ 38] [ 6] [580788] +17:21:41 [ 39] [ 2] [00] +17:21:41 [ 41] [ 8] [07001400] +17:21:41 [ 49] [ 3] [418] +17:21:41 [ 54] [ 20] [1002418C000169846490] +17:21:41 ============================================================================ +17:21:41 Calculate Source COMM Id = 0 +17:21:41 ============================================================================ +17:21:41 + + +waiting on router queue for slot.... +17:21:49 ============================================================================ +17:21:49 Slot Id : <177> +17:21:49 Transaction Type : REQUEST +17:21:49 Received From : +17:21:49 ============================================================================ +17:21:49 FNo. Len. Field Value +17:21:49 ============================================================================ +17:21:49 [ 1] [ 4] [0800] +17:21:49 [ 7] [ 10] [0320102056] +17:21:49 [ 11] [ 6] [157438] +17:21:49 [ 70] [ 3] [301] +17:21:49 ============================================================================ +17:21:49 + + +waiting on router queue for slot.... +17:21:49 Sending to : +17:21:49 ============================================================================ +17:21:49 ============================================================================ +17:21:49 Slot Id : <177> +17:21:49 Transaction Type : RESPONSE +17:21:49 Received From : +17:21:49 ============================================================================ +17:21:49 FNo. Len. Field Value +17:21:49 ============================================================================ +17:21:49 [ 1] [ 4] [0810] +17:21:49 [ 7] [ 10] [0320102056] +17:21:49 [ 11] [ 6] [157438] +17:21:49 [ 39] [ 2] [00] +17:21:49 [ 70] [ 3] [301] +17:21:49 ============================================================================ +17:21:49 Calculate Source COMM Id = 2 +17:21:49 ============================================================================ +17:21:49 + + +waiting on router queue for slot.... +17:21:58 ============================================================================ +17:21:58 Slot Id : <226> +17:21:58 Transaction Type : REQUEST +17:21:58 Received From : +17:21:58 ============================================================================ +17:21:58 FNo. Len. Field Value +17:21:58 ============================================================================ +17:21:58 [ 1] [ 4] [0200] +17:21:58 [ 2] [ 16] [6213544002250964] +17:21:58 [ 3] [ 6] [011000] +17:21:58 [ 4] [ 12] [000005000000] +17:21:58 [ 7] [ 10] [0320172219] +17:21:58 [ 11] [ 6] [209475] +17:21:58 [ 12] [ 6] [171725] +17:21:58 [ 13] [ 4] [0320] +17:21:58 [ 14] [ 4] [4912] +17:21:58 [ 15] [ 4] [0320] +17:21:58 [ 18] [ 4] [6011] +17:21:58 [ 19] [ 3] [418] +17:21:58 [ 22] [ 3] [021] +17:21:58 [ 25] [ 2] [01] +17:21:58 [ 28] [ 9] [D00002000] +17:21:58 [ 32] [ 6] [198901] +17:21:58 [ 35] [ 32] [6213544002250964=491212015096983] +17:21:58 [ 37] [ 12] [507917209475] +17:21:58 [ 41] [ 8] [19529001] +17:21:58 [ 42] [ 15] [000000041952901] +17:21:58 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:21:58 [ 49] [ 3] [418] +17:21:58 [ 52] [ 16] [DBDC131BF512249D] +17:21:58 ============================================================================ +17:21:58 + + +waiting on router queue for slot.... +17:21:58 Sending to : +17:21:58 ============================================================================ +17:21:58 Sending to : +17:21:58 ============================================================================ +17:21:59 ============================================================================ +17:21:59 Slot Id : <226> +17:21:59 Transaction Type : REQUEST +17:21:59 Received From : +17:21:59 ============================================================================ +17:21:59 FNo. Len. Field Value +17:21:59 ============================================================================ +17:21:59 [ 1] [ 4] [0200] +17:21:59 [ 2] [ 16] [6213544002250964] +17:21:59 [ 3] [ 6] [011000] +17:21:59 [ 4] [ 12] [000005000000] +17:21:59 [ 7] [ 10] [0320172219] +17:21:59 [ 11] [ 6] [209475] +17:21:59 [ 12] [ 6] [171725] +17:21:59 [ 13] [ 4] [0320] +17:21:59 [ 14] [ 4] [4912] +17:21:59 [ 15] [ 4] [0320] +17:21:59 [ 18] [ 4] [6011] +17:21:59 [ 19] [ 3] [418] +17:21:59 [ 22] [ 3] [021] +17:21:59 [ 25] [ 2] [01] +17:21:59 [ 28] [ 9] [D00002000] +17:21:59 [ 32] [ 6] [198901] +17:21:59 [ 35] [ 32] [6213544002250964=491212015096983] +17:21:59 [ 37] [ 12] [507917209475] +17:21:59 [ 41] [ 8] [19529001] +17:21:59 [ 42] [ 15] [000000041952901] +17:21:59 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:21:59 [ 49] [ 3] [418] +17:21:59 [ 52] [ 16] [DBDC131BF512249D] +17:21:59 ============================================================================ +17:21:59 + + +waiting on router queue for slot.... +17:21:59 Sending to : +17:21:59 ============================================================================ +17:21:59 ============================================================================ +17:21:59 Slot Id : <226> +17:21:59 Transaction Type : REQUEST +17:21:59 Received From : +17:21:59 ============================================================================ +17:21:59 FNo. Len. Field Value +17:21:59 ============================================================================ +17:21:59 [ 1] [ 4] [0200] +17:21:59 [ 2] [ 16] [6213544002250964] +17:21:59 [ 3] [ 6] [011000] +17:21:59 [ 4] [ 12] [000005000000] +17:21:59 [ 7] [ 10] [0320172219] +17:21:59 [ 11] [ 6] [209475] +17:21:59 [ 12] [ 6] [171725] +17:21:59 [ 13] [ 4] [0320] +17:21:59 [ 14] [ 4] [4912] +17:21:59 [ 15] [ 4] [0320] +17:21:59 [ 18] [ 4] [6011] +17:21:59 [ 19] [ 3] [418] +17:21:59 [ 22] [ 3] [021] +17:21:59 [ 25] [ 2] [01] +17:21:59 [ 28] [ 9] [D00002000] +17:21:59 [ 32] [ 6] [198901] +17:21:59 [ 35] [ 32] [6213544002250964=491212015096983] +17:21:59 [ 37] [ 12] [507917209475] +17:21:59 [ 41] [ 8] [19529001] +17:21:59 [ 42] [ 15] [000000041952901] +17:21:59 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:21:59 [ 49] [ 3] [418] +17:21:59 [ 52] [ 16] [3F113203B1873444] +17:21:59 ============================================================================ +17:21:59 + + +waiting on router queue for slot.... +17:21:59 Sending to : <0> +17:21:59 ============================================================================ +17:21:59 ============================================================================ +17:21:59 Slot Id : <226> +17:21:59 Transaction Type : RESPONSE +17:21:59 Received From : +17:21:59 ============================================================================ +17:21:59 FNo. Len. Field Value +17:21:59 ============================================================================ +17:21:59 [ 1] [ 4] [0210] +17:21:59 [ 2] [ 16] [6213544002250964] +17:21:59 [ 3] [ 6] [011000] +17:21:59 [ 4] [ 12] [000005000000] +17:21:59 [ 7] [ 10] [0320172219] +17:21:59 [ 11] [ 6] [209475] +17:21:59 [ 12] [ 6] [171725] +17:21:59 [ 13] [ 4] [0320] +17:21:59 [ 15] [ 4] [0320] +17:21:59 [ 18] [ 4] [6011] +17:21:59 [ 19] [ 3] [418] +17:21:59 [ 32] [ 6] [198901] +17:21:59 [ 35] [ 32] [6213544002250964=491212015096983] +17:21:59 [ 37] [ 12] [507917209475] +17:21:59 [ 38] [ 6] [209475] +17:21:59 [ 39] [ 2] [51] +17:21:59 [ 41] [ 8] [19529001] +17:21:59 [ 49] [ 3] [418] +17:21:59 [ 54] [ 40] [1001418C0000084187501002418C000008418750] +17:21:59 ============================================================================ +17:21:59 Sending to : +17:21:59 ============================================================================ +17:21:59 + + +waiting on router queue for slot.... +17:22:00 ============================================================================ +17:22:00 Slot Id : <226> +17:22:00 Transaction Type : RESPONSE +17:22:00 Received From : +17:22:00 ============================================================================ +17:22:00 FNo. Len. Field Value +17:22:00 ============================================================================ +17:22:00 [ 1] [ 4] [0210] +17:22:00 [ 2] [ 16] [6213544002250964] +17:22:00 [ 3] [ 6] [011000] +17:22:00 [ 4] [ 12] [000005000000] +17:22:00 [ 7] [ 10] [0320172219] +17:22:00 [ 11] [ 6] [209475] +17:22:00 [ 12] [ 6] [171725] +17:22:00 [ 13] [ 4] [0320] +17:22:00 [ 15] [ 4] [0320] +17:22:00 [ 18] [ 4] [6011] +17:22:00 [ 19] [ 3] [418] +17:22:00 [ 32] [ 6] [198901] +17:22:00 [ 35] [ 32] [6213544002250964=491212015096983] +17:22:00 [ 37] [ 12] [507917209475] +17:22:00 [ 38] [ 6] [209475] +17:22:00 [ 39] [ 2] [51] +17:22:00 [ 41] [ 8] [19529001] +17:22:00 [ 49] [ 3] [418] +17:22:00 [ 54] [ 40] [1001418C0000084187501002418C000008418750] +17:22:00 ============================================================================ +17:22:00 Calculate Source COMM Id = 5 +17:22:00 ============================================================================ +17:22:00 + + +waiting on router queue for slot.... +17:22:04 ============================================================================ +17:22:04 Slot Id : <233> +17:22:04 Transaction Type : REQUEST +17:22:04 Received From : +17:22:04 ============================================================================ +17:22:04 FNo. Len. Field Value +17:22:04 ============================================================================ +17:22:04 [ 1] [ 4] [0800] +17:22:04 [ 7] [ 10] [0320102111] +17:22:04 [ 11] [ 6] [157439] +17:22:04 [ 70] [ 3] [301] +17:22:04 ============================================================================ +17:22:04 + + +waiting on router queue for slot.... +17:22:04 Sending to : +17:22:04 ============================================================================ +17:22:04 ============================================================================ +17:22:04 Slot Id : <233> +17:22:04 Transaction Type : RESPONSE +17:22:04 Received From : +17:22:04 ============================================================================ +17:22:04 FNo. Len. Field Value +17:22:04 ============================================================================ +17:22:04 [ 1] [ 4] [0810] +17:22:04 [ 7] [ 10] [0320102111] +17:22:04 [ 11] [ 6] [157439] +17:22:04 [ 39] [ 2] [00] +17:22:04 [ 70] [ 3] [301] +17:22:04 ============================================================================ +17:22:04 Calculate Source COMM Id = 2 +17:22:04 ============================================================================ +17:22:04 + + +waiting on router queue for slot.... +17:22:05 ============================================================================ +17:22:05 Slot Id : <237> +17:22:05 Transaction Type : REQUEST +17:22:05 Received From : +17:22:05 ============================================================================ +17:22:05 FNo. Len. Field Value +17:22:05 ============================================================================ +17:22:05 [ 1] [ 4] [0800] +17:22:05 [ 7] [ 10] [0321003354] +17:22:05 [ 11] [ 6] [173354] +17:22:05 [ 37] [ 12] [57917173354] +17:22:05 [ 70] [ 3] [301] +17:22:05 ============================================================================ +17:22:05 + + +waiting on router queue for slot.... +17:22:05 Sending to : +17:22:05 ============================================================================ +17:22:05 ============================================================================ +17:22:05 Slot Id : <237> +17:22:05 Transaction Type : RESPONSE +17:22:05 Received From : +17:22:05 ============================================================================ +17:22:05 FNo. Len. Field Value +17:22:05 ============================================================================ +17:22:05 [ 1] [ 4] [0810] +17:22:05 [ 7] [ 10] [0321003354] +17:22:05 [ 11] [ 6] [173354] +17:22:05 [ 37] [ 12] [579171733540] +17:22:05 [ 39] [ 2] [00] +17:22:05 [ 70] [ 3] [810] +17:22:05 ============================================================================ +17:22:05 Calculate Source COMM Id = 6 +17:22:05 ============================================================================ +17:22:05 + + +waiting on router queue for slot.... +17:22:12 ============================================================================ +17:22:12 Slot Id : <200> +17:22:12 Transaction Type : REQUEST +17:22:12 Received From : +17:22:12 ============================================================================ +17:22:12 FNo. Len. Field Value +17:22:12 ============================================================================ +17:22:12 [ 1] [ 4] [0200] +17:22:12 [ 2] [ 16] [6213544001473161] +17:22:12 [ 3] [ 6] [010000] +17:22:12 [ 4] [ 12] [000053000000] +17:22:12 [ 7] [ 10] [0320172959] +17:22:12 [ 11] [ 6] [240516] +17:22:12 [ 12] [ 6] [172959] +17:22:12 [ 13] [ 4] [0320] +17:22:12 [ 14] [ 4] [4912] +17:22:12 [ 15] [ 4] [0320] +17:22:12 [ 18] [ 4] [6011] +17:22:12 [ 22] [ 3] [900] +17:22:12 [ 25] [ 2] [02] +17:22:12 [ 28] [ 9] [D00002000] +17:22:12 [ 32] [ 6] [220699] +17:22:12 [ 35] [ 32] [6213544001473161=491212017316609] +17:22:12 [ 37] [ 12] [507900360251] +17:22:12 [ 41] [ 8] [05000300] +17:22:12 [ 42] [ 15] [APTRA ] +17:22:12 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:22:12 [ 49] [ 3] [418] +17:22:12 [ 52] [ 16] [DC366A9C2A83ED8B] +17:22:12 ============================================================================ +17:22:12 + + +waiting on router queue for slot.... +17:22:12 Sending to : +17:22:12 ============================================================================ +17:22:12 Sending to : +17:22:12 ============================================================================ +17:22:12 ============================================================================ +17:22:12 Slot Id : <200> +17:22:12 Transaction Type : REQUEST +17:22:12 Received From : +17:22:12 ============================================================================ +17:22:12 FNo. Len. Field Value +17:22:12 ============================================================================ +17:22:12 [ 1] [ 4] [0200] +17:22:12 [ 2] [ 16] [6213544001473161] +17:22:12 [ 3] [ 6] [010000] +17:22:12 [ 4] [ 12] [000053000000] +17:22:12 [ 7] [ 10] [0320172959] +17:22:12 [ 11] [ 6] [240516] +17:22:12 [ 12] [ 6] [172959] +17:22:12 [ 13] [ 4] [0320] +17:22:12 [ 14] [ 4] [4912] +17:22:12 [ 15] [ 4] [0320] +17:22:12 [ 18] [ 4] [6011] +17:22:12 [ 22] [ 3] [900] +17:22:12 [ 25] [ 2] [02] +17:22:12 [ 28] [ 9] [D00002000] +17:22:12 [ 32] [ 6] [220699] +17:22:12 [ 35] [ 32] [6213544001473161=491212017316609] +17:22:12 [ 37] [ 12] [507900360251] +17:22:12 [ 41] [ 8] [05000300] +17:22:12 [ 42] [ 15] [APTRA ] +17:22:12 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:22:12 [ 49] [ 3] [418] +17:22:12 [ 52] [ 16] [DC366A9C2A83ED8B] +17:22:12 ============================================================================ +17:22:12 + + +waiting on router queue for slot.... +17:22:12 Sending to : +17:22:12 ============================================================================ +17:22:12 ============================================================================ +17:22:12 Slot Id : <200> +17:22:12 Transaction Type : REQUEST +17:22:12 Received From : +17:22:12 ============================================================================ +17:22:12 FNo. Len. Field Value +17:22:12 ============================================================================ +17:22:12 [ 1] [ 4] [0200] +17:22:12 [ 2] [ 16] [6213544001473161] +17:22:12 [ 3] [ 6] [010000] +17:22:12 [ 4] [ 12] [000053000000] +17:22:12 [ 7] [ 10] [0320172959] +17:22:12 [ 11] [ 6] [240516] +17:22:12 [ 12] [ 6] [172959] +17:22:12 [ 13] [ 4] [0320] +17:22:12 [ 14] [ 4] [4912] +17:22:12 [ 15] [ 4] [0320] +17:22:12 [ 18] [ 4] [6011] +17:22:12 [ 22] [ 3] [900] +17:22:12 [ 25] [ 2] [02] +17:22:12 [ 28] [ 9] [D00002000] +17:22:12 [ 32] [ 6] [220699] +17:22:12 [ 35] [ 32] [6213544001473161=491212017316609] +17:22:12 [ 37] [ 12] [507900360251] +17:22:12 [ 41] [ 8] [05000300] +17:22:12 [ 42] [ 15] [APTRA ] +17:22:12 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:22:12 [ 49] [ 3] [418] +17:22:12 [ 52] [ 16] [D8967761AEEBAB50] +17:22:12 ============================================================================ +17:22:12 + + +waiting on router queue for slot.... +17:22:12 Sending to : <0> +17:22:12 ============================================================================ +17:22:13 ============================================================================ +17:22:13 Slot Id : <200> +17:22:13 Transaction Type : RESPONSE +17:22:13 Received From : +17:22:13 ============================================================================ +17:22:13 FNo. Len. Field Value +17:22:13 ============================================================================ +17:22:13 [ 1] [ 4] [0210] +17:22:13 [ 2] [ 16] [6213544001473161] +17:22:13 [ 3] [ 6] [010000] +17:22:13 [ 4] [ 12] [000053000000] +17:22:13 [ 7] [ 10] [0320172959] +17:22:13 [ 11] [ 6] [240516] +17:22:13 [ 12] [ 6] [172959] +17:22:13 [ 13] [ 4] [0320] +17:22:13 [ 15] [ 4] [0320] +17:22:13 [ 18] [ 4] [6011] +17:22:13 [ 32] [ 6] [220699] +17:22:13 [ 35] [ 32] [6213544001473161=491212017316609] +17:22:13 [ 37] [ 12] [507900360251] +17:22:13 [ 38] [ 6] [894320] +17:22:13 [ 39] [ 2] [00] +17:22:13 [ 41] [ 8] [05000300] +17:22:13 [ 49] [ 3] [418] +17:22:13 [ 54] [ 40] [0001418C0000055855130002418C000005585513] +17:22:13 ============================================================================ +17:22:13 Sending to : +17:22:13 ============================================================================ +17:22:13 + + +waiting on router queue for slot.... +17:22:14 ============================================================================ +17:22:14 Slot Id : <200> +17:22:14 Transaction Type : RESPONSE +17:22:14 Received From : +17:22:14 ============================================================================ +17:22:14 FNo. Len. Field Value +17:22:14 ============================================================================ +17:22:14 [ 1] [ 4] [0210] +17:22:14 [ 2] [ 16] [6213544001473161] +17:22:14 [ 3] [ 6] [010000] +17:22:14 [ 4] [ 12] [000053000000] +17:22:14 [ 7] [ 10] [0320172959] +17:22:14 [ 11] [ 6] [240516] +17:22:14 [ 12] [ 6] [172959] +17:22:14 [ 13] [ 4] [0320] +17:22:14 [ 15] [ 4] [0320] +17:22:14 [ 18] [ 4] [6011] +17:22:14 [ 32] [ 6] [220699] +17:22:14 [ 35] [ 32] [6213544001473161=491212017316609] +17:22:14 [ 37] [ 12] [507900360251] +17:22:14 [ 38] [ 6] [894320] +17:22:14 [ 39] [ 2] [00] +17:22:14 [ 41] [ 8] [05000300] +17:22:14 [ 49] [ 3] [418] +17:22:14 [ 54] [ 40] [0001418C0000055855130002418C000005585513] +17:22:14 ============================================================================ +17:22:14 Calculate Source COMM Id = 1 +17:22:14 ============================================================================ +17:22:14 + + +waiting on router queue for slot.... +17:22:15 ============================================================================ +17:22:15 Slot Id : <238> +17:22:15 Transaction Type : REQUEST +17:22:15 Received From : +17:22:15 ============================================================================ +17:22:15 FNo. Len. Field Value +17:22:15 ============================================================================ +17:22:15 [ 1] [ 4] [0800] +17:22:15 [ 2] [ 5] [02531] +17:22:15 [ 3] [ 6] [579178] +17:22:15 [ 7] [ 10] [0320102215] +17:22:15 [ 11] [ 6] [807420] +17:22:15 [ 15] [ 10] [0320102215] +17:22:15 [ 37] [ 11] [57917807420] +17:22:15 [ 70] [ 3] [001] +17:22:15 ============================================================================ +17:22:15 + + +waiting on router queue for slot.... +17:22:15 ============================================================================ +17:22:15 Slot Id : <238> +17:22:15 Transaction Type : RESPONSE +17:22:15 Received From : +17:22:15 ============================================================================ +17:22:15 FNo. Len. Field Value +17:22:15 ============================================================================ +17:22:15 [ 1] [ 4] [0810] +17:22:15 [ 7] [ 10] [0320102215] +17:22:15 [ 11] [ 6] [807420] +17:22:15 [ 15] [ 4] [0320] +17:22:15 [ 37] [ 12] [57917807420] +17:22:15 [ 39] [ 2] [00] +17:22:15 [ 70] [ 3] [001] +17:22:15 ============================================================================ +17:22:15 Sending to : +17:22:15 ============================================================================ +17:22:15 + + +waiting on router queue for slot.... +17:22:17 ============================================================================ +17:22:17 Slot Id : <260> +17:22:17 Transaction Type : REQUEST +17:22:17 Received From : +17:22:17 ============================================================================ +17:22:17 FNo. Len. Field Value +17:22:17 ============================================================================ +17:22:17 [ 1] [ 4] [0800] +17:22:17 [ 7] [ 10] [0320102122] +17:22:17 [ 11] [ 6] [157440] +17:22:17 [ 70] [ 3] [301] +17:22:17 ============================================================================ +17:22:17 + + +waiting on router queue for slot.... +17:22:17 Sending to : +17:22:17 ============================================================================ +17:22:17 ============================================================================ +17:22:17 Slot Id : <260> +17:22:17 Transaction Type : RESPONSE +17:22:17 Received From : +17:22:17 ============================================================================ +17:22:17 FNo. Len. Field Value +17:22:17 ============================================================================ +17:22:17 [ 1] [ 4] [0810] +17:22:17 [ 7] [ 10] [0320102122] +17:22:17 [ 11] [ 6] [157440] +17:22:17 [ 39] [ 2] [00] +17:22:17 [ 70] [ 3] [301] +17:22:17 ============================================================================ +17:22:17 Calculate Source COMM Id = 2 +17:22:17 ============================================================================ +17:22:17 + + +waiting on router queue for slot.... +17:22:18 ============================================================================ +17:22:18 Slot Id : <234> +17:22:18 Transaction Type : REQUEST +17:22:18 Received From : +17:22:18 ============================================================================ +17:22:18 FNo. Len. Field Value +17:22:18 ============================================================================ +17:22:18 [ 1] [ 4] [0200] +17:22:18 [ 2] [ 16] [6213544002250964] +17:22:18 [ 3] [ 6] [301000] +17:22:18 [ 4] [ 12] [000000000000] +17:22:18 [ 7] [ 10] [0320172238] +17:22:18 [ 11] [ 6] [209476] +17:22:18 [ 12] [ 6] [171744] +17:22:18 [ 13] [ 4] [0320] +17:22:18 [ 14] [ 4] [4912] +17:22:18 [ 15] [ 4] [0320] +17:22:18 [ 18] [ 4] [6011] +17:22:18 [ 19] [ 3] [418] +17:22:18 [ 22] [ 3] [021] +17:22:18 [ 25] [ 2] [01] +17:22:18 [ 28] [ 9] [D00000000] +17:22:18 [ 32] [ 6] [198901] +17:22:18 [ 35] [ 32] [6213544002250964=491212015096983] +17:22:18 [ 37] [ 12] [507917209476] +17:22:18 [ 41] [ 8] [19529001] +17:22:18 [ 42] [ 15] [000000041952901] +17:22:18 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:22:18 [ 49] [ 3] [418] +17:22:18 [ 52] [ 16] [DBDC131BF512249D] +17:22:18 ============================================================================ +17:22:18 + + +waiting on router queue for slot.... +17:22:18 Sending to : +17:22:18 ============================================================================ +17:22:18 Sending to : +17:22:18 ============================================================================ +17:22:18 ============================================================================ +17:22:18 Slot Id : <234> +17:22:18 Transaction Type : REQUEST +17:22:18 Received From : +17:22:18 ============================================================================ +17:22:18 FNo. Len. Field Value +17:22:18 ============================================================================ +17:22:18 [ 1] [ 4] [0200] +17:22:18 [ 2] [ 16] [6213544002250964] +17:22:18 [ 3] [ 6] [301000] +17:22:18 [ 4] [ 12] [000000000000] +17:22:18 [ 7] [ 10] [0320172238] +17:22:18 [ 11] [ 6] [209476] +17:22:18 [ 12] [ 6] [171744] +17:22:18 [ 13] [ 4] [0320] +17:22:18 [ 14] [ 4] [4912] +17:22:18 [ 15] [ 4] [0320] +17:22:18 [ 18] [ 4] [6011] +17:22:18 [ 19] [ 3] [418] +17:22:18 [ 22] [ 3] [021] +17:22:18 [ 25] [ 2] [01] +17:22:18 [ 28] [ 9] [D00000000] +17:22:18 [ 32] [ 6] [198901] +17:22:18 [ 35] [ 32] [6213544002250964=491212015096983] +17:22:18 [ 37] [ 12] [507917209476] +17:22:18 [ 41] [ 8] [19529001] +17:22:18 [ 42] [ 15] [000000041952901] +17:22:18 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:22:18 [ 49] [ 3] [418] +17:22:18 [ 52] [ 16] [DBDC131BF512249D] +17:22:18 ============================================================================ +17:22:18 + + +waiting on router queue for slot.... +17:22:18 Sending to : +17:22:18 ============================================================================ +17:22:18 ============================================================================ +17:22:18 Slot Id : <234> +17:22:18 Transaction Type : REQUEST +17:22:18 Received From : +17:22:18 ============================================================================ +17:22:18 FNo. Len. Field Value +17:22:18 ============================================================================ +17:22:18 [ 1] [ 4] [0200] +17:22:18 [ 2] [ 16] [6213544002250964] +17:22:18 [ 3] [ 6] [301000] +17:22:18 [ 4] [ 12] [000000000000] +17:22:18 [ 7] [ 10] [0320172238] +17:22:18 [ 11] [ 6] [209476] +17:22:18 [ 12] [ 6] [171744] +17:22:18 [ 13] [ 4] [0320] +17:22:18 [ 14] [ 4] [4912] +17:22:18 [ 15] [ 4] [0320] +17:22:18 [ 18] [ 4] [6011] +17:22:18 [ 19] [ 3] [418] +17:22:18 [ 22] [ 3] [021] +17:22:18 [ 25] [ 2] [01] +17:22:18 [ 28] [ 9] [D00000000] +17:22:18 [ 32] [ 6] [198901] +17:22:18 [ 35] [ 32] [6213544002250964=491212015096983] +17:22:18 [ 37] [ 12] [507917209476] +17:22:18 [ 41] [ 8] [19529001] +17:22:18 [ 42] [ 15] [000000041952901] +17:22:18 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:22:18 [ 49] [ 3] [418] +17:22:18 [ 52] [ 16] [3F113203B1873444] +17:22:18 ============================================================================ +17:22:18 + + +waiting on router queue for slot.... +17:22:18 Sending to : <0> +17:22:18 ============================================================================ +17:22:18 ============================================================================ +17:22:18 Slot Id : <234> +17:22:18 Transaction Type : RESPONSE +17:22:18 Received From : +17:22:18 ============================================================================ +17:22:18 FNo. Len. Field Value +17:22:18 ============================================================================ +17:22:18 [ 1] [ 4] [0210] +17:22:18 [ 2] [ 16] [6213544002250964] +17:22:18 [ 3] [ 6] [301000] +17:22:18 [ 4] [ 12] [000000000000] +17:22:18 [ 7] [ 10] [0320172238] +17:22:18 [ 11] [ 6] [209476] +17:22:18 [ 12] [ 6] [171744] +17:22:18 [ 13] [ 4] [0320] +17:22:18 [ 15] [ 4] [0320] +17:22:18 [ 18] [ 4] [6011] +17:22:18 [ 19] [ 3] [418] +17:22:18 [ 32] [ 6] [198901] +17:22:18 [ 35] [ 32] [6213544002250964=491212015096983] +17:22:18 [ 37] [ 12] [507917209476] +17:22:18 [ 38] [ 6] [534499] +17:22:18 [ 39] [ 2] [00] +17:22:18 [ 41] [ 8] [19529001] +17:22:18 [ 49] [ 3] [418] +17:22:18 [ 54] [ 40] [1001418C0000084187501002418C000008418750] +17:22:18 ============================================================================ +17:22:18 Sending to : +17:22:18 ============================================================================ +17:22:18 + + +waiting on router queue for slot.... +17:22:20 ============================================================================ +17:22:20 Slot Id : <234> +17:22:20 Transaction Type : RESPONSE +17:22:20 Received From : +17:22:20 ============================================================================ +17:22:20 FNo. Len. Field Value +17:22:20 ============================================================================ +17:22:20 [ 1] [ 4] [0210] +17:22:20 [ 2] [ 16] [6213544002250964] +17:22:20 [ 3] [ 6] [301000] +17:22:20 [ 4] [ 12] [000000000000] +17:22:20 [ 7] [ 10] [0320172238] +17:22:20 [ 11] [ 6] [209476] +17:22:20 [ 12] [ 6] [171744] +17:22:20 [ 13] [ 4] [0320] +17:22:20 [ 15] [ 4] [0320] +17:22:20 [ 18] [ 4] [6011] +17:22:20 [ 19] [ 3] [418] +17:22:20 [ 32] [ 6] [198901] +17:22:20 [ 35] [ 32] [6213544002250964=491212015096983] +17:22:20 [ 37] [ 12] [507917209476] +17:22:20 [ 38] [ 6] [534499] +17:22:20 [ 39] [ 2] [00] +17:22:20 [ 41] [ 8] [19529001] +17:22:20 [ 49] [ 3] [418] +17:22:20 [ 54] [ 40] [1001418C0000084187501002418C000008418750] +17:22:20 ============================================================================ +17:22:20 Calculate Source COMM Id = 5 +17:22:20 ============================================================================ +17:22:20 + + +waiting on router queue for slot.... +17:22:25 ============================================================================ +17:22:25 Slot Id : <253> +17:22:25 Transaction Type : REQUEST +17:22:25 Received From : +17:22:25 ============================================================================ +17:22:25 FNo. Len. Field Value +17:22:25 ============================================================================ +17:22:25 [ 1] [ 4] [0200] +17:22:25 [ 2] [ 16] [6213545000513212] +17:22:25 [ 3] [ 6] [010000] +17:22:25 [ 4] [ 12] [000100000000] +17:22:25 [ 7] [ 10] [0320102132] +17:22:25 [ 11] [ 6] [270827] +17:22:25 [ 12] [ 6] [172132] +17:22:25 [ 13] [ 4] [0320] +17:22:25 [ 14] [ 4] [4912] +17:22:25 [ 15] [ 4] [0320] +17:22:25 [ 18] [ 4] [6011] +17:22:25 [ 19] [ 3] [418] +17:22:25 [ 22] [ 3] [021] +17:22:25 [ 25] [ 2] [01] +17:22:25 [ 28] [ 9] [D00002000] +17:22:25 [ 32] [ 6] [180893] +17:22:25 [ 35] [ 32] [6213545000513212=491212011321132] +17:22:25 [ 37] [ 12] [507910270827] +17:22:25 [ 41] [ 8] [0401XSBR] +17:22:25 [ 42] [ 15] [999999 ] +17:22:25 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +17:22:25 [ 49] [ 3] [418] +17:22:25 [ 52] [ 16] [3CCF95E999FEAD3A] +17:22:25 ============================================================================ +17:22:25 + + +waiting on router queue for slot.... +17:22:25 Sending to : +17:22:25 ============================================================================ +17:22:25 Sending to : +17:22:25 ============================================================================ +17:22:26 ============================================================================ +17:22:26 Slot Id : <253> +17:22:26 Transaction Type : REQUEST +17:22:26 Received From : +17:22:26 ============================================================================ +17:22:26 FNo. Len. Field Value +17:22:26 ============================================================================ +17:22:26 [ 1] [ 4] [0200] +17:22:26 [ 2] [ 16] [6213545000513212] +17:22:26 [ 3] [ 6] [010000] +17:22:26 [ 4] [ 12] [000100000000] +17:22:26 [ 7] [ 10] [0320102132] +17:22:26 [ 11] [ 6] [270827] +17:22:26 [ 12] [ 6] [172132] +17:22:26 [ 13] [ 4] [0320] +17:22:26 [ 14] [ 4] [4912] +17:22:26 [ 15] [ 4] [0320] +17:22:26 [ 18] [ 4] [6011] +17:22:26 [ 19] [ 3] [418] +17:22:26 [ 22] [ 3] [021] +17:22:26 [ 25] [ 2] [01] +17:22:26 [ 28] [ 9] [D00002000] +17:22:26 [ 32] [ 6] [180893] +17:22:26 [ 35] [ 32] [6213545000513212=491212011321132] +17:22:26 [ 37] [ 12] [507910270827] +17:22:26 [ 41] [ 8] [0401XSBR] +17:22:26 [ 42] [ 15] [999999 ] +17:22:26 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +17:22:26 [ 49] [ 3] [418] +17:22:26 [ 52] [ 16] [3CCF95E999FEAD3A] +17:22:26 ============================================================================ +17:22:26 + + +waiting on router queue for slot.... +17:22:26 Sending to : +17:22:26 ============================================================================ +17:22:26 ============================================================================ +17:22:26 Slot Id : <253> +17:22:26 Transaction Type : REQUEST +17:22:26 Received From : +17:22:26 ============================================================================ +17:22:26 FNo. Len. Field Value +17:22:26 ============================================================================ +17:22:26 [ 1] [ 4] [0200] +17:22:26 [ 2] [ 16] [6213545000513212] +17:22:26 [ 3] [ 6] [010000] +17:22:26 [ 4] [ 12] [000100000000] +17:22:26 [ 7] [ 10] [0320102132] +17:22:26 [ 11] [ 6] [270827] +17:22:26 [ 12] [ 6] [172132] +17:22:26 [ 13] [ 4] [0320] +17:22:26 [ 14] [ 4] [4912] +17:22:26 [ 15] [ 4] [0320] +17:22:26 [ 18] [ 4] [6011] +17:22:26 [ 19] [ 3] [418] +17:22:26 [ 22] [ 3] [021] +17:22:26 [ 25] [ 2] [01] +17:22:26 [ 28] [ 9] [D00002000] +17:22:26 [ 32] [ 6] [180893] +17:22:26 [ 35] [ 32] [6213545000513212=491212011321132] +17:22:26 [ 37] [ 12] [507910270827] +17:22:26 [ 41] [ 8] [0401XSBR] +17:22:26 [ 42] [ 15] [999999 ] +17:22:26 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +17:22:26 [ 49] [ 3] [418] +17:22:26 [ 52] [ 16] [447B27E163E1DBB3] +17:22:26 ============================================================================ +17:22:26 + + +waiting on router queue for slot.... +17:22:26 Sending to : <0> +17:22:26 ============================================================================ +17:22:26 ============================================================================ +17:22:26 Slot Id : <253> +17:22:26 Transaction Type : RESPONSE +17:22:26 Received From : +17:22:26 ============================================================================ +17:22:26 FNo. Len. Field Value +17:22:26 ============================================================================ +17:22:26 [ 1] [ 4] [0210] +17:22:26 [ 2] [ 16] [6213545000513212] +17:22:26 [ 3] [ 6] [010000] +17:22:26 [ 4] [ 12] [000100000000] +17:22:26 [ 7] [ 10] [0320102132] +17:22:26 [ 11] [ 6] [270827] +17:22:26 [ 12] [ 6] [172132] +17:22:26 [ 13] [ 4] [0320] +17:22:26 [ 15] [ 4] [0320] +17:22:26 [ 18] [ 4] [6011] +17:22:26 [ 19] [ 3] [418] +17:22:26 [ 32] [ 6] [180893] +17:22:26 [ 35] [ 32] [6213545000513212=491212011321132] +17:22:26 [ 37] [ 12] [507910270827] +17:22:26 [ 38] [ 6] [157871] +17:22:26 [ 39] [ 2] [00] +17:22:26 [ 41] [ 8] [0401XSBR] +17:22:26 [ 49] [ 3] [418] +17:22:26 [ 54] [ 40] [0001418C0001279246600002418C000127924660] +17:22:26 ============================================================================ +17:22:26 Sending to : +17:22:26 ============================================================================ +17:22:26 + + +waiting on router queue for slot.... +17:22:27 ============================================================================ +17:22:27 Slot Id : <216> +17:22:27 Transaction Type : REQUEST +17:22:27 Received From : +17:22:27 ============================================================================ +17:22:27 FNo. Len. Field Value +17:22:27 ============================================================================ +17:22:27 [ 1] [ 4] [0200] +17:22:27 [ 2] [ 16] [6688990101624706] +17:22:27 [ 3] [ 6] [301000] +17:22:27 [ 4] [ 12] [000000000000] +17:22:27 [ 7] [ 10] [0320172222] +17:22:27 [ 11] [ 6] [814187] +17:22:27 [ 12] [ 6] [172222] +17:22:27 [ 13] [ 4] [0320] +17:22:27 [ 15] [ 4] [0320] +17:22:27 [ 18] [ 4] [6011] +17:22:27 [ 22] [ 3] [900] +17:22:27 [ 25] [ 2] [02] +17:22:27 [ 28] [ 9] [D00000000] +17:22:27 [ 32] [ 6] [621354] +17:22:27 [ 35] [ 37] [6688990101624706=42041231470691300000] +17:22:27 [ 37] [ 12] [507904789494] +17:22:27 [ 41] [ 8] [07001400] +17:22:27 [ 42] [ 15] [NATIVE ] +17:22:27 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +17:22:27 [ 49] [ 3] [418] +17:22:27 [ 52] [ 16] [7C6B50B1B9C8FCCB] +17:22:27 ============================================================================ +17:22:27 + + +waiting on router queue for slot.... +17:22:27 Sending to : +17:22:27 ============================================================================ +17:22:27 Sending to : +17:22:27 ============================================================================ +17:22:27 ============================================================================ +17:22:27 Slot Id : <216> +17:22:27 Transaction Type : REQUEST +17:22:27 Received From : +17:22:27 ============================================================================ +17:22:27 FNo. Len. Field Value +17:22:27 ============================================================================ +17:22:27 [ 1] [ 4] [0200] +17:22:27 [ 2] [ 16] [6688990101624706] +17:22:27 [ 3] [ 6] [301000] +17:22:27 [ 4] [ 12] [000000000000] +17:22:27 [ 7] [ 10] [0320172222] +17:22:27 [ 11] [ 6] [814187] +17:22:27 [ 12] [ 6] [172222] +17:22:27 [ 13] [ 4] [0320] +17:22:27 [ 15] [ 4] [0320] +17:22:27 [ 18] [ 4] [6011] +17:22:27 [ 22] [ 3] [900] +17:22:27 [ 25] [ 2] [02] +17:22:27 [ 28] [ 9] [D00000000] +17:22:27 [ 32] [ 6] [621354] +17:22:27 [ 35] [ 37] [6688990101624706=42041231470691300000] +17:22:27 [ 37] [ 12] [507904789494] +17:22:27 [ 41] [ 8] [07001400] +17:22:27 [ 42] [ 15] [NATIVE ] +17:22:27 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +17:22:27 [ 49] [ 3] [418] +17:22:27 [ 52] [ 16] [7C6B50B1B9C8FCCB] +17:22:27 ============================================================================ +17:22:27 + + +waiting on router queue for slot.... +17:22:27 Sending to : +17:22:27 ============================================================================ +17:22:27 ============================================================================ +17:22:27 Slot Id : <216> +17:22:27 Transaction Type : REQUEST +17:22:27 Received From : +17:22:27 ============================================================================ +17:22:27 FNo. Len. Field Value +17:22:27 ============================================================================ +17:22:27 [ 1] [ 4] [0200] +17:22:27 [ 2] [ 16] [6688990101624706] +17:22:27 [ 3] [ 6] [301000] +17:22:27 [ 4] [ 12] [000000000000] +17:22:27 [ 7] [ 10] [0320172222] +17:22:27 [ 11] [ 6] [814187] +17:22:27 [ 12] [ 6] [172222] +17:22:27 [ 13] [ 4] [0320] +17:22:27 [ 15] [ 4] [0320] +17:22:27 [ 18] [ 4] [6011] +17:22:27 [ 22] [ 3] [900] +17:22:27 [ 25] [ 2] [02] +17:22:27 [ 28] [ 9] [D00000000] +17:22:27 [ 32] [ 6] [621354] +17:22:27 [ 35] [ 37] [6688990101624706=42041231470691300000] +17:22:27 [ 37] [ 12] [507904789494] +17:22:27 [ 41] [ 8] [07001400] +17:22:27 [ 42] [ 15] [NATIVE ] +17:22:27 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +17:22:27 [ 49] [ 3] [418] +17:22:27 [ 52] [ 16] [4A52107C7C6A507D] +17:22:27 ============================================================================ +17:22:27 + + +waiting on router queue for slot.... +17:22:27 Sending to : <4> +17:22:27 ============================================================================ +17:22:28 ============================================================================ +17:22:28 Slot Id : <216> +17:22:28 Transaction Type : RESPONSE +17:22:28 Received From : +17:22:28 ============================================================================ +17:22:28 FNo. Len. Field Value +17:22:28 ============================================================================ +17:22:28 [ 1] [ 4] [0210] +17:22:28 [ 2] [ 16] [6688990101624706] +17:22:28 [ 3] [ 6] [301000] +17:22:28 [ 4] [ 12] [000000000000] +17:22:28 [ 11] [ 6] [814187] +17:22:28 [ 12] [ 6] [172222] +17:22:28 [ 15] [ 4] [0320] +17:22:28 [ 18] [ 4] [6011] +17:22:28 [ 32] [ 6] [621354] +17:22:28 [ 35] [ 37] [6688990101624706=42041231470691300000] +17:22:28 [ 37] [ 12] [507904789494] +17:22:28 [ 38] [ 6] [458051] +17:22:28 [ 39] [ 2] [00] +17:22:28 [ 41] [ 8] [07001400] +17:22:28 [ 49] [ 3] [418] +17:22:28 [ 54] [ 20] [1002418C000322453296] +17:22:28 ============================================================================ +17:22:28 Sending to : +17:22:28 ============================================================================ +17:22:28 + + +waiting on router queue for slot.... +17:22:28 ============================================================================ +17:22:28 Slot Id : <253> +17:22:28 Transaction Type : RESPONSE +17:22:28 Received From : +17:22:28 ============================================================================ +17:22:28 FNo. Len. Field Value +17:22:28 ============================================================================ +17:22:28 [ 1] [ 4] [0210] +17:22:28 [ 2] [ 16] [6213545000513212] +17:22:28 [ 3] [ 6] [010000] +17:22:28 [ 4] [ 12] [000100000000] +17:22:28 [ 7] [ 10] [0320102132] +17:22:28 [ 11] [ 6] [270827] +17:22:28 [ 12] [ 6] [172132] +17:22:28 [ 13] [ 4] [0320] +17:22:28 [ 15] [ 4] [0320] +17:22:28 [ 18] [ 4] [6011] +17:22:28 [ 19] [ 3] [418] +17:22:28 [ 32] [ 6] [180893] +17:22:28 [ 35] [ 32] [6213545000513212=491212011321132] +17:22:28 [ 37] [ 12] [507910270827] +17:22:28 [ 38] [ 6] [157871] +17:22:28 [ 39] [ 2] [00] +17:22:28 [ 41] [ 8] [0401XSBR] +17:22:28 [ 49] [ 3] [418] +17:22:28 [ 54] [ 40] [0001418C0001279246600002418C000127924660] +17:22:28 ============================================================================ +17:22:28 Calculate Source COMM Id = 2 +17:22:28 ============================================================================ +17:22:28 + + +waiting on router queue for slot.... +17:22:30 ============================================================================ +17:22:30 Slot Id : <216> +17:22:30 Transaction Type : RESPONSE +17:22:30 Received From : +17:22:30 ============================================================================ +17:22:30 FNo. Len. Field Value +17:22:30 ============================================================================ +17:22:30 [ 1] [ 4] [0210] +17:22:30 [ 2] [ 16] [6688990101624706] +17:22:30 [ 3] [ 6] [301000] +17:22:30 [ 4] [ 12] [000000000000] +17:22:30 [ 11] [ 6] [814187] +17:22:30 [ 12] [ 6] [172222] +17:22:30 [ 15] [ 4] [0320] +17:22:30 [ 18] [ 4] [6011] +17:22:30 [ 32] [ 6] [621354] +17:22:30 [ 35] [ 37] [6688990101624706=42041231470691300000] +17:22:30 [ 37] [ 12] [507904789494] +17:22:30 [ 38] [ 6] [458051] +17:22:30 [ 39] [ 2] [00] +17:22:30 [ 41] [ 8] [07001400] +17:22:30 [ 49] [ 3] [418] +17:22:30 [ 54] [ 20] [1002418C000322453296] +17:22:30 ============================================================================ +17:22:30 Calculate Source COMM Id = 0 +17:22:30 ============================================================================ +17:22:30 + + +waiting on router queue for slot.... +17:22:41 ============================================================================ +17:22:41 Slot Id : <259> +17:22:41 Transaction Type : REQUEST +17:22:41 Received From : +17:22:41 ============================================================================ +17:22:41 FNo. Len. Field Value +17:22:41 ============================================================================ +17:22:41 [ 1] [ 4] [0800] +17:22:41 [ 7] [ 10] [0320102148] +17:22:41 [ 11] [ 6] [157441] +17:22:41 [ 70] [ 3] [301] +17:22:41 ============================================================================ +17:22:41 + + +waiting on router queue for slot.... +17:22:41 Sending to : +17:22:41 ============================================================================ +17:22:41 ============================================================================ +17:22:41 Slot Id : <259> +17:22:41 Transaction Type : RESPONSE +17:22:41 Received From : +17:22:41 ============================================================================ +17:22:41 FNo. Len. Field Value +17:22:41 ============================================================================ +17:22:41 [ 1] [ 4] [0810] +17:22:41 [ 7] [ 10] [0320102148] +17:22:41 [ 11] [ 6] [157441] +17:22:41 [ 39] [ 2] [00] +17:22:41 [ 70] [ 3] [301] +17:22:41 ============================================================================ +17:22:41 Calculate Source COMM Id = 2 +17:22:41 ============================================================================ +17:22:41 + + +waiting on router queue for slot.... +17:22:48 ============================================================================ +17:22:48 Slot Id : <249> +17:22:48 Transaction Type : REQUEST +17:22:48 Received From : +17:22:48 ============================================================================ +17:22:48 FNo. Len. Field Value +17:22:48 ============================================================================ +17:22:48 [ 1] [ 4] [0200] +17:22:48 [ 2] [ 16] [6213544002226303] +17:22:48 [ 3] [ 6] [011000] +17:22:48 [ 4] [ 12] [000005000000] +17:22:48 [ 7] [ 10] [0320172308] +17:22:48 [ 11] [ 6] [209483] +17:22:48 [ 12] [ 6] [171814] +17:22:48 [ 13] [ 4] [0320] +17:22:48 [ 14] [ 4] [4912] +17:22:48 [ 15] [ 4] [0320] +17:22:48 [ 18] [ 4] [6011] +17:22:48 [ 19] [ 3] [418] +17:22:48 [ 22] [ 3] [021] +17:22:48 [ 25] [ 2] [01] +17:22:48 [ 28] [ 9] [D00002000] +17:22:48 [ 32] [ 6] [198901] +17:22:48 [ 35] [ 32] [6213544002226303=491212012630439] +17:22:48 [ 37] [ 12] [507917209483] +17:22:48 [ 41] [ 8] [19529001] +17:22:48 [ 42] [ 15] [000000041952901] +17:22:48 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:22:48 [ 49] [ 3] [418] +17:22:48 [ 52] [ 16] [3ABA7CD25DD9DDAB] +17:22:48 ============================================================================ +17:22:48 + + +waiting on router queue for slot.... +17:22:48 Sending to : +17:22:48 ============================================================================ +17:22:48 Sending to : +17:22:48 ============================================================================ +17:22:48 ============================================================================ +17:22:48 Slot Id : <249> +17:22:48 Transaction Type : REQUEST +17:22:48 Received From : +17:22:48 ============================================================================ +17:22:48 FNo. Len. Field Value +17:22:48 ============================================================================ +17:22:48 [ 1] [ 4] [0200] +17:22:48 [ 2] [ 16] [6213544002226303] +17:22:48 [ 3] [ 6] [011000] +17:22:48 [ 4] [ 12] [000005000000] +17:22:48 [ 7] [ 10] [0320172308] +17:22:48 [ 11] [ 6] [209483] +17:22:48 [ 12] [ 6] [171814] +17:22:48 [ 13] [ 4] [0320] +17:22:48 [ 14] [ 4] [4912] +17:22:48 [ 15] [ 4] [0320] +17:22:48 [ 18] [ 4] [6011] +17:22:48 [ 19] [ 3] [418] +17:22:48 [ 22] [ 3] [021] +17:22:48 [ 25] [ 2] [01] +17:22:48 [ 28] [ 9] [D00002000] +17:22:48 [ 32] [ 6] [198901] +17:22:48 [ 35] [ 32] [6213544002226303=491212012630439] +17:22:48 [ 37] [ 12] [507917209483] +17:22:48 [ 41] [ 8] [19529001] +17:22:48 [ 42] [ 15] [000000041952901] +17:22:48 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:22:48 [ 49] [ 3] [418] +17:22:48 [ 52] [ 16] [3ABA7CD25DD9DDAB] +17:22:48 ============================================================================ +17:22:48 + + +waiting on router queue for slot.... +17:22:48 Sending to : +17:22:48 ============================================================================ +17:22:48 ============================================================================ +17:22:48 Slot Id : <249> +17:22:48 Transaction Type : REQUEST +17:22:48 Received From : +17:22:48 ============================================================================ +17:22:48 FNo. Len. Field Value +17:22:48 ============================================================================ +17:22:48 [ 1] [ 4] [0200] +17:22:48 [ 2] [ 16] [6213544002226303] +17:22:48 [ 3] [ 6] [011000] +17:22:48 [ 4] [ 12] [000005000000] +17:22:48 [ 7] [ 10] [0320172308] +17:22:48 [ 11] [ 6] [209483] +17:22:48 [ 12] [ 6] [171814] +17:22:48 [ 13] [ 4] [0320] +17:22:48 [ 14] [ 4] [4912] +17:22:48 [ 15] [ 4] [0320] +17:22:48 [ 18] [ 4] [6011] +17:22:48 [ 19] [ 3] [418] +17:22:48 [ 22] [ 3] [021] +17:22:48 [ 25] [ 2] [01] +17:22:48 [ 28] [ 9] [D00002000] +17:22:48 [ 32] [ 6] [198901] +17:22:48 [ 35] [ 32] [6213544002226303=491212012630439] +17:22:48 [ 37] [ 12] [507917209483] +17:22:48 [ 41] [ 8] [19529001] +17:22:48 [ 42] [ 15] [000000041952901] +17:22:48 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:22:48 [ 49] [ 3] [418] +17:22:48 [ 52] [ 16] [57E7E102AD59B49A] +17:22:48 ============================================================================ +17:22:48 + + +waiting on router queue for slot.... +17:22:48 Sending to : <0> +17:22:48 ============================================================================ +17:22:49 ============================================================================ +17:22:49 Slot Id : <249> +17:22:49 Transaction Type : RESPONSE +17:22:49 Received From : +17:22:49 ============================================================================ +17:22:49 FNo. Len. Field Value +17:22:49 ============================================================================ +17:22:49 [ 1] [ 4] [0210] +17:22:49 [ 2] [ 16] [6213544002226303] +17:22:49 [ 3] [ 6] [011000] +17:22:49 [ 4] [ 12] [000005000000] +17:22:49 [ 7] [ 10] [0320172308] +17:22:49 [ 11] [ 6] [209483] +17:22:49 [ 12] [ 6] [171814] +17:22:49 [ 13] [ 4] [0320] +17:22:49 [ 15] [ 4] [0320] +17:22:49 [ 18] [ 4] [6011] +17:22:49 [ 19] [ 3] [418] +17:22:49 [ 32] [ 6] [198901] +17:22:49 [ 35] [ 32] [6213544002226303=491212012630439] +17:22:49 [ 37] [ 12] [507917209483] +17:22:49 [ 38] [ 6] [557825] +17:22:49 [ 39] [ 2] [00] +17:22:49 [ 41] [ 8] [19529001] +17:22:49 [ 49] [ 3] [418] +17:22:49 [ 54] [ 40] [1001418C0000056606481002418C000005660648] +17:22:49 ============================================================================ +17:22:49 Sending to : +17:22:49 ============================================================================ +17:22:49 + + +waiting on router queue for slot.... +17:22:50 ============================================================================ +17:22:50 Slot Id : <249> +17:22:50 Transaction Type : RESPONSE +17:22:50 Received From : +17:22:50 ============================================================================ +17:22:50 FNo. Len. Field Value +17:22:50 ============================================================================ +17:22:50 [ 1] [ 4] [0210] +17:22:50 [ 2] [ 16] [6213544002226303] +17:22:50 [ 3] [ 6] [011000] +17:22:50 [ 4] [ 12] [000005000000] +17:22:50 [ 7] [ 10] [0320172308] +17:22:50 [ 11] [ 6] [209483] +17:22:50 [ 12] [ 6] [171814] +17:22:50 [ 13] [ 4] [0320] +17:22:50 [ 15] [ 4] [0320] +17:22:50 [ 18] [ 4] [6011] +17:22:50 [ 19] [ 3] [418] +17:22:50 [ 32] [ 6] [198901] +17:22:50 [ 35] [ 32] [6213544002226303=491212012630439] +17:22:50 [ 37] [ 12] [507917209483] +17:22:50 [ 38] [ 6] [557825] +17:22:50 [ 39] [ 2] [00] +17:22:50 [ 41] [ 8] [19529001] +17:22:50 [ 49] [ 3] [418] +17:22:50 [ 54] [ 40] [1001418C0000056606481002418C000005660648] +17:22:50 ============================================================================ +17:22:50 Calculate Source COMM Id = 5 +17:22:50 ============================================================================ +17:22:50 + + +waiting on router queue for slot.... +17:22:53 ============================================================================ +17:22:53 Slot Id : <263> +17:22:53 Transaction Type : REQUEST +17:22:53 Received From : +17:22:53 ============================================================================ +17:22:53 FNo. Len. Field Value +17:22:53 ============================================================================ +17:22:53 [ 1] [ 4] [0800] +17:22:53 [ 7] [ 10] [0320102200] +17:22:53 [ 11] [ 6] [157442] +17:22:53 [ 70] [ 3] [301] +17:22:53 ============================================================================ +17:22:53 + + +waiting on router queue for slot.... +17:22:53 Sending to : +17:22:53 ============================================================================ +17:22:53 ============================================================================ +17:22:53 Slot Id : <263> +17:22:53 Transaction Type : RESPONSE +17:22:53 Received From : +17:22:53 ============================================================================ +17:22:53 FNo. Len. Field Value +17:22:53 ============================================================================ +17:22:53 [ 1] [ 4] [0810] +17:22:53 [ 7] [ 10] [0320102200] +17:22:53 [ 11] [ 6] [157442] +17:22:53 [ 39] [ 2] [00] +17:22:53 [ 70] [ 3] [301] +17:22:53 ============================================================================ +17:22:53 Calculate Source COMM Id = 2 +17:22:53 ============================================================================ +17:22:53 + + +waiting on router queue for slot.... +17:23:06 ============================================================================ +17:23:06 Slot Id : <210> +17:23:06 Transaction Type : REQUEST +17:23:06 Received From : +17:23:06 ============================================================================ +17:23:06 FNo. Len. Field Value +17:23:06 ============================================================================ +17:23:06 [ 1] [ 4] [0800] +17:23:06 [ 7] [ 10] [0320102213] +17:23:06 [ 11] [ 6] [157443] +17:23:06 [ 70] [ 3] [301] +17:23:06 ============================================================================ +17:23:06 + + +waiting on router queue for slot.... +17:23:06 Sending to : +17:23:06 ============================================================================ +17:23:06 ============================================================================ +17:23:06 Slot Id : <210> +17:23:06 Transaction Type : RESPONSE +17:23:06 Received From : +17:23:06 ============================================================================ +17:23:06 FNo. Len. Field Value +17:23:06 ============================================================================ +17:23:06 [ 1] [ 4] [0810] +17:23:06 [ 7] [ 10] [0320102213] +17:23:06 [ 11] [ 6] [157443] +17:23:06 [ 39] [ 2] [00] +17:23:06 [ 70] [ 3] [301] +17:23:06 ============================================================================ +17:23:06 Calculate Source COMM Id = 2 +17:23:06 ============================================================================ +17:23:06 + + +waiting on router queue for slot.... +17:23:10 ============================================================================ +17:23:10 Slot Id : <261> +17:23:10 Transaction Type : REQUEST +17:23:10 Received From : +17:23:10 ============================================================================ +17:23:10 FNo. Len. Field Value +17:23:10 ============================================================================ +17:23:10 [ 1] [ 4] [0800] +17:23:10 [ 7] [ 10] [0321003459] +17:23:10 [ 11] [ 6] [173459] +17:23:10 [ 37] [ 12] [57917173459] +17:23:10 [ 70] [ 3] [301] +17:23:10 ============================================================================ +17:23:10 + + +waiting on router queue for slot.... +17:23:10 Sending to : +17:23:10 ============================================================================ +17:23:10 ============================================================================ +17:23:10 Slot Id : <261> +17:23:10 Transaction Type : RESPONSE +17:23:10 Received From : +17:23:10 ============================================================================ +17:23:10 FNo. Len. Field Value +17:23:10 ============================================================================ +17:23:10 [ 1] [ 4] [0810] +17:23:10 [ 7] [ 10] [0321003459] +17:23:10 [ 11] [ 6] [173459] +17:23:10 [ 37] [ 12] [579171734590] +17:23:10 [ 39] [ 2] [00] +17:23:10 [ 70] [ 3] [810] +17:23:10 ============================================================================ +17:23:10 Calculate Source COMM Id = 6 +17:23:10 ============================================================================ +17:23:10 + + +waiting on router queue for slot.... +17:23:14 ============================================================================ +17:23:14 Slot Id : <225> +17:23:14 Transaction Type : REQUEST +17:23:14 Received From : +17:23:14 ============================================================================ +17:23:14 FNo. Len. Field Value +17:23:14 ============================================================================ +17:23:14 [ 1] [ 4] [0200] +17:23:14 [ 2] [ 16] [6688990100193307] +17:23:14 [ 3] [ 6] [010000] +17:23:14 [ 4] [ 12] [000010000000] +17:23:14 [ 7] [ 10] [0320172309] +17:23:14 [ 11] [ 6] [814400] +17:23:14 [ 12] [ 6] [172309] +17:23:14 [ 13] [ 4] [0320] +17:23:14 [ 15] [ 4] [0320] +17:23:14 [ 18] [ 4] [6011] +17:23:14 [ 22] [ 3] [900] +17:23:14 [ 25] [ 2] [02] +17:23:14 [ 28] [ 9] [D00002000] +17:23:14 [ 32] [ 6] [621354] +17:23:14 [ 35] [ 37] [6688990100193307=41031231330770100000] +17:23:14 [ 37] [ 12] [507904789496] +17:23:14 [ 41] [ 8] [07001400] +17:23:14 [ 42] [ 15] [NATIVE ] +17:23:14 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +17:23:14 [ 49] [ 3] [418] +17:23:14 [ 52] [ 16] [E0799764BE4E4818] +17:23:14 ============================================================================ +17:23:14 + + +waiting on router queue for slot.... +17:23:14 Sending to : +17:23:14 ============================================================================ +17:23:14 Sending to : +17:23:14 ============================================================================ +17:23:14 ============================================================================ +17:23:14 Slot Id : <225> +17:23:14 Transaction Type : REQUEST +17:23:14 Received From : +17:23:14 ============================================================================ +17:23:14 FNo. Len. Field Value +17:23:14 ============================================================================ +17:23:14 [ 1] [ 4] [0200] +17:23:14 [ 2] [ 16] [6688990100193307] +17:23:14 [ 3] [ 6] [010000] +17:23:14 [ 4] [ 12] [000010000000] +17:23:14 [ 7] [ 10] [0320172309] +17:23:14 [ 11] [ 6] [814400] +17:23:14 [ 12] [ 6] [172309] +17:23:14 [ 13] [ 4] [0320] +17:23:14 [ 15] [ 4] [0320] +17:23:14 [ 18] [ 4] [6011] +17:23:14 [ 22] [ 3] [900] +17:23:14 [ 25] [ 2] [02] +17:23:14 [ 28] [ 9] [D00002000] +17:23:14 [ 32] [ 6] [621354] +17:23:14 [ 35] [ 37] [6688990100193307=41031231330770100000] +17:23:14 [ 37] [ 12] [507904789496] +17:23:14 [ 41] [ 8] [07001400] +17:23:14 [ 42] [ 15] [NATIVE ] +17:23:14 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +17:23:14 [ 49] [ 3] [418] +17:23:14 [ 52] [ 16] [E0799764BE4E4818] +17:23:14 ============================================================================ +17:23:14 + + +waiting on router queue for slot.... +17:23:14 Sending to : +17:23:14 ============================================================================ +17:23:14 ============================================================================ +17:23:14 Slot Id : <225> +17:23:14 Transaction Type : REQUEST +17:23:14 Received From : +17:23:14 ============================================================================ +17:23:14 FNo. Len. Field Value +17:23:14 ============================================================================ +17:23:14 [ 1] [ 4] [0200] +17:23:14 [ 2] [ 16] [6688990100193307] +17:23:14 [ 3] [ 6] [010000] +17:23:14 [ 4] [ 12] [000010000000] +17:23:14 [ 7] [ 10] [0320172309] +17:23:14 [ 11] [ 6] [814400] +17:23:14 [ 12] [ 6] [172309] +17:23:14 [ 13] [ 4] [0320] +17:23:14 [ 15] [ 4] [0320] +17:23:14 [ 18] [ 4] [6011] +17:23:14 [ 22] [ 3] [900] +17:23:14 [ 25] [ 2] [02] +17:23:14 [ 28] [ 9] [D00002000] +17:23:14 [ 32] [ 6] [621354] +17:23:14 [ 35] [ 37] [6688990100193307=41031231330770100000] +17:23:14 [ 37] [ 12] [507904789496] +17:23:14 [ 41] [ 8] [07001400] +17:23:14 [ 42] [ 15] [NATIVE ] +17:23:14 [ 43] [ 40] [Meuangsing Unit Meuangsing LAO] +17:23:14 [ 49] [ 3] [418] +17:23:14 [ 52] [ 16] [3558FB131647EC79] +17:23:14 ============================================================================ +17:23:14 + + +waiting on router queue for slot.... +17:23:14 Sending to : <4> +17:23:14 ============================================================================ +17:23:15 ============================================================================ +17:23:15 Slot Id : <225> +17:23:15 Transaction Type : RESPONSE +17:23:15 Received From : +17:23:15 ============================================================================ +17:23:15 FNo. Len. Field Value +17:23:15 ============================================================================ +17:23:15 [ 1] [ 4] [0210] +17:23:15 [ 2] [ 16] [6688990100193307] +17:23:15 [ 3] [ 6] [010000] +17:23:15 [ 4] [ 12] [000010000000] +17:23:15 [ 11] [ 6] [814400] +17:23:15 [ 12] [ 6] [172309] +17:23:15 [ 15] [ 4] [0320] +17:23:15 [ 18] [ 4] [6011] +17:23:15 [ 32] [ 6] [621354] +17:23:15 [ 35] [ 37] [6688990100193307=41031231330770100000] +17:23:15 [ 37] [ 12] [507904789496] +17:23:15 [ 38] [ 6] [761279] +17:23:15 [ 39] [ 2] [00] +17:23:15 [ 41] [ 8] [07001400] +17:23:15 [ 49] [ 3] [418] +17:23:15 [ 54] [ 20] [0002418C000159646490] +17:23:15 ============================================================================ +17:23:15 Sending to : +17:23:15 ============================================================================ +17:23:15 + + +waiting on router queue for slot.... +17:23:17 ============================================================================ +17:23:17 Slot Id : <269> +17:23:17 Transaction Type : REQUEST +17:23:17 Received From : +17:23:17 ============================================================================ +17:23:17 FNo. Len. Field Value +17:23:17 ============================================================================ +17:23:17 [ 1] [ 4] [0800] +17:23:17 [ 2] [ 5] [02531] +17:23:17 [ 3] [ 6] [579178] +17:23:17 [ 7] [ 10] [0320102317] +17:23:17 [ 11] [ 6] [807421] +17:23:17 [ 15] [ 10] [0320102317] +17:23:17 [ 37] [ 11] [57917807421] +17:23:17 [ 70] [ 3] [001] +17:23:17 ============================================================================ +17:23:17 + + +waiting on router queue for slot.... +17:23:17 ============================================================================ +17:23:17 Slot Id : <269> +17:23:17 Transaction Type : RESPONSE +17:23:17 Received From : +17:23:17 ============================================================================ +17:23:17 FNo. Len. Field Value +17:23:17 ============================================================================ +17:23:17 [ 1] [ 4] [0810] +17:23:17 [ 7] [ 10] [0320102317] +17:23:17 [ 11] [ 6] [807421] +17:23:17 [ 15] [ 4] [0320] +17:23:17 [ 37] [ 12] [57917807421] +17:23:17 [ 39] [ 2] [00] +17:23:17 [ 70] [ 3] [001] +17:23:17 ============================================================================ +17:23:17 Sending to : +17:23:17 ============================================================================ +17:23:17 + + +waiting on router queue for slot.... +17:23:17 ============================================================================ +17:23:17 Slot Id : <225> +17:23:17 Transaction Type : RESPONSE +17:23:17 Received From : +17:23:17 ============================================================================ +17:23:17 FNo. Len. Field Value +17:23:17 ============================================================================ +17:23:17 [ 1] [ 4] [0210] +17:23:17 [ 2] [ 16] [6688990100193307] +17:23:17 [ 3] [ 6] [010000] +17:23:17 [ 4] [ 12] [000010000000] +17:23:17 [ 11] [ 6] [814400] +17:23:17 [ 12] [ 6] [172309] +17:23:17 [ 15] [ 4] [0320] +17:23:17 [ 18] [ 4] [6011] +17:23:17 [ 32] [ 6] [621354] +17:23:17 [ 35] [ 37] [6688990100193307=41031231330770100000] +17:23:17 [ 37] [ 12] [507904789496] +17:23:17 [ 38] [ 6] [761279] +17:23:17 [ 39] [ 2] [00] +17:23:17 [ 41] [ 8] [07001400] +17:23:17 [ 49] [ 3] [418] +17:23:17 [ 54] [ 20] [0002418C000159646490] +17:23:17 ============================================================================ +17:23:17 Calculate Source COMM Id = 0 +17:23:17 ============================================================================ +17:23:17 + + +waiting on router queue for slot.... +17:23:21 ============================================================================ +17:23:21 Slot Id : <199> +17:23:21 Transaction Type : REQUEST +17:23:21 Received From : +17:23:21 ============================================================================ +17:23:21 FNo. Len. Field Value +17:23:21 ============================================================================ +17:23:21 [ 1] [ 4] [0800] +17:23:21 [ 7] [ 10] [0320102228] +17:23:21 [ 11] [ 6] [157444] +17:23:21 [ 70] [ 3] [301] +17:23:21 ============================================================================ +17:23:21 + + +waiting on router queue for slot.... +17:23:21 Sending to : +17:23:21 ============================================================================ +17:23:21 ============================================================================ +17:23:21 Slot Id : <199> +17:23:21 Transaction Type : RESPONSE +17:23:21 Received From : +17:23:21 ============================================================================ +17:23:21 FNo. Len. Field Value +17:23:21 ============================================================================ +17:23:21 [ 1] [ 4] [0810] +17:23:21 [ 7] [ 10] [0320102228] +17:23:21 [ 11] [ 6] [157444] +17:23:21 [ 39] [ 2] [00] +17:23:21 [ 70] [ 3] [301] +17:23:21 ============================================================================ +17:23:21 Calculate Source COMM Id = 2 +17:23:21 ============================================================================ +17:23:21 + + +waiting on router queue for slot.... +17:23:31 ============================================================================ +17:23:31 Slot Id : <270> +17:23:31 Transaction Type : REQUEST +17:23:31 Received From : +17:23:31 ============================================================================ +17:23:31 FNo. Len. Field Value +17:23:31 ============================================================================ +17:23:31 [ 1] [ 4] [0800] +17:23:31 [ 7] [ 10] [0320102238] +17:23:31 [ 11] [ 6] [157445] +17:23:31 [ 70] [ 3] [301] +17:23:31 ============================================================================ +17:23:31 + + +waiting on router queue for slot.... +17:23:31 Sending to : +17:23:31 ============================================================================ +17:23:31 ============================================================================ +17:23:31 Slot Id : <270> +17:23:31 Transaction Type : RESPONSE +17:23:31 Received From : +17:23:31 ============================================================================ +17:23:31 FNo. Len. Field Value +17:23:31 ============================================================================ +17:23:31 [ 1] [ 4] [0810] +17:23:31 [ 7] [ 10] [0320102238] +17:23:31 [ 11] [ 6] [157445] +17:23:31 [ 39] [ 2] [00] +17:23:31 [ 70] [ 3] [301] +17:23:31 ============================================================================ +17:23:31 Calculate Source COMM Id = 2 +17:23:31 ============================================================================ +17:23:31 + + +waiting on router queue for slot.... +17:23:42 ============================================================================ +17:23:42 Slot Id : <275> +17:23:42 Transaction Type : REQUEST +17:23:42 Received From : +17:23:42 ============================================================================ +17:23:42 FNo. Len. Field Value +17:23:42 ============================================================================ +17:23:42 [ 1] [ 4] [0800] +17:23:42 [ 7] [ 10] [0320102249] +17:23:42 [ 11] [ 6] [157446] +17:23:42 [ 70] [ 3] [301] +17:23:42 ============================================================================ +17:23:42 + + +waiting on router queue for slot.... +17:23:42 Sending to : +17:23:42 ============================================================================ +17:23:42 ============================================================================ +17:23:42 Slot Id : <275> +17:23:42 Transaction Type : RESPONSE +17:23:42 Received From : +17:23:42 ============================================================================ +17:23:42 FNo. Len. Field Value +17:23:42 ============================================================================ +17:23:42 [ 1] [ 4] [0810] +17:23:42 [ 7] [ 10] [0320102249] +17:23:42 [ 11] [ 6] [157446] +17:23:42 [ 39] [ 2] [00] +17:23:42 [ 70] [ 3] [301] +17:23:42 ============================================================================ +17:23:42 Calculate Source COMM Id = 2 +17:23:42 ============================================================================ +17:23:42 + + +waiting on router queue for slot.... +17:23:53 ============================================================================ +17:23:53 Slot Id : <240> +17:23:53 Transaction Type : REQUEST +17:23:53 Received From : +17:23:53 ============================================================================ +17:23:53 FNo. Len. Field Value +17:23:53 ============================================================================ +17:23:53 [ 1] [ 4] [0800] +17:23:53 [ 7] [ 10] [0320102300] +17:23:53 [ 11] [ 6] [157447] +17:23:53 [ 70] [ 3] [301] +17:23:53 ============================================================================ +17:23:53 + + +waiting on router queue for slot.... +17:23:53 Sending to : +17:23:53 ============================================================================ +17:23:53 ============================================================================ +17:23:53 Slot Id : <240> +17:23:53 Transaction Type : RESPONSE +17:23:53 Received From : +17:23:53 ============================================================================ +17:23:53 FNo. Len. Field Value +17:23:53 ============================================================================ +17:23:53 [ 1] [ 4] [0810] +17:23:53 [ 7] [ 10] [0320102300] +17:23:53 [ 11] [ 6] [157447] +17:23:53 [ 39] [ 2] [00] +17:23:53 [ 70] [ 3] [301] +17:23:53 ============================================================================ +17:23:53 Calculate Source COMM Id = 2 +17:23:53 ============================================================================ +17:23:53 + + +waiting on router queue for slot.... +17:23:55 ============================================================================ +17:23:55 Slot Id : <218> +17:23:55 Transaction Type : REQUEST +17:23:55 Received From : +17:23:55 ============================================================================ +17:23:55 FNo. Len. Field Value +17:23:55 ============================================================================ +17:23:55 [ 1] [ 4] [0200] +17:23:55 [ 2] [ 16] [6213544002102272] +17:23:55 [ 3] [ 6] [311000] +17:23:55 [ 4] [ 12] [000000000000] +17:23:55 [ 7] [ 10] [0320173142] +17:23:55 [ 11] [ 6] [021183] +17:23:55 [ 12] [ 6] [173142] +17:23:55 [ 13] [ 4] [0320] +17:23:55 [ 14] [ 4] [4912] +17:23:55 [ 15] [ 4] [0320] +17:23:55 [ 18] [ 4] [6011] +17:23:55 [ 22] [ 3] [900] +17:23:55 [ 25] [ 2] [02] +17:23:55 [ 28] [ 9] [000000000] +17:23:55 [ 32] [ 6] [220699] +17:23:55 [ 35] [ 32] [6213544002102272=491212010227220] +17:23:55 [ 37] [ 12] [507900263127] +17:23:55 [ 41] [ 8] [01001400] +17:23:55 [ 42] [ 15] [APTRA ] +17:23:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:23:55 [ 49] [ 3] [418] +17:23:55 [ 52] [ 16] [1E6CCF9140AB7BC6] +17:23:55 ============================================================================ +17:23:55 + + +waiting on router queue for slot.... +17:23:55 Sending to : +17:23:55 ============================================================================ +17:23:55 Sending to : +17:23:55 ============================================================================ +17:23:55 ============================================================================ +17:23:55 Slot Id : <218> +17:23:55 Transaction Type : REQUEST +17:23:55 Received From : +17:23:55 ============================================================================ +17:23:55 FNo. Len. Field Value +17:23:55 ============================================================================ +17:23:55 [ 1] [ 4] [0200] +17:23:55 [ 2] [ 16] [6213544002102272] +17:23:55 [ 3] [ 6] [311000] +17:23:55 [ 4] [ 12] [000000000000] +17:23:55 [ 7] [ 10] [0320173142] +17:23:55 [ 11] [ 6] [021183] +17:23:55 [ 12] [ 6] [173142] +17:23:55 [ 13] [ 4] [0320] +17:23:55 [ 14] [ 4] [4912] +17:23:55 [ 15] [ 4] [0320] +17:23:55 [ 18] [ 4] [6011] +17:23:55 [ 22] [ 3] [900] +17:23:55 [ 25] [ 2] [02] +17:23:55 [ 28] [ 9] [000000000] +17:23:55 [ 32] [ 6] [220699] +17:23:55 [ 35] [ 32] [6213544002102272=491212010227220] +17:23:55 [ 37] [ 12] [507900263127] +17:23:55 [ 41] [ 8] [01001400] +17:23:55 [ 42] [ 15] [APTRA ] +17:23:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:23:55 [ 49] [ 3] [418] +17:23:55 [ 52] [ 16] [1E6CCF9140AB7BC6] +17:23:55 ============================================================================ +17:23:55 + + +waiting on router queue for slot.... +17:23:55 Sending to : +17:23:55 ============================================================================ +17:23:55 ============================================================================ +17:23:55 Slot Id : <218> +17:23:55 Transaction Type : REQUEST +17:23:55 Received From : +17:23:55 ============================================================================ +17:23:55 FNo. Len. Field Value +17:23:55 ============================================================================ +17:23:55 [ 1] [ 4] [0200] +17:23:55 [ 2] [ 16] [6213544002102272] +17:23:55 [ 3] [ 6] [311000] +17:23:55 [ 4] [ 12] [000000000000] +17:23:55 [ 7] [ 10] [0320173142] +17:23:55 [ 11] [ 6] [021183] +17:23:55 [ 12] [ 6] [173142] +17:23:55 [ 13] [ 4] [0320] +17:23:55 [ 14] [ 4] [4912] +17:23:55 [ 15] [ 4] [0320] +17:23:55 [ 18] [ 4] [6011] +17:23:55 [ 22] [ 3] [900] +17:23:55 [ 25] [ 2] [02] +17:23:55 [ 28] [ 9] [000000000] +17:23:55 [ 32] [ 6] [220699] +17:23:55 [ 35] [ 32] [6213544002102272=491212010227220] +17:23:55 [ 37] [ 12] [507900263127] +17:23:55 [ 41] [ 8] [01001400] +17:23:55 [ 42] [ 15] [APTRA ] +17:23:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:23:55 [ 49] [ 3] [418] +17:23:55 [ 52] [ 16] [5B94E4B32CAF018B] +17:23:55 ============================================================================ +17:23:55 + + +waiting on router queue for slot.... +17:23:55 Sending to : <0> +17:23:55 ============================================================================ +17:23:56 ============================================================================ +17:23:56 Slot Id : <218> +17:23:56 Transaction Type : RESPONSE +17:23:56 Received From : +17:23:56 ============================================================================ +17:23:56 FNo. Len. Field Value +17:23:56 ============================================================================ +17:23:56 [ 1] [ 4] [0210] +17:23:56 [ 2] [ 16] [6213544002102272] +17:23:56 [ 3] [ 6] [311000] +17:23:56 [ 4] [ 12] [000000000000] +17:23:56 [ 7] [ 10] [0320173142] +17:23:56 [ 11] [ 6] [021183] +17:23:56 [ 12] [ 6] [173142] +17:23:56 [ 13] [ 4] [0320] +17:23:56 [ 15] [ 4] [0320] +17:23:56 [ 18] [ 4] [6011] +17:23:56 [ 32] [ 6] [220699] +17:23:56 [ 35] [ 32] [6213544002102272=491212010227220] +17:23:56 [ 37] [ 12] [507900263127] +17:23:56 [ 38] [ 6] [772182] +17:23:56 [ 39] [ 2] [00] +17:23:56 [ 41] [ 8] [01001400] +17:23:56 [ 49] [ 3] [418] +17:23:56 [ 54] [ 40] [1001418C0001341566711002418C000134156671] +17:23:56 ============================================================================ +17:23:56 Sending to : +17:23:56 ============================================================================ +17:23:56 + + +waiting on router queue for slot.... +17:23:57 ============================================================================ +17:23:57 Slot Id : <218> +17:23:57 Transaction Type : RESPONSE +17:23:57 Received From : +17:23:57 ============================================================================ +17:23:57 FNo. Len. Field Value +17:23:57 ============================================================================ +17:23:57 [ 1] [ 4] [0210] +17:23:57 [ 2] [ 16] [6213544002102272] +17:23:57 [ 3] [ 6] [311000] +17:23:57 [ 4] [ 12] [000000000000] +17:23:57 [ 7] [ 10] [0320173142] +17:23:57 [ 11] [ 6] [021183] +17:23:57 [ 12] [ 6] [173142] +17:23:57 [ 13] [ 4] [0320] +17:23:57 [ 15] [ 4] [0320] +17:23:57 [ 18] [ 4] [6011] +17:23:57 [ 32] [ 6] [220699] +17:23:57 [ 35] [ 32] [6213544002102272=491212010227220] +17:23:57 [ 37] [ 12] [507900263127] +17:23:57 [ 38] [ 6] [772182] +17:23:57 [ 39] [ 2] [00] +17:23:57 [ 41] [ 8] [01001400] +17:23:57 [ 49] [ 3] [418] +17:23:57 [ 54] [ 40] [1001418C0001341566711002418C000134156671] +17:23:57 ============================================================================ +17:23:57 Calculate Source COMM Id = 1 +17:23:57 ============================================================================ +17:23:57 + + +waiting on router queue for slot.... +17:24:03 ============================================================================ +17:24:03 Slot Id : <197> +17:24:03 Transaction Type : REQUEST +17:24:03 Received From : +17:24:03 ============================================================================ +17:24:03 FNo. Len. Field Value +17:24:03 ============================================================================ +17:24:03 [ 1] [ 4] [0800] +17:24:03 [ 7] [ 10] [0320102310] +17:24:03 [ 11] [ 6] [157448] +17:24:03 [ 70] [ 3] [301] +17:24:03 ============================================================================ +17:24:03 + + +waiting on router queue for slot.... +17:24:03 Sending to : +17:24:03 ============================================================================ +17:24:03 ============================================================================ +17:24:03 Slot Id : <197> +17:24:03 Transaction Type : RESPONSE +17:24:03 Received From : +17:24:03 ============================================================================ +17:24:03 FNo. Len. Field Value +17:24:03 ============================================================================ +17:24:03 [ 1] [ 4] [0810] +17:24:03 [ 7] [ 10] [0320102310] +17:24:03 [ 11] [ 6] [157448] +17:24:03 [ 39] [ 2] [00] +17:24:03 [ 70] [ 3] [301] +17:24:03 ============================================================================ +17:24:03 Calculate Source COMM Id = 2 +17:24:03 ============================================================================ +17:24:03 + + +waiting on router queue for slot.... +17:24:12 ============================================================================ +17:24:12 Slot Id : <256> +17:24:12 Transaction Type : REQUEST +17:24:12 Received From : +17:24:12 ============================================================================ +17:24:12 FNo. Len. Field Value +17:24:12 ============================================================================ +17:24:12 [ 1] [ 4] [0200] +17:24:12 [ 2] [ 16] [6213544002199872] +17:24:12 [ 3] [ 6] [011000] +17:24:12 [ 4] [ 12] [000040000000] +17:24:12 [ 7] [ 10] [0320172432] +17:24:12 [ 11] [ 6] [209500] +17:24:12 [ 12] [ 6] [171938] +17:24:12 [ 13] [ 4] [0320] +17:24:12 [ 14] [ 4] [4912] +17:24:12 [ 15] [ 4] [0320] +17:24:12 [ 18] [ 4] [6011] +17:24:12 [ 19] [ 3] [418] +17:24:12 [ 22] [ 3] [021] +17:24:12 [ 25] [ 2] [01] +17:24:12 [ 28] [ 9] [D00002000] +17:24:12 [ 32] [ 6] [198901] +17:24:12 [ 35] [ 32] [6213544002199872=491212019987053] +17:24:12 [ 37] [ 12] [507917209500] +17:24:12 [ 41] [ 8] [19529001] +17:24:12 [ 42] [ 15] [000000041952901] +17:24:12 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:24:12 [ 49] [ 3] [418] +17:24:12 [ 52] [ 16] [AFB378C57EAD6F8C] +17:24:12 ============================================================================ +17:24:12 + + +waiting on router queue for slot.... +17:24:12 Sending to : +17:24:12 ============================================================================ +17:24:12 Sending to : +17:24:12 ============================================================================ +17:24:12 ============================================================================ +17:24:12 Slot Id : <256> +17:24:12 Transaction Type : REQUEST +17:24:12 Received From : +17:24:12 ============================================================================ +17:24:12 FNo. Len. Field Value +17:24:12 ============================================================================ +17:24:12 [ 1] [ 4] [0200] +17:24:12 [ 2] [ 16] [6213544002199872] +17:24:12 [ 3] [ 6] [011000] +17:24:12 [ 4] [ 12] [000040000000] +17:24:12 [ 7] [ 10] [0320172432] +17:24:12 [ 11] [ 6] [209500] +17:24:12 [ 12] [ 6] [171938] +17:24:12 [ 13] [ 4] [0320] +17:24:12 [ 14] [ 4] [4912] +17:24:12 [ 15] [ 4] [0320] +17:24:12 [ 18] [ 4] [6011] +17:24:12 [ 19] [ 3] [418] +17:24:12 [ 22] [ 3] [021] +17:24:12 [ 25] [ 2] [01] +17:24:12 [ 28] [ 9] [D00002000] +17:24:12 [ 32] [ 6] [198901] +17:24:12 [ 35] [ 32] [6213544002199872=491212019987053] +17:24:12 [ 37] [ 12] [507917209500] +17:24:12 [ 41] [ 8] [19529001] +17:24:12 [ 42] [ 15] [000000041952901] +17:24:12 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:24:12 [ 49] [ 3] [418] +17:24:12 [ 52] [ 16] [AFB378C57EAD6F8C] +17:24:12 ============================================================================ +17:24:12 + + +waiting on router queue for slot.... +17:24:12 Sending to : +17:24:12 ============================================================================ +17:24:12 ============================================================================ +17:24:12 Slot Id : <256> +17:24:12 Transaction Type : REQUEST +17:24:12 Received From : +17:24:12 ============================================================================ +17:24:12 FNo. Len. Field Value +17:24:12 ============================================================================ +17:24:12 [ 1] [ 4] [0200] +17:24:12 [ 2] [ 16] [6213544002199872] +17:24:12 [ 3] [ 6] [011000] +17:24:12 [ 4] [ 12] [000040000000] +17:24:12 [ 7] [ 10] [0320172432] +17:24:12 [ 11] [ 6] [209500] +17:24:12 [ 12] [ 6] [171938] +17:24:12 [ 13] [ 4] [0320] +17:24:12 [ 14] [ 4] [4912] +17:24:12 [ 15] [ 4] [0320] +17:24:12 [ 18] [ 4] [6011] +17:24:12 [ 19] [ 3] [418] +17:24:12 [ 22] [ 3] [021] +17:24:12 [ 25] [ 2] [01] +17:24:12 [ 28] [ 9] [D00002000] +17:24:12 [ 32] [ 6] [198901] +17:24:12 [ 35] [ 32] [6213544002199872=491212019987053] +17:24:12 [ 37] [ 12] [507917209500] +17:24:12 [ 41] [ 8] [19529001] +17:24:12 [ 42] [ 15] [000000041952901] +17:24:12 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:24:12 [ 49] [ 3] [418] +17:24:12 [ 52] [ 16] [A2EBF7261037A9EE] +17:24:12 ============================================================================ +17:24:12 + + +waiting on router queue for slot.... +17:24:12 Sending to : <0> +17:24:12 ============================================================================ +17:24:13 ============================================================================ +17:24:13 Slot Id : <228> +17:24:13 Transaction Type : REQUEST +17:24:13 Received From : +17:24:13 ============================================================================ +17:24:13 FNo. Len. Field Value +17:24:13 ============================================================================ +17:24:13 [ 1] [ 4] [0200] +17:24:13 [ 2] [ 16] [6213544000158847] +17:24:13 [ 3] [ 6] [010000] +17:24:13 [ 4] [ 12] [000100000000] +17:24:13 [ 7] [ 10] [0320172202] +17:24:13 [ 11] [ 6] [953370] +17:24:13 [ 12] [ 6] [172202] +17:24:13 [ 13] [ 4] [0320] +17:24:13 [ 15] [ 4] [0320] +17:24:13 [ 18] [ 4] [6011] +17:24:13 [ 19] [ 3] [418] +17:24:13 [ 22] [ 3] [021] +17:24:13 [ 25] [ 2] [01] +17:24:13 [ 28] [ 9] [D00002000] +17:24:13 [ 32] [ 6] [668899] +17:24:13 [ 35] [ 32] [6213544000158847=491212015884055] +17:24:13 [ 37] [ 12] [507901856605] +17:24:13 [ 41] [ 8] [03311001] +17:24:13 [ 42] [ 15] [APT ] +17:24:13 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +17:24:13 [ 49] [ 3] [418] +17:24:13 [ 52] [ 16] [629C9F40BE072119] +17:24:13 ============================================================================ +17:24:13 + + +waiting on router queue for slot.... +17:24:13 Sending to : +17:24:13 ============================================================================ +17:24:13 Sending to : +17:24:13 ============================================================================ +17:24:13 ============================================================================ +17:24:13 Slot Id : <256> +17:24:13 Transaction Type : RESPONSE +17:24:13 Received From : +17:24:13 ============================================================================ +17:24:13 FNo. Len. Field Value +17:24:13 ============================================================================ +17:24:13 [ 1] [ 4] [0210] +17:24:13 [ 2] [ 16] [6213544002199872] +17:24:13 [ 3] [ 6] [011000] +17:24:13 [ 4] [ 12] [000040000000] +17:24:13 [ 7] [ 10] [0320172432] +17:24:13 [ 11] [ 6] [209500] +17:24:13 [ 12] [ 6] [171938] +17:24:13 [ 13] [ 4] [0320] +17:24:13 [ 15] [ 4] [0320] +17:24:13 [ 18] [ 4] [6011] +17:24:13 [ 19] [ 3] [418] +17:24:13 [ 32] [ 6] [198901] +17:24:13 [ 35] [ 32] [6213544002199872=491212019987053] +17:24:13 [ 37] [ 12] [507917209500] +17:24:13 [ 38] [ 6] [813388] +17:24:13 [ 39] [ 2] [00] +17:24:13 [ 41] [ 8] [19529001] +17:24:13 [ 49] [ 3] [418] +17:24:13 [ 54] [ 40] [1001418C0000157495791002418C000015749579] +17:24:13 ============================================================================ +17:24:13 Sending to : +17:24:13 ============================================================================ +17:24:13 + + +waiting on router queue for slot.... +17:24:13 ============================================================================ +17:24:13 Slot Id : <228> +17:24:13 Transaction Type : REQUEST +17:24:13 Received From : +17:24:13 ============================================================================ +17:24:13 FNo. Len. Field Value +17:24:13 ============================================================================ +17:24:13 [ 1] [ 4] [0200] +17:24:13 [ 2] [ 16] [6213544000158847] +17:24:13 [ 3] [ 6] [010000] +17:24:13 [ 4] [ 12] [000100000000] +17:24:13 [ 7] [ 10] [0320172202] +17:24:13 [ 11] [ 6] [953370] +17:24:13 [ 12] [ 6] [172202] +17:24:13 [ 13] [ 4] [0320] +17:24:13 [ 15] [ 4] [0320] +17:24:13 [ 18] [ 4] [6011] +17:24:13 [ 19] [ 3] [418] +17:24:13 [ 22] [ 3] [021] +17:24:13 [ 25] [ 2] [01] +17:24:13 [ 28] [ 9] [D00002000] +17:24:13 [ 32] [ 6] [668899] +17:24:13 [ 35] [ 32] [6213544000158847=491212015884055] +17:24:13 [ 37] [ 12] [507901856605] +17:24:13 [ 41] [ 8] [03311001] +17:24:13 [ 42] [ 15] [APT ] +17:24:13 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +17:24:13 [ 49] [ 3] [418] +17:24:13 [ 52] [ 16] [629C9F40BE072119] +17:24:13 ============================================================================ +17:24:13 + + +waiting on router queue for slot.... +17:24:13 Sending to : +17:24:13 ============================================================================ +17:24:13 ============================================================================ +17:24:13 Slot Id : <228> +17:24:13 Transaction Type : REQUEST +17:24:13 Received From : +17:24:13 ============================================================================ +17:24:13 FNo. Len. Field Value +17:24:13 ============================================================================ +17:24:13 [ 1] [ 4] [0200] +17:24:13 [ 2] [ 16] [6213544000158847] +17:24:13 [ 3] [ 6] [010000] +17:24:13 [ 4] [ 12] [000100000000] +17:24:13 [ 7] [ 10] [0320172202] +17:24:13 [ 11] [ 6] [953370] +17:24:13 [ 12] [ 6] [172202] +17:24:13 [ 13] [ 4] [0320] +17:24:13 [ 15] [ 4] [0320] +17:24:13 [ 18] [ 4] [6011] +17:24:13 [ 19] [ 3] [418] +17:24:13 [ 22] [ 3] [021] +17:24:13 [ 25] [ 2] [01] +17:24:13 [ 28] [ 9] [D00002000] +17:24:13 [ 32] [ 6] [668899] +17:24:13 [ 35] [ 32] [6213544000158847=491212015884055] +17:24:13 [ 37] [ 12] [507901856605] +17:24:13 [ 41] [ 8] [03311001] +17:24:13 [ 42] [ 15] [APT ] +17:24:13 [ 43] [ 40] [ BORLIKHAN UNIT PAKSAN ] +17:24:13 [ 49] [ 3] [418] +17:24:13 [ 52] [ 16] [424A1CBA1E7F1BC0] +17:24:13 ============================================================================ +17:24:13 + + +waiting on router queue for slot.... +17:24:13 Sending to : <0> +17:24:13 ============================================================================ +17:24:13 ============================================================================ +17:24:13 Slot Id : <265> +17:24:13 Transaction Type : REQUEST +17:24:13 Received From : +17:24:13 ============================================================================ +17:24:13 FNo. Len. Field Value +17:24:13 ============================================================================ +17:24:13 [ 1] [ 4] [0800] +17:24:13 [ 7] [ 10] [0320102320] +17:24:13 [ 11] [ 6] [157449] +17:24:13 [ 70] [ 3] [301] +17:24:13 ============================================================================ +17:24:13 + + +waiting on router queue for slot.... +17:24:13 Sending to : +17:24:13 ============================================================================ +17:24:13 ============================================================================ +17:24:13 Slot Id : <265> +17:24:13 Transaction Type : RESPONSE +17:24:13 Received From : +17:24:13 ============================================================================ +17:24:13 FNo. Len. Field Value +17:24:13 ============================================================================ +17:24:13 [ 1] [ 4] [0810] +17:24:13 [ 7] [ 10] [0320102320] +17:24:13 [ 11] [ 6] [157449] +17:24:13 [ 39] [ 2] [00] +17:24:13 [ 70] [ 3] [301] +17:24:13 ============================================================================ +17:24:13 Calculate Source COMM Id = 2 +17:24:13 ============================================================================ +17:24:13 + + +waiting on router queue for slot.... +17:24:14 ============================================================================ +17:24:14 Slot Id : <228> +17:24:14 Transaction Type : RESPONSE +17:24:14 Received From : +17:24:14 ============================================================================ +17:24:14 FNo. Len. Field Value +17:24:14 ============================================================================ +17:24:14 [ 1] [ 4] [0210] +17:24:14 [ 2] [ 16] [6213544000158847] +17:24:14 [ 3] [ 6] [010000] +17:24:14 [ 4] [ 12] [000100000000] +17:24:14 [ 7] [ 10] [0320172202] +17:24:14 [ 11] [ 6] [953370] +17:24:14 [ 12] [ 6] [172202] +17:24:14 [ 13] [ 4] [0320] +17:24:14 [ 15] [ 4] [0320] +17:24:14 [ 18] [ 4] [6011] +17:24:14 [ 19] [ 3] [418] +17:24:14 [ 32] [ 6] [668899] +17:24:14 [ 35] [ 32] [6213544000158847=491212015884055] +17:24:14 [ 37] [ 12] [507901856605] +17:24:14 [ 38] [ 6] [423679] +17:24:14 [ 39] [ 2] [00] +17:24:14 [ 41] [ 8] [03311001] +17:24:14 [ 49] [ 3] [418] +17:24:14 [ 54] [ 40] [0001418C0001291586770002418C000129158677] +17:24:14 ============================================================================ +17:24:14 Sending to : +17:24:14 ============================================================================ +17:24:14 + + +waiting on router queue for slot.... +17:24:14 ============================================================================ +17:24:14 Slot Id : <256> +17:24:14 Transaction Type : RESPONSE +17:24:14 Received From : +17:24:14 ============================================================================ +17:24:14 FNo. Len. Field Value +17:24:14 ============================================================================ +17:24:14 [ 1] [ 4] [0210] +17:24:14 [ 2] [ 16] [6213544002199872] +17:24:14 [ 3] [ 6] [011000] +17:24:14 [ 4] [ 12] [000040000000] +17:24:14 [ 7] [ 10] [0320172432] +17:24:14 [ 11] [ 6] [209500] +17:24:14 [ 12] [ 6] [171938] +17:24:14 [ 13] [ 4] [0320] +17:24:14 [ 15] [ 4] [0320] +17:24:14 [ 18] [ 4] [6011] +17:24:14 [ 19] [ 3] [418] +17:24:14 [ 32] [ 6] [198901] +17:24:14 [ 35] [ 32] [6213544002199872=491212019987053] +17:24:14 [ 37] [ 12] [507917209500] +17:24:14 [ 38] [ 6] [813388] +17:24:14 [ 39] [ 2] [00] +17:24:14 [ 41] [ 8] [19529001] +17:24:14 [ 49] [ 3] [418] +17:24:14 [ 54] [ 40] [1001418C0000157495791002418C000015749579] +17:24:14 ============================================================================ +17:24:14 Calculate Source COMM Id = 5 +17:24:14 ============================================================================ +17:24:14 + + +waiting on router queue for slot.... +17:24:15 ============================================================================ +17:24:15 Slot Id : <274> +17:24:15 Transaction Type : REQUEST +17:24:15 Received From : +17:24:15 ============================================================================ +17:24:15 FNo. Len. Field Value +17:24:15 ============================================================================ +17:24:15 [ 1] [ 4] [0200] +17:24:15 [ 2] [ 16] [6213543000164573] +17:24:15 [ 3] [ 6] [301000] +17:24:15 [ 4] [ 12] [000000000000] +17:24:15 [ 7] [ 10] [0320172205] +17:24:15 [ 11] [ 6] [953371] +17:24:15 [ 12] [ 6] [172205] +17:24:15 [ 13] [ 4] [0320] +17:24:15 [ 15] [ 4] [0320] +17:24:15 [ 18] [ 4] [6011] +17:24:15 [ 19] [ 3] [418] +17:24:15 [ 22] [ 3] [021] +17:24:15 [ 25] [ 2] [01] +17:24:15 [ 28] [ 9] [D00000000] +17:24:15 [ 32] [ 6] [668899] +17:24:15 [ 35] [ 32] [6213543000164573=491212016457258] +17:24:15 [ 37] [ 12] [507901422837] +17:24:15 [ 41] [ 8] [03314001] +17:24:15 [ 42] [ 15] [APT ] +17:24:15 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +17:24:15 [ 49] [ 3] [418] +17:24:15 [ 52] [ 16] [5BE0D6193DBA11F2] +17:24:15 ============================================================================ +17:24:15 + + +waiting on router queue for slot.... +17:24:15 Sending to : +17:24:15 ============================================================================ +17:24:15 Sending to : +17:24:15 ============================================================================ +17:24:15 ============================================================================ +17:24:15 Slot Id : <274> +17:24:15 Transaction Type : REQUEST +17:24:15 Received From : +17:24:15 ============================================================================ +17:24:15 FNo. Len. Field Value +17:24:15 ============================================================================ +17:24:15 [ 1] [ 4] [0200] +17:24:15 [ 2] [ 16] [6213543000164573] +17:24:15 [ 3] [ 6] [301000] +17:24:15 [ 4] [ 12] [000000000000] +17:24:15 [ 7] [ 10] [0320172205] +17:24:15 [ 11] [ 6] [953371] +17:24:15 [ 12] [ 6] [172205] +17:24:15 [ 13] [ 4] [0320] +17:24:15 [ 15] [ 4] [0320] +17:24:15 [ 18] [ 4] [6011] +17:24:15 [ 19] [ 3] [418] +17:24:15 [ 22] [ 3] [021] +17:24:15 [ 25] [ 2] [01] +17:24:15 [ 28] [ 9] [D00000000] +17:24:15 [ 32] [ 6] [668899] +17:24:15 [ 35] [ 32] [6213543000164573=491212016457258] +17:24:15 [ 37] [ 12] [507901422837] +17:24:15 [ 41] [ 8] [03314001] +17:24:15 [ 42] [ 15] [APT ] +17:24:15 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +17:24:15 [ 49] [ 3] [418] +17:24:15 [ 52] [ 16] [5BE0D6193DBA11F2] +17:24:15 ============================================================================ +17:24:15 + + +waiting on router queue for slot.... +17:24:15 Sending to : +17:24:15 ============================================================================ +17:24:15 ============================================================================ +17:24:15 Slot Id : <274> +17:24:15 Transaction Type : REQUEST +17:24:15 Received From : +17:24:15 ============================================================================ +17:24:15 FNo. Len. Field Value +17:24:15 ============================================================================ +17:24:15 [ 1] [ 4] [0200] +17:24:15 [ 2] [ 16] [6213543000164573] +17:24:15 [ 3] [ 6] [301000] +17:24:15 [ 4] [ 12] [000000000000] +17:24:15 [ 7] [ 10] [0320172205] +17:24:15 [ 11] [ 6] [953371] +17:24:15 [ 12] [ 6] [172205] +17:24:15 [ 13] [ 4] [0320] +17:24:15 [ 15] [ 4] [0320] +17:24:15 [ 18] [ 4] [6011] +17:24:15 [ 19] [ 3] [418] +17:24:15 [ 22] [ 3] [021] +17:24:15 [ 25] [ 2] [01] +17:24:15 [ 28] [ 9] [D00000000] +17:24:15 [ 32] [ 6] [668899] +17:24:15 [ 35] [ 32] [6213543000164573=491212016457258] +17:24:15 [ 37] [ 12] [507901422837] +17:24:15 [ 41] [ 8] [03314001] +17:24:15 [ 42] [ 15] [APT ] +17:24:15 [ 43] [ 40] [ CHAMPHONE UNIT SAVANNAKHE] +17:24:15 [ 49] [ 3] [418] +17:24:15 [ 52] [ 16] [81A98FC8A21E50D2] +17:24:15 ============================================================================ +17:24:15 + + +waiting on router queue for slot.... +17:24:15 Sending to : <0> +17:24:15 ============================================================================ +17:24:15 ============================================================================ +17:24:15 Slot Id : <247> +17:24:15 Transaction Type : REQUEST +17:24:15 Received From : +17:24:15 ============================================================================ +17:24:15 FNo. Len. Field Value +17:24:15 ============================================================================ +17:24:15 [ 1] [ 4] [0800] +17:24:15 [ 7] [ 10] [0321003604] +17:24:15 [ 11] [ 6] [173604] +17:24:15 [ 37] [ 12] [57917173604] +17:24:15 [ 70] [ 3] [301] +17:24:15 ============================================================================ +17:24:15 + + +waiting on router queue for slot.... +17:24:15 Sending to : +17:24:15 ============================================================================ +17:24:15 ============================================================================ +17:24:15 Slot Id : <247> +17:24:15 Transaction Type : RESPONSE +17:24:15 Received From : +17:24:15 ============================================================================ +17:24:15 FNo. Len. Field Value +17:24:15 ============================================================================ +17:24:15 [ 1] [ 4] [0810] +17:24:15 [ 7] [ 10] [0321003604] +17:24:15 [ 11] [ 6] [173604] +17:24:15 [ 37] [ 12] [579171736040] +17:24:15 [ 39] [ 2] [00] +17:24:15 [ 70] [ 3] [810] +17:24:15 ============================================================================ +17:24:15 Calculate Source COMM Id = 6 +17:24:15 ============================================================================ +17:24:15 + + +waiting on router queue for slot.... +17:24:16 ============================================================================ +17:24:16 Slot Id : <274> +17:24:16 Transaction Type : RESPONSE +17:24:16 Received From : +17:24:16 ============================================================================ +17:24:16 FNo. Len. Field Value +17:24:16 ============================================================================ +17:24:16 [ 1] [ 4] [0210] +17:24:16 [ 2] [ 16] [6213543000164573] +17:24:16 [ 3] [ 6] [301000] +17:24:16 [ 4] [ 12] [000000000000] +17:24:16 [ 7] [ 10] [0320172205] +17:24:16 [ 11] [ 6] [953371] +17:24:16 [ 12] [ 6] [172205] +17:24:16 [ 13] [ 4] [0320] +17:24:16 [ 15] [ 4] [0320] +17:24:16 [ 18] [ 4] [6011] +17:24:16 [ 19] [ 3] [418] +17:24:16 [ 32] [ 6] [668899] +17:24:16 [ 35] [ 32] [6213543000164573=491212016457258] +17:24:16 [ 37] [ 12] [507901422837] +17:24:16 [ 38] [ 6] [771205] +17:24:16 [ 39] [ 2] [00] +17:24:16 [ 41] [ 8] [03314001] +17:24:16 [ 49] [ 3] [418] +17:24:16 [ 54] [ 40] [1001418C0014120809181002418C001412080918] +17:24:16 ============================================================================ +17:24:16 Sending to : +17:24:16 ============================================================================ +17:24:16 + + +waiting on router queue for slot.... +17:24:16 ============================================================================ +17:24:16 Slot Id : <228> +17:24:16 Transaction Type : RESPONSE +17:24:16 Received From : +17:24:16 ============================================================================ +17:24:16 FNo. Len. Field Value +17:24:16 ============================================================================ +17:24:16 [ 1] [ 4] [0210] +17:24:16 [ 2] [ 16] [6213544000158847] +17:24:16 [ 3] [ 6] [010000] +17:24:16 [ 4] [ 12] [000100000000] +17:24:16 [ 7] [ 10] [0320172202] +17:24:16 [ 11] [ 6] [953370] +17:24:16 [ 12] [ 6] [172202] +17:24:16 [ 13] [ 4] [0320] +17:24:16 [ 15] [ 4] [0320] +17:24:16 [ 18] [ 4] [6011] +17:24:16 [ 19] [ 3] [418] +17:24:16 [ 32] [ 6] [668899] +17:24:16 [ 35] [ 32] [6213544000158847=491212015884055] +17:24:16 [ 37] [ 12] [507901856605] +17:24:16 [ 38] [ 6] [423679] +17:24:16 [ 39] [ 2] [00] +17:24:16 [ 41] [ 8] [03311001] +17:24:16 [ 49] [ 3] [418] +17:24:16 [ 54] [ 40] [0001418C0001291586770002418C000129158677] +17:24:16 ============================================================================ +17:24:16 Calculate Source COMM Id = 4 +17:24:16 ============================================================================ +17:24:16 + + +waiting on router queue for slot.... +17:24:17 ============================================================================ +17:24:17 Slot Id : <274> +17:24:17 Transaction Type : RESPONSE +17:24:17 Received From : +17:24:17 ============================================================================ +17:24:17 FNo. Len. Field Value +17:24:17 ============================================================================ +17:24:17 [ 1] [ 4] [0210] +17:24:17 [ 2] [ 16] [6213543000164573] +17:24:17 [ 3] [ 6] [301000] +17:24:17 [ 4] [ 12] [000000000000] +17:24:17 [ 7] [ 10] [0320172205] +17:24:17 [ 11] [ 6] [953371] +17:24:17 [ 12] [ 6] [172205] +17:24:17 [ 13] [ 4] [0320] +17:24:17 [ 15] [ 4] [0320] +17:24:17 [ 18] [ 4] [6011] +17:24:17 [ 19] [ 3] [418] +17:24:17 [ 32] [ 6] [668899] +17:24:17 [ 35] [ 32] [6213543000164573=491212016457258] +17:24:17 [ 37] [ 12] [507901422837] +17:24:17 [ 38] [ 6] [771205] +17:24:17 [ 39] [ 2] [00] +17:24:17 [ 41] [ 8] [03314001] +17:24:17 [ 49] [ 3] [418] +17:24:17 [ 54] [ 40] [1001418C0014120809181002418C001412080918] +17:24:17 ============================================================================ +17:24:17 Calculate Source COMM Id = 4 +17:24:17 ============================================================================ +17:24:17 + + +waiting on router queue for slot.... +17:24:19 ============================================================================ +17:24:19 Slot Id : <264> +17:24:19 Transaction Type : REQUEST +17:24:19 Received From : +17:24:19 ============================================================================ +17:24:19 FNo. Len. Field Value +17:24:19 ============================================================================ +17:24:19 [ 1] [ 4] [0800] +17:24:19 [ 2] [ 5] [02531] +17:24:19 [ 3] [ 6] [579178] +17:24:19 [ 7] [ 10] [0320102419] +17:24:19 [ 11] [ 6] [807422] +17:24:19 [ 15] [ 10] [0320102419] +17:24:19 [ 37] [ 11] [57917807422] +17:24:19 [ 70] [ 3] [001] +17:24:19 ============================================================================ +17:24:19 + + +waiting on router queue for slot.... +17:24:19 ============================================================================ +17:24:19 Slot Id : <264> +17:24:19 Transaction Type : RESPONSE +17:24:19 Received From : +17:24:19 ============================================================================ +17:24:19 FNo. Len. Field Value +17:24:19 ============================================================================ +17:24:19 [ 1] [ 4] [0810] +17:24:19 [ 7] [ 10] [0320102419] +17:24:19 [ 11] [ 6] [807422] +17:24:19 [ 15] [ 4] [0320] +17:24:19 [ 37] [ 12] [57917807422] +17:24:19 [ 39] [ 2] [00] +17:24:19 [ 70] [ 3] [001] +17:24:19 ============================================================================ +17:24:19 Sending to : +17:24:19 ============================================================================ +17:24:19 + + +waiting on router queue for slot.... +17:24:22 ============================================================================ +17:24:22 Slot Id : <220> +17:24:22 Transaction Type : REQUEST +17:24:22 Received From : +17:24:22 ============================================================================ +17:24:22 FNo. Len. Field Value +17:24:22 ============================================================================ +17:24:22 [ 1] [ 4] [0200] +17:24:22 [ 2] [ 16] [6213548000243376] +17:24:22 [ 3] [ 6] [010000] +17:24:22 [ 4] [ 12] [000010000000] +17:24:22 [ 7] [ 10] [0320102328] +17:24:22 [ 11] [ 6] [270836] +17:24:22 [ 12] [ 6] [172328] +17:24:22 [ 13] [ 4] [0320] +17:24:22 [ 14] [ 4] [1801] +17:24:22 [ 15] [ 4] [0320] +17:24:22 [ 18] [ 4] [6011] +17:24:22 [ 19] [ 3] [418] +17:24:22 [ 22] [ 3] [021] +17:24:22 [ 25] [ 2] [01] +17:24:22 [ 28] [ 9] [D00002000] +17:24:22 [ 32] [ 6] [180893] +17:24:22 [ 35] [ 32] [6213548000243376=180112014337216] +17:24:22 [ 37] [ 12] [507910270836] +17:24:22 [ 41] [ 8] [0523XYNG] +17:24:22 [ 42] [ 15] [999999 ] +17:24:22 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +17:24:22 [ 49] [ 3] [418] +17:24:22 [ 52] [ 16] [9534CC283168533F] +17:24:22 ============================================================================ +17:24:22 + + +waiting on router queue for slot.... +17:24:22 Sending to : +17:24:22 ============================================================================ +17:24:22 Sending to : +17:24:22 ============================================================================ +17:24:23 ============================================================================ +17:24:23 Slot Id : <220> +17:24:23 Transaction Type : REQUEST +17:24:23 Received From : +17:24:23 ============================================================================ +17:24:23 FNo. Len. Field Value +17:24:23 ============================================================================ +17:24:23 [ 1] [ 4] [0200] +17:24:23 [ 2] [ 16] [6213548000243376] +17:24:23 [ 3] [ 6] [010000] +17:24:23 [ 4] [ 12] [000010000000] +17:24:23 [ 7] [ 10] [0320102328] +17:24:23 [ 11] [ 6] [270836] +17:24:23 [ 12] [ 6] [172328] +17:24:23 [ 13] [ 4] [0320] +17:24:23 [ 14] [ 4] [1801] +17:24:23 [ 15] [ 4] [0320] +17:24:23 [ 18] [ 4] [6011] +17:24:23 [ 19] [ 3] [418] +17:24:23 [ 22] [ 3] [021] +17:24:23 [ 25] [ 2] [01] +17:24:23 [ 28] [ 9] [D00002000] +17:24:23 [ 32] [ 6] [180893] +17:24:23 [ 35] [ 32] [6213548000243376=180112014337216] +17:24:23 [ 37] [ 12] [507910270836] +17:24:23 [ 41] [ 8] [0523XYNG] +17:24:23 [ 42] [ 15] [999999 ] +17:24:23 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +17:24:23 [ 49] [ 3] [418] +17:24:23 [ 52] [ 16] [9534CC283168533F] +17:24:23 ============================================================================ +17:24:23 + + +waiting on router queue for slot.... +17:24:23 Sending to : +17:24:23 ============================================================================ +17:24:23 ============================================================================ +17:24:23 Slot Id : <220> +17:24:23 Transaction Type : REQUEST +17:24:23 Received From : +17:24:23 ============================================================================ +17:24:23 FNo. Len. Field Value +17:24:23 ============================================================================ +17:24:23 [ 1] [ 4] [0200] +17:24:23 [ 2] [ 16] [6213548000243376] +17:24:23 [ 3] [ 6] [010000] +17:24:23 [ 4] [ 12] [000010000000] +17:24:23 [ 7] [ 10] [0320102328] +17:24:23 [ 11] [ 6] [270836] +17:24:23 [ 12] [ 6] [172328] +17:24:23 [ 13] [ 4] [0320] +17:24:23 [ 14] [ 4] [1801] +17:24:23 [ 15] [ 4] [0320] +17:24:23 [ 18] [ 4] [6011] +17:24:23 [ 19] [ 3] [418] +17:24:23 [ 22] [ 3] [021] +17:24:23 [ 25] [ 2] [01] +17:24:23 [ 28] [ 9] [D00002000] +17:24:23 [ 32] [ 6] [180893] +17:24:23 [ 35] [ 32] [6213548000243376=180112014337216] +17:24:23 [ 37] [ 12] [507910270836] +17:24:23 [ 41] [ 8] [0523XYNG] +17:24:23 [ 42] [ 15] [999999 ] +17:24:23 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +17:24:23 [ 49] [ 3] [418] +17:24:23 [ 52] [ 16] [64E424F028394648] +17:24:23 ============================================================================ +17:24:23 + + +waiting on router queue for slot.... +17:24:23 Sending to : <0> +17:24:23 ============================================================================ +17:24:23 ============================================================================ +17:24:23 Slot Id : <220> +17:24:23 Transaction Type : RESPONSE +17:24:23 Received From : +17:24:23 ============================================================================ +17:24:23 FNo. Len. Field Value +17:24:23 ============================================================================ +17:24:23 [ 1] [ 4] [0210] +17:24:23 [ 2] [ 16] [6213548000243376] +17:24:23 [ 3] [ 6] [010000] +17:24:23 [ 4] [ 12] [000010000000] +17:24:23 [ 7] [ 10] [0320102328] +17:24:23 [ 11] [ 6] [270836] +17:24:23 [ 12] [ 6] [172328] +17:24:23 [ 13] [ 4] [0320] +17:24:23 [ 15] [ 4] [0320] +17:24:23 [ 18] [ 4] [6011] +17:24:23 [ 19] [ 3] [418] +17:24:23 [ 32] [ 6] [180893] +17:24:23 [ 35] [ 32] [6213548000243376=180112014337216] +17:24:23 [ 37] [ 12] [507910270836] +17:24:23 [ 38] [ 6] [125485] +17:24:23 [ 39] [ 2] [00] +17:24:23 [ 41] [ 8] [0523XYNG] +17:24:23 [ 49] [ 3] [418] +17:24:23 [ 54] [ 40] [0001418C0000070549340002418C000007054934] +17:24:23 ============================================================================ +17:24:23 Sending to : +17:24:23 ============================================================================ +17:24:23 + + +waiting on router queue for slot.... +17:24:25 ============================================================================ +17:24:25 Slot Id : <220> +17:24:25 Transaction Type : RESPONSE +17:24:25 Received From : +17:24:25 ============================================================================ +17:24:25 FNo. Len. Field Value +17:24:25 ============================================================================ +17:24:25 [ 1] [ 4] [0210] +17:24:25 [ 2] [ 16] [6213548000243376] +17:24:25 [ 3] [ 6] [010000] +17:24:25 [ 4] [ 12] [000010000000] +17:24:25 [ 7] [ 10] [0320102328] +17:24:25 [ 11] [ 6] [270836] +17:24:25 [ 12] [ 6] [172328] +17:24:25 [ 13] [ 4] [0320] +17:24:25 [ 15] [ 4] [0320] +17:24:25 [ 18] [ 4] [6011] +17:24:25 [ 19] [ 3] [418] +17:24:25 [ 32] [ 6] [180893] +17:24:25 [ 35] [ 32] [6213548000243376=180112014337216] +17:24:25 [ 37] [ 12] [507910270836] +17:24:25 [ 38] [ 6] [125485] +17:24:25 [ 39] [ 2] [00] +17:24:25 [ 41] [ 8] [0523XYNG] +17:24:25 [ 49] [ 3] [418] +17:24:25 [ 54] [ 40] [0001418C0000070549340002418C000007054934] +17:24:25 ============================================================================ +17:24:25 Calculate Source COMM Id = 2 +17:24:25 ============================================================================ +17:24:25 + + +waiting on router queue for slot.... +17:24:26 ============================================================================ +17:24:26 Slot Id : <231> +17:24:26 Transaction Type : REQUEST +17:24:26 Received From : +17:24:26 ============================================================================ +17:24:26 FNo. Len. Field Value +17:24:26 ============================================================================ +17:24:26 [ 1] [ 4] [0200] +17:24:26 [ 2] [ 16] [6688990040072561] +17:24:26 [ 3] [ 6] [301000] +17:24:26 [ 4] [ 12] [000000000000] +17:24:26 [ 7] [ 10] [0320172421] +17:24:26 [ 11] [ 6] [814760] +17:24:26 [ 12] [ 6] [172421] +17:24:26 [ 13] [ 4] [0320] +17:24:26 [ 15] [ 4] [0320] +17:24:26 [ 18] [ 4] [6011] +17:24:26 [ 22] [ 3] [900] +17:24:26 [ 25] [ 2] [02] +17:24:26 [ 28] [ 9] [D00000000] +17:24:26 [ 32] [ 6] [621354] +17:24:26 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:24:26 [ 37] [ 12] [507903499665] +17:24:26 [ 41] [ 8] [06002200] +17:24:26 [ 42] [ 15] [NATIVE ] +17:24:26 [ 43] [ 40] [Beng Market Beng LAO] +17:24:26 [ 49] [ 3] [418] +17:24:26 [ 52] [ 16] [8F4569422EC9DC11] +17:24:26 ============================================================================ +17:24:26 + + +waiting on router queue for slot.... +17:24:26 Sending to : +17:24:26 ============================================================================ +17:24:26 Sending to : +17:24:26 ============================================================================ +17:24:26 ============================================================================ +17:24:26 Slot Id : <231> +17:24:26 Transaction Type : REQUEST +17:24:26 Received From : +17:24:26 ============================================================================ +17:24:26 FNo. Len. Field Value +17:24:26 ============================================================================ +17:24:26 [ 1] [ 4] [0200] +17:24:26 [ 2] [ 16] [6688990040072561] +17:24:26 [ 3] [ 6] [301000] +17:24:26 [ 4] [ 12] [000000000000] +17:24:26 [ 7] [ 10] [0320172421] +17:24:26 [ 11] [ 6] [814760] +17:24:26 [ 12] [ 6] [172421] +17:24:26 [ 13] [ 4] [0320] +17:24:26 [ 15] [ 4] [0320] +17:24:26 [ 18] [ 4] [6011] +17:24:26 [ 22] [ 3] [900] +17:24:26 [ 25] [ 2] [02] +17:24:26 [ 28] [ 9] [D00000000] +17:24:26 [ 32] [ 6] [621354] +17:24:26 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:24:26 [ 37] [ 12] [507903499665] +17:24:26 [ 41] [ 8] [06002200] +17:24:26 [ 42] [ 15] [NATIVE ] +17:24:26 [ 43] [ 40] [Beng Market Beng LAO] +17:24:26 [ 49] [ 3] [418] +17:24:26 [ 52] [ 16] [8F4569422EC9DC11] +17:24:26 ============================================================================ +17:24:26 + + +waiting on router queue for slot.... +17:24:26 Sending to : +17:24:26 ============================================================================ +17:24:27 ============================================================================ +17:24:27 Slot Id : <231> +17:24:27 Transaction Type : REQUEST +17:24:27 Received From : +17:24:27 ============================================================================ +17:24:27 FNo. Len. Field Value +17:24:27 ============================================================================ +17:24:27 [ 1] [ 4] [0200] +17:24:27 [ 2] [ 16] [6688990040072561] +17:24:27 [ 3] [ 6] [301000] +17:24:27 [ 4] [ 12] [000000000000] +17:24:27 [ 7] [ 10] [0320172421] +17:24:27 [ 11] [ 6] [814760] +17:24:27 [ 12] [ 6] [172421] +17:24:27 [ 13] [ 4] [0320] +17:24:27 [ 15] [ 4] [0320] +17:24:27 [ 18] [ 4] [6011] +17:24:27 [ 22] [ 3] [900] +17:24:27 [ 25] [ 2] [02] +17:24:27 [ 28] [ 9] [D00000000] +17:24:27 [ 32] [ 6] [621354] +17:24:27 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:24:27 [ 37] [ 12] [507903499665] +17:24:27 [ 41] [ 8] [06002200] +17:24:27 [ 42] [ 15] [NATIVE ] +17:24:27 [ 43] [ 40] [Beng Market Beng LAO] +17:24:27 [ 49] [ 3] [418] +17:24:27 [ 52] [ 16] [ED280CF8FD8967F6] +17:24:27 ============================================================================ +17:24:27 + + +waiting on router queue for slot.... +17:24:27 Sending to : <4> +17:24:27 ============================================================================ +17:24:27 ============================================================================ +17:24:27 Slot Id : <231> +17:24:27 Transaction Type : RESPONSE +17:24:27 Received From : +17:24:27 ============================================================================ +17:24:27 FNo. Len. Field Value +17:24:27 ============================================================================ +17:24:27 [ 1] [ 4] [0210] +17:24:27 [ 2] [ 16] [6688990040072561] +17:24:27 [ 3] [ 6] [301000] +17:24:27 [ 4] [ 12] [000000000000] +17:24:27 [ 11] [ 6] [814760] +17:24:27 [ 12] [ 6] [172421] +17:24:27 [ 15] [ 4] [0320] +17:24:27 [ 18] [ 4] [6011] +17:24:27 [ 32] [ 6] [621354] +17:24:27 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:24:27 [ 37] [ 12] [507903499665] +17:24:27 [ 38] [ 6] [767998] +17:24:27 [ 39] [ 2] [00] +17:24:27 [ 41] [ 8] [06002200] +17:24:27 [ 49] [ 3] [418] +17:24:27 [ 54] [ 20] [1002418C000334779657] +17:24:27 ============================================================================ +17:24:27 Sending to : +17:24:27 ============================================================================ +17:24:27 + + +waiting on router queue for slot.... +17:24:29 ============================================================================ +17:24:29 Slot Id : <231> +17:24:29 Transaction Type : RESPONSE +17:24:29 Received From : +17:24:29 ============================================================================ +17:24:29 FNo. Len. Field Value +17:24:29 ============================================================================ +17:24:29 [ 1] [ 4] [0210] +17:24:29 [ 2] [ 16] [6688990040072561] +17:24:29 [ 3] [ 6] [301000] +17:24:29 [ 4] [ 12] [000000000000] +17:24:29 [ 11] [ 6] [814760] +17:24:29 [ 12] [ 6] [172421] +17:24:29 [ 15] [ 4] [0320] +17:24:29 [ 18] [ 4] [6011] +17:24:29 [ 32] [ 6] [621354] +17:24:29 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:24:29 [ 37] [ 12] [507903499665] +17:24:29 [ 38] [ 6] [767998] +17:24:29 [ 39] [ 2] [00] +17:24:29 [ 41] [ 8] [06002200] +17:24:29 [ 49] [ 3] [418] +17:24:29 [ 54] [ 20] [1002418C000334779657] +17:24:29 ============================================================================ +17:24:29 Calculate Source COMM Id = 0 +17:24:29 ============================================================================ +17:24:29 + + +waiting on router queue for slot.... +17:24:34 ============================================================================ +17:24:34 Slot Id : <279> +17:24:34 Transaction Type : REQUEST +17:24:34 Received From : +17:24:34 ============================================================================ +17:24:34 FNo. Len. Field Value +17:24:34 ============================================================================ +17:24:34 [ 1] [ 4] [0200] +17:24:34 [ 2] [ 16] [1989010003170349] +17:24:34 [ 3] [ 6] [010000] +17:24:34 [ 4] [ 12] [000020000000] +17:24:34 [ 7] [ 10] [0320172224] +17:24:34 [ 11] [ 6] [953377] +17:24:34 [ 12] [ 6] [172224] +17:24:34 [ 13] [ 4] [0320] +17:24:34 [ 15] [ 4] [0320] +17:24:34 [ 18] [ 4] [6011] +17:24:34 [ 19] [ 3] [418] +17:24:34 [ 22] [ 3] [021] +17:24:34 [ 25] [ 2] [01] +17:24:34 [ 28] [ 9] [D00002000] +17:24:34 [ 32] [ 6] [668899] +17:24:34 [ 35] [ 32] [1989010003170349=000010100000862] +17:24:34 [ 37] [ 12] [507902104479] +17:24:34 [ 41] [ 8] [03020022] +17:24:34 [ 42] [ 15] [APT ] +17:24:34 [ 43] [ 40] [ ARMY MART LAK 5 CHOMMANY ] +17:24:34 [ 49] [ 3] [418] +17:24:34 [ 52] [ 16] [81B51B317F2BAE20] +17:24:34 ============================================================================ +17:24:34 + + +waiting on router queue for slot.... +17:24:34 Sending to : +17:24:34 ============================================================================ +17:24:34 Sending to : +17:24:34 ============================================================================ +17:24:34 ============================================================================ +17:24:34 Slot Id : <279> +17:24:34 Transaction Type : REQUEST +17:24:34 Received From : +17:24:34 ============================================================================ +17:24:34 FNo. Len. Field Value +17:24:34 ============================================================================ +17:24:34 [ 1] [ 4] [0200] +17:24:34 [ 2] [ 16] [1989010003170349] +17:24:34 [ 3] [ 6] [010000] +17:24:34 [ 4] [ 12] [000020000000] +17:24:34 [ 7] [ 10] [0320172224] +17:24:34 [ 11] [ 6] [953377] +17:24:34 [ 12] [ 6] [172224] +17:24:34 [ 13] [ 4] [0320] +17:24:34 [ 15] [ 4] [0320] +17:24:34 [ 18] [ 4] [6011] +17:24:34 [ 19] [ 3] [418] +17:24:34 [ 22] [ 3] [021] +17:24:34 [ 25] [ 2] [01] +17:24:34 [ 28] [ 9] [D00002000] +17:24:34 [ 32] [ 6] [668899] +17:24:34 [ 35] [ 32] [1989010003170349=000010100000862] +17:24:34 [ 37] [ 12] [507902104479] +17:24:34 [ 41] [ 8] [03020022] +17:24:34 [ 42] [ 15] [APT ] +17:24:34 [ 43] [ 40] [ ARMY MART LAK 5 CHOMMANY ] +17:24:34 [ 49] [ 3] [418] +17:24:34 [ 52] [ 16] [81B51B317F2BAE20] +17:24:34 ============================================================================ +17:24:34 + + +waiting on router queue for slot.... +17:24:34 Sending to : +17:24:34 ============================================================================ +17:24:34 ============================================================================ +17:24:34 Slot Id : <279> +17:24:34 Transaction Type : REQUEST +17:24:34 Received From : +17:24:34 ============================================================================ +17:24:34 FNo. Len. Field Value +17:24:34 ============================================================================ +17:24:34 [ 1] [ 4] [0200] +17:24:34 [ 2] [ 16] [1989010003170349] +17:24:34 [ 3] [ 6] [010000] +17:24:34 [ 4] [ 12] [000020000000] +17:24:34 [ 7] [ 10] [0320172224] +17:24:34 [ 11] [ 6] [953377] +17:24:34 [ 12] [ 6] [172224] +17:24:34 [ 13] [ 4] [0320] +17:24:34 [ 15] [ 4] [0320] +17:24:34 [ 18] [ 4] [6011] +17:24:34 [ 19] [ 3] [418] +17:24:34 [ 22] [ 3] [021] +17:24:34 [ 25] [ 2] [01] +17:24:34 [ 28] [ 9] [D00002000] +17:24:34 [ 32] [ 6] [668899] +17:24:34 [ 35] [ 32] [1989010003170349=000010100000862] +17:24:34 [ 37] [ 12] [507902104479] +17:24:34 [ 41] [ 8] [03020022] +17:24:34 [ 42] [ 15] [APT ] +17:24:34 [ 43] [ 40] [ ARMY MART LAK 5 CHOMMANY ] +17:24:34 [ 49] [ 3] [418] +17:24:34 [ 52] [ 16] [5EC8A50EE0F0B56F] +17:24:34 ============================================================================ +17:24:34 + + +waiting on router queue for slot.... +17:24:34 Sending to : <5> +17:24:34 ============================================================================ +17:24:40 ============================================================================ +17:24:40 Slot Id : <279> +17:24:40 Transaction Type : RESPONSE +17:24:40 Received From : +17:24:40 ============================================================================ +17:24:40 FNo. Len. Field Value +17:24:40 ============================================================================ +17:24:40 [ 1] [ 4] [0210] +17:24:40 [ 2] [ 16] [1989010003170349] +17:24:40 [ 3] [ 6] [010000] +17:24:40 [ 4] [ 12] [000020000000] +17:24:40 [ 7] [ 10] [0320172224] +17:24:40 [ 11] [ 6] [953377] +17:24:40 [ 12] [ 6] [172224] +17:24:40 [ 13] [ 4] [0320] +17:24:40 [ 15] [ 4] [0320] +17:24:40 [ 18] [ 4] [6011] +17:24:40 [ 19] [ 3] [418] +17:24:40 [ 32] [ 6] [668899] +17:24:40 [ 37] [ 12] [507902104479] +17:24:40 [ 38] [ 6] [983483] +17:24:40 [ 39] [ 2] [00] +17:24:40 [ 41] [ 8] [03020022] +17:24:40 [ 49] [ 3] [418] +17:24:40 [ 54] [ 20] [0001418C000014186600] +17:24:40 ============================================================================ +17:24:40 Sending to : +17:24:40 ============================================================================ +17:24:40 + + +waiting on router queue for slot.... +17:24:40 ============================================================================ +17:24:40 Slot Id : <273> +17:24:40 Transaction Type : REQUEST +17:24:40 Received From : +17:24:40 ============================================================================ +17:24:40 FNo. Len. Field Value +17:24:40 ============================================================================ +17:24:40 [ 1] [ 4] [0800] +17:24:40 [ 7] [ 10] [0320102347] +17:24:40 [ 11] [ 6] [157450] +17:24:40 [ 70] [ 3] [301] +17:24:40 ============================================================================ +17:24:40 + + +waiting on router queue for slot.... +17:24:40 Sending to : +17:24:40 ============================================================================ +17:24:40 ============================================================================ +17:24:40 Slot Id : <273> +17:24:40 Transaction Type : RESPONSE +17:24:40 Received From : +17:24:40 ============================================================================ +17:24:40 FNo. Len. Field Value +17:24:40 ============================================================================ +17:24:40 [ 1] [ 4] [0810] +17:24:40 [ 7] [ 10] [0320102347] +17:24:40 [ 11] [ 6] [157450] +17:24:40 [ 39] [ 2] [00] +17:24:40 [ 70] [ 3] [301] +17:24:40 ============================================================================ +17:24:40 Calculate Source COMM Id = 2 +17:24:40 ============================================================================ +17:24:40 + + +waiting on router queue for slot.... +17:24:41 ============================================================================ +17:24:41 Slot Id : <279> +17:24:41 Transaction Type : RESPONSE +17:24:41 Received From : +17:24:41 ============================================================================ +17:24:41 FNo. Len. Field Value +17:24:41 ============================================================================ +17:24:41 [ 1] [ 4] [0210] +17:24:41 [ 2] [ 16] [1989010003170349] +17:24:41 [ 3] [ 6] [010000] +17:24:41 [ 4] [ 12] [000020000000] +17:24:41 [ 7] [ 10] [0320172224] +17:24:41 [ 11] [ 6] [953377] +17:24:41 [ 12] [ 6] [172224] +17:24:41 [ 13] [ 4] [0320] +17:24:41 [ 15] [ 4] [0320] +17:24:41 [ 18] [ 4] [6011] +17:24:41 [ 19] [ 3] [418] +17:24:41 [ 32] [ 6] [668899] +17:24:41 [ 37] [ 12] [507902104479] +17:24:41 [ 38] [ 6] [983483] +17:24:41 [ 39] [ 2] [00] +17:24:41 [ 41] [ 8] [03020022] +17:24:41 [ 49] [ 3] [418] +17:24:41 [ 54] [ 20] [0001418C000014186600] +17:24:41 ============================================================================ +17:24:41 Calculate Source COMM Id = 4 +17:24:41 ============================================================================ +17:24:41 + + +waiting on router queue for slot.... +17:24:43 ============================================================================ +17:24:43 Slot Id : <239> +17:24:43 Transaction Type : REQUEST +17:24:43 Received From : +17:24:43 ============================================================================ +17:24:43 FNo. Len. Field Value +17:24:43 ============================================================================ +17:24:43 [ 1] [ 4] [0200] +17:24:43 [ 2] [ 16] [6688990040140806] +17:24:43 [ 3] [ 6] [301000] +17:24:43 [ 4] [ 12] [000000000000] +17:24:43 [ 7] [ 10] [0320172438] +17:24:43 [ 11] [ 6] [814843] +17:24:43 [ 12] [ 6] [172438] +17:24:43 [ 13] [ 4] [0320] +17:24:43 [ 15] [ 4] [0320] +17:24:43 [ 18] [ 4] [6011] +17:24:43 [ 22] [ 3] [900] +17:24:43 [ 25] [ 2] [02] +17:24:43 [ 28] [ 9] [D00000000] +17:24:43 [ 32] [ 6] [621354] +17:24:43 [ 35] [ 37] [6688990040140806=98041261622143500000] +17:24:43 [ 37] [ 12] [507904755534] +17:24:43 [ 41] [ 8] [07001100] +17:24:43 [ 42] [ 15] [NATIVE ] +17:24:43 [ 43] [ 40] [Industry Market Namtar LAO] +17:24:43 [ 49] [ 3] [418] +17:24:43 [ 52] [ 16] [7C6EAFEA63F18C45] +17:24:43 ============================================================================ +17:24:43 + + +waiting on router queue for slot.... +17:24:43 Sending to : +17:24:43 ============================================================================ +17:24:43 Sending to : +17:24:43 ============================================================================ +17:24:43 ============================================================================ +17:24:43 Slot Id : <239> +17:24:43 Transaction Type : REQUEST +17:24:43 Received From : +17:24:43 ============================================================================ +17:24:43 FNo. Len. Field Value +17:24:43 ============================================================================ +17:24:43 [ 1] [ 4] [0200] +17:24:43 [ 2] [ 16] [6688990040140806] +17:24:43 [ 3] [ 6] [301000] +17:24:43 [ 4] [ 12] [000000000000] +17:24:43 [ 7] [ 10] [0320172438] +17:24:43 [ 11] [ 6] [814843] +17:24:43 [ 12] [ 6] [172438] +17:24:43 [ 13] [ 4] [0320] +17:24:43 [ 15] [ 4] [0320] +17:24:43 [ 18] [ 4] [6011] +17:24:43 [ 22] [ 3] [900] +17:24:43 [ 25] [ 2] [02] +17:24:43 [ 28] [ 9] [D00000000] +17:24:43 [ 32] [ 6] [621354] +17:24:43 [ 35] [ 37] [6688990040140806=98041261622143500000] +17:24:43 [ 37] [ 12] [507904755534] +17:24:43 [ 41] [ 8] [07001100] +17:24:43 [ 42] [ 15] [NATIVE ] +17:24:43 [ 43] [ 40] [Industry Market Namtar LAO] +17:24:43 [ 49] [ 3] [418] +17:24:43 [ 52] [ 16] [7C6EAFEA63F18C45] +17:24:43 ============================================================================ +17:24:43 + + +waiting on router queue for slot.... +17:24:43 Sending to : +17:24:43 ============================================================================ +17:24:43 ============================================================================ +17:24:43 Slot Id : <239> +17:24:43 Transaction Type : REQUEST +17:24:43 Received From : +17:24:43 ============================================================================ +17:24:43 FNo. Len. Field Value +17:24:43 ============================================================================ +17:24:43 [ 1] [ 4] [0200] +17:24:43 [ 2] [ 16] [6688990040140806] +17:24:43 [ 3] [ 6] [301000] +17:24:43 [ 4] [ 12] [000000000000] +17:24:43 [ 7] [ 10] [0320172438] +17:24:43 [ 11] [ 6] [814843] +17:24:43 [ 12] [ 6] [172438] +17:24:43 [ 13] [ 4] [0320] +17:24:43 [ 15] [ 4] [0320] +17:24:43 [ 18] [ 4] [6011] +17:24:43 [ 22] [ 3] [900] +17:24:43 [ 25] [ 2] [02] +17:24:43 [ 28] [ 9] [D00000000] +17:24:43 [ 32] [ 6] [621354] +17:24:43 [ 35] [ 37] [6688990040140806=98041261622143500000] +17:24:43 [ 37] [ 12] [507904755534] +17:24:43 [ 41] [ 8] [07001100] +17:24:43 [ 42] [ 15] [NATIVE ] +17:24:43 [ 43] [ 40] [Industry Market Namtar LAO] +17:24:43 [ 49] [ 3] [418] +17:24:43 [ 52] [ 16] [C9C3D148E5099F9F] +17:24:43 ============================================================================ +17:24:43 + + +waiting on router queue for slot.... +17:24:43 Sending to : <4> +17:24:43 ============================================================================ +17:24:44 ============================================================================ +17:24:44 Slot Id : <239> +17:24:44 Transaction Type : RESPONSE +17:24:44 Received From : +17:24:44 ============================================================================ +17:24:44 FNo. Len. Field Value +17:24:44 ============================================================================ +17:24:44 [ 1] [ 4] [0210] +17:24:44 [ 2] [ 16] [6688990040140806] +17:24:44 [ 3] [ 6] [301000] +17:24:44 [ 4] [ 12] [000000000000] +17:24:44 [ 11] [ 6] [814843] +17:24:44 [ 12] [ 6] [172438] +17:24:44 [ 15] [ 4] [0320] +17:24:44 [ 18] [ 4] [6011] +17:24:44 [ 32] [ 6] [621354] +17:24:44 [ 35] [ 37] [6688990040140806=98041261622143500000] +17:24:44 [ 37] [ 12] [507904755534] +17:24:44 [ 38] [ 6] [308560] +17:24:44 [ 39] [ 2] [00] +17:24:44 [ 41] [ 8] [07001100] +17:24:44 [ 49] [ 3] [418] +17:24:44 [ 54] [ 20] [1002418C000168595600] +17:24:44 ============================================================================ +17:24:44 Sending to : +17:24:44 ============================================================================ +17:24:44 + + +waiting on router queue for slot.... +17:24:45 ============================================================================ +17:24:45 Slot Id : <239> +17:24:45 Transaction Type : RESPONSE +17:24:45 Received From : +17:24:45 ============================================================================ +17:24:45 FNo. Len. Field Value +17:24:45 ============================================================================ +17:24:45 [ 1] [ 4] [0210] +17:24:45 [ 2] [ 16] [6688990040140806] +17:24:45 [ 3] [ 6] [301000] +17:24:45 [ 4] [ 12] [000000000000] +17:24:45 [ 11] [ 6] [814843] +17:24:45 [ 12] [ 6] [172438] +17:24:45 [ 15] [ 4] [0320] +17:24:45 [ 18] [ 4] [6011] +17:24:45 [ 32] [ 6] [621354] +17:24:45 [ 35] [ 37] [6688990040140806=98041261622143500000] +17:24:45 [ 37] [ 12] [507904755534] +17:24:45 [ 38] [ 6] [308560] +17:24:45 [ 39] [ 2] [00] +17:24:45 [ 41] [ 8] [07001100] +17:24:45 [ 49] [ 3] [418] +17:24:45 [ 54] [ 20] [1002418C000168595600] +17:24:45 ============================================================================ +17:24:45 Calculate Source COMM Id = 0 +17:24:45 ============================================================================ +17:24:45 + + +waiting on router queue for slot.... +17:24:51 ============================================================================ +17:24:51 Slot Id : <272> +17:24:51 Transaction Type : REQUEST +17:24:51 Received From : +17:24:51 ============================================================================ +17:24:51 FNo. Len. Field Value +17:24:51 ============================================================================ +17:24:51 [ 1] [ 4] [0800] +17:24:51 [ 7] [ 10] [0320102357] +17:24:51 [ 11] [ 6] [157451] +17:24:51 [ 70] [ 3] [301] +17:24:51 ============================================================================ +17:24:51 + + +waiting on router queue for slot.... +17:24:51 Sending to : +17:24:51 ============================================================================ +17:24:51 ============================================================================ +17:24:51 Slot Id : <272> +17:24:51 Transaction Type : RESPONSE +17:24:51 Received From : +17:24:51 ============================================================================ +17:24:51 FNo. Len. Field Value +17:24:51 ============================================================================ +17:24:51 [ 1] [ 4] [0810] +17:24:51 [ 7] [ 10] [0320102357] +17:24:51 [ 11] [ 6] [157451] +17:24:51 [ 39] [ 2] [00] +17:24:51 [ 70] [ 3] [301] +17:24:51 ============================================================================ +17:24:51 Calculate Source COMM Id = 2 +17:24:51 ============================================================================ +17:24:51 + + +waiting on router queue for slot.... +17:24:52 ============================================================================ +17:24:52 Slot Id : <252> +17:24:52 Transaction Type : REQUEST +17:24:52 Received From : +17:24:52 ============================================================================ +17:24:52 FNo. Len. Field Value +17:24:52 ============================================================================ +17:24:52 [ 1] [ 4] [0200] +17:24:52 [ 2] [ 16] [6213544000431376] +17:24:52 [ 3] [ 6] [011000] +17:24:52 [ 4] [ 12] [000010000000] +17:24:52 [ 7] [ 10] [0320173239] +17:24:52 [ 11] [ 6] [021186] +17:24:52 [ 12] [ 6] [173239] +17:24:52 [ 13] [ 4] [0320] +17:24:52 [ 14] [ 4] [4912] +17:24:52 [ 15] [ 4] [0320] +17:24:52 [ 18] [ 4] [6011] +17:24:52 [ 22] [ 3] [900] +17:24:52 [ 25] [ 2] [02] +17:24:52 [ 28] [ 9] [D00002000] +17:24:52 [ 32] [ 6] [220699] +17:24:52 [ 35] [ 32] [6213544000431376=491212013137799] +17:24:52 [ 37] [ 12] [507900263129] +17:24:52 [ 41] [ 8] [01001400] +17:24:52 [ 42] [ 15] [APTRA ] +17:24:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:24:52 [ 49] [ 3] [418] +17:24:52 [ 52] [ 16] [012FCFC5FDDB7D72] +17:24:52 ============================================================================ +17:24:52 + + +waiting on router queue for slot.... +17:24:52 Sending to : +17:24:52 ============================================================================ +17:24:52 Sending to : +17:24:52 ============================================================================ +17:24:52 ============================================================================ +17:24:52 Slot Id : <252> +17:24:52 Transaction Type : REQUEST +17:24:52 Received From : +17:24:52 ============================================================================ +17:24:52 FNo. Len. Field Value +17:24:52 ============================================================================ +17:24:52 [ 1] [ 4] [0200] +17:24:52 [ 2] [ 16] [6213544000431376] +17:24:52 [ 3] [ 6] [011000] +17:24:52 [ 4] [ 12] [000010000000] +17:24:52 [ 7] [ 10] [0320173239] +17:24:52 [ 11] [ 6] [021186] +17:24:52 [ 12] [ 6] [173239] +17:24:52 [ 13] [ 4] [0320] +17:24:52 [ 14] [ 4] [4912] +17:24:52 [ 15] [ 4] [0320] +17:24:52 [ 18] [ 4] [6011] +17:24:52 [ 22] [ 3] [900] +17:24:52 [ 25] [ 2] [02] +17:24:52 [ 28] [ 9] [D00002000] +17:24:52 [ 32] [ 6] [220699] +17:24:52 [ 35] [ 32] [6213544000431376=491212013137799] +17:24:52 [ 37] [ 12] [507900263129] +17:24:52 [ 41] [ 8] [01001400] +17:24:52 [ 42] [ 15] [APTRA ] +17:24:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:24:52 [ 49] [ 3] [418] +17:24:52 [ 52] [ 16] [012FCFC5FDDB7D72] +17:24:52 ============================================================================ +17:24:52 + + +waiting on router queue for slot.... +17:24:52 Sending to : +17:24:52 ============================================================================ +17:24:52 ============================================================================ +17:24:52 Slot Id : <252> +17:24:52 Transaction Type : REQUEST +17:24:52 Received From : +17:24:52 ============================================================================ +17:24:52 FNo. Len. Field Value +17:24:52 ============================================================================ +17:24:52 [ 1] [ 4] [0200] +17:24:52 [ 2] [ 16] [6213544000431376] +17:24:52 [ 3] [ 6] [011000] +17:24:52 [ 4] [ 12] [000010000000] +17:24:52 [ 7] [ 10] [0320173239] +17:24:52 [ 11] [ 6] [021186] +17:24:52 [ 12] [ 6] [173239] +17:24:52 [ 13] [ 4] [0320] +17:24:52 [ 14] [ 4] [4912] +17:24:52 [ 15] [ 4] [0320] +17:24:52 [ 18] [ 4] [6011] +17:24:52 [ 22] [ 3] [900] +17:24:52 [ 25] [ 2] [02] +17:24:52 [ 28] [ 9] [D00002000] +17:24:52 [ 32] [ 6] [220699] +17:24:52 [ 35] [ 32] [6213544000431376=491212013137799] +17:24:52 [ 37] [ 12] [507900263129] +17:24:52 [ 41] [ 8] [01001400] +17:24:52 [ 42] [ 15] [APTRA ] +17:24:52 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:24:52 [ 49] [ 3] [418] +17:24:52 [ 52] [ 16] [BFF5D7F99BE75927] +17:24:52 ============================================================================ +17:24:52 + + +waiting on router queue for slot.... +17:24:52 Sending to : <0> +17:24:52 ============================================================================ +17:24:52 ============================================================================ +17:24:52 Slot Id : <252> +17:24:52 Transaction Type : RESPONSE +17:24:52 Received From : +17:24:52 ============================================================================ +17:24:52 FNo. Len. Field Value +17:24:52 ============================================================================ +17:24:52 [ 1] [ 4] [0210] +17:24:52 [ 2] [ 16] [6213544000431376] +17:24:52 [ 3] [ 6] [011000] +17:24:52 [ 4] [ 12] [000010000000] +17:24:52 [ 7] [ 10] [0320173239] +17:24:52 [ 11] [ 6] [021186] +17:24:52 [ 12] [ 6] [173239] +17:24:52 [ 13] [ 4] [0320] +17:24:52 [ 15] [ 4] [0320] +17:24:52 [ 18] [ 4] [6011] +17:24:52 [ 22] [ 3] [900] +17:24:52 [ 32] [ 6] [220699] +17:24:52 [ 35] [ 32] [6213544000431376=491212013137799] +17:24:52 [ 37] [ 12] [507900263129] +17:24:52 [ 38] [ 6] [172448] +17:24:52 [ 39] [ 2] [55] +17:24:52 [ 41] [ 8] [01001400] +17:24:52 [ 49] [ 3] [418] +17:24:52 ============================================================================ +17:24:52 Sending to : +17:24:52 ============================================================================ +17:24:52 + + +waiting on router queue for slot.... +17:24:53 ============================================================================ +17:24:53 Slot Id : <252> +17:24:53 Transaction Type : RESPONSE +17:24:53 Received From : +17:24:53 ============================================================================ +17:24:53 FNo. Len. Field Value +17:24:53 ============================================================================ +17:24:53 [ 1] [ 4] [0210] +17:24:53 [ 2] [ 16] [6213544000431376] +17:24:53 [ 3] [ 6] [011000] +17:24:53 [ 4] [ 12] [000010000000] +17:24:53 [ 7] [ 10] [0320173239] +17:24:53 [ 11] [ 6] [021186] +17:24:53 [ 12] [ 6] [173239] +17:24:53 [ 13] [ 4] [0320] +17:24:53 [ 15] [ 4] [0320] +17:24:53 [ 18] [ 4] [6011] +17:24:53 [ 22] [ 3] [900] +17:24:53 [ 32] [ 6] [220699] +17:24:53 [ 35] [ 32] [6213544000431376=491212013137799] +17:24:53 [ 37] [ 12] [507900263129] +17:24:53 [ 38] [ 6] [172448] +17:24:53 [ 39] [ 2] [55] +17:24:53 [ 41] [ 8] [01001400] +17:24:53 [ 49] [ 3] [418] +17:24:53 ============================================================================ +17:24:53 Calculate Source COMM Id = 1 +17:24:53 ============================================================================ +17:24:53 + + +waiting on router queue for slot.... +17:24:54 ============================================================================ +17:24:54 Slot Id : <254> +17:24:54 Transaction Type : REQUEST +17:24:54 Received From : +17:24:54 ============================================================================ +17:24:54 FNo. Len. Field Value +17:24:54 ============================================================================ +17:24:54 [ 1] [ 4] [0800] +17:24:54 [ 7] [ 10] [0320103242] +17:24:54 [ 11] [ 6] [074268] +17:24:54 [ 37] [ 12] [57917074268] +17:24:54 [ 70] [ 3] [301] +17:24:54 ============================================================================ +17:24:54 + + +waiting on router queue for slot.... +17:24:54 Sending to : +17:24:54 ============================================================================ +17:24:54 ============================================================================ +17:24:54 Slot Id : <254> +17:24:54 Transaction Type : RESPONSE +17:24:54 Received From : +17:24:54 ============================================================================ +17:24:54 FNo. Len. Field Value +17:24:54 ============================================================================ +17:24:54 [ 1] [ 4] [0810] +17:24:54 [ 7] [ 10] [0320103242] +17:24:54 [ 11] [ 6] [074268] +17:24:54 [ 37] [ 12] [579170742680] +17:24:54 [ 39] [ 2] [00] +17:24:54 [ 70] [ 3] [810] +17:24:54 ============================================================================ +17:24:54 Calculate Source COMM Id = 1 +17:24:54 ============================================================================ +17:24:54 + + +waiting on router queue for slot.... +17:25:01 ============================================================================ +17:25:01 Slot Id : <282> +17:25:01 Transaction Type : REQUEST +17:25:01 Received From : +17:25:01 ============================================================================ +17:25:01 FNo. Len. Field Value +17:25:01 ============================================================================ +17:25:01 [ 1] [ 4] [0800] +17:25:01 [ 7] [ 10] [0320102408] +17:25:01 [ 11] [ 6] [157452] +17:25:01 [ 70] [ 3] [301] +17:25:01 ============================================================================ +17:25:01 + + +waiting on router queue for slot.... +17:25:01 Sending to : +17:25:01 ============================================================================ +17:25:01 ============================================================================ +17:25:01 Slot Id : <282> +17:25:01 Transaction Type : RESPONSE +17:25:01 Received From : +17:25:01 ============================================================================ +17:25:01 FNo. Len. Field Value +17:25:01 ============================================================================ +17:25:01 [ 1] [ 4] [0810] +17:25:01 [ 7] [ 10] [0320102408] +17:25:01 [ 11] [ 6] [157452] +17:25:01 [ 39] [ 2] [00] +17:25:01 [ 70] [ 3] [301] +17:25:01 ============================================================================ +17:25:01 Calculate Source COMM Id = 2 +17:25:01 ============================================================================ +17:25:01 + + +waiting on router queue for slot.... +17:25:02 ============================================================================ +17:25:02 Slot Id : <266> +17:25:02 Transaction Type : REQUEST +17:25:02 Received From : +17:25:02 ============================================================================ +17:25:02 FNo. Len. Field Value +17:25:02 ============================================================================ +17:25:02 [ 1] [ 4] [0200] +17:25:02 [ 2] [ 16] [6213541000725310] +17:25:02 [ 3] [ 6] [010000] +17:25:02 [ 4] [ 12] [000020000000] +17:25:02 [ 7] [ 10] [0320172252] +17:25:02 [ 11] [ 6] [953390] +17:25:02 [ 12] [ 6] [172252] +17:25:02 [ 13] [ 4] [0320] +17:25:02 [ 15] [ 4] [0320] +17:25:02 [ 18] [ 4] [6011] +17:25:02 [ 19] [ 3] [418] +17:25:02 [ 22] [ 3] [021] +17:25:02 [ 25] [ 2] [01] +17:25:02 [ 28] [ 9] [D00002000] +17:25:02 [ 32] [ 6] [668899] +17:25:02 [ 35] [ 32] [6213541000725310=491212012531523] +17:25:02 [ 37] [ 12] [507900869009] +17:25:02 [ 41] [ 8] [03018001] +17:25:02 [ 42] [ 15] [APT ] +17:25:02 [ 43] [ 40] [ CHAMPA HOTEL ATTAPEU L] +17:25:02 [ 49] [ 3] [418] +17:25:02 [ 52] [ 16] [C60846EEA2EAB8E8] +17:25:02 ============================================================================ +17:25:02 + + +waiting on router queue for slot.... +17:25:02 Sending to : +17:25:02 ============================================================================ +17:25:02 Sending to : +17:25:02 ============================================================================ +17:25:03 ============================================================================ +17:25:03 Slot Id : <266> +17:25:03 Transaction Type : REQUEST +17:25:03 Received From : +17:25:03 ============================================================================ +17:25:03 FNo. Len. Field Value +17:25:03 ============================================================================ +17:25:03 [ 1] [ 4] [0200] +17:25:03 [ 2] [ 16] [6213541000725310] +17:25:03 [ 3] [ 6] [010000] +17:25:03 [ 4] [ 12] [000020000000] +17:25:03 [ 7] [ 10] [0320172252] +17:25:03 [ 11] [ 6] [953390] +17:25:03 [ 12] [ 6] [172252] +17:25:03 [ 13] [ 4] [0320] +17:25:03 [ 15] [ 4] [0320] +17:25:03 [ 18] [ 4] [6011] +17:25:03 [ 19] [ 3] [418] +17:25:03 [ 22] [ 3] [021] +17:25:03 [ 25] [ 2] [01] +17:25:03 [ 28] [ 9] [D00002000] +17:25:03 [ 32] [ 6] [668899] +17:25:03 [ 35] [ 32] [6213541000725310=491212012531523] +17:25:03 [ 37] [ 12] [507900869009] +17:25:03 [ 41] [ 8] [03018001] +17:25:03 [ 42] [ 15] [APT ] +17:25:03 [ 43] [ 40] [ CHAMPA HOTEL ATTAPEU L] +17:25:03 [ 49] [ 3] [418] +17:25:03 [ 52] [ 16] [C60846EEA2EAB8E8] +17:25:03 ============================================================================ +17:25:03 + + +waiting on router queue for slot.... +17:25:03 Sending to : +17:25:03 ============================================================================ +17:25:03 ============================================================================ +17:25:03 Slot Id : <266> +17:25:03 Transaction Type : REQUEST +17:25:03 Received From : +17:25:03 ============================================================================ +17:25:03 FNo. Len. Field Value +17:25:03 ============================================================================ +17:25:03 [ 1] [ 4] [0200] +17:25:03 [ 2] [ 16] [6213541000725310] +17:25:03 [ 3] [ 6] [010000] +17:25:03 [ 4] [ 12] [000020000000] +17:25:03 [ 7] [ 10] [0320172252] +17:25:03 [ 11] [ 6] [953390] +17:25:03 [ 12] [ 6] [172252] +17:25:03 [ 13] [ 4] [0320] +17:25:03 [ 15] [ 4] [0320] +17:25:03 [ 18] [ 4] [6011] +17:25:03 [ 19] [ 3] [418] +17:25:03 [ 22] [ 3] [021] +17:25:03 [ 25] [ 2] [01] +17:25:03 [ 28] [ 9] [D00002000] +17:25:03 [ 32] [ 6] [668899] +17:25:03 [ 35] [ 32] [6213541000725310=491212012531523] +17:25:03 [ 37] [ 12] [507900869009] +17:25:03 [ 41] [ 8] [03018001] +17:25:03 [ 42] [ 15] [APT ] +17:25:03 [ 43] [ 40] [ CHAMPA HOTEL ATTAPEU L] +17:25:03 [ 49] [ 3] [418] +17:25:03 [ 52] [ 16] [DC20644FBDDC1741] +17:25:03 ============================================================================ +17:25:03 + + +waiting on router queue for slot.... +17:25:03 Sending to : <0> +17:25:03 ============================================================================ +17:25:03 ============================================================================ +17:25:03 Slot Id : <266> +17:25:03 Transaction Type : RESPONSE +17:25:03 Received From : +17:25:03 ============================================================================ +17:25:03 FNo. Len. Field Value +17:25:03 ============================================================================ +17:25:03 [ 1] [ 4] [0210] +17:25:03 [ 2] [ 16] [6213541000725310] +17:25:03 [ 3] [ 6] [010000] +17:25:03 [ 4] [ 12] [000020000000] +17:25:03 [ 7] [ 10] [0320172252] +17:25:03 [ 11] [ 6] [953390] +17:25:03 [ 12] [ 6] [172252] +17:25:03 [ 13] [ 4] [0320] +17:25:03 [ 15] [ 4] [0320] +17:25:03 [ 18] [ 4] [6011] +17:25:03 [ 19] [ 3] [418] +17:25:03 [ 32] [ 6] [668899] +17:25:03 [ 35] [ 32] [6213541000725310=491212012531523] +17:25:03 [ 37] [ 12] [507900869009] +17:25:03 [ 38] [ 6] [035826] +17:25:03 [ 39] [ 2] [00] +17:25:03 [ 41] [ 8] [03018001] +17:25:03 [ 49] [ 3] [418] +17:25:03 [ 54] [ 40] [0001418C0000098000000002418C000009800000] +17:25:03 ============================================================================ +17:25:03 Sending to : +17:25:03 ============================================================================ +17:25:03 + + +waiting on router queue for slot.... +17:25:04 ============================================================================ +17:25:04 Slot Id : <266> +17:25:04 Transaction Type : RESPONSE +17:25:04 Received From : +17:25:04 ============================================================================ +17:25:04 FNo. Len. Field Value +17:25:04 ============================================================================ +17:25:04 [ 1] [ 4] [0210] +17:25:04 [ 2] [ 16] [6213541000725310] +17:25:04 [ 3] [ 6] [010000] +17:25:04 [ 4] [ 12] [000020000000] +17:25:04 [ 7] [ 10] [0320172252] +17:25:04 [ 11] [ 6] [953390] +17:25:04 [ 12] [ 6] [172252] +17:25:04 [ 13] [ 4] [0320] +17:25:04 [ 15] [ 4] [0320] +17:25:04 [ 18] [ 4] [6011] +17:25:04 [ 19] [ 3] [418] +17:25:04 [ 32] [ 6] [668899] +17:25:04 [ 35] [ 32] [6213541000725310=491212012531523] +17:25:04 [ 37] [ 12] [507900869009] +17:25:04 [ 38] [ 6] [035826] +17:25:04 [ 39] [ 2] [00] +17:25:04 [ 41] [ 8] [03018001] +17:25:04 [ 49] [ 3] [418] +17:25:04 [ 54] [ 40] [0001418C0000098000000002418C000009800000] +17:25:04 ============================================================================ +17:25:04 Calculate Source COMM Id = 4 +17:25:04 ============================================================================ +17:25:04 + + +waiting on router queue for slot.... +17:25:07 ============================================================================ +17:25:07 Slot Id : <241> +17:25:07 Transaction Type : REQUEST +17:25:07 Received From : +17:25:07 ============================================================================ +17:25:07 FNo. Len. Field Value +17:25:07 ============================================================================ +17:25:07 [ 1] [ 4] [0200] +17:25:07 [ 2] [ 16] [6213545001000714] +17:25:07 [ 3] [ 6] [011000] +17:25:07 [ 4] [ 12] [000020000000] +17:25:07 [ 7] [ 10] [0320102414] +17:25:07 [ 11] [ 6] [270844] +17:25:07 [ 12] [ 6] [172414] +17:25:07 [ 13] [ 4] [0320] +17:25:07 [ 14] [ 4] [4912] +17:25:07 [ 15] [ 4] [0320] +17:25:07 [ 18] [ 4] [6011] +17:25:07 [ 19] [ 3] [418] +17:25:07 [ 22] [ 3] [021] +17:25:07 [ 25] [ 2] [01] +17:25:07 [ 28] [ 9] [D00002000] +17:25:07 [ 32] [ 6] [180893] +17:25:07 [ 35] [ 32] [6213545001000714=491212010071923] +17:25:07 [ 37] [ 12] [507910270844] +17:25:07 [ 41] [ 8] [0262PSLB] +17:25:07 [ 42] [ 15] [999999 ] +17:25:07 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:25:07 [ 49] [ 3] [418] +17:25:07 [ 52] [ 16] [020A1EDBE3E0834D] +17:25:07 ============================================================================ +17:25:07 + + +waiting on router queue for slot.... +17:25:07 Sending to : +17:25:07 ============================================================================ +17:25:07 Sending to : +17:25:07 ============================================================================ +17:25:07 ============================================================================ +17:25:07 Slot Id : <241> +17:25:07 Transaction Type : REQUEST +17:25:07 Received From : +17:25:07 ============================================================================ +17:25:07 FNo. Len. Field Value +17:25:07 ============================================================================ +17:25:07 [ 1] [ 4] [0200] +17:25:07 [ 2] [ 16] [6213545001000714] +17:25:07 [ 3] [ 6] [011000] +17:25:07 [ 4] [ 12] [000020000000] +17:25:07 [ 7] [ 10] [0320102414] +17:25:07 [ 11] [ 6] [270844] +17:25:07 [ 12] [ 6] [172414] +17:25:07 [ 13] [ 4] [0320] +17:25:07 [ 14] [ 4] [4912] +17:25:07 [ 15] [ 4] [0320] +17:25:07 [ 18] [ 4] [6011] +17:25:07 [ 19] [ 3] [418] +17:25:07 [ 22] [ 3] [021] +17:25:07 [ 25] [ 2] [01] +17:25:07 [ 28] [ 9] [D00002000] +17:25:07 [ 32] [ 6] [180893] +17:25:07 [ 35] [ 32] [6213545001000714=491212010071923] +17:25:07 [ 37] [ 12] [507910270844] +17:25:07 [ 41] [ 8] [0262PSLB] +17:25:07 [ 42] [ 15] [999999 ] +17:25:07 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:25:07 [ 49] [ 3] [418] +17:25:07 [ 52] [ 16] [020A1EDBE3E0834D] +17:25:07 ============================================================================ +17:25:07 + + +waiting on router queue for slot.... +17:25:07 Sending to : +17:25:07 ============================================================================ +17:25:07 ============================================================================ +17:25:07 Slot Id : <241> +17:25:07 Transaction Type : REQUEST +17:25:07 Received From : +17:25:07 ============================================================================ +17:25:07 FNo. Len. Field Value +17:25:07 ============================================================================ +17:25:07 [ 1] [ 4] [0200] +17:25:07 [ 2] [ 16] [6213545001000714] +17:25:07 [ 3] [ 6] [011000] +17:25:07 [ 4] [ 12] [000020000000] +17:25:07 [ 7] [ 10] [0320102414] +17:25:07 [ 11] [ 6] [270844] +17:25:07 [ 12] [ 6] [172414] +17:25:07 [ 13] [ 4] [0320] +17:25:07 [ 14] [ 4] [4912] +17:25:07 [ 15] [ 4] [0320] +17:25:07 [ 18] [ 4] [6011] +17:25:07 [ 19] [ 3] [418] +17:25:07 [ 22] [ 3] [021] +17:25:07 [ 25] [ 2] [01] +17:25:07 [ 28] [ 9] [D00002000] +17:25:07 [ 32] [ 6] [180893] +17:25:07 [ 35] [ 32] [6213545001000714=491212010071923] +17:25:07 [ 37] [ 12] [507910270844] +17:25:07 [ 41] [ 8] [0262PSLB] +17:25:07 [ 42] [ 15] [999999 ] +17:25:07 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:25:07 [ 49] [ 3] [418] +17:25:07 [ 52] [ 16] [2690389EBFD92F08] +17:25:07 ============================================================================ +17:25:07 + + +waiting on router queue for slot.... +17:25:07 Sending to : <0> +17:25:07 ============================================================================ +17:25:08 ============================================================================ +17:25:08 Slot Id : <241> +17:25:08 Transaction Type : RESPONSE +17:25:08 Received From : +17:25:08 ============================================================================ +17:25:08 FNo. Len. Field Value +17:25:08 ============================================================================ +17:25:08 [ 1] [ 4] [0210] +17:25:08 [ 2] [ 16] [6213545001000714] +17:25:08 [ 3] [ 6] [011000] +17:25:08 [ 4] [ 12] [000020000000] +17:25:08 [ 7] [ 10] [0320102414] +17:25:08 [ 11] [ 6] [270844] +17:25:08 [ 12] [ 6] [172414] +17:25:08 [ 13] [ 4] [0320] +17:25:08 [ 15] [ 4] [0320] +17:25:08 [ 18] [ 4] [6011] +17:25:08 [ 19] [ 3] [418] +17:25:08 [ 32] [ 6] [180893] +17:25:08 [ 35] [ 32] [6213545001000714=491212010071923] +17:25:08 [ 37] [ 12] [507910270844] +17:25:08 [ 38] [ 6] [834915] +17:25:08 [ 39] [ 2] [00] +17:25:08 [ 41] [ 8] [0262PSLB] +17:25:08 [ 49] [ 3] [418] +17:25:08 [ 54] [ 40] [1001418C0000955711191002418C000095571119] +17:25:08 ============================================================================ +17:25:08 Sending to : +17:25:08 ============================================================================ +17:25:08 + + +waiting on router queue for slot.... +17:25:09 ============================================================================ +17:25:09 Slot Id : <241> +17:25:09 Transaction Type : RESPONSE +17:25:09 Received From : +17:25:09 ============================================================================ +17:25:09 FNo. Len. Field Value +17:25:09 ============================================================================ +17:25:09 [ 1] [ 4] [0210] +17:25:09 [ 2] [ 16] [6213545001000714] +17:25:09 [ 3] [ 6] [011000] +17:25:09 [ 4] [ 12] [000020000000] +17:25:09 [ 7] [ 10] [0320102414] +17:25:09 [ 11] [ 6] [270844] +17:25:09 [ 12] [ 6] [172414] +17:25:09 [ 13] [ 4] [0320] +17:25:09 [ 15] [ 4] [0320] +17:25:09 [ 18] [ 4] [6011] +17:25:09 [ 19] [ 3] [418] +17:25:09 [ 32] [ 6] [180893] +17:25:09 [ 35] [ 32] [6213545001000714=491212010071923] +17:25:09 [ 37] [ 12] [507910270844] +17:25:09 [ 38] [ 6] [834915] +17:25:09 [ 39] [ 2] [00] +17:25:09 [ 41] [ 8] [0262PSLB] +17:25:09 [ 49] [ 3] [418] +17:25:09 [ 54] [ 40] [1001418C0000955711191002418C000095571119] +17:25:09 ============================================================================ +17:25:09 Calculate Source COMM Id = 2 +17:25:09 ============================================================================ +17:25:09 + + +waiting on router queue for slot.... +17:25:12 ============================================================================ +17:25:12 Slot Id : <276> +17:25:12 Transaction Type : REQUEST +17:25:12 Received From : +17:25:12 ============================================================================ +17:25:12 FNo. Len. Field Value +17:25:12 ============================================================================ +17:25:12 [ 1] [ 4] [0200] +17:25:12 [ 2] [ 16] [6213544002225826] +17:25:12 [ 3] [ 6] [011000] +17:25:12 [ 4] [ 12] [000055000000] +17:25:12 [ 7] [ 10] [0320172532] +17:25:12 [ 11] [ 6] [209520] +17:25:12 [ 12] [ 6] [172038] +17:25:12 [ 13] [ 4] [0320] +17:25:12 [ 14] [ 4] [4912] +17:25:12 [ 15] [ 4] [0320] +17:25:12 [ 18] [ 4] [6011] +17:25:12 [ 19] [ 3] [418] +17:25:12 [ 22] [ 3] [021] +17:25:12 [ 25] [ 2] [01] +17:25:12 [ 28] [ 9] [D00002000] +17:25:12 [ 32] [ 6] [198901] +17:25:12 [ 35] [ 32] [6213544002225826=491212012582269] +17:25:12 [ 37] [ 12] [507917209520] +17:25:12 [ 41] [ 8] [19529001] +17:25:12 [ 42] [ 15] [000000041952901] +17:25:12 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:25:12 [ 49] [ 3] [418] +17:25:12 [ 52] [ 16] [84CD8811CA459B8D] +17:25:12 ============================================================================ +17:25:12 + + +waiting on router queue for slot.... +17:25:12 Sending to : +17:25:12 ============================================================================ +17:25:12 Sending to : +17:25:12 ============================================================================ +17:25:12 ============================================================================ +17:25:12 Slot Id : <276> +17:25:12 Transaction Type : REQUEST +17:25:12 Received From : +17:25:12 ============================================================================ +17:25:12 FNo. Len. Field Value +17:25:12 ============================================================================ +17:25:12 [ 1] [ 4] [0200] +17:25:12 [ 2] [ 16] [6213544002225826] +17:25:12 [ 3] [ 6] [011000] +17:25:12 [ 4] [ 12] [000055000000] +17:25:12 [ 7] [ 10] [0320172532] +17:25:12 [ 11] [ 6] [209520] +17:25:12 [ 12] [ 6] [172038] +17:25:12 [ 13] [ 4] [0320] +17:25:12 [ 14] [ 4] [4912] +17:25:12 [ 15] [ 4] [0320] +17:25:12 [ 18] [ 4] [6011] +17:25:12 [ 19] [ 3] [418] +17:25:12 [ 22] [ 3] [021] +17:25:12 [ 25] [ 2] [01] +17:25:12 [ 28] [ 9] [D00002000] +17:25:12 [ 32] [ 6] [198901] +17:25:12 [ 35] [ 32] [6213544002225826=491212012582269] +17:25:12 [ 37] [ 12] [507917209520] +17:25:12 [ 41] [ 8] [19529001] +17:25:12 [ 42] [ 15] [000000041952901] +17:25:12 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:25:12 [ 49] [ 3] [418] +17:25:12 [ 52] [ 16] [84CD8811CA459B8D] +17:25:12 ============================================================================ +17:25:12 + + +waiting on router queue for slot.... +17:25:12 Sending to : +17:25:12 ============================================================================ +17:25:12 ============================================================================ +17:25:12 Slot Id : <276> +17:25:12 Transaction Type : REQUEST +17:25:12 Received From : +17:25:12 ============================================================================ +17:25:12 FNo. Len. Field Value +17:25:12 ============================================================================ +17:25:12 [ 1] [ 4] [0200] +17:25:12 [ 2] [ 16] [6213544002225826] +17:25:12 [ 3] [ 6] [011000] +17:25:12 [ 4] [ 12] [000055000000] +17:25:12 [ 7] [ 10] [0320172532] +17:25:12 [ 11] [ 6] [209520] +17:25:12 [ 12] [ 6] [172038] +17:25:12 [ 13] [ 4] [0320] +17:25:12 [ 14] [ 4] [4912] +17:25:12 [ 15] [ 4] [0320] +17:25:12 [ 18] [ 4] [6011] +17:25:12 [ 19] [ 3] [418] +17:25:12 [ 22] [ 3] [021] +17:25:12 [ 25] [ 2] [01] +17:25:12 [ 28] [ 9] [D00002000] +17:25:12 [ 32] [ 6] [198901] +17:25:12 [ 35] [ 32] [6213544002225826=491212012582269] +17:25:12 [ 37] [ 12] [507917209520] +17:25:12 [ 41] [ 8] [19529001] +17:25:12 [ 42] [ 15] [000000041952901] +17:25:12 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:25:12 [ 49] [ 3] [418] +17:25:12 [ 52] [ 16] [25BEA3503A5CE760] +17:25:12 ============================================================================ +17:25:12 + + +waiting on router queue for slot.... +17:25:12 Sending to : <0> +17:25:12 ============================================================================ +17:25:13 ============================================================================ +17:25:13 Slot Id : <276> +17:25:13 Transaction Type : RESPONSE +17:25:13 Received From : +17:25:13 ============================================================================ +17:25:13 FNo. Len. Field Value +17:25:13 ============================================================================ +17:25:13 [ 1] [ 4] [0210] +17:25:13 [ 2] [ 16] [6213544002225826] +17:25:13 [ 3] [ 6] [011000] +17:25:13 [ 4] [ 12] [000055000000] +17:25:13 [ 7] [ 10] [0320172532] +17:25:13 [ 11] [ 6] [209520] +17:25:13 [ 12] [ 6] [172038] +17:25:13 [ 13] [ 4] [0320] +17:25:13 [ 15] [ 4] [0320] +17:25:13 [ 18] [ 4] [6011] +17:25:13 [ 19] [ 3] [418] +17:25:13 [ 32] [ 6] [198901] +17:25:13 [ 35] [ 32] [6213544002225826=491212012582269] +17:25:13 [ 37] [ 12] [507917209520] +17:25:13 [ 38] [ 6] [804256] +17:25:13 [ 39] [ 2] [00] +17:25:13 [ 41] [ 8] [19529001] +17:25:13 [ 49] [ 3] [418] +17:25:13 [ 54] [ 40] [1001418C0000066497231002418C000006649723] +17:25:13 ============================================================================ +17:25:13 Sending to : +17:25:13 ============================================================================ +17:25:13 + + +waiting on router queue for slot.... +17:25:14 ============================================================================ +17:25:14 Slot Id : <280> +17:25:14 Transaction Type : REQUEST +17:25:14 Received From : +17:25:14 ============================================================================ +17:25:14 FNo. Len. Field Value +17:25:14 ============================================================================ +17:25:14 [ 1] [ 4] [0200] +17:25:14 [ 2] [ 16] [6213544001756763] +17:25:14 [ 3] [ 6] [010000] +17:25:14 [ 4] [ 12] [000010000000] +17:25:14 [ 7] [ 10] [0320172304] +17:25:14 [ 11] [ 6] [953398] +17:25:14 [ 12] [ 6] [172304] +17:25:14 [ 13] [ 4] [0320] +17:25:14 [ 15] [ 4] [0320] +17:25:14 [ 18] [ 4] [6011] +17:25:14 [ 19] [ 3] [418] +17:25:14 [ 22] [ 3] [021] +17:25:14 [ 25] [ 2] [01] +17:25:14 [ 28] [ 9] [D00002000] +17:25:14 [ 32] [ 6] [668899] +17:25:14 [ 35] [ 32] [6213544001756763=491212015676393] +17:25:14 [ 37] [ 12] [507901614554] +17:25:14 [ 41] [ 8] [03001007] +17:25:14 [ 42] [ 15] [APT ] +17:25:14 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:25:14 [ 49] [ 3] [418] +17:25:14 [ 52] [ 16] [DC1283195CCFABA2] +17:25:14 ============================================================================ +17:25:14 + + +waiting on router queue for slot.... +17:25:14 Sending to : +17:25:14 ============================================================================ +17:25:14 Sending to : +17:25:14 ============================================================================ +17:25:14 ============================================================================ +17:25:14 Slot Id : <280> +17:25:14 Transaction Type : REQUEST +17:25:14 Received From : +17:25:14 ============================================================================ +17:25:14 FNo. Len. Field Value +17:25:14 ============================================================================ +17:25:14 [ 1] [ 4] [0200] +17:25:14 [ 2] [ 16] [6213544001756763] +17:25:14 [ 3] [ 6] [010000] +17:25:14 [ 4] [ 12] [000010000000] +17:25:14 [ 7] [ 10] [0320172304] +17:25:14 [ 11] [ 6] [953398] +17:25:14 [ 12] [ 6] [172304] +17:25:14 [ 13] [ 4] [0320] +17:25:14 [ 15] [ 4] [0320] +17:25:14 [ 18] [ 4] [6011] +17:25:14 [ 19] [ 3] [418] +17:25:14 [ 22] [ 3] [021] +17:25:14 [ 25] [ 2] [01] +17:25:14 [ 28] [ 9] [D00002000] +17:25:14 [ 32] [ 6] [668899] +17:25:14 [ 35] [ 32] [6213544001756763=491212015676393] +17:25:14 [ 37] [ 12] [507901614554] +17:25:14 [ 41] [ 8] [03001007] +17:25:14 [ 42] [ 15] [APT ] +17:25:14 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:25:14 [ 49] [ 3] [418] +17:25:14 [ 52] [ 16] [DC1283195CCFABA2] +17:25:14 ============================================================================ +17:25:14 + + +waiting on router queue for slot.... +17:25:14 Sending to : +17:25:14 ============================================================================ +17:25:14 ============================================================================ +17:25:14 Slot Id : <280> +17:25:14 Transaction Type : REQUEST +17:25:14 Received From : +17:25:14 ============================================================================ +17:25:14 FNo. Len. Field Value +17:25:14 ============================================================================ +17:25:14 [ 1] [ 4] [0200] +17:25:14 [ 2] [ 16] [6213544001756763] +17:25:14 [ 3] [ 6] [010000] +17:25:14 [ 4] [ 12] [000010000000] +17:25:14 [ 7] [ 10] [0320172304] +17:25:14 [ 11] [ 6] [953398] +17:25:14 [ 12] [ 6] [172304] +17:25:14 [ 13] [ 4] [0320] +17:25:14 [ 15] [ 4] [0320] +17:25:14 [ 18] [ 4] [6011] +17:25:14 [ 19] [ 3] [418] +17:25:14 [ 22] [ 3] [021] +17:25:14 [ 25] [ 2] [01] +17:25:14 [ 28] [ 9] [D00002000] +17:25:14 [ 32] [ 6] [668899] +17:25:14 [ 35] [ 32] [6213544001756763=491212015676393] +17:25:14 [ 37] [ 12] [507901614554] +17:25:14 [ 41] [ 8] [03001007] +17:25:14 [ 42] [ 15] [APT ] +17:25:14 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:25:14 [ 49] [ 3] [418] +17:25:14 [ 52] [ 16] [977B233E42D96EC2] +17:25:14 ============================================================================ +17:25:14 + + +waiting on router queue for slot.... +17:25:14 Sending to : <0> +17:25:14 ============================================================================ +17:25:14 ============================================================================ +17:25:14 Slot Id : <276> +17:25:14 Transaction Type : RESPONSE +17:25:14 Received From : +17:25:14 ============================================================================ +17:25:14 FNo. Len. Field Value +17:25:14 ============================================================================ +17:25:14 [ 1] [ 4] [0210] +17:25:14 [ 2] [ 16] [6213544002225826] +17:25:14 [ 3] [ 6] [011000] +17:25:14 [ 4] [ 12] [000055000000] +17:25:14 [ 7] [ 10] [0320172532] +17:25:14 [ 11] [ 6] [209520] +17:25:14 [ 12] [ 6] [172038] +17:25:14 [ 13] [ 4] [0320] +17:25:14 [ 15] [ 4] [0320] +17:25:14 [ 18] [ 4] [6011] +17:25:14 [ 19] [ 3] [418] +17:25:14 [ 32] [ 6] [198901] +17:25:14 [ 35] [ 32] [6213544002225826=491212012582269] +17:25:14 [ 37] [ 12] [507917209520] +17:25:14 [ 38] [ 6] [804256] +17:25:14 [ 39] [ 2] [00] +17:25:14 [ 41] [ 8] [19529001] +17:25:14 [ 49] [ 3] [418] +17:25:14 [ 54] [ 40] [1001418C0000066497231002418C000006649723] +17:25:14 ============================================================================ +17:25:14 Calculate Source COMM Id = 5 +17:25:14 ============================================================================ +17:25:14 + + +waiting on router queue for slot.... +17:25:15 ============================================================================ +17:25:15 Slot Id : <280> +17:25:15 Transaction Type : RESPONSE +17:25:15 Received From : +17:25:15 ============================================================================ +17:25:15 FNo. Len. Field Value +17:25:15 ============================================================================ +17:25:15 [ 1] [ 4] [0210] +17:25:15 [ 2] [ 16] [6213544001756763] +17:25:15 [ 3] [ 6] [010000] +17:25:15 [ 4] [ 12] [000010000000] +17:25:15 [ 7] [ 10] [0320172304] +17:25:15 [ 11] [ 6] [953398] +17:25:15 [ 12] [ 6] [172304] +17:25:15 [ 13] [ 4] [0320] +17:25:15 [ 15] [ 4] [0320] +17:25:15 [ 18] [ 4] [6011] +17:25:15 [ 19] [ 3] [418] +17:25:15 [ 32] [ 6] [668899] +17:25:15 [ 35] [ 32] [6213544001756763=491212015676393] +17:25:15 [ 37] [ 12] [507901614554] +17:25:15 [ 38] [ 6] [620251] +17:25:15 [ 39] [ 2] [00] +17:25:15 [ 41] [ 8] [03001007] +17:25:15 [ 49] [ 3] [418] +17:25:15 [ 54] [ 40] [0001418C0015019288320002418C001501928832] +17:25:15 ============================================================================ +17:25:15 Sending to : +17:25:15 ============================================================================ +17:25:15 + + +waiting on router queue for slot.... +17:25:16 ============================================================================ +17:25:16 Slot Id : <280> +17:25:16 Transaction Type : RESPONSE +17:25:16 Received From : +17:25:16 ============================================================================ +17:25:16 FNo. Len. Field Value +17:25:16 ============================================================================ +17:25:16 [ 1] [ 4] [0210] +17:25:16 [ 2] [ 16] [6213544001756763] +17:25:16 [ 3] [ 6] [010000] +17:25:16 [ 4] [ 12] [000010000000] +17:25:16 [ 7] [ 10] [0320172304] +17:25:16 [ 11] [ 6] [953398] +17:25:16 [ 12] [ 6] [172304] +17:25:16 [ 13] [ 4] [0320] +17:25:16 [ 15] [ 4] [0320] +17:25:16 [ 18] [ 4] [6011] +17:25:16 [ 19] [ 3] [418] +17:25:16 [ 32] [ 6] [668899] +17:25:16 [ 35] [ 32] [6213544001756763=491212015676393] +17:25:16 [ 37] [ 12] [507901614554] +17:25:16 [ 38] [ 6] [620251] +17:25:16 [ 39] [ 2] [00] +17:25:16 [ 41] [ 8] [03001007] +17:25:16 [ 49] [ 3] [418] +17:25:16 [ 54] [ 40] [0001418C0015019288320002418C001501928832] +17:25:16 ============================================================================ +17:25:16 Calculate Source COMM Id = 4 +17:25:16 ============================================================================ +17:25:16 + + +waiting on router queue for slot.... +17:25:20 ============================================================================ +17:25:20 Slot Id : <224> +17:25:20 Transaction Type : REQUEST +17:25:20 Received From : +17:25:20 ============================================================================ +17:25:20 FNo. Len. Field Value +17:25:20 ============================================================================ +17:25:20 [ 1] [ 4] [0800] +17:25:20 [ 7] [ 10] [0321003709] +17:25:20 [ 11] [ 6] [173709] +17:25:20 [ 37] [ 12] [57917173709] +17:25:20 [ 70] [ 3] [301] +17:25:20 ============================================================================ +17:25:20 + + +waiting on router queue for slot.... +17:25:20 Sending to : +17:25:20 ============================================================================ +17:25:20 ============================================================================ +17:25:20 Slot Id : <224> +17:25:20 Transaction Type : RESPONSE +17:25:20 Received From : +17:25:20 ============================================================================ +17:25:20 FNo. Len. Field Value +17:25:20 ============================================================================ +17:25:20 [ 1] [ 4] [0810] +17:25:20 [ 7] [ 10] [0321003709] +17:25:20 [ 11] [ 6] [173709] +17:25:20 [ 37] [ 12] [579171737090] +17:25:20 [ 39] [ 2] [00] +17:25:20 [ 70] [ 3] [810] +17:25:20 ============================================================================ +17:25:20 Calculate Source COMM Id = 6 +17:25:20 ============================================================================ +17:25:20 + + +waiting on router queue for slot.... +17:25:21 ============================================================================ +17:25:21 Slot Id : <258> +17:25:21 Transaction Type : REQUEST +17:25:21 Received From : +17:25:21 ============================================================================ +17:25:21 FNo. Len. Field Value +17:25:21 ============================================================================ +17:25:21 [ 1] [ 4] [0800] +17:25:21 [ 2] [ 5] [02531] +17:25:21 [ 3] [ 6] [579178] +17:25:21 [ 7] [ 10] [0320102521] +17:25:21 [ 11] [ 6] [807423] +17:25:21 [ 15] [ 10] [0320102521] +17:25:21 [ 37] [ 11] [57917807423] +17:25:21 [ 70] [ 3] [001] +17:25:21 ============================================================================ +17:25:21 + + +waiting on router queue for slot.... +17:25:21 ============================================================================ +17:25:21 Slot Id : <258> +17:25:21 Transaction Type : RESPONSE +17:25:21 Received From : +17:25:21 ============================================================================ +17:25:21 FNo. Len. Field Value +17:25:21 ============================================================================ +17:25:21 [ 1] [ 4] [0810] +17:25:21 [ 7] [ 10] [0320102521] +17:25:21 [ 11] [ 6] [807423] +17:25:21 [ 15] [ 4] [0320] +17:25:21 [ 37] [ 12] [57917807423] +17:25:21 [ 39] [ 2] [00] +17:25:21 [ 70] [ 3] [001] +17:25:21 ============================================================================ +17:25:21 Sending to : +17:25:21 ============================================================================ +17:25:21 + + +waiting on router queue for slot.... +17:25:24 ============================================================================ +17:25:24 Slot Id : <219> +17:25:24 Transaction Type : REQUEST +17:25:24 Received From : +17:25:24 ============================================================================ +17:25:24 FNo. Len. Field Value +17:25:24 ============================================================================ +17:25:24 [ 1] [ 4] [0800] +17:25:24 [ 7] [ 10] [0320102429] +17:25:24 [ 11] [ 6] [157453] +17:25:24 [ 70] [ 3] [301] +17:25:24 ============================================================================ +17:25:24 + + +waiting on router queue for slot.... +17:25:24 Sending to : +17:25:24 ============================================================================ +17:25:24 ============================================================================ +17:25:24 Slot Id : <219> +17:25:24 Transaction Type : RESPONSE +17:25:24 Received From : +17:25:24 ============================================================================ +17:25:24 FNo. Len. Field Value +17:25:24 ============================================================================ +17:25:24 [ 1] [ 4] [0810] +17:25:24 [ 7] [ 10] [0320102429] +17:25:24 [ 11] [ 6] [157453] +17:25:24 [ 39] [ 2] [00] +17:25:24 [ 70] [ 3] [301] +17:25:24 ============================================================================ +17:25:24 Calculate Source COMM Id = 2 +17:25:24 ============================================================================ +17:25:24 + + +waiting on router queue for slot.... +17:25:26 ============================================================================ +17:25:26 Slot Id : <284> +17:25:26 Transaction Type : REQUEST +17:25:26 Received From : +17:25:26 ============================================================================ +17:25:26 FNo. Len. Field Value +17:25:26 ============================================================================ +17:25:26 [ 1] [ 4] [0200] +17:25:26 [ 2] [ 16] [6213543000192632] +17:25:26 [ 3] [ 6] [011000] +17:25:26 [ 4] [ 12] [000019000000] +17:25:26 [ 7] [ 10] [0320173313] +17:25:26 [ 11] [ 6] [223761] +17:25:26 [ 12] [ 6] [173313] +17:25:26 [ 13] [ 4] [0320] +17:25:26 [ 14] [ 4] [4912] +17:25:26 [ 15] [ 4] [0320] +17:25:26 [ 18] [ 4] [6011] +17:25:26 [ 22] [ 3] [900] +17:25:26 [ 25] [ 2] [02] +17:25:26 [ 28] [ 9] [D00002000] +17:25:26 [ 32] [ 6] [220699] +17:25:26 [ 35] [ 32] [6213543000192632=491212019263856] +17:25:26 [ 37] [ 12] [507900118784] +17:25:26 [ 41] [ 8] [01001100] +17:25:26 [ 42] [ 15] [APTRA ] +17:25:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:25:26 [ 49] [ 3] [418] +17:25:26 [ 52] [ 16] [DD2B682B5F08F532] +17:25:26 ============================================================================ +17:25:26 + + +waiting on router queue for slot.... +17:25:26 Sending to : +17:25:26 ============================================================================ +17:25:26 Sending to : +17:25:26 ============================================================================ +17:25:26 ============================================================================ +17:25:26 Slot Id : <284> +17:25:26 Transaction Type : REQUEST +17:25:26 Received From : +17:25:26 ============================================================================ +17:25:26 FNo. Len. Field Value +17:25:26 ============================================================================ +17:25:26 [ 1] [ 4] [0200] +17:25:26 [ 2] [ 16] [6213543000192632] +17:25:26 [ 3] [ 6] [011000] +17:25:26 [ 4] [ 12] [000019000000] +17:25:26 [ 7] [ 10] [0320173313] +17:25:26 [ 11] [ 6] [223761] +17:25:26 [ 12] [ 6] [173313] +17:25:26 [ 13] [ 4] [0320] +17:25:26 [ 14] [ 4] [4912] +17:25:26 [ 15] [ 4] [0320] +17:25:26 [ 18] [ 4] [6011] +17:25:26 [ 22] [ 3] [900] +17:25:26 [ 25] [ 2] [02] +17:25:26 [ 28] [ 9] [D00002000] +17:25:26 [ 32] [ 6] [220699] +17:25:26 [ 35] [ 32] [6213543000192632=491212019263856] +17:25:26 [ 37] [ 12] [507900118784] +17:25:26 [ 41] [ 8] [01001100] +17:25:26 [ 42] [ 15] [APTRA ] +17:25:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:25:26 [ 49] [ 3] [418] +17:25:26 [ 52] [ 16] [DD2B682B5F08F532] +17:25:26 ============================================================================ +17:25:26 + + +waiting on router queue for slot.... +17:25:26 Sending to : +17:25:26 ============================================================================ +17:25:26 ============================================================================ +17:25:26 Slot Id : <284> +17:25:26 Transaction Type : REQUEST +17:25:26 Received From : +17:25:26 ============================================================================ +17:25:26 FNo. Len. Field Value +17:25:26 ============================================================================ +17:25:26 [ 1] [ 4] [0200] +17:25:26 [ 2] [ 16] [6213543000192632] +17:25:26 [ 3] [ 6] [011000] +17:25:26 [ 4] [ 12] [000019000000] +17:25:26 [ 7] [ 10] [0320173313] +17:25:26 [ 11] [ 6] [223761] +17:25:26 [ 12] [ 6] [173313] +17:25:26 [ 13] [ 4] [0320] +17:25:26 [ 14] [ 4] [4912] +17:25:26 [ 15] [ 4] [0320] +17:25:26 [ 18] [ 4] [6011] +17:25:26 [ 22] [ 3] [900] +17:25:26 [ 25] [ 2] [02] +17:25:26 [ 28] [ 9] [D00002000] +17:25:26 [ 32] [ 6] [220699] +17:25:26 [ 35] [ 32] [6213543000192632=491212019263856] +17:25:26 [ 37] [ 12] [507900118784] +17:25:26 [ 41] [ 8] [01001100] +17:25:26 [ 42] [ 15] [APTRA ] +17:25:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:25:26 [ 49] [ 3] [418] +17:25:26 [ 52] [ 16] [64AE1898D9B7D140] +17:25:26 ============================================================================ +17:25:26 + + +waiting on router queue for slot.... +17:25:26 Sending to : <0> +17:25:26 ============================================================================ +17:25:27 ============================================================================ +17:25:27 Slot Id : <284> +17:25:27 Transaction Type : RESPONSE +17:25:27 Received From : +17:25:27 ============================================================================ +17:25:27 FNo. Len. Field Value +17:25:27 ============================================================================ +17:25:27 [ 1] [ 4] [0210] +17:25:27 [ 2] [ 16] [6213543000192632] +17:25:27 [ 3] [ 6] [011000] +17:25:27 [ 4] [ 12] [000019000000] +17:25:27 [ 7] [ 10] [0320173313] +17:25:27 [ 11] [ 6] [223761] +17:25:27 [ 12] [ 6] [173313] +17:25:27 [ 13] [ 4] [0320] +17:25:27 [ 15] [ 4] [0320] +17:25:27 [ 18] [ 4] [6011] +17:25:27 [ 32] [ 6] [220699] +17:25:27 [ 35] [ 32] [6213543000192632=491212019263856] +17:25:27 [ 37] [ 12] [507900118784] +17:25:27 [ 38] [ 6] [223761] +17:25:27 [ 39] [ 2] [51] +17:25:27 [ 41] [ 8] [01001100] +17:25:27 [ 49] [ 3] [418] +17:25:27 [ 54] [ 40] [1001418C0000148058801002418C000014805880] +17:25:27 ============================================================================ +17:25:27 Sending to : +17:25:27 ============================================================================ +17:25:27 + + +waiting on router queue for slot.... +17:25:28 ============================================================================ +17:25:28 Slot Id : <284> +17:25:28 Transaction Type : RESPONSE +17:25:28 Received From : +17:25:28 ============================================================================ +17:25:28 FNo. Len. Field Value +17:25:28 ============================================================================ +17:25:28 [ 1] [ 4] [0210] +17:25:28 [ 2] [ 16] [6213543000192632] +17:25:28 [ 3] [ 6] [011000] +17:25:28 [ 4] [ 12] [000019000000] +17:25:28 [ 7] [ 10] [0320173313] +17:25:28 [ 11] [ 6] [223761] +17:25:28 [ 12] [ 6] [173313] +17:25:28 [ 13] [ 4] [0320] +17:25:28 [ 15] [ 4] [0320] +17:25:28 [ 18] [ 4] [6011] +17:25:28 [ 32] [ 6] [220699] +17:25:28 [ 35] [ 32] [6213543000192632=491212019263856] +17:25:28 [ 37] [ 12] [507900118784] +17:25:28 [ 38] [ 6] [223761] +17:25:28 [ 39] [ 2] [51] +17:25:28 [ 41] [ 8] [01001100] +17:25:28 [ 49] [ 3] [418] +17:25:28 [ 54] [ 40] [1001418C0000148058801002418C000014805880] +17:25:28 ============================================================================ +17:25:28 Calculate Source COMM Id = 1 +17:25:28 ============================================================================ +17:25:28 + + +waiting on router queue for slot.... +17:25:36 ============================================================================ +17:25:36 Slot Id : <287> +17:25:36 Transaction Type : REQUEST +17:25:36 Received From : +17:25:36 ============================================================================ +17:25:36 FNo. Len. Field Value +17:25:36 ============================================================================ +17:25:36 [ 1] [ 4] [0200] +17:25:36 [ 2] [ 16] [6213548000169878] +17:25:36 [ 3] [ 6] [011000] +17:25:36 [ 4] [ 12] [000010000000] +17:25:36 [ 7] [ 10] [0320173323] +17:25:36 [ 11] [ 6] [021189] +17:25:36 [ 12] [ 6] [173323] +17:25:36 [ 13] [ 4] [0320] +17:25:36 [ 14] [ 4] [1312] +17:25:36 [ 15] [ 4] [0320] +17:25:36 [ 18] [ 4] [6011] +17:25:36 [ 22] [ 3] [900] +17:25:36 [ 25] [ 2] [02] +17:25:36 [ 28] [ 9] [D00002000] +17:25:36 [ 32] [ 6] [220699] +17:25:36 [ 35] [ 32] [6213548000169878=131212016987614] +17:25:36 [ 37] [ 12] [507900263131] +17:25:36 [ 41] [ 8] [01001400] +17:25:36 [ 42] [ 15] [APTRA ] +17:25:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:25:36 [ 49] [ 3] [418] +17:25:36 [ 52] [ 16] [F88D14CFE9513E1A] +17:25:36 ============================================================================ +17:25:36 + + +waiting on router queue for slot.... +17:25:36 Sending to : +17:25:36 ============================================================================ +17:25:36 Sending to : +17:25:36 ============================================================================ +17:25:37 ============================================================================ +17:25:37 Slot Id : <287> +17:25:37 Transaction Type : REQUEST +17:25:37 Received From : +17:25:37 ============================================================================ +17:25:37 FNo. Len. Field Value +17:25:37 ============================================================================ +17:25:37 [ 1] [ 4] [0200] +17:25:37 [ 2] [ 16] [6213548000169878] +17:25:37 [ 3] [ 6] [011000] +17:25:37 [ 4] [ 12] [000010000000] +17:25:37 [ 7] [ 10] [0320173323] +17:25:37 [ 11] [ 6] [021189] +17:25:37 [ 12] [ 6] [173323] +17:25:37 [ 13] [ 4] [0320] +17:25:37 [ 14] [ 4] [1312] +17:25:37 [ 15] [ 4] [0320] +17:25:37 [ 18] [ 4] [6011] +17:25:37 [ 22] [ 3] [900] +17:25:37 [ 25] [ 2] [02] +17:25:37 [ 28] [ 9] [D00002000] +17:25:37 [ 32] [ 6] [220699] +17:25:37 [ 35] [ 32] [6213548000169878=131212016987614] +17:25:37 [ 37] [ 12] [507900263131] +17:25:37 [ 41] [ 8] [01001400] +17:25:37 [ 42] [ 15] [APTRA ] +17:25:37 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:25:37 [ 49] [ 3] [418] +17:25:37 [ 52] [ 16] [F88D14CFE9513E1A] +17:25:37 ============================================================================ +17:25:37 + + +waiting on router queue for slot.... +17:25:37 Sending to : +17:25:37 ============================================================================ +17:25:37 ============================================================================ +17:25:37 Slot Id : <287> +17:25:37 Transaction Type : REQUEST +17:25:37 Received From : +17:25:37 ============================================================================ +17:25:37 FNo. Len. Field Value +17:25:37 ============================================================================ +17:25:37 [ 1] [ 4] [0200] +17:25:37 [ 2] [ 16] [6213548000169878] +17:25:37 [ 3] [ 6] [011000] +17:25:37 [ 4] [ 12] [000010000000] +17:25:37 [ 7] [ 10] [0320173323] +17:25:37 [ 11] [ 6] [021189] +17:25:37 [ 12] [ 6] [173323] +17:25:37 [ 13] [ 4] [0320] +17:25:37 [ 14] [ 4] [1312] +17:25:37 [ 15] [ 4] [0320] +17:25:37 [ 18] [ 4] [6011] +17:25:37 [ 22] [ 3] [900] +17:25:37 [ 25] [ 2] [02] +17:25:37 [ 28] [ 9] [D00002000] +17:25:37 [ 32] [ 6] [220699] +17:25:37 [ 35] [ 32] [6213548000169878=131212016987614] +17:25:37 [ 37] [ 12] [507900263131] +17:25:37 [ 41] [ 8] [01001400] +17:25:37 [ 42] [ 15] [APTRA ] +17:25:37 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:25:37 [ 49] [ 3] [418] +17:25:37 [ 52] [ 16] [44CDC9775E953019] +17:25:37 ============================================================================ +17:25:37 + + +waiting on router queue for slot.... +17:25:37 Sending to : <0> +17:25:37 ============================================================================ +17:25:37 ============================================================================ +17:25:37 Slot Id : <287> +17:25:37 Transaction Type : RESPONSE +17:25:37 Received From : +17:25:37 ============================================================================ +17:25:37 FNo. Len. Field Value +17:25:37 ============================================================================ +17:25:37 [ 1] [ 4] [0210] +17:25:37 [ 2] [ 16] [6213548000169878] +17:25:37 [ 3] [ 6] [011000] +17:25:37 [ 4] [ 12] [000010000000] +17:25:37 [ 7] [ 10] [0320173323] +17:25:37 [ 11] [ 6] [021189] +17:25:37 [ 12] [ 6] [173323] +17:25:37 [ 13] [ 4] [0320] +17:25:37 [ 15] [ 4] [0320] +17:25:37 [ 18] [ 4] [6011] +17:25:37 [ 32] [ 6] [220699] +17:25:37 [ 35] [ 32] [6213548000169878=131212016987614] +17:25:37 [ 37] [ 12] [507900263131] +17:25:37 [ 38] [ 6] [032197] +17:25:37 [ 39] [ 2] [00] +17:25:37 [ 41] [ 8] [01001400] +17:25:37 [ 49] [ 3] [418] +17:25:37 [ 54] [ 40] [1001418C0000450006641002418C000045000664] +17:25:37 ============================================================================ +17:25:37 Sending to : +17:25:37 ============================================================================ +17:25:37 + + +waiting on router queue for slot.... +17:25:39 ============================================================================ +17:25:39 Slot Id : <287> +17:25:39 Transaction Type : RESPONSE +17:25:39 Received From : +17:25:39 ============================================================================ +17:25:39 FNo. Len. Field Value +17:25:39 ============================================================================ +17:25:39 [ 1] [ 4] [0210] +17:25:39 [ 2] [ 16] [6213548000169878] +17:25:39 [ 3] [ 6] [011000] +17:25:39 [ 4] [ 12] [000010000000] +17:25:39 [ 7] [ 10] [0320173323] +17:25:39 [ 11] [ 6] [021189] +17:25:39 [ 12] [ 6] [173323] +17:25:39 [ 13] [ 4] [0320] +17:25:39 [ 15] [ 4] [0320] +17:25:39 [ 18] [ 4] [6011] +17:25:39 [ 32] [ 6] [220699] +17:25:39 [ 35] [ 32] [6213548000169878=131212016987614] +17:25:39 [ 37] [ 12] [507900263131] +17:25:39 [ 38] [ 6] [032197] +17:25:39 [ 39] [ 2] [00] +17:25:39 [ 41] [ 8] [01001400] +17:25:39 [ 49] [ 3] [418] +17:25:39 [ 54] [ 40] [1001418C0000450006641002418C000045000664] +17:25:39 ============================================================================ +17:25:39 Calculate Source COMM Id = 1 +17:25:39 ============================================================================ +17:25:39 + + +waiting on router queue for slot.... +17:25:39 ============================================================================ +17:25:39 Slot Id : <290> +17:25:39 Transaction Type : REQUEST +17:25:39 Received From : +17:25:39 ============================================================================ +17:25:39 FNo. Len. Field Value +17:25:39 ============================================================================ +17:25:39 [ 1] [ 4] [0800] +17:25:39 [ 7] [ 10] [0320102446] +17:25:39 [ 11] [ 6] [157454] +17:25:39 [ 70] [ 3] [301] +17:25:39 ============================================================================ +17:25:39 + + +waiting on router queue for slot.... +17:25:39 Sending to : +17:25:39 ============================================================================ +17:25:39 ============================================================================ +17:25:39 Slot Id : <290> +17:25:39 Transaction Type : RESPONSE +17:25:39 Received From : +17:25:39 ============================================================================ +17:25:39 FNo. Len. Field Value +17:25:39 ============================================================================ +17:25:39 [ 1] [ 4] [0810] +17:25:39 [ 7] [ 10] [0320102446] +17:25:39 [ 11] [ 6] [157454] +17:25:39 [ 39] [ 2] [00] +17:25:39 [ 70] [ 3] [301] +17:25:39 ============================================================================ +17:25:39 Calculate Source COMM Id = 2 +17:25:39 ============================================================================ +17:25:39 + + +waiting on router queue for slot.... +17:25:44 ============================================================================ +17:25:44 Slot Id : <277> +17:25:44 Transaction Type : REQUEST +17:25:44 Received From : +17:25:44 ============================================================================ +17:25:44 FNo. Len. Field Value +17:25:44 ============================================================================ +17:25:44 [ 1] [ 4] [0200] +17:25:44 [ 2] [ 16] [6213548000205987] +17:25:44 [ 3] [ 6] [301000] +17:25:44 [ 7] [ 10] [0320102451] +17:25:44 [ 11] [ 6] [270846] +17:25:44 [ 12] [ 6] [172450] +17:25:44 [ 13] [ 4] [0320] +17:25:44 [ 14] [ 4] [1712] +17:25:44 [ 15] [ 4] [0320] +17:25:44 [ 18] [ 4] [6011] +17:25:44 [ 19] [ 3] [418] +17:25:44 [ 22] [ 3] [021] +17:25:44 [ 25] [ 2] [01] +17:25:44 [ 32] [ 6] [180893] +17:25:44 [ 35] [ 32] [6213548000205987=171212010598583] +17:25:44 [ 37] [ 12] [507910270846] +17:25:44 [ 41] [ 8] [0523XYNG] +17:25:44 [ 42] [ 15] [999999 ] +17:25:44 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +17:25:44 [ 49] [ 3] [418] +17:25:44 [ 52] [ 16] [40029000593525DE] +17:25:44 ============================================================================ +17:25:44 + + +waiting on router queue for slot.... +17:25:44 Sending to : +17:25:44 ============================================================================ +17:25:44 Sending to : +17:25:44 ============================================================================ +17:25:45 ============================================================================ +17:25:45 Slot Id : <277> +17:25:45 Transaction Type : REQUEST +17:25:45 Received From : +17:25:45 ============================================================================ +17:25:45 FNo. Len. Field Value +17:25:45 ============================================================================ +17:25:45 [ 1] [ 4] [0200] +17:25:45 [ 2] [ 16] [6213548000205987] +17:25:45 [ 3] [ 6] [301000] +17:25:45 [ 7] [ 10] [0320102451] +17:25:45 [ 11] [ 6] [270846] +17:25:45 [ 12] [ 6] [172450] +17:25:45 [ 13] [ 4] [0320] +17:25:45 [ 14] [ 4] [1712] +17:25:45 [ 15] [ 4] [0320] +17:25:45 [ 18] [ 4] [6011] +17:25:45 [ 19] [ 3] [418] +17:25:45 [ 22] [ 3] [021] +17:25:45 [ 25] [ 2] [01] +17:25:45 [ 32] [ 6] [180893] +17:25:45 [ 35] [ 32] [6213548000205987=171212010598583] +17:25:45 [ 37] [ 12] [507910270846] +17:25:45 [ 41] [ 8] [0523XYNG] +17:25:45 [ 42] [ 15] [999999 ] +17:25:45 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +17:25:45 [ 49] [ 3] [418] +17:25:45 [ 52] [ 16] [40029000593525DE] +17:25:45 ============================================================================ +17:25:45 + + +waiting on router queue for slot.... +17:25:45 Sending to : +17:25:45 ============================================================================ +17:25:45 ============================================================================ +17:25:45 Slot Id : <277> +17:25:45 Transaction Type : REQUEST +17:25:45 Received From : +17:25:45 ============================================================================ +17:25:45 FNo. Len. Field Value +17:25:45 ============================================================================ +17:25:45 [ 1] [ 4] [0200] +17:25:45 [ 2] [ 16] [6213548000205987] +17:25:45 [ 3] [ 6] [301000] +17:25:45 [ 7] [ 10] [0320102451] +17:25:45 [ 11] [ 6] [270846] +17:25:45 [ 12] [ 6] [172450] +17:25:45 [ 13] [ 4] [0320] +17:25:45 [ 14] [ 4] [1712] +17:25:45 [ 15] [ 4] [0320] +17:25:45 [ 18] [ 4] [6011] +17:25:45 [ 19] [ 3] [418] +17:25:45 [ 22] [ 3] [021] +17:25:45 [ 25] [ 2] [01] +17:25:45 [ 32] [ 6] [180893] +17:25:45 [ 35] [ 32] [6213548000205987=171212010598583] +17:25:45 [ 37] [ 12] [507910270846] +17:25:45 [ 41] [ 8] [0523XYNG] +17:25:45 [ 42] [ 15] [999999 ] +17:25:45 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +17:25:45 [ 49] [ 3] [418] +17:25:45 [ 52] [ 16] [2A43FB72A26C8923] +17:25:45 ============================================================================ +17:25:45 + + +waiting on router queue for slot.... +17:25:45 Sending to : <0> +17:25:45 ============================================================================ +17:25:45 ============================================================================ +17:25:45 Slot Id : <277> +17:25:45 Transaction Type : RESPONSE +17:25:45 Received From : +17:25:45 ============================================================================ +17:25:45 FNo. Len. Field Value +17:25:45 ============================================================================ +17:25:45 [ 1] [ 4] [0210] +17:25:45 [ 2] [ 16] [6213548000205987] +17:25:45 [ 3] [ 6] [301000] +17:25:45 [ 4] [ 12] [000000000000] +17:25:45 [ 7] [ 10] [0320102451] +17:25:45 [ 11] [ 6] [270846] +17:25:45 [ 12] [ 6] [172450] +17:25:45 [ 13] [ 4] [0320] +17:25:45 [ 15] [ 4] [0320] +17:25:45 [ 18] [ 4] [6011] +17:25:45 [ 19] [ 3] [418] +17:25:45 [ 32] [ 6] [180893] +17:25:45 [ 35] [ 32] [6213548000205987=171212010598583] +17:25:45 [ 37] [ 12] [507910270846] +17:25:45 [ 38] [ 6] [067227] +17:25:45 [ 39] [ 2] [00] +17:25:45 [ 41] [ 8] [0523XYNG] +17:25:45 [ 49] [ 3] [418] +17:25:45 [ 54] [ 40] [1001418C0001226627951002418C000122662795] +17:25:45 ============================================================================ +17:25:45 Sending to : +17:25:45 ============================================================================ +17:25:45 + + +waiting on router queue for slot.... +17:25:46 ============================================================================ +17:25:46 Slot Id : <277> +17:25:46 Transaction Type : RESPONSE +17:25:46 Received From : +17:25:46 ============================================================================ +17:25:46 FNo. Len. Field Value +17:25:46 ============================================================================ +17:25:46 [ 1] [ 4] [0210] +17:25:46 [ 2] [ 16] [6213548000205987] +17:25:46 [ 3] [ 6] [301000] +17:25:46 [ 4] [ 12] [000000000000] +17:25:46 [ 7] [ 10] [0320102451] +17:25:46 [ 11] [ 6] [270846] +17:25:46 [ 12] [ 6] [172450] +17:25:46 [ 13] [ 4] [0320] +17:25:46 [ 15] [ 4] [0320] +17:25:46 [ 18] [ 4] [6011] +17:25:46 [ 19] [ 3] [418] +17:25:46 [ 32] [ 6] [180893] +17:25:46 [ 35] [ 32] [6213548000205987=171212010598583] +17:25:46 [ 37] [ 12] [507910270846] +17:25:46 [ 38] [ 6] [067227] +17:25:46 [ 39] [ 2] [00] +17:25:46 [ 41] [ 8] [0523XYNG] +17:25:46 [ 49] [ 3] [418] +17:25:46 [ 54] [ 40] [1001418C0001226627951002418C000122662795] +17:25:46 ============================================================================ +17:25:46 Calculate Source COMM Id = 2 +17:25:46 ============================================================================ +17:25:46 + + +waiting on router queue for slot.... +17:26:01 ============================================================================ +17:26:01 Slot Id : <271> +17:26:01 Transaction Type : REQUEST +17:26:01 Received From : +17:26:01 ============================================================================ +17:26:01 FNo. Len. Field Value +17:26:01 ============================================================================ +17:26:01 [ 1] [ 4] [0800] +17:26:01 [ 7] [ 10] [0320102508] +17:26:01 [ 11] [ 6] [157455] +17:26:01 [ 70] [ 3] [301] +17:26:01 ============================================================================ +17:26:01 + + +waiting on router queue for slot.... +17:26:01 Sending to : +17:26:01 ============================================================================ +17:26:01 ============================================================================ +17:26:01 Slot Id : <271> +17:26:01 Transaction Type : RESPONSE +17:26:01 Received From : +17:26:01 ============================================================================ +17:26:01 FNo. Len. Field Value +17:26:01 ============================================================================ +17:26:01 [ 1] [ 4] [0810] +17:26:01 [ 7] [ 10] [0320102508] +17:26:01 [ 11] [ 6] [157455] +17:26:01 [ 39] [ 2] [00] +17:26:01 [ 70] [ 3] [301] +17:26:01 ============================================================================ +17:26:01 Calculate Source COMM Id = 2 +17:26:01 ============================================================================ +17:26:01 + + +waiting on router queue for slot.... +17:26:02 ============================================================================ +17:26:02 Slot Id : <267> +17:26:02 Transaction Type : REQUEST +17:26:02 Received From : +17:26:02 ============================================================================ +17:26:02 FNo. Len. Field Value +17:26:02 ============================================================================ +17:26:02 [ 1] [ 4] [0200] +17:26:02 [ 2] [ 16] [6688990040140806] +17:26:02 [ 3] [ 6] [011000] +17:26:02 [ 4] [ 12] [000060000000] +17:26:02 [ 7] [ 10] [0320172557] +17:26:02 [ 11] [ 6] [815202] +17:26:02 [ 12] [ 6] [172557] +17:26:02 [ 13] [ 4] [0320] +17:26:02 [ 15] [ 4] [0320] +17:26:02 [ 18] [ 4] [6011] +17:26:02 [ 22] [ 3] [900] +17:26:02 [ 25] [ 2] [02] +17:26:02 [ 28] [ 9] [D00002000] +17:26:02 [ 32] [ 6] [621354] +17:26:02 [ 35] [ 37] [6688990040140806=98041261622143500000] +17:26:02 [ 37] [ 12] [507904755536] +17:26:02 [ 41] [ 8] [07001100] +17:26:02 [ 42] [ 15] [NATIVE ] +17:26:02 [ 43] [ 40] [Industry Market Namtar LAO] +17:26:02 [ 49] [ 3] [418] +17:26:02 [ 52] [ 16] [7C6EAFEA63F18C45] +17:26:02 ============================================================================ +17:26:02 + + +waiting on router queue for slot.... +17:26:02 Sending to : +17:26:02 ============================================================================ +17:26:02 Sending to : +17:26:02 ============================================================================ +17:26:03 ============================================================================ +17:26:03 Slot Id : <267> +17:26:03 Transaction Type : REQUEST +17:26:03 Received From : +17:26:03 ============================================================================ +17:26:03 FNo. Len. Field Value +17:26:03 ============================================================================ +17:26:03 [ 1] [ 4] [0200] +17:26:03 [ 2] [ 16] [6688990040140806] +17:26:03 [ 3] [ 6] [011000] +17:26:03 [ 4] [ 12] [000060000000] +17:26:03 [ 7] [ 10] [0320172557] +17:26:03 [ 11] [ 6] [815202] +17:26:03 [ 12] [ 6] [172557] +17:26:03 [ 13] [ 4] [0320] +17:26:03 [ 15] [ 4] [0320] +17:26:03 [ 18] [ 4] [6011] +17:26:03 [ 22] [ 3] [900] +17:26:03 [ 25] [ 2] [02] +17:26:03 [ 28] [ 9] [D00002000] +17:26:03 [ 32] [ 6] [621354] +17:26:03 [ 35] [ 37] [6688990040140806=98041261622143500000] +17:26:03 [ 37] [ 12] [507904755536] +17:26:03 [ 41] [ 8] [07001100] +17:26:03 [ 42] [ 15] [NATIVE ] +17:26:03 [ 43] [ 40] [Industry Market Namtar LAO] +17:26:03 [ 49] [ 3] [418] +17:26:03 [ 52] [ 16] [7C6EAFEA63F18C45] +17:26:03 ============================================================================ +17:26:03 + + +waiting on router queue for slot.... +17:26:03 Sending to : +17:26:03 ============================================================================ +17:26:03 ============================================================================ +17:26:03 Slot Id : <267> +17:26:03 Transaction Type : REQUEST +17:26:03 Received From : +17:26:03 ============================================================================ +17:26:03 FNo. Len. Field Value +17:26:03 ============================================================================ +17:26:03 [ 1] [ 4] [0200] +17:26:03 [ 2] [ 16] [6688990040140806] +17:26:03 [ 3] [ 6] [011000] +17:26:03 [ 4] [ 12] [000060000000] +17:26:03 [ 7] [ 10] [0320172557] +17:26:03 [ 11] [ 6] [815202] +17:26:03 [ 12] [ 6] [172557] +17:26:03 [ 13] [ 4] [0320] +17:26:03 [ 15] [ 4] [0320] +17:26:03 [ 18] [ 4] [6011] +17:26:03 [ 22] [ 3] [900] +17:26:03 [ 25] [ 2] [02] +17:26:03 [ 28] [ 9] [D00002000] +17:26:03 [ 32] [ 6] [621354] +17:26:03 [ 35] [ 37] [6688990040140806=98041261622143500000] +17:26:03 [ 37] [ 12] [507904755536] +17:26:03 [ 41] [ 8] [07001100] +17:26:03 [ 42] [ 15] [NATIVE ] +17:26:03 [ 43] [ 40] [Industry Market Namtar LAO] +17:26:03 [ 49] [ 3] [418] +17:26:03 [ 52] [ 16] [C9C3D148E5099F9F] +17:26:03 ============================================================================ +17:26:03 + + +waiting on router queue for slot.... +17:26:03 Sending to : <4> +17:26:03 ============================================================================ +17:26:04 ============================================================================ +17:26:04 Slot Id : <267> +17:26:04 Transaction Type : RESPONSE +17:26:04 Received From : +17:26:04 ============================================================================ +17:26:04 FNo. Len. Field Value +17:26:04 ============================================================================ +17:26:04 [ 1] [ 4] [0210] +17:26:04 [ 2] [ 16] [6688990040140806] +17:26:04 [ 3] [ 6] [011000] +17:26:04 [ 4] [ 12] [000060000000] +17:26:04 [ 11] [ 6] [815202] +17:26:04 [ 12] [ 6] [172557] +17:26:04 [ 15] [ 4] [0320] +17:26:04 [ 18] [ 4] [6011] +17:26:04 [ 32] [ 6] [621354] +17:26:04 [ 35] [ 37] [6688990040140806=98041261622143500000] +17:26:04 [ 37] [ 12] [507904755536] +17:26:04 [ 38] [ 6] [861738] +17:26:04 [ 39] [ 2] [00] +17:26:04 [ 41] [ 8] [07001100] +17:26:04 [ 49] [ 3] [418] +17:26:04 [ 54] [ 20] [1002418C000108395600] +17:26:04 ============================================================================ +17:26:04 Sending to : +17:26:04 ============================================================================ +17:26:04 + + +waiting on router queue for slot.... +17:26:05 ============================================================================ +17:26:05 Slot Id : <267> +17:26:05 Transaction Type : RESPONSE +17:26:05 Received From : +17:26:05 ============================================================================ +17:26:05 FNo. Len. Field Value +17:26:05 ============================================================================ +17:26:05 [ 1] [ 4] [0210] +17:26:05 [ 2] [ 16] [6688990040140806] +17:26:05 [ 3] [ 6] [011000] +17:26:05 [ 4] [ 12] [000060000000] +17:26:05 [ 11] [ 6] [815202] +17:26:05 [ 12] [ 6] [172557] +17:26:05 [ 15] [ 4] [0320] +17:26:05 [ 18] [ 4] [6011] +17:26:05 [ 32] [ 6] [621354] +17:26:05 [ 35] [ 37] [6688990040140806=98041261622143500000] +17:26:05 [ 37] [ 12] [507904755536] +17:26:05 [ 38] [ 6] [861738] +17:26:05 [ 39] [ 2] [00] +17:26:05 [ 41] [ 8] [07001100] +17:26:05 [ 49] [ 3] [418] +17:26:05 [ 54] [ 20] [1002418C000108395600] +17:26:05 ============================================================================ +17:26:05 Calculate Source COMM Id = 0 +17:26:05 ============================================================================ +17:26:05 + + +waiting on router queue for slot.... +17:26:11 ============================================================================ +17:26:11 Slot Id : <245> +17:26:11 Transaction Type : REQUEST +17:26:11 Received From : +17:26:11 ============================================================================ +17:26:11 FNo. Len. Field Value +17:26:11 ============================================================================ +17:26:11 [ 1] [ 4] [0800] +17:26:11 [ 7] [ 10] [0320102518] +17:26:11 [ 11] [ 6] [157456] +17:26:11 [ 70] [ 3] [301] +17:26:11 ============================================================================ +17:26:11 + + +waiting on router queue for slot.... +17:26:11 Sending to : +17:26:11 ============================================================================ +17:26:11 ============================================================================ +17:26:11 Slot Id : <245> +17:26:11 Transaction Type : RESPONSE +17:26:11 Received From : +17:26:11 ============================================================================ +17:26:11 FNo. Len. Field Value +17:26:11 ============================================================================ +17:26:11 [ 1] [ 4] [0810] +17:26:11 [ 7] [ 10] [0320102518] +17:26:11 [ 11] [ 6] [157456] +17:26:11 [ 39] [ 2] [00] +17:26:11 [ 70] [ 3] [301] +17:26:11 ============================================================================ +17:26:11 Calculate Source COMM Id = 2 +17:26:11 ============================================================================ +17:26:11 + + +waiting on router queue for slot.... +17:26:16 ============================================================================ +17:26:16 Slot Id : <236> +17:26:16 Transaction Type : REQUEST +17:26:16 Received From : +17:26:16 ============================================================================ +17:26:16 FNo. Len. Field Value +17:26:16 ============================================================================ +17:26:16 [ 1] [ 4] [0200] +17:26:16 [ 2] [ 16] [6688990103595904] +17:26:16 [ 3] [ 6] [010000] +17:26:16 [ 4] [ 12] [000040000000] +17:26:16 [ 7] [ 10] [0320172611] +17:26:16 [ 11] [ 6] [815256] +17:26:16 [ 12] [ 6] [172611] +17:26:16 [ 13] [ 4] [0320] +17:26:16 [ 15] [ 4] [0320] +17:26:16 [ 18] [ 4] [6011] +17:26:16 [ 22] [ 3] [900] +17:26:16 [ 25] [ 2] [02] +17:26:16 [ 28] [ 9] [D00002000] +17:26:16 [ 32] [ 6] [621354] +17:26:16 [ 35] [ 37] [6688990103595904=43011231590483100000] +17:26:16 [ 37] [ 12] [507903489478] +17:26:16 [ 41] [ 8] [06002100] +17:26:16 [ 42] [ 15] [NATIVE ] +17:26:16 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:26:16 [ 49] [ 3] [418] +17:26:16 [ 52] [ 16] [6BBEEBB686AA502A] +17:26:16 ============================================================================ +17:26:16 + + +waiting on router queue for slot.... +17:26:16 Sending to : +17:26:16 ============================================================================ +17:26:16 Sending to : +17:26:16 ============================================================================ +17:26:16 ============================================================================ +17:26:16 Slot Id : <236> +17:26:16 Transaction Type : REQUEST +17:26:16 Received From : +17:26:16 ============================================================================ +17:26:16 FNo. Len. Field Value +17:26:16 ============================================================================ +17:26:16 [ 1] [ 4] [0200] +17:26:16 [ 2] [ 16] [6688990103595904] +17:26:16 [ 3] [ 6] [010000] +17:26:16 [ 4] [ 12] [000040000000] +17:26:16 [ 7] [ 10] [0320172611] +17:26:16 [ 11] [ 6] [815256] +17:26:16 [ 12] [ 6] [172611] +17:26:16 [ 13] [ 4] [0320] +17:26:16 [ 15] [ 4] [0320] +17:26:16 [ 18] [ 4] [6011] +17:26:16 [ 22] [ 3] [900] +17:26:16 [ 25] [ 2] [02] +17:26:16 [ 28] [ 9] [D00002000] +17:26:16 [ 32] [ 6] [621354] +17:26:16 [ 35] [ 37] [6688990103595904=43011231590483100000] +17:26:16 [ 37] [ 12] [507903489478] +17:26:16 [ 41] [ 8] [06002100] +17:26:16 [ 42] [ 15] [NATIVE ] +17:26:16 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:26:16 [ 49] [ 3] [418] +17:26:16 [ 52] [ 16] [6BBEEBB686AA502A] +17:26:16 ============================================================================ +17:26:16 + + +waiting on router queue for slot.... +17:26:16 Sending to : +17:26:16 ============================================================================ +17:26:16 ============================================================================ +17:26:16 Slot Id : <236> +17:26:16 Transaction Type : REQUEST +17:26:16 Received From : +17:26:16 ============================================================================ +17:26:16 FNo. Len. Field Value +17:26:16 ============================================================================ +17:26:16 [ 1] [ 4] [0200] +17:26:16 [ 2] [ 16] [6688990103595904] +17:26:16 [ 3] [ 6] [010000] +17:26:16 [ 4] [ 12] [000040000000] +17:26:16 [ 7] [ 10] [0320172611] +17:26:16 [ 11] [ 6] [815256] +17:26:16 [ 12] [ 6] [172611] +17:26:16 [ 13] [ 4] [0320] +17:26:16 [ 15] [ 4] [0320] +17:26:16 [ 18] [ 4] [6011] +17:26:16 [ 22] [ 3] [900] +17:26:16 [ 25] [ 2] [02] +17:26:16 [ 28] [ 9] [D00002000] +17:26:16 [ 32] [ 6] [621354] +17:26:16 [ 35] [ 37] [6688990103595904=43011231590483100000] +17:26:16 [ 37] [ 12] [507903489478] +17:26:16 [ 41] [ 8] [06002100] +17:26:16 [ 42] [ 15] [NATIVE ] +17:26:16 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:26:16 [ 49] [ 3] [418] +17:26:16 [ 52] [ 16] [87C372AE97FB4474] +17:26:16 ============================================================================ +17:26:16 + + +waiting on router queue for slot.... +17:26:16 Sending to : <4> +17:26:16 ============================================================================ +17:26:18 ============================================================================ +17:26:18 Slot Id : <236> +17:26:18 Transaction Type : RESPONSE +17:26:18 Received From : +17:26:18 ============================================================================ +17:26:18 FNo. Len. Field Value +17:26:18 ============================================================================ +17:26:18 [ 1] [ 4] [0210] +17:26:18 [ 2] [ 16] [6688990103595904] +17:26:18 [ 3] [ 6] [010000] +17:26:18 [ 4] [ 12] [000040000000] +17:26:18 [ 11] [ 6] [815256] +17:26:18 [ 12] [ 6] [172611] +17:26:18 [ 15] [ 4] [0320] +17:26:18 [ 18] [ 4] [6011] +17:26:18 [ 32] [ 6] [621354] +17:26:18 [ 35] [ 37] [6688990103595904=43011231590483100000] +17:26:18 [ 37] [ 12] [507903489478] +17:26:18 [ 38] [ 6] [757252] +17:26:18 [ 39] [ 2] [00] +17:26:18 [ 41] [ 8] [06002100] +17:26:18 [ 49] [ 3] [418] +17:26:18 [ 54] [ 20] [0002418C000469857554] +17:26:18 ============================================================================ +17:26:18 Sending to : +17:26:18 ============================================================================ +17:26:18 + + +waiting on router queue for slot.... +17:26:19 ============================================================================ +17:26:19 Slot Id : <236> +17:26:19 Transaction Type : RESPONSE +17:26:19 Received From : +17:26:19 ============================================================================ +17:26:19 FNo. Len. Field Value +17:26:19 ============================================================================ +17:26:19 [ 1] [ 4] [0210] +17:26:19 [ 2] [ 16] [6688990103595904] +17:26:19 [ 3] [ 6] [010000] +17:26:19 [ 4] [ 12] [000040000000] +17:26:19 [ 11] [ 6] [815256] +17:26:19 [ 12] [ 6] [172611] +17:26:19 [ 15] [ 4] [0320] +17:26:19 [ 18] [ 4] [6011] +17:26:19 [ 32] [ 6] [621354] +17:26:19 [ 35] [ 37] [6688990103595904=43011231590483100000] +17:26:19 [ 37] [ 12] [507903489478] +17:26:19 [ 38] [ 6] [757252] +17:26:19 [ 39] [ 2] [00] +17:26:19 [ 41] [ 8] [06002100] +17:26:19 [ 49] [ 3] [418] +17:26:19 [ 54] [ 20] [0002418C000469857554] +17:26:19 ============================================================================ +17:26:19 Calculate Source COMM Id = 0 +17:26:19 ============================================================================ +17:26:19 + + +waiting on router queue for slot.... +17:26:22 ============================================================================ +17:26:22 Slot Id : <294> +17:26:22 Transaction Type : REQUEST +17:26:22 Received From : +17:26:22 ============================================================================ +17:26:22 FNo. Len. Field Value +17:26:22 ============================================================================ +17:26:22 [ 1] [ 4] [0800] +17:26:22 [ 7] [ 10] [0320102412] +17:26:22 [ 11] [ 6] [039210] +17:26:22 [ 37] [ 12] [57917039210] +17:26:22 [ 70] [ 3] [301] +17:26:22 ============================================================================ +17:26:22 + + +waiting on router queue for slot.... +17:26:22 Sending to : +17:26:22 ============================================================================ +17:26:22 ============================================================================ +17:26:22 Slot Id : <294> +17:26:22 Transaction Type : RESPONSE +17:26:22 Received From : +17:26:22 ============================================================================ +17:26:22 FNo. Len. Field Value +17:26:22 ============================================================================ +17:26:22 [ 1] [ 4] [0810] +17:26:22 [ 7] [ 10] [0320102412] +17:26:22 [ 11] [ 6] [039210] +17:26:22 [ 37] [ 12] [579170392100] +17:26:22 [ 39] [ 2] [00] +17:26:22 [ 70] [ 3] [810] +17:26:22 ============================================================================ +17:26:22 Calculate Source COMM Id = 4 +17:26:22 ============================================================================ +17:26:22 + + +waiting on router queue for slot.... +17:26:23 ============================================================================ +17:26:23 Slot Id : <303> +17:26:23 Transaction Type : REQUEST +17:26:23 Received From : +17:26:23 ============================================================================ +17:26:23 FNo. Len. Field Value +17:26:23 ============================================================================ +17:26:23 [ 1] [ 4] [0800] +17:26:23 [ 2] [ 5] [02531] +17:26:23 [ 3] [ 6] [579178] +17:26:23 [ 7] [ 10] [0320102623] +17:26:23 [ 11] [ 6] [807424] +17:26:23 [ 15] [ 10] [0320102623] +17:26:23 [ 37] [ 11] [57917807424] +17:26:23 [ 70] [ 3] [001] +17:26:23 ============================================================================ +17:26:23 + + +waiting on router queue for slot.... +17:26:23 ============================================================================ +17:26:23 Slot Id : <303> +17:26:23 Transaction Type : RESPONSE +17:26:23 Received From : +17:26:23 ============================================================================ +17:26:23 FNo. Len. Field Value +17:26:23 ============================================================================ +17:26:23 [ 1] [ 4] [0810] +17:26:23 [ 7] [ 10] [0320102623] +17:26:23 [ 11] [ 6] [807424] +17:26:23 [ 15] [ 4] [0320] +17:26:23 [ 37] [ 12] [57917807424] +17:26:23 [ 39] [ 2] [00] +17:26:23 [ 70] [ 3] [001] +17:26:23 ============================================================================ +17:26:23 Sending to : +17:26:23 ============================================================================ +17:26:23 + + +waiting on router queue for slot.... +17:26:25 ============================================================================ +17:26:25 Slot Id : <217> +17:26:25 Transaction Type : REQUEST +17:26:25 Received From : +17:26:25 ============================================================================ +17:26:25 FNo. Len. Field Value +17:26:25 ============================================================================ +17:26:25 [ 1] [ 4] [0800] +17:26:25 [ 7] [ 10] [0321003815] +17:26:25 [ 11] [ 6] [173815] +17:26:25 [ 37] [ 12] [57917173815] +17:26:25 [ 70] [ 3] [301] +17:26:25 ============================================================================ +17:26:25 + + +waiting on router queue for slot.... +17:26:25 Sending to : +17:26:25 ============================================================================ +17:26:25 ============================================================================ +17:26:25 Slot Id : <217> +17:26:25 Transaction Type : RESPONSE +17:26:25 Received From : +17:26:25 ============================================================================ +17:26:25 FNo. Len. Field Value +17:26:25 ============================================================================ +17:26:25 [ 1] [ 4] [0810] +17:26:25 [ 7] [ 10] [0321003815] +17:26:25 [ 11] [ 6] [173815] +17:26:25 [ 37] [ 12] [579171738150] +17:26:25 [ 39] [ 2] [00] +17:26:25 [ 70] [ 3] [810] +17:26:25 ============================================================================ +17:26:25 Calculate Source COMM Id = 6 +17:26:25 ============================================================================ +17:26:25 + + +waiting on router queue for slot.... +17:26:26 ============================================================================ +17:26:26 Slot Id : <298> +17:26:26 Transaction Type : REQUEST +17:26:26 Received From : +17:26:26 ============================================================================ +17:26:26 FNo. Len. Field Value +17:26:26 ============================================================================ +17:26:26 [ 1] [ 4] [0200] +17:26:26 [ 2] [ 16] [6213544001748166] +17:26:26 [ 3] [ 6] [010000] +17:26:26 [ 4] [ 12] [000056000000] +17:26:26 [ 7] [ 10] [0320173413] +17:26:26 [ 11] [ 6] [240519] +17:26:26 [ 12] [ 6] [173413] +17:26:26 [ 13] [ 4] [0320] +17:26:26 [ 14] [ 4] [4912] +17:26:26 [ 15] [ 4] [0320] +17:26:26 [ 18] [ 4] [6011] +17:26:26 [ 22] [ 3] [900] +17:26:26 [ 25] [ 2] [02] +17:26:26 [ 28] [ 9] [D00002000] +17:26:26 [ 32] [ 6] [220699] +17:26:26 [ 35] [ 32] [6213544001748166=491212014816280] +17:26:26 [ 37] [ 12] [507900360253] +17:26:26 [ 41] [ 8] [05000300] +17:26:26 [ 42] [ 15] [APTRA ] +17:26:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:26:26 [ 49] [ 3] [418] +17:26:26 [ 52] [ 16] [295C03C2278C5AF9] +17:26:26 ============================================================================ +17:26:26 + + +waiting on router queue for slot.... +17:26:26 Sending to : +17:26:26 ============================================================================ +17:26:26 Sending to : +17:26:26 ============================================================================ +17:26:26 ============================================================================ +17:26:26 Slot Id : <298> +17:26:26 Transaction Type : REQUEST +17:26:26 Received From : +17:26:26 ============================================================================ +17:26:26 FNo. Len. Field Value +17:26:26 ============================================================================ +17:26:26 [ 1] [ 4] [0200] +17:26:26 [ 2] [ 16] [6213544001748166] +17:26:26 [ 3] [ 6] [010000] +17:26:26 [ 4] [ 12] [000056000000] +17:26:26 [ 7] [ 10] [0320173413] +17:26:26 [ 11] [ 6] [240519] +17:26:26 [ 12] [ 6] [173413] +17:26:26 [ 13] [ 4] [0320] +17:26:26 [ 14] [ 4] [4912] +17:26:26 [ 15] [ 4] [0320] +17:26:26 [ 18] [ 4] [6011] +17:26:26 [ 22] [ 3] [900] +17:26:26 [ 25] [ 2] [02] +17:26:26 [ 28] [ 9] [D00002000] +17:26:26 [ 32] [ 6] [220699] +17:26:26 [ 35] [ 32] [6213544001748166=491212014816280] +17:26:26 [ 37] [ 12] [507900360253] +17:26:26 [ 41] [ 8] [05000300] +17:26:26 [ 42] [ 15] [APTRA ] +17:26:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:26:26 [ 49] [ 3] [418] +17:26:26 [ 52] [ 16] [295C03C2278C5AF9] +17:26:26 ============================================================================ +17:26:26 + + +waiting on router queue for slot.... +17:26:26 Sending to : +17:26:26 ============================================================================ +17:26:26 ============================================================================ +17:26:26 Slot Id : <298> +17:26:26 Transaction Type : REQUEST +17:26:26 Received From : +17:26:26 ============================================================================ +17:26:26 FNo. Len. Field Value +17:26:26 ============================================================================ +17:26:26 [ 1] [ 4] [0200] +17:26:26 [ 2] [ 16] [6213544001748166] +17:26:26 [ 3] [ 6] [010000] +17:26:26 [ 4] [ 12] [000056000000] +17:26:26 [ 7] [ 10] [0320173413] +17:26:26 [ 11] [ 6] [240519] +17:26:26 [ 12] [ 6] [173413] +17:26:26 [ 13] [ 4] [0320] +17:26:26 [ 14] [ 4] [4912] +17:26:26 [ 15] [ 4] [0320] +17:26:26 [ 18] [ 4] [6011] +17:26:26 [ 22] [ 3] [900] +17:26:26 [ 25] [ 2] [02] +17:26:26 [ 28] [ 9] [D00002000] +17:26:26 [ 32] [ 6] [220699] +17:26:26 [ 35] [ 32] [6213544001748166=491212014816280] +17:26:26 [ 37] [ 12] [507900360253] +17:26:26 [ 41] [ 8] [05000300] +17:26:26 [ 42] [ 15] [APTRA ] +17:26:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:26:26 [ 49] [ 3] [418] +17:26:26 [ 52] [ 16] [B36A5C7B058E20FA] +17:26:26 ============================================================================ +17:26:26 + + +waiting on router queue for slot.... +17:26:26 Sending to : <0> +17:26:26 ============================================================================ +17:26:27 ============================================================================ +17:26:27 Slot Id : <298> +17:26:27 Transaction Type : RESPONSE +17:26:27 Received From : +17:26:27 ============================================================================ +17:26:27 FNo. Len. Field Value +17:26:27 ============================================================================ +17:26:27 [ 1] [ 4] [0210] +17:26:27 [ 2] [ 16] [6213544001748166] +17:26:27 [ 3] [ 6] [010000] +17:26:27 [ 4] [ 12] [000056000000] +17:26:27 [ 7] [ 10] [0320173413] +17:26:27 [ 11] [ 6] [240519] +17:26:27 [ 12] [ 6] [173413] +17:26:27 [ 13] [ 4] [0320] +17:26:27 [ 15] [ 4] [0320] +17:26:27 [ 18] [ 4] [6011] +17:26:27 [ 32] [ 6] [220699] +17:26:27 [ 35] [ 32] [6213544001748166=491212014816280] +17:26:27 [ 37] [ 12] [507900360253] +17:26:27 [ 38] [ 6] [821270] +17:26:27 [ 39] [ 2] [00] +17:26:27 [ 41] [ 8] [05000300] +17:26:27 [ 49] [ 3] [418] +17:26:27 [ 54] [ 40] [0001418C0000059647730002418C000005964773] +17:26:27 ============================================================================ +17:26:27 Sending to : +17:26:27 ============================================================================ +17:26:27 + + +waiting on router queue for slot.... +17:26:28 ============================================================================ +17:26:28 Slot Id : <293> +17:26:28 Transaction Type : REQUEST +17:26:28 Received From : +17:26:28 ============================================================================ +17:26:28 FNo. Len. Field Value +17:26:28 ============================================================================ +17:26:28 [ 1] [ 4] [0800] +17:26:28 [ 7] [ 10] [0320102534] +17:26:28 [ 11] [ 6] [157457] +17:26:28 [ 70] [ 3] [301] +17:26:28 ============================================================================ +17:26:28 + + +waiting on router queue for slot.... +17:26:28 Sending to : +17:26:28 ============================================================================ +17:26:28 ============================================================================ +17:26:28 Slot Id : <293> +17:26:28 Transaction Type : RESPONSE +17:26:28 Received From : +17:26:28 ============================================================================ +17:26:28 FNo. Len. Field Value +17:26:28 ============================================================================ +17:26:28 [ 1] [ 4] [0810] +17:26:28 [ 7] [ 10] [0320102534] +17:26:28 [ 11] [ 6] [157457] +17:26:28 [ 39] [ 2] [00] +17:26:28 [ 70] [ 3] [301] +17:26:28 ============================================================================ +17:26:28 Calculate Source COMM Id = 2 +17:26:28 ============================================================================ +17:26:28 + + +waiting on router queue for slot.... +17:26:28 ============================================================================ +17:26:28 Slot Id : <298> +17:26:28 Transaction Type : RESPONSE +17:26:28 Received From : +17:26:28 ============================================================================ +17:26:28 FNo. Len. Field Value +17:26:28 ============================================================================ +17:26:28 [ 1] [ 4] [0210] +17:26:28 [ 2] [ 16] [6213544001748166] +17:26:28 [ 3] [ 6] [010000] +17:26:28 [ 4] [ 12] [000056000000] +17:26:28 [ 7] [ 10] [0320173413] +17:26:28 [ 11] [ 6] [240519] +17:26:28 [ 12] [ 6] [173413] +17:26:28 [ 13] [ 4] [0320] +17:26:28 [ 15] [ 4] [0320] +17:26:28 [ 18] [ 4] [6011] +17:26:28 [ 32] [ 6] [220699] +17:26:28 [ 35] [ 32] [6213544001748166=491212014816280] +17:26:28 [ 37] [ 12] [507900360253] +17:26:28 [ 38] [ 6] [821270] +17:26:28 [ 39] [ 2] [00] +17:26:28 [ 41] [ 8] [05000300] +17:26:28 [ 49] [ 3] [418] +17:26:28 [ 54] [ 40] [0001418C0000059647730002418C000005964773] +17:26:28 ============================================================================ +17:26:28 Calculate Source COMM Id = 1 +17:26:28 ============================================================================ +17:26:28 + + +waiting on router queue for slot.... +17:26:32 ============================================================================ +17:26:32 Slot Id : <300> +17:26:32 Transaction Type : REQUEST +17:26:32 Received From : +17:26:32 ============================================================================ +17:26:32 FNo. Len. Field Value +17:26:32 ============================================================================ +17:26:32 [ 1] [ 4] [0200] +17:26:32 [ 2] [ 16] [1808930200045995] +17:26:32 [ 3] [ 6] [011000] +17:26:32 [ 4] [ 12] [000020000000] +17:26:32 [ 7] [ 10] [0320172627] +17:26:32 [ 11] [ 6] [815320] +17:26:32 [ 12] [ 6] [172627] +17:26:32 [ 13] [ 4] [0320] +17:26:32 [ 15] [ 4] [0320] +17:26:32 [ 18] [ 4] [6011] +17:26:32 [ 22] [ 3] [900] +17:26:32 [ 25] [ 2] [02] +17:26:32 [ 28] [ 9] [D00002000] +17:26:32 [ 32] [ 6] [621354] +17:26:32 [ 35] [ 27] [1808930200045995=1803500461] +17:26:32 [ 37] [ 12] [507903625415] +17:26:32 [ 41] [ 8] [16001500] +17:26:32 [ 42] [ 15] [NATIVE ] +17:26:32 [ 43] [ 40] [Sea game Village Xaythany LAO] +17:26:32 [ 49] [ 3] [418] +17:26:32 [ 52] [ 16] [04C3D473410CD240] +17:26:32 ============================================================================ +17:26:32 + + +waiting on router queue for slot.... +17:26:32 Sending to : +17:26:32 ============================================================================ +17:26:32 Sending to : +17:26:32 ============================================================================ +17:26:33 ============================================================================ +17:26:33 Slot Id : <300> +17:26:33 Transaction Type : REQUEST +17:26:33 Received From : +17:26:33 ============================================================================ +17:26:33 FNo. Len. Field Value +17:26:33 ============================================================================ +17:26:33 [ 1] [ 4] [0200] +17:26:33 [ 2] [ 16] [1808930200045995] +17:26:33 [ 3] [ 6] [011000] +17:26:33 [ 4] [ 12] [000020000000] +17:26:33 [ 7] [ 10] [0320172627] +17:26:33 [ 11] [ 6] [815320] +17:26:33 [ 12] [ 6] [172627] +17:26:33 [ 13] [ 4] [0320] +17:26:33 [ 15] [ 4] [0320] +17:26:33 [ 18] [ 4] [6011] +17:26:33 [ 22] [ 3] [900] +17:26:33 [ 25] [ 2] [02] +17:26:33 [ 28] [ 9] [D00002000] +17:26:33 [ 32] [ 6] [621354] +17:26:33 [ 35] [ 27] [1808930200045995=1803500461] +17:26:33 [ 37] [ 12] [507903625415] +17:26:33 [ 41] [ 8] [16001500] +17:26:33 [ 42] [ 15] [NATIVE ] +17:26:33 [ 43] [ 40] [Sea game Village Xaythany LAO] +17:26:33 [ 49] [ 3] [418] +17:26:33 [ 52] [ 16] [04C3D473410CD240] +17:26:33 ============================================================================ +17:26:33 + + +waiting on router queue for slot.... +17:26:33 Sending to : +17:26:33 ============================================================================ +17:26:33 ============================================================================ +17:26:33 Slot Id : <300> +17:26:33 Transaction Type : REQUEST +17:26:33 Received From : +17:26:33 ============================================================================ +17:26:33 FNo. Len. Field Value +17:26:33 ============================================================================ +17:26:33 [ 1] [ 4] [0200] +17:26:33 [ 2] [ 16] [1808930200045995] +17:26:33 [ 3] [ 6] [011000] +17:26:33 [ 4] [ 12] [000020000000] +17:26:33 [ 7] [ 10] [0320172627] +17:26:33 [ 11] [ 6] [815320] +17:26:33 [ 12] [ 6] [172627] +17:26:33 [ 13] [ 4] [0320] +17:26:33 [ 15] [ 4] [0320] +17:26:33 [ 18] [ 4] [6011] +17:26:33 [ 22] [ 3] [900] +17:26:33 [ 25] [ 2] [02] +17:26:33 [ 28] [ 9] [D00002000] +17:26:33 [ 32] [ 6] [621354] +17:26:33 [ 35] [ 27] [1808930200045995=1803500461] +17:26:33 [ 37] [ 12] [507903625415] +17:26:33 [ 41] [ 8] [16001500] +17:26:33 [ 42] [ 15] [NATIVE ] +17:26:33 [ 43] [ 40] [Sea game Village Xaythany LAO] +17:26:33 [ 49] [ 3] [418] +17:26:33 [ 52] [ 16] [2E48E1AA986CD2F1] +17:26:33 ============================================================================ +17:26:33 + + +waiting on router queue for slot.... +17:26:33 Sending to : <2> +17:26:33 ============================================================================ +17:26:34 ============================================================================ +17:26:34 Slot Id : <300> +17:26:34 Transaction Type : RESPONSE +17:26:34 Received From : +17:26:34 ============================================================================ +17:26:34 FNo. Len. Field Value +17:26:34 ============================================================================ +17:26:34 [ 1] [ 4] [0210] +17:26:34 [ 2] [ 16] [1808930200045995] +17:26:34 [ 3] [ 6] [011000] +17:26:34 [ 4] [ 12] [000020000000] +17:26:34 [ 6] [ 12] [000020000000] +17:26:34 [ 7] [ 10] [0320172627] +17:26:34 [ 11] [ 6] [815320] +17:26:34 [ 12] [ 6] [172627] +17:26:34 [ 13] [ 4] [0320] +17:26:34 [ 18] [ 4] [6011] +17:26:34 [ 19] [ 3] [418] +17:26:34 [ 22] [ 3] [021] +17:26:34 [ 28] [ 9] [D00002000] +17:26:34 [ 32] [ 6] [621354] +17:26:34 [ 35] [ 27] [1808930200045995=1803500461] +17:26:34 [ 37] [ 12] [507903625415] +17:26:34 [ 39] [ 2] [55] +17:26:34 [ 41] [ 8] [16001500] +17:26:34 [ 49] [ 3] [418] +17:26:34 [ 51] [ 3] [418] +17:26:34 [ 52] [ 16] [2E48E1AA986CD2F1] +17:26:34 ============================================================================ +17:26:34 Sending to : +17:26:34 ============================================================================ +17:26:34 + + +waiting on router queue for slot.... +17:26:35 ============================================================================ +17:26:35 Slot Id : <300> +17:26:35 Transaction Type : RESPONSE +17:26:35 Received From : +17:26:35 ============================================================================ +17:26:35 FNo. Len. Field Value +17:26:35 ============================================================================ +17:26:35 [ 1] [ 4] [0210] +17:26:35 [ 2] [ 16] [1808930200045995] +17:26:35 [ 3] [ 6] [011000] +17:26:35 [ 4] [ 12] [000020000000] +17:26:35 [ 6] [ 12] [000020000000] +17:26:35 [ 7] [ 10] [0320172627] +17:26:35 [ 11] [ 6] [815320] +17:26:35 [ 12] [ 6] [172627] +17:26:35 [ 13] [ 4] [0320] +17:26:35 [ 18] [ 4] [6011] +17:26:35 [ 19] [ 3] [418] +17:26:35 [ 22] [ 3] [021] +17:26:35 [ 28] [ 9] [D00002000] +17:26:35 [ 32] [ 6] [621354] +17:26:35 [ 35] [ 27] [1808930200045995=1803500461] +17:26:35 [ 37] [ 12] [507903625415] +17:26:35 [ 39] [ 2] [55] +17:26:35 [ 41] [ 8] [16001500] +17:26:35 [ 49] [ 3] [418] +17:26:35 [ 51] [ 3] [418] +17:26:35 [ 52] [ 16] [2E48E1AA986CD2F1] +17:26:35 ============================================================================ +17:26:35 Calculate Source COMM Id = 0 +17:26:35 ============================================================================ +17:26:35 + + +waiting on router queue for slot.... +17:26:36 ============================================================================ +17:26:36 Slot Id : <257> +17:26:36 Transaction Type : REQUEST +17:26:36 Received From : +17:26:36 ============================================================================ +17:26:36 FNo. Len. Field Value +17:26:36 ============================================================================ +17:26:36 [ 1] [ 4] [0200] +17:26:36 [ 2] [ 16] [1808930100002534] +17:26:36 [ 3] [ 6] [011000] +17:26:36 [ 4] [ 12] [000010000000] +17:26:36 [ 7] [ 10] [0320172631] +17:26:36 [ 11] [ 6] [815338] +17:26:36 [ 12] [ 6] [172631] +17:26:36 [ 13] [ 4] [0320] +17:26:36 [ 15] [ 4] [0320] +17:26:36 [ 18] [ 4] [6011] +17:26:36 [ 22] [ 3] [900] +17:26:36 [ 25] [ 2] [02] +17:26:36 [ 28] [ 9] [D00002000] +17:26:36 [ 32] [ 6] [621354] +17:26:36 [ 35] [ 27] [1808930100002534=1803500335] +17:26:36 [ 37] [ 12] [507903676031] +17:26:36 [ 41] [ 8] [16002000] +17:26:36 [ 42] [ 15] [NATIVE ] +17:26:36 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +17:26:36 [ 49] [ 3] [418] +17:26:36 [ 52] [ 16] [B0CADB699D92AC01] +17:26:36 ============================================================================ +17:26:36 + + +waiting on router queue for slot.... +17:26:36 Sending to : +17:26:36 ============================================================================ +17:26:36 Sending to : +17:26:36 ============================================================================ +17:26:36 ============================================================================ +17:26:36 Slot Id : <257> +17:26:36 Transaction Type : REQUEST +17:26:36 Received From : +17:26:36 ============================================================================ +17:26:36 FNo. Len. Field Value +17:26:36 ============================================================================ +17:26:36 [ 1] [ 4] [0200] +17:26:36 [ 2] [ 16] [1808930100002534] +17:26:36 [ 3] [ 6] [011000] +17:26:36 [ 4] [ 12] [000010000000] +17:26:36 [ 7] [ 10] [0320172631] +17:26:36 [ 11] [ 6] [815338] +17:26:36 [ 12] [ 6] [172631] +17:26:36 [ 13] [ 4] [0320] +17:26:36 [ 15] [ 4] [0320] +17:26:36 [ 18] [ 4] [6011] +17:26:36 [ 22] [ 3] [900] +17:26:36 [ 25] [ 2] [02] +17:26:36 [ 28] [ 9] [D00002000] +17:26:36 [ 32] [ 6] [621354] +17:26:36 [ 35] [ 27] [1808930100002534=1803500335] +17:26:36 [ 37] [ 12] [507903676031] +17:26:36 [ 41] [ 8] [16002000] +17:26:36 [ 42] [ 15] [NATIVE ] +17:26:36 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +17:26:36 [ 49] [ 3] [418] +17:26:36 [ 52] [ 16] [B0CADB699D92AC01] +17:26:36 ============================================================================ +17:26:36 + + +waiting on router queue for slot.... +17:26:36 Sending to : +17:26:36 ============================================================================ +17:26:36 ============================================================================ +17:26:36 Slot Id : <257> +17:26:36 Transaction Type : REQUEST +17:26:36 Received From : +17:26:36 ============================================================================ +17:26:36 FNo. Len. Field Value +17:26:36 ============================================================================ +17:26:36 [ 1] [ 4] [0200] +17:26:36 [ 2] [ 16] [1808930100002534] +17:26:36 [ 3] [ 6] [011000] +17:26:36 [ 4] [ 12] [000010000000] +17:26:36 [ 7] [ 10] [0320172631] +17:26:36 [ 11] [ 6] [815338] +17:26:36 [ 12] [ 6] [172631] +17:26:36 [ 13] [ 4] [0320] +17:26:36 [ 15] [ 4] [0320] +17:26:36 [ 18] [ 4] [6011] +17:26:36 [ 22] [ 3] [900] +17:26:36 [ 25] [ 2] [02] +17:26:36 [ 28] [ 9] [D00002000] +17:26:36 [ 32] [ 6] [621354] +17:26:36 [ 35] [ 27] [1808930100002534=1803500335] +17:26:36 [ 37] [ 12] [507903676031] +17:26:36 [ 41] [ 8] [16002000] +17:26:36 [ 42] [ 15] [NATIVE ] +17:26:36 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +17:26:36 [ 49] [ 3] [418] +17:26:36 [ 52] [ 16] [FCE161FF29448AD4] +17:26:36 ============================================================================ +17:26:36 + + +waiting on router queue for slot.... +17:26:36 Sending to : <2> +17:26:36 ============================================================================ +17:26:37 ============================================================================ +17:26:37 Slot Id : <299> +17:26:37 Transaction Type : REQUEST +17:26:37 Received From : +17:26:37 ============================================================================ +17:26:37 FNo. Len. Field Value +17:26:37 ============================================================================ +17:26:37 [ 1] [ 4] [0200] +17:26:37 [ 2] [ 16] [6213543000192632] +17:26:37 [ 3] [ 6] [011000] +17:26:37 [ 4] [ 12] [000019000000] +17:26:37 [ 7] [ 10] [0320102542] +17:26:37 [ 11] [ 6] [270849] +17:26:37 [ 12] [ 6] [172542] +17:26:37 [ 13] [ 4] [0320] +17:26:37 [ 14] [ 4] [4912] +17:26:37 [ 15] [ 4] [0320] +17:26:37 [ 18] [ 4] [6011] +17:26:37 [ 19] [ 3] [418] +17:26:37 [ 22] [ 3] [021] +17:26:37 [ 25] [ 2] [01] +17:26:37 [ 28] [ 9] [D00002000] +17:26:37 [ 32] [ 6] [180893] +17:26:37 [ 35] [ 32] [6213543000192632=491212019263856] +17:26:37 [ 37] [ 12] [507910270849] +17:26:37 [ 41] [ 8] [0104NUOL] +17:26:37 [ 42] [ 15] [999999 ] +17:26:37 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +17:26:37 [ 49] [ 3] [418] +17:26:37 [ 52] [ 16] [0231E9AF208C8710] +17:26:37 ============================================================================ +17:26:37 + + +waiting on router queue for slot.... +17:26:37 Sending to : +17:26:37 ============================================================================ +17:26:37 Sending to : +17:26:37 ============================================================================ +17:26:37 ============================================================================ +17:26:37 Slot Id : <299> +17:26:37 Transaction Type : REQUEST +17:26:37 Received From : +17:26:37 ============================================================================ +17:26:37 FNo. Len. Field Value +17:26:37 ============================================================================ +17:26:37 [ 1] [ 4] [0200] +17:26:37 [ 2] [ 16] [6213543000192632] +17:26:37 [ 3] [ 6] [011000] +17:26:37 [ 4] [ 12] [000019000000] +17:26:37 [ 7] [ 10] [0320102542] +17:26:37 [ 11] [ 6] [270849] +17:26:37 [ 12] [ 6] [172542] +17:26:37 [ 13] [ 4] [0320] +17:26:37 [ 14] [ 4] [4912] +17:26:37 [ 15] [ 4] [0320] +17:26:37 [ 18] [ 4] [6011] +17:26:37 [ 19] [ 3] [418] +17:26:37 [ 22] [ 3] [021] +17:26:37 [ 25] [ 2] [01] +17:26:37 [ 28] [ 9] [D00002000] +17:26:37 [ 32] [ 6] [180893] +17:26:37 [ 35] [ 32] [6213543000192632=491212019263856] +17:26:37 [ 37] [ 12] [507910270849] +17:26:37 [ 41] [ 8] [0104NUOL] +17:26:37 [ 42] [ 15] [999999 ] +17:26:37 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +17:26:37 [ 49] [ 3] [418] +17:26:37 [ 52] [ 16] [0231E9AF208C8710] +17:26:37 ============================================================================ +17:26:37 + + +waiting on router queue for slot.... +17:26:37 Sending to : +17:26:37 ============================================================================ +17:26:37 ============================================================================ +17:26:37 Slot Id : <299> +17:26:37 Transaction Type : REQUEST +17:26:37 Received From : +17:26:37 ============================================================================ +17:26:37 FNo. Len. Field Value +17:26:37 ============================================================================ +17:26:37 [ 1] [ 4] [0200] +17:26:37 [ 2] [ 16] [6213543000192632] +17:26:37 [ 3] [ 6] [011000] +17:26:37 [ 4] [ 12] [000019000000] +17:26:37 [ 7] [ 10] [0320102542] +17:26:37 [ 11] [ 6] [270849] +17:26:37 [ 12] [ 6] [172542] +17:26:37 [ 13] [ 4] [0320] +17:26:37 [ 14] [ 4] [4912] +17:26:37 [ 15] [ 4] [0320] +17:26:37 [ 18] [ 4] [6011] +17:26:37 [ 19] [ 3] [418] +17:26:37 [ 22] [ 3] [021] +17:26:37 [ 25] [ 2] [01] +17:26:37 [ 28] [ 9] [D00002000] +17:26:37 [ 32] [ 6] [180893] +17:26:37 [ 35] [ 32] [6213543000192632=491212019263856] +17:26:37 [ 37] [ 12] [507910270849] +17:26:37 [ 41] [ 8] [0104NUOL] +17:26:37 [ 42] [ 15] [999999 ] +17:26:37 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +17:26:37 [ 49] [ 3] [418] +17:26:37 [ 52] [ 16] [64AE1898D9B7D140] +17:26:37 ============================================================================ +17:26:37 + + +waiting on router queue for slot.... +17:26:37 Sending to : <0> +17:26:37 ============================================================================ +17:26:38 ============================================================================ +17:26:38 Slot Id : <299> +17:26:38 Transaction Type : RESPONSE +17:26:38 Received From : +17:26:38 ============================================================================ +17:26:38 FNo. Len. Field Value +17:26:38 ============================================================================ +17:26:38 [ 1] [ 4] [0210] +17:26:38 [ 2] [ 16] [6213543000192632] +17:26:38 [ 3] [ 6] [011000] +17:26:38 [ 4] [ 12] [000019000000] +17:26:38 [ 7] [ 10] [0320102542] +17:26:38 [ 11] [ 6] [270849] +17:26:38 [ 12] [ 6] [172542] +17:26:38 [ 13] [ 4] [0320] +17:26:38 [ 15] [ 4] [0320] +17:26:38 [ 18] [ 4] [6011] +17:26:38 [ 19] [ 3] [418] +17:26:38 [ 32] [ 6] [180893] +17:26:38 [ 35] [ 32] [6213543000192632=491212019263856] +17:26:38 [ 37] [ 12] [507910270849] +17:26:38 [ 38] [ 6] [270849] +17:26:38 [ 39] [ 2] [51] +17:26:38 [ 41] [ 8] [0104NUOL] +17:26:38 [ 49] [ 3] [418] +17:26:38 [ 54] [ 40] [1001418C0000148058801002418C000014805880] +17:26:38 ============================================================================ +17:26:38 Sending to : +17:26:38 ============================================================================ +17:26:38 + + +waiting on router queue for slot.... +17:26:39 ============================================================================ +17:26:39 Slot Id : <299> +17:26:39 Transaction Type : RESPONSE +17:26:39 Received From : +17:26:39 ============================================================================ +17:26:39 FNo. Len. Field Value +17:26:39 ============================================================================ +17:26:39 [ 1] [ 4] [0210] +17:26:39 [ 2] [ 16] [6213543000192632] +17:26:39 [ 3] [ 6] [011000] +17:26:39 [ 4] [ 12] [000019000000] +17:26:39 [ 7] [ 10] [0320102542] +17:26:39 [ 11] [ 6] [270849] +17:26:39 [ 12] [ 6] [172542] +17:26:39 [ 13] [ 4] [0320] +17:26:39 [ 15] [ 4] [0320] +17:26:39 [ 18] [ 4] [6011] +17:26:39 [ 19] [ 3] [418] +17:26:39 [ 32] [ 6] [180893] +17:26:39 [ 35] [ 32] [6213543000192632=491212019263856] +17:26:39 [ 37] [ 12] [507910270849] +17:26:39 [ 38] [ 6] [270849] +17:26:39 [ 39] [ 2] [51] +17:26:39 [ 41] [ 8] [0104NUOL] +17:26:39 [ 49] [ 3] [418] +17:26:39 [ 54] [ 40] [1001418C0000148058801002418C000014805880] +17:26:39 ============================================================================ +17:26:39 Calculate Source COMM Id = 2 +17:26:39 ============================================================================ +17:26:39 + + +waiting on router queue for slot.... +17:26:40 ============================================================================ +17:26:40 Slot Id : <257> +17:26:40 Transaction Type : RESPONSE +17:26:40 Received From : +17:26:40 ============================================================================ +17:26:40 FNo. Len. Field Value +17:26:40 ============================================================================ +17:26:40 [ 1] [ 4] [0210] +17:26:40 [ 2] [ 16] [1808930100002534] +17:26:40 [ 3] [ 6] [011000] +17:26:40 [ 4] [ 12] [000010000000] +17:26:40 [ 6] [ 12] [000010000000] +17:26:40 [ 7] [ 10] [0320172631] +17:26:40 [ 11] [ 6] [815338] +17:26:40 [ 12] [ 6] [172631] +17:26:40 [ 13] [ 4] [0320] +17:26:40 [ 18] [ 4] [6011] +17:26:40 [ 19] [ 3] [418] +17:26:40 [ 22] [ 3] [021] +17:26:40 [ 32] [ 6] [621354] +17:26:40 [ 35] [ 27] [1808930100002534=1803500335] +17:26:40 [ 37] [ 12] [507903676031] +17:26:40 [ 38] [ 6] [815338] +17:26:40 [ 39] [ 2] [00] +17:26:40 [ 41] [ 8] [16002000] +17:26:40 [ 49] [ 3] [418] +17:26:40 [ 52] [ 16] [FCE161FF29448AD4] +17:26:40 [ 54] [ 20] [1001418C000005604800] +17:26:40 ============================================================================ +17:26:40 Sending to : +17:26:40 ============================================================================ +17:26:40 + + +waiting on router queue for slot.... +17:26:41 ============================================================================ +17:26:41 Slot Id : <257> +17:26:41 Transaction Type : RESPONSE +17:26:41 Received From : +17:26:41 ============================================================================ +17:26:41 FNo. Len. Field Value +17:26:41 ============================================================================ +17:26:41 [ 1] [ 4] [0210] +17:26:41 [ 2] [ 16] [1808930100002534] +17:26:41 [ 3] [ 6] [011000] +17:26:41 [ 4] [ 12] [000010000000] +17:26:41 [ 6] [ 12] [000010000000] +17:26:41 [ 7] [ 10] [0320172631] +17:26:41 [ 11] [ 6] [815338] +17:26:41 [ 12] [ 6] [172631] +17:26:41 [ 13] [ 4] [0320] +17:26:41 [ 18] [ 4] [6011] +17:26:41 [ 19] [ 3] [418] +17:26:41 [ 22] [ 3] [021] +17:26:41 [ 32] [ 6] [621354] +17:26:41 [ 35] [ 27] [1808930100002534=1803500335] +17:26:41 [ 37] [ 12] [507903676031] +17:26:41 [ 38] [ 6] [815338] +17:26:41 [ 39] [ 2] [00] +17:26:41 [ 41] [ 8] [16002000] +17:26:41 [ 49] [ 3] [418] +17:26:41 [ 52] [ 16] [FCE161FF29448AD4] +17:26:41 [ 54] [ 20] [1001418C000005604800] +17:26:41 ============================================================================ +17:26:41 Calculate Source COMM Id = 0 +17:26:41 ============================================================================ +17:26:41 + + +waiting on router queue for slot.... +17:26:52 ============================================================================ +17:26:52 Slot Id : <308> +17:26:52 Transaction Type : REQUEST +17:26:52 Received From : +17:26:52 ============================================================================ +17:26:52 FNo. Len. Field Value +17:26:52 ============================================================================ +17:26:52 [ 1] [ 4] [0200] +17:26:52 [ 2] [ 16] [6213541000220189] +17:26:52 [ 3] [ 6] [010000] +17:26:52 [ 4] [ 12] [000050000000] +17:26:52 [ 7] [ 10] [0320102558] +17:26:52 [ 11] [ 6] [270851] +17:26:52 [ 12] [ 6] [172558] +17:26:52 [ 13] [ 4] [0320] +17:26:52 [ 14] [ 4] [4912] +17:26:52 [ 15] [ 4] [0320] +17:26:52 [ 18] [ 4] [6011] +17:26:52 [ 19] [ 3] [418] +17:26:52 [ 22] [ 3] [021] +17:26:52 [ 25] [ 2] [01] +17:26:52 [ 28] [ 9] [D00002000] +17:26:52 [ 32] [ 6] [180893] +17:26:52 [ 35] [ 32] [6213541000220189=491212012018256] +17:26:52 [ 37] [ 12] [507910270851] +17:26:52 [ 41] [ 8] [0301LPBX] +17:26:52 [ 42] [ 15] [999999 ] +17:26:52 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +17:26:52 [ 49] [ 3] [418] +17:26:52 [ 52] [ 16] [572816CDB885D5AE] +17:26:52 ============================================================================ +17:26:52 + + +waiting on router queue for slot.... +17:26:52 Sending to : +17:26:52 ============================================================================ +17:26:52 Sending to : +17:26:52 ============================================================================ +17:26:53 ============================================================================ +17:26:53 Slot Id : <308> +17:26:53 Transaction Type : REQUEST +17:26:53 Received From : +17:26:53 ============================================================================ +17:26:53 FNo. Len. Field Value +17:26:53 ============================================================================ +17:26:53 [ 1] [ 4] [0200] +17:26:53 [ 2] [ 16] [6213541000220189] +17:26:53 [ 3] [ 6] [010000] +17:26:53 [ 4] [ 12] [000050000000] +17:26:53 [ 7] [ 10] [0320102558] +17:26:53 [ 11] [ 6] [270851] +17:26:53 [ 12] [ 6] [172558] +17:26:53 [ 13] [ 4] [0320] +17:26:53 [ 14] [ 4] [4912] +17:26:53 [ 15] [ 4] [0320] +17:26:53 [ 18] [ 4] [6011] +17:26:53 [ 19] [ 3] [418] +17:26:53 [ 22] [ 3] [021] +17:26:53 [ 25] [ 2] [01] +17:26:53 [ 28] [ 9] [D00002000] +17:26:53 [ 32] [ 6] [180893] +17:26:53 [ 35] [ 32] [6213541000220189=491212012018256] +17:26:53 [ 37] [ 12] [507910270851] +17:26:53 [ 41] [ 8] [0301LPBX] +17:26:53 [ 42] [ 15] [999999 ] +17:26:53 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +17:26:53 [ 49] [ 3] [418] +17:26:53 [ 52] [ 16] [572816CDB885D5AE] +17:26:53 ============================================================================ +17:26:53 + + +waiting on router queue for slot.... +17:26:53 Sending to : +17:26:53 ============================================================================ +17:26:53 ============================================================================ +17:26:53 Slot Id : <308> +17:26:53 Transaction Type : REQUEST +17:26:53 Received From : +17:26:53 ============================================================================ +17:26:53 FNo. Len. Field Value +17:26:53 ============================================================================ +17:26:53 [ 1] [ 4] [0200] +17:26:53 [ 2] [ 16] [6213541000220189] +17:26:53 [ 3] [ 6] [010000] +17:26:53 [ 4] [ 12] [000050000000] +17:26:53 [ 7] [ 10] [0320102558] +17:26:53 [ 11] [ 6] [270851] +17:26:53 [ 12] [ 6] [172558] +17:26:53 [ 13] [ 4] [0320] +17:26:53 [ 14] [ 4] [4912] +17:26:53 [ 15] [ 4] [0320] +17:26:53 [ 18] [ 4] [6011] +17:26:53 [ 19] [ 3] [418] +17:26:53 [ 22] [ 3] [021] +17:26:53 [ 25] [ 2] [01] +17:26:53 [ 28] [ 9] [D00002000] +17:26:53 [ 32] [ 6] [180893] +17:26:53 [ 35] [ 32] [6213541000220189=491212012018256] +17:26:53 [ 37] [ 12] [507910270851] +17:26:53 [ 41] [ 8] [0301LPBX] +17:26:53 [ 42] [ 15] [999999 ] +17:26:53 [ 43] [ 40] [ATM LUANGPRABANG XIENGNGERN LOCATION, Xi] +17:26:53 [ 49] [ 3] [418] +17:26:53 [ 52] [ 16] [88EAC5DE81A64661] +17:26:53 ============================================================================ +17:26:53 + + +waiting on router queue for slot.... +17:26:53 Sending to : <0> +17:26:53 ============================================================================ +17:26:53 ============================================================================ +17:26:53 Slot Id : <278> +17:26:53 Transaction Type : REQUEST +17:26:53 Received From : +17:26:53 ============================================================================ +17:26:53 FNo. Len. Field Value +17:26:53 ============================================================================ +17:26:53 [ 1] [ 4] [0800] +17:26:53 [ 7] [ 10] [0320102600] +17:26:53 [ 11] [ 6] [157458] +17:26:53 [ 70] [ 3] [301] +17:26:53 ============================================================================ +17:26:53 + + +waiting on router queue for slot.... +17:26:53 Sending to : +17:26:53 ============================================================================ +17:26:53 ============================================================================ +17:26:53 Slot Id : <278> +17:26:53 Transaction Type : RESPONSE +17:26:53 Received From : +17:26:53 ============================================================================ +17:26:53 FNo. Len. Field Value +17:26:53 ============================================================================ +17:26:53 [ 1] [ 4] [0810] +17:26:53 [ 7] [ 10] [0320102600] +17:26:53 [ 11] [ 6] [157458] +17:26:53 [ 39] [ 2] [00] +17:26:53 [ 70] [ 3] [301] +17:26:53 ============================================================================ +17:26:53 Calculate Source COMM Id = 2 +17:26:53 ============================================================================ +17:26:53 + + +waiting on router queue for slot.... +17:26:53 ============================================================================ +17:26:53 Slot Id : <308> +17:26:53 Transaction Type : RESPONSE +17:26:53 Received From : +17:26:53 ============================================================================ +17:26:53 FNo. Len. Field Value +17:26:53 ============================================================================ +17:26:53 [ 1] [ 4] [0210] +17:26:53 [ 2] [ 16] [6213541000220189] +17:26:53 [ 3] [ 6] [010000] +17:26:53 [ 4] [ 12] [000050000000] +17:26:53 [ 7] [ 10] [0320102558] +17:26:53 [ 11] [ 6] [270851] +17:26:53 [ 12] [ 6] [172558] +17:26:53 [ 13] [ 4] [0320] +17:26:53 [ 15] [ 4] [0320] +17:26:53 [ 18] [ 4] [6011] +17:26:53 [ 19] [ 3] [418] +17:26:53 [ 32] [ 6] [180893] +17:26:53 [ 35] [ 32] [6213541000220189=491212012018256] +17:26:53 [ 37] [ 12] [507910270851] +17:26:53 [ 38] [ 6] [012701] +17:26:53 [ 39] [ 2] [00] +17:26:53 [ 41] [ 8] [0301LPBX] +17:26:53 [ 49] [ 3] [418] +17:26:53 [ 54] [ 40] [0001418C0000393166530002418C000039316653] +17:26:53 ============================================================================ +17:26:53 Sending to : +17:26:53 ============================================================================ +17:26:53 + + +waiting on router queue for slot.... +17:26:55 ============================================================================ +17:26:55 Slot Id : <308> +17:26:55 Transaction Type : RESPONSE +17:26:55 Received From : +17:26:55 ============================================================================ +17:26:55 FNo. Len. Field Value +17:26:55 ============================================================================ +17:26:55 [ 1] [ 4] [0210] +17:26:55 [ 2] [ 16] [6213541000220189] +17:26:55 [ 3] [ 6] [010000] +17:26:55 [ 4] [ 12] [000050000000] +17:26:55 [ 7] [ 10] [0320102558] +17:26:55 [ 11] [ 6] [270851] +17:26:55 [ 12] [ 6] [172558] +17:26:55 [ 13] [ 4] [0320] +17:26:55 [ 15] [ 4] [0320] +17:26:55 [ 18] [ 4] [6011] +17:26:55 [ 19] [ 3] [418] +17:26:55 [ 32] [ 6] [180893] +17:26:55 [ 35] [ 32] [6213541000220189=491212012018256] +17:26:55 [ 37] [ 12] [507910270851] +17:26:55 [ 38] [ 6] [012701] +17:26:55 [ 39] [ 2] [00] +17:26:55 [ 41] [ 8] [0301LPBX] +17:26:55 [ 49] [ 3] [418] +17:26:55 [ 54] [ 40] [0001418C0000393166530002418C000039316653] +17:26:55 ============================================================================ +17:26:55 Calculate Source COMM Id = 2 +17:26:55 ============================================================================ +17:26:55 + + +waiting on router queue for slot.... +17:27:01 ============================================================================ +17:27:01 Slot Id : <281> +17:27:01 Transaction Type : REQUEST +17:27:01 Received From : +17:27:01 ============================================================================ +17:27:01 FNo. Len. Field Value +17:27:01 ============================================================================ +17:27:01 [ 1] [ 4] [0200] +17:27:01 [ 2] [ 16] [6688990103109706] +17:27:01 [ 3] [ 6] [301000] +17:27:01 [ 4] [ 12] [000000000000] +17:27:01 [ 7] [ 10] [0320172656] +17:27:01 [ 11] [ 6] [815440] +17:27:01 [ 12] [ 6] [172656] +17:27:01 [ 13] [ 4] [0320] +17:27:01 [ 15] [ 4] [0320] +17:27:01 [ 18] [ 4] [6011] +17:27:01 [ 22] [ 3] [900] +17:27:01 [ 25] [ 2] [02] +17:27:01 [ 28] [ 9] [D00000000] +17:27:01 [ 32] [ 6] [621354] +17:27:01 [ 35] [ 37] [6688990103109706=42121231970626600000] +17:27:01 [ 37] [ 12] [507902925827] +17:27:01 [ 41] [ 8] [12001500] +17:27:01 [ 42] [ 15] [NATIVE ] +17:27:01 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +17:27:01 [ 49] [ 3] [418] +17:27:01 [ 52] [ 16] [549F2234EDF7FF81] +17:27:01 ============================================================================ +17:27:01 + + +waiting on router queue for slot.... +17:27:01 Sending to : +17:27:01 ============================================================================ +17:27:01 Sending to : +17:27:01 ============================================================================ +17:27:01 ============================================================================ +17:27:01 Slot Id : <295> +17:27:01 Transaction Type : REQUEST +17:27:01 Received From : +17:27:01 ============================================================================ +17:27:01 FNo. Len. Field Value +17:27:01 ============================================================================ +17:27:01 [ 1] [ 4] [0200] +17:27:01 [ 2] [ 16] [6688990103252506] +17:27:01 [ 3] [ 6] [010000] +17:27:01 [ 4] [ 12] [000100000000] +17:27:01 [ 7] [ 10] [0320172657] +17:27:01 [ 11] [ 6] [815442] +17:27:01 [ 12] [ 6] [172657] +17:27:01 [ 13] [ 4] [0320] +17:27:01 [ 15] [ 4] [0320] +17:27:01 [ 18] [ 4] [6011] +17:27:01 [ 22] [ 3] [900] +17:27:01 [ 25] [ 2] [02] +17:27:01 [ 28] [ 9] [D00002000] +17:27:01 [ 32] [ 6] [621354] +17:27:01 [ 35] [ 37] [6688990103252506=42121231250687600000] +17:27:01 [ 37] [ 12] [507904154105] +17:27:01 [ 41] [ 8] [20001000] +17:27:01 [ 42] [ 15] [NATIVE ] +17:27:01 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:27:01 [ 49] [ 3] [418] +17:27:01 [ 52] [ 16] [B97A461DDF8D9BCE] +17:27:01 ============================================================================ +17:27:01 + + +waiting on router queue for slot.... +17:27:01 Sending to : +17:27:01 ============================================================================ +17:27:01 Sending to : +17:27:01 ============================================================================ +17:27:02 ============================================================================ +17:27:02 Slot Id : <281> +17:27:02 Transaction Type : REQUEST +17:27:02 Received From : +17:27:02 ============================================================================ +17:27:02 FNo. Len. Field Value +17:27:02 ============================================================================ +17:27:02 [ 1] [ 4] [0200] +17:27:02 [ 2] [ 16] [6688990103109706] +17:27:02 [ 3] [ 6] [301000] +17:27:02 [ 4] [ 12] [000000000000] +17:27:02 [ 7] [ 10] [0320172656] +17:27:02 [ 11] [ 6] [815440] +17:27:02 [ 12] [ 6] [172656] +17:27:02 [ 13] [ 4] [0320] +17:27:02 [ 15] [ 4] [0320] +17:27:02 [ 18] [ 4] [6011] +17:27:02 [ 22] [ 3] [900] +17:27:02 [ 25] [ 2] [02] +17:27:02 [ 28] [ 9] [D00000000] +17:27:02 [ 32] [ 6] [621354] +17:27:02 [ 35] [ 37] [6688990103109706=42121231970626600000] +17:27:02 [ 37] [ 12] [507902925827] +17:27:02 [ 41] [ 8] [12001500] +17:27:02 [ 42] [ 15] [NATIVE ] +17:27:02 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +17:27:02 [ 49] [ 3] [418] +17:27:02 [ 52] [ 16] [549F2234EDF7FF81] +17:27:02 ============================================================================ +17:27:02 + + +waiting on router queue for slot.... +17:27:02 Sending to : +17:27:02 ============================================================================ +17:27:02 ============================================================================ +17:27:02 Slot Id : <281> +17:27:02 Transaction Type : REQUEST +17:27:02 Received From : +17:27:02 ============================================================================ +17:27:02 FNo. Len. Field Value +17:27:02 ============================================================================ +17:27:02 [ 1] [ 4] [0200] +17:27:02 [ 2] [ 16] [6688990103109706] +17:27:02 [ 3] [ 6] [301000] +17:27:02 [ 4] [ 12] [000000000000] +17:27:02 [ 7] [ 10] [0320172656] +17:27:02 [ 11] [ 6] [815440] +17:27:02 [ 12] [ 6] [172656] +17:27:02 [ 13] [ 4] [0320] +17:27:02 [ 15] [ 4] [0320] +17:27:02 [ 18] [ 4] [6011] +17:27:02 [ 22] [ 3] [900] +17:27:02 [ 25] [ 2] [02] +17:27:02 [ 28] [ 9] [D00000000] +17:27:02 [ 32] [ 6] [621354] +17:27:02 [ 35] [ 37] [6688990103109706=42121231970626600000] +17:27:02 [ 37] [ 12] [507902925827] +17:27:02 [ 41] [ 8] [12001500] +17:27:02 [ 42] [ 15] [NATIVE ] +17:27:02 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +17:27:02 [ 49] [ 3] [418] +17:27:02 [ 52] [ 16] [AE6F82AC3B85A1E2] +17:27:02 ============================================================================ +17:27:02 + + +waiting on router queue for slot.... +17:27:02 Sending to : <4> +17:27:02 ============================================================================ +17:27:02 ============================================================================ +17:27:02 Slot Id : <296> +17:27:02 Transaction Type : REQUEST +17:27:02 Received From : +17:27:02 ============================================================================ +17:27:02 FNo. Len. Field Value +17:27:02 ============================================================================ +17:27:02 [ 1] [ 4] [0200] +17:27:02 [ 2] [ 16] [1808930200045995] +17:27:02 [ 3] [ 6] [011000] +17:27:02 [ 4] [ 12] [000020000000] +17:27:02 [ 7] [ 10] [0320172657] +17:27:02 [ 11] [ 6] [815444] +17:27:02 [ 12] [ 6] [172657] +17:27:02 [ 13] [ 4] [0320] +17:27:02 [ 15] [ 4] [0320] +17:27:02 [ 18] [ 4] [6011] +17:27:02 [ 22] [ 3] [900] +17:27:02 [ 25] [ 2] [02] +17:27:02 [ 28] [ 9] [D00002000] +17:27:02 [ 32] [ 6] [621354] +17:27:02 [ 35] [ 27] [1808930200045995=1803500461] +17:27:02 [ 37] [ 12] [507903625417] +17:27:02 [ 41] [ 8] [16001500] +17:27:02 [ 42] [ 15] [NATIVE ] +17:27:02 [ 43] [ 40] [Sea game Village Xaythany LAO] +17:27:02 [ 49] [ 3] [418] +17:27:02 [ 52] [ 16] [F928054DC0ADF3C3] +17:27:02 ============================================================================ +17:27:02 + + +waiting on router queue for slot.... +17:27:02 Sending to : +17:27:02 ============================================================================ +17:27:02 Sending to : +17:27:02 ============================================================================ +17:27:02 ============================================================================ +17:27:02 Slot Id : <295> +17:27:02 Transaction Type : REQUEST +17:27:02 Received From : +17:27:02 ============================================================================ +17:27:02 FNo. Len. Field Value +17:27:02 ============================================================================ +17:27:02 [ 1] [ 4] [0200] +17:27:02 [ 2] [ 16] [6688990103252506] +17:27:02 [ 3] [ 6] [010000] +17:27:02 [ 4] [ 12] [000100000000] +17:27:02 [ 7] [ 10] [0320172657] +17:27:02 [ 11] [ 6] [815442] +17:27:02 [ 12] [ 6] [172657] +17:27:02 [ 13] [ 4] [0320] +17:27:02 [ 15] [ 4] [0320] +17:27:02 [ 18] [ 4] [6011] +17:27:02 [ 22] [ 3] [900] +17:27:02 [ 25] [ 2] [02] +17:27:02 [ 28] [ 9] [D00002000] +17:27:02 [ 32] [ 6] [621354] +17:27:02 [ 35] [ 37] [6688990103252506=42121231250687600000] +17:27:02 [ 37] [ 12] [507904154105] +17:27:02 [ 41] [ 8] [20001000] +17:27:02 [ 42] [ 15] [NATIVE ] +17:27:02 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:27:02 [ 49] [ 3] [418] +17:27:02 [ 52] [ 16] [B97A461DDF8D9BCE] +17:27:02 ============================================================================ +17:27:02 + + +waiting on router queue for slot.... +17:27:02 Sending to : +17:27:02 ============================================================================ +17:27:02 ============================================================================ +17:27:02 Slot Id : <295> +17:27:02 Transaction Type : REQUEST +17:27:02 Received From : +17:27:02 ============================================================================ +17:27:02 FNo. Len. Field Value +17:27:02 ============================================================================ +17:27:02 [ 1] [ 4] [0200] +17:27:02 [ 2] [ 16] [6688990103252506] +17:27:02 [ 3] [ 6] [010000] +17:27:02 [ 4] [ 12] [000100000000] +17:27:02 [ 7] [ 10] [0320172657] +17:27:02 [ 11] [ 6] [815442] +17:27:02 [ 12] [ 6] [172657] +17:27:02 [ 13] [ 4] [0320] +17:27:02 [ 15] [ 4] [0320] +17:27:02 [ 18] [ 4] [6011] +17:27:02 [ 22] [ 3] [900] +17:27:02 [ 25] [ 2] [02] +17:27:02 [ 28] [ 9] [D00002000] +17:27:02 [ 32] [ 6] [621354] +17:27:02 [ 35] [ 37] [6688990103252506=42121231250687600000] +17:27:02 [ 37] [ 12] [507904154105] +17:27:02 [ 41] [ 8] [20001000] +17:27:02 [ 42] [ 15] [NATIVE ] +17:27:02 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:27:02 [ 49] [ 3] [418] +17:27:02 [ 52] [ 16] [13A0C883C2F1023F] +17:27:02 ============================================================================ +17:27:02 + + +waiting on router queue for slot.... +17:27:02 Sending to : <4> +17:27:02 ============================================================================ +17:27:02 ============================================================================ +17:27:02 Slot Id : <296> +17:27:02 Transaction Type : REQUEST +17:27:02 Received From : +17:27:02 ============================================================================ +17:27:02 FNo. Len. Field Value +17:27:02 ============================================================================ +17:27:02 [ 1] [ 4] [0200] +17:27:02 [ 2] [ 16] [1808930200045995] +17:27:02 [ 3] [ 6] [011000] +17:27:02 [ 4] [ 12] [000020000000] +17:27:02 [ 7] [ 10] [0320172657] +17:27:02 [ 11] [ 6] [815444] +17:27:02 [ 12] [ 6] [172657] +17:27:02 [ 13] [ 4] [0320] +17:27:02 [ 15] [ 4] [0320] +17:27:02 [ 18] [ 4] [6011] +17:27:02 [ 22] [ 3] [900] +17:27:02 [ 25] [ 2] [02] +17:27:02 [ 28] [ 9] [D00002000] +17:27:02 [ 32] [ 6] [621354] +17:27:02 [ 35] [ 27] [1808930200045995=1803500461] +17:27:02 [ 37] [ 12] [507903625417] +17:27:02 [ 41] [ 8] [16001500] +17:27:02 [ 42] [ 15] [NATIVE ] +17:27:02 [ 43] [ 40] [Sea game Village Xaythany LAO] +17:27:02 [ 49] [ 3] [418] +17:27:02 [ 52] [ 16] [F928054DC0ADF3C3] +17:27:02 ============================================================================ +17:27:02 + + +waiting on router queue for slot.... +17:27:02 Sending to : +17:27:02 ============================================================================ +17:27:02 ============================================================================ +17:27:02 Slot Id : <296> +17:27:02 Transaction Type : REQUEST +17:27:02 Received From : +17:27:02 ============================================================================ +17:27:02 FNo. Len. Field Value +17:27:02 ============================================================================ +17:27:02 [ 1] [ 4] [0200] +17:27:02 [ 2] [ 16] [1808930200045995] +17:27:02 [ 3] [ 6] [011000] +17:27:02 [ 4] [ 12] [000020000000] +17:27:02 [ 7] [ 10] [0320172657] +17:27:02 [ 11] [ 6] [815444] +17:27:02 [ 12] [ 6] [172657] +17:27:02 [ 13] [ 4] [0320] +17:27:02 [ 15] [ 4] [0320] +17:27:02 [ 18] [ 4] [6011] +17:27:02 [ 22] [ 3] [900] +17:27:02 [ 25] [ 2] [02] +17:27:02 [ 28] [ 9] [D00002000] +17:27:02 [ 32] [ 6] [621354] +17:27:02 [ 35] [ 27] [1808930200045995=1803500461] +17:27:02 [ 37] [ 12] [507903625417] +17:27:02 [ 41] [ 8] [16001500] +17:27:02 [ 42] [ 15] [NATIVE ] +17:27:02 [ 43] [ 40] [Sea game Village Xaythany LAO] +17:27:02 [ 49] [ 3] [418] +17:27:02 [ 52] [ 16] [D358836448D1E4BF] +17:27:02 ============================================================================ +17:27:02 + + +waiting on router queue for slot.... +17:27:02 Sending to : <2> +17:27:02 ============================================================================ +17:27:03 ============================================================================ +17:27:03 Slot Id : <281> +17:27:03 Transaction Type : RESPONSE +17:27:03 Received From : +17:27:03 ============================================================================ +17:27:03 FNo. Len. Field Value +17:27:03 ============================================================================ +17:27:03 [ 1] [ 4] [0210] +17:27:03 [ 2] [ 16] [6688990103109706] +17:27:03 [ 3] [ 6] [301000] +17:27:03 [ 4] [ 12] [000000000000] +17:27:03 [ 11] [ 6] [815440] +17:27:03 [ 12] [ 6] [172656] +17:27:03 [ 15] [ 4] [0320] +17:27:03 [ 18] [ 4] [6011] +17:27:03 [ 32] [ 6] [621354] +17:27:03 [ 35] [ 37] [6688990103109706=42121231970626600000] +17:27:03 [ 37] [ 12] [507902925827] +17:27:03 [ 38] [ 6] [910061] +17:27:03 [ 39] [ 2] [00] +17:27:03 [ 41] [ 8] [12001500] +17:27:03 [ 49] [ 3] [418] +17:27:03 [ 54] [ 20] [1002418C000017713216] +17:27:03 ============================================================================ +17:27:03 Sending to : +17:27:03 ============================================================================ +17:27:03 + + +waiting on router queue for slot.... +17:27:03 ============================================================================ +17:27:03 Slot Id : <295> +17:27:03 Transaction Type : RESPONSE +17:27:03 Received From : +17:27:03 ============================================================================ +17:27:03 FNo. Len. Field Value +17:27:03 ============================================================================ +17:27:03 [ 1] [ 4] [0210] +17:27:03 [ 2] [ 16] [6688990103252506] +17:27:03 [ 3] [ 6] [010000] +17:27:03 [ 4] [ 12] [000100000000] +17:27:03 [ 11] [ 6] [815442] +17:27:03 [ 12] [ 6] [172657] +17:27:03 [ 15] [ 4] [0320] +17:27:03 [ 18] [ 4] [6011] +17:27:03 [ 32] [ 6] [621354] +17:27:03 [ 35] [ 37] [6688990103252506=42121231250687600000] +17:27:03 [ 37] [ 12] [507904154105] +17:27:03 [ 38] [ 6] [107728] +17:27:03 [ 39] [ 2] [00] +17:27:03 [ 41] [ 8] [20001000] +17:27:03 [ 49] [ 3] [418] +17:27:03 [ 54] [ 20] [0002418C000005384619] +17:27:03 ============================================================================ +17:27:03 Sending to : +17:27:03 ============================================================================ +17:27:03 + + +waiting on router queue for slot.... +17:27:04 ============================================================================ +17:27:04 Slot Id : <286> +17:27:04 Transaction Type : REQUEST +17:27:04 Received From : +17:27:04 ============================================================================ +17:27:04 FNo. Len. Field Value +17:27:04 ============================================================================ +17:27:04 [ 1] [ 4] [0200] +17:27:04 [ 2] [ 16] [6213544002225875] +17:27:04 [ 3] [ 6] [301000] +17:27:04 [ 4] [ 12] [000000000000] +17:27:04 [ 7] [ 10] [0320172724] +17:27:04 [ 11] [ 6] [209555] +17:27:04 [ 12] [ 6] [172230] +17:27:04 [ 13] [ 4] [0320] +17:27:04 [ 14] [ 4] [4912] +17:27:04 [ 15] [ 4] [0320] +17:27:04 [ 18] [ 4] [6011] +17:27:04 [ 19] [ 3] [418] +17:27:04 [ 22] [ 3] [021] +17:27:04 [ 25] [ 2] [01] +17:27:04 [ 28] [ 9] [D00000000] +17:27:04 [ 32] [ 6] [198901] +17:27:04 [ 35] [ 32] [6213544002225875=491212012587175] +17:27:04 [ 37] [ 12] [507917209555] +17:27:04 [ 41] [ 8] [19529001] +17:27:04 [ 42] [ 15] [000000041952901] +17:27:04 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:27:04 [ 49] [ 3] [418] +17:27:04 [ 52] [ 16] [3744A048D574C3A6] +17:27:04 ============================================================================ +17:27:04 + + +waiting on router queue for slot.... +17:27:04 Sending to : +17:27:04 ============================================================================ +17:27:04 Sending to : +17:27:04 ============================================================================ +17:27:04 ============================================================================ +17:27:04 Slot Id : <281> +17:27:04 Transaction Type : RESPONSE +17:27:04 Received From : +17:27:04 ============================================================================ +17:27:04 FNo. Len. Field Value +17:27:04 ============================================================================ +17:27:04 [ 1] [ 4] [0210] +17:27:04 [ 2] [ 16] [6688990103109706] +17:27:04 [ 3] [ 6] [301000] +17:27:04 [ 4] [ 12] [000000000000] +17:27:04 [ 11] [ 6] [815440] +17:27:04 [ 12] [ 6] [172656] +17:27:04 [ 15] [ 4] [0320] +17:27:04 [ 18] [ 4] [6011] +17:27:04 [ 32] [ 6] [621354] +17:27:04 [ 35] [ 37] [6688990103109706=42121231970626600000] +17:27:04 [ 37] [ 12] [507902925827] +17:27:04 [ 38] [ 6] [910061] +17:27:04 [ 39] [ 2] [00] +17:27:04 [ 41] [ 8] [12001500] +17:27:04 [ 49] [ 3] [418] +17:27:04 [ 54] [ 20] [1002418C000017713216] +17:27:04 ============================================================================ +17:27:04 Calculate Source COMM Id = 0 +17:27:04 ============================================================================ +17:27:04 + + +waiting on router queue for slot.... +17:27:04 ============================================================================ +17:27:04 Slot Id : <286> +17:27:04 Transaction Type : REQUEST +17:27:04 Received From : +17:27:04 ============================================================================ +17:27:04 FNo. Len. Field Value +17:27:04 ============================================================================ +17:27:04 [ 1] [ 4] [0200] +17:27:04 [ 2] [ 16] [6213544002225875] +17:27:04 [ 3] [ 6] [301000] +17:27:04 [ 4] [ 12] [000000000000] +17:27:04 [ 7] [ 10] [0320172724] +17:27:04 [ 11] [ 6] [209555] +17:27:04 [ 12] [ 6] [172230] +17:27:04 [ 13] [ 4] [0320] +17:27:04 [ 14] [ 4] [4912] +17:27:04 [ 15] [ 4] [0320] +17:27:04 [ 18] [ 4] [6011] +17:27:04 [ 19] [ 3] [418] +17:27:04 [ 22] [ 3] [021] +17:27:04 [ 25] [ 2] [01] +17:27:04 [ 28] [ 9] [D00000000] +17:27:04 [ 32] [ 6] [198901] +17:27:04 [ 35] [ 32] [6213544002225875=491212012587175] +17:27:04 [ 37] [ 12] [507917209555] +17:27:04 [ 41] [ 8] [19529001] +17:27:04 [ 42] [ 15] [000000041952901] +17:27:04 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:27:04 [ 49] [ 3] [418] +17:27:04 [ 52] [ 16] [3744A048D574C3A6] +17:27:04 ============================================================================ +17:27:04 + + +waiting on router queue for slot.... +17:27:04 Sending to : +17:27:04 ============================================================================ +17:27:04 ============================================================================ +17:27:04 Slot Id : <286> +17:27:04 Transaction Type : REQUEST +17:27:04 Received From : +17:27:04 ============================================================================ +17:27:04 FNo. Len. Field Value +17:27:04 ============================================================================ +17:27:04 [ 1] [ 4] [0200] +17:27:04 [ 2] [ 16] [6213544002225875] +17:27:04 [ 3] [ 6] [301000] +17:27:04 [ 4] [ 12] [000000000000] +17:27:04 [ 7] [ 10] [0320172724] +17:27:04 [ 11] [ 6] [209555] +17:27:04 [ 12] [ 6] [172230] +17:27:04 [ 13] [ 4] [0320] +17:27:04 [ 14] [ 4] [4912] +17:27:04 [ 15] [ 4] [0320] +17:27:04 [ 18] [ 4] [6011] +17:27:04 [ 19] [ 3] [418] +17:27:04 [ 22] [ 3] [021] +17:27:04 [ 25] [ 2] [01] +17:27:04 [ 28] [ 9] [D00000000] +17:27:04 [ 32] [ 6] [198901] +17:27:04 [ 35] [ 32] [6213544002225875=491212012587175] +17:27:04 [ 37] [ 12] [507917209555] +17:27:04 [ 41] [ 8] [19529001] +17:27:04 [ 42] [ 15] [000000041952901] +17:27:04 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:27:04 [ 49] [ 3] [418] +17:27:04 [ 52] [ 16] [F78C3408D7271A4B] +17:27:04 ============================================================================ +17:27:04 + + +waiting on router queue for slot.... +17:27:04 Sending to : <0> +17:27:04 ============================================================================ +17:27:04 ============================================================================ +17:27:04 Slot Id : <286> +17:27:04 Transaction Type : RESPONSE +17:27:04 Received From : +17:27:04 ============================================================================ +17:27:04 FNo. Len. Field Value +17:27:04 ============================================================================ +17:27:04 [ 1] [ 4] [0210] +17:27:04 [ 2] [ 16] [6213544002225875] +17:27:04 [ 3] [ 6] [301000] +17:27:04 [ 4] [ 12] [000000000000] +17:27:04 [ 7] [ 10] [0320172724] +17:27:04 [ 11] [ 6] [209555] +17:27:04 [ 12] [ 6] [172230] +17:27:04 [ 13] [ 4] [0320] +17:27:04 [ 15] [ 4] [0320] +17:27:04 [ 18] [ 4] [6011] +17:27:04 [ 19] [ 3] [418] +17:27:04 [ 32] [ 6] [198901] +17:27:04 [ 35] [ 32] [6213544002225875=491212012587175] +17:27:04 [ 37] [ 12] [507917209555] +17:27:04 [ 38] [ 6] [582848] +17:27:04 [ 39] [ 2] [00] +17:27:04 [ 41] [ 8] [19529001] +17:27:04 [ 49] [ 3] [418] +17:27:04 [ 54] [ 40] [1001418C0000579673081002418C000057967308] +17:27:04 ============================================================================ +17:27:04 Sending to : +17:27:04 ============================================================================ +17:27:04 + + +waiting on router queue for slot.... +17:27:06 ============================================================================ +17:27:06 Slot Id : <295> +17:27:06 Transaction Type : RESPONSE +17:27:06 Received From : +17:27:06 ============================================================================ +17:27:06 FNo. Len. Field Value +17:27:06 ============================================================================ +17:27:06 [ 1] [ 4] [0210] +17:27:06 [ 2] [ 16] [6688990103252506] +17:27:06 [ 3] [ 6] [010000] +17:27:06 [ 4] [ 12] [000100000000] +17:27:06 [ 11] [ 6] [815442] +17:27:06 [ 12] [ 6] [172657] +17:27:06 [ 15] [ 4] [0320] +17:27:06 [ 18] [ 4] [6011] +17:27:06 [ 32] [ 6] [621354] +17:27:06 [ 35] [ 37] [6688990103252506=42121231250687600000] +17:27:06 [ 37] [ 12] [507904154105] +17:27:06 [ 38] [ 6] [107728] +17:27:06 [ 39] [ 2] [00] +17:27:06 [ 41] [ 8] [20001000] +17:27:06 [ 49] [ 3] [418] +17:27:06 [ 54] [ 20] [0002418C000005384619] +17:27:06 ============================================================================ +17:27:06 Calculate Source COMM Id = 0 +17:27:06 ============================================================================ +17:27:06 + + +waiting on router queue for slot.... +17:27:07 ============================================================================ +17:27:07 Slot Id : <296> +17:27:07 Transaction Type : RESPONSE +17:27:07 Received From : +17:27:07 ============================================================================ +17:27:07 FNo. Len. Field Value +17:27:07 ============================================================================ +17:27:07 [ 1] [ 4] [0210] +17:27:07 [ 2] [ 16] [1808930200045995] +17:27:07 [ 3] [ 6] [011000] +17:27:07 [ 4] [ 12] [000020000000] +17:27:07 [ 6] [ 12] [000020000000] +17:27:07 [ 7] [ 10] [0320172657] +17:27:07 [ 11] [ 6] [815444] +17:27:07 [ 12] [ 6] [172657] +17:27:07 [ 13] [ 4] [0320] +17:27:07 [ 18] [ 4] [6011] +17:27:07 [ 19] [ 3] [418] +17:27:07 [ 22] [ 3] [021] +17:27:07 [ 32] [ 6] [621354] +17:27:07 [ 35] [ 27] [1808930200045995=1803500461] +17:27:07 [ 37] [ 12] [507903625417] +17:27:07 [ 38] [ 6] [815444] +17:27:07 [ 39] [ 2] [00] +17:27:07 [ 41] [ 8] [16001500] +17:27:07 [ 49] [ 3] [418] +17:27:07 [ 52] [ 16] [D358836448D1E4BF] +17:27:07 [ 54] [ 20] [1001418C000728829600] +17:27:07 ============================================================================ +17:27:07 Sending to : +17:27:07 ============================================================================ +17:27:07 + + +waiting on router queue for slot.... +17:27:07 ============================================================================ +17:27:07 Slot Id : <286> +17:27:07 Transaction Type : RESPONSE +17:27:07 Received From : +17:27:07 ============================================================================ +17:27:07 FNo. Len. Field Value +17:27:07 ============================================================================ +17:27:07 [ 1] [ 4] [0210] +17:27:07 [ 2] [ 16] [6213544002225875] +17:27:07 [ 3] [ 6] [301000] +17:27:07 [ 4] [ 12] [000000000000] +17:27:07 [ 7] [ 10] [0320172724] +17:27:07 [ 11] [ 6] [209555] +17:27:07 [ 12] [ 6] [172230] +17:27:07 [ 13] [ 4] [0320] +17:27:07 [ 15] [ 4] [0320] +17:27:07 [ 18] [ 4] [6011] +17:27:07 [ 19] [ 3] [418] +17:27:07 [ 32] [ 6] [198901] +17:27:07 [ 35] [ 32] [6213544002225875=491212012587175] +17:27:07 [ 37] [ 12] [507917209555] +17:27:07 [ 38] [ 6] [582848] +17:27:07 [ 39] [ 2] [00] +17:27:07 [ 41] [ 8] [19529001] +17:27:07 [ 49] [ 3] [418] +17:27:07 [ 54] [ 40] [1001418C0000579673081002418C000057967308] +17:27:07 ============================================================================ +17:27:07 Calculate Source COMM Id = 5 +17:27:07 ============================================================================ +17:27:07 + + +waiting on router queue for slot.... +17:27:09 ============================================================================ +17:27:09 Slot Id : <296> +17:27:09 Transaction Type : RESPONSE +17:27:09 Received From : +17:27:09 ============================================================================ +17:27:09 FNo. Len. Field Value +17:27:09 ============================================================================ +17:27:09 [ 1] [ 4] [0210] +17:27:09 [ 2] [ 16] [1808930200045995] +17:27:09 [ 3] [ 6] [011000] +17:27:09 [ 4] [ 12] [000020000000] +17:27:09 [ 6] [ 12] [000020000000] +17:27:09 [ 7] [ 10] [0320172657] +17:27:09 [ 11] [ 6] [815444] +17:27:09 [ 12] [ 6] [172657] +17:27:09 [ 13] [ 4] [0320] +17:27:09 [ 18] [ 4] [6011] +17:27:09 [ 19] [ 3] [418] +17:27:09 [ 22] [ 3] [021] +17:27:09 [ 32] [ 6] [621354] +17:27:09 [ 35] [ 27] [1808930200045995=1803500461] +17:27:09 [ 37] [ 12] [507903625417] +17:27:09 [ 38] [ 6] [815444] +17:27:09 [ 39] [ 2] [00] +17:27:09 [ 41] [ 8] [16001500] +17:27:09 [ 49] [ 3] [418] +17:27:09 [ 52] [ 16] [D358836448D1E4BF] +17:27:09 [ 54] [ 20] [1001418C000728829600] +17:27:09 ============================================================================ +17:27:09 Calculate Source COMM Id = 0 +17:27:09 ============================================================================ +17:27:09 + + +waiting on router queue for slot.... +17:27:15 ============================================================================ +17:27:15 Slot Id : <283> +17:27:15 Transaction Type : REQUEST +17:27:15 Received From : +17:27:15 ============================================================================ +17:27:15 FNo. Len. Field Value +17:27:15 ============================================================================ +17:27:15 [ 1] [ 4] [0800] +17:27:15 [ 7] [ 10] [0320102622] +17:27:15 [ 11] [ 6] [157459] +17:27:15 [ 70] [ 3] [301] +17:27:15 ============================================================================ +17:27:15 + + +waiting on router queue for slot.... +17:27:15 Sending to : +17:27:15 ============================================================================ +17:27:15 ============================================================================ +17:27:15 Slot Id : <283> +17:27:15 Transaction Type : RESPONSE +17:27:15 Received From : +17:27:15 ============================================================================ +17:27:15 FNo. Len. Field Value +17:27:15 ============================================================================ +17:27:15 [ 1] [ 4] [0810] +17:27:15 [ 7] [ 10] [0320102622] +17:27:15 [ 11] [ 6] [157459] +17:27:15 [ 39] [ 2] [00] +17:27:15 [ 70] [ 3] [301] +17:27:15 ============================================================================ +17:27:15 Calculate Source COMM Id = 2 +17:27:15 ============================================================================ +17:27:15 + + +waiting on router queue for slot.... +17:27:16 ============================================================================ +17:27:16 Slot Id : <306> +17:27:16 Transaction Type : REQUEST +17:27:16 Received From : +17:27:16 ============================================================================ +17:27:16 FNo. Len. Field Value +17:27:16 ============================================================================ +17:27:16 [ 1] [ 4] [0200] +17:27:16 [ 2] [ 16] [6213548000205987] +17:27:16 [ 3] [ 6] [011000] +17:27:16 [ 4] [ 12] [000020000000] +17:27:16 [ 7] [ 10] [0320102622] +17:27:16 [ 11] [ 6] [270856] +17:27:16 [ 12] [ 6] [172622] +17:27:16 [ 13] [ 4] [0320] +17:27:16 [ 14] [ 4] [1712] +17:27:16 [ 15] [ 4] [0320] +17:27:16 [ 18] [ 4] [6011] +17:27:16 [ 19] [ 3] [418] +17:27:16 [ 22] [ 3] [021] +17:27:16 [ 25] [ 2] [01] +17:27:16 [ 28] [ 9] [D00002000] +17:27:16 [ 32] [ 6] [180893] +17:27:16 [ 35] [ 32] [6213548000205987=171212010598583] +17:27:16 [ 37] [ 12] [507910270856] +17:27:16 [ 41] [ 8] [0523XYNG] +17:27:16 [ 42] [ 15] [999999 ] +17:27:16 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +17:27:16 [ 49] [ 3] [418] +17:27:16 [ 52] [ 16] [40029000593525DE] +17:27:16 ============================================================================ +17:27:16 + + +waiting on router queue for slot.... +17:27:16 Sending to : +17:27:16 ============================================================================ +17:27:16 Sending to : +17:27:16 ============================================================================ +17:27:16 ============================================================================ +17:27:16 Slot Id : <306> +17:27:16 Transaction Type : REQUEST +17:27:16 Received From : +17:27:16 ============================================================================ +17:27:16 FNo. Len. Field Value +17:27:16 ============================================================================ +17:27:16 [ 1] [ 4] [0200] +17:27:16 [ 2] [ 16] [6213548000205987] +17:27:16 [ 3] [ 6] [011000] +17:27:16 [ 4] [ 12] [000020000000] +17:27:16 [ 7] [ 10] [0320102622] +17:27:16 [ 11] [ 6] [270856] +17:27:16 [ 12] [ 6] [172622] +17:27:16 [ 13] [ 4] [0320] +17:27:16 [ 14] [ 4] [1712] +17:27:16 [ 15] [ 4] [0320] +17:27:16 [ 18] [ 4] [6011] +17:27:16 [ 19] [ 3] [418] +17:27:16 [ 22] [ 3] [021] +17:27:16 [ 25] [ 2] [01] +17:27:16 [ 28] [ 9] [D00002000] +17:27:16 [ 32] [ 6] [180893] +17:27:16 [ 35] [ 32] [6213548000205987=171212010598583] +17:27:16 [ 37] [ 12] [507910270856] +17:27:16 [ 41] [ 8] [0523XYNG] +17:27:16 [ 42] [ 15] [999999 ] +17:27:16 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +17:27:16 [ 49] [ 3] [418] +17:27:16 [ 52] [ 16] [40029000593525DE] +17:27:16 ============================================================================ +17:27:16 + + +waiting on router queue for slot.... +17:27:16 Sending to : +17:27:16 ============================================================================ +17:27:16 ============================================================================ +17:27:16 Slot Id : <306> +17:27:16 Transaction Type : REQUEST +17:27:16 Received From : +17:27:16 ============================================================================ +17:27:16 FNo. Len. Field Value +17:27:16 ============================================================================ +17:27:16 [ 1] [ 4] [0200] +17:27:16 [ 2] [ 16] [6213548000205987] +17:27:16 [ 3] [ 6] [011000] +17:27:16 [ 4] [ 12] [000020000000] +17:27:16 [ 7] [ 10] [0320102622] +17:27:16 [ 11] [ 6] [270856] +17:27:16 [ 12] [ 6] [172622] +17:27:16 [ 13] [ 4] [0320] +17:27:16 [ 14] [ 4] [1712] +17:27:16 [ 15] [ 4] [0320] +17:27:16 [ 18] [ 4] [6011] +17:27:16 [ 19] [ 3] [418] +17:27:16 [ 22] [ 3] [021] +17:27:16 [ 25] [ 2] [01] +17:27:16 [ 28] [ 9] [D00002000] +17:27:16 [ 32] [ 6] [180893] +17:27:16 [ 35] [ 32] [6213548000205987=171212010598583] +17:27:16 [ 37] [ 12] [507910270856] +17:27:16 [ 41] [ 8] [0523XYNG] +17:27:16 [ 42] [ 15] [999999 ] +17:27:16 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +17:27:16 [ 49] [ 3] [418] +17:27:16 [ 52] [ 16] [2A43FB72A26C8923] +17:27:16 ============================================================================ +17:27:16 + + +waiting on router queue for slot.... +17:27:16 Sending to : <0> +17:27:16 ============================================================================ +17:27:17 ============================================================================ +17:27:17 Slot Id : <306> +17:27:17 Transaction Type : RESPONSE +17:27:17 Received From : +17:27:17 ============================================================================ +17:27:17 FNo. Len. Field Value +17:27:17 ============================================================================ +17:27:17 [ 1] [ 4] [0210] +17:27:17 [ 2] [ 16] [6213548000205987] +17:27:17 [ 3] [ 6] [011000] +17:27:17 [ 4] [ 12] [000020000000] +17:27:17 [ 7] [ 10] [0320102622] +17:27:17 [ 11] [ 6] [270856] +17:27:17 [ 12] [ 6] [172622] +17:27:17 [ 13] [ 4] [0320] +17:27:17 [ 15] [ 4] [0320] +17:27:17 [ 18] [ 4] [6011] +17:27:17 [ 19] [ 3] [418] +17:27:17 [ 32] [ 6] [180893] +17:27:17 [ 35] [ 32] [6213548000205987=171212010598583] +17:27:17 [ 37] [ 12] [507910270856] +17:27:17 [ 38] [ 6] [760628] +17:27:17 [ 39] [ 2] [00] +17:27:17 [ 41] [ 8] [0523XYNG] +17:27:17 [ 49] [ 3] [418] +17:27:17 [ 54] [ 40] [1001418C0001024627951002418C000102462795] +17:27:17 ============================================================================ +17:27:17 Sending to : +17:27:17 ============================================================================ +17:27:17 + + +waiting on router queue for slot.... +17:27:18 ============================================================================ +17:27:18 Slot Id : <306> +17:27:18 Transaction Type : RESPONSE +17:27:18 Received From : +17:27:18 ============================================================================ +17:27:18 FNo. Len. Field Value +17:27:18 ============================================================================ +17:27:18 [ 1] [ 4] [0210] +17:27:18 [ 2] [ 16] [6213548000205987] +17:27:18 [ 3] [ 6] [011000] +17:27:18 [ 4] [ 12] [000020000000] +17:27:18 [ 7] [ 10] [0320102622] +17:27:18 [ 11] [ 6] [270856] +17:27:18 [ 12] [ 6] [172622] +17:27:18 [ 13] [ 4] [0320] +17:27:18 [ 15] [ 4] [0320] +17:27:18 [ 18] [ 4] [6011] +17:27:18 [ 19] [ 3] [418] +17:27:18 [ 32] [ 6] [180893] +17:27:18 [ 35] [ 32] [6213548000205987=171212010598583] +17:27:18 [ 37] [ 12] [507910270856] +17:27:18 [ 38] [ 6] [760628] +17:27:18 [ 39] [ 2] [00] +17:27:18 [ 41] [ 8] [0523XYNG] +17:27:18 [ 49] [ 3] [418] +17:27:18 [ 54] [ 40] [1001418C0001024627951002418C000102462795] +17:27:18 ============================================================================ +17:27:18 Calculate Source COMM Id = 2 +17:27:18 ============================================================================ +17:27:18 + + +waiting on router queue for slot.... +17:27:19 ============================================================================ +17:27:19 Slot Id : <311> +17:27:19 Transaction Type : REQUEST +17:27:19 Received From : +17:27:19 ============================================================================ +17:27:19 FNo. Len. Field Value +17:27:19 ============================================================================ +17:27:19 [ 1] [ 4] [0200] +17:27:19 [ 2] [ 16] [6213544002087234] +17:27:19 [ 3] [ 6] [010000] +17:27:19 [ 4] [ 12] [000050000000] +17:27:19 [ 7] [ 10] [0320172509] +17:27:19 [ 11] [ 6] [953450] +17:27:19 [ 12] [ 6] [172509] +17:27:19 [ 13] [ 4] [0320] +17:27:19 [ 15] [ 4] [0320] +17:27:19 [ 18] [ 4] [6011] +17:27:19 [ 19] [ 3] [418] +17:27:19 [ 22] [ 3] [021] +17:27:19 [ 25] [ 2] [01] +17:27:19 [ 28] [ 9] [D00002000] +17:27:19 [ 32] [ 6] [668899] +17:27:19 [ 35] [ 32] [6213544002087234=491212018723820] +17:27:19 [ 37] [ 12] [507902025675] +17:27:19 [ 41] [ 8] [03414002] +17:27:19 [ 42] [ 15] [APT ] +17:27:19 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:27:19 [ 49] [ 3] [418] +17:27:19 [ 52] [ 16] [C9BD9E44AB5A21E1] +17:27:19 ============================================================================ +17:27:19 + + +waiting on router queue for slot.... +17:27:19 Sending to : +17:27:19 ============================================================================ +17:27:19 Sending to : +17:27:19 ============================================================================ +17:27:20 ============================================================================ +17:27:20 Slot Id : <311> +17:27:20 Transaction Type : REQUEST +17:27:20 Received From : +17:27:20 ============================================================================ +17:27:20 FNo. Len. Field Value +17:27:20 ============================================================================ +17:27:20 [ 1] [ 4] [0200] +17:27:20 [ 2] [ 16] [6213544002087234] +17:27:20 [ 3] [ 6] [010000] +17:27:20 [ 4] [ 12] [000050000000] +17:27:20 [ 7] [ 10] [0320172509] +17:27:20 [ 11] [ 6] [953450] +17:27:20 [ 12] [ 6] [172509] +17:27:20 [ 13] [ 4] [0320] +17:27:20 [ 15] [ 4] [0320] +17:27:20 [ 18] [ 4] [6011] +17:27:20 [ 19] [ 3] [418] +17:27:20 [ 22] [ 3] [021] +17:27:20 [ 25] [ 2] [01] +17:27:20 [ 28] [ 9] [D00002000] +17:27:20 [ 32] [ 6] [668899] +17:27:20 [ 35] [ 32] [6213544002087234=491212018723820] +17:27:20 [ 37] [ 12] [507902025675] +17:27:20 [ 41] [ 8] [03414002] +17:27:20 [ 42] [ 15] [APT ] +17:27:20 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:27:20 [ 49] [ 3] [418] +17:27:20 [ 52] [ 16] [C9BD9E44AB5A21E1] +17:27:20 ============================================================================ +17:27:20 + + +waiting on router queue for slot.... +17:27:20 Sending to : +17:27:20 ============================================================================ +17:27:20 ============================================================================ +17:27:20 Slot Id : <311> +17:27:20 Transaction Type : REQUEST +17:27:20 Received From : +17:27:20 ============================================================================ +17:27:20 FNo. Len. Field Value +17:27:20 ============================================================================ +17:27:20 [ 1] [ 4] [0200] +17:27:20 [ 2] [ 16] [6213544002087234] +17:27:20 [ 3] [ 6] [010000] +17:27:20 [ 4] [ 12] [000050000000] +17:27:20 [ 7] [ 10] [0320172509] +17:27:20 [ 11] [ 6] [953450] +17:27:20 [ 12] [ 6] [172509] +17:27:20 [ 13] [ 4] [0320] +17:27:20 [ 15] [ 4] [0320] +17:27:20 [ 18] [ 4] [6011] +17:27:20 [ 19] [ 3] [418] +17:27:20 [ 22] [ 3] [021] +17:27:20 [ 25] [ 2] [01] +17:27:20 [ 28] [ 9] [D00002000] +17:27:20 [ 32] [ 6] [668899] +17:27:20 [ 35] [ 32] [6213544002087234=491212018723820] +17:27:20 [ 37] [ 12] [507902025675] +17:27:20 [ 41] [ 8] [03414002] +17:27:20 [ 42] [ 15] [APT ] +17:27:20 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:27:20 [ 49] [ 3] [418] +17:27:20 [ 52] [ 16] [3A063E31A712B7EE] +17:27:20 ============================================================================ +17:27:20 + + +waiting on router queue for slot.... +17:27:20 Sending to : <0> +17:27:20 ============================================================================ +17:27:21 ============================================================================ +17:27:21 Slot Id : <311> +17:27:21 Transaction Type : RESPONSE +17:27:21 Received From : +17:27:21 ============================================================================ +17:27:21 FNo. Len. Field Value +17:27:21 ============================================================================ +17:27:21 [ 1] [ 4] [0210] +17:27:21 [ 2] [ 16] [6213544002087234] +17:27:21 [ 3] [ 6] [010000] +17:27:21 [ 4] [ 12] [000050000000] +17:27:21 [ 7] [ 10] [0320172509] +17:27:21 [ 11] [ 6] [953450] +17:27:21 [ 12] [ 6] [172509] +17:27:21 [ 13] [ 4] [0320] +17:27:21 [ 15] [ 4] [0320] +17:27:21 [ 18] [ 4] [6011] +17:27:21 [ 19] [ 3] [418] +17:27:21 [ 32] [ 6] [668899] +17:27:21 [ 35] [ 32] [6213544002087234=491212018723820] +17:27:21 [ 37] [ 12] [507902025675] +17:27:21 [ 38] [ 6] [316458] +17:27:21 [ 39] [ 2] [00] +17:27:21 [ 41] [ 8] [03414002] +17:27:21 [ 49] [ 3] [418] +17:27:21 [ 54] [ 40] [0001418C0000071556460002418C000007155646] +17:27:21 ============================================================================ +17:27:21 Sending to : +17:27:21 ============================================================================ +17:27:21 + + +waiting on router queue for slot.... +17:27:23 ============================================================================ +17:27:23 Slot Id : <311> +17:27:23 Transaction Type : RESPONSE +17:27:23 Received From : +17:27:23 ============================================================================ +17:27:23 FNo. Len. Field Value +17:27:23 ============================================================================ +17:27:23 [ 1] [ 4] [0210] +17:27:23 [ 2] [ 16] [6213544002087234] +17:27:23 [ 3] [ 6] [010000] +17:27:23 [ 4] [ 12] [000050000000] +17:27:23 [ 7] [ 10] [0320172509] +17:27:23 [ 11] [ 6] [953450] +17:27:23 [ 12] [ 6] [172509] +17:27:23 [ 13] [ 4] [0320] +17:27:23 [ 15] [ 4] [0320] +17:27:23 [ 18] [ 4] [6011] +17:27:23 [ 19] [ 3] [418] +17:27:23 [ 32] [ 6] [668899] +17:27:23 [ 35] [ 32] [6213544002087234=491212018723820] +17:27:23 [ 37] [ 12] [507902025675] +17:27:23 [ 38] [ 6] [316458] +17:27:23 [ 39] [ 2] [00] +17:27:23 [ 41] [ 8] [03414002] +17:27:23 [ 49] [ 3] [418] +17:27:23 [ 54] [ 40] [0001418C0000071556460002418C000007155646] +17:27:23 ============================================================================ +17:27:23 Calculate Source COMM Id = 4 +17:27:23 ============================================================================ +17:27:23 + + +waiting on router queue for slot.... +17:27:25 ============================================================================ +17:27:25 Slot Id : <312> +17:27:25 Transaction Type : REQUEST +17:27:25 Received From : +17:27:25 ============================================================================ +17:27:25 FNo. Len. Field Value +17:27:25 ============================================================================ +17:27:25 [ 1] [ 4] [0800] +17:27:25 [ 2] [ 5] [02531] +17:27:25 [ 3] [ 6] [579178] +17:27:25 [ 7] [ 10] [0320102725] +17:27:25 [ 11] [ 6] [807425] +17:27:25 [ 15] [ 10] [0320102725] +17:27:25 [ 37] [ 11] [57917807425] +17:27:25 [ 70] [ 3] [001] +17:27:25 ============================================================================ +17:27:25 + + +waiting on router queue for slot.... +17:27:25 ============================================================================ +17:27:25 Slot Id : <312> +17:27:25 Transaction Type : RESPONSE +17:27:25 Received From : +17:27:25 ============================================================================ +17:27:25 FNo. Len. Field Value +17:27:25 ============================================================================ +17:27:25 [ 1] [ 4] [0810] +17:27:25 [ 7] [ 10] [0320102725] +17:27:25 [ 11] [ 6] [807425] +17:27:25 [ 15] [ 4] [0320] +17:27:25 [ 37] [ 12] [57917807425] +17:27:25 [ 39] [ 2] [00] +17:27:25 [ 70] [ 3] [001] +17:27:25 ============================================================================ +17:27:25 Sending to : +17:27:25 ============================================================================ +17:27:25 + + +waiting on router queue for slot.... +17:27:30 ============================================================================ +17:27:30 Slot Id : <316> +17:27:30 Transaction Type : REQUEST +17:27:30 Received From : +17:27:30 ============================================================================ +17:27:30 FNo. Len. Field Value +17:27:30 ============================================================================ +17:27:30 [ 1] [ 4] [0800] +17:27:30 [ 7] [ 10] [0320102637] +17:27:30 [ 11] [ 6] [157460] +17:27:30 [ 70] [ 3] [301] +17:27:30 ============================================================================ +17:27:30 + + +waiting on router queue for slot.... +17:27:30 Sending to : +17:27:30 ============================================================================ +17:27:30 ============================================================================ +17:27:30 Slot Id : <316> +17:27:30 Transaction Type : RESPONSE +17:27:30 Received From : +17:27:30 ============================================================================ +17:27:30 FNo. Len. Field Value +17:27:30 ============================================================================ +17:27:30 [ 1] [ 4] [0810] +17:27:30 [ 7] [ 10] [0320102637] +17:27:30 [ 11] [ 6] [157460] +17:27:30 [ 39] [ 2] [00] +17:27:30 [ 70] [ 3] [301] +17:27:30 ============================================================================ +17:27:30 Calculate Source COMM Id = 2 +17:27:30 ============================================================================ +17:27:30 + + +waiting on router queue for slot.... +17:27:30 ============================================================================ +17:27:30 Slot Id : <307> +17:27:30 Transaction Type : REQUEST +17:27:30 Received From : +17:27:30 ============================================================================ +17:27:30 FNo. Len. Field Value +17:27:30 ============================================================================ +17:27:30 [ 1] [ 4] [0800] +17:27:30 [ 7] [ 10] [0321003920] +17:27:30 [ 11] [ 6] [173920] +17:27:30 [ 37] [ 12] [57917173920] +17:27:30 [ 70] [ 3] [301] +17:27:30 ============================================================================ +17:27:30 + + +waiting on router queue for slot.... +17:27:30 Sending to : +17:27:30 ============================================================================ +17:27:30 ============================================================================ +17:27:30 Slot Id : <307> +17:27:30 Transaction Type : RESPONSE +17:27:30 Received From : +17:27:30 ============================================================================ +17:27:30 FNo. Len. Field Value +17:27:30 ============================================================================ +17:27:30 [ 1] [ 4] [0810] +17:27:30 [ 7] [ 10] [0321003920] +17:27:30 [ 11] [ 6] [173920] +17:27:30 [ 37] [ 12] [579171739200] +17:27:30 [ 39] [ 2] [00] +17:27:30 [ 70] [ 3] [810] +17:27:30 ============================================================================ +17:27:30 Calculate Source COMM Id = 6 +17:27:30 ============================================================================ +17:27:30 + + +waiting on router queue for slot.... +17:27:38 ============================================================================ +17:27:38 Slot Id : <310> +17:27:38 Transaction Type : REQUEST +17:27:38 Received From : +17:27:38 ============================================================================ +17:27:38 FNo. Len. Field Value +17:27:38 ============================================================================ +17:27:38 [ 1] [ 4] [0200] +17:27:38 [ 2] [ 16] [6688990108435007] +17:27:38 [ 3] [ 6] [010000] +17:27:38 [ 4] [ 12] [000040000000] +17:27:38 [ 7] [ 10] [0320172733] +17:27:38 [ 11] [ 6] [815589] +17:27:38 [ 12] [ 6] [172733] +17:27:38 [ 13] [ 4] [0320] +17:27:38 [ 15] [ 4] [0320] +17:27:38 [ 18] [ 4] [6011] +17:27:38 [ 22] [ 3] [900] +17:27:38 [ 25] [ 2] [02] +17:27:38 [ 28] [ 9] [D00002000] +17:27:38 [ 32] [ 6] [621354] +17:27:38 [ 35] [ 37] [6688990108435007=44061231500730200000] +17:27:38 [ 37] [ 12] [507903489480] +17:27:38 [ 41] [ 8] [06002100] +17:27:38 [ 42] [ 15] [NATIVE ] +17:27:38 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:27:38 [ 49] [ 3] [418] +17:27:38 [ 52] [ 16] [326928D37A3E40D1] +17:27:38 ============================================================================ +17:27:38 + + +waiting on router queue for slot.... +17:27:38 Sending to : +17:27:38 ============================================================================ +17:27:38 Sending to : +17:27:38 ============================================================================ +17:27:38 ============================================================================ +17:27:38 Slot Id : <310> +17:27:38 Transaction Type : REQUEST +17:27:38 Received From : +17:27:38 ============================================================================ +17:27:38 FNo. Len. Field Value +17:27:38 ============================================================================ +17:27:38 [ 1] [ 4] [0200] +17:27:38 [ 2] [ 16] [6688990108435007] +17:27:38 [ 3] [ 6] [010000] +17:27:38 [ 4] [ 12] [000040000000] +17:27:38 [ 7] [ 10] [0320172733] +17:27:38 [ 11] [ 6] [815589] +17:27:38 [ 12] [ 6] [172733] +17:27:38 [ 13] [ 4] [0320] +17:27:38 [ 15] [ 4] [0320] +17:27:38 [ 18] [ 4] [6011] +17:27:38 [ 22] [ 3] [900] +17:27:38 [ 25] [ 2] [02] +17:27:38 [ 28] [ 9] [D00002000] +17:27:38 [ 32] [ 6] [621354] +17:27:38 [ 35] [ 37] [6688990108435007=44061231500730200000] +17:27:38 [ 37] [ 12] [507903489480] +17:27:38 [ 41] [ 8] [06002100] +17:27:38 [ 42] [ 15] [NATIVE ] +17:27:38 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:27:38 [ 49] [ 3] [418] +17:27:38 [ 52] [ 16] [326928D37A3E40D1] +17:27:38 ============================================================================ +17:27:38 + + +waiting on router queue for slot.... +17:27:38 Sending to : +17:27:38 ============================================================================ +17:27:38 ============================================================================ +17:27:38 Slot Id : <310> +17:27:38 Transaction Type : REQUEST +17:27:38 Received From : +17:27:38 ============================================================================ +17:27:38 FNo. Len. Field Value +17:27:38 ============================================================================ +17:27:38 [ 1] [ 4] [0200] +17:27:38 [ 2] [ 16] [6688990108435007] +17:27:38 [ 3] [ 6] [010000] +17:27:38 [ 4] [ 12] [000040000000] +17:27:38 [ 7] [ 10] [0320172733] +17:27:38 [ 11] [ 6] [815589] +17:27:38 [ 12] [ 6] [172733] +17:27:38 [ 13] [ 4] [0320] +17:27:38 [ 15] [ 4] [0320] +17:27:38 [ 18] [ 4] [6011] +17:27:38 [ 22] [ 3] [900] +17:27:38 [ 25] [ 2] [02] +17:27:38 [ 28] [ 9] [D00002000] +17:27:38 [ 32] [ 6] [621354] +17:27:38 [ 35] [ 37] [6688990108435007=44061231500730200000] +17:27:38 [ 37] [ 12] [507903489480] +17:27:38 [ 41] [ 8] [06002100] +17:27:38 [ 42] [ 15] [NATIVE ] +17:27:38 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:27:38 [ 49] [ 3] [418] +17:27:38 [ 52] [ 16] [5BC31CF8486C5D87] +17:27:38 ============================================================================ +17:27:38 + + +waiting on router queue for slot.... +17:27:38 Sending to : <4> +17:27:38 ============================================================================ +17:27:40 ============================================================================ +17:27:40 Slot Id : <310> +17:27:40 Transaction Type : RESPONSE +17:27:40 Received From : +17:27:40 ============================================================================ +17:27:40 FNo. Len. Field Value +17:27:40 ============================================================================ +17:27:40 [ 1] [ 4] [0210] +17:27:40 [ 2] [ 16] [6688990108435007] +17:27:40 [ 3] [ 6] [010000] +17:27:40 [ 4] [ 12] [000040000000] +17:27:40 [ 11] [ 6] [815589] +17:27:40 [ 12] [ 6] [172733] +17:27:40 [ 15] [ 4] [0320] +17:27:40 [ 18] [ 4] [6011] +17:27:40 [ 32] [ 6] [621354] +17:27:40 [ 35] [ 37] [6688990108435007=44061231500730200000] +17:27:40 [ 37] [ 12] [507903489480] +17:27:40 [ 38] [ 6] [729825] +17:27:40 [ 39] [ 2] [00] +17:27:40 [ 41] [ 8] [06002100] +17:27:40 [ 49] [ 3] [418] +17:27:40 [ 54] [ 20] [0002418C000244234768] +17:27:40 ============================================================================ +17:27:40 Sending to : +17:27:40 ============================================================================ +17:27:40 + + +waiting on router queue for slot.... +17:27:41 ============================================================================ +17:27:41 Slot Id : <310> +17:27:41 Transaction Type : RESPONSE +17:27:41 Received From : +17:27:41 ============================================================================ +17:27:41 FNo. Len. Field Value +17:27:41 ============================================================================ +17:27:41 [ 1] [ 4] [0210] +17:27:41 [ 2] [ 16] [6688990108435007] +17:27:41 [ 3] [ 6] [010000] +17:27:41 [ 4] [ 12] [000040000000] +17:27:41 [ 11] [ 6] [815589] +17:27:41 [ 12] [ 6] [172733] +17:27:41 [ 15] [ 4] [0320] +17:27:41 [ 18] [ 4] [6011] +17:27:41 [ 32] [ 6] [621354] +17:27:41 [ 35] [ 37] [6688990108435007=44061231500730200000] +17:27:41 [ 37] [ 12] [507903489480] +17:27:41 [ 38] [ 6] [729825] +17:27:41 [ 39] [ 2] [00] +17:27:41 [ 41] [ 8] [06002100] +17:27:41 [ 49] [ 3] [418] +17:27:41 [ 54] [ 20] [0002418C000244234768] +17:27:41 ============================================================================ +17:27:41 Calculate Source COMM Id = 0 +17:27:41 ============================================================================ +17:27:41 + + +waiting on router queue for slot.... +17:27:45 ============================================================================ +17:27:45 Slot Id : <317> +17:27:45 Transaction Type : REQUEST +17:27:45 Received From : +17:27:45 ============================================================================ +17:27:45 FNo. Len. Field Value +17:27:45 ============================================================================ +17:27:45 [ 1] [ 4] [0200] +17:27:45 [ 2] [ 16] [6213543000088038] +17:27:45 [ 3] [ 6] [010000] +17:27:45 [ 4] [ 12] [000050000000] +17:27:45 [ 7] [ 10] [0320172535] +17:27:45 [ 11] [ 6] [953460] +17:27:45 [ 12] [ 6] [172535] +17:27:45 [ 13] [ 4] [0320] +17:27:45 [ 15] [ 4] [0320] +17:27:45 [ 18] [ 4] [6011] +17:27:45 [ 19] [ 3] [418] +17:27:45 [ 22] [ 3] [021] +17:27:45 [ 25] [ 2] [01] +17:27:45 [ 28] [ 9] [D00002000] +17:27:45 [ 32] [ 6] [668899] +17:27:45 [ 35] [ 32] [6213543000088038=491212018803205] +17:27:45 [ 37] [ 12] [507900869011] +17:27:45 [ 41] [ 8] [03018001] +17:27:45 [ 42] [ 15] [APT ] +17:27:45 [ 43] [ 40] [ CHAMPA HOTEL ATTAPEU L] +17:27:45 [ 49] [ 3] [418] +17:27:45 [ 52] [ 16] [835D253B66D27F17] +17:27:45 ============================================================================ +17:27:45 + + +waiting on router queue for slot.... +17:27:45 Sending to : +17:27:45 ============================================================================ +17:27:45 Sending to : +17:27:45 ============================================================================ +17:27:45 ============================================================================ +17:27:45 Slot Id : <288> +17:27:45 Transaction Type : REQUEST +17:27:45 Received From : +17:27:45 ============================================================================ +17:27:45 FNo. Len. Field Value +17:27:45 ============================================================================ +17:27:45 [ 1] [ 4] [0800] +17:27:45 [ 7] [ 10] [0320102652] +17:27:45 [ 11] [ 6] [157461] +17:27:45 [ 70] [ 3] [301] +17:27:45 ============================================================================ +17:27:45 + + +waiting on router queue for slot.... +17:27:45 Sending to : +17:27:45 ============================================================================ +17:27:45 ============================================================================ +17:27:45 Slot Id : <288> +17:27:45 Transaction Type : RESPONSE +17:27:45 Received From : +17:27:45 ============================================================================ +17:27:45 FNo. Len. Field Value +17:27:45 ============================================================================ +17:27:45 [ 1] [ 4] [0810] +17:27:45 [ 7] [ 10] [0320102652] +17:27:45 [ 11] [ 6] [157461] +17:27:45 [ 39] [ 2] [00] +17:27:45 [ 70] [ 3] [301] +17:27:45 ============================================================================ +17:27:45 Calculate Source COMM Id = 2 +17:27:45 ============================================================================ +17:27:45 + + +waiting on router queue for slot.... +17:27:46 ============================================================================ +17:27:46 Slot Id : <317> +17:27:46 Transaction Type : REQUEST +17:27:46 Received From : +17:27:46 ============================================================================ +17:27:46 FNo. Len. Field Value +17:27:46 ============================================================================ +17:27:46 [ 1] [ 4] [0200] +17:27:46 [ 2] [ 16] [6213543000088038] +17:27:46 [ 3] [ 6] [010000] +17:27:46 [ 4] [ 12] [000050000000] +17:27:46 [ 7] [ 10] [0320172535] +17:27:46 [ 11] [ 6] [953460] +17:27:46 [ 12] [ 6] [172535] +17:27:46 [ 13] [ 4] [0320] +17:27:46 [ 15] [ 4] [0320] +17:27:46 [ 18] [ 4] [6011] +17:27:46 [ 19] [ 3] [418] +17:27:46 [ 22] [ 3] [021] +17:27:46 [ 25] [ 2] [01] +17:27:46 [ 28] [ 9] [D00002000] +17:27:46 [ 32] [ 6] [668899] +17:27:46 [ 35] [ 32] [6213543000088038=491212018803205] +17:27:46 [ 37] [ 12] [507900869011] +17:27:46 [ 41] [ 8] [03018001] +17:27:46 [ 42] [ 15] [APT ] +17:27:46 [ 43] [ 40] [ CHAMPA HOTEL ATTAPEU L] +17:27:46 [ 49] [ 3] [418] +17:27:46 [ 52] [ 16] [835D253B66D27F17] +17:27:46 ============================================================================ +17:27:46 + + +waiting on router queue for slot.... +17:27:46 Sending to : +17:27:46 ============================================================================ +17:27:46 ============================================================================ +17:27:46 Slot Id : <317> +17:27:46 Transaction Type : REQUEST +17:27:46 Received From : +17:27:46 ============================================================================ +17:27:46 FNo. Len. Field Value +17:27:46 ============================================================================ +17:27:46 [ 1] [ 4] [0200] +17:27:46 [ 2] [ 16] [6213543000088038] +17:27:46 [ 3] [ 6] [010000] +17:27:46 [ 4] [ 12] [000050000000] +17:27:46 [ 7] [ 10] [0320172535] +17:27:46 [ 11] [ 6] [953460] +17:27:46 [ 12] [ 6] [172535] +17:27:46 [ 13] [ 4] [0320] +17:27:46 [ 15] [ 4] [0320] +17:27:46 [ 18] [ 4] [6011] +17:27:46 [ 19] [ 3] [418] +17:27:46 [ 22] [ 3] [021] +17:27:46 [ 25] [ 2] [01] +17:27:46 [ 28] [ 9] [D00002000] +17:27:46 [ 32] [ 6] [668899] +17:27:46 [ 35] [ 32] [6213543000088038=491212018803205] +17:27:46 [ 37] [ 12] [507900869011] +17:27:46 [ 41] [ 8] [03018001] +17:27:46 [ 42] [ 15] [APT ] +17:27:46 [ 43] [ 40] [ CHAMPA HOTEL ATTAPEU L] +17:27:46 [ 49] [ 3] [418] +17:27:46 [ 52] [ 16] [9FF30BF1AB40F679] +17:27:46 ============================================================================ +17:27:46 + + +waiting on router queue for slot.... +17:27:46 Sending to : <0> +17:27:46 ============================================================================ +17:27:46 ============================================================================ +17:27:46 Slot Id : <317> +17:27:46 Transaction Type : RESPONSE +17:27:46 Received From : +17:27:46 ============================================================================ +17:27:46 FNo. Len. Field Value +17:27:46 ============================================================================ +17:27:46 [ 1] [ 4] [0210] +17:27:46 [ 2] [ 16] [6213543000088038] +17:27:46 [ 3] [ 6] [010000] +17:27:46 [ 4] [ 12] [000050000000] +17:27:46 [ 7] [ 10] [0320172535] +17:27:46 [ 11] [ 6] [953460] +17:27:46 [ 12] [ 6] [172535] +17:27:46 [ 13] [ 4] [0320] +17:27:46 [ 15] [ 4] [0320] +17:27:46 [ 18] [ 4] [6011] +17:27:46 [ 19] [ 3] [418] +17:27:46 [ 32] [ 6] [668899] +17:27:46 [ 35] [ 32] [6213543000088038=491212018803205] +17:27:46 [ 37] [ 12] [507900869011] +17:27:46 [ 38] [ 6] [081915] +17:27:46 [ 39] [ 2] [00] +17:27:46 [ 41] [ 8] [03018001] +17:27:46 [ 49] [ 3] [418] +17:27:46 [ 54] [ 40] [0001418C0004573728920002418C000457372892] +17:27:46 ============================================================================ +17:27:46 Sending to : +17:27:46 ============================================================================ +17:27:46 + + +waiting on router queue for slot.... +17:27:47 ============================================================================ +17:27:47 Slot Id : <317> +17:27:47 Transaction Type : RESPONSE +17:27:47 Received From : +17:27:47 ============================================================================ +17:27:47 FNo. Len. Field Value +17:27:47 ============================================================================ +17:27:47 [ 1] [ 4] [0210] +17:27:47 [ 2] [ 16] [6213543000088038] +17:27:47 [ 3] [ 6] [010000] +17:27:47 [ 4] [ 12] [000050000000] +17:27:47 [ 7] [ 10] [0320172535] +17:27:47 [ 11] [ 6] [953460] +17:27:47 [ 12] [ 6] [172535] +17:27:47 [ 13] [ 4] [0320] +17:27:47 [ 15] [ 4] [0320] +17:27:47 [ 18] [ 4] [6011] +17:27:47 [ 19] [ 3] [418] +17:27:47 [ 32] [ 6] [668899] +17:27:47 [ 35] [ 32] [6213543000088038=491212018803205] +17:27:47 [ 37] [ 12] [507900869011] +17:27:47 [ 38] [ 6] [081915] +17:27:47 [ 39] [ 2] [00] +17:27:47 [ 41] [ 8] [03018001] +17:27:47 [ 49] [ 3] [418] +17:27:47 [ 54] [ 40] [0001418C0004573728920002418C000457372892] +17:27:47 ============================================================================ +17:27:47 Calculate Source COMM Id = 4 +17:27:47 ============================================================================ +17:27:47 + + +waiting on router queue for slot.... +17:27:51 ============================================================================ +17:27:51 Slot Id : <318> +17:27:51 Transaction Type : REQUEST +17:27:51 Received From : +17:27:51 ============================================================================ +17:27:51 FNo. Len. Field Value +17:27:51 ============================================================================ +17:27:51 [ 1] [ 4] [0200] +17:27:51 [ 2] [ 16] [6213543000192632] +17:27:51 [ 3] [ 6] [011000] +17:27:51 [ 4] [ 12] [000005000000] +17:27:51 [ 7] [ 10] [0320102656] +17:27:51 [ 11] [ 6] [270861] +17:27:51 [ 12] [ 6] [172656] +17:27:51 [ 13] [ 4] [0320] +17:27:51 [ 14] [ 4] [4912] +17:27:51 [ 15] [ 4] [0320] +17:27:51 [ 18] [ 4] [6011] +17:27:51 [ 19] [ 3] [418] +17:27:51 [ 22] [ 3] [021] +17:27:51 [ 25] [ 2] [01] +17:27:51 [ 28] [ 9] [D00002000] +17:27:51 [ 32] [ 6] [180893] +17:27:51 [ 35] [ 32] [6213543000192632=491212019263856] +17:27:51 [ 37] [ 12] [507910270861] +17:27:51 [ 41] [ 8] [0104NUOL] +17:27:51 [ 42] [ 15] [999999 ] +17:27:51 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +17:27:51 [ 49] [ 3] [418] +17:27:51 [ 52] [ 16] [0231E9AF208C8710] +17:27:51 ============================================================================ +17:27:51 + + +waiting on router queue for slot.... +17:27:51 Sending to : +17:27:51 ============================================================================ +17:27:51 Sending to : +17:27:51 ============================================================================ +17:27:51 ============================================================================ +17:27:51 Slot Id : <318> +17:27:51 Transaction Type : REQUEST +17:27:51 Received From : +17:27:51 ============================================================================ +17:27:51 FNo. Len. Field Value +17:27:51 ============================================================================ +17:27:51 [ 1] [ 4] [0200] +17:27:51 [ 2] [ 16] [6213543000192632] +17:27:51 [ 3] [ 6] [011000] +17:27:51 [ 4] [ 12] [000005000000] +17:27:51 [ 7] [ 10] [0320102656] +17:27:51 [ 11] [ 6] [270861] +17:27:51 [ 12] [ 6] [172656] +17:27:51 [ 13] [ 4] [0320] +17:27:51 [ 14] [ 4] [4912] +17:27:51 [ 15] [ 4] [0320] +17:27:51 [ 18] [ 4] [6011] +17:27:51 [ 19] [ 3] [418] +17:27:51 [ 22] [ 3] [021] +17:27:51 [ 25] [ 2] [01] +17:27:51 [ 28] [ 9] [D00002000] +17:27:51 [ 32] [ 6] [180893] +17:27:51 [ 35] [ 32] [6213543000192632=491212019263856] +17:27:51 [ 37] [ 12] [507910270861] +17:27:51 [ 41] [ 8] [0104NUOL] +17:27:51 [ 42] [ 15] [999999 ] +17:27:51 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +17:27:51 [ 49] [ 3] [418] +17:27:51 [ 52] [ 16] [0231E9AF208C8710] +17:27:51 ============================================================================ +17:27:51 + + +waiting on router queue for slot.... +17:27:51 Sending to : +17:27:51 ============================================================================ +17:27:51 ============================================================================ +17:27:51 Slot Id : <318> +17:27:51 Transaction Type : REQUEST +17:27:51 Received From : +17:27:51 ============================================================================ +17:27:51 FNo. Len. Field Value +17:27:51 ============================================================================ +17:27:51 [ 1] [ 4] [0200] +17:27:51 [ 2] [ 16] [6213543000192632] +17:27:51 [ 3] [ 6] [011000] +17:27:51 [ 4] [ 12] [000005000000] +17:27:51 [ 7] [ 10] [0320102656] +17:27:51 [ 11] [ 6] [270861] +17:27:51 [ 12] [ 6] [172656] +17:27:51 [ 13] [ 4] [0320] +17:27:51 [ 14] [ 4] [4912] +17:27:51 [ 15] [ 4] [0320] +17:27:51 [ 18] [ 4] [6011] +17:27:51 [ 19] [ 3] [418] +17:27:51 [ 22] [ 3] [021] +17:27:51 [ 25] [ 2] [01] +17:27:51 [ 28] [ 9] [D00002000] +17:27:51 [ 32] [ 6] [180893] +17:27:51 [ 35] [ 32] [6213543000192632=491212019263856] +17:27:51 [ 37] [ 12] [507910270861] +17:27:51 [ 41] [ 8] [0104NUOL] +17:27:51 [ 42] [ 15] [999999 ] +17:27:51 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +17:27:51 [ 49] [ 3] [418] +17:27:51 [ 52] [ 16] [64AE1898D9B7D140] +17:27:51 ============================================================================ +17:27:51 + + +waiting on router queue for slot.... +17:27:52 Sending to : <0> +17:27:52 ============================================================================ +17:27:52 ============================================================================ +17:27:52 Slot Id : <318> +17:27:52 Transaction Type : RESPONSE +17:27:52 Received From : +17:27:52 ============================================================================ +17:27:52 FNo. Len. Field Value +17:27:52 ============================================================================ +17:27:52 [ 1] [ 4] [0210] +17:27:52 [ 2] [ 16] [6213543000192632] +17:27:52 [ 3] [ 6] [011000] +17:27:52 [ 4] [ 12] [000005000000] +17:27:52 [ 7] [ 10] [0320102656] +17:27:52 [ 11] [ 6] [270861] +17:27:52 [ 12] [ 6] [172656] +17:27:52 [ 13] [ 4] [0320] +17:27:52 [ 15] [ 4] [0320] +17:27:52 [ 18] [ 4] [6011] +17:27:52 [ 19] [ 3] [418] +17:27:52 [ 32] [ 6] [180893] +17:27:52 [ 35] [ 32] [6213543000192632=491212019263856] +17:27:52 [ 37] [ 12] [507910270861] +17:27:52 [ 38] [ 6] [982144] +17:27:52 [ 39] [ 2] [00] +17:27:52 [ 41] [ 8] [0104NUOL] +17:27:52 [ 49] [ 3] [418] +17:27:52 [ 54] [ 40] [1001418C0000096058801002418C000009605880] +17:27:52 ============================================================================ +17:27:52 Sending to : +17:27:52 ============================================================================ +17:27:52 + + +waiting on router queue for slot.... +17:27:53 ============================================================================ +17:27:53 Slot Id : <318> +17:27:53 Transaction Type : RESPONSE +17:27:53 Received From : +17:27:53 ============================================================================ +17:27:53 FNo. Len. Field Value +17:27:53 ============================================================================ +17:27:53 [ 1] [ 4] [0210] +17:27:53 [ 2] [ 16] [6213543000192632] +17:27:53 [ 3] [ 6] [011000] +17:27:53 [ 4] [ 12] [000005000000] +17:27:53 [ 7] [ 10] [0320102656] +17:27:53 [ 11] [ 6] [270861] +17:27:53 [ 12] [ 6] [172656] +17:27:53 [ 13] [ 4] [0320] +17:27:53 [ 15] [ 4] [0320] +17:27:53 [ 18] [ 4] [6011] +17:27:53 [ 19] [ 3] [418] +17:27:53 [ 32] [ 6] [180893] +17:27:53 [ 35] [ 32] [6213543000192632=491212019263856] +17:27:53 [ 37] [ 12] [507910270861] +17:27:53 [ 38] [ 6] [982144] +17:27:53 [ 39] [ 2] [00] +17:27:53 [ 41] [ 8] [0104NUOL] +17:27:53 [ 49] [ 3] [418] +17:27:53 [ 54] [ 40] [1001418C0000096058801002418C000009605880] +17:27:53 ============================================================================ +17:27:53 Calculate Source COMM Id = 2 +17:27:53 ============================================================================ +17:27:53 + + +waiting on router queue for slot.... +17:27:56 ============================================================================ +17:27:56 Slot Id : <322> +17:27:56 Transaction Type : REQUEST +17:27:56 Received From : +17:27:56 ============================================================================ +17:27:56 FNo. Len. Field Value +17:27:56 ============================================================================ +17:27:56 [ 1] [ 4] [0200] +17:27:56 [ 2] [ 16] [6213544000982022] +17:27:56 [ 3] [ 6] [301000] +17:27:56 [ 4] [ 12] [000000000000] +17:27:56 [ 7] [ 10] [0320172546] +17:27:56 [ 11] [ 6] [953467] +17:27:56 [ 12] [ 6] [172546] +17:27:56 [ 13] [ 4] [0320] +17:27:56 [ 15] [ 4] [0320] +17:27:56 [ 18] [ 4] [6011] +17:27:56 [ 19] [ 3] [418] +17:27:56 [ 22] [ 3] [021] +17:27:56 [ 25] [ 2] [01] +17:27:56 [ 28] [ 9] [D00000000] +17:27:56 [ 32] [ 6] [668899] +17:27:56 [ 35] [ 32] [6213544000982022=491212018202512] +17:27:56 [ 37] [ 12] [507901028123] +17:27:56 [ 41] [ 8] [03310002] +17:27:56 [ 42] [ 15] [APT ] +17:27:56 [ 43] [ 40] [ KEOOUDOM KEOOUDOM KEO] +17:27:56 [ 49] [ 3] [418] +17:27:56 [ 52] [ 16] [B27B3FF4F1D29F3B] +17:27:56 ============================================================================ +17:27:56 + + +waiting on router queue for slot.... +17:27:56 Sending to : +17:27:56 ============================================================================ +17:27:56 Sending to : +17:27:56 ============================================================================ +17:27:56 ============================================================================ +17:27:56 Slot Id : <322> +17:27:56 Transaction Type : REQUEST +17:27:56 Received From : +17:27:56 ============================================================================ +17:27:56 FNo. Len. Field Value +17:27:56 ============================================================================ +17:27:56 [ 1] [ 4] [0200] +17:27:56 [ 2] [ 16] [6213544000982022] +17:27:56 [ 3] [ 6] [301000] +17:27:56 [ 4] [ 12] [000000000000] +17:27:56 [ 7] [ 10] [0320172546] +17:27:56 [ 11] [ 6] [953467] +17:27:56 [ 12] [ 6] [172546] +17:27:56 [ 13] [ 4] [0320] +17:27:56 [ 15] [ 4] [0320] +17:27:56 [ 18] [ 4] [6011] +17:27:56 [ 19] [ 3] [418] +17:27:56 [ 22] [ 3] [021] +17:27:56 [ 25] [ 2] [01] +17:27:56 [ 28] [ 9] [D00000000] +17:27:56 [ 32] [ 6] [668899] +17:27:56 [ 35] [ 32] [6213544000982022=491212018202512] +17:27:56 [ 37] [ 12] [507901028123] +17:27:56 [ 41] [ 8] [03310002] +17:27:56 [ 42] [ 15] [APT ] +17:27:56 [ 43] [ 40] [ KEOOUDOM KEOOUDOM KEO] +17:27:56 [ 49] [ 3] [418] +17:27:56 [ 52] [ 16] [B27B3FF4F1D29F3B] +17:27:56 ============================================================================ +17:27:56 + + +waiting on router queue for slot.... +17:27:56 Sending to : +17:27:56 ============================================================================ +17:27:56 ============================================================================ +17:27:56 Slot Id : <322> +17:27:56 Transaction Type : REQUEST +17:27:56 Received From : +17:27:56 ============================================================================ +17:27:56 FNo. Len. Field Value +17:27:56 ============================================================================ +17:27:56 [ 1] [ 4] [0200] +17:27:56 [ 2] [ 16] [6213544000982022] +17:27:56 [ 3] [ 6] [301000] +17:27:56 [ 4] [ 12] [000000000000] +17:27:56 [ 7] [ 10] [0320172546] +17:27:56 [ 11] [ 6] [953467] +17:27:56 [ 12] [ 6] [172546] +17:27:56 [ 13] [ 4] [0320] +17:27:56 [ 15] [ 4] [0320] +17:27:56 [ 18] [ 4] [6011] +17:27:56 [ 19] [ 3] [418] +17:27:56 [ 22] [ 3] [021] +17:27:56 [ 25] [ 2] [01] +17:27:56 [ 28] [ 9] [D00000000] +17:27:56 [ 32] [ 6] [668899] +17:27:56 [ 35] [ 32] [6213544000982022=491212018202512] +17:27:56 [ 37] [ 12] [507901028123] +17:27:56 [ 41] [ 8] [03310002] +17:27:56 [ 42] [ 15] [APT ] +17:27:56 [ 43] [ 40] [ KEOOUDOM KEOOUDOM KEO] +17:27:56 [ 49] [ 3] [418] +17:27:56 [ 52] [ 16] [987AC0B1EEE806C3] +17:27:56 ============================================================================ +17:27:56 + + +waiting on router queue for slot.... +17:27:56 Sending to : <0> +17:27:56 ============================================================================ +17:27:56 ============================================================================ +17:27:56 Slot Id : <322> +17:27:56 Transaction Type : RESPONSE +17:27:56 Received From : +17:27:56 ============================================================================ +17:27:56 FNo. Len. Field Value +17:27:56 ============================================================================ +17:27:56 [ 1] [ 4] [0210] +17:27:56 [ 2] [ 16] [6213544000982022] +17:27:56 [ 3] [ 6] [301000] +17:27:56 [ 4] [ 12] [000000000000] +17:27:56 [ 7] [ 10] [0320172546] +17:27:56 [ 11] [ 6] [953467] +17:27:56 [ 12] [ 6] [172546] +17:27:56 [ 13] [ 4] [0320] +17:27:56 [ 15] [ 4] [0320] +17:27:56 [ 18] [ 4] [6011] +17:27:56 [ 19] [ 3] [418] +17:27:56 [ 22] [ 3] [021] +17:27:56 [ 32] [ 6] [668899] +17:27:56 [ 35] [ 32] [6213544000982022=491212018202512] +17:27:56 [ 37] [ 12] [507901028123] +17:27:56 [ 38] [ 6] [172751] +17:27:56 [ 39] [ 2] [55] +17:27:56 [ 41] [ 8] [03310002] +17:27:56 [ 49] [ 3] [418] +17:27:56 ============================================================================ +17:27:56 Sending to : +17:27:56 ============================================================================ +17:27:56 + + +waiting on router queue for slot.... +17:27:57 ============================================================================ +17:27:57 Slot Id : <322> +17:27:57 Transaction Type : RESPONSE +17:27:57 Received From : +17:27:57 ============================================================================ +17:27:57 FNo. Len. Field Value +17:27:57 ============================================================================ +17:27:57 [ 1] [ 4] [0210] +17:27:57 [ 2] [ 16] [6213544000982022] +17:27:57 [ 3] [ 6] [301000] +17:27:57 [ 4] [ 12] [000000000000] +17:27:57 [ 7] [ 10] [0320172546] +17:27:57 [ 11] [ 6] [953467] +17:27:57 [ 12] [ 6] [172546] +17:27:57 [ 13] [ 4] [0320] +17:27:57 [ 15] [ 4] [0320] +17:27:57 [ 18] [ 4] [6011] +17:27:57 [ 19] [ 3] [418] +17:27:57 [ 22] [ 3] [021] +17:27:57 [ 32] [ 6] [668899] +17:27:57 [ 35] [ 32] [6213544000982022=491212018202512] +17:27:57 [ 37] [ 12] [507901028123] +17:27:57 [ 38] [ 6] [172751] +17:27:57 [ 39] [ 2] [55] +17:27:57 [ 41] [ 8] [03310002] +17:27:57 [ 49] [ 3] [418] +17:27:57 ============================================================================ +17:27:57 Calculate Source COMM Id = 4 +17:27:57 ============================================================================ +17:27:57 + + +waiting on router queue for slot.... +17:28:00 ============================================================================ +17:28:00 Slot Id : <325> +17:28:00 Transaction Type : REQUEST +17:28:00 Received From : +17:28:00 ============================================================================ +17:28:00 FNo. Len. Field Value +17:28:00 ============================================================================ +17:28:00 [ 1] [ 4] [0200] +17:28:00 [ 2] [ 16] [6688990103109706] +17:28:00 [ 3] [ 6] [011000] +17:28:00 [ 4] [ 12] [000010000000] +17:28:00 [ 7] [ 10] [0320172755] +17:28:00 [ 11] [ 6] [815668] +17:28:00 [ 12] [ 6] [172755] +17:28:00 [ 13] [ 4] [0320] +17:28:00 [ 15] [ 4] [0320] +17:28:00 [ 18] [ 4] [6011] +17:28:00 [ 22] [ 3] [900] +17:28:00 [ 25] [ 2] [02] +17:28:00 [ 28] [ 9] [D00002000] +17:28:00 [ 32] [ 6] [621354] +17:28:00 [ 35] [ 37] [6688990103109706=42121231970626600000] +17:28:00 [ 37] [ 12] [507902925829] +17:28:00 [ 41] [ 8] [12001500] +17:28:00 [ 42] [ 15] [NATIVE ] +17:28:00 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +17:28:00 [ 49] [ 3] [418] +17:28:00 [ 52] [ 16] [549F2234EDF7FF81] +17:28:00 ============================================================================ +17:28:00 + + +waiting on router queue for slot.... +17:28:00 Sending to : +17:28:00 ============================================================================ +17:28:00 Sending to : +17:28:00 ============================================================================ +17:28:01 ============================================================================ +17:28:01 Slot Id : <325> +17:28:01 Transaction Type : REQUEST +17:28:01 Received From : +17:28:01 ============================================================================ +17:28:01 FNo. Len. Field Value +17:28:01 ============================================================================ +17:28:01 [ 1] [ 4] [0200] +17:28:01 [ 2] [ 16] [6688990103109706] +17:28:01 [ 3] [ 6] [011000] +17:28:01 [ 4] [ 12] [000010000000] +17:28:01 [ 7] [ 10] [0320172755] +17:28:01 [ 11] [ 6] [815668] +17:28:01 [ 12] [ 6] [172755] +17:28:01 [ 13] [ 4] [0320] +17:28:01 [ 15] [ 4] [0320] +17:28:01 [ 18] [ 4] [6011] +17:28:01 [ 22] [ 3] [900] +17:28:01 [ 25] [ 2] [02] +17:28:01 [ 28] [ 9] [D00002000] +17:28:01 [ 32] [ 6] [621354] +17:28:01 [ 35] [ 37] [6688990103109706=42121231970626600000] +17:28:01 [ 37] [ 12] [507902925829] +17:28:01 [ 41] [ 8] [12001500] +17:28:01 [ 42] [ 15] [NATIVE ] +17:28:01 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +17:28:01 [ 49] [ 3] [418] +17:28:01 [ 52] [ 16] [549F2234EDF7FF81] +17:28:01 ============================================================================ +17:28:01 + + +waiting on router queue for slot.... +17:28:01 Sending to : +17:28:01 ============================================================================ +17:28:01 ============================================================================ +17:28:01 Slot Id : <325> +17:28:01 Transaction Type : REQUEST +17:28:01 Received From : +17:28:01 ============================================================================ +17:28:01 FNo. Len. Field Value +17:28:01 ============================================================================ +17:28:01 [ 1] [ 4] [0200] +17:28:01 [ 2] [ 16] [6688990103109706] +17:28:01 [ 3] [ 6] [011000] +17:28:01 [ 4] [ 12] [000010000000] +17:28:01 [ 7] [ 10] [0320172755] +17:28:01 [ 11] [ 6] [815668] +17:28:01 [ 12] [ 6] [172755] +17:28:01 [ 13] [ 4] [0320] +17:28:01 [ 15] [ 4] [0320] +17:28:01 [ 18] [ 4] [6011] +17:28:01 [ 22] [ 3] [900] +17:28:01 [ 25] [ 2] [02] +17:28:01 [ 28] [ 9] [D00002000] +17:28:01 [ 32] [ 6] [621354] +17:28:01 [ 35] [ 37] [6688990103109706=42121231970626600000] +17:28:01 [ 37] [ 12] [507902925829] +17:28:01 [ 41] [ 8] [12001500] +17:28:01 [ 42] [ 15] [NATIVE ] +17:28:01 [ 43] [ 40] [MUANGPHIENG KAO Xayabouly LAO] +17:28:01 [ 49] [ 3] [418] +17:28:01 [ 52] [ 16] [AE6F82AC3B85A1E2] +17:28:01 ============================================================================ +17:28:01 + + +waiting on router queue for slot.... +17:28:01 Sending to : <4> +17:28:01 ============================================================================ +17:28:02 ============================================================================ +17:28:02 Slot Id : <325> +17:28:02 Transaction Type : RESPONSE +17:28:02 Received From : +17:28:02 ============================================================================ +17:28:02 FNo. Len. Field Value +17:28:02 ============================================================================ +17:28:02 [ 1] [ 4] [0210] +17:28:02 [ 2] [ 16] [6688990103109706] +17:28:02 [ 3] [ 6] [011000] +17:28:02 [ 4] [ 12] [000010000000] +17:28:02 [ 11] [ 6] [815668] +17:28:02 [ 12] [ 6] [172755] +17:28:02 [ 15] [ 4] [0320] +17:28:02 [ 18] [ 4] [6011] +17:28:02 [ 32] [ 6] [621354] +17:28:02 [ 35] [ 37] [6688990103109706=42121231970626600000] +17:28:02 [ 37] [ 12] [507902925829] +17:28:02 [ 38] [ 6] [036969] +17:28:02 [ 39] [ 2] [00] +17:28:02 [ 41] [ 8] [12001500] +17:28:02 [ 49] [ 3] [418] +17:28:02 [ 54] [ 20] [1002418C000007513216] +17:28:02 ============================================================================ +17:28:02 Sending to : +17:28:02 ============================================================================ +17:28:02 + + +waiting on router queue for slot.... +17:28:02 ============================================================================ +17:28:02 Slot Id : <297> +17:28:02 Transaction Type : REQUEST +17:28:02 Received From : +17:28:02 ============================================================================ +17:28:02 FNo. Len. Field Value +17:28:02 ============================================================================ +17:28:02 [ 1] [ 4] [0200] +17:28:02 [ 2] [ 16] [6688990040072561] +17:28:02 [ 3] [ 6] [012000] +17:28:02 [ 4] [ 12] [000100000000] +17:28:02 [ 7] [ 10] [0320172757] +17:28:02 [ 11] [ 6] [815676] +17:28:02 [ 12] [ 6] [172757] +17:28:02 [ 13] [ 4] [0320] +17:28:02 [ 15] [ 4] [0320] +17:28:02 [ 18] [ 4] [6011] +17:28:02 [ 22] [ 3] [900] +17:28:02 [ 25] [ 2] [02] +17:28:02 [ 28] [ 9] [D00002000] +17:28:02 [ 32] [ 6] [621354] +17:28:02 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:28:02 [ 37] [ 12] [507903499673] +17:28:02 [ 41] [ 8] [06002200] +17:28:02 [ 42] [ 15] [NATIVE ] +17:28:02 [ 43] [ 40] [Beng Market Beng LAO] +17:28:02 [ 49] [ 3] [418] +17:28:02 [ 52] [ 16] [8F4569422EC9DC11] +17:28:02 ============================================================================ +17:28:02 + + +waiting on router queue for slot.... +17:28:02 Sending to : +17:28:02 ============================================================================ +17:28:02 Sending to : +17:28:02 ============================================================================ +17:28:02 ============================================================================ +17:28:02 Slot Id : <297> +17:28:02 Transaction Type : REQUEST +17:28:02 Received From : +17:28:02 ============================================================================ +17:28:02 FNo. Len. Field Value +17:28:02 ============================================================================ +17:28:02 [ 1] [ 4] [0200] +17:28:02 [ 2] [ 16] [6688990040072561] +17:28:02 [ 3] [ 6] [012000] +17:28:02 [ 4] [ 12] [000100000000] +17:28:02 [ 7] [ 10] [0320172757] +17:28:02 [ 11] [ 6] [815676] +17:28:02 [ 12] [ 6] [172757] +17:28:02 [ 13] [ 4] [0320] +17:28:02 [ 15] [ 4] [0320] +17:28:02 [ 18] [ 4] [6011] +17:28:02 [ 22] [ 3] [900] +17:28:02 [ 25] [ 2] [02] +17:28:02 [ 28] [ 9] [D00002000] +17:28:02 [ 32] [ 6] [621354] +17:28:02 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:28:02 [ 37] [ 12] [507903499673] +17:28:02 [ 41] [ 8] [06002200] +17:28:02 [ 42] [ 15] [NATIVE ] +17:28:02 [ 43] [ 40] [Beng Market Beng LAO] +17:28:02 [ 49] [ 3] [418] +17:28:02 [ 52] [ 16] [8F4569422EC9DC11] +17:28:02 ============================================================================ +17:28:02 + + +waiting on router queue for slot.... +17:28:02 Sending to : +17:28:02 ============================================================================ +17:28:02 ============================================================================ +17:28:02 Slot Id : <297> +17:28:02 Transaction Type : REQUEST +17:28:02 Received From : +17:28:02 ============================================================================ +17:28:02 FNo. Len. Field Value +17:28:02 ============================================================================ +17:28:02 [ 1] [ 4] [0200] +17:28:02 [ 2] [ 16] [6688990040072561] +17:28:02 [ 3] [ 6] [012000] +17:28:02 [ 4] [ 12] [000100000000] +17:28:02 [ 7] [ 10] [0320172757] +17:28:02 [ 11] [ 6] [815676] +17:28:02 [ 12] [ 6] [172757] +17:28:02 [ 13] [ 4] [0320] +17:28:02 [ 15] [ 4] [0320] +17:28:02 [ 18] [ 4] [6011] +17:28:02 [ 22] [ 3] [900] +17:28:02 [ 25] [ 2] [02] +17:28:02 [ 28] [ 9] [D00002000] +17:28:02 [ 32] [ 6] [621354] +17:28:02 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:28:02 [ 37] [ 12] [507903499673] +17:28:02 [ 41] [ 8] [06002200] +17:28:02 [ 42] [ 15] [NATIVE ] +17:28:02 [ 43] [ 40] [Beng Market Beng LAO] +17:28:02 [ 49] [ 3] [418] +17:28:02 [ 52] [ 16] [ED280CF8FD8967F6] +17:28:02 ============================================================================ +17:28:02 + + +waiting on router queue for slot.... +17:28:02 Sending to : <4> +17:28:02 ============================================================================ +17:28:03 ============================================================================ +17:28:03 Slot Id : <325> +17:28:03 Transaction Type : RESPONSE +17:28:03 Received From : +17:28:03 ============================================================================ +17:28:03 FNo. Len. Field Value +17:28:03 ============================================================================ +17:28:03 [ 1] [ 4] [0210] +17:28:03 [ 2] [ 16] [6688990103109706] +17:28:03 [ 3] [ 6] [011000] +17:28:03 [ 4] [ 12] [000010000000] +17:28:03 [ 11] [ 6] [815668] +17:28:03 [ 12] [ 6] [172755] +17:28:03 [ 15] [ 4] [0320] +17:28:03 [ 18] [ 4] [6011] +17:28:03 [ 32] [ 6] [621354] +17:28:03 [ 35] [ 37] [6688990103109706=42121231970626600000] +17:28:03 [ 37] [ 12] [507902925829] +17:28:03 [ 38] [ 6] [036969] +17:28:03 [ 39] [ 2] [00] +17:28:03 [ 41] [ 8] [12001500] +17:28:03 [ 49] [ 3] [418] +17:28:03 [ 54] [ 20] [1002418C000007513216] +17:28:03 ============================================================================ +17:28:03 Calculate Source COMM Id = 0 +17:28:03 ============================================================================ +17:28:03 + + +waiting on router queue for slot.... +17:28:03 ============================================================================ +17:28:03 Slot Id : <297> +17:28:03 Transaction Type : RESPONSE +17:28:03 Received From : +17:28:03 ============================================================================ +17:28:03 FNo. Len. Field Value +17:28:03 ============================================================================ +17:28:03 [ 1] [ 4] [0210] +17:28:03 [ 2] [ 16] [6688990040072561] +17:28:03 [ 3] [ 6] [012000] +17:28:03 [ 4] [ 12] [000100000000] +17:28:03 [ 11] [ 6] [815676] +17:28:03 [ 12] [ 6] [172757] +17:28:03 [ 15] [ 4] [0320] +17:28:03 [ 18] [ 4] [6011] +17:28:03 [ 32] [ 6] [621354] +17:28:03 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:28:03 [ 37] [ 12] [507903499673] +17:28:03 [ 38] [ 6] [562721] +17:28:03 [ 39] [ 2] [00] +17:28:03 [ 41] [ 8] [06002200] +17:28:03 [ 49] [ 3] [418] +17:28:03 [ 54] [ 20] [2002418C000234579657] +17:28:03 ============================================================================ +17:28:03 Sending to : +17:28:03 ============================================================================ +17:28:03 + + +waiting on router queue for slot.... +17:28:05 ============================================================================ +17:28:05 Slot Id : <297> +17:28:05 Transaction Type : RESPONSE +17:28:05 Received From : +17:28:05 ============================================================================ +17:28:05 FNo. Len. Field Value +17:28:05 ============================================================================ +17:28:05 [ 1] [ 4] [0210] +17:28:05 [ 2] [ 16] [6688990040072561] +17:28:05 [ 3] [ 6] [012000] +17:28:05 [ 4] [ 12] [000100000000] +17:28:05 [ 11] [ 6] [815676] +17:28:05 [ 12] [ 6] [172757] +17:28:05 [ 15] [ 4] [0320] +17:28:05 [ 18] [ 4] [6011] +17:28:05 [ 32] [ 6] [621354] +17:28:05 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:28:05 [ 37] [ 12] [507903499673] +17:28:05 [ 38] [ 6] [562721] +17:28:05 [ 39] [ 2] [00] +17:28:05 [ 41] [ 8] [06002200] +17:28:05 [ 49] [ 3] [418] +17:28:05 [ 54] [ 20] [2002418C000234579657] +17:28:05 ============================================================================ +17:28:05 Calculate Source COMM Id = 0 +17:28:05 ============================================================================ +17:28:05 + + +waiting on router queue for slot.... +17:28:08 ============================================================================ +17:28:08 Slot Id : <315> +17:28:08 Transaction Type : REQUEST +17:28:08 Received From : +17:28:08 ============================================================================ +17:28:08 FNo. Len. Field Value +17:28:08 ============================================================================ +17:28:08 [ 1] [ 4] [0800] +17:28:08 [ 7] [ 10] [0320102713] +17:28:08 [ 11] [ 6] [157462] +17:28:08 [ 70] [ 3] [301] +17:28:08 ============================================================================ +17:28:08 + + +waiting on router queue for slot.... +17:28:08 Sending to : +17:28:08 ============================================================================ +17:28:08 ============================================================================ +17:28:08 Slot Id : <315> +17:28:08 Transaction Type : RESPONSE +17:28:08 Received From : +17:28:08 ============================================================================ +17:28:08 FNo. Len. Field Value +17:28:08 ============================================================================ +17:28:08 [ 1] [ 4] [0810] +17:28:08 [ 7] [ 10] [0320102713] +17:28:08 [ 11] [ 6] [157462] +17:28:08 [ 39] [ 2] [00] +17:28:08 [ 70] [ 3] [301] +17:28:08 ============================================================================ +17:28:08 Calculate Source COMM Id = 2 +17:28:08 ============================================================================ +17:28:08 + + +waiting on router queue for slot.... +17:28:22 ============================================================================ +17:28:22 Slot Id : <289> +17:28:22 Transaction Type : REQUEST +17:28:22 Received From : +17:28:22 ============================================================================ +17:28:22 FNo. Len. Field Value +17:28:22 ============================================================================ +17:28:22 [ 1] [ 4] [0800] +17:28:22 [ 7] [ 10] [0320102729] +17:28:22 [ 11] [ 6] [157463] +17:28:22 [ 70] [ 3] [301] +17:28:22 ============================================================================ +17:28:22 + + +waiting on router queue for slot.... +17:28:22 Sending to : +17:28:22 ============================================================================ +17:28:22 ============================================================================ +17:28:22 Slot Id : <289> +17:28:22 Transaction Type : RESPONSE +17:28:22 Received From : +17:28:22 ============================================================================ +17:28:22 FNo. Len. Field Value +17:28:22 ============================================================================ +17:28:22 [ 1] [ 4] [0810] +17:28:22 [ 7] [ 10] [0320102729] +17:28:22 [ 11] [ 6] [157463] +17:28:22 [ 39] [ 2] [00] +17:28:22 [ 70] [ 3] [301] +17:28:22 ============================================================================ +17:28:22 Calculate Source COMM Id = 2 +17:28:22 ============================================================================ +17:28:22 + + +waiting on router queue for slot.... +17:28:27 ============================================================================ +17:28:27 Slot Id : <304> +17:28:27 Transaction Type : REQUEST +17:28:27 Received From : +17:28:27 ============================================================================ +17:28:27 FNo. Len. Field Value +17:28:27 ============================================================================ +17:28:27 [ 1] [ 4] [0800] +17:28:27 [ 2] [ 5] [02531] +17:28:27 [ 3] [ 6] [579178] +17:28:27 [ 7] [ 10] [0320102827] +17:28:27 [ 11] [ 6] [807426] +17:28:27 [ 15] [ 10] [0320102827] +17:28:27 [ 37] [ 11] [57917807426] +17:28:27 [ 70] [ 3] [001] +17:28:27 ============================================================================ +17:28:27 + + +waiting on router queue for slot.... +17:28:27 ============================================================================ +17:28:27 Slot Id : <304> +17:28:27 Transaction Type : RESPONSE +17:28:27 Received From : +17:28:27 ============================================================================ +17:28:27 FNo. Len. Field Value +17:28:27 ============================================================================ +17:28:27 [ 1] [ 4] [0810] +17:28:27 [ 7] [ 10] [0320102827] +17:28:27 [ 11] [ 6] [807426] +17:28:27 [ 15] [ 4] [0320] +17:28:27 [ 37] [ 12] [57917807426] +17:28:27 [ 39] [ 2] [00] +17:28:27 [ 70] [ 3] [001] +17:28:27 ============================================================================ +17:28:27 Sending to : +17:28:27 ============================================================================ +17:28:27 + + +waiting on router queue for slot.... +17:28:33 ============================================================================ +17:28:33 Slot Id : <326> +17:28:33 Transaction Type : REQUEST +17:28:33 Received From : +17:28:33 ============================================================================ +17:28:33 FNo. Len. Field Value +17:28:33 ============================================================================ +17:28:33 [ 1] [ 4] [0800] +17:28:33 [ 7] [ 10] [0320102740] +17:28:33 [ 11] [ 6] [157464] +17:28:33 [ 70] [ 3] [301] +17:28:33 ============================================================================ +17:28:33 + + +waiting on router queue for slot.... +17:28:33 Sending to : +17:28:33 ============================================================================ +17:28:33 ============================================================================ +17:28:33 Slot Id : <326> +17:28:33 Transaction Type : RESPONSE +17:28:33 Received From : +17:28:33 ============================================================================ +17:28:33 FNo. Len. Field Value +17:28:33 ============================================================================ +17:28:33 [ 1] [ 4] [0810] +17:28:33 [ 7] [ 10] [0320102740] +17:28:33 [ 11] [ 6] [157464] +17:28:33 [ 39] [ 2] [00] +17:28:33 [ 70] [ 3] [301] +17:28:33 ============================================================================ +17:28:33 Calculate Source COMM Id = 2 +17:28:33 ============================================================================ +17:28:33 + + +waiting on router queue for slot.... +17:28:33 ============================================================================ +17:28:33 Slot Id : <285> +17:28:33 Transaction Type : REQUEST +17:28:33 Received From : +17:28:33 ============================================================================ +17:28:33 FNo. Len. Field Value +17:28:33 ============================================================================ +17:28:33 [ 1] [ 4] [0200] +17:28:33 [ 2] [ 16] [6213544002225875] +17:28:33 [ 3] [ 6] [011000] +17:28:33 [ 4] [ 12] [000050000000] +17:28:33 [ 7] [ 10] [0320172854] +17:28:33 [ 11] [ 6] [209575] +17:28:33 [ 12] [ 6] [172359] +17:28:33 [ 13] [ 4] [0320] +17:28:33 [ 14] [ 4] [4912] +17:28:33 [ 15] [ 4] [0320] +17:28:33 [ 18] [ 4] [6011] +17:28:33 [ 19] [ 3] [418] +17:28:33 [ 22] [ 3] [021] +17:28:33 [ 25] [ 2] [01] +17:28:33 [ 28] [ 9] [D00002000] +17:28:33 [ 32] [ 6] [198901] +17:28:33 [ 35] [ 32] [6213544002225875=491212012587175] +17:28:33 [ 37] [ 12] [507917209575] +17:28:33 [ 41] [ 8] [19529001] +17:28:33 [ 42] [ 15] [000000041952901] +17:28:33 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:28:33 [ 49] [ 3] [418] +17:28:33 [ 52] [ 16] [3744A048D574C3A6] +17:28:33 ============================================================================ +17:28:33 + + +waiting on router queue for slot.... +17:28:33 Sending to : +17:28:33 ============================================================================ +17:28:33 Sending to : +17:28:33 ============================================================================ +17:28:34 ============================================================================ +17:28:34 Slot Id : <285> +17:28:34 Transaction Type : REQUEST +17:28:34 Received From : +17:28:34 ============================================================================ +17:28:34 FNo. Len. Field Value +17:28:34 ============================================================================ +17:28:34 [ 1] [ 4] [0200] +17:28:34 [ 2] [ 16] [6213544002225875] +17:28:34 [ 3] [ 6] [011000] +17:28:34 [ 4] [ 12] [000050000000] +17:28:34 [ 7] [ 10] [0320172854] +17:28:34 [ 11] [ 6] [209575] +17:28:34 [ 12] [ 6] [172359] +17:28:34 [ 13] [ 4] [0320] +17:28:34 [ 14] [ 4] [4912] +17:28:34 [ 15] [ 4] [0320] +17:28:34 [ 18] [ 4] [6011] +17:28:34 [ 19] [ 3] [418] +17:28:34 [ 22] [ 3] [021] +17:28:34 [ 25] [ 2] [01] +17:28:34 [ 28] [ 9] [D00002000] +17:28:34 [ 32] [ 6] [198901] +17:28:34 [ 35] [ 32] [6213544002225875=491212012587175] +17:28:34 [ 37] [ 12] [507917209575] +17:28:34 [ 41] [ 8] [19529001] +17:28:34 [ 42] [ 15] [000000041952901] +17:28:34 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:28:34 [ 49] [ 3] [418] +17:28:34 [ 52] [ 16] [3744A048D574C3A6] +17:28:34 ============================================================================ +17:28:34 + + +waiting on router queue for slot.... +17:28:34 Sending to : +17:28:34 ============================================================================ +17:28:34 ============================================================================ +17:28:34 Slot Id : <285> +17:28:34 Transaction Type : REQUEST +17:28:34 Received From : +17:28:34 ============================================================================ +17:28:34 FNo. Len. Field Value +17:28:34 ============================================================================ +17:28:34 [ 1] [ 4] [0200] +17:28:34 [ 2] [ 16] [6213544002225875] +17:28:34 [ 3] [ 6] [011000] +17:28:34 [ 4] [ 12] [000050000000] +17:28:34 [ 7] [ 10] [0320172854] +17:28:34 [ 11] [ 6] [209575] +17:28:34 [ 12] [ 6] [172359] +17:28:34 [ 13] [ 4] [0320] +17:28:34 [ 14] [ 4] [4912] +17:28:34 [ 15] [ 4] [0320] +17:28:34 [ 18] [ 4] [6011] +17:28:34 [ 19] [ 3] [418] +17:28:34 [ 22] [ 3] [021] +17:28:34 [ 25] [ 2] [01] +17:28:34 [ 28] [ 9] [D00002000] +17:28:34 [ 32] [ 6] [198901] +17:28:34 [ 35] [ 32] [6213544002225875=491212012587175] +17:28:34 [ 37] [ 12] [507917209575] +17:28:34 [ 41] [ 8] [19529001] +17:28:34 [ 42] [ 15] [000000041952901] +17:28:34 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:28:34 [ 49] [ 3] [418] +17:28:34 [ 52] [ 16] [F78C3408D7271A4B] +17:28:34 ============================================================================ +17:28:34 + + +waiting on router queue for slot.... +17:28:34 Sending to : <0> +17:28:34 ============================================================================ +17:28:35 ============================================================================ +17:28:35 Slot Id : <285> +17:28:35 Transaction Type : RESPONSE +17:28:35 Received From : +17:28:35 ============================================================================ +17:28:35 FNo. Len. Field Value +17:28:35 ============================================================================ +17:28:35 [ 1] [ 4] [0210] +17:28:35 [ 2] [ 16] [6213544002225875] +17:28:35 [ 3] [ 6] [011000] +17:28:35 [ 4] [ 12] [000050000000] +17:28:35 [ 7] [ 10] [0320172854] +17:28:35 [ 11] [ 6] [209575] +17:28:35 [ 12] [ 6] [172359] +17:28:35 [ 13] [ 4] [0320] +17:28:35 [ 15] [ 4] [0320] +17:28:35 [ 18] [ 4] [6011] +17:28:35 [ 19] [ 3] [418] +17:28:35 [ 32] [ 6] [198901] +17:28:35 [ 35] [ 32] [6213544002225875=491212012587175] +17:28:35 [ 37] [ 12] [507917209575] +17:28:35 [ 38] [ 6] [374109] +17:28:35 [ 39] [ 2] [00] +17:28:35 [ 41] [ 8] [19529001] +17:28:35 [ 49] [ 3] [418] +17:28:35 [ 54] [ 40] [1001418C0000077673081002418C000007767308] +17:28:35 ============================================================================ +17:28:35 Sending to : +17:28:35 ============================================================================ +17:28:35 + + +waiting on router queue for slot.... +17:28:36 ============================================================================ +17:28:36 Slot Id : <291> +17:28:36 Transaction Type : REQUEST +17:28:36 Received From : +17:28:36 ============================================================================ +17:28:36 FNo. Len. Field Value +17:28:36 ============================================================================ +17:28:36 [ 1] [ 4] [0800] +17:28:36 [ 7] [ 10] [0321004025] +17:28:36 [ 11] [ 6] [174025] +17:28:36 [ 37] [ 12] [57917174025] +17:28:36 [ 70] [ 3] [301] +17:28:36 ============================================================================ +17:28:36 + + +waiting on router queue for slot.... +17:28:36 Sending to : +17:28:36 ============================================================================ +17:28:36 ============================================================================ +17:28:36 Slot Id : <291> +17:28:36 Transaction Type : RESPONSE +17:28:36 Received From : +17:28:36 ============================================================================ +17:28:36 FNo. Len. Field Value +17:28:36 ============================================================================ +17:28:36 [ 1] [ 4] [0810] +17:28:36 [ 7] [ 10] [0321004025] +17:28:36 [ 11] [ 6] [174025] +17:28:36 [ 37] [ 12] [579171740250] +17:28:36 [ 39] [ 2] [00] +17:28:36 [ 70] [ 3] [810] +17:28:36 ============================================================================ +17:28:36 Calculate Source COMM Id = 6 +17:28:36 ============================================================================ +17:28:36 + + +waiting on router queue for slot.... +17:28:36 ============================================================================ +17:28:36 Slot Id : <285> +17:28:36 Transaction Type : RESPONSE +17:28:36 Received From : +17:28:36 ============================================================================ +17:28:36 FNo. Len. Field Value +17:28:36 ============================================================================ +17:28:36 [ 1] [ 4] [0210] +17:28:36 [ 2] [ 16] [6213544002225875] +17:28:36 [ 3] [ 6] [011000] +17:28:36 [ 4] [ 12] [000050000000] +17:28:36 [ 7] [ 10] [0320172854] +17:28:36 [ 11] [ 6] [209575] +17:28:36 [ 12] [ 6] [172359] +17:28:36 [ 13] [ 4] [0320] +17:28:36 [ 15] [ 4] [0320] +17:28:36 [ 18] [ 4] [6011] +17:28:36 [ 19] [ 3] [418] +17:28:36 [ 32] [ 6] [198901] +17:28:36 [ 35] [ 32] [6213544002225875=491212012587175] +17:28:36 [ 37] [ 12] [507917209575] +17:28:36 [ 38] [ 6] [374109] +17:28:36 [ 39] [ 2] [00] +17:28:36 [ 41] [ 8] [19529001] +17:28:36 [ 49] [ 3] [418] +17:28:36 [ 54] [ 40] [1001418C0000077673081002418C000007767308] +17:28:36 ============================================================================ +17:28:36 Calculate Source COMM Id = 5 +17:28:36 ============================================================================ +17:28:36 + + +waiting on router queue for slot.... +17:28:40 ============================================================================ +17:28:40 Slot Id : <327> +17:28:40 Transaction Type : REQUEST +17:28:40 Received From : +17:28:40 ============================================================================ +17:28:40 FNo. Len. Field Value +17:28:40 ============================================================================ +17:28:40 [ 1] [ 4] [0200] +17:28:40 [ 2] [ 16] [6688990103528608] +17:28:40 [ 3] [ 6] [300000] +17:28:40 [ 4] [ 12] [000000000000] +17:28:40 [ 7] [ 10] [0320172836] +17:28:40 [ 11] [ 6] [815835] +17:28:40 [ 12] [ 6] [172836] +17:28:40 [ 13] [ 4] [0320] +17:28:40 [ 15] [ 4] [0320] +17:28:40 [ 18] [ 4] [6011] +17:28:40 [ 22] [ 3] [900] +17:28:40 [ 25] [ 2] [02] +17:28:40 [ 28] [ 9] [D00000000] +17:28:41 [ 32] [ 6] [621354] +17:28:41 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:28:41 [ 37] [ 12] [507903489481] +17:28:41 [ 41] [ 8] [06002100] +17:28:41 [ 42] [ 15] [NATIVE ] +17:28:41 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:28:41 [ 49] [ 3] [418] +17:28:41 [ 52] [ 16] [7D80129F3F4E39ED] +17:28:41 ============================================================================ +17:28:41 + + +waiting on router queue for slot.... +17:28:41 Sending to : +17:28:41 ============================================================================ +17:28:41 Sending to : +17:28:41 ============================================================================ +17:28:41 ============================================================================ +17:28:41 Slot Id : <327> +17:28:41 Transaction Type : REQUEST +17:28:41 Received From : +17:28:41 ============================================================================ +17:28:41 FNo. Len. Field Value +17:28:41 ============================================================================ +17:28:41 [ 1] [ 4] [0200] +17:28:41 [ 2] [ 16] [6688990103528608] +17:28:41 [ 3] [ 6] [300000] +17:28:41 [ 4] [ 12] [000000000000] +17:28:41 [ 7] [ 10] [0320172836] +17:28:41 [ 11] [ 6] [815835] +17:28:41 [ 12] [ 6] [172836] +17:28:41 [ 13] [ 4] [0320] +17:28:41 [ 15] [ 4] [0320] +17:28:41 [ 18] [ 4] [6011] +17:28:41 [ 22] [ 3] [900] +17:28:41 [ 25] [ 2] [02] +17:28:41 [ 28] [ 9] [D00000000] +17:28:41 [ 32] [ 6] [621354] +17:28:41 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:28:41 [ 37] [ 12] [507903489481] +17:28:41 [ 41] [ 8] [06002100] +17:28:41 [ 42] [ 15] [NATIVE ] +17:28:41 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:28:41 [ 49] [ 3] [418] +17:28:41 [ 52] [ 16] [7D80129F3F4E39ED] +17:28:41 ============================================================================ +17:28:41 + + +waiting on router queue for slot.... +17:28:41 Sending to : +17:28:41 ============================================================================ +17:28:41 ============================================================================ +17:28:41 Slot Id : <327> +17:28:41 Transaction Type : REQUEST +17:28:41 Received From : +17:28:41 ============================================================================ +17:28:41 FNo. Len. Field Value +17:28:41 ============================================================================ +17:28:41 [ 1] [ 4] [0200] +17:28:41 [ 2] [ 16] [6688990103528608] +17:28:41 [ 3] [ 6] [300000] +17:28:41 [ 4] [ 12] [000000000000] +17:28:41 [ 7] [ 10] [0320172836] +17:28:41 [ 11] [ 6] [815835] +17:28:41 [ 12] [ 6] [172836] +17:28:41 [ 13] [ 4] [0320] +17:28:41 [ 15] [ 4] [0320] +17:28:41 [ 18] [ 4] [6011] +17:28:41 [ 22] [ 3] [900] +17:28:41 [ 25] [ 2] [02] +17:28:41 [ 28] [ 9] [D00000000] +17:28:41 [ 32] [ 6] [621354] +17:28:41 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:28:41 [ 37] [ 12] [507903489481] +17:28:41 [ 41] [ 8] [06002100] +17:28:41 [ 42] [ 15] [NATIVE ] +17:28:41 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:28:41 [ 49] [ 3] [418] +17:28:41 [ 52] [ 16] [969CFA9A1BA5B06D] +17:28:41 ============================================================================ +17:28:41 + + +waiting on router queue for slot.... +17:28:41 Sending to : <4> +17:28:41 ============================================================================ +17:28:42 ============================================================================ +17:28:42 Slot Id : <327> +17:28:42 Transaction Type : RESPONSE +17:28:42 Received From : +17:28:42 ============================================================================ +17:28:42 FNo. Len. Field Value +17:28:42 ============================================================================ +17:28:42 [ 1] [ 4] [0210] +17:28:42 [ 2] [ 16] [6688990103528608] +17:28:42 [ 3] [ 6] [300000] +17:28:42 [ 4] [ 12] [000000000000] +17:28:42 [ 11] [ 6] [815835] +17:28:42 [ 12] [ 6] [172836] +17:28:42 [ 15] [ 4] [0320] +17:28:42 [ 18] [ 4] [6011] +17:28:42 [ 32] [ 6] [621354] +17:28:42 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:28:42 [ 37] [ 12] [507903489481] +17:28:42 [ 38] [ 6] [154164] +17:28:42 [ 39] [ 2] [00] +17:28:42 [ 41] [ 8] [06002100] +17:28:42 [ 49] [ 3] [418] +17:28:42 [ 54] [ 20] [0002418C000136685122] +17:28:42 ============================================================================ +17:28:42 Sending to : +17:28:42 ============================================================================ +17:28:42 + + +waiting on router queue for slot.... +17:28:43 ============================================================================ +17:28:43 Slot Id : <301> +17:28:43 Transaction Type : REQUEST +17:28:43 Received From : +17:28:43 ============================================================================ +17:28:43 FNo. Len. Field Value +17:28:43 ============================================================================ +17:28:43 [ 1] [ 4] [0200] +17:28:43 [ 2] [ 16] [6213543000192632] +17:28:43 [ 3] [ 6] [011000] +17:28:43 [ 4] [ 12] [000004000000] +17:28:43 [ 7] [ 10] [0320102749] +17:28:43 [ 11] [ 6] [270867] +17:28:43 [ 12] [ 6] [172749] +17:28:43 [ 13] [ 4] [0320] +17:28:43 [ 14] [ 4] [4912] +17:28:43 [ 15] [ 4] [0320] +17:28:43 [ 18] [ 4] [6011] +17:28:43 [ 19] [ 3] [418] +17:28:43 [ 22] [ 3] [021] +17:28:43 [ 25] [ 2] [01] +17:28:43 [ 28] [ 9] [D00002000] +17:28:43 [ 32] [ 6] [180893] +17:28:43 [ 35] [ 32] [6213543000192632=491212019263856] +17:28:43 [ 37] [ 12] [507910270867] +17:28:43 [ 41] [ 8] [0104NUOL] +17:28:43 [ 42] [ 15] [999999 ] +17:28:43 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +17:28:43 [ 49] [ 3] [418] +17:28:43 [ 52] [ 16] [0231E9AF208C8710] +17:28:43 ============================================================================ +17:28:43 + + +waiting on router queue for slot.... +17:28:43 Sending to : +17:28:43 ============================================================================ +17:28:43 Sending to : +17:28:43 ============================================================================ +17:28:43 ============================================================================ +17:28:43 Slot Id : <301> +17:28:43 Transaction Type : REQUEST +17:28:43 Received From : +17:28:43 ============================================================================ +17:28:43 FNo. Len. Field Value +17:28:43 ============================================================================ +17:28:43 [ 1] [ 4] [0200] +17:28:43 [ 2] [ 16] [6213543000192632] +17:28:43 [ 3] [ 6] [011000] +17:28:43 [ 4] [ 12] [000004000000] +17:28:43 [ 7] [ 10] [0320102749] +17:28:43 [ 11] [ 6] [270867] +17:28:43 [ 12] [ 6] [172749] +17:28:43 [ 13] [ 4] [0320] +17:28:43 [ 14] [ 4] [4912] +17:28:43 [ 15] [ 4] [0320] +17:28:43 [ 18] [ 4] [6011] +17:28:43 [ 19] [ 3] [418] +17:28:43 [ 22] [ 3] [021] +17:28:43 [ 25] [ 2] [01] +17:28:43 [ 28] [ 9] [D00002000] +17:28:43 [ 32] [ 6] [180893] +17:28:43 [ 35] [ 32] [6213543000192632=491212019263856] +17:28:43 [ 37] [ 12] [507910270867] +17:28:43 [ 41] [ 8] [0104NUOL] +17:28:43 [ 42] [ 15] [999999 ] +17:28:43 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +17:28:43 [ 49] [ 3] [418] +17:28:43 [ 52] [ 16] [0231E9AF208C8710] +17:28:43 ============================================================================ +17:28:43 + + +waiting on router queue for slot.... +17:28:43 Sending to : +17:28:43 ============================================================================ +17:28:43 ============================================================================ +17:28:43 Slot Id : <301> +17:28:43 Transaction Type : REQUEST +17:28:43 Received From : +17:28:43 ============================================================================ +17:28:43 FNo. Len. Field Value +17:28:43 ============================================================================ +17:28:43 [ 1] [ 4] [0200] +17:28:43 [ 2] [ 16] [6213543000192632] +17:28:43 [ 3] [ 6] [011000] +17:28:43 [ 4] [ 12] [000004000000] +17:28:43 [ 7] [ 10] [0320102749] +17:28:43 [ 11] [ 6] [270867] +17:28:43 [ 12] [ 6] [172749] +17:28:43 [ 13] [ 4] [0320] +17:28:43 [ 14] [ 4] [4912] +17:28:43 [ 15] [ 4] [0320] +17:28:43 [ 18] [ 4] [6011] +17:28:43 [ 19] [ 3] [418] +17:28:43 [ 22] [ 3] [021] +17:28:43 [ 25] [ 2] [01] +17:28:43 [ 28] [ 9] [D00002000] +17:28:43 [ 32] [ 6] [180893] +17:28:43 [ 35] [ 32] [6213543000192632=491212019263856] +17:28:43 [ 37] [ 12] [507910270867] +17:28:43 [ 41] [ 8] [0104NUOL] +17:28:43 [ 42] [ 15] [999999 ] +17:28:43 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +17:28:43 [ 49] [ 3] [418] +17:28:43 [ 52] [ 16] [64AE1898D9B7D140] +17:28:43 ============================================================================ +17:28:43 + + +waiting on router queue for slot.... +17:28:43 Sending to : <0> +17:28:43 ============================================================================ +17:28:43 ============================================================================ +17:28:43 Slot Id : <327> +17:28:43 Transaction Type : RESPONSE +17:28:43 Received From : +17:28:43 ============================================================================ +17:28:43 FNo. Len. Field Value +17:28:43 ============================================================================ +17:28:43 [ 1] [ 4] [0210] +17:28:43 [ 2] [ 16] [6688990103528608] +17:28:43 [ 3] [ 6] [300000] +17:28:43 [ 4] [ 12] [000000000000] +17:28:43 [ 11] [ 6] [815835] +17:28:43 [ 12] [ 6] [172836] +17:28:43 [ 15] [ 4] [0320] +17:28:43 [ 18] [ 4] [6011] +17:28:43 [ 32] [ 6] [621354] +17:28:43 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:28:43 [ 37] [ 12] [507903489481] +17:28:43 [ 38] [ 6] [154164] +17:28:43 [ 39] [ 2] [00] +17:28:43 [ 41] [ 8] [06002100] +17:28:43 [ 49] [ 3] [418] +17:28:43 [ 54] [ 20] [0002418C000136685122] +17:28:43 ============================================================================ +17:28:43 Calculate Source COMM Id = 0 +17:28:43 ============================================================================ +17:28:43 + + +waiting on router queue for slot.... +17:28:44 ============================================================================ +17:28:44 Slot Id : <301> +17:28:44 Transaction Type : RESPONSE +17:28:44 Received From : +17:28:44 ============================================================================ +17:28:44 FNo. Len. Field Value +17:28:44 ============================================================================ +17:28:44 [ 1] [ 4] [0210] +17:28:44 [ 2] [ 16] [6213543000192632] +17:28:44 [ 3] [ 6] [011000] +17:28:44 [ 4] [ 12] [000004000000] +17:28:44 [ 7] [ 10] [0320102749] +17:28:44 [ 11] [ 6] [270867] +17:28:44 [ 12] [ 6] [172749] +17:28:44 [ 13] [ 4] [0320] +17:28:44 [ 15] [ 4] [0320] +17:28:44 [ 18] [ 4] [6011] +17:28:44 [ 19] [ 3] [418] +17:28:44 [ 32] [ 6] [180893] +17:28:44 [ 35] [ 32] [6213543000192632=491212019263856] +17:28:44 [ 37] [ 12] [507910270867] +17:28:44 [ 38] [ 6] [593141] +17:28:44 [ 39] [ 2] [00] +17:28:44 [ 41] [ 8] [0104NUOL] +17:28:44 [ 49] [ 3] [418] +17:28:44 [ 54] [ 40] [1001418C0000054058801002418C000005405880] +17:28:44 ============================================================================ +17:28:44 Sending to : +17:28:44 ============================================================================ +17:28:44 + + +waiting on router queue for slot.... +17:28:44 ============================================================================ +17:28:44 Slot Id : <331> +17:28:44 Transaction Type : REQUEST +17:28:44 Received From : +17:28:44 ============================================================================ +17:28:44 FNo. Len. Field Value +17:28:44 ============================================================================ +17:28:44 [ 1] [ 4] [0800] +17:28:44 [ 7] [ 10] [0320102751] +17:28:44 [ 11] [ 6] [157465] +17:28:44 [ 70] [ 3] [301] +17:28:44 ============================================================================ +17:28:44 + + +waiting on router queue for slot.... +17:28:44 Sending to : +17:28:44 ============================================================================ +17:28:44 ============================================================================ +17:28:44 Slot Id : <331> +17:28:44 Transaction Type : RESPONSE +17:28:44 Received From : +17:28:44 ============================================================================ +17:28:44 FNo. Len. Field Value +17:28:44 ============================================================================ +17:28:44 [ 1] [ 4] [0810] +17:28:44 [ 7] [ 10] [0320102751] +17:28:44 [ 11] [ 6] [157465] +17:28:44 [ 39] [ 2] [00] +17:28:44 [ 70] [ 3] [301] +17:28:44 ============================================================================ +17:28:44 Calculate Source COMM Id = 2 +17:28:44 ============================================================================ +17:28:44 + + +waiting on router queue for slot.... +17:28:44 ============================================================================ +17:28:44 Slot Id : <305> +17:28:44 Transaction Type : REQUEST +17:28:44 Received From : +17:28:44 ============================================================================ +17:28:44 FNo. Len. Field Value +17:28:44 ============================================================================ +17:28:44 [ 1] [ 4] [0200] +17:28:44 [ 2] [ 16] [6213544000982022] +17:28:44 [ 3] [ 6] [301000] +17:28:44 [ 4] [ 12] [000000000000] +17:28:44 [ 7] [ 10] [0320172634] +17:28:44 [ 11] [ 6] [953482] +17:28:44 [ 12] [ 6] [172634] +17:28:44 [ 13] [ 4] [0320] +17:28:44 [ 15] [ 4] [0320] +17:28:44 [ 18] [ 4] [6011] +17:28:44 [ 19] [ 3] [418] +17:28:44 [ 22] [ 3] [021] +17:28:44 [ 25] [ 2] [01] +17:28:44 [ 28] [ 9] [D00000000] +17:28:44 [ 32] [ 6] [668899] +17:28:44 [ 35] [ 32] [6213544000982022=491212018202512] +17:28:44 [ 37] [ 12] [507901028125] +17:28:44 [ 41] [ 8] [03310002] +17:28:44 [ 42] [ 15] [APT ] +17:28:44 [ 43] [ 40] [ KEOOUDOM KEOOUDOM KEO] +17:28:44 [ 49] [ 3] [418] +17:28:44 [ 52] [ 16] [CE0E178929049FB6] +17:28:44 ============================================================================ +17:28:44 + + +waiting on router queue for slot.... +17:28:44 Sending to : +17:28:44 ============================================================================ +17:28:44 Sending to : +17:28:44 ============================================================================ +17:28:44 ============================================================================ +17:28:44 Slot Id : <305> +17:28:44 Transaction Type : REQUEST +17:28:44 Received From : +17:28:44 ============================================================================ +17:28:44 FNo. Len. Field Value +17:28:44 ============================================================================ +17:28:44 [ 1] [ 4] [0200] +17:28:44 [ 2] [ 16] [6213544000982022] +17:28:44 [ 3] [ 6] [301000] +17:28:44 [ 4] [ 12] [000000000000] +17:28:44 [ 7] [ 10] [0320172634] +17:28:44 [ 11] [ 6] [953482] +17:28:44 [ 12] [ 6] [172634] +17:28:44 [ 13] [ 4] [0320] +17:28:44 [ 15] [ 4] [0320] +17:28:44 [ 18] [ 4] [6011] +17:28:44 [ 19] [ 3] [418] +17:28:44 [ 22] [ 3] [021] +17:28:44 [ 25] [ 2] [01] +17:28:44 [ 28] [ 9] [D00000000] +17:28:44 [ 32] [ 6] [668899] +17:28:44 [ 35] [ 32] [6213544000982022=491212018202512] +17:28:44 [ 37] [ 12] [507901028125] +17:28:44 [ 41] [ 8] [03310002] +17:28:44 [ 42] [ 15] [APT ] +17:28:44 [ 43] [ 40] [ KEOOUDOM KEOOUDOM KEO] +17:28:44 [ 49] [ 3] [418] +17:28:44 [ 52] [ 16] [CE0E178929049FB6] +17:28:44 ============================================================================ +17:28:44 + + +waiting on router queue for slot.... +17:28:44 Sending to : +17:28:44 ============================================================================ +17:28:44 ============================================================================ +17:28:44 Slot Id : <305> +17:28:44 Transaction Type : REQUEST +17:28:44 Received From : +17:28:44 ============================================================================ +17:28:44 FNo. Len. Field Value +17:28:44 ============================================================================ +17:28:44 [ 1] [ 4] [0200] +17:28:44 [ 2] [ 16] [6213544000982022] +17:28:44 [ 3] [ 6] [301000] +17:28:44 [ 4] [ 12] [000000000000] +17:28:44 [ 7] [ 10] [0320172634] +17:28:44 [ 11] [ 6] [953482] +17:28:44 [ 12] [ 6] [172634] +17:28:44 [ 13] [ 4] [0320] +17:28:44 [ 15] [ 4] [0320] +17:28:44 [ 18] [ 4] [6011] +17:28:44 [ 19] [ 3] [418] +17:28:44 [ 22] [ 3] [021] +17:28:44 [ 25] [ 2] [01] +17:28:44 [ 28] [ 9] [D00000000] +17:28:44 [ 32] [ 6] [668899] +17:28:44 [ 35] [ 32] [6213544000982022=491212018202512] +17:28:44 [ 37] [ 12] [507901028125] +17:28:44 [ 41] [ 8] [03310002] +17:28:44 [ 42] [ 15] [APT ] +17:28:44 [ 43] [ 40] [ KEOOUDOM KEOOUDOM KEO] +17:28:44 [ 49] [ 3] [418] +17:28:44 [ 52] [ 16] [9A98D8AF9BF4895D] +17:28:44 ============================================================================ +17:28:44 + + +waiting on router queue for slot.... +17:28:44 Sending to : <0> +17:28:44 ============================================================================ +17:28:44 ============================================================================ +17:28:44 Slot Id : <305> +17:28:44 Transaction Type : RESPONSE +17:28:44 Received From : +17:28:44 ============================================================================ +17:28:44 FNo. Len. Field Value +17:28:44 ============================================================================ +17:28:44 [ 1] [ 4] [0210] +17:28:44 [ 2] [ 16] [6213544000982022] +17:28:44 [ 3] [ 6] [301000] +17:28:44 [ 4] [ 12] [000000000000] +17:28:44 [ 7] [ 10] [0320172634] +17:28:44 [ 11] [ 6] [953482] +17:28:44 [ 12] [ 6] [172634] +17:28:44 [ 13] [ 4] [0320] +17:28:44 [ 15] [ 4] [0320] +17:28:44 [ 18] [ 4] [6011] +17:28:44 [ 19] [ 3] [418] +17:28:44 [ 22] [ 3] [021] +17:28:44 [ 32] [ 6] [668899] +17:28:44 [ 35] [ 32] [6213544000982022=491212018202512] +17:28:44 [ 37] [ 12] [507901028125] +17:28:44 [ 38] [ 6] [172840] +17:28:44 [ 39] [ 2] [55] +17:28:44 [ 41] [ 8] [03310002] +17:28:44 [ 49] [ 3] [418] +17:28:44 ============================================================================ +17:28:44 Sending to : +17:28:44 ============================================================================ +17:28:44 + + +waiting on router queue for slot.... +17:28:45 ============================================================================ +17:28:45 Slot Id : <301> +17:28:45 Transaction Type : RESPONSE +17:28:45 Received From : +17:28:45 ============================================================================ +17:28:45 FNo. Len. Field Value +17:28:45 ============================================================================ +17:28:45 [ 1] [ 4] [0210] +17:28:45 [ 2] [ 16] [6213543000192632] +17:28:45 [ 3] [ 6] [011000] +17:28:45 [ 4] [ 12] [000004000000] +17:28:45 [ 7] [ 10] [0320102749] +17:28:45 [ 11] [ 6] [270867] +17:28:45 [ 12] [ 6] [172749] +17:28:45 [ 13] [ 4] [0320] +17:28:45 [ 15] [ 4] [0320] +17:28:45 [ 18] [ 4] [6011] +17:28:45 [ 19] [ 3] [418] +17:28:45 [ 32] [ 6] [180893] +17:28:45 [ 35] [ 32] [6213543000192632=491212019263856] +17:28:45 [ 37] [ 12] [507910270867] +17:28:45 [ 38] [ 6] [593141] +17:28:45 [ 39] [ 2] [00] +17:28:45 [ 41] [ 8] [0104NUOL] +17:28:45 [ 49] [ 3] [418] +17:28:45 [ 54] [ 40] [1001418C0000054058801002418C000005405880] +17:28:45 ============================================================================ +17:28:45 Calculate Source COMM Id = 2 +17:28:45 ============================================================================ +17:28:45 + + +waiting on router queue for slot.... +17:28:45 ============================================================================ +17:28:45 Slot Id : <302> +17:28:45 Transaction Type : REQUEST +17:28:45 Received From : +17:28:45 ============================================================================ +17:28:45 FNo. Len. Field Value +17:28:45 ============================================================================ +17:28:45 [ 1] [ 4] [0200] +17:28:45 [ 2] [ 16] [6213542000049446] +17:28:45 [ 3] [ 6] [010000] +17:28:45 [ 4] [ 12] [000030000000] +17:28:45 [ 7] [ 10] [0320172635] +17:28:45 [ 11] [ 6] [953485] +17:28:45 [ 12] [ 6] [172635] +17:28:45 [ 13] [ 4] [0320] +17:28:45 [ 15] [ 4] [0320] +17:28:45 [ 18] [ 4] [6011] +17:28:45 [ 19] [ 3] [418] +17:28:45 [ 22] [ 3] [021] +17:28:45 [ 25] [ 2] [01] +17:28:45 [ 28] [ 9] [D00002000] +17:28:45 [ 32] [ 6] [668899] +17:28:45 [ 35] [ 32] [6213542000049446=491212014944490] +17:28:45 [ 37] [ 12] [507900146831] +17:28:45 [ 41] [ 8] [03020005] +17:28:45 [ 42] [ 15] [APT ] +17:28:45 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +17:28:45 [ 49] [ 3] [418] +17:28:45 [ 52] [ 16] [B572EFDD435E870C] +17:28:45 ============================================================================ +17:28:45 + + +waiting on router queue for slot.... +17:28:45 Sending to : +17:28:45 ============================================================================ +17:28:45 Sending to : +17:28:45 ============================================================================ +17:28:46 ============================================================================ +17:28:46 Slot Id : <302> +17:28:46 Transaction Type : REQUEST +17:28:46 Received From : +17:28:46 ============================================================================ +17:28:46 FNo. Len. Field Value +17:28:46 ============================================================================ +17:28:46 [ 1] [ 4] [0200] +17:28:46 [ 2] [ 16] [6213542000049446] +17:28:46 [ 3] [ 6] [010000] +17:28:46 [ 4] [ 12] [000030000000] +17:28:46 [ 7] [ 10] [0320172635] +17:28:46 [ 11] [ 6] [953485] +17:28:46 [ 12] [ 6] [172635] +17:28:46 [ 13] [ 4] [0320] +17:28:46 [ 15] [ 4] [0320] +17:28:46 [ 18] [ 4] [6011] +17:28:46 [ 19] [ 3] [418] +17:28:46 [ 22] [ 3] [021] +17:28:46 [ 25] [ 2] [01] +17:28:46 [ 28] [ 9] [D00002000] +17:28:46 [ 32] [ 6] [668899] +17:28:46 [ 35] [ 32] [6213542000049446=491212014944490] +17:28:46 [ 37] [ 12] [507900146831] +17:28:46 [ 41] [ 8] [03020005] +17:28:46 [ 42] [ 15] [APT ] +17:28:46 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +17:28:46 [ 49] [ 3] [418] +17:28:46 [ 52] [ 16] [B572EFDD435E870C] +17:28:46 ============================================================================ +17:28:46 + + +waiting on router queue for slot.... +17:28:46 Sending to : +17:28:46 ============================================================================ +17:28:46 ============================================================================ +17:28:46 Slot Id : <302> +17:28:46 Transaction Type : REQUEST +17:28:46 Received From : +17:28:46 ============================================================================ +17:28:46 FNo. Len. Field Value +17:28:46 ============================================================================ +17:28:46 [ 1] [ 4] [0200] +17:28:46 [ 2] [ 16] [6213542000049446] +17:28:46 [ 3] [ 6] [010000] +17:28:46 [ 4] [ 12] [000030000000] +17:28:46 [ 7] [ 10] [0320172635] +17:28:46 [ 11] [ 6] [953485] +17:28:46 [ 12] [ 6] [172635] +17:28:46 [ 13] [ 4] [0320] +17:28:46 [ 15] [ 4] [0320] +17:28:46 [ 18] [ 4] [6011] +17:28:46 [ 19] [ 3] [418] +17:28:46 [ 22] [ 3] [021] +17:28:46 [ 25] [ 2] [01] +17:28:46 [ 28] [ 9] [D00002000] +17:28:46 [ 32] [ 6] [668899] +17:28:46 [ 35] [ 32] [6213542000049446=491212014944490] +17:28:46 [ 37] [ 12] [507900146831] +17:28:46 [ 41] [ 8] [03020005] +17:28:46 [ 42] [ 15] [APT ] +17:28:46 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +17:28:46 [ 49] [ 3] [418] +17:28:46 [ 52] [ 16] [84ABA4766EF85A85] +17:28:46 ============================================================================ +17:28:46 + + +waiting on router queue for slot.... +17:28:46 Sending to : <0> +17:28:46 ============================================================================ +17:28:46 ============================================================================ +17:28:46 Slot Id : <305> +17:28:46 Transaction Type : RESPONSE +17:28:46 Received From : +17:28:46 ============================================================================ +17:28:46 FNo. Len. Field Value +17:28:46 ============================================================================ +17:28:46 [ 1] [ 4] [0210] +17:28:46 [ 2] [ 16] [6213544000982022] +17:28:46 [ 3] [ 6] [301000] +17:28:46 [ 4] [ 12] [000000000000] +17:28:46 [ 7] [ 10] [0320172634] +17:28:46 [ 11] [ 6] [953482] +17:28:46 [ 12] [ 6] [172634] +17:28:46 [ 13] [ 4] [0320] +17:28:46 [ 15] [ 4] [0320] +17:28:46 [ 18] [ 4] [6011] +17:28:46 [ 19] [ 3] [418] +17:28:46 [ 22] [ 3] [021] +17:28:46 [ 32] [ 6] [668899] +17:28:46 [ 35] [ 32] [6213544000982022=491212018202512] +17:28:46 [ 37] [ 12] [507901028125] +17:28:46 [ 38] [ 6] [172840] +17:28:46 [ 39] [ 2] [55] +17:28:46 [ 41] [ 8] [03310002] +17:28:46 [ 49] [ 3] [418] +17:28:46 ============================================================================ +17:28:46 Calculate Source COMM Id = 4 +17:28:46 ============================================================================ +17:28:46 + + +waiting on router queue for slot.... +17:28:47 ============================================================================ +17:28:47 Slot Id : <302> +17:28:47 Transaction Type : RESPONSE +17:28:47 Received From : +17:28:47 ============================================================================ +17:28:47 FNo. Len. Field Value +17:28:47 ============================================================================ +17:28:47 [ 1] [ 4] [0210] +17:28:47 [ 2] [ 16] [6213542000049446] +17:28:47 [ 3] [ 6] [010000] +17:28:47 [ 4] [ 12] [000030000000] +17:28:47 [ 7] [ 10] [0320172635] +17:28:47 [ 11] [ 6] [953485] +17:28:47 [ 12] [ 6] [172635] +17:28:47 [ 13] [ 4] [0320] +17:28:47 [ 15] [ 4] [0320] +17:28:47 [ 18] [ 4] [6011] +17:28:47 [ 19] [ 3] [418] +17:28:47 [ 32] [ 6] [668899] +17:28:47 [ 35] [ 32] [6213542000049446=491212014944490] +17:28:47 [ 37] [ 12] [507900146831] +17:28:47 [ 38] [ 6] [112083] +17:28:47 [ 39] [ 2] [00] +17:28:47 [ 41] [ 8] [03020005] +17:28:47 [ 49] [ 3] [418] +17:28:47 [ 54] [ 40] [0001418C0003119882660002418C000311988266] +17:28:47 ============================================================================ +17:28:47 Sending to : +17:28:47 ============================================================================ +17:28:47 + + +waiting on router queue for slot.... +17:28:49 ============================================================================ +17:28:49 Slot Id : <302> +17:28:49 Transaction Type : RESPONSE +17:28:49 Received From : +17:28:49 ============================================================================ +17:28:49 FNo. Len. Field Value +17:28:49 ============================================================================ +17:28:49 [ 1] [ 4] [0210] +17:28:49 [ 2] [ 16] [6213542000049446] +17:28:49 [ 3] [ 6] [010000] +17:28:49 [ 4] [ 12] [000030000000] +17:28:49 [ 7] [ 10] [0320172635] +17:28:49 [ 11] [ 6] [953485] +17:28:49 [ 12] [ 6] [172635] +17:28:49 [ 13] [ 4] [0320] +17:28:49 [ 15] [ 4] [0320] +17:28:49 [ 18] [ 4] [6011] +17:28:49 [ 19] [ 3] [418] +17:28:49 [ 32] [ 6] [668899] +17:28:49 [ 35] [ 32] [6213542000049446=491212014944490] +17:28:49 [ 37] [ 12] [507900146831] +17:28:49 [ 38] [ 6] [112083] +17:28:49 [ 39] [ 2] [00] +17:28:49 [ 41] [ 8] [03020005] +17:28:49 [ 49] [ 3] [418] +17:28:49 [ 54] [ 40] [0001418C0003119882660002418C000311988266] +17:28:49 ============================================================================ +17:28:49 Calculate Source COMM Id = 4 +17:28:49 ============================================================================ +17:28:49 + + +waiting on router queue for slot.... +17:29:00 ============================================================================ +17:29:00 Slot Id : <314> +17:29:00 Transaction Type : REQUEST +17:29:00 Received From : +17:29:00 ============================================================================ +17:29:00 FNo. Len. Field Value +17:29:00 ============================================================================ +17:29:00 [ 1] [ 4] [0800] +17:29:00 [ 7] [ 10] [0320102807] +17:29:00 [ 11] [ 6] [157466] +17:29:00 [ 70] [ 3] [301] +17:29:00 ============================================================================ +17:29:00 + + +waiting on router queue for slot.... +17:29:00 Sending to : +17:29:00 ============================================================================ +17:29:00 ============================================================================ +17:29:00 Slot Id : <314> +17:29:00 Transaction Type : RESPONSE +17:29:00 Received From : +17:29:00 ============================================================================ +17:29:00 FNo. Len. Field Value +17:29:00 ============================================================================ +17:29:00 [ 1] [ 4] [0810] +17:29:00 [ 7] [ 10] [0320102807] +17:29:00 [ 11] [ 6] [157466] +17:29:00 [ 39] [ 2] [00] +17:29:00 [ 70] [ 3] [301] +17:29:00 ============================================================================ +17:29:00 Calculate Source COMM Id = 2 +17:29:00 ============================================================================ +17:29:00 + + +waiting on router queue for slot.... +17:29:06 ============================================================================ +17:29:06 Slot Id : <292> +17:29:06 Transaction Type : REQUEST +17:29:06 Received From : +17:29:06 ============================================================================ +17:29:06 FNo. Len. Field Value +17:29:06 ============================================================================ +17:29:06 [ 1] [ 4] [0200] +17:29:06 [ 2] [ 16] [6688990040072561] +17:29:06 [ 3] [ 6] [011000] +17:29:06 [ 4] [ 12] [000100000000] +17:29:06 [ 7] [ 10] [0320172901] +17:29:06 [ 11] [ 6] [815932] +17:29:06 [ 12] [ 6] [172901] +17:29:06 [ 13] [ 4] [0320] +17:29:06 [ 15] [ 4] [0320] +17:29:06 [ 18] [ 4] [6011] +17:29:06 [ 22] [ 3] [900] +17:29:06 [ 25] [ 2] [02] +17:29:06 [ 28] [ 9] [D00002000] +17:29:06 [ 32] [ 6] [621354] +17:29:06 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:29:06 [ 37] [ 12] [507903499675] +17:29:06 [ 41] [ 8] [06002200] +17:29:06 [ 42] [ 15] [NATIVE ] +17:29:06 [ 43] [ 40] [Beng Market Beng LAO] +17:29:06 [ 49] [ 3] [418] +17:29:06 [ 52] [ 16] [8F4569422EC9DC11] +17:29:06 ============================================================================ +17:29:06 + + +waiting on router queue for slot.... +17:29:06 Sending to : +17:29:06 ============================================================================ +17:29:06 Sending to : +17:29:06 ============================================================================ +17:29:06 ============================================================================ +17:29:06 Slot Id : <292> +17:29:06 Transaction Type : REQUEST +17:29:06 Received From : +17:29:06 ============================================================================ +17:29:06 FNo. Len. Field Value +17:29:06 ============================================================================ +17:29:06 [ 1] [ 4] [0200] +17:29:06 [ 2] [ 16] [6688990040072561] +17:29:06 [ 3] [ 6] [011000] +17:29:06 [ 4] [ 12] [000100000000] +17:29:06 [ 7] [ 10] [0320172901] +17:29:06 [ 11] [ 6] [815932] +17:29:06 [ 12] [ 6] [172901] +17:29:06 [ 13] [ 4] [0320] +17:29:06 [ 15] [ 4] [0320] +17:29:06 [ 18] [ 4] [6011] +17:29:06 [ 22] [ 3] [900] +17:29:06 [ 25] [ 2] [02] +17:29:06 [ 28] [ 9] [D00002000] +17:29:06 [ 32] [ 6] [621354] +17:29:06 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:29:06 [ 37] [ 12] [507903499675] +17:29:06 [ 41] [ 8] [06002200] +17:29:06 [ 42] [ 15] [NATIVE ] +17:29:06 [ 43] [ 40] [Beng Market Beng LAO] +17:29:06 [ 49] [ 3] [418] +17:29:06 [ 52] [ 16] [8F4569422EC9DC11] +17:29:06 ============================================================================ +17:29:06 + + +waiting on router queue for slot.... +17:29:06 Sending to : +17:29:06 ============================================================================ +17:29:06 ============================================================================ +17:29:06 Slot Id : <292> +17:29:06 Transaction Type : REQUEST +17:29:06 Received From : +17:29:06 ============================================================================ +17:29:06 FNo. Len. Field Value +17:29:06 ============================================================================ +17:29:06 [ 1] [ 4] [0200] +17:29:06 [ 2] [ 16] [6688990040072561] +17:29:06 [ 3] [ 6] [011000] +17:29:06 [ 4] [ 12] [000100000000] +17:29:06 [ 7] [ 10] [0320172901] +17:29:06 [ 11] [ 6] [815932] +17:29:06 [ 12] [ 6] [172901] +17:29:06 [ 13] [ 4] [0320] +17:29:06 [ 15] [ 4] [0320] +17:29:06 [ 18] [ 4] [6011] +17:29:06 [ 22] [ 3] [900] +17:29:06 [ 25] [ 2] [02] +17:29:06 [ 28] [ 9] [D00002000] +17:29:06 [ 32] [ 6] [621354] +17:29:06 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:29:06 [ 37] [ 12] [507903499675] +17:29:06 [ 41] [ 8] [06002200] +17:29:06 [ 42] [ 15] [NATIVE ] +17:29:06 [ 43] [ 40] [Beng Market Beng LAO] +17:29:06 [ 49] [ 3] [418] +17:29:06 [ 52] [ 16] [ED280CF8FD8967F6] +17:29:06 ============================================================================ +17:29:06 + + +waiting on router queue for slot.... +17:29:06 Sending to : <4> +17:29:06 ============================================================================ +17:29:07 ============================================================================ +17:29:07 Slot Id : <292> +17:29:07 Transaction Type : RESPONSE +17:29:07 Received From : +17:29:07 ============================================================================ +17:29:07 FNo. Len. Field Value +17:29:07 ============================================================================ +17:29:07 [ 1] [ 4] [0210] +17:29:07 [ 2] [ 16] [6688990040072561] +17:29:07 [ 3] [ 6] [011000] +17:29:07 [ 4] [ 12] [000100000000] +17:29:07 [ 11] [ 6] [815932] +17:29:07 [ 12] [ 6] [172901] +17:29:07 [ 15] [ 4] [0320] +17:29:07 [ 18] [ 4] [6011] +17:29:07 [ 32] [ 6] [621354] +17:29:07 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:29:07 [ 37] [ 12] [507903499675] +17:29:07 [ 38] [ 6] [236062] +17:29:07 [ 39] [ 2] [00] +17:29:07 [ 41] [ 8] [06002200] +17:29:07 [ 49] [ 3] [418] +17:29:07 [ 54] [ 20] [1002418C000134379657] +17:29:07 ============================================================================ +17:29:07 Sending to : +17:29:07 ============================================================================ +17:29:07 + + +waiting on router queue for slot.... +17:29:08 ============================================================================ +17:29:08 Slot Id : <292> +17:29:08 Transaction Type : RESPONSE +17:29:08 Received From : +17:29:08 ============================================================================ +17:29:08 FNo. Len. Field Value +17:29:08 ============================================================================ +17:29:08 [ 1] [ 4] [0210] +17:29:08 [ 2] [ 16] [6688990040072561] +17:29:08 [ 3] [ 6] [011000] +17:29:08 [ 4] [ 12] [000100000000] +17:29:08 [ 11] [ 6] [815932] +17:29:08 [ 12] [ 6] [172901] +17:29:08 [ 15] [ 4] [0320] +17:29:08 [ 18] [ 4] [6011] +17:29:08 [ 32] [ 6] [621354] +17:29:08 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:29:08 [ 37] [ 12] [507903499675] +17:29:08 [ 38] [ 6] [236062] +17:29:08 [ 39] [ 2] [00] +17:29:08 [ 41] [ 8] [06002200] +17:29:08 [ 49] [ 3] [418] +17:29:08 [ 54] [ 20] [1002418C000134379657] +17:29:08 ============================================================================ +17:29:08 Calculate Source COMM Id = 0 +17:29:08 ============================================================================ +17:29:08 + + +waiting on router queue for slot.... +17:29:12 ============================================================================ +17:29:12 Slot Id : <335> +17:29:12 Transaction Type : REQUEST +17:29:12 Received From : +17:29:12 ============================================================================ +17:29:12 FNo. Len. Field Value +17:29:12 ============================================================================ +17:29:12 [ 1] [ 4] [0800] +17:29:12 [ 7] [ 10] [0320102818] +17:29:12 [ 11] [ 6] [157467] +17:29:12 [ 70] [ 3] [301] +17:29:12 ============================================================================ +17:29:12 + + +waiting on router queue for slot.... +17:29:12 Sending to : +17:29:12 ============================================================================ +17:29:12 ============================================================================ +17:29:12 Slot Id : <335> +17:29:12 Transaction Type : RESPONSE +17:29:12 Received From : +17:29:12 ============================================================================ +17:29:12 FNo. Len. Field Value +17:29:12 ============================================================================ +17:29:12 [ 1] [ 4] [0810] +17:29:12 [ 7] [ 10] [0320102818] +17:29:12 [ 11] [ 6] [157467] +17:29:12 [ 39] [ 2] [00] +17:29:12 [ 70] [ 3] [301] +17:29:12 ============================================================================ +17:29:12 Calculate Source COMM Id = 2 +17:29:12 ============================================================================ +17:29:12 + + +waiting on router queue for slot.... +17:29:17 ============================================================================ +17:29:17 Slot Id : <333> +17:29:17 Transaction Type : REQUEST +17:29:17 Received From : +17:29:17 ============================================================================ +17:29:17 FNo. Len. Field Value +17:29:17 ============================================================================ +17:29:17 [ 1] [ 4] [0200] +17:29:17 [ 2] [ 16] [6213544000982022] +17:29:17 [ 3] [ 6] [301000] +17:29:17 [ 4] [ 12] [000000000000] +17:29:17 [ 7] [ 10] [0320172707] +17:29:17 [ 11] [ 6] [953498] +17:29:17 [ 12] [ 6] [172707] +17:29:17 [ 13] [ 4] [0320] +17:29:17 [ 15] [ 4] [0320] +17:29:17 [ 18] [ 4] [6011] +17:29:17 [ 19] [ 3] [418] +17:29:17 [ 22] [ 3] [021] +17:29:17 [ 25] [ 2] [01] +17:29:17 [ 28] [ 9] [D00000000] +17:29:17 [ 32] [ 6] [668899] +17:29:17 [ 35] [ 32] [6213544000982022=491212018202512] +17:29:17 [ 37] [ 12] [507901028127] +17:29:17 [ 41] [ 8] [03310002] +17:29:17 [ 42] [ 15] [APT ] +17:29:17 [ 43] [ 40] [ KEOOUDOM KEOOUDOM KEO] +17:29:17 [ 49] [ 3] [418] +17:29:17 [ 52] [ 16] [CA9AB2A595BEA978] +17:29:17 ============================================================================ +17:29:17 + + +waiting on router queue for slot.... +17:29:17 Sending to : +17:29:17 ============================================================================ +17:29:17 Sending to : +17:29:17 ============================================================================ +17:29:18 ============================================================================ +17:29:18 Slot Id : <333> +17:29:18 Transaction Type : REQUEST +17:29:18 Received From : +17:29:18 ============================================================================ +17:29:18 FNo. Len. Field Value +17:29:18 ============================================================================ +17:29:18 [ 1] [ 4] [0200] +17:29:18 [ 2] [ 16] [6213544000982022] +17:29:18 [ 3] [ 6] [301000] +17:29:18 [ 4] [ 12] [000000000000] +17:29:18 [ 7] [ 10] [0320172707] +17:29:18 [ 11] [ 6] [953498] +17:29:18 [ 12] [ 6] [172707] +17:29:18 [ 13] [ 4] [0320] +17:29:18 [ 15] [ 4] [0320] +17:29:18 [ 18] [ 4] [6011] +17:29:18 [ 19] [ 3] [418] +17:29:18 [ 22] [ 3] [021] +17:29:18 [ 25] [ 2] [01] +17:29:18 [ 28] [ 9] [D00000000] +17:29:18 [ 32] [ 6] [668899] +17:29:18 [ 35] [ 32] [6213544000982022=491212018202512] +17:29:18 [ 37] [ 12] [507901028127] +17:29:18 [ 41] [ 8] [03310002] +17:29:18 [ 42] [ 15] [APT ] +17:29:18 [ 43] [ 40] [ KEOOUDOM KEOOUDOM KEO] +17:29:18 [ 49] [ 3] [418] +17:29:18 [ 52] [ 16] [CA9AB2A595BEA978] +17:29:18 ============================================================================ +17:29:18 + + +waiting on router queue for slot.... +17:29:18 Sending to : +17:29:18 ============================================================================ +17:29:18 ============================================================================ +17:29:18 Slot Id : <333> +17:29:18 Transaction Type : REQUEST +17:29:18 Received From : +17:29:18 ============================================================================ +17:29:18 FNo. Len. Field Value +17:29:18 ============================================================================ +17:29:18 [ 1] [ 4] [0200] +17:29:18 [ 2] [ 16] [6213544000982022] +17:29:18 [ 3] [ 6] [301000] +17:29:18 [ 4] [ 12] [000000000000] +17:29:18 [ 7] [ 10] [0320172707] +17:29:18 [ 11] [ 6] [953498] +17:29:18 [ 12] [ 6] [172707] +17:29:18 [ 13] [ 4] [0320] +17:29:18 [ 15] [ 4] [0320] +17:29:18 [ 18] [ 4] [6011] +17:29:18 [ 19] [ 3] [418] +17:29:18 [ 22] [ 3] [021] +17:29:18 [ 25] [ 2] [01] +17:29:18 [ 28] [ 9] [D00000000] +17:29:18 [ 32] [ 6] [668899] +17:29:18 [ 35] [ 32] [6213544000982022=491212018202512] +17:29:18 [ 37] [ 12] [507901028127] +17:29:18 [ 41] [ 8] [03310002] +17:29:18 [ 42] [ 15] [APT ] +17:29:18 [ 43] [ 40] [ KEOOUDOM KEOOUDOM KEO] +17:29:18 [ 49] [ 3] [418] +17:29:18 [ 52] [ 16] [0B6EB9233148C8B8] +17:29:18 ============================================================================ +17:29:18 + + +waiting on router queue for slot.... +17:29:18 Sending to : <0> +17:29:18 ============================================================================ +17:29:18 ============================================================================ +17:29:18 Slot Id : <333> +17:29:18 Transaction Type : RESPONSE +17:29:18 Received From : +17:29:18 ============================================================================ +17:29:18 FNo. Len. Field Value +17:29:18 ============================================================================ +17:29:18 [ 1] [ 4] [0210] +17:29:18 [ 2] [ 16] [6213544000982022] +17:29:18 [ 3] [ 6] [301000] +17:29:18 [ 4] [ 12] [000000000000] +17:29:18 [ 7] [ 10] [0320172707] +17:29:18 [ 11] [ 6] [953498] +17:29:18 [ 12] [ 6] [172707] +17:29:18 [ 13] [ 4] [0320] +17:29:18 [ 15] [ 4] [0320] +17:29:18 [ 18] [ 4] [6011] +17:29:18 [ 19] [ 3] [418] +17:29:18 [ 22] [ 3] [021] +17:29:18 [ 32] [ 6] [668899] +17:29:18 [ 35] [ 32] [6213544000982022=491212018202512] +17:29:18 [ 37] [ 12] [507901028127] +17:29:18 [ 38] [ 6] [172913] +17:29:18 [ 39] [ 2] [75] +17:29:18 [ 41] [ 8] [03310002] +17:29:18 [ 49] [ 3] [418] +17:29:18 ============================================================================ +17:29:18 Sending to : +17:29:18 ============================================================================ +17:29:18 + + +waiting on router queue for slot.... +17:29:19 ============================================================================ +17:29:19 Slot Id : <333> +17:29:19 Transaction Type : RESPONSE +17:29:19 Received From : +17:29:19 ============================================================================ +17:29:19 FNo. Len. Field Value +17:29:19 ============================================================================ +17:29:19 [ 1] [ 4] [0210] +17:29:19 [ 2] [ 16] [6213544000982022] +17:29:19 [ 3] [ 6] [301000] +17:29:19 [ 4] [ 12] [000000000000] +17:29:19 [ 7] [ 10] [0320172707] +17:29:19 [ 11] [ 6] [953498] +17:29:19 [ 12] [ 6] [172707] +17:29:19 [ 13] [ 4] [0320] +17:29:19 [ 15] [ 4] [0320] +17:29:19 [ 18] [ 4] [6011] +17:29:19 [ 19] [ 3] [418] +17:29:19 [ 22] [ 3] [021] +17:29:19 [ 32] [ 6] [668899] +17:29:19 [ 35] [ 32] [6213544000982022=491212018202512] +17:29:19 [ 37] [ 12] [507901028127] +17:29:19 [ 38] [ 6] [172913] +17:29:19 [ 39] [ 2] [75] +17:29:19 [ 41] [ 8] [03310002] +17:29:19 [ 49] [ 3] [418] +17:29:19 ============================================================================ +17:29:19 Calculate Source COMM Id = 4 +17:29:19 ============================================================================ +17:29:19 + + +waiting on router queue for slot.... +17:29:27 ============================================================================ +17:29:27 Slot Id : <262> +17:29:27 Transaction Type : REQUEST +17:29:27 Received From : +17:29:27 ============================================================================ +17:29:27 FNo. Len. Field Value +17:29:27 ============================================================================ +17:29:27 [ 1] [ 4] [0800] +17:29:27 [ 7] [ 10] [0320102833] +17:29:27 [ 11] [ 6] [157468] +17:29:27 [ 70] [ 3] [301] +17:29:27 ============================================================================ +17:29:27 + + +waiting on router queue for slot.... +17:29:27 Sending to : +17:29:27 ============================================================================ +17:29:27 ============================================================================ +17:29:27 Slot Id : <262> +17:29:27 Transaction Type : RESPONSE +17:29:27 Received From : +17:29:27 ============================================================================ +17:29:27 FNo. Len. Field Value +17:29:27 ============================================================================ +17:29:27 [ 1] [ 4] [0810] +17:29:27 [ 7] [ 10] [0320102833] +17:29:27 [ 11] [ 6] [157468] +17:29:27 [ 39] [ 2] [00] +17:29:27 [ 70] [ 3] [301] +17:29:27 ============================================================================ +17:29:27 Calculate Source COMM Id = 2 +17:29:27 ============================================================================ +17:29:27 + + +waiting on router queue for slot.... +17:29:29 ============================================================================ +17:29:29 Slot Id : <334> +17:29:29 Transaction Type : REQUEST +17:29:29 Received From : +17:29:29 ============================================================================ +17:29:29 FNo. Len. Field Value +17:29:29 ============================================================================ +17:29:29 [ 1] [ 4] [0800] +17:29:29 [ 2] [ 5] [02531] +17:29:29 [ 3] [ 6] [579178] +17:29:29 [ 7] [ 10] [0320102929] +17:29:29 [ 11] [ 6] [807427] +17:29:29 [ 15] [ 10] [0320102929] +17:29:29 [ 37] [ 11] [57917807427] +17:29:29 [ 70] [ 3] [001] +17:29:29 ============================================================================ +17:29:29 + + +waiting on router queue for slot.... +17:29:29 ============================================================================ +17:29:29 Slot Id : <334> +17:29:29 Transaction Type : RESPONSE +17:29:29 Received From : +17:29:29 ============================================================================ +17:29:29 FNo. Len. Field Value +17:29:29 ============================================================================ +17:29:29 [ 1] [ 4] [0810] +17:29:29 [ 7] [ 10] [0320102929] +17:29:29 [ 11] [ 6] [807427] +17:29:29 [ 15] [ 4] [0320] +17:29:29 [ 37] [ 12] [57917807427] +17:29:29 [ 39] [ 2] [00] +17:29:29 [ 70] [ 3] [001] +17:29:29 ============================================================================ +17:29:29 Sending to : +17:29:29 ============================================================================ +17:29:29 + + +waiting on router queue for slot.... +17:29:37 ============================================================================ +17:29:37 Slot Id : <336> +17:29:37 Transaction Type : REQUEST +17:29:37 Received From : +17:29:37 ============================================================================ +17:29:37 FNo. Len. Field Value +17:29:37 ============================================================================ +17:29:37 [ 1] [ 4] [0800] +17:29:37 [ 7] [ 10] [0320102844] +17:29:37 [ 11] [ 6] [157469] +17:29:37 [ 70] [ 3] [301] +17:29:37 ============================================================================ +17:29:37 + + +waiting on router queue for slot.... +17:29:37 Sending to : +17:29:37 ============================================================================ +17:29:37 ============================================================================ +17:29:37 Slot Id : <336> +17:29:37 Transaction Type : RESPONSE +17:29:37 Received From : +17:29:37 ============================================================================ +17:29:37 FNo. Len. Field Value +17:29:37 ============================================================================ +17:29:37 [ 1] [ 4] [0810] +17:29:37 [ 7] [ 10] [0320102844] +17:29:37 [ 11] [ 6] [157469] +17:29:37 [ 39] [ 2] [00] +17:29:37 [ 70] [ 3] [301] +17:29:37 ============================================================================ +17:29:37 Calculate Source COMM Id = 2 +17:29:37 ============================================================================ +17:29:37 + + +waiting on router queue for slot.... +17:29:41 ============================================================================ +17:29:41 Slot Id : <321> +17:29:41 Transaction Type : REQUEST +17:29:41 Received From : +17:29:41 ============================================================================ +17:29:41 FNo. Len. Field Value +17:29:41 ============================================================================ +17:29:41 [ 1] [ 4] [0800] +17:29:41 [ 7] [ 10] [0321004130] +17:29:41 [ 11] [ 6] [174130] +17:29:41 [ 37] [ 12] [57917174130] +17:29:41 [ 70] [ 3] [301] +17:29:41 ============================================================================ +17:29:41 + + +waiting on router queue for slot.... +17:29:41 Sending to : +17:29:41 ============================================================================ +17:29:41 ============================================================================ +17:29:41 Slot Id : <321> +17:29:41 Transaction Type : RESPONSE +17:29:41 Received From : +17:29:41 ============================================================================ +17:29:41 FNo. Len. Field Value +17:29:41 ============================================================================ +17:29:41 [ 1] [ 4] [0810] +17:29:41 [ 7] [ 10] [0321004130] +17:29:41 [ 11] [ 6] [174130] +17:29:41 [ 37] [ 12] [579171741300] +17:29:41 [ 39] [ 2] [00] +17:29:41 [ 70] [ 3] [810] +17:29:41 ============================================================================ +17:29:41 Calculate Source COMM Id = 6 +17:29:41 ============================================================================ +17:29:41 + + +waiting on router queue for slot.... +17:29:43 ============================================================================ +17:29:43 Slot Id : <341> +17:29:43 Transaction Type : REQUEST +17:29:43 Received From : +17:29:43 ============================================================================ +17:29:43 FNo. Len. Field Value +17:29:43 ============================================================================ +17:29:43 [ 1] [ 4] [0200] +17:29:43 [ 2] [ 16] [6688990600570707] +17:29:43 [ 3] [ 6] [010000] +17:29:43 [ 4] [ 12] [000050000000] +17:29:43 [ 7] [ 10] [0320102850] +17:29:43 [ 11] [ 6] [270875] +17:29:43 [ 12] [ 6] [172850] +17:29:43 [ 13] [ 4] [0320] +17:29:43 [ 14] [ 4] [4012] +17:29:43 [ 15] [ 4] [0320] +17:29:43 [ 18] [ 4] [6011] +17:29:43 [ 19] [ 3] [418] +17:29:43 [ 22] [ 3] [021] +17:29:43 [ 25] [ 2] [01] +17:29:43 [ 28] [ 9] [D00002000] +17:29:43 [ 32] [ 6] [180893] +17:29:43 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:29:43 [ 37] [ 12] [507910270875] +17:29:43 [ 41] [ 8] [0261PSL1] +17:29:43 [ 42] [ 15] [999999 ] +17:29:43 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +17:29:43 [ 49] [ 3] [418] +17:29:43 [ 52] [ 16] [E1676DFEA42D2CBD] +17:29:43 ============================================================================ +17:29:43 + + +waiting on router queue for slot.... +17:29:43 Sending to : +17:29:43 ============================================================================ +17:29:43 Sending to : +17:29:43 ============================================================================ +17:29:43 ============================================================================ +17:29:43 Slot Id : <341> +17:29:43 Transaction Type : REQUEST +17:29:43 Received From : +17:29:43 ============================================================================ +17:29:43 FNo. Len. Field Value +17:29:43 ============================================================================ +17:29:43 [ 1] [ 4] [0200] +17:29:43 [ 2] [ 16] [6688990600570707] +17:29:43 [ 3] [ 6] [010000] +17:29:43 [ 4] [ 12] [000050000000] +17:29:43 [ 7] [ 10] [0320102850] +17:29:43 [ 11] [ 6] [270875] +17:29:43 [ 12] [ 6] [172850] +17:29:43 [ 13] [ 4] [0320] +17:29:43 [ 14] [ 4] [4012] +17:29:43 [ 15] [ 4] [0320] +17:29:43 [ 18] [ 4] [6011] +17:29:43 [ 19] [ 3] [418] +17:29:43 [ 22] [ 3] [021] +17:29:43 [ 25] [ 2] [01] +17:29:43 [ 28] [ 9] [D00002000] +17:29:43 [ 32] [ 6] [180893] +17:29:43 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:29:43 [ 37] [ 12] [507910270875] +17:29:43 [ 41] [ 8] [0261PSL1] +17:29:43 [ 42] [ 15] [999999 ] +17:29:43 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +17:29:43 [ 49] [ 3] [418] +17:29:43 [ 52] [ 16] [E1676DFEA42D2CBD] +17:29:43 ============================================================================ +17:29:43 + + +waiting on router queue for slot.... +17:29:43 Sending to : +17:29:43 ============================================================================ +17:29:43 ============================================================================ +17:29:43 Slot Id : <341> +17:29:43 Transaction Type : REQUEST +17:29:43 Received From : +17:29:43 ============================================================================ +17:29:43 FNo. Len. Field Value +17:29:43 ============================================================================ +17:29:43 [ 1] [ 4] [0200] +17:29:43 [ 2] [ 16] [6688990600570707] +17:29:43 [ 3] [ 6] [010000] +17:29:43 [ 4] [ 12] [000050000000] +17:29:43 [ 7] [ 10] [0320102850] +17:29:43 [ 11] [ 6] [270875] +17:29:43 [ 12] [ 6] [172850] +17:29:43 [ 13] [ 4] [0320] +17:29:43 [ 14] [ 4] [4012] +17:29:43 [ 15] [ 4] [0320] +17:29:43 [ 18] [ 4] [6011] +17:29:43 [ 19] [ 3] [418] +17:29:43 [ 22] [ 3] [021] +17:29:43 [ 25] [ 2] [01] +17:29:43 [ 28] [ 9] [D00002000] +17:29:43 [ 32] [ 6] [180893] +17:29:43 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:29:43 [ 37] [ 12] [507910270875] +17:29:43 [ 41] [ 8] [0261PSL1] +17:29:43 [ 42] [ 15] [999999 ] +17:29:43 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +17:29:43 [ 49] [ 3] [418] +17:29:43 [ 52] [ 16] [7C5AB8F7399D6E8D] +17:29:43 ============================================================================ +17:29:43 + + +waiting on router queue for slot.... +17:29:43 Sending to : <0> +17:29:43 ============================================================================ +17:29:43 ============================================================================ +17:29:43 Slot Id : <341> +17:29:43 Transaction Type : RESPONSE +17:29:43 Received From : +17:29:43 ============================================================================ +17:29:43 FNo. Len. Field Value +17:29:43 ============================================================================ +17:29:43 [ 1] [ 4] [0210] +17:29:43 [ 2] [ 16] [6688990600570707] +17:29:43 [ 3] [ 6] [010000] +17:29:43 [ 4] [ 12] [000050000000] +17:29:43 [ 7] [ 10] [0320102850] +17:29:43 [ 11] [ 6] [270875] +17:29:43 [ 12] [ 6] [172850] +17:29:43 [ 13] [ 4] [0320] +17:29:43 [ 15] [ 4] [0320] +17:29:43 [ 18] [ 4] [6011] +17:29:43 [ 19] [ 3] [418] +17:29:43 [ 22] [ 3] [021] +17:29:43 [ 32] [ 6] [180893] +17:29:43 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:29:43 [ 37] [ 12] [507910270875] +17:29:43 [ 39] [ 2] [14] +17:29:43 [ 41] [ 8] [0261PSL1] +17:29:43 [ 49] [ 3] [418] +17:29:43 ============================================================================ +17:29:43 Sending to : +17:29:43 ============================================================================ +17:29:43 + + +waiting on router queue for slot.... +17:29:45 ============================================================================ +17:29:45 Slot Id : <341> +17:29:45 Transaction Type : RESPONSE +17:29:45 Received From : +17:29:45 ============================================================================ +17:29:45 FNo. Len. Field Value +17:29:45 ============================================================================ +17:29:45 [ 1] [ 4] [0210] +17:29:45 [ 2] [ 16] [6688990600570707] +17:29:45 [ 3] [ 6] [010000] +17:29:45 [ 4] [ 12] [000050000000] +17:29:45 [ 7] [ 10] [0320102850] +17:29:45 [ 11] [ 6] [270875] +17:29:45 [ 12] [ 6] [172850] +17:29:45 [ 13] [ 4] [0320] +17:29:45 [ 15] [ 4] [0320] +17:29:45 [ 18] [ 4] [6011] +17:29:45 [ 19] [ 3] [418] +17:29:45 [ 22] [ 3] [021] +17:29:45 [ 32] [ 6] [180893] +17:29:45 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:29:45 [ 37] [ 12] [507910270875] +17:29:45 [ 39] [ 2] [14] +17:29:45 [ 41] [ 8] [0261PSL1] +17:29:45 [ 49] [ 3] [418] +17:29:45 ============================================================================ +17:29:45 Calculate Source COMM Id = 2 +17:29:45 ============================================================================ +17:29:45 + + +waiting on router queue for slot.... +17:29:54 ============================================================================ +17:29:54 Slot Id : <323> +17:29:54 Transaction Type : REQUEST +17:29:54 Received From : +17:29:54 ============================================================================ +17:29:54 FNo. Len. Field Value +17:29:54 ============================================================================ +17:29:54 [ 1] [ 4] [0800] +17:29:54 [ 7] [ 10] [0320103742] +17:29:54 [ 11] [ 6] [035435] +17:29:54 [ 37] [ 12] [57917035435] +17:29:54 [ 70] [ 3] [301] +17:29:54 ============================================================================ +17:29:54 + + +waiting on router queue for slot.... +17:29:54 Sending to : +17:29:54 ============================================================================ +17:29:54 ============================================================================ +17:29:54 Slot Id : <323> +17:29:54 Transaction Type : RESPONSE +17:29:54 Received From : +17:29:54 ============================================================================ +17:29:54 FNo. Len. Field Value +17:29:54 ============================================================================ +17:29:54 [ 1] [ 4] [0810] +17:29:54 [ 7] [ 10] [0320103742] +17:29:54 [ 11] [ 6] [035435] +17:29:54 [ 37] [ 12] [579170354350] +17:29:54 [ 39] [ 2] [00] +17:29:54 [ 70] [ 3] [810] +17:29:54 ============================================================================ +17:29:54 Calculate Source COMM Id = 1 +17:29:54 ============================================================================ +17:29:54 + + +waiting on router queue for slot.... +17:29:59 ============================================================================ +17:29:59 Slot Id : <320> +17:29:59 Transaction Type : REQUEST +17:29:59 Received From : +17:29:59 ============================================================================ +17:29:59 FNo. Len. Field Value +17:29:59 ============================================================================ +17:29:59 [ 1] [ 4] [0800] +17:29:59 [ 7] [ 10] [0320102906] +17:29:59 [ 11] [ 6] [157470] +17:29:59 [ 70] [ 3] [301] +17:29:59 ============================================================================ +17:29:59 + + +waiting on router queue for slot.... +17:29:59 Sending to : +17:29:59 ============================================================================ +17:29:59 ============================================================================ +17:29:59 Slot Id : <320> +17:29:59 Transaction Type : RESPONSE +17:29:59 Received From : +17:29:59 ============================================================================ +17:29:59 FNo. Len. Field Value +17:29:59 ============================================================================ +17:29:59 [ 1] [ 4] [0810] +17:29:59 [ 7] [ 10] [0320102906] +17:29:59 [ 11] [ 6] [157470] +17:29:59 [ 39] [ 2] [00] +17:29:59 [ 70] [ 3] [301] +17:29:59 ============================================================================ +17:29:59 Calculate Source COMM Id = 2 +17:29:59 ============================================================================ +17:29:59 + + +waiting on router queue for slot.... +17:30:07 ============================================================================ +17:30:07 Slot Id : <342> +17:30:07 Transaction Type : REQUEST +17:30:07 Received From : +17:30:07 ============================================================================ +17:30:07 FNo. Len. Field Value +17:30:07 ============================================================================ +17:30:07 [ 1] [ 4] [0200] +17:30:07 [ 2] [ 16] [6213545000822241] +17:30:07 [ 3] [ 6] [010000] +17:30:07 [ 4] [ 12] [000010000000] +17:30:07 [ 7] [ 10] [0320102913] +17:30:07 [ 11] [ 6] [270881] +17:30:07 [ 12] [ 6] [172913] +17:30:07 [ 13] [ 4] [0320] +17:30:07 [ 14] [ 4] [4912] +17:30:07 [ 15] [ 4] [0320] +17:30:07 [ 18] [ 4] [6011] +17:30:07 [ 19] [ 3] [418] +17:30:07 [ 22] [ 3] [021] +17:30:07 [ 25] [ 2] [01] +17:30:07 [ 28] [ 9] [D00002000] +17:30:07 [ 32] [ 6] [180893] +17:30:07 [ 35] [ 32] [6213545000822241=491212012224517] +17:30:07 [ 37] [ 12] [507910270881] +17:30:07 [ 41] [ 8] [0262PSLB] +17:30:07 [ 42] [ 15] [999999 ] +17:30:07 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:30:07 [ 49] [ 3] [418] +17:30:07 [ 52] [ 16] [6B477D86E4927453] +17:30:07 ============================================================================ +17:30:07 + + +waiting on router queue for slot.... +17:30:07 Sending to : +17:30:07 ============================================================================ +17:30:07 Sending to : +17:30:07 ============================================================================ +17:30:07 ============================================================================ +17:30:07 Slot Id : <342> +17:30:07 Transaction Type : REQUEST +17:30:07 Received From : +17:30:07 ============================================================================ +17:30:07 FNo. Len. Field Value +17:30:07 ============================================================================ +17:30:07 [ 1] [ 4] [0200] +17:30:07 [ 2] [ 16] [6213545000822241] +17:30:07 [ 3] [ 6] [010000] +17:30:07 [ 4] [ 12] [000010000000] +17:30:07 [ 7] [ 10] [0320102913] +17:30:07 [ 11] [ 6] [270881] +17:30:07 [ 12] [ 6] [172913] +17:30:07 [ 13] [ 4] [0320] +17:30:07 [ 14] [ 4] [4912] +17:30:07 [ 15] [ 4] [0320] +17:30:07 [ 18] [ 4] [6011] +17:30:07 [ 19] [ 3] [418] +17:30:07 [ 22] [ 3] [021] +17:30:07 [ 25] [ 2] [01] +17:30:07 [ 28] [ 9] [D00002000] +17:30:07 [ 32] [ 6] [180893] +17:30:07 [ 35] [ 32] [6213545000822241=491212012224517] +17:30:07 [ 37] [ 12] [507910270881] +17:30:07 [ 41] [ 8] [0262PSLB] +17:30:07 [ 42] [ 15] [999999 ] +17:30:07 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:30:07 [ 49] [ 3] [418] +17:30:07 [ 52] [ 16] [6B477D86E4927453] +17:30:07 ============================================================================ +17:30:07 + + +waiting on router queue for slot.... +17:30:07 Sending to : +17:30:07 ============================================================================ +17:30:07 ============================================================================ +17:30:07 Slot Id : <342> +17:30:07 Transaction Type : REQUEST +17:30:07 Received From : +17:30:07 ============================================================================ +17:30:07 FNo. Len. Field Value +17:30:07 ============================================================================ +17:30:07 [ 1] [ 4] [0200] +17:30:07 [ 2] [ 16] [6213545000822241] +17:30:07 [ 3] [ 6] [010000] +17:30:07 [ 4] [ 12] [000010000000] +17:30:07 [ 7] [ 10] [0320102913] +17:30:07 [ 11] [ 6] [270881] +17:30:07 [ 12] [ 6] [172913] +17:30:07 [ 13] [ 4] [0320] +17:30:07 [ 14] [ 4] [4912] +17:30:07 [ 15] [ 4] [0320] +17:30:07 [ 18] [ 4] [6011] +17:30:07 [ 19] [ 3] [418] +17:30:07 [ 22] [ 3] [021] +17:30:07 [ 25] [ 2] [01] +17:30:07 [ 28] [ 9] [D00002000] +17:30:07 [ 32] [ 6] [180893] +17:30:07 [ 35] [ 32] [6213545000822241=491212012224517] +17:30:07 [ 37] [ 12] [507910270881] +17:30:07 [ 41] [ 8] [0262PSLB] +17:30:07 [ 42] [ 15] [999999 ] +17:30:07 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:30:07 [ 49] [ 3] [418] +17:30:07 [ 52] [ 16] [696837AB439B26B2] +17:30:07 ============================================================================ +17:30:07 + + +waiting on router queue for slot.... +17:30:07 Sending to : <0> +17:30:07 ============================================================================ +17:30:08 ============================================================================ +17:30:08 Slot Id : <342> +17:30:08 Transaction Type : RESPONSE +17:30:08 Received From : +17:30:08 ============================================================================ +17:30:08 FNo. Len. Field Value +17:30:08 ============================================================================ +17:30:08 [ 1] [ 4] [0210] +17:30:08 [ 2] [ 16] [6213545000822241] +17:30:08 [ 3] [ 6] [010000] +17:30:08 [ 4] [ 12] [000010000000] +17:30:08 [ 7] [ 10] [0320102913] +17:30:08 [ 11] [ 6] [270881] +17:30:08 [ 12] [ 6] [172913] +17:30:08 [ 13] [ 4] [0320] +17:30:08 [ 15] [ 4] [0320] +17:30:08 [ 18] [ 4] [6011] +17:30:08 [ 19] [ 3] [418] +17:30:08 [ 32] [ 6] [180893] +17:30:08 [ 35] [ 32] [6213545000822241=491212012224517] +17:30:08 [ 37] [ 12] [507910270881] +17:30:08 [ 38] [ 6] [508914] +17:30:08 [ 39] [ 2] [00] +17:30:08 [ 41] [ 8] [0262PSLB] +17:30:08 [ 49] [ 3] [418] +17:30:08 [ 54] [ 40] [0001418C0000750482460002418C000075048246] +17:30:08 ============================================================================ +17:30:08 Sending to : +17:30:08 ============================================================================ +17:30:08 + + +waiting on router queue for slot.... +17:30:08 ============================================================================ +17:30:08 Slot Id : <339> +17:30:08 Transaction Type : REQUEST +17:30:08 Received From : +17:30:08 ============================================================================ +17:30:08 FNo. Len. Field Value +17:30:08 ============================================================================ +17:30:08 [ 1] [ 4] [0200] +17:30:08 [ 2] [ 16] [6688990040072561] +17:30:08 [ 3] [ 6] [011000] +17:30:08 [ 4] [ 12] [000100000000] +17:30:08 [ 7] [ 10] [0320173003] +17:30:08 [ 11] [ 6] [816189] +17:30:08 [ 12] [ 6] [173003] +17:30:08 [ 13] [ 4] [0320] +17:30:08 [ 15] [ 4] [0320] +17:30:08 [ 18] [ 4] [6011] +17:30:08 [ 22] [ 3] [900] +17:30:08 [ 25] [ 2] [02] +17:30:08 [ 28] [ 9] [D00002000] +17:30:08 [ 32] [ 6] [621354] +17:30:08 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:30:08 [ 37] [ 12] [507903499677] +17:30:08 [ 41] [ 8] [06002200] +17:30:08 [ 42] [ 15] [NATIVE ] +17:30:08 [ 43] [ 40] [Beng Market Beng LAO] +17:30:08 [ 49] [ 3] [418] +17:30:08 [ 52] [ 16] [1615A7C7AF0C2A16] +17:30:08 ============================================================================ +17:30:08 + + +waiting on router queue for slot.... +17:30:08 Sending to : +17:30:08 ============================================================================ +17:30:08 Sending to : +17:30:08 ============================================================================ +17:30:08 ============================================================================ +17:30:08 Slot Id : <339> +17:30:08 Transaction Type : REQUEST +17:30:08 Received From : +17:30:08 ============================================================================ +17:30:08 FNo. Len. Field Value +17:30:08 ============================================================================ +17:30:08 [ 1] [ 4] [0200] +17:30:08 [ 2] [ 16] [6688990040072561] +17:30:08 [ 3] [ 6] [011000] +17:30:08 [ 4] [ 12] [000100000000] +17:30:08 [ 7] [ 10] [0320173003] +17:30:08 [ 11] [ 6] [816189] +17:30:08 [ 12] [ 6] [173003] +17:30:08 [ 13] [ 4] [0320] +17:30:08 [ 15] [ 4] [0320] +17:30:08 [ 18] [ 4] [6011] +17:30:08 [ 22] [ 3] [900] +17:30:08 [ 25] [ 2] [02] +17:30:08 [ 28] [ 9] [D00002000] +17:30:08 [ 32] [ 6] [621354] +17:30:08 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:30:08 [ 37] [ 12] [507903499677] +17:30:08 [ 41] [ 8] [06002200] +17:30:08 [ 42] [ 15] [NATIVE ] +17:30:08 [ 43] [ 40] [Beng Market Beng LAO] +17:30:08 [ 49] [ 3] [418] +17:30:08 [ 52] [ 16] [1615A7C7AF0C2A16] +17:30:08 ============================================================================ +17:30:08 + + +waiting on router queue for slot.... +17:30:08 Sending to : +17:30:08 ============================================================================ +17:30:08 ============================================================================ +17:30:08 Slot Id : <339> +17:30:08 Transaction Type : REQUEST +17:30:08 Received From : +17:30:08 ============================================================================ +17:30:08 FNo. Len. Field Value +17:30:08 ============================================================================ +17:30:08 [ 1] [ 4] [0200] +17:30:08 [ 2] [ 16] [6688990040072561] +17:30:08 [ 3] [ 6] [011000] +17:30:08 [ 4] [ 12] [000100000000] +17:30:08 [ 7] [ 10] [0320173003] +17:30:08 [ 11] [ 6] [816189] +17:30:08 [ 12] [ 6] [173003] +17:30:08 [ 13] [ 4] [0320] +17:30:08 [ 15] [ 4] [0320] +17:30:08 [ 18] [ 4] [6011] +17:30:08 [ 22] [ 3] [900] +17:30:08 [ 25] [ 2] [02] +17:30:08 [ 28] [ 9] [D00002000] +17:30:08 [ 32] [ 6] [621354] +17:30:08 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:30:08 [ 37] [ 12] [507903499677] +17:30:08 [ 41] [ 8] [06002200] +17:30:08 [ 42] [ 15] [NATIVE ] +17:30:08 [ 43] [ 40] [Beng Market Beng LAO] +17:30:08 [ 49] [ 3] [418] +17:30:08 [ 52] [ 16] [61698AD9FD2ABA30] +17:30:08 ============================================================================ +17:30:08 + + +waiting on router queue for slot.... +17:30:08 Sending to : <4> +17:30:08 ============================================================================ +17:30:09 ============================================================================ +17:30:09 Slot Id : <339> +17:30:09 Transaction Type : RESPONSE +17:30:09 Received From : +17:30:09 ============================================================================ +17:30:09 FNo. Len. Field Value +17:30:09 ============================================================================ +17:30:09 [ 1] [ 4] [0210] +17:30:09 [ 2] [ 16] [6688990040072561] +17:30:09 [ 3] [ 6] [011000] +17:30:09 [ 4] [ 12] [000100000000] +17:30:09 [ 7] [ 10] [0320173003] +17:30:09 [ 11] [ 6] [816189] +17:30:09 [ 12] [ 6] [173003] +17:30:09 [ 13] [ 4] [0320] +17:30:09 [ 15] [ 4] [0320] +17:30:09 [ 18] [ 4] [6011] +17:30:09 [ 22] [ 3] [021] +17:30:09 [ 32] [ 6] [621354] +17:30:09 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:30:09 [ 37] [ 12] [507903499677] +17:30:09 [ 38] [ 6] [172758] +17:30:09 [ 39] [ 2] [55] +17:30:09 [ 41] [ 8] [06002200] +17:30:09 [ 49] [ 3] [418] +17:30:09 ============================================================================ +17:30:09 Sending to : +17:30:09 ============================================================================ +17:30:09 + + +waiting on router queue for slot.... +17:30:09 ============================================================================ +17:30:09 Slot Id : <342> +17:30:09 Transaction Type : RESPONSE +17:30:09 Received From : +17:30:09 ============================================================================ +17:30:09 FNo. Len. Field Value +17:30:09 ============================================================================ +17:30:09 [ 1] [ 4] [0210] +17:30:09 [ 2] [ 16] [6213545000822241] +17:30:09 [ 3] [ 6] [010000] +17:30:09 [ 4] [ 12] [000010000000] +17:30:09 [ 7] [ 10] [0320102913] +17:30:09 [ 11] [ 6] [270881] +17:30:09 [ 12] [ 6] [172913] +17:30:09 [ 13] [ 4] [0320] +17:30:09 [ 15] [ 4] [0320] +17:30:09 [ 18] [ 4] [6011] +17:30:09 [ 19] [ 3] [418] +17:30:09 [ 32] [ 6] [180893] +17:30:09 [ 35] [ 32] [6213545000822241=491212012224517] +17:30:09 [ 37] [ 12] [507910270881] +17:30:09 [ 38] [ 6] [508914] +17:30:09 [ 39] [ 2] [00] +17:30:09 [ 41] [ 8] [0262PSLB] +17:30:09 [ 49] [ 3] [418] +17:30:09 [ 54] [ 40] [0001418C0000750482460002418C000075048246] +17:30:09 ============================================================================ +17:30:09 Calculate Source COMM Id = 2 +17:30:09 ============================================================================ +17:30:09 + + +waiting on router queue for slot.... +17:30:10 ============================================================================ +17:30:10 Slot Id : <268> +17:30:10 Transaction Type : REQUEST +17:30:10 Received From : +17:30:10 ============================================================================ +17:30:10 FNo. Len. Field Value +17:30:10 ============================================================================ +17:30:10 [ 1] [ 4] [0800] +17:30:10 [ 7] [ 10] [0320102917] +17:30:10 [ 11] [ 6] [157471] +17:30:10 [ 70] [ 3] [301] +17:30:10 ============================================================================ +17:30:10 + + +waiting on router queue for slot.... +17:30:10 Sending to : +17:30:10 ============================================================================ +17:30:10 ============================================================================ +17:30:10 Slot Id : <268> +17:30:10 Transaction Type : RESPONSE +17:30:10 Received From : +17:30:10 ============================================================================ +17:30:10 FNo. Len. Field Value +17:30:10 ============================================================================ +17:30:10 [ 1] [ 4] [0810] +17:30:10 [ 7] [ 10] [0320102917] +17:30:10 [ 11] [ 6] [157471] +17:30:10 [ 39] [ 2] [00] +17:30:10 [ 70] [ 3] [301] +17:30:10 ============================================================================ +17:30:10 Calculate Source COMM Id = 2 +17:30:10 ============================================================================ +17:30:10 + + +waiting on router queue for slot.... +17:30:10 ============================================================================ +17:30:10 Slot Id : <339> +17:30:10 Transaction Type : RESPONSE +17:30:10 Received From : +17:30:10 ============================================================================ +17:30:10 FNo. Len. Field Value +17:30:10 ============================================================================ +17:30:10 [ 1] [ 4] [0210] +17:30:10 [ 2] [ 16] [6688990040072561] +17:30:10 [ 3] [ 6] [011000] +17:30:10 [ 4] [ 12] [000100000000] +17:30:10 [ 7] [ 10] [0320173003] +17:30:10 [ 11] [ 6] [816189] +17:30:10 [ 12] [ 6] [173003] +17:30:10 [ 13] [ 4] [0320] +17:30:10 [ 15] [ 4] [0320] +17:30:10 [ 18] [ 4] [6011] +17:30:10 [ 22] [ 3] [021] +17:30:10 [ 32] [ 6] [621354] +17:30:10 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:30:10 [ 37] [ 12] [507903499677] +17:30:10 [ 38] [ 6] [172758] +17:30:10 [ 39] [ 2] [55] +17:30:10 [ 41] [ 8] [06002200] +17:30:10 [ 49] [ 3] [418] +17:30:10 ============================================================================ +17:30:10 Calculate Source COMM Id = 0 +17:30:10 ============================================================================ +17:30:10 + + +waiting on router queue for slot.... +17:30:20 ============================================================================ +17:30:20 Slot Id : <352> +17:30:20 Transaction Type : REQUEST +17:30:20 Received From : +17:30:20 ============================================================================ +17:30:20 FNo. Len. Field Value +17:30:20 ============================================================================ +17:30:20 [ 1] [ 4] [0800] +17:30:20 [ 7] [ 10] [0320102927] +17:30:20 [ 11] [ 6] [157472] +17:30:20 [ 70] [ 3] [301] +17:30:20 ============================================================================ +17:30:20 + + +waiting on router queue for slot.... +17:30:20 Sending to : +17:30:20 ============================================================================ +17:30:20 ============================================================================ +17:30:20 Slot Id : <352> +17:30:20 Transaction Type : RESPONSE +17:30:20 Received From : +17:30:20 ============================================================================ +17:30:20 FNo. Len. Field Value +17:30:20 ============================================================================ +17:30:20 [ 1] [ 4] [0810] +17:30:20 [ 7] [ 10] [0320102927] +17:30:20 [ 11] [ 6] [157472] +17:30:20 [ 39] [ 2] [00] +17:30:20 [ 70] [ 3] [301] +17:30:20 ============================================================================ +17:30:20 Calculate Source COMM Id = 2 +17:30:20 ============================================================================ +17:30:20 + + +waiting on router queue for slot.... +17:30:25 ============================================================================ +17:30:25 Slot Id : <309> +17:30:25 Transaction Type : REQUEST +17:30:25 Received From : +17:30:25 ============================================================================ +17:30:25 FNo. Len. Field Value +17:30:25 ============================================================================ +17:30:25 [ 1] [ 4] [0200] +17:30:25 [ 2] [ 16] [6213542000053240] +17:30:25 [ 3] [ 6] [010000] +17:30:25 [ 4] [ 12] [000050000000] +17:30:25 [ 7] [ 10] [0320102932] +17:30:25 [ 11] [ 6] [270886] +17:30:25 [ 12] [ 6] [172932] +17:30:25 [ 13] [ 4] [0320] +17:30:25 [ 14] [ 4] [4912] +17:30:25 [ 15] [ 4] [0320] +17:30:25 [ 18] [ 4] [6011] +17:30:25 [ 19] [ 3] [418] +17:30:25 [ 22] [ 3] [021] +17:30:25 [ 25] [ 2] [01] +17:30:25 [ 28] [ 9] [D00002000] +17:30:25 [ 32] [ 6] [180893] +17:30:25 [ 35] [ 32] [6213542000053240=491212015324057] +17:30:25 [ 37] [ 12] [507910270886] +17:30:25 [ 41] [ 8] [0102SAPA] +17:30:25 [ 42] [ 15] [999999 ] +17:30:25 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +17:30:25 [ 49] [ 3] [418] +17:30:25 [ 52] [ 16] [12E11F60BFD7A238] +17:30:25 ============================================================================ +17:30:25 + + +waiting on router queue for slot.... +17:30:25 Sending to : +17:30:25 ============================================================================ +17:30:25 Sending to : +17:30:25 ============================================================================ +17:30:25 ============================================================================ +17:30:25 Slot Id : <309> +17:30:25 Transaction Type : REQUEST +17:30:25 Received From : +17:30:25 ============================================================================ +17:30:25 FNo. Len. Field Value +17:30:25 ============================================================================ +17:30:25 [ 1] [ 4] [0200] +17:30:25 [ 2] [ 16] [6213542000053240] +17:30:25 [ 3] [ 6] [010000] +17:30:25 [ 4] [ 12] [000050000000] +17:30:25 [ 7] [ 10] [0320102932] +17:30:25 [ 11] [ 6] [270886] +17:30:25 [ 12] [ 6] [172932] +17:30:25 [ 13] [ 4] [0320] +17:30:25 [ 14] [ 4] [4912] +17:30:25 [ 15] [ 4] [0320] +17:30:25 [ 18] [ 4] [6011] +17:30:25 [ 19] [ 3] [418] +17:30:25 [ 22] [ 3] [021] +17:30:25 [ 25] [ 2] [01] +17:30:25 [ 28] [ 9] [D00002000] +17:30:25 [ 32] [ 6] [180893] +17:30:25 [ 35] [ 32] [6213542000053240=491212015324057] +17:30:25 [ 37] [ 12] [507910270886] +17:30:25 [ 41] [ 8] [0102SAPA] +17:30:25 [ 42] [ 15] [999999 ] +17:30:25 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +17:30:25 [ 49] [ 3] [418] +17:30:25 [ 52] [ 16] [12E11F60BFD7A238] +17:30:25 ============================================================================ +17:30:25 + + +waiting on router queue for slot.... +17:30:25 Sending to : +17:30:25 ============================================================================ +17:30:25 ============================================================================ +17:30:25 Slot Id : <309> +17:30:25 Transaction Type : REQUEST +17:30:25 Received From : +17:30:25 ============================================================================ +17:30:25 FNo. Len. Field Value +17:30:25 ============================================================================ +17:30:25 [ 1] [ 4] [0200] +17:30:25 [ 2] [ 16] [6213542000053240] +17:30:25 [ 3] [ 6] [010000] +17:30:25 [ 4] [ 12] [000050000000] +17:30:25 [ 7] [ 10] [0320102932] +17:30:25 [ 11] [ 6] [270886] +17:30:25 [ 12] [ 6] [172932] +17:30:25 [ 13] [ 4] [0320] +17:30:25 [ 14] [ 4] [4912] +17:30:25 [ 15] [ 4] [0320] +17:30:25 [ 18] [ 4] [6011] +17:30:25 [ 19] [ 3] [418] +17:30:25 [ 22] [ 3] [021] +17:30:25 [ 25] [ 2] [01] +17:30:25 [ 28] [ 9] [D00002000] +17:30:25 [ 32] [ 6] [180893] +17:30:25 [ 35] [ 32] [6213542000053240=491212015324057] +17:30:25 [ 37] [ 12] [507910270886] +17:30:25 [ 41] [ 8] [0102SAPA] +17:30:25 [ 42] [ 15] [999999 ] +17:30:25 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +17:30:25 [ 49] [ 3] [418] +17:30:25 [ 52] [ 16] [E47D126B2ADFAB28] +17:30:25 ============================================================================ +17:30:25 + + +waiting on router queue for slot.... +17:30:25 Sending to : <0> +17:30:25 ============================================================================ +17:30:26 ============================================================================ +17:30:26 Slot Id : <309> +17:30:26 Transaction Type : RESPONSE +17:30:26 Received From : +17:30:26 ============================================================================ +17:30:26 FNo. Len. Field Value +17:30:26 ============================================================================ +17:30:26 [ 1] [ 4] [0210] +17:30:26 [ 2] [ 16] [6213542000053240] +17:30:26 [ 3] [ 6] [010000] +17:30:26 [ 4] [ 12] [000050000000] +17:30:26 [ 7] [ 10] [0320102932] +17:30:26 [ 11] [ 6] [270886] +17:30:26 [ 12] [ 6] [172932] +17:30:26 [ 13] [ 4] [0320] +17:30:26 [ 15] [ 4] [0320] +17:30:26 [ 18] [ 4] [6011] +17:30:26 [ 19] [ 3] [418] +17:30:26 [ 32] [ 6] [180893] +17:30:26 [ 35] [ 32] [6213542000053240=491212015324057] +17:30:26 [ 37] [ 12] [507910270886] +17:30:26 [ 38] [ 6] [975389] +17:30:26 [ 39] [ 2] [00] +17:30:26 [ 41] [ 8] [0102SAPA] +17:30:26 [ 49] [ 3] [418] +17:30:26 [ 54] [ 40] [0001418C0001086248910002418C000108624891] +17:30:26 ============================================================================ +17:30:26 Sending to : +17:30:26 ============================================================================ +17:30:26 + + +waiting on router queue for slot.... +17:30:28 ============================================================================ +17:30:28 Slot Id : <309> +17:30:28 Transaction Type : RESPONSE +17:30:28 Received From : +17:30:28 ============================================================================ +17:30:28 FNo. Len. Field Value +17:30:28 ============================================================================ +17:30:28 [ 1] [ 4] [0210] +17:30:28 [ 2] [ 16] [6213542000053240] +17:30:28 [ 3] [ 6] [010000] +17:30:28 [ 4] [ 12] [000050000000] +17:30:28 [ 7] [ 10] [0320102932] +17:30:28 [ 11] [ 6] [270886] +17:30:28 [ 12] [ 6] [172932] +17:30:28 [ 13] [ 4] [0320] +17:30:28 [ 15] [ 4] [0320] +17:30:28 [ 18] [ 4] [6011] +17:30:28 [ 19] [ 3] [418] +17:30:28 [ 32] [ 6] [180893] +17:30:28 [ 35] [ 32] [6213542000053240=491212015324057] +17:30:28 [ 37] [ 12] [507910270886] +17:30:28 [ 38] [ 6] [975389] +17:30:28 [ 39] [ 2] [00] +17:30:28 [ 41] [ 8] [0102SAPA] +17:30:28 [ 49] [ 3] [418] +17:30:28 [ 54] [ 40] [0001418C0001086248910002418C000108624891] +17:30:28 ============================================================================ +17:30:28 Calculate Source COMM Id = 2 +17:30:28 ============================================================================ +17:30:28 + + +waiting on router queue for slot.... +17:30:31 ============================================================================ +17:30:31 Slot Id : <348> +17:30:31 Transaction Type : REQUEST +17:30:31 Received From : +17:30:31 ============================================================================ +17:30:31 FNo. Len. Field Value +17:30:31 ============================================================================ +17:30:31 [ 1] [ 4] [0800] +17:30:31 [ 2] [ 5] [02531] +17:30:31 [ 3] [ 6] [579178] +17:30:31 [ 7] [ 10] [0320103031] +17:30:31 [ 11] [ 6] [807428] +17:30:31 [ 15] [ 10] [0320103031] +17:30:31 [ 37] [ 11] [57917807428] +17:30:31 [ 70] [ 3] [001] +17:30:31 ============================================================================ +17:30:31 + + +waiting on router queue for slot.... +17:30:31 ============================================================================ +17:30:31 Slot Id : <348> +17:30:31 Transaction Type : RESPONSE +17:30:31 Received From : +17:30:31 ============================================================================ +17:30:31 FNo. Len. Field Value +17:30:31 ============================================================================ +17:30:31 [ 1] [ 4] [0810] +17:30:31 [ 7] [ 10] [0320103031] +17:30:31 [ 11] [ 6] [807428] +17:30:31 [ 15] [ 4] [0320] +17:30:31 [ 37] [ 12] [57917807428] +17:30:31 [ 39] [ 2] [00] +17:30:31 [ 70] [ 3] [001] +17:30:31 ============================================================================ +17:30:31 Sending to : +17:30:31 ============================================================================ +17:30:31 + + +waiting on router queue for slot.... +17:30:41 ============================================================================ +17:30:41 Slot Id : <329> +17:30:41 Transaction Type : REQUEST +17:30:41 Received From : +17:30:41 ============================================================================ +17:30:41 FNo. Len. Field Value +17:30:41 ============================================================================ +17:30:41 [ 1] [ 4] [0800] +17:30:41 [ 7] [ 10] [0320102947] +17:30:41 [ 11] [ 6] [157473] +17:30:41 [ 70] [ 3] [301] +17:30:41 ============================================================================ +17:30:41 + + +waiting on router queue for slot.... +17:30:41 Sending to : +17:30:41 ============================================================================ +17:30:41 ============================================================================ +17:30:41 Slot Id : <329> +17:30:41 Transaction Type : RESPONSE +17:30:41 Received From : +17:30:41 ============================================================================ +17:30:41 FNo. Len. Field Value +17:30:41 ============================================================================ +17:30:41 [ 1] [ 4] [0810] +17:30:41 [ 7] [ 10] [0320102947] +17:30:41 [ 11] [ 6] [157473] +17:30:41 [ 39] [ 2] [00] +17:30:41 [ 70] [ 3] [301] +17:30:41 ============================================================================ +17:30:41 Calculate Source COMM Id = 2 +17:30:41 ============================================================================ +17:30:41 + + +waiting on router queue for slot.... +17:30:46 ============================================================================ +17:30:46 Slot Id : <347> +17:30:46 Transaction Type : REQUEST +17:30:46 Received From : +17:30:46 ============================================================================ +17:30:46 FNo. Len. Field Value +17:30:46 ============================================================================ +17:30:46 [ 1] [ 4] [0800] +17:30:46 [ 7] [ 10] [0321004235] +17:30:46 [ 11] [ 6] [174235] +17:30:46 [ 37] [ 12] [57917174235] +17:30:46 [ 70] [ 3] [301] +17:30:46 ============================================================================ +17:30:46 + + +waiting on router queue for slot.... +17:30:46 Sending to : +17:30:46 ============================================================================ +17:30:46 ============================================================================ +17:30:46 Slot Id : <347> +17:30:46 Transaction Type : RESPONSE +17:30:46 Received From : +17:30:46 ============================================================================ +17:30:46 FNo. Len. Field Value +17:30:46 ============================================================================ +17:30:46 [ 1] [ 4] [0810] +17:30:46 [ 7] [ 10] [0321004235] +17:30:46 [ 11] [ 6] [174235] +17:30:46 [ 37] [ 12] [579171742350] +17:30:46 [ 39] [ 2] [00] +17:30:46 [ 70] [ 3] [810] +17:30:46 ============================================================================ +17:30:46 Calculate Source COMM Id = 6 +17:30:46 ============================================================================ +17:30:46 + + +waiting on router queue for slot.... +17:30:51 ============================================================================ +17:30:51 Slot Id : <328> +17:30:51 Transaction Type : REQUEST +17:30:51 Received From : +17:30:51 ============================================================================ +17:30:51 FNo. Len. Field Value +17:30:51 ============================================================================ +17:30:51 [ 1] [ 4] [0800] +17:30:51 [ 7] [ 10] [0320102958] +17:30:51 [ 11] [ 6] [157474] +17:30:51 [ 70] [ 3] [301] +17:30:51 ============================================================================ +17:30:51 + + +waiting on router queue for slot.... +17:30:51 Sending to : +17:30:51 ============================================================================ +17:30:51 ============================================================================ +17:30:51 Slot Id : <328> +17:30:51 Transaction Type : RESPONSE +17:30:51 Received From : +17:30:51 ============================================================================ +17:30:51 FNo. Len. Field Value +17:30:51 ============================================================================ +17:30:51 [ 1] [ 4] [0810] +17:30:51 [ 7] [ 10] [0320102958] +17:30:51 [ 11] [ 6] [157474] +17:30:51 [ 39] [ 2] [00] +17:30:51 [ 70] [ 3] [301] +17:30:51 ============================================================================ +17:30:51 Calculate Source COMM Id = 2 +17:30:51 ============================================================================ +17:30:51 + + +waiting on router queue for slot.... +17:31:01 ============================================================================ +17:31:01 Slot Id : <350> +17:31:01 Transaction Type : REQUEST +17:31:01 Received From : +17:31:01 ============================================================================ +17:31:01 FNo. Len. Field Value +17:31:01 ============================================================================ +17:31:01 [ 1] [ 4] [0200] +17:31:01 [ 2] [ 16] [6688990600570707] +17:31:01 [ 3] [ 6] [010000] +17:31:01 [ 4] [ 12] [000050000000] +17:31:01 [ 7] [ 10] [0320103007] +17:31:01 [ 11] [ 6] [270894] +17:31:01 [ 12] [ 6] [173007] +17:31:01 [ 13] [ 4] [0320] +17:31:01 [ 14] [ 4] [4012] +17:31:01 [ 15] [ 4] [0320] +17:31:01 [ 18] [ 4] [6011] +17:31:01 [ 19] [ 3] [418] +17:31:01 [ 22] [ 3] [021] +17:31:01 [ 25] [ 2] [01] +17:31:01 [ 28] [ 9] [D00002000] +17:31:01 [ 32] [ 6] [180893] +17:31:01 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:31:01 [ 37] [ 12] [507910270894] +17:31:01 [ 41] [ 8] [0261PSL1] +17:31:01 [ 42] [ 15] [999999 ] +17:31:01 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +17:31:01 [ 49] [ 3] [418] +17:31:01 [ 52] [ 16] [E1676DFEA42D2CBD] +17:31:01 ============================================================================ +17:31:01 + + +waiting on router queue for slot.... +17:31:01 Sending to : +17:31:01 ============================================================================ +17:31:01 Sending to : +17:31:01 ============================================================================ +17:31:01 ============================================================================ +17:31:01 Slot Id : <350> +17:31:01 Transaction Type : REQUEST +17:31:01 Received From : +17:31:01 ============================================================================ +17:31:01 FNo. Len. Field Value +17:31:01 ============================================================================ +17:31:01 [ 1] [ 4] [0200] +17:31:01 [ 2] [ 16] [6688990600570707] +17:31:01 [ 3] [ 6] [010000] +17:31:01 [ 4] [ 12] [000050000000] +17:31:01 [ 7] [ 10] [0320103007] +17:31:01 [ 11] [ 6] [270894] +17:31:01 [ 12] [ 6] [173007] +17:31:01 [ 13] [ 4] [0320] +17:31:01 [ 14] [ 4] [4012] +17:31:01 [ 15] [ 4] [0320] +17:31:01 [ 18] [ 4] [6011] +17:31:01 [ 19] [ 3] [418] +17:31:01 [ 22] [ 3] [021] +17:31:01 [ 25] [ 2] [01] +17:31:01 [ 28] [ 9] [D00002000] +17:31:01 [ 32] [ 6] [180893] +17:31:01 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:31:01 [ 37] [ 12] [507910270894] +17:31:01 [ 41] [ 8] [0261PSL1] +17:31:01 [ 42] [ 15] [999999 ] +17:31:01 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +17:31:01 [ 49] [ 3] [418] +17:31:01 [ 52] [ 16] [E1676DFEA42D2CBD] +17:31:01 ============================================================================ +17:31:01 + + +waiting on router queue for slot.... +17:31:01 Sending to : +17:31:01 ============================================================================ +17:31:01 ============================================================================ +17:31:01 Slot Id : <350> +17:31:01 Transaction Type : REQUEST +17:31:01 Received From : +17:31:01 ============================================================================ +17:31:01 FNo. Len. Field Value +17:31:01 ============================================================================ +17:31:01 [ 1] [ 4] [0200] +17:31:01 [ 2] [ 16] [6688990600570707] +17:31:01 [ 3] [ 6] [010000] +17:31:01 [ 4] [ 12] [000050000000] +17:31:01 [ 7] [ 10] [0320103007] +17:31:01 [ 11] [ 6] [270894] +17:31:01 [ 12] [ 6] [173007] +17:31:01 [ 13] [ 4] [0320] +17:31:01 [ 14] [ 4] [4012] +17:31:01 [ 15] [ 4] [0320] +17:31:01 [ 18] [ 4] [6011] +17:31:01 [ 19] [ 3] [418] +17:31:01 [ 22] [ 3] [021] +17:31:01 [ 25] [ 2] [01] +17:31:01 [ 28] [ 9] [D00002000] +17:31:01 [ 32] [ 6] [180893] +17:31:01 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:31:01 [ 37] [ 12] [507910270894] +17:31:01 [ 41] [ 8] [0261PSL1] +17:31:01 [ 42] [ 15] [999999 ] +17:31:01 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +17:31:01 [ 49] [ 3] [418] +17:31:01 [ 52] [ 16] [7C5AB8F7399D6E8D] +17:31:01 ============================================================================ +17:31:01 + + +waiting on router queue for slot.... +17:31:01 Sending to : <0> +17:31:01 ============================================================================ +17:31:02 ============================================================================ +17:31:02 Slot Id : <350> +17:31:02 Transaction Type : RESPONSE +17:31:02 Received From : +17:31:02 ============================================================================ +17:31:02 FNo. Len. Field Value +17:31:02 ============================================================================ +17:31:02 [ 1] [ 4] [0210] +17:31:02 [ 2] [ 16] [6688990600570707] +17:31:02 [ 3] [ 6] [010000] +17:31:02 [ 4] [ 12] [000050000000] +17:31:02 [ 7] [ 10] [0320103007] +17:31:02 [ 11] [ 6] [270894] +17:31:02 [ 12] [ 6] [173007] +17:31:02 [ 13] [ 4] [0320] +17:31:02 [ 15] [ 4] [0320] +17:31:02 [ 18] [ 4] [6011] +17:31:02 [ 19] [ 3] [418] +17:31:02 [ 22] [ 3] [021] +17:31:02 [ 32] [ 6] [180893] +17:31:02 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:31:02 [ 37] [ 12] [507910270894] +17:31:02 [ 39] [ 2] [14] +17:31:02 [ 41] [ 8] [0261PSL1] +17:31:02 [ 49] [ 3] [418] +17:31:02 ============================================================================ +17:31:02 Sending to : +17:31:02 ============================================================================ +17:31:02 + + +waiting on router queue for slot.... +17:31:02 ============================================================================ +17:31:02 Slot Id : <346> +17:31:02 Transaction Type : REQUEST +17:31:02 Received From : +17:31:02 ============================================================================ +17:31:02 FNo. Len. Field Value +17:31:02 ============================================================================ +17:31:02 [ 1] [ 4] [0800] +17:31:02 [ 7] [ 10] [0320103009] +17:31:02 [ 11] [ 6] [157475] +17:31:02 [ 70] [ 3] [301] +17:31:02 ============================================================================ +17:31:02 + + +waiting on router queue for slot.... +17:31:02 Sending to : +17:31:02 ============================================================================ +17:31:02 ============================================================================ +17:31:02 Slot Id : <346> +17:31:02 Transaction Type : RESPONSE +17:31:02 Received From : +17:31:02 ============================================================================ +17:31:02 FNo. Len. Field Value +17:31:02 ============================================================================ +17:31:02 [ 1] [ 4] [0810] +17:31:02 [ 7] [ 10] [0320103009] +17:31:02 [ 11] [ 6] [157475] +17:31:02 [ 39] [ 2] [00] +17:31:02 [ 70] [ 3] [301] +17:31:02 ============================================================================ +17:31:02 Calculate Source COMM Id = 2 +17:31:02 ============================================================================ +17:31:02 + + +waiting on router queue for slot.... +17:31:03 ============================================================================ +17:31:03 Slot Id : <350> +17:31:03 Transaction Type : RESPONSE +17:31:03 Received From : +17:31:03 ============================================================================ +17:31:03 FNo. Len. Field Value +17:31:03 ============================================================================ +17:31:03 [ 1] [ 4] [0210] +17:31:03 [ 2] [ 16] [6688990600570707] +17:31:03 [ 3] [ 6] [010000] +17:31:03 [ 4] [ 12] [000050000000] +17:31:03 [ 7] [ 10] [0320103007] +17:31:03 [ 11] [ 6] [270894] +17:31:03 [ 12] [ 6] [173007] +17:31:03 [ 13] [ 4] [0320] +17:31:03 [ 15] [ 4] [0320] +17:31:03 [ 18] [ 4] [6011] +17:31:03 [ 19] [ 3] [418] +17:31:03 [ 22] [ 3] [021] +17:31:03 [ 32] [ 6] [180893] +17:31:03 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:31:03 [ 37] [ 12] [507910270894] +17:31:03 [ 39] [ 2] [14] +17:31:03 [ 41] [ 8] [0261PSL1] +17:31:03 [ 49] [ 3] [418] +17:31:03 ============================================================================ +17:31:03 Calculate Source COMM Id = 2 +17:31:03 ============================================================================ +17:31:03 + + +waiting on router queue for slot.... +17:31:05 ============================================================================ +17:31:05 Slot Id : <337> +17:31:05 Transaction Type : REQUEST +17:31:05 Received From : +17:31:05 ============================================================================ +17:31:05 FNo. Len. Field Value +17:31:05 ============================================================================ +17:31:05 [ 1] [ 4] [0200] +17:31:05 [ 2] [ 16] [6688990103528608] +17:31:05 [ 3] [ 6] [012000] +17:31:05 [ 4] [ 12] [000100000000] +17:31:05 [ 7] [ 10] [0320173100] +17:31:05 [ 11] [ 6] [816440] +17:31:05 [ 12] [ 6] [173100] +17:31:05 [ 13] [ 4] [0320] +17:31:05 [ 15] [ 4] [0320] +17:31:05 [ 18] [ 4] [6011] +17:31:05 [ 22] [ 3] [900] +17:31:05 [ 25] [ 2] [02] +17:31:05 [ 28] [ 9] [D00002000] +17:31:05 [ 32] [ 6] [621354] +17:31:05 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:31:05 [ 37] [ 12] [507903489484] +17:31:05 [ 41] [ 8] [06002100] +17:31:05 [ 42] [ 15] [NATIVE ] +17:31:05 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:31:05 [ 49] [ 3] [418] +17:31:05 [ 52] [ 16] [7D80129F3F4E39ED] +17:31:05 ============================================================================ +17:31:05 + + +waiting on router queue for slot.... +17:31:05 Sending to : +17:31:05 ============================================================================ +17:31:05 Sending to : +17:31:05 ============================================================================ +17:31:05 ============================================================================ +17:31:05 Slot Id : <337> +17:31:05 Transaction Type : REQUEST +17:31:05 Received From : +17:31:05 ============================================================================ +17:31:05 FNo. Len. Field Value +17:31:05 ============================================================================ +17:31:05 [ 1] [ 4] [0200] +17:31:05 [ 2] [ 16] [6688990103528608] +17:31:05 [ 3] [ 6] [012000] +17:31:05 [ 4] [ 12] [000100000000] +17:31:05 [ 7] [ 10] [0320173100] +17:31:05 [ 11] [ 6] [816440] +17:31:05 [ 12] [ 6] [173100] +17:31:05 [ 13] [ 4] [0320] +17:31:05 [ 15] [ 4] [0320] +17:31:05 [ 18] [ 4] [6011] +17:31:05 [ 22] [ 3] [900] +17:31:05 [ 25] [ 2] [02] +17:31:05 [ 28] [ 9] [D00002000] +17:31:05 [ 32] [ 6] [621354] +17:31:05 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:31:05 [ 37] [ 12] [507903489484] +17:31:05 [ 41] [ 8] [06002100] +17:31:05 [ 42] [ 15] [NATIVE ] +17:31:05 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:31:05 [ 49] [ 3] [418] +17:31:05 [ 52] [ 16] [7D80129F3F4E39ED] +17:31:05 ============================================================================ +17:31:05 + + +waiting on router queue for slot.... +17:31:05 Sending to : +17:31:05 ============================================================================ +17:31:05 ============================================================================ +17:31:05 Slot Id : <337> +17:31:05 Transaction Type : REQUEST +17:31:05 Received From : +17:31:05 ============================================================================ +17:31:05 FNo. Len. Field Value +17:31:05 ============================================================================ +17:31:05 [ 1] [ 4] [0200] +17:31:05 [ 2] [ 16] [6688990103528608] +17:31:05 [ 3] [ 6] [012000] +17:31:05 [ 4] [ 12] [000100000000] +17:31:05 [ 7] [ 10] [0320173100] +17:31:05 [ 11] [ 6] [816440] +17:31:05 [ 12] [ 6] [173100] +17:31:05 [ 13] [ 4] [0320] +17:31:05 [ 15] [ 4] [0320] +17:31:05 [ 18] [ 4] [6011] +17:31:05 [ 22] [ 3] [900] +17:31:05 [ 25] [ 2] [02] +17:31:05 [ 28] [ 9] [D00002000] +17:31:05 [ 32] [ 6] [621354] +17:31:05 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:31:05 [ 37] [ 12] [507903489484] +17:31:05 [ 41] [ 8] [06002100] +17:31:05 [ 42] [ 15] [NATIVE ] +17:31:05 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:31:05 [ 49] [ 3] [418] +17:31:05 [ 52] [ 16] [969CFA9A1BA5B06D] +17:31:05 ============================================================================ +17:31:05 + + +waiting on router queue for slot.... +17:31:05 Sending to : <4> +17:31:05 ============================================================================ +17:31:07 ============================================================================ +17:31:07 Slot Id : <337> +17:31:07 Transaction Type : RESPONSE +17:31:07 Received From : +17:31:07 ============================================================================ +17:31:07 FNo. Len. Field Value +17:31:07 ============================================================================ +17:31:07 [ 1] [ 4] [0210] +17:31:07 [ 2] [ 16] [6688990103528608] +17:31:07 [ 3] [ 6] [012000] +17:31:07 [ 4] [ 12] [000100000000] +17:31:07 [ 11] [ 6] [816440] +17:31:07 [ 12] [ 6] [173100] +17:31:07 [ 15] [ 4] [0320] +17:31:07 [ 18] [ 4] [6011] +17:31:07 [ 32] [ 6] [621354] +17:31:07 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:31:07 [ 37] [ 12] [507903489484] +17:31:07 [ 38] [ 6] [714313] +17:31:07 [ 39] [ 2] [00] +17:31:07 [ 41] [ 8] [06002100] +17:31:07 [ 49] [ 3] [418] +17:31:07 [ 54] [ 20] [2002418C000036485122] +17:31:07 ============================================================================ +17:31:07 Sending to : +17:31:07 ============================================================================ +17:31:07 + + +waiting on router queue for slot.... +17:31:08 ============================================================================ +17:31:08 Slot Id : <337> +17:31:08 Transaction Type : RESPONSE +17:31:08 Received From : +17:31:08 ============================================================================ +17:31:08 FNo. Len. Field Value +17:31:08 ============================================================================ +17:31:08 [ 1] [ 4] [0210] +17:31:08 [ 2] [ 16] [6688990103528608] +17:31:08 [ 3] [ 6] [012000] +17:31:08 [ 4] [ 12] [000100000000] +17:31:08 [ 11] [ 6] [816440] +17:31:08 [ 12] [ 6] [173100] +17:31:08 [ 15] [ 4] [0320] +17:31:08 [ 18] [ 4] [6011] +17:31:08 [ 32] [ 6] [621354] +17:31:08 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:31:08 [ 37] [ 12] [507903489484] +17:31:08 [ 38] [ 6] [714313] +17:31:08 [ 39] [ 2] [00] +17:31:08 [ 41] [ 8] [06002100] +17:31:08 [ 49] [ 3] [418] +17:31:08 [ 54] [ 20] [2002418C000036485122] +17:31:08 ============================================================================ +17:31:08 Calculate Source COMM Id = 0 +17:31:08 ============================================================================ +17:31:08 + + +waiting on router queue for slot.... +17:31:13 ============================================================================ +17:31:13 Slot Id : <357> +17:31:13 Transaction Type : REQUEST +17:31:13 Received From : +17:31:13 ============================================================================ +17:31:13 FNo. Len. Field Value +17:31:13 ============================================================================ +17:31:13 [ 1] [ 4] [0200] +17:31:13 [ 2] [ 16] [6688990040072561] +17:31:13 [ 3] [ 6] [011000] +17:31:13 [ 4] [ 12] [000100000000] +17:31:13 [ 7] [ 10] [0320173108] +17:31:13 [ 11] [ 6] [816472] +17:31:13 [ 12] [ 6] [173108] +17:31:13 [ 13] [ 4] [0320] +17:31:13 [ 15] [ 4] [0320] +17:31:13 [ 18] [ 4] [6011] +17:31:13 [ 22] [ 3] [900] +17:31:13 [ 25] [ 2] [02] +17:31:13 [ 28] [ 9] [D00002000] +17:31:13 [ 32] [ 6] [621354] +17:31:13 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:31:13 [ 37] [ 12] [507903499679] +17:31:13 [ 41] [ 8] [06002200] +17:31:13 [ 42] [ 15] [NATIVE ] +17:31:13 [ 43] [ 40] [Beng Market Beng LAO] +17:31:13 [ 49] [ 3] [418] +17:31:13 [ 52] [ 16] [1615A7C7AF0C2A16] +17:31:13 ============================================================================ +17:31:13 + + +waiting on router queue for slot.... +17:31:13 Sending to : +17:31:13 ============================================================================ +17:31:13 Sending to : +17:31:13 ============================================================================ +17:31:13 ============================================================================ +17:31:13 Slot Id : <357> +17:31:13 Transaction Type : REQUEST +17:31:13 Received From : +17:31:13 ============================================================================ +17:31:13 FNo. Len. Field Value +17:31:13 ============================================================================ +17:31:13 [ 1] [ 4] [0200] +17:31:13 [ 2] [ 16] [6688990040072561] +17:31:13 [ 3] [ 6] [011000] +17:31:13 [ 4] [ 12] [000100000000] +17:31:13 [ 7] [ 10] [0320173108] +17:31:13 [ 11] [ 6] [816472] +17:31:13 [ 12] [ 6] [173108] +17:31:13 [ 13] [ 4] [0320] +17:31:13 [ 15] [ 4] [0320] +17:31:13 [ 18] [ 4] [6011] +17:31:13 [ 22] [ 3] [900] +17:31:13 [ 25] [ 2] [02] +17:31:13 [ 28] [ 9] [D00002000] +17:31:13 [ 32] [ 6] [621354] +17:31:13 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:31:13 [ 37] [ 12] [507903499679] +17:31:13 [ 41] [ 8] [06002200] +17:31:13 [ 42] [ 15] [NATIVE ] +17:31:13 [ 43] [ 40] [Beng Market Beng LAO] +17:31:13 [ 49] [ 3] [418] +17:31:13 [ 52] [ 16] [1615A7C7AF0C2A16] +17:31:13 ============================================================================ +17:31:13 + + +waiting on router queue for slot.... +17:31:13 Sending to : +17:31:13 ============================================================================ +17:31:13 ============================================================================ +17:31:13 Slot Id : <357> +17:31:13 Transaction Type : REQUEST +17:31:13 Received From : +17:31:13 ============================================================================ +17:31:13 FNo. Len. Field Value +17:31:13 ============================================================================ +17:31:13 [ 1] [ 4] [0200] +17:31:13 [ 2] [ 16] [6688990040072561] +17:31:13 [ 3] [ 6] [011000] +17:31:13 [ 4] [ 12] [000100000000] +17:31:13 [ 7] [ 10] [0320173108] +17:31:13 [ 11] [ 6] [816472] +17:31:13 [ 12] [ 6] [173108] +17:31:13 [ 13] [ 4] [0320] +17:31:13 [ 15] [ 4] [0320] +17:31:13 [ 18] [ 4] [6011] +17:31:13 [ 22] [ 3] [900] +17:31:13 [ 25] [ 2] [02] +17:31:13 [ 28] [ 9] [D00002000] +17:31:13 [ 32] [ 6] [621354] +17:31:13 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:31:13 [ 37] [ 12] [507903499679] +17:31:13 [ 41] [ 8] [06002200] +17:31:13 [ 42] [ 15] [NATIVE ] +17:31:13 [ 43] [ 40] [Beng Market Beng LAO] +17:31:13 [ 49] [ 3] [418] +17:31:13 [ 52] [ 16] [61698AD9FD2ABA30] +17:31:13 ============================================================================ +17:31:13 + + +waiting on router queue for slot.... +17:31:13 Sending to : <4> +17:31:13 ============================================================================ +17:31:13 ============================================================================ +17:31:13 Slot Id : <357> +17:31:13 Transaction Type : RESPONSE +17:31:13 Received From : +17:31:13 ============================================================================ +17:31:13 FNo. Len. Field Value +17:31:13 ============================================================================ +17:31:13 [ 1] [ 4] [0210] +17:31:13 [ 2] [ 16] [6688990040072561] +17:31:13 [ 3] [ 6] [011000] +17:31:13 [ 4] [ 12] [000100000000] +17:31:13 [ 7] [ 10] [0320173108] +17:31:13 [ 11] [ 6] [816472] +17:31:13 [ 12] [ 6] [173108] +17:31:13 [ 13] [ 4] [0320] +17:31:13 [ 15] [ 4] [0320] +17:31:13 [ 18] [ 4] [6011] +17:31:13 [ 22] [ 3] [021] +17:31:13 [ 32] [ 6] [621354] +17:31:13 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:31:13 [ 37] [ 12] [507903499679] +17:31:13 [ 38] [ 6] [172903] +17:31:13 [ 39] [ 2] [55] +17:31:13 [ 41] [ 8] [06002200] +17:31:13 [ 49] [ 3] [418] +17:31:13 ============================================================================ +17:31:13 Sending to : +17:31:13 ============================================================================ +17:31:13 + + +waiting on router queue for slot.... +17:31:14 ============================================================================ +17:31:14 Slot Id : <357> +17:31:14 Transaction Type : RESPONSE +17:31:14 Received From : +17:31:14 ============================================================================ +17:31:14 FNo. Len. Field Value +17:31:14 ============================================================================ +17:31:14 [ 1] [ 4] [0210] +17:31:14 [ 2] [ 16] [6688990040072561] +17:31:14 [ 3] [ 6] [011000] +17:31:14 [ 4] [ 12] [000100000000] +17:31:14 [ 7] [ 10] [0320173108] +17:31:14 [ 11] [ 6] [816472] +17:31:14 [ 12] [ 6] [173108] +17:31:14 [ 13] [ 4] [0320] +17:31:14 [ 15] [ 4] [0320] +17:31:14 [ 18] [ 4] [6011] +17:31:14 [ 22] [ 3] [021] +17:31:14 [ 32] [ 6] [621354] +17:31:14 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:31:14 [ 37] [ 12] [507903499679] +17:31:14 [ 38] [ 6] [172903] +17:31:14 [ 39] [ 2] [55] +17:31:14 [ 41] [ 8] [06002200] +17:31:14 [ 49] [ 3] [418] +17:31:14 ============================================================================ +17:31:14 Calculate Source COMM Id = 0 +17:31:14 ============================================================================ +17:31:14 + + +waiting on router queue for slot.... +17:31:19 ============================================================================ +17:31:19 Slot Id : <332> +17:31:19 Transaction Type : REQUEST +17:31:19 Received From : +17:31:19 ============================================================================ +17:31:19 FNo. Len. Field Value +17:31:19 ============================================================================ +17:31:19 [ 1] [ 4] [0800] +17:31:19 [ 7] [ 10] [0320103026] +17:31:19 [ 11] [ 6] [157476] +17:31:19 [ 70] [ 3] [301] +17:31:19 ============================================================================ +17:31:19 + + +waiting on router queue for slot.... +17:31:19 Sending to : +17:31:19 ============================================================================ +17:31:19 ============================================================================ +17:31:19 Slot Id : <332> +17:31:19 Transaction Type : RESPONSE +17:31:19 Received From : +17:31:19 ============================================================================ +17:31:19 FNo. Len. Field Value +17:31:19 ============================================================================ +17:31:19 [ 1] [ 4] [0810] +17:31:19 [ 7] [ 10] [0320103026] +17:31:19 [ 11] [ 6] [157476] +17:31:19 [ 39] [ 2] [00] +17:31:19 [ 70] [ 3] [301] +17:31:19 ============================================================================ +17:31:19 Calculate Source COMM Id = 2 +17:31:19 ============================================================================ +17:31:19 + + +waiting on router queue for slot.... +17:31:22 ============================================================================ +17:31:22 Slot Id : <319> +17:31:22 Transaction Type : REQUEST +17:31:22 Received From : +17:31:22 ============================================================================ +17:31:22 FNo. Len. Field Value +17:31:22 ============================================================================ +17:31:22 [ 1] [ 4] [0800] +17:31:22 [ 7] [ 10] [0320102912] +17:31:22 [ 11] [ 6] [058063] +17:31:22 [ 37] [ 12] [57917058063] +17:31:22 [ 70] [ 3] [301] +17:31:22 ============================================================================ +17:31:22 + + +waiting on router queue for slot.... +17:31:22 Sending to : +17:31:22 ============================================================================ +17:31:22 ============================================================================ +17:31:22 Slot Id : <319> +17:31:22 Transaction Type : RESPONSE +17:31:22 Received From : +17:31:22 ============================================================================ +17:31:22 FNo. Len. Field Value +17:31:22 ============================================================================ +17:31:22 [ 1] [ 4] [0810] +17:31:22 [ 7] [ 10] [0320102912] +17:31:22 [ 11] [ 6] [058063] +17:31:22 [ 37] [ 12] [579170580630] +17:31:22 [ 39] [ 2] [00] +17:31:22 [ 70] [ 3] [810] +17:31:22 ============================================================================ +17:31:22 Calculate Source COMM Id = 4 +17:31:22 ============================================================================ +17:31:22 + + +waiting on router queue for slot.... +17:31:23 ============================================================================ +17:31:23 Slot Id : <365> +17:31:23 Transaction Type : REQUEST +17:31:23 Received From : +17:31:23 ============================================================================ +17:31:23 FNo. Len. Field Value +17:31:23 ============================================================================ +17:31:23 [ 1] [ 4] [0200] +17:31:23 [ 2] [ 16] [6688990106839705] +17:31:23 [ 3] [ 6] [010000] +17:31:23 [ 4] [ 12] [000200000000] +17:31:23 [ 7] [ 10] [0320103030] +17:31:23 [ 11] [ 6] [270899] +17:31:23 [ 12] [ 6] [173030] +17:31:23 [ 13] [ 4] [0320] +17:31:23 [ 14] [ 4] [4401] +17:31:23 [ 15] [ 4] [0320] +17:31:23 [ 18] [ 4] [6011] +17:31:23 [ 19] [ 3] [418] +17:31:23 [ 22] [ 3] [021] +17:31:23 [ 25] [ 2] [01] +17:31:23 [ 28] [ 9] [D00002000] +17:31:23 [ 32] [ 6] [180893] +17:31:23 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:31:23 [ 37] [ 12] [507910270899] +17:31:23 [ 41] [ 8] [0201ADD1] +17:31:23 [ 42] [ 15] [999999 ] +17:31:23 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +17:31:23 [ 49] [ 3] [418] +17:31:23 [ 52] [ 16] [637EB50393C7CB10] +17:31:23 ============================================================================ +17:31:23 + + +waiting on router queue for slot.... +17:31:23 Sending to : +17:31:23 ============================================================================ +17:31:23 Sending to : +17:31:23 ============================================================================ +17:31:24 ============================================================================ +17:31:24 Slot Id : <365> +17:31:24 Transaction Type : REQUEST +17:31:24 Received From : +17:31:24 ============================================================================ +17:31:24 FNo. Len. Field Value +17:31:24 ============================================================================ +17:31:24 [ 1] [ 4] [0200] +17:31:24 [ 2] [ 16] [6688990106839705] +17:31:24 [ 3] [ 6] [010000] +17:31:24 [ 4] [ 12] [000200000000] +17:31:24 [ 7] [ 10] [0320103030] +17:31:24 [ 11] [ 6] [270899] +17:31:24 [ 12] [ 6] [173030] +17:31:24 [ 13] [ 4] [0320] +17:31:24 [ 14] [ 4] [4401] +17:31:24 [ 15] [ 4] [0320] +17:31:24 [ 18] [ 4] [6011] +17:31:24 [ 19] [ 3] [418] +17:31:24 [ 22] [ 3] [021] +17:31:24 [ 25] [ 2] [01] +17:31:24 [ 28] [ 9] [D00002000] +17:31:24 [ 32] [ 6] [180893] +17:31:24 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:31:24 [ 37] [ 12] [507910270899] +17:31:24 [ 41] [ 8] [0201ADD1] +17:31:24 [ 42] [ 15] [999999 ] +17:31:24 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +17:31:24 [ 49] [ 3] [418] +17:31:24 [ 52] [ 16] [637EB50393C7CB10] +17:31:24 ============================================================================ +17:31:24 + + +waiting on router queue for slot.... +17:31:24 Sending to : +17:31:24 ============================================================================ +17:31:24 ============================================================================ +17:31:24 Slot Id : <365> +17:31:24 Transaction Type : REQUEST +17:31:24 Received From : +17:31:24 ============================================================================ +17:31:24 FNo. Len. Field Value +17:31:24 ============================================================================ +17:31:24 [ 1] [ 4] [0200] +17:31:24 [ 2] [ 16] [6688990106839705] +17:31:24 [ 3] [ 6] [010000] +17:31:24 [ 4] [ 12] [000200000000] +17:31:24 [ 7] [ 10] [0320103030] +17:31:24 [ 11] [ 6] [270899] +17:31:24 [ 12] [ 6] [173030] +17:31:24 [ 13] [ 4] [0320] +17:31:24 [ 14] [ 4] [4401] +17:31:24 [ 15] [ 4] [0320] +17:31:24 [ 18] [ 4] [6011] +17:31:24 [ 19] [ 3] [418] +17:31:24 [ 22] [ 3] [021] +17:31:24 [ 25] [ 2] [01] +17:31:24 [ 28] [ 9] [D00002000] +17:31:24 [ 32] [ 6] [180893] +17:31:24 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:31:24 [ 37] [ 12] [507910270899] +17:31:24 [ 41] [ 8] [0201ADD1] +17:31:24 [ 42] [ 15] [999999 ] +17:31:24 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +17:31:24 [ 49] [ 3] [418] +17:31:24 [ 52] [ 16] [8AB409A21AADCE0E] +17:31:24 ============================================================================ +17:31:24 + + +waiting on router queue for slot.... +17:31:24 Sending to : <0> +17:31:24 ============================================================================ +17:31:24 ============================================================================ +17:31:24 Slot Id : <365> +17:31:24 Transaction Type : RESPONSE +17:31:24 Received From : +17:31:24 ============================================================================ +17:31:24 FNo. Len. Field Value +17:31:24 ============================================================================ +17:31:24 [ 1] [ 4] [0210] +17:31:24 [ 2] [ 16] [6688990106839705] +17:31:24 [ 3] [ 6] [010000] +17:31:24 [ 4] [ 12] [000200000000] +17:31:24 [ 7] [ 10] [0320103030] +17:31:24 [ 11] [ 6] [270899] +17:31:24 [ 12] [ 6] [173030] +17:31:24 [ 13] [ 4] [0320] +17:31:24 [ 15] [ 4] [0320] +17:31:24 [ 18] [ 4] [6011] +17:31:24 [ 19] [ 3] [418] +17:31:24 [ 22] [ 3] [021] +17:31:24 [ 32] [ 6] [180893] +17:31:24 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:31:24 [ 37] [ 12] [507910270899] +17:31:24 [ 39] [ 2] [61] +17:31:24 [ 41] [ 8] [0201ADD1] +17:31:24 [ 49] [ 3] [418] +17:31:24 ============================================================================ +17:31:24 Sending to : +17:31:24 ============================================================================ +17:31:24 + + +waiting on router queue for slot.... +17:31:25 ============================================================================ +17:31:25 Slot Id : <365> +17:31:25 Transaction Type : RESPONSE +17:31:25 Received From : +17:31:25 ============================================================================ +17:31:25 FNo. Len. Field Value +17:31:25 ============================================================================ +17:31:25 [ 1] [ 4] [0210] +17:31:25 [ 2] [ 16] [6688990106839705] +17:31:25 [ 3] [ 6] [010000] +17:31:25 [ 4] [ 12] [000200000000] +17:31:25 [ 7] [ 10] [0320103030] +17:31:25 [ 11] [ 6] [270899] +17:31:25 [ 12] [ 6] [173030] +17:31:25 [ 13] [ 4] [0320] +17:31:25 [ 15] [ 4] [0320] +17:31:25 [ 18] [ 4] [6011] +17:31:25 [ 19] [ 3] [418] +17:31:25 [ 22] [ 3] [021] +17:31:25 [ 32] [ 6] [180893] +17:31:25 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:31:25 [ 37] [ 12] [507910270899] +17:31:25 [ 39] [ 2] [61] +17:31:25 [ 41] [ 8] [0201ADD1] +17:31:25 [ 49] [ 3] [418] +17:31:25 ============================================================================ +17:31:25 Calculate Source COMM Id = 2 +17:31:25 ============================================================================ +17:31:25 + + +waiting on router queue for slot.... +17:31:33 ============================================================================ +17:31:33 Slot Id : <330> +17:31:33 Transaction Type : REQUEST +17:31:33 Received From : +17:31:33 ============================================================================ +17:31:33 FNo. Len. Field Value +17:31:33 ============================================================================ +17:31:33 [ 1] [ 4] [0800] +17:31:33 [ 2] [ 5] [02531] +17:31:33 [ 3] [ 6] [579178] +17:31:33 [ 7] [ 10] [0320103133] +17:31:33 [ 11] [ 6] [807429] +17:31:33 [ 15] [ 10] [0320103133] +17:31:33 [ 37] [ 11] [57917807429] +17:31:33 [ 70] [ 3] [001] +17:31:33 ============================================================================ +17:31:33 + + +waiting on router queue for slot.... +17:31:33 ============================================================================ +17:31:33 Slot Id : <330> +17:31:33 Transaction Type : RESPONSE +17:31:33 Received From : +17:31:33 ============================================================================ +17:31:33 FNo. Len. Field Value +17:31:33 ============================================================================ +17:31:33 [ 1] [ 4] [0810] +17:31:33 [ 7] [ 10] [0320103133] +17:31:33 [ 11] [ 6] [807429] +17:31:33 [ 15] [ 4] [0320] +17:31:33 [ 37] [ 12] [57917807429] +17:31:33 [ 39] [ 2] [00] +17:31:33 [ 70] [ 3] [001] +17:31:33 ============================================================================ +17:31:33 Sending to : +17:31:33 ============================================================================ +17:31:33 + + +waiting on router queue for slot.... +17:31:34 ============================================================================ +17:31:34 Slot Id : <356> +17:31:34 Transaction Type : REQUEST +17:31:34 Received From : +17:31:34 ============================================================================ +17:31:34 FNo. Len. Field Value +17:31:34 ============================================================================ +17:31:34 [ 1] [ 4] [0800] +17:31:34 [ 7] [ 10] [0320173120] +17:31:34 [ 11] [ 6] [060593] +17:31:34 [ 37] [ 12] [507917060593] +17:31:34 [ 70] [ 3] [ ] +17:31:34 ============================================================================ +17:31:34 + + +waiting on router queue for slot.... +17:31:34 Sending to : +17:31:34 ============================================================================ +17:31:34 ============================================================================ +17:31:34 Slot Id : <356> +17:31:34 Transaction Type : RESPONSE +17:31:34 Received From : +17:31:34 ============================================================================ +17:31:34 FNo. Len. Field Value +17:31:34 ============================================================================ +17:31:34 [ 1] [ 4] [0810] +17:31:34 [ 7] [ 10] [0320173120] +17:31:34 [ 11] [ 6] [060593] +17:31:34 [ 37] [ 12] [507917060593] +17:31:34 [ 39] [ 2] [91] +17:31:34 [ 70] [ 3] [ ] +17:31:34 ============================================================================ +17:31:34 Calculate Source COMM Id = 3 +17:31:34 ============================================================================ +17:31:34 + + +waiting on router queue for slot.... +17:31:37 ============================================================================ +17:31:37 Slot Id : <371> +17:31:37 Transaction Type : REQUEST +17:31:37 Received From : +17:31:37 ============================================================================ +17:31:37 FNo. Len. Field Value +17:31:37 ============================================================================ +17:31:37 [ 1] [ 4] [0200] +17:31:37 [ 2] [ 16] [6688990040072561] +17:31:37 [ 3] [ 6] [011000] +17:31:37 [ 4] [ 12] [000100000000] +17:31:37 [ 7] [ 10] [0320173132] +17:31:37 [ 11] [ 6] [816563] +17:31:37 [ 12] [ 6] [173132] +17:31:37 [ 13] [ 4] [0320] +17:31:37 [ 15] [ 4] [0320] +17:31:37 [ 18] [ 4] [6011] +17:31:37 [ 22] [ 3] [900] +17:31:37 [ 25] [ 2] [02] +17:31:37 [ 28] [ 9] [D00002000] +17:31:37 [ 32] [ 6] [621354] +17:31:37 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:31:37 [ 37] [ 12] [507903499681] +17:31:37 [ 41] [ 8] [06002200] +17:31:37 [ 42] [ 15] [NATIVE ] +17:31:37 [ 43] [ 40] [Beng Market Beng LAO] +17:31:37 [ 49] [ 3] [418] +17:31:37 [ 52] [ 16] [8F4569422EC9DC11] +17:31:37 ============================================================================ +17:31:37 + + +waiting on router queue for slot.... +17:31:37 Sending to : +17:31:37 ============================================================================ +17:31:37 Sending to : +17:31:37 ============================================================================ +17:31:38 ============================================================================ +17:31:38 Slot Id : <371> +17:31:38 Transaction Type : REQUEST +17:31:38 Received From : +17:31:38 ============================================================================ +17:31:38 FNo. Len. Field Value +17:31:38 ============================================================================ +17:31:38 [ 1] [ 4] [0200] +17:31:38 [ 2] [ 16] [6688990040072561] +17:31:38 [ 3] [ 6] [011000] +17:31:38 [ 4] [ 12] [000100000000] +17:31:38 [ 7] [ 10] [0320173132] +17:31:38 [ 11] [ 6] [816563] +17:31:38 [ 12] [ 6] [173132] +17:31:38 [ 13] [ 4] [0320] +17:31:38 [ 15] [ 4] [0320] +17:31:38 [ 18] [ 4] [6011] +17:31:38 [ 22] [ 3] [900] +17:31:38 [ 25] [ 2] [02] +17:31:38 [ 28] [ 9] [D00002000] +17:31:38 [ 32] [ 6] [621354] +17:31:38 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:31:38 [ 37] [ 12] [507903499681] +17:31:38 [ 41] [ 8] [06002200] +17:31:38 [ 42] [ 15] [NATIVE ] +17:31:38 [ 43] [ 40] [Beng Market Beng LAO] +17:31:38 [ 49] [ 3] [418] +17:31:38 [ 52] [ 16] [8F4569422EC9DC11] +17:31:38 ============================================================================ +17:31:38 + + +waiting on router queue for slot.... +17:31:38 Sending to : +17:31:38 ============================================================================ +17:31:38 ============================================================================ +17:31:38 Slot Id : <371> +17:31:38 Transaction Type : REQUEST +17:31:38 Received From : +17:31:38 ============================================================================ +17:31:38 FNo. Len. Field Value +17:31:38 ============================================================================ +17:31:38 [ 1] [ 4] [0200] +17:31:38 [ 2] [ 16] [6688990040072561] +17:31:38 [ 3] [ 6] [011000] +17:31:38 [ 4] [ 12] [000100000000] +17:31:38 [ 7] [ 10] [0320173132] +17:31:38 [ 11] [ 6] [816563] +17:31:38 [ 12] [ 6] [173132] +17:31:38 [ 13] [ 4] [0320] +17:31:38 [ 15] [ 4] [0320] +17:31:38 [ 18] [ 4] [6011] +17:31:38 [ 22] [ 3] [900] +17:31:38 [ 25] [ 2] [02] +17:31:38 [ 28] [ 9] [D00002000] +17:31:38 [ 32] [ 6] [621354] +17:31:38 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:31:38 [ 37] [ 12] [507903499681] +17:31:38 [ 41] [ 8] [06002200] +17:31:38 [ 42] [ 15] [NATIVE ] +17:31:38 [ 43] [ 40] [Beng Market Beng LAO] +17:31:38 [ 49] [ 3] [418] +17:31:38 [ 52] [ 16] [ED280CF8FD8967F6] +17:31:38 ============================================================================ +17:31:38 + + +waiting on router queue for slot.... +17:31:38 Sending to : <4> +17:31:38 ============================================================================ +17:31:39 ============================================================================ +17:31:39 Slot Id : <371> +17:31:39 Transaction Type : RESPONSE +17:31:39 Received From : +17:31:39 ============================================================================ +17:31:39 FNo. Len. Field Value +17:31:39 ============================================================================ +17:31:39 [ 1] [ 4] [0210] +17:31:39 [ 2] [ 16] [6688990040072561] +17:31:39 [ 3] [ 6] [011000] +17:31:39 [ 4] [ 12] [000100000000] +17:31:39 [ 11] [ 6] [816563] +17:31:39 [ 12] [ 6] [173132] +17:31:39 [ 15] [ 4] [0320] +17:31:39 [ 18] [ 4] [6011] +17:31:39 [ 32] [ 6] [621354] +17:31:39 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:31:39 [ 37] [ 12] [507903499681] +17:31:39 [ 38] [ 6] [863989] +17:31:39 [ 39] [ 2] [00] +17:31:39 [ 41] [ 8] [06002200] +17:31:39 [ 49] [ 3] [418] +17:31:39 [ 54] [ 20] [1002418C000034179657] +17:31:39 ============================================================================ +17:31:39 Sending to : +17:31:39 ============================================================================ +17:31:39 + + +waiting on router queue for slot.... +17:31:40 ============================================================================ +17:31:40 Slot Id : <371> +17:31:40 Transaction Type : RESPONSE +17:31:40 Received From : +17:31:40 ============================================================================ +17:31:40 FNo. Len. Field Value +17:31:40 ============================================================================ +17:31:40 [ 1] [ 4] [0210] +17:31:40 [ 2] [ 16] [6688990040072561] +17:31:40 [ 3] [ 6] [011000] +17:31:40 [ 4] [ 12] [000100000000] +17:31:40 [ 11] [ 6] [816563] +17:31:40 [ 12] [ 6] [173132] +17:31:40 [ 15] [ 4] [0320] +17:31:40 [ 18] [ 4] [6011] +17:31:40 [ 32] [ 6] [621354] +17:31:40 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:31:40 [ 37] [ 12] [507903499681] +17:31:40 [ 38] [ 6] [863989] +17:31:40 [ 39] [ 2] [00] +17:31:40 [ 41] [ 8] [06002200] +17:31:40 [ 49] [ 3] [418] +17:31:40 [ 54] [ 20] [1002418C000034179657] +17:31:40 ============================================================================ +17:31:40 Calculate Source COMM Id = 0 +17:31:40 ============================================================================ +17:31:40 + + +waiting on router queue for slot.... +17:31:41 ============================================================================ +17:31:41 Slot Id : <366> +17:31:41 Transaction Type : REQUEST +17:31:41 Received From : +17:31:41 ============================================================================ +17:31:41 FNo. Len. Field Value +17:31:41 ============================================================================ +17:31:41 [ 1] [ 4] [0800] +17:31:41 [ 7] [ 10] [0320103047] +17:31:41 [ 11] [ 6] [157477] +17:31:41 [ 70] [ 3] [301] +17:31:41 ============================================================================ +17:31:41 + + +waiting on router queue for slot.... +17:31:41 Sending to : +17:31:41 ============================================================================ +17:31:41 ============================================================================ +17:31:41 Slot Id : <366> +17:31:41 Transaction Type : RESPONSE +17:31:41 Received From : +17:31:41 ============================================================================ +17:31:41 FNo. Len. Field Value +17:31:41 ============================================================================ +17:31:41 [ 1] [ 4] [0810] +17:31:41 [ 7] [ 10] [0320103047] +17:31:41 [ 11] [ 6] [157477] +17:31:41 [ 39] [ 2] [00] +17:31:41 [ 70] [ 3] [301] +17:31:41 ============================================================================ +17:31:41 Calculate Source COMM Id = 2 +17:31:41 ============================================================================ +17:31:41 + + +waiting on router queue for slot.... +17:31:51 ============================================================================ +17:31:51 Slot Id : <313> +17:31:51 Transaction Type : REQUEST +17:31:51 Received From : +17:31:51 ============================================================================ +17:31:51 FNo. Len. Field Value +17:31:51 ============================================================================ +17:31:51 [ 1] [ 4] [0800] +17:31:51 [ 7] [ 10] [0321004340] +17:31:51 [ 11] [ 6] [174340] +17:31:51 [ 37] [ 12] [57917174340] +17:31:51 [ 70] [ 3] [301] +17:31:51 ============================================================================ +17:31:51 + + +waiting on router queue for slot.... +17:31:51 Sending to : +17:31:51 ============================================================================ +17:31:51 ============================================================================ +17:31:51 Slot Id : <313> +17:31:51 Transaction Type : RESPONSE +17:31:51 Received From : +17:31:51 ============================================================================ +17:31:51 FNo. Len. Field Value +17:31:51 ============================================================================ +17:31:51 [ 1] [ 4] [0810] +17:31:51 [ 7] [ 10] [0321004340] +17:31:51 [ 11] [ 6] [174340] +17:31:51 [ 37] [ 12] [579171743400] +17:31:51 [ 39] [ 2] [00] +17:31:51 [ 70] [ 3] [810] +17:31:51 ============================================================================ +17:31:51 Calculate Source COMM Id = 6 +17:31:51 ============================================================================ +17:31:51 + + +waiting on router queue for slot.... +17:31:51 ============================================================================ +17:31:51 Slot Id : <343> +17:31:51 Transaction Type : REQUEST +17:31:51 Received From : +17:31:51 ============================================================================ +17:31:51 FNo. Len. Field Value +17:31:51 ============================================================================ +17:31:51 [ 1] [ 4] [0800] +17:31:51 [ 7] [ 10] [0320103058] +17:31:51 [ 11] [ 6] [157478] +17:31:51 [ 70] [ 3] [301] +17:31:51 ============================================================================ +17:31:51 + + +waiting on router queue for slot.... +17:31:51 Sending to : +17:31:51 ============================================================================ +17:31:51 ============================================================================ +17:31:51 Slot Id : <343> +17:31:51 Transaction Type : RESPONSE +17:31:51 Received From : +17:31:51 ============================================================================ +17:31:51 FNo. Len. Field Value +17:31:51 ============================================================================ +17:31:51 [ 1] [ 4] [0810] +17:31:51 [ 7] [ 10] [0320103058] +17:31:51 [ 11] [ 6] [157478] +17:31:51 [ 39] [ 2] [00] +17:31:51 [ 70] [ 3] [301] +17:31:51 ============================================================================ +17:31:51 Calculate Source COMM Id = 2 +17:31:51 ============================================================================ +17:31:51 + + +waiting on router queue for slot.... +17:32:03 ============================================================================ +17:32:03 Slot Id : <378> +17:32:03 Transaction Type : REQUEST +17:32:03 Received From : +17:32:03 ============================================================================ +17:32:03 FNo. Len. Field Value +17:32:03 ============================================================================ +17:32:03 [ 1] [ 4] [0800] +17:32:03 [ 7] [ 10] [0320103110] +17:32:03 [ 11] [ 6] [157479] +17:32:03 [ 70] [ 3] [301] +17:32:03 ============================================================================ +17:32:03 + + +waiting on router queue for slot.... +17:32:03 Sending to : +17:32:03 ============================================================================ +17:32:03 ============================================================================ +17:32:03 Slot Id : <378> +17:32:03 Transaction Type : RESPONSE +17:32:03 Received From : +17:32:03 ============================================================================ +17:32:03 FNo. Len. Field Value +17:32:03 ============================================================================ +17:32:03 [ 1] [ 4] [0810] +17:32:03 [ 7] [ 10] [0320103110] +17:32:03 [ 11] [ 6] [157479] +17:32:03 [ 39] [ 2] [00] +17:32:03 [ 70] [ 3] [301] +17:32:03 ============================================================================ +17:32:03 Calculate Source COMM Id = 2 +17:32:03 ============================================================================ +17:32:03 + + +waiting on router queue for slot.... +17:32:11 ============================================================================ +17:32:11 Slot Id : <345> +17:32:11 Transaction Type : REQUEST +17:32:11 Received From : +17:32:11 ============================================================================ +17:32:11 FNo. Len. Field Value +17:32:11 ============================================================================ +17:32:11 [ 1] [ 4] [0200] +17:32:11 [ 2] [ 16] [6688990103528608] +17:32:11 [ 3] [ 6] [302000] +17:32:11 [ 4] [ 12] [000000000000] +17:32:11 [ 7] [ 10] [0320173206] +17:32:11 [ 11] [ 6] [816707] +17:32:11 [ 12] [ 6] [173206] +17:32:11 [ 13] [ 4] [0320] +17:32:11 [ 15] [ 4] [0320] +17:32:11 [ 18] [ 4] [6011] +17:32:11 [ 22] [ 3] [900] +17:32:11 [ 25] [ 2] [02] +17:32:11 [ 28] [ 9] [D00000000] +17:32:11 [ 32] [ 6] [621354] +17:32:11 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:32:11 [ 37] [ 12] [507903489485] +17:32:11 [ 41] [ 8] [06002100] +17:32:11 [ 42] [ 15] [NATIVE ] +17:32:11 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:32:11 [ 49] [ 3] [418] +17:32:11 [ 52] [ 16] [7D80129F3F4E39ED] +17:32:11 ============================================================================ +17:32:11 + + +waiting on router queue for slot.... +17:32:11 Sending to : +17:32:11 ============================================================================ +17:32:11 Sending to : +17:32:11 ============================================================================ +17:32:11 ============================================================================ +17:32:11 Slot Id : <345> +17:32:11 Transaction Type : REQUEST +17:32:11 Received From : +17:32:11 ============================================================================ +17:32:11 FNo. Len. Field Value +17:32:11 ============================================================================ +17:32:11 [ 1] [ 4] [0200] +17:32:11 [ 2] [ 16] [6688990103528608] +17:32:11 [ 3] [ 6] [302000] +17:32:11 [ 4] [ 12] [000000000000] +17:32:11 [ 7] [ 10] [0320173206] +17:32:11 [ 11] [ 6] [816707] +17:32:11 [ 12] [ 6] [173206] +17:32:11 [ 13] [ 4] [0320] +17:32:11 [ 15] [ 4] [0320] +17:32:11 [ 18] [ 4] [6011] +17:32:11 [ 22] [ 3] [900] +17:32:11 [ 25] [ 2] [02] +17:32:11 [ 28] [ 9] [D00000000] +17:32:11 [ 32] [ 6] [621354] +17:32:11 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:32:11 [ 37] [ 12] [507903489485] +17:32:11 [ 41] [ 8] [06002100] +17:32:11 [ 42] [ 15] [NATIVE ] +17:32:11 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:32:11 [ 49] [ 3] [418] +17:32:11 [ 52] [ 16] [7D80129F3F4E39ED] +17:32:11 ============================================================================ +17:32:11 + + +waiting on router queue for slot.... +17:32:11 Sending to : +17:32:11 ============================================================================ +17:32:11 ============================================================================ +17:32:11 Slot Id : <345> +17:32:11 Transaction Type : REQUEST +17:32:11 Received From : +17:32:11 ============================================================================ +17:32:11 FNo. Len. Field Value +17:32:11 ============================================================================ +17:32:11 [ 1] [ 4] [0200] +17:32:11 [ 2] [ 16] [6688990103528608] +17:32:11 [ 3] [ 6] [302000] +17:32:11 [ 4] [ 12] [000000000000] +17:32:11 [ 7] [ 10] [0320173206] +17:32:11 [ 11] [ 6] [816707] +17:32:11 [ 12] [ 6] [173206] +17:32:11 [ 13] [ 4] [0320] +17:32:11 [ 15] [ 4] [0320] +17:32:11 [ 18] [ 4] [6011] +17:32:11 [ 22] [ 3] [900] +17:32:11 [ 25] [ 2] [02] +17:32:11 [ 28] [ 9] [D00000000] +17:32:11 [ 32] [ 6] [621354] +17:32:11 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:32:11 [ 37] [ 12] [507903489485] +17:32:11 [ 41] [ 8] [06002100] +17:32:11 [ 42] [ 15] [NATIVE ] +17:32:11 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:32:11 [ 49] [ 3] [418] +17:32:11 [ 52] [ 16] [969CFA9A1BA5B06D] +17:32:11 ============================================================================ +17:32:11 + + +waiting on router queue for slot.... +17:32:11 Sending to : <4> +17:32:11 ============================================================================ +17:32:12 ============================================================================ +17:32:12 Slot Id : <345> +17:32:12 Transaction Type : RESPONSE +17:32:12 Received From : +17:32:12 ============================================================================ +17:32:12 FNo. Len. Field Value +17:32:12 ============================================================================ +17:32:12 [ 1] [ 4] [0210] +17:32:12 [ 2] [ 16] [6688990103528608] +17:32:12 [ 3] [ 6] [302000] +17:32:12 [ 4] [ 12] [000000000000] +17:32:12 [ 11] [ 6] [816707] +17:32:12 [ 12] [ 6] [173206] +17:32:12 [ 15] [ 4] [0320] +17:32:12 [ 18] [ 4] [6011] +17:32:12 [ 32] [ 6] [621354] +17:32:12 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:32:12 [ 37] [ 12] [507903489485] +17:32:12 [ 38] [ 6] [571224] +17:32:12 [ 39] [ 2] [00] +17:32:12 [ 41] [ 8] [06002100] +17:32:12 [ 49] [ 3] [418] +17:32:12 [ 54] [ 20] [2002418C000036485122] +17:32:12 ============================================================================ +17:32:12 Sending to : +17:32:12 ============================================================================ +17:32:12 + + +waiting on router queue for slot.... +17:32:13 ============================================================================ +17:32:13 Slot Id : <373> +17:32:13 Transaction Type : REQUEST +17:32:13 Received From : +17:32:13 ============================================================================ +17:32:13 FNo. Len. Field Value +17:32:13 ============================================================================ +17:32:13 [ 1] [ 4] [0800] +17:32:13 [ 7] [ 10] [0320103120] +17:32:13 [ 11] [ 6] [157480] +17:32:13 [ 70] [ 3] [301] +17:32:13 ============================================================================ +17:32:13 + + +waiting on router queue for slot.... +17:32:13 Sending to : +17:32:13 ============================================================================ +17:32:13 ============================================================================ +17:32:13 Slot Id : <373> +17:32:13 Transaction Type : RESPONSE +17:32:13 Received From : +17:32:13 ============================================================================ +17:32:13 FNo. Len. Field Value +17:32:13 ============================================================================ +17:32:13 [ 1] [ 4] [0810] +17:32:13 [ 7] [ 10] [0320103120] +17:32:13 [ 11] [ 6] [157480] +17:32:13 [ 39] [ 2] [00] +17:32:13 [ 70] [ 3] [301] +17:32:13 ============================================================================ +17:32:13 Calculate Source COMM Id = 2 +17:32:13 ============================================================================ +17:32:13 + + +waiting on router queue for slot.... +17:32:14 ============================================================================ +17:32:14 Slot Id : <345> +17:32:14 Transaction Type : RESPONSE +17:32:14 Received From : +17:32:14 ============================================================================ +17:32:14 FNo. Len. Field Value +17:32:14 ============================================================================ +17:32:14 [ 1] [ 4] [0210] +17:32:14 [ 2] [ 16] [6688990103528608] +17:32:14 [ 3] [ 6] [302000] +17:32:14 [ 4] [ 12] [000000000000] +17:32:14 [ 11] [ 6] [816707] +17:32:14 [ 12] [ 6] [173206] +17:32:14 [ 15] [ 4] [0320] +17:32:14 [ 18] [ 4] [6011] +17:32:14 [ 32] [ 6] [621354] +17:32:14 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:32:14 [ 37] [ 12] [507903489485] +17:32:14 [ 38] [ 6] [571224] +17:32:14 [ 39] [ 2] [00] +17:32:14 [ 41] [ 8] [06002100] +17:32:14 [ 49] [ 3] [418] +17:32:14 [ 54] [ 20] [2002418C000036485122] +17:32:14 ============================================================================ +17:32:14 Calculate Source COMM Id = 0 +17:32:14 ============================================================================ +17:32:14 + + +waiting on router queue for slot.... +17:32:29 ============================================================================ +17:32:29 Slot Id : <340> +17:32:29 Transaction Type : REQUEST +17:32:29 Received From : +17:32:29 ============================================================================ +17:32:29 FNo. Len. Field Value +17:32:29 ============================================================================ +17:32:29 [ 1] [ 4] [0800] +17:32:29 [ 7] [ 10] [0320103136] +17:32:29 [ 11] [ 6] [157481] +17:32:29 [ 70] [ 3] [301] +17:32:29 ============================================================================ +17:32:29 + + +waiting on router queue for slot.... +17:32:29 Sending to : +17:32:29 ============================================================================ +17:32:29 ============================================================================ +17:32:29 Slot Id : <340> +17:32:29 Transaction Type : RESPONSE +17:32:29 Received From : +17:32:29 ============================================================================ +17:32:29 FNo. Len. Field Value +17:32:29 ============================================================================ +17:32:29 [ 1] [ 4] [0810] +17:32:29 [ 7] [ 10] [0320103136] +17:32:29 [ 11] [ 6] [157481] +17:32:29 [ 39] [ 2] [00] +17:32:29 [ 70] [ 3] [301] +17:32:29 ============================================================================ +17:32:29 Calculate Source COMM Id = 2 +17:32:29 ============================================================================ +17:32:29 + + +waiting on router queue for slot.... +17:32:33 ============================================================================ +17:32:33 Slot Id : <353> +17:32:33 Transaction Type : REQUEST +17:32:33 Received From : +17:32:33 ============================================================================ +17:32:33 FNo. Len. Field Value +17:32:33 ============================================================================ +17:32:33 [ 1] [ 4] [0200] +17:32:33 [ 2] [ 16] [6688990600570707] +17:32:33 [ 3] [ 6] [010000] +17:32:33 [ 4] [ 12] [000050000000] +17:32:33 [ 7] [ 10] [0320103139] +17:32:33 [ 11] [ 6] [270909] +17:32:33 [ 12] [ 6] [173139] +17:32:33 [ 13] [ 4] [0320] +17:32:33 [ 14] [ 4] [4012] +17:32:33 [ 15] [ 4] [0320] +17:32:33 [ 18] [ 4] [6011] +17:32:33 [ 19] [ 3] [418] +17:32:33 [ 22] [ 3] [021] +17:32:33 [ 25] [ 2] [01] +17:32:33 [ 28] [ 9] [D00002000] +17:32:33 [ 32] [ 6] [180893] +17:32:33 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:32:33 [ 37] [ 12] [507910270909] +17:32:33 [ 41] [ 8] [0261PSL1] +17:32:33 [ 42] [ 15] [999999 ] +17:32:33 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +17:32:33 [ 49] [ 3] [418] +17:32:33 [ 52] [ 16] [E1676DFEA42D2CBD] +17:32:33 ============================================================================ +17:32:33 + + +waiting on router queue for slot.... +17:32:33 Sending to : +17:32:33 ============================================================================ +17:32:33 Sending to : +17:32:33 ============================================================================ +17:32:33 ============================================================================ +17:32:33 Slot Id : <353> +17:32:33 Transaction Type : REQUEST +17:32:33 Received From : +17:32:33 ============================================================================ +17:32:33 FNo. Len. Field Value +17:32:33 ============================================================================ +17:32:33 [ 1] [ 4] [0200] +17:32:33 [ 2] [ 16] [6688990600570707] +17:32:33 [ 3] [ 6] [010000] +17:32:33 [ 4] [ 12] [000050000000] +17:32:33 [ 7] [ 10] [0320103139] +17:32:33 [ 11] [ 6] [270909] +17:32:33 [ 12] [ 6] [173139] +17:32:33 [ 13] [ 4] [0320] +17:32:33 [ 14] [ 4] [4012] +17:32:33 [ 15] [ 4] [0320] +17:32:33 [ 18] [ 4] [6011] +17:32:33 [ 19] [ 3] [418] +17:32:33 [ 22] [ 3] [021] +17:32:33 [ 25] [ 2] [01] +17:32:33 [ 28] [ 9] [D00002000] +17:32:33 [ 32] [ 6] [180893] +17:32:33 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:32:33 [ 37] [ 12] [507910270909] +17:32:33 [ 41] [ 8] [0261PSL1] +17:32:33 [ 42] [ 15] [999999 ] +17:32:33 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +17:32:33 [ 49] [ 3] [418] +17:32:33 [ 52] [ 16] [E1676DFEA42D2CBD] +17:32:33 ============================================================================ +17:32:33 + + +waiting on router queue for slot.... +17:32:33 Sending to : +17:32:33 ============================================================================ +17:32:33 ============================================================================ +17:32:33 Slot Id : <353> +17:32:33 Transaction Type : REQUEST +17:32:33 Received From : +17:32:33 ============================================================================ +17:32:33 FNo. Len. Field Value +17:32:33 ============================================================================ +17:32:33 [ 1] [ 4] [0200] +17:32:33 [ 2] [ 16] [6688990600570707] +17:32:33 [ 3] [ 6] [010000] +17:32:33 [ 4] [ 12] [000050000000] +17:32:33 [ 7] [ 10] [0320103139] +17:32:33 [ 11] [ 6] [270909] +17:32:33 [ 12] [ 6] [173139] +17:32:33 [ 13] [ 4] [0320] +17:32:33 [ 14] [ 4] [4012] +17:32:33 [ 15] [ 4] [0320] +17:32:33 [ 18] [ 4] [6011] +17:32:33 [ 19] [ 3] [418] +17:32:33 [ 22] [ 3] [021] +17:32:33 [ 25] [ 2] [01] +17:32:33 [ 28] [ 9] [D00002000] +17:32:33 [ 32] [ 6] [180893] +17:32:33 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:32:33 [ 37] [ 12] [507910270909] +17:32:33 [ 41] [ 8] [0261PSL1] +17:32:33 [ 42] [ 15] [999999 ] +17:32:33 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +17:32:33 [ 49] [ 3] [418] +17:32:33 [ 52] [ 16] [7C5AB8F7399D6E8D] +17:32:33 ============================================================================ +17:32:33 + + +waiting on router queue for slot.... +17:32:33 Sending to : <0> +17:32:33 ============================================================================ +17:32:33 ============================================================================ +17:32:33 Slot Id : <353> +17:32:33 Transaction Type : RESPONSE +17:32:33 Received From : +17:32:33 ============================================================================ +17:32:33 FNo. Len. Field Value +17:32:33 ============================================================================ +17:32:33 [ 1] [ 4] [0210] +17:32:33 [ 2] [ 16] [6688990600570707] +17:32:33 [ 3] [ 6] [010000] +17:32:33 [ 4] [ 12] [000050000000] +17:32:33 [ 7] [ 10] [0320103139] +17:32:33 [ 11] [ 6] [270909] +17:32:33 [ 12] [ 6] [173139] +17:32:33 [ 13] [ 4] [0320] +17:32:33 [ 15] [ 4] [0320] +17:32:33 [ 18] [ 4] [6011] +17:32:33 [ 19] [ 3] [418] +17:32:33 [ 22] [ 3] [021] +17:32:33 [ 32] [ 6] [180893] +17:32:33 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:32:33 [ 37] [ 12] [507910270909] +17:32:33 [ 39] [ 2] [14] +17:32:33 [ 41] [ 8] [0261PSL1] +17:32:33 [ 49] [ 3] [418] +17:32:33 ============================================================================ +17:32:33 Sending to : +17:32:33 ============================================================================ +17:32:33 + + +waiting on router queue for slot.... +17:32:34 ============================================================================ +17:32:34 Slot Id : <353> +17:32:34 Transaction Type : RESPONSE +17:32:34 Received From : +17:32:34 ============================================================================ +17:32:34 FNo. Len. Field Value +17:32:34 ============================================================================ +17:32:34 [ 1] [ 4] [0210] +17:32:34 [ 2] [ 16] [6688990600570707] +17:32:34 [ 3] [ 6] [010000] +17:32:34 [ 4] [ 12] [000050000000] +17:32:34 [ 7] [ 10] [0320103139] +17:32:34 [ 11] [ 6] [270909] +17:32:34 [ 12] [ 6] [173139] +17:32:34 [ 13] [ 4] [0320] +17:32:34 [ 15] [ 4] [0320] +17:32:34 [ 18] [ 4] [6011] +17:32:34 [ 19] [ 3] [418] +17:32:34 [ 22] [ 3] [021] +17:32:34 [ 32] [ 6] [180893] +17:32:34 [ 35] [ 37] [6688990600570707=40120061070750300000] +17:32:34 [ 37] [ 12] [507910270909] +17:32:34 [ 39] [ 2] [14] +17:32:34 [ 41] [ 8] [0261PSL1] +17:32:34 [ 49] [ 3] [418] +17:32:34 ============================================================================ +17:32:34 Calculate Source COMM Id = 2 +17:32:34 ============================================================================ +17:32:34 + + +waiting on router queue for slot.... +17:32:35 ============================================================================ +17:32:35 Slot Id : <324> +17:32:35 Transaction Type : REQUEST +17:32:35 Received From : +17:32:35 ============================================================================ +17:32:35 FNo. Len. Field Value +17:32:35 ============================================================================ +17:32:35 [ 1] [ 4] [0800] +17:32:35 [ 2] [ 5] [02531] +17:32:35 [ 3] [ 6] [579178] +17:32:35 [ 7] [ 10] [0320103235] +17:32:35 [ 11] [ 6] [807430] +17:32:35 [ 15] [ 10] [0320103235] +17:32:35 [ 37] [ 11] [57917807430] +17:32:35 [ 70] [ 3] [001] +17:32:35 ============================================================================ +17:32:35 + + +waiting on router queue for slot.... +17:32:35 ============================================================================ +17:32:35 Slot Id : <324> +17:32:35 Transaction Type : RESPONSE +17:32:35 Received From : +17:32:35 ============================================================================ +17:32:35 FNo. Len. Field Value +17:32:35 ============================================================================ +17:32:35 [ 1] [ 4] [0810] +17:32:35 [ 7] [ 10] [0320103235] +17:32:35 [ 11] [ 6] [807430] +17:32:35 [ 15] [ 4] [0320] +17:32:35 [ 37] [ 12] [57917807430] +17:32:35 [ 39] [ 2] [00] +17:32:35 [ 70] [ 3] [001] +17:32:35 ============================================================================ +17:32:35 Sending to : +17:32:35 ============================================================================ +17:32:35 + + +waiting on router queue for slot.... +17:32:35 ============================================================================ +17:32:35 Slot Id : <382> +17:32:35 Transaction Type : REQUEST +17:32:35 Received From : +17:32:35 ============================================================================ +17:32:35 FNo. Len. Field Value +17:32:35 ============================================================================ +17:32:35 [ 1] [ 4] [0200] +17:32:35 [ 2] [ 16] [6688990040153627] +17:32:35 [ 3] [ 6] [310000] +17:32:35 [ 4] [ 12] [000000000000] +17:32:35 [ 7] [ 10] [0320174022] +17:32:35 [ 11] [ 6] [177384] +17:32:35 [ 12] [ 6] [174022] +17:32:35 [ 13] [ 4] [0320] +17:32:35 [ 14] [ 4] [9805] +17:32:35 [ 15] [ 4] [0320] +17:32:35 [ 18] [ 4] [6011] +17:32:35 [ 22] [ 3] [900] +17:32:35 [ 25] [ 2] [02] +17:32:35 [ 28] [ 9] [000000000] +17:32:35 [ 32] [ 6] [220699] +17:32:35 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:32:35 [ 37] [ 12] [507900010253] +17:32:35 [ 41] [ 8] [01000100] +17:32:35 [ 42] [ 15] [APTRA ] +17:32:35 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:32:35 [ 49] [ 3] [418] +17:32:35 [ 52] [ 16] [EE2CC346E7DC781F] +17:32:35 ============================================================================ +17:32:35 + + +waiting on router queue for slot.... +17:32:35 Sending to : +17:32:35 ============================================================================ +17:32:35 Sending to : +17:32:35 ============================================================================ +17:32:35 ============================================================================ +17:32:35 Slot Id : <382> +17:32:35 Transaction Type : REQUEST +17:32:35 Received From : +17:32:35 ============================================================================ +17:32:35 FNo. Len. Field Value +17:32:35 ============================================================================ +17:32:35 [ 1] [ 4] [0200] +17:32:35 [ 2] [ 16] [6688990040153627] +17:32:35 [ 3] [ 6] [310000] +17:32:35 [ 4] [ 12] [000000000000] +17:32:35 [ 7] [ 10] [0320174022] +17:32:35 [ 11] [ 6] [177384] +17:32:35 [ 12] [ 6] [174022] +17:32:35 [ 13] [ 4] [0320] +17:32:35 [ 14] [ 4] [9805] +17:32:35 [ 15] [ 4] [0320] +17:32:35 [ 18] [ 4] [6011] +17:32:35 [ 22] [ 3] [900] +17:32:35 [ 25] [ 2] [02] +17:32:35 [ 28] [ 9] [000000000] +17:32:35 [ 32] [ 6] [220699] +17:32:35 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:32:35 [ 37] [ 12] [507900010253] +17:32:35 [ 41] [ 8] [01000100] +17:32:35 [ 42] [ 15] [APTRA ] +17:32:35 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:32:35 [ 49] [ 3] [418] +17:32:35 [ 52] [ 16] [EE2CC346E7DC781F] +17:32:35 ============================================================================ +17:32:35 + + +waiting on router queue for slot.... +17:32:35 Sending to : +17:32:35 ============================================================================ +17:32:35 ============================================================================ +17:32:35 Slot Id : <382> +17:32:35 Transaction Type : REQUEST +17:32:35 Received From : +17:32:35 ============================================================================ +17:32:35 FNo. Len. Field Value +17:32:35 ============================================================================ +17:32:35 [ 1] [ 4] [0200] +17:32:35 [ 2] [ 16] [6688990040153627] +17:32:35 [ 3] [ 6] [310000] +17:32:35 [ 4] [ 12] [000000000000] +17:32:35 [ 7] [ 10] [0320174022] +17:32:35 [ 11] [ 6] [177384] +17:32:35 [ 12] [ 6] [174022] +17:32:35 [ 13] [ 4] [0320] +17:32:35 [ 14] [ 4] [9805] +17:32:35 [ 15] [ 4] [0320] +17:32:35 [ 18] [ 4] [6011] +17:32:35 [ 22] [ 3] [900] +17:32:35 [ 25] [ 2] [02] +17:32:35 [ 28] [ 9] [000000000] +17:32:35 [ 32] [ 6] [220699] +17:32:35 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:32:35 [ 37] [ 12] [507900010253] +17:32:35 [ 41] [ 8] [01000100] +17:32:35 [ 42] [ 15] [APTRA ] +17:32:35 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:32:35 [ 49] [ 3] [418] +17:32:35 [ 52] [ 16] [56F6D4B6ED33D0E5] +17:32:35 ============================================================================ +17:32:35 + + +waiting on router queue for slot.... +17:32:35 Sending to : <0> +17:32:35 ============================================================================ +17:32:36 ============================================================================ +17:32:36 Slot Id : <382> +17:32:36 Transaction Type : RESPONSE +17:32:36 Received From : +17:32:36 ============================================================================ +17:32:36 FNo. Len. Field Value +17:32:36 ============================================================================ +17:32:36 [ 1] [ 4] [0210] +17:32:36 [ 2] [ 16] [6688990040153627] +17:32:36 [ 3] [ 6] [310000] +17:32:36 [ 4] [ 12] [000000000000] +17:32:36 [ 7] [ 10] [0320174022] +17:32:36 [ 11] [ 6] [177384] +17:32:36 [ 12] [ 6] [174022] +17:32:36 [ 13] [ 4] [0320] +17:32:36 [ 15] [ 4] [0320] +17:32:36 [ 18] [ 4] [6011] +17:32:36 [ 22] [ 3] [900] +17:32:36 [ 32] [ 6] [220699] +17:32:36 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:32:36 [ 37] [ 12] [507900010253] +17:32:36 [ 39] [ 2] [14] +17:32:36 [ 41] [ 8] [01000100] +17:32:36 [ 49] [ 3] [418] +17:32:36 ============================================================================ +17:32:36 Sending to : +17:32:36 ============================================================================ +17:32:36 + + +waiting on router queue for slot.... +17:32:36 ============================================================================ +17:32:36 Slot Id : <382> +17:32:36 Transaction Type : RESPONSE +17:32:36 Received From : +17:32:36 ============================================================================ +17:32:36 FNo. Len. Field Value +17:32:36 ============================================================================ +17:32:36 [ 1] [ 4] [0210] +17:32:36 [ 2] [ 16] [6688990040153627] +17:32:36 [ 3] [ 6] [310000] +17:32:36 [ 4] [ 12] [000000000000] +17:32:36 [ 7] [ 10] [0320174022] +17:32:36 [ 11] [ 6] [177384] +17:32:36 [ 12] [ 6] [174022] +17:32:36 [ 13] [ 4] [0320] +17:32:36 [ 15] [ 4] [0320] +17:32:36 [ 18] [ 4] [6011] +17:32:36 [ 22] [ 3] [900] +17:32:36 [ 32] [ 6] [220699] +17:32:36 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:32:36 [ 37] [ 12] [507900010253] +17:32:36 [ 39] [ 2] [14] +17:32:36 [ 41] [ 8] [01000100] +17:32:36 [ 49] [ 3] [418] +17:32:36 ============================================================================ +17:32:36 Calculate Source COMM Id = 1 +17:32:36 ============================================================================ +17:32:36 + + +waiting on router queue for slot.... +17:32:38 ============================================================================ +17:32:38 Slot Id : <363> +17:32:38 Transaction Type : REQUEST +17:32:38 Received From : +17:32:38 ============================================================================ +17:32:38 FNo. Len. Field Value +17:32:38 ============================================================================ +17:32:38 [ 1] [ 4] [0200] +17:32:38 [ 2] [ 16] [6688990103656003] +17:32:38 [ 3] [ 6] [010000] +17:32:38 [ 4] [ 12] [000150000000] +17:32:38 [ 7] [ 10] [0320103143] +17:32:38 [ 11] [ 6] [270910] +17:32:38 [ 12] [ 6] [173143] +17:32:38 [ 13] [ 4] [0320] +17:32:38 [ 14] [ 4] [4301] +17:32:38 [ 15] [ 4] [0320] +17:32:38 [ 18] [ 4] [6011] +17:32:38 [ 19] [ 3] [418] +17:32:38 [ 22] [ 3] [021] +17:32:38 [ 25] [ 2] [01] +17:32:38 [ 28] [ 9] [D00002000] +17:32:38 [ 32] [ 6] [180893] +17:32:38 [ 35] [ 37] [6688990103656003=43011231600368100000] +17:32:38 [ 37] [ 12] [507910270910] +17:32:38 [ 41] [ 8] [0467PSLK] +17:32:38 [ 42] [ 15] [999999 ] +17:32:38 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:32:38 [ 49] [ 3] [418] +17:32:38 [ 52] [ 16] [356E4CEC4FD3C6C8] +17:32:38 ============================================================================ +17:32:38 + + +waiting on router queue for slot.... +17:32:38 Sending to : +17:32:38 ============================================================================ +17:32:38 Sending to : +17:32:38 ============================================================================ +17:32:38 ============================================================================ +17:32:38 Slot Id : <363> +17:32:38 Transaction Type : REQUEST +17:32:38 Received From : +17:32:38 ============================================================================ +17:32:38 FNo. Len. Field Value +17:32:38 ============================================================================ +17:32:38 [ 1] [ 4] [0200] +17:32:38 [ 2] [ 16] [6688990103656003] +17:32:38 [ 3] [ 6] [010000] +17:32:38 [ 4] [ 12] [000150000000] +17:32:38 [ 7] [ 10] [0320103143] +17:32:38 [ 11] [ 6] [270910] +17:32:38 [ 12] [ 6] [173143] +17:32:38 [ 13] [ 4] [0320] +17:32:38 [ 14] [ 4] [4301] +17:32:38 [ 15] [ 4] [0320] +17:32:38 [ 18] [ 4] [6011] +17:32:38 [ 19] [ 3] [418] +17:32:38 [ 22] [ 3] [021] +17:32:38 [ 25] [ 2] [01] +17:32:38 [ 28] [ 9] [D00002000] +17:32:38 [ 32] [ 6] [180893] +17:32:38 [ 35] [ 37] [6688990103656003=43011231600368100000] +17:32:38 [ 37] [ 12] [507910270910] +17:32:38 [ 41] [ 8] [0467PSLK] +17:32:38 [ 42] [ 15] [999999 ] +17:32:38 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:32:38 [ 49] [ 3] [418] +17:32:38 [ 52] [ 16] [356E4CEC4FD3C6C8] +17:32:38 ============================================================================ +17:32:38 + + +waiting on router queue for slot.... +17:32:38 Sending to : +17:32:38 ============================================================================ +17:32:38 ============================================================================ +17:32:38 Slot Id : <363> +17:32:38 Transaction Type : REQUEST +17:32:38 Received From : +17:32:38 ============================================================================ +17:32:38 FNo. Len. Field Value +17:32:38 ============================================================================ +17:32:38 [ 1] [ 4] [0200] +17:32:38 [ 2] [ 16] [6688990103656003] +17:32:38 [ 3] [ 6] [010000] +17:32:38 [ 4] [ 12] [000150000000] +17:32:38 [ 7] [ 10] [0320103143] +17:32:38 [ 11] [ 6] [270910] +17:32:38 [ 12] [ 6] [173143] +17:32:38 [ 13] [ 4] [0320] +17:32:38 [ 14] [ 4] [4301] +17:32:38 [ 15] [ 4] [0320] +17:32:38 [ 18] [ 4] [6011] +17:32:38 [ 19] [ 3] [418] +17:32:38 [ 22] [ 3] [021] +17:32:38 [ 25] [ 2] [01] +17:32:38 [ 28] [ 9] [D00002000] +17:32:38 [ 32] [ 6] [180893] +17:32:38 [ 35] [ 37] [6688990103656003=43011231600368100000] +17:32:38 [ 37] [ 12] [507910270910] +17:32:38 [ 41] [ 8] [0467PSLK] +17:32:38 [ 42] [ 15] [999999 ] +17:32:38 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:32:38 [ 49] [ 3] [418] +17:32:38 [ 52] [ 16] [8CF8D98042D3CD6A] +17:32:38 ============================================================================ +17:32:38 + + +waiting on router queue for slot.... +17:32:38 Sending to : <0> +17:32:38 ============================================================================ +17:32:39 ============================================================================ +17:32:39 Slot Id : <363> +17:32:39 Transaction Type : RESPONSE +17:32:39 Received From : +17:32:39 ============================================================================ +17:32:39 FNo. Len. Field Value +17:32:39 ============================================================================ +17:32:39 [ 1] [ 4] [0210] +17:32:39 [ 2] [ 16] [6688990103656003] +17:32:39 [ 3] [ 6] [010000] +17:32:39 [ 4] [ 12] [000150000000] +17:32:39 [ 7] [ 10] [0320103143] +17:32:39 [ 11] [ 6] [270910] +17:32:39 [ 12] [ 6] [173143] +17:32:39 [ 13] [ 4] [0320] +17:32:39 [ 15] [ 4] [0320] +17:32:39 [ 18] [ 4] [6011] +17:32:39 [ 19] [ 3] [418] +17:32:39 [ 22] [ 3] [021] +17:32:39 [ 32] [ 6] [180893] +17:32:39 [ 35] [ 37] [6688990103656003=43011231600368100000] +17:32:39 [ 37] [ 12] [507910270910] +17:32:39 [ 39] [ 2] [61] +17:32:39 [ 41] [ 8] [0467PSLK] +17:32:39 [ 49] [ 3] [418] +17:32:39 ============================================================================ +17:32:39 Sending to : +17:32:39 ============================================================================ +17:32:39 + + +waiting on router queue for slot.... +17:32:40 ============================================================================ +17:32:40 Slot Id : <363> +17:32:40 Transaction Type : RESPONSE +17:32:40 Received From : +17:32:40 ============================================================================ +17:32:40 FNo. Len. Field Value +17:32:40 ============================================================================ +17:32:40 [ 1] [ 4] [0210] +17:32:40 [ 2] [ 16] [6688990103656003] +17:32:40 [ 3] [ 6] [010000] +17:32:40 [ 4] [ 12] [000150000000] +17:32:40 [ 7] [ 10] [0320103143] +17:32:40 [ 11] [ 6] [270910] +17:32:40 [ 12] [ 6] [173143] +17:32:40 [ 13] [ 4] [0320] +17:32:40 [ 15] [ 4] [0320] +17:32:40 [ 18] [ 4] [6011] +17:32:40 [ 19] [ 3] [418] +17:32:40 [ 22] [ 3] [021] +17:32:40 [ 32] [ 6] [180893] +17:32:40 [ 35] [ 37] [6688990103656003=43011231600368100000] +17:32:40 [ 37] [ 12] [507910270910] +17:32:40 [ 39] [ 2] [61] +17:32:40 [ 41] [ 8] [0467PSLK] +17:32:40 [ 49] [ 3] [418] +17:32:40 ============================================================================ +17:32:40 Calculate Source COMM Id = 2 +17:32:40 ============================================================================ +17:32:40 + + +waiting on router queue for slot.... +17:32:40 ============================================================================ +17:32:40 Slot Id : <355> +17:32:40 Transaction Type : REQUEST +17:32:40 Received From : +17:32:40 ============================================================================ +17:32:40 FNo. Len. Field Value +17:32:40 ============================================================================ +17:32:40 [ 1] [ 4] [0200] +17:32:40 [ 2] [ 16] [6688990040072561] +17:32:40 [ 3] [ 6] [011000] +17:32:40 [ 4] [ 12] [000030000000] +17:32:40 [ 7] [ 10] [0320173235] +17:32:40 [ 11] [ 6] [816796] +17:32:40 [ 12] [ 6] [173235] +17:32:40 [ 13] [ 4] [0320] +17:32:40 [ 15] [ 4] [0320] +17:32:40 [ 18] [ 4] [6011] +17:32:40 [ 22] [ 3] [900] +17:32:40 [ 25] [ 2] [02] +17:32:40 [ 28] [ 9] [D00002000] +17:32:40 [ 32] [ 6] [621354] +17:32:40 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:32:40 [ 37] [ 12] [507903499683] +17:32:40 [ 41] [ 8] [06002200] +17:32:40 [ 42] [ 15] [NATIVE ] +17:32:40 [ 43] [ 40] [Beng Market Beng LAO] +17:32:40 [ 49] [ 3] [418] +17:32:40 [ 52] [ 16] [8F4569422EC9DC11] +17:32:40 ============================================================================ +17:32:40 + + +waiting on router queue for slot.... +17:32:40 Sending to : +17:32:40 ============================================================================ +17:32:40 Sending to : +17:32:40 ============================================================================ +17:32:41 ============================================================================ +17:32:41 Slot Id : <355> +17:32:41 Transaction Type : REQUEST +17:32:41 Received From : +17:32:41 ============================================================================ +17:32:41 FNo. Len. Field Value +17:32:41 ============================================================================ +17:32:41 [ 1] [ 4] [0200] +17:32:41 [ 2] [ 16] [6688990040072561] +17:32:41 [ 3] [ 6] [011000] +17:32:41 [ 4] [ 12] [000030000000] +17:32:41 [ 7] [ 10] [0320173235] +17:32:41 [ 11] [ 6] [816796] +17:32:41 [ 12] [ 6] [173235] +17:32:41 [ 13] [ 4] [0320] +17:32:41 [ 15] [ 4] [0320] +17:32:41 [ 18] [ 4] [6011] +17:32:41 [ 22] [ 3] [900] +17:32:41 [ 25] [ 2] [02] +17:32:41 [ 28] [ 9] [D00002000] +17:32:41 [ 32] [ 6] [621354] +17:32:41 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:32:41 [ 37] [ 12] [507903499683] +17:32:41 [ 41] [ 8] [06002200] +17:32:41 [ 42] [ 15] [NATIVE ] +17:32:41 [ 43] [ 40] [Beng Market Beng LAO] +17:32:41 [ 49] [ 3] [418] +17:32:41 [ 52] [ 16] [8F4569422EC9DC11] +17:32:41 ============================================================================ +17:32:41 + + +waiting on router queue for slot.... +17:32:41 Sending to : +17:32:41 ============================================================================ +17:32:41 ============================================================================ +17:32:41 Slot Id : <355> +17:32:41 Transaction Type : REQUEST +17:32:41 Received From : +17:32:41 ============================================================================ +17:32:41 FNo. Len. Field Value +17:32:41 ============================================================================ +17:32:41 [ 1] [ 4] [0200] +17:32:41 [ 2] [ 16] [6688990040072561] +17:32:41 [ 3] [ 6] [011000] +17:32:41 [ 4] [ 12] [000030000000] +17:32:41 [ 7] [ 10] [0320173235] +17:32:41 [ 11] [ 6] [816796] +17:32:41 [ 12] [ 6] [173235] +17:32:41 [ 13] [ 4] [0320] +17:32:41 [ 15] [ 4] [0320] +17:32:41 [ 18] [ 4] [6011] +17:32:41 [ 22] [ 3] [900] +17:32:41 [ 25] [ 2] [02] +17:32:41 [ 28] [ 9] [D00002000] +17:32:41 [ 32] [ 6] [621354] +17:32:41 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:32:41 [ 37] [ 12] [507903499683] +17:32:41 [ 41] [ 8] [06002200] +17:32:41 [ 42] [ 15] [NATIVE ] +17:32:41 [ 43] [ 40] [Beng Market Beng LAO] +17:32:41 [ 49] [ 3] [418] +17:32:41 [ 52] [ 16] [ED280CF8FD8967F6] +17:32:41 ============================================================================ +17:32:41 + + +waiting on router queue for slot.... +17:32:41 Sending to : <4> +17:32:41 ============================================================================ +17:32:42 ============================================================================ +17:32:42 Slot Id : <355> +17:32:42 Transaction Type : RESPONSE +17:32:42 Received From : +17:32:42 ============================================================================ +17:32:42 FNo. Len. Field Value +17:32:42 ============================================================================ +17:32:42 [ 1] [ 4] [0210] +17:32:42 [ 2] [ 16] [6688990040072561] +17:32:42 [ 3] [ 6] [011000] +17:32:42 [ 4] [ 12] [000030000000] +17:32:42 [ 11] [ 6] [816796] +17:32:42 [ 12] [ 6] [173235] +17:32:42 [ 15] [ 4] [0320] +17:32:42 [ 18] [ 4] [6011] +17:32:42 [ 32] [ 6] [621354] +17:32:42 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:32:42 [ 37] [ 12] [507903499683] +17:32:42 [ 38] [ 6] [901834] +17:32:42 [ 39] [ 2] [00] +17:32:42 [ 41] [ 8] [06002200] +17:32:42 [ 49] [ 3] [418] +17:32:42 [ 54] [ 20] [1002418C000003979657] +17:32:42 ============================================================================ +17:32:42 Sending to : +17:32:42 ============================================================================ +17:32:42 + + +waiting on router queue for slot.... +17:32:43 ============================================================================ +17:32:43 Slot Id : <355> +17:32:43 Transaction Type : RESPONSE +17:32:43 Received From : +17:32:43 ============================================================================ +17:32:43 FNo. Len. Field Value +17:32:43 ============================================================================ +17:32:43 [ 1] [ 4] [0210] +17:32:43 [ 2] [ 16] [6688990040072561] +17:32:43 [ 3] [ 6] [011000] +17:32:43 [ 4] [ 12] [000030000000] +17:32:43 [ 11] [ 6] [816796] +17:32:43 [ 12] [ 6] [173235] +17:32:43 [ 15] [ 4] [0320] +17:32:43 [ 18] [ 4] [6011] +17:32:43 [ 32] [ 6] [621354] +17:32:43 [ 35] [ 37] [6688990040072561=98011261059300900000] +17:32:43 [ 37] [ 12] [507903499683] +17:32:43 [ 38] [ 6] [901834] +17:32:43 [ 39] [ 2] [00] +17:32:43 [ 41] [ 8] [06002200] +17:32:43 [ 49] [ 3] [418] +17:32:43 [ 54] [ 20] [1002418C000003979657] +17:32:43 ============================================================================ +17:32:43 Calculate Source COMM Id = 0 +17:32:43 ============================================================================ +17:32:43 + + +waiting on router queue for slot.... +17:32:55 ============================================================================ +17:32:55 Slot Id : <344> +17:32:55 Transaction Type : REQUEST +17:32:55 Received From : +17:32:55 ============================================================================ +17:32:55 FNo. Len. Field Value +17:32:55 ============================================================================ +17:32:55 [ 1] [ 4] [0800] +17:32:55 [ 7] [ 10] [0320103202] +17:32:55 [ 11] [ 6] [157482] +17:32:55 [ 70] [ 3] [301] +17:32:55 ============================================================================ +17:32:55 + + +waiting on router queue for slot.... +17:32:55 Sending to : +17:32:55 ============================================================================ +17:32:55 ============================================================================ +17:32:55 Slot Id : <344> +17:32:55 Transaction Type : RESPONSE +17:32:55 Received From : +17:32:55 ============================================================================ +17:32:55 FNo. Len. Field Value +17:32:55 ============================================================================ +17:32:55 [ 1] [ 4] [0810] +17:32:55 [ 7] [ 10] [0320103202] +17:32:55 [ 11] [ 6] [157482] +17:32:55 [ 39] [ 2] [00] +17:32:55 [ 70] [ 3] [301] +17:32:55 ============================================================================ +17:32:55 Calculate Source COMM Id = 2 +17:32:55 ============================================================================ +17:32:55 + + +waiting on router queue for slot.... +17:32:56 ============================================================================ +17:32:56 Slot Id : <370> +17:32:56 Transaction Type : REQUEST +17:32:56 Received From : +17:32:56 ============================================================================ +17:32:56 FNo. Len. Field Value +17:32:56 ============================================================================ +17:32:56 [ 1] [ 4] [0800] +17:32:56 [ 7] [ 10] [0321004445] +17:32:56 [ 11] [ 6] [174445] +17:32:56 [ 37] [ 12] [57917174445] +17:32:56 [ 70] [ 3] [301] +17:32:56 ============================================================================ +17:32:56 + + +waiting on router queue for slot.... +17:32:56 Sending to : +17:32:56 ============================================================================ +17:32:56 ============================================================================ +17:32:56 Slot Id : <370> +17:32:56 Transaction Type : RESPONSE +17:32:56 Received From : +17:32:56 ============================================================================ +17:32:56 FNo. Len. Field Value +17:32:56 ============================================================================ +17:32:56 [ 1] [ 4] [0810] +17:32:56 [ 7] [ 10] [0321004445] +17:32:56 [ 11] [ 6] [174445] +17:32:56 [ 37] [ 12] [579171744450] +17:32:56 [ 39] [ 2] [00] +17:32:56 [ 70] [ 3] [810] +17:32:56 ============================================================================ +17:32:56 Calculate Source COMM Id = 6 +17:32:56 ============================================================================ +17:32:56 + + +waiting on router queue for slot.... +17:32:56 ============================================================================ +17:32:56 Slot Id : <379> +17:32:56 Transaction Type : REQUEST +17:32:56 Received From : +17:32:56 ============================================================================ +17:32:56 FNo. Len. Field Value +17:32:56 ============================================================================ +17:32:56 [ 1] [ 4] [0200] +17:32:56 [ 2] [ 16] [6688990108357003] +17:32:56 [ 3] [ 6] [011000] +17:32:56 [ 4] [ 12] [000100000000] +17:32:56 [ 7] [ 10] [0320173251] +17:32:56 [ 11] [ 6] [816850] +17:32:56 [ 12] [ 6] [173251] +17:32:56 [ 13] [ 4] [0320] +17:32:56 [ 15] [ 4] [0320] +17:32:56 [ 18] [ 4] [6011] +17:32:56 [ 22] [ 3] [900] +17:32:56 [ 25] [ 2] [02] +17:32:56 [ 28] [ 9] [D00002000] +17:32:56 [ 32] [ 6] [621354] +17:32:56 [ 35] [ 37] [6688990108357003=44061231700398400000] +17:32:56 [ 37] [ 12] [507903676058] +17:32:56 [ 41] [ 8] [16002000] +17:32:56 [ 42] [ 15] [NATIVE ] +17:32:56 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +17:32:56 [ 49] [ 3] [418] +17:32:56 [ 52] [ 16] [37817E20229A5C21] +17:32:56 ============================================================================ +17:32:56 + + +waiting on router queue for slot.... +17:32:56 Sending to : +17:32:56 ============================================================================ +17:32:56 Sending to : +17:32:56 ============================================================================ +17:32:56 ============================================================================ +17:32:56 Slot Id : <379> +17:32:56 Transaction Type : REQUEST +17:32:56 Received From : +17:32:56 ============================================================================ +17:32:56 FNo. Len. Field Value +17:32:56 ============================================================================ +17:32:56 [ 1] [ 4] [0200] +17:32:56 [ 2] [ 16] [6688990108357003] +17:32:56 [ 3] [ 6] [011000] +17:32:56 [ 4] [ 12] [000100000000] +17:32:56 [ 7] [ 10] [0320173251] +17:32:56 [ 11] [ 6] [816850] +17:32:56 [ 12] [ 6] [173251] +17:32:56 [ 13] [ 4] [0320] +17:32:56 [ 15] [ 4] [0320] +17:32:56 [ 18] [ 4] [6011] +17:32:56 [ 22] [ 3] [900] +17:32:56 [ 25] [ 2] [02] +17:32:56 [ 28] [ 9] [D00002000] +17:32:56 [ 32] [ 6] [621354] +17:32:56 [ 35] [ 37] [6688990108357003=44061231700398400000] +17:32:56 [ 37] [ 12] [507903676058] +17:32:56 [ 41] [ 8] [16002000] +17:32:56 [ 42] [ 15] [NATIVE ] +17:32:56 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +17:32:56 [ 49] [ 3] [418] +17:32:56 [ 52] [ 16] [37817E20229A5C21] +17:32:56 ============================================================================ +17:32:56 + + +waiting on router queue for slot.... +17:32:56 Sending to : +17:32:56 ============================================================================ +17:32:56 ============================================================================ +17:32:56 Slot Id : <379> +17:32:56 Transaction Type : REQUEST +17:32:56 Received From : +17:32:56 ============================================================================ +17:32:56 FNo. Len. Field Value +17:32:56 ============================================================================ +17:32:56 [ 1] [ 4] [0200] +17:32:56 [ 2] [ 16] [6688990108357003] +17:32:56 [ 3] [ 6] [011000] +17:32:56 [ 4] [ 12] [000100000000] +17:32:56 [ 7] [ 10] [0320173251] +17:32:56 [ 11] [ 6] [816850] +17:32:56 [ 12] [ 6] [173251] +17:32:56 [ 13] [ 4] [0320] +17:32:56 [ 15] [ 4] [0320] +17:32:56 [ 18] [ 4] [6011] +17:32:56 [ 22] [ 3] [900] +17:32:56 [ 25] [ 2] [02] +17:32:56 [ 28] [ 9] [D00002000] +17:32:56 [ 32] [ 6] [621354] +17:32:56 [ 35] [ 37] [6688990108357003=44061231700398400000] +17:32:56 [ 37] [ 12] [507903676058] +17:32:56 [ 41] [ 8] [16002000] +17:32:56 [ 42] [ 15] [NATIVE ] +17:32:56 [ 43] [ 40] [Nong Nieng Unit Xaythany LAO] +17:32:56 [ 49] [ 3] [418] +17:32:56 [ 52] [ 16] [21B53F1C7134317A] +17:32:56 ============================================================================ +17:32:56 + + +waiting on router queue for slot.... +17:32:56 Sending to : <4> +17:32:56 ============================================================================ +17:32:56 ============================================================================ +17:32:56 Slot Id : <379> +17:32:56 Transaction Type : RESPONSE +17:32:56 Received From : +17:32:56 ============================================================================ +17:32:56 FNo. Len. Field Value +17:32:56 ============================================================================ +17:32:56 [ 1] [ 4] [0210] +17:32:56 [ 2] [ 16] [6688990108357003] +17:32:56 [ 3] [ 6] [011000] +17:32:56 [ 4] [ 12] [000100000000] +17:32:56 [ 7] [ 10] [0320173251] +17:32:56 [ 11] [ 6] [816850] +17:32:56 [ 12] [ 6] [173251] +17:32:56 [ 13] [ 4] [0320] +17:32:56 [ 15] [ 4] [0320] +17:32:56 [ 18] [ 4] [6011] +17:32:56 [ 22] [ 3] [021] +17:32:56 [ 32] [ 6] [621354] +17:32:56 [ 35] [ 37] [6688990108357003=44061231700398400000] +17:32:56 [ 37] [ 12] [507903676058] +17:32:56 [ 39] [ 2] [65] +17:32:56 [ 41] [ 8] [16002000] +17:32:56 [ 49] [ 3] [418] +17:32:56 ============================================================================ +17:32:56 Sending to : +17:32:56 ============================================================================ +17:32:56 + + +waiting on router queue for slot.... +17:32:57 ============================================================================ +17:32:57 Slot Id : <379> +17:32:57 Transaction Type : RESPONSE +17:32:57 Received From : +17:32:57 ============================================================================ +17:32:57 FNo. Len. Field Value +17:32:57 ============================================================================ +17:32:57 [ 1] [ 4] [0210] +17:32:57 [ 2] [ 16] [6688990108357003] +17:32:57 [ 3] [ 6] [011000] +17:32:57 [ 4] [ 12] [000100000000] +17:32:57 [ 7] [ 10] [0320173251] +17:32:57 [ 11] [ 6] [816850] +17:32:57 [ 12] [ 6] [173251] +17:32:57 [ 13] [ 4] [0320] +17:32:57 [ 15] [ 4] [0320] +17:32:57 [ 18] [ 4] [6011] +17:32:57 [ 22] [ 3] [021] +17:32:57 [ 32] [ 6] [621354] +17:32:57 [ 35] [ 37] [6688990108357003=44061231700398400000] +17:32:57 [ 37] [ 12] [507903676058] +17:32:57 [ 39] [ 2] [65] +17:32:57 [ 41] [ 8] [16002000] +17:32:57 [ 49] [ 3] [418] +17:32:57 ============================================================================ +17:32:57 Calculate Source COMM Id = 0 +17:32:57 ============================================================================ +17:32:57 + + +waiting on router queue for slot.... +17:33:05 ============================================================================ +17:33:05 Slot Id : <358> +17:33:05 Transaction Type : REQUEST +17:33:05 Received From : +17:33:05 ============================================================================ +17:33:05 FNo. Len. Field Value +17:33:05 ============================================================================ +17:33:05 [ 1] [ 4] [0800] +17:33:05 [ 7] [ 10] [0320103212] +17:33:05 [ 11] [ 6] [157483] +17:33:05 [ 70] [ 3] [301] +17:33:05 ============================================================================ +17:33:05 + + +waiting on router queue for slot.... +17:33:05 Sending to : +17:33:05 ============================================================================ +17:33:05 ============================================================================ +17:33:05 Slot Id : <358> +17:33:05 Transaction Type : RESPONSE +17:33:05 Received From : +17:33:05 ============================================================================ +17:33:05 FNo. Len. Field Value +17:33:05 ============================================================================ +17:33:05 [ 1] [ 4] [0810] +17:33:05 [ 7] [ 10] [0320103212] +17:33:05 [ 11] [ 6] [157483] +17:33:05 [ 39] [ 2] [00] +17:33:05 [ 70] [ 3] [301] +17:33:05 ============================================================================ +17:33:05 Calculate Source COMM Id = 2 +17:33:05 ============================================================================ +17:33:05 + + +waiting on router queue for slot.... +17:33:08 ============================================================================ +17:33:08 Slot Id : <369> +17:33:08 Transaction Type : REQUEST +17:33:08 Received From : +17:33:08 ============================================================================ +17:33:08 FNo. Len. Field Value +17:33:08 ============================================================================ +17:33:08 [ 1] [ 4] [0200] +17:33:08 [ 2] [ 16] [6688990040153627] +17:33:08 [ 3] [ 6] [311000] +17:33:08 [ 4] [ 12] [000000000000] +17:33:08 [ 7] [ 10] [0320174055] +17:33:08 [ 11] [ 6] [177386] +17:33:08 [ 12] [ 6] [174055] +17:33:08 [ 13] [ 4] [0320] +17:33:08 [ 14] [ 4] [9805] +17:33:08 [ 15] [ 4] [0320] +17:33:08 [ 18] [ 4] [6011] +17:33:08 [ 22] [ 3] [900] +17:33:08 [ 25] [ 2] [02] +17:33:08 [ 28] [ 9] [000000000] +17:33:08 [ 32] [ 6] [220699] +17:33:08 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:33:08 [ 37] [ 12] [507900010255] +17:33:08 [ 41] [ 8] [01000100] +17:33:08 [ 42] [ 15] [APTRA ] +17:33:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:33:08 [ 49] [ 3] [418] +17:33:08 [ 52] [ 16] [EE2CC346E7DC781F] +17:33:08 ============================================================================ +17:33:08 + + +waiting on router queue for slot.... +17:33:08 Sending to : +17:33:08 ============================================================================ +17:33:08 Sending to : +17:33:08 ============================================================================ +17:33:08 ============================================================================ +17:33:08 Slot Id : <369> +17:33:08 Transaction Type : REQUEST +17:33:08 Received From : +17:33:08 ============================================================================ +17:33:08 FNo. Len. Field Value +17:33:08 ============================================================================ +17:33:08 [ 1] [ 4] [0200] +17:33:08 [ 2] [ 16] [6688990040153627] +17:33:08 [ 3] [ 6] [311000] +17:33:08 [ 4] [ 12] [000000000000] +17:33:08 [ 7] [ 10] [0320174055] +17:33:08 [ 11] [ 6] [177386] +17:33:08 [ 12] [ 6] [174055] +17:33:08 [ 13] [ 4] [0320] +17:33:08 [ 14] [ 4] [9805] +17:33:08 [ 15] [ 4] [0320] +17:33:08 [ 18] [ 4] [6011] +17:33:08 [ 22] [ 3] [900] +17:33:08 [ 25] [ 2] [02] +17:33:08 [ 28] [ 9] [000000000] +17:33:08 [ 32] [ 6] [220699] +17:33:08 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:33:08 [ 37] [ 12] [507900010255] +17:33:08 [ 41] [ 8] [01000100] +17:33:08 [ 42] [ 15] [APTRA ] +17:33:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:33:08 [ 49] [ 3] [418] +17:33:08 [ 52] [ 16] [EE2CC346E7DC781F] +17:33:08 ============================================================================ +17:33:08 + + +waiting on router queue for slot.... +17:33:08 Sending to : +17:33:08 ============================================================================ +17:33:08 ============================================================================ +17:33:08 Slot Id : <369> +17:33:08 Transaction Type : REQUEST +17:33:08 Received From : +17:33:08 ============================================================================ +17:33:08 FNo. Len. Field Value +17:33:08 ============================================================================ +17:33:08 [ 1] [ 4] [0200] +17:33:08 [ 2] [ 16] [6688990040153627] +17:33:08 [ 3] [ 6] [311000] +17:33:08 [ 4] [ 12] [000000000000] +17:33:08 [ 7] [ 10] [0320174055] +17:33:08 [ 11] [ 6] [177386] +17:33:08 [ 12] [ 6] [174055] +17:33:08 [ 13] [ 4] [0320] +17:33:08 [ 14] [ 4] [9805] +17:33:08 [ 15] [ 4] [0320] +17:33:08 [ 18] [ 4] [6011] +17:33:08 [ 22] [ 3] [900] +17:33:08 [ 25] [ 2] [02] +17:33:08 [ 28] [ 9] [000000000] +17:33:08 [ 32] [ 6] [220699] +17:33:08 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:33:08 [ 37] [ 12] [507900010255] +17:33:08 [ 41] [ 8] [01000100] +17:33:08 [ 42] [ 15] [APTRA ] +17:33:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:33:08 [ 49] [ 3] [418] +17:33:08 [ 52] [ 16] [56F6D4B6ED33D0E5] +17:33:08 ============================================================================ +17:33:08 + + +waiting on router queue for slot.... +17:33:08 Sending to : <0> +17:33:08 ============================================================================ +17:33:08 ============================================================================ +17:33:08 Slot Id : <369> +17:33:08 Transaction Type : RESPONSE +17:33:08 Received From : +17:33:08 ============================================================================ +17:33:08 FNo. Len. Field Value +17:33:08 ============================================================================ +17:33:08 [ 1] [ 4] [0210] +17:33:08 [ 2] [ 16] [6688990040153627] +17:33:08 [ 3] [ 6] [311000] +17:33:08 [ 4] [ 12] [000000000000] +17:33:08 [ 7] [ 10] [0320174055] +17:33:08 [ 11] [ 6] [177386] +17:33:08 [ 12] [ 6] [174055] +17:33:08 [ 13] [ 4] [0320] +17:33:08 [ 15] [ 4] [0320] +17:33:08 [ 18] [ 4] [6011] +17:33:08 [ 22] [ 3] [900] +17:33:08 [ 32] [ 6] [220699] +17:33:08 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:33:08 [ 37] [ 12] [507900010255] +17:33:08 [ 39] [ 2] [14] +17:33:08 [ 41] [ 8] [01000100] +17:33:08 [ 49] [ 3] [418] +17:33:08 ============================================================================ +17:33:08 Sending to : +17:33:08 ============================================================================ +17:33:08 + + +waiting on router queue for slot.... +17:33:09 ============================================================================ +17:33:09 Slot Id : <369> +17:33:09 Transaction Type : RESPONSE +17:33:09 Received From : +17:33:09 ============================================================================ +17:33:09 FNo. Len. Field Value +17:33:09 ============================================================================ +17:33:09 [ 1] [ 4] [0210] +17:33:09 [ 2] [ 16] [6688990040153627] +17:33:09 [ 3] [ 6] [311000] +17:33:09 [ 4] [ 12] [000000000000] +17:33:09 [ 7] [ 10] [0320174055] +17:33:09 [ 11] [ 6] [177386] +17:33:09 [ 12] [ 6] [174055] +17:33:09 [ 13] [ 4] [0320] +17:33:09 [ 15] [ 4] [0320] +17:33:09 [ 18] [ 4] [6011] +17:33:09 [ 22] [ 3] [900] +17:33:09 [ 32] [ 6] [220699] +17:33:09 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:33:09 [ 37] [ 12] [507900010255] +17:33:09 [ 39] [ 2] [14] +17:33:09 [ 41] [ 8] [01000100] +17:33:09 [ 49] [ 3] [418] +17:33:09 ============================================================================ +17:33:09 Calculate Source COMM Id = 1 +17:33:09 ============================================================================ +17:33:09 + + +waiting on router queue for slot.... +17:33:14 ============================================================================ +17:33:14 Slot Id : <360> +17:33:14 Transaction Type : REQUEST +17:33:14 Received From : +17:33:14 ============================================================================ +17:33:14 FNo. Len. Field Value +17:33:14 ============================================================================ +17:33:14 [ 1] [ 4] [0200] +17:33:14 [ 2] [ 16] [6688990103528608] +17:33:14 [ 3] [ 6] [011000] +17:33:14 [ 4] [ 12] [000025000000] +17:33:14 [ 7] [ 10] [0320173309] +17:33:14 [ 11] [ 6] [816939] +17:33:14 [ 12] [ 6] [173309] +17:33:14 [ 13] [ 4] [0320] +17:33:14 [ 15] [ 4] [0320] +17:33:14 [ 18] [ 4] [6011] +17:33:14 [ 22] [ 3] [900] +17:33:14 [ 25] [ 2] [02] +17:33:14 [ 28] [ 9] [D00002000] +17:33:14 [ 32] [ 6] [621354] +17:33:14 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:33:14 [ 37] [ 12] [507903489487] +17:33:14 [ 41] [ 8] [06002100] +17:33:14 [ 42] [ 15] [NATIVE ] +17:33:14 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:33:14 [ 49] [ 3] [418] +17:33:14 [ 52] [ 16] [7D80129F3F4E39ED] +17:33:14 ============================================================================ +17:33:14 + + +waiting on router queue for slot.... +17:33:14 Sending to : +17:33:14 ============================================================================ +17:33:14 Sending to : +17:33:14 ============================================================================ +17:33:15 ============================================================================ +17:33:15 Slot Id : <360> +17:33:15 Transaction Type : REQUEST +17:33:15 Received From : +17:33:15 ============================================================================ +17:33:15 FNo. Len. Field Value +17:33:15 ============================================================================ +17:33:15 [ 1] [ 4] [0200] +17:33:15 [ 2] [ 16] [6688990103528608] +17:33:15 [ 3] [ 6] [011000] +17:33:15 [ 4] [ 12] [000025000000] +17:33:15 [ 7] [ 10] [0320173309] +17:33:15 [ 11] [ 6] [816939] +17:33:15 [ 12] [ 6] [173309] +17:33:15 [ 13] [ 4] [0320] +17:33:15 [ 15] [ 4] [0320] +17:33:15 [ 18] [ 4] [6011] +17:33:15 [ 22] [ 3] [900] +17:33:15 [ 25] [ 2] [02] +17:33:15 [ 28] [ 9] [D00002000] +17:33:15 [ 32] [ 6] [621354] +17:33:15 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:33:15 [ 37] [ 12] [507903489487] +17:33:15 [ 41] [ 8] [06002100] +17:33:15 [ 42] [ 15] [NATIVE ] +17:33:15 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:33:15 [ 49] [ 3] [418] +17:33:15 [ 52] [ 16] [7D80129F3F4E39ED] +17:33:15 ============================================================================ +17:33:15 + + +waiting on router queue for slot.... +17:33:15 Sending to : +17:33:15 ============================================================================ +17:33:15 ============================================================================ +17:33:15 Slot Id : <360> +17:33:15 Transaction Type : REQUEST +17:33:15 Received From : +17:33:15 ============================================================================ +17:33:15 FNo. Len. Field Value +17:33:15 ============================================================================ +17:33:15 [ 1] [ 4] [0200] +17:33:15 [ 2] [ 16] [6688990103528608] +17:33:15 [ 3] [ 6] [011000] +17:33:15 [ 4] [ 12] [000025000000] +17:33:15 [ 7] [ 10] [0320173309] +17:33:15 [ 11] [ 6] [816939] +17:33:15 [ 12] [ 6] [173309] +17:33:15 [ 13] [ 4] [0320] +17:33:15 [ 15] [ 4] [0320] +17:33:15 [ 18] [ 4] [6011] +17:33:15 [ 22] [ 3] [900] +17:33:15 [ 25] [ 2] [02] +17:33:15 [ 28] [ 9] [D00002000] +17:33:15 [ 32] [ 6] [621354] +17:33:15 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:33:15 [ 37] [ 12] [507903489487] +17:33:15 [ 41] [ 8] [06002100] +17:33:15 [ 42] [ 15] [NATIVE ] +17:33:15 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:33:15 [ 49] [ 3] [418] +17:33:15 [ 52] [ 16] [969CFA9A1BA5B06D] +17:33:15 ============================================================================ +17:33:15 + + +waiting on router queue for slot.... +17:33:15 Sending to : <4> +17:33:15 ============================================================================ +17:33:16 ============================================================================ +17:33:16 Slot Id : <360> +17:33:16 Transaction Type : RESPONSE +17:33:16 Received From : +17:33:16 ============================================================================ +17:33:16 FNo. Len. Field Value +17:33:16 ============================================================================ +17:33:16 [ 1] [ 4] [0210] +17:33:16 [ 2] [ 16] [6688990103528608] +17:33:16 [ 3] [ 6] [011000] +17:33:16 [ 4] [ 12] [000025000000] +17:33:16 [ 11] [ 6] [816939] +17:33:16 [ 12] [ 6] [173309] +17:33:16 [ 15] [ 4] [0320] +17:33:16 [ 18] [ 4] [6011] +17:33:16 [ 32] [ 6] [621354] +17:33:16 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:33:16 [ 37] [ 12] [507903489487] +17:33:16 [ 38] [ 6] [978357] +17:33:16 [ 39] [ 2] [00] +17:33:16 [ 41] [ 8] [06002100] +17:33:16 [ 49] [ 3] [418] +17:33:16 [ 54] [ 20] [1002418C000011285122] +17:33:16 ============================================================================ +17:33:16 Sending to : +17:33:16 ============================================================================ +17:33:16 + + +waiting on router queue for slot.... +17:33:16 ============================================================================ +17:33:16 Slot Id : <338> +17:33:16 Transaction Type : REQUEST +17:33:16 Received From : +17:33:16 ============================================================================ +17:33:16 FNo. Len. Field Value +17:33:16 ============================================================================ +17:33:16 [ 1] [ 4] [0800] +17:33:16 [ 7] [ 10] [0320103223] +17:33:16 [ 11] [ 6] [157484] +17:33:16 [ 70] [ 3] [301] +17:33:16 ============================================================================ +17:33:16 + + +waiting on router queue for slot.... +17:33:16 Sending to : +17:33:16 ============================================================================ +17:33:16 ============================================================================ +17:33:16 Slot Id : <338> +17:33:16 Transaction Type : RESPONSE +17:33:16 Received From : +17:33:16 ============================================================================ +17:33:16 FNo. Len. Field Value +17:33:16 ============================================================================ +17:33:16 [ 1] [ 4] [0810] +17:33:16 [ 7] [ 10] [0320103223] +17:33:16 [ 11] [ 6] [157484] +17:33:16 [ 39] [ 2] [00] +17:33:16 [ 70] [ 3] [301] +17:33:16 ============================================================================ +17:33:16 Calculate Source COMM Id = 2 +17:33:16 ============================================================================ +17:33:16 + + +waiting on router queue for slot.... +17:33:17 ============================================================================ +17:33:17 Slot Id : <360> +17:33:17 Transaction Type : RESPONSE +17:33:17 Received From : +17:33:17 ============================================================================ +17:33:17 FNo. Len. Field Value +17:33:17 ============================================================================ +17:33:17 [ 1] [ 4] [0210] +17:33:17 [ 2] [ 16] [6688990103528608] +17:33:17 [ 3] [ 6] [011000] +17:33:17 [ 4] [ 12] [000025000000] +17:33:17 [ 11] [ 6] [816939] +17:33:17 [ 12] [ 6] [173309] +17:33:17 [ 15] [ 4] [0320] +17:33:17 [ 18] [ 4] [6011] +17:33:17 [ 32] [ 6] [621354] +17:33:17 [ 35] [ 37] [6688990103528608=43011231860819500000] +17:33:17 [ 37] [ 12] [507903489487] +17:33:17 [ 38] [ 6] [978357] +17:33:17 [ 39] [ 2] [00] +17:33:17 [ 41] [ 8] [06002100] +17:33:17 [ 49] [ 3] [418] +17:33:17 [ 54] [ 20] [1002418C000011285122] +17:33:17 ============================================================================ +17:33:17 Calculate Source COMM Id = 0 +17:33:17 ============================================================================ +17:33:17 + + +waiting on router queue for slot.... +17:33:27 ============================================================================ +17:33:27 Slot Id : <354> +17:33:27 Transaction Type : REQUEST +17:33:27 Received From : +17:33:27 ============================================================================ +17:33:27 FNo. Len. Field Value +17:33:27 ============================================================================ +17:33:27 [ 1] [ 4] [0800] +17:33:27 [ 7] [ 10] [0320103234] +17:33:27 [ 11] [ 6] [157485] +17:33:27 [ 70] [ 3] [301] +17:33:27 ============================================================================ +17:33:27 + + +waiting on router queue for slot.... +17:33:27 Sending to : +17:33:27 ============================================================================ +17:33:27 ============================================================================ +17:33:27 Slot Id : <354> +17:33:27 Transaction Type : RESPONSE +17:33:27 Received From : +17:33:27 ============================================================================ +17:33:27 FNo. Len. Field Value +17:33:27 ============================================================================ +17:33:27 [ 1] [ 4] [0810] +17:33:27 [ 7] [ 10] [0320103234] +17:33:27 [ 11] [ 6] [157485] +17:33:27 [ 39] [ 2] [00] +17:33:27 [ 70] [ 3] [301] +17:33:27 ============================================================================ +17:33:27 Calculate Source COMM Id = 2 +17:33:27 ============================================================================ +17:33:27 + + +waiting on router queue for slot.... +17:33:29 ============================================================================ +17:33:29 Slot Id : <396> +17:33:29 Transaction Type : REQUEST +17:33:29 Received From : +17:33:29 ============================================================================ +17:33:29 FNo. Len. Field Value +17:33:29 ============================================================================ +17:33:29 [ 1] [ 4] [0200] +17:33:29 [ 2] [ 16] [6688990106839705] +17:33:29 [ 3] [ 6] [010000] +17:33:29 [ 4] [ 12] [000100000000] +17:33:29 [ 7] [ 10] [0320103235] +17:33:29 [ 11] [ 6] [270916] +17:33:29 [ 12] [ 6] [173235] +17:33:29 [ 13] [ 4] [0320] +17:33:29 [ 14] [ 4] [4401] +17:33:29 [ 15] [ 4] [0320] +17:33:29 [ 18] [ 4] [6011] +17:33:29 [ 19] [ 3] [418] +17:33:29 [ 22] [ 3] [021] +17:33:29 [ 25] [ 2] [01] +17:33:29 [ 28] [ 9] [D00002000] +17:33:29 [ 32] [ 6] [180893] +17:33:29 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:33:29 [ 37] [ 12] [507910270916] +17:33:29 [ 41] [ 8] [0201ADD1] +17:33:29 [ 42] [ 15] [999999 ] +17:33:29 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +17:33:29 [ 49] [ 3] [418] +17:33:29 [ 52] [ 16] [637EB50393C7CB10] +17:33:29 ============================================================================ +17:33:29 + + +waiting on router queue for slot.... +17:33:29 Sending to : +17:33:29 ============================================================================ +17:33:29 Sending to : +17:33:29 ============================================================================ +17:33:29 ============================================================================ +17:33:29 Slot Id : <396> +17:33:29 Transaction Type : REQUEST +17:33:29 Received From : +17:33:29 ============================================================================ +17:33:29 FNo. Len. Field Value +17:33:29 ============================================================================ +17:33:29 [ 1] [ 4] [0200] +17:33:29 [ 2] [ 16] [6688990106839705] +17:33:29 [ 3] [ 6] [010000] +17:33:29 [ 4] [ 12] [000100000000] +17:33:29 [ 7] [ 10] [0320103235] +17:33:29 [ 11] [ 6] [270916] +17:33:29 [ 12] [ 6] [173235] +17:33:29 [ 13] [ 4] [0320] +17:33:29 [ 14] [ 4] [4401] +17:33:29 [ 15] [ 4] [0320] +17:33:29 [ 18] [ 4] [6011] +17:33:29 [ 19] [ 3] [418] +17:33:29 [ 22] [ 3] [021] +17:33:29 [ 25] [ 2] [01] +17:33:29 [ 28] [ 9] [D00002000] +17:33:29 [ 32] [ 6] [180893] +17:33:29 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:33:29 [ 37] [ 12] [507910270916] +17:33:29 [ 41] [ 8] [0201ADD1] +17:33:29 [ 42] [ 15] [999999 ] +17:33:29 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +17:33:29 [ 49] [ 3] [418] +17:33:29 [ 52] [ 16] [637EB50393C7CB10] +17:33:29 ============================================================================ +17:33:29 + + +waiting on router queue for slot.... +17:33:29 Sending to : +17:33:29 ============================================================================ +17:33:29 ============================================================================ +17:33:29 Slot Id : <396> +17:33:29 Transaction Type : REQUEST +17:33:29 Received From : +17:33:29 ============================================================================ +17:33:29 FNo. Len. Field Value +17:33:29 ============================================================================ +17:33:29 [ 1] [ 4] [0200] +17:33:29 [ 2] [ 16] [6688990106839705] +17:33:29 [ 3] [ 6] [010000] +17:33:29 [ 4] [ 12] [000100000000] +17:33:29 [ 7] [ 10] [0320103235] +17:33:29 [ 11] [ 6] [270916] +17:33:29 [ 12] [ 6] [173235] +17:33:29 [ 13] [ 4] [0320] +17:33:29 [ 14] [ 4] [4401] +17:33:29 [ 15] [ 4] [0320] +17:33:29 [ 18] [ 4] [6011] +17:33:29 [ 19] [ 3] [418] +17:33:29 [ 22] [ 3] [021] +17:33:29 [ 25] [ 2] [01] +17:33:29 [ 28] [ 9] [D00002000] +17:33:29 [ 32] [ 6] [180893] +17:33:29 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:33:29 [ 37] [ 12] [507910270916] +17:33:29 [ 41] [ 8] [0201ADD1] +17:33:29 [ 42] [ 15] [999999 ] +17:33:29 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +17:33:29 [ 49] [ 3] [418] +17:33:29 [ 52] [ 16] [8AB409A21AADCE0E] +17:33:29 ============================================================================ +17:33:29 + + +waiting on router queue for slot.... +17:33:29 Sending to : <0> +17:33:29 ============================================================================ +17:33:30 ============================================================================ +17:33:30 Slot Id : <396> +17:33:30 Transaction Type : RESPONSE +17:33:30 Received From : +17:33:30 ============================================================================ +17:33:30 FNo. Len. Field Value +17:33:30 ============================================================================ +17:33:30 [ 1] [ 4] [0210] +17:33:30 [ 2] [ 16] [6688990106839705] +17:33:30 [ 3] [ 6] [010000] +17:33:30 [ 4] [ 12] [000100000000] +17:33:30 [ 7] [ 10] [0320103235] +17:33:30 [ 11] [ 6] [270916] +17:33:30 [ 12] [ 6] [173235] +17:33:30 [ 13] [ 4] [0320] +17:33:30 [ 15] [ 4] [0320] +17:33:30 [ 18] [ 4] [6011] +17:33:30 [ 19] [ 3] [418] +17:33:30 [ 22] [ 3] [021] +17:33:30 [ 32] [ 6] [180893] +17:33:30 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:33:30 [ 37] [ 12] [507910270916] +17:33:30 [ 39] [ 2] [14] +17:33:30 [ 41] [ 8] [0201ADD1] +17:33:30 [ 49] [ 3] [418] +17:33:30 ============================================================================ +17:33:30 Sending to : +17:33:30 ============================================================================ +17:33:30 + + +waiting on router queue for slot.... +17:33:31 ============================================================================ +17:33:31 Slot Id : <396> +17:33:31 Transaction Type : RESPONSE +17:33:31 Received From : +17:33:31 ============================================================================ +17:33:31 FNo. Len. Field Value +17:33:31 ============================================================================ +17:33:31 [ 1] [ 4] [0210] +17:33:31 [ 2] [ 16] [6688990106839705] +17:33:31 [ 3] [ 6] [010000] +17:33:31 [ 4] [ 12] [000100000000] +17:33:31 [ 7] [ 10] [0320103235] +17:33:31 [ 11] [ 6] [270916] +17:33:31 [ 12] [ 6] [173235] +17:33:31 [ 13] [ 4] [0320] +17:33:31 [ 15] [ 4] [0320] +17:33:31 [ 18] [ 4] [6011] +17:33:31 [ 19] [ 3] [418] +17:33:31 [ 22] [ 3] [021] +17:33:31 [ 32] [ 6] [180893] +17:33:31 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:33:31 [ 37] [ 12] [507910270916] +17:33:31 [ 39] [ 2] [14] +17:33:31 [ 41] [ 8] [0201ADD1] +17:33:31 [ 49] [ 3] [418] +17:33:31 ============================================================================ +17:33:31 Calculate Source COMM Id = 2 +17:33:31 ============================================================================ +17:33:31 + + +waiting on router queue for slot.... +17:33:37 ============================================================================ +17:33:37 Slot Id : <390> +17:33:37 Transaction Type : REQUEST +17:33:37 Received From : +17:33:37 ============================================================================ +17:33:37 FNo. Len. Field Value +17:33:37 ============================================================================ +17:33:37 [ 1] [ 4] [0800] +17:33:37 [ 2] [ 5] [02531] +17:33:37 [ 3] [ 6] [579178] +17:33:37 [ 7] [ 10] [0320103337] +17:33:37 [ 11] [ 6] [807431] +17:33:37 [ 15] [ 10] [0320103337] +17:33:37 [ 37] [ 11] [57917807431] +17:33:37 [ 70] [ 3] [001] +17:33:37 ============================================================================ +17:33:37 + + +waiting on router queue for slot.... +17:33:37 ============================================================================ +17:33:37 Slot Id : <390> +17:33:37 Transaction Type : RESPONSE +17:33:37 Received From : +17:33:37 ============================================================================ +17:33:37 FNo. Len. Field Value +17:33:37 ============================================================================ +17:33:37 [ 1] [ 4] [0810] +17:33:37 [ 7] [ 10] [0320103337] +17:33:37 [ 11] [ 6] [807431] +17:33:37 [ 15] [ 4] [0320] +17:33:37 [ 37] [ 12] [57917807431] +17:33:37 [ 39] [ 2] [00] +17:33:37 [ 70] [ 3] [001] +17:33:37 ============================================================================ +17:33:37 Sending to : +17:33:37 ============================================================================ +17:33:37 + + +waiting on router queue for slot.... +17:33:42 ============================================================================ +17:33:42 Slot Id : <374> +17:33:42 Transaction Type : REQUEST +17:33:42 Received From : +17:33:42 ============================================================================ +17:33:42 FNo. Len. Field Value +17:33:42 ============================================================================ +17:33:42 [ 1] [ 4] [0800] +17:33:42 [ 7] [ 10] [0320103249] +17:33:42 [ 11] [ 6] [157486] +17:33:42 [ 70] [ 3] [301] +17:33:42 ============================================================================ +17:33:42 + + +waiting on router queue for slot.... +17:33:42 Sending to : +17:33:42 ============================================================================ +17:33:42 ============================================================================ +17:33:42 Slot Id : <374> +17:33:42 Transaction Type : RESPONSE +17:33:42 Received From : +17:33:42 ============================================================================ +17:33:42 FNo. Len. Field Value +17:33:42 ============================================================================ +17:33:42 [ 1] [ 4] [0810] +17:33:42 [ 7] [ 10] [0320103249] +17:33:42 [ 11] [ 6] [157486] +17:33:42 [ 39] [ 2] [00] +17:33:42 [ 70] [ 3] [301] +17:33:42 ============================================================================ +17:33:42 Calculate Source COMM Id = 2 +17:33:42 ============================================================================ +17:33:42 + + +waiting on router queue for slot.... +17:33:46 ============================================================================ +17:33:46 Slot Id : <389> +17:33:46 Transaction Type : REQUEST +17:33:46 Received From : +17:33:46 ============================================================================ +17:33:46 FNo. Len. Field Value +17:33:46 ============================================================================ +17:33:46 [ 1] [ 4] [0200] +17:33:46 [ 2] [ 16] [6688990040153627] +17:33:46 [ 3] [ 6] [301000] +17:33:46 [ 4] [ 12] [000000000000] +17:33:46 [ 7] [ 10] [0320173341] +17:33:46 [ 11] [ 6] [817036] +17:33:46 [ 12] [ 6] [173341] +17:33:46 [ 13] [ 4] [0320] +17:33:46 [ 15] [ 4] [0320] +17:33:46 [ 18] [ 4] [6011] +17:33:46 [ 22] [ 3] [900] +17:33:46 [ 25] [ 2] [02] +17:33:46 [ 28] [ 9] [D00000000] +17:33:46 [ 32] [ 6] [621354] +17:33:46 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:33:46 [ 37] [ 12] [507903919615] +17:33:46 [ 41] [ 8] [01010700] +17:33:46 [ 42] [ 15] [NATIVE ] +17:33:46 [ 43] [ 40] [Unitel Xaysetha LAO] +17:33:46 [ 49] [ 3] [418] +17:33:46 [ 52] [ 16] [56F6D4B6ED33D0E5] +17:33:46 ============================================================================ +17:33:46 + + +waiting on router queue for slot.... +17:33:46 Sending to : +17:33:46 ============================================================================ +17:33:46 Sending to : +17:33:46 ============================================================================ +17:33:47 ============================================================================ +17:33:47 Slot Id : <389> +17:33:47 Transaction Type : REQUEST +17:33:47 Received From : +17:33:47 ============================================================================ +17:33:47 FNo. Len. Field Value +17:33:47 ============================================================================ +17:33:47 [ 1] [ 4] [0200] +17:33:47 [ 2] [ 16] [6688990040153627] +17:33:47 [ 3] [ 6] [301000] +17:33:47 [ 4] [ 12] [000000000000] +17:33:47 [ 7] [ 10] [0320173341] +17:33:47 [ 11] [ 6] [817036] +17:33:47 [ 12] [ 6] [173341] +17:33:47 [ 13] [ 4] [0320] +17:33:47 [ 15] [ 4] [0320] +17:33:47 [ 18] [ 4] [6011] +17:33:47 [ 22] [ 3] [900] +17:33:47 [ 25] [ 2] [02] +17:33:47 [ 28] [ 9] [D00000000] +17:33:47 [ 32] [ 6] [621354] +17:33:47 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:33:47 [ 37] [ 12] [507903919615] +17:33:47 [ 41] [ 8] [01010700] +17:33:47 [ 42] [ 15] [NATIVE ] +17:33:47 [ 43] [ 40] [Unitel Xaysetha LAO] +17:33:47 [ 49] [ 3] [418] +17:33:47 [ 52] [ 16] [56F6D4B6ED33D0E5] +17:33:47 ============================================================================ +17:33:47 + + +waiting on router queue for slot.... +17:33:47 Sending to : +17:33:47 ============================================================================ +17:33:47 ============================================================================ +17:33:47 Slot Id : <389> +17:33:47 Transaction Type : REQUEST +17:33:47 Received From : +17:33:47 ============================================================================ +17:33:47 FNo. Len. Field Value +17:33:47 ============================================================================ +17:33:47 [ 1] [ 4] [0200] +17:33:47 [ 2] [ 16] [6688990040153627] +17:33:47 [ 3] [ 6] [301000] +17:33:47 [ 4] [ 12] [000000000000] +17:33:47 [ 7] [ 10] [0320173341] +17:33:47 [ 11] [ 6] [817036] +17:33:47 [ 12] [ 6] [173341] +17:33:47 [ 13] [ 4] [0320] +17:33:47 [ 15] [ 4] [0320] +17:33:47 [ 18] [ 4] [6011] +17:33:47 [ 22] [ 3] [900] +17:33:47 [ 25] [ 2] [02] +17:33:47 [ 28] [ 9] [D00000000] +17:33:47 [ 32] [ 6] [621354] +17:33:47 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:33:47 [ 37] [ 12] [507903919615] +17:33:47 [ 41] [ 8] [01010700] +17:33:47 [ 42] [ 15] [NATIVE ] +17:33:47 [ 43] [ 40] [Unitel Xaysetha LAO] +17:33:47 [ 49] [ 3] [418] +17:33:47 [ 52] [ 16] [C8B1265BE08F8BBE] +17:33:47 ============================================================================ +17:33:47 + + +waiting on router queue for slot.... +17:33:47 Sending to : <4> +17:33:47 ============================================================================ +17:33:47 ============================================================================ +17:33:47 Slot Id : <361> +17:33:47 Transaction Type : REQUEST +17:33:47 Received From : +17:33:47 ============================================================================ +17:33:47 FNo. Len. Field Value +17:33:47 ============================================================================ +17:33:47 [ 1] [ 4] [0200] +17:33:47 [ 2] [ 16] [6688990103656003] +17:33:47 [ 3] [ 6] [010000] +17:33:47 [ 4] [ 12] [000100000000] +17:33:47 [ 7] [ 10] [0320103253] +17:33:47 [ 11] [ 6] [270919] +17:33:47 [ 12] [ 6] [173253] +17:33:47 [ 13] [ 4] [0320] +17:33:47 [ 14] [ 4] [4301] +17:33:47 [ 15] [ 4] [0320] +17:33:47 [ 18] [ 4] [6011] +17:33:47 [ 19] [ 3] [418] +17:33:47 [ 22] [ 3] [021] +17:33:47 [ 25] [ 2] [01] +17:33:47 [ 28] [ 9] [D00002000] +17:33:47 [ 32] [ 6] [180893] +17:33:47 [ 35] [ 37] [6688990103656003=43011231600368100000] +17:33:47 [ 37] [ 12] [507910270919] +17:33:47 [ 41] [ 8] [0467PSLK] +17:33:47 [ 42] [ 15] [999999 ] +17:33:47 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:33:47 [ 49] [ 3] [418] +17:33:47 [ 52] [ 16] [356E4CEC4FD3C6C8] +17:33:47 ============================================================================ +17:33:47 + + +waiting on router queue for slot.... +17:33:47 Sending to : +17:33:47 ============================================================================ +17:33:47 Sending to : +17:33:47 ============================================================================ +17:33:47 ============================================================================ +17:33:47 Slot Id : <361> +17:33:47 Transaction Type : REQUEST +17:33:47 Received From : +17:33:47 ============================================================================ +17:33:47 FNo. Len. Field Value +17:33:47 ============================================================================ +17:33:47 [ 1] [ 4] [0200] +17:33:47 [ 2] [ 16] [6688990103656003] +17:33:47 [ 3] [ 6] [010000] +17:33:47 [ 4] [ 12] [000100000000] +17:33:47 [ 7] [ 10] [0320103253] +17:33:47 [ 11] [ 6] [270919] +17:33:47 [ 12] [ 6] [173253] +17:33:47 [ 13] [ 4] [0320] +17:33:47 [ 14] [ 4] [4301] +17:33:47 [ 15] [ 4] [0320] +17:33:47 [ 18] [ 4] [6011] +17:33:47 [ 19] [ 3] [418] +17:33:47 [ 22] [ 3] [021] +17:33:47 [ 25] [ 2] [01] +17:33:47 [ 28] [ 9] [D00002000] +17:33:47 [ 32] [ 6] [180893] +17:33:47 [ 35] [ 37] [6688990103656003=43011231600368100000] +17:33:47 [ 37] [ 12] [507910270919] +17:33:47 [ 41] [ 8] [0467PSLK] +17:33:47 [ 42] [ 15] [999999 ] +17:33:47 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:33:47 [ 49] [ 3] [418] +17:33:47 [ 52] [ 16] [356E4CEC4FD3C6C8] +17:33:47 ============================================================================ +17:33:47 + + +waiting on router queue for slot.... +17:33:47 Sending to : +17:33:47 ============================================================================ +17:33:47 ============================================================================ +17:33:47 Slot Id : <361> +17:33:47 Transaction Type : REQUEST +17:33:47 Received From : +17:33:47 ============================================================================ +17:33:47 FNo. Len. Field Value +17:33:47 ============================================================================ +17:33:47 [ 1] [ 4] [0200] +17:33:47 [ 2] [ 16] [6688990103656003] +17:33:47 [ 3] [ 6] [010000] +17:33:47 [ 4] [ 12] [000100000000] +17:33:47 [ 7] [ 10] [0320103253] +17:33:47 [ 11] [ 6] [270919] +17:33:47 [ 12] [ 6] [173253] +17:33:47 [ 13] [ 4] [0320] +17:33:47 [ 14] [ 4] [4301] +17:33:47 [ 15] [ 4] [0320] +17:33:47 [ 18] [ 4] [6011] +17:33:47 [ 19] [ 3] [418] +17:33:47 [ 22] [ 3] [021] +17:33:47 [ 25] [ 2] [01] +17:33:47 [ 28] [ 9] [D00002000] +17:33:47 [ 32] [ 6] [180893] +17:33:47 [ 35] [ 37] [6688990103656003=43011231600368100000] +17:33:47 [ 37] [ 12] [507910270919] +17:33:47 [ 41] [ 8] [0467PSLK] +17:33:47 [ 42] [ 15] [999999 ] +17:33:47 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:33:47 [ 49] [ 3] [418] +17:33:47 [ 52] [ 16] [8CF8D98042D3CD6A] +17:33:47 ============================================================================ +17:33:47 + + +waiting on router queue for slot.... +17:33:47 Sending to : <0> +17:33:47 ============================================================================ +17:33:47 ============================================================================ +17:33:47 Slot Id : <361> +17:33:47 Transaction Type : RESPONSE +17:33:47 Received From : +17:33:47 ============================================================================ +17:33:47 FNo. Len. Field Value +17:33:47 ============================================================================ +17:33:47 [ 1] [ 4] [0210] +17:33:47 [ 2] [ 16] [6688990103656003] +17:33:47 [ 3] [ 6] [010000] +17:33:47 [ 4] [ 12] [000100000000] +17:33:47 [ 7] [ 10] [0320103253] +17:33:47 [ 11] [ 6] [270919] +17:33:47 [ 12] [ 6] [173253] +17:33:47 [ 13] [ 4] [0320] +17:33:47 [ 15] [ 4] [0320] +17:33:47 [ 18] [ 4] [6011] +17:33:47 [ 19] [ 3] [418] +17:33:47 [ 22] [ 3] [021] +17:33:47 [ 32] [ 6] [180893] +17:33:47 [ 35] [ 37] [6688990103656003=43011231600368100000] +17:33:47 [ 37] [ 12] [507910270919] +17:33:47 [ 39] [ 2] [14] +17:33:47 [ 41] [ 8] [0467PSLK] +17:33:47 [ 49] [ 3] [418] +17:33:47 ============================================================================ +17:33:47 Sending to : +17:33:47 ============================================================================ +17:33:47 + + +waiting on router queue for slot.... +17:33:47 ============================================================================ +17:33:47 Slot Id : <389> +17:33:47 Transaction Type : RESPONSE +17:33:47 Received From : +17:33:47 ============================================================================ +17:33:47 FNo. Len. Field Value +17:33:47 ============================================================================ +17:33:47 [ 1] [ 4] [0210] +17:33:47 [ 2] [ 16] [6688990040153627] +17:33:47 [ 3] [ 6] [301000] +17:33:47 [ 4] [ 12] [000000000000] +17:33:47 [ 11] [ 6] [817036] +17:33:47 [ 12] [ 6] [173341] +17:33:47 [ 15] [ 4] [0320] +17:33:47 [ 18] [ 4] [6011] +17:33:47 [ 32] [ 6] [621354] +17:33:47 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:33:47 [ 37] [ 12] [507903919615] +17:33:47 [ 38] [ 6] [800706] +17:33:47 [ 39] [ 2] [00] +17:33:47 [ 41] [ 8] [01010700] +17:33:47 [ 49] [ 3] [418] +17:33:47 [ 54] [ 20] [1002418C000034800000] +17:33:47 ============================================================================ +17:33:47 Sending to : +17:33:47 ============================================================================ +17:33:47 + + +waiting on router queue for slot.... +17:33:48 ============================================================================ +17:33:48 Slot Id : <361> +17:33:48 Transaction Type : RESPONSE +17:33:48 Received From : +17:33:48 ============================================================================ +17:33:48 FNo. Len. Field Value +17:33:48 ============================================================================ +17:33:48 [ 1] [ 4] [0210] +17:33:48 [ 2] [ 16] [6688990103656003] +17:33:48 [ 3] [ 6] [010000] +17:33:48 [ 4] [ 12] [000100000000] +17:33:48 [ 7] [ 10] [0320103253] +17:33:48 [ 11] [ 6] [270919] +17:33:48 [ 12] [ 6] [173253] +17:33:48 [ 13] [ 4] [0320] +17:33:48 [ 15] [ 4] [0320] +17:33:48 [ 18] [ 4] [6011] +17:33:48 [ 19] [ 3] [418] +17:33:48 [ 22] [ 3] [021] +17:33:48 [ 32] [ 6] [180893] +17:33:48 [ 35] [ 37] [6688990103656003=43011231600368100000] +17:33:48 [ 37] [ 12] [507910270919] +17:33:48 [ 39] [ 2] [14] +17:33:48 [ 41] [ 8] [0467PSLK] +17:33:48 [ 49] [ 3] [418] +17:33:48 ============================================================================ +17:33:48 Calculate Source COMM Id = 2 +17:33:48 ============================================================================ +17:33:48 + + +waiting on router queue for slot.... +17:33:50 ============================================================================ +17:33:50 Slot Id : <389> +17:33:50 Transaction Type : RESPONSE +17:33:50 Received From : +17:33:50 ============================================================================ +17:33:50 FNo. Len. Field Value +17:33:50 ============================================================================ +17:33:50 [ 1] [ 4] [0210] +17:33:50 [ 2] [ 16] [6688990040153627] +17:33:50 [ 3] [ 6] [301000] +17:33:50 [ 4] [ 12] [000000000000] +17:33:50 [ 11] [ 6] [817036] +17:33:50 [ 12] [ 6] [173341] +17:33:50 [ 15] [ 4] [0320] +17:33:50 [ 18] [ 4] [6011] +17:33:50 [ 32] [ 6] [621354] +17:33:50 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:33:50 [ 37] [ 12] [507903919615] +17:33:50 [ 38] [ 6] [800706] +17:33:50 [ 39] [ 2] [00] +17:33:50 [ 41] [ 8] [01010700] +17:33:50 [ 49] [ 3] [418] +17:33:50 [ 54] [ 20] [1002418C000034800000] +17:33:50 ============================================================================ +17:33:50 Calculate Source COMM Id = 0 +17:33:50 ============================================================================ +17:33:50 + + +waiting on router queue for slot.... +17:33:53 ============================================================================ +17:33:53 Slot Id : <351> +17:33:53 Transaction Type : REQUEST +17:33:53 Received From : +17:33:53 ============================================================================ +17:33:53 FNo. Len. Field Value +17:33:53 ============================================================================ +17:33:53 [ 1] [ 4] [0200] +17:33:53 [ 2] [ 16] [6688990700253006] +17:33:53 [ 3] [ 6] [010000] +17:33:53 [ 4] [ 12] [000050000000] +17:33:53 [ 7] [ 10] [0320103300] +17:33:53 [ 11] [ 6] [270921] +17:33:53 [ 12] [ 6] [173300] +17:33:53 [ 13] [ 4] [0320] +17:33:53 [ 14] [ 4] [4311] +17:33:53 [ 15] [ 4] [0320] +17:33:53 [ 18] [ 4] [6011] +17:33:53 [ 19] [ 3] [418] +17:33:53 [ 22] [ 3] [021] +17:33:53 [ 25] [ 2] [01] +17:33:53 [ 28] [ 9] [D00002000] +17:33:53 [ 32] [ 6] [180893] +17:33:53 [ 35] [ 37] [6688990700253006=43110071300634800000] +17:33:53 [ 37] [ 12] [507910270921] +17:33:53 [ 41] [ 8] [0262PSLB] +17:33:53 [ 42] [ 15] [999999 ] +17:33:53 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:33:53 [ 49] [ 3] [418] +17:33:53 [ 52] [ 16] [88BF362EDF61D8E2] +17:33:53 ============================================================================ +17:33:53 + + +waiting on router queue for slot.... +17:33:53 Sending to : +17:33:53 ============================================================================ +17:33:53 Sending to : +17:33:53 ============================================================================ +17:33:54 ============================================================================ +17:33:54 Slot Id : <351> +17:33:54 Transaction Type : REQUEST +17:33:54 Received From : +17:33:54 ============================================================================ +17:33:54 FNo. Len. Field Value +17:33:54 ============================================================================ +17:33:54 [ 1] [ 4] [0200] +17:33:54 [ 2] [ 16] [6688990700253006] +17:33:54 [ 3] [ 6] [010000] +17:33:54 [ 4] [ 12] [000050000000] +17:33:54 [ 7] [ 10] [0320103300] +17:33:54 [ 11] [ 6] [270921] +17:33:54 [ 12] [ 6] [173300] +17:33:54 [ 13] [ 4] [0320] +17:33:54 [ 14] [ 4] [4311] +17:33:54 [ 15] [ 4] [0320] +17:33:54 [ 18] [ 4] [6011] +17:33:54 [ 19] [ 3] [418] +17:33:54 [ 22] [ 3] [021] +17:33:54 [ 25] [ 2] [01] +17:33:54 [ 28] [ 9] [D00002000] +17:33:54 [ 32] [ 6] [180893] +17:33:54 [ 35] [ 37] [6688990700253006=43110071300634800000] +17:33:54 [ 37] [ 12] [507910270921] +17:33:54 [ 41] [ 8] [0262PSLB] +17:33:54 [ 42] [ 15] [999999 ] +17:33:54 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:33:54 [ 49] [ 3] [418] +17:33:54 [ 52] [ 16] [88BF362EDF61D8E2] +17:33:54 ============================================================================ +17:33:54 + + +waiting on router queue for slot.... +17:33:54 Sending to : +17:33:54 ============================================================================ +17:33:54 ============================================================================ +17:33:54 Slot Id : <351> +17:33:54 Transaction Type : REQUEST +17:33:54 Received From : +17:33:54 ============================================================================ +17:33:54 FNo. Len. Field Value +17:33:54 ============================================================================ +17:33:54 [ 1] [ 4] [0200] +17:33:54 [ 2] [ 16] [6688990700253006] +17:33:54 [ 3] [ 6] [010000] +17:33:54 [ 4] [ 12] [000050000000] +17:33:54 [ 7] [ 10] [0320103300] +17:33:54 [ 11] [ 6] [270921] +17:33:54 [ 12] [ 6] [173300] +17:33:54 [ 13] [ 4] [0320] +17:33:54 [ 14] [ 4] [4311] +17:33:54 [ 15] [ 4] [0320] +17:33:54 [ 18] [ 4] [6011] +17:33:54 [ 19] [ 3] [418] +17:33:54 [ 22] [ 3] [021] +17:33:54 [ 25] [ 2] [01] +17:33:54 [ 28] [ 9] [D00002000] +17:33:54 [ 32] [ 6] [180893] +17:33:54 [ 35] [ 37] [6688990700253006=43110071300634800000] +17:33:54 [ 37] [ 12] [507910270921] +17:33:54 [ 41] [ 8] [0262PSLB] +17:33:54 [ 42] [ 15] [999999 ] +17:33:54 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:33:54 [ 49] [ 3] [418] +17:33:54 [ 52] [ 16] [16510825C65459B5] +17:33:54 ============================================================================ +17:33:54 + + +waiting on router queue for slot.... +17:33:54 Sending to : <0> +17:33:54 ============================================================================ +17:33:54 ============================================================================ +17:33:54 Slot Id : <351> +17:33:54 Transaction Type : RESPONSE +17:33:54 Received From : +17:33:54 ============================================================================ +17:33:54 FNo. Len. Field Value +17:33:54 ============================================================================ +17:33:54 [ 1] [ 4] [0210] +17:33:54 [ 2] [ 16] [6688990700253006] +17:33:54 [ 3] [ 6] [010000] +17:33:54 [ 4] [ 12] [000050000000] +17:33:54 [ 7] [ 10] [0320103300] +17:33:54 [ 11] [ 6] [270921] +17:33:54 [ 12] [ 6] [173300] +17:33:54 [ 13] [ 4] [0320] +17:33:54 [ 15] [ 4] [0320] +17:33:54 [ 18] [ 4] [6011] +17:33:54 [ 19] [ 3] [418] +17:33:54 [ 22] [ 3] [021] +17:33:54 [ 32] [ 6] [180893] +17:33:54 [ 35] [ 37] [6688990700253006=43110071300634800000] +17:33:54 [ 37] [ 12] [507910270921] +17:33:54 [ 39] [ 2] [14] +17:33:54 [ 41] [ 8] [0262PSLB] +17:33:54 [ 49] [ 3] [418] +17:33:54 ============================================================================ +17:33:54 Sending to : +17:33:54 ============================================================================ +17:33:54 + + +waiting on router queue for slot.... +17:33:55 ============================================================================ +17:33:55 Slot Id : <351> +17:33:55 Transaction Type : RESPONSE +17:33:55 Received From : +17:33:55 ============================================================================ +17:33:55 FNo. Len. Field Value +17:33:55 ============================================================================ +17:33:55 [ 1] [ 4] [0210] +17:33:55 [ 2] [ 16] [6688990700253006] +17:33:55 [ 3] [ 6] [010000] +17:33:55 [ 4] [ 12] [000050000000] +17:33:55 [ 7] [ 10] [0320103300] +17:33:55 [ 11] [ 6] [270921] +17:33:55 [ 12] [ 6] [173300] +17:33:55 [ 13] [ 4] [0320] +17:33:55 [ 15] [ 4] [0320] +17:33:55 [ 18] [ 4] [6011] +17:33:55 [ 19] [ 3] [418] +17:33:55 [ 22] [ 3] [021] +17:33:55 [ 32] [ 6] [180893] +17:33:55 [ 35] [ 37] [6688990700253006=43110071300634800000] +17:33:55 [ 37] [ 12] [507910270921] +17:33:55 [ 39] [ 2] [14] +17:33:55 [ 41] [ 8] [0262PSLB] +17:33:55 [ 49] [ 3] [418] +17:33:55 ============================================================================ +17:33:55 Calculate Source COMM Id = 2 +17:33:55 ============================================================================ +17:33:55 + + +waiting on router queue for slot.... +17:33:58 ============================================================================ +17:33:58 Slot Id : <376> +17:33:58 Transaction Type : REQUEST +17:33:58 Received From : +17:33:58 ============================================================================ +17:33:58 FNo. Len. Field Value +17:33:58 ============================================================================ +17:33:58 [ 1] [ 4] [0200] +17:33:58 [ 2] [ 16] [6688990103295406] +17:33:58 [ 3] [ 6] [010000] +17:33:58 [ 4] [ 12] [000100000000] +17:33:58 [ 7] [ 10] [0320173353] +17:33:58 [ 11] [ 6] [817093] +17:33:58 [ 12] [ 6] [173353] +17:33:58 [ 13] [ 4] [0320] +17:33:58 [ 15] [ 4] [0320] +17:33:58 [ 18] [ 4] [6011] +17:33:58 [ 22] [ 3] [900] +17:33:58 [ 25] [ 2] [02] +17:33:58 [ 28] [ 9] [D00002000] +17:33:58 [ 32] [ 6] [621354] +17:33:58 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:33:58 [ 37] [ 12] [507903499685] +17:33:58 [ 41] [ 8] [06002200] +17:33:58 [ 42] [ 15] [NATIVE ] +17:33:58 [ 43] [ 40] [Beng Market Beng LAO] +17:33:58 [ 49] [ 3] [418] +17:33:58 [ 52] [ 16] [97AC363623FFF82A] +17:33:58 ============================================================================ +17:33:58 + + +waiting on router queue for slot.... +17:33:58 Sending to : +17:33:58 ============================================================================ +17:33:58 Sending to : +17:33:58 ============================================================================ +17:33:59 ============================================================================ +17:33:59 Slot Id : <376> +17:33:59 Transaction Type : REQUEST +17:33:59 Received From : +17:33:59 ============================================================================ +17:33:59 FNo. Len. Field Value +17:33:59 ============================================================================ +17:33:59 [ 1] [ 4] [0200] +17:33:59 [ 2] [ 16] [6688990103295406] +17:33:59 [ 3] [ 6] [010000] +17:33:59 [ 4] [ 12] [000100000000] +17:33:59 [ 7] [ 10] [0320173353] +17:33:59 [ 11] [ 6] [817093] +17:33:59 [ 12] [ 6] [173353] +17:33:59 [ 13] [ 4] [0320] +17:33:59 [ 15] [ 4] [0320] +17:33:59 [ 18] [ 4] [6011] +17:33:59 [ 22] [ 3] [900] +17:33:59 [ 25] [ 2] [02] +17:33:59 [ 28] [ 9] [D00002000] +17:33:59 [ 32] [ 6] [621354] +17:33:59 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:33:59 [ 37] [ 12] [507903499685] +17:33:59 [ 41] [ 8] [06002200] +17:33:59 [ 42] [ 15] [NATIVE ] +17:33:59 [ 43] [ 40] [Beng Market Beng LAO] +17:33:59 [ 49] [ 3] [418] +17:33:59 [ 52] [ 16] [97AC363623FFF82A] +17:33:59 ============================================================================ +17:33:59 + + +waiting on router queue for slot.... +17:33:59 Sending to : +17:33:59 ============================================================================ +17:33:59 ============================================================================ +17:33:59 Slot Id : <376> +17:33:59 Transaction Type : REQUEST +17:33:59 Received From : +17:33:59 ============================================================================ +17:33:59 FNo. Len. Field Value +17:33:59 ============================================================================ +17:33:59 [ 1] [ 4] [0200] +17:33:59 [ 2] [ 16] [6688990103295406] +17:33:59 [ 3] [ 6] [010000] +17:33:59 [ 4] [ 12] [000100000000] +17:33:59 [ 7] [ 10] [0320173353] +17:33:59 [ 11] [ 6] [817093] +17:33:59 [ 12] [ 6] [173353] +17:33:59 [ 13] [ 4] [0320] +17:33:59 [ 15] [ 4] [0320] +17:33:59 [ 18] [ 4] [6011] +17:33:59 [ 22] [ 3] [900] +17:33:59 [ 25] [ 2] [02] +17:33:59 [ 28] [ 9] [D00002000] +17:33:59 [ 32] [ 6] [621354] +17:33:59 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:33:59 [ 37] [ 12] [507903499685] +17:33:59 [ 41] [ 8] [06002200] +17:33:59 [ 42] [ 15] [NATIVE ] +17:33:59 [ 43] [ 40] [Beng Market Beng LAO] +17:33:59 [ 49] [ 3] [418] +17:33:59 [ 52] [ 16] [8705990523D8E38B] +17:33:59 ============================================================================ +17:33:59 + + +waiting on router queue for slot.... +17:33:59 Sending to : <4> +17:33:59 ============================================================================ +17:34:00 ============================================================================ +17:34:00 Slot Id : <376> +17:34:00 Transaction Type : RESPONSE +17:34:00 Received From : +17:34:00 ============================================================================ +17:34:00 FNo. Len. Field Value +17:34:00 ============================================================================ +17:34:00 [ 1] [ 4] [0210] +17:34:00 [ 2] [ 16] [6688990103295406] +17:34:00 [ 3] [ 6] [010000] +17:34:00 [ 4] [ 12] [000100000000] +17:34:00 [ 11] [ 6] [817093] +17:34:00 [ 12] [ 6] [173353] +17:34:00 [ 15] [ 4] [0320] +17:34:00 [ 18] [ 4] [6011] +17:34:00 [ 32] [ 6] [621354] +17:34:00 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:34:00 [ 37] [ 12] [507903499685] +17:34:00 [ 38] [ 6] [051728] +17:34:00 [ 39] [ 2] [00] +17:34:00 [ 41] [ 8] [06002200] +17:34:00 [ 49] [ 3] [418] +17:34:00 [ 54] [ 20] [0002418C000222468383] +17:34:00 ============================================================================ +17:34:00 Sending to : +17:34:00 ============================================================================ +17:34:00 + + +waiting on router queue for slot.... +17:34:00 ============================================================================ +17:34:00 Slot Id : <383> +17:34:00 Transaction Type : REQUEST +17:34:00 Received From : +17:34:00 ============================================================================ +17:34:00 FNo. Len. Field Value +17:34:00 ============================================================================ +17:34:00 [ 1] [ 4] [0200] +17:34:00 [ 2] [ 16] [6688990100315306] +17:34:00 [ 3] [ 6] [300000] +17:34:00 [ 4] [ 12] [000000000000] +17:34:00 [ 7] [ 10] [0320173355] +17:34:00 [ 11] [ 6] [817096] +17:34:00 [ 12] [ 6] [173355] +17:34:00 [ 13] [ 4] [0320] +17:34:00 [ 15] [ 4] [0320] +17:34:00 [ 18] [ 4] [6011] +17:34:00 [ 22] [ 3] [900] +17:34:00 [ 25] [ 2] [02] +17:34:00 [ 28] [ 9] [D00000000] +17:34:00 [ 32] [ 6] [621354] +17:34:00 [ 35] [ 37] [6688990100315306=41041231530602800000] +17:34:00 [ 37] [ 12] [507904965861] +17:34:00 [ 41] [ 8] [15001100] +17:34:00 [ 42] [ 15] [NATIVE ] +17:34:00 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +17:34:00 [ 49] [ 3] [418] +17:34:00 [ 52] [ 16] [31AED3BEB956A470] +17:34:00 ============================================================================ +17:34:00 + + +waiting on router queue for slot.... +17:34:00 Sending to : +17:34:00 ============================================================================ +17:34:00 Sending to : +17:34:00 ============================================================================ +17:34:01 ============================================================================ +17:34:01 Slot Id : <383> +17:34:01 Transaction Type : REQUEST +17:34:01 Received From : +17:34:01 ============================================================================ +17:34:01 FNo. Len. Field Value +17:34:01 ============================================================================ +17:34:01 [ 1] [ 4] [0200] +17:34:01 [ 2] [ 16] [6688990100315306] +17:34:01 [ 3] [ 6] [300000] +17:34:01 [ 4] [ 12] [000000000000] +17:34:01 [ 7] [ 10] [0320173355] +17:34:01 [ 11] [ 6] [817096] +17:34:01 [ 12] [ 6] [173355] +17:34:01 [ 13] [ 4] [0320] +17:34:01 [ 15] [ 4] [0320] +17:34:01 [ 18] [ 4] [6011] +17:34:01 [ 22] [ 3] [900] +17:34:01 [ 25] [ 2] [02] +17:34:01 [ 28] [ 9] [D00000000] +17:34:01 [ 32] [ 6] [621354] +17:34:01 [ 35] [ 37] [6688990100315306=41041231530602800000] +17:34:01 [ 37] [ 12] [507904965861] +17:34:01 [ 41] [ 8] [15001100] +17:34:01 [ 42] [ 15] [NATIVE ] +17:34:01 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +17:34:01 [ 49] [ 3] [418] +17:34:01 [ 52] [ 16] [31AED3BEB956A470] +17:34:01 ============================================================================ +17:34:01 + + +waiting on router queue for slot.... +17:34:01 Sending to : +17:34:01 ============================================================================ +17:34:01 ============================================================================ +17:34:01 Slot Id : <383> +17:34:01 Transaction Type : REQUEST +17:34:01 Received From : +17:34:01 ============================================================================ +17:34:01 FNo. Len. Field Value +17:34:01 ============================================================================ +17:34:01 [ 1] [ 4] [0200] +17:34:01 [ 2] [ 16] [6688990100315306] +17:34:01 [ 3] [ 6] [300000] +17:34:01 [ 4] [ 12] [000000000000] +17:34:01 [ 7] [ 10] [0320173355] +17:34:01 [ 11] [ 6] [817096] +17:34:01 [ 12] [ 6] [173355] +17:34:01 [ 13] [ 4] [0320] +17:34:01 [ 15] [ 4] [0320] +17:34:01 [ 18] [ 4] [6011] +17:34:01 [ 22] [ 3] [900] +17:34:01 [ 25] [ 2] [02] +17:34:01 [ 28] [ 9] [D00000000] +17:34:01 [ 32] [ 6] [621354] +17:34:01 [ 35] [ 37] [6688990100315306=41041231530602800000] +17:34:01 [ 37] [ 12] [507904965861] +17:34:01 [ 41] [ 8] [15001100] +17:34:01 [ 42] [ 15] [NATIVE ] +17:34:01 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +17:34:01 [ 49] [ 3] [418] +17:34:01 [ 52] [ 16] [1BACF59A46858FCF] +17:34:01 ============================================================================ +17:34:01 + + +waiting on router queue for slot.... +17:34:01 Sending to : <4> +17:34:01 ============================================================================ +17:34:01 ============================================================================ +17:34:01 Slot Id : <359> +17:34:01 Transaction Type : REQUEST +17:34:01 Received From : +17:34:01 ============================================================================ +17:34:01 FNo. Len. Field Value +17:34:01 ============================================================================ +17:34:01 [ 1] [ 4] [0200] +17:34:01 [ 2] [ 16] [6213544002226311] +17:34:01 [ 3] [ 6] [011000] +17:34:01 [ 4] [ 12] [000005000000] +17:34:01 [ 7] [ 10] [0320173421] +17:34:01 [ 11] [ 6] [209650] +17:34:01 [ 12] [ 6] [172927] +17:34:01 [ 13] [ 4] [0320] +17:34:01 [ 14] [ 4] [4912] +17:34:01 [ 15] [ 4] [0320] +17:34:01 [ 18] [ 4] [6011] +17:34:01 [ 19] [ 3] [418] +17:34:01 [ 22] [ 3] [021] +17:34:01 [ 25] [ 2] [01] +17:34:01 [ 28] [ 9] [D00002000] +17:34:01 [ 32] [ 6] [198901] +17:34:01 [ 35] [ 32] [6213544002226311=491212012631505] +17:34:01 [ 37] [ 12] [507917209650] +17:34:01 [ 41] [ 8] [19529001] +17:34:01 [ 42] [ 15] [000000041952901] +17:34:01 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:34:01 [ 49] [ 3] [418] +17:34:01 [ 52] [ 16] [F7A58E313CF1EDA1] +17:34:01 ============================================================================ +17:34:01 + + +waiting on router queue for slot.... +17:34:01 Sending to : +17:34:01 ============================================================================ +17:34:01 Sending to : +17:34:01 ============================================================================ +17:34:01 ============================================================================ +17:34:01 Slot Id : <410> +17:34:01 Transaction Type : REQUEST +17:34:01 Received From : +17:34:01 ============================================================================ +17:34:01 FNo. Len. Field Value +17:34:01 ============================================================================ +17:34:01 [ 1] [ 4] [0800] +17:34:01 [ 7] [ 10] [0321004550] +17:34:01 [ 11] [ 6] [174550] +17:34:01 [ 37] [ 12] [57917174550] +17:34:01 [ 70] [ 3] [301] +17:34:01 ============================================================================ +17:34:01 + + +waiting on router queue for slot.... +17:34:01 Sending to : +17:34:01 ============================================================================ +17:34:01 ============================================================================ +17:34:01 Slot Id : <410> +17:34:01 Transaction Type : RESPONSE +17:34:01 Received From : +17:34:01 ============================================================================ +17:34:01 FNo. Len. Field Value +17:34:01 ============================================================================ +17:34:01 [ 1] [ 4] [0810] +17:34:01 [ 7] [ 10] [0321004550] +17:34:01 [ 11] [ 6] [174550] +17:34:01 [ 37] [ 12] [579171745500] +17:34:01 [ 39] [ 2] [00] +17:34:01 [ 70] [ 3] [810] +17:34:01 ============================================================================ +17:34:01 Calculate Source COMM Id = 6 +17:34:01 ============================================================================ +17:34:01 + + +waiting on router queue for slot.... +17:34:01 ============================================================================ +17:34:01 Slot Id : <359> +17:34:01 Transaction Type : REQUEST +17:34:01 Received From : +17:34:01 ============================================================================ +17:34:01 FNo. Len. Field Value +17:34:01 ============================================================================ +17:34:01 [ 1] [ 4] [0200] +17:34:01 [ 2] [ 16] [6213544002226311] +17:34:01 [ 3] [ 6] [011000] +17:34:01 [ 4] [ 12] [000005000000] +17:34:01 [ 7] [ 10] [0320173421] +17:34:01 [ 11] [ 6] [209650] +17:34:01 [ 12] [ 6] [172927] +17:34:01 [ 13] [ 4] [0320] +17:34:01 [ 14] [ 4] [4912] +17:34:01 [ 15] [ 4] [0320] +17:34:01 [ 18] [ 4] [6011] +17:34:01 [ 19] [ 3] [418] +17:34:01 [ 22] [ 3] [021] +17:34:01 [ 25] [ 2] [01] +17:34:01 [ 28] [ 9] [D00002000] +17:34:01 [ 32] [ 6] [198901] +17:34:01 [ 35] [ 32] [6213544002226311=491212012631505] +17:34:01 [ 37] [ 12] [507917209650] +17:34:01 [ 41] [ 8] [19529001] +17:34:01 [ 42] [ 15] [000000041952901] +17:34:01 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:34:01 [ 49] [ 3] [418] +17:34:01 [ 52] [ 16] [F7A58E313CF1EDA1] +17:34:01 ============================================================================ +17:34:01 + + +waiting on router queue for slot.... +17:34:01 Sending to : +17:34:01 ============================================================================ +17:34:01 ============================================================================ +17:34:01 Slot Id : <359> +17:34:01 Transaction Type : REQUEST +17:34:01 Received From : +17:34:01 ============================================================================ +17:34:01 FNo. Len. Field Value +17:34:01 ============================================================================ +17:34:01 [ 1] [ 4] [0200] +17:34:01 [ 2] [ 16] [6213544002226311] +17:34:01 [ 3] [ 6] [011000] +17:34:01 [ 4] [ 12] [000005000000] +17:34:01 [ 7] [ 10] [0320173421] +17:34:01 [ 11] [ 6] [209650] +17:34:01 [ 12] [ 6] [172927] +17:34:01 [ 13] [ 4] [0320] +17:34:01 [ 14] [ 4] [4912] +17:34:01 [ 15] [ 4] [0320] +17:34:01 [ 18] [ 4] [6011] +17:34:01 [ 19] [ 3] [418] +17:34:01 [ 22] [ 3] [021] +17:34:01 [ 25] [ 2] [01] +17:34:01 [ 28] [ 9] [D00002000] +17:34:01 [ 32] [ 6] [198901] +17:34:01 [ 35] [ 32] [6213544002226311=491212012631505] +17:34:01 [ 37] [ 12] [507917209650] +17:34:01 [ 41] [ 8] [19529001] +17:34:01 [ 42] [ 15] [000000041952901] +17:34:01 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:34:01 [ 49] [ 3] [418] +17:34:01 [ 52] [ 16] [F2C6DA768955C000] +17:34:01 ============================================================================ +17:34:01 + + +waiting on router queue for slot.... +17:34:01 Sending to : <0> +17:34:01 ============================================================================ +17:34:01 ============================================================================ +17:34:01 Slot Id : <376> +17:34:01 Transaction Type : RESPONSE +17:34:01 Received From : +17:34:01 ============================================================================ +17:34:01 FNo. Len. Field Value +17:34:01 ============================================================================ +17:34:01 [ 1] [ 4] [0210] +17:34:01 [ 2] [ 16] [6688990103295406] +17:34:01 [ 3] [ 6] [010000] +17:34:01 [ 4] [ 12] [000100000000] +17:34:01 [ 11] [ 6] [817093] +17:34:01 [ 12] [ 6] [173353] +17:34:01 [ 15] [ 4] [0320] +17:34:01 [ 18] [ 4] [6011] +17:34:01 [ 32] [ 6] [621354] +17:34:01 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:34:01 [ 37] [ 12] [507903499685] +17:34:01 [ 38] [ 6] [051728] +17:34:01 [ 39] [ 2] [00] +17:34:01 [ 41] [ 8] [06002200] +17:34:01 [ 49] [ 3] [418] +17:34:01 [ 54] [ 20] [0002418C000222468383] +17:34:01 ============================================================================ +17:34:01 Calculate Source COMM Id = 0 +17:34:01 ============================================================================ +17:34:01 + + +waiting on router queue for slot.... +17:34:01 ============================================================================ +17:34:01 Slot Id : <383> +17:34:01 Transaction Type : RESPONSE +17:34:01 Received From : +17:34:01 ============================================================================ +17:34:01 FNo. Len. Field Value +17:34:01 ============================================================================ +17:34:01 [ 1] [ 4] [0210] +17:34:01 [ 2] [ 16] [6688990100315306] +17:34:01 [ 3] [ 6] [300000] +17:34:01 [ 4] [ 12] [000000000000] +17:34:01 [ 11] [ 6] [817096] +17:34:01 [ 12] [ 6] [173355] +17:34:01 [ 15] [ 4] [0320] +17:34:01 [ 18] [ 4] [6011] +17:34:01 [ 32] [ 6] [621354] +17:34:01 [ 35] [ 37] [6688990100315306=41041231530602800000] +17:34:01 [ 37] [ 12] [507904965861] +17:34:01 [ 38] [ 6] [793973] +17:34:01 [ 39] [ 2] [00] +17:34:01 [ 41] [ 8] [15001100] +17:34:01 [ 49] [ 3] [418] +17:34:01 [ 54] [ 20] [0002418C000007161754] +17:34:01 ============================================================================ +17:34:01 Sending to : +17:34:01 ============================================================================ +17:34:01 + + +waiting on router queue for slot.... +17:34:02 ============================================================================ +17:34:02 Slot Id : <359> +17:34:02 Transaction Type : RESPONSE +17:34:02 Received From : +17:34:02 ============================================================================ +17:34:02 FNo. Len. Field Value +17:34:02 ============================================================================ +17:34:02 [ 1] [ 4] [0210] +17:34:02 [ 2] [ 16] [6213544002226311] +17:34:02 [ 3] [ 6] [011000] +17:34:02 [ 4] [ 12] [000005000000] +17:34:02 [ 7] [ 10] [0320173421] +17:34:02 [ 11] [ 6] [209650] +17:34:02 [ 12] [ 6] [172927] +17:34:02 [ 13] [ 4] [0320] +17:34:02 [ 15] [ 4] [0320] +17:34:02 [ 18] [ 4] [6011] +17:34:02 [ 19] [ 3] [418] +17:34:02 [ 32] [ 6] [198901] +17:34:02 [ 35] [ 32] [6213544002226311=491212012631505] +17:34:02 [ 37] [ 12] [507917209650] +17:34:02 [ 38] [ 6] [415771] +17:34:02 [ 39] [ 2] [00] +17:34:02 [ 41] [ 8] [19529001] +17:34:02 [ 49] [ 3] [418] +17:34:02 [ 54] [ 40] [1001418C0000351765801002418C000035176580] +17:34:02 ============================================================================ +17:34:02 Sending to : +17:34:02 ============================================================================ +17:34:02 + + +waiting on router queue for slot.... +17:34:03 ============================================================================ +17:34:03 Slot Id : <383> +17:34:03 Transaction Type : RESPONSE +17:34:03 Received From : +17:34:03 ============================================================================ +17:34:03 FNo. Len. Field Value +17:34:03 ============================================================================ +17:34:03 [ 1] [ 4] [0210] +17:34:03 [ 2] [ 16] [6688990100315306] +17:34:03 [ 3] [ 6] [300000] +17:34:03 [ 4] [ 12] [000000000000] +17:34:03 [ 11] [ 6] [817096] +17:34:03 [ 12] [ 6] [173355] +17:34:03 [ 15] [ 4] [0320] +17:34:03 [ 18] [ 4] [6011] +17:34:03 [ 32] [ 6] [621354] +17:34:03 [ 35] [ 37] [6688990100315306=41041231530602800000] +17:34:03 [ 37] [ 12] [507904965861] +17:34:03 [ 38] [ 6] [793973] +17:34:03 [ 39] [ 2] [00] +17:34:03 [ 41] [ 8] [15001100] +17:34:03 [ 49] [ 3] [418] +17:34:03 [ 54] [ 20] [0002418C000007161754] +17:34:03 ============================================================================ +17:34:03 Calculate Source COMM Id = 0 +17:34:03 ============================================================================ +17:34:03 + + +waiting on router queue for slot.... +17:34:05 ============================================================================ +17:34:05 Slot Id : <359> +17:34:05 Transaction Type : RESPONSE +17:34:05 Received From : +17:34:05 ============================================================================ +17:34:05 FNo. Len. Field Value +17:34:05 ============================================================================ +17:34:05 [ 1] [ 4] [0210] +17:34:05 [ 2] [ 16] [6213544002226311] +17:34:05 [ 3] [ 6] [011000] +17:34:05 [ 4] [ 12] [000005000000] +17:34:05 [ 7] [ 10] [0320173421] +17:34:05 [ 11] [ 6] [209650] +17:34:05 [ 12] [ 6] [172927] +17:34:05 [ 13] [ 4] [0320] +17:34:05 [ 15] [ 4] [0320] +17:34:05 [ 18] [ 4] [6011] +17:34:05 [ 19] [ 3] [418] +17:34:05 [ 32] [ 6] [198901] +17:34:05 [ 35] [ 32] [6213544002226311=491212012631505] +17:34:05 [ 37] [ 12] [507917209650] +17:34:05 [ 38] [ 6] [415771] +17:34:05 [ 39] [ 2] [00] +17:34:05 [ 41] [ 8] [19529001] +17:34:05 [ 49] [ 3] [418] +17:34:05 [ 54] [ 40] [1001418C0000351765801002418C000035176580] +17:34:05 ============================================================================ +17:34:05 Calculate Source COMM Id = 5 +17:34:05 ============================================================================ +17:34:05 + + +waiting on router queue for slot.... +17:34:09 ============================================================================ +17:34:09 Slot Id : <400> +17:34:09 Transaction Type : REQUEST +17:34:09 Received From : +17:34:09 ============================================================================ +17:34:09 FNo. Len. Field Value +17:34:09 ============================================================================ +17:34:09 [ 1] [ 4] [0800] +17:34:09 [ 7] [ 10] [0320103315] +17:34:09 [ 11] [ 6] [157487] +17:34:09 [ 70] [ 3] [301] +17:34:09 ============================================================================ +17:34:09 + + +waiting on router queue for slot.... +17:34:09 Sending to : +17:34:09 ============================================================================ +17:34:09 ============================================================================ +17:34:09 Slot Id : <400> +17:34:09 Transaction Type : RESPONSE +17:34:09 Received From : +17:34:09 ============================================================================ +17:34:09 FNo. Len. Field Value +17:34:09 ============================================================================ +17:34:09 [ 1] [ 4] [0810] +17:34:09 [ 7] [ 10] [0320103315] +17:34:09 [ 11] [ 6] [157487] +17:34:09 [ 39] [ 2] [00] +17:34:09 [ 70] [ 3] [301] +17:34:09 ============================================================================ +17:34:09 Calculate Source COMM Id = 2 +17:34:09 ============================================================================ +17:34:09 + + +waiting on router queue for slot.... +17:34:25 ============================================================================ +17:34:25 Slot Id : <393> +17:34:25 Transaction Type : REQUEST +17:34:25 Received From : +17:34:25 ============================================================================ +17:34:25 FNo. Len. Field Value +17:34:25 ============================================================================ +17:34:25 [ 1] [ 4] [0800] +17:34:25 [ 7] [ 10] [0320103332] +17:34:25 [ 11] [ 6] [157488] +17:34:25 [ 70] [ 3] [301] +17:34:25 ============================================================================ +17:34:25 + + +waiting on router queue for slot.... +17:34:25 Sending to : +17:34:25 ============================================================================ +17:34:25 ============================================================================ +17:34:25 Slot Id : <393> +17:34:25 Transaction Type : RESPONSE +17:34:25 Received From : +17:34:25 ============================================================================ +17:34:25 FNo. Len. Field Value +17:34:25 ============================================================================ +17:34:25 [ 1] [ 4] [0810] +17:34:25 [ 7] [ 10] [0320103332] +17:34:25 [ 11] [ 6] [157488] +17:34:25 [ 39] [ 2] [00] +17:34:25 [ 70] [ 3] [301] +17:34:25 ============================================================================ +17:34:25 Calculate Source COMM Id = 2 +17:34:25 ============================================================================ +17:34:25 + + +waiting on router queue for slot.... +17:34:30 ============================================================================ +17:34:30 Slot Id : <395> +17:34:30 Transaction Type : REQUEST +17:34:30 Received From : +17:34:30 ============================================================================ +17:34:30 FNo. Len. Field Value +17:34:30 ============================================================================ +17:34:30 [ 1] [ 4] [0200] +17:34:30 [ 2] [ 16] [1888880000087783] +17:34:30 [ 3] [ 6] [011000] +17:34:30 [ 4] [ 12] [000020000000] +17:34:30 [ 7] [ 10] [0320173425] +17:34:30 [ 11] [ 6] [817174] +17:34:30 [ 12] [ 6] [173425] +17:34:30 [ 13] [ 4] [0320] +17:34:30 [ 15] [ 4] [0320] +17:34:30 [ 18] [ 4] [6011] +17:34:30 [ 22] [ 3] [900] +17:34:30 [ 25] [ 2] [02] +17:34:30 [ 28] [ 9] [D00002000] +17:34:30 [ 32] [ 6] [621354] +17:34:30 [ 35] [ 32] [1888880000087783=000010100000009] +17:34:30 [ 37] [ 12] [507903444091] +17:34:30 [ 41] [ 8] [06001700] +17:34:30 [ 42] [ 15] [NATIVE ] +17:34:30 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:34:30 [ 49] [ 3] [418] +17:34:30 [ 52] [ 16] [07D8EEABED71F0A8] +17:34:30 ============================================================================ +17:34:30 + + +waiting on router queue for slot.... +17:34:30 Sending to : +17:34:30 ============================================================================ +17:34:30 Sending to : +17:34:30 ============================================================================ +17:34:30 ============================================================================ +17:34:30 Slot Id : <395> +17:34:30 Transaction Type : REQUEST +17:34:30 Received From : +17:34:30 ============================================================================ +17:34:30 FNo. Len. Field Value +17:34:30 ============================================================================ +17:34:30 [ 1] [ 4] [0200] +17:34:30 [ 2] [ 16] [1888880000087783] +17:34:30 [ 3] [ 6] [011000] +17:34:30 [ 4] [ 12] [000020000000] +17:34:30 [ 7] [ 10] [0320173425] +17:34:30 [ 11] [ 6] [817174] +17:34:30 [ 12] [ 6] [173425] +17:34:30 [ 13] [ 4] [0320] +17:34:30 [ 15] [ 4] [0320] +17:34:30 [ 18] [ 4] [6011] +17:34:30 [ 22] [ 3] [900] +17:34:30 [ 25] [ 2] [02] +17:34:30 [ 28] [ 9] [D00002000] +17:34:30 [ 32] [ 6] [621354] +17:34:30 [ 35] [ 32] [1888880000087783=000010100000009] +17:34:30 [ 37] [ 12] [507903444091] +17:34:30 [ 41] [ 8] [06001700] +17:34:30 [ 42] [ 15] [NATIVE ] +17:34:30 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:34:30 [ 49] [ 3] [418] +17:34:30 [ 52] [ 16] [07D8EEABED71F0A8] +17:34:30 ============================================================================ +17:34:30 + + +waiting on router queue for slot.... +17:34:30 Sending to : +17:34:30 ============================================================================ +17:34:30 ============================================================================ +17:34:30 Slot Id : <395> +17:34:30 Transaction Type : REQUEST +17:34:30 Received From : +17:34:30 ============================================================================ +17:34:30 FNo. Len. Field Value +17:34:30 ============================================================================ +17:34:30 [ 1] [ 4] [0200] +17:34:30 [ 2] [ 16] [1888880000087783] +17:34:30 [ 3] [ 6] [011000] +17:34:30 [ 4] [ 12] [000020000000] +17:34:30 [ 7] [ 10] [0320173425] +17:34:30 [ 11] [ 6] [817174] +17:34:30 [ 12] [ 6] [173425] +17:34:30 [ 13] [ 4] [0320] +17:34:30 [ 15] [ 4] [0320] +17:34:30 [ 18] [ 4] [6011] +17:34:30 [ 22] [ 3] [900] +17:34:30 [ 25] [ 2] [02] +17:34:30 [ 28] [ 9] [D00002000] +17:34:30 [ 32] [ 6] [621354] +17:34:30 [ 35] [ 32] [1888880000087783=000010100000009] +17:34:30 [ 37] [ 12] [507903444091] +17:34:30 [ 41] [ 8] [06001700] +17:34:30 [ 42] [ 15] [NATIVE ] +17:34:30 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:34:30 [ 49] [ 3] [418] +17:34:30 [ 52] [ 16] [B328D4E7057E1B49] +17:34:30 ============================================================================ +17:34:30 + + +waiting on router queue for slot.... +17:34:30 Sending to : <5> +17:34:30 ============================================================================ +17:34:30 ============================================================================ +17:34:30 Slot Id : <395> +17:34:30 Transaction Type : RESPONSE +17:34:30 Received From : +17:34:30 ============================================================================ +17:34:30 FNo. Len. Field Value +17:34:30 ============================================================================ +17:34:30 [ 1] [ 4] [0210] +17:34:30 [ 2] [ 16] [1888880000087783] +17:34:30 [ 3] [ 6] [011000] +17:34:30 [ 4] [ 12] [000020000000] +17:34:30 [ 7] [ 10] [0320173425] +17:34:30 [ 11] [ 6] [817174] +17:34:30 [ 12] [ 6] [173425] +17:34:30 [ 13] [ 4] [0320] +17:34:30 [ 15] [ 4] [0320] +17:34:30 [ 18] [ 4] [6011] +17:34:30 [ 19] [ 3] [418] +17:34:30 [ 32] [ 6] [621354] +17:34:30 [ 37] [ 12] [507903444091] +17:34:30 [ 38] [ 6] [000000] +17:34:30 [ 39] [ 2] [07] +17:34:30 [ 41] [ 8] [06001700] +17:34:30 [ 49] [ 3] [418] +17:34:30 ============================================================================ +17:34:30 Sending to : +17:34:30 ============================================================================ +17:34:30 + + +waiting on router queue for slot.... +17:34:31 ============================================================================ +17:34:31 Slot Id : <395> +17:34:31 Transaction Type : RESPONSE +17:34:31 Received From : +17:34:31 ============================================================================ +17:34:31 FNo. Len. Field Value +17:34:31 ============================================================================ +17:34:31 [ 1] [ 4] [0210] +17:34:31 [ 2] [ 16] [1888880000087783] +17:34:31 [ 3] [ 6] [011000] +17:34:31 [ 4] [ 12] [000020000000] +17:34:31 [ 7] [ 10] [0320173425] +17:34:31 [ 11] [ 6] [817174] +17:34:31 [ 12] [ 6] [173425] +17:34:31 [ 13] [ 4] [0320] +17:34:31 [ 15] [ 4] [0320] +17:34:31 [ 18] [ 4] [6011] +17:34:31 [ 19] [ 3] [418] +17:34:31 [ 32] [ 6] [621354] +17:34:31 [ 37] [ 12] [507903444091] +17:34:31 [ 38] [ 6] [000000] +17:34:31 [ 39] [ 2] [07] +17:34:31 [ 41] [ 8] [06001700] +17:34:31 [ 49] [ 3] [418] +17:34:31 ============================================================================ +17:34:31 Calculate Source COMM Id = 0 +17:34:31 ============================================================================ +17:34:31 + + +waiting on router queue for slot.... +17:34:36 ============================================================================ +17:34:36 Slot Id : <397> +17:34:36 Transaction Type : REQUEST +17:34:36 Received From : +17:34:36 ============================================================================ +17:34:36 FNo. Len. Field Value +17:34:36 ============================================================================ +17:34:36 [ 1] [ 4] [0200] +17:34:36 [ 2] [ 16] [6688990040153627] +17:34:36 [ 3] [ 6] [011000] +17:34:36 [ 4] [ 12] [000005000000] +17:34:36 [ 7] [ 10] [0320173431] +17:34:36 [ 11] [ 6] [817203] +17:34:36 [ 12] [ 6] [173431] +17:34:36 [ 13] [ 4] [0320] +17:34:36 [ 15] [ 4] [0320] +17:34:36 [ 18] [ 4] [6011] +17:34:36 [ 22] [ 3] [900] +17:34:36 [ 25] [ 2] [02] +17:34:36 [ 28] [ 9] [D00002000] +17:34:36 [ 32] [ 6] [621354] +17:34:36 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:34:36 [ 37] [ 12] [507903919617] +17:34:36 [ 41] [ 8] [01010700] +17:34:36 [ 42] [ 15] [NATIVE ] +17:34:36 [ 43] [ 40] [Unitel Xaysetha LAO] +17:34:36 [ 49] [ 3] [418] +17:34:36 [ 52] [ 16] [56F6D4B6ED33D0E5] +17:34:36 ============================================================================ +17:34:36 + + +waiting on router queue for slot.... +17:34:36 Sending to : +17:34:36 ============================================================================ +17:34:36 Sending to : +17:34:36 ============================================================================ +17:34:37 ============================================================================ +17:34:37 Slot Id : <397> +17:34:37 Transaction Type : REQUEST +17:34:37 Received From : +17:34:37 ============================================================================ +17:34:37 FNo. Len. Field Value +17:34:37 ============================================================================ +17:34:37 [ 1] [ 4] [0200] +17:34:37 [ 2] [ 16] [6688990040153627] +17:34:37 [ 3] [ 6] [011000] +17:34:37 [ 4] [ 12] [000005000000] +17:34:37 [ 7] [ 10] [0320173431] +17:34:37 [ 11] [ 6] [817203] +17:34:37 [ 12] [ 6] [173431] +17:34:37 [ 13] [ 4] [0320] +17:34:37 [ 15] [ 4] [0320] +17:34:37 [ 18] [ 4] [6011] +17:34:37 [ 22] [ 3] [900] +17:34:37 [ 25] [ 2] [02] +17:34:37 [ 28] [ 9] [D00002000] +17:34:37 [ 32] [ 6] [621354] +17:34:37 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:34:37 [ 37] [ 12] [507903919617] +17:34:37 [ 41] [ 8] [01010700] +17:34:37 [ 42] [ 15] [NATIVE ] +17:34:37 [ 43] [ 40] [Unitel Xaysetha LAO] +17:34:37 [ 49] [ 3] [418] +17:34:37 [ 52] [ 16] [56F6D4B6ED33D0E5] +17:34:37 ============================================================================ +17:34:37 + + +waiting on router queue for slot.... +17:34:37 Sending to : +17:34:37 ============================================================================ +17:34:37 ============================================================================ +17:34:37 Slot Id : <397> +17:34:37 Transaction Type : REQUEST +17:34:37 Received From : +17:34:37 ============================================================================ +17:34:37 FNo. Len. Field Value +17:34:37 ============================================================================ +17:34:37 [ 1] [ 4] [0200] +17:34:37 [ 2] [ 16] [6688990040153627] +17:34:37 [ 3] [ 6] [011000] +17:34:37 [ 4] [ 12] [000005000000] +17:34:37 [ 7] [ 10] [0320173431] +17:34:37 [ 11] [ 6] [817203] +17:34:37 [ 12] [ 6] [173431] +17:34:37 [ 13] [ 4] [0320] +17:34:37 [ 15] [ 4] [0320] +17:34:37 [ 18] [ 4] [6011] +17:34:37 [ 22] [ 3] [900] +17:34:37 [ 25] [ 2] [02] +17:34:37 [ 28] [ 9] [D00002000] +17:34:37 [ 32] [ 6] [621354] +17:34:37 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:34:37 [ 37] [ 12] [507903919617] +17:34:37 [ 41] [ 8] [01010700] +17:34:37 [ 42] [ 15] [NATIVE ] +17:34:37 [ 43] [ 40] [Unitel Xaysetha LAO] +17:34:37 [ 49] [ 3] [418] +17:34:37 [ 52] [ 16] [C8B1265BE08F8BBE] +17:34:37 ============================================================================ +17:34:37 + + +waiting on router queue for slot.... +17:34:37 Sending to : <4> +17:34:37 ============================================================================ +17:34:37 ============================================================================ +17:34:37 Slot Id : <414> +17:34:37 Transaction Type : REQUEST +17:34:37 Received From : +17:34:37 ============================================================================ +17:34:37 FNo. Len. Field Value +17:34:37 ============================================================================ +17:34:37 [ 1] [ 4] [0800] +17:34:37 [ 7] [ 10] [0320103344] +17:34:37 [ 11] [ 6] [157489] +17:34:37 [ 70] [ 3] [301] +17:34:37 ============================================================================ +17:34:37 + + +waiting on router queue for slot.... +17:34:37 Sending to : +17:34:37 ============================================================================ +17:34:37 ============================================================================ +17:34:37 Slot Id : <414> +17:34:37 Transaction Type : RESPONSE +17:34:37 Received From : +17:34:37 ============================================================================ +17:34:37 FNo. Len. Field Value +17:34:37 ============================================================================ +17:34:37 [ 1] [ 4] [0810] +17:34:37 [ 7] [ 10] [0320103344] +17:34:37 [ 11] [ 6] [157489] +17:34:37 [ 39] [ 2] [00] +17:34:37 [ 70] [ 3] [301] +17:34:37 ============================================================================ +17:34:37 Calculate Source COMM Id = 2 +17:34:37 ============================================================================ +17:34:37 + + +waiting on router queue for slot.... +17:34:38 ============================================================================ +17:34:38 Slot Id : <397> +17:34:38 Transaction Type : RESPONSE +17:34:38 Received From : +17:34:38 ============================================================================ +17:34:38 FNo. Len. Field Value +17:34:38 ============================================================================ +17:34:38 [ 1] [ 4] [0210] +17:34:38 [ 2] [ 16] [6688990040153627] +17:34:38 [ 3] [ 6] [011000] +17:34:38 [ 4] [ 12] [000005000000] +17:34:38 [ 11] [ 6] [817203] +17:34:38 [ 12] [ 6] [173431] +17:34:38 [ 15] [ 4] [0320] +17:34:38 [ 18] [ 4] [6011] +17:34:38 [ 32] [ 6] [621354] +17:34:38 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:34:38 [ 37] [ 12] [507903919617] +17:34:38 [ 38] [ 6] [000473] +17:34:38 [ 39] [ 2] [00] +17:34:38 [ 41] [ 8] [01010700] +17:34:38 [ 49] [ 3] [418] +17:34:38 [ 54] [ 20] [1002418C000029600000] +17:34:38 ============================================================================ +17:34:38 Sending to : +17:34:38 ============================================================================ +17:34:38 + + +waiting on router queue for slot.... +17:34:39 ============================================================================ +17:34:39 Slot Id : <413> +17:34:39 Transaction Type : REQUEST +17:34:39 Received From : +17:34:39 ============================================================================ +17:34:39 FNo. Len. Field Value +17:34:39 ============================================================================ +17:34:39 [ 1] [ 4] [0800] +17:34:39 [ 2] [ 5] [02531] +17:34:39 [ 3] [ 6] [579178] +17:34:39 [ 7] [ 10] [0320103439] +17:34:39 [ 11] [ 6] [807432] +17:34:39 [ 15] [ 10] [0320103439] +17:34:39 [ 37] [ 11] [57917807432] +17:34:39 [ 70] [ 3] [001] +17:34:39 ============================================================================ +17:34:39 + + +waiting on router queue for slot.... +17:34:39 ============================================================================ +17:34:39 Slot Id : <413> +17:34:39 Transaction Type : RESPONSE +17:34:39 Received From : +17:34:39 ============================================================================ +17:34:39 FNo. Len. Field Value +17:34:39 ============================================================================ +17:34:39 [ 1] [ 4] [0810] +17:34:39 [ 7] [ 10] [0320103439] +17:34:39 [ 11] [ 6] [807432] +17:34:39 [ 15] [ 4] [0320] +17:34:39 [ 37] [ 12] [57917807432] +17:34:39 [ 39] [ 2] [00] +17:34:39 [ 70] [ 3] [001] +17:34:39 ============================================================================ +17:34:39 Sending to : +17:34:39 ============================================================================ +17:34:39 + + +waiting on router queue for slot.... +17:34:40 ============================================================================ +17:34:40 Slot Id : <397> +17:34:40 Transaction Type : RESPONSE +17:34:40 Received From : +17:34:40 ============================================================================ +17:34:40 FNo. Len. Field Value +17:34:40 ============================================================================ +17:34:40 [ 1] [ 4] [0210] +17:34:40 [ 2] [ 16] [6688990040153627] +17:34:40 [ 3] [ 6] [011000] +17:34:40 [ 4] [ 12] [000005000000] +17:34:40 [ 11] [ 6] [817203] +17:34:40 [ 12] [ 6] [173431] +17:34:40 [ 15] [ 4] [0320] +17:34:40 [ 18] [ 4] [6011] +17:34:40 [ 32] [ 6] [621354] +17:34:40 [ 35] [ 37] [6688990040153627=98051261817095900000] +17:34:40 [ 37] [ 12] [507903919617] +17:34:40 [ 38] [ 6] [000473] +17:34:40 [ 39] [ 2] [00] +17:34:40 [ 41] [ 8] [01010700] +17:34:40 [ 49] [ 3] [418] +17:34:40 [ 54] [ 20] [1002418C000029600000] +17:34:40 ============================================================================ +17:34:40 Calculate Source COMM Id = 0 +17:34:40 ============================================================================ +17:34:40 + + +waiting on router queue for slot.... +17:34:49 ============================================================================ +17:34:49 Slot Id : <349> +17:34:49 Transaction Type : REQUEST +17:34:49 Received From : +17:34:49 ============================================================================ +17:34:49 FNo. Len. Field Value +17:34:49 ============================================================================ +17:34:49 [ 1] [ 4] [0800] +17:34:49 [ 7] [ 10] [0320103356] +17:34:49 [ 11] [ 6] [157490] +17:34:49 [ 70] [ 3] [301] +17:34:49 ============================================================================ +17:34:49 + + +waiting on router queue for slot.... +17:34:49 Sending to : +17:34:49 ============================================================================ +17:34:49 ============================================================================ +17:34:49 Slot Id : <349> +17:34:49 Transaction Type : RESPONSE +17:34:49 Received From : +17:34:49 ============================================================================ +17:34:49 FNo. Len. Field Value +17:34:49 ============================================================================ +17:34:49 [ 1] [ 4] [0810] +17:34:49 [ 7] [ 10] [0320103356] +17:34:49 [ 11] [ 6] [157490] +17:34:49 [ 39] [ 2] [00] +17:34:49 [ 70] [ 3] [301] +17:34:49 ============================================================================ +17:34:49 Calculate Source COMM Id = 2 +17:34:49 ============================================================================ +17:34:49 + + +waiting on router queue for slot.... +17:34:54 ============================================================================ +17:34:54 Slot Id : <394> +17:34:54 Transaction Type : REQUEST +17:34:54 Received From : +17:34:54 ============================================================================ +17:34:54 FNo. Len. Field Value +17:34:54 ============================================================================ +17:34:54 [ 1] [ 4] [0800] +17:34:54 [ 7] [ 10] [0320104242] +17:34:54 [ 11] [ 6] [096806] +17:34:54 [ 37] [ 12] [57917096806] +17:34:54 [ 70] [ 3] [301] +17:34:54 ============================================================================ +17:34:54 + + +waiting on router queue for slot.... +17:34:54 Sending to : +17:34:54 ============================================================================ +17:34:54 ============================================================================ +17:34:54 Slot Id : <394> +17:34:54 Transaction Type : RESPONSE +17:34:54 Received From : +17:34:54 ============================================================================ +17:34:54 FNo. Len. Field Value +17:34:54 ============================================================================ +17:34:54 [ 1] [ 4] [0810] +17:34:54 [ 7] [ 10] [0320104242] +17:34:54 [ 11] [ 6] [096806] +17:34:54 [ 37] [ 12] [579170968060] +17:34:54 [ 39] [ 2] [00] +17:34:54 [ 70] [ 3] [810] +17:34:54 ============================================================================ +17:34:54 Calculate Source COMM Id = 1 +17:34:54 ============================================================================ +17:34:54 + + +waiting on router queue for slot.... +17:35:04 ============================================================================ +17:35:04 Slot Id : <418> +17:35:04 Transaction Type : REQUEST +17:35:04 Received From : +17:35:04 ============================================================================ +17:35:04 FNo. Len. Field Value +17:35:04 ============================================================================ +17:35:04 [ 1] [ 4] [0800] +17:35:04 [ 7] [ 10] [0320103411] +17:35:04 [ 11] [ 6] [157491] +17:35:04 [ 70] [ 3] [301] +17:35:04 ============================================================================ +17:35:04 + + +waiting on router queue for slot.... +17:35:04 Sending to : +17:35:04 ============================================================================ +17:35:04 ============================================================================ +17:35:04 Slot Id : <418> +17:35:04 Transaction Type : RESPONSE +17:35:04 Received From : +17:35:04 ============================================================================ +17:35:04 FNo. Len. Field Value +17:35:04 ============================================================================ +17:35:04 [ 1] [ 4] [0810] +17:35:04 [ 7] [ 10] [0320103411] +17:35:04 [ 11] [ 6] [157491] +17:35:04 [ 39] [ 2] [00] +17:35:04 [ 70] [ 3] [301] +17:35:04 ============================================================================ +17:35:04 Calculate Source COMM Id = 2 +17:35:04 ============================================================================ +17:35:04 + + +waiting on router queue for slot.... +17:35:05 ============================================================================ +17:35:05 Slot Id : <372> +17:35:05 Transaction Type : REQUEST +17:35:05 Received From : +17:35:05 ============================================================================ +17:35:05 FNo. Len. Field Value +17:35:05 ============================================================================ +17:35:05 [ 1] [ 4] [0200] +17:35:05 [ 2] [ 16] [1888880000087783] +17:35:05 [ 3] [ 6] [011000] +17:35:05 [ 4] [ 12] [000020000000] +17:35:05 [ 7] [ 10] [0320173500] +17:35:05 [ 11] [ 6] [817291] +17:35:05 [ 12] [ 6] [173500] +17:35:05 [ 13] [ 4] [0320] +17:35:05 [ 15] [ 4] [0320] +17:35:05 [ 18] [ 4] [6011] +17:35:05 [ 22] [ 3] [900] +17:35:05 [ 25] [ 2] [02] +17:35:05 [ 28] [ 9] [D00002000] +17:35:05 [ 32] [ 6] [621354] +17:35:05 [ 35] [ 32] [1888880000087783=000010100000009] +17:35:05 [ 37] [ 12] [507903444093] +17:35:05 [ 41] [ 8] [06001700] +17:35:05 [ 42] [ 15] [NATIVE ] +17:35:05 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:35:05 [ 49] [ 3] [418] +17:35:05 [ 52] [ 16] [07D8EEABED71F0A8] +17:35:05 ============================================================================ +17:35:05 + + +waiting on router queue for slot.... +17:35:05 Sending to : +17:35:05 ============================================================================ +17:35:05 Sending to : +17:35:05 ============================================================================ +17:35:05 ============================================================================ +17:35:05 Slot Id : <372> +17:35:05 Transaction Type : REQUEST +17:35:05 Received From : +17:35:05 ============================================================================ +17:35:05 FNo. Len. Field Value +17:35:05 ============================================================================ +17:35:05 [ 1] [ 4] [0200] +17:35:05 [ 2] [ 16] [1888880000087783] +17:35:05 [ 3] [ 6] [011000] +17:35:05 [ 4] [ 12] [000020000000] +17:35:05 [ 7] [ 10] [0320173500] +17:35:05 [ 11] [ 6] [817291] +17:35:05 [ 12] [ 6] [173500] +17:35:05 [ 13] [ 4] [0320] +17:35:05 [ 15] [ 4] [0320] +17:35:05 [ 18] [ 4] [6011] +17:35:05 [ 22] [ 3] [900] +17:35:05 [ 25] [ 2] [02] +17:35:05 [ 28] [ 9] [D00002000] +17:35:05 [ 32] [ 6] [621354] +17:35:05 [ 35] [ 32] [1888880000087783=000010100000009] +17:35:05 [ 37] [ 12] [507903444093] +17:35:05 [ 41] [ 8] [06001700] +17:35:05 [ 42] [ 15] [NATIVE ] +17:35:05 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:35:05 [ 49] [ 3] [418] +17:35:05 [ 52] [ 16] [07D8EEABED71F0A8] +17:35:05 ============================================================================ +17:35:05 + + +waiting on router queue for slot.... +17:35:05 Sending to : +17:35:05 ============================================================================ +17:35:05 ============================================================================ +17:35:05 Slot Id : <372> +17:35:05 Transaction Type : REQUEST +17:35:05 Received From : +17:35:05 ============================================================================ +17:35:05 FNo. Len. Field Value +17:35:05 ============================================================================ +17:35:05 [ 1] [ 4] [0200] +17:35:05 [ 2] [ 16] [1888880000087783] +17:35:05 [ 3] [ 6] [011000] +17:35:05 [ 4] [ 12] [000020000000] +17:35:05 [ 7] [ 10] [0320173500] +17:35:05 [ 11] [ 6] [817291] +17:35:05 [ 12] [ 6] [173500] +17:35:05 [ 13] [ 4] [0320] +17:35:05 [ 15] [ 4] [0320] +17:35:05 [ 18] [ 4] [6011] +17:35:05 [ 22] [ 3] [900] +17:35:05 [ 25] [ 2] [02] +17:35:05 [ 28] [ 9] [D00002000] +17:35:05 [ 32] [ 6] [621354] +17:35:05 [ 35] [ 32] [1888880000087783=000010100000009] +17:35:05 [ 37] [ 12] [507903444093] +17:35:05 [ 41] [ 8] [06001700] +17:35:05 [ 42] [ 15] [NATIVE ] +17:35:05 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:35:05 [ 49] [ 3] [418] +17:35:05 [ 52] [ 16] [B328D4E7057E1B49] +17:35:05 ============================================================================ +17:35:05 + + +waiting on router queue for slot.... +17:35:05 Sending to : <5> +17:35:05 ============================================================================ +17:35:05 ============================================================================ +17:35:05 Slot Id : <372> +17:35:05 Transaction Type : RESPONSE +17:35:05 Received From : +17:35:05 ============================================================================ +17:35:05 FNo. Len. Field Value +17:35:05 ============================================================================ +17:35:05 [ 1] [ 4] [0210] +17:35:05 [ 2] [ 16] [1888880000087783] +17:35:05 [ 3] [ 6] [011000] +17:35:05 [ 4] [ 12] [000020000000] +17:35:05 [ 7] [ 10] [0320173500] +17:35:05 [ 11] [ 6] [817291] +17:35:05 [ 12] [ 6] [173500] +17:35:05 [ 13] [ 4] [0320] +17:35:05 [ 15] [ 4] [0320] +17:35:05 [ 18] [ 4] [6011] +17:35:05 [ 19] [ 3] [418] +17:35:05 [ 32] [ 6] [621354] +17:35:05 [ 37] [ 12] [507903444093] +17:35:05 [ 38] [ 6] [000000] +17:35:05 [ 39] [ 2] [07] +17:35:05 [ 41] [ 8] [06001700] +17:35:05 [ 49] [ 3] [418] +17:35:05 ============================================================================ +17:35:05 Sending to : +17:35:05 ============================================================================ +17:35:05 + + +waiting on router queue for slot.... +17:35:05 ============================================================================ +17:35:05 Slot Id : <399> +17:35:05 Transaction Type : REQUEST +17:35:05 Received From : +17:35:05 ============================================================================ +17:35:05 FNo. Len. Field Value +17:35:05 ============================================================================ +17:35:05 [ 1] [ 4] [0200] +17:35:05 [ 2] [ 16] [6688990103295406] +17:35:05 [ 3] [ 6] [010000] +17:35:05 [ 4] [ 12] [000100000000] +17:35:05 [ 7] [ 10] [0320173500] +17:35:05 [ 11] [ 6] [817297] +17:35:05 [ 12] [ 6] [173500] +17:35:05 [ 13] [ 4] [0320] +17:35:05 [ 15] [ 4] [0320] +17:35:05 [ 18] [ 4] [6011] +17:35:05 [ 22] [ 3] [900] +17:35:05 [ 25] [ 2] [02] +17:35:05 [ 28] [ 9] [D00002000] +17:35:05 [ 32] [ 6] [621354] +17:35:05 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:35:05 [ 37] [ 12] [507903499687] +17:35:05 [ 41] [ 8] [06002200] +17:35:05 [ 42] [ 15] [NATIVE ] +17:35:05 [ 43] [ 40] [Beng Market Beng LAO] +17:35:05 [ 49] [ 3] [418] +17:35:05 [ 52] [ 16] [97AC363623FFF82A] +17:35:05 ============================================================================ +17:35:05 + + +waiting on router queue for slot.... +17:35:05 Sending to : +17:35:05 ============================================================================ +17:35:05 Sending to : +17:35:05 ============================================================================ +17:35:05 ============================================================================ +17:35:05 Slot Id : <399> +17:35:05 Transaction Type : REQUEST +17:35:05 Received From : +17:35:05 ============================================================================ +17:35:05 FNo. Len. Field Value +17:35:05 ============================================================================ +17:35:05 [ 1] [ 4] [0200] +17:35:05 [ 2] [ 16] [6688990103295406] +17:35:05 [ 3] [ 6] [010000] +17:35:05 [ 4] [ 12] [000100000000] +17:35:05 [ 7] [ 10] [0320173500] +17:35:05 [ 11] [ 6] [817297] +17:35:05 [ 12] [ 6] [173500] +17:35:05 [ 13] [ 4] [0320] +17:35:05 [ 15] [ 4] [0320] +17:35:05 [ 18] [ 4] [6011] +17:35:05 [ 22] [ 3] [900] +17:35:05 [ 25] [ 2] [02] +17:35:05 [ 28] [ 9] [D00002000] +17:35:05 [ 32] [ 6] [621354] +17:35:05 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:35:05 [ 37] [ 12] [507903499687] +17:35:05 [ 41] [ 8] [06002200] +17:35:05 [ 42] [ 15] [NATIVE ] +17:35:05 [ 43] [ 40] [Beng Market Beng LAO] +17:35:05 [ 49] [ 3] [418] +17:35:05 [ 52] [ 16] [97AC363623FFF82A] +17:35:05 ============================================================================ +17:35:05 + + +waiting on router queue for slot.... +17:35:05 Sending to : +17:35:05 ============================================================================ +17:35:05 ============================================================================ +17:35:05 Slot Id : <399> +17:35:05 Transaction Type : REQUEST +17:35:05 Received From : +17:35:05 ============================================================================ +17:35:05 FNo. Len. Field Value +17:35:05 ============================================================================ +17:35:05 [ 1] [ 4] [0200] +17:35:05 [ 2] [ 16] [6688990103295406] +17:35:05 [ 3] [ 6] [010000] +17:35:05 [ 4] [ 12] [000100000000] +17:35:05 [ 7] [ 10] [0320173500] +17:35:05 [ 11] [ 6] [817297] +17:35:05 [ 12] [ 6] [173500] +17:35:05 [ 13] [ 4] [0320] +17:35:05 [ 15] [ 4] [0320] +17:35:05 [ 18] [ 4] [6011] +17:35:05 [ 22] [ 3] [900] +17:35:05 [ 25] [ 2] [02] +17:35:05 [ 28] [ 9] [D00002000] +17:35:05 [ 32] [ 6] [621354] +17:35:05 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:35:05 [ 37] [ 12] [507903499687] +17:35:05 [ 41] [ 8] [06002200] +17:35:05 [ 42] [ 15] [NATIVE ] +17:35:05 [ 43] [ 40] [Beng Market Beng LAO] +17:35:05 [ 49] [ 3] [418] +17:35:05 [ 52] [ 16] [8705990523D8E38B] +17:35:05 ============================================================================ +17:35:05 + + +waiting on router queue for slot.... +17:35:06 Sending to : <4> +17:35:06 ============================================================================ +17:35:06 ============================================================================ +17:35:06 Slot Id : <387> +17:35:06 Transaction Type : REQUEST +17:35:06 Received From : +17:35:06 ============================================================================ +17:35:06 FNo. Len. Field Value +17:35:06 ============================================================================ +17:35:06 [ 1] [ 4] [0800] +17:35:06 [ 7] [ 10] [0321004655] +17:35:06 [ 11] [ 6] [174655] +17:35:06 [ 37] [ 12] [57917174655] +17:35:06 [ 70] [ 3] [301] +17:35:06 ============================================================================ +17:35:06 + + +waiting on router queue for slot.... +17:35:06 Sending to : +17:35:06 ============================================================================ +17:35:06 ============================================================================ +17:35:06 Slot Id : <387> +17:35:06 Transaction Type : RESPONSE +17:35:06 Received From : +17:35:06 ============================================================================ +17:35:06 FNo. Len. Field Value +17:35:06 ============================================================================ +17:35:06 [ 1] [ 4] [0810] +17:35:06 [ 7] [ 10] [0321004655] +17:35:06 [ 11] [ 6] [174655] +17:35:06 [ 37] [ 12] [579171746550] +17:35:06 [ 39] [ 2] [00] +17:35:06 [ 70] [ 3] [810] +17:35:06 ============================================================================ +17:35:06 Calculate Source COMM Id = 6 +17:35:06 ============================================================================ +17:35:06 + + +waiting on router queue for slot.... +17:35:06 ============================================================================ +17:35:06 Slot Id : <372> +17:35:06 Transaction Type : RESPONSE +17:35:06 Received From : +17:35:06 ============================================================================ +17:35:06 FNo. Len. Field Value +17:35:06 ============================================================================ +17:35:06 [ 1] [ 4] [0210] +17:35:06 [ 2] [ 16] [1888880000087783] +17:35:06 [ 3] [ 6] [011000] +17:35:06 [ 4] [ 12] [000020000000] +17:35:06 [ 7] [ 10] [0320173500] +17:35:06 [ 11] [ 6] [817291] +17:35:06 [ 12] [ 6] [173500] +17:35:06 [ 13] [ 4] [0320] +17:35:06 [ 15] [ 4] [0320] +17:35:06 [ 18] [ 4] [6011] +17:35:06 [ 19] [ 3] [418] +17:35:06 [ 32] [ 6] [621354] +17:35:06 [ 37] [ 12] [507903444093] +17:35:06 [ 38] [ 6] [000000] +17:35:06 [ 39] [ 2] [07] +17:35:06 [ 41] [ 8] [06001700] +17:35:06 [ 49] [ 3] [418] +17:35:06 ============================================================================ +17:35:06 Calculate Source COMM Id = 0 +17:35:06 ============================================================================ +17:35:06 + + +waiting on router queue for slot.... +17:35:06 ============================================================================ +17:35:06 Slot Id : <399> +17:35:06 Transaction Type : RESPONSE +17:35:06 Received From : +17:35:06 ============================================================================ +17:35:06 FNo. Len. Field Value +17:35:06 ============================================================================ +17:35:06 [ 1] [ 4] [0210] +17:35:06 [ 2] [ 16] [6688990103295406] +17:35:06 [ 3] [ 6] [010000] +17:35:06 [ 4] [ 12] [000100000000] +17:35:06 [ 11] [ 6] [817297] +17:35:06 [ 12] [ 6] [173500] +17:35:06 [ 15] [ 4] [0320] +17:35:06 [ 18] [ 4] [6011] +17:35:06 [ 32] [ 6] [621354] +17:35:06 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:35:06 [ 37] [ 12] [507903499687] +17:35:06 [ 38] [ 6] [734475] +17:35:06 [ 39] [ 2] [00] +17:35:06 [ 41] [ 8] [06002200] +17:35:06 [ 49] [ 3] [418] +17:35:06 [ 54] [ 20] [0002418C000122268383] +17:35:06 ============================================================================ +17:35:06 Sending to : +17:35:06 ============================================================================ +17:35:06 + + +waiting on router queue for slot.... +17:35:08 ============================================================================ +17:35:08 Slot Id : <399> +17:35:08 Transaction Type : RESPONSE +17:35:08 Received From : +17:35:08 ============================================================================ +17:35:08 FNo. Len. Field Value +17:35:08 ============================================================================ +17:35:08 [ 1] [ 4] [0210] +17:35:08 [ 2] [ 16] [6688990103295406] +17:35:08 [ 3] [ 6] [010000] +17:35:08 [ 4] [ 12] [000100000000] +17:35:08 [ 11] [ 6] [817297] +17:35:08 [ 12] [ 6] [173500] +17:35:08 [ 15] [ 4] [0320] +17:35:08 [ 18] [ 4] [6011] +17:35:08 [ 32] [ 6] [621354] +17:35:08 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:35:08 [ 37] [ 12] [507903499687] +17:35:08 [ 38] [ 6] [734475] +17:35:08 [ 39] [ 2] [00] +17:35:08 [ 41] [ 8] [06002200] +17:35:08 [ 49] [ 3] [418] +17:35:08 [ 54] [ 20] [0002418C000122268383] +17:35:08 ============================================================================ +17:35:08 Calculate Source COMM Id = 0 +17:35:08 ============================================================================ +17:35:08 + + +waiting on router queue for slot.... +17:35:13 ============================================================================ +17:35:13 Slot Id : <368> +17:35:13 Transaction Type : REQUEST +17:35:13 Received From : +17:35:13 ============================================================================ +17:35:13 FNo. Len. Field Value +17:35:13 ============================================================================ +17:35:13 [ 1] [ 4] [0200] +17:35:13 [ 2] [ 16] [6688990106839705] +17:35:13 [ 3] [ 6] [301000] +17:35:13 [ 7] [ 10] [0320103419] +17:35:13 [ 11] [ 6] [270925] +17:35:13 [ 12] [ 6] [173419] +17:35:13 [ 13] [ 4] [0320] +17:35:13 [ 14] [ 4] [4401] +17:35:13 [ 15] [ 4] [0320] +17:35:13 [ 18] [ 4] [6011] +17:35:13 [ 19] [ 3] [418] +17:35:13 [ 22] [ 3] [021] +17:35:13 [ 25] [ 2] [01] +17:35:13 [ 32] [ 6] [180893] +17:35:13 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:35:13 [ 37] [ 12] [507910270925] +17:35:13 [ 41] [ 8] [0201ADD1] +17:35:13 [ 42] [ 15] [999999 ] +17:35:13 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +17:35:13 [ 49] [ 3] [418] +17:35:13 [ 52] [ 16] [637EB50393C7CB10] +17:35:13 ============================================================================ +17:35:13 + + +waiting on router queue for slot.... +17:35:13 Sending to : +17:35:13 ============================================================================ +17:35:13 Sending to : +17:35:13 ============================================================================ +17:35:13 ============================================================================ +17:35:13 Slot Id : <368> +17:35:13 Transaction Type : REQUEST +17:35:13 Received From : +17:35:13 ============================================================================ +17:35:13 FNo. Len. Field Value +17:35:13 ============================================================================ +17:35:13 [ 1] [ 4] [0200] +17:35:13 [ 2] [ 16] [6688990106839705] +17:35:13 [ 3] [ 6] [301000] +17:35:13 [ 7] [ 10] [0320103419] +17:35:13 [ 11] [ 6] [270925] +17:35:13 [ 12] [ 6] [173419] +17:35:13 [ 13] [ 4] [0320] +17:35:13 [ 14] [ 4] [4401] +17:35:13 [ 15] [ 4] [0320] +17:35:13 [ 18] [ 4] [6011] +17:35:13 [ 19] [ 3] [418] +17:35:13 [ 22] [ 3] [021] +17:35:13 [ 25] [ 2] [01] +17:35:13 [ 32] [ 6] [180893] +17:35:13 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:35:13 [ 37] [ 12] [507910270925] +17:35:13 [ 41] [ 8] [0201ADD1] +17:35:13 [ 42] [ 15] [999999 ] +17:35:13 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +17:35:13 [ 49] [ 3] [418] +17:35:13 [ 52] [ 16] [637EB50393C7CB10] +17:35:13 ============================================================================ +17:35:13 + + +waiting on router queue for slot.... +17:35:13 Sending to : +17:35:13 ============================================================================ +17:35:13 ============================================================================ +17:35:13 Slot Id : <368> +17:35:13 Transaction Type : REQUEST +17:35:13 Received From : +17:35:13 ============================================================================ +17:35:13 FNo. Len. Field Value +17:35:13 ============================================================================ +17:35:13 [ 1] [ 4] [0200] +17:35:13 [ 2] [ 16] [6688990106839705] +17:35:13 [ 3] [ 6] [301000] +17:35:13 [ 7] [ 10] [0320103419] +17:35:13 [ 11] [ 6] [270925] +17:35:13 [ 12] [ 6] [173419] +17:35:13 [ 13] [ 4] [0320] +17:35:13 [ 14] [ 4] [4401] +17:35:13 [ 15] [ 4] [0320] +17:35:13 [ 18] [ 4] [6011] +17:35:13 [ 19] [ 3] [418] +17:35:13 [ 22] [ 3] [021] +17:35:13 [ 25] [ 2] [01] +17:35:13 [ 32] [ 6] [180893] +17:35:13 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:35:13 [ 37] [ 12] [507910270925] +17:35:13 [ 41] [ 8] [0201ADD1] +17:35:13 [ 42] [ 15] [999999 ] +17:35:13 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +17:35:13 [ 49] [ 3] [418] +17:35:13 [ 52] [ 16] [8AB409A21AADCE0E] +17:35:13 ============================================================================ +17:35:13 + + +waiting on router queue for slot.... +17:35:13 Sending to : <0> +17:35:13 ============================================================================ +17:35:13 ============================================================================ +17:35:13 Slot Id : <368> +17:35:13 Transaction Type : RESPONSE +17:35:13 Received From : +17:35:13 ============================================================================ +17:35:13 FNo. Len. Field Value +17:35:13 ============================================================================ +17:35:13 [ 1] [ 4] [0210] +17:35:13 [ 2] [ 16] [6688990106839705] +17:35:13 [ 3] [ 6] [301000] +17:35:13 [ 4] [ 12] [000000000000] +17:35:13 [ 7] [ 10] [0320103419] +17:35:13 [ 11] [ 6] [270925] +17:35:13 [ 12] [ 6] [173419] +17:35:13 [ 13] [ 4] [0320] +17:35:13 [ 15] [ 4] [0320] +17:35:13 [ 18] [ 4] [6011] +17:35:13 [ 19] [ 3] [418] +17:35:13 [ 22] [ 3] [021] +17:35:13 [ 32] [ 6] [180893] +17:35:13 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:35:13 [ 37] [ 12] [507910270925] +17:35:13 [ 39] [ 2] [14] +17:35:13 [ 41] [ 8] [0201ADD1] +17:35:13 [ 49] [ 3] [418] +17:35:13 ============================================================================ +17:35:13 Sending to : +17:35:13 ============================================================================ +17:35:13 + + +waiting on router queue for slot.... +17:35:14 ============================================================================ +17:35:14 Slot Id : <368> +17:35:14 Transaction Type : RESPONSE +17:35:14 Received From : +17:35:14 ============================================================================ +17:35:14 FNo. Len. Field Value +17:35:14 ============================================================================ +17:35:14 [ 1] [ 4] [0210] +17:35:14 [ 2] [ 16] [6688990106839705] +17:35:14 [ 3] [ 6] [301000] +17:35:14 [ 4] [ 12] [000000000000] +17:35:14 [ 7] [ 10] [0320103419] +17:35:14 [ 11] [ 6] [270925] +17:35:14 [ 12] [ 6] [173419] +17:35:14 [ 13] [ 4] [0320] +17:35:14 [ 15] [ 4] [0320] +17:35:14 [ 18] [ 4] [6011] +17:35:14 [ 19] [ 3] [418] +17:35:14 [ 22] [ 3] [021] +17:35:14 [ 32] [ 6] [180893] +17:35:14 [ 35] [ 37] [6688990106839705=44011231970545000000] +17:35:14 [ 37] [ 12] [507910270925] +17:35:14 [ 39] [ 2] [14] +17:35:14 [ 41] [ 8] [0201ADD1] +17:35:14 [ 49] [ 3] [418] +17:35:14 ============================================================================ +17:35:14 Calculate Source COMM Id = 2 +17:35:14 ============================================================================ +17:35:14 + + +waiting on router queue for slot.... +17:35:15 ============================================================================ +17:35:15 Slot Id : <406> +17:35:15 Transaction Type : REQUEST +17:35:15 Received From : +17:35:15 ============================================================================ +17:35:15 FNo. Len. Field Value +17:35:15 ============================================================================ +17:35:15 [ 1] [ 4] [0200] +17:35:15 [ 2] [ 16] [6213544002113436] +17:35:15 [ 3] [ 6] [011000] +17:35:15 [ 4] [ 12] [000005000000] +17:35:15 [ 7] [ 10] [0320173535] +17:35:15 [ 11] [ 6] [209669] +17:35:15 [ 12] [ 6] [173041] +17:35:15 [ 13] [ 4] [0320] +17:35:15 [ 14] [ 4] [4912] +17:35:15 [ 15] [ 4] [0320] +17:35:15 [ 18] [ 4] [6011] +17:35:15 [ 19] [ 3] [418] +17:35:15 [ 22] [ 3] [021] +17:35:15 [ 25] [ 2] [01] +17:35:15 [ 28] [ 9] [D00002000] +17:35:15 [ 32] [ 6] [198901] +17:35:15 [ 35] [ 32] [6213544002113436=491212011343686] +17:35:15 [ 37] [ 12] [507917209669] +17:35:15 [ 41] [ 8] [19529001] +17:35:15 [ 42] [ 15] [000000041952901] +17:35:15 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:35:15 [ 49] [ 3] [418] +17:35:15 [ 52] [ 16] [450576F31FB5A6AD] +17:35:15 ============================================================================ +17:35:15 + + +waiting on router queue for slot.... +17:35:15 Sending to : +17:35:15 ============================================================================ +17:35:15 Sending to : +17:35:15 ============================================================================ +17:35:15 ============================================================================ +17:35:15 Slot Id : <419> +17:35:15 Transaction Type : REQUEST +17:35:15 Received From : +17:35:15 ============================================================================ +17:35:15 FNo. Len. Field Value +17:35:15 ============================================================================ +17:35:15 [ 1] [ 4] [0200] +17:35:15 [ 2] [ 16] [6688990102884002] +17:35:15 [ 3] [ 6] [011000] +17:35:15 [ 4] [ 12] [000028000000] +17:35:15 [ 7] [ 10] [0320173510] +17:35:15 [ 11] [ 6] [817328] +17:35:15 [ 12] [ 6] [173510] +17:35:15 [ 13] [ 4] [0320] +17:35:15 [ 15] [ 4] [0320] +17:35:15 [ 18] [ 4] [6011] +17:35:15 [ 22] [ 3] [900] +17:35:15 [ 25] [ 2] [02] +17:35:15 [ 28] [ 9] [D00002000] +17:35:15 [ 32] [ 6] [621354] +17:35:15 [ 35] [ 37] [6688990102884002=42111231400292300000] +17:35:15 [ 37] [ 12] [507903406096] +17:35:15 [ 41] [ 8] [06001300] +17:35:15 [ 42] [ 15] [NATIVE ] +17:35:15 [ 43] [ 40] [Oudomxay Final Xay LAO] +17:35:15 [ 49] [ 3] [418] +17:35:15 [ 52] [ 16] [5B0E386DE8CB9192] +17:35:15 ============================================================================ +17:35:15 + + +waiting on router queue for slot.... +17:35:15 Sending to : +17:35:15 ============================================================================ +17:35:15 Sending to : +17:35:15 ============================================================================ +17:35:15 ============================================================================ +17:35:15 Slot Id : <406> +17:35:15 Transaction Type : REQUEST +17:35:15 Received From : +17:35:15 ============================================================================ +17:35:15 FNo. Len. Field Value +17:35:15 ============================================================================ +17:35:15 [ 1] [ 4] [0200] +17:35:15 [ 2] [ 16] [6213544002113436] +17:35:15 [ 3] [ 6] [011000] +17:35:15 [ 4] [ 12] [000005000000] +17:35:15 [ 7] [ 10] [0320173535] +17:35:15 [ 11] [ 6] [209669] +17:35:15 [ 12] [ 6] [173041] +17:35:15 [ 13] [ 4] [0320] +17:35:15 [ 14] [ 4] [4912] +17:35:15 [ 15] [ 4] [0320] +17:35:15 [ 18] [ 4] [6011] +17:35:15 [ 19] [ 3] [418] +17:35:15 [ 22] [ 3] [021] +17:35:15 [ 25] [ 2] [01] +17:35:15 [ 28] [ 9] [D00002000] +17:35:15 [ 32] [ 6] [198901] +17:35:15 [ 35] [ 32] [6213544002113436=491212011343686] +17:35:15 [ 37] [ 12] [507917209669] +17:35:15 [ 41] [ 8] [19529001] +17:35:15 [ 42] [ 15] [000000041952901] +17:35:15 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:35:15 [ 49] [ 3] [418] +17:35:15 [ 52] [ 16] [450576F31FB5A6AD] +17:35:15 ============================================================================ +17:35:15 + + +waiting on router queue for slot.... +17:35:15 Sending to : +17:35:15 ============================================================================ +17:35:15 ============================================================================ +17:35:15 Slot Id : <406> +17:35:15 Transaction Type : REQUEST +17:35:15 Received From : +17:35:15 ============================================================================ +17:35:15 FNo. Len. Field Value +17:35:15 ============================================================================ +17:35:15 [ 1] [ 4] [0200] +17:35:15 [ 2] [ 16] [6213544002113436] +17:35:15 [ 3] [ 6] [011000] +17:35:15 [ 4] [ 12] [000005000000] +17:35:15 [ 7] [ 10] [0320173535] +17:35:15 [ 11] [ 6] [209669] +17:35:15 [ 12] [ 6] [173041] +17:35:15 [ 13] [ 4] [0320] +17:35:15 [ 14] [ 4] [4912] +17:35:15 [ 15] [ 4] [0320] +17:35:15 [ 18] [ 4] [6011] +17:35:15 [ 19] [ 3] [418] +17:35:15 [ 22] [ 3] [021] +17:35:15 [ 25] [ 2] [01] +17:35:15 [ 28] [ 9] [D00002000] +17:35:15 [ 32] [ 6] [198901] +17:35:15 [ 35] [ 32] [6213544002113436=491212011343686] +17:35:15 [ 37] [ 12] [507917209669] +17:35:15 [ 41] [ 8] [19529001] +17:35:15 [ 42] [ 15] [000000041952901] +17:35:15 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:35:15 [ 49] [ 3] [418] +17:35:15 [ 52] [ 16] [5E9A68F47AD4CFD7] +17:35:15 ============================================================================ +17:35:15 + + +waiting on router queue for slot.... +17:35:15 Sending to : <0> +17:35:15 ============================================================================ +17:35:15 ============================================================================ +17:35:15 Slot Id : <419> +17:35:15 Transaction Type : REQUEST +17:35:15 Received From : +17:35:15 ============================================================================ +17:35:15 FNo. Len. Field Value +17:35:15 ============================================================================ +17:35:15 [ 1] [ 4] [0200] +17:35:15 [ 2] [ 16] [6688990102884002] +17:35:15 [ 3] [ 6] [011000] +17:35:15 [ 4] [ 12] [000028000000] +17:35:15 [ 7] [ 10] [0320173510] +17:35:15 [ 11] [ 6] [817328] +17:35:15 [ 12] [ 6] [173510] +17:35:15 [ 13] [ 4] [0320] +17:35:15 [ 15] [ 4] [0320] +17:35:15 [ 18] [ 4] [6011] +17:35:15 [ 22] [ 3] [900] +17:35:15 [ 25] [ 2] [02] +17:35:15 [ 28] [ 9] [D00002000] +17:35:15 [ 32] [ 6] [621354] +17:35:15 [ 35] [ 37] [6688990102884002=42111231400292300000] +17:35:15 [ 37] [ 12] [507903406096] +17:35:15 [ 41] [ 8] [06001300] +17:35:15 [ 42] [ 15] [NATIVE ] +17:35:15 [ 43] [ 40] [Oudomxay Final Xay LAO] +17:35:15 [ 49] [ 3] [418] +17:35:15 [ 52] [ 16] [5B0E386DE8CB9192] +17:35:15 ============================================================================ +17:35:15 + + +waiting on router queue for slot.... +17:35:15 Sending to : +17:35:15 ============================================================================ +17:35:15 ============================================================================ +17:35:15 Slot Id : <419> +17:35:15 Transaction Type : REQUEST +17:35:15 Received From : +17:35:15 ============================================================================ +17:35:15 FNo. Len. Field Value +17:35:15 ============================================================================ +17:35:15 [ 1] [ 4] [0200] +17:35:15 [ 2] [ 16] [6688990102884002] +17:35:15 [ 3] [ 6] [011000] +17:35:15 [ 4] [ 12] [000028000000] +17:35:15 [ 7] [ 10] [0320173510] +17:35:15 [ 11] [ 6] [817328] +17:35:15 [ 12] [ 6] [173510] +17:35:15 [ 13] [ 4] [0320] +17:35:15 [ 15] [ 4] [0320] +17:35:15 [ 18] [ 4] [6011] +17:35:15 [ 22] [ 3] [900] +17:35:15 [ 25] [ 2] [02] +17:35:15 [ 28] [ 9] [D00002000] +17:35:15 [ 32] [ 6] [621354] +17:35:15 [ 35] [ 37] [6688990102884002=42111231400292300000] +17:35:15 [ 37] [ 12] [507903406096] +17:35:15 [ 41] [ 8] [06001300] +17:35:15 [ 42] [ 15] [NATIVE ] +17:35:15 [ 43] [ 40] [Oudomxay Final Xay LAO] +17:35:15 [ 49] [ 3] [418] +17:35:15 [ 52] [ 16] [B23ED5F1AB1298F5] +17:35:15 ============================================================================ +17:35:15 + + +waiting on router queue for slot.... +17:35:15 Sending to : <4> +17:35:15 ============================================================================ +17:35:16 ============================================================================ +17:35:16 Slot Id : <406> +17:35:16 Transaction Type : RESPONSE +17:35:16 Received From : +17:35:16 ============================================================================ +17:35:16 FNo. Len. Field Value +17:35:16 ============================================================================ +17:35:16 [ 1] [ 4] [0210] +17:35:16 [ 2] [ 16] [6213544002113436] +17:35:16 [ 3] [ 6] [011000] +17:35:16 [ 4] [ 12] [000005000000] +17:35:16 [ 7] [ 10] [0320173535] +17:35:16 [ 11] [ 6] [209669] +17:35:16 [ 12] [ 6] [173041] +17:35:16 [ 13] [ 4] [0320] +17:35:16 [ 15] [ 4] [0320] +17:35:16 [ 18] [ 4] [6011] +17:35:16 [ 19] [ 3] [418] +17:35:16 [ 32] [ 6] [198901] +17:35:16 [ 35] [ 32] [6213544002113436=491212011343686] +17:35:16 [ 37] [ 12] [507917209669] +17:35:16 [ 38] [ 6] [446887] +17:35:16 [ 39] [ 2] [00] +17:35:16 [ 41] [ 8] [19529001] +17:35:16 [ 49] [ 3] [418] +17:35:16 [ 54] [ 40] [1001418C0000503565831002418C000050356583] +17:35:16 ============================================================================ +17:35:16 Sending to : +17:35:16 ============================================================================ +17:35:16 + + +waiting on router queue for slot.... +17:35:16 ============================================================================ +17:35:16 Slot Id : <419> +17:35:16 Transaction Type : RESPONSE +17:35:16 Received From : +17:35:16 ============================================================================ +17:35:16 FNo. Len. Field Value +17:35:16 ============================================================================ +17:35:16 [ 1] [ 4] [0210] +17:35:16 [ 2] [ 16] [6688990102884002] +17:35:16 [ 3] [ 6] [011000] +17:35:16 [ 4] [ 12] [000028000000] +17:35:16 [ 11] [ 6] [817328] +17:35:16 [ 12] [ 6] [173510] +17:35:16 [ 15] [ 4] [0320] +17:35:16 [ 18] [ 4] [6011] +17:35:16 [ 32] [ 6] [621354] +17:35:16 [ 35] [ 37] [6688990102884002=42111231400292300000] +17:35:16 [ 37] [ 12] [507903406096] +17:35:16 [ 38] [ 6] [397186] +17:35:16 [ 39] [ 2] [00] +17:35:16 [ 41] [ 8] [06001300] +17:35:16 [ 49] [ 3] [418] +17:35:16 [ 54] [ 20] [1002418C000260604206] +17:35:16 ============================================================================ +17:35:16 Sending to : +17:35:16 ============================================================================ +17:35:16 + + +waiting on router queue for slot.... +17:35:17 ============================================================================ +17:35:17 Slot Id : <406> +17:35:17 Transaction Type : RESPONSE +17:35:17 Received From : +17:35:17 ============================================================================ +17:35:17 FNo. Len. Field Value +17:35:17 ============================================================================ +17:35:17 [ 1] [ 4] [0210] +17:35:17 [ 2] [ 16] [6213544002113436] +17:35:17 [ 3] [ 6] [011000] +17:35:17 [ 4] [ 12] [000005000000] +17:35:17 [ 7] [ 10] [0320173535] +17:35:17 [ 11] [ 6] [209669] +17:35:17 [ 12] [ 6] [173041] +17:35:17 [ 13] [ 4] [0320] +17:35:17 [ 15] [ 4] [0320] +17:35:17 [ 18] [ 4] [6011] +17:35:17 [ 19] [ 3] [418] +17:35:17 [ 32] [ 6] [198901] +17:35:17 [ 35] [ 32] [6213544002113436=491212011343686] +17:35:17 [ 37] [ 12] [507917209669] +17:35:17 [ 38] [ 6] [446887] +17:35:17 [ 39] [ 2] [00] +17:35:17 [ 41] [ 8] [19529001] +17:35:17 [ 49] [ 3] [418] +17:35:17 [ 54] [ 40] [1001418C0000503565831002418C000050356583] +17:35:17 ============================================================================ +17:35:17 Calculate Source COMM Id = 5 +17:35:17 ============================================================================ +17:35:17 + + +waiting on router queue for slot.... +17:35:18 ============================================================================ +17:35:18 Slot Id : <419> +17:35:18 Transaction Type : RESPONSE +17:35:18 Received From : +17:35:18 ============================================================================ +17:35:18 FNo. Len. Field Value +17:35:18 ============================================================================ +17:35:18 [ 1] [ 4] [0210] +17:35:18 [ 2] [ 16] [6688990102884002] +17:35:18 [ 3] [ 6] [011000] +17:35:18 [ 4] [ 12] [000028000000] +17:35:18 [ 11] [ 6] [817328] +17:35:18 [ 12] [ 6] [173510] +17:35:18 [ 15] [ 4] [0320] +17:35:18 [ 18] [ 4] [6011] +17:35:18 [ 32] [ 6] [621354] +17:35:18 [ 35] [ 37] [6688990102884002=42111231400292300000] +17:35:18 [ 37] [ 12] [507903406096] +17:35:18 [ 38] [ 6] [397186] +17:35:18 [ 39] [ 2] [00] +17:35:18 [ 41] [ 8] [06001300] +17:35:18 [ 49] [ 3] [418] +17:35:18 [ 54] [ 20] [1002418C000260604206] +17:35:18 ============================================================================ +17:35:18 Calculate Source COMM Id = 0 +17:35:18 ============================================================================ +17:35:18 + + +waiting on router queue for slot.... +17:35:26 ============================================================================ +17:35:26 Slot Id : <411> +17:35:26 Transaction Type : REQUEST +17:35:26 Received From : +17:35:26 ============================================================================ +17:35:26 FNo. Len. Field Value +17:35:26 ============================================================================ +17:35:26 [ 1] [ 4] [0800] +17:35:26 [ 7] [ 10] [0320103433] +17:35:26 [ 11] [ 6] [157492] +17:35:26 [ 70] [ 3] [301] +17:35:26 ============================================================================ +17:35:26 + + +waiting on router queue for slot.... +17:35:26 Sending to : +17:35:26 ============================================================================ +17:35:26 ============================================================================ +17:35:26 Slot Id : <411> +17:35:26 Transaction Type : RESPONSE +17:35:26 Received From : +17:35:26 ============================================================================ +17:35:26 FNo. Len. Field Value +17:35:26 ============================================================================ +17:35:26 [ 1] [ 4] [0810] +17:35:26 [ 7] [ 10] [0320103433] +17:35:26 [ 11] [ 6] [157492] +17:35:26 [ 39] [ 2] [00] +17:35:26 [ 70] [ 3] [301] +17:35:26 ============================================================================ +17:35:26 Calculate Source COMM Id = 2 +17:35:26 ============================================================================ +17:35:26 + + +waiting on router queue for slot.... +17:35:28 ============================================================================ +17:35:28 Slot Id : <380> +17:35:28 Transaction Type : REQUEST +17:35:28 Received From : +17:35:28 ============================================================================ +17:35:28 FNo. Len. Field Value +17:35:28 ============================================================================ +17:35:28 [ 1] [ 4] [0200] +17:35:28 [ 2] [ 16] [6213543000241314] +17:35:28 [ 3] [ 6] [010000] +17:35:28 [ 4] [ 12] [000100000000] +17:35:28 [ 7] [ 10] [0320173318] +17:35:28 [ 11] [ 6] [953617] +17:35:28 [ 12] [ 6] [173318] +17:35:28 [ 13] [ 4] [0320] +17:35:28 [ 15] [ 4] [0320] +17:35:28 [ 18] [ 4] [6011] +17:35:28 [ 19] [ 3] [418] +17:35:28 [ 22] [ 3] [021] +17:35:28 [ 25] [ 2] [01] +17:35:28 [ 28] [ 9] [D00002000] +17:35:28 [ 32] [ 6] [668899] +17:35:28 [ 35] [ 32] [6213543000241314=491212014131950] +17:35:28 [ 37] [ 12] [507901161678] +17:35:28 [ 41] [ 8] [03217001] +17:35:28 [ 42] [ 15] [APT ] +17:35:28 [ 43] [ 40] [ THATENG UNIT XEKONG L] +17:35:28 [ 49] [ 3] [418] +17:35:28 [ 52] [ 16] [0F80A7CB485048C3] +17:35:28 ============================================================================ +17:35:28 + + +waiting on router queue for slot.... +17:35:28 Sending to : +17:35:28 ============================================================================ +17:35:28 Sending to : +17:35:28 ============================================================================ +17:35:28 ============================================================================ +17:35:28 Slot Id : <380> +17:35:28 Transaction Type : REQUEST +17:35:28 Received From : +17:35:28 ============================================================================ +17:35:28 FNo. Len. Field Value +17:35:28 ============================================================================ +17:35:28 [ 1] [ 4] [0200] +17:35:28 [ 2] [ 16] [6213543000241314] +17:35:28 [ 3] [ 6] [010000] +17:35:28 [ 4] [ 12] [000100000000] +17:35:28 [ 7] [ 10] [0320173318] +17:35:28 [ 11] [ 6] [953617] +17:35:28 [ 12] [ 6] [173318] +17:35:28 [ 13] [ 4] [0320] +17:35:28 [ 15] [ 4] [0320] +17:35:28 [ 18] [ 4] [6011] +17:35:28 [ 19] [ 3] [418] +17:35:28 [ 22] [ 3] [021] +17:35:28 [ 25] [ 2] [01] +17:35:28 [ 28] [ 9] [D00002000] +17:35:28 [ 32] [ 6] [668899] +17:35:28 [ 35] [ 32] [6213543000241314=491212014131950] +17:35:28 [ 37] [ 12] [507901161678] +17:35:28 [ 41] [ 8] [03217001] +17:35:28 [ 42] [ 15] [APT ] +17:35:28 [ 43] [ 40] [ THATENG UNIT XEKONG L] +17:35:28 [ 49] [ 3] [418] +17:35:28 [ 52] [ 16] [0F80A7CB485048C3] +17:35:28 ============================================================================ +17:35:28 + + +waiting on router queue for slot.... +17:35:28 Sending to : +17:35:28 ============================================================================ +17:35:28 ============================================================================ +17:35:28 Slot Id : <380> +17:35:28 Transaction Type : REQUEST +17:35:28 Received From : +17:35:28 ============================================================================ +17:35:28 FNo. Len. Field Value +17:35:28 ============================================================================ +17:35:28 [ 1] [ 4] [0200] +17:35:28 [ 2] [ 16] [6213543000241314] +17:35:28 [ 3] [ 6] [010000] +17:35:28 [ 4] [ 12] [000100000000] +17:35:28 [ 7] [ 10] [0320173318] +17:35:28 [ 11] [ 6] [953617] +17:35:28 [ 12] [ 6] [173318] +17:35:28 [ 13] [ 4] [0320] +17:35:28 [ 15] [ 4] [0320] +17:35:28 [ 18] [ 4] [6011] +17:35:28 [ 19] [ 3] [418] +17:35:28 [ 22] [ 3] [021] +17:35:28 [ 25] [ 2] [01] +17:35:28 [ 28] [ 9] [D00002000] +17:35:28 [ 32] [ 6] [668899] +17:35:28 [ 35] [ 32] [6213543000241314=491212014131950] +17:35:28 [ 37] [ 12] [507901161678] +17:35:28 [ 41] [ 8] [03217001] +17:35:28 [ 42] [ 15] [APT ] +17:35:28 [ 43] [ 40] [ THATENG UNIT XEKONG L] +17:35:28 [ 49] [ 3] [418] +17:35:28 [ 52] [ 16] [2884D6A50CA1F15E] +17:35:28 ============================================================================ +17:35:28 + + +waiting on router queue for slot.... +17:35:28 Sending to : <0> +17:35:28 ============================================================================ +17:35:29 ============================================================================ +17:35:29 Slot Id : <380> +17:35:29 Transaction Type : RESPONSE +17:35:29 Received From : +17:35:29 ============================================================================ +17:35:29 FNo. Len. Field Value +17:35:29 ============================================================================ +17:35:29 [ 1] [ 4] [0210] +17:35:29 [ 2] [ 16] [6213543000241314] +17:35:29 [ 3] [ 6] [010000] +17:35:29 [ 4] [ 12] [000100000000] +17:35:29 [ 7] [ 10] [0320173318] +17:35:29 [ 11] [ 6] [953617] +17:35:29 [ 12] [ 6] [173318] +17:35:29 [ 13] [ 4] [0320] +17:35:29 [ 15] [ 4] [0320] +17:35:29 [ 18] [ 4] [6011] +17:35:29 [ 19] [ 3] [418] +17:35:29 [ 32] [ 6] [668899] +17:35:29 [ 35] [ 32] [6213543000241314=491212014131950] +17:35:29 [ 37] [ 12] [507901161678] +17:35:29 [ 38] [ 6] [953617] +17:35:29 [ 39] [ 2] [51] +17:35:29 [ 41] [ 8] [03217001] +17:35:29 [ 49] [ 3] [418] +17:35:29 [ 54] [ 40] [0001418C0000962000000002418C000096200000] +17:35:29 ============================================================================ +17:35:29 Sending to : +17:35:29 ============================================================================ +17:35:29 + + +waiting on router queue for slot.... +17:35:30 ============================================================================ +17:35:30 Slot Id : <380> +17:35:30 Transaction Type : RESPONSE +17:35:30 Received From : +17:35:30 ============================================================================ +17:35:30 FNo. Len. Field Value +17:35:30 ============================================================================ +17:35:30 [ 1] [ 4] [0210] +17:35:30 [ 2] [ 16] [6213543000241314] +17:35:30 [ 3] [ 6] [010000] +17:35:30 [ 4] [ 12] [000100000000] +17:35:30 [ 7] [ 10] [0320173318] +17:35:30 [ 11] [ 6] [953617] +17:35:30 [ 12] [ 6] [173318] +17:35:30 [ 13] [ 4] [0320] +17:35:30 [ 15] [ 4] [0320] +17:35:30 [ 18] [ 4] [6011] +17:35:30 [ 19] [ 3] [418] +17:35:30 [ 32] [ 6] [668899] +17:35:30 [ 35] [ 32] [6213543000241314=491212014131950] +17:35:30 [ 37] [ 12] [507901161678] +17:35:30 [ 38] [ 6] [953617] +17:35:30 [ 39] [ 2] [51] +17:35:30 [ 41] [ 8] [03217001] +17:35:30 [ 49] [ 3] [418] +17:35:30 [ 54] [ 40] [0001418C0000962000000002418C000096200000] +17:35:30 ============================================================================ +17:35:30 Calculate Source COMM Id = 4 +17:35:30 ============================================================================ +17:35:30 + + +waiting on router queue for slot.... +17:35:36 ============================================================================ +17:35:36 Slot Id : <384> +17:35:36 Transaction Type : REQUEST +17:35:36 Received From : +17:35:36 ============================================================================ +17:35:36 FNo. Len. Field Value +17:35:36 ============================================================================ +17:35:36 [ 1] [ 4] [0800] +17:35:36 [ 7] [ 10] [0320103443] +17:35:36 [ 11] [ 6] [157493] +17:35:36 [ 70] [ 3] [301] +17:35:36 ============================================================================ +17:35:36 + + +waiting on router queue for slot.... +17:35:36 Sending to : +17:35:36 ============================================================================ +17:35:36 ============================================================================ +17:35:36 Slot Id : <384> +17:35:36 Transaction Type : RESPONSE +17:35:36 Received From : +17:35:36 ============================================================================ +17:35:36 FNo. Len. Field Value +17:35:36 ============================================================================ +17:35:36 [ 1] [ 4] [0810] +17:35:36 [ 7] [ 10] [0320103443] +17:35:36 [ 11] [ 6] [157493] +17:35:36 [ 39] [ 2] [00] +17:35:36 [ 70] [ 3] [301] +17:35:36 ============================================================================ +17:35:36 Calculate Source COMM Id = 2 +17:35:36 ============================================================================ +17:35:36 + + +waiting on router queue for slot.... +17:35:41 ============================================================================ +17:35:41 Slot Id : <407> +17:35:41 Transaction Type : REQUEST +17:35:41 Received From : +17:35:41 ============================================================================ +17:35:41 FNo. Len. Field Value +17:35:41 ============================================================================ +17:35:41 [ 1] [ 4] [0800] +17:35:41 [ 2] [ 5] [02531] +17:35:41 [ 3] [ 6] [579178] +17:35:41 [ 7] [ 10] [0320103541] +17:35:41 [ 11] [ 6] [807433] +17:35:41 [ 15] [ 10] [0320103541] +17:35:41 [ 37] [ 11] [57917807433] +17:35:41 [ 70] [ 3] [001] +17:35:41 ============================================================================ +17:35:41 + + +waiting on router queue for slot.... +17:35:41 ============================================================================ +17:35:41 Slot Id : <407> +17:35:41 Transaction Type : RESPONSE +17:35:41 Received From : +17:35:41 ============================================================================ +17:35:41 FNo. Len. Field Value +17:35:41 ============================================================================ +17:35:41 [ 1] [ 4] [0810] +17:35:41 [ 7] [ 10] [0320103541] +17:35:41 [ 11] [ 6] [807433] +17:35:41 [ 15] [ 4] [0320] +17:35:41 [ 37] [ 12] [57917807433] +17:35:41 [ 39] [ 2] [00] +17:35:41 [ 70] [ 3] [001] +17:35:41 ============================================================================ +17:35:41 Sending to : +17:35:41 ============================================================================ +17:35:41 + + +waiting on router queue for slot.... +17:35:47 ============================================================================ +17:35:47 Slot Id : <416> +17:35:47 Transaction Type : REQUEST +17:35:47 Received From : +17:35:47 ============================================================================ +17:35:47 FNo. Len. Field Value +17:35:47 ============================================================================ +17:35:47 [ 1] [ 4] [0800] +17:35:47 [ 7] [ 10] [0320103454] +17:35:47 [ 11] [ 6] [157494] +17:35:47 [ 70] [ 3] [301] +17:35:47 ============================================================================ +17:35:47 + + +waiting on router queue for slot.... +17:35:47 Sending to : +17:35:47 ============================================================================ +17:35:47 ============================================================================ +17:35:47 Slot Id : <416> +17:35:47 Transaction Type : RESPONSE +17:35:47 Received From : +17:35:47 ============================================================================ +17:35:47 FNo. Len. Field Value +17:35:47 ============================================================================ +17:35:47 [ 1] [ 4] [0810] +17:35:47 [ 7] [ 10] [0320103454] +17:35:47 [ 11] [ 6] [157494] +17:35:47 [ 39] [ 2] [00] +17:35:47 [ 70] [ 3] [301] +17:35:47 ============================================================================ +17:35:47 Calculate Source COMM Id = 2 +17:35:47 ============================================================================ +17:35:47 + + +waiting on router queue for slot.... +17:35:54 ============================================================================ +17:35:54 Slot Id : <401> +17:35:54 Transaction Type : REQUEST +17:35:54 Received From : +17:35:54 ============================================================================ +17:35:54 FNo. Len. Field Value +17:35:54 ============================================================================ +17:35:54 [ 1] [ 4] [0200] +17:35:54 [ 2] [ 16] [6688990105299505] +17:35:54 [ 3] [ 6] [301000] +17:35:54 [ 4] [ 12] [000000000000] +17:35:54 [ 7] [ 10] [0320173549] +17:35:54 [ 11] [ 6] [817471] +17:35:54 [ 12] [ 6] [173549] +17:35:54 [ 13] [ 4] [0320] +17:35:54 [ 15] [ 4] [0320] +17:35:54 [ 18] [ 4] [6011] +17:35:54 [ 22] [ 3] [900] +17:35:54 [ 25] [ 2] [02] +17:35:54 [ 28] [ 9] [D00000000] +17:35:54 [ 32] [ 6] [621354] +17:35:54 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:35:54 [ 37] [ 12] [507905291423] +17:35:54 [ 41] [ 8] [20001400] +17:35:54 [ 42] [ 15] [NATIVE ] +17:35:54 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +17:35:54 [ 49] [ 3] [418] +17:35:54 [ 52] [ 16] [9DEFF7028E4C4935] +17:35:54 ============================================================================ +17:35:54 + + +waiting on router queue for slot.... +17:35:54 Sending to : +17:35:54 ============================================================================ +17:35:54 Sending to : +17:35:54 ============================================================================ +17:35:55 ============================================================================ +17:35:55 Slot Id : <401> +17:35:55 Transaction Type : REQUEST +17:35:55 Received From : +17:35:55 ============================================================================ +17:35:55 FNo. Len. Field Value +17:35:55 ============================================================================ +17:35:55 [ 1] [ 4] [0200] +17:35:55 [ 2] [ 16] [6688990105299505] +17:35:55 [ 3] [ 6] [301000] +17:35:55 [ 4] [ 12] [000000000000] +17:35:55 [ 7] [ 10] [0320173549] +17:35:55 [ 11] [ 6] [817471] +17:35:55 [ 12] [ 6] [173549] +17:35:55 [ 13] [ 4] [0320] +17:35:55 [ 15] [ 4] [0320] +17:35:55 [ 18] [ 4] [6011] +17:35:55 [ 22] [ 3] [900] +17:35:55 [ 25] [ 2] [02] +17:35:55 [ 28] [ 9] [D00000000] +17:35:55 [ 32] [ 6] [621354] +17:35:55 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:35:55 [ 37] [ 12] [507905291423] +17:35:55 [ 41] [ 8] [20001400] +17:35:55 [ 42] [ 15] [NATIVE ] +17:35:55 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +17:35:55 [ 49] [ 3] [418] +17:35:55 [ 52] [ 16] [9DEFF7028E4C4935] +17:35:55 ============================================================================ +17:35:55 + + +waiting on router queue for slot.... +17:35:55 Sending to : +17:35:55 ============================================================================ +17:35:55 ============================================================================ +17:35:55 Slot Id : <401> +17:35:55 Transaction Type : REQUEST +17:35:55 Received From : +17:35:55 ============================================================================ +17:35:55 FNo. Len. Field Value +17:35:55 ============================================================================ +17:35:55 [ 1] [ 4] [0200] +17:35:55 [ 2] [ 16] [6688990105299505] +17:35:55 [ 3] [ 6] [301000] +17:35:55 [ 4] [ 12] [000000000000] +17:35:55 [ 7] [ 10] [0320173549] +17:35:55 [ 11] [ 6] [817471] +17:35:55 [ 12] [ 6] [173549] +17:35:55 [ 13] [ 4] [0320] +17:35:55 [ 15] [ 4] [0320] +17:35:55 [ 18] [ 4] [6011] +17:35:55 [ 22] [ 3] [900] +17:35:55 [ 25] [ 2] [02] +17:35:55 [ 28] [ 9] [D00000000] +17:35:55 [ 32] [ 6] [621354] +17:35:55 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:35:55 [ 37] [ 12] [507905291423] +17:35:55 [ 41] [ 8] [20001400] +17:35:55 [ 42] [ 15] [NATIVE ] +17:35:55 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +17:35:55 [ 49] [ 3] [418] +17:35:55 [ 52] [ 16] [E405FA6A0470F81C] +17:35:55 ============================================================================ +17:35:55 + + +waiting on router queue for slot.... +17:35:55 Sending to : <4> +17:35:55 ============================================================================ +17:35:55 ============================================================================ +17:35:55 Slot Id : <401> +17:35:55 Transaction Type : RESPONSE +17:35:55 Received From : +17:35:55 ============================================================================ +17:35:55 FNo. Len. Field Value +17:35:55 ============================================================================ +17:35:55 [ 1] [ 4] [0210] +17:35:55 [ 2] [ 16] [6688990105299505] +17:35:55 [ 3] [ 6] [301000] +17:35:55 [ 4] [ 12] [000000000000] +17:35:55 [ 7] [ 10] [0320173549] +17:35:55 [ 11] [ 6] [817471] +17:35:55 [ 12] [ 6] [173549] +17:35:55 [ 13] [ 4] [0320] +17:35:55 [ 15] [ 4] [0320] +17:35:55 [ 18] [ 4] [6011] +17:35:55 [ 22] [ 3] [021] +17:35:55 [ 32] [ 6] [621354] +17:35:55 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:35:55 [ 37] [ 12] [507905291423] +17:35:55 [ 38] [ 6] [173345] +17:35:55 [ 39] [ 2] [55] +17:35:55 [ 41] [ 8] [20001400] +17:35:55 [ 49] [ 3] [418] +17:35:55 ============================================================================ +17:35:55 Sending to : +17:35:55 ============================================================================ +17:35:55 + + +waiting on router queue for slot.... +17:35:57 ============================================================================ +17:35:57 Slot Id : <401> +17:35:57 Transaction Type : RESPONSE +17:35:57 Received From : +17:35:57 ============================================================================ +17:35:57 FNo. Len. Field Value +17:35:57 ============================================================================ +17:35:57 [ 1] [ 4] [0210] +17:35:57 [ 2] [ 16] [6688990105299505] +17:35:57 [ 3] [ 6] [301000] +17:35:57 [ 4] [ 12] [000000000000] +17:35:57 [ 7] [ 10] [0320173549] +17:35:57 [ 11] [ 6] [817471] +17:35:57 [ 12] [ 6] [173549] +17:35:57 [ 13] [ 4] [0320] +17:35:57 [ 15] [ 4] [0320] +17:35:57 [ 18] [ 4] [6011] +17:35:57 [ 22] [ 3] [021] +17:35:57 [ 32] [ 6] [621354] +17:35:57 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:35:57 [ 37] [ 12] [507905291423] +17:35:57 [ 38] [ 6] [173345] +17:35:57 [ 39] [ 2] [55] +17:35:57 [ 41] [ 8] [20001400] +17:35:57 [ 49] [ 3] [418] +17:35:57 ============================================================================ +17:35:57 Calculate Source COMM Id = 0 +17:35:57 ============================================================================ +17:35:57 + + +waiting on router queue for slot.... +17:35:59 ============================================================================ +17:35:59 Slot Id : <381> +17:35:59 Transaction Type : REQUEST +17:35:59 Received From : +17:35:59 ============================================================================ +17:35:59 FNo. Len. Field Value +17:35:59 ============================================================================ +17:35:59 [ 1] [ 4] [0200] +17:35:59 [ 2] [ 16] [6213543000241314] +17:35:59 [ 3] [ 6] [010000] +17:35:59 [ 4] [ 12] [000010000000] +17:35:59 [ 7] [ 10] [0320173349] +17:35:59 [ 11] [ 6] [953627] +17:35:59 [ 12] [ 6] [173349] +17:35:59 [ 13] [ 4] [0320] +17:35:59 [ 15] [ 4] [0320] +17:35:59 [ 18] [ 4] [6011] +17:35:59 [ 19] [ 3] [418] +17:35:59 [ 22] [ 3] [021] +17:35:59 [ 25] [ 2] [01] +17:35:59 [ 28] [ 9] [D00002000] +17:35:59 [ 32] [ 6] [668899] +17:35:59 [ 35] [ 32] [6213543000241314=491212014131950] +17:35:59 [ 37] [ 12] [507901161679] +17:35:59 [ 41] [ 8] [03217001] +17:35:59 [ 42] [ 15] [APT ] +17:35:59 [ 43] [ 40] [ THATENG UNIT XEKONG L] +17:35:59 [ 49] [ 3] [418] +17:35:59 [ 52] [ 16] [0F80A7CB485048C3] +17:35:59 ============================================================================ +17:35:59 + + +waiting on router queue for slot.... +17:35:59 Sending to : +17:35:59 ============================================================================ +17:35:59 Sending to : +17:35:59 ============================================================================ +17:36:00 ============================================================================ +17:36:00 Slot Id : <381> +17:36:00 Transaction Type : REQUEST +17:36:00 Received From : +17:36:00 ============================================================================ +17:36:00 FNo. Len. Field Value +17:36:00 ============================================================================ +17:36:00 [ 1] [ 4] [0200] +17:36:00 [ 2] [ 16] [6213543000241314] +17:36:00 [ 3] [ 6] [010000] +17:36:00 [ 4] [ 12] [000010000000] +17:36:00 [ 7] [ 10] [0320173349] +17:36:00 [ 11] [ 6] [953627] +17:36:00 [ 12] [ 6] [173349] +17:36:00 [ 13] [ 4] [0320] +17:36:00 [ 15] [ 4] [0320] +17:36:00 [ 18] [ 4] [6011] +17:36:00 [ 19] [ 3] [418] +17:36:00 [ 22] [ 3] [021] +17:36:00 [ 25] [ 2] [01] +17:36:00 [ 28] [ 9] [D00002000] +17:36:00 [ 32] [ 6] [668899] +17:36:00 [ 35] [ 32] [6213543000241314=491212014131950] +17:36:00 [ 37] [ 12] [507901161679] +17:36:00 [ 41] [ 8] [03217001] +17:36:00 [ 42] [ 15] [APT ] +17:36:00 [ 43] [ 40] [ THATENG UNIT XEKONG L] +17:36:00 [ 49] [ 3] [418] +17:36:00 [ 52] [ 16] [0F80A7CB485048C3] +17:36:00 ============================================================================ +17:36:00 + + +waiting on router queue for slot.... +17:36:00 Sending to : +17:36:00 ============================================================================ +17:36:00 ============================================================================ +17:36:00 Slot Id : <381> +17:36:00 Transaction Type : REQUEST +17:36:00 Received From : +17:36:00 ============================================================================ +17:36:00 FNo. Len. Field Value +17:36:00 ============================================================================ +17:36:00 [ 1] [ 4] [0200] +17:36:00 [ 2] [ 16] [6213543000241314] +17:36:00 [ 3] [ 6] [010000] +17:36:00 [ 4] [ 12] [000010000000] +17:36:00 [ 7] [ 10] [0320173349] +17:36:00 [ 11] [ 6] [953627] +17:36:00 [ 12] [ 6] [173349] +17:36:00 [ 13] [ 4] [0320] +17:36:00 [ 15] [ 4] [0320] +17:36:00 [ 18] [ 4] [6011] +17:36:00 [ 19] [ 3] [418] +17:36:00 [ 22] [ 3] [021] +17:36:00 [ 25] [ 2] [01] +17:36:00 [ 28] [ 9] [D00002000] +17:36:00 [ 32] [ 6] [668899] +17:36:00 [ 35] [ 32] [6213543000241314=491212014131950] +17:36:00 [ 37] [ 12] [507901161679] +17:36:00 [ 41] [ 8] [03217001] +17:36:00 [ 42] [ 15] [APT ] +17:36:00 [ 43] [ 40] [ THATENG UNIT XEKONG L] +17:36:00 [ 49] [ 3] [418] +17:36:00 [ 52] [ 16] [2884D6A50CA1F15E] +17:36:00 ============================================================================ +17:36:00 + + +waiting on router queue for slot.... +17:36:00 Sending to : <0> +17:36:00 ============================================================================ +17:36:00 ============================================================================ +17:36:00 Slot Id : <381> +17:36:00 Transaction Type : RESPONSE +17:36:00 Received From : +17:36:00 ============================================================================ +17:36:00 FNo. Len. Field Value +17:36:00 ============================================================================ +17:36:00 [ 1] [ 4] [0210] +17:36:00 [ 2] [ 16] [6213543000241314] +17:36:00 [ 3] [ 6] [010000] +17:36:00 [ 4] [ 12] [000010000000] +17:36:00 [ 7] [ 10] [0320173349] +17:36:00 [ 11] [ 6] [953627] +17:36:00 [ 12] [ 6] [173349] +17:36:00 [ 13] [ 4] [0320] +17:36:00 [ 15] [ 4] [0320] +17:36:00 [ 18] [ 4] [6011] +17:36:00 [ 19] [ 3] [418] +17:36:00 [ 32] [ 6] [668899] +17:36:00 [ 35] [ 32] [6213543000241314=491212014131950] +17:36:00 [ 37] [ 12] [507901161679] +17:36:00 [ 38] [ 6] [053513] +17:36:00 [ 39] [ 2] [00] +17:36:00 [ 41] [ 8] [03217001] +17:36:00 [ 49] [ 3] [418] +17:36:00 [ 54] [ 40] [0001418C0000860000000002418C000086000000] +17:36:00 ============================================================================ +17:36:00 Sending to : +17:36:00 ============================================================================ +17:36:00 + + +waiting on router queue for slot.... +17:36:02 ============================================================================ +17:36:02 Slot Id : <381> +17:36:02 Transaction Type : RESPONSE +17:36:02 Received From : +17:36:02 ============================================================================ +17:36:02 FNo. Len. Field Value +17:36:02 ============================================================================ +17:36:02 [ 1] [ 4] [0210] +17:36:02 [ 2] [ 16] [6213543000241314] +17:36:02 [ 3] [ 6] [010000] +17:36:02 [ 4] [ 12] [000010000000] +17:36:02 [ 7] [ 10] [0320173349] +17:36:02 [ 11] [ 6] [953627] +17:36:02 [ 12] [ 6] [173349] +17:36:02 [ 13] [ 4] [0320] +17:36:02 [ 15] [ 4] [0320] +17:36:02 [ 18] [ 4] [6011] +17:36:02 [ 19] [ 3] [418] +17:36:02 [ 32] [ 6] [668899] +17:36:02 [ 35] [ 32] [6213543000241314=491212014131950] +17:36:02 [ 37] [ 12] [507901161679] +17:36:02 [ 38] [ 6] [053513] +17:36:02 [ 39] [ 2] [00] +17:36:02 [ 41] [ 8] [03217001] +17:36:02 [ 49] [ 3] [418] +17:36:02 [ 54] [ 40] [0001418C0000860000000002418C000086000000] +17:36:02 ============================================================================ +17:36:02 Calculate Source COMM Id = 4 +17:36:02 ============================================================================ +17:36:02 + + +waiting on router queue for slot.... +17:36:03 ============================================================================ +17:36:03 Slot Id : <433> +17:36:03 Transaction Type : REQUEST +17:36:03 Received From : +17:36:03 ============================================================================ +17:36:03 FNo. Len. Field Value +17:36:03 ============================================================================ +17:36:03 [ 1] [ 4] [0800] +17:36:03 [ 7] [ 10] [0320103510] +17:36:03 [ 11] [ 6] [157495] +17:36:03 [ 70] [ 3] [301] +17:36:03 ============================================================================ +17:36:03 + + +waiting on router queue for slot.... +17:36:03 Sending to : +17:36:03 ============================================================================ +17:36:03 ============================================================================ +17:36:03 Slot Id : <433> +17:36:03 Transaction Type : RESPONSE +17:36:03 Received From : +17:36:03 ============================================================================ +17:36:03 FNo. Len. Field Value +17:36:03 ============================================================================ +17:36:03 [ 1] [ 4] [0810] +17:36:03 [ 7] [ 10] [0320103510] +17:36:03 [ 11] [ 6] [157495] +17:36:03 [ 39] [ 2] [00] +17:36:03 [ 70] [ 3] [301] +17:36:03 ============================================================================ +17:36:03 Calculate Source COMM Id = 2 +17:36:03 ============================================================================ +17:36:03 + + +waiting on router queue for slot.... +17:36:12 ============================================================================ +17:36:12 Slot Id : <420> +17:36:12 Transaction Type : REQUEST +17:36:12 Received From : +17:36:12 ============================================================================ +17:36:12 FNo. Len. Field Value +17:36:12 ============================================================================ +17:36:12 [ 1] [ 4] [0800] +17:36:12 [ 7] [ 10] [0321004800] +17:36:12 [ 11] [ 6] [174800] +17:36:12 [ 37] [ 12] [57917174800] +17:36:12 [ 70] [ 3] [301] +17:36:12 ============================================================================ +17:36:12 + + +waiting on router queue for slot.... +17:36:12 Sending to : +17:36:12 ============================================================================ +17:36:12 ============================================================================ +17:36:12 Slot Id : <420> +17:36:12 Transaction Type : RESPONSE +17:36:12 Received From : +17:36:12 ============================================================================ +17:36:12 FNo. Len. Field Value +17:36:12 ============================================================================ +17:36:12 [ 1] [ 4] [0810] +17:36:12 [ 7] [ 10] [0321004800] +17:36:12 [ 11] [ 6] [174800] +17:36:12 [ 37] [ 12] [579171748000] +17:36:12 [ 39] [ 2] [00] +17:36:12 [ 70] [ 3] [810] +17:36:12 ============================================================================ +17:36:12 Calculate Source COMM Id = 6 +17:36:12 ============================================================================ +17:36:12 + + +waiting on router queue for slot.... +17:36:13 ============================================================================ +17:36:13 Slot Id : <415> +17:36:13 Transaction Type : REQUEST +17:36:13 Received From : +17:36:13 ============================================================================ +17:36:13 FNo. Len. Field Value +17:36:13 ============================================================================ +17:36:13 [ 1] [ 4] [0800] +17:36:13 [ 7] [ 10] [0320103520] +17:36:13 [ 11] [ 6] [157496] +17:36:13 [ 70] [ 3] [301] +17:36:13 ============================================================================ +17:36:13 + + +waiting on router queue for slot.... +17:36:13 Sending to : +17:36:13 ============================================================================ +17:36:13 ============================================================================ +17:36:13 Slot Id : <415> +17:36:13 Transaction Type : RESPONSE +17:36:13 Received From : +17:36:13 ============================================================================ +17:36:13 FNo. Len. Field Value +17:36:13 ============================================================================ +17:36:13 [ 1] [ 4] [0810] +17:36:13 [ 7] [ 10] [0320103520] +17:36:13 [ 11] [ 6] [157496] +17:36:13 [ 39] [ 2] [00] +17:36:13 [ 70] [ 3] [301] +17:36:13 ============================================================================ +17:36:13 Calculate Source COMM Id = 2 +17:36:13 ============================================================================ +17:36:13 + + +waiting on router queue for slot.... +17:36:16 ============================================================================ +17:36:16 Slot Id : <398> +17:36:16 Transaction Type : REQUEST +17:36:16 Received From : +17:36:16 ============================================================================ +17:36:16 FNo. Len. Field Value +17:36:16 ============================================================================ +17:36:16 [ 1] [ 4] [0200] +17:36:16 [ 2] [ 16] [6688990105299505] +17:36:16 [ 3] [ 6] [301000] +17:36:16 [ 4] [ 12] [000000000000] +17:36:16 [ 7] [ 10] [0320173611] +17:36:16 [ 11] [ 6] [817531] +17:36:16 [ 12] [ 6] [173611] +17:36:16 [ 13] [ 4] [0320] +17:36:16 [ 15] [ 4] [0320] +17:36:16 [ 18] [ 4] [6011] +17:36:16 [ 22] [ 3] [900] +17:36:16 [ 25] [ 2] [02] +17:36:16 [ 28] [ 9] [D00000000] +17:36:16 [ 32] [ 6] [621354] +17:36:16 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:36:16 [ 37] [ 12] [507905291424] +17:36:16 [ 41] [ 8] [20001400] +17:36:16 [ 42] [ 15] [NATIVE ] +17:36:16 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +17:36:16 [ 49] [ 3] [418] +17:36:16 [ 52] [ 16] [90F8DEAC0D664C6E] +17:36:16 ============================================================================ +17:36:16 + + +waiting on router queue for slot.... +17:36:16 Sending to : +17:36:16 ============================================================================ +17:36:16 Sending to : +17:36:16 ============================================================================ +17:36:16 ============================================================================ +17:36:16 Slot Id : <398> +17:36:16 Transaction Type : REQUEST +17:36:16 Received From : +17:36:16 ============================================================================ +17:36:16 FNo. Len. Field Value +17:36:16 ============================================================================ +17:36:16 [ 1] [ 4] [0200] +17:36:16 [ 2] [ 16] [6688990105299505] +17:36:16 [ 3] [ 6] [301000] +17:36:16 [ 4] [ 12] [000000000000] +17:36:16 [ 7] [ 10] [0320173611] +17:36:16 [ 11] [ 6] [817531] +17:36:16 [ 12] [ 6] [173611] +17:36:16 [ 13] [ 4] [0320] +17:36:16 [ 15] [ 4] [0320] +17:36:16 [ 18] [ 4] [6011] +17:36:16 [ 22] [ 3] [900] +17:36:16 [ 25] [ 2] [02] +17:36:16 [ 28] [ 9] [D00000000] +17:36:16 [ 32] [ 6] [621354] +17:36:16 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:36:16 [ 37] [ 12] [507905291424] +17:36:16 [ 41] [ 8] [20001400] +17:36:16 [ 42] [ 15] [NATIVE ] +17:36:16 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +17:36:16 [ 49] [ 3] [418] +17:36:16 [ 52] [ 16] [90F8DEAC0D664C6E] +17:36:16 ============================================================================ +17:36:16 + + +waiting on router queue for slot.... +17:36:16 Sending to : +17:36:16 ============================================================================ +17:36:16 ============================================================================ +17:36:16 Slot Id : <398> +17:36:16 Transaction Type : REQUEST +17:36:16 Received From : +17:36:16 ============================================================================ +17:36:16 FNo. Len. Field Value +17:36:16 ============================================================================ +17:36:16 [ 1] [ 4] [0200] +17:36:16 [ 2] [ 16] [6688990105299505] +17:36:16 [ 3] [ 6] [301000] +17:36:16 [ 4] [ 12] [000000000000] +17:36:16 [ 7] [ 10] [0320173611] +17:36:16 [ 11] [ 6] [817531] +17:36:16 [ 12] [ 6] [173611] +17:36:16 [ 13] [ 4] [0320] +17:36:16 [ 15] [ 4] [0320] +17:36:16 [ 18] [ 4] [6011] +17:36:16 [ 22] [ 3] [900] +17:36:16 [ 25] [ 2] [02] +17:36:16 [ 28] [ 9] [D00000000] +17:36:16 [ 32] [ 6] [621354] +17:36:16 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:36:16 [ 37] [ 12] [507905291424] +17:36:16 [ 41] [ 8] [20001400] +17:36:16 [ 42] [ 15] [NATIVE ] +17:36:16 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +17:36:16 [ 49] [ 3] [418] +17:36:16 [ 52] [ 16] [4E98AB8B231DB2E3] +17:36:16 ============================================================================ +17:36:16 + + +waiting on router queue for slot.... +17:36:16 Sending to : <4> +17:36:16 ============================================================================ +17:36:16 ============================================================================ +17:36:16 Slot Id : <398> +17:36:16 Transaction Type : RESPONSE +17:36:16 Received From : +17:36:16 ============================================================================ +17:36:16 FNo. Len. Field Value +17:36:16 ============================================================================ +17:36:16 [ 1] [ 4] [0210] +17:36:16 [ 2] [ 16] [6688990105299505] +17:36:16 [ 3] [ 6] [301000] +17:36:16 [ 4] [ 12] [000000000000] +17:36:16 [ 7] [ 10] [0320173611] +17:36:16 [ 11] [ 6] [817531] +17:36:16 [ 12] [ 6] [173611] +17:36:16 [ 13] [ 4] [0320] +17:36:16 [ 15] [ 4] [0320] +17:36:16 [ 18] [ 4] [6011] +17:36:16 [ 22] [ 3] [021] +17:36:16 [ 32] [ 6] [621354] +17:36:16 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:36:16 [ 37] [ 12] [507905291424] +17:36:16 [ 38] [ 6] [173406] +17:36:16 [ 39] [ 2] [55] +17:36:16 [ 41] [ 8] [20001400] +17:36:16 [ 49] [ 3] [418] +17:36:16 ============================================================================ +17:36:16 Sending to : +17:36:16 ============================================================================ +17:36:16 + + +waiting on router queue for slot.... +17:36:17 ============================================================================ +17:36:17 Slot Id : <398> +17:36:17 Transaction Type : RESPONSE +17:36:17 Received From : +17:36:17 ============================================================================ +17:36:17 FNo. Len. Field Value +17:36:17 ============================================================================ +17:36:17 [ 1] [ 4] [0210] +17:36:17 [ 2] [ 16] [6688990105299505] +17:36:17 [ 3] [ 6] [301000] +17:36:17 [ 4] [ 12] [000000000000] +17:36:17 [ 7] [ 10] [0320173611] +17:36:17 [ 11] [ 6] [817531] +17:36:17 [ 12] [ 6] [173611] +17:36:17 [ 13] [ 4] [0320] +17:36:17 [ 15] [ 4] [0320] +17:36:17 [ 18] [ 4] [6011] +17:36:17 [ 22] [ 3] [021] +17:36:17 [ 32] [ 6] [621354] +17:36:17 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:36:17 [ 37] [ 12] [507905291424] +17:36:17 [ 38] [ 6] [173406] +17:36:17 [ 39] [ 2] [55] +17:36:17 [ 41] [ 8] [20001400] +17:36:17 [ 49] [ 3] [418] +17:36:17 ============================================================================ +17:36:17 Calculate Source COMM Id = 0 +17:36:17 ============================================================================ +17:36:17 + + +waiting on router queue for slot.... +17:36:19 ============================================================================ +17:36:19 Slot Id : <364> +17:36:19 Transaction Type : REQUEST +17:36:19 Received From : +17:36:19 ============================================================================ +17:36:19 FNo. Len. Field Value +17:36:19 ============================================================================ +17:36:19 [ 1] [ 4] [0200] +17:36:19 [ 2] [ 16] [6688990103295406] +17:36:19 [ 3] [ 6] [010000] +17:36:19 [ 4] [ 12] [000100000000] +17:36:19 [ 7] [ 10] [0320173614] +17:36:19 [ 11] [ 6] [817553] +17:36:19 [ 12] [ 6] [173614] +17:36:19 [ 13] [ 4] [0320] +17:36:19 [ 15] [ 4] [0320] +17:36:19 [ 18] [ 4] [6011] +17:36:19 [ 22] [ 3] [900] +17:36:19 [ 25] [ 2] [02] +17:36:19 [ 28] [ 9] [D00002000] +17:36:19 [ 32] [ 6] [621354] +17:36:19 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:36:19 [ 37] [ 12] [507903499689] +17:36:19 [ 41] [ 8] [06002200] +17:36:19 [ 42] [ 15] [NATIVE ] +17:36:19 [ 43] [ 40] [Beng Market Beng LAO] +17:36:19 [ 49] [ 3] [418] +17:36:19 [ 52] [ 16] [97AC363623FFF82A] +17:36:19 ============================================================================ +17:36:19 + + +waiting on router queue for slot.... +17:36:19 Sending to : +17:36:19 ============================================================================ +17:36:19 Sending to : +17:36:19 ============================================================================ +17:36:20 ============================================================================ +17:36:20 Slot Id : <364> +17:36:20 Transaction Type : REQUEST +17:36:20 Received From : +17:36:20 ============================================================================ +17:36:20 FNo. Len. Field Value +17:36:20 ============================================================================ +17:36:20 [ 1] [ 4] [0200] +17:36:20 [ 2] [ 16] [6688990103295406] +17:36:20 [ 3] [ 6] [010000] +17:36:20 [ 4] [ 12] [000100000000] +17:36:20 [ 7] [ 10] [0320173614] +17:36:20 [ 11] [ 6] [817553] +17:36:20 [ 12] [ 6] [173614] +17:36:20 [ 13] [ 4] [0320] +17:36:20 [ 15] [ 4] [0320] +17:36:20 [ 18] [ 4] [6011] +17:36:20 [ 22] [ 3] [900] +17:36:20 [ 25] [ 2] [02] +17:36:20 [ 28] [ 9] [D00002000] +17:36:20 [ 32] [ 6] [621354] +17:36:20 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:36:20 [ 37] [ 12] [507903499689] +17:36:20 [ 41] [ 8] [06002200] +17:36:20 [ 42] [ 15] [NATIVE ] +17:36:20 [ 43] [ 40] [Beng Market Beng LAO] +17:36:20 [ 49] [ 3] [418] +17:36:20 [ 52] [ 16] [97AC363623FFF82A] +17:36:20 ============================================================================ +17:36:20 + + +waiting on router queue for slot.... +17:36:20 Sending to : +17:36:20 ============================================================================ +17:36:20 ============================================================================ +17:36:20 Slot Id : <364> +17:36:20 Transaction Type : REQUEST +17:36:20 Received From : +17:36:20 ============================================================================ +17:36:20 FNo. Len. Field Value +17:36:20 ============================================================================ +17:36:20 [ 1] [ 4] [0200] +17:36:20 [ 2] [ 16] [6688990103295406] +17:36:20 [ 3] [ 6] [010000] +17:36:20 [ 4] [ 12] [000100000000] +17:36:20 [ 7] [ 10] [0320173614] +17:36:20 [ 11] [ 6] [817553] +17:36:20 [ 12] [ 6] [173614] +17:36:20 [ 13] [ 4] [0320] +17:36:20 [ 15] [ 4] [0320] +17:36:20 [ 18] [ 4] [6011] +17:36:20 [ 22] [ 3] [900] +17:36:20 [ 25] [ 2] [02] +17:36:20 [ 28] [ 9] [D00002000] +17:36:20 [ 32] [ 6] [621354] +17:36:20 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:36:20 [ 37] [ 12] [507903499689] +17:36:20 [ 41] [ 8] [06002200] +17:36:20 [ 42] [ 15] [NATIVE ] +17:36:20 [ 43] [ 40] [Beng Market Beng LAO] +17:36:20 [ 49] [ 3] [418] +17:36:20 [ 52] [ 16] [8705990523D8E38B] +17:36:20 ============================================================================ +17:36:20 + + +waiting on router queue for slot.... +17:36:20 Sending to : <4> +17:36:20 ============================================================================ +17:36:21 ============================================================================ +17:36:21 Slot Id : <364> +17:36:21 Transaction Type : RESPONSE +17:36:21 Received From : +17:36:21 ============================================================================ +17:36:21 FNo. Len. Field Value +17:36:21 ============================================================================ +17:36:21 [ 1] [ 4] [0210] +17:36:21 [ 2] [ 16] [6688990103295406] +17:36:21 [ 3] [ 6] [010000] +17:36:21 [ 4] [ 12] [000100000000] +17:36:21 [ 11] [ 6] [817553] +17:36:21 [ 12] [ 6] [173614] +17:36:21 [ 15] [ 4] [0320] +17:36:21 [ 18] [ 4] [6011] +17:36:21 [ 32] [ 6] [621354] +17:36:21 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:36:21 [ 37] [ 12] [507903499689] +17:36:21 [ 38] [ 6] [973984] +17:36:21 [ 39] [ 2] [00] +17:36:21 [ 41] [ 8] [06002200] +17:36:21 [ 49] [ 3] [418] +17:36:21 [ 54] [ 20] [0002418C000022068383] +17:36:21 ============================================================================ +17:36:21 Sending to : +17:36:21 ============================================================================ +17:36:21 + + +waiting on router queue for slot.... +17:36:22 ============================================================================ +17:36:22 Slot Id : <364> +17:36:22 Transaction Type : RESPONSE +17:36:22 Received From : +17:36:22 ============================================================================ +17:36:22 FNo. Len. Field Value +17:36:22 ============================================================================ +17:36:22 [ 1] [ 4] [0210] +17:36:22 [ 2] [ 16] [6688990103295406] +17:36:22 [ 3] [ 6] [010000] +17:36:22 [ 4] [ 12] [000100000000] +17:36:22 [ 11] [ 6] [817553] +17:36:22 [ 12] [ 6] [173614] +17:36:22 [ 15] [ 4] [0320] +17:36:22 [ 18] [ 4] [6011] +17:36:22 [ 32] [ 6] [621354] +17:36:22 [ 35] [ 37] [6688990103295406=42121231540638600000] +17:36:22 [ 37] [ 12] [507903499689] +17:36:22 [ 38] [ 6] [973984] +17:36:22 [ 39] [ 2] [00] +17:36:22 [ 41] [ 8] [06002200] +17:36:22 [ 49] [ 3] [418] +17:36:22 [ 54] [ 20] [0002418C000022068383] +17:36:22 ============================================================================ +17:36:22 Calculate Source COMM Id = 0 +17:36:22 ============================================================================ +17:36:22 + + +waiting on router queue for slot.... +17:36:22 ============================================================================ +17:36:22 Slot Id : <425> +17:36:22 Transaction Type : REQUEST +17:36:22 Received From : +17:36:22 ============================================================================ +17:36:22 FNo. Len. Field Value +17:36:22 ============================================================================ +17:36:22 [ 1] [ 4] [0200] +17:36:22 [ 2] [ 16] [6213544002113436] +17:36:22 [ 3] [ 6] [011000] +17:36:22 [ 4] [ 12] [000045000000] +17:36:22 [ 7] [ 10] [0320173643] +17:36:22 [ 11] [ 6] [209690] +17:36:22 [ 12] [ 6] [173146] +17:36:22 [ 13] [ 4] [0320] +17:36:22 [ 14] [ 4] [4912] +17:36:22 [ 15] [ 4] [0320] +17:36:22 [ 18] [ 4] [6011] +17:36:22 [ 19] [ 3] [418] +17:36:22 [ 22] [ 3] [021] +17:36:22 [ 25] [ 2] [01] +17:36:22 [ 28] [ 9] [D00002000] +17:36:22 [ 32] [ 6] [198901] +17:36:22 [ 35] [ 32] [6213544002113436=491212011343686] +17:36:22 [ 37] [ 12] [507917209690] +17:36:22 [ 41] [ 8] [19529001] +17:36:22 [ 42] [ 15] [000000041952901] +17:36:22 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:36:22 [ 49] [ 3] [418] +17:36:22 [ 52] [ 16] [450576F31FB5A6AD] +17:36:22 ============================================================================ +17:36:22 + + +waiting on router queue for slot.... +17:36:22 Sending to : +17:36:22 ============================================================================ +17:36:22 Sending to : +17:36:22 ============================================================================ +17:36:22 ============================================================================ +17:36:22 Slot Id : <409> +17:36:22 Transaction Type : REQUEST +17:36:22 Received From : +17:36:22 ============================================================================ +17:36:22 FNo. Len. Field Value +17:36:22 ============================================================================ +17:36:22 [ 1] [ 4] [0800] +17:36:22 [ 7] [ 10] [0320103412] +17:36:22 [ 11] [ 6] [056050] +17:36:22 [ 37] [ 12] [57917056050] +17:36:22 [ 70] [ 3] [301] +17:36:22 ============================================================================ +17:36:22 + + +waiting on router queue for slot.... +17:36:22 Sending to : +17:36:22 ============================================================================ +17:36:22 ============================================================================ +17:36:22 Slot Id : <409> +17:36:22 Transaction Type : RESPONSE +17:36:22 Received From : +17:36:22 ============================================================================ +17:36:22 FNo. Len. Field Value +17:36:22 ============================================================================ +17:36:22 [ 1] [ 4] [0810] +17:36:22 [ 7] [ 10] [0320103412] +17:36:22 [ 11] [ 6] [056050] +17:36:22 [ 37] [ 12] [579170560500] +17:36:22 [ 39] [ 2] [00] +17:36:22 [ 70] [ 3] [810] +17:36:22 ============================================================================ +17:36:22 Calculate Source COMM Id = 4 +17:36:22 ============================================================================ +17:36:22 + + +waiting on router queue for slot.... +17:36:23 ============================================================================ +17:36:23 Slot Id : <425> +17:36:23 Transaction Type : REQUEST +17:36:23 Received From : +17:36:23 ============================================================================ +17:36:23 FNo. Len. Field Value +17:36:23 ============================================================================ +17:36:23 [ 1] [ 4] [0200] +17:36:23 [ 2] [ 16] [6213544002113436] +17:36:23 [ 3] [ 6] [011000] +17:36:23 [ 4] [ 12] [000045000000] +17:36:23 [ 7] [ 10] [0320173643] +17:36:23 [ 11] [ 6] [209690] +17:36:23 [ 12] [ 6] [173146] +17:36:23 [ 13] [ 4] [0320] +17:36:23 [ 14] [ 4] [4912] +17:36:23 [ 15] [ 4] [0320] +17:36:23 [ 18] [ 4] [6011] +17:36:23 [ 19] [ 3] [418] +17:36:23 [ 22] [ 3] [021] +17:36:23 [ 25] [ 2] [01] +17:36:23 [ 28] [ 9] [D00002000] +17:36:23 [ 32] [ 6] [198901] +17:36:23 [ 35] [ 32] [6213544002113436=491212011343686] +17:36:23 [ 37] [ 12] [507917209690] +17:36:23 [ 41] [ 8] [19529001] +17:36:23 [ 42] [ 15] [000000041952901] +17:36:23 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:36:23 [ 49] [ 3] [418] +17:36:23 [ 52] [ 16] [450576F31FB5A6AD] +17:36:23 ============================================================================ +17:36:23 + + +waiting on router queue for slot.... +17:36:23 Sending to : +17:36:23 ============================================================================ +17:36:23 ============================================================================ +17:36:23 Slot Id : <425> +17:36:23 Transaction Type : REQUEST +17:36:23 Received From : +17:36:23 ============================================================================ +17:36:23 FNo. Len. Field Value +17:36:23 ============================================================================ +17:36:23 [ 1] [ 4] [0200] +17:36:23 [ 2] [ 16] [6213544002113436] +17:36:23 [ 3] [ 6] [011000] +17:36:23 [ 4] [ 12] [000045000000] +17:36:23 [ 7] [ 10] [0320173643] +17:36:23 [ 11] [ 6] [209690] +17:36:23 [ 12] [ 6] [173146] +17:36:23 [ 13] [ 4] [0320] +17:36:23 [ 14] [ 4] [4912] +17:36:23 [ 15] [ 4] [0320] +17:36:23 [ 18] [ 4] [6011] +17:36:23 [ 19] [ 3] [418] +17:36:23 [ 22] [ 3] [021] +17:36:23 [ 25] [ 2] [01] +17:36:23 [ 28] [ 9] [D00002000] +17:36:23 [ 32] [ 6] [198901] +17:36:23 [ 35] [ 32] [6213544002113436=491212011343686] +17:36:23 [ 37] [ 12] [507917209690] +17:36:23 [ 41] [ 8] [19529001] +17:36:23 [ 42] [ 15] [000000041952901] +17:36:23 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:36:23 [ 49] [ 3] [418] +17:36:23 [ 52] [ 16] [5E9A68F47AD4CFD7] +17:36:23 ============================================================================ +17:36:23 + + +waiting on router queue for slot.... +17:36:23 Sending to : <0> +17:36:23 ============================================================================ +17:36:23 ============================================================================ +17:36:23 Slot Id : <425> +17:36:23 Transaction Type : RESPONSE +17:36:23 Received From : +17:36:23 ============================================================================ +17:36:23 FNo. Len. Field Value +17:36:23 ============================================================================ +17:36:23 [ 1] [ 4] [0210] +17:36:23 [ 2] [ 16] [6213544002113436] +17:36:23 [ 3] [ 6] [011000] +17:36:23 [ 4] [ 12] [000045000000] +17:36:23 [ 7] [ 10] [0320173643] +17:36:23 [ 11] [ 6] [209690] +17:36:23 [ 12] [ 6] [173146] +17:36:23 [ 13] [ 4] [0320] +17:36:23 [ 15] [ 4] [0320] +17:36:23 [ 18] [ 4] [6011] +17:36:23 [ 19] [ 3] [418] +17:36:23 [ 32] [ 6] [198901] +17:36:23 [ 35] [ 32] [6213544002113436=491212011343686] +17:36:23 [ 37] [ 12] [507917209690] +17:36:23 [ 38] [ 6] [207493] +17:36:23 [ 39] [ 2] [00] +17:36:23 [ 41] [ 8] [19529001] +17:36:23 [ 49] [ 3] [418] +17:36:23 [ 54] [ 40] [1001418C0000051565831002418C000005156583] +17:36:23 ============================================================================ +17:36:23 Sending to : +17:36:23 ============================================================================ +17:36:23 + + +waiting on router queue for slot.... +17:36:25 ============================================================================ +17:36:25 Slot Id : <425> +17:36:25 Transaction Type : RESPONSE +17:36:25 Received From : +17:36:25 ============================================================================ +17:36:25 FNo. Len. Field Value +17:36:25 ============================================================================ +17:36:25 [ 1] [ 4] [0210] +17:36:25 [ 2] [ 16] [6213544002113436] +17:36:25 [ 3] [ 6] [011000] +17:36:25 [ 4] [ 12] [000045000000] +17:36:25 [ 7] [ 10] [0320173643] +17:36:25 [ 11] [ 6] [209690] +17:36:25 [ 12] [ 6] [173146] +17:36:25 [ 13] [ 4] [0320] +17:36:25 [ 15] [ 4] [0320] +17:36:25 [ 18] [ 4] [6011] +17:36:25 [ 19] [ 3] [418] +17:36:25 [ 32] [ 6] [198901] +17:36:25 [ 35] [ 32] [6213544002113436=491212011343686] +17:36:25 [ 37] [ 12] [507917209690] +17:36:25 [ 38] [ 6] [207493] +17:36:25 [ 39] [ 2] [00] +17:36:25 [ 41] [ 8] [19529001] +17:36:25 [ 49] [ 3] [418] +17:36:25 [ 54] [ 40] [1001418C0000051565831002418C000005156583] +17:36:25 ============================================================================ +17:36:25 Calculate Source COMM Id = 5 +17:36:25 ============================================================================ +17:36:25 + + +waiting on router queue for slot.... +17:36:29 ============================================================================ +17:36:29 Slot Id : <388> +17:36:29 Transaction Type : REQUEST +17:36:29 Received From : +17:36:29 ============================================================================ +17:36:29 FNo. Len. Field Value +17:36:29 ============================================================================ +17:36:29 [ 1] [ 4] [0800] +17:36:29 [ 7] [ 10] [0320103535] +17:36:29 [ 11] [ 6] [157497] +17:36:29 [ 70] [ 3] [301] +17:36:29 ============================================================================ +17:36:29 + + +waiting on router queue for slot.... +17:36:29 Sending to : +17:36:29 ============================================================================ +17:36:29 ============================================================================ +17:36:29 Slot Id : <388> +17:36:29 Transaction Type : RESPONSE +17:36:29 Received From : +17:36:29 ============================================================================ +17:36:29 FNo. Len. Field Value +17:36:29 ============================================================================ +17:36:29 [ 1] [ 4] [0810] +17:36:29 [ 7] [ 10] [0320103535] +17:36:29 [ 11] [ 6] [157497] +17:36:29 [ 39] [ 2] [00] +17:36:29 [ 70] [ 3] [301] +17:36:29 ============================================================================ +17:36:29 Calculate Source COMM Id = 2 +17:36:29 ============================================================================ +17:36:29 + + +waiting on router queue for slot.... +17:36:31 ============================================================================ +17:36:31 Slot Id : <367> +17:36:31 Transaction Type : REQUEST +17:36:31 Received From : +17:36:31 ============================================================================ +17:36:31 FNo. Len. Field Value +17:36:31 ============================================================================ +17:36:31 [ 1] [ 4] [0200] +17:36:31 [ 2] [ 16] [6688990060007604] +17:36:31 [ 3] [ 6] [011000] +17:36:31 [ 4] [ 12] [000030000000] +17:36:31 [ 7] [ 10] [0320173626] +17:36:31 [ 11] [ 6] [817595] +17:36:31 [ 12] [ 6] [173626] +17:36:31 [ 13] [ 4] [0320] +17:36:31 [ 15] [ 4] [0320] +17:36:31 [ 18] [ 4] [6011] +17:36:31 [ 22] [ 3] [900] +17:36:31 [ 25] [ 2] [02] +17:36:31 [ 28] [ 9] [D00002000] +17:36:31 [ 32] [ 6] [621354] +17:36:31 [ 35] [ 37] [6688990060007604=97111261225602500000] +17:36:31 [ 37] [ 12] [507903573902] +17:36:31 [ 41] [ 8] [09001400] +17:36:31 [ 42] [ 15] [NATIVE ] +17:36:31 [ 43] [ 40] [Done Noun Unit Xaythany LAO] +17:36:31 [ 49] [ 3] [418] +17:36:31 [ 52] [ 16] [989B6F55E8A863AA] +17:36:31 ============================================================================ +17:36:31 + + +waiting on router queue for slot.... +17:36:31 Sending to : +17:36:31 ============================================================================ +17:36:31 Sending to : +17:36:31 ============================================================================ +17:36:31 ============================================================================ +17:36:31 Slot Id : <367> +17:36:31 Transaction Type : REQUEST +17:36:31 Received From : +17:36:31 ============================================================================ +17:36:31 FNo. Len. Field Value +17:36:31 ============================================================================ +17:36:31 [ 1] [ 4] [0200] +17:36:31 [ 2] [ 16] [6688990060007604] +17:36:31 [ 3] [ 6] [011000] +17:36:31 [ 4] [ 12] [000030000000] +17:36:31 [ 7] [ 10] [0320173626] +17:36:31 [ 11] [ 6] [817595] +17:36:31 [ 12] [ 6] [173626] +17:36:31 [ 13] [ 4] [0320] +17:36:31 [ 15] [ 4] [0320] +17:36:31 [ 18] [ 4] [6011] +17:36:31 [ 22] [ 3] [900] +17:36:31 [ 25] [ 2] [02] +17:36:31 [ 28] [ 9] [D00002000] +17:36:31 [ 32] [ 6] [621354] +17:36:31 [ 35] [ 37] [6688990060007604=97111261225602500000] +17:36:31 [ 37] [ 12] [507903573902] +17:36:31 [ 41] [ 8] [09001400] +17:36:31 [ 42] [ 15] [NATIVE ] +17:36:31 [ 43] [ 40] [Done Noun Unit Xaythany LAO] +17:36:31 [ 49] [ 3] [418] +17:36:31 [ 52] [ 16] [989B6F55E8A863AA] +17:36:31 ============================================================================ +17:36:31 + + +waiting on router queue for slot.... +17:36:31 Sending to : +17:36:31 ============================================================================ +17:36:31 ============================================================================ +17:36:31 Slot Id : <367> +17:36:31 Transaction Type : REQUEST +17:36:31 Received From : +17:36:31 ============================================================================ +17:36:31 FNo. Len. Field Value +17:36:31 ============================================================================ +17:36:31 [ 1] [ 4] [0200] +17:36:31 [ 2] [ 16] [6688990060007604] +17:36:31 [ 3] [ 6] [011000] +17:36:31 [ 4] [ 12] [000030000000] +17:36:31 [ 7] [ 10] [0320173626] +17:36:31 [ 11] [ 6] [817595] +17:36:31 [ 12] [ 6] [173626] +17:36:31 [ 13] [ 4] [0320] +17:36:31 [ 15] [ 4] [0320] +17:36:31 [ 18] [ 4] [6011] +17:36:31 [ 22] [ 3] [900] +17:36:31 [ 25] [ 2] [02] +17:36:31 [ 28] [ 9] [D00002000] +17:36:31 [ 32] [ 6] [621354] +17:36:31 [ 35] [ 37] [6688990060007604=97111261225602500000] +17:36:31 [ 37] [ 12] [507903573902] +17:36:31 [ 41] [ 8] [09001400] +17:36:31 [ 42] [ 15] [NATIVE ] +17:36:31 [ 43] [ 40] [Done Noun Unit Xaythany LAO] +17:36:31 [ 49] [ 3] [418] +17:36:31 [ 52] [ 16] [17762F5F0280D152] +17:36:31 ============================================================================ +17:36:31 + + +waiting on router queue for slot.... +17:36:31 Sending to : <4> +17:36:31 ============================================================================ +17:36:32 ============================================================================ +17:36:32 Slot Id : <367> +17:36:32 Transaction Type : RESPONSE +17:36:32 Received From : +17:36:32 ============================================================================ +17:36:32 FNo. Len. Field Value +17:36:32 ============================================================================ +17:36:32 [ 1] [ 4] [0210] +17:36:32 [ 2] [ 16] [6688990060007604] +17:36:32 [ 3] [ 6] [011000] +17:36:32 [ 4] [ 12] [000030000000] +17:36:32 [ 11] [ 6] [817595] +17:36:32 [ 12] [ 6] [173626] +17:36:32 [ 15] [ 4] [0320] +17:36:32 [ 18] [ 4] [6011] +17:36:32 [ 32] [ 6] [621354] +17:36:32 [ 35] [ 37] [6688990060007604=97111261225602500000] +17:36:32 [ 37] [ 12] [507903573902] +17:36:32 [ 38] [ 6] [513399] +17:36:32 [ 39] [ 2] [00] +17:36:32 [ 41] [ 8] [09001400] +17:36:32 [ 49] [ 3] [418] +17:36:32 [ 54] [ 20] [1002418C000108003131] +17:36:32 ============================================================================ +17:36:32 Sending to : +17:36:32 ============================================================================ +17:36:32 + + +waiting on router queue for slot.... +17:36:33 ============================================================================ +17:36:33 Slot Id : <430> +17:36:33 Transaction Type : REQUEST +17:36:33 Received From : +17:36:33 ============================================================================ +17:36:33 FNo. Len. Field Value +17:36:33 ============================================================================ +17:36:33 [ 1] [ 4] [0200] +17:36:33 [ 2] [ 16] [6688990602708909] +17:36:33 [ 3] [ 6] [010000] +17:36:33 [ 4] [ 12] [000050000000] +17:36:33 [ 7] [ 10] [0320103539] +17:36:33 [ 11] [ 6] [270930] +17:36:33 [ 12] [ 6] [173539] +17:36:33 [ 13] [ 4] [0320] +17:36:33 [ 14] [ 4] [4310] +17:36:33 [ 15] [ 4] [0320] +17:36:33 [ 18] [ 4] [6011] +17:36:33 [ 19] [ 3] [418] +17:36:33 [ 22] [ 3] [021] +17:36:33 [ 25] [ 2] [01] +17:36:33 [ 28] [ 9] [D00002000] +17:36:33 [ 32] [ 6] [180893] +17:36:33 [ 35] [ 37] [6688990602708909=43100061890997600000] +17:36:33 [ 37] [ 12] [507910270930] +17:36:33 [ 41] [ 8] [0201ADD1] +17:36:33 [ 42] [ 15] [999999 ] +17:36:33 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +17:36:33 [ 49] [ 3] [418] +17:36:33 [ 52] [ 16] [40043A4A220CEAD4] +17:36:33 ============================================================================ +17:36:33 + + +waiting on router queue for slot.... +17:36:33 Sending to : +17:36:33 ============================================================================ +17:36:33 Sending to : +17:36:33 ============================================================================ +17:36:33 ============================================================================ +17:36:33 Slot Id : <430> +17:36:33 Transaction Type : REQUEST +17:36:33 Received From : +17:36:33 ============================================================================ +17:36:33 FNo. Len. Field Value +17:36:33 ============================================================================ +17:36:33 [ 1] [ 4] [0200] +17:36:33 [ 2] [ 16] [6688990602708909] +17:36:33 [ 3] [ 6] [010000] +17:36:33 [ 4] [ 12] [000050000000] +17:36:33 [ 7] [ 10] [0320103539] +17:36:33 [ 11] [ 6] [270930] +17:36:33 [ 12] [ 6] [173539] +17:36:33 [ 13] [ 4] [0320] +17:36:33 [ 14] [ 4] [4310] +17:36:33 [ 15] [ 4] [0320] +17:36:33 [ 18] [ 4] [6011] +17:36:33 [ 19] [ 3] [418] +17:36:33 [ 22] [ 3] [021] +17:36:33 [ 25] [ 2] [01] +17:36:33 [ 28] [ 9] [D00002000] +17:36:33 [ 32] [ 6] [180893] +17:36:33 [ 35] [ 37] [6688990602708909=43100061890997600000] +17:36:33 [ 37] [ 12] [507910270930] +17:36:33 [ 41] [ 8] [0201ADD1] +17:36:33 [ 42] [ 15] [999999 ] +17:36:33 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +17:36:33 [ 49] [ 3] [418] +17:36:33 [ 52] [ 16] [40043A4A220CEAD4] +17:36:33 ============================================================================ +17:36:33 + + +waiting on router queue for slot.... +17:36:33 Sending to : +17:36:33 ============================================================================ +17:36:33 ============================================================================ +17:36:33 Slot Id : <430> +17:36:33 Transaction Type : REQUEST +17:36:33 Received From : +17:36:33 ============================================================================ +17:36:33 FNo. Len. Field Value +17:36:33 ============================================================================ +17:36:33 [ 1] [ 4] [0200] +17:36:33 [ 2] [ 16] [6688990602708909] +17:36:33 [ 3] [ 6] [010000] +17:36:33 [ 4] [ 12] [000050000000] +17:36:33 [ 7] [ 10] [0320103539] +17:36:33 [ 11] [ 6] [270930] +17:36:33 [ 12] [ 6] [173539] +17:36:33 [ 13] [ 4] [0320] +17:36:33 [ 14] [ 4] [4310] +17:36:33 [ 15] [ 4] [0320] +17:36:33 [ 18] [ 4] [6011] +17:36:33 [ 19] [ 3] [418] +17:36:33 [ 22] [ 3] [021] +17:36:33 [ 25] [ 2] [01] +17:36:33 [ 28] [ 9] [D00002000] +17:36:33 [ 32] [ 6] [180893] +17:36:33 [ 35] [ 37] [6688990602708909=43100061890997600000] +17:36:33 [ 37] [ 12] [507910270930] +17:36:33 [ 41] [ 8] [0201ADD1] +17:36:33 [ 42] [ 15] [999999 ] +17:36:33 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +17:36:33 [ 49] [ 3] [418] +17:36:33 [ 52] [ 16] [D39AD6E182A32975] +17:36:33 ============================================================================ +17:36:33 + + +waiting on router queue for slot.... +17:36:33 Sending to : <0> +17:36:33 ============================================================================ +17:36:33 ============================================================================ +17:36:33 Slot Id : <430> +17:36:33 Transaction Type : RESPONSE +17:36:33 Received From : +17:36:33 ============================================================================ +17:36:33 FNo. Len. Field Value +17:36:33 ============================================================================ +17:36:33 [ 1] [ 4] [0210] +17:36:33 [ 2] [ 16] [6688990602708909] +17:36:33 [ 3] [ 6] [010000] +17:36:33 [ 4] [ 12] [000050000000] +17:36:33 [ 7] [ 10] [0320103539] +17:36:33 [ 11] [ 6] [270930] +17:36:33 [ 12] [ 6] [173539] +17:36:33 [ 13] [ 4] [0320] +17:36:33 [ 15] [ 4] [0320] +17:36:33 [ 18] [ 4] [6011] +17:36:33 [ 19] [ 3] [418] +17:36:33 [ 22] [ 3] [021] +17:36:33 [ 32] [ 6] [180893] +17:36:33 [ 35] [ 37] [6688990602708909=43100061890997600000] +17:36:33 [ 37] [ 12] [507910270930] +17:36:33 [ 39] [ 2] [14] +17:36:33 [ 41] [ 8] [0201ADD1] +17:36:33 [ 49] [ 3] [418] +17:36:33 ============================================================================ +17:36:33 Sending to : +17:36:33 ============================================================================ +17:36:33 + + +waiting on router queue for slot.... +17:36:34 ============================================================================ +17:36:34 Slot Id : <367> +17:36:34 Transaction Type : RESPONSE +17:36:34 Received From : +17:36:34 ============================================================================ +17:36:34 FNo. Len. Field Value +17:36:34 ============================================================================ +17:36:34 [ 1] [ 4] [0210] +17:36:34 [ 2] [ 16] [6688990060007604] +17:36:34 [ 3] [ 6] [011000] +17:36:34 [ 4] [ 12] [000030000000] +17:36:34 [ 11] [ 6] [817595] +17:36:34 [ 12] [ 6] [173626] +17:36:34 [ 15] [ 4] [0320] +17:36:34 [ 18] [ 4] [6011] +17:36:34 [ 32] [ 6] [621354] +17:36:34 [ 35] [ 37] [6688990060007604=97111261225602500000] +17:36:34 [ 37] [ 12] [507903573902] +17:36:34 [ 38] [ 6] [513399] +17:36:34 [ 39] [ 2] [00] +17:36:34 [ 41] [ 8] [09001400] +17:36:34 [ 49] [ 3] [418] +17:36:34 [ 54] [ 20] [1002418C000108003131] +17:36:34 ============================================================================ +17:36:34 Calculate Source COMM Id = 0 +17:36:34 ============================================================================ +17:36:34 + + +waiting on router queue for slot.... +17:36:35 ============================================================================ +17:36:35 Slot Id : <430> +17:36:35 Transaction Type : RESPONSE +17:36:35 Received From : +17:36:35 ============================================================================ +17:36:35 FNo. Len. Field Value +17:36:35 ============================================================================ +17:36:35 [ 1] [ 4] [0210] +17:36:35 [ 2] [ 16] [6688990602708909] +17:36:35 [ 3] [ 6] [010000] +17:36:35 [ 4] [ 12] [000050000000] +17:36:35 [ 7] [ 10] [0320103539] +17:36:35 [ 11] [ 6] [270930] +17:36:35 [ 12] [ 6] [173539] +17:36:35 [ 13] [ 4] [0320] +17:36:35 [ 15] [ 4] [0320] +17:36:35 [ 18] [ 4] [6011] +17:36:35 [ 19] [ 3] [418] +17:36:35 [ 22] [ 3] [021] +17:36:35 [ 32] [ 6] [180893] +17:36:35 [ 35] [ 37] [6688990602708909=43100061890997600000] +17:36:35 [ 37] [ 12] [507910270930] +17:36:35 [ 39] [ 2] [14] +17:36:35 [ 41] [ 8] [0201ADD1] +17:36:35 [ 49] [ 3] [418] +17:36:35 ============================================================================ +17:36:35 Calculate Source COMM Id = 2 +17:36:35 ============================================================================ +17:36:35 + + +waiting on router queue for slot.... +17:36:43 ============================================================================ +17:36:43 Slot Id : <441> +17:36:43 Transaction Type : REQUEST +17:36:43 Received From : +17:36:43 ============================================================================ +17:36:43 FNo. Len. Field Value +17:36:43 ============================================================================ +17:36:43 [ 1] [ 4] [0800] +17:36:43 [ 2] [ 5] [02531] +17:36:43 [ 3] [ 6] [579178] +17:36:43 [ 7] [ 10] [0320103643] +17:36:43 [ 11] [ 6] [807434] +17:36:43 [ 15] [ 10] [0320103643] +17:36:43 [ 37] [ 11] [57917807434] +17:36:43 [ 70] [ 3] [001] +17:36:43 ============================================================================ +17:36:43 + + +waiting on router queue for slot.... +17:36:43 ============================================================================ +17:36:43 Slot Id : <441> +17:36:43 Transaction Type : RESPONSE +17:36:43 Received From : +17:36:43 ============================================================================ +17:36:43 FNo. Len. Field Value +17:36:43 ============================================================================ +17:36:43 [ 1] [ 4] [0810] +17:36:43 [ 7] [ 10] [0320103643] +17:36:43 [ 11] [ 6] [807434] +17:36:43 [ 15] [ 4] [0320] +17:36:43 [ 37] [ 12] [57917807434] +17:36:43 [ 39] [ 2] [00] +17:36:43 [ 70] [ 3] [001] +17:36:43 ============================================================================ +17:36:43 Sending to : +17:36:43 ============================================================================ +17:36:43 + + +waiting on router queue for slot.... +17:36:43 ============================================================================ +17:36:43 Slot Id : <403> +17:36:43 Transaction Type : REQUEST +17:36:43 Received From : +17:36:43 ============================================================================ +17:36:43 FNo. Len. Field Value +17:36:43 ============================================================================ +17:36:43 [ 1] [ 4] [0200] +17:36:43 [ 2] [ 16] [1888880000031658] +17:36:43 [ 3] [ 6] [010000] +17:36:43 [ 4] [ 12] [000020000000] +17:36:43 [ 7] [ 10] [0320173638] +17:36:43 [ 11] [ 6] [817653] +17:36:43 [ 12] [ 6] [173638] +17:36:43 [ 13] [ 4] [0320] +17:36:43 [ 15] [ 4] [0320] +17:36:43 [ 18] [ 4] [6011] +17:36:43 [ 22] [ 3] [900] +17:36:43 [ 25] [ 2] [02] +17:36:43 [ 28] [ 9] [D00002000] +17:36:43 [ 32] [ 6] [621354] +17:36:43 [ 35] [ 32] [1888880000031658=000010100000744] +17:36:43 [ 37] [ 12] [507904755556] +17:36:43 [ 41] [ 8] [07001100] +17:36:43 [ 42] [ 15] [NATIVE ] +17:36:43 [ 43] [ 40] [Industry Market Namtar LAO] +17:36:43 [ 49] [ 3] [418] +17:36:43 [ 52] [ 16] [6CC44D2A54C359AD] +17:36:43 ============================================================================ +17:36:43 + + +waiting on router queue for slot.... +17:36:43 Sending to : +17:36:43 ============================================================================ +17:36:43 Sending to : +17:36:43 ============================================================================ +17:36:44 ============================================================================ +17:36:44 Slot Id : <403> +17:36:44 Transaction Type : REQUEST +17:36:44 Received From : +17:36:44 ============================================================================ +17:36:44 FNo. Len. Field Value +17:36:44 ============================================================================ +17:36:44 [ 1] [ 4] [0200] +17:36:44 [ 2] [ 16] [1888880000031658] +17:36:44 [ 3] [ 6] [010000] +17:36:44 [ 4] [ 12] [000020000000] +17:36:44 [ 7] [ 10] [0320173638] +17:36:44 [ 11] [ 6] [817653] +17:36:44 [ 12] [ 6] [173638] +17:36:44 [ 13] [ 4] [0320] +17:36:44 [ 15] [ 4] [0320] +17:36:44 [ 18] [ 4] [6011] +17:36:44 [ 22] [ 3] [900] +17:36:44 [ 25] [ 2] [02] +17:36:44 [ 28] [ 9] [D00002000] +17:36:44 [ 32] [ 6] [621354] +17:36:44 [ 35] [ 32] [1888880000031658=000010100000744] +17:36:44 [ 37] [ 12] [507904755556] +17:36:44 [ 41] [ 8] [07001100] +17:36:44 [ 42] [ 15] [NATIVE ] +17:36:44 [ 43] [ 40] [Industry Market Namtar LAO] +17:36:44 [ 49] [ 3] [418] +17:36:44 [ 52] [ 16] [6CC44D2A54C359AD] +17:36:44 ============================================================================ +17:36:44 + + +waiting on router queue for slot.... +17:36:44 Sending to : +17:36:44 ============================================================================ +17:36:44 ============================================================================ +17:36:44 Slot Id : <403> +17:36:44 Transaction Type : REQUEST +17:36:44 Received From : +17:36:44 ============================================================================ +17:36:44 FNo. Len. Field Value +17:36:44 ============================================================================ +17:36:44 [ 1] [ 4] [0200] +17:36:44 [ 2] [ 16] [1888880000031658] +17:36:44 [ 3] [ 6] [010000] +17:36:44 [ 4] [ 12] [000020000000] +17:36:44 [ 7] [ 10] [0320173638] +17:36:44 [ 11] [ 6] [817653] +17:36:44 [ 12] [ 6] [173638] +17:36:44 [ 13] [ 4] [0320] +17:36:44 [ 15] [ 4] [0320] +17:36:44 [ 18] [ 4] [6011] +17:36:44 [ 22] [ 3] [900] +17:36:44 [ 25] [ 2] [02] +17:36:44 [ 28] [ 9] [D00002000] +17:36:44 [ 32] [ 6] [621354] +17:36:44 [ 35] [ 32] [1888880000031658=000010100000744] +17:36:44 [ 37] [ 12] [507904755556] +17:36:44 [ 41] [ 8] [07001100] +17:36:44 [ 42] [ 15] [NATIVE ] +17:36:44 [ 43] [ 40] [Industry Market Namtar LAO] +17:36:44 [ 49] [ 3] [418] +17:36:44 [ 52] [ 16] [DE15B8F38CE6C27E] +17:36:44 ============================================================================ +17:36:44 + + +waiting on router queue for slot.... +17:36:44 Sending to : <5> +17:36:44 ============================================================================ +17:36:49 ============================================================================ +17:36:49 Slot Id : <437> +17:36:49 Transaction Type : REQUEST +17:36:49 Received From : +17:36:49 ============================================================================ +17:36:49 FNo. Len. Field Value +17:36:49 ============================================================================ +17:36:49 [ 1] [ 4] [0800] +17:36:49 [ 7] [ 10] [0320103556] +17:36:49 [ 11] [ 6] [157498] +17:36:49 [ 70] [ 3] [301] +17:36:49 ============================================================================ +17:36:49 + + +waiting on router queue for slot.... +17:36:49 Sending to : +17:36:49 ============================================================================ +17:36:49 ============================================================================ +17:36:49 Slot Id : <437> +17:36:49 Transaction Type : RESPONSE +17:36:49 Received From : +17:36:49 ============================================================================ +17:36:49 FNo. Len. Field Value +17:36:49 ============================================================================ +17:36:49 [ 1] [ 4] [0810] +17:36:49 [ 7] [ 10] [0320103556] +17:36:49 [ 11] [ 6] [157498] +17:36:49 [ 39] [ 2] [00] +17:36:49 [ 70] [ 3] [301] +17:36:49 ============================================================================ +17:36:49 Calculate Source COMM Id = 2 +17:36:49 ============================================================================ +17:36:49 + + +waiting on router queue for slot.... +17:36:51 ============================================================================ +17:36:51 Slot Id : <403> +17:36:51 Transaction Type : RESPONSE +17:36:51 Received From : +17:36:51 ============================================================================ +17:36:51 FNo. Len. Field Value +17:36:51 ============================================================================ +17:36:51 [ 1] [ 4] [0210] +17:36:51 [ 2] [ 16] [1888880000031658] +17:36:51 [ 3] [ 6] [010000] +17:36:51 [ 4] [ 12] [000020000000] +17:36:51 [ 7] [ 10] [0320173638] +17:36:51 [ 11] [ 6] [817653] +17:36:51 [ 12] [ 6] [173638] +17:36:51 [ 13] [ 4] [0320] +17:36:51 [ 15] [ 4] [0320] +17:36:51 [ 18] [ 4] [6011] +17:36:51 [ 19] [ 3] [418] +17:36:51 [ 32] [ 6] [621354] +17:36:51 [ 37] [ 12] [507904755556] +17:36:51 [ 38] [ 6] [996357] +17:36:51 [ 39] [ 2] [00] +17:36:51 [ 41] [ 8] [07001100] +17:36:51 [ 49] [ 3] [418] +17:36:51 [ 54] [ 0] [] +17:36:51 ============================================================================ +17:36:51 Sending to : +17:36:51 ============================================================================ +17:36:51 + + +waiting on router queue for slot.... +17:36:53 ============================================================================ +17:36:53 Slot Id : <403> +17:36:53 Transaction Type : RESPONSE +17:36:53 Received From : +17:36:53 ============================================================================ +17:36:53 FNo. Len. Field Value +17:36:53 ============================================================================ +17:36:53 [ 1] [ 4] [0210] +17:36:53 [ 2] [ 16] [1888880000031658] +17:36:53 [ 3] [ 6] [010000] +17:36:53 [ 4] [ 12] [000020000000] +17:36:53 [ 7] [ 10] [0320173638] +17:36:53 [ 11] [ 6] [817653] +17:36:53 [ 12] [ 6] [173638] +17:36:53 [ 13] [ 4] [0320] +17:36:53 [ 15] [ 4] [0320] +17:36:53 [ 18] [ 4] [6011] +17:36:53 [ 19] [ 3] [418] +17:36:53 [ 32] [ 6] [621354] +17:36:53 [ 37] [ 12] [507904755556] +17:36:53 [ 38] [ 6] [996357] +17:36:53 [ 39] [ 2] [00] +17:36:53 [ 41] [ 8] [07001100] +17:36:53 [ 49] [ 3] [418] +17:36:53 [ 54] [ 0] [] +17:36:53 ============================================================================ +17:36:53 Calculate Source COMM Id = 0 +17:36:53 ============================================================================ +17:36:53 + + +waiting on router queue for slot.... +17:36:54 ============================================================================ +17:36:54 Slot Id : <402> +17:36:54 Transaction Type : REQUEST +17:36:54 Received From : +17:36:54 ============================================================================ +17:36:54 FNo. Len. Field Value +17:36:54 ============================================================================ +17:36:54 [ 1] [ 4] [0200] +17:36:54 [ 2] [ 16] [6688990105299505] +17:36:54 [ 3] [ 6] [301000] +17:36:54 [ 4] [ 12] [000000000000] +17:36:54 [ 7] [ 10] [0320173649] +17:36:54 [ 11] [ 6] [817706] +17:36:54 [ 12] [ 6] [173649] +17:36:54 [ 13] [ 4] [0320] +17:36:54 [ 15] [ 4] [0320] +17:36:54 [ 18] [ 4] [6011] +17:36:54 [ 22] [ 3] [900] +17:36:54 [ 25] [ 2] [02] +17:36:54 [ 28] [ 9] [D00000000] +17:36:54 [ 32] [ 6] [621354] +17:36:54 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:36:54 [ 37] [ 12] [507905291425] +17:36:54 [ 41] [ 8] [20001400] +17:36:54 [ 42] [ 15] [NATIVE ] +17:36:54 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +17:36:54 [ 49] [ 3] [418] +17:36:54 [ 52] [ 16] [BA0636B57457F52C] +17:36:54 ============================================================================ +17:36:54 + + +waiting on router queue for slot.... +17:36:54 Sending to : +17:36:54 ============================================================================ +17:36:54 Sending to : +17:36:54 ============================================================================ +17:36:55 ============================================================================ +17:36:55 Slot Id : <402> +17:36:55 Transaction Type : REQUEST +17:36:55 Received From : +17:36:55 ============================================================================ +17:36:55 FNo. Len. Field Value +17:36:55 ============================================================================ +17:36:55 [ 1] [ 4] [0200] +17:36:55 [ 2] [ 16] [6688990105299505] +17:36:55 [ 3] [ 6] [301000] +17:36:55 [ 4] [ 12] [000000000000] +17:36:55 [ 7] [ 10] [0320173649] +17:36:55 [ 11] [ 6] [817706] +17:36:55 [ 12] [ 6] [173649] +17:36:55 [ 13] [ 4] [0320] +17:36:55 [ 15] [ 4] [0320] +17:36:55 [ 18] [ 4] [6011] +17:36:55 [ 22] [ 3] [900] +17:36:55 [ 25] [ 2] [02] +17:36:55 [ 28] [ 9] [D00000000] +17:36:55 [ 32] [ 6] [621354] +17:36:55 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:36:55 [ 37] [ 12] [507905291425] +17:36:55 [ 41] [ 8] [20001400] +17:36:55 [ 42] [ 15] [NATIVE ] +17:36:55 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +17:36:55 [ 49] [ 3] [418] +17:36:55 [ 52] [ 16] [BA0636B57457F52C] +17:36:55 ============================================================================ +17:36:55 + + +waiting on router queue for slot.... +17:36:55 Sending to : +17:36:55 ============================================================================ +17:36:55 ============================================================================ +17:36:55 Slot Id : <402> +17:36:55 Transaction Type : REQUEST +17:36:55 Received From : +17:36:55 ============================================================================ +17:36:55 FNo. Len. Field Value +17:36:55 ============================================================================ +17:36:55 [ 1] [ 4] [0200] +17:36:55 [ 2] [ 16] [6688990105299505] +17:36:55 [ 3] [ 6] [301000] +17:36:55 [ 4] [ 12] [000000000000] +17:36:55 [ 7] [ 10] [0320173649] +17:36:55 [ 11] [ 6] [817706] +17:36:55 [ 12] [ 6] [173649] +17:36:55 [ 13] [ 4] [0320] +17:36:55 [ 15] [ 4] [0320] +17:36:55 [ 18] [ 4] [6011] +17:36:55 [ 22] [ 3] [900] +17:36:55 [ 25] [ 2] [02] +17:36:55 [ 28] [ 9] [D00000000] +17:36:55 [ 32] [ 6] [621354] +17:36:55 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:36:55 [ 37] [ 12] [507905291425] +17:36:55 [ 41] [ 8] [20001400] +17:36:55 [ 42] [ 15] [NATIVE ] +17:36:55 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +17:36:55 [ 49] [ 3] [418] +17:36:55 [ 52] [ 16] [BB1916B590F99D47] +17:36:55 ============================================================================ +17:36:55 + + +waiting on router queue for slot.... +17:36:55 Sending to : <4> +17:36:55 ============================================================================ +17:36:56 ============================================================================ +17:36:56 Slot Id : <402> +17:36:56 Transaction Type : RESPONSE +17:36:56 Received From : +17:36:56 ============================================================================ +17:36:56 FNo. Len. Field Value +17:36:56 ============================================================================ +17:36:56 [ 1] [ 4] [0210] +17:36:56 [ 2] [ 16] [6688990105299505] +17:36:56 [ 3] [ 6] [301000] +17:36:56 [ 4] [ 12] [000000000000] +17:36:56 [ 7] [ 10] [0320173649] +17:36:56 [ 11] [ 6] [817706] +17:36:56 [ 12] [ 6] [173649] +17:36:56 [ 13] [ 4] [0320] +17:36:56 [ 15] [ 4] [0320] +17:36:56 [ 18] [ 4] [6011] +17:36:56 [ 22] [ 3] [021] +17:36:56 [ 32] [ 6] [621354] +17:36:56 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:36:56 [ 37] [ 12] [507905291425] +17:36:56 [ 38] [ 6] [173445] +17:36:56 [ 39] [ 2] [75] +17:36:56 [ 41] [ 8] [20001400] +17:36:56 [ 49] [ 3] [418] +17:36:56 ============================================================================ +17:36:56 Sending to : +17:36:56 ============================================================================ +17:36:56 + + +waiting on router queue for slot.... +17:36:57 ============================================================================ +17:36:57 Slot Id : <402> +17:36:57 Transaction Type : RESPONSE +17:36:57 Received From : +17:36:57 ============================================================================ +17:36:57 FNo. Len. Field Value +17:36:57 ============================================================================ +17:36:57 [ 1] [ 4] [0210] +17:36:57 [ 2] [ 16] [6688990105299505] +17:36:57 [ 3] [ 6] [301000] +17:36:57 [ 4] [ 12] [000000000000] +17:36:57 [ 7] [ 10] [0320173649] +17:36:57 [ 11] [ 6] [817706] +17:36:57 [ 12] [ 6] [173649] +17:36:57 [ 13] [ 4] [0320] +17:36:57 [ 15] [ 4] [0320] +17:36:57 [ 18] [ 4] [6011] +17:36:57 [ 22] [ 3] [021] +17:36:57 [ 32] [ 6] [621354] +17:36:57 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:36:57 [ 37] [ 12] [507905291425] +17:36:57 [ 38] [ 6] [173445] +17:36:57 [ 39] [ 2] [75] +17:36:57 [ 41] [ 8] [20001400] +17:36:57 [ 49] [ 3] [418] +17:36:57 ============================================================================ +17:36:57 Calculate Source COMM Id = 0 +17:36:57 ============================================================================ +17:36:57 + + +waiting on router queue for slot.... +17:37:00 ============================================================================ +17:37:00 Slot Id : <362> +17:37:00 Transaction Type : REQUEST +17:37:00 Received From : +17:37:00 ============================================================================ +17:37:00 FNo. Len. Field Value +17:37:00 ============================================================================ +17:37:00 [ 1] [ 4] [0800] +17:37:00 [ 7] [ 10] [0320103607] +17:37:00 [ 11] [ 6] [157499] +17:37:00 [ 70] [ 3] [301] +17:37:00 ============================================================================ +17:37:00 + + +waiting on router queue for slot.... +17:37:00 Sending to : +17:37:00 ============================================================================ +17:37:00 ============================================================================ +17:37:00 Slot Id : <362> +17:37:00 Transaction Type : RESPONSE +17:37:00 Received From : +17:37:00 ============================================================================ +17:37:00 FNo. Len. Field Value +17:37:00 ============================================================================ +17:37:00 [ 1] [ 4] [0810] +17:37:00 [ 7] [ 10] [0320103607] +17:37:00 [ 11] [ 6] [157499] +17:37:00 [ 39] [ 2] [00] +17:37:00 [ 70] [ 3] [301] +17:37:00 ============================================================================ +17:37:00 Calculate Source COMM Id = 2 +17:37:00 ============================================================================ +17:37:00 + + +waiting on router queue for slot.... +17:37:11 ============================================================================ +17:37:11 Slot Id : <385> +17:37:11 Transaction Type : REQUEST +17:37:11 Received From : +17:37:11 ============================================================================ +17:37:11 FNo. Len. Field Value +17:37:11 ============================================================================ +17:37:11 [ 1] [ 4] [0800] +17:37:11 [ 7] [ 10] [0320103618] +17:37:11 [ 11] [ 6] [157500] +17:37:11 [ 70] [ 3] [301] +17:37:11 ============================================================================ +17:37:11 + + +waiting on router queue for slot.... +17:37:11 Sending to : +17:37:11 ============================================================================ +17:37:11 ============================================================================ +17:37:11 Slot Id : <385> +17:37:11 Transaction Type : RESPONSE +17:37:11 Received From : +17:37:11 ============================================================================ +17:37:11 FNo. Len. Field Value +17:37:11 ============================================================================ +17:37:11 [ 1] [ 4] [0810] +17:37:11 [ 7] [ 10] [0320103618] +17:37:11 [ 11] [ 6] [157500] +17:37:11 [ 39] [ 2] [00] +17:37:11 [ 70] [ 3] [301] +17:37:11 ============================================================================ +17:37:11 Calculate Source COMM Id = 2 +17:37:11 ============================================================================ +17:37:11 + + +waiting on router queue for slot.... +17:37:13 ============================================================================ +17:37:13 Slot Id : <408> +17:37:13 Transaction Type : REQUEST +17:37:13 Received From : +17:37:13 ============================================================================ +17:37:13 FNo. Len. Field Value +17:37:13 ============================================================================ +17:37:13 [ 1] [ 4] [0200] +17:37:13 [ 2] [ 16] [6688990040119396] +17:37:13 [ 3] [ 6] [010000] +17:37:13 [ 4] [ 12] [000010000000] +17:37:13 [ 7] [ 10] [0320103620] +17:37:13 [ 11] [ 6] [270932] +17:37:13 [ 12] [ 6] [173620] +17:37:13 [ 13] [ 4] [0320] +17:37:13 [ 14] [ 4] [9803] +17:37:13 [ 15] [ 4] [0320] +17:37:13 [ 18] [ 4] [6011] +17:37:13 [ 19] [ 3] [418] +17:37:13 [ 22] [ 3] [021] +17:37:13 [ 25] [ 2] [01] +17:37:13 [ 28] [ 9] [D00002000] +17:37:13 [ 32] [ 6] [180893] +17:37:13 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:37:13 [ 37] [ 12] [507910270932] +17:37:13 [ 41] [ 8] [0361BLTB] +17:37:13 [ 42] [ 15] [999999 ] +17:37:13 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +17:37:13 [ 49] [ 3] [418] +17:37:13 [ 52] [ 16] [DCEA30E4C442F722] +17:37:13 ============================================================================ +17:37:13 + + +waiting on router queue for slot.... +17:37:13 Sending to : +17:37:13 ============================================================================ +17:37:13 Sending to : +17:37:13 ============================================================================ +17:37:13 ============================================================================ +17:37:13 Slot Id : <408> +17:37:13 Transaction Type : REQUEST +17:37:13 Received From : +17:37:13 ============================================================================ +17:37:13 FNo. Len. Field Value +17:37:13 ============================================================================ +17:37:13 [ 1] [ 4] [0200] +17:37:13 [ 2] [ 16] [6688990040119396] +17:37:13 [ 3] [ 6] [010000] +17:37:13 [ 4] [ 12] [000010000000] +17:37:13 [ 7] [ 10] [0320103620] +17:37:13 [ 11] [ 6] [270932] +17:37:13 [ 12] [ 6] [173620] +17:37:13 [ 13] [ 4] [0320] +17:37:13 [ 14] [ 4] [9803] +17:37:13 [ 15] [ 4] [0320] +17:37:13 [ 18] [ 4] [6011] +17:37:13 [ 19] [ 3] [418] +17:37:13 [ 22] [ 3] [021] +17:37:13 [ 25] [ 2] [01] +17:37:13 [ 28] [ 9] [D00002000] +17:37:13 [ 32] [ 6] [180893] +17:37:13 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:37:13 [ 37] [ 12] [507910270932] +17:37:13 [ 41] [ 8] [0361BLTB] +17:37:13 [ 42] [ 15] [999999 ] +17:37:13 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +17:37:13 [ 49] [ 3] [418] +17:37:13 [ 52] [ 16] [DCEA30E4C442F722] +17:37:13 ============================================================================ +17:37:13 + + +waiting on router queue for slot.... +17:37:13 Sending to : +17:37:13 ============================================================================ +17:37:13 ============================================================================ +17:37:13 Slot Id : <408> +17:37:13 Transaction Type : REQUEST +17:37:13 Received From : +17:37:13 ============================================================================ +17:37:13 FNo. Len. Field Value +17:37:13 ============================================================================ +17:37:13 [ 1] [ 4] [0200] +17:37:13 [ 2] [ 16] [6688990040119396] +17:37:13 [ 3] [ 6] [010000] +17:37:13 [ 4] [ 12] [000010000000] +17:37:13 [ 7] [ 10] [0320103620] +17:37:13 [ 11] [ 6] [270932] +17:37:13 [ 12] [ 6] [173620] +17:37:13 [ 13] [ 4] [0320] +17:37:13 [ 14] [ 4] [9803] +17:37:13 [ 15] [ 4] [0320] +17:37:13 [ 18] [ 4] [6011] +17:37:13 [ 19] [ 3] [418] +17:37:13 [ 22] [ 3] [021] +17:37:13 [ 25] [ 2] [01] +17:37:13 [ 28] [ 9] [D00002000] +17:37:13 [ 32] [ 6] [180893] +17:37:13 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:37:13 [ 37] [ 12] [507910270932] +17:37:13 [ 41] [ 8] [0361BLTB] +17:37:13 [ 42] [ 15] [999999 ] +17:37:13 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +17:37:13 [ 49] [ 3] [418] +17:37:13 [ 52] [ 16] [A7E7F766A5506711] +17:37:13 ============================================================================ +17:37:13 + + +waiting on router queue for slot.... +17:37:13 Sending to : <0> +17:37:13 ============================================================================ +17:37:14 ============================================================================ +17:37:14 Slot Id : <408> +17:37:14 Transaction Type : RESPONSE +17:37:14 Received From : +17:37:14 ============================================================================ +17:37:14 FNo. Len. Field Value +17:37:14 ============================================================================ +17:37:14 [ 1] [ 4] [0210] +17:37:14 [ 2] [ 16] [6688990040119396] +17:37:14 [ 3] [ 6] [010000] +17:37:14 [ 4] [ 12] [000010000000] +17:37:14 [ 7] [ 10] [0320103620] +17:37:14 [ 11] [ 6] [270932] +17:37:14 [ 12] [ 6] [173620] +17:37:14 [ 13] [ 4] [0320] +17:37:14 [ 15] [ 4] [0320] +17:37:14 [ 18] [ 4] [6011] +17:37:14 [ 19] [ 3] [418] +17:37:14 [ 22] [ 3] [021] +17:37:14 [ 32] [ 6] [180893] +17:37:14 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:37:14 [ 37] [ 12] [507910270932] +17:37:14 [ 39] [ 2] [14] +17:37:14 [ 41] [ 8] [0361BLTB] +17:37:14 [ 49] [ 3] [418] +17:37:14 ============================================================================ +17:37:14 Sending to : +17:37:14 ============================================================================ +17:37:14 + + +waiting on router queue for slot.... +17:37:15 ============================================================================ +17:37:15 Slot Id : <408> +17:37:15 Transaction Type : RESPONSE +17:37:15 Received From : +17:37:15 ============================================================================ +17:37:15 FNo. Len. Field Value +17:37:15 ============================================================================ +17:37:15 [ 1] [ 4] [0210] +17:37:15 [ 2] [ 16] [6688990040119396] +17:37:15 [ 3] [ 6] [010000] +17:37:15 [ 4] [ 12] [000010000000] +17:37:15 [ 7] [ 10] [0320103620] +17:37:15 [ 11] [ 6] [270932] +17:37:15 [ 12] [ 6] [173620] +17:37:15 [ 13] [ 4] [0320] +17:37:15 [ 15] [ 4] [0320] +17:37:15 [ 18] [ 4] [6011] +17:37:15 [ 19] [ 3] [418] +17:37:15 [ 22] [ 3] [021] +17:37:15 [ 32] [ 6] [180893] +17:37:15 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:37:15 [ 37] [ 12] [507910270932] +17:37:15 [ 39] [ 2] [14] +17:37:15 [ 41] [ 8] [0361BLTB] +17:37:15 [ 49] [ 3] [418] +17:37:15 ============================================================================ +17:37:15 Calculate Source COMM Id = 2 +17:37:15 ============================================================================ +17:37:15 + + +waiting on router queue for slot.... +17:37:18 ============================================================================ +17:37:18 Slot Id : <375> +17:37:18 Transaction Type : REQUEST +17:37:18 Received From : +17:37:18 ============================================================================ +17:37:18 FNo. Len. Field Value +17:37:18 ============================================================================ +17:37:18 [ 1] [ 4] [0800] +17:37:18 [ 7] [ 10] [0321004905] +17:37:18 [ 11] [ 6] [174905] +17:37:18 [ 37] [ 12] [57917174905] +17:37:18 [ 70] [ 3] [301] +17:37:18 ============================================================================ +17:37:18 + + +waiting on router queue for slot.... +17:37:18 Sending to : +17:37:18 ============================================================================ +17:37:18 ============================================================================ +17:37:18 Slot Id : <375> +17:37:18 Transaction Type : RESPONSE +17:37:18 Received From : +17:37:18 ============================================================================ +17:37:18 FNo. Len. Field Value +17:37:18 ============================================================================ +17:37:18 [ 1] [ 4] [0810] +17:37:18 [ 7] [ 10] [0321004905] +17:37:18 [ 11] [ 6] [174905] +17:37:18 [ 37] [ 12] [579171749050] +17:37:18 [ 39] [ 2] [00] +17:37:18 [ 70] [ 3] [810] +17:37:18 ============================================================================ +17:37:18 Calculate Source COMM Id = 6 +17:37:18 ============================================================================ +17:37:18 + + +waiting on router queue for slot.... +17:37:27 ============================================================================ +17:37:27 Slot Id : <392> +17:37:27 Transaction Type : REQUEST +17:37:27 Received From : +17:37:27 ============================================================================ +17:37:27 FNo. Len. Field Value +17:37:27 ============================================================================ +17:37:27 [ 1] [ 4] [0800] +17:37:27 [ 7] [ 10] [0320103634] +17:37:27 [ 11] [ 6] [157501] +17:37:27 [ 70] [ 3] [301] +17:37:27 ============================================================================ +17:37:27 + + +waiting on router queue for slot.... +17:37:27 Sending to : +17:37:27 ============================================================================ +17:37:27 ============================================================================ +17:37:27 Slot Id : <392> +17:37:27 Transaction Type : RESPONSE +17:37:27 Received From : +17:37:27 ============================================================================ +17:37:27 FNo. Len. Field Value +17:37:27 ============================================================================ +17:37:27 [ 1] [ 4] [0810] +17:37:27 [ 7] [ 10] [0320103634] +17:37:27 [ 11] [ 6] [157501] +17:37:27 [ 39] [ 2] [00] +17:37:27 [ 70] [ 3] [301] +17:37:27 ============================================================================ +17:37:27 Calculate Source COMM Id = 2 +17:37:27 ============================================================================ +17:37:27 + + +waiting on router queue for slot.... +17:37:38 ============================================================================ +17:37:38 Slot Id : <450> +17:37:38 Transaction Type : REQUEST +17:37:38 Received From : +17:37:38 ============================================================================ +17:37:38 FNo. Len. Field Value +17:37:38 ============================================================================ +17:37:38 [ 1] [ 4] [0800] +17:37:38 [ 7] [ 10] [0320103645] +17:37:38 [ 11] [ 6] [157502] +17:37:38 [ 70] [ 3] [301] +17:37:38 ============================================================================ +17:37:38 + + +waiting on router queue for slot.... +17:37:38 Sending to : +17:37:38 ============================================================================ +17:37:38 ============================================================================ +17:37:38 Slot Id : <450> +17:37:38 Transaction Type : RESPONSE +17:37:38 Received From : +17:37:38 ============================================================================ +17:37:38 FNo. Len. Field Value +17:37:38 ============================================================================ +17:37:38 [ 1] [ 4] [0810] +17:37:38 [ 7] [ 10] [0320103645] +17:37:38 [ 11] [ 6] [157502] +17:37:38 [ 39] [ 2] [00] +17:37:38 [ 70] [ 3] [301] +17:37:38 ============================================================================ +17:37:38 Calculate Source COMM Id = 2 +17:37:38 ============================================================================ +17:37:38 + + +waiting on router queue for slot.... +17:37:39 ============================================================================ +17:37:39 Slot Id : <417> +17:37:39 Transaction Type : REQUEST +17:37:39 Received From : +17:37:39 ============================================================================ +17:37:39 FNo. Len. Field Value +17:37:39 ============================================================================ +17:37:39 [ 1] [ 4] [0200] +17:37:39 [ 2] [ 16] [6213544001405106] +17:37:39 [ 3] [ 6] [010000] +17:37:39 [ 4] [ 12] [000010000000] +17:37:39 [ 7] [ 10] [0320174526] +17:37:39 [ 11] [ 6] [223777] +17:37:39 [ 12] [ 6] [174526] +17:37:39 [ 13] [ 4] [0320] +17:37:39 [ 14] [ 4] [4912] +17:37:39 [ 15] [ 4] [0320] +17:37:39 [ 18] [ 4] [6011] +17:37:39 [ 22] [ 3] [900] +17:37:39 [ 25] [ 2] [02] +17:37:39 [ 28] [ 9] [D00002000] +17:37:39 [ 32] [ 6] [220699] +17:37:39 [ 35] [ 32] [6213544001405106=491212010510395] +17:37:39 [ 37] [ 12] [507900118794] +17:37:39 [ 41] [ 8] [01001100] +17:37:39 [ 42] [ 15] [APTRA ] +17:37:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:37:39 [ 49] [ 3] [418] +17:37:39 [ 52] [ 16] [67B2DCB303453E66] +17:37:39 ============================================================================ +17:37:39 + + +waiting on router queue for slot.... +17:37:39 Sending to : +17:37:39 ============================================================================ +17:37:39 Sending to : +17:37:39 ============================================================================ +17:37:39 ============================================================================ +17:37:39 Slot Id : <417> +17:37:39 Transaction Type : REQUEST +17:37:39 Received From : +17:37:39 ============================================================================ +17:37:39 FNo. Len. Field Value +17:37:39 ============================================================================ +17:37:39 [ 1] [ 4] [0200] +17:37:39 [ 2] [ 16] [6213544001405106] +17:37:39 [ 3] [ 6] [010000] +17:37:39 [ 4] [ 12] [000010000000] +17:37:39 [ 7] [ 10] [0320174526] +17:37:39 [ 11] [ 6] [223777] +17:37:39 [ 12] [ 6] [174526] +17:37:39 [ 13] [ 4] [0320] +17:37:39 [ 14] [ 4] [4912] +17:37:39 [ 15] [ 4] [0320] +17:37:39 [ 18] [ 4] [6011] +17:37:39 [ 22] [ 3] [900] +17:37:39 [ 25] [ 2] [02] +17:37:39 [ 28] [ 9] [D00002000] +17:37:39 [ 32] [ 6] [220699] +17:37:39 [ 35] [ 32] [6213544001405106=491212010510395] +17:37:39 [ 37] [ 12] [507900118794] +17:37:39 [ 41] [ 8] [01001100] +17:37:39 [ 42] [ 15] [APTRA ] +17:37:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:37:39 [ 49] [ 3] [418] +17:37:39 [ 52] [ 16] [67B2DCB303453E66] +17:37:39 ============================================================================ +17:37:39 + + +waiting on router queue for slot.... +17:37:39 Sending to : +17:37:39 ============================================================================ +17:37:39 ============================================================================ +17:37:39 Slot Id : <417> +17:37:39 Transaction Type : REQUEST +17:37:39 Received From : +17:37:39 ============================================================================ +17:37:39 FNo. Len. Field Value +17:37:39 ============================================================================ +17:37:39 [ 1] [ 4] [0200] +17:37:39 [ 2] [ 16] [6213544001405106] +17:37:39 [ 3] [ 6] [010000] +17:37:39 [ 4] [ 12] [000010000000] +17:37:39 [ 7] [ 10] [0320174526] +17:37:39 [ 11] [ 6] [223777] +17:37:39 [ 12] [ 6] [174526] +17:37:39 [ 13] [ 4] [0320] +17:37:39 [ 14] [ 4] [4912] +17:37:39 [ 15] [ 4] [0320] +17:37:39 [ 18] [ 4] [6011] +17:37:39 [ 22] [ 3] [900] +17:37:39 [ 25] [ 2] [02] +17:37:39 [ 28] [ 9] [D00002000] +17:37:39 [ 32] [ 6] [220699] +17:37:39 [ 35] [ 32] [6213544001405106=491212010510395] +17:37:39 [ 37] [ 12] [507900118794] +17:37:39 [ 41] [ 8] [01001100] +17:37:39 [ 42] [ 15] [APTRA ] +17:37:39 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:37:39 [ 49] [ 3] [418] +17:37:39 [ 52] [ 16] [484E2DB53393A5A7] +17:37:39 ============================================================================ +17:37:39 + + +waiting on router queue for slot.... +17:37:39 Sending to : <0> +17:37:39 ============================================================================ +17:37:39 ============================================================================ +17:37:39 Slot Id : <412> +17:37:39 Transaction Type : REQUEST +17:37:39 Received From : +17:37:39 ============================================================================ +17:37:39 FNo. Len. Field Value +17:37:39 ============================================================================ +17:37:39 [ 1] [ 4] [0200] +17:37:39 [ 2] [ 16] [6213544002251145] +17:37:39 [ 3] [ 6] [301000] +17:37:39 [ 4] [ 12] [000000000000] +17:37:39 [ 7] [ 10] [0320173800] +17:37:39 [ 11] [ 6] [209710] +17:37:39 [ 12] [ 6] [173305] +17:37:39 [ 13] [ 4] [0320] +17:37:39 [ 14] [ 4] [4912] +17:37:39 [ 15] [ 4] [0320] +17:37:39 [ 18] [ 4] [6011] +17:37:39 [ 19] [ 3] [418] +17:37:39 [ 22] [ 3] [021] +17:37:39 [ 25] [ 2] [01] +17:37:39 [ 28] [ 9] [D00000000] +17:37:39 [ 32] [ 6] [198901] +17:37:39 [ 35] [ 32] [6213544002251145=491212015114501] +17:37:39 [ 37] [ 12] [507917209710] +17:37:39 [ 41] [ 8] [19529001] +17:37:39 [ 42] [ 15] [000000041952901] +17:37:39 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:37:39 [ 49] [ 3] [418] +17:37:39 [ 52] [ 16] [019A629C65391DE1] +17:37:39 ============================================================================ +17:37:39 + + +waiting on router queue for slot.... +17:37:39 Sending to : +17:37:39 ============================================================================ +17:37:39 Sending to : +17:37:39 ============================================================================ +17:37:40 ============================================================================ +17:37:40 Slot Id : <417> +17:37:40 Transaction Type : RESPONSE +17:37:40 Received From : +17:37:40 ============================================================================ +17:37:40 FNo. Len. Field Value +17:37:40 ============================================================================ +17:37:40 [ 1] [ 4] [0210] +17:37:40 [ 2] [ 16] [6213544001405106] +17:37:40 [ 3] [ 6] [010000] +17:37:40 [ 4] [ 12] [000010000000] +17:37:40 [ 7] [ 10] [0320174526] +17:37:40 [ 11] [ 6] [223777] +17:37:40 [ 12] [ 6] [174526] +17:37:40 [ 13] [ 4] [0320] +17:37:40 [ 15] [ 4] [0320] +17:37:40 [ 18] [ 4] [6011] +17:37:40 [ 32] [ 6] [220699] +17:37:40 [ 35] [ 32] [6213544001405106=491212010510395] +17:37:40 [ 37] [ 12] [507900118794] +17:37:40 [ 38] [ 6] [442454] +17:37:40 [ 39] [ 2] [00] +17:37:40 [ 41] [ 8] [01001100] +17:37:40 [ 49] [ 3] [418] +17:37:40 [ 54] [ 40] [0001418C0000892113510002418C000089211351] +17:37:40 ============================================================================ +17:37:40 Sending to : +17:37:40 ============================================================================ +17:37:40 + + +waiting on router queue for slot.... +17:37:40 ============================================================================ +17:37:40 Slot Id : <412> +17:37:40 Transaction Type : REQUEST +17:37:40 Received From : +17:37:40 ============================================================================ +17:37:40 FNo. Len. Field Value +17:37:40 ============================================================================ +17:37:40 [ 1] [ 4] [0200] +17:37:40 [ 2] [ 16] [6213544002251145] +17:37:40 [ 3] [ 6] [301000] +17:37:40 [ 4] [ 12] [000000000000] +17:37:40 [ 7] [ 10] [0320173800] +17:37:40 [ 11] [ 6] [209710] +17:37:40 [ 12] [ 6] [173305] +17:37:40 [ 13] [ 4] [0320] +17:37:40 [ 14] [ 4] [4912] +17:37:40 [ 15] [ 4] [0320] +17:37:40 [ 18] [ 4] [6011] +17:37:40 [ 19] [ 3] [418] +17:37:40 [ 22] [ 3] [021] +17:37:40 [ 25] [ 2] [01] +17:37:40 [ 28] [ 9] [D00000000] +17:37:40 [ 32] [ 6] [198901] +17:37:40 [ 35] [ 32] [6213544002251145=491212015114501] +17:37:40 [ 37] [ 12] [507917209710] +17:37:40 [ 41] [ 8] [19529001] +17:37:40 [ 42] [ 15] [000000041952901] +17:37:40 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:37:40 [ 49] [ 3] [418] +17:37:40 [ 52] [ 16] [019A629C65391DE1] +17:37:40 ============================================================================ +17:37:40 + + +waiting on router queue for slot.... +17:37:40 Sending to : +17:37:40 ============================================================================ +17:37:40 ============================================================================ +17:37:40 Slot Id : <412> +17:37:40 Transaction Type : REQUEST +17:37:40 Received From : +17:37:40 ============================================================================ +17:37:40 FNo. Len. Field Value +17:37:40 ============================================================================ +17:37:40 [ 1] [ 4] [0200] +17:37:40 [ 2] [ 16] [6213544002251145] +17:37:40 [ 3] [ 6] [301000] +17:37:40 [ 4] [ 12] [000000000000] +17:37:40 [ 7] [ 10] [0320173800] +17:37:40 [ 11] [ 6] [209710] +17:37:40 [ 12] [ 6] [173305] +17:37:40 [ 13] [ 4] [0320] +17:37:40 [ 14] [ 4] [4912] +17:37:40 [ 15] [ 4] [0320] +17:37:40 [ 18] [ 4] [6011] +17:37:40 [ 19] [ 3] [418] +17:37:40 [ 22] [ 3] [021] +17:37:40 [ 25] [ 2] [01] +17:37:40 [ 28] [ 9] [D00000000] +17:37:40 [ 32] [ 6] [198901] +17:37:40 [ 35] [ 32] [6213544002251145=491212015114501] +17:37:40 [ 37] [ 12] [507917209710] +17:37:40 [ 41] [ 8] [19529001] +17:37:40 [ 42] [ 15] [000000041952901] +17:37:40 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:37:40 [ 49] [ 3] [418] +17:37:40 [ 52] [ 16] [7258184B5119DACA] +17:37:40 ============================================================================ +17:37:40 + + +waiting on router queue for slot.... +17:37:40 Sending to : <0> +17:37:40 ============================================================================ +17:37:40 ============================================================================ +17:37:40 Slot Id : <412> +17:37:40 Transaction Type : RESPONSE +17:37:40 Received From : +17:37:40 ============================================================================ +17:37:40 FNo. Len. Field Value +17:37:40 ============================================================================ +17:37:40 [ 1] [ 4] [0210] +17:37:40 [ 2] [ 16] [6213544002251145] +17:37:40 [ 3] [ 6] [301000] +17:37:40 [ 4] [ 12] [000000000000] +17:37:40 [ 7] [ 10] [0320173800] +17:37:40 [ 11] [ 6] [209710] +17:37:40 [ 12] [ 6] [173305] +17:37:40 [ 13] [ 4] [0320] +17:37:40 [ 15] [ 4] [0320] +17:37:40 [ 18] [ 4] [6011] +17:37:40 [ 19] [ 3] [418] +17:37:40 [ 32] [ 6] [198901] +17:37:40 [ 35] [ 32] [6213544002251145=491212015114501] +17:37:40 [ 37] [ 12] [507917209710] +17:37:40 [ 38] [ 6] [146430] +17:37:40 [ 39] [ 2] [00] +17:37:40 [ 41] [ 8] [19529001] +17:37:40 [ 49] [ 3] [418] +17:37:40 [ 54] [ 40] [1001418C0000629836811002418C000062983681] +17:37:40 ============================================================================ +17:37:40 Sending to : +17:37:40 ============================================================================ +17:37:40 + + +waiting on router queue for slot.... +17:37:41 ============================================================================ +17:37:41 Slot Id : <417> +17:37:41 Transaction Type : RESPONSE +17:37:41 Received From : +17:37:41 ============================================================================ +17:37:41 FNo. Len. Field Value +17:37:41 ============================================================================ +17:37:41 [ 1] [ 4] [0210] +17:37:41 [ 2] [ 16] [6213544001405106] +17:37:41 [ 3] [ 6] [010000] +17:37:41 [ 4] [ 12] [000010000000] +17:37:41 [ 7] [ 10] [0320174526] +17:37:41 [ 11] [ 6] [223777] +17:37:41 [ 12] [ 6] [174526] +17:37:41 [ 13] [ 4] [0320] +17:37:41 [ 15] [ 4] [0320] +17:37:41 [ 18] [ 4] [6011] +17:37:41 [ 32] [ 6] [220699] +17:37:41 [ 35] [ 32] [6213544001405106=491212010510395] +17:37:41 [ 37] [ 12] [507900118794] +17:37:41 [ 38] [ 6] [442454] +17:37:41 [ 39] [ 2] [00] +17:37:41 [ 41] [ 8] [01001100] +17:37:41 [ 49] [ 3] [418] +17:37:41 [ 54] [ 40] [0001418C0000892113510002418C000089211351] +17:37:41 ============================================================================ +17:37:41 Calculate Source COMM Id = 1 +17:37:41 ============================================================================ +17:37:41 + + +waiting on router queue for slot.... +17:37:43 ============================================================================ +17:37:43 Slot Id : <412> +17:37:43 Transaction Type : RESPONSE +17:37:43 Received From : +17:37:43 ============================================================================ +17:37:43 FNo. Len. Field Value +17:37:43 ============================================================================ +17:37:43 [ 1] [ 4] [0210] +17:37:43 [ 2] [ 16] [6213544002251145] +17:37:43 [ 3] [ 6] [301000] +17:37:43 [ 4] [ 12] [000000000000] +17:37:43 [ 7] [ 10] [0320173800] +17:37:43 [ 11] [ 6] [209710] +17:37:43 [ 12] [ 6] [173305] +17:37:43 [ 13] [ 4] [0320] +17:37:43 [ 15] [ 4] [0320] +17:37:43 [ 18] [ 4] [6011] +17:37:43 [ 19] [ 3] [418] +17:37:43 [ 32] [ 6] [198901] +17:37:43 [ 35] [ 32] [6213544002251145=491212015114501] +17:37:43 [ 37] [ 12] [507917209710] +17:37:43 [ 38] [ 6] [146430] +17:37:43 [ 39] [ 2] [00] +17:37:43 [ 41] [ 8] [19529001] +17:37:43 [ 49] [ 3] [418] +17:37:43 [ 54] [ 40] [1001418C0000629836811002418C000062983681] +17:37:43 ============================================================================ +17:37:43 Calculate Source COMM Id = 5 +17:37:43 ============================================================================ +17:37:43 + + +waiting on router queue for slot.... +17:37:45 ============================================================================ +17:37:45 Slot Id : <447> +17:37:45 Transaction Type : REQUEST +17:37:45 Received From : +17:37:45 ============================================================================ +17:37:45 FNo. Len. Field Value +17:37:45 ============================================================================ +17:37:45 [ 1] [ 4] [0800] +17:37:45 [ 2] [ 5] [02531] +17:37:45 [ 3] [ 6] [579178] +17:37:45 [ 7] [ 10] [0320103745] +17:37:45 [ 11] [ 6] [807435] +17:37:45 [ 15] [ 10] [0320103745] +17:37:45 [ 37] [ 11] [57917807435] +17:37:45 [ 70] [ 3] [001] +17:37:45 ============================================================================ +17:37:45 + + +waiting on router queue for slot.... +17:37:45 ============================================================================ +17:37:45 Slot Id : <447> +17:37:45 Transaction Type : RESPONSE +17:37:45 Received From : +17:37:45 ============================================================================ +17:37:45 FNo. Len. Field Value +17:37:45 ============================================================================ +17:37:45 [ 1] [ 4] [0810] +17:37:45 [ 7] [ 10] [0320103745] +17:37:45 [ 11] [ 6] [807435] +17:37:45 [ 15] [ 4] [0320] +17:37:45 [ 37] [ 12] [57917807435] +17:37:45 [ 39] [ 2] [00] +17:37:45 [ 70] [ 3] [001] +17:37:45 ============================================================================ +17:37:45 Sending to : +17:37:45 ============================================================================ +17:37:45 + + +waiting on router queue for slot.... +17:37:47 ============================================================================ +17:37:47 Slot Id : <391> +17:37:47 Transaction Type : REQUEST +17:37:47 Received From : +17:37:47 ============================================================================ +17:37:47 FNo. Len. Field Value +17:37:47 ============================================================================ +17:37:47 [ 1] [ 4] [0200] +17:37:47 [ 2] [ 16] [6688990040119396] +17:37:47 [ 3] [ 6] [010000] +17:37:47 [ 4] [ 12] [000010000000] +17:37:47 [ 7] [ 10] [0320103652] +17:37:47 [ 11] [ 6] [270939] +17:37:47 [ 12] [ 6] [173652] +17:37:47 [ 13] [ 4] [0320] +17:37:47 [ 14] [ 4] [9803] +17:37:47 [ 15] [ 4] [0320] +17:37:47 [ 18] [ 4] [6011] +17:37:47 [ 19] [ 3] [418] +17:37:47 [ 22] [ 3] [021] +17:37:47 [ 25] [ 2] [01] +17:37:47 [ 28] [ 9] [D00002000] +17:37:47 [ 32] [ 6] [180893] +17:37:47 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:37:47 [ 37] [ 12] [507910270939] +17:37:47 [ 41] [ 8] [0361BLTB] +17:37:47 [ 42] [ 15] [999999 ] +17:37:47 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +17:37:47 [ 49] [ 3] [418] +17:37:47 [ 52] [ 16] [DCEA30E4C442F722] +17:37:47 ============================================================================ +17:37:47 + + +waiting on router queue for slot.... +17:37:47 Sending to : +17:37:47 ============================================================================ +17:37:47 Sending to : +17:37:47 ============================================================================ +17:37:47 ============================================================================ +17:37:47 Slot Id : <391> +17:37:47 Transaction Type : REQUEST +17:37:47 Received From : +17:37:47 ============================================================================ +17:37:47 FNo. Len. Field Value +17:37:47 ============================================================================ +17:37:47 [ 1] [ 4] [0200] +17:37:47 [ 2] [ 16] [6688990040119396] +17:37:47 [ 3] [ 6] [010000] +17:37:47 [ 4] [ 12] [000010000000] +17:37:47 [ 7] [ 10] [0320103652] +17:37:47 [ 11] [ 6] [270939] +17:37:47 [ 12] [ 6] [173652] +17:37:47 [ 13] [ 4] [0320] +17:37:47 [ 14] [ 4] [9803] +17:37:47 [ 15] [ 4] [0320] +17:37:47 [ 18] [ 4] [6011] +17:37:47 [ 19] [ 3] [418] +17:37:47 [ 22] [ 3] [021] +17:37:47 [ 25] [ 2] [01] +17:37:47 [ 28] [ 9] [D00002000] +17:37:47 [ 32] [ 6] [180893] +17:37:47 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:37:47 [ 37] [ 12] [507910270939] +17:37:47 [ 41] [ 8] [0361BLTB] +17:37:47 [ 42] [ 15] [999999 ] +17:37:47 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +17:37:47 [ 49] [ 3] [418] +17:37:47 [ 52] [ 16] [DCEA30E4C442F722] +17:37:47 ============================================================================ +17:37:47 + + +waiting on router queue for slot.... +17:37:47 Sending to : +17:37:47 ============================================================================ +17:37:47 ============================================================================ +17:37:47 Slot Id : <391> +17:37:47 Transaction Type : REQUEST +17:37:47 Received From : +17:37:47 ============================================================================ +17:37:47 FNo. Len. Field Value +17:37:47 ============================================================================ +17:37:47 [ 1] [ 4] [0200] +17:37:47 [ 2] [ 16] [6688990040119396] +17:37:47 [ 3] [ 6] [010000] +17:37:47 [ 4] [ 12] [000010000000] +17:37:47 [ 7] [ 10] [0320103652] +17:37:47 [ 11] [ 6] [270939] +17:37:47 [ 12] [ 6] [173652] +17:37:47 [ 13] [ 4] [0320] +17:37:47 [ 14] [ 4] [9803] +17:37:47 [ 15] [ 4] [0320] +17:37:47 [ 18] [ 4] [6011] +17:37:47 [ 19] [ 3] [418] +17:37:47 [ 22] [ 3] [021] +17:37:47 [ 25] [ 2] [01] +17:37:47 [ 28] [ 9] [D00002000] +17:37:47 [ 32] [ 6] [180893] +17:37:47 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:37:47 [ 37] [ 12] [507910270939] +17:37:47 [ 41] [ 8] [0361BLTB] +17:37:47 [ 42] [ 15] [999999 ] +17:37:47 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +17:37:47 [ 49] [ 3] [418] +17:37:47 [ 52] [ 16] [A7E7F766A5506711] +17:37:47 ============================================================================ +17:37:47 + + +waiting on router queue for slot.... +17:37:47 Sending to : <0> +17:37:47 ============================================================================ +17:37:47 ============================================================================ +17:37:47 Slot Id : <391> +17:37:47 Transaction Type : RESPONSE +17:37:47 Received From : +17:37:47 ============================================================================ +17:37:47 FNo. Len. Field Value +17:37:47 ============================================================================ +17:37:47 [ 1] [ 4] [0210] +17:37:47 [ 2] [ 16] [6688990040119396] +17:37:47 [ 3] [ 6] [010000] +17:37:47 [ 4] [ 12] [000010000000] +17:37:47 [ 7] [ 10] [0320103652] +17:37:47 [ 11] [ 6] [270939] +17:37:47 [ 12] [ 6] [173652] +17:37:47 [ 13] [ 4] [0320] +17:37:47 [ 15] [ 4] [0320] +17:37:47 [ 18] [ 4] [6011] +17:37:47 [ 19] [ 3] [418] +17:37:47 [ 22] [ 3] [021] +17:37:47 [ 32] [ 6] [180893] +17:37:47 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:37:47 [ 37] [ 12] [507910270939] +17:37:47 [ 39] [ 2] [14] +17:37:47 [ 41] [ 8] [0361BLTB] +17:37:47 [ 49] [ 3] [418] +17:37:47 ============================================================================ +17:37:47 Sending to : +17:37:47 ============================================================================ +17:37:47 + + +waiting on router queue for slot.... +17:37:48 ============================================================================ +17:37:48 Slot Id : <391> +17:37:48 Transaction Type : RESPONSE +17:37:48 Received From : +17:37:48 ============================================================================ +17:37:48 FNo. Len. Field Value +17:37:48 ============================================================================ +17:37:48 [ 1] [ 4] [0210] +17:37:48 [ 2] [ 16] [6688990040119396] +17:37:48 [ 3] [ 6] [010000] +17:37:48 [ 4] [ 12] [000010000000] +17:37:48 [ 7] [ 10] [0320103652] +17:37:48 [ 11] [ 6] [270939] +17:37:48 [ 12] [ 6] [173652] +17:37:48 [ 13] [ 4] [0320] +17:37:48 [ 15] [ 4] [0320] +17:37:48 [ 18] [ 4] [6011] +17:37:48 [ 19] [ 3] [418] +17:37:48 [ 22] [ 3] [021] +17:37:48 [ 32] [ 6] [180893] +17:37:48 [ 35] [ 37] [6688990040119396=98031261172321400000] +17:37:48 [ 37] [ 12] [507910270939] +17:37:48 [ 39] [ 2] [14] +17:37:48 [ 41] [ 8] [0361BLTB] +17:37:48 [ 49] [ 3] [418] +17:37:48 ============================================================================ +17:37:48 Calculate Source COMM Id = 2 +17:37:48 ============================================================================ +17:37:48 + + +waiting on router queue for slot.... +17:37:49 ============================================================================ +17:37:49 Slot Id : <405> +17:37:49 Transaction Type : REQUEST +17:37:49 Received From : +17:37:49 ============================================================================ +17:37:49 FNo. Len. Field Value +17:37:49 ============================================================================ +17:37:49 [ 1] [ 4] [0200] +17:37:49 [ 2] [ 16] [6213545000392153] +17:37:49 [ 3] [ 6] [010000] +17:37:49 [ 4] [ 12] [000100000000] +17:37:49 [ 7] [ 10] [0320103656] +17:37:49 [ 11] [ 6] [270941] +17:37:49 [ 12] [ 6] [173656] +17:37:49 [ 13] [ 4] [0320] +17:37:49 [ 14] [ 4] [4912] +17:37:49 [ 15] [ 4] [0320] +17:37:49 [ 18] [ 4] [6011] +17:37:49 [ 19] [ 3] [418] +17:37:49 [ 22] [ 3] [021] +17:37:49 [ 25] [ 2] [01] +17:37:49 [ 28] [ 9] [D00002000] +17:37:49 [ 32] [ 6] [180893] +17:37:49 [ 35] [ 32] [6213545000392153=491212019215677] +17:37:49 [ 37] [ 12] [507910270941] +17:37:49 [ 41] [ 8] [0243VTKS] +17:37:49 [ 42] [ 15] [999999 ] +17:37:49 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +17:37:49 [ 49] [ 3] [418] +17:37:49 [ 52] [ 16] [4DCDF2F4275339E5] +17:37:49 ============================================================================ +17:37:49 + + +waiting on router queue for slot.... +17:37:49 Sending to : +17:37:49 ============================================================================ +17:37:49 Sending to : +17:37:49 ============================================================================ +17:37:50 ============================================================================ +17:37:50 Slot Id : <405> +17:37:50 Transaction Type : REQUEST +17:37:50 Received From : +17:37:50 ============================================================================ +17:37:50 FNo. Len. Field Value +17:37:50 ============================================================================ +17:37:50 [ 1] [ 4] [0200] +17:37:50 [ 2] [ 16] [6213545000392153] +17:37:50 [ 3] [ 6] [010000] +17:37:50 [ 4] [ 12] [000100000000] +17:37:50 [ 7] [ 10] [0320103656] +17:37:50 [ 11] [ 6] [270941] +17:37:50 [ 12] [ 6] [173656] +17:37:50 [ 13] [ 4] [0320] +17:37:50 [ 14] [ 4] [4912] +17:37:50 [ 15] [ 4] [0320] +17:37:50 [ 18] [ 4] [6011] +17:37:50 [ 19] [ 3] [418] +17:37:50 [ 22] [ 3] [021] +17:37:50 [ 25] [ 2] [01] +17:37:50 [ 28] [ 9] [D00002000] +17:37:50 [ 32] [ 6] [180893] +17:37:50 [ 35] [ 32] [6213545000392153=491212019215677] +17:37:50 [ 37] [ 12] [507910270941] +17:37:50 [ 41] [ 8] [0243VTKS] +17:37:50 [ 42] [ 15] [999999 ] +17:37:50 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +17:37:50 [ 49] [ 3] [418] +17:37:50 [ 52] [ 16] [4DCDF2F4275339E5] +17:37:50 ============================================================================ +17:37:50 + + +waiting on router queue for slot.... +17:37:50 Sending to : +17:37:50 ============================================================================ +17:37:50 ============================================================================ +17:37:50 Slot Id : <405> +17:37:50 Transaction Type : REQUEST +17:37:50 Received From : +17:37:50 ============================================================================ +17:37:50 FNo. Len. Field Value +17:37:50 ============================================================================ +17:37:50 [ 1] [ 4] [0200] +17:37:50 [ 2] [ 16] [6213545000392153] +17:37:50 [ 3] [ 6] [010000] +17:37:50 [ 4] [ 12] [000100000000] +17:37:50 [ 7] [ 10] [0320103656] +17:37:50 [ 11] [ 6] [270941] +17:37:50 [ 12] [ 6] [173656] +17:37:50 [ 13] [ 4] [0320] +17:37:50 [ 14] [ 4] [4912] +17:37:50 [ 15] [ 4] [0320] +17:37:50 [ 18] [ 4] [6011] +17:37:50 [ 19] [ 3] [418] +17:37:50 [ 22] [ 3] [021] +17:37:50 [ 25] [ 2] [01] +17:37:50 [ 28] [ 9] [D00002000] +17:37:50 [ 32] [ 6] [180893] +17:37:50 [ 35] [ 32] [6213545000392153=491212019215677] +17:37:50 [ 37] [ 12] [507910270941] +17:37:50 [ 41] [ 8] [0243VTKS] +17:37:50 [ 42] [ 15] [999999 ] +17:37:50 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +17:37:50 [ 49] [ 3] [418] +17:37:50 [ 52] [ 16] [EFF2374E3453118B] +17:37:50 ============================================================================ +17:37:50 + + +waiting on router queue for slot.... +17:37:50 Sending to : <0> +17:37:50 ============================================================================ +17:37:50 ============================================================================ +17:37:50 Slot Id : <405> +17:37:50 Transaction Type : RESPONSE +17:37:50 Received From : +17:37:50 ============================================================================ +17:37:50 FNo. Len. Field Value +17:37:50 ============================================================================ +17:37:50 [ 1] [ 4] [0210] +17:37:50 [ 2] [ 16] [6213545000392153] +17:37:50 [ 3] [ 6] [010000] +17:37:50 [ 4] [ 12] [000100000000] +17:37:50 [ 7] [ 10] [0320103656] +17:37:50 [ 11] [ 6] [270941] +17:37:50 [ 12] [ 6] [173656] +17:37:50 [ 13] [ 4] [0320] +17:37:50 [ 15] [ 4] [0320] +17:37:50 [ 18] [ 4] [6011] +17:37:50 [ 19] [ 3] [418] +17:37:50 [ 32] [ 6] [180893] +17:37:50 [ 35] [ 32] [6213545000392153=491212019215677] +17:37:50 [ 37] [ 12] [507910270941] +17:37:50 [ 38] [ 6] [247406] +17:37:50 [ 39] [ 2] [00] +17:37:50 [ 41] [ 8] [0243VTKS] +17:37:50 [ 49] [ 3] [418] +17:37:50 [ 54] [ 40] [0001418C0000500820810002418C000050082081] +17:37:50 ============================================================================ +17:37:50 Sending to : +17:37:50 ============================================================================ +17:37:50 + + +waiting on router queue for slot.... +17:37:52 ============================================================================ +17:37:52 Slot Id : <405> +17:37:52 Transaction Type : RESPONSE +17:37:52 Received From : +17:37:52 ============================================================================ +17:37:52 FNo. Len. Field Value +17:37:52 ============================================================================ +17:37:52 [ 1] [ 4] [0210] +17:37:52 [ 2] [ 16] [6213545000392153] +17:37:52 [ 3] [ 6] [010000] +17:37:52 [ 4] [ 12] [000100000000] +17:37:52 [ 7] [ 10] [0320103656] +17:37:52 [ 11] [ 6] [270941] +17:37:52 [ 12] [ 6] [173656] +17:37:52 [ 13] [ 4] [0320] +17:37:52 [ 15] [ 4] [0320] +17:37:52 [ 18] [ 4] [6011] +17:37:52 [ 19] [ 3] [418] +17:37:52 [ 32] [ 6] [180893] +17:37:52 [ 35] [ 32] [6213545000392153=491212019215677] +17:37:52 [ 37] [ 12] [507910270941] +17:37:52 [ 38] [ 6] [247406] +17:37:52 [ 39] [ 2] [00] +17:37:52 [ 41] [ 8] [0243VTKS] +17:37:52 [ 49] [ 3] [418] +17:37:52 [ 54] [ 40] [0001418C0000500820810002418C000050082081] +17:37:52 ============================================================================ +17:37:52 Calculate Source COMM Id = 2 +17:37:52 ============================================================================ +17:37:52 + + +waiting on router queue for slot.... +17:38:05 ============================================================================ +17:38:05 Slot Id : <429> +17:38:05 Transaction Type : REQUEST +17:38:05 Received From : +17:38:05 ============================================================================ +17:38:05 FNo. Len. Field Value +17:38:05 ============================================================================ +17:38:05 [ 1] [ 4] [0800] +17:38:05 [ 7] [ 10] [0320103712] +17:38:05 [ 11] [ 6] [157503] +17:38:05 [ 70] [ 3] [301] +17:38:05 ============================================================================ +17:38:05 + + +waiting on router queue for slot.... +17:38:05 Sending to : +17:38:05 ============================================================================ +17:38:05 ============================================================================ +17:38:05 Slot Id : <429> +17:38:05 Transaction Type : RESPONSE +17:38:05 Received From : +17:38:05 ============================================================================ +17:38:05 FNo. Len. Field Value +17:38:05 ============================================================================ +17:38:05 [ 1] [ 4] [0810] +17:38:05 [ 7] [ 10] [0320103712] +17:38:05 [ 11] [ 6] [157503] +17:38:05 [ 39] [ 2] [00] +17:38:05 [ 70] [ 3] [301] +17:38:05 ============================================================================ +17:38:05 Calculate Source COMM Id = 2 +17:38:05 ============================================================================ +17:38:05 + + +waiting on router queue for slot.... +17:38:07 ============================================================================ +17:38:07 Slot Id : <386> +17:38:07 Transaction Type : REQUEST +17:38:07 Received From : +17:38:07 ============================================================================ +17:38:07 FNo. Len. Field Value +17:38:07 ============================================================================ +17:38:07 [ 1] [ 4] [0200] +17:38:07 [ 2] [ 16] [6213548000238921] +17:38:07 [ 3] [ 6] [010000] +17:38:07 [ 4] [ 12] [000030000000] +17:38:07 [ 7] [ 10] [0320173557] +17:38:07 [ 11] [ 6] [953678] +17:38:07 [ 12] [ 6] [173557] +17:38:07 [ 13] [ 4] [0320] +17:38:07 [ 15] [ 4] [0320] +17:38:07 [ 18] [ 4] [6011] +17:38:07 [ 19] [ 3] [418] +17:38:07 [ 22] [ 3] [021] +17:38:07 [ 25] [ 2] [01] +17:38:07 [ 28] [ 9] [D00002000] +17:38:07 [ 32] [ 6] [668899] +17:38:07 [ 35] [ 32] [6213548000238921=180112013892233] +17:38:07 [ 37] [ 12] [507900502548] +17:38:07 [ 41] [ 8] [03011001] +17:38:07 [ 42] [ 15] [APT ] +17:38:07 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +17:38:07 [ 49] [ 3] [418] +17:38:07 [ 52] [ 16] [A5E34974B06E4115] +17:38:07 ============================================================================ +17:38:07 + + +waiting on router queue for slot.... +17:38:07 Sending to : +17:38:07 ============================================================================ +17:38:07 Sending to : +17:38:07 ============================================================================ +17:38:07 ============================================================================ +17:38:07 Slot Id : <443> +17:38:07 Transaction Type : REQUEST +17:38:07 Received From : +17:38:07 ============================================================================ +17:38:07 FNo. Len. Field Value +17:38:07 ============================================================================ +17:38:07 [ 1] [ 4] [0800] +17:38:07 [ 7] [ 10] [0320103802] +17:38:07 [ 11] [ 6] [075017] +17:38:07 [ 37] [ 12] [507917075017] +17:38:07 [ 70] [ 3] [001] +17:38:07 ============================================================================ +17:38:07 + + +waiting on router queue for slot.... +17:38:07 Sending to : +17:38:07 ============================================================================ +17:38:07 ============================================================================ +17:38:07 Slot Id : <443> +17:38:07 Transaction Type : RESPONSE +17:38:07 Received From : +17:38:07 ============================================================================ +17:38:07 FNo. Len. Field Value +17:38:07 ============================================================================ +17:38:07 [ 1] [ 4] [0810] +17:38:07 [ 7] [ 10] [0320103802] +17:38:07 [ 11] [ 6] [075017] +17:38:07 [ 37] [ 12] [507917075017] +17:38:07 [ 39] [ 2] [00] +17:38:07 [ 70] [ 3] [001] +17:38:07 ============================================================================ +17:38:07 Calculate Source COMM Id = 0 +17:38:07 ============================================================================ +17:38:07 + + +waiting on router queue for slot.... +17:38:07 ============================================================================ +17:38:07 Slot Id : <386> +17:38:07 Transaction Type : REQUEST +17:38:07 Received From : +17:38:07 ============================================================================ +17:38:07 FNo. Len. Field Value +17:38:07 ============================================================================ +17:38:07 [ 1] [ 4] [0200] +17:38:07 [ 2] [ 16] [6213548000238921] +17:38:07 [ 3] [ 6] [010000] +17:38:07 [ 4] [ 12] [000030000000] +17:38:07 [ 7] [ 10] [0320173557] +17:38:07 [ 11] [ 6] [953678] +17:38:07 [ 12] [ 6] [173557] +17:38:07 [ 13] [ 4] [0320] +17:38:07 [ 15] [ 4] [0320] +17:38:07 [ 18] [ 4] [6011] +17:38:07 [ 19] [ 3] [418] +17:38:07 [ 22] [ 3] [021] +17:38:07 [ 25] [ 2] [01] +17:38:07 [ 28] [ 9] [D00002000] +17:38:07 [ 32] [ 6] [668899] +17:38:07 [ 35] [ 32] [6213548000238921=180112013892233] +17:38:07 [ 37] [ 12] [507900502548] +17:38:07 [ 41] [ 8] [03011001] +17:38:07 [ 42] [ 15] [APT ] +17:38:07 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +17:38:07 [ 49] [ 3] [418] +17:38:07 [ 52] [ 16] [A5E34974B06E4115] +17:38:07 ============================================================================ +17:38:07 + + +waiting on router queue for slot.... +17:38:07 Sending to : +17:38:07 ============================================================================ +17:38:07 ============================================================================ +17:38:07 Slot Id : <386> +17:38:07 Transaction Type : REQUEST +17:38:07 Received From : +17:38:07 ============================================================================ +17:38:07 FNo. Len. Field Value +17:38:07 ============================================================================ +17:38:07 [ 1] [ 4] [0200] +17:38:07 [ 2] [ 16] [6213548000238921] +17:38:07 [ 3] [ 6] [010000] +17:38:07 [ 4] [ 12] [000030000000] +17:38:07 [ 7] [ 10] [0320173557] +17:38:07 [ 11] [ 6] [953678] +17:38:07 [ 12] [ 6] [173557] +17:38:07 [ 13] [ 4] [0320] +17:38:07 [ 15] [ 4] [0320] +17:38:07 [ 18] [ 4] [6011] +17:38:07 [ 19] [ 3] [418] +17:38:07 [ 22] [ 3] [021] +17:38:07 [ 25] [ 2] [01] +17:38:07 [ 28] [ 9] [D00002000] +17:38:07 [ 32] [ 6] [668899] +17:38:07 [ 35] [ 32] [6213548000238921=180112013892233] +17:38:07 [ 37] [ 12] [507900502548] +17:38:07 [ 41] [ 8] [03011001] +17:38:07 [ 42] [ 15] [APT ] +17:38:07 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +17:38:07 [ 49] [ 3] [418] +17:38:07 [ 52] [ 16] [ADF42614C05B06D3] +17:38:07 ============================================================================ +17:38:07 + + +waiting on router queue for slot.... +17:38:07 Sending to : <0> +17:38:07 ============================================================================ +17:38:08 ============================================================================ +17:38:08 Slot Id : <386> +17:38:08 Transaction Type : RESPONSE +17:38:08 Received From : +17:38:08 ============================================================================ +17:38:08 FNo. Len. Field Value +17:38:08 ============================================================================ +17:38:08 [ 1] [ 4] [0210] +17:38:08 [ 2] [ 16] [6213548000238921] +17:38:08 [ 3] [ 6] [010000] +17:38:08 [ 4] [ 12] [000030000000] +17:38:08 [ 7] [ 10] [0320173557] +17:38:08 [ 11] [ 6] [953678] +17:38:08 [ 12] [ 6] [173557] +17:38:08 [ 13] [ 4] [0320] +17:38:08 [ 15] [ 4] [0320] +17:38:08 [ 18] [ 4] [6011] +17:38:08 [ 19] [ 3] [418] +17:38:08 [ 32] [ 6] [668899] +17:38:08 [ 35] [ 32] [6213548000238921=180112013892233] +17:38:08 [ 37] [ 12] [507900502548] +17:38:08 [ 38] [ 6] [589371] +17:38:08 [ 39] [ 2] [00] +17:38:08 [ 41] [ 8] [03011001] +17:38:08 [ 49] [ 3] [418] +17:38:08 [ 54] [ 40] [0001418C0000339128120002418C000033912812] +17:38:08 ============================================================================ +17:38:08 Sending to : +17:38:08 ============================================================================ +17:38:08 + + +waiting on router queue for slot.... +17:38:09 ============================================================================ +17:38:09 Slot Id : <386> +17:38:09 Transaction Type : RESPONSE +17:38:09 Received From : +17:38:09 ============================================================================ +17:38:09 FNo. Len. Field Value +17:38:09 ============================================================================ +17:38:09 [ 1] [ 4] [0210] +17:38:09 [ 2] [ 16] [6213548000238921] +17:38:09 [ 3] [ 6] [010000] +17:38:09 [ 4] [ 12] [000030000000] +17:38:09 [ 7] [ 10] [0320173557] +17:38:09 [ 11] [ 6] [953678] +17:38:09 [ 12] [ 6] [173557] +17:38:09 [ 13] [ 4] [0320] +17:38:09 [ 15] [ 4] [0320] +17:38:09 [ 18] [ 4] [6011] +17:38:09 [ 19] [ 3] [418] +17:38:09 [ 32] [ 6] [668899] +17:38:09 [ 35] [ 32] [6213548000238921=180112013892233] +17:38:09 [ 37] [ 12] [507900502548] +17:38:09 [ 38] [ 6] [589371] +17:38:09 [ 39] [ 2] [00] +17:38:09 [ 41] [ 8] [03011001] +17:38:09 [ 49] [ 3] [418] +17:38:09 [ 54] [ 40] [0001418C0000339128120002418C000033912812] +17:38:09 ============================================================================ +17:38:09 Calculate Source COMM Id = 4 +17:38:09 ============================================================================ +17:38:09 + + +waiting on router queue for slot.... +17:38:18 ============================================================================ +17:38:18 Slot Id : <446> +17:38:18 Transaction Type : REQUEST +17:38:18 Received From : +17:38:18 ============================================================================ +17:38:18 FNo. Len. Field Value +17:38:18 ============================================================================ +17:38:18 [ 1] [ 4] [0200] +17:38:18 [ 2] [ 16] [6213544002251145] +17:38:18 [ 3] [ 6] [301000] +17:38:18 [ 4] [ 12] [000000000000] +17:38:18 [ 7] [ 10] [0320173838] +17:38:18 [ 11] [ 6] [209719] +17:38:18 [ 12] [ 6] [173344] +17:38:18 [ 13] [ 4] [0320] +17:38:18 [ 14] [ 4] [4912] +17:38:18 [ 15] [ 4] [0320] +17:38:18 [ 18] [ 4] [6011] +17:38:18 [ 19] [ 3] [418] +17:38:18 [ 22] [ 3] [021] +17:38:18 [ 25] [ 2] [01] +17:38:18 [ 28] [ 9] [D00000000] +17:38:18 [ 32] [ 6] [198901] +17:38:18 [ 35] [ 32] [6213544002251145=491212015114501] +17:38:18 [ 37] [ 12] [507917209719] +17:38:18 [ 41] [ 8] [19529001] +17:38:18 [ 42] [ 15] [000000041952901] +17:38:18 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:38:18 [ 49] [ 3] [418] +17:38:18 [ 52] [ 16] [019A629C65391DE1] +17:38:18 ============================================================================ +17:38:18 + + +waiting on router queue for slot.... +17:38:18 Sending to : +17:38:18 ============================================================================ +17:38:18 Sending to : +17:38:18 ============================================================================ +17:38:18 ============================================================================ +17:38:18 Slot Id : <446> +17:38:18 Transaction Type : REQUEST +17:38:18 Received From : +17:38:18 ============================================================================ +17:38:18 FNo. Len. Field Value +17:38:18 ============================================================================ +17:38:18 [ 1] [ 4] [0200] +17:38:18 [ 2] [ 16] [6213544002251145] +17:38:18 [ 3] [ 6] [301000] +17:38:18 [ 4] [ 12] [000000000000] +17:38:18 [ 7] [ 10] [0320173838] +17:38:18 [ 11] [ 6] [209719] +17:38:18 [ 12] [ 6] [173344] +17:38:18 [ 13] [ 4] [0320] +17:38:18 [ 14] [ 4] [4912] +17:38:18 [ 15] [ 4] [0320] +17:38:18 [ 18] [ 4] [6011] +17:38:18 [ 19] [ 3] [418] +17:38:18 [ 22] [ 3] [021] +17:38:18 [ 25] [ 2] [01] +17:38:18 [ 28] [ 9] [D00000000] +17:38:18 [ 32] [ 6] [198901] +17:38:18 [ 35] [ 32] [6213544002251145=491212015114501] +17:38:18 [ 37] [ 12] [507917209719] +17:38:18 [ 41] [ 8] [19529001] +17:38:18 [ 42] [ 15] [000000041952901] +17:38:18 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:38:18 [ 49] [ 3] [418] +17:38:18 [ 52] [ 16] [019A629C65391DE1] +17:38:18 ============================================================================ +17:38:18 + + +waiting on router queue for slot.... +17:38:18 Sending to : +17:38:18 ============================================================================ +17:38:18 ============================================================================ +17:38:18 Slot Id : <446> +17:38:18 Transaction Type : REQUEST +17:38:18 Received From : +17:38:18 ============================================================================ +17:38:18 FNo. Len. Field Value +17:38:18 ============================================================================ +17:38:18 [ 1] [ 4] [0200] +17:38:18 [ 2] [ 16] [6213544002251145] +17:38:18 [ 3] [ 6] [301000] +17:38:18 [ 4] [ 12] [000000000000] +17:38:18 [ 7] [ 10] [0320173838] +17:38:18 [ 11] [ 6] [209719] +17:38:18 [ 12] [ 6] [173344] +17:38:18 [ 13] [ 4] [0320] +17:38:18 [ 14] [ 4] [4912] +17:38:18 [ 15] [ 4] [0320] +17:38:18 [ 18] [ 4] [6011] +17:38:18 [ 19] [ 3] [418] +17:38:18 [ 22] [ 3] [021] +17:38:18 [ 25] [ 2] [01] +17:38:18 [ 28] [ 9] [D00000000] +17:38:18 [ 32] [ 6] [198901] +17:38:18 [ 35] [ 32] [6213544002251145=491212015114501] +17:38:18 [ 37] [ 12] [507917209719] +17:38:18 [ 41] [ 8] [19529001] +17:38:18 [ 42] [ 15] [000000041952901] +17:38:18 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:38:18 [ 49] [ 3] [418] +17:38:18 [ 52] [ 16] [7258184B5119DACA] +17:38:18 ============================================================================ +17:38:18 + + +waiting on router queue for slot.... +17:38:18 Sending to : <0> +17:38:18 ============================================================================ +17:38:18 ============================================================================ +17:38:18 Slot Id : <446> +17:38:18 Transaction Type : RESPONSE +17:38:18 Received From : +17:38:18 ============================================================================ +17:38:18 FNo. Len. Field Value +17:38:18 ============================================================================ +17:38:18 [ 1] [ 4] [0210] +17:38:18 [ 2] [ 16] [6213544002251145] +17:38:18 [ 3] [ 6] [301000] +17:38:18 [ 4] [ 12] [000000000000] +17:38:18 [ 7] [ 10] [0320173838] +17:38:18 [ 11] [ 6] [209719] +17:38:18 [ 12] [ 6] [173344] +17:38:18 [ 13] [ 4] [0320] +17:38:18 [ 15] [ 4] [0320] +17:38:18 [ 18] [ 4] [6011] +17:38:18 [ 19] [ 3] [418] +17:38:18 [ 32] [ 6] [198901] +17:38:18 [ 35] [ 32] [6213544002251145=491212015114501] +17:38:18 [ 37] [ 12] [507917209719] +17:38:18 [ 38] [ 6] [536011] +17:38:18 [ 39] [ 2] [00] +17:38:18 [ 41] [ 8] [19529001] +17:38:18 [ 49] [ 3] [418] +17:38:18 [ 54] [ 40] [1001418C0000629836811002418C000062983681] +17:38:18 ============================================================================ +17:38:18 Sending to : +17:38:18 ============================================================================ +17:38:18 + + +waiting on router queue for slot.... +17:38:20 ============================================================================ +17:38:20 Slot Id : <446> +17:38:20 Transaction Type : RESPONSE +17:38:20 Received From : +17:38:20 ============================================================================ +17:38:20 FNo. Len. Field Value +17:38:20 ============================================================================ +17:38:20 [ 1] [ 4] [0210] +17:38:20 [ 2] [ 16] [6213544002251145] +17:38:20 [ 3] [ 6] [301000] +17:38:20 [ 4] [ 12] [000000000000] +17:38:20 [ 7] [ 10] [0320173838] +17:38:20 [ 11] [ 6] [209719] +17:38:20 [ 12] [ 6] [173344] +17:38:20 [ 13] [ 4] [0320] +17:38:20 [ 15] [ 4] [0320] +17:38:20 [ 18] [ 4] [6011] +17:38:20 [ 19] [ 3] [418] +17:38:20 [ 32] [ 6] [198901] +17:38:20 [ 35] [ 32] [6213544002251145=491212015114501] +17:38:20 [ 37] [ 12] [507917209719] +17:38:20 [ 38] [ 6] [536011] +17:38:20 [ 39] [ 2] [00] +17:38:20 [ 41] [ 8] [19529001] +17:38:20 [ 49] [ 3] [418] +17:38:20 [ 54] [ 40] [1001418C0000629836811002418C000062983681] +17:38:20 ============================================================================ +17:38:20 Calculate Source COMM Id = 5 +17:38:20 ============================================================================ +17:38:20 + + +waiting on router queue for slot.... +17:38:21 ============================================================================ +17:38:21 Slot Id : <377> +17:38:21 Transaction Type : REQUEST +17:38:21 Received From : +17:38:21 ============================================================================ +17:38:21 FNo. Len. Field Value +17:38:21 ============================================================================ +17:38:21 [ 1] [ 4] [0800] +17:38:21 [ 7] [ 10] [0320103728] +17:38:21 [ 11] [ 6] [157504] +17:38:21 [ 70] [ 3] [301] +17:38:21 ============================================================================ +17:38:21 + + +waiting on router queue for slot.... +17:38:21 Sending to : +17:38:21 ============================================================================ +17:38:21 ============================================================================ +17:38:21 Slot Id : <377> +17:38:21 Transaction Type : RESPONSE +17:38:21 Received From : +17:38:21 ============================================================================ +17:38:21 FNo. Len. Field Value +17:38:21 ============================================================================ +17:38:21 [ 1] [ 4] [0810] +17:38:21 [ 7] [ 10] [0320103728] +17:38:21 [ 11] [ 6] [157504] +17:38:21 [ 39] [ 2] [00] +17:38:21 [ 70] [ 3] [301] +17:38:21 ============================================================================ +17:38:21 Calculate Source COMM Id = 2 +17:38:21 ============================================================================ +17:38:21 + + +waiting on router queue for slot.... +17:38:23 ============================================================================ +17:38:23 Slot Id : <404> +17:38:23 Transaction Type : REQUEST +17:38:23 Received From : +17:38:23 ============================================================================ +17:38:23 FNo. Len. Field Value +17:38:23 ============================================================================ +17:38:23 [ 1] [ 4] [0800] +17:38:23 [ 7] [ 10] [0321005010] +17:38:23 [ 11] [ 6] [175010] +17:38:23 [ 37] [ 12] [57917175010] +17:38:23 [ 70] [ 3] [301] +17:38:23 ============================================================================ +17:38:23 + + +waiting on router queue for slot.... +17:38:23 Sending to : +17:38:23 ============================================================================ +17:38:23 ============================================================================ +17:38:23 Slot Id : <404> +17:38:23 Transaction Type : RESPONSE +17:38:23 Received From : +17:38:23 ============================================================================ +17:38:23 FNo. Len. Field Value +17:38:23 ============================================================================ +17:38:23 [ 1] [ 4] [0810] +17:38:23 [ 7] [ 10] [0321005010] +17:38:23 [ 11] [ 6] [175010] +17:38:23 [ 37] [ 12] [579171750100] +17:38:23 [ 39] [ 2] [00] +17:38:23 [ 70] [ 3] [810] +17:38:23 ============================================================================ +17:38:23 Calculate Source COMM Id = 6 +17:38:23 ============================================================================ +17:38:23 + + +waiting on router queue for slot.... +17:38:29 ============================================================================ +17:38:29 Slot Id : <434> +17:38:29 Transaction Type : REQUEST +17:38:29 Received From : +17:38:29 ============================================================================ +17:38:29 FNo. Len. Field Value +17:38:29 ============================================================================ +17:38:29 [ 1] [ 4] [0200] +17:38:29 [ 2] [ 16] [6688990105299505] +17:38:29 [ 3] [ 6] [301000] +17:38:29 [ 4] [ 12] [000000000000] +17:38:29 [ 7] [ 10] [0320173824] +17:38:29 [ 11] [ 6] [818030] +17:38:29 [ 12] [ 6] [173824] +17:38:29 [ 13] [ 4] [0320] +17:38:29 [ 15] [ 4] [0320] +17:38:29 [ 18] [ 4] [6011] +17:38:29 [ 22] [ 3] [900] +17:38:29 [ 25] [ 2] [02] +17:38:29 [ 28] [ 9] [D00000000] +17:38:29 [ 32] [ 6] [621354] +17:38:29 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:38:29 [ 37] [ 12] [507905291426] +17:38:29 [ 41] [ 8] [20001400] +17:38:29 [ 42] [ 15] [NATIVE ] +17:38:29 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +17:38:29 [ 49] [ 3] [418] +17:38:29 [ 52] [ 16] [6CC24A2A8D48A262] +17:38:29 ============================================================================ +17:38:29 + + +waiting on router queue for slot.... +17:38:29 Sending to : +17:38:29 ============================================================================ +17:38:29 Sending to : +17:38:29 ============================================================================ +17:38:29 ============================================================================ +17:38:29 Slot Id : <434> +17:38:29 Transaction Type : REQUEST +17:38:29 Received From : +17:38:29 ============================================================================ +17:38:29 FNo. Len. Field Value +17:38:29 ============================================================================ +17:38:29 [ 1] [ 4] [0200] +17:38:29 [ 2] [ 16] [6688990105299505] +17:38:29 [ 3] [ 6] [301000] +17:38:29 [ 4] [ 12] [000000000000] +17:38:29 [ 7] [ 10] [0320173824] +17:38:29 [ 11] [ 6] [818030] +17:38:29 [ 12] [ 6] [173824] +17:38:29 [ 13] [ 4] [0320] +17:38:29 [ 15] [ 4] [0320] +17:38:29 [ 18] [ 4] [6011] +17:38:29 [ 22] [ 3] [900] +17:38:29 [ 25] [ 2] [02] +17:38:29 [ 28] [ 9] [D00000000] +17:38:30 [ 32] [ 6] [621354] +17:38:30 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:38:30 [ 37] [ 12] [507905291426] +17:38:30 [ 41] [ 8] [20001400] +17:38:30 [ 42] [ 15] [NATIVE ] +17:38:30 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +17:38:30 [ 49] [ 3] [418] +17:38:30 [ 52] [ 16] [6CC24A2A8D48A262] +17:38:30 ============================================================================ +17:38:30 + + +waiting on router queue for slot.... +17:38:30 Sending to : +17:38:30 ============================================================================ +17:38:30 ============================================================================ +17:38:30 Slot Id : <434> +17:38:30 Transaction Type : REQUEST +17:38:30 Received From : +17:38:30 ============================================================================ +17:38:30 FNo. Len. Field Value +17:38:30 ============================================================================ +17:38:30 [ 1] [ 4] [0200] +17:38:30 [ 2] [ 16] [6688990105299505] +17:38:30 [ 3] [ 6] [301000] +17:38:30 [ 4] [ 12] [000000000000] +17:38:30 [ 7] [ 10] [0320173824] +17:38:30 [ 11] [ 6] [818030] +17:38:30 [ 12] [ 6] [173824] +17:38:30 [ 13] [ 4] [0320] +17:38:30 [ 15] [ 4] [0320] +17:38:30 [ 18] [ 4] [6011] +17:38:30 [ 22] [ 3] [900] +17:38:30 [ 25] [ 2] [02] +17:38:30 [ 28] [ 9] [D00000000] +17:38:30 [ 32] [ 6] [621354] +17:38:30 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:38:30 [ 37] [ 12] [507905291426] +17:38:30 [ 41] [ 8] [20001400] +17:38:30 [ 42] [ 15] [NATIVE ] +17:38:30 [ 43] [ 40] [Meung Khong Unit02 Saravanh LAO] +17:38:30 [ 49] [ 3] [418] +17:38:30 [ 52] [ 16] [610AC1203DE1A8AA] +17:38:30 ============================================================================ +17:38:30 + + +waiting on router queue for slot.... +17:38:30 Sending to : <4> +17:38:30 ============================================================================ +17:38:30 ============================================================================ +17:38:30 Slot Id : <434> +17:38:30 Transaction Type : RESPONSE +17:38:30 Received From : +17:38:30 ============================================================================ +17:38:30 FNo. Len. Field Value +17:38:30 ============================================================================ +17:38:30 [ 1] [ 4] [0210] +17:38:30 [ 2] [ 16] [6688990105299505] +17:38:30 [ 3] [ 6] [301000] +17:38:30 [ 4] [ 12] [000000000000] +17:38:30 [ 7] [ 10] [0320173824] +17:38:30 [ 11] [ 6] [818030] +17:38:30 [ 12] [ 6] [173824] +17:38:30 [ 13] [ 4] [0320] +17:38:30 [ 15] [ 4] [0320] +17:38:30 [ 18] [ 4] [6011] +17:38:30 [ 22] [ 3] [021] +17:38:30 [ 32] [ 6] [621354] +17:38:30 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:38:30 [ 37] [ 12] [507905291426] +17:38:30 [ 38] [ 6] [173619] +17:38:30 [ 39] [ 2] [75] +17:38:30 [ 41] [ 8] [20001400] +17:38:30 [ 49] [ 3] [418] +17:38:30 ============================================================================ +17:38:30 Sending to : +17:38:30 ============================================================================ +17:38:30 + + +waiting on router queue for slot.... +17:38:30 ============================================================================ +17:38:30 Slot Id : <424> +17:38:30 Transaction Type : REQUEST +17:38:30 Received From : +17:38:30 ============================================================================ +17:38:30 FNo. Len. Field Value +17:38:30 ============================================================================ +17:38:30 [ 1] [ 4] [0200] +17:38:30 [ 2] [ 16] [6213544002251145] +17:38:30 [ 3] [ 6] [011000] +17:38:30 [ 4] [ 12] [000050000000] +17:38:30 [ 7] [ 10] [0320173850] +17:38:30 [ 11] [ 6] [209725] +17:38:30 [ 12] [ 6] [173356] +17:38:30 [ 13] [ 4] [0320] +17:38:30 [ 14] [ 4] [4912] +17:38:30 [ 15] [ 4] [0320] +17:38:30 [ 18] [ 4] [6011] +17:38:30 [ 19] [ 3] [418] +17:38:30 [ 22] [ 3] [021] +17:38:30 [ 25] [ 2] [01] +17:38:30 [ 28] [ 9] [D00002000] +17:38:30 [ 32] [ 6] [198901] +17:38:30 [ 35] [ 32] [6213544002251145=491212015114501] +17:38:30 [ 37] [ 12] [507917209725] +17:38:30 [ 41] [ 8] [19529001] +17:38:30 [ 42] [ 15] [000000041952901] +17:38:30 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:38:30 [ 49] [ 3] [418] +17:38:30 [ 52] [ 16] [019A629C65391DE1] +17:38:30 ============================================================================ +17:38:30 + + +waiting on router queue for slot.... +17:38:30 Sending to : +17:38:30 ============================================================================ +17:38:30 Sending to : +17:38:30 ============================================================================ +17:38:30 ============================================================================ +17:38:30 Slot Id : <424> +17:38:30 Transaction Type : REQUEST +17:38:30 Received From : +17:38:30 ============================================================================ +17:38:30 FNo. Len. Field Value +17:38:30 ============================================================================ +17:38:30 [ 1] [ 4] [0200] +17:38:30 [ 2] [ 16] [6213544002251145] +17:38:30 [ 3] [ 6] [011000] +17:38:30 [ 4] [ 12] [000050000000] +17:38:30 [ 7] [ 10] [0320173850] +17:38:30 [ 11] [ 6] [209725] +17:38:30 [ 12] [ 6] [173356] +17:38:30 [ 13] [ 4] [0320] +17:38:30 [ 14] [ 4] [4912] +17:38:30 [ 15] [ 4] [0320] +17:38:30 [ 18] [ 4] [6011] +17:38:30 [ 19] [ 3] [418] +17:38:30 [ 22] [ 3] [021] +17:38:30 [ 25] [ 2] [01] +17:38:30 [ 28] [ 9] [D00002000] +17:38:30 [ 32] [ 6] [198901] +17:38:30 [ 35] [ 32] [6213544002251145=491212015114501] +17:38:30 [ 37] [ 12] [507917209725] +17:38:30 [ 41] [ 8] [19529001] +17:38:30 [ 42] [ 15] [000000041952901] +17:38:30 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:38:30 [ 49] [ 3] [418] +17:38:30 [ 52] [ 16] [019A629C65391DE1] +17:38:30 ============================================================================ +17:38:30 + + +waiting on router queue for slot.... +17:38:30 Sending to : +17:38:30 ============================================================================ +17:38:30 ============================================================================ +17:38:30 Slot Id : <424> +17:38:30 Transaction Type : REQUEST +17:38:30 Received From : +17:38:30 ============================================================================ +17:38:30 FNo. Len. Field Value +17:38:30 ============================================================================ +17:38:30 [ 1] [ 4] [0200] +17:38:30 [ 2] [ 16] [6213544002251145] +17:38:30 [ 3] [ 6] [011000] +17:38:30 [ 4] [ 12] [000050000000] +17:38:30 [ 7] [ 10] [0320173850] +17:38:30 [ 11] [ 6] [209725] +17:38:30 [ 12] [ 6] [173356] +17:38:30 [ 13] [ 4] [0320] +17:38:30 [ 14] [ 4] [4912] +17:38:30 [ 15] [ 4] [0320] +17:38:30 [ 18] [ 4] [6011] +17:38:30 [ 19] [ 3] [418] +17:38:30 [ 22] [ 3] [021] +17:38:30 [ 25] [ 2] [01] +17:38:30 [ 28] [ 9] [D00002000] +17:38:30 [ 32] [ 6] [198901] +17:38:30 [ 35] [ 32] [6213544002251145=491212015114501] +17:38:30 [ 37] [ 12] [507917209725] +17:38:30 [ 41] [ 8] [19529001] +17:38:30 [ 42] [ 15] [000000041952901] +17:38:30 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:38:30 [ 49] [ 3] [418] +17:38:30 [ 52] [ 16] [7258184B5119DACA] +17:38:30 ============================================================================ +17:38:30 + + +waiting on router queue for slot.... +17:38:30 Sending to : <0> +17:38:30 ============================================================================ +17:38:31 ============================================================================ +17:38:31 Slot Id : <424> +17:38:31 Transaction Type : RESPONSE +17:38:31 Received From : +17:38:31 ============================================================================ +17:38:31 FNo. Len. Field Value +17:38:31 ============================================================================ +17:38:31 [ 1] [ 4] [0210] +17:38:31 [ 2] [ 16] [6213544002251145] +17:38:31 [ 3] [ 6] [011000] +17:38:31 [ 4] [ 12] [000050000000] +17:38:31 [ 7] [ 10] [0320173850] +17:38:31 [ 11] [ 6] [209725] +17:38:31 [ 12] [ 6] [173356] +17:38:31 [ 13] [ 4] [0320] +17:38:31 [ 15] [ 4] [0320] +17:38:31 [ 18] [ 4] [6011] +17:38:31 [ 19] [ 3] [418] +17:38:31 [ 32] [ 6] [198901] +17:38:31 [ 35] [ 32] [6213544002251145=491212015114501] +17:38:31 [ 37] [ 12] [507917209725] +17:38:31 [ 38] [ 6] [425243] +17:38:31 [ 39] [ 2] [00] +17:38:31 [ 41] [ 8] [19529001] +17:38:31 [ 49] [ 3] [418] +17:38:31 [ 54] [ 40] [1001418C0000127836811002418C000012783681] +17:38:31 ============================================================================ +17:38:31 Sending to : +17:38:31 ============================================================================ +17:38:31 + + +waiting on router queue for slot.... +17:38:31 ============================================================================ +17:38:31 Slot Id : <434> +17:38:31 Transaction Type : RESPONSE +17:38:31 Received From : +17:38:31 ============================================================================ +17:38:31 FNo. Len. Field Value +17:38:31 ============================================================================ +17:38:31 [ 1] [ 4] [0210] +17:38:31 [ 2] [ 16] [6688990105299505] +17:38:31 [ 3] [ 6] [301000] +17:38:31 [ 4] [ 12] [000000000000] +17:38:31 [ 7] [ 10] [0320173824] +17:38:31 [ 11] [ 6] [818030] +17:38:31 [ 12] [ 6] [173824] +17:38:31 [ 13] [ 4] [0320] +17:38:31 [ 15] [ 4] [0320] +17:38:31 [ 18] [ 4] [6011] +17:38:31 [ 22] [ 3] [021] +17:38:31 [ 32] [ 6] [621354] +17:38:31 [ 35] [ 37] [6688990105299505=43081231950542600000] +17:38:31 [ 37] [ 12] [507905291426] +17:38:31 [ 38] [ 6] [173619] +17:38:31 [ 39] [ 2] [75] +17:38:31 [ 41] [ 8] [20001400] +17:38:31 [ 49] [ 3] [418] +17:38:31 ============================================================================ +17:38:31 Calculate Source COMM Id = 0 +17:38:31 ============================================================================ +17:38:31 + + +waiting on router queue for slot.... +17:38:32 ============================================================================ +17:38:32 Slot Id : <456> +17:38:32 Transaction Type : REQUEST +17:38:32 Received From : +17:38:32 ============================================================================ +17:38:32 FNo. Len. Field Value +17:38:32 ============================================================================ +17:38:32 [ 1] [ 4] [0800] +17:38:32 [ 7] [ 10] [0320103738] +17:38:32 [ 11] [ 6] [157505] +17:38:32 [ 70] [ 3] [301] +17:38:32 ============================================================================ +17:38:32 + + +waiting on router queue for slot.... +17:38:32 Sending to : +17:38:32 ============================================================================ +17:38:32 ============================================================================ +17:38:32 Slot Id : <456> +17:38:32 Transaction Type : RESPONSE +17:38:32 Received From : +17:38:32 ============================================================================ +17:38:32 FNo. Len. Field Value +17:38:32 ============================================================================ +17:38:32 [ 1] [ 4] [0810] +17:38:32 [ 7] [ 10] [0320103738] +17:38:32 [ 11] [ 6] [157505] +17:38:32 [ 39] [ 2] [00] +17:38:32 [ 70] [ 3] [301] +17:38:32 ============================================================================ +17:38:32 Calculate Source COMM Id = 2 +17:38:32 ============================================================================ +17:38:32 + + +waiting on router queue for slot.... +17:38:32 ============================================================================ +17:38:32 Slot Id : <424> +17:38:32 Transaction Type : RESPONSE +17:38:32 Received From : +17:38:32 ============================================================================ +17:38:32 FNo. Len. Field Value +17:38:32 ============================================================================ +17:38:32 [ 1] [ 4] [0210] +17:38:32 [ 2] [ 16] [6213544002251145] +17:38:32 [ 3] [ 6] [011000] +17:38:32 [ 4] [ 12] [000050000000] +17:38:32 [ 7] [ 10] [0320173850] +17:38:32 [ 11] [ 6] [209725] +17:38:32 [ 12] [ 6] [173356] +17:38:32 [ 13] [ 4] [0320] +17:38:32 [ 15] [ 4] [0320] +17:38:32 [ 18] [ 4] [6011] +17:38:32 [ 19] [ 3] [418] +17:38:32 [ 32] [ 6] [198901] +17:38:32 [ 35] [ 32] [6213544002251145=491212015114501] +17:38:32 [ 37] [ 12] [507917209725] +17:38:32 [ 38] [ 6] [425243] +17:38:32 [ 39] [ 2] [00] +17:38:32 [ 41] [ 8] [19529001] +17:38:32 [ 49] [ 3] [418] +17:38:32 [ 54] [ 40] [1001418C0000127836811002418C000012783681] +17:38:32 ============================================================================ +17:38:32 Calculate Source COMM Id = 5 +17:38:32 ============================================================================ +17:38:32 + + +waiting on router queue for slot.... +17:38:39 ============================================================================ +17:38:39 Slot Id : <445> +17:38:39 Transaction Type : REQUEST +17:38:39 Received From : +17:38:39 ============================================================================ +17:38:39 FNo. Len. Field Value +17:38:39 ============================================================================ +17:38:39 [ 1] [ 4] [0200] +17:38:39 [ 2] [ 16] [6688990602446104] +17:38:39 [ 3] [ 6] [011000] +17:38:39 [ 4] [ 12] [000010000000] +17:38:39 [ 7] [ 10] [0320173834] +17:38:39 [ 11] [ 6] [818076] +17:38:39 [ 12] [ 6] [173834] +17:38:39 [ 13] [ 4] [0320] +17:38:39 [ 15] [ 4] [0320] +17:38:39 [ 18] [ 4] [6011] +17:38:39 [ 22] [ 3] [900] +17:38:39 [ 25] [ 2] [02] +17:38:39 [ 28] [ 9] [D00002000] +17:38:39 [ 32] [ 6] [621354] +17:38:39 [ 35] [ 37] [6688990602446104=43050061610421800000] +17:38:39 [ 37] [ 12] [507905262434] +17:38:39 [ 41] [ 8] [19000900] +17:38:39 [ 42] [ 15] [NATIVE ] +17:38:39 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +17:38:39 [ 49] [ 3] [418] +17:38:39 [ 52] [ 16] [E2F8C1F856C3BCA2] +17:38:39 ============================================================================ +17:38:39 + + +waiting on router queue for slot.... +17:38:39 Sending to : +17:38:39 ============================================================================ +17:38:39 Sending to : +17:38:39 ============================================================================ +17:38:39 ============================================================================ +17:38:39 Slot Id : <445> +17:38:39 Transaction Type : REQUEST +17:38:39 Received From : +17:38:39 ============================================================================ +17:38:39 FNo. Len. Field Value +17:38:39 ============================================================================ +17:38:39 [ 1] [ 4] [0200] +17:38:39 [ 2] [ 16] [6688990602446104] +17:38:39 [ 3] [ 6] [011000] +17:38:39 [ 4] [ 12] [000010000000] +17:38:39 [ 7] [ 10] [0320173834] +17:38:39 [ 11] [ 6] [818076] +17:38:39 [ 12] [ 6] [173834] +17:38:39 [ 13] [ 4] [0320] +17:38:39 [ 15] [ 4] [0320] +17:38:39 [ 18] [ 4] [6011] +17:38:39 [ 22] [ 3] [900] +17:38:39 [ 25] [ 2] [02] +17:38:39 [ 28] [ 9] [D00002000] +17:38:39 [ 32] [ 6] [621354] +17:38:39 [ 35] [ 37] [6688990602446104=43050061610421800000] +17:38:39 [ 37] [ 12] [507905262434] +17:38:39 [ 41] [ 8] [19000900] +17:38:39 [ 42] [ 15] [NATIVE ] +17:38:39 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +17:38:39 [ 49] [ 3] [418] +17:38:39 [ 52] [ 16] [E2F8C1F856C3BCA2] +17:38:39 ============================================================================ +17:38:39 + + +waiting on router queue for slot.... +17:38:39 Sending to : +17:38:39 ============================================================================ +17:38:39 ============================================================================ +17:38:39 Slot Id : <445> +17:38:39 Transaction Type : REQUEST +17:38:39 Received From : +17:38:39 ============================================================================ +17:38:39 FNo. Len. Field Value +17:38:39 ============================================================================ +17:38:39 [ 1] [ 4] [0200] +17:38:39 [ 2] [ 16] [6688990602446104] +17:38:39 [ 3] [ 6] [011000] +17:38:39 [ 4] [ 12] [000010000000] +17:38:39 [ 7] [ 10] [0320173834] +17:38:39 [ 11] [ 6] [818076] +17:38:39 [ 12] [ 6] [173834] +17:38:39 [ 13] [ 4] [0320] +17:38:39 [ 15] [ 4] [0320] +17:38:39 [ 18] [ 4] [6011] +17:38:39 [ 22] [ 3] [900] +17:38:39 [ 25] [ 2] [02] +17:38:39 [ 28] [ 9] [D00002000] +17:38:39 [ 32] [ 6] [621354] +17:38:39 [ 35] [ 37] [6688990602446104=43050061610421800000] +17:38:39 [ 37] [ 12] [507905262434] +17:38:39 [ 41] [ 8] [19000900] +17:38:39 [ 42] [ 15] [NATIVE ] +17:38:39 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +17:38:39 [ 49] [ 3] [418] +17:38:39 [ 52] [ 16] [12D160051890CAD1] +17:38:39 ============================================================================ +17:38:39 + + +waiting on router queue for slot.... +17:38:39 Sending to : <4> +17:38:39 ============================================================================ +17:38:40 ============================================================================ +17:38:40 Slot Id : <445> +17:38:40 Transaction Type : RESPONSE +17:38:40 Received From : +17:38:40 ============================================================================ +17:38:40 FNo. Len. Field Value +17:38:40 ============================================================================ +17:38:40 [ 1] [ 4] [0210] +17:38:40 [ 2] [ 16] [6688990602446104] +17:38:40 [ 3] [ 6] [011000] +17:38:40 [ 4] [ 12] [000010000000] +17:38:40 [ 11] [ 6] [818076] +17:38:40 [ 12] [ 6] [173834] +17:38:40 [ 15] [ 4] [0320] +17:38:40 [ 18] [ 4] [6011] +17:38:40 [ 32] [ 6] [621354] +17:38:40 [ 35] [ 37] [6688990602446104=43050061610421800000] +17:38:40 [ 37] [ 12] [507905262434] +17:38:40 [ 38] [ 6] [263106] +17:38:40 [ 39] [ 2] [00] +17:38:40 [ 41] [ 8] [19000900] +17:38:40 [ 49] [ 3] [418] +17:38:40 [ 54] [ 20] [1002418C000295226528] +17:38:40 ============================================================================ +17:38:40 Sending to : +17:38:40 ============================================================================ +17:38:40 + + +waiting on router queue for slot.... +17:38:41 ============================================================================ +17:38:41 Slot Id : <438> +17:38:41 Transaction Type : REQUEST +17:38:41 Received From : +17:38:41 ============================================================================ +17:38:41 FNo. Len. Field Value +17:38:41 ============================================================================ +17:38:41 [ 1] [ 4] [0200] +17:38:41 [ 2] [ 16] [1808931300000575] +17:38:41 [ 3] [ 6] [011000] +17:38:41 [ 4] [ 12] [000010000000] +17:38:41 [ 7] [ 10] [0320173836] +17:38:41 [ 11] [ 6] [818091] +17:38:41 [ 12] [ 6] [173836] +17:38:41 [ 13] [ 4] [0320] +17:38:41 [ 15] [ 4] [0320] +17:38:41 [ 18] [ 4] [6011] +17:38:41 [ 22] [ 3] [900] +17:38:41 [ 25] [ 2] [02] +17:38:41 [ 28] [ 9] [D00002000] +17:38:41 [ 32] [ 6] [621354] +17:38:41 [ 35] [ 27] [1808931300000575=1803500053] +17:38:41 [ 37] [ 12] [507903444095] +17:38:41 [ 41] [ 8] [06001700] +17:38:41 [ 42] [ 15] [NATIVE ] +17:38:41 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:38:41 [ 49] [ 3] [418] +17:38:41 [ 52] [ 16] [ABBCF4C31AC32534] +17:38:41 ============================================================================ +17:38:41 + + +waiting on router queue for slot.... +17:38:41 Sending to : +17:38:41 ============================================================================ +17:38:41 Sending to : +17:38:41 ============================================================================ +17:38:41 ============================================================================ +17:38:41 Slot Id : <438> +17:38:41 Transaction Type : REQUEST +17:38:41 Received From : +17:38:41 ============================================================================ +17:38:41 FNo. Len. Field Value +17:38:41 ============================================================================ +17:38:41 [ 1] [ 4] [0200] +17:38:41 [ 2] [ 16] [1808931300000575] +17:38:41 [ 3] [ 6] [011000] +17:38:41 [ 4] [ 12] [000010000000] +17:38:41 [ 7] [ 10] [0320173836] +17:38:41 [ 11] [ 6] [818091] +17:38:41 [ 12] [ 6] [173836] +17:38:41 [ 13] [ 4] [0320] +17:38:41 [ 15] [ 4] [0320] +17:38:41 [ 18] [ 4] [6011] +17:38:41 [ 22] [ 3] [900] +17:38:41 [ 25] [ 2] [02] +17:38:41 [ 28] [ 9] [D00002000] +17:38:41 [ 32] [ 6] [621354] +17:38:41 [ 35] [ 27] [1808931300000575=1803500053] +17:38:41 [ 37] [ 12] [507903444095] +17:38:41 [ 41] [ 8] [06001700] +17:38:41 [ 42] [ 15] [NATIVE ] +17:38:41 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:38:41 [ 49] [ 3] [418] +17:38:41 [ 52] [ 16] [ABBCF4C31AC32534] +17:38:41 ============================================================================ +17:38:41 + + +waiting on router queue for slot.... +17:38:41 Sending to : +17:38:41 ============================================================================ +17:38:41 ============================================================================ +17:38:41 Slot Id : <438> +17:38:41 Transaction Type : REQUEST +17:38:41 Received From : +17:38:41 ============================================================================ +17:38:41 FNo. Len. Field Value +17:38:41 ============================================================================ +17:38:41 [ 1] [ 4] [0200] +17:38:41 [ 2] [ 16] [1808931300000575] +17:38:41 [ 3] [ 6] [011000] +17:38:41 [ 4] [ 12] [000010000000] +17:38:41 [ 7] [ 10] [0320173836] +17:38:41 [ 11] [ 6] [818091] +17:38:41 [ 12] [ 6] [173836] +17:38:41 [ 13] [ 4] [0320] +17:38:41 [ 15] [ 4] [0320] +17:38:41 [ 18] [ 4] [6011] +17:38:41 [ 22] [ 3] [900] +17:38:41 [ 25] [ 2] [02] +17:38:41 [ 28] [ 9] [D00002000] +17:38:41 [ 32] [ 6] [621354] +17:38:41 [ 35] [ 27] [1808931300000575=1803500053] +17:38:41 [ 37] [ 12] [507903444095] +17:38:41 [ 41] [ 8] [06001700] +17:38:41 [ 42] [ 15] [NATIVE ] +17:38:41 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:38:41 [ 49] [ 3] [418] +17:38:41 [ 52] [ 16] [558777E7202294B8] +17:38:41 ============================================================================ +17:38:41 + + +waiting on router queue for slot.... +17:38:41 Sending to : <2> +17:38:41 ============================================================================ +17:38:42 ============================================================================ +17:38:42 Slot Id : <445> +17:38:42 Transaction Type : RESPONSE +17:38:42 Received From : +17:38:42 ============================================================================ +17:38:42 FNo. Len. Field Value +17:38:42 ============================================================================ +17:38:42 [ 1] [ 4] [0210] +17:38:42 [ 2] [ 16] [6688990602446104] +17:38:42 [ 3] [ 6] [011000] +17:38:42 [ 4] [ 12] [000010000000] +17:38:42 [ 11] [ 6] [818076] +17:38:42 [ 12] [ 6] [173834] +17:38:42 [ 15] [ 4] [0320] +17:38:42 [ 18] [ 4] [6011] +17:38:42 [ 32] [ 6] [621354] +17:38:42 [ 35] [ 37] [6688990602446104=43050061610421800000] +17:38:42 [ 37] [ 12] [507905262434] +17:38:42 [ 38] [ 6] [263106] +17:38:42 [ 39] [ 2] [00] +17:38:42 [ 41] [ 8] [19000900] +17:38:42 [ 49] [ 3] [418] +17:38:42 [ 54] [ 20] [1002418C000295226528] +17:38:42 ============================================================================ +17:38:42 Calculate Source COMM Id = 0 +17:38:42 ============================================================================ +17:38:42 + + +waiting on router queue for slot.... +17:38:46 ============================================================================ +17:38:46 Slot Id : <438> +17:38:46 Transaction Type : RESPONSE +17:38:46 Received From : +17:38:46 ============================================================================ +17:38:46 FNo. Len. Field Value +17:38:46 ============================================================================ +17:38:46 [ 1] [ 4] [0210] +17:38:46 [ 2] [ 16] [1808931300000575] +17:38:46 [ 3] [ 6] [011000] +17:38:46 [ 4] [ 12] [000010000000] +17:38:46 [ 6] [ 12] [000010000000] +17:38:46 [ 7] [ 10] [0320173836] +17:38:46 [ 11] [ 6] [818091] +17:38:46 [ 12] [ 6] [173836] +17:38:46 [ 13] [ 4] [0320] +17:38:46 [ 18] [ 4] [6011] +17:38:46 [ 19] [ 3] [418] +17:38:46 [ 22] [ 3] [021] +17:38:46 [ 32] [ 6] [621354] +17:38:46 [ 35] [ 27] [1808931300000575=1803500053] +17:38:46 [ 37] [ 12] [507903444095] +17:38:46 [ 38] [ 6] [818091] +17:38:46 [ 39] [ 2] [00] +17:38:46 [ 41] [ 8] [06001700] +17:38:46 [ 49] [ 3] [418] +17:38:46 [ 52] [ 16] [558777E7202294B8] +17:38:46 [ 54] [ 20] [1001418C000993126400] +17:38:46 ============================================================================ +17:38:46 Sending to : +17:38:46 ============================================================================ +17:38:46 + + +waiting on router queue for slot.... +17:38:47 ============================================================================ +17:38:47 Slot Id : <442> +17:38:47 Transaction Type : REQUEST +17:38:47 Received From : +17:38:47 ============================================================================ +17:38:47 FNo. Len. Field Value +17:38:47 ============================================================================ +17:38:47 [ 1] [ 4] [0800] +17:38:47 [ 2] [ 5] [02531] +17:38:47 [ 3] [ 6] [579178] +17:38:47 [ 7] [ 10] [0320103847] +17:38:47 [ 11] [ 6] [807436] +17:38:47 [ 15] [ 10] [0320103847] +17:38:47 [ 37] [ 11] [57917807436] +17:38:47 [ 70] [ 3] [001] +17:38:47 ============================================================================ +17:38:47 + + +waiting on router queue for slot.... +17:38:47 ============================================================================ +17:38:47 Slot Id : <442> +17:38:47 Transaction Type : RESPONSE +17:38:47 Received From : +17:38:47 ============================================================================ +17:38:47 FNo. Len. Field Value +17:38:47 ============================================================================ +17:38:47 [ 1] [ 4] [0810] +17:38:47 [ 7] [ 10] [0320103847] +17:38:47 [ 11] [ 6] [807436] +17:38:47 [ 15] [ 4] [0320] +17:38:47 [ 37] [ 12] [57917807436] +17:38:47 [ 39] [ 2] [00] +17:38:47 [ 70] [ 3] [001] +17:38:47 ============================================================================ +17:38:47 Sending to : +17:38:47 ============================================================================ +17:38:47 + + +waiting on router queue for slot.... +17:38:47 ============================================================================ +17:38:47 Slot Id : <438> +17:38:47 Transaction Type : RESPONSE +17:38:47 Received From : +17:38:47 ============================================================================ +17:38:47 FNo. Len. Field Value +17:38:47 ============================================================================ +17:38:47 [ 1] [ 4] [0210] +17:38:47 [ 2] [ 16] [1808931300000575] +17:38:47 [ 3] [ 6] [011000] +17:38:47 [ 4] [ 12] [000010000000] +17:38:47 [ 6] [ 12] [000010000000] +17:38:47 [ 7] [ 10] [0320173836] +17:38:47 [ 11] [ 6] [818091] +17:38:47 [ 12] [ 6] [173836] +17:38:47 [ 13] [ 4] [0320] +17:38:47 [ 18] [ 4] [6011] +17:38:47 [ 19] [ 3] [418] +17:38:47 [ 22] [ 3] [021] +17:38:47 [ 32] [ 6] [621354] +17:38:47 [ 35] [ 27] [1808931300000575=1803500053] +17:38:47 [ 37] [ 12] [507903444095] +17:38:47 [ 38] [ 6] [818091] +17:38:47 [ 39] [ 2] [00] +17:38:47 [ 41] [ 8] [06001700] +17:38:47 [ 49] [ 3] [418] +17:38:47 [ 52] [ 16] [558777E7202294B8] +17:38:47 [ 54] [ 20] [1001418C000993126400] +17:38:47 ============================================================================ +17:38:47 Calculate Source COMM Id = 0 +17:38:47 ============================================================================ +17:38:47 + + +waiting on router queue for slot.... +17:38:53 ============================================================================ +17:38:53 Slot Id : <435> +17:38:53 Transaction Type : REQUEST +17:38:53 Received From : +17:38:53 ============================================================================ +17:38:53 FNo. Len. Field Value +17:38:53 ============================================================================ +17:38:53 [ 1] [ 4] [0800] +17:38:53 [ 7] [ 10] [0320103800] +17:38:53 [ 11] [ 6] [157506] +17:38:53 [ 70] [ 3] [301] +17:38:53 ============================================================================ +17:38:53 + + +waiting on router queue for slot.... +17:38:53 Sending to : +17:38:53 ============================================================================ +17:38:53 ============================================================================ +17:38:53 Slot Id : <435> +17:38:53 Transaction Type : RESPONSE +17:38:53 Received From : +17:38:53 ============================================================================ +17:38:53 FNo. Len. Field Value +17:38:53 ============================================================================ +17:38:53 [ 1] [ 4] [0810] +17:38:53 [ 7] [ 10] [0320103800] +17:38:53 [ 11] [ 6] [157506] +17:38:53 [ 39] [ 2] [00] +17:38:53 [ 70] [ 3] [301] +17:38:53 ============================================================================ +17:38:53 Calculate Source COMM Id = 2 +17:38:53 ============================================================================ +17:38:53 + + +waiting on router queue for slot.... +17:39:04 ============================================================================ +17:39:04 Slot Id : <427> +17:39:04 Transaction Type : REQUEST +17:39:04 Received From : +17:39:04 ============================================================================ +17:39:04 FNo. Len. Field Value +17:39:04 ============================================================================ +17:39:04 [ 1] [ 4] [0800] +17:39:04 [ 7] [ 10] [0320103810] +17:39:04 [ 11] [ 6] [157507] +17:39:04 [ 70] [ 3] [301] +17:39:04 ============================================================================ +17:39:04 + + +waiting on router queue for slot.... +17:39:04 Sending to : +17:39:04 ============================================================================ +17:39:04 ============================================================================ +17:39:04 Slot Id : <427> +17:39:04 Transaction Type : RESPONSE +17:39:04 Received From : +17:39:04 ============================================================================ +17:39:04 FNo. Len. Field Value +17:39:04 ============================================================================ +17:39:04 [ 1] [ 4] [0810] +17:39:04 [ 7] [ 10] [0320103810] +17:39:04 [ 11] [ 6] [157507] +17:39:04 [ 39] [ 2] [00] +17:39:04 [ 70] [ 3] [301] +17:39:04 ============================================================================ +17:39:04 Calculate Source COMM Id = 2 +17:39:04 ============================================================================ +17:39:04 + + +waiting on router queue for slot.... +17:39:04 ============================================================================ +17:39:04 Slot Id : <431> +17:39:04 Transaction Type : REQUEST +17:39:04 Received From : +17:39:04 ============================================================================ +17:39:04 FNo. Len. Field Value +17:39:04 ============================================================================ +17:39:04 [ 1] [ 4] [0200] +17:39:04 [ 2] [ 16] [6213548000238921] +17:39:04 [ 3] [ 6] [010000] +17:39:04 [ 4] [ 12] [000010000000] +17:39:04 [ 7] [ 10] [0320173654] +17:39:04 [ 11] [ 6] [953699] +17:39:04 [ 12] [ 6] [173654] +17:39:04 [ 13] [ 4] [0320] +17:39:04 [ 15] [ 4] [0320] +17:39:04 [ 18] [ 4] [6011] +17:39:04 [ 19] [ 3] [418] +17:39:04 [ 22] [ 3] [021] +17:39:04 [ 25] [ 2] [01] +17:39:04 [ 28] [ 9] [D00002000] +17:39:04 [ 32] [ 6] [668899] +17:39:04 [ 35] [ 32] [6213548000238921=180112013892233] +17:39:04 [ 37] [ 12] [507900502550] +17:39:04 [ 41] [ 8] [03011001] +17:39:04 [ 42] [ 15] [APT ] +17:39:04 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +17:39:04 [ 49] [ 3] [418] +17:39:04 [ 52] [ 16] [A5E34974B06E4115] +17:39:04 ============================================================================ +17:39:04 + + +waiting on router queue for slot.... +17:39:04 Sending to : +17:39:04 ============================================================================ +17:39:04 Sending to : +17:39:04 ============================================================================ +17:39:05 ============================================================================ +17:39:05 Slot Id : <431> +17:39:05 Transaction Type : REQUEST +17:39:05 Received From : +17:39:05 ============================================================================ +17:39:05 FNo. Len. Field Value +17:39:05 ============================================================================ +17:39:05 [ 1] [ 4] [0200] +17:39:05 [ 2] [ 16] [6213548000238921] +17:39:05 [ 3] [ 6] [010000] +17:39:05 [ 4] [ 12] [000010000000] +17:39:05 [ 7] [ 10] [0320173654] +17:39:05 [ 11] [ 6] [953699] +17:39:05 [ 12] [ 6] [173654] +17:39:05 [ 13] [ 4] [0320] +17:39:05 [ 15] [ 4] [0320] +17:39:05 [ 18] [ 4] [6011] +17:39:05 [ 19] [ 3] [418] +17:39:05 [ 22] [ 3] [021] +17:39:05 [ 25] [ 2] [01] +17:39:05 [ 28] [ 9] [D00002000] +17:39:05 [ 32] [ 6] [668899] +17:39:05 [ 35] [ 32] [6213548000238921=180112013892233] +17:39:05 [ 37] [ 12] [507900502550] +17:39:05 [ 41] [ 8] [03011001] +17:39:05 [ 42] [ 15] [APT ] +17:39:05 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +17:39:05 [ 49] [ 3] [418] +17:39:05 [ 52] [ 16] [A5E34974B06E4115] +17:39:05 ============================================================================ +17:39:05 + + +waiting on router queue for slot.... +17:39:05 Sending to : +17:39:05 ============================================================================ +17:39:05 ============================================================================ +17:39:05 Slot Id : <431> +17:39:05 Transaction Type : REQUEST +17:39:05 Received From : +17:39:05 ============================================================================ +17:39:05 FNo. Len. Field Value +17:39:05 ============================================================================ +17:39:05 [ 1] [ 4] [0200] +17:39:05 [ 2] [ 16] [6213548000238921] +17:39:05 [ 3] [ 6] [010000] +17:39:05 [ 4] [ 12] [000010000000] +17:39:05 [ 7] [ 10] [0320173654] +17:39:05 [ 11] [ 6] [953699] +17:39:05 [ 12] [ 6] [173654] +17:39:05 [ 13] [ 4] [0320] +17:39:05 [ 15] [ 4] [0320] +17:39:05 [ 18] [ 4] [6011] +17:39:05 [ 19] [ 3] [418] +17:39:05 [ 22] [ 3] [021] +17:39:05 [ 25] [ 2] [01] +17:39:05 [ 28] [ 9] [D00002000] +17:39:05 [ 32] [ 6] [668899] +17:39:05 [ 35] [ 32] [6213548000238921=180112013892233] +17:39:05 [ 37] [ 12] [507900502550] +17:39:05 [ 41] [ 8] [03011001] +17:39:05 [ 42] [ 15] [APT ] +17:39:05 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +17:39:05 [ 49] [ 3] [418] +17:39:05 [ 52] [ 16] [ADF42614C05B06D3] +17:39:05 ============================================================================ +17:39:05 + + +waiting on router queue for slot.... +17:39:05 Sending to : <0> +17:39:05 ============================================================================ +17:39:05 ============================================================================ +17:39:05 Slot Id : <462> +17:39:05 Transaction Type : REQUEST +17:39:05 Received From : +17:39:05 ============================================================================ +17:39:05 FNo. Len. Field Value +17:39:05 ============================================================================ +17:39:05 [ 1] [ 4] [0200] +17:39:05 [ 2] [ 16] [6213544001405106] +17:39:05 [ 3] [ 6] [010000] +17:39:05 [ 4] [ 12] [000010000000] +17:39:05 [ 7] [ 10] [0320174652] +17:39:05 [ 11] [ 6] [223780] +17:39:05 [ 12] [ 6] [174652] +17:39:05 [ 13] [ 4] [0320] +17:39:05 [ 14] [ 4] [4912] +17:39:05 [ 15] [ 4] [0320] +17:39:05 [ 18] [ 4] [6011] +17:39:05 [ 22] [ 3] [900] +17:39:05 [ 25] [ 2] [02] +17:39:05 [ 28] [ 9] [D00002000] +17:39:05 [ 32] [ 6] [220699] +17:39:05 [ 35] [ 32] [6213544001405106=491212010510395] +17:39:05 [ 37] [ 12] [507900118796] +17:39:05 [ 41] [ 8] [01001100] +17:39:05 [ 42] [ 15] [APTRA ] +17:39:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:39:05 [ 49] [ 3] [418] +17:39:05 [ 52] [ 16] [67B2DCB303453E66] +17:39:05 ============================================================================ +17:39:05 + + +waiting on router queue for slot.... +17:39:05 Sending to : +17:39:05 ============================================================================ +17:39:05 Sending to : +17:39:05 ============================================================================ +17:39:05 ============================================================================ +17:39:05 Slot Id : <431> +17:39:05 Transaction Type : RESPONSE +17:39:05 Received From : +17:39:05 ============================================================================ +17:39:05 FNo. Len. Field Value +17:39:05 ============================================================================ +17:39:05 [ 1] [ 4] [0210] +17:39:05 [ 2] [ 16] [6213548000238921] +17:39:05 [ 3] [ 6] [010000] +17:39:05 [ 4] [ 12] [000010000000] +17:39:05 [ 7] [ 10] [0320173654] +17:39:05 [ 11] [ 6] [953699] +17:39:05 [ 12] [ 6] [173654] +17:39:05 [ 13] [ 4] [0320] +17:39:05 [ 15] [ 4] [0320] +17:39:05 [ 18] [ 4] [6011] +17:39:05 [ 19] [ 3] [418] +17:39:05 [ 32] [ 6] [668899] +17:39:05 [ 35] [ 32] [6213548000238921=180112013892233] +17:39:05 [ 37] [ 12] [507900502550] +17:39:05 [ 38] [ 6] [276916] +17:39:05 [ 39] [ 2] [00] +17:39:05 [ 41] [ 8] [03011001] +17:39:05 [ 49] [ 3] [418] +17:39:05 [ 54] [ 40] [0001418C0000237128120002418C000023712812] +17:39:05 ============================================================================ +17:39:05 Sending to : +17:39:05 ============================================================================ +17:39:05 + + +waiting on router queue for slot.... +17:39:06 ============================================================================ +17:39:06 Slot Id : <462> +17:39:06 Transaction Type : REQUEST +17:39:06 Received From : +17:39:06 ============================================================================ +17:39:06 FNo. Len. Field Value +17:39:06 ============================================================================ +17:39:06 [ 1] [ 4] [0200] +17:39:06 [ 2] [ 16] [6213544001405106] +17:39:06 [ 3] [ 6] [010000] +17:39:06 [ 4] [ 12] [000010000000] +17:39:06 [ 7] [ 10] [0320174652] +17:39:06 [ 11] [ 6] [223780] +17:39:06 [ 12] [ 6] [174652] +17:39:06 [ 13] [ 4] [0320] +17:39:06 [ 14] [ 4] [4912] +17:39:06 [ 15] [ 4] [0320] +17:39:06 [ 18] [ 4] [6011] +17:39:06 [ 22] [ 3] [900] +17:39:06 [ 25] [ 2] [02] +17:39:06 [ 28] [ 9] [D00002000] +17:39:06 [ 32] [ 6] [220699] +17:39:06 [ 35] [ 32] [6213544001405106=491212010510395] +17:39:06 [ 37] [ 12] [507900118796] +17:39:06 [ 41] [ 8] [01001100] +17:39:06 [ 42] [ 15] [APTRA ] +17:39:06 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:39:06 [ 49] [ 3] [418] +17:39:06 [ 52] [ 16] [67B2DCB303453E66] +17:39:06 ============================================================================ +17:39:06 + + +waiting on router queue for slot.... +17:39:06 Sending to : +17:39:06 ============================================================================ +17:39:06 ============================================================================ +17:39:06 Slot Id : <462> +17:39:06 Transaction Type : REQUEST +17:39:06 Received From : +17:39:06 ============================================================================ +17:39:06 FNo. Len. Field Value +17:39:06 ============================================================================ +17:39:06 [ 1] [ 4] [0200] +17:39:06 [ 2] [ 16] [6213544001405106] +17:39:06 [ 3] [ 6] [010000] +17:39:06 [ 4] [ 12] [000010000000] +17:39:06 [ 7] [ 10] [0320174652] +17:39:06 [ 11] [ 6] [223780] +17:39:06 [ 12] [ 6] [174652] +17:39:06 [ 13] [ 4] [0320] +17:39:06 [ 14] [ 4] [4912] +17:39:06 [ 15] [ 4] [0320] +17:39:06 [ 18] [ 4] [6011] +17:39:06 [ 22] [ 3] [900] +17:39:06 [ 25] [ 2] [02] +17:39:06 [ 28] [ 9] [D00002000] +17:39:06 [ 32] [ 6] [220699] +17:39:06 [ 35] [ 32] [6213544001405106=491212010510395] +17:39:06 [ 37] [ 12] [507900118796] +17:39:06 [ 41] [ 8] [01001100] +17:39:06 [ 42] [ 15] [APTRA ] +17:39:06 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:39:06 [ 49] [ 3] [418] +17:39:06 [ 52] [ 16] [484E2DB53393A5A7] +17:39:06 ============================================================================ +17:39:06 + + +waiting on router queue for slot.... +17:39:06 Sending to : <0> +17:39:06 ============================================================================ +17:39:06 ============================================================================ +17:39:06 Slot Id : <462> +17:39:06 Transaction Type : RESPONSE +17:39:06 Received From : +17:39:06 ============================================================================ +17:39:06 FNo. Len. Field Value +17:39:06 ============================================================================ +17:39:06 [ 1] [ 4] [0210] +17:39:06 [ 2] [ 16] [6213544001405106] +17:39:06 [ 3] [ 6] [010000] +17:39:06 [ 4] [ 12] [000010000000] +17:39:06 [ 7] [ 10] [0320174652] +17:39:06 [ 11] [ 6] [223780] +17:39:06 [ 12] [ 6] [174652] +17:39:06 [ 13] [ 4] [0320] +17:39:06 [ 15] [ 4] [0320] +17:39:06 [ 18] [ 4] [6011] +17:39:06 [ 32] [ 6] [220699] +17:39:06 [ 35] [ 32] [6213544001405106=491212010510395] +17:39:06 [ 37] [ 12] [507900118796] +17:39:06 [ 38] [ 6] [112892] +17:39:06 [ 39] [ 2] [00] +17:39:06 [ 41] [ 8] [01001100] +17:39:06 [ 49] [ 3] [418] +17:39:06 [ 54] [ 40] [0001418C0000790113510002418C000079011351] +17:39:06 ============================================================================ +17:39:06 Sending to : +17:39:06 ============================================================================ +17:39:06 + + +waiting on router queue for slot.... +17:39:07 ============================================================================ +17:39:07 Slot Id : <431> +17:39:07 Transaction Type : RESPONSE +17:39:07 Received From : +17:39:07 ============================================================================ +17:39:07 FNo. Len. Field Value +17:39:07 ============================================================================ +17:39:07 [ 1] [ 4] [0210] +17:39:07 [ 2] [ 16] [6213548000238921] +17:39:07 [ 3] [ 6] [010000] +17:39:07 [ 4] [ 12] [000010000000] +17:39:07 [ 7] [ 10] [0320173654] +17:39:07 [ 11] [ 6] [953699] +17:39:07 [ 12] [ 6] [173654] +17:39:07 [ 13] [ 4] [0320] +17:39:07 [ 15] [ 4] [0320] +17:39:07 [ 18] [ 4] [6011] +17:39:07 [ 19] [ 3] [418] +17:39:07 [ 32] [ 6] [668899] +17:39:07 [ 35] [ 32] [6213548000238921=180112013892233] +17:39:07 [ 37] [ 12] [507900502550] +17:39:07 [ 38] [ 6] [276916] +17:39:07 [ 39] [ 2] [00] +17:39:07 [ 41] [ 8] [03011001] +17:39:07 [ 49] [ 3] [418] +17:39:07 [ 54] [ 40] [0001418C0000237128120002418C000023712812] +17:39:07 ============================================================================ +17:39:07 Calculate Source COMM Id = 4 +17:39:07 ============================================================================ +17:39:07 + + +waiting on router queue for slot.... +17:39:09 ============================================================================ +17:39:09 Slot Id : <462> +17:39:09 Transaction Type : RESPONSE +17:39:09 Received From : +17:39:09 ============================================================================ +17:39:09 FNo. Len. Field Value +17:39:09 ============================================================================ +17:39:09 [ 1] [ 4] [0210] +17:39:09 [ 2] [ 16] [6213544001405106] +17:39:09 [ 3] [ 6] [010000] +17:39:09 [ 4] [ 12] [000010000000] +17:39:09 [ 7] [ 10] [0320174652] +17:39:09 [ 11] [ 6] [223780] +17:39:09 [ 12] [ 6] [174652] +17:39:09 [ 13] [ 4] [0320] +17:39:09 [ 15] [ 4] [0320] +17:39:09 [ 18] [ 4] [6011] +17:39:09 [ 32] [ 6] [220699] +17:39:09 [ 35] [ 32] [6213544001405106=491212010510395] +17:39:09 [ 37] [ 12] [507900118796] +17:39:09 [ 38] [ 6] [112892] +17:39:09 [ 39] [ 2] [00] +17:39:09 [ 41] [ 8] [01001100] +17:39:09 [ 49] [ 3] [418] +17:39:09 [ 54] [ 40] [0001418C0000790113510002418C000079011351] +17:39:09 ============================================================================ +17:39:09 Calculate Source COMM Id = 1 +17:39:09 ============================================================================ +17:39:09 + + +waiting on router queue for slot.... +17:39:14 ============================================================================ +17:39:14 Slot Id : <428> +17:39:14 Transaction Type : REQUEST +17:39:14 Received From : +17:39:14 ============================================================================ +17:39:14 FNo. Len. Field Value +17:39:14 ============================================================================ +17:39:14 [ 1] [ 4] [0800] +17:39:14 [ 7] [ 10] [0320103821] +17:39:14 [ 11] [ 6] [157508] +17:39:14 [ 70] [ 3] [301] +17:39:14 ============================================================================ +17:39:14 + + +waiting on router queue for slot.... +17:39:14 Sending to : +17:39:14 ============================================================================ +17:39:14 ============================================================================ +17:39:14 Slot Id : <428> +17:39:14 Transaction Type : RESPONSE +17:39:14 Received From : +17:39:14 ============================================================================ +17:39:14 FNo. Len. Field Value +17:39:14 ============================================================================ +17:39:14 [ 1] [ 4] [0810] +17:39:14 [ 7] [ 10] [0320103821] +17:39:14 [ 11] [ 6] [157508] +17:39:14 [ 39] [ 2] [00] +17:39:14 [ 70] [ 3] [301] +17:39:14 ============================================================================ +17:39:14 Calculate Source COMM Id = 2 +17:39:14 ============================================================================ +17:39:14 + + +waiting on router queue for slot.... +17:39:25 ============================================================================ +17:39:25 Slot Id : <421> +17:39:25 Transaction Type : REQUEST +17:39:25 Received From : +17:39:25 ============================================================================ +17:39:25 FNo. Len. Field Value +17:39:25 ============================================================================ +17:39:25 [ 1] [ 4] [0800] +17:39:25 [ 7] [ 10] [0320103832] +17:39:25 [ 11] [ 6] [157509] +17:39:25 [ 70] [ 3] [301] +17:39:25 ============================================================================ +17:39:25 + + +waiting on router queue for slot.... +17:39:25 Sending to : +17:39:25 ============================================================================ +17:39:25 ============================================================================ +17:39:25 Slot Id : <421> +17:39:25 Transaction Type : RESPONSE +17:39:25 Received From : +17:39:25 ============================================================================ +17:39:25 FNo. Len. Field Value +17:39:25 ============================================================================ +17:39:25 [ 1] [ 4] [0810] +17:39:25 [ 7] [ 10] [0320103832] +17:39:25 [ 11] [ 6] [157509] +17:39:25 [ 39] [ 2] [00] +17:39:25 [ 70] [ 3] [301] +17:39:25 ============================================================================ +17:39:25 Calculate Source COMM Id = 2 +17:39:25 ============================================================================ +17:39:25 + + +waiting on router queue for slot.... +17:39:26 ============================================================================ +17:39:26 Slot Id : <451> +17:39:26 Transaction Type : REQUEST +17:39:26 Received From : +17:39:26 ============================================================================ +17:39:26 FNo. Len. Field Value +17:39:26 ============================================================================ +17:39:26 [ 1] [ 4] [0200] +17:39:26 [ 2] [ 16] [6688990602446104] +17:39:26 [ 3] [ 6] [301000] +17:39:26 [ 4] [ 12] [000000000000] +17:39:26 [ 7] [ 10] [0320173921] +17:39:26 [ 11] [ 6] [818241] +17:39:26 [ 12] [ 6] [173921] +17:39:26 [ 13] [ 4] [0320] +17:39:26 [ 15] [ 4] [0320] +17:39:26 [ 18] [ 4] [6011] +17:39:26 [ 22] [ 3] [900] +17:39:26 [ 25] [ 2] [02] +17:39:26 [ 28] [ 9] [D00000000] +17:39:26 [ 32] [ 6] [621354] +17:39:26 [ 35] [ 37] [6688990602446104=43050061610421800000] +17:39:26 [ 37] [ 12] [507905262435] +17:39:26 [ 41] [ 8] [19000900] +17:39:26 [ 42] [ 15] [NATIVE ] +17:39:26 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +17:39:26 [ 49] [ 3] [418] +17:39:26 [ 52] [ 16] [E2F8C1F856C3BCA2] +17:39:26 ============================================================================ +17:39:26 + + +waiting on router queue for slot.... +17:39:26 Sending to : +17:39:26 ============================================================================ +17:39:26 Sending to : +17:39:26 ============================================================================ +17:39:26 ============================================================================ +17:39:26 Slot Id : <451> +17:39:26 Transaction Type : REQUEST +17:39:26 Received From : +17:39:26 ============================================================================ +17:39:26 FNo. Len. Field Value +17:39:26 ============================================================================ +17:39:26 [ 1] [ 4] [0200] +17:39:26 [ 2] [ 16] [6688990602446104] +17:39:26 [ 3] [ 6] [301000] +17:39:26 [ 4] [ 12] [000000000000] +17:39:26 [ 7] [ 10] [0320173921] +17:39:26 [ 11] [ 6] [818241] +17:39:26 [ 12] [ 6] [173921] +17:39:26 [ 13] [ 4] [0320] +17:39:26 [ 15] [ 4] [0320] +17:39:26 [ 18] [ 4] [6011] +17:39:26 [ 22] [ 3] [900] +17:39:26 [ 25] [ 2] [02] +17:39:26 [ 28] [ 9] [D00000000] +17:39:26 [ 32] [ 6] [621354] +17:39:26 [ 35] [ 37] [6688990602446104=43050061610421800000] +17:39:26 [ 37] [ 12] [507905262435] +17:39:26 [ 41] [ 8] [19000900] +17:39:26 [ 42] [ 15] [NATIVE ] +17:39:26 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +17:39:26 [ 49] [ 3] [418] +17:39:26 [ 52] [ 16] [E2F8C1F856C3BCA2] +17:39:26 ============================================================================ +17:39:26 + + +waiting on router queue for slot.... +17:39:26 Sending to : +17:39:26 ============================================================================ +17:39:26 ============================================================================ +17:39:26 Slot Id : <451> +17:39:26 Transaction Type : REQUEST +17:39:26 Received From : +17:39:26 ============================================================================ +17:39:26 FNo. Len. Field Value +17:39:26 ============================================================================ +17:39:26 [ 1] [ 4] [0200] +17:39:26 [ 2] [ 16] [6688990602446104] +17:39:26 [ 3] [ 6] [301000] +17:39:26 [ 4] [ 12] [000000000000] +17:39:26 [ 7] [ 10] [0320173921] +17:39:26 [ 11] [ 6] [818241] +17:39:26 [ 12] [ 6] [173921] +17:39:26 [ 13] [ 4] [0320] +17:39:26 [ 15] [ 4] [0320] +17:39:26 [ 18] [ 4] [6011] +17:39:26 [ 22] [ 3] [900] +17:39:26 [ 25] [ 2] [02] +17:39:26 [ 28] [ 9] [D00000000] +17:39:26 [ 32] [ 6] [621354] +17:39:26 [ 35] [ 37] [6688990602446104=43050061610421800000] +17:39:26 [ 37] [ 12] [507905262435] +17:39:26 [ 41] [ 8] [19000900] +17:39:26 [ 42] [ 15] [NATIVE ] +17:39:26 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +17:39:26 [ 49] [ 3] [418] +17:39:26 [ 52] [ 16] [12D160051890CAD1] +17:39:26 ============================================================================ +17:39:26 + + +waiting on router queue for slot.... +17:39:26 Sending to : <4> +17:39:26 ============================================================================ +17:39:27 ============================================================================ +17:39:27 Slot Id : <451> +17:39:27 Transaction Type : RESPONSE +17:39:27 Received From : +17:39:27 ============================================================================ +17:39:27 FNo. Len. Field Value +17:39:27 ============================================================================ +17:39:27 [ 1] [ 4] [0210] +17:39:27 [ 2] [ 16] [6688990602446104] +17:39:27 [ 3] [ 6] [301000] +17:39:27 [ 4] [ 12] [000000000000] +17:39:27 [ 11] [ 6] [818241] +17:39:27 [ 12] [ 6] [173921] +17:39:27 [ 15] [ 4] [0320] +17:39:27 [ 18] [ 4] [6011] +17:39:27 [ 32] [ 6] [621354] +17:39:27 [ 35] [ 37] [6688990602446104=43050061610421800000] +17:39:27 [ 37] [ 12] [507905262435] +17:39:27 [ 38] [ 6] [098514] +17:39:27 [ 39] [ 2] [00] +17:39:27 [ 41] [ 8] [19000900] +17:39:27 [ 49] [ 3] [418] +17:39:27 [ 54] [ 20] [1002418C000295226528] +17:39:27 ============================================================================ +17:39:27 Sending to : +17:39:27 ============================================================================ +17:39:27 + + +waiting on router queue for slot.... +17:39:28 ============================================================================ +17:39:28 Slot Id : <422> +17:39:28 Transaction Type : REQUEST +17:39:28 Received From : +17:39:28 ============================================================================ +17:39:28 FNo. Len. Field Value +17:39:28 ============================================================================ +17:39:28 [ 1] [ 4] [0800] +17:39:28 [ 7] [ 10] [0321005115] +17:39:28 [ 11] [ 6] [175115] +17:39:28 [ 37] [ 12] [57917175115] +17:39:28 [ 70] [ 3] [301] +17:39:28 ============================================================================ +17:39:28 + + +waiting on router queue for slot.... +17:39:28 Sending to : +17:39:28 ============================================================================ +17:39:28 ============================================================================ +17:39:28 Slot Id : <422> +17:39:28 Transaction Type : RESPONSE +17:39:28 Received From : +17:39:28 ============================================================================ +17:39:28 FNo. Len. Field Value +17:39:28 ============================================================================ +17:39:28 [ 1] [ 4] [0810] +17:39:28 [ 7] [ 10] [0321005115] +17:39:28 [ 11] [ 6] [175115] +17:39:28 [ 37] [ 12] [579171751150] +17:39:28 [ 39] [ 2] [00] +17:39:28 [ 70] [ 3] [810] +17:39:28 ============================================================================ +17:39:28 Calculate Source COMM Id = 6 +17:39:28 ============================================================================ +17:39:28 + + +waiting on router queue for slot.... +17:39:28 ============================================================================ +17:39:28 Slot Id : <451> +17:39:28 Transaction Type : RESPONSE +17:39:28 Received From : +17:39:28 ============================================================================ +17:39:28 FNo. Len. Field Value +17:39:28 ============================================================================ +17:39:28 [ 1] [ 4] [0210] +17:39:28 [ 2] [ 16] [6688990602446104] +17:39:28 [ 3] [ 6] [301000] +17:39:28 [ 4] [ 12] [000000000000] +17:39:28 [ 11] [ 6] [818241] +17:39:28 [ 12] [ 6] [173921] +17:39:28 [ 15] [ 4] [0320] +17:39:28 [ 18] [ 4] [6011] +17:39:28 [ 32] [ 6] [621354] +17:39:28 [ 35] [ 37] [6688990602446104=43050061610421800000] +17:39:28 [ 37] [ 12] [507905262435] +17:39:28 [ 38] [ 6] [098514] +17:39:28 [ 39] [ 2] [00] +17:39:28 [ 41] [ 8] [19000900] +17:39:28 [ 49] [ 3] [418] +17:39:28 [ 54] [ 20] [1002418C000295226528] +17:39:28 ============================================================================ +17:39:28 Calculate Source COMM Id = 0 +17:39:28 ============================================================================ +17:39:28 + + +waiting on router queue for slot.... +17:39:34 ============================================================================ +17:39:34 Slot Id : <465> +17:39:34 Transaction Type : REQUEST +17:39:34 Received From : +17:39:34 ============================================================================ +17:39:34 FNo. Len. Field Value +17:39:34 ============================================================================ +17:39:34 [ 1] [ 4] [0200] +17:39:34 [ 2] [ 16] [6213544001641478] +17:39:34 [ 3] [ 6] [301000] +17:39:34 [ 4] [ 12] [000000000000] +17:39:34 [ 7] [ 10] [0320173954] +17:39:34 [ 11] [ 6] [209743] +17:39:34 [ 12] [ 6] [173500] +17:39:34 [ 13] [ 4] [0320] +17:39:34 [ 14] [ 4] [4912] +17:39:34 [ 15] [ 4] [0320] +17:39:34 [ 18] [ 4] [6011] +17:39:34 [ 19] [ 3] [418] +17:39:34 [ 22] [ 3] [021] +17:39:34 [ 25] [ 2] [01] +17:39:34 [ 28] [ 9] [D00000000] +17:39:34 [ 32] [ 6] [198901] +17:39:34 [ 35] [ 32] [6213544001641478=491212014147545] +17:39:34 [ 37] [ 12] [507917209743] +17:39:34 [ 41] [ 8] [19529001] +17:39:34 [ 42] [ 15] [000000041952901] +17:39:34 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:39:34 [ 49] [ 3] [418] +17:39:34 [ 52] [ 16] [F224E46CD1D72EB4] +17:39:34 ============================================================================ +17:39:34 + + +waiting on router queue for slot.... +17:39:34 Sending to : +17:39:34 ============================================================================ +17:39:34 Sending to : +17:39:34 ============================================================================ +17:39:34 ============================================================================ +17:39:34 Slot Id : <465> +17:39:34 Transaction Type : REQUEST +17:39:34 Received From : +17:39:34 ============================================================================ +17:39:34 FNo. Len. Field Value +17:39:34 ============================================================================ +17:39:34 [ 1] [ 4] [0200] +17:39:34 [ 2] [ 16] [6213544001641478] +17:39:34 [ 3] [ 6] [301000] +17:39:34 [ 4] [ 12] [000000000000] +17:39:34 [ 7] [ 10] [0320173954] +17:39:34 [ 11] [ 6] [209743] +17:39:34 [ 12] [ 6] [173500] +17:39:34 [ 13] [ 4] [0320] +17:39:34 [ 14] [ 4] [4912] +17:39:34 [ 15] [ 4] [0320] +17:39:34 [ 18] [ 4] [6011] +17:39:34 [ 19] [ 3] [418] +17:39:34 [ 22] [ 3] [021] +17:39:34 [ 25] [ 2] [01] +17:39:34 [ 28] [ 9] [D00000000] +17:39:34 [ 32] [ 6] [198901] +17:39:34 [ 35] [ 32] [6213544001641478=491212014147545] +17:39:34 [ 37] [ 12] [507917209743] +17:39:34 [ 41] [ 8] [19529001] +17:39:34 [ 42] [ 15] [000000041952901] +17:39:34 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:39:34 [ 49] [ 3] [418] +17:39:34 [ 52] [ 16] [F224E46CD1D72EB4] +17:39:34 ============================================================================ +17:39:34 + + +waiting on router queue for slot.... +17:39:34 Sending to : +17:39:34 ============================================================================ +17:39:34 ============================================================================ +17:39:34 Slot Id : <465> +17:39:34 Transaction Type : REQUEST +17:39:34 Received From : +17:39:34 ============================================================================ +17:39:34 FNo. Len. Field Value +17:39:34 ============================================================================ +17:39:34 [ 1] [ 4] [0200] +17:39:34 [ 2] [ 16] [6213544001641478] +17:39:34 [ 3] [ 6] [301000] +17:39:34 [ 4] [ 12] [000000000000] +17:39:34 [ 7] [ 10] [0320173954] +17:39:34 [ 11] [ 6] [209743] +17:39:34 [ 12] [ 6] [173500] +17:39:34 [ 13] [ 4] [0320] +17:39:34 [ 14] [ 4] [4912] +17:39:34 [ 15] [ 4] [0320] +17:39:34 [ 18] [ 4] [6011] +17:39:34 [ 19] [ 3] [418] +17:39:34 [ 22] [ 3] [021] +17:39:34 [ 25] [ 2] [01] +17:39:34 [ 28] [ 9] [D00000000] +17:39:34 [ 32] [ 6] [198901] +17:39:34 [ 35] [ 32] [6213544001641478=491212014147545] +17:39:34 [ 37] [ 12] [507917209743] +17:39:34 [ 41] [ 8] [19529001] +17:39:34 [ 42] [ 15] [000000041952901] +17:39:34 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:39:34 [ 49] [ 3] [418] +17:39:34 [ 52] [ 16] [D12B7489DD6BBEB4] +17:39:34 ============================================================================ +17:39:34 + + +waiting on router queue for slot.... +17:39:34 Sending to : <0> +17:39:34 ============================================================================ +17:39:35 ============================================================================ +17:39:35 Slot Id : <465> +17:39:35 Transaction Type : RESPONSE +17:39:35 Received From : +17:39:35 ============================================================================ +17:39:35 FNo. Len. Field Value +17:39:35 ============================================================================ +17:39:35 [ 1] [ 4] [0210] +17:39:35 [ 2] [ 16] [6213544001641478] +17:39:35 [ 3] [ 6] [301000] +17:39:35 [ 4] [ 12] [000000000000] +17:39:35 [ 7] [ 10] [0320173954] +17:39:35 [ 11] [ 6] [209743] +17:39:35 [ 12] [ 6] [173500] +17:39:35 [ 13] [ 4] [0320] +17:39:35 [ 15] [ 4] [0320] +17:39:35 [ 18] [ 4] [6011] +17:39:35 [ 19] [ 3] [418] +17:39:35 [ 32] [ 6] [198901] +17:39:35 [ 35] [ 32] [6213544001641478=491212014147545] +17:39:35 [ 37] [ 12] [507917209743] +17:39:35 [ 38] [ 6] [795686] +17:39:35 [ 39] [ 2] [00] +17:39:35 [ 41] [ 8] [19529001] +17:39:35 [ 49] [ 3] [418] +17:39:35 [ 54] [ 40] [1001418C0000612365421002418C000061236542] +17:39:35 ============================================================================ +17:39:35 Sending to : +17:39:35 ============================================================================ +17:39:35 + + +waiting on router queue for slot.... +17:39:35 ============================================================================ +17:39:35 Slot Id : <457> +17:39:35 Transaction Type : REQUEST +17:39:35 Received From : +17:39:35 ============================================================================ +17:39:35 FNo. Len. Field Value +17:39:35 ============================================================================ +17:39:35 [ 1] [ 4] [0800] +17:39:35 [ 7] [ 10] [0320103842] +17:39:35 [ 11] [ 6] [157510] +17:39:35 [ 70] [ 3] [301] +17:39:35 ============================================================================ +17:39:35 + + +waiting on router queue for slot.... +17:39:35 Sending to : +17:39:35 ============================================================================ +17:39:35 ============================================================================ +17:39:35 Slot Id : <457> +17:39:35 Transaction Type : RESPONSE +17:39:35 Received From : +17:39:35 ============================================================================ +17:39:35 FNo. Len. Field Value +17:39:35 ============================================================================ +17:39:35 [ 1] [ 4] [0810] +17:39:35 [ 7] [ 10] [0320103842] +17:39:35 [ 11] [ 6] [157510] +17:39:35 [ 39] [ 2] [00] +17:39:35 [ 70] [ 3] [301] +17:39:35 ============================================================================ +17:39:35 Calculate Source COMM Id = 2 +17:39:35 ============================================================================ +17:39:35 + + +waiting on router queue for slot.... +17:39:36 ============================================================================ +17:39:36 Slot Id : <465> +17:39:36 Transaction Type : RESPONSE +17:39:36 Received From : +17:39:36 ============================================================================ +17:39:36 FNo. Len. Field Value +17:39:36 ============================================================================ +17:39:36 [ 1] [ 4] [0210] +17:39:36 [ 2] [ 16] [6213544001641478] +17:39:36 [ 3] [ 6] [301000] +17:39:36 [ 4] [ 12] [000000000000] +17:39:36 [ 7] [ 10] [0320173954] +17:39:36 [ 11] [ 6] [209743] +17:39:36 [ 12] [ 6] [173500] +17:39:36 [ 13] [ 4] [0320] +17:39:36 [ 15] [ 4] [0320] +17:39:36 [ 18] [ 4] [6011] +17:39:36 [ 19] [ 3] [418] +17:39:36 [ 32] [ 6] [198901] +17:39:36 [ 35] [ 32] [6213544001641478=491212014147545] +17:39:36 [ 37] [ 12] [507917209743] +17:39:36 [ 38] [ 6] [795686] +17:39:36 [ 39] [ 2] [00] +17:39:36 [ 41] [ 8] [19529001] +17:39:36 [ 49] [ 3] [418] +17:39:36 [ 54] [ 40] [1001418C0000612365421002418C000061236542] +17:39:36 ============================================================================ +17:39:36 Calculate Source COMM Id = 5 +17:39:36 ============================================================================ +17:39:36 + + +waiting on router queue for slot.... +17:39:46 ============================================================================ +17:39:46 Slot Id : <426> +17:39:46 Transaction Type : REQUEST +17:39:46 Received From : +17:39:46 ============================================================================ +17:39:46 FNo. Len. Field Value +17:39:46 ============================================================================ +17:39:46 [ 1] [ 4] [0800] +17:39:46 [ 7] [ 10] [0320103853] +17:39:46 [ 11] [ 6] [157511] +17:39:46 [ 70] [ 3] [301] +17:39:46 ============================================================================ +17:39:46 + + +waiting on router queue for slot.... +17:39:46 Sending to : +17:39:46 ============================================================================ +17:39:46 ============================================================================ +17:39:46 Slot Id : <426> +17:39:46 Transaction Type : RESPONSE +17:39:46 Received From : +17:39:46 ============================================================================ +17:39:46 FNo. Len. Field Value +17:39:46 ============================================================================ +17:39:46 [ 1] [ 4] [0810] +17:39:46 [ 7] [ 10] [0320103853] +17:39:46 [ 11] [ 6] [157511] +17:39:46 [ 39] [ 2] [00] +17:39:46 [ 70] [ 3] [301] +17:39:46 ============================================================================ +17:39:46 Calculate Source COMM Id = 2 +17:39:46 ============================================================================ +17:39:46 + + +waiting on router queue for slot.... +17:39:49 ============================================================================ +17:39:49 Slot Id : <444> +17:39:49 Transaction Type : REQUEST +17:39:49 Received From : +17:39:49 ============================================================================ +17:39:49 FNo. Len. Field Value +17:39:49 ============================================================================ +17:39:49 [ 1] [ 4] [0800] +17:39:49 [ 2] [ 5] [02531] +17:39:49 [ 3] [ 6] [579178] +17:39:49 [ 7] [ 10] [0320103949] +17:39:49 [ 11] [ 6] [807437] +17:39:49 [ 15] [ 10] [0320103949] +17:39:49 [ 37] [ 11] [57917807437] +17:39:49 [ 70] [ 3] [001] +17:39:49 ============================================================================ +17:39:49 + + +waiting on router queue for slot.... +17:39:49 ============================================================================ +17:39:49 Slot Id : <444> +17:39:49 Transaction Type : RESPONSE +17:39:49 Received From : +17:39:49 ============================================================================ +17:39:49 FNo. Len. Field Value +17:39:49 ============================================================================ +17:39:49 [ 1] [ 4] [0810] +17:39:49 [ 7] [ 10] [0320103949] +17:39:49 [ 11] [ 6] [807437] +17:39:49 [ 15] [ 4] [0320] +17:39:49 [ 37] [ 12] [57917807437] +17:39:49 [ 39] [ 2] [00] +17:39:49 [ 70] [ 3] [001] +17:39:49 ============================================================================ +17:39:49 Sending to : +17:39:49 ============================================================================ +17:39:49 + + +waiting on router queue for slot.... +17:39:54 ============================================================================ +17:39:54 Slot Id : <436> +17:39:54 Transaction Type : REQUEST +17:39:54 Received From : +17:39:54 ============================================================================ +17:39:54 FNo. Len. Field Value +17:39:54 ============================================================================ +17:39:54 [ 1] [ 4] [0800] +17:39:54 [ 7] [ 10] [0320104742] +17:39:54 [ 11] [ 6] [084264] +17:39:54 [ 37] [ 12] [57917084264] +17:39:54 [ 70] [ 3] [301] +17:39:54 ============================================================================ +17:39:54 + + +waiting on router queue for slot.... +17:39:55 Sending to : +17:39:55 ============================================================================ +17:39:55 ============================================================================ +17:39:55 Slot Id : <436> +17:39:55 Transaction Type : RESPONSE +17:39:55 Received From : +17:39:55 ============================================================================ +17:39:55 FNo. Len. Field Value +17:39:55 ============================================================================ +17:39:55 [ 1] [ 4] [0810] +17:39:55 [ 7] [ 10] [0320104742] +17:39:55 [ 11] [ 6] [084264] +17:39:55 [ 37] [ 12] [579170842640] +17:39:55 [ 39] [ 2] [00] +17:39:55 [ 70] [ 3] [810] +17:39:55 ============================================================================ +17:39:55 Calculate Source COMM Id = 1 +17:39:55 ============================================================================ +17:39:55 + + +waiting on router queue for slot.... +17:39:57 ============================================================================ +17:39:57 Slot Id : <423> +17:39:57 Transaction Type : REQUEST +17:39:57 Received From : +17:39:57 ============================================================================ +17:39:57 FNo. Len. Field Value +17:39:57 ============================================================================ +17:39:57 [ 1] [ 4] [0800] +17:39:57 [ 7] [ 10] [0320103904] +17:39:57 [ 11] [ 6] [157512] +17:39:57 [ 70] [ 3] [301] +17:39:57 ============================================================================ +17:39:57 + + +waiting on router queue for slot.... +17:39:57 Sending to : +17:39:57 ============================================================================ +17:39:57 ============================================================================ +17:39:57 Slot Id : <423> +17:39:57 Transaction Type : RESPONSE +17:39:57 Received From : +17:39:57 ============================================================================ +17:39:57 FNo. Len. Field Value +17:39:57 ============================================================================ +17:39:57 [ 1] [ 4] [0810] +17:39:57 [ 7] [ 10] [0320103904] +17:39:57 [ 11] [ 6] [157512] +17:39:57 [ 39] [ 2] [00] +17:39:57 [ 70] [ 3] [301] +17:39:57 ============================================================================ +17:39:57 Calculate Source COMM Id = 2 +17:39:57 ============================================================================ +17:39:57 + + +waiting on router queue for slot.... +17:40:08 ============================================================================ +17:40:08 Slot Id : <458> +17:40:08 Transaction Type : REQUEST +17:40:08 Received From : +17:40:08 ============================================================================ +17:40:08 FNo. Len. Field Value +17:40:08 ============================================================================ +17:40:08 [ 1] [ 4] [0800] +17:40:08 [ 7] [ 10] [0320103915] +17:40:08 [ 11] [ 6] [157513] +17:40:08 [ 70] [ 3] [301] +17:40:08 ============================================================================ +17:40:08 + + +waiting on router queue for slot.... +17:40:08 Sending to : +17:40:08 ============================================================================ +17:40:08 ============================================================================ +17:40:08 Slot Id : <458> +17:40:08 Transaction Type : RESPONSE +17:40:08 Received From : +17:40:08 ============================================================================ +17:40:08 FNo. Len. Field Value +17:40:08 ============================================================================ +17:40:08 [ 1] [ 4] [0810] +17:40:08 [ 7] [ 10] [0320103915] +17:40:08 [ 11] [ 6] [157513] +17:40:08 [ 39] [ 2] [00] +17:40:08 [ 70] [ 3] [301] +17:40:08 ============================================================================ +17:40:08 Calculate Source COMM Id = 2 +17:40:08 ============================================================================ +17:40:08 + + +waiting on router queue for slot.... +17:40:09 ============================================================================ +17:40:09 Slot Id : <452> +17:40:09 Transaction Type : REQUEST +17:40:09 Received From : +17:40:09 ============================================================================ +17:40:09 FNo. Len. Field Value +17:40:09 ============================================================================ +17:40:09 [ 1] [ 4] [0200] +17:40:09 [ 2] [ 16] [6213544001641478] +17:40:09 [ 3] [ 6] [011000] +17:40:09 [ 4] [ 12] [000050000000] +17:40:09 [ 7] [ 10] [0320174030] +17:40:09 [ 11] [ 6] [209753] +17:40:09 [ 12] [ 6] [173535] +17:40:09 [ 13] [ 4] [0320] +17:40:09 [ 14] [ 4] [4912] +17:40:09 [ 15] [ 4] [0320] +17:40:09 [ 18] [ 4] [6011] +17:40:09 [ 19] [ 3] [418] +17:40:09 [ 22] [ 3] [021] +17:40:09 [ 25] [ 2] [01] +17:40:09 [ 28] [ 9] [D00002000] +17:40:09 [ 32] [ 6] [198901] +17:40:09 [ 35] [ 32] [6213544001641478=491212014147545] +17:40:09 [ 37] [ 12] [507917209753] +17:40:09 [ 41] [ 8] [19529001] +17:40:09 [ 42] [ 15] [000000041952901] +17:40:09 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:40:09 [ 49] [ 3] [418] +17:40:09 [ 52] [ 16] [F224E46CD1D72EB4] +17:40:09 ============================================================================ +17:40:09 + + +waiting on router queue for slot.... +17:40:09 Sending to : +17:40:09 ============================================================================ +17:40:09 Sending to : +17:40:09 ============================================================================ +17:40:10 ============================================================================ +17:40:10 Slot Id : <452> +17:40:10 Transaction Type : REQUEST +17:40:10 Received From : +17:40:10 ============================================================================ +17:40:10 FNo. Len. Field Value +17:40:10 ============================================================================ +17:40:10 [ 1] [ 4] [0200] +17:40:10 [ 2] [ 16] [6213544001641478] +17:40:10 [ 3] [ 6] [011000] +17:40:10 [ 4] [ 12] [000050000000] +17:40:10 [ 7] [ 10] [0320174030] +17:40:10 [ 11] [ 6] [209753] +17:40:10 [ 12] [ 6] [173535] +17:40:10 [ 13] [ 4] [0320] +17:40:10 [ 14] [ 4] [4912] +17:40:10 [ 15] [ 4] [0320] +17:40:10 [ 18] [ 4] [6011] +17:40:10 [ 19] [ 3] [418] +17:40:10 [ 22] [ 3] [021] +17:40:10 [ 25] [ 2] [01] +17:40:10 [ 28] [ 9] [D00002000] +17:40:10 [ 32] [ 6] [198901] +17:40:10 [ 35] [ 32] [6213544001641478=491212014147545] +17:40:10 [ 37] [ 12] [507917209753] +17:40:10 [ 41] [ 8] [19529001] +17:40:10 [ 42] [ 15] [000000041952901] +17:40:10 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:40:10 [ 49] [ 3] [418] +17:40:10 [ 52] [ 16] [F224E46CD1D72EB4] +17:40:10 ============================================================================ +17:40:10 + + +waiting on router queue for slot.... +17:40:10 Sending to : +17:40:10 ============================================================================ +17:40:10 ============================================================================ +17:40:10 Slot Id : <452> +17:40:10 Transaction Type : REQUEST +17:40:10 Received From : +17:40:10 ============================================================================ +17:40:10 FNo. Len. Field Value +17:40:10 ============================================================================ +17:40:10 [ 1] [ 4] [0200] +17:40:10 [ 2] [ 16] [6213544001641478] +17:40:10 [ 3] [ 6] [011000] +17:40:10 [ 4] [ 12] [000050000000] +17:40:10 [ 7] [ 10] [0320174030] +17:40:10 [ 11] [ 6] [209753] +17:40:10 [ 12] [ 6] [173535] +17:40:10 [ 13] [ 4] [0320] +17:40:10 [ 14] [ 4] [4912] +17:40:10 [ 15] [ 4] [0320] +17:40:10 [ 18] [ 4] [6011] +17:40:10 [ 19] [ 3] [418] +17:40:10 [ 22] [ 3] [021] +17:40:10 [ 25] [ 2] [01] +17:40:10 [ 28] [ 9] [D00002000] +17:40:10 [ 32] [ 6] [198901] +17:40:10 [ 35] [ 32] [6213544001641478=491212014147545] +17:40:10 [ 37] [ 12] [507917209753] +17:40:10 [ 41] [ 8] [19529001] +17:40:10 [ 42] [ 15] [000000041952901] +17:40:10 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:40:10 [ 49] [ 3] [418] +17:40:10 [ 52] [ 16] [D12B7489DD6BBEB4] +17:40:10 ============================================================================ +17:40:10 + + +waiting on router queue for slot.... +17:40:10 Sending to : <0> +17:40:10 ============================================================================ +17:40:10 ============================================================================ +17:40:10 Slot Id : <452> +17:40:10 Transaction Type : RESPONSE +17:40:10 Received From : +17:40:10 ============================================================================ +17:40:10 FNo. Len. Field Value +17:40:10 ============================================================================ +17:40:10 [ 1] [ 4] [0210] +17:40:10 [ 2] [ 16] [6213544001641478] +17:40:10 [ 3] [ 6] [011000] +17:40:10 [ 4] [ 12] [000050000000] +17:40:10 [ 7] [ 10] [0320174030] +17:40:10 [ 11] [ 6] [209753] +17:40:10 [ 12] [ 6] [173535] +17:40:10 [ 13] [ 4] [0320] +17:40:10 [ 15] [ 4] [0320] +17:40:10 [ 18] [ 4] [6011] +17:40:10 [ 19] [ 3] [418] +17:40:10 [ 32] [ 6] [198901] +17:40:10 [ 35] [ 32] [6213544001641478=491212014147545] +17:40:10 [ 37] [ 12] [507917209753] +17:40:10 [ 38] [ 6] [052587] +17:40:10 [ 39] [ 2] [00] +17:40:10 [ 41] [ 8] [19529001] +17:40:10 [ 49] [ 3] [418] +17:40:10 [ 54] [ 40] [1001418C0000110365421002418C000011036542] +17:40:10 ============================================================================ +17:40:10 Sending to : +17:40:10 ============================================================================ +17:40:10 + + +waiting on router queue for slot.... +17:40:11 ============================================================================ +17:40:11 Slot Id : <439> +17:40:11 Transaction Type : REQUEST +17:40:11 Received From : +17:40:11 ============================================================================ +17:40:11 FNo. Len. Field Value +17:40:11 ============================================================================ +17:40:11 [ 1] [ 4] [0200] +17:40:11 [ 2] [ 16] [1888880000000505] +17:40:11 [ 3] [ 6] [011000] +17:40:11 [ 4] [ 12] [000050000000] +17:40:11 [ 7] [ 10] [0320174006] +17:40:11 [ 11] [ 6] [818399] +17:40:11 [ 12] [ 6] [174006] +17:40:11 [ 13] [ 4] [0320] +17:40:11 [ 15] [ 4] [0320] +17:40:11 [ 18] [ 4] [6011] +17:40:11 [ 22] [ 3] [900] +17:40:11 [ 25] [ 2] [02] +17:40:11 [ 28] [ 9] [D00002000] +17:40:11 [ 32] [ 6] [621354] +17:40:11 [ 35] [ 32] [1888880000000505=000010100000884] +17:40:11 [ 37] [ 12] [507905262437] +17:40:11 [ 41] [ 8] [19000900] +17:40:11 [ 42] [ 15] [NATIVE ] +17:40:11 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +17:40:11 [ 49] [ 3] [418] +17:40:11 [ 52] [ 16] [98112A4AE6049461] +17:40:11 ============================================================================ +17:40:11 + + +waiting on router queue for slot.... +17:40:11 Sending to : +17:40:11 ============================================================================ +17:40:11 Sending to : +17:40:11 ============================================================================ +17:40:11 ============================================================================ +17:40:11 Slot Id : <439> +17:40:11 Transaction Type : REQUEST +17:40:11 Received From : +17:40:11 ============================================================================ +17:40:11 FNo. Len. Field Value +17:40:11 ============================================================================ +17:40:11 [ 1] [ 4] [0200] +17:40:11 [ 2] [ 16] [1888880000000505] +17:40:11 [ 3] [ 6] [011000] +17:40:11 [ 4] [ 12] [000050000000] +17:40:11 [ 7] [ 10] [0320174006] +17:40:11 [ 11] [ 6] [818399] +17:40:11 [ 12] [ 6] [174006] +17:40:11 [ 13] [ 4] [0320] +17:40:11 [ 15] [ 4] [0320] +17:40:11 [ 18] [ 4] [6011] +17:40:11 [ 22] [ 3] [900] +17:40:11 [ 25] [ 2] [02] +17:40:11 [ 28] [ 9] [D00002000] +17:40:11 [ 32] [ 6] [621354] +17:40:11 [ 35] [ 32] [1888880000000505=000010100000884] +17:40:11 [ 37] [ 12] [507905262437] +17:40:11 [ 41] [ 8] [19000900] +17:40:11 [ 42] [ 15] [NATIVE ] +17:40:11 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +17:40:11 [ 49] [ 3] [418] +17:40:11 [ 52] [ 16] [98112A4AE6049461] +17:40:11 ============================================================================ +17:40:11 + + +waiting on router queue for slot.... +17:40:11 Sending to : +17:40:11 ============================================================================ +17:40:11 ============================================================================ +17:40:11 Slot Id : <439> +17:40:11 Transaction Type : REQUEST +17:40:11 Received From : +17:40:11 ============================================================================ +17:40:11 FNo. Len. Field Value +17:40:11 ============================================================================ +17:40:11 [ 1] [ 4] [0200] +17:40:11 [ 2] [ 16] [1888880000000505] +17:40:11 [ 3] [ 6] [011000] +17:40:11 [ 4] [ 12] [000050000000] +17:40:11 [ 7] [ 10] [0320174006] +17:40:11 [ 11] [ 6] [818399] +17:40:11 [ 12] [ 6] [174006] +17:40:11 [ 13] [ 4] [0320] +17:40:11 [ 15] [ 4] [0320] +17:40:11 [ 18] [ 4] [6011] +17:40:11 [ 22] [ 3] [900] +17:40:11 [ 25] [ 2] [02] +17:40:11 [ 28] [ 9] [D00002000] +17:40:11 [ 32] [ 6] [621354] +17:40:11 [ 35] [ 32] [1888880000000505=000010100000884] +17:40:11 [ 37] [ 12] [507905262437] +17:40:11 [ 41] [ 8] [19000900] +17:40:11 [ 42] [ 15] [NATIVE ] +17:40:11 [ 43] [ 40] [Sekong Branch04 Sekong LAO] +17:40:11 [ 49] [ 3] [418] +17:40:11 [ 52] [ 16] [6EF8691B78D4A378] +17:40:11 ============================================================================ +17:40:11 + + +waiting on router queue for slot.... +17:40:11 Sending to : <5> +17:40:11 ============================================================================ +17:40:12 ============================================================================ +17:40:12 Slot Id : <452> +17:40:12 Transaction Type : RESPONSE +17:40:12 Received From : +17:40:12 ============================================================================ +17:40:12 FNo. Len. Field Value +17:40:12 ============================================================================ +17:40:12 [ 1] [ 4] [0210] +17:40:12 [ 2] [ 16] [6213544001641478] +17:40:12 [ 3] [ 6] [011000] +17:40:12 [ 4] [ 12] [000050000000] +17:40:12 [ 7] [ 10] [0320174030] +17:40:12 [ 11] [ 6] [209753] +17:40:12 [ 12] [ 6] [173535] +17:40:12 [ 13] [ 4] [0320] +17:40:12 [ 15] [ 4] [0320] +17:40:12 [ 18] [ 4] [6011] +17:40:12 [ 19] [ 3] [418] +17:40:12 [ 32] [ 6] [198901] +17:40:12 [ 35] [ 32] [6213544001641478=491212014147545] +17:40:12 [ 37] [ 12] [507917209753] +17:40:12 [ 38] [ 6] [052587] +17:40:12 [ 39] [ 2] [00] +17:40:12 [ 41] [ 8] [19529001] +17:40:12 [ 49] [ 3] [418] +17:40:12 [ 54] [ 40] [1001418C0000110365421002418C000011036542] +17:40:12 ============================================================================ +17:40:12 Calculate Source COMM Id = 5 +17:40:12 ============================================================================ +17:40:12 + + +waiting on router queue for slot.... +17:40:19 ============================================================================ +17:40:19 Slot Id : <439> +17:40:19 Transaction Type : RESPONSE +17:40:19 Received From : +17:40:19 ============================================================================ +17:40:19 FNo. Len. Field Value +17:40:19 ============================================================================ +17:40:19 [ 1] [ 4] [0210] +17:40:19 [ 2] [ 16] [1888880000000505] +17:40:19 [ 3] [ 6] [011000] +17:40:19 [ 4] [ 12] [000050000000] +17:40:19 [ 7] [ 10] [0320174006] +17:40:19 [ 11] [ 6] [818399] +17:40:19 [ 12] [ 6] [174006] +17:40:19 [ 13] [ 4] [0320] +17:40:19 [ 15] [ 4] [0320] +17:40:19 [ 18] [ 4] [6011] +17:40:19 [ 19] [ 3] [418] +17:40:19 [ 32] [ 6] [621354] +17:40:19 [ 37] [ 12] [507905262437] +17:40:19 [ 38] [ 6] [790165] +17:40:19 [ 39] [ 2] [00] +17:40:19 [ 41] [ 8] [19000900] +17:40:19 [ 49] [ 3] [418] +17:40:19 [ 54] [ 0] [] +17:40:19 ============================================================================ +17:40:19 Sending to : +17:40:19 ============================================================================ +17:40:19 + + +waiting on router queue for slot.... +17:40:19 ============================================================================ +17:40:19 Slot Id : <459> +17:40:19 Transaction Type : REQUEST +17:40:19 Received From : +17:40:19 ============================================================================ +17:40:19 FNo. Len. Field Value +17:40:19 ============================================================================ +17:40:19 [ 1] [ 4] [0800] +17:40:19 [ 7] [ 10] [0320103926] +17:40:19 [ 11] [ 6] [157514] +17:40:19 [ 70] [ 3] [301] +17:40:19 ============================================================================ +17:40:19 + + +waiting on router queue for slot.... +17:40:19 Sending to : +17:40:19 ============================================================================ +17:40:19 ============================================================================ +17:40:19 Slot Id : <459> +17:40:19 Transaction Type : RESPONSE +17:40:19 Received From : +17:40:19 ============================================================================ +17:40:19 FNo. Len. Field Value +17:40:19 ============================================================================ +17:40:19 [ 1] [ 4] [0810] +17:40:19 [ 7] [ 10] [0320103926] +17:40:19 [ 11] [ 6] [157514] +17:40:19 [ 39] [ 2] [00] +17:40:19 [ 70] [ 3] [301] +17:40:19 ============================================================================ +17:40:19 Calculate Source COMM Id = 2 +17:40:19 ============================================================================ +17:40:19 + + +waiting on router queue for slot.... +17:40:20 ============================================================================ +17:40:20 Slot Id : <439> +17:40:20 Transaction Type : RESPONSE +17:40:20 Received From : +17:40:20 ============================================================================ +17:40:20 FNo. Len. Field Value +17:40:20 ============================================================================ +17:40:20 [ 1] [ 4] [0210] +17:40:20 [ 2] [ 16] [1888880000000505] +17:40:20 [ 3] [ 6] [011000] +17:40:20 [ 4] [ 12] [000050000000] +17:40:20 [ 7] [ 10] [0320174006] +17:40:20 [ 11] [ 6] [818399] +17:40:20 [ 12] [ 6] [174006] +17:40:20 [ 13] [ 4] [0320] +17:40:20 [ 15] [ 4] [0320] +17:40:20 [ 18] [ 4] [6011] +17:40:20 [ 19] [ 3] [418] +17:40:20 [ 32] [ 6] [621354] +17:40:20 [ 37] [ 12] [507905262437] +17:40:20 [ 38] [ 6] [790165] +17:40:20 [ 39] [ 2] [00] +17:40:20 [ 41] [ 8] [19000900] +17:40:20 [ 49] [ 3] [418] +17:40:20 [ 54] [ 0] [] +17:40:20 ============================================================================ +17:40:20 Calculate Source COMM Id = 0 +17:40:20 ============================================================================ +17:40:20 + + +waiting on router queue for slot.... +17:40:33 ============================================================================ +17:40:33 Slot Id : <466> +17:40:33 Transaction Type : REQUEST +17:40:33 Received From : +17:40:33 ============================================================================ +17:40:33 FNo. Len. Field Value +17:40:33 ============================================================================ +17:40:33 [ 1] [ 4] [0800] +17:40:33 [ 7] [ 10] [0321005220] +17:40:33 [ 11] [ 6] [175220] +17:40:33 [ 37] [ 12] [57917175220] +17:40:33 [ 70] [ 3] [301] +17:40:33 ============================================================================ +17:40:33 + + +waiting on router queue for slot.... +17:40:33 Sending to : +17:40:33 ============================================================================ +17:40:33 ============================================================================ +17:40:33 Slot Id : <466> +17:40:33 Transaction Type : RESPONSE +17:40:33 Received From : +17:40:33 ============================================================================ +17:40:33 FNo. Len. Field Value +17:40:33 ============================================================================ +17:40:33 [ 1] [ 4] [0810] +17:40:33 [ 7] [ 10] [0321005220] +17:40:33 [ 11] [ 6] [175220] +17:40:33 [ 37] [ 12] [579171752200] +17:40:33 [ 39] [ 2] [00] +17:40:33 [ 70] [ 3] [810] +17:40:33 ============================================================================ +17:40:33 Calculate Source COMM Id = 6 +17:40:33 ============================================================================ +17:40:33 + + +waiting on router queue for slot.... +17:40:35 ============================================================================ +17:40:35 Slot Id : <468> +17:40:35 Transaction Type : REQUEST +17:40:35 Received From : +17:40:35 ============================================================================ +17:40:35 FNo. Len. Field Value +17:40:35 ============================================================================ +17:40:35 [ 1] [ 4] [0800] +17:40:35 [ 7] [ 10] [0320103941] +17:40:35 [ 11] [ 6] [157515] +17:40:35 [ 70] [ 3] [301] +17:40:35 ============================================================================ +17:40:35 + + +waiting on router queue for slot.... +17:40:35 Sending to : +17:40:35 ============================================================================ +17:40:35 ============================================================================ +17:40:35 Slot Id : <468> +17:40:35 Transaction Type : RESPONSE +17:40:35 Received From : +17:40:35 ============================================================================ +17:40:35 FNo. Len. Field Value +17:40:35 ============================================================================ +17:40:35 [ 1] [ 4] [0810] +17:40:35 [ 7] [ 10] [0320103941] +17:40:35 [ 11] [ 6] [157515] +17:40:35 [ 39] [ 2] [00] +17:40:35 [ 70] [ 3] [301] +17:40:35 ============================================================================ +17:40:35 Calculate Source COMM Id = 2 +17:40:35 ============================================================================ +17:40:35 + + +waiting on router queue for slot.... +17:40:35 ============================================================================ +17:40:35 Slot Id : <455> +17:40:35 Transaction Type : REQUEST +17:40:35 Received From : +17:40:35 ============================================================================ +17:40:35 FNo. Len. Field Value +17:40:35 ============================================================================ +17:40:35 [ 1] [ 4] [0200] +17:40:35 [ 2] [ 16] [6213544001641478] +17:40:35 [ 3] [ 6] [301000] +17:40:35 [ 4] [ 12] [000000000000] +17:40:35 [ 7] [ 10] [0320174055] +17:40:35 [ 11] [ 6] [209758] +17:40:35 [ 12] [ 6] [173601] +17:40:35 [ 13] [ 4] [0320] +17:40:35 [ 14] [ 4] [4912] +17:40:35 [ 15] [ 4] [0320] +17:40:35 [ 18] [ 4] [6011] +17:40:35 [ 19] [ 3] [418] +17:40:35 [ 22] [ 3] [021] +17:40:35 [ 25] [ 2] [01] +17:40:35 [ 28] [ 9] [D00000000] +17:40:35 [ 32] [ 6] [198901] +17:40:35 [ 35] [ 32] [6213544001641478=491212014147545] +17:40:35 [ 37] [ 12] [507917209758] +17:40:35 [ 41] [ 8] [19529001] +17:40:35 [ 42] [ 15] [000000041952901] +17:40:35 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:40:35 [ 49] [ 3] [418] +17:40:35 [ 52] [ 16] [F224E46CD1D72EB4] +17:40:35 ============================================================================ +17:40:35 + + +waiting on router queue for slot.... +17:40:35 Sending to : +17:40:35 ============================================================================ +17:40:35 Sending to : +17:40:35 ============================================================================ +17:40:35 ============================================================================ +17:40:35 Slot Id : <455> +17:40:35 Transaction Type : REQUEST +17:40:35 Received From : +17:40:35 ============================================================================ +17:40:35 FNo. Len. Field Value +17:40:35 ============================================================================ +17:40:35 [ 1] [ 4] [0200] +17:40:35 [ 2] [ 16] [6213544001641478] +17:40:35 [ 3] [ 6] [301000] +17:40:35 [ 4] [ 12] [000000000000] +17:40:35 [ 7] [ 10] [0320174055] +17:40:35 [ 11] [ 6] [209758] +17:40:35 [ 12] [ 6] [173601] +17:40:35 [ 13] [ 4] [0320] +17:40:35 [ 14] [ 4] [4912] +17:40:35 [ 15] [ 4] [0320] +17:40:35 [ 18] [ 4] [6011] +17:40:35 [ 19] [ 3] [418] +17:40:35 [ 22] [ 3] [021] +17:40:35 [ 25] [ 2] [01] +17:40:35 [ 28] [ 9] [D00000000] +17:40:35 [ 32] [ 6] [198901] +17:40:35 [ 35] [ 32] [6213544001641478=491212014147545] +17:40:35 [ 37] [ 12] [507917209758] +17:40:35 [ 41] [ 8] [19529001] +17:40:35 [ 42] [ 15] [000000041952901] +17:40:35 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:40:35 [ 49] [ 3] [418] +17:40:35 [ 52] [ 16] [F224E46CD1D72EB4] +17:40:35 ============================================================================ +17:40:35 + + +waiting on router queue for slot.... +17:40:35 Sending to : +17:40:35 ============================================================================ +17:40:35 ============================================================================ +17:40:35 Slot Id : <455> +17:40:35 Transaction Type : REQUEST +17:40:35 Received From : +17:40:35 ============================================================================ +17:40:35 FNo. Len. Field Value +17:40:35 ============================================================================ +17:40:35 [ 1] [ 4] [0200] +17:40:35 [ 2] [ 16] [6213544001641478] +17:40:35 [ 3] [ 6] [301000] +17:40:35 [ 4] [ 12] [000000000000] +17:40:35 [ 7] [ 10] [0320174055] +17:40:35 [ 11] [ 6] [209758] +17:40:35 [ 12] [ 6] [173601] +17:40:35 [ 13] [ 4] [0320] +17:40:35 [ 14] [ 4] [4912] +17:40:35 [ 15] [ 4] [0320] +17:40:35 [ 18] [ 4] [6011] +17:40:35 [ 19] [ 3] [418] +17:40:35 [ 22] [ 3] [021] +17:40:35 [ 25] [ 2] [01] +17:40:35 [ 28] [ 9] [D00000000] +17:40:35 [ 32] [ 6] [198901] +17:40:35 [ 35] [ 32] [6213544001641478=491212014147545] +17:40:35 [ 37] [ 12] [507917209758] +17:40:35 [ 41] [ 8] [19529001] +17:40:35 [ 42] [ 15] [000000041952901] +17:40:35 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:40:35 [ 49] [ 3] [418] +17:40:35 [ 52] [ 16] [D12B7489DD6BBEB4] +17:40:35 ============================================================================ +17:40:35 + + +waiting on router queue for slot.... +17:40:35 Sending to : <0> +17:40:35 ============================================================================ +17:40:35 ============================================================================ +17:40:35 Slot Id : <455> +17:40:35 Transaction Type : RESPONSE +17:40:35 Received From : +17:40:35 ============================================================================ +17:40:35 FNo. Len. Field Value +17:40:35 ============================================================================ +17:40:35 [ 1] [ 4] [0210] +17:40:35 [ 2] [ 16] [6213544001641478] +17:40:35 [ 3] [ 6] [301000] +17:40:35 [ 4] [ 12] [000000000000] +17:40:35 [ 7] [ 10] [0320174055] +17:40:35 [ 11] [ 6] [209758] +17:40:35 [ 12] [ 6] [173601] +17:40:35 [ 13] [ 4] [0320] +17:40:35 [ 15] [ 4] [0320] +17:40:35 [ 18] [ 4] [6011] +17:40:35 [ 19] [ 3] [418] +17:40:35 [ 32] [ 6] [198901] +17:40:35 [ 35] [ 32] [6213544001641478=491212014147545] +17:40:35 [ 37] [ 12] [507917209758] +17:40:35 [ 38] [ 6] [553708] +17:40:35 [ 39] [ 2] [00] +17:40:35 [ 41] [ 8] [19529001] +17:40:35 [ 49] [ 3] [418] +17:40:35 [ 54] [ 40] [1001418C0000110365421002418C000011036542] +17:40:35 ============================================================================ +17:40:35 Sending to : +17:40:35 ============================================================================ +17:40:35 + + +waiting on router queue for slot.... +17:40:36 ============================================================================ +17:40:36 Slot Id : <475> +17:40:36 Transaction Type : REQUEST +17:40:36 Received From : +17:40:36 ============================================================================ +17:40:36 FNo. Len. Field Value +17:40:36 ============================================================================ +17:40:36 [ 1] [ 4] [0200] +17:40:36 [ 2] [ 16] [1888880000001743] +17:40:36 [ 3] [ 6] [301000] +17:40:36 [ 4] [ 12] [000000000000] +17:40:36 [ 7] [ 10] [0320174031] +17:40:36 [ 11] [ 6] [818503] +17:40:36 [ 12] [ 6] [174031] +17:40:36 [ 13] [ 4] [0320] +17:40:36 [ 15] [ 4] [0320] +17:40:36 [ 18] [ 4] [6011] +17:40:36 [ 22] [ 3] [900] +17:40:36 [ 25] [ 2] [02] +17:40:36 [ 28] [ 9] [D00000000] +17:40:36 [ 32] [ 6] [621354] +17:40:36 [ 35] [ 32] [1888880000001743=000010100000790] +17:40:36 [ 37] [ 12] [507904180511] +17:40:36 [ 41] [ 8] [19000500] +17:40:36 [ 42] [ 15] [NATIVE ] +17:40:36 [ 43] [ 40] [Sekong Branch01 Lamam LAO] +17:40:36 [ 49] [ 3] [418] +17:40:36 [ 52] [ 16] [429EB5A1663DA61F] +17:40:36 ============================================================================ +17:40:36 + + +waiting on router queue for slot.... +17:40:36 Sending to : +17:40:36 ============================================================================ +17:40:36 Sending to : +17:40:36 ============================================================================ +17:40:36 ============================================================================ +17:40:36 Slot Id : <475> +17:40:36 Transaction Type : REQUEST +17:40:36 Received From : +17:40:36 ============================================================================ +17:40:36 FNo. Len. Field Value +17:40:36 ============================================================================ +17:40:36 [ 1] [ 4] [0200] +17:40:36 [ 2] [ 16] [1888880000001743] +17:40:36 [ 3] [ 6] [301000] +17:40:36 [ 4] [ 12] [000000000000] +17:40:36 [ 7] [ 10] [0320174031] +17:40:36 [ 11] [ 6] [818503] +17:40:36 [ 12] [ 6] [174031] +17:40:36 [ 13] [ 4] [0320] +17:40:36 [ 15] [ 4] [0320] +17:40:36 [ 18] [ 4] [6011] +17:40:36 [ 22] [ 3] [900] +17:40:36 [ 25] [ 2] [02] +17:40:36 [ 28] [ 9] [D00000000] +17:40:36 [ 32] [ 6] [621354] +17:40:36 [ 35] [ 32] [1888880000001743=000010100000790] +17:40:36 [ 37] [ 12] [507904180511] +17:40:36 [ 41] [ 8] [19000500] +17:40:36 [ 42] [ 15] [NATIVE ] +17:40:36 [ 43] [ 40] [Sekong Branch01 Lamam LAO] +17:40:36 [ 49] [ 3] [418] +17:40:36 [ 52] [ 16] [429EB5A1663DA61F] +17:40:36 ============================================================================ +17:40:36 + + +waiting on router queue for slot.... +17:40:36 Sending to : +17:40:36 ============================================================================ +17:40:36 ============================================================================ +17:40:36 Slot Id : <475> +17:40:36 Transaction Type : REQUEST +17:40:36 Received From : +17:40:36 ============================================================================ +17:40:36 FNo. Len. Field Value +17:40:36 ============================================================================ +17:40:36 [ 1] [ 4] [0200] +17:40:36 [ 2] [ 16] [1888880000001743] +17:40:36 [ 3] [ 6] [301000] +17:40:36 [ 4] [ 12] [000000000000] +17:40:36 [ 7] [ 10] [0320174031] +17:40:36 [ 11] [ 6] [818503] +17:40:36 [ 12] [ 6] [174031] +17:40:36 [ 13] [ 4] [0320] +17:40:36 [ 15] [ 4] [0320] +17:40:36 [ 18] [ 4] [6011] +17:40:36 [ 22] [ 3] [900] +17:40:36 [ 25] [ 2] [02] +17:40:36 [ 28] [ 9] [D00000000] +17:40:36 [ 32] [ 6] [621354] +17:40:36 [ 35] [ 32] [1888880000001743=000010100000790] +17:40:36 [ 37] [ 12] [507904180511] +17:40:36 [ 41] [ 8] [19000500] +17:40:36 [ 42] [ 15] [NATIVE ] +17:40:36 [ 43] [ 40] [Sekong Branch01 Lamam LAO] +17:40:36 [ 49] [ 3] [418] +17:40:36 [ 52] [ 16] [8637996A334C794A] +17:40:36 ============================================================================ +17:40:36 + + +waiting on router queue for slot.... +17:40:36 Sending to : <5> +17:40:36 ============================================================================ +17:40:37 ============================================================================ +17:40:37 Slot Id : <455> +17:40:37 Transaction Type : RESPONSE +17:40:37 Received From : +17:40:37 ============================================================================ +17:40:37 FNo. Len. Field Value +17:40:37 ============================================================================ +17:40:37 [ 1] [ 4] [0210] +17:40:37 [ 2] [ 16] [6213544001641478] +17:40:37 [ 3] [ 6] [301000] +17:40:37 [ 4] [ 12] [000000000000] +17:40:37 [ 7] [ 10] [0320174055] +17:40:37 [ 11] [ 6] [209758] +17:40:37 [ 12] [ 6] [173601] +17:40:37 [ 13] [ 4] [0320] +17:40:37 [ 15] [ 4] [0320] +17:40:37 [ 18] [ 4] [6011] +17:40:37 [ 19] [ 3] [418] +17:40:37 [ 32] [ 6] [198901] +17:40:37 [ 35] [ 32] [6213544001641478=491212014147545] +17:40:37 [ 37] [ 12] [507917209758] +17:40:37 [ 38] [ 6] [553708] +17:40:37 [ 39] [ 2] [00] +17:40:37 [ 41] [ 8] [19529001] +17:40:37 [ 49] [ 3] [418] +17:40:37 [ 54] [ 40] [1001418C0000110365421002418C000011036542] +17:40:37 ============================================================================ +17:40:37 Calculate Source COMM Id = 5 +17:40:37 ============================================================================ +17:40:37 + + +waiting on router queue for slot.... +17:40:40 ============================================================================ +17:40:40 Slot Id : <475> +17:40:40 Transaction Type : RESPONSE +17:40:40 Received From : +17:40:40 ============================================================================ +17:40:40 FNo. Len. Field Value +17:40:40 ============================================================================ +17:40:40 [ 1] [ 4] [0210] +17:40:40 [ 2] [ 16] [1888880000001743] +17:40:40 [ 3] [ 6] [301000] +17:40:40 [ 4] [ 12] [000000000000] +17:40:40 [ 7] [ 10] [0320174031] +17:40:40 [ 11] [ 6] [818503] +17:40:40 [ 12] [ 6] [174031] +17:40:40 [ 13] [ 4] [0320] +17:40:40 [ 15] [ 4] [0320] +17:40:40 [ 18] [ 4] [6011] +17:40:40 [ 19] [ 3] [418] +17:40:40 [ 32] [ 6] [621354] +17:40:40 [ 37] [ 12] [507904180511] +17:40:40 [ 38] [ 6] [905192] +17:40:40 [ 39] [ 2] [00] +17:40:40 [ 41] [ 8] [19000500] +17:40:40 [ 49] [ 3] [418] +17:40:40 [ 54] [ 20] [1001418C000056207500] +17:40:40 ============================================================================ +17:40:40 Sending to : +17:40:40 ============================================================================ +17:40:40 + + +waiting on router queue for slot.... +17:40:41 ============================================================================ +17:40:41 Slot Id : <475> +17:40:41 Transaction Type : RESPONSE +17:40:41 Received From : +17:40:41 ============================================================================ +17:40:41 FNo. Len. Field Value +17:40:41 ============================================================================ +17:40:41 [ 1] [ 4] [0210] +17:40:41 [ 2] [ 16] [1888880000001743] +17:40:41 [ 3] [ 6] [301000] +17:40:41 [ 4] [ 12] [000000000000] +17:40:41 [ 7] [ 10] [0320174031] +17:40:41 [ 11] [ 6] [818503] +17:40:41 [ 12] [ 6] [174031] +17:40:41 [ 13] [ 4] [0320] +17:40:41 [ 15] [ 4] [0320] +17:40:41 [ 18] [ 4] [6011] +17:40:41 [ 19] [ 3] [418] +17:40:41 [ 32] [ 6] [621354] +17:40:41 [ 37] [ 12] [507904180511] +17:40:41 [ 38] [ 6] [905192] +17:40:41 [ 39] [ 2] [00] +17:40:41 [ 41] [ 8] [19000500] +17:40:41 [ 49] [ 3] [418] +17:40:41 [ 54] [ 20] [1001418C000056207500] +17:40:41 ============================================================================ +17:40:41 Calculate Source COMM Id = 0 +17:40:41 ============================================================================ +17:40:41 + + +waiting on router queue for slot.... +17:40:46 ============================================================================ +17:40:46 Slot Id : <460> +17:40:46 Transaction Type : REQUEST +17:40:46 Received From : +17:40:46 ============================================================================ +17:40:46 FNo. Len. Field Value +17:40:46 ============================================================================ +17:40:46 [ 1] [ 4] [0800] +17:40:46 [ 7] [ 10] [0320103952] +17:40:46 [ 11] [ 6] [157516] +17:40:46 [ 70] [ 3] [301] +17:40:46 ============================================================================ +17:40:46 + + +waiting on router queue for slot.... +17:40:46 Sending to : +17:40:46 ============================================================================ +17:40:46 ============================================================================ +17:40:46 Slot Id : <460> +17:40:46 Transaction Type : RESPONSE +17:40:46 Received From : +17:40:46 ============================================================================ +17:40:46 FNo. Len. Field Value +17:40:46 ============================================================================ +17:40:46 [ 1] [ 4] [0810] +17:40:46 [ 7] [ 10] [0320103952] +17:40:46 [ 11] [ 6] [157516] +17:40:46 [ 39] [ 2] [00] +17:40:46 [ 70] [ 3] [301] +17:40:46 ============================================================================ +17:40:46 Calculate Source COMM Id = 2 +17:40:46 ============================================================================ +17:40:46 + + +waiting on router queue for slot.... +17:40:47 ============================================================================ +17:40:47 Slot Id : <440> +17:40:47 Transaction Type : REQUEST +17:40:47 Received From : +17:40:47 ============================================================================ +17:40:47 FNo. Len. Field Value +17:40:47 ============================================================================ +17:40:47 [ 1] [ 4] [0200] +17:40:47 [ 2] [ 16] [1808931300012448] +17:40:47 [ 3] [ 6] [011000] +17:40:47 [ 4] [ 12] [000010000000] +17:40:47 [ 7] [ 10] [0320174042] +17:40:47 [ 11] [ 6] [818537] +17:40:47 [ 12] [ 6] [174042] +17:40:47 [ 13] [ 4] [0320] +17:40:47 [ 15] [ 4] [0320] +17:40:47 [ 18] [ 4] [6011] +17:40:47 [ 22] [ 3] [900] +17:40:47 [ 25] [ 2] [02] +17:40:47 [ 28] [ 9] [D00002000] +17:40:47 [ 32] [ 6] [621354] +17:40:47 [ 35] [ 27] [1808931300012448=1803500968] +17:40:47 [ 37] [ 12] [507903640176] +17:40:47 [ 41] [ 8] [16001700] +17:40:47 [ 42] [ 15] [NATIVE ] +17:40:47 [ 43] [ 40] [NOUL Unit Xaythany LAO] +17:40:47 [ 49] [ 3] [418] +17:40:47 [ 52] [ 16] [8F29BD4C24F290BF] +17:40:47 ============================================================================ +17:40:47 + + +waiting on router queue for slot.... +17:40:47 Sending to : +17:40:47 ============================================================================ +17:40:47 Sending to : +17:40:47 ============================================================================ +17:40:47 ============================================================================ +17:40:47 Slot Id : <440> +17:40:47 Transaction Type : REQUEST +17:40:47 Received From : +17:40:47 ============================================================================ +17:40:47 FNo. Len. Field Value +17:40:47 ============================================================================ +17:40:47 [ 1] [ 4] [0200] +17:40:47 [ 2] [ 16] [1808931300012448] +17:40:47 [ 3] [ 6] [011000] +17:40:47 [ 4] [ 12] [000010000000] +17:40:47 [ 7] [ 10] [0320174042] +17:40:47 [ 11] [ 6] [818537] +17:40:47 [ 12] [ 6] [174042] +17:40:47 [ 13] [ 4] [0320] +17:40:47 [ 15] [ 4] [0320] +17:40:47 [ 18] [ 4] [6011] +17:40:47 [ 22] [ 3] [900] +17:40:47 [ 25] [ 2] [02] +17:40:47 [ 28] [ 9] [D00002000] +17:40:47 [ 32] [ 6] [621354] +17:40:47 [ 35] [ 27] [1808931300012448=1803500968] +17:40:47 [ 37] [ 12] [507903640176] +17:40:47 [ 41] [ 8] [16001700] +17:40:47 [ 42] [ 15] [NATIVE ] +17:40:47 [ 43] [ 40] [NOUL Unit Xaythany LAO] +17:40:47 [ 49] [ 3] [418] +17:40:47 [ 52] [ 16] [8F29BD4C24F290BF] +17:40:47 ============================================================================ +17:40:47 + + +waiting on router queue for slot.... +17:40:47 Sending to : +17:40:47 ============================================================================ +17:40:47 ============================================================================ +17:40:47 Slot Id : <440> +17:40:47 Transaction Type : REQUEST +17:40:47 Received From : +17:40:47 ============================================================================ +17:40:47 FNo. Len. Field Value +17:40:47 ============================================================================ +17:40:47 [ 1] [ 4] [0200] +17:40:47 [ 2] [ 16] [1808931300012448] +17:40:47 [ 3] [ 6] [011000] +17:40:47 [ 4] [ 12] [000010000000] +17:40:47 [ 7] [ 10] [0320174042] +17:40:47 [ 11] [ 6] [818537] +17:40:47 [ 12] [ 6] [174042] +17:40:47 [ 13] [ 4] [0320] +17:40:47 [ 15] [ 4] [0320] +17:40:47 [ 18] [ 4] [6011] +17:40:47 [ 22] [ 3] [900] +17:40:47 [ 25] [ 2] [02] +17:40:47 [ 28] [ 9] [D00002000] +17:40:47 [ 32] [ 6] [621354] +17:40:47 [ 35] [ 27] [1808931300012448=1803500968] +17:40:47 [ 37] [ 12] [507903640176] +17:40:47 [ 41] [ 8] [16001700] +17:40:47 [ 42] [ 15] [NATIVE ] +17:40:47 [ 43] [ 40] [NOUL Unit Xaythany LAO] +17:40:47 [ 49] [ 3] [418] +17:40:47 [ 52] [ 16] [B987BB3EC251652B] +17:40:47 ============================================================================ +17:40:47 + + +waiting on router queue for slot.... +17:40:47 Sending to : <2> +17:40:47 ============================================================================ +17:40:51 ============================================================================ +17:40:51 Slot Id : <495> +17:40:51 Transaction Type : REQUEST +17:40:51 Received From : +17:40:51 ============================================================================ +17:40:51 FNo. Len. Field Value +17:40:51 ============================================================================ +17:40:51 [ 1] [ 4] [0800] +17:40:51 [ 2] [ 5] [02531] +17:40:51 [ 3] [ 6] [579178] +17:40:51 [ 7] [ 10] [0320104051] +17:40:51 [ 11] [ 6] [807438] +17:40:51 [ 15] [ 10] [0320104051] +17:40:51 [ 37] [ 11] [57917807438] +17:40:51 [ 70] [ 3] [001] +17:40:51 ============================================================================ +17:40:51 + + +waiting on router queue for slot.... +17:40:51 ============================================================================ +17:40:51 Slot Id : <495> +17:40:51 Transaction Type : RESPONSE +17:40:51 Received From : +17:40:51 ============================================================================ +17:40:51 FNo. Len. Field Value +17:40:51 ============================================================================ +17:40:51 [ 1] [ 4] [0810] +17:40:51 [ 7] [ 10] [0320104051] +17:40:51 [ 11] [ 6] [807438] +17:40:51 [ 15] [ 4] [0320] +17:40:51 [ 37] [ 12] [57917807438] +17:40:51 [ 39] [ 2] [00] +17:40:51 [ 70] [ 3] [001] +17:40:51 ============================================================================ +17:40:51 Sending to : +17:40:51 ============================================================================ +17:40:51 + + +waiting on router queue for slot.... +17:40:51 ============================================================================ +17:40:51 Slot Id : <440> +17:40:51 Transaction Type : RESPONSE +17:40:51 Received From : +17:40:51 ============================================================================ +17:40:51 FNo. Len. Field Value +17:40:51 ============================================================================ +17:40:51 [ 1] [ 4] [0210] +17:40:51 [ 2] [ 16] [1808931300012448] +17:40:51 [ 3] [ 6] [011000] +17:40:51 [ 4] [ 12] [000010000000] +17:40:51 [ 6] [ 12] [000010000000] +17:40:51 [ 7] [ 10] [0320174042] +17:40:51 [ 11] [ 6] [818537] +17:40:51 [ 12] [ 6] [174042] +17:40:51 [ 13] [ 4] [0320] +17:40:51 [ 18] [ 4] [6011] +17:40:51 [ 19] [ 3] [418] +17:40:51 [ 22] [ 3] [021] +17:40:51 [ 32] [ 6] [621354] +17:40:51 [ 35] [ 27] [1808931300012448=1803500968] +17:40:51 [ 37] [ 12] [507903640176] +17:40:51 [ 38] [ 6] [818537] +17:40:51 [ 39] [ 2] [00] +17:40:51 [ 41] [ 8] [16001700] +17:40:51 [ 49] [ 3] [418] +17:40:51 [ 52] [ 16] [B987BB3EC251652B] +17:40:51 [ 54] [ 20] [1001418C000003137600] +17:40:51 ============================================================================ +17:40:51 Sending to : +17:40:51 ============================================================================ +17:40:51 + + +waiting on router queue for slot.... +17:40:53 ============================================================================ +17:40:53 Slot Id : <440> +17:40:53 Transaction Type : RESPONSE +17:40:53 Received From : +17:40:53 ============================================================================ +17:40:53 FNo. Len. Field Value +17:40:53 ============================================================================ +17:40:53 [ 1] [ 4] [0210] +17:40:53 [ 2] [ 16] [1808931300012448] +17:40:53 [ 3] [ 6] [011000] +17:40:53 [ 4] [ 12] [000010000000] +17:40:53 [ 6] [ 12] [000010000000] +17:40:53 [ 7] [ 10] [0320174042] +17:40:53 [ 11] [ 6] [818537] +17:40:53 [ 12] [ 6] [174042] +17:40:53 [ 13] [ 4] [0320] +17:40:53 [ 18] [ 4] [6011] +17:40:53 [ 19] [ 3] [418] +17:40:53 [ 22] [ 3] [021] +17:40:53 [ 32] [ 6] [621354] +17:40:53 [ 35] [ 27] [1808931300012448=1803500968] +17:40:53 [ 37] [ 12] [507903640176] +17:40:53 [ 38] [ 6] [818537] +17:40:53 [ 39] [ 2] [00] +17:40:53 [ 41] [ 8] [16001700] +17:40:53 [ 49] [ 3] [418] +17:40:53 [ 52] [ 16] [B987BB3EC251652B] +17:40:53 [ 54] [ 20] [1001418C000003137600] +17:40:53 ============================================================================ +17:40:53 Calculate Source COMM Id = 0 +17:40:53 ============================================================================ +17:40:53 + + +waiting on router queue for slot.... +17:40:54 ============================================================================ +17:40:54 Slot Id : <482> +17:40:54 Transaction Type : REQUEST +17:40:54 Received From : +17:40:54 ============================================================================ +17:40:54 FNo. Len. Field Value +17:40:54 ============================================================================ +17:40:54 [ 1] [ 4] [0200] +17:40:54 [ 2] [ 16] [6213544000852936] +17:40:54 [ 3] [ 6] [010000] +17:40:54 [ 4] [ 12] [000070000000] +17:40:54 [ 7] [ 10] [0320173844] +17:40:54 [ 11] [ 6] [953751] +17:40:54 [ 12] [ 6] [173844] +17:40:54 [ 13] [ 4] [0320] +17:40:54 [ 15] [ 4] [0320] +17:40:54 [ 18] [ 4] [6011] +17:40:54 [ 19] [ 3] [418] +17:40:54 [ 22] [ 3] [021] +17:40:54 [ 25] [ 2] [01] +17:40:54 [ 28] [ 9] [D00002000] +17:40:54 [ 32] [ 6] [668899] +17:40:54 [ 35] [ 32] [6213544000852936=491212015293090] +17:40:54 [ 37] [ 12] [507900234124] +17:40:54 [ 41] [ 8] [03010001] +17:40:54 [ 42] [ 15] [APT ] +17:40:54 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +17:40:54 [ 49] [ 3] [418] +17:40:54 [ 52] [ 16] [8D5673950CC6C9FE] +17:40:54 ============================================================================ +17:40:54 + + +waiting on router queue for slot.... +17:40:54 Sending to : +17:40:54 ============================================================================ +17:40:54 Sending to : +17:40:54 ============================================================================ +17:40:54 ============================================================================ +17:40:54 Slot Id : <482> +17:40:54 Transaction Type : REQUEST +17:40:54 Received From : +17:40:54 ============================================================================ +17:40:54 FNo. Len. Field Value +17:40:54 ============================================================================ +17:40:54 [ 1] [ 4] [0200] +17:40:54 [ 2] [ 16] [6213544000852936] +17:40:54 [ 3] [ 6] [010000] +17:40:54 [ 4] [ 12] [000070000000] +17:40:54 [ 7] [ 10] [0320173844] +17:40:54 [ 11] [ 6] [953751] +17:40:54 [ 12] [ 6] [173844] +17:40:54 [ 13] [ 4] [0320] +17:40:54 [ 15] [ 4] [0320] +17:40:54 [ 18] [ 4] [6011] +17:40:54 [ 19] [ 3] [418] +17:40:54 [ 22] [ 3] [021] +17:40:54 [ 25] [ 2] [01] +17:40:54 [ 28] [ 9] [D00002000] +17:40:54 [ 32] [ 6] [668899] +17:40:54 [ 35] [ 32] [6213544000852936=491212015293090] +17:40:54 [ 37] [ 12] [507900234124] +17:40:54 [ 41] [ 8] [03010001] +17:40:54 [ 42] [ 15] [APT ] +17:40:54 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +17:40:54 [ 49] [ 3] [418] +17:40:54 [ 52] [ 16] [8D5673950CC6C9FE] +17:40:54 ============================================================================ +17:40:54 + + +waiting on router queue for slot.... +17:40:54 Sending to : +17:40:54 ============================================================================ +17:40:54 ============================================================================ +17:40:54 Slot Id : <482> +17:40:54 Transaction Type : REQUEST +17:40:54 Received From : +17:40:54 ============================================================================ +17:40:54 FNo. Len. Field Value +17:40:54 ============================================================================ +17:40:54 [ 1] [ 4] [0200] +17:40:54 [ 2] [ 16] [6213544000852936] +17:40:54 [ 3] [ 6] [010000] +17:40:54 [ 4] [ 12] [000070000000] +17:40:54 [ 7] [ 10] [0320173844] +17:40:54 [ 11] [ 6] [953751] +17:40:54 [ 12] [ 6] [173844] +17:40:54 [ 13] [ 4] [0320] +17:40:54 [ 15] [ 4] [0320] +17:40:54 [ 18] [ 4] [6011] +17:40:54 [ 19] [ 3] [418] +17:40:54 [ 22] [ 3] [021] +17:40:54 [ 25] [ 2] [01] +17:40:54 [ 28] [ 9] [D00002000] +17:40:54 [ 32] [ 6] [668899] +17:40:54 [ 35] [ 32] [6213544000852936=491212015293090] +17:40:54 [ 37] [ 12] [507900234124] +17:40:54 [ 41] [ 8] [03010001] +17:40:54 [ 42] [ 15] [APT ] +17:40:54 [ 43] [ 40] [ PHO OFFICE PHONHONG DPHO ] +17:40:54 [ 49] [ 3] [418] +17:40:54 [ 52] [ 16] [65B4B614DCEA4B74] +17:40:54 ============================================================================ +17:40:54 + + +waiting on router queue for slot.... +17:40:54 Sending to : <0> +17:40:54 ============================================================================ +17:40:56 ============================================================================ +17:40:56 Slot Id : <482> +17:40:56 Transaction Type : RESPONSE +17:40:56 Received From : +17:40:56 ============================================================================ +17:40:56 FNo. Len. Field Value +17:40:56 ============================================================================ +17:40:56 [ 1] [ 4] [0210] +17:40:56 [ 2] [ 16] [6213544000852936] +17:40:56 [ 3] [ 6] [010000] +17:40:56 [ 4] [ 12] [000070000000] +17:40:56 [ 7] [ 10] [0320173844] +17:40:56 [ 11] [ 6] [953751] +17:40:56 [ 12] [ 6] [173844] +17:40:56 [ 13] [ 4] [0320] +17:40:56 [ 15] [ 4] [0320] +17:40:56 [ 18] [ 4] [6011] +17:40:56 [ 19] [ 3] [418] +17:40:56 [ 32] [ 6] [668899] +17:40:56 [ 35] [ 32] [6213544000852936=491212015293090] +17:40:56 [ 37] [ 12] [507900234124] +17:40:56 [ 38] [ 6] [904837] +17:40:56 [ 39] [ 2] [00] +17:40:56 [ 41] [ 8] [03010001] +17:40:56 [ 49] [ 3] [418] +17:40:56 [ 54] [ 40] [0001418C0000580146820002418C000058014682] +17:40:56 ============================================================================ +17:40:56 Sending to : +17:40:56 ============================================================================ +17:40:56 + + +waiting on router queue for slot.... +17:40:58 ============================================================================ +17:40:58 Slot Id : <482> +17:40:58 Transaction Type : RESPONSE +17:40:58 Received From : +17:40:58 ============================================================================ +17:40:58 FNo. Len. Field Value +17:40:58 ============================================================================ +17:40:58 [ 1] [ 4] [0210] +17:40:58 [ 2] [ 16] [6213544000852936] +17:40:58 [ 3] [ 6] [010000] +17:40:58 [ 4] [ 12] [000070000000] +17:40:58 [ 7] [ 10] [0320173844] +17:40:58 [ 11] [ 6] [953751] +17:40:58 [ 12] [ 6] [173844] +17:40:58 [ 13] [ 4] [0320] +17:40:58 [ 15] [ 4] [0320] +17:40:58 [ 18] [ 4] [6011] +17:40:58 [ 19] [ 3] [418] +17:40:58 [ 32] [ 6] [668899] +17:40:58 [ 35] [ 32] [6213544000852936=491212015293090] +17:40:58 [ 37] [ 12] [507900234124] +17:40:58 [ 38] [ 6] [904837] +17:40:58 [ 39] [ 2] [00] +17:40:58 [ 41] [ 8] [03010001] +17:40:58 [ 49] [ 3] [418] +17:40:58 [ 54] [ 40] [0001418C0000580146820002418C000058014682] +17:40:58 ============================================================================ +17:40:58 Calculate Source COMM Id = 4 +17:40:58 ============================================================================ +17:40:58 + + +waiting on router queue for slot.... +17:41:02 ============================================================================ +17:41:02 Slot Id : <432> +17:41:02 Transaction Type : REQUEST +17:41:02 Received From : +17:41:02 ============================================================================ +17:41:02 FNo. Len. Field Value +17:41:02 ============================================================================ +17:41:02 [ 1] [ 4] [0800] +17:41:02 [ 7] [ 10] [0320104009] +17:41:02 [ 11] [ 6] [157517] +17:41:02 [ 70] [ 3] [301] +17:41:02 ============================================================================ +17:41:02 + + +waiting on router queue for slot.... +17:41:02 Sending to : +17:41:02 ============================================================================ +17:41:02 ============================================================================ +17:41:02 Slot Id : <432> +17:41:02 Transaction Type : RESPONSE +17:41:02 Received From : +17:41:02 ============================================================================ +17:41:02 FNo. Len. Field Value +17:41:02 ============================================================================ +17:41:02 [ 1] [ 4] [0810] +17:41:02 [ 7] [ 10] [0320104009] +17:41:02 [ 11] [ 6] [157517] +17:41:02 [ 39] [ 2] [00] +17:41:02 [ 70] [ 3] [301] +17:41:02 ============================================================================ +17:41:02 Calculate Source COMM Id = 2 +17:41:02 ============================================================================ +17:41:02 + + +waiting on router queue for slot.... +17:41:13 ============================================================================ +17:41:13 Slot Id : <449> +17:41:13 Transaction Type : REQUEST +17:41:13 Received From : +17:41:13 ============================================================================ +17:41:13 FNo. Len. Field Value +17:41:13 ============================================================================ +17:41:13 [ 1] [ 4] [0800] +17:41:13 [ 7] [ 10] [0320104020] +17:41:13 [ 11] [ 6] [157518] +17:41:13 [ 70] [ 3] [301] +17:41:13 ============================================================================ +17:41:13 + + +waiting on router queue for slot.... +17:41:13 Sending to : +17:41:13 ============================================================================ +17:41:13 ============================================================================ +17:41:13 Slot Id : <449> +17:41:13 Transaction Type : RESPONSE +17:41:13 Received From : +17:41:13 ============================================================================ +17:41:13 FNo. Len. Field Value +17:41:13 ============================================================================ +17:41:13 [ 1] [ 4] [0810] +17:41:13 [ 7] [ 10] [0320104020] +17:41:13 [ 11] [ 6] [157518] +17:41:13 [ 39] [ 2] [00] +17:41:13 [ 70] [ 3] [301] +17:41:13 ============================================================================ +17:41:13 Calculate Source COMM Id = 2 +17:41:13 ============================================================================ +17:41:13 + + +waiting on router queue for slot.... +17:41:23 ============================================================================ +17:41:23 Slot Id : <488> +17:41:23 Transaction Type : REQUEST +17:41:23 Received From : +17:41:23 ============================================================================ +17:41:23 FNo. Len. Field Value +17:41:23 ============================================================================ +17:41:23 [ 1] [ 4] [0800] +17:41:23 [ 7] [ 10] [0320103912] +17:41:23 [ 11] [ 6] [030682] +17:41:23 [ 37] [ 12] [57917030682] +17:41:23 [ 70] [ 3] [301] +17:41:23 ============================================================================ +17:41:23 + + +waiting on router queue for slot.... +17:41:23 Sending to : +17:41:23 ============================================================================ +17:41:23 ============================================================================ +17:41:23 Slot Id : <488> +17:41:23 Transaction Type : RESPONSE +17:41:23 Received From : +17:41:23 ============================================================================ +17:41:23 FNo. Len. Field Value +17:41:23 ============================================================================ +17:41:23 [ 1] [ 4] [0810] +17:41:23 [ 7] [ 10] [0320103912] +17:41:23 [ 11] [ 6] [030682] +17:41:23 [ 37] [ 12] [579170306820] +17:41:23 [ 39] [ 2] [00] +17:41:23 [ 70] [ 3] [810] +17:41:23 ============================================================================ +17:41:23 Calculate Source COMM Id = 4 +17:41:23 ============================================================================ +17:41:23 + + +waiting on router queue for slot.... +17:41:24 ============================================================================ +17:41:24 Slot Id : <453> +17:41:24 Transaction Type : REQUEST +17:41:24 Received From : +17:41:24 ============================================================================ +17:41:24 FNo. Len. Field Value +17:41:24 ============================================================================ +17:41:24 [ 1] [ 4] [0800] +17:41:24 [ 7] [ 10] [0320104031] +17:41:24 [ 11] [ 6] [157519] +17:41:24 [ 70] [ 3] [301] +17:41:24 ============================================================================ +17:41:24 + + +waiting on router queue for slot.... +17:41:24 Sending to : +17:41:24 ============================================================================ +17:41:24 ============================================================================ +17:41:24 Slot Id : <453> +17:41:24 Transaction Type : RESPONSE +17:41:24 Received From : +17:41:24 ============================================================================ +17:41:24 FNo. Len. Field Value +17:41:24 ============================================================================ +17:41:24 [ 1] [ 4] [0810] +17:41:24 [ 7] [ 10] [0320104031] +17:41:24 [ 11] [ 6] [157519] +17:41:24 [ 39] [ 2] [00] +17:41:24 [ 70] [ 3] [301] +17:41:24 ============================================================================ +17:41:24 Calculate Source COMM Id = 2 +17:41:24 ============================================================================ +17:41:24 + + +waiting on router queue for slot.... +17:41:35 ============================================================================ +17:41:35 Slot Id : <470> +17:41:35 Transaction Type : REQUEST +17:41:35 Received From : +17:41:35 ============================================================================ +17:41:35 FNo. Len. Field Value +17:41:35 ============================================================================ +17:41:35 [ 1] [ 4] [0800] +17:41:35 [ 7] [ 10] [0320104042] +17:41:35 [ 11] [ 6] [157520] +17:41:35 [ 70] [ 3] [301] +17:41:35 ============================================================================ +17:41:35 + + +waiting on router queue for slot.... +17:41:35 Sending to : +17:41:35 ============================================================================ +17:41:35 ============================================================================ +17:41:35 Slot Id : <470> +17:41:35 Transaction Type : RESPONSE +17:41:35 Received From : +17:41:35 ============================================================================ +17:41:35 FNo. Len. Field Value +17:41:35 ============================================================================ +17:41:35 [ 1] [ 4] [0810] +17:41:35 [ 7] [ 10] [0320104042] +17:41:35 [ 11] [ 6] [157520] +17:41:35 [ 39] [ 2] [00] +17:41:35 [ 70] [ 3] [301] +17:41:35 ============================================================================ +17:41:35 Calculate Source COMM Id = 2 +17:41:35 ============================================================================ +17:41:35 + + +waiting on router queue for slot.... +17:41:38 ============================================================================ +17:41:38 Slot Id : <484> +17:41:38 Transaction Type : REQUEST +17:41:38 Received From : +17:41:38 ============================================================================ +17:41:38 FNo. Len. Field Value +17:41:38 ============================================================================ +17:41:38 [ 1] [ 4] [0800] +17:41:38 [ 7] [ 10] [0321005325] +17:41:38 [ 11] [ 6] [175325] +17:41:38 [ 37] [ 12] [57917175325] +17:41:38 [ 70] [ 3] [301] +17:41:38 ============================================================================ +17:41:38 + + +waiting on router queue for slot.... +17:41:38 Sending to : +17:41:38 ============================================================================ +17:41:38 ============================================================================ +17:41:38 Slot Id : <484> +17:41:38 Transaction Type : RESPONSE +17:41:38 Received From : +17:41:38 ============================================================================ +17:41:38 FNo. Len. Field Value +17:41:38 ============================================================================ +17:41:38 [ 1] [ 4] [0810] +17:41:38 [ 7] [ 10] [0321005325] +17:41:38 [ 11] [ 6] [175325] +17:41:38 [ 37] [ 12] [579171753250] +17:41:38 [ 39] [ 2] [00] +17:41:38 [ 70] [ 3] [810] +17:41:38 ============================================================================ +17:41:38 Calculate Source COMM Id = 6 +17:41:38 ============================================================================ +17:41:38 + + +waiting on router queue for slot.... +17:41:38 ============================================================================ +17:41:38 Slot Id : <463> +17:41:38 Transaction Type : REQUEST +17:41:38 Received From : +17:41:38 ============================================================================ +17:41:38 FNo. Len. Field Value +17:41:38 ============================================================================ +17:41:38 [ 1] [ 4] [0200] +17:41:38 [ 2] [ 16] [1888880000001743] +17:41:38 [ 3] [ 6] [011000] +17:41:38 [ 4] [ 12] [000020000000] +17:41:38 [ 7] [ 10] [0320174133] +17:41:38 [ 11] [ 6] [818738] +17:41:38 [ 12] [ 6] [174133] +17:41:38 [ 13] [ 4] [0320] +17:41:38 [ 15] [ 4] [0320] +17:41:38 [ 18] [ 4] [6011] +17:41:38 [ 22] [ 3] [900] +17:41:38 [ 25] [ 2] [02] +17:41:38 [ 28] [ 9] [D00002000] +17:41:38 [ 32] [ 6] [621354] +17:41:38 [ 35] [ 32] [1888880000001743=000010100000790] +17:41:38 [ 37] [ 12] [507904180513] +17:41:38 [ 41] [ 8] [19000500] +17:41:38 [ 42] [ 15] [NATIVE ] +17:41:38 [ 43] [ 40] [Sekong Branch01 Lamam LAO] +17:41:38 [ 49] [ 3] [418] +17:41:38 [ 52] [ 16] [429EB5A1663DA61F] +17:41:38 ============================================================================ +17:41:38 + + +waiting on router queue for slot.... +17:41:38 Sending to : +17:41:38 ============================================================================ +17:41:38 Sending to : +17:41:38 ============================================================================ +17:41:39 ============================================================================ +17:41:39 Slot Id : <463> +17:41:39 Transaction Type : REQUEST +17:41:39 Received From : +17:41:39 ============================================================================ +17:41:39 FNo. Len. Field Value +17:41:39 ============================================================================ +17:41:39 [ 1] [ 4] [0200] +17:41:39 [ 2] [ 16] [1888880000001743] +17:41:39 [ 3] [ 6] [011000] +17:41:39 [ 4] [ 12] [000020000000] +17:41:39 [ 7] [ 10] [0320174133] +17:41:39 [ 11] [ 6] [818738] +17:41:39 [ 12] [ 6] [174133] +17:41:39 [ 13] [ 4] [0320] +17:41:39 [ 15] [ 4] [0320] +17:41:39 [ 18] [ 4] [6011] +17:41:39 [ 22] [ 3] [900] +17:41:39 [ 25] [ 2] [02] +17:41:39 [ 28] [ 9] [D00002000] +17:41:39 [ 32] [ 6] [621354] +17:41:39 [ 35] [ 32] [1888880000001743=000010100000790] +17:41:39 [ 37] [ 12] [507904180513] +17:41:39 [ 41] [ 8] [19000500] +17:41:39 [ 42] [ 15] [NATIVE ] +17:41:39 [ 43] [ 40] [Sekong Branch01 Lamam LAO] +17:41:39 [ 49] [ 3] [418] +17:41:39 [ 52] [ 16] [429EB5A1663DA61F] +17:41:39 ============================================================================ +17:41:39 + + +waiting on router queue for slot.... +17:41:39 Sending to : +17:41:39 ============================================================================ +17:41:39 ============================================================================ +17:41:39 Slot Id : <463> +17:41:39 Transaction Type : REQUEST +17:41:39 Received From : +17:41:39 ============================================================================ +17:41:39 FNo. Len. Field Value +17:41:39 ============================================================================ +17:41:39 [ 1] [ 4] [0200] +17:41:39 [ 2] [ 16] [1888880000001743] +17:41:39 [ 3] [ 6] [011000] +17:41:39 [ 4] [ 12] [000020000000] +17:41:39 [ 7] [ 10] [0320174133] +17:41:39 [ 11] [ 6] [818738] +17:41:39 [ 12] [ 6] [174133] +17:41:39 [ 13] [ 4] [0320] +17:41:39 [ 15] [ 4] [0320] +17:41:39 [ 18] [ 4] [6011] +17:41:39 [ 22] [ 3] [900] +17:41:39 [ 25] [ 2] [02] +17:41:39 [ 28] [ 9] [D00002000] +17:41:39 [ 32] [ 6] [621354] +17:41:39 [ 35] [ 32] [1888880000001743=000010100000790] +17:41:39 [ 37] [ 12] [507904180513] +17:41:39 [ 41] [ 8] [19000500] +17:41:39 [ 42] [ 15] [NATIVE ] +17:41:39 [ 43] [ 40] [Sekong Branch01 Lamam LAO] +17:41:39 [ 49] [ 3] [418] +17:41:39 [ 52] [ 16] [8637996A334C794A] +17:41:39 ============================================================================ +17:41:39 + + +waiting on router queue for slot.... +17:41:39 Sending to : <5> +17:41:39 ============================================================================ +17:41:46 ============================================================================ +17:41:46 Slot Id : <480> +17:41:46 Transaction Type : REQUEST +17:41:46 Received From : +17:41:46 ============================================================================ +17:41:46 FNo. Len. Field Value +17:41:46 ============================================================================ +17:41:46 [ 1] [ 4] [0800] +17:41:46 [ 7] [ 10] [0320104052] +17:41:46 [ 11] [ 6] [157521] +17:41:46 [ 70] [ 3] [301] +17:41:46 ============================================================================ +17:41:46 + + +waiting on router queue for slot.... +17:41:46 Sending to : +17:41:46 ============================================================================ +17:41:46 ============================================================================ +17:41:46 Slot Id : <480> +17:41:46 Transaction Type : RESPONSE +17:41:46 Received From : +17:41:46 ============================================================================ +17:41:46 FNo. Len. Field Value +17:41:46 ============================================================================ +17:41:46 [ 1] [ 4] [0810] +17:41:46 [ 7] [ 10] [0320104052] +17:41:46 [ 11] [ 6] [157521] +17:41:46 [ 39] [ 2] [00] +17:41:46 [ 70] [ 3] [301] +17:41:46 ============================================================================ +17:41:46 Calculate Source COMM Id = 2 +17:41:46 ============================================================================ +17:41:46 + + +waiting on router queue for slot.... +17:41:46 ============================================================================ +17:41:46 Slot Id : <463> +17:41:46 Transaction Type : RESPONSE +17:41:46 Received From : +17:41:46 ============================================================================ +17:41:46 FNo. Len. Field Value +17:41:46 ============================================================================ +17:41:46 [ 1] [ 4] [0210] +17:41:46 [ 2] [ 16] [1888880000001743] +17:41:46 [ 3] [ 6] [011000] +17:41:46 [ 4] [ 12] [000020000000] +17:41:46 [ 7] [ 10] [0320174133] +17:41:46 [ 11] [ 6] [818738] +17:41:46 [ 12] [ 6] [174133] +17:41:46 [ 13] [ 4] [0320] +17:41:46 [ 15] [ 4] [0320] +17:41:46 [ 18] [ 4] [6011] +17:41:46 [ 19] [ 3] [418] +17:41:46 [ 32] [ 6] [621354] +17:41:46 [ 37] [ 12] [507904180513] +17:41:46 [ 38] [ 6] [409793] +17:41:46 [ 39] [ 2] [00] +17:41:46 [ 41] [ 8] [19000500] +17:41:46 [ 49] [ 3] [418] +17:41:46 [ 54] [ 0] [] +17:41:46 ============================================================================ +17:41:46 Sending to : +17:41:46 ============================================================================ +17:41:46 + + +waiting on router queue for slot.... +17:41:48 ============================================================================ +17:41:48 Slot Id : <463> +17:41:48 Transaction Type : RESPONSE +17:41:48 Received From : +17:41:48 ============================================================================ +17:41:48 FNo. Len. Field Value +17:41:48 ============================================================================ +17:41:48 [ 1] [ 4] [0210] +17:41:48 [ 2] [ 16] [1888880000001743] +17:41:48 [ 3] [ 6] [011000] +17:41:48 [ 4] [ 12] [000020000000] +17:41:48 [ 7] [ 10] [0320174133] +17:41:48 [ 11] [ 6] [818738] +17:41:48 [ 12] [ 6] [174133] +17:41:48 [ 13] [ 4] [0320] +17:41:48 [ 15] [ 4] [0320] +17:41:48 [ 18] [ 4] [6011] +17:41:48 [ 19] [ 3] [418] +17:41:48 [ 32] [ 6] [621354] +17:41:48 [ 37] [ 12] [507904180513] +17:41:48 [ 38] [ 6] [409793] +17:41:48 [ 39] [ 2] [00] +17:41:48 [ 41] [ 8] [19000500] +17:41:48 [ 49] [ 3] [418] +17:41:48 [ 54] [ 0] [] +17:41:48 ============================================================================ +17:41:48 Calculate Source COMM Id = 0 +17:41:48 ============================================================================ +17:41:48 + + +waiting on router queue for slot.... +17:41:50 ============================================================================ +17:41:50 Slot Id : <490> +17:41:50 Transaction Type : REQUEST +17:41:50 Received From : +17:41:50 ============================================================================ +17:41:50 FNo. Len. Field Value +17:41:50 ============================================================================ +17:41:50 [ 1] [ 4] [0200] +17:41:50 [ 2] [ 16] [6688990107031401] +17:41:50 [ 3] [ 6] [010000] +17:41:50 [ 4] [ 12] [000100000000] +17:41:50 [ 7] [ 10] [0320174145] +17:41:50 [ 11] [ 6] [818783] +17:41:50 [ 12] [ 6] [174145] +17:41:50 [ 13] [ 4] [0320] +17:41:50 [ 15] [ 4] [0320] +17:41:50 [ 18] [ 4] [6011] +17:41:50 [ 22] [ 3] [900] +17:41:50 [ 25] [ 2] [02] +17:41:50 [ 28] [ 9] [D00002000] +17:41:50 [ 32] [ 6] [621354] +17:41:50 [ 35] [ 37] [6688990107031401=44011231140181600000] +17:41:50 [ 37] [ 12] [507903444097] +17:41:50 [ 41] [ 8] [06001700] +17:41:50 [ 42] [ 15] [NATIVE ] +17:41:50 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:41:50 [ 49] [ 3] [418] +17:41:50 [ 52] [ 16] [264C9242F1C64F0C] +17:41:50 ============================================================================ +17:41:50 + + +waiting on router queue for slot.... +17:41:50 Sending to : +17:41:50 ============================================================================ +17:41:50 Sending to : +17:41:50 ============================================================================ +17:41:50 ============================================================================ +17:41:50 Slot Id : <490> +17:41:50 Transaction Type : REQUEST +17:41:50 Received From : +17:41:50 ============================================================================ +17:41:50 FNo. Len. Field Value +17:41:50 ============================================================================ +17:41:50 [ 1] [ 4] [0200] +17:41:50 [ 2] [ 16] [6688990107031401] +17:41:50 [ 3] [ 6] [010000] +17:41:50 [ 4] [ 12] [000100000000] +17:41:50 [ 7] [ 10] [0320174145] +17:41:50 [ 11] [ 6] [818783] +17:41:50 [ 12] [ 6] [174145] +17:41:50 [ 13] [ 4] [0320] +17:41:50 [ 15] [ 4] [0320] +17:41:50 [ 18] [ 4] [6011] +17:41:50 [ 22] [ 3] [900] +17:41:50 [ 25] [ 2] [02] +17:41:50 [ 28] [ 9] [D00002000] +17:41:50 [ 32] [ 6] [621354] +17:41:50 [ 35] [ 37] [6688990107031401=44011231140181600000] +17:41:50 [ 37] [ 12] [507903444097] +17:41:50 [ 41] [ 8] [06001700] +17:41:50 [ 42] [ 15] [NATIVE ] +17:41:50 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:41:50 [ 49] [ 3] [418] +17:41:50 [ 52] [ 16] [264C9242F1C64F0C] +17:41:50 ============================================================================ +17:41:50 + + +waiting on router queue for slot.... +17:41:50 Sending to : +17:41:50 ============================================================================ +17:41:51 ============================================================================ +17:41:51 Slot Id : <490> +17:41:51 Transaction Type : REQUEST +17:41:51 Received From : +17:41:51 ============================================================================ +17:41:51 FNo. Len. Field Value +17:41:51 ============================================================================ +17:41:51 [ 1] [ 4] [0200] +17:41:51 [ 2] [ 16] [6688990107031401] +17:41:51 [ 3] [ 6] [010000] +17:41:51 [ 4] [ 12] [000100000000] +17:41:51 [ 7] [ 10] [0320174145] +17:41:51 [ 11] [ 6] [818783] +17:41:51 [ 12] [ 6] [174145] +17:41:51 [ 13] [ 4] [0320] +17:41:51 [ 15] [ 4] [0320] +17:41:51 [ 18] [ 4] [6011] +17:41:51 [ 22] [ 3] [900] +17:41:51 [ 25] [ 2] [02] +17:41:51 [ 28] [ 9] [D00002000] +17:41:51 [ 32] [ 6] [621354] +17:41:51 [ 35] [ 37] [6688990107031401=44011231140181600000] +17:41:51 [ 37] [ 12] [507903444097] +17:41:51 [ 41] [ 8] [06001700] +17:41:51 [ 42] [ 15] [NATIVE ] +17:41:51 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:41:51 [ 49] [ 3] [418] +17:41:51 [ 52] [ 16] [351386129567F346] +17:41:51 ============================================================================ +17:41:51 + + +waiting on router queue for slot.... +17:41:51 Sending to : <4> +17:41:51 ============================================================================ +17:41:51 ============================================================================ +17:41:51 Slot Id : <490> +17:41:51 Transaction Type : RESPONSE +17:41:51 Received From : +17:41:51 ============================================================================ +17:41:51 FNo. Len. Field Value +17:41:51 ============================================================================ +17:41:51 [ 1] [ 4] [0210] +17:41:51 [ 2] [ 16] [6688990107031401] +17:41:51 [ 3] [ 6] [010000] +17:41:51 [ 4] [ 12] [000100000000] +17:41:51 [ 11] [ 6] [818783] +17:41:51 [ 12] [ 6] [174145] +17:41:51 [ 15] [ 4] [0320] +17:41:51 [ 18] [ 4] [6011] +17:41:51 [ 32] [ 6] [621354] +17:41:51 [ 35] [ 37] [6688990107031401=44011231140181600000] +17:41:51 [ 37] [ 12] [507903444097] +17:41:51 [ 38] [ 6] [731516] +17:41:51 [ 39] [ 2] [00] +17:41:51 [ 41] [ 8] [06001700] +17:41:51 [ 49] [ 3] [418] +17:41:51 [ 54] [ 20] [0002418C000199644914] +17:41:51 ============================================================================ +17:41:51 Sending to : +17:41:51 ============================================================================ +17:41:51 + + +waiting on router queue for slot.... +17:41:53 ============================================================================ +17:41:53 Slot Id : <471> +17:41:53 Transaction Type : REQUEST +17:41:53 Received From : +17:41:53 ============================================================================ +17:41:53 FNo. Len. Field Value +17:41:53 ============================================================================ +17:41:53 [ 1] [ 4] [0800] +17:41:53 [ 2] [ 5] [02531] +17:41:53 [ 3] [ 6] [579178] +17:41:53 [ 7] [ 10] [0320104153] +17:41:53 [ 11] [ 6] [807439] +17:41:53 [ 15] [ 10] [0320104153] +17:41:53 [ 37] [ 11] [57917807439] +17:41:53 [ 70] [ 3] [001] +17:41:53 ============================================================================ +17:41:53 + + +waiting on router queue for slot.... +17:41:53 ============================================================================ +17:41:53 Slot Id : <471> +17:41:53 Transaction Type : RESPONSE +17:41:53 Received From : +17:41:53 ============================================================================ +17:41:53 FNo. Len. Field Value +17:41:53 ============================================================================ +17:41:53 [ 1] [ 4] [0810] +17:41:53 [ 7] [ 10] [0320104153] +17:41:53 [ 11] [ 6] [807439] +17:41:53 [ 15] [ 4] [0320] +17:41:53 [ 37] [ 12] [57917807439] +17:41:53 [ 39] [ 2] [00] +17:41:53 [ 70] [ 3] [001] +17:41:53 ============================================================================ +17:41:53 Sending to : +17:41:53 ============================================================================ +17:41:53 + + +waiting on router queue for slot.... +17:41:53 ============================================================================ +17:41:53 Slot Id : <490> +17:41:53 Transaction Type : RESPONSE +17:41:53 Received From : +17:41:53 ============================================================================ +17:41:53 FNo. Len. Field Value +17:41:53 ============================================================================ +17:41:53 [ 1] [ 4] [0210] +17:41:53 [ 2] [ 16] [6688990107031401] +17:41:53 [ 3] [ 6] [010000] +17:41:53 [ 4] [ 12] [000100000000] +17:41:53 [ 11] [ 6] [818783] +17:41:53 [ 12] [ 6] [174145] +17:41:53 [ 15] [ 4] [0320] +17:41:53 [ 18] [ 4] [6011] +17:41:53 [ 32] [ 6] [621354] +17:41:53 [ 35] [ 37] [6688990107031401=44011231140181600000] +17:41:53 [ 37] [ 12] [507903444097] +17:41:53 [ 38] [ 6] [731516] +17:41:53 [ 39] [ 2] [00] +17:41:53 [ 41] [ 8] [06001700] +17:41:53 [ 49] [ 3] [418] +17:41:53 [ 54] [ 20] [0002418C000199644914] +17:41:53 ============================================================================ +17:41:53 Calculate Source COMM Id = 0 +17:41:53 ============================================================================ +17:41:53 + + +waiting on router queue for slot.... +17:41:57 ============================================================================ +17:41:57 Slot Id : <448> +17:41:57 Transaction Type : REQUEST +17:41:57 Received From : +17:41:57 ============================================================================ +17:41:57 FNo. Len. Field Value +17:41:57 ============================================================================ +17:41:57 [ 1] [ 4] [0800] +17:41:57 [ 7] [ 10] [0320104104] +17:41:57 [ 11] [ 6] [157522] +17:41:57 [ 70] [ 3] [301] +17:41:57 ============================================================================ +17:41:57 + + +waiting on router queue for slot.... +17:41:57 Sending to : +17:41:57 ============================================================================ +17:41:57 ============================================================================ +17:41:57 Slot Id : <448> +17:41:57 Transaction Type : RESPONSE +17:41:57 Received From : +17:41:57 ============================================================================ +17:41:57 FNo. Len. Field Value +17:41:57 ============================================================================ +17:41:57 [ 1] [ 4] [0810] +17:41:57 [ 7] [ 10] [0320104104] +17:41:57 [ 11] [ 6] [157522] +17:41:57 [ 39] [ 2] [00] +17:41:57 [ 70] [ 3] [301] +17:41:57 ============================================================================ +17:41:57 Calculate Source COMM Id = 2 +17:41:57 ============================================================================ +17:41:57 + + +waiting on router queue for slot.... +17:42:08 ============================================================================ +17:42:08 Slot Id : <479> +17:42:08 Transaction Type : REQUEST +17:42:08 Received From : +17:42:08 ============================================================================ +17:42:08 FNo. Len. Field Value +17:42:08 ============================================================================ +17:42:08 [ 1] [ 4] [0800] +17:42:08 [ 7] [ 10] [0320104114] +17:42:08 [ 11] [ 6] [157523] +17:42:08 [ 70] [ 3] [301] +17:42:08 ============================================================================ +17:42:08 + + +waiting on router queue for slot.... +17:42:08 Sending to : +17:42:08 ============================================================================ +17:42:08 ============================================================================ +17:42:08 Slot Id : <479> +17:42:08 Transaction Type : RESPONSE +17:42:08 Received From : +17:42:08 ============================================================================ +17:42:08 FNo. Len. Field Value +17:42:08 ============================================================================ +17:42:08 [ 1] [ 4] [0810] +17:42:08 [ 7] [ 10] [0320104114] +17:42:08 [ 11] [ 6] [157523] +17:42:08 [ 39] [ 2] [00] +17:42:08 [ 70] [ 3] [301] +17:42:08 ============================================================================ +17:42:08 Calculate Source COMM Id = 2 +17:42:08 ============================================================================ +17:42:08 + + +waiting on router queue for slot.... +17:42:19 ============================================================================ +17:42:19 Slot Id : <0> +17:42:19 Transaction Type : REQUEST +17:42:19 Received From : +17:42:19 ============================================================================ +17:42:19 FNo. Len. Field Value +17:42:19 ============================================================================ +17:42:19 [ 1] [ 4] [0800] +17:42:19 [ 7] [ 10] [0320104125] +17:42:19 [ 11] [ 6] [157524] +17:42:19 [ 70] [ 3] [301] +17:42:19 ============================================================================ +17:42:19 + + +waiting on router queue for slot.... +17:42:19 Sending to : +17:42:19 ============================================================================ +17:42:19 ============================================================================ +17:42:19 Slot Id : <0> +17:42:19 Transaction Type : RESPONSE +17:42:19 Received From : +17:42:19 ============================================================================ +17:42:19 FNo. Len. Field Value +17:42:19 ============================================================================ +17:42:19 [ 1] [ 4] [0810] +17:42:19 [ 7] [ 10] [0320104125] +17:42:19 [ 11] [ 6] [157524] +17:42:19 [ 39] [ 2] [00] +17:42:19 [ 70] [ 3] [301] +17:42:19 ============================================================================ +17:42:19 Calculate Source COMM Id = 2 +17:42:19 ============================================================================ +17:42:19 + + +waiting on router queue for slot.... +17:42:19 ============================================================================ +17:42:19 Slot Id : <493> +17:42:19 Transaction Type : REQUEST +17:42:19 Received From : +17:42:19 ============================================================================ +17:42:19 FNo. Len. Field Value +17:42:19 ============================================================================ +17:42:19 [ 1] [ 4] [0200] +17:42:19 [ 2] [ 16] [6688990040118976] +17:42:19 [ 3] [ 6] [301000] +17:42:19 [ 4] [ 12] [000000000000] +17:42:19 [ 7] [ 10] [0320174214] +17:42:19 [ 11] [ 6] [818888] +17:42:19 [ 12] [ 6] [174214] +17:42:19 [ 13] [ 4] [0320] +17:42:19 [ 15] [ 4] [0320] +17:42:19 [ 18] [ 4] [6011] +17:42:19 [ 22] [ 3] [900] +17:42:19 [ 25] [ 2] [02] +17:42:19 [ 28] [ 9] [D00000000] +17:42:19 [ 32] [ 6] [621354] +17:42:19 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:42:19 [ 37] [ 12] [507903398172] +17:42:19 [ 41] [ 8] [06001200] +17:42:19 [ 42] [ 15] [NATIVE ] +17:42:19 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +17:42:19 [ 49] [ 3] [418] +17:42:19 [ 52] [ 16] [3F8FA5C817D40D98] +17:42:19 ============================================================================ +17:42:19 + + +waiting on router queue for slot.... +17:42:19 Sending to : +17:42:19 ============================================================================ +17:42:19 Sending to : +17:42:19 ============================================================================ +17:42:20 ============================================================================ +17:42:20 Slot Id : <493> +17:42:20 Transaction Type : REQUEST +17:42:20 Received From : +17:42:20 ============================================================================ +17:42:20 FNo. Len. Field Value +17:42:20 ============================================================================ +17:42:20 [ 1] [ 4] [0200] +17:42:20 [ 2] [ 16] [6688990040118976] +17:42:20 [ 3] [ 6] [301000] +17:42:20 [ 4] [ 12] [000000000000] +17:42:20 [ 7] [ 10] [0320174214] +17:42:20 [ 11] [ 6] [818888] +17:42:20 [ 12] [ 6] [174214] +17:42:20 [ 13] [ 4] [0320] +17:42:20 [ 15] [ 4] [0320] +17:42:20 [ 18] [ 4] [6011] +17:42:20 [ 22] [ 3] [900] +17:42:20 [ 25] [ 2] [02] +17:42:20 [ 28] [ 9] [D00000000] +17:42:20 [ 32] [ 6] [621354] +17:42:20 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:42:20 [ 37] [ 12] [507903398172] +17:42:20 [ 41] [ 8] [06001200] +17:42:20 [ 42] [ 15] [NATIVE ] +17:42:20 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +17:42:20 [ 49] [ 3] [418] +17:42:20 [ 52] [ 16] [3F8FA5C817D40D98] +17:42:20 ============================================================================ +17:42:20 + + +waiting on router queue for slot.... +17:42:20 Sending to : +17:42:20 ============================================================================ +17:42:20 ============================================================================ +17:42:20 Slot Id : <493> +17:42:20 Transaction Type : REQUEST +17:42:20 Received From : +17:42:20 ============================================================================ +17:42:20 FNo. Len. Field Value +17:42:20 ============================================================================ +17:42:20 [ 1] [ 4] [0200] +17:42:20 [ 2] [ 16] [6688990040118976] +17:42:20 [ 3] [ 6] [301000] +17:42:20 [ 4] [ 12] [000000000000] +17:42:20 [ 7] [ 10] [0320174214] +17:42:20 [ 11] [ 6] [818888] +17:42:20 [ 12] [ 6] [174214] +17:42:20 [ 13] [ 4] [0320] +17:42:20 [ 15] [ 4] [0320] +17:42:20 [ 18] [ 4] [6011] +17:42:20 [ 22] [ 3] [900] +17:42:20 [ 25] [ 2] [02] +17:42:20 [ 28] [ 9] [D00000000] +17:42:20 [ 32] [ 6] [621354] +17:42:20 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:42:20 [ 37] [ 12] [507903398172] +17:42:20 [ 41] [ 8] [06001200] +17:42:20 [ 42] [ 15] [NATIVE ] +17:42:20 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +17:42:20 [ 49] [ 3] [418] +17:42:20 [ 52] [ 16] [8D6D7DCFA2B58901] +17:42:20 ============================================================================ +17:42:20 + + +waiting on router queue for slot.... +17:42:20 Sending to : <4> +17:42:20 ============================================================================ +17:42:20 ============================================================================ +17:42:20 Slot Id : <4> +17:42:20 Transaction Type : REQUEST +17:42:20 Received From : +17:42:20 ============================================================================ +17:42:20 FNo. Len. Field Value +17:42:20 ============================================================================ +17:42:20 [ 1] [ 4] [0800] +17:42:20 [ 7] [ 10] [0320174206] +17:42:20 [ 11] [ 6] [090652] +17:42:20 [ 37] [ 12] [507917090652] +17:42:20 [ 70] [ 3] [ ] +17:42:20 ============================================================================ +17:42:20 + + +waiting on router queue for slot.... +17:42:20 Sending to : +17:42:20 ============================================================================ +17:42:20 ============================================================================ +17:42:20 Slot Id : <4> +17:42:20 Transaction Type : RESPONSE +17:42:20 Received From : +17:42:20 ============================================================================ +17:42:20 FNo. Len. Field Value +17:42:20 ============================================================================ +17:42:20 [ 1] [ 4] [0810] +17:42:20 [ 7] [ 10] [0320174206] +17:42:20 [ 11] [ 6] [090652] +17:42:20 [ 37] [ 12] [507917090652] +17:42:20 [ 39] [ 2] [91] +17:42:20 [ 70] [ 3] [ ] +17:42:20 ============================================================================ +17:42:20 Calculate Source COMM Id = 3 +17:42:20 ============================================================================ +17:42:20 + + +waiting on router queue for slot.... +17:42:21 ============================================================================ +17:42:21 Slot Id : <493> +17:42:21 Transaction Type : RESPONSE +17:42:21 Received From : +17:42:21 ============================================================================ +17:42:21 FNo. Len. Field Value +17:42:21 ============================================================================ +17:42:21 [ 1] [ 4] [0210] +17:42:21 [ 2] [ 16] [6688990040118976] +17:42:21 [ 3] [ 6] [301000] +17:42:21 [ 4] [ 12] [000000000000] +17:42:21 [ 11] [ 6] [818888] +17:42:21 [ 12] [ 6] [174214] +17:42:21 [ 15] [ 4] [0320] +17:42:21 [ 18] [ 4] [6011] +17:42:21 [ 32] [ 6] [621354] +17:42:21 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:42:21 [ 37] [ 12] [507903398172] +17:42:21 [ 38] [ 6] [997260] +17:42:21 [ 39] [ 2] [00] +17:42:21 [ 41] [ 8] [06001200] +17:42:21 [ 49] [ 3] [418] +17:42:21 [ 54] [ 20] [1002418C000061352957] +17:42:21 ============================================================================ +17:42:21 Sending to : +17:42:21 ============================================================================ +17:42:21 + + +waiting on router queue for slot.... +17:42:22 ============================================================================ +17:42:22 Slot Id : <493> +17:42:22 Transaction Type : RESPONSE +17:42:22 Received From : +17:42:22 ============================================================================ +17:42:22 FNo. Len. Field Value +17:42:22 ============================================================================ +17:42:22 [ 1] [ 4] [0210] +17:42:22 [ 2] [ 16] [6688990040118976] +17:42:22 [ 3] [ 6] [301000] +17:42:22 [ 4] [ 12] [000000000000] +17:42:22 [ 11] [ 6] [818888] +17:42:22 [ 12] [ 6] [174214] +17:42:22 [ 15] [ 4] [0320] +17:42:22 [ 18] [ 4] [6011] +17:42:22 [ 32] [ 6] [621354] +17:42:22 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:42:22 [ 37] [ 12] [507903398172] +17:42:22 [ 38] [ 6] [997260] +17:42:22 [ 39] [ 2] [00] +17:42:22 [ 41] [ 8] [06001200] +17:42:22 [ 49] [ 3] [418] +17:42:22 [ 54] [ 20] [1002418C000061352957] +17:42:22 ============================================================================ +17:42:22 Calculate Source COMM Id = 0 +17:42:22 ============================================================================ +17:42:22 + + +waiting on router queue for slot.... +17:42:30 ============================================================================ +17:42:30 Slot Id : <2> +17:42:30 Transaction Type : REQUEST +17:42:30 Received From : +17:42:30 ============================================================================ +17:42:30 FNo. Len. Field Value +17:42:30 ============================================================================ +17:42:30 [ 1] [ 4] [0800] +17:42:30 [ 7] [ 10] [0320104137] +17:42:30 [ 11] [ 6] [157525] +17:42:30 [ 70] [ 3] [301] +17:42:30 ============================================================================ +17:42:30 + + +waiting on router queue for slot.... +17:42:30 Sending to : +17:42:30 ============================================================================ +17:42:30 ============================================================================ +17:42:30 Slot Id : <2> +17:42:30 Transaction Type : RESPONSE +17:42:30 Received From : +17:42:30 ============================================================================ +17:42:30 FNo. Len. Field Value +17:42:30 ============================================================================ +17:42:30 [ 1] [ 4] [0810] +17:42:30 [ 7] [ 10] [0320104137] +17:42:30 [ 11] [ 6] [157525] +17:42:30 [ 39] [ 2] [00] +17:42:30 [ 70] [ 3] [301] +17:42:30 ============================================================================ +17:42:30 Calculate Source COMM Id = 2 +17:42:30 ============================================================================ +17:42:30 + + +waiting on router queue for slot.... +17:42:43 ============================================================================ +17:42:43 Slot Id : <1> +17:42:43 Transaction Type : REQUEST +17:42:43 Received From : +17:42:43 ============================================================================ +17:42:43 FNo. Len. Field Value +17:42:43 ============================================================================ +17:42:43 [ 1] [ 4] [0800] +17:42:43 [ 7] [ 10] [0321005430] +17:42:43 [ 11] [ 6] [175430] +17:42:43 [ 37] [ 12] [57917175430] +17:42:43 [ 70] [ 3] [301] +17:42:43 ============================================================================ +17:42:43 + + +waiting on router queue for slot.... +17:42:43 Sending to : +17:42:43 ============================================================================ +17:42:43 ============================================================================ +17:42:43 Slot Id : <1> +17:42:43 Transaction Type : RESPONSE +17:42:43 Received From : +17:42:43 ============================================================================ +17:42:43 FNo. Len. Field Value +17:42:43 ============================================================================ +17:42:43 [ 1] [ 4] [0810] +17:42:43 [ 7] [ 10] [0321005430] +17:42:43 [ 11] [ 6] [175430] +17:42:43 [ 37] [ 12] [579171754300] +17:42:43 [ 39] [ 2] [00] +17:42:43 [ 70] [ 3] [810] +17:42:43 ============================================================================ +17:42:43 Calculate Source COMM Id = 6 +17:42:43 ============================================================================ +17:42:43 + + +waiting on router queue for slot.... +17:42:46 ============================================================================ +17:42:46 Slot Id : <498> +17:42:46 Transaction Type : REQUEST +17:42:46 Received From : +17:42:46 ============================================================================ +17:42:46 FNo. Len. Field Value +17:42:46 ============================================================================ +17:42:46 [ 1] [ 4] [0800] +17:42:46 [ 7] [ 10] [0320104153] +17:42:46 [ 11] [ 6] [157526] +17:42:46 [ 70] [ 3] [301] +17:42:46 ============================================================================ +17:42:46 + + +waiting on router queue for slot.... +17:42:46 Sending to : +17:42:46 ============================================================================ +17:42:46 ============================================================================ +17:42:46 Slot Id : <498> +17:42:46 Transaction Type : RESPONSE +17:42:46 Received From : +17:42:46 ============================================================================ +17:42:46 FNo. Len. Field Value +17:42:46 ============================================================================ +17:42:46 [ 1] [ 4] [0810] +17:42:46 [ 7] [ 10] [0320104153] +17:42:46 [ 11] [ 6] [157526] +17:42:46 [ 39] [ 2] [00] +17:42:46 [ 70] [ 3] [301] +17:42:46 ============================================================================ +17:42:46 Calculate Source COMM Id = 2 +17:42:46 ============================================================================ +17:42:46 + + +waiting on router queue for slot.... +17:42:55 ============================================================================ +17:42:55 Slot Id : <473> +17:42:55 Transaction Type : REQUEST +17:42:55 Received From : +17:42:55 ============================================================================ +17:42:55 FNo. Len. Field Value +17:42:55 ============================================================================ +17:42:55 [ 1] [ 4] [0800] +17:42:55 [ 2] [ 5] [02531] +17:42:55 [ 3] [ 6] [579178] +17:42:55 [ 7] [ 10] [0320104255] +17:42:55 [ 11] [ 6] [807440] +17:42:55 [ 15] [ 10] [0320104255] +17:42:55 [ 37] [ 11] [57917807440] +17:42:55 [ 70] [ 3] [001] +17:42:55 ============================================================================ +17:42:55 + + +waiting on router queue for slot.... +17:42:55 ============================================================================ +17:42:55 Slot Id : <473> +17:42:55 Transaction Type : RESPONSE +17:42:55 Received From : +17:42:55 ============================================================================ +17:42:55 FNo. Len. Field Value +17:42:55 ============================================================================ +17:42:55 [ 1] [ 4] [0810] +17:42:55 [ 7] [ 10] [0320104255] +17:42:55 [ 11] [ 6] [807440] +17:42:55 [ 15] [ 4] [0320] +17:42:55 [ 37] [ 12] [57917807440] +17:42:55 [ 39] [ 2] [00] +17:42:55 [ 70] [ 3] [001] +17:42:55 ============================================================================ +17:42:55 Sending to : +17:42:55 ============================================================================ +17:42:55 + + +waiting on router queue for slot.... +17:42:57 ============================================================================ +17:42:57 Slot Id : <476> +17:42:57 Transaction Type : REQUEST +17:42:57 Received From : +17:42:57 ============================================================================ +17:42:57 FNo. Len. Field Value +17:42:57 ============================================================================ +17:42:57 [ 1] [ 4] [0800] +17:42:57 [ 7] [ 10] [0320104204] +17:42:57 [ 11] [ 6] [157527] +17:42:57 [ 70] [ 3] [301] +17:42:57 ============================================================================ +17:42:57 + + +waiting on router queue for slot.... +17:42:57 Sending to : +17:42:57 ============================================================================ +17:42:57 ============================================================================ +17:42:57 Slot Id : <476> +17:42:57 Transaction Type : RESPONSE +17:42:57 Received From : +17:42:57 ============================================================================ +17:42:57 FNo. Len. Field Value +17:42:57 ============================================================================ +17:42:57 [ 1] [ 4] [0810] +17:42:57 [ 7] [ 10] [0320104204] +17:42:57 [ 11] [ 6] [157527] +17:42:57 [ 39] [ 2] [00] +17:42:57 [ 70] [ 3] [301] +17:42:57 ============================================================================ +17:42:57 Calculate Source COMM Id = 2 +17:42:57 ============================================================================ +17:42:57 + + +waiting on router queue for slot.... +17:43:05 ============================================================================ +17:43:05 Slot Id : <489> +17:43:05 Transaction Type : REQUEST +17:43:05 Received From : +17:43:05 ============================================================================ +17:43:05 FNo. Len. Field Value +17:43:05 ============================================================================ +17:43:05 [ 1] [ 4] [0200] +17:43:05 [ 2] [ 16] [1808930700015100] +17:43:05 [ 3] [ 6] [010000] +17:43:05 [ 4] [ 12] [000020000000] +17:43:05 [ 7] [ 10] [0320174055] +17:43:05 [ 11] [ 6] [953817] +17:43:05 [ 12] [ 6] [174055] +17:43:05 [ 13] [ 4] [0320] +17:43:05 [ 15] [ 4] [0320] +17:43:05 [ 18] [ 4] [6011] +17:43:05 [ 19] [ 3] [418] +17:43:05 [ 22] [ 3] [021] +17:43:05 [ 25] [ 2] [01] +17:43:05 [ 28] [ 9] [D00002000] +17:43:05 [ 32] [ 6] [668899] +17:43:05 [ 35] [ 27] [1808930700015100=1803500617] +17:43:05 [ 37] [ 12] [507902093444] +17:43:05 [ 41] [ 8] [03020021] +17:43:05 [ 42] [ 15] [APT ] +17:43:05 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +17:43:05 [ 49] [ 3] [418] +17:43:05 [ 52] [ 16] [155FCFB32FC02292] +17:43:05 ============================================================================ +17:43:05 + + +waiting on router queue for slot.... +17:43:05 Sending to : +17:43:05 ============================================================================ +17:43:05 Sending to : +17:43:05 ============================================================================ +17:43:05 ============================================================================ +17:43:05 Slot Id : <489> +17:43:05 Transaction Type : REQUEST +17:43:05 Received From : +17:43:05 ============================================================================ +17:43:05 FNo. Len. Field Value +17:43:05 ============================================================================ +17:43:05 [ 1] [ 4] [0200] +17:43:05 [ 2] [ 16] [1808930700015100] +17:43:05 [ 3] [ 6] [010000] +17:43:05 [ 4] [ 12] [000020000000] +17:43:05 [ 7] [ 10] [0320174055] +17:43:05 [ 11] [ 6] [953817] +17:43:05 [ 12] [ 6] [174055] +17:43:05 [ 13] [ 4] [0320] +17:43:05 [ 15] [ 4] [0320] +17:43:05 [ 18] [ 4] [6011] +17:43:05 [ 19] [ 3] [418] +17:43:05 [ 22] [ 3] [021] +17:43:05 [ 25] [ 2] [01] +17:43:05 [ 28] [ 9] [D00002000] +17:43:05 [ 32] [ 6] [668899] +17:43:05 [ 35] [ 27] [1808930700015100=1803500617] +17:43:05 [ 37] [ 12] [507902093444] +17:43:05 [ 41] [ 8] [03020021] +17:43:05 [ 42] [ 15] [APT ] +17:43:05 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +17:43:05 [ 49] [ 3] [418] +17:43:05 [ 52] [ 16] [155FCFB32FC02292] +17:43:05 ============================================================================ +17:43:05 + + +waiting on router queue for slot.... +17:43:05 Sending to : +17:43:05 ============================================================================ +17:43:05 ============================================================================ +17:43:05 Slot Id : <489> +17:43:05 Transaction Type : REQUEST +17:43:05 Received From : +17:43:05 ============================================================================ +17:43:05 FNo. Len. Field Value +17:43:05 ============================================================================ +17:43:05 [ 1] [ 4] [0200] +17:43:05 [ 2] [ 16] [1808930700015100] +17:43:05 [ 3] [ 6] [010000] +17:43:05 [ 4] [ 12] [000020000000] +17:43:05 [ 7] [ 10] [0320174055] +17:43:05 [ 11] [ 6] [953817] +17:43:05 [ 12] [ 6] [174055] +17:43:05 [ 13] [ 4] [0320] +17:43:05 [ 15] [ 4] [0320] +17:43:05 [ 18] [ 4] [6011] +17:43:05 [ 19] [ 3] [418] +17:43:05 [ 22] [ 3] [021] +17:43:05 [ 25] [ 2] [01] +17:43:05 [ 28] [ 9] [D00002000] +17:43:05 [ 32] [ 6] [668899] +17:43:05 [ 35] [ 27] [1808930700015100=1803500617] +17:43:05 [ 37] [ 12] [507902093444] +17:43:05 [ 41] [ 8] [03020021] +17:43:05 [ 42] [ 15] [APT ] +17:43:05 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +17:43:05 [ 49] [ 3] [418] +17:43:05 [ 52] [ 16] [1A3DEEBBF81381E2] +17:43:05 ============================================================================ +17:43:05 + + +waiting on router queue for slot.... +17:43:05 Sending to : <2> +17:43:05 ============================================================================ +17:43:09 ============================================================================ +17:43:09 Slot Id : <489> +17:43:09 Transaction Type : RESPONSE +17:43:09 Received From : +17:43:09 ============================================================================ +17:43:09 FNo. Len. Field Value +17:43:09 ============================================================================ +17:43:09 [ 1] [ 4] [0210] +17:43:09 [ 2] [ 16] [1808930700015100] +17:43:09 [ 3] [ 6] [010000] +17:43:09 [ 4] [ 12] [000020000000] +17:43:09 [ 6] [ 12] [000020000000] +17:43:09 [ 7] [ 10] [0320174055] +17:43:09 [ 11] [ 6] [953817] +17:43:09 [ 12] [ 6] [174055] +17:43:09 [ 13] [ 4] [0320] +17:43:09 [ 18] [ 4] [6011] +17:43:09 [ 19] [ 3] [418] +17:43:09 [ 22] [ 3] [021] +17:43:09 [ 32] [ 6] [668899] +17:43:09 [ 35] [ 27] [1808930700015100=1803500617] +17:43:09 [ 37] [ 12] [507902093444] +17:43:09 [ 38] [ 6] [953817] +17:43:09 [ 39] [ 2] [00] +17:43:09 [ 41] [ 8] [03020021] +17:43:09 [ 49] [ 3] [418] +17:43:09 [ 52] [ 16] [1A3DEEBBF81381E2] +17:43:09 [ 54] [ 20] [1001418C000012038900] +17:43:09 ============================================================================ +17:43:09 Sending to : +17:43:09 ============================================================================ +17:43:09 + + +waiting on router queue for slot.... +17:43:11 ============================================================================ +17:43:11 Slot Id : <489> +17:43:11 Transaction Type : RESPONSE +17:43:11 Received From : +17:43:11 ============================================================================ +17:43:11 FNo. Len. Field Value +17:43:11 ============================================================================ +17:43:11 [ 1] [ 4] [0210] +17:43:11 [ 2] [ 16] [1808930700015100] +17:43:11 [ 3] [ 6] [010000] +17:43:11 [ 4] [ 12] [000020000000] +17:43:11 [ 6] [ 12] [000020000000] +17:43:11 [ 7] [ 10] [0320174055] +17:43:11 [ 11] [ 6] [953817] +17:43:11 [ 12] [ 6] [174055] +17:43:11 [ 13] [ 4] [0320] +17:43:11 [ 18] [ 4] [6011] +17:43:11 [ 19] [ 3] [418] +17:43:11 [ 22] [ 3] [021] +17:43:11 [ 32] [ 6] [668899] +17:43:11 [ 35] [ 27] [1808930700015100=1803500617] +17:43:11 [ 37] [ 12] [507902093444] +17:43:11 [ 38] [ 6] [953817] +17:43:11 [ 39] [ 2] [00] +17:43:11 [ 41] [ 8] [03020021] +17:43:11 [ 49] [ 3] [418] +17:43:11 [ 52] [ 16] [1A3DEEBBF81381E2] +17:43:11 [ 54] [ 20] [1001418C000012038900] +17:43:11 ============================================================================ +17:43:11 Calculate Source COMM Id = 4 +17:43:11 ============================================================================ +17:43:11 + + +waiting on router queue for slot.... +17:43:12 ============================================================================ +17:43:12 Slot Id : <477> +17:43:12 Transaction Type : REQUEST +17:43:12 Received From : +17:43:12 ============================================================================ +17:43:12 FNo. Len. Field Value +17:43:12 ============================================================================ +17:43:12 [ 1] [ 4] [0200] +17:43:12 [ 2] [ 16] [6688990040118976] +17:43:12 [ 3] [ 6] [302000] +17:43:12 [ 4] [ 12] [000000000000] +17:43:12 [ 7] [ 10] [0320174307] +17:43:12 [ 11] [ 6] [819045] +17:43:12 [ 12] [ 6] [174307] +17:43:12 [ 13] [ 4] [0320] +17:43:12 [ 15] [ 4] [0320] +17:43:12 [ 18] [ 4] [6011] +17:43:12 [ 22] [ 3] [900] +17:43:12 [ 25] [ 2] [02] +17:43:12 [ 28] [ 9] [D00000000] +17:43:12 [ 32] [ 6] [621354] +17:43:12 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:43:12 [ 37] [ 12] [507903398173] +17:43:12 [ 41] [ 8] [06001200] +17:43:12 [ 42] [ 15] [NATIVE ] +17:43:12 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +17:43:12 [ 49] [ 3] [418] +17:43:12 [ 52] [ 16] [3F8FA5C817D40D98] +17:43:12 ============================================================================ +17:43:12 + + +waiting on router queue for slot.... +17:43:12 Sending to : +17:43:12 ============================================================================ +17:43:12 Sending to : +17:43:12 ============================================================================ +17:43:13 ============================================================================ +17:43:13 Slot Id : <477> +17:43:13 Transaction Type : REQUEST +17:43:13 Received From : +17:43:13 ============================================================================ +17:43:13 FNo. Len. Field Value +17:43:13 ============================================================================ +17:43:13 [ 1] [ 4] [0200] +17:43:13 [ 2] [ 16] [6688990040118976] +17:43:13 [ 3] [ 6] [302000] +17:43:13 [ 4] [ 12] [000000000000] +17:43:13 [ 7] [ 10] [0320174307] +17:43:13 [ 11] [ 6] [819045] +17:43:13 [ 12] [ 6] [174307] +17:43:13 [ 13] [ 4] [0320] +17:43:13 [ 15] [ 4] [0320] +17:43:13 [ 18] [ 4] [6011] +17:43:13 [ 22] [ 3] [900] +17:43:13 [ 25] [ 2] [02] +17:43:13 [ 28] [ 9] [D00000000] +17:43:13 [ 32] [ 6] [621354] +17:43:13 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:43:13 [ 37] [ 12] [507903398173] +17:43:13 [ 41] [ 8] [06001200] +17:43:13 [ 42] [ 15] [NATIVE ] +17:43:13 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +17:43:13 [ 49] [ 3] [418] +17:43:13 [ 52] [ 16] [3F8FA5C817D40D98] +17:43:13 ============================================================================ +17:43:13 + + +waiting on router queue for slot.... +17:43:13 Sending to : +17:43:13 ============================================================================ +17:43:13 ============================================================================ +17:43:13 Slot Id : <477> +17:43:13 Transaction Type : REQUEST +17:43:13 Received From : +17:43:13 ============================================================================ +17:43:13 FNo. Len. Field Value +17:43:13 ============================================================================ +17:43:13 [ 1] [ 4] [0200] +17:43:13 [ 2] [ 16] [6688990040118976] +17:43:13 [ 3] [ 6] [302000] +17:43:13 [ 4] [ 12] [000000000000] +17:43:13 [ 7] [ 10] [0320174307] +17:43:13 [ 11] [ 6] [819045] +17:43:13 [ 12] [ 6] [174307] +17:43:13 [ 13] [ 4] [0320] +17:43:13 [ 15] [ 4] [0320] +17:43:13 [ 18] [ 4] [6011] +17:43:13 [ 22] [ 3] [900] +17:43:13 [ 25] [ 2] [02] +17:43:13 [ 28] [ 9] [D00000000] +17:43:13 [ 32] [ 6] [621354] +17:43:13 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:43:13 [ 37] [ 12] [507903398173] +17:43:13 [ 41] [ 8] [06001200] +17:43:13 [ 42] [ 15] [NATIVE ] +17:43:13 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +17:43:13 [ 49] [ 3] [418] +17:43:13 [ 52] [ 16] [8D6D7DCFA2B58901] +17:43:13 ============================================================================ +17:43:13 + + +waiting on router queue for slot.... +17:43:13 Sending to : <4> +17:43:13 ============================================================================ +17:43:14 ============================================================================ +17:43:14 Slot Id : <477> +17:43:14 Transaction Type : RESPONSE +17:43:14 Received From : +17:43:14 ============================================================================ +17:43:14 FNo. Len. Field Value +17:43:14 ============================================================================ +17:43:14 [ 1] [ 4] [0210] +17:43:14 [ 2] [ 16] [6688990040118976] +17:43:14 [ 3] [ 6] [302000] +17:43:14 [ 4] [ 12] [000000000000] +17:43:14 [ 11] [ 6] [819045] +17:43:14 [ 12] [ 6] [174307] +17:43:14 [ 15] [ 4] [0320] +17:43:14 [ 18] [ 4] [6011] +17:43:14 [ 32] [ 6] [621354] +17:43:14 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:43:14 [ 37] [ 12] [507903398173] +17:43:14 [ 38] [ 6] [976642] +17:43:14 [ 39] [ 2] [00] +17:43:14 [ 41] [ 8] [06001200] +17:43:14 [ 49] [ 3] [418] +17:43:14 [ 54] [ 20] [2002418C000061352957] +17:43:14 ============================================================================ +17:43:14 Sending to : +17:43:14 ============================================================================ +17:43:14 + + +waiting on router queue for slot.... +17:43:15 ============================================================================ +17:43:15 Slot Id : <477> +17:43:15 Transaction Type : RESPONSE +17:43:15 Received From : +17:43:15 ============================================================================ +17:43:15 FNo. Len. Field Value +17:43:15 ============================================================================ +17:43:15 [ 1] [ 4] [0210] +17:43:15 [ 2] [ 16] [6688990040118976] +17:43:15 [ 3] [ 6] [302000] +17:43:15 [ 4] [ 12] [000000000000] +17:43:15 [ 11] [ 6] [819045] +17:43:15 [ 12] [ 6] [174307] +17:43:15 [ 15] [ 4] [0320] +17:43:15 [ 18] [ 4] [6011] +17:43:15 [ 32] [ 6] [621354] +17:43:15 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:43:15 [ 37] [ 12] [507903398173] +17:43:15 [ 38] [ 6] [976642] +17:43:15 [ 39] [ 2] [00] +17:43:15 [ 41] [ 8] [06001200] +17:43:15 [ 49] [ 3] [418] +17:43:15 [ 54] [ 20] [2002418C000061352957] +17:43:15 ============================================================================ +17:43:15 Calculate Source COMM Id = 0 +17:43:15 ============================================================================ +17:43:15 + + +waiting on router queue for slot.... +17:43:15 ============================================================================ +17:43:15 Slot Id : <483> +17:43:15 Transaction Type : REQUEST +17:43:15 Received From : +17:43:15 ============================================================================ +17:43:15 FNo. Len. Field Value +17:43:15 ============================================================================ +17:43:15 [ 1] [ 4] [0200] +17:43:15 [ 2] [ 16] [1999990000015159] +17:43:15 [ 3] [ 6] [012000] +17:43:15 [ 4] [ 12] [000100000000] +17:43:15 [ 7] [ 10] [0320174310] +17:43:15 [ 11] [ 6] [819051] +17:43:15 [ 12] [ 6] [174310] +17:43:15 [ 13] [ 4] [0320] +17:43:15 [ 15] [ 4] [0320] +17:43:15 [ 18] [ 4] [6011] +17:43:15 [ 22] [ 3] [900] +17:43:15 [ 25] [ 2] [02] +17:43:15 [ 28] [ 9] [D00002000] +17:43:15 [ 32] [ 6] [621354] +17:43:15 [ 35] [ 32] [1999990000015159=000010100000765] +17:43:15 [ 37] [ 12] [507902706626] +17:43:15 [ 41] [ 8] [14000900] +17:43:15 [ 42] [ 15] [NATIVE ] +17:43:15 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:43:15 [ 49] [ 3] [418] +17:43:15 [ 52] [ 16] [D220399309D270CB] +17:43:15 ============================================================================ +17:43:15 + + +waiting on router queue for slot.... +17:43:15 Sending to : +17:43:15 ============================================================================ +17:43:15 Sending to : +17:43:15 ============================================================================ +17:43:15 ============================================================================ +17:43:15 Slot Id : <483> +17:43:15 Transaction Type : REQUEST +17:43:15 Received From : +17:43:15 ============================================================================ +17:43:15 FNo. Len. Field Value +17:43:15 ============================================================================ +17:43:15 [ 1] [ 4] [0200] +17:43:15 [ 2] [ 16] [1999990000015159] +17:43:15 [ 3] [ 6] [012000] +17:43:15 [ 4] [ 12] [000100000000] +17:43:15 [ 7] [ 10] [0320174310] +17:43:15 [ 11] [ 6] [819051] +17:43:15 [ 12] [ 6] [174310] +17:43:15 [ 13] [ 4] [0320] +17:43:15 [ 15] [ 4] [0320] +17:43:15 [ 18] [ 4] [6011] +17:43:15 [ 22] [ 3] [900] +17:43:15 [ 25] [ 2] [02] +17:43:15 [ 28] [ 9] [D00002000] +17:43:15 [ 32] [ 6] [621354] +17:43:15 [ 35] [ 32] [1999990000015159=000010100000765] +17:43:15 [ 37] [ 12] [507902706626] +17:43:15 [ 41] [ 8] [14000900] +17:43:15 [ 42] [ 15] [NATIVE ] +17:43:15 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:43:15 [ 49] [ 3] [418] +17:43:15 [ 52] [ 16] [D220399309D270CB] +17:43:15 ============================================================================ +17:43:15 + + +waiting on router queue for slot.... +17:43:15 Sending to : +17:43:15 ============================================================================ +17:43:16 ============================================================================ +17:43:16 Slot Id : <483> +17:43:16 Transaction Type : REQUEST +17:43:16 Received From : +17:43:16 ============================================================================ +17:43:16 FNo. Len. Field Value +17:43:16 ============================================================================ +17:43:16 [ 1] [ 4] [0200] +17:43:16 [ 2] [ 16] [1999990000015159] +17:43:16 [ 3] [ 6] [012000] +17:43:16 [ 4] [ 12] [000100000000] +17:43:16 [ 7] [ 10] [0320174310] +17:43:16 [ 11] [ 6] [819051] +17:43:16 [ 12] [ 6] [174310] +17:43:16 [ 13] [ 4] [0320] +17:43:16 [ 15] [ 4] [0320] +17:43:16 [ 18] [ 4] [6011] +17:43:16 [ 22] [ 3] [900] +17:43:16 [ 25] [ 2] [02] +17:43:16 [ 28] [ 9] [D00002000] +17:43:16 [ 32] [ 6] [621354] +17:43:16 [ 35] [ 32] [1999990000015159=000010100000765] +17:43:16 [ 37] [ 12] [507902706626] +17:43:16 [ 41] [ 8] [14000900] +17:43:16 [ 42] [ 15] [NATIVE ] +17:43:16 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:43:16 [ 49] [ 3] [418] +17:43:16 [ 52] [ 16] [A19B9815F4F66029] +17:43:16 ============================================================================ +17:43:16 + + +waiting on router queue for slot.... +17:43:16 Sending to : <5> +17:43:16 ============================================================================ +17:43:20 ============================================================================ +17:43:20 Slot Id : <485> +17:43:20 Transaction Type : REQUEST +17:43:20 Received From : +17:43:20 ============================================================================ +17:43:20 FNo. Len. Field Value +17:43:20 ============================================================================ +17:43:20 [ 1] [ 4] [0800] +17:43:20 [ 7] [ 10] [0320104225] +17:43:20 [ 11] [ 6] [157528] +17:43:20 [ 70] [ 3] [301] +17:43:20 ============================================================================ +17:43:20 + + +waiting on router queue for slot.... +17:43:20 Sending to : +17:43:20 ============================================================================ +17:43:20 ============================================================================ +17:43:20 Slot Id : <485> +17:43:20 Transaction Type : RESPONSE +17:43:20 Received From : +17:43:20 ============================================================================ +17:43:20 FNo. Len. Field Value +17:43:20 ============================================================================ +17:43:20 [ 1] [ 4] [0810] +17:43:20 [ 7] [ 10] [0320104225] +17:43:20 [ 11] [ 6] [157528] +17:43:20 [ 39] [ 2] [00] +17:43:20 [ 70] [ 3] [301] +17:43:20 ============================================================================ +17:43:20 Calculate Source COMM Id = 2 +17:43:20 ============================================================================ +17:43:20 + + +waiting on router queue for slot.... +17:43:20 ============================================================================ +17:43:20 Slot Id : <14> +17:43:20 Transaction Type : REQUEST +17:43:20 Received From : +17:43:20 ============================================================================ +17:43:20 FNo. Len. Field Value +17:43:20 ============================================================================ +17:43:20 [ 1] [ 4] [0200] +17:43:20 [ 2] [ 16] [6213544002225834] +17:43:20 [ 3] [ 6] [011000] +17:43:20 [ 4] [ 12] [000055000000] +17:43:20 [ 7] [ 10] [0320174341] +17:43:20 [ 11] [ 6] [209788] +17:43:20 [ 12] [ 6] [173846] +17:43:20 [ 13] [ 4] [0320] +17:43:20 [ 14] [ 4] [4912] +17:43:20 [ 15] [ 4] [0320] +17:43:20 [ 18] [ 4] [6011] +17:43:20 [ 19] [ 3] [418] +17:43:20 [ 22] [ 3] [021] +17:43:20 [ 25] [ 2] [01] +17:43:20 [ 28] [ 9] [D00002000] +17:43:20 [ 32] [ 6] [198901] +17:43:20 [ 35] [ 32] [6213544002225834=491212012583820] +17:43:20 [ 37] [ 12] [507917209788] +17:43:20 [ 41] [ 8] [19529001] +17:43:20 [ 42] [ 15] [000000041952901] +17:43:20 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:43:20 [ 49] [ 3] [418] +17:43:20 [ 52] [ 16] [CD9575DC0976EEAC] +17:43:20 ============================================================================ +17:43:20 + + +waiting on router queue for slot.... +17:43:20 Sending to : +17:43:20 ============================================================================ +17:43:20 Sending to : +17:43:20 ============================================================================ +17:43:21 ============================================================================ +17:43:21 Slot Id : <14> +17:43:21 Transaction Type : REQUEST +17:43:21 Received From : +17:43:21 ============================================================================ +17:43:21 FNo. Len. Field Value +17:43:21 ============================================================================ +17:43:21 [ 1] [ 4] [0200] +17:43:21 [ 2] [ 16] [6213544002225834] +17:43:21 [ 3] [ 6] [011000] +17:43:21 [ 4] [ 12] [000055000000] +17:43:21 [ 7] [ 10] [0320174341] +17:43:21 [ 11] [ 6] [209788] +17:43:21 [ 12] [ 6] [173846] +17:43:21 [ 13] [ 4] [0320] +17:43:21 [ 14] [ 4] [4912] +17:43:21 [ 15] [ 4] [0320] +17:43:21 [ 18] [ 4] [6011] +17:43:21 [ 19] [ 3] [418] +17:43:21 [ 22] [ 3] [021] +17:43:21 [ 25] [ 2] [01] +17:43:21 [ 28] [ 9] [D00002000] +17:43:21 [ 32] [ 6] [198901] +17:43:21 [ 35] [ 32] [6213544002225834=491212012583820] +17:43:21 [ 37] [ 12] [507917209788] +17:43:21 [ 41] [ 8] [19529001] +17:43:21 [ 42] [ 15] [000000041952901] +17:43:21 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:43:21 [ 49] [ 3] [418] +17:43:21 [ 52] [ 16] [CD9575DC0976EEAC] +17:43:21 ============================================================================ +17:43:21 + + +waiting on router queue for slot.... +17:43:21 Sending to : +17:43:21 ============================================================================ +17:43:21 ============================================================================ +17:43:21 Slot Id : <14> +17:43:21 Transaction Type : REQUEST +17:43:21 Received From : +17:43:21 ============================================================================ +17:43:21 FNo. Len. Field Value +17:43:21 ============================================================================ +17:43:21 [ 1] [ 4] [0200] +17:43:21 [ 2] [ 16] [6213544002225834] +17:43:21 [ 3] [ 6] [011000] +17:43:21 [ 4] [ 12] [000055000000] +17:43:21 [ 7] [ 10] [0320174341] +17:43:21 [ 11] [ 6] [209788] +17:43:21 [ 12] [ 6] [173846] +17:43:21 [ 13] [ 4] [0320] +17:43:21 [ 14] [ 4] [4912] +17:43:21 [ 15] [ 4] [0320] +17:43:21 [ 18] [ 4] [6011] +17:43:21 [ 19] [ 3] [418] +17:43:21 [ 22] [ 3] [021] +17:43:21 [ 25] [ 2] [01] +17:43:21 [ 28] [ 9] [D00002000] +17:43:21 [ 32] [ 6] [198901] +17:43:21 [ 35] [ 32] [6213544002225834=491212012583820] +17:43:21 [ 37] [ 12] [507917209788] +17:43:21 [ 41] [ 8] [19529001] +17:43:21 [ 42] [ 15] [000000041952901] +17:43:21 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:43:21 [ 49] [ 3] [418] +17:43:21 [ 52] [ 16] [FDF9C016D03635DD] +17:43:21 ============================================================================ +17:43:21 + + +waiting on router queue for slot.... +17:43:21 Sending to : <0> +17:43:21 ============================================================================ +17:43:21 ============================================================================ +17:43:21 Slot Id : <14> +17:43:21 Transaction Type : RESPONSE +17:43:21 Received From : +17:43:21 ============================================================================ +17:43:21 FNo. Len. Field Value +17:43:21 ============================================================================ +17:43:21 [ 1] [ 4] [0210] +17:43:21 [ 2] [ 16] [6213544002225834] +17:43:21 [ 3] [ 6] [011000] +17:43:21 [ 4] [ 12] [000055000000] +17:43:21 [ 7] [ 10] [0320174341] +17:43:21 [ 11] [ 6] [209788] +17:43:21 [ 12] [ 6] [173846] +17:43:21 [ 13] [ 4] [0320] +17:43:21 [ 15] [ 4] [0320] +17:43:21 [ 18] [ 4] [6011] +17:43:21 [ 19] [ 3] [418] +17:43:21 [ 32] [ 6] [198901] +17:43:21 [ 35] [ 32] [6213544002225834=491212012583820] +17:43:21 [ 37] [ 12] [507917209788] +17:43:21 [ 38] [ 6] [071212] +17:43:21 [ 39] [ 2] [00] +17:43:21 [ 41] [ 8] [19529001] +17:43:21 [ 49] [ 3] [418] +17:43:21 [ 54] [ 40] [1001418C0000092480341002418C000009248034] +17:43:21 ============================================================================ +17:43:21 Sending to : +17:43:21 ============================================================================ +17:43:21 + + +waiting on router queue for slot.... +17:43:23 ============================================================================ +17:43:23 Slot Id : <14> +17:43:23 Transaction Type : RESPONSE +17:43:23 Received From : +17:43:23 ============================================================================ +17:43:23 FNo. Len. Field Value +17:43:23 ============================================================================ +17:43:23 [ 1] [ 4] [0210] +17:43:23 [ 2] [ 16] [6213544002225834] +17:43:23 [ 3] [ 6] [011000] +17:43:23 [ 4] [ 12] [000055000000] +17:43:23 [ 7] [ 10] [0320174341] +17:43:23 [ 11] [ 6] [209788] +17:43:23 [ 12] [ 6] [173846] +17:43:23 [ 13] [ 4] [0320] +17:43:23 [ 15] [ 4] [0320] +17:43:23 [ 18] [ 4] [6011] +17:43:23 [ 19] [ 3] [418] +17:43:23 [ 32] [ 6] [198901] +17:43:23 [ 35] [ 32] [6213544002225834=491212012583820] +17:43:23 [ 37] [ 12] [507917209788] +17:43:23 [ 38] [ 6] [071212] +17:43:23 [ 39] [ 2] [00] +17:43:23 [ 41] [ 8] [19529001] +17:43:23 [ 49] [ 3] [418] +17:43:23 [ 54] [ 40] [1001418C0000092480341002418C000009248034] +17:43:23 ============================================================================ +17:43:23 Calculate Source COMM Id = 5 +17:43:23 ============================================================================ +17:43:23 + + +waiting on router queue for slot.... +17:43:24 ============================================================================ +17:43:24 Slot Id : <483> +17:43:24 Transaction Type : RESPONSE +17:43:24 Received From : +17:43:24 ============================================================================ +17:43:24 FNo. Len. Field Value +17:43:24 ============================================================================ +17:43:24 [ 1] [ 4] [0210] +17:43:24 [ 2] [ 16] [1999990000015159] +17:43:24 [ 3] [ 6] [012000] +17:43:24 [ 4] [ 12] [000100000000] +17:43:24 [ 7] [ 10] [0320174310] +17:43:24 [ 11] [ 6] [819051] +17:43:24 [ 12] [ 6] [174310] +17:43:24 [ 13] [ 4] [0320] +17:43:24 [ 15] [ 4] [0320] +17:43:24 [ 18] [ 4] [6011] +17:43:24 [ 19] [ 3] [418] +17:43:24 [ 32] [ 6] [621354] +17:43:24 [ 37] [ 12] [507902706626] +17:43:24 [ 38] [ 6] [281009] +17:43:24 [ 39] [ 2] [00] +17:43:24 [ 41] [ 8] [14000900] +17:43:24 [ 49] [ 3] [418] +17:43:24 [ 54] [ 0] [] +17:43:24 ============================================================================ +17:43:24 Sending to : +17:43:24 ============================================================================ +17:43:24 + + +waiting on router queue for slot.... +17:43:25 ============================================================================ +17:43:25 Slot Id : <483> +17:43:25 Transaction Type : RESPONSE +17:43:25 Received From : +17:43:25 ============================================================================ +17:43:25 FNo. Len. Field Value +17:43:25 ============================================================================ +17:43:25 [ 1] [ 4] [0210] +17:43:25 [ 2] [ 16] [1999990000015159] +17:43:25 [ 3] [ 6] [012000] +17:43:25 [ 4] [ 12] [000100000000] +17:43:25 [ 7] [ 10] [0320174310] +17:43:25 [ 11] [ 6] [819051] +17:43:25 [ 12] [ 6] [174310] +17:43:25 [ 13] [ 4] [0320] +17:43:25 [ 15] [ 4] [0320] +17:43:25 [ 18] [ 4] [6011] +17:43:25 [ 19] [ 3] [418] +17:43:25 [ 32] [ 6] [621354] +17:43:25 [ 37] [ 12] [507902706626] +17:43:25 [ 38] [ 6] [281009] +17:43:25 [ 39] [ 2] [00] +17:43:25 [ 41] [ 8] [14000900] +17:43:25 [ 49] [ 3] [418] +17:43:25 [ 54] [ 0] [] +17:43:25 ============================================================================ +17:43:25 Calculate Source COMM Id = 0 +17:43:25 ============================================================================ +17:43:25 + + +waiting on router queue for slot.... +17:43:34 ============================================================================ +17:43:34 Slot Id : <486> +17:43:34 Transaction Type : REQUEST +17:43:34 Received From : +17:43:34 ============================================================================ +17:43:34 FNo. Len. Field Value +17:43:34 ============================================================================ +17:43:34 [ 1] [ 4] [0800] +17:43:34 [ 7] [ 10] [0320104241] +17:43:34 [ 11] [ 6] [157529] +17:43:34 [ 70] [ 3] [301] +17:43:34 ============================================================================ +17:43:34 + + +waiting on router queue for slot.... +17:43:34 Sending to : +17:43:34 ============================================================================ +17:43:34 ============================================================================ +17:43:34 Slot Id : <486> +17:43:34 Transaction Type : RESPONSE +17:43:34 Received From : +17:43:34 ============================================================================ +17:43:34 FNo. Len. Field Value +17:43:34 ============================================================================ +17:43:34 [ 1] [ 4] [0810] +17:43:34 [ 7] [ 10] [0320104241] +17:43:34 [ 11] [ 6] [157529] +17:43:34 [ 39] [ 2] [00] +17:43:34 [ 70] [ 3] [301] +17:43:34 ============================================================================ +17:43:34 Calculate Source COMM Id = 2 +17:43:34 ============================================================================ +17:43:34 + + +waiting on router queue for slot.... +17:43:45 ============================================================================ +17:43:45 Slot Id : <474> +17:43:45 Transaction Type : REQUEST +17:43:45 Received From : +17:43:45 ============================================================================ +17:43:45 FNo. Len. Field Value +17:43:45 ============================================================================ +17:43:45 [ 1] [ 4] [0800] +17:43:45 [ 7] [ 10] [0320104252] +17:43:45 [ 11] [ 6] [157530] +17:43:45 [ 70] [ 3] [301] +17:43:45 ============================================================================ +17:43:45 + + +waiting on router queue for slot.... +17:43:45 Sending to : +17:43:45 ============================================================================ +17:43:45 ============================================================================ +17:43:45 Slot Id : <474> +17:43:45 Transaction Type : RESPONSE +17:43:45 Received From : +17:43:45 ============================================================================ +17:43:45 FNo. Len. Field Value +17:43:45 ============================================================================ +17:43:45 [ 1] [ 4] [0810] +17:43:45 [ 7] [ 10] [0320104252] +17:43:45 [ 11] [ 6] [157530] +17:43:45 [ 39] [ 2] [00] +17:43:45 [ 70] [ 3] [301] +17:43:45 ============================================================================ +17:43:45 Calculate Source COMM Id = 2 +17:43:45 ============================================================================ +17:43:45 + + +waiting on router queue for slot.... +17:43:48 ============================================================================ +17:43:48 Slot Id : <472> +17:43:48 Transaction Type : REQUEST +17:43:48 Received From : +17:43:48 ============================================================================ +17:43:48 FNo. Len. Field Value +17:43:48 ============================================================================ +17:43:48 [ 1] [ 4] [0800] +17:43:48 [ 7] [ 10] [0321005535] +17:43:48 [ 11] [ 6] [175535] +17:43:48 [ 37] [ 12] [57917175535] +17:43:48 [ 70] [ 3] [301] +17:43:48 ============================================================================ +17:43:48 + + +waiting on router queue for slot.... +17:43:48 Sending to : +17:43:48 ============================================================================ +17:43:48 ============================================================================ +17:43:48 Slot Id : <472> +17:43:48 Transaction Type : RESPONSE +17:43:48 Received From : +17:43:48 ============================================================================ +17:43:48 FNo. Len. Field Value +17:43:48 ============================================================================ +17:43:48 [ 1] [ 4] [0810] +17:43:48 [ 7] [ 10] [0321005535] +17:43:48 [ 11] [ 6] [175535] +17:43:48 [ 37] [ 12] [579171755350] +17:43:48 [ 39] [ 2] [00] +17:43:48 [ 70] [ 3] [810] +17:43:48 ============================================================================ +17:43:48 Calculate Source COMM Id = 6 +17:43:48 ============================================================================ +17:43:48 + + +waiting on router queue for slot.... +17:43:48 ============================================================================ +17:43:48 Slot Id : <6> +17:43:48 Transaction Type : REQUEST +17:43:48 Received From : +17:43:48 ============================================================================ +17:43:48 FNo. Len. Field Value +17:43:48 ============================================================================ +17:43:48 [ 1] [ 4] [0200] +17:43:48 [ 2] [ 16] [6688990108430503] +17:43:48 [ 3] [ 6] [300000] +17:43:48 [ 4] [ 12] [000000000000] +17:43:48 [ 7] [ 10] [0320174343] +17:43:48 [ 11] [ 6] [819169] +17:43:48 [ 12] [ 6] [174343] +17:43:48 [ 13] [ 4] [0320] +17:43:48 [ 15] [ 4] [0320] +17:43:48 [ 18] [ 4] [6011] +17:43:48 [ 22] [ 3] [900] +17:43:48 [ 25] [ 2] [02] +17:43:48 [ 28] [ 9] [D00000000] +17:43:48 [ 32] [ 6] [621354] +17:43:48 [ 35] [ 37] [6688990108430503=44061231050345200000] +17:43:48 [ 37] [ 12] [507903499690] +17:43:48 [ 41] [ 8] [06002200] +17:43:48 [ 42] [ 15] [NATIVE ] +17:43:48 [ 43] [ 40] [Beng Market Beng LAO] +17:43:48 [ 49] [ 3] [418] +17:43:48 [ 52] [ 16] [C7B63C92FBC10BF3] +17:43:48 ============================================================================ +17:43:48 + + +waiting on router queue for slot.... +17:43:48 Sending to : +17:43:48 ============================================================================ +17:43:48 Sending to : +17:43:48 ============================================================================ +17:43:48 ============================================================================ +17:43:48 Slot Id : <6> +17:43:48 Transaction Type : REQUEST +17:43:48 Received From : +17:43:48 ============================================================================ +17:43:48 FNo. Len. Field Value +17:43:48 ============================================================================ +17:43:48 [ 1] [ 4] [0200] +17:43:48 [ 2] [ 16] [6688990108430503] +17:43:48 [ 3] [ 6] [300000] +17:43:48 [ 4] [ 12] [000000000000] +17:43:48 [ 7] [ 10] [0320174343] +17:43:48 [ 11] [ 6] [819169] +17:43:48 [ 12] [ 6] [174343] +17:43:48 [ 13] [ 4] [0320] +17:43:48 [ 15] [ 4] [0320] +17:43:48 [ 18] [ 4] [6011] +17:43:48 [ 22] [ 3] [900] +17:43:48 [ 25] [ 2] [02] +17:43:48 [ 28] [ 9] [D00000000] +17:43:48 [ 32] [ 6] [621354] +17:43:48 [ 35] [ 37] [6688990108430503=44061231050345200000] +17:43:48 [ 37] [ 12] [507903499690] +17:43:48 [ 41] [ 8] [06002200] +17:43:48 [ 42] [ 15] [NATIVE ] +17:43:48 [ 43] [ 40] [Beng Market Beng LAO] +17:43:48 [ 49] [ 3] [418] +17:43:48 [ 52] [ 16] [C7B63C92FBC10BF3] +17:43:48 ============================================================================ +17:43:48 + + +waiting on router queue for slot.... +17:43:48 Sending to : +17:43:48 ============================================================================ +17:43:48 ============================================================================ +17:43:48 Slot Id : <6> +17:43:48 Transaction Type : REQUEST +17:43:48 Received From : +17:43:48 ============================================================================ +17:43:48 FNo. Len. Field Value +17:43:48 ============================================================================ +17:43:48 [ 1] [ 4] [0200] +17:43:48 [ 2] [ 16] [6688990108430503] +17:43:48 [ 3] [ 6] [300000] +17:43:48 [ 4] [ 12] [000000000000] +17:43:48 [ 7] [ 10] [0320174343] +17:43:48 [ 11] [ 6] [819169] +17:43:48 [ 12] [ 6] [174343] +17:43:48 [ 13] [ 4] [0320] +17:43:48 [ 15] [ 4] [0320] +17:43:48 [ 18] [ 4] [6011] +17:43:48 [ 22] [ 3] [900] +17:43:48 [ 25] [ 2] [02] +17:43:48 [ 28] [ 9] [D00000000] +17:43:48 [ 32] [ 6] [621354] +17:43:48 [ 35] [ 37] [6688990108430503=44061231050345200000] +17:43:48 [ 37] [ 12] [507903499690] +17:43:48 [ 41] [ 8] [06002200] +17:43:48 [ 42] [ 15] [NATIVE ] +17:43:48 [ 43] [ 40] [Beng Market Beng LAO] +17:43:48 [ 49] [ 3] [418] +17:43:48 [ 52] [ 16] [6EB8918F0BC2E700] +17:43:48 ============================================================================ +17:43:48 + + +waiting on router queue for slot.... +17:43:48 Sending to : <4> +17:43:48 ============================================================================ +17:43:49 ============================================================================ +17:43:49 Slot Id : <6> +17:43:49 Transaction Type : RESPONSE +17:43:49 Received From : +17:43:49 ============================================================================ +17:43:49 FNo. Len. Field Value +17:43:49 ============================================================================ +17:43:49 [ 1] [ 4] [0210] +17:43:49 [ 2] [ 16] [6688990108430503] +17:43:49 [ 3] [ 6] [300000] +17:43:49 [ 4] [ 12] [000000000000] +17:43:49 [ 11] [ 6] [819169] +17:43:49 [ 12] [ 6] [174343] +17:43:49 [ 15] [ 4] [0320] +17:43:49 [ 18] [ 4] [6011] +17:43:49 [ 32] [ 6] [621354] +17:43:49 [ 35] [ 37] [6688990108430503=44061231050345200000] +17:43:49 [ 37] [ 12] [507903499690] +17:43:49 [ 38] [ 6] [491600] +17:43:49 [ 39] [ 2] [00] +17:43:49 [ 41] [ 8] [06002200] +17:43:49 [ 49] [ 3] [418] +17:43:49 [ 54] [ 20] [0002418C000026807192] +17:43:49 ============================================================================ +17:43:49 Sending to : +17:43:49 ============================================================================ +17:43:49 + + +waiting on router queue for slot.... +17:43:51 ============================================================================ +17:43:51 Slot Id : <6> +17:43:51 Transaction Type : RESPONSE +17:43:51 Received From : +17:43:51 ============================================================================ +17:43:51 FNo. Len. Field Value +17:43:51 ============================================================================ +17:43:51 [ 1] [ 4] [0210] +17:43:51 [ 2] [ 16] [6688990108430503] +17:43:51 [ 3] [ 6] [300000] +17:43:51 [ 4] [ 12] [000000000000] +17:43:51 [ 11] [ 6] [819169] +17:43:51 [ 12] [ 6] [174343] +17:43:51 [ 15] [ 4] [0320] +17:43:51 [ 18] [ 4] [6011] +17:43:51 [ 32] [ 6] [621354] +17:43:51 [ 35] [ 37] [6688990108430503=44061231050345200000] +17:43:51 [ 37] [ 12] [507903499690] +17:43:51 [ 38] [ 6] [491600] +17:43:51 [ 39] [ 2] [00] +17:43:51 [ 41] [ 8] [06002200] +17:43:51 [ 49] [ 3] [418] +17:43:51 [ 54] [ 20] [0002418C000026807192] +17:43:51 ============================================================================ +17:43:51 Calculate Source COMM Id = 0 +17:43:51 ============================================================================ +17:43:51 + + +waiting on router queue for slot.... +17:43:51 ============================================================================ +17:43:51 Slot Id : <16> +17:43:51 Transaction Type : REQUEST +17:43:51 Received From : +17:43:51 ============================================================================ +17:43:51 FNo. Len. Field Value +17:43:51 ============================================================================ +17:43:51 [ 1] [ 4] [0200] +17:43:51 [ 2] [ 16] [6688990040118976] +17:43:51 [ 3] [ 6] [010000] +17:43:51 [ 4] [ 12] [000030000000] +17:43:51 [ 7] [ 10] [0320174346] +17:43:51 [ 11] [ 6] [819179] +17:43:51 [ 12] [ 6] [174346] +17:43:51 [ 13] [ 4] [0320] +17:43:51 [ 15] [ 4] [0320] +17:43:51 [ 18] [ 4] [6011] +17:43:51 [ 22] [ 3] [900] +17:43:51 [ 25] [ 2] [02] +17:43:51 [ 28] [ 9] [D00002000] +17:43:51 [ 32] [ 6] [621354] +17:43:51 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:43:51 [ 37] [ 12] [507903398175] +17:43:51 [ 41] [ 8] [06001200] +17:43:51 [ 42] [ 15] [NATIVE ] +17:43:51 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +17:43:51 [ 49] [ 3] [418] +17:43:51 [ 52] [ 16] [3F8FA5C817D40D98] +17:43:51 ============================================================================ +17:43:51 + + +waiting on router queue for slot.... +17:43:51 Sending to : +17:43:51 ============================================================================ +17:43:51 Sending to : +17:43:51 ============================================================================ +17:43:52 ============================================================================ +17:43:52 Slot Id : <16> +17:43:52 Transaction Type : REQUEST +17:43:52 Received From : +17:43:52 ============================================================================ +17:43:52 FNo. Len. Field Value +17:43:52 ============================================================================ +17:43:52 [ 1] [ 4] [0200] +17:43:52 [ 2] [ 16] [6688990040118976] +17:43:52 [ 3] [ 6] [010000] +17:43:52 [ 4] [ 12] [000030000000] +17:43:52 [ 7] [ 10] [0320174346] +17:43:52 [ 11] [ 6] [819179] +17:43:52 [ 12] [ 6] [174346] +17:43:52 [ 13] [ 4] [0320] +17:43:52 [ 15] [ 4] [0320] +17:43:52 [ 18] [ 4] [6011] +17:43:52 [ 22] [ 3] [900] +17:43:52 [ 25] [ 2] [02] +17:43:52 [ 28] [ 9] [D00002000] +17:43:52 [ 32] [ 6] [621354] +17:43:52 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:43:52 [ 37] [ 12] [507903398175] +17:43:52 [ 41] [ 8] [06001200] +17:43:52 [ 42] [ 15] [NATIVE ] +17:43:52 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +17:43:52 [ 49] [ 3] [418] +17:43:52 [ 52] [ 16] [3F8FA5C817D40D98] +17:43:52 ============================================================================ +17:43:52 + + +waiting on router queue for slot.... +17:43:52 Sending to : +17:43:52 ============================================================================ +17:43:52 ============================================================================ +17:43:52 Slot Id : <16> +17:43:52 Transaction Type : REQUEST +17:43:52 Received From : +17:43:52 ============================================================================ +17:43:52 FNo. Len. Field Value +17:43:52 ============================================================================ +17:43:52 [ 1] [ 4] [0200] +17:43:52 [ 2] [ 16] [6688990040118976] +17:43:52 [ 3] [ 6] [010000] +17:43:52 [ 4] [ 12] [000030000000] +17:43:52 [ 7] [ 10] [0320174346] +17:43:52 [ 11] [ 6] [819179] +17:43:52 [ 12] [ 6] [174346] +17:43:52 [ 13] [ 4] [0320] +17:43:52 [ 15] [ 4] [0320] +17:43:52 [ 18] [ 4] [6011] +17:43:52 [ 22] [ 3] [900] +17:43:52 [ 25] [ 2] [02] +17:43:52 [ 28] [ 9] [D00002000] +17:43:52 [ 32] [ 6] [621354] +17:43:52 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:43:52 [ 37] [ 12] [507903398175] +17:43:52 [ 41] [ 8] [06001200] +17:43:52 [ 42] [ 15] [NATIVE ] +17:43:52 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +17:43:52 [ 49] [ 3] [418] +17:43:52 [ 52] [ 16] [8D6D7DCFA2B58901] +17:43:52 ============================================================================ +17:43:52 + + +waiting on router queue for slot.... +17:43:52 Sending to : <4> +17:43:52 ============================================================================ +17:43:53 ============================================================================ +17:43:53 Slot Id : <16> +17:43:53 Transaction Type : RESPONSE +17:43:53 Received From : +17:43:53 ============================================================================ +17:43:53 FNo. Len. Field Value +17:43:53 ============================================================================ +17:43:53 [ 1] [ 4] [0210] +17:43:53 [ 2] [ 16] [6688990040118976] +17:43:53 [ 3] [ 6] [010000] +17:43:53 [ 4] [ 12] [000030000000] +17:43:53 [ 11] [ 6] [819179] +17:43:53 [ 12] [ 6] [174346] +17:43:53 [ 15] [ 4] [0320] +17:43:53 [ 18] [ 4] [6011] +17:43:53 [ 32] [ 6] [621354] +17:43:53 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:43:53 [ 37] [ 12] [507903398175] +17:43:53 [ 38] [ 6] [020947] +17:43:53 [ 39] [ 2] [00] +17:43:53 [ 41] [ 8] [06001200] +17:43:53 [ 49] [ 3] [418] +17:43:53 [ 54] [ 20] [0002418C000031152957] +17:43:53 ============================================================================ +17:43:53 Sending to : +17:43:53 ============================================================================ +17:43:53 + + +waiting on router queue for slot.... +17:43:54 ============================================================================ +17:43:54 Slot Id : <16> +17:43:54 Transaction Type : RESPONSE +17:43:54 Received From : +17:43:54 ============================================================================ +17:43:54 FNo. Len. Field Value +17:43:54 ============================================================================ +17:43:54 [ 1] [ 4] [0210] +17:43:54 [ 2] [ 16] [6688990040118976] +17:43:54 [ 3] [ 6] [010000] +17:43:54 [ 4] [ 12] [000030000000] +17:43:54 [ 11] [ 6] [819179] +17:43:54 [ 12] [ 6] [174346] +17:43:54 [ 15] [ 4] [0320] +17:43:54 [ 18] [ 4] [6011] +17:43:54 [ 32] [ 6] [621354] +17:43:54 [ 35] [ 37] [6688990040118976=98031261960798400000] +17:43:54 [ 37] [ 12] [507903398175] +17:43:54 [ 38] [ 6] [020947] +17:43:54 [ 39] [ 2] [00] +17:43:54 [ 41] [ 8] [06001200] +17:43:54 [ 49] [ 3] [418] +17:43:54 [ 54] [ 20] [0002418C000031152957] +17:43:54 ============================================================================ +17:43:54 Calculate Source COMM Id = 0 +17:43:54 ============================================================================ +17:43:54 + + +waiting on router queue for slot.... +17:43:56 ============================================================================ +17:43:56 Slot Id : <492> +17:43:56 Transaction Type : REQUEST +17:43:56 Received From : +17:43:56 ============================================================================ +17:43:56 FNo. Len. Field Value +17:43:56 ============================================================================ +17:43:56 [ 1] [ 4] [0800] +17:43:56 [ 7] [ 10] [0320104303] +17:43:56 [ 11] [ 6] [157531] +17:43:56 [ 70] [ 3] [301] +17:43:56 ============================================================================ +17:43:56 + + +waiting on router queue for slot.... +17:43:56 Sending to : +17:43:56 ============================================================================ +17:43:56 ============================================================================ +17:43:56 Slot Id : <492> +17:43:56 Transaction Type : RESPONSE +17:43:56 Received From : +17:43:56 ============================================================================ +17:43:56 FNo. Len. Field Value +17:43:56 ============================================================================ +17:43:56 [ 1] [ 4] [0810] +17:43:56 [ 7] [ 10] [0320104303] +17:43:56 [ 11] [ 6] [157531] +17:43:56 [ 39] [ 2] [00] +17:43:56 [ 70] [ 3] [301] +17:43:56 ============================================================================ +17:43:56 Calculate Source COMM Id = 2 +17:43:56 ============================================================================ +17:43:56 + + +waiting on router queue for slot.... +17:43:57 ============================================================================ +17:43:57 Slot Id : <13> +17:43:57 Transaction Type : REQUEST +17:43:57 Received From : +17:43:57 ============================================================================ +17:43:57 FNo. Len. Field Value +17:43:57 ============================================================================ +17:43:57 [ 1] [ 4] [0800] +17:43:57 [ 2] [ 5] [02531] +17:43:57 [ 3] [ 6] [579178] +17:43:57 [ 7] [ 10] [0320104357] +17:43:57 [ 11] [ 6] [807441] +17:43:57 [ 15] [ 10] [0320104357] +17:43:57 [ 37] [ 11] [57917807441] +17:43:57 [ 70] [ 3] [001] +17:43:57 ============================================================================ +17:43:57 + + +waiting on router queue for slot.... +17:43:57 ============================================================================ +17:43:57 Slot Id : <13> +17:43:57 Transaction Type : RESPONSE +17:43:57 Received From : +17:43:57 ============================================================================ +17:43:57 FNo. Len. Field Value +17:43:57 ============================================================================ +17:43:57 [ 1] [ 4] [0810] +17:43:57 [ 7] [ 10] [0320104357] +17:43:57 [ 11] [ 6] [807441] +17:43:57 [ 15] [ 4] [0320] +17:43:57 [ 37] [ 12] [57917807441] +17:43:57 [ 39] [ 2] [00] +17:43:57 [ 70] [ 3] [001] +17:43:57 ============================================================================ +17:43:57 Sending to : +17:43:57 ============================================================================ +17:43:57 + + +waiting on router queue for slot.... +17:43:58 ============================================================================ +17:43:58 Slot Id : <454> +17:43:58 Transaction Type : REQUEST +17:43:58 Received From : +17:43:58 ============================================================================ +17:43:58 FNo. Len. Field Value +17:43:58 ============================================================================ +17:43:58 [ 1] [ 4] [0200] +17:43:58 [ 2] [ 16] [6213545000809024] +17:43:58 [ 3] [ 6] [010000] +17:43:58 [ 4] [ 12] [000010000000] +17:43:58 [ 7] [ 10] [0320174148] +17:43:58 [ 11] [ 6] [953836] +17:43:58 [ 12] [ 6] [174148] +17:43:58 [ 13] [ 4] [0320] +17:43:58 [ 15] [ 4] [0320] +17:43:58 [ 18] [ 4] [6011] +17:43:58 [ 19] [ 3] [418] +17:43:58 [ 22] [ 3] [021] +17:43:58 [ 25] [ 2] [01] +17:43:58 [ 28] [ 9] [D00002000] +17:43:58 [ 32] [ 6] [668899] +17:43:58 [ 35] [ 32] [6213545000809024=491212010902987] +17:43:58 [ 37] [ 12] [507901028132] +17:43:58 [ 41] [ 8] [03310002] +17:43:58 [ 42] [ 15] [APT ] +17:43:58 [ 43] [ 40] [ KEOOUDOM KEOOUDOM KEO] +17:43:58 [ 49] [ 3] [418] +17:43:58 [ 52] [ 16] [14BF02CFF77A4F1F] +17:43:58 ============================================================================ +17:43:58 + + +waiting on router queue for slot.... +17:43:58 Sending to : +17:43:58 ============================================================================ +17:43:58 Sending to : +17:43:58 ============================================================================ +17:43:58 ============================================================================ +17:43:58 Slot Id : <454> +17:43:58 Transaction Type : REQUEST +17:43:58 Received From : +17:43:58 ============================================================================ +17:43:58 FNo. Len. Field Value +17:43:58 ============================================================================ +17:43:58 [ 1] [ 4] [0200] +17:43:58 [ 2] [ 16] [6213545000809024] +17:43:58 [ 3] [ 6] [010000] +17:43:58 [ 4] [ 12] [000010000000] +17:43:58 [ 7] [ 10] [0320174148] +17:43:58 [ 11] [ 6] [953836] +17:43:58 [ 12] [ 6] [174148] +17:43:58 [ 13] [ 4] [0320] +17:43:58 [ 15] [ 4] [0320] +17:43:58 [ 18] [ 4] [6011] +17:43:58 [ 19] [ 3] [418] +17:43:58 [ 22] [ 3] [021] +17:43:58 [ 25] [ 2] [01] +17:43:58 [ 28] [ 9] [D00002000] +17:43:58 [ 32] [ 6] [668899] +17:43:58 [ 35] [ 32] [6213545000809024=491212010902987] +17:43:58 [ 37] [ 12] [507901028132] +17:43:58 [ 41] [ 8] [03310002] +17:43:58 [ 42] [ 15] [APT ] +17:43:58 [ 43] [ 40] [ KEOOUDOM KEOOUDOM KEO] +17:43:58 [ 49] [ 3] [418] +17:43:58 [ 52] [ 16] [14BF02CFF77A4F1F] +17:43:58 ============================================================================ +17:43:58 + + +waiting on router queue for slot.... +17:43:58 Sending to : +17:43:58 ============================================================================ +17:43:58 ============================================================================ +17:43:58 Slot Id : <454> +17:43:58 Transaction Type : REQUEST +17:43:58 Received From : +17:43:58 ============================================================================ +17:43:58 FNo. Len. Field Value +17:43:58 ============================================================================ +17:43:58 [ 1] [ 4] [0200] +17:43:58 [ 2] [ 16] [6213545000809024] +17:43:58 [ 3] [ 6] [010000] +17:43:58 [ 4] [ 12] [000010000000] +17:43:58 [ 7] [ 10] [0320174148] +17:43:58 [ 11] [ 6] [953836] +17:43:58 [ 12] [ 6] [174148] +17:43:58 [ 13] [ 4] [0320] +17:43:58 [ 15] [ 4] [0320] +17:43:58 [ 18] [ 4] [6011] +17:43:58 [ 19] [ 3] [418] +17:43:58 [ 22] [ 3] [021] +17:43:58 [ 25] [ 2] [01] +17:43:58 [ 28] [ 9] [D00002000] +17:43:58 [ 32] [ 6] [668899] +17:43:58 [ 35] [ 32] [6213545000809024=491212010902987] +17:43:58 [ 37] [ 12] [507901028132] +17:43:58 [ 41] [ 8] [03310002] +17:43:58 [ 42] [ 15] [APT ] +17:43:58 [ 43] [ 40] [ KEOOUDOM KEOOUDOM KEO] +17:43:58 [ 49] [ 3] [418] +17:43:58 [ 52] [ 16] [1FE013EF20217A2C] +17:43:58 ============================================================================ +17:43:58 + + +waiting on router queue for slot.... +17:43:58 Sending to : <0> +17:43:58 ============================================================================ +17:43:59 ============================================================================ +17:43:59 Slot Id : <454> +17:43:59 Transaction Type : RESPONSE +17:43:59 Received From : +17:43:59 ============================================================================ +17:43:59 FNo. Len. Field Value +17:43:59 ============================================================================ +17:43:59 [ 1] [ 4] [0210] +17:43:59 [ 2] [ 16] [6213545000809024] +17:43:59 [ 3] [ 6] [010000] +17:43:59 [ 4] [ 12] [000010000000] +17:43:59 [ 7] [ 10] [0320174148] +17:43:59 [ 11] [ 6] [953836] +17:43:59 [ 12] [ 6] [174148] +17:43:59 [ 13] [ 4] [0320] +17:43:59 [ 15] [ 4] [0320] +17:43:59 [ 18] [ 4] [6011] +17:43:59 [ 19] [ 3] [418] +17:43:59 [ 32] [ 6] [668899] +17:43:59 [ 35] [ 32] [6213545000809024=491212010902987] +17:43:59 [ 37] [ 12] [507901028132] +17:43:59 [ 38] [ 6] [890064] +17:43:59 [ 39] [ 2] [00] +17:43:59 [ 41] [ 8] [03310002] +17:43:59 [ 49] [ 3] [418] +17:43:59 [ 54] [ 40] [0001418C0001217817870002418C000121781787] +17:43:59 ============================================================================ +17:43:59 Sending to : +17:43:59 ============================================================================ +17:43:59 + + +waiting on router queue for slot.... +17:44:00 ============================================================================ +17:44:00 Slot Id : <12> +17:44:00 Transaction Type : REQUEST +17:44:00 Received From : +17:44:00 ============================================================================ +17:44:00 FNo. Len. Field Value +17:44:00 ============================================================================ +17:44:00 [ 1] [ 4] [0200] +17:44:00 [ 2] [ 16] [6688990104078306] +17:44:00 [ 3] [ 6] [010000] +17:44:00 [ 4] [ 12] [000010000000] +17:44:00 [ 7] [ 10] [0320174355] +17:44:00 [ 11] [ 6] [819213] +17:44:00 [ 12] [ 6] [174355] +17:44:00 [ 13] [ 4] [0320] +17:44:00 [ 15] [ 4] [0320] +17:44:00 [ 18] [ 4] [6011] +17:44:00 [ 22] [ 3] [900] +17:44:00 [ 25] [ 2] [02] +17:44:00 [ 28] [ 9] [D00002000] +17:44:00 [ 32] [ 6] [621354] +17:44:00 [ 35] [ 37] [6688990104078306=43021231830694200000] +17:44:00 [ 37] [ 12] [507903625454] +17:44:00 [ 41] [ 8] [16001500] +17:44:00 [ 42] [ 15] [NATIVE ] +17:44:00 [ 43] [ 40] [Sea game Village Xaythany LAO] +17:44:00 [ 49] [ 3] [418] +17:44:00 [ 52] [ 16] [8A0566545E32BB35] +17:44:00 ============================================================================ +17:44:00 + + +waiting on router queue for slot.... +17:44:00 Sending to : +17:44:00 ============================================================================ +17:44:00 Sending to : +17:44:00 ============================================================================ +17:44:00 ============================================================================ +17:44:00 Slot Id : <12> +17:44:00 Transaction Type : REQUEST +17:44:00 Received From : +17:44:00 ============================================================================ +17:44:00 FNo. Len. Field Value +17:44:00 ============================================================================ +17:44:00 [ 1] [ 4] [0200] +17:44:00 [ 2] [ 16] [6688990104078306] +17:44:00 [ 3] [ 6] [010000] +17:44:00 [ 4] [ 12] [000010000000] +17:44:00 [ 7] [ 10] [0320174355] +17:44:00 [ 11] [ 6] [819213] +17:44:00 [ 12] [ 6] [174355] +17:44:00 [ 13] [ 4] [0320] +17:44:00 [ 15] [ 4] [0320] +17:44:00 [ 18] [ 4] [6011] +17:44:00 [ 22] [ 3] [900] +17:44:00 [ 25] [ 2] [02] +17:44:00 [ 28] [ 9] [D00002000] +17:44:00 [ 32] [ 6] [621354] +17:44:00 [ 35] [ 37] [6688990104078306=43021231830694200000] +17:44:00 [ 37] [ 12] [507903625454] +17:44:00 [ 41] [ 8] [16001500] +17:44:00 [ 42] [ 15] [NATIVE ] +17:44:00 [ 43] [ 40] [Sea game Village Xaythany LAO] +17:44:00 [ 49] [ 3] [418] +17:44:00 [ 52] [ 16] [8A0566545E32BB35] +17:44:00 ============================================================================ +17:44:00 + + +waiting on router queue for slot.... +17:44:00 Sending to : +17:44:00 ============================================================================ +17:44:00 ============================================================================ +17:44:00 Slot Id : <12> +17:44:00 Transaction Type : REQUEST +17:44:00 Received From : +17:44:00 ============================================================================ +17:44:00 FNo. Len. Field Value +17:44:00 ============================================================================ +17:44:00 [ 1] [ 4] [0200] +17:44:00 [ 2] [ 16] [6688990104078306] +17:44:00 [ 3] [ 6] [010000] +17:44:00 [ 4] [ 12] [000010000000] +17:44:00 [ 7] [ 10] [0320174355] +17:44:00 [ 11] [ 6] [819213] +17:44:00 [ 12] [ 6] [174355] +17:44:00 [ 13] [ 4] [0320] +17:44:00 [ 15] [ 4] [0320] +17:44:00 [ 18] [ 4] [6011] +17:44:00 [ 22] [ 3] [900] +17:44:00 [ 25] [ 2] [02] +17:44:00 [ 28] [ 9] [D00002000] +17:44:00 [ 32] [ 6] [621354] +17:44:00 [ 35] [ 37] [6688990104078306=43021231830694200000] +17:44:00 [ 37] [ 12] [507903625454] +17:44:00 [ 41] [ 8] [16001500] +17:44:00 [ 42] [ 15] [NATIVE ] +17:44:00 [ 43] [ 40] [Sea game Village Xaythany LAO] +17:44:00 [ 49] [ 3] [418] +17:44:00 [ 52] [ 16] [C1955528950ED754] +17:44:00 ============================================================================ +17:44:00 + + +waiting on router queue for slot.... +17:44:00 Sending to : <4> +17:44:00 ============================================================================ +17:44:01 ============================================================================ +17:44:01 Slot Id : <454> +17:44:01 Transaction Type : RESPONSE +17:44:01 Received From : +17:44:01 ============================================================================ +17:44:01 FNo. Len. Field Value +17:44:01 ============================================================================ +17:44:01 [ 1] [ 4] [0210] +17:44:01 [ 2] [ 16] [6213545000809024] +17:44:01 [ 3] [ 6] [010000] +17:44:01 [ 4] [ 12] [000010000000] +17:44:01 [ 7] [ 10] [0320174148] +17:44:01 [ 11] [ 6] [953836] +17:44:01 [ 12] [ 6] [174148] +17:44:01 [ 13] [ 4] [0320] +17:44:01 [ 15] [ 4] [0320] +17:44:01 [ 18] [ 4] [6011] +17:44:01 [ 19] [ 3] [418] +17:44:01 [ 32] [ 6] [668899] +17:44:01 [ 35] [ 32] [6213545000809024=491212010902987] +17:44:01 [ 37] [ 12] [507901028132] +17:44:01 [ 38] [ 6] [890064] +17:44:01 [ 39] [ 2] [00] +17:44:01 [ 41] [ 8] [03310002] +17:44:01 [ 49] [ 3] [418] +17:44:01 [ 54] [ 40] [0001418C0001217817870002418C000121781787] +17:44:01 ============================================================================ +17:44:01 Calculate Source COMM Id = 4 +17:44:01 ============================================================================ +17:44:01 + + +waiting on router queue for slot.... +17:44:01 ============================================================================ +17:44:01 Slot Id : <12> +17:44:01 Transaction Type : RESPONSE +17:44:01 Received From : +17:44:01 ============================================================================ +17:44:01 FNo. Len. Field Value +17:44:01 ============================================================================ +17:44:01 [ 1] [ 4] [0210] +17:44:01 [ 2] [ 16] [6688990104078306] +17:44:01 [ 3] [ 6] [010000] +17:44:01 [ 4] [ 12] [000010000000] +17:44:01 [ 11] [ 6] [819213] +17:44:01 [ 12] [ 6] [174355] +17:44:01 [ 15] [ 4] [0320] +17:44:01 [ 18] [ 4] [6011] +17:44:01 [ 32] [ 6] [621354] +17:44:01 [ 35] [ 37] [6688990104078306=43021231830694200000] +17:44:01 [ 37] [ 12] [507903625454] +17:44:01 [ 38] [ 6] [258727] +17:44:01 [ 39] [ 2] [00] +17:44:01 [ 41] [ 8] [16001500] +17:44:01 [ 49] [ 3] [418] +17:44:01 [ 54] [ 20] [0002418C000002023629] +17:44:01 ============================================================================ +17:44:01 Sending to : +17:44:01 ============================================================================ +17:44:01 + + +waiting on router queue for slot.... +17:44:02 ============================================================================ +17:44:02 Slot Id : <12> +17:44:02 Transaction Type : RESPONSE +17:44:02 Received From : +17:44:02 ============================================================================ +17:44:02 FNo. Len. Field Value +17:44:02 ============================================================================ +17:44:02 [ 1] [ 4] [0210] +17:44:02 [ 2] [ 16] [6688990104078306] +17:44:02 [ 3] [ 6] [010000] +17:44:02 [ 4] [ 12] [000010000000] +17:44:02 [ 11] [ 6] [819213] +17:44:02 [ 12] [ 6] [174355] +17:44:02 [ 15] [ 4] [0320] +17:44:02 [ 18] [ 4] [6011] +17:44:02 [ 32] [ 6] [621354] +17:44:02 [ 35] [ 37] [6688990104078306=43021231830694200000] +17:44:02 [ 37] [ 12] [507903625454] +17:44:02 [ 38] [ 6] [258727] +17:44:02 [ 39] [ 2] [00] +17:44:02 [ 41] [ 8] [16001500] +17:44:02 [ 49] [ 3] [418] +17:44:02 [ 54] [ 20] [0002418C000002023629] +17:44:02 ============================================================================ +17:44:02 Calculate Source COMM Id = 0 +17:44:02 ============================================================================ +17:44:02 + + +waiting on router queue for slot.... +17:44:05 ============================================================================ +17:44:05 Slot Id : <22> +17:44:05 Transaction Type : REQUEST +17:44:05 Received From : +17:44:05 ============================================================================ +17:44:05 FNo. Len. Field Value +17:44:05 ============================================================================ +17:44:05 [ 1] [ 4] [0200] +17:44:05 [ 2] [ 16] [1808931700019191] +17:44:05 [ 3] [ 6] [011000] +17:44:05 [ 4] [ 12] [000020000000] +17:44:05 [ 7] [ 10] [0320174400] +17:44:05 [ 11] [ 6] [819240] +17:44:05 [ 12] [ 6] [174400] +17:44:05 [ 13] [ 4] [0320] +17:44:05 [ 15] [ 4] [0320] +17:44:05 [ 18] [ 4] [6011] +17:44:05 [ 22] [ 3] [900] +17:44:05 [ 25] [ 2] [02] +17:44:05 [ 28] [ 9] [D00002000] +17:44:05 [ 32] [ 6] [621354] +17:44:05 [ 35] [ 27] [1808931700019191=1803500885] +17:44:05 [ 37] [ 12] [507904795780] +17:44:05 [ 41] [ 8] [07001500] +17:44:05 [ 42] [ 15] [NATIVE ] +17:44:05 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +17:44:05 [ 49] [ 3] [418] +17:44:05 [ 52] [ 16] [3A5EBDF9F9FD643D] +17:44:05 ============================================================================ +17:44:05 + + +waiting on router queue for slot.... +17:44:05 Sending to : +17:44:05 ============================================================================ +17:44:05 Sending to : +17:44:05 ============================================================================ +17:44:06 ============================================================================ +17:44:06 Slot Id : <22> +17:44:06 Transaction Type : REQUEST +17:44:06 Received From : +17:44:06 ============================================================================ +17:44:06 FNo. Len. Field Value +17:44:06 ============================================================================ +17:44:06 [ 1] [ 4] [0200] +17:44:06 [ 2] [ 16] [1808931700019191] +17:44:06 [ 3] [ 6] [011000] +17:44:06 [ 4] [ 12] [000020000000] +17:44:06 [ 7] [ 10] [0320174400] +17:44:06 [ 11] [ 6] [819240] +17:44:06 [ 12] [ 6] [174400] +17:44:06 [ 13] [ 4] [0320] +17:44:06 [ 15] [ 4] [0320] +17:44:06 [ 18] [ 4] [6011] +17:44:06 [ 22] [ 3] [900] +17:44:06 [ 25] [ 2] [02] +17:44:06 [ 28] [ 9] [D00002000] +17:44:06 [ 32] [ 6] [621354] +17:44:06 [ 35] [ 27] [1808931700019191=1803500885] +17:44:06 [ 37] [ 12] [507904795780] +17:44:06 [ 41] [ 8] [07001500] +17:44:06 [ 42] [ 15] [NATIVE ] +17:44:06 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +17:44:06 [ 49] [ 3] [418] +17:44:06 [ 52] [ 16] [3A5EBDF9F9FD643D] +17:44:06 ============================================================================ +17:44:06 + + +waiting on router queue for slot.... +17:44:06 Sending to : +17:44:06 ============================================================================ +17:44:06 ============================================================================ +17:44:06 Slot Id : <22> +17:44:06 Transaction Type : REQUEST +17:44:06 Received From : +17:44:06 ============================================================================ +17:44:06 FNo. Len. Field Value +17:44:06 ============================================================================ +17:44:06 [ 1] [ 4] [0200] +17:44:06 [ 2] [ 16] [1808931700019191] +17:44:06 [ 3] [ 6] [011000] +17:44:06 [ 4] [ 12] [000020000000] +17:44:06 [ 7] [ 10] [0320174400] +17:44:06 [ 11] [ 6] [819240] +17:44:06 [ 12] [ 6] [174400] +17:44:06 [ 13] [ 4] [0320] +17:44:06 [ 15] [ 4] [0320] +17:44:06 [ 18] [ 4] [6011] +17:44:06 [ 22] [ 3] [900] +17:44:06 [ 25] [ 2] [02] +17:44:06 [ 28] [ 9] [D00002000] +17:44:06 [ 32] [ 6] [621354] +17:44:06 [ 35] [ 27] [1808931700019191=1803500885] +17:44:06 [ 37] [ 12] [507904795780] +17:44:06 [ 41] [ 8] [07001500] +17:44:06 [ 42] [ 15] [NATIVE ] +17:44:06 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +17:44:06 [ 49] [ 3] [418] +17:44:06 [ 52] [ 16] [F79B253DC728088C] +17:44:06 ============================================================================ +17:44:06 + + +waiting on router queue for slot.... +17:44:06 Sending to : <2> +17:44:06 ============================================================================ +17:44:11 ============================================================================ +17:44:11 Slot Id : <22> +17:44:11 Transaction Type : RESPONSE +17:44:11 Received From : +17:44:11 ============================================================================ +17:44:11 FNo. Len. Field Value +17:44:11 ============================================================================ +17:44:11 [ 1] [ 4] [0210] +17:44:11 [ 2] [ 16] [1808931700019191] +17:44:11 [ 3] [ 6] [011000] +17:44:11 [ 4] [ 12] [000020000000] +17:44:11 [ 6] [ 12] [000020000000] +17:44:11 [ 7] [ 10] [0320174400] +17:44:11 [ 11] [ 6] [819240] +17:44:11 [ 12] [ 6] [174400] +17:44:11 [ 13] [ 4] [0320] +17:44:11 [ 18] [ 4] [6011] +17:44:11 [ 19] [ 3] [418] +17:44:11 [ 22] [ 3] [021] +17:44:11 [ 32] [ 6] [621354] +17:44:11 [ 35] [ 27] [1808931700019191=1803500885] +17:44:11 [ 37] [ 12] [507904795780] +17:44:11 [ 38] [ 6] [819240] +17:44:11 [ 39] [ 2] [00] +17:44:11 [ 41] [ 8] [07001500] +17:44:11 [ 49] [ 3] [418] +17:44:11 [ 52] [ 16] [F79B253DC728088C] +17:44:11 [ 54] [ 20] [1001418C000219934500] +17:44:11 ============================================================================ +17:44:11 Sending to : +17:44:11 ============================================================================ +17:44:11 + + +waiting on router queue for slot.... +17:44:12 ============================================================================ +17:44:12 Slot Id : <469> +17:44:12 Transaction Type : REQUEST +17:44:12 Received From : +17:44:12 ============================================================================ +17:44:12 FNo. Len. Field Value +17:44:12 ============================================================================ +17:44:12 [ 1] [ 4] [0200] +17:44:12 [ 2] [ 16] [6688990105287500] +17:44:12 [ 3] [ 6] [011000] +17:44:12 [ 4] [ 12] [000015000000] +17:44:12 [ 7] [ 10] [0320174407] +17:44:12 [ 11] [ 6] [819265] +17:44:12 [ 12] [ 6] [174407] +17:44:12 [ 13] [ 4] [0320] +17:44:12 [ 15] [ 4] [0320] +17:44:12 [ 18] [ 4] [6011] +17:44:12 [ 22] [ 3] [900] +17:44:12 [ 25] [ 2] [02] +17:44:12 [ 28] [ 9] [D00002000] +17:44:12 [ 32] [ 6] [621354] +17:44:12 [ 35] [ 37] [6688990105287500=43081231750037900000] +17:44:12 [ 37] [ 12] [507902606389] +17:44:12 [ 41] [ 8] [05004300] +17:44:12 [ 42] [ 15] [NATIVE ] +17:44:12 [ 43] [ 40] [Ka deng office LuangprabangLAO] +17:44:12 [ 49] [ 3] [418] +17:44:12 [ 52] [ 16] [3BD8A6B496320806] +17:44:12 ============================================================================ +17:44:12 + + +waiting on router queue for slot.... +17:44:12 Sending to : +17:44:12 ============================================================================ +17:44:12 Sending to : +17:44:12 ============================================================================ +17:44:12 ============================================================================ +17:44:12 Slot Id : <22> +17:44:12 Transaction Type : RESPONSE +17:44:12 Received From : +17:44:12 ============================================================================ +17:44:12 FNo. Len. Field Value +17:44:12 ============================================================================ +17:44:12 [ 1] [ 4] [0210] +17:44:12 [ 2] [ 16] [1808931700019191] +17:44:12 [ 3] [ 6] [011000] +17:44:12 [ 4] [ 12] [000020000000] +17:44:12 [ 6] [ 12] [000020000000] +17:44:12 [ 7] [ 10] [0320174400] +17:44:12 [ 11] [ 6] [819240] +17:44:12 [ 12] [ 6] [174400] +17:44:12 [ 13] [ 4] [0320] +17:44:12 [ 18] [ 4] [6011] +17:44:12 [ 19] [ 3] [418] +17:44:12 [ 22] [ 3] [021] +17:44:12 [ 32] [ 6] [621354] +17:44:12 [ 35] [ 27] [1808931700019191=1803500885] +17:44:12 [ 37] [ 12] [507904795780] +17:44:12 [ 38] [ 6] [819240] +17:44:12 [ 39] [ 2] [00] +17:44:12 [ 41] [ 8] [07001500] +17:44:12 [ 49] [ 3] [418] +17:44:12 [ 52] [ 16] [F79B253DC728088C] +17:44:12 [ 54] [ 20] [1001418C000219934500] +17:44:12 ============================================================================ +17:44:12 Calculate Source COMM Id = 0 +17:44:12 ============================================================================ +17:44:12 + + +waiting on router queue for slot.... +17:44:12 ============================================================================ +17:44:12 Slot Id : <469> +17:44:12 Transaction Type : REQUEST +17:44:12 Received From : +17:44:12 ============================================================================ +17:44:12 FNo. Len. Field Value +17:44:12 ============================================================================ +17:44:12 [ 1] [ 4] [0200] +17:44:12 [ 2] [ 16] [6688990105287500] +17:44:12 [ 3] [ 6] [011000] +17:44:12 [ 4] [ 12] [000015000000] +17:44:12 [ 7] [ 10] [0320174407] +17:44:12 [ 11] [ 6] [819265] +17:44:12 [ 12] [ 6] [174407] +17:44:12 [ 13] [ 4] [0320] +17:44:12 [ 15] [ 4] [0320] +17:44:12 [ 18] [ 4] [6011] +17:44:12 [ 22] [ 3] [900] +17:44:12 [ 25] [ 2] [02] +17:44:12 [ 28] [ 9] [D00002000] +17:44:12 [ 32] [ 6] [621354] +17:44:12 [ 35] [ 37] [6688990105287500=43081231750037900000] +17:44:12 [ 37] [ 12] [507902606389] +17:44:12 [ 41] [ 8] [05004300] +17:44:12 [ 42] [ 15] [NATIVE ] +17:44:12 [ 43] [ 40] [Ka deng office LuangprabangLAO] +17:44:12 [ 49] [ 3] [418] +17:44:12 [ 52] [ 16] [3BD8A6B496320806] +17:44:12 ============================================================================ +17:44:12 + + +waiting on router queue for slot.... +17:44:12 Sending to : +17:44:12 ============================================================================ +17:44:12 ============================================================================ +17:44:12 Slot Id : <469> +17:44:12 Transaction Type : REQUEST +17:44:12 Received From : +17:44:12 ============================================================================ +17:44:12 FNo. Len. Field Value +17:44:12 ============================================================================ +17:44:12 [ 1] [ 4] [0200] +17:44:12 [ 2] [ 16] [6688990105287500] +17:44:12 [ 3] [ 6] [011000] +17:44:12 [ 4] [ 12] [000015000000] +17:44:12 [ 7] [ 10] [0320174407] +17:44:12 [ 11] [ 6] [819265] +17:44:12 [ 12] [ 6] [174407] +17:44:12 [ 13] [ 4] [0320] +17:44:12 [ 15] [ 4] [0320] +17:44:12 [ 18] [ 4] [6011] +17:44:12 [ 22] [ 3] [900] +17:44:12 [ 25] [ 2] [02] +17:44:12 [ 28] [ 9] [D00002000] +17:44:12 [ 32] [ 6] [621354] +17:44:12 [ 35] [ 37] [6688990105287500=43081231750037900000] +17:44:12 [ 37] [ 12] [507902606389] +17:44:12 [ 41] [ 8] [05004300] +17:44:12 [ 42] [ 15] [NATIVE ] +17:44:12 [ 43] [ 40] [Ka deng office LuangprabangLAO] +17:44:12 [ 49] [ 3] [418] +17:44:12 [ 52] [ 16] [BAD86784B01F4B91] +17:44:12 ============================================================================ +17:44:12 + + +waiting on router queue for slot.... +17:44:12 Sending to : <4> +17:44:12 ============================================================================ +17:44:13 ============================================================================ +17:44:13 Slot Id : <469> +17:44:13 Transaction Type : RESPONSE +17:44:13 Received From : +17:44:13 ============================================================================ +17:44:13 FNo. Len. Field Value +17:44:13 ============================================================================ +17:44:13 [ 1] [ 4] [0210] +17:44:13 [ 2] [ 16] [6688990105287500] +17:44:13 [ 3] [ 6] [011000] +17:44:13 [ 4] [ 12] [000015000000] +17:44:13 [ 11] [ 6] [819265] +17:44:13 [ 12] [ 6] [174407] +17:44:13 [ 15] [ 4] [0320] +17:44:13 [ 18] [ 4] [6011] +17:44:13 [ 32] [ 6] [621354] +17:44:13 [ 35] [ 37] [6688990105287500=43081231750037900000] +17:44:13 [ 37] [ 12] [507902606389] +17:44:13 [ 38] [ 6] [423614] +17:44:13 [ 39] [ 2] [00] +17:44:13 [ 41] [ 8] [05004300] +17:44:13 [ 49] [ 3] [418] +17:44:13 [ 54] [ 20] [1002418C000006853921] +17:44:13 ============================================================================ +17:44:13 Sending to : +17:44:13 ============================================================================ +17:44:13 + + +waiting on router queue for slot.... +17:44:15 ============================================================================ +17:44:15 Slot Id : <469> +17:44:15 Transaction Type : RESPONSE +17:44:15 Received From : +17:44:15 ============================================================================ +17:44:15 FNo. Len. Field Value +17:44:15 ============================================================================ +17:44:15 [ 1] [ 4] [0210] +17:44:15 [ 2] [ 16] [6688990105287500] +17:44:15 [ 3] [ 6] [011000] +17:44:15 [ 4] [ 12] [000015000000] +17:44:15 [ 11] [ 6] [819265] +17:44:15 [ 12] [ 6] [174407] +17:44:15 [ 15] [ 4] [0320] +17:44:15 [ 18] [ 4] [6011] +17:44:15 [ 32] [ 6] [621354] +17:44:15 [ 35] [ 37] [6688990105287500=43081231750037900000] +17:44:15 [ 37] [ 12] [507902606389] +17:44:15 [ 38] [ 6] [423614] +17:44:15 [ 39] [ 2] [00] +17:44:15 [ 41] [ 8] [05004300] +17:44:15 [ 49] [ 3] [418] +17:44:15 [ 54] [ 20] [1002418C000006853921] +17:44:15 ============================================================================ +17:44:15 Calculate Source COMM Id = 0 +17:44:15 ============================================================================ +17:44:15 + + +waiting on router queue for slot.... +17:44:15 ============================================================================ +17:44:15 Slot Id : <17> +17:44:15 Transaction Type : REQUEST +17:44:15 Received From : +17:44:15 ============================================================================ +17:44:15 FNo. Len. Field Value +17:44:15 ============================================================================ +17:44:15 [ 1] [ 4] [0200] +17:44:15 [ 2] [ 16] [6688990107031401] +17:44:15 [ 3] [ 6] [010000] +17:44:15 [ 4] [ 12] [000100000000] +17:44:15 [ 7] [ 10] [0320174410] +17:44:15 [ 11] [ 6] [819277] +17:44:15 [ 12] [ 6] [174410] +17:44:15 [ 13] [ 4] [0320] +17:44:15 [ 15] [ 4] [0320] +17:44:15 [ 18] [ 4] [6011] +17:44:15 [ 22] [ 3] [900] +17:44:15 [ 25] [ 2] [02] +17:44:15 [ 28] [ 9] [D00002000] +17:44:15 [ 32] [ 6] [621354] +17:44:15 [ 35] [ 37] [6688990107031401=44011231140181600000] +17:44:15 [ 37] [ 12] [507903444100] +17:44:15 [ 41] [ 8] [06001700] +17:44:15 [ 42] [ 15] [NATIVE ] +17:44:15 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:44:15 [ 49] [ 3] [418] +17:44:15 [ 52] [ 16] [264C9242F1C64F0C] +17:44:15 ============================================================================ +17:44:15 + + +waiting on router queue for slot.... +17:44:15 Sending to : +17:44:15 ============================================================================ +17:44:15 Sending to : +17:44:15 ============================================================================ +17:44:16 ============================================================================ +17:44:16 Slot Id : <17> +17:44:16 Transaction Type : REQUEST +17:44:16 Received From : +17:44:16 ============================================================================ +17:44:16 FNo. Len. Field Value +17:44:16 ============================================================================ +17:44:16 [ 1] [ 4] [0200] +17:44:16 [ 2] [ 16] [6688990107031401] +17:44:16 [ 3] [ 6] [010000] +17:44:16 [ 4] [ 12] [000100000000] +17:44:16 [ 7] [ 10] [0320174410] +17:44:16 [ 11] [ 6] [819277] +17:44:16 [ 12] [ 6] [174410] +17:44:16 [ 13] [ 4] [0320] +17:44:16 [ 15] [ 4] [0320] +17:44:16 [ 18] [ 4] [6011] +17:44:16 [ 22] [ 3] [900] +17:44:16 [ 25] [ 2] [02] +17:44:16 [ 28] [ 9] [D00002000] +17:44:16 [ 32] [ 6] [621354] +17:44:16 [ 35] [ 37] [6688990107031401=44011231140181600000] +17:44:16 [ 37] [ 12] [507903444100] +17:44:16 [ 41] [ 8] [06001700] +17:44:16 [ 42] [ 15] [NATIVE ] +17:44:16 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:44:16 [ 49] [ 3] [418] +17:44:16 [ 52] [ 16] [264C9242F1C64F0C] +17:44:16 ============================================================================ +17:44:16 + + +waiting on router queue for slot.... +17:44:16 Sending to : +17:44:16 ============================================================================ +17:44:16 ============================================================================ +17:44:16 Slot Id : <17> +17:44:16 Transaction Type : REQUEST +17:44:16 Received From : +17:44:16 ============================================================================ +17:44:16 FNo. Len. Field Value +17:44:16 ============================================================================ +17:44:16 [ 1] [ 4] [0200] +17:44:16 [ 2] [ 16] [6688990107031401] +17:44:16 [ 3] [ 6] [010000] +17:44:16 [ 4] [ 12] [000100000000] +17:44:16 [ 7] [ 10] [0320174410] +17:44:16 [ 11] [ 6] [819277] +17:44:16 [ 12] [ 6] [174410] +17:44:16 [ 13] [ 4] [0320] +17:44:16 [ 15] [ 4] [0320] +17:44:16 [ 18] [ 4] [6011] +17:44:16 [ 22] [ 3] [900] +17:44:16 [ 25] [ 2] [02] +17:44:16 [ 28] [ 9] [D00002000] +17:44:16 [ 32] [ 6] [621354] +17:44:16 [ 35] [ 37] [6688990107031401=44011231140181600000] +17:44:16 [ 37] [ 12] [507903444100] +17:44:16 [ 41] [ 8] [06001700] +17:44:16 [ 42] [ 15] [NATIVE ] +17:44:16 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +17:44:16 [ 49] [ 3] [418] +17:44:16 [ 52] [ 16] [351386129567F346] +17:44:16 ============================================================================ +17:44:16 + + +waiting on router queue for slot.... +17:44:16 Sending to : <4> +17:44:16 ============================================================================ +17:44:17 ============================================================================ +17:44:17 Slot Id : <491> +17:44:17 Transaction Type : REQUEST +17:44:17 Received From : +17:44:17 ============================================================================ +17:44:17 FNo. Len. Field Value +17:44:17 ============================================================================ +17:44:17 [ 1] [ 4] [0200] +17:44:17 [ 2] [ 16] [6213544001555926] +17:44:17 [ 3] [ 6] [301000] +17:44:17 [ 4] [ 12] [000000000000] +17:44:17 [ 7] [ 10] [0320174437] +17:44:17 [ 11] [ 6] [209802] +17:44:17 [ 12] [ 6] [173943] +17:44:17 [ 13] [ 4] [0320] +17:44:17 [ 14] [ 4] [4912] +17:44:17 [ 15] [ 4] [0320] +17:44:17 [ 18] [ 4] [6011] +17:44:17 [ 19] [ 3] [418] +17:44:17 [ 22] [ 3] [021] +17:44:17 [ 25] [ 2] [01] +17:44:17 [ 28] [ 9] [D00000000] +17:44:17 [ 32] [ 6] [198901] +17:44:17 [ 35] [ 32] [6213544001555926=491212015592349] +17:44:17 [ 37] [ 12] [507917209802] +17:44:17 [ 41] [ 8] [19529001] +17:44:17 [ 42] [ 15] [000000041952901] +17:44:17 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:44:17 [ 49] [ 3] [418] +17:44:17 [ 52] [ 16] [C323E4DBDEF5F958] +17:44:17 ============================================================================ +17:44:17 + + +waiting on router queue for slot.... +17:44:17 Sending to : +17:44:17 ============================================================================ +17:44:17 Sending to : +17:44:17 ============================================================================ +17:44:17 ============================================================================ +17:44:17 Slot Id : <491> +17:44:17 Transaction Type : REQUEST +17:44:17 Received From : +17:44:17 ============================================================================ +17:44:17 FNo. Len. Field Value +17:44:17 ============================================================================ +17:44:17 [ 1] [ 4] [0200] +17:44:17 [ 2] [ 16] [6213544001555926] +17:44:17 [ 3] [ 6] [301000] +17:44:17 [ 4] [ 12] [000000000000] +17:44:17 [ 7] [ 10] [0320174437] +17:44:17 [ 11] [ 6] [209802] +17:44:17 [ 12] [ 6] [173943] +17:44:17 [ 13] [ 4] [0320] +17:44:17 [ 14] [ 4] [4912] +17:44:17 [ 15] [ 4] [0320] +17:44:17 [ 18] [ 4] [6011] +17:44:17 [ 19] [ 3] [418] +17:44:17 [ 22] [ 3] [021] +17:44:17 [ 25] [ 2] [01] +17:44:17 [ 28] [ 9] [D00000000] +17:44:17 [ 32] [ 6] [198901] +17:44:17 [ 35] [ 32] [6213544001555926=491212015592349] +17:44:17 [ 37] [ 12] [507917209802] +17:44:17 [ 41] [ 8] [19529001] +17:44:17 [ 42] [ 15] [000000041952901] +17:44:17 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:44:17 [ 49] [ 3] [418] +17:44:17 [ 52] [ 16] [C323E4DBDEF5F958] +17:44:17 ============================================================================ +17:44:17 + + +waiting on router queue for slot.... +17:44:17 Sending to : +17:44:17 ============================================================================ +17:44:17 ============================================================================ +17:44:17 Slot Id : <491> +17:44:17 Transaction Type : REQUEST +17:44:17 Received From : +17:44:17 ============================================================================ +17:44:17 FNo. Len. Field Value +17:44:17 ============================================================================ +17:44:17 [ 1] [ 4] [0200] +17:44:17 [ 2] [ 16] [6213544001555926] +17:44:17 [ 3] [ 6] [301000] +17:44:17 [ 4] [ 12] [000000000000] +17:44:17 [ 7] [ 10] [0320174437] +17:44:17 [ 11] [ 6] [209802] +17:44:17 [ 12] [ 6] [173943] +17:44:17 [ 13] [ 4] [0320] +17:44:17 [ 14] [ 4] [4912] +17:44:17 [ 15] [ 4] [0320] +17:44:17 [ 18] [ 4] [6011] +17:44:17 [ 19] [ 3] [418] +17:44:17 [ 22] [ 3] [021] +17:44:17 [ 25] [ 2] [01] +17:44:17 [ 28] [ 9] [D00000000] +17:44:17 [ 32] [ 6] [198901] +17:44:17 [ 35] [ 32] [6213544001555926=491212015592349] +17:44:17 [ 37] [ 12] [507917209802] +17:44:17 [ 41] [ 8] [19529001] +17:44:17 [ 42] [ 15] [000000041952901] +17:44:17 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:44:17 [ 49] [ 3] [418] +17:44:17 [ 52] [ 16] [0E7B167CBA1BC83C] +17:44:17 ============================================================================ +17:44:17 + + +waiting on router queue for slot.... +17:44:17 Sending to : <0> +17:44:17 ============================================================================ +17:44:18 ============================================================================ +17:44:18 Slot Id : <17> +17:44:18 Transaction Type : RESPONSE +17:44:18 Received From : +17:44:18 ============================================================================ +17:44:18 FNo. Len. Field Value +17:44:18 ============================================================================ +17:44:18 [ 1] [ 4] [0210] +17:44:18 [ 2] [ 16] [6688990107031401] +17:44:18 [ 3] [ 6] [010000] +17:44:18 [ 4] [ 12] [000100000000] +17:44:18 [ 11] [ 6] [819277] +17:44:18 [ 12] [ 6] [174410] +17:44:18 [ 15] [ 4] [0320] +17:44:18 [ 18] [ 4] [6011] +17:44:18 [ 32] [ 6] [621354] +17:44:18 [ 35] [ 37] [6688990107031401=44011231140181600000] +17:44:18 [ 37] [ 12] [507903444100] +17:44:18 [ 38] [ 6] [925263] +17:44:18 [ 39] [ 2] [00] +17:44:18 [ 41] [ 8] [06001700] +17:44:18 [ 49] [ 3] [418] +17:44:18 [ 54] [ 20] [0002418C000099444914] +17:44:18 ============================================================================ +17:44:18 Sending to : +17:44:18 ============================================================================ +17:44:18 + + +waiting on router queue for slot.... +17:44:18 ============================================================================ +17:44:18 Slot Id : <491> +17:44:18 Transaction Type : RESPONSE +17:44:18 Received From : +17:44:18 ============================================================================ +17:44:18 FNo. Len. Field Value +17:44:18 ============================================================================ +17:44:18 [ 1] [ 4] [0210] +17:44:18 [ 2] [ 16] [6213544001555926] +17:44:18 [ 3] [ 6] [301000] +17:44:18 [ 4] [ 12] [000000000000] +17:44:18 [ 7] [ 10] [0320174437] +17:44:18 [ 11] [ 6] [209802] +17:44:18 [ 12] [ 6] [173943] +17:44:18 [ 13] [ 4] [0320] +17:44:18 [ 15] [ 4] [0320] +17:44:18 [ 18] [ 4] [6011] +17:44:18 [ 19] [ 3] [418] +17:44:18 [ 32] [ 6] [198901] +17:44:18 [ 35] [ 32] [6213544001555926=491212015592349] +17:44:18 [ 37] [ 12] [507917209802] +17:44:18 [ 38] [ 6] [632877] +17:44:18 [ 39] [ 2] [00] +17:44:18 [ 41] [ 8] [19529001] +17:44:18 [ 49] [ 3] [418] +17:44:18 [ 54] [ 40] [1001418C0000512088721002418C000051208872] +17:44:18 ============================================================================ +17:44:18 Sending to : +17:44:18 ============================================================================ +17:44:18 + + +waiting on router queue for slot.... +17:44:19 ============================================================================ +17:44:19 Slot Id : <17> +17:44:19 Transaction Type : RESPONSE +17:44:19 Received From : +17:44:19 ============================================================================ +17:44:19 FNo. Len. Field Value +17:44:19 ============================================================================ +17:44:19 [ 1] [ 4] [0210] +17:44:19 [ 2] [ 16] [6688990107031401] +17:44:19 [ 3] [ 6] [010000] +17:44:19 [ 4] [ 12] [000100000000] +17:44:19 [ 11] [ 6] [819277] +17:44:19 [ 12] [ 6] [174410] +17:44:19 [ 15] [ 4] [0320] +17:44:19 [ 18] [ 4] [6011] +17:44:19 [ 32] [ 6] [621354] +17:44:19 [ 35] [ 37] [6688990107031401=44011231140181600000] +17:44:19 [ 37] [ 12] [507903444100] +17:44:19 [ 38] [ 6] [925263] +17:44:19 [ 39] [ 2] [00] +17:44:19 [ 41] [ 8] [06001700] +17:44:19 [ 49] [ 3] [418] +17:44:19 [ 54] [ 20] [0002418C000099444914] +17:44:19 ============================================================================ +17:44:19 Calculate Source COMM Id = 0 +17:44:19 ============================================================================ +17:44:19 + + +waiting on router queue for slot.... +17:44:19 ============================================================================ +17:44:19 Slot Id : <494> +17:44:19 Transaction Type : REQUEST +17:44:19 Received From : +17:44:19 ============================================================================ +17:44:19 FNo. Len. Field Value +17:44:19 ============================================================================ +17:44:19 [ 1] [ 4] [0800] +17:44:19 [ 7] [ 10] [0320104326] +17:44:19 [ 11] [ 6] [157532] +17:44:19 [ 70] [ 3] [301] +17:44:19 ============================================================================ +17:44:19 + + +waiting on router queue for slot.... +17:44:19 Sending to : +17:44:19 ============================================================================ +17:44:19 ============================================================================ +17:44:19 Slot Id : <494> +17:44:19 Transaction Type : RESPONSE +17:44:19 Received From : +17:44:19 ============================================================================ +17:44:19 FNo. Len. Field Value +17:44:19 ============================================================================ +17:44:19 [ 1] [ 4] [0810] +17:44:19 [ 7] [ 10] [0320104326] +17:44:19 [ 11] [ 6] [157532] +17:44:19 [ 39] [ 2] [00] +17:44:19 [ 70] [ 3] [301] +17:44:19 ============================================================================ +17:44:19 Calculate Source COMM Id = 2 +17:44:19 ============================================================================ +17:44:19 + + +waiting on router queue for slot.... +17:44:20 ============================================================================ +17:44:20 Slot Id : <29> +17:44:20 Transaction Type : REQUEST +17:44:20 Received From : +17:44:20 ============================================================================ +17:44:20 FNo. Len. Field Value +17:44:20 ============================================================================ +17:44:20 [ 1] [ 4] [0200] +17:44:20 [ 2] [ 16] [6213544001144887] +17:44:20 [ 3] [ 6] [311000] +17:44:20 [ 4] [ 12] [000000000000] +17:44:20 [ 7] [ 10] [0320175207] +17:44:20 [ 11] [ 6] [010438] +17:44:20 [ 12] [ 6] [175207] +17:44:20 [ 13] [ 4] [0320] +17:44:20 [ 14] [ 4] [4912] +17:44:20 [ 15] [ 4] [0320] +17:44:20 [ 18] [ 4] [6011] +17:44:20 [ 22] [ 3] [900] +17:44:20 [ 25] [ 2] [02] +17:44:20 [ 28] [ 9] [000000000] +17:44:20 [ 32] [ 6] [220699] +17:44:20 [ 35] [ 32] [6213544001144887=491212014488645] +17:44:20 [ 37] [ 12] [507900220664] +17:44:20 [ 41] [ 8] [05000200] +17:44:20 [ 42] [ 15] [APTRA ] +17:44:20 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:44:20 [ 49] [ 3] [418] +17:44:20 [ 52] [ 16] [80AAC03F98465DA7] +17:44:20 ============================================================================ +17:44:20 + + +waiting on router queue for slot.... +17:44:20 Sending to : +17:44:20 ============================================================================ +17:44:20 Sending to : +17:44:20 ============================================================================ +17:44:20 ============================================================================ +17:44:20 Slot Id : <29> +17:44:20 Transaction Type : REQUEST +17:44:20 Received From : +17:44:20 ============================================================================ +17:44:20 FNo. Len. Field Value +17:44:20 ============================================================================ +17:44:20 [ 1] [ 4] [0200] +17:44:20 [ 2] [ 16] [6213544001144887] +17:44:20 [ 3] [ 6] [311000] +17:44:20 [ 4] [ 12] [000000000000] +17:44:20 [ 7] [ 10] [0320175207] +17:44:20 [ 11] [ 6] [010438] +17:44:20 [ 12] [ 6] [175207] +17:44:20 [ 13] [ 4] [0320] +17:44:20 [ 14] [ 4] [4912] +17:44:20 [ 15] [ 4] [0320] +17:44:20 [ 18] [ 4] [6011] +17:44:20 [ 22] [ 3] [900] +17:44:20 [ 25] [ 2] [02] +17:44:20 [ 28] [ 9] [000000000] +17:44:20 [ 32] [ 6] [220699] +17:44:20 [ 35] [ 32] [6213544001144887=491212014488645] +17:44:20 [ 37] [ 12] [507900220664] +17:44:20 [ 41] [ 8] [05000200] +17:44:20 [ 42] [ 15] [APTRA ] +17:44:20 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:44:20 [ 49] [ 3] [418] +17:44:20 [ 52] [ 16] [80AAC03F98465DA7] +17:44:20 ============================================================================ +17:44:20 + + +waiting on router queue for slot.... +17:44:20 Sending to : +17:44:20 ============================================================================ +17:44:20 ============================================================================ +17:44:20 Slot Id : <29> +17:44:20 Transaction Type : REQUEST +17:44:20 Received From : +17:44:20 ============================================================================ +17:44:20 FNo. Len. Field Value +17:44:20 ============================================================================ +17:44:20 [ 1] [ 4] [0200] +17:44:20 [ 2] [ 16] [6213544001144887] +17:44:20 [ 3] [ 6] [311000] +17:44:20 [ 4] [ 12] [000000000000] +17:44:20 [ 7] [ 10] [0320175207] +17:44:20 [ 11] [ 6] [010438] +17:44:20 [ 12] [ 6] [175207] +17:44:20 [ 13] [ 4] [0320] +17:44:20 [ 14] [ 4] [4912] +17:44:20 [ 15] [ 4] [0320] +17:44:20 [ 18] [ 4] [6011] +17:44:20 [ 22] [ 3] [900] +17:44:20 [ 25] [ 2] [02] +17:44:20 [ 28] [ 9] [000000000] +17:44:20 [ 32] [ 6] [220699] +17:44:20 [ 35] [ 32] [6213544001144887=491212014488645] +17:44:20 [ 37] [ 12] [507900220664] +17:44:20 [ 41] [ 8] [05000200] +17:44:20 [ 42] [ 15] [APTRA ] +17:44:20 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:44:20 [ 49] [ 3] [418] +17:44:20 [ 52] [ 16] [7009CC3966E0B4EC] +17:44:20 ============================================================================ +17:44:20 + + +waiting on router queue for slot.... +17:44:20 Sending to : <0> +17:44:20 ============================================================================ +17:44:21 ============================================================================ +17:44:21 Slot Id : <29> +17:44:21 Transaction Type : RESPONSE +17:44:21 Received From : +17:44:21 ============================================================================ +17:44:21 FNo. Len. Field Value +17:44:21 ============================================================================ +17:44:21 [ 1] [ 4] [0210] +17:44:21 [ 2] [ 16] [6213544001144887] +17:44:21 [ 3] [ 6] [311000] +17:44:21 [ 4] [ 12] [000000000000] +17:44:21 [ 7] [ 10] [0320175207] +17:44:21 [ 11] [ 6] [010438] +17:44:21 [ 12] [ 6] [175207] +17:44:21 [ 13] [ 4] [0320] +17:44:21 [ 15] [ 4] [0320] +17:44:21 [ 18] [ 4] [6011] +17:44:21 [ 32] [ 6] [220699] +17:44:21 [ 35] [ 32] [6213544001144887=491212014488645] +17:44:21 [ 37] [ 12] [507900220664] +17:44:21 [ 38] [ 6] [682245] +17:44:21 [ 39] [ 2] [00] +17:44:21 [ 41] [ 8] [05000200] +17:44:21 [ 49] [ 3] [418] +17:44:21 [ 54] [ 40] [1001418C0006392735251002418C000639273525] +17:44:21 ============================================================================ +17:44:21 Sending to : +17:44:21 ============================================================================ +17:44:21 + + +waiting on router queue for slot.... +17:44:21 ============================================================================ +17:44:21 Slot Id : <491> +17:44:21 Transaction Type : RESPONSE +17:44:21 Received From : +17:44:21 ============================================================================ +17:44:21 FNo. Len. Field Value +17:44:21 ============================================================================ +17:44:21 [ 1] [ 4] [0210] +17:44:21 [ 2] [ 16] [6213544001555926] +17:44:21 [ 3] [ 6] [301000] +17:44:21 [ 4] [ 12] [000000000000] +17:44:21 [ 7] [ 10] [0320174437] +17:44:21 [ 11] [ 6] [209802] +17:44:21 [ 12] [ 6] [173943] +17:44:21 [ 13] [ 4] [0320] +17:44:21 [ 15] [ 4] [0320] +17:44:21 [ 18] [ 4] [6011] +17:44:21 [ 19] [ 3] [418] +17:44:21 [ 32] [ 6] [198901] +17:44:21 [ 35] [ 32] [6213544001555926=491212015592349] +17:44:21 [ 37] [ 12] [507917209802] +17:44:21 [ 38] [ 6] [632877] +17:44:21 [ 39] [ 2] [00] +17:44:21 [ 41] [ 8] [19529001] +17:44:21 [ 49] [ 3] [418] +17:44:21 [ 54] [ 40] [1001418C0000512088721002418C000051208872] +17:44:21 ============================================================================ +17:44:21 Calculate Source COMM Id = 5 +17:44:21 ============================================================================ +17:44:21 + + +waiting on router queue for slot.... +17:44:21 ============================================================================ +17:44:21 Slot Id : <10> +17:44:21 Transaction Type : REQUEST +17:44:21 Received From : +17:44:21 ============================================================================ +17:44:21 FNo. Len. Field Value +17:44:21 ============================================================================ +17:44:21 [ 1] [ 4] [0200] +17:44:21 [ 2] [ 16] [1999990000015159] +17:44:21 [ 3] [ 6] [013000] +17:44:21 [ 4] [ 12] [000100000000] +17:44:21 [ 7] [ 10] [0320174416] +17:44:21 [ 11] [ 6] [819296] +17:44:21 [ 12] [ 6] [174416] +17:44:21 [ 13] [ 4] [0320] +17:44:21 [ 15] [ 4] [0320] +17:44:21 [ 18] [ 4] [6011] +17:44:21 [ 22] [ 3] [900] +17:44:21 [ 25] [ 2] [02] +17:44:21 [ 28] [ 9] [D00002000] +17:44:21 [ 32] [ 6] [621354] +17:44:21 [ 35] [ 32] [1999990000015159=000010100000765] +17:44:21 [ 37] [ 12] [507902706628] +17:44:21 [ 41] [ 8] [14000900] +17:44:21 [ 42] [ 15] [NATIVE ] +17:44:21 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:44:21 [ 49] [ 3] [418] +17:44:21 [ 52] [ 16] [D220399309D270CB] +17:44:21 ============================================================================ +17:44:21 + + +waiting on router queue for slot.... +17:44:21 Sending to : +17:44:21 ============================================================================ +17:44:21 Sending to : +17:44:21 ============================================================================ +17:44:21 ============================================================================ +17:44:21 Slot Id : <10> +17:44:21 Transaction Type : REQUEST +17:44:21 Received From : +17:44:21 ============================================================================ +17:44:21 FNo. Len. Field Value +17:44:21 ============================================================================ +17:44:21 [ 1] [ 4] [0200] +17:44:21 [ 2] [ 16] [1999990000015159] +17:44:21 [ 3] [ 6] [013000] +17:44:21 [ 4] [ 12] [000100000000] +17:44:21 [ 7] [ 10] [0320174416] +17:44:21 [ 11] [ 6] [819296] +17:44:21 [ 12] [ 6] [174416] +17:44:21 [ 13] [ 4] [0320] +17:44:21 [ 15] [ 4] [0320] +17:44:21 [ 18] [ 4] [6011] +17:44:21 [ 22] [ 3] [900] +17:44:21 [ 25] [ 2] [02] +17:44:21 [ 28] [ 9] [D00002000] +17:44:21 [ 32] [ 6] [621354] +17:44:21 [ 35] [ 32] [1999990000015159=000010100000765] +17:44:21 [ 37] [ 12] [507902706628] +17:44:21 [ 41] [ 8] [14000900] +17:44:21 [ 42] [ 15] [NATIVE ] +17:44:21 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:44:21 [ 49] [ 3] [418] +17:44:21 [ 52] [ 16] [D220399309D270CB] +17:44:21 ============================================================================ +17:44:21 + + +waiting on router queue for slot.... +17:44:21 Sending to : +17:44:21 ============================================================================ +17:44:21 ============================================================================ +17:44:21 Slot Id : <10> +17:44:21 Transaction Type : REQUEST +17:44:21 Received From : +17:44:21 ============================================================================ +17:44:21 FNo. Len. Field Value +17:44:21 ============================================================================ +17:44:21 [ 1] [ 4] [0200] +17:44:21 [ 2] [ 16] [1999990000015159] +17:44:21 [ 3] [ 6] [013000] +17:44:21 [ 4] [ 12] [000100000000] +17:44:21 [ 7] [ 10] [0320174416] +17:44:21 [ 11] [ 6] [819296] +17:44:21 [ 12] [ 6] [174416] +17:44:21 [ 13] [ 4] [0320] +17:44:21 [ 15] [ 4] [0320] +17:44:21 [ 18] [ 4] [6011] +17:44:21 [ 22] [ 3] [900] +17:44:21 [ 25] [ 2] [02] +17:44:21 [ 28] [ 9] [D00002000] +17:44:21 [ 32] [ 6] [621354] +17:44:21 [ 35] [ 32] [1999990000015159=000010100000765] +17:44:21 [ 37] [ 12] [507902706628] +17:44:21 [ 41] [ 8] [14000900] +17:44:21 [ 42] [ 15] [NATIVE ] +17:44:21 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:44:21 [ 49] [ 3] [418] +17:44:21 [ 52] [ 16] [A19B9815F4F66029] +17:44:21 ============================================================================ +17:44:21 + + +waiting on router queue for slot.... +17:44:21 Sending to : <5> +17:44:21 ============================================================================ +17:44:22 ============================================================================ +17:44:22 Slot Id : <29> +17:44:22 Transaction Type : RESPONSE +17:44:22 Received From : +17:44:22 ============================================================================ +17:44:22 FNo. Len. Field Value +17:44:22 ============================================================================ +17:44:22 [ 1] [ 4] [0210] +17:44:22 [ 2] [ 16] [6213544001144887] +17:44:22 [ 3] [ 6] [311000] +17:44:22 [ 4] [ 12] [000000000000] +17:44:22 [ 7] [ 10] [0320175207] +17:44:22 [ 11] [ 6] [010438] +17:44:22 [ 12] [ 6] [175207] +17:44:22 [ 13] [ 4] [0320] +17:44:22 [ 15] [ 4] [0320] +17:44:22 [ 18] [ 4] [6011] +17:44:22 [ 32] [ 6] [220699] +17:44:22 [ 35] [ 32] [6213544001144887=491212014488645] +17:44:22 [ 37] [ 12] [507900220664] +17:44:22 [ 38] [ 6] [682245] +17:44:22 [ 39] [ 2] [00] +17:44:22 [ 41] [ 8] [05000200] +17:44:22 [ 49] [ 3] [418] +17:44:22 [ 54] [ 40] [1001418C0006392735251002418C000639273525] +17:44:22 ============================================================================ +17:44:22 Calculate Source COMM Id = 1 +17:44:22 ============================================================================ +17:44:22 + + +waiting on router queue for slot.... +17:44:25 ============================================================================ +17:44:25 Slot Id : <10> +17:44:25 Transaction Type : RESPONSE +17:44:25 Received From : +17:44:25 ============================================================================ +17:44:25 FNo. Len. Field Value +17:44:25 ============================================================================ +17:44:25 [ 1] [ 4] [0210] +17:44:25 [ 2] [ 16] [1999990000015159] +17:44:25 [ 3] [ 6] [013000] +17:44:25 [ 4] [ 12] [000100000000] +17:44:25 [ 7] [ 10] [0320174416] +17:44:25 [ 11] [ 6] [819296] +17:44:25 [ 12] [ 6] [174416] +17:44:25 [ 13] [ 4] [0320] +17:44:25 [ 15] [ 4] [0320] +17:44:25 [ 18] [ 4] [6011] +17:44:25 [ 19] [ 3] [418] +17:44:25 [ 32] [ 6] [621354] +17:44:25 [ 37] [ 12] [507902706628] +17:44:25 [ 38] [ 6] [784893] +17:44:25 [ 39] [ 2] [00] +17:44:25 [ 41] [ 8] [14000900] +17:44:25 [ 49] [ 3] [418] +17:44:25 [ 54] [ 0] [] +17:44:25 ============================================================================ +17:44:25 Sending to : +17:44:25 ============================================================================ +17:44:25 + + +waiting on router queue for slot.... +17:44:26 ============================================================================ +17:44:26 Slot Id : <10> +17:44:26 Transaction Type : RESPONSE +17:44:26 Received From : +17:44:26 ============================================================================ +17:44:26 FNo. Len. Field Value +17:44:26 ============================================================================ +17:44:26 [ 1] [ 4] [0210] +17:44:26 [ 2] [ 16] [1999990000015159] +17:44:26 [ 3] [ 6] [013000] +17:44:26 [ 4] [ 12] [000100000000] +17:44:26 [ 7] [ 10] [0320174416] +17:44:26 [ 11] [ 6] [819296] +17:44:26 [ 12] [ 6] [174416] +17:44:26 [ 13] [ 4] [0320] +17:44:26 [ 15] [ 4] [0320] +17:44:26 [ 18] [ 4] [6011] +17:44:26 [ 19] [ 3] [418] +17:44:26 [ 32] [ 6] [621354] +17:44:26 [ 37] [ 12] [507902706628] +17:44:26 [ 38] [ 6] [784893] +17:44:26 [ 39] [ 2] [00] +17:44:26 [ 41] [ 8] [14000900] +17:44:26 [ 49] [ 3] [418] +17:44:26 [ 54] [ 0] [] +17:44:26 ============================================================================ +17:44:26 Calculate Source COMM Id = 0 +17:44:26 ============================================================================ +17:44:26 + + +waiting on router queue for slot.... +17:44:30 ============================================================================ +17:44:30 Slot Id : <499> +17:44:30 Transaction Type : REQUEST +17:44:30 Received From : +17:44:30 ============================================================================ +17:44:30 FNo. Len. Field Value +17:44:30 ============================================================================ +17:44:30 [ 1] [ 4] [0800] +17:44:30 [ 7] [ 10] [0320104337] +17:44:30 [ 11] [ 6] [157533] +17:44:30 [ 70] [ 3] [301] +17:44:30 ============================================================================ +17:44:30 + + +waiting on router queue for slot.... +17:44:30 Sending to : +17:44:30 ============================================================================ +17:44:30 ============================================================================ +17:44:30 Slot Id : <499> +17:44:30 Transaction Type : RESPONSE +17:44:30 Received From : +17:44:30 ============================================================================ +17:44:30 FNo. Len. Field Value +17:44:30 ============================================================================ +17:44:30 [ 1] [ 4] [0810] +17:44:30 [ 7] [ 10] [0320104337] +17:44:30 [ 11] [ 6] [157533] +17:44:30 [ 39] [ 2] [00] +17:44:30 [ 70] [ 3] [301] +17:44:30 ============================================================================ +17:44:30 Calculate Source COMM Id = 2 +17:44:30 ============================================================================ +17:44:30 + + +waiting on router queue for slot.... +17:44:35 ============================================================================ +17:44:35 Slot Id : <481> +17:44:35 Transaction Type : REQUEST +17:44:35 Received From : +17:44:35 ============================================================================ +17:44:35 FNo. Len. Field Value +17:44:35 ============================================================================ +17:44:35 [ 1] [ 4] [0200] +17:44:35 [ 2] [ 16] [6213544001555926] +17:44:35 [ 3] [ 6] [011000] +17:44:35 [ 4] [ 12] [000020000000] +17:44:35 [ 7] [ 10] [0320174455] +17:44:35 [ 11] [ 6] [209808] +17:44:35 [ 12] [ 6] [174001] +17:44:35 [ 13] [ 4] [0320] +17:44:35 [ 14] [ 4] [4912] +17:44:35 [ 15] [ 4] [0320] +17:44:35 [ 18] [ 4] [6011] +17:44:35 [ 19] [ 3] [418] +17:44:35 [ 22] [ 3] [021] +17:44:35 [ 25] [ 2] [01] +17:44:35 [ 28] [ 9] [D00002000] +17:44:35 [ 32] [ 6] [198901] +17:44:35 [ 35] [ 32] [6213544001555926=491212015592349] +17:44:35 [ 37] [ 12] [507917209808] +17:44:35 [ 41] [ 8] [19529001] +17:44:35 [ 42] [ 15] [000000041952901] +17:44:35 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:44:35 [ 49] [ 3] [418] +17:44:35 [ 52] [ 16] [C323E4DBDEF5F958] +17:44:35 ============================================================================ +17:44:35 + + +waiting on router queue for slot.... +17:44:35 Sending to : +17:44:35 ============================================================================ +17:44:35 Sending to : +17:44:35 ============================================================================ +17:44:35 ============================================================================ +17:44:35 Slot Id : <481> +17:44:35 Transaction Type : REQUEST +17:44:35 Received From : +17:44:35 ============================================================================ +17:44:35 FNo. Len. Field Value +17:44:35 ============================================================================ +17:44:35 [ 1] [ 4] [0200] +17:44:35 [ 2] [ 16] [6213544001555926] +17:44:35 [ 3] [ 6] [011000] +17:44:35 [ 4] [ 12] [000020000000] +17:44:35 [ 7] [ 10] [0320174455] +17:44:35 [ 11] [ 6] [209808] +17:44:35 [ 12] [ 6] [174001] +17:44:35 [ 13] [ 4] [0320] +17:44:35 [ 14] [ 4] [4912] +17:44:35 [ 15] [ 4] [0320] +17:44:35 [ 18] [ 4] [6011] +17:44:35 [ 19] [ 3] [418] +17:44:35 [ 22] [ 3] [021] +17:44:35 [ 25] [ 2] [01] +17:44:35 [ 28] [ 9] [D00002000] +17:44:35 [ 32] [ 6] [198901] +17:44:35 [ 35] [ 32] [6213544001555926=491212015592349] +17:44:35 [ 37] [ 12] [507917209808] +17:44:35 [ 41] [ 8] [19529001] +17:44:35 [ 42] [ 15] [000000041952901] +17:44:35 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:44:35 [ 49] [ 3] [418] +17:44:35 [ 52] [ 16] [C323E4DBDEF5F958] +17:44:35 ============================================================================ +17:44:35 + + +waiting on router queue for slot.... +17:44:35 Sending to : +17:44:35 ============================================================================ +17:44:35 ============================================================================ +17:44:35 Slot Id : <481> +17:44:35 Transaction Type : REQUEST +17:44:35 Received From : +17:44:35 ============================================================================ +17:44:35 FNo. Len. Field Value +17:44:35 ============================================================================ +17:44:35 [ 1] [ 4] [0200] +17:44:35 [ 2] [ 16] [6213544001555926] +17:44:35 [ 3] [ 6] [011000] +17:44:35 [ 4] [ 12] [000020000000] +17:44:35 [ 7] [ 10] [0320174455] +17:44:35 [ 11] [ 6] [209808] +17:44:35 [ 12] [ 6] [174001] +17:44:35 [ 13] [ 4] [0320] +17:44:35 [ 14] [ 4] [4912] +17:44:35 [ 15] [ 4] [0320] +17:44:35 [ 18] [ 4] [6011] +17:44:35 [ 19] [ 3] [418] +17:44:35 [ 22] [ 3] [021] +17:44:35 [ 25] [ 2] [01] +17:44:35 [ 28] [ 9] [D00002000] +17:44:35 [ 32] [ 6] [198901] +17:44:35 [ 35] [ 32] [6213544001555926=491212015592349] +17:44:35 [ 37] [ 12] [507917209808] +17:44:35 [ 41] [ 8] [19529001] +17:44:35 [ 42] [ 15] [000000041952901] +17:44:35 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:44:35 [ 49] [ 3] [418] +17:44:35 [ 52] [ 16] [0E7B167CBA1BC83C] +17:44:35 ============================================================================ +17:44:35 + + +waiting on router queue for slot.... +17:44:35 Sending to : <0> +17:44:35 ============================================================================ +17:44:36 ============================================================================ +17:44:36 Slot Id : <481> +17:44:36 Transaction Type : RESPONSE +17:44:36 Received From : +17:44:36 ============================================================================ +17:44:36 FNo. Len. Field Value +17:44:36 ============================================================================ +17:44:36 [ 1] [ 4] [0210] +17:44:36 [ 2] [ 16] [6213544001555926] +17:44:36 [ 3] [ 6] [011000] +17:44:36 [ 4] [ 12] [000020000000] +17:44:36 [ 7] [ 10] [0320174455] +17:44:36 [ 11] [ 6] [209808] +17:44:36 [ 12] [ 6] [174001] +17:44:36 [ 13] [ 4] [0320] +17:44:36 [ 15] [ 4] [0320] +17:44:36 [ 18] [ 4] [6011] +17:44:36 [ 19] [ 3] [418] +17:44:36 [ 32] [ 6] [198901] +17:44:36 [ 35] [ 32] [6213544001555926=491212015592349] +17:44:36 [ 37] [ 12] [507917209808] +17:44:36 [ 38] [ 6] [590405] +17:44:36 [ 39] [ 2] [00] +17:44:36 [ 41] [ 8] [19529001] +17:44:36 [ 49] [ 3] [418] +17:44:36 [ 54] [ 40] [1001418C0000310088721002418C000031008872] +17:44:36 ============================================================================ +17:44:36 Sending to : +17:44:36 ============================================================================ +17:44:36 + + +waiting on router queue for slot.... +17:44:37 ============================================================================ +17:44:37 Slot Id : <481> +17:44:37 Transaction Type : RESPONSE +17:44:37 Received From : +17:44:37 ============================================================================ +17:44:37 FNo. Len. Field Value +17:44:37 ============================================================================ +17:44:37 [ 1] [ 4] [0210] +17:44:37 [ 2] [ 16] [6213544001555926] +17:44:37 [ 3] [ 6] [011000] +17:44:37 [ 4] [ 12] [000020000000] +17:44:37 [ 7] [ 10] [0320174455] +17:44:37 [ 11] [ 6] [209808] +17:44:37 [ 12] [ 6] [174001] +17:44:37 [ 13] [ 4] [0320] +17:44:37 [ 15] [ 4] [0320] +17:44:37 [ 18] [ 4] [6011] +17:44:37 [ 19] [ 3] [418] +17:44:37 [ 32] [ 6] [198901] +17:44:37 [ 35] [ 32] [6213544001555926=491212015592349] +17:44:37 [ 37] [ 12] [507917209808] +17:44:37 [ 38] [ 6] [590405] +17:44:37 [ 39] [ 2] [00] +17:44:37 [ 41] [ 8] [19529001] +17:44:37 [ 49] [ 3] [418] +17:44:37 [ 54] [ 40] [1001418C0000310088721002418C000031008872] +17:44:37 ============================================================================ +17:44:37 Calculate Source COMM Id = 5 +17:44:37 ============================================================================ +17:44:37 + + +waiting on router queue for slot.... +17:44:41 ============================================================================ +17:44:41 Slot Id : <23> +17:44:41 Transaction Type : REQUEST +17:44:41 Received From : +17:44:41 ============================================================================ +17:44:41 FNo. Len. Field Value +17:44:41 ============================================================================ +17:44:41 [ 1] [ 4] [0800] +17:44:41 [ 7] [ 10] [0320104348] +17:44:41 [ 11] [ 6] [157534] +17:44:41 [ 70] [ 3] [301] +17:44:41 ============================================================================ +17:44:41 + + +waiting on router queue for slot.... +17:44:41 Sending to : +17:44:41 ============================================================================ +17:44:41 ============================================================================ +17:44:41 Slot Id : <23> +17:44:41 Transaction Type : RESPONSE +17:44:41 Received From : +17:44:41 ============================================================================ +17:44:41 FNo. Len. Field Value +17:44:41 ============================================================================ +17:44:41 [ 1] [ 4] [0810] +17:44:41 [ 7] [ 10] [0320104348] +17:44:41 [ 11] [ 6] [157534] +17:44:41 [ 39] [ 2] [00] +17:44:41 [ 70] [ 3] [301] +17:44:41 ============================================================================ +17:44:41 Calculate Source COMM Id = 2 +17:44:41 ============================================================================ +17:44:41 + + +waiting on router queue for slot.... +17:44:51 ============================================================================ +17:44:51 Slot Id : <31> +17:44:51 Transaction Type : REQUEST +17:44:51 Received From : +17:44:51 ============================================================================ +17:44:51 FNo. Len. Field Value +17:44:51 ============================================================================ +17:44:51 [ 1] [ 4] [0800] +17:44:51 [ 7] [ 10] [0320104358] +17:44:51 [ 11] [ 6] [157535] +17:44:51 [ 70] [ 3] [301] +17:44:51 ============================================================================ +17:44:51 + + +waiting on router queue for slot.... +17:44:51 Sending to : +17:44:51 ============================================================================ +17:44:51 ============================================================================ +17:44:51 Slot Id : <31> +17:44:51 Transaction Type : RESPONSE +17:44:51 Received From : +17:44:51 ============================================================================ +17:44:51 FNo. Len. Field Value +17:44:51 ============================================================================ +17:44:51 [ 1] [ 4] [0810] +17:44:51 [ 7] [ 10] [0320104358] +17:44:51 [ 11] [ 6] [157535] +17:44:51 [ 39] [ 2] [00] +17:44:51 [ 70] [ 3] [301] +17:44:51 ============================================================================ +17:44:51 Calculate Source COMM Id = 2 +17:44:51 ============================================================================ +17:44:51 + + +waiting on router queue for slot.... +17:44:53 ============================================================================ +17:44:53 Slot Id : <35> +17:44:53 Transaction Type : REQUEST +17:44:53 Received From : +17:44:53 ============================================================================ +17:44:53 FNo. Len. Field Value +17:44:53 ============================================================================ +17:44:53 [ 1] [ 4] [0800] +17:44:53 [ 7] [ 10] [0321005640] +17:44:53 [ 11] [ 6] [175640] +17:44:53 [ 37] [ 12] [57917175640] +17:44:53 [ 70] [ 3] [301] +17:44:53 ============================================================================ +17:44:53 + + +waiting on router queue for slot.... +17:44:53 Sending to : +17:44:53 ============================================================================ +17:44:53 ============================================================================ +17:44:53 Slot Id : <35> +17:44:53 Transaction Type : RESPONSE +17:44:53 Received From : +17:44:53 ============================================================================ +17:44:53 FNo. Len. Field Value +17:44:53 ============================================================================ +17:44:53 [ 1] [ 4] [0810] +17:44:53 [ 7] [ 10] [0321005640] +17:44:53 [ 11] [ 6] [175640] +17:44:53 [ 37] [ 12] [579171756400] +17:44:53 [ 39] [ 2] [00] +17:44:53 [ 70] [ 3] [810] +17:44:53 ============================================================================ +17:44:53 Calculate Source COMM Id = 6 +17:44:53 ============================================================================ +17:44:53 + + +waiting on router queue for slot.... +17:44:55 ============================================================================ +17:44:55 Slot Id : <3> +17:44:55 Transaction Type : REQUEST +17:44:55 Received From : +17:44:55 ============================================================================ +17:44:55 FNo. Len. Field Value +17:44:55 ============================================================================ +17:44:55 [ 1] [ 4] [0800] +17:44:55 [ 7] [ 10] [0320105242] +17:44:55 [ 11] [ 6] [090370] +17:44:55 [ 37] [ 12] [57917090370] +17:44:55 [ 70] [ 3] [301] +17:44:55 ============================================================================ +17:44:55 + + +waiting on router queue for slot.... +17:44:55 Sending to : +17:44:55 ============================================================================ +17:44:55 ============================================================================ +17:44:55 Slot Id : <3> +17:44:55 Transaction Type : RESPONSE +17:44:55 Received From : +17:44:55 ============================================================================ +17:44:55 FNo. Len. Field Value +17:44:55 ============================================================================ +17:44:55 [ 1] [ 4] [0810] +17:44:55 [ 7] [ 10] [0320105242] +17:44:55 [ 11] [ 6] [090370] +17:44:55 [ 37] [ 12] [579170903700] +17:44:55 [ 39] [ 2] [00] +17:44:55 [ 70] [ 3] [810] +17:44:55 ============================================================================ +17:44:55 Calculate Source COMM Id = 1 +17:44:55 ============================================================================ +17:44:55 + + +waiting on router queue for slot.... +17:44:55 ============================================================================ +17:44:55 Slot Id : <11> +17:44:55 Transaction Type : REQUEST +17:44:55 Received From : +17:44:55 ============================================================================ +17:44:55 FNo. Len. Field Value +17:44:55 ============================================================================ +17:44:55 [ 1] [ 4] [0200] +17:44:55 [ 2] [ 16] [6213544001144887] +17:44:55 [ 3] [ 6] [011000] +17:44:55 [ 4] [ 12] [000030000000] +17:44:55 [ 7] [ 10] [0320175242] +17:44:55 [ 11] [ 6] [010439] +17:44:55 [ 12] [ 6] [175242] +17:44:55 [ 13] [ 4] [0320] +17:44:55 [ 14] [ 4] [4912] +17:44:55 [ 15] [ 4] [0320] +17:44:55 [ 18] [ 4] [6011] +17:44:55 [ 22] [ 3] [900] +17:44:55 [ 25] [ 2] [02] +17:44:55 [ 28] [ 9] [D00002000] +17:44:55 [ 32] [ 6] [220699] +17:44:55 [ 35] [ 32] [6213544001144887=491212014488645] +17:44:55 [ 37] [ 12] [507900220665] +17:44:55 [ 41] [ 8] [05000200] +17:44:55 [ 42] [ 15] [APTRA ] +17:44:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:44:55 [ 49] [ 3] [418] +17:44:55 [ 52] [ 16] [80AAC03F98465DA7] +17:44:55 ============================================================================ +17:44:55 + + +waiting on router queue for slot.... +17:44:55 Sending to : +17:44:55 ============================================================================ +17:44:55 Sending to : +17:44:55 ============================================================================ +17:44:56 ============================================================================ +17:44:56 Slot Id : <11> +17:44:56 Transaction Type : REQUEST +17:44:56 Received From : +17:44:56 ============================================================================ +17:44:56 FNo. Len. Field Value +17:44:56 ============================================================================ +17:44:56 [ 1] [ 4] [0200] +17:44:56 [ 2] [ 16] [6213544001144887] +17:44:56 [ 3] [ 6] [011000] +17:44:56 [ 4] [ 12] [000030000000] +17:44:56 [ 7] [ 10] [0320175242] +17:44:56 [ 11] [ 6] [010439] +17:44:56 [ 12] [ 6] [175242] +17:44:56 [ 13] [ 4] [0320] +17:44:56 [ 14] [ 4] [4912] +17:44:56 [ 15] [ 4] [0320] +17:44:56 [ 18] [ 4] [6011] +17:44:56 [ 22] [ 3] [900] +17:44:56 [ 25] [ 2] [02] +17:44:56 [ 28] [ 9] [D00002000] +17:44:56 [ 32] [ 6] [220699] +17:44:56 [ 35] [ 32] [6213544001144887=491212014488645] +17:44:56 [ 37] [ 12] [507900220665] +17:44:56 [ 41] [ 8] [05000200] +17:44:56 [ 42] [ 15] [APTRA ] +17:44:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:44:56 [ 49] [ 3] [418] +17:44:56 [ 52] [ 16] [80AAC03F98465DA7] +17:44:56 ============================================================================ +17:44:56 + + +waiting on router queue for slot.... +17:44:56 Sending to : +17:44:56 ============================================================================ +17:44:56 ============================================================================ +17:44:56 Slot Id : <11> +17:44:56 Transaction Type : REQUEST +17:44:56 Received From : +17:44:56 ============================================================================ +17:44:56 FNo. Len. Field Value +17:44:56 ============================================================================ +17:44:56 [ 1] [ 4] [0200] +17:44:56 [ 2] [ 16] [6213544001144887] +17:44:56 [ 3] [ 6] [011000] +17:44:56 [ 4] [ 12] [000030000000] +17:44:56 [ 7] [ 10] [0320175242] +17:44:56 [ 11] [ 6] [010439] +17:44:56 [ 12] [ 6] [175242] +17:44:56 [ 13] [ 4] [0320] +17:44:56 [ 14] [ 4] [4912] +17:44:56 [ 15] [ 4] [0320] +17:44:56 [ 18] [ 4] [6011] +17:44:56 [ 22] [ 3] [900] +17:44:56 [ 25] [ 2] [02] +17:44:56 [ 28] [ 9] [D00002000] +17:44:56 [ 32] [ 6] [220699] +17:44:56 [ 35] [ 32] [6213544001144887=491212014488645] +17:44:56 [ 37] [ 12] [507900220665] +17:44:56 [ 41] [ 8] [05000200] +17:44:56 [ 42] [ 15] [APTRA ] +17:44:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:44:56 [ 49] [ 3] [418] +17:44:56 [ 52] [ 16] [7009CC3966E0B4EC] +17:44:56 ============================================================================ +17:44:56 + + +waiting on router queue for slot.... +17:44:56 Sending to : <0> +17:44:56 ============================================================================ +17:44:56 ============================================================================ +17:44:56 Slot Id : <11> +17:44:56 Transaction Type : RESPONSE +17:44:56 Received From : +17:44:56 ============================================================================ +17:44:56 FNo. Len. Field Value +17:44:56 ============================================================================ +17:44:56 [ 1] [ 4] [0210] +17:44:56 [ 2] [ 16] [6213544001144887] +17:44:56 [ 3] [ 6] [011000] +17:44:56 [ 4] [ 12] [000030000000] +17:44:56 [ 7] [ 10] [0320175242] +17:44:56 [ 11] [ 6] [010439] +17:44:56 [ 12] [ 6] [175242] +17:44:56 [ 13] [ 4] [0320] +17:44:56 [ 15] [ 4] [0320] +17:44:56 [ 18] [ 4] [6011] +17:44:56 [ 32] [ 6] [220699] +17:44:56 [ 35] [ 32] [6213544001144887=491212014488645] +17:44:56 [ 37] [ 12] [507900220665] +17:44:56 [ 38] [ 6] [018877] +17:44:56 [ 39] [ 2] [00] +17:44:56 [ 41] [ 8] [05000200] +17:44:56 [ 49] [ 3] [418] +17:44:56 [ 54] [ 40] [1001418C0006090735251002418C000609073525] +17:44:56 ============================================================================ +17:44:56 Sending to : +17:44:56 ============================================================================ +17:44:56 + + +waiting on router queue for slot.... +17:44:58 ============================================================================ +17:44:58 Slot Id : <11> +17:44:58 Transaction Type : RESPONSE +17:44:58 Received From : +17:44:58 ============================================================================ +17:44:58 FNo. Len. Field Value +17:44:58 ============================================================================ +17:44:58 [ 1] [ 4] [0210] +17:44:58 [ 2] [ 16] [6213544001144887] +17:44:58 [ 3] [ 6] [011000] +17:44:58 [ 4] [ 12] [000030000000] +17:44:58 [ 7] [ 10] [0320175242] +17:44:58 [ 11] [ 6] [010439] +17:44:58 [ 12] [ 6] [175242] +17:44:58 [ 13] [ 4] [0320] +17:44:58 [ 15] [ 4] [0320] +17:44:58 [ 18] [ 4] [6011] +17:44:58 [ 32] [ 6] [220699] +17:44:58 [ 35] [ 32] [6213544001144887=491212014488645] +17:44:58 [ 37] [ 12] [507900220665] +17:44:58 [ 38] [ 6] [018877] +17:44:58 [ 39] [ 2] [00] +17:44:58 [ 41] [ 8] [05000200] +17:44:58 [ 49] [ 3] [418] +17:44:58 [ 54] [ 40] [1001418C0006090735251002418C000609073525] +17:44:58 ============================================================================ +17:44:58 Calculate Source COMM Id = 1 +17:44:58 ============================================================================ +17:44:58 + + +waiting on router queue for slot.... +17:44:59 ============================================================================ +17:44:59 Slot Id : <496> +17:44:59 Transaction Type : REQUEST +17:44:59 Received From : +17:44:59 ============================================================================ +17:44:59 FNo. Len. Field Value +17:44:59 ============================================================================ +17:44:59 [ 1] [ 4] [0800] +17:44:59 [ 2] [ 5] [02531] +17:44:59 [ 3] [ 6] [579178] +17:44:59 [ 7] [ 10] [0320104459] +17:44:59 [ 11] [ 6] [807442] +17:44:59 [ 15] [ 10] [0320104459] +17:44:59 [ 37] [ 11] [57917807442] +17:44:59 [ 70] [ 3] [001] +17:44:59 ============================================================================ +17:44:59 + + +waiting on router queue for slot.... +17:44:59 ============================================================================ +17:44:59 Slot Id : <496> +17:44:59 Transaction Type : RESPONSE +17:44:59 Received From : +17:44:59 ============================================================================ +17:44:59 FNo. Len. Field Value +17:44:59 ============================================================================ +17:44:59 [ 1] [ 4] [0810] +17:44:59 [ 7] [ 10] [0320104459] +17:44:59 [ 11] [ 6] [807442] +17:44:59 [ 15] [ 4] [0320] +17:44:59 [ 37] [ 12] [57917807442] +17:44:59 [ 39] [ 2] [00] +17:44:59 [ 70] [ 3] [001] +17:44:59 ============================================================================ +17:44:59 Sending to : +17:44:59 ============================================================================ +17:44:59 + + +waiting on router queue for slot.... +17:45:02 ============================================================================ +17:45:02 Slot Id : <33> +17:45:02 Transaction Type : REQUEST +17:45:02 Received From : +17:45:02 ============================================================================ +17:45:02 FNo. Len. Field Value +17:45:02 ============================================================================ +17:45:02 [ 1] [ 4] [0800] +17:45:02 [ 7] [ 10] [0320104409] +17:45:02 [ 11] [ 6] [157536] +17:45:02 [ 70] [ 3] [301] +17:45:02 ============================================================================ +17:45:02 + + +waiting on router queue for slot.... +17:45:02 Sending to : +17:45:02 ============================================================================ +17:45:02 ============================================================================ +17:45:02 Slot Id : <33> +17:45:02 Transaction Type : RESPONSE +17:45:02 Received From : +17:45:02 ============================================================================ +17:45:02 FNo. Len. Field Value +17:45:02 ============================================================================ +17:45:02 [ 1] [ 4] [0810] +17:45:02 [ 7] [ 10] [0320104409] +17:45:02 [ 11] [ 6] [157536] +17:45:02 [ 39] [ 2] [00] +17:45:02 [ 70] [ 3] [301] +17:45:02 ============================================================================ +17:45:02 Calculate Source COMM Id = 2 +17:45:02 ============================================================================ +17:45:02 + + +waiting on router queue for slot.... +17:45:04 ============================================================================ +17:45:04 Slot Id : <30> +17:45:04 Transaction Type : REQUEST +17:45:04 Received From : +17:45:04 ============================================================================ +17:45:04 FNo. Len. Field Value +17:45:04 ============================================================================ +17:45:04 [ 1] [ 4] [0200] +17:45:04 [ 2] [ 16] [6213544000282522] +17:45:04 [ 3] [ 6] [011000] +17:45:04 [ 4] [ 12] [000100000000] +17:45:04 [ 7] [ 10] [0320175251] +17:45:04 [ 11] [ 6] [259332] +17:45:04 [ 12] [ 6] [175251] +17:45:04 [ 13] [ 4] [0320] +17:45:04 [ 14] [ 4] [4912] +17:45:04 [ 15] [ 4] [0320] +17:45:04 [ 18] [ 4] [6011] +17:45:04 [ 22] [ 3] [900] +17:45:04 [ 25] [ 2] [02] +17:45:04 [ 28] [ 9] [D00002000] +17:45:04 [ 32] [ 6] [220699] +17:45:04 [ 35] [ 32] [6213544000282522=491212018252648] +17:45:04 [ 37] [ 12] [507900040649] +17:45:04 [ 41] [ 8] [01000400] +17:45:04 [ 42] [ 15] [APTRA ] +17:45:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:45:04 [ 49] [ 3] [418] +17:45:04 [ 52] [ 16] [D0B8E4C505713A81] +17:45:04 ============================================================================ +17:45:04 + + +waiting on router queue for slot.... +17:45:04 Sending to : +17:45:04 ============================================================================ +17:45:04 Sending to : +17:45:04 ============================================================================ +17:45:05 ============================================================================ +17:45:05 Slot Id : <21> +17:45:05 Transaction Type : REQUEST +17:45:05 Received From : +17:45:05 ============================================================================ +17:45:05 FNo. Len. Field Value +17:45:05 ============================================================================ +17:45:05 [ 1] [ 4] [0200] +17:45:05 [ 2] [ 16] [6213541000356363] +17:45:05 [ 3] [ 6] [301000] +17:45:05 [ 7] [ 10] [0320104410] +17:45:05 [ 11] [ 6] [270963] +17:45:05 [ 12] [ 6] [174410] +17:45:05 [ 13] [ 4] [0320] +17:45:05 [ 14] [ 4] [4912] +17:45:05 [ 15] [ 4] [0320] +17:45:05 [ 18] [ 4] [6011] +17:45:05 [ 19] [ 3] [418] +17:45:05 [ 22] [ 3] [021] +17:45:05 [ 25] [ 2] [01] +17:45:05 [ 32] [ 6] [180893] +17:45:05 [ 35] [ 32] [6213541000356363=491212015636625] +17:45:05 [ 37] [ 12] [507910270963] +17:45:05 [ 41] [ 8] [0106NAXA] +17:45:05 [ 42] [ 15] [999999 ] +17:45:05 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +17:45:05 [ 49] [ 3] [418] +17:45:05 [ 52] [ 16] [83478B67AA0DA8A9] +17:45:05 ============================================================================ +17:45:05 + + +waiting on router queue for slot.... +17:45:05 Sending to : +17:45:05 ============================================================================ +17:45:05 Sending to : +17:45:05 ============================================================================ +17:45:05 ============================================================================ +17:45:05 Slot Id : <30> +17:45:05 Transaction Type : REQUEST +17:45:05 Received From : +17:45:05 ============================================================================ +17:45:05 FNo. Len. Field Value +17:45:05 ============================================================================ +17:45:05 [ 1] [ 4] [0200] +17:45:05 [ 2] [ 16] [6213544000282522] +17:45:05 [ 3] [ 6] [011000] +17:45:05 [ 4] [ 12] [000100000000] +17:45:05 [ 7] [ 10] [0320175251] +17:45:05 [ 11] [ 6] [259332] +17:45:05 [ 12] [ 6] [175251] +17:45:05 [ 13] [ 4] [0320] +17:45:05 [ 14] [ 4] [4912] +17:45:05 [ 15] [ 4] [0320] +17:45:05 [ 18] [ 4] [6011] +17:45:05 [ 22] [ 3] [900] +17:45:05 [ 25] [ 2] [02] +17:45:05 [ 28] [ 9] [D00002000] +17:45:05 [ 32] [ 6] [220699] +17:45:05 [ 35] [ 32] [6213544000282522=491212018252648] +17:45:05 [ 37] [ 12] [507900040649] +17:45:05 [ 41] [ 8] [01000400] +17:45:05 [ 42] [ 15] [APTRA ] +17:45:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:45:05 [ 49] [ 3] [418] +17:45:05 [ 52] [ 16] [D0B8E4C505713A81] +17:45:05 ============================================================================ +17:45:05 + + +waiting on router queue for slot.... +17:45:05 Sending to : +17:45:05 ============================================================================ +17:45:05 ============================================================================ +17:45:05 Slot Id : <30> +17:45:05 Transaction Type : REQUEST +17:45:05 Received From : +17:45:05 ============================================================================ +17:45:05 FNo. Len. Field Value +17:45:05 ============================================================================ +17:45:05 [ 1] [ 4] [0200] +17:45:05 [ 2] [ 16] [6213544000282522] +17:45:05 [ 3] [ 6] [011000] +17:45:05 [ 4] [ 12] [000100000000] +17:45:05 [ 7] [ 10] [0320175251] +17:45:05 [ 11] [ 6] [259332] +17:45:05 [ 12] [ 6] [175251] +17:45:05 [ 13] [ 4] [0320] +17:45:05 [ 14] [ 4] [4912] +17:45:05 [ 15] [ 4] [0320] +17:45:05 [ 18] [ 4] [6011] +17:45:05 [ 22] [ 3] [900] +17:45:05 [ 25] [ 2] [02] +17:45:05 [ 28] [ 9] [D00002000] +17:45:05 [ 32] [ 6] [220699] +17:45:05 [ 35] [ 32] [6213544000282522=491212018252648] +17:45:05 [ 37] [ 12] [507900040649] +17:45:05 [ 41] [ 8] [01000400] +17:45:05 [ 42] [ 15] [APTRA ] +17:45:05 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:45:05 [ 49] [ 3] [418] +17:45:05 [ 52] [ 16] [ACF5D648A904ED5D] +17:45:05 ============================================================================ +17:45:05 + + +waiting on router queue for slot.... +17:45:05 Sending to : <0> +17:45:05 ============================================================================ +17:45:05 ============================================================================ +17:45:05 Slot Id : <21> +17:45:05 Transaction Type : REQUEST +17:45:05 Received From : +17:45:05 ============================================================================ +17:45:05 FNo. Len. Field Value +17:45:05 ============================================================================ +17:45:05 [ 1] [ 4] [0200] +17:45:05 [ 2] [ 16] [6213541000356363] +17:45:05 [ 3] [ 6] [301000] +17:45:05 [ 7] [ 10] [0320104410] +17:45:05 [ 11] [ 6] [270963] +17:45:05 [ 12] [ 6] [174410] +17:45:05 [ 13] [ 4] [0320] +17:45:05 [ 14] [ 4] [4912] +17:45:05 [ 15] [ 4] [0320] +17:45:05 [ 18] [ 4] [6011] +17:45:05 [ 19] [ 3] [418] +17:45:05 [ 22] [ 3] [021] +17:45:05 [ 25] [ 2] [01] +17:45:05 [ 32] [ 6] [180893] +17:45:05 [ 35] [ 32] [6213541000356363=491212015636625] +17:45:05 [ 37] [ 12] [507910270963] +17:45:05 [ 41] [ 8] [0106NAXA] +17:45:05 [ 42] [ 15] [999999 ] +17:45:05 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +17:45:05 [ 49] [ 3] [418] +17:45:05 [ 52] [ 16] [83478B67AA0DA8A9] +17:45:05 ============================================================================ +17:45:05 + + +waiting on router queue for slot.... +17:45:05 Sending to : +17:45:05 ============================================================================ +17:45:05 ============================================================================ +17:45:05 Slot Id : <21> +17:45:05 Transaction Type : REQUEST +17:45:05 Received From : +17:45:05 ============================================================================ +17:45:05 FNo. Len. Field Value +17:45:05 ============================================================================ +17:45:05 [ 1] [ 4] [0200] +17:45:05 [ 2] [ 16] [6213541000356363] +17:45:05 [ 3] [ 6] [301000] +17:45:05 [ 7] [ 10] [0320104410] +17:45:05 [ 11] [ 6] [270963] +17:45:05 [ 12] [ 6] [174410] +17:45:05 [ 13] [ 4] [0320] +17:45:05 [ 14] [ 4] [4912] +17:45:05 [ 15] [ 4] [0320] +17:45:05 [ 18] [ 4] [6011] +17:45:05 [ 19] [ 3] [418] +17:45:05 [ 22] [ 3] [021] +17:45:05 [ 25] [ 2] [01] +17:45:05 [ 32] [ 6] [180893] +17:45:05 [ 35] [ 32] [6213541000356363=491212015636625] +17:45:05 [ 37] [ 12] [507910270963] +17:45:05 [ 41] [ 8] [0106NAXA] +17:45:05 [ 42] [ 15] [999999 ] +17:45:05 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +17:45:05 [ 49] [ 3] [418] +17:45:05 [ 52] [ 16] [ECE584C83A73038F] +17:45:05 ============================================================================ +17:45:05 + + +waiting on router queue for slot.... +17:45:05 Sending to : <0> +17:45:05 ============================================================================ +17:45:05 ============================================================================ +17:45:05 Slot Id : <21> +17:45:05 Transaction Type : RESPONSE +17:45:05 Received From : +17:45:05 ============================================================================ +17:45:05 FNo. Len. Field Value +17:45:05 ============================================================================ +17:45:05 [ 1] [ 4] [0210] +17:45:05 [ 2] [ 16] [6213541000356363] +17:45:05 [ 3] [ 6] [301000] +17:45:05 [ 4] [ 12] [000000000000] +17:45:05 [ 7] [ 10] [0320104410] +17:45:05 [ 11] [ 6] [270963] +17:45:05 [ 12] [ 6] [174410] +17:45:05 [ 13] [ 4] [0320] +17:45:05 [ 15] [ 4] [0320] +17:45:05 [ 18] [ 4] [6011] +17:45:05 [ 19] [ 3] [418] +17:45:05 [ 32] [ 6] [180893] +17:45:05 [ 35] [ 32] [6213541000356363=491212015636625] +17:45:05 [ 37] [ 12] [507910270963] +17:45:05 [ 38] [ 6] [345560] +17:45:05 [ 39] [ 2] [00] +17:45:05 [ 41] [ 8] [0106NAXA] +17:45:05 [ 49] [ 3] [418] +17:45:05 [ 54] [ 40] [1001418C0002618979801002418C000261897980] +17:45:05 ============================================================================ +17:45:05 Sending to : +17:45:05 ============================================================================ +17:45:05 + + +waiting on router queue for slot.... +17:45:05 ============================================================================ +17:45:05 Slot Id : <30> +17:45:05 Transaction Type : RESPONSE +17:45:05 Received From : +17:45:05 ============================================================================ +17:45:05 FNo. Len. Field Value +17:45:05 ============================================================================ +17:45:05 [ 1] [ 4] [0210] +17:45:05 [ 2] [ 16] [6213544000282522] +17:45:05 [ 3] [ 6] [011000] +17:45:05 [ 4] [ 12] [000100000000] +17:45:05 [ 7] [ 10] [0320175251] +17:45:05 [ 11] [ 6] [259332] +17:45:05 [ 12] [ 6] [175251] +17:45:05 [ 13] [ 4] [0320] +17:45:05 [ 15] [ 4] [0320] +17:45:05 [ 18] [ 4] [6011] +17:45:05 [ 32] [ 6] [220699] +17:45:05 [ 35] [ 32] [6213544000282522=491212018252648] +17:45:05 [ 37] [ 12] [507900040649] +17:45:05 [ 38] [ 6] [060374] +17:45:05 [ 39] [ 2] [00] +17:45:05 [ 41] [ 8] [01000400] +17:45:05 [ 49] [ 3] [418] +17:45:05 [ 54] [ 40] [1001418C0004081330251002418C000408133025] +17:45:05 ============================================================================ +17:45:05 Sending to : +17:45:05 ============================================================================ +17:45:05 + + +waiting on router queue for slot.... +17:45:07 ============================================================================ +17:45:07 Slot Id : <21> +17:45:07 Transaction Type : RESPONSE +17:45:07 Received From : +17:45:07 ============================================================================ +17:45:07 FNo. Len. Field Value +17:45:07 ============================================================================ +17:45:07 [ 1] [ 4] [0210] +17:45:07 [ 2] [ 16] [6213541000356363] +17:45:07 [ 3] [ 6] [301000] +17:45:07 [ 4] [ 12] [000000000000] +17:45:07 [ 7] [ 10] [0320104410] +17:45:07 [ 11] [ 6] [270963] +17:45:07 [ 12] [ 6] [174410] +17:45:07 [ 13] [ 4] [0320] +17:45:07 [ 15] [ 4] [0320] +17:45:07 [ 18] [ 4] [6011] +17:45:07 [ 19] [ 3] [418] +17:45:07 [ 32] [ 6] [180893] +17:45:07 [ 35] [ 32] [6213541000356363=491212015636625] +17:45:07 [ 37] [ 12] [507910270963] +17:45:07 [ 38] [ 6] [345560] +17:45:07 [ 39] [ 2] [00] +17:45:07 [ 41] [ 8] [0106NAXA] +17:45:07 [ 49] [ 3] [418] +17:45:07 [ 54] [ 40] [1001418C0002618979801002418C000261897980] +17:45:07 ============================================================================ +17:45:07 Calculate Source COMM Id = 2 +17:45:07 ============================================================================ +17:45:07 + + +waiting on router queue for slot.... +17:45:08 ============================================================================ +17:45:08 Slot Id : <30> +17:45:08 Transaction Type : RESPONSE +17:45:08 Received From : +17:45:08 ============================================================================ +17:45:08 FNo. Len. Field Value +17:45:08 ============================================================================ +17:45:08 [ 1] [ 4] [0210] +17:45:08 [ 2] [ 16] [6213544000282522] +17:45:08 [ 3] [ 6] [011000] +17:45:08 [ 4] [ 12] [000100000000] +17:45:08 [ 7] [ 10] [0320175251] +17:45:08 [ 11] [ 6] [259332] +17:45:08 [ 12] [ 6] [175251] +17:45:08 [ 13] [ 4] [0320] +17:45:08 [ 15] [ 4] [0320] +17:45:08 [ 18] [ 4] [6011] +17:45:08 [ 32] [ 6] [220699] +17:45:08 [ 35] [ 32] [6213544000282522=491212018252648] +17:45:08 [ 37] [ 12] [507900040649] +17:45:08 [ 38] [ 6] [060374] +17:45:08 [ 39] [ 2] [00] +17:45:08 [ 41] [ 8] [01000400] +17:45:08 [ 49] [ 3] [418] +17:45:08 [ 54] [ 40] [1001418C0004081330251002418C000408133025] +17:45:08 ============================================================================ +17:45:08 Calculate Source COMM Id = 1 +17:45:08 ============================================================================ +17:45:08 + + +waiting on router queue for slot.... +17:45:12 ============================================================================ +17:45:12 Slot Id : <461> +17:45:12 Transaction Type : REQUEST +17:45:12 Received From : +17:45:12 ============================================================================ +17:45:12 FNo. Len. Field Value +17:45:12 ============================================================================ +17:45:12 [ 1] [ 4] [0200] +17:45:12 [ 2] [ 16] [1808930200049179] +17:45:12 [ 3] [ 6] [301000] +17:45:12 [ 4] [ 12] [000000000000] +17:45:12 [ 7] [ 10] [0320174507] +17:45:12 [ 11] [ 6] [819507] +17:45:12 [ 12] [ 6] [174507] +17:45:12 [ 13] [ 4] [0320] +17:45:12 [ 15] [ 4] [0320] +17:45:12 [ 18] [ 4] [6011] +17:45:12 [ 22] [ 3] [900] +17:45:12 [ 25] [ 2] [02] +17:45:12 [ 28] [ 9] [D00000000] +17:45:12 [ 32] [ 6] [621354] +17:45:12 [ 35] [ 27] [1808930200049179=1803500735] +17:45:12 [ 37] [ 12] [507903863724] +17:45:12 [ 41] [ 8] [01010200] +17:45:12 [ 42] [ 15] [NATIVE ] +17:45:12 [ 43] [ 40] [Thangone Market Xaythany LAO] +17:45:12 [ 49] [ 3] [418] +17:45:12 [ 52] [ 16] [CDF83498A5B93EC5] +17:45:12 ============================================================================ +17:45:12 + + +waiting on router queue for slot.... +17:45:12 Sending to : +17:45:12 ============================================================================ +17:45:12 Sending to : +17:45:12 ============================================================================ +17:45:12 ============================================================================ +17:45:12 Slot Id : <37> +17:45:12 Transaction Type : REQUEST +17:45:12 Received From : +17:45:12 ============================================================================ +17:45:12 FNo. Len. Field Value +17:45:12 ============================================================================ +17:45:12 [ 1] [ 4] [0200] +17:45:12 [ 2] [ 16] [1999990000015159] +17:45:12 [ 3] [ 6] [013000] +17:45:12 [ 4] [ 12] [000100000000] +17:45:12 [ 7] [ 10] [0320174507] +17:45:12 [ 11] [ 6] [819508] +17:45:12 [ 12] [ 6] [174507] +17:45:12 [ 13] [ 4] [0320] +17:45:12 [ 15] [ 4] [0320] +17:45:12 [ 18] [ 4] [6011] +17:45:12 [ 22] [ 3] [900] +17:45:12 [ 25] [ 2] [02] +17:45:12 [ 28] [ 9] [D00002000] +17:45:12 [ 32] [ 6] [621354] +17:45:12 [ 35] [ 32] [1999990000015159=000010100000765] +17:45:12 [ 37] [ 12] [507902706630] +17:45:12 [ 41] [ 8] [14000900] +17:45:12 [ 42] [ 15] [NATIVE ] +17:45:12 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:45:12 [ 49] [ 3] [418] +17:45:12 [ 52] [ 16] [D220399309D270CB] +17:45:12 ============================================================================ +17:45:12 + + +waiting on router queue for slot.... +17:45:12 Sending to : +17:45:12 ============================================================================ +17:45:12 Sending to : +17:45:12 ============================================================================ +17:45:12 ============================================================================ +17:45:12 Slot Id : <461> +17:45:12 Transaction Type : REQUEST +17:45:12 Received From : +17:45:12 ============================================================================ +17:45:12 FNo. Len. Field Value +17:45:12 ============================================================================ +17:45:12 [ 1] [ 4] [0200] +17:45:12 [ 2] [ 16] [1808930200049179] +17:45:12 [ 3] [ 6] [301000] +17:45:12 [ 4] [ 12] [000000000000] +17:45:12 [ 7] [ 10] [0320174507] +17:45:12 [ 11] [ 6] [819507] +17:45:12 [ 12] [ 6] [174507] +17:45:12 [ 13] [ 4] [0320] +17:45:12 [ 15] [ 4] [0320] +17:45:12 [ 18] [ 4] [6011] +17:45:12 [ 22] [ 3] [900] +17:45:12 [ 25] [ 2] [02] +17:45:12 [ 28] [ 9] [D00000000] +17:45:12 [ 32] [ 6] [621354] +17:45:12 [ 35] [ 27] [1808930200049179=1803500735] +17:45:12 [ 37] [ 12] [507903863724] +17:45:12 [ 41] [ 8] [01010200] +17:45:12 [ 42] [ 15] [NATIVE ] +17:45:12 [ 43] [ 40] [Thangone Market Xaythany LAO] +17:45:12 [ 49] [ 3] [418] +17:45:12 [ 52] [ 16] [CDF83498A5B93EC5] +17:45:12 ============================================================================ +17:45:12 + + +waiting on router queue for slot.... +17:45:12 Sending to : +17:45:12 ============================================================================ +17:45:12 ============================================================================ +17:45:12 Slot Id : <461> +17:45:12 Transaction Type : REQUEST +17:45:12 Received From : +17:45:12 ============================================================================ +17:45:12 FNo. Len. Field Value +17:45:12 ============================================================================ +17:45:12 [ 1] [ 4] [0200] +17:45:12 [ 2] [ 16] [1808930200049179] +17:45:12 [ 3] [ 6] [301000] +17:45:12 [ 4] [ 12] [000000000000] +17:45:12 [ 7] [ 10] [0320174507] +17:45:12 [ 11] [ 6] [819507] +17:45:12 [ 12] [ 6] [174507] +17:45:12 [ 13] [ 4] [0320] +17:45:12 [ 15] [ 4] [0320] +17:45:12 [ 18] [ 4] [6011] +17:45:12 [ 22] [ 3] [900] +17:45:12 [ 25] [ 2] [02] +17:45:12 [ 28] [ 9] [D00000000] +17:45:12 [ 32] [ 6] [621354] +17:45:12 [ 35] [ 27] [1808930200049179=1803500735] +17:45:12 [ 37] [ 12] [507903863724] +17:45:12 [ 41] [ 8] [01010200] +17:45:12 [ 42] [ 15] [NATIVE ] +17:45:12 [ 43] [ 40] [Thangone Market Xaythany LAO] +17:45:12 [ 49] [ 3] [418] +17:45:12 [ 52] [ 16] [0B53D0F4D95E0847] +17:45:12 ============================================================================ +17:45:12 + + +waiting on router queue for slot.... +17:45:12 Sending to : <2> +17:45:12 ============================================================================ +17:45:12 ============================================================================ +17:45:12 Slot Id : <37> +17:45:12 Transaction Type : REQUEST +17:45:12 Received From : +17:45:12 ============================================================================ +17:45:12 FNo. Len. Field Value +17:45:12 ============================================================================ +17:45:12 [ 1] [ 4] [0200] +17:45:12 [ 2] [ 16] [1999990000015159] +17:45:12 [ 3] [ 6] [013000] +17:45:12 [ 4] [ 12] [000100000000] +17:45:12 [ 7] [ 10] [0320174507] +17:45:12 [ 11] [ 6] [819508] +17:45:12 [ 12] [ 6] [174507] +17:45:12 [ 13] [ 4] [0320] +17:45:12 [ 15] [ 4] [0320] +17:45:12 [ 18] [ 4] [6011] +17:45:12 [ 22] [ 3] [900] +17:45:12 [ 25] [ 2] [02] +17:45:12 [ 28] [ 9] [D00002000] +17:45:12 [ 32] [ 6] [621354] +17:45:12 [ 35] [ 32] [1999990000015159=000010100000765] +17:45:12 [ 37] [ 12] [507902706630] +17:45:12 [ 41] [ 8] [14000900] +17:45:12 [ 42] [ 15] [NATIVE ] +17:45:12 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:45:12 [ 49] [ 3] [418] +17:45:12 [ 52] [ 16] [D220399309D270CB] +17:45:12 ============================================================================ +17:45:12 + + +waiting on router queue for slot.... +17:45:12 Sending to : +17:45:12 ============================================================================ +17:45:12 ============================================================================ +17:45:12 Slot Id : <37> +17:45:12 Transaction Type : REQUEST +17:45:12 Received From : +17:45:12 ============================================================================ +17:45:12 FNo. Len. Field Value +17:45:12 ============================================================================ +17:45:12 [ 1] [ 4] [0200] +17:45:12 [ 2] [ 16] [1999990000015159] +17:45:12 [ 3] [ 6] [013000] +17:45:12 [ 4] [ 12] [000100000000] +17:45:12 [ 7] [ 10] [0320174507] +17:45:12 [ 11] [ 6] [819508] +17:45:12 [ 12] [ 6] [174507] +17:45:12 [ 13] [ 4] [0320] +17:45:12 [ 15] [ 4] [0320] +17:45:12 [ 18] [ 4] [6011] +17:45:12 [ 22] [ 3] [900] +17:45:12 [ 25] [ 2] [02] +17:45:12 [ 28] [ 9] [D00002000] +17:45:12 [ 32] [ 6] [621354] +17:45:12 [ 35] [ 32] [1999990000015159=000010100000765] +17:45:12 [ 37] [ 12] [507902706630] +17:45:12 [ 41] [ 8] [14000900] +17:45:12 [ 42] [ 15] [NATIVE ] +17:45:12 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:45:12 [ 49] [ 3] [418] +17:45:12 [ 52] [ 16] [A19B9815F4F66029] +17:45:12 ============================================================================ +17:45:12 + + +waiting on router queue for slot.... +17:45:12 Sending to : <5> +17:45:12 ============================================================================ +17:45:14 ============================================================================ +17:45:14 Slot Id : <9> +17:45:14 Transaction Type : REQUEST +17:45:14 Received From : +17:45:14 ============================================================================ +17:45:14 FNo. Len. Field Value +17:45:14 ============================================================================ +17:45:14 [ 1] [ 4] [0200] +17:45:14 [ 2] [ 16] [6213544002117767] +17:45:14 [ 3] [ 6] [301000] +17:45:14 [ 4] [ 12] [000000000000] +17:45:14 [ 7] [ 10] [0320174535] +17:45:14 [ 11] [ 6] [209816] +17:45:14 [ 12] [ 6] [174040] +17:45:14 [ 13] [ 4] [0320] +17:45:14 [ 14] [ 4] [4912] +17:45:14 [ 15] [ 4] [0320] +17:45:14 [ 18] [ 4] [6011] +17:45:14 [ 19] [ 3] [418] +17:45:14 [ 22] [ 3] [021] +17:45:14 [ 25] [ 2] [01] +17:45:14 [ 28] [ 9] [D00000000] +17:45:14 [ 32] [ 6] [198901] +17:45:14 [ 35] [ 32] [6213544002117767=491212011776477] +17:45:14 [ 37] [ 12] [507917209816] +17:45:14 [ 41] [ 8] [19529001] +17:45:14 [ 42] [ 15] [000000041952901] +17:45:14 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:45:14 [ 49] [ 3] [418] +17:45:14 [ 52] [ 16] [7BD382ABA1D1C462] +17:45:14 ============================================================================ +17:45:14 + + +waiting on router queue for slot.... +17:45:14 Sending to : +17:45:14 ============================================================================ +17:45:14 Sending to : +17:45:14 ============================================================================ +17:45:15 ============================================================================ +17:45:15 Slot Id : <9> +17:45:15 Transaction Type : REQUEST +17:45:15 Received From : +17:45:15 ============================================================================ +17:45:15 FNo. Len. Field Value +17:45:15 ============================================================================ +17:45:15 [ 1] [ 4] [0200] +17:45:15 [ 2] [ 16] [6213544002117767] +17:45:15 [ 3] [ 6] [301000] +17:45:15 [ 4] [ 12] [000000000000] +17:45:15 [ 7] [ 10] [0320174535] +17:45:15 [ 11] [ 6] [209816] +17:45:15 [ 12] [ 6] [174040] +17:45:15 [ 13] [ 4] [0320] +17:45:15 [ 14] [ 4] [4912] +17:45:15 [ 15] [ 4] [0320] +17:45:15 [ 18] [ 4] [6011] +17:45:15 [ 19] [ 3] [418] +17:45:15 [ 22] [ 3] [021] +17:45:15 [ 25] [ 2] [01] +17:45:15 [ 28] [ 9] [D00000000] +17:45:15 [ 32] [ 6] [198901] +17:45:15 [ 35] [ 32] [6213544002117767=491212011776477] +17:45:15 [ 37] [ 12] [507917209816] +17:45:15 [ 41] [ 8] [19529001] +17:45:15 [ 42] [ 15] [000000041952901] +17:45:15 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:45:15 [ 49] [ 3] [418] +17:45:15 [ 52] [ 16] [7BD382ABA1D1C462] +17:45:15 ============================================================================ +17:45:15 + + +waiting on router queue for slot.... +17:45:15 Sending to : +17:45:15 ============================================================================ +17:45:15 ============================================================================ +17:45:15 Slot Id : <9> +17:45:15 Transaction Type : REQUEST +17:45:15 Received From : +17:45:15 ============================================================================ +17:45:15 FNo. Len. Field Value +17:45:15 ============================================================================ +17:45:15 [ 1] [ 4] [0200] +17:45:15 [ 2] [ 16] [6213544002117767] +17:45:15 [ 3] [ 6] [301000] +17:45:15 [ 4] [ 12] [000000000000] +17:45:15 [ 7] [ 10] [0320174535] +17:45:15 [ 11] [ 6] [209816] +17:45:15 [ 12] [ 6] [174040] +17:45:15 [ 13] [ 4] [0320] +17:45:15 [ 14] [ 4] [4912] +17:45:15 [ 15] [ 4] [0320] +17:45:15 [ 18] [ 4] [6011] +17:45:15 [ 19] [ 3] [418] +17:45:15 [ 22] [ 3] [021] +17:45:15 [ 25] [ 2] [01] +17:45:15 [ 28] [ 9] [D00000000] +17:45:15 [ 32] [ 6] [198901] +17:45:15 [ 35] [ 32] [6213544002117767=491212011776477] +17:45:15 [ 37] [ 12] [507917209816] +17:45:15 [ 41] [ 8] [19529001] +17:45:15 [ 42] [ 15] [000000041952901] +17:45:15 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:45:15 [ 49] [ 3] [418] +17:45:15 [ 52] [ 16] [3CE53FDD805AF83E] +17:45:15 ============================================================================ +17:45:15 + + +waiting on router queue for slot.... +17:45:15 Sending to : <0> +17:45:15 ============================================================================ +17:45:15 ============================================================================ +17:45:15 Slot Id : <9> +17:45:15 Transaction Type : RESPONSE +17:45:15 Received From : +17:45:15 ============================================================================ +17:45:15 FNo. Len. Field Value +17:45:15 ============================================================================ +17:45:15 [ 1] [ 4] [0210] +17:45:15 [ 2] [ 16] [6213544002117767] +17:45:15 [ 3] [ 6] [301000] +17:45:15 [ 4] [ 12] [000000000000] +17:45:15 [ 7] [ 10] [0320174535] +17:45:15 [ 11] [ 6] [209816] +17:45:15 [ 12] [ 6] [174040] +17:45:15 [ 13] [ 4] [0320] +17:45:15 [ 15] [ 4] [0320] +17:45:15 [ 18] [ 4] [6011] +17:45:15 [ 19] [ 3] [418] +17:45:15 [ 32] [ 6] [198901] +17:45:15 [ 35] [ 32] [6213544002117767=491212011776477] +17:45:15 [ 37] [ 12] [507917209816] +17:45:15 [ 38] [ 6] [006865] +17:45:15 [ 39] [ 2] [00] +17:45:15 [ 41] [ 8] [19529001] +17:45:15 [ 49] [ 3] [418] +17:45:15 [ 54] [ 40] [1001418C0000511871791002418C000051187179] +17:45:15 ============================================================================ +17:45:15 Sending to : +17:45:15 ============================================================================ +17:45:15 + + +waiting on router queue for slot.... +17:45:15 ============================================================================ +17:45:15 Slot Id : <37> +17:45:15 Transaction Type : RESPONSE +17:45:15 Received From : +17:45:15 ============================================================================ +17:45:15 FNo. Len. Field Value +17:45:15 ============================================================================ +17:45:15 [ 1] [ 4] [0210] +17:45:15 [ 2] [ 16] [1999990000015159] +17:45:15 [ 3] [ 6] [013000] +17:45:15 [ 4] [ 12] [000100000000] +17:45:15 [ 7] [ 10] [0320174507] +17:45:15 [ 11] [ 6] [819508] +17:45:15 [ 12] [ 6] [174507] +17:45:15 [ 13] [ 4] [0320] +17:45:15 [ 15] [ 4] [0320] +17:45:15 [ 18] [ 4] [6011] +17:45:15 [ 19] [ 3] [418] +17:45:15 [ 32] [ 6] [621354] +17:45:15 [ 37] [ 12] [507902706630] +17:45:15 [ 38] [ 6] [200875] +17:45:15 [ 39] [ 2] [00] +17:45:15 [ 41] [ 8] [14000900] +17:45:15 [ 49] [ 3] [418] +17:45:15 [ 54] [ 0] [] +17:45:15 ============================================================================ +17:45:15 Sending to : +17:45:15 ============================================================================ +17:45:15 + + +waiting on router queue for slot.... +17:45:15 ============================================================================ +17:45:15 Slot Id : <461> +17:45:15 Transaction Type : RESPONSE +17:45:15 Received From : +17:45:15 ============================================================================ +17:45:15 FNo. Len. Field Value +17:45:15 ============================================================================ +17:45:15 [ 1] [ 4] [0210] +17:45:15 [ 2] [ 16] [1808930200049179] +17:45:15 [ 3] [ 6] [301000] +17:45:15 [ 7] [ 10] [0320174507] +17:45:15 [ 11] [ 6] [819507] +17:45:15 [ 12] [ 6] [174507] +17:45:15 [ 13] [ 4] [0320] +17:45:15 [ 14] [ 4] [1803] +17:45:15 [ 19] [ 3] [418] +17:45:15 [ 32] [ 6] [621354] +17:45:15 [ 37] [ 12] [507903863724] +17:45:15 [ 38] [ 6] [819507] +17:45:15 [ 39] [ 2] [00] +17:45:15 [ 41] [ 8] [01010200] +17:45:15 [ 49] [ 3] [418] +17:45:15 [ 52] [ 16] [0B53D0F4D95E0847] +17:45:15 [ 54] [ 20] [1002418C000341409000] +17:45:15 ============================================================================ +17:45:15 Sending to : +17:45:15 ============================================================================ +17:45:15 + + +waiting on router queue for slot.... +17:45:16 ============================================================================ +17:45:16 Slot Id : <45> +17:45:16 Transaction Type : REQUEST +17:45:16 Received From : +17:45:16 ============================================================================ +17:45:16 FNo. Len. Field Value +17:45:16 ============================================================================ +17:45:16 [ 1] [ 4] [0200] +17:45:16 [ 2] [ 16] [6213544002005871] +17:45:16 [ 3] [ 6] [010000] +17:45:16 [ 4] [ 12] [000010000000] +17:45:16 [ 7] [ 10] [0320104423] +17:45:16 [ 11] [ 6] [270965] +17:45:16 [ 12] [ 6] [174423] +17:45:16 [ 13] [ 4] [0320] +17:45:16 [ 14] [ 4] [4912] +17:45:16 [ 15] [ 4] [0320] +17:45:16 [ 18] [ 4] [6011] +17:45:16 [ 19] [ 3] [418] +17:45:16 [ 22] [ 3] [021] +17:45:16 [ 25] [ 2] [01] +17:45:16 [ 28] [ 9] [D00002000] +17:45:16 [ 32] [ 6] [180893] +17:45:16 [ 35] [ 32] [6213544002005871=491212010587201] +17:45:16 [ 37] [ 12] [507910270965] +17:45:16 [ 41] [ 8] [0467PSLK] +17:45:16 [ 42] [ 15] [999999 ] +17:45:16 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:45:16 [ 49] [ 3] [418] +17:45:16 [ 52] [ 16] [6D745181EC6B962F] +17:45:16 ============================================================================ +17:45:16 + + +waiting on router queue for slot.... +17:45:16 Sending to : +17:45:16 ============================================================================ +17:45:16 Sending to : +17:45:16 ============================================================================ +17:45:16 ============================================================================ +17:45:16 Slot Id : <9> +17:45:16 Transaction Type : RESPONSE +17:45:16 Received From : +17:45:16 ============================================================================ +17:45:16 FNo. Len. Field Value +17:45:16 ============================================================================ +17:45:16 [ 1] [ 4] [0210] +17:45:16 [ 2] [ 16] [6213544002117767] +17:45:16 [ 3] [ 6] [301000] +17:45:16 [ 4] [ 12] [000000000000] +17:45:16 [ 7] [ 10] [0320174535] +17:45:16 [ 11] [ 6] [209816] +17:45:16 [ 12] [ 6] [174040] +17:45:16 [ 13] [ 4] [0320] +17:45:16 [ 15] [ 4] [0320] +17:45:16 [ 18] [ 4] [6011] +17:45:16 [ 19] [ 3] [418] +17:45:16 [ 32] [ 6] [198901] +17:45:16 [ 35] [ 32] [6213544002117767=491212011776477] +17:45:16 [ 37] [ 12] [507917209816] +17:45:16 [ 38] [ 6] [006865] +17:45:16 [ 39] [ 2] [00] +17:45:16 [ 41] [ 8] [19529001] +17:45:16 [ 49] [ 3] [418] +17:45:16 [ 54] [ 40] [1001418C0000511871791002418C000051187179] +17:45:16 ============================================================================ +17:45:16 Calculate Source COMM Id = 5 +17:45:16 ============================================================================ +17:45:16 + + +waiting on router queue for slot.... +17:45:17 ============================================================================ +17:45:17 Slot Id : <45> +17:45:17 Transaction Type : REQUEST +17:45:17 Received From : +17:45:17 ============================================================================ +17:45:17 FNo. Len. Field Value +17:45:17 ============================================================================ +17:45:17 [ 1] [ 4] [0200] +17:45:17 [ 2] [ 16] [6213544002005871] +17:45:17 [ 3] [ 6] [010000] +17:45:17 [ 4] [ 12] [000010000000] +17:45:17 [ 7] [ 10] [0320104423] +17:45:17 [ 11] [ 6] [270965] +17:45:17 [ 12] [ 6] [174423] +17:45:17 [ 13] [ 4] [0320] +17:45:17 [ 14] [ 4] [4912] +17:45:17 [ 15] [ 4] [0320] +17:45:17 [ 18] [ 4] [6011] +17:45:17 [ 19] [ 3] [418] +17:45:17 [ 22] [ 3] [021] +17:45:17 [ 25] [ 2] [01] +17:45:17 [ 28] [ 9] [D00002000] +17:45:17 [ 32] [ 6] [180893] +17:45:17 [ 35] [ 32] [6213544002005871=491212010587201] +17:45:17 [ 37] [ 12] [507910270965] +17:45:17 [ 41] [ 8] [0467PSLK] +17:45:17 [ 42] [ 15] [999999 ] +17:45:17 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:45:17 [ 49] [ 3] [418] +17:45:17 [ 52] [ 16] [6D745181EC6B962F] +17:45:17 ============================================================================ +17:45:17 + + +waiting on router queue for slot.... +17:45:17 Sending to : +17:45:17 ============================================================================ +17:45:17 ============================================================================ +17:45:17 Slot Id : <45> +17:45:17 Transaction Type : REQUEST +17:45:17 Received From : +17:45:17 ============================================================================ +17:45:17 FNo. Len. Field Value +17:45:17 ============================================================================ +17:45:17 [ 1] [ 4] [0200] +17:45:17 [ 2] [ 16] [6213544002005871] +17:45:17 [ 3] [ 6] [010000] +17:45:17 [ 4] [ 12] [000010000000] +17:45:17 [ 7] [ 10] [0320104423] +17:45:17 [ 11] [ 6] [270965] +17:45:17 [ 12] [ 6] [174423] +17:45:17 [ 13] [ 4] [0320] +17:45:17 [ 14] [ 4] [4912] +17:45:17 [ 15] [ 4] [0320] +17:45:17 [ 18] [ 4] [6011] +17:45:17 [ 19] [ 3] [418] +17:45:17 [ 22] [ 3] [021] +17:45:17 [ 25] [ 2] [01] +17:45:17 [ 28] [ 9] [D00002000] +17:45:17 [ 32] [ 6] [180893] +17:45:17 [ 35] [ 32] [6213544002005871=491212010587201] +17:45:17 [ 37] [ 12] [507910270965] +17:45:17 [ 41] [ 8] [0467PSLK] +17:45:17 [ 42] [ 15] [999999 ] +17:45:17 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +17:45:17 [ 49] [ 3] [418] +17:45:17 [ 52] [ 16] [EC64937F290C9C57] +17:45:17 ============================================================================ +17:45:17 + + +waiting on router queue for slot.... +17:45:17 Sending to : <0> +17:45:17 ============================================================================ +17:45:17 ============================================================================ +17:45:17 Slot Id : <45> +17:45:17 Transaction Type : RESPONSE +17:45:17 Received From : +17:45:17 ============================================================================ +17:45:17 FNo. Len. Field Value +17:45:17 ============================================================================ +17:45:17 [ 1] [ 4] [0210] +17:45:17 [ 2] [ 16] [6213544002005871] +17:45:17 [ 3] [ 6] [010000] +17:45:17 [ 4] [ 12] [000010000000] +17:45:17 [ 7] [ 10] [0320104423] +17:45:17 [ 11] [ 6] [270965] +17:45:17 [ 12] [ 6] [174423] +17:45:17 [ 13] [ 4] [0320] +17:45:17 [ 15] [ 4] [0320] +17:45:17 [ 18] [ 4] [6011] +17:45:17 [ 19] [ 3] [418] +17:45:17 [ 32] [ 6] [180893] +17:45:17 [ 35] [ 32] [6213544002005871=491212010587201] +17:45:17 [ 37] [ 12] [507910270965] +17:45:17 [ 38] [ 6] [134586] +17:45:17 [ 39] [ 2] [00] +17:45:17 [ 41] [ 8] [0467PSLK] +17:45:17 [ 49] [ 3] [418] +17:45:17 [ 54] [ 40] [0001418C0002604353140002418C000260435314] +17:45:17 ============================================================================ +17:45:17 Sending to : +17:45:17 ============================================================================ +17:45:17 + + +waiting on router queue for slot.... +17:45:18 ============================================================================ +17:45:18 Slot Id : <461> +17:45:18 Transaction Type : RESPONSE +17:45:18 Received From : +17:45:18 ============================================================================ +17:45:18 FNo. Len. Field Value +17:45:18 ============================================================================ +17:45:18 [ 1] [ 4] [0210] +17:45:18 [ 2] [ 16] [1808930200049179] +17:45:18 [ 3] [ 6] [301000] +17:45:18 [ 7] [ 10] [0320174507] +17:45:18 [ 11] [ 6] [819507] +17:45:18 [ 12] [ 6] [174507] +17:45:18 [ 13] [ 4] [0320] +17:45:18 [ 14] [ 4] [1803] +17:45:18 [ 19] [ 3] [418] +17:45:18 [ 32] [ 6] [621354] +17:45:18 [ 37] [ 12] [507903863724] +17:45:18 [ 38] [ 6] [819507] +17:45:18 [ 39] [ 2] [00] +17:45:18 [ 41] [ 8] [01010200] +17:45:18 [ 49] [ 3] [418] +17:45:18 [ 52] [ 16] [0B53D0F4D95E0847] +17:45:18 [ 54] [ 20] [1002418C000341409000] +17:45:18 ============================================================================ +17:45:18 Calculate Source COMM Id = 0 +17:45:18 ============================================================================ +17:45:18 + + +waiting on router queue for slot.... +17:45:19 ============================================================================ +17:45:19 Slot Id : <36> +17:45:19 Transaction Type : REQUEST +17:45:19 Received From : +17:45:19 ============================================================================ +17:45:19 FNo. Len. Field Value +17:45:19 ============================================================================ +17:45:19 [ 1] [ 4] [0200] +17:45:19 [ 2] [ 16] [6688990030011447] +17:45:19 [ 3] [ 6] [011000] +17:45:19 [ 4] [ 12] [000020000000] +17:45:19 [ 7] [ 10] [0320174539] +17:45:19 [ 11] [ 6] [209819] +17:45:19 [ 12] [ 6] [172914] +17:45:19 [ 13] [ 4] [0320] +17:45:19 [ 14] [ 4] [9802] +17:45:19 [ 15] [ 4] [0320] +17:45:19 [ 18] [ 4] [6011] +17:45:19 [ 19] [ 3] [418] +17:45:19 [ 22] [ 3] [021] +17:45:19 [ 25] [ 2] [01] +17:45:19 [ 28] [ 9] [D00002000] +17:45:19 [ 32] [ 6] [198901] +17:45:19 [ 35] [ 37] [6688990030011447=98021261230607300000] +17:45:19 [ 37] [ 12] [507917209819] +17:45:19 [ 41] [ 8] [01529003] +17:45:19 [ 42] [ 15] [000000041529003] +17:45:19 [ 43] [ 40] [JDB ATM HQ1 VN ] +17:45:19 [ 49] [ 3] [418] +17:45:19 [ 52] [ 16] [E6AA0E7300237E9B] +17:45:19 ============================================================================ +17:45:19 + + +waiting on router queue for slot.... +17:45:19 Sending to : +17:45:19 ============================================================================ +17:45:19 Sending to : +17:45:19 ============================================================================ +17:45:19 ============================================================================ +17:45:19 Slot Id : <36> +17:45:19 Transaction Type : REQUEST +17:45:19 Received From : +17:45:19 ============================================================================ +17:45:19 FNo. Len. Field Value +17:45:19 ============================================================================ +17:45:19 [ 1] [ 4] [0200] +17:45:19 [ 2] [ 16] [6688990030011447] +17:45:19 [ 3] [ 6] [011000] +17:45:19 [ 4] [ 12] [000020000000] +17:45:19 [ 7] [ 10] [0320174539] +17:45:19 [ 11] [ 6] [209819] +17:45:19 [ 12] [ 6] [172914] +17:45:19 [ 13] [ 4] [0320] +17:45:19 [ 14] [ 4] [9802] +17:45:19 [ 15] [ 4] [0320] +17:45:19 [ 18] [ 4] [6011] +17:45:19 [ 19] [ 3] [418] +17:45:19 [ 22] [ 3] [021] +17:45:19 [ 25] [ 2] [01] +17:45:19 [ 28] [ 9] [D00002000] +17:45:19 [ 32] [ 6] [198901] +17:45:19 [ 35] [ 37] [6688990030011447=98021261230607300000] +17:45:19 [ 37] [ 12] [507917209819] +17:45:19 [ 41] [ 8] [01529003] +17:45:19 [ 42] [ 15] [000000041529003] +17:45:19 [ 43] [ 40] [JDB ATM HQ1 VN ] +17:45:19 [ 49] [ 3] [418] +17:45:19 [ 52] [ 16] [E6AA0E7300237E9B] +17:45:19 ============================================================================ +17:45:19 + + +waiting on router queue for slot.... +17:45:19 Sending to : +17:45:19 ============================================================================ +17:45:19 ============================================================================ +17:45:19 Slot Id : <36> +17:45:19 Transaction Type : REQUEST +17:45:19 Received From : +17:45:19 ============================================================================ +17:45:19 FNo. Len. Field Value +17:45:19 ============================================================================ +17:45:19 [ 1] [ 4] [0200] +17:45:19 [ 2] [ 16] [6688990030011447] +17:45:19 [ 3] [ 6] [011000] +17:45:19 [ 4] [ 12] [000020000000] +17:45:19 [ 7] [ 10] [0320174539] +17:45:19 [ 11] [ 6] [209819] +17:45:19 [ 12] [ 6] [172914] +17:45:19 [ 13] [ 4] [0320] +17:45:19 [ 14] [ 4] [9802] +17:45:19 [ 15] [ 4] [0320] +17:45:19 [ 18] [ 4] [6011] +17:45:19 [ 19] [ 3] [418] +17:45:19 [ 22] [ 3] [021] +17:45:19 [ 25] [ 2] [01] +17:45:19 [ 28] [ 9] [D00002000] +17:45:19 [ 32] [ 6] [198901] +17:45:19 [ 35] [ 37] [6688990030011447=98021261230607300000] +17:45:19 [ 37] [ 12] [507917209819] +17:45:19 [ 41] [ 8] [01529003] +17:45:19 [ 42] [ 15] [000000041529003] +17:45:19 [ 43] [ 40] [JDB ATM HQ1 VN ] +17:45:19 [ 49] [ 3] [418] +17:45:19 [ 52] [ 16] [960C66B47819A045] +17:45:19 ============================================================================ +17:45:19 + + +waiting on router queue for slot.... +17:45:19 Sending to : <4> +17:45:19 ============================================================================ +17:45:19 ============================================================================ +17:45:19 Slot Id : <45> +17:45:19 Transaction Type : RESPONSE +17:45:19 Received From : +17:45:19 ============================================================================ +17:45:19 FNo. Len. Field Value +17:45:19 ============================================================================ +17:45:19 [ 1] [ 4] [0210] +17:45:19 [ 2] [ 16] [6213544002005871] +17:45:19 [ 3] [ 6] [010000] +17:45:19 [ 4] [ 12] [000010000000] +17:45:19 [ 7] [ 10] [0320104423] +17:45:19 [ 11] [ 6] [270965] +17:45:19 [ 12] [ 6] [174423] +17:45:19 [ 13] [ 4] [0320] +17:45:19 [ 15] [ 4] [0320] +17:45:19 [ 18] [ 4] [6011] +17:45:19 [ 19] [ 3] [418] +17:45:19 [ 32] [ 6] [180893] +17:45:19 [ 35] [ 32] [6213544002005871=491212010587201] +17:45:19 [ 37] [ 12] [507910270965] +17:45:19 [ 38] [ 6] [134586] +17:45:19 [ 39] [ 2] [00] +17:45:19 [ 41] [ 8] [0467PSLK] +17:45:19 [ 49] [ 3] [418] +17:45:19 [ 54] [ 40] [0001418C0002604353140002418C000260435314] +17:45:19 ============================================================================ +17:45:19 Calculate Source COMM Id = 2 +17:45:19 ============================================================================ +17:45:19 + + +waiting on router queue for slot.... +17:45:20 ============================================================================ +17:45:20 Slot Id : <37> +17:45:20 Transaction Type : RESPONSE +17:45:20 Received From : +17:45:20 ============================================================================ +17:45:20 FNo. Len. Field Value +17:45:20 ============================================================================ +17:45:20 [ 1] [ 4] [0210] +17:45:20 [ 2] [ 16] [1999990000015159] +17:45:20 [ 3] [ 6] [013000] +17:45:20 [ 4] [ 12] [000100000000] +17:45:20 [ 7] [ 10] [0320174507] +17:45:20 [ 11] [ 6] [819508] +17:45:20 [ 12] [ 6] [174507] +17:45:20 [ 13] [ 4] [0320] +17:45:20 [ 15] [ 4] [0320] +17:45:20 [ 18] [ 4] [6011] +17:45:20 [ 19] [ 3] [418] +17:45:20 [ 32] [ 6] [621354] +17:45:20 [ 37] [ 12] [507902706630] +17:45:20 [ 38] [ 6] [200875] +17:45:20 [ 39] [ 2] [00] +17:45:20 [ 41] [ 8] [14000900] +17:45:20 [ 49] [ 3] [418] +17:45:20 [ 54] [ 0] [] +17:45:20 ============================================================================ +17:45:20 Calculate Source COMM Id = 0 +17:45:20 ============================================================================ +17:45:20 + + +waiting on router queue for slot.... +17:45:20 ============================================================================ +17:45:20 Slot Id : <36> +17:45:20 Transaction Type : RESPONSE +17:45:20 Received From : +17:45:20 ============================================================================ +17:45:20 FNo. Len. Field Value +17:45:20 ============================================================================ +17:45:20 [ 1] [ 4] [0210] +17:45:20 [ 2] [ 16] [6688990030011447] +17:45:20 [ 3] [ 6] [011000] +17:45:20 [ 4] [ 12] [000020000000] +17:45:20 [ 11] [ 6] [209819] +17:45:20 [ 12] [ 6] [172914] +17:45:20 [ 15] [ 4] [0320] +17:45:20 [ 18] [ 4] [6011] +17:45:20 [ 32] [ 6] [198901] +17:45:20 [ 35] [ 37] [6688990030011447=98021261230607300000] +17:45:20 [ 37] [ 12] [507917209819] +17:45:20 [ 38] [ 6] [425551] +17:45:20 [ 39] [ 2] [00] +17:45:20 [ 41] [ 8] [01529003] +17:45:20 [ 49] [ 3] [418] +17:45:20 [ 54] [ 20] [1002418C000282368126] +17:45:20 ============================================================================ +17:45:20 Sending to : +17:45:20 ============================================================================ +17:45:20 + + +waiting on router queue for slot.... +17:45:22 ============================================================================ +17:45:22 Slot Id : <36> +17:45:22 Transaction Type : RESPONSE +17:45:22 Received From : +17:45:22 ============================================================================ +17:45:22 FNo. Len. Field Value +17:45:22 ============================================================================ +17:45:22 [ 1] [ 4] [0210] +17:45:22 [ 2] [ 16] [6688990030011447] +17:45:22 [ 3] [ 6] [011000] +17:45:22 [ 4] [ 12] [000020000000] +17:45:22 [ 11] [ 6] [209819] +17:45:22 [ 12] [ 6] [172914] +17:45:22 [ 15] [ 4] [0320] +17:45:22 [ 18] [ 4] [6011] +17:45:22 [ 32] [ 6] [198901] +17:45:22 [ 35] [ 37] [6688990030011447=98021261230607300000] +17:45:22 [ 37] [ 12] [507917209819] +17:45:22 [ 38] [ 6] [425551] +17:45:22 [ 39] [ 2] [00] +17:45:22 [ 41] [ 8] [01529003] +17:45:22 [ 49] [ 3] [418] +17:45:22 [ 54] [ 20] [1002418C000282368126] +17:45:22 ============================================================================ +17:45:22 Calculate Source COMM Id = 5 +17:45:22 ============================================================================ +17:45:22 + + +waiting on router queue for slot.... +17:45:23 ============================================================================ +17:45:23 Slot Id : <40> +17:45:23 Transaction Type : REQUEST +17:45:23 Received From : +17:45:23 ============================================================================ +17:45:23 FNo. Len. Field Value +17:45:23 ============================================================================ +17:45:23 [ 1] [ 4] [0200] +17:45:23 [ 2] [ 16] [6213545000610786] +17:45:23 [ 3] [ 6] [010000] +17:45:23 [ 4] [ 12] [000100000000] +17:45:23 [ 7] [ 10] [0320174313] +17:45:23 [ 11] [ 6] [953860] +17:45:23 [ 12] [ 6] [174313] +17:45:23 [ 13] [ 4] [0320] +17:45:23 [ 15] [ 4] [0320] +17:45:23 [ 18] [ 4] [6011] +17:45:23 [ 19] [ 3] [418] +17:45:23 [ 22] [ 3] [021] +17:45:23 [ 25] [ 2] [01] +17:45:23 [ 28] [ 9] [D00002000] +17:45:23 [ 32] [ 6] [668899] +17:45:23 [ 35] [ 32] [6213545000610786=491212011078686] +17:45:23 [ 37] [ 12] [507902475749] +17:45:23 [ 41] [ 8] [03020032] +17:45:23 [ 42] [ 15] [APT ] +17:45:23 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +17:45:23 [ 49] [ 3] [418] +17:45:23 [ 52] [ 16] [AB18CFB3D3583EF1] +17:45:23 ============================================================================ +17:45:23 + + +waiting on router queue for slot.... +17:45:23 Sending to : +17:45:23 ============================================================================ +17:45:23 Sending to : +17:45:23 ============================================================================ +17:45:24 ============================================================================ +17:45:24 Slot Id : <40> +17:45:24 Transaction Type : REQUEST +17:45:24 Received From : +17:45:24 ============================================================================ +17:45:24 FNo. Len. Field Value +17:45:24 ============================================================================ +17:45:24 [ 1] [ 4] [0200] +17:45:24 [ 2] [ 16] [6213545000610786] +17:45:24 [ 3] [ 6] [010000] +17:45:24 [ 4] [ 12] [000100000000] +17:45:24 [ 7] [ 10] [0320174313] +17:45:24 [ 11] [ 6] [953860] +17:45:24 [ 12] [ 6] [174313] +17:45:24 [ 13] [ 4] [0320] +17:45:24 [ 15] [ 4] [0320] +17:45:24 [ 18] [ 4] [6011] +17:45:24 [ 19] [ 3] [418] +17:45:24 [ 22] [ 3] [021] +17:45:24 [ 25] [ 2] [01] +17:45:24 [ 28] [ 9] [D00002000] +17:45:24 [ 32] [ 6] [668899] +17:45:24 [ 35] [ 32] [6213545000610786=491212011078686] +17:45:24 [ 37] [ 12] [507902475749] +17:45:24 [ 41] [ 8] [03020032] +17:45:24 [ 42] [ 15] [APT ] +17:45:24 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +17:45:24 [ 49] [ 3] [418] +17:45:24 [ 52] [ 16] [AB18CFB3D3583EF1] +17:45:24 ============================================================================ +17:45:24 + + +waiting on router queue for slot.... +17:45:24 Sending to : +17:45:24 ============================================================================ +17:45:24 ============================================================================ +17:45:24 Slot Id : <40> +17:45:24 Transaction Type : REQUEST +17:45:24 Received From : +17:45:24 ============================================================================ +17:45:24 FNo. Len. Field Value +17:45:24 ============================================================================ +17:45:24 [ 1] [ 4] [0200] +17:45:24 [ 2] [ 16] [6213545000610786] +17:45:24 [ 3] [ 6] [010000] +17:45:24 [ 4] [ 12] [000100000000] +17:45:24 [ 7] [ 10] [0320174313] +17:45:24 [ 11] [ 6] [953860] +17:45:24 [ 12] [ 6] [174313] +17:45:24 [ 13] [ 4] [0320] +17:45:24 [ 15] [ 4] [0320] +17:45:24 [ 18] [ 4] [6011] +17:45:24 [ 19] [ 3] [418] +17:45:24 [ 22] [ 3] [021] +17:45:24 [ 25] [ 2] [01] +17:45:24 [ 28] [ 9] [D00002000] +17:45:24 [ 32] [ 6] [668899] +17:45:24 [ 35] [ 32] [6213545000610786=491212011078686] +17:45:24 [ 37] [ 12] [507902475749] +17:45:24 [ 41] [ 8] [03020032] +17:45:24 [ 42] [ 15] [APT ] +17:45:24 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +17:45:24 [ 49] [ 3] [418] +17:45:24 [ 52] [ 16] [AAE0848D25D50B49] +17:45:24 ============================================================================ +17:45:24 + + +waiting on router queue for slot.... +17:45:24 Sending to : <0> +17:45:24 ============================================================================ +17:45:25 ============================================================================ +17:45:25 Slot Id : <40> +17:45:25 Transaction Type : RESPONSE +17:45:25 Received From : +17:45:25 ============================================================================ +17:45:25 FNo. Len. Field Value +17:45:25 ============================================================================ +17:45:25 [ 1] [ 4] [0210] +17:45:25 [ 2] [ 16] [6213545000610786] +17:45:25 [ 3] [ 6] [010000] +17:45:25 [ 4] [ 12] [000100000000] +17:45:25 [ 7] [ 10] [0320174313] +17:45:25 [ 11] [ 6] [953860] +17:45:25 [ 12] [ 6] [174313] +17:45:25 [ 13] [ 4] [0320] +17:45:25 [ 15] [ 4] [0320] +17:45:25 [ 18] [ 4] [6011] +17:45:25 [ 19] [ 3] [418] +17:45:25 [ 32] [ 6] [668899] +17:45:25 [ 35] [ 32] [6213545000610786=491212011078686] +17:45:25 [ 37] [ 12] [507902475749] +17:45:25 [ 38] [ 6] [983893] +17:45:25 [ 39] [ 2] [00] +17:45:25 [ 41] [ 8] [03020032] +17:45:25 [ 49] [ 3] [418] +17:45:25 [ 54] [ 40] [0001418C0001600786650002418C000160078665] +17:45:25 ============================================================================ +17:45:25 Sending to : +17:45:25 ============================================================================ +17:45:25 + + +waiting on router queue for slot.... +17:45:27 ============================================================================ +17:45:27 Slot Id : <40> +17:45:27 Transaction Type : RESPONSE +17:45:27 Received From : +17:45:27 ============================================================================ +17:45:27 FNo. Len. Field Value +17:45:27 ============================================================================ +17:45:27 [ 1] [ 4] [0210] +17:45:27 [ 2] [ 16] [6213545000610786] +17:45:27 [ 3] [ 6] [010000] +17:45:27 [ 4] [ 12] [000100000000] +17:45:27 [ 7] [ 10] [0320174313] +17:45:27 [ 11] [ 6] [953860] +17:45:27 [ 12] [ 6] [174313] +17:45:27 [ 13] [ 4] [0320] +17:45:27 [ 15] [ 4] [0320] +17:45:27 [ 18] [ 4] [6011] +17:45:27 [ 19] [ 3] [418] +17:45:27 [ 32] [ 6] [668899] +17:45:27 [ 35] [ 32] [6213545000610786=491212011078686] +17:45:27 [ 37] [ 12] [507902475749] +17:45:27 [ 38] [ 6] [983893] +17:45:27 [ 39] [ 2] [00] +17:45:27 [ 41] [ 8] [03020032] +17:45:27 [ 49] [ 3] [418] +17:45:27 [ 54] [ 40] [0001418C0001600786650002418C000160078665] +17:45:27 ============================================================================ +17:45:27 Calculate Source COMM Id = 4 +17:45:27 ============================================================================ +17:45:27 + + +waiting on router queue for slot.... +17:45:33 ============================================================================ +17:45:33 Slot Id : <18> +17:45:33 Transaction Type : REQUEST +17:45:33 Received From : +17:45:33 ============================================================================ +17:45:33 FNo. Len. Field Value +17:45:33 ============================================================================ +17:45:33 [ 1] [ 4] [0800] +17:45:33 [ 7] [ 10] [0320104440] +17:45:33 [ 11] [ 6] [157537] +17:45:33 [ 70] [ 3] [301] +17:45:33 ============================================================================ +17:45:33 + + +waiting on router queue for slot.... +17:45:33 Sending to : +17:45:33 ============================================================================ +17:45:33 ============================================================================ +17:45:33 Slot Id : <18> +17:45:33 Transaction Type : RESPONSE +17:45:33 Received From : +17:45:33 ============================================================================ +17:45:33 FNo. Len. Field Value +17:45:33 ============================================================================ +17:45:33 [ 1] [ 4] [0810] +17:45:33 [ 7] [ 10] [0320104440] +17:45:33 [ 11] [ 6] [157537] +17:45:33 [ 39] [ 2] [00] +17:45:33 [ 70] [ 3] [301] +17:45:33 ============================================================================ +17:45:33 Calculate Source COMM Id = 2 +17:45:33 ============================================================================ +17:45:33 + + +waiting on router queue for slot.... +17:45:39 ============================================================================ +17:45:39 Slot Id : <497> +17:45:39 Transaction Type : REQUEST +17:45:39 Received From : +17:45:39 ============================================================================ +17:45:39 FNo. Len. Field Value +17:45:39 ============================================================================ +17:45:39 [ 1] [ 4] [0200] +17:45:39 [ 2] [ 16] [6688990040039669] +17:45:39 [ 3] [ 6] [010000] +17:45:39 [ 4] [ 12] [000050000000] +17:45:39 [ 7] [ 10] [0320174534] +17:45:39 [ 11] [ 6] [819623] +17:45:39 [ 12] [ 6] [174534] +17:45:39 [ 13] [ 4] [0320] +17:45:39 [ 15] [ 4] [0320] +17:45:39 [ 18] [ 4] [6011] +17:45:39 [ 22] [ 3] [900] +17:45:39 [ 25] [ 2] [02] +17:45:39 [ 28] [ 9] [D00002000] +17:45:39 [ 32] [ 6] [621354] +17:45:39 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:45:39 [ 37] [ 12] [507905271811] +17:45:39 [ 41] [ 8] [02002900] +17:45:39 [ 42] [ 15] [NATIVE ] +17:45:39 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:45:39 [ 49] [ 3] [418] +17:45:39 [ 52] [ 16] [A121443DDD885ADC] +17:45:39 ============================================================================ +17:45:39 + + +waiting on router queue for slot.... +17:45:39 Sending to : +17:45:39 ============================================================================ +17:45:39 Sending to : +17:45:39 ============================================================================ +17:45:39 ============================================================================ +17:45:39 Slot Id : <497> +17:45:39 Transaction Type : REQUEST +17:45:39 Received From : +17:45:39 ============================================================================ +17:45:39 FNo. Len. Field Value +17:45:39 ============================================================================ +17:45:39 [ 1] [ 4] [0200] +17:45:39 [ 2] [ 16] [6688990040039669] +17:45:39 [ 3] [ 6] [010000] +17:45:39 [ 4] [ 12] [000050000000] +17:45:39 [ 7] [ 10] [0320174534] +17:45:39 [ 11] [ 6] [819623] +17:45:39 [ 12] [ 6] [174534] +17:45:39 [ 13] [ 4] [0320] +17:45:39 [ 15] [ 4] [0320] +17:45:39 [ 18] [ 4] [6011] +17:45:39 [ 22] [ 3] [900] +17:45:39 [ 25] [ 2] [02] +17:45:39 [ 28] [ 9] [D00002000] +17:45:39 [ 32] [ 6] [621354] +17:45:39 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:45:39 [ 37] [ 12] [507905271811] +17:45:39 [ 41] [ 8] [02002900] +17:45:39 [ 42] [ 15] [NATIVE ] +17:45:39 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:45:39 [ 49] [ 3] [418] +17:45:39 [ 52] [ 16] [A121443DDD885ADC] +17:45:39 ============================================================================ +17:45:39 + + +waiting on router queue for slot.... +17:45:39 Sending to : +17:45:39 ============================================================================ +17:45:39 ============================================================================ +17:45:39 Slot Id : <497> +17:45:39 Transaction Type : REQUEST +17:45:39 Received From : +17:45:39 ============================================================================ +17:45:39 FNo. Len. Field Value +17:45:39 ============================================================================ +17:45:39 [ 1] [ 4] [0200] +17:45:39 [ 2] [ 16] [6688990040039669] +17:45:39 [ 3] [ 6] [010000] +17:45:39 [ 4] [ 12] [000050000000] +17:45:39 [ 7] [ 10] [0320174534] +17:45:39 [ 11] [ 6] [819623] +17:45:39 [ 12] [ 6] [174534] +17:45:39 [ 13] [ 4] [0320] +17:45:39 [ 15] [ 4] [0320] +17:45:39 [ 18] [ 4] [6011] +17:45:39 [ 22] [ 3] [900] +17:45:39 [ 25] [ 2] [02] +17:45:39 [ 28] [ 9] [D00002000] +17:45:39 [ 32] [ 6] [621354] +17:45:39 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:45:39 [ 37] [ 12] [507905271811] +17:45:39 [ 41] [ 8] [02002900] +17:45:39 [ 42] [ 15] [NATIVE ] +17:45:39 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:45:39 [ 49] [ 3] [418] +17:45:39 [ 52] [ 16] [A9CBCDF0E96A5CBF] +17:45:39 ============================================================================ +17:45:39 + + +waiting on router queue for slot.... +17:45:39 Sending to : <4> +17:45:39 ============================================================================ +17:45:40 ============================================================================ +17:45:40 Slot Id : <497> +17:45:40 Transaction Type : RESPONSE +17:45:40 Received From : +17:45:40 ============================================================================ +17:45:40 FNo. Len. Field Value +17:45:40 ============================================================================ +17:45:40 [ 1] [ 4] [0210] +17:45:40 [ 2] [ 16] [6688990040039669] +17:45:40 [ 3] [ 6] [010000] +17:45:40 [ 4] [ 12] [000050000000] +17:45:40 [ 11] [ 6] [819623] +17:45:40 [ 12] [ 6] [174534] +17:45:40 [ 15] [ 4] [0320] +17:45:40 [ 18] [ 4] [6011] +17:45:40 [ 32] [ 6] [621354] +17:45:40 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:45:40 [ 37] [ 12] [507905271811] +17:45:40 [ 38] [ 6] [472249] +17:45:40 [ 39] [ 2] [00] +17:45:40 [ 41] [ 8] [02002900] +17:45:40 [ 49] [ 3] [418] +17:45:40 [ 54] [ 20] [0002418C000035700000] +17:45:40 ============================================================================ +17:45:40 Sending to : +17:45:40 ============================================================================ +17:45:40 + + +waiting on router queue for slot.... +17:45:42 ============================================================================ +17:45:42 Slot Id : <497> +17:45:42 Transaction Type : RESPONSE +17:45:42 Received From : +17:45:42 ============================================================================ +17:45:42 FNo. Len. Field Value +17:45:42 ============================================================================ +17:45:42 [ 1] [ 4] [0210] +17:45:42 [ 2] [ 16] [6688990040039669] +17:45:42 [ 3] [ 6] [010000] +17:45:42 [ 4] [ 12] [000050000000] +17:45:42 [ 11] [ 6] [819623] +17:45:42 [ 12] [ 6] [174534] +17:45:42 [ 15] [ 4] [0320] +17:45:42 [ 18] [ 4] [6011] +17:45:42 [ 32] [ 6] [621354] +17:45:42 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:45:42 [ 37] [ 12] [507905271811] +17:45:42 [ 38] [ 6] [472249] +17:45:42 [ 39] [ 2] [00] +17:45:42 [ 41] [ 8] [02002900] +17:45:42 [ 49] [ 3] [418] +17:45:42 [ 54] [ 20] [0002418C000035700000] +17:45:42 ============================================================================ +17:45:42 Calculate Source COMM Id = 0 +17:45:42 ============================================================================ +17:45:42 + + +waiting on router queue for slot.... +17:45:42 ============================================================================ +17:45:42 Slot Id : <8> +17:45:42 Transaction Type : REQUEST +17:45:42 Received From : +17:45:42 ============================================================================ +17:45:42 FNo. Len. Field Value +17:45:42 ============================================================================ +17:45:42 [ 1] [ 4] [0200] +17:45:42 [ 2] [ 16] [6213544002117767] +17:45:42 [ 3] [ 6] [011000] +17:45:42 [ 4] [ 12] [000020000000] +17:45:42 [ 7] [ 10] [0320174603] +17:45:42 [ 11] [ 6] [209826] +17:45:42 [ 12] [ 6] [174108] +17:45:42 [ 13] [ 4] [0320] +17:45:42 [ 14] [ 4] [4912] +17:45:42 [ 15] [ 4] [0320] +17:45:42 [ 18] [ 4] [6011] +17:45:42 [ 19] [ 3] [418] +17:45:42 [ 22] [ 3] [021] +17:45:42 [ 25] [ 2] [01] +17:45:42 [ 28] [ 9] [D00002000] +17:45:42 [ 32] [ 6] [198901] +17:45:42 [ 35] [ 32] [6213544002117767=491212011776477] +17:45:42 [ 37] [ 12] [507917209826] +17:45:42 [ 41] [ 8] [19529001] +17:45:42 [ 42] [ 15] [000000041952901] +17:45:42 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:45:42 [ 49] [ 3] [418] +17:45:42 [ 52] [ 16] [7BD382ABA1D1C462] +17:45:42 ============================================================================ +17:45:42 + + +waiting on router queue for slot.... +17:45:42 Sending to : +17:45:42 ============================================================================ +17:45:42 Sending to : +17:45:42 ============================================================================ +17:45:43 ============================================================================ +17:45:43 Slot Id : <8> +17:45:43 Transaction Type : REQUEST +17:45:43 Received From : +17:45:43 ============================================================================ +17:45:43 FNo. Len. Field Value +17:45:43 ============================================================================ +17:45:43 [ 1] [ 4] [0200] +17:45:43 [ 2] [ 16] [6213544002117767] +17:45:43 [ 3] [ 6] [011000] +17:45:43 [ 4] [ 12] [000020000000] +17:45:43 [ 7] [ 10] [0320174603] +17:45:43 [ 11] [ 6] [209826] +17:45:43 [ 12] [ 6] [174108] +17:45:43 [ 13] [ 4] [0320] +17:45:43 [ 14] [ 4] [4912] +17:45:43 [ 15] [ 4] [0320] +17:45:43 [ 18] [ 4] [6011] +17:45:43 [ 19] [ 3] [418] +17:45:43 [ 22] [ 3] [021] +17:45:43 [ 25] [ 2] [01] +17:45:43 [ 28] [ 9] [D00002000] +17:45:43 [ 32] [ 6] [198901] +17:45:43 [ 35] [ 32] [6213544002117767=491212011776477] +17:45:43 [ 37] [ 12] [507917209826] +17:45:43 [ 41] [ 8] [19529001] +17:45:43 [ 42] [ 15] [000000041952901] +17:45:43 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:45:43 [ 49] [ 3] [418] +17:45:43 [ 52] [ 16] [7BD382ABA1D1C462] +17:45:43 ============================================================================ +17:45:43 + + +waiting on router queue for slot.... +17:45:43 Sending to : +17:45:43 ============================================================================ +17:45:43 ============================================================================ +17:45:43 Slot Id : <8> +17:45:43 Transaction Type : REQUEST +17:45:43 Received From : +17:45:43 ============================================================================ +17:45:43 FNo. Len. Field Value +17:45:43 ============================================================================ +17:45:43 [ 1] [ 4] [0200] +17:45:43 [ 2] [ 16] [6213544002117767] +17:45:43 [ 3] [ 6] [011000] +17:45:43 [ 4] [ 12] [000020000000] +17:45:43 [ 7] [ 10] [0320174603] +17:45:43 [ 11] [ 6] [209826] +17:45:43 [ 12] [ 6] [174108] +17:45:43 [ 13] [ 4] [0320] +17:45:43 [ 14] [ 4] [4912] +17:45:43 [ 15] [ 4] [0320] +17:45:43 [ 18] [ 4] [6011] +17:45:43 [ 19] [ 3] [418] +17:45:43 [ 22] [ 3] [021] +17:45:43 [ 25] [ 2] [01] +17:45:43 [ 28] [ 9] [D00002000] +17:45:43 [ 32] [ 6] [198901] +17:45:43 [ 35] [ 32] [6213544002117767=491212011776477] +17:45:43 [ 37] [ 12] [507917209826] +17:45:43 [ 41] [ 8] [19529001] +17:45:43 [ 42] [ 15] [000000041952901] +17:45:43 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:45:43 [ 49] [ 3] [418] +17:45:43 [ 52] [ 16] [3CE53FDD805AF83E] +17:45:43 ============================================================================ +17:45:43 + + +waiting on router queue for slot.... +17:45:43 Sending to : <0> +17:45:43 ============================================================================ +17:45:43 ============================================================================ +17:45:43 Slot Id : <8> +17:45:43 Transaction Type : RESPONSE +17:45:43 Received From : +17:45:43 ============================================================================ +17:45:43 FNo. Len. Field Value +17:45:43 ============================================================================ +17:45:43 [ 1] [ 4] [0210] +17:45:43 [ 2] [ 16] [6213544002117767] +17:45:43 [ 3] [ 6] [011000] +17:45:43 [ 4] [ 12] [000020000000] +17:45:43 [ 7] [ 10] [0320174603] +17:45:43 [ 11] [ 6] [209826] +17:45:43 [ 12] [ 6] [174108] +17:45:43 [ 13] [ 4] [0320] +17:45:43 [ 15] [ 4] [0320] +17:45:43 [ 18] [ 4] [6011] +17:45:43 [ 19] [ 3] [418] +17:45:43 [ 32] [ 6] [198901] +17:45:43 [ 35] [ 32] [6213544002117767=491212011776477] +17:45:43 [ 37] [ 12] [507917209826] +17:45:43 [ 38] [ 6] [031810] +17:45:43 [ 39] [ 2] [00] +17:45:43 [ 41] [ 8] [19529001] +17:45:43 [ 49] [ 3] [418] +17:45:43 [ 54] [ 40] [1001418C0000309871791002418C000030987179] +17:45:43 ============================================================================ +17:45:43 Sending to : +17:45:43 ============================================================================ +17:45:43 + + +waiting on router queue for slot.... +17:45:44 ============================================================================ +17:45:44 Slot Id : <43> +17:45:44 Transaction Type : REQUEST +17:45:44 Received From : +17:45:44 ============================================================================ +17:45:44 FNo. Len. Field Value +17:45:44 ============================================================================ +17:45:44 [ 1] [ 4] [0800] +17:45:44 [ 7] [ 10] [0320104451] +17:45:44 [ 11] [ 6] [157538] +17:45:44 [ 70] [ 3] [301] +17:45:44 ============================================================================ +17:45:44 + + +waiting on router queue for slot.... +17:45:44 Sending to : +17:45:44 ============================================================================ +17:45:44 ============================================================================ +17:45:44 Slot Id : <43> +17:45:44 Transaction Type : RESPONSE +17:45:44 Received From : +17:45:44 ============================================================================ +17:45:44 FNo. Len. Field Value +17:45:44 ============================================================================ +17:45:44 [ 1] [ 4] [0810] +17:45:44 [ 7] [ 10] [0320104451] +17:45:44 [ 11] [ 6] [157538] +17:45:44 [ 39] [ 2] [00] +17:45:44 [ 70] [ 3] [301] +17:45:44 ============================================================================ +17:45:44 Calculate Source COMM Id = 2 +17:45:44 ============================================================================ +17:45:44 + + +waiting on router queue for slot.... +17:45:44 ============================================================================ +17:45:44 Slot Id : <8> +17:45:44 Transaction Type : RESPONSE +17:45:44 Received From : +17:45:44 ============================================================================ +17:45:44 FNo. Len. Field Value +17:45:44 ============================================================================ +17:45:44 [ 1] [ 4] [0210] +17:45:44 [ 2] [ 16] [6213544002117767] +17:45:44 [ 3] [ 6] [011000] +17:45:44 [ 4] [ 12] [000020000000] +17:45:44 [ 7] [ 10] [0320174603] +17:45:44 [ 11] [ 6] [209826] +17:45:44 [ 12] [ 6] [174108] +17:45:44 [ 13] [ 4] [0320] +17:45:44 [ 15] [ 4] [0320] +17:45:44 [ 18] [ 4] [6011] +17:45:44 [ 19] [ 3] [418] +17:45:44 [ 32] [ 6] [198901] +17:45:44 [ 35] [ 32] [6213544002117767=491212011776477] +17:45:44 [ 37] [ 12] [507917209826] +17:45:44 [ 38] [ 6] [031810] +17:45:44 [ 39] [ 2] [00] +17:45:44 [ 41] [ 8] [19529001] +17:45:44 [ 49] [ 3] [418] +17:45:44 [ 54] [ 40] [1001418C0000309871791002418C000030987179] +17:45:44 ============================================================================ +17:45:44 Calculate Source COMM Id = 5 +17:45:44 ============================================================================ +17:45:44 + + +waiting on router queue for slot.... +17:45:54 ============================================================================ +17:45:54 Slot Id : <28> +17:45:54 Transaction Type : REQUEST +17:45:54 Received From : +17:45:54 ============================================================================ +17:45:54 FNo. Len. Field Value +17:45:54 ============================================================================ +17:45:54 [ 1] [ 4] [0800] +17:45:54 [ 7] [ 10] [0320104501] +17:45:54 [ 11] [ 6] [157539] +17:45:54 [ 70] [ 3] [301] +17:45:54 ============================================================================ +17:45:54 + + +waiting on router queue for slot.... +17:45:54 Sending to : +17:45:54 ============================================================================ +17:45:54 ============================================================================ +17:45:54 Slot Id : <28> +17:45:54 Transaction Type : RESPONSE +17:45:54 Received From : +17:45:54 ============================================================================ +17:45:54 FNo. Len. Field Value +17:45:54 ============================================================================ +17:45:54 [ 1] [ 4] [0810] +17:45:54 [ 7] [ 10] [0320104501] +17:45:54 [ 11] [ 6] [157539] +17:45:54 [ 39] [ 2] [00] +17:45:54 [ 70] [ 3] [301] +17:45:54 ============================================================================ +17:45:54 Calculate Source COMM Id = 2 +17:45:54 ============================================================================ +17:45:54 + + +waiting on router queue for slot.... +17:45:57 ============================================================================ +17:45:57 Slot Id : <467> +17:45:57 Transaction Type : REQUEST +17:45:57 Received From : +17:45:57 ============================================================================ +17:45:57 FNo. Len. Field Value +17:45:57 ============================================================================ +17:45:57 [ 1] [ 4] [0200] +17:45:57 [ 2] [ 16] [6213541000356363] +17:45:57 [ 3] [ 6] [010000] +17:45:57 [ 4] [ 12] [000010000000] +17:45:57 [ 7] [ 10] [0320104503] +17:45:57 [ 11] [ 6] [270970] +17:45:57 [ 12] [ 6] [174503] +17:45:57 [ 13] [ 4] [0320] +17:45:57 [ 14] [ 4] [4912] +17:45:57 [ 15] [ 4] [0320] +17:45:57 [ 18] [ 4] [6011] +17:45:57 [ 19] [ 3] [418] +17:45:57 [ 22] [ 3] [021] +17:45:57 [ 25] [ 2] [01] +17:45:57 [ 28] [ 9] [D00002000] +17:45:57 [ 32] [ 6] [180893] +17:45:57 [ 35] [ 32] [6213541000356363=491212015636625] +17:45:57 [ 37] [ 12] [507910270970] +17:45:57 [ 41] [ 8] [0106NAXA] +17:45:57 [ 42] [ 15] [999999 ] +17:45:57 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +17:45:57 [ 49] [ 3] [418] +17:45:57 [ 52] [ 16] [83478B67AA0DA8A9] +17:45:57 ============================================================================ +17:45:57 + + +waiting on router queue for slot.... +17:45:57 Sending to : +17:45:57 ============================================================================ +17:45:57 Sending to : +17:45:57 ============================================================================ +17:45:57 ============================================================================ +17:45:57 Slot Id : <467> +17:45:57 Transaction Type : REQUEST +17:45:57 Received From : +17:45:57 ============================================================================ +17:45:57 FNo. Len. Field Value +17:45:57 ============================================================================ +17:45:57 [ 1] [ 4] [0200] +17:45:57 [ 2] [ 16] [6213541000356363] +17:45:57 [ 3] [ 6] [010000] +17:45:57 [ 4] [ 12] [000010000000] +17:45:57 [ 7] [ 10] [0320104503] +17:45:57 [ 11] [ 6] [270970] +17:45:57 [ 12] [ 6] [174503] +17:45:57 [ 13] [ 4] [0320] +17:45:57 [ 14] [ 4] [4912] +17:45:57 [ 15] [ 4] [0320] +17:45:57 [ 18] [ 4] [6011] +17:45:57 [ 19] [ 3] [418] +17:45:57 [ 22] [ 3] [021] +17:45:57 [ 25] [ 2] [01] +17:45:57 [ 28] [ 9] [D00002000] +17:45:57 [ 32] [ 6] [180893] +17:45:57 [ 35] [ 32] [6213541000356363=491212015636625] +17:45:57 [ 37] [ 12] [507910270970] +17:45:57 [ 41] [ 8] [0106NAXA] +17:45:57 [ 42] [ 15] [999999 ] +17:45:57 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +17:45:57 [ 49] [ 3] [418] +17:45:57 [ 52] [ 16] [83478B67AA0DA8A9] +17:45:57 ============================================================================ +17:45:57 + + +waiting on router queue for slot.... +17:45:57 Sending to : +17:45:57 ============================================================================ +17:45:57 ============================================================================ +17:45:57 Slot Id : <467> +17:45:57 Transaction Type : REQUEST +17:45:57 Received From : +17:45:57 ============================================================================ +17:45:57 FNo. Len. Field Value +17:45:57 ============================================================================ +17:45:57 [ 1] [ 4] [0200] +17:45:57 [ 2] [ 16] [6213541000356363] +17:45:57 [ 3] [ 6] [010000] +17:45:57 [ 4] [ 12] [000010000000] +17:45:57 [ 7] [ 10] [0320104503] +17:45:57 [ 11] [ 6] [270970] +17:45:57 [ 12] [ 6] [174503] +17:45:57 [ 13] [ 4] [0320] +17:45:57 [ 14] [ 4] [4912] +17:45:57 [ 15] [ 4] [0320] +17:45:57 [ 18] [ 4] [6011] +17:45:57 [ 19] [ 3] [418] +17:45:57 [ 22] [ 3] [021] +17:45:57 [ 25] [ 2] [01] +17:45:57 [ 28] [ 9] [D00002000] +17:45:57 [ 32] [ 6] [180893] +17:45:57 [ 35] [ 32] [6213541000356363=491212015636625] +17:45:57 [ 37] [ 12] [507910270970] +17:45:57 [ 41] [ 8] [0106NAXA] +17:45:57 [ 42] [ 15] [999999 ] +17:45:57 [ 43] [ 40] [ATM SERVICE UNIT NAXAITHONG LOCATION, Na] +17:45:57 [ 49] [ 3] [418] +17:45:57 [ 52] [ 16] [ECE584C83A73038F] +17:45:57 ============================================================================ +17:45:57 + + +waiting on router queue for slot.... +17:45:57 Sending to : <0> +17:45:57 ============================================================================ +17:45:58 ============================================================================ +17:45:58 Slot Id : <55> +17:45:58 Transaction Type : REQUEST +17:45:58 Received From : +17:45:58 ============================================================================ +17:45:58 FNo. Len. Field Value +17:45:58 ============================================================================ +17:45:58 [ 1] [ 4] [0800] +17:45:58 [ 7] [ 10] [0321005745] +17:45:58 [ 11] [ 6] [175745] +17:45:58 [ 37] [ 12] [57917175745] +17:45:58 [ 70] [ 3] [301] +17:45:58 ============================================================================ +17:45:58 + + +waiting on router queue for slot.... +17:45:58 Sending to : +17:45:58 ============================================================================ +17:45:58 ============================================================================ +17:45:58 Slot Id : <55> +17:45:58 Transaction Type : RESPONSE +17:45:58 Received From : +17:45:58 ============================================================================ +17:45:58 FNo. Len. Field Value +17:45:58 ============================================================================ +17:45:58 [ 1] [ 4] [0810] +17:45:58 [ 7] [ 10] [0321005745] +17:45:58 [ 11] [ 6] [175745] +17:45:58 [ 37] [ 12] [579171757450] +17:45:58 [ 39] [ 2] [00] +17:45:58 [ 70] [ 3] [810] +17:45:58 ============================================================================ +17:45:58 Calculate Source COMM Id = 6 +17:45:58 ============================================================================ +17:45:58 + + +waiting on router queue for slot.... +17:45:58 ============================================================================ +17:45:58 Slot Id : <467> +17:45:58 Transaction Type : RESPONSE +17:45:58 Received From : +17:45:58 ============================================================================ +17:45:58 FNo. Len. Field Value +17:45:58 ============================================================================ +17:45:58 [ 1] [ 4] [0210] +17:45:58 [ 2] [ 16] [6213541000356363] +17:45:58 [ 3] [ 6] [010000] +17:45:58 [ 4] [ 12] [000010000000] +17:45:58 [ 7] [ 10] [0320104503] +17:45:58 [ 11] [ 6] [270970] +17:45:58 [ 12] [ 6] [174503] +17:45:58 [ 13] [ 4] [0320] +17:45:58 [ 15] [ 4] [0320] +17:45:58 [ 18] [ 4] [6011] +17:45:58 [ 19] [ 3] [418] +17:45:58 [ 32] [ 6] [180893] +17:45:58 [ 35] [ 32] [6213541000356363=491212015636625] +17:45:58 [ 37] [ 12] [507910270970] +17:45:58 [ 38] [ 6] [681419] +17:45:58 [ 39] [ 2] [00] +17:45:58 [ 41] [ 8] [0106NAXA] +17:45:58 [ 49] [ 3] [418] +17:45:58 [ 54] [ 40] [0001418C0002516979800002418C000251697980] +17:45:58 ============================================================================ +17:45:58 Sending to : +17:45:58 ============================================================================ +17:45:58 + + +waiting on router queue for slot.... +17:45:59 ============================================================================ +17:45:59 Slot Id : <467> +17:45:59 Transaction Type : RESPONSE +17:45:59 Received From : +17:45:59 ============================================================================ +17:45:59 FNo. Len. Field Value +17:45:59 ============================================================================ +17:45:59 [ 1] [ 4] [0210] +17:45:59 [ 2] [ 16] [6213541000356363] +17:45:59 [ 3] [ 6] [010000] +17:45:59 [ 4] [ 12] [000010000000] +17:45:59 [ 7] [ 10] [0320104503] +17:45:59 [ 11] [ 6] [270970] +17:45:59 [ 12] [ 6] [174503] +17:45:59 [ 13] [ 4] [0320] +17:45:59 [ 15] [ 4] [0320] +17:45:59 [ 18] [ 4] [6011] +17:45:59 [ 19] [ 3] [418] +17:45:59 [ 32] [ 6] [180893] +17:45:59 [ 35] [ 32] [6213541000356363=491212015636625] +17:45:59 [ 37] [ 12] [507910270970] +17:45:59 [ 38] [ 6] [681419] +17:45:59 [ 39] [ 2] [00] +17:45:59 [ 41] [ 8] [0106NAXA] +17:45:59 [ 49] [ 3] [418] +17:45:59 [ 54] [ 40] [0001418C0002516979800002418C000251697980] +17:45:59 ============================================================================ +17:45:59 Calculate Source COMM Id = 2 +17:45:59 ============================================================================ +17:45:59 + + +waiting on router queue for slot.... +17:46:01 ============================================================================ +17:46:01 Slot Id : <7> +17:46:01 Transaction Type : REQUEST +17:46:01 Received From : +17:46:01 ============================================================================ +17:46:01 FNo. Len. Field Value +17:46:01 ============================================================================ +17:46:01 [ 1] [ 4] [0800] +17:46:01 [ 2] [ 5] [02531] +17:46:01 [ 3] [ 6] [579178] +17:46:01 [ 7] [ 10] [0320104601] +17:46:01 [ 11] [ 6] [807443] +17:46:01 [ 15] [ 10] [0320104601] +17:46:01 [ 37] [ 11] [57917807443] +17:46:01 [ 70] [ 3] [001] +17:46:01 ============================================================================ +17:46:01 + + +waiting on router queue for slot.... +17:46:01 ============================================================================ +17:46:01 Slot Id : <7> +17:46:01 Transaction Type : RESPONSE +17:46:01 Received From : +17:46:01 ============================================================================ +17:46:01 FNo. Len. Field Value +17:46:01 ============================================================================ +17:46:01 [ 1] [ 4] [0810] +17:46:01 [ 7] [ 10] [0320104601] +17:46:01 [ 11] [ 6] [807443] +17:46:01 [ 15] [ 4] [0320] +17:46:01 [ 37] [ 12] [57917807443] +17:46:01 [ 39] [ 2] [00] +17:46:01 [ 70] [ 3] [001] +17:46:01 ============================================================================ +17:46:01 Sending to : +17:46:01 ============================================================================ +17:46:01 + + +waiting on router queue for slot.... +17:46:09 ============================================================================ +17:46:09 Slot Id : <52> +17:46:09 Transaction Type : REQUEST +17:46:09 Received From : +17:46:09 ============================================================================ +17:46:09 FNo. Len. Field Value +17:46:09 ============================================================================ +17:46:09 [ 1] [ 4] [0200] +17:46:09 [ 2] [ 16] [1808930200049179] +17:46:09 [ 3] [ 6] [301000] +17:46:09 [ 4] [ 12] [000000000000] +17:46:09 [ 7] [ 10] [0320174604] +17:46:09 [ 11] [ 6] [819724] +17:46:09 [ 12] [ 6] [174604] +17:46:09 [ 13] [ 4] [0320] +17:46:09 [ 15] [ 4] [0320] +17:46:09 [ 18] [ 4] [6011] +17:46:09 [ 22] [ 3] [900] +17:46:09 [ 25] [ 2] [02] +17:46:09 [ 28] [ 9] [D00000000] +17:46:09 [ 32] [ 6] [621354] +17:46:09 [ 35] [ 27] [1808930200049179=1803500735] +17:46:09 [ 37] [ 12] [507903863725] +17:46:09 [ 41] [ 8] [01010200] +17:46:09 [ 42] [ 15] [NATIVE ] +17:46:09 [ 43] [ 40] [Thangone Market Xaythany LAO] +17:46:09 [ 49] [ 3] [418] +17:46:09 [ 52] [ 16] [CDF83498A5B93EC5] +17:46:09 ============================================================================ +17:46:09 + + +waiting on router queue for slot.... +17:46:09 Sending to : +17:46:09 ============================================================================ +17:46:09 Sending to : +17:46:09 ============================================================================ +17:46:09 ============================================================================ +17:46:09 Slot Id : <52> +17:46:09 Transaction Type : REQUEST +17:46:09 Received From : +17:46:09 ============================================================================ +17:46:09 FNo. Len. Field Value +17:46:09 ============================================================================ +17:46:09 [ 1] [ 4] [0200] +17:46:09 [ 2] [ 16] [1808930200049179] +17:46:09 [ 3] [ 6] [301000] +17:46:09 [ 4] [ 12] [000000000000] +17:46:09 [ 7] [ 10] [0320174604] +17:46:09 [ 11] [ 6] [819724] +17:46:09 [ 12] [ 6] [174604] +17:46:09 [ 13] [ 4] [0320] +17:46:09 [ 15] [ 4] [0320] +17:46:09 [ 18] [ 4] [6011] +17:46:09 [ 22] [ 3] [900] +17:46:09 [ 25] [ 2] [02] +17:46:09 [ 28] [ 9] [D00000000] +17:46:09 [ 32] [ 6] [621354] +17:46:09 [ 35] [ 27] [1808930200049179=1803500735] +17:46:09 [ 37] [ 12] [507903863725] +17:46:09 [ 41] [ 8] [01010200] +17:46:09 [ 42] [ 15] [NATIVE ] +17:46:09 [ 43] [ 40] [Thangone Market Xaythany LAO] +17:46:09 [ 49] [ 3] [418] +17:46:09 [ 52] [ 16] [CDF83498A5B93EC5] +17:46:09 ============================================================================ +17:46:09 + + +waiting on router queue for slot.... +17:46:09 Sending to : +17:46:09 ============================================================================ +17:46:09 ============================================================================ +17:46:09 Slot Id : <52> +17:46:09 Transaction Type : REQUEST +17:46:09 Received From : +17:46:09 ============================================================================ +17:46:09 FNo. Len. Field Value +17:46:09 ============================================================================ +17:46:09 [ 1] [ 4] [0200] +17:46:09 [ 2] [ 16] [1808930200049179] +17:46:09 [ 3] [ 6] [301000] +17:46:09 [ 4] [ 12] [000000000000] +17:46:09 [ 7] [ 10] [0320174604] +17:46:09 [ 11] [ 6] [819724] +17:46:09 [ 12] [ 6] [174604] +17:46:09 [ 13] [ 4] [0320] +17:46:09 [ 15] [ 4] [0320] +17:46:09 [ 18] [ 4] [6011] +17:46:09 [ 22] [ 3] [900] +17:46:09 [ 25] [ 2] [02] +17:46:09 [ 28] [ 9] [D00000000] +17:46:09 [ 32] [ 6] [621354] +17:46:09 [ 35] [ 27] [1808930200049179=1803500735] +17:46:09 [ 37] [ 12] [507903863725] +17:46:09 [ 41] [ 8] [01010200] +17:46:09 [ 42] [ 15] [NATIVE ] +17:46:09 [ 43] [ 40] [Thangone Market Xaythany LAO] +17:46:09 [ 49] [ 3] [418] +17:46:09 [ 52] [ 16] [0B53D0F4D95E0847] +17:46:09 ============================================================================ +17:46:09 + + +waiting on router queue for slot.... +17:46:09 Sending to : <2> +17:46:09 ============================================================================ +17:46:12 ============================================================================ +17:46:12 Slot Id : <52> +17:46:12 Transaction Type : RESPONSE +17:46:12 Received From : +17:46:12 ============================================================================ +17:46:12 FNo. Len. Field Value +17:46:12 ============================================================================ +17:46:12 [ 1] [ 4] [0210] +17:46:12 [ 2] [ 16] [1808930200049179] +17:46:12 [ 3] [ 6] [301000] +17:46:12 [ 7] [ 10] [0320174604] +17:46:12 [ 11] [ 6] [819724] +17:46:12 [ 12] [ 6] [174604] +17:46:12 [ 13] [ 4] [0320] +17:46:12 [ 14] [ 4] [1803] +17:46:12 [ 19] [ 3] [418] +17:46:12 [ 32] [ 6] [621354] +17:46:12 [ 37] [ 12] [507903863725] +17:46:12 [ 38] [ 6] [819724] +17:46:12 [ 39] [ 2] [00] +17:46:12 [ 41] [ 8] [01010200] +17:46:12 [ 49] [ 3] [418] +17:46:12 [ 52] [ 16] [0B53D0F4D95E0847] +17:46:12 [ 54] [ 20] [1002418C000341409000] +17:46:12 ============================================================================ +17:46:12 Sending to : +17:46:12 ============================================================================ +17:46:12 + + +waiting on router queue for slot.... +17:46:14 ============================================================================ +17:46:14 Slot Id : <52> +17:46:14 Transaction Type : RESPONSE +17:46:14 Received From : +17:46:14 ============================================================================ +17:46:14 FNo. Len. Field Value +17:46:14 ============================================================================ +17:46:14 [ 1] [ 4] [0210] +17:46:14 [ 2] [ 16] [1808930200049179] +17:46:14 [ 3] [ 6] [301000] +17:46:14 [ 7] [ 10] [0320174604] +17:46:14 [ 11] [ 6] [819724] +17:46:14 [ 12] [ 6] [174604] +17:46:14 [ 13] [ 4] [0320] +17:46:14 [ 14] [ 4] [1803] +17:46:14 [ 19] [ 3] [418] +17:46:14 [ 32] [ 6] [621354] +17:46:14 [ 37] [ 12] [507903863725] +17:46:14 [ 38] [ 6] [819724] +17:46:14 [ 39] [ 2] [00] +17:46:14 [ 41] [ 8] [01010200] +17:46:14 [ 49] [ 3] [418] +17:46:14 [ 52] [ 16] [0B53D0F4D95E0847] +17:46:14 [ 54] [ 20] [1002418C000341409000] +17:46:14 ============================================================================ +17:46:14 Calculate Source COMM Id = 0 +17:46:14 ============================================================================ +17:46:14 + + +waiting on router queue for slot.... +17:46:16 ============================================================================ +17:46:16 Slot Id : <61> +17:46:16 Transaction Type : REQUEST +17:46:16 Received From : +17:46:16 ============================================================================ +17:46:16 FNo. Len. Field Value +17:46:16 ============================================================================ +17:46:16 [ 1] [ 4] [0200] +17:46:16 [ 2] [ 16] [6213544001296976] +17:46:16 [ 3] [ 6] [010000] +17:46:16 [ 4] [ 12] [000100000000] +17:46:16 [ 7] [ 10] [0320104522] +17:46:16 [ 11] [ 6] [270973] +17:46:16 [ 12] [ 6] [174522] +17:46:16 [ 13] [ 4] [0320] +17:46:16 [ 14] [ 4] [4912] +17:46:16 [ 15] [ 4] [0320] +17:46:16 [ 18] [ 4] [6011] +17:46:16 [ 19] [ 3] [418] +17:46:16 [ 22] [ 3] [021] +17:46:16 [ 25] [ 2] [01] +17:46:16 [ 28] [ 9] [D00002000] +17:46:16 [ 32] [ 6] [180893] +17:46:16 [ 35] [ 32] [6213544001296976=491212019697755] +17:46:16 [ 37] [ 12] [507910270973] +17:46:16 [ 41] [ 8] [0528LPBP] +17:46:16 [ 42] [ 15] [999999 ] +17:46:16 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:46:16 [ 49] [ 3] [418] +17:46:16 [ 52] [ 16] [0772187C4A135F58] +17:46:16 ============================================================================ +17:46:16 + + +waiting on router queue for slot.... +17:46:16 Sending to : +17:46:16 ============================================================================ +17:46:16 Sending to : +17:46:16 ============================================================================ +17:46:16 ============================================================================ +17:46:16 Slot Id : <61> +17:46:16 Transaction Type : REQUEST +17:46:16 Received From : +17:46:16 ============================================================================ +17:46:16 FNo. Len. Field Value +17:46:16 ============================================================================ +17:46:16 [ 1] [ 4] [0200] +17:46:16 [ 2] [ 16] [6213544001296976] +17:46:16 [ 3] [ 6] [010000] +17:46:16 [ 4] [ 12] [000100000000] +17:46:16 [ 7] [ 10] [0320104522] +17:46:16 [ 11] [ 6] [270973] +17:46:16 [ 12] [ 6] [174522] +17:46:16 [ 13] [ 4] [0320] +17:46:16 [ 14] [ 4] [4912] +17:46:16 [ 15] [ 4] [0320] +17:46:16 [ 18] [ 4] [6011] +17:46:16 [ 19] [ 3] [418] +17:46:16 [ 22] [ 3] [021] +17:46:16 [ 25] [ 2] [01] +17:46:16 [ 28] [ 9] [D00002000] +17:46:16 [ 32] [ 6] [180893] +17:46:16 [ 35] [ 32] [6213544001296976=491212019697755] +17:46:16 [ 37] [ 12] [507910270973] +17:46:16 [ 41] [ 8] [0528LPBP] +17:46:16 [ 42] [ 15] [999999 ] +17:46:16 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:46:16 [ 49] [ 3] [418] +17:46:16 [ 52] [ 16] [0772187C4A135F58] +17:46:16 ============================================================================ +17:46:16 + + +waiting on router queue for slot.... +17:46:16 Sending to : +17:46:16 ============================================================================ +17:46:16 ============================================================================ +17:46:16 Slot Id : <61> +17:46:16 Transaction Type : REQUEST +17:46:16 Received From : +17:46:16 ============================================================================ +17:46:16 FNo. Len. Field Value +17:46:16 ============================================================================ +17:46:16 [ 1] [ 4] [0200] +17:46:16 [ 2] [ 16] [6213544001296976] +17:46:16 [ 3] [ 6] [010000] +17:46:16 [ 4] [ 12] [000100000000] +17:46:16 [ 7] [ 10] [0320104522] +17:46:16 [ 11] [ 6] [270973] +17:46:16 [ 12] [ 6] [174522] +17:46:16 [ 13] [ 4] [0320] +17:46:16 [ 14] [ 4] [4912] +17:46:16 [ 15] [ 4] [0320] +17:46:16 [ 18] [ 4] [6011] +17:46:16 [ 19] [ 3] [418] +17:46:16 [ 22] [ 3] [021] +17:46:16 [ 25] [ 2] [01] +17:46:16 [ 28] [ 9] [D00002000] +17:46:16 [ 32] [ 6] [180893] +17:46:16 [ 35] [ 32] [6213544001296976=491212019697755] +17:46:16 [ 37] [ 12] [507910270973] +17:46:16 [ 41] [ 8] [0528LPBP] +17:46:16 [ 42] [ 15] [999999 ] +17:46:16 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:46:16 [ 49] [ 3] [418] +17:46:16 [ 52] [ 16] [E222CF7E9849C15D] +17:46:16 ============================================================================ +17:46:16 + + +waiting on router queue for slot.... +17:46:16 Sending to : <0> +17:46:16 ============================================================================ +17:46:16 ============================================================================ +17:46:16 Slot Id : <61> +17:46:16 Transaction Type : RESPONSE +17:46:16 Received From : +17:46:16 ============================================================================ +17:46:16 FNo. Len. Field Value +17:46:16 ============================================================================ +17:46:16 [ 1] [ 4] [0210] +17:46:16 [ 2] [ 16] [6213544001296976] +17:46:16 [ 3] [ 6] [010000] +17:46:16 [ 4] [ 12] [000100000000] +17:46:16 [ 7] [ 10] [0320104522] +17:46:16 [ 11] [ 6] [270973] +17:46:16 [ 12] [ 6] [174522] +17:46:16 [ 13] [ 4] [0320] +17:46:16 [ 15] [ 4] [0320] +17:46:16 [ 18] [ 4] [6011] +17:46:16 [ 19] [ 3] [418] +17:46:16 [ 32] [ 6] [180893] +17:46:16 [ 35] [ 32] [6213544001296976=491212019697755] +17:46:16 [ 37] [ 12] [507910270973] +17:46:16 [ 38] [ 6] [331774] +17:46:16 [ 39] [ 2] [00] +17:46:16 [ 41] [ 8] [0528LPBP] +17:46:16 [ 49] [ 3] [418] +17:46:16 [ 54] [ 40] [0001418C0005113966420002418C000511396642] +17:46:16 ============================================================================ +17:46:16 Sending to : +17:46:16 ============================================================================ +17:46:16 + + +waiting on router queue for slot.... +17:46:18 ============================================================================ +17:46:18 Slot Id : <61> +17:46:18 Transaction Type : RESPONSE +17:46:18 Received From : +17:46:18 ============================================================================ +17:46:18 FNo. Len. Field Value +17:46:18 ============================================================================ +17:46:18 [ 1] [ 4] [0210] +17:46:18 [ 2] [ 16] [6213544001296976] +17:46:18 [ 3] [ 6] [010000] +17:46:18 [ 4] [ 12] [000100000000] +17:46:18 [ 7] [ 10] [0320104522] +17:46:18 [ 11] [ 6] [270973] +17:46:18 [ 12] [ 6] [174522] +17:46:18 [ 13] [ 4] [0320] +17:46:18 [ 15] [ 4] [0320] +17:46:18 [ 18] [ 4] [6011] +17:46:18 [ 19] [ 3] [418] +17:46:18 [ 32] [ 6] [180893] +17:46:18 [ 35] [ 32] [6213544001296976=491212019697755] +17:46:18 [ 37] [ 12] [507910270973] +17:46:18 [ 38] [ 6] [331774] +17:46:18 [ 39] [ 2] [00] +17:46:18 [ 41] [ 8] [0528LPBP] +17:46:18 [ 49] [ 3] [418] +17:46:18 [ 54] [ 40] [0001418C0005113966420002418C000511396642] +17:46:18 ============================================================================ +17:46:18 Calculate Source COMM Id = 2 +17:46:18 ============================================================================ +17:46:18 + + +waiting on router queue for slot.... +17:46:23 ============================================================================ +17:46:23 Slot Id : <44> +17:46:23 Transaction Type : REQUEST +17:46:23 Received From : +17:46:23 ============================================================================ +17:46:23 FNo. Len. Field Value +17:46:23 ============================================================================ +17:46:23 [ 1] [ 4] [0800] +17:46:23 [ 7] [ 10] [0320104412] +17:46:23 [ 11] [ 6] [093819] +17:46:23 [ 37] [ 12] [57917093819] +17:46:23 [ 70] [ 3] [301] +17:46:23 ============================================================================ +17:46:23 + + +waiting on router queue for slot.... +17:46:23 Sending to : +17:46:23 ============================================================================ +17:46:23 ============================================================================ +17:46:23 Slot Id : <44> +17:46:23 Transaction Type : RESPONSE +17:46:23 Received From : +17:46:23 ============================================================================ +17:46:23 FNo. Len. Field Value +17:46:23 ============================================================================ +17:46:23 [ 1] [ 4] [0810] +17:46:23 [ 7] [ 10] [0320104412] +17:46:23 [ 11] [ 6] [093819] +17:46:23 [ 37] [ 12] [579170938190] +17:46:23 [ 39] [ 2] [00] +17:46:23 [ 70] [ 3] [810] +17:46:23 ============================================================================ +17:46:23 Calculate Source COMM Id = 4 +17:46:23 ============================================================================ +17:46:23 + + +waiting on router queue for slot.... +17:46:27 ============================================================================ +17:46:27 Slot Id : <25> +17:46:27 Transaction Type : REQUEST +17:46:27 Received From : +17:46:27 ============================================================================ +17:46:27 FNo. Len. Field Value +17:46:27 ============================================================================ +17:46:27 [ 1] [ 4] [0200] +17:46:27 [ 2] [ 16] [6213545000610786] +17:46:27 [ 3] [ 6] [010000] +17:46:27 [ 4] [ 12] [000100000000] +17:46:27 [ 7] [ 10] [0320174416] +17:46:27 [ 11] [ 6] [953888] +17:46:27 [ 12] [ 6] [174416] +17:46:27 [ 13] [ 4] [0320] +17:46:27 [ 15] [ 4] [0320] +17:46:27 [ 18] [ 4] [6011] +17:46:27 [ 19] [ 3] [418] +17:46:27 [ 22] [ 3] [021] +17:46:27 [ 25] [ 2] [01] +17:46:27 [ 28] [ 9] [D00002000] +17:46:27 [ 32] [ 6] [668899] +17:46:27 [ 35] [ 32] [6213545000610786=491212011078686] +17:46:27 [ 37] [ 12] [507902475751] +17:46:27 [ 41] [ 8] [03020032] +17:46:27 [ 42] [ 15] [APT ] +17:46:27 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +17:46:27 [ 49] [ 3] [418] +17:46:27 [ 52] [ 16] [AB18CFB3D3583EF1] +17:46:27 ============================================================================ +17:46:27 + + +waiting on router queue for slot.... +17:46:27 Sending to : +17:46:27 ============================================================================ +17:46:27 Sending to : +17:46:27 ============================================================================ +17:46:27 ============================================================================ +17:46:27 Slot Id : <25> +17:46:27 Transaction Type : REQUEST +17:46:27 Received From : +17:46:27 ============================================================================ +17:46:27 FNo. Len. Field Value +17:46:27 ============================================================================ +17:46:27 [ 1] [ 4] [0200] +17:46:27 [ 2] [ 16] [6213545000610786] +17:46:27 [ 3] [ 6] [010000] +17:46:27 [ 4] [ 12] [000100000000] +17:46:27 [ 7] [ 10] [0320174416] +17:46:27 [ 11] [ 6] [953888] +17:46:27 [ 12] [ 6] [174416] +17:46:27 [ 13] [ 4] [0320] +17:46:27 [ 15] [ 4] [0320] +17:46:27 [ 18] [ 4] [6011] +17:46:27 [ 19] [ 3] [418] +17:46:27 [ 22] [ 3] [021] +17:46:27 [ 25] [ 2] [01] +17:46:27 [ 28] [ 9] [D00002000] +17:46:27 [ 32] [ 6] [668899] +17:46:27 [ 35] [ 32] [6213545000610786=491212011078686] +17:46:27 [ 37] [ 12] [507902475751] +17:46:27 [ 41] [ 8] [03020032] +17:46:27 [ 42] [ 15] [APT ] +17:46:27 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +17:46:27 [ 49] [ 3] [418] +17:46:27 [ 52] [ 16] [AB18CFB3D3583EF1] +17:46:27 ============================================================================ +17:46:27 + + +waiting on router queue for slot.... +17:46:27 Sending to : +17:46:27 ============================================================================ +17:46:27 ============================================================================ +17:46:27 Slot Id : <25> +17:46:27 Transaction Type : REQUEST +17:46:27 Received From : +17:46:27 ============================================================================ +17:46:27 FNo. Len. Field Value +17:46:27 ============================================================================ +17:46:27 [ 1] [ 4] [0200] +17:46:27 [ 2] [ 16] [6213545000610786] +17:46:27 [ 3] [ 6] [010000] +17:46:27 [ 4] [ 12] [000100000000] +17:46:27 [ 7] [ 10] [0320174416] +17:46:27 [ 11] [ 6] [953888] +17:46:27 [ 12] [ 6] [174416] +17:46:27 [ 13] [ 4] [0320] +17:46:27 [ 15] [ 4] [0320] +17:46:27 [ 18] [ 4] [6011] +17:46:27 [ 19] [ 3] [418] +17:46:27 [ 22] [ 3] [021] +17:46:27 [ 25] [ 2] [01] +17:46:27 [ 28] [ 9] [D00002000] +17:46:27 [ 32] [ 6] [668899] +17:46:27 [ 35] [ 32] [6213545000610786=491212011078686] +17:46:27 [ 37] [ 12] [507902475751] +17:46:27 [ 41] [ 8] [03020032] +17:46:27 [ 42] [ 15] [APT ] +17:46:27 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +17:46:27 [ 49] [ 3] [418] +17:46:27 [ 52] [ 16] [AAE0848D25D50B49] +17:46:27 ============================================================================ +17:46:27 + + +waiting on router queue for slot.... +17:46:27 Sending to : <0> +17:46:27 ============================================================================ +17:46:27 ============================================================================ +17:46:27 Slot Id : <25> +17:46:27 Transaction Type : RESPONSE +17:46:27 Received From : +17:46:27 ============================================================================ +17:46:27 FNo. Len. Field Value +17:46:27 ============================================================================ +17:46:27 [ 1] [ 4] [0210] +17:46:27 [ 2] [ 16] [6213545000610786] +17:46:27 [ 3] [ 6] [010000] +17:46:27 [ 4] [ 12] [000100000000] +17:46:27 [ 7] [ 10] [0320174416] +17:46:27 [ 11] [ 6] [953888] +17:46:27 [ 12] [ 6] [174416] +17:46:27 [ 13] [ 4] [0320] +17:46:27 [ 15] [ 4] [0320] +17:46:27 [ 18] [ 4] [6011] +17:46:27 [ 19] [ 3] [418] +17:46:27 [ 32] [ 6] [668899] +17:46:27 [ 35] [ 32] [6213545000610786=491212011078686] +17:46:27 [ 37] [ 12] [507902475751] +17:46:27 [ 38] [ 6] [440574] +17:46:27 [ 39] [ 2] [00] +17:46:27 [ 41] [ 8] [03020032] +17:46:27 [ 49] [ 3] [418] +17:46:27 [ 54] [ 40] [0001418C0000598786650002418C000059878665] +17:46:27 ============================================================================ +17:46:27 Sending to : +17:46:27 ============================================================================ +17:46:27 + + +waiting on router queue for slot.... +17:46:29 ============================================================================ +17:46:29 Slot Id : <25> +17:46:29 Transaction Type : RESPONSE +17:46:29 Received From : +17:46:29 ============================================================================ +17:46:29 FNo. Len. Field Value +17:46:29 ============================================================================ +17:46:29 [ 1] [ 4] [0210] +17:46:29 [ 2] [ 16] [6213545000610786] +17:46:29 [ 3] [ 6] [010000] +17:46:29 [ 4] [ 12] [000100000000] +17:46:29 [ 7] [ 10] [0320174416] +17:46:29 [ 11] [ 6] [953888] +17:46:29 [ 12] [ 6] [174416] +17:46:29 [ 13] [ 4] [0320] +17:46:29 [ 15] [ 4] [0320] +17:46:29 [ 18] [ 4] [6011] +17:46:29 [ 19] [ 3] [418] +17:46:29 [ 32] [ 6] [668899] +17:46:29 [ 35] [ 32] [6213545000610786=491212011078686] +17:46:29 [ 37] [ 12] [507902475751] +17:46:29 [ 38] [ 6] [440574] +17:46:29 [ 39] [ 2] [00] +17:46:29 [ 41] [ 8] [03020032] +17:46:29 [ 49] [ 3] [418] +17:46:29 [ 54] [ 40] [0001418C0000598786650002418C000059878665] +17:46:29 ============================================================================ +17:46:29 Calculate Source COMM Id = 4 +17:46:29 ============================================================================ +17:46:29 + + +waiting on router queue for slot.... +17:46:31 ============================================================================ +17:46:31 Slot Id : <50> +17:46:31 Transaction Type : REQUEST +17:46:31 Received From : +17:46:31 ============================================================================ +17:46:31 FNo. Len. Field Value +17:46:31 ============================================================================ +17:46:31 [ 1] [ 4] [0800] +17:46:31 [ 7] [ 10] [0320104538] +17:46:31 [ 11] [ 6] [157540] +17:46:31 [ 70] [ 3] [301] +17:46:31 ============================================================================ +17:46:31 + + +waiting on router queue for slot.... +17:46:31 Sending to : +17:46:31 ============================================================================ +17:46:31 ============================================================================ +17:46:31 Slot Id : <50> +17:46:31 Transaction Type : RESPONSE +17:46:31 Received From : +17:46:31 ============================================================================ +17:46:31 FNo. Len. Field Value +17:46:31 ============================================================================ +17:46:31 [ 1] [ 4] [0810] +17:46:31 [ 7] [ 10] [0320104538] +17:46:31 [ 11] [ 6] [157540] +17:46:31 [ 39] [ 2] [00] +17:46:31 [ 70] [ 3] [301] +17:46:31 ============================================================================ +17:46:31 Calculate Source COMM Id = 2 +17:46:31 ============================================================================ +17:46:31 + + +waiting on router queue for slot.... +17:46:34 ============================================================================ +17:46:34 Slot Id : <60> +17:46:34 Transaction Type : REQUEST +17:46:34 Received From : +17:46:34 ============================================================================ +17:46:34 FNo. Len. Field Value +17:46:34 ============================================================================ +17:46:34 [ 1] [ 4] [0200] +17:46:34 [ 2] [ 16] [6213544002158258] +17:46:34 [ 3] [ 6] [301000] +17:46:34 [ 4] [ 12] [000000000000] +17:46:34 [ 7] [ 10] [0320174655] +17:46:34 [ 11] [ 6] [209845] +17:46:34 [ 12] [ 6] [174157] +17:46:34 [ 13] [ 4] [0320] +17:46:34 [ 14] [ 4] [4912] +17:46:34 [ 15] [ 4] [0320] +17:46:34 [ 18] [ 4] [6011] +17:46:34 [ 19] [ 3] [418] +17:46:34 [ 22] [ 3] [021] +17:46:34 [ 25] [ 2] [01] +17:46:34 [ 28] [ 9] [D00000000] +17:46:34 [ 32] [ 6] [198901] +17:46:34 [ 35] [ 32] [6213544002158258=491212015825334] +17:46:34 [ 37] [ 12] [507917209845] +17:46:34 [ 41] [ 8] [19529001] +17:46:34 [ 42] [ 15] [000000041952901] +17:46:34 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:46:34 [ 49] [ 3] [418] +17:46:34 [ 52] [ 16] [7A969A60C109D5E3] +17:46:34 ============================================================================ +17:46:34 + + +waiting on router queue for slot.... +17:46:34 Sending to : +17:46:34 ============================================================================ +17:46:34 Sending to : +17:46:34 ============================================================================ +17:46:35 ============================================================================ +17:46:35 Slot Id : <60> +17:46:35 Transaction Type : REQUEST +17:46:35 Received From : +17:46:35 ============================================================================ +17:46:35 FNo. Len. Field Value +17:46:35 ============================================================================ +17:46:35 [ 1] [ 4] [0200] +17:46:35 [ 2] [ 16] [6213544002158258] +17:46:35 [ 3] [ 6] [301000] +17:46:35 [ 4] [ 12] [000000000000] +17:46:35 [ 7] [ 10] [0320174655] +17:46:35 [ 11] [ 6] [209845] +17:46:35 [ 12] [ 6] [174157] +17:46:35 [ 13] [ 4] [0320] +17:46:35 [ 14] [ 4] [4912] +17:46:35 [ 15] [ 4] [0320] +17:46:35 [ 18] [ 4] [6011] +17:46:35 [ 19] [ 3] [418] +17:46:35 [ 22] [ 3] [021] +17:46:35 [ 25] [ 2] [01] +17:46:35 [ 28] [ 9] [D00000000] +17:46:35 [ 32] [ 6] [198901] +17:46:35 [ 35] [ 32] [6213544002158258=491212015825334] +17:46:35 [ 37] [ 12] [507917209845] +17:46:35 [ 41] [ 8] [19529001] +17:46:35 [ 42] [ 15] [000000041952901] +17:46:35 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:46:35 [ 49] [ 3] [418] +17:46:35 [ 52] [ 16] [7A969A60C109D5E3] +17:46:35 ============================================================================ +17:46:35 + + +waiting on router queue for slot.... +17:46:35 Sending to : +17:46:35 ============================================================================ +17:46:35 ============================================================================ +17:46:35 Slot Id : <60> +17:46:35 Transaction Type : REQUEST +17:46:35 Received From : +17:46:35 ============================================================================ +17:46:35 FNo. Len. Field Value +17:46:35 ============================================================================ +17:46:35 [ 1] [ 4] [0200] +17:46:35 [ 2] [ 16] [6213544002158258] +17:46:35 [ 3] [ 6] [301000] +17:46:35 [ 4] [ 12] [000000000000] +17:46:35 [ 7] [ 10] [0320174655] +17:46:35 [ 11] [ 6] [209845] +17:46:35 [ 12] [ 6] [174157] +17:46:35 [ 13] [ 4] [0320] +17:46:35 [ 14] [ 4] [4912] +17:46:35 [ 15] [ 4] [0320] +17:46:35 [ 18] [ 4] [6011] +17:46:35 [ 19] [ 3] [418] +17:46:35 [ 22] [ 3] [021] +17:46:35 [ 25] [ 2] [01] +17:46:35 [ 28] [ 9] [D00000000] +17:46:35 [ 32] [ 6] [198901] +17:46:35 [ 35] [ 32] [6213544002158258=491212015825334] +17:46:35 [ 37] [ 12] [507917209845] +17:46:35 [ 41] [ 8] [19529001] +17:46:35 [ 42] [ 15] [000000041952901] +17:46:35 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:46:35 [ 49] [ 3] [418] +17:46:35 [ 52] [ 16] [755C6772D15C4B92] +17:46:35 ============================================================================ +17:46:35 + + +waiting on router queue for slot.... +17:46:35 Sending to : <0> +17:46:35 ============================================================================ +17:46:35 ============================================================================ +17:46:35 Slot Id : <60> +17:46:35 Transaction Type : RESPONSE +17:46:35 Received From : +17:46:35 ============================================================================ +17:46:35 FNo. Len. Field Value +17:46:35 ============================================================================ +17:46:35 [ 1] [ 4] [0210] +17:46:35 [ 2] [ 16] [6213544002158258] +17:46:35 [ 3] [ 6] [301000] +17:46:35 [ 4] [ 12] [000000000000] +17:46:35 [ 7] [ 10] [0320174655] +17:46:35 [ 11] [ 6] [209845] +17:46:35 [ 12] [ 6] [174157] +17:46:35 [ 13] [ 4] [0320] +17:46:35 [ 15] [ 4] [0320] +17:46:35 [ 18] [ 4] [6011] +17:46:35 [ 19] [ 3] [418] +17:46:35 [ 32] [ 6] [198901] +17:46:35 [ 35] [ 32] [6213544002158258=491212015825334] +17:46:35 [ 37] [ 12] [507917209845] +17:46:35 [ 38] [ 6] [177425] +17:46:35 [ 39] [ 2] [00] +17:46:35 [ 41] [ 8] [19529001] +17:46:35 [ 49] [ 3] [418] +17:46:35 [ 54] [ 40] [1001418C0000526258841002418C000052625884] +17:46:35 ============================================================================ +17:46:35 Sending to : +17:46:35 ============================================================================ +17:46:35 + + +waiting on router queue for slot.... +17:46:37 ============================================================================ +17:46:37 Slot Id : <60> +17:46:37 Transaction Type : RESPONSE +17:46:37 Received From : +17:46:37 ============================================================================ +17:46:37 FNo. Len. Field Value +17:46:37 ============================================================================ +17:46:37 [ 1] [ 4] [0210] +17:46:37 [ 2] [ 16] [6213544002158258] +17:46:37 [ 3] [ 6] [301000] +17:46:37 [ 4] [ 12] [000000000000] +17:46:37 [ 7] [ 10] [0320174655] +17:46:37 [ 11] [ 6] [209845] +17:46:37 [ 12] [ 6] [174157] +17:46:37 [ 13] [ 4] [0320] +17:46:37 [ 15] [ 4] [0320] +17:46:37 [ 18] [ 4] [6011] +17:46:37 [ 19] [ 3] [418] +17:46:37 [ 32] [ 6] [198901] +17:46:37 [ 35] [ 32] [6213544002158258=491212015825334] +17:46:37 [ 37] [ 12] [507917209845] +17:46:37 [ 38] [ 6] [177425] +17:46:37 [ 39] [ 2] [00] +17:46:37 [ 41] [ 8] [19529001] +17:46:37 [ 49] [ 3] [418] +17:46:37 [ 54] [ 40] [1001418C0000526258841002418C000052625884] +17:46:37 ============================================================================ +17:46:37 Calculate Source COMM Id = 5 +17:46:37 ============================================================================ +17:46:37 + + +waiting on router queue for slot.... +17:46:39 ============================================================================ +17:46:39 Slot Id : <478> +17:46:39 Transaction Type : REQUEST +17:46:39 Received From : +17:46:39 ============================================================================ +17:46:39 FNo. Len. Field Value +17:46:39 ============================================================================ +17:46:39 [ 1] [ 4] [0200] +17:46:39 [ 2] [ 16] [6688990103592000] +17:46:39 [ 3] [ 6] [301000] +17:46:39 [ 4] [ 12] [000000000000] +17:46:39 [ 7] [ 10] [0320174634] +17:46:39 [ 11] [ 6] [819840] +17:46:39 [ 12] [ 6] [174634] +17:46:39 [ 13] [ 4] [0320] +17:46:39 [ 15] [ 4] [0320] +17:46:39 [ 18] [ 4] [6011] +17:46:39 [ 22] [ 3] [900] +17:46:39 [ 25] [ 2] [02] +17:46:39 [ 28] [ 9] [D00000000] +17:46:39 [ 32] [ 6] [621354] +17:46:39 [ 35] [ 37] [6688990103592000=43011231200072600000] +17:46:39 [ 37] [ 12] [507903489498] +17:46:39 [ 41] [ 8] [06002100] +17:46:39 [ 42] [ 15] [NATIVE ] +17:46:39 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:46:39 [ 49] [ 3] [418] +17:46:39 [ 52] [ 16] [A3271719D22EC834] +17:46:39 ============================================================================ +17:46:39 + + +waiting on router queue for slot.... +17:46:39 Sending to : +17:46:39 ============================================================================ +17:46:39 Sending to : +17:46:39 ============================================================================ +17:46:39 ============================================================================ +17:46:39 Slot Id : <478> +17:46:39 Transaction Type : REQUEST +17:46:39 Received From : +17:46:39 ============================================================================ +17:46:39 FNo. Len. Field Value +17:46:39 ============================================================================ +17:46:39 [ 1] [ 4] [0200] +17:46:39 [ 2] [ 16] [6688990103592000] +17:46:39 [ 3] [ 6] [301000] +17:46:39 [ 4] [ 12] [000000000000] +17:46:39 [ 7] [ 10] [0320174634] +17:46:39 [ 11] [ 6] [819840] +17:46:39 [ 12] [ 6] [174634] +17:46:39 [ 13] [ 4] [0320] +17:46:39 [ 15] [ 4] [0320] +17:46:39 [ 18] [ 4] [6011] +17:46:39 [ 22] [ 3] [900] +17:46:39 [ 25] [ 2] [02] +17:46:39 [ 28] [ 9] [D00000000] +17:46:39 [ 32] [ 6] [621354] +17:46:39 [ 35] [ 37] [6688990103592000=43011231200072600000] +17:46:39 [ 37] [ 12] [507903489498] +17:46:39 [ 41] [ 8] [06002100] +17:46:39 [ 42] [ 15] [NATIVE ] +17:46:39 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:46:39 [ 49] [ 3] [418] +17:46:39 [ 52] [ 16] [A3271719D22EC834] +17:46:39 ============================================================================ +17:46:39 + + +waiting on router queue for slot.... +17:46:39 Sending to : +17:46:39 ============================================================================ +17:46:39 ============================================================================ +17:46:39 Slot Id : <478> +17:46:39 Transaction Type : REQUEST +17:46:39 Received From : +17:46:39 ============================================================================ +17:46:39 FNo. Len. Field Value +17:46:39 ============================================================================ +17:46:39 [ 1] [ 4] [0200] +17:46:39 [ 2] [ 16] [6688990103592000] +17:46:39 [ 3] [ 6] [301000] +17:46:39 [ 4] [ 12] [000000000000] +17:46:39 [ 7] [ 10] [0320174634] +17:46:39 [ 11] [ 6] [819840] +17:46:39 [ 12] [ 6] [174634] +17:46:39 [ 13] [ 4] [0320] +17:46:39 [ 15] [ 4] [0320] +17:46:39 [ 18] [ 4] [6011] +17:46:39 [ 22] [ 3] [900] +17:46:39 [ 25] [ 2] [02] +17:46:39 [ 28] [ 9] [D00000000] +17:46:39 [ 32] [ 6] [621354] +17:46:39 [ 35] [ 37] [6688990103592000=43011231200072600000] +17:46:39 [ 37] [ 12] [507903489498] +17:46:39 [ 41] [ 8] [06002100] +17:46:39 [ 42] [ 15] [NATIVE ] +17:46:39 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:46:39 [ 49] [ 3] [418] +17:46:39 [ 52] [ 16] [E6BC22B7B6A4AFFD] +17:46:39 ============================================================================ +17:46:39 + + +waiting on router queue for slot.... +17:46:39 Sending to : <4> +17:46:39 ============================================================================ +17:46:40 ============================================================================ +17:46:40 Slot Id : <478> +17:46:40 Transaction Type : RESPONSE +17:46:40 Received From : +17:46:40 ============================================================================ +17:46:40 FNo. Len. Field Value +17:46:40 ============================================================================ +17:46:40 [ 1] [ 4] [0210] +17:46:40 [ 2] [ 16] [6688990103592000] +17:46:40 [ 3] [ 6] [301000] +17:46:40 [ 4] [ 12] [000000000000] +17:46:40 [ 11] [ 6] [819840] +17:46:40 [ 12] [ 6] [174634] +17:46:40 [ 15] [ 4] [0320] +17:46:40 [ 18] [ 4] [6011] +17:46:40 [ 32] [ 6] [621354] +17:46:40 [ 35] [ 37] [6688990103592000=43011231200072600000] +17:46:40 [ 37] [ 12] [507903489498] +17:46:40 [ 38] [ 6] [446412] +17:46:40 [ 39] [ 2] [00] +17:46:40 [ 41] [ 8] [06002100] +17:46:40 [ 49] [ 3] [418] +17:46:40 [ 54] [ 20] [1002418C000189020311] +17:46:40 ============================================================================ +17:46:40 Sending to : +17:46:40 ============================================================================ +17:46:40 + + +waiting on router queue for slot.... +17:46:42 ============================================================================ +17:46:42 Slot Id : <478> +17:46:42 Transaction Type : RESPONSE +17:46:42 Received From : +17:46:42 ============================================================================ +17:46:42 FNo. Len. Field Value +17:46:42 ============================================================================ +17:46:42 [ 1] [ 4] [0210] +17:46:42 [ 2] [ 16] [6688990103592000] +17:46:42 [ 3] [ 6] [301000] +17:46:42 [ 4] [ 12] [000000000000] +17:46:42 [ 11] [ 6] [819840] +17:46:42 [ 12] [ 6] [174634] +17:46:42 [ 15] [ 4] [0320] +17:46:42 [ 18] [ 4] [6011] +17:46:42 [ 32] [ 6] [621354] +17:46:42 [ 35] [ 37] [6688990103592000=43011231200072600000] +17:46:42 [ 37] [ 12] [507903489498] +17:46:42 [ 38] [ 6] [446412] +17:46:42 [ 39] [ 2] [00] +17:46:42 [ 41] [ 8] [06002100] +17:46:42 [ 49] [ 3] [418] +17:46:42 [ 54] [ 20] [1002418C000189020311] +17:46:42 ============================================================================ +17:46:42 Calculate Source COMM Id = 0 +17:46:42 ============================================================================ +17:46:42 + + +waiting on router queue for slot.... +17:46:42 ============================================================================ +17:46:42 Slot Id : <15> +17:46:42 Transaction Type : REQUEST +17:46:42 Received From : +17:46:42 ============================================================================ +17:46:42 FNo. Len. Field Value +17:46:42 ============================================================================ +17:46:42 [ 1] [ 4] [0800] +17:46:42 [ 7] [ 10] [0320104549] +17:46:42 [ 11] [ 6] [157541] +17:46:42 [ 70] [ 3] [301] +17:46:42 ============================================================================ +17:46:42 + + +waiting on router queue for slot.... +17:46:42 Sending to : +17:46:42 ============================================================================ +17:46:42 ============================================================================ +17:46:42 Slot Id : <15> +17:46:42 Transaction Type : RESPONSE +17:46:42 Received From : +17:46:42 ============================================================================ +17:46:42 FNo. Len. Field Value +17:46:42 ============================================================================ +17:46:42 [ 1] [ 4] [0810] +17:46:42 [ 7] [ 10] [0320104549] +17:46:42 [ 11] [ 6] [157541] +17:46:42 [ 39] [ 2] [00] +17:46:42 [ 70] [ 3] [301] +17:46:42 ============================================================================ +17:46:42 Calculate Source COMM Id = 2 +17:46:42 ============================================================================ +17:46:42 + + +waiting on router queue for slot.... +17:46:43 ============================================================================ +17:46:43 Slot Id : <63> +17:46:43 Transaction Type : REQUEST +17:46:43 Received From : +17:46:43 ============================================================================ +17:46:43 FNo. Len. Field Value +17:46:43 ============================================================================ +17:46:43 [ 1] [ 4] [0200] +17:46:43 [ 2] [ 16] [1999990000015159] +17:46:43 [ 3] [ 6] [013000] +17:46:43 [ 4] [ 12] [000100000000] +17:46:43 [ 7] [ 10] [0320174638] +17:46:43 [ 11] [ 6] [819854] +17:46:43 [ 12] [ 6] [174638] +17:46:43 [ 13] [ 4] [0320] +17:46:43 [ 15] [ 4] [0320] +17:46:43 [ 18] [ 4] [6011] +17:46:43 [ 22] [ 3] [900] +17:46:43 [ 25] [ 2] [02] +17:46:43 [ 28] [ 9] [D00002000] +17:46:43 [ 32] [ 6] [621354] +17:46:43 [ 35] [ 32] [1999990000015159=000010100000765] +17:46:43 [ 37] [ 12] [507902706633] +17:46:43 [ 41] [ 8] [14000900] +17:46:43 [ 42] [ 15] [NATIVE ] +17:46:43 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:46:43 [ 49] [ 3] [418] +17:46:43 [ 52] [ 16] [D220399309D270CB] +17:46:43 ============================================================================ +17:46:43 + + +waiting on router queue for slot.... +17:46:43 Sending to : +17:46:43 ============================================================================ +17:46:43 Sending to : +17:46:43 ============================================================================ +17:46:43 ============================================================================ +17:46:43 Slot Id : <63> +17:46:43 Transaction Type : REQUEST +17:46:43 Received From : +17:46:43 ============================================================================ +17:46:43 FNo. Len. Field Value +17:46:43 ============================================================================ +17:46:43 [ 1] [ 4] [0200] +17:46:43 [ 2] [ 16] [1999990000015159] +17:46:43 [ 3] [ 6] [013000] +17:46:43 [ 4] [ 12] [000100000000] +17:46:43 [ 7] [ 10] [0320174638] +17:46:43 [ 11] [ 6] [819854] +17:46:43 [ 12] [ 6] [174638] +17:46:43 [ 13] [ 4] [0320] +17:46:43 [ 15] [ 4] [0320] +17:46:43 [ 18] [ 4] [6011] +17:46:43 [ 22] [ 3] [900] +17:46:43 [ 25] [ 2] [02] +17:46:43 [ 28] [ 9] [D00002000] +17:46:43 [ 32] [ 6] [621354] +17:46:43 [ 35] [ 32] [1999990000015159=000010100000765] +17:46:43 [ 37] [ 12] [507902706633] +17:46:43 [ 41] [ 8] [14000900] +17:46:43 [ 42] [ 15] [NATIVE ] +17:46:43 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:46:43 [ 49] [ 3] [418] +17:46:43 [ 52] [ 16] [D220399309D270CB] +17:46:43 ============================================================================ +17:46:43 + + +waiting on router queue for slot.... +17:46:43 Sending to : +17:46:43 ============================================================================ +17:46:43 ============================================================================ +17:46:43 Slot Id : <63> +17:46:43 Transaction Type : REQUEST +17:46:43 Received From : +17:46:43 ============================================================================ +17:46:43 FNo. Len. Field Value +17:46:43 ============================================================================ +17:46:43 [ 1] [ 4] [0200] +17:46:43 [ 2] [ 16] [1999990000015159] +17:46:43 [ 3] [ 6] [013000] +17:46:43 [ 4] [ 12] [000100000000] +17:46:43 [ 7] [ 10] [0320174638] +17:46:43 [ 11] [ 6] [819854] +17:46:43 [ 12] [ 6] [174638] +17:46:43 [ 13] [ 4] [0320] +17:46:43 [ 15] [ 4] [0320] +17:46:43 [ 18] [ 4] [6011] +17:46:43 [ 22] [ 3] [900] +17:46:43 [ 25] [ 2] [02] +17:46:43 [ 28] [ 9] [D00002000] +17:46:43 [ 32] [ 6] [621354] +17:46:43 [ 35] [ 32] [1999990000015159=000010100000765] +17:46:43 [ 37] [ 12] [507902706633] +17:46:43 [ 41] [ 8] [14000900] +17:46:43 [ 42] [ 15] [NATIVE ] +17:46:43 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:46:43 [ 49] [ 3] [418] +17:46:43 [ 52] [ 16] [A19B9815F4F66029] +17:46:43 ============================================================================ +17:46:43 + + +waiting on router queue for slot.... +17:46:43 Sending to : <5> +17:46:43 ============================================================================ +17:46:47 ============================================================================ +17:46:47 Slot Id : <63> +17:46:47 Transaction Type : RESPONSE +17:46:47 Received From : +17:46:47 ============================================================================ +17:46:47 FNo. Len. Field Value +17:46:47 ============================================================================ +17:46:47 [ 1] [ 4] [0210] +17:46:47 [ 2] [ 16] [1999990000015159] +17:46:47 [ 3] [ 6] [013000] +17:46:47 [ 4] [ 12] [000100000000] +17:46:47 [ 7] [ 10] [0320174638] +17:46:47 [ 11] [ 6] [819854] +17:46:47 [ 12] [ 6] [174638] +17:46:47 [ 13] [ 4] [0320] +17:46:47 [ 15] [ 4] [0320] +17:46:47 [ 18] [ 4] [6011] +17:46:47 [ 19] [ 3] [418] +17:46:47 [ 32] [ 6] [621354] +17:46:47 [ 37] [ 12] [507902706633] +17:46:47 [ 38] [ 6] [985917] +17:46:47 [ 39] [ 2] [00] +17:46:47 [ 41] [ 8] [14000900] +17:46:47 [ 49] [ 3] [418] +17:46:47 [ 54] [ 0] [] +17:46:47 ============================================================================ +17:46:47 Sending to : +17:46:47 ============================================================================ +17:46:47 + + +waiting on router queue for slot.... +17:46:49 ============================================================================ +17:46:49 Slot Id : <63> +17:46:49 Transaction Type : RESPONSE +17:46:49 Received From : +17:46:49 ============================================================================ +17:46:49 FNo. Len. Field Value +17:46:49 ============================================================================ +17:46:49 [ 1] [ 4] [0210] +17:46:49 [ 2] [ 16] [1999990000015159] +17:46:49 [ 3] [ 6] [013000] +17:46:49 [ 4] [ 12] [000100000000] +17:46:49 [ 7] [ 10] [0320174638] +17:46:49 [ 11] [ 6] [819854] +17:46:49 [ 12] [ 6] [174638] +17:46:49 [ 13] [ 4] [0320] +17:46:49 [ 15] [ 4] [0320] +17:46:49 [ 18] [ 4] [6011] +17:46:49 [ 19] [ 3] [418] +17:46:49 [ 32] [ 6] [621354] +17:46:49 [ 37] [ 12] [507902706633] +17:46:49 [ 38] [ 6] [985917] +17:46:49 [ 39] [ 2] [00] +17:46:49 [ 41] [ 8] [14000900] +17:46:49 [ 49] [ 3] [418] +17:46:49 [ 54] [ 0] [] +17:46:49 ============================================================================ +17:46:49 Calculate Source COMM Id = 0 +17:46:49 ============================================================================ +17:46:49 + + +waiting on router queue for slot.... +17:46:52 ============================================================================ +17:46:52 Slot Id : <38> +17:46:52 Transaction Type : REQUEST +17:46:52 Received From : +17:46:52 ============================================================================ +17:46:52 FNo. Len. Field Value +17:46:52 ============================================================================ +17:46:52 [ 1] [ 4] [0800] +17:46:52 [ 7] [ 10] [0320104559] +17:46:52 [ 11] [ 6] [157542] +17:46:52 [ 70] [ 3] [301] +17:46:52 ============================================================================ +17:46:52 + + +waiting on router queue for slot.... +17:46:52 Sending to : +17:46:52 ============================================================================ +17:46:52 ============================================================================ +17:46:52 Slot Id : <38> +17:46:52 Transaction Type : RESPONSE +17:46:52 Received From : +17:46:52 ============================================================================ +17:46:52 FNo. Len. Field Value +17:46:52 ============================================================================ +17:46:52 [ 1] [ 4] [0810] +17:46:52 [ 7] [ 10] [0320104559] +17:46:52 [ 11] [ 6] [157542] +17:46:52 [ 39] [ 2] [00] +17:46:52 [ 70] [ 3] [301] +17:46:52 ============================================================================ +17:46:52 Calculate Source COMM Id = 2 +17:46:52 ============================================================================ +17:46:52 + + +waiting on router queue for slot.... +17:46:53 ============================================================================ +17:46:53 Slot Id : <73> +17:46:53 Transaction Type : REQUEST +17:46:53 Received From : +17:46:53 ============================================================================ +17:46:53 FNo. Len. Field Value +17:46:53 ============================================================================ +17:46:53 [ 1] [ 4] [0200] +17:46:53 [ 2] [ 16] [6688990040039669] +17:46:53 [ 3] [ 6] [010000] +17:46:53 [ 4] [ 12] [000050000000] +17:46:53 [ 7] [ 10] [0320174648] +17:46:53 [ 11] [ 6] [819889] +17:46:53 [ 12] [ 6] [174648] +17:46:53 [ 13] [ 4] [0320] +17:46:53 [ 15] [ 4] [0320] +17:46:53 [ 18] [ 4] [6011] +17:46:53 [ 22] [ 3] [900] +17:46:53 [ 25] [ 2] [02] +17:46:53 [ 28] [ 9] [D00002000] +17:46:53 [ 32] [ 6] [621354] +17:46:53 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:46:53 [ 37] [ 12] [507905271813] +17:46:53 [ 41] [ 8] [02002900] +17:46:53 [ 42] [ 15] [NATIVE ] +17:46:53 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:46:53 [ 49] [ 3] [418] +17:46:53 [ 52] [ 16] [A121443DDD885ADC] +17:46:53 ============================================================================ +17:46:53 + + +waiting on router queue for slot.... +17:46:53 Sending to : +17:46:53 ============================================================================ +17:46:53 Sending to : +17:46:53 ============================================================================ +17:46:53 ============================================================================ +17:46:53 Slot Id : <73> +17:46:53 Transaction Type : REQUEST +17:46:53 Received From : +17:46:53 ============================================================================ +17:46:53 FNo. Len. Field Value +17:46:53 ============================================================================ +17:46:53 [ 1] [ 4] [0200] +17:46:53 [ 2] [ 16] [6688990040039669] +17:46:53 [ 3] [ 6] [010000] +17:46:53 [ 4] [ 12] [000050000000] +17:46:53 [ 7] [ 10] [0320174648] +17:46:53 [ 11] [ 6] [819889] +17:46:53 [ 12] [ 6] [174648] +17:46:53 [ 13] [ 4] [0320] +17:46:53 [ 15] [ 4] [0320] +17:46:53 [ 18] [ 4] [6011] +17:46:53 [ 22] [ 3] [900] +17:46:53 [ 25] [ 2] [02] +17:46:53 [ 28] [ 9] [D00002000] +17:46:53 [ 32] [ 6] [621354] +17:46:53 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:46:53 [ 37] [ 12] [507905271813] +17:46:53 [ 41] [ 8] [02002900] +17:46:53 [ 42] [ 15] [NATIVE ] +17:46:53 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:46:53 [ 49] [ 3] [418] +17:46:53 [ 52] [ 16] [A121443DDD885ADC] +17:46:53 ============================================================================ +17:46:53 + + +waiting on router queue for slot.... +17:46:53 Sending to : +17:46:53 ============================================================================ +17:46:53 ============================================================================ +17:46:53 Slot Id : <73> +17:46:53 Transaction Type : REQUEST +17:46:53 Received From : +17:46:53 ============================================================================ +17:46:53 FNo. Len. Field Value +17:46:53 ============================================================================ +17:46:53 [ 1] [ 4] [0200] +17:46:53 [ 2] [ 16] [6688990040039669] +17:46:53 [ 3] [ 6] [010000] +17:46:53 [ 4] [ 12] [000050000000] +17:46:53 [ 7] [ 10] [0320174648] +17:46:53 [ 11] [ 6] [819889] +17:46:53 [ 12] [ 6] [174648] +17:46:53 [ 13] [ 4] [0320] +17:46:53 [ 15] [ 4] [0320] +17:46:53 [ 18] [ 4] [6011] +17:46:53 [ 22] [ 3] [900] +17:46:53 [ 25] [ 2] [02] +17:46:53 [ 28] [ 9] [D00002000] +17:46:53 [ 32] [ 6] [621354] +17:46:53 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:46:53 [ 37] [ 12] [507905271813] +17:46:53 [ 41] [ 8] [02002900] +17:46:53 [ 42] [ 15] [NATIVE ] +17:46:53 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:46:53 [ 49] [ 3] [418] +17:46:53 [ 52] [ 16] [A9CBCDF0E96A5CBF] +17:46:53 ============================================================================ +17:46:53 + + +waiting on router queue for slot.... +17:46:53 Sending to : <4> +17:46:53 ============================================================================ +17:46:54 ============================================================================ +17:46:54 Slot Id : <73> +17:46:54 Transaction Type : RESPONSE +17:46:54 Received From : +17:46:54 ============================================================================ +17:46:54 FNo. Len. Field Value +17:46:54 ============================================================================ +17:46:54 [ 1] [ 4] [0210] +17:46:54 [ 2] [ 16] [6688990040039669] +17:46:54 [ 3] [ 6] [010000] +17:46:54 [ 4] [ 12] [000050000000] +17:46:54 [ 11] [ 6] [819889] +17:46:54 [ 12] [ 6] [174648] +17:46:54 [ 15] [ 4] [0320] +17:46:54 [ 18] [ 4] [6011] +17:46:54 [ 32] [ 6] [621354] +17:46:54 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:46:54 [ 37] [ 12] [507905271813] +17:46:54 [ 39] [ 2] [51] +17:46:54 [ 41] [ 8] [02002900] +17:46:54 [ 49] [ 3] [418] +17:46:54 [ 54] [ 0] [] +17:46:54 ============================================================================ +17:46:54 Sending to : +17:46:54 ============================================================================ +17:46:54 + + +waiting on router queue for slot.... +17:46:55 ============================================================================ +17:46:55 Slot Id : <73> +17:46:55 Transaction Type : RESPONSE +17:46:55 Received From : +17:46:55 ============================================================================ +17:46:55 FNo. Len. Field Value +17:46:55 ============================================================================ +17:46:55 [ 1] [ 4] [0210] +17:46:55 [ 2] [ 16] [6688990040039669] +17:46:55 [ 3] [ 6] [010000] +17:46:55 [ 4] [ 12] [000050000000] +17:46:55 [ 11] [ 6] [819889] +17:46:55 [ 12] [ 6] [174648] +17:46:55 [ 15] [ 4] [0320] +17:46:55 [ 18] [ 4] [6011] +17:46:55 [ 32] [ 6] [621354] +17:46:55 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:46:55 [ 37] [ 12] [507905271813] +17:46:55 [ 39] [ 2] [51] +17:46:55 [ 41] [ 8] [02002900] +17:46:55 [ 49] [ 3] [418] +17:46:55 [ 54] [ 0] [] +17:46:55 ============================================================================ +17:46:55 Calculate Source COMM Id = 0 +17:46:55 ============================================================================ +17:46:55 + + +waiting on router queue for slot.... +17:46:56 ============================================================================ +17:46:56 Slot Id : <68> +17:46:56 Transaction Type : REQUEST +17:46:56 Received From : +17:46:56 ============================================================================ +17:46:56 FNo. Len. Field Value +17:46:56 ============================================================================ +17:46:56 [ 1] [ 4] [0200] +17:46:56 [ 2] [ 16] [6688990040051052] +17:46:56 [ 3] [ 6] [011000] +17:46:56 [ 4] [ 12] [000015000000] +17:46:56 [ 7] [ 10] [0320174651] +17:46:56 [ 11] [ 6] [819897] +17:46:56 [ 12] [ 6] [174651] +17:46:56 [ 13] [ 4] [0320] +17:46:56 [ 15] [ 4] [0320] +17:46:56 [ 18] [ 4] [6011] +17:46:56 [ 22] [ 3] [900] +17:46:56 [ 25] [ 2] [02] +17:46:56 [ 28] [ 9] [D00002000] +17:46:56 [ 32] [ 6] [621354] +17:46:56 [ 35] [ 37] [6688990040051052=97121261358366300000] +17:46:56 [ 37] [ 12] [507905335289] +17:46:56 [ 41] [ 8] [05004700] +17:46:56 [ 42] [ 15] [NATIVE ] +17:46:56 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +17:46:56 [ 49] [ 3] [418] +17:46:56 [ 52] [ 16] [E80EC7249B4041F9] +17:46:56 ============================================================================ +17:46:56 + + +waiting on router queue for slot.... +17:46:56 Sending to : +17:46:56 ============================================================================ +17:46:56 Sending to : +17:46:56 ============================================================================ +17:46:56 ============================================================================ +17:46:56 Slot Id : <68> +17:46:56 Transaction Type : REQUEST +17:46:56 Received From : +17:46:56 ============================================================================ +17:46:56 FNo. Len. Field Value +17:46:56 ============================================================================ +17:46:56 [ 1] [ 4] [0200] +17:46:56 [ 2] [ 16] [6688990040051052] +17:46:56 [ 3] [ 6] [011000] +17:46:56 [ 4] [ 12] [000015000000] +17:46:56 [ 7] [ 10] [0320174651] +17:46:56 [ 11] [ 6] [819897] +17:46:56 [ 12] [ 6] [174651] +17:46:56 [ 13] [ 4] [0320] +17:46:56 [ 15] [ 4] [0320] +17:46:56 [ 18] [ 4] [6011] +17:46:56 [ 22] [ 3] [900] +17:46:56 [ 25] [ 2] [02] +17:46:56 [ 28] [ 9] [D00002000] +17:46:56 [ 32] [ 6] [621354] +17:46:56 [ 35] [ 37] [6688990040051052=97121261358366300000] +17:46:56 [ 37] [ 12] [507905335289] +17:46:56 [ 41] [ 8] [05004700] +17:46:56 [ 42] [ 15] [NATIVE ] +17:46:56 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +17:46:56 [ 49] [ 3] [418] +17:46:56 [ 52] [ 16] [E80EC7249B4041F9] +17:46:56 ============================================================================ +17:46:56 + + +waiting on router queue for slot.... +17:46:56 Sending to : +17:46:56 ============================================================================ +17:46:56 ============================================================================ +17:46:56 Slot Id : <68> +17:46:56 Transaction Type : REQUEST +17:46:56 Received From : +17:46:56 ============================================================================ +17:46:56 FNo. Len. Field Value +17:46:56 ============================================================================ +17:46:56 [ 1] [ 4] [0200] +17:46:56 [ 2] [ 16] [6688990040051052] +17:46:56 [ 3] [ 6] [011000] +17:46:56 [ 4] [ 12] [000015000000] +17:46:56 [ 7] [ 10] [0320174651] +17:46:56 [ 11] [ 6] [819897] +17:46:56 [ 12] [ 6] [174651] +17:46:56 [ 13] [ 4] [0320] +17:46:56 [ 15] [ 4] [0320] +17:46:56 [ 18] [ 4] [6011] +17:46:56 [ 22] [ 3] [900] +17:46:56 [ 25] [ 2] [02] +17:46:56 [ 28] [ 9] [D00002000] +17:46:56 [ 32] [ 6] [621354] +17:46:56 [ 35] [ 37] [6688990040051052=97121261358366300000] +17:46:56 [ 37] [ 12] [507905335289] +17:46:56 [ 41] [ 8] [05004700] +17:46:56 [ 42] [ 15] [NATIVE ] +17:46:56 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +17:46:56 [ 49] [ 3] [418] +17:46:56 [ 52] [ 16] [00D2DC378AC0EC42] +17:46:56 ============================================================================ +17:46:56 + + +waiting on router queue for slot.... +17:46:56 Sending to : <4> +17:46:56 ============================================================================ +17:46:57 ============================================================================ +17:46:57 Slot Id : <68> +17:46:57 Transaction Type : RESPONSE +17:46:57 Received From : +17:46:57 ============================================================================ +17:46:57 FNo. Len. Field Value +17:46:57 ============================================================================ +17:46:57 [ 1] [ 4] [0210] +17:46:57 [ 2] [ 16] [6688990040051052] +17:46:57 [ 3] [ 6] [011000] +17:46:57 [ 4] [ 12] [000015000000] +17:46:57 [ 11] [ 6] [819897] +17:46:57 [ 12] [ 6] [174651] +17:46:57 [ 15] [ 4] [0320] +17:46:57 [ 18] [ 4] [6011] +17:46:57 [ 32] [ 6] [621354] +17:46:57 [ 35] [ 37] [6688990040051052=97121261358366300000] +17:46:57 [ 37] [ 12] [507905335289] +17:46:57 [ 38] [ 6] [138426] +17:46:57 [ 39] [ 2] [00] +17:46:57 [ 41] [ 8] [05004700] +17:46:57 [ 49] [ 3] [418] +17:46:57 [ 54] [ 20] [1002418C000042654865] +17:46:57 ============================================================================ +17:46:57 Sending to : +17:46:57 ============================================================================ +17:46:57 + + +waiting on router queue for slot.... +17:46:58 ============================================================================ +17:46:58 Slot Id : <68> +17:46:58 Transaction Type : RESPONSE +17:46:58 Received From : +17:46:58 ============================================================================ +17:46:58 FNo. Len. Field Value +17:46:58 ============================================================================ +17:46:58 [ 1] [ 4] [0210] +17:46:58 [ 2] [ 16] [6688990040051052] +17:46:58 [ 3] [ 6] [011000] +17:46:58 [ 4] [ 12] [000015000000] +17:46:58 [ 11] [ 6] [819897] +17:46:58 [ 12] [ 6] [174651] +17:46:58 [ 15] [ 4] [0320] +17:46:58 [ 18] [ 4] [6011] +17:46:58 [ 32] [ 6] [621354] +17:46:58 [ 35] [ 37] [6688990040051052=97121261358366300000] +17:46:58 [ 37] [ 12] [507905335289] +17:46:58 [ 38] [ 6] [138426] +17:46:58 [ 39] [ 2] [00] +17:46:58 [ 41] [ 8] [05004700] +17:46:58 [ 49] [ 3] [418] +17:46:58 [ 54] [ 20] [1002418C000042654865] +17:46:58 ============================================================================ +17:46:58 Calculate Source COMM Id = 0 +17:46:58 ============================================================================ +17:46:58 + + +waiting on router queue for slot.... +17:47:01 ============================================================================ +17:47:01 Slot Id : <41> +17:47:01 Transaction Type : REQUEST +17:47:01 Received From : +17:47:01 ============================================================================ +17:47:01 FNo. Len. Field Value +17:47:01 ============================================================================ +17:47:01 [ 1] [ 4] [0200] +17:47:01 [ 2] [ 16] [6213544001296976] +17:47:01 [ 3] [ 6] [010000] +17:47:01 [ 4] [ 12] [000100000000] +17:47:01 [ 7] [ 10] [0320104605] +17:47:01 [ 11] [ 6] [270978] +17:47:01 [ 12] [ 6] [174605] +17:47:01 [ 13] [ 4] [0320] +17:47:01 [ 14] [ 4] [4912] +17:47:01 [ 15] [ 4] [0320] +17:47:01 [ 18] [ 4] [6011] +17:47:01 [ 19] [ 3] [418] +17:47:01 [ 22] [ 3] [021] +17:47:01 [ 25] [ 2] [01] +17:47:01 [ 28] [ 9] [D00002000] +17:47:01 [ 32] [ 6] [180893] +17:47:01 [ 35] [ 32] [6213544001296976=491212019697755] +17:47:01 [ 37] [ 12] [507910270978] +17:47:01 [ 41] [ 8] [0528LPBP] +17:47:01 [ 42] [ 15] [999999 ] +17:47:01 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:47:01 [ 49] [ 3] [418] +17:47:01 [ 52] [ 16] [0772187C4A135F58] +17:47:01 ============================================================================ +17:47:01 + + +waiting on router queue for slot.... +17:47:01 Sending to : +17:47:01 ============================================================================ +17:47:01 Sending to : +17:47:01 ============================================================================ +17:47:01 ============================================================================ +17:47:01 Slot Id : <41> +17:47:01 Transaction Type : REQUEST +17:47:01 Received From : +17:47:01 ============================================================================ +17:47:01 FNo. Len. Field Value +17:47:01 ============================================================================ +17:47:01 [ 1] [ 4] [0200] +17:47:01 [ 2] [ 16] [6213544001296976] +17:47:01 [ 3] [ 6] [010000] +17:47:01 [ 4] [ 12] [000100000000] +17:47:01 [ 7] [ 10] [0320104605] +17:47:01 [ 11] [ 6] [270978] +17:47:01 [ 12] [ 6] [174605] +17:47:01 [ 13] [ 4] [0320] +17:47:01 [ 14] [ 4] [4912] +17:47:01 [ 15] [ 4] [0320] +17:47:01 [ 18] [ 4] [6011] +17:47:01 [ 19] [ 3] [418] +17:47:01 [ 22] [ 3] [021] +17:47:01 [ 25] [ 2] [01] +17:47:01 [ 28] [ 9] [D00002000] +17:47:01 [ 32] [ 6] [180893] +17:47:01 [ 35] [ 32] [6213544001296976=491212019697755] +17:47:01 [ 37] [ 12] [507910270978] +17:47:01 [ 41] [ 8] [0528LPBP] +17:47:01 [ 42] [ 15] [999999 ] +17:47:01 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:47:01 [ 49] [ 3] [418] +17:47:01 [ 52] [ 16] [0772187C4A135F58] +17:47:01 ============================================================================ +17:47:01 + + +waiting on router queue for slot.... +17:47:01 Sending to : +17:47:01 ============================================================================ +17:47:01 ============================================================================ +17:47:01 Slot Id : <41> +17:47:01 Transaction Type : REQUEST +17:47:01 Received From : +17:47:01 ============================================================================ +17:47:01 FNo. Len. Field Value +17:47:01 ============================================================================ +17:47:01 [ 1] [ 4] [0200] +17:47:01 [ 2] [ 16] [6213544001296976] +17:47:01 [ 3] [ 6] [010000] +17:47:01 [ 4] [ 12] [000100000000] +17:47:01 [ 7] [ 10] [0320104605] +17:47:01 [ 11] [ 6] [270978] +17:47:01 [ 12] [ 6] [174605] +17:47:01 [ 13] [ 4] [0320] +17:47:01 [ 14] [ 4] [4912] +17:47:01 [ 15] [ 4] [0320] +17:47:01 [ 18] [ 4] [6011] +17:47:01 [ 19] [ 3] [418] +17:47:01 [ 22] [ 3] [021] +17:47:01 [ 25] [ 2] [01] +17:47:01 [ 28] [ 9] [D00002000] +17:47:01 [ 32] [ 6] [180893] +17:47:01 [ 35] [ 32] [6213544001296976=491212019697755] +17:47:01 [ 37] [ 12] [507910270978] +17:47:01 [ 41] [ 8] [0528LPBP] +17:47:01 [ 42] [ 15] [999999 ] +17:47:01 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:47:01 [ 49] [ 3] [418] +17:47:01 [ 52] [ 16] [E222CF7E9849C15D] +17:47:01 ============================================================================ +17:47:01 + + +waiting on router queue for slot.... +17:47:01 Sending to : <0> +17:47:01 ============================================================================ +17:47:01 ============================================================================ +17:47:01 Slot Id : <41> +17:47:01 Transaction Type : RESPONSE +17:47:01 Received From : +17:47:01 ============================================================================ +17:47:01 FNo. Len. Field Value +17:47:01 ============================================================================ +17:47:01 [ 1] [ 4] [0210] +17:47:01 [ 2] [ 16] [6213544001296976] +17:47:01 [ 3] [ 6] [010000] +17:47:01 [ 4] [ 12] [000100000000] +17:47:01 [ 7] [ 10] [0320104605] +17:47:01 [ 11] [ 6] [270978] +17:47:01 [ 12] [ 6] [174605] +17:47:01 [ 13] [ 4] [0320] +17:47:01 [ 15] [ 4] [0320] +17:47:01 [ 18] [ 4] [6011] +17:47:01 [ 19] [ 3] [418] +17:47:01 [ 32] [ 6] [180893] +17:47:01 [ 35] [ 32] [6213544001296976=491212019697755] +17:47:01 [ 37] [ 12] [507910270978] +17:47:01 [ 38] [ 6] [319501] +17:47:01 [ 39] [ 2] [00] +17:47:01 [ 41] [ 8] [0528LPBP] +17:47:01 [ 49] [ 3] [418] +17:47:01 [ 54] [ 40] [0001418C0004111966420002418C000411196642] +17:47:01 ============================================================================ +17:47:01 Sending to : +17:47:01 ============================================================================ +17:47:01 + + +waiting on router queue for slot.... +17:47:02 ============================================================================ +17:47:02 Slot Id : <464> +17:47:02 Transaction Type : REQUEST +17:47:02 Received From : +17:47:02 ============================================================================ +17:47:02 FNo. Len. Field Value +17:47:02 ============================================================================ +17:47:02 [ 1] [ 4] [0200] +17:47:02 [ 2] [ 16] [1808931300011614] +17:47:02 [ 3] [ 6] [011000] +17:47:02 [ 4] [ 12] [000010000000] +17:47:02 [ 7] [ 10] [0320174657] +17:47:02 [ 11] [ 6] [819934] +17:47:02 [ 12] [ 6] [174657] +17:47:02 [ 13] [ 4] [0320] +17:47:02 [ 15] [ 4] [0320] +17:47:02 [ 18] [ 4] [6011] +17:47:02 [ 22] [ 3] [900] +17:47:02 [ 25] [ 2] [02] +17:47:02 [ 28] [ 9] [D00002000] +17:47:02 [ 32] [ 6] [621354] +17:47:02 [ 35] [ 27] [1808931300011614=1803500472] +17:47:02 [ 37] [ 12] [507903919642] +17:47:02 [ 41] [ 8] [01010700] +17:47:02 [ 42] [ 15] [NATIVE ] +17:47:02 [ 43] [ 40] [Unitel Xaysetha LAO] +17:47:02 [ 49] [ 3] [418] +17:47:02 [ 52] [ 16] [E9AD06A3505EF5C1] +17:47:02 ============================================================================ +17:47:02 + + +waiting on router queue for slot.... +17:47:02 Sending to : +17:47:02 ============================================================================ +17:47:02 Sending to : +17:47:02 ============================================================================ +17:47:02 ============================================================================ +17:47:02 Slot Id : <464> +17:47:02 Transaction Type : REQUEST +17:47:02 Received From : +17:47:02 ============================================================================ +17:47:02 FNo. Len. Field Value +17:47:02 ============================================================================ +17:47:02 [ 1] [ 4] [0200] +17:47:02 [ 2] [ 16] [1808931300011614] +17:47:02 [ 3] [ 6] [011000] +17:47:02 [ 4] [ 12] [000010000000] +17:47:02 [ 7] [ 10] [0320174657] +17:47:02 [ 11] [ 6] [819934] +17:47:02 [ 12] [ 6] [174657] +17:47:02 [ 13] [ 4] [0320] +17:47:02 [ 15] [ 4] [0320] +17:47:02 [ 18] [ 4] [6011] +17:47:02 [ 22] [ 3] [900] +17:47:02 [ 25] [ 2] [02] +17:47:02 [ 28] [ 9] [D00002000] +17:47:02 [ 32] [ 6] [621354] +17:47:02 [ 35] [ 27] [1808931300011614=1803500472] +17:47:02 [ 37] [ 12] [507903919642] +17:47:02 [ 41] [ 8] [01010700] +17:47:02 [ 42] [ 15] [NATIVE ] +17:47:02 [ 43] [ 40] [Unitel Xaysetha LAO] +17:47:02 [ 49] [ 3] [418] +17:47:02 [ 52] [ 16] [E9AD06A3505EF5C1] +17:47:02 ============================================================================ +17:47:02 + + +waiting on router queue for slot.... +17:47:02 Sending to : +17:47:02 ============================================================================ +17:47:02 ============================================================================ +17:47:02 Slot Id : <487> +17:47:02 Transaction Type : REQUEST +17:47:02 Received From : +17:47:02 ============================================================================ +17:47:02 FNo. Len. Field Value +17:47:02 ============================================================================ +17:47:02 [ 1] [ 4] [0800] +17:47:02 [ 7] [ 10] [0320104609] +17:47:02 [ 11] [ 6] [157543] +17:47:02 [ 70] [ 3] [301] +17:47:02 ============================================================================ +17:47:02 + + +waiting on router queue for slot.... +17:47:02 Sending to : +17:47:02 ============================================================================ +17:47:02 ============================================================================ +17:47:02 Slot Id : <487> +17:47:02 Transaction Type : RESPONSE +17:47:02 Received From : +17:47:02 ============================================================================ +17:47:02 FNo. Len. Field Value +17:47:02 ============================================================================ +17:47:02 [ 1] [ 4] [0810] +17:47:02 [ 7] [ 10] [0320104609] +17:47:02 [ 11] [ 6] [157543] +17:47:02 [ 39] [ 2] [00] +17:47:02 [ 70] [ 3] [301] +17:47:02 ============================================================================ +17:47:02 Calculate Source COMM Id = 2 +17:47:02 ============================================================================ +17:47:02 + + +waiting on router queue for slot.... +17:47:02 ============================================================================ +17:47:02 Slot Id : <464> +17:47:02 Transaction Type : REQUEST +17:47:02 Received From : +17:47:02 ============================================================================ +17:47:02 FNo. Len. Field Value +17:47:02 ============================================================================ +17:47:02 [ 1] [ 4] [0200] +17:47:02 [ 2] [ 16] [1808931300011614] +17:47:02 [ 3] [ 6] [011000] +17:47:02 [ 4] [ 12] [000010000000] +17:47:02 [ 7] [ 10] [0320174657] +17:47:02 [ 11] [ 6] [819934] +17:47:02 [ 12] [ 6] [174657] +17:47:02 [ 13] [ 4] [0320] +17:47:02 [ 15] [ 4] [0320] +17:47:02 [ 18] [ 4] [6011] +17:47:02 [ 22] [ 3] [900] +17:47:02 [ 25] [ 2] [02] +17:47:02 [ 28] [ 9] [D00002000] +17:47:02 [ 32] [ 6] [621354] +17:47:02 [ 35] [ 27] [1808931300011614=1803500472] +17:47:02 [ 37] [ 12] [507903919642] +17:47:02 [ 41] [ 8] [01010700] +17:47:02 [ 42] [ 15] [NATIVE ] +17:47:02 [ 43] [ 40] [Unitel Xaysetha LAO] +17:47:02 [ 49] [ 3] [418] +17:47:02 [ 52] [ 16] [35E8D9048487D9BC] +17:47:02 ============================================================================ +17:47:02 + + +waiting on router queue for slot.... +17:47:02 Sending to : <2> +17:47:02 ============================================================================ +17:47:03 ============================================================================ +17:47:03 Slot Id : <32> +17:47:03 Transaction Type : REQUEST +17:47:03 Received From : +17:47:03 ============================================================================ +17:47:03 FNo. Len. Field Value +17:47:03 ============================================================================ +17:47:03 [ 1] [ 4] [0800] +17:47:03 [ 7] [ 10] [0321005850] +17:47:03 [ 11] [ 6] [175850] +17:47:03 [ 37] [ 12] [57917175850] +17:47:03 [ 70] [ 3] [301] +17:47:03 ============================================================================ +17:47:03 + + +waiting on router queue for slot.... +17:47:03 Sending to : +17:47:03 ============================================================================ +17:47:03 ============================================================================ +17:47:03 Slot Id : <32> +17:47:03 Transaction Type : RESPONSE +17:47:03 Received From : +17:47:03 ============================================================================ +17:47:03 FNo. Len. Field Value +17:47:03 ============================================================================ +17:47:03 [ 1] [ 4] [0810] +17:47:03 [ 7] [ 10] [0321005850] +17:47:03 [ 11] [ 6] [175850] +17:47:03 [ 37] [ 12] [579171758500] +17:47:03 [ 39] [ 2] [00] +17:47:03 [ 70] [ 3] [810] +17:47:03 ============================================================================ +17:47:03 Calculate Source COMM Id = 6 +17:47:03 ============================================================================ +17:47:03 + + +waiting on router queue for slot.... +17:47:03 ============================================================================ +17:47:03 Slot Id : <26> +17:47:03 Transaction Type : REQUEST +17:47:03 Received From : +17:47:03 ============================================================================ +17:47:03 FNo. Len. Field Value +17:47:03 ============================================================================ +17:47:03 [ 1] [ 4] [0800] +17:47:03 [ 2] [ 5] [02531] +17:47:03 [ 3] [ 6] [579178] +17:47:03 [ 7] [ 10] [0320104703] +17:47:03 [ 11] [ 6] [807444] +17:47:03 [ 15] [ 10] [0320104703] +17:47:03 [ 37] [ 11] [57917807444] +17:47:03 [ 70] [ 3] [001] +17:47:03 ============================================================================ +17:47:03 + + +waiting on router queue for slot.... +17:47:03 ============================================================================ +17:47:03 Slot Id : <26> +17:47:03 Transaction Type : RESPONSE +17:47:03 Received From : +17:47:03 ============================================================================ +17:47:03 FNo. Len. Field Value +17:47:03 ============================================================================ +17:47:03 [ 1] [ 4] [0810] +17:47:03 [ 7] [ 10] [0320104703] +17:47:03 [ 11] [ 6] [807444] +17:47:03 [ 15] [ 4] [0320] +17:47:03 [ 37] [ 12] [57917807444] +17:47:03 [ 39] [ 2] [00] +17:47:03 [ 70] [ 3] [001] +17:47:03 ============================================================================ +17:47:03 Sending to : +17:47:03 ============================================================================ +17:47:03 + + +waiting on router queue for slot.... +17:47:03 ============================================================================ +17:47:03 Slot Id : <41> +17:47:03 Transaction Type : RESPONSE +17:47:03 Received From : +17:47:03 ============================================================================ +17:47:03 FNo. Len. Field Value +17:47:03 ============================================================================ +17:47:03 [ 1] [ 4] [0210] +17:47:03 [ 2] [ 16] [6213544001296976] +17:47:03 [ 3] [ 6] [010000] +17:47:03 [ 4] [ 12] [000100000000] +17:47:03 [ 7] [ 10] [0320104605] +17:47:03 [ 11] [ 6] [270978] +17:47:03 [ 12] [ 6] [174605] +17:47:03 [ 13] [ 4] [0320] +17:47:03 [ 15] [ 4] [0320] +17:47:03 [ 18] [ 4] [6011] +17:47:03 [ 19] [ 3] [418] +17:47:03 [ 32] [ 6] [180893] +17:47:03 [ 35] [ 32] [6213544001296976=491212019697755] +17:47:03 [ 37] [ 12] [507910270978] +17:47:03 [ 38] [ 6] [319501] +17:47:03 [ 39] [ 2] [00] +17:47:03 [ 41] [ 8] [0528LPBP] +17:47:03 [ 49] [ 3] [418] +17:47:03 [ 54] [ 40] [0001418C0004111966420002418C000411196642] +17:47:03 ============================================================================ +17:47:03 Calculate Source COMM Id = 2 +17:47:03 ============================================================================ +17:47:03 + + +waiting on router queue for slot.... +17:47:06 ============================================================================ +17:47:06 Slot Id : <20> +17:47:06 Transaction Type : REQUEST +17:47:06 Received From : +17:47:06 ============================================================================ +17:47:06 FNo. Len. Field Value +17:47:06 ============================================================================ +17:47:06 [ 1] [ 4] [0200] +17:47:06 [ 2] [ 16] [6213543000092097] +17:47:06 [ 3] [ 6] [011000] +17:47:06 [ 4] [ 12] [000100000000] +17:47:06 [ 7] [ 10] [0320174726] +17:47:06 [ 11] [ 6] [209848] +17:47:06 [ 12] [ 6] [184110] +17:47:06 [ 13] [ 4] [0320] +17:47:06 [ 14] [ 4] [4912] +17:47:06 [ 15] [ 4] [0320] +17:47:06 [ 18] [ 4] [6011] +17:47:06 [ 19] [ 3] [418] +17:47:06 [ 22] [ 3] [021] +17:47:06 [ 25] [ 2] [01] +17:47:06 [ 28] [ 9] [D00002000] +17:47:06 [ 32] [ 6] [198901] +17:47:06 [ 35] [ 32] [6213543000092097=491212019209143] +17:47:06 [ 37] [ 12] [507917209848] +17:47:06 [ 41] [ 8] [01529012] +17:47:06 [ 42] [ 15] [000000041529012] +17:47:06 [ 43] [ 40] [JDB ATM THATKHAO VN ] +17:47:06 [ 49] [ 3] [418] +17:47:06 [ 52] [ 16] [6243A64766089D2B] +17:47:06 ============================================================================ +17:47:06 + + +waiting on router queue for slot.... +17:47:06 Sending to : +17:47:06 ============================================================================ +17:47:06 Sending to : +17:47:06 ============================================================================ +17:47:06 ============================================================================ +17:47:06 Slot Id : <20> +17:47:06 Transaction Type : REQUEST +17:47:06 Received From : +17:47:06 ============================================================================ +17:47:06 FNo. Len. Field Value +17:47:06 ============================================================================ +17:47:06 [ 1] [ 4] [0200] +17:47:06 [ 2] [ 16] [6213543000092097] +17:47:06 [ 3] [ 6] [011000] +17:47:06 [ 4] [ 12] [000100000000] +17:47:06 [ 7] [ 10] [0320174726] +17:47:06 [ 11] [ 6] [209848] +17:47:06 [ 12] [ 6] [184110] +17:47:06 [ 13] [ 4] [0320] +17:47:06 [ 14] [ 4] [4912] +17:47:06 [ 15] [ 4] [0320] +17:47:06 [ 18] [ 4] [6011] +17:47:06 [ 19] [ 3] [418] +17:47:06 [ 22] [ 3] [021] +17:47:06 [ 25] [ 2] [01] +17:47:06 [ 28] [ 9] [D00002000] +17:47:06 [ 32] [ 6] [198901] +17:47:06 [ 35] [ 32] [6213543000092097=491212019209143] +17:47:06 [ 37] [ 12] [507917209848] +17:47:06 [ 41] [ 8] [01529012] +17:47:06 [ 42] [ 15] [000000041529012] +17:47:06 [ 43] [ 40] [JDB ATM THATKHAO VN ] +17:47:06 [ 49] [ 3] [418] +17:47:06 [ 52] [ 16] [6243A64766089D2B] +17:47:06 ============================================================================ +17:47:06 + + +waiting on router queue for slot.... +17:47:06 Sending to : +17:47:06 ============================================================================ +17:47:06 ============================================================================ +17:47:06 Slot Id : <20> +17:47:06 Transaction Type : REQUEST +17:47:06 Received From : +17:47:06 ============================================================================ +17:47:06 FNo. Len. Field Value +17:47:06 ============================================================================ +17:47:06 [ 1] [ 4] [0200] +17:47:06 [ 2] [ 16] [6213543000092097] +17:47:06 [ 3] [ 6] [011000] +17:47:06 [ 4] [ 12] [000100000000] +17:47:06 [ 7] [ 10] [0320174726] +17:47:06 [ 11] [ 6] [209848] +17:47:06 [ 12] [ 6] [184110] +17:47:06 [ 13] [ 4] [0320] +17:47:06 [ 14] [ 4] [4912] +17:47:06 [ 15] [ 4] [0320] +17:47:06 [ 18] [ 4] [6011] +17:47:06 [ 19] [ 3] [418] +17:47:06 [ 22] [ 3] [021] +17:47:06 [ 25] [ 2] [01] +17:47:06 [ 28] [ 9] [D00002000] +17:47:06 [ 32] [ 6] [198901] +17:47:06 [ 35] [ 32] [6213543000092097=491212019209143] +17:47:06 [ 37] [ 12] [507917209848] +17:47:06 [ 41] [ 8] [01529012] +17:47:06 [ 42] [ 15] [000000041529012] +17:47:06 [ 43] [ 40] [JDB ATM THATKHAO VN ] +17:47:06 [ 49] [ 3] [418] +17:47:06 [ 52] [ 16] [0B4C2F1A379480F5] +17:47:06 ============================================================================ +17:47:06 + + +waiting on router queue for slot.... +17:47:06 Sending to : <0> +17:47:06 ============================================================================ +17:47:07 ============================================================================ +17:47:07 Slot Id : <20> +17:47:07 Transaction Type : RESPONSE +17:47:07 Received From : +17:47:07 ============================================================================ +17:47:07 FNo. Len. Field Value +17:47:07 ============================================================================ +17:47:07 [ 1] [ 4] [0210] +17:47:07 [ 2] [ 16] [6213543000092097] +17:47:07 [ 3] [ 6] [011000] +17:47:07 [ 4] [ 12] [000100000000] +17:47:07 [ 7] [ 10] [0320174726] +17:47:07 [ 11] [ 6] [209848] +17:47:07 [ 12] [ 6] [184110] +17:47:07 [ 13] [ 4] [0320] +17:47:07 [ 15] [ 4] [0320] +17:47:07 [ 18] [ 4] [6011] +17:47:07 [ 19] [ 3] [418] +17:47:07 [ 32] [ 6] [198901] +17:47:07 [ 35] [ 32] [6213543000092097=491212019209143] +17:47:07 [ 37] [ 12] [507917209848] +17:47:07 [ 38] [ 6] [753472] +17:47:07 [ 39] [ 2] [00] +17:47:07 [ 41] [ 8] [01529012] +17:47:07 [ 49] [ 3] [418] +17:47:07 [ 54] [ 40] [1001418C0001274184171002418C000127418417] +17:47:07 ============================================================================ +17:47:07 Sending to : +17:47:07 ============================================================================ +17:47:07 + + +waiting on router queue for slot.... +17:47:08 ============================================================================ +17:47:08 Slot Id : <464> +17:47:08 Transaction Type : RESPONSE +17:47:08 Received From : +17:47:08 ============================================================================ +17:47:08 FNo. Len. Field Value +17:47:08 ============================================================================ +17:47:08 [ 1] [ 4] [0210] +17:47:08 [ 2] [ 16] [1808931300011614] +17:47:08 [ 3] [ 6] [011000] +17:47:08 [ 4] [ 12] [000010000000] +17:47:08 [ 6] [ 12] [000010000000] +17:47:08 [ 7] [ 10] [0320174657] +17:47:08 [ 11] [ 6] [819934] +17:47:08 [ 12] [ 6] [174657] +17:47:08 [ 13] [ 4] [0320] +17:47:08 [ 18] [ 4] [6011] +17:47:08 [ 19] [ 3] [418] +17:47:08 [ 22] [ 3] [021] +17:47:08 [ 32] [ 6] [621354] +17:47:08 [ 35] [ 27] [1808931300011614=1803500472] +17:47:08 [ 37] [ 12] [507903919642] +17:47:08 [ 38] [ 6] [819934] +17:47:08 [ 39] [ 2] [00] +17:47:08 [ 41] [ 8] [01010700] +17:47:08 [ 49] [ 3] [418] +17:47:08 [ 52] [ 16] [35E8D9048487D9BC] +17:47:08 [ 54] [ 20] [1001418C000005525300] +17:47:08 ============================================================================ +17:47:08 Sending to : +17:47:08 ============================================================================ +17:47:08 + + +waiting on router queue for slot.... +17:47:08 ============================================================================ +17:47:08 Slot Id : <20> +17:47:08 Transaction Type : RESPONSE +17:47:08 Received From : +17:47:08 ============================================================================ +17:47:08 FNo. Len. Field Value +17:47:08 ============================================================================ +17:47:08 [ 1] [ 4] [0210] +17:47:08 [ 2] [ 16] [6213543000092097] +17:47:08 [ 3] [ 6] [011000] +17:47:08 [ 4] [ 12] [000100000000] +17:47:08 [ 7] [ 10] [0320174726] +17:47:08 [ 11] [ 6] [209848] +17:47:08 [ 12] [ 6] [184110] +17:47:08 [ 13] [ 4] [0320] +17:47:08 [ 15] [ 4] [0320] +17:47:08 [ 18] [ 4] [6011] +17:47:08 [ 19] [ 3] [418] +17:47:08 [ 32] [ 6] [198901] +17:47:08 [ 35] [ 32] [6213543000092097=491212019209143] +17:47:08 [ 37] [ 12] [507917209848] +17:47:08 [ 38] [ 6] [753472] +17:47:08 [ 39] [ 2] [00] +17:47:08 [ 41] [ 8] [01529012] +17:47:08 [ 49] [ 3] [418] +17:47:08 [ 54] [ 40] [1001418C0001274184171002418C000127418417] +17:47:08 ============================================================================ +17:47:08 Calculate Source COMM Id = 5 +17:47:08 ============================================================================ +17:47:08 + + +waiting on router queue for slot.... +17:47:09 ============================================================================ +17:47:09 Slot Id : <48> +17:47:09 Transaction Type : REQUEST +17:47:09 Received From : +17:47:09 ============================================================================ +17:47:09 FNo. Len. Field Value +17:47:09 ============================================================================ +17:47:09 [ 1] [ 4] [0200] +17:47:09 [ 2] [ 16] [6688990601311309] +17:47:09 [ 3] [ 6] [301000] +17:47:09 [ 7] [ 10] [0320104615] +17:47:09 [ 11] [ 6] [270979] +17:47:09 [ 12] [ 6] [174615] +17:47:09 [ 13] [ 4] [0320] +17:47:09 [ 14] [ 4] [4107] +17:47:09 [ 15] [ 4] [0320] +17:47:09 [ 18] [ 4] [6011] +17:47:09 [ 19] [ 3] [418] +17:47:09 [ 22] [ 3] [021] +17:47:09 [ 25] [ 2] [01] +17:47:09 [ 32] [ 6] [180893] +17:47:09 [ 35] [ 37] [6688990601311309=41070061130998300000] +17:47:09 [ 37] [ 12] [507910270979] +17:47:09 [ 41] [ 8] [0541VPNG] +17:47:09 [ 42] [ 15] [999999 ] +17:47:09 [ 43] [ 40] [ATM PARKNGUEM VIENTIANE CAPITAL, Pakngeu] +17:47:09 [ 49] [ 3] [418] +17:47:09 [ 52] [ 16] [006B74089EE82EBE] +17:47:09 ============================================================================ +17:47:09 + + +waiting on router queue for slot.... +17:47:09 Sending to : +17:47:09 ============================================================================ +17:47:09 Sending to : +17:47:09 ============================================================================ +17:47:09 ============================================================================ +17:47:09 Slot Id : <48> +17:47:09 Transaction Type : REQUEST +17:47:09 Received From : +17:47:09 ============================================================================ +17:47:09 FNo. Len. Field Value +17:47:09 ============================================================================ +17:47:09 [ 1] [ 4] [0200] +17:47:09 [ 2] [ 16] [6688990601311309] +17:47:09 [ 3] [ 6] [301000] +17:47:09 [ 7] [ 10] [0320104615] +17:47:09 [ 11] [ 6] [270979] +17:47:09 [ 12] [ 6] [174615] +17:47:09 [ 13] [ 4] [0320] +17:47:09 [ 14] [ 4] [4107] +17:47:09 [ 15] [ 4] [0320] +17:47:09 [ 18] [ 4] [6011] +17:47:09 [ 19] [ 3] [418] +17:47:09 [ 22] [ 3] [021] +17:47:09 [ 25] [ 2] [01] +17:47:09 [ 32] [ 6] [180893] +17:47:09 [ 35] [ 37] [6688990601311309=41070061130998300000] +17:47:09 [ 37] [ 12] [507910270979] +17:47:09 [ 41] [ 8] [0541VPNG] +17:47:09 [ 42] [ 15] [999999 ] +17:47:09 [ 43] [ 40] [ATM PARKNGUEM VIENTIANE CAPITAL, Pakngeu] +17:47:09 [ 49] [ 3] [418] +17:47:09 [ 52] [ 16] [006B74089EE82EBE] +17:47:09 ============================================================================ +17:47:09 + + +waiting on router queue for slot.... +17:47:09 Sending to : +17:47:09 ============================================================================ +17:47:09 ============================================================================ +17:47:09 Slot Id : <48> +17:47:09 Transaction Type : REQUEST +17:47:09 Received From : +17:47:09 ============================================================================ +17:47:09 FNo. Len. Field Value +17:47:09 ============================================================================ +17:47:09 [ 1] [ 4] [0200] +17:47:09 [ 2] [ 16] [6688990601311309] +17:47:09 [ 3] [ 6] [301000] +17:47:09 [ 7] [ 10] [0320104615] +17:47:09 [ 11] [ 6] [270979] +17:47:09 [ 12] [ 6] [174615] +17:47:09 [ 13] [ 4] [0320] +17:47:09 [ 14] [ 4] [4107] +17:47:09 [ 15] [ 4] [0320] +17:47:09 [ 18] [ 4] [6011] +17:47:09 [ 19] [ 3] [418] +17:47:09 [ 22] [ 3] [021] +17:47:09 [ 25] [ 2] [01] +17:47:09 [ 32] [ 6] [180893] +17:47:09 [ 35] [ 37] [6688990601311309=41070061130998300000] +17:47:09 [ 37] [ 12] [507910270979] +17:47:09 [ 41] [ 8] [0541VPNG] +17:47:09 [ 42] [ 15] [999999 ] +17:47:09 [ 43] [ 40] [ATM PARKNGUEM VIENTIANE CAPITAL, Pakngeu] +17:47:09 [ 49] [ 3] [418] +17:47:09 [ 52] [ 16] [F1BE178465717912] +17:47:09 ============================================================================ +17:47:09 + + +waiting on router queue for slot.... +17:47:09 Sending to : <0> +17:47:09 ============================================================================ +17:47:09 ============================================================================ +17:47:09 Slot Id : <48> +17:47:09 Transaction Type : RESPONSE +17:47:09 Received From : +17:47:09 ============================================================================ +17:47:09 FNo. Len. Field Value +17:47:09 ============================================================================ +17:47:09 [ 1] [ 4] [0210] +17:47:09 [ 2] [ 16] [6688990601311309] +17:47:09 [ 3] [ 6] [301000] +17:47:09 [ 4] [ 12] [000000000000] +17:47:09 [ 7] [ 10] [0320104615] +17:47:09 [ 11] [ 6] [270979] +17:47:09 [ 12] [ 6] [174615] +17:47:09 [ 13] [ 4] [0320] +17:47:09 [ 15] [ 4] [0320] +17:47:09 [ 18] [ 4] [6011] +17:47:09 [ 19] [ 3] [418] +17:47:09 [ 22] [ 3] [021] +17:47:09 [ 32] [ 6] [180893] +17:47:09 [ 35] [ 37] [6688990601311309=41070061130998300000] +17:47:09 [ 37] [ 12] [507910270979] +17:47:09 [ 39] [ 2] [14] +17:47:09 [ 41] [ 8] [0541VPNG] +17:47:09 [ 49] [ 3] [418] +17:47:09 ============================================================================ +17:47:09 Sending to : +17:47:09 ============================================================================ +17:47:09 + + +waiting on router queue for slot.... +17:47:10 ============================================================================ +17:47:10 Slot Id : <464> +17:47:10 Transaction Type : RESPONSE +17:47:10 Received From : +17:47:10 ============================================================================ +17:47:10 FNo. Len. Field Value +17:47:10 ============================================================================ +17:47:10 [ 1] [ 4] [0210] +17:47:10 [ 2] [ 16] [1808931300011614] +17:47:10 [ 3] [ 6] [011000] +17:47:10 [ 4] [ 12] [000010000000] +17:47:10 [ 6] [ 12] [000010000000] +17:47:10 [ 7] [ 10] [0320174657] +17:47:10 [ 11] [ 6] [819934] +17:47:10 [ 12] [ 6] [174657] +17:47:10 [ 13] [ 4] [0320] +17:47:10 [ 18] [ 4] [6011] +17:47:10 [ 19] [ 3] [418] +17:47:10 [ 22] [ 3] [021] +17:47:10 [ 32] [ 6] [621354] +17:47:10 [ 35] [ 27] [1808931300011614=1803500472] +17:47:10 [ 37] [ 12] [507903919642] +17:47:10 [ 38] [ 6] [819934] +17:47:10 [ 39] [ 2] [00] +17:47:10 [ 41] [ 8] [01010700] +17:47:10 [ 49] [ 3] [418] +17:47:10 [ 52] [ 16] [35E8D9048487D9BC] +17:47:10 [ 54] [ 20] [1001418C000005525300] +17:47:10 ============================================================================ +17:47:10 Calculate Source COMM Id = 0 +17:47:10 ============================================================================ +17:47:10 + + +waiting on router queue for slot.... +17:47:11 ============================================================================ +17:47:11 Slot Id : <48> +17:47:11 Transaction Type : RESPONSE +17:47:11 Received From : +17:47:11 ============================================================================ +17:47:11 FNo. Len. Field Value +17:47:11 ============================================================================ +17:47:11 [ 1] [ 4] [0210] +17:47:11 [ 2] [ 16] [6688990601311309] +17:47:11 [ 3] [ 6] [301000] +17:47:11 [ 4] [ 12] [000000000000] +17:47:11 [ 7] [ 10] [0320104615] +17:47:11 [ 11] [ 6] [270979] +17:47:11 [ 12] [ 6] [174615] +17:47:11 [ 13] [ 4] [0320] +17:47:11 [ 15] [ 4] [0320] +17:47:11 [ 18] [ 4] [6011] +17:47:11 [ 19] [ 3] [418] +17:47:11 [ 22] [ 3] [021] +17:47:11 [ 32] [ 6] [180893] +17:47:11 [ 35] [ 37] [6688990601311309=41070061130998300000] +17:47:11 [ 37] [ 12] [507910270979] +17:47:11 [ 39] [ 2] [14] +17:47:11 [ 41] [ 8] [0541VPNG] +17:47:11 [ 49] [ 3] [418] +17:47:11 ============================================================================ +17:47:11 Calculate Source COMM Id = 2 +17:47:11 ============================================================================ +17:47:11 + + +waiting on router queue for slot.... +17:47:24 ============================================================================ +17:47:24 Slot Id : <46> +17:47:24 Transaction Type : REQUEST +17:47:24 Received From : +17:47:24 ============================================================================ +17:47:24 FNo. Len. Field Value +17:47:24 ============================================================================ +17:47:24 [ 1] [ 4] [0800] +17:47:24 [ 7] [ 10] [0320104631] +17:47:24 [ 11] [ 6] [157544] +17:47:24 [ 70] [ 3] [301] +17:47:24 ============================================================================ +17:47:24 + + +waiting on router queue for slot.... +17:47:24 Sending to : +17:47:24 ============================================================================ +17:47:24 ============================================================================ +17:47:24 Slot Id : <46> +17:47:24 Transaction Type : RESPONSE +17:47:24 Received From : +17:47:24 ============================================================================ +17:47:24 FNo. Len. Field Value +17:47:24 ============================================================================ +17:47:24 [ 1] [ 4] [0810] +17:47:24 [ 7] [ 10] [0320104631] +17:47:24 [ 11] [ 6] [157544] +17:47:24 [ 39] [ 2] [00] +17:47:24 [ 70] [ 3] [301] +17:47:24 ============================================================================ +17:47:24 Calculate Source COMM Id = 2 +17:47:24 ============================================================================ +17:47:24 + + +waiting on router queue for slot.... +17:47:29 ============================================================================ +17:47:29 Slot Id : <69> +17:47:29 Transaction Type : REQUEST +17:47:29 Received From : +17:47:29 ============================================================================ +17:47:29 FNo. Len. Field Value +17:47:29 ============================================================================ +17:47:29 [ 1] [ 4] [0200] +17:47:29 [ 2] [ 16] [6213544002158258] +17:47:29 [ 3] [ 6] [011000] +17:47:29 [ 4] [ 12] [000045000000] +17:47:29 [ 7] [ 10] [0320174749] +17:47:29 [ 11] [ 6] [209854] +17:47:29 [ 12] [ 6] [174255] +17:47:29 [ 13] [ 4] [0320] +17:47:29 [ 14] [ 4] [4912] +17:47:29 [ 15] [ 4] [0320] +17:47:29 [ 18] [ 4] [6011] +17:47:29 [ 19] [ 3] [418] +17:47:29 [ 22] [ 3] [021] +17:47:29 [ 25] [ 2] [01] +17:47:29 [ 28] [ 9] [D00002000] +17:47:29 [ 32] [ 6] [198901] +17:47:29 [ 35] [ 32] [6213544002158258=491212015825334] +17:47:29 [ 37] [ 12] [507917209854] +17:47:29 [ 41] [ 8] [19529001] +17:47:29 [ 42] [ 15] [000000041952901] +17:47:29 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:47:29 [ 49] [ 3] [418] +17:47:29 [ 52] [ 16] [7A969A60C109D5E3] +17:47:29 ============================================================================ +17:47:29 + + +waiting on router queue for slot.... +17:47:29 Sending to : +17:47:29 ============================================================================ +17:47:29 Sending to : +17:47:29 ============================================================================ +17:47:29 ============================================================================ +17:47:29 Slot Id : <69> +17:47:29 Transaction Type : REQUEST +17:47:29 Received From : +17:47:29 ============================================================================ +17:47:29 FNo. Len. Field Value +17:47:29 ============================================================================ +17:47:29 [ 1] [ 4] [0200] +17:47:29 [ 2] [ 16] [6213544002158258] +17:47:29 [ 3] [ 6] [011000] +17:47:29 [ 4] [ 12] [000045000000] +17:47:29 [ 7] [ 10] [0320174749] +17:47:29 [ 11] [ 6] [209854] +17:47:29 [ 12] [ 6] [174255] +17:47:29 [ 13] [ 4] [0320] +17:47:29 [ 14] [ 4] [4912] +17:47:29 [ 15] [ 4] [0320] +17:47:29 [ 18] [ 4] [6011] +17:47:29 [ 19] [ 3] [418] +17:47:29 [ 22] [ 3] [021] +17:47:29 [ 25] [ 2] [01] +17:47:29 [ 28] [ 9] [D00002000] +17:47:29 [ 32] [ 6] [198901] +17:47:29 [ 35] [ 32] [6213544002158258=491212015825334] +17:47:29 [ 37] [ 12] [507917209854] +17:47:29 [ 41] [ 8] [19529001] +17:47:29 [ 42] [ 15] [000000041952901] +17:47:29 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:47:29 [ 49] [ 3] [418] +17:47:29 [ 52] [ 16] [7A969A60C109D5E3] +17:47:29 ============================================================================ +17:47:29 + + +waiting on router queue for slot.... +17:47:29 Sending to : +17:47:29 ============================================================================ +17:47:29 ============================================================================ +17:47:29 Slot Id : <69> +17:47:29 Transaction Type : REQUEST +17:47:29 Received From : +17:47:29 ============================================================================ +17:47:29 FNo. Len. Field Value +17:47:29 ============================================================================ +17:47:29 [ 1] [ 4] [0200] +17:47:29 [ 2] [ 16] [6213544002158258] +17:47:29 [ 3] [ 6] [011000] +17:47:29 [ 4] [ 12] [000045000000] +17:47:29 [ 7] [ 10] [0320174749] +17:47:29 [ 11] [ 6] [209854] +17:47:29 [ 12] [ 6] [174255] +17:47:29 [ 13] [ 4] [0320] +17:47:29 [ 14] [ 4] [4912] +17:47:29 [ 15] [ 4] [0320] +17:47:29 [ 18] [ 4] [6011] +17:47:29 [ 19] [ 3] [418] +17:47:29 [ 22] [ 3] [021] +17:47:29 [ 25] [ 2] [01] +17:47:29 [ 28] [ 9] [D00002000] +17:47:29 [ 32] [ 6] [198901] +17:47:29 [ 35] [ 32] [6213544002158258=491212015825334] +17:47:29 [ 37] [ 12] [507917209854] +17:47:29 [ 41] [ 8] [19529001] +17:47:29 [ 42] [ 15] [000000041952901] +17:47:29 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:47:29 [ 49] [ 3] [418] +17:47:29 [ 52] [ 16] [755C6772D15C4B92] +17:47:29 ============================================================================ +17:47:29 + + +waiting on router queue for slot.... +17:47:29 Sending to : <0> +17:47:29 ============================================================================ +17:47:29 ============================================================================ +17:47:29 Slot Id : <69> +17:47:29 Transaction Type : RESPONSE +17:47:29 Received From : +17:47:29 ============================================================================ +17:47:29 FNo. Len. Field Value +17:47:29 ============================================================================ +17:47:29 [ 1] [ 4] [0210] +17:47:29 [ 2] [ 16] [6213544002158258] +17:47:29 [ 3] [ 6] [011000] +17:47:29 [ 4] [ 12] [000045000000] +17:47:29 [ 7] [ 10] [0320174749] +17:47:29 [ 11] [ 6] [209854] +17:47:29 [ 12] [ 6] [174255] +17:47:29 [ 13] [ 4] [0320] +17:47:29 [ 15] [ 4] [0320] +17:47:29 [ 18] [ 4] [6011] +17:47:29 [ 19] [ 3] [418] +17:47:29 [ 32] [ 6] [198901] +17:47:29 [ 35] [ 32] [6213544002158258=491212015825334] +17:47:29 [ 37] [ 12] [507917209854] +17:47:29 [ 38] [ 6] [408666] +17:47:29 [ 39] [ 2] [00] +17:47:29 [ 41] [ 8] [19529001] +17:47:29 [ 49] [ 3] [418] +17:47:29 [ 54] [ 40] [1001418C0000074258841002418C000007425884] +17:47:29 ============================================================================ +17:47:29 Sending to : +17:47:29 ============================================================================ +17:47:29 + + +waiting on router queue for slot.... +17:47:31 ============================================================================ +17:47:31 Slot Id : <69> +17:47:31 Transaction Type : RESPONSE +17:47:31 Received From : +17:47:31 ============================================================================ +17:47:31 FNo. Len. Field Value +17:47:31 ============================================================================ +17:47:31 [ 1] [ 4] [0210] +17:47:31 [ 2] [ 16] [6213544002158258] +17:47:31 [ 3] [ 6] [011000] +17:47:31 [ 4] [ 12] [000045000000] +17:47:31 [ 7] [ 10] [0320174749] +17:47:31 [ 11] [ 6] [209854] +17:47:31 [ 12] [ 6] [174255] +17:47:31 [ 13] [ 4] [0320] +17:47:31 [ 15] [ 4] [0320] +17:47:31 [ 18] [ 4] [6011] +17:47:31 [ 19] [ 3] [418] +17:47:31 [ 32] [ 6] [198901] +17:47:31 [ 35] [ 32] [6213544002158258=491212015825334] +17:47:31 [ 37] [ 12] [507917209854] +17:47:31 [ 38] [ 6] [408666] +17:47:31 [ 39] [ 2] [00] +17:47:31 [ 41] [ 8] [19529001] +17:47:31 [ 49] [ 3] [418] +17:47:31 [ 54] [ 40] [1001418C0000074258841002418C000007425884] +17:47:31 ============================================================================ +17:47:31 Calculate Source COMM Id = 5 +17:47:31 ============================================================================ +17:47:31 + + +waiting on router queue for slot.... +17:47:32 ============================================================================ +17:47:32 Slot Id : <27> +17:47:32 Transaction Type : REQUEST +17:47:32 Received From : +17:47:32 ============================================================================ +17:47:32 FNo. Len. Field Value +17:47:32 ============================================================================ +17:47:32 [ 1] [ 4] [0200] +17:47:32 [ 2] [ 16] [1808930200049179] +17:47:32 [ 3] [ 6] [011000] +17:47:32 [ 4] [ 12] [000010000000] +17:47:32 [ 7] [ 10] [0320174727] +17:47:32 [ 11] [ 6] [820066] +17:47:32 [ 12] [ 6] [174727] +17:47:32 [ 13] [ 4] [0320] +17:47:32 [ 15] [ 4] [0320] +17:47:32 [ 18] [ 4] [6011] +17:47:32 [ 22] [ 3] [900] +17:47:32 [ 25] [ 2] [02] +17:47:32 [ 28] [ 9] [D00002000] +17:47:32 [ 32] [ 6] [621354] +17:47:32 [ 35] [ 27] [1808930200049179=1803500735] +17:47:32 [ 37] [ 12] [507903863727] +17:47:32 [ 41] [ 8] [01010200] +17:47:32 [ 42] [ 15] [NATIVE ] +17:47:32 [ 43] [ 40] [Thangone Market Xaythany LAO] +17:47:32 [ 49] [ 3] [418] +17:47:32 [ 52] [ 16] [CDF83498A5B93EC5] +17:47:32 ============================================================================ +17:47:32 + + +waiting on router queue for slot.... +17:47:32 Sending to : +17:47:32 ============================================================================ +17:47:32 Sending to : +17:47:32 ============================================================================ +17:47:32 ============================================================================ +17:47:32 Slot Id : <27> +17:47:32 Transaction Type : REQUEST +17:47:32 Received From : +17:47:32 ============================================================================ +17:47:32 FNo. Len. Field Value +17:47:32 ============================================================================ +17:47:32 [ 1] [ 4] [0200] +17:47:32 [ 2] [ 16] [1808930200049179] +17:47:32 [ 3] [ 6] [011000] +17:47:32 [ 4] [ 12] [000010000000] +17:47:32 [ 7] [ 10] [0320174727] +17:47:32 [ 11] [ 6] [820066] +17:47:32 [ 12] [ 6] [174727] +17:47:32 [ 13] [ 4] [0320] +17:47:32 [ 15] [ 4] [0320] +17:47:32 [ 18] [ 4] [6011] +17:47:32 [ 22] [ 3] [900] +17:47:32 [ 25] [ 2] [02] +17:47:32 [ 28] [ 9] [D00002000] +17:47:32 [ 32] [ 6] [621354] +17:47:32 [ 35] [ 27] [1808930200049179=1803500735] +17:47:32 [ 37] [ 12] [507903863727] +17:47:32 [ 41] [ 8] [01010200] +17:47:32 [ 42] [ 15] [NATIVE ] +17:47:32 [ 43] [ 40] [Thangone Market Xaythany LAO] +17:47:32 [ 49] [ 3] [418] +17:47:32 [ 52] [ 16] [CDF83498A5B93EC5] +17:47:32 ============================================================================ +17:47:32 + + +waiting on router queue for slot.... +17:47:32 Sending to : +17:47:32 ============================================================================ +17:47:32 ============================================================================ +17:47:32 Slot Id : <27> +17:47:32 Transaction Type : REQUEST +17:47:32 Received From : +17:47:32 ============================================================================ +17:47:32 FNo. Len. Field Value +17:47:32 ============================================================================ +17:47:32 [ 1] [ 4] [0200] +17:47:32 [ 2] [ 16] [1808930200049179] +17:47:32 [ 3] [ 6] [011000] +17:47:32 [ 4] [ 12] [000010000000] +17:47:32 [ 7] [ 10] [0320174727] +17:47:32 [ 11] [ 6] [820066] +17:47:32 [ 12] [ 6] [174727] +17:47:32 [ 13] [ 4] [0320] +17:47:32 [ 15] [ 4] [0320] +17:47:32 [ 18] [ 4] [6011] +17:47:32 [ 22] [ 3] [900] +17:47:32 [ 25] [ 2] [02] +17:47:32 [ 28] [ 9] [D00002000] +17:47:32 [ 32] [ 6] [621354] +17:47:32 [ 35] [ 27] [1808930200049179=1803500735] +17:47:32 [ 37] [ 12] [507903863727] +17:47:32 [ 41] [ 8] [01010200] +17:47:32 [ 42] [ 15] [NATIVE ] +17:47:32 [ 43] [ 40] [Thangone Market Xaythany LAO] +17:47:32 [ 49] [ 3] [418] +17:47:32 [ 52] [ 16] [0B53D0F4D95E0847] +17:47:32 ============================================================================ +17:47:32 + + +waiting on router queue for slot.... +17:47:32 Sending to : <2> +17:47:32 ============================================================================ +17:47:35 ============================================================================ +17:47:35 Slot Id : <27> +17:47:35 Transaction Type : RESPONSE +17:47:35 Received From : +17:47:35 ============================================================================ +17:47:35 FNo. Len. Field Value +17:47:35 ============================================================================ +17:47:35 [ 1] [ 4] [0210] +17:47:35 [ 2] [ 16] [1808930200049179] +17:47:35 [ 3] [ 6] [011000] +17:47:35 [ 4] [ 12] [000010000000] +17:47:35 [ 6] [ 12] [000010000000] +17:47:35 [ 7] [ 10] [0320174727] +17:47:35 [ 11] [ 6] [820066] +17:47:35 [ 12] [ 6] [174727] +17:47:35 [ 13] [ 4] [0320] +17:47:35 [ 18] [ 4] [6011] +17:47:35 [ 19] [ 3] [418] +17:47:35 [ 22] [ 3] [021] +17:47:35 [ 32] [ 6] [621354] +17:47:35 [ 35] [ 27] [1808930200049179=1803500735] +17:47:35 [ 37] [ 12] [507903863727] +17:47:35 [ 38] [ 6] [820066] +17:47:35 [ 39] [ 2] [00] +17:47:35 [ 41] [ 8] [01010200] +17:47:35 [ 49] [ 3] [418] +17:47:35 [ 52] [ 16] [0B53D0F4D95E0847] +17:47:35 [ 54] [ 20] [1001418C000331209000] +17:47:35 ============================================================================ +17:47:35 Sending to : +17:47:35 ============================================================================ +17:47:35 + + +waiting on router queue for slot.... +17:47:36 ============================================================================ +17:47:36 Slot Id : <19> +17:47:36 Transaction Type : REQUEST +17:47:36 Received From : +17:47:36 ============================================================================ +17:47:36 FNo. Len. Field Value +17:47:36 ============================================================================ +17:47:36 [ 1] [ 4] [0200] +17:47:36 [ 2] [ 16] [6688990601443003] +17:47:36 [ 3] [ 6] [300000] +17:47:36 [ 4] [ 12] [000000000000] +17:47:36 [ 7] [ 10] [0320174731] +17:47:36 [ 11] [ 6] [820088] +17:47:36 [ 12] [ 6] [174731] +17:47:36 [ 13] [ 4] [0320] +17:47:36 [ 15] [ 4] [0320] +17:47:36 [ 18] [ 4] [6011] +17:47:36 [ 22] [ 3] [900] +17:47:36 [ 25] [ 2] [02] +17:47:36 [ 28] [ 9] [D00000000] +17:47:36 [ 32] [ 6] [621354] +17:47:36 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:47:36 [ 37] [ 12] [507904154129] +17:47:36 [ 41] [ 8] [20001000] +17:47:36 [ 42] [ 15] [NATIVE ] +17:47:36 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:47:36 [ 49] [ 3] [418] +17:47:36 [ 52] [ 16] [A20525E61AA50CDA] +17:47:36 ============================================================================ +17:47:36 + + +waiting on router queue for slot.... +17:47:36 Sending to : +17:47:36 ============================================================================ +17:47:36 Sending to : +17:47:36 ============================================================================ +17:47:37 ============================================================================ +17:47:37 Slot Id : <19> +17:47:37 Transaction Type : REQUEST +17:47:37 Received From : +17:47:37 ============================================================================ +17:47:37 FNo. Len. Field Value +17:47:37 ============================================================================ +17:47:37 [ 1] [ 4] [0200] +17:47:37 [ 2] [ 16] [6688990601443003] +17:47:37 [ 3] [ 6] [300000] +17:47:37 [ 4] [ 12] [000000000000] +17:47:37 [ 7] [ 10] [0320174731] +17:47:37 [ 11] [ 6] [820088] +17:47:37 [ 12] [ 6] [174731] +17:47:37 [ 13] [ 4] [0320] +17:47:37 [ 15] [ 4] [0320] +17:47:37 [ 18] [ 4] [6011] +17:47:37 [ 22] [ 3] [900] +17:47:37 [ 25] [ 2] [02] +17:47:37 [ 28] [ 9] [D00000000] +17:47:37 [ 32] [ 6] [621354] +17:47:37 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:47:37 [ 37] [ 12] [507904154129] +17:47:37 [ 41] [ 8] [20001000] +17:47:37 [ 42] [ 15] [NATIVE ] +17:47:37 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:47:37 [ 49] [ 3] [418] +17:47:37 [ 52] [ 16] [A20525E61AA50CDA] +17:47:37 ============================================================================ +17:47:37 + + +waiting on router queue for slot.... +17:47:37 Sending to : +17:47:37 ============================================================================ +17:47:37 ============================================================================ +17:47:37 Slot Id : <19> +17:47:37 Transaction Type : REQUEST +17:47:37 Received From : +17:47:37 ============================================================================ +17:47:37 FNo. Len. Field Value +17:47:37 ============================================================================ +17:47:37 [ 1] [ 4] [0200] +17:47:37 [ 2] [ 16] [6688990601443003] +17:47:37 [ 3] [ 6] [300000] +17:47:37 [ 4] [ 12] [000000000000] +17:47:37 [ 7] [ 10] [0320174731] +17:47:37 [ 11] [ 6] [820088] +17:47:37 [ 12] [ 6] [174731] +17:47:37 [ 13] [ 4] [0320] +17:47:37 [ 15] [ 4] [0320] +17:47:37 [ 18] [ 4] [6011] +17:47:37 [ 22] [ 3] [900] +17:47:37 [ 25] [ 2] [02] +17:47:37 [ 28] [ 9] [D00000000] +17:47:37 [ 32] [ 6] [621354] +17:47:37 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:47:37 [ 37] [ 12] [507904154129] +17:47:37 [ 41] [ 8] [20001000] +17:47:37 [ 42] [ 15] [NATIVE ] +17:47:37 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:47:37 [ 49] [ 3] [418] +17:47:37 [ 52] [ 16] [F8DDBA667328DD48] +17:47:37 ============================================================================ +17:47:37 + + +waiting on router queue for slot.... +17:47:37 Sending to : <4> +17:47:37 ============================================================================ +17:47:37 ============================================================================ +17:47:37 Slot Id : <27> +17:47:37 Transaction Type : RESPONSE +17:47:37 Received From : +17:47:37 ============================================================================ +17:47:37 FNo. Len. Field Value +17:47:37 ============================================================================ +17:47:37 [ 1] [ 4] [0210] +17:47:37 [ 2] [ 16] [1808930200049179] +17:47:37 [ 3] [ 6] [011000] +17:47:37 [ 4] [ 12] [000010000000] +17:47:37 [ 6] [ 12] [000010000000] +17:47:37 [ 7] [ 10] [0320174727] +17:47:37 [ 11] [ 6] [820066] +17:47:37 [ 12] [ 6] [174727] +17:47:37 [ 13] [ 4] [0320] +17:47:37 [ 18] [ 4] [6011] +17:47:37 [ 19] [ 3] [418] +17:47:37 [ 22] [ 3] [021] +17:47:37 [ 32] [ 6] [621354] +17:47:37 [ 35] [ 27] [1808930200049179=1803500735] +17:47:37 [ 37] [ 12] [507903863727] +17:47:37 [ 38] [ 6] [820066] +17:47:37 [ 39] [ 2] [00] +17:47:37 [ 41] [ 8] [01010200] +17:47:37 [ 49] [ 3] [418] +17:47:37 [ 52] [ 16] [0B53D0F4D95E0847] +17:47:37 [ 54] [ 20] [1001418C000331209000] +17:47:37 ============================================================================ +17:47:37 Calculate Source COMM Id = 0 +17:47:37 ============================================================================ +17:47:37 + + +waiting on router queue for slot.... +17:47:38 ============================================================================ +17:47:38 Slot Id : <19> +17:47:38 Transaction Type : RESPONSE +17:47:38 Received From : +17:47:38 ============================================================================ +17:47:38 FNo. Len. Field Value +17:47:38 ============================================================================ +17:47:38 [ 1] [ 4] [0210] +17:47:38 [ 2] [ 16] [6688990601443003] +17:47:38 [ 3] [ 6] [300000] +17:47:38 [ 4] [ 12] [000000000000] +17:47:38 [ 11] [ 6] [820088] +17:47:38 [ 12] [ 6] [174731] +17:47:38 [ 15] [ 4] [0320] +17:47:38 [ 18] [ 4] [6011] +17:47:38 [ 32] [ 6] [621354] +17:47:38 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:47:38 [ 37] [ 12] [507904154129] +17:47:38 [ 38] [ 6] [958422] +17:47:38 [ 39] [ 2] [00] +17:47:38 [ 41] [ 8] [20001000] +17:47:38 [ 49] [ 3] [418] +17:47:38 [ 54] [ 20] [0002418C000031021032] +17:47:38 ============================================================================ +17:47:38 Sending to : +17:47:38 ============================================================================ +17:47:38 + + +waiting on router queue for slot.... +17:47:39 ============================================================================ +17:47:39 Slot Id : <19> +17:47:39 Transaction Type : RESPONSE +17:47:39 Received From : +17:47:39 ============================================================================ +17:47:39 FNo. Len. Field Value +17:47:39 ============================================================================ +17:47:39 [ 1] [ 4] [0210] +17:47:39 [ 2] [ 16] [6688990601443003] +17:47:39 [ 3] [ 6] [300000] +17:47:39 [ 4] [ 12] [000000000000] +17:47:39 [ 11] [ 6] [820088] +17:47:39 [ 12] [ 6] [174731] +17:47:39 [ 15] [ 4] [0320] +17:47:39 [ 18] [ 4] [6011] +17:47:39 [ 32] [ 6] [621354] +17:47:39 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:47:39 [ 37] [ 12] [507904154129] +17:47:39 [ 38] [ 6] [958422] +17:47:39 [ 39] [ 2] [00] +17:47:39 [ 41] [ 8] [20001000] +17:47:39 [ 49] [ 3] [418] +17:47:39 [ 54] [ 20] [0002418C000031021032] +17:47:39 ============================================================================ +17:47:39 Calculate Source COMM Id = 0 +17:47:39 ============================================================================ +17:47:39 + + +waiting on router queue for slot.... +17:47:39 ============================================================================ +17:47:39 Slot Id : <47> +17:47:39 Transaction Type : REQUEST +17:47:39 Received From : +17:47:39 ============================================================================ +17:47:39 FNo. Len. Field Value +17:47:39 ============================================================================ +17:47:39 [ 1] [ 4] [0200] +17:47:39 [ 2] [ 16] [1999990000015159] +17:47:39 [ 3] [ 6] [013000] +17:47:39 [ 4] [ 12] [000100000000] +17:47:39 [ 7] [ 10] [0320174734] +17:47:39 [ 11] [ 6] [820101] +17:47:39 [ 12] [ 6] [174734] +17:47:39 [ 13] [ 4] [0320] +17:47:39 [ 15] [ 4] [0320] +17:47:39 [ 18] [ 4] [6011] +17:47:39 [ 22] [ 3] [900] +17:47:39 [ 25] [ 2] [02] +17:47:39 [ 28] [ 9] [D00002000] +17:47:39 [ 32] [ 6] [621354] +17:47:39 [ 35] [ 32] [1999990000015159=000010100000765] +17:47:39 [ 37] [ 12] [507902706635] +17:47:39 [ 41] [ 8] [14000900] +17:47:39 [ 42] [ 15] [NATIVE ] +17:47:39 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:47:39 [ 49] [ 3] [418] +17:47:39 [ 52] [ 16] [D220399309D270CB] +17:47:39 ============================================================================ +17:47:39 + + +waiting on router queue for slot.... +17:47:39 Sending to : +17:47:39 ============================================================================ +17:47:39 Sending to : +17:47:39 ============================================================================ +17:47:40 ============================================================================ +17:47:40 Slot Id : <47> +17:47:40 Transaction Type : REQUEST +17:47:40 Received From : +17:47:40 ============================================================================ +17:47:40 FNo. Len. Field Value +17:47:40 ============================================================================ +17:47:40 [ 1] [ 4] [0200] +17:47:40 [ 2] [ 16] [1999990000015159] +17:47:40 [ 3] [ 6] [013000] +17:47:40 [ 4] [ 12] [000100000000] +17:47:40 [ 7] [ 10] [0320174734] +17:47:40 [ 11] [ 6] [820101] +17:47:40 [ 12] [ 6] [174734] +17:47:40 [ 13] [ 4] [0320] +17:47:40 [ 15] [ 4] [0320] +17:47:40 [ 18] [ 4] [6011] +17:47:40 [ 22] [ 3] [900] +17:47:40 [ 25] [ 2] [02] +17:47:40 [ 28] [ 9] [D00002000] +17:47:40 [ 32] [ 6] [621354] +17:47:40 [ 35] [ 32] [1999990000015159=000010100000765] +17:47:40 [ 37] [ 12] [507902706635] +17:47:40 [ 41] [ 8] [14000900] +17:47:40 [ 42] [ 15] [NATIVE ] +17:47:40 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:47:40 [ 49] [ 3] [418] +17:47:40 [ 52] [ 16] [D220399309D270CB] +17:47:40 ============================================================================ +17:47:40 + + +waiting on router queue for slot.... +17:47:40 Sending to : +17:47:40 ============================================================================ +17:47:40 ============================================================================ +17:47:40 Slot Id : <47> +17:47:40 Transaction Type : REQUEST +17:47:40 Received From : +17:47:40 ============================================================================ +17:47:40 FNo. Len. Field Value +17:47:40 ============================================================================ +17:47:40 [ 1] [ 4] [0200] +17:47:40 [ 2] [ 16] [1999990000015159] +17:47:40 [ 3] [ 6] [013000] +17:47:40 [ 4] [ 12] [000100000000] +17:47:40 [ 7] [ 10] [0320174734] +17:47:40 [ 11] [ 6] [820101] +17:47:40 [ 12] [ 6] [174734] +17:47:40 [ 13] [ 4] [0320] +17:47:40 [ 15] [ 4] [0320] +17:47:40 [ 18] [ 4] [6011] +17:47:40 [ 22] [ 3] [900] +17:47:40 [ 25] [ 2] [02] +17:47:40 [ 28] [ 9] [D00002000] +17:47:40 [ 32] [ 6] [621354] +17:47:40 [ 35] [ 32] [1999990000015159=000010100000765] +17:47:40 [ 37] [ 12] [507902706635] +17:47:40 [ 41] [ 8] [14000900] +17:47:40 [ 42] [ 15] [NATIVE ] +17:47:40 [ 43] [ 40] [BAN NAMON Vangvieng LAO] +17:47:40 [ 49] [ 3] [418] +17:47:40 [ 52] [ 16] [A19B9815F4F66029] +17:47:40 ============================================================================ +17:47:40 + + +waiting on router queue for slot.... +17:47:40 Sending to : <5> +17:47:40 ============================================================================ +17:47:40 ============================================================================ +17:47:40 Slot Id : <54> +17:47:40 Transaction Type : REQUEST +17:47:40 Received From : +17:47:40 ============================================================================ +17:47:40 FNo. Len. Field Value +17:47:40 ============================================================================ +17:47:40 [ 1] [ 4] [0200] +17:47:40 [ 2] [ 16] [6213543000092097] +17:47:40 [ 3] [ 6] [011000] +17:47:40 [ 4] [ 12] [000100000000] +17:47:40 [ 7] [ 10] [0320174800] +17:47:40 [ 11] [ 6] [209857] +17:47:40 [ 12] [ 6] [184144] +17:47:40 [ 13] [ 4] [0320] +17:47:40 [ 14] [ 4] [4912] +17:47:40 [ 15] [ 4] [0320] +17:47:40 [ 18] [ 4] [6011] +17:47:40 [ 19] [ 3] [418] +17:47:40 [ 22] [ 3] [021] +17:47:40 [ 25] [ 2] [01] +17:47:40 [ 28] [ 9] [D00002000] +17:47:40 [ 32] [ 6] [198901] +17:47:40 [ 35] [ 32] [6213543000092097=491212019209143] +17:47:40 [ 37] [ 12] [507917209857] +17:47:40 [ 41] [ 8] [01529012] +17:47:40 [ 42] [ 15] [000000041529012] +17:47:40 [ 43] [ 40] [JDB ATM THATKHAO VN ] +17:47:40 [ 49] [ 3] [418] +17:47:40 [ 52] [ 16] [6243A64766089D2B] +17:47:40 ============================================================================ +17:47:40 + + +waiting on router queue for slot.... +17:47:40 Sending to : +17:47:40 ============================================================================ +17:47:40 Sending to : +17:47:40 ============================================================================ +17:47:40 ============================================================================ +17:47:40 Slot Id : <54> +17:47:40 Transaction Type : REQUEST +17:47:40 Received From : +17:47:40 ============================================================================ +17:47:40 FNo. Len. Field Value +17:47:40 ============================================================================ +17:47:40 [ 1] [ 4] [0200] +17:47:40 [ 2] [ 16] [6213543000092097] +17:47:40 [ 3] [ 6] [011000] +17:47:40 [ 4] [ 12] [000100000000] +17:47:40 [ 7] [ 10] [0320174800] +17:47:40 [ 11] [ 6] [209857] +17:47:40 [ 12] [ 6] [184144] +17:47:40 [ 13] [ 4] [0320] +17:47:40 [ 14] [ 4] [4912] +17:47:40 [ 15] [ 4] [0320] +17:47:40 [ 18] [ 4] [6011] +17:47:40 [ 19] [ 3] [418] +17:47:40 [ 22] [ 3] [021] +17:47:40 [ 25] [ 2] [01] +17:47:40 [ 28] [ 9] [D00002000] +17:47:40 [ 32] [ 6] [198901] +17:47:40 [ 35] [ 32] [6213543000092097=491212019209143] +17:47:40 [ 37] [ 12] [507917209857] +17:47:40 [ 41] [ 8] [01529012] +17:47:40 [ 42] [ 15] [000000041529012] +17:47:40 [ 43] [ 40] [JDB ATM THATKHAO VN ] +17:47:40 [ 49] [ 3] [418] +17:47:40 [ 52] [ 16] [6243A64766089D2B] +17:47:40 ============================================================================ +17:47:40 + + +waiting on router queue for slot.... +17:47:40 Sending to : +17:47:40 ============================================================================ +17:47:40 ============================================================================ +17:47:40 Slot Id : <54> +17:47:40 Transaction Type : REQUEST +17:47:40 Received From : +17:47:40 ============================================================================ +17:47:40 FNo. Len. Field Value +17:47:40 ============================================================================ +17:47:40 [ 1] [ 4] [0200] +17:47:40 [ 2] [ 16] [6213543000092097] +17:47:40 [ 3] [ 6] [011000] +17:47:40 [ 4] [ 12] [000100000000] +17:47:40 [ 7] [ 10] [0320174800] +17:47:40 [ 11] [ 6] [209857] +17:47:40 [ 12] [ 6] [184144] +17:47:40 [ 13] [ 4] [0320] +17:47:40 [ 14] [ 4] [4912] +17:47:40 [ 15] [ 4] [0320] +17:47:40 [ 18] [ 4] [6011] +17:47:40 [ 19] [ 3] [418] +17:47:40 [ 22] [ 3] [021] +17:47:40 [ 25] [ 2] [01] +17:47:40 [ 28] [ 9] [D00002000] +17:47:40 [ 32] [ 6] [198901] +17:47:40 [ 35] [ 32] [6213543000092097=491212019209143] +17:47:40 [ 37] [ 12] [507917209857] +17:47:40 [ 41] [ 8] [01529012] +17:47:40 [ 42] [ 15] [000000041529012] +17:47:40 [ 43] [ 40] [JDB ATM THATKHAO VN ] +17:47:40 [ 49] [ 3] [418] +17:47:40 [ 52] [ 16] [0B4C2F1A379480F5] +17:47:40 ============================================================================ +17:47:40 + + +waiting on router queue for slot.... +17:47:40 Sending to : <0> +17:47:40 ============================================================================ +17:47:42 ============================================================================ +17:47:42 Slot Id : <54> +17:47:42 Transaction Type : RESPONSE +17:47:42 Received From : +17:47:42 ============================================================================ +17:47:42 FNo. Len. Field Value +17:47:42 ============================================================================ +17:47:42 [ 1] [ 4] [0210] +17:47:42 [ 2] [ 16] [6213543000092097] +17:47:42 [ 3] [ 6] [011000] +17:47:42 [ 4] [ 12] [000100000000] +17:47:42 [ 7] [ 10] [0320174800] +17:47:42 [ 11] [ 6] [209857] +17:47:42 [ 12] [ 6] [184144] +17:47:42 [ 13] [ 4] [0320] +17:47:42 [ 15] [ 4] [0320] +17:47:42 [ 18] [ 4] [6011] +17:47:42 [ 19] [ 3] [418] +17:47:42 [ 32] [ 6] [198901] +17:47:42 [ 35] [ 32] [6213543000092097=491212019209143] +17:47:42 [ 37] [ 12] [507917209857] +17:47:42 [ 38] [ 6] [671962] +17:47:42 [ 39] [ 2] [00] +17:47:42 [ 41] [ 8] [01529012] +17:47:42 [ 49] [ 3] [418] +17:47:42 [ 54] [ 40] [1001418C0000272184171002418C000027218417] +17:47:42 ============================================================================ +17:47:42 Sending to : +17:47:42 ============================================================================ +17:47:42 + + +waiting on router queue for slot.... +17:47:43 ============================================================================ +17:47:43 Slot Id : <54> +17:47:43 Transaction Type : RESPONSE +17:47:43 Received From : +17:47:43 ============================================================================ +17:47:43 FNo. Len. Field Value +17:47:43 ============================================================================ +17:47:43 [ 1] [ 4] [0210] +17:47:43 [ 2] [ 16] [6213543000092097] +17:47:43 [ 3] [ 6] [011000] +17:47:43 [ 4] [ 12] [000100000000] +17:47:43 [ 7] [ 10] [0320174800] +17:47:43 [ 11] [ 6] [209857] +17:47:43 [ 12] [ 6] [184144] +17:47:43 [ 13] [ 4] [0320] +17:47:43 [ 15] [ 4] [0320] +17:47:43 [ 18] [ 4] [6011] +17:47:43 [ 19] [ 3] [418] +17:47:43 [ 32] [ 6] [198901] +17:47:43 [ 35] [ 32] [6213543000092097=491212019209143] +17:47:43 [ 37] [ 12] [507917209857] +17:47:43 [ 38] [ 6] [671962] +17:47:43 [ 39] [ 2] [00] +17:47:43 [ 41] [ 8] [01529012] +17:47:43 [ 49] [ 3] [418] +17:47:43 [ 54] [ 40] [1001418C0000272184171002418C000027218417] +17:47:43 ============================================================================ +17:47:43 Calculate Source COMM Id = 5 +17:47:43 ============================================================================ +17:47:43 + + +waiting on router queue for slot.... +17:47:43 ============================================================================ +17:47:43 Slot Id : <47> +17:47:43 Transaction Type : RESPONSE +17:47:43 Received From : +17:47:43 ============================================================================ +17:47:43 FNo. Len. Field Value +17:47:43 ============================================================================ +17:47:43 [ 1] [ 4] [0210] +17:47:43 [ 2] [ 16] [1999990000015159] +17:47:43 [ 3] [ 6] [013000] +17:47:43 [ 4] [ 12] [000100000000] +17:47:43 [ 7] [ 10] [0320174734] +17:47:43 [ 11] [ 6] [820101] +17:47:43 [ 12] [ 6] [174734] +17:47:43 [ 13] [ 4] [0320] +17:47:43 [ 15] [ 4] [0320] +17:47:43 [ 18] [ 4] [6011] +17:47:43 [ 19] [ 3] [418] +17:47:43 [ 32] [ 6] [621354] +17:47:43 [ 37] [ 12] [507902706635] +17:47:43 [ 38] [ 6] [593244] +17:47:43 [ 39] [ 2] [00] +17:47:43 [ 41] [ 8] [14000900] +17:47:43 [ 49] [ 3] [418] +17:47:43 [ 54] [ 0] [] +17:47:43 ============================================================================ +17:47:43 Sending to : +17:47:43 ============================================================================ +17:47:43 + + +waiting on router queue for slot.... +17:47:45 ============================================================================ +17:47:45 Slot Id : <47> +17:47:45 Transaction Type : RESPONSE +17:47:45 Received From : +17:47:45 ============================================================================ +17:47:45 FNo. Len. Field Value +17:47:45 ============================================================================ +17:47:45 [ 1] [ 4] [0210] +17:47:45 [ 2] [ 16] [1999990000015159] +17:47:45 [ 3] [ 6] [013000] +17:47:45 [ 4] [ 12] [000100000000] +17:47:45 [ 7] [ 10] [0320174734] +17:47:45 [ 11] [ 6] [820101] +17:47:45 [ 12] [ 6] [174734] +17:47:45 [ 13] [ 4] [0320] +17:47:45 [ 15] [ 4] [0320] +17:47:45 [ 18] [ 4] [6011] +17:47:45 [ 19] [ 3] [418] +17:47:45 [ 32] [ 6] [621354] +17:47:45 [ 37] [ 12] [507902706635] +17:47:45 [ 38] [ 6] [593244] +17:47:45 [ 39] [ 2] [00] +17:47:45 [ 41] [ 8] [14000900] +17:47:45 [ 49] [ 3] [418] +17:47:45 [ 54] [ 0] [] +17:47:45 ============================================================================ +17:47:45 Calculate Source COMM Id = 0 +17:47:45 ============================================================================ +17:47:45 + + +waiting on router queue for slot.... +17:47:45 ============================================================================ +17:47:45 Slot Id : <57> +17:47:45 Transaction Type : REQUEST +17:47:45 Received From : +17:47:45 ============================================================================ +17:47:45 FNo. Len. Field Value +17:47:45 ============================================================================ +17:47:45 [ 1] [ 4] [0200] +17:47:45 [ 2] [ 16] [6688990102736004] +17:47:45 [ 3] [ 6] [011000] +17:47:45 [ 4] [ 12] [000020000000] +17:47:45 [ 7] [ 10] [0320174805] +17:47:45 [ 11] [ 6] [209859] +17:47:45 [ 12] [ 6] [182624] +17:47:45 [ 13] [ 4] [0320] +17:47:45 [ 14] [ 4] [4210] +17:47:45 [ 15] [ 4] [0320] +17:47:45 [ 18] [ 4] [6011] +17:47:45 [ 19] [ 3] [418] +17:47:45 [ 22] [ 3] [021] +17:47:45 [ 25] [ 2] [01] +17:47:45 [ 28] [ 9] [D00002000] +17:47:45 [ 32] [ 6] [198901] +17:47:45 [ 35] [ 37] [6688990102736004=42101231600417200000] +17:47:45 [ 37] [ 12] [507917209859] +17:47:45 [ 41] [ 8] [00002201] +17:47:45 [ 42] [ 15] [000000041002201] +17:47:45 [ 43] [ 40] [WAD CHAN VN ] +17:47:45 [ 49] [ 3] [418] +17:47:45 [ 52] [ 16] [56647432D64E3736] +17:47:45 ============================================================================ +17:47:45 + + +waiting on router queue for slot.... +17:47:45 Sending to : +17:47:45 ============================================================================ +17:47:45 Sending to : +17:47:45 ============================================================================ +17:47:45 ============================================================================ +17:47:45 Slot Id : <57> +17:47:45 Transaction Type : REQUEST +17:47:45 Received From : +17:47:45 ============================================================================ +17:47:45 FNo. Len. Field Value +17:47:45 ============================================================================ +17:47:45 [ 1] [ 4] [0200] +17:47:45 [ 2] [ 16] [6688990102736004] +17:47:45 [ 3] [ 6] [011000] +17:47:45 [ 4] [ 12] [000020000000] +17:47:45 [ 7] [ 10] [0320174805] +17:47:45 [ 11] [ 6] [209859] +17:47:45 [ 12] [ 6] [182624] +17:47:45 [ 13] [ 4] [0320] +17:47:45 [ 14] [ 4] [4210] +17:47:45 [ 15] [ 4] [0320] +17:47:45 [ 18] [ 4] [6011] +17:47:45 [ 19] [ 3] [418] +17:47:45 [ 22] [ 3] [021] +17:47:45 [ 25] [ 2] [01] +17:47:45 [ 28] [ 9] [D00002000] +17:47:45 [ 32] [ 6] [198901] +17:47:45 [ 35] [ 37] [6688990102736004=42101231600417200000] +17:47:45 [ 37] [ 12] [507917209859] +17:47:45 [ 41] [ 8] [00002201] +17:47:45 [ 42] [ 15] [000000041002201] +17:47:45 [ 43] [ 40] [WAD CHAN VN ] +17:47:45 [ 49] [ 3] [418] +17:47:45 [ 52] [ 16] [56647432D64E3736] +17:47:45 ============================================================================ +17:47:45 + + +waiting on router queue for slot.... +17:47:45 Sending to : +17:47:45 ============================================================================ +17:47:45 ============================================================================ +17:47:45 Slot Id : <57> +17:47:45 Transaction Type : REQUEST +17:47:45 Received From : +17:47:45 ============================================================================ +17:47:45 FNo. Len. Field Value +17:47:45 ============================================================================ +17:47:45 [ 1] [ 4] [0200] +17:47:45 [ 2] [ 16] [6688990102736004] +17:47:45 [ 3] [ 6] [011000] +17:47:45 [ 4] [ 12] [000020000000] +17:47:45 [ 7] [ 10] [0320174805] +17:47:45 [ 11] [ 6] [209859] +17:47:45 [ 12] [ 6] [182624] +17:47:45 [ 13] [ 4] [0320] +17:47:45 [ 14] [ 4] [4210] +17:47:45 [ 15] [ 4] [0320] +17:47:45 [ 18] [ 4] [6011] +17:47:45 [ 19] [ 3] [418] +17:47:45 [ 22] [ 3] [021] +17:47:45 [ 25] [ 2] [01] +17:47:45 [ 28] [ 9] [D00002000] +17:47:45 [ 32] [ 6] [198901] +17:47:45 [ 35] [ 37] [6688990102736004=42101231600417200000] +17:47:45 [ 37] [ 12] [507917209859] +17:47:45 [ 41] [ 8] [00002201] +17:47:45 [ 42] [ 15] [000000041002201] +17:47:45 [ 43] [ 40] [WAD CHAN VN ] +17:47:45 [ 49] [ 3] [418] +17:47:45 [ 52] [ 16] [F4A0FCCC08FB8513] +17:47:45 ============================================================================ +17:47:45 + + +waiting on router queue for slot.... +17:47:45 Sending to : <4> +17:47:45 ============================================================================ +17:47:46 ============================================================================ +17:47:46 Slot Id : <78> +17:47:46 Transaction Type : REQUEST +17:47:46 Received From : +17:47:46 ============================================================================ +17:47:46 FNo. Len. Field Value +17:47:46 ============================================================================ +17:47:46 [ 1] [ 4] [0800] +17:47:46 [ 7] [ 10] [0320104652] +17:47:46 [ 11] [ 6] [157545] +17:47:46 [ 70] [ 3] [301] +17:47:46 ============================================================================ +17:47:46 + + +waiting on router queue for slot.... +17:47:46 Sending to : +17:47:46 ============================================================================ +17:47:46 ============================================================================ +17:47:46 Slot Id : <78> +17:47:46 Transaction Type : RESPONSE +17:47:46 Received From : +17:47:46 ============================================================================ +17:47:46 FNo. Len. Field Value +17:47:46 ============================================================================ +17:47:46 [ 1] [ 4] [0810] +17:47:46 [ 7] [ 10] [0320104652] +17:47:46 [ 11] [ 6] [157545] +17:47:46 [ 39] [ 2] [00] +17:47:46 [ 70] [ 3] [301] +17:47:46 ============================================================================ +17:47:46 Calculate Source COMM Id = 2 +17:47:46 ============================================================================ +17:47:46 + + +waiting on router queue for slot.... +17:47:46 ============================================================================ +17:47:46 Slot Id : <24> +17:47:46 Transaction Type : REQUEST +17:47:46 Received From : +17:47:46 ============================================================================ +17:47:46 FNo. Len. Field Value +17:47:46 ============================================================================ +17:47:46 [ 1] [ 4] [0200] +17:47:46 [ 2] [ 16] [6688990103592000] +17:47:46 [ 3] [ 6] [302000] +17:47:46 [ 4] [ 12] [000000000000] +17:47:46 [ 7] [ 10] [0320174741] +17:47:46 [ 11] [ 6] [820133] +17:47:46 [ 12] [ 6] [174741] +17:47:46 [ 13] [ 4] [0320] +17:47:46 [ 15] [ 4] [0320] +17:47:46 [ 18] [ 4] [6011] +17:47:46 [ 22] [ 3] [900] +17:47:46 [ 25] [ 2] [02] +17:47:46 [ 28] [ 9] [D00000000] +17:47:46 [ 32] [ 6] [621354] +17:47:46 [ 35] [ 37] [6688990103592000=43011231200072600000] +17:47:46 [ 37] [ 12] [507903489499] +17:47:46 [ 41] [ 8] [06002100] +17:47:46 [ 42] [ 15] [NATIVE ] +17:47:46 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:47:46 [ 49] [ 3] [418] +17:47:46 [ 52] [ 16] [A3271719D22EC834] +17:47:46 ============================================================================ +17:47:46 + + +waiting on router queue for slot.... +17:47:46 Sending to : +17:47:46 ============================================================================ +17:47:46 Sending to : +17:47:46 ============================================================================ +17:47:46 ============================================================================ +17:47:46 Slot Id : <24> +17:47:46 Transaction Type : REQUEST +17:47:46 Received From : +17:47:46 ============================================================================ +17:47:46 FNo. Len. Field Value +17:47:46 ============================================================================ +17:47:46 [ 1] [ 4] [0200] +17:47:46 [ 2] [ 16] [6688990103592000] +17:47:46 [ 3] [ 6] [302000] +17:47:46 [ 4] [ 12] [000000000000] +17:47:46 [ 7] [ 10] [0320174741] +17:47:46 [ 11] [ 6] [820133] +17:47:46 [ 12] [ 6] [174741] +17:47:46 [ 13] [ 4] [0320] +17:47:46 [ 15] [ 4] [0320] +17:47:46 [ 18] [ 4] [6011] +17:47:46 [ 22] [ 3] [900] +17:47:46 [ 25] [ 2] [02] +17:47:46 [ 28] [ 9] [D00000000] +17:47:46 [ 32] [ 6] [621354] +17:47:46 [ 35] [ 37] [6688990103592000=43011231200072600000] +17:47:46 [ 37] [ 12] [507903489499] +17:47:46 [ 41] [ 8] [06002100] +17:47:46 [ 42] [ 15] [NATIVE ] +17:47:46 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:47:46 [ 49] [ 3] [418] +17:47:46 [ 52] [ 16] [A3271719D22EC834] +17:47:46 ============================================================================ +17:47:46 + + +waiting on router queue for slot.... +17:47:46 Sending to : +17:47:46 ============================================================================ +17:47:46 ============================================================================ +17:47:46 Slot Id : <24> +17:47:46 Transaction Type : REQUEST +17:47:46 Received From : +17:47:46 ============================================================================ +17:47:46 FNo. Len. Field Value +17:47:46 ============================================================================ +17:47:46 [ 1] [ 4] [0200] +17:47:46 [ 2] [ 16] [6688990103592000] +17:47:46 [ 3] [ 6] [302000] +17:47:46 [ 4] [ 12] [000000000000] +17:47:46 [ 7] [ 10] [0320174741] +17:47:46 [ 11] [ 6] [820133] +17:47:46 [ 12] [ 6] [174741] +17:47:46 [ 13] [ 4] [0320] +17:47:46 [ 15] [ 4] [0320] +17:47:46 [ 18] [ 4] [6011] +17:47:46 [ 22] [ 3] [900] +17:47:46 [ 25] [ 2] [02] +17:47:46 [ 28] [ 9] [D00000000] +17:47:46 [ 32] [ 6] [621354] +17:47:46 [ 35] [ 37] [6688990103592000=43011231200072600000] +17:47:46 [ 37] [ 12] [507903489499] +17:47:46 [ 41] [ 8] [06002100] +17:47:46 [ 42] [ 15] [NATIVE ] +17:47:46 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +17:47:46 [ 49] [ 3] [418] +17:47:46 [ 52] [ 16] [E6BC22B7B6A4AFFD] +17:47:46 ============================================================================ +17:47:46 + + +waiting on router queue for slot.... +17:47:46 Sending to : <4> +17:47:46 ============================================================================ +17:47:46 ============================================================================ +17:47:46 Slot Id : <49> +17:47:46 Transaction Type : REQUEST +17:47:46 Received From : +17:47:46 ============================================================================ +17:47:46 FNo. Len. Field Value +17:47:46 ============================================================================ +17:47:46 [ 1] [ 4] [0200] +17:47:46 [ 2] [ 16] [6213544001296976] +17:47:46 [ 3] [ 6] [010000] +17:47:46 [ 4] [ 12] [000050000000] +17:47:46 [ 7] [ 10] [0320104653] +17:47:46 [ 11] [ 6] [270984] +17:47:46 [ 12] [ 6] [174653] +17:47:46 [ 13] [ 4] [0320] +17:47:46 [ 14] [ 4] [4912] +17:47:46 [ 15] [ 4] [0320] +17:47:46 [ 18] [ 4] [6011] +17:47:46 [ 19] [ 3] [418] +17:47:46 [ 22] [ 3] [021] +17:47:46 [ 25] [ 2] [01] +17:47:46 [ 28] [ 9] [D00002000] +17:47:46 [ 32] [ 6] [180893] +17:47:46 [ 35] [ 32] [6213544001296976=491212019697755] +17:47:46 [ 37] [ 12] [507910270984] +17:47:46 [ 41] [ 8] [0528LPBP] +17:47:46 [ 42] [ 15] [999999 ] +17:47:46 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:47:46 [ 49] [ 3] [418] +17:47:46 [ 52] [ 16] [0772187C4A135F58] +17:47:46 ============================================================================ +17:47:46 + + +waiting on router queue for slot.... +17:47:46 Sending to : +17:47:46 ============================================================================ +17:47:46 Sending to : +17:47:46 ============================================================================ +17:47:47 ============================================================================ +17:47:47 Slot Id : <57> +17:47:47 Transaction Type : RESPONSE +17:47:47 Received From : +17:47:47 ============================================================================ +17:47:47 FNo. Len. Field Value +17:47:47 ============================================================================ +17:47:47 [ 1] [ 4] [0210] +17:47:47 [ 2] [ 16] [6688990102736004] +17:47:47 [ 3] [ 6] [011000] +17:47:47 [ 4] [ 12] [000020000000] +17:47:47 [ 11] [ 6] [209859] +17:47:47 [ 12] [ 6] [182624] +17:47:47 [ 15] [ 4] [0320] +17:47:47 [ 18] [ 4] [6011] +17:47:47 [ 32] [ 6] [198901] +17:47:47 [ 35] [ 37] [6688990102736004=42101231600417200000] +17:47:47 [ 37] [ 12] [507917209859] +17:47:47 [ 38] [ 6] [284991] +17:47:47 [ 39] [ 2] [00] +17:47:47 [ 41] [ 8] [00002201] +17:47:47 [ 49] [ 3] [418] +17:47:47 [ 54] [ 20] [1002418C000048741606] +17:47:47 ============================================================================ +17:47:47 Sending to : +17:47:47 ============================================================================ +17:47:47 + + +waiting on router queue for slot.... +17:47:47 ============================================================================ +17:47:47 Slot Id : <49> +17:47:47 Transaction Type : REQUEST +17:47:47 Received From : +17:47:47 ============================================================================ +17:47:47 FNo. Len. Field Value +17:47:47 ============================================================================ +17:47:47 [ 1] [ 4] [0200] +17:47:47 [ 2] [ 16] [6213544001296976] +17:47:47 [ 3] [ 6] [010000] +17:47:47 [ 4] [ 12] [000050000000] +17:47:47 [ 7] [ 10] [0320104653] +17:47:47 [ 11] [ 6] [270984] +17:47:47 [ 12] [ 6] [174653] +17:47:47 [ 13] [ 4] [0320] +17:47:47 [ 14] [ 4] [4912] +17:47:47 [ 15] [ 4] [0320] +17:47:47 [ 18] [ 4] [6011] +17:47:47 [ 19] [ 3] [418] +17:47:47 [ 22] [ 3] [021] +17:47:47 [ 25] [ 2] [01] +17:47:47 [ 28] [ 9] [D00002000] +17:47:47 [ 32] [ 6] [180893] +17:47:47 [ 35] [ 32] [6213544001296976=491212019697755] +17:47:47 [ 37] [ 12] [507910270984] +17:47:47 [ 41] [ 8] [0528LPBP] +17:47:47 [ 42] [ 15] [999999 ] +17:47:47 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:47:47 [ 49] [ 3] [418] +17:47:47 [ 52] [ 16] [0772187C4A135F58] +17:47:47 ============================================================================ +17:47:47 + + +waiting on router queue for slot.... +17:47:47 Sending to : +17:47:47 ============================================================================ +17:47:47 ============================================================================ +17:47:47 Slot Id : <49> +17:47:47 Transaction Type : REQUEST +17:47:47 Received From : +17:47:47 ============================================================================ +17:47:47 FNo. Len. Field Value +17:47:47 ============================================================================ +17:47:47 [ 1] [ 4] [0200] +17:47:47 [ 2] [ 16] [6213544001296976] +17:47:47 [ 3] [ 6] [010000] +17:47:47 [ 4] [ 12] [000050000000] +17:47:47 [ 7] [ 10] [0320104653] +17:47:47 [ 11] [ 6] [270984] +17:47:47 [ 12] [ 6] [174653] +17:47:47 [ 13] [ 4] [0320] +17:47:47 [ 14] [ 4] [4912] +17:47:47 [ 15] [ 4] [0320] +17:47:47 [ 18] [ 4] [6011] +17:47:47 [ 19] [ 3] [418] +17:47:47 [ 22] [ 3] [021] +17:47:47 [ 25] [ 2] [01] +17:47:47 [ 28] [ 9] [D00002000] +17:47:47 [ 32] [ 6] [180893] +17:47:47 [ 35] [ 32] [6213544001296976=491212019697755] +17:47:47 [ 37] [ 12] [507910270984] +17:47:47 [ 41] [ 8] [0528LPBP] +17:47:47 [ 42] [ 15] [999999 ] +17:47:47 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:47:47 [ 49] [ 3] [418] +17:47:47 [ 52] [ 16] [E222CF7E9849C15D] +17:47:47 ============================================================================ +17:47:47 + + +waiting on router queue for slot.... +17:47:47 Sending to : <0> +17:47:47 ============================================================================ +17:47:48 ============================================================================ +17:47:48 Slot Id : <49> +17:47:48 Transaction Type : RESPONSE +17:47:48 Received From : +17:47:48 ============================================================================ +17:47:48 FNo. Len. Field Value +17:47:48 ============================================================================ +17:47:48 [ 1] [ 4] [0210] +17:47:48 [ 2] [ 16] [6213544001296976] +17:47:48 [ 3] [ 6] [010000] +17:47:48 [ 4] [ 12] [000050000000] +17:47:48 [ 7] [ 10] [0320104653] +17:47:48 [ 11] [ 6] [270984] +17:47:48 [ 12] [ 6] [174653] +17:47:48 [ 13] [ 4] [0320] +17:47:48 [ 15] [ 4] [0320] +17:47:48 [ 18] [ 4] [6011] +17:47:48 [ 19] [ 3] [418] +17:47:48 [ 32] [ 6] [180893] +17:47:48 [ 35] [ 32] [6213544001296976=491212019697755] +17:47:48 [ 37] [ 12] [507910270984] +17:47:48 [ 38] [ 6] [285486] +17:47:48 [ 39] [ 2] [00] +17:47:48 [ 41] [ 8] [0528LPBP] +17:47:48 [ 49] [ 3] [418] +17:47:48 [ 54] [ 40] [0001418C0003609966420002418C000360996642] +17:47:48 ============================================================================ +17:47:48 Sending to : +17:47:48 ============================================================================ +17:47:48 + + +waiting on router queue for slot.... +17:47:48 ============================================================================ +17:47:48 Slot Id : <24> +17:47:48 Transaction Type : RESPONSE +17:47:48 Received From : +17:47:48 ============================================================================ +17:47:48 FNo. Len. Field Value +17:47:48 ============================================================================ +17:47:48 [ 1] [ 4] [0210] +17:47:48 [ 2] [ 16] [6688990103592000] +17:47:48 [ 3] [ 6] [302000] +17:47:48 [ 4] [ 12] [000000000000] +17:47:48 [ 11] [ 6] [820133] +17:47:48 [ 12] [ 6] [174741] +17:47:48 [ 15] [ 4] [0320] +17:47:48 [ 18] [ 4] [6011] +17:47:48 [ 32] [ 6] [621354] +17:47:48 [ 35] [ 37] [6688990103592000=43011231200072600000] +17:47:48 [ 37] [ 12] [507903489499] +17:47:48 [ 38] [ 6] [324678] +17:47:48 [ 39] [ 2] [00] +17:47:48 [ 41] [ 8] [06002100] +17:47:48 [ 49] [ 3] [418] +17:47:48 [ 54] [ 20] [2002418C000189020311] +17:47:48 ============================================================================ +17:47:48 Sending to : +17:47:48 ============================================================================ +17:47:48 + + +waiting on router queue for slot.... +17:47:49 ============================================================================ +17:47:49 Slot Id : <57> +17:47:49 Transaction Type : RESPONSE +17:47:49 Received From : +17:47:49 ============================================================================ +17:47:49 FNo. Len. Field Value +17:47:49 ============================================================================ +17:47:49 [ 1] [ 4] [0210] +17:47:49 [ 2] [ 16] [6688990102736004] +17:47:49 [ 3] [ 6] [011000] +17:47:49 [ 4] [ 12] [000020000000] +17:47:49 [ 11] [ 6] [209859] +17:47:49 [ 12] [ 6] [182624] +17:47:49 [ 15] [ 4] [0320] +17:47:49 [ 18] [ 4] [6011] +17:47:49 [ 32] [ 6] [198901] +17:47:49 [ 35] [ 37] [6688990102736004=42101231600417200000] +17:47:49 [ 37] [ 12] [507917209859] +17:47:49 [ 38] [ 6] [284991] +17:47:49 [ 39] [ 2] [00] +17:47:49 [ 41] [ 8] [00002201] +17:47:49 [ 49] [ 3] [418] +17:47:49 [ 54] [ 20] [1002418C000048741606] +17:47:49 ============================================================================ +17:47:49 Calculate Source COMM Id = 5 +17:47:49 ============================================================================ +17:47:49 + + +waiting on router queue for slot.... +17:47:51 ============================================================================ +17:47:51 Slot Id : <24> +17:47:51 Transaction Type : RESPONSE +17:47:51 Received From : +17:47:51 ============================================================================ +17:47:51 FNo. Len. Field Value +17:47:51 ============================================================================ +17:47:51 [ 1] [ 4] [0210] +17:47:51 [ 2] [ 16] [6688990103592000] +17:47:51 [ 3] [ 6] [302000] +17:47:51 [ 4] [ 12] [000000000000] +17:47:51 [ 11] [ 6] [820133] +17:47:51 [ 12] [ 6] [174741] +17:47:51 [ 15] [ 4] [0320] +17:47:51 [ 18] [ 4] [6011] +17:47:51 [ 32] [ 6] [621354] +17:47:51 [ 35] [ 37] [6688990103592000=43011231200072600000] +17:47:51 [ 37] [ 12] [507903489499] +17:47:51 [ 38] [ 6] [324678] +17:47:51 [ 39] [ 2] [00] +17:47:51 [ 41] [ 8] [06002100] +17:47:51 [ 49] [ 3] [418] +17:47:51 [ 54] [ 20] [2002418C000189020311] +17:47:51 ============================================================================ +17:47:51 Calculate Source COMM Id = 0 +17:47:51 ============================================================================ +17:47:51 + + +waiting on router queue for slot.... +17:47:52 ============================================================================ +17:47:52 Slot Id : <49> +17:47:52 Transaction Type : RESPONSE +17:47:52 Received From : +17:47:52 ============================================================================ +17:47:52 FNo. Len. Field Value +17:47:52 ============================================================================ +17:47:52 [ 1] [ 4] [0210] +17:47:52 [ 2] [ 16] [6213544001296976] +17:47:52 [ 3] [ 6] [010000] +17:47:52 [ 4] [ 12] [000050000000] +17:47:52 [ 7] [ 10] [0320104653] +17:47:52 [ 11] [ 6] [270984] +17:47:52 [ 12] [ 6] [174653] +17:47:52 [ 13] [ 4] [0320] +17:47:52 [ 15] [ 4] [0320] +17:47:52 [ 18] [ 4] [6011] +17:47:52 [ 19] [ 3] [418] +17:47:52 [ 32] [ 6] [180893] +17:47:52 [ 35] [ 32] [6213544001296976=491212019697755] +17:47:52 [ 37] [ 12] [507910270984] +17:47:52 [ 38] [ 6] [285486] +17:47:52 [ 39] [ 2] [00] +17:47:52 [ 41] [ 8] [0528LPBP] +17:47:52 [ 49] [ 3] [418] +17:47:52 [ 54] [ 40] [0001418C0003609966420002418C000360996642] +17:47:52 ============================================================================ +17:47:52 Calculate Source COMM Id = 2 +17:47:52 ============================================================================ +17:47:52 + + +waiting on router queue for slot.... +17:47:58 ============================================================================ +17:47:58 Slot Id : <34> +17:47:58 Transaction Type : REQUEST +17:47:58 Received From : +17:47:58 ============================================================================ +17:47:58 FNo. Len. Field Value +17:47:58 ============================================================================ +17:47:58 [ 1] [ 4] [0200] +17:47:58 [ 2] [ 16] [6213544002147137] +17:47:58 [ 3] [ 6] [302000] +17:47:58 [ 4] [ 12] [000000000000] +17:47:58 [ 7] [ 10] [0320174548] +17:47:58 [ 11] [ 6] [953913] +17:47:58 [ 12] [ 6] [174548] +17:47:58 [ 13] [ 4] [0320] +17:47:58 [ 15] [ 4] [0320] +17:47:58 [ 18] [ 4] [6011] +17:47:58 [ 19] [ 3] [418] +17:47:58 [ 22] [ 3] [021] +17:47:58 [ 25] [ 2] [01] +17:47:58 [ 28] [ 9] [D00000000] +17:47:58 [ 32] [ 6] [668899] +17:47:58 [ 35] [ 32] [6213544002147137=491212014713170] +17:47:58 [ 37] [ 12] [507902151094] +17:47:58 [ 41] [ 8] [03020025] +17:47:58 [ 42] [ 15] [APT ] +17:47:58 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +17:47:58 [ 49] [ 3] [418] +17:47:58 [ 52] [ 16] [7B04CED16124EF03] +17:47:58 ============================================================================ +17:47:58 + + +waiting on router queue for slot.... +17:47:58 Sending to : +17:47:58 ============================================================================ +17:47:58 Sending to : +17:47:58 ============================================================================ +17:47:58 ============================================================================ +17:47:58 Slot Id : <34> +17:47:58 Transaction Type : REQUEST +17:47:58 Received From : +17:47:58 ============================================================================ +17:47:58 FNo. Len. Field Value +17:47:58 ============================================================================ +17:47:58 [ 1] [ 4] [0200] +17:47:58 [ 2] [ 16] [6213544002147137] +17:47:58 [ 3] [ 6] [302000] +17:47:58 [ 4] [ 12] [000000000000] +17:47:58 [ 7] [ 10] [0320174548] +17:47:58 [ 11] [ 6] [953913] +17:47:58 [ 12] [ 6] [174548] +17:47:58 [ 13] [ 4] [0320] +17:47:58 [ 15] [ 4] [0320] +17:47:58 [ 18] [ 4] [6011] +17:47:58 [ 19] [ 3] [418] +17:47:58 [ 22] [ 3] [021] +17:47:58 [ 25] [ 2] [01] +17:47:58 [ 28] [ 9] [D00000000] +17:47:58 [ 32] [ 6] [668899] +17:47:58 [ 35] [ 32] [6213544002147137=491212014713170] +17:47:58 [ 37] [ 12] [507902151094] +17:47:58 [ 41] [ 8] [03020025] +17:47:58 [ 42] [ 15] [APT ] +17:47:58 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +17:47:58 [ 49] [ 3] [418] +17:47:58 [ 52] [ 16] [7B04CED16124EF03] +17:47:58 ============================================================================ +17:47:58 + + +waiting on router queue for slot.... +17:47:58 Sending to : +17:47:58 ============================================================================ +17:47:58 ============================================================================ +17:47:58 Slot Id : <34> +17:47:58 Transaction Type : REQUEST +17:47:58 Received From : +17:47:58 ============================================================================ +17:47:58 FNo. Len. Field Value +17:47:58 ============================================================================ +17:47:58 [ 1] [ 4] [0200] +17:47:58 [ 2] [ 16] [6213544002147137] +17:47:58 [ 3] [ 6] [302000] +17:47:58 [ 4] [ 12] [000000000000] +17:47:58 [ 7] [ 10] [0320174548] +17:47:58 [ 11] [ 6] [953913] +17:47:58 [ 12] [ 6] [174548] +17:47:58 [ 13] [ 4] [0320] +17:47:58 [ 15] [ 4] [0320] +17:47:58 [ 18] [ 4] [6011] +17:47:58 [ 19] [ 3] [418] +17:47:58 [ 22] [ 3] [021] +17:47:58 [ 25] [ 2] [01] +17:47:58 [ 28] [ 9] [D00000000] +17:47:58 [ 32] [ 6] [668899] +17:47:58 [ 35] [ 32] [6213544002147137=491212014713170] +17:47:58 [ 37] [ 12] [507902151094] +17:47:58 [ 41] [ 8] [03020025] +17:47:58 [ 42] [ 15] [APT ] +17:47:58 [ 43] [ 40] [ PATUXAY SAYSETTHA PATU] +17:47:58 [ 49] [ 3] [418] +17:47:58 [ 52] [ 16] [DE251BBA1797EDDD] +17:47:58 ============================================================================ +17:47:58 + + +waiting on router queue for slot.... +17:47:58 Sending to : <0> +17:47:58 ============================================================================ +17:47:59 ============================================================================ +17:47:59 Slot Id : <34> +17:47:59 Transaction Type : RESPONSE +17:47:59 Received From : +17:47:59 ============================================================================ +17:47:59 FNo. Len. Field Value +17:47:59 ============================================================================ +17:47:59 [ 1] [ 4] [0210] +17:47:59 [ 2] [ 16] [6213544002147137] +17:47:59 [ 3] [ 6] [302000] +17:47:59 [ 4] [ 12] [000000000000] +17:47:59 [ 7] [ 10] [0320174548] +17:47:59 [ 11] [ 6] [953913] +17:47:59 [ 12] [ 6] [174548] +17:47:59 [ 13] [ 4] [0320] +17:47:59 [ 15] [ 4] [0320] +17:47:59 [ 18] [ 4] [6011] +17:47:59 [ 19] [ 3] [418] +17:47:59 [ 32] [ 6] [668899] +17:47:59 [ 35] [ 32] [6213544002147137=491212014713170] +17:47:59 [ 37] [ 12] [507902151094] +17:47:59 [ 38] [ 6] [880379] +17:47:59 [ 39] [ 2] [00] +17:47:59 [ 41] [ 8] [03020025] +17:47:59 [ 49] [ 3] [418] +17:47:59 [ 54] [ 40] [2001418C0006460604102002418C000646060410] +17:47:59 ============================================================================ +17:47:59 Sending to : +17:47:59 ============================================================================ +17:47:59 + + +waiting on router queue for slot.... +17:48:00 ============================================================================ +17:48:00 Slot Id : <34> +17:48:00 Transaction Type : RESPONSE +17:48:00 Received From : +17:48:00 ============================================================================ +17:48:00 FNo. Len. Field Value +17:48:00 ============================================================================ +17:48:00 [ 1] [ 4] [0210] +17:48:00 [ 2] [ 16] [6213544002147137] +17:48:00 [ 3] [ 6] [302000] +17:48:00 [ 4] [ 12] [000000000000] +17:48:00 [ 7] [ 10] [0320174548] +17:48:00 [ 11] [ 6] [953913] +17:48:00 [ 12] [ 6] [174548] +17:48:00 [ 13] [ 4] [0320] +17:48:00 [ 15] [ 4] [0320] +17:48:00 [ 18] [ 4] [6011] +17:48:00 [ 19] [ 3] [418] +17:48:00 [ 32] [ 6] [668899] +17:48:00 [ 35] [ 32] [6213544002147137=491212014713170] +17:48:00 [ 37] [ 12] [507902151094] +17:48:00 [ 38] [ 6] [880379] +17:48:00 [ 39] [ 2] [00] +17:48:00 [ 41] [ 8] [03020025] +17:48:00 [ 49] [ 3] [418] +17:48:00 [ 54] [ 40] [2001418C0006460604102002418C000646060410] +17:48:00 ============================================================================ +17:48:00 Calculate Source COMM Id = 4 +17:48:00 ============================================================================ +17:48:00 + + +waiting on router queue for slot.... +17:48:00 ============================================================================ +17:48:00 Slot Id : <42> +17:48:00 Transaction Type : REQUEST +17:48:00 Received From : +17:48:00 ============================================================================ +17:48:00 FNo. Len. Field Value +17:48:00 ============================================================================ +17:48:00 [ 1] [ 4] [0200] +17:48:00 [ 2] [ 16] [1808930200055937] +17:48:00 [ 3] [ 6] [012000] +17:48:00 [ 4] [ 12] [000065000000] +17:48:00 [ 7] [ 10] [0320174755] +17:48:00 [ 11] [ 6] [820212] +17:48:00 [ 12] [ 6] [174755] +17:48:00 [ 13] [ 4] [0320] +17:48:00 [ 15] [ 4] [0320] +17:48:00 [ 18] [ 4] [6011] +17:48:00 [ 22] [ 3] [900] +17:48:00 [ 25] [ 2] [02] +17:48:00 [ 28] [ 9] [D00002000] +17:48:00 [ 32] [ 6] [621354] +17:48:00 [ 35] [ 27] [1808930200055937=1803500488] +17:48:00 [ 37] [ 12] [507903587278] +17:48:00 [ 41] [ 8] [09001500] +17:48:00 [ 42] [ 15] [NATIVE ] +17:48:00 [ 43] [ 40] [Friendship Bridge Xaythany LAO] +17:48:00 [ 49] [ 3] [418] +17:48:00 [ 52] [ 16] [3679C46681CB0E4F] +17:48:00 ============================================================================ +17:48:00 + + +waiting on router queue for slot.... +17:48:00 Sending to : +17:48:00 ============================================================================ +17:48:00 Sending to : +17:48:00 ============================================================================ +17:48:01 ============================================================================ +17:48:01 Slot Id : <42> +17:48:01 Transaction Type : REQUEST +17:48:01 Received From : +17:48:01 ============================================================================ +17:48:01 FNo. Len. Field Value +17:48:01 ============================================================================ +17:48:01 [ 1] [ 4] [0200] +17:48:01 [ 2] [ 16] [1808930200055937] +17:48:01 [ 3] [ 6] [012000] +17:48:01 [ 4] [ 12] [000065000000] +17:48:01 [ 7] [ 10] [0320174755] +17:48:01 [ 11] [ 6] [820212] +17:48:01 [ 12] [ 6] [174755] +17:48:01 [ 13] [ 4] [0320] +17:48:01 [ 15] [ 4] [0320] +17:48:01 [ 18] [ 4] [6011] +17:48:01 [ 22] [ 3] [900] +17:48:01 [ 25] [ 2] [02] +17:48:01 [ 28] [ 9] [D00002000] +17:48:01 [ 32] [ 6] [621354] +17:48:01 [ 35] [ 27] [1808930200055937=1803500488] +17:48:01 [ 37] [ 12] [507903587278] +17:48:01 [ 41] [ 8] [09001500] +17:48:01 [ 42] [ 15] [NATIVE ] +17:48:01 [ 43] [ 40] [Friendship Bridge Xaythany LAO] +17:48:01 [ 49] [ 3] [418] +17:48:01 [ 52] [ 16] [3679C46681CB0E4F] +17:48:01 ============================================================================ +17:48:01 + + +waiting on router queue for slot.... +17:48:01 Sending to : +17:48:01 ============================================================================ +17:48:01 ============================================================================ +17:48:01 Slot Id : <42> +17:48:01 Transaction Type : REQUEST +17:48:01 Received From : +17:48:01 ============================================================================ +17:48:01 FNo. Len. Field Value +17:48:01 ============================================================================ +17:48:01 [ 1] [ 4] [0200] +17:48:01 [ 2] [ 16] [1808930200055937] +17:48:01 [ 3] [ 6] [012000] +17:48:01 [ 4] [ 12] [000065000000] +17:48:01 [ 7] [ 10] [0320174755] +17:48:01 [ 11] [ 6] [820212] +17:48:01 [ 12] [ 6] [174755] +17:48:01 [ 13] [ 4] [0320] +17:48:01 [ 15] [ 4] [0320] +17:48:01 [ 18] [ 4] [6011] +17:48:01 [ 22] [ 3] [900] +17:48:01 [ 25] [ 2] [02] +17:48:01 [ 28] [ 9] [D00002000] +17:48:01 [ 32] [ 6] [621354] +17:48:01 [ 35] [ 27] [1808930200055937=1803500488] +17:48:01 [ 37] [ 12] [507903587278] +17:48:01 [ 41] [ 8] [09001500] +17:48:01 [ 42] [ 15] [NATIVE ] +17:48:01 [ 43] [ 40] [Friendship Bridge Xaythany LAO] +17:48:01 [ 49] [ 3] [418] +17:48:01 [ 52] [ 16] [2F15D54D17DD2805] +17:48:01 ============================================================================ +17:48:01 + + +waiting on router queue for slot.... +17:48:01 Sending to : <2> +17:48:01 ============================================================================ +17:48:04 ============================================================================ +17:48:04 Slot Id : <42> +17:48:04 Transaction Type : RESPONSE +17:48:04 Received From : +17:48:04 ============================================================================ +17:48:04 FNo. Len. Field Value +17:48:04 ============================================================================ +17:48:04 [ 1] [ 4] [0210] +17:48:04 [ 2] [ 16] [1808930200055937] +17:48:04 [ 3] [ 6] [012000] +17:48:04 [ 4] [ 12] [000065000000] +17:48:04 [ 7] [ 10] [0320174755] +17:48:04 [ 11] [ 6] [820212] +17:48:04 [ 12] [ 6] [174755] +17:48:04 [ 13] [ 4] [0320] +17:48:04 [ 18] [ 4] [6011] +17:48:04 [ 19] [ 3] [418] +17:48:04 [ 22] [ 3] [021] +17:48:04 [ 28] [ 9] [D00002000] +17:48:04 [ 32] [ 6] [621354] +17:48:04 [ 35] [ 27] [1808930200055937=1803500488] +17:48:04 [ 37] [ 12] [507903587278] +17:48:04 [ 39] [ 2] [42] +17:48:04 [ 41] [ 8] [09001500] +17:48:04 [ 49] [ 3] [418] +17:48:04 [ 52] [ 16] [2F15D54D17DD2805] +17:48:04 ============================================================================ +17:48:04 Sending to : +17:48:04 ============================================================================ +17:48:04 + + +waiting on router queue for slot.... +17:48:05 ============================================================================ +17:48:05 Slot Id : <81> +17:48:05 Transaction Type : REQUEST +17:48:05 Received From : +17:48:05 ============================================================================ +17:48:05 FNo. Len. Field Value +17:48:05 ============================================================================ +17:48:05 [ 1] [ 4] [0800] +17:48:05 [ 2] [ 5] [02531] +17:48:05 [ 3] [ 6] [579178] +17:48:05 [ 7] [ 10] [0320104805] +17:48:05 [ 11] [ 6] [807445] +17:48:05 [ 15] [ 10] [0320104805] +17:48:05 [ 37] [ 11] [57917807445] +17:48:05 [ 70] [ 3] [001] +17:48:05 ============================================================================ +17:48:05 + + +waiting on router queue for slot.... +17:48:05 ============================================================================ +17:48:05 Slot Id : <81> +17:48:05 Transaction Type : RESPONSE +17:48:05 Received From : +17:48:05 ============================================================================ +17:48:05 FNo. Len. Field Value +17:48:05 ============================================================================ +17:48:05 [ 1] [ 4] [0810] +17:48:05 [ 7] [ 10] [0320104805] +17:48:05 [ 11] [ 6] [807445] +17:48:05 [ 15] [ 4] [0320] +17:48:05 [ 37] [ 12] [57917807445] +17:48:05 [ 39] [ 2] [00] +17:48:05 [ 70] [ 3] [001] +17:48:05 ============================================================================ +17:48:05 Sending to : +17:48:05 ============================================================================ +17:48:05 + + +waiting on router queue for slot.... +17:48:05 ============================================================================ +17:48:05 Slot Id : <42> +17:48:05 Transaction Type : RESPONSE +17:48:05 Received From : +17:48:05 ============================================================================ +17:48:05 FNo. Len. Field Value +17:48:05 ============================================================================ +17:48:05 [ 1] [ 4] [0210] +17:48:05 [ 2] [ 16] [1808930200055937] +17:48:05 [ 3] [ 6] [012000] +17:48:05 [ 4] [ 12] [000065000000] +17:48:05 [ 7] [ 10] [0320174755] +17:48:05 [ 11] [ 6] [820212] +17:48:05 [ 12] [ 6] [174755] +17:48:05 [ 13] [ 4] [0320] +17:48:05 [ 18] [ 4] [6011] +17:48:05 [ 19] [ 3] [418] +17:48:05 [ 22] [ 3] [021] +17:48:05 [ 28] [ 9] [D00002000] +17:48:05 [ 32] [ 6] [621354] +17:48:05 [ 35] [ 27] [1808930200055937=1803500488] +17:48:05 [ 37] [ 12] [507903587278] +17:48:05 [ 39] [ 2] [42] +17:48:05 [ 41] [ 8] [09001500] +17:48:05 [ 49] [ 3] [418] +17:48:05 [ 52] [ 16] [2F15D54D17DD2805] +17:48:05 ============================================================================ +17:48:05 Calculate Source COMM Id = 0 +17:48:05 ============================================================================ +17:48:05 + + +waiting on router queue for slot.... +17:48:05 ============================================================================ +17:48:05 Slot Id : <88> +17:48:05 Transaction Type : REQUEST +17:48:05 Received From : +17:48:05 ============================================================================ +17:48:05 FNo. Len. Field Value +17:48:05 ============================================================================ +17:48:05 [ 1] [ 4] [0200] +17:48:05 [ 2] [ 16] [6688990040039669] +17:48:05 [ 3] [ 6] [010000] +17:48:05 [ 4] [ 12] [000050000000] +17:48:05 [ 7] [ 10] [0320174800] +17:48:05 [ 11] [ 6] [820237] +17:48:05 [ 12] [ 6] [174800] +17:48:05 [ 13] [ 4] [0320] +17:48:05 [ 15] [ 4] [0320] +17:48:05 [ 18] [ 4] [6011] +17:48:05 [ 22] [ 3] [900] +17:48:05 [ 25] [ 2] [02] +17:48:05 [ 28] [ 9] [D00002000] +17:48:05 [ 32] [ 6] [621354] +17:48:05 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:48:05 [ 37] [ 12] [507905271815] +17:48:05 [ 41] [ 8] [02002900] +17:48:05 [ 42] [ 15] [NATIVE ] +17:48:05 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:48:05 [ 49] [ 3] [418] +17:48:05 [ 52] [ 16] [891F8C2F0E965AD7] +17:48:05 ============================================================================ +17:48:05 + + +waiting on router queue for slot.... +17:48:05 Sending to : +17:48:05 ============================================================================ +17:48:05 Sending to : +17:48:05 ============================================================================ +17:48:06 ============================================================================ +17:48:06 Slot Id : <88> +17:48:06 Transaction Type : REQUEST +17:48:06 Received From : +17:48:06 ============================================================================ +17:48:06 FNo. Len. Field Value +17:48:06 ============================================================================ +17:48:06 [ 1] [ 4] [0200] +17:48:06 [ 2] [ 16] [6688990040039669] +17:48:06 [ 3] [ 6] [010000] +17:48:06 [ 4] [ 12] [000050000000] +17:48:06 [ 7] [ 10] [0320174800] +17:48:06 [ 11] [ 6] [820237] +17:48:06 [ 12] [ 6] [174800] +17:48:06 [ 13] [ 4] [0320] +17:48:06 [ 15] [ 4] [0320] +17:48:06 [ 18] [ 4] [6011] +17:48:06 [ 22] [ 3] [900] +17:48:06 [ 25] [ 2] [02] +17:48:06 [ 28] [ 9] [D00002000] +17:48:06 [ 32] [ 6] [621354] +17:48:06 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:48:06 [ 37] [ 12] [507905271815] +17:48:06 [ 41] [ 8] [02002900] +17:48:06 [ 42] [ 15] [NATIVE ] +17:48:06 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:48:06 [ 49] [ 3] [418] +17:48:06 [ 52] [ 16] [891F8C2F0E965AD7] +17:48:06 ============================================================================ +17:48:06 + + +waiting on router queue for slot.... +17:48:06 Sending to : +17:48:06 ============================================================================ +17:48:06 ============================================================================ +17:48:06 Slot Id : <88> +17:48:06 Transaction Type : REQUEST +17:48:06 Received From : +17:48:06 ============================================================================ +17:48:06 FNo. Len. Field Value +17:48:06 ============================================================================ +17:48:06 [ 1] [ 4] [0200] +17:48:06 [ 2] [ 16] [6688990040039669] +17:48:06 [ 3] [ 6] [010000] +17:48:06 [ 4] [ 12] [000050000000] +17:48:06 [ 7] [ 10] [0320174800] +17:48:06 [ 11] [ 6] [820237] +17:48:06 [ 12] [ 6] [174800] +17:48:06 [ 13] [ 4] [0320] +17:48:06 [ 15] [ 4] [0320] +17:48:06 [ 18] [ 4] [6011] +17:48:06 [ 22] [ 3] [900] +17:48:06 [ 25] [ 2] [02] +17:48:06 [ 28] [ 9] [D00002000] +17:48:06 [ 32] [ 6] [621354] +17:48:06 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:48:06 [ 37] [ 12] [507905271815] +17:48:06 [ 41] [ 8] [02002900] +17:48:06 [ 42] [ 15] [NATIVE ] +17:48:06 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:48:06 [ 49] [ 3] [418] +17:48:06 [ 52] [ 16] [C3FC625B1F192555] +17:48:06 ============================================================================ +17:48:06 + + +waiting on router queue for slot.... +17:48:06 Sending to : <4> +17:48:06 ============================================================================ +17:48:07 ============================================================================ +17:48:07 Slot Id : <88> +17:48:07 Transaction Type : RESPONSE +17:48:07 Received From : +17:48:07 ============================================================================ +17:48:07 FNo. Len. Field Value +17:48:07 ============================================================================ +17:48:07 [ 1] [ 4] [0210] +17:48:07 [ 2] [ 16] [6688990040039669] +17:48:07 [ 3] [ 6] [010000] +17:48:07 [ 4] [ 12] [000050000000] +17:48:07 [ 7] [ 10] [0320174800] +17:48:07 [ 11] [ 6] [820237] +17:48:07 [ 12] [ 6] [174800] +17:48:07 [ 13] [ 4] [0320] +17:48:07 [ 15] [ 4] [0320] +17:48:07 [ 18] [ 4] [6011] +17:48:07 [ 22] [ 3] [021] +17:48:07 [ 32] [ 6] [621354] +17:48:07 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:48:07 [ 37] [ 12] [507905271815] +17:48:07 [ 38] [ 6] [174556] +17:48:07 [ 39] [ 2] [55] +17:48:07 [ 41] [ 8] [02002900] +17:48:07 [ 49] [ 3] [418] +17:48:07 ============================================================================ +17:48:07 Sending to : +17:48:07 ============================================================================ +17:48:07 + + +waiting on router queue for slot.... +17:48:07 ============================================================================ +17:48:07 Slot Id : <88> +17:48:07 Transaction Type : RESPONSE +17:48:07 Received From : +17:48:07 ============================================================================ +17:48:07 FNo. Len. Field Value +17:48:07 ============================================================================ +17:48:07 [ 1] [ 4] [0210] +17:48:07 [ 2] [ 16] [6688990040039669] +17:48:07 [ 3] [ 6] [010000] +17:48:07 [ 4] [ 12] [000050000000] +17:48:07 [ 7] [ 10] [0320174800] +17:48:07 [ 11] [ 6] [820237] +17:48:07 [ 12] [ 6] [174800] +17:48:07 [ 13] [ 4] [0320] +17:48:07 [ 15] [ 4] [0320] +17:48:07 [ 18] [ 4] [6011] +17:48:07 [ 22] [ 3] [021] +17:48:07 [ 32] [ 6] [621354] +17:48:07 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:48:07 [ 37] [ 12] [507905271815] +17:48:07 [ 38] [ 6] [174556] +17:48:07 [ 39] [ 2] [55] +17:48:07 [ 41] [ 8] [02002900] +17:48:07 [ 49] [ 3] [418] +17:48:07 ============================================================================ +17:48:07 Calculate Source COMM Id = 0 +17:48:07 ============================================================================ +17:48:07 + + +waiting on router queue for slot.... +17:48:08 ============================================================================ +17:48:08 Slot Id : <86> +17:48:08 Transaction Type : REQUEST +17:48:08 Received From : +17:48:08 ============================================================================ +17:48:08 FNo. Len. Field Value +17:48:08 ============================================================================ +17:48:08 [ 1] [ 4] [0800] +17:48:08 [ 7] [ 10] [0321005955] +17:48:08 [ 11] [ 6] [175955] +17:48:08 [ 37] [ 12] [57917175955] +17:48:08 [ 70] [ 3] [301] +17:48:08 ============================================================================ +17:48:08 + + +waiting on router queue for slot.... +17:48:08 Sending to : +17:48:08 ============================================================================ +17:48:08 ============================================================================ +17:48:08 Slot Id : <86> +17:48:08 Transaction Type : RESPONSE +17:48:08 Received From : +17:48:08 ============================================================================ +17:48:08 FNo. Len. Field Value +17:48:08 ============================================================================ +17:48:08 [ 1] [ 4] [0810] +17:48:08 [ 7] [ 10] [0321005955] +17:48:08 [ 11] [ 6] [175955] +17:48:08 [ 37] [ 12] [579171759550] +17:48:08 [ 39] [ 2] [00] +17:48:08 [ 70] [ 3] [810] +17:48:08 ============================================================================ +17:48:08 Calculate Source COMM Id = 6 +17:48:08 ============================================================================ +17:48:08 + + +waiting on router queue for slot.... +17:48:13 ============================================================================ +17:48:13 Slot Id : <89> +17:48:13 Transaction Type : REQUEST +17:48:13 Received From : +17:48:13 ============================================================================ +17:48:13 FNo. Len. Field Value +17:48:13 ============================================================================ +17:48:13 [ 1] [ 4] [0800] +17:48:13 [ 7] [ 10] [0320104720] +17:48:13 [ 11] [ 6] [157546] +17:48:13 [ 70] [ 3] [301] +17:48:13 ============================================================================ +17:48:13 + + +waiting on router queue for slot.... +17:48:13 Sending to : +17:48:13 ============================================================================ +17:48:13 ============================================================================ +17:48:13 Slot Id : <89> +17:48:13 Transaction Type : RESPONSE +17:48:13 Received From : +17:48:13 ============================================================================ +17:48:13 FNo. Len. Field Value +17:48:13 ============================================================================ +17:48:13 [ 1] [ 4] [0810] +17:48:13 [ 7] [ 10] [0320104720] +17:48:13 [ 11] [ 6] [157546] +17:48:13 [ 39] [ 2] [00] +17:48:13 [ 70] [ 3] [301] +17:48:13 ============================================================================ +17:48:13 Calculate Source COMM Id = 2 +17:48:13 ============================================================================ +17:48:13 + + +waiting on router queue for slot.... +17:48:23 ============================================================================ +17:48:23 Slot Id : <59> +17:48:23 Transaction Type : REQUEST +17:48:23 Received From : +17:48:23 ============================================================================ +17:48:23 FNo. Len. Field Value +17:48:23 ============================================================================ +17:48:23 [ 1] [ 4] [0800] +17:48:23 [ 7] [ 10] [0320104730] +17:48:23 [ 11] [ 6] [157547] +17:48:23 [ 70] [ 3] [301] +17:48:23 ============================================================================ +17:48:23 + + +waiting on router queue for slot.... +17:48:23 Sending to : +17:48:23 ============================================================================ +17:48:23 ============================================================================ +17:48:23 Slot Id : <59> +17:48:23 Transaction Type : RESPONSE +17:48:23 Received From : +17:48:23 ============================================================================ +17:48:23 FNo. Len. Field Value +17:48:23 ============================================================================ +17:48:23 [ 1] [ 4] [0810] +17:48:23 [ 7] [ 10] [0320104730] +17:48:23 [ 11] [ 6] [157547] +17:48:23 [ 39] [ 2] [00] +17:48:23 [ 70] [ 3] [301] +17:48:23 ============================================================================ +17:48:23 Calculate Source COMM Id = 2 +17:48:23 ============================================================================ +17:48:23 + + +waiting on router queue for slot.... +17:48:28 ============================================================================ +17:48:28 Slot Id : <79> +17:48:28 Transaction Type : REQUEST +17:48:28 Received From : +17:48:28 ============================================================================ +17:48:28 FNo. Len. Field Value +17:48:28 ============================================================================ +17:48:28 [ 1] [ 4] [0200] +17:48:28 [ 2] [ 16] [6213545000610786] +17:48:28 [ 3] [ 6] [010000] +17:48:28 [ 4] [ 12] [000050000000] +17:48:28 [ 7] [ 10] [0320174618] +17:48:28 [ 11] [ 6] [953921] +17:48:28 [ 12] [ 6] [174618] +17:48:28 [ 13] [ 4] [0320] +17:48:28 [ 15] [ 4] [0320] +17:48:28 [ 18] [ 4] [6011] +17:48:28 [ 19] [ 3] [418] +17:48:28 [ 22] [ 3] [021] +17:48:28 [ 25] [ 2] [01] +17:48:28 [ 28] [ 9] [D00002000] +17:48:28 [ 32] [ 6] [668899] +17:48:28 [ 35] [ 32] [6213545000610786=491212011078686] +17:48:28 [ 37] [ 12] [507902475754] +17:48:28 [ 41] [ 8] [03020032] +17:48:28 [ 42] [ 15] [APT ] +17:48:28 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +17:48:28 [ 49] [ 3] [418] +17:48:28 [ 52] [ 16] [AB18CFB3D3583EF1] +17:48:28 ============================================================================ +17:48:28 + + +waiting on router queue for slot.... +17:48:28 Sending to : +17:48:28 ============================================================================ +17:48:28 Sending to : +17:48:28 ============================================================================ +17:48:28 ============================================================================ +17:48:28 Slot Id : <79> +17:48:28 Transaction Type : REQUEST +17:48:28 Received From : +17:48:28 ============================================================================ +17:48:28 FNo. Len. Field Value +17:48:28 ============================================================================ +17:48:28 [ 1] [ 4] [0200] +17:48:28 [ 2] [ 16] [6213545000610786] +17:48:28 [ 3] [ 6] [010000] +17:48:28 [ 4] [ 12] [000050000000] +17:48:28 [ 7] [ 10] [0320174618] +17:48:28 [ 11] [ 6] [953921] +17:48:28 [ 12] [ 6] [174618] +17:48:28 [ 13] [ 4] [0320] +17:48:28 [ 15] [ 4] [0320] +17:48:28 [ 18] [ 4] [6011] +17:48:28 [ 19] [ 3] [418] +17:48:28 [ 22] [ 3] [021] +17:48:28 [ 25] [ 2] [01] +17:48:28 [ 28] [ 9] [D00002000] +17:48:28 [ 32] [ 6] [668899] +17:48:28 [ 35] [ 32] [6213545000610786=491212011078686] +17:48:28 [ 37] [ 12] [507902475754] +17:48:28 [ 41] [ 8] [03020032] +17:48:28 [ 42] [ 15] [APT ] +17:48:28 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +17:48:28 [ 49] [ 3] [418] +17:48:28 [ 52] [ 16] [AB18CFB3D3583EF1] +17:48:28 ============================================================================ +17:48:28 + + +waiting on router queue for slot.... +17:48:28 Sending to : +17:48:28 ============================================================================ +17:48:28 ============================================================================ +17:48:28 Slot Id : <79> +17:48:28 Transaction Type : REQUEST +17:48:28 Received From : +17:48:28 ============================================================================ +17:48:28 FNo. Len. Field Value +17:48:28 ============================================================================ +17:48:28 [ 1] [ 4] [0200] +17:48:28 [ 2] [ 16] [6213545000610786] +17:48:28 [ 3] [ 6] [010000] +17:48:28 [ 4] [ 12] [000050000000] +17:48:28 [ 7] [ 10] [0320174618] +17:48:28 [ 11] [ 6] [953921] +17:48:28 [ 12] [ 6] [174618] +17:48:28 [ 13] [ 4] [0320] +17:48:28 [ 15] [ 4] [0320] +17:48:28 [ 18] [ 4] [6011] +17:48:28 [ 19] [ 3] [418] +17:48:28 [ 22] [ 3] [021] +17:48:28 [ 25] [ 2] [01] +17:48:28 [ 28] [ 9] [D00002000] +17:48:28 [ 32] [ 6] [668899] +17:48:28 [ 35] [ 32] [6213545000610786=491212011078686] +17:48:28 [ 37] [ 12] [507902475754] +17:48:28 [ 41] [ 8] [03020032] +17:48:28 [ 42] [ 15] [APT ] +17:48:28 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +17:48:28 [ 49] [ 3] [418] +17:48:28 [ 52] [ 16] [AAE0848D25D50B49] +17:48:28 ============================================================================ +17:48:28 + + +waiting on router queue for slot.... +17:48:28 Sending to : <0> +17:48:28 ============================================================================ +17:48:29 ============================================================================ +17:48:29 Slot Id : <79> +17:48:29 Transaction Type : RESPONSE +17:48:29 Received From : +17:48:29 ============================================================================ +17:48:29 FNo. Len. Field Value +17:48:29 ============================================================================ +17:48:29 [ 1] [ 4] [0210] +17:48:29 [ 2] [ 16] [6213545000610786] +17:48:29 [ 3] [ 6] [010000] +17:48:29 [ 4] [ 12] [000050000000] +17:48:29 [ 7] [ 10] [0320174618] +17:48:29 [ 11] [ 6] [953921] +17:48:29 [ 12] [ 6] [174618] +17:48:29 [ 13] [ 4] [0320] +17:48:29 [ 15] [ 4] [0320] +17:48:29 [ 18] [ 4] [6011] +17:48:29 [ 19] [ 3] [418] +17:48:29 [ 32] [ 6] [668899] +17:48:29 [ 35] [ 32] [6213545000610786=491212011078686] +17:48:29 [ 37] [ 12] [507902475754] +17:48:29 [ 38] [ 6] [661652] +17:48:29 [ 39] [ 2] [00] +17:48:29 [ 41] [ 8] [03020032] +17:48:29 [ 49] [ 3] [418] +17:48:29 [ 54] [ 40] [0001418C0000096786650002418C000009678665] +17:48:29 ============================================================================ +17:48:29 Sending to : +17:48:29 ============================================================================ +17:48:29 + + +waiting on router queue for slot.... +17:48:29 ============================================================================ +17:48:29 Slot Id : <84> +17:48:29 Transaction Type : REQUEST +17:48:29 Received From : +17:48:29 ============================================================================ +17:48:29 FNo. Len. Field Value +17:48:29 ============================================================================ +17:48:29 [ 1] [ 4] [0200] +17:48:29 [ 2] [ 16] [6213544002117767] +17:48:29 [ 3] [ 6] [011000] +17:48:29 [ 4] [ 12] [000005000000] +17:48:29 [ 7] [ 10] [0320174849] +17:48:29 [ 11] [ 6] [209873] +17:48:29 [ 12] [ 6] [174350] +17:48:29 [ 13] [ 4] [0320] +17:48:29 [ 14] [ 4] [4912] +17:48:29 [ 15] [ 4] [0320] +17:48:29 [ 18] [ 4] [6011] +17:48:29 [ 19] [ 3] [418] +17:48:29 [ 22] [ 3] [021] +17:48:29 [ 25] [ 2] [01] +17:48:29 [ 28] [ 9] [D00002000] +17:48:29 [ 32] [ 6] [198901] +17:48:29 [ 35] [ 32] [6213544002117767=491212011776477] +17:48:29 [ 37] [ 12] [507917209873] +17:48:29 [ 41] [ 8] [19529001] +17:48:29 [ 42] [ 15] [000000041952901] +17:48:29 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:48:29 [ 49] [ 3] [418] +17:48:29 [ 52] [ 16] [7BD382ABA1D1C462] +17:48:29 ============================================================================ +17:48:29 + + +waiting on router queue for slot.... +17:48:29 Sending to : +17:48:29 ============================================================================ +17:48:29 Sending to : +17:48:29 ============================================================================ +17:48:29 ============================================================================ +17:48:29 Slot Id : <84> +17:48:29 Transaction Type : REQUEST +17:48:29 Received From : +17:48:29 ============================================================================ +17:48:29 FNo. Len. Field Value +17:48:29 ============================================================================ +17:48:29 [ 1] [ 4] [0200] +17:48:29 [ 2] [ 16] [6213544002117767] +17:48:29 [ 3] [ 6] [011000] +17:48:29 [ 4] [ 12] [000005000000] +17:48:29 [ 7] [ 10] [0320174849] +17:48:29 [ 11] [ 6] [209873] +17:48:29 [ 12] [ 6] [174350] +17:48:29 [ 13] [ 4] [0320] +17:48:29 [ 14] [ 4] [4912] +17:48:29 [ 15] [ 4] [0320] +17:48:29 [ 18] [ 4] [6011] +17:48:29 [ 19] [ 3] [418] +17:48:29 [ 22] [ 3] [021] +17:48:29 [ 25] [ 2] [01] +17:48:29 [ 28] [ 9] [D00002000] +17:48:29 [ 32] [ 6] [198901] +17:48:29 [ 35] [ 32] [6213544002117767=491212011776477] +17:48:29 [ 37] [ 12] [507917209873] +17:48:29 [ 41] [ 8] [19529001] +17:48:29 [ 42] [ 15] [000000041952901] +17:48:29 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:48:29 [ 49] [ 3] [418] +17:48:29 [ 52] [ 16] [7BD382ABA1D1C462] +17:48:29 ============================================================================ +17:48:29 + + +waiting on router queue for slot.... +17:48:29 Sending to : +17:48:29 ============================================================================ +17:48:29 ============================================================================ +17:48:29 Slot Id : <84> +17:48:29 Transaction Type : REQUEST +17:48:29 Received From : +17:48:29 ============================================================================ +17:48:29 FNo. Len. Field Value +17:48:29 ============================================================================ +17:48:29 [ 1] [ 4] [0200] +17:48:29 [ 2] [ 16] [6213544002117767] +17:48:29 [ 3] [ 6] [011000] +17:48:29 [ 4] [ 12] [000005000000] +17:48:29 [ 7] [ 10] [0320174849] +17:48:29 [ 11] [ 6] [209873] +17:48:29 [ 12] [ 6] [174350] +17:48:29 [ 13] [ 4] [0320] +17:48:29 [ 14] [ 4] [4912] +17:48:29 [ 15] [ 4] [0320] +17:48:29 [ 18] [ 4] [6011] +17:48:29 [ 19] [ 3] [418] +17:48:29 [ 22] [ 3] [021] +17:48:29 [ 25] [ 2] [01] +17:48:29 [ 28] [ 9] [D00002000] +17:48:29 [ 32] [ 6] [198901] +17:48:29 [ 35] [ 32] [6213544002117767=491212011776477] +17:48:29 [ 37] [ 12] [507917209873] +17:48:29 [ 41] [ 8] [19529001] +17:48:29 [ 42] [ 15] [000000041952901] +17:48:29 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:48:29 [ 49] [ 3] [418] +17:48:29 [ 52] [ 16] [3CE53FDD805AF83E] +17:48:29 ============================================================================ +17:48:29 + + +waiting on router queue for slot.... +17:48:29 Sending to : <0> +17:48:29 ============================================================================ +17:48:30 ============================================================================ +17:48:30 Slot Id : <5> +17:48:30 Transaction Type : REQUEST +17:48:30 Received From : +17:48:30 ============================================================================ +17:48:30 FNo. Len. Field Value +17:48:30 ============================================================================ +17:48:30 [ 1] [ 4] [0200] +17:48:30 [ 2] [ 16] [6688990601443003] +17:48:30 [ 3] [ 6] [300000] +17:48:30 [ 4] [ 12] [000000000000] +17:48:30 [ 7] [ 10] [0320174825] +17:48:30 [ 11] [ 6] [820322] +17:48:30 [ 12] [ 6] [174825] +17:48:30 [ 13] [ 4] [0320] +17:48:30 [ 15] [ 4] [0320] +17:48:30 [ 18] [ 4] [6011] +17:48:30 [ 22] [ 3] [900] +17:48:30 [ 25] [ 2] [02] +17:48:30 [ 28] [ 9] [D00000000] +17:48:30 [ 32] [ 6] [621354] +17:48:30 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:48:30 [ 37] [ 12] [507904154130] +17:48:30 [ 41] [ 8] [20001000] +17:48:30 [ 42] [ 15] [NATIVE ] +17:48:30 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:48:30 [ 49] [ 3] [418] +17:48:30 [ 52] [ 16] [A20525E61AA50CDA] +17:48:30 ============================================================================ +17:48:30 + + +waiting on router queue for slot.... +17:48:30 Sending to : +17:48:30 ============================================================================ +17:48:30 Sending to : +17:48:30 ============================================================================ +17:48:30 ============================================================================ +17:48:30 Slot Id : <5> +17:48:30 Transaction Type : REQUEST +17:48:30 Received From : +17:48:30 ============================================================================ +17:48:30 FNo. Len. Field Value +17:48:30 ============================================================================ +17:48:30 [ 1] [ 4] [0200] +17:48:30 [ 2] [ 16] [6688990601443003] +17:48:30 [ 3] [ 6] [300000] +17:48:30 [ 4] [ 12] [000000000000] +17:48:30 [ 7] [ 10] [0320174825] +17:48:30 [ 11] [ 6] [820322] +17:48:30 [ 12] [ 6] [174825] +17:48:30 [ 13] [ 4] [0320] +17:48:30 [ 15] [ 4] [0320] +17:48:30 [ 18] [ 4] [6011] +17:48:30 [ 22] [ 3] [900] +17:48:30 [ 25] [ 2] [02] +17:48:30 [ 28] [ 9] [D00000000] +17:48:30 [ 32] [ 6] [621354] +17:48:30 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:48:30 [ 37] [ 12] [507904154130] +17:48:30 [ 41] [ 8] [20001000] +17:48:30 [ 42] [ 15] [NATIVE ] +17:48:30 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:48:30 [ 49] [ 3] [418] +17:48:30 [ 52] [ 16] [A20525E61AA50CDA] +17:48:30 ============================================================================ +17:48:30 + + +waiting on router queue for slot.... +17:48:30 Sending to : +17:48:30 ============================================================================ +17:48:30 ============================================================================ +17:48:30 Slot Id : <5> +17:48:30 Transaction Type : REQUEST +17:48:30 Received From : +17:48:30 ============================================================================ +17:48:30 FNo. Len. Field Value +17:48:30 ============================================================================ +17:48:30 [ 1] [ 4] [0200] +17:48:30 [ 2] [ 16] [6688990601443003] +17:48:30 [ 3] [ 6] [300000] +17:48:30 [ 4] [ 12] [000000000000] +17:48:30 [ 7] [ 10] [0320174825] +17:48:30 [ 11] [ 6] [820322] +17:48:30 [ 12] [ 6] [174825] +17:48:30 [ 13] [ 4] [0320] +17:48:30 [ 15] [ 4] [0320] +17:48:30 [ 18] [ 4] [6011] +17:48:30 [ 22] [ 3] [900] +17:48:30 [ 25] [ 2] [02] +17:48:30 [ 28] [ 9] [D00000000] +17:48:30 [ 32] [ 6] [621354] +17:48:30 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:48:30 [ 37] [ 12] [507904154130] +17:48:30 [ 41] [ 8] [20001000] +17:48:30 [ 42] [ 15] [NATIVE ] +17:48:30 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:48:30 [ 49] [ 3] [418] +17:48:30 [ 52] [ 16] [F8DDBA667328DD48] +17:48:30 ============================================================================ +17:48:30 + + +waiting on router queue for slot.... +17:48:30 Sending to : <4> +17:48:30 ============================================================================ +17:48:30 ============================================================================ +17:48:30 Slot Id : <84> +17:48:30 Transaction Type : RESPONSE +17:48:30 Received From : +17:48:30 ============================================================================ +17:48:30 FNo. Len. Field Value +17:48:30 ============================================================================ +17:48:30 [ 1] [ 4] [0210] +17:48:30 [ 2] [ 16] [6213544002117767] +17:48:30 [ 3] [ 6] [011000] +17:48:30 [ 4] [ 12] [000005000000] +17:48:30 [ 7] [ 10] [0320174849] +17:48:30 [ 11] [ 6] [209873] +17:48:30 [ 12] [ 6] [174350] +17:48:30 [ 13] [ 4] [0320] +17:48:30 [ 15] [ 4] [0320] +17:48:30 [ 18] [ 4] [6011] +17:48:30 [ 19] [ 3] [418] +17:48:30 [ 32] [ 6] [198901] +17:48:30 [ 35] [ 32] [6213544002117767=491212011776477] +17:48:30 [ 37] [ 12] [507917209873] +17:48:30 [ 38] [ 6] [856744] +17:48:30 [ 39] [ 2] [00] +17:48:30 [ 41] [ 8] [19529001] +17:48:30 [ 49] [ 3] [418] +17:48:30 [ 54] [ 40] [1001418C0000257871791002418C000025787179] +17:48:30 ============================================================================ +17:48:30 Sending to : +17:48:30 ============================================================================ +17:48:30 + + +waiting on router queue for slot.... +17:48:30 ============================================================================ +17:48:30 Slot Id : <79> +17:48:30 Transaction Type : RESPONSE +17:48:30 Received From : +17:48:30 ============================================================================ +17:48:30 FNo. Len. Field Value +17:48:30 ============================================================================ +17:48:30 [ 1] [ 4] [0210] +17:48:30 [ 2] [ 16] [6213545000610786] +17:48:30 [ 3] [ 6] [010000] +17:48:30 [ 4] [ 12] [000050000000] +17:48:30 [ 7] [ 10] [0320174618] +17:48:30 [ 11] [ 6] [953921] +17:48:30 [ 12] [ 6] [174618] +17:48:30 [ 13] [ 4] [0320] +17:48:30 [ 15] [ 4] [0320] +17:48:30 [ 18] [ 4] [6011] +17:48:30 [ 19] [ 3] [418] +17:48:30 [ 32] [ 6] [668899] +17:48:30 [ 35] [ 32] [6213545000610786=491212011078686] +17:48:30 [ 37] [ 12] [507902475754] +17:48:30 [ 38] [ 6] [661652] +17:48:30 [ 39] [ 2] [00] +17:48:30 [ 41] [ 8] [03020032] +17:48:30 [ 49] [ 3] [418] +17:48:30 [ 54] [ 40] [0001418C0000096786650002418C000009678665] +17:48:30 ============================================================================ +17:48:30 Calculate Source COMM Id = 4 +17:48:30 ============================================================================ +17:48:30 + + +waiting on router queue for slot.... +17:48:31 ============================================================================ +17:48:31 Slot Id : <5> +17:48:31 Transaction Type : RESPONSE +17:48:31 Received From : +17:48:31 ============================================================================ +17:48:31 FNo. Len. Field Value +17:48:31 ============================================================================ +17:48:31 [ 1] [ 4] [0210] +17:48:31 [ 2] [ 16] [6688990601443003] +17:48:31 [ 3] [ 6] [300000] +17:48:31 [ 4] [ 12] [000000000000] +17:48:31 [ 11] [ 6] [820322] +17:48:31 [ 12] [ 6] [174825] +17:48:31 [ 15] [ 4] [0320] +17:48:31 [ 18] [ 4] [6011] +17:48:31 [ 32] [ 6] [621354] +17:48:31 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:48:31 [ 37] [ 12] [507904154130] +17:48:31 [ 38] [ 6] [164046] +17:48:31 [ 39] [ 2] [00] +17:48:31 [ 41] [ 8] [20001000] +17:48:31 [ 49] [ 3] [418] +17:48:31 [ 54] [ 20] [0002418C000031021032] +17:48:31 ============================================================================ +17:48:31 Sending to : +17:48:31 ============================================================================ +17:48:31 + + +waiting on router queue for slot.... +17:48:32 ============================================================================ +17:48:32 Slot Id : <84> +17:48:32 Transaction Type : RESPONSE +17:48:32 Received From : +17:48:32 ============================================================================ +17:48:32 FNo. Len. Field Value +17:48:32 ============================================================================ +17:48:32 [ 1] [ 4] [0210] +17:48:32 [ 2] [ 16] [6213544002117767] +17:48:32 [ 3] [ 6] [011000] +17:48:32 [ 4] [ 12] [000005000000] +17:48:32 [ 7] [ 10] [0320174849] +17:48:32 [ 11] [ 6] [209873] +17:48:32 [ 12] [ 6] [174350] +17:48:32 [ 13] [ 4] [0320] +17:48:32 [ 15] [ 4] [0320] +17:48:32 [ 18] [ 4] [6011] +17:48:32 [ 19] [ 3] [418] +17:48:32 [ 32] [ 6] [198901] +17:48:32 [ 35] [ 32] [6213544002117767=491212011776477] +17:48:32 [ 37] [ 12] [507917209873] +17:48:32 [ 38] [ 6] [856744] +17:48:32 [ 39] [ 2] [00] +17:48:32 [ 41] [ 8] [19529001] +17:48:32 [ 49] [ 3] [418] +17:48:32 [ 54] [ 40] [1001418C0000257871791002418C000025787179] +17:48:32 ============================================================================ +17:48:32 Calculate Source COMM Id = 5 +17:48:32 ============================================================================ +17:48:32 + + +waiting on router queue for slot.... +17:48:33 ============================================================================ +17:48:33 Slot Id : <5> +17:48:33 Transaction Type : RESPONSE +17:48:33 Received From : +17:48:33 ============================================================================ +17:48:33 FNo. Len. Field Value +17:48:33 ============================================================================ +17:48:33 [ 1] [ 4] [0210] +17:48:33 [ 2] [ 16] [6688990601443003] +17:48:33 [ 3] [ 6] [300000] +17:48:33 [ 4] [ 12] [000000000000] +17:48:33 [ 11] [ 6] [820322] +17:48:33 [ 12] [ 6] [174825] +17:48:33 [ 15] [ 4] [0320] +17:48:33 [ 18] [ 4] [6011] +17:48:33 [ 32] [ 6] [621354] +17:48:33 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:48:33 [ 37] [ 12] [507904154130] +17:48:33 [ 38] [ 6] [164046] +17:48:33 [ 39] [ 2] [00] +17:48:33 [ 41] [ 8] [20001000] +17:48:33 [ 49] [ 3] [418] +17:48:33 [ 54] [ 20] [0002418C000031021032] +17:48:33 ============================================================================ +17:48:33 Calculate Source COMM Id = 0 +17:48:33 ============================================================================ +17:48:33 + + +waiting on router queue for slot.... +17:48:35 ============================================================================ +17:48:35 Slot Id : <67> +17:48:35 Transaction Type : REQUEST +17:48:35 Received From : +17:48:35 ============================================================================ +17:48:35 FNo. Len. Field Value +17:48:35 ============================================================================ +17:48:35 [ 1] [ 4] [0200] +17:48:35 [ 2] [ 16] [6213548000387447] +17:48:35 [ 3] [ 6] [010000] +17:48:35 [ 4] [ 12] [000010000000] +17:48:35 [ 7] [ 10] [0320104741] +17:48:35 [ 11] [ 6] [270990] +17:48:35 [ 12] [ 6] [174741] +17:48:35 [ 13] [ 4] [0320] +17:48:35 [ 14] [ 4] [1805] +17:48:35 [ 15] [ 4] [0320] +17:48:35 [ 18] [ 4] [6011] +17:48:35 [ 19] [ 3] [418] +17:48:35 [ 22] [ 3] [021] +17:48:35 [ 25] [ 2] [01] +17:48:35 [ 28] [ 9] [D00002000] +17:48:35 [ 32] [ 6] [180893] +17:48:35 [ 35] [ 32] [6213548000387447=180512018744560] +17:48:35 [ 37] [ 12] [507910270990] +17:48:35 [ 41] [ 8] [0527LPBL] +17:48:35 [ 42] [ 15] [999999 ] +17:48:35 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +17:48:35 [ 49] [ 3] [418] +17:48:35 [ 52] [ 16] [D4AEAADC00302423] +17:48:35 ============================================================================ +17:48:35 + + +waiting on router queue for slot.... +17:48:35 Sending to : +17:48:35 ============================================================================ +17:48:35 Sending to : +17:48:35 ============================================================================ +17:48:35 ============================================================================ +17:48:35 Slot Id : <58> +17:48:35 Transaction Type : REQUEST +17:48:35 Received From : +17:48:35 ============================================================================ +17:48:35 FNo. Len. Field Value +17:48:35 ============================================================================ +17:48:35 [ 1] [ 4] [0800] +17:48:35 [ 7] [ 10] [0320104741] +17:48:35 [ 11] [ 6] [157548] +17:48:35 [ 70] [ 3] [301] +17:48:35 ============================================================================ +17:48:35 + + +waiting on router queue for slot.... +17:48:35 Sending to : +17:48:35 ============================================================================ +17:48:35 ============================================================================ +17:48:35 Slot Id : <58> +17:48:35 Transaction Type : RESPONSE +17:48:35 Received From : +17:48:35 ============================================================================ +17:48:35 FNo. Len. Field Value +17:48:35 ============================================================================ +17:48:35 [ 1] [ 4] [0810] +17:48:35 [ 7] [ 10] [0320104741] +17:48:35 [ 11] [ 6] [157548] +17:48:35 [ 39] [ 2] [00] +17:48:35 [ 70] [ 3] [301] +17:48:35 ============================================================================ +17:48:35 Calculate Source COMM Id = 2 +17:48:35 ============================================================================ +17:48:35 + + +waiting on router queue for slot.... +17:48:35 ============================================================================ +17:48:35 Slot Id : <67> +17:48:35 Transaction Type : REQUEST +17:48:35 Received From : +17:48:35 ============================================================================ +17:48:35 FNo. Len. Field Value +17:48:35 ============================================================================ +17:48:35 [ 1] [ 4] [0200] +17:48:35 [ 2] [ 16] [6213548000387447] +17:48:35 [ 3] [ 6] [010000] +17:48:35 [ 4] [ 12] [000010000000] +17:48:35 [ 7] [ 10] [0320104741] +17:48:35 [ 11] [ 6] [270990] +17:48:35 [ 12] [ 6] [174741] +17:48:35 [ 13] [ 4] [0320] +17:48:35 [ 14] [ 4] [1805] +17:48:35 [ 15] [ 4] [0320] +17:48:35 [ 18] [ 4] [6011] +17:48:35 [ 19] [ 3] [418] +17:48:35 [ 22] [ 3] [021] +17:48:35 [ 25] [ 2] [01] +17:48:35 [ 28] [ 9] [D00002000] +17:48:35 [ 32] [ 6] [180893] +17:48:35 [ 35] [ 32] [6213548000387447=180512018744560] +17:48:35 [ 37] [ 12] [507910270990] +17:48:35 [ 41] [ 8] [0527LPBL] +17:48:35 [ 42] [ 15] [999999 ] +17:48:35 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +17:48:35 [ 49] [ 3] [418] +17:48:35 [ 52] [ 16] [D4AEAADC00302423] +17:48:35 ============================================================================ +17:48:35 + + +waiting on router queue for slot.... +17:48:35 Sending to : +17:48:35 ============================================================================ +17:48:35 ============================================================================ +17:48:35 Slot Id : <67> +17:48:35 Transaction Type : REQUEST +17:48:35 Received From : +17:48:35 ============================================================================ +17:48:35 FNo. Len. Field Value +17:48:35 ============================================================================ +17:48:35 [ 1] [ 4] [0200] +17:48:35 [ 2] [ 16] [6213548000387447] +17:48:35 [ 3] [ 6] [010000] +17:48:35 [ 4] [ 12] [000010000000] +17:48:35 [ 7] [ 10] [0320104741] +17:48:35 [ 11] [ 6] [270990] +17:48:35 [ 12] [ 6] [174741] +17:48:35 [ 13] [ 4] [0320] +17:48:35 [ 14] [ 4] [1805] +17:48:35 [ 15] [ 4] [0320] +17:48:35 [ 18] [ 4] [6011] +17:48:35 [ 19] [ 3] [418] +17:48:35 [ 22] [ 3] [021] +17:48:35 [ 25] [ 2] [01] +17:48:35 [ 28] [ 9] [D00002000] +17:48:35 [ 32] [ 6] [180893] +17:48:35 [ 35] [ 32] [6213548000387447=180512018744560] +17:48:35 [ 37] [ 12] [507910270990] +17:48:35 [ 41] [ 8] [0527LPBL] +17:48:35 [ 42] [ 15] [999999 ] +17:48:35 [ 43] [ 40] [ATM LIGAL UNIVERSITY LUANGPRABANG, Luang] +17:48:35 [ 49] [ 3] [418] +17:48:35 [ 52] [ 16] [FC83EC095AA7D637] +17:48:35 ============================================================================ +17:48:35 + + +waiting on router queue for slot.... +17:48:35 Sending to : <0> +17:48:35 ============================================================================ +17:48:36 ============================================================================ +17:48:36 Slot Id : <67> +17:48:36 Transaction Type : RESPONSE +17:48:36 Received From : +17:48:36 ============================================================================ +17:48:36 FNo. Len. Field Value +17:48:36 ============================================================================ +17:48:36 [ 1] [ 4] [0210] +17:48:36 [ 2] [ 16] [6213548000387447] +17:48:36 [ 3] [ 6] [010000] +17:48:36 [ 4] [ 12] [000010000000] +17:48:36 [ 7] [ 10] [0320104741] +17:48:36 [ 11] [ 6] [270990] +17:48:36 [ 12] [ 6] [174741] +17:48:36 [ 13] [ 4] [0320] +17:48:36 [ 15] [ 4] [0320] +17:48:36 [ 18] [ 4] [6011] +17:48:36 [ 19] [ 3] [418] +17:48:36 [ 32] [ 6] [180893] +17:48:36 [ 35] [ 32] [6213548000387447=180512018744560] +17:48:36 [ 37] [ 12] [507910270990] +17:48:36 [ 38] [ 6] [270990] +17:48:36 [ 39] [ 2] [51] +17:48:36 [ 41] [ 8] [0527LPBL] +17:48:36 [ 49] [ 3] [418] +17:48:36 [ 54] [ 40] [0001418C0000146537130002418C000014653713] +17:48:36 ============================================================================ +17:48:36 Sending to : +17:48:36 ============================================================================ +17:48:36 + + +waiting on router queue for slot.... +17:48:37 ============================================================================ +17:48:37 Slot Id : <67> +17:48:37 Transaction Type : RESPONSE +17:48:37 Received From : +17:48:37 ============================================================================ +17:48:37 FNo. Len. Field Value +17:48:37 ============================================================================ +17:48:37 [ 1] [ 4] [0210] +17:48:37 [ 2] [ 16] [6213548000387447] +17:48:37 [ 3] [ 6] [010000] +17:48:37 [ 4] [ 12] [000010000000] +17:48:37 [ 7] [ 10] [0320104741] +17:48:37 [ 11] [ 6] [270990] +17:48:37 [ 12] [ 6] [174741] +17:48:37 [ 13] [ 4] [0320] +17:48:37 [ 15] [ 4] [0320] +17:48:37 [ 18] [ 4] [6011] +17:48:37 [ 19] [ 3] [418] +17:48:37 [ 32] [ 6] [180893] +17:48:37 [ 35] [ 32] [6213548000387447=180512018744560] +17:48:37 [ 37] [ 12] [507910270990] +17:48:37 [ 38] [ 6] [270990] +17:48:37 [ 39] [ 2] [51] +17:48:37 [ 41] [ 8] [0527LPBL] +17:48:37 [ 49] [ 3] [418] +17:48:37 [ 54] [ 40] [0001418C0000146537130002418C000014653713] +17:48:37 ============================================================================ +17:48:37 Calculate Source COMM Id = 2 +17:48:37 ============================================================================ +17:48:37 + + +waiting on router queue for slot.... +17:48:39 ============================================================================ +17:48:39 Slot Id : <62> +17:48:39 Transaction Type : REQUEST +17:48:39 Received From : +17:48:39 ============================================================================ +17:48:39 FNo. Len. Field Value +17:48:39 ============================================================================ +17:48:39 [ 1] [ 4] [0200] +17:48:39 [ 2] [ 16] [6688990040039669] +17:48:39 [ 3] [ 6] [010000] +17:48:39 [ 4] [ 12] [000050000000] +17:48:39 [ 7] [ 10] [0320174834] +17:48:39 [ 11] [ 6] [820370] +17:48:39 [ 12] [ 6] [174834] +17:48:39 [ 13] [ 4] [0320] +17:48:39 [ 15] [ 4] [0320] +17:48:39 [ 18] [ 4] [6011] +17:48:39 [ 22] [ 3] [900] +17:48:39 [ 25] [ 2] [02] +17:48:39 [ 28] [ 9] [D00002000] +17:48:39 [ 32] [ 6] [621354] +17:48:39 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:48:39 [ 37] [ 12] [507905271817] +17:48:39 [ 41] [ 8] [02002900] +17:48:39 [ 42] [ 15] [NATIVE ] +17:48:39 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:48:39 [ 49] [ 3] [418] +17:48:39 [ 52] [ 16] [A121443DDD885ADC] +17:48:39 ============================================================================ +17:48:39 + + +waiting on router queue for slot.... +17:48:39 Sending to : +17:48:39 ============================================================================ +17:48:39 Sending to : +17:48:39 ============================================================================ +17:48:39 ============================================================================ +17:48:39 Slot Id : <62> +17:48:39 Transaction Type : REQUEST +17:48:39 Received From : +17:48:39 ============================================================================ +17:48:39 FNo. Len. Field Value +17:48:39 ============================================================================ +17:48:39 [ 1] [ 4] [0200] +17:48:39 [ 2] [ 16] [6688990040039669] +17:48:39 [ 3] [ 6] [010000] +17:48:39 [ 4] [ 12] [000050000000] +17:48:39 [ 7] [ 10] [0320174834] +17:48:39 [ 11] [ 6] [820370] +17:48:39 [ 12] [ 6] [174834] +17:48:39 [ 13] [ 4] [0320] +17:48:39 [ 15] [ 4] [0320] +17:48:39 [ 18] [ 4] [6011] +17:48:39 [ 22] [ 3] [900] +17:48:39 [ 25] [ 2] [02] +17:48:39 [ 28] [ 9] [D00002000] +17:48:39 [ 32] [ 6] [621354] +17:48:39 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:48:39 [ 37] [ 12] [507905271817] +17:48:39 [ 41] [ 8] [02002900] +17:48:39 [ 42] [ 15] [NATIVE ] +17:48:39 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:48:39 [ 49] [ 3] [418] +17:48:39 [ 52] [ 16] [A121443DDD885ADC] +17:48:39 ============================================================================ +17:48:39 + + +waiting on router queue for slot.... +17:48:39 Sending to : +17:48:39 ============================================================================ +17:48:39 ============================================================================ +17:48:39 Slot Id : <62> +17:48:39 Transaction Type : REQUEST +17:48:39 Received From : +17:48:39 ============================================================================ +17:48:39 FNo. Len. Field Value +17:48:39 ============================================================================ +17:48:39 [ 1] [ 4] [0200] +17:48:39 [ 2] [ 16] [6688990040039669] +17:48:39 [ 3] [ 6] [010000] +17:48:39 [ 4] [ 12] [000050000000] +17:48:39 [ 7] [ 10] [0320174834] +17:48:39 [ 11] [ 6] [820370] +17:48:39 [ 12] [ 6] [174834] +17:48:39 [ 13] [ 4] [0320] +17:48:39 [ 15] [ 4] [0320] +17:48:39 [ 18] [ 4] [6011] +17:48:39 [ 22] [ 3] [900] +17:48:39 [ 25] [ 2] [02] +17:48:39 [ 28] [ 9] [D00002000] +17:48:39 [ 32] [ 6] [621354] +17:48:39 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:48:39 [ 37] [ 12] [507905271817] +17:48:39 [ 41] [ 8] [02002900] +17:48:39 [ 42] [ 15] [NATIVE ] +17:48:39 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:48:39 [ 49] [ 3] [418] +17:48:39 [ 52] [ 16] [A9CBCDF0E96A5CBF] +17:48:39 ============================================================================ +17:48:39 + + +waiting on router queue for slot.... +17:48:39 Sending to : <4> +17:48:39 ============================================================================ +17:48:40 ============================================================================ +17:48:40 Slot Id : <62> +17:48:40 Transaction Type : RESPONSE +17:48:40 Received From : +17:48:40 ============================================================================ +17:48:40 FNo. Len. Field Value +17:48:40 ============================================================================ +17:48:40 [ 1] [ 4] [0210] +17:48:40 [ 2] [ 16] [6688990040039669] +17:48:40 [ 3] [ 6] [010000] +17:48:40 [ 4] [ 12] [000050000000] +17:48:40 [ 11] [ 6] [820370] +17:48:40 [ 12] [ 6] [174834] +17:48:40 [ 15] [ 4] [0320] +17:48:40 [ 18] [ 4] [6011] +17:48:40 [ 32] [ 6] [621354] +17:48:40 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:48:40 [ 37] [ 12] [507905271817] +17:48:40 [ 39] [ 2] [51] +17:48:40 [ 41] [ 8] [02002900] +17:48:40 [ 49] [ 3] [418] +17:48:40 [ 54] [ 0] [] +17:48:40 ============================================================================ +17:48:40 Sending to : +17:48:40 ============================================================================ +17:48:40 + + +waiting on router queue for slot.... +17:48:42 ============================================================================ +17:48:42 Slot Id : <62> +17:48:42 Transaction Type : RESPONSE +17:48:42 Received From : +17:48:42 ============================================================================ +17:48:42 FNo. Len. Field Value +17:48:42 ============================================================================ +17:48:42 [ 1] [ 4] [0210] +17:48:42 [ 2] [ 16] [6688990040039669] +17:48:42 [ 3] [ 6] [010000] +17:48:42 [ 4] [ 12] [000050000000] +17:48:42 [ 11] [ 6] [820370] +17:48:42 [ 12] [ 6] [174834] +17:48:42 [ 15] [ 4] [0320] +17:48:42 [ 18] [ 4] [6011] +17:48:42 [ 32] [ 6] [621354] +17:48:42 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:48:42 [ 37] [ 12] [507905271817] +17:48:42 [ 39] [ 2] [51] +17:48:42 [ 41] [ 8] [02002900] +17:48:42 [ 49] [ 3] [418] +17:48:42 [ 54] [ 0] [] +17:48:42 ============================================================================ +17:48:42 Calculate Source COMM Id = 0 +17:48:42 ============================================================================ +17:48:42 + + +waiting on router queue for slot.... +17:48:51 ============================================================================ +17:48:51 Slot Id : <93> +17:48:51 Transaction Type : REQUEST +17:48:51 Received From : +17:48:51 ============================================================================ +17:48:51 FNo. Len. Field Value +17:48:51 ============================================================================ +17:48:51 [ 1] [ 4] [0800] +17:48:51 [ 7] [ 10] [0320104758] +17:48:51 [ 11] [ 6] [157549] +17:48:51 [ 70] [ 3] [301] +17:48:51 ============================================================================ +17:48:51 + + +waiting on router queue for slot.... +17:48:51 Sending to : +17:48:51 ============================================================================ +17:48:51 ============================================================================ +17:48:51 Slot Id : <93> +17:48:51 Transaction Type : RESPONSE +17:48:51 Received From : +17:48:51 ============================================================================ +17:48:51 FNo. Len. Field Value +17:48:51 ============================================================================ +17:48:51 [ 1] [ 4] [0810] +17:48:51 [ 7] [ 10] [0320104758] +17:48:51 [ 11] [ 6] [157549] +17:48:51 [ 39] [ 2] [00] +17:48:51 [ 70] [ 3] [301] +17:48:51 ============================================================================ +17:48:51 Calculate Source COMM Id = 2 +17:48:51 ============================================================================ +17:48:51 + + +waiting on router queue for slot.... +17:49:02 ============================================================================ +17:49:02 Slot Id : <56> +17:49:02 Transaction Type : REQUEST +17:49:02 Received From : +17:49:02 ============================================================================ +17:49:02 FNo. Len. Field Value +17:49:02 ============================================================================ +17:49:02 [ 1] [ 4] [0800] +17:49:02 [ 7] [ 10] [0320104809] +17:49:02 [ 11] [ 6] [157550] +17:49:02 [ 70] [ 3] [301] +17:49:02 ============================================================================ +17:49:02 + + +waiting on router queue for slot.... +17:49:02 Sending to : +17:49:02 ============================================================================ +17:49:02 ============================================================================ +17:49:02 Slot Id : <56> +17:49:02 Transaction Type : RESPONSE +17:49:02 Received From : +17:49:02 ============================================================================ +17:49:02 FNo. Len. Field Value +17:49:02 ============================================================================ +17:49:02 [ 1] [ 4] [0810] +17:49:02 [ 7] [ 10] [0320104809] +17:49:02 [ 11] [ 6] [157550] +17:49:02 [ 39] [ 2] [00] +17:49:02 [ 70] [ 3] [301] +17:49:02 ============================================================================ +17:49:02 Calculate Source COMM Id = 2 +17:49:02 ============================================================================ +17:49:02 + + +waiting on router queue for slot.... +17:49:05 ============================================================================ +17:49:05 Slot Id : <39> +17:49:05 Transaction Type : REQUEST +17:49:05 Received From : +17:49:05 ============================================================================ +17:49:05 FNo. Len. Field Value +17:49:05 ============================================================================ +17:49:05 [ 1] [ 4] [0200] +17:49:05 [ 2] [ 16] [6213548000291821] +17:49:05 [ 3] [ 6] [011000] +17:49:05 [ 4] [ 12] [000010000000] +17:49:05 [ 7] [ 10] [0320174925] +17:49:05 [ 11] [ 6] [209883] +17:49:05 [ 12] [ 6] [054735] +17:49:05 [ 13] [ 4] [0320] +17:49:05 [ 14] [ 4] [1803] +17:49:05 [ 15] [ 4] [0320] +17:49:05 [ 18] [ 4] [6011] +17:49:05 [ 19] [ 3] [418] +17:49:05 [ 22] [ 3] [021] +17:49:05 [ 25] [ 2] [01] +17:49:05 [ 28] [ 9] [D00002000] +17:49:05 [ 32] [ 6] [198901] +17:49:05 [ 35] [ 32] [6213548000291821=180312019182411] +17:49:05 [ 37] [ 12] [507917209883] +17:49:05 [ 41] [ 8] [01529031] +17:49:05 [ 42] [ 15] [000000041529031] +17:49:05 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +17:49:05 [ 49] [ 3] [418] +17:49:05 [ 52] [ 16] [800C947501B646EA] +17:49:05 ============================================================================ +17:49:05 + + +waiting on router queue for slot.... +17:49:05 Sending to : +17:49:05 ============================================================================ +17:49:05 Sending to : +17:49:05 ============================================================================ +17:49:05 ============================================================================ +17:49:05 Slot Id : <39> +17:49:05 Transaction Type : REQUEST +17:49:05 Received From : +17:49:05 ============================================================================ +17:49:05 FNo. Len. Field Value +17:49:05 ============================================================================ +17:49:05 [ 1] [ 4] [0200] +17:49:05 [ 2] [ 16] [6213548000291821] +17:49:05 [ 3] [ 6] [011000] +17:49:05 [ 4] [ 12] [000010000000] +17:49:05 [ 7] [ 10] [0320174925] +17:49:05 [ 11] [ 6] [209883] +17:49:05 [ 12] [ 6] [054735] +17:49:05 [ 13] [ 4] [0320] +17:49:05 [ 14] [ 4] [1803] +17:49:05 [ 15] [ 4] [0320] +17:49:05 [ 18] [ 4] [6011] +17:49:05 [ 19] [ 3] [418] +17:49:05 [ 22] [ 3] [021] +17:49:05 [ 25] [ 2] [01] +17:49:05 [ 28] [ 9] [D00002000] +17:49:05 [ 32] [ 6] [198901] +17:49:05 [ 35] [ 32] [6213548000291821=180312019182411] +17:49:05 [ 37] [ 12] [507917209883] +17:49:05 [ 41] [ 8] [01529031] +17:49:05 [ 42] [ 15] [000000041529031] +17:49:05 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +17:49:05 [ 49] [ 3] [418] +17:49:05 [ 52] [ 16] [800C947501B646EA] +17:49:05 ============================================================================ +17:49:05 + + +waiting on router queue for slot.... +17:49:05 Sending to : +17:49:05 ============================================================================ +17:49:05 ============================================================================ +17:49:05 Slot Id : <39> +17:49:05 Transaction Type : REQUEST +17:49:05 Received From : +17:49:05 ============================================================================ +17:49:05 FNo. Len. Field Value +17:49:05 ============================================================================ +17:49:05 [ 1] [ 4] [0200] +17:49:05 [ 2] [ 16] [6213548000291821] +17:49:05 [ 3] [ 6] [011000] +17:49:05 [ 4] [ 12] [000010000000] +17:49:05 [ 7] [ 10] [0320174925] +17:49:05 [ 11] [ 6] [209883] +17:49:05 [ 12] [ 6] [054735] +17:49:05 [ 13] [ 4] [0320] +17:49:05 [ 14] [ 4] [1803] +17:49:05 [ 15] [ 4] [0320] +17:49:05 [ 18] [ 4] [6011] +17:49:05 [ 19] [ 3] [418] +17:49:05 [ 22] [ 3] [021] +17:49:05 [ 25] [ 2] [01] +17:49:05 [ 28] [ 9] [D00002000] +17:49:05 [ 32] [ 6] [198901] +17:49:05 [ 35] [ 32] [6213548000291821=180312019182411] +17:49:05 [ 37] [ 12] [507917209883] +17:49:05 [ 41] [ 8] [01529031] +17:49:05 [ 42] [ 15] [000000041529031] +17:49:05 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +17:49:05 [ 49] [ 3] [418] +17:49:05 [ 52] [ 16] [BDA430438FA40A97] +17:49:05 ============================================================================ +17:49:05 + + +waiting on router queue for slot.... +17:49:05 Sending to : <0> +17:49:05 ============================================================================ +17:49:06 ============================================================================ +17:49:06 Slot Id : <39> +17:49:06 Transaction Type : RESPONSE +17:49:06 Received From : +17:49:06 ============================================================================ +17:49:06 FNo. Len. Field Value +17:49:06 ============================================================================ +17:49:06 [ 1] [ 4] [0210] +17:49:06 [ 2] [ 16] [6213548000291821] +17:49:06 [ 3] [ 6] [011000] +17:49:06 [ 4] [ 12] [000010000000] +17:49:06 [ 7] [ 10] [0320174925] +17:49:06 [ 11] [ 6] [209883] +17:49:06 [ 12] [ 6] [054735] +17:49:06 [ 13] [ 4] [0320] +17:49:06 [ 15] [ 4] [0320] +17:49:06 [ 18] [ 4] [6011] +17:49:06 [ 19] [ 3] [418] +17:49:06 [ 32] [ 6] [198901] +17:49:06 [ 35] [ 32] [6213548000291821=180312019182411] +17:49:06 [ 37] [ 12] [507917209883] +17:49:06 [ 38] [ 6] [574476] +17:49:06 [ 39] [ 2] [00] +17:49:06 [ 41] [ 8] [01529031] +17:49:06 [ 49] [ 3] [418] +17:49:06 [ 54] [ 40] [1001418C0000572104971002418C000057210497] +17:49:06 ============================================================================ +17:49:06 Sending to : +17:49:06 ============================================================================ +17:49:06 + + +waiting on router queue for slot.... +17:49:07 ============================================================================ +17:49:07 Slot Id : <82> +17:49:07 Transaction Type : REQUEST +17:49:07 Received From : +17:49:07 ============================================================================ +17:49:07 FNo. Len. Field Value +17:49:07 ============================================================================ +17:49:07 [ 1] [ 4] [0800] +17:49:07 [ 2] [ 5] [02531] +17:49:07 [ 3] [ 6] [579178] +17:49:07 [ 7] [ 10] [0320104907] +17:49:07 [ 11] [ 6] [807446] +17:49:07 [ 15] [ 10] [0320104907] +17:49:07 [ 37] [ 11] [57917807446] +17:49:07 [ 70] [ 3] [001] +17:49:07 ============================================================================ +17:49:07 + + +waiting on router queue for slot.... +17:49:07 ============================================================================ +17:49:07 Slot Id : <82> +17:49:07 Transaction Type : RESPONSE +17:49:07 Received From : +17:49:07 ============================================================================ +17:49:07 FNo. Len. Field Value +17:49:07 ============================================================================ +17:49:07 [ 1] [ 4] [0810] +17:49:07 [ 7] [ 10] [0320104907] +17:49:07 [ 11] [ 6] [807446] +17:49:07 [ 15] [ 4] [0320] +17:49:07 [ 37] [ 12] [57917807446] +17:49:07 [ 39] [ 2] [00] +17:49:07 [ 70] [ 3] [001] +17:49:07 ============================================================================ +17:49:07 Sending to : +17:49:07 ============================================================================ +17:49:07 + + +waiting on router queue for slot.... +17:49:07 ============================================================================ +17:49:07 Slot Id : <39> +17:49:07 Transaction Type : RESPONSE +17:49:07 Received From : +17:49:07 ============================================================================ +17:49:07 FNo. Len. Field Value +17:49:07 ============================================================================ +17:49:07 [ 1] [ 4] [0210] +17:49:07 [ 2] [ 16] [6213548000291821] +17:49:07 [ 3] [ 6] [011000] +17:49:07 [ 4] [ 12] [000010000000] +17:49:07 [ 7] [ 10] [0320174925] +17:49:07 [ 11] [ 6] [209883] +17:49:07 [ 12] [ 6] [054735] +17:49:07 [ 13] [ 4] [0320] +17:49:07 [ 15] [ 4] [0320] +17:49:07 [ 18] [ 4] [6011] +17:49:07 [ 19] [ 3] [418] +17:49:07 [ 32] [ 6] [198901] +17:49:07 [ 35] [ 32] [6213548000291821=180312019182411] +17:49:07 [ 37] [ 12] [507917209883] +17:49:07 [ 38] [ 6] [574476] +17:49:07 [ 39] [ 2] [00] +17:49:07 [ 41] [ 8] [01529031] +17:49:07 [ 49] [ 3] [418] +17:49:07 [ 54] [ 40] [1001418C0000572104971002418C000057210497] +17:49:07 ============================================================================ +17:49:07 Calculate Source COMM Id = 5 +17:49:07 ============================================================================ +17:49:07 + + +waiting on router queue for slot.... +17:49:13 ============================================================================ +17:49:13 Slot Id : <51> +17:49:13 Transaction Type : REQUEST +17:49:13 Received From : +17:49:13 ============================================================================ +17:49:13 FNo. Len. Field Value +17:49:13 ============================================================================ +17:49:13 [ 1] [ 4] [0800] +17:49:13 [ 7] [ 10] [0321010100] +17:49:13 [ 11] [ 6] [180100] +17:49:13 [ 37] [ 12] [57918180100] +17:49:13 [ 70] [ 3] [301] +17:49:13 ============================================================================ +17:49:13 + + +waiting on router queue for slot.... +17:49:13 Sending to : +17:49:13 ============================================================================ +17:49:13 ============================================================================ +17:49:13 Slot Id : <51> +17:49:13 Transaction Type : RESPONSE +17:49:13 Received From : +17:49:13 ============================================================================ +17:49:13 FNo. Len. Field Value +17:49:13 ============================================================================ +17:49:13 [ 1] [ 4] [0810] +17:49:13 [ 7] [ 10] [0321010100] +17:49:13 [ 11] [ 6] [180100] +17:49:13 [ 37] [ 12] [579181801000] +17:49:13 [ 39] [ 2] [00] +17:49:13 [ 70] [ 3] [810] +17:49:13 ============================================================================ +17:49:13 Calculate Source COMM Id = 6 +17:49:13 ============================================================================ +17:49:13 + + +waiting on router queue for slot.... +17:49:18 ============================================================================ +17:49:18 Slot Id : <64> +17:49:18 Transaction Type : REQUEST +17:49:18 Received From : +17:49:18 ============================================================================ +17:49:18 FNo. Len. Field Value +17:49:18 ============================================================================ +17:49:18 [ 1] [ 4] [0800] +17:49:18 [ 7] [ 10] [0320104825] +17:49:18 [ 11] [ 6] [157551] +17:49:18 [ 70] [ 3] [301] +17:49:18 ============================================================================ +17:49:18 + + +waiting on router queue for slot.... +17:49:18 Sending to : +17:49:18 ============================================================================ +17:49:18 ============================================================================ +17:49:18 Slot Id : <64> +17:49:18 Transaction Type : RESPONSE +17:49:18 Received From : +17:49:18 ============================================================================ +17:49:18 FNo. Len. Field Value +17:49:18 ============================================================================ +17:49:18 [ 1] [ 4] [0810] +17:49:18 [ 7] [ 10] [0320104825] +17:49:18 [ 11] [ 6] [157551] +17:49:18 [ 39] [ 2] [00] +17:49:18 [ 70] [ 3] [301] +17:49:18 ============================================================================ +17:49:18 Calculate Source COMM Id = 2 +17:49:18 ============================================================================ +17:49:18 + + +waiting on router queue for slot.... +17:49:23 ============================================================================ +17:49:23 Slot Id : <99> +17:49:23 Transaction Type : REQUEST +17:49:23 Received From : +17:49:23 ============================================================================ +17:49:23 FNo. Len. Field Value +17:49:23 ============================================================================ +17:49:23 [ 1] [ 4] [0200] +17:49:23 [ 2] [ 16] [6688990601443003] +17:49:23 [ 3] [ 6] [010000] +17:49:23 [ 4] [ 12] [000005000000] +17:49:23 [ 7] [ 10] [0320174918] +17:49:23 [ 11] [ 6] [820547] +17:49:23 [ 12] [ 6] [174918] +17:49:23 [ 13] [ 4] [0320] +17:49:23 [ 15] [ 4] [0320] +17:49:23 [ 18] [ 4] [6011] +17:49:23 [ 22] [ 3] [900] +17:49:23 [ 25] [ 2] [02] +17:49:23 [ 28] [ 9] [D00002000] +17:49:23 [ 32] [ 6] [621354] +17:49:23 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:49:23 [ 37] [ 12] [507904154132] +17:49:23 [ 41] [ 8] [20001000] +17:49:23 [ 42] [ 15] [NATIVE ] +17:49:23 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:49:23 [ 49] [ 3] [418] +17:49:23 [ 52] [ 16] [A20525E61AA50CDA] +17:49:23 ============================================================================ +17:49:23 + + +waiting on router queue for slot.... +17:49:23 Sending to : +17:49:23 ============================================================================ +17:49:23 Sending to : +17:49:23 ============================================================================ +17:49:24 ============================================================================ +17:49:24 Slot Id : <99> +17:49:24 Transaction Type : REQUEST +17:49:24 Received From : +17:49:24 ============================================================================ +17:49:24 FNo. Len. Field Value +17:49:24 ============================================================================ +17:49:24 [ 1] [ 4] [0200] +17:49:24 [ 2] [ 16] [6688990601443003] +17:49:24 [ 3] [ 6] [010000] +17:49:24 [ 4] [ 12] [000005000000] +17:49:24 [ 7] [ 10] [0320174918] +17:49:24 [ 11] [ 6] [820547] +17:49:24 [ 12] [ 6] [174918] +17:49:24 [ 13] [ 4] [0320] +17:49:24 [ 15] [ 4] [0320] +17:49:24 [ 18] [ 4] [6011] +17:49:24 [ 22] [ 3] [900] +17:49:24 [ 25] [ 2] [02] +17:49:24 [ 28] [ 9] [D00002000] +17:49:24 [ 32] [ 6] [621354] +17:49:24 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:49:24 [ 37] [ 12] [507904154132] +17:49:24 [ 41] [ 8] [20001000] +17:49:24 [ 42] [ 15] [NATIVE ] +17:49:24 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:49:24 [ 49] [ 3] [418] +17:49:24 [ 52] [ 16] [A20525E61AA50CDA] +17:49:24 ============================================================================ +17:49:24 + + +waiting on router queue for slot.... +17:49:24 Sending to : +17:49:24 ============================================================================ +17:49:24 ============================================================================ +17:49:24 Slot Id : <99> +17:49:24 Transaction Type : REQUEST +17:49:24 Received From : +17:49:24 ============================================================================ +17:49:24 FNo. Len. Field Value +17:49:24 ============================================================================ +17:49:24 [ 1] [ 4] [0200] +17:49:24 [ 2] [ 16] [6688990601443003] +17:49:24 [ 3] [ 6] [010000] +17:49:24 [ 4] [ 12] [000005000000] +17:49:24 [ 7] [ 10] [0320174918] +17:49:24 [ 11] [ 6] [820547] +17:49:24 [ 12] [ 6] [174918] +17:49:24 [ 13] [ 4] [0320] +17:49:24 [ 15] [ 4] [0320] +17:49:24 [ 18] [ 4] [6011] +17:49:24 [ 22] [ 3] [900] +17:49:24 [ 25] [ 2] [02] +17:49:24 [ 28] [ 9] [D00002000] +17:49:24 [ 32] [ 6] [621354] +17:49:24 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:49:24 [ 37] [ 12] [507904154132] +17:49:24 [ 41] [ 8] [20001000] +17:49:24 [ 42] [ 15] [NATIVE ] +17:49:24 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:49:24 [ 49] [ 3] [418] +17:49:24 [ 52] [ 16] [F8DDBA667328DD48] +17:49:24 ============================================================================ +17:49:24 + + +waiting on router queue for slot.... +17:49:24 Sending to : <4> +17:49:24 ============================================================================ +17:49:25 ============================================================================ +17:49:25 Slot Id : <99> +17:49:25 Transaction Type : RESPONSE +17:49:25 Received From : +17:49:25 ============================================================================ +17:49:25 FNo. Len. Field Value +17:49:25 ============================================================================ +17:49:25 [ 1] [ 4] [0210] +17:49:25 [ 2] [ 16] [6688990601443003] +17:49:25 [ 3] [ 6] [010000] +17:49:25 [ 4] [ 12] [000005000000] +17:49:25 [ 11] [ 6] [820547] +17:49:25 [ 12] [ 6] [174918] +17:49:25 [ 15] [ 4] [0320] +17:49:25 [ 18] [ 4] [6011] +17:49:25 [ 32] [ 6] [621354] +17:49:25 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:49:25 [ 37] [ 12] [507904154132] +17:49:25 [ 38] [ 6] [061008] +17:49:25 [ 39] [ 2] [00] +17:49:25 [ 41] [ 8] [20001000] +17:49:25 [ 49] [ 3] [418] +17:49:25 [ 54] [ 20] [0002418C000025821032] +17:49:25 ============================================================================ +17:49:25 Sending to : +17:49:25 ============================================================================ +17:49:25 + + +waiting on router queue for slot.... +17:49:27 ============================================================================ +17:49:27 Slot Id : <99> +17:49:27 Transaction Type : RESPONSE +17:49:27 Received From : +17:49:27 ============================================================================ +17:49:27 FNo. Len. Field Value +17:49:27 ============================================================================ +17:49:27 [ 1] [ 4] [0210] +17:49:27 [ 2] [ 16] [6688990601443003] +17:49:27 [ 3] [ 6] [010000] +17:49:27 [ 4] [ 12] [000005000000] +17:49:27 [ 11] [ 6] [820547] +17:49:27 [ 12] [ 6] [174918] +17:49:27 [ 15] [ 4] [0320] +17:49:27 [ 18] [ 4] [6011] +17:49:27 [ 32] [ 6] [621354] +17:49:27 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:49:27 [ 37] [ 12] [507904154132] +17:49:27 [ 38] [ 6] [061008] +17:49:27 [ 39] [ 2] [00] +17:49:27 [ 41] [ 8] [20001000] +17:49:27 [ 49] [ 3] [418] +17:49:27 [ 54] [ 20] [0002418C000025821032] +17:49:27 ============================================================================ +17:49:27 Calculate Source COMM Id = 0 +17:49:27 ============================================================================ +17:49:27 + + +waiting on router queue for slot.... +17:49:27 ============================================================================ +17:49:27 Slot Id : <91> +17:49:27 Transaction Type : REQUEST +17:49:27 Received From : +17:49:27 ============================================================================ +17:49:27 FNo. Len. Field Value +17:49:27 ============================================================================ +17:49:27 [ 1] [ 4] [0200] +17:49:27 [ 2] [ 16] [6688990106140005] +17:49:27 [ 3] [ 6] [012000] +17:49:27 [ 4] [ 12] [000005000000] +17:49:27 [ 7] [ 10] [0320104832] +17:49:27 [ 11] [ 6] [270994] +17:49:27 [ 12] [ 6] [174832] +17:49:27 [ 13] [ 4] [0320] +17:49:27 [ 14] [ 4] [4312] +17:49:27 [ 15] [ 4] [0320] +17:49:27 [ 18] [ 4] [6011] +17:49:27 [ 19] [ 3] [418] +17:49:27 [ 22] [ 3] [021] +17:49:27 [ 25] [ 2] [01] +17:49:27 [ 28] [ 9] [D00002000] +17:49:27 [ 32] [ 6] [180893] +17:49:27 [ 35] [ 37] [6688990106140005=43121231000521700000] +17:49:27 [ 37] [ 12] [507910270994] +17:49:27 [ 41] [ 8] [0321LNTV] +17:49:27 [ 42] [ 15] [999999 ] +17:49:27 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +17:49:27 [ 49] [ 3] [418] +17:49:27 [ 52] [ 16] [4039A073D3DEEBC7] +17:49:27 ============================================================================ +17:49:27 + + +waiting on router queue for slot.... +17:49:27 Sending to : +17:49:27 ============================================================================ +17:49:27 Sending to : +17:49:27 ============================================================================ +17:49:27 ============================================================================ +17:49:27 Slot Id : <91> +17:49:27 Transaction Type : REQUEST +17:49:27 Received From : +17:49:27 ============================================================================ +17:49:27 FNo. Len. Field Value +17:49:27 ============================================================================ +17:49:27 [ 1] [ 4] [0200] +17:49:27 [ 2] [ 16] [6688990106140005] +17:49:27 [ 3] [ 6] [012000] +17:49:27 [ 4] [ 12] [000005000000] +17:49:27 [ 7] [ 10] [0320104832] +17:49:27 [ 11] [ 6] [270994] +17:49:27 [ 12] [ 6] [174832] +17:49:27 [ 13] [ 4] [0320] +17:49:27 [ 14] [ 4] [4312] +17:49:27 [ 15] [ 4] [0320] +17:49:27 [ 18] [ 4] [6011] +17:49:27 [ 19] [ 3] [418] +17:49:27 [ 22] [ 3] [021] +17:49:27 [ 25] [ 2] [01] +17:49:27 [ 28] [ 9] [D00002000] +17:49:27 [ 32] [ 6] [180893] +17:49:27 [ 35] [ 37] [6688990106140005=43121231000521700000] +17:49:27 [ 37] [ 12] [507910270994] +17:49:27 [ 41] [ 8] [0321LNTV] +17:49:27 [ 42] [ 15] [999999 ] +17:49:27 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +17:49:27 [ 49] [ 3] [418] +17:49:27 [ 52] [ 16] [4039A073D3DEEBC7] +17:49:27 ============================================================================ +17:49:27 + + +waiting on router queue for slot.... +17:49:27 Sending to : +17:49:27 ============================================================================ +17:49:27 ============================================================================ +17:49:27 Slot Id : <91> +17:49:27 Transaction Type : REQUEST +17:49:27 Received From : +17:49:27 ============================================================================ +17:49:27 FNo. Len. Field Value +17:49:27 ============================================================================ +17:49:27 [ 1] [ 4] [0200] +17:49:27 [ 2] [ 16] [6688990106140005] +17:49:27 [ 3] [ 6] [012000] +17:49:27 [ 4] [ 12] [000005000000] +17:49:27 [ 7] [ 10] [0320104832] +17:49:27 [ 11] [ 6] [270994] +17:49:27 [ 12] [ 6] [174832] +17:49:27 [ 13] [ 4] [0320] +17:49:27 [ 14] [ 4] [4312] +17:49:27 [ 15] [ 4] [0320] +17:49:27 [ 18] [ 4] [6011] +17:49:27 [ 19] [ 3] [418] +17:49:27 [ 22] [ 3] [021] +17:49:27 [ 25] [ 2] [01] +17:49:27 [ 28] [ 9] [D00002000] +17:49:27 [ 32] [ 6] [180893] +17:49:27 [ 35] [ 37] [6688990106140005=43121231000521700000] +17:49:27 [ 37] [ 12] [507910270994] +17:49:27 [ 41] [ 8] [0321LNTV] +17:49:27 [ 42] [ 15] [999999 ] +17:49:27 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +17:49:27 [ 49] [ 3] [418] +17:49:27 [ 52] [ 16] [E2DCF779F1F9FF0D] +17:49:27 ============================================================================ +17:49:27 + + +waiting on router queue for slot.... +17:49:27 Sending to : <0> +17:49:27 ============================================================================ +17:49:28 ============================================================================ +17:49:28 Slot Id : <91> +17:49:28 Transaction Type : RESPONSE +17:49:28 Received From : +17:49:28 ============================================================================ +17:49:28 FNo. Len. Field Value +17:49:28 ============================================================================ +17:49:28 [ 1] [ 4] [0210] +17:49:28 [ 2] [ 16] [6688990106140005] +17:49:28 [ 3] [ 6] [012000] +17:49:28 [ 4] [ 12] [000005000000] +17:49:28 [ 7] [ 10] [0320104832] +17:49:28 [ 11] [ 6] [270994] +17:49:28 [ 12] [ 6] [174832] +17:49:28 [ 13] [ 4] [0320] +17:49:28 [ 15] [ 4] [0320] +17:49:28 [ 18] [ 4] [6011] +17:49:28 [ 19] [ 3] [418] +17:49:28 [ 22] [ 3] [021] +17:49:28 [ 32] [ 6] [180893] +17:49:28 [ 35] [ 37] [6688990106140005=43121231000521700000] +17:49:28 [ 37] [ 12] [507910270994] +17:49:28 [ 39] [ 2] [14] +17:49:28 [ 41] [ 8] [0321LNTV] +17:49:28 [ 49] [ 3] [418] +17:49:28 ============================================================================ +17:49:28 Sending to : +17:49:28 ============================================================================ +17:49:28 + + +waiting on router queue for slot.... +17:49:29 ============================================================================ +17:49:29 Slot Id : <100> +17:49:29 Transaction Type : REQUEST +17:49:29 Received From : +17:49:29 ============================================================================ +17:49:29 FNo. Len. Field Value +17:49:29 ============================================================================ +17:49:29 [ 1] [ 4] [0800] +17:49:29 [ 7] [ 10] [0320104836] +17:49:29 [ 11] [ 6] [157552] +17:49:29 [ 70] [ 3] [301] +17:49:29 ============================================================================ +17:49:29 + + +waiting on router queue for slot.... +17:49:29 Sending to : +17:49:29 ============================================================================ +17:49:29 ============================================================================ +17:49:29 Slot Id : <100> +17:49:29 Transaction Type : RESPONSE +17:49:29 Received From : +17:49:29 ============================================================================ +17:49:29 FNo. Len. Field Value +17:49:29 ============================================================================ +17:49:29 [ 1] [ 4] [0810] +17:49:29 [ 7] [ 10] [0320104836] +17:49:29 [ 11] [ 6] [157552] +17:49:29 [ 39] [ 2] [00] +17:49:29 [ 70] [ 3] [301] +17:49:29 ============================================================================ +17:49:29 Calculate Source COMM Id = 2 +17:49:29 ============================================================================ +17:49:29 + + +waiting on router queue for slot.... +17:49:30 ============================================================================ +17:49:30 Slot Id : <91> +17:49:30 Transaction Type : RESPONSE +17:49:30 Received From : +17:49:30 ============================================================================ +17:49:30 FNo. Len. Field Value +17:49:30 ============================================================================ +17:49:30 [ 1] [ 4] [0210] +17:49:30 [ 2] [ 16] [6688990106140005] +17:49:30 [ 3] [ 6] [012000] +17:49:30 [ 4] [ 12] [000005000000] +17:49:30 [ 7] [ 10] [0320104832] +17:49:30 [ 11] [ 6] [270994] +17:49:30 [ 12] [ 6] [174832] +17:49:30 [ 13] [ 4] [0320] +17:49:30 [ 15] [ 4] [0320] +17:49:30 [ 18] [ 4] [6011] +17:49:30 [ 19] [ 3] [418] +17:49:30 [ 22] [ 3] [021] +17:49:30 [ 32] [ 6] [180893] +17:49:30 [ 35] [ 37] [6688990106140005=43121231000521700000] +17:49:30 [ 37] [ 12] [507910270994] +17:49:30 [ 39] [ 2] [14] +17:49:30 [ 41] [ 8] [0321LNTV] +17:49:30 [ 49] [ 3] [418] +17:49:30 ============================================================================ +17:49:30 Calculate Source COMM Id = 2 +17:49:30 ============================================================================ +17:49:30 + + +waiting on router queue for slot.... +17:49:36 ============================================================================ +17:49:36 Slot Id : <72> +17:49:36 Transaction Type : REQUEST +17:49:36 Received From : +17:49:36 ============================================================================ +17:49:36 FNo. Len. Field Value +17:49:36 ============================================================================ +17:49:36 [ 1] [ 4] [0200] +17:49:36 [ 2] [ 16] [6688990108467208] +17:49:36 [ 3] [ 6] [010000] +17:49:36 [ 4] [ 12] [000030000000] +17:49:36 [ 7] [ 10] [0320174931] +17:49:36 [ 11] [ 6] [820598] +17:49:36 [ 12] [ 6] [174931] +17:49:36 [ 13] [ 4] [0320] +17:49:36 [ 15] [ 4] [0320] +17:49:36 [ 18] [ 4] [6011] +17:49:36 [ 22] [ 3] [900] +17:49:36 [ 25] [ 2] [02] +17:49:36 [ 28] [ 9] [D00002000] +17:49:36 [ 32] [ 6] [621354] +17:49:36 [ 35] [ 37] [6688990108467208=44061231720880300000] +17:49:36 [ 37] [ 12] [507902474787] +17:49:36 [ 41] [ 8] [05003000] +17:49:36 [ 42] [ 15] [NATIVE ] +17:49:36 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +17:49:36 [ 49] [ 3] [418] +17:49:36 [ 52] [ 16] [110AA5BCEF10776C] +17:49:36 ============================================================================ +17:49:36 + + +waiting on router queue for slot.... +17:49:36 Sending to : +17:49:36 ============================================================================ +17:49:36 Sending to : +17:49:36 ============================================================================ +17:49:37 ============================================================================ +17:49:37 Slot Id : <72> +17:49:37 Transaction Type : REQUEST +17:49:37 Received From : +17:49:37 ============================================================================ +17:49:37 FNo. Len. Field Value +17:49:37 ============================================================================ +17:49:37 [ 1] [ 4] [0200] +17:49:37 [ 2] [ 16] [6688990108467208] +17:49:37 [ 3] [ 6] [010000] +17:49:37 [ 4] [ 12] [000030000000] +17:49:37 [ 7] [ 10] [0320174931] +17:49:37 [ 11] [ 6] [820598] +17:49:37 [ 12] [ 6] [174931] +17:49:37 [ 13] [ 4] [0320] +17:49:37 [ 15] [ 4] [0320] +17:49:37 [ 18] [ 4] [6011] +17:49:37 [ 22] [ 3] [900] +17:49:37 [ 25] [ 2] [02] +17:49:37 [ 28] [ 9] [D00002000] +17:49:37 [ 32] [ 6] [621354] +17:49:37 [ 35] [ 37] [6688990108467208=44061231720880300000] +17:49:37 [ 37] [ 12] [507902474787] +17:49:37 [ 41] [ 8] [05003000] +17:49:37 [ 42] [ 15] [NATIVE ] +17:49:37 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +17:49:37 [ 49] [ 3] [418] +17:49:37 [ 52] [ 16] [110AA5BCEF10776C] +17:49:37 ============================================================================ +17:49:37 + + +waiting on router queue for slot.... +17:49:37 Sending to : +17:49:37 ============================================================================ +17:49:37 ============================================================================ +17:49:37 Slot Id : <72> +17:49:37 Transaction Type : REQUEST +17:49:37 Received From : +17:49:37 ============================================================================ +17:49:37 FNo. Len. Field Value +17:49:37 ============================================================================ +17:49:37 [ 1] [ 4] [0200] +17:49:37 [ 2] [ 16] [6688990108467208] +17:49:37 [ 3] [ 6] [010000] +17:49:37 [ 4] [ 12] [000030000000] +17:49:37 [ 7] [ 10] [0320174931] +17:49:37 [ 11] [ 6] [820598] +17:49:37 [ 12] [ 6] [174931] +17:49:37 [ 13] [ 4] [0320] +17:49:37 [ 15] [ 4] [0320] +17:49:37 [ 18] [ 4] [6011] +17:49:37 [ 22] [ 3] [900] +17:49:37 [ 25] [ 2] [02] +17:49:37 [ 28] [ 9] [D00002000] +17:49:37 [ 32] [ 6] [621354] +17:49:37 [ 35] [ 37] [6688990108467208=44061231720880300000] +17:49:37 [ 37] [ 12] [507902474787] +17:49:37 [ 41] [ 8] [05003000] +17:49:37 [ 42] [ 15] [NATIVE ] +17:49:37 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +17:49:37 [ 49] [ 3] [418] +17:49:37 [ 52] [ 16] [8EE60E15A6A03099] +17:49:37 ============================================================================ +17:49:37 + + +waiting on router queue for slot.... +17:49:37 Sending to : <4> +17:49:37 ============================================================================ +17:49:38 ============================================================================ +17:49:38 Slot Id : <72> +17:49:38 Transaction Type : RESPONSE +17:49:38 Received From : +17:49:38 ============================================================================ +17:49:38 FNo. Len. Field Value +17:49:38 ============================================================================ +17:49:38 [ 1] [ 4] [0210] +17:49:38 [ 2] [ 16] [6688990108467208] +17:49:38 [ 3] [ 6] [010000] +17:49:38 [ 4] [ 12] [000030000000] +17:49:38 [ 11] [ 6] [820598] +17:49:38 [ 12] [ 6] [174931] +17:49:38 [ 15] [ 4] [0320] +17:49:38 [ 18] [ 4] [6011] +17:49:38 [ 32] [ 6] [621354] +17:49:38 [ 35] [ 37] [6688990108467208=44061231720880300000] +17:49:38 [ 37] [ 12] [507902474787] +17:49:38 [ 38] [ 6] [014693] +17:49:38 [ 39] [ 2] [00] +17:49:38 [ 41] [ 8] [05003000] +17:49:38 [ 49] [ 3] [418] +17:49:38 [ 54] [ 20] [0002418C000002520662] +17:49:38 ============================================================================ +17:49:38 Sending to : +17:49:38 ============================================================================ +17:49:38 + + +waiting on router queue for slot.... +17:49:39 ============================================================================ +17:49:39 Slot Id : <72> +17:49:39 Transaction Type : RESPONSE +17:49:39 Received From : +17:49:39 ============================================================================ +17:49:39 FNo. Len. Field Value +17:49:39 ============================================================================ +17:49:39 [ 1] [ 4] [0210] +17:49:39 [ 2] [ 16] [6688990108467208] +17:49:39 [ 3] [ 6] [010000] +17:49:39 [ 4] [ 12] [000030000000] +17:49:39 [ 11] [ 6] [820598] +17:49:39 [ 12] [ 6] [174931] +17:49:39 [ 15] [ 4] [0320] +17:49:39 [ 18] [ 4] [6011] +17:49:39 [ 32] [ 6] [621354] +17:49:39 [ 35] [ 37] [6688990108467208=44061231720880300000] +17:49:39 [ 37] [ 12] [507902474787] +17:49:39 [ 38] [ 6] [014693] +17:49:39 [ 39] [ 2] [00] +17:49:39 [ 41] [ 8] [05003000] +17:49:39 [ 49] [ 3] [418] +17:49:39 [ 54] [ 20] [0002418C000002520662] +17:49:39 ============================================================================ +17:49:39 Calculate Source COMM Id = 0 +17:49:39 ============================================================================ +17:49:39 + + +waiting on router queue for slot.... +17:49:44 ============================================================================ +17:49:44 Slot Id : <65> +17:49:44 Transaction Type : REQUEST +17:49:44 Received From : +17:49:44 ============================================================================ +17:49:44 FNo. Len. Field Value +17:49:44 ============================================================================ +17:49:44 [ 1] [ 4] [0800] +17:49:44 [ 7] [ 10] [0320104851] +17:49:44 [ 11] [ 6] [157553] +17:49:44 [ 70] [ 3] [301] +17:49:44 ============================================================================ +17:49:44 + + +waiting on router queue for slot.... +17:49:44 Sending to : +17:49:44 ============================================================================ +17:49:44 ============================================================================ +17:49:44 Slot Id : <65> +17:49:44 Transaction Type : RESPONSE +17:49:44 Received From : +17:49:44 ============================================================================ +17:49:44 FNo. Len. Field Value +17:49:44 ============================================================================ +17:49:44 [ 1] [ 4] [0810] +17:49:44 [ 7] [ 10] [0320104851] +17:49:44 [ 11] [ 6] [157553] +17:49:44 [ 39] [ 2] [00] +17:49:44 [ 70] [ 3] [301] +17:49:44 ============================================================================ +17:49:44 Calculate Source COMM Id = 2 +17:49:44 ============================================================================ +17:49:44 + + +waiting on router queue for slot.... +17:49:47 ============================================================================ +17:49:47 Slot Id : <76> +17:49:47 Transaction Type : REQUEST +17:49:47 Received From : +17:49:47 ============================================================================ +17:49:47 FNo. Len. Field Value +17:49:47 ============================================================================ +17:49:47 [ 1] [ 4] [0200] +17:49:47 [ 2] [ 16] [6688990040048900] +17:49:47 [ 3] [ 6] [012000] +17:49:47 [ 4] [ 12] [000020000000] +17:49:47 [ 7] [ 10] [0320174941] +17:49:47 [ 11] [ 6] [820634] +17:49:47 [ 12] [ 6] [174941] +17:49:47 [ 13] [ 4] [0320] +17:49:47 [ 15] [ 4] [0320] +17:49:47 [ 18] [ 4] [6011] +17:49:47 [ 22] [ 3] [900] +17:49:47 [ 25] [ 2] [02] +17:49:47 [ 28] [ 9] [D00002000] +17:49:47 [ 32] [ 6] [621354] +17:49:47 [ 35] [ 37] [6688990040048900=97121261302338800000] +17:49:47 [ 37] [ 12] [507904645196] +17:49:47 [ 41] [ 8] [17000900] +17:49:47 [ 42] [ 15] [NATIVE ] +17:49:47 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +17:49:47 [ 49] [ 3] [418] +17:49:47 [ 52] [ 16] [F38447E9508CDF1F] +17:49:47 ============================================================================ +17:49:47 + + +waiting on router queue for slot.... +17:49:47 Sending to : +17:49:47 ============================================================================ +17:49:47 Sending to : +17:49:47 ============================================================================ +17:49:47 ============================================================================ +17:49:47 Slot Id : <76> +17:49:47 Transaction Type : REQUEST +17:49:47 Received From : +17:49:47 ============================================================================ +17:49:47 FNo. Len. Field Value +17:49:47 ============================================================================ +17:49:47 [ 1] [ 4] [0200] +17:49:47 [ 2] [ 16] [6688990040048900] +17:49:47 [ 3] [ 6] [012000] +17:49:47 [ 4] [ 12] [000020000000] +17:49:47 [ 7] [ 10] [0320174941] +17:49:47 [ 11] [ 6] [820634] +17:49:47 [ 12] [ 6] [174941] +17:49:47 [ 13] [ 4] [0320] +17:49:47 [ 15] [ 4] [0320] +17:49:47 [ 18] [ 4] [6011] +17:49:47 [ 22] [ 3] [900] +17:49:47 [ 25] [ 2] [02] +17:49:47 [ 28] [ 9] [D00002000] +17:49:47 [ 32] [ 6] [621354] +17:49:47 [ 35] [ 37] [6688990040048900=97121261302338800000] +17:49:47 [ 37] [ 12] [507904645196] +17:49:47 [ 41] [ 8] [17000900] +17:49:47 [ 42] [ 15] [NATIVE ] +17:49:47 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +17:49:47 [ 49] [ 3] [418] +17:49:47 [ 52] [ 16] [F38447E9508CDF1F] +17:49:47 ============================================================================ +17:49:47 + + +waiting on router queue for slot.... +17:49:47 Sending to : +17:49:47 ============================================================================ +17:49:47 ============================================================================ +17:49:47 Slot Id : <76> +17:49:47 Transaction Type : REQUEST +17:49:47 Received From : +17:49:47 ============================================================================ +17:49:47 FNo. Len. Field Value +17:49:47 ============================================================================ +17:49:47 [ 1] [ 4] [0200] +17:49:47 [ 2] [ 16] [6688990040048900] +17:49:47 [ 3] [ 6] [012000] +17:49:47 [ 4] [ 12] [000020000000] +17:49:47 [ 7] [ 10] [0320174941] +17:49:47 [ 11] [ 6] [820634] +17:49:47 [ 12] [ 6] [174941] +17:49:47 [ 13] [ 4] [0320] +17:49:47 [ 15] [ 4] [0320] +17:49:47 [ 18] [ 4] [6011] +17:49:47 [ 22] [ 3] [900] +17:49:47 [ 25] [ 2] [02] +17:49:47 [ 28] [ 9] [D00002000] +17:49:47 [ 32] [ 6] [621354] +17:49:47 [ 35] [ 37] [6688990040048900=97121261302338800000] +17:49:47 [ 37] [ 12] [507904645196] +17:49:47 [ 41] [ 8] [17000900] +17:49:47 [ 42] [ 15] [NATIVE ] +17:49:47 [ 43] [ 40] [Sobbao Service Unit Sobbao LAO] +17:49:47 [ 49] [ 3] [418] +17:49:47 [ 52] [ 16] [86C9607E21EFD48A] +17:49:47 ============================================================================ +17:49:47 + + +waiting on router queue for slot.... +17:49:47 Sending to : <4> +17:49:47 ============================================================================ +17:49:47 ============================================================================ +17:49:47 Slot Id : <90> +17:49:47 Transaction Type : REQUEST +17:49:47 Received From : +17:49:47 ============================================================================ +17:49:47 FNo. Len. Field Value +17:49:47 ============================================================================ +17:49:47 [ 1] [ 4] [0200] +17:49:47 [ 2] [ 16] [6688990040136457] +17:49:47 [ 3] [ 6] [301000] +17:49:47 [ 4] [ 12] [000000000000] +17:49:47 [ 7] [ 10] [0320174942] +17:49:47 [ 11] [ 6] [820637] +17:49:47 [ 12] [ 6] [174942] +17:49:47 [ 13] [ 4] [0320] +17:49:47 [ 15] [ 4] [0320] +17:49:47 [ 18] [ 4] [6011] +17:49:47 [ 22] [ 3] [900] +17:49:47 [ 25] [ 2] [02] +17:49:47 [ 28] [ 9] [D00000000] +17:49:47 [ 32] [ 6] [621354] +17:49:47 [ 35] [ 37] [6688990040136457=98041261263367900000] +17:49:47 [ 37] [ 12] [507904731653] +17:49:47 [ 41] [ 8] [07000900] +17:49:47 [ 42] [ 15] [NATIVE ] +17:49:47 [ 43] [ 40] [LNT Branch01 Namtar LAO] +17:49:47 [ 49] [ 3] [418] +17:49:47 [ 52] [ 16] [14926C5B338A8C0A] +17:49:47 ============================================================================ +17:49:47 + + +waiting on router queue for slot.... +17:49:47 Sending to : +17:49:47 ============================================================================ +17:49:47 Sending to : +17:49:47 ============================================================================ +17:49:48 ============================================================================ +17:49:48 Slot Id : <90> +17:49:48 Transaction Type : REQUEST +17:49:48 Received From : +17:49:48 ============================================================================ +17:49:48 FNo. Len. Field Value +17:49:48 ============================================================================ +17:49:48 [ 1] [ 4] [0200] +17:49:48 [ 2] [ 16] [6688990040136457] +17:49:48 [ 3] [ 6] [301000] +17:49:48 [ 4] [ 12] [000000000000] +17:49:48 [ 7] [ 10] [0320174942] +17:49:48 [ 11] [ 6] [820637] +17:49:48 [ 12] [ 6] [174942] +17:49:48 [ 13] [ 4] [0320] +17:49:48 [ 15] [ 4] [0320] +17:49:48 [ 18] [ 4] [6011] +17:49:48 [ 22] [ 3] [900] +17:49:48 [ 25] [ 2] [02] +17:49:48 [ 28] [ 9] [D00000000] +17:49:48 [ 32] [ 6] [621354] +17:49:48 [ 35] [ 37] [6688990040136457=98041261263367900000] +17:49:48 [ 37] [ 12] [507904731653] +17:49:48 [ 41] [ 8] [07000900] +17:49:48 [ 42] [ 15] [NATIVE ] +17:49:48 [ 43] [ 40] [LNT Branch01 Namtar LAO] +17:49:48 [ 49] [ 3] [418] +17:49:48 [ 52] [ 16] [14926C5B338A8C0A] +17:49:48 ============================================================================ +17:49:48 + + +waiting on router queue for slot.... +17:49:48 Sending to : +17:49:48 ============================================================================ +17:49:48 ============================================================================ +17:49:48 Slot Id : <90> +17:49:48 Transaction Type : REQUEST +17:49:48 Received From : +17:49:48 ============================================================================ +17:49:48 FNo. Len. Field Value +17:49:48 ============================================================================ +17:49:48 [ 1] [ 4] [0200] +17:49:48 [ 2] [ 16] [6688990040136457] +17:49:48 [ 3] [ 6] [301000] +17:49:48 [ 4] [ 12] [000000000000] +17:49:48 [ 7] [ 10] [0320174942] +17:49:48 [ 11] [ 6] [820637] +17:49:48 [ 12] [ 6] [174942] +17:49:48 [ 13] [ 4] [0320] +17:49:48 [ 15] [ 4] [0320] +17:49:48 [ 18] [ 4] [6011] +17:49:48 [ 22] [ 3] [900] +17:49:48 [ 25] [ 2] [02] +17:49:48 [ 28] [ 9] [D00000000] +17:49:48 [ 32] [ 6] [621354] +17:49:48 [ 35] [ 37] [6688990040136457=98041261263367900000] +17:49:48 [ 37] [ 12] [507904731653] +17:49:48 [ 41] [ 8] [07000900] +17:49:48 [ 42] [ 15] [NATIVE ] +17:49:48 [ 43] [ 40] [LNT Branch01 Namtar LAO] +17:49:48 [ 49] [ 3] [418] +17:49:48 [ 52] [ 16] [0C3C2AFBF7001FBB] +17:49:48 ============================================================================ +17:49:48 + + +waiting on router queue for slot.... +17:49:48 Sending to : <4> +17:49:48 ============================================================================ +17:49:48 ============================================================================ +17:49:48 Slot Id : <76> +17:49:48 Transaction Type : RESPONSE +17:49:48 Received From : +17:49:48 ============================================================================ +17:49:48 FNo. Len. Field Value +17:49:48 ============================================================================ +17:49:48 [ 1] [ 4] [0210] +17:49:48 [ 2] [ 16] [6688990040048900] +17:49:48 [ 3] [ 6] [012000] +17:49:48 [ 4] [ 12] [000020000000] +17:49:48 [ 11] [ 6] [820634] +17:49:48 [ 12] [ 6] [174941] +17:49:48 [ 15] [ 4] [0320] +17:49:48 [ 18] [ 4] [6011] +17:49:48 [ 32] [ 6] [621354] +17:49:48 [ 35] [ 37] [6688990040048900=97121261302338800000] +17:49:48 [ 37] [ 12] [507904645196] +17:49:48 [ 38] [ 6] [085629] +17:49:48 [ 39] [ 2] [00] +17:49:48 [ 41] [ 8] [17000900] +17:49:48 [ 49] [ 3] [418] +17:49:48 [ 54] [ 20] [2002418C000296864638] +17:49:48 ============================================================================ +17:49:48 Sending to : +17:49:48 ============================================================================ +17:49:48 + + +waiting on router queue for slot.... +17:49:48 ============================================================================ +17:49:48 Slot Id : <90> +17:49:48 Transaction Type : RESPONSE +17:49:48 Received From : +17:49:48 ============================================================================ +17:49:48 FNo. Len. Field Value +17:49:48 ============================================================================ +17:49:48 [ 1] [ 4] [0210] +17:49:48 [ 2] [ 16] [6688990040136457] +17:49:48 [ 3] [ 6] [301000] +17:49:48 [ 4] [ 12] [000000000000] +17:49:48 [ 11] [ 6] [820637] +17:49:48 [ 12] [ 6] [174942] +17:49:48 [ 15] [ 4] [0320] +17:49:48 [ 18] [ 4] [6011] +17:49:48 [ 32] [ 6] [621354] +17:49:48 [ 35] [ 37] [6688990040136457=98041261263367900000] +17:49:48 [ 37] [ 12] [507904731653] +17:49:48 [ 38] [ 6] [712207] +17:49:48 [ 39] [ 2] [00] +17:49:48 [ 41] [ 8] [07000900] +17:49:48 [ 49] [ 3] [418] +17:49:48 [ 54] [ 20] [1002418C000187928500] +17:49:48 ============================================================================ +17:49:48 Sending to : +17:49:48 ============================================================================ +17:49:48 + + +waiting on router queue for slot.... +17:49:50 ============================================================================ +17:49:50 Slot Id : <76> +17:49:50 Transaction Type : RESPONSE +17:49:50 Received From : +17:49:50 ============================================================================ +17:49:50 FNo. Len. Field Value +17:49:50 ============================================================================ +17:49:50 [ 1] [ 4] [0210] +17:49:50 [ 2] [ 16] [6688990040048900] +17:49:50 [ 3] [ 6] [012000] +17:49:50 [ 4] [ 12] [000020000000] +17:49:50 [ 11] [ 6] [820634] +17:49:50 [ 12] [ 6] [174941] +17:49:50 [ 15] [ 4] [0320] +17:49:50 [ 18] [ 4] [6011] +17:49:50 [ 32] [ 6] [621354] +17:49:50 [ 35] [ 37] [6688990040048900=97121261302338800000] +17:49:50 [ 37] [ 12] [507904645196] +17:49:50 [ 38] [ 6] [085629] +17:49:50 [ 39] [ 2] [00] +17:49:50 [ 41] [ 8] [17000900] +17:49:50 [ 49] [ 3] [418] +17:49:50 [ 54] [ 20] [2002418C000296864638] +17:49:50 ============================================================================ +17:49:50 Calculate Source COMM Id = 0 +17:49:50 ============================================================================ +17:49:50 + + +waiting on router queue for slot.... +17:49:51 ============================================================================ +17:49:51 Slot Id : <90> +17:49:51 Transaction Type : RESPONSE +17:49:51 Received From : +17:49:51 ============================================================================ +17:49:51 FNo. Len. Field Value +17:49:51 ============================================================================ +17:49:51 [ 1] [ 4] [0210] +17:49:51 [ 2] [ 16] [6688990040136457] +17:49:51 [ 3] [ 6] [301000] +17:49:51 [ 4] [ 12] [000000000000] +17:49:51 [ 11] [ 6] [820637] +17:49:51 [ 12] [ 6] [174942] +17:49:51 [ 15] [ 4] [0320] +17:49:51 [ 18] [ 4] [6011] +17:49:51 [ 32] [ 6] [621354] +17:49:51 [ 35] [ 37] [6688990040136457=98041261263367900000] +17:49:51 [ 37] [ 12] [507904731653] +17:49:51 [ 38] [ 6] [712207] +17:49:51 [ 39] [ 2] [00] +17:49:51 [ 41] [ 8] [07000900] +17:49:51 [ 49] [ 3] [418] +17:49:51 [ 54] [ 20] [1002418C000187928500] +17:49:51 ============================================================================ +17:49:51 Calculate Source COMM Id = 0 +17:49:51 ============================================================================ +17:49:51 + + +waiting on router queue for slot.... +17:49:54 ============================================================================ +17:49:54 Slot Id : <106> +17:49:54 Transaction Type : REQUEST +17:49:54 Received From : +17:49:54 ============================================================================ +17:49:54 FNo. Len. Field Value +17:49:54 ============================================================================ +17:49:54 [ 1] [ 4] [0800] +17:49:54 [ 7] [ 10] [0320104901] +17:49:54 [ 11] [ 6] [157554] +17:49:54 [ 70] [ 3] [301] +17:49:54 ============================================================================ +17:49:54 + + +waiting on router queue for slot.... +17:49:54 Sending to : +17:49:54 ============================================================================ +17:49:54 ============================================================================ +17:49:54 Slot Id : <106> +17:49:54 Transaction Type : RESPONSE +17:49:54 Received From : +17:49:54 ============================================================================ +17:49:54 FNo. Len. Field Value +17:49:54 ============================================================================ +17:49:54 [ 1] [ 4] [0810] +17:49:54 [ 7] [ 10] [0320104901] +17:49:54 [ 11] [ 6] [157554] +17:49:54 [ 39] [ 2] [00] +17:49:54 [ 70] [ 3] [301] +17:49:54 ============================================================================ +17:49:54 Calculate Source COMM Id = 2 +17:49:54 ============================================================================ +17:49:54 + + +waiting on router queue for slot.... +17:49:55 ============================================================================ +17:49:55 Slot Id : <114> +17:49:55 Transaction Type : REQUEST +17:49:55 Received From : +17:49:55 ============================================================================ +17:49:55 FNo. Len. Field Value +17:49:55 ============================================================================ +17:49:55 [ 1] [ 4] [0800] +17:49:55 [ 7] [ 10] [0320105742] +17:49:55 [ 11] [ 6] [004037] +17:49:55 [ 37] [ 12] [57917004037] +17:49:55 [ 70] [ 3] [301] +17:49:55 ============================================================================ +17:49:55 + + +waiting on router queue for slot.... +17:49:55 Sending to : +17:49:55 ============================================================================ +17:49:55 ============================================================================ +17:49:55 Slot Id : <114> +17:49:55 Transaction Type : RESPONSE +17:49:55 Received From : +17:49:55 ============================================================================ +17:49:55 FNo. Len. Field Value +17:49:55 ============================================================================ +17:49:55 [ 1] [ 4] [0810] +17:49:55 [ 7] [ 10] [0320105742] +17:49:55 [ 11] [ 6] [004037] +17:49:55 [ 37] [ 12] [579170040370] +17:49:55 [ 39] [ 2] [00] +17:49:55 [ 70] [ 3] [810] +17:49:55 ============================================================================ +17:49:55 Calculate Source COMM Id = 1 +17:49:55 ============================================================================ +17:49:55 + + +waiting on router queue for slot.... +17:50:05 ============================================================================ +17:50:05 Slot Id : <83> +17:50:05 Transaction Type : REQUEST +17:50:05 Received From : +17:50:05 ============================================================================ +17:50:05 FNo. Len. Field Value +17:50:05 ============================================================================ +17:50:05 [ 1] [ 4] [0800] +17:50:05 [ 7] [ 10] [0320104911] +17:50:05 [ 11] [ 6] [157555] +17:50:05 [ 70] [ 3] [301] +17:50:05 ============================================================================ +17:50:05 + + +waiting on router queue for slot.... +17:50:05 Sending to : +17:50:05 ============================================================================ +17:50:05 ============================================================================ +17:50:05 Slot Id : <83> +17:50:05 Transaction Type : RESPONSE +17:50:05 Received From : +17:50:05 ============================================================================ +17:50:05 FNo. Len. Field Value +17:50:05 ============================================================================ +17:50:05 [ 1] [ 4] [0810] +17:50:05 [ 7] [ 10] [0320104911] +17:50:05 [ 11] [ 6] [157555] +17:50:05 [ 39] [ 2] [00] +17:50:05 [ 70] [ 3] [301] +17:50:05 ============================================================================ +17:50:05 Calculate Source COMM Id = 2 +17:50:05 ============================================================================ +17:50:05 + + +waiting on router queue for slot.... +17:50:06 ============================================================================ +17:50:06 Slot Id : <66> +17:50:06 Transaction Type : REQUEST +17:50:06 Received From : +17:50:06 ============================================================================ +17:50:06 FNo. Len. Field Value +17:50:06 ============================================================================ +17:50:06 [ 1] [ 4] [0200] +17:50:06 [ 2] [ 16] [6688990106140005] +17:50:06 [ 3] [ 6] [302000] +17:50:06 [ 7] [ 10] [0320104913] +17:50:06 [ 11] [ 6] [270995] +17:50:06 [ 12] [ 6] [174913] +17:50:06 [ 13] [ 4] [0320] +17:50:06 [ 14] [ 4] [4312] +17:50:06 [ 15] [ 4] [0320] +17:50:06 [ 18] [ 4] [6011] +17:50:06 [ 19] [ 3] [418] +17:50:06 [ 22] [ 3] [021] +17:50:06 [ 25] [ 2] [01] +17:50:06 [ 32] [ 6] [180893] +17:50:06 [ 35] [ 37] [6688990106140005=43121231000521700000] +17:50:06 [ 37] [ 12] [507910270995] +17:50:06 [ 41] [ 8] [0321LNTV] +17:50:06 [ 42] [ 15] [999999 ] +17:50:06 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +17:50:06 [ 49] [ 3] [418] +17:50:06 [ 52] [ 16] [4039A073D3DEEBC7] +17:50:06 ============================================================================ +17:50:06 + + +waiting on router queue for slot.... +17:50:06 Sending to : +17:50:06 ============================================================================ +17:50:06 Sending to : +17:50:06 ============================================================================ +17:50:06 ============================================================================ +17:50:06 Slot Id : <66> +17:50:06 Transaction Type : REQUEST +17:50:06 Received From : +17:50:06 ============================================================================ +17:50:06 FNo. Len. Field Value +17:50:06 ============================================================================ +17:50:06 [ 1] [ 4] [0200] +17:50:06 [ 2] [ 16] [6688990106140005] +17:50:06 [ 3] [ 6] [302000] +17:50:06 [ 7] [ 10] [0320104913] +17:50:06 [ 11] [ 6] [270995] +17:50:06 [ 12] [ 6] [174913] +17:50:06 [ 13] [ 4] [0320] +17:50:06 [ 14] [ 4] [4312] +17:50:06 [ 15] [ 4] [0320] +17:50:06 [ 18] [ 4] [6011] +17:50:06 [ 19] [ 3] [418] +17:50:06 [ 22] [ 3] [021] +17:50:06 [ 25] [ 2] [01] +17:50:06 [ 32] [ 6] [180893] +17:50:06 [ 35] [ 37] [6688990106140005=43121231000521700000] +17:50:06 [ 37] [ 12] [507910270995] +17:50:06 [ 41] [ 8] [0321LNTV] +17:50:06 [ 42] [ 15] [999999 ] +17:50:06 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +17:50:06 [ 49] [ 3] [418] +17:50:06 [ 52] [ 16] [4039A073D3DEEBC7] +17:50:06 ============================================================================ +17:50:06 + + +waiting on router queue for slot.... +17:50:06 Sending to : +17:50:06 ============================================================================ +17:50:06 ============================================================================ +17:50:06 Slot Id : <66> +17:50:06 Transaction Type : REQUEST +17:50:06 Received From : +17:50:06 ============================================================================ +17:50:06 FNo. Len. Field Value +17:50:06 ============================================================================ +17:50:06 [ 1] [ 4] [0200] +17:50:06 [ 2] [ 16] [6688990106140005] +17:50:06 [ 3] [ 6] [302000] +17:50:06 [ 7] [ 10] [0320104913] +17:50:06 [ 11] [ 6] [270995] +17:50:06 [ 12] [ 6] [174913] +17:50:06 [ 13] [ 4] [0320] +17:50:06 [ 14] [ 4] [4312] +17:50:06 [ 15] [ 4] [0320] +17:50:06 [ 18] [ 4] [6011] +17:50:06 [ 19] [ 3] [418] +17:50:06 [ 22] [ 3] [021] +17:50:06 [ 25] [ 2] [01] +17:50:06 [ 32] [ 6] [180893] +17:50:06 [ 35] [ 37] [6688990106140005=43121231000521700000] +17:50:06 [ 37] [ 12] [507910270995] +17:50:06 [ 41] [ 8] [0321LNTV] +17:50:06 [ 42] [ 15] [999999 ] +17:50:06 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +17:50:06 [ 49] [ 3] [418] +17:50:06 [ 52] [ 16] [E2DCF779F1F9FF0D] +17:50:06 ============================================================================ +17:50:06 + + +waiting on router queue for slot.... +17:50:06 Sending to : <0> +17:50:06 ============================================================================ +17:50:06 ============================================================================ +17:50:06 Slot Id : <66> +17:50:06 Transaction Type : RESPONSE +17:50:06 Received From : +17:50:06 ============================================================================ +17:50:06 FNo. Len. Field Value +17:50:06 ============================================================================ +17:50:06 [ 1] [ 4] [0210] +17:50:06 [ 2] [ 16] [6688990106140005] +17:50:06 [ 3] [ 6] [302000] +17:50:06 [ 4] [ 12] [000000000000] +17:50:06 [ 7] [ 10] [0320104913] +17:50:06 [ 11] [ 6] [270995] +17:50:06 [ 12] [ 6] [174913] +17:50:06 [ 13] [ 4] [0320] +17:50:06 [ 15] [ 4] [0320] +17:50:06 [ 18] [ 4] [6011] +17:50:06 [ 19] [ 3] [418] +17:50:06 [ 22] [ 3] [021] +17:50:06 [ 32] [ 6] [180893] +17:50:06 [ 35] [ 37] [6688990106140005=43121231000521700000] +17:50:06 [ 37] [ 12] [507910270995] +17:50:06 [ 39] [ 2] [14] +17:50:06 [ 41] [ 8] [0321LNTV] +17:50:06 [ 49] [ 3] [418] +17:50:06 ============================================================================ +17:50:06 Sending to : +17:50:06 ============================================================================ +17:50:06 + + +waiting on router queue for slot.... +17:50:08 ============================================================================ +17:50:08 Slot Id : <66> +17:50:08 Transaction Type : RESPONSE +17:50:08 Received From : +17:50:08 ============================================================================ +17:50:08 FNo. Len. Field Value +17:50:08 ============================================================================ +17:50:08 [ 1] [ 4] [0210] +17:50:08 [ 2] [ 16] [6688990106140005] +17:50:08 [ 3] [ 6] [302000] +17:50:08 [ 4] [ 12] [000000000000] +17:50:08 [ 7] [ 10] [0320104913] +17:50:08 [ 11] [ 6] [270995] +17:50:08 [ 12] [ 6] [174913] +17:50:08 [ 13] [ 4] [0320] +17:50:08 [ 15] [ 4] [0320] +17:50:08 [ 18] [ 4] [6011] +17:50:08 [ 19] [ 3] [418] +17:50:08 [ 22] [ 3] [021] +17:50:08 [ 32] [ 6] [180893] +17:50:08 [ 35] [ 37] [6688990106140005=43121231000521700000] +17:50:08 [ 37] [ 12] [507910270995] +17:50:08 [ 39] [ 2] [14] +17:50:08 [ 41] [ 8] [0321LNTV] +17:50:08 [ 49] [ 3] [418] +17:50:08 ============================================================================ +17:50:08 Calculate Source COMM Id = 2 +17:50:08 ============================================================================ +17:50:08 + + +waiting on router queue for slot.... +17:50:09 ============================================================================ +17:50:09 Slot Id : <118> +17:50:09 Transaction Type : REQUEST +17:50:09 Received From : +17:50:09 ============================================================================ +17:50:09 FNo. Len. Field Value +17:50:09 ============================================================================ +17:50:09 [ 1] [ 4] [0800] +17:50:09 [ 2] [ 5] [02531] +17:50:09 [ 3] [ 6] [579178] +17:50:09 [ 7] [ 10] [0320105009] +17:50:09 [ 11] [ 6] [807447] +17:50:09 [ 15] [ 10] [0320105009] +17:50:09 [ 37] [ 11] [57917807447] +17:50:09 [ 70] [ 3] [001] +17:50:09 ============================================================================ +17:50:09 + + +waiting on router queue for slot.... +17:50:09 ============================================================================ +17:50:09 Slot Id : <118> +17:50:09 Transaction Type : RESPONSE +17:50:09 Received From : +17:50:09 ============================================================================ +17:50:09 FNo. Len. Field Value +17:50:09 ============================================================================ +17:50:09 [ 1] [ 4] [0810] +17:50:09 [ 7] [ 10] [0320105009] +17:50:09 [ 11] [ 6] [807447] +17:50:09 [ 15] [ 4] [0320] +17:50:09 [ 37] [ 12] [57917807447] +17:50:09 [ 39] [ 2] [00] +17:50:09 [ 70] [ 3] [001] +17:50:09 ============================================================================ +17:50:09 Sending to : +17:50:09 ============================================================================ +17:50:09 + + +waiting on router queue for slot.... +17:50:18 ============================================================================ +17:50:18 Slot Id : <107> +17:50:18 Transaction Type : REQUEST +17:50:18 Received From : +17:50:18 ============================================================================ +17:50:18 FNo. Len. Field Value +17:50:18 ============================================================================ +17:50:18 [ 1] [ 4] [0800] +17:50:18 [ 7] [ 10] [0321010205] +17:50:18 [ 11] [ 6] [180205] +17:50:18 [ 37] [ 12] [57918180205] +17:50:18 [ 70] [ 3] [301] +17:50:18 ============================================================================ +17:50:18 + + +waiting on router queue for slot.... +17:50:18 Sending to : +17:50:18 ============================================================================ +17:50:18 ============================================================================ +17:50:18 Slot Id : <107> +17:50:18 Transaction Type : RESPONSE +17:50:18 Received From : +17:50:18 ============================================================================ +17:50:18 FNo. Len. Field Value +17:50:18 ============================================================================ +17:50:18 [ 1] [ 4] [0810] +17:50:18 [ 7] [ 10] [0321010205] +17:50:18 [ 11] [ 6] [180205] +17:50:18 [ 37] [ 12] [579181802050] +17:50:18 [ 39] [ 2] [00] +17:50:18 [ 70] [ 3] [810] +17:50:18 ============================================================================ +17:50:18 Calculate Source COMM Id = 6 +17:50:18 ============================================================================ +17:50:18 + + +waiting on router queue for slot.... +17:50:21 ============================================================================ +17:50:21 Slot Id : <121> +17:50:21 Transaction Type : REQUEST +17:50:21 Received From : +17:50:21 ============================================================================ +17:50:21 FNo. Len. Field Value +17:50:21 ============================================================================ +17:50:21 [ 1] [ 4] [0800] +17:50:21 [ 7] [ 10] [0320104928] +17:50:21 [ 11] [ 6] [157556] +17:50:21 [ 70] [ 3] [301] +17:50:21 ============================================================================ +17:50:21 + + +waiting on router queue for slot.... +17:50:21 Sending to : +17:50:21 ============================================================================ +17:50:21 ============================================================================ +17:50:21 Slot Id : <121> +17:50:21 Transaction Type : RESPONSE +17:50:21 Received From : +17:50:21 ============================================================================ +17:50:21 FNo. Len. Field Value +17:50:21 ============================================================================ +17:50:21 [ 1] [ 4] [0810] +17:50:21 [ 7] [ 10] [0320104928] +17:50:21 [ 11] [ 6] [157556] +17:50:21 [ 39] [ 2] [00] +17:50:21 [ 70] [ 3] [301] +17:50:21 ============================================================================ +17:50:21 Calculate Source COMM Id = 2 +17:50:21 ============================================================================ +17:50:21 + + +waiting on router queue for slot.... +17:50:21 ============================================================================ +17:50:21 Slot Id : <115> +17:50:21 Transaction Type : REQUEST +17:50:21 Received From : +17:50:21 ============================================================================ +17:50:21 FNo. Len. Field Value +17:50:21 ============================================================================ +17:50:21 [ 1] [ 4] [0200] +17:50:21 [ 2] [ 16] [6688990601443003] +17:50:21 [ 3] [ 6] [010000] +17:50:21 [ 4] [ 12] [000050000000] +17:50:21 [ 7] [ 10] [0320175016] +17:50:21 [ 11] [ 6] [820783] +17:50:21 [ 12] [ 6] [175016] +17:50:21 [ 13] [ 4] [0320] +17:50:21 [ 15] [ 4] [0320] +17:50:21 [ 18] [ 4] [6011] +17:50:21 [ 22] [ 3] [900] +17:50:21 [ 25] [ 2] [02] +17:50:21 [ 28] [ 9] [D00002000] +17:50:21 [ 32] [ 6] [621354] +17:50:21 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:50:21 [ 37] [ 12] [507904154134] +17:50:21 [ 41] [ 8] [20001000] +17:50:21 [ 42] [ 15] [NATIVE ] +17:50:21 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:50:21 [ 49] [ 3] [418] +17:50:21 [ 52] [ 16] [A20525E61AA50CDA] +17:50:21 ============================================================================ +17:50:21 + + +waiting on router queue for slot.... +17:50:21 Sending to : +17:50:21 ============================================================================ +17:50:21 Sending to : +17:50:21 ============================================================================ +17:50:21 ============================================================================ +17:50:21 Slot Id : <115> +17:50:21 Transaction Type : REQUEST +17:50:21 Received From : +17:50:21 ============================================================================ +17:50:21 FNo. Len. Field Value +17:50:21 ============================================================================ +17:50:21 [ 1] [ 4] [0200] +17:50:21 [ 2] [ 16] [6688990601443003] +17:50:21 [ 3] [ 6] [010000] +17:50:21 [ 4] [ 12] [000050000000] +17:50:21 [ 7] [ 10] [0320175016] +17:50:21 [ 11] [ 6] [820783] +17:50:21 [ 12] [ 6] [175016] +17:50:21 [ 13] [ 4] [0320] +17:50:21 [ 15] [ 4] [0320] +17:50:21 [ 18] [ 4] [6011] +17:50:21 [ 22] [ 3] [900] +17:50:21 [ 25] [ 2] [02] +17:50:21 [ 28] [ 9] [D00002000] +17:50:21 [ 32] [ 6] [621354] +17:50:21 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:50:21 [ 37] [ 12] [507904154134] +17:50:21 [ 41] [ 8] [20001000] +17:50:21 [ 42] [ 15] [NATIVE ] +17:50:21 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:50:21 [ 49] [ 3] [418] +17:50:21 [ 52] [ 16] [A20525E61AA50CDA] +17:50:21 ============================================================================ +17:50:21 + + +waiting on router queue for slot.... +17:50:21 Sending to : +17:50:21 ============================================================================ +17:50:21 ============================================================================ +17:50:21 Slot Id : <115> +17:50:21 Transaction Type : REQUEST +17:50:21 Received From : +17:50:21 ============================================================================ +17:50:21 FNo. Len. Field Value +17:50:21 ============================================================================ +17:50:21 [ 1] [ 4] [0200] +17:50:21 [ 2] [ 16] [6688990601443003] +17:50:21 [ 3] [ 6] [010000] +17:50:21 [ 4] [ 12] [000050000000] +17:50:21 [ 7] [ 10] [0320175016] +17:50:21 [ 11] [ 6] [820783] +17:50:21 [ 12] [ 6] [175016] +17:50:21 [ 13] [ 4] [0320] +17:50:21 [ 15] [ 4] [0320] +17:50:21 [ 18] [ 4] [6011] +17:50:21 [ 22] [ 3] [900] +17:50:21 [ 25] [ 2] [02] +17:50:21 [ 28] [ 9] [D00002000] +17:50:21 [ 32] [ 6] [621354] +17:50:21 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:50:21 [ 37] [ 12] [507904154134] +17:50:21 [ 41] [ 8] [20001000] +17:50:21 [ 42] [ 15] [NATIVE ] +17:50:21 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:50:21 [ 49] [ 3] [418] +17:50:21 [ 52] [ 16] [F8DDBA667328DD48] +17:50:21 ============================================================================ +17:50:21 + + +waiting on router queue for slot.... +17:50:21 Sending to : <4> +17:50:21 ============================================================================ +17:50:22 ============================================================================ +17:50:22 Slot Id : <115> +17:50:22 Transaction Type : RESPONSE +17:50:22 Received From : +17:50:22 ============================================================================ +17:50:22 FNo. Len. Field Value +17:50:22 ============================================================================ +17:50:22 [ 1] [ 4] [0210] +17:50:22 [ 2] [ 16] [6688990601443003] +17:50:22 [ 3] [ 6] [010000] +17:50:22 [ 4] [ 12] [000050000000] +17:50:22 [ 11] [ 6] [820783] +17:50:22 [ 12] [ 6] [175016] +17:50:22 [ 15] [ 4] [0320] +17:50:22 [ 18] [ 4] [6011] +17:50:22 [ 32] [ 6] [621354] +17:50:22 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:50:22 [ 37] [ 12] [507904154134] +17:50:22 [ 39] [ 2] [51] +17:50:22 [ 41] [ 8] [20001000] +17:50:22 [ 49] [ 3] [418] +17:50:22 [ 54] [ 0] [] +17:50:22 ============================================================================ +17:50:22 Sending to : +17:50:22 ============================================================================ +17:50:22 + + +waiting on router queue for slot.... +17:50:23 ============================================================================ +17:50:23 Slot Id : <115> +17:50:23 Transaction Type : RESPONSE +17:50:23 Received From : +17:50:23 ============================================================================ +17:50:23 FNo. Len. Field Value +17:50:23 ============================================================================ +17:50:23 [ 1] [ 4] [0210] +17:50:23 [ 2] [ 16] [6688990601443003] +17:50:23 [ 3] [ 6] [010000] +17:50:23 [ 4] [ 12] [000050000000] +17:50:23 [ 11] [ 6] [820783] +17:50:23 [ 12] [ 6] [175016] +17:50:23 [ 15] [ 4] [0320] +17:50:23 [ 18] [ 4] [6011] +17:50:23 [ 32] [ 6] [621354] +17:50:23 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:50:23 [ 37] [ 12] [507904154134] +17:50:23 [ 39] [ 2] [51] +17:50:23 [ 41] [ 8] [20001000] +17:50:23 [ 49] [ 3] [418] +17:50:23 [ 54] [ 0] [] +17:50:23 ============================================================================ +17:50:23 Calculate Source COMM Id = 0 +17:50:23 ============================================================================ +17:50:23 + + +waiting on router queue for slot.... +17:50:30 ============================================================================ +17:50:30 Slot Id : <74> +17:50:30 Transaction Type : REQUEST +17:50:30 Received From : +17:50:30 ============================================================================ +17:50:30 FNo. Len. Field Value +17:50:30 ============================================================================ +17:50:30 [ 1] [ 4] [0200] +17:50:30 [ 2] [ 16] [6688990040039669] +17:50:30 [ 3] [ 6] [300000] +17:50:30 [ 4] [ 12] [000000000000] +17:50:30 [ 7] [ 10] [0320175025] +17:50:30 [ 11] [ 6] [820824] +17:50:30 [ 12] [ 6] [175025] +17:50:30 [ 13] [ 4] [0320] +17:50:30 [ 15] [ 4] [0320] +17:50:30 [ 18] [ 4] [6011] +17:50:30 [ 22] [ 3] [900] +17:50:30 [ 25] [ 2] [02] +17:50:30 [ 28] [ 9] [D00000000] +17:50:30 [ 32] [ 6] [621354] +17:50:30 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:50:30 [ 37] [ 12] [507905271821] +17:50:30 [ 41] [ 8] [02002900] +17:50:30 [ 42] [ 15] [NATIVE ] +17:50:30 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:50:30 [ 49] [ 3] [418] +17:50:30 [ 52] [ 16] [A121443DDD885ADC] +17:50:30 ============================================================================ +17:50:30 + + +waiting on router queue for slot.... +17:50:30 Sending to : +17:50:30 ============================================================================ +17:50:30 Sending to : +17:50:30 ============================================================================ +17:50:31 ============================================================================ +17:50:31 Slot Id : <74> +17:50:31 Transaction Type : REQUEST +17:50:31 Received From : +17:50:31 ============================================================================ +17:50:31 FNo. Len. Field Value +17:50:31 ============================================================================ +17:50:31 [ 1] [ 4] [0200] +17:50:31 [ 2] [ 16] [6688990040039669] +17:50:31 [ 3] [ 6] [300000] +17:50:31 [ 4] [ 12] [000000000000] +17:50:31 [ 7] [ 10] [0320175025] +17:50:31 [ 11] [ 6] [820824] +17:50:31 [ 12] [ 6] [175025] +17:50:31 [ 13] [ 4] [0320] +17:50:31 [ 15] [ 4] [0320] +17:50:31 [ 18] [ 4] [6011] +17:50:31 [ 22] [ 3] [900] +17:50:31 [ 25] [ 2] [02] +17:50:31 [ 28] [ 9] [D00000000] +17:50:31 [ 32] [ 6] [621354] +17:50:31 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:50:31 [ 37] [ 12] [507905271821] +17:50:31 [ 41] [ 8] [02002900] +17:50:31 [ 42] [ 15] [NATIVE ] +17:50:31 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:50:31 [ 49] [ 3] [418] +17:50:31 [ 52] [ 16] [A121443DDD885ADC] +17:50:31 ============================================================================ +17:50:31 + + +waiting on router queue for slot.... +17:50:31 Sending to : +17:50:31 ============================================================================ +17:50:31 ============================================================================ +17:50:31 Slot Id : <74> +17:50:31 Transaction Type : REQUEST +17:50:31 Received From : +17:50:31 ============================================================================ +17:50:31 FNo. Len. Field Value +17:50:31 ============================================================================ +17:50:31 [ 1] [ 4] [0200] +17:50:31 [ 2] [ 16] [6688990040039669] +17:50:31 [ 3] [ 6] [300000] +17:50:31 [ 4] [ 12] [000000000000] +17:50:31 [ 7] [ 10] [0320175025] +17:50:31 [ 11] [ 6] [820824] +17:50:31 [ 12] [ 6] [175025] +17:50:31 [ 13] [ 4] [0320] +17:50:31 [ 15] [ 4] [0320] +17:50:31 [ 18] [ 4] [6011] +17:50:31 [ 22] [ 3] [900] +17:50:31 [ 25] [ 2] [02] +17:50:31 [ 28] [ 9] [D00000000] +17:50:31 [ 32] [ 6] [621354] +17:50:31 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:50:31 [ 37] [ 12] [507905271821] +17:50:31 [ 41] [ 8] [02002900] +17:50:31 [ 42] [ 15] [NATIVE ] +17:50:31 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +17:50:31 [ 49] [ 3] [418] +17:50:31 [ 52] [ 16] [A9CBCDF0E96A5CBF] +17:50:31 ============================================================================ +17:50:31 + + +waiting on router queue for slot.... +17:50:31 Sending to : <4> +17:50:31 ============================================================================ +17:50:32 ============================================================================ +17:50:32 Slot Id : <74> +17:50:32 Transaction Type : RESPONSE +17:50:32 Received From : +17:50:32 ============================================================================ +17:50:32 FNo. Len. Field Value +17:50:32 ============================================================================ +17:50:32 [ 1] [ 4] [0210] +17:50:32 [ 2] [ 16] [6688990040039669] +17:50:32 [ 3] [ 6] [300000] +17:50:32 [ 4] [ 12] [000000000000] +17:50:32 [ 11] [ 6] [820824] +17:50:32 [ 12] [ 6] [175025] +17:50:32 [ 15] [ 4] [0320] +17:50:32 [ 18] [ 4] [6011] +17:50:32 [ 32] [ 6] [621354] +17:50:32 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:50:32 [ 37] [ 12] [507905271821] +17:50:32 [ 38] [ 6] [003570] +17:50:32 [ 39] [ 2] [00] +17:50:32 [ 41] [ 8] [02002900] +17:50:32 [ 49] [ 3] [418] +17:50:32 [ 54] [ 20] [0002418C000035700000] +17:50:32 ============================================================================ +17:50:32 Sending to : +17:50:32 ============================================================================ +17:50:32 + + +waiting on router queue for slot.... +17:50:33 ============================================================================ +17:50:33 Slot Id : <92> +17:50:33 Transaction Type : REQUEST +17:50:33 Received From : +17:50:33 ============================================================================ +17:50:33 FNo. Len. Field Value +17:50:33 ============================================================================ +17:50:33 [ 1] [ 4] [0800] +17:50:33 [ 7] [ 10] [0320104938] +17:50:33 [ 11] [ 6] [157557] +17:50:33 [ 70] [ 3] [301] +17:50:33 ============================================================================ +17:50:33 + + +waiting on router queue for slot.... +17:50:33 Sending to : +17:50:33 ============================================================================ +17:50:33 ============================================================================ +17:50:33 Slot Id : <92> +17:50:33 Transaction Type : RESPONSE +17:50:33 Received From : +17:50:33 ============================================================================ +17:50:33 FNo. Len. Field Value +17:50:33 ============================================================================ +17:50:33 [ 1] [ 4] [0810] +17:50:33 [ 7] [ 10] [0320104938] +17:50:33 [ 11] [ 6] [157557] +17:50:33 [ 39] [ 2] [00] +17:50:33 [ 70] [ 3] [301] +17:50:33 ============================================================================ +17:50:33 Calculate Source COMM Id = 2 +17:50:33 ============================================================================ +17:50:33 + + +waiting on router queue for slot.... +17:50:33 ============================================================================ +17:50:33 Slot Id : <74> +17:50:33 Transaction Type : RESPONSE +17:50:33 Received From : +17:50:33 ============================================================================ +17:50:33 FNo. Len. Field Value +17:50:33 ============================================================================ +17:50:33 [ 1] [ 4] [0210] +17:50:33 [ 2] [ 16] [6688990040039669] +17:50:33 [ 3] [ 6] [300000] +17:50:33 [ 4] [ 12] [000000000000] +17:50:33 [ 11] [ 6] [820824] +17:50:33 [ 12] [ 6] [175025] +17:50:33 [ 15] [ 4] [0320] +17:50:33 [ 18] [ 4] [6011] +17:50:33 [ 32] [ 6] [621354] +17:50:33 [ 35] [ 37] [6688990040039669=97111261432334700000] +17:50:33 [ 37] [ 12] [507905271821] +17:50:33 [ 38] [ 6] [003570] +17:50:33 [ 39] [ 2] [00] +17:50:33 [ 41] [ 8] [02002900] +17:50:33 [ 49] [ 3] [418] +17:50:33 [ 54] [ 20] [0002418C000035700000] +17:50:33 ============================================================================ +17:50:33 Calculate Source COMM Id = 0 +17:50:33 ============================================================================ +17:50:33 + + +waiting on router queue for slot.... +17:50:34 ============================================================================ +17:50:34 Slot Id : <113> +17:50:34 Transaction Type : REQUEST +17:50:34 Received From : +17:50:34 ============================================================================ +17:50:34 FNo. Len. Field Value +17:50:34 ============================================================================ +17:50:34 [ 1] [ 4] [0200] +17:50:34 [ 2] [ 16] [6688990100658606] +17:50:34 [ 3] [ 6] [300000] +17:50:34 [ 4] [ 12] [000000000000] +17:50:34 [ 7] [ 10] [0320175029] +17:50:34 [ 11] [ 6] [820835] +17:50:34 [ 12] [ 6] [175029] +17:50:34 [ 13] [ 4] [0320] +17:50:34 [ 15] [ 4] [0320] +17:50:34 [ 18] [ 4] [6011] +17:50:34 [ 22] [ 3] [900] +17:50:34 [ 25] [ 2] [02] +17:50:34 [ 28] [ 9] [D00000000] +17:50:34 [ 32] [ 6] [621354] +17:50:34 [ 35] [ 37] [6688990100658606=41091231860693300000] +17:50:34 [ 37] [ 12] [507903433364] +17:50:34 [ 41] [ 8] [06001600] +17:50:34 [ 42] [ 15] [NATIVE ] +17:50:34 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +17:50:34 [ 49] [ 3] [418] +17:50:34 [ 52] [ 16] [C0707B4D4838178F] +17:50:34 ============================================================================ +17:50:34 + + +waiting on router queue for slot.... +17:50:34 Sending to : +17:50:34 ============================================================================ +17:50:34 Sending to : +17:50:34 ============================================================================ +17:50:34 ============================================================================ +17:50:34 Slot Id : <113> +17:50:34 Transaction Type : REQUEST +17:50:34 Received From : +17:50:34 ============================================================================ +17:50:34 FNo. Len. Field Value +17:50:34 ============================================================================ +17:50:34 [ 1] [ 4] [0200] +17:50:34 [ 2] [ 16] [6688990100658606] +17:50:34 [ 3] [ 6] [300000] +17:50:34 [ 4] [ 12] [000000000000] +17:50:34 [ 7] [ 10] [0320175029] +17:50:34 [ 11] [ 6] [820835] +17:50:34 [ 12] [ 6] [175029] +17:50:34 [ 13] [ 4] [0320] +17:50:34 [ 15] [ 4] [0320] +17:50:34 [ 18] [ 4] [6011] +17:50:34 [ 22] [ 3] [900] +17:50:34 [ 25] [ 2] [02] +17:50:34 [ 28] [ 9] [D00000000] +17:50:34 [ 32] [ 6] [621354] +17:50:34 [ 35] [ 37] [6688990100658606=41091231860693300000] +17:50:34 [ 37] [ 12] [507903433364] +17:50:34 [ 41] [ 8] [06001600] +17:50:34 [ 42] [ 15] [NATIVE ] +17:50:34 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +17:50:34 [ 49] [ 3] [418] +17:50:34 [ 52] [ 16] [C0707B4D4838178F] +17:50:34 ============================================================================ +17:50:34 + + +waiting on router queue for slot.... +17:50:34 Sending to : +17:50:34 ============================================================================ +17:50:34 ============================================================================ +17:50:34 Slot Id : <113> +17:50:34 Transaction Type : REQUEST +17:50:34 Received From : +17:50:34 ============================================================================ +17:50:34 FNo. Len. Field Value +17:50:34 ============================================================================ +17:50:34 [ 1] [ 4] [0200] +17:50:34 [ 2] [ 16] [6688990100658606] +17:50:34 [ 3] [ 6] [300000] +17:50:34 [ 4] [ 12] [000000000000] +17:50:34 [ 7] [ 10] [0320175029] +17:50:34 [ 11] [ 6] [820835] +17:50:34 [ 12] [ 6] [175029] +17:50:34 [ 13] [ 4] [0320] +17:50:34 [ 15] [ 4] [0320] +17:50:34 [ 18] [ 4] [6011] +17:50:34 [ 22] [ 3] [900] +17:50:34 [ 25] [ 2] [02] +17:50:34 [ 28] [ 9] [D00000000] +17:50:34 [ 32] [ 6] [621354] +17:50:34 [ 35] [ 37] [6688990100658606=41091231860693300000] +17:50:34 [ 37] [ 12] [507903433364] +17:50:34 [ 41] [ 8] [06001600] +17:50:34 [ 42] [ 15] [NATIVE ] +17:50:34 [ 43] [ 40] [HOUN DISTRICT Houn LAO] +17:50:34 [ 49] [ 3] [418] +17:50:34 [ 52] [ 16] [009E6B625E0BC990] +17:50:34 ============================================================================ +17:50:34 + + +waiting on router queue for slot.... +17:50:34 Sending to : <4> +17:50:34 ============================================================================ +17:50:35 ============================================================================ +17:50:35 Slot Id : <113> +17:50:35 Transaction Type : RESPONSE +17:50:35 Received From : +17:50:35 ============================================================================ +17:50:35 FNo. Len. Field Value +17:50:35 ============================================================================ +17:50:35 [ 1] [ 4] [0210] +17:50:35 [ 2] [ 16] [6688990100658606] +17:50:35 [ 3] [ 6] [300000] +17:50:35 [ 4] [ 12] [000000000000] +17:50:35 [ 11] [ 6] [820835] +17:50:35 [ 12] [ 6] [175029] +17:50:35 [ 15] [ 4] [0320] +17:50:35 [ 18] [ 4] [6011] +17:50:35 [ 32] [ 6] [621354] +17:50:35 [ 35] [ 37] [6688990100658606=41091231860693300000] +17:50:35 [ 37] [ 12] [507903433364] +17:50:35 [ 38] [ 6] [648685] +17:50:35 [ 39] [ 2] [00] +17:50:35 [ 41] [ 8] [06001600] +17:50:35 [ 49] [ 3] [418] +17:50:35 [ 54] [ 20] [0002418C000002288716] +17:50:35 ============================================================================ +17:50:35 Sending to : +17:50:35 ============================================================================ +17:50:35 + + +waiting on router queue for slot.... +17:50:37 ============================================================================ +17:50:37 Slot Id : <113> +17:50:37 Transaction Type : RESPONSE +17:50:37 Received From : +17:50:37 ============================================================================ +17:50:37 FNo. Len. Field Value +17:50:37 ============================================================================ +17:50:37 [ 1] [ 4] [0210] +17:50:37 [ 2] [ 16] [6688990100658606] +17:50:37 [ 3] [ 6] [300000] +17:50:37 [ 4] [ 12] [000000000000] +17:50:37 [ 11] [ 6] [820835] +17:50:37 [ 12] [ 6] [175029] +17:50:37 [ 15] [ 4] [0320] +17:50:37 [ 18] [ 4] [6011] +17:50:37 [ 32] [ 6] [621354] +17:50:37 [ 35] [ 37] [6688990100658606=41091231860693300000] +17:50:37 [ 37] [ 12] [507903433364] +17:50:37 [ 38] [ 6] [648685] +17:50:37 [ 39] [ 2] [00] +17:50:37 [ 41] [ 8] [06001600] +17:50:37 [ 49] [ 3] [418] +17:50:37 [ 54] [ 20] [0002418C000002288716] +17:50:37 ============================================================================ +17:50:37 Calculate Source COMM Id = 0 +17:50:37 ============================================================================ +17:50:37 + + +waiting on router queue for slot.... +17:50:38 ============================================================================ +17:50:38 Slot Id : <98> +17:50:38 Transaction Type : REQUEST +17:50:38 Received From : +17:50:38 ============================================================================ +17:50:38 FNo. Len. Field Value +17:50:38 ============================================================================ +17:50:38 [ 1] [ 4] [0200] +17:50:38 [ 2] [ 16] [6688990040136457] +17:50:38 [ 3] [ 6] [011000] +17:50:38 [ 4] [ 12] [000080000000] +17:50:38 [ 7] [ 10] [0320175033] +17:50:38 [ 11] [ 6] [820854] +17:50:38 [ 12] [ 6] [175033] +17:50:38 [ 13] [ 4] [0320] +17:50:38 [ 15] [ 4] [0320] +17:50:38 [ 18] [ 4] [6011] +17:50:38 [ 22] [ 3] [900] +17:50:38 [ 25] [ 2] [02] +17:50:38 [ 28] [ 9] [D00002000] +17:50:38 [ 32] [ 6] [621354] +17:50:38 [ 35] [ 37] [6688990040136457=98041261263367900000] +17:50:38 [ 37] [ 12] [507904731655] +17:50:38 [ 41] [ 8] [07000900] +17:50:38 [ 42] [ 15] [NATIVE ] +17:50:38 [ 43] [ 40] [LNT Branch01 Namtar LAO] +17:50:38 [ 49] [ 3] [418] +17:50:38 [ 52] [ 16] [14926C5B338A8C0A] +17:50:38 ============================================================================ +17:50:38 + + +waiting on router queue for slot.... +17:50:38 Sending to : +17:50:38 ============================================================================ +17:50:38 Sending to : +17:50:38 ============================================================================ +17:50:38 ============================================================================ +17:50:38 Slot Id : <108> +17:50:38 Transaction Type : REQUEST +17:50:38 Received From : +17:50:38 ============================================================================ +17:50:38 FNo. Len. Field Value +17:50:38 ============================================================================ +17:50:38 [ 1] [ 4] [0200] +17:50:38 [ 2] [ 16] [6213544002251020] +17:50:38 [ 3] [ 6] [011000] +17:50:38 [ 4] [ 12] [000020000000] +17:50:38 [ 7] [ 10] [0320175058] +17:50:38 [ 11] [ 6] [209913] +17:50:38 [ 12] [ 6] [174604] +17:50:38 [ 13] [ 4] [0320] +17:50:38 [ 14] [ 4] [4912] +17:50:38 [ 15] [ 4] [0320] +17:50:38 [ 18] [ 4] [6011] +17:50:38 [ 19] [ 3] [418] +17:50:38 [ 22] [ 3] [021] +17:50:38 [ 25] [ 2] [01] +17:50:38 [ 28] [ 9] [D00002000] +17:50:38 [ 32] [ 6] [198901] +17:50:38 [ 35] [ 32] [6213544002251020=491212015102244] +17:50:38 [ 37] [ 12] [507917209913] +17:50:38 [ 41] [ 8] [19529001] +17:50:38 [ 42] [ 15] [000000041952901] +17:50:38 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:50:38 [ 49] [ 3] [418] +17:50:38 [ 52] [ 16] [EEDC073589033001] +17:50:38 ============================================================================ +17:50:38 + + +waiting on router queue for slot.... +17:50:38 Sending to : +17:50:38 ============================================================================ +17:50:38 Sending to : +17:50:38 ============================================================================ +17:50:38 ============================================================================ +17:50:38 Slot Id : <98> +17:50:38 Transaction Type : REQUEST +17:50:38 Received From : +17:50:38 ============================================================================ +17:50:38 FNo. Len. Field Value +17:50:38 ============================================================================ +17:50:38 [ 1] [ 4] [0200] +17:50:38 [ 2] [ 16] [6688990040136457] +17:50:38 [ 3] [ 6] [011000] +17:50:38 [ 4] [ 12] [000080000000] +17:50:38 [ 7] [ 10] [0320175033] +17:50:38 [ 11] [ 6] [820854] +17:50:38 [ 12] [ 6] [175033] +17:50:38 [ 13] [ 4] [0320] +17:50:38 [ 15] [ 4] [0320] +17:50:38 [ 18] [ 4] [6011] +17:50:38 [ 22] [ 3] [900] +17:50:38 [ 25] [ 2] [02] +17:50:38 [ 28] [ 9] [D00002000] +17:50:38 [ 32] [ 6] [621354] +17:50:38 [ 35] [ 37] [6688990040136457=98041261263367900000] +17:50:38 [ 37] [ 12] [507904731655] +17:50:38 [ 41] [ 8] [07000900] +17:50:38 [ 42] [ 15] [NATIVE ] +17:50:38 [ 43] [ 40] [LNT Branch01 Namtar LAO] +17:50:38 [ 49] [ 3] [418] +17:50:38 [ 52] [ 16] [14926C5B338A8C0A] +17:50:38 ============================================================================ +17:50:38 + + +waiting on router queue for slot.... +17:50:38 Sending to : +17:50:38 ============================================================================ +17:50:38 ============================================================================ +17:50:38 Slot Id : <98> +17:50:38 Transaction Type : REQUEST +17:50:38 Received From : +17:50:38 ============================================================================ +17:50:38 FNo. Len. Field Value +17:50:38 ============================================================================ +17:50:38 [ 1] [ 4] [0200] +17:50:38 [ 2] [ 16] [6688990040136457] +17:50:38 [ 3] [ 6] [011000] +17:50:38 [ 4] [ 12] [000080000000] +17:50:38 [ 7] [ 10] [0320175033] +17:50:38 [ 11] [ 6] [820854] +17:50:38 [ 12] [ 6] [175033] +17:50:38 [ 13] [ 4] [0320] +17:50:38 [ 15] [ 4] [0320] +17:50:38 [ 18] [ 4] [6011] +17:50:38 [ 22] [ 3] [900] +17:50:38 [ 25] [ 2] [02] +17:50:38 [ 28] [ 9] [D00002000] +17:50:38 [ 32] [ 6] [621354] +17:50:38 [ 35] [ 37] [6688990040136457=98041261263367900000] +17:50:38 [ 37] [ 12] [507904731655] +17:50:38 [ 41] [ 8] [07000900] +17:50:38 [ 42] [ 15] [NATIVE ] +17:50:38 [ 43] [ 40] [LNT Branch01 Namtar LAO] +17:50:38 [ 49] [ 3] [418] +17:50:38 [ 52] [ 16] [0C3C2AFBF7001FBB] +17:50:38 ============================================================================ +17:50:38 + + +waiting on router queue for slot.... +17:50:38 Sending to : <4> +17:50:38 ============================================================================ +17:50:38 ============================================================================ +17:50:38 Slot Id : <108> +17:50:38 Transaction Type : REQUEST +17:50:38 Received From : +17:50:38 ============================================================================ +17:50:38 FNo. Len. Field Value +17:50:38 ============================================================================ +17:50:38 [ 1] [ 4] [0200] +17:50:38 [ 2] [ 16] [6213544002251020] +17:50:38 [ 3] [ 6] [011000] +17:50:38 [ 4] [ 12] [000020000000] +17:50:38 [ 7] [ 10] [0320175058] +17:50:38 [ 11] [ 6] [209913] +17:50:38 [ 12] [ 6] [174604] +17:50:38 [ 13] [ 4] [0320] +17:50:38 [ 14] [ 4] [4912] +17:50:38 [ 15] [ 4] [0320] +17:50:38 [ 18] [ 4] [6011] +17:50:38 [ 19] [ 3] [418] +17:50:38 [ 22] [ 3] [021] +17:50:38 [ 25] [ 2] [01] +17:50:38 [ 28] [ 9] [D00002000] +17:50:38 [ 32] [ 6] [198901] +17:50:38 [ 35] [ 32] [6213544002251020=491212015102244] +17:50:38 [ 37] [ 12] [507917209913] +17:50:38 [ 41] [ 8] [19529001] +17:50:38 [ 42] [ 15] [000000041952901] +17:50:38 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:50:38 [ 49] [ 3] [418] +17:50:38 [ 52] [ 16] [EEDC073589033001] +17:50:38 ============================================================================ +17:50:38 + + +waiting on router queue for slot.... +17:50:38 Sending to : +17:50:38 ============================================================================ +17:50:38 ============================================================================ +17:50:38 Slot Id : <108> +17:50:38 Transaction Type : REQUEST +17:50:38 Received From : +17:50:38 ============================================================================ +17:50:38 FNo. Len. Field Value +17:50:38 ============================================================================ +17:50:38 [ 1] [ 4] [0200] +17:50:38 [ 2] [ 16] [6213544002251020] +17:50:38 [ 3] [ 6] [011000] +17:50:38 [ 4] [ 12] [000020000000] +17:50:38 [ 7] [ 10] [0320175058] +17:50:38 [ 11] [ 6] [209913] +17:50:38 [ 12] [ 6] [174604] +17:50:38 [ 13] [ 4] [0320] +17:50:38 [ 14] [ 4] [4912] +17:50:38 [ 15] [ 4] [0320] +17:50:38 [ 18] [ 4] [6011] +17:50:38 [ 19] [ 3] [418] +17:50:38 [ 22] [ 3] [021] +17:50:38 [ 25] [ 2] [01] +17:50:38 [ 28] [ 9] [D00002000] +17:50:38 [ 32] [ 6] [198901] +17:50:38 [ 35] [ 32] [6213544002251020=491212015102244] +17:50:38 [ 37] [ 12] [507917209913] +17:50:38 [ 41] [ 8] [19529001] +17:50:38 [ 42] [ 15] [000000041952901] +17:50:38 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +17:50:38 [ 49] [ 3] [418] +17:50:38 [ 52] [ 16] [4B0939E6DE919702] +17:50:38 ============================================================================ +17:50:38 + + +waiting on router queue for slot.... +17:50:38 Sending to : <0> +17:50:38 ============================================================================ +17:50:39 ============================================================================ +17:50:39 Slot Id : <98> +17:50:39 Transaction Type : RESPONSE +17:50:39 Received From : +17:50:39 ============================================================================ +17:50:39 FNo. Len. Field Value +17:50:39 ============================================================================ +17:50:39 [ 1] [ 4] [0210] +17:50:39 [ 2] [ 16] [6688990040136457] +17:50:39 [ 3] [ 6] [011000] +17:50:39 [ 4] [ 12] [000080000000] +17:50:39 [ 11] [ 6] [820854] +17:50:39 [ 12] [ 6] [175033] +17:50:39 [ 15] [ 4] [0320] +17:50:39 [ 18] [ 4] [6011] +17:50:39 [ 32] [ 6] [621354] +17:50:39 [ 35] [ 37] [6688990040136457=98041261263367900000] +17:50:39 [ 37] [ 12] [507904731655] +17:50:39 [ 38] [ 6] [419223] +17:50:39 [ 39] [ 2] [00] +17:50:39 [ 41] [ 8] [07000900] +17:50:39 [ 49] [ 3] [418] +17:50:39 [ 54] [ 20] [1002418C000107728500] +17:50:39 ============================================================================ +17:50:39 Sending to : +17:50:39 ============================================================================ +17:50:39 + + +waiting on router queue for slot.... +17:50:40 ============================================================================ +17:50:40 Slot Id : <108> +17:50:40 Transaction Type : RESPONSE +17:50:40 Received From : +17:50:40 ============================================================================ +17:50:40 FNo. Len. Field Value +17:50:40 ============================================================================ +17:50:40 [ 1] [ 4] [0210] +17:50:40 [ 2] [ 16] [6213544002251020] +17:50:40 [ 3] [ 6] [011000] +17:50:40 [ 4] [ 12] [000020000000] +17:50:40 [ 7] [ 10] [0320175058] +17:50:40 [ 11] [ 6] [209913] +17:50:40 [ 12] [ 6] [174604] +17:50:40 [ 13] [ 4] [0320] +17:50:40 [ 15] [ 4] [0320] +17:50:40 [ 18] [ 4] [6011] +17:50:40 [ 19] [ 3] [418] +17:50:40 [ 32] [ 6] [198901] +17:50:40 [ 35] [ 32] [6213544002251020=491212015102244] +17:50:40 [ 37] [ 12] [507917209913] +17:50:40 [ 38] [ 6] [732902] +17:50:40 [ 39] [ 2] [00] +17:50:40 [ 41] [ 8] [19529001] +17:50:40 [ 49] [ 3] [418] +17:50:40 [ 54] [ 40] [1001418C0000365254801002418C000036525480] +17:50:40 ============================================================================ +17:50:40 Sending to : +17:50:40 ============================================================================ +17:50:40 + + +waiting on router queue for slot.... +17:50:41 ============================================================================ +17:50:41 Slot Id : <98> +17:50:41 Transaction Type : RESPONSE +17:50:41 Received From : +17:50:41 ============================================================================ +17:50:41 FNo. Len. Field Value +17:50:41 ============================================================================ +17:50:41 [ 1] [ 4] [0210] +17:50:41 [ 2] [ 16] [6688990040136457] +17:50:41 [ 3] [ 6] [011000] +17:50:41 [ 4] [ 12] [000080000000] +17:50:41 [ 11] [ 6] [820854] +17:50:41 [ 12] [ 6] [175033] +17:50:41 [ 15] [ 4] [0320] +17:50:41 [ 18] [ 4] [6011] +17:50:41 [ 32] [ 6] [621354] +17:50:41 [ 35] [ 37] [6688990040136457=98041261263367900000] +17:50:41 [ 37] [ 12] [507904731655] +17:50:41 [ 38] [ 6] [419223] +17:50:41 [ 39] [ 2] [00] +17:50:41 [ 41] [ 8] [07000900] +17:50:41 [ 49] [ 3] [418] +17:50:41 [ 54] [ 20] [1002418C000107728500] +17:50:41 ============================================================================ +17:50:41 Calculate Source COMM Id = 0 +17:50:41 ============================================================================ +17:50:41 + + +waiting on router queue for slot.... +17:50:43 ============================================================================ +17:50:43 Slot Id : <108> +17:50:43 Transaction Type : RESPONSE +17:50:43 Received From : +17:50:43 ============================================================================ +17:50:43 FNo. Len. Field Value +17:50:43 ============================================================================ +17:50:43 [ 1] [ 4] [0210] +17:50:43 [ 2] [ 16] [6213544002251020] +17:50:43 [ 3] [ 6] [011000] +17:50:43 [ 4] [ 12] [000020000000] +17:50:43 [ 7] [ 10] [0320175058] +17:50:43 [ 11] [ 6] [209913] +17:50:43 [ 12] [ 6] [174604] +17:50:43 [ 13] [ 4] [0320] +17:50:43 [ 15] [ 4] [0320] +17:50:43 [ 18] [ 4] [6011] +17:50:43 [ 19] [ 3] [418] +17:50:43 [ 32] [ 6] [198901] +17:50:43 [ 35] [ 32] [6213544002251020=491212015102244] +17:50:43 [ 37] [ 12] [507917209913] +17:50:43 [ 38] [ 6] [732902] +17:50:43 [ 39] [ 2] [00] +17:50:43 [ 41] [ 8] [19529001] +17:50:43 [ 49] [ 3] [418] +17:50:43 [ 54] [ 40] [1001418C0000365254801002418C000036525480] +17:50:43 ============================================================================ +17:50:43 Calculate Source COMM Id = 5 +17:50:43 ============================================================================ +17:50:43 + + +waiting on router queue for slot.... +17:50:47 ============================================================================ +17:50:47 Slot Id : <127> +17:50:47 Transaction Type : REQUEST +17:50:47 Received From : +17:50:47 ============================================================================ +17:50:47 FNo. Len. Field Value +17:50:47 ============================================================================ +17:50:47 [ 1] [ 4] [0800] +17:50:47 [ 7] [ 10] [0320104954] +17:50:47 [ 11] [ 6] [157558] +17:50:47 [ 70] [ 3] [301] +17:50:47 ============================================================================ +17:50:47 + + +waiting on router queue for slot.... +17:50:47 Sending to : +17:50:47 ============================================================================ +17:50:47 ============================================================================ +17:50:47 Slot Id : <127> +17:50:47 Transaction Type : RESPONSE +17:50:47 Received From : +17:50:47 ============================================================================ +17:50:47 FNo. Len. Field Value +17:50:47 ============================================================================ +17:50:47 [ 1] [ 4] [0810] +17:50:47 [ 7] [ 10] [0320104954] +17:50:47 [ 11] [ 6] [157558] +17:50:47 [ 39] [ 2] [00] +17:50:47 [ 70] [ 3] [301] +17:50:47 ============================================================================ +17:50:47 Calculate Source COMM Id = 2 +17:50:47 ============================================================================ +17:50:47 + + +waiting on router queue for slot.... +17:50:59 ============================================================================ +17:50:59 Slot Id : <95> +17:50:59 Transaction Type : REQUEST +17:50:59 Received From : +17:50:59 ============================================================================ +17:50:59 FNo. Len. Field Value +17:50:59 ============================================================================ +17:50:59 [ 1] [ 4] [0800] +17:50:59 [ 7] [ 10] [0320105005] +17:50:59 [ 11] [ 6] [157559] +17:50:59 [ 70] [ 3] [301] +17:50:59 ============================================================================ +17:50:59 + + +waiting on router queue for slot.... +17:50:59 Sending to : +17:50:59 ============================================================================ +17:50:59 ============================================================================ +17:50:59 Slot Id : <95> +17:50:59 Transaction Type : RESPONSE +17:50:59 Received From : +17:50:59 ============================================================================ +17:50:59 FNo. Len. Field Value +17:50:59 ============================================================================ +17:50:59 [ 1] [ 4] [0810] +17:50:59 [ 7] [ 10] [0320105005] +17:50:59 [ 11] [ 6] [157559] +17:50:59 [ 39] [ 2] [00] +17:50:59 [ 70] [ 3] [301] +17:50:59 ============================================================================ +17:50:59 Calculate Source COMM Id = 2 +17:50:59 ============================================================================ +17:50:59 + + +waiting on router queue for slot.... +17:51:11 ============================================================================ +17:51:11 Slot Id : <75> +17:51:11 Transaction Type : REQUEST +17:51:11 Received From : +17:51:11 ============================================================================ +17:51:11 FNo. Len. Field Value +17:51:11 ============================================================================ +17:51:11 [ 1] [ 4] [0800] +17:51:11 [ 2] [ 5] [02531] +17:51:11 [ 3] [ 6] [579178] +17:51:11 [ 7] [ 10] [0320105111] +17:51:11 [ 11] [ 6] [807448] +17:51:11 [ 15] [ 10] [0320105111] +17:51:11 [ 37] [ 11] [57917807448] +17:51:11 [ 70] [ 3] [001] +17:51:11 ============================================================================ +17:51:11 + + +waiting on router queue for slot.... +17:51:11 ============================================================================ +17:51:11 Slot Id : <75> +17:51:11 Transaction Type : RESPONSE +17:51:11 Received From : +17:51:11 ============================================================================ +17:51:11 FNo. Len. Field Value +17:51:11 ============================================================================ +17:51:11 [ 1] [ 4] [0810] +17:51:11 [ 7] [ 10] [0320105111] +17:51:11 [ 11] [ 6] [807448] +17:51:11 [ 15] [ 4] [0320] +17:51:11 [ 37] [ 12] [57917807448] +17:51:11 [ 39] [ 2] [00] +17:51:11 [ 70] [ 3] [001] +17:51:11 ============================================================================ +17:51:11 Sending to : +17:51:11 ============================================================================ +17:51:11 + + +waiting on router queue for slot.... +17:51:13 ============================================================================ +17:51:13 Slot Id : <53> +17:51:13 Transaction Type : REQUEST +17:51:13 Received From : +17:51:13 ============================================================================ +17:51:13 FNo. Len. Field Value +17:51:13 ============================================================================ +17:51:13 [ 1] [ 4] [0200] +17:51:13 [ 2] [ 16] [6688990106007303] +17:51:13 [ 3] [ 6] [011000] +17:51:13 [ 4] [ 12] [000002000000] +17:51:13 [ 7] [ 10] [0320175108] +17:51:13 [ 11] [ 6] [820990] +17:51:13 [ 12] [ 6] [175108] +17:51:13 [ 13] [ 4] [0320] +17:51:13 [ 15] [ 4] [0320] +17:51:13 [ 18] [ 4] [6011] +17:51:13 [ 22] [ 3] [900] +17:51:13 [ 25] [ 2] [02] +17:51:13 [ 28] [ 9] [D00002000] +17:51:13 [ 32] [ 6] [621354] +17:51:13 [ 35] [ 37] [6688990106007303=43111231730367300000] +17:51:13 [ 37] [ 12] [507902474789] +17:51:13 [ 41] [ 8] [05003000] +17:51:13 [ 42] [ 15] [NATIVE ] +17:51:13 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +17:51:13 [ 49] [ 3] [418] +17:51:13 [ 52] [ 16] [C93C5D168574E08D] +17:51:13 ============================================================================ +17:51:13 + + +waiting on router queue for slot.... +17:51:13 Sending to : +17:51:13 ============================================================================ +17:51:13 Sending to : +17:51:13 ============================================================================ +17:51:13 ============================================================================ +17:51:13 Slot Id : <53> +17:51:13 Transaction Type : REQUEST +17:51:13 Received From : +17:51:13 ============================================================================ +17:51:13 FNo. Len. Field Value +17:51:13 ============================================================================ +17:51:13 [ 1] [ 4] [0200] +17:51:13 [ 2] [ 16] [6688990106007303] +17:51:13 [ 3] [ 6] [011000] +17:51:13 [ 4] [ 12] [000002000000] +17:51:13 [ 7] [ 10] [0320175108] +17:51:13 [ 11] [ 6] [820990] +17:51:13 [ 12] [ 6] [175108] +17:51:13 [ 13] [ 4] [0320] +17:51:13 [ 15] [ 4] [0320] +17:51:13 [ 18] [ 4] [6011] +17:51:13 [ 22] [ 3] [900] +17:51:13 [ 25] [ 2] [02] +17:51:13 [ 28] [ 9] [D00002000] +17:51:13 [ 32] [ 6] [621354] +17:51:13 [ 35] [ 37] [6688990106007303=43111231730367300000] +17:51:13 [ 37] [ 12] [507902474789] +17:51:13 [ 41] [ 8] [05003000] +17:51:13 [ 42] [ 15] [NATIVE ] +17:51:13 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +17:51:13 [ 49] [ 3] [418] +17:51:13 [ 52] [ 16] [C93C5D168574E08D] +17:51:13 ============================================================================ +17:51:13 + + +waiting on router queue for slot.... +17:51:13 Sending to : +17:51:13 ============================================================================ +17:51:13 ============================================================================ +17:51:13 Slot Id : <53> +17:51:13 Transaction Type : REQUEST +17:51:13 Received From : +17:51:13 ============================================================================ +17:51:13 FNo. Len. Field Value +17:51:13 ============================================================================ +17:51:13 [ 1] [ 4] [0200] +17:51:13 [ 2] [ 16] [6688990106007303] +17:51:13 [ 3] [ 6] [011000] +17:51:13 [ 4] [ 12] [000002000000] +17:51:13 [ 7] [ 10] [0320175108] +17:51:13 [ 11] [ 6] [820990] +17:51:13 [ 12] [ 6] [175108] +17:51:13 [ 13] [ 4] [0320] +17:51:13 [ 15] [ 4] [0320] +17:51:13 [ 18] [ 4] [6011] +17:51:13 [ 22] [ 3] [900] +17:51:13 [ 25] [ 2] [02] +17:51:13 [ 28] [ 9] [D00002000] +17:51:13 [ 32] [ 6] [621354] +17:51:13 [ 35] [ 37] [6688990106007303=43111231730367300000] +17:51:13 [ 37] [ 12] [507902474789] +17:51:13 [ 41] [ 8] [05003000] +17:51:13 [ 42] [ 15] [NATIVE ] +17:51:13 [ 43] [ 40] [LPB LAW COLLEGE LuangprabangLAO] +17:51:13 [ 49] [ 3] [418] +17:51:13 [ 52] [ 16] [FF82D6E425B820F7] +17:51:13 ============================================================================ +17:51:13 + + +waiting on router queue for slot.... +17:51:13 Sending to : <4> +17:51:13 ============================================================================ +17:51:14 ============================================================================ +17:51:14 Slot Id : <53> +17:51:14 Transaction Type : RESPONSE +17:51:14 Received From : +17:51:14 ============================================================================ +17:51:14 FNo. Len. Field Value +17:51:14 ============================================================================ +17:51:14 [ 1] [ 4] [0210] +17:51:14 [ 2] [ 16] [6688990106007303] +17:51:14 [ 3] [ 6] [011000] +17:51:14 [ 4] [ 12] [000002000000] +17:51:14 [ 11] [ 6] [820990] +17:51:14 [ 12] [ 6] [175108] +17:51:14 [ 15] [ 4] [0320] +17:51:14 [ 18] [ 4] [6011] +17:51:14 [ 32] [ 6] [621354] +17:51:14 [ 35] [ 37] [6688990106007303=43111231730367300000] +17:51:14 [ 37] [ 12] [507902474789] +17:51:14 [ 38] [ 6] [527522] +17:51:14 [ 39] [ 2] [00] +17:51:14 [ 41] [ 8] [05003000] +17:51:14 [ 49] [ 3] [418] +17:51:14 [ 54] [ 20] [1002418C000014919151] +17:51:14 ============================================================================ +17:51:14 Sending to : +17:51:14 ============================================================================ +17:51:14 + + +waiting on router queue for slot.... +17:51:15 ============================================================================ +17:51:15 Slot Id : <94> +17:51:15 Transaction Type : REQUEST +17:51:15 Received From : +17:51:15 ============================================================================ +17:51:15 FNo. Len. Field Value +17:51:15 ============================================================================ +17:51:15 [ 1] [ 4] [0800] +17:51:15 [ 7] [ 10] [0320105021] +17:51:15 [ 11] [ 6] [157560] +17:51:15 [ 70] [ 3] [301] +17:51:15 ============================================================================ +17:51:15 + + +waiting on router queue for slot.... +17:51:15 Sending to : +17:51:15 ============================================================================ +17:51:15 ============================================================================ +17:51:15 Slot Id : <94> +17:51:15 Transaction Type : RESPONSE +17:51:15 Received From : +17:51:15 ============================================================================ +17:51:15 FNo. Len. Field Value +17:51:15 ============================================================================ +17:51:15 [ 1] [ 4] [0810] +17:51:15 [ 7] [ 10] [0320105021] +17:51:15 [ 11] [ 6] [157560] +17:51:15 [ 39] [ 2] [00] +17:51:15 [ 70] [ 3] [301] +17:51:15 ============================================================================ +17:51:15 Calculate Source COMM Id = 2 +17:51:15 ============================================================================ +17:51:15 + + +waiting on router queue for slot.... +17:51:16 ============================================================================ +17:51:16 Slot Id : <53> +17:51:16 Transaction Type : RESPONSE +17:51:16 Received From : +17:51:16 ============================================================================ +17:51:16 FNo. Len. Field Value +17:51:16 ============================================================================ +17:51:16 [ 1] [ 4] [0210] +17:51:16 [ 2] [ 16] [6688990106007303] +17:51:16 [ 3] [ 6] [011000] +17:51:16 [ 4] [ 12] [000002000000] +17:51:16 [ 11] [ 6] [820990] +17:51:16 [ 12] [ 6] [175108] +17:51:16 [ 15] [ 4] [0320] +17:51:16 [ 18] [ 4] [6011] +17:51:16 [ 32] [ 6] [621354] +17:51:16 [ 35] [ 37] [6688990106007303=43111231730367300000] +17:51:16 [ 37] [ 12] [507902474789] +17:51:16 [ 38] [ 6] [527522] +17:51:16 [ 39] [ 2] [00] +17:51:16 [ 41] [ 8] [05003000] +17:51:16 [ 49] [ 3] [418] +17:51:16 [ 54] [ 20] [1002418C000014919151] +17:51:16 ============================================================================ +17:51:16 Calculate Source COMM Id = 0 +17:51:16 ============================================================================ +17:51:16 + + +waiting on router queue for slot.... +17:51:22 ============================================================================ +17:51:22 Slot Id : <134> +17:51:22 Transaction Type : REQUEST +17:51:22 Received From : +17:51:22 ============================================================================ +17:51:22 FNo. Len. Field Value +17:51:22 ============================================================================ +17:51:22 [ 1] [ 4] [0800] +17:51:22 [ 7] [ 10] [0320104912] +17:51:22 [ 11] [ 6] [003257] +17:51:22 [ 37] [ 12] [57917003257] +17:51:22 [ 70] [ 3] [301] +17:51:22 ============================================================================ +17:51:22 + + +waiting on router queue for slot.... +17:51:22 Sending to : +17:51:22 ============================================================================ +17:51:22 ============================================================================ +17:51:22 Slot Id : <134> +17:51:22 Transaction Type : RESPONSE +17:51:22 Received From : +17:51:22 ============================================================================ +17:51:22 FNo. Len. Field Value +17:51:22 ============================================================================ +17:51:22 [ 1] [ 4] [0810] +17:51:22 [ 7] [ 10] [0320104912] +17:51:22 [ 11] [ 6] [003257] +17:51:22 [ 37] [ 12] [579170032570] +17:51:22 [ 39] [ 2] [00] +17:51:22 [ 70] [ 3] [810] +17:51:22 ============================================================================ +17:51:22 Calculate Source COMM Id = 4 +17:51:22 ============================================================================ +17:51:22 + + +waiting on router queue for slot.... +17:51:22 ============================================================================ +17:51:22 Slot Id : <125> +17:51:22 Transaction Type : REQUEST +17:51:22 Received From : +17:51:22 ============================================================================ +17:51:22 FNo. Len. Field Value +17:51:22 ============================================================================ +17:51:22 [ 1] [ 4] [0200] +17:51:22 [ 2] [ 16] [6688990040141366] +17:51:22 [ 3] [ 6] [300000] +17:51:22 [ 4] [ 12] [000000000000] +17:51:22 [ 7] [ 10] [0320175117] +17:51:22 [ 11] [ 6] [821019] +17:51:22 [ 12] [ 6] [175117] +17:51:22 [ 13] [ 4] [0320] +17:51:22 [ 15] [ 4] [0320] +17:51:22 [ 18] [ 4] [6011] +17:51:22 [ 22] [ 3] [900] +17:51:22 [ 25] [ 2] [02] +17:51:22 [ 28] [ 9] [D00000000] +17:51:22 [ 32] [ 6] [621354] +17:51:22 [ 35] [ 37] [6688990040141366=98041261912646500000] +17:51:22 [ 37] [ 12] [507903499691] +17:51:22 [ 41] [ 8] [06002200] +17:51:22 [ 42] [ 15] [NATIVE ] +17:51:22 [ 43] [ 40] [Beng Market Beng LAO] +17:51:22 [ 49] [ 3] [418] +17:51:22 [ 52] [ 16] [0344988A90CC45EF] +17:51:22 ============================================================================ +17:51:22 + + +waiting on router queue for slot.... +17:51:22 Sending to : +17:51:22 ============================================================================ +17:51:22 Sending to : +17:51:22 ============================================================================ +17:51:22 ============================================================================ +17:51:22 Slot Id : <125> +17:51:22 Transaction Type : REQUEST +17:51:22 Received From : +17:51:22 ============================================================================ +17:51:22 FNo. Len. Field Value +17:51:22 ============================================================================ +17:51:22 [ 1] [ 4] [0200] +17:51:22 [ 2] [ 16] [6688990040141366] +17:51:22 [ 3] [ 6] [300000] +17:51:22 [ 4] [ 12] [000000000000] +17:51:22 [ 7] [ 10] [0320175117] +17:51:22 [ 11] [ 6] [821019] +17:51:22 [ 12] [ 6] [175117] +17:51:22 [ 13] [ 4] [0320] +17:51:22 [ 15] [ 4] [0320] +17:51:22 [ 18] [ 4] [6011] +17:51:22 [ 22] [ 3] [900] +17:51:22 [ 25] [ 2] [02] +17:51:22 [ 28] [ 9] [D00000000] +17:51:22 [ 32] [ 6] [621354] +17:51:22 [ 35] [ 37] [6688990040141366=98041261912646500000] +17:51:22 [ 37] [ 12] [507903499691] +17:51:22 [ 41] [ 8] [06002200] +17:51:22 [ 42] [ 15] [NATIVE ] +17:51:22 [ 43] [ 40] [Beng Market Beng LAO] +17:51:22 [ 49] [ 3] [418] +17:51:22 [ 52] [ 16] [0344988A90CC45EF] +17:51:22 ============================================================================ +17:51:22 + + +waiting on router queue for slot.... +17:51:22 Sending to : +17:51:22 ============================================================================ +17:51:22 ============================================================================ +17:51:22 Slot Id : <125> +17:51:22 Transaction Type : REQUEST +17:51:22 Received From : +17:51:22 ============================================================================ +17:51:22 FNo. Len. Field Value +17:51:22 ============================================================================ +17:51:22 [ 1] [ 4] [0200] +17:51:22 [ 2] [ 16] [6688990040141366] +17:51:22 [ 3] [ 6] [300000] +17:51:22 [ 4] [ 12] [000000000000] +17:51:22 [ 7] [ 10] [0320175117] +17:51:22 [ 11] [ 6] [821019] +17:51:22 [ 12] [ 6] [175117] +17:51:22 [ 13] [ 4] [0320] +17:51:22 [ 15] [ 4] [0320] +17:51:22 [ 18] [ 4] [6011] +17:51:22 [ 22] [ 3] [900] +17:51:22 [ 25] [ 2] [02] +17:51:22 [ 28] [ 9] [D00000000] +17:51:22 [ 32] [ 6] [621354] +17:51:22 [ 35] [ 37] [6688990040141366=98041261912646500000] +17:51:22 [ 37] [ 12] [507903499691] +17:51:22 [ 41] [ 8] [06002200] +17:51:22 [ 42] [ 15] [NATIVE ] +17:51:22 [ 43] [ 40] [Beng Market Beng LAO] +17:51:22 [ 49] [ 3] [418] +17:51:22 [ 52] [ 16] [8EF9352EA27FFFC5] +17:51:22 ============================================================================ +17:51:22 + + +waiting on router queue for slot.... +17:51:22 Sending to : <4> +17:51:22 ============================================================================ +17:51:23 ============================================================================ +17:51:23 Slot Id : <96> +17:51:23 Transaction Type : REQUEST +17:51:23 Received From : +17:51:23 ============================================================================ +17:51:23 FNo. Len. Field Value +17:51:23 ============================================================================ +17:51:23 [ 1] [ 4] [0800] +17:51:23 [ 7] [ 10] [0321010311] +17:51:23 [ 11] [ 6] [180311] +17:51:23 [ 37] [ 12] [57918180311] +17:51:23 [ 70] [ 3] [301] +17:51:23 ============================================================================ +17:51:23 + + +waiting on router queue for slot.... +17:51:23 Sending to : +17:51:23 ============================================================================ +17:51:23 ============================================================================ +17:51:23 Slot Id : <96> +17:51:23 Transaction Type : RESPONSE +17:51:23 Received From : +17:51:23 ============================================================================ +17:51:23 FNo. Len. Field Value +17:51:23 ============================================================================ +17:51:23 [ 1] [ 4] [0810] +17:51:23 [ 7] [ 10] [0321010311] +17:51:23 [ 11] [ 6] [180311] +17:51:23 [ 37] [ 12] [579181803110] +17:51:23 [ 39] [ 2] [00] +17:51:23 [ 70] [ 3] [810] +17:51:23 ============================================================================ +17:51:23 Calculate Source COMM Id = 6 +17:51:23 ============================================================================ +17:51:23 + + +waiting on router queue for slot.... +17:51:23 ============================================================================ +17:51:23 Slot Id : <125> +17:51:23 Transaction Type : RESPONSE +17:51:23 Received From : +17:51:23 ============================================================================ +17:51:23 FNo. Len. Field Value +17:51:23 ============================================================================ +17:51:23 [ 1] [ 4] [0210] +17:51:23 [ 2] [ 16] [6688990040141366] +17:51:23 [ 3] [ 6] [300000] +17:51:23 [ 4] [ 12] [000000000000] +17:51:23 [ 11] [ 6] [821019] +17:51:23 [ 12] [ 6] [175117] +17:51:23 [ 15] [ 4] [0320] +17:51:23 [ 18] [ 4] [6011] +17:51:23 [ 32] [ 6] [621354] +17:51:23 [ 35] [ 37] [6688990040141366=98041261912646500000] +17:51:23 [ 37] [ 12] [507903499691] +17:51:23 [ 38] [ 6] [365374] +17:51:23 [ 39] [ 2] [00] +17:51:23 [ 41] [ 8] [06002200] +17:51:23 [ 49] [ 3] [418] +17:51:23 [ 54] [ 20] [0002418C000291772159] +17:51:23 ============================================================================ +17:51:23 Sending to : +17:51:23 ============================================================================ +17:51:23 + + +waiting on router queue for slot.... +17:51:25 ============================================================================ +17:51:25 Slot Id : <125> +17:51:25 Transaction Type : RESPONSE +17:51:25 Received From : +17:51:25 ============================================================================ +17:51:25 FNo. Len. Field Value +17:51:25 ============================================================================ +17:51:25 [ 1] [ 4] [0210] +17:51:25 [ 2] [ 16] [6688990040141366] +17:51:25 [ 3] [ 6] [300000] +17:51:25 [ 4] [ 12] [000000000000] +17:51:25 [ 11] [ 6] [821019] +17:51:25 [ 12] [ 6] [175117] +17:51:25 [ 15] [ 4] [0320] +17:51:25 [ 18] [ 4] [6011] +17:51:25 [ 32] [ 6] [621354] +17:51:25 [ 35] [ 37] [6688990040141366=98041261912646500000] +17:51:25 [ 37] [ 12] [507903499691] +17:51:25 [ 38] [ 6] [365374] +17:51:25 [ 39] [ 2] [00] +17:51:25 [ 41] [ 8] [06002200] +17:51:25 [ 49] [ 3] [418] +17:51:25 [ 54] [ 20] [0002418C000291772159] +17:51:25 ============================================================================ +17:51:25 Calculate Source COMM Id = 0 +17:51:25 ============================================================================ +17:51:25 + + +waiting on router queue for slot.... +17:51:26 ============================================================================ +17:51:26 Slot Id : <103> +17:51:26 Transaction Type : REQUEST +17:51:26 Received From : +17:51:26 ============================================================================ +17:51:26 FNo. Len. Field Value +17:51:26 ============================================================================ +17:51:26 [ 1] [ 4] [0800] +17:51:26 [ 7] [ 10] [0320105032] +17:51:26 [ 11] [ 6] [157561] +17:51:26 [ 70] [ 3] [301] +17:51:26 ============================================================================ +17:51:26 + + +waiting on router queue for slot.... +17:51:26 Sending to : +17:51:26 ============================================================================ +17:51:26 ============================================================================ +17:51:26 Slot Id : <103> +17:51:26 Transaction Type : RESPONSE +17:51:26 Received From : +17:51:26 ============================================================================ +17:51:26 FNo. Len. Field Value +17:51:26 ============================================================================ +17:51:26 [ 1] [ 4] [0810] +17:51:26 [ 7] [ 10] [0320105032] +17:51:26 [ 11] [ 6] [157561] +17:51:26 [ 39] [ 2] [00] +17:51:26 [ 70] [ 3] [301] +17:51:26 ============================================================================ +17:51:26 Calculate Source COMM Id = 2 +17:51:26 ============================================================================ +17:51:26 + + +waiting on router queue for slot.... +17:51:26 ============================================================================ +17:51:26 Slot Id : <101> +17:51:26 Transaction Type : REQUEST +17:51:26 Received From : +17:51:26 ============================================================================ +17:51:26 FNo. Len. Field Value +17:51:26 ============================================================================ +17:51:26 [ 1] [ 4] [0200] +17:51:26 [ 2] [ 16] [6213541000020787] +17:51:26 [ 3] [ 6] [010000] +17:51:26 [ 4] [ 12] [000100000000] +17:51:26 [ 7] [ 10] [0320175913] +17:51:26 [ 11] [ 6] [189045] +17:51:26 [ 12] [ 6] [175913] +17:51:26 [ 13] [ 4] [0320] +17:51:26 [ 14] [ 4] [4912] +17:51:26 [ 15] [ 4] [0320] +17:51:26 [ 18] [ 4] [6011] +17:51:26 [ 22] [ 3] [900] +17:51:26 [ 25] [ 2] [02] +17:51:26 [ 28] [ 9] [D00002000] +17:51:26 [ 32] [ 6] [220699] +17:51:26 [ 35] [ 32] [6213541000020787=491212012078982] +17:51:26 [ 37] [ 12] [507900084376] +17:51:26 [ 41] [ 8] [01000800] +17:51:26 [ 42] [ 15] [APTRA ] +17:51:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:51:26 [ 49] [ 3] [418] +17:51:26 [ 52] [ 16] [13E3D318C79F4BE2] +17:51:26 ============================================================================ +17:51:26 + + +waiting on router queue for slot.... +17:51:26 Sending to : +17:51:26 ============================================================================ +17:51:26 Sending to : +17:51:26 ============================================================================ +17:51:26 ============================================================================ +17:51:26 Slot Id : <101> +17:51:26 Transaction Type : REQUEST +17:51:26 Received From : +17:51:26 ============================================================================ +17:51:26 FNo. Len. Field Value +17:51:26 ============================================================================ +17:51:26 [ 1] [ 4] [0200] +17:51:26 [ 2] [ 16] [6213541000020787] +17:51:26 [ 3] [ 6] [010000] +17:51:26 [ 4] [ 12] [000100000000] +17:51:26 [ 7] [ 10] [0320175913] +17:51:26 [ 11] [ 6] [189045] +17:51:26 [ 12] [ 6] [175913] +17:51:26 [ 13] [ 4] [0320] +17:51:26 [ 14] [ 4] [4912] +17:51:26 [ 15] [ 4] [0320] +17:51:26 [ 18] [ 4] [6011] +17:51:26 [ 22] [ 3] [900] +17:51:26 [ 25] [ 2] [02] +17:51:26 [ 28] [ 9] [D00002000] +17:51:26 [ 32] [ 6] [220699] +17:51:26 [ 35] [ 32] [6213541000020787=491212012078982] +17:51:26 [ 37] [ 12] [507900084376] +17:51:26 [ 41] [ 8] [01000800] +17:51:26 [ 42] [ 15] [APTRA ] +17:51:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:51:26 [ 49] [ 3] [418] +17:51:26 [ 52] [ 16] [13E3D318C79F4BE2] +17:51:26 ============================================================================ +17:51:26 + + +waiting on router queue for slot.... +17:51:26 Sending to : +17:51:26 ============================================================================ +17:51:26 ============================================================================ +17:51:26 Slot Id : <101> +17:51:26 Transaction Type : REQUEST +17:51:26 Received From : +17:51:26 ============================================================================ +17:51:26 FNo. Len. Field Value +17:51:26 ============================================================================ +17:51:26 [ 1] [ 4] [0200] +17:51:26 [ 2] [ 16] [6213541000020787] +17:51:26 [ 3] [ 6] [010000] +17:51:26 [ 4] [ 12] [000100000000] +17:51:26 [ 7] [ 10] [0320175913] +17:51:26 [ 11] [ 6] [189045] +17:51:26 [ 12] [ 6] [175913] +17:51:26 [ 13] [ 4] [0320] +17:51:26 [ 14] [ 4] [4912] +17:51:26 [ 15] [ 4] [0320] +17:51:26 [ 18] [ 4] [6011] +17:51:26 [ 22] [ 3] [900] +17:51:26 [ 25] [ 2] [02] +17:51:26 [ 28] [ 9] [D00002000] +17:51:26 [ 32] [ 6] [220699] +17:51:26 [ 35] [ 32] [6213541000020787=491212012078982] +17:51:26 [ 37] [ 12] [507900084376] +17:51:26 [ 41] [ 8] [01000800] +17:51:26 [ 42] [ 15] [APTRA ] +17:51:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:51:26 [ 49] [ 3] [418] +17:51:26 [ 52] [ 16] [25BBCDF6F035701F] +17:51:26 ============================================================================ +17:51:26 + + +waiting on router queue for slot.... +17:51:26 Sending to : <0> +17:51:26 ============================================================================ +17:51:28 ============================================================================ +17:51:28 Slot Id : <101> +17:51:28 Transaction Type : RESPONSE +17:51:28 Received From : +17:51:28 ============================================================================ +17:51:28 FNo. Len. Field Value +17:51:28 ============================================================================ +17:51:28 [ 1] [ 4] [0210] +17:51:28 [ 2] [ 16] [6213541000020787] +17:51:28 [ 3] [ 6] [010000] +17:51:28 [ 4] [ 12] [000100000000] +17:51:28 [ 7] [ 10] [0320175913] +17:51:28 [ 11] [ 6] [189045] +17:51:28 [ 12] [ 6] [175913] +17:51:28 [ 13] [ 4] [0320] +17:51:28 [ 15] [ 4] [0320] +17:51:28 [ 18] [ 4] [6011] +17:51:28 [ 32] [ 6] [220699] +17:51:28 [ 35] [ 32] [6213541000020787=491212012078982] +17:51:28 [ 37] [ 12] [507900084376] +17:51:28 [ 38] [ 6] [528513] +17:51:28 [ 39] [ 2] [00] +17:51:28 [ 41] [ 8] [01000800] +17:51:28 [ 49] [ 3] [418] +17:51:28 [ 54] [ 40] [0001418C0022926309640002418C002292630964] +17:51:28 ============================================================================ +17:51:28 Sending to : +17:51:28 ============================================================================ +17:51:28 + + +waiting on router queue for slot.... +17:51:29 ============================================================================ +17:51:29 Slot Id : <101> +17:51:29 Transaction Type : RESPONSE +17:51:29 Received From : +17:51:29 ============================================================================ +17:51:29 FNo. Len. Field Value +17:51:29 ============================================================================ +17:51:29 [ 1] [ 4] [0210] +17:51:29 [ 2] [ 16] [6213541000020787] +17:51:29 [ 3] [ 6] [010000] +17:51:29 [ 4] [ 12] [000100000000] +17:51:29 [ 7] [ 10] [0320175913] +17:51:29 [ 11] [ 6] [189045] +17:51:29 [ 12] [ 6] [175913] +17:51:29 [ 13] [ 4] [0320] +17:51:29 [ 15] [ 4] [0320] +17:51:29 [ 18] [ 4] [6011] +17:51:29 [ 32] [ 6] [220699] +17:51:29 [ 35] [ 32] [6213541000020787=491212012078982] +17:51:29 [ 37] [ 12] [507900084376] +17:51:29 [ 38] [ 6] [528513] +17:51:29 [ 39] [ 2] [00] +17:51:29 [ 41] [ 8] [01000800] +17:51:29 [ 49] [ 3] [418] +17:51:29 [ 54] [ 40] [0001418C0022926309640002418C002292630964] +17:51:29 ============================================================================ +17:51:29 Calculate Source COMM Id = 1 +17:51:29 ============================================================================ +17:51:29 + + +waiting on router queue for slot.... +17:51:36 ============================================================================ +17:51:36 Slot Id : <70> +17:51:36 Transaction Type : REQUEST +17:51:36 Received From : +17:51:36 ============================================================================ +17:51:36 FNo. Len. Field Value +17:51:36 ============================================================================ +17:51:36 [ 1] [ 4] [0800] +17:51:36 [ 7] [ 10] [0320105043] +17:51:36 [ 11] [ 6] [157562] +17:51:36 [ 70] [ 3] [301] +17:51:36 ============================================================================ +17:51:36 + + +waiting on router queue for slot.... +17:51:36 Sending to : +17:51:36 ============================================================================ +17:51:36 ============================================================================ +17:51:36 Slot Id : <70> +17:51:36 Transaction Type : RESPONSE +17:51:36 Received From : +17:51:36 ============================================================================ +17:51:36 FNo. Len. Field Value +17:51:36 ============================================================================ +17:51:36 [ 1] [ 4] [0810] +17:51:36 [ 7] [ 10] [0320105043] +17:51:36 [ 11] [ 6] [157562] +17:51:36 [ 39] [ 2] [00] +17:51:36 [ 70] [ 3] [301] +17:51:36 ============================================================================ +17:51:36 Calculate Source COMM Id = 2 +17:51:36 ============================================================================ +17:51:36 + + +waiting on router queue for slot.... +17:51:47 ============================================================================ +17:51:47 Slot Id : <109> +17:51:47 Transaction Type : REQUEST +17:51:47 Received From : +17:51:47 ============================================================================ +17:51:47 FNo. Len. Field Value +17:51:47 ============================================================================ +17:51:47 [ 1] [ 4] [0800] +17:51:47 [ 7] [ 10] [0320105054] +17:51:47 [ 11] [ 6] [157563] +17:51:47 [ 70] [ 3] [301] +17:51:47 ============================================================================ +17:51:47 + + +waiting on router queue for slot.... +17:51:47 Sending to : +17:51:47 ============================================================================ +17:51:47 ============================================================================ +17:51:47 Slot Id : <109> +17:51:47 Transaction Type : RESPONSE +17:51:47 Received From : +17:51:47 ============================================================================ +17:51:47 FNo. Len. Field Value +17:51:47 ============================================================================ +17:51:47 [ 1] [ 4] [0810] +17:51:47 [ 7] [ 10] [0320105054] +17:51:47 [ 11] [ 6] [157563] +17:51:47 [ 39] [ 2] [00] +17:51:47 [ 70] [ 3] [301] +17:51:47 ============================================================================ +17:51:47 Calculate Source COMM Id = 2 +17:51:47 ============================================================================ +17:51:47 + + +waiting on router queue for slot.... +17:52:03 ============================================================================ +17:52:03 Slot Id : <77> +17:52:03 Transaction Type : REQUEST +17:52:03 Received From : +17:52:03 ============================================================================ +17:52:03 FNo. Len. Field Value +17:52:03 ============================================================================ +17:52:03 [ 1] [ 4] [0800] +17:52:03 [ 7] [ 10] [0320105110] +17:52:03 [ 11] [ 6] [157564] +17:52:03 [ 70] [ 3] [301] +17:52:03 ============================================================================ +17:52:03 + + +waiting on router queue for slot.... +17:52:03 Sending to : +17:52:03 ============================================================================ +17:52:03 ============================================================================ +17:52:03 Slot Id : <77> +17:52:03 Transaction Type : RESPONSE +17:52:03 Received From : +17:52:03 ============================================================================ +17:52:03 FNo. Len. Field Value +17:52:03 ============================================================================ +17:52:03 [ 1] [ 4] [0810] +17:52:03 [ 7] [ 10] [0320105110] +17:52:03 [ 11] [ 6] [157564] +17:52:03 [ 39] [ 2] [00] +17:52:03 [ 70] [ 3] [301] +17:52:03 ============================================================================ +17:52:03 Calculate Source COMM Id = 2 +17:52:03 ============================================================================ +17:52:03 + + +waiting on router queue for slot.... +17:52:07 ============================================================================ +17:52:07 Slot Id : <102> +17:52:07 Transaction Type : REQUEST +17:52:07 Received From : +17:52:07 ============================================================================ +17:52:07 FNo. Len. Field Value +17:52:07 ============================================================================ +17:52:07 [ 1] [ 4] [0200] +17:52:07 [ 2] [ 16] [1808930600028294] +17:52:07 [ 3] [ 6] [011000] +17:52:07 [ 4] [ 12] [000050000000] +17:52:07 [ 7] [ 10] [0320175954] +17:52:07 [ 11] [ 6] [240522] +17:52:07 [ 12] [ 6] [175954] +17:52:07 [ 13] [ 4] [0320] +17:52:07 [ 14] [ 4] [1803] +17:52:07 [ 15] [ 4] [0320] +17:52:07 [ 18] [ 4] [6011] +17:52:07 [ 22] [ 3] [900] +17:52:07 [ 25] [ 2] [02] +17:52:07 [ 28] [ 9] [D00002000] +17:52:07 [ 32] [ 6] [220699] +17:52:07 [ 35] [ 27] [1808930600028294=1803500255] +17:52:07 [ 37] [ 12] [507900360255] +17:52:07 [ 41] [ 8] [05000300] +17:52:07 [ 42] [ 15] [APTRA ] +17:52:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:52:07 [ 49] [ 3] [418] +17:52:07 [ 52] [ 16] [D0D28F8202C07D96] +17:52:07 ============================================================================ +17:52:07 + + +waiting on router queue for slot.... +17:52:07 Sending to : +17:52:07 ============================================================================ +17:52:07 Sending to : +17:52:07 ============================================================================ +17:52:07 ============================================================================ +17:52:07 Slot Id : <102> +17:52:07 Transaction Type : REQUEST +17:52:07 Received From : +17:52:07 ============================================================================ +17:52:07 FNo. Len. Field Value +17:52:07 ============================================================================ +17:52:07 [ 1] [ 4] [0200] +17:52:07 [ 2] [ 16] [1808930600028294] +17:52:07 [ 3] [ 6] [011000] +17:52:07 [ 4] [ 12] [000050000000] +17:52:07 [ 7] [ 10] [0320175954] +17:52:07 [ 11] [ 6] [240522] +17:52:07 [ 12] [ 6] [175954] +17:52:07 [ 13] [ 4] [0320] +17:52:07 [ 14] [ 4] [1803] +17:52:07 [ 15] [ 4] [0320] +17:52:07 [ 18] [ 4] [6011] +17:52:07 [ 22] [ 3] [900] +17:52:07 [ 25] [ 2] [02] +17:52:07 [ 28] [ 9] [D00002000] +17:52:07 [ 32] [ 6] [220699] +17:52:07 [ 35] [ 27] [1808930600028294=1803500255] +17:52:07 [ 37] [ 12] [507900360255] +17:52:07 [ 41] [ 8] [05000300] +17:52:07 [ 42] [ 15] [APTRA ] +17:52:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:52:07 [ 49] [ 3] [418] +17:52:07 [ 52] [ 16] [D0D28F8202C07D96] +17:52:07 ============================================================================ +17:52:07 + + +waiting on router queue for slot.... +17:52:07 Sending to : +17:52:07 ============================================================================ +17:52:07 ============================================================================ +17:52:07 Slot Id : <102> +17:52:07 Transaction Type : REQUEST +17:52:07 Received From : +17:52:07 ============================================================================ +17:52:07 FNo. Len. Field Value +17:52:07 ============================================================================ +17:52:07 [ 1] [ 4] [0200] +17:52:07 [ 2] [ 16] [1808930600028294] +17:52:07 [ 3] [ 6] [011000] +17:52:07 [ 4] [ 12] [000050000000] +17:52:07 [ 7] [ 10] [0320175954] +17:52:07 [ 11] [ 6] [240522] +17:52:07 [ 12] [ 6] [175954] +17:52:07 [ 13] [ 4] [0320] +17:52:07 [ 14] [ 4] [1803] +17:52:07 [ 15] [ 4] [0320] +17:52:07 [ 18] [ 4] [6011] +17:52:07 [ 22] [ 3] [900] +17:52:07 [ 25] [ 2] [02] +17:52:07 [ 28] [ 9] [D00002000] +17:52:07 [ 32] [ 6] [220699] +17:52:07 [ 35] [ 27] [1808930600028294=1803500255] +17:52:07 [ 37] [ 12] [507900360255] +17:52:07 [ 41] [ 8] [05000300] +17:52:07 [ 42] [ 15] [APTRA ] +17:52:07 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:52:07 [ 49] [ 3] [418] +17:52:07 [ 52] [ 16] [F7EF3E7C97A54C48] +17:52:07 ============================================================================ +17:52:07 + + +waiting on router queue for slot.... +17:52:07 Sending to : <2> +17:52:07 ============================================================================ +17:52:11 ============================================================================ +17:52:11 Slot Id : <102> +17:52:11 Transaction Type : RESPONSE +17:52:11 Received From : +17:52:11 ============================================================================ +17:52:11 FNo. Len. Field Value +17:52:11 ============================================================================ +17:52:11 [ 1] [ 4] [0210] +17:52:11 [ 2] [ 16] [1808930600028294] +17:52:11 [ 3] [ 6] [011000] +17:52:11 [ 4] [ 12] [000050000000] +17:52:11 [ 6] [ 12] [000050000000] +17:52:11 [ 7] [ 10] [0320175954] +17:52:11 [ 11] [ 6] [240522] +17:52:11 [ 12] [ 6] [175954] +17:52:11 [ 13] [ 4] [0320] +17:52:11 [ 14] [ 4] [1803] +17:52:11 [ 18] [ 4] [6011] +17:52:11 [ 19] [ 3] [418] +17:52:11 [ 22] [ 3] [021] +17:52:11 [ 32] [ 6] [220699] +17:52:11 [ 35] [ 27] [1808930600028294=1803500255] +17:52:11 [ 37] [ 12] [507900360255] +17:52:11 [ 38] [ 6] [240522] +17:52:11 [ 39] [ 2] [00] +17:52:11 [ 41] [ 8] [05000300] +17:52:11 [ 49] [ 3] [418] +17:52:11 [ 52] [ 16] [F7EF3E7C97A54C48] +17:52:11 [ 54] [ 20] [1001418C002028595300] +17:52:11 ============================================================================ +17:52:11 Sending to : +17:52:11 ============================================================================ +17:52:11 + + +waiting on router queue for slot.... +17:52:12 ============================================================================ +17:52:12 Slot Id : <102> +17:52:12 Transaction Type : RESPONSE +17:52:12 Received From : +17:52:12 ============================================================================ +17:52:12 FNo. Len. Field Value +17:52:12 ============================================================================ +17:52:12 [ 1] [ 4] [0210] +17:52:12 [ 2] [ 16] [1808930600028294] +17:52:12 [ 3] [ 6] [011000] +17:52:12 [ 4] [ 12] [000050000000] +17:52:12 [ 6] [ 12] [000050000000] +17:52:12 [ 7] [ 10] [0320175954] +17:52:12 [ 11] [ 6] [240522] +17:52:12 [ 12] [ 6] [175954] +17:52:12 [ 13] [ 4] [0320] +17:52:12 [ 14] [ 4] [1803] +17:52:12 [ 18] [ 4] [6011] +17:52:12 [ 19] [ 3] [418] +17:52:12 [ 22] [ 3] [021] +17:52:12 [ 32] [ 6] [220699] +17:52:12 [ 35] [ 27] [1808930600028294=1803500255] +17:52:12 [ 37] [ 12] [507900360255] +17:52:12 [ 38] [ 6] [240522] +17:52:12 [ 39] [ 2] [00] +17:52:12 [ 41] [ 8] [05000300] +17:52:12 [ 49] [ 3] [418] +17:52:12 [ 52] [ 16] [F7EF3E7C97A54C48] +17:52:12 [ 54] [ 20] [1001418C002028595300] +17:52:12 ============================================================================ +17:52:12 Calculate Source COMM Id = 1 +17:52:12 ============================================================================ +17:52:12 + + +waiting on router queue for slot.... +17:52:13 ============================================================================ +17:52:13 Slot Id : <136> +17:52:13 Transaction Type : REQUEST +17:52:13 Received From : +17:52:13 ============================================================================ +17:52:13 FNo. Len. Field Value +17:52:13 ============================================================================ +17:52:13 [ 1] [ 4] [0800] +17:52:13 [ 2] [ 5] [02531] +17:52:13 [ 3] [ 6] [579178] +17:52:13 [ 7] [ 10] [0320105213] +17:52:13 [ 11] [ 6] [807449] +17:52:13 [ 15] [ 10] [0320105213] +17:52:13 [ 37] [ 11] [57917807449] +17:52:13 [ 70] [ 3] [001] +17:52:13 ============================================================================ +17:52:13 + + +waiting on router queue for slot.... +17:52:13 ============================================================================ +17:52:13 Slot Id : <136> +17:52:13 Transaction Type : RESPONSE +17:52:13 Received From : +17:52:13 ============================================================================ +17:52:13 FNo. Len. Field Value +17:52:13 ============================================================================ +17:52:13 [ 1] [ 4] [0810] +17:52:13 [ 7] [ 10] [0320105213] +17:52:13 [ 11] [ 6] [807449] +17:52:13 [ 15] [ 4] [0320] +17:52:13 [ 37] [ 12] [57917807449] +17:52:13 [ 39] [ 2] [00] +17:52:13 [ 70] [ 3] [001] +17:52:13 ============================================================================ +17:52:13 Sending to : +17:52:13 ============================================================================ +17:52:13 + + +waiting on router queue for slot.... +17:52:14 ============================================================================ +17:52:14 Slot Id : <71> +17:52:14 Transaction Type : REQUEST +17:52:14 Received From : +17:52:14 ============================================================================ +17:52:14 FNo. Len. Field Value +17:52:14 ============================================================================ +17:52:14 [ 1] [ 4] [0200] +17:52:14 [ 2] [ 16] [6688990106952904] +17:52:14 [ 3] [ 6] [011000] +17:52:14 [ 4] [ 12] [000010000000] +17:52:14 [ 7] [ 10] [0320175209] +17:52:14 [ 11] [ 6] [821192] +17:52:14 [ 12] [ 6] [175209] +17:52:14 [ 13] [ 4] [0320] +17:52:14 [ 15] [ 4] [0320] +17:52:14 [ 18] [ 4] [6011] +17:52:14 [ 22] [ 3] [900] +17:52:14 [ 25] [ 2] [02] +17:52:14 [ 28] [ 9] [D00002000] +17:52:14 [ 32] [ 6] [621354] +17:52:14 [ 35] [ 37] [6688990106952904=44011231290429300000] +17:52:14 [ 37] [ 12] [507904635968] +17:52:14 [ 41] [ 8] [17000800] +17:52:14 [ 42] [ 15] [NATIVE ] +17:52:14 [ 43] [ 40] [Ban Nakhai Naxay LAO] +17:52:14 [ 49] [ 3] [418] +17:52:14 [ 52] [ 16] [6EC81D62FA50541D] +17:52:14 ============================================================================ +17:52:14 + + +waiting on router queue for slot.... +17:52:14 Sending to : +17:52:14 ============================================================================ +17:52:14 Sending to : +17:52:14 ============================================================================ +17:52:15 ============================================================================ +17:52:15 Slot Id : <71> +17:52:15 Transaction Type : REQUEST +17:52:15 Received From : +17:52:15 ============================================================================ +17:52:15 FNo. Len. Field Value +17:52:15 ============================================================================ +17:52:15 [ 1] [ 4] [0200] +17:52:15 [ 2] [ 16] [6688990106952904] +17:52:15 [ 3] [ 6] [011000] +17:52:15 [ 4] [ 12] [000010000000] +17:52:15 [ 7] [ 10] [0320175209] +17:52:15 [ 11] [ 6] [821192] +17:52:15 [ 12] [ 6] [175209] +17:52:15 [ 13] [ 4] [0320] +17:52:15 [ 15] [ 4] [0320] +17:52:15 [ 18] [ 4] [6011] +17:52:15 [ 22] [ 3] [900] +17:52:15 [ 25] [ 2] [02] +17:52:15 [ 28] [ 9] [D00002000] +17:52:15 [ 32] [ 6] [621354] +17:52:15 [ 35] [ 37] [6688990106952904=44011231290429300000] +17:52:15 [ 37] [ 12] [507904635968] +17:52:15 [ 41] [ 8] [17000800] +17:52:15 [ 42] [ 15] [NATIVE ] +17:52:15 [ 43] [ 40] [Ban Nakhai Naxay LAO] +17:52:15 [ 49] [ 3] [418] +17:52:15 [ 52] [ 16] [6EC81D62FA50541D] +17:52:15 ============================================================================ +17:52:15 + + +waiting on router queue for slot.... +17:52:15 Sending to : +17:52:15 ============================================================================ +17:52:15 ============================================================================ +17:52:15 Slot Id : <71> +17:52:15 Transaction Type : REQUEST +17:52:15 Received From : +17:52:15 ============================================================================ +17:52:15 FNo. Len. Field Value +17:52:15 ============================================================================ +17:52:15 [ 1] [ 4] [0200] +17:52:15 [ 2] [ 16] [6688990106952904] +17:52:15 [ 3] [ 6] [011000] +17:52:15 [ 4] [ 12] [000010000000] +17:52:15 [ 7] [ 10] [0320175209] +17:52:15 [ 11] [ 6] [821192] +17:52:15 [ 12] [ 6] [175209] +17:52:15 [ 13] [ 4] [0320] +17:52:15 [ 15] [ 4] [0320] +17:52:15 [ 18] [ 4] [6011] +17:52:15 [ 22] [ 3] [900] +17:52:15 [ 25] [ 2] [02] +17:52:15 [ 28] [ 9] [D00002000] +17:52:15 [ 32] [ 6] [621354] +17:52:15 [ 35] [ 37] [6688990106952904=44011231290429300000] +17:52:15 [ 37] [ 12] [507904635968] +17:52:15 [ 41] [ 8] [17000800] +17:52:15 [ 42] [ 15] [NATIVE ] +17:52:15 [ 43] [ 40] [Ban Nakhai Naxay LAO] +17:52:15 [ 49] [ 3] [418] +17:52:15 [ 52] [ 16] [44306EB8D360CC63] +17:52:15 ============================================================================ +17:52:15 + + +waiting on router queue for slot.... +17:52:15 Sending to : <4> +17:52:15 ============================================================================ +17:52:16 ============================================================================ +17:52:16 Slot Id : <71> +17:52:16 Transaction Type : RESPONSE +17:52:16 Received From : +17:52:16 ============================================================================ +17:52:16 FNo. Len. Field Value +17:52:16 ============================================================================ +17:52:16 [ 1] [ 4] [0210] +17:52:16 [ 2] [ 16] [6688990106952904] +17:52:16 [ 3] [ 6] [011000] +17:52:16 [ 4] [ 12] [000010000000] +17:52:16 [ 11] [ 6] [821192] +17:52:16 [ 12] [ 6] [175209] +17:52:16 [ 15] [ 4] [0320] +17:52:16 [ 18] [ 4] [6011] +17:52:16 [ 32] [ 6] [621354] +17:52:16 [ 35] [ 37] [6688990106952904=44011231290429300000] +17:52:16 [ 37] [ 12] [507904635968] +17:52:16 [ 38] [ 6] [920427] +17:52:16 [ 39] [ 2] [00] +17:52:16 [ 41] [ 8] [17000800] +17:52:16 [ 49] [ 3] [418] +17:52:16 [ 54] [ 20] [1002418C000051494810] +17:52:16 ============================================================================ +17:52:16 Sending to : +17:52:16 ============================================================================ +17:52:16 + + +waiting on router queue for slot.... +17:52:18 ============================================================================ +17:52:18 Slot Id : <71> +17:52:18 Transaction Type : RESPONSE +17:52:18 Received From : +17:52:18 ============================================================================ +17:52:18 FNo. Len. Field Value +17:52:18 ============================================================================ +17:52:18 [ 1] [ 4] [0210] +17:52:18 [ 2] [ 16] [6688990106952904] +17:52:18 [ 3] [ 6] [011000] +17:52:18 [ 4] [ 12] [000010000000] +17:52:18 [ 11] [ 6] [821192] +17:52:18 [ 12] [ 6] [175209] +17:52:18 [ 15] [ 4] [0320] +17:52:18 [ 18] [ 4] [6011] +17:52:18 [ 32] [ 6] [621354] +17:52:18 [ 35] [ 37] [6688990106952904=44011231290429300000] +17:52:18 [ 37] [ 12] [507904635968] +17:52:18 [ 38] [ 6] [920427] +17:52:18 [ 39] [ 2] [00] +17:52:18 [ 41] [ 8] [17000800] +17:52:18 [ 49] [ 3] [418] +17:52:18 [ 54] [ 20] [1002418C000051494810] +17:52:18 ============================================================================ +17:52:18 Calculate Source COMM Id = 0 +17:52:18 ============================================================================ +17:52:18 + + +waiting on router queue for slot.... +17:52:19 ============================================================================ +17:52:19 Slot Id : <85> +17:52:19 Transaction Type : REQUEST +17:52:19 Received From : +17:52:19 ============================================================================ +17:52:19 FNo. Len. Field Value +17:52:19 ============================================================================ +17:52:19 [ 1] [ 4] [0800] +17:52:19 [ 7] [ 10] [0320105126] +17:52:19 [ 11] [ 6] [157565] +17:52:19 [ 70] [ 3] [301] +17:52:19 ============================================================================ +17:52:19 + + +waiting on router queue for slot.... +17:52:19 Sending to : +17:52:19 ============================================================================ +17:52:19 ============================================================================ +17:52:19 Slot Id : <85> +17:52:19 Transaction Type : RESPONSE +17:52:19 Received From : +17:52:19 ============================================================================ +17:52:19 FNo. Len. Field Value +17:52:19 ============================================================================ +17:52:19 [ 1] [ 4] [0810] +17:52:19 [ 7] [ 10] [0320105126] +17:52:19 [ 11] [ 6] [157565] +17:52:19 [ 39] [ 2] [00] +17:52:19 [ 70] [ 3] [301] +17:52:19 ============================================================================ +17:52:19 Calculate Source COMM Id = 2 +17:52:19 ============================================================================ +17:52:19 + + +waiting on router queue for slot.... +17:52:28 ============================================================================ +17:52:28 Slot Id : <105> +17:52:28 Transaction Type : REQUEST +17:52:28 Received From : +17:52:28 ============================================================================ +17:52:28 FNo. Len. Field Value +17:52:28 ============================================================================ +17:52:28 [ 1] [ 4] [0800] +17:52:28 [ 7] [ 10] [0321010416] +17:52:28 [ 11] [ 6] [180416] +17:52:28 [ 37] [ 12] [57918180416] +17:52:28 [ 70] [ 3] [301] +17:52:28 ============================================================================ +17:52:28 + + +waiting on router queue for slot.... +17:52:28 Sending to : +17:52:28 ============================================================================ +17:52:28 ============================================================================ +17:52:28 Slot Id : <105> +17:52:28 Transaction Type : RESPONSE +17:52:28 Received From : +17:52:28 ============================================================================ +17:52:28 FNo. Len. Field Value +17:52:28 ============================================================================ +17:52:28 [ 1] [ 4] [0810] +17:52:28 [ 7] [ 10] [0321010416] +17:52:28 [ 11] [ 6] [180416] +17:52:28 [ 37] [ 12] [579181804160] +17:52:28 [ 39] [ 2] [00] +17:52:28 [ 70] [ 3] [810] +17:52:28 ============================================================================ +17:52:28 Calculate Source COMM Id = 6 +17:52:28 ============================================================================ +17:52:28 + + +waiting on router queue for slot.... +17:52:30 ============================================================================ +17:52:30 Slot Id : <129> +17:52:30 Transaction Type : REQUEST +17:52:30 Received From : +17:52:30 ============================================================================ +17:52:30 FNo. Len. Field Value +17:52:30 ============================================================================ +17:52:30 [ 1] [ 4] [0800] +17:52:30 [ 7] [ 10] [0320105137] +17:52:30 [ 11] [ 6] [157566] +17:52:30 [ 70] [ 3] [301] +17:52:30 ============================================================================ +17:52:30 + + +waiting on router queue for slot.... +17:52:30 Sending to : +17:52:30 ============================================================================ +17:52:30 ============================================================================ +17:52:30 Slot Id : <129> +17:52:30 Transaction Type : RESPONSE +17:52:30 Received From : +17:52:30 ============================================================================ +17:52:30 FNo. Len. Field Value +17:52:30 ============================================================================ +17:52:30 [ 1] [ 4] [0810] +17:52:30 [ 7] [ 10] [0320105137] +17:52:30 [ 11] [ 6] [157566] +17:52:30 [ 39] [ 2] [00] +17:52:30 [ 70] [ 3] [301] +17:52:30 ============================================================================ +17:52:30 Calculate Source COMM Id = 2 +17:52:30 ============================================================================ +17:52:30 + + +waiting on router queue for slot.... +17:52:31 ============================================================================ +17:52:31 Slot Id : <116> +17:52:31 Transaction Type : REQUEST +17:52:31 Received From : +17:52:31 ============================================================================ +17:52:31 FNo. Len. Field Value +17:52:31 ============================================================================ +17:52:31 [ 1] [ 4] [0200] +17:52:31 [ 2] [ 16] [6688990040141366] +17:52:31 [ 3] [ 6] [012000] +17:52:31 [ 4] [ 12] [000100000000] +17:52:31 [ 7] [ 10] [0320175226] +17:52:31 [ 11] [ 6] [821251] +17:52:31 [ 12] [ 6] [175226] +17:52:31 [ 13] [ 4] [0320] +17:52:31 [ 15] [ 4] [0320] +17:52:31 [ 18] [ 4] [6011] +17:52:31 [ 22] [ 3] [900] +17:52:31 [ 25] [ 2] [02] +17:52:31 [ 28] [ 9] [D00002000] +17:52:31 [ 32] [ 6] [621354] +17:52:31 [ 35] [ 37] [6688990040141366=98041261912646500000] +17:52:31 [ 37] [ 12] [507903499693] +17:52:31 [ 41] [ 8] [06002200] +17:52:31 [ 42] [ 15] [NATIVE ] +17:52:31 [ 43] [ 40] [Beng Market Beng LAO] +17:52:31 [ 49] [ 3] [418] +17:52:31 [ 52] [ 16] [0344988A90CC45EF] +17:52:31 ============================================================================ +17:52:31 + + +waiting on router queue for slot.... +17:52:31 Sending to : +17:52:31 ============================================================================ +17:52:31 Sending to : +17:52:31 ============================================================================ +17:52:31 ============================================================================ +17:52:31 Slot Id : <116> +17:52:31 Transaction Type : REQUEST +17:52:31 Received From : +17:52:31 ============================================================================ +17:52:31 FNo. Len. Field Value +17:52:31 ============================================================================ +17:52:31 [ 1] [ 4] [0200] +17:52:31 [ 2] [ 16] [6688990040141366] +17:52:31 [ 3] [ 6] [012000] +17:52:31 [ 4] [ 12] [000100000000] +17:52:31 [ 7] [ 10] [0320175226] +17:52:31 [ 11] [ 6] [821251] +17:52:31 [ 12] [ 6] [175226] +17:52:31 [ 13] [ 4] [0320] +17:52:31 [ 15] [ 4] [0320] +17:52:31 [ 18] [ 4] [6011] +17:52:31 [ 22] [ 3] [900] +17:52:31 [ 25] [ 2] [02] +17:52:31 [ 28] [ 9] [D00002000] +17:52:31 [ 32] [ 6] [621354] +17:52:31 [ 35] [ 37] [6688990040141366=98041261912646500000] +17:52:31 [ 37] [ 12] [507903499693] +17:52:31 [ 41] [ 8] [06002200] +17:52:31 [ 42] [ 15] [NATIVE ] +17:52:31 [ 43] [ 40] [Beng Market Beng LAO] +17:52:31 [ 49] [ 3] [418] +17:52:31 [ 52] [ 16] [0344988A90CC45EF] +17:52:31 ============================================================================ +17:52:31 + + +waiting on router queue for slot.... +17:52:31 Sending to : +17:52:31 ============================================================================ +17:52:31 ============================================================================ +17:52:31 Slot Id : <116> +17:52:31 Transaction Type : REQUEST +17:52:31 Received From : +17:52:31 ============================================================================ +17:52:31 FNo. Len. Field Value +17:52:31 ============================================================================ +17:52:31 [ 1] [ 4] [0200] +17:52:31 [ 2] [ 16] [6688990040141366] +17:52:31 [ 3] [ 6] [012000] +17:52:31 [ 4] [ 12] [000100000000] +17:52:31 [ 7] [ 10] [0320175226] +17:52:31 [ 11] [ 6] [821251] +17:52:31 [ 12] [ 6] [175226] +17:52:31 [ 13] [ 4] [0320] +17:52:31 [ 15] [ 4] [0320] +17:52:31 [ 18] [ 4] [6011] +17:52:31 [ 22] [ 3] [900] +17:52:31 [ 25] [ 2] [02] +17:52:31 [ 28] [ 9] [D00002000] +17:52:31 [ 32] [ 6] [621354] +17:52:31 [ 35] [ 37] [6688990040141366=98041261912646500000] +17:52:31 [ 37] [ 12] [507903499693] +17:52:31 [ 41] [ 8] [06002200] +17:52:31 [ 42] [ 15] [NATIVE ] +17:52:31 [ 43] [ 40] [Beng Market Beng LAO] +17:52:31 [ 49] [ 3] [418] +17:52:31 [ 52] [ 16] [8EF9352EA27FFFC5] +17:52:31 ============================================================================ +17:52:31 + + +waiting on router queue for slot.... +17:52:31 Sending to : <4> +17:52:31 ============================================================================ +17:52:32 ============================================================================ +17:52:32 Slot Id : <116> +17:52:32 Transaction Type : RESPONSE +17:52:32 Received From : +17:52:32 ============================================================================ +17:52:32 FNo. Len. Field Value +17:52:32 ============================================================================ +17:52:32 [ 1] [ 4] [0210] +17:52:32 [ 2] [ 16] [6688990040141366] +17:52:32 [ 3] [ 6] [012000] +17:52:32 [ 4] [ 12] [000100000000] +17:52:32 [ 11] [ 6] [821251] +17:52:32 [ 12] [ 6] [175226] +17:52:32 [ 15] [ 4] [0320] +17:52:32 [ 18] [ 4] [6011] +17:52:32 [ 32] [ 6] [621354] +17:52:32 [ 35] [ 37] [6688990040141366=98041261912646500000] +17:52:32 [ 37] [ 12] [507903499693] +17:52:32 [ 38] [ 6] [304151] +17:52:32 [ 39] [ 2] [00] +17:52:32 [ 41] [ 8] [06002200] +17:52:32 [ 49] [ 3] [418] +17:52:32 [ 54] [ 20] [2002418C000191572159] +17:52:32 ============================================================================ +17:52:32 Sending to : +17:52:32 ============================================================================ +17:52:32 + + +waiting on router queue for slot.... +17:52:34 ============================================================================ +17:52:34 Slot Id : <116> +17:52:34 Transaction Type : RESPONSE +17:52:34 Received From : +17:52:34 ============================================================================ +17:52:34 FNo. Len. Field Value +17:52:34 ============================================================================ +17:52:34 [ 1] [ 4] [0210] +17:52:34 [ 2] [ 16] [6688990040141366] +17:52:34 [ 3] [ 6] [012000] +17:52:34 [ 4] [ 12] [000100000000] +17:52:34 [ 11] [ 6] [821251] +17:52:34 [ 12] [ 6] [175226] +17:52:34 [ 15] [ 4] [0320] +17:52:34 [ 18] [ 4] [6011] +17:52:34 [ 32] [ 6] [621354] +17:52:34 [ 35] [ 37] [6688990040141366=98041261912646500000] +17:52:34 [ 37] [ 12] [507903499693] +17:52:34 [ 38] [ 6] [304151] +17:52:34 [ 39] [ 2] [00] +17:52:34 [ 41] [ 8] [06002200] +17:52:34 [ 49] [ 3] [418] +17:52:34 [ 54] [ 20] [2002418C000191572159] +17:52:34 ============================================================================ +17:52:34 Calculate Source COMM Id = 0 +17:52:34 ============================================================================ +17:52:34 + + +waiting on router queue for slot.... +17:52:41 ============================================================================ +17:52:41 Slot Id : <131> +17:52:41 Transaction Type : REQUEST +17:52:41 Received From : +17:52:41 ============================================================================ +17:52:41 FNo. Len. Field Value +17:52:41 ============================================================================ +17:52:41 [ 1] [ 4] [0800] +17:52:41 [ 7] [ 10] [0320105148] +17:52:41 [ 11] [ 6] [157567] +17:52:41 [ 70] [ 3] [301] +17:52:41 ============================================================================ +17:52:41 + + +waiting on router queue for slot.... +17:52:41 Sending to : +17:52:41 ============================================================================ +17:52:41 ============================================================================ +17:52:41 Slot Id : <131> +17:52:41 Transaction Type : RESPONSE +17:52:41 Received From : +17:52:41 ============================================================================ +17:52:41 FNo. Len. Field Value +17:52:41 ============================================================================ +17:52:41 [ 1] [ 4] [0810] +17:52:41 [ 7] [ 10] [0320105148] +17:52:41 [ 11] [ 6] [157567] +17:52:41 [ 39] [ 2] [00] +17:52:41 [ 70] [ 3] [301] +17:52:41 ============================================================================ +17:52:41 Calculate Source COMM Id = 2 +17:52:41 ============================================================================ +17:52:41 + + +waiting on router queue for slot.... +17:52:45 ============================================================================ +17:52:45 Slot Id : <104> +17:52:45 Transaction Type : REQUEST +17:52:45 Received From : +17:52:45 ============================================================================ +17:52:45 FNo. Len. Field Value +17:52:45 ============================================================================ +17:52:45 [ 1] [ 4] [0200] +17:52:45 [ 2] [ 16] [6213548000150787] +17:52:45 [ 3] [ 6] [300000] +17:52:45 [ 4] [ 12] [000000000000] +17:52:45 [ 7] [ 10] [0320175034] +17:52:45 [ 11] [ 6] [954008] +17:52:45 [ 12] [ 6] [175034] +17:52:45 [ 13] [ 4] [0320] +17:52:45 [ 15] [ 4] [0320] +17:52:45 [ 18] [ 4] [6011] +17:52:45 [ 19] [ 3] [418] +17:52:45 [ 22] [ 3] [021] +17:52:45 [ 25] [ 2] [01] +17:52:45 [ 28] [ 9] [D00000000] +17:52:45 [ 32] [ 6] [668899] +17:52:45 [ 35] [ 32] [6213548000150787=131112015078561] +17:52:45 [ 37] [ 12] [507901614566] +17:52:45 [ 41] [ 8] [03001007] +17:52:45 [ 42] [ 15] [APT ] +17:52:45 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:52:45 [ 49] [ 3] [418] +17:52:45 [ 52] [ 16] [8174D43E39D3315B] +17:52:45 ============================================================================ +17:52:45 + + +waiting on router queue for slot.... +17:52:45 Sending to : +17:52:45 ============================================================================ +17:52:45 Sending to : +17:52:45 ============================================================================ +17:52:45 ============================================================================ +17:52:45 Slot Id : <104> +17:52:45 Transaction Type : REQUEST +17:52:45 Received From : +17:52:45 ============================================================================ +17:52:45 FNo. Len. Field Value +17:52:45 ============================================================================ +17:52:45 [ 1] [ 4] [0200] +17:52:45 [ 2] [ 16] [6213548000150787] +17:52:45 [ 3] [ 6] [300000] +17:52:45 [ 4] [ 12] [000000000000] +17:52:45 [ 7] [ 10] [0320175034] +17:52:45 [ 11] [ 6] [954008] +17:52:45 [ 12] [ 6] [175034] +17:52:45 [ 13] [ 4] [0320] +17:52:45 [ 15] [ 4] [0320] +17:52:45 [ 18] [ 4] [6011] +17:52:45 [ 19] [ 3] [418] +17:52:45 [ 22] [ 3] [021] +17:52:45 [ 25] [ 2] [01] +17:52:45 [ 28] [ 9] [D00000000] +17:52:45 [ 32] [ 6] [668899] +17:52:45 [ 35] [ 32] [6213548000150787=131112015078561] +17:52:45 [ 37] [ 12] [507901614566] +17:52:45 [ 41] [ 8] [03001007] +17:52:45 [ 42] [ 15] [APT ] +17:52:45 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:52:45 [ 49] [ 3] [418] +17:52:45 [ 52] [ 16] [8174D43E39D3315B] +17:52:45 ============================================================================ +17:52:45 + + +waiting on router queue for slot.... +17:52:45 Sending to : +17:52:45 ============================================================================ +17:52:45 ============================================================================ +17:52:45 Slot Id : <104> +17:52:45 Transaction Type : REQUEST +17:52:45 Received From : +17:52:45 ============================================================================ +17:52:45 FNo. Len. Field Value +17:52:45 ============================================================================ +17:52:45 [ 1] [ 4] [0200] +17:52:45 [ 2] [ 16] [6213548000150787] +17:52:45 [ 3] [ 6] [300000] +17:52:45 [ 4] [ 12] [000000000000] +17:52:45 [ 7] [ 10] [0320175034] +17:52:45 [ 11] [ 6] [954008] +17:52:45 [ 12] [ 6] [175034] +17:52:45 [ 13] [ 4] [0320] +17:52:45 [ 15] [ 4] [0320] +17:52:45 [ 18] [ 4] [6011] +17:52:45 [ 19] [ 3] [418] +17:52:45 [ 22] [ 3] [021] +17:52:45 [ 25] [ 2] [01] +17:52:45 [ 28] [ 9] [D00000000] +17:52:45 [ 32] [ 6] [668899] +17:52:45 [ 35] [ 32] [6213548000150787=131112015078561] +17:52:45 [ 37] [ 12] [507901614566] +17:52:45 [ 41] [ 8] [03001007] +17:52:45 [ 42] [ 15] [APT ] +17:52:45 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:52:45 [ 49] [ 3] [418] +17:52:45 [ 52] [ 16] [4A20B69B0E7F8D98] +17:52:45 ============================================================================ +17:52:45 + + +waiting on router queue for slot.... +17:52:45 Sending to : <0> +17:52:45 ============================================================================ +17:52:45 ============================================================================ +17:52:45 Slot Id : <104> +17:52:45 Transaction Type : RESPONSE +17:52:45 Received From : +17:52:45 ============================================================================ +17:52:45 FNo. Len. Field Value +17:52:45 ============================================================================ +17:52:45 [ 1] [ 4] [0210] +17:52:45 [ 2] [ 16] [6213548000150787] +17:52:45 [ 3] [ 6] [300000] +17:52:45 [ 4] [ 12] [000000000000] +17:52:45 [ 7] [ 10] [0320175034] +17:52:45 [ 11] [ 6] [954008] +17:52:45 [ 12] [ 6] [175034] +17:52:45 [ 13] [ 4] [0320] +17:52:45 [ 15] [ 4] [0320] +17:52:45 [ 18] [ 4] [6011] +17:52:45 [ 19] [ 3] [418] +17:52:45 [ 32] [ 6] [668899] +17:52:45 [ 35] [ 32] [6213548000150787=131112015078561] +17:52:45 [ 37] [ 12] [507901614566] +17:52:45 [ 38] [ 6] [449311] +17:52:45 [ 39] [ 2] [00] +17:52:45 [ 41] [ 8] [03001007] +17:52:45 [ 49] [ 3] [418] +17:52:45 [ 54] [ 40] [0001418C0000553164190002418C000055316419] +17:52:45 ============================================================================ +17:52:45 Sending to : +17:52:45 ============================================================================ +17:52:45 + + +waiting on router queue for slot.... +17:52:47 ============================================================================ +17:52:47 Slot Id : <104> +17:52:47 Transaction Type : RESPONSE +17:52:47 Received From : +17:52:47 ============================================================================ +17:52:47 FNo. Len. Field Value +17:52:47 ============================================================================ +17:52:47 [ 1] [ 4] [0210] +17:52:47 [ 2] [ 16] [6213548000150787] +17:52:47 [ 3] [ 6] [300000] +17:52:47 [ 4] [ 12] [000000000000] +17:52:47 [ 7] [ 10] [0320175034] +17:52:47 [ 11] [ 6] [954008] +17:52:47 [ 12] [ 6] [175034] +17:52:47 [ 13] [ 4] [0320] +17:52:47 [ 15] [ 4] [0320] +17:52:47 [ 18] [ 4] [6011] +17:52:47 [ 19] [ 3] [418] +17:52:47 [ 32] [ 6] [668899] +17:52:47 [ 35] [ 32] [6213548000150787=131112015078561] +17:52:47 [ 37] [ 12] [507901614566] +17:52:47 [ 38] [ 6] [449311] +17:52:47 [ 39] [ 2] [00] +17:52:47 [ 41] [ 8] [03001007] +17:52:47 [ 49] [ 3] [418] +17:52:47 [ 54] [ 40] [0001418C0000553164190002418C000055316419] +17:52:47 ============================================================================ +17:52:47 Calculate Source COMM Id = 4 +17:52:47 ============================================================================ +17:52:47 + + +waiting on router queue for slot.... +17:52:52 ============================================================================ +17:52:52 Slot Id : <138> +17:52:52 Transaction Type : REQUEST +17:52:52 Received From : +17:52:52 ============================================================================ +17:52:52 FNo. Len. Field Value +17:52:52 ============================================================================ +17:52:52 [ 1] [ 4] [0800] +17:52:52 [ 7] [ 10] [0320105159] +17:52:52 [ 11] [ 6] [157568] +17:52:52 [ 70] [ 3] [301] +17:52:52 ============================================================================ +17:52:52 + + +waiting on router queue for slot.... +17:52:52 Sending to : +17:52:52 ============================================================================ +17:52:52 ============================================================================ +17:52:52 Slot Id : <138> +17:52:52 Transaction Type : RESPONSE +17:52:52 Received From : +17:52:52 ============================================================================ +17:52:52 FNo. Len. Field Value +17:52:52 ============================================================================ +17:52:52 [ 1] [ 4] [0810] +17:52:52 [ 7] [ 10] [0320105159] +17:52:52 [ 11] [ 6] [157568] +17:52:52 [ 39] [ 2] [00] +17:52:52 [ 70] [ 3] [301] +17:52:52 ============================================================================ +17:52:52 Calculate Source COMM Id = 2 +17:52:52 ============================================================================ +17:52:52 + + +waiting on router queue for slot.... +17:52:55 ============================================================================ +17:52:55 Slot Id : <97> +17:52:55 Transaction Type : REQUEST +17:52:55 Received From : +17:52:55 ============================================================================ +17:52:55 FNo. Len. Field Value +17:52:55 ============================================================================ +17:52:55 [ 1] [ 4] [0200] +17:52:55 [ 2] [ 16] [1888880000087783] +17:52:55 [ 3] [ 6] [011000] +17:52:55 [ 4] [ 12] [000020000000] +17:52:55 [ 7] [ 10] [0320180042] +17:52:55 [ 11] [ 6] [000008] +17:52:55 [ 12] [ 6] [180042] +17:52:55 [ 13] [ 4] [0320] +17:52:55 [ 14] [ 4] [0000] +17:52:55 [ 15] [ 4] [0320] +17:52:55 [ 18] [ 4] [6011] +17:52:55 [ 22] [ 3] [900] +17:52:55 [ 25] [ 2] [02] +17:52:55 [ 28] [ 9] [D00002000] +17:52:55 [ 32] [ 6] [220699] +17:52:55 [ 35] [ 32] [1888880000087783=000010100000009] +17:52:55 [ 37] [ 12] [507900281396] +17:52:55 [ 41] [ 8] [10000100] +17:52:55 [ 42] [ 15] [APTRA ] +17:52:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:52:55 [ 49] [ 3] [418] +17:52:55 [ 52] [ 16] [417CF3ACC0BB4E7E] +17:52:55 ============================================================================ +17:52:55 + + +waiting on router queue for slot.... +17:52:55 Sending to : +17:52:55 ============================================================================ +17:52:55 Sending to : +17:52:55 ============================================================================ +17:52:56 ============================================================================ +17:52:56 Slot Id : <97> +17:52:56 Transaction Type : REQUEST +17:52:56 Received From : +17:52:56 ============================================================================ +17:52:56 FNo. Len. Field Value +17:52:56 ============================================================================ +17:52:56 [ 1] [ 4] [0200] +17:52:56 [ 2] [ 16] [1888880000087783] +17:52:56 [ 3] [ 6] [011000] +17:52:56 [ 4] [ 12] [000020000000] +17:52:56 [ 7] [ 10] [0320180042] +17:52:56 [ 11] [ 6] [000008] +17:52:56 [ 12] [ 6] [180042] +17:52:56 [ 13] [ 4] [0320] +17:52:56 [ 14] [ 4] [0000] +17:52:56 [ 15] [ 4] [0320] +17:52:56 [ 18] [ 4] [6011] +17:52:56 [ 22] [ 3] [900] +17:52:56 [ 25] [ 2] [02] +17:52:56 [ 28] [ 9] [D00002000] +17:52:56 [ 32] [ 6] [220699] +17:52:56 [ 35] [ 32] [1888880000087783=000010100000009] +17:52:56 [ 37] [ 12] [507900281396] +17:52:56 [ 41] [ 8] [10000100] +17:52:56 [ 42] [ 15] [APTRA ] +17:52:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:52:56 [ 49] [ 3] [418] +17:52:56 [ 52] [ 16] [417CF3ACC0BB4E7E] +17:52:56 ============================================================================ +17:52:56 + + +waiting on router queue for slot.... +17:52:56 Sending to : +17:52:56 ============================================================================ +17:52:56 ============================================================================ +17:52:56 Slot Id : <97> +17:52:56 Transaction Type : REQUEST +17:52:56 Received From : +17:52:56 ============================================================================ +17:52:56 FNo. Len. Field Value +17:52:56 ============================================================================ +17:52:56 [ 1] [ 4] [0200] +17:52:56 [ 2] [ 16] [1888880000087783] +17:52:56 [ 3] [ 6] [011000] +17:52:56 [ 4] [ 12] [000020000000] +17:52:56 [ 7] [ 10] [0320180042] +17:52:56 [ 11] [ 6] [000008] +17:52:56 [ 12] [ 6] [180042] +17:52:56 [ 13] [ 4] [0320] +17:52:56 [ 14] [ 4] [0000] +17:52:56 [ 15] [ 4] [0320] +17:52:56 [ 18] [ 4] [6011] +17:52:56 [ 22] [ 3] [900] +17:52:56 [ 25] [ 2] [02] +17:52:56 [ 28] [ 9] [D00002000] +17:52:56 [ 32] [ 6] [220699] +17:52:56 [ 35] [ 32] [1888880000087783=000010100000009] +17:52:56 [ 37] [ 12] [507900281396] +17:52:56 [ 41] [ 8] [10000100] +17:52:56 [ 42] [ 15] [APTRA ] +17:52:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:52:56 [ 49] [ 3] [418] +17:52:56 [ 52] [ 16] [B328D4E7057E1B49] +17:52:56 ============================================================================ +17:52:56 + + +waiting on router queue for slot.... +17:52:56 Sending to : <5> +17:52:56 ============================================================================ +17:52:56 ============================================================================ +17:52:56 Slot Id : <97> +17:52:56 Transaction Type : RESPONSE +17:52:56 Received From : +17:52:56 ============================================================================ +17:52:56 FNo. Len. Field Value +17:52:56 ============================================================================ +17:52:56 [ 1] [ 4] [0210] +17:52:56 [ 2] [ 16] [1888880000087783] +17:52:56 [ 3] [ 6] [011000] +17:52:56 [ 4] [ 12] [000020000000] +17:52:56 [ 7] [ 10] [0320180042] +17:52:56 [ 11] [ 6] [000008] +17:52:56 [ 12] [ 6] [180042] +17:52:56 [ 13] [ 4] [0320] +17:52:56 [ 15] [ 4] [0320] +17:52:56 [ 18] [ 4] [6011] +17:52:56 [ 19] [ 3] [418] +17:52:56 [ 32] [ 6] [220699] +17:52:56 [ 37] [ 12] [507900281396] +17:52:56 [ 38] [ 6] [000000] +17:52:56 [ 39] [ 2] [07] +17:52:56 [ 41] [ 8] [10000100] +17:52:56 [ 49] [ 3] [418] +17:52:56 ============================================================================ +17:52:56 Sending to : +17:52:56 ============================================================================ +17:52:56 + + +waiting on router queue for slot.... +17:52:57 ============================================================================ +17:52:57 Slot Id : <97> +17:52:57 Transaction Type : RESPONSE +17:52:57 Received From : +17:52:57 ============================================================================ +17:52:57 FNo. Len. Field Value +17:52:57 ============================================================================ +17:52:57 [ 1] [ 4] [0210] +17:52:57 [ 2] [ 16] [1888880000087783] +17:52:57 [ 3] [ 6] [011000] +17:52:57 [ 4] [ 12] [000020000000] +17:52:57 [ 7] [ 10] [0320180042] +17:52:57 [ 11] [ 6] [000008] +17:52:57 [ 12] [ 6] [180042] +17:52:57 [ 13] [ 4] [0320] +17:52:57 [ 15] [ 4] [0320] +17:52:57 [ 18] [ 4] [6011] +17:52:57 [ 19] [ 3] [418] +17:52:57 [ 32] [ 6] [220699] +17:52:57 [ 37] [ 12] [507900281396] +17:52:57 [ 38] [ 6] [000000] +17:52:57 [ 39] [ 2] [07] +17:52:57 [ 41] [ 8] [10000100] +17:52:57 [ 49] [ 3] [418] +17:52:57 ============================================================================ +17:52:57 Calculate Source COMM Id = 1 +17:52:57 ============================================================================ +17:52:57 + + +waiting on router queue for slot.... +17:53:03 ============================================================================ +17:53:03 Slot Id : <112> +17:53:03 Transaction Type : REQUEST +17:53:03 Received From : +17:53:03 ============================================================================ +17:53:03 FNo. Len. Field Value +17:53:03 ============================================================================ +17:53:03 [ 1] [ 4] [0800] +17:53:03 [ 7] [ 10] [0320105210] +17:53:03 [ 11] [ 6] [157569] +17:53:03 [ 70] [ 3] [301] +17:53:03 ============================================================================ +17:53:03 + + +waiting on router queue for slot.... +17:53:03 Sending to : +17:53:03 ============================================================================ +17:53:03 ============================================================================ +17:53:03 Slot Id : <112> +17:53:03 Transaction Type : RESPONSE +17:53:03 Received From : +17:53:03 ============================================================================ +17:53:03 FNo. Len. Field Value +17:53:03 ============================================================================ +17:53:03 [ 1] [ 4] [0810] +17:53:03 [ 7] [ 10] [0320105210] +17:53:03 [ 11] [ 6] [157569] +17:53:03 [ 39] [ 2] [00] +17:53:03 [ 70] [ 3] [301] +17:53:03 ============================================================================ +17:53:03 Calculate Source COMM Id = 2 +17:53:03 ============================================================================ +17:53:03 + + +waiting on router queue for slot.... +17:53:06 ============================================================================ +17:53:06 Slot Id : <111> +17:53:06 Transaction Type : REQUEST +17:53:06 Received From : +17:53:06 ============================================================================ +17:53:06 FNo. Len. Field Value +17:53:06 ============================================================================ +17:53:06 [ 1] [ 4] [0800] +17:53:06 [ 7] [ 10] [0320175252] +17:53:06 [ 11] [ 6] [020683] +17:53:06 [ 37] [ 12] [507917020683] +17:53:06 [ 70] [ 3] [ ] +17:53:06 ============================================================================ +17:53:06 + + +waiting on router queue for slot.... +17:53:06 Sending to : +17:53:06 ============================================================================ +17:53:06 ============================================================================ +17:53:06 Slot Id : <111> +17:53:06 Transaction Type : RESPONSE +17:53:06 Received From : +17:53:06 ============================================================================ +17:53:06 FNo. Len. Field Value +17:53:06 ============================================================================ +17:53:06 [ 1] [ 4] [0810] +17:53:06 [ 7] [ 10] [0320175252] +17:53:06 [ 11] [ 6] [020683] +17:53:06 [ 37] [ 12] [507917020683] +17:53:06 [ 39] [ 2] [91] +17:53:06 [ 70] [ 3] [ ] +17:53:06 ============================================================================ +17:53:06 Calculate Source COMM Id = 3 +17:53:06 ============================================================================ +17:53:06 + + +waiting on router queue for slot.... +17:53:15 ============================================================================ +17:53:15 Slot Id : <140> +17:53:15 Transaction Type : REQUEST +17:53:15 Received From : +17:53:15 ============================================================================ +17:53:15 FNo. Len. Field Value +17:53:15 ============================================================================ +17:53:15 [ 1] [ 4] [0800] +17:53:15 [ 2] [ 5] [02531] +17:53:15 [ 3] [ 6] [579178] +17:53:15 [ 7] [ 10] [0320105315] +17:53:15 [ 11] [ 6] [807450] +17:53:15 [ 15] [ 10] [0320105315] +17:53:15 [ 37] [ 11] [57917807450] +17:53:15 [ 70] [ 3] [001] +17:53:15 ============================================================================ +17:53:15 + + +waiting on router queue for slot.... +17:53:15 ============================================================================ +17:53:15 Slot Id : <124> +17:53:15 Transaction Type : REQUEST +17:53:15 Received From : +17:53:15 ============================================================================ +17:53:15 FNo. Len. Field Value +17:53:15 ============================================================================ +17:53:15 [ 1] [ 4] [0800] +17:53:15 [ 7] [ 10] [0320105222] +17:53:15 [ 11] [ 6] [157570] +17:53:15 [ 70] [ 3] [301] +17:53:15 ============================================================================ +17:53:15 + + +waiting on router queue for slot.... +17:53:15 Sending to : +17:53:15 ============================================================================ +17:53:15 ============================================================================ +17:53:15 Slot Id : <124> +17:53:15 Transaction Type : RESPONSE +17:53:15 Received From : +17:53:15 ============================================================================ +17:53:15 FNo. Len. Field Value +17:53:15 ============================================================================ +17:53:15 [ 1] [ 4] [0810] +17:53:15 [ 7] [ 10] [0320105222] +17:53:15 [ 11] [ 6] [157570] +17:53:15 [ 39] [ 2] [00] +17:53:15 [ 70] [ 3] [301] +17:53:15 ============================================================================ +17:53:15 Calculate Source COMM Id = 2 +17:53:15 ============================================================================ +17:53:15 + + +waiting on router queue for slot.... +17:53:15 ============================================================================ +17:53:15 Slot Id : <140> +17:53:15 Transaction Type : RESPONSE +17:53:15 Received From : +17:53:15 ============================================================================ +17:53:15 FNo. Len. Field Value +17:53:15 ============================================================================ +17:53:15 [ 1] [ 4] [0810] +17:53:15 [ 7] [ 10] [0320105315] +17:53:15 [ 11] [ 6] [807450] +17:53:15 [ 15] [ 4] [0320] +17:53:15 [ 37] [ 12] [57917807450] +17:53:15 [ 39] [ 2] [00] +17:53:15 [ 70] [ 3] [001] +17:53:15 ============================================================================ +17:53:15 Sending to : +17:53:15 ============================================================================ +17:53:15 + + +waiting on router queue for slot.... +17:53:28 ============================================================================ +17:53:28 Slot Id : <123> +17:53:28 Transaction Type : REQUEST +17:53:28 Received From : +17:53:28 ============================================================================ +17:53:28 FNo. Len. Field Value +17:53:28 ============================================================================ +17:53:28 [ 1] [ 4] [0200] +17:53:28 [ 2] [ 16] [6688990106472903] +17:53:28 [ 3] [ 6] [010000] +17:53:28 [ 4] [ 12] [000100000000] +17:53:28 [ 7] [ 10] [0320175323] +17:53:28 [ 11] [ 6] [821402] +17:53:28 [ 12] [ 6] [175323] +17:53:28 [ 13] [ 4] [0320] +17:53:28 [ 15] [ 4] [0320] +17:53:28 [ 18] [ 4] [6011] +17:53:28 [ 22] [ 3] [900] +17:53:28 [ 25] [ 2] [02] +17:53:28 [ 28] [ 9] [D00002000] +17:53:28 [ 32] [ 6] [621354] +17:53:28 [ 35] [ 37] [6688990106472903=43121231290310400000] +17:53:28 [ 37] [ 12] [507902497522] +17:53:28 [ 41] [ 8] [05003200] +17:53:28 [ 42] [ 15] [NATIVE ] +17:53:28 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +17:53:28 [ 49] [ 3] [418] +17:53:28 [ 52] [ 16] [1A4DD0BB17085D07] +17:53:28 ============================================================================ +17:53:28 + + +waiting on router queue for slot.... +17:53:28 Sending to : +17:53:28 ============================================================================ +17:53:28 Sending to : +17:53:28 ============================================================================ +17:53:29 ============================================================================ +17:53:29 Slot Id : <123> +17:53:29 Transaction Type : REQUEST +17:53:29 Received From : +17:53:29 ============================================================================ +17:53:29 FNo. Len. Field Value +17:53:29 ============================================================================ +17:53:29 [ 1] [ 4] [0200] +17:53:29 [ 2] [ 16] [6688990106472903] +17:53:29 [ 3] [ 6] [010000] +17:53:29 [ 4] [ 12] [000100000000] +17:53:29 [ 7] [ 10] [0320175323] +17:53:29 [ 11] [ 6] [821402] +17:53:29 [ 12] [ 6] [175323] +17:53:29 [ 13] [ 4] [0320] +17:53:29 [ 15] [ 4] [0320] +17:53:29 [ 18] [ 4] [6011] +17:53:29 [ 22] [ 3] [900] +17:53:29 [ 25] [ 2] [02] +17:53:29 [ 28] [ 9] [D00002000] +17:53:29 [ 32] [ 6] [621354] +17:53:29 [ 35] [ 37] [6688990106472903=43121231290310400000] +17:53:29 [ 37] [ 12] [507902497522] +17:53:29 [ 41] [ 8] [05003200] +17:53:29 [ 42] [ 15] [NATIVE ] +17:53:29 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +17:53:29 [ 49] [ 3] [418] +17:53:29 [ 52] [ 16] [1A4DD0BB17085D07] +17:53:29 ============================================================================ +17:53:29 + + +waiting on router queue for slot.... +17:53:29 Sending to : +17:53:29 ============================================================================ +17:53:29 ============================================================================ +17:53:29 Slot Id : <123> +17:53:29 Transaction Type : REQUEST +17:53:29 Received From : +17:53:29 ============================================================================ +17:53:29 FNo. Len. Field Value +17:53:29 ============================================================================ +17:53:29 [ 1] [ 4] [0200] +17:53:29 [ 2] [ 16] [6688990106472903] +17:53:29 [ 3] [ 6] [010000] +17:53:29 [ 4] [ 12] [000100000000] +17:53:29 [ 7] [ 10] [0320175323] +17:53:29 [ 11] [ 6] [821402] +17:53:29 [ 12] [ 6] [175323] +17:53:29 [ 13] [ 4] [0320] +17:53:29 [ 15] [ 4] [0320] +17:53:29 [ 18] [ 4] [6011] +17:53:29 [ 22] [ 3] [900] +17:53:29 [ 25] [ 2] [02] +17:53:29 [ 28] [ 9] [D00002000] +17:53:29 [ 32] [ 6] [621354] +17:53:29 [ 35] [ 37] [6688990106472903=43121231290310400000] +17:53:29 [ 37] [ 12] [507902497522] +17:53:29 [ 41] [ 8] [05003200] +17:53:29 [ 42] [ 15] [NATIVE ] +17:53:29 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +17:53:29 [ 49] [ 3] [418] +17:53:29 [ 52] [ 16] [4B2DEE0665FA398D] +17:53:29 ============================================================================ +17:53:29 + + +waiting on router queue for slot.... +17:53:29 Sending to : <4> +17:53:29 ============================================================================ +17:53:29 ============================================================================ +17:53:29 Slot Id : <80> +17:53:29 Transaction Type : REQUEST +17:53:29 Received From : +17:53:29 ============================================================================ +17:53:29 FNo. Len. Field Value +17:53:29 ============================================================================ +17:53:29 [ 1] [ 4] [0800] +17:53:29 [ 7] [ 10] [0320105236] +17:53:29 [ 11] [ 6] [157571] +17:53:29 [ 70] [ 3] [301] +17:53:29 ============================================================================ +17:53:29 + + +waiting on router queue for slot.... +17:53:29 Sending to : +17:53:29 ============================================================================ +17:53:29 ============================================================================ +17:53:29 Slot Id : <80> +17:53:29 Transaction Type : RESPONSE +17:53:29 Received From : +17:53:29 ============================================================================ +17:53:29 FNo. Len. Field Value +17:53:29 ============================================================================ +17:53:29 [ 1] [ 4] [0810] +17:53:29 [ 7] [ 10] [0320105236] +17:53:29 [ 11] [ 6] [157571] +17:53:29 [ 39] [ 2] [00] +17:53:29 [ 70] [ 3] [301] +17:53:29 ============================================================================ +17:53:29 Calculate Source COMM Id = 2 +17:53:29 ============================================================================ +17:53:29 + + +waiting on router queue for slot.... +17:53:30 ============================================================================ +17:53:30 Slot Id : <123> +17:53:30 Transaction Type : RESPONSE +17:53:30 Received From : +17:53:30 ============================================================================ +17:53:30 FNo. Len. Field Value +17:53:30 ============================================================================ +17:53:30 [ 1] [ 4] [0210] +17:53:30 [ 2] [ 16] [6688990106472903] +17:53:30 [ 3] [ 6] [010000] +17:53:30 [ 4] [ 12] [000100000000] +17:53:30 [ 11] [ 6] [821402] +17:53:30 [ 12] [ 6] [175323] +17:53:30 [ 15] [ 4] [0320] +17:53:30 [ 18] [ 4] [6011] +17:53:30 [ 32] [ 6] [621354] +17:53:30 [ 35] [ 37] [6688990106472903=43121231290310400000] +17:53:30 [ 37] [ 12] [507902497522] +17:53:30 [ 38] [ 6] [958438] +17:53:30 [ 39] [ 2] [00] +17:53:30 [ 41] [ 8] [05003200] +17:53:30 [ 49] [ 3] [418] +17:53:30 [ 54] [ 20] [0002418C000846949111] +17:53:30 ============================================================================ +17:53:30 Sending to : +17:53:30 ============================================================================ +17:53:30 + + +waiting on router queue for slot.... +17:53:31 ============================================================================ +17:53:31 Slot Id : <123> +17:53:31 Transaction Type : RESPONSE +17:53:31 Received From : +17:53:31 ============================================================================ +17:53:31 FNo. Len. Field Value +17:53:31 ============================================================================ +17:53:31 [ 1] [ 4] [0210] +17:53:31 [ 2] [ 16] [6688990106472903] +17:53:31 [ 3] [ 6] [010000] +17:53:31 [ 4] [ 12] [000100000000] +17:53:31 [ 11] [ 6] [821402] +17:53:31 [ 12] [ 6] [175323] +17:53:31 [ 15] [ 4] [0320] +17:53:31 [ 18] [ 4] [6011] +17:53:31 [ 32] [ 6] [621354] +17:53:31 [ 35] [ 37] [6688990106472903=43121231290310400000] +17:53:31 [ 37] [ 12] [507902497522] +17:53:31 [ 38] [ 6] [958438] +17:53:31 [ 39] [ 2] [00] +17:53:31 [ 41] [ 8] [05003200] +17:53:31 [ 49] [ 3] [418] +17:53:31 [ 54] [ 20] [0002418C000846949111] +17:53:31 ============================================================================ +17:53:31 Calculate Source COMM Id = 0 +17:53:31 ============================================================================ +17:53:31 + + +waiting on router queue for slot.... +17:53:33 ============================================================================ +17:53:33 Slot Id : <147> +17:53:33 Transaction Type : REQUEST +17:53:33 Received From : +17:53:33 ============================================================================ +17:53:33 FNo. Len. Field Value +17:53:33 ============================================================================ +17:53:33 [ 1] [ 4] [0800] +17:53:33 [ 7] [ 10] [0321010521] +17:53:33 [ 11] [ 6] [180521] +17:53:33 [ 37] [ 12] [57918180521] +17:53:33 [ 70] [ 3] [301] +17:53:33 ============================================================================ +17:53:33 + + +waiting on router queue for slot.... +17:53:33 Sending to : +17:53:33 ============================================================================ +17:53:33 ============================================================================ +17:53:33 Slot Id : <147> +17:53:33 Transaction Type : RESPONSE +17:53:33 Received From : +17:53:33 ============================================================================ +17:53:33 FNo. Len. Field Value +17:53:33 ============================================================================ +17:53:33 [ 1] [ 4] [0810] +17:53:33 [ 7] [ 10] [0321010521] +17:53:33 [ 11] [ 6] [180521] +17:53:33 [ 37] [ 12] [579181805210] +17:53:33 [ 39] [ 2] [00] +17:53:33 [ 70] [ 3] [810] +17:53:33 ============================================================================ +17:53:33 Calculate Source COMM Id = 6 +17:53:33 ============================================================================ +17:53:33 + + +waiting on router queue for slot.... +17:53:33 ============================================================================ +17:53:33 Slot Id : <117> +17:53:33 Transaction Type : REQUEST +17:53:33 Received From : +17:53:33 ============================================================================ +17:53:33 FNo. Len. Field Value +17:53:33 ============================================================================ +17:53:33 [ 1] [ 4] [0200] +17:53:33 [ 2] [ 16] [6213548000150787] +17:53:33 [ 3] [ 6] [301000] +17:53:33 [ 4] [ 12] [000000000000] +17:53:33 [ 7] [ 10] [0320175123] +17:53:33 [ 11] [ 6] [954026] +17:53:33 [ 12] [ 6] [175123] +17:53:33 [ 13] [ 4] [0320] +17:53:33 [ 15] [ 4] [0320] +17:53:33 [ 18] [ 4] [6011] +17:53:33 [ 19] [ 3] [418] +17:53:33 [ 22] [ 3] [021] +17:53:33 [ 25] [ 2] [01] +17:53:33 [ 28] [ 9] [D00000000] +17:53:33 [ 32] [ 6] [668899] +17:53:33 [ 35] [ 32] [6213548000150787=131112015078561] +17:53:33 [ 37] [ 12] [507901614568] +17:53:33 [ 41] [ 8] [03001007] +17:53:33 [ 42] [ 15] [APT ] +17:53:33 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:53:33 [ 49] [ 3] [418] +17:53:33 [ 52] [ 16] [8174D43E39D3315B] +17:53:33 ============================================================================ +17:53:33 + + +waiting on router queue for slot.... +17:53:33 Sending to : +17:53:33 ============================================================================ +17:53:33 Sending to : +17:53:33 ============================================================================ +17:53:34 ============================================================================ +17:53:34 Slot Id : <117> +17:53:34 Transaction Type : REQUEST +17:53:34 Received From : +17:53:34 ============================================================================ +17:53:34 FNo. Len. Field Value +17:53:34 ============================================================================ +17:53:34 [ 1] [ 4] [0200] +17:53:34 [ 2] [ 16] [6213548000150787] +17:53:34 [ 3] [ 6] [301000] +17:53:34 [ 4] [ 12] [000000000000] +17:53:34 [ 7] [ 10] [0320175123] +17:53:34 [ 11] [ 6] [954026] +17:53:34 [ 12] [ 6] [175123] +17:53:34 [ 13] [ 4] [0320] +17:53:34 [ 15] [ 4] [0320] +17:53:34 [ 18] [ 4] [6011] +17:53:34 [ 19] [ 3] [418] +17:53:34 [ 22] [ 3] [021] +17:53:34 [ 25] [ 2] [01] +17:53:34 [ 28] [ 9] [D00000000] +17:53:34 [ 32] [ 6] [668899] +17:53:34 [ 35] [ 32] [6213548000150787=131112015078561] +17:53:34 [ 37] [ 12] [507901614568] +17:53:34 [ 41] [ 8] [03001007] +17:53:34 [ 42] [ 15] [APT ] +17:53:34 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:53:34 [ 49] [ 3] [418] +17:53:34 [ 52] [ 16] [8174D43E39D3315B] +17:53:34 ============================================================================ +17:53:34 + + +waiting on router queue for slot.... +17:53:34 Sending to : +17:53:34 ============================================================================ +17:53:34 ============================================================================ +17:53:34 Slot Id : <117> +17:53:34 Transaction Type : REQUEST +17:53:34 Received From : +17:53:34 ============================================================================ +17:53:34 FNo. Len. Field Value +17:53:34 ============================================================================ +17:53:34 [ 1] [ 4] [0200] +17:53:34 [ 2] [ 16] [6213548000150787] +17:53:34 [ 3] [ 6] [301000] +17:53:34 [ 4] [ 12] [000000000000] +17:53:34 [ 7] [ 10] [0320175123] +17:53:34 [ 11] [ 6] [954026] +17:53:34 [ 12] [ 6] [175123] +17:53:34 [ 13] [ 4] [0320] +17:53:34 [ 15] [ 4] [0320] +17:53:34 [ 18] [ 4] [6011] +17:53:34 [ 19] [ 3] [418] +17:53:34 [ 22] [ 3] [021] +17:53:34 [ 25] [ 2] [01] +17:53:34 [ 28] [ 9] [D00000000] +17:53:34 [ 32] [ 6] [668899] +17:53:34 [ 35] [ 32] [6213548000150787=131112015078561] +17:53:34 [ 37] [ 12] [507901614568] +17:53:34 [ 41] [ 8] [03001007] +17:53:34 [ 42] [ 15] [APT ] +17:53:34 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:53:34 [ 49] [ 3] [418] +17:53:34 [ 52] [ 16] [4A20B69B0E7F8D98] +17:53:34 ============================================================================ +17:53:34 + + +waiting on router queue for slot.... +17:53:34 Sending to : <0> +17:53:34 ============================================================================ +17:53:35 ============================================================================ +17:53:35 Slot Id : <117> +17:53:35 Transaction Type : RESPONSE +17:53:35 Received From : +17:53:35 ============================================================================ +17:53:35 FNo. Len. Field Value +17:53:35 ============================================================================ +17:53:35 [ 1] [ 4] [0210] +17:53:35 [ 2] [ 16] [6213548000150787] +17:53:35 [ 3] [ 6] [301000] +17:53:35 [ 4] [ 12] [000000000000] +17:53:35 [ 7] [ 10] [0320175123] +17:53:35 [ 11] [ 6] [954026] +17:53:35 [ 12] [ 6] [175123] +17:53:35 [ 13] [ 4] [0320] +17:53:35 [ 15] [ 4] [0320] +17:53:35 [ 18] [ 4] [6011] +17:53:35 [ 19] [ 3] [418] +17:53:35 [ 32] [ 6] [668899] +17:53:35 [ 35] [ 32] [6213548000150787=131112015078561] +17:53:35 [ 37] [ 12] [507901614568] +17:53:35 [ 38] [ 6] [947431] +17:53:35 [ 39] [ 2] [00] +17:53:35 [ 41] [ 8] [03001007] +17:53:35 [ 49] [ 3] [418] +17:53:35 [ 54] [ 40] [1001418C0000553164191002418C000055316419] +17:53:35 ============================================================================ +17:53:35 Sending to : +17:53:35 ============================================================================ +17:53:35 + + +waiting on router queue for slot.... +17:53:36 ============================================================================ +17:53:36 Slot Id : <117> +17:53:36 Transaction Type : RESPONSE +17:53:36 Received From : +17:53:36 ============================================================================ +17:53:36 FNo. Len. Field Value +17:53:36 ============================================================================ +17:53:36 [ 1] [ 4] [0210] +17:53:36 [ 2] [ 16] [6213548000150787] +17:53:36 [ 3] [ 6] [301000] +17:53:36 [ 4] [ 12] [000000000000] +17:53:36 [ 7] [ 10] [0320175123] +17:53:36 [ 11] [ 6] [954026] +17:53:36 [ 12] [ 6] [175123] +17:53:36 [ 13] [ 4] [0320] +17:53:36 [ 15] [ 4] [0320] +17:53:36 [ 18] [ 4] [6011] +17:53:36 [ 19] [ 3] [418] +17:53:36 [ 32] [ 6] [668899] +17:53:36 [ 35] [ 32] [6213548000150787=131112015078561] +17:53:36 [ 37] [ 12] [507901614568] +17:53:36 [ 38] [ 6] [947431] +17:53:36 [ 39] [ 2] [00] +17:53:36 [ 41] [ 8] [03001007] +17:53:36 [ 49] [ 3] [418] +17:53:36 [ 54] [ 40] [1001418C0000553164191002418C000055316419] +17:53:36 ============================================================================ +17:53:36 Calculate Source COMM Id = 4 +17:53:36 ============================================================================ +17:53:36 + + +waiting on router queue for slot.... +17:53:42 ============================================================================ +17:53:42 Slot Id : <122> +17:53:42 Transaction Type : REQUEST +17:53:42 Received From : +17:53:42 ============================================================================ +17:53:42 FNo. Len. Field Value +17:53:42 ============================================================================ +17:53:42 [ 1] [ 4] [0200] +17:53:42 [ 2] [ 16] [6213541000135015] +17:53:42 [ 3] [ 6] [010000] +17:53:42 [ 4] [ 12] [000050000000] +17:53:42 [ 7] [ 10] [0320105249] +17:53:42 [ 11] [ 6] [271001] +17:53:42 [ 12] [ 6] [175249] +17:53:42 [ 13] [ 4] [0320] +17:53:42 [ 14] [ 4] [4912] +17:53:42 [ 15] [ 4] [0320] +17:53:42 [ 18] [ 4] [6011] +17:53:42 [ 19] [ 3] [418] +17:53:42 [ 22] [ 3] [021] +17:53:42 [ 25] [ 2] [01] +17:53:42 [ 28] [ 9] [D00002000] +17:53:42 [ 32] [ 6] [180893] +17:53:42 [ 35] [ 32] [6213541000135015=491212013501761] +17:53:42 [ 37] [ 12] [507910271001] +17:53:42 [ 41] [ 8] [0101VTEB] +17:53:42 [ 42] [ 15] [999999 ] +17:53:42 [ 43] [ 40] [ATM VIENTIANE CAPITAL BRANCH LOCATION, C] +17:53:42 [ 49] [ 3] [418] +17:53:42 [ 52] [ 16] [AE9CBB027B59289B] +17:53:42 ============================================================================ +17:53:42 + + +waiting on router queue for slot.... +17:53:42 Sending to : +17:53:42 ============================================================================ +17:53:42 Sending to : +17:53:42 ============================================================================ +17:53:43 ============================================================================ +17:53:43 Slot Id : <162> +17:53:43 Transaction Type : REQUEST +17:53:43 Received From : +17:53:43 ============================================================================ +17:53:43 FNo. Len. Field Value +17:53:43 ============================================================================ +17:53:43 [ 1] [ 4] [0200] +17:53:43 [ 2] [ 16] [1888880000087783] +17:53:43 [ 3] [ 6] [011000] +17:53:43 [ 4] [ 12] [000010000000] +17:53:43 [ 7] [ 10] [0320180130] +17:53:43 [ 11] [ 6] [000011] +17:53:43 [ 12] [ 6] [180130] +17:53:43 [ 13] [ 4] [0320] +17:53:43 [ 14] [ 4] [0000] +17:53:43 [ 15] [ 4] [0320] +17:53:43 [ 18] [ 4] [6011] +17:53:43 [ 22] [ 3] [900] +17:53:43 [ 25] [ 2] [02] +17:53:43 [ 28] [ 9] [D00002000] +17:53:43 [ 32] [ 6] [220699] +17:53:43 [ 35] [ 32] [1888880000087783=000010100000009] +17:53:43 [ 37] [ 12] [507900281398] +17:53:43 [ 41] [ 8] [10000100] +17:53:43 [ 42] [ 15] [APTRA ] +17:53:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:53:43 [ 49] [ 3] [418] +17:53:43 [ 52] [ 16] [417CF3ACC0BB4E7E] +17:53:43 ============================================================================ +17:53:43 + + +waiting on router queue for slot.... +17:53:43 Sending to : +17:53:43 ============================================================================ +17:53:43 Sending to : +17:53:43 ============================================================================ +17:53:43 ============================================================================ +17:53:43 Slot Id : <122> +17:53:43 Transaction Type : REQUEST +17:53:43 Received From : +17:53:43 ============================================================================ +17:53:43 FNo. Len. Field Value +17:53:43 ============================================================================ +17:53:43 [ 1] [ 4] [0200] +17:53:43 [ 2] [ 16] [6213541000135015] +17:53:43 [ 3] [ 6] [010000] +17:53:43 [ 4] [ 12] [000050000000] +17:53:43 [ 7] [ 10] [0320105249] +17:53:43 [ 11] [ 6] [271001] +17:53:43 [ 12] [ 6] [175249] +17:53:43 [ 13] [ 4] [0320] +17:53:43 [ 14] [ 4] [4912] +17:53:43 [ 15] [ 4] [0320] +17:53:43 [ 18] [ 4] [6011] +17:53:43 [ 19] [ 3] [418] +17:53:43 [ 22] [ 3] [021] +17:53:43 [ 25] [ 2] [01] +17:53:43 [ 28] [ 9] [D00002000] +17:53:43 [ 32] [ 6] [180893] +17:53:43 [ 35] [ 32] [6213541000135015=491212013501761] +17:53:43 [ 37] [ 12] [507910271001] +17:53:43 [ 41] [ 8] [0101VTEB] +17:53:43 [ 42] [ 15] [999999 ] +17:53:43 [ 43] [ 40] [ATM VIENTIANE CAPITAL BRANCH LOCATION, C] +17:53:43 [ 49] [ 3] [418] +17:53:43 [ 52] [ 16] [AE9CBB027B59289B] +17:53:43 ============================================================================ +17:53:43 + + +waiting on router queue for slot.... +17:53:43 Sending to : +17:53:43 ============================================================================ +17:53:43 ============================================================================ +17:53:43 Slot Id : <122> +17:53:43 Transaction Type : REQUEST +17:53:43 Received From : +17:53:43 ============================================================================ +17:53:43 FNo. Len. Field Value +17:53:43 ============================================================================ +17:53:43 [ 1] [ 4] [0200] +17:53:43 [ 2] [ 16] [6213541000135015] +17:53:43 [ 3] [ 6] [010000] +17:53:43 [ 4] [ 12] [000050000000] +17:53:43 [ 7] [ 10] [0320105249] +17:53:43 [ 11] [ 6] [271001] +17:53:43 [ 12] [ 6] [175249] +17:53:43 [ 13] [ 4] [0320] +17:53:43 [ 14] [ 4] [4912] +17:53:43 [ 15] [ 4] [0320] +17:53:43 [ 18] [ 4] [6011] +17:53:43 [ 19] [ 3] [418] +17:53:43 [ 22] [ 3] [021] +17:53:43 [ 25] [ 2] [01] +17:53:43 [ 28] [ 9] [D00002000] +17:53:43 [ 32] [ 6] [180893] +17:53:43 [ 35] [ 32] [6213541000135015=491212013501761] +17:53:43 [ 37] [ 12] [507910271001] +17:53:43 [ 41] [ 8] [0101VTEB] +17:53:43 [ 42] [ 15] [999999 ] +17:53:43 [ 43] [ 40] [ATM VIENTIANE CAPITAL BRANCH LOCATION, C] +17:53:43 [ 49] [ 3] [418] +17:53:43 [ 52] [ 16] [5B53C068712530D9] +17:53:43 ============================================================================ +17:53:43 + + +waiting on router queue for slot.... +17:53:43 Sending to : <0> +17:53:43 ============================================================================ +17:53:43 ============================================================================ +17:53:43 Slot Id : <162> +17:53:43 Transaction Type : REQUEST +17:53:43 Received From : +17:53:43 ============================================================================ +17:53:43 FNo. Len. Field Value +17:53:43 ============================================================================ +17:53:43 [ 1] [ 4] [0200] +17:53:43 [ 2] [ 16] [1888880000087783] +17:53:43 [ 3] [ 6] [011000] +17:53:43 [ 4] [ 12] [000010000000] +17:53:43 [ 7] [ 10] [0320180130] +17:53:43 [ 11] [ 6] [000011] +17:53:43 [ 12] [ 6] [180130] +17:53:43 [ 13] [ 4] [0320] +17:53:43 [ 14] [ 4] [0000] +17:53:43 [ 15] [ 4] [0320] +17:53:43 [ 18] [ 4] [6011] +17:53:43 [ 22] [ 3] [900] +17:53:43 [ 25] [ 2] [02] +17:53:43 [ 28] [ 9] [D00002000] +17:53:43 [ 32] [ 6] [220699] +17:53:43 [ 35] [ 32] [1888880000087783=000010100000009] +17:53:43 [ 37] [ 12] [507900281398] +17:53:43 [ 41] [ 8] [10000100] +17:53:43 [ 42] [ 15] [APTRA ] +17:53:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:53:43 [ 49] [ 3] [418] +17:53:43 [ 52] [ 16] [417CF3ACC0BB4E7E] +17:53:43 ============================================================================ +17:53:43 + + +waiting on router queue for slot.... +17:53:43 Sending to : +17:53:43 ============================================================================ +17:53:43 ============================================================================ +17:53:43 Slot Id : <162> +17:53:43 Transaction Type : REQUEST +17:53:43 Received From : +17:53:43 ============================================================================ +17:53:43 FNo. Len. Field Value +17:53:43 ============================================================================ +17:53:43 [ 1] [ 4] [0200] +17:53:43 [ 2] [ 16] [1888880000087783] +17:53:43 [ 3] [ 6] [011000] +17:53:43 [ 4] [ 12] [000010000000] +17:53:43 [ 7] [ 10] [0320180130] +17:53:43 [ 11] [ 6] [000011] +17:53:43 [ 12] [ 6] [180130] +17:53:43 [ 13] [ 4] [0320] +17:53:43 [ 14] [ 4] [0000] +17:53:43 [ 15] [ 4] [0320] +17:53:43 [ 18] [ 4] [6011] +17:53:43 [ 22] [ 3] [900] +17:53:43 [ 25] [ 2] [02] +17:53:43 [ 28] [ 9] [D00002000] +17:53:43 [ 32] [ 6] [220699] +17:53:43 [ 35] [ 32] [1888880000087783=000010100000009] +17:53:43 [ 37] [ 12] [507900281398] +17:53:43 [ 41] [ 8] [10000100] +17:53:43 [ 42] [ 15] [APTRA ] +17:53:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:53:43 [ 49] [ 3] [418] +17:53:43 [ 52] [ 16] [B328D4E7057E1B49] +17:53:43 ============================================================================ +17:53:43 + + +waiting on router queue for slot.... +17:53:43 Sending to : <5> +17:53:43 ============================================================================ +17:53:43 ============================================================================ +17:53:43 Slot Id : <162> +17:53:43 Transaction Type : RESPONSE +17:53:43 Received From : +17:53:43 ============================================================================ +17:53:43 FNo. Len. Field Value +17:53:43 ============================================================================ +17:53:43 [ 1] [ 4] [0210] +17:53:43 [ 2] [ 16] [1888880000087783] +17:53:43 [ 3] [ 6] [011000] +17:53:43 [ 4] [ 12] [000010000000] +17:53:43 [ 7] [ 10] [0320180130] +17:53:43 [ 11] [ 6] [000011] +17:53:43 [ 12] [ 6] [180130] +17:53:43 [ 13] [ 4] [0320] +17:53:43 [ 15] [ 4] [0320] +17:53:43 [ 18] [ 4] [6011] +17:53:43 [ 19] [ 3] [418] +17:53:43 [ 32] [ 6] [220699] +17:53:43 [ 37] [ 12] [507900281398] +17:53:43 [ 38] [ 6] [000000] +17:53:43 [ 39] [ 2] [07] +17:53:43 [ 41] [ 8] [10000100] +17:53:43 [ 49] [ 3] [418] +17:53:43 ============================================================================ +17:53:43 Sending to : +17:53:43 ============================================================================ +17:53:43 + + +waiting on router queue for slot.... +17:53:44 ============================================================================ +17:53:44 Slot Id : <122> +17:53:44 Transaction Type : RESPONSE +17:53:44 Received From : +17:53:44 ============================================================================ +17:53:44 FNo. Len. Field Value +17:53:44 ============================================================================ +17:53:44 [ 1] [ 4] [0210] +17:53:44 [ 2] [ 16] [6213541000135015] +17:53:44 [ 3] [ 6] [010000] +17:53:44 [ 4] [ 12] [000050000000] +17:53:44 [ 7] [ 10] [0320105249] +17:53:44 [ 11] [ 6] [271001] +17:53:44 [ 12] [ 6] [175249] +17:53:44 [ 13] [ 4] [0320] +17:53:44 [ 15] [ 4] [0320] +17:53:44 [ 18] [ 4] [6011] +17:53:44 [ 19] [ 3] [418] +17:53:44 [ 32] [ 6] [180893] +17:53:44 [ 35] [ 32] [6213541000135015=491212013501761] +17:53:44 [ 37] [ 12] [507910271001] +17:53:44 [ 38] [ 6] [211573] +17:53:44 [ 39] [ 2] [00] +17:53:44 [ 41] [ 8] [0101VTEB] +17:53:44 [ 49] [ 3] [418] +17:53:44 [ 54] [ 40] [0001418C0011501458980002418C001150145898] +17:53:44 ============================================================================ +17:53:44 Sending to : +17:53:44 ============================================================================ +17:53:44 + + +waiting on router queue for slot.... +17:53:44 ============================================================================ +17:53:44 Slot Id : <161> +17:53:44 Transaction Type : REQUEST +17:53:44 Received From : +17:53:44 ============================================================================ +17:53:44 FNo. Len. Field Value +17:53:44 ============================================================================ +17:53:44 [ 1] [ 4] [0200] +17:53:44 [ 2] [ 16] [6213541000695026] +17:53:44 [ 3] [ 6] [011000] +17:53:44 [ 4] [ 12] [000025000000] +17:53:44 [ 7] [ 10] [0320105251] +17:53:44 [ 11] [ 6] [271002] +17:53:44 [ 12] [ 6] [175251] +17:53:44 [ 13] [ 4] [0320] +17:53:44 [ 14] [ 4] [4912] +17:53:44 [ 15] [ 4] [0320] +17:53:44 [ 18] [ 4] [6011] +17:53:44 [ 19] [ 3] [418] +17:53:44 [ 22] [ 3] [021] +17:53:44 [ 25] [ 2] [01] +17:53:44 [ 28] [ 9] [D00002000] +17:53:44 [ 32] [ 6] [180893] +17:53:44 [ 35] [ 32] [6213541000695026=491212019502780] +17:53:44 [ 37] [ 12] [507910271002] +17:53:44 [ 41] [ 8] [0113SVBR] +17:53:44 [ 42] [ 15] [999999 ] +17:53:44 [ 43] [ 40] [ATM SAVANNAKHET BRANCH LOCATION, Kaisone] +17:53:44 [ 49] [ 3] [418] +17:53:44 [ 52] [ 16] [439B0F538E5540F4] +17:53:44 ============================================================================ +17:53:44 + + +waiting on router queue for slot.... +17:53:44 Sending to : +17:53:44 ============================================================================ +17:53:44 Sending to : +17:53:44 ============================================================================ +17:53:44 ============================================================================ +17:53:44 Slot Id : <162> +17:53:44 Transaction Type : RESPONSE +17:53:44 Received From : +17:53:44 ============================================================================ +17:53:44 FNo. Len. Field Value +17:53:44 ============================================================================ +17:53:44 [ 1] [ 4] [0210] +17:53:44 [ 2] [ 16] [1888880000087783] +17:53:44 [ 3] [ 6] [011000] +17:53:44 [ 4] [ 12] [000010000000] +17:53:44 [ 7] [ 10] [0320180130] +17:53:44 [ 11] [ 6] [000011] +17:53:44 [ 12] [ 6] [180130] +17:53:44 [ 13] [ 4] [0320] +17:53:44 [ 15] [ 4] [0320] +17:53:44 [ 18] [ 4] [6011] +17:53:44 [ 19] [ 3] [418] +17:53:44 [ 32] [ 6] [220699] +17:53:44 [ 37] [ 12] [507900281398] +17:53:44 [ 38] [ 6] [000000] +17:53:44 [ 39] [ 2] [07] +17:53:44 [ 41] [ 8] [10000100] +17:53:44 [ 49] [ 3] [418] +17:53:44 ============================================================================ +17:53:44 Calculate Source COMM Id = 1 +17:53:44 ============================================================================ +17:53:44 + + +waiting on router queue for slot.... +17:53:44 ============================================================================ +17:53:44 Slot Id : <161> +17:53:44 Transaction Type : REQUEST +17:53:44 Received From : +17:53:44 ============================================================================ +17:53:44 FNo. Len. Field Value +17:53:44 ============================================================================ +17:53:44 [ 1] [ 4] [0200] +17:53:44 [ 2] [ 16] [6213541000695026] +17:53:44 [ 3] [ 6] [011000] +17:53:44 [ 4] [ 12] [000025000000] +17:53:44 [ 7] [ 10] [0320105251] +17:53:44 [ 11] [ 6] [271002] +17:53:44 [ 12] [ 6] [175251] +17:53:44 [ 13] [ 4] [0320] +17:53:44 [ 14] [ 4] [4912] +17:53:44 [ 15] [ 4] [0320] +17:53:44 [ 18] [ 4] [6011] +17:53:44 [ 19] [ 3] [418] +17:53:44 [ 22] [ 3] [021] +17:53:44 [ 25] [ 2] [01] +17:53:44 [ 28] [ 9] [D00002000] +17:53:44 [ 32] [ 6] [180893] +17:53:44 [ 35] [ 32] [6213541000695026=491212019502780] +17:53:44 [ 37] [ 12] [507910271002] +17:53:44 [ 41] [ 8] [0113SVBR] +17:53:44 [ 42] [ 15] [999999 ] +17:53:44 [ 43] [ 40] [ATM SAVANNAKHET BRANCH LOCATION, Kaisone] +17:53:44 [ 49] [ 3] [418] +17:53:44 [ 52] [ 16] [439B0F538E5540F4] +17:53:44 ============================================================================ +17:53:44 + + +waiting on router queue for slot.... +17:53:44 Sending to : +17:53:44 ============================================================================ +17:53:45 ============================================================================ +17:53:45 Slot Id : <161> +17:53:45 Transaction Type : REQUEST +17:53:45 Received From : +17:53:45 ============================================================================ +17:53:45 FNo. Len. Field Value +17:53:45 ============================================================================ +17:53:45 [ 1] [ 4] [0200] +17:53:45 [ 2] [ 16] [6213541000695026] +17:53:45 [ 3] [ 6] [011000] +17:53:45 [ 4] [ 12] [000025000000] +17:53:45 [ 7] [ 10] [0320105251] +17:53:45 [ 11] [ 6] [271002] +17:53:45 [ 12] [ 6] [175251] +17:53:45 [ 13] [ 4] [0320] +17:53:45 [ 14] [ 4] [4912] +17:53:45 [ 15] [ 4] [0320] +17:53:45 [ 18] [ 4] [6011] +17:53:45 [ 19] [ 3] [418] +17:53:45 [ 22] [ 3] [021] +17:53:45 [ 25] [ 2] [01] +17:53:45 [ 28] [ 9] [D00002000] +17:53:45 [ 32] [ 6] [180893] +17:53:45 [ 35] [ 32] [6213541000695026=491212019502780] +17:53:45 [ 37] [ 12] [507910271002] +17:53:45 [ 41] [ 8] [0113SVBR] +17:53:45 [ 42] [ 15] [999999 ] +17:53:45 [ 43] [ 40] [ATM SAVANNAKHET BRANCH LOCATION, Kaisone] +17:53:45 [ 49] [ 3] [418] +17:53:45 [ 52] [ 16] [3DA63241667257AA] +17:53:45 ============================================================================ +17:53:45 + + +waiting on router queue for slot.... +17:53:45 Sending to : <0> +17:53:45 ============================================================================ +17:53:45 ============================================================================ +17:53:45 Slot Id : <132> +17:53:45 Transaction Type : REQUEST +17:53:45 Received From : +17:53:45 ============================================================================ +17:53:45 FNo. Len. Field Value +17:53:45 ============================================================================ +17:53:45 [ 1] [ 4] [0800] +17:53:45 [ 7] [ 10] [0320105252] +17:53:45 [ 11] [ 6] [157572] +17:53:45 [ 70] [ 3] [301] +17:53:45 ============================================================================ +17:53:45 + + +waiting on router queue for slot.... +17:53:45 Sending to : +17:53:45 ============================================================================ +17:53:45 ============================================================================ +17:53:45 Slot Id : <132> +17:53:45 Transaction Type : RESPONSE +17:53:45 Received From : +17:53:45 ============================================================================ +17:53:45 FNo. Len. Field Value +17:53:45 ============================================================================ +17:53:45 [ 1] [ 4] [0810] +17:53:45 [ 7] [ 10] [0320105252] +17:53:45 [ 11] [ 6] [157572] +17:53:45 [ 39] [ 2] [00] +17:53:45 [ 70] [ 3] [301] +17:53:45 ============================================================================ +17:53:45 Calculate Source COMM Id = 2 +17:53:45 ============================================================================ +17:53:45 + + +waiting on router queue for slot.... +17:53:45 ============================================================================ +17:53:45 Slot Id : <161> +17:53:45 Transaction Type : RESPONSE +17:53:45 Received From : +17:53:45 ============================================================================ +17:53:45 FNo. Len. Field Value +17:53:45 ============================================================================ +17:53:45 [ 1] [ 4] [0210] +17:53:45 [ 2] [ 16] [6213541000695026] +17:53:45 [ 3] [ 6] [011000] +17:53:45 [ 4] [ 12] [000025000000] +17:53:45 [ 7] [ 10] [0320105251] +17:53:45 [ 11] [ 6] [271002] +17:53:45 [ 12] [ 6] [175251] +17:53:45 [ 13] [ 4] [0320] +17:53:45 [ 15] [ 4] [0320] +17:53:45 [ 18] [ 4] [6011] +17:53:45 [ 19] [ 3] [418] +17:53:45 [ 32] [ 6] [180893] +17:53:45 [ 35] [ 32] [6213541000695026=491212019502780] +17:53:45 [ 37] [ 12] [507910271002] +17:53:45 [ 38] [ 6] [937210] +17:53:45 [ 39] [ 2] [00] +17:53:45 [ 41] [ 8] [0113SVBR] +17:53:45 [ 49] [ 3] [418] +17:53:45 [ 54] [ 40] [1001418C0000051133451002418C000005113345] +17:53:45 ============================================================================ +17:53:45 Sending to : +17:53:45 ============================================================================ +17:53:45 + + +waiting on router queue for slot.... +17:53:46 ============================================================================ +17:53:46 Slot Id : <122> +17:53:46 Transaction Type : RESPONSE +17:53:46 Received From : +17:53:46 ============================================================================ +17:53:46 FNo. Len. Field Value +17:53:46 ============================================================================ +17:53:46 [ 1] [ 4] [0210] +17:53:46 [ 2] [ 16] [6213541000135015] +17:53:46 [ 3] [ 6] [010000] +17:53:46 [ 4] [ 12] [000050000000] +17:53:46 [ 7] [ 10] [0320105249] +17:53:46 [ 11] [ 6] [271001] +17:53:46 [ 12] [ 6] [175249] +17:53:46 [ 13] [ 4] [0320] +17:53:46 [ 15] [ 4] [0320] +17:53:46 [ 18] [ 4] [6011] +17:53:46 [ 19] [ 3] [418] +17:53:46 [ 32] [ 6] [180893] +17:53:46 [ 35] [ 32] [6213541000135015=491212013501761] +17:53:46 [ 37] [ 12] [507910271001] +17:53:46 [ 38] [ 6] [211573] +17:53:46 [ 39] [ 2] [00] +17:53:46 [ 41] [ 8] [0101VTEB] +17:53:46 [ 49] [ 3] [418] +17:53:46 [ 54] [ 40] [0001418C0011501458980002418C001150145898] +17:53:46 ============================================================================ +17:53:46 Calculate Source COMM Id = 2 +17:53:46 ============================================================================ +17:53:46 + + +waiting on router queue for slot.... +17:53:47 ============================================================================ +17:53:47 Slot Id : <161> +17:53:47 Transaction Type : RESPONSE +17:53:47 Received From : +17:53:47 ============================================================================ +17:53:47 FNo. Len. Field Value +17:53:47 ============================================================================ +17:53:47 [ 1] [ 4] [0210] +17:53:47 [ 2] [ 16] [6213541000695026] +17:53:47 [ 3] [ 6] [011000] +17:53:47 [ 4] [ 12] [000025000000] +17:53:47 [ 7] [ 10] [0320105251] +17:53:47 [ 11] [ 6] [271002] +17:53:47 [ 12] [ 6] [175251] +17:53:47 [ 13] [ 4] [0320] +17:53:47 [ 15] [ 4] [0320] +17:53:47 [ 18] [ 4] [6011] +17:53:47 [ 19] [ 3] [418] +17:53:47 [ 32] [ 6] [180893] +17:53:47 [ 35] [ 32] [6213541000695026=491212019502780] +17:53:47 [ 37] [ 12] [507910271002] +17:53:47 [ 38] [ 6] [937210] +17:53:47 [ 39] [ 2] [00] +17:53:47 [ 41] [ 8] [0113SVBR] +17:53:47 [ 49] [ 3] [418] +17:53:47 [ 54] [ 40] [1001418C0000051133451002418C000005113345] +17:53:47 ============================================================================ +17:53:47 Calculate Source COMM Id = 2 +17:53:47 ============================================================================ +17:53:47 + + +waiting on router queue for slot.... +17:54:00 ============================================================================ +17:54:00 Slot Id : <143> +17:54:00 Transaction Type : REQUEST +17:54:00 Received From : +17:54:00 ============================================================================ +17:54:00 FNo. Len. Field Value +17:54:00 ============================================================================ +17:54:00 [ 1] [ 4] [0200] +17:54:00 [ 2] [ 16] [6688990102837109] +17:54:00 [ 3] [ 6] [301000] +17:54:00 [ 4] [ 12] [000000000000] +17:54:00 [ 7] [ 10] [0320175355] +17:54:00 [ 11] [ 6] [821511] +17:54:00 [ 12] [ 6] [175355] +17:54:00 [ 13] [ 4] [0320] +17:54:00 [ 15] [ 4] [0320] +17:54:00 [ 18] [ 4] [6011] +17:54:00 [ 22] [ 3] [900] +17:54:00 [ 25] [ 2] [02] +17:54:00 [ 28] [ 9] [D00000000] +17:54:00 [ 32] [ 6] [621354] +17:54:00 [ 35] [ 37] [6688990102837109=42101231710935000000] +17:54:00 [ 37] [ 12] [507905170425] +17:54:00 [ 41] [ 8] [01012900] +17:54:00 [ 42] [ 15] [NATIVE ] +17:54:00 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +17:54:00 [ 49] [ 3] [418] +17:54:00 [ 52] [ 16] [49B90EB978D66CC2] +17:54:00 ============================================================================ +17:54:00 + + +waiting on router queue for slot.... +17:54:00 Sending to : +17:54:00 ============================================================================ +17:54:00 Sending to : +17:54:00 ============================================================================ +17:54:01 ============================================================================ +17:54:01 Slot Id : <143> +17:54:01 Transaction Type : REQUEST +17:54:01 Received From : +17:54:01 ============================================================================ +17:54:01 FNo. Len. Field Value +17:54:01 ============================================================================ +17:54:01 [ 1] [ 4] [0200] +17:54:01 [ 2] [ 16] [6688990102837109] +17:54:01 [ 3] [ 6] [301000] +17:54:01 [ 4] [ 12] [000000000000] +17:54:01 [ 7] [ 10] [0320175355] +17:54:01 [ 11] [ 6] [821511] +17:54:01 [ 12] [ 6] [175355] +17:54:01 [ 13] [ 4] [0320] +17:54:01 [ 15] [ 4] [0320] +17:54:01 [ 18] [ 4] [6011] +17:54:01 [ 22] [ 3] [900] +17:54:01 [ 25] [ 2] [02] +17:54:01 [ 28] [ 9] [D00000000] +17:54:01 [ 32] [ 6] [621354] +17:54:01 [ 35] [ 37] [6688990102837109=42101231710935000000] +17:54:01 [ 37] [ 12] [507905170425] +17:54:01 [ 41] [ 8] [01012900] +17:54:01 [ 42] [ 15] [NATIVE ] +17:54:01 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +17:54:01 [ 49] [ 3] [418] +17:54:01 [ 52] [ 16] [49B90EB978D66CC2] +17:54:01 ============================================================================ +17:54:01 + + +waiting on router queue for slot.... +17:54:01 Sending to : +17:54:01 ============================================================================ +17:54:01 ============================================================================ +17:54:01 Slot Id : <143> +17:54:01 Transaction Type : REQUEST +17:54:01 Received From : +17:54:01 ============================================================================ +17:54:01 FNo. Len. Field Value +17:54:01 ============================================================================ +17:54:01 [ 1] [ 4] [0200] +17:54:01 [ 2] [ 16] [6688990102837109] +17:54:01 [ 3] [ 6] [301000] +17:54:01 [ 4] [ 12] [000000000000] +17:54:01 [ 7] [ 10] [0320175355] +17:54:01 [ 11] [ 6] [821511] +17:54:01 [ 12] [ 6] [175355] +17:54:01 [ 13] [ 4] [0320] +17:54:01 [ 15] [ 4] [0320] +17:54:01 [ 18] [ 4] [6011] +17:54:01 [ 22] [ 3] [900] +17:54:01 [ 25] [ 2] [02] +17:54:01 [ 28] [ 9] [D00000000] +17:54:01 [ 32] [ 6] [621354] +17:54:01 [ 35] [ 37] [6688990102837109=42101231710935000000] +17:54:01 [ 37] [ 12] [507905170425] +17:54:01 [ 41] [ 8] [01012900] +17:54:01 [ 42] [ 15] [NATIVE ] +17:54:01 [ 43] [ 40] [Kinevilai Garment Vientiane LAO] +17:54:01 [ 49] [ 3] [418] +17:54:01 [ 52] [ 16] [F03B873F8162B7CA] +17:54:01 ============================================================================ +17:54:01 + + +waiting on router queue for slot.... +17:54:01 Sending to : <4> +17:54:01 ============================================================================ +17:54:02 ============================================================================ +17:54:02 Slot Id : <143> +17:54:02 Transaction Type : RESPONSE +17:54:02 Received From : +17:54:02 ============================================================================ +17:54:02 FNo. Len. Field Value +17:54:02 ============================================================================ +17:54:02 [ 1] [ 4] [0210] +17:54:02 [ 2] [ 16] [6688990102837109] +17:54:02 [ 3] [ 6] [301000] +17:54:02 [ 4] [ 12] [000000000000] +17:54:02 [ 11] [ 6] [821511] +17:54:02 [ 12] [ 6] [175355] +17:54:02 [ 15] [ 4] [0320] +17:54:02 [ 18] [ 4] [6011] +17:54:02 [ 32] [ 6] [621354] +17:54:02 [ 35] [ 37] [6688990102837109=42101231710935000000] +17:54:02 [ 37] [ 12] [507905170425] +17:54:02 [ 38] [ 6] [994159] +17:54:02 [ 39] [ 2] [00] +17:54:02 [ 41] [ 8] [01012900] +17:54:02 [ 49] [ 3] [418] +17:54:02 [ 54] [ 20] [1002840C000000003521] +17:54:02 ============================================================================ +17:54:02 Sending to : +17:54:02 ============================================================================ +17:54:02 + + +waiting on router queue for slot.... +17:54:02 ============================================================================ +17:54:02 Slot Id : <145> +17:54:02 Transaction Type : REQUEST +17:54:02 Received From : +17:54:02 ============================================================================ +17:54:02 FNo. Len. Field Value +17:54:02 ============================================================================ +17:54:02 [ 1] [ 4] [0200] +17:54:02 [ 2] [ 16] [1808930600047377] +17:54:02 [ 3] [ 6] [011000] +17:54:02 [ 4] [ 12] [000100000000] +17:54:02 [ 7] [ 10] [0320175422] +17:54:02 [ 11] [ 6] [209948] +17:54:02 [ 12] [ 6] [175015] +17:54:02 [ 13] [ 4] [0320] +17:54:02 [ 14] [ 4] [1803] +17:54:02 [ 15] [ 4] [0320] +17:54:02 [ 18] [ 4] [6011] +17:54:02 [ 19] [ 3] [418] +17:54:02 [ 22] [ 3] [021] +17:54:02 [ 25] [ 2] [01] +17:54:02 [ 28] [ 9] [D00002000] +17:54:02 [ 32] [ 6] [198901] +17:54:02 [ 35] [ 27] [1808930600047377=1803500222] +17:54:02 [ 37] [ 12] [507917209948] +17:54:02 [ 41] [ 8] [00852902] +17:54:02 [ 42] [ 15] [000000040852902] +17:54:02 [ 43] [ 40] [ATM SAVANCH II VN ] +17:54:02 [ 49] [ 3] [418] +17:54:02 [ 52] [ 16] [89053BD6B607736E] +17:54:02 ============================================================================ +17:54:02 + + +waiting on router queue for slot.... +17:54:02 Sending to : +17:54:02 ============================================================================ +17:54:02 Sending to : +17:54:02 ============================================================================ +17:54:02 ============================================================================ +17:54:02 Slot Id : <145> +17:54:02 Transaction Type : REQUEST +17:54:02 Received From : +17:54:02 ============================================================================ +17:54:02 FNo. Len. Field Value +17:54:02 ============================================================================ +17:54:02 [ 1] [ 4] [0200] +17:54:02 [ 2] [ 16] [1808930600047377] +17:54:02 [ 3] [ 6] [011000] +17:54:02 [ 4] [ 12] [000100000000] +17:54:02 [ 7] [ 10] [0320175422] +17:54:02 [ 11] [ 6] [209948] +17:54:02 [ 12] [ 6] [175015] +17:54:02 [ 13] [ 4] [0320] +17:54:02 [ 14] [ 4] [1803] +17:54:02 [ 15] [ 4] [0320] +17:54:02 [ 18] [ 4] [6011] +17:54:02 [ 19] [ 3] [418] +17:54:02 [ 22] [ 3] [021] +17:54:02 [ 25] [ 2] [01] +17:54:02 [ 28] [ 9] [D00002000] +17:54:02 [ 32] [ 6] [198901] +17:54:02 [ 35] [ 27] [1808930600047377=1803500222] +17:54:02 [ 37] [ 12] [507917209948] +17:54:02 [ 41] [ 8] [00852902] +17:54:02 [ 42] [ 15] [000000040852902] +17:54:02 [ 43] [ 40] [ATM SAVANCH II VN ] +17:54:02 [ 49] [ 3] [418] +17:54:02 [ 52] [ 16] [89053BD6B607736E] +17:54:02 ============================================================================ +17:54:02 + + +waiting on router queue for slot.... +17:54:02 Sending to : +17:54:02 ============================================================================ +17:54:02 ============================================================================ +17:54:02 Slot Id : <154> +17:54:02 Transaction Type : REQUEST +17:54:02 Received From : +17:54:02 ============================================================================ +17:54:02 FNo. Len. Field Value +17:54:02 ============================================================================ +17:54:02 [ 1] [ 4] [0200] +17:54:02 [ 2] [ 16] [6688990106952904] +17:54:02 [ 3] [ 6] [011000] +17:54:02 [ 4] [ 12] [000010000000] +17:54:02 [ 7] [ 10] [0320175357] +17:54:02 [ 11] [ 6] [821519] +17:54:02 [ 12] [ 6] [175357] +17:54:02 [ 13] [ 4] [0320] +17:54:02 [ 15] [ 4] [0320] +17:54:02 [ 18] [ 4] [6011] +17:54:02 [ 22] [ 3] [900] +17:54:02 [ 25] [ 2] [02] +17:54:02 [ 28] [ 9] [D00002000] +17:54:02 [ 32] [ 6] [621354] +17:54:02 [ 35] [ 37] [6688990106952904=44011231290429300000] +17:54:02 [ 37] [ 12] [507904635970] +17:54:02 [ 41] [ 8] [17000800] +17:54:02 [ 42] [ 15] [NATIVE ] +17:54:02 [ 43] [ 40] [Ban Nakhai Naxay LAO] +17:54:02 [ 49] [ 3] [418] +17:54:02 [ 52] [ 16] [6EC81D62FA50541D] +17:54:02 ============================================================================ +17:54:02 + + +waiting on router queue for slot.... +17:54:02 Sending to : +17:54:02 ============================================================================ +17:54:02 Sending to : +17:54:02 ============================================================================ +17:54:02 ============================================================================ +17:54:02 Slot Id : <145> +17:54:02 Transaction Type : REQUEST +17:54:02 Received From : +17:54:02 ============================================================================ +17:54:02 FNo. Len. Field Value +17:54:02 ============================================================================ +17:54:02 [ 1] [ 4] [0200] +17:54:02 [ 2] [ 16] [1808930600047377] +17:54:02 [ 3] [ 6] [011000] +17:54:02 [ 4] [ 12] [000100000000] +17:54:02 [ 7] [ 10] [0320175422] +17:54:02 [ 11] [ 6] [209948] +17:54:02 [ 12] [ 6] [175015] +17:54:02 [ 13] [ 4] [0320] +17:54:02 [ 14] [ 4] [1803] +17:54:02 [ 15] [ 4] [0320] +17:54:02 [ 18] [ 4] [6011] +17:54:02 [ 19] [ 3] [418] +17:54:02 [ 22] [ 3] [021] +17:54:02 [ 25] [ 2] [01] +17:54:02 [ 28] [ 9] [D00002000] +17:54:02 [ 32] [ 6] [198901] +17:54:02 [ 35] [ 27] [1808930600047377=1803500222] +17:54:02 [ 37] [ 12] [507917209948] +17:54:02 [ 41] [ 8] [00852902] +17:54:02 [ 42] [ 15] [000000040852902] +17:54:02 [ 43] [ 40] [ATM SAVANCH II VN ] +17:54:02 [ 49] [ 3] [418] +17:54:02 [ 52] [ 16] [9C3A2C223A4BF0F0] +17:54:02 ============================================================================ +17:54:02 + + +waiting on router queue for slot.... +17:54:02 Sending to : <2> +17:54:02 ============================================================================ +17:54:02 ============================================================================ +17:54:02 Slot Id : <166> +17:54:02 Transaction Type : REQUEST +17:54:02 Received From : +17:54:02 ============================================================================ +17:54:02 FNo. Len. Field Value +17:54:02 ============================================================================ +17:54:02 [ 1] [ 4] [0800] +17:54:02 [ 7] [ 10] [0320105309] +17:54:02 [ 11] [ 6] [157573] +17:54:02 [ 70] [ 3] [301] +17:54:02 ============================================================================ +17:54:02 + + +waiting on router queue for slot.... +17:54:02 Sending to : +17:54:02 ============================================================================ +17:54:02 ============================================================================ +17:54:02 Slot Id : <166> +17:54:02 Transaction Type : RESPONSE +17:54:02 Received From : +17:54:02 ============================================================================ +17:54:02 FNo. Len. Field Value +17:54:02 ============================================================================ +17:54:02 [ 1] [ 4] [0810] +17:54:02 [ 7] [ 10] [0320105309] +17:54:02 [ 11] [ 6] [157573] +17:54:02 [ 39] [ 2] [00] +17:54:02 [ 70] [ 3] [301] +17:54:02 ============================================================================ +17:54:02 Calculate Source COMM Id = 2 +17:54:02 ============================================================================ +17:54:02 + + +waiting on router queue for slot.... +17:54:02 ============================================================================ +17:54:02 Slot Id : <154> +17:54:02 Transaction Type : REQUEST +17:54:02 Received From : +17:54:02 ============================================================================ +17:54:02 FNo. Len. Field Value +17:54:02 ============================================================================ +17:54:02 [ 1] [ 4] [0200] +17:54:02 [ 2] [ 16] [6688990106952904] +17:54:02 [ 3] [ 6] [011000] +17:54:02 [ 4] [ 12] [000010000000] +17:54:02 [ 7] [ 10] [0320175357] +17:54:02 [ 11] [ 6] [821519] +17:54:02 [ 12] [ 6] [175357] +17:54:02 [ 13] [ 4] [0320] +17:54:02 [ 15] [ 4] [0320] +17:54:02 [ 18] [ 4] [6011] +17:54:02 [ 22] [ 3] [900] +17:54:02 [ 25] [ 2] [02] +17:54:02 [ 28] [ 9] [D00002000] +17:54:02 [ 32] [ 6] [621354] +17:54:02 [ 35] [ 37] [6688990106952904=44011231290429300000] +17:54:02 [ 37] [ 12] [507904635970] +17:54:02 [ 41] [ 8] [17000800] +17:54:02 [ 42] [ 15] [NATIVE ] +17:54:02 [ 43] [ 40] [Ban Nakhai Naxay LAO] +17:54:02 [ 49] [ 3] [418] +17:54:02 [ 52] [ 16] [6EC81D62FA50541D] +17:54:02 ============================================================================ +17:54:02 + + +waiting on router queue for slot.... +17:54:02 Sending to : +17:54:02 ============================================================================ +17:54:03 ============================================================================ +17:54:03 Slot Id : <154> +17:54:03 Transaction Type : REQUEST +17:54:03 Received From : +17:54:03 ============================================================================ +17:54:03 FNo. Len. Field Value +17:54:03 ============================================================================ +17:54:03 [ 1] [ 4] [0200] +17:54:03 [ 2] [ 16] [6688990106952904] +17:54:03 [ 3] [ 6] [011000] +17:54:03 [ 4] [ 12] [000010000000] +17:54:03 [ 7] [ 10] [0320175357] +17:54:03 [ 11] [ 6] [821519] +17:54:03 [ 12] [ 6] [175357] +17:54:03 [ 13] [ 4] [0320] +17:54:03 [ 15] [ 4] [0320] +17:54:03 [ 18] [ 4] [6011] +17:54:03 [ 22] [ 3] [900] +17:54:03 [ 25] [ 2] [02] +17:54:03 [ 28] [ 9] [D00002000] +17:54:03 [ 32] [ 6] [621354] +17:54:03 [ 35] [ 37] [6688990106952904=44011231290429300000] +17:54:03 [ 37] [ 12] [507904635970] +17:54:03 [ 41] [ 8] [17000800] +17:54:03 [ 42] [ 15] [NATIVE ] +17:54:03 [ 43] [ 40] [Ban Nakhai Naxay LAO] +17:54:03 [ 49] [ 3] [418] +17:54:03 [ 52] [ 16] [44306EB8D360CC63] +17:54:03 ============================================================================ +17:54:03 + + +waiting on router queue for slot.... +17:54:03 Sending to : <4> +17:54:03 ============================================================================ +17:54:03 ============================================================================ +17:54:03 Slot Id : <143> +17:54:03 Transaction Type : RESPONSE +17:54:03 Received From : +17:54:03 ============================================================================ +17:54:03 FNo. Len. Field Value +17:54:03 ============================================================================ +17:54:03 [ 1] [ 4] [0210] +17:54:03 [ 2] [ 16] [6688990102837109] +17:54:03 [ 3] [ 6] [301000] +17:54:03 [ 4] [ 12] [000000000000] +17:54:03 [ 11] [ 6] [821511] +17:54:03 [ 12] [ 6] [175355] +17:54:03 [ 15] [ 4] [0320] +17:54:03 [ 18] [ 4] [6011] +17:54:03 [ 32] [ 6] [621354] +17:54:03 [ 35] [ 37] [6688990102837109=42101231710935000000] +17:54:03 [ 37] [ 12] [507905170425] +17:54:03 [ 38] [ 6] [994159] +17:54:03 [ 39] [ 2] [00] +17:54:03 [ 41] [ 8] [01012900] +17:54:03 [ 49] [ 3] [418] +17:54:03 [ 54] [ 20] [1002840C000000003521] +17:54:03 ============================================================================ +17:54:03 Calculate Source COMM Id = 0 +17:54:03 ============================================================================ +17:54:03 + + +waiting on router queue for slot.... +17:54:04 ============================================================================ +17:54:04 Slot Id : <154> +17:54:04 Transaction Type : RESPONSE +17:54:04 Received From : +17:54:04 ============================================================================ +17:54:04 FNo. Len. Field Value +17:54:04 ============================================================================ +17:54:04 [ 1] [ 4] [0210] +17:54:04 [ 2] [ 16] [6688990106952904] +17:54:04 [ 3] [ 6] [011000] +17:54:04 [ 4] [ 12] [000010000000] +17:54:04 [ 11] [ 6] [821519] +17:54:04 [ 12] [ 6] [175357] +17:54:04 [ 15] [ 4] [0320] +17:54:04 [ 18] [ 4] [6011] +17:54:04 [ 32] [ 6] [621354] +17:54:04 [ 35] [ 37] [6688990106952904=44011231290429300000] +17:54:04 [ 37] [ 12] [507904635970] +17:54:04 [ 38] [ 6] [685412] +17:54:04 [ 39] [ 2] [00] +17:54:04 [ 41] [ 8] [17000800] +17:54:04 [ 49] [ 3] [418] +17:54:04 [ 54] [ 20] [1002418C000041294810] +17:54:04 ============================================================================ +17:54:04 Sending to : +17:54:04 ============================================================================ +17:54:04 + + +waiting on router queue for slot.... +17:54:05 ============================================================================ +17:54:05 Slot Id : <154> +17:54:05 Transaction Type : RESPONSE +17:54:05 Received From : +17:54:05 ============================================================================ +17:54:05 FNo. Len. Field Value +17:54:05 ============================================================================ +17:54:05 [ 1] [ 4] [0210] +17:54:05 [ 2] [ 16] [6688990106952904] +17:54:05 [ 3] [ 6] [011000] +17:54:05 [ 4] [ 12] [000010000000] +17:54:05 [ 11] [ 6] [821519] +17:54:05 [ 12] [ 6] [175357] +17:54:05 [ 15] [ 4] [0320] +17:54:05 [ 18] [ 4] [6011] +17:54:05 [ 32] [ 6] [621354] +17:54:05 [ 35] [ 37] [6688990106952904=44011231290429300000] +17:54:05 [ 37] [ 12] [507904635970] +17:54:05 [ 38] [ 6] [685412] +17:54:05 [ 39] [ 2] [00] +17:54:05 [ 41] [ 8] [17000800] +17:54:05 [ 49] [ 3] [418] +17:54:05 [ 54] [ 20] [1002418C000041294810] +17:54:05 ============================================================================ +17:54:05 Calculate Source COMM Id = 0 +17:54:05 ============================================================================ +17:54:05 + + +waiting on router queue for slot.... +17:54:07 ============================================================================ +17:54:07 Slot Id : <145> +17:54:07 Transaction Type : RESPONSE +17:54:07 Received From : +17:54:07 ============================================================================ +17:54:07 FNo. Len. Field Value +17:54:07 ============================================================================ +17:54:07 [ 1] [ 4] [0210] +17:54:07 [ 2] [ 16] [1808930600047377] +17:54:07 [ 3] [ 6] [011000] +17:54:07 [ 4] [ 12] [000100000000] +17:54:07 [ 6] [ 12] [000100000000] +17:54:07 [ 7] [ 10] [0320175422] +17:54:07 [ 11] [ 6] [209948] +17:54:07 [ 12] [ 6] [175015] +17:54:07 [ 13] [ 4] [0320] +17:54:07 [ 14] [ 4] [1803] +17:54:07 [ 18] [ 4] [6011] +17:54:07 [ 19] [ 3] [418] +17:54:07 [ 22] [ 3] [021] +17:54:07 [ 32] [ 6] [198901] +17:54:07 [ 35] [ 27] [1808930600047377=1803500222] +17:54:07 [ 37] [ 12] [507917209948] +17:54:07 [ 38] [ 6] [209948] +17:54:07 [ 39] [ 2] [00] +17:54:07 [ 41] [ 8] [00852902] +17:54:07 [ 49] [ 3] [418] +17:54:07 [ 52] [ 16] [9C3A2C223A4BF0F0] +17:54:07 [ 54] [ 20] [1001418C004257700000] +17:54:07 ============================================================================ +17:54:07 Sending to : +17:54:07 ============================================================================ +17:54:07 + + +waiting on router queue for slot.... +17:54:09 ============================================================================ +17:54:09 Slot Id : <145> +17:54:09 Transaction Type : RESPONSE +17:54:09 Received From : +17:54:09 ============================================================================ +17:54:09 FNo. Len. Field Value +17:54:09 ============================================================================ +17:54:09 [ 1] [ 4] [0210] +17:54:09 [ 2] [ 16] [1808930600047377] +17:54:09 [ 3] [ 6] [011000] +17:54:09 [ 4] [ 12] [000100000000] +17:54:09 [ 6] [ 12] [000100000000] +17:54:09 [ 7] [ 10] [0320175422] +17:54:09 [ 11] [ 6] [209948] +17:54:09 [ 12] [ 6] [175015] +17:54:09 [ 13] [ 4] [0320] +17:54:09 [ 14] [ 4] [1803] +17:54:09 [ 18] [ 4] [6011] +17:54:09 [ 19] [ 3] [418] +17:54:09 [ 22] [ 3] [021] +17:54:09 [ 32] [ 6] [198901] +17:54:09 [ 35] [ 27] [1808930600047377=1803500222] +17:54:09 [ 37] [ 12] [507917209948] +17:54:09 [ 38] [ 6] [209948] +17:54:09 [ 39] [ 2] [00] +17:54:09 [ 41] [ 8] [00852902] +17:54:09 [ 49] [ 3] [418] +17:54:09 [ 52] [ 16] [9C3A2C223A4BF0F0] +17:54:09 [ 54] [ 20] [1001418C004257700000] +17:54:09 ============================================================================ +17:54:09 Calculate Source COMM Id = 5 +17:54:09 ============================================================================ +17:54:09 + + +waiting on router queue for slot.... +17:54:11 ============================================================================ +17:54:11 Slot Id : <120> +17:54:11 Transaction Type : REQUEST +17:54:11 Received From : +17:54:11 ============================================================================ +17:54:11 FNo. Len. Field Value +17:54:11 ============================================================================ +17:54:11 [ 1] [ 4] [0200] +17:54:11 [ 2] [ 16] [6213544001745634] +17:54:11 [ 3] [ 6] [010000] +17:54:11 [ 4] [ 12] [000050000000] +17:54:11 [ 7] [ 10] [0320180158] +17:54:11 [ 11] [ 6] [021192] +17:54:11 [ 12] [ 6] [180158] +17:54:11 [ 13] [ 4] [0320] +17:54:11 [ 14] [ 4] [4912] +17:54:11 [ 15] [ 4] [0320] +17:54:11 [ 18] [ 4] [6011] +17:54:11 [ 22] [ 3] [900] +17:54:11 [ 25] [ 2] [02] +17:54:11 [ 28] [ 9] [D00002000] +17:54:11 [ 32] [ 6] [220699] +17:54:11 [ 35] [ 32] [6213544001745634=491212014563969] +17:54:11 [ 37] [ 12] [507900263133] +17:54:11 [ 41] [ 8] [01001400] +17:54:11 [ 42] [ 15] [APTRA ] +17:54:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:54:11 [ 49] [ 3] [418] +17:54:11 [ 52] [ 16] [64E656CE5CDD5942] +17:54:11 ============================================================================ +17:54:11 + + +waiting on router queue for slot.... +17:54:11 Sending to : +17:54:11 ============================================================================ +17:54:11 Sending to : +17:54:11 ============================================================================ +17:54:11 ============================================================================ +17:54:11 Slot Id : <150> +17:54:11 Transaction Type : REQUEST +17:54:11 Received From : +17:54:11 ============================================================================ +17:54:11 FNo. Len. Field Value +17:54:11 ============================================================================ +17:54:11 [ 1] [ 4] [0200] +17:54:11 [ 2] [ 16] [1888880000087783] +17:54:11 [ 3] [ 6] [311000] +17:54:11 [ 4] [ 12] [000000000000] +17:54:11 [ 7] [ 10] [0320180158] +17:54:11 [ 11] [ 6] [000014] +17:54:11 [ 12] [ 6] [180158] +17:54:11 [ 13] [ 4] [0320] +17:54:11 [ 14] [ 4] [0000] +17:54:11 [ 15] [ 4] [0320] +17:54:11 [ 18] [ 4] [6011] +17:54:11 [ 22] [ 3] [900] +17:54:11 [ 25] [ 2] [02] +17:54:11 [ 28] [ 9] [000000000] +17:54:11 [ 32] [ 6] [220699] +17:54:11 [ 35] [ 32] [1888880000087783=000010100000009] +17:54:11 [ 37] [ 12] [507900281400] +17:54:11 [ 41] [ 8] [10000100] +17:54:11 [ 42] [ 15] [APTRA ] +17:54:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:54:11 [ 49] [ 3] [418] +17:54:11 [ 52] [ 16] [417CF3ACC0BB4E7E] +17:54:11 ============================================================================ +17:54:11 + + +waiting on router queue for slot.... +17:54:11 Sending to : +17:54:11 ============================================================================ +17:54:11 Sending to : +17:54:11 ============================================================================ +17:54:11 ============================================================================ +17:54:11 Slot Id : <120> +17:54:11 Transaction Type : REQUEST +17:54:11 Received From : +17:54:11 ============================================================================ +17:54:11 FNo. Len. Field Value +17:54:11 ============================================================================ +17:54:11 [ 1] [ 4] [0200] +17:54:11 [ 2] [ 16] [6213544001745634] +17:54:11 [ 3] [ 6] [010000] +17:54:11 [ 4] [ 12] [000050000000] +17:54:11 [ 7] [ 10] [0320180158] +17:54:11 [ 11] [ 6] [021192] +17:54:11 [ 12] [ 6] [180158] +17:54:11 [ 13] [ 4] [0320] +17:54:11 [ 14] [ 4] [4912] +17:54:11 [ 15] [ 4] [0320] +17:54:11 [ 18] [ 4] [6011] +17:54:11 [ 22] [ 3] [900] +17:54:11 [ 25] [ 2] [02] +17:54:11 [ 28] [ 9] [D00002000] +17:54:11 [ 32] [ 6] [220699] +17:54:11 [ 35] [ 32] [6213544001745634=491212014563969] +17:54:11 [ 37] [ 12] [507900263133] +17:54:11 [ 41] [ 8] [01001400] +17:54:11 [ 42] [ 15] [APTRA ] +17:54:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:54:11 [ 49] [ 3] [418] +17:54:11 [ 52] [ 16] [64E656CE5CDD5942] +17:54:11 ============================================================================ +17:54:11 + + +waiting on router queue for slot.... +17:54:11 Sending to : +17:54:11 ============================================================================ +17:54:11 ============================================================================ +17:54:11 Slot Id : <120> +17:54:11 Transaction Type : REQUEST +17:54:11 Received From : +17:54:11 ============================================================================ +17:54:11 FNo. Len. Field Value +17:54:11 ============================================================================ +17:54:11 [ 1] [ 4] [0200] +17:54:11 [ 2] [ 16] [6213544001745634] +17:54:11 [ 3] [ 6] [010000] +17:54:11 [ 4] [ 12] [000050000000] +17:54:11 [ 7] [ 10] [0320180158] +17:54:11 [ 11] [ 6] [021192] +17:54:11 [ 12] [ 6] [180158] +17:54:11 [ 13] [ 4] [0320] +17:54:11 [ 14] [ 4] [4912] +17:54:11 [ 15] [ 4] [0320] +17:54:11 [ 18] [ 4] [6011] +17:54:11 [ 22] [ 3] [900] +17:54:11 [ 25] [ 2] [02] +17:54:11 [ 28] [ 9] [D00002000] +17:54:11 [ 32] [ 6] [220699] +17:54:11 [ 35] [ 32] [6213544001745634=491212014563969] +17:54:11 [ 37] [ 12] [507900263133] +17:54:11 [ 41] [ 8] [01001400] +17:54:11 [ 42] [ 15] [APTRA ] +17:54:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:54:11 [ 49] [ 3] [418] +17:54:11 [ 52] [ 16] [6735B44CDADF4DE4] +17:54:11 ============================================================================ +17:54:11 + + +waiting on router queue for slot.... +17:54:11 Sending to : <0> +17:54:11 ============================================================================ +17:54:11 ============================================================================ +17:54:11 Slot Id : <150> +17:54:11 Transaction Type : REQUEST +17:54:11 Received From : +17:54:11 ============================================================================ +17:54:11 FNo. Len. Field Value +17:54:11 ============================================================================ +17:54:11 [ 1] [ 4] [0200] +17:54:11 [ 2] [ 16] [1888880000087783] +17:54:11 [ 3] [ 6] [311000] +17:54:11 [ 4] [ 12] [000000000000] +17:54:11 [ 7] [ 10] [0320180158] +17:54:11 [ 11] [ 6] [000014] +17:54:11 [ 12] [ 6] [180158] +17:54:11 [ 13] [ 4] [0320] +17:54:11 [ 14] [ 4] [0000] +17:54:11 [ 15] [ 4] [0320] +17:54:11 [ 18] [ 4] [6011] +17:54:11 [ 22] [ 3] [900] +17:54:11 [ 25] [ 2] [02] +17:54:11 [ 28] [ 9] [000000000] +17:54:11 [ 32] [ 6] [220699] +17:54:11 [ 35] [ 32] [1888880000087783=000010100000009] +17:54:11 [ 37] [ 12] [507900281400] +17:54:11 [ 41] [ 8] [10000100] +17:54:11 [ 42] [ 15] [APTRA ] +17:54:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:54:11 [ 49] [ 3] [418] +17:54:11 [ 52] [ 16] [417CF3ACC0BB4E7E] +17:54:11 ============================================================================ +17:54:11 + + +waiting on router queue for slot.... +17:54:11 Sending to : +17:54:11 ============================================================================ +17:54:11 ============================================================================ +17:54:11 Slot Id : <150> +17:54:11 Transaction Type : REQUEST +17:54:11 Received From : +17:54:11 ============================================================================ +17:54:11 FNo. Len. Field Value +17:54:11 ============================================================================ +17:54:11 [ 1] [ 4] [0200] +17:54:11 [ 2] [ 16] [1888880000087783] +17:54:11 [ 3] [ 6] [311000] +17:54:11 [ 4] [ 12] [000000000000] +17:54:11 [ 7] [ 10] [0320180158] +17:54:11 [ 11] [ 6] [000014] +17:54:11 [ 12] [ 6] [180158] +17:54:11 [ 13] [ 4] [0320] +17:54:11 [ 14] [ 4] [0000] +17:54:11 [ 15] [ 4] [0320] +17:54:11 [ 18] [ 4] [6011] +17:54:11 [ 22] [ 3] [900] +17:54:11 [ 25] [ 2] [02] +17:54:11 [ 28] [ 9] [000000000] +17:54:11 [ 32] [ 6] [220699] +17:54:11 [ 35] [ 32] [1888880000087783=000010100000009] +17:54:11 [ 37] [ 12] [507900281400] +17:54:11 [ 41] [ 8] [10000100] +17:54:11 [ 42] [ 15] [APTRA ] +17:54:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:54:11 [ 49] [ 3] [418] +17:54:11 [ 52] [ 16] [B328D4E7057E1B49] +17:54:11 ============================================================================ +17:54:11 + + +waiting on router queue for slot.... +17:54:11 Sending to : <5> +17:54:11 ============================================================================ +17:54:11 ============================================================================ +17:54:11 Slot Id : <150> +17:54:11 Transaction Type : RESPONSE +17:54:11 Received From : +17:54:11 ============================================================================ +17:54:11 FNo. Len. Field Value +17:54:11 ============================================================================ +17:54:11 [ 1] [ 4] [0210] +17:54:11 [ 2] [ 16] [1888880000087783] +17:54:11 [ 3] [ 6] [301000] +17:54:11 [ 4] [ 12] [000000000000] +17:54:11 [ 7] [ 10] [0320180158] +17:54:11 [ 11] [ 6] [000014] +17:54:11 [ 12] [ 6] [180158] +17:54:11 [ 13] [ 4] [0320] +17:54:11 [ 15] [ 4] [0320] +17:54:11 [ 18] [ 4] [6011] +17:54:11 [ 19] [ 3] [418] +17:54:11 [ 32] [ 6] [220699] +17:54:11 [ 37] [ 12] [507900281400] +17:54:11 [ 38] [ 6] [000000] +17:54:11 [ 39] [ 2] [07] +17:54:11 [ 41] [ 8] [10000100] +17:54:11 [ 49] [ 3] [418] +17:54:11 ============================================================================ +17:54:11 Sending to : +17:54:11 ============================================================================ +17:54:11 + + +waiting on router queue for slot.... +17:54:12 ============================================================================ +17:54:12 Slot Id : <120> +17:54:12 Transaction Type : RESPONSE +17:54:12 Received From : +17:54:12 ============================================================================ +17:54:12 FNo. Len. Field Value +17:54:12 ============================================================================ +17:54:12 [ 1] [ 4] [0210] +17:54:12 [ 2] [ 16] [6213544001745634] +17:54:12 [ 3] [ 6] [010000] +17:54:12 [ 4] [ 12] [000050000000] +17:54:12 [ 7] [ 10] [0320180158] +17:54:12 [ 11] [ 6] [021192] +17:54:12 [ 12] [ 6] [180158] +17:54:12 [ 13] [ 4] [0320] +17:54:12 [ 15] [ 4] [0320] +17:54:12 [ 18] [ 4] [6011] +17:54:12 [ 32] [ 6] [220699] +17:54:12 [ 35] [ 32] [6213544001745634=491212014563969] +17:54:12 [ 37] [ 12] [507900263133] +17:54:12 [ 38] [ 6] [600536] +17:54:12 [ 39] [ 2] [00] +17:54:12 [ 41] [ 8] [01001400] +17:54:12 [ 49] [ 3] [418] +17:54:12 [ 54] [ 40] [0001840C0000000033330002840C000000003333] +17:54:12 ============================================================================ +17:54:12 Sending to : +17:54:12 ============================================================================ +17:54:12 + + +waiting on router queue for slot.... +17:54:13 ============================================================================ +17:54:13 Slot Id : <150> +17:54:13 Transaction Type : RESPONSE +17:54:13 Received From : +17:54:13 ============================================================================ +17:54:13 FNo. Len. Field Value +17:54:13 ============================================================================ +17:54:13 [ 1] [ 4] [0210] +17:54:13 [ 2] [ 16] [1888880000087783] +17:54:13 [ 3] [ 6] [301000] +17:54:13 [ 4] [ 12] [000000000000] +17:54:13 [ 7] [ 10] [0320180158] +17:54:13 [ 11] [ 6] [000014] +17:54:13 [ 12] [ 6] [180158] +17:54:13 [ 13] [ 4] [0320] +17:54:13 [ 15] [ 4] [0320] +17:54:13 [ 18] [ 4] [6011] +17:54:13 [ 19] [ 3] [418] +17:54:13 [ 32] [ 6] [220699] +17:54:13 [ 37] [ 12] [507900281400] +17:54:13 [ 38] [ 6] [000000] +17:54:13 [ 39] [ 2] [07] +17:54:13 [ 41] [ 8] [10000100] +17:54:13 [ 49] [ 3] [418] +17:54:13 ============================================================================ +17:54:13 Calculate Source COMM Id = 1 +17:54:13 ============================================================================ +17:54:13 + + +waiting on router queue for slot.... +17:54:13 ============================================================================ +17:54:13 Slot Id : <153> +17:54:13 Transaction Type : REQUEST +17:54:13 Received From : +17:54:13 ============================================================================ +17:54:13 FNo. Len. Field Value +17:54:13 ============================================================================ +17:54:13 [ 1] [ 4] [0800] +17:54:13 [ 7] [ 10] [0320105320] +17:54:13 [ 11] [ 6] [157574] +17:54:13 [ 70] [ 3] [301] +17:54:13 ============================================================================ +17:54:13 + + +waiting on router queue for slot.... +17:54:13 Sending to : +17:54:13 ============================================================================ +17:54:13 ============================================================================ +17:54:13 Slot Id : <153> +17:54:13 Transaction Type : RESPONSE +17:54:13 Received From : +17:54:13 ============================================================================ +17:54:13 FNo. Len. Field Value +17:54:13 ============================================================================ +17:54:13 [ 1] [ 4] [0810] +17:54:13 [ 7] [ 10] [0320105320] +17:54:13 [ 11] [ 6] [157574] +17:54:13 [ 39] [ 2] [00] +17:54:13 [ 70] [ 3] [301] +17:54:13 ============================================================================ +17:54:13 Calculate Source COMM Id = 2 +17:54:13 ============================================================================ +17:54:13 + + +waiting on router queue for slot.... +17:54:14 ============================================================================ +17:54:14 Slot Id : <120> +17:54:14 Transaction Type : RESPONSE +17:54:14 Received From : +17:54:14 ============================================================================ +17:54:14 FNo. Len. Field Value +17:54:14 ============================================================================ +17:54:14 [ 1] [ 4] [0210] +17:54:14 [ 2] [ 16] [6213544001745634] +17:54:14 [ 3] [ 6] [010000] +17:54:14 [ 4] [ 12] [000050000000] +17:54:14 [ 7] [ 10] [0320180158] +17:54:14 [ 11] [ 6] [021192] +17:54:14 [ 12] [ 6] [180158] +17:54:14 [ 13] [ 4] [0320] +17:54:14 [ 15] [ 4] [0320] +17:54:14 [ 18] [ 4] [6011] +17:54:14 [ 32] [ 6] [220699] +17:54:14 [ 35] [ 32] [6213544001745634=491212014563969] +17:54:14 [ 37] [ 12] [507900263133] +17:54:14 [ 38] [ 6] [600536] +17:54:14 [ 39] [ 2] [00] +17:54:14 [ 41] [ 8] [01001400] +17:54:14 [ 49] [ 3] [418] +17:54:14 [ 54] [ 40] [0001840C0000000033330002840C000000003333] +17:54:14 ============================================================================ +17:54:14 Calculate Source COMM Id = 1 +17:54:14 ============================================================================ +17:54:14 + + +waiting on router queue for slot.... +17:54:15 ============================================================================ +17:54:15 Slot Id : <133> +17:54:15 Transaction Type : REQUEST +17:54:15 Received From : +17:54:15 ============================================================================ +17:54:15 FNo. Len. Field Value +17:54:15 ============================================================================ +17:54:15 [ 1] [ 4] [0200] +17:54:15 [ 2] [ 16] [6213544001705166] +17:54:15 [ 3] [ 6] [010000] +17:54:15 [ 4] [ 12] [000010000000] +17:54:15 [ 7] [ 10] [0320175205] +17:54:15 [ 11] [ 6] [954036] +17:54:15 [ 12] [ 6] [175205] +17:54:15 [ 13] [ 4] [0320] +17:54:15 [ 15] [ 4] [0320] +17:54:15 [ 18] [ 4] [6011] +17:54:15 [ 19] [ 3] [418] +17:54:15 [ 22] [ 3] [021] +17:54:15 [ 25] [ 2] [01] +17:54:15 [ 28] [ 9] [D00002000] +17:54:15 [ 32] [ 6] [668899] +17:54:15 [ 35] [ 32] [6213544001705166=491212010516493] +17:54:15 [ 37] [ 12] [507901196853] +17:54:15 [ 41] [ 8] [03020011] +17:54:15 [ 42] [ 15] [APT ] +17:54:15 [ 43] [ 40] [ SOUTHERN BUS STATION VTE ] +17:54:15 [ 49] [ 3] [418] +17:54:15 [ 52] [ 16] [7D9696785CB455E4] +17:54:15 ============================================================================ +17:54:15 + + +waiting on router queue for slot.... +17:54:15 Sending to : +17:54:15 ============================================================================ +17:54:15 Sending to : +17:54:15 ============================================================================ +17:54:16 ============================================================================ +17:54:16 Slot Id : <133> +17:54:16 Transaction Type : REQUEST +17:54:16 Received From : +17:54:16 ============================================================================ +17:54:16 FNo. Len. Field Value +17:54:16 ============================================================================ +17:54:16 [ 1] [ 4] [0200] +17:54:16 [ 2] [ 16] [6213544001705166] +17:54:16 [ 3] [ 6] [010000] +17:54:16 [ 4] [ 12] [000010000000] +17:54:16 [ 7] [ 10] [0320175205] +17:54:16 [ 11] [ 6] [954036] +17:54:16 [ 12] [ 6] [175205] +17:54:16 [ 13] [ 4] [0320] +17:54:16 [ 15] [ 4] [0320] +17:54:16 [ 18] [ 4] [6011] +17:54:16 [ 19] [ 3] [418] +17:54:16 [ 22] [ 3] [021] +17:54:16 [ 25] [ 2] [01] +17:54:16 [ 28] [ 9] [D00002000] +17:54:16 [ 32] [ 6] [668899] +17:54:16 [ 35] [ 32] [6213544001705166=491212010516493] +17:54:16 [ 37] [ 12] [507901196853] +17:54:16 [ 41] [ 8] [03020011] +17:54:16 [ 42] [ 15] [APT ] +17:54:16 [ 43] [ 40] [ SOUTHERN BUS STATION VTE ] +17:54:16 [ 49] [ 3] [418] +17:54:16 [ 52] [ 16] [7D9696785CB455E4] +17:54:16 ============================================================================ +17:54:16 + + +waiting on router queue for slot.... +17:54:16 Sending to : +17:54:16 ============================================================================ +17:54:16 ============================================================================ +17:54:16 Slot Id : <133> +17:54:16 Transaction Type : REQUEST +17:54:16 Received From : +17:54:16 ============================================================================ +17:54:16 FNo. Len. Field Value +17:54:16 ============================================================================ +17:54:16 [ 1] [ 4] [0200] +17:54:16 [ 2] [ 16] [6213544001705166] +17:54:16 [ 3] [ 6] [010000] +17:54:16 [ 4] [ 12] [000010000000] +17:54:16 [ 7] [ 10] [0320175205] +17:54:16 [ 11] [ 6] [954036] +17:54:16 [ 12] [ 6] [175205] +17:54:16 [ 13] [ 4] [0320] +17:54:16 [ 15] [ 4] [0320] +17:54:16 [ 18] [ 4] [6011] +17:54:16 [ 19] [ 3] [418] +17:54:16 [ 22] [ 3] [021] +17:54:16 [ 25] [ 2] [01] +17:54:16 [ 28] [ 9] [D00002000] +17:54:16 [ 32] [ 6] [668899] +17:54:16 [ 35] [ 32] [6213544001705166=491212010516493] +17:54:16 [ 37] [ 12] [507901196853] +17:54:16 [ 41] [ 8] [03020011] +17:54:16 [ 42] [ 15] [APT ] +17:54:16 [ 43] [ 40] [ SOUTHERN BUS STATION VTE ] +17:54:16 [ 49] [ 3] [418] +17:54:16 [ 52] [ 16] [714394830E127E14] +17:54:16 ============================================================================ +17:54:16 + + +waiting on router queue for slot.... +17:54:16 Sending to : <0> +17:54:16 ============================================================================ +17:54:17 ============================================================================ +17:54:17 Slot Id : <133> +17:54:17 Transaction Type : RESPONSE +17:54:17 Received From : +17:54:17 ============================================================================ +17:54:17 FNo. Len. Field Value +17:54:17 ============================================================================ +17:54:17 [ 1] [ 4] [0210] +17:54:17 [ 2] [ 16] [6213544001705166] +17:54:17 [ 3] [ 6] [010000] +17:54:17 [ 4] [ 12] [000010000000] +17:54:17 [ 7] [ 10] [0320175205] +17:54:17 [ 11] [ 6] [954036] +17:54:17 [ 12] [ 6] [175205] +17:54:17 [ 13] [ 4] [0320] +17:54:17 [ 15] [ 4] [0320] +17:54:17 [ 18] [ 4] [6011] +17:54:17 [ 19] [ 3] [418] +17:54:17 [ 32] [ 6] [668899] +17:54:17 [ 35] [ 32] [6213544001705166=491212010516493] +17:54:17 [ 37] [ 12] [507901196853] +17:54:17 [ 38] [ 6] [994724] +17:54:17 [ 39] [ 2] [00] +17:54:17 [ 41] [ 8] [03020011] +17:54:17 [ 49] [ 3] [418] +17:54:17 [ 54] [ 40] [0001418C0002447207730002418C000244720773] +17:54:17 ============================================================================ +17:54:17 Sending to : +17:54:17 ============================================================================ +17:54:17 + + +waiting on router queue for slot.... +17:54:17 ============================================================================ +17:54:17 Slot Id : <110> +17:54:17 Transaction Type : REQUEST +17:54:17 Received From : +17:54:17 ============================================================================ +17:54:17 FNo. Len. Field Value +17:54:17 ============================================================================ +17:54:17 [ 1] [ 4] [0800] +17:54:17 [ 2] [ 5] [02531] +17:54:17 [ 3] [ 6] [579178] +17:54:17 [ 7] [ 10] [0320105417] +17:54:17 [ 11] [ 6] [807451] +17:54:17 [ 15] [ 10] [0320105417] +17:54:17 [ 37] [ 11] [57917807451] +17:54:17 [ 70] [ 3] [001] +17:54:17 ============================================================================ +17:54:17 + + +waiting on router queue for slot.... +17:54:17 ============================================================================ +17:54:17 Slot Id : <110> +17:54:17 Transaction Type : RESPONSE +17:54:17 Received From : +17:54:17 ============================================================================ +17:54:17 FNo. Len. Field Value +17:54:17 ============================================================================ +17:54:17 [ 1] [ 4] [0810] +17:54:17 [ 7] [ 10] [0320105417] +17:54:17 [ 11] [ 6] [807451] +17:54:17 [ 15] [ 4] [0320] +17:54:17 [ 37] [ 12] [57917807451] +17:54:17 [ 39] [ 2] [00] +17:54:17 [ 70] [ 3] [001] +17:54:17 ============================================================================ +17:54:17 Sending to : +17:54:17 ============================================================================ +17:54:17 + + +waiting on router queue for slot.... +17:54:19 ============================================================================ +17:54:19 Slot Id : <133> +17:54:19 Transaction Type : RESPONSE +17:54:19 Received From : +17:54:19 ============================================================================ +17:54:19 FNo. Len. Field Value +17:54:19 ============================================================================ +17:54:19 [ 1] [ 4] [0210] +17:54:19 [ 2] [ 16] [6213544001705166] +17:54:19 [ 3] [ 6] [010000] +17:54:19 [ 4] [ 12] [000010000000] +17:54:19 [ 7] [ 10] [0320175205] +17:54:19 [ 11] [ 6] [954036] +17:54:19 [ 12] [ 6] [175205] +17:54:19 [ 13] [ 4] [0320] +17:54:19 [ 15] [ 4] [0320] +17:54:19 [ 18] [ 4] [6011] +17:54:19 [ 19] [ 3] [418] +17:54:19 [ 32] [ 6] [668899] +17:54:19 [ 35] [ 32] [6213544001705166=491212010516493] +17:54:19 [ 37] [ 12] [507901196853] +17:54:19 [ 38] [ 6] [994724] +17:54:19 [ 39] [ 2] [00] +17:54:19 [ 41] [ 8] [03020011] +17:54:19 [ 49] [ 3] [418] +17:54:19 [ 54] [ 40] [0001418C0002447207730002418C000244720773] +17:54:19 ============================================================================ +17:54:19 Calculate Source COMM Id = 4 +17:54:19 ============================================================================ +17:54:19 + + +waiting on router queue for slot.... +17:54:25 ============================================================================ +17:54:25 Slot Id : <158> +17:54:25 Transaction Type : REQUEST +17:54:25 Received From : +17:54:25 ============================================================================ +17:54:25 FNo. Len. Field Value +17:54:25 ============================================================================ +17:54:25 [ 1] [ 4] [0800] +17:54:25 [ 7] [ 10] [0320105332] +17:54:25 [ 11] [ 6] [157575] +17:54:25 [ 70] [ 3] [301] +17:54:25 ============================================================================ +17:54:25 + + +waiting on router queue for slot.... +17:54:25 Sending to : +17:54:25 ============================================================================ +17:54:25 ============================================================================ +17:54:25 Slot Id : <158> +17:54:25 Transaction Type : RESPONSE +17:54:25 Received From : +17:54:25 ============================================================================ +17:54:25 FNo. Len. Field Value +17:54:25 ============================================================================ +17:54:25 [ 1] [ 4] [0810] +17:54:25 [ 7] [ 10] [0320105332] +17:54:25 [ 11] [ 6] [157575] +17:54:25 [ 39] [ 2] [00] +17:54:25 [ 70] [ 3] [301] +17:54:25 ============================================================================ +17:54:25 Calculate Source COMM Id = 2 +17:54:25 ============================================================================ +17:54:25 + + +waiting on router queue for slot.... +17:54:36 ============================================================================ +17:54:36 Slot Id : <159> +17:54:36 Transaction Type : REQUEST +17:54:36 Received From : +17:54:36 ============================================================================ +17:54:36 FNo. Len. Field Value +17:54:36 ============================================================================ +17:54:36 [ 1] [ 4] [0800] +17:54:36 [ 7] [ 10] [0320105343] +17:54:36 [ 11] [ 6] [157576] +17:54:36 [ 70] [ 3] [301] +17:54:36 ============================================================================ +17:54:36 + + +waiting on router queue for slot.... +17:54:36 Sending to : +17:54:36 ============================================================================ +17:54:36 ============================================================================ +17:54:36 Slot Id : <159> +17:54:36 Transaction Type : RESPONSE +17:54:36 Received From : +17:54:36 ============================================================================ +17:54:36 FNo. Len. Field Value +17:54:36 ============================================================================ +17:54:36 [ 1] [ 4] [0810] +17:54:36 [ 7] [ 10] [0320105343] +17:54:36 [ 11] [ 6] [157576] +17:54:36 [ 39] [ 2] [00] +17:54:36 [ 70] [ 3] [301] +17:54:36 ============================================================================ +17:54:36 Calculate Source COMM Id = 2 +17:54:36 ============================================================================ +17:54:36 + + +waiting on router queue for slot.... +17:54:38 ============================================================================ +17:54:38 Slot Id : <142> +17:54:38 Transaction Type : REQUEST +17:54:38 Received From : +17:54:38 ============================================================================ +17:54:38 FNo. Len. Field Value +17:54:38 ============================================================================ +17:54:38 [ 1] [ 4] [0800] +17:54:38 [ 7] [ 10] [0321010626] +17:54:38 [ 11] [ 6] [180626] +17:54:38 [ 37] [ 12] [57918180626] +17:54:38 [ 70] [ 3] [301] +17:54:38 ============================================================================ +17:54:38 + + +waiting on router queue for slot.... +17:54:38 Sending to : +17:54:38 ============================================================================ +17:54:38 ============================================================================ +17:54:38 Slot Id : <142> +17:54:38 Transaction Type : RESPONSE +17:54:38 Received From : +17:54:38 ============================================================================ +17:54:38 FNo. Len. Field Value +17:54:38 ============================================================================ +17:54:38 [ 1] [ 4] [0810] +17:54:38 [ 7] [ 10] [0321010626] +17:54:38 [ 11] [ 6] [180626] +17:54:38 [ 37] [ 12] [579181806260] +17:54:38 [ 39] [ 2] [00] +17:54:38 [ 70] [ 3] [810] +17:54:38 ============================================================================ +17:54:38 Calculate Source COMM Id = 6 +17:54:38 ============================================================================ +17:54:38 + + +waiting on router queue for slot.... +17:54:45 ============================================================================ +17:54:45 Slot Id : <167> +17:54:45 Transaction Type : REQUEST +17:54:45 Received From : +17:54:45 ============================================================================ +17:54:45 FNo. Len. Field Value +17:54:45 ============================================================================ +17:54:45 [ 1] [ 4] [0200] +17:54:45 [ 2] [ 16] [6213544001978599] +17:54:45 [ 3] [ 6] [300000] +17:54:45 [ 4] [ 12] [000000000000] +17:54:45 [ 7] [ 10] [0320175235] +17:54:45 [ 11] [ 6] [954048] +17:54:45 [ 12] [ 6] [175235] +17:54:45 [ 13] [ 4] [0320] +17:54:45 [ 15] [ 4] [0320] +17:54:45 [ 18] [ 4] [6011] +17:54:45 [ 19] [ 3] [418] +17:54:45 [ 22] [ 3] [021] +17:54:45 [ 25] [ 2] [01] +17:54:45 [ 28] [ 9] [D00000000] +17:54:45 [ 32] [ 6] [668899] +17:54:45 [ 35] [ 32] [6213544001978599=491212017859794] +17:54:45 [ 37] [ 12] [507902025677] +17:54:45 [ 41] [ 8] [03414002] +17:54:45 [ 42] [ 15] [APT ] +17:54:45 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:54:45 [ 49] [ 3] [418] +17:54:45 [ 52] [ 16] [54AADD3513027A8D] +17:54:45 ============================================================================ +17:54:45 + + +waiting on router queue for slot.... +17:54:45 Sending to : +17:54:45 ============================================================================ +17:54:45 Sending to : +17:54:45 ============================================================================ +17:54:45 ============================================================================ +17:54:45 Slot Id : <167> +17:54:45 Transaction Type : REQUEST +17:54:45 Received From : +17:54:45 ============================================================================ +17:54:45 FNo. Len. Field Value +17:54:45 ============================================================================ +17:54:45 [ 1] [ 4] [0200] +17:54:45 [ 2] [ 16] [6213544001978599] +17:54:45 [ 3] [ 6] [300000] +17:54:45 [ 4] [ 12] [000000000000] +17:54:45 [ 7] [ 10] [0320175235] +17:54:45 [ 11] [ 6] [954048] +17:54:45 [ 12] [ 6] [175235] +17:54:45 [ 13] [ 4] [0320] +17:54:45 [ 15] [ 4] [0320] +17:54:45 [ 18] [ 4] [6011] +17:54:45 [ 19] [ 3] [418] +17:54:45 [ 22] [ 3] [021] +17:54:45 [ 25] [ 2] [01] +17:54:45 [ 28] [ 9] [D00000000] +17:54:45 [ 32] [ 6] [668899] +17:54:45 [ 35] [ 32] [6213544001978599=491212017859794] +17:54:45 [ 37] [ 12] [507902025677] +17:54:45 [ 41] [ 8] [03414002] +17:54:45 [ 42] [ 15] [APT ] +17:54:45 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:54:45 [ 49] [ 3] [418] +17:54:45 [ 52] [ 16] [54AADD3513027A8D] +17:54:45 ============================================================================ +17:54:45 + + +waiting on router queue for slot.... +17:54:45 Sending to : +17:54:45 ============================================================================ +17:54:45 ============================================================================ +17:54:45 Slot Id : <167> +17:54:45 Transaction Type : REQUEST +17:54:45 Received From : +17:54:45 ============================================================================ +17:54:45 FNo. Len. Field Value +17:54:45 ============================================================================ +17:54:45 [ 1] [ 4] [0200] +17:54:45 [ 2] [ 16] [6213544001978599] +17:54:45 [ 3] [ 6] [300000] +17:54:45 [ 4] [ 12] [000000000000] +17:54:45 [ 7] [ 10] [0320175235] +17:54:45 [ 11] [ 6] [954048] +17:54:45 [ 12] [ 6] [175235] +17:54:45 [ 13] [ 4] [0320] +17:54:45 [ 15] [ 4] [0320] +17:54:45 [ 18] [ 4] [6011] +17:54:45 [ 19] [ 3] [418] +17:54:45 [ 22] [ 3] [021] +17:54:45 [ 25] [ 2] [01] +17:54:45 [ 28] [ 9] [D00000000] +17:54:45 [ 32] [ 6] [668899] +17:54:45 [ 35] [ 32] [6213544001978599=491212017859794] +17:54:45 [ 37] [ 12] [507902025677] +17:54:45 [ 41] [ 8] [03414002] +17:54:45 [ 42] [ 15] [APT ] +17:54:45 [ 43] [ 40] [ SENO MARKET OUTHOUMPHOSEN] +17:54:45 [ 49] [ 3] [418] +17:54:45 [ 52] [ 16] [5DDEE1C4E41A17D6] +17:54:45 ============================================================================ +17:54:45 + + +waiting on router queue for slot.... +17:54:45 Sending to : <0> +17:54:45 ============================================================================ +17:54:45 ============================================================================ +17:54:45 Slot Id : <167> +17:54:45 Transaction Type : RESPONSE +17:54:45 Received From : +17:54:45 ============================================================================ +17:54:45 FNo. Len. Field Value +17:54:45 ============================================================================ +17:54:45 [ 1] [ 4] [0210] +17:54:45 [ 2] [ 16] [6213544001978599] +17:54:45 [ 3] [ 6] [300000] +17:54:45 [ 4] [ 12] [000000000000] +17:54:45 [ 7] [ 10] [0320175235] +17:54:45 [ 11] [ 6] [954048] +17:54:45 [ 12] [ 6] [175235] +17:54:45 [ 13] [ 4] [0320] +17:54:45 [ 15] [ 4] [0320] +17:54:45 [ 18] [ 4] [6011] +17:54:45 [ 19] [ 3] [418] +17:54:45 [ 22] [ 3] [021] +17:54:45 [ 32] [ 6] [668899] +17:54:45 [ 35] [ 32] [6213544001978599=491212017859794] +17:54:45 [ 37] [ 12] [507902025677] +17:54:45 [ 38] [ 6] [175440] +17:54:45 [ 39] [ 2] [75] +17:54:45 [ 41] [ 8] [03414002] +17:54:45 [ 49] [ 3] [418] +17:54:45 ============================================================================ +17:54:45 Sending to : +17:54:45 ============================================================================ +17:54:45 + + +waiting on router queue for slot.... +17:54:46 ============================================================================ +17:54:46 Slot Id : <167> +17:54:46 Transaction Type : RESPONSE +17:54:46 Received From : +17:54:46 ============================================================================ +17:54:46 FNo. Len. Field Value +17:54:46 ============================================================================ +17:54:46 [ 1] [ 4] [0210] +17:54:46 [ 2] [ 16] [6213544001978599] +17:54:46 [ 3] [ 6] [300000] +17:54:46 [ 4] [ 12] [000000000000] +17:54:46 [ 7] [ 10] [0320175235] +17:54:46 [ 11] [ 6] [954048] +17:54:46 [ 12] [ 6] [175235] +17:54:46 [ 13] [ 4] [0320] +17:54:46 [ 15] [ 4] [0320] +17:54:46 [ 18] [ 4] [6011] +17:54:46 [ 19] [ 3] [418] +17:54:46 [ 22] [ 3] [021] +17:54:46 [ 32] [ 6] [668899] +17:54:46 [ 35] [ 32] [6213544001978599=491212017859794] +17:54:46 [ 37] [ 12] [507902025677] +17:54:46 [ 38] [ 6] [175440] +17:54:46 [ 39] [ 2] [75] +17:54:46 [ 41] [ 8] [03414002] +17:54:46 [ 49] [ 3] [418] +17:54:46 ============================================================================ +17:54:46 Calculate Source COMM Id = 4 +17:54:46 ============================================================================ +17:54:46 + + +waiting on router queue for slot.... +17:54:47 ============================================================================ +17:54:47 Slot Id : <146> +17:54:47 Transaction Type : REQUEST +17:54:47 Received From : +17:54:47 ============================================================================ +17:54:47 FNo. Len. Field Value +17:54:47 ============================================================================ +17:54:47 [ 1] [ 4] [0800] +17:54:47 [ 7] [ 10] [0320105354] +17:54:47 [ 11] [ 6] [157577] +17:54:47 [ 70] [ 3] [301] +17:54:47 ============================================================================ +17:54:47 + + +waiting on router queue for slot.... +17:54:47 Sending to : +17:54:47 ============================================================================ +17:54:47 ============================================================================ +17:54:47 Slot Id : <146> +17:54:47 Transaction Type : RESPONSE +17:54:47 Received From : +17:54:47 ============================================================================ +17:54:47 FNo. Len. Field Value +17:54:47 ============================================================================ +17:54:47 [ 1] [ 4] [0810] +17:54:47 [ 7] [ 10] [0320105354] +17:54:47 [ 11] [ 6] [157577] +17:54:47 [ 39] [ 2] [00] +17:54:47 [ 70] [ 3] [301] +17:54:47 ============================================================================ +17:54:47 Calculate Source COMM Id = 2 +17:54:47 ============================================================================ +17:54:47 + + +waiting on router queue for slot.... +17:54:49 ============================================================================ +17:54:49 Slot Id : <137> +17:54:49 Transaction Type : REQUEST +17:54:49 Received From : +17:54:49 ============================================================================ +17:54:49 FNo. Len. Field Value +17:54:49 ============================================================================ +17:54:49 [ 1] [ 4] [0800] +17:54:49 [ 7] [ 10] [0320105444] +17:54:49 [ 11] [ 6] [031264] +17:54:49 [ 37] [ 12] [507917031264] +17:54:49 [ 70] [ 3] [001] +17:54:49 ============================================================================ +17:54:49 + + +waiting on router queue for slot.... +17:54:49 Sending to : +17:54:49 ============================================================================ +17:54:49 ============================================================================ +17:54:49 Slot Id : <137> +17:54:49 Transaction Type : RESPONSE +17:54:49 Received From : +17:54:49 ============================================================================ +17:54:49 FNo. Len. Field Value +17:54:49 ============================================================================ +17:54:49 [ 1] [ 4] [0810] +17:54:49 [ 7] [ 10] [0320105444] +17:54:49 [ 11] [ 6] [031264] +17:54:49 [ 37] [ 12] [507917031264] +17:54:49 [ 39] [ 2] [00] +17:54:49 [ 70] [ 3] [001] +17:54:49 ============================================================================ +17:54:49 Calculate Source COMM Id = 0 +17:54:49 ============================================================================ +17:54:49 + + +waiting on router queue for slot.... +17:54:52 ============================================================================ +17:54:52 Slot Id : <130> +17:54:52 Transaction Type : REQUEST +17:54:52 Received From : +17:54:52 ============================================================================ +17:54:52 FNo. Len. Field Value +17:54:52 ============================================================================ +17:54:52 [ 1] [ 4] [0200] +17:54:52 [ 2] [ 16] [6213544001396677] +17:54:52 [ 3] [ 6] [011000] +17:54:52 [ 4] [ 12] [000020000000] +17:54:52 [ 7] [ 10] [0320105359] +17:54:52 [ 11] [ 6] [271008] +17:54:52 [ 12] [ 6] [175359] +17:54:52 [ 13] [ 4] [0320] +17:54:52 [ 14] [ 4] [4912] +17:54:52 [ 15] [ 4] [0320] +17:54:52 [ 18] [ 4] [6011] +17:54:52 [ 19] [ 3] [418] +17:54:52 [ 22] [ 3] [021] +17:54:52 [ 25] [ 2] [01] +17:54:52 [ 28] [ 9] [D00002000] +17:54:52 [ 32] [ 6] [180893] +17:54:52 [ 35] [ 32] [6213544001396677=491212019667052] +17:54:52 [ 37] [ 12] [507910271008] +17:54:52 [ 41] [ 8] [0262PSLB] +17:54:52 [ 42] [ 15] [999999 ] +17:54:52 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:54:52 [ 49] [ 3] [418] +17:54:52 [ 52] [ 16] [43D14C7A522C0234] +17:54:52 ============================================================================ +17:54:52 + + +waiting on router queue for slot.... +17:54:52 Sending to : +17:54:52 ============================================================================ +17:54:52 Sending to : +17:54:52 ============================================================================ +17:54:53 ============================================================================ +17:54:53 Slot Id : <130> +17:54:53 Transaction Type : REQUEST +17:54:53 Received From : +17:54:53 ============================================================================ +17:54:53 FNo. Len. Field Value +17:54:53 ============================================================================ +17:54:53 [ 1] [ 4] [0200] +17:54:53 [ 2] [ 16] [6213544001396677] +17:54:53 [ 3] [ 6] [011000] +17:54:53 [ 4] [ 12] [000020000000] +17:54:53 [ 7] [ 10] [0320105359] +17:54:53 [ 11] [ 6] [271008] +17:54:53 [ 12] [ 6] [175359] +17:54:53 [ 13] [ 4] [0320] +17:54:53 [ 14] [ 4] [4912] +17:54:53 [ 15] [ 4] [0320] +17:54:53 [ 18] [ 4] [6011] +17:54:53 [ 19] [ 3] [418] +17:54:53 [ 22] [ 3] [021] +17:54:53 [ 25] [ 2] [01] +17:54:53 [ 28] [ 9] [D00002000] +17:54:53 [ 32] [ 6] [180893] +17:54:53 [ 35] [ 32] [6213544001396677=491212019667052] +17:54:53 [ 37] [ 12] [507910271008] +17:54:53 [ 41] [ 8] [0262PSLB] +17:54:53 [ 42] [ 15] [999999 ] +17:54:53 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:54:53 [ 49] [ 3] [418] +17:54:53 [ 52] [ 16] [43D14C7A522C0234] +17:54:53 ============================================================================ +17:54:53 + + +waiting on router queue for slot.... +17:54:53 Sending to : +17:54:53 ============================================================================ +17:54:53 ============================================================================ +17:54:53 Slot Id : <130> +17:54:53 Transaction Type : REQUEST +17:54:53 Received From : +17:54:53 ============================================================================ +17:54:53 FNo. Len. Field Value +17:54:53 ============================================================================ +17:54:53 [ 1] [ 4] [0200] +17:54:53 [ 2] [ 16] [6213544001396677] +17:54:53 [ 3] [ 6] [011000] +17:54:53 [ 4] [ 12] [000020000000] +17:54:53 [ 7] [ 10] [0320105359] +17:54:53 [ 11] [ 6] [271008] +17:54:53 [ 12] [ 6] [175359] +17:54:53 [ 13] [ 4] [0320] +17:54:53 [ 14] [ 4] [4912] +17:54:53 [ 15] [ 4] [0320] +17:54:53 [ 18] [ 4] [6011] +17:54:53 [ 19] [ 3] [418] +17:54:53 [ 22] [ 3] [021] +17:54:53 [ 25] [ 2] [01] +17:54:53 [ 28] [ 9] [D00002000] +17:54:53 [ 32] [ 6] [180893] +17:54:53 [ 35] [ 32] [6213544001396677=491212019667052] +17:54:53 [ 37] [ 12] [507910271008] +17:54:53 [ 41] [ 8] [0262PSLB] +17:54:53 [ 42] [ 15] [999999 ] +17:54:53 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +17:54:53 [ 49] [ 3] [418] +17:54:53 [ 52] [ 16] [8FC666E23AA782D5] +17:54:53 ============================================================================ +17:54:53 + + +waiting on router queue for slot.... +17:54:53 Sending to : <0> +17:54:53 ============================================================================ +17:54:54 ============================================================================ +17:54:54 Slot Id : <130> +17:54:54 Transaction Type : RESPONSE +17:54:54 Received From : +17:54:54 ============================================================================ +17:54:54 FNo. Len. Field Value +17:54:54 ============================================================================ +17:54:54 [ 1] [ 4] [0210] +17:54:54 [ 2] [ 16] [6213544001396677] +17:54:54 [ 3] [ 6] [011000] +17:54:54 [ 4] [ 12] [000020000000] +17:54:54 [ 7] [ 10] [0320105359] +17:54:54 [ 11] [ 6] [271008] +17:54:54 [ 12] [ 6] [175359] +17:54:54 [ 13] [ 4] [0320] +17:54:54 [ 15] [ 4] [0320] +17:54:54 [ 18] [ 4] [6011] +17:54:54 [ 19] [ 3] [418] +17:54:54 [ 32] [ 6] [180893] +17:54:54 [ 35] [ 32] [6213544001396677=491212019667052] +17:54:54 [ 37] [ 12] [507910271008] +17:54:54 [ 38] [ 6] [300150] +17:54:54 [ 39] [ 2] [00] +17:54:54 [ 41] [ 8] [0262PSLB] +17:54:54 [ 49] [ 3] [418] +17:54:54 [ 54] [ 40] [1001418C0001644424211002418C000164442421] +17:54:54 ============================================================================ +17:54:54 Sending to : +17:54:54 ============================================================================ +17:54:54 + + +waiting on router queue for slot.... +17:54:55 ============================================================================ +17:54:55 Slot Id : <87> +17:54:55 Transaction Type : REQUEST +17:54:55 Received From : +17:54:55 ============================================================================ +17:54:55 FNo. Len. Field Value +17:54:55 ============================================================================ +17:54:55 [ 1] [ 4] [0800] +17:54:55 [ 7] [ 10] [0320110242] +17:54:55 [ 11] [ 6] [064070] +17:54:55 [ 37] [ 12] [57918064070] +17:54:55 [ 70] [ 3] [301] +17:54:55 ============================================================================ +17:54:55 + + +waiting on router queue for slot.... +17:54:55 Sending to : +17:54:55 ============================================================================ +17:54:55 ============================================================================ +17:54:55 Slot Id : <87> +17:54:55 Transaction Type : RESPONSE +17:54:55 Received From : +17:54:55 ============================================================================ +17:54:55 FNo. Len. Field Value +17:54:55 ============================================================================ +17:54:55 [ 1] [ 4] [0810] +17:54:55 [ 7] [ 10] [0320110242] +17:54:55 [ 11] [ 6] [064070] +17:54:55 [ 37] [ 12] [579180640700] +17:54:55 [ 39] [ 2] [00] +17:54:55 [ 70] [ 3] [810] +17:54:55 ============================================================================ +17:54:55 Calculate Source COMM Id = 1 +17:54:55 ============================================================================ +17:54:55 + + +waiting on router queue for slot.... +17:54:55 ============================================================================ +17:54:55 Slot Id : <130> +17:54:55 Transaction Type : RESPONSE +17:54:55 Received From : +17:54:55 ============================================================================ +17:54:55 FNo. Len. Field Value +17:54:55 ============================================================================ +17:54:55 [ 1] [ 4] [0210] +17:54:55 [ 2] [ 16] [6213544001396677] +17:54:55 [ 3] [ 6] [011000] +17:54:55 [ 4] [ 12] [000020000000] +17:54:55 [ 7] [ 10] [0320105359] +17:54:55 [ 11] [ 6] [271008] +17:54:55 [ 12] [ 6] [175359] +17:54:55 [ 13] [ 4] [0320] +17:54:55 [ 15] [ 4] [0320] +17:54:55 [ 18] [ 4] [6011] +17:54:55 [ 19] [ 3] [418] +17:54:55 [ 32] [ 6] [180893] +17:54:55 [ 35] [ 32] [6213544001396677=491212019667052] +17:54:55 [ 37] [ 12] [507910271008] +17:54:55 [ 38] [ 6] [300150] +17:54:55 [ 39] [ 2] [00] +17:54:55 [ 41] [ 8] [0262PSLB] +17:54:55 [ 49] [ 3] [418] +17:54:55 [ 54] [ 40] [1001418C0001644424211002418C000164442421] +17:54:55 ============================================================================ +17:54:55 Calculate Source COMM Id = 2 +17:54:55 ============================================================================ +17:54:55 + + +waiting on router queue for slot.... +17:55:01 ============================================================================ +17:55:01 Slot Id : <157> +17:55:01 Transaction Type : REQUEST +17:55:01 Received From : +17:55:01 ============================================================================ +17:55:01 FNo. Len. Field Value +17:55:01 ============================================================================ +17:55:01 [ 1] [ 4] [0200] +17:55:01 [ 2] [ 16] [1888880000087783] +17:55:01 [ 3] [ 6] [010000] +17:55:01 [ 4] [ 12] [000030000000] +17:55:01 [ 7] [ 10] [0320180248] +17:55:01 [ 11] [ 6] [000017] +17:55:01 [ 12] [ 6] [180248] +17:55:01 [ 13] [ 4] [0320] +17:55:01 [ 14] [ 4] [0000] +17:55:01 [ 15] [ 4] [0320] +17:55:01 [ 18] [ 4] [6011] +17:55:01 [ 22] [ 3] [900] +17:55:01 [ 25] [ 2] [02] +17:55:01 [ 28] [ 9] [D00002000] +17:55:01 [ 32] [ 6] [220699] +17:55:01 [ 35] [ 32] [1888880000087783=000010100000009] +17:55:01 [ 37] [ 12] [507900281402] +17:55:01 [ 41] [ 8] [10000100] +17:55:01 [ 42] [ 15] [APTRA ] +17:55:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:55:01 [ 49] [ 3] [418] +17:55:01 [ 52] [ 16] [417CF3ACC0BB4E7E] +17:55:01 ============================================================================ +17:55:01 + + +waiting on router queue for slot.... +17:55:01 Sending to : +17:55:01 ============================================================================ +17:55:01 Sending to : +17:55:01 ============================================================================ +17:55:01 ============================================================================ +17:55:01 Slot Id : <157> +17:55:01 Transaction Type : REQUEST +17:55:01 Received From : +17:55:01 ============================================================================ +17:55:01 FNo. Len. Field Value +17:55:01 ============================================================================ +17:55:01 [ 1] [ 4] [0200] +17:55:01 [ 2] [ 16] [1888880000087783] +17:55:01 [ 3] [ 6] [010000] +17:55:01 [ 4] [ 12] [000030000000] +17:55:01 [ 7] [ 10] [0320180248] +17:55:01 [ 11] [ 6] [000017] +17:55:01 [ 12] [ 6] [180248] +17:55:01 [ 13] [ 4] [0320] +17:55:01 [ 14] [ 4] [0000] +17:55:01 [ 15] [ 4] [0320] +17:55:01 [ 18] [ 4] [6011] +17:55:01 [ 22] [ 3] [900] +17:55:01 [ 25] [ 2] [02] +17:55:01 [ 28] [ 9] [D00002000] +17:55:01 [ 32] [ 6] [220699] +17:55:01 [ 35] [ 32] [1888880000087783=000010100000009] +17:55:01 [ 37] [ 12] [507900281402] +17:55:01 [ 41] [ 8] [10000100] +17:55:01 [ 42] [ 15] [APTRA ] +17:55:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:55:01 [ 49] [ 3] [418] +17:55:01 [ 52] [ 16] [417CF3ACC0BB4E7E] +17:55:01 ============================================================================ +17:55:01 + + +waiting on router queue for slot.... +17:55:01 Sending to : +17:55:01 ============================================================================ +17:55:01 ============================================================================ +17:55:01 Slot Id : <157> +17:55:01 Transaction Type : REQUEST +17:55:01 Received From : +17:55:01 ============================================================================ +17:55:01 FNo. Len. Field Value +17:55:01 ============================================================================ +17:55:01 [ 1] [ 4] [0200] +17:55:01 [ 2] [ 16] [1888880000087783] +17:55:01 [ 3] [ 6] [010000] +17:55:01 [ 4] [ 12] [000030000000] +17:55:01 [ 7] [ 10] [0320180248] +17:55:01 [ 11] [ 6] [000017] +17:55:01 [ 12] [ 6] [180248] +17:55:01 [ 13] [ 4] [0320] +17:55:01 [ 14] [ 4] [0000] +17:55:01 [ 15] [ 4] [0320] +17:55:01 [ 18] [ 4] [6011] +17:55:01 [ 22] [ 3] [900] +17:55:01 [ 25] [ 2] [02] +17:55:01 [ 28] [ 9] [D00002000] +17:55:01 [ 32] [ 6] [220699] +17:55:01 [ 35] [ 32] [1888880000087783=000010100000009] +17:55:01 [ 37] [ 12] [507900281402] +17:55:01 [ 41] [ 8] [10000100] +17:55:01 [ 42] [ 15] [APTRA ] +17:55:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +17:55:01 [ 49] [ 3] [418] +17:55:01 [ 52] [ 16] [B328D4E7057E1B49] +17:55:01 ============================================================================ +17:55:01 + + +waiting on router queue for slot.... +17:55:01 Sending to : <5> +17:55:01 ============================================================================ +17:55:01 ============================================================================ +17:55:01 Slot Id : <157> +17:55:01 Transaction Type : RESPONSE +17:55:01 Received From : +17:55:01 ============================================================================ +17:55:01 FNo. Len. Field Value +17:55:01 ============================================================================ +17:55:01 [ 1] [ 4] [0210] +17:55:01 [ 2] [ 16] [1888880000087783] +17:55:01 [ 3] [ 6] [010000] +17:55:01 [ 4] [ 12] [000030000000] +17:55:01 [ 7] [ 10] [0320180248] +17:55:01 [ 11] [ 6] [000017] +17:55:01 [ 12] [ 6] [180248] +17:55:01 [ 13] [ 4] [0320] +17:55:01 [ 15] [ 4] [0320] +17:55:01 [ 18] [ 4] [6011] +17:55:01 [ 19] [ 3] [418] +17:55:01 [ 32] [ 6] [220699] +17:55:01 [ 37] [ 12] [507900281402] +17:55:01 [ 38] [ 6] [000000] +17:55:01 [ 39] [ 2] [07] +17:55:01 [ 41] [ 8] [10000100] +17:55:01 [ 49] [ 3] [418] +17:55:01 ============================================================================ +17:55:01 Sending to : +17:55:01 ============================================================================ +17:55:01 + + +waiting on router queue for slot.... +17:55:02 ============================================================================ +17:55:02 Slot Id : <157> +17:55:02 Transaction Type : RESPONSE +17:55:02 Received From : +17:55:02 ============================================================================ +17:55:02 FNo. Len. Field Value +17:55:02 ============================================================================ +17:55:02 [ 1] [ 4] [0210] +17:55:02 [ 2] [ 16] [1888880000087783] +17:55:02 [ 3] [ 6] [010000] +17:55:02 [ 4] [ 12] [000030000000] +17:55:02 [ 7] [ 10] [0320180248] +17:55:02 [ 11] [ 6] [000017] +17:55:02 [ 12] [ 6] [180248] +17:55:02 [ 13] [ 4] [0320] +17:55:02 [ 15] [ 4] [0320] +17:55:02 [ 18] [ 4] [6011] +17:55:02 [ 19] [ 3] [418] +17:55:02 [ 32] [ 6] [220699] +17:55:02 [ 37] [ 12] [507900281402] +17:55:02 [ 38] [ 6] [000000] +17:55:02 [ 39] [ 2] [07] +17:55:02 [ 41] [ 8] [10000100] +17:55:02 [ 49] [ 3] [418] +17:55:02 ============================================================================ +17:55:02 Calculate Source COMM Id = 1 +17:55:02 ============================================================================ +17:55:02 + + +waiting on router queue for slot.... +17:55:03 ============================================================================ +17:55:03 Slot Id : <128> +17:55:03 Transaction Type : REQUEST +17:55:03 Received From : +17:55:03 ============================================================================ +17:55:03 FNo. Len. Field Value +17:55:03 ============================================================================ +17:55:03 [ 1] [ 4] [0200] +17:55:03 [ 2] [ 16] [1808930600047377] +17:55:03 [ 3] [ 6] [011000] +17:55:03 [ 4] [ 12] [000100000000] +17:55:03 [ 7] [ 10] [0320175523] +17:55:03 [ 11] [ 6] [209971] +17:55:03 [ 12] [ 6] [175116] +17:55:03 [ 13] [ 4] [0320] +17:55:03 [ 14] [ 4] [1803] +17:55:03 [ 15] [ 4] [0320] +17:55:03 [ 18] [ 4] [6011] +17:55:03 [ 19] [ 3] [418] +17:55:03 [ 22] [ 3] [021] +17:55:03 [ 25] [ 2] [01] +17:55:03 [ 28] [ 9] [D00002000] +17:55:03 [ 32] [ 6] [198901] +17:55:03 [ 35] [ 27] [1808930600047377=1803500222] +17:55:03 [ 37] [ 12] [507917209971] +17:55:03 [ 41] [ 8] [00852902] +17:55:03 [ 42] [ 15] [000000040852902] +17:55:03 [ 43] [ 40] [ATM SAVANCH II VN ] +17:55:03 [ 49] [ 3] [418] +17:55:03 [ 52] [ 16] [89053BD6B607736E] +17:55:03 ============================================================================ +17:55:03 + + +waiting on router queue for slot.... +17:55:03 Sending to : +17:55:03 ============================================================================ +17:55:03 Sending to : +17:55:03 ============================================================================ +17:55:03 ============================================================================ +17:55:03 Slot Id : <128> +17:55:03 Transaction Type : REQUEST +17:55:03 Received From : +17:55:03 ============================================================================ +17:55:03 FNo. Len. Field Value +17:55:03 ============================================================================ +17:55:03 [ 1] [ 4] [0200] +17:55:03 [ 2] [ 16] [1808930600047377] +17:55:03 [ 3] [ 6] [011000] +17:55:03 [ 4] [ 12] [000100000000] +17:55:03 [ 7] [ 10] [0320175523] +17:55:03 [ 11] [ 6] [209971] +17:55:03 [ 12] [ 6] [175116] +17:55:03 [ 13] [ 4] [0320] +17:55:03 [ 14] [ 4] [1803] +17:55:03 [ 15] [ 4] [0320] +17:55:03 [ 18] [ 4] [6011] +17:55:03 [ 19] [ 3] [418] +17:55:03 [ 22] [ 3] [021] +17:55:03 [ 25] [ 2] [01] +17:55:03 [ 28] [ 9] [D00002000] +17:55:03 [ 32] [ 6] [198901] +17:55:03 [ 35] [ 27] [1808930600047377=1803500222] +17:55:03 [ 37] [ 12] [507917209971] +17:55:03 [ 41] [ 8] [00852902] +17:55:03 [ 42] [ 15] [000000040852902] +17:55:03 [ 43] [ 40] [ATM SAVANCH II VN ] +17:55:03 [ 49] [ 3] [418] +17:55:03 [ 52] [ 16] [89053BD6B607736E] +17:55:03 ============================================================================ +17:55:03 + + +waiting on router queue for slot.... +17:55:03 Sending to : +17:55:03 ============================================================================ +17:55:03 ============================================================================ +17:55:03 Slot Id : <128> +17:55:03 Transaction Type : REQUEST +17:55:03 Received From : +17:55:03 ============================================================================ +17:55:03 FNo. Len. Field Value +17:55:03 ============================================================================ +17:55:03 [ 1] [ 4] [0200] +17:55:03 [ 2] [ 16] [1808930600047377] +17:55:03 [ 3] [ 6] [011000] +17:55:03 [ 4] [ 12] [000100000000] +17:55:03 [ 7] [ 10] [0320175523] +17:55:03 [ 11] [ 6] [209971] +17:55:03 [ 12] [ 6] [175116] +17:55:03 [ 13] [ 4] [0320] +17:55:03 [ 14] [ 4] [1803] +17:55:03 [ 15] [ 4] [0320] +17:55:03 [ 18] [ 4] [6011] +17:55:03 [ 19] [ 3] [418] +17:55:03 [ 22] [ 3] [021] +17:55:03 [ 25] [ 2] [01] +17:55:03 [ 28] [ 9] [D00002000] +17:55:03 [ 32] [ 6] [198901] +17:55:03 [ 35] [ 27] [1808930600047377=1803500222] +17:55:03 [ 37] [ 12] [507917209971] +17:55:03 [ 41] [ 8] [00852902] +17:55:03 [ 42] [ 15] [000000040852902] +17:55:03 [ 43] [ 40] [ATM SAVANCH II VN ] +17:55:03 [ 49] [ 3] [418] +17:55:03 [ 52] [ 16] [9C3A2C223A4BF0F0] +17:55:03 ============================================================================ +17:55:03 + + +waiting on router queue for slot.... +17:55:03 Sending to : <2> +17:55:03 ============================================================================ +17:55:08 ============================================================================ +17:55:08 Slot Id : <128> +17:55:08 Transaction Type : RESPONSE +17:55:08 Received From : +17:55:08 ============================================================================ +17:55:08 FNo. Len. Field Value +17:55:08 ============================================================================ +17:55:08 [ 1] [ 4] [0210] +17:55:08 [ 2] [ 16] [1808930600047377] +17:55:08 [ 3] [ 6] [011000] +17:55:08 [ 4] [ 12] [000100000000] +17:55:08 [ 6] [ 12] [000100000000] +17:55:08 [ 7] [ 10] [0320175523] +17:55:08 [ 11] [ 6] [209971] +17:55:08 [ 12] [ 6] [175116] +17:55:08 [ 13] [ 4] [0320] +17:55:08 [ 14] [ 4] [1803] +17:55:08 [ 18] [ 4] [6011] +17:55:08 [ 19] [ 3] [418] +17:55:08 [ 22] [ 3] [021] +17:55:08 [ 32] [ 6] [198901] +17:55:08 [ 35] [ 27] [1808930600047377=1803500222] +17:55:08 [ 37] [ 12] [507917209971] +17:55:08 [ 38] [ 6] [209971] +17:55:08 [ 39] [ 2] [00] +17:55:08 [ 41] [ 8] [00852902] +17:55:08 [ 49] [ 3] [418] +17:55:08 [ 52] [ 16] [9C3A2C223A4BF0F0] +17:55:08 [ 54] [ 20] [1001418C004157500000] +17:55:08 ============================================================================ +17:55:08 Sending to : +17:55:08 ============================================================================ +17:55:08 + + +waiting on router queue for slot.... +17:55:09 ============================================================================ +17:55:09 Slot Id : <141> +17:55:09 Transaction Type : REQUEST +17:55:09 Received From : +17:55:09 ============================================================================ +17:55:09 FNo. Len. Field Value +17:55:09 ============================================================================ +17:55:09 [ 1] [ 4] [0200] +17:55:09 [ 2] [ 16] [2206990000090415] +17:55:09 [ 3] [ 6] [011000] +17:55:09 [ 4] [ 12] [000050000000] +17:55:09 [ 7] [ 10] [0320175504] +17:55:09 [ 11] [ 6] [821741] +17:55:09 [ 12] [ 6] [175504] +17:55:09 [ 13] [ 4] [0320] +17:55:09 [ 15] [ 4] [0320] +17:55:09 [ 18] [ 4] [6011] +17:55:09 [ 22] [ 3] [900] +17:55:09 [ 25] [ 2] [02] +17:55:09 [ 28] [ 9] [D00002000] +17:55:09 [ 32] [ 6] [621354] +17:55:09 [ 35] [ 32] [2206990000090415=971012618184053] +17:55:09 [ 37] [ 12] [507904635972] +17:55:09 [ 41] [ 8] [17000800] +17:55:09 [ 42] [ 15] [NATIVE ] +17:55:09 [ 43] [ 40] [Ban Nakhai Naxay LAO] +17:55:09 [ 49] [ 3] [418] +17:55:09 [ 52] [ 16] [2EC4629E0CC93D37] +17:55:09 ============================================================================ +17:55:09 + + +waiting on router queue for slot.... +17:55:09 Sending to : +17:55:09 ============================================================================ +17:55:09 Sending to : +17:55:09 ============================================================================ +17:55:09 ============================================================================ +17:55:09 Slot Id : <141> +17:55:09 Transaction Type : REQUEST +17:55:09 Received From : +17:55:09 ============================================================================ +17:55:09 FNo. Len. Field Value +17:55:09 ============================================================================ +17:55:09 [ 1] [ 4] [0200] +17:55:09 [ 2] [ 16] [2206990000090415] +17:55:09 [ 3] [ 6] [011000] +17:55:09 [ 4] [ 12] [000050000000] +17:55:09 [ 7] [ 10] [0320175504] +17:55:09 [ 11] [ 6] [821741] +17:55:09 [ 12] [ 6] [175504] +17:55:09 [ 13] [ 4] [0320] +17:55:09 [ 15] [ 4] [0320] +17:55:09 [ 18] [ 4] [6011] +17:55:09 [ 22] [ 3] [900] +17:55:09 [ 25] [ 2] [02] +17:55:09 [ 28] [ 9] [D00002000] +17:55:09 [ 32] [ 6] [621354] +17:55:09 [ 35] [ 32] [2206990000090415=971012618184053] +17:55:09 [ 37] [ 12] [507904635972] +17:55:09 [ 41] [ 8] [17000800] +17:55:09 [ 42] [ 15] [NATIVE ] +17:55:09 [ 43] [ 40] [Ban Nakhai Naxay LAO] +17:55:09 [ 49] [ 3] [418] +17:55:09 [ 52] [ 16] [2EC4629E0CC93D37] +17:55:09 ============================================================================ +17:55:09 + + +waiting on router queue for slot.... +17:55:09 Sending to : +17:55:09 ============================================================================ +17:55:09 ============================================================================ +17:55:09 Slot Id : <141> +17:55:09 Transaction Type : REQUEST +17:55:09 Received From : +17:55:09 ============================================================================ +17:55:09 FNo. Len. Field Value +17:55:09 ============================================================================ +17:55:09 [ 1] [ 4] [0200] +17:55:09 [ 2] [ 16] [2206990000090415] +17:55:09 [ 3] [ 6] [011000] +17:55:09 [ 4] [ 12] [000050000000] +17:55:09 [ 7] [ 10] [0320175504] +17:55:09 [ 11] [ 6] [821741] +17:55:09 [ 12] [ 6] [175504] +17:55:09 [ 13] [ 4] [0320] +17:55:09 [ 15] [ 4] [0320] +17:55:09 [ 18] [ 4] [6011] +17:55:09 [ 22] [ 3] [900] +17:55:09 [ 25] [ 2] [02] +17:55:09 [ 28] [ 9] [D00002000] +17:55:09 [ 32] [ 6] [621354] +17:55:09 [ 35] [ 32] [2206990000090415=971012618184053] +17:55:09 [ 37] [ 12] [507904635972] +17:55:09 [ 41] [ 8] [17000800] +17:55:09 [ 42] [ 15] [NATIVE ] +17:55:09 [ 43] [ 40] [Ban Nakhai Naxay LAO] +17:55:09 [ 49] [ 3] [418] +17:55:09 [ 52] [ 16] [2FB7044C9E62D4ED] +17:55:09 ============================================================================ +17:55:09 + + +waiting on router queue for slot.... +17:55:09 Sending to : <1> +17:55:09 ============================================================================ +17:55:10 ============================================================================ +17:55:10 Slot Id : <128> +17:55:10 Transaction Type : RESPONSE +17:55:10 Received From : +17:55:10 ============================================================================ +17:55:10 FNo. Len. Field Value +17:55:10 ============================================================================ +17:55:10 [ 1] [ 4] [0210] +17:55:10 [ 2] [ 16] [1808930600047377] +17:55:10 [ 3] [ 6] [011000] +17:55:10 [ 4] [ 12] [000100000000] +17:55:10 [ 6] [ 12] [000100000000] +17:55:10 [ 7] [ 10] [0320175523] +17:55:10 [ 11] [ 6] [209971] +17:55:10 [ 12] [ 6] [175116] +17:55:10 [ 13] [ 4] [0320] +17:55:10 [ 14] [ 4] [1803] +17:55:10 [ 18] [ 4] [6011] +17:55:10 [ 19] [ 3] [418] +17:55:10 [ 22] [ 3] [021] +17:55:10 [ 32] [ 6] [198901] +17:55:10 [ 35] [ 27] [1808930600047377=1803500222] +17:55:10 [ 37] [ 12] [507917209971] +17:55:10 [ 38] [ 6] [209971] +17:55:10 [ 39] [ 2] [00] +17:55:10 [ 41] [ 8] [00852902] +17:55:10 [ 49] [ 3] [418] +17:55:10 [ 52] [ 16] [9C3A2C223A4BF0F0] +17:55:10 [ 54] [ 20] [1001418C004157500000] +17:55:10 ============================================================================ +17:55:10 Calculate Source COMM Id = 5 +17:55:10 ============================================================================ +17:55:10 + + +waiting on router queue for slot.... +17:55:11 ============================================================================ +17:55:11 Slot Id : <141> +17:55:11 Transaction Type : RESPONSE +17:55:11 Received From : +17:55:11 ============================================================================ +17:55:11 FNo. Len. Field Value +17:55:11 ============================================================================ +17:55:11 [ 1] [ 4] [0210] +17:55:11 [ 2] [ 16] [2206990000090415] +17:55:11 [ 3] [ 6] [011000] +17:55:11 [ 4] [ 12] [000050000000] +17:55:11 [ 7] [ 10] [0320175504] +17:55:11 [ 11] [ 6] [821741] +17:55:11 [ 12] [ 6] [175504] +17:55:11 [ 13] [ 4] [0320] +17:55:11 [ 15] [ 4] [0320] +17:55:11 [ 18] [ 4] [6011] +17:55:11 [ 32] [ 6] [621354] +17:55:11 [ 35] [ 32] [2206990000090415=971012618184053] +17:55:11 [ 37] [ 12] [507904635972] +17:55:11 [ 38] [ 6] [817945] +17:55:11 [ 39] [ 2] [00] +17:55:11 [ 41] [ 8] [17000800] +17:55:11 [ 49] [ 3] [418] +17:55:11 [ 54] [ 40] [1001418C0002161603001002418C000216160300] +17:55:11 ============================================================================ +17:55:11 Sending to : +17:55:11 ============================================================================ +17:55:11 + + +waiting on router queue for slot.... +17:55:13 ============================================================================ +17:55:13 Slot Id : <141> +17:55:13 Transaction Type : RESPONSE +17:55:13 Received From : +17:55:13 ============================================================================ +17:55:13 FNo. Len. Field Value +17:55:13 ============================================================================ +17:55:13 [ 1] [ 4] [0210] +17:55:13 [ 2] [ 16] [2206990000090415] +17:55:13 [ 3] [ 6] [011000] +17:55:13 [ 4] [ 12] [000050000000] +17:55:13 [ 7] [ 10] [0320175504] +17:55:13 [ 11] [ 6] [821741] +17:55:13 [ 12] [ 6] [175504] +17:55:13 [ 13] [ 4] [0320] +17:55:13 [ 15] [ 4] [0320] +17:55:13 [ 18] [ 4] [6011] +17:55:13 [ 32] [ 6] [621354] +17:55:13 [ 35] [ 32] [2206990000090415=971012618184053] +17:55:13 [ 37] [ 12] [507904635972] +17:55:13 [ 38] [ 6] [817945] +17:55:13 [ 39] [ 2] [00] +17:55:13 [ 41] [ 8] [17000800] +17:55:13 [ 49] [ 3] [418] +17:55:13 [ 54] [ 40] [1001418C0002161603001002418C000216160300] +17:55:13 ============================================================================ +17:55:13 Calculate Source COMM Id = 0 +17:55:13 ============================================================================ +17:55:13 + + +waiting on router queue for slot.... +17:55:13 ============================================================================ +17:55:13 Slot Id : <175> +17:55:13 Transaction Type : REQUEST +17:55:13 Received From : +17:55:13 ============================================================================ +17:55:13 FNo. Len. Field Value +17:55:13 ============================================================================ +17:55:13 [ 1] [ 4] [0800] +17:55:13 [ 7] [ 10] [0320105420] +17:55:13 [ 11] [ 6] [157578] +17:55:13 [ 70] [ 3] [301] +17:55:13 ============================================================================ +17:55:13 + + +waiting on router queue for slot.... +17:55:13 Sending to : +17:55:13 ============================================================================ +17:55:13 ============================================================================ +17:55:13 Slot Id : <175> +17:55:13 Transaction Type : RESPONSE +17:55:13 Received From : +17:55:13 ============================================================================ +17:55:13 FNo. Len. Field Value +17:55:13 ============================================================================ +17:55:13 [ 1] [ 4] [0810] +17:55:13 [ 7] [ 10] [0320105420] +17:55:13 [ 11] [ 6] [157578] +17:55:13 [ 39] [ 2] [00] +17:55:13 [ 70] [ 3] [301] +17:55:13 ============================================================================ +17:55:13 Calculate Source COMM Id = 2 +17:55:13 ============================================================================ +17:55:13 + + +waiting on router queue for slot.... +17:55:19 ============================================================================ +17:55:19 Slot Id : <170> +17:55:19 Transaction Type : REQUEST +17:55:19 Received From : +17:55:19 ============================================================================ +17:55:19 FNo. Len. Field Value +17:55:19 ============================================================================ +17:55:19 [ 1] [ 4] [0800] +17:55:19 [ 2] [ 5] [02531] +17:55:19 [ 3] [ 6] [579178] +17:55:19 [ 7] [ 10] [0320105519] +17:55:19 [ 11] [ 6] [807452] +17:55:19 [ 15] [ 10] [0320105519] +17:55:19 [ 37] [ 11] [57917807452] +17:55:19 [ 70] [ 3] [001] +17:55:19 ============================================================================ +17:55:19 + + +waiting on router queue for slot.... +17:55:19 ============================================================================ +17:55:19 Slot Id : <170> +17:55:19 Transaction Type : RESPONSE +17:55:19 Received From : +17:55:19 ============================================================================ +17:55:19 FNo. Len. Field Value +17:55:19 ============================================================================ +17:55:19 [ 1] [ 4] [0810] +17:55:19 [ 7] [ 10] [0320105519] +17:55:19 [ 11] [ 6] [807452] +17:55:19 [ 15] [ 4] [0320] +17:55:19 [ 37] [ 12] [57917807452] +17:55:19 [ 39] [ 2] [00] +17:55:19 [ 70] [ 3] [001] +17:55:19 ============================================================================ +17:55:19 Sending to : +17:55:19 ============================================================================ +17:55:19 + + +waiting on router queue for slot.... +17:55:20 ============================================================================ +17:55:20 Slot Id : <151> +17:55:20 Transaction Type : REQUEST +17:55:20 Received From : +17:55:20 ============================================================================ +17:55:20 FNo. Len. Field Value +17:55:20 ============================================================================ +17:55:20 [ 1] [ 4] [0200] +17:55:20 [ 2] [ 16] [6213548000150787] +17:55:20 [ 3] [ 6] [300000] +17:55:20 [ 4] [ 12] [000000000000] +17:55:20 [ 7] [ 10] [0320175309] +17:55:20 [ 11] [ 6] [954064] +17:55:20 [ 12] [ 6] [175309] +17:55:20 [ 13] [ 4] [0320] +17:55:20 [ 15] [ 4] [0320] +17:55:20 [ 18] [ 4] [6011] +17:55:20 [ 19] [ 3] [418] +17:55:20 [ 22] [ 3] [021] +17:55:20 [ 25] [ 2] [01] +17:55:20 [ 28] [ 9] [D00000000] +17:55:20 [ 32] [ 6] [668899] +17:55:20 [ 35] [ 32] [6213548000150787=131112015078561] +17:55:20 [ 37] [ 12] [507901614570] +17:55:20 [ 41] [ 8] [03001007] +17:55:20 [ 42] [ 15] [APT ] +17:55:20 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:55:20 [ 49] [ 3] [418] +17:55:20 [ 52] [ 16] [8174D43E39D3315B] +17:55:20 ============================================================================ +17:55:20 + + +waiting on router queue for slot.... +17:55:20 Sending to : +17:55:20 ============================================================================ +17:55:20 Sending to : +17:55:20 ============================================================================ +17:55:20 ============================================================================ +17:55:20 Slot Id : <151> +17:55:20 Transaction Type : REQUEST +17:55:20 Received From : +17:55:20 ============================================================================ +17:55:20 FNo. Len. Field Value +17:55:20 ============================================================================ +17:55:20 [ 1] [ 4] [0200] +17:55:20 [ 2] [ 16] [6213548000150787] +17:55:20 [ 3] [ 6] [300000] +17:55:20 [ 4] [ 12] [000000000000] +17:55:20 [ 7] [ 10] [0320175309] +17:55:20 [ 11] [ 6] [954064] +17:55:20 [ 12] [ 6] [175309] +17:55:20 [ 13] [ 4] [0320] +17:55:20 [ 15] [ 4] [0320] +17:55:20 [ 18] [ 4] [6011] +17:55:20 [ 19] [ 3] [418] +17:55:20 [ 22] [ 3] [021] +17:55:20 [ 25] [ 2] [01] +17:55:20 [ 28] [ 9] [D00000000] +17:55:20 [ 32] [ 6] [668899] +17:55:20 [ 35] [ 32] [6213548000150787=131112015078561] +17:55:20 [ 37] [ 12] [507901614570] +17:55:20 [ 41] [ 8] [03001007] +17:55:20 [ 42] [ 15] [APT ] +17:55:20 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:55:20 [ 49] [ 3] [418] +17:55:20 [ 52] [ 16] [8174D43E39D3315B] +17:55:20 ============================================================================ +17:55:20 + + +waiting on router queue for slot.... +17:55:20 Sending to : +17:55:20 ============================================================================ +17:55:20 ============================================================================ +17:55:20 Slot Id : <151> +17:55:20 Transaction Type : REQUEST +17:55:20 Received From : +17:55:20 ============================================================================ +17:55:20 FNo. Len. Field Value +17:55:20 ============================================================================ +17:55:20 [ 1] [ 4] [0200] +17:55:20 [ 2] [ 16] [6213548000150787] +17:55:20 [ 3] [ 6] [300000] +17:55:20 [ 4] [ 12] [000000000000] +17:55:20 [ 7] [ 10] [0320175309] +17:55:20 [ 11] [ 6] [954064] +17:55:20 [ 12] [ 6] [175309] +17:55:20 [ 13] [ 4] [0320] +17:55:20 [ 15] [ 4] [0320] +17:55:20 [ 18] [ 4] [6011] +17:55:20 [ 19] [ 3] [418] +17:55:20 [ 22] [ 3] [021] +17:55:20 [ 25] [ 2] [01] +17:55:20 [ 28] [ 9] [D00000000] +17:55:20 [ 32] [ 6] [668899] +17:55:20 [ 35] [ 32] [6213548000150787=131112015078561] +17:55:20 [ 37] [ 12] [507901614570] +17:55:20 [ 41] [ 8] [03001007] +17:55:20 [ 42] [ 15] [APT ] +17:55:20 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +17:55:20 [ 49] [ 3] [418] +17:55:20 [ 52] [ 16] [4A20B69B0E7F8D98] +17:55:20 ============================================================================ +17:55:20 + + +waiting on router queue for slot.... +17:55:20 Sending to : <0> +17:55:20 ============================================================================ +17:55:20 ============================================================================ +17:55:20 Slot Id : <151> +17:55:20 Transaction Type : RESPONSE +17:55:20 Received From : +17:55:20 ============================================================================ +17:55:20 FNo. Len. Field Value +17:55:20 ============================================================================ +17:55:20 [ 1] [ 4] [0210] +17:55:20 [ 2] [ 16] [6213548000150787] +17:55:20 [ 3] [ 6] [300000] +17:55:20 [ 4] [ 12] [000000000000] +17:55:20 [ 7] [ 10] [0320175309] +17:55:20 [ 11] [ 6] [954064] +17:55:20 [ 12] [ 6] [175309] +17:55:20 [ 13] [ 4] [0320] +17:55:20 [ 15] [ 4] [0320] +17:55:20 [ 18] [ 4] [6011] +17:55:20 [ 19] [ 3] [418] +17:55:20 [ 32] [ 6] [668899] +17:55:20 [ 35] [ 32] [6213548000150787=131112015078561] +17:55:20 [ 37] [ 12] [507901614570] +17:55:20 [ 38] [ 6] [363518] +17:55:20 [ 39] [ 2] [00] +17:55:20 [ 41] [ 8] [03001007] +17:55:20 [ 49] [ 3] [418] +17:55:20 [ 54] [ 40] [0001418C0000553164190002418C000055316419] +17:55:20 ============================================================================ +17:55:20 Sending to : +17:55:20 ============================================================================ +17:55:20 + + +waiting on router queue for slot.... +17:55:22 ============================================================================ +17:55:22 Slot Id : <151> +17:55:22 Transaction Type : RESPONSE +17:55:22 Received From : +17:55:22 ============================================================================ +17:55:22 FNo. Len. Field Value +17:55:22 ============================================================================ +17:55:22 [ 1] [ 4] [0210] +17:55:22 [ 2] [ 16] [6213548000150787] +17:55:22 [ 3] [ 6] [300000] +17:55:22 [ 4] [ 12] [000000000000] +17:55:22 [ 7] [ 10] [0320175309] +17:55:22 [ 11] [ 6] [954064] +17:55:22 [ 12] [ 6] [175309] +17:55:22 [ 13] [ 4] [0320] +17:55:22 [ 15] [ 4] [0320] +17:55:22 [ 18] [ 4] [6011] +17:55:22 [ 19] [ 3] [418] +17:55:22 [ 32] [ 6] [668899] +17:55:22 [ 35] [ 32] [6213548000150787=131112015078561] +17:55:22 [ 37] [ 12] [507901614570] +17:55:22 [ 38] [ 6] [363518] +17:55:22 [ 39] [ 2] [00] +17:55:22 [ 41] [ 8] [03001007] +17:55:22 [ 49] [ 3] [418] +17:55:22 [ 54] [ 40] [0001418C0000553164190002418C000055316419] +17:55:22 ============================================================================ +17:55:22 Calculate Source COMM Id = 4 +17:55:22 ============================================================================ +17:55:22 + + +waiting on router queue for slot.... +17:55:23 ============================================================================ +17:55:23 Slot Id : <172> +17:55:23 Transaction Type : REQUEST +17:55:23 Received From : +17:55:23 ============================================================================ +17:55:23 FNo. Len. Field Value +17:55:23 ============================================================================ +17:55:23 [ 1] [ 4] [0200] +17:55:23 [ 2] [ 16] [6213545000542310] +17:55:23 [ 3] [ 6] [301000] +17:55:23 [ 7] [ 10] [0320105430] +17:55:23 [ 11] [ 6] [271011] +17:55:23 [ 12] [ 6] [175430] +17:55:23 [ 13] [ 4] [0320] +17:55:23 [ 14] [ 4] [4912] +17:55:23 [ 15] [ 4] [0320] +17:55:23 [ 18] [ 4] [6011] +17:55:23 [ 19] [ 3] [418] +17:55:23 [ 22] [ 3] [021] +17:55:23 [ 25] [ 2] [01] +17:55:23 [ 32] [ 6] [180893] +17:55:23 [ 35] [ 32] [6213545000542310=491212014231564] +17:55:23 [ 37] [ 12] [507910271011] +17:55:23 [ 41] [ 8] [0381CPSP] +17:55:23 [ 42] [ 15] [999999 ] +17:55:23 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +17:55:23 [ 49] [ 3] [418] +17:55:23 [ 52] [ 16] [0D3087977B4C9114] +17:55:23 ============================================================================ +17:55:23 + + +waiting on router queue for slot.... +17:55:23 Sending to : +17:55:23 ============================================================================ +17:55:23 Sending to : +17:55:23 ============================================================================ +17:55:24 ============================================================================ +17:55:24 Slot Id : <172> +17:55:24 Transaction Type : REQUEST +17:55:24 Received From : +17:55:24 ============================================================================ +17:55:24 FNo. Len. Field Value +17:55:24 ============================================================================ +17:55:24 [ 1] [ 4] [0200] +17:55:24 [ 2] [ 16] [6213545000542310] +17:55:24 [ 3] [ 6] [301000] +17:55:24 [ 7] [ 10] [0320105430] +17:55:24 [ 11] [ 6] [271011] +17:55:24 [ 12] [ 6] [175430] +17:55:24 [ 13] [ 4] [0320] +17:55:24 [ 14] [ 4] [4912] +17:55:24 [ 15] [ 4] [0320] +17:55:24 [ 18] [ 4] [6011] +17:55:24 [ 19] [ 3] [418] +17:55:24 [ 22] [ 3] [021] +17:55:24 [ 25] [ 2] [01] +17:55:24 [ 32] [ 6] [180893] +17:55:24 [ 35] [ 32] [6213545000542310=491212014231564] +17:55:24 [ 37] [ 12] [507910271011] +17:55:24 [ 41] [ 8] [0381CPSP] +17:55:24 [ 42] [ 15] [999999 ] +17:55:24 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +17:55:24 [ 49] [ 3] [418] +17:55:24 [ 52] [ 16] [0D3087977B4C9114] +17:55:24 ============================================================================ +17:55:24 + + +waiting on router queue for slot.... +17:55:24 Sending to : +17:55:24 ============================================================================ +17:55:24 ============================================================================ +17:55:24 Slot Id : <172> +17:55:24 Transaction Type : REQUEST +17:55:24 Received From : +17:55:24 ============================================================================ +17:55:24 FNo. Len. Field Value +17:55:24 ============================================================================ +17:55:24 [ 1] [ 4] [0200] +17:55:24 [ 2] [ 16] [6213545000542310] +17:55:24 [ 3] [ 6] [301000] +17:55:24 [ 7] [ 10] [0320105430] +17:55:24 [ 11] [ 6] [271011] +17:55:24 [ 12] [ 6] [175430] +17:55:24 [ 13] [ 4] [0320] +17:55:24 [ 14] [ 4] [4912] +17:55:24 [ 15] [ 4] [0320] +17:55:24 [ 18] [ 4] [6011] +17:55:24 [ 19] [ 3] [418] +17:55:24 [ 22] [ 3] [021] +17:55:24 [ 25] [ 2] [01] +17:55:24 [ 32] [ 6] [180893] +17:55:24 [ 35] [ 32] [6213545000542310=491212014231564] +17:55:24 [ 37] [ 12] [507910271011] +17:55:24 [ 41] [ 8] [0381CPSP] +17:55:24 [ 42] [ 15] [999999 ] +17:55:24 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +17:55:24 [ 49] [ 3] [418] +17:55:24 [ 52] [ 16] [62B8B4F785910297] +17:55:24 ============================================================================ +17:55:24 + + +waiting on router queue for slot.... +17:55:24 Sending to : <0> +17:55:24 ============================================================================ +17:55:24 ============================================================================ +17:55:24 Slot Id : <171> +17:55:24 Transaction Type : REQUEST +17:55:24 Received From : +17:55:24 ============================================================================ +17:55:24 FNo. Len. Field Value +17:55:24 ============================================================================ +17:55:24 [ 1] [ 4] [0800] +17:55:24 [ 7] [ 10] [0320105431] +17:55:24 [ 11] [ 6] [157579] +17:55:24 [ 70] [ 3] [301] +17:55:24 ============================================================================ +17:55:24 + + +waiting on router queue for slot.... +17:55:24 Sending to : +17:55:24 ============================================================================ +17:55:24 ============================================================================ +17:55:24 Slot Id : <171> +17:55:24 Transaction Type : RESPONSE +17:55:24 Received From : +17:55:24 ============================================================================ +17:55:24 FNo. Len. Field Value +17:55:24 ============================================================================ +17:55:24 [ 1] [ 4] [0810] +17:55:24 [ 7] [ 10] [0320105431] +17:55:24 [ 11] [ 6] [157579] +17:55:24 [ 39] [ 2] [00] +17:55:24 [ 70] [ 3] [301] +17:55:24 ============================================================================ +17:55:24 Calculate Source COMM Id = 2 +17:55:24 ============================================================================ +17:55:24 + + +waiting on router queue for slot.... +17:55:25 ============================================================================ +17:55:25 Slot Id : <172> +17:55:25 Transaction Type : RESPONSE +17:55:25 Received From : +17:55:25 ============================================================================ +17:55:25 FNo. Len. Field Value +17:55:25 ============================================================================ +17:55:25 [ 1] [ 4] [0210] +17:55:25 [ 2] [ 16] [6213545000542310] +17:55:25 [ 3] [ 6] [301000] +17:55:25 [ 4] [ 12] [000000000000] +17:55:25 [ 7] [ 10] [0320105430] +17:55:25 [ 11] [ 6] [271011] +17:55:25 [ 12] [ 6] [175430] +17:55:25 [ 13] [ 4] [0320] +17:55:25 [ 15] [ 4] [0320] +17:55:25 [ 18] [ 4] [6011] +17:55:25 [ 19] [ 3] [418] +17:55:25 [ 22] [ 3] [021] +17:55:25 [ 32] [ 6] [180893] +17:55:25 [ 35] [ 32] [6213545000542310=491212014231564] +17:55:25 [ 37] [ 12] [507910271011] +17:55:25 [ 38] [ 6] [175519] +17:55:25 [ 39] [ 2] [55] +17:55:25 [ 41] [ 8] [0381CPSP] +17:55:25 [ 49] [ 3] [418] +17:55:25 ============================================================================ +17:55:25 Sending to : +17:55:25 ============================================================================ +17:55:25 + + +waiting on router queue for slot.... +17:55:26 ============================================================================ +17:55:26 Slot Id : <172> +17:55:26 Transaction Type : RESPONSE +17:55:26 Received From : +17:55:26 ============================================================================ +17:55:26 FNo. Len. Field Value +17:55:26 ============================================================================ +17:55:26 [ 1] [ 4] [0210] +17:55:26 [ 2] [ 16] [6213545000542310] +17:55:26 [ 3] [ 6] [301000] +17:55:26 [ 4] [ 12] [000000000000] +17:55:26 [ 7] [ 10] [0320105430] +17:55:26 [ 11] [ 6] [271011] +17:55:26 [ 12] [ 6] [175430] +17:55:26 [ 13] [ 4] [0320] +17:55:26 [ 15] [ 4] [0320] +17:55:26 [ 18] [ 4] [6011] +17:55:26 [ 19] [ 3] [418] +17:55:26 [ 22] [ 3] [021] +17:55:26 [ 32] [ 6] [180893] +17:55:26 [ 35] [ 32] [6213545000542310=491212014231564] +17:55:26 [ 37] [ 12] [507910271011] +17:55:26 [ 38] [ 6] [175519] +17:55:26 [ 39] [ 2] [55] +17:55:26 [ 41] [ 8] [0381CPSP] +17:55:26 [ 49] [ 3] [418] +17:55:26 ============================================================================ +17:55:26 Calculate Source COMM Id = 2 +17:55:26 ============================================================================ +17:55:26 + + +waiting on router queue for slot.... +17:55:39 ============================================================================ +17:55:39 Slot Id : <164> +17:55:39 Transaction Type : REQUEST +17:55:39 Received From : +17:55:39 ============================================================================ +17:55:39 FNo. Len. Field Value +17:55:39 ============================================================================ +17:55:39 [ 1] [ 4] [0800] +17:55:39 [ 7] [ 10] [0320105446] +17:55:39 [ 11] [ 6] [157580] +17:55:39 [ 70] [ 3] [301] +17:55:39 ============================================================================ +17:55:39 + + +waiting on router queue for slot.... +17:55:39 Sending to : +17:55:39 ============================================================================ +17:55:39 ============================================================================ +17:55:39 Slot Id : <164> +17:55:39 Transaction Type : RESPONSE +17:55:39 Received From : +17:55:39 ============================================================================ +17:55:39 FNo. Len. Field Value +17:55:39 ============================================================================ +17:55:39 [ 1] [ 4] [0810] +17:55:39 [ 7] [ 10] [0320105446] +17:55:39 [ 11] [ 6] [157580] +17:55:39 [ 39] [ 2] [00] +17:55:39 [ 70] [ 3] [301] +17:55:39 ============================================================================ +17:55:39 Calculate Source COMM Id = 2 +17:55:39 ============================================================================ +17:55:39 + + +waiting on router queue for slot.... +17:55:43 ============================================================================ +17:55:43 Slot Id : <186> +17:55:43 Transaction Type : REQUEST +17:55:43 Received From : +17:55:43 ============================================================================ +17:55:43 FNo. Len. Field Value +17:55:43 ============================================================================ +17:55:43 [ 1] [ 4] [0800] +17:55:43 [ 7] [ 10] [0321010731] +17:55:43 [ 11] [ 6] [180731] +17:55:43 [ 37] [ 12] [57918180731] +17:55:43 [ 70] [ 3] [301] +17:55:43 ============================================================================ +17:55:43 + + +waiting on router queue for slot.... +17:55:43 Sending to : +17:55:43 ============================================================================ +17:55:43 ============================================================================ +17:55:43 Slot Id : <186> +17:55:43 Transaction Type : RESPONSE +17:55:43 Received From : +17:55:43 ============================================================================ +17:55:43 FNo. Len. Field Value +17:55:43 ============================================================================ +17:55:43 [ 1] [ 4] [0810] +17:55:43 [ 7] [ 10] [0321010731] +17:55:43 [ 11] [ 6] [180731] +17:55:43 [ 37] [ 12] [579181807310] +17:55:43 [ 39] [ 2] [00] +17:55:43 [ 70] [ 3] [810] +17:55:43 ============================================================================ +17:55:43 Calculate Source COMM Id = 6 +17:55:43 ============================================================================ +17:55:43 + + +waiting on router queue for slot.... +17:55:54 ============================================================================ +17:55:54 Slot Id : <139> +17:55:54 Transaction Type : REQUEST +17:55:54 Received From : +17:55:54 ============================================================================ +17:55:54 FNo. Len. Field Value +17:55:54 ============================================================================ +17:55:54 [ 1] [ 4] [0200] +17:55:54 [ 2] [ 16] [6213545000542310] +17:55:54 [ 3] [ 6] [301000] +17:55:54 [ 7] [ 10] [0320105500] +17:55:54 [ 11] [ 6] [271014] +17:55:54 [ 12] [ 6] [175500] +17:55:54 [ 13] [ 4] [0320] +17:55:54 [ 14] [ 4] [4912] +17:55:54 [ 15] [ 4] [0320] +17:55:54 [ 18] [ 4] [6011] +17:55:54 [ 19] [ 3] [418] +17:55:54 [ 22] [ 3] [021] +17:55:54 [ 25] [ 2] [01] +17:55:54 [ 32] [ 6] [180893] +17:55:54 [ 35] [ 32] [6213545000542310=491212014231564] +17:55:54 [ 37] [ 12] [507910271014] +17:55:54 [ 41] [ 8] [0381CPSP] +17:55:54 [ 42] [ 15] [999999 ] +17:55:54 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +17:55:54 [ 49] [ 3] [418] +17:55:54 [ 52] [ 16] [1B9F23A8D0ADCE62] +17:55:54 ============================================================================ +17:55:54 + + +waiting on router queue for slot.... +17:55:54 Sending to : +17:55:54 ============================================================================ +17:55:54 Sending to : +17:55:54 ============================================================================ +17:55:54 ============================================================================ +17:55:54 Slot Id : <139> +17:55:54 Transaction Type : REQUEST +17:55:54 Received From : +17:55:54 ============================================================================ +17:55:54 FNo. Len. Field Value +17:55:54 ============================================================================ +17:55:54 [ 1] [ 4] [0200] +17:55:54 [ 2] [ 16] [6213545000542310] +17:55:54 [ 3] [ 6] [301000] +17:55:54 [ 7] [ 10] [0320105500] +17:55:54 [ 11] [ 6] [271014] +17:55:54 [ 12] [ 6] [175500] +17:55:54 [ 13] [ 4] [0320] +17:55:54 [ 14] [ 4] [4912] +17:55:54 [ 15] [ 4] [0320] +17:55:54 [ 18] [ 4] [6011] +17:55:54 [ 19] [ 3] [418] +17:55:54 [ 22] [ 3] [021] +17:55:54 [ 25] [ 2] [01] +17:55:54 [ 32] [ 6] [180893] +17:55:54 [ 35] [ 32] [6213545000542310=491212014231564] +17:55:54 [ 37] [ 12] [507910271014] +17:55:54 [ 41] [ 8] [0381CPSP] +17:55:54 [ 42] [ 15] [999999 ] +17:55:54 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +17:55:54 [ 49] [ 3] [418] +17:55:54 [ 52] [ 16] [1B9F23A8D0ADCE62] +17:55:54 ============================================================================ +17:55:54 + + +waiting on router queue for slot.... +17:55:54 Sending to : +17:55:54 ============================================================================ +17:55:54 ============================================================================ +17:55:54 Slot Id : <139> +17:55:54 Transaction Type : REQUEST +17:55:54 Received From : +17:55:54 ============================================================================ +17:55:54 FNo. Len. Field Value +17:55:54 ============================================================================ +17:55:54 [ 1] [ 4] [0200] +17:55:54 [ 2] [ 16] [6213545000542310] +17:55:54 [ 3] [ 6] [301000] +17:55:54 [ 7] [ 10] [0320105500] +17:55:54 [ 11] [ 6] [271014] +17:55:54 [ 12] [ 6] [175500] +17:55:54 [ 13] [ 4] [0320] +17:55:54 [ 14] [ 4] [4912] +17:55:54 [ 15] [ 4] [0320] +17:55:54 [ 18] [ 4] [6011] +17:55:54 [ 19] [ 3] [418] +17:55:54 [ 22] [ 3] [021] +17:55:54 [ 25] [ 2] [01] +17:55:54 [ 32] [ 6] [180893] +17:55:54 [ 35] [ 32] [6213545000542310=491212014231564] +17:55:54 [ 37] [ 12] [507910271014] +17:55:54 [ 41] [ 8] [0381CPSP] +17:55:54 [ 42] [ 15] [999999 ] +17:55:54 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +17:55:54 [ 49] [ 3] [418] +17:55:54 [ 52] [ 16] [CE6AEAD78AB16EF7] +17:55:54 ============================================================================ +17:55:54 + + +waiting on router queue for slot.... +17:55:54 Sending to : <0> +17:55:54 ============================================================================ +17:55:54 ============================================================================ +17:55:54 Slot Id : <139> +17:55:54 Transaction Type : RESPONSE +17:55:54 Received From : +17:55:54 ============================================================================ +17:55:54 FNo. Len. Field Value +17:55:54 ============================================================================ +17:55:54 [ 1] [ 4] [0210] +17:55:54 [ 2] [ 16] [6213545000542310] +17:55:54 [ 3] [ 6] [301000] +17:55:54 [ 4] [ 12] [000000000000] +17:55:54 [ 7] [ 10] [0320105500] +17:55:54 [ 11] [ 6] [271014] +17:55:54 [ 12] [ 6] [175500] +17:55:54 [ 13] [ 4] [0320] +17:55:54 [ 15] [ 4] [0320] +17:55:54 [ 18] [ 4] [6011] +17:55:54 [ 19] [ 3] [418] +17:55:54 [ 22] [ 3] [021] +17:55:54 [ 32] [ 6] [180893] +17:55:54 [ 35] [ 32] [6213545000542310=491212014231564] +17:55:54 [ 37] [ 12] [507910271014] +17:55:54 [ 38] [ 6] [175549] +17:55:54 [ 39] [ 2] [55] +17:55:54 [ 41] [ 8] [0381CPSP] +17:55:54 [ 49] [ 3] [418] +17:55:54 ============================================================================ +17:55:54 Sending to : +17:55:54 ============================================================================ +17:55:54 + + +waiting on router queue for slot.... +17:55:55 ============================================================================ +17:55:55 Slot Id : <139> +17:55:55 Transaction Type : RESPONSE +17:55:55 Received From : +17:55:55 ============================================================================ +17:55:55 FNo. Len. Field Value +17:55:55 ============================================================================ +17:55:55 [ 1] [ 4] [0210] +17:55:55 [ 2] [ 16] [6213545000542310] +17:55:55 [ 3] [ 6] [301000] +17:55:55 [ 4] [ 12] [000000000000] +17:55:55 [ 7] [ 10] [0320105500] +17:55:55 [ 11] [ 6] [271014] +17:55:55 [ 12] [ 6] [175500] +17:55:55 [ 13] [ 4] [0320] +17:55:55 [ 15] [ 4] [0320] +17:55:55 [ 18] [ 4] [6011] +17:55:55 [ 19] [ 3] [418] +17:55:55 [ 22] [ 3] [021] +17:55:55 [ 32] [ 6] [180893] +17:55:55 [ 35] [ 32] [6213545000542310=491212014231564] +17:55:55 [ 37] [ 12] [507910271014] +17:55:55 [ 38] [ 6] [175549] +17:55:55 [ 39] [ 2] [55] +17:55:55 [ 41] [ 8] [0381CPSP] +17:55:55 [ 49] [ 3] [418] +17:55:55 ============================================================================ +17:55:55 Calculate Source COMM Id = 2 +17:55:55 ============================================================================ +17:55:55 + + +waiting on router queue for slot.... +17:55:56 ============================================================================ +17:55:56 Slot Id : <126> +17:55:56 Transaction Type : REQUEST +17:55:56 Received From : +17:55:56 ============================================================================ +17:55:56 FNo. Len. Field Value +17:55:56 ============================================================================ +17:55:56 [ 1] [ 4] [0800] +17:55:56 [ 7] [ 10] [0320105502] +17:55:56 [ 11] [ 6] [157581] +17:55:56 [ 70] [ 3] [301] +17:55:56 ============================================================================ +17:55:56 + + +waiting on router queue for slot.... +17:55:56 Sending to : +17:55:56 ============================================================================ +17:55:56 ============================================================================ +17:55:56 Slot Id : <126> +17:55:56 Transaction Type : RESPONSE +17:55:56 Received From : +17:55:56 ============================================================================ +17:55:56 FNo. Len. Field Value +17:55:56 ============================================================================ +17:55:56 [ 1] [ 4] [0810] +17:55:56 [ 7] [ 10] [0320105502] +17:55:56 [ 11] [ 6] [157581] +17:55:56 [ 39] [ 2] [00] +17:55:56 [ 70] [ 3] [301] +17:55:56 ============================================================================ +17:55:56 Calculate Source COMM Id = 2 +17:55:56 ============================================================================ +17:55:56 + + +waiting on router queue for slot.... +17:56:09 ============================================================================ +17:56:09 Slot Id : <119> +17:56:09 Transaction Type : REQUEST +17:56:09 Received From : +17:56:09 ============================================================================ +17:56:09 FNo. Len. Field Value +17:56:09 ============================================================================ +17:56:09 [ 1] [ 4] [0200] +17:56:09 [ 2] [ 16] [6213545000542310] +17:56:09 [ 3] [ 6] [301000] +17:56:09 [ 7] [ 10] [0320105515] +17:56:09 [ 11] [ 6] [271016] +17:56:09 [ 12] [ 6] [175515] +17:56:09 [ 13] [ 4] [0320] +17:56:09 [ 14] [ 4] [4912] +17:56:09 [ 15] [ 4] [0320] +17:56:09 [ 18] [ 4] [6011] +17:56:09 [ 19] [ 3] [418] +17:56:09 [ 22] [ 3] [021] +17:56:09 [ 25] [ 2] [01] +17:56:09 [ 32] [ 6] [180893] +17:56:09 [ 35] [ 32] [6213545000542310=491212014231564] +17:56:09 [ 37] [ 12] [507910271016] +17:56:09 [ 41] [ 8] [0381CPSP] +17:56:09 [ 42] [ 15] [999999 ] +17:56:09 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +17:56:09 [ 49] [ 3] [418] +17:56:09 [ 52] [ 16] [0D3087977B4C9114] +17:56:09 ============================================================================ +17:56:09 + + +waiting on router queue for slot.... +17:56:09 Sending to : +17:56:09 ============================================================================ +17:56:09 Sending to : +17:56:09 ============================================================================ +17:56:09 ============================================================================ +17:56:09 Slot Id : <119> +17:56:09 Transaction Type : REQUEST +17:56:09 Received From : +17:56:09 ============================================================================ +17:56:09 FNo. Len. Field Value +17:56:09 ============================================================================ +17:56:09 [ 1] [ 4] [0200] +17:56:09 [ 2] [ 16] [6213545000542310] +17:56:09 [ 3] [ 6] [301000] +17:56:09 [ 7] [ 10] [0320105515] +17:56:09 [ 11] [ 6] [271016] +17:56:09 [ 12] [ 6] [175515] +17:56:09 [ 13] [ 4] [0320] +17:56:09 [ 14] [ 4] [4912] +17:56:09 [ 15] [ 4] [0320] +17:56:09 [ 18] [ 4] [6011] +17:56:09 [ 19] [ 3] [418] +17:56:09 [ 22] [ 3] [021] +17:56:09 [ 25] [ 2] [01] +17:56:09 [ 32] [ 6] [180893] +17:56:09 [ 35] [ 32] [6213545000542310=491212014231564] +17:56:09 [ 37] [ 12] [507910271016] +17:56:09 [ 41] [ 8] [0381CPSP] +17:56:09 [ 42] [ 15] [999999 ] +17:56:09 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +17:56:09 [ 49] [ 3] [418] +17:56:09 [ 52] [ 16] [0D3087977B4C9114] +17:56:09 ============================================================================ +17:56:09 + + +waiting on router queue for slot.... +17:56:09 Sending to : +17:56:09 ============================================================================ +17:56:09 ============================================================================ +17:56:09 Slot Id : <119> +17:56:09 Transaction Type : REQUEST +17:56:09 Received From : +17:56:09 ============================================================================ +17:56:09 FNo. Len. Field Value +17:56:09 ============================================================================ +17:56:09 [ 1] [ 4] [0200] +17:56:09 [ 2] [ 16] [6213545000542310] +17:56:09 [ 3] [ 6] [301000] +17:56:09 [ 7] [ 10] [0320105515] +17:56:09 [ 11] [ 6] [271016] +17:56:09 [ 12] [ 6] [175515] +17:56:09 [ 13] [ 4] [0320] +17:56:09 [ 14] [ 4] [4912] +17:56:09 [ 15] [ 4] [0320] +17:56:09 [ 18] [ 4] [6011] +17:56:09 [ 19] [ 3] [418] +17:56:09 [ 22] [ 3] [021] +17:56:09 [ 25] [ 2] [01] +17:56:09 [ 32] [ 6] [180893] +17:56:09 [ 35] [ 32] [6213545000542310=491212014231564] +17:56:09 [ 37] [ 12] [507910271016] +17:56:09 [ 41] [ 8] [0381CPSP] +17:56:09 [ 42] [ 15] [999999 ] +17:56:09 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +17:56:09 [ 49] [ 3] [418] +17:56:09 [ 52] [ 16] [62B8B4F785910297] +17:56:09 ============================================================================ +17:56:09 + + +waiting on router queue for slot.... +17:56:09 Sending to : <0> +17:56:09 ============================================================================ +17:56:10 ============================================================================ +17:56:10 Slot Id : <119> +17:56:10 Transaction Type : RESPONSE +17:56:10 Received From : +17:56:10 ============================================================================ +17:56:10 FNo. Len. Field Value +17:56:10 ============================================================================ +17:56:10 [ 1] [ 4] [0210] +17:56:10 [ 2] [ 16] [6213545000542310] +17:56:10 [ 3] [ 6] [301000] +17:56:10 [ 4] [ 12] [000000000000] +17:56:10 [ 7] [ 10] [0320105515] +17:56:10 [ 11] [ 6] [271016] +17:56:10 [ 12] [ 6] [175515] +17:56:10 [ 13] [ 4] [0320] +17:56:10 [ 15] [ 4] [0320] +17:56:10 [ 18] [ 4] [6011] +17:56:10 [ 19] [ 3] [418] +17:56:10 [ 22] [ 3] [021] +17:56:10 [ 32] [ 6] [180893] +17:56:10 [ 35] [ 32] [6213545000542310=491212014231564] +17:56:10 [ 37] [ 12] [507910271016] +17:56:10 [ 38] [ 6] [175605] +17:56:10 [ 39] [ 2] [75] +17:56:10 [ 41] [ 8] [0381CPSP] +17:56:10 [ 49] [ 3] [418] +17:56:10 ============================================================================ +17:56:10 Sending to : +17:56:10 ============================================================================ +17:56:10 + + +waiting on router queue for slot.... +17:56:10 ============================================================================ +17:56:10 Slot Id : <148> +17:56:10 Transaction Type : REQUEST +17:56:10 Received From : +17:56:10 ============================================================================ +17:56:10 FNo. Len. Field Value +17:56:10 ============================================================================ +17:56:10 [ 1] [ 4] [0200] +17:56:10 [ 2] [ 16] [6688990601443003] +17:56:10 [ 3] [ 6] [010000] +17:56:10 [ 4] [ 12] [000050000000] +17:56:10 [ 7] [ 10] [0320175605] +17:56:10 [ 11] [ 6] [821931] +17:56:10 [ 12] [ 6] [175605] +17:56:10 [ 13] [ 4] [0320] +17:56:10 [ 15] [ 4] [0320] +17:56:10 [ 18] [ 4] [6011] +17:56:10 [ 22] [ 3] [900] +17:56:10 [ 25] [ 2] [02] +17:56:10 [ 28] [ 9] [D00002000] +17:56:10 [ 32] [ 6] [621354] +17:56:10 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:56:10 [ 37] [ 12] [507904154145] +17:56:10 [ 41] [ 8] [20001000] +17:56:10 [ 42] [ 15] [NATIVE ] +17:56:10 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:56:10 [ 49] [ 3] [418] +17:56:10 [ 52] [ 16] [A20525E61AA50CDA] +17:56:10 ============================================================================ +17:56:10 + + +waiting on router queue for slot.... +17:56:10 Sending to : +17:56:10 ============================================================================ +17:56:10 Sending to : +17:56:10 ============================================================================ +17:56:11 ============================================================================ +17:56:11 Slot Id : <119> +17:56:11 Transaction Type : RESPONSE +17:56:11 Received From : +17:56:11 ============================================================================ +17:56:11 FNo. Len. Field Value +17:56:11 ============================================================================ +17:56:11 [ 1] [ 4] [0210] +17:56:11 [ 2] [ 16] [6213545000542310] +17:56:11 [ 3] [ 6] [301000] +17:56:11 [ 4] [ 12] [000000000000] +17:56:11 [ 7] [ 10] [0320105515] +17:56:11 [ 11] [ 6] [271016] +17:56:11 [ 12] [ 6] [175515] +17:56:11 [ 13] [ 4] [0320] +17:56:11 [ 15] [ 4] [0320] +17:56:11 [ 18] [ 4] [6011] +17:56:11 [ 19] [ 3] [418] +17:56:11 [ 22] [ 3] [021] +17:56:11 [ 32] [ 6] [180893] +17:56:11 [ 35] [ 32] [6213545000542310=491212014231564] +17:56:11 [ 37] [ 12] [507910271016] +17:56:11 [ 38] [ 6] [175605] +17:56:11 [ 39] [ 2] [75] +17:56:11 [ 41] [ 8] [0381CPSP] +17:56:11 [ 49] [ 3] [418] +17:56:11 ============================================================================ +17:56:11 Calculate Source COMM Id = 2 +17:56:11 ============================================================================ +17:56:11 + + +waiting on router queue for slot.... +17:56:11 ============================================================================ +17:56:11 Slot Id : <148> +17:56:11 Transaction Type : REQUEST +17:56:11 Received From : +17:56:11 ============================================================================ +17:56:11 FNo. Len. Field Value +17:56:11 ============================================================================ +17:56:11 [ 1] [ 4] [0200] +17:56:11 [ 2] [ 16] [6688990601443003] +17:56:11 [ 3] [ 6] [010000] +17:56:11 [ 4] [ 12] [000050000000] +17:56:11 [ 7] [ 10] [0320175605] +17:56:11 [ 11] [ 6] [821931] +17:56:11 [ 12] [ 6] [175605] +17:56:11 [ 13] [ 4] [0320] +17:56:11 [ 15] [ 4] [0320] +17:56:11 [ 18] [ 4] [6011] +17:56:11 [ 22] [ 3] [900] +17:56:11 [ 25] [ 2] [02] +17:56:11 [ 28] [ 9] [D00002000] +17:56:11 [ 32] [ 6] [621354] +17:56:11 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:56:11 [ 37] [ 12] [507904154145] +17:56:11 [ 41] [ 8] [20001000] +17:56:11 [ 42] [ 15] [NATIVE ] +17:56:11 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:56:11 [ 49] [ 3] [418] +17:56:11 [ 52] [ 16] [A20525E61AA50CDA] +17:56:11 ============================================================================ +17:56:11 + + +waiting on router queue for slot.... +17:56:11 Sending to : +17:56:11 ============================================================================ +17:56:11 ============================================================================ +17:56:11 Slot Id : <148> +17:56:11 Transaction Type : REQUEST +17:56:11 Received From : +17:56:11 ============================================================================ +17:56:11 FNo. Len. Field Value +17:56:11 ============================================================================ +17:56:11 [ 1] [ 4] [0200] +17:56:11 [ 2] [ 16] [6688990601443003] +17:56:11 [ 3] [ 6] [010000] +17:56:11 [ 4] [ 12] [000050000000] +17:56:11 [ 7] [ 10] [0320175605] +17:56:11 [ 11] [ 6] [821931] +17:56:11 [ 12] [ 6] [175605] +17:56:11 [ 13] [ 4] [0320] +17:56:11 [ 15] [ 4] [0320] +17:56:11 [ 18] [ 4] [6011] +17:56:11 [ 22] [ 3] [900] +17:56:11 [ 25] [ 2] [02] +17:56:11 [ 28] [ 9] [D00002000] +17:56:11 [ 32] [ 6] [621354] +17:56:11 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:56:11 [ 37] [ 12] [507904154145] +17:56:11 [ 41] [ 8] [20001000] +17:56:11 [ 42] [ 15] [NATIVE ] +17:56:11 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:56:11 [ 49] [ 3] [418] +17:56:11 [ 52] [ 16] [F8DDBA667328DD48] +17:56:11 ============================================================================ +17:56:11 + + +waiting on router queue for slot.... +17:56:11 Sending to : <4> +17:56:11 ============================================================================ +17:56:11 ============================================================================ +17:56:11 Slot Id : <202> +17:56:11 Transaction Type : REQUEST +17:56:11 Received From : +17:56:11 ============================================================================ +17:56:11 FNo. Len. Field Value +17:56:11 ============================================================================ +17:56:11 [ 1] [ 4] [0800] +17:56:11 [ 7] [ 10] [0320105518] +17:56:11 [ 11] [ 6] [157582] +17:56:11 [ 70] [ 3] [301] +17:56:11 ============================================================================ +17:56:11 + + +waiting on router queue for slot.... +17:56:11 Sending to : +17:56:11 ============================================================================ +17:56:11 ============================================================================ +17:56:11 Slot Id : <202> +17:56:11 Transaction Type : RESPONSE +17:56:11 Received From : +17:56:11 ============================================================================ +17:56:11 FNo. Len. Field Value +17:56:11 ============================================================================ +17:56:11 [ 1] [ 4] [0810] +17:56:11 [ 7] [ 10] [0320105518] +17:56:11 [ 11] [ 6] [157582] +17:56:11 [ 39] [ 2] [00] +17:56:11 [ 70] [ 3] [301] +17:56:11 ============================================================================ +17:56:11 Calculate Source COMM Id = 2 +17:56:11 ============================================================================ +17:56:11 + + +waiting on router queue for slot.... +17:56:11 ============================================================================ +17:56:11 Slot Id : <148> +17:56:11 Transaction Type : RESPONSE +17:56:11 Received From : +17:56:11 ============================================================================ +17:56:11 FNo. Len. Field Value +17:56:11 ============================================================================ +17:56:11 [ 1] [ 4] [0210] +17:56:11 [ 2] [ 16] [6688990601443003] +17:56:11 [ 3] [ 6] [010000] +17:56:11 [ 4] [ 12] [000050000000] +17:56:11 [ 11] [ 6] [821931] +17:56:11 [ 12] [ 6] [175605] +17:56:11 [ 15] [ 4] [0320] +17:56:11 [ 18] [ 4] [6011] +17:56:11 [ 32] [ 6] [621354] +17:56:11 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:56:11 [ 37] [ 12] [507904154145] +17:56:11 [ 39] [ 2] [51] +17:56:11 [ 41] [ 8] [20001000] +17:56:11 [ 49] [ 3] [418] +17:56:11 [ 54] [ 0] [] +17:56:11 ============================================================================ +17:56:11 Sending to : +17:56:11 ============================================================================ +17:56:11 + + +waiting on router queue for slot.... +17:56:12 ============================================================================ +17:56:12 Slot Id : <148> +17:56:12 Transaction Type : RESPONSE +17:56:12 Received From : +17:56:12 ============================================================================ +17:56:12 FNo. Len. Field Value +17:56:12 ============================================================================ +17:56:12 [ 1] [ 4] [0210] +17:56:12 [ 2] [ 16] [6688990601443003] +17:56:12 [ 3] [ 6] [010000] +17:56:12 [ 4] [ 12] [000050000000] +17:56:12 [ 11] [ 6] [821931] +17:56:12 [ 12] [ 6] [175605] +17:56:12 [ 15] [ 4] [0320] +17:56:12 [ 18] [ 4] [6011] +17:56:12 [ 32] [ 6] [621354] +17:56:12 [ 35] [ 37] [6688990601443003=41090061300369100000] +17:56:12 [ 37] [ 12] [507904154145] +17:56:12 [ 39] [ 2] [51] +17:56:12 [ 41] [ 8] [20001000] +17:56:12 [ 49] [ 3] [418] +17:56:12 [ 54] [ 0] [] +17:56:12 ============================================================================ +17:56:12 Calculate Source COMM Id = 0 +17:56:12 ============================================================================ +17:56:12 + + +waiting on router queue for slot.... +17:56:18 ============================================================================ +17:56:18 Slot Id : <182> +17:56:18 Transaction Type : REQUEST +17:56:18 Received From : +17:56:18 ============================================================================ +17:56:18 FNo. Len. Field Value +17:56:18 ============================================================================ +17:56:18 [ 1] [ 4] [0200] +17:56:18 [ 2] [ 16] [6688990602743104] +17:56:18 [ 3] [ 6] [011000] +17:56:18 [ 4] [ 12] [000020000000] +17:56:18 [ 7] [ 10] [0320175613] +17:56:18 [ 11] [ 6] [821959] +17:56:18 [ 12] [ 6] [175613] +17:56:18 [ 13] [ 4] [0320] +17:56:18 [ 15] [ 4] [0320] +17:56:18 [ 18] [ 4] [6011] +17:56:18 [ 22] [ 3] [900] +17:56:18 [ 25] [ 2] [02] +17:56:18 [ 28] [ 9] [D00002000] +17:56:18 [ 32] [ 6] [621354] +17:56:18 [ 35] [ 37] [6688990602743104=43100061310431900000] +17:56:18 [ 37] [ 12] [507904653854] +17:56:18 [ 41] [ 8] [17001000] +17:56:18 [ 42] [ 15] [NATIVE ] +17:56:18 [ 43] [ 40] [Sum Market Samneua LAO] +17:56:18 [ 49] [ 3] [418] +17:56:18 [ 52] [ 16] [05741482214B18F8] +17:56:18 ============================================================================ +17:56:18 + + +waiting on router queue for slot.... +17:56:18 Sending to : +17:56:18 ============================================================================ +17:56:18 Sending to : +17:56:18 ============================================================================ +17:56:18 ============================================================================ +17:56:18 Slot Id : <182> +17:56:18 Transaction Type : REQUEST +17:56:18 Received From : +17:56:18 ============================================================================ +17:56:18 FNo. Len. Field Value +17:56:18 ============================================================================ +17:56:18 [ 1] [ 4] [0200] +17:56:18 [ 2] [ 16] [6688990602743104] +17:56:18 [ 3] [ 6] [011000] +17:56:18 [ 4] [ 12] [000020000000] +17:56:18 [ 7] [ 10] [0320175613] +17:56:18 [ 11] [ 6] [821959] +17:56:18 [ 12] [ 6] [175613] +17:56:18 [ 13] [ 4] [0320] +17:56:18 [ 15] [ 4] [0320] +17:56:18 [ 18] [ 4] [6011] +17:56:18 [ 22] [ 3] [900] +17:56:18 [ 25] [ 2] [02] +17:56:18 [ 28] [ 9] [D00002000] +17:56:18 [ 32] [ 6] [621354] +17:56:18 [ 35] [ 37] [6688990602743104=43100061310431900000] +17:56:18 [ 37] [ 12] [507904653854] +17:56:18 [ 41] [ 8] [17001000] +17:56:18 [ 42] [ 15] [NATIVE ] +17:56:18 [ 43] [ 40] [Sum Market Samneua LAO] +17:56:18 [ 49] [ 3] [418] +17:56:18 [ 52] [ 16] [05741482214B18F8] +17:56:18 ============================================================================ +17:56:18 + + +waiting on router queue for slot.... +17:56:18 Sending to : +17:56:18 ============================================================================ +17:56:18 ============================================================================ +17:56:18 Slot Id : <182> +17:56:18 Transaction Type : REQUEST +17:56:18 Received From : +17:56:18 ============================================================================ +17:56:18 FNo. Len. Field Value +17:56:18 ============================================================================ +17:56:18 [ 1] [ 4] [0200] +17:56:18 [ 2] [ 16] [6688990602743104] +17:56:18 [ 3] [ 6] [011000] +17:56:18 [ 4] [ 12] [000020000000] +17:56:18 [ 7] [ 10] [0320175613] +17:56:18 [ 11] [ 6] [821959] +17:56:18 [ 12] [ 6] [175613] +17:56:18 [ 13] [ 4] [0320] +17:56:18 [ 15] [ 4] [0320] +17:56:18 [ 18] [ 4] [6011] +17:56:18 [ 22] [ 3] [900] +17:56:18 [ 25] [ 2] [02] +17:56:18 [ 28] [ 9] [D00002000] +17:56:18 [ 32] [ 6] [621354] +17:56:18 [ 35] [ 37] [6688990602743104=43100061310431900000] +17:56:18 [ 37] [ 12] [507904653854] +17:56:18 [ 41] [ 8] [17001000] +17:56:18 [ 42] [ 15] [NATIVE ] +17:56:18 [ 43] [ 40] [Sum Market Samneua LAO] +17:56:18 [ 49] [ 3] [418] +17:56:18 [ 52] [ 16] [2AD347A9C453BBDB] +17:56:18 ============================================================================ +17:56:18 + + +waiting on router queue for slot.... +17:56:18 Sending to : <4> +17:56:18 ============================================================================ +17:56:19 ============================================================================ +17:56:19 Slot Id : <182> +17:56:19 Transaction Type : RESPONSE +17:56:19 Received From : +17:56:19 ============================================================================ +17:56:19 FNo. Len. Field Value +17:56:19 ============================================================================ +17:56:19 [ 1] [ 4] [0210] +17:56:19 [ 2] [ 16] [6688990602743104] +17:56:19 [ 3] [ 6] [011000] +17:56:19 [ 4] [ 12] [000020000000] +17:56:19 [ 11] [ 6] [821959] +17:56:19 [ 12] [ 6] [175613] +17:56:19 [ 15] [ 4] [0320] +17:56:19 [ 18] [ 4] [6011] +17:56:19 [ 32] [ 6] [621354] +17:56:19 [ 35] [ 37] [6688990602743104=43100061310431900000] +17:56:19 [ 37] [ 12] [507904653854] +17:56:19 [ 38] [ 6] [650020] +17:56:19 [ 39] [ 2] [00] +17:56:19 [ 41] [ 8] [17001000] +17:56:19 [ 49] [ 3] [418] +17:56:19 [ 54] [ 20] [1002418C000138780032] +17:56:19 ============================================================================ +17:56:19 Sending to : +17:56:19 ============================================================================ +17:56:19 + + +waiting on router queue for slot.... +17:56:21 ============================================================================ +17:56:21 Slot Id : <187> +17:56:21 Transaction Type : REQUEST +17:56:21 Received From : +17:56:21 ============================================================================ +17:56:21 FNo. Len. Field Value +17:56:21 ============================================================================ +17:56:21 [ 1] [ 4] [0800] +17:56:21 [ 2] [ 5] [02531] +17:56:21 [ 3] [ 6] [579178] +17:56:21 [ 7] [ 10] [0320105621] +17:56:21 [ 11] [ 6] [807453] +17:56:21 [ 15] [ 10] [0320105621] +17:56:21 [ 37] [ 11] [57917807453] +17:56:21 [ 70] [ 3] [001] +17:56:21 ============================================================================ +17:56:21 + + +waiting on router queue for slot.... +17:56:21 ============================================================================ +17:56:21 Slot Id : <187> +17:56:21 Transaction Type : RESPONSE +17:56:21 Received From : +17:56:21 ============================================================================ +17:56:21 FNo. Len. Field Value +17:56:21 ============================================================================ +17:56:21 [ 1] [ 4] [0810] +17:56:21 [ 7] [ 10] [0320105621] +17:56:21 [ 11] [ 6] [807453] +17:56:21 [ 15] [ 4] [0320] +17:56:21 [ 37] [ 12] [57917807453] +17:56:21 [ 39] [ 2] [00] +17:56:21 [ 70] [ 3] [001] +17:56:21 ============================================================================ +17:56:21 Sending to : +17:56:21 ============================================================================ +17:56:21 + + +waiting on router queue for slot.... +17:56:21 ============================================================================ +17:56:21 Slot Id : <182> +17:56:21 Transaction Type : RESPONSE +17:56:21 Received From : +17:56:21 ============================================================================ +17:56:21 FNo. Len. Field Value +17:56:21 ============================================================================ +17:56:21 [ 1] [ 4] [0210] +17:56:21 [ 2] [ 16] [6688990602743104] +17:56:21 [ 3] [ 6] [011000] +17:56:21 [ 4] [ 12] [000020000000] +17:56:21 [ 11] [ 6] [821959] +17:56:21 [ 12] [ 6] [175613] +17:56:21 [ 15] [ 4] [0320] +17:56:21 [ 18] [ 4] [6011] +17:56:21 [ 32] [ 6] [621354] +17:56:21 [ 35] [ 37] [6688990602743104=43100061310431900000] +17:56:21 [ 37] [ 12] [507904653854] +17:56:21 [ 38] [ 6] [650020] +17:56:21 [ 39] [ 2] [00] +17:56:21 [ 41] [ 8] [17001000] +17:56:21 [ 49] [ 3] [418] +17:56:21 [ 54] [ 20] [1002418C000138780032] +17:56:21 ============================================================================ +17:56:21 Calculate Source COMM Id = 0 +17:56:21 ============================================================================ +17:56:21 + + +waiting on router queue for slot.... +17:56:21 ============================================================================ +17:56:21 Slot Id : <176> +17:56:21 Transaction Type : REQUEST +17:56:21 Received From : +17:56:21 ============================================================================ +17:56:21 FNo. Len. Field Value +17:56:21 ============================================================================ +17:56:21 [ 1] [ 4] [0800] +17:56:21 [ 7] [ 10] [0320105528] +17:56:21 [ 11] [ 6] [157583] +17:56:21 [ 70] [ 3] [301] +17:56:21 ============================================================================ +17:56:21 + + +waiting on router queue for slot.... +17:56:21 Sending to : +17:56:21 ============================================================================ +17:56:21 ============================================================================ +17:56:21 Slot Id : <176> +17:56:21 Transaction Type : RESPONSE +17:56:21 Received From : +17:56:21 ============================================================================ +17:56:21 FNo. Len. Field Value +17:56:21 ============================================================================ +17:56:21 [ 1] [ 4] [0810] +17:56:21 [ 7] [ 10] [0320105528] +17:56:21 [ 11] [ 6] [157583] +17:56:21 [ 39] [ 2] [00] +17:56:21 [ 70] [ 3] [301] +17:56:21 ============================================================================ +17:56:21 Calculate Source COMM Id = 2 +17:56:21 ============================================================================ +17:56:21 + + +waiting on router queue for slot.... +17:56:22 ============================================================================ +17:56:22 Slot Id : <144> +17:56:22 Transaction Type : REQUEST +17:56:22 Received From : +17:56:22 ============================================================================ +17:56:22 FNo. Len. Field Value +17:56:22 ============================================================================ +17:56:22 [ 1] [ 4] [0800] +17:56:22 [ 7] [ 10] [0320105412] +17:56:22 [ 11] [ 6] [058503] +17:56:22 [ 37] [ 12] [57917058503] +17:56:22 [ 70] [ 3] [301] +17:56:22 ============================================================================ +17:56:22 + + +waiting on router queue for slot.... +17:56:22 Sending to : +17:56:22 ============================================================================ +17:56:22 ============================================================================ +17:56:22 Slot Id : <144> +17:56:22 Transaction Type : RESPONSE +17:56:22 Received From : +17:56:22 ============================================================================ +17:56:22 FNo. Len. Field Value +17:56:22 ============================================================================ +17:56:22 [ 1] [ 4] [0810] +17:56:22 [ 7] [ 10] [0320105412] +17:56:22 [ 11] [ 6] [058503] +17:56:22 [ 37] [ 12] [579170585030] +17:56:22 [ 39] [ 2] [00] +17:56:22 [ 70] [ 3] [810] +17:56:22 ============================================================================ +17:56:22 Calculate Source COMM Id = 4 +17:56:22 ============================================================================ +17:56:22 + + +waiting on router queue for slot.... +17:56:32 ============================================================================ +17:56:32 Slot Id : <160> +17:56:32 Transaction Type : REQUEST +17:56:32 Received From : +17:56:32 ============================================================================ +17:56:32 FNo. Len. Field Value +17:56:32 ============================================================================ +17:56:32 [ 1] [ 4] [0800] +17:56:32 [ 7] [ 10] [0320105539] +17:56:32 [ 11] [ 6] [157584] +17:56:32 [ 70] [ 3] [301] +17:56:32 ============================================================================ +17:56:32 + + +waiting on router queue for slot.... +17:56:32 Sending to : +17:56:32 ============================================================================ +17:56:32 ============================================================================ +17:56:32 Slot Id : <160> +17:56:32 Transaction Type : RESPONSE +17:56:32 Received From : +17:56:32 ============================================================================ +17:56:32 FNo. Len. Field Value +17:56:32 ============================================================================ +17:56:32 [ 1] [ 4] [0810] +17:56:32 [ 7] [ 10] [0320105539] +17:56:32 [ 11] [ 6] [157584] +17:56:32 [ 39] [ 2] [00] +17:56:32 [ 70] [ 3] [301] +17:56:32 ============================================================================ +17:56:32 Calculate Source COMM Id = 2 +17:56:32 ============================================================================ +17:56:32 + + +waiting on router queue for slot.... +17:56:43 ============================================================================ +17:56:43 Slot Id : <163> +17:56:43 Transaction Type : REQUEST +17:56:43 Received From : +17:56:43 ============================================================================ +17:56:43 FNo. Len. Field Value +17:56:43 ============================================================================ +17:56:43 [ 1] [ 4] [0800] +17:56:43 [ 7] [ 10] [0320105550] +17:56:43 [ 11] [ 6] [157585] +17:56:43 [ 70] [ 3] [301] +17:56:43 ============================================================================ +17:56:43 + + +waiting on router queue for slot.... +17:56:43 Sending to : +17:56:43 ============================================================================ +17:56:43 ============================================================================ +17:56:43 Slot Id : <163> +17:56:43 Transaction Type : RESPONSE +17:56:43 Received From : +17:56:43 ============================================================================ +17:56:43 FNo. Len. Field Value +17:56:43 ============================================================================ +17:56:43 [ 1] [ 4] [0810] +17:56:43 [ 7] [ 10] [0320105550] +17:56:43 [ 11] [ 6] [157585] +17:56:43 [ 39] [ 2] [00] +17:56:43 [ 70] [ 3] [301] +17:56:43 ============================================================================ +17:56:43 Calculate Source COMM Id = 2 +17:56:43 ============================================================================ +17:56:43 + + +waiting on router queue for slot.... +17:56:48 ============================================================================ +17:56:48 Slot Id : <204> +17:56:48 Transaction Type : REQUEST +17:56:48 Received From : +17:56:48 ============================================================================ +17:56:48 FNo. Len. Field Value +17:56:48 ============================================================================ +17:56:48 [ 1] [ 4] [0800] +17:56:48 [ 7] [ 10] [0321010836] +17:56:48 [ 11] [ 6] [180836] +17:56:48 [ 37] [ 12] [57918180836] +17:56:48 [ 70] [ 3] [301] +17:56:48 ============================================================================ +17:56:48 + + +waiting on router queue for slot.... +17:56:48 Sending to : +17:56:48 ============================================================================ +17:56:48 ============================================================================ +17:56:48 Slot Id : <204> +17:56:48 Transaction Type : RESPONSE +17:56:48 Received From : +17:56:48 ============================================================================ +17:56:48 FNo. Len. Field Value +17:56:48 ============================================================================ +17:56:48 [ 1] [ 4] [0810] +17:56:48 [ 7] [ 10] [0321010836] +17:56:48 [ 11] [ 6] [180836] +17:56:48 [ 37] [ 12] [579181808360] +17:56:48 [ 39] [ 2] [00] +17:56:48 [ 70] [ 3] [810] +17:56:48 ============================================================================ +17:56:48 Calculate Source COMM Id = 6 +17:56:48 ============================================================================ +17:56:48 + + +waiting on router queue for slot.... +17:56:54 ============================================================================ +17:56:54 Slot Id : <203> +17:56:54 Transaction Type : REQUEST +17:56:54 Received From : +17:56:54 ============================================================================ +17:56:54 FNo. Len. Field Value +17:56:54 ============================================================================ +17:56:54 [ 1] [ 4] [0800] +17:56:54 [ 7] [ 10] [0320105601] +17:56:54 [ 11] [ 6] [157586] +17:56:54 [ 70] [ 3] [301] +17:56:54 ============================================================================ +17:56:54 + + +waiting on router queue for slot.... +17:56:54 Sending to : +17:56:54 ============================================================================ +17:56:54 ============================================================================ +17:56:54 Slot Id : <203> +17:56:54 Transaction Type : RESPONSE +17:56:54 Received From : +17:56:54 ============================================================================ +17:56:54 FNo. Len. Field Value +17:56:54 ============================================================================ +17:56:54 [ 1] [ 4] [0810] +17:56:54 [ 7] [ 10] [0320105601] +17:56:54 [ 11] [ 6] [157586] +17:56:54 [ 39] [ 2] [00] +17:56:54 [ 70] [ 3] [301] +17:56:54 ============================================================================ +17:56:54 Calculate Source COMM Id = 2 +17:56:54 ============================================================================ +17:56:54 + + +waiting on router queue for slot.... +17:56:58 ============================================================================ +17:56:58 Slot Id : <179> +17:56:58 Transaction Type : REQUEST +17:56:58 Received From : +17:56:58 ============================================================================ +17:56:58 FNo. Len. Field Value +17:56:58 ============================================================================ +17:56:58 [ 1] [ 4] [0200] +17:56:58 [ 2] [ 16] [6213541000276967] +17:56:58 [ 3] [ 6] [010000] +17:56:58 [ 4] [ 12] [000150000000] +17:56:58 [ 7] [ 10] [0320105605] +17:56:58 [ 11] [ 6] [271022] +17:56:58 [ 12] [ 6] [175605] +17:56:58 [ 13] [ 4] [0320] +17:56:58 [ 14] [ 4] [4912] +17:56:58 [ 15] [ 4] [0320] +17:56:58 [ 18] [ 4] [6011] +17:56:58 [ 19] [ 3] [418] +17:56:58 [ 22] [ 3] [021] +17:56:58 [ 25] [ 2] [01] +17:56:58 [ 28] [ 9] [D00002000] +17:56:58 [ 32] [ 6] [180893] +17:56:58 [ 35] [ 32] [6213541000276967=491212017696668] +17:56:58 [ 37] [ 12] [507910271022] +17:56:58 [ 41] [ 8] [0528LPBP] +17:56:58 [ 42] [ 15] [999999 ] +17:56:58 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:56:58 [ 49] [ 3] [418] +17:56:58 [ 52] [ 16] [6C820E2894BC2063] +17:56:58 ============================================================================ +17:56:58 + + +waiting on router queue for slot.... +17:56:58 Sending to : +17:56:58 ============================================================================ +17:56:58 Sending to : +17:56:58 ============================================================================ +17:56:59 ============================================================================ +17:56:59 Slot Id : <179> +17:56:59 Transaction Type : REQUEST +17:56:59 Received From : +17:56:59 ============================================================================ +17:56:59 FNo. Len. Field Value +17:56:59 ============================================================================ +17:56:59 [ 1] [ 4] [0200] +17:56:59 [ 2] [ 16] [6213541000276967] +17:56:59 [ 3] [ 6] [010000] +17:56:59 [ 4] [ 12] [000150000000] +17:56:59 [ 7] [ 10] [0320105605] +17:56:59 [ 11] [ 6] [271022] +17:56:59 [ 12] [ 6] [175605] +17:56:59 [ 13] [ 4] [0320] +17:56:59 [ 14] [ 4] [4912] +17:56:59 [ 15] [ 4] [0320] +17:56:59 [ 18] [ 4] [6011] +17:56:59 [ 19] [ 3] [418] +17:56:59 [ 22] [ 3] [021] +17:56:59 [ 25] [ 2] [01] +17:56:59 [ 28] [ 9] [D00002000] +17:56:59 [ 32] [ 6] [180893] +17:56:59 [ 35] [ 32] [6213541000276967=491212017696668] +17:56:59 [ 37] [ 12] [507910271022] +17:56:59 [ 41] [ 8] [0528LPBP] +17:56:59 [ 42] [ 15] [999999 ] +17:56:59 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:56:59 [ 49] [ 3] [418] +17:56:59 [ 52] [ 16] [6C820E2894BC2063] +17:56:59 ============================================================================ +17:56:59 + + +waiting on router queue for slot.... +17:56:59 Sending to : +17:56:59 ============================================================================ +17:56:59 ============================================================================ +17:56:59 Slot Id : <179> +17:56:59 Transaction Type : REQUEST +17:56:59 Received From : +17:56:59 ============================================================================ +17:56:59 FNo. Len. Field Value +17:56:59 ============================================================================ +17:56:59 [ 1] [ 4] [0200] +17:56:59 [ 2] [ 16] [6213541000276967] +17:56:59 [ 3] [ 6] [010000] +17:56:59 [ 4] [ 12] [000150000000] +17:56:59 [ 7] [ 10] [0320105605] +17:56:59 [ 11] [ 6] [271022] +17:56:59 [ 12] [ 6] [175605] +17:56:59 [ 13] [ 4] [0320] +17:56:59 [ 14] [ 4] [4912] +17:56:59 [ 15] [ 4] [0320] +17:56:59 [ 18] [ 4] [6011] +17:56:59 [ 19] [ 3] [418] +17:56:59 [ 22] [ 3] [021] +17:56:59 [ 25] [ 2] [01] +17:56:59 [ 28] [ 9] [D00002000] +17:56:59 [ 32] [ 6] [180893] +17:56:59 [ 35] [ 32] [6213541000276967=491212017696668] +17:56:59 [ 37] [ 12] [507910271022] +17:56:59 [ 41] [ 8] [0528LPBP] +17:56:59 [ 42] [ 15] [999999 ] +17:56:59 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:56:59 [ 49] [ 3] [418] +17:56:59 [ 52] [ 16] [9DAA79A8239D70C0] +17:56:59 ============================================================================ +17:56:59 + + +waiting on router queue for slot.... +17:56:59 Sending to : <0> +17:56:59 ============================================================================ +17:56:59 ============================================================================ +17:56:59 Slot Id : <179> +17:56:59 Transaction Type : RESPONSE +17:56:59 Received From : +17:56:59 ============================================================================ +17:56:59 FNo. Len. Field Value +17:56:59 ============================================================================ +17:56:59 [ 1] [ 4] [0210] +17:56:59 [ 2] [ 16] [6213541000276967] +17:56:59 [ 3] [ 6] [010000] +17:56:59 [ 4] [ 12] [000150000000] +17:56:59 [ 7] [ 10] [0320105605] +17:56:59 [ 11] [ 6] [271022] +17:56:59 [ 12] [ 6] [175605] +17:56:59 [ 13] [ 4] [0320] +17:56:59 [ 15] [ 4] [0320] +17:56:59 [ 18] [ 4] [6011] +17:56:59 [ 19] [ 3] [418] +17:56:59 [ 22] [ 3] [021] +17:56:59 [ 32] [ 6] [180893] +17:56:59 [ 35] [ 32] [6213541000276967=491212017696668] +17:56:59 [ 37] [ 12] [507910271022] +17:56:59 [ 39] [ 2] [61] +17:56:59 [ 41] [ 8] [0528LPBP] +17:56:59 [ 49] [ 3] [418] +17:56:59 ============================================================================ +17:56:59 Sending to : +17:56:59 ============================================================================ +17:56:59 + + +waiting on router queue for slot.... +17:57:00 ============================================================================ +17:57:00 Slot Id : <179> +17:57:00 Transaction Type : RESPONSE +17:57:00 Received From : +17:57:00 ============================================================================ +17:57:00 FNo. Len. Field Value +17:57:00 ============================================================================ +17:57:00 [ 1] [ 4] [0210] +17:57:00 [ 2] [ 16] [6213541000276967] +17:57:00 [ 3] [ 6] [010000] +17:57:00 [ 4] [ 12] [000150000000] +17:57:00 [ 7] [ 10] [0320105605] +17:57:00 [ 11] [ 6] [271022] +17:57:00 [ 12] [ 6] [175605] +17:57:00 [ 13] [ 4] [0320] +17:57:00 [ 15] [ 4] [0320] +17:57:00 [ 18] [ 4] [6011] +17:57:00 [ 19] [ 3] [418] +17:57:00 [ 22] [ 3] [021] +17:57:00 [ 32] [ 6] [180893] +17:57:00 [ 35] [ 32] [6213541000276967=491212017696668] +17:57:00 [ 37] [ 12] [507910271022] +17:57:00 [ 39] [ 2] [61] +17:57:00 [ 41] [ 8] [0528LPBP] +17:57:00 [ 49] [ 3] [418] +17:57:00 ============================================================================ +17:57:00 Calculate Source COMM Id = 2 +17:57:00 ============================================================================ +17:57:00 + + +waiting on router queue for slot.... +17:57:15 ============================================================================ +17:57:15 Slot Id : <156> +17:57:15 Transaction Type : REQUEST +17:57:15 Received From : +17:57:15 ============================================================================ +17:57:15 FNo. Len. Field Value +17:57:15 ============================================================================ +17:57:15 [ 1] [ 4] [0200] +17:57:15 [ 2] [ 16] [1808930900043498] +17:57:15 [ 3] [ 6] [011000] +17:57:15 [ 4] [ 12] [000100000000] +17:57:15 [ 7] [ 10] [0320175710] +17:57:15 [ 11] [ 6] [822144] +17:57:15 [ 12] [ 6] [175710] +17:57:15 [ 13] [ 4] [0320] +17:57:15 [ 15] [ 4] [0320] +17:57:15 [ 18] [ 4] [6011] +17:57:15 [ 22] [ 3] [900] +17:57:15 [ 25] [ 2] [02] +17:57:15 [ 28] [ 9] [D00002000] +17:57:15 [ 32] [ 6] [621354] +17:57:15 [ 35] [ 27] [1808930900043498=1803500845] +17:57:15 [ 37] [ 12] [507902585608] +17:57:15 [ 41] [ 8] [05004100] +17:57:15 [ 42] [ 15] [NATIVE ] +17:57:15 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +17:57:15 [ 49] [ 3] [418] +17:57:15 [ 52] [ 16] [C057DEC7E6DCA8AD] +17:57:15 ============================================================================ +17:57:15 + + +waiting on router queue for slot.... +17:57:15 Sending to : +17:57:15 ============================================================================ +17:57:15 Sending to : +17:57:15 ============================================================================ +17:57:16 ============================================================================ +17:57:16 Slot Id : <156> +17:57:16 Transaction Type : REQUEST +17:57:16 Received From : +17:57:16 ============================================================================ +17:57:16 FNo. Len. Field Value +17:57:16 ============================================================================ +17:57:16 [ 1] [ 4] [0200] +17:57:16 [ 2] [ 16] [1808930900043498] +17:57:16 [ 3] [ 6] [011000] +17:57:16 [ 4] [ 12] [000100000000] +17:57:16 [ 7] [ 10] [0320175710] +17:57:16 [ 11] [ 6] [822144] +17:57:16 [ 12] [ 6] [175710] +17:57:16 [ 13] [ 4] [0320] +17:57:16 [ 15] [ 4] [0320] +17:57:16 [ 18] [ 4] [6011] +17:57:16 [ 22] [ 3] [900] +17:57:16 [ 25] [ 2] [02] +17:57:16 [ 28] [ 9] [D00002000] +17:57:16 [ 32] [ 6] [621354] +17:57:16 [ 35] [ 27] [1808930900043498=1803500845] +17:57:16 [ 37] [ 12] [507902585608] +17:57:16 [ 41] [ 8] [05004100] +17:57:16 [ 42] [ 15] [NATIVE ] +17:57:16 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +17:57:16 [ 49] [ 3] [418] +17:57:16 [ 52] [ 16] [C057DEC7E6DCA8AD] +17:57:16 ============================================================================ +17:57:16 + + +waiting on router queue for slot.... +17:57:16 Sending to : +17:57:16 ============================================================================ +17:57:16 ============================================================================ +17:57:16 Slot Id : <156> +17:57:16 Transaction Type : REQUEST +17:57:16 Received From : +17:57:16 ============================================================================ +17:57:16 FNo. Len. Field Value +17:57:16 ============================================================================ +17:57:16 [ 1] [ 4] [0200] +17:57:16 [ 2] [ 16] [1808930900043498] +17:57:16 [ 3] [ 6] [011000] +17:57:16 [ 4] [ 12] [000100000000] +17:57:16 [ 7] [ 10] [0320175710] +17:57:16 [ 11] [ 6] [822144] +17:57:16 [ 12] [ 6] [175710] +17:57:16 [ 13] [ 4] [0320] +17:57:16 [ 15] [ 4] [0320] +17:57:16 [ 18] [ 4] [6011] +17:57:16 [ 22] [ 3] [900] +17:57:16 [ 25] [ 2] [02] +17:57:16 [ 28] [ 9] [D00002000] +17:57:16 [ 32] [ 6] [621354] +17:57:16 [ 35] [ 27] [1808930900043498=1803500845] +17:57:16 [ 37] [ 12] [507902585608] +17:57:16 [ 41] [ 8] [05004100] +17:57:16 [ 42] [ 15] [NATIVE ] +17:57:16 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +17:57:16 [ 49] [ 3] [418] +17:57:16 [ 52] [ 16] [074CAF0A2A25CFB5] +17:57:16 ============================================================================ +17:57:16 + + +waiting on router queue for slot.... +17:57:16 Sending to : <2> +17:57:16 ============================================================================ +17:57:16 ============================================================================ +17:57:16 Slot Id : <191> +17:57:16 Transaction Type : REQUEST +17:57:16 Received From : +17:57:16 ============================================================================ +17:57:16 FNo. Len. Field Value +17:57:16 ============================================================================ +17:57:16 [ 1] [ 4] [0800] +17:57:16 [ 7] [ 10] [0320105623] +17:57:16 [ 11] [ 6] [157587] +17:57:16 [ 70] [ 3] [301] +17:57:16 ============================================================================ +17:57:16 + + +waiting on router queue for slot.... +17:57:16 Sending to : +17:57:16 ============================================================================ +17:57:16 ============================================================================ +17:57:16 Slot Id : <191> +17:57:16 Transaction Type : RESPONSE +17:57:16 Received From : +17:57:16 ============================================================================ +17:57:16 FNo. Len. Field Value +17:57:16 ============================================================================ +17:57:16 [ 1] [ 4] [0810] +17:57:16 [ 7] [ 10] [0320105623] +17:57:16 [ 11] [ 6] [157587] +17:57:16 [ 39] [ 2] [00] +17:57:16 [ 70] [ 3] [301] +17:57:16 ============================================================================ +17:57:16 Calculate Source COMM Id = 2 +17:57:16 ============================================================================ +17:57:16 + + +waiting on router queue for slot.... +17:57:19 ============================================================================ +17:57:19 Slot Id : <192> +17:57:19 Transaction Type : REQUEST +17:57:19 Received From : +17:57:19 ============================================================================ +17:57:19 FNo. Len. Field Value +17:57:19 ============================================================================ +17:57:19 [ 1] [ 4] [0200] +17:57:19 [ 2] [ 16] [6688990601484809] +17:57:19 [ 3] [ 6] [010000] +17:57:19 [ 4] [ 12] [000050000000] +17:57:19 [ 7] [ 10] [0320175714] +17:57:19 [ 11] [ 6] [822157] +17:57:19 [ 12] [ 6] [175714] +17:57:19 [ 13] [ 4] [0320] +17:57:19 [ 15] [ 4] [0320] +17:57:19 [ 18] [ 4] [6011] +17:57:19 [ 22] [ 3] [900] +17:57:19 [ 25] [ 2] [02] +17:57:19 [ 28] [ 9] [D00002000] +17:57:19 [ 32] [ 6] [621354] +17:57:19 [ 35] [ 37] [6688990601484809=41090061480967900000] +17:57:19 [ 37] [ 12] [507904154147] +17:57:19 [ 41] [ 8] [20001000] +17:57:19 [ 42] [ 15] [NATIVE ] +17:57:19 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:57:19 [ 49] [ 3] [418] +17:57:19 [ 52] [ 16] [846C03B36765866F] +17:57:19 ============================================================================ +17:57:19 + + +waiting on router queue for slot.... +17:57:19 Sending to : +17:57:19 ============================================================================ +17:57:19 Sending to : +17:57:19 ============================================================================ +17:57:19 ============================================================================ +17:57:19 Slot Id : <192> +17:57:19 Transaction Type : REQUEST +17:57:19 Received From : +17:57:19 ============================================================================ +17:57:19 FNo. Len. Field Value +17:57:19 ============================================================================ +17:57:19 [ 1] [ 4] [0200] +17:57:19 [ 2] [ 16] [6688990601484809] +17:57:19 [ 3] [ 6] [010000] +17:57:19 [ 4] [ 12] [000050000000] +17:57:19 [ 7] [ 10] [0320175714] +17:57:19 [ 11] [ 6] [822157] +17:57:19 [ 12] [ 6] [175714] +17:57:19 [ 13] [ 4] [0320] +17:57:19 [ 15] [ 4] [0320] +17:57:19 [ 18] [ 4] [6011] +17:57:19 [ 22] [ 3] [900] +17:57:19 [ 25] [ 2] [02] +17:57:19 [ 28] [ 9] [D00002000] +17:57:19 [ 32] [ 6] [621354] +17:57:19 [ 35] [ 37] [6688990601484809=41090061480967900000] +17:57:19 [ 37] [ 12] [507904154147] +17:57:19 [ 41] [ 8] [20001000] +17:57:19 [ 42] [ 15] [NATIVE ] +17:57:19 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:57:19 [ 49] [ 3] [418] +17:57:19 [ 52] [ 16] [846C03B36765866F] +17:57:19 ============================================================================ +17:57:19 + + +waiting on router queue for slot.... +17:57:19 Sending to : +17:57:19 ============================================================================ +17:57:19 ============================================================================ +17:57:19 Slot Id : <192> +17:57:19 Transaction Type : REQUEST +17:57:19 Received From : +17:57:19 ============================================================================ +17:57:19 FNo. Len. Field Value +17:57:19 ============================================================================ +17:57:19 [ 1] [ 4] [0200] +17:57:19 [ 2] [ 16] [6688990601484809] +17:57:19 [ 3] [ 6] [010000] +17:57:19 [ 4] [ 12] [000050000000] +17:57:19 [ 7] [ 10] [0320175714] +17:57:19 [ 11] [ 6] [822157] +17:57:19 [ 12] [ 6] [175714] +17:57:19 [ 13] [ 4] [0320] +17:57:19 [ 15] [ 4] [0320] +17:57:19 [ 18] [ 4] [6011] +17:57:19 [ 22] [ 3] [900] +17:57:19 [ 25] [ 2] [02] +17:57:19 [ 28] [ 9] [D00002000] +17:57:19 [ 32] [ 6] [621354] +17:57:19 [ 35] [ 37] [6688990601484809=41090061480967900000] +17:57:19 [ 37] [ 12] [507904154147] +17:57:19 [ 41] [ 8] [20001000] +17:57:19 [ 42] [ 15] [NATIVE ] +17:57:19 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +17:57:19 [ 49] [ 3] [418] +17:57:19 [ 52] [ 16] [606D22CAA67AA68A] +17:57:19 ============================================================================ +17:57:19 + + +waiting on router queue for slot.... +17:57:19 Sending to : <4> +17:57:19 ============================================================================ +17:57:19 ============================================================================ +17:57:19 Slot Id : <192> +17:57:19 Transaction Type : RESPONSE +17:57:19 Received From : +17:57:19 ============================================================================ +17:57:19 FNo. Len. Field Value +17:57:19 ============================================================================ +17:57:19 [ 1] [ 4] [0210] +17:57:19 [ 2] [ 16] [6688990601484809] +17:57:19 [ 3] [ 6] [010000] +17:57:19 [ 4] [ 12] [000050000000] +17:57:19 [ 11] [ 6] [822157] +17:57:19 [ 12] [ 6] [175714] +17:57:19 [ 15] [ 4] [0320] +17:57:19 [ 18] [ 4] [6011] +17:57:19 [ 32] [ 6] [621354] +17:57:19 [ 35] [ 37] [6688990601484809=41090061480967900000] +17:57:19 [ 37] [ 12] [507904154147] +17:57:19 [ 39] [ 2] [05] +17:57:19 [ 41] [ 8] [20001000] +17:57:19 [ 49] [ 3] [418] +17:57:19 [ 54] [ 0] [] +17:57:19 ============================================================================ +17:57:19 Sending to : +17:57:19 ============================================================================ +17:57:19 + + +waiting on router queue for slot.... +17:57:20 ============================================================================ +17:57:20 Slot Id : <156> +17:57:20 Transaction Type : RESPONSE +17:57:20 Received From : +17:57:20 ============================================================================ +17:57:20 FNo. Len. Field Value +17:57:20 ============================================================================ +17:57:20 [ 1] [ 4] [0210] +17:57:20 [ 2] [ 16] [1808930900043498] +17:57:20 [ 3] [ 6] [011000] +17:57:20 [ 4] [ 12] [000100000000] +17:57:20 [ 6] [ 12] [000100000000] +17:57:20 [ 7] [ 10] [0320175710] +17:57:20 [ 11] [ 6] [822144] +17:57:20 [ 12] [ 6] [175710] +17:57:20 [ 13] [ 4] [0320] +17:57:20 [ 18] [ 4] [6011] +17:57:20 [ 19] [ 3] [418] +17:57:20 [ 22] [ 3] [021] +17:57:20 [ 32] [ 6] [621354] +17:57:20 [ 35] [ 27] [1808930900043498=1803500845] +17:57:20 [ 37] [ 12] [507902585608] +17:57:20 [ 38] [ 6] [822144] +17:57:20 [ 39] [ 2] [00] +17:57:20 [ 41] [ 8] [05004100] +17:57:20 [ 49] [ 3] [418] +17:57:20 [ 52] [ 16] [074CAF0A2A25CFB5] +17:57:20 [ 54] [ 20] [1001418C002363958400] +17:57:20 ============================================================================ +17:57:20 Sending to : +17:57:20 ============================================================================ +17:57:20 + + +waiting on router queue for slot.... +17:57:20 ============================================================================ +17:57:20 Slot Id : <192> +17:57:20 Transaction Type : RESPONSE +17:57:20 Received From : +17:57:20 ============================================================================ +17:57:20 FNo. Len. Field Value +17:57:20 ============================================================================ +17:57:20 [ 1] [ 4] [0210] +17:57:20 [ 2] [ 16] [6688990601484809] +17:57:20 [ 3] [ 6] [010000] +17:57:20 [ 4] [ 12] [000050000000] +17:57:20 [ 11] [ 6] [822157] +17:57:20 [ 12] [ 6] [175714] +17:57:20 [ 15] [ 4] [0320] +17:57:20 [ 18] [ 4] [6011] +17:57:20 [ 32] [ 6] [621354] +17:57:20 [ 35] [ 37] [6688990601484809=41090061480967900000] +17:57:20 [ 37] [ 12] [507904154147] +17:57:20 [ 39] [ 2] [05] +17:57:20 [ 41] [ 8] [20001000] +17:57:20 [ 49] [ 3] [418] +17:57:20 [ 54] [ 0] [] +17:57:20 ============================================================================ +17:57:20 Calculate Source COMM Id = 0 +17:57:20 ============================================================================ +17:57:20 + + +waiting on router queue for slot.... +17:57:22 ============================================================================ +17:57:22 Slot Id : <190> +17:57:22 Transaction Type : REQUEST +17:57:22 Received From : +17:57:22 ============================================================================ +17:57:22 FNo. Len. Field Value +17:57:22 ============================================================================ +17:57:22 [ 1] [ 4] [0200] +17:57:22 [ 2] [ 16] [6213545000542310] +17:57:22 [ 3] [ 6] [301000] +17:57:22 [ 7] [ 10] [0320105627] +17:57:22 [ 11] [ 6] [271026] +17:57:22 [ 12] [ 6] [175627] +17:57:22 [ 13] [ 4] [0320] +17:57:22 [ 14] [ 4] [4912] +17:57:22 [ 15] [ 4] [0320] +17:57:22 [ 18] [ 4] [6011] +17:57:22 [ 19] [ 3] [418] +17:57:22 [ 22] [ 3] [021] +17:57:22 [ 25] [ 2] [01] +17:57:22 [ 32] [ 6] [180893] +17:57:22 [ 35] [ 32] [6213545000542310=491212014231564] +17:57:22 [ 37] [ 12] [507910271026] +17:57:22 [ 41] [ 8] [0381CPSP] +17:57:22 [ 42] [ 15] [999999 ] +17:57:22 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +17:57:22 [ 49] [ 3] [418] +17:57:22 [ 52] [ 16] [CC3C5C819C7A7DB9] +17:57:22 ============================================================================ +17:57:22 + + +waiting on router queue for slot.... +17:57:22 Sending to : +17:57:22 ============================================================================ +17:57:22 Sending to : +17:57:22 ============================================================================ +17:57:22 ============================================================================ +17:57:22 Slot Id : <156> +17:57:22 Transaction Type : RESPONSE +17:57:22 Received From : +17:57:22 ============================================================================ +17:57:22 FNo. Len. Field Value +17:57:22 ============================================================================ +17:57:22 [ 1] [ 4] [0210] +17:57:22 [ 2] [ 16] [1808930900043498] +17:57:22 [ 3] [ 6] [011000] +17:57:22 [ 4] [ 12] [000100000000] +17:57:22 [ 6] [ 12] [000100000000] +17:57:22 [ 7] [ 10] [0320175710] +17:57:22 [ 11] [ 6] [822144] +17:57:22 [ 12] [ 6] [175710] +17:57:22 [ 13] [ 4] [0320] +17:57:22 [ 18] [ 4] [6011] +17:57:22 [ 19] [ 3] [418] +17:57:22 [ 22] [ 3] [021] +17:57:22 [ 32] [ 6] [621354] +17:57:22 [ 35] [ 27] [1808930900043498=1803500845] +17:57:22 [ 37] [ 12] [507902585608] +17:57:22 [ 38] [ 6] [822144] +17:57:22 [ 39] [ 2] [00] +17:57:22 [ 41] [ 8] [05004100] +17:57:22 [ 49] [ 3] [418] +17:57:22 [ 52] [ 16] [074CAF0A2A25CFB5] +17:57:22 [ 54] [ 20] [1001418C002363958400] +17:57:22 ============================================================================ +17:57:22 Calculate Source COMM Id = 0 +17:57:22 ============================================================================ +17:57:22 + + +waiting on router queue for slot.... +17:57:22 ============================================================================ +17:57:22 Slot Id : <190> +17:57:22 Transaction Type : REQUEST +17:57:22 Received From : +17:57:22 ============================================================================ +17:57:22 FNo. Len. Field Value +17:57:22 ============================================================================ +17:57:22 [ 1] [ 4] [0200] +17:57:22 [ 2] [ 16] [6213545000542310] +17:57:22 [ 3] [ 6] [301000] +17:57:22 [ 7] [ 10] [0320105627] +17:57:22 [ 11] [ 6] [271026] +17:57:22 [ 12] [ 6] [175627] +17:57:22 [ 13] [ 4] [0320] +17:57:22 [ 14] [ 4] [4912] +17:57:22 [ 15] [ 4] [0320] +17:57:22 [ 18] [ 4] [6011] +17:57:22 [ 19] [ 3] [418] +17:57:22 [ 22] [ 3] [021] +17:57:22 [ 25] [ 2] [01] +17:57:22 [ 32] [ 6] [180893] +17:57:22 [ 35] [ 32] [6213545000542310=491212014231564] +17:57:22 [ 37] [ 12] [507910271026] +17:57:22 [ 41] [ 8] [0381CPSP] +17:57:22 [ 42] [ 15] [999999 ] +17:57:22 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +17:57:22 [ 49] [ 3] [418] +17:57:22 [ 52] [ 16] [CC3C5C819C7A7DB9] +17:57:22 ============================================================================ +17:57:22 + + +waiting on router queue for slot.... +17:57:22 Sending to : +17:57:22 ============================================================================ +17:57:22 ============================================================================ +17:57:22 Slot Id : <190> +17:57:22 Transaction Type : REQUEST +17:57:22 Received From : +17:57:22 ============================================================================ +17:57:22 FNo. Len. Field Value +17:57:22 ============================================================================ +17:57:22 [ 1] [ 4] [0200] +17:57:22 [ 2] [ 16] [6213545000542310] +17:57:22 [ 3] [ 6] [301000] +17:57:22 [ 7] [ 10] [0320105627] +17:57:22 [ 11] [ 6] [271026] +17:57:22 [ 12] [ 6] [175627] +17:57:22 [ 13] [ 4] [0320] +17:57:22 [ 14] [ 4] [4912] +17:57:22 [ 15] [ 4] [0320] +17:57:22 [ 18] [ 4] [6011] +17:57:22 [ 19] [ 3] [418] +17:57:22 [ 22] [ 3] [021] +17:57:22 [ 25] [ 2] [01] +17:57:22 [ 32] [ 6] [180893] +17:57:22 [ 35] [ 32] [6213545000542310=491212014231564] +17:57:22 [ 37] [ 12] [507910271026] +17:57:22 [ 41] [ 8] [0381CPSP] +17:57:22 [ 42] [ 15] [999999 ] +17:57:22 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +17:57:22 [ 49] [ 3] [418] +17:57:22 [ 52] [ 16] [B0447C52F30B4C5F] +17:57:22 ============================================================================ +17:57:22 + + +waiting on router queue for slot.... +17:57:22 Sending to : <0> +17:57:22 ============================================================================ +17:57:23 ============================================================================ +17:57:23 Slot Id : <190> +17:57:23 Transaction Type : RESPONSE +17:57:23 Received From : +17:57:23 ============================================================================ +17:57:23 FNo. Len. Field Value +17:57:23 ============================================================================ +17:57:23 [ 1] [ 4] [0210] +17:57:23 [ 2] [ 16] [6213545000542310] +17:57:23 [ 3] [ 6] [301000] +17:57:23 [ 4] [ 12] [000000000000] +17:57:23 [ 7] [ 10] [0320105627] +17:57:23 [ 11] [ 6] [271026] +17:57:23 [ 12] [ 6] [175627] +17:57:23 [ 13] [ 4] [0320] +17:57:23 [ 15] [ 4] [0320] +17:57:23 [ 18] [ 4] [6011] +17:57:23 [ 19] [ 3] [418] +17:57:23 [ 22] [ 3] [021] +17:57:23 [ 32] [ 6] [180893] +17:57:23 [ 35] [ 32] [6213545000542310=491212014231564] +17:57:23 [ 37] [ 12] [507910271026] +17:57:23 [ 38] [ 6] [175717] +17:57:23 [ 39] [ 2] [75] +17:57:23 [ 41] [ 8] [0381CPSP] +17:57:23 [ 49] [ 3] [418] +17:57:23 ============================================================================ +17:57:23 Sending to : +17:57:23 ============================================================================ +17:57:23 + + +waiting on router queue for slot.... +17:57:23 ============================================================================ +17:57:23 Slot Id : <135> +17:57:23 Transaction Type : REQUEST +17:57:23 Received From : +17:57:23 ============================================================================ +17:57:23 FNo. Len. Field Value +17:57:23 ============================================================================ +17:57:23 [ 1] [ 4] [0800] +17:57:23 [ 2] [ 5] [02531] +17:57:23 [ 3] [ 6] [579178] +17:57:23 [ 7] [ 10] [0320105723] +17:57:23 [ 11] [ 6] [807454] +17:57:23 [ 15] [ 10] [0320105723] +17:57:23 [ 37] [ 11] [57917807454] +17:57:23 [ 70] [ 3] [001] +17:57:23 ============================================================================ +17:57:23 + + +waiting on router queue for slot.... +17:57:23 ============================================================================ +17:57:23 Slot Id : <135> +17:57:23 Transaction Type : RESPONSE +17:57:23 Received From : +17:57:23 ============================================================================ +17:57:23 FNo. Len. Field Value +17:57:23 ============================================================================ +17:57:23 [ 1] [ 4] [0810] +17:57:23 [ 7] [ 10] [0320105723] +17:57:23 [ 11] [ 6] [807454] +17:57:23 [ 15] [ 4] [0320] +17:57:23 [ 37] [ 12] [57917807454] +17:57:23 [ 39] [ 2] [00] +17:57:23 [ 70] [ 3] [001] +17:57:23 ============================================================================ +17:57:23 Sending to : +17:57:23 ============================================================================ +17:57:23 + + +waiting on router queue for slot.... +17:57:25 ============================================================================ +17:57:25 Slot Id : <190> +17:57:25 Transaction Type : RESPONSE +17:57:25 Received From : +17:57:25 ============================================================================ +17:57:25 FNo. Len. Field Value +17:57:25 ============================================================================ +17:57:25 [ 1] [ 4] [0210] +17:57:25 [ 2] [ 16] [6213545000542310] +17:57:25 [ 3] [ 6] [301000] +17:57:25 [ 4] [ 12] [000000000000] +17:57:25 [ 7] [ 10] [0320105627] +17:57:25 [ 11] [ 6] [271026] +17:57:25 [ 12] [ 6] [175627] +17:57:25 [ 13] [ 4] [0320] +17:57:25 [ 15] [ 4] [0320] +17:57:25 [ 18] [ 4] [6011] +17:57:25 [ 19] [ 3] [418] +17:57:25 [ 22] [ 3] [021] +17:57:25 [ 32] [ 6] [180893] +17:57:25 [ 35] [ 32] [6213545000542310=491212014231564] +17:57:25 [ 37] [ 12] [507910271026] +17:57:25 [ 38] [ 6] [175717] +17:57:25 [ 39] [ 2] [75] +17:57:25 [ 41] [ 8] [0381CPSP] +17:57:25 [ 49] [ 3] [418] +17:57:25 ============================================================================ +17:57:25 Calculate Source COMM Id = 2 +17:57:25 ============================================================================ +17:57:25 + + +waiting on router queue for slot.... +17:57:36 ============================================================================ +17:57:36 Slot Id : <152> +17:57:36 Transaction Type : REQUEST +17:57:36 Received From : +17:57:36 ============================================================================ +17:57:36 FNo. Len. Field Value +17:57:36 ============================================================================ +17:57:36 [ 1] [ 4] [0800] +17:57:36 [ 7] [ 10] [0320105643] +17:57:36 [ 11] [ 6] [157588] +17:57:36 [ 70] [ 3] [301] +17:57:36 ============================================================================ +17:57:36 + + +waiting on router queue for slot.... +17:57:36 Sending to : +17:57:36 ============================================================================ +17:57:36 ============================================================================ +17:57:36 Slot Id : <152> +17:57:36 Transaction Type : RESPONSE +17:57:36 Received From : +17:57:36 ============================================================================ +17:57:36 FNo. Len. Field Value +17:57:36 ============================================================================ +17:57:36 [ 1] [ 4] [0810] +17:57:36 [ 7] [ 10] [0320105643] +17:57:36 [ 11] [ 6] [157588] +17:57:36 [ 39] [ 2] [00] +17:57:36 [ 70] [ 3] [301] +17:57:36 ============================================================================ +17:57:36 Calculate Source COMM Id = 2 +17:57:36 ============================================================================ +17:57:36 + + +waiting on router queue for slot.... +17:57:47 ============================================================================ +17:57:47 Slot Id : <198> +17:57:47 Transaction Type : REQUEST +17:57:47 Received From : +17:57:47 ============================================================================ +17:57:47 FNo. Len. Field Value +17:57:47 ============================================================================ +17:57:47 [ 1] [ 4] [0800] +17:57:47 [ 7] [ 10] [0320105654] +17:57:47 [ 11] [ 6] [157589] +17:57:47 [ 70] [ 3] [301] +17:57:47 ============================================================================ +17:57:47 + + +waiting on router queue for slot.... +17:57:47 Sending to : +17:57:47 ============================================================================ +17:57:47 ============================================================================ +17:57:47 Slot Id : <198> +17:57:47 Transaction Type : RESPONSE +17:57:47 Received From : +17:57:47 ============================================================================ +17:57:47 FNo. Len. Field Value +17:57:47 ============================================================================ +17:57:47 [ 1] [ 4] [0810] +17:57:47 [ 7] [ 10] [0320105654] +17:57:47 [ 11] [ 6] [157589] +17:57:47 [ 39] [ 2] [00] +17:57:47 [ 70] [ 3] [301] +17:57:47 ============================================================================ +17:57:47 Calculate Source COMM Id = 2 +17:57:47 ============================================================================ +17:57:47 + + +waiting on router queue for slot.... +17:57:53 ============================================================================ +17:57:53 Slot Id : <196> +17:57:53 Transaction Type : REQUEST +17:57:53 Received From : +17:57:53 ============================================================================ +17:57:53 FNo. Len. Field Value +17:57:53 ============================================================================ +17:57:53 [ 1] [ 4] [0800] +17:57:53 [ 7] [ 10] [0321010941] +17:57:53 [ 11] [ 6] [180941] +17:57:53 [ 37] [ 12] [57918180941] +17:57:53 [ 70] [ 3] [301] +17:57:53 ============================================================================ +17:57:53 + + +waiting on router queue for slot.... +17:57:53 Sending to : +17:57:53 ============================================================================ +17:57:53 ============================================================================ +17:57:53 Slot Id : <196> +17:57:53 Transaction Type : RESPONSE +17:57:53 Received From : +17:57:53 ============================================================================ +17:57:53 FNo. Len. Field Value +17:57:53 ============================================================================ +17:57:53 [ 1] [ 4] [0810] +17:57:53 [ 7] [ 10] [0321010941] +17:57:53 [ 11] [ 6] [180941] +17:57:53 [ 37] [ 12] [579181809410] +17:57:53 [ 39] [ 2] [00] +17:57:53 [ 70] [ 3] [810] +17:57:53 ============================================================================ +17:57:53 Calculate Source COMM Id = 6 +17:57:53 ============================================================================ +17:57:53 + + +waiting on router queue for slot.... +17:58:03 ============================================================================ +17:58:03 Slot Id : <155> +17:58:03 Transaction Type : REQUEST +17:58:03 Received From : +17:58:03 ============================================================================ +17:58:03 FNo. Len. Field Value +17:58:03 ============================================================================ +17:58:03 [ 1] [ 4] [0800] +17:58:03 [ 7] [ 10] [0320105710] +17:58:03 [ 11] [ 6] [157590] +17:58:03 [ 70] [ 3] [301] +17:58:03 ============================================================================ +17:58:03 + + +waiting on router queue for slot.... +17:58:03 Sending to : +17:58:03 ============================================================================ +17:58:03 ============================================================================ +17:58:03 Slot Id : <155> +17:58:03 Transaction Type : RESPONSE +17:58:03 Received From : +17:58:03 ============================================================================ +17:58:03 FNo. Len. Field Value +17:58:03 ============================================================================ +17:58:03 [ 1] [ 4] [0810] +17:58:03 [ 7] [ 10] [0320105710] +17:58:03 [ 11] [ 6] [157590] +17:58:03 [ 39] [ 2] [00] +17:58:03 [ 70] [ 3] [301] +17:58:03 ============================================================================ +17:58:03 Calculate Source COMM Id = 2 +17:58:03 ============================================================================ +17:58:03 + + +waiting on router queue for slot.... +17:58:03 ============================================================================ +17:58:03 Slot Id : <181> +17:58:03 Transaction Type : REQUEST +17:58:03 Received From : +17:58:03 ============================================================================ +17:58:03 FNo. Len. Field Value +17:58:03 ============================================================================ +17:58:03 [ 1] [ 4] [0200] +17:58:03 [ 2] [ 16] [6688990103558209] +17:58:03 [ 3] [ 6] [302000] +17:58:03 [ 4] [ 12] [000000000000] +17:58:03 [ 7] [ 10] [0320175758] +17:58:03 [ 11] [ 6] [822303] +17:58:03 [ 12] [ 6] [175758] +17:58:03 [ 13] [ 4] [0320] +17:58:03 [ 15] [ 4] [0320] +17:58:03 [ 18] [ 4] [6011] +17:58:03 [ 22] [ 3] [900] +17:58:03 [ 25] [ 2] [02] +17:58:03 [ 28] [ 9] [D00002000] +17:58:03 [ 32] [ 6] [621354] +17:58:03 [ 35] [ 37] [6688990103558209=43011231820982200000] +17:58:03 [ 37] [ 12] [507903177701] +17:58:03 [ 41] [ 8] [04002700] +17:58:03 [ 42] [ 15] [NATIVE ] +17:58:03 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +17:58:03 [ 49] [ 3] [418] +17:58:03 [ 52] [ 16] [346752B884068177] +17:58:03 ============================================================================ +17:58:03 + + +waiting on router queue for slot.... +17:58:03 Sending to : +17:58:03 ============================================================================ +17:58:03 Sending to : +17:58:03 ============================================================================ +17:58:03 ============================================================================ +17:58:03 Slot Id : <181> +17:58:03 Transaction Type : REQUEST +17:58:03 Received From : +17:58:03 ============================================================================ +17:58:03 FNo. Len. Field Value +17:58:03 ============================================================================ +17:58:03 [ 1] [ 4] [0200] +17:58:03 [ 2] [ 16] [6688990103558209] +17:58:03 [ 3] [ 6] [302000] +17:58:03 [ 4] [ 12] [000000000000] +17:58:03 [ 7] [ 10] [0320175758] +17:58:03 [ 11] [ 6] [822303] +17:58:03 [ 12] [ 6] [175758] +17:58:03 [ 13] [ 4] [0320] +17:58:03 [ 15] [ 4] [0320] +17:58:03 [ 18] [ 4] [6011] +17:58:03 [ 22] [ 3] [900] +17:58:03 [ 25] [ 2] [02] +17:58:03 [ 28] [ 9] [D00002000] +17:58:03 [ 32] [ 6] [621354] +17:58:03 [ 35] [ 37] [6688990103558209=43011231820982200000] +17:58:03 [ 37] [ 12] [507903177701] +17:58:03 [ 41] [ 8] [04002700] +17:58:03 [ 42] [ 15] [NATIVE ] +17:58:03 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +17:58:03 [ 49] [ 3] [418] +17:58:03 [ 52] [ 16] [346752B884068177] +17:58:03 ============================================================================ +17:58:03 + + +waiting on router queue for slot.... +17:58:03 Sending to : +17:58:03 ============================================================================ +17:58:03 ============================================================================ +17:58:03 Slot Id : <181> +17:58:03 Transaction Type : REQUEST +17:58:03 Received From : +17:58:03 ============================================================================ +17:58:03 FNo. Len. Field Value +17:58:03 ============================================================================ +17:58:03 [ 1] [ 4] [0200] +17:58:03 [ 2] [ 16] [6688990103558209] +17:58:03 [ 3] [ 6] [302000] +17:58:03 [ 4] [ 12] [000000000000] +17:58:03 [ 7] [ 10] [0320175758] +17:58:03 [ 11] [ 6] [822303] +17:58:03 [ 12] [ 6] [175758] +17:58:03 [ 13] [ 4] [0320] +17:58:03 [ 15] [ 4] [0320] +17:58:03 [ 18] [ 4] [6011] +17:58:03 [ 22] [ 3] [900] +17:58:03 [ 25] [ 2] [02] +17:58:03 [ 28] [ 9] [D00002000] +17:58:03 [ 32] [ 6] [621354] +17:58:03 [ 35] [ 37] [6688990103558209=43011231820982200000] +17:58:03 [ 37] [ 12] [507903177701] +17:58:03 [ 41] [ 8] [04002700] +17:58:03 [ 42] [ 15] [NATIVE ] +17:58:03 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +17:58:03 [ 49] [ 3] [418] +17:58:03 [ 52] [ 16] [ABC8F339BCE356AF] +17:58:03 ============================================================================ +17:58:03 + + +waiting on router queue for slot.... +17:58:03 Sending to : <4> +17:58:03 ============================================================================ +17:58:04 ============================================================================ +17:58:04 Slot Id : <181> +17:58:04 Transaction Type : RESPONSE +17:58:04 Received From : +17:58:04 ============================================================================ +17:58:04 FNo. Len. Field Value +17:58:04 ============================================================================ +17:58:04 [ 1] [ 4] [0210] +17:58:04 [ 2] [ 16] [6688990103558209] +17:58:04 [ 3] [ 6] [302000] +17:58:04 [ 4] [ 12] [000000000000] +17:58:04 [ 7] [ 10] [0320175758] +17:58:04 [ 11] [ 6] [822303] +17:58:04 [ 12] [ 6] [175758] +17:58:04 [ 13] [ 4] [0320] +17:58:04 [ 15] [ 4] [0320] +17:58:04 [ 18] [ 4] [6011] +17:58:04 [ 22] [ 3] [021] +17:58:04 [ 32] [ 6] [621354] +17:58:04 [ 35] [ 37] [6688990103558209=43011231820982200000] +17:58:04 [ 37] [ 12] [507903177701] +17:58:04 [ 38] [ 6] [175553] +17:58:04 [ 39] [ 2] [55] +17:58:04 [ 41] [ 8] [04002700] +17:58:04 [ 49] [ 3] [418] +17:58:04 ============================================================================ +17:58:04 Sending to : +17:58:04 ============================================================================ +17:58:04 + + +waiting on router queue for slot.... +17:58:05 ============================================================================ +17:58:05 Slot Id : <181> +17:58:05 Transaction Type : RESPONSE +17:58:05 Received From : +17:58:05 ============================================================================ +17:58:05 FNo. Len. Field Value +17:58:05 ============================================================================ +17:58:05 [ 1] [ 4] [0210] +17:58:05 [ 2] [ 16] [6688990103558209] +17:58:05 [ 3] [ 6] [302000] +17:58:05 [ 4] [ 12] [000000000000] +17:58:05 [ 7] [ 10] [0320175758] +17:58:05 [ 11] [ 6] [822303] +17:58:05 [ 12] [ 6] [175758] +17:58:05 [ 13] [ 4] [0320] +17:58:05 [ 15] [ 4] [0320] +17:58:05 [ 18] [ 4] [6011] +17:58:05 [ 22] [ 3] [021] +17:58:05 [ 32] [ 6] [621354] +17:58:05 [ 35] [ 37] [6688990103558209=43011231820982200000] +17:58:05 [ 37] [ 12] [507903177701] +17:58:05 [ 38] [ 6] [175553] +17:58:05 [ 39] [ 2] [55] +17:58:05 [ 41] [ 8] [04002700] +17:58:05 [ 49] [ 3] [418] +17:58:05 ============================================================================ +17:58:05 Calculate Source COMM Id = 0 +17:58:05 ============================================================================ +17:58:05 + + +waiting on router queue for slot.... +17:58:12 ============================================================================ +17:58:12 Slot Id : <201> +17:58:12 Transaction Type : REQUEST +17:58:12 Received From : +17:58:12 ============================================================================ +17:58:12 FNo. Len. Field Value +17:58:12 ============================================================================ +17:58:12 [ 1] [ 4] [0200] +17:58:12 [ 2] [ 16] [6688990105385700] +17:58:12 [ 3] [ 6] [012000] +17:58:12 [ 4] [ 12] [000005000000] +17:58:12 [ 7] [ 10] [0320175807] +17:58:12 [ 11] [ 6] [822332] +17:58:12 [ 12] [ 6] [175807] +17:58:12 [ 13] [ 4] [0320] +17:58:12 [ 15] [ 4] [0320] +17:58:12 [ 18] [ 4] [6011] +17:58:12 [ 22] [ 3] [900] +17:58:12 [ 25] [ 2] [02] +17:58:12 [ 28] [ 9] [D00002000] +17:58:12 [ 32] [ 6] [621354] +17:58:12 [ 35] [ 37] [6688990105385700=43091231570086400000] +17:58:12 [ 37] [ 12] [507903815703] +17:58:12 [ 41] [ 8] [01009700] +17:58:12 [ 42] [ 15] [NATIVE ] +17:58:12 [ 43] [ 40] [LNTV Station Xaythany LAO] +17:58:12 [ 49] [ 3] [418] +17:58:12 [ 52] [ 16] [B5BE94BFE5EEFE3A] +17:58:12 ============================================================================ +17:58:12 + + +waiting on router queue for slot.... +17:58:12 Sending to : +17:58:12 ============================================================================ +17:58:12 Sending to : +17:58:12 ============================================================================ +17:58:13 ============================================================================ +17:58:13 Slot Id : <201> +17:58:13 Transaction Type : REQUEST +17:58:13 Received From : +17:58:13 ============================================================================ +17:58:13 FNo. Len. Field Value +17:58:13 ============================================================================ +17:58:13 [ 1] [ 4] [0200] +17:58:13 [ 2] [ 16] [6688990105385700] +17:58:13 [ 3] [ 6] [012000] +17:58:13 [ 4] [ 12] [000005000000] +17:58:13 [ 7] [ 10] [0320175807] +17:58:13 [ 11] [ 6] [822332] +17:58:13 [ 12] [ 6] [175807] +17:58:13 [ 13] [ 4] [0320] +17:58:13 [ 15] [ 4] [0320] +17:58:13 [ 18] [ 4] [6011] +17:58:13 [ 22] [ 3] [900] +17:58:13 [ 25] [ 2] [02] +17:58:13 [ 28] [ 9] [D00002000] +17:58:13 [ 32] [ 6] [621354] +17:58:13 [ 35] [ 37] [6688990105385700=43091231570086400000] +17:58:13 [ 37] [ 12] [507903815703] +17:58:13 [ 41] [ 8] [01009700] +17:58:13 [ 42] [ 15] [NATIVE ] +17:58:13 [ 43] [ 40] [LNTV Station Xaythany LAO] +17:58:13 [ 49] [ 3] [418] +17:58:13 [ 52] [ 16] [B5BE94BFE5EEFE3A] +17:58:13 ============================================================================ +17:58:13 + + +waiting on router queue for slot.... +17:58:13 Sending to : +17:58:13 ============================================================================ +17:58:13 ============================================================================ +17:58:13 Slot Id : <201> +17:58:13 Transaction Type : REQUEST +17:58:13 Received From : +17:58:13 ============================================================================ +17:58:13 FNo. Len. Field Value +17:58:13 ============================================================================ +17:58:13 [ 1] [ 4] [0200] +17:58:13 [ 2] [ 16] [6688990105385700] +17:58:13 [ 3] [ 6] [012000] +17:58:13 [ 4] [ 12] [000005000000] +17:58:13 [ 7] [ 10] [0320175807] +17:58:13 [ 11] [ 6] [822332] +17:58:13 [ 12] [ 6] [175807] +17:58:13 [ 13] [ 4] [0320] +17:58:13 [ 15] [ 4] [0320] +17:58:13 [ 18] [ 4] [6011] +17:58:13 [ 22] [ 3] [900] +17:58:13 [ 25] [ 2] [02] +17:58:13 [ 28] [ 9] [D00002000] +17:58:13 [ 32] [ 6] [621354] +17:58:13 [ 35] [ 37] [6688990105385700=43091231570086400000] +17:58:13 [ 37] [ 12] [507903815703] +17:58:13 [ 41] [ 8] [01009700] +17:58:13 [ 42] [ 15] [NATIVE ] +17:58:13 [ 43] [ 40] [LNTV Station Xaythany LAO] +17:58:13 [ 49] [ 3] [418] +17:58:13 [ 52] [ 16] [25447C5E6A414772] +17:58:13 ============================================================================ +17:58:13 + + +waiting on router queue for slot.... +17:58:13 Sending to : <4> +17:58:13 ============================================================================ +17:58:14 ============================================================================ +17:58:14 Slot Id : <214> +17:58:14 Transaction Type : REQUEST +17:58:14 Received From : +17:58:14 ============================================================================ +17:58:14 FNo. Len. Field Value +17:58:14 ============================================================================ +17:58:14 [ 1] [ 4] [0800] +17:58:14 [ 7] [ 10] [0320105721] +17:58:14 [ 11] [ 6] [157591] +17:58:14 [ 70] [ 3] [301] +17:58:14 ============================================================================ +17:58:14 + + +waiting on router queue for slot.... +17:58:14 Sending to : +17:58:14 ============================================================================ +17:58:14 ============================================================================ +17:58:14 Slot Id : <214> +17:58:14 Transaction Type : RESPONSE +17:58:14 Received From : +17:58:14 ============================================================================ +17:58:14 FNo. Len. Field Value +17:58:14 ============================================================================ +17:58:14 [ 1] [ 4] [0810] +17:58:14 [ 7] [ 10] [0320105721] +17:58:14 [ 11] [ 6] [157591] +17:58:14 [ 39] [ 2] [00] +17:58:14 [ 70] [ 3] [301] +17:58:14 ============================================================================ +17:58:14 Calculate Source COMM Id = 2 +17:58:14 ============================================================================ +17:58:14 + + +waiting on router queue for slot.... +17:58:14 ============================================================================ +17:58:14 Slot Id : <201> +17:58:14 Transaction Type : RESPONSE +17:58:14 Received From : +17:58:14 ============================================================================ +17:58:14 FNo. Len. Field Value +17:58:14 ============================================================================ +17:58:14 [ 1] [ 4] [0210] +17:58:14 [ 2] [ 16] [6688990105385700] +17:58:14 [ 3] [ 6] [012000] +17:58:14 [ 4] [ 12] [000005000000] +17:58:14 [ 11] [ 6] [822332] +17:58:14 [ 12] [ 6] [175807] +17:58:14 [ 15] [ 4] [0320] +17:58:14 [ 18] [ 4] [6011] +17:58:14 [ 32] [ 6] [621354] +17:58:14 [ 35] [ 37] [6688990105385700=43091231570086400000] +17:58:14 [ 37] [ 12] [507903815703] +17:58:14 [ 38] [ 6] [032761] +17:58:14 [ 39] [ 2] [00] +17:58:14 [ 41] [ 8] [01009700] +17:58:14 [ 49] [ 3] [418] +17:58:14 [ 54] [ 20] [2002418C000038260524] +17:58:14 ============================================================================ +17:58:14 Sending to : +17:58:14 ============================================================================ +17:58:14 + + +waiting on router queue for slot.... +17:58:15 ============================================================================ +17:58:15 Slot Id : <201> +17:58:15 Transaction Type : RESPONSE +17:58:15 Received From : +17:58:15 ============================================================================ +17:58:15 FNo. Len. Field Value +17:58:15 ============================================================================ +17:58:15 [ 1] [ 4] [0210] +17:58:15 [ 2] [ 16] [6688990105385700] +17:58:15 [ 3] [ 6] [012000] +17:58:15 [ 4] [ 12] [000005000000] +17:58:15 [ 11] [ 6] [822332] +17:58:15 [ 12] [ 6] [175807] +17:58:15 [ 15] [ 4] [0320] +17:58:15 [ 18] [ 4] [6011] +17:58:15 [ 32] [ 6] [621354] +17:58:15 [ 35] [ 37] [6688990105385700=43091231570086400000] +17:58:15 [ 37] [ 12] [507903815703] +17:58:15 [ 38] [ 6] [032761] +17:58:15 [ 39] [ 2] [00] +17:58:15 [ 41] [ 8] [01009700] +17:58:15 [ 49] [ 3] [418] +17:58:15 [ 54] [ 20] [2002418C000038260524] +17:58:15 ============================================================================ +17:58:15 Calculate Source COMM Id = 0 +17:58:15 ============================================================================ +17:58:15 + + +waiting on router queue for slot.... +17:58:16 ============================================================================ +17:58:16 Slot Id : <165> +17:58:16 Transaction Type : REQUEST +17:58:16 Received From : +17:58:16 ============================================================================ +17:58:16 FNo. Len. Field Value +17:58:16 ============================================================================ +17:58:16 [ 1] [ 4] [0200] +17:58:16 [ 2] [ 16] [6213541000276967] +17:58:16 [ 3] [ 6] [010000] +17:58:16 [ 4] [ 12] [000200000000] +17:58:16 [ 7] [ 10] [0320105722] +17:58:16 [ 11] [ 6] [271032] +17:58:16 [ 12] [ 6] [175722] +17:58:16 [ 13] [ 4] [0320] +17:58:16 [ 14] [ 4] [4912] +17:58:16 [ 15] [ 4] [0320] +17:58:16 [ 18] [ 4] [6011] +17:58:16 [ 19] [ 3] [418] +17:58:16 [ 22] [ 3] [021] +17:58:16 [ 25] [ 2] [01] +17:58:16 [ 28] [ 9] [D00002000] +17:58:16 [ 32] [ 6] [180893] +17:58:16 [ 35] [ 32] [6213541000276967=491212017696668] +17:58:16 [ 37] [ 12] [507910271032] +17:58:16 [ 41] [ 8] [0528LPBP] +17:58:16 [ 42] [ 15] [999999 ] +17:58:16 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:58:16 [ 49] [ 3] [418] +17:58:16 [ 52] [ 16] [6C820E2894BC2063] +17:58:16 ============================================================================ +17:58:16 + + +waiting on router queue for slot.... +17:58:16 Sending to : +17:58:16 ============================================================================ +17:58:16 Sending to : +17:58:16 ============================================================================ +17:58:16 ============================================================================ +17:58:16 Slot Id : <165> +17:58:16 Transaction Type : REQUEST +17:58:16 Received From : +17:58:16 ============================================================================ +17:58:16 FNo. Len. Field Value +17:58:16 ============================================================================ +17:58:16 [ 1] [ 4] [0200] +17:58:16 [ 2] [ 16] [6213541000276967] +17:58:16 [ 3] [ 6] [010000] +17:58:16 [ 4] [ 12] [000200000000] +17:58:16 [ 7] [ 10] [0320105722] +17:58:16 [ 11] [ 6] [271032] +17:58:16 [ 12] [ 6] [175722] +17:58:16 [ 13] [ 4] [0320] +17:58:16 [ 14] [ 4] [4912] +17:58:16 [ 15] [ 4] [0320] +17:58:16 [ 18] [ 4] [6011] +17:58:16 [ 19] [ 3] [418] +17:58:16 [ 22] [ 3] [021] +17:58:16 [ 25] [ 2] [01] +17:58:16 [ 28] [ 9] [D00002000] +17:58:16 [ 32] [ 6] [180893] +17:58:16 [ 35] [ 32] [6213541000276967=491212017696668] +17:58:16 [ 37] [ 12] [507910271032] +17:58:16 [ 41] [ 8] [0528LPBP] +17:58:16 [ 42] [ 15] [999999 ] +17:58:16 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:58:16 [ 49] [ 3] [418] +17:58:16 [ 52] [ 16] [6C820E2894BC2063] +17:58:16 ============================================================================ +17:58:16 + + +waiting on router queue for slot.... +17:58:16 Sending to : +17:58:16 ============================================================================ +17:58:16 ============================================================================ +17:58:16 Slot Id : <165> +17:58:16 Transaction Type : REQUEST +17:58:16 Received From : +17:58:16 ============================================================================ +17:58:16 FNo. Len. Field Value +17:58:16 ============================================================================ +17:58:16 [ 1] [ 4] [0200] +17:58:16 [ 2] [ 16] [6213541000276967] +17:58:16 [ 3] [ 6] [010000] +17:58:16 [ 4] [ 12] [000200000000] +17:58:16 [ 7] [ 10] [0320105722] +17:58:16 [ 11] [ 6] [271032] +17:58:16 [ 12] [ 6] [175722] +17:58:16 [ 13] [ 4] [0320] +17:58:16 [ 14] [ 4] [4912] +17:58:16 [ 15] [ 4] [0320] +17:58:16 [ 18] [ 4] [6011] +17:58:16 [ 19] [ 3] [418] +17:58:16 [ 22] [ 3] [021] +17:58:16 [ 25] [ 2] [01] +17:58:16 [ 28] [ 9] [D00002000] +17:58:16 [ 32] [ 6] [180893] +17:58:16 [ 35] [ 32] [6213541000276967=491212017696668] +17:58:16 [ 37] [ 12] [507910271032] +17:58:16 [ 41] [ 8] [0528LPBP] +17:58:16 [ 42] [ 15] [999999 ] +17:58:16 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +17:58:16 [ 49] [ 3] [418] +17:58:16 [ 52] [ 16] [9DAA79A8239D70C0] +17:58:16 ============================================================================ +17:58:16 + + +waiting on router queue for slot.... +17:58:16 Sending to : <0> +17:58:16 ============================================================================ +17:58:17 ============================================================================ +17:58:17 Slot Id : <165> +17:58:17 Transaction Type : RESPONSE +17:58:17 Received From : +17:58:17 ============================================================================ +17:58:17 FNo. Len. Field Value +17:58:17 ============================================================================ +17:58:17 [ 1] [ 4] [0210] +17:58:17 [ 2] [ 16] [6213541000276967] +17:58:17 [ 3] [ 6] [010000] +17:58:17 [ 4] [ 12] [000200000000] +17:58:17 [ 7] [ 10] [0320105722] +17:58:17 [ 11] [ 6] [271032] +17:58:17 [ 12] [ 6] [175722] +17:58:17 [ 13] [ 4] [0320] +17:58:17 [ 15] [ 4] [0320] +17:58:17 [ 18] [ 4] [6011] +17:58:17 [ 19] [ 3] [418] +17:58:17 [ 22] [ 3] [021] +17:58:17 [ 32] [ 6] [180893] +17:58:17 [ 35] [ 32] [6213541000276967=491212017696668] +17:58:17 [ 37] [ 12] [507910271032] +17:58:17 [ 39] [ 2] [61] +17:58:17 [ 41] [ 8] [0528LPBP] +17:58:17 [ 49] [ 3] [418] +17:58:17 ============================================================================ +17:58:17 Sending to : +17:58:17 ============================================================================ +17:58:17 + + +waiting on router queue for slot.... +17:58:17 ============================================================================ +17:58:17 Slot Id : <165> +17:58:17 Transaction Type : RESPONSE +17:58:17 Received From : +17:58:17 ============================================================================ +17:58:17 FNo. Len. Field Value +17:58:17 ============================================================================ +17:58:17 [ 1] [ 4] [0210] +17:58:17 [ 2] [ 16] [6213541000276967] +17:58:17 [ 3] [ 6] [010000] +17:58:17 [ 4] [ 12] [000200000000] +17:58:17 [ 7] [ 10] [0320105722] +17:58:17 [ 11] [ 6] [271032] +17:58:17 [ 12] [ 6] [175722] +17:58:17 [ 13] [ 4] [0320] +17:58:17 [ 15] [ 4] [0320] +17:58:17 [ 18] [ 4] [6011] +17:58:17 [ 19] [ 3] [418] +17:58:17 [ 22] [ 3] [021] +17:58:17 [ 32] [ 6] [180893] +17:58:17 [ 35] [ 32] [6213541000276967=491212017696668] +17:58:17 [ 37] [ 12] [507910271032] +17:58:17 [ 39] [ 2] [61] +17:58:17 [ 41] [ 8] [0528LPBP] +17:58:17 [ 49] [ 3] [418] +17:58:17 ============================================================================ +17:58:17 Calculate Source COMM Id = 2 +17:58:17 ============================================================================ +17:58:17 + + +waiting on router queue for slot.... +17:58:20 ============================================================================ +17:58:20 Slot Id : <209> +17:58:20 Transaction Type : REQUEST +17:58:20 Received From : +17:58:20 ============================================================================ +17:58:20 FNo. Len. Field Value +17:58:20 ============================================================================ +17:58:20 [ 1] [ 4] [0200] +17:58:20 [ 2] [ 16] [6688990040135855] +17:58:20 [ 3] [ 6] [011000] +17:58:20 [ 4] [ 12] [000100000000] +17:58:20 [ 7] [ 10] [0320175815] +17:58:20 [ 11] [ 6] [822373] +17:58:20 [ 12] [ 6] [175815] +17:58:20 [ 13] [ 4] [0320] +17:58:20 [ 15] [ 4] [0320] +17:58:20 [ 18] [ 4] [6011] +17:58:20 [ 22] [ 3] [900] +17:58:20 [ 25] [ 2] [02] +17:58:20 [ 28] [ 9] [D00002000] +17:58:20 [ 32] [ 6] [621354] +17:58:20 [ 35] [ 37] [6688990040135855=98041261047595600000] +17:58:20 [ 37] [ 12] [507904560418] +17:58:20 [ 41] [ 8] [02001900] +17:58:20 [ 42] [ 15] [NATIVE ] +17:58:20 [ 43] [ 40] [Khammouane Branch 02 Thakek LAO] +17:58:20 [ 49] [ 3] [418] +17:58:20 [ 52] [ 16] [C7840116C14F39B0] +17:58:20 ============================================================================ +17:58:20 + + +waiting on router queue for slot.... +17:58:20 Sending to : +17:58:20 ============================================================================ +17:58:20 Sending to : +17:58:20 ============================================================================ +17:58:21 ============================================================================ +17:58:21 Slot Id : <209> +17:58:21 Transaction Type : REQUEST +17:58:21 Received From : +17:58:21 ============================================================================ +17:58:21 FNo. Len. Field Value +17:58:21 ============================================================================ +17:58:21 [ 1] [ 4] [0200] +17:58:21 [ 2] [ 16] [6688990040135855] +17:58:21 [ 3] [ 6] [011000] +17:58:21 [ 4] [ 12] [000100000000] +17:58:21 [ 7] [ 10] [0320175815] +17:58:21 [ 11] [ 6] [822373] +17:58:21 [ 12] [ 6] [175815] +17:58:21 [ 13] [ 4] [0320] +17:58:21 [ 15] [ 4] [0320] +17:58:21 [ 18] [ 4] [6011] +17:58:21 [ 22] [ 3] [900] +17:58:21 [ 25] [ 2] [02] +17:58:21 [ 28] [ 9] [D00002000] +17:58:21 [ 32] [ 6] [621354] +17:58:21 [ 35] [ 37] [6688990040135855=98041261047595600000] +17:58:21 [ 37] [ 12] [507904560418] +17:58:21 [ 41] [ 8] [02001900] +17:58:21 [ 42] [ 15] [NATIVE ] +17:58:21 [ 43] [ 40] [Khammouane Branch 02 Thakek LAO] +17:58:21 [ 49] [ 3] [418] +17:58:21 [ 52] [ 16] [C7840116C14F39B0] +17:58:21 ============================================================================ +17:58:21 + + +waiting on router queue for slot.... +17:58:21 Sending to : +17:58:21 ============================================================================ +17:58:21 ============================================================================ +17:58:21 Slot Id : <209> +17:58:21 Transaction Type : REQUEST +17:58:21 Received From : +17:58:21 ============================================================================ +17:58:21 FNo. Len. Field Value +17:58:21 ============================================================================ +17:58:21 [ 1] [ 4] [0200] +17:58:21 [ 2] [ 16] [6688990040135855] +17:58:21 [ 3] [ 6] [011000] +17:58:21 [ 4] [ 12] [000100000000] +17:58:21 [ 7] [ 10] [0320175815] +17:58:21 [ 11] [ 6] [822373] +17:58:21 [ 12] [ 6] [175815] +17:58:21 [ 13] [ 4] [0320] +17:58:21 [ 15] [ 4] [0320] +17:58:21 [ 18] [ 4] [6011] +17:58:21 [ 22] [ 3] [900] +17:58:21 [ 25] [ 2] [02] +17:58:21 [ 28] [ 9] [D00002000] +17:58:21 [ 32] [ 6] [621354] +17:58:21 [ 35] [ 37] [6688990040135855=98041261047595600000] +17:58:21 [ 37] [ 12] [507904560418] +17:58:21 [ 41] [ 8] [02001900] +17:58:21 [ 42] [ 15] [NATIVE ] +17:58:21 [ 43] [ 40] [Khammouane Branch 02 Thakek LAO] +17:58:21 [ 49] [ 3] [418] +17:58:21 [ 52] [ 16] [7B73965307A8D3B7] +17:58:21 ============================================================================ +17:58:21 + + +waiting on router queue for slot.... +17:58:21 Sending to : <4> +17:58:21 ============================================================================ +17:58:21 ============================================================================ +17:58:21 Slot Id : <195> +17:58:21 Transaction Type : REQUEST +17:58:21 Received From : +17:58:21 ============================================================================ +17:58:21 FNo. Len. Field Value +17:58:21 ============================================================================ +17:58:21 [ 1] [ 4] [0200] +17:58:21 [ 2] [ 16] [6213541000597990] +17:58:21 [ 3] [ 6] [010000] +17:58:21 [ 4] [ 12] [000100000000] +17:58:21 [ 7] [ 10] [0320175611] +17:58:21 [ 11] [ 6] [954128] +17:58:21 [ 12] [ 6] [175611] +17:58:21 [ 13] [ 4] [0320] +17:58:21 [ 15] [ 4] [0320] +17:58:21 [ 18] [ 4] [6011] +17:58:21 [ 19] [ 3] [418] +17:58:21 [ 22] [ 3] [021] +17:58:21 [ 25] [ 2] [01] +17:58:21 [ 28] [ 9] [D00002000] +17:58:21 [ 32] [ 6] [668899] +17:58:21 [ 35] [ 32] [6213541000597990=491212019799861] +17:58:21 [ 37] [ 12] [507901881408] +17:58:21 [ 41] [ 8] [03014006] +17:58:21 [ 42] [ 15] [APT ] +17:58:21 [ 43] [ 40] [ SETHAMOUAK UNIT SETHAMOUA] +17:58:21 [ 49] [ 3] [418] +17:58:21 [ 52] [ 16] [32A7C6A06978BF20] +17:58:21 ============================================================================ +17:58:21 + + +waiting on router queue for slot.... +17:58:21 Sending to : +17:58:21 ============================================================================ +17:58:21 Sending to : +17:58:21 ============================================================================ +17:58:21 ============================================================================ +17:58:21 Slot Id : <195> +17:58:21 Transaction Type : REQUEST +17:58:21 Received From : +17:58:21 ============================================================================ +17:58:21 FNo. Len. Field Value +17:58:21 ============================================================================ +17:58:21 [ 1] [ 4] [0200] +17:58:21 [ 2] [ 16] [6213541000597990] +17:58:21 [ 3] [ 6] [010000] +17:58:21 [ 4] [ 12] [000100000000] +17:58:21 [ 7] [ 10] [0320175611] +17:58:21 [ 11] [ 6] [954128] +17:58:21 [ 12] [ 6] [175611] +17:58:21 [ 13] [ 4] [0320] +17:58:21 [ 15] [ 4] [0320] +17:58:21 [ 18] [ 4] [6011] +17:58:21 [ 19] [ 3] [418] +17:58:21 [ 22] [ 3] [021] +17:58:21 [ 25] [ 2] [01] +17:58:21 [ 28] [ 9] [D00002000] +17:58:21 [ 32] [ 6] [668899] +17:58:21 [ 35] [ 32] [6213541000597990=491212019799861] +17:58:21 [ 37] [ 12] [507901881408] +17:58:21 [ 41] [ 8] [03014006] +17:58:21 [ 42] [ 15] [APT ] +17:58:21 [ 43] [ 40] [ SETHAMOUAK UNIT SETHAMOUA] +17:58:21 [ 49] [ 3] [418] +17:58:21 [ 52] [ 16] [32A7C6A06978BF20] +17:58:21 ============================================================================ +17:58:21 + + +waiting on router queue for slot.... +17:58:21 Sending to : +17:58:21 ============================================================================ +17:58:21 ============================================================================ +17:58:21 Slot Id : <195> +17:58:21 Transaction Type : REQUEST +17:58:21 Received From : +17:58:21 ============================================================================ +17:58:21 FNo. Len. Field Value +17:58:21 ============================================================================ +17:58:21 [ 1] [ 4] [0200] +17:58:21 [ 2] [ 16] [6213541000597990] +17:58:21 [ 3] [ 6] [010000] +17:58:21 [ 4] [ 12] [000100000000] +17:58:21 [ 7] [ 10] [0320175611] +17:58:21 [ 11] [ 6] [954128] +17:58:21 [ 12] [ 6] [175611] +17:58:21 [ 13] [ 4] [0320] +17:58:21 [ 15] [ 4] [0320] +17:58:21 [ 18] [ 4] [6011] +17:58:21 [ 19] [ 3] [418] +17:58:21 [ 22] [ 3] [021] +17:58:21 [ 25] [ 2] [01] +17:58:21 [ 28] [ 9] [D00002000] +17:58:21 [ 32] [ 6] [668899] +17:58:21 [ 35] [ 32] [6213541000597990=491212019799861] +17:58:21 [ 37] [ 12] [507901881408] +17:58:21 [ 41] [ 8] [03014006] +17:58:21 [ 42] [ 15] [APT ] +17:58:21 [ 43] [ 40] [ SETHAMOUAK UNIT SETHAMOUA] +17:58:21 [ 49] [ 3] [418] +17:58:21 [ 52] [ 16] [BCE5D4C4EC8FBF49] +17:58:21 ============================================================================ +17:58:21 + + +waiting on router queue for slot.... +17:58:21 Sending to : <0> +17:58:21 ============================================================================ +17:58:22 ============================================================================ +17:58:22 Slot Id : <195> +17:58:22 Transaction Type : RESPONSE +17:58:22 Received From : +17:58:22 ============================================================================ +17:58:22 FNo. Len. Field Value +17:58:22 ============================================================================ +17:58:22 [ 1] [ 4] [0210] +17:58:22 [ 2] [ 16] [6213541000597990] +17:58:22 [ 3] [ 6] [010000] +17:58:22 [ 4] [ 12] [000100000000] +17:58:22 [ 7] [ 10] [0320175611] +17:58:22 [ 11] [ 6] [954128] +17:58:22 [ 12] [ 6] [175611] +17:58:22 [ 13] [ 4] [0320] +17:58:22 [ 15] [ 4] [0320] +17:58:22 [ 18] [ 4] [6011] +17:58:22 [ 19] [ 3] [418] +17:58:22 [ 32] [ 6] [668899] +17:58:22 [ 35] [ 32] [6213541000597990=491212019799861] +17:58:22 [ 37] [ 12] [507901881408] +17:58:22 [ 38] [ 6] [954128] +17:58:22 [ 39] [ 2] [51] +17:58:22 [ 41] [ 8] [03014006] +17:58:22 [ 49] [ 3] [418] +17:58:22 [ 54] [ 40] [0001418C0000063175170002418C000006317517] +17:58:22 ============================================================================ +17:58:22 Sending to : +17:58:22 ============================================================================ +17:58:22 + + +waiting on router queue for slot.... +17:58:22 ============================================================================ +17:58:22 Slot Id : <209> +17:58:22 Transaction Type : RESPONSE +17:58:22 Received From : +17:58:22 ============================================================================ +17:58:22 FNo. Len. Field Value +17:58:22 ============================================================================ +17:58:22 [ 1] [ 4] [0210] +17:58:22 [ 2] [ 16] [6688990040135855] +17:58:22 [ 3] [ 6] [011000] +17:58:22 [ 4] [ 12] [000100000000] +17:58:22 [ 11] [ 6] [822373] +17:58:22 [ 12] [ 6] [175815] +17:58:22 [ 15] [ 4] [0320] +17:58:22 [ 18] [ 4] [6011] +17:58:22 [ 32] [ 6] [621354] +17:58:22 [ 35] [ 37] [6688990040135855=98041261047595600000] +17:58:22 [ 37] [ 12] [507904560418] +17:58:22 [ 38] [ 6] [968491] +17:58:22 [ 39] [ 2] [00] +17:58:22 [ 41] [ 8] [02001900] +17:58:22 [ 49] [ 3] [418] +17:58:22 [ 54] [ 20] [1002418C001663334329] +17:58:22 ============================================================================ +17:58:22 Sending to : +17:58:22 ============================================================================ +17:58:22 + + +waiting on router queue for slot.... +17:58:23 ============================================================================ +17:58:23 Slot Id : <195> +17:58:23 Transaction Type : RESPONSE +17:58:23 Received From : +17:58:23 ============================================================================ +17:58:23 FNo. Len. Field Value +17:58:23 ============================================================================ +17:58:23 [ 1] [ 4] [0210] +17:58:23 [ 2] [ 16] [6213541000597990] +17:58:23 [ 3] [ 6] [010000] +17:58:23 [ 4] [ 12] [000100000000] +17:58:23 [ 7] [ 10] [0320175611] +17:58:23 [ 11] [ 6] [954128] +17:58:23 [ 12] [ 6] [175611] +17:58:23 [ 13] [ 4] [0320] +17:58:23 [ 15] [ 4] [0320] +17:58:23 [ 18] [ 4] [6011] +17:58:23 [ 19] [ 3] [418] +17:58:23 [ 32] [ 6] [668899] +17:58:23 [ 35] [ 32] [6213541000597990=491212019799861] +17:58:23 [ 37] [ 12] [507901881408] +17:58:23 [ 38] [ 6] [954128] +17:58:23 [ 39] [ 2] [51] +17:58:23 [ 41] [ 8] [03014006] +17:58:23 [ 49] [ 3] [418] +17:58:23 [ 54] [ 40] [0001418C0000063175170002418C000006317517] +17:58:23 ============================================================================ +17:58:23 Calculate Source COMM Id = 4 +17:58:23 ============================================================================ +17:58:23 + + +waiting on router queue for slot.... +17:58:24 ============================================================================ +17:58:24 Slot Id : <178> +17:58:24 Transaction Type : REQUEST +17:58:24 Received From : +17:58:24 ============================================================================ +17:58:24 FNo. Len. Field Value +17:58:24 ============================================================================ +17:58:24 [ 1] [ 4] [0200] +17:58:24 [ 2] [ 16] [1808930900043498] +17:58:24 [ 3] [ 6] [011000] +17:58:24 [ 4] [ 12] [000100000000] +17:58:24 [ 7] [ 10] [0320175818] +17:58:24 [ 11] [ 6] [822386] +17:58:24 [ 12] [ 6] [175818] +17:58:24 [ 13] [ 4] [0320] +17:58:24 [ 15] [ 4] [0320] +17:58:24 [ 18] [ 4] [6011] +17:58:24 [ 22] [ 3] [900] +17:58:24 [ 25] [ 2] [02] +17:58:24 [ 28] [ 9] [D00002000] +17:58:24 [ 32] [ 6] [621354] +17:58:24 [ 35] [ 27] [1808930900043498=1803500845] +17:58:24 [ 37] [ 12] [507902585610] +17:58:24 [ 41] [ 8] [05004100] +17:58:24 [ 42] [ 15] [NATIVE ] +17:58:24 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +17:58:24 [ 49] [ 3] [418] +17:58:24 [ 52] [ 16] [C057DEC7E6DCA8AD] +17:58:24 ============================================================================ +17:58:24 + + +waiting on router queue for slot.... +17:58:24 Sending to : +17:58:24 ============================================================================ +17:58:24 Sending to : +17:58:24 ============================================================================ +17:58:24 ============================================================================ +17:58:24 Slot Id : <178> +17:58:24 Transaction Type : REQUEST +17:58:24 Received From : +17:58:24 ============================================================================ +17:58:24 FNo. Len. Field Value +17:58:24 ============================================================================ +17:58:24 [ 1] [ 4] [0200] +17:58:24 [ 2] [ 16] [1808930900043498] +17:58:24 [ 3] [ 6] [011000] +17:58:24 [ 4] [ 12] [000100000000] +17:58:24 [ 7] [ 10] [0320175818] +17:58:24 [ 11] [ 6] [822386] +17:58:24 [ 12] [ 6] [175818] +17:58:24 [ 13] [ 4] [0320] +17:58:24 [ 15] [ 4] [0320] +17:58:24 [ 18] [ 4] [6011] +17:58:24 [ 22] [ 3] [900] +17:58:24 [ 25] [ 2] [02] +17:58:24 [ 28] [ 9] [D00002000] +17:58:24 [ 32] [ 6] [621354] +17:58:24 [ 35] [ 27] [1808930900043498=1803500845] +17:58:24 [ 37] [ 12] [507902585610] +17:58:24 [ 41] [ 8] [05004100] +17:58:24 [ 42] [ 15] [NATIVE ] +17:58:24 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +17:58:24 [ 49] [ 3] [418] +17:58:24 [ 52] [ 16] [C057DEC7E6DCA8AD] +17:58:24 ============================================================================ +17:58:24 + + +waiting on router queue for slot.... +17:58:24 Sending to : +17:58:24 ============================================================================ +17:58:24 ============================================================================ +17:58:24 Slot Id : <178> +17:58:24 Transaction Type : REQUEST +17:58:24 Received From : +17:58:24 ============================================================================ +17:58:24 FNo. Len. Field Value +17:58:24 ============================================================================ +17:58:24 [ 1] [ 4] [0200] +17:58:24 [ 2] [ 16] [1808930900043498] +17:58:24 [ 3] [ 6] [011000] +17:58:24 [ 4] [ 12] [000100000000] +17:58:24 [ 7] [ 10] [0320175818] +17:58:24 [ 11] [ 6] [822386] +17:58:24 [ 12] [ 6] [175818] +17:58:24 [ 13] [ 4] [0320] +17:58:24 [ 15] [ 4] [0320] +17:58:24 [ 18] [ 4] [6011] +17:58:24 [ 22] [ 3] [900] +17:58:24 [ 25] [ 2] [02] +17:58:24 [ 28] [ 9] [D00002000] +17:58:24 [ 32] [ 6] [621354] +17:58:24 [ 35] [ 27] [1808930900043498=1803500845] +17:58:24 [ 37] [ 12] [507902585610] +17:58:24 [ 41] [ 8] [05004100] +17:58:24 [ 42] [ 15] [NATIVE ] +17:58:24 [ 43] [ 40] [LPB BCEL LuangprabangLAO] +17:58:24 [ 49] [ 3] [418] +17:58:24 [ 52] [ 16] [074CAF0A2A25CFB5] +17:58:24 ============================================================================ +17:58:24 + + +waiting on router queue for slot.... +17:58:24 Sending to : <2> +17:58:24 ============================================================================ +17:58:25 ============================================================================ +17:58:25 Slot Id : <209> +17:58:25 Transaction Type : RESPONSE +17:58:25 Received From : +17:58:25 ============================================================================ +17:58:25 FNo. Len. Field Value +17:58:25 ============================================================================ +17:58:25 [ 1] [ 4] [0210] +17:58:25 [ 2] [ 16] [6688990040135855] +17:58:25 [ 3] [ 6] [011000] +17:58:25 [ 4] [ 12] [000100000000] +17:58:25 [ 11] [ 6] [822373] +17:58:25 [ 12] [ 6] [175815] +17:58:25 [ 15] [ 4] [0320] +17:58:25 [ 18] [ 4] [6011] +17:58:25 [ 32] [ 6] [621354] +17:58:25 [ 35] [ 37] [6688990040135855=98041261047595600000] +17:58:25 [ 37] [ 12] [507904560418] +17:58:25 [ 38] [ 6] [968491] +17:58:25 [ 39] [ 2] [00] +17:58:25 [ 41] [ 8] [02001900] +17:58:25 [ 49] [ 3] [418] +17:58:25 [ 54] [ 20] [1002418C001663334329] +17:58:25 ============================================================================ +17:58:25 Calculate Source COMM Id = 0 +17:58:25 ============================================================================ +17:58:25 + + +waiting on router queue for slot.... +17:58:25 ============================================================================ +17:58:25 Slot Id : <194> +17:58:25 Transaction Type : REQUEST +17:58:25 Received From : +17:58:25 ============================================================================ +17:58:25 FNo. Len. Field Value +17:58:25 ============================================================================ +17:58:25 [ 1] [ 4] [0800] +17:58:25 [ 2] [ 5] [02531] +17:58:25 [ 3] [ 6] [579178] +17:58:25 [ 7] [ 10] [0320105825] +17:58:25 [ 11] [ 6] [807455] +17:58:25 [ 15] [ 10] [0320105825] +17:58:25 [ 37] [ 11] [57917807455] +17:58:25 [ 70] [ 3] [001] +17:58:25 ============================================================================ +17:58:25 + + +waiting on router queue for slot.... +17:58:25 ============================================================================ +17:58:25 Slot Id : <194> +17:58:25 Transaction Type : RESPONSE +17:58:25 Received From : +17:58:25 ============================================================================ +17:58:25 FNo. Len. Field Value +17:58:25 ============================================================================ +17:58:25 [ 1] [ 4] [0810] +17:58:25 [ 7] [ 10] [0320105825] +17:58:25 [ 11] [ 6] [807455] +17:58:25 [ 15] [ 4] [0320] +17:58:25 [ 37] [ 12] [57917807455] +17:58:25 [ 39] [ 2] [00] +17:58:25 [ 70] [ 3] [001] +17:58:25 ============================================================================ +17:58:25 Sending to : +17:58:25 ============================================================================ +17:58:25 + + +waiting on router queue for slot.... +17:58:27 ============================================================================ +17:58:27 Slot Id : <178> +17:58:27 Transaction Type : RESPONSE +17:58:27 Received From : +17:58:27 ============================================================================ +17:58:27 FNo. Len. Field Value +17:58:27 ============================================================================ +17:58:27 [ 1] [ 4] [0210] +17:58:27 [ 2] [ 16] [1808930900043498] +17:58:27 [ 3] [ 6] [011000] +17:58:27 [ 4] [ 12] [000100000000] +17:58:27 [ 6] [ 12] [000100000000] +17:58:27 [ 7] [ 10] [0320175818] +17:58:27 [ 11] [ 6] [822386] +17:58:27 [ 12] [ 6] [175818] +17:58:27 [ 13] [ 4] [0320] +17:58:27 [ 18] [ 4] [6011] +17:58:27 [ 19] [ 3] [418] +17:58:27 [ 22] [ 3] [021] +17:58:27 [ 32] [ 6] [621354] +17:58:27 [ 35] [ 27] [1808930900043498=1803500845] +17:58:27 [ 37] [ 12] [507902585610] +17:58:27 [ 38] [ 6] [822386] +17:58:27 [ 39] [ 2] [00] +17:58:27 [ 41] [ 8] [05004100] +17:58:27 [ 49] [ 3] [418] +17:58:27 [ 52] [ 16] [074CAF0A2A25CFB5] +17:58:27 [ 54] [ 20] [1001418C002263758400] +17:58:27 ============================================================================ +17:58:27 Sending to : +17:58:27 ============================================================================ +17:58:27 + + +waiting on router queue for slot.... +17:58:28 ============================================================================ +17:58:28 Slot Id : <178> +17:58:28 Transaction Type : RESPONSE +17:58:28 Received From : +17:58:28 ============================================================================ +17:58:28 FNo. Len. Field Value +17:58:28 ============================================================================ +17:58:28 [ 1] [ 4] [0210] +17:58:28 [ 2] [ 16] [1808930900043498] +17:58:28 [ 3] [ 6] [011000] +17:58:28 [ 4] [ 12] [000100000000] +17:58:28 [ 6] [ 12] [000100000000] +17:58:28 [ 7] [ 10] [0320175818] +17:58:28 [ 11] [ 6] [822386] +17:58:28 [ 12] [ 6] [175818] +17:58:28 [ 13] [ 4] [0320] +17:58:28 [ 18] [ 4] [6011] +17:58:28 [ 19] [ 3] [418] +17:58:28 [ 22] [ 3] [021] +17:58:28 [ 32] [ 6] [621354] +17:58:28 [ 35] [ 27] [1808930900043498=1803500845] +17:58:28 [ 37] [ 12] [507902585610] +17:58:28 [ 38] [ 6] [822386] +17:58:28 [ 39] [ 2] [00] +17:58:28 [ 41] [ 8] [05004100] +17:58:28 [ 49] [ 3] [418] +17:58:28 [ 52] [ 16] [074CAF0A2A25CFB5] +17:58:28 [ 54] [ 20] [1001418C002263758400] +17:58:28 ============================================================================ +17:58:28 Calculate Source COMM Id = 0 +17:58:28 ============================================================================ +17:58:28 + + +waiting on router queue for slot.... +17:58:33 ============================================================================ +17:58:33 Slot Id : <206> +17:58:33 Transaction Type : REQUEST +17:58:33 Received From : +17:58:33 ============================================================================ +17:58:33 FNo. Len. Field Value +17:58:33 ============================================================================ +17:58:33 [ 1] [ 4] [0200] +17:58:33 [ 2] [ 16] [6688990103558209] +17:58:33 [ 3] [ 6] [302000] +17:58:33 [ 4] [ 12] [000000000000] +17:58:33 [ 7] [ 10] [0320175828] +17:58:33 [ 11] [ 6] [822412] +17:58:33 [ 12] [ 6] [175828] +17:58:33 [ 13] [ 4] [0320] +17:58:33 [ 15] [ 4] [0320] +17:58:33 [ 18] [ 4] [6011] +17:58:33 [ 22] [ 3] [900] +17:58:33 [ 25] [ 2] [02] +17:58:33 [ 28] [ 9] [D00000000] +17:58:33 [ 32] [ 6] [621354] +17:58:33 [ 35] [ 37] [6688990103558209=43011231820982200000] +17:58:33 [ 37] [ 12] [507903177702] +17:58:33 [ 41] [ 8] [04002700] +17:58:33 [ 42] [ 15] [NATIVE ] +17:58:33 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +17:58:33 [ 49] [ 3] [418] +17:58:33 [ 52] [ 16] [AA4FBE43786B3A87] +17:58:33 ============================================================================ +17:58:33 + + +waiting on router queue for slot.... +17:58:33 Sending to : +17:58:33 ============================================================================ +17:58:33 Sending to : +17:58:33 ============================================================================ +17:58:33 ============================================================================ +17:58:33 Slot Id : <206> +17:58:33 Transaction Type : REQUEST +17:58:33 Received From : +17:58:33 ============================================================================ +17:58:33 FNo. Len. Field Value +17:58:33 ============================================================================ +17:58:33 [ 1] [ 4] [0200] +17:58:33 [ 2] [ 16] [6688990103558209] +17:58:33 [ 3] [ 6] [302000] +17:58:33 [ 4] [ 12] [000000000000] +17:58:33 [ 7] [ 10] [0320175828] +17:58:33 [ 11] [ 6] [822412] +17:58:33 [ 12] [ 6] [175828] +17:58:33 [ 13] [ 4] [0320] +17:58:33 [ 15] [ 4] [0320] +17:58:33 [ 18] [ 4] [6011] +17:58:33 [ 22] [ 3] [900] +17:58:33 [ 25] [ 2] [02] +17:58:33 [ 28] [ 9] [D00000000] +17:58:33 [ 32] [ 6] [621354] +17:58:33 [ 35] [ 37] [6688990103558209=43011231820982200000] +17:58:33 [ 37] [ 12] [507903177702] +17:58:33 [ 41] [ 8] [04002700] +17:58:33 [ 42] [ 15] [NATIVE ] +17:58:33 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +17:58:33 [ 49] [ 3] [418] +17:58:33 [ 52] [ 16] [AA4FBE43786B3A87] +17:58:33 ============================================================================ +17:58:33 + + +waiting on router queue for slot.... +17:58:33 Sending to : +17:58:33 ============================================================================ +17:58:33 ============================================================================ +17:58:33 Slot Id : <206> +17:58:33 Transaction Type : REQUEST +17:58:33 Received From : +17:58:33 ============================================================================ +17:58:33 FNo. Len. Field Value +17:58:33 ============================================================================ +17:58:33 [ 1] [ 4] [0200] +17:58:33 [ 2] [ 16] [6688990103558209] +17:58:33 [ 3] [ 6] [302000] +17:58:33 [ 4] [ 12] [000000000000] +17:58:33 [ 7] [ 10] [0320175828] +17:58:33 [ 11] [ 6] [822412] +17:58:33 [ 12] [ 6] [175828] +17:58:33 [ 13] [ 4] [0320] +17:58:33 [ 15] [ 4] [0320] +17:58:33 [ 18] [ 4] [6011] +17:58:33 [ 22] [ 3] [900] +17:58:33 [ 25] [ 2] [02] +17:58:33 [ 28] [ 9] [D00000000] +17:58:33 [ 32] [ 6] [621354] +17:58:33 [ 35] [ 37] [6688990103558209=43011231820982200000] +17:58:33 [ 37] [ 12] [507903177702] +17:58:33 [ 41] [ 8] [04002700] +17:58:33 [ 42] [ 15] [NATIVE ] +17:58:33 [ 43] [ 40] [PAKSE KM 8 Bajieng LAO] +17:58:33 [ 49] [ 3] [418] +17:58:33 [ 52] [ 16] [8F1AFB9BDA55155E] +17:58:33 ============================================================================ +17:58:33 + + +waiting on router queue for slot.... +17:58:33 Sending to : <4> +17:58:33 ============================================================================ +17:58:34 ============================================================================ +17:58:34 Slot Id : <206> +17:58:34 Transaction Type : RESPONSE +17:58:34 Received From : +17:58:34 ============================================================================ +17:58:34 FNo. Len. Field Value +17:58:34 ============================================================================ +17:58:34 [ 1] [ 4] [0210] +17:58:34 [ 2] [ 16] [6688990103558209] +17:58:34 [ 3] [ 6] [302000] +17:58:34 [ 4] [ 12] [000000000000] +17:58:34 [ 11] [ 6] [822412] +17:58:34 [ 12] [ 6] [175828] +17:58:34 [ 15] [ 4] [0320] +17:58:34 [ 18] [ 4] [6011] +17:58:34 [ 32] [ 6] [621354] +17:58:34 [ 35] [ 37] [6688990103558209=43011231820982200000] +17:58:34 [ 37] [ 12] [507903177702] +17:58:34 [ 38] [ 6] [248365] +17:58:34 [ 39] [ 2] [00] +17:58:34 [ 41] [ 8] [04002700] +17:58:34 [ 49] [ 3] [418] +17:58:34 [ 54] [ 20] [2002418C000114958665] +17:58:34 ============================================================================ +17:58:34 Sending to : +17:58:34 ============================================================================ +17:58:34 + + +waiting on router queue for slot.... +17:58:35 ============================================================================ +17:58:35 Slot Id : <206> +17:58:35 Transaction Type : RESPONSE +17:58:35 Received From : +17:58:35 ============================================================================ +17:58:35 FNo. Len. Field Value +17:58:35 ============================================================================ +17:58:35 [ 1] [ 4] [0210] +17:58:35 [ 2] [ 16] [6688990103558209] +17:58:35 [ 3] [ 6] [302000] +17:58:35 [ 4] [ 12] [000000000000] +17:58:35 [ 11] [ 6] [822412] +17:58:35 [ 12] [ 6] [175828] +17:58:35 [ 15] [ 4] [0320] +17:58:35 [ 18] [ 4] [6011] +17:58:35 [ 32] [ 6] [621354] +17:58:35 [ 35] [ 37] [6688990103558209=43011231820982200000] +17:58:35 [ 37] [ 12] [507903177702] +17:58:35 [ 38] [ 6] [248365] +17:58:35 [ 39] [ 2] [00] +17:58:35 [ 41] [ 8] [04002700] +17:58:35 [ 49] [ 3] [418] +17:58:35 [ 54] [ 20] [2002418C000114958665] +17:58:35 ============================================================================ +17:58:35 Calculate Source COMM Id = 0 +17:58:35 ============================================================================ +17:58:35 + + +waiting on router queue for slot.... +17:58:36 ============================================================================ +17:58:36 Slot Id : <193> +17:58:36 Transaction Type : REQUEST +17:58:36 Received From : +17:58:36 ============================================================================ +17:58:36 FNo. Len. Field Value +17:58:36 ============================================================================ +17:58:36 [ 1] [ 4] [0800] +17:58:36 [ 7] [ 10] [0320105742] +17:58:36 [ 11] [ 6] [157592] +17:58:36 [ 70] [ 3] [301] +17:58:36 ============================================================================ +17:58:36 + + +waiting on router queue for slot.... +17:58:36 Sending to : +17:58:36 ============================================================================ +17:58:36 ============================================================================ +17:58:36 Slot Id : <193> +17:58:36 Transaction Type : RESPONSE +17:58:36 Received From : +17:58:36 ============================================================================ +17:58:36 FNo. Len. Field Value +17:58:36 ============================================================================ +17:58:36 [ 1] [ 4] [0810] +17:58:36 [ 7] [ 10] [0320105742] +17:58:36 [ 11] [ 6] [157592] +17:58:36 [ 39] [ 2] [00] +17:58:36 [ 70] [ 3] [301] +17:58:36 ============================================================================ +17:58:36 Calculate Source COMM Id = 2 +17:58:36 ============================================================================ +17:58:36 + + +waiting on router queue for slot.... +17:58:37 ============================================================================ +17:58:37 Slot Id : <184> +17:58:37 Transaction Type : REQUEST +17:58:37 Received From : +17:58:37 ============================================================================ +17:58:37 FNo. Len. Field Value +17:58:37 ============================================================================ +17:58:37 [ 1] [ 4] [0200] +17:58:37 [ 2] [ 16] [6213541000597990] +17:58:37 [ 3] [ 6] [010000] +17:58:37 [ 4] [ 12] [000100000000] +17:58:37 [ 7] [ 10] [0320175627] +17:58:37 [ 11] [ 6] [954137] +17:58:37 [ 12] [ 6] [175627] +17:58:37 [ 13] [ 4] [0320] +17:58:37 [ 15] [ 4] [0320] +17:58:37 [ 18] [ 4] [6011] +17:58:37 [ 19] [ 3] [418] +17:58:37 [ 22] [ 3] [021] +17:58:37 [ 25] [ 2] [01] +17:58:37 [ 28] [ 9] [D00002000] +17:58:37 [ 32] [ 6] [668899] +17:58:37 [ 35] [ 32] [6213541000597990=491212019799861] +17:58:37 [ 37] [ 12] [507901881409] +17:58:37 [ 41] [ 8] [03014006] +17:58:37 [ 42] [ 15] [APT ] +17:58:37 [ 43] [ 40] [ SETHAMOUAK UNIT SETHAMOUA] +17:58:37 [ 49] [ 3] [418] +17:58:37 [ 52] [ 16] [32A7C6A06978BF20] +17:58:37 ============================================================================ +17:58:37 + + +waiting on router queue for slot.... +17:58:37 Sending to : +17:58:37 ============================================================================ +17:58:37 Sending to : +17:58:37 ============================================================================ +17:58:37 ============================================================================ +17:58:37 Slot Id : <184> +17:58:37 Transaction Type : REQUEST +17:58:37 Received From : +17:58:37 ============================================================================ +17:58:37 FNo. Len. Field Value +17:58:37 ============================================================================ +17:58:37 [ 1] [ 4] [0200] +17:58:37 [ 2] [ 16] [6213541000597990] +17:58:37 [ 3] [ 6] [010000] +17:58:37 [ 4] [ 12] [000100000000] +17:58:37 [ 7] [ 10] [0320175627] +17:58:37 [ 11] [ 6] [954137] +17:58:37 [ 12] [ 6] [175627] +17:58:37 [ 13] [ 4] [0320] +17:58:37 [ 15] [ 4] [0320] +17:58:37 [ 18] [ 4] [6011] +17:58:37 [ 19] [ 3] [418] +17:58:37 [ 22] [ 3] [021] +17:58:37 [ 25] [ 2] [01] +17:58:37 [ 28] [ 9] [D00002000] +17:58:37 [ 32] [ 6] [668899] +17:58:37 [ 35] [ 32] [6213541000597990=491212019799861] +17:58:37 [ 37] [ 12] [507901881409] +17:58:37 [ 41] [ 8] [03014006] +17:58:37 [ 42] [ 15] [APT ] +17:58:37 [ 43] [ 40] [ SETHAMOUAK UNIT SETHAMOUA] +17:58:37 [ 49] [ 3] [418] +17:58:37 [ 52] [ 16] [32A7C6A06978BF20] +17:58:37 ============================================================================ +17:58:37 + + +waiting on router queue for slot.... +17:58:37 Sending to : +17:58:37 ============================================================================ +17:58:37 ============================================================================ +17:58:37 Slot Id : <184> +17:58:37 Transaction Type : REQUEST +17:58:37 Received From : +17:58:37 ============================================================================ +17:58:37 FNo. Len. Field Value +17:58:37 ============================================================================ +17:58:37 [ 1] [ 4] [0200] +17:58:37 [ 2] [ 16] [6213541000597990] +17:58:37 [ 3] [ 6] [010000] +17:58:37 [ 4] [ 12] [000100000000] +17:58:37 [ 7] [ 10] [0320175627] +17:58:37 [ 11] [ 6] [954137] +17:58:37 [ 12] [ 6] [175627] +17:58:37 [ 13] [ 4] [0320] +17:58:37 [ 15] [ 4] [0320] +17:58:37 [ 18] [ 4] [6011] +17:58:37 [ 19] [ 3] [418] +17:58:37 [ 22] [ 3] [021] +17:58:37 [ 25] [ 2] [01] +17:58:37 [ 28] [ 9] [D00002000] +17:58:37 [ 32] [ 6] [668899] +17:58:37 [ 35] [ 32] [6213541000597990=491212019799861] +17:58:37 [ 37] [ 12] [507901881409] +17:58:37 [ 41] [ 8] [03014006] +17:58:37 [ 42] [ 15] [APT ] +17:58:37 [ 43] [ 40] [ SETHAMOUAK UNIT SETHAMOUA] +17:58:37 [ 49] [ 3] [418] +17:58:37 [ 52] [ 16] [BCE5D4C4EC8FBF49] +17:58:37 ============================================================================ +17:58:37 + + +waiting on router queue for slot.... +17:58:37 Sending to : <0> +17:58:37 ============================================================================ +17:58:38 ============================================================================ +17:58:38 Slot Id : <184> +17:58:38 Transaction Type : RESPONSE +17:58:38 Received From : +17:58:38 ============================================================================ +17:58:38 FNo. Len. Field Value +17:58:38 ============================================================================ +17:58:38 [ 1] [ 4] [0210] +17:58:38 [ 2] [ 16] [6213541000597990] +17:58:38 [ 3] [ 6] [010000] +17:58:38 [ 4] [ 12] [000100000000] +17:58:38 [ 7] [ 10] [0320175627] +17:58:38 [ 11] [ 6] [954137] +17:58:38 [ 12] [ 6] [175627] +17:58:38 [ 13] [ 4] [0320] +17:58:38 [ 15] [ 4] [0320] +17:58:38 [ 18] [ 4] [6011] +17:58:38 [ 19] [ 3] [418] +17:58:38 [ 32] [ 6] [668899] +17:58:38 [ 35] [ 32] [6213541000597990=491212019799861] +17:58:38 [ 37] [ 12] [507901881409] +17:58:38 [ 38] [ 6] [954137] +17:58:38 [ 39] [ 2] [51] +17:58:38 [ 41] [ 8] [03014006] +17:58:38 [ 49] [ 3] [418] +17:58:38 [ 54] [ 40] [0001418C0000063175170002418C000006317517] +17:58:38 ============================================================================ +17:58:38 Sending to : +17:58:38 ============================================================================ +17:58:38 + + +waiting on router queue for slot.... +17:58:39 ============================================================================ +17:58:39 Slot Id : <184> +17:58:39 Transaction Type : RESPONSE +17:58:39 Received From : +17:58:39 ============================================================================ +17:58:39 FNo. Len. Field Value +17:58:39 ============================================================================ +17:58:39 [ 1] [ 4] [0210] +17:58:39 [ 2] [ 16] [6213541000597990] +17:58:39 [ 3] [ 6] [010000] +17:58:39 [ 4] [ 12] [000100000000] +17:58:39 [ 7] [ 10] [0320175627] +17:58:39 [ 11] [ 6] [954137] +17:58:39 [ 12] [ 6] [175627] +17:58:39 [ 13] [ 4] [0320] +17:58:39 [ 15] [ 4] [0320] +17:58:39 [ 18] [ 4] [6011] +17:58:39 [ 19] [ 3] [418] +17:58:39 [ 32] [ 6] [668899] +17:58:39 [ 35] [ 32] [6213541000597990=491212019799861] +17:58:39 [ 37] [ 12] [507901881409] +17:58:39 [ 38] [ 6] [954137] +17:58:39 [ 39] [ 2] [51] +17:58:39 [ 41] [ 8] [03014006] +17:58:39 [ 49] [ 3] [418] +17:58:39 [ 54] [ 40] [0001418C0000063175170002418C000006317517] +17:58:39 ============================================================================ +17:58:39 Calculate Source COMM Id = 4 +17:58:39 ============================================================================ +17:58:39 + + +waiting on router queue for slot.... +17:58:46 ============================================================================ +17:58:46 Slot Id : <212> +17:58:46 Transaction Type : REQUEST +17:58:46 Received From : +17:58:46 ============================================================================ +17:58:46 FNo. Len. Field Value +17:58:46 ============================================================================ +17:58:46 [ 1] [ 4] [0800] +17:58:46 [ 7] [ 10] [0320105753] +17:58:46 [ 11] [ 6] [157593] +17:58:46 [ 70] [ 3] [301] +17:58:46 ============================================================================ +17:58:46 + + +waiting on router queue for slot.... +17:58:46 Sending to : +17:58:46 ============================================================================ +17:58:46 ============================================================================ +17:58:46 Slot Id : <212> +17:58:46 Transaction Type : RESPONSE +17:58:46 Received From : +17:58:46 ============================================================================ +17:58:46 FNo. Len. Field Value +17:58:46 ============================================================================ +17:58:46 [ 1] [ 4] [0810] +17:58:46 [ 7] [ 10] [0320105753] +17:58:46 [ 11] [ 6] [157593] +17:58:46 [ 39] [ 2] [00] +17:58:46 [ 70] [ 3] [301] +17:58:46 ============================================================================ +17:58:46 Calculate Source COMM Id = 2 +17:58:46 ============================================================================ +17:58:46 + + +waiting on router queue for slot.... +17:58:47 ============================================================================ +17:58:47 Slot Id : <207> +17:58:47 Transaction Type : REQUEST +17:58:47 Received From : +17:58:47 ============================================================================ +17:58:47 FNo. Len. Field Value +17:58:47 ============================================================================ +17:58:47 [ 1] [ 4] [0200] +17:58:47 [ 2] [ 16] [1808931700001066] +17:58:47 [ 3] [ 6] [011000] +17:58:47 [ 4] [ 12] [000050000000] +17:58:47 [ 7] [ 10] [0320175842] +17:58:47 [ 11] [ 6] [822454] +17:58:47 [ 12] [ 6] [175842] +17:58:47 [ 13] [ 4] [0320] +17:58:47 [ 15] [ 4] [0320] +17:58:47 [ 18] [ 4] [6011] +17:58:47 [ 22] [ 3] [900] +17:58:47 [ 25] [ 2] [02] +17:58:47 [ 28] [ 9] [D00002000] +17:58:47 [ 32] [ 6] [621354] +17:58:47 [ 35] [ 27] [1808931700001066=1803500966] +17:58:47 [ 37] [ 12] [507904795782] +17:58:47 [ 41] [ 8] [07001500] +17:58:47 [ 42] [ 15] [NATIVE ] +17:58:47 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +17:58:47 [ 49] [ 3] [418] +17:58:47 [ 52] [ 16] [F3A814C304EE8DB9] +17:58:47 ============================================================================ +17:58:47 + + +waiting on router queue for slot.... +17:58:47 Sending to : +17:58:47 ============================================================================ +17:58:47 Sending to : +17:58:47 ============================================================================ +17:58:47 ============================================================================ +17:58:47 Slot Id : <213> +17:58:47 Transaction Type : REQUEST +17:58:47 Received From : +17:58:47 ============================================================================ +17:58:47 FNo. Len. Field Value +17:58:47 ============================================================================ +17:58:47 [ 1] [ 4] [0200] +17:58:47 [ 2] [ 16] [6688990602284703] +17:58:47 [ 3] [ 6] [011000] +17:58:47 [ 4] [ 12] [000010000000] +17:58:47 [ 7] [ 10] [0320175842] +17:58:47 [ 11] [ 6] [822456] +17:58:47 [ 12] [ 6] [175842] +17:58:47 [ 13] [ 4] [0320] +17:58:47 [ 15] [ 4] [0320] +17:58:47 [ 18] [ 4] [6011] +17:58:47 [ 22] [ 3] [900] +17:58:47 [ 25] [ 2] [02] +17:58:47 [ 28] [ 9] [D00002000] +17:58:47 [ 32] [ 6] [621354] +17:58:47 [ 35] [ 37] [6688990602284703=43010061470343000000] +17:58:47 [ 37] [ 12] [507902606427] +17:58:47 [ 41] [ 8] [05004300] +17:58:47 [ 42] [ 15] [NATIVE ] +17:58:47 [ 43] [ 40] [Ka deng office LuangprabangLAO] +17:58:47 [ 49] [ 3] [418] +17:58:47 [ 52] [ 16] [7D92D30DC9AE0E1E] +17:58:47 ============================================================================ +17:58:47 + + +waiting on router queue for slot.... +17:58:47 Sending to : +17:58:47 ============================================================================ +17:58:47 Sending to : +17:58:47 ============================================================================ +17:58:47 ============================================================================ +17:58:47 Slot Id : <207> +17:58:47 Transaction Type : REQUEST +17:58:47 Received From : +17:58:47 ============================================================================ +17:58:47 FNo. Len. Field Value +17:58:47 ============================================================================ +17:58:47 [ 1] [ 4] [0200] +17:58:47 [ 2] [ 16] [1808931700001066] +17:58:47 [ 3] [ 6] [011000] +17:58:47 [ 4] [ 12] [000050000000] +17:58:47 [ 7] [ 10] [0320175842] +17:58:47 [ 11] [ 6] [822454] +17:58:47 [ 12] [ 6] [175842] +17:58:47 [ 13] [ 4] [0320] +17:58:47 [ 15] [ 4] [0320] +17:58:47 [ 18] [ 4] [6011] +17:58:47 [ 22] [ 3] [900] +17:58:47 [ 25] [ 2] [02] +17:58:47 [ 28] [ 9] [D00002000] +17:58:47 [ 32] [ 6] [621354] +17:58:47 [ 35] [ 27] [1808931700001066=1803500966] +17:58:47 [ 37] [ 12] [507904795782] +17:58:47 [ 41] [ 8] [07001500] +17:58:47 [ 42] [ 15] [NATIVE ] +17:58:47 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +17:58:47 [ 49] [ 3] [418] +17:58:47 [ 52] [ 16] [F3A814C304EE8DB9] +17:58:47 ============================================================================ +17:58:47 + + +waiting on router queue for slot.... +17:58:47 Sending to : +17:58:47 ============================================================================ +17:58:47 ============================================================================ +17:58:47 Slot Id : <207> +17:58:47 Transaction Type : REQUEST +17:58:47 Received From : +17:58:47 ============================================================================ +17:58:47 FNo. Len. Field Value +17:58:47 ============================================================================ +17:58:47 [ 1] [ 4] [0200] +17:58:47 [ 2] [ 16] [1808931700001066] +17:58:47 [ 3] [ 6] [011000] +17:58:47 [ 4] [ 12] [000050000000] +17:58:47 [ 7] [ 10] [0320175842] +17:58:47 [ 11] [ 6] [822454] +17:58:47 [ 12] [ 6] [175842] +17:58:47 [ 13] [ 4] [0320] +17:58:47 [ 15] [ 4] [0320] +17:58:47 [ 18] [ 4] [6011] +17:58:47 [ 22] [ 3] [900] +17:58:47 [ 25] [ 2] [02] +17:58:47 [ 28] [ 9] [D00002000] +17:58:47 [ 32] [ 6] [621354] +17:58:47 [ 35] [ 27] [1808931700001066=1803500966] +17:58:47 [ 37] [ 12] [507904795782] +17:58:47 [ 41] [ 8] [07001500] +17:58:47 [ 42] [ 15] [NATIVE ] +17:58:47 [ 43] [ 40] [Numtha Market Unit Namtar LAO] +17:58:47 [ 49] [ 3] [418] +17:58:47 [ 52] [ 16] [C55061F68BFE99B8] +17:58:47 ============================================================================ +17:58:47 + + +waiting on router queue for slot.... +17:58:47 Sending to : <2> +17:58:47 ============================================================================ +17:58:47 ============================================================================ +17:58:47 Slot Id : <213> +17:58:47 Transaction Type : REQUEST +17:58:47 Received From : +17:58:47 ============================================================================ +17:58:47 FNo. Len. Field Value +17:58:47 ============================================================================ +17:58:47 [ 1] [ 4] [0200] +17:58:47 [ 2] [ 16] [6688990602284703] +17:58:47 [ 3] [ 6] [011000] +17:58:47 [ 4] [ 12] [000010000000] +17:58:47 [ 7] [ 10] [0320175842] +17:58:47 [ 11] [ 6] [822456] +17:58:47 [ 12] [ 6] [175842] +17:58:47 [ 13] [ 4] [0320] +17:58:47 [ 15] [ 4] [0320] +17:58:47 [ 18] [ 4] [6011] +17:58:47 [ 22] [ 3] [900] +17:58:47 [ 25] [ 2] [02] +17:58:47 [ 28] [ 9] [D00002000] +17:58:47 [ 32] [ 6] [621354] +17:58:47 [ 35] [ 37] [6688990602284703=43010061470343000000] +17:58:47 [ 37] [ 12] [507902606427] +17:58:47 [ 41] [ 8] [05004300] +17:58:47 [ 42] [ 15] [NATIVE ] +17:58:47 [ 43] [ 40] [Ka deng office LuangprabangLAO] +17:58:47 [ 49] [ 3] [418] +17:58:47 [ 52] [ 16] [7D92D30DC9AE0E1E] +17:58:47 ============================================================================ +17:58:47 + + +waiting on router queue for slot.... +17:58:47 Sending to : +17:58:47 ============================================================================ +17:58:47 ============================================================================ +17:58:47 Slot Id : <213> +17:58:47 Transaction Type : REQUEST +17:58:47 Received From : +17:58:47 ============================================================================ +17:58:47 FNo. Len. Field Value +17:58:47 ============================================================================ +17:58:47 [ 1] [ 4] [0200] +17:58:47 [ 2] [ 16] [6688990602284703] +17:58:47 [ 3] [ 6] [011000] +17:58:47 [ 4] [ 12] [000010000000] +17:58:47 [ 7] [ 10] [0320175842] +17:58:47 [ 11] [ 6] [822456] +17:58:47 [ 12] [ 6] [175842] +17:58:47 [ 13] [ 4] [0320] +17:58:47 [ 15] [ 4] [0320] +17:58:47 [ 18] [ 4] [6011] +17:58:47 [ 22] [ 3] [900] +17:58:47 [ 25] [ 2] [02] +17:58:47 [ 28] [ 9] [D00002000] +17:58:47 [ 32] [ 6] [621354] +17:58:47 [ 35] [ 37] [6688990602284703=43010061470343000000] +17:58:47 [ 37] [ 12] [507902606427] +17:58:47 [ 41] [ 8] [05004300] +17:58:47 [ 42] [ 15] [NATIVE ] +17:58:47 [ 43] [ 40] [Ka deng office LuangprabangLAO] +17:58:47 [ 49] [ 3] [418] +17:58:47 [ 52] [ 16] [7AD548241856879E] +17:58:47 ============================================================================ +17:58:47 + + +waiting on router queue for slot.... +17:58:47 Sending to : <4> +17:58:47 ============================================================================ +17:58:48 ============================================================================ +17:58:48 Slot Id : <213> +17:58:48 Transaction Type : RESPONSE +17:58:48 Received From : +17:58:48 ============================================================================ +17:58:48 FNo. Len. Field Value +17:58:48 ============================================================================ +17:58:48 [ 1] [ 4] [0210] +17:58:48 [ 2] [ 16] [6688990602284703] +17:58:48 [ 3] [ 6] [011000] +17:58:48 [ 4] [ 12] [000010000000] +17:58:48 [ 11] [ 6] [822456] +17:58:48 [ 12] [ 6] [175842] +17:58:48 [ 15] [ 4] [0320] +17:58:48 [ 18] [ 4] [6011] +17:58:48 [ 32] [ 6] [621354] +17:58:48 [ 35] [ 37] [6688990602284703=43010061470343000000] +17:58:48 [ 37] [ 12] [507902606427] +17:58:48 [ 38] [ 6] [377870] +17:58:48 [ 39] [ 2] [00] +17:58:48 [ 41] [ 8] [05004300] +17:58:48 [ 49] [ 3] [418] +17:58:48 [ 54] [ 20] [1002418C000006686095] +17:58:48 ============================================================================ +17:58:48 Sending to : +17:58:48 ============================================================================ +17:58:48 + + +waiting on router queue for slot.... +17:58:50 ============================================================================ +17:58:50 Slot Id : <213> +17:58:50 Transaction Type : RESPONSE +17:58:50 Received From : +17:58:50 ============================================================================ +17:58:50 FNo. Len. Field Value +17:58:50 ============================================================================ +17:58:50 [ 1] [ 4] [0210] +17:58:50 [ 2] [ 16] [6688990602284703] +17:58:50 [ 3] [ 6] [011000] +17:58:50 [ 4] [ 12] [000010000000] +17:58:50 [ 11] [ 6] [822456] +17:58:50 [ 12] [ 6] [175842] +17:58:50 [ 15] [ 4] [0320] +17:58:50 [ 18] [ 4] [6011] +17:58:50 [ 32] [ 6] [621354] +17:58:50 [ 35] [ 37] [6688990602284703=43010061470343000000] +17:58:50 [ 37] [ 12] [507902606427] +17:58:50 [ 38] [ 6] [377870] +17:58:50 [ 39] [ 2] [00] +17:58:50 [ 41] [ 8] [05004300] +17:58:50 [ 49] [ 3] [418] +17:58:50 [ 54] [ 20] [1002418C000006686095] +17:58:50 ============================================================================ +17:58:50 Calculate Source COMM Id = 0 +17:58:50 ============================================================================ +17:58:50 + + +waiting on router queue for slot.... +17:58:53 ============================================================================ +17:58:53 Slot Id : <207> +17:58:53 Transaction Type : RESPONSE +17:58:53 Received From : +17:58:53 ============================================================================ +17:58:53 FNo. Len. Field Value +17:58:53 ============================================================================ +17:58:53 [ 1] [ 4] [0210] +17:58:53 [ 2] [ 16] [1808931700001066] +17:58:53 [ 3] [ 6] [011000] +17:58:53 [ 4] [ 12] [000050000000] +17:58:53 [ 6] [ 12] [000050000000] +17:58:53 [ 7] [ 10] [0320175842] +17:58:53 [ 11] [ 6] [822454] +17:58:53 [ 12] [ 6] [175842] +17:58:53 [ 13] [ 4] [0320] +17:58:53 [ 18] [ 4] [6011] +17:58:53 [ 19] [ 3] [418] +17:58:53 [ 22] [ 3] [021] +17:58:53 [ 32] [ 6] [621354] +17:58:53 [ 35] [ 27] [1808931700001066=1803500966] +17:58:53 [ 37] [ 12] [507904795782] +17:58:53 [ 38] [ 6] [822454] +17:58:53 [ 39] [ 2] [00] +17:58:53 [ 41] [ 8] [07001500] +17:58:53 [ 49] [ 3] [418] +17:58:53 [ 52] [ 16] [C55061F68BFE99B8] +17:58:53 [ 54] [ 20] [1001418C000010433600] +17:58:53 ============================================================================ +17:58:53 Sending to : +17:58:53 ============================================================================ +17:58:53 + + +waiting on router queue for slot.... +17:58:55 ============================================================================ +17:58:55 Slot Id : <207> +17:58:55 Transaction Type : RESPONSE +17:58:55 Received From : +17:58:55 ============================================================================ +17:58:55 FNo. Len. Field Value +17:58:55 ============================================================================ +17:58:55 [ 1] [ 4] [0210] +17:58:55 [ 2] [ 16] [1808931700001066] +17:58:55 [ 3] [ 6] [011000] +17:58:55 [ 4] [ 12] [000050000000] +17:58:55 [ 6] [ 12] [000050000000] +17:58:55 [ 7] [ 10] [0320175842] +17:58:55 [ 11] [ 6] [822454] +17:58:55 [ 12] [ 6] [175842] +17:58:55 [ 13] [ 4] [0320] +17:58:55 [ 18] [ 4] [6011] +17:58:55 [ 19] [ 3] [418] +17:58:55 [ 22] [ 3] [021] +17:58:55 [ 32] [ 6] [621354] +17:58:55 [ 35] [ 27] [1808931700001066=1803500966] +17:58:55 [ 37] [ 12] [507904795782] +17:58:55 [ 38] [ 6] [822454] +17:58:55 [ 39] [ 2] [00] +17:58:55 [ 41] [ 8] [07001500] +17:58:55 [ 49] [ 3] [418] +17:58:55 [ 52] [ 16] [C55061F68BFE99B8] +17:58:55 [ 54] [ 20] [1001418C000010433600] +17:58:55 ============================================================================ +17:58:55 Calculate Source COMM Id = 0 +17:58:55 ============================================================================ +17:58:55 + + +waiting on router queue for slot.... +17:58:57 ============================================================================ +17:58:57 Slot Id : <221> +17:58:57 Transaction Type : REQUEST +17:58:57 Received From : +17:58:57 ============================================================================ +17:58:57 FNo. Len. Field Value +17:58:57 ============================================================================ +17:58:57 [ 1] [ 4] [0200] +17:58:57 [ 2] [ 16] [6213544001922712] +17:58:57 [ 3] [ 6] [300000] +17:58:57 [ 4] [ 12] [000000000000] +17:58:57 [ 7] [ 10] [0320175647] +17:58:57 [ 11] [ 6] [954150] +17:58:57 [ 12] [ 6] [175647] +17:58:57 [ 13] [ 4] [0320] +17:58:57 [ 15] [ 4] [0320] +17:58:57 [ 18] [ 4] [6011] +17:58:57 [ 19] [ 3] [418] +17:58:57 [ 22] [ 3] [021] +17:58:57 [ 25] [ 2] [01] +17:58:57 [ 28] [ 9] [D00000000] +17:58:57 [ 32] [ 6] [668899] +17:58:57 [ 35] [ 32] [6213544001922712=491212012271007] +17:58:57 [ 37] [ 12] [507902148132] +17:58:57 [ 41] [ 8] [03020024] +17:58:57 [ 42] [ 15] [APT ] +17:58:57 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +17:58:57 [ 49] [ 3] [418] +17:58:57 [ 52] [ 16] [7EBC5A0C246CDC45] +17:58:57 ============================================================================ +17:58:57 + + +waiting on router queue for slot.... +17:58:57 Sending to : +17:58:57 ============================================================================ +17:58:57 Sending to : +17:58:57 ============================================================================ +17:58:58 ============================================================================ +17:58:58 Slot Id : <221> +17:58:58 Transaction Type : REQUEST +17:58:58 Received From : +17:58:58 ============================================================================ +17:58:58 FNo. Len. Field Value +17:58:58 ============================================================================ +17:58:58 [ 1] [ 4] [0200] +17:58:58 [ 2] [ 16] [6213544001922712] +17:58:58 [ 3] [ 6] [300000] +17:58:58 [ 4] [ 12] [000000000000] +17:58:58 [ 7] [ 10] [0320175647] +17:58:58 [ 11] [ 6] [954150] +17:58:58 [ 12] [ 6] [175647] +17:58:58 [ 13] [ 4] [0320] +17:58:58 [ 15] [ 4] [0320] +17:58:58 [ 18] [ 4] [6011] +17:58:58 [ 19] [ 3] [418] +17:58:58 [ 22] [ 3] [021] +17:58:58 [ 25] [ 2] [01] +17:58:58 [ 28] [ 9] [D00000000] +17:58:58 [ 32] [ 6] [668899] +17:58:58 [ 35] [ 32] [6213544001922712=491212012271007] +17:58:58 [ 37] [ 12] [507902148132] +17:58:58 [ 41] [ 8] [03020024] +17:58:58 [ 42] [ 15] [APT ] +17:58:58 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +17:58:58 [ 49] [ 3] [418] +17:58:58 [ 52] [ 16] [7EBC5A0C246CDC45] +17:58:58 ============================================================================ +17:58:58 + + +waiting on router queue for slot.... +17:58:58 Sending to : +17:58:58 ============================================================================ +17:58:58 ============================================================================ +17:58:58 Slot Id : <221> +17:58:58 Transaction Type : REQUEST +17:58:58 Received From : +17:58:58 ============================================================================ +17:58:58 FNo. Len. Field Value +17:58:58 ============================================================================ +17:58:58 [ 1] [ 4] [0200] +17:58:58 [ 2] [ 16] [6213544001922712] +17:58:58 [ 3] [ 6] [300000] +17:58:58 [ 4] [ 12] [000000000000] +17:58:58 [ 7] [ 10] [0320175647] +17:58:58 [ 11] [ 6] [954150] +17:58:58 [ 12] [ 6] [175647] +17:58:58 [ 13] [ 4] [0320] +17:58:58 [ 15] [ 4] [0320] +17:58:58 [ 18] [ 4] [6011] +17:58:58 [ 19] [ 3] [418] +17:58:58 [ 22] [ 3] [021] +17:58:58 [ 25] [ 2] [01] +17:58:58 [ 28] [ 9] [D00000000] +17:58:58 [ 32] [ 6] [668899] +17:58:58 [ 35] [ 32] [6213544001922712=491212012271007] +17:58:58 [ 37] [ 12] [507902148132] +17:58:58 [ 41] [ 8] [03020024] +17:58:58 [ 42] [ 15] [APT ] +17:58:58 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +17:58:58 [ 49] [ 3] [418] +17:58:58 [ 52] [ 16] [EDB5A23AD83A5243] +17:58:58 ============================================================================ +17:58:58 + + +waiting on router queue for slot.... +17:58:58 Sending to : <0> +17:58:58 ============================================================================ +17:58:58 ============================================================================ +17:58:58 Slot Id : <230> +17:58:58 Transaction Type : REQUEST +17:58:58 Received From : +17:58:58 ============================================================================ +17:58:58 FNo. Len. Field Value +17:58:58 ============================================================================ +17:58:58 [ 1] [ 4] [0800] +17:58:58 [ 7] [ 10] [0321011046] +17:58:58 [ 11] [ 6] [181046] +17:58:58 [ 37] [ 12] [57918181046] +17:58:58 [ 70] [ 3] [301] +17:58:58 ============================================================================ +17:58:58 + + +waiting on router queue for slot.... +17:58:58 Sending to : +17:58:58 ============================================================================ +17:58:58 ============================================================================ +17:58:58 Slot Id : <230> +17:58:58 Transaction Type : RESPONSE +17:58:58 Received From : +17:58:58 ============================================================================ +17:58:58 FNo. Len. Field Value +17:58:58 ============================================================================ +17:58:58 [ 1] [ 4] [0810] +17:58:58 [ 7] [ 10] [0321011046] +17:58:58 [ 11] [ 6] [181046] +17:58:58 [ 37] [ 12] [579181810460] +17:58:58 [ 39] [ 2] [00] +17:58:58 [ 70] [ 3] [810] +17:58:58 ============================================================================ +17:58:58 Calculate Source COMM Id = 6 +17:58:58 ============================================================================ +17:58:58 + + +waiting on router queue for slot.... +17:58:58 ============================================================================ +17:58:58 Slot Id : <221> +17:58:58 Transaction Type : RESPONSE +17:58:58 Received From : +17:58:58 ============================================================================ +17:58:58 FNo. Len. Field Value +17:58:58 ============================================================================ +17:58:58 [ 1] [ 4] [0210] +17:58:58 [ 2] [ 16] [6213544001922712] +17:58:58 [ 3] [ 6] [300000] +17:58:58 [ 4] [ 12] [000000000000] +17:58:58 [ 7] [ 10] [0320175647] +17:58:58 [ 11] [ 6] [954150] +17:58:58 [ 12] [ 6] [175647] +17:58:58 [ 13] [ 4] [0320] +17:58:58 [ 15] [ 4] [0320] +17:58:58 [ 18] [ 4] [6011] +17:58:58 [ 19] [ 3] [418] +17:58:58 [ 32] [ 6] [668899] +17:58:58 [ 35] [ 32] [6213544001922712=491212012271007] +17:58:58 [ 37] [ 12] [507902148132] +17:58:58 [ 38] [ 6] [119473] +17:58:58 [ 39] [ 2] [00] +17:58:58 [ 41] [ 8] [03020024] +17:58:58 [ 49] [ 3] [418] +17:58:58 [ 54] [ 40] [0001418C0000394195190002418C000039419519] +17:58:58 ============================================================================ +17:58:58 Sending to : +17:58:58 ============================================================================ +17:58:58 + + +waiting on router queue for slot.... +17:59:00 ============================================================================ +17:59:00 Slot Id : <221> +17:59:00 Transaction Type : RESPONSE +17:59:00 Received From : +17:59:00 ============================================================================ +17:59:00 FNo. Len. Field Value +17:59:00 ============================================================================ +17:59:00 [ 1] [ 4] [0210] +17:59:00 [ 2] [ 16] [6213544001922712] +17:59:00 [ 3] [ 6] [300000] +17:59:00 [ 4] [ 12] [000000000000] +17:59:00 [ 7] [ 10] [0320175647] +17:59:00 [ 11] [ 6] [954150] +17:59:00 [ 12] [ 6] [175647] +17:59:00 [ 13] [ 4] [0320] +17:59:00 [ 15] [ 4] [0320] +17:59:00 [ 18] [ 4] [6011] +17:59:00 [ 19] [ 3] [418] +17:59:00 [ 32] [ 6] [668899] +17:59:00 [ 35] [ 32] [6213544001922712=491212012271007] +17:59:00 [ 37] [ 12] [507902148132] +17:59:00 [ 38] [ 6] [119473] +17:59:00 [ 39] [ 2] [00] +17:59:00 [ 41] [ 8] [03020024] +17:59:00 [ 49] [ 3] [418] +17:59:00 [ 54] [ 40] [0001418C0000394195190002418C000039419519] +17:59:00 ============================================================================ +17:59:00 Calculate Source COMM Id = 4 +17:59:00 ============================================================================ +17:59:00 + + +waiting on router queue for slot.... +17:59:03 ============================================================================ +17:59:03 Slot Id : <183> +17:59:03 Transaction Type : REQUEST +17:59:03 Received From : +17:59:03 ============================================================================ +17:59:03 FNo. Len. Field Value +17:59:03 ============================================================================ +17:59:03 [ 1] [ 4] [0800] +17:59:03 [ 7] [ 10] [0320105809] +17:59:03 [ 11] [ 6] [157594] +17:59:03 [ 70] [ 3] [301] +17:59:03 ============================================================================ +17:59:03 + + +waiting on router queue for slot.... +17:59:03 Sending to : +17:59:03 ============================================================================ +17:59:03 ============================================================================ +17:59:03 Slot Id : <183> +17:59:03 Transaction Type : RESPONSE +17:59:03 Received From : +17:59:03 ============================================================================ +17:59:03 FNo. Len. Field Value +17:59:03 ============================================================================ +17:59:03 [ 1] [ 4] [0810] +17:59:03 [ 7] [ 10] [0320105809] +17:59:03 [ 11] [ 6] [157594] +17:59:03 [ 39] [ 2] [00] +17:59:03 [ 70] [ 3] [301] +17:59:03 ============================================================================ +17:59:03 Calculate Source COMM Id = 2 +17:59:03 ============================================================================ +17:59:03 + + +waiting on router queue for slot.... +17:59:19 ============================================================================ +17:59:19 Slot Id : <169> +17:59:19 Transaction Type : REQUEST +17:59:19 Received From : +17:59:19 ============================================================================ +17:59:19 FNo. Len. Field Value +17:59:19 ============================================================================ +17:59:19 [ 1] [ 4] [0800] +17:59:19 [ 7] [ 10] [0320105826] +17:59:19 [ 11] [ 6] [157595] +17:59:19 [ 70] [ 3] [301] +17:59:19 ============================================================================ +17:59:19 + + +waiting on router queue for slot.... +17:59:19 Sending to : +17:59:19 ============================================================================ +17:59:19 ============================================================================ +17:59:19 Slot Id : <169> +17:59:19 Transaction Type : RESPONSE +17:59:19 Received From : +17:59:19 ============================================================================ +17:59:19 FNo. Len. Field Value +17:59:19 ============================================================================ +17:59:19 [ 1] [ 4] [0810] +17:59:19 [ 7] [ 10] [0320105826] +17:59:19 [ 11] [ 6] [157595] +17:59:19 [ 39] [ 2] [00] +17:59:19 [ 70] [ 3] [301] +17:59:19 ============================================================================ +17:59:19 Calculate Source COMM Id = 2 +17:59:19 ============================================================================ +17:59:19 + + +waiting on router queue for slot.... +17:59:23 ============================================================================ +17:59:23 Slot Id : <205> +17:59:23 Transaction Type : REQUEST +17:59:23 Received From : +17:59:23 ============================================================================ +17:59:23 FNo. Len. Field Value +17:59:23 ============================================================================ +17:59:23 [ 1] [ 4] [0200] +17:59:23 [ 2] [ 16] [6213544001922712] +17:59:23 [ 3] [ 6] [010000] +17:59:23 [ 4] [ 12] [000010000000] +17:59:23 [ 7] [ 10] [0320175713] +17:59:23 [ 11] [ 6] [954164] +17:59:23 [ 12] [ 6] [175713] +17:59:23 [ 13] [ 4] [0320] +17:59:23 [ 15] [ 4] [0320] +17:59:23 [ 18] [ 4] [6011] +17:59:23 [ 19] [ 3] [418] +17:59:23 [ 22] [ 3] [021] +17:59:23 [ 25] [ 2] [01] +17:59:23 [ 28] [ 9] [D00002000] +17:59:23 [ 32] [ 6] [668899] +17:59:23 [ 35] [ 32] [6213544001922712=491212012271007] +17:59:23 [ 37] [ 12] [507902148133] +17:59:23 [ 41] [ 8] [03020024] +17:59:23 [ 42] [ 15] [APT ] +17:59:23 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +17:59:23 [ 49] [ 3] [418] +17:59:23 [ 52] [ 16] [7EBC5A0C246CDC45] +17:59:23 ============================================================================ +17:59:23 + + +waiting on router queue for slot.... +17:59:23 Sending to : +17:59:23 ============================================================================ +17:59:23 Sending to : +17:59:23 ============================================================================ +17:59:23 ============================================================================ +17:59:23 Slot Id : <205> +17:59:23 Transaction Type : REQUEST +17:59:23 Received From : +17:59:23 ============================================================================ +17:59:23 FNo. Len. Field Value +17:59:23 ============================================================================ +17:59:23 [ 1] [ 4] [0200] +17:59:23 [ 2] [ 16] [6213544001922712] +17:59:23 [ 3] [ 6] [010000] +17:59:23 [ 4] [ 12] [000010000000] +17:59:23 [ 7] [ 10] [0320175713] +17:59:23 [ 11] [ 6] [954164] +17:59:23 [ 12] [ 6] [175713] +17:59:23 [ 13] [ 4] [0320] +17:59:23 [ 15] [ 4] [0320] +17:59:23 [ 18] [ 4] [6011] +17:59:23 [ 19] [ 3] [418] +17:59:23 [ 22] [ 3] [021] +17:59:23 [ 25] [ 2] [01] +17:59:23 [ 28] [ 9] [D00002000] +17:59:23 [ 32] [ 6] [668899] +17:59:23 [ 35] [ 32] [6213544001922712=491212012271007] +17:59:23 [ 37] [ 12] [507902148133] +17:59:23 [ 41] [ 8] [03020024] +17:59:23 [ 42] [ 15] [APT ] +17:59:23 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +17:59:23 [ 49] [ 3] [418] +17:59:23 [ 52] [ 16] [7EBC5A0C246CDC45] +17:59:23 ============================================================================ +17:59:23 + + +waiting on router queue for slot.... +17:59:23 Sending to : +17:59:23 ============================================================================ +17:59:23 ============================================================================ +17:59:23 Slot Id : <205> +17:59:23 Transaction Type : REQUEST +17:59:23 Received From : +17:59:23 ============================================================================ +17:59:23 FNo. Len. Field Value +17:59:23 ============================================================================ +17:59:23 [ 1] [ 4] [0200] +17:59:23 [ 2] [ 16] [6213544001922712] +17:59:23 [ 3] [ 6] [010000] +17:59:23 [ 4] [ 12] [000010000000] +17:59:23 [ 7] [ 10] [0320175713] +17:59:23 [ 11] [ 6] [954164] +17:59:23 [ 12] [ 6] [175713] +17:59:23 [ 13] [ 4] [0320] +17:59:23 [ 15] [ 4] [0320] +17:59:23 [ 18] [ 4] [6011] +17:59:23 [ 19] [ 3] [418] +17:59:23 [ 22] [ 3] [021] +17:59:23 [ 25] [ 2] [01] +17:59:23 [ 28] [ 9] [D00002000] +17:59:23 [ 32] [ 6] [668899] +17:59:23 [ 35] [ 32] [6213544001922712=491212012271007] +17:59:23 [ 37] [ 12] [507902148133] +17:59:23 [ 41] [ 8] [03020024] +17:59:23 [ 42] [ 15] [APT ] +17:59:23 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +17:59:23 [ 49] [ 3] [418] +17:59:23 [ 52] [ 16] [EDB5A23AD83A5243] +17:59:23 ============================================================================ +17:59:23 + + +waiting on router queue for slot.... +17:59:23 Sending to : <0> +17:59:23 ============================================================================ +17:59:24 ============================================================================ +17:59:24 Slot Id : <205> +17:59:24 Transaction Type : RESPONSE +17:59:24 Received From : +17:59:24 ============================================================================ +17:59:24 FNo. Len. Field Value +17:59:24 ============================================================================ +17:59:24 [ 1] [ 4] [0210] +17:59:24 [ 2] [ 16] [6213544001922712] +17:59:24 [ 3] [ 6] [010000] +17:59:24 [ 4] [ 12] [000010000000] +17:59:24 [ 7] [ 10] [0320175713] +17:59:24 [ 11] [ 6] [954164] +17:59:24 [ 12] [ 6] [175713] +17:59:24 [ 13] [ 4] [0320] +17:59:24 [ 15] [ 4] [0320] +17:59:24 [ 18] [ 4] [6011] +17:59:24 [ 19] [ 3] [418] +17:59:24 [ 32] [ 6] [668899] +17:59:24 [ 35] [ 32] [6213544001922712=491212012271007] +17:59:24 [ 37] [ 12] [507902148133] +17:59:24 [ 38] [ 6] [734004] +17:59:24 [ 39] [ 2] [00] +17:59:24 [ 41] [ 8] [03020024] +17:59:24 [ 49] [ 3] [418] +17:59:24 [ 54] [ 40] [0001418C0000292195190002418C000029219519] +17:59:24 ============================================================================ +17:59:24 Sending to : +17:59:24 ============================================================================ +17:59:24 + + +waiting on router queue for slot.... +17:59:25 ============================================================================ +17:59:25 Slot Id : <205> +17:59:25 Transaction Type : RESPONSE +17:59:25 Received From : +17:59:25 ============================================================================ +17:59:25 FNo. Len. Field Value +17:59:25 ============================================================================ +17:59:25 [ 1] [ 4] [0210] +17:59:25 [ 2] [ 16] [6213544001922712] +17:59:25 [ 3] [ 6] [010000] +17:59:25 [ 4] [ 12] [000010000000] +17:59:25 [ 7] [ 10] [0320175713] +17:59:25 [ 11] [ 6] [954164] +17:59:25 [ 12] [ 6] [175713] +17:59:25 [ 13] [ 4] [0320] +17:59:25 [ 15] [ 4] [0320] +17:59:25 [ 18] [ 4] [6011] +17:59:25 [ 19] [ 3] [418] +17:59:25 [ 32] [ 6] [668899] +17:59:25 [ 35] [ 32] [6213544001922712=491212012271007] +17:59:25 [ 37] [ 12] [507902148133] +17:59:25 [ 38] [ 6] [734004] +17:59:25 [ 39] [ 2] [00] +17:59:25 [ 41] [ 8] [03020024] +17:59:25 [ 49] [ 3] [418] +17:59:25 [ 54] [ 40] [0001418C0000292195190002418C000029219519] +17:59:25 ============================================================================ +17:59:25 Calculate Source COMM Id = 4 +17:59:25 ============================================================================ +17:59:25 + + +waiting on router queue for slot.... +17:59:27 ============================================================================ +17:59:27 Slot Id : <185> +17:59:27 Transaction Type : REQUEST +17:59:27 Received From : +17:59:27 ============================================================================ +17:59:27 FNo. Len. Field Value +17:59:27 ============================================================================ +17:59:27 [ 1] [ 4] [0800] +17:59:27 [ 2] [ 5] [02531] +17:59:27 [ 3] [ 6] [579178] +17:59:27 [ 7] [ 10] [0320105927] +17:59:27 [ 11] [ 6] [807456] +17:59:27 [ 15] [ 10] [0320105927] +17:59:27 [ 37] [ 11] [57917807456] +17:59:27 [ 70] [ 3] [001] +17:59:27 ============================================================================ +17:59:27 + + +waiting on router queue for slot.... +17:59:27 ============================================================================ +17:59:27 Slot Id : <185> +17:59:27 Transaction Type : RESPONSE +17:59:27 Received From : +17:59:27 ============================================================================ +17:59:27 FNo. Len. Field Value +17:59:27 ============================================================================ +17:59:27 [ 1] [ 4] [0810] +17:59:27 [ 7] [ 10] [0320105927] +17:59:27 [ 11] [ 6] [807456] +17:59:27 [ 15] [ 4] [0320] +17:59:27 [ 37] [ 12] [57917807456] +17:59:27 [ 39] [ 2] [00] +17:59:27 [ 70] [ 3] [001] +17:59:27 ============================================================================ +17:59:27 Sending to : +17:59:27 ============================================================================ +17:59:27 + + +waiting on router queue for slot.... +17:59:30 ============================================================================ +17:59:30 Slot Id : <149> +17:59:30 Transaction Type : REQUEST +17:59:30 Received From : +17:59:30 ============================================================================ +17:59:30 FNo. Len. Field Value +17:59:30 ============================================================================ +17:59:30 [ 1] [ 4] [0800] +17:59:30 [ 7] [ 10] [0320105837] +17:59:30 [ 11] [ 6] [157596] +17:59:30 [ 70] [ 3] [301] +17:59:30 ============================================================================ +17:59:30 + + +waiting on router queue for slot.... +17:59:30 Sending to : +17:59:30 ============================================================================ +17:59:30 ============================================================================ +17:59:30 Slot Id : <149> +17:59:30 Transaction Type : RESPONSE +17:59:30 Received From : +17:59:30 ============================================================================ +17:59:30 FNo. Len. Field Value +17:59:30 ============================================================================ +17:59:30 [ 1] [ 4] [0810] +17:59:30 [ 7] [ 10] [0320105837] +17:59:30 [ 11] [ 6] [157596] +17:59:30 [ 39] [ 2] [00] +17:59:30 [ 70] [ 3] [301] +17:59:30 ============================================================================ +17:59:30 Calculate Source COMM Id = 2 +17:59:30 ============================================================================ +17:59:30 + + +waiting on router queue for slot.... +17:59:41 ============================================================================ +17:59:41 Slot Id : <232> +17:59:41 Transaction Type : REQUEST +17:59:41 Received From : +17:59:41 ============================================================================ +17:59:41 FNo. Len. Field Value +17:59:41 ============================================================================ +17:59:41 [ 1] [ 4] [0800] +17:59:41 [ 7] [ 10] [0320105848] +17:59:41 [ 11] [ 6] [157597] +17:59:41 [ 70] [ 3] [301] +17:59:41 ============================================================================ +17:59:41 + + +waiting on router queue for slot.... +17:59:41 Sending to : +17:59:41 ============================================================================ +17:59:41 ============================================================================ +17:59:41 Slot Id : <232> +17:59:41 Transaction Type : RESPONSE +17:59:41 Received From : +17:59:41 ============================================================================ +17:59:41 FNo. Len. Field Value +17:59:41 ============================================================================ +17:59:41 [ 1] [ 4] [0810] +17:59:41 [ 7] [ 10] [0320105848] +17:59:41 [ 11] [ 6] [157597] +17:59:41 [ 39] [ 2] [00] +17:59:41 [ 70] [ 3] [301] +17:59:41 ============================================================================ +17:59:41 Calculate Source COMM Id = 2 +17:59:41 ============================================================================ +17:59:41 + + +waiting on router queue for slot.... +17:59:52 ============================================================================ +17:59:52 Slot Id : <208> +17:59:52 Transaction Type : REQUEST +17:59:52 Received From : +17:59:52 ============================================================================ +17:59:52 FNo. Len. Field Value +17:59:52 ============================================================================ +17:59:52 [ 1] [ 4] [0200] +17:59:52 [ 2] [ 16] [6688990106066002] +17:59:52 [ 3] [ 6] [012000] +17:59:52 [ 4] [ 12] [000100000000] +17:59:52 [ 7] [ 10] [0320175947] +17:59:52 [ 11] [ 6] [822659] +17:59:52 [ 12] [ 6] [175947] +17:59:52 [ 13] [ 4] [0320] +17:59:52 [ 15] [ 4] [0320] +17:59:52 [ 18] [ 4] [6011] +17:59:52 [ 22] [ 3] [900] +17:59:52 [ 25] [ 2] [02] +17:59:52 [ 28] [ 9] [D00002000] +17:59:52 [ 32] [ 6] [621354] +17:59:52 [ 35] [ 37] [6688990106066002=43111231600285100000] +17:59:52 [ 37] [ 12] [507902916645] +17:59:52 [ 41] [ 8] [12001400] +17:59:52 [ 42] [ 15] [NATIVE ] +17:59:52 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +17:59:52 [ 49] [ 3] [418] +17:59:52 [ 52] [ 16] [28C6B54F42115620] +17:59:52 ============================================================================ +17:59:52 + + +waiting on router queue for slot.... +17:59:52 Sending to : +17:59:52 ============================================================================ +17:59:52 Sending to : +17:59:52 ============================================================================ +17:59:53 ============================================================================ +17:59:53 Slot Id : <208> +17:59:53 Transaction Type : REQUEST +17:59:53 Received From : +17:59:53 ============================================================================ +17:59:53 FNo. Len. Field Value +17:59:53 ============================================================================ +17:59:53 [ 1] [ 4] [0200] +17:59:53 [ 2] [ 16] [6688990106066002] +17:59:53 [ 3] [ 6] [012000] +17:59:53 [ 4] [ 12] [000100000000] +17:59:53 [ 7] [ 10] [0320175947] +17:59:53 [ 11] [ 6] [822659] +17:59:53 [ 12] [ 6] [175947] +17:59:53 [ 13] [ 4] [0320] +17:59:53 [ 15] [ 4] [0320] +17:59:53 [ 18] [ 4] [6011] +17:59:53 [ 22] [ 3] [900] +17:59:53 [ 25] [ 2] [02] +17:59:53 [ 28] [ 9] [D00002000] +17:59:53 [ 32] [ 6] [621354] +17:59:53 [ 35] [ 37] [6688990106066002=43111231600285100000] +17:59:53 [ 37] [ 12] [507902916645] +17:59:53 [ 41] [ 8] [12001400] +17:59:53 [ 42] [ 15] [NATIVE ] +17:59:53 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +17:59:53 [ 49] [ 3] [418] +17:59:53 [ 52] [ 16] [28C6B54F42115620] +17:59:53 ============================================================================ +17:59:53 + + +waiting on router queue for slot.... +17:59:53 Sending to : +17:59:53 ============================================================================ +17:59:53 ============================================================================ +17:59:53 Slot Id : <208> +17:59:53 Transaction Type : REQUEST +17:59:53 Received From : +17:59:53 ============================================================================ +17:59:53 FNo. Len. Field Value +17:59:53 ============================================================================ +17:59:53 [ 1] [ 4] [0200] +17:59:53 [ 2] [ 16] [6688990106066002] +17:59:53 [ 3] [ 6] [012000] +17:59:53 [ 4] [ 12] [000100000000] +17:59:53 [ 7] [ 10] [0320175947] +17:59:53 [ 11] [ 6] [822659] +17:59:53 [ 12] [ 6] [175947] +17:59:53 [ 13] [ 4] [0320] +17:59:53 [ 15] [ 4] [0320] +17:59:53 [ 18] [ 4] [6011] +17:59:53 [ 22] [ 3] [900] +17:59:53 [ 25] [ 2] [02] +17:59:53 [ 28] [ 9] [D00002000] +17:59:53 [ 32] [ 6] [621354] +17:59:53 [ 35] [ 37] [6688990106066002=43111231600285100000] +17:59:53 [ 37] [ 12] [507902916645] +17:59:53 [ 41] [ 8] [12001400] +17:59:53 [ 42] [ 15] [NATIVE ] +17:59:53 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +17:59:53 [ 49] [ 3] [418] +17:59:53 [ 52] [ 16] [DE067614898276E2] +17:59:53 ============================================================================ +17:59:53 + + +waiting on router queue for slot.... +17:59:53 Sending to : <4> +17:59:53 ============================================================================ +17:59:54 ============================================================================ +17:59:54 Slot Id : <208> +17:59:54 Transaction Type : RESPONSE +17:59:54 Received From : +17:59:54 ============================================================================ +17:59:54 FNo. Len. Field Value +17:59:54 ============================================================================ +17:59:54 [ 1] [ 4] [0210] +17:59:54 [ 2] [ 16] [6688990106066002] +17:59:54 [ 3] [ 6] [012000] +17:59:54 [ 4] [ 12] [000100000000] +17:59:54 [ 11] [ 6] [822659] +17:59:54 [ 12] [ 6] [175947] +17:59:54 [ 15] [ 4] [0320] +17:59:54 [ 18] [ 4] [6011] +17:59:54 [ 32] [ 6] [621354] +17:59:54 [ 35] [ 37] [6688990106066002=43111231600285100000] +17:59:54 [ 37] [ 12] [507902916645] +17:59:54 [ 38] [ 6] [818784] +17:59:54 [ 39] [ 2] [00] +17:59:54 [ 41] [ 8] [12001400] +17:59:54 [ 49] [ 3] [418] +17:59:54 [ 54] [ 20] [2002418C000119806639] +17:59:54 ============================================================================ +17:59:54 Sending to : +17:59:54 ============================================================================ +17:59:54 + + +waiting on router queue for slot.... +17:59:54 ============================================================================ +17:59:54 Slot Id : <211> +17:59:54 Transaction Type : REQUEST +17:59:54 Received From : +17:59:54 ============================================================================ +17:59:54 FNo. Len. Field Value +17:59:54 ============================================================================ +17:59:54 [ 1] [ 4] [0200] +17:59:54 [ 2] [ 16] [6688990040135855] +17:59:54 [ 3] [ 6] [011000] +17:59:54 [ 4] [ 12] [000100000000] +17:59:54 [ 7] [ 10] [0320175949] +17:59:54 [ 11] [ 6] [822665] +17:59:54 [ 12] [ 6] [175949] +17:59:54 [ 13] [ 4] [0320] +17:59:54 [ 15] [ 4] [0320] +17:59:54 [ 18] [ 4] [6011] +17:59:54 [ 22] [ 3] [900] +17:59:54 [ 25] [ 2] [02] +17:59:54 [ 28] [ 9] [D00002000] +17:59:54 [ 32] [ 6] [621354] +17:59:54 [ 35] [ 37] [6688990040135855=98041261047595600000] +17:59:54 [ 37] [ 12] [507904560420] +17:59:54 [ 41] [ 8] [02001900] +17:59:54 [ 42] [ 15] [NATIVE ] +17:59:54 [ 43] [ 40] [Khammouane Branch 02 Thakek LAO] +17:59:54 [ 49] [ 3] [418] +17:59:54 [ 52] [ 16] [C7840116C14F39B0] +17:59:54 ============================================================================ +17:59:54 + + +waiting on router queue for slot.... +17:59:54 Sending to : +17:59:54 ============================================================================ +17:59:54 Sending to : +17:59:54 ============================================================================ +17:59:55 ============================================================================ +17:59:55 Slot Id : <211> +17:59:55 Transaction Type : REQUEST +17:59:55 Received From : +17:59:55 ============================================================================ +17:59:55 FNo. Len. Field Value +17:59:55 ============================================================================ +17:59:55 [ 1] [ 4] [0200] +17:59:55 [ 2] [ 16] [6688990040135855] +17:59:55 [ 3] [ 6] [011000] +17:59:55 [ 4] [ 12] [000100000000] +17:59:55 [ 7] [ 10] [0320175949] +17:59:55 [ 11] [ 6] [822665] +17:59:55 [ 12] [ 6] [175949] +17:59:55 [ 13] [ 4] [0320] +17:59:55 [ 15] [ 4] [0320] +17:59:55 [ 18] [ 4] [6011] +17:59:55 [ 22] [ 3] [900] +17:59:55 [ 25] [ 2] [02] +17:59:55 [ 28] [ 9] [D00002000] +17:59:55 [ 32] [ 6] [621354] +17:59:55 [ 35] [ 37] [6688990040135855=98041261047595600000] +17:59:55 [ 37] [ 12] [507904560420] +17:59:55 [ 41] [ 8] [02001900] +17:59:55 [ 42] [ 15] [NATIVE ] +17:59:55 [ 43] [ 40] [Khammouane Branch 02 Thakek LAO] +17:59:55 [ 49] [ 3] [418] +17:59:55 [ 52] [ 16] [C7840116C14F39B0] +17:59:55 ============================================================================ +17:59:55 + + +waiting on router queue for slot.... +17:59:55 Sending to : +17:59:55 ============================================================================ +17:59:55 ============================================================================ +17:59:55 Slot Id : <211> +17:59:55 Transaction Type : REQUEST +17:59:55 Received From : +17:59:55 ============================================================================ +17:59:55 FNo. Len. Field Value +17:59:55 ============================================================================ +17:59:55 [ 1] [ 4] [0200] +17:59:55 [ 2] [ 16] [6688990040135855] +17:59:55 [ 3] [ 6] [011000] +17:59:55 [ 4] [ 12] [000100000000] +17:59:55 [ 7] [ 10] [0320175949] +17:59:55 [ 11] [ 6] [822665] +17:59:55 [ 12] [ 6] [175949] +17:59:55 [ 13] [ 4] [0320] +17:59:55 [ 15] [ 4] [0320] +17:59:55 [ 18] [ 4] [6011] +17:59:55 [ 22] [ 3] [900] +17:59:55 [ 25] [ 2] [02] +17:59:55 [ 28] [ 9] [D00002000] +17:59:55 [ 32] [ 6] [621354] +17:59:55 [ 35] [ 37] [6688990040135855=98041261047595600000] +17:59:55 [ 37] [ 12] [507904560420] +17:59:55 [ 41] [ 8] [02001900] +17:59:55 [ 42] [ 15] [NATIVE ] +17:59:55 [ 43] [ 40] [Khammouane Branch 02 Thakek LAO] +17:59:55 [ 49] [ 3] [418] +17:59:55 [ 52] [ 16] [7B73965307A8D3B7] +17:59:55 ============================================================================ +17:59:55 + + +waiting on router queue for slot.... +17:59:55 Sending to : <4> +17:59:55 ============================================================================ +17:59:55 ============================================================================ +17:59:55 Slot Id : <208> +17:59:55 Transaction Type : RESPONSE +17:59:55 Received From : +17:59:55 ============================================================================ +17:59:55 FNo. Len. Field Value +17:59:55 ============================================================================ +17:59:55 [ 1] [ 4] [0210] +17:59:55 [ 2] [ 16] [6688990106066002] +17:59:55 [ 3] [ 6] [012000] +17:59:55 [ 4] [ 12] [000100000000] +17:59:55 [ 11] [ 6] [822659] +17:59:55 [ 12] [ 6] [175947] +17:59:55 [ 15] [ 4] [0320] +17:59:55 [ 18] [ 4] [6011] +17:59:55 [ 32] [ 6] [621354] +17:59:55 [ 35] [ 37] [6688990106066002=43111231600285100000] +17:59:55 [ 37] [ 12] [507902916645] +17:59:55 [ 38] [ 6] [818784] +17:59:55 [ 39] [ 2] [00] +17:59:55 [ 41] [ 8] [12001400] +17:59:55 [ 49] [ 3] [418] +17:59:55 [ 54] [ 20] [2002418C000119806639] +17:59:55 ============================================================================ +17:59:55 Calculate Source COMM Id = 0 +17:59:55 ============================================================================ +17:59:55 + + +waiting on router queue for slot.... +17:59:56 ============================================================================ +17:59:56 Slot Id : <211> +17:59:56 Transaction Type : RESPONSE +17:59:56 Received From : +17:59:56 ============================================================================ +17:59:56 FNo. Len. Field Value +17:59:56 ============================================================================ +17:59:56 [ 1] [ 4] [0210] +17:59:56 [ 2] [ 16] [6688990040135855] +17:59:56 [ 3] [ 6] [011000] +17:59:56 [ 4] [ 12] [000100000000] +17:59:56 [ 11] [ 6] [822665] +17:59:56 [ 12] [ 6] [175949] +17:59:56 [ 15] [ 4] [0320] +17:59:56 [ 18] [ 4] [6011] +17:59:56 [ 32] [ 6] [621354] +17:59:56 [ 35] [ 37] [6688990040135855=98041261047595600000] +17:59:56 [ 37] [ 12] [507904560420] +17:59:56 [ 38] [ 6] [757446] +17:59:56 [ 39] [ 2] [00] +17:59:56 [ 41] [ 8] [02001900] +17:59:56 [ 49] [ 3] [418] +17:59:56 [ 54] [ 20] [1002418C001563134329] +17:59:56 ============================================================================ +17:59:56 Sending to : +17:59:56 ============================================================================ +17:59:56 + + +waiting on router queue for slot.... +17:59:56 ============================================================================ +17:59:56 Slot Id : <180> +17:59:56 Transaction Type : REQUEST +17:59:56 Received From : +17:59:56 ============================================================================ +17:59:56 FNo. Len. Field Value +17:59:56 ============================================================================ +17:59:56 [ 1] [ 4] [0800] +17:59:56 [ 7] [ 10] [0320105903] +17:59:56 [ 11] [ 6] [157598] +17:59:56 [ 70] [ 3] [301] +17:59:56 ============================================================================ +17:59:56 + + +waiting on router queue for slot.... +17:59:56 Sending to : +17:59:56 ============================================================================ +17:59:56 ============================================================================ +17:59:56 Slot Id : <180> +17:59:56 Transaction Type : RESPONSE +17:59:56 Received From : +17:59:56 ============================================================================ +17:59:56 FNo. Len. Field Value +17:59:56 ============================================================================ +17:59:56 [ 1] [ 4] [0810] +17:59:56 [ 7] [ 10] [0320105903] +17:59:56 [ 11] [ 6] [157598] +17:59:56 [ 39] [ 2] [00] +17:59:56 [ 70] [ 3] [301] +17:59:56 ============================================================================ +17:59:56 Calculate Source COMM Id = 2 +17:59:56 ============================================================================ +17:59:56 + + +waiting on router queue for slot.... +17:59:57 ============================================================================ +17:59:57 Slot Id : <222> +17:59:57 Transaction Type : REQUEST +17:59:57 Received From : +17:59:57 ============================================================================ +17:59:57 FNo. Len. Field Value +17:59:57 ============================================================================ +17:59:57 [ 1] [ 4] [0800] +17:59:57 [ 7] [ 10] [0320110742] +17:59:57 [ 11] [ 6] [084807] +17:59:57 [ 37] [ 12] [57918084807] +17:59:57 [ 70] [ 3] [301] +17:59:57 ============================================================================ +17:59:57 + + +waiting on router queue for slot.... +17:59:57 Sending to : +17:59:57 ============================================================================ +17:59:57 ============================================================================ +17:59:57 Slot Id : <222> +17:59:57 Transaction Type : RESPONSE +17:59:57 Received From : +17:59:57 ============================================================================ +17:59:57 FNo. Len. Field Value +17:59:57 ============================================================================ +17:59:57 [ 1] [ 4] [0810] +17:59:57 [ 7] [ 10] [0320110742] +17:59:57 [ 11] [ 6] [084807] +17:59:57 [ 37] [ 12] [579180848070] +17:59:57 [ 39] [ 2] [00] +17:59:57 [ 70] [ 3] [810] +17:59:57 ============================================================================ +17:59:57 Calculate Source COMM Id = 1 +17:59:57 ============================================================================ +17:59:57 + + +waiting on router queue for slot.... +17:59:57 ============================================================================ +17:59:57 Slot Id : <211> +17:59:57 Transaction Type : RESPONSE +17:59:57 Received From : +17:59:57 ============================================================================ +17:59:57 FNo. Len. Field Value +17:59:57 ============================================================================ +17:59:57 [ 1] [ 4] [0210] +17:59:57 [ 2] [ 16] [6688990040135855] +17:59:57 [ 3] [ 6] [011000] +17:59:57 [ 4] [ 12] [000100000000] +17:59:57 [ 11] [ 6] [822665] +17:59:57 [ 12] [ 6] [175949] +17:59:57 [ 15] [ 4] [0320] +17:59:57 [ 18] [ 4] [6011] +17:59:57 [ 32] [ 6] [621354] +17:59:57 [ 35] [ 37] [6688990040135855=98041261047595600000] +17:59:57 [ 37] [ 12] [507904560420] +17:59:57 [ 38] [ 6] [757446] +17:59:57 [ 39] [ 2] [00] +17:59:57 [ 41] [ 8] [02001900] +17:59:57 [ 49] [ 3] [418] +17:59:57 [ 54] [ 20] [1002418C001563134329] +17:59:57 ============================================================================ +17:59:57 Calculate Source COMM Id = 0 +17:59:57 ============================================================================ +17:59:57 + + +waiting on router queue for slot.... +18:00:03 ============================================================================ +18:00:03 Slot Id : <168> +18:00:03 Transaction Type : REQUEST +18:00:03 Received From : +18:00:03 ============================================================================ +18:00:03 FNo. Len. Field Value +18:00:03 ============================================================================ +18:00:03 [ 1] [ 4] [0200] +18:00:03 [ 2] [ 16] [6688990106052507] +18:00:03 [ 3] [ 6] [011000] +18:00:03 [ 4] [ 12] [000010000000] +18:00:03 [ 7] [ 10] [0320175958] +18:00:03 [ 11] [ 6] [822689] +18:00:03 [ 12] [ 6] [175958] +18:00:03 [ 13] [ 4] [0320] +18:00:03 [ 15] [ 4] [0320] +18:00:03 [ 18] [ 4] [6011] +18:00:03 [ 22] [ 3] [900] +18:00:03 [ 25] [ 2] [02] +18:00:03 [ 28] [ 9] [D00002000] +18:00:03 [ 32] [ 6] [621354] +18:00:03 [ 35] [ 37] [6688990106052507=43111231250789000000] +18:00:03 [ 37] [ 12] [507902606429] +18:00:03 [ 41] [ 8] [05004300] +18:00:03 [ 42] [ 15] [NATIVE ] +18:00:03 [ 43] [ 40] [Ka deng office LuangprabangLAO] +18:00:03 [ 49] [ 3] [418] +18:00:03 [ 52] [ 16] [697B3F0D78B6D0ED] +18:00:03 ============================================================================ +18:00:03 + + +waiting on router queue for slot.... +18:00:03 Sending to : +18:00:03 ============================================================================ +18:00:03 Sending to : +18:00:03 ============================================================================ +18:00:03 ============================================================================ +18:00:03 Slot Id : <189> +18:00:03 Transaction Type : REQUEST +18:00:03 Received From : +18:00:03 ============================================================================ +18:00:03 FNo. Len. Field Value +18:00:03 ============================================================================ +18:00:03 [ 1] [ 4] [0800] +18:00:03 [ 7] [ 10] [0321011151] +18:00:03 [ 11] [ 6] [181151] +18:00:03 [ 37] [ 12] [57918181151] +18:00:03 [ 70] [ 3] [301] +18:00:03 ============================================================================ +18:00:03 + + +waiting on router queue for slot.... +18:00:03 Sending to : +18:00:03 ============================================================================ +18:00:03 ============================================================================ +18:00:03 Slot Id : <189> +18:00:03 Transaction Type : RESPONSE +18:00:03 Received From : +18:00:03 ============================================================================ +18:00:03 FNo. Len. Field Value +18:00:03 ============================================================================ +18:00:03 [ 1] [ 4] [0810] +18:00:03 [ 7] [ 10] [0321011151] +18:00:03 [ 11] [ 6] [181151] +18:00:03 [ 37] [ 12] [579181811510] +18:00:03 [ 39] [ 2] [00] +18:00:03 [ 70] [ 3] [810] +18:00:03 ============================================================================ +18:00:03 Calculate Source COMM Id = 6 +18:00:03 ============================================================================ +18:00:03 + + +waiting on router queue for slot.... +18:00:03 ============================================================================ +18:00:03 Slot Id : <168> +18:00:03 Transaction Type : REQUEST +18:00:03 Received From : +18:00:03 ============================================================================ +18:00:03 FNo. Len. Field Value +18:00:03 ============================================================================ +18:00:03 [ 1] [ 4] [0200] +18:00:03 [ 2] [ 16] [6688990106052507] +18:00:03 [ 3] [ 6] [011000] +18:00:03 [ 4] [ 12] [000010000000] +18:00:03 [ 7] [ 10] [0320175958] +18:00:03 [ 11] [ 6] [822689] +18:00:03 [ 12] [ 6] [175958] +18:00:03 [ 13] [ 4] [0320] +18:00:03 [ 15] [ 4] [0320] +18:00:03 [ 18] [ 4] [6011] +18:00:03 [ 22] [ 3] [900] +18:00:03 [ 25] [ 2] [02] +18:00:03 [ 28] [ 9] [D00002000] +18:00:03 [ 32] [ 6] [621354] +18:00:03 [ 35] [ 37] [6688990106052507=43111231250789000000] +18:00:03 [ 37] [ 12] [507902606429] +18:00:03 [ 41] [ 8] [05004300] +18:00:03 [ 42] [ 15] [NATIVE ] +18:00:03 [ 43] [ 40] [Ka deng office LuangprabangLAO] +18:00:03 [ 49] [ 3] [418] +18:00:03 [ 52] [ 16] [697B3F0D78B6D0ED] +18:00:03 ============================================================================ +18:00:03 + + +waiting on router queue for slot.... +18:00:03 Sending to : +18:00:03 ============================================================================ +18:00:03 ============================================================================ +18:00:03 Slot Id : <168> +18:00:03 Transaction Type : REQUEST +18:00:03 Received From : +18:00:03 ============================================================================ +18:00:03 FNo. Len. Field Value +18:00:03 ============================================================================ +18:00:03 [ 1] [ 4] [0200] +18:00:03 [ 2] [ 16] [6688990106052507] +18:00:03 [ 3] [ 6] [011000] +18:00:03 [ 4] [ 12] [000010000000] +18:00:03 [ 7] [ 10] [0320175958] +18:00:03 [ 11] [ 6] [822689] +18:00:03 [ 12] [ 6] [175958] +18:00:03 [ 13] [ 4] [0320] +18:00:03 [ 15] [ 4] [0320] +18:00:03 [ 18] [ 4] [6011] +18:00:03 [ 22] [ 3] [900] +18:00:03 [ 25] [ 2] [02] +18:00:03 [ 28] [ 9] [D00002000] +18:00:03 [ 32] [ 6] [621354] +18:00:03 [ 35] [ 37] [6688990106052507=43111231250789000000] +18:00:03 [ 37] [ 12] [507902606429] +18:00:03 [ 41] [ 8] [05004300] +18:00:03 [ 42] [ 15] [NATIVE ] +18:00:03 [ 43] [ 40] [Ka deng office LuangprabangLAO] +18:00:03 [ 49] [ 3] [418] +18:00:03 [ 52] [ 16] [58FC75F1A93FFF84] +18:00:03 ============================================================================ +18:00:03 + + +waiting on router queue for slot.... +18:00:03 Sending to : <4> +18:00:03 ============================================================================ +18:00:04 ============================================================================ +18:00:04 Slot Id : <168> +18:00:04 Transaction Type : RESPONSE +18:00:04 Received From : +18:00:04 ============================================================================ +18:00:04 FNo. Len. Field Value +18:00:04 ============================================================================ +18:00:04 [ 1] [ 4] [0210] +18:00:04 [ 2] [ 16] [6688990106052507] +18:00:04 [ 3] [ 6] [011000] +18:00:04 [ 4] [ 12] [000010000000] +18:00:04 [ 11] [ 6] [822689] +18:00:04 [ 12] [ 6] [175958] +18:00:04 [ 15] [ 4] [0320] +18:00:04 [ 18] [ 4] [6011] +18:00:04 [ 32] [ 6] [621354] +18:00:04 [ 35] [ 37] [6688990106052507=43111231250789000000] +18:00:04 [ 37] [ 12] [507902606429] +18:00:04 [ 38] [ 6] [543505] +18:00:04 [ 39] [ 2] [00] +18:00:04 [ 41] [ 8] [05004300] +18:00:04 [ 49] [ 3] [418] +18:00:04 [ 54] [ 20] [1002418C000024776427] +18:00:04 ============================================================================ +18:00:04 Sending to : +18:00:04 ============================================================================ +18:00:04 + + +waiting on router queue for slot.... +18:00:06 ============================================================================ +18:00:06 Slot Id : <168> +18:00:06 Transaction Type : RESPONSE +18:00:06 Received From : +18:00:06 ============================================================================ +18:00:06 FNo. Len. Field Value +18:00:06 ============================================================================ +18:00:06 [ 1] [ 4] [0210] +18:00:06 [ 2] [ 16] [6688990106052507] +18:00:06 [ 3] [ 6] [011000] +18:00:06 [ 4] [ 12] [000010000000] +18:00:06 [ 11] [ 6] [822689] +18:00:06 [ 12] [ 6] [175958] +18:00:06 [ 15] [ 4] [0320] +18:00:06 [ 18] [ 4] [6011] +18:00:06 [ 32] [ 6] [621354] +18:00:06 [ 35] [ 37] [6688990106052507=43111231250789000000] +18:00:06 [ 37] [ 12] [507902606429] +18:00:06 [ 38] [ 6] [543505] +18:00:06 [ 39] [ 2] [00] +18:00:06 [ 41] [ 8] [05004300] +18:00:06 [ 49] [ 3] [418] +18:00:06 [ 54] [ 20] [1002418C000024776427] +18:00:06 ============================================================================ +18:00:06 Calculate Source COMM Id = 0 +18:00:06 ============================================================================ +18:00:06 + + +waiting on router queue for slot.... +18:00:07 ============================================================================ +18:00:07 Slot Id : <229> +18:00:07 Transaction Type : REQUEST +18:00:07 Received From : +18:00:07 ============================================================================ +18:00:07 FNo. Len. Field Value +18:00:07 ============================================================================ +18:00:07 [ 1] [ 4] [0800] +18:00:07 [ 7] [ 10] [0320105914] +18:00:07 [ 11] [ 6] [157599] +18:00:07 [ 70] [ 3] [301] +18:00:07 ============================================================================ +18:00:07 + + +waiting on router queue for slot.... +18:00:07 Sending to : +18:00:07 ============================================================================ +18:00:07 ============================================================================ +18:00:07 Slot Id : <229> +18:00:07 Transaction Type : RESPONSE +18:00:07 Received From : +18:00:07 ============================================================================ +18:00:07 FNo. Len. Field Value +18:00:07 ============================================================================ +18:00:07 [ 1] [ 4] [0810] +18:00:07 [ 7] [ 10] [0320105914] +18:00:07 [ 11] [ 6] [157599] +18:00:07 [ 39] [ 2] [00] +18:00:07 [ 70] [ 3] [301] +18:00:07 ============================================================================ +18:00:07 Calculate Source COMM Id = 2 +18:00:07 ============================================================================ +18:00:07 + + +waiting on router queue for slot.... +18:00:17 ============================================================================ +18:00:17 Slot Id : <173> +18:00:17 Transaction Type : REQUEST +18:00:17 Received From : +18:00:17 ============================================================================ +18:00:17 FNo. Len. Field Value +18:00:17 ============================================================================ +18:00:17 [ 1] [ 4] [0800] +18:00:17 [ 7] [ 10] [0320105924] +18:00:17 [ 11] [ 6] [157600] +18:00:17 [ 70] [ 3] [301] +18:00:17 ============================================================================ +18:00:17 + + +waiting on router queue for slot.... +18:00:17 Sending to : +18:00:17 ============================================================================ +18:00:17 ============================================================================ +18:00:17 Slot Id : <173> +18:00:17 Transaction Type : RESPONSE +18:00:17 Received From : +18:00:17 ============================================================================ +18:00:17 FNo. Len. Field Value +18:00:17 ============================================================================ +18:00:17 [ 1] [ 4] [0810] +18:00:17 [ 7] [ 10] [0320105924] +18:00:17 [ 11] [ 6] [157600] +18:00:17 [ 39] [ 2] [00] +18:00:17 [ 70] [ 3] [301] +18:00:17 ============================================================================ +18:00:17 Calculate Source COMM Id = 2 +18:00:17 ============================================================================ +18:00:17 + + +waiting on router queue for slot.... +18:00:20 ============================================================================ +18:00:20 Slot Id : <174> +18:00:20 Transaction Type : REQUEST +18:00:20 Received From : +18:00:20 ============================================================================ +18:00:20 FNo. Len. Field Value +18:00:20 ============================================================================ +18:00:20 [ 1] [ 4] [0200] +18:00:20 [ 2] [ 16] [6688990040039669] +18:00:20 [ 3] [ 6] [010000] +18:00:20 [ 4] [ 12] [000050000000] +18:00:20 [ 7] [ 10] [0320180015] +18:00:20 [ 11] [ 6] [822742] +18:00:20 [ 12] [ 6] [180015] +18:00:20 [ 13] [ 4] [0320] +18:00:20 [ 15] [ 4] [0320] +18:00:20 [ 18] [ 4] [6011] +18:00:20 [ 22] [ 3] [900] +18:00:20 [ 25] [ 2] [02] +18:00:20 [ 28] [ 9] [D00002000] +18:00:20 [ 32] [ 6] [621354] +18:00:20 [ 35] [ 37] [6688990040039669=97111261432334700000] +18:00:20 [ 37] [ 12] [507905271823] +18:00:20 [ 41] [ 8] [02002900] +18:00:20 [ 42] [ 15] [NATIVE ] +18:00:20 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +18:00:20 [ 49] [ 3] [418] +18:00:20 [ 52] [ 16] [A121443DDD885ADC] +18:00:20 ============================================================================ +18:00:20 + + +waiting on router queue for slot.... +18:00:20 Sending to : +18:00:20 ============================================================================ +18:00:20 Sending to : +18:00:20 ============================================================================ +18:00:21 ============================================================================ +18:00:21 Slot Id : <174> +18:00:21 Transaction Type : REQUEST +18:00:21 Received From : +18:00:21 ============================================================================ +18:00:21 FNo. Len. Field Value +18:00:21 ============================================================================ +18:00:21 [ 1] [ 4] [0200] +18:00:21 [ 2] [ 16] [6688990040039669] +18:00:21 [ 3] [ 6] [010000] +18:00:21 [ 4] [ 12] [000050000000] +18:00:21 [ 7] [ 10] [0320180015] +18:00:21 [ 11] [ 6] [822742] +18:00:21 [ 12] [ 6] [180015] +18:00:21 [ 13] [ 4] [0320] +18:00:21 [ 15] [ 4] [0320] +18:00:21 [ 18] [ 4] [6011] +18:00:21 [ 22] [ 3] [900] +18:00:21 [ 25] [ 2] [02] +18:00:21 [ 28] [ 9] [D00002000] +18:00:21 [ 32] [ 6] [621354] +18:00:21 [ 35] [ 37] [6688990040039669=97111261432334700000] +18:00:21 [ 37] [ 12] [507905271823] +18:00:21 [ 41] [ 8] [02002900] +18:00:21 [ 42] [ 15] [NATIVE ] +18:00:21 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +18:00:21 [ 49] [ 3] [418] +18:00:21 [ 52] [ 16] [A121443DDD885ADC] +18:00:21 ============================================================================ +18:00:21 + + +waiting on router queue for slot.... +18:00:21 Sending to : +18:00:21 ============================================================================ +18:00:21 ============================================================================ +18:00:21 Slot Id : <174> +18:00:21 Transaction Type : REQUEST +18:00:21 Received From : +18:00:21 ============================================================================ +18:00:21 FNo. Len. Field Value +18:00:21 ============================================================================ +18:00:21 [ 1] [ 4] [0200] +18:00:21 [ 2] [ 16] [6688990040039669] +18:00:21 [ 3] [ 6] [010000] +18:00:21 [ 4] [ 12] [000050000000] +18:00:21 [ 7] [ 10] [0320180015] +18:00:21 [ 11] [ 6] [822742] +18:00:21 [ 12] [ 6] [180015] +18:00:21 [ 13] [ 4] [0320] +18:00:21 [ 15] [ 4] [0320] +18:00:21 [ 18] [ 4] [6011] +18:00:21 [ 22] [ 3] [900] +18:00:21 [ 25] [ 2] [02] +18:00:21 [ 28] [ 9] [D00002000] +18:00:21 [ 32] [ 6] [621354] +18:00:21 [ 35] [ 37] [6688990040039669=97111261432334700000] +18:00:21 [ 37] [ 12] [507905271823] +18:00:21 [ 41] [ 8] [02002900] +18:00:21 [ 42] [ 15] [NATIVE ] +18:00:21 [ 43] [ 40] [Phouthavong Market YommalYommalat LAO] +18:00:21 [ 49] [ 3] [418] +18:00:21 [ 52] [ 16] [A9CBCDF0E96A5CBF] +18:00:21 ============================================================================ +18:00:21 + + +waiting on router queue for slot.... +18:00:21 Sending to : <4> +18:00:21 ============================================================================ +18:00:21 ============================================================================ +18:00:21 Slot Id : <174> +18:00:21 Transaction Type : RESPONSE +18:00:21 Received From : +18:00:21 ============================================================================ +18:00:21 FNo. Len. Field Value +18:00:21 ============================================================================ +18:00:21 [ 1] [ 4] [0210] +18:00:21 [ 2] [ 16] [6688990040039669] +18:00:21 [ 3] [ 6] [010000] +18:00:21 [ 4] [ 12] [000050000000] +18:00:21 [ 11] [ 6] [822742] +18:00:21 [ 12] [ 6] [180015] +18:00:21 [ 15] [ 4] [0320] +18:00:21 [ 18] [ 4] [6011] +18:00:21 [ 32] [ 6] [621354] +18:00:21 [ 35] [ 37] [6688990040039669=97111261432334700000] +18:00:21 [ 37] [ 12] [507905271823] +18:00:21 [ 39] [ 2] [51] +18:00:21 [ 41] [ 8] [02002900] +18:00:21 [ 49] [ 3] [418] +18:00:21 [ 54] [ 0] [] +18:00:21 ============================================================================ +18:00:21 Sending to : +18:00:21 ============================================================================ +18:00:21 + + +waiting on router queue for slot.... +18:00:22 ============================================================================ +18:00:22 Slot Id : <174> +18:00:22 Transaction Type : RESPONSE +18:00:22 Received From : +18:00:22 ============================================================================ +18:00:22 FNo. Len. Field Value +18:00:22 ============================================================================ +18:00:22 [ 1] [ 4] [0210] +18:00:22 [ 2] [ 16] [6688990040039669] +18:00:22 [ 3] [ 6] [010000] +18:00:22 [ 4] [ 12] [000050000000] +18:00:22 [ 11] [ 6] [822742] +18:00:22 [ 12] [ 6] [180015] +18:00:22 [ 15] [ 4] [0320] +18:00:22 [ 18] [ 4] [6011] +18:00:22 [ 32] [ 6] [621354] +18:00:22 [ 35] [ 37] [6688990040039669=97111261432334700000] +18:00:22 [ 37] [ 12] [507905271823] +18:00:22 [ 39] [ 2] [51] +18:00:22 [ 41] [ 8] [02002900] +18:00:22 [ 49] [ 3] [418] +18:00:22 [ 54] [ 0] [] +18:00:22 ============================================================================ +18:00:22 Calculate Source COMM Id = 0 +18:00:22 ============================================================================ +18:00:22 + + +waiting on router queue for slot.... +18:00:29 ============================================================================ +18:00:29 Slot Id : <246> +18:00:29 Transaction Type : REQUEST +18:00:29 Received From : +18:00:29 ============================================================================ +18:00:29 FNo. Len. Field Value +18:00:29 ============================================================================ +18:00:29 [ 1] [ 4] [0800] +18:00:29 [ 7] [ 10] [0320105936] +18:00:29 [ 11] [ 6] [157601] +18:00:29 [ 70] [ 3] [301] +18:00:29 ============================================================================ +18:00:29 + + +waiting on router queue for slot.... +18:00:29 Sending to : +18:00:29 ============================================================================ +18:00:29 ============================================================================ +18:00:29 Slot Id : <246> +18:00:29 Transaction Type : RESPONSE +18:00:29 Received From : +18:00:29 ============================================================================ +18:00:29 FNo. Len. Field Value +18:00:29 ============================================================================ +18:00:29 [ 1] [ 4] [0810] +18:00:29 [ 7] [ 10] [0320105936] +18:00:29 [ 11] [ 6] [157601] +18:00:29 [ 39] [ 2] [00] +18:00:29 [ 70] [ 3] [301] +18:00:29 ============================================================================ +18:00:29 Calculate Source COMM Id = 2 +18:00:29 ============================================================================ +18:00:29 + + +waiting on router queue for slot.... +18:00:29 ============================================================================ +18:00:29 Slot Id : <188> +18:00:29 Transaction Type : REQUEST +18:00:29 Received From : +18:00:29 ============================================================================ +18:00:29 FNo. Len. Field Value +18:00:29 ============================================================================ +18:00:29 [ 1] [ 4] [0800] +18:00:29 [ 2] [ 5] [02531] +18:00:29 [ 3] [ 6] [579188] +18:00:29 [ 7] [ 10] [0320110029] +18:00:29 [ 11] [ 6] [807457] +18:00:29 [ 15] [ 10] [0320110029] +18:00:29 [ 37] [ 11] [57918807457] +18:00:29 [ 70] [ 3] [001] +18:00:29 ============================================================================ +18:00:29 + + +waiting on router queue for slot.... +18:00:29 ============================================================================ +18:00:29 Slot Id : <188> +18:00:29 Transaction Type : RESPONSE +18:00:29 Received From : +18:00:29 ============================================================================ +18:00:29 FNo. Len. Field Value +18:00:29 ============================================================================ +18:00:29 [ 1] [ 4] [0810] +18:00:29 [ 7] [ 10] [0320110029] +18:00:29 [ 11] [ 6] [807457] +18:00:29 [ 15] [ 4] [0320] +18:00:29 [ 37] [ 12] [57918807457] +18:00:29 [ 39] [ 2] [00] +18:00:29 [ 70] [ 3] [001] +18:00:29 ============================================================================ +18:00:29 Sending to : +18:00:29 ============================================================================ +18:00:29 + + +waiting on router queue for slot.... +18:00:40 ============================================================================ +18:00:40 Slot Id : <223> +18:00:40 Transaction Type : REQUEST +18:00:40 Received From : +18:00:40 ============================================================================ +18:00:40 FNo. Len. Field Value +18:00:40 ============================================================================ +18:00:40 [ 1] [ 4] [0800] +18:00:40 [ 7] [ 10] [0320105947] +18:00:40 [ 11] [ 6] [157602] +18:00:40 [ 70] [ 3] [301] +18:00:40 ============================================================================ +18:00:40 + + +waiting on router queue for slot.... +18:00:40 Sending to : +18:00:40 ============================================================================ +18:00:40 ============================================================================ +18:00:40 Slot Id : <223> +18:00:40 Transaction Type : RESPONSE +18:00:40 Received From : +18:00:40 ============================================================================ +18:00:40 FNo. Len. Field Value +18:00:40 ============================================================================ +18:00:40 [ 1] [ 4] [0810] +18:00:40 [ 7] [ 10] [0320105947] +18:00:40 [ 11] [ 6] [157602] +18:00:40 [ 39] [ 2] [00] +18:00:40 [ 70] [ 3] [301] +18:00:40 ============================================================================ +18:00:40 Calculate Source COMM Id = 2 +18:00:40 ============================================================================ +18:00:40 + + +waiting on router queue for slot.... +18:00:55 ============================================================================ +18:00:55 Slot Id : <235> +18:00:55 Transaction Type : REQUEST +18:00:55 Received From : +18:00:55 ============================================================================ +18:00:55 FNo. Len. Field Value +18:00:55 ============================================================================ +18:00:55 [ 1] [ 4] [0800] +18:00:55 [ 7] [ 10] [0320110002] +18:00:55 [ 11] [ 6] [157603] +18:00:55 [ 70] [ 3] [301] +18:00:55 ============================================================================ +18:00:55 + + +waiting on router queue for slot.... +18:00:55 Sending to : +18:00:55 ============================================================================ +18:00:55 ============================================================================ +18:00:55 Slot Id : <235> +18:00:55 Transaction Type : RESPONSE +18:00:55 Received From : +18:00:55 ============================================================================ +18:00:55 FNo. Len. Field Value +18:00:55 ============================================================================ +18:00:55 [ 1] [ 4] [0810] +18:00:55 [ 7] [ 10] [0320110002] +18:00:55 [ 11] [ 6] [157603] +18:00:55 [ 39] [ 2] [00] +18:00:55 [ 70] [ 3] [301] +18:00:55 ============================================================================ +18:00:55 Calculate Source COMM Id = 2 +18:00:55 ============================================================================ +18:00:55 + + +waiting on router queue for slot.... +18:01:06 ============================================================================ +18:01:06 Slot Id : <227> +18:01:06 Transaction Type : REQUEST +18:01:06 Received From : +18:01:06 ============================================================================ +18:01:06 FNo. Len. Field Value +18:01:06 ============================================================================ +18:01:06 [ 1] [ 4] [0800] +18:01:06 [ 7] [ 10] [0320110013] +18:01:06 [ 11] [ 6] [157604] +18:01:06 [ 70] [ 3] [301] +18:01:06 ============================================================================ +18:01:06 + + +waiting on router queue for slot.... +18:01:06 Sending to : +18:01:06 ============================================================================ +18:01:06 ============================================================================ +18:01:06 Slot Id : <227> +18:01:06 Transaction Type : RESPONSE +18:01:06 Received From : +18:01:06 ============================================================================ +18:01:06 FNo. Len. Field Value +18:01:06 ============================================================================ +18:01:06 [ 1] [ 4] [0810] +18:01:06 [ 7] [ 10] [0320110013] +18:01:06 [ 11] [ 6] [157604] +18:01:06 [ 39] [ 2] [00] +18:01:06 [ 70] [ 3] [301] +18:01:06 ============================================================================ +18:01:06 Calculate Source COMM Id = 2 +18:01:06 ============================================================================ +18:01:06 + + +waiting on router queue for slot.... +18:01:07 ============================================================================ +18:01:07 Slot Id : <215> +18:01:07 Transaction Type : REQUEST +18:01:07 Received From : +18:01:07 ============================================================================ +18:01:07 FNo. Len. Field Value +18:01:07 ============================================================================ +18:01:07 [ 1] [ 4] [0200] +18:01:07 [ 2] [ 16] [6213544000554144] +18:01:07 [ 3] [ 6] [011000] +18:01:07 [ 4] [ 12] [000050000000] +18:01:07 [ 7] [ 10] [0320180128] +18:01:07 [ 11] [ 6] [210066] +18:01:07 [ 12] [ 6] [175539] +18:01:07 [ 13] [ 4] [0320] +18:01:07 [ 14] [ 4] [4912] +18:01:07 [ 15] [ 4] [0320] +18:01:07 [ 18] [ 4] [6011] +18:01:07 [ 19] [ 3] [418] +18:01:07 [ 22] [ 3] [021] +18:01:07 [ 25] [ 2] [01] +18:01:07 [ 28] [ 9] [D00002000] +18:01:07 [ 32] [ 6] [198901] +18:01:07 [ 35] [ 32] [6213544000554144=491212015414340] +18:01:07 [ 37] [ 12] [507918210066] +18:01:07 [ 41] [ 8] [01529018] +18:01:07 [ 42] [ 15] [000000041529018] +18:01:07 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +18:01:07 [ 49] [ 3] [418] +18:01:07 [ 52] [ 16] [95009F7F2C4537F0] +18:01:07 ============================================================================ +18:01:07 + + +waiting on router queue for slot.... +18:01:07 Sending to : +18:01:07 ============================================================================ +18:01:07 Sending to : +18:01:07 ============================================================================ +18:01:08 ============================================================================ +18:01:08 Slot Id : <215> +18:01:08 Transaction Type : REQUEST +18:01:08 Received From : +18:01:08 ============================================================================ +18:01:08 FNo. Len. Field Value +18:01:08 ============================================================================ +18:01:08 [ 1] [ 4] [0200] +18:01:08 [ 2] [ 16] [6213544000554144] +18:01:08 [ 3] [ 6] [011000] +18:01:08 [ 4] [ 12] [000050000000] +18:01:08 [ 7] [ 10] [0320180128] +18:01:08 [ 11] [ 6] [210066] +18:01:08 [ 12] [ 6] [175539] +18:01:08 [ 13] [ 4] [0320] +18:01:08 [ 14] [ 4] [4912] +18:01:08 [ 15] [ 4] [0320] +18:01:08 [ 18] [ 4] [6011] +18:01:08 [ 19] [ 3] [418] +18:01:08 [ 22] [ 3] [021] +18:01:08 [ 25] [ 2] [01] +18:01:08 [ 28] [ 9] [D00002000] +18:01:08 [ 32] [ 6] [198901] +18:01:08 [ 35] [ 32] [6213544000554144=491212015414340] +18:01:08 [ 37] [ 12] [507918210066] +18:01:08 [ 41] [ 8] [01529018] +18:01:08 [ 42] [ 15] [000000041529018] +18:01:08 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +18:01:08 [ 49] [ 3] [418] +18:01:08 [ 52] [ 16] [95009F7F2C4537F0] +18:01:08 ============================================================================ +18:01:08 + + +waiting on router queue for slot.... +18:01:08 Sending to : +18:01:08 ============================================================================ +18:01:08 ============================================================================ +18:01:08 Slot Id : <215> +18:01:08 Transaction Type : REQUEST +18:01:08 Received From : +18:01:08 ============================================================================ +18:01:08 FNo. Len. Field Value +18:01:08 ============================================================================ +18:01:08 [ 1] [ 4] [0200] +18:01:08 [ 2] [ 16] [6213544000554144] +18:01:08 [ 3] [ 6] [011000] +18:01:08 [ 4] [ 12] [000050000000] +18:01:08 [ 7] [ 10] [0320180128] +18:01:08 [ 11] [ 6] [210066] +18:01:08 [ 12] [ 6] [175539] +18:01:08 [ 13] [ 4] [0320] +18:01:08 [ 14] [ 4] [4912] +18:01:08 [ 15] [ 4] [0320] +18:01:08 [ 18] [ 4] [6011] +18:01:08 [ 19] [ 3] [418] +18:01:08 [ 22] [ 3] [021] +18:01:08 [ 25] [ 2] [01] +18:01:08 [ 28] [ 9] [D00002000] +18:01:08 [ 32] [ 6] [198901] +18:01:08 [ 35] [ 32] [6213544000554144=491212015414340] +18:01:08 [ 37] [ 12] [507918210066] +18:01:08 [ 41] [ 8] [01529018] +18:01:08 [ 42] [ 15] [000000041529018] +18:01:08 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +18:01:08 [ 49] [ 3] [418] +18:01:08 [ 52] [ 16] [E80B0E89B2D622B1] +18:01:08 ============================================================================ +18:01:08 + + +waiting on router queue for slot.... +18:01:08 Sending to : <0> +18:01:08 ============================================================================ +18:01:08 ============================================================================ +18:01:08 Slot Id : <244> +18:01:08 Transaction Type : REQUEST +18:01:08 Received From : +18:01:08 ============================================================================ +18:01:08 FNo. Len. Field Value +18:01:08 ============================================================================ +18:01:08 [ 1] [ 4] [0800] +18:01:08 [ 7] [ 10] [0321011256] +18:01:08 [ 11] [ 6] [181256] +18:01:08 [ 37] [ 12] [57918181256] +18:01:08 [ 70] [ 3] [301] +18:01:08 ============================================================================ +18:01:08 + + +waiting on router queue for slot.... +18:01:08 Sending to : +18:01:08 ============================================================================ +18:01:08 ============================================================================ +18:01:08 Slot Id : <244> +18:01:08 Transaction Type : RESPONSE +18:01:08 Received From : +18:01:08 ============================================================================ +18:01:08 FNo. Len. Field Value +18:01:08 ============================================================================ +18:01:08 [ 1] [ 4] [0810] +18:01:08 [ 7] [ 10] [0321011256] +18:01:08 [ 11] [ 6] [181256] +18:01:08 [ 37] [ 12] [579181812560] +18:01:08 [ 39] [ 2] [00] +18:01:08 [ 70] [ 3] [810] +18:01:08 ============================================================================ +18:01:08 Calculate Source COMM Id = 6 +18:01:08 ============================================================================ +18:01:08 + + +waiting on router queue for slot.... +18:01:08 ============================================================================ +18:01:08 Slot Id : <215> +18:01:08 Transaction Type : RESPONSE +18:01:08 Received From : +18:01:08 ============================================================================ +18:01:08 FNo. Len. Field Value +18:01:08 ============================================================================ +18:01:08 [ 1] [ 4] [0210] +18:01:08 [ 2] [ 16] [6213544000554144] +18:01:08 [ 3] [ 6] [011000] +18:01:08 [ 4] [ 12] [000050000000] +18:01:08 [ 7] [ 10] [0320180128] +18:01:08 [ 11] [ 6] [210066] +18:01:08 [ 12] [ 6] [175539] +18:01:08 [ 13] [ 4] [0320] +18:01:08 [ 15] [ 4] [0320] +18:01:08 [ 18] [ 4] [6011] +18:01:08 [ 19] [ 3] [418] +18:01:08 [ 32] [ 6] [198901] +18:01:08 [ 35] [ 32] [6213544000554144=491212015414340] +18:01:08 [ 37] [ 12] [507918210066] +18:01:08 [ 38] [ 6] [990671] +18:01:08 [ 39] [ 2] [00] +18:01:08 [ 41] [ 8] [01529018] +18:01:08 [ 49] [ 3] [418] +18:01:08 [ 54] [ 40] [1001418C0000297587651002418C000029758765] +18:01:08 ============================================================================ +18:01:08 Sending to : +18:01:08 ============================================================================ +18:01:08 + + +waiting on router queue for slot.... +18:01:09 ============================================================================ +18:01:09 Slot Id : <248> +18:01:09 Transaction Type : REQUEST +18:01:09 Received From : +18:01:09 ============================================================================ +18:01:09 FNo. Len. Field Value +18:01:09 ============================================================================ +18:01:09 [ 1] [ 4] [0200] +18:01:09 [ 2] [ 16] [6688990106066002] +18:01:09 [ 3] [ 6] [010000] +18:01:09 [ 4] [ 12] [000100000000] +18:01:09 [ 7] [ 10] [0320180104] +18:01:09 [ 11] [ 6] [822923] +18:01:09 [ 12] [ 6] [180104] +18:01:09 [ 13] [ 4] [0320] +18:01:09 [ 15] [ 4] [0320] +18:01:09 [ 18] [ 4] [6011] +18:01:09 [ 22] [ 3] [900] +18:01:09 [ 25] [ 2] [02] +18:01:09 [ 28] [ 9] [D00002000] +18:01:09 [ 32] [ 6] [621354] +18:01:09 [ 35] [ 37] [6688990106066002=43111231600285100000] +18:01:09 [ 37] [ 12] [507902916647] +18:01:09 [ 41] [ 8] [12001400] +18:01:09 [ 42] [ 15] [NATIVE ] +18:01:09 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +18:01:09 [ 49] [ 3] [418] +18:01:09 [ 52] [ 16] [28C6B54F42115620] +18:01:09 ============================================================================ +18:01:09 + + +waiting on router queue for slot.... +18:01:09 Sending to : +18:01:09 ============================================================================ +18:01:09 Sending to : +18:01:09 ============================================================================ +18:01:09 ============================================================================ +18:01:09 Slot Id : <243> +18:01:09 Transaction Type : REQUEST +18:01:09 Received From : +18:01:09 ============================================================================ +18:01:09 FNo. Len. Field Value +18:01:09 ============================================================================ +18:01:09 [ 1] [ 4] [0200] +18:01:09 [ 2] [ 16] [6688990103275507] +18:01:09 [ 3] [ 6] [300000] +18:01:09 [ 4] [ 12] [000000000000] +18:01:09 [ 7] [ 10] [0320180104] +18:01:09 [ 11] [ 6] [822924] +18:01:09 [ 12] [ 6] [180104] +18:01:09 [ 13] [ 4] [0320] +18:01:09 [ 15] [ 4] [0320] +18:01:09 [ 18] [ 4] [6011] +18:01:09 [ 22] [ 3] [900] +18:01:09 [ 25] [ 2] [02] +18:01:09 [ 28] [ 9] [D00000000] +18:01:09 [ 32] [ 6] [621354] +18:01:09 [ 35] [ 37] [6688990103275507=42121231550761500000] +18:01:09 [ 37] [ 12] [507903499694] +18:01:09 [ 41] [ 8] [06002200] +18:01:09 [ 42] [ 15] [NATIVE ] +18:01:09 [ 43] [ 40] [Beng Market Beng LAO] +18:01:09 [ 49] [ 3] [418] +18:01:09 [ 52] [ 16] [46032910EB9D9FEC] +18:01:09 ============================================================================ +18:01:09 + + +waiting on router queue for slot.... +18:01:09 Sending to : +18:01:09 ============================================================================ +18:01:09 Sending to : +18:01:09 ============================================================================ +18:01:09 ============================================================================ +18:01:09 Slot Id : <248> +18:01:09 Transaction Type : REQUEST +18:01:09 Received From : +18:01:09 ============================================================================ +18:01:09 FNo. Len. Field Value +18:01:09 ============================================================================ +18:01:09 [ 1] [ 4] [0200] +18:01:09 [ 2] [ 16] [6688990106066002] +18:01:09 [ 3] [ 6] [010000] +18:01:09 [ 4] [ 12] [000100000000] +18:01:09 [ 7] [ 10] [0320180104] +18:01:09 [ 11] [ 6] [822923] +18:01:09 [ 12] [ 6] [180104] +18:01:09 [ 13] [ 4] [0320] +18:01:09 [ 15] [ 4] [0320] +18:01:09 [ 18] [ 4] [6011] +18:01:09 [ 22] [ 3] [900] +18:01:09 [ 25] [ 2] [02] +18:01:09 [ 28] [ 9] [D00002000] +18:01:09 [ 32] [ 6] [621354] +18:01:09 [ 35] [ 37] [6688990106066002=43111231600285100000] +18:01:09 [ 37] [ 12] [507902916647] +18:01:09 [ 41] [ 8] [12001400] +18:01:09 [ 42] [ 15] [NATIVE ] +18:01:09 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +18:01:09 [ 49] [ 3] [418] +18:01:09 [ 52] [ 16] [28C6B54F42115620] +18:01:09 ============================================================================ +18:01:09 + + +waiting on router queue for slot.... +18:01:09 Sending to : +18:01:09 ============================================================================ +18:01:09 ============================================================================ +18:01:09 Slot Id : <248> +18:01:09 Transaction Type : REQUEST +18:01:09 Received From : +18:01:09 ============================================================================ +18:01:09 FNo. Len. Field Value +18:01:09 ============================================================================ +18:01:09 [ 1] [ 4] [0200] +18:01:09 [ 2] [ 16] [6688990106066002] +18:01:09 [ 3] [ 6] [010000] +18:01:09 [ 4] [ 12] [000100000000] +18:01:09 [ 7] [ 10] [0320180104] +18:01:09 [ 11] [ 6] [822923] +18:01:09 [ 12] [ 6] [180104] +18:01:09 [ 13] [ 4] [0320] +18:01:09 [ 15] [ 4] [0320] +18:01:09 [ 18] [ 4] [6011] +18:01:09 [ 22] [ 3] [900] +18:01:09 [ 25] [ 2] [02] +18:01:09 [ 28] [ 9] [D00002000] +18:01:09 [ 32] [ 6] [621354] +18:01:09 [ 35] [ 37] [6688990106066002=43111231600285100000] +18:01:09 [ 37] [ 12] [507902916647] +18:01:09 [ 41] [ 8] [12001400] +18:01:09 [ 42] [ 15] [NATIVE ] +18:01:09 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +18:01:09 [ 49] [ 3] [418] +18:01:09 [ 52] [ 16] [DE067614898276E2] +18:01:09 ============================================================================ +18:01:09 + + +waiting on router queue for slot.... +18:01:09 Sending to : <4> +18:01:09 ============================================================================ +18:01:09 ============================================================================ +18:01:09 Slot Id : <243> +18:01:09 Transaction Type : REQUEST +18:01:09 Received From : +18:01:09 ============================================================================ +18:01:09 FNo. Len. Field Value +18:01:09 ============================================================================ +18:01:09 [ 1] [ 4] [0200] +18:01:09 [ 2] [ 16] [6688990103275507] +18:01:09 [ 3] [ 6] [300000] +18:01:09 [ 4] [ 12] [000000000000] +18:01:09 [ 7] [ 10] [0320180104] +18:01:09 [ 11] [ 6] [822924] +18:01:09 [ 12] [ 6] [180104] +18:01:09 [ 13] [ 4] [0320] +18:01:09 [ 15] [ 4] [0320] +18:01:09 [ 18] [ 4] [6011] +18:01:09 [ 22] [ 3] [900] +18:01:09 [ 25] [ 2] [02] +18:01:09 [ 28] [ 9] [D00000000] +18:01:09 [ 32] [ 6] [621354] +18:01:09 [ 35] [ 37] [6688990103275507=42121231550761500000] +18:01:09 [ 37] [ 12] [507903499694] +18:01:09 [ 41] [ 8] [06002200] +18:01:09 [ 42] [ 15] [NATIVE ] +18:01:09 [ 43] [ 40] [Beng Market Beng LAO] +18:01:09 [ 49] [ 3] [418] +18:01:09 [ 52] [ 16] [46032910EB9D9FEC] +18:01:09 ============================================================================ +18:01:09 + + +waiting on router queue for slot.... +18:01:09 Sending to : +18:01:09 ============================================================================ +18:01:09 ============================================================================ +18:01:09 Slot Id : <243> +18:01:09 Transaction Type : REQUEST +18:01:09 Received From : +18:01:09 ============================================================================ +18:01:09 FNo. Len. Field Value +18:01:09 ============================================================================ +18:01:09 [ 1] [ 4] [0200] +18:01:09 [ 2] [ 16] [6688990103275507] +18:01:09 [ 3] [ 6] [300000] +18:01:09 [ 4] [ 12] [000000000000] +18:01:09 [ 7] [ 10] [0320180104] +18:01:09 [ 11] [ 6] [822924] +18:01:09 [ 12] [ 6] [180104] +18:01:09 [ 13] [ 4] [0320] +18:01:09 [ 15] [ 4] [0320] +18:01:09 [ 18] [ 4] [6011] +18:01:09 [ 22] [ 3] [900] +18:01:09 [ 25] [ 2] [02] +18:01:09 [ 28] [ 9] [D00000000] +18:01:09 [ 32] [ 6] [621354] +18:01:09 [ 35] [ 37] [6688990103275507=42121231550761500000] +18:01:09 [ 37] [ 12] [507903499694] +18:01:09 [ 41] [ 8] [06002200] +18:01:09 [ 42] [ 15] [NATIVE ] +18:01:09 [ 43] [ 40] [Beng Market Beng LAO] +18:01:09 [ 49] [ 3] [418] +18:01:09 [ 52] [ 16] [BD2802CFF31B59AB] +18:01:09 ============================================================================ +18:01:09 + + +waiting on router queue for slot.... +18:01:09 Sending to : <4> +18:01:09 ============================================================================ +18:01:10 ============================================================================ +18:01:10 Slot Id : <215> +18:01:10 Transaction Type : RESPONSE +18:01:10 Received From : +18:01:10 ============================================================================ +18:01:10 FNo. Len. Field Value +18:01:10 ============================================================================ +18:01:10 [ 1] [ 4] [0210] +18:01:10 [ 2] [ 16] [6213544000554144] +18:01:10 [ 3] [ 6] [011000] +18:01:10 [ 4] [ 12] [000050000000] +18:01:10 [ 7] [ 10] [0320180128] +18:01:10 [ 11] [ 6] [210066] +18:01:10 [ 12] [ 6] [175539] +18:01:10 [ 13] [ 4] [0320] +18:01:10 [ 15] [ 4] [0320] +18:01:10 [ 18] [ 4] [6011] +18:01:10 [ 19] [ 3] [418] +18:01:10 [ 32] [ 6] [198901] +18:01:10 [ 35] [ 32] [6213544000554144=491212015414340] +18:01:10 [ 37] [ 12] [507918210066] +18:01:10 [ 38] [ 6] [990671] +18:01:10 [ 39] [ 2] [00] +18:01:10 [ 41] [ 8] [01529018] +18:01:10 [ 49] [ 3] [418] +18:01:10 [ 54] [ 40] [1001418C0000297587651002418C000029758765] +18:01:10 ============================================================================ +18:01:10 Calculate Source COMM Id = 5 +18:01:10 ============================================================================ +18:01:10 + + +waiting on router queue for slot.... +18:01:10 ============================================================================ +18:01:10 Slot Id : <248> +18:01:10 Transaction Type : RESPONSE +18:01:10 Received From : +18:01:10 ============================================================================ +18:01:10 FNo. Len. Field Value +18:01:10 ============================================================================ +18:01:10 [ 1] [ 4] [0210] +18:01:10 [ 2] [ 16] [6688990106066002] +18:01:10 [ 3] [ 6] [010000] +18:01:10 [ 4] [ 12] [000100000000] +18:01:10 [ 11] [ 6] [822923] +18:01:10 [ 12] [ 6] [180104] +18:01:10 [ 15] [ 4] [0320] +18:01:10 [ 18] [ 4] [6011] +18:01:10 [ 32] [ 6] [621354] +18:01:10 [ 35] [ 37] [6688990106066002=43111231600285100000] +18:01:10 [ 37] [ 12] [507902916647] +18:01:10 [ 38] [ 6] [036557] +18:01:10 [ 39] [ 2] [00] +18:01:10 [ 41] [ 8] [12001400] +18:01:10 [ 49] [ 3] [418] +18:01:10 [ 54] [ 20] [0002418C000019606639] +18:01:10 ============================================================================ +18:01:10 Sending to : +18:01:10 ============================================================================ +18:01:10 + + +waiting on router queue for slot.... +18:01:10 ============================================================================ +18:01:10 Slot Id : <251> +18:01:10 Transaction Type : REQUEST +18:01:10 Received From : +18:01:10 ============================================================================ +18:01:10 FNo. Len. Field Value +18:01:10 ============================================================================ +18:01:10 [ 1] [ 4] [0200] +18:01:10 [ 2] [ 16] [6688990040135855] +18:01:10 [ 3] [ 6] [011000] +18:01:10 [ 4] [ 12] [000100000000] +18:01:10 [ 7] [ 10] [0320180105] +18:01:10 [ 11] [ 6] [822930] +18:01:10 [ 12] [ 6] [180105] +18:01:10 [ 13] [ 4] [0320] +18:01:10 [ 15] [ 4] [0320] +18:01:10 [ 18] [ 4] [6011] +18:01:10 [ 22] [ 3] [900] +18:01:10 [ 25] [ 2] [02] +18:01:10 [ 28] [ 9] [D00002000] +18:01:10 [ 32] [ 6] [621354] +18:01:10 [ 35] [ 37] [6688990040135855=98041261047595600000] +18:01:10 [ 37] [ 12] [507904560422] +18:01:10 [ 41] [ 8] [02001900] +18:01:10 [ 42] [ 15] [NATIVE ] +18:01:10 [ 43] [ 40] [Khammouane Branch 02 Thakek LAO] +18:01:10 [ 49] [ 3] [418] +18:01:10 [ 52] [ 16] [C7840116C14F39B0] +18:01:10 ============================================================================ +18:01:10 + + +waiting on router queue for slot.... +18:01:10 Sending to : +18:01:10 ============================================================================ +18:01:10 Sending to : +18:01:10 ============================================================================ +18:01:10 ============================================================================ +18:01:10 Slot Id : <243> +18:01:10 Transaction Type : RESPONSE +18:01:10 Received From : +18:01:10 ============================================================================ +18:01:10 FNo. Len. Field Value +18:01:10 ============================================================================ +18:01:10 [ 1] [ 4] [0210] +18:01:10 [ 2] [ 16] [6688990103275507] +18:01:10 [ 3] [ 6] [300000] +18:01:10 [ 4] [ 12] [000000000000] +18:01:10 [ 11] [ 6] [822924] +18:01:10 [ 12] [ 6] [180104] +18:01:10 [ 15] [ 4] [0320] +18:01:10 [ 18] [ 4] [6011] +18:01:10 [ 32] [ 6] [621354] +18:01:10 [ 35] [ 37] [6688990103275507=42121231550761500000] +18:01:10 [ 37] [ 12] [507903499694] +18:01:10 [ 38] [ 6] [347437] +18:01:10 [ 39] [ 2] [00] +18:01:10 [ 41] [ 8] [06002200] +18:01:10 [ 49] [ 3] [418] +18:01:10 [ 54] [ 20] [0002418C000369956418] +18:01:10 ============================================================================ +18:01:10 Sending to : +18:01:10 ============================================================================ +18:01:10 + + +waiting on router queue for slot.... +18:01:10 ============================================================================ +18:01:10 Slot Id : <251> +18:01:10 Transaction Type : REQUEST +18:01:10 Received From : +18:01:10 ============================================================================ +18:01:10 FNo. Len. Field Value +18:01:10 ============================================================================ +18:01:10 [ 1] [ 4] [0200] +18:01:10 [ 2] [ 16] [6688990040135855] +18:01:10 [ 3] [ 6] [011000] +18:01:10 [ 4] [ 12] [000100000000] +18:01:10 [ 7] [ 10] [0320180105] +18:01:10 [ 11] [ 6] [822930] +18:01:10 [ 12] [ 6] [180105] +18:01:10 [ 13] [ 4] [0320] +18:01:10 [ 15] [ 4] [0320] +18:01:10 [ 18] [ 4] [6011] +18:01:10 [ 22] [ 3] [900] +18:01:10 [ 25] [ 2] [02] +18:01:10 [ 28] [ 9] [D00002000] +18:01:10 [ 32] [ 6] [621354] +18:01:10 [ 35] [ 37] [6688990040135855=98041261047595600000] +18:01:10 [ 37] [ 12] [507904560422] +18:01:10 [ 41] [ 8] [02001900] +18:01:10 [ 42] [ 15] [NATIVE ] +18:01:10 [ 43] [ 40] [Khammouane Branch 02 Thakek LAO] +18:01:10 [ 49] [ 3] [418] +18:01:10 [ 52] [ 16] [C7840116C14F39B0] +18:01:10 ============================================================================ +18:01:10 + + +waiting on router queue for slot.... +18:01:10 Sending to : +18:01:10 ============================================================================ +18:01:10 ============================================================================ +18:01:10 Slot Id : <251> +18:01:10 Transaction Type : REQUEST +18:01:10 Received From : +18:01:10 ============================================================================ +18:01:10 FNo. Len. Field Value +18:01:10 ============================================================================ +18:01:10 [ 1] [ 4] [0200] +18:01:10 [ 2] [ 16] [6688990040135855] +18:01:10 [ 3] [ 6] [011000] +18:01:10 [ 4] [ 12] [000100000000] +18:01:10 [ 7] [ 10] [0320180105] +18:01:10 [ 11] [ 6] [822930] +18:01:10 [ 12] [ 6] [180105] +18:01:10 [ 13] [ 4] [0320] +18:01:10 [ 15] [ 4] [0320] +18:01:10 [ 18] [ 4] [6011] +18:01:10 [ 22] [ 3] [900] +18:01:10 [ 25] [ 2] [02] +18:01:10 [ 28] [ 9] [D00002000] +18:01:10 [ 32] [ 6] [621354] +18:01:10 [ 35] [ 37] [6688990040135855=98041261047595600000] +18:01:10 [ 37] [ 12] [507904560422] +18:01:10 [ 41] [ 8] [02001900] +18:01:10 [ 42] [ 15] [NATIVE ] +18:01:10 [ 43] [ 40] [Khammouane Branch 02 Thakek LAO] +18:01:10 [ 49] [ 3] [418] +18:01:10 [ 52] [ 16] [7B73965307A8D3B7] +18:01:10 ============================================================================ +18:01:10 + + +waiting on router queue for slot.... +18:01:10 Sending to : <4> +18:01:10 ============================================================================ +18:01:11 ============================================================================ +18:01:11 Slot Id : <251> +18:01:11 Transaction Type : RESPONSE +18:01:11 Received From : +18:01:11 ============================================================================ +18:01:11 FNo. Len. Field Value +18:01:11 ============================================================================ +18:01:11 [ 1] [ 4] [0210] +18:01:11 [ 2] [ 16] [6688990040135855] +18:01:11 [ 3] [ 6] [011000] +18:01:11 [ 4] [ 12] [000100000000] +18:01:11 [ 11] [ 6] [822930] +18:01:11 [ 12] [ 6] [180105] +18:01:11 [ 15] [ 4] [0320] +18:01:11 [ 18] [ 4] [6011] +18:01:11 [ 32] [ 6] [621354] +18:01:11 [ 35] [ 37] [6688990040135855=98041261047595600000] +18:01:11 [ 37] [ 12] [507904560422] +18:01:11 [ 38] [ 6] [584625] +18:01:11 [ 39] [ 2] [00] +18:01:11 [ 41] [ 8] [02001900] +18:01:11 [ 49] [ 3] [418] +18:01:11 [ 54] [ 20] [1002418C001462934329] +18:01:11 ============================================================================ +18:01:11 Sending to : +18:01:11 ============================================================================ +18:01:11 + + +waiting on router queue for slot.... +18:01:12 ============================================================================ +18:01:12 Slot Id : <248> +18:01:12 Transaction Type : RESPONSE +18:01:12 Received From : +18:01:12 ============================================================================ +18:01:12 FNo. Len. Field Value +18:01:12 ============================================================================ +18:01:12 [ 1] [ 4] [0210] +18:01:12 [ 2] [ 16] [6688990106066002] +18:01:12 [ 3] [ 6] [010000] +18:01:12 [ 4] [ 12] [000100000000] +18:01:12 [ 11] [ 6] [822923] +18:01:12 [ 12] [ 6] [180104] +18:01:12 [ 15] [ 4] [0320] +18:01:12 [ 18] [ 4] [6011] +18:01:12 [ 32] [ 6] [621354] +18:01:12 [ 35] [ 37] [6688990106066002=43111231600285100000] +18:01:12 [ 37] [ 12] [507902916647] +18:01:12 [ 38] [ 6] [036557] +18:01:12 [ 39] [ 2] [00] +18:01:12 [ 41] [ 8] [12001400] +18:01:12 [ 49] [ 3] [418] +18:01:12 [ 54] [ 20] [0002418C000019606639] +18:01:12 ============================================================================ +18:01:12 Calculate Source COMM Id = 0 +18:01:12 ============================================================================ +18:01:12 + + +waiting on router queue for slot.... +18:01:13 ============================================================================ +18:01:13 Slot Id : <251> +18:01:13 Transaction Type : RESPONSE +18:01:13 Received From : +18:01:13 ============================================================================ +18:01:13 FNo. Len. Field Value +18:01:13 ============================================================================ +18:01:13 [ 1] [ 4] [0210] +18:01:13 [ 2] [ 16] [6688990040135855] +18:01:13 [ 3] [ 6] [011000] +18:01:13 [ 4] [ 12] [000100000000] +18:01:13 [ 11] [ 6] [822930] +18:01:13 [ 12] [ 6] [180105] +18:01:13 [ 15] [ 4] [0320] +18:01:13 [ 18] [ 4] [6011] +18:01:13 [ 32] [ 6] [621354] +18:01:13 [ 35] [ 37] [6688990040135855=98041261047595600000] +18:01:13 [ 37] [ 12] [507904560422] +18:01:13 [ 38] [ 6] [584625] +18:01:13 [ 39] [ 2] [00] +18:01:13 [ 41] [ 8] [02001900] +18:01:13 [ 49] [ 3] [418] +18:01:13 [ 54] [ 20] [1002418C001462934329] +18:01:13 ============================================================================ +18:01:13 Calculate Source COMM Id = 0 +18:01:13 ============================================================================ +18:01:13 + + +waiting on router queue for slot.... +18:01:15 ============================================================================ +18:01:15 Slot Id : <243> +18:01:15 Transaction Type : RESPONSE +18:01:15 Received From : +18:01:15 ============================================================================ +18:01:15 FNo. Len. Field Value +18:01:15 ============================================================================ +18:01:15 [ 1] [ 4] [0210] +18:01:15 [ 2] [ 16] [6688990103275507] +18:01:15 [ 3] [ 6] [300000] +18:01:15 [ 4] [ 12] [000000000000] +18:01:15 [ 11] [ 6] [822924] +18:01:15 [ 12] [ 6] [180104] +18:01:15 [ 15] [ 4] [0320] +18:01:15 [ 18] [ 4] [6011] +18:01:15 [ 32] [ 6] [621354] +18:01:15 [ 35] [ 37] [6688990103275507=42121231550761500000] +18:01:15 [ 37] [ 12] [507903499694] +18:01:15 [ 38] [ 6] [347437] +18:01:15 [ 39] [ 2] [00] +18:01:15 [ 41] [ 8] [06002200] +18:01:15 [ 49] [ 3] [418] +18:01:15 [ 54] [ 20] [0002418C000369956418] +18:01:15 ============================================================================ +18:01:15 Calculate Source COMM Id = 0 +18:01:15 ============================================================================ +18:01:15 + + +waiting on router queue for slot.... +18:01:16 ============================================================================ +18:01:16 Slot Id : <242> +18:01:16 Transaction Type : REQUEST +18:01:16 Received From : +18:01:16 ============================================================================ +18:01:16 FNo. Len. Field Value +18:01:16 ============================================================================ +18:01:16 [ 1] [ 4] [0200] +18:01:16 [ 2] [ 16] [6213544001373254] +18:01:16 [ 3] [ 6] [011000] +18:01:16 [ 4] [ 12] [000030000000] +18:01:16 [ 7] [ 10] [0320110022] +18:01:16 [ 11] [ 6] [271038] +18:01:16 [ 12] [ 6] [180021] +18:01:16 [ 13] [ 4] [0320] +18:01:16 [ 14] [ 4] [4912] +18:01:16 [ 15] [ 4] [0320] +18:01:16 [ 18] [ 4] [6011] +18:01:16 [ 19] [ 3] [418] +18:01:16 [ 22] [ 3] [021] +18:01:16 [ 25] [ 2] [01] +18:01:16 [ 28] [ 9] [D00002000] +18:01:16 [ 32] [ 6] [180893] +18:01:16 [ 35] [ 32] [6213544001373254=491212017325139] +18:01:16 [ 37] [ 12] [507911271038] +18:01:16 [ 41] [ 8] [0102SAPA] +18:01:16 [ 42] [ 15] [999999 ] +18:01:16 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:01:16 [ 49] [ 3] [418] +18:01:16 [ 52] [ 16] [B767F4DD908E3D17] +18:01:16 ============================================================================ +18:01:16 + + +waiting on router queue for slot.... +18:01:16 Sending to : +18:01:16 ============================================================================ +18:01:16 Sending to : +18:01:16 ============================================================================ +18:01:16 ============================================================================ +18:01:16 Slot Id : <242> +18:01:16 Transaction Type : REQUEST +18:01:16 Received From : +18:01:16 ============================================================================ +18:01:16 FNo. Len. Field Value +18:01:16 ============================================================================ +18:01:16 [ 1] [ 4] [0200] +18:01:16 [ 2] [ 16] [6213544001373254] +18:01:16 [ 3] [ 6] [011000] +18:01:16 [ 4] [ 12] [000030000000] +18:01:16 [ 7] [ 10] [0320110022] +18:01:16 [ 11] [ 6] [271038] +18:01:16 [ 12] [ 6] [180021] +18:01:16 [ 13] [ 4] [0320] +18:01:16 [ 14] [ 4] [4912] +18:01:16 [ 15] [ 4] [0320] +18:01:16 [ 18] [ 4] [6011] +18:01:16 [ 19] [ 3] [418] +18:01:16 [ 22] [ 3] [021] +18:01:16 [ 25] [ 2] [01] +18:01:16 [ 28] [ 9] [D00002000] +18:01:16 [ 32] [ 6] [180893] +18:01:16 [ 35] [ 32] [6213544001373254=491212017325139] +18:01:16 [ 37] [ 12] [507911271038] +18:01:16 [ 41] [ 8] [0102SAPA] +18:01:16 [ 42] [ 15] [999999 ] +18:01:16 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:01:16 [ 49] [ 3] [418] +18:01:16 [ 52] [ 16] [B767F4DD908E3D17] +18:01:16 ============================================================================ +18:01:16 + + +waiting on router queue for slot.... +18:01:16 Sending to : +18:01:16 ============================================================================ +18:01:16 ============================================================================ +18:01:16 Slot Id : <242> +18:01:16 Transaction Type : REQUEST +18:01:16 Received From : +18:01:16 ============================================================================ +18:01:16 FNo. Len. Field Value +18:01:16 ============================================================================ +18:01:16 [ 1] [ 4] [0200] +18:01:16 [ 2] [ 16] [6213544001373254] +18:01:16 [ 3] [ 6] [011000] +18:01:16 [ 4] [ 12] [000030000000] +18:01:16 [ 7] [ 10] [0320110022] +18:01:16 [ 11] [ 6] [271038] +18:01:16 [ 12] [ 6] [180021] +18:01:16 [ 13] [ 4] [0320] +18:01:16 [ 14] [ 4] [4912] +18:01:16 [ 15] [ 4] [0320] +18:01:16 [ 18] [ 4] [6011] +18:01:16 [ 19] [ 3] [418] +18:01:16 [ 22] [ 3] [021] +18:01:16 [ 25] [ 2] [01] +18:01:16 [ 28] [ 9] [D00002000] +18:01:16 [ 32] [ 6] [180893] +18:01:16 [ 35] [ 32] [6213544001373254=491212017325139] +18:01:16 [ 37] [ 12] [507911271038] +18:01:16 [ 41] [ 8] [0102SAPA] +18:01:16 [ 42] [ 15] [999999 ] +18:01:16 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:01:16 [ 49] [ 3] [418] +18:01:16 [ 52] [ 16] [A3B3001DFB5D5ED0] +18:01:16 ============================================================================ +18:01:16 + + +waiting on router queue for slot.... +18:01:16 Sending to : <0> +18:01:16 ============================================================================ +18:01:17 ============================================================================ +18:01:17 Slot Id : <255> +18:01:17 Transaction Type : REQUEST +18:01:17 Received From : +18:01:17 ============================================================================ +18:01:17 FNo. Len. Field Value +18:01:17 ============================================================================ +18:01:17 [ 1] [ 4] [0800] +18:01:17 [ 7] [ 10] [0320110024] +18:01:17 [ 11] [ 6] [157605] +18:01:17 [ 70] [ 3] [301] +18:01:17 ============================================================================ +18:01:17 + + +waiting on router queue for slot.... +18:01:17 Sending to : +18:01:17 ============================================================================ +18:01:17 ============================================================================ +18:01:17 Slot Id : <255> +18:01:17 Transaction Type : RESPONSE +18:01:17 Received From : +18:01:17 ============================================================================ +18:01:17 FNo. Len. Field Value +18:01:17 ============================================================================ +18:01:17 [ 1] [ 4] [0810] +18:01:17 [ 7] [ 10] [0320110024] +18:01:17 [ 11] [ 6] [157605] +18:01:17 [ 39] [ 2] [00] +18:01:17 [ 70] [ 3] [301] +18:01:17 ============================================================================ +18:01:17 Calculate Source COMM Id = 2 +18:01:17 ============================================================================ +18:01:17 + + +waiting on router queue for slot.... +18:01:18 ============================================================================ +18:01:18 Slot Id : <242> +18:01:18 Transaction Type : RESPONSE +18:01:18 Received From : +18:01:18 ============================================================================ +18:01:18 FNo. Len. Field Value +18:01:18 ============================================================================ +18:01:18 [ 1] [ 4] [0210] +18:01:18 [ 2] [ 16] [6213544001373254] +18:01:18 [ 3] [ 6] [011000] +18:01:18 [ 4] [ 12] [000030000000] +18:01:18 [ 7] [ 10] [0320110022] +18:01:18 [ 11] [ 6] [271038] +18:01:18 [ 12] [ 6] [180021] +18:01:18 [ 13] [ 4] [0320] +18:01:18 [ 15] [ 4] [0320] +18:01:18 [ 18] [ 4] [6011] +18:01:18 [ 19] [ 3] [418] +18:01:18 [ 32] [ 6] [180893] +18:01:18 [ 35] [ 32] [6213544001373254=491212017325139] +18:01:18 [ 37] [ 12] [507911271038] +18:01:18 [ 38] [ 6] [481288] +18:01:18 [ 39] [ 2] [00] +18:01:18 [ 41] [ 8] [0102SAPA] +18:01:18 [ 49] [ 3] [418] +18:01:18 [ 54] [ 40] [1001418C0000242792661002418C000024279266] +18:01:18 ============================================================================ +18:01:18 Sending to : +18:01:18 ============================================================================ +18:01:18 + + +waiting on router queue for slot.... +18:01:19 ============================================================================ +18:01:19 Slot Id : <242> +18:01:19 Transaction Type : RESPONSE +18:01:19 Received From : +18:01:19 ============================================================================ +18:01:19 FNo. Len. Field Value +18:01:19 ============================================================================ +18:01:19 [ 1] [ 4] [0210] +18:01:19 [ 2] [ 16] [6213544001373254] +18:01:19 [ 3] [ 6] [011000] +18:01:19 [ 4] [ 12] [000030000000] +18:01:19 [ 7] [ 10] [0320110022] +18:01:19 [ 11] [ 6] [271038] +18:01:19 [ 12] [ 6] [180021] +18:01:19 [ 13] [ 4] [0320] +18:01:19 [ 15] [ 4] [0320] +18:01:19 [ 18] [ 4] [6011] +18:01:19 [ 19] [ 3] [418] +18:01:19 [ 32] [ 6] [180893] +18:01:19 [ 35] [ 32] [6213544001373254=491212017325139] +18:01:19 [ 37] [ 12] [507911271038] +18:01:19 [ 38] [ 6] [481288] +18:01:19 [ 39] [ 2] [00] +18:01:19 [ 41] [ 8] [0102SAPA] +18:01:19 [ 49] [ 3] [418] +18:01:19 [ 54] [ 40] [1001418C0000242792661002418C000024279266] +18:01:19 ============================================================================ +18:01:19 Calculate Source COMM Id = 2 +18:01:19 ============================================================================ +18:01:19 + + +waiting on router queue for slot.... +18:01:22 ============================================================================ +18:01:22 Slot Id : <250> +18:01:22 Transaction Type : REQUEST +18:01:22 Received From : +18:01:22 ============================================================================ +18:01:22 FNo. Len. Field Value +18:01:22 ============================================================================ +18:01:22 [ 1] [ 4] [0800] +18:01:22 [ 7] [ 10] [0320105912] +18:01:22 [ 11] [ 6] [089139] +18:01:22 [ 37] [ 12] [57917089139] +18:01:22 [ 70] [ 3] [301] +18:01:22 ============================================================================ +18:01:22 + + +waiting on router queue for slot.... +18:01:22 Sending to : +18:01:22 ============================================================================ +18:01:22 ============================================================================ +18:01:22 Slot Id : <250> +18:01:22 Transaction Type : RESPONSE +18:01:22 Received From : +18:01:22 ============================================================================ +18:01:22 FNo. Len. Field Value +18:01:22 ============================================================================ +18:01:22 [ 1] [ 4] [0810] +18:01:22 [ 7] [ 10] [0320105912] +18:01:22 [ 11] [ 6] [089139] +18:01:22 [ 37] [ 12] [579170891390] +18:01:22 [ 39] [ 2] [00] +18:01:22 [ 70] [ 3] [810] +18:01:22 ============================================================================ +18:01:22 Calculate Source COMM Id = 4 +18:01:22 ============================================================================ +18:01:22 + + +waiting on router queue for slot.... +18:01:31 ============================================================================ +18:01:31 Slot Id : <177> +18:01:31 Transaction Type : REQUEST +18:01:31 Received From : +18:01:31 ============================================================================ +18:01:31 FNo. Len. Field Value +18:01:31 ============================================================================ +18:01:31 [ 1] [ 4] [0800] +18:01:31 [ 2] [ 5] [02531] +18:01:31 [ 3] [ 6] [579188] +18:01:31 [ 7] [ 10] [0320110131] +18:01:31 [ 11] [ 6] [807458] +18:01:31 [ 15] [ 10] [0320110131] +18:01:31 [ 37] [ 11] [57918807458] +18:01:31 [ 70] [ 3] [001] +18:01:31 ============================================================================ +18:01:31 + + +waiting on router queue for slot.... +18:01:31 ============================================================================ +18:01:31 Slot Id : <177> +18:01:31 Transaction Type : RESPONSE +18:01:31 Received From : +18:01:31 ============================================================================ +18:01:31 FNo. Len. Field Value +18:01:31 ============================================================================ +18:01:31 [ 1] [ 4] [0810] +18:01:31 [ 7] [ 10] [0320110131] +18:01:31 [ 11] [ 6] [807458] +18:01:31 [ 15] [ 4] [0320] +18:01:31 [ 37] [ 12] [57918807458] +18:01:31 [ 39] [ 2] [00] +18:01:31 [ 70] [ 3] [001] +18:01:31 ============================================================================ +18:01:31 Sending to : +18:01:31 ============================================================================ +18:01:31 + + +waiting on router queue for slot.... +18:01:33 ============================================================================ +18:01:33 Slot Id : <226> +18:01:33 Transaction Type : REQUEST +18:01:33 Received From : +18:01:33 ============================================================================ +18:01:33 FNo. Len. Field Value +18:01:33 ============================================================================ +18:01:33 [ 1] [ 4] [0800] +18:01:33 [ 7] [ 10] [0320110040] +18:01:33 [ 11] [ 6] [157606] +18:01:33 [ 70] [ 3] [301] +18:01:33 ============================================================================ +18:01:33 + + +waiting on router queue for slot.... +18:01:33 Sending to : +18:01:33 ============================================================================ +18:01:33 ============================================================================ +18:01:33 Slot Id : <226> +18:01:33 Transaction Type : RESPONSE +18:01:33 Received From : +18:01:33 ============================================================================ +18:01:33 FNo. Len. Field Value +18:01:33 ============================================================================ +18:01:33 [ 1] [ 4] [0810] +18:01:33 [ 7] [ 10] [0320110040] +18:01:33 [ 11] [ 6] [157606] +18:01:33 [ 39] [ 2] [00] +18:01:33 [ 70] [ 3] [301] +18:01:33 ============================================================================ +18:01:33 Calculate Source COMM Id = 2 +18:01:33 ============================================================================ +18:01:33 + + +waiting on router queue for slot.... +18:01:49 ============================================================================ +18:01:49 Slot Id : <233> +18:01:49 Transaction Type : REQUEST +18:01:49 Received From : +18:01:49 ============================================================================ +18:01:49 FNo. Len. Field Value +18:01:49 ============================================================================ +18:01:49 [ 1] [ 4] [0800] +18:01:49 [ 7] [ 10] [0320110056] +18:01:49 [ 11] [ 6] [157607] +18:01:49 [ 70] [ 3] [301] +18:01:49 ============================================================================ +18:01:49 + + +waiting on router queue for slot.... +18:01:49 Sending to : +18:01:49 ============================================================================ +18:01:49 ============================================================================ +18:01:49 Slot Id : <233> +18:01:49 Transaction Type : RESPONSE +18:01:49 Received From : +18:01:49 ============================================================================ +18:01:49 FNo. Len. Field Value +18:01:49 ============================================================================ +18:01:49 [ 1] [ 4] [0810] +18:01:49 [ 7] [ 10] [0320110056] +18:01:49 [ 11] [ 6] [157607] +18:01:49 [ 39] [ 2] [00] +18:01:49 [ 70] [ 3] [301] +18:01:49 ============================================================================ +18:01:49 Calculate Source COMM Id = 2 +18:01:49 ============================================================================ +18:01:49 + + +waiting on router queue for slot.... +18:02:00 ============================================================================ +18:02:00 Slot Id : <237> +18:02:00 Transaction Type : REQUEST +18:02:00 Received From : +18:02:00 ============================================================================ +18:02:00 FNo. Len. Field Value +18:02:00 ============================================================================ +18:02:00 [ 1] [ 4] [0800] +18:02:00 [ 7] [ 10] [0320110107] +18:02:00 [ 11] [ 6] [157608] +18:02:00 [ 70] [ 3] [301] +18:02:00 ============================================================================ +18:02:00 + + +waiting on router queue for slot.... +18:02:00 Sending to : +18:02:00 ============================================================================ +18:02:00 ============================================================================ +18:02:00 Slot Id : <237> +18:02:00 Transaction Type : RESPONSE +18:02:00 Received From : +18:02:00 ============================================================================ +18:02:00 FNo. Len. Field Value +18:02:00 ============================================================================ +18:02:00 [ 1] [ 4] [0810] +18:02:00 [ 7] [ 10] [0320110107] +18:02:00 [ 11] [ 6] [157608] +18:02:00 [ 39] [ 2] [00] +18:02:00 [ 70] [ 3] [301] +18:02:00 ============================================================================ +18:02:00 Calculate Source COMM Id = 2 +18:02:00 ============================================================================ +18:02:00 + + +waiting on router queue for slot.... +18:02:02 ============================================================================ +18:02:02 Slot Id : <260> +18:02:02 Transaction Type : REQUEST +18:02:02 Received From : +18:02:02 ============================================================================ +18:02:02 FNo. Len. Field Value +18:02:02 ============================================================================ +18:02:02 [ 1] [ 4] [0200] +18:02:02 [ 2] [ 16] [6688990601024506] +18:02:02 [ 3] [ 6] [010000] +18:02:02 [ 4] [ 12] [000100000000] +18:02:02 [ 7] [ 10] [0320180157] +18:02:02 [ 11] [ 6] [823104] +18:02:02 [ 12] [ 6] [180157] +18:02:02 [ 13] [ 4] [0320] +18:02:02 [ 15] [ 4] [0320] +18:02:02 [ 18] [ 4] [6011] +18:02:02 [ 22] [ 3] [900] +18:02:02 [ 25] [ 2] [02] +18:02:02 [ 28] [ 9] [D00002000] +18:02:02 [ 32] [ 6] [621354] +18:02:02 [ 35] [ 37] [6688990601024506=41040061450619500000] +18:02:02 [ 37] [ 12] [507904724982] +18:02:02 [ 41] [ 8] [18001100] +18:02:02 [ 42] [ 15] [NATIVE ] +18:02:02 [ 43] [ 40] [Ban Naxong May LAO] +18:02:02 [ 49] [ 3] [418] +18:02:02 [ 52] [ 16] [388256457A1C6D85] +18:02:02 ============================================================================ +18:02:02 + + +waiting on router queue for slot.... +18:02:02 Sending to : +18:02:02 ============================================================================ +18:02:02 Sending to : +18:02:02 ============================================================================ +18:02:02 ============================================================================ +18:02:02 Slot Id : <260> +18:02:02 Transaction Type : REQUEST +18:02:02 Received From : +18:02:02 ============================================================================ +18:02:02 FNo. Len. Field Value +18:02:02 ============================================================================ +18:02:02 [ 1] [ 4] [0200] +18:02:02 [ 2] [ 16] [6688990601024506] +18:02:02 [ 3] [ 6] [010000] +18:02:02 [ 4] [ 12] [000100000000] +18:02:02 [ 7] [ 10] [0320180157] +18:02:02 [ 11] [ 6] [823104] +18:02:02 [ 12] [ 6] [180157] +18:02:02 [ 13] [ 4] [0320] +18:02:02 [ 15] [ 4] [0320] +18:02:02 [ 18] [ 4] [6011] +18:02:02 [ 22] [ 3] [900] +18:02:02 [ 25] [ 2] [02] +18:02:02 [ 28] [ 9] [D00002000] +18:02:02 [ 32] [ 6] [621354] +18:02:02 [ 35] [ 37] [6688990601024506=41040061450619500000] +18:02:02 [ 37] [ 12] [507904724982] +18:02:02 [ 41] [ 8] [18001100] +18:02:02 [ 42] [ 15] [NATIVE ] +18:02:02 [ 43] [ 40] [Ban Naxong May LAO] +18:02:02 [ 49] [ 3] [418] +18:02:02 [ 52] [ 16] [388256457A1C6D85] +18:02:02 ============================================================================ +18:02:02 + + +waiting on router queue for slot.... +18:02:02 Sending to : +18:02:02 ============================================================================ +18:02:02 ============================================================================ +18:02:02 Slot Id : <260> +18:02:02 Transaction Type : REQUEST +18:02:02 Received From : +18:02:02 ============================================================================ +18:02:02 FNo. Len. Field Value +18:02:02 ============================================================================ +18:02:02 [ 1] [ 4] [0200] +18:02:02 [ 2] [ 16] [6688990601024506] +18:02:02 [ 3] [ 6] [010000] +18:02:02 [ 4] [ 12] [000100000000] +18:02:02 [ 7] [ 10] [0320180157] +18:02:02 [ 11] [ 6] [823104] +18:02:02 [ 12] [ 6] [180157] +18:02:02 [ 13] [ 4] [0320] +18:02:02 [ 15] [ 4] [0320] +18:02:02 [ 18] [ 4] [6011] +18:02:02 [ 22] [ 3] [900] +18:02:02 [ 25] [ 2] [02] +18:02:02 [ 28] [ 9] [D00002000] +18:02:02 [ 32] [ 6] [621354] +18:02:02 [ 35] [ 37] [6688990601024506=41040061450619500000] +18:02:02 [ 37] [ 12] [507904724982] +18:02:02 [ 41] [ 8] [18001100] +18:02:02 [ 42] [ 15] [NATIVE ] +18:02:02 [ 43] [ 40] [Ban Naxong May LAO] +18:02:02 [ 49] [ 3] [418] +18:02:02 [ 52] [ 16] [5913E2BBCD5A933D] +18:02:02 ============================================================================ +18:02:02 + + +waiting on router queue for slot.... +18:02:02 Sending to : <4> +18:02:02 ============================================================================ +18:02:03 ============================================================================ +18:02:03 Slot Id : <260> +18:02:03 Transaction Type : RESPONSE +18:02:03 Received From : +18:02:03 ============================================================================ +18:02:03 FNo. Len. Field Value +18:02:03 ============================================================================ +18:02:03 [ 1] [ 4] [0210] +18:02:03 [ 2] [ 16] [6688990601024506] +18:02:03 [ 3] [ 6] [010000] +18:02:03 [ 4] [ 12] [000100000000] +18:02:03 [ 11] [ 6] [823104] +18:02:03 [ 12] [ 6] [180157] +18:02:03 [ 15] [ 4] [0320] +18:02:03 [ 18] [ 4] [6011] +18:02:03 [ 32] [ 6] [621354] +18:02:03 [ 35] [ 37] [6688990601024506=41040061450619500000] +18:02:03 [ 37] [ 12] [507904724982] +18:02:03 [ 39] [ 2] [51] +18:02:03 [ 41] [ 8] [18001100] +18:02:03 [ 49] [ 3] [418] +18:02:03 [ 54] [ 0] [] +18:02:03 ============================================================================ +18:02:03 Sending to : +18:02:03 ============================================================================ +18:02:03 + + +waiting on router queue for slot.... +18:02:04 ============================================================================ +18:02:04 Slot Id : <260> +18:02:04 Transaction Type : RESPONSE +18:02:04 Received From : +18:02:04 ============================================================================ +18:02:04 FNo. Len. Field Value +18:02:04 ============================================================================ +18:02:04 [ 1] [ 4] [0210] +18:02:04 [ 2] [ 16] [6688990601024506] +18:02:04 [ 3] [ 6] [010000] +18:02:04 [ 4] [ 12] [000100000000] +18:02:04 [ 11] [ 6] [823104] +18:02:04 [ 12] [ 6] [180157] +18:02:04 [ 15] [ 4] [0320] +18:02:04 [ 18] [ 4] [6011] +18:02:04 [ 32] [ 6] [621354] +18:02:04 [ 35] [ 37] [6688990601024506=41040061450619500000] +18:02:04 [ 37] [ 12] [507904724982] +18:02:04 [ 39] [ 2] [51] +18:02:04 [ 41] [ 8] [18001100] +18:02:04 [ 49] [ 3] [418] +18:02:04 [ 54] [ 0] [] +18:02:04 ============================================================================ +18:02:04 Calculate Source COMM Id = 0 +18:02:04 ============================================================================ +18:02:04 + + +waiting on router queue for slot.... +18:02:11 ============================================================================ +18:02:11 Slot Id : <238> +18:02:11 Transaction Type : REQUEST +18:02:11 Received From : +18:02:11 ============================================================================ +18:02:11 FNo. Len. Field Value +18:02:11 ============================================================================ +18:02:11 [ 1] [ 4] [0200] +18:02:11 [ 2] [ 16] [6688990106066002] +18:02:11 [ 3] [ 6] [010000] +18:02:11 [ 4] [ 12] [000015000000] +18:02:11 [ 7] [ 10] [0320180206] +18:02:11 [ 11] [ 6] [823141] +18:02:11 [ 12] [ 6] [180206] +18:02:11 [ 13] [ 4] [0320] +18:02:11 [ 15] [ 4] [0320] +18:02:11 [ 18] [ 4] [6011] +18:02:11 [ 22] [ 3] [900] +18:02:11 [ 25] [ 2] [02] +18:02:11 [ 28] [ 9] [D00002000] +18:02:11 [ 32] [ 6] [621354] +18:02:11 [ 35] [ 37] [6688990106066002=43111231600285100000] +18:02:11 [ 37] [ 12] [507902916649] +18:02:11 [ 41] [ 8] [12001400] +18:02:11 [ 42] [ 15] [NATIVE ] +18:02:11 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +18:02:11 [ 49] [ 3] [418] +18:02:11 [ 52] [ 16] [28C6B54F42115620] +18:02:11 ============================================================================ +18:02:11 + + +waiting on router queue for slot.... +18:02:11 Sending to : +18:02:11 ============================================================================ +18:02:11 Sending to : +18:02:11 ============================================================================ +18:02:12 ============================================================================ +18:02:12 Slot Id : <238> +18:02:12 Transaction Type : REQUEST +18:02:12 Received From : +18:02:12 ============================================================================ +18:02:12 FNo. Len. Field Value +18:02:12 ============================================================================ +18:02:12 [ 1] [ 4] [0200] +18:02:12 [ 2] [ 16] [6688990106066002] +18:02:12 [ 3] [ 6] [010000] +18:02:12 [ 4] [ 12] [000015000000] +18:02:12 [ 7] [ 10] [0320180206] +18:02:12 [ 11] [ 6] [823141] +18:02:12 [ 12] [ 6] [180206] +18:02:12 [ 13] [ 4] [0320] +18:02:12 [ 15] [ 4] [0320] +18:02:12 [ 18] [ 4] [6011] +18:02:12 [ 22] [ 3] [900] +18:02:12 [ 25] [ 2] [02] +18:02:12 [ 28] [ 9] [D00002000] +18:02:12 [ 32] [ 6] [621354] +18:02:12 [ 35] [ 37] [6688990106066002=43111231600285100000] +18:02:12 [ 37] [ 12] [507902916649] +18:02:12 [ 41] [ 8] [12001400] +18:02:12 [ 42] [ 15] [NATIVE ] +18:02:12 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +18:02:12 [ 49] [ 3] [418] +18:02:12 [ 52] [ 16] [28C6B54F42115620] +18:02:12 ============================================================================ +18:02:12 + + +waiting on router queue for slot.... +18:02:12 Sending to : +18:02:12 ============================================================================ +18:02:12 ============================================================================ +18:02:12 Slot Id : <238> +18:02:12 Transaction Type : REQUEST +18:02:12 Received From : +18:02:12 ============================================================================ +18:02:12 FNo. Len. Field Value +18:02:12 ============================================================================ +18:02:12 [ 1] [ 4] [0200] +18:02:12 [ 2] [ 16] [6688990106066002] +18:02:12 [ 3] [ 6] [010000] +18:02:12 [ 4] [ 12] [000015000000] +18:02:12 [ 7] [ 10] [0320180206] +18:02:12 [ 11] [ 6] [823141] +18:02:12 [ 12] [ 6] [180206] +18:02:12 [ 13] [ 4] [0320] +18:02:12 [ 15] [ 4] [0320] +18:02:12 [ 18] [ 4] [6011] +18:02:12 [ 22] [ 3] [900] +18:02:12 [ 25] [ 2] [02] +18:02:12 [ 28] [ 9] [D00002000] +18:02:12 [ 32] [ 6] [621354] +18:02:12 [ 35] [ 37] [6688990106066002=43111231600285100000] +18:02:12 [ 37] [ 12] [507902916649] +18:02:12 [ 41] [ 8] [12001400] +18:02:12 [ 42] [ 15] [NATIVE ] +18:02:12 [ 43] [ 40] [MUANGPHIENG MAI UNIT Xayabouly LAO] +18:02:12 [ 49] [ 3] [418] +18:02:12 [ 52] [ 16] [DE067614898276E2] +18:02:12 ============================================================================ +18:02:12 + + +waiting on router queue for slot.... +18:02:12 Sending to : <4> +18:02:12 ============================================================================ +18:02:12 ============================================================================ +18:02:12 Slot Id : <200> +18:02:12 Transaction Type : REQUEST +18:02:12 Received From : +18:02:12 ============================================================================ +18:02:12 FNo. Len. Field Value +18:02:12 ============================================================================ +18:02:12 [ 1] [ 4] [0200] +18:02:12 [ 2] [ 16] [6688990040160374] +18:02:12 [ 3] [ 6] [012000] +18:02:12 [ 4] [ 12] [000070000000] +18:02:12 [ 7] [ 10] [0320180207] +18:02:12 [ 11] [ 6] [823142] +18:02:12 [ 12] [ 6] [180207] +18:02:12 [ 13] [ 4] [0320] +18:02:12 [ 15] [ 4] [0320] +18:02:12 [ 18] [ 4] [6011] +18:02:12 [ 22] [ 3] [900] +18:02:12 [ 25] [ 2] [02] +18:02:12 [ 28] [ 9] [D00002000] +18:02:12 [ 32] [ 6] [621354] +18:02:12 [ 35] [ 37] [6688990040160374=98051261225903200000] +18:02:12 [ 37] [ 12] [507902974905] +18:02:12 [ 41] [ 8] [12002000] +18:02:12 [ 42] [ 15] [NATIVE ] +18:02:12 [ 43] [ 40] [SYMOUNGKHOUN MARKET Xayabouly LAO] +18:02:12 [ 49] [ 3] [418] +18:02:12 [ 52] [ 16] [0A523E9C2023E9EA] +18:02:12 ============================================================================ +18:02:12 + + +waiting on router queue for slot.... +18:02:12 Sending to : +18:02:12 ============================================================================ +18:02:12 Sending to : +18:02:12 ============================================================================ +18:02:12 ============================================================================ +18:02:12 Slot Id : <200> +18:02:12 Transaction Type : REQUEST +18:02:12 Received From : +18:02:12 ============================================================================ +18:02:12 FNo. Len. Field Value +18:02:12 ============================================================================ +18:02:12 [ 1] [ 4] [0200] +18:02:12 [ 2] [ 16] [6688990040160374] +18:02:12 [ 3] [ 6] [012000] +18:02:12 [ 4] [ 12] [000070000000] +18:02:12 [ 7] [ 10] [0320180207] +18:02:12 [ 11] [ 6] [823142] +18:02:12 [ 12] [ 6] [180207] +18:02:12 [ 13] [ 4] [0320] +18:02:12 [ 15] [ 4] [0320] +18:02:12 [ 18] [ 4] [6011] +18:02:12 [ 22] [ 3] [900] +18:02:12 [ 25] [ 2] [02] +18:02:12 [ 28] [ 9] [D00002000] +18:02:12 [ 32] [ 6] [621354] +18:02:12 [ 35] [ 37] [6688990040160374=98051261225903200000] +18:02:12 [ 37] [ 12] [507902974905] +18:02:12 [ 41] [ 8] [12002000] +18:02:12 [ 42] [ 15] [NATIVE ] +18:02:12 [ 43] [ 40] [SYMOUNGKHOUN MARKET Xayabouly LAO] +18:02:12 [ 49] [ 3] [418] +18:02:12 [ 52] [ 16] [0A523E9C2023E9EA] +18:02:12 ============================================================================ +18:02:12 + + +waiting on router queue for slot.... +18:02:12 Sending to : +18:02:12 ============================================================================ +18:02:12 ============================================================================ +18:02:12 Slot Id : <200> +18:02:12 Transaction Type : REQUEST +18:02:12 Received From : +18:02:12 ============================================================================ +18:02:12 FNo. Len. Field Value +18:02:12 ============================================================================ +18:02:12 [ 1] [ 4] [0200] +18:02:12 [ 2] [ 16] [6688990040160374] +18:02:12 [ 3] [ 6] [012000] +18:02:12 [ 4] [ 12] [000070000000] +18:02:12 [ 7] [ 10] [0320180207] +18:02:12 [ 11] [ 6] [823142] +18:02:12 [ 12] [ 6] [180207] +18:02:12 [ 13] [ 4] [0320] +18:02:12 [ 15] [ 4] [0320] +18:02:12 [ 18] [ 4] [6011] +18:02:12 [ 22] [ 3] [900] +18:02:12 [ 25] [ 2] [02] +18:02:12 [ 28] [ 9] [D00002000] +18:02:12 [ 32] [ 6] [621354] +18:02:12 [ 35] [ 37] [6688990040160374=98051261225903200000] +18:02:12 [ 37] [ 12] [507902974905] +18:02:12 [ 41] [ 8] [12002000] +18:02:12 [ 42] [ 15] [NATIVE ] +18:02:12 [ 43] [ 40] [SYMOUNGKHOUN MARKET Xayabouly LAO] +18:02:12 [ 49] [ 3] [418] +18:02:12 [ 52] [ 16] [60FD859DE5F63C3A] +18:02:12 ============================================================================ +18:02:12 + + +waiting on router queue for slot.... +18:02:12 Sending to : <4> +18:02:12 ============================================================================ +18:02:12 ============================================================================ +18:02:12 Slot Id : <234> +18:02:12 Transaction Type : REQUEST +18:02:12 Received From : +18:02:12 ============================================================================ +18:02:12 FNo. Len. Field Value +18:02:12 ============================================================================ +18:02:12 [ 1] [ 4] [0800] +18:02:12 [ 7] [ 10] [0320110119] +18:02:12 [ 11] [ 6] [157609] +18:02:12 [ 70] [ 3] [301] +18:02:12 ============================================================================ +18:02:12 + + +waiting on router queue for slot.... +18:02:12 Sending to : +18:02:12 ============================================================================ +18:02:12 ============================================================================ +18:02:12 Slot Id : <234> +18:02:12 Transaction Type : RESPONSE +18:02:12 Received From : +18:02:12 ============================================================================ +18:02:12 FNo. Len. Field Value +18:02:12 ============================================================================ +18:02:12 [ 1] [ 4] [0810] +18:02:12 [ 7] [ 10] [0320110119] +18:02:12 [ 11] [ 6] [157609] +18:02:12 [ 39] [ 2] [00] +18:02:12 [ 70] [ 3] [301] +18:02:12 ============================================================================ +18:02:12 Calculate Source COMM Id = 2 +18:02:12 ============================================================================ +18:02:12 + + +waiting on router queue for slot.... +18:02:13 ============================================================================ +18:02:13 Slot Id : <238> +18:02:13 Transaction Type : RESPONSE +18:02:13 Received From : +18:02:13 ============================================================================ +18:02:13 FNo. Len. Field Value +18:02:13 ============================================================================ +18:02:13 [ 1] [ 4] [0210] +18:02:13 [ 2] [ 16] [6688990106066002] +18:02:13 [ 3] [ 6] [010000] +18:02:13 [ 4] [ 12] [000015000000] +18:02:13 [ 11] [ 6] [823141] +18:02:13 [ 12] [ 6] [180206] +18:02:13 [ 15] [ 4] [0320] +18:02:13 [ 18] [ 4] [6011] +18:02:13 [ 32] [ 6] [621354] +18:02:13 [ 35] [ 37] [6688990106066002=43111231600285100000] +18:02:13 [ 37] [ 12] [507902916649] +18:02:13 [ 38] [ 6] [747393] +18:02:13 [ 39] [ 2] [00] +18:02:13 [ 41] [ 8] [12001400] +18:02:13 [ 49] [ 3] [418] +18:02:13 [ 54] [ 20] [0002418C000004406639] +18:02:13 ============================================================================ +18:02:13 Sending to : +18:02:13 ============================================================================ +18:02:13 + + +waiting on router queue for slot.... +18:02:13 ============================================================================ +18:02:13 Slot Id : <253> +18:02:13 Transaction Type : REQUEST +18:02:13 Received From : +18:02:13 ============================================================================ +18:02:13 FNo. Len. Field Value +18:02:13 ============================================================================ +18:02:13 [ 1] [ 4] [0800] +18:02:13 [ 7] [ 10] [0321011401] +18:02:13 [ 11] [ 6] [181401] +18:02:13 [ 37] [ 12] [57918181401] +18:02:13 [ 70] [ 3] [301] +18:02:13 ============================================================================ +18:02:13 + + +waiting on router queue for slot.... +18:02:13 Sending to : +18:02:13 ============================================================================ +18:02:13 ============================================================================ +18:02:13 Slot Id : <253> +18:02:13 Transaction Type : RESPONSE +18:02:13 Received From : +18:02:13 ============================================================================ +18:02:13 FNo. Len. Field Value +18:02:13 ============================================================================ +18:02:13 [ 1] [ 4] [0810] +18:02:13 [ 7] [ 10] [0321011401] +18:02:13 [ 11] [ 6] [181401] +18:02:13 [ 37] [ 12] [579181814010] +18:02:13 [ 39] [ 2] [00] +18:02:13 [ 70] [ 3] [810] +18:02:13 ============================================================================ +18:02:13 Calculate Source COMM Id = 6 +18:02:13 ============================================================================ +18:02:13 + + +waiting on router queue for slot.... +18:02:13 ============================================================================ +18:02:13 Slot Id : <200> +18:02:13 Transaction Type : RESPONSE +18:02:13 Received From : +18:02:13 ============================================================================ +18:02:13 FNo. Len. Field Value +18:02:13 ============================================================================ +18:02:13 [ 1] [ 4] [0210] +18:02:13 [ 2] [ 16] [6688990040160374] +18:02:13 [ 3] [ 6] [012000] +18:02:13 [ 4] [ 12] [000070000000] +18:02:13 [ 11] [ 6] [823142] +18:02:13 [ 12] [ 6] [180207] +18:02:13 [ 15] [ 4] [0320] +18:02:13 [ 18] [ 4] [6011] +18:02:13 [ 32] [ 6] [621354] +18:02:13 [ 35] [ 37] [6688990040160374=98051261225903200000] +18:02:13 [ 37] [ 12] [507902974905] +18:02:13 [ 38] [ 6] [205734] +18:02:13 [ 39] [ 2] [00] +18:02:13 [ 41] [ 8] [12002000] +18:02:13 [ 49] [ 3] [418] +18:02:13 [ 54] [ 20] [2002418C000364149181] +18:02:13 ============================================================================ +18:02:13 Sending to : +18:02:13 ============================================================================ +18:02:13 + + +waiting on router queue for slot.... +18:02:13 ============================================================================ +18:02:13 Slot Id : <216> +18:02:13 Transaction Type : REQUEST +18:02:13 Received From : +18:02:13 ============================================================================ +18:02:13 FNo. Len. Field Value +18:02:13 ============================================================================ +18:02:13 [ 1] [ 4] [0200] +18:02:13 [ 2] [ 16] [6688990104113707] +18:02:13 [ 3] [ 6] [011000] +18:02:13 [ 4] [ 12] [000010000000] +18:02:13 [ 7] [ 10] [0320180208] +18:02:13 [ 11] [ 6] [823145] +18:02:13 [ 12] [ 6] [180208] +18:02:13 [ 13] [ 4] [0320] +18:02:13 [ 15] [ 4] [0320] +18:02:13 [ 18] [ 4] [6011] +18:02:13 [ 22] [ 3] [900] +18:02:13 [ 25] [ 2] [02] +18:02:13 [ 28] [ 9] [D00002000] +18:02:13 [ 32] [ 6] [621354] +18:02:13 [ 35] [ 37] [6688990104113707=43021231370753600000] +18:02:13 [ 37] [ 12] [507902606434] +18:02:13 [ 41] [ 8] [05004300] +18:02:13 [ 42] [ 15] [NATIVE ] +18:02:13 [ 43] [ 40] [Ka deng office LuangprabangLAO] +18:02:13 [ 49] [ 3] [418] +18:02:13 [ 52] [ 16] [86360844B55A8093] +18:02:13 ============================================================================ +18:02:13 + + +waiting on router queue for slot.... +18:02:13 Sending to : +18:02:13 ============================================================================ +18:02:13 Sending to : +18:02:13 ============================================================================ +18:02:14 ============================================================================ +18:02:14 Slot Id : <216> +18:02:14 Transaction Type : REQUEST +18:02:14 Received From : +18:02:14 ============================================================================ +18:02:14 FNo. Len. Field Value +18:02:14 ============================================================================ +18:02:14 [ 1] [ 4] [0200] +18:02:14 [ 2] [ 16] [6688990104113707] +18:02:14 [ 3] [ 6] [011000] +18:02:14 [ 4] [ 12] [000010000000] +18:02:14 [ 7] [ 10] [0320180208] +18:02:14 [ 11] [ 6] [823145] +18:02:14 [ 12] [ 6] [180208] +18:02:14 [ 13] [ 4] [0320] +18:02:14 [ 15] [ 4] [0320] +18:02:14 [ 18] [ 4] [6011] +18:02:14 [ 22] [ 3] [900] +18:02:14 [ 25] [ 2] [02] +18:02:14 [ 28] [ 9] [D00002000] +18:02:14 [ 32] [ 6] [621354] +18:02:14 [ 35] [ 37] [6688990104113707=43021231370753600000] +18:02:14 [ 37] [ 12] [507902606434] +18:02:14 [ 41] [ 8] [05004300] +18:02:14 [ 42] [ 15] [NATIVE ] +18:02:14 [ 43] [ 40] [Ka deng office LuangprabangLAO] +18:02:14 [ 49] [ 3] [418] +18:02:14 [ 52] [ 16] [86360844B55A8093] +18:02:14 ============================================================================ +18:02:14 + + +waiting on router queue for slot.... +18:02:14 Sending to : +18:02:14 ============================================================================ +18:02:14 ============================================================================ +18:02:14 Slot Id : <216> +18:02:14 Transaction Type : REQUEST +18:02:14 Received From : +18:02:14 ============================================================================ +18:02:14 FNo. Len. Field Value +18:02:14 ============================================================================ +18:02:14 [ 1] [ 4] [0200] +18:02:14 [ 2] [ 16] [6688990104113707] +18:02:14 [ 3] [ 6] [011000] +18:02:14 [ 4] [ 12] [000010000000] +18:02:14 [ 7] [ 10] [0320180208] +18:02:14 [ 11] [ 6] [823145] +18:02:14 [ 12] [ 6] [180208] +18:02:14 [ 13] [ 4] [0320] +18:02:14 [ 15] [ 4] [0320] +18:02:14 [ 18] [ 4] [6011] +18:02:14 [ 22] [ 3] [900] +18:02:14 [ 25] [ 2] [02] +18:02:14 [ 28] [ 9] [D00002000] +18:02:14 [ 32] [ 6] [621354] +18:02:14 [ 35] [ 37] [6688990104113707=43021231370753600000] +18:02:14 [ 37] [ 12] [507902606434] +18:02:14 [ 41] [ 8] [05004300] +18:02:14 [ 42] [ 15] [NATIVE ] +18:02:14 [ 43] [ 40] [Ka deng office LuangprabangLAO] +18:02:14 [ 49] [ 3] [418] +18:02:14 [ 52] [ 16] [290203B963B5649D] +18:02:14 ============================================================================ +18:02:14 + + +waiting on router queue for slot.... +18:02:14 Sending to : <4> +18:02:14 ============================================================================ +18:02:14 ============================================================================ +18:02:14 Slot Id : <238> +18:02:14 Transaction Type : RESPONSE +18:02:14 Received From : +18:02:14 ============================================================================ +18:02:14 FNo. Len. Field Value +18:02:14 ============================================================================ +18:02:14 [ 1] [ 4] [0210] +18:02:14 [ 2] [ 16] [6688990106066002] +18:02:14 [ 3] [ 6] [010000] +18:02:14 [ 4] [ 12] [000015000000] +18:02:14 [ 11] [ 6] [823141] +18:02:14 [ 12] [ 6] [180206] +18:02:14 [ 15] [ 4] [0320] +18:02:14 [ 18] [ 4] [6011] +18:02:14 [ 32] [ 6] [621354] +18:02:14 [ 35] [ 37] [6688990106066002=43111231600285100000] +18:02:14 [ 37] [ 12] [507902916649] +18:02:14 [ 38] [ 6] [747393] +18:02:14 [ 39] [ 2] [00] +18:02:14 [ 41] [ 8] [12001400] +18:02:14 [ 49] [ 3] [418] +18:02:14 [ 54] [ 20] [0002418C000004406639] +18:02:14 ============================================================================ +18:02:14 Calculate Source COMM Id = 0 +18:02:14 ============================================================================ +18:02:14 + + +waiting on router queue for slot.... +18:02:15 ============================================================================ +18:02:15 Slot Id : <216> +18:02:15 Transaction Type : RESPONSE +18:02:15 Received From : +18:02:15 ============================================================================ +18:02:15 FNo. Len. Field Value +18:02:15 ============================================================================ +18:02:15 [ 1] [ 4] [0210] +18:02:15 [ 2] [ 16] [6688990104113707] +18:02:15 [ 3] [ 6] [011000] +18:02:15 [ 4] [ 12] [000010000000] +18:02:15 [ 11] [ 6] [823145] +18:02:15 [ 12] [ 6] [180208] +18:02:15 [ 15] [ 4] [0320] +18:02:15 [ 18] [ 4] [6011] +18:02:15 [ 32] [ 6] [621354] +18:02:15 [ 35] [ 37] [6688990104113707=43021231370753600000] +18:02:15 [ 37] [ 12] [507902606434] +18:02:15 [ 38] [ 6] [730611] +18:02:15 [ 39] [ 2] [00] +18:02:15 [ 41] [ 8] [05004300] +18:02:15 [ 49] [ 3] [418] +18:02:15 [ 54] [ 20] [1002418C000006358679] +18:02:15 ============================================================================ +18:02:15 Sending to : +18:02:15 ============================================================================ +18:02:15 + + +waiting on router queue for slot.... +18:02:16 ============================================================================ +18:02:16 Slot Id : <200> +18:02:16 Transaction Type : RESPONSE +18:02:16 Received From : +18:02:16 ============================================================================ +18:02:16 FNo. Len. Field Value +18:02:16 ============================================================================ +18:02:16 [ 1] [ 4] [0210] +18:02:16 [ 2] [ 16] [6688990040160374] +18:02:16 [ 3] [ 6] [012000] +18:02:16 [ 4] [ 12] [000070000000] +18:02:16 [ 11] [ 6] [823142] +18:02:16 [ 12] [ 6] [180207] +18:02:16 [ 15] [ 4] [0320] +18:02:16 [ 18] [ 4] [6011] +18:02:16 [ 32] [ 6] [621354] +18:02:16 [ 35] [ 37] [6688990040160374=98051261225903200000] +18:02:16 [ 37] [ 12] [507902974905] +18:02:16 [ 38] [ 6] [205734] +18:02:16 [ 39] [ 2] [00] +18:02:16 [ 41] [ 8] [12002000] +18:02:16 [ 49] [ 3] [418] +18:02:16 [ 54] [ 20] [2002418C000364149181] +18:02:16 ============================================================================ +18:02:16 Calculate Source COMM Id = 0 +18:02:16 ============================================================================ +18:02:16 + + +waiting on router queue for slot.... +18:02:18 ============================================================================ +18:02:18 Slot Id : <216> +18:02:18 Transaction Type : RESPONSE +18:02:18 Received From : +18:02:18 ============================================================================ +18:02:18 FNo. Len. Field Value +18:02:18 ============================================================================ +18:02:18 [ 1] [ 4] [0210] +18:02:18 [ 2] [ 16] [6688990104113707] +18:02:18 [ 3] [ 6] [011000] +18:02:18 [ 4] [ 12] [000010000000] +18:02:18 [ 11] [ 6] [823145] +18:02:18 [ 12] [ 6] [180208] +18:02:18 [ 15] [ 4] [0320] +18:02:18 [ 18] [ 4] [6011] +18:02:18 [ 32] [ 6] [621354] +18:02:18 [ 35] [ 37] [6688990104113707=43021231370753600000] +18:02:18 [ 37] [ 12] [507902606434] +18:02:18 [ 38] [ 6] [730611] +18:02:18 [ 39] [ 2] [00] +18:02:18 [ 41] [ 8] [05004300] +18:02:18 [ 49] [ 3] [418] +18:02:18 [ 54] [ 20] [1002418C000006358679] +18:02:18 ============================================================================ +18:02:18 Calculate Source COMM Id = 0 +18:02:18 ============================================================================ +18:02:18 + + +waiting on router queue for slot.... +18:02:26 ============================================================================ +18:02:26 Slot Id : <259> +18:02:26 Transaction Type : REQUEST +18:02:26 Received From : +18:02:26 ============================================================================ +18:02:26 FNo. Len. Field Value +18:02:26 ============================================================================ +18:02:26 [ 1] [ 4] [0200] +18:02:26 [ 2] [ 16] [1888880000013946] +18:02:26 [ 3] [ 6] [301000] +18:02:26 [ 4] [ 12] [000000000000] +18:02:26 [ 7] [ 10] [0320180221] +18:02:26 [ 11] [ 6] [823183] +18:02:26 [ 12] [ 6] [180221] +18:02:26 [ 13] [ 4] [0320] +18:02:26 [ 15] [ 4] [0320] +18:02:26 [ 18] [ 4] [6011] +18:02:26 [ 22] [ 3] [900] +18:02:26 [ 25] [ 2] [02] +18:02:26 [ 28] [ 9] [D00000000] +18:02:26 [ 32] [ 6] [621354] +18:02:26 [ 35] [ 32] [1888880000013946=000010100000129] +18:02:26 [ 37] [ 12] [507902497526] +18:02:26 [ 41] [ 8] [05003200] +18:02:26 [ 42] [ 15] [NATIVE ] +18:02:26 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +18:02:26 [ 49] [ 3] [418] +18:02:26 [ 52] [ 16] [7FF02FBCB3035967] +18:02:26 ============================================================================ +18:02:26 + + +waiting on router queue for slot.... +18:02:26 Sending to : +18:02:26 ============================================================================ +18:02:26 Sending to : +18:02:26 ============================================================================ +18:02:26 ============================================================================ +18:02:26 Slot Id : <259> +18:02:26 Transaction Type : REQUEST +18:02:26 Received From : +18:02:26 ============================================================================ +18:02:26 FNo. Len. Field Value +18:02:26 ============================================================================ +18:02:26 [ 1] [ 4] [0200] +18:02:26 [ 2] [ 16] [1888880000013946] +18:02:26 [ 3] [ 6] [301000] +18:02:26 [ 4] [ 12] [000000000000] +18:02:26 [ 7] [ 10] [0320180221] +18:02:26 [ 11] [ 6] [823183] +18:02:26 [ 12] [ 6] [180221] +18:02:26 [ 13] [ 4] [0320] +18:02:26 [ 15] [ 4] [0320] +18:02:26 [ 18] [ 4] [6011] +18:02:26 [ 22] [ 3] [900] +18:02:26 [ 25] [ 2] [02] +18:02:26 [ 28] [ 9] [D00000000] +18:02:26 [ 32] [ 6] [621354] +18:02:26 [ 35] [ 32] [1888880000013946=000010100000129] +18:02:26 [ 37] [ 12] [507902497526] +18:02:26 [ 41] [ 8] [05003200] +18:02:26 [ 42] [ 15] [NATIVE ] +18:02:26 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +18:02:26 [ 49] [ 3] [418] +18:02:26 [ 52] [ 16] [7FF02FBCB3035967] +18:02:26 ============================================================================ +18:02:26 + + +waiting on router queue for slot.... +18:02:26 Sending to : +18:02:26 ============================================================================ +18:02:26 ============================================================================ +18:02:26 Slot Id : <259> +18:02:26 Transaction Type : REQUEST +18:02:26 Received From : +18:02:26 ============================================================================ +18:02:26 FNo. Len. Field Value +18:02:26 ============================================================================ +18:02:26 [ 1] [ 4] [0200] +18:02:26 [ 2] [ 16] [1888880000013946] +18:02:26 [ 3] [ 6] [301000] +18:02:26 [ 4] [ 12] [000000000000] +18:02:26 [ 7] [ 10] [0320180221] +18:02:26 [ 11] [ 6] [823183] +18:02:26 [ 12] [ 6] [180221] +18:02:26 [ 13] [ 4] [0320] +18:02:26 [ 15] [ 4] [0320] +18:02:26 [ 18] [ 4] [6011] +18:02:26 [ 22] [ 3] [900] +18:02:26 [ 25] [ 2] [02] +18:02:26 [ 28] [ 9] [D00000000] +18:02:26 [ 32] [ 6] [621354] +18:02:26 [ 35] [ 32] [1888880000013946=000010100000129] +18:02:26 [ 37] [ 12] [507902497526] +18:02:26 [ 41] [ 8] [05003200] +18:02:26 [ 42] [ 15] [NATIVE ] +18:02:26 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +18:02:26 [ 49] [ 3] [418] +18:02:26 [ 52] [ 16] [D93BC219635E4083] +18:02:26 ============================================================================ +18:02:26 + + +waiting on router queue for slot.... +18:02:26 Sending to : <5> +18:02:26 ============================================================================ +18:02:28 ============================================================================ +18:02:28 Slot Id : <249> +18:02:28 Transaction Type : REQUEST +18:02:28 Received From : +18:02:28 ============================================================================ +18:02:28 FNo. Len. Field Value +18:02:28 ============================================================================ +18:02:28 [ 1] [ 4] [0800] +18:02:28 [ 7] [ 10] [0320110135] +18:02:28 [ 11] [ 6] [157610] +18:02:28 [ 70] [ 3] [301] +18:02:28 ============================================================================ +18:02:28 + + +waiting on router queue for slot.... +18:02:28 Sending to : +18:02:28 ============================================================================ +18:02:28 ============================================================================ +18:02:28 Slot Id : <249> +18:02:28 Transaction Type : RESPONSE +18:02:28 Received From : +18:02:28 ============================================================================ +18:02:28 FNo. Len. Field Value +18:02:28 ============================================================================ +18:02:28 [ 1] [ 4] [0810] +18:02:28 [ 7] [ 10] [0320110135] +18:02:28 [ 11] [ 6] [157610] +18:02:28 [ 39] [ 2] [00] +18:02:28 [ 70] [ 3] [301] +18:02:28 ============================================================================ +18:02:28 Calculate Source COMM Id = 2 +18:02:28 ============================================================================ +18:02:28 + + +waiting on router queue for slot.... +18:02:30 ============================================================================ +18:02:30 Slot Id : <259> +18:02:30 Transaction Type : RESPONSE +18:02:30 Received From : +18:02:30 ============================================================================ +18:02:30 FNo. Len. Field Value +18:02:30 ============================================================================ +18:02:30 [ 1] [ 4] [0210] +18:02:30 [ 2] [ 16] [1888880000013946] +18:02:30 [ 3] [ 6] [301000] +18:02:30 [ 4] [ 12] [000000000000] +18:02:30 [ 7] [ 10] [0320180221] +18:02:30 [ 11] [ 6] [823183] +18:02:30 [ 12] [ 6] [180221] +18:02:30 [ 13] [ 4] [0320] +18:02:30 [ 15] [ 4] [0320] +18:02:30 [ 18] [ 4] [6011] +18:02:30 [ 19] [ 3] [418] +18:02:30 [ 32] [ 6] [621354] +18:02:30 [ 37] [ 12] [507902497526] +18:02:30 [ 38] [ 6] [899875] +18:02:30 [ 39] [ 2] [00] +18:02:30 [ 41] [ 8] [05003200] +18:02:30 [ 49] [ 3] [418] +18:02:30 [ 54] [ 20] [1001418C000029481700] +18:02:30 ============================================================================ +18:02:30 Sending to : +18:02:30 ============================================================================ +18:02:30 + + +waiting on router queue for slot.... +18:02:31 ============================================================================ +18:02:31 Slot Id : <259> +18:02:31 Transaction Type : RESPONSE +18:02:31 Received From : +18:02:31 ============================================================================ +18:02:31 FNo. Len. Field Value +18:02:31 ============================================================================ +18:02:31 [ 1] [ 4] [0210] +18:02:31 [ 2] [ 16] [1888880000013946] +18:02:31 [ 3] [ 6] [301000] +18:02:31 [ 4] [ 12] [000000000000] +18:02:31 [ 7] [ 10] [0320180221] +18:02:31 [ 11] [ 6] [823183] +18:02:31 [ 12] [ 6] [180221] +18:02:31 [ 13] [ 4] [0320] +18:02:31 [ 15] [ 4] [0320] +18:02:31 [ 18] [ 4] [6011] +18:02:31 [ 19] [ 3] [418] +18:02:31 [ 32] [ 6] [621354] +18:02:31 [ 37] [ 12] [507902497526] +18:02:31 [ 38] [ 6] [899875] +18:02:31 [ 39] [ 2] [00] +18:02:31 [ 41] [ 8] [05003200] +18:02:31 [ 49] [ 3] [418] +18:02:31 [ 54] [ 20] [1001418C000029481700] +18:02:31 ============================================================================ +18:02:31 Calculate Source COMM Id = 0 +18:02:31 ============================================================================ +18:02:31 + + +waiting on router queue for slot.... +18:02:33 ============================================================================ +18:02:33 Slot Id : <263> +18:02:33 Transaction Type : REQUEST +18:02:33 Received From : +18:02:33 ============================================================================ +18:02:33 FNo. Len. Field Value +18:02:33 ============================================================================ +18:02:33 [ 1] [ 4] [0800] +18:02:33 [ 2] [ 5] [02531] +18:02:33 [ 3] [ 6] [579188] +18:02:33 [ 7] [ 10] [0320110233] +18:02:33 [ 11] [ 6] [807459] +18:02:33 [ 15] [ 10] [0320110233] +18:02:33 [ 37] [ 11] [57918807459] +18:02:33 [ 70] [ 3] [001] +18:02:33 ============================================================================ +18:02:33 + + +waiting on router queue for slot.... +18:02:33 ============================================================================ +18:02:33 Slot Id : <263> +18:02:33 Transaction Type : RESPONSE +18:02:33 Received From : +18:02:33 ============================================================================ +18:02:33 FNo. Len. Field Value +18:02:33 ============================================================================ +18:02:33 [ 1] [ 4] [0810] +18:02:33 [ 7] [ 10] [0320110233] +18:02:33 [ 11] [ 6] [807459] +18:02:33 [ 15] [ 4] [0320] +18:02:33 [ 37] [ 12] [57918807459] +18:02:33 [ 39] [ 2] [00] +18:02:33 [ 70] [ 3] [001] +18:02:33 ============================================================================ +18:02:33 Sending to : +18:02:33 ============================================================================ +18:02:33 + + +waiting on router queue for slot.... +18:02:40 ============================================================================ +18:02:40 Slot Id : <210> +18:02:40 Transaction Type : REQUEST +18:02:40 Received From : +18:02:40 ============================================================================ +18:02:40 FNo. Len. Field Value +18:02:40 ============================================================================ +18:02:40 [ 1] [ 4] [0800] +18:02:40 [ 7] [ 10] [0320110145] +18:02:40 [ 11] [ 6] [157611] +18:02:40 [ 70] [ 3] [301] +18:02:40 ============================================================================ +18:02:40 + + +waiting on router queue for slot.... +18:02:40 Sending to : +18:02:40 ============================================================================ +18:02:40 ============================================================================ +18:02:40 Slot Id : <210> +18:02:40 Transaction Type : RESPONSE +18:02:40 Received From : +18:02:40 ============================================================================ +18:02:40 FNo. Len. Field Value +18:02:40 ============================================================================ +18:02:40 [ 1] [ 4] [0810] +18:02:40 [ 7] [ 10] [0320110145] +18:02:40 [ 11] [ 6] [157611] +18:02:40 [ 39] [ 2] [00] +18:02:40 [ 70] [ 3] [301] +18:02:40 ============================================================================ +18:02:40 Calculate Source COMM Id = 2 +18:02:40 ============================================================================ +18:02:40 + + +waiting on router queue for slot.... +18:02:54 ============================================================================ +18:02:54 Slot Id : <261> +18:02:54 Transaction Type : REQUEST +18:02:54 Received From : +18:02:54 ============================================================================ +18:02:54 FNo. Len. Field Value +18:02:54 ============================================================================ +18:02:54 [ 1] [ 4] [0800] +18:02:54 [ 7] [ 10] [0320110201] +18:02:54 [ 11] [ 6] [157612] +18:02:54 [ 70] [ 3] [301] +18:02:54 ============================================================================ +18:02:54 + + +waiting on router queue for slot.... +18:02:54 Sending to : +18:02:54 ============================================================================ +18:02:54 ============================================================================ +18:02:54 Slot Id : <261> +18:02:54 Transaction Type : RESPONSE +18:02:54 Received From : +18:02:54 ============================================================================ +18:02:54 FNo. Len. Field Value +18:02:54 ============================================================================ +18:02:54 [ 1] [ 4] [0810] +18:02:54 [ 7] [ 10] [0320110201] +18:02:54 [ 11] [ 6] [157612] +18:02:54 [ 39] [ 2] [00] +18:02:54 [ 70] [ 3] [301] +18:02:54 ============================================================================ +18:02:54 Calculate Source COMM Id = 2 +18:02:54 ============================================================================ +18:02:54 + + +waiting on router queue for slot.... +18:03:00 ============================================================================ +18:03:00 Slot Id : <269> +18:03:00 Transaction Type : REQUEST +18:03:00 Received From : +18:03:00 ============================================================================ +18:03:00 FNo. Len. Field Value +18:03:00 ============================================================================ +18:03:00 [ 1] [ 4] [0200] +18:03:00 [ 2] [ 16] [6213544002119680] +18:03:00 [ 3] [ 6] [301000] +18:03:00 [ 7] [ 10] [0320110205] +18:03:00 [ 11] [ 6] [271043] +18:03:00 [ 12] [ 6] [180205] +18:03:00 [ 13] [ 4] [0320] +18:03:00 [ 14] [ 4] [4912] +18:03:00 [ 15] [ 4] [0320] +18:03:00 [ 18] [ 4] [6011] +18:03:00 [ 19] [ 3] [418] +18:03:00 [ 22] [ 3] [021] +18:03:00 [ 25] [ 2] [01] +18:03:00 [ 32] [ 6] [180893] +18:03:00 [ 35] [ 32] [6213544002119680=491212011968629] +18:03:00 [ 37] [ 12] [507911271043] +18:03:00 [ 41] [ 8] [0528LPBP] +18:03:00 [ 42] [ 15] [999999 ] +18:03:00 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +18:03:00 [ 49] [ 3] [418] +18:03:00 [ 52] [ 16] [4795FCB10346F0F2] +18:03:00 ============================================================================ +18:03:00 + + +waiting on router queue for slot.... +18:03:00 Sending to : +18:03:00 ============================================================================ +18:03:00 Sending to : +18:03:00 ============================================================================ +18:03:00 ============================================================================ +18:03:00 Slot Id : <269> +18:03:00 Transaction Type : REQUEST +18:03:00 Received From : +18:03:00 ============================================================================ +18:03:00 FNo. Len. Field Value +18:03:00 ============================================================================ +18:03:00 [ 1] [ 4] [0200] +18:03:00 [ 2] [ 16] [6213544002119680] +18:03:00 [ 3] [ 6] [301000] +18:03:00 [ 7] [ 10] [0320110205] +18:03:00 [ 11] [ 6] [271043] +18:03:00 [ 12] [ 6] [180205] +18:03:00 [ 13] [ 4] [0320] +18:03:00 [ 14] [ 4] [4912] +18:03:00 [ 15] [ 4] [0320] +18:03:00 [ 18] [ 4] [6011] +18:03:00 [ 19] [ 3] [418] +18:03:00 [ 22] [ 3] [021] +18:03:00 [ 25] [ 2] [01] +18:03:00 [ 32] [ 6] [180893] +18:03:00 [ 35] [ 32] [6213544002119680=491212011968629] +18:03:00 [ 37] [ 12] [507911271043] +18:03:00 [ 41] [ 8] [0528LPBP] +18:03:00 [ 42] [ 15] [999999 ] +18:03:00 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +18:03:00 [ 49] [ 3] [418] +18:03:00 [ 52] [ 16] [4795FCB10346F0F2] +18:03:00 ============================================================================ +18:03:00 + + +waiting on router queue for slot.... +18:03:00 Sending to : +18:03:00 ============================================================================ +18:03:00 ============================================================================ +18:03:00 Slot Id : <269> +18:03:00 Transaction Type : REQUEST +18:03:00 Received From : +18:03:00 ============================================================================ +18:03:00 FNo. Len. Field Value +18:03:00 ============================================================================ +18:03:00 [ 1] [ 4] [0200] +18:03:00 [ 2] [ 16] [6213544002119680] +18:03:00 [ 3] [ 6] [301000] +18:03:00 [ 7] [ 10] [0320110205] +18:03:00 [ 11] [ 6] [271043] +18:03:00 [ 12] [ 6] [180205] +18:03:00 [ 13] [ 4] [0320] +18:03:00 [ 14] [ 4] [4912] +18:03:00 [ 15] [ 4] [0320] +18:03:00 [ 18] [ 4] [6011] +18:03:00 [ 19] [ 3] [418] +18:03:00 [ 22] [ 3] [021] +18:03:00 [ 25] [ 2] [01] +18:03:00 [ 32] [ 6] [180893] +18:03:00 [ 35] [ 32] [6213544002119680=491212011968629] +18:03:00 [ 37] [ 12] [507911271043] +18:03:00 [ 41] [ 8] [0528LPBP] +18:03:00 [ 42] [ 15] [999999 ] +18:03:00 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +18:03:00 [ 49] [ 3] [418] +18:03:00 [ 52] [ 16] [F7A795F705AB816C] +18:03:00 ============================================================================ +18:03:00 + + +waiting on router queue for slot.... +18:03:00 Sending to : <0> +18:03:00 ============================================================================ +18:03:00 ============================================================================ +18:03:00 Slot Id : <269> +18:03:00 Transaction Type : RESPONSE +18:03:00 Received From : +18:03:00 ============================================================================ +18:03:00 FNo. Len. Field Value +18:03:00 ============================================================================ +18:03:00 [ 1] [ 4] [0210] +18:03:00 [ 2] [ 16] [6213544002119680] +18:03:00 [ 3] [ 6] [301000] +18:03:00 [ 4] [ 12] [000000000000] +18:03:00 [ 7] [ 10] [0320110205] +18:03:00 [ 11] [ 6] [271043] +18:03:00 [ 12] [ 6] [180205] +18:03:00 [ 13] [ 4] [0320] +18:03:00 [ 15] [ 4] [0320] +18:03:00 [ 18] [ 4] [6011] +18:03:00 [ 19] [ 3] [418] +18:03:00 [ 32] [ 6] [180893] +18:03:00 [ 35] [ 32] [6213544002119680=491212011968629] +18:03:00 [ 37] [ 12] [507911271043] +18:03:00 [ 38] [ 6] [659639] +18:03:00 [ 39] [ 2] [00] +18:03:00 [ 41] [ 8] [0528LPBP] +18:03:00 [ 49] [ 3] [418] +18:03:00 [ 54] [ 40] [1001418C0001192482191002418C000119248219] +18:03:00 ============================================================================ +18:03:00 Sending to : +18:03:00 ============================================================================ +18:03:00 + + +waiting on router queue for slot.... +18:03:02 ============================================================================ +18:03:02 Slot Id : <225> +18:03:02 Transaction Type : REQUEST +18:03:02 Received From : +18:03:02 ============================================================================ +18:03:02 FNo. Len. Field Value +18:03:02 ============================================================================ +18:03:02 [ 1] [ 4] [0200] +18:03:02 [ 2] [ 16] [6688990601024506] +18:03:02 [ 3] [ 6] [010000] +18:03:02 [ 4] [ 12] [000080000000] +18:03:02 [ 7] [ 10] [0320180257] +18:03:02 [ 11] [ 6] [823302] +18:03:02 [ 12] [ 6] [180257] +18:03:02 [ 13] [ 4] [0320] +18:03:02 [ 15] [ 4] [0320] +18:03:02 [ 18] [ 4] [6011] +18:03:02 [ 22] [ 3] [900] +18:03:02 [ 25] [ 2] [02] +18:03:02 [ 28] [ 9] [D00002000] +18:03:02 [ 32] [ 6] [621354] +18:03:02 [ 35] [ 37] [6688990601024506=41040061450619500000] +18:03:02 [ 37] [ 12] [507904724984] +18:03:02 [ 41] [ 8] [18001100] +18:03:02 [ 42] [ 15] [NATIVE ] +18:03:02 [ 43] [ 40] [Ban Naxong May LAO] +18:03:02 [ 49] [ 3] [418] +18:03:02 [ 52] [ 16] [388256457A1C6D85] +18:03:02 ============================================================================ +18:03:02 + + +waiting on router queue for slot.... +18:03:02 Sending to : +18:03:02 ============================================================================ +18:03:02 Sending to : +18:03:02 ============================================================================ +18:03:02 ============================================================================ +18:03:02 Slot Id : <269> +18:03:02 Transaction Type : RESPONSE +18:03:02 Received From : +18:03:02 ============================================================================ +18:03:02 FNo. Len. Field Value +18:03:02 ============================================================================ +18:03:02 [ 1] [ 4] [0210] +18:03:02 [ 2] [ 16] [6213544002119680] +18:03:02 [ 3] [ 6] [301000] +18:03:02 [ 4] [ 12] [000000000000] +18:03:02 [ 7] [ 10] [0320110205] +18:03:02 [ 11] [ 6] [271043] +18:03:02 [ 12] [ 6] [180205] +18:03:02 [ 13] [ 4] [0320] +18:03:02 [ 15] [ 4] [0320] +18:03:02 [ 18] [ 4] [6011] +18:03:02 [ 19] [ 3] [418] +18:03:02 [ 32] [ 6] [180893] +18:03:02 [ 35] [ 32] [6213544002119680=491212011968629] +18:03:02 [ 37] [ 12] [507911271043] +18:03:02 [ 38] [ 6] [659639] +18:03:02 [ 39] [ 2] [00] +18:03:02 [ 41] [ 8] [0528LPBP] +18:03:02 [ 49] [ 3] [418] +18:03:02 [ 54] [ 40] [1001418C0001192482191002418C000119248219] +18:03:02 ============================================================================ +18:03:02 Calculate Source COMM Id = 2 +18:03:02 ============================================================================ +18:03:02 + + +waiting on router queue for slot.... +18:03:02 ============================================================================ +18:03:02 Slot Id : <225> +18:03:02 Transaction Type : REQUEST +18:03:02 Received From : +18:03:02 ============================================================================ +18:03:02 FNo. Len. Field Value +18:03:02 ============================================================================ +18:03:02 [ 1] [ 4] [0200] +18:03:02 [ 2] [ 16] [6688990601024506] +18:03:02 [ 3] [ 6] [010000] +18:03:02 [ 4] [ 12] [000080000000] +18:03:02 [ 7] [ 10] [0320180257] +18:03:02 [ 11] [ 6] [823302] +18:03:02 [ 12] [ 6] [180257] +18:03:02 [ 13] [ 4] [0320] +18:03:02 [ 15] [ 4] [0320] +18:03:02 [ 18] [ 4] [6011] +18:03:02 [ 22] [ 3] [900] +18:03:02 [ 25] [ 2] [02] +18:03:02 [ 28] [ 9] [D00002000] +18:03:02 [ 32] [ 6] [621354] +18:03:02 [ 35] [ 37] [6688990601024506=41040061450619500000] +18:03:02 [ 37] [ 12] [507904724984] +18:03:02 [ 41] [ 8] [18001100] +18:03:02 [ 42] [ 15] [NATIVE ] +18:03:02 [ 43] [ 40] [Ban Naxong May LAO] +18:03:02 [ 49] [ 3] [418] +18:03:02 [ 52] [ 16] [388256457A1C6D85] +18:03:02 ============================================================================ +18:03:02 + + +waiting on router queue for slot.... +18:03:02 Sending to : +18:03:02 ============================================================================ +18:03:02 ============================================================================ +18:03:02 Slot Id : <225> +18:03:02 Transaction Type : REQUEST +18:03:02 Received From : +18:03:02 ============================================================================ +18:03:02 FNo. Len. Field Value +18:03:02 ============================================================================ +18:03:02 [ 1] [ 4] [0200] +18:03:02 [ 2] [ 16] [6688990601024506] +18:03:02 [ 3] [ 6] [010000] +18:03:02 [ 4] [ 12] [000080000000] +18:03:02 [ 7] [ 10] [0320180257] +18:03:02 [ 11] [ 6] [823302] +18:03:02 [ 12] [ 6] [180257] +18:03:02 [ 13] [ 4] [0320] +18:03:02 [ 15] [ 4] [0320] +18:03:02 [ 18] [ 4] [6011] +18:03:02 [ 22] [ 3] [900] +18:03:02 [ 25] [ 2] [02] +18:03:02 [ 28] [ 9] [D00002000] +18:03:02 [ 32] [ 6] [621354] +18:03:02 [ 35] [ 37] [6688990601024506=41040061450619500000] +18:03:02 [ 37] [ 12] [507904724984] +18:03:02 [ 41] [ 8] [18001100] +18:03:02 [ 42] [ 15] [NATIVE ] +18:03:02 [ 43] [ 40] [Ban Naxong May LAO] +18:03:02 [ 49] [ 3] [418] +18:03:02 [ 52] [ 16] [5913E2BBCD5A933D] +18:03:02 ============================================================================ +18:03:02 + + +waiting on router queue for slot.... +18:03:02 Sending to : <4> +18:03:02 ============================================================================ +18:03:03 ============================================================================ +18:03:03 Slot Id : <225> +18:03:03 Transaction Type : RESPONSE +18:03:03 Received From : +18:03:03 ============================================================================ +18:03:03 FNo. Len. Field Value +18:03:03 ============================================================================ +18:03:03 [ 1] [ 4] [0210] +18:03:03 [ 2] [ 16] [6688990601024506] +18:03:03 [ 3] [ 6] [010000] +18:03:03 [ 4] [ 12] [000080000000] +18:03:03 [ 11] [ 6] [823302] +18:03:03 [ 12] [ 6] [180257] +18:03:03 [ 15] [ 4] [0320] +18:03:03 [ 18] [ 4] [6011] +18:03:03 [ 32] [ 6] [621354] +18:03:03 [ 35] [ 37] [6688990601024506=41040061450619500000] +18:03:03 [ 37] [ 12] [507904724984] +18:03:03 [ 38] [ 6] [129672] +18:03:03 [ 39] [ 2] [00] +18:03:03 [ 41] [ 8] [18001100] +18:03:03 [ 49] [ 3] [418] +18:03:03 [ 54] [ 20] [0002418C000010133455] +18:03:03 ============================================================================ +18:03:03 Sending to : +18:03:03 ============================================================================ +18:03:03 + + +waiting on router queue for slot.... +18:03:04 ============================================================================ +18:03:04 Slot Id : <225> +18:03:04 Transaction Type : RESPONSE +18:03:04 Received From : +18:03:04 ============================================================================ +18:03:04 FNo. Len. Field Value +18:03:04 ============================================================================ +18:03:04 [ 1] [ 4] [0210] +18:03:04 [ 2] [ 16] [6688990601024506] +18:03:04 [ 3] [ 6] [010000] +18:03:04 [ 4] [ 12] [000080000000] +18:03:04 [ 11] [ 6] [823302] +18:03:04 [ 12] [ 6] [180257] +18:03:04 [ 15] [ 4] [0320] +18:03:04 [ 18] [ 4] [6011] +18:03:04 [ 32] [ 6] [621354] +18:03:04 [ 35] [ 37] [6688990601024506=41040061450619500000] +18:03:04 [ 37] [ 12] [507904724984] +18:03:04 [ 38] [ 6] [129672] +18:03:04 [ 39] [ 2] [00] +18:03:04 [ 41] [ 8] [18001100] +18:03:04 [ 49] [ 3] [418] +18:03:04 [ 54] [ 20] [0002418C000010133455] +18:03:04 ============================================================================ +18:03:04 Calculate Source COMM Id = 0 +18:03:04 ============================================================================ +18:03:04 + + +waiting on router queue for slot.... +18:03:10 ============================================================================ +18:03:10 Slot Id : <199> +18:03:10 Transaction Type : REQUEST +18:03:10 Received From : +18:03:10 ============================================================================ +18:03:10 FNo. Len. Field Value +18:03:10 ============================================================================ +18:03:10 [ 1] [ 4] [0200] +18:03:10 [ 2] [ 16] [6213544000644846] +18:03:10 [ 3] [ 6] [010000] +18:03:10 [ 4] [ 12] [000040000000] +18:03:10 [ 7] [ 10] [0320180100] +18:03:10 [ 11] [ 6] [954257] +18:03:10 [ 12] [ 6] [180100] +18:03:10 [ 13] [ 4] [0320] +18:03:10 [ 15] [ 4] [0320] +18:03:10 [ 18] [ 4] [6011] +18:03:10 [ 19] [ 3] [418] +18:03:10 [ 22] [ 3] [021] +18:03:10 [ 25] [ 2] [01] +18:03:10 [ 28] [ 9] [D00002000] +18:03:10 [ 32] [ 6] [668899] +18:03:10 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:10 [ 37] [ 12] [507900555186] +18:03:10 [ 41] [ 8] [03014003] +18:03:10 [ 42] [ 15] [APT ] +18:03:10 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +18:03:10 [ 49] [ 3] [418] +18:03:10 [ 52] [ 16] [700B961D4C770FAD] +18:03:10 ============================================================================ +18:03:10 + + +waiting on router queue for slot.... +18:03:10 Sending to : +18:03:10 ============================================================================ +18:03:10 Sending to : +18:03:10 ============================================================================ +18:03:11 ============================================================================ +18:03:11 Slot Id : <199> +18:03:11 Transaction Type : REQUEST +18:03:11 Received From : +18:03:11 ============================================================================ +18:03:11 FNo. Len. Field Value +18:03:11 ============================================================================ +18:03:11 [ 1] [ 4] [0200] +18:03:11 [ 2] [ 16] [6213544000644846] +18:03:11 [ 3] [ 6] [010000] +18:03:11 [ 4] [ 12] [000040000000] +18:03:11 [ 7] [ 10] [0320180100] +18:03:11 [ 11] [ 6] [954257] +18:03:11 [ 12] [ 6] [180100] +18:03:11 [ 13] [ 4] [0320] +18:03:11 [ 15] [ 4] [0320] +18:03:11 [ 18] [ 4] [6011] +18:03:11 [ 19] [ 3] [418] +18:03:11 [ 22] [ 3] [021] +18:03:11 [ 25] [ 2] [01] +18:03:11 [ 28] [ 9] [D00002000] +18:03:11 [ 32] [ 6] [668899] +18:03:11 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:11 [ 37] [ 12] [507900555186] +18:03:11 [ 41] [ 8] [03014003] +18:03:11 [ 42] [ 15] [APT ] +18:03:11 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +18:03:11 [ 49] [ 3] [418] +18:03:11 [ 52] [ 16] [700B961D4C770FAD] +18:03:11 ============================================================================ +18:03:11 + + +waiting on router queue for slot.... +18:03:11 Sending to : +18:03:11 ============================================================================ +18:03:11 ============================================================================ +18:03:11 Slot Id : <199> +18:03:11 Transaction Type : REQUEST +18:03:11 Received From : +18:03:11 ============================================================================ +18:03:11 FNo. Len. Field Value +18:03:11 ============================================================================ +18:03:11 [ 1] [ 4] [0200] +18:03:11 [ 2] [ 16] [6213544000644846] +18:03:11 [ 3] [ 6] [010000] +18:03:11 [ 4] [ 12] [000040000000] +18:03:11 [ 7] [ 10] [0320180100] +18:03:11 [ 11] [ 6] [954257] +18:03:11 [ 12] [ 6] [180100] +18:03:11 [ 13] [ 4] [0320] +18:03:11 [ 15] [ 4] [0320] +18:03:11 [ 18] [ 4] [6011] +18:03:11 [ 19] [ 3] [418] +18:03:11 [ 22] [ 3] [021] +18:03:11 [ 25] [ 2] [01] +18:03:11 [ 28] [ 9] [D00002000] +18:03:11 [ 32] [ 6] [668899] +18:03:11 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:11 [ 37] [ 12] [507900555186] +18:03:11 [ 41] [ 8] [03014003] +18:03:11 [ 42] [ 15] [APT ] +18:03:11 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +18:03:11 [ 49] [ 3] [418] +18:03:11 [ 52] [ 16] [10772F9601EF52AB] +18:03:11 ============================================================================ +18:03:11 + + +waiting on router queue for slot.... +18:03:11 Sending to : <0> +18:03:11 ============================================================================ +18:03:11 ============================================================================ +18:03:11 Slot Id : <199> +18:03:11 Transaction Type : RESPONSE +18:03:11 Received From : +18:03:11 ============================================================================ +18:03:11 FNo. Len. Field Value +18:03:11 ============================================================================ +18:03:11 [ 1] [ 4] [0210] +18:03:11 [ 2] [ 16] [6213544000644846] +18:03:11 [ 3] [ 6] [010000] +18:03:11 [ 4] [ 12] [000040000000] +18:03:11 [ 7] [ 10] [0320180100] +18:03:11 [ 11] [ 6] [954257] +18:03:11 [ 12] [ 6] [180100] +18:03:11 [ 13] [ 4] [0320] +18:03:11 [ 15] [ 4] [0320] +18:03:11 [ 18] [ 4] [6011] +18:03:11 [ 19] [ 3] [418] +18:03:11 [ 32] [ 6] [668899] +18:03:11 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:11 [ 37] [ 12] [507900555186] +18:03:11 [ 38] [ 6] [954257] +18:03:11 [ 39] [ 2] [51] +18:03:11 [ 41] [ 8] [03014003] +18:03:11 [ 49] [ 3] [418] +18:03:11 [ 54] [ 40] [0001418C0000386426670002418C000038642667] +18:03:11 ============================================================================ +18:03:11 Sending to : +18:03:11 ============================================================================ +18:03:11 + + +waiting on router queue for slot.... +18:03:12 ============================================================================ +18:03:12 Slot Id : <199> +18:03:12 Transaction Type : RESPONSE +18:03:12 Received From : +18:03:12 ============================================================================ +18:03:12 FNo. Len. Field Value +18:03:12 ============================================================================ +18:03:12 [ 1] [ 4] [0210] +18:03:12 [ 2] [ 16] [6213544000644846] +18:03:12 [ 3] [ 6] [010000] +18:03:12 [ 4] [ 12] [000040000000] +18:03:12 [ 7] [ 10] [0320180100] +18:03:12 [ 11] [ 6] [954257] +18:03:12 [ 12] [ 6] [180100] +18:03:12 [ 13] [ 4] [0320] +18:03:12 [ 15] [ 4] [0320] +18:03:12 [ 18] [ 4] [6011] +18:03:12 [ 19] [ 3] [418] +18:03:12 [ 32] [ 6] [668899] +18:03:12 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:12 [ 37] [ 12] [507900555186] +18:03:12 [ 38] [ 6] [954257] +18:03:12 [ 39] [ 2] [51] +18:03:12 [ 41] [ 8] [03014003] +18:03:12 [ 49] [ 3] [418] +18:03:12 [ 54] [ 40] [0001418C0000386426670002418C000038642667] +18:03:12 ============================================================================ +18:03:12 Calculate Source COMM Id = 4 +18:03:12 ============================================================================ +18:03:12 + + +waiting on router queue for slot.... +18:03:16 ============================================================================ +18:03:16 Slot Id : <270> +18:03:16 Transaction Type : REQUEST +18:03:16 Received From : +18:03:16 ============================================================================ +18:03:16 FNo. Len. Field Value +18:03:16 ============================================================================ +18:03:16 [ 1] [ 4] [0800] +18:03:16 [ 7] [ 10] [0320110223] +18:03:16 [ 11] [ 6] [157613] +18:03:16 [ 70] [ 3] [301] +18:03:16 ============================================================================ +18:03:16 + + +waiting on router queue for slot.... +18:03:16 Sending to : +18:03:16 ============================================================================ +18:03:16 ============================================================================ +18:03:16 Slot Id : <270> +18:03:16 Transaction Type : RESPONSE +18:03:16 Received From : +18:03:16 ============================================================================ +18:03:16 FNo. Len. Field Value +18:03:16 ============================================================================ +18:03:16 [ 1] [ 4] [0810] +18:03:16 [ 7] [ 10] [0320110223] +18:03:16 [ 11] [ 6] [157613] +18:03:16 [ 39] [ 2] [00] +18:03:16 [ 70] [ 3] [301] +18:03:16 ============================================================================ +18:03:16 Calculate Source COMM Id = 2 +18:03:16 ============================================================================ +18:03:16 + + +waiting on router queue for slot.... +18:03:18 ============================================================================ +18:03:18 Slot Id : <275> +18:03:18 Transaction Type : REQUEST +18:03:18 Received From : +18:03:18 ============================================================================ +18:03:18 FNo. Len. Field Value +18:03:18 ============================================================================ +18:03:18 [ 1] [ 4] [0800] +18:03:18 [ 7] [ 10] [0321011506] +18:03:18 [ 11] [ 6] [181506] +18:03:18 [ 37] [ 12] [57918181506] +18:03:18 [ 70] [ 3] [301] +18:03:18 ============================================================================ +18:03:18 + + +waiting on router queue for slot.... +18:03:18 Sending to : +18:03:18 ============================================================================ +18:03:18 ============================================================================ +18:03:18 Slot Id : <275> +18:03:18 Transaction Type : RESPONSE +18:03:18 Received From : +18:03:18 ============================================================================ +18:03:18 FNo. Len. Field Value +18:03:18 ============================================================================ +18:03:18 [ 1] [ 4] [0810] +18:03:18 [ 7] [ 10] [0321011506] +18:03:18 [ 11] [ 6] [181506] +18:03:18 [ 37] [ 12] [579181815060] +18:03:18 [ 39] [ 2] [00] +18:03:18 [ 70] [ 3] [810] +18:03:18 ============================================================================ +18:03:18 Calculate Source COMM Id = 6 +18:03:18 ============================================================================ +18:03:18 + + +waiting on router queue for slot.... +18:03:21 ============================================================================ +18:03:21 Slot Id : <240> +18:03:21 Transaction Type : REQUEST +18:03:21 Received From : +18:03:21 ============================================================================ +18:03:21 FNo. Len. Field Value +18:03:21 ============================================================================ +18:03:21 [ 1] [ 4] [0200] +18:03:21 [ 2] [ 16] [6213544000644846] +18:03:21 [ 3] [ 6] [301000] +18:03:21 [ 4] [ 12] [000000000000] +18:03:21 [ 7] [ 10] [0320180111] +18:03:21 [ 11] [ 6] [954261] +18:03:21 [ 12] [ 6] [180111] +18:03:21 [ 13] [ 4] [0320] +18:03:21 [ 15] [ 4] [0320] +18:03:21 [ 18] [ 4] [6011] +18:03:21 [ 19] [ 3] [418] +18:03:21 [ 22] [ 3] [021] +18:03:21 [ 25] [ 2] [01] +18:03:21 [ 28] [ 9] [D00000000] +18:03:21 [ 32] [ 6] [668899] +18:03:21 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:21 [ 37] [ 12] [507900555187] +18:03:21 [ 41] [ 8] [03014003] +18:03:21 [ 42] [ 15] [APT ] +18:03:21 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +18:03:21 [ 49] [ 3] [418] +18:03:21 [ 52] [ 16] [700B961D4C770FAD] +18:03:21 ============================================================================ +18:03:21 + + +waiting on router queue for slot.... +18:03:21 Sending to : +18:03:21 ============================================================================ +18:03:21 Sending to : +18:03:21 ============================================================================ +18:03:22 ============================================================================ +18:03:22 Slot Id : <240> +18:03:22 Transaction Type : REQUEST +18:03:22 Received From : +18:03:22 ============================================================================ +18:03:22 FNo. Len. Field Value +18:03:22 ============================================================================ +18:03:22 [ 1] [ 4] [0200] +18:03:22 [ 2] [ 16] [6213544000644846] +18:03:22 [ 3] [ 6] [301000] +18:03:22 [ 4] [ 12] [000000000000] +18:03:22 [ 7] [ 10] [0320180111] +18:03:22 [ 11] [ 6] [954261] +18:03:22 [ 12] [ 6] [180111] +18:03:22 [ 13] [ 4] [0320] +18:03:22 [ 15] [ 4] [0320] +18:03:22 [ 18] [ 4] [6011] +18:03:22 [ 19] [ 3] [418] +18:03:22 [ 22] [ 3] [021] +18:03:22 [ 25] [ 2] [01] +18:03:22 [ 28] [ 9] [D00000000] +18:03:22 [ 32] [ 6] [668899] +18:03:22 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:22 [ 37] [ 12] [507900555187] +18:03:22 [ 41] [ 8] [03014003] +18:03:22 [ 42] [ 15] [APT ] +18:03:22 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +18:03:22 [ 49] [ 3] [418] +18:03:22 [ 52] [ 16] [700B961D4C770FAD] +18:03:22 ============================================================================ +18:03:22 + + +waiting on router queue for slot.... +18:03:22 Sending to : +18:03:22 ============================================================================ +18:03:22 ============================================================================ +18:03:22 Slot Id : <240> +18:03:22 Transaction Type : REQUEST +18:03:22 Received From : +18:03:22 ============================================================================ +18:03:22 FNo. Len. Field Value +18:03:22 ============================================================================ +18:03:22 [ 1] [ 4] [0200] +18:03:22 [ 2] [ 16] [6213544000644846] +18:03:22 [ 3] [ 6] [301000] +18:03:22 [ 4] [ 12] [000000000000] +18:03:22 [ 7] [ 10] [0320180111] +18:03:22 [ 11] [ 6] [954261] +18:03:22 [ 12] [ 6] [180111] +18:03:22 [ 13] [ 4] [0320] +18:03:22 [ 15] [ 4] [0320] +18:03:22 [ 18] [ 4] [6011] +18:03:22 [ 19] [ 3] [418] +18:03:22 [ 22] [ 3] [021] +18:03:22 [ 25] [ 2] [01] +18:03:22 [ 28] [ 9] [D00000000] +18:03:22 [ 32] [ 6] [668899] +18:03:22 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:22 [ 37] [ 12] [507900555187] +18:03:22 [ 41] [ 8] [03014003] +18:03:22 [ 42] [ 15] [APT ] +18:03:22 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +18:03:22 [ 49] [ 3] [418] +18:03:22 [ 52] [ 16] [10772F9601EF52AB] +18:03:22 ============================================================================ +18:03:22 + + +waiting on router queue for slot.... +18:03:22 Sending to : <0> +18:03:22 ============================================================================ +18:03:22 ============================================================================ +18:03:22 Slot Id : <240> +18:03:22 Transaction Type : RESPONSE +18:03:22 Received From : +18:03:22 ============================================================================ +18:03:22 FNo. Len. Field Value +18:03:22 ============================================================================ +18:03:22 [ 1] [ 4] [0210] +18:03:22 [ 2] [ 16] [6213544000644846] +18:03:22 [ 3] [ 6] [301000] +18:03:22 [ 4] [ 12] [000000000000] +18:03:22 [ 7] [ 10] [0320180111] +18:03:22 [ 11] [ 6] [954261] +18:03:22 [ 12] [ 6] [180111] +18:03:22 [ 13] [ 4] [0320] +18:03:22 [ 15] [ 4] [0320] +18:03:22 [ 18] [ 4] [6011] +18:03:22 [ 19] [ 3] [418] +18:03:22 [ 32] [ 6] [668899] +18:03:22 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:22 [ 37] [ 12] [507900555187] +18:03:22 [ 38] [ 6] [943339] +18:03:22 [ 39] [ 2] [00] +18:03:22 [ 41] [ 8] [03014003] +18:03:22 [ 49] [ 3] [418] +18:03:22 [ 54] [ 40] [1001418C0000386426671002418C000038642667] +18:03:22 ============================================================================ +18:03:22 Sending to : +18:03:22 ============================================================================ +18:03:22 + + +waiting on router queue for slot.... +18:03:22 ============================================================================ +18:03:22 Slot Id : <218> +18:03:22 Transaction Type : REQUEST +18:03:22 Received From : +18:03:22 ============================================================================ +18:03:22 FNo. Len. Field Value +18:03:22 ============================================================================ +18:03:22 [ 1] [ 4] [0200] +18:03:22 [ 2] [ 16] [1888880000013946] +18:03:22 [ 3] [ 6] [011000] +18:03:22 [ 4] [ 12] [000025000000] +18:03:22 [ 7] [ 10] [0320180317] +18:03:22 [ 11] [ 6] [823372] +18:03:22 [ 12] [ 6] [180317] +18:03:22 [ 13] [ 4] [0320] +18:03:22 [ 15] [ 4] [0320] +18:03:22 [ 18] [ 4] [6011] +18:03:22 [ 22] [ 3] [900] +18:03:22 [ 25] [ 2] [02] +18:03:22 [ 28] [ 9] [D00002000] +18:03:22 [ 32] [ 6] [621354] +18:03:22 [ 35] [ 32] [1888880000013946=000010100000129] +18:03:22 [ 37] [ 12] [507902497528] +18:03:22 [ 41] [ 8] [05003200] +18:03:22 [ 42] [ 15] [NATIVE ] +18:03:22 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +18:03:22 [ 49] [ 3] [418] +18:03:22 [ 52] [ 16] [7FF02FBCB3035967] +18:03:22 ============================================================================ +18:03:22 + + +waiting on router queue for slot.... +18:03:22 Sending to : +18:03:22 ============================================================================ +18:03:22 Sending to : +18:03:22 ============================================================================ +18:03:22 ============================================================================ +18:03:22 Slot Id : <218> +18:03:22 Transaction Type : REQUEST +18:03:22 Received From : +18:03:22 ============================================================================ +18:03:22 FNo. Len. Field Value +18:03:22 ============================================================================ +18:03:22 [ 1] [ 4] [0200] +18:03:22 [ 2] [ 16] [1888880000013946] +18:03:22 [ 3] [ 6] [011000] +18:03:22 [ 4] [ 12] [000025000000] +18:03:22 [ 7] [ 10] [0320180317] +18:03:22 [ 11] [ 6] [823372] +18:03:22 [ 12] [ 6] [180317] +18:03:22 [ 13] [ 4] [0320] +18:03:22 [ 15] [ 4] [0320] +18:03:22 [ 18] [ 4] [6011] +18:03:22 [ 22] [ 3] [900] +18:03:22 [ 25] [ 2] [02] +18:03:22 [ 28] [ 9] [D00002000] +18:03:22 [ 32] [ 6] [621354] +18:03:22 [ 35] [ 32] [1888880000013946=000010100000129] +18:03:22 [ 37] [ 12] [507902497528] +18:03:22 [ 41] [ 8] [05003200] +18:03:22 [ 42] [ 15] [NATIVE ] +18:03:22 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +18:03:22 [ 49] [ 3] [418] +18:03:22 [ 52] [ 16] [7FF02FBCB3035967] +18:03:22 ============================================================================ +18:03:22 + + +waiting on router queue for slot.... +18:03:22 Sending to : +18:03:22 ============================================================================ +18:03:22 ============================================================================ +18:03:22 Slot Id : <218> +18:03:22 Transaction Type : REQUEST +18:03:22 Received From : +18:03:22 ============================================================================ +18:03:22 FNo. Len. Field Value +18:03:22 ============================================================================ +18:03:22 [ 1] [ 4] [0200] +18:03:22 [ 2] [ 16] [1888880000013946] +18:03:22 [ 3] [ 6] [011000] +18:03:22 [ 4] [ 12] [000025000000] +18:03:22 [ 7] [ 10] [0320180317] +18:03:22 [ 11] [ 6] [823372] +18:03:22 [ 12] [ 6] [180317] +18:03:22 [ 13] [ 4] [0320] +18:03:22 [ 15] [ 4] [0320] +18:03:22 [ 18] [ 4] [6011] +18:03:22 [ 22] [ 3] [900] +18:03:22 [ 25] [ 2] [02] +18:03:22 [ 28] [ 9] [D00002000] +18:03:22 [ 32] [ 6] [621354] +18:03:22 [ 35] [ 32] [1888880000013946=000010100000129] +18:03:22 [ 37] [ 12] [507902497528] +18:03:22 [ 41] [ 8] [05003200] +18:03:22 [ 42] [ 15] [NATIVE ] +18:03:22 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +18:03:22 [ 49] [ 3] [418] +18:03:22 [ 52] [ 16] [D93BC219635E4083] +18:03:22 ============================================================================ +18:03:22 + + +waiting on router queue for slot.... +18:03:22 Sending to : <5> +18:03:22 ============================================================================ +18:03:23 ============================================================================ +18:03:23 Slot Id : <240> +18:03:23 Transaction Type : RESPONSE +18:03:23 Received From : +18:03:23 ============================================================================ +18:03:23 FNo. Len. Field Value +18:03:23 ============================================================================ +18:03:23 [ 1] [ 4] [0210] +18:03:23 [ 2] [ 16] [6213544000644846] +18:03:23 [ 3] [ 6] [301000] +18:03:23 [ 4] [ 12] [000000000000] +18:03:23 [ 7] [ 10] [0320180111] +18:03:23 [ 11] [ 6] [954261] +18:03:23 [ 12] [ 6] [180111] +18:03:23 [ 13] [ 4] [0320] +18:03:23 [ 15] [ 4] [0320] +18:03:23 [ 18] [ 4] [6011] +18:03:23 [ 19] [ 3] [418] +18:03:23 [ 32] [ 6] [668899] +18:03:23 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:23 [ 37] [ 12] [507900555187] +18:03:23 [ 38] [ 6] [943339] +18:03:23 [ 39] [ 2] [00] +18:03:23 [ 41] [ 8] [03014003] +18:03:23 [ 49] [ 3] [418] +18:03:23 [ 54] [ 40] [1001418C0000386426671002418C000038642667] +18:03:23 ============================================================================ +18:03:23 Calculate Source COMM Id = 4 +18:03:23 ============================================================================ +18:03:23 + + +waiting on router queue for slot.... +18:03:27 ============================================================================ +18:03:27 Slot Id : <197> +18:03:27 Transaction Type : REQUEST +18:03:27 Received From : +18:03:27 ============================================================================ +18:03:27 FNo. Len. Field Value +18:03:27 ============================================================================ +18:03:27 [ 1] [ 4] [0800] +18:03:27 [ 7] [ 10] [0320110234] +18:03:27 [ 11] [ 6] [157614] +18:03:27 [ 70] [ 3] [301] +18:03:27 ============================================================================ +18:03:27 + + +waiting on router queue for slot.... +18:03:27 Sending to : +18:03:27 ============================================================================ +18:03:27 ============================================================================ +18:03:27 Slot Id : <197> +18:03:27 Transaction Type : RESPONSE +18:03:27 Received From : +18:03:27 ============================================================================ +18:03:27 FNo. Len. Field Value +18:03:27 ============================================================================ +18:03:27 [ 1] [ 4] [0810] +18:03:27 [ 7] [ 10] [0320110234] +18:03:27 [ 11] [ 6] [157614] +18:03:27 [ 39] [ 2] [00] +18:03:27 [ 70] [ 3] [301] +18:03:27 ============================================================================ +18:03:27 Calculate Source COMM Id = 2 +18:03:27 ============================================================================ +18:03:27 + + +waiting on router queue for slot.... +18:03:33 ============================================================================ +18:03:33 Slot Id : <218> +18:03:33 Transaction Type : RESPONSE +18:03:33 Received From : +18:03:33 ============================================================================ +18:03:33 FNo. Len. Field Value +18:03:33 ============================================================================ +18:03:33 [ 1] [ 4] [0210] +18:03:33 [ 2] [ 16] [1888880000013946] +18:03:33 [ 3] [ 6] [011000] +18:03:33 [ 4] [ 12] [000025000000] +18:03:33 [ 7] [ 10] [0320180317] +18:03:33 [ 11] [ 6] [823372] +18:03:33 [ 12] [ 6] [180317] +18:03:33 [ 13] [ 4] [0320] +18:03:33 [ 15] [ 4] [0320] +18:03:33 [ 18] [ 4] [6011] +18:03:33 [ 19] [ 3] [418] +18:03:33 [ 32] [ 6] [621354] +18:03:33 [ 37] [ 12] [507902497528] +18:03:33 [ 38] [ 6] [207101] +18:03:33 [ 39] [ 2] [00] +18:03:33 [ 41] [ 8] [05003200] +18:03:33 [ 49] [ 3] [418] +18:03:33 [ 54] [ 0] [] +18:03:33 ============================================================================ +18:03:33 Sending to : +18:03:33 ============================================================================ +18:03:33 + + +waiting on router queue for slot.... +18:03:34 ============================================================================ +18:03:34 Slot Id : <218> +18:03:34 Transaction Type : RESPONSE +18:03:34 Received From : +18:03:34 ============================================================================ +18:03:34 FNo. Len. Field Value +18:03:34 ============================================================================ +18:03:34 [ 1] [ 4] [0210] +18:03:34 [ 2] [ 16] [1888880000013946] +18:03:34 [ 3] [ 6] [011000] +18:03:34 [ 4] [ 12] [000025000000] +18:03:34 [ 7] [ 10] [0320180317] +18:03:34 [ 11] [ 6] [823372] +18:03:34 [ 12] [ 6] [180317] +18:03:34 [ 13] [ 4] [0320] +18:03:34 [ 15] [ 4] [0320] +18:03:34 [ 18] [ 4] [6011] +18:03:34 [ 19] [ 3] [418] +18:03:34 [ 32] [ 6] [621354] +18:03:34 [ 37] [ 12] [507902497528] +18:03:34 [ 38] [ 6] [207101] +18:03:34 [ 39] [ 2] [00] +18:03:34 [ 41] [ 8] [05003200] +18:03:34 [ 49] [ 3] [418] +18:03:34 [ 54] [ 0] [] +18:03:34 ============================================================================ +18:03:34 Calculate Source COMM Id = 0 +18:03:34 ============================================================================ +18:03:34 + + +waiting on router queue for slot.... +18:03:35 ============================================================================ +18:03:35 Slot Id : <265> +18:03:35 Transaction Type : REQUEST +18:03:35 Received From : +18:03:35 ============================================================================ +18:03:35 FNo. Len. Field Value +18:03:35 ============================================================================ +18:03:35 [ 1] [ 4] [0800] +18:03:35 [ 2] [ 5] [02531] +18:03:35 [ 3] [ 6] [579188] +18:03:35 [ 7] [ 10] [0320110335] +18:03:35 [ 11] [ 6] [807460] +18:03:35 [ 15] [ 10] [0320110335] +18:03:35 [ 37] [ 11] [57918807460] +18:03:35 [ 70] [ 3] [001] +18:03:35 ============================================================================ +18:03:35 + + +waiting on router queue for slot.... +18:03:35 ============================================================================ +18:03:35 Slot Id : <265> +18:03:35 Transaction Type : RESPONSE +18:03:35 Received From : +18:03:35 ============================================================================ +18:03:35 FNo. Len. Field Value +18:03:35 ============================================================================ +18:03:35 [ 1] [ 4] [0810] +18:03:35 [ 7] [ 10] [0320110335] +18:03:35 [ 11] [ 6] [807460] +18:03:35 [ 15] [ 4] [0320] +18:03:35 [ 37] [ 12] [57918807460] +18:03:35 [ 39] [ 2] [00] +18:03:35 [ 70] [ 3] [001] +18:03:35 ============================================================================ +18:03:35 Sending to : +18:03:35 ============================================================================ +18:03:35 + + +waiting on router queue for slot.... +18:03:38 ============================================================================ +18:03:38 Slot Id : <247> +18:03:38 Transaction Type : REQUEST +18:03:38 Received From : +18:03:38 ============================================================================ +18:03:38 FNo. Len. Field Value +18:03:38 ============================================================================ +18:03:38 [ 1] [ 4] [0800] +18:03:38 [ 7] [ 10] [0320110244] +18:03:38 [ 11] [ 6] [157615] +18:03:38 [ 70] [ 3] [301] +18:03:38 ============================================================================ +18:03:38 + + +waiting on router queue for slot.... +18:03:38 Sending to : +18:03:38 ============================================================================ +18:03:38 ============================================================================ +18:03:38 Slot Id : <247> +18:03:38 Transaction Type : RESPONSE +18:03:38 Received From : +18:03:38 ============================================================================ +18:03:38 FNo. Len. Field Value +18:03:38 ============================================================================ +18:03:38 [ 1] [ 4] [0810] +18:03:38 [ 7] [ 10] [0320110244] +18:03:38 [ 11] [ 6] [157615] +18:03:38 [ 39] [ 2] [00] +18:03:38 [ 70] [ 3] [301] +18:03:38 ============================================================================ +18:03:38 Calculate Source COMM Id = 2 +18:03:38 ============================================================================ +18:03:38 + + +waiting on router queue for slot.... +18:03:49 ============================================================================ +18:03:49 Slot Id : <256> +18:03:49 Transaction Type : REQUEST +18:03:49 Received From : +18:03:49 ============================================================================ +18:03:49 FNo. Len. Field Value +18:03:49 ============================================================================ +18:03:49 [ 1] [ 4] [0800] +18:03:49 [ 7] [ 10] [0320110256] +18:03:49 [ 11] [ 6] [157616] +18:03:49 [ 70] [ 3] [301] +18:03:49 ============================================================================ +18:03:49 + + +waiting on router queue for slot.... +18:03:49 Sending to : +18:03:49 ============================================================================ +18:03:49 ============================================================================ +18:03:49 Slot Id : <256> +18:03:49 Transaction Type : RESPONSE +18:03:49 Received From : +18:03:49 ============================================================================ +18:03:49 FNo. Len. Field Value +18:03:49 ============================================================================ +18:03:49 [ 1] [ 4] [0810] +18:03:49 [ 7] [ 10] [0320110256] +18:03:49 [ 11] [ 6] [157616] +18:03:49 [ 39] [ 2] [00] +18:03:49 [ 70] [ 3] [301] +18:03:49 ============================================================================ +18:03:49 Calculate Source COMM Id = 2 +18:03:49 ============================================================================ +18:03:49 + + +waiting on router queue for slot.... +18:03:52 ============================================================================ +18:03:52 Slot Id : <228> +18:03:52 Transaction Type : REQUEST +18:03:52 Received From : +18:03:52 ============================================================================ +18:03:52 FNo. Len. Field Value +18:03:52 ============================================================================ +18:03:52 [ 1] [ 4] [0800] +18:03:52 [ 7] [ 10] [0320180338] +18:03:52 [ 11] [ 6] [048461] +18:03:52 [ 37] [ 12] [507918048461] +18:03:52 [ 70] [ 3] [ ] +18:03:52 ============================================================================ +18:03:52 + + +waiting on router queue for slot.... +18:03:52 Sending to : +18:03:52 ============================================================================ +18:03:52 ============================================================================ +18:03:52 Slot Id : <228> +18:03:52 Transaction Type : RESPONSE +18:03:52 Received From : +18:03:52 ============================================================================ +18:03:52 FNo. Len. Field Value +18:03:52 ============================================================================ +18:03:52 [ 1] [ 4] [0810] +18:03:52 [ 7] [ 10] [0320180338] +18:03:52 [ 11] [ 6] [048461] +18:03:52 [ 37] [ 12] [507918048461] +18:03:52 [ 39] [ 2] [91] +18:03:52 [ 70] [ 3] [ ] +18:03:52 ============================================================================ +18:03:52 Calculate Source COMM Id = 3 +18:03:52 ============================================================================ +18:03:52 + + +waiting on router queue for slot.... +18:03:53 ============================================================================ +18:03:53 Slot Id : <274> +18:03:53 Transaction Type : REQUEST +18:03:53 Received From : +18:03:53 ============================================================================ +18:03:53 FNo. Len. Field Value +18:03:53 ============================================================================ +18:03:53 [ 1] [ 4] [0200] +18:03:53 [ 2] [ 16] [6213544000644846] +18:03:53 [ 3] [ 6] [010000] +18:03:53 [ 4] [ 12] [000035000000] +18:03:53 [ 7] [ 10] [0320180143] +18:03:53 [ 11] [ 6] [954279] +18:03:53 [ 12] [ 6] [180143] +18:03:53 [ 13] [ 4] [0320] +18:03:53 [ 15] [ 4] [0320] +18:03:53 [ 18] [ 4] [6011] +18:03:53 [ 19] [ 3] [418] +18:03:53 [ 22] [ 3] [021] +18:03:53 [ 25] [ 2] [01] +18:03:53 [ 28] [ 9] [D00002000] +18:03:53 [ 32] [ 6] [668899] +18:03:53 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:53 [ 37] [ 12] [507900555188] +18:03:53 [ 41] [ 8] [03014003] +18:03:53 [ 42] [ 15] [APT ] +18:03:53 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +18:03:53 [ 49] [ 3] [418] +18:03:53 [ 52] [ 16] [700B961D4C770FAD] +18:03:53 ============================================================================ +18:03:53 + + +waiting on router queue for slot.... +18:03:53 Sending to : +18:03:53 ============================================================================ +18:03:53 Sending to : +18:03:53 ============================================================================ +18:03:53 ============================================================================ +18:03:53 Slot Id : <274> +18:03:53 Transaction Type : REQUEST +18:03:53 Received From : +18:03:53 ============================================================================ +18:03:53 FNo. Len. Field Value +18:03:53 ============================================================================ +18:03:53 [ 1] [ 4] [0200] +18:03:53 [ 2] [ 16] [6213544000644846] +18:03:53 [ 3] [ 6] [010000] +18:03:53 [ 4] [ 12] [000035000000] +18:03:53 [ 7] [ 10] [0320180143] +18:03:53 [ 11] [ 6] [954279] +18:03:53 [ 12] [ 6] [180143] +18:03:53 [ 13] [ 4] [0320] +18:03:53 [ 15] [ 4] [0320] +18:03:53 [ 18] [ 4] [6011] +18:03:53 [ 19] [ 3] [418] +18:03:53 [ 22] [ 3] [021] +18:03:53 [ 25] [ 2] [01] +18:03:53 [ 28] [ 9] [D00002000] +18:03:53 [ 32] [ 6] [668899] +18:03:53 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:53 [ 37] [ 12] [507900555188] +18:03:53 [ 41] [ 8] [03014003] +18:03:53 [ 42] [ 15] [APT ] +18:03:53 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +18:03:53 [ 49] [ 3] [418] +18:03:53 [ 52] [ 16] [700B961D4C770FAD] +18:03:53 ============================================================================ +18:03:53 + + +waiting on router queue for slot.... +18:03:53 Sending to : +18:03:53 ============================================================================ +18:03:53 ============================================================================ +18:03:53 Slot Id : <274> +18:03:53 Transaction Type : REQUEST +18:03:53 Received From : +18:03:53 ============================================================================ +18:03:53 FNo. Len. Field Value +18:03:53 ============================================================================ +18:03:53 [ 1] [ 4] [0200] +18:03:53 [ 2] [ 16] [6213544000644846] +18:03:53 [ 3] [ 6] [010000] +18:03:53 [ 4] [ 12] [000035000000] +18:03:53 [ 7] [ 10] [0320180143] +18:03:53 [ 11] [ 6] [954279] +18:03:53 [ 12] [ 6] [180143] +18:03:53 [ 13] [ 4] [0320] +18:03:53 [ 15] [ 4] [0320] +18:03:53 [ 18] [ 4] [6011] +18:03:53 [ 19] [ 3] [418] +18:03:53 [ 22] [ 3] [021] +18:03:53 [ 25] [ 2] [01] +18:03:53 [ 28] [ 9] [D00002000] +18:03:53 [ 32] [ 6] [668899] +18:03:53 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:53 [ 37] [ 12] [507900555188] +18:03:53 [ 41] [ 8] [03014003] +18:03:53 [ 42] [ 15] [APT ] +18:03:53 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +18:03:53 [ 49] [ 3] [418] +18:03:53 [ 52] [ 16] [10772F9601EF52AB] +18:03:53 ============================================================================ +18:03:53 + + +waiting on router queue for slot.... +18:03:53 Sending to : <0> +18:03:53 ============================================================================ +18:03:53 ============================================================================ +18:03:53 Slot Id : <264> +18:03:53 Transaction Type : REQUEST +18:03:53 Received From : +18:03:53 ============================================================================ +18:03:53 FNo. Len. Field Value +18:03:53 ============================================================================ +18:03:53 [ 1] [ 4] [0200] +18:03:53 [ 2] [ 16] [6213545000561807] +18:03:53 [ 3] [ 6] [010000] +18:03:53 [ 4] [ 12] [000070000000] +18:03:53 [ 7] [ 10] [0320181139] +18:03:53 [ 11] [ 6] [153729] +18:03:53 [ 12] [ 6] [181139] +18:03:53 [ 13] [ 4] [0320] +18:03:53 [ 14] [ 4] [4912] +18:03:53 [ 15] [ 4] [0320] +18:03:53 [ 18] [ 4] [6011] +18:03:53 [ 22] [ 3] [900] +18:03:53 [ 25] [ 2] [02] +18:03:53 [ 28] [ 9] [D00002000] +18:03:53 [ 32] [ 6] [220699] +18:03:53 [ 35] [ 32] [6213545000561807=491212016180006] +18:03:53 [ 37] [ 12] [507900035478] +18:03:53 [ 41] [ 8] [01000300] +18:03:53 [ 42] [ 15] [APTRA ] +18:03:53 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:03:53 [ 49] [ 3] [418] +18:03:53 [ 52] [ 16] [10FFBE16F6FDE15E] +18:03:53 ============================================================================ +18:03:53 + + +waiting on router queue for slot.... +18:03:53 Sending to : +18:03:53 ============================================================================ +18:03:53 Sending to : +18:03:53 ============================================================================ +18:03:54 ============================================================================ +18:03:54 Slot Id : <264> +18:03:54 Transaction Type : REQUEST +18:03:54 Received From : +18:03:54 ============================================================================ +18:03:54 FNo. Len. Field Value +18:03:54 ============================================================================ +18:03:54 [ 1] [ 4] [0200] +18:03:54 [ 2] [ 16] [6213545000561807] +18:03:54 [ 3] [ 6] [010000] +18:03:54 [ 4] [ 12] [000070000000] +18:03:54 [ 7] [ 10] [0320181139] +18:03:54 [ 11] [ 6] [153729] +18:03:54 [ 12] [ 6] [181139] +18:03:54 [ 13] [ 4] [0320] +18:03:54 [ 14] [ 4] [4912] +18:03:54 [ 15] [ 4] [0320] +18:03:54 [ 18] [ 4] [6011] +18:03:54 [ 22] [ 3] [900] +18:03:54 [ 25] [ 2] [02] +18:03:54 [ 28] [ 9] [D00002000] +18:03:54 [ 32] [ 6] [220699] +18:03:54 [ 35] [ 32] [6213545000561807=491212016180006] +18:03:54 [ 37] [ 12] [507900035478] +18:03:54 [ 41] [ 8] [01000300] +18:03:54 [ 42] [ 15] [APTRA ] +18:03:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:03:54 [ 49] [ 3] [418] +18:03:54 [ 52] [ 16] [10FFBE16F6FDE15E] +18:03:54 ============================================================================ +18:03:54 + + +waiting on router queue for slot.... +18:03:54 Sending to : +18:03:54 ============================================================================ +18:03:54 ============================================================================ +18:03:54 Slot Id : <274> +18:03:54 Transaction Type : RESPONSE +18:03:54 Received From : +18:03:54 ============================================================================ +18:03:54 FNo. Len. Field Value +18:03:54 ============================================================================ +18:03:54 [ 1] [ 4] [0210] +18:03:54 [ 2] [ 16] [6213544000644846] +18:03:54 [ 3] [ 6] [010000] +18:03:54 [ 4] [ 12] [000035000000] +18:03:54 [ 7] [ 10] [0320180143] +18:03:54 [ 11] [ 6] [954279] +18:03:54 [ 12] [ 6] [180143] +18:03:54 [ 13] [ 4] [0320] +18:03:54 [ 15] [ 4] [0320] +18:03:54 [ 18] [ 4] [6011] +18:03:54 [ 19] [ 3] [418] +18:03:54 [ 32] [ 6] [668899] +18:03:54 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:54 [ 37] [ 12] [507900555188] +18:03:54 [ 38] [ 6] [954279] +18:03:54 [ 39] [ 2] [51] +18:03:54 [ 41] [ 8] [03014003] +18:03:54 [ 49] [ 3] [418] +18:03:54 [ 54] [ 40] [0001418C0000386426670002418C000038642667] +18:03:54 ============================================================================ +18:03:54 Sending to : +18:03:54 ============================================================================ +18:03:54 + + +waiting on router queue for slot.... +18:03:54 ============================================================================ +18:03:54 Slot Id : <264> +18:03:54 Transaction Type : REQUEST +18:03:54 Received From : +18:03:54 ============================================================================ +18:03:54 FNo. Len. Field Value +18:03:54 ============================================================================ +18:03:54 [ 1] [ 4] [0200] +18:03:54 [ 2] [ 16] [6213545000561807] +18:03:54 [ 3] [ 6] [010000] +18:03:54 [ 4] [ 12] [000070000000] +18:03:54 [ 7] [ 10] [0320181139] +18:03:54 [ 11] [ 6] [153729] +18:03:54 [ 12] [ 6] [181139] +18:03:54 [ 13] [ 4] [0320] +18:03:54 [ 14] [ 4] [4912] +18:03:54 [ 15] [ 4] [0320] +18:03:54 [ 18] [ 4] [6011] +18:03:54 [ 22] [ 3] [900] +18:03:54 [ 25] [ 2] [02] +18:03:54 [ 28] [ 9] [D00002000] +18:03:54 [ 32] [ 6] [220699] +18:03:54 [ 35] [ 32] [6213545000561807=491212016180006] +18:03:54 [ 37] [ 12] [507900035478] +18:03:54 [ 41] [ 8] [01000300] +18:03:54 [ 42] [ 15] [APTRA ] +18:03:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:03:54 [ 49] [ 3] [418] +18:03:54 [ 52] [ 16] [02A6CA1E7D2C4655] +18:03:54 ============================================================================ +18:03:54 + + +waiting on router queue for slot.... +18:03:54 Sending to : <0> +18:03:54 ============================================================================ +18:03:54 ============================================================================ +18:03:54 Slot Id : <264> +18:03:54 Transaction Type : RESPONSE +18:03:54 Received From : +18:03:54 ============================================================================ +18:03:54 FNo. Len. Field Value +18:03:54 ============================================================================ +18:03:54 [ 1] [ 4] [0210] +18:03:54 [ 2] [ 16] [6213545000561807] +18:03:54 [ 3] [ 6] [010000] +18:03:54 [ 4] [ 12] [000070000000] +18:03:54 [ 7] [ 10] [0320181139] +18:03:54 [ 11] [ 6] [153729] +18:03:54 [ 12] [ 6] [181139] +18:03:54 [ 13] [ 4] [0320] +18:03:54 [ 15] [ 4] [0320] +18:03:54 [ 18] [ 4] [6011] +18:03:54 [ 32] [ 6] [220699] +18:03:54 [ 35] [ 32] [6213545000561807=491212016180006] +18:03:54 [ 37] [ 12] [507900035478] +18:03:54 [ 38] [ 6] [230256] +18:03:54 [ 39] [ 2] [00] +18:03:54 [ 41] [ 8] [01000300] +18:03:54 [ 49] [ 3] [418] +18:03:54 [ 54] [ 40] [0001418C0026293957670002418C002629395767] +18:03:54 ============================================================================ +18:03:54 Sending to : +18:03:54 ============================================================================ +18:03:54 + + +waiting on router queue for slot.... +18:03:55 ============================================================================ +18:03:55 Slot Id : <274> +18:03:55 Transaction Type : RESPONSE +18:03:55 Received From : +18:03:55 ============================================================================ +18:03:55 FNo. Len. Field Value +18:03:55 ============================================================================ +18:03:55 [ 1] [ 4] [0210] +18:03:55 [ 2] [ 16] [6213544000644846] +18:03:55 [ 3] [ 6] [010000] +18:03:55 [ 4] [ 12] [000035000000] +18:03:55 [ 7] [ 10] [0320180143] +18:03:55 [ 11] [ 6] [954279] +18:03:55 [ 12] [ 6] [180143] +18:03:55 [ 13] [ 4] [0320] +18:03:55 [ 15] [ 4] [0320] +18:03:55 [ 18] [ 4] [6011] +18:03:55 [ 19] [ 3] [418] +18:03:55 [ 32] [ 6] [668899] +18:03:55 [ 35] [ 32] [6213544000644846=491212014484690] +18:03:55 [ 37] [ 12] [507900555188] +18:03:55 [ 38] [ 6] [954279] +18:03:55 [ 39] [ 2] [51] +18:03:55 [ 41] [ 8] [03014003] +18:03:55 [ 49] [ 3] [418] +18:03:55 [ 54] [ 40] [0001418C0000386426670002418C000038642667] +18:03:55 ============================================================================ +18:03:55 Calculate Source COMM Id = 4 +18:03:55 ============================================================================ +18:03:55 + + +waiting on router queue for slot.... +18:03:55 ============================================================================ +18:03:55 Slot Id : <220> +18:03:55 Transaction Type : REQUEST +18:03:55 Received From : +18:03:55 ============================================================================ +18:03:55 FNo. Len. Field Value +18:03:55 ============================================================================ +18:03:55 [ 1] [ 4] [0200] +18:03:55 [ 2] [ 16] [6688990106051301] +18:03:55 [ 3] [ 6] [300000] +18:03:55 [ 4] [ 12] [000000000000] +18:03:55 [ 7] [ 10] [0320180350] +18:03:55 [ 11] [ 6] [823477] +18:03:55 [ 12] [ 6] [180350] +18:03:55 [ 13] [ 4] [0320] +18:03:55 [ 15] [ 4] [0320] +18:03:55 [ 18] [ 4] [6011] +18:03:55 [ 22] [ 3] [900] +18:03:55 [ 25] [ 2] [02] +18:03:55 [ 28] [ 9] [D00000000] +18:03:55 [ 32] [ 6] [621354] +18:03:55 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:03:55 [ 37] [ 12] [507903499695] +18:03:55 [ 41] [ 8] [06002200] +18:03:55 [ 42] [ 15] [NATIVE ] +18:03:55 [ 43] [ 40] [Beng Market Beng LAO] +18:03:55 [ 49] [ 3] [418] +18:03:55 [ 52] [ 16] [2C0D12CE1BFE7D62] +18:03:55 ============================================================================ +18:03:55 + + +waiting on router queue for slot.... +18:03:55 Sending to : +18:03:55 ============================================================================ +18:03:55 Sending to : +18:03:55 ============================================================================ +18:03:55 ============================================================================ +18:03:55 Slot Id : <220> +18:03:55 Transaction Type : REQUEST +18:03:55 Received From : +18:03:55 ============================================================================ +18:03:55 FNo. Len. Field Value +18:03:55 ============================================================================ +18:03:55 [ 1] [ 4] [0200] +18:03:55 [ 2] [ 16] [6688990106051301] +18:03:55 [ 3] [ 6] [300000] +18:03:55 [ 4] [ 12] [000000000000] +18:03:55 [ 7] [ 10] [0320180350] +18:03:55 [ 11] [ 6] [823477] +18:03:55 [ 12] [ 6] [180350] +18:03:55 [ 13] [ 4] [0320] +18:03:55 [ 15] [ 4] [0320] +18:03:55 [ 18] [ 4] [6011] +18:03:55 [ 22] [ 3] [900] +18:03:55 [ 25] [ 2] [02] +18:03:55 [ 28] [ 9] [D00000000] +18:03:55 [ 32] [ 6] [621354] +18:03:55 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:03:55 [ 37] [ 12] [507903499695] +18:03:55 [ 41] [ 8] [06002200] +18:03:55 [ 42] [ 15] [NATIVE ] +18:03:55 [ 43] [ 40] [Beng Market Beng LAO] +18:03:55 [ 49] [ 3] [418] +18:03:55 [ 52] [ 16] [2C0D12CE1BFE7D62] +18:03:55 ============================================================================ +18:03:55 + + +waiting on router queue for slot.... +18:03:55 Sending to : +18:03:55 ============================================================================ +18:03:55 ============================================================================ +18:03:55 Slot Id : <220> +18:03:55 Transaction Type : REQUEST +18:03:55 Received From : +18:03:55 ============================================================================ +18:03:55 FNo. Len. Field Value +18:03:55 ============================================================================ +18:03:55 [ 1] [ 4] [0200] +18:03:55 [ 2] [ 16] [6688990106051301] +18:03:55 [ 3] [ 6] [300000] +18:03:55 [ 4] [ 12] [000000000000] +18:03:55 [ 7] [ 10] [0320180350] +18:03:55 [ 11] [ 6] [823477] +18:03:55 [ 12] [ 6] [180350] +18:03:55 [ 13] [ 4] [0320] +18:03:55 [ 15] [ 4] [0320] +18:03:55 [ 18] [ 4] [6011] +18:03:55 [ 22] [ 3] [900] +18:03:55 [ 25] [ 2] [02] +18:03:55 [ 28] [ 9] [D00000000] +18:03:55 [ 32] [ 6] [621354] +18:03:55 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:03:55 [ 37] [ 12] [507903499695] +18:03:55 [ 41] [ 8] [06002200] +18:03:55 [ 42] [ 15] [NATIVE ] +18:03:55 [ 43] [ 40] [Beng Market Beng LAO] +18:03:55 [ 49] [ 3] [418] +18:03:55 [ 52] [ 16] [88B3AC43C032B9E8] +18:03:55 ============================================================================ +18:03:55 + + +waiting on router queue for slot.... +18:03:55 Sending to : <4> +18:03:55 ============================================================================ +18:03:56 ============================================================================ +18:03:56 Slot Id : <264> +18:03:56 Transaction Type : RESPONSE +18:03:56 Received From : +18:03:56 ============================================================================ +18:03:56 FNo. Len. Field Value +18:03:56 ============================================================================ +18:03:56 [ 1] [ 4] [0210] +18:03:56 [ 2] [ 16] [6213545000561807] +18:03:56 [ 3] [ 6] [010000] +18:03:56 [ 4] [ 12] [000070000000] +18:03:56 [ 7] [ 10] [0320181139] +18:03:56 [ 11] [ 6] [153729] +18:03:56 [ 12] [ 6] [181139] +18:03:56 [ 13] [ 4] [0320] +18:03:56 [ 15] [ 4] [0320] +18:03:56 [ 18] [ 4] [6011] +18:03:56 [ 32] [ 6] [220699] +18:03:56 [ 35] [ 32] [6213545000561807=491212016180006] +18:03:56 [ 37] [ 12] [507900035478] +18:03:56 [ 38] [ 6] [230256] +18:03:56 [ 39] [ 2] [00] +18:03:56 [ 41] [ 8] [01000300] +18:03:56 [ 49] [ 3] [418] +18:03:56 [ 54] [ 40] [0001418C0026293957670002418C002629395767] +18:03:56 ============================================================================ +18:03:56 Calculate Source COMM Id = 1 +18:03:56 ============================================================================ +18:03:56 + + +waiting on router queue for slot.... +18:03:56 ============================================================================ +18:03:56 Slot Id : <220> +18:03:56 Transaction Type : RESPONSE +18:03:56 Received From : +18:03:56 ============================================================================ +18:03:56 FNo. Len. Field Value +18:03:56 ============================================================================ +18:03:56 [ 1] [ 4] [0210] +18:03:56 [ 2] [ 16] [6688990106051301] +18:03:56 [ 3] [ 6] [300000] +18:03:56 [ 4] [ 12] [000000000000] +18:03:56 [ 11] [ 6] [823477] +18:03:56 [ 12] [ 6] [180350] +18:03:56 [ 15] [ 4] [0320] +18:03:56 [ 18] [ 4] [6011] +18:03:56 [ 32] [ 6] [621354] +18:03:56 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:03:56 [ 37] [ 12] [507903499695] +18:03:56 [ 38] [ 6] [562541] +18:03:56 [ 39] [ 2] [00] +18:03:56 [ 41] [ 8] [06002200] +18:03:56 [ 49] [ 3] [418] +18:03:56 [ 54] [ 20] [0002418C000332215134] +18:03:56 ============================================================================ +18:03:56 Sending to : +18:03:56 ============================================================================ +18:03:56 + + +waiting on router queue for slot.... +18:03:58 ============================================================================ +18:03:58 Slot Id : <220> +18:03:58 Transaction Type : RESPONSE +18:03:58 Received From : +18:03:58 ============================================================================ +18:03:58 FNo. Len. Field Value +18:03:58 ============================================================================ +18:03:58 [ 1] [ 4] [0210] +18:03:58 [ 2] [ 16] [6688990106051301] +18:03:58 [ 3] [ 6] [300000] +18:03:58 [ 4] [ 12] [000000000000] +18:03:58 [ 11] [ 6] [823477] +18:03:58 [ 12] [ 6] [180350] +18:03:58 [ 15] [ 4] [0320] +18:03:58 [ 18] [ 4] [6011] +18:03:58 [ 32] [ 6] [621354] +18:03:58 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:03:58 [ 37] [ 12] [507903499695] +18:03:58 [ 38] [ 6] [562541] +18:03:58 [ 39] [ 2] [00] +18:03:58 [ 41] [ 8] [06002200] +18:03:58 [ 49] [ 3] [418] +18:03:58 [ 54] [ 20] [0002418C000332215134] +18:03:58 ============================================================================ +18:03:58 Calculate Source COMM Id = 0 +18:03:58 ============================================================================ +18:03:58 + + +waiting on router queue for slot.... +18:04:01 ============================================================================ +18:04:01 Slot Id : <231> +18:04:01 Transaction Type : REQUEST +18:04:01 Received From : +18:04:01 ============================================================================ +18:04:01 FNo. Len. Field Value +18:04:01 ============================================================================ +18:04:01 [ 1] [ 4] [0800] +18:04:01 [ 7] [ 10] [0320110308] +18:04:01 [ 11] [ 6] [157617] +18:04:01 [ 70] [ 3] [301] +18:04:01 ============================================================================ +18:04:01 + + +waiting on router queue for slot.... +18:04:01 Sending to : +18:04:01 ============================================================================ +18:04:01 ============================================================================ +18:04:01 Slot Id : <231> +18:04:01 Transaction Type : RESPONSE +18:04:01 Received From : +18:04:01 ============================================================================ +18:04:01 FNo. Len. Field Value +18:04:01 ============================================================================ +18:04:01 [ 1] [ 4] [0810] +18:04:01 [ 7] [ 10] [0320110308] +18:04:01 [ 11] [ 6] [157617] +18:04:01 [ 39] [ 2] [00] +18:04:01 [ 70] [ 3] [301] +18:04:01 ============================================================================ +18:04:01 Calculate Source COMM Id = 2 +18:04:01 ============================================================================ +18:04:01 + + +waiting on router queue for slot.... +18:04:01 ============================================================================ +18:04:01 Slot Id : <273> +18:04:01 Transaction Type : REQUEST +18:04:01 Received From : +18:04:01 ============================================================================ +18:04:01 FNo. Len. Field Value +18:04:01 ============================================================================ +18:04:01 [ 1] [ 4] [0200] +18:04:01 [ 2] [ 16] [6688990106299207] +18:04:01 [ 3] [ 6] [011000] +18:04:01 [ 4] [ 12] [000010000000] +18:04:01 [ 7] [ 10] [0320181146] +18:04:01 [ 11] [ 6] [240884] +18:04:01 [ 12] [ 6] [181146] +18:04:01 [ 13] [ 4] [0320] +18:04:01 [ 14] [ 4] [4312] +18:04:01 [ 15] [ 4] [0320] +18:04:01 [ 18] [ 4] [6011] +18:04:01 [ 22] [ 3] [900] +18:04:01 [ 25] [ 2] [02] +18:04:01 [ 28] [ 9] [D00002000] +18:04:01 [ 32] [ 6] [220699] +18:04:01 [ 35] [ 37] [6688990106299207=43121231920736700000] +18:04:01 [ 37] [ 12] [507900410466] +18:04:01 [ 41] [ 8] [08000300] +18:04:01 [ 42] [ 15] [APTRA ] +18:04:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:04:01 [ 49] [ 3] [418] +18:04:01 [ 52] [ 16] [E640BA792D4D9D29] +18:04:01 ============================================================================ +18:04:01 + + +waiting on router queue for slot.... +18:04:01 Sending to : +18:04:01 ============================================================================ +18:04:01 Sending to : +18:04:01 ============================================================================ +18:04:01 ============================================================================ +18:04:01 Slot Id : <273> +18:04:01 Transaction Type : REQUEST +18:04:01 Received From : +18:04:01 ============================================================================ +18:04:01 FNo. Len. Field Value +18:04:01 ============================================================================ +18:04:01 [ 1] [ 4] [0200] +18:04:01 [ 2] [ 16] [6688990106299207] +18:04:01 [ 3] [ 6] [011000] +18:04:01 [ 4] [ 12] [000010000000] +18:04:01 [ 7] [ 10] [0320181146] +18:04:01 [ 11] [ 6] [240884] +18:04:01 [ 12] [ 6] [181146] +18:04:01 [ 13] [ 4] [0320] +18:04:01 [ 14] [ 4] [4312] +18:04:01 [ 15] [ 4] [0320] +18:04:01 [ 18] [ 4] [6011] +18:04:01 [ 22] [ 3] [900] +18:04:01 [ 25] [ 2] [02] +18:04:01 [ 28] [ 9] [D00002000] +18:04:01 [ 32] [ 6] [220699] +18:04:01 [ 35] [ 37] [6688990106299207=43121231920736700000] +18:04:01 [ 37] [ 12] [507900410466] +18:04:01 [ 41] [ 8] [08000300] +18:04:01 [ 42] [ 15] [APTRA ] +18:04:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:04:01 [ 49] [ 3] [418] +18:04:01 [ 52] [ 16] [E640BA792D4D9D29] +18:04:01 ============================================================================ +18:04:01 + + +waiting on router queue for slot.... +18:04:01 Sending to : +18:04:01 ============================================================================ +18:04:01 ============================================================================ +18:04:01 Slot Id : <273> +18:04:01 Transaction Type : REQUEST +18:04:01 Received From : +18:04:01 ============================================================================ +18:04:01 FNo. Len. Field Value +18:04:01 ============================================================================ +18:04:01 [ 1] [ 4] [0200] +18:04:01 [ 2] [ 16] [6688990106299207] +18:04:01 [ 3] [ 6] [011000] +18:04:01 [ 4] [ 12] [000010000000] +18:04:01 [ 7] [ 10] [0320181146] +18:04:01 [ 11] [ 6] [240884] +18:04:01 [ 12] [ 6] [181146] +18:04:01 [ 13] [ 4] [0320] +18:04:01 [ 14] [ 4] [4312] +18:04:01 [ 15] [ 4] [0320] +18:04:01 [ 18] [ 4] [6011] +18:04:01 [ 22] [ 3] [900] +18:04:01 [ 25] [ 2] [02] +18:04:01 [ 28] [ 9] [D00002000] +18:04:01 [ 32] [ 6] [220699] +18:04:01 [ 35] [ 37] [6688990106299207=43121231920736700000] +18:04:01 [ 37] [ 12] [507900410466] +18:04:01 [ 41] [ 8] [08000300] +18:04:01 [ 42] [ 15] [APTRA ] +18:04:01 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:04:01 [ 49] [ 3] [418] +18:04:01 [ 52] [ 16] [BE7E9F3F6E2D67FF] +18:04:01 ============================================================================ +18:04:01 + + +waiting on router queue for slot.... +18:04:01 Sending to : <0> +18:04:01 ============================================================================ +18:04:02 ============================================================================ +18:04:02 Slot Id : <273> +18:04:02 Transaction Type : RESPONSE +18:04:02 Received From : +18:04:02 ============================================================================ +18:04:02 FNo. Len. Field Value +18:04:02 ============================================================================ +18:04:02 [ 1] [ 4] [0210] +18:04:02 [ 2] [ 16] [6688990106299207] +18:04:02 [ 3] [ 6] [011000] +18:04:02 [ 4] [ 12] [000010000000] +18:04:02 [ 7] [ 10] [0320181146] +18:04:02 [ 11] [ 6] [240884] +18:04:02 [ 12] [ 6] [181146] +18:04:02 [ 13] [ 4] [0320] +18:04:02 [ 15] [ 4] [0320] +18:04:02 [ 18] [ 4] [6011] +18:04:02 [ 22] [ 3] [900] +18:04:02 [ 32] [ 6] [220699] +18:04:02 [ 35] [ 37] [6688990106299207=43121231920736700000] +18:04:02 [ 37] [ 12] [507900410466] +18:04:02 [ 39] [ 2] [14] +18:04:02 [ 41] [ 8] [08000300] +18:04:02 [ 49] [ 3] [418] +18:04:02 ============================================================================ +18:04:02 Sending to : +18:04:02 ============================================================================ +18:04:02 + + +waiting on router queue for slot.... +18:04:03 ============================================================================ +18:04:03 Slot Id : <273> +18:04:03 Transaction Type : RESPONSE +18:04:03 Received From : +18:04:03 ============================================================================ +18:04:03 FNo. Len. Field Value +18:04:03 ============================================================================ +18:04:03 [ 1] [ 4] [0210] +18:04:03 [ 2] [ 16] [6688990106299207] +18:04:03 [ 3] [ 6] [011000] +18:04:03 [ 4] [ 12] [000010000000] +18:04:03 [ 7] [ 10] [0320181146] +18:04:03 [ 11] [ 6] [240884] +18:04:03 [ 12] [ 6] [181146] +18:04:03 [ 13] [ 4] [0320] +18:04:03 [ 15] [ 4] [0320] +18:04:03 [ 18] [ 4] [6011] +18:04:03 [ 22] [ 3] [900] +18:04:03 [ 32] [ 6] [220699] +18:04:03 [ 35] [ 37] [6688990106299207=43121231920736700000] +18:04:03 [ 37] [ 12] [507900410466] +18:04:03 [ 39] [ 2] [14] +18:04:03 [ 41] [ 8] [08000300] +18:04:03 [ 49] [ 3] [418] +18:04:03 ============================================================================ +18:04:03 Calculate Source COMM Id = 1 +18:04:03 ============================================================================ +18:04:03 + + +waiting on router queue for slot.... +18:04:08 ============================================================================ +18:04:08 Slot Id : <279> +18:04:08 Transaction Type : REQUEST +18:04:08 Received From : +18:04:08 ============================================================================ +18:04:08 FNo. Len. Field Value +18:04:08 ============================================================================ +18:04:08 [ 1] [ 4] [0200] +18:04:08 [ 2] [ 16] [6213544002092754] +18:04:08 [ 3] [ 6] [011000] +18:04:08 [ 4] [ 12] [000040000000] +18:04:08 [ 7] [ 10] [0320110313] +18:04:08 [ 11] [ 6] [271046] +18:04:08 [ 12] [ 6] [180313] +18:04:08 [ 13] [ 4] [0320] +18:04:08 [ 14] [ 4] [4912] +18:04:08 [ 15] [ 4] [0320] +18:04:08 [ 18] [ 4] [6011] +18:04:08 [ 19] [ 3] [418] +18:04:08 [ 22] [ 3] [021] +18:04:08 [ 25] [ 2] [01] +18:04:08 [ 28] [ 9] [D00002000] +18:04:08 [ 32] [ 6] [180893] +18:04:08 [ 35] [ 32] [6213544002092754=491212019275465] +18:04:08 [ 37] [ 12] [507911271046] +18:04:08 [ 41] [ 8] [0528LPBP] +18:04:08 [ 42] [ 15] [999999 ] +18:04:08 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +18:04:08 [ 49] [ 3] [418] +18:04:08 [ 52] [ 16] [6595D5EE4B82611D] +18:04:08 ============================================================================ +18:04:08 + + +waiting on router queue for slot.... +18:04:08 Sending to : +18:04:08 ============================================================================ +18:04:08 Sending to : +18:04:08 ============================================================================ +18:04:09 ============================================================================ +18:04:09 Slot Id : <239> +18:04:09 Transaction Type : REQUEST +18:04:09 Received From : +18:04:09 ============================================================================ +18:04:09 FNo. Len. Field Value +18:04:09 ============================================================================ +18:04:09 [ 1] [ 4] [0200] +18:04:09 [ 2] [ 16] [1808930600042477] +18:04:09 [ 3] [ 6] [011000] +18:04:09 [ 4] [ 12] [000015000000] +18:04:09 [ 7] [ 10] [0320180403] +18:04:09 [ 11] [ 6] [823525] +18:04:09 [ 12] [ 6] [180403] +18:04:09 [ 13] [ 4] [0320] +18:04:09 [ 15] [ 4] [0320] +18:04:09 [ 18] [ 4] [6011] +18:04:09 [ 22] [ 3] [900] +18:04:09 [ 25] [ 2] [02] +18:04:09 [ 28] [ 9] [D00002000] +18:04:09 [ 32] [ 6] [621354] +18:04:09 [ 35] [ 27] [1808930600042477=1803500767] +18:04:09 [ 37] [ 12] [507904287939] +18:04:09 [ 41] [ 8] [03002700] +18:04:09 [ 42] [ 15] [NATIVE ] +18:04:09 [ 43] [ 40] [SVN Branch02 KaisonephomvLAO] +18:04:09 [ 49] [ 3] [418] +18:04:09 [ 52] [ 16] [510C4D053AD59DBA] +18:04:09 ============================================================================ +18:04:09 + + +waiting on router queue for slot.... +18:04:09 Sending to : +18:04:09 ============================================================================ +18:04:09 Sending to : +18:04:09 ============================================================================ +18:04:09 ============================================================================ +18:04:09 Slot Id : <279> +18:04:09 Transaction Type : REQUEST +18:04:09 Received From : +18:04:09 ============================================================================ +18:04:09 FNo. Len. Field Value +18:04:09 ============================================================================ +18:04:09 [ 1] [ 4] [0200] +18:04:09 [ 2] [ 16] [6213544002092754] +18:04:09 [ 3] [ 6] [011000] +18:04:09 [ 4] [ 12] [000040000000] +18:04:09 [ 7] [ 10] [0320110313] +18:04:09 [ 11] [ 6] [271046] +18:04:09 [ 12] [ 6] [180313] +18:04:09 [ 13] [ 4] [0320] +18:04:09 [ 14] [ 4] [4912] +18:04:09 [ 15] [ 4] [0320] +18:04:09 [ 18] [ 4] [6011] +18:04:09 [ 19] [ 3] [418] +18:04:09 [ 22] [ 3] [021] +18:04:09 [ 25] [ 2] [01] +18:04:09 [ 28] [ 9] [D00002000] +18:04:09 [ 32] [ 6] [180893] +18:04:09 [ 35] [ 32] [6213544002092754=491212019275465] +18:04:09 [ 37] [ 12] [507911271046] +18:04:09 [ 41] [ 8] [0528LPBP] +18:04:09 [ 42] [ 15] [999999 ] +18:04:09 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +18:04:09 [ 49] [ 3] [418] +18:04:09 [ 52] [ 16] [6595D5EE4B82611D] +18:04:09 ============================================================================ +18:04:09 + + +waiting on router queue for slot.... +18:04:09 Sending to : +18:04:09 ============================================================================ +18:04:09 ============================================================================ +18:04:09 Slot Id : <279> +18:04:09 Transaction Type : REQUEST +18:04:09 Received From : +18:04:09 ============================================================================ +18:04:09 FNo. Len. Field Value +18:04:09 ============================================================================ +18:04:09 [ 1] [ 4] [0200] +18:04:09 [ 2] [ 16] [6213544002092754] +18:04:09 [ 3] [ 6] [011000] +18:04:09 [ 4] [ 12] [000040000000] +18:04:09 [ 7] [ 10] [0320110313] +18:04:09 [ 11] [ 6] [271046] +18:04:09 [ 12] [ 6] [180313] +18:04:09 [ 13] [ 4] [0320] +18:04:09 [ 14] [ 4] [4912] +18:04:09 [ 15] [ 4] [0320] +18:04:09 [ 18] [ 4] [6011] +18:04:09 [ 19] [ 3] [418] +18:04:09 [ 22] [ 3] [021] +18:04:09 [ 25] [ 2] [01] +18:04:09 [ 28] [ 9] [D00002000] +18:04:09 [ 32] [ 6] [180893] +18:04:09 [ 35] [ 32] [6213544002092754=491212019275465] +18:04:09 [ 37] [ 12] [507911271046] +18:04:09 [ 41] [ 8] [0528LPBP] +18:04:09 [ 42] [ 15] [999999 ] +18:04:09 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +18:04:09 [ 49] [ 3] [418] +18:04:09 [ 52] [ 16] [F0932C2E87404786] +18:04:09 ============================================================================ +18:04:09 + + +waiting on router queue for slot.... +18:04:09 Sending to : <0> +18:04:09 ============================================================================ +18:04:09 ============================================================================ +18:04:09 Slot Id : <239> +18:04:09 Transaction Type : REQUEST +18:04:09 Received From : +18:04:09 ============================================================================ +18:04:09 FNo. Len. Field Value +18:04:09 ============================================================================ +18:04:09 [ 1] [ 4] [0200] +18:04:09 [ 2] [ 16] [1808930600042477] +18:04:09 [ 3] [ 6] [011000] +18:04:09 [ 4] [ 12] [000015000000] +18:04:09 [ 7] [ 10] [0320180403] +18:04:09 [ 11] [ 6] [823525] +18:04:09 [ 12] [ 6] [180403] +18:04:09 [ 13] [ 4] [0320] +18:04:09 [ 15] [ 4] [0320] +18:04:09 [ 18] [ 4] [6011] +18:04:09 [ 22] [ 3] [900] +18:04:09 [ 25] [ 2] [02] +18:04:09 [ 28] [ 9] [D00002000] +18:04:09 [ 32] [ 6] [621354] +18:04:09 [ 35] [ 27] [1808930600042477=1803500767] +18:04:09 [ 37] [ 12] [507904287939] +18:04:09 [ 41] [ 8] [03002700] +18:04:09 [ 42] [ 15] [NATIVE ] +18:04:09 [ 43] [ 40] [SVN Branch02 KaisonephomvLAO] +18:04:09 [ 49] [ 3] [418] +18:04:09 [ 52] [ 16] [510C4D053AD59DBA] +18:04:09 ============================================================================ +18:04:09 + + +waiting on router queue for slot.... +18:04:09 Sending to : +18:04:09 ============================================================================ +18:04:09 ============================================================================ +18:04:09 Slot Id : <239> +18:04:09 Transaction Type : REQUEST +18:04:09 Received From : +18:04:09 ============================================================================ +18:04:09 FNo. Len. Field Value +18:04:09 ============================================================================ +18:04:09 [ 1] [ 4] [0200] +18:04:09 [ 2] [ 16] [1808930600042477] +18:04:09 [ 3] [ 6] [011000] +18:04:09 [ 4] [ 12] [000015000000] +18:04:09 [ 7] [ 10] [0320180403] +18:04:09 [ 11] [ 6] [823525] +18:04:09 [ 12] [ 6] [180403] +18:04:09 [ 13] [ 4] [0320] +18:04:09 [ 15] [ 4] [0320] +18:04:09 [ 18] [ 4] [6011] +18:04:09 [ 22] [ 3] [900] +18:04:09 [ 25] [ 2] [02] +18:04:09 [ 28] [ 9] [D00002000] +18:04:09 [ 32] [ 6] [621354] +18:04:09 [ 35] [ 27] [1808930600042477=1803500767] +18:04:09 [ 37] [ 12] [507904287939] +18:04:09 [ 41] [ 8] [03002700] +18:04:09 [ 42] [ 15] [NATIVE ] +18:04:09 [ 43] [ 40] [SVN Branch02 KaisonephomvLAO] +18:04:09 [ 49] [ 3] [418] +18:04:09 [ 52] [ 16] [7C8973F3ABCA4770] +18:04:09 ============================================================================ +18:04:09 + + +waiting on router queue for slot.... +18:04:09 Sending to : <2> +18:04:09 ============================================================================ +18:04:09 ============================================================================ +18:04:09 Slot Id : <279> +18:04:09 Transaction Type : RESPONSE +18:04:09 Received From : +18:04:09 ============================================================================ +18:04:09 FNo. Len. Field Value +18:04:09 ============================================================================ +18:04:09 [ 1] [ 4] [0210] +18:04:09 [ 2] [ 16] [6213544002092754] +18:04:09 [ 3] [ 6] [011000] +18:04:09 [ 4] [ 12] [000040000000] +18:04:09 [ 7] [ 10] [0320110313] +18:04:09 [ 11] [ 6] [271046] +18:04:09 [ 12] [ 6] [180313] +18:04:09 [ 13] [ 4] [0320] +18:04:09 [ 15] [ 4] [0320] +18:04:09 [ 18] [ 4] [6011] +18:04:09 [ 19] [ 3] [418] +18:04:09 [ 32] [ 6] [180893] +18:04:09 [ 35] [ 32] [6213544002092754=491212019275465] +18:04:09 [ 37] [ 12] [507911271046] +18:04:09 [ 38] [ 6] [251866] +18:04:09 [ 39] [ 2] [00] +18:04:09 [ 41] [ 8] [0528LPBP] +18:04:09 [ 49] [ 3] [418] +18:04:09 [ 54] [ 40] [1001418C0000248361641002418C000024836164] +18:04:09 ============================================================================ +18:04:09 Sending to : +18:04:09 ============================================================================ +18:04:09 + + +waiting on router queue for slot.... +18:04:10 ============================================================================ +18:04:10 Slot Id : <272> +18:04:10 Transaction Type : REQUEST +18:04:10 Received From : +18:04:10 ============================================================================ +18:04:10 FNo. Len. Field Value +18:04:10 ============================================================================ +18:04:10 [ 1] [ 4] [0200] +18:04:10 [ 2] [ 16] [6688990106140005] +18:04:10 [ 3] [ 6] [011000] +18:04:10 [ 4] [ 12] [000005000000] +18:04:10 [ 7] [ 10] [0320110316] +18:04:10 [ 11] [ 6] [271049] +18:04:10 [ 12] [ 6] [180316] +18:04:10 [ 13] [ 4] [0320] +18:04:10 [ 14] [ 4] [4312] +18:04:10 [ 15] [ 4] [0320] +18:04:10 [ 18] [ 4] [6011] +18:04:10 [ 19] [ 3] [418] +18:04:10 [ 22] [ 3] [021] +18:04:10 [ 25] [ 2] [01] +18:04:10 [ 28] [ 9] [D00002000] +18:04:10 [ 32] [ 6] [180893] +18:04:10 [ 35] [ 37] [6688990106140005=43121231000521700000] +18:04:10 [ 37] [ 12] [507911271049] +18:04:10 [ 41] [ 8] [0321LNTV] +18:04:10 [ 42] [ 15] [999999 ] +18:04:10 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +18:04:10 [ 49] [ 3] [418] +18:04:10 [ 52] [ 16] [4039A073D3DEEBC7] +18:04:10 ============================================================================ +18:04:10 + + +waiting on router queue for slot.... +18:04:10 Sending to : +18:04:10 ============================================================================ +18:04:10 Sending to : +18:04:10 ============================================================================ +18:04:11 ============================================================================ +18:04:11 Slot Id : <239> +18:04:11 Transaction Type : RESPONSE +18:04:11 Received From : +18:04:11 ============================================================================ +18:04:11 FNo. Len. Field Value +18:04:11 ============================================================================ +18:04:11 [ 1] [ 4] [0210] +18:04:11 [ 2] [ 16] [1808930600042477] +18:04:11 [ 3] [ 6] [011000] +18:04:11 [ 4] [ 12] [000015000000] +18:04:11 [ 6] [ 12] [000015000000] +18:04:11 [ 7] [ 10] [0320180403] +18:04:11 [ 11] [ 6] [823525] +18:04:11 [ 12] [ 6] [180403] +18:04:11 [ 13] [ 4] [0320] +18:04:11 [ 18] [ 4] [6011] +18:04:11 [ 19] [ 3] [418] +18:04:11 [ 22] [ 3] [021] +18:04:11 [ 28] [ 9] [D00002000] +18:04:11 [ 32] [ 6] [621354] +18:04:11 [ 35] [ 27] [1808930600042477=1803500767] +18:04:11 [ 37] [ 12] [507904287939] +18:04:11 [ 39] [ 2] [55] +18:04:11 [ 41] [ 8] [03002700] +18:04:11 [ 49] [ 3] [418] +18:04:11 [ 51] [ 3] [418] +18:04:11 [ 52] [ 16] [7C8973F3ABCA4770] +18:04:11 ============================================================================ +18:04:11 Sending to : +18:04:11 ============================================================================ +18:04:11 + + +waiting on router queue for slot.... +18:04:11 ============================================================================ +18:04:11 Slot Id : <272> +18:04:11 Transaction Type : REQUEST +18:04:11 Received From : +18:04:11 ============================================================================ +18:04:11 FNo. Len. Field Value +18:04:11 ============================================================================ +18:04:11 [ 1] [ 4] [0200] +18:04:11 [ 2] [ 16] [6688990106140005] +18:04:11 [ 3] [ 6] [011000] +18:04:11 [ 4] [ 12] [000005000000] +18:04:11 [ 7] [ 10] [0320110316] +18:04:11 [ 11] [ 6] [271049] +18:04:11 [ 12] [ 6] [180316] +18:04:11 [ 13] [ 4] [0320] +18:04:11 [ 14] [ 4] [4312] +18:04:11 [ 15] [ 4] [0320] +18:04:11 [ 18] [ 4] [6011] +18:04:11 [ 19] [ 3] [418] +18:04:11 [ 22] [ 3] [021] +18:04:11 [ 25] [ 2] [01] +18:04:11 [ 28] [ 9] [D00002000] +18:04:11 [ 32] [ 6] [180893] +18:04:11 [ 35] [ 37] [6688990106140005=43121231000521700000] +18:04:11 [ 37] [ 12] [507911271049] +18:04:11 [ 41] [ 8] [0321LNTV] +18:04:11 [ 42] [ 15] [999999 ] +18:04:11 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +18:04:11 [ 49] [ 3] [418] +18:04:11 [ 52] [ 16] [4039A073D3DEEBC7] +18:04:11 ============================================================================ +18:04:11 + + +waiting on router queue for slot.... +18:04:11 Sending to : +18:04:11 ============================================================================ +18:04:11 ============================================================================ +18:04:11 Slot Id : <272> +18:04:11 Transaction Type : REQUEST +18:04:11 Received From : +18:04:11 ============================================================================ +18:04:11 FNo. Len. Field Value +18:04:11 ============================================================================ +18:04:11 [ 1] [ 4] [0200] +18:04:11 [ 2] [ 16] [6688990106140005] +18:04:11 [ 3] [ 6] [011000] +18:04:11 [ 4] [ 12] [000005000000] +18:04:11 [ 7] [ 10] [0320110316] +18:04:11 [ 11] [ 6] [271049] +18:04:11 [ 12] [ 6] [180316] +18:04:11 [ 13] [ 4] [0320] +18:04:11 [ 14] [ 4] [4312] +18:04:11 [ 15] [ 4] [0320] +18:04:11 [ 18] [ 4] [6011] +18:04:11 [ 19] [ 3] [418] +18:04:11 [ 22] [ 3] [021] +18:04:11 [ 25] [ 2] [01] +18:04:11 [ 28] [ 9] [D00002000] +18:04:11 [ 32] [ 6] [180893] +18:04:11 [ 35] [ 37] [6688990106140005=43121231000521700000] +18:04:11 [ 37] [ 12] [507911271049] +18:04:11 [ 41] [ 8] [0321LNTV] +18:04:11 [ 42] [ 15] [999999 ] +18:04:11 [ 43] [ 40] [ATM LUANGNAMTHA LOCATION VIENGPHOUKHA, V] +18:04:11 [ 49] [ 3] [418] +18:04:11 [ 52] [ 16] [E2DCF779F1F9FF0D] +18:04:11 ============================================================================ +18:04:11 + + +waiting on router queue for slot.... +18:04:11 Sending to : <0> +18:04:11 ============================================================================ +18:04:11 ============================================================================ +18:04:11 Slot Id : <279> +18:04:11 Transaction Type : RESPONSE +18:04:11 Received From : +18:04:11 ============================================================================ +18:04:11 FNo. Len. Field Value +18:04:11 ============================================================================ +18:04:11 [ 1] [ 4] [0210] +18:04:11 [ 2] [ 16] [6213544002092754] +18:04:11 [ 3] [ 6] [011000] +18:04:11 [ 4] [ 12] [000040000000] +18:04:11 [ 7] [ 10] [0320110313] +18:04:11 [ 11] [ 6] [271046] +18:04:11 [ 12] [ 6] [180313] +18:04:11 [ 13] [ 4] [0320] +18:04:11 [ 15] [ 4] [0320] +18:04:11 [ 18] [ 4] [6011] +18:04:11 [ 19] [ 3] [418] +18:04:11 [ 32] [ 6] [180893] +18:04:11 [ 35] [ 32] [6213544002092754=491212019275465] +18:04:11 [ 37] [ 12] [507911271046] +18:04:11 [ 38] [ 6] [251866] +18:04:11 [ 39] [ 2] [00] +18:04:11 [ 41] [ 8] [0528LPBP] +18:04:11 [ 49] [ 3] [418] +18:04:11 [ 54] [ 40] [1001418C0000248361641002418C000024836164] +18:04:11 ============================================================================ +18:04:11 Calculate Source COMM Id = 2 +18:04:11 ============================================================================ +18:04:11 + + +waiting on router queue for slot.... +18:04:11 ============================================================================ +18:04:11 Slot Id : <272> +18:04:11 Transaction Type : RESPONSE +18:04:11 Received From : +18:04:11 ============================================================================ +18:04:11 FNo. Len. Field Value +18:04:11 ============================================================================ +18:04:11 [ 1] [ 4] [0210] +18:04:11 [ 2] [ 16] [6688990106140005] +18:04:11 [ 3] [ 6] [011000] +18:04:11 [ 4] [ 12] [000005000000] +18:04:11 [ 7] [ 10] [0320110316] +18:04:11 [ 11] [ 6] [271049] +18:04:11 [ 12] [ 6] [180316] +18:04:11 [ 13] [ 4] [0320] +18:04:11 [ 15] [ 4] [0320] +18:04:11 [ 18] [ 4] [6011] +18:04:11 [ 19] [ 3] [418] +18:04:11 [ 22] [ 3] [021] +18:04:11 [ 32] [ 6] [180893] +18:04:11 [ 35] [ 37] [6688990106140005=43121231000521700000] +18:04:11 [ 37] [ 12] [507911271049] +18:04:11 [ 39] [ 2] [14] +18:04:11 [ 41] [ 8] [0321LNTV] +18:04:11 [ 49] [ 3] [418] +18:04:11 ============================================================================ +18:04:11 Sending to : +18:04:11 ============================================================================ +18:04:11 + + +waiting on router queue for slot.... +18:04:12 ============================================================================ +18:04:12 Slot Id : <239> +18:04:12 Transaction Type : RESPONSE +18:04:12 Received From : +18:04:12 ============================================================================ +18:04:12 FNo. Len. Field Value +18:04:12 ============================================================================ +18:04:12 [ 1] [ 4] [0210] +18:04:12 [ 2] [ 16] [1808930600042477] +18:04:12 [ 3] [ 6] [011000] +18:04:12 [ 4] [ 12] [000015000000] +18:04:12 [ 6] [ 12] [000015000000] +18:04:12 [ 7] [ 10] [0320180403] +18:04:12 [ 11] [ 6] [823525] +18:04:12 [ 12] [ 6] [180403] +18:04:12 [ 13] [ 4] [0320] +18:04:12 [ 18] [ 4] [6011] +18:04:12 [ 19] [ 3] [418] +18:04:12 [ 22] [ 3] [021] +18:04:12 [ 28] [ 9] [D00002000] +18:04:12 [ 32] [ 6] [621354] +18:04:12 [ 35] [ 27] [1808930600042477=1803500767] +18:04:12 [ 37] [ 12] [507904287939] +18:04:12 [ 39] [ 2] [55] +18:04:12 [ 41] [ 8] [03002700] +18:04:12 [ 49] [ 3] [418] +18:04:12 [ 51] [ 3] [418] +18:04:12 [ 52] [ 16] [7C8973F3ABCA4770] +18:04:12 ============================================================================ +18:04:12 Calculate Source COMM Id = 0 +18:04:12 ============================================================================ +18:04:12 + + +waiting on router queue for slot.... +18:04:13 ============================================================================ +18:04:13 Slot Id : <272> +18:04:13 Transaction Type : RESPONSE +18:04:13 Received From : +18:04:13 ============================================================================ +18:04:13 FNo. Len. Field Value +18:04:13 ============================================================================ +18:04:13 [ 1] [ 4] [0210] +18:04:13 [ 2] [ 16] [6688990106140005] +18:04:13 [ 3] [ 6] [011000] +18:04:13 [ 4] [ 12] [000005000000] +18:04:13 [ 7] [ 10] [0320110316] +18:04:13 [ 11] [ 6] [271049] +18:04:13 [ 12] [ 6] [180316] +18:04:13 [ 13] [ 4] [0320] +18:04:13 [ 15] [ 4] [0320] +18:04:13 [ 18] [ 4] [6011] +18:04:13 [ 19] [ 3] [418] +18:04:13 [ 22] [ 3] [021] +18:04:13 [ 32] [ 6] [180893] +18:04:13 [ 35] [ 37] [6688990106140005=43121231000521700000] +18:04:13 [ 37] [ 12] [507911271049] +18:04:13 [ 39] [ 2] [14] +18:04:13 [ 41] [ 8] [0321LNTV] +18:04:13 [ 49] [ 3] [418] +18:04:13 ============================================================================ +18:04:13 Calculate Source COMM Id = 2 +18:04:13 ============================================================================ +18:04:13 + + +waiting on router queue for slot.... +18:04:13 ============================================================================ +18:04:13 Slot Id : <254> +18:04:13 Transaction Type : REQUEST +18:04:13 Received From : +18:04:13 ============================================================================ +18:04:13 FNo. Len. Field Value +18:04:13 ============================================================================ +18:04:13 [ 1] [ 4] [0200] +18:04:13 [ 2] [ 16] [6213544000644846] +18:04:13 [ 3] [ 6] [010000] +18:04:13 [ 4] [ 12] [000030000000] +18:04:13 [ 7] [ 10] [0320180203] +18:04:13 [ 11] [ 6] [954289] +18:04:13 [ 12] [ 6] [180203] +18:04:13 [ 13] [ 4] [0320] +18:04:13 [ 15] [ 4] [0320] +18:04:13 [ 18] [ 4] [6011] +18:04:13 [ 19] [ 3] [418] +18:04:13 [ 22] [ 3] [021] +18:04:13 [ 25] [ 2] [01] +18:04:13 [ 28] [ 9] [D00002000] +18:04:13 [ 32] [ 6] [668899] +18:04:13 [ 35] [ 32] [6213544000644846=491212014484690] +18:04:13 [ 37] [ 12] [507900555189] +18:04:13 [ 41] [ 8] [03014003] +18:04:13 [ 42] [ 15] [APT ] +18:04:13 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +18:04:13 [ 49] [ 3] [418] +18:04:13 [ 52] [ 16] [700B961D4C770FAD] +18:04:13 ============================================================================ +18:04:13 + + +waiting on router queue for slot.... +18:04:13 Sending to : +18:04:13 ============================================================================ +18:04:13 Sending to : +18:04:13 ============================================================================ +18:04:14 ============================================================================ +18:04:14 Slot Id : <254> +18:04:14 Transaction Type : REQUEST +18:04:14 Received From : +18:04:14 ============================================================================ +18:04:14 FNo. Len. Field Value +18:04:14 ============================================================================ +18:04:14 [ 1] [ 4] [0200] +18:04:14 [ 2] [ 16] [6213544000644846] +18:04:14 [ 3] [ 6] [010000] +18:04:14 [ 4] [ 12] [000030000000] +18:04:14 [ 7] [ 10] [0320180203] +18:04:14 [ 11] [ 6] [954289] +18:04:14 [ 12] [ 6] [180203] +18:04:14 [ 13] [ 4] [0320] +18:04:14 [ 15] [ 4] [0320] +18:04:14 [ 18] [ 4] [6011] +18:04:14 [ 19] [ 3] [418] +18:04:14 [ 22] [ 3] [021] +18:04:14 [ 25] [ 2] [01] +18:04:14 [ 28] [ 9] [D00002000] +18:04:14 [ 32] [ 6] [668899] +18:04:14 [ 35] [ 32] [6213544000644846=491212014484690] +18:04:14 [ 37] [ 12] [507900555189] +18:04:14 [ 41] [ 8] [03014003] +18:04:14 [ 42] [ 15] [APT ] +18:04:14 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +18:04:14 [ 49] [ 3] [418] +18:04:14 [ 52] [ 16] [700B961D4C770FAD] +18:04:14 ============================================================================ +18:04:14 + + +waiting on router queue for slot.... +18:04:14 Sending to : +18:04:14 ============================================================================ +18:04:14 ============================================================================ +18:04:14 Slot Id : <254> +18:04:14 Transaction Type : REQUEST +18:04:14 Received From : +18:04:14 ============================================================================ +18:04:14 FNo. Len. Field Value +18:04:14 ============================================================================ +18:04:14 [ 1] [ 4] [0200] +18:04:14 [ 2] [ 16] [6213544000644846] +18:04:14 [ 3] [ 6] [010000] +18:04:14 [ 4] [ 12] [000030000000] +18:04:14 [ 7] [ 10] [0320180203] +18:04:14 [ 11] [ 6] [954289] +18:04:14 [ 12] [ 6] [180203] +18:04:14 [ 13] [ 4] [0320] +18:04:14 [ 15] [ 4] [0320] +18:04:14 [ 18] [ 4] [6011] +18:04:14 [ 19] [ 3] [418] +18:04:14 [ 22] [ 3] [021] +18:04:14 [ 25] [ 2] [01] +18:04:14 [ 28] [ 9] [D00002000] +18:04:14 [ 32] [ 6] [668899] +18:04:14 [ 35] [ 32] [6213544000644846=491212014484690] +18:04:14 [ 37] [ 12] [507900555189] +18:04:14 [ 41] [ 8] [03014003] +18:04:14 [ 42] [ 15] [APT ] +18:04:14 [ 43] [ 40] [ SAVANNAKHET HOSPITAL SAVA] +18:04:14 [ 49] [ 3] [418] +18:04:14 [ 52] [ 16] [10772F9601EF52AB] +18:04:14 ============================================================================ +18:04:14 + + +waiting on router queue for slot.... +18:04:14 Sending to : <0> +18:04:14 ============================================================================ +18:04:15 ============================================================================ +18:04:15 Slot Id : <254> +18:04:15 Transaction Type : RESPONSE +18:04:15 Received From : +18:04:15 ============================================================================ +18:04:15 FNo. Len. Field Value +18:04:15 ============================================================================ +18:04:15 [ 1] [ 4] [0210] +18:04:15 [ 2] [ 16] [6213544000644846] +18:04:15 [ 3] [ 6] [010000] +18:04:15 [ 4] [ 12] [000030000000] +18:04:15 [ 7] [ 10] [0320180203] +18:04:15 [ 11] [ 6] [954289] +18:04:15 [ 12] [ 6] [180203] +18:04:15 [ 13] [ 4] [0320] +18:04:15 [ 15] [ 4] [0320] +18:04:15 [ 18] [ 4] [6011] +18:04:15 [ 19] [ 3] [418] +18:04:15 [ 32] [ 6] [668899] +18:04:15 [ 35] [ 32] [6213544000644846=491212014484690] +18:04:15 [ 37] [ 12] [507900555189] +18:04:15 [ 38] [ 6] [091027] +18:04:15 [ 39] [ 2] [00] +18:04:15 [ 41] [ 8] [03014003] +18:04:15 [ 49] [ 3] [418] +18:04:15 [ 54] [ 40] [0001418C0000084426670002418C000008442667] +18:04:15 ============================================================================ +18:04:15 Sending to : +18:04:15 ============================================================================ +18:04:15 + + +waiting on router queue for slot.... +18:04:16 ============================================================================ +18:04:16 Slot Id : <252> +18:04:16 Transaction Type : REQUEST +18:04:16 Received From : +18:04:16 ============================================================================ +18:04:16 FNo. Len. Field Value +18:04:16 ============================================================================ +18:04:16 [ 1] [ 4] [0200] +18:04:16 [ 2] [ 16] [6213545000863054] +18:04:16 [ 3] [ 6] [010000] +18:04:16 [ 4] [ 12] [000010000000] +18:04:16 [ 7] [ 10] [0320181604] +18:04:16 [ 11] [ 6] [412652] +18:04:16 [ 12] [ 6] [181604] +18:04:16 [ 13] [ 4] [0320] +18:04:16 [ 14] [ 4] [1249] +18:04:16 [ 15] [ 4] [0320] +18:04:16 [ 18] [ 4] [6011] +18:04:16 [ 19] [ 3] [418] +18:04:16 [ 22] [ 3] [021] +18:04:16 [ 25] [ 2] [01] +18:04:16 [ 28] [ 9] [D00002000] +18:04:16 [ 32] [ 6] [123401] +18:04:16 [ 35] [ 32] [6213545000863054=491212016305263] +18:04:16 [ 37] [ 12] [507900354426] +18:04:16 [ 41] [ 8] [01002600] +18:04:16 [ 42] [ 15] [APT ] +18:04:16 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +18:04:16 [ 49] [ 3] [418] +18:04:16 [ 52] [ 16] [66E3648F66E8D9B9] +18:04:16 ============================================================================ +18:04:16 + + +waiting on router queue for slot.... +18:04:16 Sending to : +18:04:16 ============================================================================ +18:04:16 Sending to : +18:04:16 ============================================================================ +18:04:16 ============================================================================ +18:04:16 Slot Id : <252> +18:04:16 Transaction Type : REQUEST +18:04:16 Received From : +18:04:16 ============================================================================ +18:04:16 FNo. Len. Field Value +18:04:16 ============================================================================ +18:04:16 [ 1] [ 4] [0200] +18:04:16 [ 2] [ 16] [6213545000863054] +18:04:16 [ 3] [ 6] [010000] +18:04:16 [ 4] [ 12] [000010000000] +18:04:16 [ 7] [ 10] [0320181604] +18:04:16 [ 11] [ 6] [412652] +18:04:16 [ 12] [ 6] [181604] +18:04:16 [ 13] [ 4] [0320] +18:04:16 [ 14] [ 4] [1249] +18:04:16 [ 15] [ 4] [0320] +18:04:16 [ 18] [ 4] [6011] +18:04:16 [ 19] [ 3] [418] +18:04:16 [ 22] [ 3] [021] +18:04:16 [ 25] [ 2] [01] +18:04:16 [ 28] [ 9] [D00002000] +18:04:16 [ 32] [ 6] [123401] +18:04:16 [ 35] [ 32] [6213545000863054=491212016305263] +18:04:16 [ 37] [ 12] [507900354426] +18:04:16 [ 41] [ 8] [01002600] +18:04:16 [ 42] [ 15] [APT ] +18:04:16 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +18:04:16 [ 49] [ 3] [418] +18:04:16 [ 52] [ 16] [66E3648F66E8D9B9] +18:04:16 ============================================================================ +18:04:16 + + +waiting on router queue for slot.... +18:04:16 Sending to : +18:04:16 ============================================================================ +18:04:16 ============================================================================ +18:04:16 Slot Id : <252> +18:04:16 Transaction Type : REQUEST +18:04:16 Received From : +18:04:16 ============================================================================ +18:04:16 FNo. Len. Field Value +18:04:16 ============================================================================ +18:04:16 [ 1] [ 4] [0200] +18:04:16 [ 2] [ 16] [6213545000863054] +18:04:16 [ 3] [ 6] [010000] +18:04:16 [ 4] [ 12] [000010000000] +18:04:16 [ 7] [ 10] [0320181604] +18:04:16 [ 11] [ 6] [412652] +18:04:16 [ 12] [ 6] [181604] +18:04:16 [ 13] [ 4] [0320] +18:04:16 [ 14] [ 4] [1249] +18:04:16 [ 15] [ 4] [0320] +18:04:16 [ 18] [ 4] [6011] +18:04:16 [ 19] [ 3] [418] +18:04:16 [ 22] [ 3] [021] +18:04:16 [ 25] [ 2] [01] +18:04:16 [ 28] [ 9] [D00002000] +18:04:16 [ 32] [ 6] [123401] +18:04:16 [ 35] [ 32] [6213545000863054=491212016305263] +18:04:16 [ 37] [ 12] [507900354426] +18:04:16 [ 41] [ 8] [01002600] +18:04:16 [ 42] [ 15] [APT ] +18:04:16 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +18:04:16 [ 49] [ 3] [418] +18:04:16 [ 52] [ 16] [594311C0847FB675] +18:04:16 ============================================================================ +18:04:16 + + +waiting on router queue for slot.... +18:04:16 Sending to : <0> +18:04:16 ============================================================================ +18:04:17 ============================================================================ +18:04:17 Slot Id : <254> +18:04:17 Transaction Type : RESPONSE +18:04:17 Received From : +18:04:17 ============================================================================ +18:04:17 FNo. Len. Field Value +18:04:17 ============================================================================ +18:04:17 [ 1] [ 4] [0210] +18:04:17 [ 2] [ 16] [6213544000644846] +18:04:17 [ 3] [ 6] [010000] +18:04:17 [ 4] [ 12] [000030000000] +18:04:17 [ 7] [ 10] [0320180203] +18:04:17 [ 11] [ 6] [954289] +18:04:17 [ 12] [ 6] [180203] +18:04:17 [ 13] [ 4] [0320] +18:04:17 [ 15] [ 4] [0320] +18:04:17 [ 18] [ 4] [6011] +18:04:17 [ 19] [ 3] [418] +18:04:17 [ 32] [ 6] [668899] +18:04:17 [ 35] [ 32] [6213544000644846=491212014484690] +18:04:17 [ 37] [ 12] [507900555189] +18:04:17 [ 38] [ 6] [091027] +18:04:17 [ 39] [ 2] [00] +18:04:17 [ 41] [ 8] [03014003] +18:04:17 [ 49] [ 3] [418] +18:04:17 [ 54] [ 40] [0001418C0000084426670002418C000008442667] +18:04:17 ============================================================================ +18:04:17 Calculate Source COMM Id = 4 +18:04:17 ============================================================================ +18:04:17 + + +waiting on router queue for slot.... +18:04:18 ============================================================================ +18:04:18 Slot Id : <252> +18:04:18 Transaction Type : RESPONSE +18:04:18 Received From : +18:04:18 ============================================================================ +18:04:18 FNo. Len. Field Value +18:04:18 ============================================================================ +18:04:18 [ 1] [ 4] [0210] +18:04:18 [ 2] [ 16] [6213545000863054] +18:04:18 [ 3] [ 6] [010000] +18:04:18 [ 4] [ 12] [000010000000] +18:04:18 [ 7] [ 10] [0320181604] +18:04:18 [ 11] [ 6] [412652] +18:04:18 [ 12] [ 6] [181604] +18:04:18 [ 13] [ 4] [0320] +18:04:18 [ 15] [ 4] [0320] +18:04:18 [ 18] [ 4] [6011] +18:04:18 [ 19] [ 3] [418] +18:04:18 [ 32] [ 6] [123401] +18:04:18 [ 35] [ 32] [6213545000863054=491212016305263] +18:04:18 [ 37] [ 12] [507900354426] +18:04:18 [ 38] [ 6] [643854] +18:04:18 [ 39] [ 2] [00] +18:04:18 [ 41] [ 8] [01002600] +18:04:18 [ 49] [ 3] [418] +18:04:18 [ 54] [ 40] [0001418C0000483972550002418C000048397255] +18:04:18 ============================================================================ +18:04:18 Sending to : +18:04:18 ============================================================================ +18:04:18 + + +waiting on router queue for slot.... +18:04:19 ============================================================================ +18:04:19 Slot Id : <252> +18:04:19 Transaction Type : RESPONSE +18:04:19 Received From : +18:04:19 ============================================================================ +18:04:19 FNo. Len. Field Value +18:04:19 ============================================================================ +18:04:19 [ 1] [ 4] [0210] +18:04:19 [ 2] [ 16] [6213545000863054] +18:04:19 [ 3] [ 6] [010000] +18:04:19 [ 4] [ 12] [000010000000] +18:04:19 [ 7] [ 10] [0320181604] +18:04:19 [ 11] [ 6] [412652] +18:04:19 [ 12] [ 6] [181604] +18:04:19 [ 13] [ 4] [0320] +18:04:19 [ 15] [ 4] [0320] +18:04:19 [ 18] [ 4] [6011] +18:04:19 [ 19] [ 3] [418] +18:04:19 [ 32] [ 6] [123401] +18:04:19 [ 35] [ 32] [6213545000863054=491212016305263] +18:04:19 [ 37] [ 12] [507900354426] +18:04:19 [ 38] [ 6] [643854] +18:04:19 [ 39] [ 2] [00] +18:04:19 [ 41] [ 8] [01002600] +18:04:19 [ 49] [ 3] [418] +18:04:19 [ 54] [ 40] [0001418C0000483972550002418C000048397255] +18:04:19 ============================================================================ +18:04:19 Calculate Source COMM Id = 6 +18:04:19 ============================================================================ +18:04:19 + + +waiting on router queue for slot.... +18:04:23 ============================================================================ +18:04:23 Slot Id : <282> +18:04:23 Transaction Type : REQUEST +18:04:23 Received From : +18:04:23 ============================================================================ +18:04:23 FNo. Len. Field Value +18:04:23 ============================================================================ +18:04:23 [ 1] [ 4] [0800] +18:04:23 [ 7] [ 10] [0321011611] +18:04:23 [ 11] [ 6] [181611] +18:04:23 [ 37] [ 12] [57918181611] +18:04:23 [ 70] [ 3] [301] +18:04:23 ============================================================================ +18:04:23 + + +waiting on router queue for slot.... +18:04:23 Sending to : +18:04:23 ============================================================================ +18:04:23 ============================================================================ +18:04:23 Slot Id : <282> +18:04:23 Transaction Type : RESPONSE +18:04:23 Received From : +18:04:23 ============================================================================ +18:04:23 FNo. Len. Field Value +18:04:23 ============================================================================ +18:04:23 [ 1] [ 4] [0810] +18:04:23 [ 7] [ 10] [0321011611] +18:04:23 [ 11] [ 6] [181611] +18:04:23 [ 37] [ 12] [579181816110] +18:04:23 [ 39] [ 2] [00] +18:04:23 [ 70] [ 3] [810] +18:04:23 ============================================================================ +18:04:23 Calculate Source COMM Id = 6 +18:04:23 ============================================================================ +18:04:23 + + +waiting on router queue for slot.... +18:04:26 ============================================================================ +18:04:26 Slot Id : <266> +18:04:26 Transaction Type : REQUEST +18:04:26 Received From : +18:04:26 ============================================================================ +18:04:26 FNo. Len. Field Value +18:04:26 ============================================================================ +18:04:26 [ 1] [ 4] [0200] +18:04:26 [ 2] [ 16] [1808930600042477] +18:04:26 [ 3] [ 6] [011000] +18:04:26 [ 4] [ 12] [000015000000] +18:04:26 [ 7] [ 10] [0320180421] +18:04:26 [ 11] [ 6] [823584] +18:04:26 [ 12] [ 6] [180421] +18:04:26 [ 13] [ 4] [0320] +18:04:26 [ 15] [ 4] [0320] +18:04:26 [ 18] [ 4] [6011] +18:04:26 [ 22] [ 3] [900] +18:04:26 [ 25] [ 2] [02] +18:04:26 [ 28] [ 9] [D00002000] +18:04:26 [ 32] [ 6] [621354] +18:04:26 [ 35] [ 27] [1808930600042477=1803500767] +18:04:26 [ 37] [ 12] [507904287941] +18:04:26 [ 41] [ 8] [03002700] +18:04:26 [ 42] [ 15] [NATIVE ] +18:04:26 [ 43] [ 40] [SVN Branch02 KaisonephomvLAO] +18:04:26 [ 49] [ 3] [418] +18:04:26 [ 52] [ 16] [2F954205F5F37632] +18:04:26 ============================================================================ +18:04:26 + + +waiting on router queue for slot.... +18:04:26 Sending to : +18:04:26 ============================================================================ +18:04:26 Sending to : +18:04:26 ============================================================================ +18:04:27 ============================================================================ +18:04:27 Slot Id : <241> +18:04:27 Transaction Type : REQUEST +18:04:27 Received From : +18:04:27 ============================================================================ +18:04:27 FNo. Len. Field Value +18:04:27 ============================================================================ +18:04:27 [ 1] [ 4] [0800] +18:04:27 [ 7] [ 10] [0320110334] +18:04:27 [ 11] [ 6] [157618] +18:04:27 [ 70] [ 3] [301] +18:04:27 ============================================================================ +18:04:27 + + +waiting on router queue for slot.... +18:04:27 Sending to : +18:04:27 ============================================================================ +18:04:27 ============================================================================ +18:04:27 Slot Id : <241> +18:04:27 Transaction Type : RESPONSE +18:04:27 Received From : +18:04:27 ============================================================================ +18:04:27 FNo. Len. Field Value +18:04:27 ============================================================================ +18:04:27 [ 1] [ 4] [0810] +18:04:27 [ 7] [ 10] [0320110334] +18:04:27 [ 11] [ 6] [157618] +18:04:27 [ 39] [ 2] [00] +18:04:27 [ 70] [ 3] [301] +18:04:27 ============================================================================ +18:04:27 Calculate Source COMM Id = 2 +18:04:27 ============================================================================ +18:04:27 + + +waiting on router queue for slot.... +18:04:27 ============================================================================ +18:04:27 Slot Id : <266> +18:04:27 Transaction Type : REQUEST +18:04:27 Received From : +18:04:27 ============================================================================ +18:04:27 FNo. Len. Field Value +18:04:27 ============================================================================ +18:04:27 [ 1] [ 4] [0200] +18:04:27 [ 2] [ 16] [1808930600042477] +18:04:27 [ 3] [ 6] [011000] +18:04:27 [ 4] [ 12] [000015000000] +18:04:27 [ 7] [ 10] [0320180421] +18:04:27 [ 11] [ 6] [823584] +18:04:27 [ 12] [ 6] [180421] +18:04:27 [ 13] [ 4] [0320] +18:04:27 [ 15] [ 4] [0320] +18:04:27 [ 18] [ 4] [6011] +18:04:27 [ 22] [ 3] [900] +18:04:27 [ 25] [ 2] [02] +18:04:27 [ 28] [ 9] [D00002000] +18:04:27 [ 32] [ 6] [621354] +18:04:27 [ 35] [ 27] [1808930600042477=1803500767] +18:04:27 [ 37] [ 12] [507904287941] +18:04:27 [ 41] [ 8] [03002700] +18:04:27 [ 42] [ 15] [NATIVE ] +18:04:27 [ 43] [ 40] [SVN Branch02 KaisonephomvLAO] +18:04:27 [ 49] [ 3] [418] +18:04:27 [ 52] [ 16] [2F954205F5F37632] +18:04:27 ============================================================================ +18:04:27 + + +waiting on router queue for slot.... +18:04:27 Sending to : +18:04:27 ============================================================================ +18:04:27 ============================================================================ +18:04:27 Slot Id : <266> +18:04:27 Transaction Type : REQUEST +18:04:27 Received From : +18:04:27 ============================================================================ +18:04:27 FNo. Len. Field Value +18:04:27 ============================================================================ +18:04:27 [ 1] [ 4] [0200] +18:04:27 [ 2] [ 16] [1808930600042477] +18:04:27 [ 3] [ 6] [011000] +18:04:27 [ 4] [ 12] [000015000000] +18:04:27 [ 7] [ 10] [0320180421] +18:04:27 [ 11] [ 6] [823584] +18:04:27 [ 12] [ 6] [180421] +18:04:27 [ 13] [ 4] [0320] +18:04:27 [ 15] [ 4] [0320] +18:04:27 [ 18] [ 4] [6011] +18:04:27 [ 22] [ 3] [900] +18:04:27 [ 25] [ 2] [02] +18:04:27 [ 28] [ 9] [D00002000] +18:04:27 [ 32] [ 6] [621354] +18:04:27 [ 35] [ 27] [1808930600042477=1803500767] +18:04:27 [ 37] [ 12] [507904287941] +18:04:27 [ 41] [ 8] [03002700] +18:04:27 [ 42] [ 15] [NATIVE ] +18:04:27 [ 43] [ 40] [SVN Branch02 KaisonephomvLAO] +18:04:27 [ 49] [ 3] [418] +18:04:27 [ 52] [ 16] [F92A3C2D6229358B] +18:04:27 ============================================================================ +18:04:27 + + +waiting on router queue for slot.... +18:04:27 Sending to : <2> +18:04:27 ============================================================================ +18:04:32 ============================================================================ +18:04:32 Slot Id : <266> +18:04:32 Transaction Type : RESPONSE +18:04:32 Received From : +18:04:32 ============================================================================ +18:04:32 FNo. Len. Field Value +18:04:32 ============================================================================ +18:04:32 [ 1] [ 4] [0210] +18:04:32 [ 2] [ 16] [1808930600042477] +18:04:32 [ 3] [ 6] [011000] +18:04:32 [ 4] [ 12] [000015000000] +18:04:32 [ 6] [ 12] [000015000000] +18:04:32 [ 7] [ 10] [0320180421] +18:04:32 [ 11] [ 6] [823584] +18:04:32 [ 12] [ 6] [180421] +18:04:32 [ 13] [ 4] [0320] +18:04:32 [ 18] [ 4] [6011] +18:04:32 [ 19] [ 3] [418] +18:04:32 [ 22] [ 3] [021] +18:04:32 [ 32] [ 6] [621354] +18:04:32 [ 35] [ 27] [1808930600042477=1803500767] +18:04:32 [ 37] [ 12] [507904287941] +18:04:32 [ 38] [ 6] [823584] +18:04:32 [ 39] [ 2] [00] +18:04:32 [ 41] [ 8] [03002700] +18:04:32 [ 49] [ 3] [418] +18:04:32 [ 52] [ 16] [F92A3C2D6229358B] +18:04:32 [ 54] [ 20] [1001418C000049207900] +18:04:32 ============================================================================ +18:04:32 Sending to : +18:04:32 ============================================================================ +18:04:32 + + +waiting on router queue for slot.... +18:04:34 ============================================================================ +18:04:34 Slot Id : <266> +18:04:34 Transaction Type : RESPONSE +18:04:34 Received From : +18:04:34 ============================================================================ +18:04:34 FNo. Len. Field Value +18:04:34 ============================================================================ +18:04:34 [ 1] [ 4] [0210] +18:04:34 [ 2] [ 16] [1808930600042477] +18:04:34 [ 3] [ 6] [011000] +18:04:34 [ 4] [ 12] [000015000000] +18:04:34 [ 6] [ 12] [000015000000] +18:04:34 [ 7] [ 10] [0320180421] +18:04:34 [ 11] [ 6] [823584] +18:04:34 [ 12] [ 6] [180421] +18:04:34 [ 13] [ 4] [0320] +18:04:34 [ 18] [ 4] [6011] +18:04:34 [ 19] [ 3] [418] +18:04:34 [ 22] [ 3] [021] +18:04:34 [ 32] [ 6] [621354] +18:04:34 [ 35] [ 27] [1808930600042477=1803500767] +18:04:34 [ 37] [ 12] [507904287941] +18:04:34 [ 38] [ 6] [823584] +18:04:34 [ 39] [ 2] [00] +18:04:34 [ 41] [ 8] [03002700] +18:04:34 [ 49] [ 3] [418] +18:04:34 [ 52] [ 16] [F92A3C2D6229358B] +18:04:34 [ 54] [ 20] [1001418C000049207900] +18:04:34 ============================================================================ +18:04:34 Calculate Source COMM Id = 0 +18:04:34 ============================================================================ +18:04:34 + + +waiting on router queue for slot.... +18:04:34 ============================================================================ +18:04:34 Slot Id : <276> +18:04:34 Transaction Type : REQUEST +18:04:34 Received From : +18:04:34 ============================================================================ +18:04:34 FNo. Len. Field Value +18:04:34 ============================================================================ +18:04:34 [ 1] [ 4] [0200] +18:04:34 [ 2] [ 16] [6688990106051301] +18:04:34 [ 3] [ 6] [010000] +18:04:34 [ 4] [ 12] [000100000000] +18:04:34 [ 7] [ 10] [0320180429] +18:04:34 [ 11] [ 6] [823608] +18:04:34 [ 12] [ 6] [180429] +18:04:34 [ 13] [ 4] [0320] +18:04:34 [ 15] [ 4] [0320] +18:04:34 [ 18] [ 4] [6011] +18:04:34 [ 22] [ 3] [900] +18:04:34 [ 25] [ 2] [02] +18:04:34 [ 28] [ 9] [D00002000] +18:04:34 [ 32] [ 6] [621354] +18:04:34 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:04:34 [ 37] [ 12] [507903499697] +18:04:34 [ 41] [ 8] [06002200] +18:04:34 [ 42] [ 15] [NATIVE ] +18:04:34 [ 43] [ 40] [Beng Market Beng LAO] +18:04:34 [ 49] [ 3] [418] +18:04:34 [ 52] [ 16] [2C0D12CE1BFE7D62] +18:04:34 ============================================================================ +18:04:34 + + +waiting on router queue for slot.... +18:04:34 Sending to : +18:04:34 ============================================================================ +18:04:34 Sending to : +18:04:34 ============================================================================ +18:04:35 ============================================================================ +18:04:35 Slot Id : <276> +18:04:35 Transaction Type : REQUEST +18:04:35 Received From : +18:04:35 ============================================================================ +18:04:35 FNo. Len. Field Value +18:04:35 ============================================================================ +18:04:35 [ 1] [ 4] [0200] +18:04:35 [ 2] [ 16] [6688990106051301] +18:04:35 [ 3] [ 6] [010000] +18:04:35 [ 4] [ 12] [000100000000] +18:04:35 [ 7] [ 10] [0320180429] +18:04:35 [ 11] [ 6] [823608] +18:04:35 [ 12] [ 6] [180429] +18:04:35 [ 13] [ 4] [0320] +18:04:35 [ 15] [ 4] [0320] +18:04:35 [ 18] [ 4] [6011] +18:04:35 [ 22] [ 3] [900] +18:04:35 [ 25] [ 2] [02] +18:04:35 [ 28] [ 9] [D00002000] +18:04:35 [ 32] [ 6] [621354] +18:04:35 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:04:35 [ 37] [ 12] [507903499697] +18:04:35 [ 41] [ 8] [06002200] +18:04:35 [ 42] [ 15] [NATIVE ] +18:04:35 [ 43] [ 40] [Beng Market Beng LAO] +18:04:35 [ 49] [ 3] [418] +18:04:35 [ 52] [ 16] [2C0D12CE1BFE7D62] +18:04:35 ============================================================================ +18:04:35 + + +waiting on router queue for slot.... +18:04:35 Sending to : +18:04:35 ============================================================================ +18:04:35 ============================================================================ +18:04:35 Slot Id : <276> +18:04:35 Transaction Type : REQUEST +18:04:35 Received From : +18:04:35 ============================================================================ +18:04:35 FNo. Len. Field Value +18:04:35 ============================================================================ +18:04:35 [ 1] [ 4] [0200] +18:04:35 [ 2] [ 16] [6688990106051301] +18:04:35 [ 3] [ 6] [010000] +18:04:35 [ 4] [ 12] [000100000000] +18:04:35 [ 7] [ 10] [0320180429] +18:04:35 [ 11] [ 6] [823608] +18:04:35 [ 12] [ 6] [180429] +18:04:35 [ 13] [ 4] [0320] +18:04:35 [ 15] [ 4] [0320] +18:04:35 [ 18] [ 4] [6011] +18:04:35 [ 22] [ 3] [900] +18:04:35 [ 25] [ 2] [02] +18:04:35 [ 28] [ 9] [D00002000] +18:04:35 [ 32] [ 6] [621354] +18:04:35 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:04:35 [ 37] [ 12] [507903499697] +18:04:35 [ 41] [ 8] [06002200] +18:04:35 [ 42] [ 15] [NATIVE ] +18:04:35 [ 43] [ 40] [Beng Market Beng LAO] +18:04:35 [ 49] [ 3] [418] +18:04:35 [ 52] [ 16] [88B3AC43C032B9E8] +18:04:35 ============================================================================ +18:04:35 + + +waiting on router queue for slot.... +18:04:35 Sending to : <4> +18:04:35 ============================================================================ +18:04:36 ============================================================================ +18:04:36 Slot Id : <276> +18:04:36 Transaction Type : RESPONSE +18:04:36 Received From : +18:04:36 ============================================================================ +18:04:36 FNo. Len. Field Value +18:04:36 ============================================================================ +18:04:36 [ 1] [ 4] [0210] +18:04:36 [ 2] [ 16] [6688990106051301] +18:04:36 [ 3] [ 6] [010000] +18:04:36 [ 4] [ 12] [000100000000] +18:04:36 [ 11] [ 6] [823608] +18:04:36 [ 12] [ 6] [180429] +18:04:36 [ 15] [ 4] [0320] +18:04:36 [ 18] [ 4] [6011] +18:04:36 [ 32] [ 6] [621354] +18:04:36 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:04:36 [ 37] [ 12] [507903499697] +18:04:36 [ 38] [ 6] [959642] +18:04:36 [ 39] [ 2] [00] +18:04:36 [ 41] [ 8] [06002200] +18:04:36 [ 49] [ 3] [418] +18:04:36 [ 54] [ 20] [0002418C000232015134] +18:04:36 ============================================================================ +18:04:36 Sending to : +18:04:36 ============================================================================ +18:04:36 + + +waiting on router queue for slot.... +18:04:37 ============================================================================ +18:04:37 Slot Id : <280> +18:04:37 Transaction Type : REQUEST +18:04:37 Received From : +18:04:37 ============================================================================ +18:04:37 FNo. Len. Field Value +18:04:37 ============================================================================ +18:04:37 [ 1] [ 4] [0800] +18:04:37 [ 2] [ 5] [02531] +18:04:37 [ 3] [ 6] [579188] +18:04:37 [ 7] [ 10] [0320110437] +18:04:37 [ 11] [ 6] [807461] +18:04:37 [ 15] [ 10] [0320110437] +18:04:37 [ 37] [ 11] [57918807461] +18:04:37 [ 70] [ 3] [001] +18:04:37 ============================================================================ +18:04:37 + + +waiting on router queue for slot.... +18:04:37 ============================================================================ +18:04:37 Slot Id : <280> +18:04:37 Transaction Type : RESPONSE +18:04:37 Received From : +18:04:37 ============================================================================ +18:04:37 FNo. Len. Field Value +18:04:37 ============================================================================ +18:04:37 [ 1] [ 4] [0810] +18:04:37 [ 7] [ 10] [0320110437] +18:04:37 [ 11] [ 6] [807461] +18:04:37 [ 15] [ 4] [0320] +18:04:37 [ 37] [ 12] [57918807461] +18:04:37 [ 39] [ 2] [00] +18:04:37 [ 70] [ 3] [001] +18:04:37 ============================================================================ +18:04:37 Sending to : +18:04:37 ============================================================================ +18:04:37 + + +waiting on router queue for slot.... +18:04:37 ============================================================================ +18:04:37 Slot Id : <276> +18:04:37 Transaction Type : RESPONSE +18:04:37 Received From : +18:04:37 ============================================================================ +18:04:37 FNo. Len. Field Value +18:04:37 ============================================================================ +18:04:37 [ 1] [ 4] [0210] +18:04:37 [ 2] [ 16] [6688990106051301] +18:04:37 [ 3] [ 6] [010000] +18:04:37 [ 4] [ 12] [000100000000] +18:04:37 [ 11] [ 6] [823608] +18:04:37 [ 12] [ 6] [180429] +18:04:37 [ 15] [ 4] [0320] +18:04:37 [ 18] [ 4] [6011] +18:04:37 [ 32] [ 6] [621354] +18:04:37 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:04:37 [ 37] [ 12] [507903499697] +18:04:37 [ 38] [ 6] [959642] +18:04:37 [ 39] [ 2] [00] +18:04:37 [ 41] [ 8] [06002200] +18:04:37 [ 49] [ 3] [418] +18:04:37 [ 54] [ 20] [0002418C000232015134] +18:04:37 ============================================================================ +18:04:37 Calculate Source COMM Id = 0 +18:04:37 ============================================================================ +18:04:37 + + +waiting on router queue for slot.... +18:04:38 ============================================================================ +18:04:38 Slot Id : <224> +18:04:38 Transaction Type : REQUEST +18:04:38 Received From : +18:04:38 ============================================================================ +18:04:38 FNo. Len. Field Value +18:04:38 ============================================================================ +18:04:38 [ 1] [ 4] [0800] +18:04:38 [ 7] [ 10] [0320110344] +18:04:38 [ 11] [ 6] [157619] +18:04:38 [ 70] [ 3] [301] +18:04:38 ============================================================================ +18:04:38 + + +waiting on router queue for slot.... +18:04:38 Sending to : +18:04:38 ============================================================================ +18:04:38 ============================================================================ +18:04:38 Slot Id : <224> +18:04:38 Transaction Type : RESPONSE +18:04:38 Received From : +18:04:38 ============================================================================ +18:04:38 FNo. Len. Field Value +18:04:38 ============================================================================ +18:04:38 [ 1] [ 4] [0810] +18:04:38 [ 7] [ 10] [0320110344] +18:04:38 [ 11] [ 6] [157619] +18:04:38 [ 39] [ 2] [00] +18:04:38 [ 70] [ 3] [301] +18:04:38 ============================================================================ +18:04:38 Calculate Source COMM Id = 2 +18:04:38 ============================================================================ +18:04:38 + + +waiting on router queue for slot.... +18:04:54 ============================================================================ +18:04:54 Slot Id : <258> +18:04:54 Transaction Type : REQUEST +18:04:54 Received From : +18:04:54 ============================================================================ +18:04:54 FNo. Len. Field Value +18:04:54 ============================================================================ +18:04:54 [ 1] [ 4] [0800] +18:04:54 [ 7] [ 10] [0320110401] +18:04:54 [ 11] [ 6] [157620] +18:04:54 [ 70] [ 3] [301] +18:04:54 ============================================================================ +18:04:54 + + +waiting on router queue for slot.... +18:04:54 Sending to : +18:04:54 ============================================================================ +18:04:54 ============================================================================ +18:04:54 Slot Id : <258> +18:04:54 Transaction Type : RESPONSE +18:04:54 Received From : +18:04:54 ============================================================================ +18:04:54 FNo. Len. Field Value +18:04:54 ============================================================================ +18:04:54 [ 1] [ 4] [0810] +18:04:54 [ 7] [ 10] [0320110401] +18:04:54 [ 11] [ 6] [157620] +18:04:54 [ 39] [ 2] [00] +18:04:54 [ 70] [ 3] [301] +18:04:54 ============================================================================ +18:04:54 Calculate Source COMM Id = 2 +18:04:54 ============================================================================ +18:04:54 + + +waiting on router queue for slot.... +18:04:57 ============================================================================ +18:04:57 Slot Id : <219> +18:04:57 Transaction Type : REQUEST +18:04:57 Received From : +18:04:57 ============================================================================ +18:04:57 FNo. Len. Field Value +18:04:57 ============================================================================ +18:04:57 [ 1] [ 4] [0800] +18:04:57 [ 7] [ 10] [0320111242] +18:04:57 [ 11] [ 6] [094982] +18:04:57 [ 37] [ 12] [57918094982] +18:04:57 [ 70] [ 3] [301] +18:04:57 ============================================================================ +18:04:57 + + +waiting on router queue for slot.... +18:04:57 Sending to : +18:04:57 ============================================================================ +18:04:57 ============================================================================ +18:04:57 Slot Id : <219> +18:04:57 Transaction Type : RESPONSE +18:04:57 Received From : +18:04:57 ============================================================================ +18:04:57 FNo. Len. Field Value +18:04:57 ============================================================================ +18:04:57 [ 1] [ 4] [0810] +18:04:57 [ 7] [ 10] [0320111242] +18:04:57 [ 11] [ 6] [094982] +18:04:57 [ 37] [ 12] [579180949820] +18:04:57 [ 39] [ 2] [00] +18:04:57 [ 70] [ 3] [810] +18:04:57 ============================================================================ +18:04:57 Calculate Source COMM Id = 1 +18:04:57 ============================================================================ +18:04:57 + + +waiting on router queue for slot.... +18:05:04 ============================================================================ +18:05:04 Slot Id : <284> +18:05:04 Transaction Type : REQUEST +18:05:04 Received From : +18:05:04 ============================================================================ +18:05:04 FNo. Len. Field Value +18:05:04 ============================================================================ +18:05:04 [ 1] [ 4] [0200] +18:05:04 [ 2] [ 16] [6213545000561807] +18:05:04 [ 3] [ 6] [310000] +18:05:04 [ 4] [ 12] [000000000000] +18:05:04 [ 7] [ 10] [0320181249] +18:05:04 [ 11] [ 6] [153731] +18:05:04 [ 12] [ 6] [181249] +18:05:04 [ 13] [ 4] [0320] +18:05:04 [ 14] [ 4] [4912] +18:05:04 [ 15] [ 4] [0320] +18:05:04 [ 18] [ 4] [6011] +18:05:04 [ 22] [ 3] [900] +18:05:04 [ 25] [ 2] [02] +18:05:04 [ 28] [ 9] [000000000] +18:05:04 [ 32] [ 6] [220699] +18:05:04 [ 35] [ 32] [6213545000561807=491212016180006] +18:05:04 [ 37] [ 12] [507900035480] +18:05:04 [ 41] [ 8] [01000300] +18:05:04 [ 42] [ 15] [APTRA ] +18:05:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:05:04 [ 49] [ 3] [418] +18:05:04 [ 52] [ 16] [10FFBE16F6FDE15E] +18:05:04 ============================================================================ +18:05:04 + + +waiting on router queue for slot.... +18:05:04 Sending to : +18:05:04 ============================================================================ +18:05:04 Sending to : +18:05:04 ============================================================================ +18:05:04 ============================================================================ +18:05:04 Slot Id : <284> +18:05:04 Transaction Type : REQUEST +18:05:04 Received From : +18:05:04 ============================================================================ +18:05:04 FNo. Len. Field Value +18:05:04 ============================================================================ +18:05:04 [ 1] [ 4] [0200] +18:05:04 [ 2] [ 16] [6213545000561807] +18:05:04 [ 3] [ 6] [310000] +18:05:04 [ 4] [ 12] [000000000000] +18:05:04 [ 7] [ 10] [0320181249] +18:05:04 [ 11] [ 6] [153731] +18:05:04 [ 12] [ 6] [181249] +18:05:04 [ 13] [ 4] [0320] +18:05:04 [ 14] [ 4] [4912] +18:05:04 [ 15] [ 4] [0320] +18:05:04 [ 18] [ 4] [6011] +18:05:04 [ 22] [ 3] [900] +18:05:04 [ 25] [ 2] [02] +18:05:04 [ 28] [ 9] [000000000] +18:05:04 [ 32] [ 6] [220699] +18:05:04 [ 35] [ 32] [6213545000561807=491212016180006] +18:05:04 [ 37] [ 12] [507900035480] +18:05:04 [ 41] [ 8] [01000300] +18:05:04 [ 42] [ 15] [APTRA ] +18:05:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:05:04 [ 49] [ 3] [418] +18:05:04 [ 52] [ 16] [10FFBE16F6FDE15E] +18:05:04 ============================================================================ +18:05:04 + + +waiting on router queue for slot.... +18:05:04 Sending to : +18:05:04 ============================================================================ +18:05:04 ============================================================================ +18:05:04 Slot Id : <284> +18:05:04 Transaction Type : REQUEST +18:05:04 Received From : +18:05:04 ============================================================================ +18:05:04 FNo. Len. Field Value +18:05:04 ============================================================================ +18:05:04 [ 1] [ 4] [0200] +18:05:04 [ 2] [ 16] [6213545000561807] +18:05:04 [ 3] [ 6] [310000] +18:05:04 [ 4] [ 12] [000000000000] +18:05:04 [ 7] [ 10] [0320181249] +18:05:04 [ 11] [ 6] [153731] +18:05:04 [ 12] [ 6] [181249] +18:05:04 [ 13] [ 4] [0320] +18:05:04 [ 14] [ 4] [4912] +18:05:04 [ 15] [ 4] [0320] +18:05:04 [ 18] [ 4] [6011] +18:05:04 [ 22] [ 3] [900] +18:05:04 [ 25] [ 2] [02] +18:05:04 [ 28] [ 9] [000000000] +18:05:04 [ 32] [ 6] [220699] +18:05:04 [ 35] [ 32] [6213545000561807=491212016180006] +18:05:04 [ 37] [ 12] [507900035480] +18:05:04 [ 41] [ 8] [01000300] +18:05:04 [ 42] [ 15] [APTRA ] +18:05:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:05:04 [ 49] [ 3] [418] +18:05:04 [ 52] [ 16] [02A6CA1E7D2C4655] +18:05:04 ============================================================================ +18:05:04 + + +waiting on router queue for slot.... +18:05:04 Sending to : <0> +18:05:04 ============================================================================ +18:05:04 ============================================================================ +18:05:04 Slot Id : <284> +18:05:04 Transaction Type : RESPONSE +18:05:04 Received From : +18:05:04 ============================================================================ +18:05:04 FNo. Len. Field Value +18:05:04 ============================================================================ +18:05:04 [ 1] [ 4] [0210] +18:05:04 [ 2] [ 16] [6213545000561807] +18:05:04 [ 3] [ 6] [310000] +18:05:04 [ 4] [ 12] [000000000000] +18:05:04 [ 7] [ 10] [0320181249] +18:05:04 [ 11] [ 6] [153731] +18:05:04 [ 12] [ 6] [181249] +18:05:04 [ 13] [ 4] [0320] +18:05:04 [ 15] [ 4] [0320] +18:05:04 [ 18] [ 4] [6011] +18:05:04 [ 32] [ 6] [220699] +18:05:04 [ 35] [ 32] [6213545000561807=491212016180006] +18:05:04 [ 37] [ 12] [507900035480] +18:05:04 [ 38] [ 6] [627560] +18:05:04 [ 39] [ 2] [00] +18:05:04 [ 41] [ 8] [01000300] +18:05:04 [ 49] [ 3] [418] +18:05:04 [ 54] [ 40] [0001418C0026293957670002418C002629395767] +18:05:04 ============================================================================ +18:05:04 Sending to : +18:05:04 ============================================================================ +18:05:05 + + +waiting on router queue for slot.... +18:05:06 ============================================================================ +18:05:06 Slot Id : <290> +18:05:06 Transaction Type : REQUEST +18:05:06 Received From : +18:05:06 ============================================================================ +18:05:06 FNo. Len. Field Value +18:05:06 ============================================================================ +18:05:06 [ 1] [ 4] [0800] +18:05:06 [ 7] [ 10] [0320110412] +18:05:06 [ 11] [ 6] [157621] +18:05:06 [ 70] [ 3] [301] +18:05:06 ============================================================================ +18:05:06 + + +waiting on router queue for slot.... +18:05:06 Sending to : +18:05:06 ============================================================================ +18:05:06 ============================================================================ +18:05:06 Slot Id : <290> +18:05:06 Transaction Type : RESPONSE +18:05:06 Received From : +18:05:06 ============================================================================ +18:05:06 FNo. Len. Field Value +18:05:06 ============================================================================ +18:05:06 [ 1] [ 4] [0810] +18:05:06 [ 7] [ 10] [0320110412] +18:05:06 [ 11] [ 6] [157621] +18:05:06 [ 39] [ 2] [00] +18:05:06 [ 70] [ 3] [301] +18:05:06 ============================================================================ +18:05:06 Calculate Source COMM Id = 2 +18:05:06 ============================================================================ +18:05:06 + + +waiting on router queue for slot.... +18:05:06 ============================================================================ +18:05:06 Slot Id : <284> +18:05:06 Transaction Type : RESPONSE +18:05:06 Received From : +18:05:06 ============================================================================ +18:05:06 FNo. Len. Field Value +18:05:06 ============================================================================ +18:05:06 [ 1] [ 4] [0210] +18:05:06 [ 2] [ 16] [6213545000561807] +18:05:06 [ 3] [ 6] [310000] +18:05:06 [ 4] [ 12] [000000000000] +18:05:06 [ 7] [ 10] [0320181249] +18:05:06 [ 11] [ 6] [153731] +18:05:06 [ 12] [ 6] [181249] +18:05:06 [ 13] [ 4] [0320] +18:05:06 [ 15] [ 4] [0320] +18:05:06 [ 18] [ 4] [6011] +18:05:06 [ 32] [ 6] [220699] +18:05:06 [ 35] [ 32] [6213545000561807=491212016180006] +18:05:06 [ 37] [ 12] [507900035480] +18:05:06 [ 38] [ 6] [627560] +18:05:06 [ 39] [ 2] [00] +18:05:06 [ 41] [ 8] [01000300] +18:05:06 [ 49] [ 3] [418] +18:05:06 [ 54] [ 40] [0001418C0026293957670002418C002629395767] +18:05:06 ============================================================================ +18:05:06 Calculate Source COMM Id = 1 +18:05:06 ============================================================================ +18:05:06 + + +waiting on router queue for slot.... +18:05:15 ============================================================================ +18:05:15 Slot Id : <287> +18:05:15 Transaction Type : REQUEST +18:05:15 Received From : +18:05:15 ============================================================================ +18:05:15 FNo. Len. Field Value +18:05:15 ============================================================================ +18:05:15 [ 1] [ 4] [0200] +18:05:15 [ 2] [ 16] [6688990100941200] +18:05:15 [ 3] [ 6] [010000] +18:05:15 [ 4] [ 12] [000200000000] +18:05:15 [ 7] [ 10] [0320110422] +18:05:15 [ 11] [ 6] [271055] +18:05:15 [ 12] [ 6] [180422] +18:05:15 [ 13] [ 4] [0320] +18:05:15 [ 14] [ 4] [4112] +18:05:15 [ 15] [ 4] [0320] +18:05:15 [ 18] [ 4] [6011] +18:05:15 [ 19] [ 3] [418] +18:05:15 [ 22] [ 3] [021] +18:05:15 [ 25] [ 2] [01] +18:05:15 [ 28] [ 9] [D00002000] +18:05:15 [ 32] [ 6] [180893] +18:05:15 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:05:15 [ 37] [ 12] [507911271055] +18:05:15 [ 41] [ 8] [0467PSLK] +18:05:15 [ 42] [ 15] [999999 ] +18:05:15 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:05:15 [ 49] [ 3] [418] +18:05:15 [ 52] [ 16] [C6CF798086C24D04] +18:05:15 ============================================================================ +18:05:15 + + +waiting on router queue for slot.... +18:05:15 Sending to : +18:05:15 ============================================================================ +18:05:15 Sending to : +18:05:15 ============================================================================ +18:05:16 ============================================================================ +18:05:16 Slot Id : <287> +18:05:16 Transaction Type : REQUEST +18:05:16 Received From : +18:05:16 ============================================================================ +18:05:16 FNo. Len. Field Value +18:05:16 ============================================================================ +18:05:16 [ 1] [ 4] [0200] +18:05:16 [ 2] [ 16] [6688990100941200] +18:05:16 [ 3] [ 6] [010000] +18:05:16 [ 4] [ 12] [000200000000] +18:05:16 [ 7] [ 10] [0320110422] +18:05:16 [ 11] [ 6] [271055] +18:05:16 [ 12] [ 6] [180422] +18:05:16 [ 13] [ 4] [0320] +18:05:16 [ 14] [ 4] [4112] +18:05:16 [ 15] [ 4] [0320] +18:05:16 [ 18] [ 4] [6011] +18:05:16 [ 19] [ 3] [418] +18:05:16 [ 22] [ 3] [021] +18:05:16 [ 25] [ 2] [01] +18:05:16 [ 28] [ 9] [D00002000] +18:05:16 [ 32] [ 6] [180893] +18:05:16 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:05:16 [ 37] [ 12] [507911271055] +18:05:16 [ 41] [ 8] [0467PSLK] +18:05:16 [ 42] [ 15] [999999 ] +18:05:16 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:05:16 [ 49] [ 3] [418] +18:05:16 [ 52] [ 16] [C6CF798086C24D04] +18:05:16 ============================================================================ +18:05:16 + + +waiting on router queue for slot.... +18:05:16 Sending to : +18:05:16 ============================================================================ +18:05:16 ============================================================================ +18:05:16 Slot Id : <287> +18:05:16 Transaction Type : REQUEST +18:05:16 Received From : +18:05:16 ============================================================================ +18:05:16 FNo. Len. Field Value +18:05:16 ============================================================================ +18:05:16 [ 1] [ 4] [0200] +18:05:16 [ 2] [ 16] [6688990100941200] +18:05:16 [ 3] [ 6] [010000] +18:05:16 [ 4] [ 12] [000200000000] +18:05:16 [ 7] [ 10] [0320110422] +18:05:16 [ 11] [ 6] [271055] +18:05:16 [ 12] [ 6] [180422] +18:05:16 [ 13] [ 4] [0320] +18:05:16 [ 14] [ 4] [4112] +18:05:16 [ 15] [ 4] [0320] +18:05:16 [ 18] [ 4] [6011] +18:05:16 [ 19] [ 3] [418] +18:05:16 [ 22] [ 3] [021] +18:05:16 [ 25] [ 2] [01] +18:05:16 [ 28] [ 9] [D00002000] +18:05:16 [ 32] [ 6] [180893] +18:05:16 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:05:16 [ 37] [ 12] [507911271055] +18:05:16 [ 41] [ 8] [0467PSLK] +18:05:16 [ 42] [ 15] [999999 ] +18:05:16 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:05:16 [ 49] [ 3] [418] +18:05:16 [ 52] [ 16] [10E4F466ECA408C6] +18:05:16 ============================================================================ +18:05:16 + + +waiting on router queue for slot.... +18:05:16 Sending to : <0> +18:05:16 ============================================================================ +18:05:16 ============================================================================ +18:05:16 Slot Id : <287> +18:05:16 Transaction Type : RESPONSE +18:05:16 Received From : +18:05:16 ============================================================================ +18:05:16 FNo. Len. Field Value +18:05:16 ============================================================================ +18:05:16 [ 1] [ 4] [0210] +18:05:16 [ 2] [ 16] [6688990100941200] +18:05:16 [ 3] [ 6] [010000] +18:05:16 [ 4] [ 12] [000200000000] +18:05:16 [ 7] [ 10] [0320110422] +18:05:16 [ 11] [ 6] [271055] +18:05:16 [ 12] [ 6] [180422] +18:05:16 [ 13] [ 4] [0320] +18:05:16 [ 15] [ 4] [0320] +18:05:16 [ 18] [ 4] [6011] +18:05:16 [ 19] [ 3] [418] +18:05:16 [ 22] [ 3] [021] +18:05:16 [ 32] [ 6] [180893] +18:05:16 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:05:16 [ 37] [ 12] [507911271055] +18:05:16 [ 39] [ 2] [61] +18:05:16 [ 41] [ 8] [0467PSLK] +18:05:16 [ 49] [ 3] [418] +18:05:16 ============================================================================ +18:05:16 Sending to : +18:05:16 ============================================================================ +18:05:16 + + +waiting on router queue for slot.... +18:05:17 ============================================================================ +18:05:17 Slot Id : <287> +18:05:17 Transaction Type : RESPONSE +18:05:17 Received From : +18:05:17 ============================================================================ +18:05:17 FNo. Len. Field Value +18:05:17 ============================================================================ +18:05:17 [ 1] [ 4] [0210] +18:05:17 [ 2] [ 16] [6688990100941200] +18:05:17 [ 3] [ 6] [010000] +18:05:17 [ 4] [ 12] [000200000000] +18:05:17 [ 7] [ 10] [0320110422] +18:05:17 [ 11] [ 6] [271055] +18:05:17 [ 12] [ 6] [180422] +18:05:17 [ 13] [ 4] [0320] +18:05:17 [ 15] [ 4] [0320] +18:05:17 [ 18] [ 4] [6011] +18:05:17 [ 19] [ 3] [418] +18:05:17 [ 22] [ 3] [021] +18:05:17 [ 32] [ 6] [180893] +18:05:17 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:05:17 [ 37] [ 12] [507911271055] +18:05:17 [ 39] [ 2] [61] +18:05:17 [ 41] [ 8] [0467PSLK] +18:05:17 [ 49] [ 3] [418] +18:05:17 ============================================================================ +18:05:17 Calculate Source COMM Id = 2 +18:05:17 ============================================================================ +18:05:17 + + +waiting on router queue for slot.... +18:05:18 ============================================================================ +18:05:18 Slot Id : <277> +18:05:18 Transaction Type : REQUEST +18:05:18 Received From : +18:05:18 ============================================================================ +18:05:18 FNo. Len. Field Value +18:05:18 ============================================================================ +18:05:18 [ 1] [ 4] [0200] +18:05:18 [ 2] [ 16] [6213544001873212] +18:05:18 [ 3] [ 6] [010000] +18:05:18 [ 4] [ 12] [000010000000] +18:05:18 [ 7] [ 10] [0320180307] +18:05:18 [ 11] [ 6] [954306] +18:05:18 [ 12] [ 6] [180307] +18:05:18 [ 13] [ 4] [0320] +18:05:18 [ 15] [ 4] [0320] +18:05:18 [ 18] [ 4] [6011] +18:05:18 [ 19] [ 3] [418] +18:05:18 [ 22] [ 3] [021] +18:05:18 [ 25] [ 2] [01] +18:05:18 [ 28] [ 9] [D00002000] +18:05:18 [ 32] [ 6] [668899] +18:05:18 [ 35] [ 32] [6213544001873212=491212017321770] +18:05:18 [ 37] [ 12] [507902294984] +18:05:18 [ 41] [ 8] [03009006] +18:05:18 [ 42] [ 15] [APT ] +18:05:18 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +18:05:18 [ 49] [ 3] [418] +18:05:18 [ 52] [ 16] [D1D3502AF21ACA35] +18:05:18 ============================================================================ +18:05:18 + + +waiting on router queue for slot.... +18:05:18 Sending to : +18:05:18 ============================================================================ +18:05:18 Sending to : +18:05:18 ============================================================================ +18:05:18 ============================================================================ +18:05:18 Slot Id : <277> +18:05:18 Transaction Type : REQUEST +18:05:18 Received From : +18:05:18 ============================================================================ +18:05:18 FNo. Len. Field Value +18:05:18 ============================================================================ +18:05:18 [ 1] [ 4] [0200] +18:05:18 [ 2] [ 16] [6213544001873212] +18:05:18 [ 3] [ 6] [010000] +18:05:18 [ 4] [ 12] [000010000000] +18:05:18 [ 7] [ 10] [0320180307] +18:05:18 [ 11] [ 6] [954306] +18:05:18 [ 12] [ 6] [180307] +18:05:18 [ 13] [ 4] [0320] +18:05:18 [ 15] [ 4] [0320] +18:05:18 [ 18] [ 4] [6011] +18:05:18 [ 19] [ 3] [418] +18:05:18 [ 22] [ 3] [021] +18:05:18 [ 25] [ 2] [01] +18:05:18 [ 28] [ 9] [D00002000] +18:05:18 [ 32] [ 6] [668899] +18:05:18 [ 35] [ 32] [6213544001873212=491212017321770] +18:05:18 [ 37] [ 12] [507902294984] +18:05:18 [ 41] [ 8] [03009006] +18:05:18 [ 42] [ 15] [APT ] +18:05:18 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +18:05:18 [ 49] [ 3] [418] +18:05:18 [ 52] [ 16] [D1D3502AF21ACA35] +18:05:18 ============================================================================ +18:05:18 + + +waiting on router queue for slot.... +18:05:18 Sending to : +18:05:18 ============================================================================ +18:05:18 ============================================================================ +18:05:18 Slot Id : <277> +18:05:18 Transaction Type : REQUEST +18:05:18 Received From : +18:05:18 ============================================================================ +18:05:18 FNo. Len. Field Value +18:05:18 ============================================================================ +18:05:18 [ 1] [ 4] [0200] +18:05:18 [ 2] [ 16] [6213544001873212] +18:05:18 [ 3] [ 6] [010000] +18:05:18 [ 4] [ 12] [000010000000] +18:05:18 [ 7] [ 10] [0320180307] +18:05:18 [ 11] [ 6] [954306] +18:05:18 [ 12] [ 6] [180307] +18:05:18 [ 13] [ 4] [0320] +18:05:18 [ 15] [ 4] [0320] +18:05:18 [ 18] [ 4] [6011] +18:05:18 [ 19] [ 3] [418] +18:05:18 [ 22] [ 3] [021] +18:05:18 [ 25] [ 2] [01] +18:05:18 [ 28] [ 9] [D00002000] +18:05:18 [ 32] [ 6] [668899] +18:05:18 [ 35] [ 32] [6213544001873212=491212017321770] +18:05:18 [ 37] [ 12] [507902294984] +18:05:18 [ 41] [ 8] [03009006] +18:05:18 [ 42] [ 15] [APT ] +18:05:18 [ 43] [ 40] [ NONGHAD UNIT NONGHAD L] +18:05:18 [ 49] [ 3] [418] +18:05:18 [ 52] [ 16] [0E1E6A6FA69D3D8F] +18:05:18 ============================================================================ +18:05:18 + + +waiting on router queue for slot.... +18:05:18 Sending to : <0> +18:05:18 ============================================================================ +18:05:19 ============================================================================ +18:05:19 Slot Id : <277> +18:05:19 Transaction Type : RESPONSE +18:05:19 Received From : +18:05:19 ============================================================================ +18:05:19 FNo. Len. Field Value +18:05:19 ============================================================================ +18:05:19 [ 1] [ 4] [0210] +18:05:19 [ 2] [ 16] [6213544001873212] +18:05:19 [ 3] [ 6] [010000] +18:05:19 [ 4] [ 12] [000010000000] +18:05:19 [ 7] [ 10] [0320180307] +18:05:19 [ 11] [ 6] [954306] +18:05:19 [ 12] [ 6] [180307] +18:05:19 [ 13] [ 4] [0320] +18:05:19 [ 15] [ 4] [0320] +18:05:19 [ 18] [ 4] [6011] +18:05:19 [ 19] [ 3] [418] +18:05:19 [ 32] [ 6] [668899] +18:05:19 [ 35] [ 32] [6213544001873212=491212017321770] +18:05:19 [ 37] [ 12] [507902294984] +18:05:19 [ 38] [ 6] [436094] +18:05:19 [ 39] [ 2] [00] +18:05:19 [ 41] [ 8] [03009006] +18:05:19 [ 49] [ 3] [418] +18:05:19 [ 54] [ 40] [0001418C0007531416430002418C000753141643] +18:05:19 ============================================================================ +18:05:19 Sending to : +18:05:19 ============================================================================ +18:05:19 + + +waiting on router queue for slot.... +18:05:20 ============================================================================ +18:05:20 Slot Id : <277> +18:05:20 Transaction Type : RESPONSE +18:05:20 Received From : +18:05:20 ============================================================================ +18:05:20 FNo. Len. Field Value +18:05:20 ============================================================================ +18:05:20 [ 1] [ 4] [0210] +18:05:20 [ 2] [ 16] [6213544001873212] +18:05:20 [ 3] [ 6] [010000] +18:05:20 [ 4] [ 12] [000010000000] +18:05:20 [ 7] [ 10] [0320180307] +18:05:20 [ 11] [ 6] [954306] +18:05:20 [ 12] [ 6] [180307] +18:05:20 [ 13] [ 4] [0320] +18:05:20 [ 15] [ 4] [0320] +18:05:20 [ 18] [ 4] [6011] +18:05:20 [ 19] [ 3] [418] +18:05:20 [ 32] [ 6] [668899] +18:05:20 [ 35] [ 32] [6213544001873212=491212017321770] +18:05:20 [ 37] [ 12] [507902294984] +18:05:20 [ 38] [ 6] [436094] +18:05:20 [ 39] [ 2] [00] +18:05:20 [ 41] [ 8] [03009006] +18:05:20 [ 49] [ 3] [418] +18:05:20 [ 54] [ 40] [0001418C0007531416430002418C000753141643] +18:05:20 ============================================================================ +18:05:20 Calculate Source COMM Id = 4 +18:05:20 ============================================================================ +18:05:20 + + +waiting on router queue for slot.... +18:05:21 ============================================================================ +18:05:21 Slot Id : <271> +18:05:21 Transaction Type : REQUEST +18:05:21 Received From : +18:05:21 ============================================================================ +18:05:21 FNo. Len. Field Value +18:05:21 ============================================================================ +18:05:21 [ 1] [ 4] [0200] +18:05:21 [ 2] [ 16] [6213548000289460] +18:05:21 [ 3] [ 6] [011000] +18:05:21 [ 4] [ 12] [000010000000] +18:05:21 [ 7] [ 10] [0320181306] +18:05:21 [ 11] [ 6] [240887] +18:05:21 [ 12] [ 6] [181306] +18:05:21 [ 13] [ 4] [0320] +18:05:21 [ 14] [ 4] [1803] +18:05:21 [ 15] [ 4] [0320] +18:05:21 [ 18] [ 4] [6011] +18:05:21 [ 22] [ 3] [900] +18:05:21 [ 25] [ 2] [02] +18:05:21 [ 28] [ 9] [D00002000] +18:05:21 [ 32] [ 6] [220699] +18:05:21 [ 35] [ 32] [6213548000289460=180312018946555] +18:05:21 [ 37] [ 12] [507900410468] +18:05:21 [ 41] [ 8] [08000300] +18:05:21 [ 42] [ 15] [APTRA ] +18:05:21 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:05:21 [ 49] [ 3] [418] +18:05:21 [ 52] [ 16] [8FFA0B1B751B784F] +18:05:21 ============================================================================ +18:05:21 + + +waiting on router queue for slot.... +18:05:21 Sending to : +18:05:21 ============================================================================ +18:05:21 Sending to : +18:05:21 ============================================================================ +18:05:22 ============================================================================ +18:05:22 Slot Id : <271> +18:05:22 Transaction Type : REQUEST +18:05:22 Received From : +18:05:22 ============================================================================ +18:05:22 FNo. Len. Field Value +18:05:22 ============================================================================ +18:05:22 [ 1] [ 4] [0200] +18:05:22 [ 2] [ 16] [6213548000289460] +18:05:22 [ 3] [ 6] [011000] +18:05:22 [ 4] [ 12] [000010000000] +18:05:22 [ 7] [ 10] [0320181306] +18:05:22 [ 11] [ 6] [240887] +18:05:22 [ 12] [ 6] [181306] +18:05:22 [ 13] [ 4] [0320] +18:05:22 [ 14] [ 4] [1803] +18:05:22 [ 15] [ 4] [0320] +18:05:22 [ 18] [ 4] [6011] +18:05:22 [ 22] [ 3] [900] +18:05:22 [ 25] [ 2] [02] +18:05:22 [ 28] [ 9] [D00002000] +18:05:22 [ 32] [ 6] [220699] +18:05:22 [ 35] [ 32] [6213548000289460=180312018946555] +18:05:22 [ 37] [ 12] [507900410468] +18:05:22 [ 41] [ 8] [08000300] +18:05:22 [ 42] [ 15] [APTRA ] +18:05:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:05:22 [ 49] [ 3] [418] +18:05:22 [ 52] [ 16] [8FFA0B1B751B784F] +18:05:22 ============================================================================ +18:05:22 + + +waiting on router queue for slot.... +18:05:22 Sending to : +18:05:22 ============================================================================ +18:05:22 ============================================================================ +18:05:22 Slot Id : <271> +18:05:22 Transaction Type : REQUEST +18:05:22 Received From : +18:05:22 ============================================================================ +18:05:22 FNo. Len. Field Value +18:05:22 ============================================================================ +18:05:22 [ 1] [ 4] [0200] +18:05:22 [ 2] [ 16] [6213548000289460] +18:05:22 [ 3] [ 6] [011000] +18:05:22 [ 4] [ 12] [000010000000] +18:05:22 [ 7] [ 10] [0320181306] +18:05:22 [ 11] [ 6] [240887] +18:05:22 [ 12] [ 6] [181306] +18:05:22 [ 13] [ 4] [0320] +18:05:22 [ 14] [ 4] [1803] +18:05:22 [ 15] [ 4] [0320] +18:05:22 [ 18] [ 4] [6011] +18:05:22 [ 22] [ 3] [900] +18:05:22 [ 25] [ 2] [02] +18:05:22 [ 28] [ 9] [D00002000] +18:05:22 [ 32] [ 6] [220699] +18:05:22 [ 35] [ 32] [6213548000289460=180312018946555] +18:05:22 [ 37] [ 12] [507900410468] +18:05:22 [ 41] [ 8] [08000300] +18:05:22 [ 42] [ 15] [APTRA ] +18:05:22 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:05:22 [ 49] [ 3] [418] +18:05:22 [ 52] [ 16] [10E9BA2E62C56A06] +18:05:22 ============================================================================ +18:05:22 + + +waiting on router queue for slot.... +18:05:22 Sending to : <0> +18:05:22 ============================================================================ +18:05:23 ============================================================================ +18:05:23 Slot Id : <271> +18:05:23 Transaction Type : RESPONSE +18:05:23 Received From : +18:05:23 ============================================================================ +18:05:23 FNo. Len. Field Value +18:05:23 ============================================================================ +18:05:23 [ 1] [ 4] [0210] +18:05:23 [ 2] [ 16] [6213548000289460] +18:05:23 [ 3] [ 6] [011000] +18:05:23 [ 4] [ 12] [000010000000] +18:05:23 [ 7] [ 10] [0320181306] +18:05:23 [ 11] [ 6] [240887] +18:05:23 [ 12] [ 6] [181306] +18:05:23 [ 13] [ 4] [0320] +18:05:23 [ 15] [ 4] [0320] +18:05:23 [ 18] [ 4] [6011] +18:05:23 [ 32] [ 6] [220699] +18:05:23 [ 35] [ 32] [6213548000289460=180312018946555] +18:05:23 [ 37] [ 12] [507900410468] +18:05:23 [ 38] [ 6] [240887] +18:05:23 [ 39] [ 2] [51] +18:05:23 [ 41] [ 8] [08000300] +18:05:23 [ 49] [ 3] [418] +18:05:23 [ 54] [ 40] [1001418C0000151846841002418C000015184684] +18:05:23 ============================================================================ +18:05:23 Sending to : +18:05:23 ============================================================================ +18:05:23 + + +waiting on router queue for slot.... +18:05:24 ============================================================================ +18:05:24 Slot Id : <271> +18:05:24 Transaction Type : RESPONSE +18:05:24 Received From : +18:05:24 ============================================================================ +18:05:24 FNo. Len. Field Value +18:05:24 ============================================================================ +18:05:24 [ 1] [ 4] [0210] +18:05:24 [ 2] [ 16] [6213548000289460] +18:05:24 [ 3] [ 6] [011000] +18:05:24 [ 4] [ 12] [000010000000] +18:05:24 [ 7] [ 10] [0320181306] +18:05:24 [ 11] [ 6] [240887] +18:05:24 [ 12] [ 6] [181306] +18:05:24 [ 13] [ 4] [0320] +18:05:24 [ 15] [ 4] [0320] +18:05:24 [ 18] [ 4] [6011] +18:05:24 [ 32] [ 6] [220699] +18:05:24 [ 35] [ 32] [6213548000289460=180312018946555] +18:05:24 [ 37] [ 12] [507900410468] +18:05:24 [ 38] [ 6] [240887] +18:05:24 [ 39] [ 2] [51] +18:05:24 [ 41] [ 8] [08000300] +18:05:24 [ 49] [ 3] [418] +18:05:24 [ 54] [ 40] [1001418C0000151846841002418C000015184684] +18:05:24 ============================================================================ +18:05:24 Calculate Source COMM Id = 1 +18:05:24 ============================================================================ +18:05:24 + + +waiting on router queue for slot.... +18:05:27 ============================================================================ +18:05:27 Slot Id : <267> +18:05:27 Transaction Type : REQUEST +18:05:27 Received From : +18:05:27 ============================================================================ +18:05:27 FNo. Len. Field Value +18:05:27 ============================================================================ +18:05:27 [ 1] [ 4] [0800] +18:05:27 [ 7] [ 10] [0320110434] +18:05:27 [ 11] [ 6] [157622] +18:05:27 [ 70] [ 3] [301] +18:05:27 ============================================================================ +18:05:27 + + +waiting on router queue for slot.... +18:05:27 Sending to : +18:05:27 ============================================================================ +18:05:27 ============================================================================ +18:05:27 Slot Id : <267> +18:05:27 Transaction Type : RESPONSE +18:05:27 Received From : +18:05:27 ============================================================================ +18:05:27 FNo. Len. Field Value +18:05:27 ============================================================================ +18:05:27 [ 1] [ 4] [0810] +18:05:27 [ 7] [ 10] [0320110434] +18:05:27 [ 11] [ 6] [157622] +18:05:27 [ 39] [ 2] [00] +18:05:27 [ 70] [ 3] [301] +18:05:27 ============================================================================ +18:05:27 Calculate Source COMM Id = 2 +18:05:27 ============================================================================ +18:05:27 + + +waiting on router queue for slot.... +18:05:28 ============================================================================ +18:05:28 Slot Id : <245> +18:05:28 Transaction Type : REQUEST +18:05:28 Received From : +18:05:28 ============================================================================ +18:05:28 FNo. Len. Field Value +18:05:28 ============================================================================ +18:05:28 [ 1] [ 4] [0800] +18:05:28 [ 7] [ 10] [0321011716] +18:05:28 [ 11] [ 6] [181716] +18:05:28 [ 37] [ 12] [57918181716] +18:05:28 [ 70] [ 3] [301] +18:05:28 ============================================================================ +18:05:28 + + +waiting on router queue for slot.... +18:05:28 Sending to : +18:05:28 ============================================================================ +18:05:28 ============================================================================ +18:05:28 Slot Id : <245> +18:05:28 Transaction Type : RESPONSE +18:05:28 Received From : +18:05:28 ============================================================================ +18:05:28 FNo. Len. Field Value +18:05:28 ============================================================================ +18:05:28 [ 1] [ 4] [0810] +18:05:28 [ 7] [ 10] [0321011716] +18:05:28 [ 11] [ 6] [181716] +18:05:28 [ 37] [ 12] [579181817160] +18:05:28 [ 39] [ 2] [00] +18:05:28 [ 70] [ 3] [810] +18:05:28 ============================================================================ +18:05:28 Calculate Source COMM Id = 6 +18:05:28 ============================================================================ +18:05:28 + + +waiting on router queue for slot.... +18:05:28 ============================================================================ +18:05:28 Slot Id : <236> +18:05:28 Transaction Type : REQUEST +18:05:28 Received From : +18:05:28 ============================================================================ +18:05:28 FNo. Len. Field Value +18:05:28 ============================================================================ +18:05:28 [ 1] [ 4] [0200] +18:05:28 [ 2] [ 16] [6688990106051301] +18:05:28 [ 3] [ 6] [010000] +18:05:28 [ 4] [ 12] [000100000000] +18:05:28 [ 7] [ 10] [0320180523] +18:05:28 [ 11] [ 6] [823740] +18:05:28 [ 12] [ 6] [180523] +18:05:28 [ 13] [ 4] [0320] +18:05:28 [ 15] [ 4] [0320] +18:05:28 [ 18] [ 4] [6011] +18:05:28 [ 22] [ 3] [900] +18:05:28 [ 25] [ 2] [02] +18:05:28 [ 28] [ 9] [D00002000] +18:05:28 [ 32] [ 6] [621354] +18:05:28 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:05:28 [ 37] [ 12] [507903499699] +18:05:28 [ 41] [ 8] [06002200] +18:05:28 [ 42] [ 15] [NATIVE ] +18:05:28 [ 43] [ 40] [Beng Market Beng LAO] +18:05:28 [ 49] [ 3] [418] +18:05:28 [ 52] [ 16] [2C0D12CE1BFE7D62] +18:05:28 ============================================================================ +18:05:28 + + +waiting on router queue for slot.... +18:05:28 Sending to : +18:05:28 ============================================================================ +18:05:28 Sending to : +18:05:28 ============================================================================ +18:05:29 ============================================================================ +18:05:29 Slot Id : <236> +18:05:29 Transaction Type : REQUEST +18:05:29 Received From : +18:05:29 ============================================================================ +18:05:29 FNo. Len. Field Value +18:05:29 ============================================================================ +18:05:29 [ 1] [ 4] [0200] +18:05:29 [ 2] [ 16] [6688990106051301] +18:05:29 [ 3] [ 6] [010000] +18:05:29 [ 4] [ 12] [000100000000] +18:05:29 [ 7] [ 10] [0320180523] +18:05:29 [ 11] [ 6] [823740] +18:05:29 [ 12] [ 6] [180523] +18:05:29 [ 13] [ 4] [0320] +18:05:29 [ 15] [ 4] [0320] +18:05:29 [ 18] [ 4] [6011] +18:05:29 [ 22] [ 3] [900] +18:05:29 [ 25] [ 2] [02] +18:05:29 [ 28] [ 9] [D00002000] +18:05:29 [ 32] [ 6] [621354] +18:05:29 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:05:29 [ 37] [ 12] [507903499699] +18:05:29 [ 41] [ 8] [06002200] +18:05:29 [ 42] [ 15] [NATIVE ] +18:05:29 [ 43] [ 40] [Beng Market Beng LAO] +18:05:29 [ 49] [ 3] [418] +18:05:29 [ 52] [ 16] [2C0D12CE1BFE7D62] +18:05:29 ============================================================================ +18:05:29 + + +waiting on router queue for slot.... +18:05:29 Sending to : +18:05:29 ============================================================================ +18:05:29 ============================================================================ +18:05:29 Slot Id : <236> +18:05:29 Transaction Type : REQUEST +18:05:29 Received From : +18:05:29 ============================================================================ +18:05:29 FNo. Len. Field Value +18:05:29 ============================================================================ +18:05:29 [ 1] [ 4] [0200] +18:05:29 [ 2] [ 16] [6688990106051301] +18:05:29 [ 3] [ 6] [010000] +18:05:29 [ 4] [ 12] [000100000000] +18:05:29 [ 7] [ 10] [0320180523] +18:05:29 [ 11] [ 6] [823740] +18:05:29 [ 12] [ 6] [180523] +18:05:29 [ 13] [ 4] [0320] +18:05:29 [ 15] [ 4] [0320] +18:05:29 [ 18] [ 4] [6011] +18:05:29 [ 22] [ 3] [900] +18:05:29 [ 25] [ 2] [02] +18:05:29 [ 28] [ 9] [D00002000] +18:05:29 [ 32] [ 6] [621354] +18:05:29 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:05:29 [ 37] [ 12] [507903499699] +18:05:29 [ 41] [ 8] [06002200] +18:05:29 [ 42] [ 15] [NATIVE ] +18:05:29 [ 43] [ 40] [Beng Market Beng LAO] +18:05:29 [ 49] [ 3] [418] +18:05:29 [ 52] [ 16] [88B3AC43C032B9E8] +18:05:29 ============================================================================ +18:05:29 + + +waiting on router queue for slot.... +18:05:29 Sending to : <4> +18:05:29 ============================================================================ +18:05:30 ============================================================================ +18:05:30 Slot Id : <236> +18:05:30 Transaction Type : RESPONSE +18:05:30 Received From : +18:05:30 ============================================================================ +18:05:30 FNo. Len. Field Value +18:05:30 ============================================================================ +18:05:30 [ 1] [ 4] [0210] +18:05:30 [ 2] [ 16] [6688990106051301] +18:05:30 [ 3] [ 6] [010000] +18:05:30 [ 4] [ 12] [000100000000] +18:05:30 [ 11] [ 6] [823740] +18:05:30 [ 12] [ 6] [180523] +18:05:30 [ 15] [ 4] [0320] +18:05:30 [ 18] [ 4] [6011] +18:05:30 [ 32] [ 6] [621354] +18:05:30 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:05:30 [ 37] [ 12] [507903499699] +18:05:30 [ 38] [ 6] [794537] +18:05:30 [ 39] [ 2] [00] +18:05:30 [ 41] [ 8] [06002200] +18:05:30 [ 49] [ 3] [418] +18:05:30 [ 54] [ 20] [0002418C000131815134] +18:05:30 ============================================================================ +18:05:30 Sending to : +18:05:30 ============================================================================ +18:05:30 + + +waiting on router queue for slot.... +18:05:31 ============================================================================ +18:05:31 Slot Id : <236> +18:05:31 Transaction Type : RESPONSE +18:05:31 Received From : +18:05:31 ============================================================================ +18:05:31 FNo. Len. Field Value +18:05:31 ============================================================================ +18:05:31 [ 1] [ 4] [0210] +18:05:31 [ 2] [ 16] [6688990106051301] +18:05:31 [ 3] [ 6] [010000] +18:05:31 [ 4] [ 12] [000100000000] +18:05:31 [ 11] [ 6] [823740] +18:05:31 [ 12] [ 6] [180523] +18:05:31 [ 15] [ 4] [0320] +18:05:31 [ 18] [ 4] [6011] +18:05:31 [ 32] [ 6] [621354] +18:05:31 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:05:31 [ 37] [ 12] [507903499699] +18:05:31 [ 38] [ 6] [794537] +18:05:31 [ 39] [ 2] [00] +18:05:31 [ 41] [ 8] [06002200] +18:05:31 [ 49] [ 3] [418] +18:05:31 [ 54] [ 20] [0002418C000131815134] +18:05:31 ============================================================================ +18:05:31 Calculate Source COMM Id = 0 +18:05:31 ============================================================================ +18:05:31 + + +waiting on router queue for slot.... +18:05:38 ============================================================================ +18:05:38 Slot Id : <294> +18:05:38 Transaction Type : REQUEST +18:05:38 Received From : +18:05:38 ============================================================================ +18:05:38 FNo. Len. Field Value +18:05:38 ============================================================================ +18:05:38 [ 1] [ 4] [0800] +18:05:38 [ 7] [ 10] [0320110445] +18:05:38 [ 11] [ 6] [157623] +18:05:38 [ 70] [ 3] [301] +18:05:38 ============================================================================ +18:05:38 + + +waiting on router queue for slot.... +18:05:38 Sending to : +18:05:38 ============================================================================ +18:05:38 ============================================================================ +18:05:38 Slot Id : <294> +18:05:38 Transaction Type : RESPONSE +18:05:38 Received From : +18:05:38 ============================================================================ +18:05:38 FNo. Len. Field Value +18:05:38 ============================================================================ +18:05:38 [ 1] [ 4] [0810] +18:05:38 [ 7] [ 10] [0320110445] +18:05:38 [ 11] [ 6] [157623] +18:05:38 [ 39] [ 2] [00] +18:05:38 [ 70] [ 3] [301] +18:05:38 ============================================================================ +18:05:38 Calculate Source COMM Id = 2 +18:05:38 ============================================================================ +18:05:38 + + +waiting on router queue for slot.... +18:05:39 ============================================================================ +18:05:39 Slot Id : <303> +18:05:39 Transaction Type : REQUEST +18:05:39 Received From : +18:05:39 ============================================================================ +18:05:39 FNo. Len. Field Value +18:05:39 ============================================================================ +18:05:39 [ 1] [ 4] [0800] +18:05:39 [ 2] [ 5] [02531] +18:05:39 [ 3] [ 6] [579188] +18:05:39 [ 7] [ 10] [0320110539] +18:05:39 [ 11] [ 6] [807462] +18:05:39 [ 15] [ 10] [0320110539] +18:05:39 [ 37] [ 11] [57918807462] +18:05:39 [ 70] [ 3] [001] +18:05:39 ============================================================================ +18:05:39 + + +waiting on router queue for slot.... +18:05:39 ============================================================================ +18:05:39 Slot Id : <303> +18:05:39 Transaction Type : RESPONSE +18:05:39 Received From : +18:05:39 ============================================================================ +18:05:39 FNo. Len. Field Value +18:05:39 ============================================================================ +18:05:39 [ 1] [ 4] [0810] +18:05:39 [ 7] [ 10] [0320110539] +18:05:39 [ 11] [ 6] [807462] +18:05:39 [ 15] [ 4] [0320] +18:05:39 [ 37] [ 12] [57918807462] +18:05:39 [ 39] [ 2] [00] +18:05:39 [ 70] [ 3] [001] +18:05:39 ============================================================================ +18:05:39 Sending to : +18:05:39 ============================================================================ +18:05:39 + + +waiting on router queue for slot.... +18:05:45 ============================================================================ +18:05:45 Slot Id : <217> +18:05:45 Transaction Type : REQUEST +18:05:45 Received From : +18:05:45 ============================================================================ +18:05:45 FNo. Len. Field Value +18:05:45 ============================================================================ +18:05:45 [ 1] [ 4] [0200] +18:05:45 [ 2] [ 16] [6213545000968911] +18:05:45 [ 3] [ 6] [302000] +18:05:45 [ 7] [ 10] [0320110452] +18:05:45 [ 11] [ 6] [271058] +18:05:45 [ 12] [ 6] [180452] +18:05:45 [ 13] [ 4] [0320] +18:05:45 [ 14] [ 4] [4912] +18:05:45 [ 15] [ 4] [0320] +18:05:45 [ 18] [ 4] [6011] +18:05:45 [ 19] [ 3] [418] +18:05:45 [ 22] [ 3] [021] +18:05:45 [ 25] [ 2] [01] +18:05:45 [ 32] [ 6] [180893] +18:05:45 [ 35] [ 32] [6213545000968911=491212016891930] +18:05:45 [ 37] [ 12] [507911271058] +18:05:45 [ 41] [ 8] [0105XTNY] +18:05:45 [ 42] [ 15] [999999 ] +18:05:45 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +18:05:45 [ 49] [ 3] [418] +18:05:45 [ 52] [ 16] [890C9B45253E57E2] +18:05:45 ============================================================================ +18:05:45 + + +waiting on router queue for slot.... +18:05:45 Sending to : +18:05:45 ============================================================================ +18:05:45 Sending to : +18:05:45 ============================================================================ +18:05:46 ============================================================================ +18:05:46 Slot Id : <217> +18:05:46 Transaction Type : REQUEST +18:05:46 Received From : +18:05:46 ============================================================================ +18:05:46 FNo. Len. Field Value +18:05:46 ============================================================================ +18:05:46 [ 1] [ 4] [0200] +18:05:46 [ 2] [ 16] [6213545000968911] +18:05:46 [ 3] [ 6] [302000] +18:05:46 [ 7] [ 10] [0320110452] +18:05:46 [ 11] [ 6] [271058] +18:05:46 [ 12] [ 6] [180452] +18:05:46 [ 13] [ 4] [0320] +18:05:46 [ 14] [ 4] [4912] +18:05:46 [ 15] [ 4] [0320] +18:05:46 [ 18] [ 4] [6011] +18:05:46 [ 19] [ 3] [418] +18:05:46 [ 22] [ 3] [021] +18:05:46 [ 25] [ 2] [01] +18:05:46 [ 32] [ 6] [180893] +18:05:46 [ 35] [ 32] [6213545000968911=491212016891930] +18:05:46 [ 37] [ 12] [507911271058] +18:05:46 [ 41] [ 8] [0105XTNY] +18:05:46 [ 42] [ 15] [999999 ] +18:05:46 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +18:05:46 [ 49] [ 3] [418] +18:05:46 [ 52] [ 16] [890C9B45253E57E2] +18:05:46 ============================================================================ +18:05:46 + + +waiting on router queue for slot.... +18:05:46 Sending to : +18:05:46 ============================================================================ +18:05:46 ============================================================================ +18:05:46 Slot Id : <217> +18:05:46 Transaction Type : REQUEST +18:05:46 Received From : +18:05:46 ============================================================================ +18:05:46 FNo. Len. Field Value +18:05:46 ============================================================================ +18:05:46 [ 1] [ 4] [0200] +18:05:46 [ 2] [ 16] [6213545000968911] +18:05:46 [ 3] [ 6] [302000] +18:05:46 [ 7] [ 10] [0320110452] +18:05:46 [ 11] [ 6] [271058] +18:05:46 [ 12] [ 6] [180452] +18:05:46 [ 13] [ 4] [0320] +18:05:46 [ 14] [ 4] [4912] +18:05:46 [ 15] [ 4] [0320] +18:05:46 [ 18] [ 4] [6011] +18:05:46 [ 19] [ 3] [418] +18:05:46 [ 22] [ 3] [021] +18:05:46 [ 25] [ 2] [01] +18:05:46 [ 32] [ 6] [180893] +18:05:46 [ 35] [ 32] [6213545000968911=491212016891930] +18:05:46 [ 37] [ 12] [507911271058] +18:05:46 [ 41] [ 8] [0105XTNY] +18:05:46 [ 42] [ 15] [999999 ] +18:05:46 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +18:05:46 [ 49] [ 3] [418] +18:05:46 [ 52] [ 16] [AE93B005662565BA] +18:05:46 ============================================================================ +18:05:46 + + +waiting on router queue for slot.... +18:05:46 Sending to : <0> +18:05:46 ============================================================================ +18:05:46 ============================================================================ +18:05:46 Slot Id : <217> +18:05:46 Transaction Type : RESPONSE +18:05:46 Received From : +18:05:46 ============================================================================ +18:05:46 FNo. Len. Field Value +18:05:46 ============================================================================ +18:05:46 [ 1] [ 4] [0210] +18:05:46 [ 2] [ 16] [6213545000968911] +18:05:46 [ 3] [ 6] [302000] +18:05:46 [ 4] [ 12] [000000000000] +18:05:46 [ 7] [ 10] [0320110452] +18:05:46 [ 11] [ 6] [271058] +18:05:46 [ 12] [ 6] [180452] +18:05:46 [ 13] [ 4] [0320] +18:05:46 [ 15] [ 4] [0320] +18:05:46 [ 18] [ 4] [6011] +18:05:46 [ 19] [ 3] [418] +18:05:46 [ 32] [ 6] [180893] +18:05:46 [ 35] [ 32] [6213545000968911=491212016891930] +18:05:46 [ 37] [ 12] [507911271058] +18:05:46 [ 38] [ 6] [188774] +18:05:46 [ 39] [ 2] [00] +18:05:46 [ 41] [ 8] [0105XTNY] +18:05:46 [ 49] [ 3] [418] +18:05:46 [ 54] [ 40] [2001418C0000850429572002418C000085042957] +18:05:46 ============================================================================ +18:05:46 Sending to : +18:05:46 ============================================================================ +18:05:46 + + +waiting on router queue for slot.... +18:05:48 ============================================================================ +18:05:48 Slot Id : <217> +18:05:48 Transaction Type : RESPONSE +18:05:48 Received From : +18:05:48 ============================================================================ +18:05:48 FNo. Len. Field Value +18:05:48 ============================================================================ +18:05:48 [ 1] [ 4] [0210] +18:05:48 [ 2] [ 16] [6213545000968911] +18:05:48 [ 3] [ 6] [302000] +18:05:48 [ 4] [ 12] [000000000000] +18:05:48 [ 7] [ 10] [0320110452] +18:05:48 [ 11] [ 6] [271058] +18:05:48 [ 12] [ 6] [180452] +18:05:48 [ 13] [ 4] [0320] +18:05:48 [ 15] [ 4] [0320] +18:05:48 [ 18] [ 4] [6011] +18:05:48 [ 19] [ 3] [418] +18:05:48 [ 32] [ 6] [180893] +18:05:48 [ 35] [ 32] [6213545000968911=491212016891930] +18:05:48 [ 37] [ 12] [507911271058] +18:05:48 [ 38] [ 6] [188774] +18:05:48 [ 39] [ 2] [00] +18:05:48 [ 41] [ 8] [0105XTNY] +18:05:48 [ 49] [ 3] [418] +18:05:48 [ 54] [ 40] [2001418C0000850429572002418C000085042957] +18:05:48 ============================================================================ +18:05:48 Calculate Source COMM Id = 2 +18:05:48 ============================================================================ +18:05:48 + + +waiting on router queue for slot.... +18:05:48 ============================================================================ +18:05:48 Slot Id : <293> +18:05:48 Transaction Type : REQUEST +18:05:48 Received From : +18:05:48 ============================================================================ +18:05:48 FNo. Len. Field Value +18:05:48 ============================================================================ +18:05:48 [ 1] [ 4] [0200] +18:05:48 [ 2] [ 16] [6213545000863054] +18:05:48 [ 3] [ 6] [010000] +18:05:48 [ 4] [ 12] [000010000000] +18:05:48 [ 7] [ 10] [0320181736] +18:05:48 [ 11] [ 6] [412657] +18:05:48 [ 12] [ 6] [181736] +18:05:48 [ 13] [ 4] [0320] +18:05:48 [ 14] [ 4] [1249] +18:05:48 [ 15] [ 4] [0320] +18:05:48 [ 18] [ 4] [6011] +18:05:48 [ 19] [ 3] [418] +18:05:48 [ 22] [ 3] [021] +18:05:48 [ 25] [ 2] [01] +18:05:48 [ 28] [ 9] [D00002000] +18:05:48 [ 32] [ 6] [123401] +18:05:48 [ 35] [ 32] [6213545000863054=491212016305263] +18:05:48 [ 37] [ 12] [507900354428] +18:05:48 [ 41] [ 8] [01002600] +18:05:48 [ 42] [ 15] [APT ] +18:05:48 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +18:05:48 [ 49] [ 3] [418] +18:05:48 [ 52] [ 16] [9223863374E620AF] +18:05:48 ============================================================================ +18:05:48 + + +waiting on router queue for slot.... +18:05:48 Sending to : +18:05:48 ============================================================================ +18:05:48 Sending to : +18:05:48 ============================================================================ +18:05:48 ============================================================================ +18:05:48 Slot Id : <293> +18:05:48 Transaction Type : REQUEST +18:05:48 Received From : +18:05:48 ============================================================================ +18:05:48 FNo. Len. Field Value +18:05:48 ============================================================================ +18:05:48 [ 1] [ 4] [0200] +18:05:48 [ 2] [ 16] [6213545000863054] +18:05:48 [ 3] [ 6] [010000] +18:05:48 [ 4] [ 12] [000010000000] +18:05:48 [ 7] [ 10] [0320181736] +18:05:48 [ 11] [ 6] [412657] +18:05:48 [ 12] [ 6] [181736] +18:05:48 [ 13] [ 4] [0320] +18:05:48 [ 14] [ 4] [1249] +18:05:48 [ 15] [ 4] [0320] +18:05:48 [ 18] [ 4] [6011] +18:05:48 [ 19] [ 3] [418] +18:05:48 [ 22] [ 3] [021] +18:05:48 [ 25] [ 2] [01] +18:05:48 [ 28] [ 9] [D00002000] +18:05:48 [ 32] [ 6] [123401] +18:05:48 [ 35] [ 32] [6213545000863054=491212016305263] +18:05:48 [ 37] [ 12] [507900354428] +18:05:48 [ 41] [ 8] [01002600] +18:05:48 [ 42] [ 15] [APT ] +18:05:48 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +18:05:48 [ 49] [ 3] [418] +18:05:48 [ 52] [ 16] [9223863374E620AF] +18:05:48 ============================================================================ +18:05:48 + + +waiting on router queue for slot.... +18:05:48 Sending to : +18:05:48 ============================================================================ +18:05:48 ============================================================================ +18:05:48 Slot Id : <293> +18:05:48 Transaction Type : REQUEST +18:05:48 Received From : +18:05:48 ============================================================================ +18:05:48 FNo. Len. Field Value +18:05:48 ============================================================================ +18:05:48 [ 1] [ 4] [0200] +18:05:48 [ 2] [ 16] [6213545000863054] +18:05:48 [ 3] [ 6] [010000] +18:05:48 [ 4] [ 12] [000010000000] +18:05:48 [ 7] [ 10] [0320181736] +18:05:48 [ 11] [ 6] [412657] +18:05:48 [ 12] [ 6] [181736] +18:05:48 [ 13] [ 4] [0320] +18:05:48 [ 14] [ 4] [1249] +18:05:48 [ 15] [ 4] [0320] +18:05:48 [ 18] [ 4] [6011] +18:05:48 [ 19] [ 3] [418] +18:05:48 [ 22] [ 3] [021] +18:05:48 [ 25] [ 2] [01] +18:05:48 [ 28] [ 9] [D00002000] +18:05:48 [ 32] [ 6] [123401] +18:05:48 [ 35] [ 32] [6213545000863054=491212016305263] +18:05:48 [ 37] [ 12] [507900354428] +18:05:48 [ 41] [ 8] [01002600] +18:05:48 [ 42] [ 15] [APT ] +18:05:48 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +18:05:48 [ 49] [ 3] [418] +18:05:48 [ 52] [ 16] [C8A6DDC91D4FF786] +18:05:48 ============================================================================ +18:05:48 + + +waiting on router queue for slot.... +18:05:48 Sending to : <0> +18:05:48 ============================================================================ +18:05:49 ============================================================================ +18:05:49 Slot Id : <293> +18:05:49 Transaction Type : RESPONSE +18:05:49 Received From : +18:05:49 ============================================================================ +18:05:49 FNo. Len. Field Value +18:05:49 ============================================================================ +18:05:49 [ 1] [ 4] [0210] +18:05:49 [ 2] [ 16] [6213545000863054] +18:05:49 [ 3] [ 6] [010000] +18:05:49 [ 4] [ 12] [000010000000] +18:05:49 [ 7] [ 10] [0320181736] +18:05:49 [ 11] [ 6] [412657] +18:05:49 [ 12] [ 6] [181736] +18:05:49 [ 13] [ 4] [0320] +18:05:49 [ 15] [ 4] [0320] +18:05:49 [ 18] [ 4] [6011] +18:05:49 [ 19] [ 3] [418] +18:05:49 [ 22] [ 3] [021] +18:05:49 [ 32] [ 6] [123401] +18:05:49 [ 35] [ 32] [6213545000863054=491212016305263] +18:05:49 [ 37] [ 12] [507900354428] +18:05:49 [ 38] [ 6] [180543] +18:05:49 [ 39] [ 2] [55] +18:05:49 [ 41] [ 8] [01002600] +18:05:49 [ 49] [ 3] [418] +18:05:49 ============================================================================ +18:05:49 Sending to : +18:05:49 ============================================================================ +18:05:49 + + +waiting on router queue for slot.... +18:05:51 ============================================================================ +18:05:51 Slot Id : <293> +18:05:51 Transaction Type : RESPONSE +18:05:51 Received From : +18:05:51 ============================================================================ +18:05:51 FNo. Len. Field Value +18:05:51 ============================================================================ +18:05:51 [ 1] [ 4] [0210] +18:05:51 [ 2] [ 16] [6213545000863054] +18:05:51 [ 3] [ 6] [010000] +18:05:51 [ 4] [ 12] [000010000000] +18:05:51 [ 7] [ 10] [0320181736] +18:05:51 [ 11] [ 6] [412657] +18:05:51 [ 12] [ 6] [181736] +18:05:51 [ 13] [ 4] [0320] +18:05:51 [ 15] [ 4] [0320] +18:05:51 [ 18] [ 4] [6011] +18:05:51 [ 19] [ 3] [418] +18:05:51 [ 22] [ 3] [021] +18:05:51 [ 32] [ 6] [123401] +18:05:51 [ 35] [ 32] [6213545000863054=491212016305263] +18:05:51 [ 37] [ 12] [507900354428] +18:05:51 [ 38] [ 6] [180543] +18:05:51 [ 39] [ 2] [55] +18:05:51 [ 41] [ 8] [01002600] +18:05:51 [ 49] [ 3] [418] +18:05:51 ============================================================================ +18:05:51 Calculate Source COMM Id = 6 +18:05:51 ============================================================================ +18:05:51 + + +waiting on router queue for slot.... +18:05:56 ============================================================================ +18:05:56 Slot Id : <298> +18:05:56 Transaction Type : REQUEST +18:05:56 Received From : +18:05:56 ============================================================================ +18:05:56 FNo. Len. Field Value +18:05:56 ============================================================================ +18:05:56 [ 1] [ 4] [0200] +18:05:56 [ 2] [ 16] [6688990100941200] +18:05:56 [ 3] [ 6] [010000] +18:05:56 [ 4] [ 12] [000100000000] +18:05:56 [ 7] [ 10] [0320110503] +18:05:56 [ 11] [ 6] [271061] +18:05:56 [ 12] [ 6] [180503] +18:05:56 [ 13] [ 4] [0320] +18:05:56 [ 14] [ 4] [4112] +18:05:56 [ 15] [ 4] [0320] +18:05:56 [ 18] [ 4] [6011] +18:05:56 [ 19] [ 3] [418] +18:05:56 [ 22] [ 3] [021] +18:05:56 [ 25] [ 2] [01] +18:05:56 [ 28] [ 9] [D00002000] +18:05:56 [ 32] [ 6] [180893] +18:05:56 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:05:56 [ 37] [ 12] [507911271061] +18:05:56 [ 41] [ 8] [0467PSLK] +18:05:56 [ 42] [ 15] [999999 ] +18:05:56 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:05:56 [ 49] [ 3] [418] +18:05:56 [ 52] [ 16] [C6CF798086C24D04] +18:05:56 ============================================================================ +18:05:56 + + +waiting on router queue for slot.... +18:05:56 Sending to : +18:05:56 ============================================================================ +18:05:56 Sending to : +18:05:56 ============================================================================ +18:05:57 ============================================================================ +18:05:57 Slot Id : <298> +18:05:57 Transaction Type : REQUEST +18:05:57 Received From : +18:05:57 ============================================================================ +18:05:57 FNo. Len. Field Value +18:05:57 ============================================================================ +18:05:57 [ 1] [ 4] [0200] +18:05:57 [ 2] [ 16] [6688990100941200] +18:05:57 [ 3] [ 6] [010000] +18:05:57 [ 4] [ 12] [000100000000] +18:05:57 [ 7] [ 10] [0320110503] +18:05:57 [ 11] [ 6] [271061] +18:05:57 [ 12] [ 6] [180503] +18:05:57 [ 13] [ 4] [0320] +18:05:57 [ 14] [ 4] [4112] +18:05:57 [ 15] [ 4] [0320] +18:05:57 [ 18] [ 4] [6011] +18:05:57 [ 19] [ 3] [418] +18:05:57 [ 22] [ 3] [021] +18:05:57 [ 25] [ 2] [01] +18:05:57 [ 28] [ 9] [D00002000] +18:05:57 [ 32] [ 6] [180893] +18:05:57 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:05:57 [ 37] [ 12] [507911271061] +18:05:57 [ 41] [ 8] [0467PSLK] +18:05:57 [ 42] [ 15] [999999 ] +18:05:57 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:05:57 [ 49] [ 3] [418] +18:05:57 [ 52] [ 16] [C6CF798086C24D04] +18:05:57 ============================================================================ +18:05:57 + + +waiting on router queue for slot.... +18:05:57 Sending to : +18:05:57 ============================================================================ +18:05:57 ============================================================================ +18:05:57 Slot Id : <298> +18:05:57 Transaction Type : REQUEST +18:05:57 Received From : +18:05:57 ============================================================================ +18:05:57 FNo. Len. Field Value +18:05:57 ============================================================================ +18:05:57 [ 1] [ 4] [0200] +18:05:57 [ 2] [ 16] [6688990100941200] +18:05:57 [ 3] [ 6] [010000] +18:05:57 [ 4] [ 12] [000100000000] +18:05:57 [ 7] [ 10] [0320110503] +18:05:57 [ 11] [ 6] [271061] +18:05:57 [ 12] [ 6] [180503] +18:05:57 [ 13] [ 4] [0320] +18:05:57 [ 14] [ 4] [4112] +18:05:57 [ 15] [ 4] [0320] +18:05:57 [ 18] [ 4] [6011] +18:05:57 [ 19] [ 3] [418] +18:05:57 [ 22] [ 3] [021] +18:05:57 [ 25] [ 2] [01] +18:05:57 [ 28] [ 9] [D00002000] +18:05:57 [ 32] [ 6] [180893] +18:05:57 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:05:57 [ 37] [ 12] [507911271061] +18:05:57 [ 41] [ 8] [0467PSLK] +18:05:57 [ 42] [ 15] [999999 ] +18:05:57 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:05:57 [ 49] [ 3] [418] +18:05:57 [ 52] [ 16] [10E4F466ECA408C6] +18:05:57 ============================================================================ +18:05:57 + + +waiting on router queue for slot.... +18:05:57 Sending to : <0> +18:05:57 ============================================================================ +18:05:57 ============================================================================ +18:05:57 Slot Id : <298> +18:05:57 Transaction Type : RESPONSE +18:05:57 Received From : +18:05:57 ============================================================================ +18:05:57 FNo. Len. Field Value +18:05:57 ============================================================================ +18:05:57 [ 1] [ 4] [0210] +18:05:57 [ 2] [ 16] [6688990100941200] +18:05:57 [ 3] [ 6] [010000] +18:05:57 [ 4] [ 12] [000100000000] +18:05:57 [ 7] [ 10] [0320110503] +18:05:57 [ 11] [ 6] [271061] +18:05:57 [ 12] [ 6] [180503] +18:05:57 [ 13] [ 4] [0320] +18:05:57 [ 15] [ 4] [0320] +18:05:57 [ 18] [ 4] [6011] +18:05:57 [ 19] [ 3] [418] +18:05:57 [ 22] [ 3] [021] +18:05:57 [ 32] [ 6] [180893] +18:05:57 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:05:57 [ 37] [ 12] [507911271061] +18:05:57 [ 39] [ 2] [14] +18:05:57 [ 41] [ 8] [0467PSLK] +18:05:57 [ 49] [ 3] [418] +18:05:57 ============================================================================ +18:05:57 Sending to : +18:05:57 ============================================================================ +18:05:57 + + +waiting on router queue for slot.... +18:05:58 ============================================================================ +18:05:58 Slot Id : <298> +18:05:58 Transaction Type : RESPONSE +18:05:58 Received From : +18:05:58 ============================================================================ +18:05:58 FNo. Len. Field Value +18:05:58 ============================================================================ +18:05:58 [ 1] [ 4] [0210] +18:05:58 [ 2] [ 16] [6688990100941200] +18:05:58 [ 3] [ 6] [010000] +18:05:58 [ 4] [ 12] [000100000000] +18:05:58 [ 7] [ 10] [0320110503] +18:05:58 [ 11] [ 6] [271061] +18:05:58 [ 12] [ 6] [180503] +18:05:58 [ 13] [ 4] [0320] +18:05:58 [ 15] [ 4] [0320] +18:05:58 [ 18] [ 4] [6011] +18:05:58 [ 19] [ 3] [418] +18:05:58 [ 22] [ 3] [021] +18:05:58 [ 32] [ 6] [180893] +18:05:58 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:05:58 [ 37] [ 12] [507911271061] +18:05:58 [ 39] [ 2] [14] +18:05:58 [ 41] [ 8] [0467PSLK] +18:05:58 [ 49] [ 3] [418] +18:05:58 ============================================================================ +18:05:58 Calculate Source COMM Id = 2 +18:05:58 ============================================================================ +18:05:58 + + +waiting on router queue for slot.... +18:06:11 ============================================================================ +18:06:11 Slot Id : <300> +18:06:11 Transaction Type : REQUEST +18:06:11 Received From : +18:06:11 ============================================================================ +18:06:11 FNo. Len. Field Value +18:06:11 ============================================================================ +18:06:11 [ 1] [ 4] [0800] +18:06:11 [ 7] [ 10] [0320110517] +18:06:11 [ 11] [ 6] [157624] +18:06:11 [ 70] [ 3] [301] +18:06:11 ============================================================================ +18:06:11 + + +waiting on router queue for slot.... +18:06:11 Sending to : +18:06:11 ============================================================================ +18:06:11 ============================================================================ +18:06:11 Slot Id : <300> +18:06:11 Transaction Type : RESPONSE +18:06:11 Received From : +18:06:11 ============================================================================ +18:06:11 FNo. Len. Field Value +18:06:11 ============================================================================ +18:06:11 [ 1] [ 4] [0810] +18:06:11 [ 7] [ 10] [0320110517] +18:06:11 [ 11] [ 6] [157624] +18:06:11 [ 39] [ 2] [00] +18:06:11 [ 70] [ 3] [301] +18:06:11 ============================================================================ +18:06:11 Calculate Source COMM Id = 2 +18:06:11 ============================================================================ +18:06:11 + + +waiting on router queue for slot.... +18:06:22 ============================================================================ +18:06:22 Slot Id : <299> +18:06:22 Transaction Type : REQUEST +18:06:22 Received From : +18:06:22 ============================================================================ +18:06:22 FNo. Len. Field Value +18:06:22 ============================================================================ +18:06:22 [ 1] [ 4] [0800] +18:06:22 [ 7] [ 10] [0320110412] +18:06:22 [ 11] [ 6] [066902] +18:06:22 [ 37] [ 12] [57918066902] +18:06:22 [ 70] [ 3] [301] +18:06:22 ============================================================================ +18:06:22 + + +waiting on router queue for slot.... +18:06:22 Sending to : +18:06:22 ============================================================================ +18:06:22 ============================================================================ +18:06:22 Slot Id : <299> +18:06:22 Transaction Type : RESPONSE +18:06:22 Received From : +18:06:22 ============================================================================ +18:06:22 FNo. Len. Field Value +18:06:22 ============================================================================ +18:06:22 [ 1] [ 4] [0810] +18:06:22 [ 7] [ 10] [0320110412] +18:06:22 [ 11] [ 6] [066902] +18:06:22 [ 37] [ 12] [579180669020] +18:06:22 [ 39] [ 2] [00] +18:06:22 [ 70] [ 3] [810] +18:06:22 ============================================================================ +18:06:22 Calculate Source COMM Id = 4 +18:06:22 ============================================================================ +18:06:22 + + +waiting on router queue for slot.... +18:06:25 ============================================================================ +18:06:25 Slot Id : <257> +18:06:25 Transaction Type : REQUEST +18:06:25 Received From : +18:06:25 ============================================================================ +18:06:25 FNo. Len. Field Value +18:06:25 ============================================================================ +18:06:25 [ 1] [ 4] [0800] +18:06:25 [ 7] [ 10] [0320110532] +18:06:25 [ 11] [ 6] [157625] +18:06:25 [ 70] [ 3] [301] +18:06:25 ============================================================================ +18:06:25 + + +waiting on router queue for slot.... +18:06:25 Sending to : +18:06:25 ============================================================================ +18:06:25 ============================================================================ +18:06:25 Slot Id : <257> +18:06:25 Transaction Type : RESPONSE +18:06:25 Received From : +18:06:25 ============================================================================ +18:06:25 FNo. Len. Field Value +18:06:25 ============================================================================ +18:06:25 [ 1] [ 4] [0810] +18:06:25 [ 7] [ 10] [0320110532] +18:06:25 [ 11] [ 6] [157625] +18:06:25 [ 39] [ 2] [00] +18:06:25 [ 70] [ 3] [301] +18:06:25 ============================================================================ +18:06:25 Calculate Source COMM Id = 2 +18:06:25 ============================================================================ +18:06:25 + + +waiting on router queue for slot.... +18:06:33 ============================================================================ +18:06:33 Slot Id : <278> +18:06:33 Transaction Type : REQUEST +18:06:33 Received From : +18:06:33 ============================================================================ +18:06:33 FNo. Len. Field Value +18:06:33 ============================================================================ +18:06:33 [ 1] [ 4] [0800] +18:06:33 [ 7] [ 10] [0321011821] +18:06:33 [ 11] [ 6] [181821] +18:06:33 [ 37] [ 12] [57918181821] +18:06:33 [ 70] [ 3] [301] +18:06:33 ============================================================================ +18:06:33 + + +waiting on router queue for slot.... +18:06:33 Sending to : +18:06:33 ============================================================================ +18:06:33 ============================================================================ +18:06:33 Slot Id : <278> +18:06:33 Transaction Type : RESPONSE +18:06:33 Received From : +18:06:33 ============================================================================ +18:06:33 FNo. Len. Field Value +18:06:33 ============================================================================ +18:06:33 [ 1] [ 4] [0810] +18:06:33 [ 7] [ 10] [0321011821] +18:06:33 [ 11] [ 6] [181821] +18:06:33 [ 37] [ 12] [579181818210] +18:06:33 [ 39] [ 2] [00] +18:06:33 [ 70] [ 3] [810] +18:06:33 ============================================================================ +18:06:33 Calculate Source COMM Id = 6 +18:06:33 ============================================================================ +18:06:33 + + +waiting on router queue for slot.... +18:06:41 ============================================================================ +18:06:41 Slot Id : <308> +18:06:41 Transaction Type : REQUEST +18:06:41 Received From : +18:06:41 ============================================================================ +18:06:41 FNo. Len. Field Value +18:06:41 ============================================================================ +18:06:41 [ 1] [ 4] [0800] +18:06:41 [ 2] [ 5] [02531] +18:06:41 [ 3] [ 6] [579188] +18:06:41 [ 7] [ 10] [0320110641] +18:06:41 [ 11] [ 6] [807463] +18:06:41 [ 15] [ 10] [0320110641] +18:06:41 [ 37] [ 11] [57918807463] +18:06:41 [ 70] [ 3] [001] +18:06:41 ============================================================================ +18:06:41 + + +waiting on router queue for slot.... +18:06:41 ============================================================================ +18:06:41 Slot Id : <308> +18:06:41 Transaction Type : RESPONSE +18:06:41 Received From : +18:06:41 ============================================================================ +18:06:41 FNo. Len. Field Value +18:06:41 ============================================================================ +18:06:41 [ 1] [ 4] [0810] +18:06:41 [ 7] [ 10] [0320110641] +18:06:41 [ 11] [ 6] [807463] +18:06:41 [ 15] [ 4] [0320] +18:06:41 [ 37] [ 12] [57918807463] +18:06:41 [ 39] [ 2] [00] +18:06:41 [ 70] [ 3] [001] +18:06:41 ============================================================================ +18:06:41 Sending to : +18:06:41 ============================================================================ +18:06:41 + + +waiting on router queue for slot.... +18:06:41 ============================================================================ +18:06:41 Slot Id : <281> +18:06:41 Transaction Type : REQUEST +18:06:41 Received From : +18:06:41 ============================================================================ +18:06:41 FNo. Len. Field Value +18:06:41 ============================================================================ +18:06:41 [ 1] [ 4] [0800] +18:06:41 [ 7] [ 10] [0320110548] +18:06:41 [ 11] [ 6] [157626] +18:06:41 [ 70] [ 3] [301] +18:06:41 ============================================================================ +18:06:41 + + +waiting on router queue for slot.... +18:06:41 Sending to : +18:06:41 ============================================================================ +18:06:41 ============================================================================ +18:06:41 Slot Id : <281> +18:06:41 Transaction Type : RESPONSE +18:06:41 Received From : +18:06:41 ============================================================================ +18:06:41 FNo. Len. Field Value +18:06:41 ============================================================================ +18:06:41 [ 1] [ 4] [0810] +18:06:41 [ 7] [ 10] [0320110548] +18:06:41 [ 11] [ 6] [157626] +18:06:41 [ 39] [ 2] [00] +18:06:41 [ 70] [ 3] [301] +18:06:41 ============================================================================ +18:06:41 Calculate Source COMM Id = 2 +18:06:41 ============================================================================ +18:06:41 + + +waiting on router queue for slot.... +18:06:51 ============================================================================ +18:06:51 Slot Id : <295> +18:06:51 Transaction Type : REQUEST +18:06:51 Received From : +18:06:51 ============================================================================ +18:06:51 FNo. Len. Field Value +18:06:51 ============================================================================ +18:06:51 [ 1] [ 4] [0200] +18:06:51 [ 2] [ 16] [6213545000968911] +18:06:51 [ 3] [ 6] [010000] +18:06:51 [ 4] [ 12] [000010000000] +18:06:51 [ 7] [ 10] [0320110556] +18:06:51 [ 11] [ 6] [271064] +18:06:51 [ 12] [ 6] [180556] +18:06:51 [ 13] [ 4] [0320] +18:06:51 [ 14] [ 4] [4912] +18:06:51 [ 15] [ 4] [0320] +18:06:51 [ 18] [ 4] [6011] +18:06:51 [ 19] [ 3] [418] +18:06:51 [ 22] [ 3] [021] +18:06:51 [ 25] [ 2] [01] +18:06:51 [ 28] [ 9] [D00002000] +18:06:51 [ 32] [ 6] [180893] +18:06:51 [ 35] [ 32] [6213545000968911=491212016891930] +18:06:51 [ 37] [ 12] [507911271064] +18:06:51 [ 41] [ 8] [0105XTNY] +18:06:51 [ 42] [ 15] [999999 ] +18:06:51 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +18:06:51 [ 49] [ 3] [418] +18:06:51 [ 52] [ 16] [890C9B45253E57E2] +18:06:51 ============================================================================ +18:06:51 + + +waiting on router queue for slot.... +18:06:51 Sending to : +18:06:51 ============================================================================ +18:06:51 Sending to : +18:06:51 ============================================================================ +18:06:52 ============================================================================ +18:06:52 Slot Id : <295> +18:06:52 Transaction Type : REQUEST +18:06:52 Received From : +18:06:52 ============================================================================ +18:06:52 FNo. Len. Field Value +18:06:52 ============================================================================ +18:06:52 [ 1] [ 4] [0200] +18:06:52 [ 2] [ 16] [6213545000968911] +18:06:52 [ 3] [ 6] [010000] +18:06:52 [ 4] [ 12] [000010000000] +18:06:52 [ 7] [ 10] [0320110556] +18:06:52 [ 11] [ 6] [271064] +18:06:52 [ 12] [ 6] [180556] +18:06:52 [ 13] [ 4] [0320] +18:06:52 [ 14] [ 4] [4912] +18:06:52 [ 15] [ 4] [0320] +18:06:52 [ 18] [ 4] [6011] +18:06:52 [ 19] [ 3] [418] +18:06:52 [ 22] [ 3] [021] +18:06:52 [ 25] [ 2] [01] +18:06:52 [ 28] [ 9] [D00002000] +18:06:52 [ 32] [ 6] [180893] +18:06:52 [ 35] [ 32] [6213545000968911=491212016891930] +18:06:52 [ 37] [ 12] [507911271064] +18:06:52 [ 41] [ 8] [0105XTNY] +18:06:52 [ 42] [ 15] [999999 ] +18:06:52 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +18:06:52 [ 49] [ 3] [418] +18:06:52 [ 52] [ 16] [890C9B45253E57E2] +18:06:52 ============================================================================ +18:06:52 + + +waiting on router queue for slot.... +18:06:52 Sending to : +18:06:52 ============================================================================ +18:06:52 ============================================================================ +18:06:52 Slot Id : <295> +18:06:52 Transaction Type : REQUEST +18:06:52 Received From : +18:06:52 ============================================================================ +18:06:52 FNo. Len. Field Value +18:06:52 ============================================================================ +18:06:52 [ 1] [ 4] [0200] +18:06:52 [ 2] [ 16] [6213545000968911] +18:06:52 [ 3] [ 6] [010000] +18:06:52 [ 4] [ 12] [000010000000] +18:06:52 [ 7] [ 10] [0320110556] +18:06:52 [ 11] [ 6] [271064] +18:06:52 [ 12] [ 6] [180556] +18:06:52 [ 13] [ 4] [0320] +18:06:52 [ 14] [ 4] [4912] +18:06:52 [ 15] [ 4] [0320] +18:06:52 [ 18] [ 4] [6011] +18:06:52 [ 19] [ 3] [418] +18:06:52 [ 22] [ 3] [021] +18:06:52 [ 25] [ 2] [01] +18:06:52 [ 28] [ 9] [D00002000] +18:06:52 [ 32] [ 6] [180893] +18:06:52 [ 35] [ 32] [6213545000968911=491212016891930] +18:06:52 [ 37] [ 12] [507911271064] +18:06:52 [ 41] [ 8] [0105XTNY] +18:06:52 [ 42] [ 15] [999999 ] +18:06:52 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +18:06:52 [ 49] [ 3] [418] +18:06:52 [ 52] [ 16] [AE93B005662565BA] +18:06:52 ============================================================================ +18:06:52 + + +waiting on router queue for slot.... +18:06:52 Sending to : <0> +18:06:52 ============================================================================ +18:06:52 ============================================================================ +18:06:52 Slot Id : <295> +18:06:52 Transaction Type : RESPONSE +18:06:52 Received From : +18:06:52 ============================================================================ +18:06:52 FNo. Len. Field Value +18:06:52 ============================================================================ +18:06:52 [ 1] [ 4] [0210] +18:06:52 [ 2] [ 16] [6213545000968911] +18:06:52 [ 3] [ 6] [010000] +18:06:52 [ 4] [ 12] [000010000000] +18:06:52 [ 7] [ 10] [0320110556] +18:06:52 [ 11] [ 6] [271064] +18:06:52 [ 12] [ 6] [180556] +18:06:52 [ 13] [ 4] [0320] +18:06:52 [ 15] [ 4] [0320] +18:06:52 [ 18] [ 4] [6011] +18:06:52 [ 19] [ 3] [418] +18:06:52 [ 32] [ 6] [180893] +18:06:52 [ 35] [ 32] [6213545000968911=491212016891930] +18:06:52 [ 37] [ 12] [507911271064] +18:06:52 [ 38] [ 6] [935639] +18:06:52 [ 39] [ 2] [00] +18:06:52 [ 41] [ 8] [0105XTNY] +18:06:52 [ 49] [ 3] [418] +18:06:52 [ 54] [ 40] [0001418C0000748429570002418C000074842957] +18:06:52 ============================================================================ +18:06:52 Sending to : +18:06:52 ============================================================================ +18:06:52 + + +waiting on router queue for slot.... +18:06:52 ============================================================================ +18:06:52 Slot Id : <286> +18:06:52 Transaction Type : REQUEST +18:06:52 Received From : +18:06:52 ============================================================================ +18:06:52 FNo. Len. Field Value +18:06:52 ============================================================================ +18:06:52 [ 1] [ 4] [0800] +18:06:52 [ 7] [ 10] [0320110559] +18:06:52 [ 11] [ 6] [157627] +18:06:52 [ 70] [ 3] [301] +18:06:52 ============================================================================ +18:06:52 + + +waiting on router queue for slot.... +18:06:52 Sending to : +18:06:52 ============================================================================ +18:06:52 ============================================================================ +18:06:52 Slot Id : <286> +18:06:52 Transaction Type : RESPONSE +18:06:52 Received From : +18:06:52 ============================================================================ +18:06:52 FNo. Len. Field Value +18:06:52 ============================================================================ +18:06:52 [ 1] [ 4] [0810] +18:06:52 [ 7] [ 10] [0320110559] +18:06:52 [ 11] [ 6] [157627] +18:06:52 [ 39] [ 2] [00] +18:06:52 [ 70] [ 3] [301] +18:06:52 ============================================================================ +18:06:52 Calculate Source COMM Id = 2 +18:06:52 ============================================================================ +18:06:52 + + +waiting on router queue for slot.... +18:06:54 ============================================================================ +18:06:54 Slot Id : <295> +18:06:54 Transaction Type : RESPONSE +18:06:54 Received From : +18:06:54 ============================================================================ +18:06:54 FNo. Len. Field Value +18:06:54 ============================================================================ +18:06:54 [ 1] [ 4] [0210] +18:06:54 [ 2] [ 16] [6213545000968911] +18:06:54 [ 3] [ 6] [010000] +18:06:54 [ 4] [ 12] [000010000000] +18:06:54 [ 7] [ 10] [0320110556] +18:06:54 [ 11] [ 6] [271064] +18:06:54 [ 12] [ 6] [180556] +18:06:54 [ 13] [ 4] [0320] +18:06:54 [ 15] [ 4] [0320] +18:06:54 [ 18] [ 4] [6011] +18:06:54 [ 19] [ 3] [418] +18:06:54 [ 32] [ 6] [180893] +18:06:54 [ 35] [ 32] [6213545000968911=491212016891930] +18:06:54 [ 37] [ 12] [507911271064] +18:06:54 [ 38] [ 6] [935639] +18:06:54 [ 39] [ 2] [00] +18:06:54 [ 41] [ 8] [0105XTNY] +18:06:54 [ 49] [ 3] [418] +18:06:54 [ 54] [ 40] [0001418C0000748429570002418C000074842957] +18:06:54 ============================================================================ +18:06:54 Calculate Source COMM Id = 2 +18:06:54 ============================================================================ +18:06:54 + + +waiting on router queue for slot.... +18:06:55 ============================================================================ +18:06:55 Slot Id : <296> +18:06:55 Transaction Type : REQUEST +18:06:55 Received From : +18:06:55 ============================================================================ +18:06:55 FNo. Len. Field Value +18:06:55 ============================================================================ +18:06:55 [ 1] [ 4] [0200] +18:06:55 [ 2] [ 16] [6688990106051301] +18:06:55 [ 3] [ 6] [010000] +18:06:55 [ 4] [ 12] [000100000000] +18:06:55 [ 7] [ 10] [0320180650] +18:06:55 [ 11] [ 6] [823975] +18:06:55 [ 12] [ 6] [180650] +18:06:55 [ 13] [ 4] [0320] +18:06:55 [ 15] [ 4] [0320] +18:06:55 [ 18] [ 4] [6011] +18:06:55 [ 22] [ 3] [900] +18:06:55 [ 25] [ 2] [02] +18:06:55 [ 28] [ 9] [D00002000] +18:06:55 [ 32] [ 6] [621354] +18:06:55 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:06:55 [ 37] [ 12] [507903499701] +18:06:55 [ 41] [ 8] [06002200] +18:06:55 [ 42] [ 15] [NATIVE ] +18:06:55 [ 43] [ 40] [Beng Market Beng LAO] +18:06:55 [ 49] [ 3] [418] +18:06:55 [ 52] [ 16] [2C0D12CE1BFE7D62] +18:06:55 ============================================================================ +18:06:55 + + +waiting on router queue for slot.... +18:06:55 Sending to : +18:06:55 ============================================================================ +18:06:55 Sending to : +18:06:55 ============================================================================ +18:06:55 ============================================================================ +18:06:55 Slot Id : <296> +18:06:55 Transaction Type : REQUEST +18:06:55 Received From : +18:06:55 ============================================================================ +18:06:55 FNo. Len. Field Value +18:06:55 ============================================================================ +18:06:55 [ 1] [ 4] [0200] +18:06:55 [ 2] [ 16] [6688990106051301] +18:06:55 [ 3] [ 6] [010000] +18:06:55 [ 4] [ 12] [000100000000] +18:06:55 [ 7] [ 10] [0320180650] +18:06:55 [ 11] [ 6] [823975] +18:06:55 [ 12] [ 6] [180650] +18:06:55 [ 13] [ 4] [0320] +18:06:55 [ 15] [ 4] [0320] +18:06:55 [ 18] [ 4] [6011] +18:06:55 [ 22] [ 3] [900] +18:06:55 [ 25] [ 2] [02] +18:06:55 [ 28] [ 9] [D00002000] +18:06:55 [ 32] [ 6] [621354] +18:06:55 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:06:55 [ 37] [ 12] [507903499701] +18:06:55 [ 41] [ 8] [06002200] +18:06:55 [ 42] [ 15] [NATIVE ] +18:06:55 [ 43] [ 40] [Beng Market Beng LAO] +18:06:55 [ 49] [ 3] [418] +18:06:55 [ 52] [ 16] [2C0D12CE1BFE7D62] +18:06:55 ============================================================================ +18:06:55 + + +waiting on router queue for slot.... +18:06:55 Sending to : +18:06:55 ============================================================================ +18:06:55 ============================================================================ +18:06:55 Slot Id : <296> +18:06:55 Transaction Type : REQUEST +18:06:55 Received From : +18:06:55 ============================================================================ +18:06:55 FNo. Len. Field Value +18:06:55 ============================================================================ +18:06:55 [ 1] [ 4] [0200] +18:06:55 [ 2] [ 16] [6688990106051301] +18:06:55 [ 3] [ 6] [010000] +18:06:55 [ 4] [ 12] [000100000000] +18:06:55 [ 7] [ 10] [0320180650] +18:06:55 [ 11] [ 6] [823975] +18:06:55 [ 12] [ 6] [180650] +18:06:55 [ 13] [ 4] [0320] +18:06:55 [ 15] [ 4] [0320] +18:06:55 [ 18] [ 4] [6011] +18:06:55 [ 22] [ 3] [900] +18:06:55 [ 25] [ 2] [02] +18:06:55 [ 28] [ 9] [D00002000] +18:06:55 [ 32] [ 6] [621354] +18:06:55 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:06:55 [ 37] [ 12] [507903499701] +18:06:55 [ 41] [ 8] [06002200] +18:06:55 [ 42] [ 15] [NATIVE ] +18:06:55 [ 43] [ 40] [Beng Market Beng LAO] +18:06:55 [ 49] [ 3] [418] +18:06:55 [ 52] [ 16] [88B3AC43C032B9E8] +18:06:55 ============================================================================ +18:06:55 + + +waiting on router queue for slot.... +18:06:55 Sending to : <4> +18:06:55 ============================================================================ +18:06:56 ============================================================================ +18:06:56 Slot Id : <296> +18:06:56 Transaction Type : RESPONSE +18:06:56 Received From : +18:06:56 ============================================================================ +18:06:56 FNo. Len. Field Value +18:06:56 ============================================================================ +18:06:56 [ 1] [ 4] [0210] +18:06:56 [ 2] [ 16] [6688990106051301] +18:06:56 [ 3] [ 6] [010000] +18:06:56 [ 4] [ 12] [000100000000] +18:06:56 [ 11] [ 6] [823975] +18:06:56 [ 12] [ 6] [180650] +18:06:56 [ 15] [ 4] [0320] +18:06:56 [ 18] [ 4] [6011] +18:06:56 [ 32] [ 6] [621354] +18:06:56 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:06:56 [ 37] [ 12] [507903499701] +18:06:56 [ 38] [ 6] [294545] +18:06:56 [ 39] [ 2] [00] +18:06:56 [ 41] [ 8] [06002200] +18:06:56 [ 49] [ 3] [418] +18:06:56 [ 54] [ 20] [0002418C000031615134] +18:06:56 ============================================================================ +18:06:56 Sending to : +18:06:56 ============================================================================ +18:06:56 + + +waiting on router queue for slot.... +18:06:58 ============================================================================ +18:06:58 Slot Id : <296> +18:06:58 Transaction Type : RESPONSE +18:06:58 Received From : +18:06:58 ============================================================================ +18:06:58 FNo. Len. Field Value +18:06:58 ============================================================================ +18:06:58 [ 1] [ 4] [0210] +18:06:58 [ 2] [ 16] [6688990106051301] +18:06:58 [ 3] [ 6] [010000] +18:06:58 [ 4] [ 12] [000100000000] +18:06:58 [ 11] [ 6] [823975] +18:06:58 [ 12] [ 6] [180650] +18:06:58 [ 15] [ 4] [0320] +18:06:58 [ 18] [ 4] [6011] +18:06:58 [ 32] [ 6] [621354] +18:06:58 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:06:58 [ 37] [ 12] [507903499701] +18:06:58 [ 38] [ 6] [294545] +18:06:58 [ 39] [ 2] [00] +18:06:58 [ 41] [ 8] [06002200] +18:06:58 [ 49] [ 3] [418] +18:06:58 [ 54] [ 20] [0002418C000031615134] +18:06:58 ============================================================================ +18:06:58 Calculate Source COMM Id = 0 +18:06:58 ============================================================================ +18:06:58 + + +waiting on router queue for slot.... +18:06:59 ============================================================================ +18:06:59 Slot Id : <283> +18:06:59 Transaction Type : REQUEST +18:06:59 Received From : +18:06:59 ============================================================================ +18:06:59 FNo. Len. Field Value +18:06:59 ============================================================================ +18:06:59 [ 1] [ 4] [0200] +18:06:59 [ 2] [ 16] [6213542000018995] +18:06:59 [ 3] [ 6] [300000] +18:06:59 [ 4] [ 12] [000000000000] +18:06:59 [ 7] [ 10] [0320180449] +18:06:59 [ 11] [ 6] [954337] +18:06:59 [ 12] [ 6] [180449] +18:06:59 [ 13] [ 4] [0320] +18:06:59 [ 15] [ 4] [0320] +18:06:59 [ 18] [ 4] [6011] +18:06:59 [ 19] [ 3] [418] +18:06:59 [ 22] [ 3] [021] +18:06:59 [ 25] [ 2] [01] +18:06:59 [ 28] [ 9] [D00000000] +18:06:59 [ 32] [ 6] [668899] +18:06:59 [ 35] [ 32] [6213542000018995=491212011899227] +18:06:59 [ 37] [ 12] [507902363009] +18:06:59 [ 41] [ 8] [03016003] +18:06:59 [ 42] [ 15] [APT ] +18:06:59 [ 43] [ 40] [ TADLOR LAONGARM LAO] +18:06:59 [ 49] [ 3] [418] +18:06:59 [ 52] [ 16] [0ECFBAE104D44A81] +18:06:59 ============================================================================ +18:06:59 + + +waiting on router queue for slot.... +18:06:59 Sending to : +18:06:59 ============================================================================ +18:06:59 Sending to : +18:06:59 ============================================================================ +18:07:00 ============================================================================ +18:07:00 Slot Id : <283> +18:07:00 Transaction Type : REQUEST +18:07:00 Received From : +18:07:00 ============================================================================ +18:07:00 FNo. Len. Field Value +18:07:00 ============================================================================ +18:07:00 [ 1] [ 4] [0200] +18:07:00 [ 2] [ 16] [6213542000018995] +18:07:00 [ 3] [ 6] [300000] +18:07:00 [ 4] [ 12] [000000000000] +18:07:00 [ 7] [ 10] [0320180449] +18:07:00 [ 11] [ 6] [954337] +18:07:00 [ 12] [ 6] [180449] +18:07:00 [ 13] [ 4] [0320] +18:07:00 [ 15] [ 4] [0320] +18:07:00 [ 18] [ 4] [6011] +18:07:00 [ 19] [ 3] [418] +18:07:00 [ 22] [ 3] [021] +18:07:00 [ 25] [ 2] [01] +18:07:00 [ 28] [ 9] [D00000000] +18:07:00 [ 32] [ 6] [668899] +18:07:00 [ 35] [ 32] [6213542000018995=491212011899227] +18:07:00 [ 37] [ 12] [507902363009] +18:07:00 [ 41] [ 8] [03016003] +18:07:00 [ 42] [ 15] [APT ] +18:07:00 [ 43] [ 40] [ TADLOR LAONGARM LAO] +18:07:00 [ 49] [ 3] [418] +18:07:00 [ 52] [ 16] [0ECFBAE104D44A81] +18:07:00 ============================================================================ +18:07:00 + + +waiting on router queue for slot.... +18:07:00 Sending to : +18:07:00 ============================================================================ +18:07:00 ============================================================================ +18:07:00 Slot Id : <283> +18:07:00 Transaction Type : REQUEST +18:07:00 Received From : +18:07:00 ============================================================================ +18:07:00 FNo. Len. Field Value +18:07:00 ============================================================================ +18:07:00 [ 1] [ 4] [0200] +18:07:00 [ 2] [ 16] [6213542000018995] +18:07:00 [ 3] [ 6] [300000] +18:07:00 [ 4] [ 12] [000000000000] +18:07:00 [ 7] [ 10] [0320180449] +18:07:00 [ 11] [ 6] [954337] +18:07:00 [ 12] [ 6] [180449] +18:07:00 [ 13] [ 4] [0320] +18:07:00 [ 15] [ 4] [0320] +18:07:00 [ 18] [ 4] [6011] +18:07:00 [ 19] [ 3] [418] +18:07:00 [ 22] [ 3] [021] +18:07:00 [ 25] [ 2] [01] +18:07:00 [ 28] [ 9] [D00000000] +18:07:00 [ 32] [ 6] [668899] +18:07:00 [ 35] [ 32] [6213542000018995=491212011899227] +18:07:00 [ 37] [ 12] [507902363009] +18:07:00 [ 41] [ 8] [03016003] +18:07:00 [ 42] [ 15] [APT ] +18:07:00 [ 43] [ 40] [ TADLOR LAONGARM LAO] +18:07:00 [ 49] [ 3] [418] +18:07:00 [ 52] [ 16] [717C9102994A905F] +18:07:00 ============================================================================ +18:07:00 + + +waiting on router queue for slot.... +18:07:00 Sending to : <0> +18:07:00 ============================================================================ +18:07:01 ============================================================================ +18:07:01 Slot Id : <283> +18:07:01 Transaction Type : RESPONSE +18:07:01 Received From : +18:07:01 ============================================================================ +18:07:01 FNo. Len. Field Value +18:07:01 ============================================================================ +18:07:01 [ 1] [ 4] [0210] +18:07:01 [ 2] [ 16] [6213542000018995] +18:07:01 [ 3] [ 6] [300000] +18:07:01 [ 4] [ 12] [000000000000] +18:07:01 [ 7] [ 10] [0320180449] +18:07:01 [ 11] [ 6] [954337] +18:07:01 [ 12] [ 6] [180449] +18:07:01 [ 13] [ 4] [0320] +18:07:01 [ 15] [ 4] [0320] +18:07:01 [ 18] [ 4] [6011] +18:07:01 [ 19] [ 3] [418] +18:07:01 [ 32] [ 6] [668899] +18:07:01 [ 35] [ 32] [6213542000018995=491212011899227] +18:07:01 [ 37] [ 12] [507902363009] +18:07:01 [ 38] [ 6] [243711] +18:07:01 [ 39] [ 2] [00] +18:07:01 [ 41] [ 8] [03016003] +18:07:01 [ 49] [ 3] [418] +18:07:01 [ 54] [ 40] [0001418C0002400728980002418C000240072898] +18:07:01 ============================================================================ +18:07:01 Sending to : +18:07:01 ============================================================================ +18:07:01 + + +waiting on router queue for slot.... +18:07:02 ============================================================================ +18:07:02 Slot Id : <283> +18:07:02 Transaction Type : RESPONSE +18:07:02 Received From : +18:07:02 ============================================================================ +18:07:02 FNo. Len. Field Value +18:07:02 ============================================================================ +18:07:02 [ 1] [ 4] [0210] +18:07:02 [ 2] [ 16] [6213542000018995] +18:07:02 [ 3] [ 6] [300000] +18:07:02 [ 4] [ 12] [000000000000] +18:07:02 [ 7] [ 10] [0320180449] +18:07:02 [ 11] [ 6] [954337] +18:07:02 [ 12] [ 6] [180449] +18:07:02 [ 13] [ 4] [0320] +18:07:02 [ 15] [ 4] [0320] +18:07:02 [ 18] [ 4] [6011] +18:07:02 [ 19] [ 3] [418] +18:07:02 [ 32] [ 6] [668899] +18:07:02 [ 35] [ 32] [6213542000018995=491212011899227] +18:07:02 [ 37] [ 12] [507902363009] +18:07:02 [ 38] [ 6] [243711] +18:07:02 [ 39] [ 2] [00] +18:07:02 [ 41] [ 8] [03016003] +18:07:02 [ 49] [ 3] [418] +18:07:02 [ 54] [ 40] [0001418C0002400728980002418C000240072898] +18:07:02 ============================================================================ +18:07:02 Calculate Source COMM Id = 4 +18:07:02 ============================================================================ +18:07:02 + + +waiting on router queue for slot.... +18:07:09 ============================================================================ +18:07:09 Slot Id : <306> +18:07:09 Transaction Type : REQUEST +18:07:09 Received From : +18:07:09 ============================================================================ +18:07:09 FNo. Len. Field Value +18:07:09 ============================================================================ +18:07:09 [ 1] [ 4] [0800] +18:07:09 [ 7] [ 10] [0320110615] +18:07:09 [ 11] [ 6] [157628] +18:07:09 [ 70] [ 3] [301] +18:07:09 ============================================================================ +18:07:09 + + +waiting on router queue for slot.... +18:07:09 Sending to : +18:07:09 ============================================================================ +18:07:09 ============================================================================ +18:07:09 Slot Id : <306> +18:07:09 Transaction Type : RESPONSE +18:07:09 Received From : +18:07:09 ============================================================================ +18:07:09 FNo. Len. Field Value +18:07:09 ============================================================================ +18:07:09 [ 1] [ 4] [0810] +18:07:09 [ 7] [ 10] [0320110615] +18:07:09 [ 11] [ 6] [157628] +18:07:09 [ 39] [ 2] [00] +18:07:09 [ 70] [ 3] [301] +18:07:09 ============================================================================ +18:07:09 Calculate Source COMM Id = 2 +18:07:09 ============================================================================ +18:07:09 + + +waiting on router queue for slot.... +18:07:21 ============================================================================ +18:07:21 Slot Id : <311> +18:07:21 Transaction Type : REQUEST +18:07:21 Received From : +18:07:21 ============================================================================ +18:07:21 FNo. Len. Field Value +18:07:21 ============================================================================ +18:07:21 [ 1] [ 4] [0800] +18:07:21 [ 7] [ 10] [0320110628] +18:07:21 [ 11] [ 6] [157629] +18:07:21 [ 70] [ 3] [301] +18:07:21 ============================================================================ +18:07:21 + + +waiting on router queue for slot.... +18:07:21 Sending to : +18:07:21 ============================================================================ +18:07:21 ============================================================================ +18:07:21 Slot Id : <311> +18:07:21 Transaction Type : RESPONSE +18:07:21 Received From : +18:07:21 ============================================================================ +18:07:21 FNo. Len. Field Value +18:07:21 ============================================================================ +18:07:21 [ 1] [ 4] [0810] +18:07:21 [ 7] [ 10] [0320110628] +18:07:21 [ 11] [ 6] [157629] +18:07:21 [ 39] [ 2] [00] +18:07:21 [ 70] [ 3] [301] +18:07:21 ============================================================================ +18:07:21 Calculate Source COMM Id = 2 +18:07:21 ============================================================================ +18:07:21 + + +waiting on router queue for slot.... +18:07:26 ============================================================================ +18:07:26 Slot Id : <312> +18:07:26 Transaction Type : REQUEST +18:07:26 Received From : +18:07:26 ============================================================================ +18:07:26 FNo. Len. Field Value +18:07:26 ============================================================================ +18:07:26 [ 1] [ 4] [0200] +18:07:26 [ 2] [ 16] [6213542000018995] +18:07:26 [ 3] [ 6] [010000] +18:07:26 [ 4] [ 12] [000030000000] +18:07:26 [ 7] [ 10] [0320180516] +18:07:26 [ 11] [ 6] [954345] +18:07:26 [ 12] [ 6] [180516] +18:07:26 [ 13] [ 4] [0320] +18:07:26 [ 15] [ 4] [0320] +18:07:26 [ 18] [ 4] [6011] +18:07:26 [ 19] [ 3] [418] +18:07:26 [ 22] [ 3] [021] +18:07:26 [ 25] [ 2] [01] +18:07:26 [ 28] [ 9] [D00002000] +18:07:26 [ 32] [ 6] [668899] +18:07:26 [ 35] [ 32] [6213542000018995=491212011899227] +18:07:26 [ 37] [ 12] [507902363010] +18:07:26 [ 41] [ 8] [03016003] +18:07:26 [ 42] [ 15] [APT ] +18:07:26 [ 43] [ 40] [ TADLOR LAONGARM LAO] +18:07:26 [ 49] [ 3] [418] +18:07:26 [ 52] [ 16] [0ECFBAE104D44A81] +18:07:26 ============================================================================ +18:07:26 + + +waiting on router queue for slot.... +18:07:26 Sending to : +18:07:26 ============================================================================ +18:07:26 Sending to : +18:07:26 ============================================================================ +18:07:26 ============================================================================ +18:07:26 Slot Id : <312> +18:07:26 Transaction Type : REQUEST +18:07:26 Received From : +18:07:26 ============================================================================ +18:07:26 FNo. Len. Field Value +18:07:26 ============================================================================ +18:07:26 [ 1] [ 4] [0200] +18:07:26 [ 2] [ 16] [6213542000018995] +18:07:26 [ 3] [ 6] [010000] +18:07:26 [ 4] [ 12] [000030000000] +18:07:26 [ 7] [ 10] [0320180516] +18:07:26 [ 11] [ 6] [954345] +18:07:26 [ 12] [ 6] [180516] +18:07:26 [ 13] [ 4] [0320] +18:07:26 [ 15] [ 4] [0320] +18:07:26 [ 18] [ 4] [6011] +18:07:26 [ 19] [ 3] [418] +18:07:26 [ 22] [ 3] [021] +18:07:26 [ 25] [ 2] [01] +18:07:26 [ 28] [ 9] [D00002000] +18:07:26 [ 32] [ 6] [668899] +18:07:26 [ 35] [ 32] [6213542000018995=491212011899227] +18:07:26 [ 37] [ 12] [507902363010] +18:07:26 [ 41] [ 8] [03016003] +18:07:26 [ 42] [ 15] [APT ] +18:07:26 [ 43] [ 40] [ TADLOR LAONGARM LAO] +18:07:26 [ 49] [ 3] [418] +18:07:26 [ 52] [ 16] [0ECFBAE104D44A81] +18:07:26 ============================================================================ +18:07:26 + + +waiting on router queue for slot.... +18:07:26 Sending to : +18:07:26 ============================================================================ +18:07:26 ============================================================================ +18:07:26 Slot Id : <312> +18:07:26 Transaction Type : REQUEST +18:07:26 Received From : +18:07:26 ============================================================================ +18:07:26 FNo. Len. Field Value +18:07:26 ============================================================================ +18:07:26 [ 1] [ 4] [0200] +18:07:26 [ 2] [ 16] [6213542000018995] +18:07:26 [ 3] [ 6] [010000] +18:07:26 [ 4] [ 12] [000030000000] +18:07:26 [ 7] [ 10] [0320180516] +18:07:26 [ 11] [ 6] [954345] +18:07:26 [ 12] [ 6] [180516] +18:07:26 [ 13] [ 4] [0320] +18:07:26 [ 15] [ 4] [0320] +18:07:26 [ 18] [ 4] [6011] +18:07:26 [ 19] [ 3] [418] +18:07:26 [ 22] [ 3] [021] +18:07:26 [ 25] [ 2] [01] +18:07:26 [ 28] [ 9] [D00002000] +18:07:26 [ 32] [ 6] [668899] +18:07:26 [ 35] [ 32] [6213542000018995=491212011899227] +18:07:26 [ 37] [ 12] [507902363010] +18:07:26 [ 41] [ 8] [03016003] +18:07:26 [ 42] [ 15] [APT ] +18:07:26 [ 43] [ 40] [ TADLOR LAONGARM LAO] +18:07:26 [ 49] [ 3] [418] +18:07:26 [ 52] [ 16] [717C9102994A905F] +18:07:26 ============================================================================ +18:07:26 + + +waiting on router queue for slot.... +18:07:26 Sending to : <0> +18:07:26 ============================================================================ +18:07:27 ============================================================================ +18:07:27 Slot Id : <316> +18:07:27 Transaction Type : REQUEST +18:07:27 Received From : +18:07:27 ============================================================================ +18:07:27 FNo. Len. Field Value +18:07:27 ============================================================================ +18:07:27 [ 1] [ 4] [0200] +18:07:27 [ 2] [ 16] [6688990030002453] +18:07:27 [ 3] [ 6] [010000] +18:07:27 [ 4] [ 12] [000060000000] +18:07:27 [ 7] [ 10] [0320180722] +18:07:27 [ 11] [ 6] [824052] +18:07:27 [ 12] [ 6] [180722] +18:07:27 [ 13] [ 4] [0320] +18:07:27 [ 15] [ 4] [0320] +18:07:27 [ 18] [ 4] [6011] +18:07:27 [ 22] [ 3] [900] +18:07:27 [ 25] [ 2] [02] +18:07:27 [ 28] [ 9] [D00002000] +18:07:27 [ 32] [ 6] [621354] +18:07:27 [ 35] [ 37] [6688990030002453=97101261317871700000] +18:07:27 [ 37] [ 12] [507904635974] +18:07:27 [ 41] [ 8] [17000800] +18:07:27 [ 42] [ 15] [NATIVE ] +18:07:27 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:07:27 [ 49] [ 3] [418] +18:07:27 [ 52] [ 16] [DF2C69E2A92DF22F] +18:07:27 ============================================================================ +18:07:27 + + +waiting on router queue for slot.... +18:07:27 Sending to : +18:07:27 ============================================================================ +18:07:27 Sending to : +18:07:27 ============================================================================ +18:07:27 ============================================================================ +18:07:27 Slot Id : <312> +18:07:27 Transaction Type : RESPONSE +18:07:27 Received From : +18:07:27 ============================================================================ +18:07:27 FNo. Len. Field Value +18:07:27 ============================================================================ +18:07:27 [ 1] [ 4] [0210] +18:07:27 [ 2] [ 16] [6213542000018995] +18:07:27 [ 3] [ 6] [010000] +18:07:27 [ 4] [ 12] [000030000000] +18:07:27 [ 7] [ 10] [0320180516] +18:07:27 [ 11] [ 6] [954345] +18:07:27 [ 12] [ 6] [180516] +18:07:27 [ 13] [ 4] [0320] +18:07:27 [ 15] [ 4] [0320] +18:07:27 [ 18] [ 4] [6011] +18:07:27 [ 19] [ 3] [418] +18:07:27 [ 32] [ 6] [668899] +18:07:27 [ 35] [ 32] [6213542000018995=491212011899227] +18:07:27 [ 37] [ 12] [507902363010] +18:07:27 [ 38] [ 6] [696892] +18:07:27 [ 39] [ 2] [00] +18:07:27 [ 41] [ 8] [03016003] +18:07:27 [ 49] [ 3] [418] +18:07:27 [ 54] [ 40] [0001418C0002098728980002418C000209872898] +18:07:27 ============================================================================ +18:07:27 Sending to : +18:07:27 ============================================================================ +18:07:27 + + +waiting on router queue for slot.... +18:07:27 ============================================================================ +18:07:27 Slot Id : <316> +18:07:27 Transaction Type : REQUEST +18:07:27 Received From : +18:07:27 ============================================================================ +18:07:27 FNo. Len. Field Value +18:07:27 ============================================================================ +18:07:27 [ 1] [ 4] [0200] +18:07:27 [ 2] [ 16] [6688990030002453] +18:07:27 [ 3] [ 6] [010000] +18:07:27 [ 4] [ 12] [000060000000] +18:07:27 [ 7] [ 10] [0320180722] +18:07:27 [ 11] [ 6] [824052] +18:07:27 [ 12] [ 6] [180722] +18:07:27 [ 13] [ 4] [0320] +18:07:27 [ 15] [ 4] [0320] +18:07:27 [ 18] [ 4] [6011] +18:07:27 [ 22] [ 3] [900] +18:07:27 [ 25] [ 2] [02] +18:07:27 [ 28] [ 9] [D00002000] +18:07:27 [ 32] [ 6] [621354] +18:07:27 [ 35] [ 37] [6688990030002453=97101261317871700000] +18:07:27 [ 37] [ 12] [507904635974] +18:07:27 [ 41] [ 8] [17000800] +18:07:27 [ 42] [ 15] [NATIVE ] +18:07:27 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:07:27 [ 49] [ 3] [418] +18:07:27 [ 52] [ 16] [DF2C69E2A92DF22F] +18:07:27 ============================================================================ +18:07:27 + + +waiting on router queue for slot.... +18:07:27 Sending to : +18:07:27 ============================================================================ +18:07:27 ============================================================================ +18:07:27 Slot Id : <316> +18:07:27 Transaction Type : REQUEST +18:07:27 Received From : +18:07:27 ============================================================================ +18:07:27 FNo. Len. Field Value +18:07:27 ============================================================================ +18:07:27 [ 1] [ 4] [0200] +18:07:27 [ 2] [ 16] [6688990030002453] +18:07:27 [ 3] [ 6] [010000] +18:07:27 [ 4] [ 12] [000060000000] +18:07:27 [ 7] [ 10] [0320180722] +18:07:27 [ 11] [ 6] [824052] +18:07:27 [ 12] [ 6] [180722] +18:07:27 [ 13] [ 4] [0320] +18:07:27 [ 15] [ 4] [0320] +18:07:27 [ 18] [ 4] [6011] +18:07:27 [ 22] [ 3] [900] +18:07:27 [ 25] [ 2] [02] +18:07:27 [ 28] [ 9] [D00002000] +18:07:27 [ 32] [ 6] [621354] +18:07:27 [ 35] [ 37] [6688990030002453=97101261317871700000] +18:07:27 [ 37] [ 12] [507904635974] +18:07:27 [ 41] [ 8] [17000800] +18:07:27 [ 42] [ 15] [NATIVE ] +18:07:27 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:07:27 [ 49] [ 3] [418] +18:07:27 [ 52] [ 16] [FECA285CD65E905C] +18:07:27 ============================================================================ +18:07:27 + + +waiting on router queue for slot.... +18:07:27 Sending to : <4> +18:07:27 ============================================================================ +18:07:28 ============================================================================ +18:07:28 Slot Id : <312> +18:07:28 Transaction Type : RESPONSE +18:07:28 Received From : +18:07:28 ============================================================================ +18:07:28 FNo. Len. Field Value +18:07:28 ============================================================================ +18:07:28 [ 1] [ 4] [0210] +18:07:28 [ 2] [ 16] [6213542000018995] +18:07:28 [ 3] [ 6] [010000] +18:07:28 [ 4] [ 12] [000030000000] +18:07:28 [ 7] [ 10] [0320180516] +18:07:28 [ 11] [ 6] [954345] +18:07:28 [ 12] [ 6] [180516] +18:07:28 [ 13] [ 4] [0320] +18:07:28 [ 15] [ 4] [0320] +18:07:28 [ 18] [ 4] [6011] +18:07:28 [ 19] [ 3] [418] +18:07:28 [ 32] [ 6] [668899] +18:07:28 [ 35] [ 32] [6213542000018995=491212011899227] +18:07:28 [ 37] [ 12] [507902363010] +18:07:28 [ 38] [ 6] [696892] +18:07:28 [ 39] [ 2] [00] +18:07:28 [ 41] [ 8] [03016003] +18:07:28 [ 49] [ 3] [418] +18:07:28 [ 54] [ 40] [0001418C0002098728980002418C000209872898] +18:07:28 ============================================================================ +18:07:28 Calculate Source COMM Id = 4 +18:07:28 ============================================================================ +18:07:28 + + +waiting on router queue for slot.... +18:07:28 ============================================================================ +18:07:28 Slot Id : <316> +18:07:28 Transaction Type : RESPONSE +18:07:28 Received From : +18:07:28 ============================================================================ +18:07:28 FNo. Len. Field Value +18:07:28 ============================================================================ +18:07:28 [ 1] [ 4] [0210] +18:07:28 [ 2] [ 16] [6688990030002453] +18:07:28 [ 3] [ 6] [010000] +18:07:28 [ 4] [ 12] [000060000000] +18:07:28 [ 11] [ 6] [824052] +18:07:28 [ 12] [ 6] [180722] +18:07:28 [ 15] [ 4] [0320] +18:07:28 [ 18] [ 4] [6011] +18:07:28 [ 32] [ 6] [621354] +18:07:28 [ 35] [ 37] [6688990030002453=97101261317871700000] +18:07:28 [ 37] [ 12] [507904635974] +18:07:28 [ 38] [ 6] [410210] +18:07:28 [ 39] [ 2] [00] +18:07:28 [ 41] [ 8] [17000800] +18:07:28 [ 49] [ 3] [418] +18:07:28 [ 54] [ 20] [0002418C000069678715] +18:07:28 ============================================================================ +18:07:28 Sending to : +18:07:28 ============================================================================ +18:07:28 + + +waiting on router queue for slot.... +18:07:30 ============================================================================ +18:07:30 Slot Id : <316> +18:07:30 Transaction Type : RESPONSE +18:07:30 Received From : +18:07:30 ============================================================================ +18:07:30 FNo. Len. Field Value +18:07:30 ============================================================================ +18:07:30 [ 1] [ 4] [0210] +18:07:30 [ 2] [ 16] [6688990030002453] +18:07:30 [ 3] [ 6] [010000] +18:07:30 [ 4] [ 12] [000060000000] +18:07:30 [ 11] [ 6] [824052] +18:07:30 [ 12] [ 6] [180722] +18:07:30 [ 15] [ 4] [0320] +18:07:30 [ 18] [ 4] [6011] +18:07:30 [ 32] [ 6] [621354] +18:07:30 [ 35] [ 37] [6688990030002453=97101261317871700000] +18:07:30 [ 37] [ 12] [507904635974] +18:07:30 [ 38] [ 6] [410210] +18:07:30 [ 39] [ 2] [00] +18:07:30 [ 41] [ 8] [17000800] +18:07:30 [ 49] [ 3] [418] +18:07:30 [ 54] [ 20] [0002418C000069678715] +18:07:30 ============================================================================ +18:07:30 Calculate Source COMM Id = 0 +18:07:30 ============================================================================ +18:07:30 + + +waiting on router queue for slot.... +18:07:32 ============================================================================ +18:07:32 Slot Id : <307> +18:07:32 Transaction Type : REQUEST +18:07:32 Received From : +18:07:32 ============================================================================ +18:07:32 FNo. Len. Field Value +18:07:32 ============================================================================ +18:07:32 [ 1] [ 4] [0800] +18:07:32 [ 7] [ 10] [0320110638] +18:07:32 [ 11] [ 6] [157630] +18:07:32 [ 70] [ 3] [301] +18:07:32 ============================================================================ +18:07:32 + + +waiting on router queue for slot.... +18:07:32 Sending to : +18:07:32 ============================================================================ +18:07:32 ============================================================================ +18:07:32 Slot Id : <307> +18:07:32 Transaction Type : RESPONSE +18:07:32 Received From : +18:07:32 ============================================================================ +18:07:32 FNo. Len. Field Value +18:07:32 ============================================================================ +18:07:32 [ 1] [ 4] [0810] +18:07:32 [ 7] [ 10] [0320110638] +18:07:32 [ 11] [ 6] [157630] +18:07:32 [ 39] [ 2] [00] +18:07:32 [ 70] [ 3] [301] +18:07:32 ============================================================================ +18:07:32 Calculate Source COMM Id = 2 +18:07:32 ============================================================================ +18:07:32 + + +waiting on router queue for slot.... +18:07:36 ============================================================================ +18:07:36 Slot Id : <310> +18:07:36 Transaction Type : REQUEST +18:07:36 Received From : +18:07:36 ============================================================================ +18:07:36 FNo. Len. Field Value +18:07:36 ============================================================================ +18:07:36 [ 1] [ 4] [0200] +18:07:36 [ 2] [ 16] [2206990000035642] +18:07:36 [ 3] [ 6] [301000] +18:07:36 [ 4] [ 12] [000000000000] +18:07:36 [ 7] [ 10] [0320180731] +18:07:36 [ 11] [ 6] [824076] +18:07:36 [ 12] [ 6] [180731] +18:07:36 [ 13] [ 4] [0320] +18:07:36 [ 15] [ 4] [0320] +18:07:36 [ 18] [ 4] [6011] +18:07:36 [ 22] [ 3] [900] +18:07:36 [ 25] [ 2] [02] +18:07:36 [ 28] [ 9] [D00000000] +18:07:36 [ 32] [ 6] [621354] +18:07:36 [ 35] [ 32] [2206990000035642=961212615910384] +18:07:36 [ 37] [ 12] [507902606438] +18:07:36 [ 41] [ 8] [05004300] +18:07:36 [ 42] [ 15] [NATIVE ] +18:07:36 [ 43] [ 40] [Ka deng office LuangprabangLAO] +18:07:36 [ 49] [ 3] [418] +18:07:36 [ 52] [ 16] [75542DFD82E111FA] +18:07:36 ============================================================================ +18:07:36 + + +waiting on router queue for slot.... +18:07:36 Sending to : +18:07:36 ============================================================================ +18:07:36 Sending to : +18:07:36 ============================================================================ +18:07:37 ============================================================================ +18:07:37 Slot Id : <310> +18:07:37 Transaction Type : REQUEST +18:07:37 Received From : +18:07:37 ============================================================================ +18:07:37 FNo. Len. Field Value +18:07:37 ============================================================================ +18:07:37 [ 1] [ 4] [0200] +18:07:37 [ 2] [ 16] [2206990000035642] +18:07:37 [ 3] [ 6] [301000] +18:07:37 [ 4] [ 12] [000000000000] +18:07:37 [ 7] [ 10] [0320180731] +18:07:37 [ 11] [ 6] [824076] +18:07:37 [ 12] [ 6] [180731] +18:07:37 [ 13] [ 4] [0320] +18:07:37 [ 15] [ 4] [0320] +18:07:37 [ 18] [ 4] [6011] +18:07:37 [ 22] [ 3] [900] +18:07:37 [ 25] [ 2] [02] +18:07:37 [ 28] [ 9] [D00000000] +18:07:37 [ 32] [ 6] [621354] +18:07:37 [ 35] [ 32] [2206990000035642=961212615910384] +18:07:37 [ 37] [ 12] [507902606438] +18:07:37 [ 41] [ 8] [05004300] +18:07:37 [ 42] [ 15] [NATIVE ] +18:07:37 [ 43] [ 40] [Ka deng office LuangprabangLAO] +18:07:37 [ 49] [ 3] [418] +18:07:37 [ 52] [ 16] [75542DFD82E111FA] +18:07:37 ============================================================================ +18:07:37 + + +waiting on router queue for slot.... +18:07:37 Sending to : +18:07:37 ============================================================================ +18:07:37 ============================================================================ +18:07:37 Slot Id : <310> +18:07:37 Transaction Type : REQUEST +18:07:37 Received From : +18:07:37 ============================================================================ +18:07:37 FNo. Len. Field Value +18:07:37 ============================================================================ +18:07:37 [ 1] [ 4] [0200] +18:07:37 [ 2] [ 16] [2206990000035642] +18:07:37 [ 3] [ 6] [301000] +18:07:37 [ 4] [ 12] [000000000000] +18:07:37 [ 7] [ 10] [0320180731] +18:07:37 [ 11] [ 6] [824076] +18:07:37 [ 12] [ 6] [180731] +18:07:37 [ 13] [ 4] [0320] +18:07:37 [ 15] [ 4] [0320] +18:07:37 [ 18] [ 4] [6011] +18:07:37 [ 22] [ 3] [900] +18:07:37 [ 25] [ 2] [02] +18:07:37 [ 28] [ 9] [D00000000] +18:07:37 [ 32] [ 6] [621354] +18:07:37 [ 35] [ 32] [2206990000035642=961212615910384] +18:07:37 [ 37] [ 12] [507902606438] +18:07:37 [ 41] [ 8] [05004300] +18:07:37 [ 42] [ 15] [NATIVE ] +18:07:37 [ 43] [ 40] [Ka deng office LuangprabangLAO] +18:07:37 [ 49] [ 3] [418] +18:07:37 [ 52] [ 16] [2AC6E7D85A69A168] +18:07:37 ============================================================================ +18:07:37 + + +waiting on router queue for slot.... +18:07:37 Sending to : <1> +18:07:37 ============================================================================ +18:07:38 ============================================================================ +18:07:38 Slot Id : <288> +18:07:38 Transaction Type : REQUEST +18:07:38 Received From : +18:07:38 ============================================================================ +18:07:38 FNo. Len. Field Value +18:07:38 ============================================================================ +18:07:38 [ 1] [ 4] [0800] +18:07:38 [ 7] [ 10] [0321011926] +18:07:38 [ 11] [ 6] [181926] +18:07:38 [ 37] [ 12] [57918181926] +18:07:38 [ 70] [ 3] [301] +18:07:38 ============================================================================ +18:07:38 + + +waiting on router queue for slot.... +18:07:38 Sending to : +18:07:38 ============================================================================ +18:07:38 ============================================================================ +18:07:38 Slot Id : <288> +18:07:38 Transaction Type : RESPONSE +18:07:38 Received From : +18:07:38 ============================================================================ +18:07:38 FNo. Len. Field Value +18:07:38 ============================================================================ +18:07:38 [ 1] [ 4] [0810] +18:07:38 [ 7] [ 10] [0321011926] +18:07:38 [ 11] [ 6] [181926] +18:07:38 [ 37] [ 12] [579181819260] +18:07:38 [ 39] [ 2] [00] +18:07:38 [ 70] [ 3] [810] +18:07:38 ============================================================================ +18:07:38 Calculate Source COMM Id = 6 +18:07:38 ============================================================================ +18:07:38 + + +waiting on router queue for slot.... +18:07:38 ============================================================================ +18:07:38 Slot Id : <310> +18:07:38 Transaction Type : RESPONSE +18:07:38 Received From : +18:07:38 ============================================================================ +18:07:38 FNo. Len. Field Value +18:07:38 ============================================================================ +18:07:38 [ 1] [ 4] [0210] +18:07:38 [ 2] [ 16] [2206990000035642] +18:07:38 [ 3] [ 6] [301000] +18:07:38 [ 4] [ 12] [000000000000] +18:07:38 [ 7] [ 10] [0320180731] +18:07:38 [ 11] [ 6] [824076] +18:07:38 [ 12] [ 6] [180731] +18:07:38 [ 13] [ 4] [0320] +18:07:38 [ 15] [ 4] [0320] +18:07:38 [ 18] [ 4] [6011] +18:07:38 [ 32] [ 6] [621354] +18:07:38 [ 35] [ 32] [2206990000035642=961212615910384] +18:07:38 [ 37] [ 12] [507902606438] +18:07:38 [ 38] [ 6] [183758] +18:07:38 [ 39] [ 2] [00] +18:07:38 [ 41] [ 8] [05004300] +18:07:38 [ 49] [ 3] [418] +18:07:38 [ 54] [ 40] [1001418C0000336634001002418C000033663400] +18:07:38 ============================================================================ +18:07:38 Sending to : +18:07:38 ============================================================================ +18:07:38 + + +waiting on router queue for slot.... +18:07:39 ============================================================================ +18:07:39 Slot Id : <317> +18:07:39 Transaction Type : REQUEST +18:07:39 Received From : +18:07:39 ============================================================================ +18:07:39 FNo. Len. Field Value +18:07:39 ============================================================================ +18:07:39 [ 1] [ 4] [0200] +18:07:39 [ 2] [ 16] [6688990602492702] +18:07:39 [ 3] [ 6] [011000] +18:07:39 [ 4] [ 12] [000010000000] +18:07:39 [ 7] [ 10] [0320180734] +18:07:39 [ 11] [ 6] [824088] +18:07:39 [ 12] [ 6] [180734] +18:07:39 [ 13] [ 4] [0320] +18:07:39 [ 15] [ 4] [0320] +18:07:39 [ 18] [ 4] [6011] +18:07:39 [ 22] [ 3] [900] +18:07:39 [ 25] [ 2] [02] +18:07:39 [ 28] [ 9] [D00002000] +18:07:39 [ 32] [ 6] [621354] +18:07:39 [ 35] [ 37] [6688990602492702=43060061270257300000] +18:07:39 [ 37] [ 12] [507902497532] +18:07:39 [ 41] [ 8] [05003200] +18:07:39 [ 42] [ 15] [NATIVE ] +18:07:39 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +18:07:39 [ 49] [ 3] [418] +18:07:39 [ 52] [ 16] [B883B71B8DFEF790] +18:07:39 ============================================================================ +18:07:39 + + +waiting on router queue for slot.... +18:07:39 Sending to : +18:07:39 ============================================================================ +18:07:39 Sending to : +18:07:39 ============================================================================ +18:07:39 ============================================================================ +18:07:39 Slot Id : <317> +18:07:39 Transaction Type : REQUEST +18:07:39 Received From : +18:07:39 ============================================================================ +18:07:39 FNo. Len. Field Value +18:07:39 ============================================================================ +18:07:39 [ 1] [ 4] [0200] +18:07:39 [ 2] [ 16] [6688990602492702] +18:07:39 [ 3] [ 6] [011000] +18:07:39 [ 4] [ 12] [000010000000] +18:07:39 [ 7] [ 10] [0320180734] +18:07:39 [ 11] [ 6] [824088] +18:07:39 [ 12] [ 6] [180734] +18:07:39 [ 13] [ 4] [0320] +18:07:39 [ 15] [ 4] [0320] +18:07:39 [ 18] [ 4] [6011] +18:07:39 [ 22] [ 3] [900] +18:07:39 [ 25] [ 2] [02] +18:07:39 [ 28] [ 9] [D00002000] +18:07:39 [ 32] [ 6] [621354] +18:07:39 [ 35] [ 37] [6688990602492702=43060061270257300000] +18:07:39 [ 37] [ 12] [507902497532] +18:07:39 [ 41] [ 8] [05003200] +18:07:39 [ 42] [ 15] [NATIVE ] +18:07:39 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +18:07:39 [ 49] [ 3] [418] +18:07:39 [ 52] [ 16] [B883B71B8DFEF790] +18:07:39 ============================================================================ +18:07:39 + + +waiting on router queue for slot.... +18:07:39 Sending to : +18:07:39 ============================================================================ +18:07:40 ============================================================================ +18:07:40 Slot Id : <317> +18:07:40 Transaction Type : REQUEST +18:07:40 Received From : +18:07:40 ============================================================================ +18:07:40 FNo. Len. Field Value +18:07:40 ============================================================================ +18:07:40 [ 1] [ 4] [0200] +18:07:40 [ 2] [ 16] [6688990602492702] +18:07:40 [ 3] [ 6] [011000] +18:07:40 [ 4] [ 12] [000010000000] +18:07:40 [ 7] [ 10] [0320180734] +18:07:40 [ 11] [ 6] [824088] +18:07:40 [ 12] [ 6] [180734] +18:07:40 [ 13] [ 4] [0320] +18:07:40 [ 15] [ 4] [0320] +18:07:40 [ 18] [ 4] [6011] +18:07:40 [ 22] [ 3] [900] +18:07:40 [ 25] [ 2] [02] +18:07:40 [ 28] [ 9] [D00002000] +18:07:40 [ 32] [ 6] [621354] +18:07:40 [ 35] [ 37] [6688990602492702=43060061270257300000] +18:07:40 [ 37] [ 12] [507902497532] +18:07:40 [ 41] [ 8] [05003200] +18:07:40 [ 42] [ 15] [NATIVE ] +18:07:40 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +18:07:40 [ 49] [ 3] [418] +18:07:40 [ 52] [ 16] [5F567E8A48CFC4F2] +18:07:40 ============================================================================ +18:07:40 + + +waiting on router queue for slot.... +18:07:40 Sending to : <4> +18:07:40 ============================================================================ +18:07:40 ============================================================================ +18:07:40 Slot Id : <310> +18:07:40 Transaction Type : RESPONSE +18:07:40 Received From : +18:07:40 ============================================================================ +18:07:40 FNo. Len. Field Value +18:07:40 ============================================================================ +18:07:40 [ 1] [ 4] [0210] +18:07:40 [ 2] [ 16] [2206990000035642] +18:07:40 [ 3] [ 6] [301000] +18:07:40 [ 4] [ 12] [000000000000] +18:07:40 [ 7] [ 10] [0320180731] +18:07:40 [ 11] [ 6] [824076] +18:07:40 [ 12] [ 6] [180731] +18:07:40 [ 13] [ 4] [0320] +18:07:40 [ 15] [ 4] [0320] +18:07:40 [ 18] [ 4] [6011] +18:07:40 [ 32] [ 6] [621354] +18:07:40 [ 35] [ 32] [2206990000035642=961212615910384] +18:07:40 [ 37] [ 12] [507902606438] +18:07:40 [ 38] [ 6] [183758] +18:07:40 [ 39] [ 2] [00] +18:07:40 [ 41] [ 8] [05004300] +18:07:40 [ 49] [ 3] [418] +18:07:40 [ 54] [ 40] [1001418C0000336634001002418C000033663400] +18:07:40 ============================================================================ +18:07:40 Calculate Source COMM Id = 0 +18:07:40 ============================================================================ +18:07:40 + + +waiting on router queue for slot.... +18:07:41 ============================================================================ +18:07:41 Slot Id : <317> +18:07:41 Transaction Type : RESPONSE +18:07:41 Received From : +18:07:41 ============================================================================ +18:07:41 FNo. Len. Field Value +18:07:41 ============================================================================ +18:07:41 [ 1] [ 4] [0210] +18:07:41 [ 2] [ 16] [6688990602492702] +18:07:41 [ 3] [ 6] [011000] +18:07:41 [ 4] [ 12] [000010000000] +18:07:41 [ 11] [ 6] [824088] +18:07:41 [ 12] [ 6] [180734] +18:07:41 [ 15] [ 4] [0320] +18:07:41 [ 18] [ 4] [6011] +18:07:41 [ 32] [ 6] [621354] +18:07:41 [ 35] [ 37] [6688990602492702=43060061270257300000] +18:07:41 [ 37] [ 12] [507902497532] +18:07:41 [ 38] [ 6] [644792] +18:07:41 [ 39] [ 2] [00] +18:07:41 [ 41] [ 8] [05003200] +18:07:41 [ 49] [ 3] [418] +18:07:41 [ 54] [ 20] [1002418C000022535605] +18:07:41 ============================================================================ +18:07:41 Sending to : +18:07:41 ============================================================================ +18:07:41 + + +waiting on router queue for slot.... +18:07:42 ============================================================================ +18:07:42 Slot Id : <317> +18:07:42 Transaction Type : RESPONSE +18:07:42 Received From : +18:07:42 ============================================================================ +18:07:42 FNo. Len. Field Value +18:07:42 ============================================================================ +18:07:42 [ 1] [ 4] [0210] +18:07:42 [ 2] [ 16] [6688990602492702] +18:07:42 [ 3] [ 6] [011000] +18:07:42 [ 4] [ 12] [000010000000] +18:07:42 [ 11] [ 6] [824088] +18:07:42 [ 12] [ 6] [180734] +18:07:42 [ 15] [ 4] [0320] +18:07:42 [ 18] [ 4] [6011] +18:07:42 [ 32] [ 6] [621354] +18:07:42 [ 35] [ 37] [6688990602492702=43060061270257300000] +18:07:42 [ 37] [ 12] [507902497532] +18:07:42 [ 38] [ 6] [644792] +18:07:42 [ 39] [ 2] [00] +18:07:42 [ 41] [ 8] [05003200] +18:07:42 [ 49] [ 3] [418] +18:07:42 [ 54] [ 20] [1002418C000022535605] +18:07:42 ============================================================================ +18:07:42 Calculate Source COMM Id = 0 +18:07:42 ============================================================================ +18:07:42 + + +waiting on router queue for slot.... +18:07:43 ============================================================================ +18:07:43 Slot Id : <318> +18:07:43 Transaction Type : REQUEST +18:07:43 Received From : +18:07:43 ============================================================================ +18:07:43 FNo. Len. Field Value +18:07:43 ============================================================================ +18:07:43 [ 1] [ 4] [0800] +18:07:43 [ 2] [ 5] [02531] +18:07:43 [ 3] [ 6] [579188] +18:07:43 [ 7] [ 10] [0320110743] +18:07:43 [ 11] [ 6] [807464] +18:07:43 [ 15] [ 10] [0320110743] +18:07:43 [ 37] [ 11] [57918807464] +18:07:43 [ 70] [ 3] [001] +18:07:43 ============================================================================ +18:07:43 + + +waiting on router queue for slot.... +18:07:43 ============================================================================ +18:07:43 Slot Id : <318> +18:07:43 Transaction Type : RESPONSE +18:07:43 Received From : +18:07:43 ============================================================================ +18:07:43 FNo. Len. Field Value +18:07:43 ============================================================================ +18:07:43 [ 1] [ 4] [0810] +18:07:43 [ 7] [ 10] [0320110743] +18:07:43 [ 11] [ 6] [807464] +18:07:43 [ 15] [ 4] [0320] +18:07:43 [ 37] [ 12] [57918807464] +18:07:43 [ 39] [ 2] [00] +18:07:43 [ 70] [ 3] [001] +18:07:43 ============================================================================ +18:07:43 Sending to : +18:07:43 ============================================================================ +18:07:43 + + +waiting on router queue for slot.... +18:07:47 ============================================================================ +18:07:47 Slot Id : <322> +18:07:47 Transaction Type : REQUEST +18:07:47 Received From : +18:07:47 ============================================================================ +18:07:47 FNo. Len. Field Value +18:07:47 ============================================================================ +18:07:47 [ 1] [ 4] [0200] +18:07:47 [ 2] [ 16] [6688990107119404] +18:07:47 [ 3] [ 6] [010000] +18:07:47 [ 4] [ 12] [000010000000] +18:07:47 [ 7] [ 10] [0320180742] +18:07:47 [ 11] [ 6] [824114] +18:07:47 [ 12] [ 6] [180742] +18:07:47 [ 13] [ 4] [0320] +18:07:47 [ 15] [ 4] [0320] +18:07:47 [ 18] [ 4] [6011] +18:07:47 [ 22] [ 3] [900] +18:07:47 [ 25] [ 2] [02] +18:07:47 [ 28] [ 9] [D00002000] +18:07:47 [ 32] [ 6] [621354] +18:07:47 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:07:47 [ 37] [ 12] [507905382537] +18:07:47 [ 41] [ 8] [12003400] +18:07:47 [ 42] [ 15] [NATIVE ] +18:07:47 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +18:07:47 [ 49] [ 3] [418] +18:07:47 [ 52] [ 16] [39F15A3C130A5D01] +18:07:47 ============================================================================ +18:07:47 + + +waiting on router queue for slot.... +18:07:47 Sending to : +18:07:47 ============================================================================ +18:07:47 Sending to : +18:07:47 ============================================================================ +18:07:48 ============================================================================ +18:07:48 Slot Id : <322> +18:07:48 Transaction Type : REQUEST +18:07:48 Received From : +18:07:48 ============================================================================ +18:07:48 FNo. Len. Field Value +18:07:48 ============================================================================ +18:07:48 [ 1] [ 4] [0200] +18:07:48 [ 2] [ 16] [6688990107119404] +18:07:48 [ 3] [ 6] [010000] +18:07:48 [ 4] [ 12] [000010000000] +18:07:48 [ 7] [ 10] [0320180742] +18:07:48 [ 11] [ 6] [824114] +18:07:48 [ 12] [ 6] [180742] +18:07:48 [ 13] [ 4] [0320] +18:07:48 [ 15] [ 4] [0320] +18:07:48 [ 18] [ 4] [6011] +18:07:48 [ 22] [ 3] [900] +18:07:48 [ 25] [ 2] [02] +18:07:48 [ 28] [ 9] [D00002000] +18:07:48 [ 32] [ 6] [621354] +18:07:48 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:07:48 [ 37] [ 12] [507905382537] +18:07:48 [ 41] [ 8] [12003400] +18:07:48 [ 42] [ 15] [NATIVE ] +18:07:48 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +18:07:48 [ 49] [ 3] [418] +18:07:48 [ 52] [ 16] [39F15A3C130A5D01] +18:07:48 ============================================================================ +18:07:48 + + +waiting on router queue for slot.... +18:07:48 Sending to : +18:07:48 ============================================================================ +18:07:48 ============================================================================ +18:07:48 Slot Id : <322> +18:07:48 Transaction Type : REQUEST +18:07:48 Received From : +18:07:48 ============================================================================ +18:07:48 FNo. Len. Field Value +18:07:48 ============================================================================ +18:07:48 [ 1] [ 4] [0200] +18:07:48 [ 2] [ 16] [6688990107119404] +18:07:48 [ 3] [ 6] [010000] +18:07:48 [ 4] [ 12] [000010000000] +18:07:48 [ 7] [ 10] [0320180742] +18:07:48 [ 11] [ 6] [824114] +18:07:48 [ 12] [ 6] [180742] +18:07:48 [ 13] [ 4] [0320] +18:07:48 [ 15] [ 4] [0320] +18:07:48 [ 18] [ 4] [6011] +18:07:48 [ 22] [ 3] [900] +18:07:48 [ 25] [ 2] [02] +18:07:48 [ 28] [ 9] [D00002000] +18:07:48 [ 32] [ 6] [621354] +18:07:48 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:07:48 [ 37] [ 12] [507905382537] +18:07:48 [ 41] [ 8] [12003400] +18:07:48 [ 42] [ 15] [NATIVE ] +18:07:48 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +18:07:48 [ 49] [ 3] [418] +18:07:48 [ 52] [ 16] [B8A1FC23F328AC1F] +18:07:48 ============================================================================ +18:07:48 + + +waiting on router queue for slot.... +18:07:48 Sending to : <4> +18:07:48 ============================================================================ +18:07:48 ============================================================================ +18:07:48 Slot Id : <325> +18:07:48 Transaction Type : REQUEST +18:07:48 Received From : +18:07:48 ============================================================================ +18:07:48 FNo. Len. Field Value +18:07:48 ============================================================================ +18:07:48 [ 1] [ 4] [0800] +18:07:48 [ 7] [ 10] [0320110655] +18:07:48 [ 11] [ 6] [157631] +18:07:48 [ 70] [ 3] [301] +18:07:48 ============================================================================ +18:07:48 + + +waiting on router queue for slot.... +18:07:48 Sending to : +18:07:48 ============================================================================ +18:07:48 ============================================================================ +18:07:48 Slot Id : <325> +18:07:48 Transaction Type : RESPONSE +18:07:48 Received From : +18:07:48 ============================================================================ +18:07:48 FNo. Len. Field Value +18:07:48 ============================================================================ +18:07:48 [ 1] [ 4] [0810] +18:07:48 [ 7] [ 10] [0320110655] +18:07:48 [ 11] [ 6] [157631] +18:07:48 [ 39] [ 2] [00] +18:07:48 [ 70] [ 3] [301] +18:07:48 ============================================================================ +18:07:48 Calculate Source COMM Id = 2 +18:07:48 ============================================================================ +18:07:48 + + +waiting on router queue for slot.... +18:07:49 ============================================================================ +18:07:49 Slot Id : <297> +18:07:49 Transaction Type : REQUEST +18:07:49 Received From : +18:07:49 ============================================================================ +18:07:49 FNo. Len. Field Value +18:07:49 ============================================================================ +18:07:49 [ 1] [ 4] [0200] +18:07:49 [ 2] [ 16] [6213545001002678] +18:07:49 [ 3] [ 6] [011000] +18:07:49 [ 4] [ 12] [000020000000] +18:07:49 [ 7] [ 10] [0320110653] +18:07:49 [ 11] [ 6] [271071] +18:07:49 [ 12] [ 6] [180653] +18:07:49 [ 13] [ 4] [0320] +18:07:49 [ 14] [ 4] [4912] +18:07:49 [ 15] [ 4] [0320] +18:07:49 [ 18] [ 4] [6011] +18:07:49 [ 19] [ 3] [418] +18:07:49 [ 22] [ 3] [021] +18:07:49 [ 25] [ 2] [01] +18:07:49 [ 28] [ 9] [D00002000] +18:07:49 [ 32] [ 6] [180893] +18:07:49 [ 35] [ 32] [6213545001002678=491212010267106] +18:07:49 [ 37] [ 12] [507911271071] +18:07:49 [ 41] [ 8] [0104NUOL] +18:07:49 [ 42] [ 15] [999999 ] +18:07:49 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +18:07:49 [ 49] [ 3] [418] +18:07:49 [ 52] [ 16] [A11BE453439F8EAD] +18:07:49 ============================================================================ +18:07:49 + + +waiting on router queue for slot.... +18:07:49 Sending to : +18:07:49 ============================================================================ +18:07:49 Sending to : +18:07:49 ============================================================================ +18:07:49 ============================================================================ +18:07:49 Slot Id : <322> +18:07:49 Transaction Type : RESPONSE +18:07:49 Received From : +18:07:49 ============================================================================ +18:07:49 FNo. Len. Field Value +18:07:49 ============================================================================ +18:07:49 [ 1] [ 4] [0210] +18:07:49 [ 2] [ 16] [6688990107119404] +18:07:49 [ 3] [ 6] [010000] +18:07:49 [ 4] [ 12] [000010000000] +18:07:49 [ 11] [ 6] [824114] +18:07:49 [ 12] [ 6] [180742] +18:07:49 [ 15] [ 4] [0320] +18:07:49 [ 18] [ 4] [6011] +18:07:49 [ 32] [ 6] [621354] +18:07:49 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:07:49 [ 37] [ 12] [507905382537] +18:07:49 [ 38] [ 6] [986861] +18:07:49 [ 39] [ 2] [00] +18:07:49 [ 41] [ 8] [12003400] +18:07:49 [ 49] [ 3] [418] +18:07:49 [ 54] [ 20] [0002418C000006734040] +18:07:49 ============================================================================ +18:07:49 Sending to : +18:07:49 ============================================================================ +18:07:49 + + +waiting on router queue for slot.... +18:07:49 ============================================================================ +18:07:49 Slot Id : <297> +18:07:49 Transaction Type : REQUEST +18:07:49 Received From : +18:07:49 ============================================================================ +18:07:49 FNo. Len. Field Value +18:07:49 ============================================================================ +18:07:49 [ 1] [ 4] [0200] +18:07:49 [ 2] [ 16] [6213545001002678] +18:07:49 [ 3] [ 6] [011000] +18:07:49 [ 4] [ 12] [000020000000] +18:07:49 [ 7] [ 10] [0320110653] +18:07:49 [ 11] [ 6] [271071] +18:07:49 [ 12] [ 6] [180653] +18:07:49 [ 13] [ 4] [0320] +18:07:49 [ 14] [ 4] [4912] +18:07:49 [ 15] [ 4] [0320] +18:07:49 [ 18] [ 4] [6011] +18:07:49 [ 19] [ 3] [418] +18:07:49 [ 22] [ 3] [021] +18:07:49 [ 25] [ 2] [01] +18:07:49 [ 28] [ 9] [D00002000] +18:07:49 [ 32] [ 6] [180893] +18:07:49 [ 35] [ 32] [6213545001002678=491212010267106] +18:07:49 [ 37] [ 12] [507911271071] +18:07:49 [ 41] [ 8] [0104NUOL] +18:07:49 [ 42] [ 15] [999999 ] +18:07:49 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +18:07:49 [ 49] [ 3] [418] +18:07:49 [ 52] [ 16] [A11BE453439F8EAD] +18:07:49 ============================================================================ +18:07:49 + + +waiting on router queue for slot.... +18:07:49 Sending to : +18:07:49 ============================================================================ +18:07:49 ============================================================================ +18:07:49 Slot Id : <297> +18:07:49 Transaction Type : REQUEST +18:07:49 Received From : +18:07:49 ============================================================================ +18:07:49 FNo. Len. Field Value +18:07:49 ============================================================================ +18:07:49 [ 1] [ 4] [0200] +18:07:49 [ 2] [ 16] [6213545001002678] +18:07:49 [ 3] [ 6] [011000] +18:07:49 [ 4] [ 12] [000020000000] +18:07:49 [ 7] [ 10] [0320110653] +18:07:49 [ 11] [ 6] [271071] +18:07:49 [ 12] [ 6] [180653] +18:07:49 [ 13] [ 4] [0320] +18:07:49 [ 14] [ 4] [4912] +18:07:49 [ 15] [ 4] [0320] +18:07:49 [ 18] [ 4] [6011] +18:07:49 [ 19] [ 3] [418] +18:07:49 [ 22] [ 3] [021] +18:07:49 [ 25] [ 2] [01] +18:07:49 [ 28] [ 9] [D00002000] +18:07:49 [ 32] [ 6] [180893] +18:07:49 [ 35] [ 32] [6213545001002678=491212010267106] +18:07:49 [ 37] [ 12] [507911271071] +18:07:49 [ 41] [ 8] [0104NUOL] +18:07:49 [ 42] [ 15] [999999 ] +18:07:49 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +18:07:49 [ 49] [ 3] [418] +18:07:49 [ 52] [ 16] [965667DDBB282675] +18:07:49 ============================================================================ +18:07:49 + + +waiting on router queue for slot.... +18:07:49 Sending to : <0> +18:07:49 ============================================================================ +18:07:50 ============================================================================ +18:07:50 Slot Id : <297> +18:07:50 Transaction Type : RESPONSE +18:07:50 Received From : +18:07:50 ============================================================================ +18:07:50 FNo. Len. Field Value +18:07:50 ============================================================================ +18:07:50 [ 1] [ 4] [0210] +18:07:50 [ 2] [ 16] [6213545001002678] +18:07:50 [ 3] [ 6] [011000] +18:07:50 [ 4] [ 12] [000020000000] +18:07:50 [ 7] [ 10] [0320110653] +18:07:50 [ 11] [ 6] [271071] +18:07:50 [ 12] [ 6] [180653] +18:07:50 [ 13] [ 4] [0320] +18:07:50 [ 15] [ 4] [0320] +18:07:50 [ 18] [ 4] [6011] +18:07:50 [ 19] [ 3] [418] +18:07:50 [ 32] [ 6] [180893] +18:07:50 [ 35] [ 32] [6213545001002678=491212010267106] +18:07:50 [ 37] [ 12] [507911271071] +18:07:50 [ 38] [ 6] [519140] +18:07:50 [ 39] [ 2] [00] +18:07:50 [ 41] [ 8] [0104NUOL] +18:07:50 [ 49] [ 3] [418] +18:07:50 [ 54] [ 40] [1001418C0001569417941002418C000156941794] +18:07:50 ============================================================================ +18:07:50 Sending to : +18:07:50 ============================================================================ +18:07:50 + + +waiting on router queue for slot.... +18:07:50 ============================================================================ +18:07:50 Slot Id : <315> +18:07:50 Transaction Type : REQUEST +18:07:50 Received From : +18:07:50 ============================================================================ +18:07:50 FNo. Len. Field Value +18:07:50 ============================================================================ +18:07:50 [ 1] [ 4] [0200] +18:07:50 [ 2] [ 16] [6213545000863054] +18:07:50 [ 3] [ 6] [010000] +18:07:50 [ 4] [ 12] [000010000000] +18:07:50 [ 7] [ 10] [0320181938] +18:07:50 [ 11] [ 6] [412662] +18:07:50 [ 12] [ 6] [181938] +18:07:50 [ 13] [ 4] [0320] +18:07:50 [ 14] [ 4] [1249] +18:07:50 [ 15] [ 4] [0320] +18:07:50 [ 18] [ 4] [6011] +18:07:50 [ 19] [ 3] [418] +18:07:50 [ 22] [ 3] [021] +18:07:50 [ 25] [ 2] [01] +18:07:50 [ 28] [ 9] [D00002000] +18:07:50 [ 32] [ 6] [123401] +18:07:50 [ 35] [ 32] [6213545000863054=491212016305263] +18:07:50 [ 37] [ 12] [507900354430] +18:07:50 [ 41] [ 8] [01002600] +18:07:50 [ 42] [ 15] [APT ] +18:07:50 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +18:07:50 [ 49] [ 3] [418] +18:07:50 [ 52] [ 16] [66E3648F66E8D9B9] +18:07:50 ============================================================================ +18:07:50 + + +waiting on router queue for slot.... +18:07:50 Sending to : +18:07:50 ============================================================================ +18:07:50 Sending to : +18:07:50 ============================================================================ +18:07:50 ============================================================================ +18:07:50 Slot Id : <315> +18:07:50 Transaction Type : REQUEST +18:07:50 Received From : +18:07:50 ============================================================================ +18:07:50 FNo. Len. Field Value +18:07:50 ============================================================================ +18:07:50 [ 1] [ 4] [0200] +18:07:50 [ 2] [ 16] [6213545000863054] +18:07:50 [ 3] [ 6] [010000] +18:07:50 [ 4] [ 12] [000010000000] +18:07:50 [ 7] [ 10] [0320181938] +18:07:50 [ 11] [ 6] [412662] +18:07:50 [ 12] [ 6] [181938] +18:07:50 [ 13] [ 4] [0320] +18:07:50 [ 14] [ 4] [1249] +18:07:50 [ 15] [ 4] [0320] +18:07:50 [ 18] [ 4] [6011] +18:07:50 [ 19] [ 3] [418] +18:07:50 [ 22] [ 3] [021] +18:07:50 [ 25] [ 2] [01] +18:07:50 [ 28] [ 9] [D00002000] +18:07:50 [ 32] [ 6] [123401] +18:07:50 [ 35] [ 32] [6213545000863054=491212016305263] +18:07:50 [ 37] [ 12] [507900354430] +18:07:50 [ 41] [ 8] [01002600] +18:07:50 [ 42] [ 15] [APT ] +18:07:50 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +18:07:50 [ 49] [ 3] [418] +18:07:50 [ 52] [ 16] [66E3648F66E8D9B9] +18:07:50 ============================================================================ +18:07:50 + + +waiting on router queue for slot.... +18:07:50 Sending to : +18:07:50 ============================================================================ +18:07:50 ============================================================================ +18:07:50 Slot Id : <315> +18:07:50 Transaction Type : REQUEST +18:07:50 Received From : +18:07:50 ============================================================================ +18:07:50 FNo. Len. Field Value +18:07:50 ============================================================================ +18:07:50 [ 1] [ 4] [0200] +18:07:50 [ 2] [ 16] [6213545000863054] +18:07:50 [ 3] [ 6] [010000] +18:07:50 [ 4] [ 12] [000010000000] +18:07:50 [ 7] [ 10] [0320181938] +18:07:50 [ 11] [ 6] [412662] +18:07:50 [ 12] [ 6] [181938] +18:07:50 [ 13] [ 4] [0320] +18:07:50 [ 14] [ 4] [1249] +18:07:50 [ 15] [ 4] [0320] +18:07:50 [ 18] [ 4] [6011] +18:07:50 [ 19] [ 3] [418] +18:07:50 [ 22] [ 3] [021] +18:07:50 [ 25] [ 2] [01] +18:07:50 [ 28] [ 9] [D00002000] +18:07:50 [ 32] [ 6] [123401] +18:07:50 [ 35] [ 32] [6213545000863054=491212016305263] +18:07:50 [ 37] [ 12] [507900354430] +18:07:50 [ 41] [ 8] [01002600] +18:07:50 [ 42] [ 15] [APT ] +18:07:50 [ 43] [ 40] [LAOS PHONTHONG LAOS LAO] +18:07:50 [ 49] [ 3] [418] +18:07:50 [ 52] [ 16] [594311C0847FB675] +18:07:50 ============================================================================ +18:07:50 + + +waiting on router queue for slot.... +18:07:50 Sending to : <0> +18:07:50 ============================================================================ +18:07:51 ============================================================================ +18:07:51 Slot Id : <315> +18:07:51 Transaction Type : RESPONSE +18:07:51 Received From : +18:07:51 ============================================================================ +18:07:51 FNo. Len. Field Value +18:07:51 ============================================================================ +18:07:51 [ 1] [ 4] [0210] +18:07:51 [ 2] [ 16] [6213545000863054] +18:07:51 [ 3] [ 6] [010000] +18:07:51 [ 4] [ 12] [000010000000] +18:07:51 [ 7] [ 10] [0320181938] +18:07:51 [ 11] [ 6] [412662] +18:07:51 [ 12] [ 6] [181938] +18:07:51 [ 13] [ 4] [0320] +18:07:51 [ 15] [ 4] [0320] +18:07:51 [ 18] [ 4] [6011] +18:07:51 [ 19] [ 3] [418] +18:07:51 [ 32] [ 6] [123401] +18:07:51 [ 35] [ 32] [6213545000863054=491212016305263] +18:07:51 [ 37] [ 12] [507900354430] +18:07:51 [ 38] [ 6] [592480] +18:07:51 [ 39] [ 2] [00] +18:07:51 [ 41] [ 8] [01002600] +18:07:51 [ 49] [ 3] [418] +18:07:51 [ 54] [ 40] [0001418C0000381972550002418C000038197255] +18:07:51 ============================================================================ +18:07:51 Sending to : +18:07:51 ============================================================================ +18:07:51 + + +waiting on router queue for slot.... +18:07:51 ============================================================================ +18:07:51 Slot Id : <322> +18:07:51 Transaction Type : RESPONSE +18:07:51 Received From : +18:07:51 ============================================================================ +18:07:51 FNo. Len. Field Value +18:07:51 ============================================================================ +18:07:51 [ 1] [ 4] [0210] +18:07:51 [ 2] [ 16] [6688990107119404] +18:07:51 [ 3] [ 6] [010000] +18:07:51 [ 4] [ 12] [000010000000] +18:07:51 [ 11] [ 6] [824114] +18:07:51 [ 12] [ 6] [180742] +18:07:51 [ 15] [ 4] [0320] +18:07:51 [ 18] [ 4] [6011] +18:07:51 [ 32] [ 6] [621354] +18:07:51 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:07:51 [ 37] [ 12] [507905382537] +18:07:51 [ 38] [ 6] [986861] +18:07:51 [ 39] [ 2] [00] +18:07:51 [ 41] [ 8] [12003400] +18:07:51 [ 49] [ 3] [418] +18:07:51 [ 54] [ 20] [0002418C000006734040] +18:07:51 ============================================================================ +18:07:51 Calculate Source COMM Id = 0 +18:07:51 ============================================================================ +18:07:51 + + +waiting on router queue for slot.... +18:07:52 ============================================================================ +18:07:52 Slot Id : <315> +18:07:52 Transaction Type : RESPONSE +18:07:52 Received From : +18:07:52 ============================================================================ +18:07:52 FNo. Len. Field Value +18:07:52 ============================================================================ +18:07:52 [ 1] [ 4] [0210] +18:07:52 [ 2] [ 16] [6213545000863054] +18:07:52 [ 3] [ 6] [010000] +18:07:52 [ 4] [ 12] [000010000000] +18:07:52 [ 7] [ 10] [0320181938] +18:07:52 [ 11] [ 6] [412662] +18:07:52 [ 12] [ 6] [181938] +18:07:52 [ 13] [ 4] [0320] +18:07:52 [ 15] [ 4] [0320] +18:07:52 [ 18] [ 4] [6011] +18:07:52 [ 19] [ 3] [418] +18:07:52 [ 32] [ 6] [123401] +18:07:52 [ 35] [ 32] [6213545000863054=491212016305263] +18:07:52 [ 37] [ 12] [507900354430] +18:07:52 [ 38] [ 6] [592480] +18:07:52 [ 39] [ 2] [00] +18:07:52 [ 41] [ 8] [01002600] +18:07:52 [ 49] [ 3] [418] +18:07:52 [ 54] [ 40] [0001418C0000381972550002418C000038197255] +18:07:52 ============================================================================ +18:07:52 Calculate Source COMM Id = 6 +18:07:52 ============================================================================ +18:07:52 + + +waiting on router queue for slot.... +18:07:54 ============================================================================ +18:07:54 Slot Id : <289> +18:07:54 Transaction Type : REQUEST +18:07:54 Received From : +18:07:54 ============================================================================ +18:07:54 FNo. Len. Field Value +18:07:54 ============================================================================ +18:07:54 [ 1] [ 4] [0200] +18:07:54 [ 2] [ 16] [6688990100941200] +18:07:54 [ 3] [ 6] [010000] +18:07:54 [ 4] [ 12] [000100000000] +18:07:54 [ 7] [ 10] [0320110700] +18:07:54 [ 11] [ 6] [271073] +18:07:54 [ 12] [ 6] [180700] +18:07:54 [ 13] [ 4] [0320] +18:07:54 [ 14] [ 4] [4112] +18:07:54 [ 15] [ 4] [0320] +18:07:54 [ 18] [ 4] [6011] +18:07:54 [ 19] [ 3] [418] +18:07:54 [ 22] [ 3] [021] +18:07:54 [ 25] [ 2] [01] +18:07:54 [ 28] [ 9] [D00002000] +18:07:54 [ 32] [ 6] [180893] +18:07:54 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:07:54 [ 37] [ 12] [507911271073] +18:07:54 [ 41] [ 8] [0467PSLK] +18:07:54 [ 42] [ 15] [999999 ] +18:07:54 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:07:54 [ 49] [ 3] [418] +18:07:54 [ 52] [ 16] [C6CF798086C24D04] +18:07:54 ============================================================================ +18:07:54 + + +waiting on router queue for slot.... +18:07:54 Sending to : +18:07:54 ============================================================================ +18:07:54 Sending to : +18:07:54 ============================================================================ +18:07:54 ============================================================================ +18:07:54 Slot Id : <297> +18:07:54 Transaction Type : RESPONSE +18:07:54 Received From : +18:07:54 ============================================================================ +18:07:54 FNo. Len. Field Value +18:07:54 ============================================================================ +18:07:54 [ 1] [ 4] [0210] +18:07:54 [ 2] [ 16] [6213545001002678] +18:07:54 [ 3] [ 6] [011000] +18:07:54 [ 4] [ 12] [000020000000] +18:07:54 [ 7] [ 10] [0320110653] +18:07:54 [ 11] [ 6] [271071] +18:07:54 [ 12] [ 6] [180653] +18:07:54 [ 13] [ 4] [0320] +18:07:54 [ 15] [ 4] [0320] +18:07:54 [ 18] [ 4] [6011] +18:07:54 [ 19] [ 3] [418] +18:07:54 [ 32] [ 6] [180893] +18:07:54 [ 35] [ 32] [6213545001002678=491212010267106] +18:07:54 [ 37] [ 12] [507911271071] +18:07:54 [ 38] [ 6] [519140] +18:07:54 [ 39] [ 2] [00] +18:07:54 [ 41] [ 8] [0104NUOL] +18:07:54 [ 49] [ 3] [418] +18:07:54 [ 54] [ 40] [1001418C0001569417941002418C000156941794] +18:07:54 ============================================================================ +18:07:54 Calculate Source COMM Id = 2 +18:07:54 ============================================================================ +18:07:54 + + +waiting on router queue for slot.... +18:07:54 ============================================================================ +18:07:54 Slot Id : <289> +18:07:54 Transaction Type : REQUEST +18:07:54 Received From : +18:07:54 ============================================================================ +18:07:54 FNo. Len. Field Value +18:07:54 ============================================================================ +18:07:54 [ 1] [ 4] [0200] +18:07:54 [ 2] [ 16] [6688990100941200] +18:07:54 [ 3] [ 6] [010000] +18:07:54 [ 4] [ 12] [000100000000] +18:07:54 [ 7] [ 10] [0320110700] +18:07:54 [ 11] [ 6] [271073] +18:07:54 [ 12] [ 6] [180700] +18:07:54 [ 13] [ 4] [0320] +18:07:54 [ 14] [ 4] [4112] +18:07:54 [ 15] [ 4] [0320] +18:07:54 [ 18] [ 4] [6011] +18:07:54 [ 19] [ 3] [418] +18:07:54 [ 22] [ 3] [021] +18:07:54 [ 25] [ 2] [01] +18:07:54 [ 28] [ 9] [D00002000] +18:07:54 [ 32] [ 6] [180893] +18:07:54 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:07:54 [ 37] [ 12] [507911271073] +18:07:54 [ 41] [ 8] [0467PSLK] +18:07:54 [ 42] [ 15] [999999 ] +18:07:54 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:07:54 [ 49] [ 3] [418] +18:07:54 [ 52] [ 16] [C6CF798086C24D04] +18:07:54 ============================================================================ +18:07:54 + + +waiting on router queue for slot.... +18:07:54 Sending to : +18:07:54 ============================================================================ +18:07:54 ============================================================================ +18:07:54 Slot Id : <289> +18:07:54 Transaction Type : REQUEST +18:07:54 Received From : +18:07:54 ============================================================================ +18:07:54 FNo. Len. Field Value +18:07:54 ============================================================================ +18:07:54 [ 1] [ 4] [0200] +18:07:54 [ 2] [ 16] [6688990100941200] +18:07:54 [ 3] [ 6] [010000] +18:07:54 [ 4] [ 12] [000100000000] +18:07:54 [ 7] [ 10] [0320110700] +18:07:54 [ 11] [ 6] [271073] +18:07:54 [ 12] [ 6] [180700] +18:07:54 [ 13] [ 4] [0320] +18:07:54 [ 14] [ 4] [4112] +18:07:54 [ 15] [ 4] [0320] +18:07:54 [ 18] [ 4] [6011] +18:07:54 [ 19] [ 3] [418] +18:07:54 [ 22] [ 3] [021] +18:07:54 [ 25] [ 2] [01] +18:07:54 [ 28] [ 9] [D00002000] +18:07:54 [ 32] [ 6] [180893] +18:07:54 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:07:54 [ 37] [ 12] [507911271073] +18:07:54 [ 41] [ 8] [0467PSLK] +18:07:54 [ 42] [ 15] [999999 ] +18:07:54 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:07:54 [ 49] [ 3] [418] +18:07:54 [ 52] [ 16] [10E4F466ECA408C6] +18:07:54 ============================================================================ +18:07:54 + + +waiting on router queue for slot.... +18:07:54 Sending to : <0> +18:07:54 ============================================================================ +18:07:55 ============================================================================ +18:07:55 Slot Id : <289> +18:07:55 Transaction Type : RESPONSE +18:07:55 Received From : +18:07:55 ============================================================================ +18:07:55 FNo. Len. Field Value +18:07:55 ============================================================================ +18:07:55 [ 1] [ 4] [0210] +18:07:55 [ 2] [ 16] [6688990100941200] +18:07:55 [ 3] [ 6] [010000] +18:07:55 [ 4] [ 12] [000100000000] +18:07:55 [ 7] [ 10] [0320110700] +18:07:55 [ 11] [ 6] [271073] +18:07:55 [ 12] [ 6] [180700] +18:07:55 [ 13] [ 4] [0320] +18:07:55 [ 15] [ 4] [0320] +18:07:55 [ 18] [ 4] [6011] +18:07:55 [ 19] [ 3] [418] +18:07:55 [ 22] [ 3] [021] +18:07:55 [ 32] [ 6] [180893] +18:07:55 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:07:55 [ 37] [ 12] [507911271073] +18:07:55 [ 39] [ 2] [14] +18:07:55 [ 41] [ 8] [0467PSLK] +18:07:55 [ 49] [ 3] [418] +18:07:55 ============================================================================ +18:07:55 Sending to : +18:07:55 ============================================================================ +18:07:55 + + +waiting on router queue for slot.... +18:07:57 ============================================================================ +18:07:57 Slot Id : <289> +18:07:57 Transaction Type : RESPONSE +18:07:57 Received From : +18:07:57 ============================================================================ +18:07:57 FNo. Len. Field Value +18:07:57 ============================================================================ +18:07:57 [ 1] [ 4] [0210] +18:07:57 [ 2] [ 16] [6688990100941200] +18:07:57 [ 3] [ 6] [010000] +18:07:57 [ 4] [ 12] [000100000000] +18:07:57 [ 7] [ 10] [0320110700] +18:07:57 [ 11] [ 6] [271073] +18:07:57 [ 12] [ 6] [180700] +18:07:57 [ 13] [ 4] [0320] +18:07:57 [ 15] [ 4] [0320] +18:07:57 [ 18] [ 4] [6011] +18:07:57 [ 19] [ 3] [418] +18:07:57 [ 22] [ 3] [021] +18:07:57 [ 32] [ 6] [180893] +18:07:57 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:07:57 [ 37] [ 12] [507911271073] +18:07:57 [ 39] [ 2] [14] +18:07:57 [ 41] [ 8] [0467PSLK] +18:07:57 [ 49] [ 3] [418] +18:07:57 ============================================================================ +18:07:57 Calculate Source COMM Id = 2 +18:07:57 ============================================================================ +18:07:57 + + +waiting on router queue for slot.... +18:08:09 ============================================================================ +18:08:09 Slot Id : <304> +18:08:09 Transaction Type : REQUEST +18:08:09 Received From : +18:08:09 ============================================================================ +18:08:09 FNo. Len. Field Value +18:08:09 ============================================================================ +18:08:09 [ 1] [ 4] [0800] +18:08:09 [ 7] [ 10] [0320110716] +18:08:09 [ 11] [ 6] [157632] +18:08:09 [ 70] [ 3] [301] +18:08:09 ============================================================================ +18:08:09 + + +waiting on router queue for slot.... +18:08:09 Sending to : +18:08:09 ============================================================================ +18:08:09 ============================================================================ +18:08:09 Slot Id : <304> +18:08:09 Transaction Type : RESPONSE +18:08:09 Received From : +18:08:09 ============================================================================ +18:08:09 FNo. Len. Field Value +18:08:09 ============================================================================ +18:08:09 [ 1] [ 4] [0810] +18:08:09 [ 7] [ 10] [0320110716] +18:08:09 [ 11] [ 6] [157632] +18:08:09 [ 39] [ 2] [00] +18:08:09 [ 70] [ 3] [301] +18:08:09 ============================================================================ +18:08:09 Calculate Source COMM Id = 2 +18:08:09 ============================================================================ +18:08:09 + + +waiting on router queue for slot.... +18:08:20 ============================================================================ +18:08:20 Slot Id : <326> +18:08:20 Transaction Type : REQUEST +18:08:20 Received From : +18:08:20 ============================================================================ +18:08:20 FNo. Len. Field Value +18:08:20 ============================================================================ +18:08:20 [ 1] [ 4] [0800] +18:08:20 [ 7] [ 10] [0320110726] +18:08:20 [ 11] [ 6] [157633] +18:08:20 [ 70] [ 3] [301] +18:08:20 ============================================================================ +18:08:20 + + +waiting on router queue for slot.... +18:08:20 Sending to : +18:08:20 ============================================================================ +18:08:20 ============================================================================ +18:08:20 Slot Id : <326> +18:08:20 Transaction Type : RESPONSE +18:08:20 Received From : +18:08:20 ============================================================================ +18:08:20 FNo. Len. Field Value +18:08:20 ============================================================================ +18:08:20 [ 1] [ 4] [0810] +18:08:20 [ 7] [ 10] [0320110726] +18:08:20 [ 11] [ 6] [157633] +18:08:20 [ 39] [ 2] [00] +18:08:20 [ 70] [ 3] [301] +18:08:20 ============================================================================ +18:08:20 Calculate Source COMM Id = 2 +18:08:20 ============================================================================ +18:08:20 + + +waiting on router queue for slot.... +18:08:27 ============================================================================ +18:08:27 Slot Id : <291> +18:08:27 Transaction Type : REQUEST +18:08:27 Received From : +18:08:27 ============================================================================ +18:08:27 FNo. Len. Field Value +18:08:27 ============================================================================ +18:08:27 [ 1] [ 4] [0200] +18:08:27 [ 2] [ 16] [6213544000769023] +18:08:27 [ 3] [ 6] [010000] +18:08:27 [ 4] [ 12] [000100000000] +18:08:27 [ 7] [ 10] [0320180617] +18:08:27 [ 11] [ 6] [954374] +18:08:27 [ 12] [ 6] [180617] +18:08:27 [ 13] [ 4] [0320] +18:08:27 [ 15] [ 4] [0320] +18:08:27 [ 18] [ 4] [6011] +18:08:27 [ 19] [ 3] [418] +18:08:27 [ 22] [ 3] [021] +18:08:27 [ 25] [ 2] [01] +18:08:27 [ 28] [ 9] [D00002000] +18:08:27 [ 32] [ 6] [668899] +18:08:27 [ 35] [ 32] [6213544000769023=491212016902190] +18:08:27 [ 37] [ 12] [507901215116] +18:08:27 [ 41] [ 8] [03020013] +18:08:27 [ 42] [ 15] [APT ] +18:08:27 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +18:08:27 [ 49] [ 3] [418] +18:08:27 [ 52] [ 16] [2EBA9425B5572A18] +18:08:27 ============================================================================ +18:08:27 + + +waiting on router queue for slot.... +18:08:27 Sending to : +18:08:27 ============================================================================ +18:08:27 Sending to : +18:08:27 ============================================================================ +18:08:28 ============================================================================ +18:08:28 Slot Id : <291> +18:08:28 Transaction Type : REQUEST +18:08:28 Received From : +18:08:28 ============================================================================ +18:08:28 FNo. Len. Field Value +18:08:28 ============================================================================ +18:08:28 [ 1] [ 4] [0200] +18:08:28 [ 2] [ 16] [6213544000769023] +18:08:28 [ 3] [ 6] [010000] +18:08:28 [ 4] [ 12] [000100000000] +18:08:28 [ 7] [ 10] [0320180617] +18:08:28 [ 11] [ 6] [954374] +18:08:28 [ 12] [ 6] [180617] +18:08:28 [ 13] [ 4] [0320] +18:08:28 [ 15] [ 4] [0320] +18:08:28 [ 18] [ 4] [6011] +18:08:28 [ 19] [ 3] [418] +18:08:28 [ 22] [ 3] [021] +18:08:28 [ 25] [ 2] [01] +18:08:28 [ 28] [ 9] [D00002000] +18:08:28 [ 32] [ 6] [668899] +18:08:28 [ 35] [ 32] [6213544000769023=491212016902190] +18:08:28 [ 37] [ 12] [507901215116] +18:08:28 [ 41] [ 8] [03020013] +18:08:28 [ 42] [ 15] [APT ] +18:08:28 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +18:08:28 [ 49] [ 3] [418] +18:08:28 [ 52] [ 16] [2EBA9425B5572A18] +18:08:28 ============================================================================ +18:08:28 + + +waiting on router queue for slot.... +18:08:28 Sending to : +18:08:28 ============================================================================ +18:08:28 ============================================================================ +18:08:28 Slot Id : <291> +18:08:28 Transaction Type : REQUEST +18:08:28 Received From : +18:08:28 ============================================================================ +18:08:28 FNo. Len. Field Value +18:08:28 ============================================================================ +18:08:28 [ 1] [ 4] [0200] +18:08:28 [ 2] [ 16] [6213544000769023] +18:08:28 [ 3] [ 6] [010000] +18:08:28 [ 4] [ 12] [000100000000] +18:08:28 [ 7] [ 10] [0320180617] +18:08:28 [ 11] [ 6] [954374] +18:08:28 [ 12] [ 6] [180617] +18:08:28 [ 13] [ 4] [0320] +18:08:28 [ 15] [ 4] [0320] +18:08:28 [ 18] [ 4] [6011] +18:08:28 [ 19] [ 3] [418] +18:08:28 [ 22] [ 3] [021] +18:08:28 [ 25] [ 2] [01] +18:08:28 [ 28] [ 9] [D00002000] +18:08:28 [ 32] [ 6] [668899] +18:08:28 [ 35] [ 32] [6213544000769023=491212016902190] +18:08:28 [ 37] [ 12] [507901215116] +18:08:28 [ 41] [ 8] [03020013] +18:08:28 [ 42] [ 15] [APT ] +18:08:28 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +18:08:28 [ 49] [ 3] [418] +18:08:28 [ 52] [ 16] [6E86E4A9C3C84D10] +18:08:28 ============================================================================ +18:08:28 + + +waiting on router queue for slot.... +18:08:28 Sending to : <0> +18:08:28 ============================================================================ +18:08:29 ============================================================================ +18:08:29 Slot Id : <291> +18:08:29 Transaction Type : RESPONSE +18:08:29 Received From : +18:08:29 ============================================================================ +18:08:29 FNo. Len. Field Value +18:08:29 ============================================================================ +18:08:29 [ 1] [ 4] [0210] +18:08:29 [ 2] [ 16] [6213544000769023] +18:08:29 [ 3] [ 6] [010000] +18:08:29 [ 4] [ 12] [000100000000] +18:08:29 [ 7] [ 10] [0320180617] +18:08:29 [ 11] [ 6] [954374] +18:08:29 [ 12] [ 6] [180617] +18:08:29 [ 13] [ 4] [0320] +18:08:29 [ 15] [ 4] [0320] +18:08:29 [ 18] [ 4] [6011] +18:08:29 [ 19] [ 3] [418] +18:08:29 [ 32] [ 6] [668899] +18:08:29 [ 35] [ 32] [6213544000769023=491212016902190] +18:08:29 [ 37] [ 12] [507901215116] +18:08:29 [ 38] [ 6] [221900] +18:08:29 [ 39] [ 2] [00] +18:08:29 [ 41] [ 8] [03020013] +18:08:29 [ 49] [ 3] [418] +18:08:29 [ 54] [ 40] [0001418C0020938879650002418C002093887965] +18:08:29 ============================================================================ +18:08:29 Sending to : +18:08:29 ============================================================================ +18:08:29 + + +waiting on router queue for slot.... +18:08:30 ============================================================================ +18:08:30 Slot Id : <291> +18:08:30 Transaction Type : RESPONSE +18:08:30 Received From : +18:08:30 ============================================================================ +18:08:30 FNo. Len. Field Value +18:08:30 ============================================================================ +18:08:30 [ 1] [ 4] [0210] +18:08:30 [ 2] [ 16] [6213544000769023] +18:08:30 [ 3] [ 6] [010000] +18:08:30 [ 4] [ 12] [000100000000] +18:08:30 [ 7] [ 10] [0320180617] +18:08:30 [ 11] [ 6] [954374] +18:08:30 [ 12] [ 6] [180617] +18:08:30 [ 13] [ 4] [0320] +18:08:30 [ 15] [ 4] [0320] +18:08:30 [ 18] [ 4] [6011] +18:08:30 [ 19] [ 3] [418] +18:08:30 [ 32] [ 6] [668899] +18:08:30 [ 35] [ 32] [6213544000769023=491212016902190] +18:08:30 [ 37] [ 12] [507901215116] +18:08:30 [ 38] [ 6] [221900] +18:08:30 [ 39] [ 2] [00] +18:08:30 [ 41] [ 8] [03020013] +18:08:30 [ 49] [ 3] [418] +18:08:30 [ 54] [ 40] [0001418C0020938879650002418C002093887965] +18:08:30 ============================================================================ +18:08:30 Calculate Source COMM Id = 4 +18:08:30 ============================================================================ +18:08:30 + + +waiting on router queue for slot.... +18:08:33 ============================================================================ +18:08:33 Slot Id : <285> +18:08:33 Transaction Type : REQUEST +18:08:33 Received From : +18:08:33 ============================================================================ +18:08:33 FNo. Len. Field Value +18:08:33 ============================================================================ +18:08:33 [ 1] [ 4] [0200] +18:08:33 [ 2] [ 16] [6688990107119404] +18:08:33 [ 3] [ 6] [010000] +18:08:33 [ 4] [ 12] [000005000000] +18:08:33 [ 7] [ 10] [0320180828] +18:08:33 [ 11] [ 6] [824263] +18:08:33 [ 12] [ 6] [180828] +18:08:33 [ 13] [ 4] [0320] +18:08:33 [ 15] [ 4] [0320] +18:08:33 [ 18] [ 4] [6011] +18:08:33 [ 22] [ 3] [900] +18:08:33 [ 25] [ 2] [02] +18:08:33 [ 28] [ 9] [D00002000] +18:08:33 [ 32] [ 6] [621354] +18:08:33 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:08:33 [ 37] [ 12] [507905382539] +18:08:33 [ 41] [ 8] [12003400] +18:08:33 [ 42] [ 15] [NATIVE ] +18:08:33 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +18:08:33 [ 49] [ 3] [418] +18:08:33 [ 52] [ 16] [39F15A3C130A5D01] +18:08:33 ============================================================================ +18:08:33 + + +waiting on router queue for slot.... +18:08:33 Sending to : +18:08:33 ============================================================================ +18:08:33 Sending to : +18:08:33 ============================================================================ +18:08:34 ============================================================================ +18:08:34 Slot Id : <285> +18:08:34 Transaction Type : REQUEST +18:08:34 Received From : +18:08:34 ============================================================================ +18:08:34 FNo. Len. Field Value +18:08:34 ============================================================================ +18:08:34 [ 1] [ 4] [0200] +18:08:34 [ 2] [ 16] [6688990107119404] +18:08:34 [ 3] [ 6] [010000] +18:08:34 [ 4] [ 12] [000005000000] +18:08:34 [ 7] [ 10] [0320180828] +18:08:34 [ 11] [ 6] [824263] +18:08:34 [ 12] [ 6] [180828] +18:08:34 [ 13] [ 4] [0320] +18:08:34 [ 15] [ 4] [0320] +18:08:34 [ 18] [ 4] [6011] +18:08:34 [ 22] [ 3] [900] +18:08:34 [ 25] [ 2] [02] +18:08:34 [ 28] [ 9] [D00002000] +18:08:34 [ 32] [ 6] [621354] +18:08:34 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:08:34 [ 37] [ 12] [507905382539] +18:08:34 [ 41] [ 8] [12003400] +18:08:34 [ 42] [ 15] [NATIVE ] +18:08:34 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +18:08:34 [ 49] [ 3] [418] +18:08:34 [ 52] [ 16] [39F15A3C130A5D01] +18:08:34 ============================================================================ +18:08:34 + + +waiting on router queue for slot.... +18:08:34 Sending to : +18:08:34 ============================================================================ +18:08:34 ============================================================================ +18:08:34 Slot Id : <285> +18:08:34 Transaction Type : REQUEST +18:08:34 Received From : +18:08:34 ============================================================================ +18:08:34 FNo. Len. Field Value +18:08:34 ============================================================================ +18:08:34 [ 1] [ 4] [0200] +18:08:34 [ 2] [ 16] [6688990107119404] +18:08:34 [ 3] [ 6] [010000] +18:08:34 [ 4] [ 12] [000005000000] +18:08:34 [ 7] [ 10] [0320180828] +18:08:34 [ 11] [ 6] [824263] +18:08:34 [ 12] [ 6] [180828] +18:08:34 [ 13] [ 4] [0320] +18:08:34 [ 15] [ 4] [0320] +18:08:34 [ 18] [ 4] [6011] +18:08:34 [ 22] [ 3] [900] +18:08:34 [ 25] [ 2] [02] +18:08:34 [ 28] [ 9] [D00002000] +18:08:34 [ 32] [ 6] [621354] +18:08:34 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:08:34 [ 37] [ 12] [507905382539] +18:08:34 [ 41] [ 8] [12003400] +18:08:34 [ 42] [ 15] [NATIVE ] +18:08:34 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +18:08:34 [ 49] [ 3] [418] +18:08:34 [ 52] [ 16] [B8A1FC23F328AC1F] +18:08:34 ============================================================================ +18:08:34 + + +waiting on router queue for slot.... +18:08:34 Sending to : <4> +18:08:34 ============================================================================ +18:08:34 ============================================================================ +18:08:34 Slot Id : <285> +18:08:34 Transaction Type : RESPONSE +18:08:34 Received From : +18:08:34 ============================================================================ +18:08:34 FNo. Len. Field Value +18:08:34 ============================================================================ +18:08:34 [ 1] [ 4] [0210] +18:08:34 [ 2] [ 16] [6688990107119404] +18:08:34 [ 3] [ 6] [010000] +18:08:34 [ 4] [ 12] [000005000000] +18:08:34 [ 11] [ 6] [824263] +18:08:34 [ 12] [ 6] [180828] +18:08:34 [ 15] [ 4] [0320] +18:08:34 [ 18] [ 4] [6011] +18:08:34 [ 32] [ 6] [621354] +18:08:34 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:08:34 [ 37] [ 12] [507905382539] +18:08:34 [ 39] [ 2] [51] +18:08:34 [ 41] [ 8] [12003400] +18:08:34 [ 49] [ 3] [418] +18:08:34 [ 54] [ 0] [] +18:08:34 ============================================================================ +18:08:34 Sending to : +18:08:34 ============================================================================ +18:08:34 + + +waiting on router queue for slot.... +18:08:34 ============================================================================ +18:08:34 Slot Id : <331> +18:08:34 Transaction Type : REQUEST +18:08:34 Received From : +18:08:34 ============================================================================ +18:08:34 FNo. Len. Field Value +18:08:34 ============================================================================ +18:08:34 [ 1] [ 4] [0200] +18:08:34 [ 2] [ 16] [6688990100966405] +18:08:34 [ 3] [ 6] [301000] +18:08:34 [ 7] [ 10] [0320110740] +18:08:34 [ 11] [ 6] [271077] +18:08:34 [ 12] [ 6] [180740] +18:08:34 [ 13] [ 4] [0320] +18:08:34 [ 14] [ 4] [4112] +18:08:34 [ 15] [ 4] [0320] +18:08:34 [ 18] [ 4] [6011] +18:08:34 [ 19] [ 3] [418] +18:08:34 [ 22] [ 3] [021] +18:08:34 [ 25] [ 2] [01] +18:08:34 [ 32] [ 6] [180893] +18:08:34 [ 35] [ 37] [6688990100966405=41121231640508600000] +18:08:34 [ 37] [ 12] [507911271077] +18:08:34 [ 41] [ 8] [0467PSLK] +18:08:34 [ 42] [ 15] [999999 ] +18:08:34 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:08:34 [ 49] [ 3] [418] +18:08:34 [ 52] [ 16] [A20AB6915C354D1D] +18:08:34 ============================================================================ +18:08:34 + + +waiting on router queue for slot.... +18:08:34 Sending to : +18:08:34 ============================================================================ +18:08:34 Sending to : +18:08:34 ============================================================================ +18:08:34 ============================================================================ +18:08:34 Slot Id : <331> +18:08:34 Transaction Type : REQUEST +18:08:34 Received From : +18:08:34 ============================================================================ +18:08:34 FNo. Len. Field Value +18:08:34 ============================================================================ +18:08:34 [ 1] [ 4] [0200] +18:08:34 [ 2] [ 16] [6688990100966405] +18:08:34 [ 3] [ 6] [301000] +18:08:34 [ 7] [ 10] [0320110740] +18:08:34 [ 11] [ 6] [271077] +18:08:34 [ 12] [ 6] [180740] +18:08:34 [ 13] [ 4] [0320] +18:08:34 [ 14] [ 4] [4112] +18:08:34 [ 15] [ 4] [0320] +18:08:34 [ 18] [ 4] [6011] +18:08:34 [ 19] [ 3] [418] +18:08:34 [ 22] [ 3] [021] +18:08:34 [ 25] [ 2] [01] +18:08:34 [ 32] [ 6] [180893] +18:08:34 [ 35] [ 37] [6688990100966405=41121231640508600000] +18:08:34 [ 37] [ 12] [507911271077] +18:08:34 [ 41] [ 8] [0467PSLK] +18:08:34 [ 42] [ 15] [999999 ] +18:08:34 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:08:34 [ 49] [ 3] [418] +18:08:34 [ 52] [ 16] [A20AB6915C354D1D] +18:08:34 ============================================================================ +18:08:34 + + +waiting on router queue for slot.... +18:08:34 Sending to : +18:08:34 ============================================================================ +18:08:34 ============================================================================ +18:08:34 Slot Id : <331> +18:08:34 Transaction Type : REQUEST +18:08:34 Received From : +18:08:34 ============================================================================ +18:08:34 FNo. Len. Field Value +18:08:34 ============================================================================ +18:08:34 [ 1] [ 4] [0200] +18:08:34 [ 2] [ 16] [6688990100966405] +18:08:34 [ 3] [ 6] [301000] +18:08:34 [ 7] [ 10] [0320110740] +18:08:34 [ 11] [ 6] [271077] +18:08:34 [ 12] [ 6] [180740] +18:08:34 [ 13] [ 4] [0320] +18:08:34 [ 14] [ 4] [4112] +18:08:34 [ 15] [ 4] [0320] +18:08:34 [ 18] [ 4] [6011] +18:08:34 [ 19] [ 3] [418] +18:08:34 [ 22] [ 3] [021] +18:08:34 [ 25] [ 2] [01] +18:08:34 [ 32] [ 6] [180893] +18:08:34 [ 35] [ 37] [6688990100966405=41121231640508600000] +18:08:34 [ 37] [ 12] [507911271077] +18:08:34 [ 41] [ 8] [0467PSLK] +18:08:34 [ 42] [ 15] [999999 ] +18:08:34 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:08:34 [ 49] [ 3] [418] +18:08:34 [ 52] [ 16] [E51013EC8BBD7C96] +18:08:34 ============================================================================ +18:08:34 + + +waiting on router queue for slot.... +18:08:34 Sending to : <0> +18:08:34 ============================================================================ +18:08:35 ============================================================================ +18:08:35 Slot Id : <331> +18:08:35 Transaction Type : RESPONSE +18:08:35 Received From : +18:08:35 ============================================================================ +18:08:35 FNo. Len. Field Value +18:08:35 ============================================================================ +18:08:35 [ 1] [ 4] [0210] +18:08:35 [ 2] [ 16] [6688990100966405] +18:08:35 [ 3] [ 6] [301000] +18:08:35 [ 4] [ 12] [000000000000] +18:08:35 [ 7] [ 10] [0320110740] +18:08:35 [ 11] [ 6] [271077] +18:08:35 [ 12] [ 6] [180740] +18:08:35 [ 13] [ 4] [0320] +18:08:35 [ 15] [ 4] [0320] +18:08:35 [ 18] [ 4] [6011] +18:08:35 [ 19] [ 3] [418] +18:08:35 [ 22] [ 3] [021] +18:08:35 [ 32] [ 6] [180893] +18:08:35 [ 35] [ 37] [6688990100966405=41121231640508600000] +18:08:35 [ 37] [ 12] [507911271077] +18:08:35 [ 39] [ 2] [14] +18:08:35 [ 41] [ 8] [0467PSLK] +18:08:35 [ 49] [ 3] [418] +18:08:35 ============================================================================ +18:08:35 Sending to : +18:08:35 ============================================================================ +18:08:35 + + +waiting on router queue for slot.... +18:08:35 ============================================================================ +18:08:35 Slot Id : <327> +18:08:35 Transaction Type : REQUEST +18:08:35 Received From : +18:08:35 ============================================================================ +18:08:35 FNo. Len. Field Value +18:08:35 ============================================================================ +18:08:35 [ 1] [ 4] [0800] +18:08:35 [ 7] [ 10] [0320110741] +18:08:35 [ 11] [ 6] [157634] +18:08:35 [ 70] [ 3] [301] +18:08:35 ============================================================================ +18:08:35 + + +waiting on router queue for slot.... +18:08:35 Sending to : +18:08:35 ============================================================================ +18:08:35 ============================================================================ +18:08:35 Slot Id : <327> +18:08:35 Transaction Type : RESPONSE +18:08:35 Received From : +18:08:35 ============================================================================ +18:08:35 FNo. Len. Field Value +18:08:35 ============================================================================ +18:08:35 [ 1] [ 4] [0810] +18:08:35 [ 7] [ 10] [0320110741] +18:08:35 [ 11] [ 6] [157634] +18:08:35 [ 39] [ 2] [00] +18:08:35 [ 70] [ 3] [301] +18:08:35 ============================================================================ +18:08:35 Calculate Source COMM Id = 2 +18:08:35 ============================================================================ +18:08:35 + + +waiting on router queue for slot.... +18:08:35 ============================================================================ +18:08:35 Slot Id : <285> +18:08:35 Transaction Type : RESPONSE +18:08:35 Received From : +18:08:35 ============================================================================ +18:08:35 FNo. Len. Field Value +18:08:35 ============================================================================ +18:08:35 [ 1] [ 4] [0210] +18:08:35 [ 2] [ 16] [6688990107119404] +18:08:35 [ 3] [ 6] [010000] +18:08:35 [ 4] [ 12] [000005000000] +18:08:35 [ 11] [ 6] [824263] +18:08:35 [ 12] [ 6] [180828] +18:08:35 [ 15] [ 4] [0320] +18:08:35 [ 18] [ 4] [6011] +18:08:35 [ 32] [ 6] [621354] +18:08:35 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:08:35 [ 37] [ 12] [507905382539] +18:08:35 [ 39] [ 2] [51] +18:08:35 [ 41] [ 8] [12003400] +18:08:35 [ 49] [ 3] [418] +18:08:35 [ 54] [ 0] [] +18:08:35 ============================================================================ +18:08:35 Calculate Source COMM Id = 0 +18:08:35 ============================================================================ +18:08:35 + + +waiting on router queue for slot.... +18:08:36 ============================================================================ +18:08:36 Slot Id : <331> +18:08:36 Transaction Type : RESPONSE +18:08:36 Received From : +18:08:36 ============================================================================ +18:08:36 FNo. Len. Field Value +18:08:36 ============================================================================ +18:08:36 [ 1] [ 4] [0210] +18:08:36 [ 2] [ 16] [6688990100966405] +18:08:36 [ 3] [ 6] [301000] +18:08:36 [ 4] [ 12] [000000000000] +18:08:36 [ 7] [ 10] [0320110740] +18:08:36 [ 11] [ 6] [271077] +18:08:36 [ 12] [ 6] [180740] +18:08:36 [ 13] [ 4] [0320] +18:08:36 [ 15] [ 4] [0320] +18:08:36 [ 18] [ 4] [6011] +18:08:36 [ 19] [ 3] [418] +18:08:36 [ 22] [ 3] [021] +18:08:36 [ 32] [ 6] [180893] +18:08:36 [ 35] [ 37] [6688990100966405=41121231640508600000] +18:08:36 [ 37] [ 12] [507911271077] +18:08:36 [ 39] [ 2] [14] +18:08:36 [ 41] [ 8] [0467PSLK] +18:08:36 [ 49] [ 3] [418] +18:08:36 ============================================================================ +18:08:36 Calculate Source COMM Id = 2 +18:08:36 ============================================================================ +18:08:36 + + +waiting on router queue for slot.... +18:08:43 ============================================================================ +18:08:43 Slot Id : <301> +18:08:43 Transaction Type : REQUEST +18:08:43 Received From : +18:08:43 ============================================================================ +18:08:43 FNo. Len. Field Value +18:08:43 ============================================================================ +18:08:43 [ 1] [ 4] [0800] +18:08:43 [ 7] [ 10] [0321012031] +18:08:43 [ 11] [ 6] [182031] +18:08:43 [ 37] [ 12] [57918182031] +18:08:43 [ 70] [ 3] [301] +18:08:43 ============================================================================ +18:08:43 + + +waiting on router queue for slot.... +18:08:43 Sending to : +18:08:43 ============================================================================ +18:08:43 ============================================================================ +18:08:43 Slot Id : <301> +18:08:43 Transaction Type : RESPONSE +18:08:43 Received From : +18:08:43 ============================================================================ +18:08:43 FNo. Len. Field Value +18:08:43 ============================================================================ +18:08:43 [ 1] [ 4] [0810] +18:08:43 [ 7] [ 10] [0321012031] +18:08:43 [ 11] [ 6] [182031] +18:08:43 [ 37] [ 12] [579181820310] +18:08:43 [ 39] [ 2] [00] +18:08:43 [ 70] [ 3] [810] +18:08:43 ============================================================================ +18:08:43 Calculate Source COMM Id = 6 +18:08:43 ============================================================================ +18:08:43 + + +waiting on router queue for slot.... +18:08:45 ============================================================================ +18:08:45 Slot Id : <305> +18:08:45 Transaction Type : REQUEST +18:08:45 Received From : +18:08:45 ============================================================================ +18:08:45 FNo. Len. Field Value +18:08:45 ============================================================================ +18:08:45 [ 1] [ 4] [0800] +18:08:45 [ 2] [ 5] [02531] +18:08:45 [ 3] [ 6] [579188] +18:08:45 [ 7] [ 10] [0320110845] +18:08:45 [ 11] [ 6] [807465] +18:08:45 [ 15] [ 10] [0320110845] +18:08:45 [ 37] [ 11] [57918807465] +18:08:45 [ 70] [ 3] [001] +18:08:45 ============================================================================ +18:08:45 + + +waiting on router queue for slot.... +18:08:45 ============================================================================ +18:08:45 Slot Id : <305> +18:08:45 Transaction Type : RESPONSE +18:08:45 Received From : +18:08:45 ============================================================================ +18:08:45 FNo. Len. Field Value +18:08:45 ============================================================================ +18:08:45 [ 1] [ 4] [0810] +18:08:45 [ 7] [ 10] [0320110845] +18:08:45 [ 11] [ 6] [807465] +18:08:45 [ 15] [ 4] [0320] +18:08:45 [ 37] [ 12] [57918807465] +18:08:45 [ 39] [ 2] [00] +18:08:45 [ 70] [ 3] [001] +18:08:45 ============================================================================ +18:08:45 Sending to : +18:08:45 ============================================================================ +18:08:45 + + +waiting on router queue for slot.... +18:08:46 ============================================================================ +18:08:46 Slot Id : <302> +18:08:46 Transaction Type : REQUEST +18:08:46 Received From : +18:08:46 ============================================================================ +18:08:46 FNo. Len. Field Value +18:08:46 ============================================================================ +18:08:46 [ 1] [ 4] [0200] +18:08:46 [ 2] [ 16] [6688990106051301] +18:08:46 [ 3] [ 6] [010000] +18:08:46 [ 4] [ 12] [000030000000] +18:08:46 [ 7] [ 10] [0320180841] +18:08:46 [ 11] [ 6] [824304] +18:08:46 [ 12] [ 6] [180841] +18:08:46 [ 13] [ 4] [0320] +18:08:46 [ 15] [ 4] [0320] +18:08:46 [ 18] [ 4] [6011] +18:08:46 [ 22] [ 3] [900] +18:08:46 [ 25] [ 2] [02] +18:08:46 [ 28] [ 9] [D00002000] +18:08:46 [ 32] [ 6] [621354] +18:08:46 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:08:46 [ 37] [ 12] [507903499703] +18:08:46 [ 41] [ 8] [06002200] +18:08:46 [ 42] [ 15] [NATIVE ] +18:08:46 [ 43] [ 40] [Beng Market Beng LAO] +18:08:46 [ 49] [ 3] [418] +18:08:46 [ 52] [ 16] [2C0D12CE1BFE7D62] +18:08:46 ============================================================================ +18:08:46 + + +waiting on router queue for slot.... +18:08:46 Sending to : +18:08:46 ============================================================================ +18:08:46 Sending to : +18:08:46 ============================================================================ +18:08:47 ============================================================================ +18:08:47 Slot Id : <302> +18:08:47 Transaction Type : REQUEST +18:08:47 Received From : +18:08:47 ============================================================================ +18:08:47 FNo. Len. Field Value +18:08:47 ============================================================================ +18:08:47 [ 1] [ 4] [0200] +18:08:47 [ 2] [ 16] [6688990106051301] +18:08:47 [ 3] [ 6] [010000] +18:08:47 [ 4] [ 12] [000030000000] +18:08:47 [ 7] [ 10] [0320180841] +18:08:47 [ 11] [ 6] [824304] +18:08:47 [ 12] [ 6] [180841] +18:08:47 [ 13] [ 4] [0320] +18:08:47 [ 15] [ 4] [0320] +18:08:47 [ 18] [ 4] [6011] +18:08:47 [ 22] [ 3] [900] +18:08:47 [ 25] [ 2] [02] +18:08:47 [ 28] [ 9] [D00002000] +18:08:47 [ 32] [ 6] [621354] +18:08:47 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:08:47 [ 37] [ 12] [507903499703] +18:08:47 [ 41] [ 8] [06002200] +18:08:47 [ 42] [ 15] [NATIVE ] +18:08:47 [ 43] [ 40] [Beng Market Beng LAO] +18:08:47 [ 49] [ 3] [418] +18:08:47 [ 52] [ 16] [2C0D12CE1BFE7D62] +18:08:47 ============================================================================ +18:08:47 + + +waiting on router queue for slot.... +18:08:47 Sending to : +18:08:47 ============================================================================ +18:08:47 ============================================================================ +18:08:47 Slot Id : <302> +18:08:47 Transaction Type : REQUEST +18:08:47 Received From : +18:08:47 ============================================================================ +18:08:47 FNo. Len. Field Value +18:08:47 ============================================================================ +18:08:47 [ 1] [ 4] [0200] +18:08:47 [ 2] [ 16] [6688990106051301] +18:08:47 [ 3] [ 6] [010000] +18:08:47 [ 4] [ 12] [000030000000] +18:08:47 [ 7] [ 10] [0320180841] +18:08:47 [ 11] [ 6] [824304] +18:08:47 [ 12] [ 6] [180841] +18:08:47 [ 13] [ 4] [0320] +18:08:47 [ 15] [ 4] [0320] +18:08:47 [ 18] [ 4] [6011] +18:08:47 [ 22] [ 3] [900] +18:08:47 [ 25] [ 2] [02] +18:08:47 [ 28] [ 9] [D00002000] +18:08:47 [ 32] [ 6] [621354] +18:08:47 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:08:47 [ 37] [ 12] [507903499703] +18:08:47 [ 41] [ 8] [06002200] +18:08:47 [ 42] [ 15] [NATIVE ] +18:08:47 [ 43] [ 40] [Beng Market Beng LAO] +18:08:47 [ 49] [ 3] [418] +18:08:47 [ 52] [ 16] [88B3AC43C032B9E8] +18:08:47 ============================================================================ +18:08:47 + + +waiting on router queue for slot.... +18:08:47 Sending to : <4> +18:08:47 ============================================================================ +18:08:47 ============================================================================ +18:08:47 Slot Id : <302> +18:08:47 Transaction Type : RESPONSE +18:08:47 Received From : +18:08:47 ============================================================================ +18:08:47 FNo. Len. Field Value +18:08:47 ============================================================================ +18:08:47 [ 1] [ 4] [0210] +18:08:47 [ 2] [ 16] [6688990106051301] +18:08:47 [ 3] [ 6] [010000] +18:08:47 [ 4] [ 12] [000030000000] +18:08:47 [ 11] [ 6] [824304] +18:08:47 [ 12] [ 6] [180841] +18:08:47 [ 15] [ 4] [0320] +18:08:47 [ 18] [ 4] [6011] +18:08:47 [ 32] [ 6] [621354] +18:08:47 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:08:47 [ 37] [ 12] [507903499703] +18:08:47 [ 39] [ 2] [51] +18:08:47 [ 41] [ 8] [06002200] +18:08:47 [ 49] [ 3] [418] +18:08:47 [ 54] [ 0] [] +18:08:47 ============================================================================ +18:08:47 Sending to : +18:08:47 ============================================================================ +18:08:47 + + +waiting on router queue for slot.... +18:08:48 ============================================================================ +18:08:48 Slot Id : <302> +18:08:48 Transaction Type : RESPONSE +18:08:48 Received From : +18:08:48 ============================================================================ +18:08:48 FNo. Len. Field Value +18:08:48 ============================================================================ +18:08:48 [ 1] [ 4] [0210] +18:08:48 [ 2] [ 16] [6688990106051301] +18:08:48 [ 3] [ 6] [010000] +18:08:48 [ 4] [ 12] [000030000000] +18:08:48 [ 11] [ 6] [824304] +18:08:48 [ 12] [ 6] [180841] +18:08:48 [ 15] [ 4] [0320] +18:08:48 [ 18] [ 4] [6011] +18:08:48 [ 32] [ 6] [621354] +18:08:48 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:08:48 [ 37] [ 12] [507903499703] +18:08:48 [ 39] [ 2] [51] +18:08:48 [ 41] [ 8] [06002200] +18:08:48 [ 49] [ 3] [418] +18:08:48 [ 54] [ 0] [] +18:08:48 ============================================================================ +18:08:48 Calculate Source COMM Id = 0 +18:08:48 ============================================================================ +18:08:48 + + +waiting on router queue for slot.... +18:08:50 ============================================================================ +18:08:50 Slot Id : <314> +18:08:50 Transaction Type : REQUEST +18:08:50 Received From : +18:08:50 ============================================================================ +18:08:50 FNo. Len. Field Value +18:08:50 ============================================================================ +18:08:50 [ 1] [ 4] [0800] +18:08:50 [ 7] [ 10] [0320110757] +18:08:50 [ 11] [ 6] [157635] +18:08:50 [ 70] [ 3] [301] +18:08:50 ============================================================================ +18:08:50 + + +waiting on router queue for slot.... +18:08:50 Sending to : +18:08:50 ============================================================================ +18:08:50 ============================================================================ +18:08:50 Slot Id : <314> +18:08:50 Transaction Type : RESPONSE +18:08:50 Received From : +18:08:50 ============================================================================ +18:08:50 FNo. Len. Field Value +18:08:50 ============================================================================ +18:08:50 [ 1] [ 4] [0810] +18:08:50 [ 7] [ 10] [0320110757] +18:08:50 [ 11] [ 6] [157635] +18:08:50 [ 39] [ 2] [00] +18:08:50 [ 70] [ 3] [301] +18:08:50 ============================================================================ +18:08:50 Calculate Source COMM Id = 2 +18:08:50 ============================================================================ +18:08:50 + + +waiting on router queue for slot.... +18:09:02 ============================================================================ +18:09:02 Slot Id : <292> +18:09:02 Transaction Type : REQUEST +18:09:02 Received From : +18:09:02 ============================================================================ +18:09:02 FNo. Len. Field Value +18:09:02 ============================================================================ +18:09:02 [ 1] [ 4] [0800] +18:09:02 [ 7] [ 10] [0320110808] +18:09:02 [ 11] [ 6] [157636] +18:09:02 [ 70] [ 3] [301] +18:09:02 ============================================================================ +18:09:02 + + +waiting on router queue for slot.... +18:09:02 Sending to : +18:09:02 ============================================================================ +18:09:02 ============================================================================ +18:09:02 Slot Id : <292> +18:09:02 Transaction Type : RESPONSE +18:09:02 Received From : +18:09:02 ============================================================================ +18:09:02 FNo. Len. Field Value +18:09:02 ============================================================================ +18:09:02 [ 1] [ 4] [0810] +18:09:02 [ 7] [ 10] [0320110808] +18:09:02 [ 11] [ 6] [157636] +18:09:02 [ 39] [ 2] [00] +18:09:02 [ 70] [ 3] [301] +18:09:02 ============================================================================ +18:09:02 Calculate Source COMM Id = 2 +18:09:02 ============================================================================ +18:09:02 + + +waiting on router queue for slot.... +18:09:03 ============================================================================ +18:09:03 Slot Id : <335> +18:09:03 Transaction Type : REQUEST +18:09:03 Received From : +18:09:03 ============================================================================ +18:09:03 FNo. Len. Field Value +18:09:03 ============================================================================ +18:09:03 [ 1] [ 4] [0200] +18:09:03 [ 2] [ 16] [6213544001640306] +18:09:03 [ 3] [ 6] [311000] +18:09:03 [ 4] [ 12] [000000000000] +18:09:03 [ 7] [ 10] [0320181648] +18:09:03 [ 11] [ 6] [010442] +18:09:03 [ 12] [ 6] [181648] +18:09:03 [ 13] [ 4] [0320] +18:09:03 [ 14] [ 4] [4912] +18:09:03 [ 15] [ 4] [0320] +18:09:03 [ 18] [ 4] [6011] +18:09:03 [ 22] [ 3] [900] +18:09:03 [ 25] [ 2] [02] +18:09:03 [ 28] [ 9] [000000000] +18:09:03 [ 32] [ 6] [220699] +18:09:03 [ 35] [ 32] [6213544001640306=491212014030884] +18:09:03 [ 37] [ 12] [507900220667] +18:09:03 [ 41] [ 8] [05000200] +18:09:03 [ 42] [ 15] [APTRA ] +18:09:03 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:09:03 [ 49] [ 3] [418] +18:09:03 [ 52] [ 16] [D671F465FDD81BCA] +18:09:03 ============================================================================ +18:09:03 + + +waiting on router queue for slot.... +18:09:03 Sending to : +18:09:03 ============================================================================ +18:09:03 Sending to : +18:09:03 ============================================================================ +18:09:04 ============================================================================ +18:09:04 Slot Id : <335> +18:09:04 Transaction Type : REQUEST +18:09:04 Received From : +18:09:04 ============================================================================ +18:09:04 FNo. Len. Field Value +18:09:04 ============================================================================ +18:09:04 [ 1] [ 4] [0200] +18:09:04 [ 2] [ 16] [6213544001640306] +18:09:04 [ 3] [ 6] [311000] +18:09:04 [ 4] [ 12] [000000000000] +18:09:04 [ 7] [ 10] [0320181648] +18:09:04 [ 11] [ 6] [010442] +18:09:04 [ 12] [ 6] [181648] +18:09:04 [ 13] [ 4] [0320] +18:09:04 [ 14] [ 4] [4912] +18:09:04 [ 15] [ 4] [0320] +18:09:04 [ 18] [ 4] [6011] +18:09:04 [ 22] [ 3] [900] +18:09:04 [ 25] [ 2] [02] +18:09:04 [ 28] [ 9] [000000000] +18:09:04 [ 32] [ 6] [220699] +18:09:04 [ 35] [ 32] [6213544001640306=491212014030884] +18:09:04 [ 37] [ 12] [507900220667] +18:09:04 [ 41] [ 8] [05000200] +18:09:04 [ 42] [ 15] [APTRA ] +18:09:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:09:04 [ 49] [ 3] [418] +18:09:04 [ 52] [ 16] [D671F465FDD81BCA] +18:09:04 ============================================================================ +18:09:04 + + +waiting on router queue for slot.... +18:09:04 Sending to : +18:09:04 ============================================================================ +18:09:04 ============================================================================ +18:09:04 Slot Id : <335> +18:09:04 Transaction Type : REQUEST +18:09:04 Received From : +18:09:04 ============================================================================ +18:09:04 FNo. Len. Field Value +18:09:04 ============================================================================ +18:09:04 [ 1] [ 4] [0200] +18:09:04 [ 2] [ 16] [6213544001640306] +18:09:04 [ 3] [ 6] [311000] +18:09:04 [ 4] [ 12] [000000000000] +18:09:04 [ 7] [ 10] [0320181648] +18:09:04 [ 11] [ 6] [010442] +18:09:04 [ 12] [ 6] [181648] +18:09:04 [ 13] [ 4] [0320] +18:09:04 [ 14] [ 4] [4912] +18:09:04 [ 15] [ 4] [0320] +18:09:04 [ 18] [ 4] [6011] +18:09:04 [ 22] [ 3] [900] +18:09:04 [ 25] [ 2] [02] +18:09:04 [ 28] [ 9] [000000000] +18:09:04 [ 32] [ 6] [220699] +18:09:04 [ 35] [ 32] [6213544001640306=491212014030884] +18:09:04 [ 37] [ 12] [507900220667] +18:09:04 [ 41] [ 8] [05000200] +18:09:04 [ 42] [ 15] [APTRA ] +18:09:04 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:09:04 [ 49] [ 3] [418] +18:09:04 [ 52] [ 16] [C3390A5CE8683FC2] +18:09:04 ============================================================================ +18:09:04 + + +waiting on router queue for slot.... +18:09:04 Sending to : <0> +18:09:04 ============================================================================ +18:09:04 ============================================================================ +18:09:04 Slot Id : <335> +18:09:04 Transaction Type : RESPONSE +18:09:04 Received From : +18:09:04 ============================================================================ +18:09:04 FNo. Len. Field Value +18:09:04 ============================================================================ +18:09:04 [ 1] [ 4] [0210] +18:09:04 [ 2] [ 16] [6213544001640306] +18:09:04 [ 3] [ 6] [311000] +18:09:04 [ 4] [ 12] [000000000000] +18:09:04 [ 7] [ 10] [0320181648] +18:09:04 [ 11] [ 6] [010442] +18:09:04 [ 12] [ 6] [181648] +18:09:04 [ 13] [ 4] [0320] +18:09:04 [ 15] [ 4] [0320] +18:09:04 [ 18] [ 4] [6011] +18:09:04 [ 32] [ 6] [220699] +18:09:04 [ 35] [ 32] [6213544001640306=491212014030884] +18:09:04 [ 37] [ 12] [507900220667] +18:09:04 [ 38] [ 6] [986850] +18:09:04 [ 39] [ 2] [00] +18:09:04 [ 41] [ 8] [05000200] +18:09:04 [ 49] [ 3] [418] +18:09:04 [ 54] [ 40] [1001418C0000256408031002418C000025640803] +18:09:04 ============================================================================ +18:09:04 Sending to : +18:09:04 ============================================================================ +18:09:04 + + +waiting on router queue for slot.... +18:09:05 ============================================================================ +18:09:05 Slot Id : <335> +18:09:05 Transaction Type : RESPONSE +18:09:05 Received From : +18:09:05 ============================================================================ +18:09:05 FNo. Len. Field Value +18:09:05 ============================================================================ +18:09:05 [ 1] [ 4] [0210] +18:09:05 [ 2] [ 16] [6213544001640306] +18:09:05 [ 3] [ 6] [311000] +18:09:05 [ 4] [ 12] [000000000000] +18:09:05 [ 7] [ 10] [0320181648] +18:09:05 [ 11] [ 6] [010442] +18:09:05 [ 12] [ 6] [181648] +18:09:05 [ 13] [ 4] [0320] +18:09:05 [ 15] [ 4] [0320] +18:09:05 [ 18] [ 4] [6011] +18:09:05 [ 32] [ 6] [220699] +18:09:05 [ 35] [ 32] [6213544001640306=491212014030884] +18:09:05 [ 37] [ 12] [507900220667] +18:09:05 [ 38] [ 6] [986850] +18:09:05 [ 39] [ 2] [00] +18:09:05 [ 41] [ 8] [05000200] +18:09:05 [ 49] [ 3] [418] +18:09:05 [ 54] [ 40] [1001418C0000256408031002418C000025640803] +18:09:05 ============================================================================ +18:09:05 Calculate Source COMM Id = 1 +18:09:05 ============================================================================ +18:09:05 + + +waiting on router queue for slot.... +18:09:16 ============================================================================ +18:09:16 Slot Id : <333> +18:09:16 Transaction Type : REQUEST +18:09:16 Received From : +18:09:16 ============================================================================ +18:09:16 FNo. Len. Field Value +18:09:16 ============================================================================ +18:09:16 [ 1] [ 4] [0800] +18:09:16 [ 7] [ 10] [0320110823] +18:09:16 [ 11] [ 6] [157637] +18:09:16 [ 70] [ 3] [301] +18:09:16 ============================================================================ +18:09:16 + + +waiting on router queue for slot.... +18:09:16 Sending to : +18:09:16 ============================================================================ +18:09:16 ============================================================================ +18:09:16 Slot Id : <333> +18:09:16 Transaction Type : RESPONSE +18:09:16 Received From : +18:09:16 ============================================================================ +18:09:16 FNo. Len. Field Value +18:09:16 ============================================================================ +18:09:16 [ 1] [ 4] [0810] +18:09:16 [ 7] [ 10] [0320110823] +18:09:16 [ 11] [ 6] [157637] +18:09:16 [ 39] [ 2] [00] +18:09:16 [ 70] [ 3] [301] +18:09:16 ============================================================================ +18:09:16 Calculate Source COMM Id = 2 +18:09:16 ============================================================================ +18:09:16 + + +waiting on router queue for slot.... +18:09:26 ============================================================================ +18:09:26 Slot Id : <262> +18:09:26 Transaction Type : REQUEST +18:09:26 Received From : +18:09:26 ============================================================================ +18:09:26 FNo. Len. Field Value +18:09:26 ============================================================================ +18:09:26 [ 1] [ 4] [0200] +18:09:26 [ 2] [ 16] [6688990602546705] +18:09:26 [ 3] [ 6] [011000] +18:09:26 [ 4] [ 12] [000006000000] +18:09:26 [ 7] [ 10] [0320180921] +18:09:26 [ 11] [ 6] [824453] +18:09:26 [ 12] [ 6] [180921] +18:09:26 [ 13] [ 4] [0320] +18:09:26 [ 15] [ 4] [0320] +18:09:26 [ 18] [ 4] [6011] +18:09:26 [ 22] [ 3] [900] +18:09:26 [ 25] [ 2] [02] +18:09:26 [ 28] [ 9] [D00002000] +18:09:26 [ 32] [ 6] [621354] +18:09:26 [ 35] [ 37] [6688990602546705=43080061670544500000] +18:09:26 [ 37] [ 12] [507902606440] +18:09:26 [ 41] [ 8] [05004300] +18:09:26 [ 42] [ 15] [NATIVE ] +18:09:26 [ 43] [ 40] [Ka deng office LuangprabangLAO] +18:09:26 [ 49] [ 3] [418] +18:09:26 [ 52] [ 16] [7449D1EBF9E4E492] +18:09:26 ============================================================================ +18:09:26 + + +waiting on router queue for slot.... +18:09:26 Sending to : +18:09:26 ============================================================================ +18:09:26 Sending to : +18:09:26 ============================================================================ +18:09:27 ============================================================================ +18:09:27 Slot Id : <262> +18:09:27 Transaction Type : REQUEST +18:09:27 Received From : +18:09:27 ============================================================================ +18:09:27 FNo. Len. Field Value +18:09:27 ============================================================================ +18:09:27 [ 1] [ 4] [0200] +18:09:27 [ 2] [ 16] [6688990602546705] +18:09:27 [ 3] [ 6] [011000] +18:09:27 [ 4] [ 12] [000006000000] +18:09:27 [ 7] [ 10] [0320180921] +18:09:27 [ 11] [ 6] [824453] +18:09:27 [ 12] [ 6] [180921] +18:09:27 [ 13] [ 4] [0320] +18:09:27 [ 15] [ 4] [0320] +18:09:27 [ 18] [ 4] [6011] +18:09:27 [ 22] [ 3] [900] +18:09:27 [ 25] [ 2] [02] +18:09:27 [ 28] [ 9] [D00002000] +18:09:27 [ 32] [ 6] [621354] +18:09:27 [ 35] [ 37] [6688990602546705=43080061670544500000] +18:09:27 [ 37] [ 12] [507902606440] +18:09:27 [ 41] [ 8] [05004300] +18:09:27 [ 42] [ 15] [NATIVE ] +18:09:27 [ 43] [ 40] [Ka deng office LuangprabangLAO] +18:09:27 [ 49] [ 3] [418] +18:09:27 [ 52] [ 16] [7449D1EBF9E4E492] +18:09:27 ============================================================================ +18:09:27 + + +waiting on router queue for slot.... +18:09:27 Sending to : +18:09:27 ============================================================================ +18:09:27 ============================================================================ +18:09:27 Slot Id : <262> +18:09:27 Transaction Type : REQUEST +18:09:27 Received From : +18:09:27 ============================================================================ +18:09:27 FNo. Len. Field Value +18:09:27 ============================================================================ +18:09:27 [ 1] [ 4] [0200] +18:09:27 [ 2] [ 16] [6688990602546705] +18:09:27 [ 3] [ 6] [011000] +18:09:27 [ 4] [ 12] [000006000000] +18:09:27 [ 7] [ 10] [0320180921] +18:09:27 [ 11] [ 6] [824453] +18:09:27 [ 12] [ 6] [180921] +18:09:27 [ 13] [ 4] [0320] +18:09:27 [ 15] [ 4] [0320] +18:09:27 [ 18] [ 4] [6011] +18:09:27 [ 22] [ 3] [900] +18:09:27 [ 25] [ 2] [02] +18:09:27 [ 28] [ 9] [D00002000] +18:09:27 [ 32] [ 6] [621354] +18:09:27 [ 35] [ 37] [6688990602546705=43080061670544500000] +18:09:27 [ 37] [ 12] [507902606440] +18:09:27 [ 41] [ 8] [05004300] +18:09:27 [ 42] [ 15] [NATIVE ] +18:09:27 [ 43] [ 40] [Ka deng office LuangprabangLAO] +18:09:27 [ 49] [ 3] [418] +18:09:27 [ 52] [ 16] [E63F2FD7AECDCB2D] +18:09:27 ============================================================================ +18:09:27 + + +waiting on router queue for slot.... +18:09:27 Sending to : <4> +18:09:27 ============================================================================ +18:09:27 ============================================================================ +18:09:27 Slot Id : <334> +18:09:27 Transaction Type : REQUEST +18:09:27 Received From : +18:09:27 ============================================================================ +18:09:27 FNo. Len. Field Value +18:09:27 ============================================================================ +18:09:27 [ 1] [ 4] [0800] +18:09:27 [ 7] [ 10] [0320110834] +18:09:27 [ 11] [ 6] [157638] +18:09:27 [ 70] [ 3] [301] +18:09:27 ============================================================================ +18:09:27 + + +waiting on router queue for slot.... +18:09:27 Sending to : +18:09:27 ============================================================================ +18:09:27 ============================================================================ +18:09:27 Slot Id : <334> +18:09:27 Transaction Type : RESPONSE +18:09:27 Received From : +18:09:27 ============================================================================ +18:09:27 FNo. Len. Field Value +18:09:27 ============================================================================ +18:09:27 [ 1] [ 4] [0810] +18:09:27 [ 7] [ 10] [0320110834] +18:09:27 [ 11] [ 6] [157638] +18:09:27 [ 39] [ 2] [00] +18:09:27 [ 70] [ 3] [301] +18:09:27 ============================================================================ +18:09:27 Calculate Source COMM Id = 2 +18:09:27 ============================================================================ +18:09:27 + + +waiting on router queue for slot.... +18:09:28 ============================================================================ +18:09:28 Slot Id : <262> +18:09:28 Transaction Type : RESPONSE +18:09:28 Received From : +18:09:28 ============================================================================ +18:09:28 FNo. Len. Field Value +18:09:28 ============================================================================ +18:09:28 [ 1] [ 4] [0210] +18:09:28 [ 2] [ 16] [6688990602546705] +18:09:28 [ 3] [ 6] [011000] +18:09:28 [ 4] [ 12] [000006000000] +18:09:28 [ 11] [ 6] [824453] +18:09:28 [ 12] [ 6] [180921] +18:09:28 [ 15] [ 4] [0320] +18:09:28 [ 18] [ 4] [6011] +18:09:28 [ 32] [ 6] [621354] +18:09:28 [ 35] [ 37] [6688990602546705=43080061670544500000] +18:09:28 [ 37] [ 12] [507902606440] +18:09:28 [ 38] [ 6] [961956] +18:09:28 [ 39] [ 2] [00] +18:09:28 [ 41] [ 8] [05004300] +18:09:28 [ 49] [ 3] [418] +18:09:28 [ 54] [ 20] [1002418C000015611883] +18:09:28 ============================================================================ +18:09:28 Sending to : +18:09:28 ============================================================================ +18:09:28 + + +waiting on router queue for slot.... +18:09:29 ============================================================================ +18:09:29 Slot Id : <262> +18:09:29 Transaction Type : RESPONSE +18:09:29 Received From : +18:09:29 ============================================================================ +18:09:29 FNo. Len. Field Value +18:09:29 ============================================================================ +18:09:29 [ 1] [ 4] [0210] +18:09:29 [ 2] [ 16] [6688990602546705] +18:09:29 [ 3] [ 6] [011000] +18:09:29 [ 4] [ 12] [000006000000] +18:09:29 [ 11] [ 6] [824453] +18:09:29 [ 12] [ 6] [180921] +18:09:29 [ 15] [ 4] [0320] +18:09:29 [ 18] [ 4] [6011] +18:09:29 [ 32] [ 6] [621354] +18:09:29 [ 35] [ 37] [6688990602546705=43080061670544500000] +18:09:29 [ 37] [ 12] [507902606440] +18:09:29 [ 38] [ 6] [961956] +18:09:29 [ 39] [ 2] [00] +18:09:29 [ 41] [ 8] [05004300] +18:09:29 [ 49] [ 3] [418] +18:09:29 [ 54] [ 20] [1002418C000015611883] +18:09:29 ============================================================================ +18:09:29 Calculate Source COMM Id = 0 +18:09:29 ============================================================================ +18:09:29 + + +waiting on router queue for slot.... +18:09:32 ============================================================================ +18:09:32 Slot Id : <336> +18:09:32 Transaction Type : REQUEST +18:09:32 Received From : +18:09:32 ============================================================================ +18:09:32 FNo. Len. Field Value +18:09:32 ============================================================================ +18:09:32 [ 1] [ 4] [0200] +18:09:32 [ 2] [ 16] [6688990100949609] +18:09:32 [ 3] [ 6] [301000] +18:09:32 [ 7] [ 10] [0320110838] +18:09:32 [ 11] [ 6] [271079] +18:09:32 [ 12] [ 6] [180838] +18:09:32 [ 13] [ 4] [0320] +18:09:32 [ 14] [ 4] [4112] +18:09:32 [ 15] [ 4] [0320] +18:09:32 [ 18] [ 4] [6011] +18:09:32 [ 19] [ 3] [418] +18:09:32 [ 22] [ 3] [021] +18:09:32 [ 25] [ 2] [01] +18:09:32 [ 32] [ 6] [180893] +18:09:32 [ 35] [ 37] [6688990100949609=41121231960945400000] +18:09:32 [ 37] [ 12] [507911271079] +18:09:32 [ 41] [ 8] [0467PSLK] +18:09:32 [ 42] [ 15] [999999 ] +18:09:32 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:09:32 [ 49] [ 3] [418] +18:09:32 [ 52] [ 16] [2400CAD38FBCA47D] +18:09:32 ============================================================================ +18:09:32 + + +waiting on router queue for slot.... +18:09:32 Sending to : +18:09:32 ============================================================================ +18:09:32 Sending to : +18:09:32 ============================================================================ +18:09:32 ============================================================================ +18:09:32 Slot Id : <336> +18:09:32 Transaction Type : REQUEST +18:09:32 Received From : +18:09:32 ============================================================================ +18:09:32 FNo. Len. Field Value +18:09:32 ============================================================================ +18:09:32 [ 1] [ 4] [0200] +18:09:32 [ 2] [ 16] [6688990100949609] +18:09:32 [ 3] [ 6] [301000] +18:09:32 [ 7] [ 10] [0320110838] +18:09:32 [ 11] [ 6] [271079] +18:09:32 [ 12] [ 6] [180838] +18:09:32 [ 13] [ 4] [0320] +18:09:32 [ 14] [ 4] [4112] +18:09:32 [ 15] [ 4] [0320] +18:09:32 [ 18] [ 4] [6011] +18:09:32 [ 19] [ 3] [418] +18:09:32 [ 22] [ 3] [021] +18:09:32 [ 25] [ 2] [01] +18:09:32 [ 32] [ 6] [180893] +18:09:32 [ 35] [ 37] [6688990100949609=41121231960945400000] +18:09:32 [ 37] [ 12] [507911271079] +18:09:32 [ 41] [ 8] [0467PSLK] +18:09:32 [ 42] [ 15] [999999 ] +18:09:32 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:09:32 [ 49] [ 3] [418] +18:09:32 [ 52] [ 16] [2400CAD38FBCA47D] +18:09:32 ============================================================================ +18:09:32 + + +waiting on router queue for slot.... +18:09:32 Sending to : +18:09:32 ============================================================================ +18:09:32 ============================================================================ +18:09:32 Slot Id : <336> +18:09:32 Transaction Type : REQUEST +18:09:32 Received From : +18:09:32 ============================================================================ +18:09:32 FNo. Len. Field Value +18:09:32 ============================================================================ +18:09:32 [ 1] [ 4] [0200] +18:09:32 [ 2] [ 16] [6688990100949609] +18:09:32 [ 3] [ 6] [301000] +18:09:32 [ 7] [ 10] [0320110838] +18:09:32 [ 11] [ 6] [271079] +18:09:32 [ 12] [ 6] [180838] +18:09:32 [ 13] [ 4] [0320] +18:09:32 [ 14] [ 4] [4112] +18:09:32 [ 15] [ 4] [0320] +18:09:32 [ 18] [ 4] [6011] +18:09:32 [ 19] [ 3] [418] +18:09:32 [ 22] [ 3] [021] +18:09:32 [ 25] [ 2] [01] +18:09:32 [ 32] [ 6] [180893] +18:09:32 [ 35] [ 37] [6688990100949609=41121231960945400000] +18:09:32 [ 37] [ 12] [507911271079] +18:09:32 [ 41] [ 8] [0467PSLK] +18:09:32 [ 42] [ 15] [999999 ] +18:09:32 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:09:32 [ 49] [ 3] [418] +18:09:32 [ 52] [ 16] [01EC0E38A546526A] +18:09:32 ============================================================================ +18:09:32 + + +waiting on router queue for slot.... +18:09:32 Sending to : <0> +18:09:32 ============================================================================ +18:09:32 ============================================================================ +18:09:32 Slot Id : <336> +18:09:32 Transaction Type : RESPONSE +18:09:32 Received From : +18:09:32 ============================================================================ +18:09:32 FNo. Len. Field Value +18:09:32 ============================================================================ +18:09:32 [ 1] [ 4] [0210] +18:09:32 [ 2] [ 16] [6688990100949609] +18:09:32 [ 3] [ 6] [301000] +18:09:32 [ 4] [ 12] [000000000000] +18:09:32 [ 7] [ 10] [0320110838] +18:09:32 [ 11] [ 6] [271079] +18:09:32 [ 12] [ 6] [180838] +18:09:32 [ 13] [ 4] [0320] +18:09:32 [ 15] [ 4] [0320] +18:09:32 [ 18] [ 4] [6011] +18:09:32 [ 19] [ 3] [418] +18:09:32 [ 22] [ 3] [021] +18:09:32 [ 32] [ 6] [180893] +18:09:32 [ 35] [ 37] [6688990100949609=41121231960945400000] +18:09:32 [ 37] [ 12] [507911271079] +18:09:32 [ 39] [ 2] [14] +18:09:32 [ 41] [ 8] [0467PSLK] +18:09:32 [ 49] [ 3] [418] +18:09:32 ============================================================================ +18:09:32 Sending to : +18:09:32 ============================================================================ +18:09:32 + + +waiting on router queue for slot.... +18:09:33 ============================================================================ +18:09:33 Slot Id : <336> +18:09:33 Transaction Type : RESPONSE +18:09:33 Received From : +18:09:33 ============================================================================ +18:09:33 FNo. Len. Field Value +18:09:33 ============================================================================ +18:09:33 [ 1] [ 4] [0210] +18:09:33 [ 2] [ 16] [6688990100949609] +18:09:33 [ 3] [ 6] [301000] +18:09:33 [ 4] [ 12] [000000000000] +18:09:33 [ 7] [ 10] [0320110838] +18:09:33 [ 11] [ 6] [271079] +18:09:33 [ 12] [ 6] [180838] +18:09:33 [ 13] [ 4] [0320] +18:09:33 [ 15] [ 4] [0320] +18:09:33 [ 18] [ 4] [6011] +18:09:33 [ 19] [ 3] [418] +18:09:33 [ 22] [ 3] [021] +18:09:33 [ 32] [ 6] [180893] +18:09:33 [ 35] [ 37] [6688990100949609=41121231960945400000] +18:09:33 [ 37] [ 12] [507911271079] +18:09:33 [ 39] [ 2] [14] +18:09:33 [ 41] [ 8] [0467PSLK] +18:09:33 [ 49] [ 3] [418] +18:09:33 ============================================================================ +18:09:33 Calculate Source COMM Id = 2 +18:09:33 ============================================================================ +18:09:33 + + +waiting on router queue for slot.... +18:09:34 ============================================================================ +18:09:34 Slot Id : <321> +18:09:34 Transaction Type : REQUEST +18:09:34 Received From : +18:09:34 ============================================================================ +18:09:34 FNo. Len. Field Value +18:09:34 ============================================================================ +18:09:34 [ 1] [ 4] [0200] +18:09:34 [ 2] [ 16] [6213544001640306] +18:09:34 [ 3] [ 6] [011000] +18:09:34 [ 4] [ 12] [000020000000] +18:09:34 [ 7] [ 10] [0320181719] +18:09:34 [ 11] [ 6] [010443] +18:09:34 [ 12] [ 6] [181719] +18:09:34 [ 13] [ 4] [0320] +18:09:34 [ 14] [ 4] [4912] +18:09:34 [ 15] [ 4] [0320] +18:09:34 [ 18] [ 4] [6011] +18:09:34 [ 22] [ 3] [900] +18:09:34 [ 25] [ 2] [02] +18:09:34 [ 28] [ 9] [D00002000] +18:09:34 [ 32] [ 6] [220699] +18:09:34 [ 35] [ 32] [6213544001640306=491212014030884] +18:09:34 [ 37] [ 12] [507900220668] +18:09:34 [ 41] [ 8] [05000200] +18:09:34 [ 42] [ 15] [APTRA ] +18:09:34 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:09:34 [ 49] [ 3] [418] +18:09:34 [ 52] [ 16] [D671F465FDD81BCA] +18:09:34 ============================================================================ +18:09:34 + + +waiting on router queue for slot.... +18:09:34 Sending to : +18:09:34 ============================================================================ +18:09:34 Sending to : +18:09:34 ============================================================================ +18:09:35 ============================================================================ +18:09:35 Slot Id : <321> +18:09:35 Transaction Type : REQUEST +18:09:35 Received From : +18:09:35 ============================================================================ +18:09:35 FNo. Len. Field Value +18:09:35 ============================================================================ +18:09:35 [ 1] [ 4] [0200] +18:09:35 [ 2] [ 16] [6213544001640306] +18:09:35 [ 3] [ 6] [011000] +18:09:35 [ 4] [ 12] [000020000000] +18:09:35 [ 7] [ 10] [0320181719] +18:09:35 [ 11] [ 6] [010443] +18:09:35 [ 12] [ 6] [181719] +18:09:35 [ 13] [ 4] [0320] +18:09:35 [ 14] [ 4] [4912] +18:09:35 [ 15] [ 4] [0320] +18:09:35 [ 18] [ 4] [6011] +18:09:35 [ 22] [ 3] [900] +18:09:35 [ 25] [ 2] [02] +18:09:35 [ 28] [ 9] [D00002000] +18:09:35 [ 32] [ 6] [220699] +18:09:35 [ 35] [ 32] [6213544001640306=491212014030884] +18:09:35 [ 37] [ 12] [507900220668] +18:09:35 [ 41] [ 8] [05000200] +18:09:35 [ 42] [ 15] [APTRA ] +18:09:35 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:09:35 [ 49] [ 3] [418] +18:09:35 [ 52] [ 16] [D671F465FDD81BCA] +18:09:35 ============================================================================ +18:09:35 + + +waiting on router queue for slot.... +18:09:35 Sending to : +18:09:35 ============================================================================ +18:09:35 ============================================================================ +18:09:35 Slot Id : <321> +18:09:35 Transaction Type : REQUEST +18:09:35 Received From : +18:09:35 ============================================================================ +18:09:35 FNo. Len. Field Value +18:09:35 ============================================================================ +18:09:35 [ 1] [ 4] [0200] +18:09:35 [ 2] [ 16] [6213544001640306] +18:09:35 [ 3] [ 6] [011000] +18:09:35 [ 4] [ 12] [000020000000] +18:09:35 [ 7] [ 10] [0320181719] +18:09:35 [ 11] [ 6] [010443] +18:09:35 [ 12] [ 6] [181719] +18:09:35 [ 13] [ 4] [0320] +18:09:35 [ 14] [ 4] [4912] +18:09:35 [ 15] [ 4] [0320] +18:09:35 [ 18] [ 4] [6011] +18:09:35 [ 22] [ 3] [900] +18:09:35 [ 25] [ 2] [02] +18:09:35 [ 28] [ 9] [D00002000] +18:09:35 [ 32] [ 6] [220699] +18:09:35 [ 35] [ 32] [6213544001640306=491212014030884] +18:09:35 [ 37] [ 12] [507900220668] +18:09:35 [ 41] [ 8] [05000200] +18:09:35 [ 42] [ 15] [APTRA ] +18:09:35 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:09:35 [ 49] [ 3] [418] +18:09:35 [ 52] [ 16] [C3390A5CE8683FC2] +18:09:35 ============================================================================ +18:09:35 + + +waiting on router queue for slot.... +18:09:35 Sending to : <0> +18:09:35 ============================================================================ +18:09:36 ============================================================================ +18:09:36 Slot Id : <321> +18:09:36 Transaction Type : RESPONSE +18:09:36 Received From : +18:09:36 ============================================================================ +18:09:36 FNo. Len. Field Value +18:09:36 ============================================================================ +18:09:36 [ 1] [ 4] [0210] +18:09:36 [ 2] [ 16] [6213544001640306] +18:09:36 [ 3] [ 6] [011000] +18:09:36 [ 4] [ 12] [000020000000] +18:09:36 [ 7] [ 10] [0320181719] +18:09:36 [ 11] [ 6] [010443] +18:09:36 [ 12] [ 6] [181719] +18:09:36 [ 13] [ 4] [0320] +18:09:36 [ 15] [ 4] [0320] +18:09:36 [ 18] [ 4] [6011] +18:09:36 [ 32] [ 6] [220699] +18:09:36 [ 35] [ 32] [6213544001640306=491212014030884] +18:09:36 [ 37] [ 12] [507900220668] +18:09:36 [ 38] [ 6] [054921] +18:09:36 [ 39] [ 2] [00] +18:09:36 [ 41] [ 8] [05000200] +18:09:36 [ 49] [ 3] [418] +18:09:36 [ 54] [ 40] [1001418C0000054408031002418C000005440803] +18:09:36 ============================================================================ +18:09:36 Sending to : +18:09:36 ============================================================================ +18:09:36 + + +waiting on router queue for slot.... +18:09:38 ============================================================================ +18:09:38 Slot Id : <321> +18:09:38 Transaction Type : RESPONSE +18:09:38 Received From : +18:09:38 ============================================================================ +18:09:38 FNo. Len. Field Value +18:09:38 ============================================================================ +18:09:38 [ 1] [ 4] [0210] +18:09:38 [ 2] [ 16] [6213544001640306] +18:09:38 [ 3] [ 6] [011000] +18:09:38 [ 4] [ 12] [000020000000] +18:09:38 [ 7] [ 10] [0320181719] +18:09:38 [ 11] [ 6] [010443] +18:09:38 [ 12] [ 6] [181719] +18:09:38 [ 13] [ 4] [0320] +18:09:38 [ 15] [ 4] [0320] +18:09:38 [ 18] [ 4] [6011] +18:09:38 [ 32] [ 6] [220699] +18:09:38 [ 35] [ 32] [6213544001640306=491212014030884] +18:09:38 [ 37] [ 12] [507900220668] +18:09:38 [ 38] [ 6] [054921] +18:09:38 [ 39] [ 2] [00] +18:09:38 [ 41] [ 8] [05000200] +18:09:38 [ 49] [ 3] [418] +18:09:38 [ 54] [ 40] [1001418C0000054408031002418C000005440803] +18:09:38 ============================================================================ +18:09:38 Calculate Source COMM Id = 1 +18:09:38 ============================================================================ +18:09:38 + + +waiting on router queue for slot.... +18:09:45 ============================================================================ +18:09:45 Slot Id : <341> +18:09:45 Transaction Type : REQUEST +18:09:45 Received From : +18:09:45 ============================================================================ +18:09:45 FNo. Len. Field Value +18:09:45 ============================================================================ +18:09:45 [ 1] [ 4] [0200] +18:09:45 [ 2] [ 16] [6213544002187984] +18:09:45 [ 3] [ 6] [010000] +18:09:45 [ 4] [ 12] [000050000000] +18:09:45 [ 7] [ 10] [0320110851] +18:09:45 [ 11] [ 6] [271081] +18:09:45 [ 12] [ 6] [180851] +18:09:45 [ 13] [ 4] [0320] +18:09:45 [ 14] [ 4] [4912] +18:09:45 [ 15] [ 4] [0320] +18:09:45 [ 18] [ 4] [6011] +18:09:45 [ 19] [ 3] [418] +18:09:45 [ 22] [ 3] [021] +18:09:45 [ 25] [ 2] [01] +18:09:45 [ 28] [ 9] [D00002000] +18:09:45 [ 32] [ 6] [180893] +18:09:45 [ 35] [ 32] [6213544002187984=491212018798967] +18:09:45 [ 37] [ 12] [507911271081] +18:09:45 [ 41] [ 8] [0102SAPA] +18:09:45 [ 42] [ 15] [999999 ] +18:09:45 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:09:45 [ 49] [ 3] [418] +18:09:45 [ 52] [ 16] [63F37C63E8051A9F] +18:09:45 ============================================================================ +18:09:45 + + +waiting on router queue for slot.... +18:09:45 Sending to : +18:09:45 ============================================================================ +18:09:45 Sending to : +18:09:45 ============================================================================ +18:09:45 ============================================================================ +18:09:45 Slot Id : <341> +18:09:45 Transaction Type : REQUEST +18:09:45 Received From : +18:09:45 ============================================================================ +18:09:45 FNo. Len. Field Value +18:09:45 ============================================================================ +18:09:45 [ 1] [ 4] [0200] +18:09:45 [ 2] [ 16] [6213544002187984] +18:09:45 [ 3] [ 6] [010000] +18:09:45 [ 4] [ 12] [000050000000] +18:09:45 [ 7] [ 10] [0320110851] +18:09:45 [ 11] [ 6] [271081] +18:09:45 [ 12] [ 6] [180851] +18:09:45 [ 13] [ 4] [0320] +18:09:45 [ 14] [ 4] [4912] +18:09:45 [ 15] [ 4] [0320] +18:09:45 [ 18] [ 4] [6011] +18:09:45 [ 19] [ 3] [418] +18:09:45 [ 22] [ 3] [021] +18:09:45 [ 25] [ 2] [01] +18:09:45 [ 28] [ 9] [D00002000] +18:09:45 [ 32] [ 6] [180893] +18:09:45 [ 35] [ 32] [6213544002187984=491212018798967] +18:09:45 [ 37] [ 12] [507911271081] +18:09:45 [ 41] [ 8] [0102SAPA] +18:09:45 [ 42] [ 15] [999999 ] +18:09:45 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:09:45 [ 49] [ 3] [418] +18:09:45 [ 52] [ 16] [63F37C63E8051A9F] +18:09:45 ============================================================================ +18:09:45 + + +waiting on router queue for slot.... +18:09:45 Sending to : +18:09:45 ============================================================================ +18:09:45 ============================================================================ +18:09:45 Slot Id : <341> +18:09:45 Transaction Type : REQUEST +18:09:45 Received From : +18:09:45 ============================================================================ +18:09:45 FNo. Len. Field Value +18:09:45 ============================================================================ +18:09:45 [ 1] [ 4] [0200] +18:09:45 [ 2] [ 16] [6213544002187984] +18:09:45 [ 3] [ 6] [010000] +18:09:45 [ 4] [ 12] [000050000000] +18:09:45 [ 7] [ 10] [0320110851] +18:09:45 [ 11] [ 6] [271081] +18:09:45 [ 12] [ 6] [180851] +18:09:45 [ 13] [ 4] [0320] +18:09:45 [ 14] [ 4] [4912] +18:09:45 [ 15] [ 4] [0320] +18:09:45 [ 18] [ 4] [6011] +18:09:45 [ 19] [ 3] [418] +18:09:45 [ 22] [ 3] [021] +18:09:45 [ 25] [ 2] [01] +18:09:45 [ 28] [ 9] [D00002000] +18:09:45 [ 32] [ 6] [180893] +18:09:45 [ 35] [ 32] [6213544002187984=491212018798967] +18:09:45 [ 37] [ 12] [507911271081] +18:09:45 [ 41] [ 8] [0102SAPA] +18:09:45 [ 42] [ 15] [999999 ] +18:09:45 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:09:45 [ 49] [ 3] [418] +18:09:45 [ 52] [ 16] [F448BB8B632A312F] +18:09:45 ============================================================================ +18:09:45 + + +waiting on router queue for slot.... +18:09:45 Sending to : <0> +18:09:45 ============================================================================ +18:09:46 ============================================================================ +18:09:46 Slot Id : <341> +18:09:46 Transaction Type : RESPONSE +18:09:46 Received From : +18:09:46 ============================================================================ +18:09:46 FNo. Len. Field Value +18:09:46 ============================================================================ +18:09:46 [ 1] [ 4] [0210] +18:09:46 [ 2] [ 16] [6213544002187984] +18:09:46 [ 3] [ 6] [010000] +18:09:46 [ 4] [ 12] [000050000000] +18:09:46 [ 7] [ 10] [0320110851] +18:09:46 [ 11] [ 6] [271081] +18:09:46 [ 12] [ 6] [180851] +18:09:46 [ 13] [ 4] [0320] +18:09:46 [ 15] [ 4] [0320] +18:09:46 [ 18] [ 4] [6011] +18:09:46 [ 19] [ 3] [418] +18:09:46 [ 32] [ 6] [180893] +18:09:46 [ 35] [ 32] [6213544002187984=491212018798967] +18:09:46 [ 37] [ 12] [507911271081] +18:09:46 [ 38] [ 6] [271081] +18:09:46 [ 39] [ 2] [51] +18:09:46 [ 41] [ 8] [0102SAPA] +18:09:46 [ 49] [ 3] [418] +18:09:46 [ 54] [ 40] [0001418C0000550000000002418C000055000000] +18:09:46 ============================================================================ +18:09:46 Sending to : +18:09:46 ============================================================================ +18:09:46 + + +waiting on router queue for slot.... +18:09:47 ============================================================================ +18:09:47 Slot Id : <341> +18:09:47 Transaction Type : RESPONSE +18:09:47 Received From : +18:09:47 ============================================================================ +18:09:47 FNo. Len. Field Value +18:09:47 ============================================================================ +18:09:47 [ 1] [ 4] [0210] +18:09:47 [ 2] [ 16] [6213544002187984] +18:09:47 [ 3] [ 6] [010000] +18:09:47 [ 4] [ 12] [000050000000] +18:09:47 [ 7] [ 10] [0320110851] +18:09:47 [ 11] [ 6] [271081] +18:09:47 [ 12] [ 6] [180851] +18:09:47 [ 13] [ 4] [0320] +18:09:47 [ 15] [ 4] [0320] +18:09:47 [ 18] [ 4] [6011] +18:09:47 [ 19] [ 3] [418] +18:09:47 [ 32] [ 6] [180893] +18:09:47 [ 35] [ 32] [6213544002187984=491212018798967] +18:09:47 [ 37] [ 12] [507911271081] +18:09:47 [ 38] [ 6] [271081] +18:09:47 [ 39] [ 2] [51] +18:09:47 [ 41] [ 8] [0102SAPA] +18:09:47 [ 49] [ 3] [418] +18:09:47 [ 54] [ 40] [0001418C0000550000000002418C000055000000] +18:09:47 ============================================================================ +18:09:47 Calculate Source COMM Id = 2 +18:09:47 ============================================================================ +18:09:47 + + +waiting on router queue for slot.... +18:09:47 ============================================================================ +18:09:47 Slot Id : <323> +18:09:47 Transaction Type : REQUEST +18:09:47 Received From : +18:09:47 ============================================================================ +18:09:47 FNo. Len. Field Value +18:09:47 ============================================================================ +18:09:47 [ 1] [ 4] [0800] +18:09:47 [ 2] [ 5] [02531] +18:09:47 [ 3] [ 6] [579188] +18:09:47 [ 7] [ 10] [0320110947] +18:09:47 [ 11] [ 6] [807466] +18:09:47 [ 15] [ 10] [0320110947] +18:09:47 [ 37] [ 11] [57918807466] +18:09:47 [ 70] [ 3] [001] +18:09:47 ============================================================================ +18:09:47 + + +waiting on router queue for slot.... +18:09:47 ============================================================================ +18:09:47 Slot Id : <323> +18:09:47 Transaction Type : RESPONSE +18:09:47 Received From : +18:09:47 ============================================================================ +18:09:47 FNo. Len. Field Value +18:09:47 ============================================================================ +18:09:47 [ 1] [ 4] [0810] +18:09:47 [ 7] [ 10] [0320110947] +18:09:47 [ 11] [ 6] [807466] +18:09:47 [ 15] [ 4] [0320] +18:09:47 [ 37] [ 12] [57918807466] +18:09:47 [ 39] [ 2] [00] +18:09:47 [ 70] [ 3] [001] +18:09:47 ============================================================================ +18:09:47 Sending to : +18:09:47 ============================================================================ +18:09:47 + + +waiting on router queue for slot.... +18:09:48 ============================================================================ +18:09:48 Slot Id : <320> +18:09:48 Transaction Type : REQUEST +18:09:48 Received From : +18:09:48 ============================================================================ +18:09:48 FNo. Len. Field Value +18:09:48 ============================================================================ +18:09:48 [ 1] [ 4] [0800] +18:09:48 [ 7] [ 10] [0321012136] +18:09:48 [ 11] [ 6] [182136] +18:09:48 [ 37] [ 12] [57918182136] +18:09:48 [ 70] [ 3] [301] +18:09:48 ============================================================================ +18:09:48 + + +waiting on router queue for slot.... +18:09:48 Sending to : +18:09:48 ============================================================================ +18:09:48 ============================================================================ +18:09:48 Slot Id : <320> +18:09:48 Transaction Type : RESPONSE +18:09:48 Received From : +18:09:48 ============================================================================ +18:09:48 FNo. Len. Field Value +18:09:48 ============================================================================ +18:09:48 [ 1] [ 4] [0810] +18:09:48 [ 7] [ 10] [0321012136] +18:09:48 [ 11] [ 6] [182136] +18:09:48 [ 37] [ 12] [579181821360] +18:09:48 [ 39] [ 2] [00] +18:09:48 [ 70] [ 3] [810] +18:09:48 ============================================================================ +18:09:48 Calculate Source COMM Id = 6 +18:09:48 ============================================================================ +18:09:48 + + +waiting on router queue for slot.... +18:09:57 ============================================================================ +18:09:57 Slot Id : <268> +18:09:57 Transaction Type : REQUEST +18:09:57 Received From : +18:09:57 ============================================================================ +18:09:57 FNo. Len. Field Value +18:09:57 ============================================================================ +18:09:57 [ 1] [ 4] [0800] +18:09:57 [ 7] [ 10] [0320111742] +18:09:57 [ 11] [ 6] [046250] +18:09:57 [ 37] [ 12] [57918046250] +18:09:57 [ 70] [ 3] [301] +18:09:57 ============================================================================ +18:09:57 + + +waiting on router queue for slot.... +18:09:57 Sending to : +18:09:57 ============================================================================ +18:09:57 ============================================================================ +18:09:57 Slot Id : <268> +18:09:57 Transaction Type : RESPONSE +18:09:57 Received From : +18:09:57 ============================================================================ +18:09:57 FNo. Len. Field Value +18:09:57 ============================================================================ +18:09:57 [ 1] [ 4] [0810] +18:09:57 [ 7] [ 10] [0320111742] +18:09:57 [ 11] [ 6] [046250] +18:09:57 [ 37] [ 12] [579180462500] +18:09:57 [ 39] [ 2] [00] +18:09:57 [ 70] [ 3] [810] +18:09:57 ============================================================================ +18:09:57 Calculate Source COMM Id = 1 +18:09:57 ============================================================================ +18:09:57 + + +waiting on router queue for slot.... +18:09:59 ============================================================================ +18:09:59 Slot Id : <342> +18:09:59 Transaction Type : REQUEST +18:09:59 Received From : +18:09:59 ============================================================================ +18:09:59 FNo. Len. Field Value +18:09:59 ============================================================================ +18:09:59 [ 1] [ 4] [0800] +18:09:59 [ 7] [ 10] [0320110906] +18:09:59 [ 11] [ 6] [157639] +18:09:59 [ 70] [ 3] [301] +18:09:59 ============================================================================ +18:09:59 + + +waiting on router queue for slot.... +18:09:59 Sending to : +18:09:59 ============================================================================ +18:09:59 ============================================================================ +18:09:59 Slot Id : <342> +18:09:59 Transaction Type : RESPONSE +18:09:59 Received From : +18:09:59 ============================================================================ +18:09:59 FNo. Len. Field Value +18:09:59 ============================================================================ +18:09:59 [ 1] [ 4] [0810] +18:09:59 [ 7] [ 10] [0320110906] +18:09:59 [ 11] [ 6] [157639] +18:09:59 [ 39] [ 2] [00] +18:09:59 [ 70] [ 3] [301] +18:09:59 ============================================================================ +18:09:59 Calculate Source COMM Id = 2 +18:09:59 ============================================================================ +18:09:59 + + +waiting on router queue for slot.... +18:10:08 ============================================================================ +18:10:08 Slot Id : <339> +18:10:08 Transaction Type : REQUEST +18:10:08 Received From : +18:10:08 ============================================================================ +18:10:08 FNo. Len. Field Value +18:10:08 ============================================================================ +18:10:08 [ 1] [ 4] [0200] +18:10:08 [ 2] [ 16] [6688990106051301] +18:10:08 [ 3] [ 6] [012000] +18:10:08 [ 4] [ 12] [000025000000] +18:10:08 [ 7] [ 10] [0320181003] +18:10:08 [ 11] [ 6] [824593] +18:10:08 [ 12] [ 6] [181003] +18:10:08 [ 13] [ 4] [0320] +18:10:08 [ 15] [ 4] [0320] +18:10:08 [ 18] [ 4] [6011] +18:10:08 [ 22] [ 3] [900] +18:10:08 [ 25] [ 2] [02] +18:10:08 [ 28] [ 9] [D00002000] +18:10:08 [ 32] [ 6] [621354] +18:10:08 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:10:08 [ 37] [ 12] [507903499706] +18:10:08 [ 41] [ 8] [06002200] +18:10:08 [ 42] [ 15] [NATIVE ] +18:10:08 [ 43] [ 40] [Beng Market Beng LAO] +18:10:08 [ 49] [ 3] [418] +18:10:08 [ 52] [ 16] [2C0D12CE1BFE7D62] +18:10:08 ============================================================================ +18:10:08 + + +waiting on router queue for slot.... +18:10:08 Sending to : +18:10:08 ============================================================================ +18:10:08 Sending to : +18:10:08 ============================================================================ +18:10:08 ============================================================================ +18:10:08 Slot Id : <339> +18:10:08 Transaction Type : REQUEST +18:10:08 Received From : +18:10:08 ============================================================================ +18:10:08 FNo. Len. Field Value +18:10:08 ============================================================================ +18:10:08 [ 1] [ 4] [0200] +18:10:08 [ 2] [ 16] [6688990106051301] +18:10:08 [ 3] [ 6] [012000] +18:10:08 [ 4] [ 12] [000025000000] +18:10:08 [ 7] [ 10] [0320181003] +18:10:08 [ 11] [ 6] [824593] +18:10:08 [ 12] [ 6] [181003] +18:10:08 [ 13] [ 4] [0320] +18:10:08 [ 15] [ 4] [0320] +18:10:08 [ 18] [ 4] [6011] +18:10:08 [ 22] [ 3] [900] +18:10:08 [ 25] [ 2] [02] +18:10:08 [ 28] [ 9] [D00002000] +18:10:08 [ 32] [ 6] [621354] +18:10:08 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:10:08 [ 37] [ 12] [507903499706] +18:10:08 [ 41] [ 8] [06002200] +18:10:08 [ 42] [ 15] [NATIVE ] +18:10:08 [ 43] [ 40] [Beng Market Beng LAO] +18:10:08 [ 49] [ 3] [418] +18:10:08 [ 52] [ 16] [2C0D12CE1BFE7D62] +18:10:08 ============================================================================ +18:10:08 + + +waiting on router queue for slot.... +18:10:08 Sending to : +18:10:08 ============================================================================ +18:10:08 ============================================================================ +18:10:08 Slot Id : <339> +18:10:08 Transaction Type : REQUEST +18:10:08 Received From : +18:10:08 ============================================================================ +18:10:08 FNo. Len. Field Value +18:10:08 ============================================================================ +18:10:08 [ 1] [ 4] [0200] +18:10:08 [ 2] [ 16] [6688990106051301] +18:10:08 [ 3] [ 6] [012000] +18:10:08 [ 4] [ 12] [000025000000] +18:10:08 [ 7] [ 10] [0320181003] +18:10:08 [ 11] [ 6] [824593] +18:10:08 [ 12] [ 6] [181003] +18:10:08 [ 13] [ 4] [0320] +18:10:08 [ 15] [ 4] [0320] +18:10:08 [ 18] [ 4] [6011] +18:10:08 [ 22] [ 3] [900] +18:10:08 [ 25] [ 2] [02] +18:10:08 [ 28] [ 9] [D00002000] +18:10:08 [ 32] [ 6] [621354] +18:10:08 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:10:08 [ 37] [ 12] [507903499706] +18:10:08 [ 41] [ 8] [06002200] +18:10:08 [ 42] [ 15] [NATIVE ] +18:10:08 [ 43] [ 40] [Beng Market Beng LAO] +18:10:08 [ 49] [ 3] [418] +18:10:08 [ 52] [ 16] [88B3AC43C032B9E8] +18:10:08 ============================================================================ +18:10:08 + + +waiting on router queue for slot.... +18:10:08 Sending to : <4> +18:10:08 ============================================================================ +18:10:09 ============================================================================ +18:10:09 Slot Id : <339> +18:10:09 Transaction Type : RESPONSE +18:10:09 Received From : +18:10:09 ============================================================================ +18:10:09 FNo. Len. Field Value +18:10:09 ============================================================================ +18:10:09 [ 1] [ 4] [0210] +18:10:09 [ 2] [ 16] [6688990106051301] +18:10:09 [ 3] [ 6] [012000] +18:10:09 [ 4] [ 12] [000025000000] +18:10:09 [ 11] [ 6] [824593] +18:10:09 [ 12] [ 6] [181003] +18:10:09 [ 15] [ 4] [0320] +18:10:09 [ 18] [ 4] [6011] +18:10:09 [ 32] [ 6] [621354] +18:10:09 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:10:09 [ 37] [ 12] [507903499706] +18:10:09 [ 38] [ 6] [125344] +18:10:09 [ 39] [ 2] [00] +18:10:09 [ 41] [ 8] [06002200] +18:10:09 [ 49] [ 3] [418] +18:10:09 [ 54] [ 20] [2002418C000006415134] +18:10:09 ============================================================================ +18:10:09 Sending to : +18:10:09 ============================================================================ +18:10:09 + + +waiting on router queue for slot.... +18:10:10 ============================================================================ +18:10:10 Slot Id : <352> +18:10:10 Transaction Type : REQUEST +18:10:10 Received From : +18:10:10 ============================================================================ +18:10:10 FNo. Len. Field Value +18:10:10 ============================================================================ +18:10:10 [ 1] [ 4] [0800] +18:10:10 [ 7] [ 10] [0320110917] +18:10:10 [ 11] [ 6] [157640] +18:10:10 [ 70] [ 3] [301] +18:10:10 ============================================================================ +18:10:10 + + +waiting on router queue for slot.... +18:10:10 Sending to : +18:10:10 ============================================================================ +18:10:10 ============================================================================ +18:10:10 Slot Id : <352> +18:10:10 Transaction Type : RESPONSE +18:10:10 Received From : +18:10:10 ============================================================================ +18:10:10 FNo. Len. Field Value +18:10:10 ============================================================================ +18:10:10 [ 1] [ 4] [0810] +18:10:10 [ 7] [ 10] [0320110917] +18:10:10 [ 11] [ 6] [157640] +18:10:10 [ 39] [ 2] [00] +18:10:10 [ 70] [ 3] [301] +18:10:10 ============================================================================ +18:10:10 Calculate Source COMM Id = 2 +18:10:10 ============================================================================ +18:10:10 + + +waiting on router queue for slot.... +18:10:10 ============================================================================ +18:10:10 Slot Id : <339> +18:10:10 Transaction Type : RESPONSE +18:10:10 Received From : +18:10:10 ============================================================================ +18:10:10 FNo. Len. Field Value +18:10:10 ============================================================================ +18:10:10 [ 1] [ 4] [0210] +18:10:10 [ 2] [ 16] [6688990106051301] +18:10:10 [ 3] [ 6] [012000] +18:10:10 [ 4] [ 12] [000025000000] +18:10:10 [ 11] [ 6] [824593] +18:10:10 [ 12] [ 6] [181003] +18:10:10 [ 15] [ 4] [0320] +18:10:10 [ 18] [ 4] [6011] +18:10:10 [ 32] [ 6] [621354] +18:10:10 [ 35] [ 37] [6688990106051301=43111231130129400000] +18:10:10 [ 37] [ 12] [507903499706] +18:10:10 [ 38] [ 6] [125344] +18:10:10 [ 39] [ 2] [00] +18:10:10 [ 41] [ 8] [06002200] +18:10:10 [ 49] [ 3] [418] +18:10:10 [ 54] [ 20] [2002418C000006415134] +18:10:10 ============================================================================ +18:10:10 Calculate Source COMM Id = 0 +18:10:10 ============================================================================ +18:10:10 + + +waiting on router queue for slot.... +18:10:16 ============================================================================ +18:10:16 Slot Id : <309> +18:10:16 Transaction Type : REQUEST +18:10:16 Received From : +18:10:16 ============================================================================ +18:10:16 FNo. Len. Field Value +18:10:16 ============================================================================ +18:10:16 [ 1] [ 4] [0200] +18:10:16 [ 2] [ 16] [6213545001027535] +18:10:16 [ 3] [ 6] [010000] +18:10:16 [ 4] [ 12] [000100000000] +18:10:16 [ 7] [ 10] [0320110923] +18:10:16 [ 11] [ 6] [271084] +18:10:16 [ 12] [ 6] [180923] +18:10:16 [ 13] [ 4] [0320] +18:10:16 [ 14] [ 4] [4912] +18:10:16 [ 15] [ 4] [0320] +18:10:16 [ 18] [ 4] [6011] +18:10:16 [ 19] [ 3] [418] +18:10:16 [ 22] [ 3] [021] +18:10:16 [ 25] [ 2] [01] +18:10:16 [ 28] [ 9] [D00002000] +18:10:16 [ 32] [ 6] [180893] +18:10:16 [ 35] [ 32] [6213545001027535=491212012753540] +18:10:16 [ 37] [ 12] [507911271084] +18:10:16 [ 41] [ 8] [0467PSLK] +18:10:16 [ 42] [ 15] [999999 ] +18:10:16 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:10:16 [ 49] [ 3] [418] +18:10:16 [ 52] [ 16] [DB61E1A4943E3D17] +18:10:16 ============================================================================ +18:10:16 + + +waiting on router queue for slot.... +18:10:16 Sending to : +18:10:16 ============================================================================ +18:10:16 Sending to : +18:10:16 ============================================================================ +18:10:17 ============================================================================ +18:10:17 Slot Id : <309> +18:10:17 Transaction Type : REQUEST +18:10:17 Received From : +18:10:17 ============================================================================ +18:10:17 FNo. Len. Field Value +18:10:17 ============================================================================ +18:10:17 [ 1] [ 4] [0200] +18:10:17 [ 2] [ 16] [6213545001027535] +18:10:17 [ 3] [ 6] [010000] +18:10:17 [ 4] [ 12] [000100000000] +18:10:17 [ 7] [ 10] [0320110923] +18:10:17 [ 11] [ 6] [271084] +18:10:17 [ 12] [ 6] [180923] +18:10:17 [ 13] [ 4] [0320] +18:10:17 [ 14] [ 4] [4912] +18:10:17 [ 15] [ 4] [0320] +18:10:17 [ 18] [ 4] [6011] +18:10:17 [ 19] [ 3] [418] +18:10:17 [ 22] [ 3] [021] +18:10:17 [ 25] [ 2] [01] +18:10:17 [ 28] [ 9] [D00002000] +18:10:17 [ 32] [ 6] [180893] +18:10:17 [ 35] [ 32] [6213545001027535=491212012753540] +18:10:17 [ 37] [ 12] [507911271084] +18:10:17 [ 41] [ 8] [0467PSLK] +18:10:17 [ 42] [ 15] [999999 ] +18:10:17 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:10:17 [ 49] [ 3] [418] +18:10:17 [ 52] [ 16] [DB61E1A4943E3D17] +18:10:17 ============================================================================ +18:10:17 + + +waiting on router queue for slot.... +18:10:17 Sending to : +18:10:17 ============================================================================ +18:10:17 ============================================================================ +18:10:17 Slot Id : <309> +18:10:17 Transaction Type : REQUEST +18:10:17 Received From : +18:10:17 ============================================================================ +18:10:17 FNo. Len. Field Value +18:10:17 ============================================================================ +18:10:17 [ 1] [ 4] [0200] +18:10:17 [ 2] [ 16] [6213545001027535] +18:10:17 [ 3] [ 6] [010000] +18:10:17 [ 4] [ 12] [000100000000] +18:10:17 [ 7] [ 10] [0320110923] +18:10:17 [ 11] [ 6] [271084] +18:10:17 [ 12] [ 6] [180923] +18:10:17 [ 13] [ 4] [0320] +18:10:17 [ 14] [ 4] [4912] +18:10:17 [ 15] [ 4] [0320] +18:10:17 [ 18] [ 4] [6011] +18:10:17 [ 19] [ 3] [418] +18:10:17 [ 22] [ 3] [021] +18:10:17 [ 25] [ 2] [01] +18:10:17 [ 28] [ 9] [D00002000] +18:10:17 [ 32] [ 6] [180893] +18:10:17 [ 35] [ 32] [6213545001027535=491212012753540] +18:10:17 [ 37] [ 12] [507911271084] +18:10:17 [ 41] [ 8] [0467PSLK] +18:10:17 [ 42] [ 15] [999999 ] +18:10:17 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:10:17 [ 49] [ 3] [418] +18:10:17 [ 52] [ 16] [68B0F5D351D43936] +18:10:17 ============================================================================ +18:10:17 + + +waiting on router queue for slot.... +18:10:17 Sending to : <0> +18:10:17 ============================================================================ +18:10:17 ============================================================================ +18:10:17 Slot Id : <309> +18:10:17 Transaction Type : RESPONSE +18:10:17 Received From : +18:10:17 ============================================================================ +18:10:17 FNo. Len. Field Value +18:10:17 ============================================================================ +18:10:17 [ 1] [ 4] [0210] +18:10:17 [ 2] [ 16] [6213545001027535] +18:10:17 [ 3] [ 6] [010000] +18:10:17 [ 4] [ 12] [000100000000] +18:10:17 [ 7] [ 10] [0320110923] +18:10:17 [ 11] [ 6] [271084] +18:10:17 [ 12] [ 6] [180923] +18:10:17 [ 13] [ 4] [0320] +18:10:17 [ 15] [ 4] [0320] +18:10:17 [ 18] [ 4] [6011] +18:10:17 [ 19] [ 3] [418] +18:10:17 [ 32] [ 6] [180893] +18:10:17 [ 35] [ 32] [6213545001027535=491212012753540] +18:10:17 [ 37] [ 12] [507911271084] +18:10:17 [ 38] [ 6] [044398] +18:10:17 [ 39] [ 2] [00] +18:10:17 [ 41] [ 8] [0467PSLK] +18:10:17 [ 49] [ 3] [418] +18:10:17 [ 54] [ 40] [0001418C0000463928440002418C000046392844] +18:10:17 ============================================================================ +18:10:17 Sending to : +18:10:17 ============================================================================ +18:10:17 + + +waiting on router queue for slot.... +18:10:19 ============================================================================ +18:10:19 Slot Id : <309> +18:10:19 Transaction Type : RESPONSE +18:10:19 Received From : +18:10:19 ============================================================================ +18:10:19 FNo. Len. Field Value +18:10:19 ============================================================================ +18:10:19 [ 1] [ 4] [0210] +18:10:19 [ 2] [ 16] [6213545001027535] +18:10:19 [ 3] [ 6] [010000] +18:10:19 [ 4] [ 12] [000100000000] +18:10:19 [ 7] [ 10] [0320110923] +18:10:19 [ 11] [ 6] [271084] +18:10:19 [ 12] [ 6] [180923] +18:10:19 [ 13] [ 4] [0320] +18:10:19 [ 15] [ 4] [0320] +18:10:19 [ 18] [ 4] [6011] +18:10:19 [ 19] [ 3] [418] +18:10:19 [ 32] [ 6] [180893] +18:10:19 [ 35] [ 32] [6213545001027535=491212012753540] +18:10:19 [ 37] [ 12] [507911271084] +18:10:19 [ 38] [ 6] [044398] +18:10:19 [ 39] [ 2] [00] +18:10:19 [ 41] [ 8] [0467PSLK] +18:10:19 [ 49] [ 3] [418] +18:10:19 [ 54] [ 40] [0001418C0000463928440002418C000046392844] +18:10:19 ============================================================================ +18:10:19 Calculate Source COMM Id = 2 +18:10:19 ============================================================================ +18:10:19 + + +waiting on router queue for slot.... +18:10:31 ============================================================================ +18:10:31 Slot Id : <348> +18:10:31 Transaction Type : REQUEST +18:10:31 Received From : +18:10:31 ============================================================================ +18:10:31 FNo. Len. Field Value +18:10:31 ============================================================================ +18:10:31 [ 1] [ 4] [0800] +18:10:31 [ 7] [ 10] [0320110938] +18:10:31 [ 11] [ 6] [157641] +18:10:31 [ 70] [ 3] [301] +18:10:31 ============================================================================ +18:10:31 + + +waiting on router queue for slot.... +18:10:31 Sending to : +18:10:31 ============================================================================ +18:10:31 ============================================================================ +18:10:31 Slot Id : <348> +18:10:31 Transaction Type : RESPONSE +18:10:31 Received From : +18:10:31 ============================================================================ +18:10:31 FNo. Len. Field Value +18:10:31 ============================================================================ +18:10:31 [ 1] [ 4] [0810] +18:10:31 [ 7] [ 10] [0320110938] +18:10:31 [ 11] [ 6] [157641] +18:10:31 [ 39] [ 2] [00] +18:10:31 [ 70] [ 3] [301] +18:10:31 ============================================================================ +18:10:31 Calculate Source COMM Id = 2 +18:10:31 ============================================================================ +18:10:31 + + +waiting on router queue for slot.... +18:10:41 ============================================================================ +18:10:41 Slot Id : <329> +18:10:41 Transaction Type : REQUEST +18:10:41 Received From : +18:10:41 ============================================================================ +18:10:41 FNo. Len. Field Value +18:10:41 ============================================================================ +18:10:41 [ 1] [ 4] [0200] +18:10:41 [ 2] [ 16] [2206990000018812] +18:10:41 [ 3] [ 6] [011000] +18:10:41 [ 4] [ 12] [000020000000] +18:10:41 [ 7] [ 10] [0320181036] +18:10:41 [ 11] [ 6] [824704] +18:10:41 [ 12] [ 6] [181036] +18:10:41 [ 13] [ 4] [0320] +18:10:41 [ 15] [ 4] [0320] +18:10:41 [ 18] [ 4] [6011] +18:10:41 [ 22] [ 3] [900] +18:10:41 [ 25] [ 2] [02] +18:10:41 [ 28] [ 9] [D00002000] +18:10:41 [ 32] [ 6] [621354] +18:10:41 [ 35] [ 32] [2206990000018812=960612616987947] +18:10:41 [ 37] [ 12] [507903975855] +18:10:41 [ 41] [ 8] [01011300] +18:10:41 [ 42] [ 15] [NATIVE ] +18:10:41 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +18:10:41 [ 49] [ 3] [418] +18:10:41 [ 52] [ 16] [BCAFB27A2C7091F6] +18:10:41 ============================================================================ +18:10:41 + + +waiting on router queue for slot.... +18:10:41 Sending to : +18:10:41 ============================================================================ +18:10:41 Sending to : +18:10:41 ============================================================================ +18:10:42 ============================================================================ +18:10:42 Slot Id : <347> +18:10:42 Transaction Type : REQUEST +18:10:42 Received From : +18:10:42 ============================================================================ +18:10:42 FNo. Len. Field Value +18:10:42 ============================================================================ +18:10:42 [ 1] [ 4] [0800] +18:10:42 [ 7] [ 10] [0320110948] +18:10:42 [ 11] [ 6] [157642] +18:10:42 [ 70] [ 3] [301] +18:10:42 ============================================================================ +18:10:42 + + +waiting on router queue for slot.... +18:10:42 Sending to : +18:10:42 ============================================================================ +18:10:42 ============================================================================ +18:10:42 Slot Id : <347> +18:10:42 Transaction Type : RESPONSE +18:10:42 Received From : +18:10:42 ============================================================================ +18:10:42 FNo. Len. Field Value +18:10:42 ============================================================================ +18:10:42 [ 1] [ 4] [0810] +18:10:42 [ 7] [ 10] [0320110948] +18:10:42 [ 11] [ 6] [157642] +18:10:42 [ 39] [ 2] [00] +18:10:42 [ 70] [ 3] [301] +18:10:42 ============================================================================ +18:10:42 Calculate Source COMM Id = 2 +18:10:42 ============================================================================ +18:10:42 + + +waiting on router queue for slot.... +18:10:42 ============================================================================ +18:10:42 Slot Id : <329> +18:10:42 Transaction Type : REQUEST +18:10:42 Received From : +18:10:42 ============================================================================ +18:10:42 FNo. Len. Field Value +18:10:42 ============================================================================ +18:10:42 [ 1] [ 4] [0200] +18:10:42 [ 2] [ 16] [2206990000018812] +18:10:42 [ 3] [ 6] [011000] +18:10:42 [ 4] [ 12] [000020000000] +18:10:42 [ 7] [ 10] [0320181036] +18:10:42 [ 11] [ 6] [824704] +18:10:42 [ 12] [ 6] [181036] +18:10:42 [ 13] [ 4] [0320] +18:10:42 [ 15] [ 4] [0320] +18:10:42 [ 18] [ 4] [6011] +18:10:42 [ 22] [ 3] [900] +18:10:42 [ 25] [ 2] [02] +18:10:42 [ 28] [ 9] [D00002000] +18:10:42 [ 32] [ 6] [621354] +18:10:42 [ 35] [ 32] [2206990000018812=960612616987947] +18:10:42 [ 37] [ 12] [507903975855] +18:10:42 [ 41] [ 8] [01011300] +18:10:42 [ 42] [ 15] [NATIVE ] +18:10:42 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +18:10:42 [ 49] [ 3] [418] +18:10:42 [ 52] [ 16] [BCAFB27A2C7091F6] +18:10:42 ============================================================================ +18:10:42 + + +waiting on router queue for slot.... +18:10:42 Sending to : +18:10:42 ============================================================================ +18:10:42 ============================================================================ +18:10:42 Slot Id : <329> +18:10:42 Transaction Type : REQUEST +18:10:42 Received From : +18:10:42 ============================================================================ +18:10:42 FNo. Len. Field Value +18:10:42 ============================================================================ +18:10:42 [ 1] [ 4] [0200] +18:10:42 [ 2] [ 16] [2206990000018812] +18:10:42 [ 3] [ 6] [011000] +18:10:42 [ 4] [ 12] [000020000000] +18:10:42 [ 7] [ 10] [0320181036] +18:10:42 [ 11] [ 6] [824704] +18:10:42 [ 12] [ 6] [181036] +18:10:42 [ 13] [ 4] [0320] +18:10:42 [ 15] [ 4] [0320] +18:10:42 [ 18] [ 4] [6011] +18:10:42 [ 22] [ 3] [900] +18:10:42 [ 25] [ 2] [02] +18:10:42 [ 28] [ 9] [D00002000] +18:10:42 [ 32] [ 6] [621354] +18:10:42 [ 35] [ 32] [2206990000018812=960612616987947] +18:10:42 [ 37] [ 12] [507903975855] +18:10:42 [ 41] [ 8] [01011300] +18:10:42 [ 42] [ 15] [NATIVE ] +18:10:42 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +18:10:42 [ 49] [ 3] [418] +18:10:42 [ 52] [ 16] [8988B153DFEBDEA2] +18:10:42 ============================================================================ +18:10:42 + + +waiting on router queue for slot.... +18:10:42 Sending to : <1> +18:10:42 ============================================================================ +18:10:44 ============================================================================ +18:10:44 Slot Id : <329> +18:10:44 Transaction Type : RESPONSE +18:10:44 Received From : +18:10:44 ============================================================================ +18:10:44 FNo. Len. Field Value +18:10:44 ============================================================================ +18:10:44 [ 1] [ 4] [0210] +18:10:44 [ 2] [ 16] [2206990000018812] +18:10:44 [ 3] [ 6] [011000] +18:10:44 [ 4] [ 12] [000020000000] +18:10:44 [ 7] [ 10] [0320181036] +18:10:44 [ 11] [ 6] [824704] +18:10:44 [ 12] [ 6] [181036] +18:10:44 [ 13] [ 4] [0320] +18:10:44 [ 15] [ 4] [0320] +18:10:44 [ 18] [ 4] [6011] +18:10:44 [ 32] [ 6] [621354] +18:10:44 [ 35] [ 32] [2206990000018812=960612616987947] +18:10:44 [ 37] [ 12] [507903975855] +18:10:44 [ 38] [ 6] [348361] +18:10:44 [ 39] [ 2] [00] +18:10:44 [ 41] [ 8] [01011300] +18:10:44 [ 49] [ 3] [418] +18:10:44 [ 54] [ 40] [1001418C0000803059001002418C000080305900] +18:10:44 ============================================================================ +18:10:44 Sending to : +18:10:44 ============================================================================ +18:10:44 + + +waiting on router queue for slot.... +18:10:46 ============================================================================ +18:10:46 Slot Id : <329> +18:10:46 Transaction Type : RESPONSE +18:10:46 Received From : +18:10:46 ============================================================================ +18:10:46 FNo. Len. Field Value +18:10:46 ============================================================================ +18:10:46 [ 1] [ 4] [0210] +18:10:46 [ 2] [ 16] [2206990000018812] +18:10:46 [ 3] [ 6] [011000] +18:10:46 [ 4] [ 12] [000020000000] +18:10:46 [ 7] [ 10] [0320181036] +18:10:46 [ 11] [ 6] [824704] +18:10:46 [ 12] [ 6] [181036] +18:10:46 [ 13] [ 4] [0320] +18:10:46 [ 15] [ 4] [0320] +18:10:46 [ 18] [ 4] [6011] +18:10:46 [ 32] [ 6] [621354] +18:10:46 [ 35] [ 32] [2206990000018812=960612616987947] +18:10:46 [ 37] [ 12] [507903975855] +18:10:46 [ 38] [ 6] [348361] +18:10:46 [ 39] [ 2] [00] +18:10:46 [ 41] [ 8] [01011300] +18:10:46 [ 49] [ 3] [418] +18:10:46 [ 54] [ 40] [1001418C0000803059001002418C000080305900] +18:10:46 ============================================================================ +18:10:46 Calculate Source COMM Id = 0 +18:10:46 ============================================================================ +18:10:46 + + +waiting on router queue for slot.... +18:10:49 ============================================================================ +18:10:49 Slot Id : <328> +18:10:49 Transaction Type : REQUEST +18:10:49 Received From : +18:10:49 ============================================================================ +18:10:49 FNo. Len. Field Value +18:10:49 ============================================================================ +18:10:49 [ 1] [ 4] [0800] +18:10:49 [ 2] [ 5] [02531] +18:10:49 [ 3] [ 6] [579188] +18:10:49 [ 7] [ 10] [0320111049] +18:10:49 [ 11] [ 6] [807467] +18:10:49 [ 15] [ 10] [0320111049] +18:10:49 [ 37] [ 11] [57918807467] +18:10:49 [ 70] [ 3] [001] +18:10:49 ============================================================================ +18:10:49 + + +waiting on router queue for slot.... +18:10:49 ============================================================================ +18:10:49 Slot Id : <328> +18:10:49 Transaction Type : RESPONSE +18:10:49 Received From : +18:10:49 ============================================================================ +18:10:49 FNo. Len. Field Value +18:10:49 ============================================================================ +18:10:49 [ 1] [ 4] [0810] +18:10:49 [ 7] [ 10] [0320111049] +18:10:49 [ 11] [ 6] [807467] +18:10:49 [ 15] [ 4] [0320] +18:10:49 [ 37] [ 12] [57918807467] +18:10:49 [ 39] [ 2] [00] +18:10:49 [ 70] [ 3] [001] +18:10:49 ============================================================================ +18:10:49 Sending to : +18:10:49 ============================================================================ +18:10:49 + + +waiting on router queue for slot.... +18:10:51 ============================================================================ +18:10:51 Slot Id : <346> +18:10:51 Transaction Type : REQUEST +18:10:51 Received From : +18:10:51 ============================================================================ +18:10:51 FNo. Len. Field Value +18:10:51 ============================================================================ +18:10:51 [ 1] [ 4] [0200] +18:10:51 [ 2] [ 16] [1808930900003971] +18:10:51 [ 3] [ 6] [011000] +18:10:51 [ 4] [ 12] [000003000000] +18:10:51 [ 7] [ 10] [0320181836] +18:10:51 [ 11] [ 6] [003138] +18:10:51 [ 12] [ 6] [181836] +18:10:51 [ 13] [ 4] [0320] +18:10:51 [ 14] [ 4] [1803] +18:10:51 [ 15] [ 4] [0320] +18:10:51 [ 18] [ 4] [6011] +18:10:51 [ 22] [ 3] [900] +18:10:51 [ 25] [ 2] [02] +18:10:51 [ 28] [ 9] [D00002000] +18:10:51 [ 32] [ 6] [220699] +18:10:51 [ 35] [ 27] [1808930900003971=1803500236] +18:10:51 [ 37] [ 12] [507900186776] +18:10:51 [ 41] [ 8] [08000100] +18:10:51 [ 42] [ 15] [APTRA ] +18:10:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:10:51 [ 49] [ 3] [418] +18:10:51 [ 52] [ 16] [31A10F02028D1C58] +18:10:51 ============================================================================ +18:10:51 + + +waiting on router queue for slot.... +18:10:51 Sending to : +18:10:51 ============================================================================ +18:10:51 Sending to : +18:10:51 ============================================================================ +18:10:51 ============================================================================ +18:10:51 Slot Id : <350> +18:10:51 Transaction Type : REQUEST +18:10:51 Received From : +18:10:51 ============================================================================ +18:10:51 FNo. Len. Field Value +18:10:51 ============================================================================ +18:10:51 [ 1] [ 4] [0200] +18:10:51 [ 2] [ 16] [6688990103712202] +18:10:51 [ 3] [ 6] [010000] +18:10:51 [ 4] [ 12] [000005000000] +18:10:51 [ 7] [ 10] [0320181046] +18:10:51 [ 11] [ 6] [824723] +18:10:51 [ 12] [ 6] [181046] +18:10:51 [ 13] [ 4] [0320] +18:10:51 [ 15] [ 4] [0320] +18:10:51 [ 18] [ 4] [6011] +18:10:51 [ 22] [ 3] [900] +18:10:51 [ 25] [ 2] [02] +18:10:51 [ 28] [ 9] [D00002000] +18:10:51 [ 32] [ 6] [621354] +18:10:51 [ 35] [ 37] [6688990103712202=43011231220239600000] +18:10:51 [ 37] [ 12] [507904229481] +18:10:51 [ 41] [ 8] [05004600] +18:10:51 [ 42] [ 15] [NATIVE ] +18:10:51 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:10:51 [ 49] [ 3] [418] +18:10:51 [ 52] [ 16] [807ACFE8CFB65A09] +18:10:51 ============================================================================ +18:10:51 + + +waiting on router queue for slot.... +18:10:51 Sending to : +18:10:51 ============================================================================ +18:10:51 Sending to : +18:10:51 ============================================================================ +18:10:51 ============================================================================ +18:10:51 Slot Id : <346> +18:10:51 Transaction Type : REQUEST +18:10:51 Received From : +18:10:51 ============================================================================ +18:10:51 FNo. Len. Field Value +18:10:51 ============================================================================ +18:10:51 [ 1] [ 4] [0200] +18:10:51 [ 2] [ 16] [1808930900003971] +18:10:51 [ 3] [ 6] [011000] +18:10:51 [ 4] [ 12] [000003000000] +18:10:51 [ 7] [ 10] [0320181836] +18:10:51 [ 11] [ 6] [003138] +18:10:51 [ 12] [ 6] [181836] +18:10:51 [ 13] [ 4] [0320] +18:10:51 [ 14] [ 4] [1803] +18:10:51 [ 15] [ 4] [0320] +18:10:51 [ 18] [ 4] [6011] +18:10:51 [ 22] [ 3] [900] +18:10:51 [ 25] [ 2] [02] +18:10:51 [ 28] [ 9] [D00002000] +18:10:51 [ 32] [ 6] [220699] +18:10:51 [ 35] [ 27] [1808930900003971=1803500236] +18:10:51 [ 37] [ 12] [507900186776] +18:10:51 [ 41] [ 8] [08000100] +18:10:51 [ 42] [ 15] [APTRA ] +18:10:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:10:51 [ 49] [ 3] [418] +18:10:51 [ 52] [ 16] [31A10F02028D1C58] +18:10:51 ============================================================================ +18:10:51 + + +waiting on router queue for slot.... +18:10:51 Sending to : +18:10:51 ============================================================================ +18:10:51 ============================================================================ +18:10:51 Slot Id : <346> +18:10:51 Transaction Type : REQUEST +18:10:51 Received From : +18:10:51 ============================================================================ +18:10:51 FNo. Len. Field Value +18:10:51 ============================================================================ +18:10:51 [ 1] [ 4] [0200] +18:10:51 [ 2] [ 16] [1808930900003971] +18:10:51 [ 3] [ 6] [011000] +18:10:51 [ 4] [ 12] [000003000000] +18:10:51 [ 7] [ 10] [0320181836] +18:10:51 [ 11] [ 6] [003138] +18:10:51 [ 12] [ 6] [181836] +18:10:51 [ 13] [ 4] [0320] +18:10:51 [ 14] [ 4] [1803] +18:10:51 [ 15] [ 4] [0320] +18:10:51 [ 18] [ 4] [6011] +18:10:51 [ 22] [ 3] [900] +18:10:51 [ 25] [ 2] [02] +18:10:51 [ 28] [ 9] [D00002000] +18:10:51 [ 32] [ 6] [220699] +18:10:51 [ 35] [ 27] [1808930900003971=1803500236] +18:10:51 [ 37] [ 12] [507900186776] +18:10:51 [ 41] [ 8] [08000100] +18:10:51 [ 42] [ 15] [APTRA ] +18:10:51 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:10:51 [ 49] [ 3] [418] +18:10:51 [ 52] [ 16] [4F6EBB70BADDA109] +18:10:51 ============================================================================ +18:10:51 + + +waiting on router queue for slot.... +18:10:51 Sending to : <2> +18:10:51 ============================================================================ +18:10:51 ============================================================================ +18:10:51 Slot Id : <350> +18:10:51 Transaction Type : REQUEST +18:10:51 Received From : +18:10:51 ============================================================================ +18:10:51 FNo. Len. Field Value +18:10:51 ============================================================================ +18:10:51 [ 1] [ 4] [0200] +18:10:51 [ 2] [ 16] [6688990103712202] +18:10:51 [ 3] [ 6] [010000] +18:10:51 [ 4] [ 12] [000005000000] +18:10:51 [ 7] [ 10] [0320181046] +18:10:51 [ 11] [ 6] [824723] +18:10:51 [ 12] [ 6] [181046] +18:10:51 [ 13] [ 4] [0320] +18:10:51 [ 15] [ 4] [0320] +18:10:51 [ 18] [ 4] [6011] +18:10:51 [ 22] [ 3] [900] +18:10:51 [ 25] [ 2] [02] +18:10:51 [ 28] [ 9] [D00002000] +18:10:51 [ 32] [ 6] [621354] +18:10:51 [ 35] [ 37] [6688990103712202=43011231220239600000] +18:10:51 [ 37] [ 12] [507904229481] +18:10:51 [ 41] [ 8] [05004600] +18:10:51 [ 42] [ 15] [NATIVE ] +18:10:51 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:10:51 [ 49] [ 3] [418] +18:10:51 [ 52] [ 16] [807ACFE8CFB65A09] +18:10:51 ============================================================================ +18:10:51 + + +waiting on router queue for slot.... +18:10:51 Sending to : +18:10:51 ============================================================================ +18:10:51 ============================================================================ +18:10:51 Slot Id : <350> +18:10:51 Transaction Type : REQUEST +18:10:51 Received From : +18:10:51 ============================================================================ +18:10:51 FNo. Len. Field Value +18:10:51 ============================================================================ +18:10:51 [ 1] [ 4] [0200] +18:10:51 [ 2] [ 16] [6688990103712202] +18:10:51 [ 3] [ 6] [010000] +18:10:51 [ 4] [ 12] [000005000000] +18:10:51 [ 7] [ 10] [0320181046] +18:10:51 [ 11] [ 6] [824723] +18:10:51 [ 12] [ 6] [181046] +18:10:51 [ 13] [ 4] [0320] +18:10:51 [ 15] [ 4] [0320] +18:10:51 [ 18] [ 4] [6011] +18:10:51 [ 22] [ 3] [900] +18:10:51 [ 25] [ 2] [02] +18:10:51 [ 28] [ 9] [D00002000] +18:10:51 [ 32] [ 6] [621354] +18:10:51 [ 35] [ 37] [6688990103712202=43011231220239600000] +18:10:51 [ 37] [ 12] [507904229481] +18:10:51 [ 41] [ 8] [05004600] +18:10:51 [ 42] [ 15] [NATIVE ] +18:10:51 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:10:51 [ 49] [ 3] [418] +18:10:51 [ 52] [ 16] [2DA8FFC8336B8FC6] +18:10:51 ============================================================================ +18:10:51 + + +waiting on router queue for slot.... +18:10:51 Sending to : <4> +18:10:51 ============================================================================ +18:10:52 ============================================================================ +18:10:52 Slot Id : <350> +18:10:52 Transaction Type : RESPONSE +18:10:52 Received From : +18:10:52 ============================================================================ +18:10:52 FNo. Len. Field Value +18:10:52 ============================================================================ +18:10:52 [ 1] [ 4] [0210] +18:10:52 [ 2] [ 16] [6688990103712202] +18:10:52 [ 3] [ 6] [010000] +18:10:52 [ 4] [ 12] [000005000000] +18:10:52 [ 11] [ 6] [824723] +18:10:52 [ 12] [ 6] [181046] +18:10:52 [ 15] [ 4] [0320] +18:10:52 [ 18] [ 4] [6011] +18:10:52 [ 32] [ 6] [621354] +18:10:52 [ 35] [ 37] [6688990103712202=43011231220239600000] +18:10:52 [ 37] [ 12] [507904229481] +18:10:52 [ 38] [ 6] [444090] +18:10:52 [ 39] [ 2] [00] +18:10:52 [ 41] [ 8] [05004600] +18:10:52 [ 49] [ 3] [418] +18:10:52 [ 54] [ 20] [0002418C000002293363] +18:10:52 ============================================================================ +18:10:52 Sending to : +18:10:52 ============================================================================ +18:10:52 + + +waiting on router queue for slot.... +18:10:53 ============================================================================ +18:10:53 Slot Id : <337> +18:10:53 Transaction Type : REQUEST +18:10:53 Received From : +18:10:53 ============================================================================ +18:10:53 FNo. Len. Field Value +18:10:53 ============================================================================ +18:10:53 [ 1] [ 4] [0800] +18:10:53 [ 7] [ 10] [0321012241] +18:10:53 [ 11] [ 6] [182241] +18:10:53 [ 37] [ 12] [57918182241] +18:10:53 [ 70] [ 3] [301] +18:10:53 ============================================================================ +18:10:53 + + +waiting on router queue for slot.... +18:10:53 Sending to : +18:10:53 ============================================================================ +18:10:53 ============================================================================ +18:10:53 Slot Id : <337> +18:10:53 Transaction Type : RESPONSE +18:10:53 Received From : +18:10:53 ============================================================================ +18:10:53 FNo. Len. Field Value +18:10:53 ============================================================================ +18:10:53 [ 1] [ 4] [0810] +18:10:53 [ 7] [ 10] [0321012241] +18:10:53 [ 11] [ 6] [182241] +18:10:53 [ 37] [ 12] [579181822410] +18:10:53 [ 39] [ 2] [00] +18:10:53 [ 70] [ 3] [810] +18:10:53 ============================================================================ +18:10:53 Calculate Source COMM Id = 6 +18:10:53 ============================================================================ +18:10:53 + + +waiting on router queue for slot.... +18:10:54 ============================================================================ +18:10:54 Slot Id : <350> +18:10:54 Transaction Type : RESPONSE +18:10:54 Received From : +18:10:54 ============================================================================ +18:10:54 FNo. Len. Field Value +18:10:54 ============================================================================ +18:10:54 [ 1] [ 4] [0210] +18:10:54 [ 2] [ 16] [6688990103712202] +18:10:54 [ 3] [ 6] [010000] +18:10:54 [ 4] [ 12] [000005000000] +18:10:54 [ 11] [ 6] [824723] +18:10:54 [ 12] [ 6] [181046] +18:10:54 [ 15] [ 4] [0320] +18:10:54 [ 18] [ 4] [6011] +18:10:54 [ 32] [ 6] [621354] +18:10:54 [ 35] [ 37] [6688990103712202=43011231220239600000] +18:10:54 [ 37] [ 12] [507904229481] +18:10:54 [ 38] [ 6] [444090] +18:10:54 [ 39] [ 2] [00] +18:10:54 [ 41] [ 8] [05004600] +18:10:54 [ 49] [ 3] [418] +18:10:54 [ 54] [ 20] [0002418C000002293363] +18:10:54 ============================================================================ +18:10:54 Calculate Source COMM Id = 0 +18:10:54 ============================================================================ +18:10:54 + + +waiting on router queue for slot.... +18:10:57 ============================================================================ +18:10:57 Slot Id : <346> +18:10:57 Transaction Type : RESPONSE +18:10:57 Received From : +18:10:57 ============================================================================ +18:10:57 FNo. Len. Field Value +18:10:57 ============================================================================ +18:10:57 [ 1] [ 4] [0210] +18:10:57 [ 2] [ 16] [1808930900003971] +18:10:57 [ 3] [ 6] [011000] +18:10:57 [ 4] [ 12] [000003000000] +18:10:57 [ 6] [ 12] [000003000000] +18:10:57 [ 7] [ 10] [0320181836] +18:10:57 [ 11] [ 6] [003138] +18:10:57 [ 12] [ 6] [181836] +18:10:57 [ 13] [ 4] [0320] +18:10:57 [ 14] [ 4] [1803] +18:10:57 [ 18] [ 4] [6011] +18:10:57 [ 19] [ 3] [418] +18:10:57 [ 22] [ 3] [021] +18:10:57 [ 32] [ 6] [220699] +18:10:57 [ 35] [ 27] [1808930900003971=1803500236] +18:10:57 [ 37] [ 12] [507900186776] +18:10:57 [ 38] [ 6] [003138] +18:10:57 [ 39] [ 2] [00] +18:10:57 [ 41] [ 8] [08000100] +18:10:57 [ 49] [ 3] [418] +18:10:57 [ 52] [ 16] [4F6EBB70BADDA109] +18:10:57 [ 54] [ 20] [1001418C000005790000] +18:10:57 ============================================================================ +18:10:57 Sending to : +18:10:57 ============================================================================ +18:10:57 + + +waiting on router queue for slot.... +18:10:59 ============================================================================ +18:10:59 Slot Id : <346> +18:10:59 Transaction Type : RESPONSE +18:10:59 Received From : +18:10:59 ============================================================================ +18:10:59 FNo. Len. Field Value +18:10:59 ============================================================================ +18:10:59 [ 1] [ 4] [0210] +18:10:59 [ 2] [ 16] [1808930900003971] +18:10:59 [ 3] [ 6] [011000] +18:10:59 [ 4] [ 12] [000003000000] +18:10:59 [ 6] [ 12] [000003000000] +18:10:59 [ 7] [ 10] [0320181836] +18:10:59 [ 11] [ 6] [003138] +18:10:59 [ 12] [ 6] [181836] +18:10:59 [ 13] [ 4] [0320] +18:10:59 [ 14] [ 4] [1803] +18:10:59 [ 18] [ 4] [6011] +18:10:59 [ 19] [ 3] [418] +18:10:59 [ 22] [ 3] [021] +18:10:59 [ 32] [ 6] [220699] +18:10:59 [ 35] [ 27] [1808930900003971=1803500236] +18:10:59 [ 37] [ 12] [507900186776] +18:10:59 [ 38] [ 6] [003138] +18:10:59 [ 39] [ 2] [00] +18:10:59 [ 41] [ 8] [08000100] +18:10:59 [ 49] [ 3] [418] +18:10:59 [ 52] [ 16] [4F6EBB70BADDA109] +18:10:59 [ 54] [ 20] [1001418C000005790000] +18:10:59 ============================================================================ +18:10:59 Calculate Source COMM Id = 1 +18:10:59 ============================================================================ +18:10:59 + + +waiting on router queue for slot.... +18:11:03 ============================================================================ +18:11:03 Slot Id : <357> +18:11:03 Transaction Type : REQUEST +18:11:03 Received From : +18:11:03 ============================================================================ +18:11:03 FNo. Len. Field Value +18:11:03 ============================================================================ +18:11:03 [ 1] [ 4] [0800] +18:11:03 [ 7] [ 10] [0320111010] +18:11:03 [ 11] [ 6] [157643] +18:11:03 [ 70] [ 3] [301] +18:11:03 ============================================================================ +18:11:03 + + +waiting on router queue for slot.... +18:11:03 Sending to : +18:11:03 ============================================================================ +18:11:03 ============================================================================ +18:11:03 Slot Id : <357> +18:11:03 Transaction Type : RESPONSE +18:11:03 Received From : +18:11:03 ============================================================================ +18:11:03 FNo. Len. Field Value +18:11:03 ============================================================================ +18:11:03 [ 1] [ 4] [0810] +18:11:03 [ 7] [ 10] [0320111010] +18:11:03 [ 11] [ 6] [157643] +18:11:03 [ 39] [ 2] [00] +18:11:03 [ 70] [ 3] [301] +18:11:03 ============================================================================ +18:11:03 Calculate Source COMM Id = 2 +18:11:03 ============================================================================ +18:11:03 + + +waiting on router queue for slot.... +18:11:07 ============================================================================ +18:11:07 Slot Id : <332> +18:11:07 Transaction Type : REQUEST +18:11:07 Received From : +18:11:07 ============================================================================ +18:11:07 FNo. Len. Field Value +18:11:07 ============================================================================ +18:11:07 [ 1] [ 4] [0200] +18:11:07 [ 2] [ 16] [6688990050090891] +18:11:07 [ 3] [ 6] [301000] +18:11:07 [ 4] [ 12] [000000000000] +18:11:07 [ 7] [ 10] [0320181127] +18:11:07 [ 11] [ 6] [210186] +18:11:07 [ 12] [ 6] [181152] +18:11:07 [ 13] [ 4] [0320] +18:11:07 [ 14] [ 4] [9806] +18:11:07 [ 15] [ 4] [0320] +18:11:07 [ 18] [ 4] [6011] +18:11:07 [ 19] [ 3] [418] +18:11:07 [ 22] [ 3] [021] +18:11:07 [ 25] [ 2] [01] +18:11:07 [ 28] [ 9] [D00000000] +18:11:07 [ 32] [ 6] [198901] +18:11:07 [ 35] [ 37] [6688990050090891=98061261875250800000] +18:11:07 [ 37] [ 12] [507918210186] +18:11:07 [ 41] [ 8] [01529009] +18:11:07 [ 42] [ 15] [000000041529009] +18:11:07 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +18:11:07 [ 49] [ 3] [418] +18:11:07 [ 52] [ 16] [F433028B5C372CE0] +18:11:07 ============================================================================ +18:11:07 + + +waiting on router queue for slot.... +18:11:07 Sending to : +18:11:07 ============================================================================ +18:11:07 Sending to : +18:11:07 ============================================================================ +18:11:07 ============================================================================ +18:11:07 Slot Id : <332> +18:11:07 Transaction Type : REQUEST +18:11:07 Received From : +18:11:07 ============================================================================ +18:11:07 FNo. Len. Field Value +18:11:07 ============================================================================ +18:11:07 [ 1] [ 4] [0200] +18:11:07 [ 2] [ 16] [6688990050090891] +18:11:07 [ 3] [ 6] [301000] +18:11:07 [ 4] [ 12] [000000000000] +18:11:07 [ 7] [ 10] [0320181127] +18:11:07 [ 11] [ 6] [210186] +18:11:07 [ 12] [ 6] [181152] +18:11:07 [ 13] [ 4] [0320] +18:11:07 [ 14] [ 4] [9806] +18:11:07 [ 15] [ 4] [0320] +18:11:07 [ 18] [ 4] [6011] +18:11:07 [ 19] [ 3] [418] +18:11:07 [ 22] [ 3] [021] +18:11:07 [ 25] [ 2] [01] +18:11:07 [ 28] [ 9] [D00000000] +18:11:07 [ 32] [ 6] [198901] +18:11:07 [ 35] [ 37] [6688990050090891=98061261875250800000] +18:11:07 [ 37] [ 12] [507918210186] +18:11:07 [ 41] [ 8] [01529009] +18:11:07 [ 42] [ 15] [000000041529009] +18:11:07 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +18:11:07 [ 49] [ 3] [418] +18:11:07 [ 52] [ 16] [F433028B5C372CE0] +18:11:07 ============================================================================ +18:11:07 + + +waiting on router queue for slot.... +18:11:07 Sending to : +18:11:07 ============================================================================ +18:11:07 ============================================================================ +18:11:07 Slot Id : <332> +18:11:07 Transaction Type : REQUEST +18:11:07 Received From : +18:11:07 ============================================================================ +18:11:07 FNo. Len. Field Value +18:11:07 ============================================================================ +18:11:07 [ 1] [ 4] [0200] +18:11:07 [ 2] [ 16] [6688990050090891] +18:11:07 [ 3] [ 6] [301000] +18:11:07 [ 4] [ 12] [000000000000] +18:11:07 [ 7] [ 10] [0320181127] +18:11:07 [ 11] [ 6] [210186] +18:11:07 [ 12] [ 6] [181152] +18:11:07 [ 13] [ 4] [0320] +18:11:07 [ 14] [ 4] [9806] +18:11:07 [ 15] [ 4] [0320] +18:11:07 [ 18] [ 4] [6011] +18:11:07 [ 19] [ 3] [418] +18:11:07 [ 22] [ 3] [021] +18:11:07 [ 25] [ 2] [01] +18:11:07 [ 28] [ 9] [D00000000] +18:11:07 [ 32] [ 6] [198901] +18:11:07 [ 35] [ 37] [6688990050090891=98061261875250800000] +18:11:07 [ 37] [ 12] [507918210186] +18:11:07 [ 41] [ 8] [01529009] +18:11:07 [ 42] [ 15] [000000041529009] +18:11:07 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +18:11:07 [ 49] [ 3] [418] +18:11:07 [ 52] [ 16] [115A5AD7412A6758] +18:11:07 ============================================================================ +18:11:07 + + +waiting on router queue for slot.... +18:11:07 Sending to : <4> +18:11:07 ============================================================================ +18:11:07 ============================================================================ +18:11:07 Slot Id : <332> +18:11:07 Transaction Type : RESPONSE +18:11:07 Received From : +18:11:07 ============================================================================ +18:11:07 FNo. Len. Field Value +18:11:07 ============================================================================ +18:11:07 [ 1] [ 4] [0210] +18:11:07 [ 2] [ 16] [6688990050090891] +18:11:07 [ 3] [ 6] [301000] +18:11:07 [ 4] [ 12] [000000000000] +18:11:07 [ 7] [ 10] [0320181127] +18:11:07 [ 11] [ 6] [210186] +18:11:07 [ 12] [ 6] [181152] +18:11:07 [ 13] [ 4] [0320] +18:11:07 [ 15] [ 4] [0320] +18:11:07 [ 18] [ 4] [6011] +18:11:07 [ 22] [ 3] [021] +18:11:07 [ 32] [ 6] [198901] +18:11:07 [ 35] [ 37] [6688990050090891=98061261875250800000] +18:11:07 [ 37] [ 12] [507918210186] +18:11:07 [ 38] [ 6] [180857] +18:11:07 [ 39] [ 2] [55] +18:11:07 [ 41] [ 8] [01529009] +18:11:07 [ 49] [ 3] [418] +18:11:07 ============================================================================ +18:11:07 Sending to : +18:11:07 ============================================================================ +18:11:07 + + +waiting on router queue for slot.... +18:11:08 ============================================================================ +18:11:08 Slot Id : <332> +18:11:08 Transaction Type : RESPONSE +18:11:08 Received From : +18:11:08 ============================================================================ +18:11:08 FNo. Len. Field Value +18:11:08 ============================================================================ +18:11:08 [ 1] [ 4] [0210] +18:11:08 [ 2] [ 16] [6688990050090891] +18:11:08 [ 3] [ 6] [301000] +18:11:08 [ 4] [ 12] [000000000000] +18:11:08 [ 7] [ 10] [0320181127] +18:11:08 [ 11] [ 6] [210186] +18:11:08 [ 12] [ 6] [181152] +18:11:08 [ 13] [ 4] [0320] +18:11:08 [ 15] [ 4] [0320] +18:11:08 [ 18] [ 4] [6011] +18:11:08 [ 22] [ 3] [021] +18:11:08 [ 32] [ 6] [198901] +18:11:08 [ 35] [ 37] [6688990050090891=98061261875250800000] +18:11:08 [ 37] [ 12] [507918210186] +18:11:08 [ 38] [ 6] [180857] +18:11:08 [ 39] [ 2] [55] +18:11:08 [ 41] [ 8] [01529009] +18:11:08 [ 49] [ 3] [418] +18:11:08 ============================================================================ +18:11:08 Calculate Source COMM Id = 5 +18:11:08 ============================================================================ +18:11:08 + + +waiting on router queue for slot.... +18:11:19 ============================================================================ +18:11:19 Slot Id : <319> +18:11:19 Transaction Type : REQUEST +18:11:19 Received From : +18:11:19 ============================================================================ +18:11:19 FNo. Len. Field Value +18:11:19 ============================================================================ +18:11:19 [ 1] [ 4] [0800] +18:11:19 [ 7] [ 10] [0320111025] +18:11:19 [ 11] [ 6] [157644] +18:11:19 [ 70] [ 3] [301] +18:11:19 ============================================================================ +18:11:19 + + +waiting on router queue for slot.... +18:11:19 Sending to : +18:11:19 ============================================================================ +18:11:19 ============================================================================ +18:11:19 Slot Id : <319> +18:11:19 Transaction Type : RESPONSE +18:11:19 Received From : +18:11:19 ============================================================================ +18:11:19 FNo. Len. Field Value +18:11:19 ============================================================================ +18:11:19 [ 1] [ 4] [0810] +18:11:19 [ 7] [ 10] [0320111025] +18:11:19 [ 11] [ 6] [157644] +18:11:19 [ 39] [ 2] [00] +18:11:19 [ 70] [ 3] [301] +18:11:19 ============================================================================ +18:11:19 Calculate Source COMM Id = 2 +18:11:19 ============================================================================ +18:11:19 + + +waiting on router queue for slot.... +18:11:22 ============================================================================ +18:11:22 Slot Id : <365> +18:11:22 Transaction Type : REQUEST +18:11:22 Received From : +18:11:22 ============================================================================ +18:11:22 FNo. Len. Field Value +18:11:22 ============================================================================ +18:11:22 [ 1] [ 4] [0800] +18:11:22 [ 7] [ 10] [0320110912] +18:11:22 [ 11] [ 6] [020262] +18:11:22 [ 37] [ 12] [57918020262] +18:11:22 [ 70] [ 3] [301] +18:11:22 ============================================================================ +18:11:22 + + +waiting on router queue for slot.... +18:11:22 Sending to : +18:11:22 ============================================================================ +18:11:22 ============================================================================ +18:11:22 Slot Id : <365> +18:11:22 Transaction Type : RESPONSE +18:11:22 Received From : +18:11:22 ============================================================================ +18:11:22 FNo. Len. Field Value +18:11:22 ============================================================================ +18:11:22 [ 1] [ 4] [0810] +18:11:22 [ 7] [ 10] [0320110912] +18:11:22 [ 11] [ 6] [020262] +18:11:22 [ 37] [ 12] [579180202620] +18:11:22 [ 39] [ 2] [00] +18:11:22 [ 70] [ 3] [810] +18:11:22 ============================================================================ +18:11:22 Calculate Source COMM Id = 4 +18:11:22 ============================================================================ +18:11:22 + + +waiting on router queue for slot.... +18:11:23 ============================================================================ +18:11:23 Slot Id : <356> +18:11:23 Transaction Type : REQUEST +18:11:23 Received From : +18:11:23 ============================================================================ +18:11:23 FNo. Len. Field Value +18:11:23 ============================================================================ +18:11:23 [ 1] [ 4] [0200] +18:11:23 [ 2] [ 16] [6213545000846083] +18:11:23 [ 3] [ 6] [010000] +18:11:23 [ 4] [ 12] [000010000000] +18:11:23 [ 7] [ 10] [0320111030] +18:11:23 [ 11] [ 6] [271091] +18:11:23 [ 12] [ 6] [181030] +18:11:23 [ 13] [ 4] [0320] +18:11:23 [ 14] [ 4] [4912] +18:11:23 [ 15] [ 4] [0320] +18:11:23 [ 18] [ 4] [6011] +18:11:23 [ 19] [ 3] [418] +18:11:23 [ 22] [ 3] [021] +18:11:23 [ 25] [ 2] [01] +18:11:23 [ 28] [ 9] [D00002000] +18:11:23 [ 32] [ 6] [180893] +18:11:23 [ 35] [ 32] [6213545000846083=491212014608131] +18:11:23 [ 37] [ 12] [507911271091] +18:11:23 [ 41] [ 8] [0121SKBR] +18:11:23 [ 42] [ 15] [999999 ] +18:11:23 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +18:11:23 [ 49] [ 3] [418] +18:11:23 [ 52] [ 16] [C6F21932632B4263] +18:11:23 ============================================================================ +18:11:23 + + +waiting on router queue for slot.... +18:11:23 Sending to : +18:11:23 ============================================================================ +18:11:23 Sending to : +18:11:23 ============================================================================ +18:11:24 ============================================================================ +18:11:24 Slot Id : <356> +18:11:24 Transaction Type : REQUEST +18:11:24 Received From : +18:11:24 ============================================================================ +18:11:24 FNo. Len. Field Value +18:11:24 ============================================================================ +18:11:24 [ 1] [ 4] [0200] +18:11:24 [ 2] [ 16] [6213545000846083] +18:11:24 [ 3] [ 6] [010000] +18:11:24 [ 4] [ 12] [000010000000] +18:11:24 [ 7] [ 10] [0320111030] +18:11:24 [ 11] [ 6] [271091] +18:11:24 [ 12] [ 6] [181030] +18:11:24 [ 13] [ 4] [0320] +18:11:24 [ 14] [ 4] [4912] +18:11:24 [ 15] [ 4] [0320] +18:11:24 [ 18] [ 4] [6011] +18:11:24 [ 19] [ 3] [418] +18:11:24 [ 22] [ 3] [021] +18:11:24 [ 25] [ 2] [01] +18:11:24 [ 28] [ 9] [D00002000] +18:11:24 [ 32] [ 6] [180893] +18:11:24 [ 35] [ 32] [6213545000846083=491212014608131] +18:11:24 [ 37] [ 12] [507911271091] +18:11:24 [ 41] [ 8] [0121SKBR] +18:11:24 [ 42] [ 15] [999999 ] +18:11:24 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +18:11:24 [ 49] [ 3] [418] +18:11:24 [ 52] [ 16] [C6F21932632B4263] +18:11:24 ============================================================================ +18:11:24 + + +waiting on router queue for slot.... +18:11:24 Sending to : +18:11:24 ============================================================================ +18:11:24 ============================================================================ +18:11:24 Slot Id : <356> +18:11:24 Transaction Type : REQUEST +18:11:24 Received From : +18:11:24 ============================================================================ +18:11:24 FNo. Len. Field Value +18:11:24 ============================================================================ +18:11:24 [ 1] [ 4] [0200] +18:11:24 [ 2] [ 16] [6213545000846083] +18:11:24 [ 3] [ 6] [010000] +18:11:24 [ 4] [ 12] [000010000000] +18:11:24 [ 7] [ 10] [0320111030] +18:11:24 [ 11] [ 6] [271091] +18:11:24 [ 12] [ 6] [181030] +18:11:24 [ 13] [ 4] [0320] +18:11:24 [ 14] [ 4] [4912] +18:11:24 [ 15] [ 4] [0320] +18:11:24 [ 18] [ 4] [6011] +18:11:24 [ 19] [ 3] [418] +18:11:24 [ 22] [ 3] [021] +18:11:24 [ 25] [ 2] [01] +18:11:24 [ 28] [ 9] [D00002000] +18:11:24 [ 32] [ 6] [180893] +18:11:24 [ 35] [ 32] [6213545000846083=491212014608131] +18:11:24 [ 37] [ 12] [507911271091] +18:11:24 [ 41] [ 8] [0121SKBR] +18:11:24 [ 42] [ 15] [999999 ] +18:11:24 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +18:11:24 [ 49] [ 3] [418] +18:11:24 [ 52] [ 16] [CA8F4FC170CD4197] +18:11:24 ============================================================================ +18:11:24 + + +waiting on router queue for slot.... +18:11:24 Sending to : <0> +18:11:24 ============================================================================ +18:11:24 ============================================================================ +18:11:24 Slot Id : <330> +18:11:24 Transaction Type : REQUEST +18:11:24 Received From : +18:11:24 ============================================================================ +18:11:24 FNo. Len. Field Value +18:11:24 ============================================================================ +18:11:24 [ 1] [ 4] [0200] +18:11:24 [ 2] [ 16] [6688990600753907] +18:11:24 [ 3] [ 6] [011000] +18:11:24 [ 4] [ 12] [000030000000] +18:11:24 [ 7] [ 10] [0320181118] +18:11:24 [ 11] [ 6] [824806] +18:11:24 [ 12] [ 6] [181118] +18:11:24 [ 13] [ 4] [0320] +18:11:24 [ 15] [ 4] [0320] +18:11:24 [ 18] [ 4] [6011] +18:11:24 [ 22] [ 3] [900] +18:11:24 [ 25] [ 2] [02] +18:11:24 [ 28] [ 9] [D00002000] +18:11:24 [ 32] [ 6] [621354] +18:11:24 [ 35] [ 37] [6688990600753907=41010061390729700000] +18:11:24 [ 37] [ 12] [507904994966] +18:11:24 [ 41] [ 8] [16002100] +18:11:24 [ 42] [ 15] [NATIVE ] +18:11:24 [ 43] [ 40] [Thangone Unit Thangone LAO] +18:11:24 [ 49] [ 3] [418] +18:11:24 [ 52] [ 16] [FB9407E2F753571F] +18:11:24 ============================================================================ +18:11:24 + + +waiting on router queue for slot.... +18:11:24 Sending to : +18:11:24 ============================================================================ +18:11:24 Sending to : +18:11:24 ============================================================================ +18:11:24 ============================================================================ +18:11:24 Slot Id : <330> +18:11:24 Transaction Type : REQUEST +18:11:24 Received From : +18:11:24 ============================================================================ +18:11:24 FNo. Len. Field Value +18:11:24 ============================================================================ +18:11:24 [ 1] [ 4] [0200] +18:11:24 [ 2] [ 16] [6688990600753907] +18:11:24 [ 3] [ 6] [011000] +18:11:24 [ 4] [ 12] [000030000000] +18:11:24 [ 7] [ 10] [0320181118] +18:11:24 [ 11] [ 6] [824806] +18:11:24 [ 12] [ 6] [181118] +18:11:24 [ 13] [ 4] [0320] +18:11:24 [ 15] [ 4] [0320] +18:11:24 [ 18] [ 4] [6011] +18:11:24 [ 22] [ 3] [900] +18:11:24 [ 25] [ 2] [02] +18:11:24 [ 28] [ 9] [D00002000] +18:11:24 [ 32] [ 6] [621354] +18:11:24 [ 35] [ 37] [6688990600753907=41010061390729700000] +18:11:24 [ 37] [ 12] [507904994966] +18:11:24 [ 41] [ 8] [16002100] +18:11:24 [ 42] [ 15] [NATIVE ] +18:11:24 [ 43] [ 40] [Thangone Unit Thangone LAO] +18:11:24 [ 49] [ 3] [418] +18:11:24 [ 52] [ 16] [FB9407E2F753571F] +18:11:24 ============================================================================ +18:11:24 + + +waiting on router queue for slot.... +18:11:24 Sending to : +18:11:24 ============================================================================ +18:11:24 ============================================================================ +18:11:24 Slot Id : <330> +18:11:24 Transaction Type : REQUEST +18:11:24 Received From : +18:11:24 ============================================================================ +18:11:24 FNo. Len. Field Value +18:11:24 ============================================================================ +18:11:24 [ 1] [ 4] [0200] +18:11:24 [ 2] [ 16] [6688990600753907] +18:11:24 [ 3] [ 6] [011000] +18:11:24 [ 4] [ 12] [000030000000] +18:11:24 [ 7] [ 10] [0320181118] +18:11:24 [ 11] [ 6] [824806] +18:11:24 [ 12] [ 6] [181118] +18:11:24 [ 13] [ 4] [0320] +18:11:24 [ 15] [ 4] [0320] +18:11:24 [ 18] [ 4] [6011] +18:11:24 [ 22] [ 3] [900] +18:11:24 [ 25] [ 2] [02] +18:11:24 [ 28] [ 9] [D00002000] +18:11:24 [ 32] [ 6] [621354] +18:11:24 [ 35] [ 37] [6688990600753907=41010061390729700000] +18:11:24 [ 37] [ 12] [507904994966] +18:11:24 [ 41] [ 8] [16002100] +18:11:24 [ 42] [ 15] [NATIVE ] +18:11:24 [ 43] [ 40] [Thangone Unit Thangone LAO] +18:11:24 [ 49] [ 3] [418] +18:11:24 [ 52] [ 16] [07F9333FFA834C9C] +18:11:24 ============================================================================ +18:11:24 + + +waiting on router queue for slot.... +18:11:24 Sending to : <4> +18:11:24 ============================================================================ +18:11:24 ============================================================================ +18:11:24 Slot Id : <356> +18:11:24 Transaction Type : RESPONSE +18:11:24 Received From : +18:11:24 ============================================================================ +18:11:24 FNo. Len. Field Value +18:11:24 ============================================================================ +18:11:24 [ 1] [ 4] [0210] +18:11:24 [ 2] [ 16] [6213545000846083] +18:11:24 [ 3] [ 6] [010000] +18:11:24 [ 4] [ 12] [000010000000] +18:11:24 [ 7] [ 10] [0320111030] +18:11:24 [ 11] [ 6] [271091] +18:11:24 [ 12] [ 6] [181030] +18:11:24 [ 13] [ 4] [0320] +18:11:24 [ 15] [ 4] [0320] +18:11:24 [ 18] [ 4] [6011] +18:11:24 [ 19] [ 3] [418] +18:11:24 [ 32] [ 6] [180893] +18:11:24 [ 35] [ 32] [6213545000846083=491212014608131] +18:11:24 [ 37] [ 12] [507911271091] +18:11:24 [ 38] [ 6] [930517] +18:11:24 [ 39] [ 2] [00] +18:11:24 [ 41] [ 8] [0121SKBR] +18:11:24 [ 49] [ 3] [418] +18:11:24 [ 54] [ 40] [0001418C0000407899970002418C000040789997] +18:11:24 ============================================================================ +18:11:24 Sending to : +18:11:24 ============================================================================ +18:11:24 + + +waiting on router queue for slot.... +18:11:25 ============================================================================ +18:11:25 Slot Id : <330> +18:11:25 Transaction Type : RESPONSE +18:11:25 Received From : +18:11:25 ============================================================================ +18:11:25 FNo. Len. Field Value +18:11:25 ============================================================================ +18:11:25 [ 1] [ 4] [0210] +18:11:25 [ 2] [ 16] [6688990600753907] +18:11:25 [ 3] [ 6] [011000] +18:11:25 [ 4] [ 12] [000030000000] +18:11:25 [ 11] [ 6] [824806] +18:11:25 [ 12] [ 6] [181118] +18:11:25 [ 15] [ 4] [0320] +18:11:25 [ 18] [ 4] [6011] +18:11:25 [ 32] [ 6] [621354] +18:11:25 [ 35] [ 37] [6688990600753907=41010061390729700000] +18:11:25 [ 37] [ 12] [507904994966] +18:11:25 [ 38] [ 6] [042142] +18:11:25 [ 39] [ 2] [00] +18:11:25 [ 41] [ 8] [16002100] +18:11:25 [ 49] [ 3] [418] +18:11:25 [ 54] [ 20] [1002418C000371559554] +18:11:25 ============================================================================ +18:11:25 Sending to : +18:11:25 ============================================================================ +18:11:25 + + +waiting on router queue for slot.... +18:11:26 ============================================================================ +18:11:26 Slot Id : <356> +18:11:26 Transaction Type : RESPONSE +18:11:26 Received From : +18:11:26 ============================================================================ +18:11:26 FNo. Len. Field Value +18:11:26 ============================================================================ +18:11:26 [ 1] [ 4] [0210] +18:11:26 [ 2] [ 16] [6213545000846083] +18:11:26 [ 3] [ 6] [010000] +18:11:26 [ 4] [ 12] [000010000000] +18:11:26 [ 7] [ 10] [0320111030] +18:11:26 [ 11] [ 6] [271091] +18:11:26 [ 12] [ 6] [181030] +18:11:26 [ 13] [ 4] [0320] +18:11:26 [ 15] [ 4] [0320] +18:11:26 [ 18] [ 4] [6011] +18:11:26 [ 19] [ 3] [418] +18:11:26 [ 32] [ 6] [180893] +18:11:26 [ 35] [ 32] [6213545000846083=491212014608131] +18:11:26 [ 37] [ 12] [507911271091] +18:11:26 [ 38] [ 6] [930517] +18:11:26 [ 39] [ 2] [00] +18:11:26 [ 41] [ 8] [0121SKBR] +18:11:26 [ 49] [ 3] [418] +18:11:26 [ 54] [ 40] [0001418C0000407899970002418C000040789997] +18:11:26 ============================================================================ +18:11:26 Calculate Source COMM Id = 2 +18:11:26 ============================================================================ +18:11:26 + + +waiting on router queue for slot.... +18:11:26 ============================================================================ +18:11:26 Slot Id : <366> +18:11:26 Transaction Type : REQUEST +18:11:26 Received From : +18:11:26 ============================================================================ +18:11:26 FNo. Len. Field Value +18:11:26 ============================================================================ +18:11:26 [ 1] [ 4] [0200] +18:11:26 [ 2] [ 16] [6213545000906556] +18:11:26 [ 3] [ 6] [010000] +18:11:26 [ 4] [ 12] [000010000000] +18:11:26 [ 7] [ 10] [0320111032] +18:11:26 [ 11] [ 6] [271093] +18:11:26 [ 12] [ 6] [181032] +18:11:26 [ 13] [ 4] [0320] +18:11:26 [ 14] [ 4] [4912] +18:11:26 [ 15] [ 4] [0320] +18:11:26 [ 18] [ 4] [6011] +18:11:26 [ 19] [ 3] [418] +18:11:26 [ 22] [ 3] [021] +18:11:26 [ 25] [ 2] [01] +18:11:26 [ 28] [ 9] [D00002000] +18:11:26 [ 32] [ 6] [180893] +18:11:26 [ 35] [ 32] [6213545000906556=491212010655678] +18:11:26 [ 37] [ 12] [507911271093] +18:11:26 [ 41] [ 8] [0261PSL1] +18:11:26 [ 42] [ 15] [999999 ] +18:11:26 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +18:11:26 [ 49] [ 3] [418] +18:11:26 [ 52] [ 16] [6EF9CE55EDDAA914] +18:11:26 ============================================================================ +18:11:26 + + +waiting on router queue for slot.... +18:11:26 Sending to : +18:11:26 ============================================================================ +18:11:26 Sending to : +18:11:26 ============================================================================ +18:11:27 ============================================================================ +18:11:27 Slot Id : <366> +18:11:27 Transaction Type : REQUEST +18:11:27 Received From : +18:11:27 ============================================================================ +18:11:27 FNo. Len. Field Value +18:11:27 ============================================================================ +18:11:27 [ 1] [ 4] [0200] +18:11:27 [ 2] [ 16] [6213545000906556] +18:11:27 [ 3] [ 6] [010000] +18:11:27 [ 4] [ 12] [000010000000] +18:11:27 [ 7] [ 10] [0320111032] +18:11:27 [ 11] [ 6] [271093] +18:11:27 [ 12] [ 6] [181032] +18:11:27 [ 13] [ 4] [0320] +18:11:27 [ 14] [ 4] [4912] +18:11:27 [ 15] [ 4] [0320] +18:11:27 [ 18] [ 4] [6011] +18:11:27 [ 19] [ 3] [418] +18:11:27 [ 22] [ 3] [021] +18:11:27 [ 25] [ 2] [01] +18:11:27 [ 28] [ 9] [D00002000] +18:11:27 [ 32] [ 6] [180893] +18:11:27 [ 35] [ 32] [6213545000906556=491212010655678] +18:11:27 [ 37] [ 12] [507911271093] +18:11:27 [ 41] [ 8] [0261PSL1] +18:11:27 [ 42] [ 15] [999999 ] +18:11:27 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +18:11:27 [ 49] [ 3] [418] +18:11:27 [ 52] [ 16] [6EF9CE55EDDAA914] +18:11:27 ============================================================================ +18:11:27 + + +waiting on router queue for slot.... +18:11:27 Sending to : +18:11:27 ============================================================================ +18:11:27 ============================================================================ +18:11:27 Slot Id : <366> +18:11:27 Transaction Type : REQUEST +18:11:27 Received From : +18:11:27 ============================================================================ +18:11:27 FNo. Len. Field Value +18:11:27 ============================================================================ +18:11:27 [ 1] [ 4] [0200] +18:11:27 [ 2] [ 16] [6213545000906556] +18:11:27 [ 3] [ 6] [010000] +18:11:27 [ 4] [ 12] [000010000000] +18:11:27 [ 7] [ 10] [0320111032] +18:11:27 [ 11] [ 6] [271093] +18:11:27 [ 12] [ 6] [181032] +18:11:27 [ 13] [ 4] [0320] +18:11:27 [ 14] [ 4] [4912] +18:11:27 [ 15] [ 4] [0320] +18:11:27 [ 18] [ 4] [6011] +18:11:27 [ 19] [ 3] [418] +18:11:27 [ 22] [ 3] [021] +18:11:27 [ 25] [ 2] [01] +18:11:27 [ 28] [ 9] [D00002000] +18:11:27 [ 32] [ 6] [180893] +18:11:27 [ 35] [ 32] [6213545000906556=491212010655678] +18:11:27 [ 37] [ 12] [507911271093] +18:11:27 [ 41] [ 8] [0261PSL1] +18:11:27 [ 42] [ 15] [999999 ] +18:11:27 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +18:11:27 [ 49] [ 3] [418] +18:11:27 [ 52] [ 16] [8E2FC11E55D7A691] +18:11:27 ============================================================================ +18:11:27 + + +waiting on router queue for slot.... +18:11:27 Sending to : <0> +18:11:27 ============================================================================ +18:11:27 ============================================================================ +18:11:27 Slot Id : <330> +18:11:27 Transaction Type : RESPONSE +18:11:27 Received From : +18:11:27 ============================================================================ +18:11:27 FNo. Len. Field Value +18:11:27 ============================================================================ +18:11:27 [ 1] [ 4] [0210] +18:11:27 [ 2] [ 16] [6688990600753907] +18:11:27 [ 3] [ 6] [011000] +18:11:27 [ 4] [ 12] [000030000000] +18:11:27 [ 11] [ 6] [824806] +18:11:27 [ 12] [ 6] [181118] +18:11:27 [ 15] [ 4] [0320] +18:11:27 [ 18] [ 4] [6011] +18:11:27 [ 32] [ 6] [621354] +18:11:27 [ 35] [ 37] [6688990600753907=41010061390729700000] +18:11:27 [ 37] [ 12] [507904994966] +18:11:27 [ 38] [ 6] [042142] +18:11:27 [ 39] [ 2] [00] +18:11:27 [ 41] [ 8] [16002100] +18:11:27 [ 49] [ 3] [418] +18:11:27 [ 54] [ 20] [1002418C000371559554] +18:11:27 ============================================================================ +18:11:27 Calculate Source COMM Id = 0 +18:11:27 ============================================================================ +18:11:27 + + +waiting on router queue for slot.... +18:11:28 ============================================================================ +18:11:28 Slot Id : <366> +18:11:28 Transaction Type : RESPONSE +18:11:28 Received From : +18:11:28 ============================================================================ +18:11:28 FNo. Len. Field Value +18:11:28 ============================================================================ +18:11:28 [ 1] [ 4] [0210] +18:11:28 [ 2] [ 16] [6213545000906556] +18:11:28 [ 3] [ 6] [010000] +18:11:28 [ 4] [ 12] [000010000000] +18:11:28 [ 7] [ 10] [0320111032] +18:11:28 [ 11] [ 6] [271093] +18:11:28 [ 12] [ 6] [181032] +18:11:28 [ 13] [ 4] [0320] +18:11:28 [ 15] [ 4] [0320] +18:11:28 [ 18] [ 4] [6011] +18:11:28 [ 19] [ 3] [418] +18:11:28 [ 32] [ 6] [180893] +18:11:28 [ 35] [ 32] [6213545000906556=491212010655678] +18:11:28 [ 37] [ 12] [507911271093] +18:11:28 [ 38] [ 6] [184407] +18:11:28 [ 39] [ 2] [00] +18:11:28 [ 41] [ 8] [0261PSL1] +18:11:28 [ 49] [ 3] [418] +18:11:28 [ 54] [ 40] [0001418C0000448763260002418C000044876326] +18:11:28 ============================================================================ +18:11:28 Sending to : +18:11:28 ============================================================================ +18:11:28 + + +waiting on router queue for slot.... +18:11:28 ============================================================================ +18:11:28 Slot Id : <371> +18:11:28 Transaction Type : REQUEST +18:11:28 Received From : +18:11:28 ============================================================================ +18:11:28 FNo. Len. Field Value +18:11:28 ============================================================================ +18:11:28 [ 1] [ 4] [0200] +18:11:28 [ 2] [ 16] [6213541000664808] +18:11:28 [ 3] [ 6] [010000] +18:11:28 [ 4] [ 12] [000050000000] +18:11:28 [ 7] [ 10] [0320181913] +18:11:28 [ 11] [ 6] [189048] +18:11:28 [ 12] [ 6] [181913] +18:11:28 [ 13] [ 4] [0320] +18:11:28 [ 14] [ 4] [4912] +18:11:28 [ 15] [ 4] [0320] +18:11:28 [ 18] [ 4] [6011] +18:11:28 [ 22] [ 3] [900] +18:11:28 [ 25] [ 2] [02] +18:11:28 [ 28] [ 9] [D00002000] +18:11:28 [ 32] [ 6] [220699] +18:11:28 [ 35] [ 32] [6213541000664808=491212016480751] +18:11:28 [ 37] [ 12] [507900084378] +18:11:28 [ 41] [ 8] [01000800] +18:11:28 [ 42] [ 15] [APTRA ] +18:11:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:11:28 [ 49] [ 3] [418] +18:11:28 [ 52] [ 16] [1E29728FE5A4D742] +18:11:28 ============================================================================ +18:11:28 + + +waiting on router queue for slot.... +18:11:28 Sending to : +18:11:28 ============================================================================ +18:11:28 Sending to : +18:11:28 ============================================================================ +18:11:28 ============================================================================ +18:11:28 Slot Id : <371> +18:11:28 Transaction Type : REQUEST +18:11:28 Received From : +18:11:28 ============================================================================ +18:11:28 FNo. Len. Field Value +18:11:28 ============================================================================ +18:11:28 [ 1] [ 4] [0200] +18:11:28 [ 2] [ 16] [6213541000664808] +18:11:28 [ 3] [ 6] [010000] +18:11:28 [ 4] [ 12] [000050000000] +18:11:28 [ 7] [ 10] [0320181913] +18:11:28 [ 11] [ 6] [189048] +18:11:28 [ 12] [ 6] [181913] +18:11:28 [ 13] [ 4] [0320] +18:11:28 [ 14] [ 4] [4912] +18:11:28 [ 15] [ 4] [0320] +18:11:28 [ 18] [ 4] [6011] +18:11:28 [ 22] [ 3] [900] +18:11:28 [ 25] [ 2] [02] +18:11:28 [ 28] [ 9] [D00002000] +18:11:28 [ 32] [ 6] [220699] +18:11:28 [ 35] [ 32] [6213541000664808=491212016480751] +18:11:28 [ 37] [ 12] [507900084378] +18:11:28 [ 41] [ 8] [01000800] +18:11:28 [ 42] [ 15] [APTRA ] +18:11:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:11:28 [ 49] [ 3] [418] +18:11:28 [ 52] [ 16] [1E29728FE5A4D742] +18:11:28 ============================================================================ +18:11:28 + + +waiting on router queue for slot.... +18:11:28 Sending to : +18:11:28 ============================================================================ +18:11:28 ============================================================================ +18:11:28 Slot Id : <371> +18:11:28 Transaction Type : REQUEST +18:11:28 Received From : +18:11:28 ============================================================================ +18:11:28 FNo. Len. Field Value +18:11:28 ============================================================================ +18:11:28 [ 1] [ 4] [0200] +18:11:28 [ 2] [ 16] [6213541000664808] +18:11:28 [ 3] [ 6] [010000] +18:11:28 [ 4] [ 12] [000050000000] +18:11:28 [ 7] [ 10] [0320181913] +18:11:28 [ 11] [ 6] [189048] +18:11:28 [ 12] [ 6] [181913] +18:11:28 [ 13] [ 4] [0320] +18:11:28 [ 14] [ 4] [4912] +18:11:28 [ 15] [ 4] [0320] +18:11:28 [ 18] [ 4] [6011] +18:11:28 [ 22] [ 3] [900] +18:11:28 [ 25] [ 2] [02] +18:11:28 [ 28] [ 9] [D00002000] +18:11:28 [ 32] [ 6] [220699] +18:11:28 [ 35] [ 32] [6213541000664808=491212016480751] +18:11:28 [ 37] [ 12] [507900084378] +18:11:28 [ 41] [ 8] [01000800] +18:11:28 [ 42] [ 15] [APTRA ] +18:11:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:11:28 [ 49] [ 3] [418] +18:11:28 [ 52] [ 16] [E62175530DDE1B31] +18:11:28 ============================================================================ +18:11:28 + + +waiting on router queue for slot.... +18:11:28 Sending to : <0> +18:11:28 ============================================================================ +18:11:29 ============================================================================ +18:11:29 Slot Id : <313> +18:11:29 Transaction Type : REQUEST +18:11:29 Received From : +18:11:29 ============================================================================ +18:11:29 FNo. Len. Field Value +18:11:29 ============================================================================ +18:11:29 [ 1] [ 4] [0200] +18:11:29 [ 2] [ 16] [2206990000018812] +18:11:29 [ 3] [ 6] [301000] +18:11:29 [ 4] [ 12] [000000000000] +18:11:29 [ 7] [ 10] [0320181123] +18:11:29 [ 11] [ 6] [824825] +18:11:29 [ 12] [ 6] [181123] +18:11:29 [ 13] [ 4] [0320] +18:11:29 [ 15] [ 4] [0320] +18:11:29 [ 18] [ 4] [6011] +18:11:29 [ 22] [ 3] [900] +18:11:29 [ 25] [ 2] [02] +18:11:29 [ 28] [ 9] [D00000000] +18:11:29 [ 32] [ 6] [621354] +18:11:29 [ 35] [ 32] [2206990000018812=960612616987947] +18:11:29 [ 37] [ 12] [507903975856] +18:11:29 [ 41] [ 8] [01011300] +18:11:29 [ 42] [ 15] [NATIVE ] +18:11:29 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +18:11:29 [ 49] [ 3] [418] +18:11:29 [ 52] [ 16] [BCAFB27A2C7091F6] +18:11:29 ============================================================================ +18:11:29 + + +waiting on router queue for slot.... +18:11:29 Sending to : +18:11:29 ============================================================================ +18:11:29 Sending to : +18:11:29 ============================================================================ +18:11:29 ============================================================================ +18:11:29 Slot Id : <366> +18:11:29 Transaction Type : RESPONSE +18:11:29 Received From : +18:11:29 ============================================================================ +18:11:29 FNo. Len. Field Value +18:11:29 ============================================================================ +18:11:29 [ 1] [ 4] [0210] +18:11:29 [ 2] [ 16] [6213545000906556] +18:11:29 [ 3] [ 6] [010000] +18:11:29 [ 4] [ 12] [000010000000] +18:11:29 [ 7] [ 10] [0320111032] +18:11:29 [ 11] [ 6] [271093] +18:11:29 [ 12] [ 6] [181032] +18:11:29 [ 13] [ 4] [0320] +18:11:29 [ 15] [ 4] [0320] +18:11:29 [ 18] [ 4] [6011] +18:11:29 [ 19] [ 3] [418] +18:11:29 [ 32] [ 6] [180893] +18:11:29 [ 35] [ 32] [6213545000906556=491212010655678] +18:11:29 [ 37] [ 12] [507911271093] +18:11:29 [ 38] [ 6] [184407] +18:11:29 [ 39] [ 2] [00] +18:11:29 [ 41] [ 8] [0261PSL1] +18:11:29 [ 49] [ 3] [418] +18:11:29 [ 54] [ 40] [0001418C0000448763260002418C000044876326] +18:11:29 ============================================================================ +18:11:29 Calculate Source COMM Id = 2 +18:11:29 ============================================================================ +18:11:29 + + +waiting on router queue for slot.... +18:11:29 ============================================================================ +18:11:29 Slot Id : <313> +18:11:29 Transaction Type : REQUEST +18:11:29 Received From : +18:11:29 ============================================================================ +18:11:29 FNo. Len. Field Value +18:11:29 ============================================================================ +18:11:29 [ 1] [ 4] [0200] +18:11:29 [ 2] [ 16] [2206990000018812] +18:11:29 [ 3] [ 6] [301000] +18:11:29 [ 4] [ 12] [000000000000] +18:11:29 [ 7] [ 10] [0320181123] +18:11:29 [ 11] [ 6] [824825] +18:11:29 [ 12] [ 6] [181123] +18:11:29 [ 13] [ 4] [0320] +18:11:29 [ 15] [ 4] [0320] +18:11:29 [ 18] [ 4] [6011] +18:11:29 [ 22] [ 3] [900] +18:11:29 [ 25] [ 2] [02] +18:11:29 [ 28] [ 9] [D00000000] +18:11:29 [ 32] [ 6] [621354] +18:11:29 [ 35] [ 32] [2206990000018812=960612616987947] +18:11:29 [ 37] [ 12] [507903975856] +18:11:29 [ 41] [ 8] [01011300] +18:11:29 [ 42] [ 15] [NATIVE ] +18:11:29 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +18:11:29 [ 49] [ 3] [418] +18:11:29 [ 52] [ 16] [BCAFB27A2C7091F6] +18:11:29 ============================================================================ +18:11:29 + + +waiting on router queue for slot.... +18:11:29 Sending to : +18:11:29 ============================================================================ +18:11:29 ============================================================================ +18:11:29 Slot Id : <313> +18:11:29 Transaction Type : REQUEST +18:11:29 Received From : +18:11:29 ============================================================================ +18:11:29 FNo. Len. Field Value +18:11:29 ============================================================================ +18:11:29 [ 1] [ 4] [0200] +18:11:29 [ 2] [ 16] [2206990000018812] +18:11:29 [ 3] [ 6] [301000] +18:11:29 [ 4] [ 12] [000000000000] +18:11:29 [ 7] [ 10] [0320181123] +18:11:29 [ 11] [ 6] [824825] +18:11:29 [ 12] [ 6] [181123] +18:11:29 [ 13] [ 4] [0320] +18:11:29 [ 15] [ 4] [0320] +18:11:29 [ 18] [ 4] [6011] +18:11:29 [ 22] [ 3] [900] +18:11:29 [ 25] [ 2] [02] +18:11:29 [ 28] [ 9] [D00000000] +18:11:29 [ 32] [ 6] [621354] +18:11:29 [ 35] [ 32] [2206990000018812=960612616987947] +18:11:29 [ 37] [ 12] [507903975856] +18:11:29 [ 41] [ 8] [01011300] +18:11:29 [ 42] [ 15] [NATIVE ] +18:11:29 [ 43] [ 40] [M-Point Mark Huakhua Xaysetha LAO] +18:11:29 [ 49] [ 3] [418] +18:11:29 [ 52] [ 16] [8988B153DFEBDEA2] +18:11:29 ============================================================================ +18:11:29 + + +waiting on router queue for slot.... +18:11:29 Sending to : <1> +18:11:29 ============================================================================ +18:11:30 ============================================================================ +18:11:30 Slot Id : <371> +18:11:30 Transaction Type : RESPONSE +18:11:30 Received From : +18:11:30 ============================================================================ +18:11:30 FNo. Len. Field Value +18:11:30 ============================================================================ +18:11:30 [ 1] [ 4] [0210] +18:11:30 [ 2] [ 16] [6213541000664808] +18:11:30 [ 3] [ 6] [010000] +18:11:30 [ 4] [ 12] [000050000000] +18:11:30 [ 7] [ 10] [0320181913] +18:11:30 [ 11] [ 6] [189048] +18:11:30 [ 12] [ 6] [181913] +18:11:30 [ 13] [ 4] [0320] +18:11:30 [ 15] [ 4] [0320] +18:11:30 [ 18] [ 4] [6011] +18:11:30 [ 32] [ 6] [220699] +18:11:30 [ 35] [ 32] [6213541000664808=491212016480751] +18:11:30 [ 37] [ 12] [507900084378] +18:11:30 [ 38] [ 6] [409269] +18:11:30 [ 39] [ 2] [00] +18:11:30 [ 41] [ 8] [01000800] +18:11:30 [ 49] [ 3] [418] +18:11:30 [ 54] [ 40] [0001418C0003614050860002418C000361405086] +18:11:30 ============================================================================ +18:11:30 Sending to : +18:11:30 ============================================================================ +18:11:30 + + +waiting on router queue for slot.... +18:11:30 ============================================================================ +18:11:30 Slot Id : <343> +18:11:30 Transaction Type : REQUEST +18:11:30 Received From : +18:11:30 ============================================================================ +18:11:30 FNo. Len. Field Value +18:11:30 ============================================================================ +18:11:30 [ 1] [ 4] [0200] +18:11:30 [ 2] [ 16] [6213543000067230] +18:11:30 [ 3] [ 6] [011000] +18:11:30 [ 4] [ 12] [000004000000] +18:11:30 [ 7] [ 10] [0320111036] +18:11:30 [ 11] [ 6] [271095] +18:11:30 [ 12] [ 6] [181036] +18:11:30 [ 13] [ 4] [0320] +18:11:30 [ 14] [ 4] [4912] +18:11:30 [ 15] [ 4] [0320] +18:11:30 [ 18] [ 4] [6011] +18:11:30 [ 19] [ 3] [418] +18:11:30 [ 22] [ 3] [021] +18:11:30 [ 25] [ 2] [01] +18:11:30 [ 28] [ 9] [D00002000] +18:11:30 [ 32] [ 6] [180893] +18:11:30 [ 35] [ 32] [6213543000067230=491212016723917] +18:11:30 [ 37] [ 12] [507911271095] +18:11:30 [ 41] [ 8] [0112CPBR] +18:11:30 [ 42] [ 15] [999999 ] +18:11:30 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +18:11:30 [ 49] [ 3] [418] +18:11:30 [ 52] [ 16] [8FC51A0C45D0A55E] +18:11:30 ============================================================================ +18:11:30 + + +waiting on router queue for slot.... +18:11:30 Sending to : +18:11:30 ============================================================================ +18:11:30 Sending to : +18:11:30 ============================================================================ +18:11:31 ============================================================================ +18:11:31 Slot Id : <343> +18:11:31 Transaction Type : REQUEST +18:11:31 Received From : +18:11:31 ============================================================================ +18:11:31 FNo. Len. Field Value +18:11:31 ============================================================================ +18:11:31 [ 1] [ 4] [0200] +18:11:31 [ 2] [ 16] [6213543000067230] +18:11:31 [ 3] [ 6] [011000] +18:11:31 [ 4] [ 12] [000004000000] +18:11:31 [ 7] [ 10] [0320111036] +18:11:31 [ 11] [ 6] [271095] +18:11:31 [ 12] [ 6] [181036] +18:11:31 [ 13] [ 4] [0320] +18:11:31 [ 14] [ 4] [4912] +18:11:31 [ 15] [ 4] [0320] +18:11:31 [ 18] [ 4] [6011] +18:11:31 [ 19] [ 3] [418] +18:11:31 [ 22] [ 3] [021] +18:11:31 [ 25] [ 2] [01] +18:11:31 [ 28] [ 9] [D00002000] +18:11:31 [ 32] [ 6] [180893] +18:11:31 [ 35] [ 32] [6213543000067230=491212016723917] +18:11:31 [ 37] [ 12] [507911271095] +18:11:31 [ 41] [ 8] [0112CPBR] +18:11:31 [ 42] [ 15] [999999 ] +18:11:31 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +18:11:31 [ 49] [ 3] [418] +18:11:31 [ 52] [ 16] [8FC51A0C45D0A55E] +18:11:31 ============================================================================ +18:11:31 + + +waiting on router queue for slot.... +18:11:31 Sending to : +18:11:31 ============================================================================ +18:11:31 ============================================================================ +18:11:31 Slot Id : <343> +18:11:31 Transaction Type : REQUEST +18:11:31 Received From : +18:11:31 ============================================================================ +18:11:31 FNo. Len. Field Value +18:11:31 ============================================================================ +18:11:31 [ 1] [ 4] [0200] +18:11:31 [ 2] [ 16] [6213543000067230] +18:11:31 [ 3] [ 6] [011000] +18:11:31 [ 4] [ 12] [000004000000] +18:11:31 [ 7] [ 10] [0320111036] +18:11:31 [ 11] [ 6] [271095] +18:11:31 [ 12] [ 6] [181036] +18:11:31 [ 13] [ 4] [0320] +18:11:31 [ 14] [ 4] [4912] +18:11:31 [ 15] [ 4] [0320] +18:11:31 [ 18] [ 4] [6011] +18:11:31 [ 19] [ 3] [418] +18:11:31 [ 22] [ 3] [021] +18:11:31 [ 25] [ 2] [01] +18:11:31 [ 28] [ 9] [D00002000] +18:11:31 [ 32] [ 6] [180893] +18:11:31 [ 35] [ 32] [6213543000067230=491212016723917] +18:11:31 [ 37] [ 12] [507911271095] +18:11:31 [ 41] [ 8] [0112CPBR] +18:11:31 [ 42] [ 15] [999999 ] +18:11:31 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +18:11:31 [ 49] [ 3] [418] +18:11:31 [ 52] [ 16] [02C4B4AFFE5A6A7E] +18:11:31 ============================================================================ +18:11:31 + + +waiting on router queue for slot.... +18:11:31 Sending to : <0> +18:11:31 ============================================================================ +18:11:31 ============================================================================ +18:11:31 Slot Id : <313> +18:11:31 Transaction Type : RESPONSE +18:11:31 Received From : +18:11:31 ============================================================================ +18:11:31 FNo. Len. Field Value +18:11:31 ============================================================================ +18:11:31 [ 1] [ 4] [0210] +18:11:31 [ 2] [ 16] [2206990000018812] +18:11:31 [ 3] [ 6] [301000] +18:11:31 [ 4] [ 12] [000000000000] +18:11:31 [ 7] [ 10] [0320181123] +18:11:31 [ 11] [ 6] [824825] +18:11:31 [ 12] [ 6] [181123] +18:11:31 [ 13] [ 4] [0320] +18:11:31 [ 15] [ 4] [0320] +18:11:31 [ 18] [ 4] [6011] +18:11:31 [ 32] [ 6] [621354] +18:11:31 [ 35] [ 32] [2206990000018812=960612616987947] +18:11:31 [ 37] [ 12] [507903975856] +18:11:31 [ 38] [ 6] [431104] +18:11:31 [ 39] [ 2] [00] +18:11:31 [ 41] [ 8] [01011300] +18:11:31 [ 49] [ 3] [418] +18:11:31 [ 54] [ 40] [1001418C0000803059001002418C000080305900] +18:11:31 ============================================================================ +18:11:31 Sending to : +18:11:31 ============================================================================ +18:11:31 + + +waiting on router queue for slot.... +18:11:31 ============================================================================ +18:11:31 Slot Id : <378> +18:11:31 Transaction Type : REQUEST +18:11:31 Received From : +18:11:31 ============================================================================ +18:11:31 FNo. Len. Field Value +18:11:31 ============================================================================ +18:11:31 [ 1] [ 4] [0800] +18:11:31 [ 7] [ 10] [0320111126] +18:11:31 [ 11] [ 6] [082185] +18:11:31 [ 37] [ 12] [507918082185] +18:11:31 [ 70] [ 3] [001] +18:11:31 ============================================================================ +18:11:31 + + +waiting on router queue for slot.... +18:11:31 Sending to : +18:11:31 ============================================================================ +18:11:31 ============================================================================ +18:11:31 Slot Id : <378> +18:11:31 Transaction Type : RESPONSE +18:11:31 Received From : +18:11:31 ============================================================================ +18:11:31 FNo. Len. Field Value +18:11:31 ============================================================================ +18:11:31 [ 1] [ 4] [0810] +18:11:31 [ 7] [ 10] [0320111126] +18:11:31 [ 11] [ 6] [082185] +18:11:31 [ 37] [ 12] [507918082185] +18:11:31 [ 39] [ 2] [00] +18:11:31 [ 70] [ 3] [001] +18:11:31 ============================================================================ +18:11:31 Calculate Source COMM Id = 0 +18:11:31 ============================================================================ +18:11:31 + + +waiting on router queue for slot.... +18:11:32 ============================================================================ +18:11:32 Slot Id : <371> +18:11:32 Transaction Type : RESPONSE +18:11:32 Received From : +18:11:32 ============================================================================ +18:11:32 FNo. Len. Field Value +18:11:32 ============================================================================ +18:11:32 [ 1] [ 4] [0210] +18:11:32 [ 2] [ 16] [6213541000664808] +18:11:32 [ 3] [ 6] [010000] +18:11:32 [ 4] [ 12] [000050000000] +18:11:32 [ 7] [ 10] [0320181913] +18:11:32 [ 11] [ 6] [189048] +18:11:32 [ 12] [ 6] [181913] +18:11:32 [ 13] [ 4] [0320] +18:11:32 [ 15] [ 4] [0320] +18:11:32 [ 18] [ 4] [6011] +18:11:32 [ 32] [ 6] [220699] +18:11:32 [ 35] [ 32] [6213541000664808=491212016480751] +18:11:32 [ 37] [ 12] [507900084378] +18:11:32 [ 38] [ 6] [409269] +18:11:32 [ 39] [ 2] [00] +18:11:32 [ 41] [ 8] [01000800] +18:11:32 [ 49] [ 3] [418] +18:11:32 [ 54] [ 40] [0001418C0003614050860002418C000361405086] +18:11:32 ============================================================================ +18:11:32 Calculate Source COMM Id = 1 +18:11:32 ============================================================================ +18:11:32 + + +waiting on router queue for slot.... +18:11:32 ============================================================================ +18:11:32 Slot Id : <343> +18:11:32 Transaction Type : RESPONSE +18:11:32 Received From : +18:11:32 ============================================================================ +18:11:32 FNo. Len. Field Value +18:11:32 ============================================================================ +18:11:32 [ 1] [ 4] [0210] +18:11:32 [ 2] [ 16] [6213543000067230] +18:11:32 [ 3] [ 6] [011000] +18:11:32 [ 4] [ 12] [000004000000] +18:11:32 [ 7] [ 10] [0320111036] +18:11:32 [ 11] [ 6] [271095] +18:11:32 [ 12] [ 6] [181036] +18:11:32 [ 13] [ 4] [0320] +18:11:32 [ 15] [ 4] [0320] +18:11:32 [ 18] [ 4] [6011] +18:11:32 [ 19] [ 3] [418] +18:11:32 [ 32] [ 6] [180893] +18:11:32 [ 35] [ 32] [6213543000067230=491212016723917] +18:11:32 [ 37] [ 12] [507911271095] +18:11:32 [ 38] [ 6] [963665] +18:11:32 [ 39] [ 2] [00] +18:11:32 [ 41] [ 8] [0112CPBR] +18:11:32 [ 49] [ 3] [418] +18:11:32 [ 54] [ 40] [1001418C0000056394521002418C000005639452] +18:11:32 ============================================================================ +18:11:32 Sending to : +18:11:32 ============================================================================ +18:11:32 + + +waiting on router queue for slot.... +18:11:32 ============================================================================ +18:11:32 Slot Id : <373> +18:11:32 Transaction Type : REQUEST +18:11:32 Received From : +18:11:32 ============================================================================ +18:11:32 FNo. Len. Field Value +18:11:32 ============================================================================ +18:11:32 [ 1] [ 4] [0200] +18:11:32 [ 2] [ 16] [6688990050090891] +18:11:32 [ 3] [ 6] [301000] +18:11:32 [ 4] [ 12] [000000000000] +18:11:32 [ 7] [ 10] [0320181152] +18:11:32 [ 11] [ 6] [210191] +18:11:32 [ 12] [ 6] [181217] +18:11:32 [ 13] [ 4] [0320] +18:11:32 [ 14] [ 4] [9806] +18:11:32 [ 15] [ 4] [0320] +18:11:32 [ 18] [ 4] [6011] +18:11:32 [ 19] [ 3] [418] +18:11:32 [ 22] [ 3] [021] +18:11:32 [ 25] [ 2] [01] +18:11:32 [ 28] [ 9] [D00000000] +18:11:32 [ 32] [ 6] [198901] +18:11:32 [ 35] [ 37] [6688990050090891=98061261875250800000] +18:11:32 [ 37] [ 12] [507918210191] +18:11:32 [ 41] [ 8] [01529009] +18:11:32 [ 42] [ 15] [000000041529009] +18:11:32 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +18:11:32 [ 49] [ 3] [418] +18:11:32 [ 52] [ 16] [929CE1C33328F2EF] +18:11:32 ============================================================================ +18:11:32 + + +waiting on router queue for slot.... +18:11:32 Sending to : +18:11:32 ============================================================================ +18:11:32 Sending to : +18:11:32 ============================================================================ +18:11:32 ============================================================================ +18:11:32 Slot Id : <373> +18:11:32 Transaction Type : REQUEST +18:11:32 Received From : +18:11:32 ============================================================================ +18:11:32 FNo. Len. Field Value +18:11:32 ============================================================================ +18:11:32 [ 1] [ 4] [0200] +18:11:32 [ 2] [ 16] [6688990050090891] +18:11:32 [ 3] [ 6] [301000] +18:11:32 [ 4] [ 12] [000000000000] +18:11:32 [ 7] [ 10] [0320181152] +18:11:32 [ 11] [ 6] [210191] +18:11:32 [ 12] [ 6] [181217] +18:11:32 [ 13] [ 4] [0320] +18:11:32 [ 14] [ 4] [9806] +18:11:32 [ 15] [ 4] [0320] +18:11:32 [ 18] [ 4] [6011] +18:11:32 [ 19] [ 3] [418] +18:11:32 [ 22] [ 3] [021] +18:11:32 [ 25] [ 2] [01] +18:11:32 [ 28] [ 9] [D00000000] +18:11:32 [ 32] [ 6] [198901] +18:11:32 [ 35] [ 37] [6688990050090891=98061261875250800000] +18:11:32 [ 37] [ 12] [507918210191] +18:11:32 [ 41] [ 8] [01529009] +18:11:32 [ 42] [ 15] [000000041529009] +18:11:32 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +18:11:32 [ 49] [ 3] [418] +18:11:32 [ 52] [ 16] [929CE1C33328F2EF] +18:11:32 ============================================================================ +18:11:32 + + +waiting on router queue for slot.... +18:11:32 Sending to : +18:11:32 ============================================================================ +18:11:32 ============================================================================ +18:11:32 Slot Id : <373> +18:11:32 Transaction Type : REQUEST +18:11:32 Received From : +18:11:32 ============================================================================ +18:11:32 FNo. Len. Field Value +18:11:32 ============================================================================ +18:11:32 [ 1] [ 4] [0200] +18:11:32 [ 2] [ 16] [6688990050090891] +18:11:32 [ 3] [ 6] [301000] +18:11:32 [ 4] [ 12] [000000000000] +18:11:32 [ 7] [ 10] [0320181152] +18:11:32 [ 11] [ 6] [210191] +18:11:32 [ 12] [ 6] [181217] +18:11:32 [ 13] [ 4] [0320] +18:11:32 [ 14] [ 4] [9806] +18:11:32 [ 15] [ 4] [0320] +18:11:32 [ 18] [ 4] [6011] +18:11:32 [ 19] [ 3] [418] +18:11:32 [ 22] [ 3] [021] +18:11:32 [ 25] [ 2] [01] +18:11:32 [ 28] [ 9] [D00000000] +18:11:32 [ 32] [ 6] [198901] +18:11:32 [ 35] [ 37] [6688990050090891=98061261875250800000] +18:11:32 [ 37] [ 12] [507918210191] +18:11:32 [ 41] [ 8] [01529009] +18:11:32 [ 42] [ 15] [000000041529009] +18:11:32 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +18:11:32 [ 49] [ 3] [418] +18:11:32 [ 52] [ 16] [AE28CA71BD771AD4] +18:11:32 ============================================================================ +18:11:32 + + +waiting on router queue for slot.... +18:11:32 Sending to : <4> +18:11:32 ============================================================================ +18:11:32 ============================================================================ +18:11:32 Slot Id : <313> +18:11:32 Transaction Type : RESPONSE +18:11:32 Received From : +18:11:32 ============================================================================ +18:11:32 FNo. Len. Field Value +18:11:32 ============================================================================ +18:11:32 [ 1] [ 4] [0210] +18:11:32 [ 2] [ 16] [2206990000018812] +18:11:32 [ 3] [ 6] [301000] +18:11:32 [ 4] [ 12] [000000000000] +18:11:32 [ 7] [ 10] [0320181123] +18:11:32 [ 11] [ 6] [824825] +18:11:32 [ 12] [ 6] [181123] +18:11:32 [ 13] [ 4] [0320] +18:11:32 [ 15] [ 4] [0320] +18:11:32 [ 18] [ 4] [6011] +18:11:32 [ 32] [ 6] [621354] +18:11:32 [ 35] [ 32] [2206990000018812=960612616987947] +18:11:32 [ 37] [ 12] [507903975856] +18:11:32 [ 38] [ 6] [431104] +18:11:32 [ 39] [ 2] [00] +18:11:32 [ 41] [ 8] [01011300] +18:11:32 [ 49] [ 3] [418] +18:11:32 [ 54] [ 40] [1001418C0000803059001002418C000080305900] +18:11:32 ============================================================================ +18:11:32 Calculate Source COMM Id = 0 +18:11:32 ============================================================================ +18:11:32 + + +waiting on router queue for slot.... +18:11:34 ============================================================================ +18:11:34 Slot Id : <373> +18:11:34 Transaction Type : RESPONSE +18:11:34 Received From : +18:11:34 ============================================================================ +18:11:34 FNo. Len. Field Value +18:11:34 ============================================================================ +18:11:34 [ 1] [ 4] [0210] +18:11:34 [ 2] [ 16] [6688990050090891] +18:11:34 [ 3] [ 6] [301000] +18:11:34 [ 4] [ 12] [000000000000] +18:11:34 [ 11] [ 6] [210191] +18:11:34 [ 12] [ 6] [181217] +18:11:34 [ 15] [ 4] [0320] +18:11:34 [ 18] [ 4] [6011] +18:11:34 [ 32] [ 6] [198901] +18:11:34 [ 35] [ 37] [6688990050090891=98061261875250800000] +18:11:34 [ 37] [ 12] [507918210191] +18:11:34 [ 38] [ 6] [188039] +18:11:34 [ 39] [ 2] [00] +18:11:34 [ 41] [ 8] [01529009] +18:11:34 [ 49] [ 3] [418] +18:11:34 [ 54] [ 20] [1002418C000010000000] +18:11:34 ============================================================================ +18:11:34 Sending to : +18:11:34 ============================================================================ +18:11:34 + + +waiting on router queue for slot.... +18:11:35 ============================================================================ +18:11:35 Slot Id : <343> +18:11:35 Transaction Type : RESPONSE +18:11:35 Received From : +18:11:35 ============================================================================ +18:11:35 FNo. Len. Field Value +18:11:35 ============================================================================ +18:11:35 [ 1] [ 4] [0210] +18:11:35 [ 2] [ 16] [6213543000067230] +18:11:35 [ 3] [ 6] [011000] +18:11:35 [ 4] [ 12] [000004000000] +18:11:35 [ 7] [ 10] [0320111036] +18:11:35 [ 11] [ 6] [271095] +18:11:35 [ 12] [ 6] [181036] +18:11:35 [ 13] [ 4] [0320] +18:11:35 [ 15] [ 4] [0320] +18:11:35 [ 18] [ 4] [6011] +18:11:35 [ 19] [ 3] [418] +18:11:35 [ 32] [ 6] [180893] +18:11:35 [ 35] [ 32] [6213543000067230=491212016723917] +18:11:35 [ 37] [ 12] [507911271095] +18:11:35 [ 38] [ 6] [963665] +18:11:35 [ 39] [ 2] [00] +18:11:35 [ 41] [ 8] [0112CPBR] +18:11:35 [ 49] [ 3] [418] +18:11:35 [ 54] [ 40] [1001418C0000056394521002418C000005639452] +18:11:35 ============================================================================ +18:11:35 Calculate Source COMM Id = 2 +18:11:35 ============================================================================ +18:11:35 + + +waiting on router queue for slot.... +18:11:36 ============================================================================ +18:11:36 Slot Id : <373> +18:11:36 Transaction Type : RESPONSE +18:11:36 Received From : +18:11:36 ============================================================================ +18:11:36 FNo. Len. Field Value +18:11:36 ============================================================================ +18:11:36 [ 1] [ 4] [0210] +18:11:36 [ 2] [ 16] [6688990050090891] +18:11:36 [ 3] [ 6] [301000] +18:11:36 [ 4] [ 12] [000000000000] +18:11:36 [ 11] [ 6] [210191] +18:11:36 [ 12] [ 6] [181217] +18:11:36 [ 15] [ 4] [0320] +18:11:36 [ 18] [ 4] [6011] +18:11:36 [ 32] [ 6] [198901] +18:11:36 [ 35] [ 37] [6688990050090891=98061261875250800000] +18:11:36 [ 37] [ 12] [507918210191] +18:11:36 [ 38] [ 6] [188039] +18:11:36 [ 39] [ 2] [00] +18:11:36 [ 41] [ 8] [01529009] +18:11:36 [ 49] [ 3] [418] +18:11:36 [ 54] [ 20] [1002418C000010000000] +18:11:36 ============================================================================ +18:11:36 Calculate Source COMM Id = 5 +18:11:36 ============================================================================ +18:11:36 + + +waiting on router queue for slot.... +18:11:50 ============================================================================ +18:11:50 Slot Id : <345> +18:11:50 Transaction Type : REQUEST +18:11:50 Received From : +18:11:50 ============================================================================ +18:11:50 FNo. Len. Field Value +18:11:50 ============================================================================ +18:11:50 [ 1] [ 4] [0800] +18:11:50 [ 7] [ 10] [0320111057] +18:11:50 [ 11] [ 6] [157645] +18:11:50 [ 70] [ 3] [301] +18:11:50 ============================================================================ +18:11:50 + + +waiting on router queue for slot.... +18:11:50 Sending to : +18:11:50 ============================================================================ +18:11:50 ============================================================================ +18:11:50 Slot Id : <345> +18:11:50 Transaction Type : RESPONSE +18:11:50 Received From : +18:11:50 ============================================================================ +18:11:50 FNo. Len. Field Value +18:11:50 ============================================================================ +18:11:50 [ 1] [ 4] [0810] +18:11:50 [ 7] [ 10] [0320111057] +18:11:50 [ 11] [ 6] [157645] +18:11:50 [ 39] [ 2] [00] +18:11:50 [ 70] [ 3] [301] +18:11:50 ============================================================================ +18:11:50 Calculate Source COMM Id = 2 +18:11:50 ============================================================================ +18:11:50 + + +waiting on router queue for slot.... +18:11:51 ============================================================================ +18:11:51 Slot Id : <340> +18:11:51 Transaction Type : REQUEST +18:11:51 Received From : +18:11:51 ============================================================================ +18:11:51 FNo. Len. Field Value +18:11:51 ============================================================================ +18:11:51 [ 1] [ 4] [0800] +18:11:51 [ 2] [ 5] [02531] +18:11:51 [ 3] [ 6] [579188] +18:11:51 [ 7] [ 10] [0320111151] +18:11:51 [ 11] [ 6] [807468] +18:11:51 [ 15] [ 10] [0320111151] +18:11:51 [ 37] [ 11] [57918807468] +18:11:51 [ 70] [ 3] [001] +18:11:51 ============================================================================ +18:11:51 + + +waiting on router queue for slot.... +18:11:51 ============================================================================ +18:11:51 Slot Id : <340> +18:11:51 Transaction Type : RESPONSE +18:11:51 Received From : +18:11:51 ============================================================================ +18:11:51 FNo. Len. Field Value +18:11:51 ============================================================================ +18:11:51 [ 1] [ 4] [0810] +18:11:51 [ 7] [ 10] [0320111151] +18:11:51 [ 11] [ 6] [807468] +18:11:51 [ 15] [ 4] [0320] +18:11:51 [ 37] [ 12] [57918807468] +18:11:51 [ 39] [ 2] [00] +18:11:51 [ 70] [ 3] [001] +18:11:51 ============================================================================ +18:11:51 Sending to : +18:11:51 ============================================================================ +18:11:51 + + +waiting on router queue for slot.... +18:11:53 ============================================================================ +18:11:53 Slot Id : <324> +18:11:53 Transaction Type : REQUEST +18:11:53 Received From : +18:11:53 ============================================================================ +18:11:53 FNo. Len. Field Value +18:11:53 ============================================================================ +18:11:53 [ 1] [ 4] [0200] +18:11:53 [ 2] [ 16] [6213544002187984] +18:11:53 [ 3] [ 6] [012000] +18:11:53 [ 4] [ 12] [000049000000] +18:11:53 [ 7] [ 10] [0320111059] +18:11:53 [ 11] [ 6] [271101] +18:11:53 [ 12] [ 6] [181059] +18:11:53 [ 13] [ 4] [0320] +18:11:53 [ 14] [ 4] [4912] +18:11:53 [ 15] [ 4] [0320] +18:11:53 [ 18] [ 4] [6011] +18:11:53 [ 19] [ 3] [418] +18:11:53 [ 22] [ 3] [021] +18:11:53 [ 25] [ 2] [01] +18:11:53 [ 28] [ 9] [D00002000] +18:11:53 [ 32] [ 6] [180893] +18:11:53 [ 35] [ 32] [6213544002187984=491212018798967] +18:11:53 [ 37] [ 12] [507911271101] +18:11:53 [ 41] [ 8] [0102SAPA] +18:11:53 [ 42] [ 15] [999999 ] +18:11:53 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:11:53 [ 49] [ 3] [418] +18:11:53 [ 52] [ 16] [63F37C63E8051A9F] +18:11:53 ============================================================================ +18:11:53 + + +waiting on router queue for slot.... +18:11:53 Sending to : +18:11:53 ============================================================================ +18:11:53 Sending to : +18:11:53 ============================================================================ +18:11:53 ============================================================================ +18:11:53 Slot Id : <324> +18:11:53 Transaction Type : REQUEST +18:11:53 Received From : +18:11:53 ============================================================================ +18:11:53 FNo. Len. Field Value +18:11:53 ============================================================================ +18:11:53 [ 1] [ 4] [0200] +18:11:53 [ 2] [ 16] [6213544002187984] +18:11:53 [ 3] [ 6] [012000] +18:11:53 [ 4] [ 12] [000049000000] +18:11:53 [ 7] [ 10] [0320111059] +18:11:53 [ 11] [ 6] [271101] +18:11:53 [ 12] [ 6] [181059] +18:11:53 [ 13] [ 4] [0320] +18:11:53 [ 14] [ 4] [4912] +18:11:53 [ 15] [ 4] [0320] +18:11:53 [ 18] [ 4] [6011] +18:11:53 [ 19] [ 3] [418] +18:11:53 [ 22] [ 3] [021] +18:11:53 [ 25] [ 2] [01] +18:11:53 [ 28] [ 9] [D00002000] +18:11:53 [ 32] [ 6] [180893] +18:11:53 [ 35] [ 32] [6213544002187984=491212018798967] +18:11:53 [ 37] [ 12] [507911271101] +18:11:53 [ 41] [ 8] [0102SAPA] +18:11:53 [ 42] [ 15] [999999 ] +18:11:53 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:11:53 [ 49] [ 3] [418] +18:11:53 [ 52] [ 16] [63F37C63E8051A9F] +18:11:53 ============================================================================ +18:11:53 + + +waiting on router queue for slot.... +18:11:53 Sending to : +18:11:53 ============================================================================ +18:11:53 ============================================================================ +18:11:53 Slot Id : <324> +18:11:53 Transaction Type : REQUEST +18:11:53 Received From : +18:11:53 ============================================================================ +18:11:53 FNo. Len. Field Value +18:11:53 ============================================================================ +18:11:53 [ 1] [ 4] [0200] +18:11:53 [ 2] [ 16] [6213544002187984] +18:11:53 [ 3] [ 6] [012000] +18:11:53 [ 4] [ 12] [000049000000] +18:11:53 [ 7] [ 10] [0320111059] +18:11:53 [ 11] [ 6] [271101] +18:11:53 [ 12] [ 6] [181059] +18:11:53 [ 13] [ 4] [0320] +18:11:53 [ 14] [ 4] [4912] +18:11:53 [ 15] [ 4] [0320] +18:11:53 [ 18] [ 4] [6011] +18:11:53 [ 19] [ 3] [418] +18:11:53 [ 22] [ 3] [021] +18:11:53 [ 25] [ 2] [01] +18:11:53 [ 28] [ 9] [D00002000] +18:11:53 [ 32] [ 6] [180893] +18:11:53 [ 35] [ 32] [6213544002187984=491212018798967] +18:11:53 [ 37] [ 12] [507911271101] +18:11:53 [ 41] [ 8] [0102SAPA] +18:11:53 [ 42] [ 15] [999999 ] +18:11:53 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:11:53 [ 49] [ 3] [418] +18:11:53 [ 52] [ 16] [F448BB8B632A312F] +18:11:53 ============================================================================ +18:11:53 + + +waiting on router queue for slot.... +18:11:53 Sending to : <0> +18:11:53 ============================================================================ +18:11:54 ============================================================================ +18:11:54 Slot Id : <324> +18:11:54 Transaction Type : RESPONSE +18:11:54 Received From : +18:11:54 ============================================================================ +18:11:54 FNo. Len. Field Value +18:11:54 ============================================================================ +18:11:54 [ 1] [ 4] [0210] +18:11:54 [ 2] [ 16] [6213544002187984] +18:11:54 [ 3] [ 6] [012000] +18:11:54 [ 4] [ 12] [000049000000] +18:11:54 [ 7] [ 10] [0320111059] +18:11:54 [ 11] [ 6] [271101] +18:11:54 [ 12] [ 6] [181059] +18:11:54 [ 13] [ 4] [0320] +18:11:54 [ 15] [ 4] [0320] +18:11:54 [ 18] [ 4] [6011] +18:11:54 [ 19] [ 3] [418] +18:11:54 [ 32] [ 6] [180893] +18:11:54 [ 35] [ 32] [6213544002187984=491212018798967] +18:11:54 [ 37] [ 12] [507911271101] +18:11:54 [ 38] [ 6] [525099] +18:11:54 [ 39] [ 2] [00] +18:11:54 [ 41] [ 8] [0102SAPA] +18:11:54 [ 49] [ 3] [418] +18:11:54 [ 54] [ 40] [2001418C0000058000002002418C000005800000] +18:11:54 ============================================================================ +18:11:54 Sending to : +18:11:54 ============================================================================ +18:11:54 + + +waiting on router queue for slot.... +18:11:55 ============================================================================ +18:11:55 Slot Id : <324> +18:11:55 Transaction Type : RESPONSE +18:11:55 Received From : +18:11:55 ============================================================================ +18:11:55 FNo. Len. Field Value +18:11:55 ============================================================================ +18:11:55 [ 1] [ 4] [0210] +18:11:55 [ 2] [ 16] [6213544002187984] +18:11:55 [ 3] [ 6] [012000] +18:11:55 [ 4] [ 12] [000049000000] +18:11:55 [ 7] [ 10] [0320111059] +18:11:55 [ 11] [ 6] [271101] +18:11:55 [ 12] [ 6] [181059] +18:11:55 [ 13] [ 4] [0320] +18:11:55 [ 15] [ 4] [0320] +18:11:55 [ 18] [ 4] [6011] +18:11:55 [ 19] [ 3] [418] +18:11:55 [ 32] [ 6] [180893] +18:11:55 [ 35] [ 32] [6213544002187984=491212018798967] +18:11:55 [ 37] [ 12] [507911271101] +18:11:55 [ 38] [ 6] [525099] +18:11:55 [ 39] [ 2] [00] +18:11:55 [ 41] [ 8] [0102SAPA] +18:11:55 [ 49] [ 3] [418] +18:11:55 [ 54] [ 40] [2001418C0000058000002002418C000005800000] +18:11:55 ============================================================================ +18:11:55 Calculate Source COMM Id = 2 +18:11:55 ============================================================================ +18:11:55 + + +waiting on router queue for slot.... +18:11:58 ============================================================================ +18:11:58 Slot Id : <353> +18:11:58 Transaction Type : REQUEST +18:11:58 Received From : +18:11:58 ============================================================================ +18:11:58 FNo. Len. Field Value +18:11:58 ============================================================================ +18:11:58 [ 1] [ 4] [0800] +18:11:58 [ 7] [ 10] [0321012346] +18:11:58 [ 11] [ 6] [182346] +18:11:58 [ 37] [ 12] [57918182346] +18:11:58 [ 70] [ 3] [301] +18:11:58 ============================================================================ +18:11:58 + + +waiting on router queue for slot.... +18:11:58 Sending to : +18:11:58 ============================================================================ +18:11:58 ============================================================================ +18:11:58 Slot Id : <353> +18:11:58 Transaction Type : RESPONSE +18:11:58 Received From : +18:11:58 ============================================================================ +18:11:58 FNo. Len. Field Value +18:11:58 ============================================================================ +18:11:58 [ 1] [ 4] [0810] +18:11:58 [ 7] [ 10] [0321012346] +18:11:58 [ 11] [ 6] [182346] +18:11:58 [ 37] [ 12] [579181823460] +18:11:58 [ 39] [ 2] [00] +18:11:58 [ 70] [ 3] [810] +18:11:58 ============================================================================ +18:11:58 Calculate Source COMM Id = 6 +18:11:58 ============================================================================ +18:11:58 + + +waiting on router queue for slot.... +18:12:07 ============================================================================ +18:12:07 Slot Id : <382> +18:12:07 Transaction Type : REQUEST +18:12:07 Received From : +18:12:07 ============================================================================ +18:12:07 FNo. Len. Field Value +18:12:07 ============================================================================ +18:12:07 [ 1] [ 4] [0800] +18:12:07 [ 7] [ 10] [0320111113] +18:12:07 [ 11] [ 6] [157646] +18:12:07 [ 70] [ 3] [301] +18:12:07 ============================================================================ +18:12:07 + + +waiting on router queue for slot.... +18:12:07 Sending to : +18:12:07 ============================================================================ +18:12:07 ============================================================================ +18:12:07 Slot Id : <382> +18:12:07 Transaction Type : RESPONSE +18:12:07 Received From : +18:12:07 ============================================================================ +18:12:07 FNo. Len. Field Value +18:12:07 ============================================================================ +18:12:07 [ 1] [ 4] [0810] +18:12:07 [ 7] [ 10] [0320111113] +18:12:07 [ 11] [ 6] [157646] +18:12:07 [ 39] [ 2] [00] +18:12:07 [ 70] [ 3] [301] +18:12:07 ============================================================================ +18:12:07 Calculate Source COMM Id = 2 +18:12:07 ============================================================================ +18:12:07 + + +waiting on router queue for slot.... +18:12:09 ============================================================================ +18:12:09 Slot Id : <363> +18:12:09 Transaction Type : REQUEST +18:12:09 Received From : +18:12:09 ============================================================================ +18:12:09 FNo. Len. Field Value +18:12:09 ============================================================================ +18:12:09 [ 1] [ 4] [0200] +18:12:09 [ 2] [ 16] [6213544002007422] +18:12:09 [ 3] [ 6] [010000] +18:12:09 [ 4] [ 12] [000010000000] +18:12:09 [ 7] [ 10] [0320111115] +18:12:09 [ 11] [ 6] [271104] +18:12:09 [ 12] [ 6] [181115] +18:12:09 [ 13] [ 4] [0320] +18:12:09 [ 14] [ 4] [4912] +18:12:09 [ 15] [ 4] [0320] +18:12:09 [ 18] [ 4] [6011] +18:12:09 [ 19] [ 3] [418] +18:12:09 [ 22] [ 3] [021] +18:12:09 [ 25] [ 2] [01] +18:12:09 [ 28] [ 9] [D00002000] +18:12:09 [ 32] [ 6] [180893] +18:12:09 [ 35] [ 32] [6213544002007422=491212010742464] +18:12:09 [ 37] [ 12] [507911271104] +18:12:09 [ 41] [ 8] [0141HQBR] +18:12:09 [ 42] [ 15] [999999 ] +18:12:09 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:12:09 [ 49] [ 3] [418] +18:12:09 [ 52] [ 16] [85C8C66577A895EA] +18:12:09 ============================================================================ +18:12:09 + + +waiting on router queue for slot.... +18:12:09 Sending to : +18:12:09 ============================================================================ +18:12:09 Sending to : +18:12:09 ============================================================================ +18:12:09 ============================================================================ +18:12:09 Slot Id : <363> +18:12:09 Transaction Type : REQUEST +18:12:09 Received From : +18:12:09 ============================================================================ +18:12:09 FNo. Len. Field Value +18:12:09 ============================================================================ +18:12:09 [ 1] [ 4] [0200] +18:12:09 [ 2] [ 16] [6213544002007422] +18:12:09 [ 3] [ 6] [010000] +18:12:09 [ 4] [ 12] [000010000000] +18:12:09 [ 7] [ 10] [0320111115] +18:12:09 [ 11] [ 6] [271104] +18:12:09 [ 12] [ 6] [181115] +18:12:09 [ 13] [ 4] [0320] +18:12:09 [ 14] [ 4] [4912] +18:12:09 [ 15] [ 4] [0320] +18:12:09 [ 18] [ 4] [6011] +18:12:09 [ 19] [ 3] [418] +18:12:09 [ 22] [ 3] [021] +18:12:09 [ 25] [ 2] [01] +18:12:09 [ 28] [ 9] [D00002000] +18:12:09 [ 32] [ 6] [180893] +18:12:09 [ 35] [ 32] [6213544002007422=491212010742464] +18:12:09 [ 37] [ 12] [507911271104] +18:12:09 [ 41] [ 8] [0141HQBR] +18:12:09 [ 42] [ 15] [999999 ] +18:12:09 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:12:09 [ 49] [ 3] [418] +18:12:09 [ 52] [ 16] [85C8C66577A895EA] +18:12:09 ============================================================================ +18:12:09 + + +waiting on router queue for slot.... +18:12:09 Sending to : +18:12:09 ============================================================================ +18:12:09 ============================================================================ +18:12:09 Slot Id : <363> +18:12:09 Transaction Type : REQUEST +18:12:09 Received From : +18:12:09 ============================================================================ +18:12:09 FNo. Len. Field Value +18:12:09 ============================================================================ +18:12:09 [ 1] [ 4] [0200] +18:12:09 [ 2] [ 16] [6213544002007422] +18:12:09 [ 3] [ 6] [010000] +18:12:09 [ 4] [ 12] [000010000000] +18:12:09 [ 7] [ 10] [0320111115] +18:12:09 [ 11] [ 6] [271104] +18:12:09 [ 12] [ 6] [181115] +18:12:09 [ 13] [ 4] [0320] +18:12:09 [ 14] [ 4] [4912] +18:12:09 [ 15] [ 4] [0320] +18:12:09 [ 18] [ 4] [6011] +18:12:09 [ 19] [ 3] [418] +18:12:09 [ 22] [ 3] [021] +18:12:09 [ 25] [ 2] [01] +18:12:09 [ 28] [ 9] [D00002000] +18:12:09 [ 32] [ 6] [180893] +18:12:09 [ 35] [ 32] [6213544002007422=491212010742464] +18:12:09 [ 37] [ 12] [507911271104] +18:12:09 [ 41] [ 8] [0141HQBR] +18:12:09 [ 42] [ 15] [999999 ] +18:12:09 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:12:09 [ 49] [ 3] [418] +18:12:09 [ 52] [ 16] [1B4AF7958913B145] +18:12:09 ============================================================================ +18:12:09 + + +waiting on router queue for slot.... +18:12:09 Sending to : <0> +18:12:09 ============================================================================ +18:12:10 ============================================================================ +18:12:10 Slot Id : <363> +18:12:10 Transaction Type : RESPONSE +18:12:10 Received From : +18:12:10 ============================================================================ +18:12:10 FNo. Len. Field Value +18:12:10 ============================================================================ +18:12:10 [ 1] [ 4] [0210] +18:12:10 [ 2] [ 16] [6213544002007422] +18:12:10 [ 3] [ 6] [010000] +18:12:10 [ 4] [ 12] [000010000000] +18:12:10 [ 7] [ 10] [0320111115] +18:12:10 [ 11] [ 6] [271104] +18:12:10 [ 12] [ 6] [181115] +18:12:10 [ 13] [ 4] [0320] +18:12:10 [ 15] [ 4] [0320] +18:12:10 [ 18] [ 4] [6011] +18:12:10 [ 19] [ 3] [418] +18:12:10 [ 32] [ 6] [180893] +18:12:10 [ 35] [ 32] [6213544002007422=491212010742464] +18:12:10 [ 37] [ 12] [507911271104] +18:12:10 [ 38] [ 6] [634906] +18:12:10 [ 39] [ 2] [00] +18:12:10 [ 41] [ 8] [0141HQBR] +18:12:10 [ 49] [ 3] [418] +18:12:10 [ 54] [ 40] [0001418C0001727913350002418C000172791335] +18:12:10 ============================================================================ +18:12:10 Sending to : +18:12:10 ============================================================================ +18:12:10 + + +waiting on router queue for slot.... +18:12:11 ============================================================================ +18:12:11 Slot Id : <363> +18:12:11 Transaction Type : RESPONSE +18:12:11 Received From : +18:12:11 ============================================================================ +18:12:11 FNo. Len. Field Value +18:12:11 ============================================================================ +18:12:11 [ 1] [ 4] [0210] +18:12:11 [ 2] [ 16] [6213544002007422] +18:12:11 [ 3] [ 6] [010000] +18:12:11 [ 4] [ 12] [000010000000] +18:12:11 [ 7] [ 10] [0320111115] +18:12:11 [ 11] [ 6] [271104] +18:12:11 [ 12] [ 6] [181115] +18:12:11 [ 13] [ 4] [0320] +18:12:11 [ 15] [ 4] [0320] +18:12:11 [ 18] [ 4] [6011] +18:12:11 [ 19] [ 3] [418] +18:12:11 [ 32] [ 6] [180893] +18:12:11 [ 35] [ 32] [6213544002007422=491212010742464] +18:12:11 [ 37] [ 12] [507911271104] +18:12:11 [ 38] [ 6] [634906] +18:12:11 [ 39] [ 2] [00] +18:12:11 [ 41] [ 8] [0141HQBR] +18:12:11 [ 49] [ 3] [418] +18:12:11 [ 54] [ 40] [0001418C0001727913350002418C000172791335] +18:12:11 ============================================================================ +18:12:11 Calculate Source COMM Id = 2 +18:12:11 ============================================================================ +18:12:11 + + +waiting on router queue for slot.... +18:12:20 ============================================================================ +18:12:20 Slot Id : <355> +18:12:20 Transaction Type : REQUEST +18:12:20 Received From : +18:12:20 ============================================================================ +18:12:20 FNo. Len. Field Value +18:12:20 ============================================================================ +18:12:20 [ 1] [ 4] [0200] +18:12:20 [ 2] [ 16] [6688990040150953] +18:12:20 [ 3] [ 6] [011000] +18:12:20 [ 4] [ 12] [000002000000] +18:12:20 [ 7] [ 10] [0320181215] +18:12:20 [ 11] [ 6] [824977] +18:12:20 [ 12] [ 6] [181215] +18:12:20 [ 13] [ 4] [0320] +18:12:20 [ 15] [ 4] [0320] +18:12:20 [ 18] [ 4] [6011] +18:12:20 [ 22] [ 3] [900] +18:12:20 [ 25] [ 2] [02] +18:12:20 [ 28] [ 9] [D00002000] +18:12:20 [ 32] [ 6] [621354] +18:12:20 [ 35] [ 37] [6688990040150953=98051261962169400000] +18:12:20 [ 37] [ 12] [507902776772] +18:12:20 [ 41] [ 8] [01007100] +18:12:20 [ 42] [ 15] [NATIVE ] +18:12:20 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +18:12:20 [ 49] [ 3] [418] +18:12:20 [ 52] [ 16] [FB756310F3128D65] +18:12:20 ============================================================================ +18:12:20 + + +waiting on router queue for slot.... +18:12:20 Sending to : +18:12:20 ============================================================================ +18:12:20 Sending to : +18:12:20 ============================================================================ +18:12:20 ============================================================================ +18:12:20 Slot Id : <355> +18:12:20 Transaction Type : REQUEST +18:12:20 Received From : +18:12:20 ============================================================================ +18:12:20 FNo. Len. Field Value +18:12:20 ============================================================================ +18:12:20 [ 1] [ 4] [0200] +18:12:20 [ 2] [ 16] [6688990040150953] +18:12:20 [ 3] [ 6] [011000] +18:12:20 [ 4] [ 12] [000002000000] +18:12:20 [ 7] [ 10] [0320181215] +18:12:20 [ 11] [ 6] [824977] +18:12:20 [ 12] [ 6] [181215] +18:12:20 [ 13] [ 4] [0320] +18:12:20 [ 15] [ 4] [0320] +18:12:20 [ 18] [ 4] [6011] +18:12:20 [ 22] [ 3] [900] +18:12:20 [ 25] [ 2] [02] +18:12:20 [ 28] [ 9] [D00002000] +18:12:20 [ 32] [ 6] [621354] +18:12:20 [ 35] [ 37] [6688990040150953=98051261962169400000] +18:12:20 [ 37] [ 12] [507902776772] +18:12:20 [ 41] [ 8] [01007100] +18:12:20 [ 42] [ 15] [NATIVE ] +18:12:20 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +18:12:20 [ 49] [ 3] [418] +18:12:20 [ 52] [ 16] [FB756310F3128D65] +18:12:20 ============================================================================ +18:12:20 + + +waiting on router queue for slot.... +18:12:20 Sending to : +18:12:20 ============================================================================ +18:12:20 ============================================================================ +18:12:20 Slot Id : <355> +18:12:20 Transaction Type : REQUEST +18:12:20 Received From : +18:12:20 ============================================================================ +18:12:20 FNo. Len. Field Value +18:12:20 ============================================================================ +18:12:20 [ 1] [ 4] [0200] +18:12:20 [ 2] [ 16] [6688990040150953] +18:12:20 [ 3] [ 6] [011000] +18:12:20 [ 4] [ 12] [000002000000] +18:12:20 [ 7] [ 10] [0320181215] +18:12:20 [ 11] [ 6] [824977] +18:12:20 [ 12] [ 6] [181215] +18:12:20 [ 13] [ 4] [0320] +18:12:20 [ 15] [ 4] [0320] +18:12:20 [ 18] [ 4] [6011] +18:12:20 [ 22] [ 3] [900] +18:12:20 [ 25] [ 2] [02] +18:12:20 [ 28] [ 9] [D00002000] +18:12:20 [ 32] [ 6] [621354] +18:12:20 [ 35] [ 37] [6688990040150953=98051261962169400000] +18:12:20 [ 37] [ 12] [507902776772] +18:12:20 [ 41] [ 8] [01007100] +18:12:20 [ 42] [ 15] [NATIVE ] +18:12:20 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +18:12:20 [ 49] [ 3] [418] +18:12:20 [ 52] [ 16] [285A2B0B38DE0678] +18:12:20 ============================================================================ +18:12:20 + + +waiting on router queue for slot.... +18:12:20 Sending to : <4> +18:12:20 ============================================================================ +18:12:20 ============================================================================ +18:12:20 Slot Id : <355> +18:12:20 Transaction Type : RESPONSE +18:12:20 Received From : +18:12:20 ============================================================================ +18:12:20 FNo. Len. Field Value +18:12:20 ============================================================================ +18:12:20 [ 1] [ 4] [0210] +18:12:20 [ 2] [ 16] [6688990040150953] +18:12:20 [ 3] [ 6] [011000] +18:12:20 [ 4] [ 12] [000002000000] +18:12:20 [ 7] [ 10] [0320181215] +18:12:20 [ 11] [ 6] [824977] +18:12:20 [ 12] [ 6] [181215] +18:12:20 [ 13] [ 4] [0320] +18:12:20 [ 15] [ 4] [0320] +18:12:20 [ 18] [ 4] [6011] +18:12:20 [ 22] [ 3] [021] +18:12:20 [ 32] [ 6] [621354] +18:12:20 [ 35] [ 37] [6688990040150953=98051261962169400000] +18:12:20 [ 37] [ 12] [507902776772] +18:12:20 [ 38] [ 6] [181010] +18:12:20 [ 39] [ 2] [55] +18:12:20 [ 41] [ 8] [01007100] +18:12:20 [ 49] [ 3] [418] +18:12:20 ============================================================================ +18:12:20 Sending to : +18:12:20 ============================================================================ +18:12:20 + + +waiting on router queue for slot.... +18:12:21 ============================================================================ +18:12:21 Slot Id : <355> +18:12:21 Transaction Type : RESPONSE +18:12:21 Received From : +18:12:21 ============================================================================ +18:12:21 FNo. Len. Field Value +18:12:21 ============================================================================ +18:12:21 [ 1] [ 4] [0210] +18:12:21 [ 2] [ 16] [6688990040150953] +18:12:21 [ 3] [ 6] [011000] +18:12:21 [ 4] [ 12] [000002000000] +18:12:21 [ 7] [ 10] [0320181215] +18:12:21 [ 11] [ 6] [824977] +18:12:21 [ 12] [ 6] [181215] +18:12:21 [ 13] [ 4] [0320] +18:12:21 [ 15] [ 4] [0320] +18:12:21 [ 18] [ 4] [6011] +18:12:21 [ 22] [ 3] [021] +18:12:21 [ 32] [ 6] [621354] +18:12:21 [ 35] [ 37] [6688990040150953=98051261962169400000] +18:12:21 [ 37] [ 12] [507902776772] +18:12:21 [ 38] [ 6] [181010] +18:12:21 [ 39] [ 2] [55] +18:12:21 [ 41] [ 8] [01007100] +18:12:21 [ 49] [ 3] [418] +18:12:21 ============================================================================ +18:12:21 Calculate Source COMM Id = 0 +18:12:21 ============================================================================ +18:12:21 + + +waiting on router queue for slot.... +18:12:23 ============================================================================ +18:12:23 Slot Id : <344> +18:12:23 Transaction Type : REQUEST +18:12:23 Received From : +18:12:23 ============================================================================ +18:12:23 FNo. Len. Field Value +18:12:23 ============================================================================ +18:12:23 [ 1] [ 4] [0800] +18:12:23 [ 7] [ 10] [0320111130] +18:12:23 [ 11] [ 6] [157647] +18:12:23 [ 70] [ 3] [301] +18:12:23 ============================================================================ +18:12:23 + + +waiting on router queue for slot.... +18:12:23 Sending to : +18:12:23 ============================================================================ +18:12:23 ============================================================================ +18:12:23 Slot Id : <344> +18:12:23 Transaction Type : RESPONSE +18:12:23 Received From : +18:12:23 ============================================================================ +18:12:23 FNo. Len. Field Value +18:12:23 ============================================================================ +18:12:23 [ 1] [ 4] [0810] +18:12:23 [ 7] [ 10] [0320111130] +18:12:23 [ 11] [ 6] [157647] +18:12:23 [ 39] [ 2] [00] +18:12:23 [ 70] [ 3] [301] +18:12:23 ============================================================================ +18:12:23 Calculate Source COMM Id = 2 +18:12:23 ============================================================================ +18:12:23 + + +waiting on router queue for slot.... +18:12:38 ============================================================================ +18:12:38 Slot Id : <370> +18:12:38 Transaction Type : REQUEST +18:12:38 Received From : +18:12:38 ============================================================================ +18:12:38 FNo. Len. Field Value +18:12:38 ============================================================================ +18:12:38 [ 1] [ 4] [0800] +18:12:38 [ 7] [ 10] [0320111145] +18:12:38 [ 11] [ 6] [157648] +18:12:38 [ 70] [ 3] [301] +18:12:38 ============================================================================ +18:12:38 + + +waiting on router queue for slot.... +18:12:38 Sending to : +18:12:38 ============================================================================ +18:12:38 ============================================================================ +18:12:38 Slot Id : <370> +18:12:38 Transaction Type : RESPONSE +18:12:38 Received From : +18:12:38 ============================================================================ +18:12:38 FNo. Len. Field Value +18:12:38 ============================================================================ +18:12:38 [ 1] [ 4] [0810] +18:12:38 [ 7] [ 10] [0320111145] +18:12:38 [ 11] [ 6] [157648] +18:12:38 [ 39] [ 2] [00] +18:12:38 [ 70] [ 3] [301] +18:12:38 ============================================================================ +18:12:38 Calculate Source COMM Id = 2 +18:12:38 ============================================================================ +18:12:38 + + +waiting on router queue for slot.... +18:12:46 ============================================================================ +18:12:46 Slot Id : <379> +18:12:46 Transaction Type : REQUEST +18:12:46 Received From : +18:12:46 ============================================================================ +18:12:46 FNo. Len. Field Value +18:12:46 ============================================================================ +18:12:46 [ 1] [ 4] [0200] +18:12:46 [ 2] [ 16] [6213544002078779] +18:12:46 [ 3] [ 6] [010000] +18:12:46 [ 4] [ 12] [000050000000] +18:12:46 [ 7] [ 10] [0320181035] +18:12:46 [ 11] [ 6] [954438] +18:12:46 [ 12] [ 6] [181035] +18:12:46 [ 13] [ 4] [0320] +18:12:46 [ 15] [ 4] [0320] +18:12:46 [ 18] [ 4] [6011] +18:12:46 [ 19] [ 3] [418] +18:12:46 [ 22] [ 3] [021] +18:12:46 [ 25] [ 2] [01] +18:12:46 [ 28] [ 9] [D00002000] +18:12:46 [ 32] [ 6] [668899] +18:12:46 [ 35] [ 32] [6213544002078779=491212017877752] +18:12:46 [ 37] [ 12] [507901541771] +18:12:46 [ 41] [ 8] [03020016] +18:12:46 [ 42] [ 15] [APT ] +18:12:46 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +18:12:46 [ 49] [ 3] [418] +18:12:46 [ 52] [ 16] [A500298B657B9BDF] +18:12:46 ============================================================================ +18:12:46 + + +waiting on router queue for slot.... +18:12:46 Sending to : +18:12:46 ============================================================================ +18:12:46 Sending to : +18:12:46 ============================================================================ +18:12:46 ============================================================================ +18:12:46 Slot Id : <379> +18:12:46 Transaction Type : REQUEST +18:12:46 Received From : +18:12:46 ============================================================================ +18:12:46 FNo. Len. Field Value +18:12:46 ============================================================================ +18:12:46 [ 1] [ 4] [0200] +18:12:46 [ 2] [ 16] [6213544002078779] +18:12:46 [ 3] [ 6] [010000] +18:12:46 [ 4] [ 12] [000050000000] +18:12:46 [ 7] [ 10] [0320181035] +18:12:46 [ 11] [ 6] [954438] +18:12:46 [ 12] [ 6] [181035] +18:12:46 [ 13] [ 4] [0320] +18:12:46 [ 15] [ 4] [0320] +18:12:46 [ 18] [ 4] [6011] +18:12:46 [ 19] [ 3] [418] +18:12:46 [ 22] [ 3] [021] +18:12:46 [ 25] [ 2] [01] +18:12:46 [ 28] [ 9] [D00002000] +18:12:46 [ 32] [ 6] [668899] +18:12:46 [ 35] [ 32] [6213544002078779=491212017877752] +18:12:46 [ 37] [ 12] [507901541771] +18:12:46 [ 41] [ 8] [03020016] +18:12:46 [ 42] [ 15] [APT ] +18:12:46 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +18:12:46 [ 49] [ 3] [418] +18:12:46 [ 52] [ 16] [A500298B657B9BDF] +18:12:46 ============================================================================ +18:12:46 + + +waiting on router queue for slot.... +18:12:46 Sending to : +18:12:46 ============================================================================ +18:12:46 ============================================================================ +18:12:46 Slot Id : <379> +18:12:46 Transaction Type : REQUEST +18:12:46 Received From : +18:12:46 ============================================================================ +18:12:46 FNo. Len. Field Value +18:12:46 ============================================================================ +18:12:46 [ 1] [ 4] [0200] +18:12:46 [ 2] [ 16] [6213544002078779] +18:12:46 [ 3] [ 6] [010000] +18:12:46 [ 4] [ 12] [000050000000] +18:12:46 [ 7] [ 10] [0320181035] +18:12:46 [ 11] [ 6] [954438] +18:12:46 [ 12] [ 6] [181035] +18:12:46 [ 13] [ 4] [0320] +18:12:46 [ 15] [ 4] [0320] +18:12:46 [ 18] [ 4] [6011] +18:12:46 [ 19] [ 3] [418] +18:12:46 [ 22] [ 3] [021] +18:12:46 [ 25] [ 2] [01] +18:12:46 [ 28] [ 9] [D00002000] +18:12:46 [ 32] [ 6] [668899] +18:12:46 [ 35] [ 32] [6213544002078779=491212017877752] +18:12:46 [ 37] [ 12] [507901541771] +18:12:46 [ 41] [ 8] [03020016] +18:12:46 [ 42] [ 15] [APT ] +18:12:46 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +18:12:46 [ 49] [ 3] [418] +18:12:46 [ 52] [ 16] [30CD6A500E5D4891] +18:12:46 ============================================================================ +18:12:46 + + +waiting on router queue for slot.... +18:12:46 Sending to : <0> +18:12:46 ============================================================================ +18:12:47 ============================================================================ +18:12:47 Slot Id : <379> +18:12:47 Transaction Type : RESPONSE +18:12:47 Received From : +18:12:47 ============================================================================ +18:12:47 FNo. Len. Field Value +18:12:47 ============================================================================ +18:12:47 [ 1] [ 4] [0210] +18:12:47 [ 2] [ 16] [6213544002078779] +18:12:47 [ 3] [ 6] [010000] +18:12:47 [ 4] [ 12] [000050000000] +18:12:47 [ 7] [ 10] [0320181035] +18:12:47 [ 11] [ 6] [954438] +18:12:47 [ 12] [ 6] [181035] +18:12:47 [ 13] [ 4] [0320] +18:12:47 [ 15] [ 4] [0320] +18:12:47 [ 18] [ 4] [6011] +18:12:47 [ 19] [ 3] [418] +18:12:47 [ 32] [ 6] [668899] +18:12:47 [ 35] [ 32] [6213544002078779=491212017877752] +18:12:47 [ 37] [ 12] [507901541771] +18:12:47 [ 38] [ 6] [573639] +18:12:47 [ 39] [ 2] [00] +18:12:47 [ 41] [ 8] [03020016] +18:12:47 [ 49] [ 3] [418] +18:12:47 [ 54] [ 40] [0001418C0000189603480002418C000018960348] +18:12:47 ============================================================================ +18:12:47 Sending to : +18:12:47 ============================================================================ +18:12:47 + + +waiting on router queue for slot.... +18:12:48 ============================================================================ +18:12:48 Slot Id : <379> +18:12:48 Transaction Type : RESPONSE +18:12:48 Received From : +18:12:48 ============================================================================ +18:12:48 FNo. Len. Field Value +18:12:48 ============================================================================ +18:12:48 [ 1] [ 4] [0210] +18:12:48 [ 2] [ 16] [6213544002078779] +18:12:48 [ 3] [ 6] [010000] +18:12:48 [ 4] [ 12] [000050000000] +18:12:48 [ 7] [ 10] [0320181035] +18:12:48 [ 11] [ 6] [954438] +18:12:48 [ 12] [ 6] [181035] +18:12:48 [ 13] [ 4] [0320] +18:12:48 [ 15] [ 4] [0320] +18:12:48 [ 18] [ 4] [6011] +18:12:48 [ 19] [ 3] [418] +18:12:48 [ 32] [ 6] [668899] +18:12:48 [ 35] [ 32] [6213544002078779=491212017877752] +18:12:48 [ 37] [ 12] [507901541771] +18:12:48 [ 38] [ 6] [573639] +18:12:48 [ 39] [ 2] [00] +18:12:48 [ 41] [ 8] [03020016] +18:12:48 [ 49] [ 3] [418] +18:12:48 [ 54] [ 40] [0001418C0000189603480002418C000018960348] +18:12:48 ============================================================================ +18:12:48 Calculate Source COMM Id = 4 +18:12:48 ============================================================================ +18:12:48 + + +waiting on router queue for slot.... +18:12:49 ============================================================================ +18:12:49 Slot Id : <358> +18:12:49 Transaction Type : REQUEST +18:12:49 Received From : +18:12:49 ============================================================================ +18:12:49 FNo. Len. Field Value +18:12:49 ============================================================================ +18:12:49 [ 1] [ 4] [0800] +18:12:49 [ 7] [ 10] [0320111156] +18:12:49 [ 11] [ 6] [157649] +18:12:49 [ 70] [ 3] [301] +18:12:49 ============================================================================ +18:12:49 + + +waiting on router queue for slot.... +18:12:49 Sending to : +18:12:49 ============================================================================ +18:12:49 ============================================================================ +18:12:49 Slot Id : <358> +18:12:49 Transaction Type : RESPONSE +18:12:49 Received From : +18:12:49 ============================================================================ +18:12:49 FNo. Len. Field Value +18:12:49 ============================================================================ +18:12:49 [ 1] [ 4] [0810] +18:12:49 [ 7] [ 10] [0320111156] +18:12:49 [ 11] [ 6] [157649] +18:12:49 [ 39] [ 2] [00] +18:12:49 [ 70] [ 3] [301] +18:12:49 ============================================================================ +18:12:49 Calculate Source COMM Id = 2 +18:12:49 ============================================================================ +18:12:49 + + +waiting on router queue for slot.... +18:12:53 ============================================================================ +18:12:53 Slot Id : <369> +18:12:53 Transaction Type : REQUEST +18:12:53 Received From : +18:12:53 ============================================================================ +18:12:53 FNo. Len. Field Value +18:12:53 ============================================================================ +18:12:53 [ 1] [ 4] [0800] +18:12:53 [ 2] [ 5] [02531] +18:12:53 [ 3] [ 6] [579188] +18:12:53 [ 7] [ 10] [0320111253] +18:12:53 [ 11] [ 6] [807469] +18:12:53 [ 15] [ 10] [0320111253] +18:12:53 [ 37] [ 11] [57918807469] +18:12:53 [ 70] [ 3] [001] +18:12:53 ============================================================================ +18:12:53 + + +waiting on router queue for slot.... +18:12:53 ============================================================================ +18:12:53 Slot Id : <369> +18:12:53 Transaction Type : RESPONSE +18:12:53 Received From : +18:12:53 ============================================================================ +18:12:53 FNo. Len. Field Value +18:12:53 ============================================================================ +18:12:53 [ 1] [ 4] [0810] +18:12:53 [ 7] [ 10] [0320111253] +18:12:53 [ 11] [ 6] [807469] +18:12:53 [ 15] [ 4] [0320] +18:12:53 [ 37] [ 12] [57918807469] +18:12:53 [ 39] [ 2] [00] +18:12:53 [ 70] [ 3] [001] +18:12:53 ============================================================================ +18:12:53 Sending to : +18:12:53 ============================================================================ +18:12:53 + + +waiting on router queue for slot.... +18:12:58 ============================================================================ +18:12:58 Slot Id : <338> +18:12:58 Transaction Type : REQUEST +18:12:58 Received From : +18:12:58 ============================================================================ +18:12:58 FNo. Len. Field Value +18:12:58 ============================================================================ +18:12:58 [ 1] [ 4] [0200] +18:12:58 [ 2] [ 16] [6688990602722306] +18:12:58 [ 3] [ 6] [010000] +18:12:58 [ 4] [ 12] [000200000000] +18:12:58 [ 7] [ 10] [0320111204] +18:12:58 [ 11] [ 6] [271111] +18:12:58 [ 12] [ 6] [181204] +18:12:58 [ 13] [ 4] [0320] +18:12:58 [ 14] [ 4] [4310] +18:12:58 [ 15] [ 4] [0320] +18:12:58 [ 18] [ 4] [6011] +18:12:58 [ 19] [ 3] [418] +18:12:58 [ 22] [ 3] [021] +18:12:58 [ 25] [ 2] [01] +18:12:58 [ 28] [ 9] [D00002000] +18:12:58 [ 32] [ 6] [180893] +18:12:58 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:12:58 [ 37] [ 12] [507911271111] +18:12:58 [ 41] [ 8] [0201ADD1] +18:12:58 [ 42] [ 15] [999999 ] +18:12:58 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +18:12:58 [ 49] [ 3] [418] +18:12:58 [ 52] [ 16] [8F06EB2BCA2A3F39] +18:12:58 ============================================================================ +18:12:58 + + +waiting on router queue for slot.... +18:12:58 Sending to : +18:12:58 ============================================================================ +18:12:58 Sending to : +18:12:58 ============================================================================ +18:12:58 ============================================================================ +18:12:58 Slot Id : <338> +18:12:58 Transaction Type : REQUEST +18:12:58 Received From : +18:12:58 ============================================================================ +18:12:58 FNo. Len. Field Value +18:12:58 ============================================================================ +18:12:58 [ 1] [ 4] [0200] +18:12:58 [ 2] [ 16] [6688990602722306] +18:12:58 [ 3] [ 6] [010000] +18:12:58 [ 4] [ 12] [000200000000] +18:12:58 [ 7] [ 10] [0320111204] +18:12:58 [ 11] [ 6] [271111] +18:12:58 [ 12] [ 6] [181204] +18:12:58 [ 13] [ 4] [0320] +18:12:58 [ 14] [ 4] [4310] +18:12:58 [ 15] [ 4] [0320] +18:12:58 [ 18] [ 4] [6011] +18:12:58 [ 19] [ 3] [418] +18:12:58 [ 22] [ 3] [021] +18:12:58 [ 25] [ 2] [01] +18:12:58 [ 28] [ 9] [D00002000] +18:12:58 [ 32] [ 6] [180893] +18:12:58 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:12:58 [ 37] [ 12] [507911271111] +18:12:58 [ 41] [ 8] [0201ADD1] +18:12:58 [ 42] [ 15] [999999 ] +18:12:58 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +18:12:58 [ 49] [ 3] [418] +18:12:58 [ 52] [ 16] [8F06EB2BCA2A3F39] +18:12:58 ============================================================================ +18:12:58 + + +waiting on router queue for slot.... +18:12:58 Sending to : +18:12:58 ============================================================================ +18:12:58 ============================================================================ +18:12:58 Slot Id : <338> +18:12:58 Transaction Type : REQUEST +18:12:58 Received From : +18:12:58 ============================================================================ +18:12:58 FNo. Len. Field Value +18:12:58 ============================================================================ +18:12:58 [ 1] [ 4] [0200] +18:12:58 [ 2] [ 16] [6688990602722306] +18:12:58 [ 3] [ 6] [010000] +18:12:58 [ 4] [ 12] [000200000000] +18:12:58 [ 7] [ 10] [0320111204] +18:12:58 [ 11] [ 6] [271111] +18:12:58 [ 12] [ 6] [181204] +18:12:58 [ 13] [ 4] [0320] +18:12:58 [ 14] [ 4] [4310] +18:12:58 [ 15] [ 4] [0320] +18:12:58 [ 18] [ 4] [6011] +18:12:58 [ 19] [ 3] [418] +18:12:58 [ 22] [ 3] [021] +18:12:58 [ 25] [ 2] [01] +18:12:58 [ 28] [ 9] [D00002000] +18:12:58 [ 32] [ 6] [180893] +18:12:58 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:12:58 [ 37] [ 12] [507911271111] +18:12:58 [ 41] [ 8] [0201ADD1] +18:12:58 [ 42] [ 15] [999999 ] +18:12:58 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +18:12:58 [ 49] [ 3] [418] +18:12:58 [ 52] [ 16] [F4A7998F0ED3D918] +18:12:58 ============================================================================ +18:12:58 + + +waiting on router queue for slot.... +18:12:58 Sending to : <0> +18:12:58 ============================================================================ +18:12:58 ============================================================================ +18:12:58 Slot Id : <338> +18:12:58 Transaction Type : RESPONSE +18:12:58 Received From : +18:12:58 ============================================================================ +18:12:58 FNo. Len. Field Value +18:12:58 ============================================================================ +18:12:58 [ 1] [ 4] [0210] +18:12:58 [ 2] [ 16] [6688990602722306] +18:12:58 [ 3] [ 6] [010000] +18:12:58 [ 4] [ 12] [000200000000] +18:12:58 [ 7] [ 10] [0320111204] +18:12:58 [ 11] [ 6] [271111] +18:12:58 [ 12] [ 6] [181204] +18:12:58 [ 13] [ 4] [0320] +18:12:58 [ 15] [ 4] [0320] +18:12:58 [ 18] [ 4] [6011] +18:12:58 [ 19] [ 3] [418] +18:12:58 [ 22] [ 3] [021] +18:12:58 [ 32] [ 6] [180893] +18:12:58 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:12:58 [ 37] [ 12] [507911271111] +18:12:58 [ 39] [ 2] [61] +18:12:58 [ 41] [ 8] [0201ADD1] +18:12:58 [ 49] [ 3] [418] +18:12:58 ============================================================================ +18:12:58 Sending to : +18:12:58 ============================================================================ +18:12:58 + + +waiting on router queue for slot.... +18:12:59 ============================================================================ +18:12:59 Slot Id : <338> +18:12:59 Transaction Type : RESPONSE +18:12:59 Received From : +18:12:59 ============================================================================ +18:12:59 FNo. Len. Field Value +18:12:59 ============================================================================ +18:12:59 [ 1] [ 4] [0210] +18:12:59 [ 2] [ 16] [6688990602722306] +18:12:59 [ 3] [ 6] [010000] +18:12:59 [ 4] [ 12] [000200000000] +18:12:59 [ 7] [ 10] [0320111204] +18:12:59 [ 11] [ 6] [271111] +18:12:59 [ 12] [ 6] [181204] +18:12:59 [ 13] [ 4] [0320] +18:12:59 [ 15] [ 4] [0320] +18:12:59 [ 18] [ 4] [6011] +18:12:59 [ 19] [ 3] [418] +18:12:59 [ 22] [ 3] [021] +18:12:59 [ 32] [ 6] [180893] +18:12:59 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:12:59 [ 37] [ 12] [507911271111] +18:12:59 [ 39] [ 2] [61] +18:12:59 [ 41] [ 8] [0201ADD1] +18:12:59 [ 49] [ 3] [418] +18:12:59 ============================================================================ +18:12:59 Calculate Source COMM Id = 2 +18:12:59 ============================================================================ +18:12:59 + + +waiting on router queue for slot.... +18:13:00 ============================================================================ +18:13:00 Slot Id : <360> +18:13:00 Transaction Type : REQUEST +18:13:00 Received From : +18:13:00 ============================================================================ +18:13:00 FNo. Len. Field Value +18:13:00 ============================================================================ +18:13:00 [ 1] [ 4] [0800] +18:13:00 [ 7] [ 10] [0320111206] +18:13:00 [ 11] [ 6] [157650] +18:13:00 [ 70] [ 3] [301] +18:13:00 ============================================================================ +18:13:00 + + +waiting on router queue for slot.... +18:13:00 Sending to : +18:13:00 ============================================================================ +18:13:00 ============================================================================ +18:13:00 Slot Id : <360> +18:13:00 Transaction Type : RESPONSE +18:13:00 Received From : +18:13:00 ============================================================================ +18:13:00 FNo. Len. Field Value +18:13:00 ============================================================================ +18:13:00 [ 1] [ 4] [0810] +18:13:00 [ 7] [ 10] [0320111206] +18:13:00 [ 11] [ 6] [157650] +18:13:00 [ 39] [ 2] [00] +18:13:00 [ 70] [ 3] [301] +18:13:00 ============================================================================ +18:13:00 Calculate Source COMM Id = 2 +18:13:00 ============================================================================ +18:13:00 + + +waiting on router queue for slot.... +18:13:03 ============================================================================ +18:13:03 Slot Id : <354> +18:13:03 Transaction Type : REQUEST +18:13:03 Received From : +18:13:03 ============================================================================ +18:13:03 FNo. Len. Field Value +18:13:03 ============================================================================ +18:13:03 [ 1] [ 4] [0800] +18:13:03 [ 7] [ 10] [0321012451] +18:13:03 [ 11] [ 6] [182451] +18:13:03 [ 37] [ 12] [57918182451] +18:13:03 [ 70] [ 3] [301] +18:13:03 ============================================================================ +18:13:03 + + +waiting on router queue for slot.... +18:13:03 Sending to : +18:13:03 ============================================================================ +18:13:03 ============================================================================ +18:13:03 Slot Id : <354> +18:13:03 Transaction Type : RESPONSE +18:13:03 Received From : +18:13:03 ============================================================================ +18:13:03 FNo. Len. Field Value +18:13:03 ============================================================================ +18:13:03 [ 1] [ 4] [0810] +18:13:03 [ 7] [ 10] [0321012451] +18:13:03 [ 11] [ 6] [182451] +18:13:03 [ 37] [ 12] [579181824510] +18:13:03 [ 39] [ 2] [00] +18:13:03 [ 70] [ 3] [810] +18:13:03 ============================================================================ +18:13:03 Calculate Source COMM Id = 6 +18:13:03 ============================================================================ +18:13:03 + + +waiting on router queue for slot.... +18:13:04 ============================================================================ +18:13:04 Slot Id : <396> +18:13:04 Transaction Type : REQUEST +18:13:04 Received From : +18:13:04 ============================================================================ +18:13:04 FNo. Len. Field Value +18:13:04 ============================================================================ +18:13:04 [ 1] [ 4] [0200] +18:13:04 [ 2] [ 16] [6688990040150953] +18:13:04 [ 3] [ 6] [011000] +18:13:04 [ 4] [ 12] [000002000000] +18:13:04 [ 7] [ 10] [0320181259] +18:13:04 [ 11] [ 6] [825084] +18:13:04 [ 12] [ 6] [181259] +18:13:04 [ 13] [ 4] [0320] +18:13:04 [ 15] [ 4] [0320] +18:13:04 [ 18] [ 4] [6011] +18:13:04 [ 22] [ 3] [900] +18:13:04 [ 25] [ 2] [02] +18:13:04 [ 28] [ 9] [D00002000] +18:13:04 [ 32] [ 6] [621354] +18:13:04 [ 35] [ 37] [6688990040150953=98051261962169400000] +18:13:04 [ 37] [ 12] [507902776774] +18:13:04 [ 41] [ 8] [01007100] +18:13:04 [ 42] [ 15] [NATIVE ] +18:13:04 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +18:13:04 [ 49] [ 3] [418] +18:13:04 [ 52] [ 16] [3339DEFA2ADB5319] +18:13:04 ============================================================================ +18:13:04 + + +waiting on router queue for slot.... +18:13:04 Sending to : +18:13:04 ============================================================================ +18:13:04 Sending to : +18:13:04 ============================================================================ +18:13:05 ============================================================================ +18:13:05 Slot Id : <396> +18:13:05 Transaction Type : REQUEST +18:13:05 Received From : +18:13:05 ============================================================================ +18:13:05 FNo. Len. Field Value +18:13:05 ============================================================================ +18:13:05 [ 1] [ 4] [0200] +18:13:05 [ 2] [ 16] [6688990040150953] +18:13:05 [ 3] [ 6] [011000] +18:13:05 [ 4] [ 12] [000002000000] +18:13:05 [ 7] [ 10] [0320181259] +18:13:05 [ 11] [ 6] [825084] +18:13:05 [ 12] [ 6] [181259] +18:13:05 [ 13] [ 4] [0320] +18:13:05 [ 15] [ 4] [0320] +18:13:05 [ 18] [ 4] [6011] +18:13:05 [ 22] [ 3] [900] +18:13:05 [ 25] [ 2] [02] +18:13:05 [ 28] [ 9] [D00002000] +18:13:05 [ 32] [ 6] [621354] +18:13:05 [ 35] [ 37] [6688990040150953=98051261962169400000] +18:13:05 [ 37] [ 12] [507902776774] +18:13:05 [ 41] [ 8] [01007100] +18:13:05 [ 42] [ 15] [NATIVE ] +18:13:05 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +18:13:05 [ 49] [ 3] [418] +18:13:05 [ 52] [ 16] [3339DEFA2ADB5319] +18:13:05 ============================================================================ +18:13:05 + + +waiting on router queue for slot.... +18:13:05 Sending to : +18:13:05 ============================================================================ +18:13:05 ============================================================================ +18:13:05 Slot Id : <396> +18:13:05 Transaction Type : REQUEST +18:13:05 Received From : +18:13:05 ============================================================================ +18:13:05 FNo. Len. Field Value +18:13:05 ============================================================================ +18:13:05 [ 1] [ 4] [0200] +18:13:05 [ 2] [ 16] [6688990040150953] +18:13:05 [ 3] [ 6] [011000] +18:13:05 [ 4] [ 12] [000002000000] +18:13:05 [ 7] [ 10] [0320181259] +18:13:05 [ 11] [ 6] [825084] +18:13:05 [ 12] [ 6] [181259] +18:13:05 [ 13] [ 4] [0320] +18:13:05 [ 15] [ 4] [0320] +18:13:05 [ 18] [ 4] [6011] +18:13:05 [ 22] [ 3] [900] +18:13:05 [ 25] [ 2] [02] +18:13:05 [ 28] [ 9] [D00002000] +18:13:05 [ 32] [ 6] [621354] +18:13:05 [ 35] [ 37] [6688990040150953=98051261962169400000] +18:13:05 [ 37] [ 12] [507902776774] +18:13:05 [ 41] [ 8] [01007100] +18:13:05 [ 42] [ 15] [NATIVE ] +18:13:05 [ 43] [ 40] [SIKHOT SCHOOL SikhottabongLAO] +18:13:05 [ 49] [ 3] [418] +18:13:05 [ 52] [ 16] [2529C5F1EC991729] +18:13:05 ============================================================================ +18:13:05 + + +waiting on router queue for slot.... +18:13:05 Sending to : <4> +18:13:05 ============================================================================ +18:13:06 ============================================================================ +18:13:06 Slot Id : <396> +18:13:06 Transaction Type : RESPONSE +18:13:06 Received From : +18:13:06 ============================================================================ +18:13:06 FNo. Len. Field Value +18:13:06 ============================================================================ +18:13:06 [ 1] [ 4] [0210] +18:13:06 [ 2] [ 16] [6688990040150953] +18:13:06 [ 3] [ 6] [011000] +18:13:06 [ 4] [ 12] [000002000000] +18:13:06 [ 11] [ 6] [825084] +18:13:06 [ 12] [ 6] [181259] +18:13:06 [ 15] [ 4] [0320] +18:13:06 [ 18] [ 4] [6011] +18:13:06 [ 32] [ 6] [621354] +18:13:06 [ 35] [ 37] [6688990040150953=98051261962169400000] +18:13:06 [ 37] [ 12] [507902776774] +18:13:06 [ 38] [ 6] [819156] +18:13:06 [ 39] [ 2] [00] +18:13:06 [ 41] [ 8] [01007100] +18:13:06 [ 49] [ 3] [418] +18:13:06 [ 54] [ 20] [1002418C000136100000] +18:13:06 ============================================================================ +18:13:06 Sending to : +18:13:06 ============================================================================ +18:13:06 + + +waiting on router queue for slot.... +18:13:07 ============================================================================ +18:13:07 Slot Id : <396> +18:13:07 Transaction Type : RESPONSE +18:13:07 Received From : +18:13:07 ============================================================================ +18:13:07 FNo. Len. Field Value +18:13:07 ============================================================================ +18:13:07 [ 1] [ 4] [0210] +18:13:07 [ 2] [ 16] [6688990040150953] +18:13:07 [ 3] [ 6] [011000] +18:13:07 [ 4] [ 12] [000002000000] +18:13:07 [ 11] [ 6] [825084] +18:13:07 [ 12] [ 6] [181259] +18:13:07 [ 15] [ 4] [0320] +18:13:07 [ 18] [ 4] [6011] +18:13:07 [ 32] [ 6] [621354] +18:13:07 [ 35] [ 37] [6688990040150953=98051261962169400000] +18:13:07 [ 37] [ 12] [507902776774] +18:13:07 [ 38] [ 6] [819156] +18:13:07 [ 39] [ 2] [00] +18:13:07 [ 41] [ 8] [01007100] +18:13:07 [ 49] [ 3] [418] +18:13:07 [ 54] [ 20] [1002418C000136100000] +18:13:07 ============================================================================ +18:13:07 Calculate Source COMM Id = 0 +18:13:07 ============================================================================ +18:13:07 + + +waiting on router queue for slot.... +18:13:08 ============================================================================ +18:13:08 Slot Id : <390> +18:13:08 Transaction Type : REQUEST +18:13:08 Received From : +18:13:08 ============================================================================ +18:13:08 FNo. Len. Field Value +18:13:08 ============================================================================ +18:13:08 [ 1] [ 4] [0200] +18:13:08 [ 2] [ 16] [6213545001027535] +18:13:08 [ 3] [ 6] [010000] +18:13:08 [ 4] [ 12] [000010000000] +18:13:08 [ 7] [ 10] [0320111214] +18:13:08 [ 11] [ 6] [271114] +18:13:08 [ 12] [ 6] [181214] +18:13:08 [ 13] [ 4] [0320] +18:13:08 [ 14] [ 4] [4912] +18:13:08 [ 15] [ 4] [0320] +18:13:08 [ 18] [ 4] [6011] +18:13:08 [ 19] [ 3] [418] +18:13:08 [ 22] [ 3] [021] +18:13:08 [ 25] [ 2] [01] +18:13:08 [ 28] [ 9] [D00002000] +18:13:08 [ 32] [ 6] [180893] +18:13:08 [ 35] [ 32] [6213545001027535=491212012753540] +18:13:08 [ 37] [ 12] [507911271114] +18:13:08 [ 41] [ 8] [0467PSLK] +18:13:08 [ 42] [ 15] [999999 ] +18:13:08 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:13:08 [ 49] [ 3] [418] +18:13:08 [ 52] [ 16] [DB61E1A4943E3D17] +18:13:08 ============================================================================ +18:13:08 + + +waiting on router queue for slot.... +18:13:08 Sending to : +18:13:08 ============================================================================ +18:13:08 Sending to : +18:13:08 ============================================================================ +18:13:08 ============================================================================ +18:13:08 Slot Id : <390> +18:13:08 Transaction Type : REQUEST +18:13:08 Received From : +18:13:08 ============================================================================ +18:13:08 FNo. Len. Field Value +18:13:08 ============================================================================ +18:13:08 [ 1] [ 4] [0200] +18:13:08 [ 2] [ 16] [6213545001027535] +18:13:08 [ 3] [ 6] [010000] +18:13:08 [ 4] [ 12] [000010000000] +18:13:08 [ 7] [ 10] [0320111214] +18:13:08 [ 11] [ 6] [271114] +18:13:08 [ 12] [ 6] [181214] +18:13:08 [ 13] [ 4] [0320] +18:13:08 [ 14] [ 4] [4912] +18:13:08 [ 15] [ 4] [0320] +18:13:08 [ 18] [ 4] [6011] +18:13:08 [ 19] [ 3] [418] +18:13:08 [ 22] [ 3] [021] +18:13:08 [ 25] [ 2] [01] +18:13:08 [ 28] [ 9] [D00002000] +18:13:08 [ 32] [ 6] [180893] +18:13:08 [ 35] [ 32] [6213545001027535=491212012753540] +18:13:08 [ 37] [ 12] [507911271114] +18:13:08 [ 41] [ 8] [0467PSLK] +18:13:08 [ 42] [ 15] [999999 ] +18:13:08 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:13:08 [ 49] [ 3] [418] +18:13:08 [ 52] [ 16] [DB61E1A4943E3D17] +18:13:08 ============================================================================ +18:13:08 + + +waiting on router queue for slot.... +18:13:08 Sending to : +18:13:08 ============================================================================ +18:13:08 ============================================================================ +18:13:08 Slot Id : <390> +18:13:08 Transaction Type : REQUEST +18:13:08 Received From : +18:13:08 ============================================================================ +18:13:08 FNo. Len. Field Value +18:13:08 ============================================================================ +18:13:08 [ 1] [ 4] [0200] +18:13:08 [ 2] [ 16] [6213545001027535] +18:13:08 [ 3] [ 6] [010000] +18:13:08 [ 4] [ 12] [000010000000] +18:13:08 [ 7] [ 10] [0320111214] +18:13:08 [ 11] [ 6] [271114] +18:13:08 [ 12] [ 6] [181214] +18:13:08 [ 13] [ 4] [0320] +18:13:08 [ 14] [ 4] [4912] +18:13:08 [ 15] [ 4] [0320] +18:13:08 [ 18] [ 4] [6011] +18:13:08 [ 19] [ 3] [418] +18:13:08 [ 22] [ 3] [021] +18:13:08 [ 25] [ 2] [01] +18:13:08 [ 28] [ 9] [D00002000] +18:13:08 [ 32] [ 6] [180893] +18:13:08 [ 35] [ 32] [6213545001027535=491212012753540] +18:13:08 [ 37] [ 12] [507911271114] +18:13:08 [ 41] [ 8] [0467PSLK] +18:13:08 [ 42] [ 15] [999999 ] +18:13:08 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:13:08 [ 49] [ 3] [418] +18:13:08 [ 52] [ 16] [68B0F5D351D43936] +18:13:08 ============================================================================ +18:13:08 + + +waiting on router queue for slot.... +18:13:08 Sending to : <0> +18:13:08 ============================================================================ +18:13:09 ============================================================================ +18:13:09 Slot Id : <390> +18:13:09 Transaction Type : RESPONSE +18:13:09 Received From : +18:13:09 ============================================================================ +18:13:09 FNo. Len. Field Value +18:13:09 ============================================================================ +18:13:09 [ 1] [ 4] [0210] +18:13:09 [ 2] [ 16] [6213545001027535] +18:13:09 [ 3] [ 6] [010000] +18:13:09 [ 4] [ 12] [000010000000] +18:13:09 [ 7] [ 10] [0320111214] +18:13:09 [ 11] [ 6] [271114] +18:13:09 [ 12] [ 6] [181214] +18:13:09 [ 13] [ 4] [0320] +18:13:09 [ 15] [ 4] [0320] +18:13:09 [ 18] [ 4] [6011] +18:13:09 [ 19] [ 3] [418] +18:13:09 [ 32] [ 6] [180893] +18:13:09 [ 35] [ 32] [6213545001027535=491212012753540] +18:13:09 [ 37] [ 12] [507911271114] +18:13:09 [ 38] [ 6] [614814] +18:13:09 [ 39] [ 2] [00] +18:13:09 [ 41] [ 8] [0467PSLK] +18:13:09 [ 49] [ 3] [418] +18:13:09 [ 54] [ 40] [0001418C0000361928440002418C000036192844] +18:13:09 ============================================================================ +18:13:09 Sending to : +18:13:09 ============================================================================ +18:13:09 + + +waiting on router queue for slot.... +18:13:10 ============================================================================ +18:13:10 Slot Id : <390> +18:13:10 Transaction Type : RESPONSE +18:13:10 Received From : +18:13:10 ============================================================================ +18:13:10 FNo. Len. Field Value +18:13:10 ============================================================================ +18:13:10 [ 1] [ 4] [0210] +18:13:10 [ 2] [ 16] [6213545001027535] +18:13:10 [ 3] [ 6] [010000] +18:13:10 [ 4] [ 12] [000010000000] +18:13:10 [ 7] [ 10] [0320111214] +18:13:10 [ 11] [ 6] [271114] +18:13:10 [ 12] [ 6] [181214] +18:13:10 [ 13] [ 4] [0320] +18:13:10 [ 15] [ 4] [0320] +18:13:10 [ 18] [ 4] [6011] +18:13:10 [ 19] [ 3] [418] +18:13:10 [ 32] [ 6] [180893] +18:13:10 [ 35] [ 32] [6213545001027535=491212012753540] +18:13:10 [ 37] [ 12] [507911271114] +18:13:10 [ 38] [ 6] [614814] +18:13:10 [ 39] [ 2] [00] +18:13:10 [ 41] [ 8] [0467PSLK] +18:13:10 [ 49] [ 3] [418] +18:13:10 [ 54] [ 40] [0001418C0000361928440002418C000036192844] +18:13:10 ============================================================================ +18:13:10 Calculate Source COMM Id = 2 +18:13:10 ============================================================================ +18:13:10 + + +waiting on router queue for slot.... +18:13:20 ============================================================================ +18:13:20 Slot Id : <374> +18:13:20 Transaction Type : REQUEST +18:13:20 Received From : +18:13:20 ============================================================================ +18:13:20 FNo. Len. Field Value +18:13:20 ============================================================================ +18:13:20 [ 1] [ 4] [0800] +18:13:20 [ 7] [ 10] [0320111227] +18:13:20 [ 11] [ 6] [157651] +18:13:20 [ 70] [ 3] [301] +18:13:20 ============================================================================ +18:13:20 + + +waiting on router queue for slot.... +18:13:20 Sending to : +18:13:20 ============================================================================ +18:13:20 ============================================================================ +18:13:20 Slot Id : <374> +18:13:20 Transaction Type : RESPONSE +18:13:20 Received From : +18:13:20 ============================================================================ +18:13:20 FNo. Len. Field Value +18:13:20 ============================================================================ +18:13:20 [ 1] [ 4] [0810] +18:13:20 [ 7] [ 10] [0320111227] +18:13:20 [ 11] [ 6] [157651] +18:13:20 [ 39] [ 2] [00] +18:13:20 [ 70] [ 3] [301] +18:13:20 ============================================================================ +18:13:20 Calculate Source COMM Id = 2 +18:13:20 ============================================================================ +18:13:20 + + +waiting on router queue for slot.... +18:13:31 ============================================================================ +18:13:31 Slot Id : <361> +18:13:31 Transaction Type : REQUEST +18:13:31 Received From : +18:13:31 ============================================================================ +18:13:31 FNo. Len. Field Value +18:13:31 ============================================================================ +18:13:31 [ 1] [ 4] [0800] +18:13:31 [ 7] [ 10] [0320111237] +18:13:31 [ 11] [ 6] [157652] +18:13:31 [ 70] [ 3] [301] +18:13:31 ============================================================================ +18:13:31 + + +waiting on router queue for slot.... +18:13:31 Sending to : +18:13:31 ============================================================================ +18:13:31 ============================================================================ +18:13:31 Slot Id : <361> +18:13:31 Transaction Type : RESPONSE +18:13:31 Received From : +18:13:31 ============================================================================ +18:13:31 FNo. Len. Field Value +18:13:31 ============================================================================ +18:13:31 [ 1] [ 4] [0810] +18:13:31 [ 7] [ 10] [0320111237] +18:13:31 [ 11] [ 6] [157652] +18:13:31 [ 39] [ 2] [00] +18:13:31 [ 70] [ 3] [301] +18:13:31 ============================================================================ +18:13:31 Calculate Source COMM Id = 2 +18:13:31 ============================================================================ +18:13:31 + + +waiting on router queue for slot.... +18:13:41 ============================================================================ +18:13:41 Slot Id : <389> +18:13:41 Transaction Type : REQUEST +18:13:41 Received From : +18:13:41 ============================================================================ +18:13:41 FNo. Len. Field Value +18:13:41 ============================================================================ +18:13:41 [ 1] [ 4] [0200] +18:13:41 [ 2] [ 16] [1808931300011069] +18:13:41 [ 3] [ 6] [301000] +18:13:41 [ 4] [ 12] [000000000000] +18:13:41 [ 7] [ 10] [0320181336] +18:13:41 [ 11] [ 6] [825157] +18:13:41 [ 12] [ 6] [181336] +18:13:41 [ 13] [ 4] [0320] +18:13:41 [ 15] [ 4] [0320] +18:13:41 [ 18] [ 4] [6011] +18:13:41 [ 22] [ 3] [900] +18:13:41 [ 25] [ 2] [02] +18:13:41 [ 28] [ 9] [D00000000] +18:13:41 [ 32] [ 6] [621354] +18:13:41 [ 35] [ 27] [1808931300011069=1803500820] +18:13:41 [ 37] [ 12] [507904229485] +18:13:41 [ 41] [ 8] [05004600] +18:13:41 [ 42] [ 15] [NATIVE ] +18:13:41 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:13:41 [ 49] [ 3] [418] +18:13:41 [ 52] [ 16] [391A05F7D0713E99] +18:13:41 ============================================================================ +18:13:41 + + +waiting on router queue for slot.... +18:13:41 Sending to : +18:13:41 ============================================================================ +18:13:41 Sending to : +18:13:41 ============================================================================ +18:13:42 ============================================================================ +18:13:42 Slot Id : <389> +18:13:42 Transaction Type : REQUEST +18:13:42 Received From : +18:13:42 ============================================================================ +18:13:42 FNo. Len. Field Value +18:13:42 ============================================================================ +18:13:42 [ 1] [ 4] [0200] +18:13:42 [ 2] [ 16] [1808931300011069] +18:13:42 [ 3] [ 6] [301000] +18:13:42 [ 4] [ 12] [000000000000] +18:13:42 [ 7] [ 10] [0320181336] +18:13:42 [ 11] [ 6] [825157] +18:13:42 [ 12] [ 6] [181336] +18:13:42 [ 13] [ 4] [0320] +18:13:42 [ 15] [ 4] [0320] +18:13:42 [ 18] [ 4] [6011] +18:13:42 [ 22] [ 3] [900] +18:13:42 [ 25] [ 2] [02] +18:13:42 [ 28] [ 9] [D00000000] +18:13:42 [ 32] [ 6] [621354] +18:13:42 [ 35] [ 27] [1808931300011069=1803500820] +18:13:42 [ 37] [ 12] [507904229485] +18:13:42 [ 41] [ 8] [05004600] +18:13:42 [ 42] [ 15] [NATIVE ] +18:13:42 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:13:42 [ 49] [ 3] [418] +18:13:42 [ 52] [ 16] [391A05F7D0713E99] +18:13:42 ============================================================================ +18:13:42 + + +waiting on router queue for slot.... +18:13:42 Sending to : +18:13:42 ============================================================================ +18:13:42 ============================================================================ +18:13:42 Slot Id : <389> +18:13:42 Transaction Type : REQUEST +18:13:42 Received From : +18:13:42 ============================================================================ +18:13:42 FNo. Len. Field Value +18:13:42 ============================================================================ +18:13:42 [ 1] [ 4] [0200] +18:13:42 [ 2] [ 16] [1808931300011069] +18:13:42 [ 3] [ 6] [301000] +18:13:42 [ 4] [ 12] [000000000000] +18:13:42 [ 7] [ 10] [0320181336] +18:13:42 [ 11] [ 6] [825157] +18:13:42 [ 12] [ 6] [181336] +18:13:42 [ 13] [ 4] [0320] +18:13:42 [ 15] [ 4] [0320] +18:13:42 [ 18] [ 4] [6011] +18:13:42 [ 22] [ 3] [900] +18:13:42 [ 25] [ 2] [02] +18:13:42 [ 28] [ 9] [D00000000] +18:13:42 [ 32] [ 6] [621354] +18:13:42 [ 35] [ 27] [1808931300011069=1803500820] +18:13:42 [ 37] [ 12] [507904229485] +18:13:42 [ 41] [ 8] [05004600] +18:13:42 [ 42] [ 15] [NATIVE ] +18:13:42 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:13:42 [ 49] [ 3] [418] +18:13:42 [ 52] [ 16] [60E78FAC5EA6FE48] +18:13:42 ============================================================================ +18:13:42 + + +waiting on router queue for slot.... +18:13:42 Sending to : <2> +18:13:42 ============================================================================ +18:13:42 ============================================================================ +18:13:42 Slot Id : <351> +18:13:42 Transaction Type : REQUEST +18:13:42 Received From : +18:13:42 ============================================================================ +18:13:42 FNo. Len. Field Value +18:13:42 ============================================================================ +18:13:42 [ 1] [ 4] [0800] +18:13:42 [ 7] [ 10] [0320111248] +18:13:42 [ 11] [ 6] [157653] +18:13:42 [ 70] [ 3] [301] +18:13:42 ============================================================================ +18:13:42 + + +waiting on router queue for slot.... +18:13:42 Sending to : +18:13:42 ============================================================================ +18:13:42 ============================================================================ +18:13:42 Slot Id : <351> +18:13:42 Transaction Type : RESPONSE +18:13:42 Received From : +18:13:42 ============================================================================ +18:13:42 FNo. Len. Field Value +18:13:42 ============================================================================ +18:13:42 [ 1] [ 4] [0810] +18:13:42 [ 7] [ 10] [0320111248] +18:13:42 [ 11] [ 6] [157653] +18:13:42 [ 39] [ 2] [00] +18:13:42 [ 70] [ 3] [301] +18:13:42 ============================================================================ +18:13:42 Calculate Source COMM Id = 2 +18:13:42 ============================================================================ +18:13:42 + + +waiting on router queue for slot.... +18:13:46 ============================================================================ +18:13:46 Slot Id : <389> +18:13:46 Transaction Type : RESPONSE +18:13:46 Received From : +18:13:46 ============================================================================ +18:13:46 FNo. Len. Field Value +18:13:46 ============================================================================ +18:13:46 [ 1] [ 4] [0210] +18:13:46 [ 2] [ 16] [1808931300011069] +18:13:46 [ 3] [ 6] [301000] +18:13:46 [ 7] [ 10] [0320181336] +18:13:46 [ 11] [ 6] [825157] +18:13:46 [ 12] [ 6] [181336] +18:13:46 [ 13] [ 4] [0320] +18:13:46 [ 14] [ 4] [1803] +18:13:46 [ 19] [ 3] [418] +18:13:46 [ 32] [ 6] [621354] +18:13:46 [ 37] [ 12] [507904229485] +18:13:46 [ 38] [ 6] [825157] +18:13:46 [ 39] [ 2] [00] +18:13:46 [ 41] [ 8] [05004600] +18:13:46 [ 49] [ 3] [418] +18:13:46 [ 52] [ 16] [60E78FAC5EA6FE48] +18:13:46 [ 54] [ 20] [1002418C000025709500] +18:13:46 ============================================================================ +18:13:46 Sending to : +18:13:46 ============================================================================ +18:13:46 + + +waiting on router queue for slot.... +18:13:48 ============================================================================ +18:13:48 Slot Id : <389> +18:13:48 Transaction Type : RESPONSE +18:13:48 Received From : +18:13:48 ============================================================================ +18:13:48 FNo. Len. Field Value +18:13:48 ============================================================================ +18:13:48 [ 1] [ 4] [0210] +18:13:48 [ 2] [ 16] [1808931300011069] +18:13:48 [ 3] [ 6] [301000] +18:13:48 [ 7] [ 10] [0320181336] +18:13:48 [ 11] [ 6] [825157] +18:13:48 [ 12] [ 6] [181336] +18:13:48 [ 13] [ 4] [0320] +18:13:48 [ 14] [ 4] [1803] +18:13:48 [ 19] [ 3] [418] +18:13:48 [ 32] [ 6] [621354] +18:13:48 [ 37] [ 12] [507904229485] +18:13:48 [ 38] [ 6] [825157] +18:13:48 [ 39] [ 2] [00] +18:13:48 [ 41] [ 8] [05004600] +18:13:48 [ 49] [ 3] [418] +18:13:48 [ 52] [ 16] [60E78FAC5EA6FE48] +18:13:48 [ 54] [ 20] [1002418C000025709500] +18:13:48 ============================================================================ +18:13:48 Calculate Source COMM Id = 0 +18:13:48 ============================================================================ +18:13:48 + + +waiting on router queue for slot.... +18:13:55 ============================================================================ +18:13:55 Slot Id : <410> +18:13:55 Transaction Type : REQUEST +18:13:55 Received From : +18:13:55 ============================================================================ +18:13:55 FNo. Len. Field Value +18:13:55 ============================================================================ +18:13:55 [ 1] [ 4] [0800] +18:13:55 [ 2] [ 5] [02531] +18:13:55 [ 3] [ 6] [579188] +18:13:55 [ 7] [ 10] [0320111355] +18:13:55 [ 11] [ 6] [807470] +18:13:55 [ 15] [ 10] [0320111355] +18:13:55 [ 37] [ 11] [57918807470] +18:13:55 [ 70] [ 3] [001] +18:13:55 ============================================================================ +18:13:55 + + +waiting on router queue for slot.... +18:13:55 ============================================================================ +18:13:55 Slot Id : <410> +18:13:55 Transaction Type : RESPONSE +18:13:55 Received From : +18:13:55 ============================================================================ +18:13:55 FNo. Len. Field Value +18:13:55 ============================================================================ +18:13:55 [ 1] [ 4] [0810] +18:13:55 [ 7] [ 10] [0320111355] +18:13:55 [ 11] [ 6] [807470] +18:13:55 [ 15] [ 4] [0320] +18:13:55 [ 37] [ 12] [57918807470] +18:13:55 [ 39] [ 2] [00] +18:13:55 [ 70] [ 3] [001] +18:13:55 ============================================================================ +18:13:55 Sending to : +18:13:55 ============================================================================ +18:13:55 + + +waiting on router queue for slot.... +18:13:58 ============================================================================ +18:13:58 Slot Id : <376> +18:13:58 Transaction Type : REQUEST +18:13:58 Received From : +18:13:58 ============================================================================ +18:13:58 FNo. Len. Field Value +18:13:58 ============================================================================ +18:13:58 [ 1] [ 4] [0800] +18:13:58 [ 7] [ 10] [0320111305] +18:13:58 [ 11] [ 6] [157654] +18:13:58 [ 70] [ 3] [301] +18:13:58 ============================================================================ +18:13:58 + + +waiting on router queue for slot.... +18:13:58 Sending to : +18:13:58 ============================================================================ +18:13:58 ============================================================================ +18:13:58 Slot Id : <376> +18:13:58 Transaction Type : RESPONSE +18:13:58 Received From : +18:13:58 ============================================================================ +18:13:58 FNo. Len. Field Value +18:13:58 ============================================================================ +18:13:58 [ 1] [ 4] [0810] +18:13:58 [ 7] [ 10] [0320111305] +18:13:58 [ 11] [ 6] [157654] +18:13:58 [ 39] [ 2] [00] +18:13:58 [ 70] [ 3] [301] +18:13:58 ============================================================================ +18:13:58 Calculate Source COMM Id = 2 +18:13:58 ============================================================================ +18:13:58 + + +waiting on router queue for slot.... +18:13:59 ============================================================================ +18:13:59 Slot Id : <383> +18:13:59 Transaction Type : REQUEST +18:13:59 Received From : +18:13:59 ============================================================================ +18:13:59 FNo. Len. Field Value +18:13:59 ============================================================================ +18:13:59 [ 1] [ 4] [0200] +18:13:59 [ 2] [ 16] [6213544000812534] +18:13:59 [ 3] [ 6] [012000] +18:13:59 [ 4] [ 12] [000030000000] +18:13:59 [ 7] [ 10] [0320111305] +18:13:59 [ 11] [ 6] [271122] +18:13:59 [ 12] [ 6] [181305] +18:13:59 [ 13] [ 4] [0320] +18:13:59 [ 14] [ 4] [4912] +18:13:59 [ 15] [ 4] [0320] +18:13:59 [ 18] [ 4] [6011] +18:13:59 [ 19] [ 3] [418] +18:13:59 [ 22] [ 3] [021] +18:13:59 [ 25] [ 2] [01] +18:13:59 [ 28] [ 9] [D00002000] +18:13:59 [ 32] [ 6] [180893] +18:13:59 [ 35] [ 32] [6213544000812534=491212011253480] +18:13:59 [ 37] [ 12] [507911271122] +18:13:59 [ 41] [ 8] [0102SAPA] +18:13:59 [ 42] [ 15] [999999 ] +18:13:59 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:13:59 [ 49] [ 3] [418] +18:13:59 [ 52] [ 16] [19FB395E3027542E] +18:13:59 ============================================================================ +18:13:59 + + +waiting on router queue for slot.... +18:13:59 Sending to : +18:13:59 ============================================================================ +18:13:59 Sending to : +18:13:59 ============================================================================ +18:14:00 ============================================================================ +18:14:00 Slot Id : <383> +18:14:00 Transaction Type : REQUEST +18:14:00 Received From : +18:14:00 ============================================================================ +18:14:00 FNo. Len. Field Value +18:14:00 ============================================================================ +18:14:00 [ 1] [ 4] [0200] +18:14:00 [ 2] [ 16] [6213544000812534] +18:14:00 [ 3] [ 6] [012000] +18:14:00 [ 4] [ 12] [000030000000] +18:14:00 [ 7] [ 10] [0320111305] +18:14:00 [ 11] [ 6] [271122] +18:14:00 [ 12] [ 6] [181305] +18:14:00 [ 13] [ 4] [0320] +18:14:00 [ 14] [ 4] [4912] +18:14:00 [ 15] [ 4] [0320] +18:14:00 [ 18] [ 4] [6011] +18:14:00 [ 19] [ 3] [418] +18:14:00 [ 22] [ 3] [021] +18:14:00 [ 25] [ 2] [01] +18:14:00 [ 28] [ 9] [D00002000] +18:14:00 [ 32] [ 6] [180893] +18:14:00 [ 35] [ 32] [6213544000812534=491212011253480] +18:14:00 [ 37] [ 12] [507911271122] +18:14:00 [ 41] [ 8] [0102SAPA] +18:14:00 [ 42] [ 15] [999999 ] +18:14:00 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:14:00 [ 49] [ 3] [418] +18:14:00 [ 52] [ 16] [19FB395E3027542E] +18:14:00 ============================================================================ +18:14:00 + + +waiting on router queue for slot.... +18:14:00 Sending to : +18:14:00 ============================================================================ +18:14:00 ============================================================================ +18:14:00 Slot Id : <383> +18:14:00 Transaction Type : REQUEST +18:14:00 Received From : +18:14:00 ============================================================================ +18:14:00 FNo. Len. Field Value +18:14:00 ============================================================================ +18:14:00 [ 1] [ 4] [0200] +18:14:00 [ 2] [ 16] [6213544000812534] +18:14:00 [ 3] [ 6] [012000] +18:14:00 [ 4] [ 12] [000030000000] +18:14:00 [ 7] [ 10] [0320111305] +18:14:00 [ 11] [ 6] [271122] +18:14:00 [ 12] [ 6] [181305] +18:14:00 [ 13] [ 4] [0320] +18:14:00 [ 14] [ 4] [4912] +18:14:00 [ 15] [ 4] [0320] +18:14:00 [ 18] [ 4] [6011] +18:14:00 [ 19] [ 3] [418] +18:14:00 [ 22] [ 3] [021] +18:14:00 [ 25] [ 2] [01] +18:14:00 [ 28] [ 9] [D00002000] +18:14:00 [ 32] [ 6] [180893] +18:14:00 [ 35] [ 32] [6213544000812534=491212011253480] +18:14:00 [ 37] [ 12] [507911271122] +18:14:00 [ 41] [ 8] [0102SAPA] +18:14:00 [ 42] [ 15] [999999 ] +18:14:00 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:14:00 [ 49] [ 3] [418] +18:14:00 [ 52] [ 16] [0F91186A46A49597] +18:14:00 ============================================================================ +18:14:00 + + +waiting on router queue for slot.... +18:14:00 Sending to : <0> +18:14:00 ============================================================================ +18:14:00 ============================================================================ +18:14:00 Slot Id : <383> +18:14:00 Transaction Type : RESPONSE +18:14:00 Received From : +18:14:00 ============================================================================ +18:14:00 FNo. Len. Field Value +18:14:00 ============================================================================ +18:14:00 [ 1] [ 4] [0210] +18:14:00 [ 2] [ 16] [6213544000812534] +18:14:00 [ 3] [ 6] [012000] +18:14:00 [ 4] [ 12] [000030000000] +18:14:00 [ 7] [ 10] [0320111305] +18:14:00 [ 11] [ 6] [271122] +18:14:00 [ 12] [ 6] [181305] +18:14:00 [ 13] [ 4] [0320] +18:14:00 [ 15] [ 4] [0320] +18:14:00 [ 18] [ 4] [6011] +18:14:00 [ 19] [ 3] [418] +18:14:00 [ 32] [ 6] [180893] +18:14:00 [ 35] [ 32] [6213544000812534=491212011253480] +18:14:00 [ 37] [ 12] [507911271122] +18:14:00 [ 38] [ 6] [036932] +18:14:00 [ 39] [ 2] [00] +18:14:00 [ 41] [ 8] [0102SAPA] +18:14:00 [ 49] [ 3] [418] +18:14:00 [ 54] [ 40] [2001418C0000118359412002418C000011835941] +18:14:00 ============================================================================ +18:14:00 Sending to : +18:14:00 ============================================================================ +18:14:00 + + +waiting on router queue for slot.... +18:14:02 ============================================================================ +18:14:02 Slot Id : <383> +18:14:02 Transaction Type : RESPONSE +18:14:02 Received From : +18:14:02 ============================================================================ +18:14:02 FNo. Len. Field Value +18:14:02 ============================================================================ +18:14:02 [ 1] [ 4] [0210] +18:14:02 [ 2] [ 16] [6213544000812534] +18:14:02 [ 3] [ 6] [012000] +18:14:02 [ 4] [ 12] [000030000000] +18:14:02 [ 7] [ 10] [0320111305] +18:14:02 [ 11] [ 6] [271122] +18:14:02 [ 12] [ 6] [181305] +18:14:02 [ 13] [ 4] [0320] +18:14:02 [ 15] [ 4] [0320] +18:14:02 [ 18] [ 4] [6011] +18:14:02 [ 19] [ 3] [418] +18:14:02 [ 32] [ 6] [180893] +18:14:02 [ 35] [ 32] [6213544000812534=491212011253480] +18:14:02 [ 37] [ 12] [507911271122] +18:14:02 [ 38] [ 6] [036932] +18:14:02 [ 39] [ 2] [00] +18:14:02 [ 41] [ 8] [0102SAPA] +18:14:02 [ 49] [ 3] [418] +18:14:02 [ 54] [ 40] [2001418C0000118359412002418C000011835941] +18:14:02 ============================================================================ +18:14:02 Calculate Source COMM Id = 2 +18:14:02 ============================================================================ +18:14:02 + + +waiting on router queue for slot.... +18:14:08 ============================================================================ +18:14:08 Slot Id : <359> +18:14:08 Transaction Type : REQUEST +18:14:08 Received From : +18:14:08 ============================================================================ +18:14:08 FNo. Len. Field Value +18:14:08 ============================================================================ +18:14:08 [ 1] [ 4] [0800] +18:14:08 [ 7] [ 10] [0321012556] +18:14:08 [ 11] [ 6] [182556] +18:14:08 [ 37] [ 12] [57918182556] +18:14:08 [ 70] [ 3] [301] +18:14:08 ============================================================================ +18:14:08 + + +waiting on router queue for slot.... +18:14:08 Sending to : +18:14:08 ============================================================================ +18:14:08 ============================================================================ +18:14:08 Slot Id : <359> +18:14:08 Transaction Type : RESPONSE +18:14:08 Received From : +18:14:08 ============================================================================ +18:14:08 FNo. Len. Field Value +18:14:08 ============================================================================ +18:14:08 [ 1] [ 4] [0810] +18:14:08 [ 7] [ 10] [0321012556] +18:14:08 [ 11] [ 6] [182556] +18:14:08 [ 37] [ 12] [579181825560] +18:14:08 [ 39] [ 2] [00] +18:14:08 [ 70] [ 3] [810] +18:14:08 ============================================================================ +18:14:08 Calculate Source COMM Id = 6 +18:14:08 ============================================================================ +18:14:08 + + +waiting on router queue for slot.... +18:14:15 ============================================================================ +18:14:15 Slot Id : <400> +18:14:15 Transaction Type : REQUEST +18:14:15 Received From : +18:14:15 ============================================================================ +18:14:15 FNo. Len. Field Value +18:14:15 ============================================================================ +18:14:15 [ 1] [ 4] [0800] +18:14:15 [ 7] [ 10] [0320111322] +18:14:15 [ 11] [ 6] [157655] +18:14:15 [ 70] [ 3] [301] +18:14:15 ============================================================================ +18:14:15 + + +waiting on router queue for slot.... +18:14:15 Sending to : +18:14:15 ============================================================================ +18:14:15 ============================================================================ +18:14:15 Slot Id : <400> +18:14:15 Transaction Type : RESPONSE +18:14:15 Received From : +18:14:15 ============================================================================ +18:14:15 FNo. Len. Field Value +18:14:15 ============================================================================ +18:14:15 [ 1] [ 4] [0810] +18:14:15 [ 7] [ 10] [0320111322] +18:14:15 [ 11] [ 6] [157655] +18:14:15 [ 39] [ 2] [00] +18:14:15 [ 70] [ 3] [301] +18:14:15 ============================================================================ +18:14:15 Calculate Source COMM Id = 2 +18:14:15 ============================================================================ +18:14:15 + + +waiting on router queue for slot.... +18:14:18 ============================================================================ +18:14:18 Slot Id : <393> +18:14:18 Transaction Type : REQUEST +18:14:18 Received From : +18:14:18 ============================================================================ +18:14:18 FNo. Len. Field Value +18:14:18 ============================================================================ +18:14:18 [ 1] [ 4] [0200] +18:14:18 [ 2] [ 16] [6688990100941200] +18:14:18 [ 3] [ 6] [010000] +18:14:18 [ 4] [ 12] [000100000000] +18:14:18 [ 7] [ 10] [0320111324] +18:14:18 [ 11] [ 6] [271127] +18:14:18 [ 12] [ 6] [181324] +18:14:18 [ 13] [ 4] [0320] +18:14:18 [ 14] [ 4] [4112] +18:14:18 [ 15] [ 4] [0320] +18:14:18 [ 18] [ 4] [6011] +18:14:18 [ 19] [ 3] [418] +18:14:18 [ 22] [ 3] [021] +18:14:18 [ 25] [ 2] [01] +18:14:18 [ 28] [ 9] [D00002000] +18:14:18 [ 32] [ 6] [180893] +18:14:18 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:14:18 [ 37] [ 12] [507911271127] +18:14:18 [ 41] [ 8] [0467PSLK] +18:14:18 [ 42] [ 15] [999999 ] +18:14:18 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:14:18 [ 49] [ 3] [418] +18:14:18 [ 52] [ 16] [C6CF798086C24D04] +18:14:18 ============================================================================ +18:14:18 + + +waiting on router queue for slot.... +18:14:18 Sending to : +18:14:18 ============================================================================ +18:14:18 Sending to : +18:14:18 ============================================================================ +18:14:18 ============================================================================ +18:14:18 Slot Id : <395> +18:14:18 Transaction Type : REQUEST +18:14:18 Received From : +18:14:18 ============================================================================ +18:14:18 FNo. Len. Field Value +18:14:18 ============================================================================ +18:14:18 [ 1] [ 4] [0200] +18:14:18 [ 2] [ 16] [6688990602722306] +18:14:18 [ 3] [ 6] [302000] +18:14:18 [ 7] [ 10] [0320111324] +18:14:18 [ 11] [ 6] [271128] +18:14:18 [ 12] [ 6] [181324] +18:14:18 [ 13] [ 4] [0320] +18:14:18 [ 14] [ 4] [4310] +18:14:18 [ 15] [ 4] [0320] +18:14:18 [ 18] [ 4] [6011] +18:14:18 [ 19] [ 3] [418] +18:14:18 [ 22] [ 3] [021] +18:14:18 [ 25] [ 2] [01] +18:14:18 [ 32] [ 6] [180893] +18:14:18 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:14:18 [ 37] [ 12] [507911271128] +18:14:18 [ 41] [ 8] [0201ADD1] +18:14:18 [ 42] [ 15] [999999 ] +18:14:18 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +18:14:18 [ 49] [ 3] [418] +18:14:18 [ 52] [ 16] [8F06EB2BCA2A3F39] +18:14:18 ============================================================================ +18:14:18 + + +waiting on router queue for slot.... +18:14:18 Sending to : +18:14:18 ============================================================================ +18:14:18 Sending to : +18:14:18 ============================================================================ +18:14:18 ============================================================================ +18:14:18 Slot Id : <393> +18:14:18 Transaction Type : REQUEST +18:14:18 Received From : +18:14:18 ============================================================================ +18:14:18 FNo. Len. Field Value +18:14:18 ============================================================================ +18:14:18 [ 1] [ 4] [0200] +18:14:18 [ 2] [ 16] [6688990100941200] +18:14:18 [ 3] [ 6] [010000] +18:14:18 [ 4] [ 12] [000100000000] +18:14:18 [ 7] [ 10] [0320111324] +18:14:18 [ 11] [ 6] [271127] +18:14:18 [ 12] [ 6] [181324] +18:14:18 [ 13] [ 4] [0320] +18:14:18 [ 14] [ 4] [4112] +18:14:18 [ 15] [ 4] [0320] +18:14:18 [ 18] [ 4] [6011] +18:14:18 [ 19] [ 3] [418] +18:14:18 [ 22] [ 3] [021] +18:14:18 [ 25] [ 2] [01] +18:14:18 [ 28] [ 9] [D00002000] +18:14:18 [ 32] [ 6] [180893] +18:14:18 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:14:18 [ 37] [ 12] [507911271127] +18:14:18 [ 41] [ 8] [0467PSLK] +18:14:18 [ 42] [ 15] [999999 ] +18:14:18 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:14:18 [ 49] [ 3] [418] +18:14:18 [ 52] [ 16] [C6CF798086C24D04] +18:14:18 ============================================================================ +18:14:18 + + +waiting on router queue for slot.... +18:14:18 Sending to : +18:14:18 ============================================================================ +18:14:18 ============================================================================ +18:14:18 Slot Id : <393> +18:14:18 Transaction Type : REQUEST +18:14:18 Received From : +18:14:18 ============================================================================ +18:14:18 FNo. Len. Field Value +18:14:18 ============================================================================ +18:14:18 [ 1] [ 4] [0200] +18:14:18 [ 2] [ 16] [6688990100941200] +18:14:18 [ 3] [ 6] [010000] +18:14:18 [ 4] [ 12] [000100000000] +18:14:18 [ 7] [ 10] [0320111324] +18:14:18 [ 11] [ 6] [271127] +18:14:18 [ 12] [ 6] [181324] +18:14:18 [ 13] [ 4] [0320] +18:14:18 [ 14] [ 4] [4112] +18:14:18 [ 15] [ 4] [0320] +18:14:18 [ 18] [ 4] [6011] +18:14:18 [ 19] [ 3] [418] +18:14:18 [ 22] [ 3] [021] +18:14:18 [ 25] [ 2] [01] +18:14:18 [ 28] [ 9] [D00002000] +18:14:18 [ 32] [ 6] [180893] +18:14:18 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:14:18 [ 37] [ 12] [507911271127] +18:14:18 [ 41] [ 8] [0467PSLK] +18:14:18 [ 42] [ 15] [999999 ] +18:14:18 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:14:18 [ 49] [ 3] [418] +18:14:18 [ 52] [ 16] [10E4F466ECA408C6] +18:14:18 ============================================================================ +18:14:18 + + +waiting on router queue for slot.... +18:14:18 Sending to : <0> +18:14:18 ============================================================================ +18:14:18 ============================================================================ +18:14:18 Slot Id : <393> +18:14:18 Transaction Type : RESPONSE +18:14:18 Received From : +18:14:18 ============================================================================ +18:14:18 FNo. Len. Field Value +18:14:18 ============================================================================ +18:14:18 [ 1] [ 4] [0210] +18:14:18 [ 2] [ 16] [6688990100941200] +18:14:18 [ 3] [ 6] [010000] +18:14:18 [ 4] [ 12] [000100000000] +18:14:18 [ 7] [ 10] [0320111324] +18:14:18 [ 11] [ 6] [271127] +18:14:18 [ 12] [ 6] [181324] +18:14:18 [ 13] [ 4] [0320] +18:14:18 [ 15] [ 4] [0320] +18:14:18 [ 18] [ 4] [6011] +18:14:18 [ 19] [ 3] [418] +18:14:18 [ 22] [ 3] [021] +18:14:18 [ 32] [ 6] [180893] +18:14:18 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:14:18 [ 37] [ 12] [507911271127] +18:14:18 [ 39] [ 2] [14] +18:14:18 [ 41] [ 8] [0467PSLK] +18:14:18 [ 49] [ 3] [418] +18:14:18 ============================================================================ +18:14:18 Sending to : +18:14:18 ============================================================================ +18:14:18 + + +waiting on router queue for slot.... +18:14:18 ============================================================================ +18:14:18 Slot Id : <395> +18:14:18 Transaction Type : REQUEST +18:14:18 Received From : +18:14:18 ============================================================================ +18:14:18 FNo. Len. Field Value +18:14:18 ============================================================================ +18:14:18 [ 1] [ 4] [0200] +18:14:18 [ 2] [ 16] [6688990602722306] +18:14:18 [ 3] [ 6] [302000] +18:14:18 [ 7] [ 10] [0320111324] +18:14:18 [ 11] [ 6] [271128] +18:14:18 [ 12] [ 6] [181324] +18:14:18 [ 13] [ 4] [0320] +18:14:18 [ 14] [ 4] [4310] +18:14:18 [ 15] [ 4] [0320] +18:14:18 [ 18] [ 4] [6011] +18:14:18 [ 19] [ 3] [418] +18:14:18 [ 22] [ 3] [021] +18:14:18 [ 25] [ 2] [01] +18:14:18 [ 32] [ 6] [180893] +18:14:18 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:14:18 [ 37] [ 12] [507911271128] +18:14:18 [ 41] [ 8] [0201ADD1] +18:14:18 [ 42] [ 15] [999999 ] +18:14:18 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +18:14:18 [ 49] [ 3] [418] +18:14:18 [ 52] [ 16] [8F06EB2BCA2A3F39] +18:14:18 ============================================================================ +18:14:18 + + +waiting on router queue for slot.... +18:14:18 Sending to : +18:14:18 ============================================================================ +18:14:18 ============================================================================ +18:14:18 Slot Id : <395> +18:14:18 Transaction Type : REQUEST +18:14:18 Received From : +18:14:18 ============================================================================ +18:14:18 FNo. Len. Field Value +18:14:18 ============================================================================ +18:14:18 [ 1] [ 4] [0200] +18:14:18 [ 2] [ 16] [6688990602722306] +18:14:18 [ 3] [ 6] [302000] +18:14:18 [ 7] [ 10] [0320111324] +18:14:18 [ 11] [ 6] [271128] +18:14:18 [ 12] [ 6] [181324] +18:14:18 [ 13] [ 4] [0320] +18:14:18 [ 14] [ 4] [4310] +18:14:18 [ 15] [ 4] [0320] +18:14:18 [ 18] [ 4] [6011] +18:14:18 [ 19] [ 3] [418] +18:14:18 [ 22] [ 3] [021] +18:14:18 [ 25] [ 2] [01] +18:14:18 [ 32] [ 6] [180893] +18:14:18 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:14:18 [ 37] [ 12] [507911271128] +18:14:18 [ 41] [ 8] [0201ADD1] +18:14:18 [ 42] [ 15] [999999 ] +18:14:18 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +18:14:18 [ 49] [ 3] [418] +18:14:18 [ 52] [ 16] [F4A7998F0ED3D918] +18:14:18 ============================================================================ +18:14:18 + + +waiting on router queue for slot.... +18:14:18 Sending to : <0> +18:14:18 ============================================================================ +18:14:18 ============================================================================ +18:14:18 Slot Id : <395> +18:14:18 Transaction Type : RESPONSE +18:14:18 Received From : +18:14:18 ============================================================================ +18:14:18 FNo. Len. Field Value +18:14:18 ============================================================================ +18:14:18 [ 1] [ 4] [0210] +18:14:18 [ 2] [ 16] [6688990602722306] +18:14:18 [ 3] [ 6] [302000] +18:14:18 [ 4] [ 12] [000000000000] +18:14:18 [ 7] [ 10] [0320111324] +18:14:18 [ 11] [ 6] [271128] +18:14:18 [ 12] [ 6] [181324] +18:14:18 [ 13] [ 4] [0320] +18:14:18 [ 15] [ 4] [0320] +18:14:18 [ 18] [ 4] [6011] +18:14:18 [ 19] [ 3] [418] +18:14:18 [ 22] [ 3] [021] +18:14:18 [ 32] [ 6] [180893] +18:14:18 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:14:18 [ 37] [ 12] [507911271128] +18:14:18 [ 39] [ 2] [14] +18:14:18 [ 41] [ 8] [0201ADD1] +18:14:18 [ 49] [ 3] [418] +18:14:18 ============================================================================ +18:14:18 Sending to : +18:14:18 ============================================================================ +18:14:18 + + +waiting on router queue for slot.... +18:14:19 ============================================================================ +18:14:19 Slot Id : <393> +18:14:19 Transaction Type : RESPONSE +18:14:19 Received From : +18:14:19 ============================================================================ +18:14:19 FNo. Len. Field Value +18:14:19 ============================================================================ +18:14:19 [ 1] [ 4] [0210] +18:14:19 [ 2] [ 16] [6688990100941200] +18:14:19 [ 3] [ 6] [010000] +18:14:19 [ 4] [ 12] [000100000000] +18:14:19 [ 7] [ 10] [0320111324] +18:14:19 [ 11] [ 6] [271127] +18:14:19 [ 12] [ 6] [181324] +18:14:19 [ 13] [ 4] [0320] +18:14:19 [ 15] [ 4] [0320] +18:14:19 [ 18] [ 4] [6011] +18:14:19 [ 19] [ 3] [418] +18:14:19 [ 22] [ 3] [021] +18:14:19 [ 32] [ 6] [180893] +18:14:19 [ 35] [ 37] [6688990100941200=41121231120095200000] +18:14:19 [ 37] [ 12] [507911271127] +18:14:19 [ 39] [ 2] [14] +18:14:19 [ 41] [ 8] [0467PSLK] +18:14:19 [ 49] [ 3] [418] +18:14:19 ============================================================================ +18:14:19 Calculate Source COMM Id = 2 +18:14:19 ============================================================================ +18:14:19 + + +waiting on router queue for slot.... +18:14:20 ============================================================================ +18:14:20 Slot Id : <395> +18:14:20 Transaction Type : RESPONSE +18:14:20 Received From : +18:14:20 ============================================================================ +18:14:20 FNo. Len. Field Value +18:14:20 ============================================================================ +18:14:20 [ 1] [ 4] [0210] +18:14:20 [ 2] [ 16] [6688990602722306] +18:14:20 [ 3] [ 6] [302000] +18:14:20 [ 4] [ 12] [000000000000] +18:14:20 [ 7] [ 10] [0320111324] +18:14:20 [ 11] [ 6] [271128] +18:14:20 [ 12] [ 6] [181324] +18:14:20 [ 13] [ 4] [0320] +18:14:20 [ 15] [ 4] [0320] +18:14:20 [ 18] [ 4] [6011] +18:14:20 [ 19] [ 3] [418] +18:14:20 [ 22] [ 3] [021] +18:14:20 [ 32] [ 6] [180893] +18:14:20 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:14:20 [ 37] [ 12] [507911271128] +18:14:20 [ 39] [ 2] [14] +18:14:20 [ 41] [ 8] [0201ADD1] +18:14:20 [ 49] [ 3] [418] +18:14:20 ============================================================================ +18:14:20 Calculate Source COMM Id = 2 +18:14:20 ============================================================================ +18:14:20 + + +waiting on router queue for slot.... +18:14:26 ============================================================================ +18:14:26 Slot Id : <414> +18:14:26 Transaction Type : REQUEST +18:14:26 Received From : +18:14:26 ============================================================================ +18:14:26 FNo. Len. Field Value +18:14:26 ============================================================================ +18:14:26 [ 1] [ 4] [0200] +18:14:26 [ 2] [ 16] [1808931300011069] +18:14:26 [ 3] [ 6] [011000] +18:14:26 [ 4] [ 12] [000010000000] +18:14:26 [ 7] [ 10] [0320181421] +18:14:26 [ 11] [ 6] [825281] +18:14:26 [ 12] [ 6] [181421] +18:14:26 [ 13] [ 4] [0320] +18:14:26 [ 15] [ 4] [0320] +18:14:26 [ 18] [ 4] [6011] +18:14:26 [ 22] [ 3] [900] +18:14:26 [ 25] [ 2] [02] +18:14:26 [ 28] [ 9] [D00002000] +18:14:26 [ 32] [ 6] [621354] +18:14:26 [ 35] [ 27] [1808931300011069=1803500820] +18:14:26 [ 37] [ 12] [507904229487] +18:14:26 [ 41] [ 8] [05004600] +18:14:26 [ 42] [ 15] [NATIVE ] +18:14:26 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:14:26 [ 49] [ 3] [418] +18:14:26 [ 52] [ 16] [391A05F7D0713E99] +18:14:26 ============================================================================ +18:14:26 + + +waiting on router queue for slot.... +18:14:26 Sending to : +18:14:26 ============================================================================ +18:14:26 Sending to : +18:14:26 ============================================================================ +18:14:26 ============================================================================ +18:14:26 Slot Id : <414> +18:14:26 Transaction Type : REQUEST +18:14:26 Received From : +18:14:26 ============================================================================ +18:14:26 FNo. Len. Field Value +18:14:26 ============================================================================ +18:14:26 [ 1] [ 4] [0200] +18:14:26 [ 2] [ 16] [1808931300011069] +18:14:26 [ 3] [ 6] [011000] +18:14:26 [ 4] [ 12] [000010000000] +18:14:26 [ 7] [ 10] [0320181421] +18:14:26 [ 11] [ 6] [825281] +18:14:26 [ 12] [ 6] [181421] +18:14:26 [ 13] [ 4] [0320] +18:14:26 [ 15] [ 4] [0320] +18:14:26 [ 18] [ 4] [6011] +18:14:26 [ 22] [ 3] [900] +18:14:26 [ 25] [ 2] [02] +18:14:26 [ 28] [ 9] [D00002000] +18:14:26 [ 32] [ 6] [621354] +18:14:26 [ 35] [ 27] [1808931300011069=1803500820] +18:14:26 [ 37] [ 12] [507904229487] +18:14:26 [ 41] [ 8] [05004600] +18:14:26 [ 42] [ 15] [NATIVE ] +18:14:26 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:14:26 [ 49] [ 3] [418] +18:14:26 [ 52] [ 16] [391A05F7D0713E99] +18:14:26 ============================================================================ +18:14:26 + + +waiting on router queue for slot.... +18:14:26 Sending to : +18:14:26 ============================================================================ +18:14:26 ============================================================================ +18:14:26 Slot Id : <414> +18:14:26 Transaction Type : REQUEST +18:14:26 Received From : +18:14:26 ============================================================================ +18:14:26 FNo. Len. Field Value +18:14:26 ============================================================================ +18:14:26 [ 1] [ 4] [0200] +18:14:26 [ 2] [ 16] [1808931300011069] +18:14:26 [ 3] [ 6] [011000] +18:14:26 [ 4] [ 12] [000010000000] +18:14:26 [ 7] [ 10] [0320181421] +18:14:26 [ 11] [ 6] [825281] +18:14:26 [ 12] [ 6] [181421] +18:14:26 [ 13] [ 4] [0320] +18:14:26 [ 15] [ 4] [0320] +18:14:26 [ 18] [ 4] [6011] +18:14:26 [ 22] [ 3] [900] +18:14:26 [ 25] [ 2] [02] +18:14:26 [ 28] [ 9] [D00002000] +18:14:26 [ 32] [ 6] [621354] +18:14:26 [ 35] [ 27] [1808931300011069=1803500820] +18:14:26 [ 37] [ 12] [507904229487] +18:14:26 [ 41] [ 8] [05004600] +18:14:26 [ 42] [ 15] [NATIVE ] +18:14:26 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:14:26 [ 49] [ 3] [418] +18:14:26 [ 52] [ 16] [60E78FAC5EA6FE48] +18:14:26 ============================================================================ +18:14:26 + + +waiting on router queue for slot.... +18:14:26 Sending to : <2> +18:14:26 ============================================================================ +18:14:29 ============================================================================ +18:14:29 Slot Id : <414> +18:14:29 Transaction Type : RESPONSE +18:14:29 Received From : +18:14:29 ============================================================================ +18:14:29 FNo. Len. Field Value +18:14:29 ============================================================================ +18:14:29 [ 1] [ 4] [0210] +18:14:29 [ 2] [ 16] [1808931300011069] +18:14:29 [ 3] [ 6] [011000] +18:14:29 [ 4] [ 12] [000010000000] +18:14:29 [ 6] [ 12] [000010000000] +18:14:29 [ 7] [ 10] [0320181421] +18:14:29 [ 11] [ 6] [825281] +18:14:29 [ 12] [ 6] [181421] +18:14:29 [ 13] [ 4] [0320] +18:14:29 [ 18] [ 4] [6011] +18:14:29 [ 19] [ 3] [418] +18:14:29 [ 22] [ 3] [021] +18:14:29 [ 32] [ 6] [621354] +18:14:29 [ 35] [ 27] [1808931300011069=1803500820] +18:14:29 [ 37] [ 12] [507904229487] +18:14:29 [ 38] [ 6] [825281] +18:14:29 [ 39] [ 2] [00] +18:14:29 [ 41] [ 8] [05004600] +18:14:29 [ 49] [ 3] [418] +18:14:29 [ 52] [ 16] [60E78FAC5EA6FE48] +18:14:29 [ 54] [ 20] [1001418C000015509500] +18:14:29 ============================================================================ +18:14:29 Sending to : +18:14:29 ============================================================================ +18:14:29 + + +waiting on router queue for slot.... +18:14:31 ============================================================================ +18:14:31 Slot Id : <414> +18:14:31 Transaction Type : RESPONSE +18:14:31 Received From : +18:14:31 ============================================================================ +18:14:31 FNo. Len. Field Value +18:14:31 ============================================================================ +18:14:31 [ 1] [ 4] [0210] +18:14:31 [ 2] [ 16] [1808931300011069] +18:14:31 [ 3] [ 6] [011000] +18:14:31 [ 4] [ 12] [000010000000] +18:14:31 [ 6] [ 12] [000010000000] +18:14:31 [ 7] [ 10] [0320181421] +18:14:31 [ 11] [ 6] [825281] +18:14:31 [ 12] [ 6] [181421] +18:14:31 [ 13] [ 4] [0320] +18:14:31 [ 18] [ 4] [6011] +18:14:31 [ 19] [ 3] [418] +18:14:31 [ 22] [ 3] [021] +18:14:31 [ 32] [ 6] [621354] +18:14:31 [ 35] [ 27] [1808931300011069=1803500820] +18:14:31 [ 37] [ 12] [507904229487] +18:14:31 [ 38] [ 6] [825281] +18:14:31 [ 39] [ 2] [00] +18:14:31 [ 41] [ 8] [05004600] +18:14:31 [ 49] [ 3] [418] +18:14:31 [ 52] [ 16] [60E78FAC5EA6FE48] +18:14:31 [ 54] [ 20] [1001418C000015509500] +18:14:31 ============================================================================ +18:14:31 Calculate Source COMM Id = 0 +18:14:31 ============================================================================ +18:14:31 + + +waiting on router queue for slot.... +18:14:34 ============================================================================ +18:14:34 Slot Id : <413> +18:14:34 Transaction Type : REQUEST +18:14:34 Received From : +18:14:34 ============================================================================ +18:14:34 FNo. Len. Field Value +18:14:34 ============================================================================ +18:14:34 [ 1] [ 4] [0200] +18:14:34 [ 2] [ 16] [6688990100636305] +18:14:34 [ 3] [ 6] [301000] +18:14:34 [ 7] [ 10] [0320111337] +18:14:34 [ 11] [ 6] [271130] +18:14:34 [ 12] [ 6] [181337] +18:14:34 [ 13] [ 4] [0320] +18:14:34 [ 14] [ 4] [4109] +18:14:34 [ 15] [ 4] [0320] +18:14:34 [ 18] [ 4] [6011] +18:14:34 [ 19] [ 3] [418] +18:14:34 [ 22] [ 3] [021] +18:14:34 [ 25] [ 2] [01] +18:14:34 [ 32] [ 6] [180893] +18:14:34 [ 35] [ 37] [6688990100636305=41091231630598000000] +18:14:34 [ 37] [ 12] [507911271130] +18:14:34 [ 41] [ 8] [0264UDXH] +18:14:34 [ 42] [ 15] [999999 ] +18:14:34 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +18:14:34 [ 49] [ 3] [418] +18:14:34 [ 52] [ 16] [E9EC9BEB1D557272] +18:14:34 ============================================================================ +18:14:34 + + +waiting on router queue for slot.... +18:14:34 Sending to : +18:14:34 ============================================================================ +18:14:34 Sending to : +18:14:34 ============================================================================ +18:14:34 ============================================================================ +18:14:34 Slot Id : <397> +18:14:34 Transaction Type : REQUEST +18:14:34 Received From : +18:14:34 ============================================================================ +18:14:34 FNo. Len. Field Value +18:14:34 ============================================================================ +18:14:34 [ 1] [ 4] [0200] +18:14:34 [ 2] [ 16] [6213541000419930] +18:14:34 [ 3] [ 6] [010000] +18:14:34 [ 4] [ 12] [000010000000] +18:14:34 [ 7] [ 10] [0320111340] +18:14:34 [ 11] [ 6] [271131] +18:14:34 [ 12] [ 6] [181340] +18:14:34 [ 13] [ 4] [0320] +18:14:34 [ 14] [ 4] [4912] +18:14:34 [ 15] [ 4] [0320] +18:14:34 [ 18] [ 4] [6011] +18:14:34 [ 19] [ 3] [418] +18:14:34 [ 22] [ 3] [021] +18:14:34 [ 25] [ 2] [01] +18:14:34 [ 28] [ 9] [D00002000] +18:14:34 [ 32] [ 6] [180893] +18:14:34 [ 35] [ 32] [6213541000419930=491212011993865] +18:14:34 [ 37] [ 12] [507911271131] +18:14:34 [ 41] [ 8] [0241VTPH] +18:14:34 [ 42] [ 15] [999999 ] +18:14:34 [ 43] [ 40] [ATM VTP PHOUENG SERVICE UNIT LOCATION, F] +18:14:34 [ 49] [ 3] [418] +18:14:34 [ 52] [ 16] [EBA6771133CCD67E] +18:14:34 ============================================================================ +18:14:34 + + +waiting on router queue for slot.... +18:14:34 Sending to : +18:14:34 ============================================================================ +18:14:34 Sending to : +18:14:34 ============================================================================ +18:14:34 ============================================================================ +18:14:34 Slot Id : <413> +18:14:34 Transaction Type : REQUEST +18:14:34 Received From : +18:14:34 ============================================================================ +18:14:34 FNo. Len. Field Value +18:14:34 ============================================================================ +18:14:34 [ 1] [ 4] [0200] +18:14:34 [ 2] [ 16] [6688990100636305] +18:14:34 [ 3] [ 6] [301000] +18:14:34 [ 7] [ 10] [0320111337] +18:14:34 [ 11] [ 6] [271130] +18:14:34 [ 12] [ 6] [181337] +18:14:34 [ 13] [ 4] [0320] +18:14:34 [ 14] [ 4] [4109] +18:14:34 [ 15] [ 4] [0320] +18:14:34 [ 18] [ 4] [6011] +18:14:34 [ 19] [ 3] [418] +18:14:34 [ 22] [ 3] [021] +18:14:34 [ 25] [ 2] [01] +18:14:34 [ 32] [ 6] [180893] +18:14:34 [ 35] [ 37] [6688990100636305=41091231630598000000] +18:14:34 [ 37] [ 12] [507911271130] +18:14:34 [ 41] [ 8] [0264UDXH] +18:14:34 [ 42] [ 15] [999999 ] +18:14:34 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +18:14:34 [ 49] [ 3] [418] +18:14:34 [ 52] [ 16] [E9EC9BEB1D557272] +18:14:34 ============================================================================ +18:14:34 + + +waiting on router queue for slot.... +18:14:34 Sending to : +18:14:34 ============================================================================ +18:14:34 ============================================================================ +18:14:34 Slot Id : <413> +18:14:34 Transaction Type : REQUEST +18:14:34 Received From : +18:14:34 ============================================================================ +18:14:34 FNo. Len. Field Value +18:14:34 ============================================================================ +18:14:34 [ 1] [ 4] [0200] +18:14:34 [ 2] [ 16] [6688990100636305] +18:14:34 [ 3] [ 6] [301000] +18:14:34 [ 7] [ 10] [0320111337] +18:14:34 [ 11] [ 6] [271130] +18:14:34 [ 12] [ 6] [181337] +18:14:34 [ 13] [ 4] [0320] +18:14:34 [ 14] [ 4] [4109] +18:14:34 [ 15] [ 4] [0320] +18:14:34 [ 18] [ 4] [6011] +18:14:34 [ 19] [ 3] [418] +18:14:34 [ 22] [ 3] [021] +18:14:34 [ 25] [ 2] [01] +18:14:34 [ 32] [ 6] [180893] +18:14:34 [ 35] [ 37] [6688990100636305=41091231630598000000] +18:14:34 [ 37] [ 12] [507911271130] +18:14:34 [ 41] [ 8] [0264UDXH] +18:14:34 [ 42] [ 15] [999999 ] +18:14:34 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +18:14:34 [ 49] [ 3] [418] +18:14:34 [ 52] [ 16] [5BBBCADFF567BE49] +18:14:34 ============================================================================ +18:14:34 + + +waiting on router queue for slot.... +18:14:34 Sending to : <0> +18:14:34 ============================================================================ +18:14:34 ============================================================================ +18:14:34 Slot Id : <413> +18:14:34 Transaction Type : RESPONSE +18:14:34 Received From : +18:14:34 ============================================================================ +18:14:34 FNo. Len. Field Value +18:14:34 ============================================================================ +18:14:34 [ 1] [ 4] [0210] +18:14:34 [ 2] [ 16] [6688990100636305] +18:14:34 [ 3] [ 6] [301000] +18:14:34 [ 4] [ 12] [000000000000] +18:14:34 [ 7] [ 10] [0320111337] +18:14:34 [ 11] [ 6] [271130] +18:14:34 [ 12] [ 6] [181337] +18:14:34 [ 13] [ 4] [0320] +18:14:34 [ 15] [ 4] [0320] +18:14:34 [ 18] [ 4] [6011] +18:14:34 [ 19] [ 3] [418] +18:14:34 [ 22] [ 3] [021] +18:14:34 [ 32] [ 6] [180893] +18:14:34 [ 35] [ 37] [6688990100636305=41091231630598000000] +18:14:34 [ 37] [ 12] [507911271130] +18:14:34 [ 39] [ 2] [14] +18:14:34 [ 41] [ 8] [0264UDXH] +18:14:34 [ 49] [ 3] [418] +18:14:34 ============================================================================ +18:14:34 Sending to : +18:14:34 ============================================================================ +18:14:34 + + +waiting on router queue for slot.... +18:14:34 ============================================================================ +18:14:34 Slot Id : <397> +18:14:34 Transaction Type : REQUEST +18:14:34 Received From : +18:14:34 ============================================================================ +18:14:34 FNo. Len. Field Value +18:14:34 ============================================================================ +18:14:34 [ 1] [ 4] [0200] +18:14:34 [ 2] [ 16] [6213541000419930] +18:14:34 [ 3] [ 6] [010000] +18:14:34 [ 4] [ 12] [000010000000] +18:14:34 [ 7] [ 10] [0320111340] +18:14:34 [ 11] [ 6] [271131] +18:14:34 [ 12] [ 6] [181340] +18:14:34 [ 13] [ 4] [0320] +18:14:34 [ 14] [ 4] [4912] +18:14:34 [ 15] [ 4] [0320] +18:14:34 [ 18] [ 4] [6011] +18:14:34 [ 19] [ 3] [418] +18:14:34 [ 22] [ 3] [021] +18:14:34 [ 25] [ 2] [01] +18:14:34 [ 28] [ 9] [D00002000] +18:14:34 [ 32] [ 6] [180893] +18:14:34 [ 35] [ 32] [6213541000419930=491212011993865] +18:14:34 [ 37] [ 12] [507911271131] +18:14:34 [ 41] [ 8] [0241VTPH] +18:14:34 [ 42] [ 15] [999999 ] +18:14:34 [ 43] [ 40] [ATM VTP PHOUENG SERVICE UNIT LOCATION, F] +18:14:34 [ 49] [ 3] [418] +18:14:34 [ 52] [ 16] [EBA6771133CCD67E] +18:14:34 ============================================================================ +18:14:34 + + +waiting on router queue for slot.... +18:14:34 Sending to : +18:14:34 ============================================================================ +18:14:34 ============================================================================ +18:14:34 Slot Id : <397> +18:14:34 Transaction Type : REQUEST +18:14:34 Received From : +18:14:34 ============================================================================ +18:14:34 FNo. Len. Field Value +18:14:34 ============================================================================ +18:14:34 [ 1] [ 4] [0200] +18:14:34 [ 2] [ 16] [6213541000419930] +18:14:34 [ 3] [ 6] [010000] +18:14:34 [ 4] [ 12] [000010000000] +18:14:34 [ 7] [ 10] [0320111340] +18:14:34 [ 11] [ 6] [271131] +18:14:34 [ 12] [ 6] [181340] +18:14:34 [ 13] [ 4] [0320] +18:14:34 [ 14] [ 4] [4912] +18:14:34 [ 15] [ 4] [0320] +18:14:34 [ 18] [ 4] [6011] +18:14:34 [ 19] [ 3] [418] +18:14:34 [ 22] [ 3] [021] +18:14:34 [ 25] [ 2] [01] +18:14:34 [ 28] [ 9] [D00002000] +18:14:34 [ 32] [ 6] [180893] +18:14:34 [ 35] [ 32] [6213541000419930=491212011993865] +18:14:34 [ 37] [ 12] [507911271131] +18:14:34 [ 41] [ 8] [0241VTPH] +18:14:34 [ 42] [ 15] [999999 ] +18:14:34 [ 43] [ 40] [ATM VTP PHOUENG SERVICE UNIT LOCATION, F] +18:14:34 [ 49] [ 3] [418] +18:14:34 [ 52] [ 16] [7A9EF85B222EC9E3] +18:14:34 ============================================================================ +18:14:34 + + +waiting on router queue for slot.... +18:14:34 Sending to : <0> +18:14:34 ============================================================================ +18:14:35 ============================================================================ +18:14:35 Slot Id : <397> +18:14:35 Transaction Type : RESPONSE +18:14:35 Received From : +18:14:35 ============================================================================ +18:14:35 FNo. Len. Field Value +18:14:35 ============================================================================ +18:14:35 [ 1] [ 4] [0210] +18:14:35 [ 2] [ 16] [6213541000419930] +18:14:35 [ 3] [ 6] [010000] +18:14:35 [ 4] [ 12] [000010000000] +18:14:35 [ 7] [ 10] [0320111340] +18:14:35 [ 11] [ 6] [271131] +18:14:35 [ 12] [ 6] [181340] +18:14:35 [ 13] [ 4] [0320] +18:14:35 [ 15] [ 4] [0320] +18:14:35 [ 18] [ 4] [6011] +18:14:35 [ 19] [ 3] [418] +18:14:35 [ 32] [ 6] [180893] +18:14:35 [ 35] [ 32] [6213541000419930=491212011993865] +18:14:35 [ 37] [ 12] [507911271131] +18:14:35 [ 38] [ 6] [506660] +18:14:35 [ 39] [ 2] [00] +18:14:35 [ 41] [ 8] [0241VTPH] +18:14:35 [ 49] [ 3] [418] +18:14:35 [ 54] [ 40] [0001418C0000475350600002418C000047535060] +18:14:35 ============================================================================ +18:14:35 Sending to : +18:14:35 ============================================================================ +18:14:35 + + +waiting on router queue for slot.... +18:14:35 ============================================================================ +18:14:35 Slot Id : <413> +18:14:35 Transaction Type : RESPONSE +18:14:35 Received From : +18:14:35 ============================================================================ +18:14:35 FNo. Len. Field Value +18:14:35 ============================================================================ +18:14:35 [ 1] [ 4] [0210] +18:14:35 [ 2] [ 16] [6688990100636305] +18:14:35 [ 3] [ 6] [301000] +18:14:35 [ 4] [ 12] [000000000000] +18:14:35 [ 7] [ 10] [0320111337] +18:14:35 [ 11] [ 6] [271130] +18:14:35 [ 12] [ 6] [181337] +18:14:35 [ 13] [ 4] [0320] +18:14:35 [ 15] [ 4] [0320] +18:14:35 [ 18] [ 4] [6011] +18:14:35 [ 19] [ 3] [418] +18:14:35 [ 22] [ 3] [021] +18:14:35 [ 32] [ 6] [180893] +18:14:35 [ 35] [ 37] [6688990100636305=41091231630598000000] +18:14:35 [ 37] [ 12] [507911271130] +18:14:35 [ 39] [ 2] [14] +18:14:35 [ 41] [ 8] [0264UDXH] +18:14:35 [ 49] [ 3] [418] +18:14:35 ============================================================================ +18:14:35 Calculate Source COMM Id = 2 +18:14:35 ============================================================================ +18:14:35 + + +waiting on router queue for slot.... +18:14:37 ============================================================================ +18:14:37 Slot Id : <397> +18:14:37 Transaction Type : RESPONSE +18:14:37 Received From : +18:14:37 ============================================================================ +18:14:37 FNo. Len. Field Value +18:14:37 ============================================================================ +18:14:37 [ 1] [ 4] [0210] +18:14:37 [ 2] [ 16] [6213541000419930] +18:14:37 [ 3] [ 6] [010000] +18:14:37 [ 4] [ 12] [000010000000] +18:14:37 [ 7] [ 10] [0320111340] +18:14:37 [ 11] [ 6] [271131] +18:14:37 [ 12] [ 6] [181340] +18:14:37 [ 13] [ 4] [0320] +18:14:37 [ 15] [ 4] [0320] +18:14:37 [ 18] [ 4] [6011] +18:14:37 [ 19] [ 3] [418] +18:14:37 [ 32] [ 6] [180893] +18:14:37 [ 35] [ 32] [6213541000419930=491212011993865] +18:14:37 [ 37] [ 12] [507911271131] +18:14:37 [ 38] [ 6] [506660] +18:14:37 [ 39] [ 2] [00] +18:14:37 [ 41] [ 8] [0241VTPH] +18:14:37 [ 49] [ 3] [418] +18:14:37 [ 54] [ 40] [0001418C0000475350600002418C000047535060] +18:14:37 ============================================================================ +18:14:37 Calculate Source COMM Id = 2 +18:14:37 ============================================================================ +18:14:37 + + +waiting on router queue for slot.... +18:14:38 ============================================================================ +18:14:38 Slot Id : <349> +18:14:38 Transaction Type : REQUEST +18:14:38 Received From : +18:14:38 ============================================================================ +18:14:38 FNo. Len. Field Value +18:14:38 ============================================================================ +18:14:38 [ 1] [ 4] [0800] +18:14:38 [ 7] [ 10] [0320181424] +18:14:38 [ 11] [ 6] [077935] +18:14:38 [ 37] [ 12] [507918077935] +18:14:38 [ 70] [ 3] [ ] +18:14:38 ============================================================================ +18:14:38 + + +waiting on router queue for slot.... +18:14:38 Sending to : +18:14:38 ============================================================================ +18:14:38 ============================================================================ +18:14:38 Slot Id : <349> +18:14:38 Transaction Type : RESPONSE +18:14:38 Received From : +18:14:38 ============================================================================ +18:14:38 FNo. Len. Field Value +18:14:38 ============================================================================ +18:14:38 [ 1] [ 4] [0810] +18:14:38 [ 7] [ 10] [0320181424] +18:14:38 [ 11] [ 6] [077935] +18:14:38 [ 37] [ 12] [507918077935] +18:14:38 [ 39] [ 2] [91] +18:14:38 [ 70] [ 3] [ ] +18:14:38 ============================================================================ +18:14:38 Calculate Source COMM Id = 3 +18:14:38 ============================================================================ +18:14:38 + + +waiting on router queue for slot.... +18:14:38 ============================================================================ +18:14:38 Slot Id : <394> +18:14:38 Transaction Type : REQUEST +18:14:38 Received From : +18:14:38 ============================================================================ +18:14:38 FNo. Len. Field Value +18:14:38 ============================================================================ +18:14:38 [ 1] [ 4] [0800] +18:14:38 [ 7] [ 10] [0320111344] +18:14:38 [ 11] [ 6] [157656] +18:14:38 [ 70] [ 3] [301] +18:14:38 ============================================================================ +18:14:38 + + +waiting on router queue for slot.... +18:14:38 Sending to : +18:14:38 ============================================================================ +18:14:38 ============================================================================ +18:14:38 Slot Id : <394> +18:14:38 Transaction Type : RESPONSE +18:14:38 Received From : +18:14:38 ============================================================================ +18:14:38 FNo. Len. Field Value +18:14:38 ============================================================================ +18:14:38 [ 1] [ 4] [0810] +18:14:38 [ 7] [ 10] [0320111344] +18:14:38 [ 11] [ 6] [157656] +18:14:38 [ 39] [ 2] [00] +18:14:38 [ 70] [ 3] [301] +18:14:38 ============================================================================ +18:14:38 Calculate Source COMM Id = 2 +18:14:38 ============================================================================ +18:14:38 + + +waiting on router queue for slot.... +18:14:53 ============================================================================ +18:14:53 Slot Id : <418> +18:14:53 Transaction Type : REQUEST +18:14:53 Received From : +18:14:53 ============================================================================ +18:14:53 FNo. Len. Field Value +18:14:53 ============================================================================ +18:14:53 [ 1] [ 4] [0800] +18:14:53 [ 7] [ 10] [0320111359] +18:14:53 [ 11] [ 6] [157657] +18:14:53 [ 70] [ 3] [301] +18:14:53 ============================================================================ +18:14:53 + + +waiting on router queue for slot.... +18:14:53 Sending to : +18:14:53 ============================================================================ +18:14:53 ============================================================================ +18:14:53 Slot Id : <418> +18:14:53 Transaction Type : RESPONSE +18:14:53 Received From : +18:14:53 ============================================================================ +18:14:53 FNo. Len. Field Value +18:14:53 ============================================================================ +18:14:53 [ 1] [ 4] [0810] +18:14:53 [ 7] [ 10] [0320111359] +18:14:53 [ 11] [ 6] [157657] +18:14:53 [ 39] [ 2] [00] +18:14:53 [ 70] [ 3] [301] +18:14:53 ============================================================================ +18:14:53 Calculate Source COMM Id = 2 +18:14:53 ============================================================================ +18:14:53 + + +waiting on router queue for slot.... +18:14:57 ============================================================================ +18:14:57 Slot Id : <387> +18:14:57 Transaction Type : REQUEST +18:14:57 Received From : +18:14:57 ============================================================================ +18:14:57 FNo. Len. Field Value +18:14:57 ============================================================================ +18:14:57 [ 1] [ 4] [0800] +18:14:57 [ 7] [ 10] [0320112242] +18:14:57 [ 11] [ 6] [092556] +18:14:57 [ 37] [ 12] [57918092556] +18:14:57 [ 70] [ 3] [301] +18:14:57 ============================================================================ +18:14:57 + + +waiting on router queue for slot.... +18:14:57 Sending to : +18:14:57 ============================================================================ +18:14:57 ============================================================================ +18:14:57 Slot Id : <387> +18:14:57 Transaction Type : RESPONSE +18:14:57 Received From : +18:14:57 ============================================================================ +18:14:57 FNo. Len. Field Value +18:14:57 ============================================================================ +18:14:57 [ 1] [ 4] [0810] +18:14:57 [ 7] [ 10] [0320112242] +18:14:57 [ 11] [ 6] [092556] +18:14:57 [ 37] [ 12] [579180925560] +18:14:57 [ 39] [ 2] [00] +18:14:57 [ 70] [ 3] [810] +18:14:57 ============================================================================ +18:14:57 Calculate Source COMM Id = 1 +18:14:57 ============================================================================ +18:14:57 + + +waiting on router queue for slot.... +18:14:57 ============================================================================ +18:14:57 Slot Id : <372> +18:14:57 Transaction Type : REQUEST +18:14:57 Received From : +18:14:57 ============================================================================ +18:14:57 FNo. Len. Field Value +18:14:57 ============================================================================ +18:14:57 [ 1] [ 4] [0800] +18:14:57 [ 2] [ 5] [02531] +18:14:57 [ 3] [ 6] [579188] +18:14:57 [ 7] [ 10] [0320111457] +18:14:57 [ 11] [ 6] [807471] +18:14:57 [ 15] [ 10] [0320111457] +18:14:57 [ 37] [ 11] [57918807471] +18:14:57 [ 70] [ 3] [001] +18:14:57 ============================================================================ +18:14:57 + + +waiting on router queue for slot.... +18:14:57 ============================================================================ +18:14:57 Slot Id : <372> +18:14:57 Transaction Type : RESPONSE +18:14:57 Received From : +18:14:57 ============================================================================ +18:14:57 FNo. Len. Field Value +18:14:57 ============================================================================ +18:14:57 [ 1] [ 4] [0810] +18:14:57 [ 7] [ 10] [0320111457] +18:14:57 [ 11] [ 6] [807471] +18:14:57 [ 15] [ 4] [0320] +18:14:57 [ 37] [ 12] [57918807471] +18:14:57 [ 39] [ 2] [00] +18:14:57 [ 70] [ 3] [001] +18:14:57 ============================================================================ +18:14:57 Sending to : +18:14:57 ============================================================================ +18:14:57 + + +waiting on router queue for slot.... +18:15:08 ============================================================================ +18:15:08 Slot Id : <399> +18:15:08 Transaction Type : REQUEST +18:15:08 Received From : +18:15:08 ============================================================================ +18:15:08 FNo. Len. Field Value +18:15:08 ============================================================================ +18:15:08 [ 1] [ 4] [0800] +18:15:08 [ 7] [ 10] [0320111415] +18:15:08 [ 11] [ 6] [157658] +18:15:08 [ 70] [ 3] [301] +18:15:08 ============================================================================ +18:15:08 + + +waiting on router queue for slot.... +18:15:08 Sending to : +18:15:08 ============================================================================ +18:15:08 ============================================================================ +18:15:08 Slot Id : <399> +18:15:08 Transaction Type : RESPONSE +18:15:08 Received From : +18:15:08 ============================================================================ +18:15:08 FNo. Len. Field Value +18:15:08 ============================================================================ +18:15:08 [ 1] [ 4] [0810] +18:15:08 [ 7] [ 10] [0320111415] +18:15:08 [ 11] [ 6] [157658] +18:15:08 [ 39] [ 2] [00] +18:15:08 [ 70] [ 3] [301] +18:15:08 ============================================================================ +18:15:08 Calculate Source COMM Id = 2 +18:15:08 ============================================================================ +18:15:08 + + +waiting on router queue for slot.... +18:15:13 ============================================================================ +18:15:13 Slot Id : <368> +18:15:13 Transaction Type : REQUEST +18:15:13 Received From : +18:15:13 ============================================================================ +18:15:13 FNo. Len. Field Value +18:15:13 ============================================================================ +18:15:13 [ 1] [ 4] [0200] +18:15:13 [ 2] [ 16] [6688990602722306] +18:15:13 [ 3] [ 6] [010000] +18:15:13 [ 4] [ 12] [000100000000] +18:15:13 [ 7] [ 10] [0320111420] +18:15:13 [ 11] [ 6] [271138] +18:15:13 [ 12] [ 6] [181420] +18:15:13 [ 13] [ 4] [0320] +18:15:13 [ 14] [ 4] [4310] +18:15:13 [ 15] [ 4] [0320] +18:15:13 [ 18] [ 4] [6011] +18:15:13 [ 19] [ 3] [418] +18:15:13 [ 22] [ 3] [021] +18:15:13 [ 25] [ 2] [01] +18:15:13 [ 28] [ 9] [D00002000] +18:15:13 [ 32] [ 6] [180893] +18:15:13 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:15:13 [ 37] [ 12] [507911271138] +18:15:13 [ 41] [ 8] [0201ADD1] +18:15:13 [ 42] [ 15] [999999 ] +18:15:13 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +18:15:13 [ 49] [ 3] [418] +18:15:13 [ 52] [ 16] [8F06EB2BCA2A3F39] +18:15:13 ============================================================================ +18:15:13 + + +waiting on router queue for slot.... +18:15:13 Sending to : +18:15:13 ============================================================================ +18:15:13 Sending to : +18:15:13 ============================================================================ +18:15:13 ============================================================================ +18:15:13 Slot Id : <406> +18:15:13 Transaction Type : REQUEST +18:15:13 Received From : +18:15:13 ============================================================================ +18:15:13 FNo. Len. Field Value +18:15:13 ============================================================================ +18:15:13 [ 1] [ 4] [0800] +18:15:13 [ 7] [ 10] [0321012701] +18:15:13 [ 11] [ 6] [182701] +18:15:13 [ 37] [ 12] [57918182701] +18:15:13 [ 70] [ 3] [301] +18:15:13 ============================================================================ +18:15:13 + + +waiting on router queue for slot.... +18:15:13 Sending to : +18:15:13 ============================================================================ +18:15:13 ============================================================================ +18:15:13 Slot Id : <406> +18:15:13 Transaction Type : RESPONSE +18:15:13 Received From : +18:15:13 ============================================================================ +18:15:13 FNo. Len. Field Value +18:15:13 ============================================================================ +18:15:13 [ 1] [ 4] [0810] +18:15:13 [ 7] [ 10] [0321012701] +18:15:13 [ 11] [ 6] [182701] +18:15:13 [ 37] [ 12] [579181827010] +18:15:13 [ 39] [ 2] [00] +18:15:13 [ 70] [ 3] [810] +18:15:13 ============================================================================ +18:15:13 Calculate Source COMM Id = 6 +18:15:13 ============================================================================ +18:15:13 + + +waiting on router queue for slot.... +18:15:13 ============================================================================ +18:15:13 Slot Id : <368> +18:15:13 Transaction Type : REQUEST +18:15:13 Received From : +18:15:13 ============================================================================ +18:15:13 FNo. Len. Field Value +18:15:13 ============================================================================ +18:15:13 [ 1] [ 4] [0200] +18:15:13 [ 2] [ 16] [6688990602722306] +18:15:13 [ 3] [ 6] [010000] +18:15:13 [ 4] [ 12] [000100000000] +18:15:13 [ 7] [ 10] [0320111420] +18:15:13 [ 11] [ 6] [271138] +18:15:13 [ 12] [ 6] [181420] +18:15:13 [ 13] [ 4] [0320] +18:15:13 [ 14] [ 4] [4310] +18:15:13 [ 15] [ 4] [0320] +18:15:13 [ 18] [ 4] [6011] +18:15:13 [ 19] [ 3] [418] +18:15:13 [ 22] [ 3] [021] +18:15:13 [ 25] [ 2] [01] +18:15:13 [ 28] [ 9] [D00002000] +18:15:13 [ 32] [ 6] [180893] +18:15:13 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:15:13 [ 37] [ 12] [507911271138] +18:15:13 [ 41] [ 8] [0201ADD1] +18:15:13 [ 42] [ 15] [999999 ] +18:15:13 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +18:15:13 [ 49] [ 3] [418] +18:15:13 [ 52] [ 16] [8F06EB2BCA2A3F39] +18:15:13 ============================================================================ +18:15:13 + + +waiting on router queue for slot.... +18:15:13 Sending to : +18:15:13 ============================================================================ +18:15:13 ============================================================================ +18:15:13 Slot Id : <368> +18:15:13 Transaction Type : REQUEST +18:15:13 Received From : +18:15:13 ============================================================================ +18:15:13 FNo. Len. Field Value +18:15:13 ============================================================================ +18:15:13 [ 1] [ 4] [0200] +18:15:13 [ 2] [ 16] [6688990602722306] +18:15:13 [ 3] [ 6] [010000] +18:15:13 [ 4] [ 12] [000100000000] +18:15:13 [ 7] [ 10] [0320111420] +18:15:13 [ 11] [ 6] [271138] +18:15:13 [ 12] [ 6] [181420] +18:15:13 [ 13] [ 4] [0320] +18:15:13 [ 14] [ 4] [4310] +18:15:13 [ 15] [ 4] [0320] +18:15:13 [ 18] [ 4] [6011] +18:15:13 [ 19] [ 3] [418] +18:15:13 [ 22] [ 3] [021] +18:15:13 [ 25] [ 2] [01] +18:15:13 [ 28] [ 9] [D00002000] +18:15:13 [ 32] [ 6] [180893] +18:15:13 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:15:13 [ 37] [ 12] [507911271138] +18:15:13 [ 41] [ 8] [0201ADD1] +18:15:13 [ 42] [ 15] [999999 ] +18:15:13 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +18:15:13 [ 49] [ 3] [418] +18:15:13 [ 52] [ 16] [F4A7998F0ED3D918] +18:15:13 ============================================================================ +18:15:13 + + +waiting on router queue for slot.... +18:15:13 Sending to : <0> +18:15:13 ============================================================================ +18:15:13 ============================================================================ +18:15:13 Slot Id : <368> +18:15:13 Transaction Type : RESPONSE +18:15:13 Received From : +18:15:13 ============================================================================ +18:15:13 FNo. Len. Field Value +18:15:13 ============================================================================ +18:15:13 [ 1] [ 4] [0210] +18:15:13 [ 2] [ 16] [6688990602722306] +18:15:13 [ 3] [ 6] [010000] +18:15:13 [ 4] [ 12] [000100000000] +18:15:13 [ 7] [ 10] [0320111420] +18:15:13 [ 11] [ 6] [271138] +18:15:13 [ 12] [ 6] [181420] +18:15:13 [ 13] [ 4] [0320] +18:15:13 [ 15] [ 4] [0320] +18:15:13 [ 18] [ 4] [6011] +18:15:13 [ 19] [ 3] [418] +18:15:13 [ 22] [ 3] [021] +18:15:13 [ 32] [ 6] [180893] +18:15:13 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:15:13 [ 37] [ 12] [507911271138] +18:15:13 [ 39] [ 2] [14] +18:15:13 [ 41] [ 8] [0201ADD1] +18:15:13 [ 49] [ 3] [418] +18:15:13 ============================================================================ +18:15:13 Sending to : +18:15:13 ============================================================================ +18:15:13 + + +waiting on router queue for slot.... +18:15:14 ============================================================================ +18:15:14 Slot Id : <368> +18:15:14 Transaction Type : RESPONSE +18:15:14 Received From : +18:15:14 ============================================================================ +18:15:14 FNo. Len. Field Value +18:15:14 ============================================================================ +18:15:14 [ 1] [ 4] [0210] +18:15:14 [ 2] [ 16] [6688990602722306] +18:15:14 [ 3] [ 6] [010000] +18:15:14 [ 4] [ 12] [000100000000] +18:15:14 [ 7] [ 10] [0320111420] +18:15:14 [ 11] [ 6] [271138] +18:15:14 [ 12] [ 6] [181420] +18:15:14 [ 13] [ 4] [0320] +18:15:14 [ 15] [ 4] [0320] +18:15:14 [ 18] [ 4] [6011] +18:15:14 [ 19] [ 3] [418] +18:15:14 [ 22] [ 3] [021] +18:15:14 [ 32] [ 6] [180893] +18:15:14 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:15:14 [ 37] [ 12] [507911271138] +18:15:14 [ 39] [ 2] [14] +18:15:14 [ 41] [ 8] [0201ADD1] +18:15:14 [ 49] [ 3] [418] +18:15:14 ============================================================================ +18:15:14 Calculate Source COMM Id = 2 +18:15:14 ============================================================================ +18:15:14 + + +waiting on router queue for slot.... +18:15:24 ============================================================================ +18:15:24 Slot Id : <419> +18:15:24 Transaction Type : REQUEST +18:15:24 Received From : +18:15:24 ============================================================================ +18:15:24 FNo. Len. Field Value +18:15:24 ============================================================================ +18:15:24 [ 1] [ 4] [0200] +18:15:24 [ 2] [ 16] [6688990100636305] +18:15:24 [ 3] [ 6] [302000] +18:15:24 [ 7] [ 10] [0320111430] +18:15:24 [ 11] [ 6] [271140] +18:15:24 [ 12] [ 6] [181430] +18:15:24 [ 13] [ 4] [0320] +18:15:24 [ 14] [ 4] [4109] +18:15:24 [ 15] [ 4] [0320] +18:15:24 [ 18] [ 4] [6011] +18:15:24 [ 19] [ 3] [418] +18:15:24 [ 22] [ 3] [021] +18:15:24 [ 25] [ 2] [01] +18:15:24 [ 32] [ 6] [180893] +18:15:24 [ 35] [ 37] [6688990100636305=41091231630598000000] +18:15:24 [ 37] [ 12] [507911271140] +18:15:24 [ 41] [ 8] [0264UDXH] +18:15:24 [ 42] [ 15] [999999 ] +18:15:24 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +18:15:24 [ 49] [ 3] [418] +18:15:24 [ 52] [ 16] [E9EC9BEB1D557272] +18:15:24 ============================================================================ +18:15:24 + + +waiting on router queue for slot.... +18:15:24 Sending to : +18:15:24 ============================================================================ +18:15:24 Sending to : +18:15:24 ============================================================================ +18:15:24 ============================================================================ +18:15:24 Slot Id : <419> +18:15:24 Transaction Type : REQUEST +18:15:24 Received From : +18:15:24 ============================================================================ +18:15:24 FNo. Len. Field Value +18:15:24 ============================================================================ +18:15:24 [ 1] [ 4] [0200] +18:15:24 [ 2] [ 16] [6688990100636305] +18:15:24 [ 3] [ 6] [302000] +18:15:24 [ 7] [ 10] [0320111430] +18:15:24 [ 11] [ 6] [271140] +18:15:24 [ 12] [ 6] [181430] +18:15:24 [ 13] [ 4] [0320] +18:15:24 [ 14] [ 4] [4109] +18:15:24 [ 15] [ 4] [0320] +18:15:24 [ 18] [ 4] [6011] +18:15:24 [ 19] [ 3] [418] +18:15:24 [ 22] [ 3] [021] +18:15:24 [ 25] [ 2] [01] +18:15:24 [ 32] [ 6] [180893] +18:15:24 [ 35] [ 37] [6688990100636305=41091231630598000000] +18:15:24 [ 37] [ 12] [507911271140] +18:15:24 [ 41] [ 8] [0264UDXH] +18:15:24 [ 42] [ 15] [999999 ] +18:15:24 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +18:15:24 [ 49] [ 3] [418] +18:15:24 [ 52] [ 16] [E9EC9BEB1D557272] +18:15:24 ============================================================================ +18:15:24 + + +waiting on router queue for slot.... +18:15:24 Sending to : +18:15:24 ============================================================================ +18:15:24 ============================================================================ +18:15:24 Slot Id : <419> +18:15:24 Transaction Type : REQUEST +18:15:24 Received From : +18:15:24 ============================================================================ +18:15:24 FNo. Len. Field Value +18:15:24 ============================================================================ +18:15:24 [ 1] [ 4] [0200] +18:15:24 [ 2] [ 16] [6688990100636305] +18:15:24 [ 3] [ 6] [302000] +18:15:24 [ 7] [ 10] [0320111430] +18:15:24 [ 11] [ 6] [271140] +18:15:24 [ 12] [ 6] [181430] +18:15:24 [ 13] [ 4] [0320] +18:15:24 [ 14] [ 4] [4109] +18:15:24 [ 15] [ 4] [0320] +18:15:24 [ 18] [ 4] [6011] +18:15:24 [ 19] [ 3] [418] +18:15:24 [ 22] [ 3] [021] +18:15:24 [ 25] [ 2] [01] +18:15:24 [ 32] [ 6] [180893] +18:15:24 [ 35] [ 37] [6688990100636305=41091231630598000000] +18:15:24 [ 37] [ 12] [507911271140] +18:15:24 [ 41] [ 8] [0264UDXH] +18:15:24 [ 42] [ 15] [999999 ] +18:15:24 [ 43] [ 40] [ATM OUDOMXAY HOUN UNIT LOCATION, Houn, L] +18:15:24 [ 49] [ 3] [418] +18:15:24 [ 52] [ 16] [5BBBCADFF567BE49] +18:15:24 ============================================================================ +18:15:24 + + +waiting on router queue for slot.... +18:15:24 Sending to : <0> +18:15:24 ============================================================================ +18:15:24 ============================================================================ +18:15:24 Slot Id : <419> +18:15:24 Transaction Type : RESPONSE +18:15:24 Received From : +18:15:24 ============================================================================ +18:15:24 FNo. Len. Field Value +18:15:24 ============================================================================ +18:15:24 [ 1] [ 4] [0210] +18:15:24 [ 2] [ 16] [6688990100636305] +18:15:24 [ 3] [ 6] [302000] +18:15:24 [ 4] [ 12] [000000000000] +18:15:24 [ 7] [ 10] [0320111430] +18:15:24 [ 11] [ 6] [271140] +18:15:24 [ 12] [ 6] [181430] +18:15:24 [ 13] [ 4] [0320] +18:15:24 [ 15] [ 4] [0320] +18:15:24 [ 18] [ 4] [6011] +18:15:24 [ 19] [ 3] [418] +18:15:24 [ 22] [ 3] [021] +18:15:24 [ 32] [ 6] [180893] +18:15:24 [ 35] [ 37] [6688990100636305=41091231630598000000] +18:15:24 [ 37] [ 12] [507911271140] +18:15:24 [ 39] [ 2] [14] +18:15:24 [ 41] [ 8] [0264UDXH] +18:15:24 [ 49] [ 3] [418] +18:15:24 ============================================================================ +18:15:24 Sending to : +18:15:24 ============================================================================ +18:15:24 + + +waiting on router queue for slot.... +18:15:25 ============================================================================ +18:15:25 Slot Id : <419> +18:15:25 Transaction Type : RESPONSE +18:15:25 Received From : +18:15:25 ============================================================================ +18:15:25 FNo. Len. Field Value +18:15:25 ============================================================================ +18:15:25 [ 1] [ 4] [0210] +18:15:25 [ 2] [ 16] [6688990100636305] +18:15:25 [ 3] [ 6] [302000] +18:15:25 [ 4] [ 12] [000000000000] +18:15:25 [ 7] [ 10] [0320111430] +18:15:25 [ 11] [ 6] [271140] +18:15:25 [ 12] [ 6] [181430] +18:15:25 [ 13] [ 4] [0320] +18:15:25 [ 15] [ 4] [0320] +18:15:25 [ 18] [ 4] [6011] +18:15:25 [ 19] [ 3] [418] +18:15:25 [ 22] [ 3] [021] +18:15:25 [ 32] [ 6] [180893] +18:15:25 [ 35] [ 37] [6688990100636305=41091231630598000000] +18:15:25 [ 37] [ 12] [507911271140] +18:15:25 [ 39] [ 2] [14] +18:15:25 [ 41] [ 8] [0264UDXH] +18:15:25 [ 49] [ 3] [418] +18:15:25 ============================================================================ +18:15:25 Calculate Source COMM Id = 2 +18:15:25 ============================================================================ +18:15:25 + + +waiting on router queue for slot.... +18:15:30 ============================================================================ +18:15:30 Slot Id : <411> +18:15:30 Transaction Type : REQUEST +18:15:30 Received From : +18:15:30 ============================================================================ +18:15:30 FNo. Len. Field Value +18:15:30 ============================================================================ +18:15:30 [ 1] [ 4] [0200] +18:15:30 [ 2] [ 16] [6688990060034814] +18:15:30 [ 3] [ 6] [011000] +18:15:30 [ 4] [ 12] [000020000000] +18:15:30 [ 7] [ 10] [0320181525] +18:15:30 [ 11] [ 6] [825465] +18:15:30 [ 12] [ 6] [181525] +18:15:30 [ 13] [ 4] [0320] +18:15:30 [ 15] [ 4] [0320] +18:15:30 [ 18] [ 4] [6011] +18:15:30 [ 22] [ 3] [900] +18:15:30 [ 25] [ 2] [02] +18:15:30 [ 28] [ 9] [D00002000] +18:15:30 [ 32] [ 6] [621354] +18:15:30 [ 35] [ 37] [6688990060034814=98031261788704900000] +18:15:30 [ 37] [ 12] [507904154149] +18:15:30 [ 41] [ 8] [20001000] +18:15:30 [ 42] [ 15] [NATIVE ] +18:15:30 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +18:15:30 [ 49] [ 3] [418] +18:15:30 [ 52] [ 16] [3CC8D4E47C871A05] +18:15:30 ============================================================================ +18:15:30 + + +waiting on router queue for slot.... +18:15:30 Sending to : +18:15:30 ============================================================================ +18:15:30 Sending to : +18:15:30 ============================================================================ +18:15:31 ============================================================================ +18:15:31 Slot Id : <411> +18:15:31 Transaction Type : REQUEST +18:15:31 Received From : +18:15:31 ============================================================================ +18:15:31 FNo. Len. Field Value +18:15:31 ============================================================================ +18:15:31 [ 1] [ 4] [0200] +18:15:31 [ 2] [ 16] [6688990060034814] +18:15:31 [ 3] [ 6] [011000] +18:15:31 [ 4] [ 12] [000020000000] +18:15:31 [ 7] [ 10] [0320181525] +18:15:31 [ 11] [ 6] [825465] +18:15:31 [ 12] [ 6] [181525] +18:15:31 [ 13] [ 4] [0320] +18:15:31 [ 15] [ 4] [0320] +18:15:31 [ 18] [ 4] [6011] +18:15:31 [ 22] [ 3] [900] +18:15:31 [ 25] [ 2] [02] +18:15:31 [ 28] [ 9] [D00002000] +18:15:31 [ 32] [ 6] [621354] +18:15:31 [ 35] [ 37] [6688990060034814=98031261788704900000] +18:15:31 [ 37] [ 12] [507904154149] +18:15:31 [ 41] [ 8] [20001000] +18:15:31 [ 42] [ 15] [NATIVE ] +18:15:31 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +18:15:31 [ 49] [ 3] [418] +18:15:31 [ 52] [ 16] [3CC8D4E47C871A05] +18:15:31 ============================================================================ +18:15:31 + + +waiting on router queue for slot.... +18:15:31 Sending to : +18:15:31 ============================================================================ +18:15:31 ============================================================================ +18:15:31 Slot Id : <411> +18:15:31 Transaction Type : REQUEST +18:15:31 Received From : +18:15:31 ============================================================================ +18:15:31 FNo. Len. Field Value +18:15:31 ============================================================================ +18:15:31 [ 1] [ 4] [0200] +18:15:31 [ 2] [ 16] [6688990060034814] +18:15:31 [ 3] [ 6] [011000] +18:15:31 [ 4] [ 12] [000020000000] +18:15:31 [ 7] [ 10] [0320181525] +18:15:31 [ 11] [ 6] [825465] +18:15:31 [ 12] [ 6] [181525] +18:15:31 [ 13] [ 4] [0320] +18:15:31 [ 15] [ 4] [0320] +18:15:31 [ 18] [ 4] [6011] +18:15:31 [ 22] [ 3] [900] +18:15:31 [ 25] [ 2] [02] +18:15:31 [ 28] [ 9] [D00002000] +18:15:31 [ 32] [ 6] [621354] +18:15:31 [ 35] [ 37] [6688990060034814=98031261788704900000] +18:15:31 [ 37] [ 12] [507904154149] +18:15:31 [ 41] [ 8] [20001000] +18:15:31 [ 42] [ 15] [NATIVE ] +18:15:31 [ 43] [ 40] [Muanglaungam Unit Laongam LAO] +18:15:31 [ 49] [ 3] [418] +18:15:31 [ 52] [ 16] [3C2FAFEFD4197364] +18:15:31 ============================================================================ +18:15:31 + + +waiting on router queue for slot.... +18:15:31 Sending to : <4> +18:15:31 ============================================================================ +18:15:32 ============================================================================ +18:15:32 Slot Id : <411> +18:15:32 Transaction Type : RESPONSE +18:15:32 Received From : +18:15:32 ============================================================================ +18:15:32 FNo. Len. Field Value +18:15:32 ============================================================================ +18:15:32 [ 1] [ 4] [0210] +18:15:32 [ 2] [ 16] [6688990060034814] +18:15:32 [ 3] [ 6] [011000] +18:15:32 [ 4] [ 12] [000020000000] +18:15:32 [ 11] [ 6] [825465] +18:15:32 [ 12] [ 6] [181525] +18:15:32 [ 15] [ 4] [0320] +18:15:32 [ 18] [ 4] [6011] +18:15:32 [ 32] [ 6] [621354] +18:15:32 [ 35] [ 37] [6688990060034814=98031261788704900000] +18:15:32 [ 37] [ 12] [507904154149] +18:15:32 [ 38] [ 6] [951667] +18:15:32 [ 39] [ 2] [00] +18:15:32 [ 41] [ 8] [20001000] +18:15:32 [ 49] [ 3] [418] +18:15:32 [ 54] [ 20] [1002418C000251775088] +18:15:32 ============================================================================ +18:15:32 Sending to : +18:15:32 ============================================================================ +18:15:32 + + +waiting on router queue for slot.... +18:15:33 ============================================================================ +18:15:33 Slot Id : <411> +18:15:33 Transaction Type : RESPONSE +18:15:33 Received From : +18:15:33 ============================================================================ +18:15:33 FNo. Len. Field Value +18:15:33 ============================================================================ +18:15:33 [ 1] [ 4] [0210] +18:15:33 [ 2] [ 16] [6688990060034814] +18:15:33 [ 3] [ 6] [011000] +18:15:33 [ 4] [ 12] [000020000000] +18:15:33 [ 11] [ 6] [825465] +18:15:33 [ 12] [ 6] [181525] +18:15:33 [ 15] [ 4] [0320] +18:15:33 [ 18] [ 4] [6011] +18:15:33 [ 32] [ 6] [621354] +18:15:33 [ 35] [ 37] [6688990060034814=98031261788704900000] +18:15:33 [ 37] [ 12] [507904154149] +18:15:33 [ 38] [ 6] [951667] +18:15:33 [ 39] [ 2] [00] +18:15:33 [ 41] [ 8] [20001000] +18:15:33 [ 49] [ 3] [418] +18:15:33 [ 54] [ 20] [1002418C000251775088] +18:15:33 ============================================================================ +18:15:33 Calculate Source COMM Id = 0 +18:15:33 ============================================================================ +18:15:33 + + +waiting on router queue for slot.... +18:15:40 ============================================================================ +18:15:40 Slot Id : <380> +18:15:40 Transaction Type : REQUEST +18:15:40 Received From : +18:15:40 ============================================================================ +18:15:40 FNo. Len. Field Value +18:15:40 ============================================================================ +18:15:40 [ 1] [ 4] [0800] +18:15:40 [ 7] [ 10] [0320111447] +18:15:40 [ 11] [ 6] [157659] +18:15:40 [ 70] [ 3] [301] +18:15:40 ============================================================================ +18:15:40 + + +waiting on router queue for slot.... +18:15:40 Sending to : +18:15:40 ============================================================================ +18:15:40 ============================================================================ +18:15:40 Slot Id : <380> +18:15:40 Transaction Type : RESPONSE +18:15:40 Received From : +18:15:40 ============================================================================ +18:15:40 FNo. Len. Field Value +18:15:40 ============================================================================ +18:15:40 [ 1] [ 4] [0810] +18:15:40 [ 7] [ 10] [0320111447] +18:15:40 [ 11] [ 6] [157659] +18:15:40 [ 39] [ 2] [00] +18:15:40 [ 70] [ 3] [301] +18:15:40 ============================================================================ +18:15:40 Calculate Source COMM Id = 2 +18:15:40 ============================================================================ +18:15:40 + + +waiting on router queue for slot.... +18:15:51 ============================================================================ +18:15:51 Slot Id : <384> +18:15:51 Transaction Type : REQUEST +18:15:51 Received From : +18:15:51 ============================================================================ +18:15:51 FNo. Len. Field Value +18:15:51 ============================================================================ +18:15:51 [ 1] [ 4] [0800] +18:15:51 [ 7] [ 10] [0320111458] +18:15:51 [ 11] [ 6] [157660] +18:15:51 [ 70] [ 3] [301] +18:15:51 ============================================================================ +18:15:51 + + +waiting on router queue for slot.... +18:15:51 Sending to : +18:15:51 ============================================================================ +18:15:51 ============================================================================ +18:15:51 Slot Id : <384> +18:15:51 Transaction Type : RESPONSE +18:15:51 Received From : +18:15:51 ============================================================================ +18:15:51 FNo. Len. Field Value +18:15:51 ============================================================================ +18:15:51 [ 1] [ 4] [0810] +18:15:51 [ 7] [ 10] [0320111458] +18:15:51 [ 11] [ 6] [157660] +18:15:51 [ 39] [ 2] [00] +18:15:51 [ 70] [ 3] [301] +18:15:51 ============================================================================ +18:15:51 Calculate Source COMM Id = 2 +18:15:51 ============================================================================ +18:15:51 + + +waiting on router queue for slot.... +18:15:59 ============================================================================ +18:15:59 Slot Id : <407> +18:15:59 Transaction Type : REQUEST +18:15:59 Received From : +18:15:59 ============================================================================ +18:15:59 FNo. Len. Field Value +18:15:59 ============================================================================ +18:15:59 [ 1] [ 4] [0800] +18:15:59 [ 2] [ 5] [02531] +18:15:59 [ 3] [ 6] [579188] +18:15:59 [ 7] [ 10] [0320111559] +18:15:59 [ 11] [ 6] [807472] +18:15:59 [ 15] [ 10] [0320111559] +18:15:59 [ 37] [ 11] [57918807472] +18:15:59 [ 70] [ 3] [001] +18:15:59 ============================================================================ +18:15:59 + + +waiting on router queue for slot.... +18:15:59 ============================================================================ +18:15:59 Slot Id : <407> +18:15:59 Transaction Type : RESPONSE +18:15:59 Received From : +18:15:59 ============================================================================ +18:15:59 FNo. Len. Field Value +18:15:59 ============================================================================ +18:15:59 [ 1] [ 4] [0810] +18:15:59 [ 7] [ 10] [0320111559] +18:15:59 [ 11] [ 6] [807472] +18:15:59 [ 15] [ 4] [0320] +18:15:59 [ 37] [ 12] [57918807472] +18:15:59 [ 39] [ 2] [00] +18:15:59 [ 70] [ 3] [001] +18:15:59 ============================================================================ +18:15:59 Sending to : +18:15:59 ============================================================================ +18:15:59 + + +waiting on router queue for slot.... +18:16:02 ============================================================================ +18:16:02 Slot Id : <416> +18:16:02 Transaction Type : REQUEST +18:16:02 Received From : +18:16:02 ============================================================================ +18:16:02 FNo. Len. Field Value +18:16:02 ============================================================================ +18:16:02 [ 1] [ 4] [0800] +18:16:02 [ 7] [ 10] [0320111509] +18:16:02 [ 11] [ 6] [157661] +18:16:02 [ 70] [ 3] [301] +18:16:02 ============================================================================ +18:16:02 + + +waiting on router queue for slot.... +18:16:02 Sending to : +18:16:02 ============================================================================ +18:16:02 ============================================================================ +18:16:02 Slot Id : <416> +18:16:02 Transaction Type : RESPONSE +18:16:02 Received From : +18:16:02 ============================================================================ +18:16:02 FNo. Len. Field Value +18:16:02 ============================================================================ +18:16:02 [ 1] [ 4] [0810] +18:16:02 [ 7] [ 10] [0320111509] +18:16:02 [ 11] [ 6] [157661] +18:16:02 [ 39] [ 2] [00] +18:16:02 [ 70] [ 3] [301] +18:16:02 ============================================================================ +18:16:02 Calculate Source COMM Id = 2 +18:16:02 ============================================================================ +18:16:02 + + +waiting on router queue for slot.... +18:16:06 ============================================================================ +18:16:06 Slot Id : <401> +18:16:06 Transaction Type : REQUEST +18:16:06 Received From : +18:16:06 ============================================================================ +18:16:06 FNo. Len. Field Value +18:16:06 ============================================================================ +18:16:06 [ 1] [ 4] [0200] +18:16:06 [ 2] [ 16] [6213544002278965] +18:16:06 [ 3] [ 6] [011000] +18:16:06 [ 4] [ 12] [000040000000] +18:16:06 [ 7] [ 10] [0320181626] +18:16:06 [ 11] [ 6] [210250] +18:16:06 [ 12] [ 6] [181132] +18:16:06 [ 13] [ 4] [0320] +18:16:06 [ 14] [ 4] [4912] +18:16:06 [ 15] [ 4] [0320] +18:16:06 [ 18] [ 4] [6011] +18:16:06 [ 19] [ 3] [418] +18:16:06 [ 22] [ 3] [021] +18:16:06 [ 25] [ 2] [01] +18:16:06 [ 28] [ 9] [D00002000] +18:16:06 [ 32] [ 6] [198901] +18:16:06 [ 35] [ 32] [6213544002278965=491212017896255] +18:16:06 [ 37] [ 12] [507918210250] +18:16:06 [ 41] [ 8] [19529001] +18:16:06 [ 42] [ 15] [000000041952901] +18:16:06 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +18:16:06 [ 49] [ 3] [418] +18:16:06 [ 52] [ 16] [0B099EBD8FEFCE49] +18:16:06 ============================================================================ +18:16:06 + + +waiting on router queue for slot.... +18:16:06 Sending to : +18:16:06 ============================================================================ +18:16:06 Sending to : +18:16:06 ============================================================================ +18:16:07 ============================================================================ +18:16:07 Slot Id : <401> +18:16:07 Transaction Type : REQUEST +18:16:07 Received From : +18:16:07 ============================================================================ +18:16:07 FNo. Len. Field Value +18:16:07 ============================================================================ +18:16:07 [ 1] [ 4] [0200] +18:16:07 [ 2] [ 16] [6213544002278965] +18:16:07 [ 3] [ 6] [011000] +18:16:07 [ 4] [ 12] [000040000000] +18:16:07 [ 7] [ 10] [0320181626] +18:16:07 [ 11] [ 6] [210250] +18:16:07 [ 12] [ 6] [181132] +18:16:07 [ 13] [ 4] [0320] +18:16:07 [ 14] [ 4] [4912] +18:16:07 [ 15] [ 4] [0320] +18:16:07 [ 18] [ 4] [6011] +18:16:07 [ 19] [ 3] [418] +18:16:07 [ 22] [ 3] [021] +18:16:07 [ 25] [ 2] [01] +18:16:07 [ 28] [ 9] [D00002000] +18:16:07 [ 32] [ 6] [198901] +18:16:07 [ 35] [ 32] [6213544002278965=491212017896255] +18:16:07 [ 37] [ 12] [507918210250] +18:16:07 [ 41] [ 8] [19529001] +18:16:07 [ 42] [ 15] [000000041952901] +18:16:07 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +18:16:07 [ 49] [ 3] [418] +18:16:07 [ 52] [ 16] [0B099EBD8FEFCE49] +18:16:07 ============================================================================ +18:16:07 + + +waiting on router queue for slot.... +18:16:07 Sending to : +18:16:07 ============================================================================ +18:16:07 ============================================================================ +18:16:07 Slot Id : <401> +18:16:07 Transaction Type : REQUEST +18:16:07 Received From : +18:16:07 ============================================================================ +18:16:07 FNo. Len. Field Value +18:16:07 ============================================================================ +18:16:07 [ 1] [ 4] [0200] +18:16:07 [ 2] [ 16] [6213544002278965] +18:16:07 [ 3] [ 6] [011000] +18:16:07 [ 4] [ 12] [000040000000] +18:16:07 [ 7] [ 10] [0320181626] +18:16:07 [ 11] [ 6] [210250] +18:16:07 [ 12] [ 6] [181132] +18:16:07 [ 13] [ 4] [0320] +18:16:07 [ 14] [ 4] [4912] +18:16:07 [ 15] [ 4] [0320] +18:16:07 [ 18] [ 4] [6011] +18:16:07 [ 19] [ 3] [418] +18:16:07 [ 22] [ 3] [021] +18:16:07 [ 25] [ 2] [01] +18:16:07 [ 28] [ 9] [D00002000] +18:16:07 [ 32] [ 6] [198901] +18:16:07 [ 35] [ 32] [6213544002278965=491212017896255] +18:16:07 [ 37] [ 12] [507918210250] +18:16:07 [ 41] [ 8] [19529001] +18:16:07 [ 42] [ 15] [000000041952901] +18:16:07 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +18:16:07 [ 49] [ 3] [418] +18:16:07 [ 52] [ 16] [AD974809B8277BC3] +18:16:07 ============================================================================ +18:16:07 + + +waiting on router queue for slot.... +18:16:07 Sending to : <0> +18:16:07 ============================================================================ +18:16:07 ============================================================================ +18:16:07 Slot Id : <401> +18:16:07 Transaction Type : RESPONSE +18:16:07 Received From : +18:16:07 ============================================================================ +18:16:07 FNo. Len. Field Value +18:16:07 ============================================================================ +18:16:07 [ 1] [ 4] [0210] +18:16:07 [ 2] [ 16] [6213544002278965] +18:16:07 [ 3] [ 6] [011000] +18:16:07 [ 4] [ 12] [000040000000] +18:16:07 [ 7] [ 10] [0320181626] +18:16:07 [ 11] [ 6] [210250] +18:16:07 [ 12] [ 6] [181132] +18:16:07 [ 13] [ 4] [0320] +18:16:07 [ 15] [ 4] [0320] +18:16:07 [ 18] [ 4] [6011] +18:16:07 [ 19] [ 3] [418] +18:16:07 [ 32] [ 6] [198901] +18:16:07 [ 35] [ 32] [6213544002278965=491212017896255] +18:16:07 [ 37] [ 12] [507918210250] +18:16:07 [ 38] [ 6] [210250] +18:16:07 [ 39] [ 2] [51] +18:16:07 [ 41] [ 8] [19529001] +18:16:07 [ 49] [ 3] [418] +18:16:07 [ 54] [ 40] [1001418C0000447572111002418C000044757211] +18:16:07 ============================================================================ +18:16:07 Sending to : +18:16:07 ============================================================================ +18:16:07 + + +waiting on router queue for slot.... +18:16:08 ============================================================================ +18:16:08 Slot Id : <401> +18:16:08 Transaction Type : RESPONSE +18:16:08 Received From : +18:16:08 ============================================================================ +18:16:08 FNo. Len. Field Value +18:16:08 ============================================================================ +18:16:08 [ 1] [ 4] [0210] +18:16:08 [ 2] [ 16] [6213544002278965] +18:16:08 [ 3] [ 6] [011000] +18:16:08 [ 4] [ 12] [000040000000] +18:16:08 [ 7] [ 10] [0320181626] +18:16:08 [ 11] [ 6] [210250] +18:16:08 [ 12] [ 6] [181132] +18:16:08 [ 13] [ 4] [0320] +18:16:08 [ 15] [ 4] [0320] +18:16:08 [ 18] [ 4] [6011] +18:16:08 [ 19] [ 3] [418] +18:16:08 [ 32] [ 6] [198901] +18:16:08 [ 35] [ 32] [6213544002278965=491212017896255] +18:16:08 [ 37] [ 12] [507918210250] +18:16:08 [ 38] [ 6] [210250] +18:16:08 [ 39] [ 2] [51] +18:16:08 [ 41] [ 8] [19529001] +18:16:08 [ 49] [ 3] [418] +18:16:08 [ 54] [ 40] [1001418C0000447572111002418C000044757211] +18:16:08 ============================================================================ +18:16:08 Calculate Source COMM Id = 5 +18:16:08 ============================================================================ +18:16:08 + + +waiting on router queue for slot.... +18:16:09 ============================================================================ +18:16:09 Slot Id : <433> +18:16:09 Transaction Type : REQUEST +18:16:09 Received From : +18:16:09 ============================================================================ +18:16:09 FNo. Len. Field Value +18:16:09 ============================================================================ +18:16:09 [ 1] [ 4] [0200] +18:16:09 [ 2] [ 16] [6213541000541832] +18:16:09 [ 3] [ 6] [010000] +18:16:09 [ 4] [ 12] [000100000000] +18:16:09 [ 7] [ 10] [0320181358] +18:16:09 [ 11] [ 6] [954486] +18:16:09 [ 12] [ 6] [181358] +18:16:09 [ 13] [ 4] [0320] +18:16:09 [ 15] [ 4] [0320] +18:16:09 [ 18] [ 4] [6011] +18:16:09 [ 19] [ 3] [418] +18:16:09 [ 22] [ 3] [021] +18:16:09 [ 25] [ 2] [01] +18:16:09 [ 28] [ 9] [D00002000] +18:16:09 [ 32] [ 6] [668899] +18:16:09 [ 35] [ 32] [6213541000541832=491212014183023] +18:16:09 [ 37] [ 12] [507900146870] +18:16:09 [ 41] [ 8] [03020005] +18:16:09 [ 42] [ 15] [APT ] +18:16:09 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:16:09 [ 49] [ 3] [418] +18:16:09 [ 52] [ 16] [90958D38D9BA7E27] +18:16:09 ============================================================================ +18:16:09 + + +waiting on router queue for slot.... +18:16:09 Sending to : +18:16:09 ============================================================================ +18:16:09 Sending to : +18:16:09 ============================================================================ +18:16:09 ============================================================================ +18:16:09 Slot Id : <433> +18:16:09 Transaction Type : REQUEST +18:16:09 Received From : +18:16:09 ============================================================================ +18:16:09 FNo. Len. Field Value +18:16:09 ============================================================================ +18:16:09 [ 1] [ 4] [0200] +18:16:09 [ 2] [ 16] [6213541000541832] +18:16:09 [ 3] [ 6] [010000] +18:16:09 [ 4] [ 12] [000100000000] +18:16:09 [ 7] [ 10] [0320181358] +18:16:09 [ 11] [ 6] [954486] +18:16:09 [ 12] [ 6] [181358] +18:16:09 [ 13] [ 4] [0320] +18:16:09 [ 15] [ 4] [0320] +18:16:09 [ 18] [ 4] [6011] +18:16:09 [ 19] [ 3] [418] +18:16:09 [ 22] [ 3] [021] +18:16:09 [ 25] [ 2] [01] +18:16:09 [ 28] [ 9] [D00002000] +18:16:09 [ 32] [ 6] [668899] +18:16:09 [ 35] [ 32] [6213541000541832=491212014183023] +18:16:09 [ 37] [ 12] [507900146870] +18:16:09 [ 41] [ 8] [03020005] +18:16:09 [ 42] [ 15] [APT ] +18:16:09 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:16:09 [ 49] [ 3] [418] +18:16:09 [ 52] [ 16] [90958D38D9BA7E27] +18:16:09 ============================================================================ +18:16:09 + + +waiting on router queue for slot.... +18:16:09 Sending to : +18:16:09 ============================================================================ +18:16:09 ============================================================================ +18:16:09 Slot Id : <433> +18:16:09 Transaction Type : REQUEST +18:16:09 Received From : +18:16:09 ============================================================================ +18:16:09 FNo. Len. Field Value +18:16:09 ============================================================================ +18:16:09 [ 1] [ 4] [0200] +18:16:09 [ 2] [ 16] [6213541000541832] +18:16:09 [ 3] [ 6] [010000] +18:16:09 [ 4] [ 12] [000100000000] +18:16:09 [ 7] [ 10] [0320181358] +18:16:09 [ 11] [ 6] [954486] +18:16:09 [ 12] [ 6] [181358] +18:16:09 [ 13] [ 4] [0320] +18:16:09 [ 15] [ 4] [0320] +18:16:09 [ 18] [ 4] [6011] +18:16:09 [ 19] [ 3] [418] +18:16:09 [ 22] [ 3] [021] +18:16:09 [ 25] [ 2] [01] +18:16:09 [ 28] [ 9] [D00002000] +18:16:09 [ 32] [ 6] [668899] +18:16:09 [ 35] [ 32] [6213541000541832=491212014183023] +18:16:09 [ 37] [ 12] [507900146870] +18:16:09 [ 41] [ 8] [03020005] +18:16:09 [ 42] [ 15] [APT ] +18:16:09 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:16:09 [ 49] [ 3] [418] +18:16:09 [ 52] [ 16] [FEA4C2E8298C8F19] +18:16:09 ============================================================================ +18:16:09 + + +waiting on router queue for slot.... +18:16:09 Sending to : <0> +18:16:09 ============================================================================ +18:16:10 ============================================================================ +18:16:10 Slot Id : <433> +18:16:10 Transaction Type : RESPONSE +18:16:10 Received From : +18:16:10 ============================================================================ +18:16:10 FNo. Len. Field Value +18:16:10 ============================================================================ +18:16:10 [ 1] [ 4] [0210] +18:16:10 [ 2] [ 16] [6213541000541832] +18:16:10 [ 3] [ 6] [010000] +18:16:10 [ 4] [ 12] [000100000000] +18:16:10 [ 7] [ 10] [0320181358] +18:16:10 [ 11] [ 6] [954486] +18:16:10 [ 12] [ 6] [181358] +18:16:10 [ 13] [ 4] [0320] +18:16:10 [ 15] [ 4] [0320] +18:16:10 [ 18] [ 4] [6011] +18:16:10 [ 19] [ 3] [418] +18:16:10 [ 32] [ 6] [668899] +18:16:10 [ 35] [ 32] [6213541000541832=491212014183023] +18:16:10 [ 37] [ 12] [507900146870] +18:16:10 [ 38] [ 6] [393355] +18:16:10 [ 39] [ 2] [00] +18:16:10 [ 41] [ 8] [03020005] +18:16:10 [ 49] [ 3] [418] +18:16:10 [ 54] [ 40] [0001764C0004185915550002764C000418591555] +18:16:10 ============================================================================ +18:16:10 Sending to : +18:16:10 ============================================================================ +18:16:10 + + +waiting on router queue for slot.... +18:16:11 ============================================================================ +18:16:11 Slot Id : <381> +18:16:11 Transaction Type : REQUEST +18:16:11 Received From : +18:16:11 ============================================================================ +18:16:11 FNo. Len. Field Value +18:16:11 ============================================================================ +18:16:11 [ 1] [ 4] [0200] +18:16:11 [ 2] [ 16] [6688990107476101] +18:16:11 [ 3] [ 6] [010000] +18:16:11 [ 4] [ 12] [000200000000] +18:16:11 [ 7] [ 10] [0320111516] +18:16:11 [ 11] [ 6] [271146] +18:16:11 [ 12] [ 6] [181516] +18:16:11 [ 13] [ 4] [0320] +18:16:11 [ 14] [ 4] [4403] +18:16:11 [ 15] [ 4] [0320] +18:16:11 [ 18] [ 4] [6011] +18:16:11 [ 19] [ 3] [418] +18:16:11 [ 22] [ 3] [021] +18:16:11 [ 25] [ 2] [01] +18:16:11 [ 28] [ 9] [D00002000] +18:16:11 [ 32] [ 6] [180893] +18:16:11 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:16:11 [ 37] [ 12] [507911271146] +18:16:11 [ 41] [ 8] [0262PSLB] +18:16:11 [ 42] [ 15] [999999 ] +18:16:11 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +18:16:11 [ 49] [ 3] [418] +18:16:11 [ 52] [ 16] [0A42ACE4CBB6BEC3] +18:16:11 ============================================================================ +18:16:11 + + +waiting on router queue for slot.... +18:16:11 Sending to : +18:16:11 ============================================================================ +18:16:11 Sending to : +18:16:11 ============================================================================ +18:16:11 ============================================================================ +18:16:11 Slot Id : <381> +18:16:11 Transaction Type : REQUEST +18:16:11 Received From : +18:16:11 ============================================================================ +18:16:11 FNo. Len. Field Value +18:16:11 ============================================================================ +18:16:11 [ 1] [ 4] [0200] +18:16:11 [ 2] [ 16] [6688990107476101] +18:16:11 [ 3] [ 6] [010000] +18:16:11 [ 4] [ 12] [000200000000] +18:16:11 [ 7] [ 10] [0320111516] +18:16:11 [ 11] [ 6] [271146] +18:16:11 [ 12] [ 6] [181516] +18:16:11 [ 13] [ 4] [0320] +18:16:11 [ 14] [ 4] [4403] +18:16:11 [ 15] [ 4] [0320] +18:16:11 [ 18] [ 4] [6011] +18:16:11 [ 19] [ 3] [418] +18:16:11 [ 22] [ 3] [021] +18:16:11 [ 25] [ 2] [01] +18:16:11 [ 28] [ 9] [D00002000] +18:16:11 [ 32] [ 6] [180893] +18:16:11 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:16:11 [ 37] [ 12] [507911271146] +18:16:11 [ 41] [ 8] [0262PSLB] +18:16:11 [ 42] [ 15] [999999 ] +18:16:11 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +18:16:11 [ 49] [ 3] [418] +18:16:11 [ 52] [ 16] [0A42ACE4CBB6BEC3] +18:16:11 ============================================================================ +18:16:11 + + +waiting on router queue for slot.... +18:16:11 Sending to : +18:16:11 ============================================================================ +18:16:11 ============================================================================ +18:16:11 Slot Id : <381> +18:16:11 Transaction Type : REQUEST +18:16:11 Received From : +18:16:11 ============================================================================ +18:16:11 FNo. Len. Field Value +18:16:11 ============================================================================ +18:16:11 [ 1] [ 4] [0200] +18:16:11 [ 2] [ 16] [6688990107476101] +18:16:11 [ 3] [ 6] [010000] +18:16:11 [ 4] [ 12] [000200000000] +18:16:11 [ 7] [ 10] [0320111516] +18:16:11 [ 11] [ 6] [271146] +18:16:11 [ 12] [ 6] [181516] +18:16:11 [ 13] [ 4] [0320] +18:16:11 [ 14] [ 4] [4403] +18:16:11 [ 15] [ 4] [0320] +18:16:11 [ 18] [ 4] [6011] +18:16:11 [ 19] [ 3] [418] +18:16:11 [ 22] [ 3] [021] +18:16:11 [ 25] [ 2] [01] +18:16:11 [ 28] [ 9] [D00002000] +18:16:11 [ 32] [ 6] [180893] +18:16:11 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:16:11 [ 37] [ 12] [507911271146] +18:16:11 [ 41] [ 8] [0262PSLB] +18:16:11 [ 42] [ 15] [999999 ] +18:16:11 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +18:16:11 [ 49] [ 3] [418] +18:16:11 [ 52] [ 16] [914B2E47AB349A58] +18:16:11 ============================================================================ +18:16:11 + + +waiting on router queue for slot.... +18:16:11 Sending to : <0> +18:16:11 ============================================================================ +18:16:11 ============================================================================ +18:16:11 Slot Id : <381> +18:16:11 Transaction Type : RESPONSE +18:16:11 Received From : +18:16:11 ============================================================================ +18:16:11 FNo. Len. Field Value +18:16:11 ============================================================================ +18:16:11 [ 1] [ 4] [0210] +18:16:11 [ 2] [ 16] [6688990107476101] +18:16:11 [ 3] [ 6] [010000] +18:16:11 [ 4] [ 12] [000200000000] +18:16:11 [ 7] [ 10] [0320111516] +18:16:11 [ 11] [ 6] [271146] +18:16:11 [ 12] [ 6] [181516] +18:16:11 [ 13] [ 4] [0320] +18:16:11 [ 15] [ 4] [0320] +18:16:11 [ 18] [ 4] [6011] +18:16:11 [ 19] [ 3] [418] +18:16:11 [ 22] [ 3] [021] +18:16:11 [ 32] [ 6] [180893] +18:16:11 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:16:11 [ 37] [ 12] [507911271146] +18:16:11 [ 39] [ 2] [61] +18:16:11 [ 41] [ 8] [0262PSLB] +18:16:11 [ 49] [ 3] [418] +18:16:11 ============================================================================ +18:16:11 Sending to : +18:16:11 ============================================================================ +18:16:11 + + +waiting on router queue for slot.... +18:16:11 ============================================================================ +18:16:11 Slot Id : <433> +18:16:11 Transaction Type : RESPONSE +18:16:11 Received From : +18:16:11 ============================================================================ +18:16:11 FNo. Len. Field Value +18:16:11 ============================================================================ +18:16:11 [ 1] [ 4] [0210] +18:16:11 [ 2] [ 16] [6213541000541832] +18:16:11 [ 3] [ 6] [010000] +18:16:11 [ 4] [ 12] [000100000000] +18:16:11 [ 7] [ 10] [0320181358] +18:16:11 [ 11] [ 6] [954486] +18:16:11 [ 12] [ 6] [181358] +18:16:11 [ 13] [ 4] [0320] +18:16:11 [ 15] [ 4] [0320] +18:16:11 [ 18] [ 4] [6011] +18:16:11 [ 19] [ 3] [418] +18:16:11 [ 32] [ 6] [668899] +18:16:11 [ 35] [ 32] [6213541000541832=491212014183023] +18:16:11 [ 37] [ 12] [507900146870] +18:16:11 [ 38] [ 6] [393355] +18:16:11 [ 39] [ 2] [00] +18:16:11 [ 41] [ 8] [03020005] +18:16:11 [ 49] [ 3] [418] +18:16:11 [ 54] [ 40] [0001764C0004185915550002764C000418591555] +18:16:11 ============================================================================ +18:16:11 Calculate Source COMM Id = 4 +18:16:11 ============================================================================ +18:16:11 + + +waiting on router queue for slot.... +18:16:12 ============================================================================ +18:16:12 Slot Id : <381> +18:16:12 Transaction Type : RESPONSE +18:16:12 Received From : +18:16:12 ============================================================================ +18:16:12 FNo. Len. Field Value +18:16:12 ============================================================================ +18:16:12 [ 1] [ 4] [0210] +18:16:12 [ 2] [ 16] [6688990107476101] +18:16:12 [ 3] [ 6] [010000] +18:16:12 [ 4] [ 12] [000200000000] +18:16:12 [ 7] [ 10] [0320111516] +18:16:12 [ 11] [ 6] [271146] +18:16:12 [ 12] [ 6] [181516] +18:16:12 [ 13] [ 4] [0320] +18:16:12 [ 15] [ 4] [0320] +18:16:12 [ 18] [ 4] [6011] +18:16:12 [ 19] [ 3] [418] +18:16:12 [ 22] [ 3] [021] +18:16:12 [ 32] [ 6] [180893] +18:16:12 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:16:12 [ 37] [ 12] [507911271146] +18:16:12 [ 39] [ 2] [61] +18:16:12 [ 41] [ 8] [0262PSLB] +18:16:12 [ 49] [ 3] [418] +18:16:12 ============================================================================ +18:16:12 Calculate Source COMM Id = 2 +18:16:12 ============================================================================ +18:16:12 + + +waiting on router queue for slot.... +18:16:18 ============================================================================ +18:16:18 Slot Id : <420> +18:16:18 Transaction Type : REQUEST +18:16:18 Received From : +18:16:18 ============================================================================ +18:16:18 FNo. Len. Field Value +18:16:18 ============================================================================ +18:16:18 [ 1] [ 4] [0800] +18:16:18 [ 7] [ 10] [0321012806] +18:16:18 [ 11] [ 6] [182806] +18:16:18 [ 37] [ 12] [57918182806] +18:16:18 [ 70] [ 3] [301] +18:16:18 ============================================================================ +18:16:18 + + +waiting on router queue for slot.... +18:16:18 Sending to : +18:16:18 ============================================================================ +18:16:18 ============================================================================ +18:16:18 Slot Id : <420> +18:16:18 Transaction Type : RESPONSE +18:16:18 Received From : +18:16:18 ============================================================================ +18:16:18 FNo. Len. Field Value +18:16:18 ============================================================================ +18:16:18 [ 1] [ 4] [0810] +18:16:18 [ 7] [ 10] [0321012806] +18:16:18 [ 11] [ 6] [182806] +18:16:18 [ 37] [ 12] [579181828060] +18:16:18 [ 39] [ 2] [00] +18:16:18 [ 70] [ 3] [810] +18:16:18 ============================================================================ +18:16:18 Calculate Source COMM Id = 6 +18:16:18 ============================================================================ +18:16:18 + + +waiting on router queue for slot.... +18:16:21 ============================================================================ +18:16:21 Slot Id : <415> +18:16:21 Transaction Type : REQUEST +18:16:21 Received From : +18:16:21 ============================================================================ +18:16:21 FNo. Len. Field Value +18:16:21 ============================================================================ +18:16:21 [ 1] [ 4] [0200] +18:16:21 [ 2] [ 16] [6688990107031401] +18:16:21 [ 3] [ 6] [300000] +18:16:21 [ 4] [ 12] [000000000000] +18:16:21 [ 7] [ 10] [0320181616] +18:16:21 [ 11] [ 6] [825604] +18:16:21 [ 12] [ 6] [181616] +18:16:21 [ 13] [ 4] [0320] +18:16:21 [ 15] [ 4] [0320] +18:16:21 [ 18] [ 4] [6011] +18:16:21 [ 22] [ 3] [900] +18:16:21 [ 25] [ 2] [02] +18:16:21 [ 28] [ 9] [D00000000] +18:16:21 [ 32] [ 6] [621354] +18:16:21 [ 35] [ 37] [6688990107031401=44011231140181600000] +18:16:21 [ 37] [ 12] [507903444153] +18:16:21 [ 41] [ 8] [06001700] +18:16:21 [ 42] [ 15] [NATIVE ] +18:16:21 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +18:16:21 [ 49] [ 3] [418] +18:16:21 [ 52] [ 16] [264C9242F1C64F0C] +18:16:21 ============================================================================ +18:16:21 + + +waiting on router queue for slot.... +18:16:21 Sending to : +18:16:21 ============================================================================ +18:16:21 Sending to : +18:16:21 ============================================================================ +18:16:21 ============================================================================ +18:16:21 Slot Id : <415> +18:16:21 Transaction Type : REQUEST +18:16:21 Received From : +18:16:21 ============================================================================ +18:16:21 FNo. Len. Field Value +18:16:21 ============================================================================ +18:16:21 [ 1] [ 4] [0200] +18:16:21 [ 2] [ 16] [6688990107031401] +18:16:21 [ 3] [ 6] [300000] +18:16:21 [ 4] [ 12] [000000000000] +18:16:21 [ 7] [ 10] [0320181616] +18:16:21 [ 11] [ 6] [825604] +18:16:21 [ 12] [ 6] [181616] +18:16:21 [ 13] [ 4] [0320] +18:16:21 [ 15] [ 4] [0320] +18:16:21 [ 18] [ 4] [6011] +18:16:21 [ 22] [ 3] [900] +18:16:21 [ 25] [ 2] [02] +18:16:21 [ 28] [ 9] [D00000000] +18:16:21 [ 32] [ 6] [621354] +18:16:21 [ 35] [ 37] [6688990107031401=44011231140181600000] +18:16:21 [ 37] [ 12] [507903444153] +18:16:21 [ 41] [ 8] [06001700] +18:16:21 [ 42] [ 15] [NATIVE ] +18:16:21 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +18:16:21 [ 49] [ 3] [418] +18:16:21 [ 52] [ 16] [264C9242F1C64F0C] +18:16:21 ============================================================================ +18:16:21 + + +waiting on router queue for slot.... +18:16:21 Sending to : +18:16:21 ============================================================================ +18:16:21 ============================================================================ +18:16:21 Slot Id : <415> +18:16:21 Transaction Type : REQUEST +18:16:21 Received From : +18:16:21 ============================================================================ +18:16:21 FNo. Len. Field Value +18:16:21 ============================================================================ +18:16:21 [ 1] [ 4] [0200] +18:16:21 [ 2] [ 16] [6688990107031401] +18:16:21 [ 3] [ 6] [300000] +18:16:21 [ 4] [ 12] [000000000000] +18:16:21 [ 7] [ 10] [0320181616] +18:16:21 [ 11] [ 6] [825604] +18:16:21 [ 12] [ 6] [181616] +18:16:21 [ 13] [ 4] [0320] +18:16:21 [ 15] [ 4] [0320] +18:16:21 [ 18] [ 4] [6011] +18:16:21 [ 22] [ 3] [900] +18:16:21 [ 25] [ 2] [02] +18:16:21 [ 28] [ 9] [D00000000] +18:16:21 [ 32] [ 6] [621354] +18:16:21 [ 35] [ 37] [6688990107031401=44011231140181600000] +18:16:21 [ 37] [ 12] [507903444153] +18:16:21 [ 41] [ 8] [06001700] +18:16:21 [ 42] [ 15] [NATIVE ] +18:16:21 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +18:16:21 [ 49] [ 3] [418] +18:16:21 [ 52] [ 16] [351386129567F346] +18:16:21 ============================================================================ +18:16:21 + + +waiting on router queue for slot.... +18:16:21 Sending to : <4> +18:16:21 ============================================================================ +18:16:22 ============================================================================ +18:16:22 Slot Id : <415> +18:16:22 Transaction Type : RESPONSE +18:16:22 Received From : +18:16:22 ============================================================================ +18:16:22 FNo. Len. Field Value +18:16:22 ============================================================================ +18:16:22 [ 1] [ 4] [0210] +18:16:22 [ 2] [ 16] [6688990107031401] +18:16:22 [ 3] [ 6] [300000] +18:16:22 [ 4] [ 12] [000000000000] +18:16:22 [ 11] [ 6] [825604] +18:16:22 [ 12] [ 6] [181616] +18:16:22 [ 15] [ 4] [0320] +18:16:22 [ 18] [ 4] [6011] +18:16:22 [ 32] [ 6] [621354] +18:16:22 [ 35] [ 37] [6688990107031401=44011231140181600000] +18:16:22 [ 37] [ 12] [507903444153] +18:16:22 [ 38] [ 6] [271149] +18:16:22 [ 39] [ 2] [00] +18:16:22 [ 41] [ 8] [06001700] +18:16:22 [ 49] [ 3] [418] +18:16:22 [ 54] [ 20] [0002418C000099444914] +18:16:22 ============================================================================ +18:16:22 Sending to : +18:16:22 ============================================================================ +18:16:22 + + +waiting on router queue for slot.... +18:16:22 ============================================================================ +18:16:22 Slot Id : <398> +18:16:22 Transaction Type : REQUEST +18:16:22 Received From : +18:16:22 ============================================================================ +18:16:22 FNo. Len. Field Value +18:16:22 ============================================================================ +18:16:22 [ 1] [ 4] [0800] +18:16:22 [ 7] [ 10] [0320111412] +18:16:22 [ 11] [ 6] [033674] +18:16:22 [ 37] [ 12] [57918033674] +18:16:22 [ 70] [ 3] [301] +18:16:22 ============================================================================ +18:16:22 + + +waiting on router queue for slot.... +18:16:22 Sending to : +18:16:22 ============================================================================ +18:16:22 ============================================================================ +18:16:22 Slot Id : <398> +18:16:22 Transaction Type : RESPONSE +18:16:22 Received From : +18:16:22 ============================================================================ +18:16:22 FNo. Len. Field Value +18:16:22 ============================================================================ +18:16:22 [ 1] [ 4] [0810] +18:16:22 [ 7] [ 10] [0320111412] +18:16:22 [ 11] [ 6] [033674] +18:16:22 [ 37] [ 12] [579180336740] +18:16:22 [ 39] [ 2] [00] +18:16:22 [ 70] [ 3] [810] +18:16:22 ============================================================================ +18:16:22 Calculate Source COMM Id = 4 +18:16:22 ============================================================================ +18:16:22 + + +waiting on router queue for slot.... +18:16:23 ============================================================================ +18:16:23 Slot Id : <415> +18:16:23 Transaction Type : RESPONSE +18:16:23 Received From : +18:16:23 ============================================================================ +18:16:23 FNo. Len. Field Value +18:16:23 ============================================================================ +18:16:23 [ 1] [ 4] [0210] +18:16:23 [ 2] [ 16] [6688990107031401] +18:16:23 [ 3] [ 6] [300000] +18:16:23 [ 4] [ 12] [000000000000] +18:16:23 [ 11] [ 6] [825604] +18:16:23 [ 12] [ 6] [181616] +18:16:23 [ 15] [ 4] [0320] +18:16:23 [ 18] [ 4] [6011] +18:16:23 [ 32] [ 6] [621354] +18:16:23 [ 35] [ 37] [6688990107031401=44011231140181600000] +18:16:23 [ 37] [ 12] [507903444153] +18:16:23 [ 38] [ 6] [271149] +18:16:23 [ 39] [ 2] [00] +18:16:23 [ 41] [ 8] [06001700] +18:16:23 [ 49] [ 3] [418] +18:16:23 [ 54] [ 20] [0002418C000099444914] +18:16:23 ============================================================================ +18:16:23 Calculate Source COMM Id = 0 +18:16:23 ============================================================================ +18:16:23 + + +waiting on router queue for slot.... +18:16:24 ============================================================================ +18:16:24 Slot Id : <409> +18:16:24 Transaction Type : REQUEST +18:16:24 Received From : +18:16:24 ============================================================================ +18:16:24 FNo. Len. Field Value +18:16:24 ============================================================================ +18:16:24 [ 1] [ 4] [0800] +18:16:24 [ 7] [ 10] [0320111530] +18:16:24 [ 11] [ 6] [157662] +18:16:24 [ 70] [ 3] [301] +18:16:24 ============================================================================ +18:16:24 + + +waiting on router queue for slot.... +18:16:24 Sending to : +18:16:24 ============================================================================ +18:16:24 ============================================================================ +18:16:24 Slot Id : <409> +18:16:24 Transaction Type : RESPONSE +18:16:24 Received From : +18:16:24 ============================================================================ +18:16:24 FNo. Len. Field Value +18:16:24 ============================================================================ +18:16:24 [ 1] [ 4] [0810] +18:16:24 [ 7] [ 10] [0320111530] +18:16:24 [ 11] [ 6] [157662] +18:16:24 [ 39] [ 2] [00] +18:16:24 [ 70] [ 3] [301] +18:16:24 ============================================================================ +18:16:24 Calculate Source COMM Id = 2 +18:16:24 ============================================================================ +18:16:24 + + +waiting on router queue for slot.... +18:16:26 ============================================================================ +18:16:26 Slot Id : <364> +18:16:26 Transaction Type : REQUEST +18:16:26 Received From : +18:16:26 ============================================================================ +18:16:26 FNo. Len. Field Value +18:16:26 ============================================================================ +18:16:26 [ 1] [ 4] [0200] +18:16:26 [ 2] [ 16] [1808930600018113] +18:16:26 [ 3] [ 6] [011000] +18:16:26 [ 4] [ 12] [000100000000] +18:16:26 [ 7] [ 10] [0320182411] +18:16:26 [ 11] [ 6] [009305] +18:16:26 [ 12] [ 6] [182411] +18:16:26 [ 13] [ 4] [0320] +18:16:26 [ 14] [ 4] [1803] +18:16:26 [ 15] [ 4] [0320] +18:16:26 [ 18] [ 4] [6011] +18:16:26 [ 22] [ 3] [900] +18:16:26 [ 25] [ 2] [02] +18:16:26 [ 28] [ 9] [D00002000] +18:16:26 [ 32] [ 6] [220699] +18:16:26 [ 35] [ 27] [1808930600018113=1803500944] +18:16:26 [ 37] [ 12] [507900213263] +18:16:26 [ 41] [ 8] [05000100] +18:16:26 [ 42] [ 15] [APTRA ] +18:16:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:16:26 [ 49] [ 3] [418] +18:16:26 [ 52] [ 16] [496C81B096D639E5] +18:16:26 ============================================================================ +18:16:26 + + +waiting on router queue for slot.... +18:16:26 Sending to : +18:16:26 ============================================================================ +18:16:26 Sending to : +18:16:26 ============================================================================ +18:16:27 ============================================================================ +18:16:27 Slot Id : <364> +18:16:27 Transaction Type : REQUEST +18:16:27 Received From : +18:16:27 ============================================================================ +18:16:27 FNo. Len. Field Value +18:16:27 ============================================================================ +18:16:27 [ 1] [ 4] [0200] +18:16:27 [ 2] [ 16] [1808930600018113] +18:16:27 [ 3] [ 6] [011000] +18:16:27 [ 4] [ 12] [000100000000] +18:16:27 [ 7] [ 10] [0320182411] +18:16:27 [ 11] [ 6] [009305] +18:16:27 [ 12] [ 6] [182411] +18:16:27 [ 13] [ 4] [0320] +18:16:27 [ 14] [ 4] [1803] +18:16:27 [ 15] [ 4] [0320] +18:16:27 [ 18] [ 4] [6011] +18:16:27 [ 22] [ 3] [900] +18:16:27 [ 25] [ 2] [02] +18:16:27 [ 28] [ 9] [D00002000] +18:16:27 [ 32] [ 6] [220699] +18:16:27 [ 35] [ 27] [1808930600018113=1803500944] +18:16:27 [ 37] [ 12] [507900213263] +18:16:27 [ 41] [ 8] [05000100] +18:16:27 [ 42] [ 15] [APTRA ] +18:16:27 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:16:27 [ 49] [ 3] [418] +18:16:27 [ 52] [ 16] [496C81B096D639E5] +18:16:27 ============================================================================ +18:16:27 + + +waiting on router queue for slot.... +18:16:27 Sending to : +18:16:27 ============================================================================ +18:16:27 ============================================================================ +18:16:27 Slot Id : <364> +18:16:27 Transaction Type : REQUEST +18:16:27 Received From : +18:16:27 ============================================================================ +18:16:27 FNo. Len. Field Value +18:16:27 ============================================================================ +18:16:27 [ 1] [ 4] [0200] +18:16:27 [ 2] [ 16] [1808930600018113] +18:16:27 [ 3] [ 6] [011000] +18:16:27 [ 4] [ 12] [000100000000] +18:16:27 [ 7] [ 10] [0320182411] +18:16:27 [ 11] [ 6] [009305] +18:16:27 [ 12] [ 6] [182411] +18:16:27 [ 13] [ 4] [0320] +18:16:27 [ 14] [ 4] [1803] +18:16:27 [ 15] [ 4] [0320] +18:16:27 [ 18] [ 4] [6011] +18:16:27 [ 22] [ 3] [900] +18:16:27 [ 25] [ 2] [02] +18:16:27 [ 28] [ 9] [D00002000] +18:16:27 [ 32] [ 6] [220699] +18:16:27 [ 35] [ 27] [1808930600018113=1803500944] +18:16:27 [ 37] [ 12] [507900213263] +18:16:27 [ 41] [ 8] [05000100] +18:16:27 [ 42] [ 15] [APTRA ] +18:16:27 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:16:27 [ 49] [ 3] [418] +18:16:27 [ 52] [ 16] [87554B2A45D4B4FE] +18:16:27 ============================================================================ +18:16:27 + + +waiting on router queue for slot.... +18:16:27 Sending to : <2> +18:16:27 ============================================================================ +18:16:28 ============================================================================ +18:16:28 Slot Id : <425> +18:16:28 Transaction Type : REQUEST +18:16:28 Received From : +18:16:28 ============================================================================ +18:16:28 FNo. Len. Field Value +18:16:28 ============================================================================ +18:16:28 [ 1] [ 4] [0200] +18:16:28 [ 2] [ 16] [6688990602722306] +18:16:28 [ 3] [ 6] [010000] +18:16:28 [ 4] [ 12] [000100000000] +18:16:28 [ 7] [ 10] [0320111535] +18:16:28 [ 11] [ 6] [271150] +18:16:28 [ 12] [ 6] [181535] +18:16:28 [ 13] [ 4] [0320] +18:16:28 [ 14] [ 4] [4310] +18:16:28 [ 15] [ 4] [0320] +18:16:28 [ 18] [ 4] [6011] +18:16:28 [ 19] [ 3] [418] +18:16:28 [ 22] [ 3] [021] +18:16:28 [ 25] [ 2] [01] +18:16:28 [ 28] [ 9] [D00002000] +18:16:28 [ 32] [ 6] [180893] +18:16:28 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:16:28 [ 37] [ 12] [507911271150] +18:16:28 [ 41] [ 8] [0201ADD1] +18:16:28 [ 42] [ 15] [999999 ] +18:16:28 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +18:16:28 [ 49] [ 3] [418] +18:16:28 [ 52] [ 16] [8F06EB2BCA2A3F39] +18:16:28 ============================================================================ +18:16:28 + + +waiting on router queue for slot.... +18:16:28 Sending to : +18:16:28 ============================================================================ +18:16:28 Sending to : +18:16:28 ============================================================================ +18:16:29 ============================================================================ +18:16:29 Slot Id : <425> +18:16:29 Transaction Type : REQUEST +18:16:29 Received From : +18:16:29 ============================================================================ +18:16:29 FNo. Len. Field Value +18:16:29 ============================================================================ +18:16:29 [ 1] [ 4] [0200] +18:16:29 [ 2] [ 16] [6688990602722306] +18:16:29 [ 3] [ 6] [010000] +18:16:29 [ 4] [ 12] [000100000000] +18:16:29 [ 7] [ 10] [0320111535] +18:16:29 [ 11] [ 6] [271150] +18:16:29 [ 12] [ 6] [181535] +18:16:29 [ 13] [ 4] [0320] +18:16:29 [ 14] [ 4] [4310] +18:16:29 [ 15] [ 4] [0320] +18:16:29 [ 18] [ 4] [6011] +18:16:29 [ 19] [ 3] [418] +18:16:29 [ 22] [ 3] [021] +18:16:29 [ 25] [ 2] [01] +18:16:29 [ 28] [ 9] [D00002000] +18:16:29 [ 32] [ 6] [180893] +18:16:29 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:16:29 [ 37] [ 12] [507911271150] +18:16:29 [ 41] [ 8] [0201ADD1] +18:16:29 [ 42] [ 15] [999999 ] +18:16:29 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +18:16:29 [ 49] [ 3] [418] +18:16:29 [ 52] [ 16] [8F06EB2BCA2A3F39] +18:16:29 ============================================================================ +18:16:29 + + +waiting on router queue for slot.... +18:16:29 Sending to : +18:16:29 ============================================================================ +18:16:29 ============================================================================ +18:16:29 Slot Id : <425> +18:16:29 Transaction Type : REQUEST +18:16:29 Received From : +18:16:29 ============================================================================ +18:16:29 FNo. Len. Field Value +18:16:29 ============================================================================ +18:16:29 [ 1] [ 4] [0200] +18:16:29 [ 2] [ 16] [6688990602722306] +18:16:29 [ 3] [ 6] [010000] +18:16:29 [ 4] [ 12] [000100000000] +18:16:29 [ 7] [ 10] [0320111535] +18:16:29 [ 11] [ 6] [271150] +18:16:29 [ 12] [ 6] [181535] +18:16:29 [ 13] [ 4] [0320] +18:16:29 [ 14] [ 4] [4310] +18:16:29 [ 15] [ 4] [0320] +18:16:29 [ 18] [ 4] [6011] +18:16:29 [ 19] [ 3] [418] +18:16:29 [ 22] [ 3] [021] +18:16:29 [ 25] [ 2] [01] +18:16:29 [ 28] [ 9] [D00002000] +18:16:29 [ 32] [ 6] [180893] +18:16:29 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:16:29 [ 37] [ 12] [507911271150] +18:16:29 [ 41] [ 8] [0201ADD1] +18:16:29 [ 42] [ 15] [999999 ] +18:16:29 [ 43] [ 40] [ATM HUAPHAN ADD SERVICE UNIT LOCATION, A] +18:16:29 [ 49] [ 3] [418] +18:16:29 [ 52] [ 16] [F4A7998F0ED3D918] +18:16:29 ============================================================================ +18:16:29 + + +waiting on router queue for slot.... +18:16:29 Sending to : <0> +18:16:29 ============================================================================ +18:16:29 ============================================================================ +18:16:29 Slot Id : <425> +18:16:29 Transaction Type : RESPONSE +18:16:29 Received From : +18:16:29 ============================================================================ +18:16:29 FNo. Len. Field Value +18:16:29 ============================================================================ +18:16:29 [ 1] [ 4] [0210] +18:16:29 [ 2] [ 16] [6688990602722306] +18:16:29 [ 3] [ 6] [010000] +18:16:29 [ 4] [ 12] [000100000000] +18:16:29 [ 7] [ 10] [0320111535] +18:16:29 [ 11] [ 6] [271150] +18:16:29 [ 12] [ 6] [181535] +18:16:29 [ 13] [ 4] [0320] +18:16:29 [ 15] [ 4] [0320] +18:16:29 [ 18] [ 4] [6011] +18:16:29 [ 19] [ 3] [418] +18:16:29 [ 22] [ 3] [021] +18:16:29 [ 32] [ 6] [180893] +18:16:29 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:16:29 [ 37] [ 12] [507911271150] +18:16:29 [ 39] [ 2] [14] +18:16:29 [ 41] [ 8] [0201ADD1] +18:16:29 [ 49] [ 3] [418] +18:16:29 ============================================================================ +18:16:29 Sending to : +18:16:29 ============================================================================ +18:16:29 + + +waiting on router queue for slot.... +18:16:30 ============================================================================ +18:16:30 Slot Id : <425> +18:16:30 Transaction Type : RESPONSE +18:16:30 Received From : +18:16:30 ============================================================================ +18:16:30 FNo. Len. Field Value +18:16:30 ============================================================================ +18:16:30 [ 1] [ 4] [0210] +18:16:30 [ 2] [ 16] [6688990602722306] +18:16:30 [ 3] [ 6] [010000] +18:16:30 [ 4] [ 12] [000100000000] +18:16:30 [ 7] [ 10] [0320111535] +18:16:30 [ 11] [ 6] [271150] +18:16:30 [ 12] [ 6] [181535] +18:16:30 [ 13] [ 4] [0320] +18:16:30 [ 15] [ 4] [0320] +18:16:30 [ 18] [ 4] [6011] +18:16:30 [ 19] [ 3] [418] +18:16:30 [ 22] [ 3] [021] +18:16:30 [ 32] [ 6] [180893] +18:16:30 [ 35] [ 37] [6688990602722306=43100061230617100000] +18:16:30 [ 37] [ 12] [507911271150] +18:16:30 [ 39] [ 2] [14] +18:16:30 [ 41] [ 8] [0201ADD1] +18:16:30 [ 49] [ 3] [418] +18:16:30 ============================================================================ +18:16:30 Calculate Source COMM Id = 2 +18:16:30 ============================================================================ +18:16:30 + + +waiting on router queue for slot.... +18:16:31 ============================================================================ +18:16:31 Slot Id : <364> +18:16:31 Transaction Type : RESPONSE +18:16:31 Received From : +18:16:31 ============================================================================ +18:16:31 FNo. Len. Field Value +18:16:31 ============================================================================ +18:16:31 [ 1] [ 4] [0210] +18:16:31 [ 2] [ 16] [1808930600018113] +18:16:31 [ 3] [ 6] [011000] +18:16:31 [ 4] [ 12] [000100000000] +18:16:31 [ 6] [ 12] [000100000000] +18:16:31 [ 7] [ 10] [0320182411] +18:16:31 [ 11] [ 6] [009305] +18:16:31 [ 12] [ 6] [182411] +18:16:31 [ 13] [ 4] [0320] +18:16:31 [ 14] [ 4] [1803] +18:16:31 [ 18] [ 4] [6011] +18:16:31 [ 19] [ 3] [418] +18:16:31 [ 22] [ 3] [021] +18:16:31 [ 32] [ 6] [220699] +18:16:31 [ 35] [ 27] [1808930600018113=1803500944] +18:16:31 [ 37] [ 12] [507900213263] +18:16:31 [ 38] [ 6] [009305] +18:16:31 [ 39] [ 2] [00] +18:16:31 [ 41] [ 8] [05000100] +18:16:31 [ 49] [ 3] [418] +18:16:31 [ 52] [ 16] [87554B2A45D4B4FE] +18:16:31 [ 54] [ 20] [1001418C000118902700] +18:16:31 ============================================================================ +18:16:31 Sending to : +18:16:31 ============================================================================ +18:16:31 + + +waiting on router queue for slot.... +18:16:32 ============================================================================ +18:16:32 Slot Id : <364> +18:16:32 Transaction Type : RESPONSE +18:16:32 Received From : +18:16:32 ============================================================================ +18:16:32 FNo. Len. Field Value +18:16:32 ============================================================================ +18:16:32 [ 1] [ 4] [0210] +18:16:32 [ 2] [ 16] [1808930600018113] +18:16:32 [ 3] [ 6] [011000] +18:16:32 [ 4] [ 12] [000100000000] +18:16:32 [ 6] [ 12] [000100000000] +18:16:32 [ 7] [ 10] [0320182411] +18:16:32 [ 11] [ 6] [009305] +18:16:32 [ 12] [ 6] [182411] +18:16:32 [ 13] [ 4] [0320] +18:16:32 [ 14] [ 4] [1803] +18:16:32 [ 18] [ 4] [6011] +18:16:32 [ 19] [ 3] [418] +18:16:32 [ 22] [ 3] [021] +18:16:32 [ 32] [ 6] [220699] +18:16:32 [ 35] [ 27] [1808930600018113=1803500944] +18:16:32 [ 37] [ 12] [507900213263] +18:16:32 [ 38] [ 6] [009305] +18:16:32 [ 39] [ 2] [00] +18:16:32 [ 41] [ 8] [05000100] +18:16:32 [ 49] [ 3] [418] +18:16:32 [ 52] [ 16] [87554B2A45D4B4FE] +18:16:32 [ 54] [ 20] [1001418C000118902700] +18:16:32 ============================================================================ +18:16:32 Calculate Source COMM Id = 1 +18:16:32 ============================================================================ +18:16:32 + + +waiting on router queue for slot.... +18:16:37 ============================================================================ +18:16:37 Slot Id : <388> +18:16:37 Transaction Type : REQUEST +18:16:37 Received From : +18:16:37 ============================================================================ +18:16:37 FNo. Len. Field Value +18:16:37 ============================================================================ +18:16:37 [ 1] [ 4] [0200] +18:16:37 [ 2] [ 16] [6688990107476101] +18:16:37 [ 3] [ 6] [010000] +18:16:37 [ 4] [ 12] [000200000000] +18:16:37 [ 7] [ 10] [0320111544] +18:16:37 [ 11] [ 6] [271152] +18:16:37 [ 12] [ 6] [181544] +18:16:37 [ 13] [ 4] [0320] +18:16:37 [ 14] [ 4] [4403] +18:16:37 [ 15] [ 4] [0320] +18:16:37 [ 18] [ 4] [6011] +18:16:37 [ 19] [ 3] [418] +18:16:37 [ 22] [ 3] [021] +18:16:37 [ 25] [ 2] [01] +18:16:37 [ 28] [ 9] [D00002000] +18:16:37 [ 32] [ 6] [180893] +18:16:37 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:16:37 [ 37] [ 12] [507911271152] +18:16:37 [ 41] [ 8] [0262PSLB] +18:16:37 [ 42] [ 15] [999999 ] +18:16:37 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +18:16:37 [ 49] [ 3] [418] +18:16:37 [ 52] [ 16] [0A42ACE4CBB6BEC3] +18:16:37 ============================================================================ +18:16:37 + + +waiting on router queue for slot.... +18:16:37 Sending to : +18:16:37 ============================================================================ +18:16:37 Sending to : +18:16:37 ============================================================================ +18:16:38 ============================================================================ +18:16:38 Slot Id : <388> +18:16:38 Transaction Type : REQUEST +18:16:38 Received From : +18:16:38 ============================================================================ +18:16:38 FNo. Len. Field Value +18:16:38 ============================================================================ +18:16:38 [ 1] [ 4] [0200] +18:16:38 [ 2] [ 16] [6688990107476101] +18:16:38 [ 3] [ 6] [010000] +18:16:38 [ 4] [ 12] [000200000000] +18:16:38 [ 7] [ 10] [0320111544] +18:16:38 [ 11] [ 6] [271152] +18:16:38 [ 12] [ 6] [181544] +18:16:38 [ 13] [ 4] [0320] +18:16:38 [ 14] [ 4] [4403] +18:16:38 [ 15] [ 4] [0320] +18:16:38 [ 18] [ 4] [6011] +18:16:38 [ 19] [ 3] [418] +18:16:38 [ 22] [ 3] [021] +18:16:38 [ 25] [ 2] [01] +18:16:38 [ 28] [ 9] [D00002000] +18:16:38 [ 32] [ 6] [180893] +18:16:38 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:16:38 [ 37] [ 12] [507911271152] +18:16:38 [ 41] [ 8] [0262PSLB] +18:16:38 [ 42] [ 15] [999999 ] +18:16:38 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +18:16:38 [ 49] [ 3] [418] +18:16:38 [ 52] [ 16] [0A42ACE4CBB6BEC3] +18:16:38 ============================================================================ +18:16:38 + + +waiting on router queue for slot.... +18:16:38 Sending to : +18:16:38 ============================================================================ +18:16:38 ============================================================================ +18:16:38 Slot Id : <388> +18:16:38 Transaction Type : REQUEST +18:16:38 Received From : +18:16:38 ============================================================================ +18:16:38 FNo. Len. Field Value +18:16:38 ============================================================================ +18:16:38 [ 1] [ 4] [0200] +18:16:38 [ 2] [ 16] [6688990107476101] +18:16:38 [ 3] [ 6] [010000] +18:16:38 [ 4] [ 12] [000200000000] +18:16:38 [ 7] [ 10] [0320111544] +18:16:38 [ 11] [ 6] [271152] +18:16:38 [ 12] [ 6] [181544] +18:16:38 [ 13] [ 4] [0320] +18:16:38 [ 14] [ 4] [4403] +18:16:38 [ 15] [ 4] [0320] +18:16:38 [ 18] [ 4] [6011] +18:16:38 [ 19] [ 3] [418] +18:16:38 [ 22] [ 3] [021] +18:16:38 [ 25] [ 2] [01] +18:16:38 [ 28] [ 9] [D00002000] +18:16:38 [ 32] [ 6] [180893] +18:16:38 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:16:38 [ 37] [ 12] [507911271152] +18:16:38 [ 41] [ 8] [0262PSLB] +18:16:38 [ 42] [ 15] [999999 ] +18:16:38 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +18:16:38 [ 49] [ 3] [418] +18:16:38 [ 52] [ 16] [914B2E47AB349A58] +18:16:38 ============================================================================ +18:16:38 + + +waiting on router queue for slot.... +18:16:38 Sending to : <0> +18:16:38 ============================================================================ +18:16:38 ============================================================================ +18:16:38 Slot Id : <388> +18:16:38 Transaction Type : RESPONSE +18:16:38 Received From : +18:16:38 ============================================================================ +18:16:38 FNo. Len. Field Value +18:16:38 ============================================================================ +18:16:38 [ 1] [ 4] [0210] +18:16:38 [ 2] [ 16] [6688990107476101] +18:16:38 [ 3] [ 6] [010000] +18:16:38 [ 4] [ 12] [000200000000] +18:16:38 [ 7] [ 10] [0320111544] +18:16:38 [ 11] [ 6] [271152] +18:16:38 [ 12] [ 6] [181544] +18:16:38 [ 13] [ 4] [0320] +18:16:38 [ 15] [ 4] [0320] +18:16:38 [ 18] [ 4] [6011] +18:16:38 [ 19] [ 3] [418] +18:16:38 [ 22] [ 3] [021] +18:16:38 [ 32] [ 6] [180893] +18:16:38 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:16:38 [ 37] [ 12] [507911271152] +18:16:38 [ 39] [ 2] [61] +18:16:38 [ 41] [ 8] [0262PSLB] +18:16:38 [ 49] [ 3] [418] +18:16:38 ============================================================================ +18:16:38 Sending to : +18:16:38 ============================================================================ +18:16:38 + + +waiting on router queue for slot.... +18:16:39 ============================================================================ +18:16:39 Slot Id : <388> +18:16:39 Transaction Type : RESPONSE +18:16:39 Received From : +18:16:39 ============================================================================ +18:16:39 FNo. Len. Field Value +18:16:39 ============================================================================ +18:16:39 [ 1] [ 4] [0210] +18:16:39 [ 2] [ 16] [6688990107476101] +18:16:39 [ 3] [ 6] [010000] +18:16:39 [ 4] [ 12] [000200000000] +18:16:39 [ 7] [ 10] [0320111544] +18:16:39 [ 11] [ 6] [271152] +18:16:39 [ 12] [ 6] [181544] +18:16:39 [ 13] [ 4] [0320] +18:16:39 [ 15] [ 4] [0320] +18:16:39 [ 18] [ 4] [6011] +18:16:39 [ 19] [ 3] [418] +18:16:39 [ 22] [ 3] [021] +18:16:39 [ 32] [ 6] [180893] +18:16:39 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:16:39 [ 37] [ 12] [507911271152] +18:16:39 [ 39] [ 2] [61] +18:16:39 [ 41] [ 8] [0262PSLB] +18:16:39 [ 49] [ 3] [418] +18:16:39 ============================================================================ +18:16:39 Calculate Source COMM Id = 2 +18:16:39 ============================================================================ +18:16:39 + + +waiting on router queue for slot.... +18:16:50 ============================================================================ +18:16:50 Slot Id : <367> +18:16:50 Transaction Type : REQUEST +18:16:50 Received From : +18:16:50 ============================================================================ +18:16:50 FNo. Len. Field Value +18:16:50 ============================================================================ +18:16:50 [ 1] [ 4] [0800] +18:16:50 [ 7] [ 10] [0320111557] +18:16:50 [ 11] [ 6] [157663] +18:16:50 [ 70] [ 3] [301] +18:16:50 ============================================================================ +18:16:50 + + +waiting on router queue for slot.... +18:16:50 Sending to : +18:16:50 ============================================================================ +18:16:50 ============================================================================ +18:16:50 Slot Id : <367> +18:16:50 Transaction Type : RESPONSE +18:16:50 Received From : +18:16:50 ============================================================================ +18:16:50 FNo. Len. Field Value +18:16:50 ============================================================================ +18:16:50 [ 1] [ 4] [0810] +18:16:50 [ 7] [ 10] [0320111557] +18:16:50 [ 11] [ 6] [157663] +18:16:50 [ 39] [ 2] [00] +18:16:50 [ 70] [ 3] [301] +18:16:50 ============================================================================ +18:16:50 Calculate Source COMM Id = 2 +18:16:50 ============================================================================ +18:16:50 + + +waiting on router queue for slot.... +18:16:55 ============================================================================ +18:16:55 Slot Id : <430> +18:16:55 Transaction Type : REQUEST +18:16:55 Received From : +18:16:55 ============================================================================ +18:16:55 FNo. Len. Field Value +18:16:55 ============================================================================ +18:16:55 [ 1] [ 4] [0200] +18:16:55 [ 2] [ 16] [6213544002278965] +18:16:55 [ 3] [ 6] [011000] +18:16:55 [ 4] [ 12] [000035000000] +18:16:55 [ 7] [ 10] [0320181715] +18:16:55 [ 11] [ 6] [210255] +18:16:55 [ 12] [ 6] [181221] +18:16:55 [ 13] [ 4] [0320] +18:16:55 [ 14] [ 4] [4912] +18:16:55 [ 15] [ 4] [0320] +18:16:55 [ 18] [ 4] [6011] +18:16:55 [ 19] [ 3] [418] +18:16:55 [ 22] [ 3] [021] +18:16:55 [ 25] [ 2] [01] +18:16:55 [ 28] [ 9] [D00002000] +18:16:55 [ 32] [ 6] [198901] +18:16:55 [ 35] [ 32] [6213544002278965=491212017896255] +18:16:55 [ 37] [ 12] [507918210255] +18:16:55 [ 41] [ 8] [19529001] +18:16:55 [ 42] [ 15] [000000041952901] +18:16:55 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +18:16:55 [ 49] [ 3] [418] +18:16:55 [ 52] [ 16] [0B099EBD8FEFCE49] +18:16:55 ============================================================================ +18:16:55 + + +waiting on router queue for slot.... +18:16:55 Sending to : +18:16:55 ============================================================================ +18:16:55 Sending to : +18:16:55 ============================================================================ +18:16:56 ============================================================================ +18:16:56 Slot Id : <430> +18:16:56 Transaction Type : REQUEST +18:16:56 Received From : +18:16:56 ============================================================================ +18:16:56 FNo. Len. Field Value +18:16:56 ============================================================================ +18:16:56 [ 1] [ 4] [0200] +18:16:56 [ 2] [ 16] [6213544002278965] +18:16:56 [ 3] [ 6] [011000] +18:16:56 [ 4] [ 12] [000035000000] +18:16:56 [ 7] [ 10] [0320181715] +18:16:56 [ 11] [ 6] [210255] +18:16:56 [ 12] [ 6] [181221] +18:16:56 [ 13] [ 4] [0320] +18:16:56 [ 14] [ 4] [4912] +18:16:56 [ 15] [ 4] [0320] +18:16:56 [ 18] [ 4] [6011] +18:16:56 [ 19] [ 3] [418] +18:16:56 [ 22] [ 3] [021] +18:16:56 [ 25] [ 2] [01] +18:16:56 [ 28] [ 9] [D00002000] +18:16:56 [ 32] [ 6] [198901] +18:16:56 [ 35] [ 32] [6213544002278965=491212017896255] +18:16:56 [ 37] [ 12] [507918210255] +18:16:56 [ 41] [ 8] [19529001] +18:16:56 [ 42] [ 15] [000000041952901] +18:16:56 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +18:16:56 [ 49] [ 3] [418] +18:16:56 [ 52] [ 16] [0B099EBD8FEFCE49] +18:16:56 ============================================================================ +18:16:56 + + +waiting on router queue for slot.... +18:16:56 Sending to : +18:16:56 ============================================================================ +18:16:56 ============================================================================ +18:16:56 Slot Id : <430> +18:16:56 Transaction Type : REQUEST +18:16:56 Received From : +18:16:56 ============================================================================ +18:16:56 FNo. Len. Field Value +18:16:56 ============================================================================ +18:16:56 [ 1] [ 4] [0200] +18:16:56 [ 2] [ 16] [6213544002278965] +18:16:56 [ 3] [ 6] [011000] +18:16:56 [ 4] [ 12] [000035000000] +18:16:56 [ 7] [ 10] [0320181715] +18:16:56 [ 11] [ 6] [210255] +18:16:56 [ 12] [ 6] [181221] +18:16:56 [ 13] [ 4] [0320] +18:16:56 [ 14] [ 4] [4912] +18:16:56 [ 15] [ 4] [0320] +18:16:56 [ 18] [ 4] [6011] +18:16:56 [ 19] [ 3] [418] +18:16:56 [ 22] [ 3] [021] +18:16:56 [ 25] [ 2] [01] +18:16:56 [ 28] [ 9] [D00002000] +18:16:56 [ 32] [ 6] [198901] +18:16:56 [ 35] [ 32] [6213544002278965=491212017896255] +18:16:56 [ 37] [ 12] [507918210255] +18:16:56 [ 41] [ 8] [19529001] +18:16:56 [ 42] [ 15] [000000041952901] +18:16:56 [ 43] [ 40] [JDB ATM SENO UNIT VN ] +18:16:56 [ 49] [ 3] [418] +18:16:56 [ 52] [ 16] [AD974809B8277BC3] +18:16:56 ============================================================================ +18:16:56 + + +waiting on router queue for slot.... +18:16:56 Sending to : <0> +18:16:56 ============================================================================ +18:16:56 ============================================================================ +18:16:56 Slot Id : <430> +18:16:56 Transaction Type : RESPONSE +18:16:56 Received From : +18:16:56 ============================================================================ +18:16:56 FNo. Len. Field Value +18:16:56 ============================================================================ +18:16:56 [ 1] [ 4] [0210] +18:16:56 [ 2] [ 16] [6213544002278965] +18:16:56 [ 3] [ 6] [011000] +18:16:56 [ 4] [ 12] [000035000000] +18:16:56 [ 7] [ 10] [0320181715] +18:16:56 [ 11] [ 6] [210255] +18:16:56 [ 12] [ 6] [181221] +18:16:56 [ 13] [ 4] [0320] +18:16:56 [ 15] [ 4] [0320] +18:16:56 [ 18] [ 4] [6011] +18:16:56 [ 19] [ 3] [418] +18:16:56 [ 32] [ 6] [198901] +18:16:56 [ 35] [ 32] [6213544002278965=491212017896255] +18:16:56 [ 37] [ 12] [507918210255] +18:16:56 [ 38] [ 6] [971096] +18:16:56 [ 39] [ 2] [00] +18:16:56 [ 41] [ 8] [19529001] +18:16:56 [ 49] [ 3] [418] +18:16:56 [ 54] [ 40] [1001418C0000095572111002418C000009557211] +18:16:56 ============================================================================ +18:16:56 Sending to : +18:16:56 ============================================================================ +18:16:56 + + +waiting on router queue for slot.... +18:16:57 ============================================================================ +18:16:57 Slot Id : <441> +18:16:57 Transaction Type : REQUEST +18:16:57 Received From : +18:16:57 ============================================================================ +18:16:57 FNo. Len. Field Value +18:16:57 ============================================================================ +18:16:57 [ 1] [ 4] [0200] +18:16:57 [ 2] [ 16] [6213545000955892] +18:16:57 [ 3] [ 6] [010000] +18:16:57 [ 4] [ 12] [000010000000] +18:16:57 [ 7] [ 10] [0320111603] +18:16:57 [ 11] [ 6] [271157] +18:16:57 [ 12] [ 6] [181603] +18:16:57 [ 13] [ 4] [0320] +18:16:57 [ 14] [ 4] [4912] +18:16:57 [ 15] [ 4] [0320] +18:16:57 [ 18] [ 4] [6011] +18:16:57 [ 19] [ 3] [418] +18:16:57 [ 22] [ 3] [021] +18:16:57 [ 25] [ 2] [01] +18:16:57 [ 28] [ 9] [D00002000] +18:16:57 [ 32] [ 6] [180893] +18:16:57 [ 35] [ 32] [6213545000955892=491212015589819] +18:16:57 [ 37] [ 12] [507911271157] +18:16:57 [ 41] [ 8] [0367BL20] +18:16:57 [ 42] [ 15] [999999 ] +18:16:57 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +18:16:57 [ 49] [ 3] [418] +18:16:57 [ 52] [ 16] [5B3BA572F748C254] +18:16:57 ============================================================================ +18:16:57 + + +waiting on router queue for slot.... +18:16:57 Sending to : +18:16:57 ============================================================================ +18:16:57 Sending to : +18:16:57 ============================================================================ +18:16:57 ============================================================================ +18:16:57 Slot Id : <441> +18:16:57 Transaction Type : REQUEST +18:16:57 Received From : +18:16:57 ============================================================================ +18:16:57 FNo. Len. Field Value +18:16:57 ============================================================================ +18:16:57 [ 1] [ 4] [0200] +18:16:57 [ 2] [ 16] [6213545000955892] +18:16:57 [ 3] [ 6] [010000] +18:16:57 [ 4] [ 12] [000010000000] +18:16:57 [ 7] [ 10] [0320111603] +18:16:57 [ 11] [ 6] [271157] +18:16:57 [ 12] [ 6] [181603] +18:16:57 [ 13] [ 4] [0320] +18:16:57 [ 14] [ 4] [4912] +18:16:57 [ 15] [ 4] [0320] +18:16:57 [ 18] [ 4] [6011] +18:16:57 [ 19] [ 3] [418] +18:16:57 [ 22] [ 3] [021] +18:16:57 [ 25] [ 2] [01] +18:16:57 [ 28] [ 9] [D00002000] +18:16:57 [ 32] [ 6] [180893] +18:16:57 [ 35] [ 32] [6213545000955892=491212015589819] +18:16:57 [ 37] [ 12] [507911271157] +18:16:57 [ 41] [ 8] [0367BL20] +18:16:57 [ 42] [ 15] [999999 ] +18:16:57 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +18:16:57 [ 49] [ 3] [418] +18:16:57 [ 52] [ 16] [5B3BA572F748C254] +18:16:57 ============================================================================ +18:16:57 + + +waiting on router queue for slot.... +18:16:57 Sending to : +18:16:57 ============================================================================ +18:16:57 ============================================================================ +18:16:57 Slot Id : <441> +18:16:57 Transaction Type : REQUEST +18:16:57 Received From : +18:16:57 ============================================================================ +18:16:57 FNo. Len. Field Value +18:16:57 ============================================================================ +18:16:57 [ 1] [ 4] [0200] +18:16:57 [ 2] [ 16] [6213545000955892] +18:16:57 [ 3] [ 6] [010000] +18:16:57 [ 4] [ 12] [000010000000] +18:16:57 [ 7] [ 10] [0320111603] +18:16:57 [ 11] [ 6] [271157] +18:16:57 [ 12] [ 6] [181603] +18:16:57 [ 13] [ 4] [0320] +18:16:57 [ 14] [ 4] [4912] +18:16:57 [ 15] [ 4] [0320] +18:16:57 [ 18] [ 4] [6011] +18:16:57 [ 19] [ 3] [418] +18:16:57 [ 22] [ 3] [021] +18:16:57 [ 25] [ 2] [01] +18:16:57 [ 28] [ 9] [D00002000] +18:16:57 [ 32] [ 6] [180893] +18:16:57 [ 35] [ 32] [6213545000955892=491212015589819] +18:16:57 [ 37] [ 12] [507911271157] +18:16:57 [ 41] [ 8] [0367BL20] +18:16:57 [ 42] [ 15] [999999 ] +18:16:57 [ 43] [ 40] [ATM KM20 BORLIKHAMXAI LOCATION, Khamkeut] +18:16:57 [ 49] [ 3] [418] +18:16:57 [ 52] [ 16] [30DB78D21DCAD720] +18:16:57 ============================================================================ +18:16:57 + + +waiting on router queue for slot.... +18:16:57 Sending to : <0> +18:16:57 ============================================================================ +18:16:58 ============================================================================ +18:16:58 Slot Id : <430> +18:16:58 Transaction Type : RESPONSE +18:16:58 Received From : +18:16:58 ============================================================================ +18:16:58 FNo. Len. Field Value +18:16:58 ============================================================================ +18:16:58 [ 1] [ 4] [0210] +18:16:58 [ 2] [ 16] [6213544002278965] +18:16:58 [ 3] [ 6] [011000] +18:16:58 [ 4] [ 12] [000035000000] +18:16:58 [ 7] [ 10] [0320181715] +18:16:58 [ 11] [ 6] [210255] +18:16:58 [ 12] [ 6] [181221] +18:16:58 [ 13] [ 4] [0320] +18:16:58 [ 15] [ 4] [0320] +18:16:58 [ 18] [ 4] [6011] +18:16:58 [ 19] [ 3] [418] +18:16:58 [ 32] [ 6] [198901] +18:16:58 [ 35] [ 32] [6213544002278965=491212017896255] +18:16:58 [ 37] [ 12] [507918210255] +18:16:58 [ 38] [ 6] [971096] +18:16:58 [ 39] [ 2] [00] +18:16:58 [ 41] [ 8] [19529001] +18:16:58 [ 49] [ 3] [418] +18:16:58 [ 54] [ 40] [1001418C0000095572111002418C000009557211] +18:16:58 ============================================================================ +18:16:58 Calculate Source COMM Id = 5 +18:16:58 ============================================================================ +18:16:58 + + +waiting on router queue for slot.... +18:16:58 ============================================================================ +18:16:58 Slot Id : <441> +18:16:58 Transaction Type : RESPONSE +18:16:58 Received From : +18:16:58 ============================================================================ +18:16:58 FNo. Len. Field Value +18:16:58 ============================================================================ +18:16:58 [ 1] [ 4] [0210] +18:16:58 [ 2] [ 16] [6213545000955892] +18:16:58 [ 3] [ 6] [010000] +18:16:58 [ 4] [ 12] [000010000000] +18:16:58 [ 7] [ 10] [0320111603] +18:16:58 [ 11] [ 6] [271157] +18:16:58 [ 12] [ 6] [181603] +18:16:58 [ 13] [ 4] [0320] +18:16:58 [ 15] [ 4] [0320] +18:16:58 [ 18] [ 4] [6011] +18:16:58 [ 19] [ 3] [418] +18:16:58 [ 32] [ 6] [180893] +18:16:58 [ 35] [ 32] [6213545000955892=491212015589819] +18:16:58 [ 37] [ 12] [507911271157] +18:16:58 [ 38] [ 6] [271157] +18:16:58 [ 39] [ 2] [51] +18:16:58 [ 41] [ 8] [0367BL20] +18:16:58 [ 49] [ 3] [418] +18:16:58 [ 54] [ 40] [0001418C0000116063380002418C000011606338] +18:16:58 ============================================================================ +18:16:58 Sending to : +18:16:58 ============================================================================ +18:16:58 + + +waiting on router queue for slot.... +18:16:59 ============================================================================ +18:16:59 Slot Id : <441> +18:16:59 Transaction Type : RESPONSE +18:16:59 Received From : +18:16:59 ============================================================================ +18:16:59 FNo. Len. Field Value +18:16:59 ============================================================================ +18:16:59 [ 1] [ 4] [0210] +18:16:59 [ 2] [ 16] [6213545000955892] +18:16:59 [ 3] [ 6] [010000] +18:16:59 [ 4] [ 12] [000010000000] +18:16:59 [ 7] [ 10] [0320111603] +18:16:59 [ 11] [ 6] [271157] +18:16:59 [ 12] [ 6] [181603] +18:16:59 [ 13] [ 4] [0320] +18:16:59 [ 15] [ 4] [0320] +18:16:59 [ 18] [ 4] [6011] +18:16:59 [ 19] [ 3] [418] +18:16:59 [ 32] [ 6] [180893] +18:16:59 [ 35] [ 32] [6213545000955892=491212015589819] +18:16:59 [ 37] [ 12] [507911271157] +18:16:59 [ 38] [ 6] [271157] +18:16:59 [ 39] [ 2] [51] +18:16:59 [ 41] [ 8] [0367BL20] +18:16:59 [ 49] [ 3] [418] +18:16:59 [ 54] [ 40] [0001418C0000116063380002418C000011606338] +18:16:59 ============================================================================ +18:16:59 Calculate Source COMM Id = 2 +18:16:59 ============================================================================ +18:16:59 + + +waiting on router queue for slot.... +18:17:00 ============================================================================ +18:17:00 Slot Id : <437> +18:17:00 Transaction Type : REQUEST +18:17:00 Received From : +18:17:00 ============================================================================ +18:17:00 FNo. Len. Field Value +18:17:00 ============================================================================ +18:17:00 [ 1] [ 4] [0200] +18:17:00 [ 2] [ 16] [6688990040160028] +18:17:00 [ 3] [ 6] [011000] +18:17:00 [ 4] [ 12] [000015000000] +18:17:00 [ 7] [ 10] [0320181655] +18:17:00 [ 11] [ 6] [825717] +18:17:00 [ 12] [ 6] [181655] +18:17:00 [ 13] [ 4] [0320] +18:17:00 [ 15] [ 4] [0320] +18:17:00 [ 18] [ 4] [6011] +18:17:00 [ 22] [ 3] [900] +18:17:00 [ 25] [ 2] [02] +18:17:00 [ 28] [ 9] [D00002000] +18:17:00 [ 32] [ 6] [621354] +18:17:00 [ 35] [ 37] [6688990040160028=98051261570704600000] +18:17:00 [ 37] [ 12] [507903735618] +18:17:00 [ 41] [ 8] [06002300] +18:17:00 [ 42] [ 15] [NATIVE ] +18:17:00 [ 43] [ 40] [ODX BOL Xay LAO] +18:17:00 [ 49] [ 3] [418] +18:17:00 [ 52] [ 16] [B1A25A5CB6759C1E] +18:17:00 ============================================================================ +18:17:00 + + +waiting on router queue for slot.... +18:17:00 Sending to : +18:17:00 ============================================================================ +18:17:00 Sending to : +18:17:00 ============================================================================ +18:17:01 ============================================================================ +18:17:01 Slot Id : <437> +18:17:01 Transaction Type : REQUEST +18:17:01 Received From : +18:17:01 ============================================================================ +18:17:01 FNo. Len. Field Value +18:17:01 ============================================================================ +18:17:01 [ 1] [ 4] [0200] +18:17:01 [ 2] [ 16] [6688990040160028] +18:17:01 [ 3] [ 6] [011000] +18:17:01 [ 4] [ 12] [000015000000] +18:17:01 [ 7] [ 10] [0320181655] +18:17:01 [ 11] [ 6] [825717] +18:17:01 [ 12] [ 6] [181655] +18:17:01 [ 13] [ 4] [0320] +18:17:01 [ 15] [ 4] [0320] +18:17:01 [ 18] [ 4] [6011] +18:17:01 [ 22] [ 3] [900] +18:17:01 [ 25] [ 2] [02] +18:17:01 [ 28] [ 9] [D00002000] +18:17:01 [ 32] [ 6] [621354] +18:17:01 [ 35] [ 37] [6688990040160028=98051261570704600000] +18:17:01 [ 37] [ 12] [507903735618] +18:17:01 [ 41] [ 8] [06002300] +18:17:01 [ 42] [ 15] [NATIVE ] +18:17:01 [ 43] [ 40] [ODX BOL Xay LAO] +18:17:01 [ 49] [ 3] [418] +18:17:01 [ 52] [ 16] [B1A25A5CB6759C1E] +18:17:01 ============================================================================ +18:17:01 + + +waiting on router queue for slot.... +18:17:01 Sending to : +18:17:01 ============================================================================ +18:17:01 ============================================================================ +18:17:01 Slot Id : <437> +18:17:01 Transaction Type : REQUEST +18:17:01 Received From : +18:17:01 ============================================================================ +18:17:01 FNo. Len. Field Value +18:17:01 ============================================================================ +18:17:01 [ 1] [ 4] [0200] +18:17:01 [ 2] [ 16] [6688990040160028] +18:17:01 [ 3] [ 6] [011000] +18:17:01 [ 4] [ 12] [000015000000] +18:17:01 [ 7] [ 10] [0320181655] +18:17:01 [ 11] [ 6] [825717] +18:17:01 [ 12] [ 6] [181655] +18:17:01 [ 13] [ 4] [0320] +18:17:01 [ 15] [ 4] [0320] +18:17:01 [ 18] [ 4] [6011] +18:17:01 [ 22] [ 3] [900] +18:17:01 [ 25] [ 2] [02] +18:17:01 [ 28] [ 9] [D00002000] +18:17:01 [ 32] [ 6] [621354] +18:17:01 [ 35] [ 37] [6688990040160028=98051261570704600000] +18:17:01 [ 37] [ 12] [507903735618] +18:17:01 [ 41] [ 8] [06002300] +18:17:01 [ 42] [ 15] [NATIVE ] +18:17:01 [ 43] [ 40] [ODX BOL Xay LAO] +18:17:01 [ 49] [ 3] [418] +18:17:01 [ 52] [ 16] [D03CC7F1C2B537BD] +18:17:01 ============================================================================ +18:17:01 + + +waiting on router queue for slot.... +18:17:01 Sending to : <4> +18:17:01 ============================================================================ +18:17:01 ============================================================================ +18:17:01 Slot Id : <403> +18:17:01 Transaction Type : REQUEST +18:17:01 Received From : +18:17:01 ============================================================================ +18:17:01 FNo. Len. Field Value +18:17:01 ============================================================================ +18:17:01 [ 1] [ 4] [0800] +18:17:01 [ 2] [ 5] [02531] +18:17:01 [ 3] [ 6] [579188] +18:17:01 [ 7] [ 10] [0320111701] +18:17:01 [ 11] [ 6] [807473] +18:17:01 [ 15] [ 10] [0320111701] +18:17:01 [ 37] [ 11] [57918807473] +18:17:01 [ 70] [ 3] [001] +18:17:01 ============================================================================ +18:17:01 + + +waiting on router queue for slot.... +18:17:01 ============================================================================ +18:17:01 Slot Id : <403> +18:17:01 Transaction Type : RESPONSE +18:17:01 Received From : +18:17:01 ============================================================================ +18:17:01 FNo. Len. Field Value +18:17:01 ============================================================================ +18:17:01 [ 1] [ 4] [0810] +18:17:01 [ 7] [ 10] [0320111701] +18:17:01 [ 11] [ 6] [807473] +18:17:01 [ 15] [ 4] [0320] +18:17:01 [ 37] [ 12] [57918807473] +18:17:01 [ 39] [ 2] [00] +18:17:01 [ 70] [ 3] [001] +18:17:01 ============================================================================ +18:17:01 Sending to : +18:17:01 ============================================================================ +18:17:01 + + +waiting on router queue for slot.... +18:17:02 ============================================================================ +18:17:02 Slot Id : <437> +18:17:02 Transaction Type : RESPONSE +18:17:02 Received From : +18:17:02 ============================================================================ +18:17:02 FNo. Len. Field Value +18:17:02 ============================================================================ +18:17:02 [ 1] [ 4] [0210] +18:17:02 [ 2] [ 16] [6688990040160028] +18:17:02 [ 3] [ 6] [011000] +18:17:02 [ 4] [ 12] [000015000000] +18:17:02 [ 11] [ 6] [825717] +18:17:02 [ 12] [ 6] [181655] +18:17:02 [ 15] [ 4] [0320] +18:17:02 [ 18] [ 4] [6011] +18:17:02 [ 32] [ 6] [621354] +18:17:02 [ 35] [ 37] [6688990040160028=98051261570704600000] +18:17:02 [ 37] [ 12] [507903735618] +18:17:02 [ 38] [ 6] [774928] +18:17:02 [ 39] [ 2] [00] +18:17:02 [ 41] [ 8] [06002300] +18:17:02 [ 49] [ 3] [418] +18:17:02 [ 54] [ 20] [1002418C000043600000] +18:17:02 ============================================================================ +18:17:02 Sending to : +18:17:02 ============================================================================ +18:17:02 + + +waiting on router queue for slot.... +18:17:03 ============================================================================ +18:17:03 Slot Id : <402> +18:17:03 Transaction Type : REQUEST +18:17:03 Received From : +18:17:03 ============================================================================ +18:17:03 FNo. Len. Field Value +18:17:03 ============================================================================ +18:17:03 [ 1] [ 4] [0200] +18:17:03 [ 2] [ 16] [6688990601065806] +18:17:03 [ 3] [ 6] [012000] +18:17:03 [ 4] [ 12] [000010000000] +18:17:03 [ 7] [ 10] [0320181657] +18:17:03 [ 11] [ 6] [825723] +18:17:03 [ 12] [ 6] [181657] +18:17:03 [ 13] [ 4] [0320] +18:17:03 [ 15] [ 4] [0320] +18:17:03 [ 18] [ 4] [6011] +18:17:03 [ 22] [ 3] [900] +18:17:03 [ 25] [ 2] [02] +18:17:03 [ 28] [ 9] [D00002000] +18:17:03 [ 32] [ 6] [621354] +18:17:03 [ 35] [ 37] [6688990601065806=41040061580609800000] +18:17:03 [ 37] [ 12] [507903919669] +18:17:03 [ 41] [ 8] [01010700] +18:17:03 [ 42] [ 15] [NATIVE ] +18:17:03 [ 43] [ 40] [Unitel Xaysetha LAO] +18:17:03 [ 49] [ 3] [418] +18:17:03 [ 52] [ 16] [6F15732EEDDE0C6B] +18:17:03 ============================================================================ +18:17:03 + + +waiting on router queue for slot.... +18:17:03 Sending to : +18:17:03 ============================================================================ +18:17:03 Sending to : +18:17:03 ============================================================================ +18:17:03 ============================================================================ +18:17:03 Slot Id : <402> +18:17:03 Transaction Type : REQUEST +18:17:03 Received From : +18:17:03 ============================================================================ +18:17:03 FNo. Len. Field Value +18:17:03 ============================================================================ +18:17:03 [ 1] [ 4] [0200] +18:17:03 [ 2] [ 16] [6688990601065806] +18:17:03 [ 3] [ 6] [012000] +18:17:03 [ 4] [ 12] [000010000000] +18:17:03 [ 7] [ 10] [0320181657] +18:17:03 [ 11] [ 6] [825723] +18:17:03 [ 12] [ 6] [181657] +18:17:03 [ 13] [ 4] [0320] +18:17:03 [ 15] [ 4] [0320] +18:17:03 [ 18] [ 4] [6011] +18:17:03 [ 22] [ 3] [900] +18:17:03 [ 25] [ 2] [02] +18:17:03 [ 28] [ 9] [D00002000] +18:17:03 [ 32] [ 6] [621354] +18:17:03 [ 35] [ 37] [6688990601065806=41040061580609800000] +18:17:03 [ 37] [ 12] [507903919669] +18:17:03 [ 41] [ 8] [01010700] +18:17:03 [ 42] [ 15] [NATIVE ] +18:17:03 [ 43] [ 40] [Unitel Xaysetha LAO] +18:17:03 [ 49] [ 3] [418] +18:17:03 [ 52] [ 16] [6F15732EEDDE0C6B] +18:17:03 ============================================================================ +18:17:03 + + +waiting on router queue for slot.... +18:17:03 Sending to : +18:17:03 ============================================================================ +18:17:03 ============================================================================ +18:17:03 Slot Id : <402> +18:17:03 Transaction Type : REQUEST +18:17:03 Received From : +18:17:03 ============================================================================ +18:17:03 FNo. Len. Field Value +18:17:03 ============================================================================ +18:17:03 [ 1] [ 4] [0200] +18:17:03 [ 2] [ 16] [6688990601065806] +18:17:03 [ 3] [ 6] [012000] +18:17:03 [ 4] [ 12] [000010000000] +18:17:03 [ 7] [ 10] [0320181657] +18:17:03 [ 11] [ 6] [825723] +18:17:03 [ 12] [ 6] [181657] +18:17:03 [ 13] [ 4] [0320] +18:17:03 [ 15] [ 4] [0320] +18:17:03 [ 18] [ 4] [6011] +18:17:03 [ 22] [ 3] [900] +18:17:03 [ 25] [ 2] [02] +18:17:03 [ 28] [ 9] [D00002000] +18:17:03 [ 32] [ 6] [621354] +18:17:03 [ 35] [ 37] [6688990601065806=41040061580609800000] +18:17:03 [ 37] [ 12] [507903919669] +18:17:03 [ 41] [ 8] [01010700] +18:17:03 [ 42] [ 15] [NATIVE ] +18:17:03 [ 43] [ 40] [Unitel Xaysetha LAO] +18:17:03 [ 49] [ 3] [418] +18:17:03 [ 52] [ 16] [8622F4E80EFD7FA7] +18:17:03 ============================================================================ +18:17:03 + + +waiting on router queue for slot.... +18:17:03 Sending to : <4> +18:17:03 ============================================================================ +18:17:03 ============================================================================ +18:17:03 Slot Id : <402> +18:17:03 Transaction Type : RESPONSE +18:17:03 Received From : +18:17:03 ============================================================================ +18:17:03 FNo. Len. Field Value +18:17:03 ============================================================================ +18:17:03 [ 1] [ 4] [0210] +18:17:03 [ 2] [ 16] [6688990601065806] +18:17:03 [ 3] [ 6] [012000] +18:17:03 [ 4] [ 12] [000010000000] +18:17:03 [ 11] [ 6] [825723] +18:17:03 [ 12] [ 6] [181657] +18:17:03 [ 15] [ 4] [0320] +18:17:03 [ 18] [ 4] [6011] +18:17:03 [ 32] [ 6] [621354] +18:17:03 [ 35] [ 37] [6688990601065806=41040061580609800000] +18:17:03 [ 37] [ 12] [507903919669] +18:17:03 [ 39] [ 2] [51] +18:17:03 [ 41] [ 8] [01010700] +18:17:03 [ 49] [ 3] [418] +18:17:03 [ 54] [ 0] [] +18:17:03 ============================================================================ +18:17:03 Sending to : +18:17:03 ============================================================================ +18:17:03 + + +waiting on router queue for slot.... +18:17:03 ============================================================================ +18:17:03 Slot Id : <437> +18:17:03 Transaction Type : RESPONSE +18:17:03 Received From : +18:17:03 ============================================================================ +18:17:03 FNo. Len. Field Value +18:17:03 ============================================================================ +18:17:03 [ 1] [ 4] [0210] +18:17:03 [ 2] [ 16] [6688990040160028] +18:17:03 [ 3] [ 6] [011000] +18:17:03 [ 4] [ 12] [000015000000] +18:17:03 [ 11] [ 6] [825717] +18:17:03 [ 12] [ 6] [181655] +18:17:03 [ 15] [ 4] [0320] +18:17:03 [ 18] [ 4] [6011] +18:17:03 [ 32] [ 6] [621354] +18:17:03 [ 35] [ 37] [6688990040160028=98051261570704600000] +18:17:03 [ 37] [ 12] [507903735618] +18:17:03 [ 38] [ 6] [774928] +18:17:03 [ 39] [ 2] [00] +18:17:03 [ 41] [ 8] [06002300] +18:17:03 [ 49] [ 3] [418] +18:17:03 [ 54] [ 20] [1002418C000043600000] +18:17:03 ============================================================================ +18:17:03 Calculate Source COMM Id = 0 +18:17:03 ============================================================================ +18:17:03 + + +waiting on router queue for slot.... +18:17:04 ============================================================================ +18:17:04 Slot Id : <402> +18:17:04 Transaction Type : RESPONSE +18:17:04 Received From : +18:17:04 ============================================================================ +18:17:04 FNo. Len. Field Value +18:17:04 ============================================================================ +18:17:04 [ 1] [ 4] [0210] +18:17:04 [ 2] [ 16] [6688990601065806] +18:17:04 [ 3] [ 6] [012000] +18:17:04 [ 4] [ 12] [000010000000] +18:17:04 [ 11] [ 6] [825723] +18:17:04 [ 12] [ 6] [181657] +18:17:04 [ 15] [ 4] [0320] +18:17:04 [ 18] [ 4] [6011] +18:17:04 [ 32] [ 6] [621354] +18:17:04 [ 35] [ 37] [6688990601065806=41040061580609800000] +18:17:04 [ 37] [ 12] [507903919669] +18:17:04 [ 39] [ 2] [51] +18:17:04 [ 41] [ 8] [01010700] +18:17:04 [ 49] [ 3] [418] +18:17:04 [ 54] [ 0] [] +18:17:04 ============================================================================ +18:17:04 Calculate Source COMM Id = 0 +18:17:04 ============================================================================ +18:17:04 + + +waiting on router queue for slot.... +18:17:04 ============================================================================ +18:17:04 Slot Id : <362> +18:17:04 Transaction Type : REQUEST +18:17:04 Received From : +18:17:04 ============================================================================ +18:17:04 FNo. Len. Field Value +18:17:04 ============================================================================ +18:17:04 [ 1] [ 4] [0200] +18:17:04 [ 2] [ 16] [6688990107476101] +18:17:04 [ 3] [ 6] [010000] +18:17:04 [ 4] [ 12] [000100000000] +18:17:04 [ 7] [ 10] [0320111610] +18:17:04 [ 11] [ 6] [271159] +18:17:04 [ 12] [ 6] [181610] +18:17:04 [ 13] [ 4] [0320] +18:17:04 [ 14] [ 4] [4403] +18:17:04 [ 15] [ 4] [0320] +18:17:04 [ 18] [ 4] [6011] +18:17:04 [ 19] [ 3] [418] +18:17:04 [ 22] [ 3] [021] +18:17:04 [ 25] [ 2] [01] +18:17:04 [ 28] [ 9] [D00002000] +18:17:04 [ 32] [ 6] [180893] +18:17:04 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:17:04 [ 37] [ 12] [507911271159] +18:17:04 [ 41] [ 8] [0262PSLB] +18:17:04 [ 42] [ 15] [999999 ] +18:17:04 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +18:17:04 [ 49] [ 3] [418] +18:17:04 [ 52] [ 16] [0A42ACE4CBB6BEC3] +18:17:04 ============================================================================ +18:17:04 + + +waiting on router queue for slot.... +18:17:04 Sending to : +18:17:04 ============================================================================ +18:17:04 Sending to : +18:17:04 ============================================================================ +18:17:05 ============================================================================ +18:17:05 Slot Id : <362> +18:17:05 Transaction Type : REQUEST +18:17:05 Received From : +18:17:05 ============================================================================ +18:17:05 FNo. Len. Field Value +18:17:05 ============================================================================ +18:17:05 [ 1] [ 4] [0200] +18:17:05 [ 2] [ 16] [6688990107476101] +18:17:05 [ 3] [ 6] [010000] +18:17:05 [ 4] [ 12] [000100000000] +18:17:05 [ 7] [ 10] [0320111610] +18:17:05 [ 11] [ 6] [271159] +18:17:05 [ 12] [ 6] [181610] +18:17:05 [ 13] [ 4] [0320] +18:17:05 [ 14] [ 4] [4403] +18:17:05 [ 15] [ 4] [0320] +18:17:05 [ 18] [ 4] [6011] +18:17:05 [ 19] [ 3] [418] +18:17:05 [ 22] [ 3] [021] +18:17:05 [ 25] [ 2] [01] +18:17:05 [ 28] [ 9] [D00002000] +18:17:05 [ 32] [ 6] [180893] +18:17:05 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:17:05 [ 37] [ 12] [507911271159] +18:17:05 [ 41] [ 8] [0262PSLB] +18:17:05 [ 42] [ 15] [999999 ] +18:17:05 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +18:17:05 [ 49] [ 3] [418] +18:17:05 [ 52] [ 16] [0A42ACE4CBB6BEC3] +18:17:05 ============================================================================ +18:17:05 + + +waiting on router queue for slot.... +18:17:05 Sending to : +18:17:05 ============================================================================ +18:17:05 ============================================================================ +18:17:05 Slot Id : <362> +18:17:05 Transaction Type : REQUEST +18:17:05 Received From : +18:17:05 ============================================================================ +18:17:05 FNo. Len. Field Value +18:17:05 ============================================================================ +18:17:05 [ 1] [ 4] [0200] +18:17:05 [ 2] [ 16] [6688990107476101] +18:17:05 [ 3] [ 6] [010000] +18:17:05 [ 4] [ 12] [000100000000] +18:17:05 [ 7] [ 10] [0320111610] +18:17:05 [ 11] [ 6] [271159] +18:17:05 [ 12] [ 6] [181610] +18:17:05 [ 13] [ 4] [0320] +18:17:05 [ 14] [ 4] [4403] +18:17:05 [ 15] [ 4] [0320] +18:17:05 [ 18] [ 4] [6011] +18:17:05 [ 19] [ 3] [418] +18:17:05 [ 22] [ 3] [021] +18:17:05 [ 25] [ 2] [01] +18:17:05 [ 28] [ 9] [D00002000] +18:17:05 [ 32] [ 6] [180893] +18:17:05 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:17:05 [ 37] [ 12] [507911271159] +18:17:05 [ 41] [ 8] [0262PSLB] +18:17:05 [ 42] [ 15] [999999 ] +18:17:05 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +18:17:05 [ 49] [ 3] [418] +18:17:05 [ 52] [ 16] [914B2E47AB349A58] +18:17:05 ============================================================================ +18:17:05 + + +waiting on router queue for slot.... +18:17:05 Sending to : <0> +18:17:05 ============================================================================ +18:17:06 ============================================================================ +18:17:06 Slot Id : <362> +18:17:06 Transaction Type : RESPONSE +18:17:06 Received From : +18:17:06 ============================================================================ +18:17:06 FNo. Len. Field Value +18:17:06 ============================================================================ +18:17:06 [ 1] [ 4] [0210] +18:17:06 [ 2] [ 16] [6688990107476101] +18:17:06 [ 3] [ 6] [010000] +18:17:06 [ 4] [ 12] [000100000000] +18:17:06 [ 7] [ 10] [0320111610] +18:17:06 [ 11] [ 6] [271159] +18:17:06 [ 12] [ 6] [181610] +18:17:06 [ 13] [ 4] [0320] +18:17:06 [ 15] [ 4] [0320] +18:17:06 [ 18] [ 4] [6011] +18:17:06 [ 19] [ 3] [418] +18:17:06 [ 22] [ 3] [021] +18:17:06 [ 32] [ 6] [180893] +18:17:06 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:17:06 [ 37] [ 12] [507911271159] +18:17:06 [ 39] [ 2] [14] +18:17:06 [ 41] [ 8] [0262PSLB] +18:17:06 [ 49] [ 3] [418] +18:17:06 ============================================================================ +18:17:06 Sending to : +18:17:06 ============================================================================ +18:17:06 + + +waiting on router queue for slot.... +18:17:08 ============================================================================ +18:17:08 Slot Id : <362> +18:17:08 Transaction Type : RESPONSE +18:17:08 Received From : +18:17:08 ============================================================================ +18:17:08 FNo. Len. Field Value +18:17:08 ============================================================================ +18:17:08 [ 1] [ 4] [0210] +18:17:08 [ 2] [ 16] [6688990107476101] +18:17:08 [ 3] [ 6] [010000] +18:17:08 [ 4] [ 12] [000100000000] +18:17:08 [ 7] [ 10] [0320111610] +18:17:08 [ 11] [ 6] [271159] +18:17:08 [ 12] [ 6] [181610] +18:17:08 [ 13] [ 4] [0320] +18:17:08 [ 15] [ 4] [0320] +18:17:08 [ 18] [ 4] [6011] +18:17:08 [ 19] [ 3] [418] +18:17:08 [ 22] [ 3] [021] +18:17:08 [ 32] [ 6] [180893] +18:17:08 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:17:08 [ 37] [ 12] [507911271159] +18:17:08 [ 39] [ 2] [14] +18:17:08 [ 41] [ 8] [0262PSLB] +18:17:08 [ 49] [ 3] [418] +18:17:08 ============================================================================ +18:17:08 Calculate Source COMM Id = 2 +18:17:08 ============================================================================ +18:17:08 + + +waiting on router queue for slot.... +18:17:12 ============================================================================ +18:17:12 Slot Id : <385> +18:17:12 Transaction Type : REQUEST +18:17:12 Received From : +18:17:12 ============================================================================ +18:17:12 FNo. Len. Field Value +18:17:12 ============================================================================ +18:17:12 [ 1] [ 4] [0200] +18:17:12 [ 2] [ 16] [6688990107031401] +18:17:12 [ 3] [ 6] [010000] +18:17:12 [ 4] [ 12] [000090000000] +18:17:12 [ 7] [ 10] [0320181707] +18:17:12 [ 11] [ 6] [825753] +18:17:12 [ 12] [ 6] [181707] +18:17:12 [ 13] [ 4] [0320] +18:17:12 [ 15] [ 4] [0320] +18:17:12 [ 18] [ 4] [6011] +18:17:12 [ 22] [ 3] [900] +18:17:12 [ 25] [ 2] [02] +18:17:12 [ 28] [ 9] [D00002000] +18:17:12 [ 32] [ 6] [621354] +18:17:12 [ 35] [ 37] [6688990107031401=44011231140181600000] +18:17:12 [ 37] [ 12] [507903444155] +18:17:12 [ 41] [ 8] [06001700] +18:17:12 [ 42] [ 15] [NATIVE ] +18:17:12 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +18:17:12 [ 49] [ 3] [418] +18:17:12 [ 52] [ 16] [264C9242F1C64F0C] +18:17:12 ============================================================================ +18:17:12 + + +waiting on router queue for slot.... +18:17:12 Sending to : +18:17:12 ============================================================================ +18:17:12 Sending to : +18:17:12 ============================================================================ +18:17:13 ============================================================================ +18:17:13 Slot Id : <385> +18:17:13 Transaction Type : REQUEST +18:17:13 Received From : +18:17:13 ============================================================================ +18:17:13 FNo. Len. Field Value +18:17:13 ============================================================================ +18:17:13 [ 1] [ 4] [0200] +18:17:13 [ 2] [ 16] [6688990107031401] +18:17:13 [ 3] [ 6] [010000] +18:17:13 [ 4] [ 12] [000090000000] +18:17:13 [ 7] [ 10] [0320181707] +18:17:13 [ 11] [ 6] [825753] +18:17:13 [ 12] [ 6] [181707] +18:17:13 [ 13] [ 4] [0320] +18:17:13 [ 15] [ 4] [0320] +18:17:13 [ 18] [ 4] [6011] +18:17:13 [ 22] [ 3] [900] +18:17:13 [ 25] [ 2] [02] +18:17:13 [ 28] [ 9] [D00002000] +18:17:13 [ 32] [ 6] [621354] +18:17:13 [ 35] [ 37] [6688990107031401=44011231140181600000] +18:17:13 [ 37] [ 12] [507903444155] +18:17:13 [ 41] [ 8] [06001700] +18:17:13 [ 42] [ 15] [NATIVE ] +18:17:13 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +18:17:13 [ 49] [ 3] [418] +18:17:13 [ 52] [ 16] [264C9242F1C64F0C] +18:17:13 ============================================================================ +18:17:13 + + +waiting on router queue for slot.... +18:17:13 Sending to : +18:17:13 ============================================================================ +18:17:13 ============================================================================ +18:17:13 Slot Id : <385> +18:17:13 Transaction Type : REQUEST +18:17:13 Received From : +18:17:13 ============================================================================ +18:17:13 FNo. Len. Field Value +18:17:13 ============================================================================ +18:17:13 [ 1] [ 4] [0200] +18:17:13 [ 2] [ 16] [6688990107031401] +18:17:13 [ 3] [ 6] [010000] +18:17:13 [ 4] [ 12] [000090000000] +18:17:13 [ 7] [ 10] [0320181707] +18:17:13 [ 11] [ 6] [825753] +18:17:13 [ 12] [ 6] [181707] +18:17:13 [ 13] [ 4] [0320] +18:17:13 [ 15] [ 4] [0320] +18:17:13 [ 18] [ 4] [6011] +18:17:13 [ 22] [ 3] [900] +18:17:13 [ 25] [ 2] [02] +18:17:13 [ 28] [ 9] [D00002000] +18:17:13 [ 32] [ 6] [621354] +18:17:13 [ 35] [ 37] [6688990107031401=44011231140181600000] +18:17:13 [ 37] [ 12] [507903444155] +18:17:13 [ 41] [ 8] [06001700] +18:17:13 [ 42] [ 15] [NATIVE ] +18:17:13 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +18:17:13 [ 49] [ 3] [418] +18:17:13 [ 52] [ 16] [351386129567F346] +18:17:13 ============================================================================ +18:17:13 + + +waiting on router queue for slot.... +18:17:13 Sending to : <4> +18:17:13 ============================================================================ +18:17:14 ============================================================================ +18:17:14 Slot Id : <385> +18:17:14 Transaction Type : RESPONSE +18:17:14 Received From : +18:17:14 ============================================================================ +18:17:14 FNo. Len. Field Value +18:17:14 ============================================================================ +18:17:14 [ 1] [ 4] [0210] +18:17:14 [ 2] [ 16] [6688990107031401] +18:17:14 [ 3] [ 6] [010000] +18:17:14 [ 4] [ 12] [000090000000] +18:17:14 [ 11] [ 6] [825753] +18:17:14 [ 12] [ 6] [181707] +18:17:14 [ 15] [ 4] [0320] +18:17:14 [ 18] [ 4] [6011] +18:17:14 [ 32] [ 6] [621354] +18:17:14 [ 35] [ 37] [6688990107031401=44011231140181600000] +18:17:14 [ 37] [ 12] [507903444155] +18:17:14 [ 38] [ 6] [810115] +18:17:14 [ 39] [ 2] [00] +18:17:14 [ 41] [ 8] [06001700] +18:17:14 [ 49] [ 3] [418] +18:17:14 [ 54] [ 20] [0002418C000009244914] +18:17:14 ============================================================================ +18:17:14 Sending to : +18:17:14 ============================================================================ +18:17:14 + + +waiting on router queue for slot.... +18:17:15 ============================================================================ +18:17:15 Slot Id : <385> +18:17:15 Transaction Type : RESPONSE +18:17:15 Received From : +18:17:15 ============================================================================ +18:17:15 FNo. Len. Field Value +18:17:15 ============================================================================ +18:17:15 [ 1] [ 4] [0210] +18:17:15 [ 2] [ 16] [6688990107031401] +18:17:15 [ 3] [ 6] [010000] +18:17:15 [ 4] [ 12] [000090000000] +18:17:15 [ 11] [ 6] [825753] +18:17:15 [ 12] [ 6] [181707] +18:17:15 [ 15] [ 4] [0320] +18:17:15 [ 18] [ 4] [6011] +18:17:15 [ 32] [ 6] [621354] +18:17:15 [ 35] [ 37] [6688990107031401=44011231140181600000] +18:17:15 [ 37] [ 12] [507903444155] +18:17:15 [ 38] [ 6] [810115] +18:17:15 [ 39] [ 2] [00] +18:17:15 [ 41] [ 8] [06001700] +18:17:15 [ 49] [ 3] [418] +18:17:15 [ 54] [ 20] [0002418C000009244914] +18:17:15 ============================================================================ +18:17:15 Calculate Source COMM Id = 0 +18:17:15 ============================================================================ +18:17:15 + + +waiting on router queue for slot.... +18:17:17 ============================================================================ +18:17:17 Slot Id : <408> +18:17:17 Transaction Type : REQUEST +18:17:17 Received From : +18:17:17 ============================================================================ +18:17:17 FNo. Len. Field Value +18:17:17 ============================================================================ +18:17:17 [ 1] [ 4] [0200] +18:17:17 [ 2] [ 16] [1808930600018113] +18:17:17 [ 3] [ 6] [011000] +18:17:17 [ 4] [ 12] [000100000000] +18:17:17 [ 7] [ 10] [0320182502] +18:17:17 [ 11] [ 6] [009308] +18:17:17 [ 12] [ 6] [182502] +18:17:17 [ 13] [ 4] [0320] +18:17:17 [ 14] [ 4] [1803] +18:17:17 [ 15] [ 4] [0320] +18:17:17 [ 18] [ 4] [6011] +18:17:17 [ 22] [ 3] [900] +18:17:17 [ 25] [ 2] [02] +18:17:17 [ 28] [ 9] [D00002000] +18:17:17 [ 32] [ 6] [220699] +18:17:17 [ 35] [ 27] [1808930600018113=1803500944] +18:17:17 [ 37] [ 12] [507900213265] +18:17:17 [ 41] [ 8] [05000100] +18:17:17 [ 42] [ 15] [APTRA ] +18:17:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:17:17 [ 49] [ 3] [418] +18:17:17 [ 52] [ 16] [496C81B096D639E5] +18:17:17 ============================================================================ +18:17:17 + + +waiting on router queue for slot.... +18:17:17 Sending to : +18:17:17 ============================================================================ +18:17:17 Sending to : +18:17:17 ============================================================================ +18:17:17 ============================================================================ +18:17:17 Slot Id : <408> +18:17:17 Transaction Type : REQUEST +18:17:17 Received From : +18:17:17 ============================================================================ +18:17:17 FNo. Len. Field Value +18:17:17 ============================================================================ +18:17:17 [ 1] [ 4] [0200] +18:17:17 [ 2] [ 16] [1808930600018113] +18:17:17 [ 3] [ 6] [011000] +18:17:17 [ 4] [ 12] [000100000000] +18:17:17 [ 7] [ 10] [0320182502] +18:17:17 [ 11] [ 6] [009308] +18:17:17 [ 12] [ 6] [182502] +18:17:17 [ 13] [ 4] [0320] +18:17:17 [ 14] [ 4] [1803] +18:17:17 [ 15] [ 4] [0320] +18:17:17 [ 18] [ 4] [6011] +18:17:17 [ 22] [ 3] [900] +18:17:17 [ 25] [ 2] [02] +18:17:17 [ 28] [ 9] [D00002000] +18:17:17 [ 32] [ 6] [220699] +18:17:17 [ 35] [ 27] [1808930600018113=1803500944] +18:17:17 [ 37] [ 12] [507900213265] +18:17:17 [ 41] [ 8] [05000100] +18:17:17 [ 42] [ 15] [APTRA ] +18:17:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:17:17 [ 49] [ 3] [418] +18:17:17 [ 52] [ 16] [496C81B096D639E5] +18:17:17 ============================================================================ +18:17:17 + + +waiting on router queue for slot.... +18:17:17 Sending to : +18:17:17 ============================================================================ +18:17:17 ============================================================================ +18:17:17 Slot Id : <408> +18:17:17 Transaction Type : REQUEST +18:17:17 Received From : +18:17:17 ============================================================================ +18:17:17 FNo. Len. Field Value +18:17:17 ============================================================================ +18:17:17 [ 1] [ 4] [0200] +18:17:17 [ 2] [ 16] [1808930600018113] +18:17:17 [ 3] [ 6] [011000] +18:17:17 [ 4] [ 12] [000100000000] +18:17:17 [ 7] [ 10] [0320182502] +18:17:17 [ 11] [ 6] [009308] +18:17:17 [ 12] [ 6] [182502] +18:17:17 [ 13] [ 4] [0320] +18:17:17 [ 14] [ 4] [1803] +18:17:17 [ 15] [ 4] [0320] +18:17:17 [ 18] [ 4] [6011] +18:17:17 [ 22] [ 3] [900] +18:17:17 [ 25] [ 2] [02] +18:17:17 [ 28] [ 9] [D00002000] +18:17:17 [ 32] [ 6] [220699] +18:17:17 [ 35] [ 27] [1808930600018113=1803500944] +18:17:17 [ 37] [ 12] [507900213265] +18:17:17 [ 41] [ 8] [05000100] +18:17:17 [ 42] [ 15] [APTRA ] +18:17:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:17:17 [ 49] [ 3] [418] +18:17:17 [ 52] [ 16] [87554B2A45D4B4FE] +18:17:17 ============================================================================ +18:17:17 + + +waiting on router queue for slot.... +18:17:17 Sending to : <2> +18:17:17 ============================================================================ +18:17:23 ============================================================================ +18:17:23 Slot Id : <408> +18:17:23 Transaction Type : RESPONSE +18:17:23 Received From : +18:17:23 ============================================================================ +18:17:23 FNo. Len. Field Value +18:17:23 ============================================================================ +18:17:23 [ 1] [ 4] [0210] +18:17:23 [ 2] [ 16] [1808930600018113] +18:17:23 [ 3] [ 6] [011000] +18:17:23 [ 4] [ 12] [000100000000] +18:17:23 [ 6] [ 12] [000100000000] +18:17:23 [ 7] [ 10] [0320182502] +18:17:23 [ 11] [ 6] [009308] +18:17:23 [ 12] [ 6] [182502] +18:17:23 [ 13] [ 4] [0320] +18:17:23 [ 14] [ 4] [1803] +18:17:23 [ 18] [ 4] [6011] +18:17:23 [ 19] [ 3] [418] +18:17:23 [ 22] [ 3] [021] +18:17:23 [ 32] [ 6] [220699] +18:17:23 [ 35] [ 27] [1808930600018113=1803500944] +18:17:23 [ 37] [ 12] [507900213265] +18:17:23 [ 38] [ 6] [009308] +18:17:23 [ 39] [ 2] [00] +18:17:23 [ 41] [ 8] [05000100] +18:17:23 [ 49] [ 3] [418] +18:17:23 [ 52] [ 16] [87554B2A45D4B4FE] +18:17:23 [ 54] [ 20] [1001418C000018702700] +18:17:23 ============================================================================ +18:17:23 Sending to : +18:17:23 ============================================================================ +18:17:23 + + +waiting on router queue for slot.... +18:17:23 ============================================================================ +18:17:23 Slot Id : <375> +18:17:23 Transaction Type : REQUEST +18:17:23 Received From : +18:17:23 ============================================================================ +18:17:23 FNo. Len. Field Value +18:17:23 ============================================================================ +18:17:23 [ 1] [ 4] [0800] +18:17:23 [ 7] [ 10] [0321012912] +18:17:23 [ 11] [ 6] [182912] +18:17:23 [ 37] [ 12] [57918182912] +18:17:23 [ 70] [ 3] [301] +18:17:23 ============================================================================ +18:17:23 + + +waiting on router queue for slot.... +18:17:23 Sending to : +18:17:23 ============================================================================ +18:17:23 ============================================================================ +18:17:23 Slot Id : <375> +18:17:23 Transaction Type : RESPONSE +18:17:23 Received From : +18:17:23 ============================================================================ +18:17:23 FNo. Len. Field Value +18:17:23 ============================================================================ +18:17:23 [ 1] [ 4] [0810] +18:17:23 [ 7] [ 10] [0321012912] +18:17:23 [ 11] [ 6] [182912] +18:17:23 [ 37] [ 12] [579181829120] +18:17:23 [ 39] [ 2] [00] +18:17:23 [ 70] [ 3] [810] +18:17:23 ============================================================================ +18:17:23 Calculate Source COMM Id = 6 +18:17:23 ============================================================================ +18:17:23 + + +waiting on router queue for slot.... +18:17:25 ============================================================================ +18:17:25 Slot Id : <408> +18:17:25 Transaction Type : RESPONSE +18:17:25 Received From : +18:17:25 ============================================================================ +18:17:25 FNo. Len. Field Value +18:17:25 ============================================================================ +18:17:25 [ 1] [ 4] [0210] +18:17:25 [ 2] [ 16] [1808930600018113] +18:17:25 [ 3] [ 6] [011000] +18:17:25 [ 4] [ 12] [000100000000] +18:17:25 [ 6] [ 12] [000100000000] +18:17:25 [ 7] [ 10] [0320182502] +18:17:25 [ 11] [ 6] [009308] +18:17:25 [ 12] [ 6] [182502] +18:17:25 [ 13] [ 4] [0320] +18:17:25 [ 14] [ 4] [1803] +18:17:25 [ 18] [ 4] [6011] +18:17:25 [ 19] [ 3] [418] +18:17:25 [ 22] [ 3] [021] +18:17:25 [ 32] [ 6] [220699] +18:17:25 [ 35] [ 27] [1808930600018113=1803500944] +18:17:25 [ 37] [ 12] [507900213265] +18:17:25 [ 38] [ 6] [009308] +18:17:25 [ 39] [ 2] [00] +18:17:25 [ 41] [ 8] [05000100] +18:17:25 [ 49] [ 3] [418] +18:17:25 [ 52] [ 16] [87554B2A45D4B4FE] +18:17:25 [ 54] [ 20] [1001418C000018702700] +18:17:25 ============================================================================ +18:17:25 Calculate Source COMM Id = 1 +18:17:25 ============================================================================ +18:17:25 + + +waiting on router queue for slot.... +18:17:29 ============================================================================ +18:17:29 Slot Id : <392> +18:17:29 Transaction Type : REQUEST +18:17:29 Received From : +18:17:29 ============================================================================ +18:17:29 FNo. Len. Field Value +18:17:29 ============================================================================ +18:17:29 [ 1] [ 4] [0200] +18:17:29 [ 2] [ 16] [6213543000111756] +18:17:29 [ 3] [ 6] [012000] +18:17:29 [ 4] [ 12] [000050000000] +18:17:29 [ 7] [ 10] [0320182514] +18:17:29 [ 11] [ 6] [009795] +18:17:29 [ 12] [ 6] [182514] +18:17:29 [ 13] [ 4] [0320] +18:17:29 [ 14] [ 4] [4912] +18:17:29 [ 15] [ 4] [0320] +18:17:29 [ 18] [ 4] [6011] +18:17:29 [ 22] [ 3] [900] +18:17:29 [ 25] [ 2] [02] +18:17:29 [ 28] [ 9] [D00002000] +18:17:29 [ 32] [ 6] [220699] +18:17:29 [ 35] [ 32] [6213543000111756=491212011175804] +18:17:29 [ 37] [ 12] [507900270564] +18:17:29 [ 41] [ 8] [01001500] +18:17:29 [ 42] [ 15] [APTRA ] +18:17:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:17:29 [ 49] [ 3] [418] +18:17:29 [ 52] [ 16] [E4933B58238B764B] +18:17:29 ============================================================================ +18:17:29 + + +waiting on router queue for slot.... +18:17:29 Sending to : +18:17:29 ============================================================================ +18:17:29 Sending to : +18:17:29 ============================================================================ +18:17:29 ============================================================================ +18:17:29 Slot Id : <392> +18:17:29 Transaction Type : REQUEST +18:17:29 Received From : +18:17:29 ============================================================================ +18:17:29 FNo. Len. Field Value +18:17:29 ============================================================================ +18:17:29 [ 1] [ 4] [0200] +18:17:29 [ 2] [ 16] [6213543000111756] +18:17:29 [ 3] [ 6] [012000] +18:17:29 [ 4] [ 12] [000050000000] +18:17:29 [ 7] [ 10] [0320182514] +18:17:29 [ 11] [ 6] [009795] +18:17:29 [ 12] [ 6] [182514] +18:17:29 [ 13] [ 4] [0320] +18:17:29 [ 14] [ 4] [4912] +18:17:29 [ 15] [ 4] [0320] +18:17:29 [ 18] [ 4] [6011] +18:17:29 [ 22] [ 3] [900] +18:17:29 [ 25] [ 2] [02] +18:17:29 [ 28] [ 9] [D00002000] +18:17:29 [ 32] [ 6] [220699] +18:17:29 [ 35] [ 32] [6213543000111756=491212011175804] +18:17:29 [ 37] [ 12] [507900270564] +18:17:29 [ 41] [ 8] [01001500] +18:17:29 [ 42] [ 15] [APTRA ] +18:17:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:17:29 [ 49] [ 3] [418] +18:17:29 [ 52] [ 16] [E4933B58238B764B] +18:17:29 ============================================================================ +18:17:29 + + +waiting on router queue for slot.... +18:17:29 Sending to : +18:17:29 ============================================================================ +18:17:29 ============================================================================ +18:17:29 Slot Id : <392> +18:17:29 Transaction Type : REQUEST +18:17:29 Received From : +18:17:29 ============================================================================ +18:17:29 FNo. Len. Field Value +18:17:29 ============================================================================ +18:17:29 [ 1] [ 4] [0200] +18:17:29 [ 2] [ 16] [6213543000111756] +18:17:29 [ 3] [ 6] [012000] +18:17:29 [ 4] [ 12] [000050000000] +18:17:29 [ 7] [ 10] [0320182514] +18:17:29 [ 11] [ 6] [009795] +18:17:29 [ 12] [ 6] [182514] +18:17:29 [ 13] [ 4] [0320] +18:17:29 [ 14] [ 4] [4912] +18:17:29 [ 15] [ 4] [0320] +18:17:29 [ 18] [ 4] [6011] +18:17:29 [ 22] [ 3] [900] +18:17:29 [ 25] [ 2] [02] +18:17:29 [ 28] [ 9] [D00002000] +18:17:29 [ 32] [ 6] [220699] +18:17:29 [ 35] [ 32] [6213543000111756=491212011175804] +18:17:29 [ 37] [ 12] [507900270564] +18:17:29 [ 41] [ 8] [01001500] +18:17:29 [ 42] [ 15] [APTRA ] +18:17:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:17:29 [ 49] [ 3] [418] +18:17:29 [ 52] [ 16] [4BD57E533F667C99] +18:17:29 ============================================================================ +18:17:29 + + +waiting on router queue for slot.... +18:17:29 Sending to : <0> +18:17:29 ============================================================================ +18:17:30 ============================================================================ +18:17:30 Slot Id : <392> +18:17:30 Transaction Type : RESPONSE +18:17:30 Received From : +18:17:30 ============================================================================ +18:17:30 FNo. Len. Field Value +18:17:30 ============================================================================ +18:17:30 [ 1] [ 4] [0210] +18:17:30 [ 2] [ 16] [6213543000111756] +18:17:30 [ 3] [ 6] [012000] +18:17:30 [ 4] [ 12] [000050000000] +18:17:30 [ 7] [ 10] [0320182514] +18:17:30 [ 11] [ 6] [009795] +18:17:30 [ 12] [ 6] [182514] +18:17:30 [ 13] [ 4] [0320] +18:17:30 [ 15] [ 4] [0320] +18:17:30 [ 18] [ 4] [6011] +18:17:30 [ 32] [ 6] [220699] +18:17:30 [ 35] [ 32] [6213543000111756=491212011175804] +18:17:30 [ 37] [ 12] [507900270564] +18:17:30 [ 38] [ 6] [584023] +18:17:30 [ 39] [ 2] [00] +18:17:30 [ 41] [ 8] [01001500] +18:17:30 [ 49] [ 3] [418] +18:17:30 [ 54] [ 40] [2001418C0010490692652002418C001049069265] +18:17:30 ============================================================================ +18:17:30 Sending to : +18:17:30 ============================================================================ +18:17:30 + + +waiting on router queue for slot.... +18:17:31 ============================================================================ +18:17:31 Slot Id : <392> +18:17:31 Transaction Type : RESPONSE +18:17:31 Received From : +18:17:31 ============================================================================ +18:17:31 FNo. Len. Field Value +18:17:31 ============================================================================ +18:17:31 [ 1] [ 4] [0210] +18:17:31 [ 2] [ 16] [6213543000111756] +18:17:31 [ 3] [ 6] [012000] +18:17:31 [ 4] [ 12] [000050000000] +18:17:31 [ 7] [ 10] [0320182514] +18:17:31 [ 11] [ 6] [009795] +18:17:31 [ 12] [ 6] [182514] +18:17:31 [ 13] [ 4] [0320] +18:17:31 [ 15] [ 4] [0320] +18:17:31 [ 18] [ 4] [6011] +18:17:31 [ 32] [ 6] [220699] +18:17:31 [ 35] [ 32] [6213543000111756=491212011175804] +18:17:31 [ 37] [ 12] [507900270564] +18:17:31 [ 38] [ 6] [584023] +18:17:31 [ 39] [ 2] [00] +18:17:31 [ 41] [ 8] [01001500] +18:17:31 [ 49] [ 3] [418] +18:17:31 [ 54] [ 40] [2001418C0010490692652002418C001049069265] +18:17:31 ============================================================================ +18:17:31 Calculate Source COMM Id = 1 +18:17:31 ============================================================================ +18:17:31 + + +waiting on router queue for slot.... +18:17:32 ============================================================================ +18:17:32 Slot Id : <450> +18:17:32 Transaction Type : REQUEST +18:17:32 Received From : +18:17:32 ============================================================================ +18:17:32 FNo. Len. Field Value +18:17:32 ============================================================================ +18:17:32 [ 1] [ 4] [0800] +18:17:32 [ 7] [ 10] [0320111638] +18:17:32 [ 11] [ 6] [157664] +18:17:32 [ 70] [ 3] [301] +18:17:32 ============================================================================ +18:17:32 + + +waiting on router queue for slot.... +18:17:32 Sending to : +18:17:32 ============================================================================ +18:17:32 ============================================================================ +18:17:32 Slot Id : <450> +18:17:32 Transaction Type : RESPONSE +18:17:32 Received From : +18:17:32 ============================================================================ +18:17:32 FNo. Len. Field Value +18:17:32 ============================================================================ +18:17:32 [ 1] [ 4] [0810] +18:17:32 [ 7] [ 10] [0320111638] +18:17:32 [ 11] [ 6] [157664] +18:17:32 [ 39] [ 2] [00] +18:17:32 [ 70] [ 3] [301] +18:17:32 ============================================================================ +18:17:32 Calculate Source COMM Id = 2 +18:17:32 ============================================================================ +18:17:32 + + +waiting on router queue for slot.... +18:17:43 ============================================================================ +18:17:43 Slot Id : <417> +18:17:43 Transaction Type : REQUEST +18:17:43 Received From : +18:17:43 ============================================================================ +18:17:43 FNo. Len. Field Value +18:17:43 ============================================================================ +18:17:43 [ 1] [ 4] [0800] +18:17:43 [ 7] [ 10] [0320111650] +18:17:43 [ 11] [ 6] [157665] +18:17:43 [ 70] [ 3] [301] +18:17:43 ============================================================================ +18:17:43 + + +waiting on router queue for slot.... +18:17:43 Sending to : +18:17:43 ============================================================================ +18:17:43 ============================================================================ +18:17:43 Slot Id : <417> +18:17:43 Transaction Type : RESPONSE +18:17:43 Received From : +18:17:43 ============================================================================ +18:17:43 FNo. Len. Field Value +18:17:43 ============================================================================ +18:17:43 [ 1] [ 4] [0810] +18:17:43 [ 7] [ 10] [0320111650] +18:17:43 [ 11] [ 6] [157665] +18:17:43 [ 39] [ 2] [00] +18:17:43 [ 70] [ 3] [301] +18:17:43 ============================================================================ +18:17:43 Calculate Source COMM Id = 2 +18:17:43 ============================================================================ +18:17:43 + + +waiting on router queue for slot.... +18:17:46 ============================================================================ +18:17:46 Slot Id : <412> +18:17:46 Transaction Type : REQUEST +18:17:46 Received From : +18:17:46 ============================================================================ +18:17:46 FNo. Len. Field Value +18:17:46 ============================================================================ +18:17:46 [ 1] [ 4] [0200] +18:17:46 [ 2] [ 16] [6213545000145064] +18:17:46 [ 3] [ 6] [010000] +18:17:46 [ 4] [ 12] [000050000000] +18:17:46 [ 7] [ 10] [0320111652] +18:17:46 [ 11] [ 6] [271166] +18:17:46 [ 12] [ 6] [181652] +18:17:46 [ 13] [ 4] [0320] +18:17:46 [ 14] [ 4] [4912] +18:17:46 [ 15] [ 4] [0320] +18:17:46 [ 18] [ 4] [6011] +18:17:46 [ 19] [ 3] [418] +18:17:46 [ 22] [ 3] [021] +18:17:46 [ 25] [ 2] [01] +18:17:46 [ 28] [ 9] [D00002000] +18:17:46 [ 32] [ 6] [180893] +18:17:46 [ 35] [ 32] [6213545000145064=491212014506281] +18:17:46 [ 37] [ 12] [507911271166] +18:17:46 [ 41] [ 8] [0121SKBR] +18:17:46 [ 42] [ 15] [999999 ] +18:17:46 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +18:17:46 [ 49] [ 3] [418] +18:17:46 [ 52] [ 16] [3454DD1C991077F3] +18:17:46 ============================================================================ +18:17:46 + + +waiting on router queue for slot.... +18:17:46 Sending to : +18:17:46 ============================================================================ +18:17:46 Sending to : +18:17:46 ============================================================================ +18:17:47 ============================================================================ +18:17:47 Slot Id : <412> +18:17:47 Transaction Type : REQUEST +18:17:47 Received From : +18:17:47 ============================================================================ +18:17:47 FNo. Len. Field Value +18:17:47 ============================================================================ +18:17:47 [ 1] [ 4] [0200] +18:17:47 [ 2] [ 16] [6213545000145064] +18:17:47 [ 3] [ 6] [010000] +18:17:47 [ 4] [ 12] [000050000000] +18:17:47 [ 7] [ 10] [0320111652] +18:17:47 [ 11] [ 6] [271166] +18:17:47 [ 12] [ 6] [181652] +18:17:47 [ 13] [ 4] [0320] +18:17:47 [ 14] [ 4] [4912] +18:17:47 [ 15] [ 4] [0320] +18:17:47 [ 18] [ 4] [6011] +18:17:47 [ 19] [ 3] [418] +18:17:47 [ 22] [ 3] [021] +18:17:47 [ 25] [ 2] [01] +18:17:47 [ 28] [ 9] [D00002000] +18:17:47 [ 32] [ 6] [180893] +18:17:47 [ 35] [ 32] [6213545000145064=491212014506281] +18:17:47 [ 37] [ 12] [507911271166] +18:17:47 [ 41] [ 8] [0121SKBR] +18:17:47 [ 42] [ 15] [999999 ] +18:17:47 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +18:17:47 [ 49] [ 3] [418] +18:17:47 [ 52] [ 16] [3454DD1C991077F3] +18:17:47 ============================================================================ +18:17:47 + + +waiting on router queue for slot.... +18:17:47 Sending to : +18:17:47 ============================================================================ +18:17:47 ============================================================================ +18:17:47 Slot Id : <412> +18:17:47 Transaction Type : REQUEST +18:17:47 Received From : +18:17:47 ============================================================================ +18:17:47 FNo. Len. Field Value +18:17:47 ============================================================================ +18:17:47 [ 1] [ 4] [0200] +18:17:47 [ 2] [ 16] [6213545000145064] +18:17:47 [ 3] [ 6] [010000] +18:17:47 [ 4] [ 12] [000050000000] +18:17:47 [ 7] [ 10] [0320111652] +18:17:47 [ 11] [ 6] [271166] +18:17:47 [ 12] [ 6] [181652] +18:17:47 [ 13] [ 4] [0320] +18:17:47 [ 14] [ 4] [4912] +18:17:47 [ 15] [ 4] [0320] +18:17:47 [ 18] [ 4] [6011] +18:17:47 [ 19] [ 3] [418] +18:17:47 [ 22] [ 3] [021] +18:17:47 [ 25] [ 2] [01] +18:17:47 [ 28] [ 9] [D00002000] +18:17:47 [ 32] [ 6] [180893] +18:17:47 [ 35] [ 32] [6213545000145064=491212014506281] +18:17:47 [ 37] [ 12] [507911271166] +18:17:47 [ 41] [ 8] [0121SKBR] +18:17:47 [ 42] [ 15] [999999 ] +18:17:47 [ 43] [ 40] [ATM SEKONG BRANCH LOCATION, Lamam, Lao P] +18:17:47 [ 49] [ 3] [418] +18:17:47 [ 52] [ 16] [CC31C89439BEC5A7] +18:17:47 ============================================================================ +18:17:47 + + +waiting on router queue for slot.... +18:17:47 Sending to : <0> +18:17:47 ============================================================================ +18:17:47 ============================================================================ +18:17:47 Slot Id : <412> +18:17:47 Transaction Type : RESPONSE +18:17:47 Received From : +18:17:47 ============================================================================ +18:17:47 FNo. Len. Field Value +18:17:47 ============================================================================ +18:17:47 [ 1] [ 4] [0210] +18:17:47 [ 2] [ 16] [6213545000145064] +18:17:47 [ 3] [ 6] [010000] +18:17:47 [ 4] [ 12] [000050000000] +18:17:47 [ 7] [ 10] [0320111652] +18:17:47 [ 11] [ 6] [271166] +18:17:47 [ 12] [ 6] [181652] +18:17:47 [ 13] [ 4] [0320] +18:17:47 [ 15] [ 4] [0320] +18:17:47 [ 18] [ 4] [6011] +18:17:47 [ 19] [ 3] [418] +18:17:47 [ 32] [ 6] [180893] +18:17:47 [ 35] [ 32] [6213545000145064=491212014506281] +18:17:47 [ 37] [ 12] [507911271166] +18:17:47 [ 38] [ 6] [000731] +18:17:47 [ 39] [ 2] [00] +18:17:47 [ 41] [ 8] [0121SKBR] +18:17:47 [ 49] [ 3] [418] +18:17:47 [ 54] [ 40] [0001418C0025072458640002418C002507245864] +18:17:47 ============================================================================ +18:17:47 Sending to : +18:17:47 ============================================================================ +18:17:47 + + +waiting on router queue for slot.... +18:17:49 ============================================================================ +18:17:49 Slot Id : <412> +18:17:49 Transaction Type : RESPONSE +18:17:49 Received From : +18:17:49 ============================================================================ +18:17:49 FNo. Len. Field Value +18:17:49 ============================================================================ +18:17:49 [ 1] [ 4] [0210] +18:17:49 [ 2] [ 16] [6213545000145064] +18:17:49 [ 3] [ 6] [010000] +18:17:49 [ 4] [ 12] [000050000000] +18:17:49 [ 7] [ 10] [0320111652] +18:17:49 [ 11] [ 6] [271166] +18:17:49 [ 12] [ 6] [181652] +18:17:49 [ 13] [ 4] [0320] +18:17:49 [ 15] [ 4] [0320] +18:17:49 [ 18] [ 4] [6011] +18:17:49 [ 19] [ 3] [418] +18:17:49 [ 32] [ 6] [180893] +18:17:49 [ 35] [ 32] [6213545000145064=491212014506281] +18:17:49 [ 37] [ 12] [507911271166] +18:17:49 [ 38] [ 6] [000731] +18:17:49 [ 39] [ 2] [00] +18:17:49 [ 41] [ 8] [0121SKBR] +18:17:49 [ 49] [ 3] [418] +18:17:49 [ 54] [ 40] [0001418C0025072458640002418C002507245864] +18:17:49 ============================================================================ +18:17:49 Calculate Source COMM Id = 2 +18:17:49 ============================================================================ +18:17:49 + + +waiting on router queue for slot.... +18:17:56 ============================================================================ +18:17:56 Slot Id : <447> +18:17:56 Transaction Type : REQUEST +18:17:56 Received From : +18:17:56 ============================================================================ +18:17:56 FNo. Len. Field Value +18:17:56 ============================================================================ +18:17:56 [ 1] [ 4] [0200] +18:17:56 [ 2] [ 16] [6688990107476101] +18:17:56 [ 3] [ 6] [010000] +18:17:56 [ 4] [ 12] [000100000000] +18:17:56 [ 7] [ 10] [0320111702] +18:17:56 [ 11] [ 6] [271170] +18:17:56 [ 12] [ 6] [181702] +18:17:56 [ 13] [ 4] [0320] +18:17:56 [ 14] [ 4] [4403] +18:17:56 [ 15] [ 4] [0320] +18:17:56 [ 18] [ 4] [6011] +18:17:56 [ 19] [ 3] [418] +18:17:56 [ 22] [ 3] [021] +18:17:56 [ 25] [ 2] [01] +18:17:56 [ 28] [ 9] [D00002000] +18:17:56 [ 32] [ 6] [180893] +18:17:56 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:17:56 [ 37] [ 12] [507911271170] +18:17:56 [ 41] [ 8] [0262PSLB] +18:17:56 [ 42] [ 15] [999999 ] +18:17:56 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +18:17:56 [ 49] [ 3] [418] +18:17:56 [ 52] [ 16] [0A42ACE4CBB6BEC3] +18:17:56 ============================================================================ +18:17:56 + + +waiting on router queue for slot.... +18:17:56 Sending to : +18:17:56 ============================================================================ +18:17:56 Sending to : +18:17:56 ============================================================================ +18:17:56 ============================================================================ +18:17:56 Slot Id : <447> +18:17:56 Transaction Type : REQUEST +18:17:56 Received From : +18:17:56 ============================================================================ +18:17:56 FNo. Len. Field Value +18:17:56 ============================================================================ +18:17:56 [ 1] [ 4] [0200] +18:17:56 [ 2] [ 16] [6688990107476101] +18:17:56 [ 3] [ 6] [010000] +18:17:56 [ 4] [ 12] [000100000000] +18:17:56 [ 7] [ 10] [0320111702] +18:17:56 [ 11] [ 6] [271170] +18:17:56 [ 12] [ 6] [181702] +18:17:56 [ 13] [ 4] [0320] +18:17:56 [ 14] [ 4] [4403] +18:17:56 [ 15] [ 4] [0320] +18:17:56 [ 18] [ 4] [6011] +18:17:56 [ 19] [ 3] [418] +18:17:56 [ 22] [ 3] [021] +18:17:56 [ 25] [ 2] [01] +18:17:56 [ 28] [ 9] [D00002000] +18:17:56 [ 32] [ 6] [180893] +18:17:56 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:17:56 [ 37] [ 12] [507911271170] +18:17:56 [ 41] [ 8] [0262PSLB] +18:17:56 [ 42] [ 15] [999999 ] +18:17:56 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +18:17:56 [ 49] [ 3] [418] +18:17:56 [ 52] [ 16] [0A42ACE4CBB6BEC3] +18:17:56 ============================================================================ +18:17:56 + + +waiting on router queue for slot.... +18:17:56 Sending to : +18:17:56 ============================================================================ +18:17:56 ============================================================================ +18:17:56 Slot Id : <447> +18:17:56 Transaction Type : REQUEST +18:17:56 Received From : +18:17:56 ============================================================================ +18:17:56 FNo. Len. Field Value +18:17:56 ============================================================================ +18:17:56 [ 1] [ 4] [0200] +18:17:56 [ 2] [ 16] [6688990107476101] +18:17:56 [ 3] [ 6] [010000] +18:17:56 [ 4] [ 12] [000100000000] +18:17:56 [ 7] [ 10] [0320111702] +18:17:56 [ 11] [ 6] [271170] +18:17:56 [ 12] [ 6] [181702] +18:17:56 [ 13] [ 4] [0320] +18:17:56 [ 14] [ 4] [4403] +18:17:56 [ 15] [ 4] [0320] +18:17:56 [ 18] [ 4] [6011] +18:17:56 [ 19] [ 3] [418] +18:17:56 [ 22] [ 3] [021] +18:17:56 [ 25] [ 2] [01] +18:17:56 [ 28] [ 9] [D00002000] +18:17:56 [ 32] [ 6] [180893] +18:17:56 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:17:56 [ 37] [ 12] [507911271170] +18:17:56 [ 41] [ 8] [0262PSLB] +18:17:56 [ 42] [ 15] [999999 ] +18:17:56 [ 43] [ 40] [ATM PHONGSALY BUNNEUA UNIT LOCATION, Bou] +18:17:56 [ 49] [ 3] [418] +18:17:56 [ 52] [ 16] [914B2E47AB349A58] +18:17:56 ============================================================================ +18:17:56 + + +waiting on router queue for slot.... +18:17:56 Sending to : <0> +18:17:56 ============================================================================ +18:17:56 ============================================================================ +18:17:56 Slot Id : <447> +18:17:56 Transaction Type : RESPONSE +18:17:56 Received From : +18:17:56 ============================================================================ +18:17:56 FNo. Len. Field Value +18:17:56 ============================================================================ +18:17:56 [ 1] [ 4] [0210] +18:17:56 [ 2] [ 16] [6688990107476101] +18:17:56 [ 3] [ 6] [010000] +18:17:56 [ 4] [ 12] [000100000000] +18:17:56 [ 7] [ 10] [0320111702] +18:17:56 [ 11] [ 6] [271170] +18:17:56 [ 12] [ 6] [181702] +18:17:56 [ 13] [ 4] [0320] +18:17:56 [ 15] [ 4] [0320] +18:17:56 [ 18] [ 4] [6011] +18:17:56 [ 19] [ 3] [418] +18:17:56 [ 22] [ 3] [021] +18:17:56 [ 32] [ 6] [180893] +18:17:56 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:17:56 [ 37] [ 12] [507911271170] +18:17:56 [ 39] [ 2] [14] +18:17:56 [ 41] [ 8] [0262PSLB] +18:17:56 [ 49] [ 3] [418] +18:17:56 ============================================================================ +18:17:56 Sending to : +18:17:56 ============================================================================ +18:17:56 + + +waiting on router queue for slot.... +18:17:58 ============================================================================ +18:17:58 Slot Id : <447> +18:17:58 Transaction Type : RESPONSE +18:17:58 Received From : +18:17:58 ============================================================================ +18:17:58 FNo. Len. Field Value +18:17:58 ============================================================================ +18:17:58 [ 1] [ 4] [0210] +18:17:58 [ 2] [ 16] [6688990107476101] +18:17:58 [ 3] [ 6] [010000] +18:17:58 [ 4] [ 12] [000100000000] +18:17:58 [ 7] [ 10] [0320111702] +18:17:58 [ 11] [ 6] [271170] +18:17:58 [ 12] [ 6] [181702] +18:17:58 [ 13] [ 4] [0320] +18:17:58 [ 15] [ 4] [0320] +18:17:58 [ 18] [ 4] [6011] +18:17:58 [ 19] [ 3] [418] +18:17:58 [ 22] [ 3] [021] +18:17:58 [ 32] [ 6] [180893] +18:17:58 [ 35] [ 37] [6688990107476101=44031231610154100000] +18:17:58 [ 37] [ 12] [507911271170] +18:17:58 [ 39] [ 2] [14] +18:17:58 [ 41] [ 8] [0262PSLB] +18:17:58 [ 49] [ 3] [418] +18:17:58 ============================================================================ +18:17:58 Calculate Source COMM Id = 2 +18:17:58 ============================================================================ +18:17:58 + + +waiting on router queue for slot.... +18:18:03 ============================================================================ +18:18:03 Slot Id : <391> +18:18:03 Transaction Type : REQUEST +18:18:03 Received From : +18:18:03 ============================================================================ +18:18:03 FNo. Len. Field Value +18:18:03 ============================================================================ +18:18:03 [ 1] [ 4] [0800] +18:18:03 [ 2] [ 5] [02531] +18:18:03 [ 3] [ 6] [579188] +18:18:03 [ 7] [ 10] [0320111803] +18:18:03 [ 11] [ 6] [807474] +18:18:03 [ 15] [ 10] [0320111803] +18:18:03 [ 37] [ 11] [57918807474] +18:18:03 [ 70] [ 3] [001] +18:18:03 ============================================================================ +18:18:03 + + +waiting on router queue for slot.... +18:18:03 ============================================================================ +18:18:03 Slot Id : <391> +18:18:03 Transaction Type : RESPONSE +18:18:03 Received From : +18:18:03 ============================================================================ +18:18:03 FNo. Len. Field Value +18:18:03 ============================================================================ +18:18:03 [ 1] [ 4] [0810] +18:18:03 [ 7] [ 10] [0320111803] +18:18:03 [ 11] [ 6] [807474] +18:18:03 [ 15] [ 4] [0320] +18:18:03 [ 37] [ 12] [57918807474] +18:18:03 [ 39] [ 2] [00] +18:18:03 [ 70] [ 3] [001] +18:18:03 ============================================================================ +18:18:03 Sending to : +18:18:03 ============================================================================ +18:18:03 + + +waiting on router queue for slot.... +18:18:09 ============================================================================ +18:18:09 Slot Id : <405> +18:18:09 Transaction Type : REQUEST +18:18:09 Received From : +18:18:09 ============================================================================ +18:18:09 FNo. Len. Field Value +18:18:09 ============================================================================ +18:18:09 [ 1] [ 4] [0800] +18:18:09 [ 7] [ 10] [0320111716] +18:18:09 [ 11] [ 6] [157666] +18:18:09 [ 70] [ 3] [301] +18:18:09 ============================================================================ +18:18:09 + + +waiting on router queue for slot.... +18:18:09 Sending to : +18:18:09 ============================================================================ +18:18:09 ============================================================================ +18:18:09 Slot Id : <405> +18:18:09 Transaction Type : RESPONSE +18:18:09 Received From : +18:18:09 ============================================================================ +18:18:09 FNo. Len. Field Value +18:18:09 ============================================================================ +18:18:09 [ 1] [ 4] [0810] +18:18:09 [ 7] [ 10] [0320111716] +18:18:09 [ 11] [ 6] [157666] +18:18:09 [ 39] [ 2] [00] +18:18:09 [ 70] [ 3] [301] +18:18:09 ============================================================================ +18:18:09 Calculate Source COMM Id = 2 +18:18:09 ============================================================================ +18:18:09 + + +waiting on router queue for slot.... +18:18:19 ============================================================================ +18:18:19 Slot Id : <429> +18:18:19 Transaction Type : REQUEST +18:18:19 Received From : +18:18:19 ============================================================================ +18:18:19 FNo. Len. Field Value +18:18:19 ============================================================================ +18:18:19 [ 1] [ 4] [0800] +18:18:19 [ 7] [ 10] [0320111726] +18:18:19 [ 11] [ 6] [157667] +18:18:19 [ 70] [ 3] [301] +18:18:19 ============================================================================ +18:18:19 + + +waiting on router queue for slot.... +18:18:19 Sending to : +18:18:19 ============================================================================ +18:18:19 ============================================================================ +18:18:19 Slot Id : <429> +18:18:19 Transaction Type : RESPONSE +18:18:19 Received From : +18:18:19 ============================================================================ +18:18:19 FNo. Len. Field Value +18:18:19 ============================================================================ +18:18:19 [ 1] [ 4] [0810] +18:18:19 [ 7] [ 10] [0320111726] +18:18:19 [ 11] [ 6] [157667] +18:18:19 [ 39] [ 2] [00] +18:18:19 [ 70] [ 3] [301] +18:18:19 ============================================================================ +18:18:19 Calculate Source COMM Id = 2 +18:18:19 ============================================================================ +18:18:19 + + +waiting on router queue for slot.... +18:18:22 ============================================================================ +18:18:22 Slot Id : <443> +18:18:22 Transaction Type : REQUEST +18:18:22 Received From : +18:18:22 ============================================================================ +18:18:22 FNo. Len. Field Value +18:18:22 ============================================================================ +18:18:22 [ 1] [ 4] [0200] +18:18:22 [ 2] [ 16] [6213545000462717] +18:18:22 [ 3] [ 6] [301000] +18:18:22 [ 4] [ 12] [000000000000] +18:18:22 [ 7] [ 10] [0320181612] +18:18:22 [ 11] [ 6] [954528] +18:18:22 [ 12] [ 6] [181612] +18:18:22 [ 13] [ 4] [0320] +18:18:22 [ 15] [ 4] [0320] +18:18:22 [ 18] [ 4] [6011] +18:18:22 [ 19] [ 3] [418] +18:18:22 [ 22] [ 3] [021] +18:18:22 [ 25] [ 2] [01] +18:18:22 [ 28] [ 9] [D00000000] +18:18:22 [ 32] [ 6] [668899] +18:18:22 [ 35] [ 32] [6213545000462717=491212016271022] +18:18:22 [ 37] [ 12] [507900109414] +18:18:22 [ 41] [ 8] [03020002] +18:18:22 [ 42] [ 15] [APT ] +18:18:22 [ 43] [ 40] [ HEAD OFFICE 02 CHANTHABOU] +18:18:22 [ 49] [ 3] [418] +18:18:22 [ 52] [ 16] [0CF820CE8AB287BA] +18:18:22 ============================================================================ +18:18:22 + + +waiting on router queue for slot.... +18:18:22 Sending to : +18:18:22 ============================================================================ +18:18:22 Sending to : +18:18:22 ============================================================================ +18:18:23 ============================================================================ +18:18:23 Slot Id : <443> +18:18:23 Transaction Type : REQUEST +18:18:23 Received From : +18:18:23 ============================================================================ +18:18:23 FNo. Len. Field Value +18:18:23 ============================================================================ +18:18:23 [ 1] [ 4] [0200] +18:18:23 [ 2] [ 16] [6213545000462717] +18:18:23 [ 3] [ 6] [301000] +18:18:23 [ 4] [ 12] [000000000000] +18:18:23 [ 7] [ 10] [0320181612] +18:18:23 [ 11] [ 6] [954528] +18:18:23 [ 12] [ 6] [181612] +18:18:23 [ 13] [ 4] [0320] +18:18:23 [ 15] [ 4] [0320] +18:18:23 [ 18] [ 4] [6011] +18:18:23 [ 19] [ 3] [418] +18:18:23 [ 22] [ 3] [021] +18:18:23 [ 25] [ 2] [01] +18:18:23 [ 28] [ 9] [D00000000] +18:18:23 [ 32] [ 6] [668899] +18:18:23 [ 35] [ 32] [6213545000462717=491212016271022] +18:18:23 [ 37] [ 12] [507900109414] +18:18:23 [ 41] [ 8] [03020002] +18:18:23 [ 42] [ 15] [APT ] +18:18:23 [ 43] [ 40] [ HEAD OFFICE 02 CHANTHABOU] +18:18:23 [ 49] [ 3] [418] +18:18:23 [ 52] [ 16] [0CF820CE8AB287BA] +18:18:23 ============================================================================ +18:18:23 + + +waiting on router queue for slot.... +18:18:23 Sending to : +18:18:23 ============================================================================ +18:18:23 ============================================================================ +18:18:23 Slot Id : <443> +18:18:23 Transaction Type : REQUEST +18:18:23 Received From : +18:18:23 ============================================================================ +18:18:23 FNo. Len. Field Value +18:18:23 ============================================================================ +18:18:23 [ 1] [ 4] [0200] +18:18:23 [ 2] [ 16] [6213545000462717] +18:18:23 [ 3] [ 6] [301000] +18:18:23 [ 4] [ 12] [000000000000] +18:18:23 [ 7] [ 10] [0320181612] +18:18:23 [ 11] [ 6] [954528] +18:18:23 [ 12] [ 6] [181612] +18:18:23 [ 13] [ 4] [0320] +18:18:23 [ 15] [ 4] [0320] +18:18:23 [ 18] [ 4] [6011] +18:18:23 [ 19] [ 3] [418] +18:18:23 [ 22] [ 3] [021] +18:18:23 [ 25] [ 2] [01] +18:18:23 [ 28] [ 9] [D00000000] +18:18:23 [ 32] [ 6] [668899] +18:18:23 [ 35] [ 32] [6213545000462717=491212016271022] +18:18:23 [ 37] [ 12] [507900109414] +18:18:23 [ 41] [ 8] [03020002] +18:18:23 [ 42] [ 15] [APT ] +18:18:23 [ 43] [ 40] [ HEAD OFFICE 02 CHANTHABOU] +18:18:23 [ 49] [ 3] [418] +18:18:23 [ 52] [ 16] [7930A78E5BEFFEE3] +18:18:23 ============================================================================ +18:18:23 + + +waiting on router queue for slot.... +18:18:23 Sending to : <0> +18:18:23 ============================================================================ +18:18:23 ============================================================================ +18:18:23 Slot Id : <443> +18:18:23 Transaction Type : RESPONSE +18:18:23 Received From : +18:18:23 ============================================================================ +18:18:23 FNo. Len. Field Value +18:18:23 ============================================================================ +18:18:23 [ 1] [ 4] [0210] +18:18:23 [ 2] [ 16] [6213545000462717] +18:18:23 [ 3] [ 6] [301000] +18:18:23 [ 4] [ 12] [000000000000] +18:18:23 [ 7] [ 10] [0320181612] +18:18:23 [ 11] [ 6] [954528] +18:18:23 [ 12] [ 6] [181612] +18:18:23 [ 13] [ 4] [0320] +18:18:23 [ 15] [ 4] [0320] +18:18:23 [ 18] [ 4] [6011] +18:18:23 [ 19] [ 3] [418] +18:18:23 [ 32] [ 6] [668899] +18:18:23 [ 35] [ 32] [6213545000462717=491212016271022] +18:18:23 [ 37] [ 12] [507900109414] +18:18:23 [ 38] [ 6] [150764] +18:18:23 [ 39] [ 2] [00] +18:18:23 [ 41] [ 8] [03020002] +18:18:23 [ 49] [ 3] [418] +18:18:23 [ 54] [ 40] [1001418C0003009590001002418C000300959000] +18:18:23 ============================================================================ +18:18:23 Sending to : +18:18:23 ============================================================================ +18:18:23 + + +waiting on router queue for slot.... +18:18:25 ============================================================================ +18:18:25 Slot Id : <443> +18:18:25 Transaction Type : RESPONSE +18:18:25 Received From : +18:18:25 ============================================================================ +18:18:25 FNo. Len. Field Value +18:18:25 ============================================================================ +18:18:25 [ 1] [ 4] [0210] +18:18:25 [ 2] [ 16] [6213545000462717] +18:18:25 [ 3] [ 6] [301000] +18:18:25 [ 4] [ 12] [000000000000] +18:18:25 [ 7] [ 10] [0320181612] +18:18:25 [ 11] [ 6] [954528] +18:18:25 [ 12] [ 6] [181612] +18:18:25 [ 13] [ 4] [0320] +18:18:25 [ 15] [ 4] [0320] +18:18:25 [ 18] [ 4] [6011] +18:18:25 [ 19] [ 3] [418] +18:18:25 [ 32] [ 6] [668899] +18:18:25 [ 35] [ 32] [6213545000462717=491212016271022] +18:18:25 [ 37] [ 12] [507900109414] +18:18:25 [ 38] [ 6] [150764] +18:18:25 [ 39] [ 2] [00] +18:18:25 [ 41] [ 8] [03020002] +18:18:25 [ 49] [ 3] [418] +18:18:25 [ 54] [ 40] [1001418C0003009590001002418C000300959000] +18:18:25 ============================================================================ +18:18:25 Calculate Source COMM Id = 4 +18:18:25 ============================================================================ +18:18:25 + + +waiting on router queue for slot.... +18:18:28 ============================================================================ +18:18:28 Slot Id : <386> +18:18:28 Transaction Type : REQUEST +18:18:28 Received From : +18:18:28 ============================================================================ +18:18:28 FNo. Len. Field Value +18:18:28 ============================================================================ +18:18:28 [ 1] [ 4] [0800] +18:18:28 [ 7] [ 10] [0321013017] +18:18:28 [ 11] [ 6] [183017] +18:18:28 [ 37] [ 12] [57918183017] +18:18:28 [ 70] [ 3] [301] +18:18:28 ============================================================================ +18:18:28 + + +waiting on router queue for slot.... +18:18:28 Sending to : +18:18:28 ============================================================================ +18:18:28 ============================================================================ +18:18:28 Slot Id : <386> +18:18:28 Transaction Type : RESPONSE +18:18:28 Received From : +18:18:28 ============================================================================ +18:18:28 FNo. Len. Field Value +18:18:28 ============================================================================ +18:18:28 [ 1] [ 4] [0810] +18:18:28 [ 7] [ 10] [0321013017] +18:18:28 [ 11] [ 6] [183017] +18:18:28 [ 37] [ 12] [579181830170] +18:18:28 [ 39] [ 2] [00] +18:18:28 [ 70] [ 3] [810] +18:18:28 ============================================================================ +18:18:28 Calculate Source COMM Id = 6 +18:18:28 ============================================================================ +18:18:28 + + +waiting on router queue for slot.... +18:18:30 ============================================================================ +18:18:30 Slot Id : <377> +18:18:30 Transaction Type : REQUEST +18:18:30 Received From : +18:18:30 ============================================================================ +18:18:30 FNo. Len. Field Value +18:18:30 ============================================================================ +18:18:30 [ 1] [ 4] [0800] +18:18:30 [ 7] [ 10] [0320111737] +18:18:30 [ 11] [ 6] [157668] +18:18:30 [ 70] [ 3] [301] +18:18:30 ============================================================================ +18:18:30 + + +waiting on router queue for slot.... +18:18:30 Sending to : +18:18:30 ============================================================================ +18:18:30 ============================================================================ +18:18:30 Slot Id : <377> +18:18:30 Transaction Type : RESPONSE +18:18:30 Received From : +18:18:30 ============================================================================ +18:18:30 FNo. Len. Field Value +18:18:30 ============================================================================ +18:18:30 [ 1] [ 4] [0810] +18:18:30 [ 7] [ 10] [0320111737] +18:18:30 [ 11] [ 6] [157668] +18:18:30 [ 39] [ 2] [00] +18:18:30 [ 70] [ 3] [301] +18:18:30 ============================================================================ +18:18:30 Calculate Source COMM Id = 2 +18:18:30 ============================================================================ +18:18:30 + + +waiting on router queue for slot.... +18:18:41 ============================================================================ +18:18:41 Slot Id : <446> +18:18:41 Transaction Type : REQUEST +18:18:41 Received From : +18:18:41 ============================================================================ +18:18:41 FNo. Len. Field Value +18:18:41 ============================================================================ +18:18:41 [ 1] [ 4] [0800] +18:18:41 [ 7] [ 10] [0320111748] +18:18:41 [ 11] [ 6] [157669] +18:18:41 [ 70] [ 3] [301] +18:18:41 ============================================================================ +18:18:41 + + +waiting on router queue for slot.... +18:18:41 Sending to : +18:18:41 ============================================================================ +18:18:41 ============================================================================ +18:18:41 Slot Id : <446> +18:18:41 Transaction Type : RESPONSE +18:18:41 Received From : +18:18:41 ============================================================================ +18:18:41 FNo. Len. Field Value +18:18:41 ============================================================================ +18:18:41 [ 1] [ 4] [0810] +18:18:41 [ 7] [ 10] [0320111748] +18:18:41 [ 11] [ 6] [157669] +18:18:41 [ 39] [ 2] [00] +18:18:41 [ 70] [ 3] [301] +18:18:41 ============================================================================ +18:18:41 Calculate Source COMM Id = 2 +18:18:41 ============================================================================ +18:18:41 + + +waiting on router queue for slot.... +18:18:45 ============================================================================ +18:18:45 Slot Id : <404> +18:18:45 Transaction Type : REQUEST +18:18:45 Received From : +18:18:45 ============================================================================ +18:18:45 FNo. Len. Field Value +18:18:45 ============================================================================ +18:18:45 [ 1] [ 4] [0200] +18:18:45 [ 2] [ 16] [6213545000462717] +18:18:45 [ 3] [ 6] [010000] +18:18:45 [ 4] [ 12] [000030000000] +18:18:45 [ 7] [ 10] [0320181635] +18:18:45 [ 11] [ 6] [954534] +18:18:45 [ 12] [ 6] [181635] +18:18:45 [ 13] [ 4] [0320] +18:18:45 [ 15] [ 4] [0320] +18:18:45 [ 18] [ 4] [6011] +18:18:45 [ 19] [ 3] [418] +18:18:45 [ 22] [ 3] [021] +18:18:45 [ 25] [ 2] [01] +18:18:45 [ 28] [ 9] [D00002000] +18:18:45 [ 32] [ 6] [668899] +18:18:45 [ 35] [ 32] [6213545000462717=491212016271022] +18:18:45 [ 37] [ 12] [507900109415] +18:18:45 [ 41] [ 8] [03020002] +18:18:45 [ 42] [ 15] [APT ] +18:18:45 [ 43] [ 40] [ HEAD OFFICE 02 CHANTHABOU] +18:18:45 [ 49] [ 3] [418] +18:18:45 [ 52] [ 16] [0CF820CE8AB287BA] +18:18:45 ============================================================================ +18:18:45 + + +waiting on router queue for slot.... +18:18:45 Sending to : +18:18:45 ============================================================================ +18:18:45 Sending to : +18:18:45 ============================================================================ +18:18:46 ============================================================================ +18:18:46 Slot Id : <404> +18:18:46 Transaction Type : REQUEST +18:18:46 Received From : +18:18:46 ============================================================================ +18:18:46 FNo. Len. Field Value +18:18:46 ============================================================================ +18:18:46 [ 1] [ 4] [0200] +18:18:46 [ 2] [ 16] [6213545000462717] +18:18:46 [ 3] [ 6] [010000] +18:18:46 [ 4] [ 12] [000030000000] +18:18:46 [ 7] [ 10] [0320181635] +18:18:46 [ 11] [ 6] [954534] +18:18:46 [ 12] [ 6] [181635] +18:18:46 [ 13] [ 4] [0320] +18:18:46 [ 15] [ 4] [0320] +18:18:46 [ 18] [ 4] [6011] +18:18:46 [ 19] [ 3] [418] +18:18:46 [ 22] [ 3] [021] +18:18:46 [ 25] [ 2] [01] +18:18:46 [ 28] [ 9] [D00002000] +18:18:46 [ 32] [ 6] [668899] +18:18:46 [ 35] [ 32] [6213545000462717=491212016271022] +18:18:46 [ 37] [ 12] [507900109415] +18:18:46 [ 41] [ 8] [03020002] +18:18:46 [ 42] [ 15] [APT ] +18:18:46 [ 43] [ 40] [ HEAD OFFICE 02 CHANTHABOU] +18:18:46 [ 49] [ 3] [418] +18:18:46 [ 52] [ 16] [0CF820CE8AB287BA] +18:18:46 ============================================================================ +18:18:46 + + +waiting on router queue for slot.... +18:18:46 Sending to : +18:18:46 ============================================================================ +18:18:46 ============================================================================ +18:18:46 Slot Id : <404> +18:18:46 Transaction Type : REQUEST +18:18:46 Received From : +18:18:46 ============================================================================ +18:18:46 FNo. Len. Field Value +18:18:46 ============================================================================ +18:18:46 [ 1] [ 4] [0200] +18:18:46 [ 2] [ 16] [6213545000462717] +18:18:46 [ 3] [ 6] [010000] +18:18:46 [ 4] [ 12] [000030000000] +18:18:46 [ 7] [ 10] [0320181635] +18:18:46 [ 11] [ 6] [954534] +18:18:46 [ 12] [ 6] [181635] +18:18:46 [ 13] [ 4] [0320] +18:18:46 [ 15] [ 4] [0320] +18:18:46 [ 18] [ 4] [6011] +18:18:46 [ 19] [ 3] [418] +18:18:46 [ 22] [ 3] [021] +18:18:46 [ 25] [ 2] [01] +18:18:46 [ 28] [ 9] [D00002000] +18:18:46 [ 32] [ 6] [668899] +18:18:46 [ 35] [ 32] [6213545000462717=491212016271022] +18:18:46 [ 37] [ 12] [507900109415] +18:18:46 [ 41] [ 8] [03020002] +18:18:46 [ 42] [ 15] [APT ] +18:18:46 [ 43] [ 40] [ HEAD OFFICE 02 CHANTHABOU] +18:18:46 [ 49] [ 3] [418] +18:18:46 [ 52] [ 16] [7930A78E5BEFFEE3] +18:18:46 ============================================================================ +18:18:46 + + +waiting on router queue for slot.... +18:18:46 Sending to : <0> +18:18:46 ============================================================================ +18:18:46 ============================================================================ +18:18:46 Slot Id : <404> +18:18:46 Transaction Type : RESPONSE +18:18:46 Received From : +18:18:46 ============================================================================ +18:18:46 FNo. Len. Field Value +18:18:46 ============================================================================ +18:18:46 [ 1] [ 4] [0210] +18:18:46 [ 2] [ 16] [6213545000462717] +18:18:46 [ 3] [ 6] [010000] +18:18:46 [ 4] [ 12] [000030000000] +18:18:46 [ 7] [ 10] [0320181635] +18:18:46 [ 11] [ 6] [954534] +18:18:46 [ 12] [ 6] [181635] +18:18:46 [ 13] [ 4] [0320] +18:18:46 [ 15] [ 4] [0320] +18:18:46 [ 18] [ 4] [6011] +18:18:46 [ 19] [ 3] [418] +18:18:46 [ 32] [ 6] [668899] +18:18:46 [ 35] [ 32] [6213545000462717=491212016271022] +18:18:46 [ 37] [ 12] [507900109415] +18:18:46 [ 38] [ 6] [083373] +18:18:46 [ 39] [ 2] [00] +18:18:46 [ 41] [ 8] [03020002] +18:18:46 [ 49] [ 3] [418] +18:18:46 [ 54] [ 40] [0001418C0002707590000002418C000270759000] +18:18:46 ============================================================================ +18:18:46 Sending to : +18:18:46 ============================================================================ +18:18:46 + + +waiting on router queue for slot.... +18:18:48 ============================================================================ +18:18:48 Slot Id : <404> +18:18:48 Transaction Type : RESPONSE +18:18:48 Received From : +18:18:48 ============================================================================ +18:18:48 FNo. Len. Field Value +18:18:48 ============================================================================ +18:18:48 [ 1] [ 4] [0210] +18:18:48 [ 2] [ 16] [6213545000462717] +18:18:48 [ 3] [ 6] [010000] +18:18:48 [ 4] [ 12] [000030000000] +18:18:48 [ 7] [ 10] [0320181635] +18:18:48 [ 11] [ 6] [954534] +18:18:48 [ 12] [ 6] [181635] +18:18:48 [ 13] [ 4] [0320] +18:18:48 [ 15] [ 4] [0320] +18:18:48 [ 18] [ 4] [6011] +18:18:48 [ 19] [ 3] [418] +18:18:48 [ 32] [ 6] [668899] +18:18:48 [ 35] [ 32] [6213545000462717=491212016271022] +18:18:48 [ 37] [ 12] [507900109415] +18:18:48 [ 38] [ 6] [083373] +18:18:48 [ 39] [ 2] [00] +18:18:48 [ 41] [ 8] [03020002] +18:18:48 [ 49] [ 3] [418] +18:18:48 [ 54] [ 40] [0001418C0002707590000002418C000270759000] +18:18:48 ============================================================================ +18:18:48 Calculate Source COMM Id = 4 +18:18:48 ============================================================================ +18:18:48 + + +waiting on router queue for slot.... +18:18:52 ============================================================================ +18:18:52 Slot Id : <456> +18:18:52 Transaction Type : REQUEST +18:18:52 Received From : +18:18:52 ============================================================================ +18:18:52 FNo. Len. Field Value +18:18:52 ============================================================================ +18:18:52 [ 1] [ 4] [0800] +18:18:52 [ 7] [ 10] [0320111759] +18:18:52 [ 11] [ 6] [157670] +18:18:52 [ 70] [ 3] [301] +18:18:52 ============================================================================ +18:18:52 + + +waiting on router queue for slot.... +18:18:52 Sending to : +18:18:52 ============================================================================ +18:18:52 ============================================================================ +18:18:52 Slot Id : <456> +18:18:52 Transaction Type : RESPONSE +18:18:52 Received From : +18:18:52 ============================================================================ +18:18:52 FNo. Len. Field Value +18:18:52 ============================================================================ +18:18:52 [ 1] [ 4] [0810] +18:18:52 [ 7] [ 10] [0320111759] +18:18:52 [ 11] [ 6] [157670] +18:18:52 [ 39] [ 2] [00] +18:18:52 [ 70] [ 3] [301] +18:18:52 ============================================================================ +18:18:52 Calculate Source COMM Id = 2 +18:18:52 ============================================================================ +18:18:52 + + +waiting on router queue for slot.... +18:18:56 ============================================================================ +18:18:56 Slot Id : <434> +18:18:56 Transaction Type : REQUEST +18:18:56 Received From : +18:18:56 ============================================================================ +18:18:56 FNo. Len. Field Value +18:18:56 ============================================================================ +18:18:56 [ 1] [ 4] [0200] +18:18:56 [ 2] [ 16] [6213544001669073] +18:18:56 [ 3] [ 6] [010000] +18:18:56 [ 4] [ 12] [000010000000] +18:18:56 [ 7] [ 10] [0320111802] +18:18:56 [ 11] [ 6] [271178] +18:18:56 [ 12] [ 6] [181802] +18:18:56 [ 13] [ 4] [0320] +18:18:56 [ 14] [ 4] [4912] +18:18:56 [ 15] [ 4] [0320] +18:18:56 [ 18] [ 4] [6011] +18:18:56 [ 19] [ 3] [418] +18:18:56 [ 22] [ 3] [021] +18:18:56 [ 25] [ 2] [01] +18:18:56 [ 28] [ 9] [D00002000] +18:18:56 [ 32] [ 6] [180893] +18:18:56 [ 35] [ 32] [6213544001669073=491212016907054] +18:18:56 [ 37] [ 12] [507911271178] +18:18:56 [ 41] [ 8] [0120SLVB] +18:18:56 [ 42] [ 15] [999999 ] +18:18:56 [ 43] [ 40] [ATM SALAVAN BRANCH LOCATION, Salavan, La] +18:18:56 [ 49] [ 3] [418] +18:18:56 [ 52] [ 16] [82DAA73211D65195] +18:18:56 ============================================================================ +18:18:56 + + +waiting on router queue for slot.... +18:18:56 Sending to : +18:18:56 ============================================================================ +18:18:56 Sending to : +18:18:56 ============================================================================ +18:18:57 ============================================================================ +18:18:57 Slot Id : <434> +18:18:57 Transaction Type : REQUEST +18:18:57 Received From : +18:18:57 ============================================================================ +18:18:57 FNo. Len. Field Value +18:18:57 ============================================================================ +18:18:57 [ 1] [ 4] [0200] +18:18:57 [ 2] [ 16] [6213544001669073] +18:18:57 [ 3] [ 6] [010000] +18:18:57 [ 4] [ 12] [000010000000] +18:18:57 [ 7] [ 10] [0320111802] +18:18:57 [ 11] [ 6] [271178] +18:18:57 [ 12] [ 6] [181802] +18:18:57 [ 13] [ 4] [0320] +18:18:57 [ 14] [ 4] [4912] +18:18:57 [ 15] [ 4] [0320] +18:18:57 [ 18] [ 4] [6011] +18:18:57 [ 19] [ 3] [418] +18:18:57 [ 22] [ 3] [021] +18:18:57 [ 25] [ 2] [01] +18:18:57 [ 28] [ 9] [D00002000] +18:18:57 [ 32] [ 6] [180893] +18:18:57 [ 35] [ 32] [6213544001669073=491212016907054] +18:18:57 [ 37] [ 12] [507911271178] +18:18:57 [ 41] [ 8] [0120SLVB] +18:18:57 [ 42] [ 15] [999999 ] +18:18:57 [ 43] [ 40] [ATM SALAVAN BRANCH LOCATION, Salavan, La] +18:18:57 [ 49] [ 3] [418] +18:18:57 [ 52] [ 16] [82DAA73211D65195] +18:18:57 ============================================================================ +18:18:57 + + +waiting on router queue for slot.... +18:18:57 Sending to : +18:18:57 ============================================================================ +18:18:57 ============================================================================ +18:18:57 Slot Id : <434> +18:18:57 Transaction Type : REQUEST +18:18:57 Received From : +18:18:57 ============================================================================ +18:18:57 FNo. Len. Field Value +18:18:57 ============================================================================ +18:18:57 [ 1] [ 4] [0200] +18:18:57 [ 2] [ 16] [6213544001669073] +18:18:57 [ 3] [ 6] [010000] +18:18:57 [ 4] [ 12] [000010000000] +18:18:57 [ 7] [ 10] [0320111802] +18:18:57 [ 11] [ 6] [271178] +18:18:57 [ 12] [ 6] [181802] +18:18:57 [ 13] [ 4] [0320] +18:18:57 [ 14] [ 4] [4912] +18:18:57 [ 15] [ 4] [0320] +18:18:57 [ 18] [ 4] [6011] +18:18:57 [ 19] [ 3] [418] +18:18:57 [ 22] [ 3] [021] +18:18:57 [ 25] [ 2] [01] +18:18:57 [ 28] [ 9] [D00002000] +18:18:57 [ 32] [ 6] [180893] +18:18:57 [ 35] [ 32] [6213544001669073=491212016907054] +18:18:57 [ 37] [ 12] [507911271178] +18:18:57 [ 41] [ 8] [0120SLVB] +18:18:57 [ 42] [ 15] [999999 ] +18:18:57 [ 43] [ 40] [ATM SALAVAN BRANCH LOCATION, Salavan, La] +18:18:57 [ 49] [ 3] [418] +18:18:57 [ 52] [ 16] [7D02AC6634802BD9] +18:18:57 ============================================================================ +18:18:57 + + +waiting on router queue for slot.... +18:18:57 Sending to : <0> +18:18:57 ============================================================================ +18:18:57 ============================================================================ +18:18:57 Slot Id : <434> +18:18:57 Transaction Type : RESPONSE +18:18:57 Received From : +18:18:57 ============================================================================ +18:18:57 FNo. Len. Field Value +18:18:57 ============================================================================ +18:18:57 [ 1] [ 4] [0210] +18:18:57 [ 2] [ 16] [6213544001669073] +18:18:57 [ 3] [ 6] [010000] +18:18:57 [ 4] [ 12] [000010000000] +18:18:57 [ 7] [ 10] [0320111802] +18:18:57 [ 11] [ 6] [271178] +18:18:57 [ 12] [ 6] [181802] +18:18:57 [ 13] [ 4] [0320] +18:18:57 [ 15] [ 4] [0320] +18:18:57 [ 18] [ 4] [6011] +18:18:57 [ 19] [ 3] [418] +18:18:57 [ 32] [ 6] [180893] +18:18:57 [ 35] [ 32] [6213544001669073=491212016907054] +18:18:57 [ 37] [ 12] [507911271178] +18:18:57 [ 38] [ 6] [929416] +18:18:57 [ 39] [ 2] [00] +18:18:57 [ 41] [ 8] [0120SLVB] +18:18:57 [ 49] [ 3] [418] +18:18:57 [ 54] [ 40] [0001418C0001911201530002418C000191120153] +18:18:57 ============================================================================ +18:18:57 Sending to : +18:18:57 ============================================================================ +18:18:57 + + +waiting on router queue for slot.... +18:18:59 ============================================================================ +18:18:59 Slot Id : <434> +18:18:59 Transaction Type : RESPONSE +18:18:59 Received From : +18:18:59 ============================================================================ +18:18:59 FNo. Len. Field Value +18:18:59 ============================================================================ +18:18:59 [ 1] [ 4] [0210] +18:18:59 [ 2] [ 16] [6213544001669073] +18:18:59 [ 3] [ 6] [010000] +18:18:59 [ 4] [ 12] [000010000000] +18:18:59 [ 7] [ 10] [0320111802] +18:18:59 [ 11] [ 6] [271178] +18:18:59 [ 12] [ 6] [181802] +18:18:59 [ 13] [ 4] [0320] +18:18:59 [ 15] [ 4] [0320] +18:18:59 [ 18] [ 4] [6011] +18:18:59 [ 19] [ 3] [418] +18:18:59 [ 32] [ 6] [180893] +18:18:59 [ 35] [ 32] [6213544001669073=491212016907054] +18:18:59 [ 37] [ 12] [507911271178] +18:18:59 [ 38] [ 6] [929416] +18:18:59 [ 39] [ 2] [00] +18:18:59 [ 41] [ 8] [0120SLVB] +18:18:59 [ 49] [ 3] [418] +18:18:59 [ 54] [ 40] [0001418C0001911201530002418C000191120153] +18:18:59 ============================================================================ +18:18:59 Calculate Source COMM Id = 2 +18:18:59 ============================================================================ +18:18:59 + + +waiting on router queue for slot.... +18:19:05 ============================================================================ +18:19:05 Slot Id : <424> +18:19:05 Transaction Type : REQUEST +18:19:05 Received From : +18:19:05 ============================================================================ +18:19:05 FNo. Len. Field Value +18:19:05 ============================================================================ +18:19:05 [ 1] [ 4] [0800] +18:19:05 [ 2] [ 5] [02531] +18:19:05 [ 3] [ 6] [579188] +18:19:05 [ 7] [ 10] [0320111905] +18:19:05 [ 11] [ 6] [807475] +18:19:05 [ 15] [ 10] [0320111905] +18:19:05 [ 37] [ 11] [57918807475] +18:19:05 [ 70] [ 3] [001] +18:19:05 ============================================================================ +18:19:05 + + +waiting on router queue for slot.... +18:19:05 ============================================================================ +18:19:05 Slot Id : <424> +18:19:05 Transaction Type : RESPONSE +18:19:05 Received From : +18:19:05 ============================================================================ +18:19:05 FNo. Len. Field Value +18:19:05 ============================================================================ +18:19:05 [ 1] [ 4] [0810] +18:19:05 [ 7] [ 10] [0320111905] +18:19:05 [ 11] [ 6] [807475] +18:19:05 [ 15] [ 4] [0320] +18:19:05 [ 37] [ 12] [57918807475] +18:19:05 [ 39] [ 2] [00] +18:19:05 [ 70] [ 3] [001] +18:19:05 ============================================================================ +18:19:05 Sending to : +18:19:05 ============================================================================ +18:19:05 + + +waiting on router queue for slot.... +18:19:14 ============================================================================ +18:19:14 Slot Id : <445> +18:19:14 Transaction Type : REQUEST +18:19:14 Received From : +18:19:14 ============================================================================ +18:19:14 FNo. Len. Field Value +18:19:14 ============================================================================ +18:19:14 [ 1] [ 4] [0800] +18:19:14 [ 7] [ 10] [0320111820] +18:19:14 [ 11] [ 6] [157671] +18:19:14 [ 70] [ 3] [301] +18:19:14 ============================================================================ +18:19:14 + + +waiting on router queue for slot.... +18:19:14 Sending to : +18:19:14 ============================================================================ +18:19:14 ============================================================================ +18:19:14 Slot Id : <445> +18:19:14 Transaction Type : RESPONSE +18:19:14 Received From : +18:19:14 ============================================================================ +18:19:14 FNo. Len. Field Value +18:19:14 ============================================================================ +18:19:14 [ 1] [ 4] [0810] +18:19:14 [ 7] [ 10] [0320111820] +18:19:14 [ 11] [ 6] [157671] +18:19:14 [ 39] [ 2] [00] +18:19:14 [ 70] [ 3] [301] +18:19:14 ============================================================================ +18:19:14 Calculate Source COMM Id = 2 +18:19:14 ============================================================================ +18:19:14 + + +waiting on router queue for slot.... +18:19:24 ============================================================================ +18:19:24 Slot Id : <442> +18:19:24 Transaction Type : REQUEST +18:19:24 Received From : +18:19:24 ============================================================================ +18:19:24 FNo. Len. Field Value +18:19:24 ============================================================================ +18:19:24 [ 1] [ 4] [0800] +18:19:24 [ 7] [ 10] [0320111831] +18:19:24 [ 11] [ 6] [157672] +18:19:24 [ 70] [ 3] [301] +18:19:24 ============================================================================ +18:19:24 + + +waiting on router queue for slot.... +18:19:24 Sending to : +18:19:24 ============================================================================ +18:19:24 ============================================================================ +18:19:24 Slot Id : <442> +18:19:24 Transaction Type : RESPONSE +18:19:24 Received From : +18:19:24 ============================================================================ +18:19:24 FNo. Len. Field Value +18:19:24 ============================================================================ +18:19:24 [ 1] [ 4] [0810] +18:19:24 [ 7] [ 10] [0320111831] +18:19:24 [ 11] [ 6] [157672] +18:19:24 [ 39] [ 2] [00] +18:19:24 [ 70] [ 3] [301] +18:19:24 ============================================================================ +18:19:24 Calculate Source COMM Id = 2 +18:19:24 ============================================================================ +18:19:24 + + +waiting on router queue for slot.... +18:19:33 ============================================================================ +18:19:33 Slot Id : <438> +18:19:33 Transaction Type : REQUEST +18:19:33 Received From : +18:19:33 ============================================================================ +18:19:33 FNo. Len. Field Value +18:19:33 ============================================================================ +18:19:33 [ 1] [ 4] [0800] +18:19:33 [ 7] [ 10] [0321013122] +18:19:33 [ 11] [ 6] [183122] +18:19:33 [ 37] [ 12] [57918183122] +18:19:33 [ 70] [ 3] [301] +18:19:33 ============================================================================ +18:19:33 + + +waiting on router queue for slot.... +18:19:33 Sending to : +18:19:33 ============================================================================ +18:19:33 ============================================================================ +18:19:33 Slot Id : <438> +18:19:33 Transaction Type : RESPONSE +18:19:33 Received From : +18:19:33 ============================================================================ +18:19:33 FNo. Len. Field Value +18:19:33 ============================================================================ +18:19:33 [ 1] [ 4] [0810] +18:19:33 [ 7] [ 10] [0321013122] +18:19:33 [ 11] [ 6] [183122] +18:19:33 [ 37] [ 12] [579181831220] +18:19:33 [ 39] [ 2] [00] +18:19:33 [ 70] [ 3] [810] +18:19:33 ============================================================================ +18:19:33 Calculate Source COMM Id = 6 +18:19:33 ============================================================================ +18:19:33 + + +waiting on router queue for slot.... +18:19:40 ============================================================================ +18:19:40 Slot Id : <435> +18:19:40 Transaction Type : REQUEST +18:19:40 Received From : +18:19:40 ============================================================================ +18:19:40 FNo. Len. Field Value +18:19:40 ============================================================================ +18:19:40 [ 1] [ 4] [0800] +18:19:40 [ 7] [ 10] [0320111846] +18:19:40 [ 11] [ 6] [157673] +18:19:40 [ 70] [ 3] [301] +18:19:40 ============================================================================ +18:19:40 + + +waiting on router queue for slot.... +18:19:40 Sending to : +18:19:40 ============================================================================ +18:19:40 ============================================================================ +18:19:40 Slot Id : <435> +18:19:40 Transaction Type : RESPONSE +18:19:40 Received From : +18:19:40 ============================================================================ +18:19:40 FNo. Len. Field Value +18:19:40 ============================================================================ +18:19:40 [ 1] [ 4] [0810] +18:19:40 [ 7] [ 10] [0320111846] +18:19:40 [ 11] [ 6] [157673] +18:19:40 [ 39] [ 2] [00] +18:19:40 [ 70] [ 3] [301] +18:19:40 ============================================================================ +18:19:40 Calculate Source COMM Id = 2 +18:19:40 ============================================================================ +18:19:40 + + +waiting on router queue for slot.... +18:19:51 ============================================================================ +18:19:51 Slot Id : <427> +18:19:51 Transaction Type : REQUEST +18:19:51 Received From : +18:19:51 ============================================================================ +18:19:51 FNo. Len. Field Value +18:19:51 ============================================================================ +18:19:51 [ 1] [ 4] [0200] +18:19:51 [ 2] [ 16] [6213541000541832] +18:19:51 [ 3] [ 6] [010000] +18:19:51 [ 4] [ 12] [000200000000] +18:19:51 [ 7] [ 10] [0320111857] +18:19:51 [ 11] [ 6] [271184] +18:19:51 [ 12] [ 6] [181857] +18:19:51 [ 13] [ 4] [0320] +18:19:51 [ 14] [ 4] [4912] +18:19:51 [ 15] [ 4] [0320] +18:19:51 [ 18] [ 4] [6011] +18:19:51 [ 19] [ 3] [418] +18:19:51 [ 22] [ 3] [021] +18:19:51 [ 25] [ 2] [01] +18:19:51 [ 28] [ 9] [D00002000] +18:19:51 [ 32] [ 6] [180893] +18:19:51 [ 35] [ 32] [6213541000541832=491212014183023] +18:19:51 [ 37] [ 12] [507911271184] +18:19:51 [ 41] [ 8] [0102SAPA] +18:19:51 [ 42] [ 15] [999999 ] +18:19:51 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:19:51 [ 49] [ 3] [418] +18:19:51 [ 52] [ 16] [AEEA90BDF025DD44] +18:19:51 ============================================================================ +18:19:51 + + +waiting on router queue for slot.... +18:19:51 Sending to : +18:19:51 ============================================================================ +18:19:51 Sending to : +18:19:51 ============================================================================ +18:19:51 ============================================================================ +18:19:51 Slot Id : <427> +18:19:51 Transaction Type : REQUEST +18:19:51 Received From : +18:19:51 ============================================================================ +18:19:51 FNo. Len. Field Value +18:19:51 ============================================================================ +18:19:51 [ 1] [ 4] [0200] +18:19:51 [ 2] [ 16] [6213541000541832] +18:19:51 [ 3] [ 6] [010000] +18:19:51 [ 4] [ 12] [000200000000] +18:19:51 [ 7] [ 10] [0320111857] +18:19:51 [ 11] [ 6] [271184] +18:19:51 [ 12] [ 6] [181857] +18:19:51 [ 13] [ 4] [0320] +18:19:51 [ 14] [ 4] [4912] +18:19:51 [ 15] [ 4] [0320] +18:19:51 [ 18] [ 4] [6011] +18:19:51 [ 19] [ 3] [418] +18:19:51 [ 22] [ 3] [021] +18:19:51 [ 25] [ 2] [01] +18:19:51 [ 28] [ 9] [D00002000] +18:19:51 [ 32] [ 6] [180893] +18:19:51 [ 35] [ 32] [6213541000541832=491212014183023] +18:19:51 [ 37] [ 12] [507911271184] +18:19:51 [ 41] [ 8] [0102SAPA] +18:19:51 [ 42] [ 15] [999999 ] +18:19:51 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:19:51 [ 49] [ 3] [418] +18:19:51 [ 52] [ 16] [AEEA90BDF025DD44] +18:19:51 ============================================================================ +18:19:51 + + +waiting on router queue for slot.... +18:19:51 Sending to : +18:19:51 ============================================================================ +18:19:51 ============================================================================ +18:19:51 Slot Id : <427> +18:19:51 Transaction Type : REQUEST +18:19:51 Received From : +18:19:51 ============================================================================ +18:19:51 FNo. Len. Field Value +18:19:51 ============================================================================ +18:19:51 [ 1] [ 4] [0200] +18:19:51 [ 2] [ 16] [6213541000541832] +18:19:51 [ 3] [ 6] [010000] +18:19:51 [ 4] [ 12] [000200000000] +18:19:51 [ 7] [ 10] [0320111857] +18:19:51 [ 11] [ 6] [271184] +18:19:51 [ 12] [ 6] [181857] +18:19:51 [ 13] [ 4] [0320] +18:19:51 [ 14] [ 4] [4912] +18:19:51 [ 15] [ 4] [0320] +18:19:51 [ 18] [ 4] [6011] +18:19:51 [ 19] [ 3] [418] +18:19:51 [ 22] [ 3] [021] +18:19:51 [ 25] [ 2] [01] +18:19:51 [ 28] [ 9] [D00002000] +18:19:51 [ 32] [ 6] [180893] +18:19:51 [ 35] [ 32] [6213541000541832=491212014183023] +18:19:51 [ 37] [ 12] [507911271184] +18:19:51 [ 41] [ 8] [0102SAPA] +18:19:51 [ 42] [ 15] [999999 ] +18:19:51 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:19:51 [ 49] [ 3] [418] +18:19:51 [ 52] [ 16] [FEA4C2E8298C8F19] +18:19:51 ============================================================================ +18:19:51 + + +waiting on router queue for slot.... +18:19:51 Sending to : <0> +18:19:51 ============================================================================ +18:19:52 ============================================================================ +18:19:52 Slot Id : <427> +18:19:52 Transaction Type : RESPONSE +18:19:52 Received From : +18:19:52 ============================================================================ +18:19:52 FNo. Len. Field Value +18:19:52 ============================================================================ +18:19:52 [ 1] [ 4] [0210] +18:19:52 [ 2] [ 16] [6213541000541832] +18:19:52 [ 3] [ 6] [010000] +18:19:52 [ 4] [ 12] [000200000000] +18:19:52 [ 7] [ 10] [0320111857] +18:19:52 [ 11] [ 6] [271184] +18:19:52 [ 12] [ 6] [181857] +18:19:52 [ 13] [ 4] [0320] +18:19:52 [ 15] [ 4] [0320] +18:19:52 [ 18] [ 4] [6011] +18:19:52 [ 19] [ 3] [418] +18:19:52 [ 22] [ 3] [021] +18:19:52 [ 32] [ 6] [180893] +18:19:52 [ 35] [ 32] [6213541000541832=491212014183023] +18:19:52 [ 37] [ 12] [507911271184] +18:19:52 [ 39] [ 2] [61] +18:19:52 [ 41] [ 8] [0102SAPA] +18:19:52 [ 49] [ 3] [418] +18:19:52 ============================================================================ +18:19:52 Sending to : +18:19:52 ============================================================================ +18:19:52 + + +waiting on router queue for slot.... +18:19:53 ============================================================================ +18:19:53 Slot Id : <427> +18:19:53 Transaction Type : RESPONSE +18:19:53 Received From : +18:19:53 ============================================================================ +18:19:53 FNo. Len. Field Value +18:19:53 ============================================================================ +18:19:53 [ 1] [ 4] [0210] +18:19:53 [ 2] [ 16] [6213541000541832] +18:19:53 [ 3] [ 6] [010000] +18:19:53 [ 4] [ 12] [000200000000] +18:19:53 [ 7] [ 10] [0320111857] +18:19:53 [ 11] [ 6] [271184] +18:19:53 [ 12] [ 6] [181857] +18:19:53 [ 13] [ 4] [0320] +18:19:53 [ 15] [ 4] [0320] +18:19:53 [ 18] [ 4] [6011] +18:19:53 [ 19] [ 3] [418] +18:19:53 [ 22] [ 3] [021] +18:19:53 [ 32] [ 6] [180893] +18:19:53 [ 35] [ 32] [6213541000541832=491212014183023] +18:19:53 [ 37] [ 12] [507911271184] +18:19:53 [ 39] [ 2] [61] +18:19:53 [ 41] [ 8] [0102SAPA] +18:19:53 [ 49] [ 3] [418] +18:19:53 ============================================================================ +18:19:53 Calculate Source COMM Id = 2 +18:19:53 ============================================================================ +18:19:53 + + +waiting on router queue for slot.... +18:19:57 ============================================================================ +18:19:57 Slot Id : <431> +18:19:57 Transaction Type : REQUEST +18:19:57 Received From : +18:19:57 ============================================================================ +18:19:57 FNo. Len. Field Value +18:19:57 ============================================================================ +18:19:57 [ 1] [ 4] [0800] +18:19:57 [ 7] [ 10] [0320112742] +18:19:57 [ 11] [ 6] [003475] +18:19:57 [ 37] [ 12] [57918003475] +18:19:57 [ 70] [ 3] [301] +18:19:57 ============================================================================ +18:19:57 + + +waiting on router queue for slot.... +18:19:57 Sending to : +18:19:57 ============================================================================ +18:19:57 ============================================================================ +18:19:57 Slot Id : <431> +18:19:57 Transaction Type : RESPONSE +18:19:57 Received From : +18:19:57 ============================================================================ +18:19:57 FNo. Len. Field Value +18:19:57 ============================================================================ +18:19:57 [ 1] [ 4] [0810] +18:19:57 [ 7] [ 10] [0320112742] +18:19:57 [ 11] [ 6] [003475] +18:19:57 [ 37] [ 12] [579180034750] +18:19:57 [ 39] [ 2] [00] +18:19:57 [ 70] [ 3] [810] +18:19:57 ============================================================================ +18:19:57 Calculate Source COMM Id = 1 +18:19:57 ============================================================================ +18:19:57 + + +waiting on router queue for slot.... +18:20:06 ============================================================================ +18:20:06 Slot Id : <462> +18:20:06 Transaction Type : REQUEST +18:20:06 Received From : +18:20:06 ============================================================================ +18:20:06 FNo. Len. Field Value +18:20:06 ============================================================================ +18:20:06 [ 1] [ 4] [0800] +18:20:06 [ 7] [ 10] [0320111913] +18:20:06 [ 11] [ 6] [157674] +18:20:06 [ 70] [ 3] [301] +18:20:06 ============================================================================ +18:20:06 + + +waiting on router queue for slot.... +18:20:06 Sending to : +18:20:06 ============================================================================ +18:20:06 ============================================================================ +18:20:06 Slot Id : <462> +18:20:06 Transaction Type : RESPONSE +18:20:06 Received From : +18:20:06 ============================================================================ +18:20:06 FNo. Len. Field Value +18:20:06 ============================================================================ +18:20:06 [ 1] [ 4] [0810] +18:20:06 [ 7] [ 10] [0320111913] +18:20:06 [ 11] [ 6] [157674] +18:20:06 [ 39] [ 2] [00] +18:20:06 [ 70] [ 3] [301] +18:20:06 ============================================================================ +18:20:06 Calculate Source COMM Id = 2 +18:20:06 ============================================================================ +18:20:06 + + +waiting on router queue for slot.... +18:20:07 ============================================================================ +18:20:07 Slot Id : <428> +18:20:07 Transaction Type : REQUEST +18:20:07 Received From : +18:20:07 ============================================================================ +18:20:07 FNo. Len. Field Value +18:20:07 ============================================================================ +18:20:07 [ 1] [ 4] [0800] +18:20:07 [ 2] [ 5] [02531] +18:20:07 [ 3] [ 6] [579188] +18:20:07 [ 7] [ 10] [0320112007] +18:20:07 [ 11] [ 6] [807476] +18:20:07 [ 15] [ 10] [0320112007] +18:20:07 [ 37] [ 11] [57918807476] +18:20:07 [ 70] [ 3] [001] +18:20:07 ============================================================================ +18:20:07 + + +waiting on router queue for slot.... +18:20:07 ============================================================================ +18:20:07 Slot Id : <428> +18:20:07 Transaction Type : RESPONSE +18:20:07 Received From : +18:20:07 ============================================================================ +18:20:07 FNo. Len. Field Value +18:20:07 ============================================================================ +18:20:07 [ 1] [ 4] [0810] +18:20:07 [ 7] [ 10] [0320112007] +18:20:07 [ 11] [ 6] [807476] +18:20:07 [ 15] [ 4] [0320] +18:20:07 [ 37] [ 12] [57918807476] +18:20:07 [ 39] [ 2] [00] +18:20:07 [ 70] [ 3] [001] +18:20:07 ============================================================================ +18:20:07 Sending to : +18:20:07 ============================================================================ +18:20:07 + + +waiting on router queue for slot.... +18:20:17 ============================================================================ +18:20:17 Slot Id : <421> +18:20:17 Transaction Type : REQUEST +18:20:17 Received From : +18:20:17 ============================================================================ +18:20:17 FNo. Len. Field Value +18:20:17 ============================================================================ +18:20:17 [ 1] [ 4] [0800] +18:20:17 [ 7] [ 10] [0320111924] +18:20:17 [ 11] [ 6] [157675] +18:20:17 [ 70] [ 3] [301] +18:20:17 ============================================================================ +18:20:17 + + +waiting on router queue for slot.... +18:20:17 Sending to : +18:20:17 ============================================================================ +18:20:17 ============================================================================ +18:20:17 Slot Id : <421> +18:20:17 Transaction Type : RESPONSE +18:20:17 Received From : +18:20:17 ============================================================================ +18:20:17 FNo. Len. Field Value +18:20:17 ============================================================================ +18:20:17 [ 1] [ 4] [0810] +18:20:17 [ 7] [ 10] [0320111924] +18:20:17 [ 11] [ 6] [157675] +18:20:17 [ 39] [ 2] [00] +18:20:17 [ 70] [ 3] [301] +18:20:17 ============================================================================ +18:20:17 Calculate Source COMM Id = 2 +18:20:17 ============================================================================ +18:20:17 + + +waiting on router queue for slot.... +18:20:25 ============================================================================ +18:20:25 Slot Id : <422> +18:20:25 Transaction Type : REQUEST +18:20:25 Received From : +18:20:25 ============================================================================ +18:20:25 FNo. Len. Field Value +18:20:25 ============================================================================ +18:20:25 [ 1] [ 4] [0200] +18:20:25 [ 2] [ 16] [6213541000541832] +18:20:25 [ 3] [ 6] [010000] +18:20:25 [ 4] [ 12] [000100000000] +18:20:25 [ 7] [ 10] [0320111932] +18:20:25 [ 11] [ 6] [271187] +18:20:25 [ 12] [ 6] [181932] +18:20:25 [ 13] [ 4] [0320] +18:20:25 [ 14] [ 4] [4912] +18:20:25 [ 15] [ 4] [0320] +18:20:25 [ 18] [ 4] [6011] +18:20:25 [ 19] [ 3] [418] +18:20:25 [ 22] [ 3] [021] +18:20:25 [ 25] [ 2] [01] +18:20:25 [ 28] [ 9] [D00002000] +18:20:25 [ 32] [ 6] [180893] +18:20:25 [ 35] [ 32] [6213541000541832=491212014183023] +18:20:25 [ 37] [ 12] [507911271187] +18:20:25 [ 41] [ 8] [0102SAPA] +18:20:25 [ 42] [ 15] [999999 ] +18:20:25 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:20:25 [ 49] [ 3] [418] +18:20:25 [ 52] [ 16] [AEEA90BDF025DD44] +18:20:25 ============================================================================ +18:20:25 + + +waiting on router queue for slot.... +18:20:25 Sending to : +18:20:25 ============================================================================ +18:20:25 Sending to : +18:20:25 ============================================================================ +18:20:25 ============================================================================ +18:20:25 Slot Id : <422> +18:20:25 Transaction Type : REQUEST +18:20:25 Received From : +18:20:25 ============================================================================ +18:20:25 FNo. Len. Field Value +18:20:25 ============================================================================ +18:20:25 [ 1] [ 4] [0200] +18:20:25 [ 2] [ 16] [6213541000541832] +18:20:25 [ 3] [ 6] [010000] +18:20:25 [ 4] [ 12] [000100000000] +18:20:25 [ 7] [ 10] [0320111932] +18:20:25 [ 11] [ 6] [271187] +18:20:25 [ 12] [ 6] [181932] +18:20:25 [ 13] [ 4] [0320] +18:20:25 [ 14] [ 4] [4912] +18:20:25 [ 15] [ 4] [0320] +18:20:25 [ 18] [ 4] [6011] +18:20:25 [ 19] [ 3] [418] +18:20:25 [ 22] [ 3] [021] +18:20:25 [ 25] [ 2] [01] +18:20:25 [ 28] [ 9] [D00002000] +18:20:25 [ 32] [ 6] [180893] +18:20:25 [ 35] [ 32] [6213541000541832=491212014183023] +18:20:25 [ 37] [ 12] [507911271187] +18:20:25 [ 41] [ 8] [0102SAPA] +18:20:25 [ 42] [ 15] [999999 ] +18:20:25 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:20:25 [ 49] [ 3] [418] +18:20:25 [ 52] [ 16] [AEEA90BDF025DD44] +18:20:25 ============================================================================ +18:20:25 + + +waiting on router queue for slot.... +18:20:25 Sending to : +18:20:25 ============================================================================ +18:20:25 ============================================================================ +18:20:25 Slot Id : <422> +18:20:25 Transaction Type : REQUEST +18:20:25 Received From : +18:20:25 ============================================================================ +18:20:25 FNo. Len. Field Value +18:20:25 ============================================================================ +18:20:25 [ 1] [ 4] [0200] +18:20:25 [ 2] [ 16] [6213541000541832] +18:20:25 [ 3] [ 6] [010000] +18:20:25 [ 4] [ 12] [000100000000] +18:20:25 [ 7] [ 10] [0320111932] +18:20:25 [ 11] [ 6] [271187] +18:20:25 [ 12] [ 6] [181932] +18:20:25 [ 13] [ 4] [0320] +18:20:25 [ 14] [ 4] [4912] +18:20:25 [ 15] [ 4] [0320] +18:20:25 [ 18] [ 4] [6011] +18:20:25 [ 19] [ 3] [418] +18:20:25 [ 22] [ 3] [021] +18:20:25 [ 25] [ 2] [01] +18:20:25 [ 28] [ 9] [D00002000] +18:20:25 [ 32] [ 6] [180893] +18:20:25 [ 35] [ 32] [6213541000541832=491212014183023] +18:20:25 [ 37] [ 12] [507911271187] +18:20:25 [ 41] [ 8] [0102SAPA] +18:20:25 [ 42] [ 15] [999999 ] +18:20:25 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:20:25 [ 49] [ 3] [418] +18:20:25 [ 52] [ 16] [FEA4C2E8298C8F19] +18:20:25 ============================================================================ +18:20:25 + + +waiting on router queue for slot.... +18:20:25 Sending to : <0> +18:20:25 ============================================================================ +18:20:26 ============================================================================ +18:20:26 Slot Id : <422> +18:20:26 Transaction Type : RESPONSE +18:20:26 Received From : +18:20:26 ============================================================================ +18:20:26 FNo. Len. Field Value +18:20:26 ============================================================================ +18:20:26 [ 1] [ 4] [0210] +18:20:26 [ 2] [ 16] [6213541000541832] +18:20:26 [ 3] [ 6] [010000] +18:20:26 [ 4] [ 12] [000100000000] +18:20:26 [ 7] [ 10] [0320111932] +18:20:26 [ 11] [ 6] [271187] +18:20:26 [ 12] [ 6] [181932] +18:20:26 [ 13] [ 4] [0320] +18:20:26 [ 15] [ 4] [0320] +18:20:26 [ 18] [ 4] [6011] +18:20:26 [ 19] [ 3] [418] +18:20:26 [ 32] [ 6] [180893] +18:20:26 [ 35] [ 32] [6213541000541832=491212014183023] +18:20:26 [ 37] [ 12] [507911271187] +18:20:26 [ 38] [ 6] [855734] +18:20:26 [ 39] [ 2] [00] +18:20:26 [ 41] [ 8] [0102SAPA] +18:20:26 [ 49] [ 3] [418] +18:20:26 [ 54] [ 40] [0001764C0004181899840002764C000418189984] +18:20:26 ============================================================================ +18:20:26 Sending to : +18:20:26 ============================================================================ +18:20:26 + + +waiting on router queue for slot.... +18:20:28 ============================================================================ +18:20:28 Slot Id : <422> +18:20:28 Transaction Type : RESPONSE +18:20:28 Received From : +18:20:28 ============================================================================ +18:20:28 FNo. Len. Field Value +18:20:28 ============================================================================ +18:20:28 [ 1] [ 4] [0210] +18:20:28 [ 2] [ 16] [6213541000541832] +18:20:28 [ 3] [ 6] [010000] +18:20:28 [ 4] [ 12] [000100000000] +18:20:28 [ 7] [ 10] [0320111932] +18:20:28 [ 11] [ 6] [271187] +18:20:28 [ 12] [ 6] [181932] +18:20:28 [ 13] [ 4] [0320] +18:20:28 [ 15] [ 4] [0320] +18:20:28 [ 18] [ 4] [6011] +18:20:28 [ 19] [ 3] [418] +18:20:28 [ 32] [ 6] [180893] +18:20:28 [ 35] [ 32] [6213541000541832=491212014183023] +18:20:28 [ 37] [ 12] [507911271187] +18:20:28 [ 38] [ 6] [855734] +18:20:28 [ 39] [ 2] [00] +18:20:28 [ 41] [ 8] [0102SAPA] +18:20:28 [ 49] [ 3] [418] +18:20:28 [ 54] [ 40] [0001764C0004181899840002764C000418189984] +18:20:28 ============================================================================ +18:20:28 Calculate Source COMM Id = 2 +18:20:28 ============================================================================ +18:20:28 + + +waiting on router queue for slot.... +18:20:31 ============================================================================ +18:20:31 Slot Id : <451> +18:20:31 Transaction Type : REQUEST +18:20:31 Received From : +18:20:31 ============================================================================ +18:20:31 FNo. Len. Field Value +18:20:31 ============================================================================ +18:20:31 [ 1] [ 4] [0200] +18:20:31 [ 2] [ 16] [6688990104040801] +18:20:31 [ 3] [ 6] [011000] +18:20:31 [ 4] [ 12] [000020000000] +18:20:31 [ 7] [ 10] [0320182025] +18:20:31 [ 11] [ 6] [826302] +18:20:31 [ 12] [ 6] [182025] +18:20:31 [ 13] [ 4] [0320] +18:20:31 [ 15] [ 4] [0320] +18:20:31 [ 18] [ 4] [6011] +18:20:31 [ 22] [ 3] [900] +18:20:31 [ 25] [ 2] [02] +18:20:31 [ 28] [ 9] [D00002000] +18:20:31 [ 32] [ 6] [621354] +18:20:31 [ 35] [ 37] [6688990104040801=43021231080158000000] +18:20:31 [ 37] [ 12] [507903499708] +18:20:31 [ 41] [ 8] [06002200] +18:20:31 [ 42] [ 15] [NATIVE ] +18:20:31 [ 43] [ 40] [Beng Market Beng LAO] +18:20:31 [ 49] [ 3] [418] +18:20:31 [ 52] [ 16] [46AF7D4C38A12185] +18:20:31 ============================================================================ +18:20:31 + + +waiting on router queue for slot.... +18:20:31 Sending to : +18:20:31 ============================================================================ +18:20:31 Sending to : +18:20:31 ============================================================================ +18:20:31 ============================================================================ +18:20:31 Slot Id : <451> +18:20:31 Transaction Type : REQUEST +18:20:31 Received From : +18:20:31 ============================================================================ +18:20:31 FNo. Len. Field Value +18:20:31 ============================================================================ +18:20:31 [ 1] [ 4] [0200] +18:20:31 [ 2] [ 16] [6688990104040801] +18:20:31 [ 3] [ 6] [011000] +18:20:31 [ 4] [ 12] [000020000000] +18:20:31 [ 7] [ 10] [0320182025] +18:20:31 [ 11] [ 6] [826302] +18:20:31 [ 12] [ 6] [182025] +18:20:31 [ 13] [ 4] [0320] +18:20:31 [ 15] [ 4] [0320] +18:20:31 [ 18] [ 4] [6011] +18:20:31 [ 22] [ 3] [900] +18:20:31 [ 25] [ 2] [02] +18:20:31 [ 28] [ 9] [D00002000] +18:20:31 [ 32] [ 6] [621354] +18:20:31 [ 35] [ 37] [6688990104040801=43021231080158000000] +18:20:31 [ 37] [ 12] [507903499708] +18:20:31 [ 41] [ 8] [06002200] +18:20:31 [ 42] [ 15] [NATIVE ] +18:20:31 [ 43] [ 40] [Beng Market Beng LAO] +18:20:31 [ 49] [ 3] [418] +18:20:31 [ 52] [ 16] [46AF7D4C38A12185] +18:20:31 ============================================================================ +18:20:31 + + +waiting on router queue for slot.... +18:20:31 Sending to : +18:20:31 ============================================================================ +18:20:31 ============================================================================ +18:20:31 Slot Id : <451> +18:20:31 Transaction Type : REQUEST +18:20:31 Received From : +18:20:31 ============================================================================ +18:20:31 FNo. Len. Field Value +18:20:31 ============================================================================ +18:20:31 [ 1] [ 4] [0200] +18:20:31 [ 2] [ 16] [6688990104040801] +18:20:31 [ 3] [ 6] [011000] +18:20:31 [ 4] [ 12] [000020000000] +18:20:31 [ 7] [ 10] [0320182025] +18:20:31 [ 11] [ 6] [826302] +18:20:31 [ 12] [ 6] [182025] +18:20:31 [ 13] [ 4] [0320] +18:20:31 [ 15] [ 4] [0320] +18:20:31 [ 18] [ 4] [6011] +18:20:31 [ 22] [ 3] [900] +18:20:31 [ 25] [ 2] [02] +18:20:31 [ 28] [ 9] [D00002000] +18:20:31 [ 32] [ 6] [621354] +18:20:31 [ 35] [ 37] [6688990104040801=43021231080158000000] +18:20:31 [ 37] [ 12] [507903499708] +18:20:31 [ 41] [ 8] [06002200] +18:20:31 [ 42] [ 15] [NATIVE ] +18:20:31 [ 43] [ 40] [Beng Market Beng LAO] +18:20:31 [ 49] [ 3] [418] +18:20:31 [ 52] [ 16] [451DDF99016E554E] +18:20:31 ============================================================================ +18:20:31 + + +waiting on router queue for slot.... +18:20:31 Sending to : <4> +18:20:31 ============================================================================ +18:20:32 ============================================================================ +18:20:32 Slot Id : <451> +18:20:32 Transaction Type : RESPONSE +18:20:32 Received From : +18:20:32 ============================================================================ +18:20:32 FNo. Len. Field Value +18:20:32 ============================================================================ +18:20:32 [ 1] [ 4] [0210] +18:20:32 [ 2] [ 16] [6688990104040801] +18:20:32 [ 3] [ 6] [011000] +18:20:32 [ 4] [ 12] [000020000000] +18:20:32 [ 11] [ 6] [826302] +18:20:32 [ 12] [ 6] [182025] +18:20:32 [ 15] [ 4] [0320] +18:20:32 [ 18] [ 4] [6011] +18:20:32 [ 32] [ 6] [621354] +18:20:32 [ 35] [ 37] [6688990104040801=43021231080158000000] +18:20:32 [ 37] [ 12] [507903499708] +18:20:32 [ 38] [ 6] [027254] +18:20:32 [ 39] [ 2] [00] +18:20:32 [ 41] [ 8] [06002200] +18:20:32 [ 49] [ 3] [418] +18:20:32 [ 54] [ 20] [1002418C000062667592] +18:20:32 ============================================================================ +18:20:32 Sending to : +18:20:32 ============================================================================ +18:20:32 + + +waiting on router queue for slot.... +18:20:33 ============================================================================ +18:20:33 Slot Id : <451> +18:20:33 Transaction Type : RESPONSE +18:20:33 Received From : +18:20:33 ============================================================================ +18:20:33 FNo. Len. Field Value +18:20:33 ============================================================================ +18:20:33 [ 1] [ 4] [0210] +18:20:33 [ 2] [ 16] [6688990104040801] +18:20:33 [ 3] [ 6] [011000] +18:20:33 [ 4] [ 12] [000020000000] +18:20:33 [ 11] [ 6] [826302] +18:20:33 [ 12] [ 6] [182025] +18:20:33 [ 15] [ 4] [0320] +18:20:33 [ 18] [ 4] [6011] +18:20:33 [ 32] [ 6] [621354] +18:20:33 [ 35] [ 37] [6688990104040801=43021231080158000000] +18:20:33 [ 37] [ 12] [507903499708] +18:20:33 [ 38] [ 6] [027254] +18:20:33 [ 39] [ 2] [00] +18:20:33 [ 41] [ 8] [06002200] +18:20:33 [ 49] [ 3] [418] +18:20:33 [ 54] [ 20] [1002418C000062667592] +18:20:33 ============================================================================ +18:20:33 Calculate Source COMM Id = 0 +18:20:33 ============================================================================ +18:20:33 + + +waiting on router queue for slot.... +18:20:38 ============================================================================ +18:20:38 Slot Id : <457> +18:20:38 Transaction Type : REQUEST +18:20:38 Received From : +18:20:38 ============================================================================ +18:20:38 FNo. Len. Field Value +18:20:38 ============================================================================ +18:20:38 [ 1] [ 4] [0800] +18:20:38 [ 7] [ 10] [0321013227] +18:20:38 [ 11] [ 6] [183227] +18:20:38 [ 37] [ 12] [57918183227] +18:20:38 [ 70] [ 3] [301] +18:20:38 ============================================================================ +18:20:38 + + +waiting on router queue for slot.... +18:20:38 Sending to : +18:20:38 ============================================================================ +18:20:38 ============================================================================ +18:20:38 Slot Id : <457> +18:20:38 Transaction Type : RESPONSE +18:20:38 Received From : +18:20:38 ============================================================================ +18:20:38 FNo. Len. Field Value +18:20:38 ============================================================================ +18:20:38 [ 1] [ 4] [0810] +18:20:38 [ 7] [ 10] [0321013227] +18:20:38 [ 11] [ 6] [183227] +18:20:38 [ 37] [ 12] [579181832270] +18:20:38 [ 39] [ 2] [00] +18:20:38 [ 70] [ 3] [810] +18:20:38 ============================================================================ +18:20:38 Calculate Source COMM Id = 6 +18:20:38 ============================================================================ +18:20:38 + + +waiting on router queue for slot.... +18:20:43 ============================================================================ +18:20:43 Slot Id : <465> +18:20:43 Transaction Type : REQUEST +18:20:43 Received From : +18:20:43 ============================================================================ +18:20:43 FNo. Len. Field Value +18:20:43 ============================================================================ +18:20:43 [ 1] [ 4] [0800] +18:20:43 [ 7] [ 10] [0320111950] +18:20:43 [ 11] [ 6] [157676] +18:20:43 [ 70] [ 3] [301] +18:20:43 ============================================================================ +18:20:43 + + +waiting on router queue for slot.... +18:20:43 Sending to : +18:20:43 ============================================================================ +18:20:43 ============================================================================ +18:20:43 Slot Id : <465> +18:20:43 Transaction Type : RESPONSE +18:20:43 Received From : +18:20:43 ============================================================================ +18:20:43 FNo. Len. Field Value +18:20:43 ============================================================================ +18:20:43 [ 1] [ 4] [0810] +18:20:43 [ 7] [ 10] [0320111950] +18:20:43 [ 11] [ 6] [157676] +18:20:43 [ 39] [ 2] [00] +18:20:43 [ 70] [ 3] [301] +18:20:43 ============================================================================ +18:20:43 Calculate Source COMM Id = 2 +18:20:43 ============================================================================ +18:20:43 + + +waiting on router queue for slot.... +18:20:54 ============================================================================ +18:20:54 Slot Id : <426> +18:20:54 Transaction Type : REQUEST +18:20:54 Received From : +18:20:54 ============================================================================ +18:20:54 FNo. Len. Field Value +18:20:54 ============================================================================ +18:20:54 [ 1] [ 4] [0800] +18:20:54 [ 7] [ 10] [0320112001] +18:20:54 [ 11] [ 6] [157677] +18:20:54 [ 70] [ 3] [301] +18:20:54 ============================================================================ +18:20:54 + + +waiting on router queue for slot.... +18:20:54 Sending to : +18:20:54 ============================================================================ +18:20:54 ============================================================================ +18:20:54 Slot Id : <426> +18:20:54 Transaction Type : RESPONSE +18:20:54 Received From : +18:20:54 ============================================================================ +18:20:54 FNo. Len. Field Value +18:20:54 ============================================================================ +18:20:54 [ 1] [ 4] [0810] +18:20:54 [ 7] [ 10] [0320112001] +18:20:54 [ 11] [ 6] [157677] +18:20:54 [ 39] [ 2] [00] +18:20:54 [ 70] [ 3] [301] +18:20:54 ============================================================================ +18:20:54 Calculate Source COMM Id = 2 +18:20:54 ============================================================================ +18:20:54 + + +waiting on router queue for slot.... +18:21:09 ============================================================================ +18:21:09 Slot Id : <444> +18:21:09 Transaction Type : REQUEST +18:21:09 Received From : +18:21:09 ============================================================================ +18:21:09 FNo. Len. Field Value +18:21:09 ============================================================================ +18:21:09 [ 1] [ 4] [0800] +18:21:09 [ 2] [ 5] [02531] +18:21:09 [ 3] [ 6] [579188] +18:21:09 [ 7] [ 10] [0320112109] +18:21:09 [ 11] [ 6] [807477] +18:21:09 [ 15] [ 10] [0320112109] +18:21:09 [ 37] [ 11] [57918807477] +18:21:09 [ 70] [ 3] [001] +18:21:09 ============================================================================ +18:21:09 + + +waiting on router queue for slot.... +18:21:09 ============================================================================ +18:21:09 Slot Id : <444> +18:21:09 Transaction Type : RESPONSE +18:21:09 Received From : +18:21:09 ============================================================================ +18:21:09 FNo. Len. Field Value +18:21:09 ============================================================================ +18:21:09 [ 1] [ 4] [0810] +18:21:09 [ 7] [ 10] [0320112109] +18:21:09 [ 11] [ 6] [807477] +18:21:09 [ 15] [ 4] [0320] +18:21:09 [ 37] [ 12] [57918807477] +18:21:09 [ 39] [ 2] [00] +18:21:09 [ 70] [ 3] [001] +18:21:09 ============================================================================ +18:21:09 Sending to : +18:21:09 ============================================================================ +18:21:09 + + +waiting on router queue for slot.... +18:21:10 ============================================================================ +18:21:10 Slot Id : <436> +18:21:10 Transaction Type : REQUEST +18:21:10 Received From : +18:21:10 ============================================================================ +18:21:10 FNo. Len. Field Value +18:21:10 ============================================================================ +18:21:10 [ 1] [ 4] [0800] +18:21:10 [ 7] [ 10] [0320112017] +18:21:10 [ 11] [ 6] [157678] +18:21:10 [ 70] [ 3] [301] +18:21:10 ============================================================================ +18:21:10 + + +waiting on router queue for slot.... +18:21:10 Sending to : +18:21:10 ============================================================================ +18:21:10 ============================================================================ +18:21:10 Slot Id : <436> +18:21:10 Transaction Type : RESPONSE +18:21:10 Received From : +18:21:10 ============================================================================ +18:21:10 FNo. Len. Field Value +18:21:10 ============================================================================ +18:21:10 [ 1] [ 4] [0810] +18:21:10 [ 7] [ 10] [0320112017] +18:21:10 [ 11] [ 6] [157678] +18:21:10 [ 39] [ 2] [00] +18:21:10 [ 70] [ 3] [301] +18:21:10 ============================================================================ +18:21:10 Calculate Source COMM Id = 2 +18:21:10 ============================================================================ +18:21:10 + + +waiting on router queue for slot.... +18:21:14 ============================================================================ +18:21:14 Slot Id : <423> +18:21:14 Transaction Type : REQUEST +18:21:14 Received From : +18:21:14 ============================================================================ +18:21:14 FNo. Len. Field Value +18:21:14 ============================================================================ +18:21:14 [ 1] [ 4] [0200] +18:21:14 [ 2] [ 16] [6688990108087501] +18:21:14 [ 3] [ 6] [011000] +18:21:14 [ 4] [ 12] [000010000000] +18:21:14 [ 7] [ 10] [0320182108] +18:21:14 [ 11] [ 6] [826437] +18:21:14 [ 12] [ 6] [182108] +18:21:14 [ 13] [ 4] [0320] +18:21:14 [ 15] [ 4] [0320] +18:21:14 [ 18] [ 4] [6011] +18:21:14 [ 22] [ 3] [900] +18:21:14 [ 25] [ 2] [02] +18:21:14 [ 28] [ 9] [D00002000] +18:21:14 [ 32] [ 6] [621354] +18:21:14 [ 35] [ 37] [6688990108087501=44041231750192300000] +18:21:14 [ 37] [ 12] [507904229492] +18:21:14 [ 41] [ 8] [05004600] +18:21:14 [ 42] [ 15] [NATIVE ] +18:21:14 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:21:14 [ 49] [ 3] [418] +18:21:14 [ 52] [ 16] [54596CD66BE630AF] +18:21:14 ============================================================================ +18:21:14 + + +waiting on router queue for slot.... +18:21:14 Sending to : +18:21:14 ============================================================================ +18:21:14 Sending to : +18:21:14 ============================================================================ +18:21:14 ============================================================================ +18:21:14 Slot Id : <423> +18:21:14 Transaction Type : REQUEST +18:21:14 Received From : +18:21:14 ============================================================================ +18:21:14 FNo. Len. Field Value +18:21:14 ============================================================================ +18:21:14 [ 1] [ 4] [0200] +18:21:14 [ 2] [ 16] [6688990108087501] +18:21:14 [ 3] [ 6] [011000] +18:21:14 [ 4] [ 12] [000010000000] +18:21:14 [ 7] [ 10] [0320182108] +18:21:14 [ 11] [ 6] [826437] +18:21:14 [ 12] [ 6] [182108] +18:21:14 [ 13] [ 4] [0320] +18:21:14 [ 15] [ 4] [0320] +18:21:14 [ 18] [ 4] [6011] +18:21:14 [ 22] [ 3] [900] +18:21:14 [ 25] [ 2] [02] +18:21:14 [ 28] [ 9] [D00002000] +18:21:14 [ 32] [ 6] [621354] +18:21:14 [ 35] [ 37] [6688990108087501=44041231750192300000] +18:21:14 [ 37] [ 12] [507904229492] +18:21:14 [ 41] [ 8] [05004600] +18:21:14 [ 42] [ 15] [NATIVE ] +18:21:14 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:21:14 [ 49] [ 3] [418] +18:21:14 [ 52] [ 16] [54596CD66BE630AF] +18:21:14 ============================================================================ +18:21:14 + + +waiting on router queue for slot.... +18:21:14 Sending to : +18:21:14 ============================================================================ +18:21:14 ============================================================================ +18:21:14 Slot Id : <423> +18:21:14 Transaction Type : REQUEST +18:21:14 Received From : +18:21:14 ============================================================================ +18:21:14 FNo. Len. Field Value +18:21:14 ============================================================================ +18:21:14 [ 1] [ 4] [0200] +18:21:14 [ 2] [ 16] [6688990108087501] +18:21:14 [ 3] [ 6] [011000] +18:21:14 [ 4] [ 12] [000010000000] +18:21:14 [ 7] [ 10] [0320182108] +18:21:14 [ 11] [ 6] [826437] +18:21:14 [ 12] [ 6] [182108] +18:21:14 [ 13] [ 4] [0320] +18:21:14 [ 15] [ 4] [0320] +18:21:14 [ 18] [ 4] [6011] +18:21:14 [ 22] [ 3] [900] +18:21:14 [ 25] [ 2] [02] +18:21:14 [ 28] [ 9] [D00002000] +18:21:14 [ 32] [ 6] [621354] +18:21:14 [ 35] [ 37] [6688990108087501=44041231750192300000] +18:21:14 [ 37] [ 12] [507904229492] +18:21:14 [ 41] [ 8] [05004600] +18:21:14 [ 42] [ 15] [NATIVE ] +18:21:14 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:21:14 [ 49] [ 3] [418] +18:21:14 [ 52] [ 16] [46A45CE78E6FB584] +18:21:14 ============================================================================ +18:21:14 + + +waiting on router queue for slot.... +18:21:14 Sending to : <4> +18:21:14 ============================================================================ +18:21:15 ============================================================================ +18:21:15 Slot Id : <423> +18:21:15 Transaction Type : RESPONSE +18:21:15 Received From : +18:21:15 ============================================================================ +18:21:15 FNo. Len. Field Value +18:21:15 ============================================================================ +18:21:15 [ 1] [ 4] [0210] +18:21:15 [ 2] [ 16] [6688990108087501] +18:21:15 [ 3] [ 6] [011000] +18:21:15 [ 4] [ 12] [000010000000] +18:21:15 [ 11] [ 6] [826437] +18:21:15 [ 12] [ 6] [182108] +18:21:15 [ 15] [ 4] [0320] +18:21:15 [ 18] [ 4] [6011] +18:21:15 [ 32] [ 6] [621354] +18:21:15 [ 35] [ 37] [6688990108087501=44041231750192300000] +18:21:15 [ 37] [ 12] [507904229492] +18:21:15 [ 38] [ 6] [095167] +18:21:15 [ 39] [ 2] [00] +18:21:15 [ 41] [ 8] [05004600] +18:21:15 [ 49] [ 3] [418] +18:21:15 [ 54] [ 20] [1002418C000002371249] +18:21:15 ============================================================================ +18:21:15 Sending to : +18:21:15 ============================================================================ +18:21:15 + + +waiting on router queue for slot.... +18:21:16 ============================================================================ +18:21:16 Slot Id : <423> +18:21:16 Transaction Type : RESPONSE +18:21:16 Received From : +18:21:16 ============================================================================ +18:21:16 FNo. Len. Field Value +18:21:16 ============================================================================ +18:21:16 [ 1] [ 4] [0210] +18:21:16 [ 2] [ 16] [6688990108087501] +18:21:16 [ 3] [ 6] [011000] +18:21:16 [ 4] [ 12] [000010000000] +18:21:16 [ 11] [ 6] [826437] +18:21:16 [ 12] [ 6] [182108] +18:21:16 [ 15] [ 4] [0320] +18:21:16 [ 18] [ 4] [6011] +18:21:16 [ 32] [ 6] [621354] +18:21:16 [ 35] [ 37] [6688990108087501=44041231750192300000] +18:21:16 [ 37] [ 12] [507904229492] +18:21:16 [ 38] [ 6] [095167] +18:21:16 [ 39] [ 2] [00] +18:21:16 [ 41] [ 8] [05004600] +18:21:16 [ 49] [ 3] [418] +18:21:16 [ 54] [ 20] [1002418C000002371249] +18:21:16 ============================================================================ +18:21:16 Calculate Source COMM Id = 0 +18:21:16 ============================================================================ +18:21:16 + + +waiting on router queue for slot.... +18:21:22 ============================================================================ +18:21:22 Slot Id : <458> +18:21:22 Transaction Type : REQUEST +18:21:22 Received From : +18:21:22 ============================================================================ +18:21:22 FNo. Len. Field Value +18:21:22 ============================================================================ +18:21:22 [ 1] [ 4] [0800] +18:21:22 [ 7] [ 10] [0320112029] +18:21:22 [ 11] [ 6] [157679] +18:21:22 [ 70] [ 3] [301] +18:21:22 ============================================================================ +18:21:22 + + +waiting on router queue for slot.... +18:21:22 Sending to : +18:21:22 ============================================================================ +18:21:22 ============================================================================ +18:21:22 Slot Id : <458> +18:21:22 Transaction Type : RESPONSE +18:21:22 Received From : +18:21:22 ============================================================================ +18:21:22 FNo. Len. Field Value +18:21:22 ============================================================================ +18:21:22 [ 1] [ 4] [0810] +18:21:22 [ 7] [ 10] [0320112029] +18:21:22 [ 11] [ 6] [157679] +18:21:22 [ 39] [ 2] [00] +18:21:22 [ 70] [ 3] [301] +18:21:22 ============================================================================ +18:21:22 Calculate Source COMM Id = 2 +18:21:22 ============================================================================ +18:21:22 + + +waiting on router queue for slot.... +18:21:22 ============================================================================ +18:21:22 Slot Id : <452> +18:21:22 Transaction Type : REQUEST +18:21:22 Received From : +18:21:22 ============================================================================ +18:21:22 FNo. Len. Field Value +18:21:22 ============================================================================ +18:21:22 [ 1] [ 4] [0200] +18:21:22 [ 2] [ 16] [1808931800014936] +18:21:22 [ 3] [ 6] [301000] +18:21:22 [ 4] [ 12] [000000000000] +18:21:22 [ 7] [ 10] [0320182117] +18:21:22 [ 11] [ 6] [826468] +18:21:22 [ 12] [ 6] [182117] +18:21:22 [ 13] [ 4] [0320] +18:21:22 [ 15] [ 4] [0320] +18:21:22 [ 18] [ 4] [6011] +18:21:22 [ 22] [ 3] [900] +18:21:22 [ 25] [ 2] [02] +18:21:22 [ 28] [ 9] [D00000000] +18:21:22 [ 32] [ 6] [621354] +18:21:22 [ 35] [ 27] [1808931800014936=1803500592] +18:21:22 [ 37] [ 12] [507904627888] +18:21:22 [ 41] [ 8] [17000700] +18:21:22 [ 42] [ 15] [NATIVE ] +18:21:22 [ 43] [ 40] [Ban Phanxay Samneua LAO] +18:21:22 [ 49] [ 3] [418] +18:21:22 [ 52] [ 16] [056F1D9D3E7430DA] +18:21:22 ============================================================================ +18:21:22 + + +waiting on router queue for slot.... +18:21:22 Sending to : +18:21:22 ============================================================================ +18:21:22 Sending to : +18:21:22 ============================================================================ +18:21:22 ============================================================================ +18:21:22 Slot Id : <452> +18:21:22 Transaction Type : REQUEST +18:21:22 Received From : +18:21:22 ============================================================================ +18:21:22 FNo. Len. Field Value +18:21:22 ============================================================================ +18:21:22 [ 1] [ 4] [0200] +18:21:22 [ 2] [ 16] [1808931800014936] +18:21:22 [ 3] [ 6] [301000] +18:21:22 [ 4] [ 12] [000000000000] +18:21:22 [ 7] [ 10] [0320182117] +18:21:22 [ 11] [ 6] [826468] +18:21:22 [ 12] [ 6] [182117] +18:21:22 [ 13] [ 4] [0320] +18:21:22 [ 15] [ 4] [0320] +18:21:22 [ 18] [ 4] [6011] +18:21:22 [ 22] [ 3] [900] +18:21:22 [ 25] [ 2] [02] +18:21:22 [ 28] [ 9] [D00000000] +18:21:22 [ 32] [ 6] [621354] +18:21:22 [ 35] [ 27] [1808931800014936=1803500592] +18:21:22 [ 37] [ 12] [507904627888] +18:21:22 [ 41] [ 8] [17000700] +18:21:22 [ 42] [ 15] [NATIVE ] +18:21:22 [ 43] [ 40] [Ban Phanxay Samneua LAO] +18:21:22 [ 49] [ 3] [418] +18:21:22 [ 52] [ 16] [056F1D9D3E7430DA] +18:21:22 ============================================================================ +18:21:22 + + +waiting on router queue for slot.... +18:21:22 ============================================================================ +18:21:22 Slot Id : <459> +18:21:22 Transaction Type : REQUEST +18:21:22 Received From : +18:21:22 ============================================================================ +18:21:22 FNo. Len. Field Value +18:21:22 ============================================================================ +18:21:22 [ 1] [ 4] [0800] +18:21:22 [ 7] [ 10] [0320111912] +18:21:22 [ 11] [ 6] [063293] +18:21:22 [ 37] [ 12] [57918063293] +18:21:22 [ 70] [ 3] [301] +18:21:22 ============================================================================ +18:21:22 + + +waiting on router queue for slot.... +18:21:22 Sending to : +18:21:22 ============================================================================ +18:21:22 Sending to : +18:21:22 ============================================================================ +18:21:22 ============================================================================ +18:21:22 Slot Id : <459> +18:21:22 Transaction Type : RESPONSE +18:21:22 Received From : +18:21:22 ============================================================================ +18:21:22 FNo. Len. Field Value +18:21:22 ============================================================================ +18:21:22 [ 1] [ 4] [0810] +18:21:22 [ 7] [ 10] [0320111912] +18:21:22 [ 11] [ 6] [063293] +18:21:22 [ 37] [ 12] [579180632930] +18:21:22 [ 39] [ 2] [00] +18:21:22 [ 70] [ 3] [810] +18:21:22 ============================================================================ +18:21:22 Calculate Source COMM Id = 4 +18:21:22 ============================================================================ +18:21:22 + + +waiting on router queue for slot.... +18:21:22 ============================================================================ +18:21:22 Slot Id : <452> +18:21:22 Transaction Type : REQUEST +18:21:22 Received From : +18:21:22 ============================================================================ +18:21:22 FNo. Len. Field Value +18:21:22 ============================================================================ +18:21:22 [ 1] [ 4] [0200] +18:21:22 [ 2] [ 16] [1808931800014936] +18:21:22 [ 3] [ 6] [301000] +18:21:22 [ 4] [ 12] [000000000000] +18:21:22 [ 7] [ 10] [0320182117] +18:21:22 [ 11] [ 6] [826468] +18:21:22 [ 12] [ 6] [182117] +18:21:22 [ 13] [ 4] [0320] +18:21:22 [ 15] [ 4] [0320] +18:21:22 [ 18] [ 4] [6011] +18:21:22 [ 22] [ 3] [900] +18:21:22 [ 25] [ 2] [02] +18:21:22 [ 28] [ 9] [D00000000] +18:21:22 [ 32] [ 6] [621354] +18:21:22 [ 35] [ 27] [1808931800014936=1803500592] +18:21:22 [ 37] [ 12] [507904627888] +18:21:22 [ 41] [ 8] [17000700] +18:21:22 [ 42] [ 15] [NATIVE ] +18:21:22 [ 43] [ 40] [Ban Phanxay Samneua LAO] +18:21:22 [ 49] [ 3] [418] +18:21:22 [ 52] [ 16] [5316CFA2D2E946EA] +18:21:22 ============================================================================ +18:21:22 + + +waiting on router queue for slot.... +18:21:22 Sending to : <2> +18:21:22 ============================================================================ +18:21:26 ============================================================================ +18:21:26 Slot Id : <452> +18:21:26 Transaction Type : RESPONSE +18:21:26 Received From : +18:21:26 ============================================================================ +18:21:26 FNo. Len. Field Value +18:21:26 ============================================================================ +18:21:26 [ 1] [ 4] [0210] +18:21:26 [ 2] [ 16] [1808931800014936] +18:21:26 [ 3] [ 6] [301000] +18:21:26 [ 7] [ 10] [0320182117] +18:21:26 [ 11] [ 6] [826468] +18:21:26 [ 12] [ 6] [182117] +18:21:26 [ 13] [ 4] [0320] +18:21:26 [ 14] [ 4] [1803] +18:21:26 [ 19] [ 3] [418] +18:21:26 [ 32] [ 6] [621354] +18:21:26 [ 37] [ 12] [507904627888] +18:21:26 [ 38] [ 6] [826468] +18:21:26 [ 39] [ 2] [00] +18:21:26 [ 41] [ 8] [17000700] +18:21:26 [ 49] [ 3] [418] +18:21:26 [ 52] [ 16] [5316CFA2D2E946EA] +18:21:26 [ 54] [ 20] [1002418C000008555500] +18:21:26 ============================================================================ +18:21:26 Sending to : +18:21:26 ============================================================================ +18:21:26 + + +waiting on router queue for slot.... +18:21:28 ============================================================================ +18:21:28 Slot Id : <452> +18:21:28 Transaction Type : RESPONSE +18:21:28 Received From : +18:21:28 ============================================================================ +18:21:28 FNo. Len. Field Value +18:21:28 ============================================================================ +18:21:28 [ 1] [ 4] [0210] +18:21:28 [ 2] [ 16] [1808931800014936] +18:21:28 [ 3] [ 6] [301000] +18:21:28 [ 7] [ 10] [0320182117] +18:21:28 [ 11] [ 6] [826468] +18:21:28 [ 12] [ 6] [182117] +18:21:28 [ 13] [ 4] [0320] +18:21:28 [ 14] [ 4] [1803] +18:21:28 [ 19] [ 3] [418] +18:21:28 [ 32] [ 6] [621354] +18:21:28 [ 37] [ 12] [507904627888] +18:21:28 [ 38] [ 6] [826468] +18:21:28 [ 39] [ 2] [00] +18:21:28 [ 41] [ 8] [17000700] +18:21:28 [ 49] [ 3] [418] +18:21:28 [ 52] [ 16] [5316CFA2D2E946EA] +18:21:28 [ 54] [ 20] [1002418C000008555500] +18:21:28 ============================================================================ +18:21:28 Calculate Source COMM Id = 0 +18:21:28 ============================================================================ +18:21:28 + + +waiting on router queue for slot.... +18:21:37 ============================================================================ +18:21:37 Slot Id : <439> +18:21:37 Transaction Type : REQUEST +18:21:37 Received From : +18:21:37 ============================================================================ +18:21:37 FNo. Len. Field Value +18:21:37 ============================================================================ +18:21:37 [ 1] [ 4] [0800] +18:21:37 [ 7] [ 10] [0320112043] +18:21:37 [ 11] [ 6] [157680] +18:21:37 [ 70] [ 3] [301] +18:21:37 ============================================================================ +18:21:37 + + +waiting on router queue for slot.... +18:21:37 Sending to : +18:21:37 ============================================================================ +18:21:37 ============================================================================ +18:21:37 Slot Id : <439> +18:21:37 Transaction Type : RESPONSE +18:21:37 Received From : +18:21:37 ============================================================================ +18:21:37 FNo. Len. Field Value +18:21:37 ============================================================================ +18:21:37 [ 1] [ 4] [0810] +18:21:37 [ 7] [ 10] [0320112043] +18:21:37 [ 11] [ 6] [157680] +18:21:37 [ 39] [ 2] [00] +18:21:37 [ 70] [ 3] [301] +18:21:37 ============================================================================ +18:21:37 Calculate Source COMM Id = 2 +18:21:37 ============================================================================ +18:21:37 + + +waiting on router queue for slot.... +18:21:43 ============================================================================ +18:21:43 Slot Id : <466> +18:21:43 Transaction Type : REQUEST +18:21:43 Received From : +18:21:43 ============================================================================ +18:21:43 FNo. Len. Field Value +18:21:43 ============================================================================ +18:21:43 [ 1] [ 4] [0800] +18:21:43 [ 7] [ 10] [0321013332] +18:21:43 [ 11] [ 6] [183332] +18:21:43 [ 37] [ 12] [57918183332] +18:21:43 [ 70] [ 3] [301] +18:21:43 ============================================================================ +18:21:43 + + +waiting on router queue for slot.... +18:21:43 Sending to : +18:21:43 ============================================================================ +18:21:43 ============================================================================ +18:21:43 Slot Id : <466> +18:21:43 Transaction Type : RESPONSE +18:21:43 Received From : +18:21:43 ============================================================================ +18:21:43 FNo. Len. Field Value +18:21:43 ============================================================================ +18:21:43 [ 1] [ 4] [0810] +18:21:43 [ 7] [ 10] [0321013332] +18:21:43 [ 11] [ 6] [183332] +18:21:43 [ 37] [ 12] [579181833320] +18:21:43 [ 39] [ 2] [00] +18:21:43 [ 70] [ 3] [810] +18:21:43 ============================================================================ +18:21:43 Calculate Source COMM Id = 6 +18:21:43 ============================================================================ +18:21:43 + + +waiting on router queue for slot.... +18:21:48 ============================================================================ +18:21:48 Slot Id : <468> +18:21:48 Transaction Type : REQUEST +18:21:48 Received From : +18:21:48 ============================================================================ +18:21:48 FNo. Len. Field Value +18:21:48 ============================================================================ +18:21:48 [ 1] [ 4] [0800] +18:21:48 [ 7] [ 10] [0320112054] +18:21:48 [ 11] [ 6] [157681] +18:21:48 [ 70] [ 3] [301] +18:21:48 ============================================================================ +18:21:48 + + +waiting on router queue for slot.... +18:21:48 Sending to : +18:21:48 ============================================================================ +18:21:48 ============================================================================ +18:21:48 Slot Id : <468> +18:21:48 Transaction Type : RESPONSE +18:21:48 Received From : +18:21:48 ============================================================================ +18:21:48 FNo. Len. Field Value +18:21:48 ============================================================================ +18:21:48 [ 1] [ 4] [0810] +18:21:48 [ 7] [ 10] [0320112054] +18:21:48 [ 11] [ 6] [157681] +18:21:48 [ 39] [ 2] [00] +18:21:48 [ 70] [ 3] [301] +18:21:48 ============================================================================ +18:21:48 Calculate Source COMM Id = 2 +18:21:48 ============================================================================ +18:21:48 + + +waiting on router queue for slot.... +18:21:48 ============================================================================ +18:21:48 Slot Id : <455> +18:21:48 Transaction Type : REQUEST +18:21:48 Received From : +18:21:48 ============================================================================ +18:21:48 FNo. Len. Field Value +18:21:48 ============================================================================ +18:21:48 [ 1] [ 4] [0200] +18:21:48 [ 2] [ 16] [6213544001162715] +18:21:48 [ 3] [ 6] [301000] +18:21:48 [ 4] [ 12] [000000000000] +18:21:48 [ 7] [ 10] [0320182208] +18:21:48 [ 11] [ 6] [210317] +18:21:48 [ 12] [ 6] [190027] +18:21:48 [ 13] [ 4] [0320] +18:21:48 [ 14] [ 4] [4912] +18:21:48 [ 15] [ 4] [0320] +18:21:48 [ 18] [ 4] [6011] +18:21:48 [ 19] [ 3] [418] +18:21:48 [ 22] [ 3] [021] +18:21:48 [ 25] [ 2] [01] +18:21:48 [ 28] [ 9] [D00000000] +18:21:48 [ 32] [ 6] [198901] +18:21:48 [ 35] [ 32] [6213544001162715=491212016271029] +18:21:48 [ 37] [ 12] [507918210317] +18:21:48 [ 41] [ 8] [00002201] +18:21:48 [ 42] [ 15] [000000041002201] +18:21:48 [ 43] [ 40] [WAD CHAN VN ] +18:21:48 [ 49] [ 3] [418] +18:21:48 [ 52] [ 16] [C40035689E6D4745] +18:21:48 ============================================================================ +18:21:48 + + +waiting on router queue for slot.... +18:21:48 Sending to : +18:21:48 ============================================================================ +18:21:48 Sending to : +18:21:48 ============================================================================ +18:21:48 ============================================================================ +18:21:48 Slot Id : <455> +18:21:48 Transaction Type : REQUEST +18:21:48 Received From : +18:21:48 ============================================================================ +18:21:48 FNo. Len. Field Value +18:21:48 ============================================================================ +18:21:48 [ 1] [ 4] [0200] +18:21:48 [ 2] [ 16] [6213544001162715] +18:21:48 [ 3] [ 6] [301000] +18:21:48 [ 4] [ 12] [000000000000] +18:21:48 [ 7] [ 10] [0320182208] +18:21:48 [ 11] [ 6] [210317] +18:21:48 [ 12] [ 6] [190027] +18:21:48 [ 13] [ 4] [0320] +18:21:48 [ 14] [ 4] [4912] +18:21:48 [ 15] [ 4] [0320] +18:21:48 [ 18] [ 4] [6011] +18:21:48 [ 19] [ 3] [418] +18:21:48 [ 22] [ 3] [021] +18:21:48 [ 25] [ 2] [01] +18:21:48 [ 28] [ 9] [D00000000] +18:21:48 [ 32] [ 6] [198901] +18:21:48 [ 35] [ 32] [6213544001162715=491212016271029] +18:21:48 [ 37] [ 12] [507918210317] +18:21:48 [ 41] [ 8] [00002201] +18:21:48 [ 42] [ 15] [000000041002201] +18:21:48 [ 43] [ 40] [WAD CHAN VN ] +18:21:48 [ 49] [ 3] [418] +18:21:48 [ 52] [ 16] [C40035689E6D4745] +18:21:48 ============================================================================ +18:21:48 + + +waiting on router queue for slot.... +18:21:48 Sending to : +18:21:48 ============================================================================ +18:21:48 ============================================================================ +18:21:48 Slot Id : <455> +18:21:48 Transaction Type : REQUEST +18:21:48 Received From : +18:21:48 ============================================================================ +18:21:48 FNo. Len. Field Value +18:21:48 ============================================================================ +18:21:48 [ 1] [ 4] [0200] +18:21:48 [ 2] [ 16] [6213544001162715] +18:21:48 [ 3] [ 6] [301000] +18:21:48 [ 4] [ 12] [000000000000] +18:21:48 [ 7] [ 10] [0320182208] +18:21:48 [ 11] [ 6] [210317] +18:21:48 [ 12] [ 6] [190027] +18:21:48 [ 13] [ 4] [0320] +18:21:48 [ 14] [ 4] [4912] +18:21:48 [ 15] [ 4] [0320] +18:21:48 [ 18] [ 4] [6011] +18:21:48 [ 19] [ 3] [418] +18:21:48 [ 22] [ 3] [021] +18:21:48 [ 25] [ 2] [01] +18:21:48 [ 28] [ 9] [D00000000] +18:21:48 [ 32] [ 6] [198901] +18:21:48 [ 35] [ 32] [6213544001162715=491212016271029] +18:21:48 [ 37] [ 12] [507918210317] +18:21:48 [ 41] [ 8] [00002201] +18:21:48 [ 42] [ 15] [000000041002201] +18:21:48 [ 43] [ 40] [WAD CHAN VN ] +18:21:48 [ 49] [ 3] [418] +18:21:48 [ 52] [ 16] [B15C684E7FE45FB0] +18:21:48 ============================================================================ +18:21:48 + + +waiting on router queue for slot.... +18:21:48 Sending to : <0> +18:21:48 ============================================================================ +18:21:48 ============================================================================ +18:21:48 Slot Id : <455> +18:21:48 Transaction Type : RESPONSE +18:21:48 Received From : +18:21:48 ============================================================================ +18:21:48 FNo. Len. Field Value +18:21:48 ============================================================================ +18:21:48 [ 1] [ 4] [0210] +18:21:48 [ 2] [ 16] [6213544001162715] +18:21:48 [ 3] [ 6] [301000] +18:21:48 [ 4] [ 12] [000000000000] +18:21:48 [ 7] [ 10] [0320182208] +18:21:48 [ 11] [ 6] [210317] +18:21:48 [ 12] [ 6] [190027] +18:21:48 [ 13] [ 4] [0320] +18:21:48 [ 15] [ 4] [0320] +18:21:48 [ 18] [ 4] [6011] +18:21:48 [ 19] [ 3] [418] +18:21:48 [ 32] [ 6] [198901] +18:21:48 [ 35] [ 32] [6213544001162715=491212016271029] +18:21:48 [ 37] [ 12] [507918210317] +18:21:48 [ 38] [ 6] [495724] +18:21:48 [ 39] [ 2] [00] +18:21:48 [ 41] [ 8] [00002201] +18:21:48 [ 49] [ 3] [418] +18:21:48 [ 54] [ 40] [1001418C0000461241271002418C000046124127] +18:21:48 ============================================================================ +18:21:48 Sending to : +18:21:48 ============================================================================ +18:21:48 + + +waiting on router queue for slot.... +18:21:49 ============================================================================ +18:21:49 Slot Id : <475> +18:21:49 Transaction Type : REQUEST +18:21:49 Received From : +18:21:49 ============================================================================ +18:21:49 FNo. Len. Field Value +18:21:49 ============================================================================ +18:21:49 [ 1] [ 4] [0200] +18:21:49 [ 2] [ 16] [6213545000546782] +18:21:49 [ 3] [ 6] [010000] +18:21:49 [ 4] [ 12] [000030000000] +18:21:49 [ 7] [ 10] [0320181939] +18:21:49 [ 11] [ 6] [954596] +18:21:49 [ 12] [ 6] [181939] +18:21:49 [ 13] [ 4] [0320] +18:21:49 [ 15] [ 4] [0320] +18:21:49 [ 18] [ 4] [6011] +18:21:49 [ 19] [ 3] [418] +18:21:49 [ 22] [ 3] [021] +18:21:49 [ 25] [ 2] [01] +18:21:49 [ 28] [ 9] [D00002000] +18:21:49 [ 32] [ 6] [668899] +18:21:49 [ 35] [ 32] [6213545000546782=491212014678593] +18:21:49 [ 37] [ 12] [507901416697] +18:21:49 [ 41] [ 8] [03011002] +18:21:49 [ 42] [ 15] [APT ] +18:21:49 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +18:21:49 [ 49] [ 3] [418] +18:21:49 [ 52] [ 16] [5B0A97D3CFCA8771] +18:21:49 ============================================================================ +18:21:49 + + +waiting on router queue for slot.... +18:21:49 Sending to : +18:21:49 ============================================================================ +18:21:49 Sending to : +18:21:49 ============================================================================ +18:21:49 ============================================================================ +18:21:49 Slot Id : <475> +18:21:49 Transaction Type : REQUEST +18:21:49 Received From : +18:21:49 ============================================================================ +18:21:49 FNo. Len. Field Value +18:21:49 ============================================================================ +18:21:49 [ 1] [ 4] [0200] +18:21:49 [ 2] [ 16] [6213545000546782] +18:21:49 [ 3] [ 6] [010000] +18:21:49 [ 4] [ 12] [000030000000] +18:21:49 [ 7] [ 10] [0320181939] +18:21:49 [ 11] [ 6] [954596] +18:21:49 [ 12] [ 6] [181939] +18:21:49 [ 13] [ 4] [0320] +18:21:49 [ 15] [ 4] [0320] +18:21:49 [ 18] [ 4] [6011] +18:21:49 [ 19] [ 3] [418] +18:21:49 [ 22] [ 3] [021] +18:21:49 [ 25] [ 2] [01] +18:21:49 [ 28] [ 9] [D00002000] +18:21:49 [ 32] [ 6] [668899] +18:21:49 [ 35] [ 32] [6213545000546782=491212014678593] +18:21:49 [ 37] [ 12] [507901416697] +18:21:49 [ 41] [ 8] [03011002] +18:21:49 [ 42] [ 15] [APT ] +18:21:49 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +18:21:49 [ 49] [ 3] [418] +18:21:49 [ 52] [ 16] [5B0A97D3CFCA8771] +18:21:49 ============================================================================ +18:21:49 + + +waiting on router queue for slot.... +18:21:49 Sending to : +18:21:49 ============================================================================ +18:21:49 ============================================================================ +18:21:49 Slot Id : <475> +18:21:49 Transaction Type : REQUEST +18:21:49 Received From : +18:21:49 ============================================================================ +18:21:49 FNo. Len. Field Value +18:21:49 ============================================================================ +18:21:49 [ 1] [ 4] [0200] +18:21:49 [ 2] [ 16] [6213545000546782] +18:21:49 [ 3] [ 6] [010000] +18:21:49 [ 4] [ 12] [000030000000] +18:21:49 [ 7] [ 10] [0320181939] +18:21:49 [ 11] [ 6] [954596] +18:21:49 [ 12] [ 6] [181939] +18:21:49 [ 13] [ 4] [0320] +18:21:49 [ 15] [ 4] [0320] +18:21:49 [ 18] [ 4] [6011] +18:21:49 [ 19] [ 3] [418] +18:21:49 [ 22] [ 3] [021] +18:21:49 [ 25] [ 2] [01] +18:21:49 [ 28] [ 9] [D00002000] +18:21:49 [ 32] [ 6] [668899] +18:21:49 [ 35] [ 32] [6213545000546782=491212014678593] +18:21:49 [ 37] [ 12] [507901416697] +18:21:49 [ 41] [ 8] [03011002] +18:21:49 [ 42] [ 15] [APT ] +18:21:49 [ 43] [ 40] [ PAKSAN MARKET BORIKHAMSAP] +18:21:49 [ 49] [ 3] [418] +18:21:49 [ 52] [ 16] [04B7B62EBFD825E8] +18:21:49 ============================================================================ +18:21:49 + + +waiting on router queue for slot.... +18:21:49 Sending to : <0> +18:21:49 ============================================================================ +18:21:50 ============================================================================ +18:21:50 Slot Id : <455> +18:21:50 Transaction Type : RESPONSE +18:21:50 Received From : +18:21:50 ============================================================================ +18:21:50 FNo. Len. Field Value +18:21:50 ============================================================================ +18:21:50 [ 1] [ 4] [0210] +18:21:50 [ 2] [ 16] [6213544001162715] +18:21:50 [ 3] [ 6] [301000] +18:21:50 [ 4] [ 12] [000000000000] +18:21:50 [ 7] [ 10] [0320182208] +18:21:50 [ 11] [ 6] [210317] +18:21:50 [ 12] [ 6] [190027] +18:21:50 [ 13] [ 4] [0320] +18:21:50 [ 15] [ 4] [0320] +18:21:50 [ 18] [ 4] [6011] +18:21:50 [ 19] [ 3] [418] +18:21:50 [ 32] [ 6] [198901] +18:21:50 [ 35] [ 32] [6213544001162715=491212016271029] +18:21:50 [ 37] [ 12] [507918210317] +18:21:50 [ 38] [ 6] [495724] +18:21:50 [ 39] [ 2] [00] +18:21:50 [ 41] [ 8] [00002201] +18:21:50 [ 49] [ 3] [418] +18:21:50 [ 54] [ 40] [1001418C0000461241271002418C000046124127] +18:21:50 ============================================================================ +18:21:50 Calculate Source COMM Id = 5 +18:21:50 ============================================================================ +18:21:50 + + +waiting on router queue for slot.... +18:21:50 ============================================================================ +18:21:50 Slot Id : <475> +18:21:50 Transaction Type : RESPONSE +18:21:50 Received From : +18:21:50 ============================================================================ +18:21:50 FNo. Len. Field Value +18:21:50 ============================================================================ +18:21:50 [ 1] [ 4] [0210] +18:21:50 [ 2] [ 16] [6213545000546782] +18:21:50 [ 3] [ 6] [010000] +18:21:50 [ 4] [ 12] [000030000000] +18:21:50 [ 7] [ 10] [0320181939] +18:21:50 [ 11] [ 6] [954596] +18:21:50 [ 12] [ 6] [181939] +18:21:50 [ 13] [ 4] [0320] +18:21:50 [ 15] [ 4] [0320] +18:21:50 [ 18] [ 4] [6011] +18:21:50 [ 19] [ 3] [418] +18:21:50 [ 32] [ 6] [668899] +18:21:50 [ 35] [ 32] [6213545000546782=491212014678593] +18:21:50 [ 37] [ 12] [507901416697] +18:21:50 [ 38] [ 6] [785208] +18:21:50 [ 39] [ 2] [00] +18:21:50 [ 41] [ 8] [03011002] +18:21:50 [ 49] [ 3] [418] +18:21:50 [ 54] [ 40] [0001418C0001189889290002418C000118988929] +18:21:50 ============================================================================ +18:21:50 Sending to : +18:21:50 ============================================================================ +18:21:50 + + +waiting on router queue for slot.... +18:21:52 ============================================================================ +18:21:52 Slot Id : <475> +18:21:52 Transaction Type : RESPONSE +18:21:52 Received From : +18:21:52 ============================================================================ +18:21:52 FNo. Len. Field Value +18:21:52 ============================================================================ +18:21:52 [ 1] [ 4] [0210] +18:21:52 [ 2] [ 16] [6213545000546782] +18:21:52 [ 3] [ 6] [010000] +18:21:52 [ 4] [ 12] [000030000000] +18:21:52 [ 7] [ 10] [0320181939] +18:21:52 [ 11] [ 6] [954596] +18:21:52 [ 12] [ 6] [181939] +18:21:52 [ 13] [ 4] [0320] +18:21:52 [ 15] [ 4] [0320] +18:21:52 [ 18] [ 4] [6011] +18:21:52 [ 19] [ 3] [418] +18:21:52 [ 32] [ 6] [668899] +18:21:52 [ 35] [ 32] [6213545000546782=491212014678593] +18:21:52 [ 37] [ 12] [507901416697] +18:21:52 [ 38] [ 6] [785208] +18:21:52 [ 39] [ 2] [00] +18:21:52 [ 41] [ 8] [03011002] +18:21:52 [ 49] [ 3] [418] +18:21:52 [ 54] [ 40] [0001418C0001189889290002418C000118988929] +18:21:52 ============================================================================ +18:21:52 Calculate Source COMM Id = 4 +18:21:52 ============================================================================ +18:21:52 + + +waiting on router queue for slot.... +18:21:59 ============================================================================ +18:21:59 Slot Id : <460> +18:21:59 Transaction Type : REQUEST +18:21:59 Received From : +18:21:59 ============================================================================ +18:21:59 FNo. Len. Field Value +18:21:59 ============================================================================ +18:21:59 [ 1] [ 4] [0800] +18:21:59 [ 7] [ 10] [0320112105] +18:21:59 [ 11] [ 6] [157682] +18:21:59 [ 70] [ 3] [301] +18:21:59 ============================================================================ +18:21:59 + + +waiting on router queue for slot.... +18:21:59 Sending to : +18:21:59 ============================================================================ +18:21:59 ============================================================================ +18:21:59 Slot Id : <460> +18:21:59 Transaction Type : RESPONSE +18:21:59 Received From : +18:21:59 ============================================================================ +18:21:59 FNo. Len. Field Value +18:21:59 ============================================================================ +18:21:59 [ 1] [ 4] [0810] +18:21:59 [ 7] [ 10] [0320112105] +18:21:59 [ 11] [ 6] [157682] +18:21:59 [ 39] [ 2] [00] +18:21:59 [ 70] [ 3] [301] +18:21:59 ============================================================================ +18:21:59 Calculate Source COMM Id = 2 +18:21:59 ============================================================================ +18:21:59 + + +waiting on router queue for slot.... +18:22:05 ============================================================================ +18:22:05 Slot Id : <495> +18:22:05 Transaction Type : REQUEST +18:22:05 Received From : +18:22:05 ============================================================================ +18:22:05 FNo. Len. Field Value +18:22:05 ============================================================================ +18:22:05 [ 1] [ 4] [0200] +18:22:05 [ 2] [ 16] [6688990108426303] +18:22:05 [ 3] [ 6] [300000] +18:22:05 [ 4] [ 12] [000000000000] +18:22:05 [ 7] [ 10] [0320182200] +18:22:05 [ 11] [ 6] [826595] +18:22:05 [ 12] [ 6] [182200] +18:22:05 [ 13] [ 4] [0320] +18:22:05 [ 15] [ 4] [0320] +18:22:05 [ 18] [ 4] [6011] +18:22:05 [ 22] [ 3] [900] +18:22:05 [ 25] [ 2] [02] +18:22:05 [ 28] [ 9] [D00000000] +18:22:05 [ 32] [ 6] [621354] +18:22:05 [ 35] [ 37] [6688990108426303=44061231630383300000] +18:22:05 [ 37] [ 12] [507903499709] +18:22:05 [ 41] [ 8] [06002200] +18:22:05 [ 42] [ 15] [NATIVE ] +18:22:05 [ 43] [ 40] [Beng Market Beng LAO] +18:22:05 [ 49] [ 3] [418] +18:22:05 [ 52] [ 16] [AF188D46680A4AC3] +18:22:05 ============================================================================ +18:22:05 + + +waiting on router queue for slot.... +18:22:05 Sending to : +18:22:05 ============================================================================ +18:22:05 Sending to : +18:22:05 ============================================================================ +18:22:06 ============================================================================ +18:22:06 Slot Id : <495> +18:22:06 Transaction Type : REQUEST +18:22:06 Received From : +18:22:06 ============================================================================ +18:22:06 FNo. Len. Field Value +18:22:06 ============================================================================ +18:22:06 [ 1] [ 4] [0200] +18:22:06 [ 2] [ 16] [6688990108426303] +18:22:06 [ 3] [ 6] [300000] +18:22:06 [ 4] [ 12] [000000000000] +18:22:06 [ 7] [ 10] [0320182200] +18:22:06 [ 11] [ 6] [826595] +18:22:06 [ 12] [ 6] [182200] +18:22:06 [ 13] [ 4] [0320] +18:22:06 [ 15] [ 4] [0320] +18:22:06 [ 18] [ 4] [6011] +18:22:06 [ 22] [ 3] [900] +18:22:06 [ 25] [ 2] [02] +18:22:06 [ 28] [ 9] [D00000000] +18:22:06 [ 32] [ 6] [621354] +18:22:06 [ 35] [ 37] [6688990108426303=44061231630383300000] +18:22:06 [ 37] [ 12] [507903499709] +18:22:06 [ 41] [ 8] [06002200] +18:22:06 [ 42] [ 15] [NATIVE ] +18:22:06 [ 43] [ 40] [Beng Market Beng LAO] +18:22:06 [ 49] [ 3] [418] +18:22:06 [ 52] [ 16] [AF188D46680A4AC3] +18:22:06 ============================================================================ +18:22:06 + + +waiting on router queue for slot.... +18:22:06 Sending to : +18:22:06 ============================================================================ +18:22:06 ============================================================================ +18:22:06 Slot Id : <495> +18:22:06 Transaction Type : REQUEST +18:22:06 Received From : +18:22:06 ============================================================================ +18:22:06 FNo. Len. Field Value +18:22:06 ============================================================================ +18:22:06 [ 1] [ 4] [0200] +18:22:06 [ 2] [ 16] [6688990108426303] +18:22:06 [ 3] [ 6] [300000] +18:22:06 [ 4] [ 12] [000000000000] +18:22:06 [ 7] [ 10] [0320182200] +18:22:06 [ 11] [ 6] [826595] +18:22:06 [ 12] [ 6] [182200] +18:22:06 [ 13] [ 4] [0320] +18:22:06 [ 15] [ 4] [0320] +18:22:06 [ 18] [ 4] [6011] +18:22:06 [ 22] [ 3] [900] +18:22:06 [ 25] [ 2] [02] +18:22:06 [ 28] [ 9] [D00000000] +18:22:06 [ 32] [ 6] [621354] +18:22:06 [ 35] [ 37] [6688990108426303=44061231630383300000] +18:22:06 [ 37] [ 12] [507903499709] +18:22:06 [ 41] [ 8] [06002200] +18:22:06 [ 42] [ 15] [NATIVE ] +18:22:06 [ 43] [ 40] [Beng Market Beng LAO] +18:22:06 [ 49] [ 3] [418] +18:22:06 [ 52] [ 16] [95E252C5333728EB] +18:22:06 ============================================================================ +18:22:06 + + +waiting on router queue for slot.... +18:22:06 Sending to : <4> +18:22:06 ============================================================================ +18:22:07 ============================================================================ +18:22:07 Slot Id : <495> +18:22:07 Transaction Type : RESPONSE +18:22:07 Received From : +18:22:07 ============================================================================ +18:22:07 FNo. Len. Field Value +18:22:07 ============================================================================ +18:22:07 [ 1] [ 4] [0210] +18:22:07 [ 2] [ 16] [6688990108426303] +18:22:07 [ 3] [ 6] [300000] +18:22:07 [ 4] [ 12] [000000000000] +18:22:07 [ 11] [ 6] [826595] +18:22:07 [ 12] [ 6] [182200] +18:22:07 [ 15] [ 4] [0320] +18:22:07 [ 18] [ 4] [6011] +18:22:07 [ 32] [ 6] [621354] +18:22:07 [ 35] [ 37] [6688990108426303=44061231630383300000] +18:22:07 [ 37] [ 12] [507903499709] +18:22:07 [ 38] [ 6] [867948] +18:22:07 [ 39] [ 2] [00] +18:22:07 [ 41] [ 8] [06002200] +18:22:07 [ 49] [ 3] [418] +18:22:07 [ 54] [ 20] [0002418C000222198598] +18:22:07 ============================================================================ +18:22:07 Sending to : +18:22:07 ============================================================================ +18:22:07 + + +waiting on router queue for slot.... +18:22:08 ============================================================================ +18:22:08 Slot Id : <495> +18:22:08 Transaction Type : RESPONSE +18:22:08 Received From : +18:22:08 ============================================================================ +18:22:08 FNo. Len. Field Value +18:22:08 ============================================================================ +18:22:08 [ 1] [ 4] [0210] +18:22:08 [ 2] [ 16] [6688990108426303] +18:22:08 [ 3] [ 6] [300000] +18:22:08 [ 4] [ 12] [000000000000] +18:22:08 [ 11] [ 6] [826595] +18:22:08 [ 12] [ 6] [182200] +18:22:08 [ 15] [ 4] [0320] +18:22:08 [ 18] [ 4] [6011] +18:22:08 [ 32] [ 6] [621354] +18:22:08 [ 35] [ 37] [6688990108426303=44061231630383300000] +18:22:08 [ 37] [ 12] [507903499709] +18:22:08 [ 38] [ 6] [867948] +18:22:08 [ 39] [ 2] [00] +18:22:08 [ 41] [ 8] [06002200] +18:22:08 [ 49] [ 3] [418] +18:22:08 [ 54] [ 20] [0002418C000222198598] +18:22:08 ============================================================================ +18:22:08 Calculate Source COMM Id = 0 +18:22:08 ============================================================================ +18:22:08 + + +waiting on router queue for slot.... +18:22:09 ============================================================================ +18:22:09 Slot Id : <440> +18:22:09 Transaction Type : REQUEST +18:22:09 Received From : +18:22:09 ============================================================================ +18:22:09 FNo. Len. Field Value +18:22:09 ============================================================================ +18:22:09 [ 1] [ 4] [0800] +18:22:09 [ 7] [ 10] [0320112116] +18:22:09 [ 11] [ 6] [157683] +18:22:09 [ 70] [ 3] [301] +18:22:09 ============================================================================ +18:22:09 + + +waiting on router queue for slot.... +18:22:09 Sending to : +18:22:09 ============================================================================ +18:22:09 ============================================================================ +18:22:09 Slot Id : <440> +18:22:09 Transaction Type : RESPONSE +18:22:09 Received From : +18:22:09 ============================================================================ +18:22:09 FNo. Len. Field Value +18:22:09 ============================================================================ +18:22:09 [ 1] [ 4] [0810] +18:22:09 [ 7] [ 10] [0320112116] +18:22:09 [ 11] [ 6] [157683] +18:22:09 [ 39] [ 2] [00] +18:22:09 [ 70] [ 3] [301] +18:22:09 ============================================================================ +18:22:09 Calculate Source COMM Id = 2 +18:22:09 ============================================================================ +18:22:09 + + +waiting on router queue for slot.... +18:22:11 ============================================================================ +18:22:11 Slot Id : <482> +18:22:11 Transaction Type : REQUEST +18:22:11 Received From : +18:22:11 ============================================================================ +18:22:11 FNo. Len. Field Value +18:22:11 ============================================================================ +18:22:11 [ 1] [ 4] [0800] +18:22:11 [ 2] [ 5] [02531] +18:22:11 [ 3] [ 6] [579188] +18:22:11 [ 7] [ 10] [0320112211] +18:22:11 [ 11] [ 6] [807478] +18:22:11 [ 15] [ 10] [0320112211] +18:22:11 [ 37] [ 11] [57918807478] +18:22:11 [ 70] [ 3] [001] +18:22:11 ============================================================================ +18:22:11 + + +waiting on router queue for slot.... +18:22:11 ============================================================================ +18:22:11 Slot Id : <482> +18:22:11 Transaction Type : RESPONSE +18:22:11 Received From : +18:22:11 ============================================================================ +18:22:11 FNo. Len. Field Value +18:22:11 ============================================================================ +18:22:11 [ 1] [ 4] [0810] +18:22:11 [ 7] [ 10] [0320112211] +18:22:11 [ 11] [ 6] [807478] +18:22:11 [ 15] [ 4] [0320] +18:22:11 [ 37] [ 12] [57918807478] +18:22:11 [ 39] [ 2] [00] +18:22:11 [ 70] [ 3] [001] +18:22:11 ============================================================================ +18:22:11 Sending to : +18:22:11 ============================================================================ +18:22:11 + + +waiting on router queue for slot.... +18:22:21 ============================================================================ +18:22:21 Slot Id : <432> +18:22:21 Transaction Type : REQUEST +18:22:21 Received From : +18:22:21 ============================================================================ +18:22:21 FNo. Len. Field Value +18:22:21 ============================================================================ +18:22:21 [ 1] [ 4] [0800] +18:22:21 [ 7] [ 10] [0320112127] +18:22:21 [ 11] [ 6] [157684] +18:22:21 [ 70] [ 3] [301] +18:22:21 ============================================================================ +18:22:21 + + +waiting on router queue for slot.... +18:22:21 Sending to : +18:22:21 ============================================================================ +18:22:21 ============================================================================ +18:22:21 Slot Id : <432> +18:22:21 Transaction Type : RESPONSE +18:22:21 Received From : +18:22:21 ============================================================================ +18:22:21 FNo. Len. Field Value +18:22:21 ============================================================================ +18:22:21 [ 1] [ 4] [0810] +18:22:21 [ 7] [ 10] [0320112127] +18:22:21 [ 11] [ 6] [157684] +18:22:21 [ 39] [ 2] [00] +18:22:21 [ 70] [ 3] [301] +18:22:21 ============================================================================ +18:22:21 Calculate Source COMM Id = 2 +18:22:21 ============================================================================ +18:22:21 + + +waiting on router queue for slot.... +18:22:26 ============================================================================ +18:22:26 Slot Id : <449> +18:22:26 Transaction Type : REQUEST +18:22:26 Received From : +18:22:26 ============================================================================ +18:22:26 FNo. Len. Field Value +18:22:26 ============================================================================ +18:22:26 [ 1] [ 4] [0200] +18:22:26 [ 2] [ 16] [6213545000037501] +18:22:26 [ 3] [ 6] [010000] +18:22:26 [ 4] [ 12] [000100000000] +18:22:26 [ 7] [ 10] [0320112132] +18:22:26 [ 11] [ 6] [271193] +18:22:26 [ 12] [ 6] [182132] +18:22:26 [ 13] [ 4] [0320] +18:22:26 [ 14] [ 4] [4912] +18:22:26 [ 15] [ 4] [0320] +18:22:26 [ 18] [ 4] [6011] +18:22:26 [ 19] [ 3] [418] +18:22:26 [ 22] [ 3] [021] +18:22:26 [ 25] [ 2] [01] +18:22:26 [ 28] [ 9] [D00002000] +18:22:26 [ 32] [ 6] [180893] +18:22:26 [ 35] [ 32] [6213545000037501=491212013750087] +18:22:26 [ 37] [ 12] [507911271193] +18:22:26 [ 41] [ 8] [0243VTKS] +18:22:26 [ 42] [ 15] [999999 ] +18:22:26 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +18:22:26 [ 49] [ 3] [418] +18:22:26 [ 52] [ 16] [9362995FEE2DFA00] +18:22:26 ============================================================================ +18:22:26 + + +waiting on router queue for slot.... +18:22:26 Sending to : +18:22:26 ============================================================================ +18:22:26 Sending to : +18:22:26 ============================================================================ +18:22:26 ============================================================================ +18:22:26 Slot Id : <449> +18:22:26 Transaction Type : REQUEST +18:22:26 Received From : +18:22:26 ============================================================================ +18:22:26 FNo. Len. Field Value +18:22:26 ============================================================================ +18:22:26 [ 1] [ 4] [0200] +18:22:26 [ 2] [ 16] [6213545000037501] +18:22:26 [ 3] [ 6] [010000] +18:22:26 [ 4] [ 12] [000100000000] +18:22:26 [ 7] [ 10] [0320112132] +18:22:26 [ 11] [ 6] [271193] +18:22:26 [ 12] [ 6] [182132] +18:22:26 [ 13] [ 4] [0320] +18:22:26 [ 14] [ 4] [4912] +18:22:26 [ 15] [ 4] [0320] +18:22:26 [ 18] [ 4] [6011] +18:22:26 [ 19] [ 3] [418] +18:22:26 [ 22] [ 3] [021] +18:22:26 [ 25] [ 2] [01] +18:22:26 [ 28] [ 9] [D00002000] +18:22:26 [ 32] [ 6] [180893] +18:22:26 [ 35] [ 32] [6213545000037501=491212013750087] +18:22:26 [ 37] [ 12] [507911271193] +18:22:26 [ 41] [ 8] [0243VTKS] +18:22:26 [ 42] [ 15] [999999 ] +18:22:26 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +18:22:26 [ 49] [ 3] [418] +18:22:26 [ 52] [ 16] [9362995FEE2DFA00] +18:22:26 ============================================================================ +18:22:26 + + +waiting on router queue for slot.... +18:22:26 Sending to : +18:22:26 ============================================================================ +18:22:26 ============================================================================ +18:22:26 Slot Id : <449> +18:22:26 Transaction Type : REQUEST +18:22:26 Received From : +18:22:26 ============================================================================ +18:22:26 FNo. Len. Field Value +18:22:26 ============================================================================ +18:22:26 [ 1] [ 4] [0200] +18:22:26 [ 2] [ 16] [6213545000037501] +18:22:26 [ 3] [ 6] [010000] +18:22:26 [ 4] [ 12] [000100000000] +18:22:26 [ 7] [ 10] [0320112132] +18:22:26 [ 11] [ 6] [271193] +18:22:26 [ 12] [ 6] [182132] +18:22:26 [ 13] [ 4] [0320] +18:22:26 [ 14] [ 4] [4912] +18:22:26 [ 15] [ 4] [0320] +18:22:26 [ 18] [ 4] [6011] +18:22:26 [ 19] [ 3] [418] +18:22:26 [ 22] [ 3] [021] +18:22:26 [ 25] [ 2] [01] +18:22:26 [ 28] [ 9] [D00002000] +18:22:26 [ 32] [ 6] [180893] +18:22:26 [ 35] [ 32] [6213545000037501=491212013750087] +18:22:26 [ 37] [ 12] [507911271193] +18:22:26 [ 41] [ 8] [0243VTKS] +18:22:26 [ 42] [ 15] [999999 ] +18:22:26 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +18:22:26 [ 49] [ 3] [418] +18:22:26 [ 52] [ 16] [E4202410025C01A6] +18:22:26 ============================================================================ +18:22:26 + + +waiting on router queue for slot.... +18:22:26 Sending to : <0> +18:22:26 ============================================================================ +18:22:27 ============================================================================ +18:22:27 Slot Id : <449> +18:22:27 Transaction Type : RESPONSE +18:22:27 Received From : +18:22:27 ============================================================================ +18:22:27 FNo. Len. Field Value +18:22:27 ============================================================================ +18:22:27 [ 1] [ 4] [0210] +18:22:27 [ 2] [ 16] [6213545000037501] +18:22:27 [ 3] [ 6] [010000] +18:22:27 [ 4] [ 12] [000100000000] +18:22:27 [ 7] [ 10] [0320112132] +18:22:27 [ 11] [ 6] [271193] +18:22:27 [ 12] [ 6] [182132] +18:22:27 [ 13] [ 4] [0320] +18:22:27 [ 15] [ 4] [0320] +18:22:27 [ 18] [ 4] [6011] +18:22:27 [ 19] [ 3] [418] +18:22:27 [ 32] [ 6] [180893] +18:22:27 [ 35] [ 32] [6213545000037501=491212013750087] +18:22:27 [ 37] [ 12] [507911271193] +18:22:27 [ 38] [ 6] [750295] +18:22:27 [ 39] [ 2] [00] +18:22:27 [ 41] [ 8] [0243VTKS] +18:22:27 [ 49] [ 3] [418] +18:22:27 [ 54] [ 40] [0001418C0000300823060002418C000030082306] +18:22:27 ============================================================================ +18:22:27 Sending to : +18:22:27 ============================================================================ +18:22:27 + + +waiting on router queue for slot.... +18:22:29 ============================================================================ +18:22:29 Slot Id : <449> +18:22:29 Transaction Type : RESPONSE +18:22:29 Received From : +18:22:29 ============================================================================ +18:22:29 FNo. Len. Field Value +18:22:29 ============================================================================ +18:22:29 [ 1] [ 4] [0210] +18:22:29 [ 2] [ 16] [6213545000037501] +18:22:29 [ 3] [ 6] [010000] +18:22:29 [ 4] [ 12] [000100000000] +18:22:29 [ 7] [ 10] [0320112132] +18:22:29 [ 11] [ 6] [271193] +18:22:29 [ 12] [ 6] [182132] +18:22:29 [ 13] [ 4] [0320] +18:22:29 [ 15] [ 4] [0320] +18:22:29 [ 18] [ 4] [6011] +18:22:29 [ 19] [ 3] [418] +18:22:29 [ 32] [ 6] [180893] +18:22:29 [ 35] [ 32] [6213545000037501=491212013750087] +18:22:29 [ 37] [ 12] [507911271193] +18:22:29 [ 38] [ 6] [750295] +18:22:29 [ 39] [ 2] [00] +18:22:29 [ 41] [ 8] [0243VTKS] +18:22:29 [ 49] [ 3] [418] +18:22:29 [ 54] [ 40] [0001418C0000300823060002418C000030082306] +18:22:29 ============================================================================ +18:22:29 Calculate Source COMM Id = 2 +18:22:29 ============================================================================ +18:22:29 + + +waiting on router queue for slot.... +18:22:35 ============================================================================ +18:22:35 Slot Id : <488> +18:22:35 Transaction Type : REQUEST +18:22:35 Received From : +18:22:35 ============================================================================ +18:22:35 FNo. Len. Field Value +18:22:35 ============================================================================ +18:22:35 [ 1] [ 4] [0200] +18:22:35 [ 2] [ 16] [1808930500012687] +18:22:35 [ 3] [ 6] [300000] +18:22:35 [ 4] [ 12] [000000000000] +18:22:35 [ 7] [ 10] [0320182025] +18:22:35 [ 11] [ 6] [954619] +18:22:35 [ 12] [ 6] [182025] +18:22:35 [ 13] [ 4] [0320] +18:22:35 [ 15] [ 4] [0320] +18:22:35 [ 18] [ 4] [6011] +18:22:35 [ 19] [ 3] [418] +18:22:35 [ 22] [ 3] [021] +18:22:35 [ 25] [ 2] [01] +18:22:35 [ 28] [ 9] [D00000000] +18:22:35 [ 32] [ 6] [668899] +18:22:35 [ 35] [ 27] [1808930500012687=1803500028] +18:22:35 [ 37] [ 12] [507901489386] +18:22:35 [ 41] [ 8] [03515001] +18:22:35 [ 42] [ 15] [APT ] +18:22:35 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:22:35 [ 49] [ 3] [418] +18:22:35 [ 52] [ 16] [F14AC5155561B4B1] +18:22:35 ============================================================================ +18:22:35 + + +waiting on router queue for slot.... +18:22:35 Sending to : +18:22:35 ============================================================================ +18:22:35 Sending to : +18:22:35 ============================================================================ +18:22:35 ============================================================================ +18:22:35 Slot Id : <488> +18:22:35 Transaction Type : REQUEST +18:22:35 Received From : +18:22:35 ============================================================================ +18:22:35 FNo. Len. Field Value +18:22:35 ============================================================================ +18:22:35 [ 1] [ 4] [0200] +18:22:35 [ 2] [ 16] [1808930500012687] +18:22:35 [ 3] [ 6] [300000] +18:22:35 [ 4] [ 12] [000000000000] +18:22:35 [ 7] [ 10] [0320182025] +18:22:35 [ 11] [ 6] [954619] +18:22:35 [ 12] [ 6] [182025] +18:22:35 [ 13] [ 4] [0320] +18:22:35 [ 15] [ 4] [0320] +18:22:35 [ 18] [ 4] [6011] +18:22:35 [ 19] [ 3] [418] +18:22:35 [ 22] [ 3] [021] +18:22:35 [ 25] [ 2] [01] +18:22:35 [ 28] [ 9] [D00000000] +18:22:35 [ 32] [ 6] [668899] +18:22:35 [ 35] [ 27] [1808930500012687=1803500028] +18:22:35 [ 37] [ 12] [507901489386] +18:22:35 [ 41] [ 8] [03515001] +18:22:35 [ 42] [ 15] [APT ] +18:22:35 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:22:35 [ 49] [ 3] [418] +18:22:35 [ 52] [ 16] [F14AC5155561B4B1] +18:22:35 ============================================================================ +18:22:35 + + +waiting on router queue for slot.... +18:22:35 Sending to : +18:22:35 ============================================================================ +18:22:35 ============================================================================ +18:22:35 Slot Id : <488> +18:22:35 Transaction Type : REQUEST +18:22:35 Received From : +18:22:35 ============================================================================ +18:22:35 FNo. Len. Field Value +18:22:35 ============================================================================ +18:22:35 [ 1] [ 4] [0200] +18:22:35 [ 2] [ 16] [1808930500012687] +18:22:35 [ 3] [ 6] [300000] +18:22:35 [ 4] [ 12] [000000000000] +18:22:35 [ 7] [ 10] [0320182025] +18:22:35 [ 11] [ 6] [954619] +18:22:35 [ 12] [ 6] [182025] +18:22:35 [ 13] [ 4] [0320] +18:22:35 [ 15] [ 4] [0320] +18:22:35 [ 18] [ 4] [6011] +18:22:35 [ 19] [ 3] [418] +18:22:35 [ 22] [ 3] [021] +18:22:35 [ 25] [ 2] [01] +18:22:35 [ 28] [ 9] [D00000000] +18:22:35 [ 32] [ 6] [668899] +18:22:35 [ 35] [ 27] [1808930500012687=1803500028] +18:22:35 [ 37] [ 12] [507901489386] +18:22:35 [ 41] [ 8] [03515001] +18:22:35 [ 42] [ 15] [APT ] +18:22:35 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:22:35 [ 49] [ 3] [418] +18:22:35 [ 52] [ 16] [15E6262FB2DD77B0] +18:22:35 ============================================================================ +18:22:35 + + +waiting on router queue for slot.... +18:22:35 Sending to : <2> +18:22:35 ============================================================================ +18:22:37 ============================================================================ +18:22:37 Slot Id : <488> +18:22:37 Transaction Type : RESPONSE +18:22:37 Received From : +18:22:37 ============================================================================ +18:22:37 FNo. Len. Field Value +18:22:37 ============================================================================ +18:22:37 [ 1] [ 4] [0210] +18:22:37 [ 2] [ 16] [1808930500012687] +18:22:37 [ 3] [ 6] [300000] +18:22:37 [ 7] [ 10] [0320182025] +18:22:37 [ 11] [ 6] [954619] +18:22:37 [ 12] [ 6] [182025] +18:22:37 [ 13] [ 4] [0320] +18:22:37 [ 14] [ 4] [1803] +18:22:37 [ 19] [ 3] [418] +18:22:37 [ 32] [ 6] [668899] +18:22:37 [ 37] [ 12] [507901489386] +18:22:37 [ 38] [ 6] [954619] +18:22:37 [ 39] [ 2] [00] +18:22:37 [ 41] [ 8] [03515001] +18:22:37 [ 49] [ 3] [418] +18:22:37 [ 52] [ 16] [15E6262FB2DD77B0] +18:22:37 [ 54] [ 20] [0002418C000207884700] +18:22:37 ============================================================================ +18:22:37 Sending to : +18:22:37 ============================================================================ +18:22:37 + + +waiting on router queue for slot.... +18:22:39 ============================================================================ +18:22:39 Slot Id : <453> +18:22:39 Transaction Type : REQUEST +18:22:39 Received From : +18:22:39 ============================================================================ +18:22:39 FNo. Len. Field Value +18:22:39 ============================================================================ +18:22:39 [ 1] [ 4] [0200] +18:22:39 [ 2] [ 16] [6688990602356204] +18:22:39 [ 3] [ 6] [010000] +18:22:39 [ 4] [ 12] [000005000000] +18:22:39 [ 7] [ 10] [0320182234] +18:22:39 [ 11] [ 6] [826704] +18:22:39 [ 12] [ 6] [182234] +18:22:39 [ 13] [ 4] [0320] +18:22:39 [ 15] [ 4] [0320] +18:22:39 [ 18] [ 4] [6011] +18:22:39 [ 22] [ 3] [900] +18:22:39 [ 25] [ 2] [02] +18:22:39 [ 28] [ 9] [D00002000] +18:22:39 [ 32] [ 6] [621354] +18:22:39 [ 35] [ 37] [6688990602356204=43020061620441800000] +18:22:39 [ 37] [ 12] [507904229494] +18:22:39 [ 41] [ 8] [05004600] +18:22:39 [ 42] [ 15] [NATIVE ] +18:22:39 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:22:39 [ 49] [ 3] [418] +18:22:39 [ 52] [ 16] [F2504CE14A34A771] +18:22:39 ============================================================================ +18:22:39 + + +waiting on router queue for slot.... +18:22:39 Sending to : +18:22:39 ============================================================================ +18:22:39 Sending to : +18:22:39 ============================================================================ +18:22:39 ============================================================================ +18:22:39 Slot Id : <488> +18:22:39 Transaction Type : RESPONSE +18:22:39 Received From : +18:22:39 ============================================================================ +18:22:39 FNo. Len. Field Value +18:22:39 ============================================================================ +18:22:39 [ 1] [ 4] [0210] +18:22:39 [ 2] [ 16] [1808930500012687] +18:22:39 [ 3] [ 6] [300000] +18:22:39 [ 7] [ 10] [0320182025] +18:22:39 [ 11] [ 6] [954619] +18:22:39 [ 12] [ 6] [182025] +18:22:39 [ 13] [ 4] [0320] +18:22:39 [ 14] [ 4] [1803] +18:22:39 [ 19] [ 3] [418] +18:22:39 [ 32] [ 6] [668899] +18:22:39 [ 37] [ 12] [507901489386] +18:22:39 [ 38] [ 6] [954619] +18:22:39 [ 39] [ 2] [00] +18:22:39 [ 41] [ 8] [03515001] +18:22:39 [ 49] [ 3] [418] +18:22:39 [ 52] [ 16] [15E6262FB2DD77B0] +18:22:39 [ 54] [ 20] [0002418C000207884700] +18:22:39 ============================================================================ +18:22:39 Calculate Source COMM Id = 4 +18:22:39 ============================================================================ +18:22:39 + + +waiting on router queue for slot.... +18:22:39 ============================================================================ +18:22:39 Slot Id : <453> +18:22:39 Transaction Type : REQUEST +18:22:39 Received From : +18:22:39 ============================================================================ +18:22:39 FNo. Len. Field Value +18:22:39 ============================================================================ +18:22:39 [ 1] [ 4] [0200] +18:22:39 [ 2] [ 16] [6688990602356204] +18:22:39 [ 3] [ 6] [010000] +18:22:39 [ 4] [ 12] [000005000000] +18:22:39 [ 7] [ 10] [0320182234] +18:22:39 [ 11] [ 6] [826704] +18:22:39 [ 12] [ 6] [182234] +18:22:39 [ 13] [ 4] [0320] +18:22:39 [ 15] [ 4] [0320] +18:22:39 [ 18] [ 4] [6011] +18:22:39 [ 22] [ 3] [900] +18:22:39 [ 25] [ 2] [02] +18:22:39 [ 28] [ 9] [D00002000] +18:22:39 [ 32] [ 6] [621354] +18:22:39 [ 35] [ 37] [6688990602356204=43020061620441800000] +18:22:39 [ 37] [ 12] [507904229494] +18:22:39 [ 41] [ 8] [05004600] +18:22:39 [ 42] [ 15] [NATIVE ] +18:22:39 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:22:39 [ 49] [ 3] [418] +18:22:39 [ 52] [ 16] [F2504CE14A34A771] +18:22:39 ============================================================================ +18:22:39 + + +waiting on router queue for slot.... +18:22:39 Sending to : +18:22:39 ============================================================================ +18:22:39 ============================================================================ +18:22:39 Slot Id : <453> +18:22:39 Transaction Type : REQUEST +18:22:39 Received From : +18:22:39 ============================================================================ +18:22:39 FNo. Len. Field Value +18:22:39 ============================================================================ +18:22:39 [ 1] [ 4] [0200] +18:22:39 [ 2] [ 16] [6688990602356204] +18:22:39 [ 3] [ 6] [010000] +18:22:39 [ 4] [ 12] [000005000000] +18:22:39 [ 7] [ 10] [0320182234] +18:22:39 [ 11] [ 6] [826704] +18:22:39 [ 12] [ 6] [182234] +18:22:39 [ 13] [ 4] [0320] +18:22:39 [ 15] [ 4] [0320] +18:22:39 [ 18] [ 4] [6011] +18:22:39 [ 22] [ 3] [900] +18:22:39 [ 25] [ 2] [02] +18:22:39 [ 28] [ 9] [D00002000] +18:22:39 [ 32] [ 6] [621354] +18:22:39 [ 35] [ 37] [6688990602356204=43020061620441800000] +18:22:39 [ 37] [ 12] [507904229494] +18:22:39 [ 41] [ 8] [05004600] +18:22:39 [ 42] [ 15] [NATIVE ] +18:22:39 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:22:39 [ 49] [ 3] [418] +18:22:39 [ 52] [ 16] [3FE11F8AB7DC200D] +18:22:39 ============================================================================ +18:22:39 + + +waiting on router queue for slot.... +18:22:39 Sending to : <4> +18:22:39 ============================================================================ +18:22:40 ============================================================================ +18:22:40 Slot Id : <453> +18:22:40 Transaction Type : RESPONSE +18:22:40 Received From : +18:22:40 ============================================================================ +18:22:40 FNo. Len. Field Value +18:22:40 ============================================================================ +18:22:40 [ 1] [ 4] [0210] +18:22:40 [ 2] [ 16] [6688990602356204] +18:22:40 [ 3] [ 6] [010000] +18:22:40 [ 4] [ 12] [000005000000] +18:22:40 [ 11] [ 6] [826704] +18:22:40 [ 12] [ 6] [182234] +18:22:40 [ 15] [ 4] [0320] +18:22:40 [ 18] [ 4] [6011] +18:22:40 [ 32] [ 6] [621354] +18:22:40 [ 35] [ 37] [6688990602356204=43020061620441800000] +18:22:40 [ 37] [ 12] [507904229494] +18:22:40 [ 38] [ 6] [160080] +18:22:40 [ 39] [ 2] [00] +18:22:40 [ 41] [ 8] [05004600] +18:22:40 [ 49] [ 3] [418] +18:22:40 [ 54] [ 20] [0002418C000002440590] +18:22:40 ============================================================================ +18:22:40 Sending to : +18:22:40 ============================================================================ +18:22:40 + + +waiting on router queue for slot.... +18:22:42 ============================================================================ +18:22:42 Slot Id : <453> +18:22:42 Transaction Type : RESPONSE +18:22:42 Received From : +18:22:42 ============================================================================ +18:22:42 FNo. Len. Field Value +18:22:42 ============================================================================ +18:22:42 [ 1] [ 4] [0210] +18:22:42 [ 2] [ 16] [6688990602356204] +18:22:42 [ 3] [ 6] [010000] +18:22:42 [ 4] [ 12] [000005000000] +18:22:42 [ 11] [ 6] [826704] +18:22:42 [ 12] [ 6] [182234] +18:22:42 [ 15] [ 4] [0320] +18:22:42 [ 18] [ 4] [6011] +18:22:42 [ 32] [ 6] [621354] +18:22:42 [ 35] [ 37] [6688990602356204=43020061620441800000] +18:22:42 [ 37] [ 12] [507904229494] +18:22:42 [ 38] [ 6] [160080] +18:22:42 [ 39] [ 2] [00] +18:22:42 [ 41] [ 8] [05004600] +18:22:42 [ 49] [ 3] [418] +18:22:42 [ 54] [ 20] [0002418C000002440590] +18:22:42 ============================================================================ +18:22:42 Calculate Source COMM Id = 0 +18:22:42 ============================================================================ +18:22:42 + + +waiting on router queue for slot.... +18:22:48 ============================================================================ +18:22:48 Slot Id : <470> +18:22:48 Transaction Type : REQUEST +18:22:48 Received From : +18:22:48 ============================================================================ +18:22:48 FNo. Len. Field Value +18:22:48 ============================================================================ +18:22:48 [ 1] [ 4] [0800] +18:22:48 [ 7] [ 10] [0321013437] +18:22:48 [ 11] [ 6] [183437] +18:22:48 [ 37] [ 12] [57918183437] +18:22:48 [ 70] [ 3] [301] +18:22:48 ============================================================================ +18:22:48 + + +waiting on router queue for slot.... +18:22:48 Sending to : +18:22:48 ============================================================================ +18:22:48 ============================================================================ +18:22:48 Slot Id : <470> +18:22:48 Transaction Type : RESPONSE +18:22:48 Received From : +18:22:48 ============================================================================ +18:22:48 FNo. Len. Field Value +18:22:48 ============================================================================ +18:22:48 [ 1] [ 4] [0810] +18:22:48 [ 7] [ 10] [0321013437] +18:22:48 [ 11] [ 6] [183437] +18:22:48 [ 37] [ 12] [579181834370] +18:22:48 [ 39] [ 2] [00] +18:22:48 [ 70] [ 3] [810] +18:22:48 ============================================================================ +18:22:48 Calculate Source COMM Id = 6 +18:22:48 ============================================================================ +18:22:48 + + +waiting on router queue for slot.... +18:22:49 ============================================================================ +18:22:49 Slot Id : <484> +18:22:49 Transaction Type : REQUEST +18:22:49 Received From : +18:22:49 ============================================================================ +18:22:49 FNo. Len. Field Value +18:22:49 ============================================================================ +18:22:49 [ 1] [ 4] [0800] +18:22:49 [ 7] [ 10] [0320112155] +18:22:49 [ 11] [ 6] [157685] +18:22:49 [ 70] [ 3] [301] +18:22:49 ============================================================================ +18:22:49 + + +waiting on router queue for slot.... +18:22:49 Sending to : +18:22:49 ============================================================================ +18:22:49 ============================================================================ +18:22:49 Slot Id : <484> +18:22:49 Transaction Type : RESPONSE +18:22:49 Received From : +18:22:49 ============================================================================ +18:22:49 FNo. Len. Field Value +18:22:49 ============================================================================ +18:22:49 [ 1] [ 4] [0810] +18:22:49 [ 7] [ 10] [0320112155] +18:22:49 [ 11] [ 6] [157685] +18:22:49 [ 39] [ 2] [00] +18:22:49 [ 70] [ 3] [301] +18:22:49 ============================================================================ +18:22:49 Calculate Source COMM Id = 2 +18:22:49 ============================================================================ +18:22:49 + + +waiting on router queue for slot.... +18:23:00 ============================================================================ +18:23:00 Slot Id : <480> +18:23:00 Transaction Type : REQUEST +18:23:00 Received From : +18:23:00 ============================================================================ +18:23:00 FNo. Len. Field Value +18:23:00 ============================================================================ +18:23:00 [ 1] [ 4] [0800] +18:23:00 [ 7] [ 10] [0320112206] +18:23:00 [ 11] [ 6] [157686] +18:23:00 [ 70] [ 3] [301] +18:23:00 ============================================================================ +18:23:00 + + +waiting on router queue for slot.... +18:23:00 Sending to : +18:23:00 ============================================================================ +18:23:00 ============================================================================ +18:23:00 Slot Id : <480> +18:23:00 Transaction Type : RESPONSE +18:23:00 Received From : +18:23:00 ============================================================================ +18:23:00 FNo. Len. Field Value +18:23:00 ============================================================================ +18:23:00 [ 1] [ 4] [0810] +18:23:00 [ 7] [ 10] [0320112206] +18:23:00 [ 11] [ 6] [157686] +18:23:00 [ 39] [ 2] [00] +18:23:00 [ 70] [ 3] [301] +18:23:00 ============================================================================ +18:23:00 Calculate Source COMM Id = 2 +18:23:00 ============================================================================ +18:23:00 + + +waiting on router queue for slot.... +18:23:09 ============================================================================ +18:23:09 Slot Id : <463> +18:23:09 Transaction Type : REQUEST +18:23:09 Received From : +18:23:09 ============================================================================ +18:23:09 FNo. Len. Field Value +18:23:09 ============================================================================ +18:23:09 [ 1] [ 4] [0200] +18:23:09 [ 2] [ 16] [1808930500012687] +18:23:09 [ 3] [ 6] [010000] +18:23:09 [ 4] [ 12] [000100000000] +18:23:09 [ 7] [ 10] [0320182058] +18:23:09 [ 11] [ 6] [954628] +18:23:09 [ 12] [ 6] [182058] +18:23:09 [ 13] [ 4] [0320] +18:23:09 [ 15] [ 4] [0320] +18:23:09 [ 18] [ 4] [6011] +18:23:09 [ 19] [ 3] [418] +18:23:09 [ 22] [ 3] [021] +18:23:09 [ 25] [ 2] [01] +18:23:09 [ 28] [ 9] [D00002000] +18:23:09 [ 32] [ 6] [668899] +18:23:09 [ 35] [ 27] [1808930500012687=1803500028] +18:23:09 [ 37] [ 12] [507901489387] +18:23:09 [ 41] [ 8] [03515001] +18:23:09 [ 42] [ 15] [APT ] +18:23:09 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:23:09 [ 49] [ 3] [418] +18:23:09 [ 52] [ 16] [F14AC5155561B4B1] +18:23:09 ============================================================================ +18:23:09 + + +waiting on router queue for slot.... +18:23:09 Sending to : +18:23:09 ============================================================================ +18:23:09 Sending to : +18:23:09 ============================================================================ +18:23:09 ============================================================================ +18:23:09 Slot Id : <463> +18:23:09 Transaction Type : REQUEST +18:23:09 Received From : +18:23:09 ============================================================================ +18:23:09 FNo. Len. Field Value +18:23:09 ============================================================================ +18:23:09 [ 1] [ 4] [0200] +18:23:09 [ 2] [ 16] [1808930500012687] +18:23:09 [ 3] [ 6] [010000] +18:23:09 [ 4] [ 12] [000100000000] +18:23:09 [ 7] [ 10] [0320182058] +18:23:09 [ 11] [ 6] [954628] +18:23:09 [ 12] [ 6] [182058] +18:23:09 [ 13] [ 4] [0320] +18:23:09 [ 15] [ 4] [0320] +18:23:09 [ 18] [ 4] [6011] +18:23:09 [ 19] [ 3] [418] +18:23:09 [ 22] [ 3] [021] +18:23:09 [ 25] [ 2] [01] +18:23:09 [ 28] [ 9] [D00002000] +18:23:09 [ 32] [ 6] [668899] +18:23:09 [ 35] [ 27] [1808930500012687=1803500028] +18:23:09 [ 37] [ 12] [507901489387] +18:23:09 [ 41] [ 8] [03515001] +18:23:09 [ 42] [ 15] [APT ] +18:23:09 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:23:09 [ 49] [ 3] [418] +18:23:09 [ 52] [ 16] [F14AC5155561B4B1] +18:23:09 ============================================================================ +18:23:09 + + +waiting on router queue for slot.... +18:23:09 Sending to : +18:23:09 ============================================================================ +18:23:09 ============================================================================ +18:23:09 Slot Id : <463> +18:23:09 Transaction Type : REQUEST +18:23:09 Received From : +18:23:09 ============================================================================ +18:23:09 FNo. Len. Field Value +18:23:09 ============================================================================ +18:23:09 [ 1] [ 4] [0200] +18:23:09 [ 2] [ 16] [1808930500012687] +18:23:09 [ 3] [ 6] [010000] +18:23:09 [ 4] [ 12] [000100000000] +18:23:09 [ 7] [ 10] [0320182058] +18:23:09 [ 11] [ 6] [954628] +18:23:09 [ 12] [ 6] [182058] +18:23:09 [ 13] [ 4] [0320] +18:23:09 [ 15] [ 4] [0320] +18:23:09 [ 18] [ 4] [6011] +18:23:09 [ 19] [ 3] [418] +18:23:09 [ 22] [ 3] [021] +18:23:09 [ 25] [ 2] [01] +18:23:09 [ 28] [ 9] [D00002000] +18:23:09 [ 32] [ 6] [668899] +18:23:09 [ 35] [ 27] [1808930500012687=1803500028] +18:23:09 [ 37] [ 12] [507901489387] +18:23:09 [ 41] [ 8] [03515001] +18:23:09 [ 42] [ 15] [APT ] +18:23:09 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:23:09 [ 49] [ 3] [418] +18:23:09 [ 52] [ 16] [15E6262FB2DD77B0] +18:23:09 ============================================================================ +18:23:09 + + +waiting on router queue for slot.... +18:23:09 Sending to : <2> +18:23:09 ============================================================================ +18:23:10 ============================================================================ +18:23:10 Slot Id : <471> +18:23:10 Transaction Type : REQUEST +18:23:10 Received From : +18:23:10 ============================================================================ +18:23:10 FNo. Len. Field Value +18:23:10 ============================================================================ +18:23:10 [ 1] [ 4] [0800] +18:23:10 [ 7] [ 10] [0320112217] +18:23:10 [ 11] [ 6] [157687] +18:23:10 [ 70] [ 3] [301] +18:23:10 ============================================================================ +18:23:10 + + +waiting on router queue for slot.... +18:23:10 Sending to : +18:23:10 ============================================================================ +18:23:10 ============================================================================ +18:23:10 Slot Id : <471> +18:23:10 Transaction Type : RESPONSE +18:23:10 Received From : +18:23:10 ============================================================================ +18:23:10 FNo. Len. Field Value +18:23:10 ============================================================================ +18:23:10 [ 1] [ 4] [0810] +18:23:10 [ 7] [ 10] [0320112217] +18:23:10 [ 11] [ 6] [157687] +18:23:10 [ 39] [ 2] [00] +18:23:10 [ 70] [ 3] [301] +18:23:10 ============================================================================ +18:23:10 Calculate Source COMM Id = 2 +18:23:10 ============================================================================ +18:23:10 + + +waiting on router queue for slot.... +18:23:13 ============================================================================ +18:23:13 Slot Id : <490> +18:23:13 Transaction Type : REQUEST +18:23:13 Received From : +18:23:13 ============================================================================ +18:23:13 FNo. Len. Field Value +18:23:13 ============================================================================ +18:23:13 [ 1] [ 4] [0800] +18:23:13 [ 2] [ 5] [02531] +18:23:13 [ 3] [ 6] [579188] +18:23:13 [ 7] [ 10] [0320112313] +18:23:13 [ 11] [ 6] [807479] +18:23:13 [ 15] [ 10] [0320112313] +18:23:13 [ 37] [ 11] [57918807479] +18:23:13 [ 70] [ 3] [001] +18:23:13 ============================================================================ +18:23:13 + + +waiting on router queue for slot.... +18:23:13 ============================================================================ +18:23:13 Slot Id : <490> +18:23:13 Transaction Type : RESPONSE +18:23:13 Received From : +18:23:13 ============================================================================ +18:23:13 FNo. Len. Field Value +18:23:13 ============================================================================ +18:23:13 [ 1] [ 4] [0810] +18:23:13 [ 7] [ 10] [0320112313] +18:23:13 [ 11] [ 6] [807479] +18:23:13 [ 15] [ 4] [0320] +18:23:13 [ 37] [ 12] [57918807479] +18:23:13 [ 39] [ 2] [00] +18:23:13 [ 70] [ 3] [001] +18:23:13 ============================================================================ +18:23:13 Sending to : +18:23:13 ============================================================================ +18:23:13 + + +waiting on router queue for slot.... +18:23:15 ============================================================================ +18:23:15 Slot Id : <463> +18:23:15 Transaction Type : RESPONSE +18:23:15 Received From : +18:23:15 ============================================================================ +18:23:15 FNo. Len. Field Value +18:23:15 ============================================================================ +18:23:15 [ 1] [ 4] [0210] +18:23:15 [ 2] [ 16] [1808930500012687] +18:23:15 [ 3] [ 6] [010000] +18:23:15 [ 4] [ 12] [000100000000] +18:23:15 [ 6] [ 12] [000100000000] +18:23:15 [ 7] [ 10] [0320182058] +18:23:15 [ 11] [ 6] [954628] +18:23:15 [ 12] [ 6] [182058] +18:23:15 [ 13] [ 4] [0320] +18:23:15 [ 18] [ 4] [6011] +18:23:15 [ 19] [ 3] [418] +18:23:15 [ 22] [ 3] [021] +18:23:15 [ 32] [ 6] [668899] +18:23:15 [ 35] [ 27] [1808930500012687=1803500028] +18:23:15 [ 37] [ 12] [507901489387] +18:23:15 [ 38] [ 6] [954628] +18:23:15 [ 39] [ 2] [00] +18:23:15 [ 41] [ 8] [03515001] +18:23:15 [ 49] [ 3] [418] +18:23:15 [ 52] [ 16] [15E6262FB2DD77B0] +18:23:15 [ 54] [ 20] [1001418C000107684700] +18:23:15 ============================================================================ +18:23:15 Sending to : +18:23:15 ============================================================================ +18:23:15 + + +waiting on router queue for slot.... +18:23:15 ============================================================================ +18:23:15 Slot Id : <448> +18:23:15 Transaction Type : REQUEST +18:23:15 Received From : +18:23:15 ============================================================================ +18:23:15 FNo. Len. Field Value +18:23:15 ============================================================================ +18:23:15 [ 1] [ 4] [0200] +18:23:15 [ 2] [ 16] [6213544001564316] +18:23:15 [ 3] [ 6] [301000] +18:23:15 [ 4] [ 12] [000000000000] +18:23:15 [ 7] [ 10] [0320182105] +18:23:15 [ 11] [ 6] [954632] +18:23:15 [ 12] [ 6] [182105] +18:23:15 [ 13] [ 4] [0320] +18:23:15 [ 15] [ 4] [0320] +18:23:15 [ 18] [ 4] [6011] +18:23:15 [ 19] [ 3] [418] +18:23:15 [ 22] [ 3] [021] +18:23:15 [ 25] [ 2] [01] +18:23:15 [ 28] [ 9] [D00000000] +18:23:15 [ 32] [ 6] [668899] +18:23:15 [ 35] [ 32] [6213544001564316=491212016431278] +18:23:15 [ 37] [ 12] [507902435722] +18:23:15 [ 41] [ 8] [03020031] +18:23:15 [ 42] [ 15] [APT ] +18:23:15 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +18:23:15 [ 49] [ 3] [418] +18:23:15 [ 52] [ 16] [DD555A3EC030575C] +18:23:15 ============================================================================ +18:23:15 + + +waiting on router queue for slot.... +18:23:15 Sending to : +18:23:15 ============================================================================ +18:23:15 Sending to : +18:23:15 ============================================================================ +18:23:15 ============================================================================ +18:23:15 Slot Id : <448> +18:23:15 Transaction Type : REQUEST +18:23:15 Received From : +18:23:15 ============================================================================ +18:23:15 FNo. Len. Field Value +18:23:15 ============================================================================ +18:23:15 [ 1] [ 4] [0200] +18:23:15 [ 2] [ 16] [6213544001564316] +18:23:15 [ 3] [ 6] [301000] +18:23:15 [ 4] [ 12] [000000000000] +18:23:15 [ 7] [ 10] [0320182105] +18:23:15 [ 11] [ 6] [954632] +18:23:15 [ 12] [ 6] [182105] +18:23:15 [ 13] [ 4] [0320] +18:23:15 [ 15] [ 4] [0320] +18:23:15 [ 18] [ 4] [6011] +18:23:15 [ 19] [ 3] [418] +18:23:15 [ 22] [ 3] [021] +18:23:15 [ 25] [ 2] [01] +18:23:15 [ 28] [ 9] [D00000000] +18:23:15 [ 32] [ 6] [668899] +18:23:15 [ 35] [ 32] [6213544001564316=491212016431278] +18:23:15 [ 37] [ 12] [507902435722] +18:23:15 [ 41] [ 8] [03020031] +18:23:15 [ 42] [ 15] [APT ] +18:23:15 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +18:23:15 [ 49] [ 3] [418] +18:23:15 [ 52] [ 16] [DD555A3EC030575C] +18:23:15 ============================================================================ +18:23:15 + + +waiting on router queue for slot.... +18:23:15 Sending to : +18:23:15 ============================================================================ +18:23:15 ============================================================================ +18:23:15 Slot Id : <448> +18:23:15 Transaction Type : REQUEST +18:23:15 Received From : +18:23:15 ============================================================================ +18:23:15 FNo. Len. Field Value +18:23:15 ============================================================================ +18:23:15 [ 1] [ 4] [0200] +18:23:15 [ 2] [ 16] [6213544001564316] +18:23:15 [ 3] [ 6] [301000] +18:23:15 [ 4] [ 12] [000000000000] +18:23:15 [ 7] [ 10] [0320182105] +18:23:15 [ 11] [ 6] [954632] +18:23:15 [ 12] [ 6] [182105] +18:23:15 [ 13] [ 4] [0320] +18:23:15 [ 15] [ 4] [0320] +18:23:15 [ 18] [ 4] [6011] +18:23:15 [ 19] [ 3] [418] +18:23:15 [ 22] [ 3] [021] +18:23:15 [ 25] [ 2] [01] +18:23:15 [ 28] [ 9] [D00000000] +18:23:15 [ 32] [ 6] [668899] +18:23:15 [ 35] [ 32] [6213544001564316=491212016431278] +18:23:15 [ 37] [ 12] [507902435722] +18:23:15 [ 41] [ 8] [03020031] +18:23:15 [ 42] [ 15] [APT ] +18:23:15 [ 43] [ 40] [ SAYSAMPHAN COMPANY SAMKET] +18:23:15 [ 49] [ 3] [418] +18:23:15 [ 52] [ 16] [2803AC539A47F710] +18:23:15 ============================================================================ +18:23:15 + + +waiting on router queue for slot.... +18:23:15 Sending to : <0> +18:23:15 ============================================================================ +18:23:16 ============================================================================ +18:23:16 Slot Id : <448> +18:23:16 Transaction Type : RESPONSE +18:23:16 Received From : +18:23:16 ============================================================================ +18:23:16 FNo. Len. Field Value +18:23:16 ============================================================================ +18:23:16 [ 1] [ 4] [0210] +18:23:16 [ 2] [ 16] [6213544001564316] +18:23:16 [ 3] [ 6] [301000] +18:23:16 [ 4] [ 12] [000000000000] +18:23:16 [ 7] [ 10] [0320182105] +18:23:16 [ 11] [ 6] [954632] +18:23:16 [ 12] [ 6] [182105] +18:23:16 [ 13] [ 4] [0320] +18:23:16 [ 15] [ 4] [0320] +18:23:16 [ 18] [ 4] [6011] +18:23:16 [ 19] [ 3] [418] +18:23:16 [ 32] [ 6] [668899] +18:23:16 [ 35] [ 32] [6213544001564316=491212016431278] +18:23:16 [ 37] [ 12] [507902435722] +18:23:16 [ 38] [ 6] [798697] +18:23:16 [ 39] [ 2] [00] +18:23:16 [ 41] [ 8] [03020031] +18:23:16 [ 49] [ 3] [418] +18:23:16 [ 54] [ 40] [1001418C0050076946371002418C005007694637] +18:23:16 ============================================================================ +18:23:16 Sending to : +18:23:16 ============================================================================ +18:23:16 + + +waiting on router queue for slot.... +18:23:16 ============================================================================ +18:23:16 Slot Id : <463> +18:23:16 Transaction Type : RESPONSE +18:23:16 Received From : +18:23:16 ============================================================================ +18:23:16 FNo. Len. Field Value +18:23:16 ============================================================================ +18:23:16 [ 1] [ 4] [0210] +18:23:16 [ 2] [ 16] [1808930500012687] +18:23:16 [ 3] [ 6] [010000] +18:23:16 [ 4] [ 12] [000100000000] +18:23:16 [ 6] [ 12] [000100000000] +18:23:16 [ 7] [ 10] [0320182058] +18:23:16 [ 11] [ 6] [954628] +18:23:16 [ 12] [ 6] [182058] +18:23:16 [ 13] [ 4] [0320] +18:23:16 [ 18] [ 4] [6011] +18:23:16 [ 19] [ 3] [418] +18:23:16 [ 22] [ 3] [021] +18:23:16 [ 32] [ 6] [668899] +18:23:16 [ 35] [ 27] [1808930500012687=1803500028] +18:23:16 [ 37] [ 12] [507901489387] +18:23:16 [ 38] [ 6] [954628] +18:23:16 [ 39] [ 2] [00] +18:23:16 [ 41] [ 8] [03515001] +18:23:16 [ 49] [ 3] [418] +18:23:16 [ 52] [ 16] [15E6262FB2DD77B0] +18:23:16 [ 54] [ 20] [1001418C000107684700] +18:23:16 ============================================================================ +18:23:16 Calculate Source COMM Id = 4 +18:23:16 ============================================================================ +18:23:16 + + +waiting on router queue for slot.... +18:23:18 ============================================================================ +18:23:18 Slot Id : <448> +18:23:18 Transaction Type : RESPONSE +18:23:18 Received From : +18:23:18 ============================================================================ +18:23:18 FNo. Len. Field Value +18:23:18 ============================================================================ +18:23:18 [ 1] [ 4] [0210] +18:23:18 [ 2] [ 16] [6213544001564316] +18:23:18 [ 3] [ 6] [301000] +18:23:18 [ 4] [ 12] [000000000000] +18:23:18 [ 7] [ 10] [0320182105] +18:23:18 [ 11] [ 6] [954632] +18:23:18 [ 12] [ 6] [182105] +18:23:18 [ 13] [ 4] [0320] +18:23:18 [ 15] [ 4] [0320] +18:23:18 [ 18] [ 4] [6011] +18:23:18 [ 19] [ 3] [418] +18:23:18 [ 32] [ 6] [668899] +18:23:18 [ 35] [ 32] [6213544001564316=491212016431278] +18:23:18 [ 37] [ 12] [507902435722] +18:23:18 [ 38] [ 6] [798697] +18:23:18 [ 39] [ 2] [00] +18:23:18 [ 41] [ 8] [03020031] +18:23:18 [ 49] [ 3] [418] +18:23:18 [ 54] [ 40] [1001418C0050076946371002418C005007694637] +18:23:18 ============================================================================ +18:23:18 Calculate Source COMM Id = 4 +18:23:18 ============================================================================ +18:23:18 + + +waiting on router queue for slot.... +18:23:21 ============================================================================ +18:23:21 Slot Id : <479> +18:23:21 Transaction Type : REQUEST +18:23:21 Received From : +18:23:21 ============================================================================ +18:23:21 FNo. Len. Field Value +18:23:21 ============================================================================ +18:23:21 [ 1] [ 4] [0800] +18:23:21 [ 7] [ 10] [0320112228] +18:23:21 [ 11] [ 6] [157688] +18:23:21 [ 70] [ 3] [301] +18:23:21 ============================================================================ +18:23:21 + + +waiting on router queue for slot.... +18:23:21 Sending to : +18:23:21 ============================================================================ +18:23:21 ============================================================================ +18:23:21 Slot Id : <479> +18:23:21 Transaction Type : RESPONSE +18:23:21 Received From : +18:23:21 ============================================================================ +18:23:21 FNo. Len. Field Value +18:23:21 ============================================================================ +18:23:21 [ 1] [ 4] [0810] +18:23:21 [ 7] [ 10] [0320112228] +18:23:21 [ 11] [ 6] [157688] +18:23:21 [ 39] [ 2] [00] +18:23:21 [ 70] [ 3] [301] +18:23:21 ============================================================================ +18:23:21 Calculate Source COMM Id = 2 +18:23:21 ============================================================================ +18:23:21 + + +waiting on router queue for slot.... +18:23:31 ============================================================================ +18:23:31 Slot Id : <0> +18:23:31 Transaction Type : REQUEST +18:23:31 Received From : +18:23:31 ============================================================================ +18:23:31 FNo. Len. Field Value +18:23:31 ============================================================================ +18:23:31 [ 1] [ 4] [0800] +18:23:31 [ 7] [ 10] [0320112238] +18:23:31 [ 11] [ 6] [157689] +18:23:31 [ 70] [ 3] [301] +18:23:31 ============================================================================ +18:23:31 + + +waiting on router queue for slot.... +18:23:31 Sending to : +18:23:31 ============================================================================ +18:23:31 ============================================================================ +18:23:31 Slot Id : <0> +18:23:31 Transaction Type : RESPONSE +18:23:31 Received From : +18:23:31 ============================================================================ +18:23:31 FNo. Len. Field Value +18:23:31 ============================================================================ +18:23:31 [ 1] [ 4] [0810] +18:23:31 [ 7] [ 10] [0320112238] +18:23:31 [ 11] [ 6] [157689] +18:23:31 [ 39] [ 2] [00] +18:23:31 [ 70] [ 3] [301] +18:23:31 ============================================================================ +18:23:31 Calculate Source COMM Id = 2 +18:23:31 ============================================================================ +18:23:31 + + +waiting on router queue for slot.... +18:23:38 ============================================================================ +18:23:38 Slot Id : <4> +18:23:38 Transaction Type : REQUEST +18:23:38 Received From : +18:23:38 ============================================================================ +18:23:38 FNo. Len. Field Value +18:23:38 ============================================================================ +18:23:38 [ 1] [ 4] [0200] +18:23:38 [ 2] [ 16] [6213544000822475] +18:23:38 [ 3] [ 6] [010000] +18:23:38 [ 4] [ 12] [000010000000] +18:23:38 [ 7] [ 10] [0320112244] +18:23:38 [ 11] [ 6] [271198] +18:23:38 [ 12] [ 6] [182244] +18:23:38 [ 13] [ 4] [0320] +18:23:38 [ 14] [ 4] [4912] +18:23:38 [ 15] [ 4] [0320] +18:23:38 [ 18] [ 4] [6011] +18:23:38 [ 19] [ 3] [418] +18:23:38 [ 22] [ 3] [021] +18:23:38 [ 25] [ 2] [01] +18:23:38 [ 28] [ 9] [D00002000] +18:23:38 [ 32] [ 6] [180893] +18:23:38 [ 35] [ 32] [6213544000822475=491212012247633] +18:23:38 [ 37] [ 12] [507911271198] +18:23:38 [ 41] [ 8] [0528LPBP] +18:23:38 [ 42] [ 15] [999999 ] +18:23:38 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +18:23:38 [ 49] [ 3] [418] +18:23:38 [ 52] [ 16] [5F769E9AF651CCC8] +18:23:38 ============================================================================ +18:23:38 + + +waiting on router queue for slot.... +18:23:38 Sending to : +18:23:38 ============================================================================ +18:23:38 Sending to : +18:23:38 ============================================================================ +18:23:38 ============================================================================ +18:23:38 Slot Id : <4> +18:23:38 Transaction Type : REQUEST +18:23:38 Received From : +18:23:38 ============================================================================ +18:23:38 FNo. Len. Field Value +18:23:38 ============================================================================ +18:23:38 [ 1] [ 4] [0200] +18:23:38 [ 2] [ 16] [6213544000822475] +18:23:38 [ 3] [ 6] [010000] +18:23:38 [ 4] [ 12] [000010000000] +18:23:38 [ 7] [ 10] [0320112244] +18:23:38 [ 11] [ 6] [271198] +18:23:38 [ 12] [ 6] [182244] +18:23:38 [ 13] [ 4] [0320] +18:23:38 [ 14] [ 4] [4912] +18:23:38 [ 15] [ 4] [0320] +18:23:38 [ 18] [ 4] [6011] +18:23:38 [ 19] [ 3] [418] +18:23:38 [ 22] [ 3] [021] +18:23:38 [ 25] [ 2] [01] +18:23:38 [ 28] [ 9] [D00002000] +18:23:38 [ 32] [ 6] [180893] +18:23:38 [ 35] [ 32] [6213544000822475=491212012247633] +18:23:38 [ 37] [ 12] [507911271198] +18:23:38 [ 41] [ 8] [0528LPBP] +18:23:38 [ 42] [ 15] [999999 ] +18:23:38 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +18:23:38 [ 49] [ 3] [418] +18:23:38 [ 52] [ 16] [5F769E9AF651CCC8] +18:23:38 ============================================================================ +18:23:38 + + +waiting on router queue for slot.... +18:23:38 Sending to : +18:23:38 ============================================================================ +18:23:38 ============================================================================ +18:23:38 Slot Id : <4> +18:23:38 Transaction Type : REQUEST +18:23:38 Received From : +18:23:38 ============================================================================ +18:23:38 FNo. Len. Field Value +18:23:38 ============================================================================ +18:23:38 [ 1] [ 4] [0200] +18:23:38 [ 2] [ 16] [6213544000822475] +18:23:38 [ 3] [ 6] [010000] +18:23:38 [ 4] [ 12] [000010000000] +18:23:38 [ 7] [ 10] [0320112244] +18:23:38 [ 11] [ 6] [271198] +18:23:38 [ 12] [ 6] [182244] +18:23:38 [ 13] [ 4] [0320] +18:23:38 [ 14] [ 4] [4912] +18:23:38 [ 15] [ 4] [0320] +18:23:38 [ 18] [ 4] [6011] +18:23:38 [ 19] [ 3] [418] +18:23:38 [ 22] [ 3] [021] +18:23:38 [ 25] [ 2] [01] +18:23:38 [ 28] [ 9] [D00002000] +18:23:38 [ 32] [ 6] [180893] +18:23:38 [ 35] [ 32] [6213544000822475=491212012247633] +18:23:38 [ 37] [ 12] [507911271198] +18:23:38 [ 41] [ 8] [0528LPBP] +18:23:38 [ 42] [ 15] [999999 ] +18:23:38 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +18:23:38 [ 49] [ 3] [418] +18:23:38 [ 52] [ 16] [7A25CE4CF6745E45] +18:23:38 ============================================================================ +18:23:38 + + +waiting on router queue for slot.... +18:23:38 Sending to : <0> +18:23:38 ============================================================================ +18:23:38 ============================================================================ +18:23:38 Slot Id : <4> +18:23:38 Transaction Type : RESPONSE +18:23:38 Received From : +18:23:38 ============================================================================ +18:23:38 FNo. Len. Field Value +18:23:38 ============================================================================ +18:23:38 [ 1] [ 4] [0210] +18:23:38 [ 2] [ 16] [6213544000822475] +18:23:38 [ 3] [ 6] [010000] +18:23:38 [ 4] [ 12] [000010000000] +18:23:38 [ 7] [ 10] [0320112244] +18:23:38 [ 11] [ 6] [271198] +18:23:38 [ 12] [ 6] [182244] +18:23:38 [ 13] [ 4] [0320] +18:23:38 [ 15] [ 4] [0320] +18:23:38 [ 18] [ 4] [6011] +18:23:38 [ 19] [ 3] [418] +18:23:38 [ 22] [ 3] [021] +18:23:38 [ 32] [ 6] [180893] +18:23:38 [ 35] [ 32] [6213544000822475=491212012247633] +18:23:38 [ 37] [ 12] [507911271198] +18:23:38 [ 39] [ 2] [05] +18:23:38 [ 41] [ 8] [0528LPBP] +18:23:38 [ 49] [ 3] [418] +18:23:38 ============================================================================ +18:23:38 Sending to : +18:23:38 ============================================================================ +18:23:38 + + +waiting on router queue for slot.... +18:23:39 ============================================================================ +18:23:39 Slot Id : <4> +18:23:39 Transaction Type : RESPONSE +18:23:39 Received From : +18:23:39 ============================================================================ +18:23:39 FNo. Len. Field Value +18:23:39 ============================================================================ +18:23:39 [ 1] [ 4] [0210] +18:23:39 [ 2] [ 16] [6213544000822475] +18:23:39 [ 3] [ 6] [010000] +18:23:39 [ 4] [ 12] [000010000000] +18:23:39 [ 7] [ 10] [0320112244] +18:23:39 [ 11] [ 6] [271198] +18:23:39 [ 12] [ 6] [182244] +18:23:39 [ 13] [ 4] [0320] +18:23:39 [ 15] [ 4] [0320] +18:23:39 [ 18] [ 4] [6011] +18:23:39 [ 19] [ 3] [418] +18:23:39 [ 22] [ 3] [021] +18:23:39 [ 32] [ 6] [180893] +18:23:39 [ 35] [ 32] [6213544000822475=491212012247633] +18:23:39 [ 37] [ 12] [507911271198] +18:23:39 [ 39] [ 2] [05] +18:23:39 [ 41] [ 8] [0528LPBP] +18:23:39 [ 49] [ 3] [418] +18:23:39 ============================================================================ +18:23:39 Calculate Source COMM Id = 2 +18:23:39 ============================================================================ +18:23:39 + + +waiting on router queue for slot.... +18:23:40 ============================================================================ +18:23:40 Slot Id : <493> +18:23:40 Transaction Type : REQUEST +18:23:40 Received From : +18:23:40 ============================================================================ +18:23:40 FNo. Len. Field Value +18:23:40 ============================================================================ +18:23:40 [ 1] [ 4] [0200] +18:23:40 [ 2] [ 16] [6213545000037501] +18:23:40 [ 3] [ 6] [010000] +18:23:40 [ 4] [ 12] [000010000000] +18:23:40 [ 7] [ 10] [0320112246] +18:23:40 [ 11] [ 6] [271199] +18:23:40 [ 12] [ 6] [182246] +18:23:40 [ 13] [ 4] [0320] +18:23:40 [ 14] [ 4] [4912] +18:23:40 [ 15] [ 4] [0320] +18:23:40 [ 18] [ 4] [6011] +18:23:40 [ 19] [ 3] [418] +18:23:40 [ 22] [ 3] [021] +18:23:40 [ 25] [ 2] [01] +18:23:40 [ 28] [ 9] [D00002000] +18:23:40 [ 32] [ 6] [180893] +18:23:40 [ 35] [ 32] [6213545000037501=491212013750087] +18:23:40 [ 37] [ 12] [507911271199] +18:23:40 [ 41] [ 8] [0243VTKS] +18:23:40 [ 42] [ 15] [999999 ] +18:23:40 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +18:23:40 [ 49] [ 3] [418] +18:23:40 [ 52] [ 16] [9362995FEE2DFA00] +18:23:40 ============================================================================ +18:23:40 + + +waiting on router queue for slot.... +18:23:40 Sending to : +18:23:40 ============================================================================ +18:23:40 Sending to : +18:23:40 ============================================================================ +18:23:40 ============================================================================ +18:23:40 Slot Id : <493> +18:23:40 Transaction Type : REQUEST +18:23:40 Received From : +18:23:40 ============================================================================ +18:23:40 FNo. Len. Field Value +18:23:40 ============================================================================ +18:23:40 [ 1] [ 4] [0200] +18:23:40 [ 2] [ 16] [6213545000037501] +18:23:40 [ 3] [ 6] [010000] +18:23:40 [ 4] [ 12] [000010000000] +18:23:40 [ 7] [ 10] [0320112246] +18:23:40 [ 11] [ 6] [271199] +18:23:40 [ 12] [ 6] [182246] +18:23:40 [ 13] [ 4] [0320] +18:23:40 [ 14] [ 4] [4912] +18:23:40 [ 15] [ 4] [0320] +18:23:40 [ 18] [ 4] [6011] +18:23:40 [ 19] [ 3] [418] +18:23:40 [ 22] [ 3] [021] +18:23:40 [ 25] [ 2] [01] +18:23:40 [ 28] [ 9] [D00002000] +18:23:40 [ 32] [ 6] [180893] +18:23:40 [ 35] [ 32] [6213545000037501=491212013750087] +18:23:40 [ 37] [ 12] [507911271199] +18:23:40 [ 41] [ 8] [0243VTKS] +18:23:40 [ 42] [ 15] [999999 ] +18:23:40 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +18:23:40 [ 49] [ 3] [418] +18:23:40 [ 52] [ 16] [9362995FEE2DFA00] +18:23:40 ============================================================================ +18:23:40 + + +waiting on router queue for slot.... +18:23:40 Sending to : +18:23:40 ============================================================================ +18:23:40 ============================================================================ +18:23:40 Slot Id : <493> +18:23:40 Transaction Type : REQUEST +18:23:40 Received From : +18:23:40 ============================================================================ +18:23:40 FNo. Len. Field Value +18:23:40 ============================================================================ +18:23:40 [ 1] [ 4] [0200] +18:23:40 [ 2] [ 16] [6213545000037501] +18:23:40 [ 3] [ 6] [010000] +18:23:40 [ 4] [ 12] [000010000000] +18:23:40 [ 7] [ 10] [0320112246] +18:23:40 [ 11] [ 6] [271199] +18:23:40 [ 12] [ 6] [182246] +18:23:40 [ 13] [ 4] [0320] +18:23:40 [ 14] [ 4] [4912] +18:23:40 [ 15] [ 4] [0320] +18:23:40 [ 18] [ 4] [6011] +18:23:40 [ 19] [ 3] [418] +18:23:40 [ 22] [ 3] [021] +18:23:40 [ 25] [ 2] [01] +18:23:40 [ 28] [ 9] [D00002000] +18:23:40 [ 32] [ 6] [180893] +18:23:40 [ 35] [ 32] [6213545000037501=491212013750087] +18:23:40 [ 37] [ 12] [507911271199] +18:23:40 [ 41] [ 8] [0243VTKS] +18:23:40 [ 42] [ 15] [999999 ] +18:23:40 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +18:23:40 [ 49] [ 3] [418] +18:23:40 [ 52] [ 16] [E4202410025C01A6] +18:23:40 ============================================================================ +18:23:40 + + +waiting on router queue for slot.... +18:23:40 Sending to : <0> +18:23:40 ============================================================================ +18:23:41 ============================================================================ +18:23:41 Slot Id : <493> +18:23:41 Transaction Type : RESPONSE +18:23:41 Received From : +18:23:41 ============================================================================ +18:23:41 FNo. Len. Field Value +18:23:41 ============================================================================ +18:23:41 [ 1] [ 4] [0210] +18:23:41 [ 2] [ 16] [6213545000037501] +18:23:41 [ 3] [ 6] [010000] +18:23:41 [ 4] [ 12] [000010000000] +18:23:41 [ 7] [ 10] [0320112246] +18:23:41 [ 11] [ 6] [271199] +18:23:41 [ 12] [ 6] [182246] +18:23:41 [ 13] [ 4] [0320] +18:23:41 [ 15] [ 4] [0320] +18:23:41 [ 18] [ 4] [6011] +18:23:41 [ 19] [ 3] [418] +18:23:41 [ 32] [ 6] [180893] +18:23:41 [ 35] [ 32] [6213545000037501=491212013750087] +18:23:41 [ 37] [ 12] [507911271199] +18:23:41 [ 38] [ 6] [517051] +18:23:41 [ 39] [ 2] [00] +18:23:41 [ 41] [ 8] [0243VTKS] +18:23:41 [ 49] [ 3] [418] +18:23:41 [ 54] [ 40] [0001418C0000198823060002418C000019882306] +18:23:41 ============================================================================ +18:23:41 Sending to : +18:23:41 ============================================================================ +18:23:41 + + +waiting on router queue for slot.... +18:23:42 ============================================================================ +18:23:42 Slot Id : <493> +18:23:42 Transaction Type : RESPONSE +18:23:42 Received From : +18:23:42 ============================================================================ +18:23:42 FNo. Len. Field Value +18:23:42 ============================================================================ +18:23:42 [ 1] [ 4] [0210] +18:23:42 [ 2] [ 16] [6213545000037501] +18:23:42 [ 3] [ 6] [010000] +18:23:42 [ 4] [ 12] [000010000000] +18:23:42 [ 7] [ 10] [0320112246] +18:23:42 [ 11] [ 6] [271199] +18:23:42 [ 12] [ 6] [182246] +18:23:42 [ 13] [ 4] [0320] +18:23:42 [ 15] [ 4] [0320] +18:23:42 [ 18] [ 4] [6011] +18:23:42 [ 19] [ 3] [418] +18:23:42 [ 32] [ 6] [180893] +18:23:42 [ 35] [ 32] [6213545000037501=491212013750087] +18:23:42 [ 37] [ 12] [507911271199] +18:23:42 [ 38] [ 6] [517051] +18:23:42 [ 39] [ 2] [00] +18:23:42 [ 41] [ 8] [0243VTKS] +18:23:42 [ 49] [ 3] [418] +18:23:42 [ 54] [ 40] [0001418C0000198823060002418C000019882306] +18:23:42 ============================================================================ +18:23:42 Calculate Source COMM Id = 2 +18:23:42 ============================================================================ +18:23:42 + + +waiting on router queue for slot.... +18:23:53 ============================================================================ +18:23:53 Slot Id : <2> +18:23:53 Transaction Type : REQUEST +18:23:53 Received From : +18:23:53 ============================================================================ +18:23:53 FNo. Len. Field Value +18:23:53 ============================================================================ +18:23:53 [ 1] [ 4] [0800] +18:23:53 [ 7] [ 10] [0321013542] +18:23:53 [ 11] [ 6] [183542] +18:23:53 [ 37] [ 12] [57918183542] +18:23:53 [ 70] [ 3] [301] +18:23:53 ============================================================================ +18:23:53 + + +waiting on router queue for slot.... +18:23:53 Sending to : +18:23:53 ============================================================================ +18:23:53 ============================================================================ +18:23:53 Slot Id : <2> +18:23:53 Transaction Type : RESPONSE +18:23:53 Received From : +18:23:53 ============================================================================ +18:23:53 FNo. Len. Field Value +18:23:53 ============================================================================ +18:23:53 [ 1] [ 4] [0810] +18:23:53 [ 7] [ 10] [0321013542] +18:23:53 [ 11] [ 6] [183542] +18:23:53 [ 37] [ 12] [579181835420] +18:23:53 [ 39] [ 2] [00] +18:23:53 [ 70] [ 3] [810] +18:23:53 ============================================================================ +18:23:53 Calculate Source COMM Id = 6 +18:23:53 ============================================================================ +18:23:53 + + +waiting on router queue for slot.... +18:23:56 ============================================================================ +18:23:56 Slot Id : <1> +18:23:56 Transaction Type : REQUEST +18:23:56 Received From : +18:23:56 ============================================================================ +18:23:56 FNo. Len. Field Value +18:23:56 ============================================================================ +18:23:56 [ 1] [ 4] [0200] +18:23:56 [ 2] [ 16] [6213545000964696] +18:23:56 [ 3] [ 6] [301000] +18:23:56 [ 4] [ 12] [000000000000] +18:23:56 [ 7] [ 10] [0320182417] +18:23:56 [ 11] [ 6] [210339] +18:23:56 [ 12] [ 6] [181859] +18:23:56 [ 13] [ 4] [0320] +18:23:56 [ 14] [ 4] [4912] +18:23:56 [ 15] [ 4] [0320] +18:23:56 [ 18] [ 4] [6011] +18:23:56 [ 19] [ 3] [418] +18:23:56 [ 22] [ 3] [021] +18:23:56 [ 25] [ 2] [01] +18:23:56 [ 28] [ 9] [D00000000] +18:23:56 [ 32] [ 6] [198901] +18:23:56 [ 35] [ 32] [6213545000964696=491212016469560] +18:23:56 [ 37] [ 12] [507918210339] +18:23:56 [ 41] [ 8] [01529015] +18:23:56 [ 42] [ 15] [000000041529015] +18:23:56 [ 43] [ 40] [JDB ATM SETTHA HOSPITA VN ] +18:23:56 [ 49] [ 3] [418] +18:23:56 [ 52] [ 16] [EF37C615B18F5099] +18:23:56 ============================================================================ +18:23:56 + + +waiting on router queue for slot.... +18:23:56 Sending to : +18:23:56 ============================================================================ +18:23:56 Sending to : +18:23:56 ============================================================================ +18:23:57 ============================================================================ +18:23:57 Slot Id : <1> +18:23:57 Transaction Type : REQUEST +18:23:57 Received From : +18:23:57 ============================================================================ +18:23:57 FNo. Len. Field Value +18:23:57 ============================================================================ +18:23:57 [ 1] [ 4] [0200] +18:23:57 [ 2] [ 16] [6213545000964696] +18:23:57 [ 3] [ 6] [301000] +18:23:57 [ 4] [ 12] [000000000000] +18:23:57 [ 7] [ 10] [0320182417] +18:23:57 [ 11] [ 6] [210339] +18:23:57 [ 12] [ 6] [181859] +18:23:57 [ 13] [ 4] [0320] +18:23:57 [ 14] [ 4] [4912] +18:23:57 [ 15] [ 4] [0320] +18:23:57 [ 18] [ 4] [6011] +18:23:57 [ 19] [ 3] [418] +18:23:57 [ 22] [ 3] [021] +18:23:57 [ 25] [ 2] [01] +18:23:57 [ 28] [ 9] [D00000000] +18:23:57 [ 32] [ 6] [198901] +18:23:57 [ 35] [ 32] [6213545000964696=491212016469560] +18:23:57 [ 37] [ 12] [507918210339] +18:23:57 [ 41] [ 8] [01529015] +18:23:57 [ 42] [ 15] [000000041529015] +18:23:57 [ 43] [ 40] [JDB ATM SETTHA HOSPITA VN ] +18:23:57 [ 49] [ 3] [418] +18:23:57 [ 52] [ 16] [EF37C615B18F5099] +18:23:57 ============================================================================ +18:23:57 + + +waiting on router queue for slot.... +18:23:57 Sending to : +18:23:57 ============================================================================ +18:23:57 ============================================================================ +18:23:57 Slot Id : <1> +18:23:57 Transaction Type : REQUEST +18:23:57 Received From : +18:23:57 ============================================================================ +18:23:57 FNo. Len. Field Value +18:23:57 ============================================================================ +18:23:57 [ 1] [ 4] [0200] +18:23:57 [ 2] [ 16] [6213545000964696] +18:23:57 [ 3] [ 6] [301000] +18:23:57 [ 4] [ 12] [000000000000] +18:23:57 [ 7] [ 10] [0320182417] +18:23:57 [ 11] [ 6] [210339] +18:23:57 [ 12] [ 6] [181859] +18:23:57 [ 13] [ 4] [0320] +18:23:57 [ 14] [ 4] [4912] +18:23:57 [ 15] [ 4] [0320] +18:23:57 [ 18] [ 4] [6011] +18:23:57 [ 19] [ 3] [418] +18:23:57 [ 22] [ 3] [021] +18:23:57 [ 25] [ 2] [01] +18:23:57 [ 28] [ 9] [D00000000] +18:23:57 [ 32] [ 6] [198901] +18:23:57 [ 35] [ 32] [6213545000964696=491212016469560] +18:23:57 [ 37] [ 12] [507918210339] +18:23:57 [ 41] [ 8] [01529015] +18:23:57 [ 42] [ 15] [000000041529015] +18:23:57 [ 43] [ 40] [JDB ATM SETTHA HOSPITA VN ] +18:23:57 [ 49] [ 3] [418] +18:23:57 [ 52] [ 16] [A0DC544C98D449A5] +18:23:57 ============================================================================ +18:23:57 + + +waiting on router queue for slot.... +18:23:57 Sending to : <0> +18:23:57 ============================================================================ +18:23:57 ============================================================================ +18:23:57 Slot Id : <1> +18:23:57 Transaction Type : RESPONSE +18:23:57 Received From : +18:23:57 ============================================================================ +18:23:57 FNo. Len. Field Value +18:23:57 ============================================================================ +18:23:57 [ 1] [ 4] [0210] +18:23:57 [ 2] [ 16] [6213545000964696] +18:23:57 [ 3] [ 6] [301000] +18:23:57 [ 4] [ 12] [000000000000] +18:23:57 [ 7] [ 10] [0320182417] +18:23:57 [ 11] [ 6] [210339] +18:23:57 [ 12] [ 6] [181859] +18:23:57 [ 13] [ 4] [0320] +18:23:57 [ 15] [ 4] [0320] +18:23:57 [ 18] [ 4] [6011] +18:23:57 [ 19] [ 3] [418] +18:23:57 [ 32] [ 6] [198901] +18:23:57 [ 35] [ 32] [6213545000964696=491212016469560] +18:23:57 [ 37] [ 12] [507918210339] +18:23:57 [ 38] [ 6] [044810] +18:23:57 [ 39] [ 2] [00] +18:23:57 [ 41] [ 8] [01529015] +18:23:57 [ 49] [ 3] [418] +18:23:57 [ 54] [ 40] [1001418C0000363082581002418C000036308258] +18:23:57 ============================================================================ +18:23:57 Sending to : +18:23:57 ============================================================================ +18:23:57 + + +waiting on router queue for slot.... +18:23:57 ============================================================================ +18:23:57 Slot Id : <498> +18:23:57 Transaction Type : REQUEST +18:23:57 Received From : +18:23:57 ============================================================================ +18:23:57 FNo. Len. Field Value +18:23:57 ============================================================================ +18:23:57 [ 1] [ 4] [0800] +18:23:57 [ 7] [ 10] [0320112304] +18:23:57 [ 11] [ 6] [157690] +18:23:57 [ 70] [ 3] [301] +18:23:57 ============================================================================ +18:23:57 + + +waiting on router queue for slot.... +18:23:57 Sending to : +18:23:57 ============================================================================ +18:23:57 ============================================================================ +18:23:57 Slot Id : <498> +18:23:57 Transaction Type : RESPONSE +18:23:57 Received From : +18:23:57 ============================================================================ +18:23:57 FNo. Len. Field Value +18:23:57 ============================================================================ +18:23:57 [ 1] [ 4] [0810] +18:23:57 [ 7] [ 10] [0320112304] +18:23:57 [ 11] [ 6] [157690] +18:23:57 [ 39] [ 2] [00] +18:23:57 [ 70] [ 3] [301] +18:23:57 ============================================================================ +18:23:57 Calculate Source COMM Id = 2 +18:23:57 ============================================================================ +18:23:57 + + +waiting on router queue for slot.... +18:23:59 ============================================================================ +18:23:59 Slot Id : <1> +18:23:59 Transaction Type : RESPONSE +18:23:59 Received From : +18:23:59 ============================================================================ +18:23:59 FNo. Len. Field Value +18:23:59 ============================================================================ +18:23:59 [ 1] [ 4] [0210] +18:23:59 [ 2] [ 16] [6213545000964696] +18:23:59 [ 3] [ 6] [301000] +18:23:59 [ 4] [ 12] [000000000000] +18:23:59 [ 7] [ 10] [0320182417] +18:23:59 [ 11] [ 6] [210339] +18:23:59 [ 12] [ 6] [181859] +18:23:59 [ 13] [ 4] [0320] +18:23:59 [ 15] [ 4] [0320] +18:23:59 [ 18] [ 4] [6011] +18:23:59 [ 19] [ 3] [418] +18:23:59 [ 32] [ 6] [198901] +18:23:59 [ 35] [ 32] [6213545000964696=491212016469560] +18:23:59 [ 37] [ 12] [507918210339] +18:23:59 [ 38] [ 6] [044810] +18:23:59 [ 39] [ 2] [00] +18:23:59 [ 41] [ 8] [01529015] +18:23:59 [ 49] [ 3] [418] +18:23:59 [ 54] [ 40] [1001418C0000363082581002418C000036308258] +18:23:59 ============================================================================ +18:23:59 Calculate Source COMM Id = 5 +18:23:59 ============================================================================ +18:23:59 + + +waiting on router queue for slot.... +18:23:59 ============================================================================ +18:23:59 Slot Id : <473> +18:23:59 Transaction Type : REQUEST +18:23:59 Received From : +18:23:59 ============================================================================ +18:23:59 FNo. Len. Field Value +18:23:59 ============================================================================ +18:23:59 [ 1] [ 4] [0200] +18:23:59 [ 2] [ 16] [6213541000172794] +18:23:59 [ 3] [ 6] [010000] +18:23:59 [ 4] [ 12] [000100000000] +18:23:59 [ 7] [ 10] [0320182149] +18:23:59 [ 11] [ 6] [954654] +18:23:59 [ 12] [ 6] [182149] +18:23:59 [ 13] [ 4] [0320] +18:23:59 [ 15] [ 4] [0320] +18:23:59 [ 18] [ 4] [6011] +18:23:59 [ 19] [ 3] [418] +18:23:59 [ 22] [ 3] [021] +18:23:59 [ 25] [ 2] [01] +18:23:59 [ 28] [ 9] [D00002000] +18:23:59 [ 32] [ 6] [668899] +18:23:59 [ 35] [ 32] [6213541000172794=491212017279809] +18:23:59 [ 37] [ 12] [507900146874] +18:23:59 [ 41] [ 8] [03020005] +18:23:59 [ 42] [ 15] [APT ] +18:23:59 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:23:59 [ 49] [ 3] [418] +18:23:59 [ 52] [ 16] [C5C46C6AF0D7D4AD] +18:23:59 ============================================================================ +18:23:59 + + +waiting on router queue for slot.... +18:23:59 Sending to : +18:23:59 ============================================================================ +18:23:59 Sending to : +18:23:59 ============================================================================ +18:23:59 ============================================================================ +18:23:59 Slot Id : <473> +18:23:59 Transaction Type : REQUEST +18:23:59 Received From : +18:23:59 ============================================================================ +18:23:59 FNo. Len. Field Value +18:23:59 ============================================================================ +18:23:59 [ 1] [ 4] [0200] +18:23:59 [ 2] [ 16] [6213541000172794] +18:23:59 [ 3] [ 6] [010000] +18:23:59 [ 4] [ 12] [000100000000] +18:23:59 [ 7] [ 10] [0320182149] +18:23:59 [ 11] [ 6] [954654] +18:23:59 [ 12] [ 6] [182149] +18:23:59 [ 13] [ 4] [0320] +18:23:59 [ 15] [ 4] [0320] +18:23:59 [ 18] [ 4] [6011] +18:23:59 [ 19] [ 3] [418] +18:23:59 [ 22] [ 3] [021] +18:23:59 [ 25] [ 2] [01] +18:23:59 [ 28] [ 9] [D00002000] +18:23:59 [ 32] [ 6] [668899] +18:23:59 [ 35] [ 32] [6213541000172794=491212017279809] +18:23:59 [ 37] [ 12] [507900146874] +18:23:59 [ 41] [ 8] [03020005] +18:23:59 [ 42] [ 15] [APT ] +18:23:59 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:23:59 [ 49] [ 3] [418] +18:23:59 [ 52] [ 16] [C5C46C6AF0D7D4AD] +18:23:59 ============================================================================ +18:23:59 + + +waiting on router queue for slot.... +18:23:59 Sending to : +18:23:59 ============================================================================ +18:23:59 ============================================================================ +18:23:59 Slot Id : <473> +18:23:59 Transaction Type : REQUEST +18:23:59 Received From : +18:23:59 ============================================================================ +18:23:59 FNo. Len. Field Value +18:23:59 ============================================================================ +18:23:59 [ 1] [ 4] [0200] +18:23:59 [ 2] [ 16] [6213541000172794] +18:23:59 [ 3] [ 6] [010000] +18:23:59 [ 4] [ 12] [000100000000] +18:23:59 [ 7] [ 10] [0320182149] +18:23:59 [ 11] [ 6] [954654] +18:23:59 [ 12] [ 6] [182149] +18:23:59 [ 13] [ 4] [0320] +18:23:59 [ 15] [ 4] [0320] +18:23:59 [ 18] [ 4] [6011] +18:23:59 [ 19] [ 3] [418] +18:23:59 [ 22] [ 3] [021] +18:23:59 [ 25] [ 2] [01] +18:23:59 [ 28] [ 9] [D00002000] +18:23:59 [ 32] [ 6] [668899] +18:23:59 [ 35] [ 32] [6213541000172794=491212017279809] +18:23:59 [ 37] [ 12] [507900146874] +18:23:59 [ 41] [ 8] [03020005] +18:23:59 [ 42] [ 15] [APT ] +18:23:59 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:23:59 [ 49] [ 3] [418] +18:23:59 [ 52] [ 16] [3B310970343B8EF8] +18:23:59 ============================================================================ +18:23:59 + + +waiting on router queue for slot.... +18:23:59 Sending to : <0> +18:23:59 ============================================================================ +18:24:00 ============================================================================ +18:24:00 Slot Id : <473> +18:24:00 Transaction Type : RESPONSE +18:24:00 Received From : +18:24:00 ============================================================================ +18:24:00 FNo. Len. Field Value +18:24:00 ============================================================================ +18:24:00 [ 1] [ 4] [0210] +18:24:00 [ 2] [ 16] [6213541000172794] +18:24:00 [ 3] [ 6] [010000] +18:24:00 [ 4] [ 12] [000100000000] +18:24:00 [ 7] [ 10] [0320182149] +18:24:00 [ 11] [ 6] [954654] +18:24:00 [ 12] [ 6] [182149] +18:24:00 [ 13] [ 4] [0320] +18:24:00 [ 15] [ 4] [0320] +18:24:00 [ 18] [ 4] [6011] +18:24:00 [ 19] [ 3] [418] +18:24:00 [ 32] [ 6] [668899] +18:24:00 [ 35] [ 32] [6213541000172794=491212017279809] +18:24:00 [ 37] [ 12] [507900146874] +18:24:00 [ 38] [ 6] [815801] +18:24:00 [ 39] [ 2] [00] +18:24:00 [ 41] [ 8] [03020005] +18:24:00 [ 49] [ 3] [418] +18:24:00 [ 54] [ 40] [0001418C0022996431030002418C002299643103] +18:24:00 ============================================================================ +18:24:00 Sending to : +18:24:00 ============================================================================ +18:24:00 + + +waiting on router queue for slot.... +18:24:01 ============================================================================ +18:24:01 Slot Id : <473> +18:24:01 Transaction Type : RESPONSE +18:24:01 Received From : +18:24:01 ============================================================================ +18:24:01 FNo. Len. Field Value +18:24:01 ============================================================================ +18:24:01 [ 1] [ 4] [0210] +18:24:01 [ 2] [ 16] [6213541000172794] +18:24:01 [ 3] [ 6] [010000] +18:24:01 [ 4] [ 12] [000100000000] +18:24:01 [ 7] [ 10] [0320182149] +18:24:01 [ 11] [ 6] [954654] +18:24:01 [ 12] [ 6] [182149] +18:24:01 [ 13] [ 4] [0320] +18:24:01 [ 15] [ 4] [0320] +18:24:01 [ 18] [ 4] [6011] +18:24:01 [ 19] [ 3] [418] +18:24:01 [ 32] [ 6] [668899] +18:24:01 [ 35] [ 32] [6213541000172794=491212017279809] +18:24:01 [ 37] [ 12] [507900146874] +18:24:01 [ 38] [ 6] [815801] +18:24:01 [ 39] [ 2] [00] +18:24:01 [ 41] [ 8] [03020005] +18:24:01 [ 49] [ 3] [418] +18:24:01 [ 54] [ 40] [0001418C0022996431030002418C002299643103] +18:24:01 ============================================================================ +18:24:01 Calculate Source COMM Id = 4 +18:24:01 ============================================================================ +18:24:01 + + +waiting on router queue for slot.... +18:24:08 ============================================================================ +18:24:08 Slot Id : <476> +18:24:08 Transaction Type : REQUEST +18:24:08 Received From : +18:24:08 ============================================================================ +18:24:08 FNo. Len. Field Value +18:24:08 ============================================================================ +18:24:08 [ 1] [ 4] [0800] +18:24:08 [ 7] [ 10] [0320112315] +18:24:08 [ 11] [ 6] [157691] +18:24:08 [ 70] [ 3] [301] +18:24:08 ============================================================================ +18:24:08 + + +waiting on router queue for slot.... +18:24:08 Sending to : +18:24:08 ============================================================================ +18:24:08 ============================================================================ +18:24:08 Slot Id : <476> +18:24:08 Transaction Type : RESPONSE +18:24:08 Received From : +18:24:08 ============================================================================ +18:24:08 FNo. Len. Field Value +18:24:08 ============================================================================ +18:24:08 [ 1] [ 4] [0810] +18:24:08 [ 7] [ 10] [0320112315] +18:24:08 [ 11] [ 6] [157691] +18:24:08 [ 39] [ 2] [00] +18:24:08 [ 70] [ 3] [301] +18:24:08 ============================================================================ +18:24:08 Calculate Source COMM Id = 2 +18:24:08 ============================================================================ +18:24:08 + + +waiting on router queue for slot.... +18:24:15 ============================================================================ +18:24:15 Slot Id : <489> +18:24:15 Transaction Type : REQUEST +18:24:15 Received From : +18:24:15 ============================================================================ +18:24:15 FNo. Len. Field Value +18:24:15 ============================================================================ +18:24:15 [ 1] [ 4] [0800] +18:24:15 [ 2] [ 5] [02531] +18:24:15 [ 3] [ 6] [579188] +18:24:15 [ 7] [ 10] [0320112415] +18:24:15 [ 11] [ 6] [807480] +18:24:15 [ 15] [ 10] [0320112415] +18:24:15 [ 37] [ 11] [57918807480] +18:24:15 [ 70] [ 3] [001] +18:24:15 ============================================================================ +18:24:15 + + +waiting on router queue for slot.... +18:24:15 ============================================================================ +18:24:15 Slot Id : <489> +18:24:15 Transaction Type : RESPONSE +18:24:15 Received From : +18:24:15 ============================================================================ +18:24:15 FNo. Len. Field Value +18:24:15 ============================================================================ +18:24:15 [ 1] [ 4] [0810] +18:24:15 [ 7] [ 10] [0320112415] +18:24:15 [ 11] [ 6] [807480] +18:24:15 [ 15] [ 4] [0320] +18:24:15 [ 37] [ 12] [57918807480] +18:24:15 [ 39] [ 2] [00] +18:24:15 [ 70] [ 3] [001] +18:24:15 ============================================================================ +18:24:15 Sending to : +18:24:15 ============================================================================ +18:24:15 + + +waiting on router queue for slot.... +18:24:19 ============================================================================ +18:24:19 Slot Id : <477> +18:24:19 Transaction Type : REQUEST +18:24:19 Received From : +18:24:19 ============================================================================ +18:24:19 FNo. Len. Field Value +18:24:19 ============================================================================ +18:24:19 [ 1] [ 4] [0800] +18:24:19 [ 7] [ 10] [0320112325] +18:24:19 [ 11] [ 6] [157692] +18:24:19 [ 70] [ 3] [301] +18:24:19 ============================================================================ +18:24:19 + + +waiting on router queue for slot.... +18:24:19 Sending to : +18:24:19 ============================================================================ +18:24:19 ============================================================================ +18:24:19 Slot Id : <477> +18:24:19 Transaction Type : RESPONSE +18:24:19 Received From : +18:24:19 ============================================================================ +18:24:19 FNo. Len. Field Value +18:24:19 ============================================================================ +18:24:19 [ 1] [ 4] [0810] +18:24:19 [ 7] [ 10] [0320112325] +18:24:19 [ 11] [ 6] [157692] +18:24:19 [ 39] [ 2] [00] +18:24:19 [ 70] [ 3] [301] +18:24:19 ============================================================================ +18:24:19 Calculate Source COMM Id = 2 +18:24:19 ============================================================================ +18:24:19 + + +waiting on router queue for slot.... +18:24:23 ============================================================================ +18:24:23 Slot Id : <485> +18:24:23 Transaction Type : REQUEST +18:24:23 Received From : +18:24:23 ============================================================================ +18:24:23 FNo. Len. Field Value +18:24:23 ============================================================================ +18:24:23 [ 1] [ 4] [0200] +18:24:23 [ 2] [ 16] [6213545000964696] +18:24:23 [ 3] [ 6] [011000] +18:24:23 [ 4] [ 12] [000020000000] +18:24:23 [ 7] [ 10] [0320182443] +18:24:23 [ 11] [ 6] [210345] +18:24:23 [ 12] [ 6] [181926] +18:24:23 [ 13] [ 4] [0320] +18:24:23 [ 14] [ 4] [4912] +18:24:23 [ 15] [ 4] [0320] +18:24:23 [ 18] [ 4] [6011] +18:24:23 [ 19] [ 3] [418] +18:24:23 [ 22] [ 3] [021] +18:24:23 [ 25] [ 2] [01] +18:24:23 [ 28] [ 9] [D00002000] +18:24:23 [ 32] [ 6] [198901] +18:24:23 [ 35] [ 32] [6213545000964696=491212016469560] +18:24:23 [ 37] [ 12] [507918210345] +18:24:23 [ 41] [ 8] [01529015] +18:24:23 [ 42] [ 15] [000000041529015] +18:24:23 [ 43] [ 40] [JDB ATM SETTHA HOSPITA VN ] +18:24:23 [ 49] [ 3] [418] +18:24:23 [ 52] [ 16] [EF37C615B18F5099] +18:24:23 ============================================================================ +18:24:23 + + +waiting on router queue for slot.... +18:24:23 Sending to : +18:24:23 ============================================================================ +18:24:23 Sending to : +18:24:23 ============================================================================ +18:24:23 ============================================================================ +18:24:23 Slot Id : <485> +18:24:23 Transaction Type : REQUEST +18:24:23 Received From : +18:24:23 ============================================================================ +18:24:23 FNo. Len. Field Value +18:24:23 ============================================================================ +18:24:23 [ 1] [ 4] [0200] +18:24:23 [ 2] [ 16] [6213545000964696] +18:24:23 [ 3] [ 6] [011000] +18:24:23 [ 4] [ 12] [000020000000] +18:24:23 [ 7] [ 10] [0320182443] +18:24:23 [ 11] [ 6] [210345] +18:24:23 [ 12] [ 6] [181926] +18:24:23 [ 13] [ 4] [0320] +18:24:23 [ 14] [ 4] [4912] +18:24:23 [ 15] [ 4] [0320] +18:24:23 [ 18] [ 4] [6011] +18:24:23 [ 19] [ 3] [418] +18:24:23 [ 22] [ 3] [021] +18:24:23 [ 25] [ 2] [01] +18:24:23 [ 28] [ 9] [D00002000] +18:24:23 [ 32] [ 6] [198901] +18:24:23 [ 35] [ 32] [6213545000964696=491212016469560] +18:24:23 [ 37] [ 12] [507918210345] +18:24:23 [ 41] [ 8] [01529015] +18:24:23 [ 42] [ 15] [000000041529015] +18:24:23 [ 43] [ 40] [JDB ATM SETTHA HOSPITA VN ] +18:24:23 [ 49] [ 3] [418] +18:24:23 [ 52] [ 16] [EF37C615B18F5099] +18:24:23 ============================================================================ +18:24:23 + + +waiting on router queue for slot.... +18:24:23 Sending to : +18:24:23 ============================================================================ +18:24:23 ============================================================================ +18:24:23 Slot Id : <485> +18:24:23 Transaction Type : REQUEST +18:24:23 Received From : +18:24:23 ============================================================================ +18:24:23 FNo. Len. Field Value +18:24:23 ============================================================================ +18:24:23 [ 1] [ 4] [0200] +18:24:23 [ 2] [ 16] [6213545000964696] +18:24:23 [ 3] [ 6] [011000] +18:24:23 [ 4] [ 12] [000020000000] +18:24:23 [ 7] [ 10] [0320182443] +18:24:23 [ 11] [ 6] [210345] +18:24:23 [ 12] [ 6] [181926] +18:24:23 [ 13] [ 4] [0320] +18:24:23 [ 14] [ 4] [4912] +18:24:23 [ 15] [ 4] [0320] +18:24:23 [ 18] [ 4] [6011] +18:24:23 [ 19] [ 3] [418] +18:24:23 [ 22] [ 3] [021] +18:24:23 [ 25] [ 2] [01] +18:24:23 [ 28] [ 9] [D00002000] +18:24:23 [ 32] [ 6] [198901] +18:24:23 [ 35] [ 32] [6213545000964696=491212016469560] +18:24:23 [ 37] [ 12] [507918210345] +18:24:23 [ 41] [ 8] [01529015] +18:24:23 [ 42] [ 15] [000000041529015] +18:24:23 [ 43] [ 40] [JDB ATM SETTHA HOSPITA VN ] +18:24:23 [ 49] [ 3] [418] +18:24:23 [ 52] [ 16] [A0DC544C98D449A5] +18:24:23 ============================================================================ +18:24:23 + + +waiting on router queue for slot.... +18:24:23 Sending to : <0> +18:24:23 ============================================================================ +18:24:24 ============================================================================ +18:24:24 Slot Id : <485> +18:24:24 Transaction Type : RESPONSE +18:24:24 Received From : +18:24:24 ============================================================================ +18:24:24 FNo. Len. Field Value +18:24:24 ============================================================================ +18:24:24 [ 1] [ 4] [0210] +18:24:24 [ 2] [ 16] [6213545000964696] +18:24:24 [ 3] [ 6] [011000] +18:24:24 [ 4] [ 12] [000020000000] +18:24:24 [ 7] [ 10] [0320182443] +18:24:24 [ 11] [ 6] [210345] +18:24:24 [ 12] [ 6] [181926] +18:24:24 [ 13] [ 4] [0320] +18:24:24 [ 15] [ 4] [0320] +18:24:24 [ 18] [ 4] [6011] +18:24:24 [ 19] [ 3] [418] +18:24:24 [ 32] [ 6] [198901] +18:24:24 [ 35] [ 32] [6213545000964696=491212016469560] +18:24:24 [ 37] [ 12] [507918210345] +18:24:24 [ 38] [ 6] [759719] +18:24:24 [ 39] [ 2] [00] +18:24:24 [ 41] [ 8] [01529015] +18:24:24 [ 49] [ 3] [418] +18:24:24 [ 54] [ 40] [1001418C0000161082581002418C000016108258] +18:24:24 ============================================================================ +18:24:24 Sending to : +18:24:24 ============================================================================ +18:24:24 + + +waiting on router queue for slot.... +18:24:26 ============================================================================ +18:24:26 Slot Id : <485> +18:24:26 Transaction Type : RESPONSE +18:24:26 Received From : +18:24:26 ============================================================================ +18:24:26 FNo. Len. Field Value +18:24:26 ============================================================================ +18:24:26 [ 1] [ 4] [0210] +18:24:26 [ 2] [ 16] [6213545000964696] +18:24:26 [ 3] [ 6] [011000] +18:24:26 [ 4] [ 12] [000020000000] +18:24:26 [ 7] [ 10] [0320182443] +18:24:26 [ 11] [ 6] [210345] +18:24:26 [ 12] [ 6] [181926] +18:24:26 [ 13] [ 4] [0320] +18:24:26 [ 15] [ 4] [0320] +18:24:26 [ 18] [ 4] [6011] +18:24:26 [ 19] [ 3] [418] +18:24:26 [ 32] [ 6] [198901] +18:24:26 [ 35] [ 32] [6213545000964696=491212016469560] +18:24:26 [ 37] [ 12] [507918210345] +18:24:26 [ 38] [ 6] [759719] +18:24:26 [ 39] [ 2] [00] +18:24:26 [ 41] [ 8] [01529015] +18:24:26 [ 49] [ 3] [418] +18:24:26 [ 54] [ 40] [1001418C0000161082581002418C000016108258] +18:24:26 ============================================================================ +18:24:26 Calculate Source COMM Id = 5 +18:24:26 ============================================================================ +18:24:26 + + +waiting on router queue for slot.... +18:24:27 ============================================================================ +18:24:27 Slot Id : <14> +18:24:27 Transaction Type : REQUEST +18:24:27 Received From : +18:24:27 ============================================================================ +18:24:27 FNo. Len. Field Value +18:24:27 ============================================================================ +18:24:27 [ 1] [ 4] [0200] +18:24:27 [ 2] [ 16] [1808930500012687] +18:24:27 [ 3] [ 6] [010000] +18:24:27 [ 4] [ 12] [000100000000] +18:24:27 [ 7] [ 10] [0320182217] +18:24:27 [ 11] [ 6] [954661] +18:24:27 [ 12] [ 6] [182217] +18:24:27 [ 13] [ 4] [0320] +18:24:27 [ 15] [ 4] [0320] +18:24:27 [ 18] [ 4] [6011] +18:24:27 [ 19] [ 3] [418] +18:24:27 [ 22] [ 3] [021] +18:24:27 [ 25] [ 2] [01] +18:24:27 [ 28] [ 9] [D00002000] +18:24:27 [ 32] [ 6] [668899] +18:24:27 [ 35] [ 27] [1808930500012687=1803500028] +18:24:27 [ 37] [ 12] [507901489389] +18:24:27 [ 41] [ 8] [03515001] +18:24:27 [ 42] [ 15] [APT ] +18:24:27 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:24:27 [ 49] [ 3] [418] +18:24:27 [ 52] [ 16] [F14AC5155561B4B1] +18:24:27 ============================================================================ +18:24:27 + + +waiting on router queue for slot.... +18:24:27 Sending to : +18:24:27 ============================================================================ +18:24:27 Sending to : +18:24:27 ============================================================================ +18:24:28 ============================================================================ +18:24:28 Slot Id : <14> +18:24:28 Transaction Type : REQUEST +18:24:28 Received From : +18:24:28 ============================================================================ +18:24:28 FNo. Len. Field Value +18:24:28 ============================================================================ +18:24:28 [ 1] [ 4] [0200] +18:24:28 [ 2] [ 16] [1808930500012687] +18:24:28 [ 3] [ 6] [010000] +18:24:28 [ 4] [ 12] [000100000000] +18:24:28 [ 7] [ 10] [0320182217] +18:24:28 [ 11] [ 6] [954661] +18:24:28 [ 12] [ 6] [182217] +18:24:28 [ 13] [ 4] [0320] +18:24:28 [ 15] [ 4] [0320] +18:24:28 [ 18] [ 4] [6011] +18:24:28 [ 19] [ 3] [418] +18:24:28 [ 22] [ 3] [021] +18:24:28 [ 25] [ 2] [01] +18:24:28 [ 28] [ 9] [D00002000] +18:24:28 [ 32] [ 6] [668899] +18:24:28 [ 35] [ 27] [1808930500012687=1803500028] +18:24:28 [ 37] [ 12] [507901489389] +18:24:28 [ 41] [ 8] [03515001] +18:24:28 [ 42] [ 15] [APT ] +18:24:28 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:24:28 [ 49] [ 3] [418] +18:24:28 [ 52] [ 16] [F14AC5155561B4B1] +18:24:28 ============================================================================ +18:24:28 + + +waiting on router queue for slot.... +18:24:28 Sending to : +18:24:28 ============================================================================ +18:24:28 ============================================================================ +18:24:28 Slot Id : <14> +18:24:28 Transaction Type : REQUEST +18:24:28 Received From : +18:24:28 ============================================================================ +18:24:28 FNo. Len. Field Value +18:24:28 ============================================================================ +18:24:28 [ 1] [ 4] [0200] +18:24:28 [ 2] [ 16] [1808930500012687] +18:24:28 [ 3] [ 6] [010000] +18:24:28 [ 4] [ 12] [000100000000] +18:24:28 [ 7] [ 10] [0320182217] +18:24:28 [ 11] [ 6] [954661] +18:24:28 [ 12] [ 6] [182217] +18:24:28 [ 13] [ 4] [0320] +18:24:28 [ 15] [ 4] [0320] +18:24:28 [ 18] [ 4] [6011] +18:24:28 [ 19] [ 3] [418] +18:24:28 [ 22] [ 3] [021] +18:24:28 [ 25] [ 2] [01] +18:24:28 [ 28] [ 9] [D00002000] +18:24:28 [ 32] [ 6] [668899] +18:24:28 [ 35] [ 27] [1808930500012687=1803500028] +18:24:28 [ 37] [ 12] [507901489389] +18:24:28 [ 41] [ 8] [03515001] +18:24:28 [ 42] [ 15] [APT ] +18:24:28 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:24:28 [ 49] [ 3] [418] +18:24:28 [ 52] [ 16] [15E6262FB2DD77B0] +18:24:28 ============================================================================ +18:24:28 + + +waiting on router queue for slot.... +18:24:28 Sending to : <2> +18:24:28 ============================================================================ +18:24:35 ============================================================================ +18:24:35 Slot Id : <14> +18:24:35 Transaction Type : RESPONSE +18:24:35 Received From : +18:24:35 ============================================================================ +18:24:35 FNo. Len. Field Value +18:24:35 ============================================================================ +18:24:35 [ 1] [ 4] [0210] +18:24:35 [ 2] [ 16] [1808930500012687] +18:24:35 [ 3] [ 6] [010000] +18:24:35 [ 4] [ 12] [000100000000] +18:24:35 [ 6] [ 12] [000100000000] +18:24:35 [ 7] [ 10] [0320182217] +18:24:35 [ 11] [ 6] [954661] +18:24:35 [ 12] [ 6] [182217] +18:24:35 [ 13] [ 4] [0320] +18:24:35 [ 18] [ 4] [6011] +18:24:35 [ 19] [ 3] [418] +18:24:35 [ 22] [ 3] [021] +18:24:35 [ 32] [ 6] [668899] +18:24:35 [ 35] [ 27] [1808930500012687=1803500028] +18:24:35 [ 37] [ 12] [507901489389] +18:24:35 [ 38] [ 6] [954661] +18:24:35 [ 39] [ 2] [00] +18:24:35 [ 41] [ 8] [03515001] +18:24:35 [ 49] [ 3] [418] +18:24:35 [ 52] [ 16] [15E6262FB2DD77B0] +18:24:35 [ 54] [ 20] [1001418C000007484700] +18:24:35 ============================================================================ +18:24:35 Sending to : +18:24:35 ============================================================================ +18:24:35 + + +waiting on router queue for slot.... +18:24:36 ============================================================================ +18:24:36 Slot Id : <14> +18:24:36 Transaction Type : RESPONSE +18:24:36 Received From : +18:24:36 ============================================================================ +18:24:36 FNo. Len. Field Value +18:24:36 ============================================================================ +18:24:36 [ 1] [ 4] [0210] +18:24:36 [ 2] [ 16] [1808930500012687] +18:24:36 [ 3] [ 6] [010000] +18:24:36 [ 4] [ 12] [000100000000] +18:24:36 [ 6] [ 12] [000100000000] +18:24:36 [ 7] [ 10] [0320182217] +18:24:36 [ 11] [ 6] [954661] +18:24:36 [ 12] [ 6] [182217] +18:24:36 [ 13] [ 4] [0320] +18:24:36 [ 18] [ 4] [6011] +18:24:36 [ 19] [ 3] [418] +18:24:36 [ 22] [ 3] [021] +18:24:36 [ 32] [ 6] [668899] +18:24:36 [ 35] [ 27] [1808930500012687=1803500028] +18:24:36 [ 37] [ 12] [507901489389] +18:24:36 [ 38] [ 6] [954661] +18:24:36 [ 39] [ 2] [00] +18:24:36 [ 41] [ 8] [03515001] +18:24:36 [ 49] [ 3] [418] +18:24:36 [ 52] [ 16] [15E6262FB2DD77B0] +18:24:36 [ 54] [ 20] [1001418C000007484700] +18:24:36 ============================================================================ +18:24:36 Calculate Source COMM Id = 4 +18:24:36 ============================================================================ +18:24:36 + + +waiting on router queue for slot.... +18:24:39 ============================================================================ +18:24:39 Slot Id : <483> +18:24:39 Transaction Type : REQUEST +18:24:39 Received From : +18:24:39 ============================================================================ +18:24:39 FNo. Len. Field Value +18:24:39 ============================================================================ +18:24:39 [ 1] [ 4] [0800] +18:24:39 [ 7] [ 10] [0320112346] +18:24:39 [ 11] [ 6] [157693] +18:24:39 [ 70] [ 3] [301] +18:24:39 ============================================================================ +18:24:39 + + +waiting on router queue for slot.... +18:24:39 Sending to : +18:24:39 ============================================================================ +18:24:39 ============================================================================ +18:24:39 Slot Id : <483> +18:24:39 Transaction Type : RESPONSE +18:24:39 Received From : +18:24:39 ============================================================================ +18:24:39 FNo. Len. Field Value +18:24:39 ============================================================================ +18:24:39 [ 1] [ 4] [0810] +18:24:39 [ 7] [ 10] [0320112346] +18:24:39 [ 11] [ 6] [157693] +18:24:39 [ 39] [ 2] [00] +18:24:39 [ 70] [ 3] [301] +18:24:39 ============================================================================ +18:24:39 Calculate Source COMM Id = 2 +18:24:39 ============================================================================ +18:24:39 + + +waiting on router queue for slot.... +18:24:49 ============================================================================ +18:24:49 Slot Id : <486> +18:24:49 Transaction Type : REQUEST +18:24:49 Received From : +18:24:49 ============================================================================ +18:24:49 FNo. Len. Field Value +18:24:49 ============================================================================ +18:24:49 [ 1] [ 4] [0200] +18:24:49 [ 2] [ 16] [1808931800017269] +18:24:49 [ 3] [ 6] [300000] +18:24:49 [ 4] [ 12] [000000000000] +18:24:49 [ 7] [ 10] [0320182444] +18:24:49 [ 11] [ 6] [827079] +18:24:49 [ 12] [ 6] [182444] +18:24:49 [ 13] [ 4] [0320] +18:24:49 [ 15] [ 4] [0320] +18:24:49 [ 18] [ 4] [6011] +18:24:49 [ 22] [ 3] [900] +18:24:49 [ 25] [ 2] [02] +18:24:49 [ 28] [ 9] [D00000000] +18:24:49 [ 32] [ 6] [621354] +18:24:49 [ 35] [ 27] [1808931800017269=1803500108] +18:24:49 [ 37] [ 12] [507904653867] +18:24:49 [ 41] [ 8] [17001000] +18:24:49 [ 42] [ 15] [NATIVE ] +18:24:49 [ 43] [ 40] [Sum Market Samneua LAO] +18:24:49 [ 49] [ 3] [418] +18:24:49 [ 52] [ 16] [35F813462DED028C] +18:24:49 ============================================================================ +18:24:49 + + +waiting on router queue for slot.... +18:24:49 Sending to : +18:24:49 ============================================================================ +18:24:49 Sending to : +18:24:49 ============================================================================ +18:24:49 ============================================================================ +18:24:49 Slot Id : <486> +18:24:49 Transaction Type : REQUEST +18:24:49 Received From : +18:24:49 ============================================================================ +18:24:49 FNo. Len. Field Value +18:24:49 ============================================================================ +18:24:49 [ 1] [ 4] [0200] +18:24:49 [ 2] [ 16] [1808931800017269] +18:24:49 [ 3] [ 6] [300000] +18:24:49 [ 4] [ 12] [000000000000] +18:24:49 [ 7] [ 10] [0320182444] +18:24:49 [ 11] [ 6] [827079] +18:24:49 [ 12] [ 6] [182444] +18:24:49 [ 13] [ 4] [0320] +18:24:49 [ 15] [ 4] [0320] +18:24:49 [ 18] [ 4] [6011] +18:24:49 [ 22] [ 3] [900] +18:24:49 [ 25] [ 2] [02] +18:24:49 [ 28] [ 9] [D00000000] +18:24:49 [ 32] [ 6] [621354] +18:24:49 [ 35] [ 27] [1808931800017269=1803500108] +18:24:49 [ 37] [ 12] [507904653867] +18:24:49 [ 41] [ 8] [17001000] +18:24:49 [ 42] [ 15] [NATIVE ] +18:24:49 [ 43] [ 40] [Sum Market Samneua LAO] +18:24:49 [ 49] [ 3] [418] +18:24:49 [ 52] [ 16] [35F813462DED028C] +18:24:49 ============================================================================ +18:24:49 + + +waiting on router queue for slot.... +18:24:49 Sending to : +18:24:49 ============================================================================ +18:24:49 ============================================================================ +18:24:49 Slot Id : <486> +18:24:49 Transaction Type : REQUEST +18:24:49 Received From : +18:24:49 ============================================================================ +18:24:49 FNo. Len. Field Value +18:24:49 ============================================================================ +18:24:49 [ 1] [ 4] [0200] +18:24:49 [ 2] [ 16] [1808931800017269] +18:24:49 [ 3] [ 6] [300000] +18:24:49 [ 4] [ 12] [000000000000] +18:24:49 [ 7] [ 10] [0320182444] +18:24:49 [ 11] [ 6] [827079] +18:24:49 [ 12] [ 6] [182444] +18:24:49 [ 13] [ 4] [0320] +18:24:49 [ 15] [ 4] [0320] +18:24:49 [ 18] [ 4] [6011] +18:24:49 [ 22] [ 3] [900] +18:24:49 [ 25] [ 2] [02] +18:24:49 [ 28] [ 9] [D00000000] +18:24:49 [ 32] [ 6] [621354] +18:24:49 [ 35] [ 27] [1808931800017269=1803500108] +18:24:49 [ 37] [ 12] [507904653867] +18:24:49 [ 41] [ 8] [17001000] +18:24:49 [ 42] [ 15] [NATIVE ] +18:24:49 [ 43] [ 40] [Sum Market Samneua LAO] +18:24:49 [ 49] [ 3] [418] +18:24:49 [ 52] [ 16] [FC9D251F1F3BB0DC] +18:24:49 ============================================================================ +18:24:49 + + +waiting on router queue for slot.... +18:24:49 Sending to : <2> +18:24:49 ============================================================================ +18:24:52 ============================================================================ +18:24:52 Slot Id : <486> +18:24:52 Transaction Type : RESPONSE +18:24:52 Received From : +18:24:52 ============================================================================ +18:24:52 FNo. Len. Field Value +18:24:52 ============================================================================ +18:24:52 [ 1] [ 4] [0210] +18:24:52 [ 2] [ 16] [1808931800017269] +18:24:52 [ 3] [ 6] [300000] +18:24:52 [ 7] [ 10] [0320182444] +18:24:52 [ 11] [ 6] [827079] +18:24:52 [ 12] [ 6] [182444] +18:24:52 [ 13] [ 4] [0320] +18:24:52 [ 14] [ 4] [1803] +18:24:52 [ 19] [ 3] [418] +18:24:52 [ 32] [ 6] [621354] +18:24:52 [ 37] [ 12] [507904653867] +18:24:52 [ 38] [ 6] [827079] +18:24:52 [ 39] [ 2] [00] +18:24:52 [ 41] [ 8] [17001000] +18:24:52 [ 49] [ 3] [418] +18:24:52 [ 52] [ 16] [FC9D251F1F3BB0DC] +18:24:52 [ 54] [ 20] [0002418C000147608800] +18:24:52 ============================================================================ +18:24:52 Sending to : +18:24:52 ============================================================================ +18:24:52 + + +waiting on router queue for slot.... +18:24:53 ============================================================================ +18:24:53 Slot Id : <486> +18:24:53 Transaction Type : RESPONSE +18:24:53 Received From : +18:24:53 ============================================================================ +18:24:53 FNo. Len. Field Value +18:24:53 ============================================================================ +18:24:53 [ 1] [ 4] [0210] +18:24:53 [ 2] [ 16] [1808931800017269] +18:24:53 [ 3] [ 6] [300000] +18:24:53 [ 7] [ 10] [0320182444] +18:24:53 [ 11] [ 6] [827079] +18:24:53 [ 12] [ 6] [182444] +18:24:53 [ 13] [ 4] [0320] +18:24:53 [ 14] [ 4] [1803] +18:24:53 [ 19] [ 3] [418] +18:24:53 [ 32] [ 6] [621354] +18:24:53 [ 37] [ 12] [507904653867] +18:24:53 [ 38] [ 6] [827079] +18:24:53 [ 39] [ 2] [00] +18:24:53 [ 41] [ 8] [17001000] +18:24:53 [ 49] [ 3] [418] +18:24:53 [ 52] [ 16] [FC9D251F1F3BB0DC] +18:24:53 [ 54] [ 20] [0002418C000147608800] +18:24:53 ============================================================================ +18:24:53 Calculate Source COMM Id = 0 +18:24:53 ============================================================================ +18:24:53 + + +waiting on router queue for slot.... +18:24:57 ============================================================================ +18:24:57 Slot Id : <474> +18:24:57 Transaction Type : REQUEST +18:24:57 Received From : +18:24:57 ============================================================================ +18:24:57 FNo. Len. Field Value +18:24:57 ============================================================================ +18:24:57 [ 1] [ 4] [0800] +18:24:57 [ 7] [ 10] [0320113242] +18:24:57 [ 11] [ 6] [078343] +18:24:57 [ 37] [ 12] [57918078343] +18:24:57 [ 70] [ 3] [301] +18:24:57 ============================================================================ +18:24:57 + + +waiting on router queue for slot.... +18:24:57 Sending to : +18:24:57 ============================================================================ +18:24:57 ============================================================================ +18:24:57 Slot Id : <474> +18:24:57 Transaction Type : RESPONSE +18:24:57 Received From : +18:24:57 ============================================================================ +18:24:57 FNo. Len. Field Value +18:24:57 ============================================================================ +18:24:57 [ 1] [ 4] [0810] +18:24:57 [ 7] [ 10] [0320113242] +18:24:57 [ 11] [ 6] [078343] +18:24:57 [ 37] [ 12] [579180783430] +18:24:57 [ 39] [ 2] [00] +18:24:57 [ 70] [ 3] [810] +18:24:57 ============================================================================ +18:24:57 Calculate Source COMM Id = 1 +18:24:57 ============================================================================ +18:24:57 + + +waiting on router queue for slot.... +18:24:58 ============================================================================ +18:24:58 Slot Id : <472> +18:24:58 Transaction Type : REQUEST +18:24:58 Received From : +18:24:58 ============================================================================ +18:24:58 FNo. Len. Field Value +18:24:58 ============================================================================ +18:24:58 [ 1] [ 4] [0800] +18:24:58 [ 7] [ 10] [0321013647] +18:24:58 [ 11] [ 6] [183647] +18:24:58 [ 37] [ 12] [57918183647] +18:24:58 [ 70] [ 3] [301] +18:24:58 ============================================================================ +18:24:58 + + +waiting on router queue for slot.... +18:24:58 Sending to : +18:24:58 ============================================================================ +18:24:58 ============================================================================ +18:24:58 Slot Id : <472> +18:24:58 Transaction Type : RESPONSE +18:24:58 Received From : +18:24:58 ============================================================================ +18:24:58 FNo. Len. Field Value +18:24:58 ============================================================================ +18:24:58 [ 1] [ 4] [0810] +18:24:58 [ 7] [ 10] [0321013647] +18:24:58 [ 11] [ 6] [183647] +18:24:58 [ 37] [ 12] [579181836470] +18:24:58 [ 39] [ 2] [00] +18:24:58 [ 70] [ 3] [810] +18:24:58 ============================================================================ +18:24:58 Calculate Source COMM Id = 6 +18:24:58 ============================================================================ +18:24:58 + + +waiting on router queue for slot.... +18:25:00 ============================================================================ +18:25:00 Slot Id : <6> +18:25:00 Transaction Type : REQUEST +18:25:00 Received From : +18:25:00 ============================================================================ +18:25:00 FNo. Len. Field Value +18:25:00 ============================================================================ +18:25:00 [ 1] [ 4] [0800] +18:25:00 [ 7] [ 10] [0320112407] +18:25:00 [ 11] [ 6] [157694] +18:25:00 [ 70] [ 3] [301] +18:25:00 ============================================================================ +18:25:00 + + +waiting on router queue for slot.... +18:25:00 Sending to : +18:25:00 ============================================================================ +18:25:00 ============================================================================ +18:25:00 Slot Id : <6> +18:25:00 Transaction Type : RESPONSE +18:25:00 Received From : +18:25:00 ============================================================================ +18:25:00 FNo. Len. Field Value +18:25:00 ============================================================================ +18:25:00 [ 1] [ 4] [0810] +18:25:00 [ 7] [ 10] [0320112407] +18:25:00 [ 11] [ 6] [157694] +18:25:00 [ 39] [ 2] [00] +18:25:00 [ 70] [ 3] [301] +18:25:00 ============================================================================ +18:25:00 Calculate Source COMM Id = 2 +18:25:00 ============================================================================ +18:25:00 + + +waiting on router queue for slot.... +18:25:05 ============================================================================ +18:25:05 Slot Id : <492> +18:25:05 Transaction Type : REQUEST +18:25:05 Received From : +18:25:05 ============================================================================ +18:25:05 FNo. Len. Field Value +18:25:05 ============================================================================ +18:25:05 [ 1] [ 4] [0200] +18:25:05 [ 2] [ 16] [6213544002031695] +18:25:05 [ 3] [ 6] [010000] +18:25:05 [ 4] [ 12] [000100000000] +18:25:05 [ 7] [ 10] [0320182255] +18:25:05 [ 11] [ 6] [954672] +18:25:05 [ 12] [ 6] [182255] +18:25:05 [ 13] [ 4] [0320] +18:25:05 [ 15] [ 4] [0320] +18:25:05 [ 18] [ 4] [6011] +18:25:05 [ 19] [ 3] [418] +18:25:05 [ 22] [ 3] [021] +18:25:05 [ 25] [ 2] [01] +18:25:05 [ 28] [ 9] [D00002000] +18:25:05 [ 32] [ 6] [668899] +18:25:05 [ 35] [ 32] [6213544002031695=491212013169607] +18:25:05 [ 37] [ 12] [507900285858] +18:25:05 [ 41] [ 8] [03010005] +18:25:05 [ 42] [ 15] [APT ] +18:25:05 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +18:25:05 [ 49] [ 3] [418] +18:25:05 [ 52] [ 16] [6C62224981805D94] +18:25:05 ============================================================================ +18:25:05 + + +waiting on router queue for slot.... +18:25:05 Sending to : +18:25:05 ============================================================================ +18:25:05 Sending to : +18:25:05 ============================================================================ +18:25:06 ============================================================================ +18:25:06 Slot Id : <492> +18:25:06 Transaction Type : REQUEST +18:25:06 Received From : +18:25:06 ============================================================================ +18:25:06 FNo. Len. Field Value +18:25:06 ============================================================================ +18:25:06 [ 1] [ 4] [0200] +18:25:06 [ 2] [ 16] [6213544002031695] +18:25:06 [ 3] [ 6] [010000] +18:25:06 [ 4] [ 12] [000100000000] +18:25:06 [ 7] [ 10] [0320182255] +18:25:06 [ 11] [ 6] [954672] +18:25:06 [ 12] [ 6] [182255] +18:25:06 [ 13] [ 4] [0320] +18:25:06 [ 15] [ 4] [0320] +18:25:06 [ 18] [ 4] [6011] +18:25:06 [ 19] [ 3] [418] +18:25:06 [ 22] [ 3] [021] +18:25:06 [ 25] [ 2] [01] +18:25:06 [ 28] [ 9] [D00002000] +18:25:06 [ 32] [ 6] [668899] +18:25:06 [ 35] [ 32] [6213544002031695=491212013169607] +18:25:06 [ 37] [ 12] [507900285858] +18:25:06 [ 41] [ 8] [03010005] +18:25:06 [ 42] [ 15] [APT ] +18:25:06 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +18:25:06 [ 49] [ 3] [418] +18:25:06 [ 52] [ 16] [6C62224981805D94] +18:25:06 ============================================================================ +18:25:06 + + +waiting on router queue for slot.... +18:25:06 Sending to : +18:25:06 ============================================================================ +18:25:06 ============================================================================ +18:25:06 Slot Id : <492> +18:25:06 Transaction Type : REQUEST +18:25:06 Received From : +18:25:06 ============================================================================ +18:25:06 FNo. Len. Field Value +18:25:06 ============================================================================ +18:25:06 [ 1] [ 4] [0200] +18:25:06 [ 2] [ 16] [6213544002031695] +18:25:06 [ 3] [ 6] [010000] +18:25:06 [ 4] [ 12] [000100000000] +18:25:06 [ 7] [ 10] [0320182255] +18:25:06 [ 11] [ 6] [954672] +18:25:06 [ 12] [ 6] [182255] +18:25:06 [ 13] [ 4] [0320] +18:25:06 [ 15] [ 4] [0320] +18:25:06 [ 18] [ 4] [6011] +18:25:06 [ 19] [ 3] [418] +18:25:06 [ 22] [ 3] [021] +18:25:06 [ 25] [ 2] [01] +18:25:06 [ 28] [ 9] [D00002000] +18:25:06 [ 32] [ 6] [668899] +18:25:06 [ 35] [ 32] [6213544002031695=491212013169607] +18:25:06 [ 37] [ 12] [507900285858] +18:25:06 [ 41] [ 8] [03010005] +18:25:06 [ 42] [ 15] [APT ] +18:25:06 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +18:25:06 [ 49] [ 3] [418] +18:25:06 [ 52] [ 16] [229CF5555A7F663D] +18:25:06 ============================================================================ +18:25:06 + + +waiting on router queue for slot.... +18:25:06 Sending to : <0> +18:25:06 ============================================================================ +18:25:06 ============================================================================ +18:25:06 Slot Id : <492> +18:25:06 Transaction Type : RESPONSE +18:25:06 Received From : +18:25:06 ============================================================================ +18:25:06 FNo. Len. Field Value +18:25:06 ============================================================================ +18:25:06 [ 1] [ 4] [0210] +18:25:06 [ 2] [ 16] [6213544002031695] +18:25:06 [ 3] [ 6] [010000] +18:25:06 [ 4] [ 12] [000100000000] +18:25:06 [ 7] [ 10] [0320182255] +18:25:06 [ 11] [ 6] [954672] +18:25:06 [ 12] [ 6] [182255] +18:25:06 [ 13] [ 4] [0320] +18:25:06 [ 15] [ 4] [0320] +18:25:06 [ 18] [ 4] [6011] +18:25:06 [ 19] [ 3] [418] +18:25:06 [ 32] [ 6] [668899] +18:25:06 [ 35] [ 32] [6213544002031695=491212013169607] +18:25:06 [ 37] [ 12] [507900285858] +18:25:06 [ 38] [ 6] [956751] +18:25:06 [ 39] [ 2] [00] +18:25:06 [ 41] [ 8] [03010005] +18:25:06 [ 49] [ 3] [418] +18:25:06 [ 54] [ 40] [0001418C0002273891500002418C000227389150] +18:25:06 ============================================================================ +18:25:06 Sending to : +18:25:06 ============================================================================ +18:25:06 + + +waiting on router queue for slot.... +18:25:08 ============================================================================ +18:25:08 Slot Id : <492> +18:25:08 Transaction Type : RESPONSE +18:25:08 Received From : +18:25:08 ============================================================================ +18:25:08 FNo. Len. Field Value +18:25:08 ============================================================================ +18:25:08 [ 1] [ 4] [0210] +18:25:08 [ 2] [ 16] [6213544002031695] +18:25:08 [ 3] [ 6] [010000] +18:25:08 [ 4] [ 12] [000100000000] +18:25:08 [ 7] [ 10] [0320182255] +18:25:08 [ 11] [ 6] [954672] +18:25:08 [ 12] [ 6] [182255] +18:25:08 [ 13] [ 4] [0320] +18:25:08 [ 15] [ 4] [0320] +18:25:08 [ 18] [ 4] [6011] +18:25:08 [ 19] [ 3] [418] +18:25:08 [ 32] [ 6] [668899] +18:25:08 [ 35] [ 32] [6213544002031695=491212013169607] +18:25:08 [ 37] [ 12] [507900285858] +18:25:08 [ 38] [ 6] [956751] +18:25:08 [ 39] [ 2] [00] +18:25:08 [ 41] [ 8] [03010005] +18:25:08 [ 49] [ 3] [418] +18:25:08 [ 54] [ 40] [0001418C0002273891500002418C000227389150] +18:25:08 ============================================================================ +18:25:08 Calculate Source COMM Id = 4 +18:25:08 ============================================================================ +18:25:08 + + +waiting on router queue for slot.... +18:25:11 ============================================================================ +18:25:11 Slot Id : <16> +18:25:11 Transaction Type : REQUEST +18:25:11 Received From : +18:25:11 ============================================================================ +18:25:11 FNo. Len. Field Value +18:25:11 ============================================================================ +18:25:11 [ 1] [ 4] [0200] +18:25:11 [ 2] [ 16] [6213544001248704] +18:25:11 [ 3] [ 6] [010000] +18:25:11 [ 4] [ 12] [000020000000] +18:25:11 [ 7] [ 10] [0320183256] +18:25:11 [ 11] [ 6] [223786] +18:25:11 [ 12] [ 6] [183256] +18:25:11 [ 13] [ 4] [0320] +18:25:11 [ 14] [ 4] [4912] +18:25:11 [ 15] [ 4] [0320] +18:25:11 [ 18] [ 4] [6011] +18:25:11 [ 22] [ 3] [900] +18:25:11 [ 25] [ 2] [02] +18:25:11 [ 28] [ 9] [D00002000] +18:25:11 [ 32] [ 6] [220699] +18:25:11 [ 35] [ 32] [6213544001248704=491212014870230] +18:25:11 [ 37] [ 12] [507900118800] +18:25:11 [ 41] [ 8] [01001100] +18:25:11 [ 42] [ 15] [APTRA ] +18:25:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:25:11 [ 49] [ 3] [418] +18:25:11 [ 52] [ 16] [58BCDFE506058DD1] +18:25:11 ============================================================================ +18:25:11 + + +waiting on router queue for slot.... +18:25:11 Sending to : +18:25:11 ============================================================================ +18:25:11 Sending to : +18:25:11 ============================================================================ +18:25:11 ============================================================================ +18:25:11 Slot Id : <13> +18:25:11 Transaction Type : REQUEST +18:25:11 Received From : +18:25:11 ============================================================================ +18:25:11 FNo. Len. Field Value +18:25:11 ============================================================================ +18:25:11 [ 1] [ 4] [0800] +18:25:11 [ 7] [ 10] [0320112417] +18:25:11 [ 11] [ 6] [157695] +18:25:11 [ 70] [ 3] [301] +18:25:11 ============================================================================ +18:25:11 + + +waiting on router queue for slot.... +18:25:11 Sending to : +18:25:11 ============================================================================ +18:25:11 ============================================================================ +18:25:11 Slot Id : <13> +18:25:11 Transaction Type : RESPONSE +18:25:11 Received From : +18:25:11 ============================================================================ +18:25:11 FNo. Len. Field Value +18:25:11 ============================================================================ +18:25:11 [ 1] [ 4] [0810] +18:25:11 [ 7] [ 10] [0320112417] +18:25:11 [ 11] [ 6] [157695] +18:25:11 [ 39] [ 2] [00] +18:25:11 [ 70] [ 3] [301] +18:25:11 ============================================================================ +18:25:11 Calculate Source COMM Id = 2 +18:25:11 ============================================================================ +18:25:11 + + +waiting on router queue for slot.... +18:25:11 ============================================================================ +18:25:11 Slot Id : <16> +18:25:11 Transaction Type : REQUEST +18:25:11 Received From : +18:25:11 ============================================================================ +18:25:11 FNo. Len. Field Value +18:25:11 ============================================================================ +18:25:11 [ 1] [ 4] [0200] +18:25:11 [ 2] [ 16] [6213544001248704] +18:25:11 [ 3] [ 6] [010000] +18:25:11 [ 4] [ 12] [000020000000] +18:25:11 [ 7] [ 10] [0320183256] +18:25:11 [ 11] [ 6] [223786] +18:25:11 [ 12] [ 6] [183256] +18:25:11 [ 13] [ 4] [0320] +18:25:11 [ 14] [ 4] [4912] +18:25:11 [ 15] [ 4] [0320] +18:25:11 [ 18] [ 4] [6011] +18:25:11 [ 22] [ 3] [900] +18:25:11 [ 25] [ 2] [02] +18:25:11 [ 28] [ 9] [D00002000] +18:25:11 [ 32] [ 6] [220699] +18:25:11 [ 35] [ 32] [6213544001248704=491212014870230] +18:25:11 [ 37] [ 12] [507900118800] +18:25:11 [ 41] [ 8] [01001100] +18:25:11 [ 42] [ 15] [APTRA ] +18:25:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:25:11 [ 49] [ 3] [418] +18:25:11 [ 52] [ 16] [58BCDFE506058DD1] +18:25:11 ============================================================================ +18:25:11 + + +waiting on router queue for slot.... +18:25:11 Sending to : +18:25:11 ============================================================================ +18:25:11 ============================================================================ +18:25:11 Slot Id : <16> +18:25:11 Transaction Type : REQUEST +18:25:11 Received From : +18:25:11 ============================================================================ +18:25:11 FNo. Len. Field Value +18:25:11 ============================================================================ +18:25:11 [ 1] [ 4] [0200] +18:25:11 [ 2] [ 16] [6213544001248704] +18:25:11 [ 3] [ 6] [010000] +18:25:11 [ 4] [ 12] [000020000000] +18:25:11 [ 7] [ 10] [0320183256] +18:25:11 [ 11] [ 6] [223786] +18:25:11 [ 12] [ 6] [183256] +18:25:11 [ 13] [ 4] [0320] +18:25:11 [ 14] [ 4] [4912] +18:25:11 [ 15] [ 4] [0320] +18:25:11 [ 18] [ 4] [6011] +18:25:11 [ 22] [ 3] [900] +18:25:11 [ 25] [ 2] [02] +18:25:11 [ 28] [ 9] [D00002000] +18:25:11 [ 32] [ 6] [220699] +18:25:11 [ 35] [ 32] [6213544001248704=491212014870230] +18:25:11 [ 37] [ 12] [507900118800] +18:25:11 [ 41] [ 8] [01001100] +18:25:11 [ 42] [ 15] [APTRA ] +18:25:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:25:11 [ 49] [ 3] [418] +18:25:11 [ 52] [ 16] [400C9650EB181C6F] +18:25:11 ============================================================================ +18:25:11 + + +waiting on router queue for slot.... +18:25:11 Sending to : <0> +18:25:11 ============================================================================ +18:25:12 ============================================================================ +18:25:12 Slot Id : <16> +18:25:12 Transaction Type : RESPONSE +18:25:12 Received From : +18:25:12 ============================================================================ +18:25:12 FNo. Len. Field Value +18:25:12 ============================================================================ +18:25:12 [ 1] [ 4] [0210] +18:25:12 [ 2] [ 16] [6213544001248704] +18:25:12 [ 3] [ 6] [010000] +18:25:12 [ 4] [ 12] [000020000000] +18:25:12 [ 7] [ 10] [0320183256] +18:25:12 [ 11] [ 6] [223786] +18:25:12 [ 12] [ 6] [183256] +18:25:12 [ 13] [ 4] [0320] +18:25:12 [ 15] [ 4] [0320] +18:25:12 [ 18] [ 4] [6011] +18:25:12 [ 32] [ 6] [220699] +18:25:12 [ 35] [ 32] [6213544001248704=491212014870230] +18:25:12 [ 37] [ 12] [507900118800] +18:25:12 [ 38] [ 6] [427312] +18:25:12 [ 39] [ 2] [00] +18:25:12 [ 41] [ 8] [01001100] +18:25:12 [ 49] [ 3] [418] +18:25:12 [ 54] [ 40] [0001418C0000090169220002418C000009016922] +18:25:12 ============================================================================ +18:25:12 Sending to : +18:25:12 ============================================================================ +18:25:12 + + +waiting on router queue for slot.... +18:25:13 ============================================================================ +18:25:13 Slot Id : <16> +18:25:13 Transaction Type : RESPONSE +18:25:13 Received From : +18:25:13 ============================================================================ +18:25:13 FNo. Len. Field Value +18:25:13 ============================================================================ +18:25:13 [ 1] [ 4] [0210] +18:25:13 [ 2] [ 16] [6213544001248704] +18:25:13 [ 3] [ 6] [010000] +18:25:13 [ 4] [ 12] [000020000000] +18:25:13 [ 7] [ 10] [0320183256] +18:25:13 [ 11] [ 6] [223786] +18:25:13 [ 12] [ 6] [183256] +18:25:13 [ 13] [ 4] [0320] +18:25:13 [ 15] [ 4] [0320] +18:25:13 [ 18] [ 4] [6011] +18:25:13 [ 32] [ 6] [220699] +18:25:13 [ 35] [ 32] [6213544001248704=491212014870230] +18:25:13 [ 37] [ 12] [507900118800] +18:25:13 [ 38] [ 6] [427312] +18:25:13 [ 39] [ 2] [00] +18:25:13 [ 41] [ 8] [01001100] +18:25:13 [ 49] [ 3] [418] +18:25:13 [ 54] [ 40] [0001418C0000090169220002418C000009016922] +18:25:13 ============================================================================ +18:25:13 Calculate Source COMM Id = 1 +18:25:13 ============================================================================ +18:25:13 + + +waiting on router queue for slot.... +18:25:17 ============================================================================ +18:25:17 Slot Id : <454> +18:25:17 Transaction Type : REQUEST +18:25:17 Received From : +18:25:17 ============================================================================ +18:25:17 FNo. Len. Field Value +18:25:17 ============================================================================ +18:25:17 [ 1] [ 4] [0800] +18:25:17 [ 2] [ 5] [02531] +18:25:17 [ 3] [ 6] [579188] +18:25:17 [ 7] [ 10] [0320112517] +18:25:17 [ 11] [ 6] [807481] +18:25:17 [ 15] [ 10] [0320112517] +18:25:17 [ 37] [ 11] [57918807481] +18:25:17 [ 70] [ 3] [001] +18:25:17 ============================================================================ +18:25:17 + + +waiting on router queue for slot.... +18:25:17 ============================================================================ +18:25:17 Slot Id : <454> +18:25:17 Transaction Type : RESPONSE +18:25:17 Received From : +18:25:17 ============================================================================ +18:25:17 FNo. Len. Field Value +18:25:17 ============================================================================ +18:25:17 [ 1] [ 4] [0810] +18:25:17 [ 7] [ 10] [0320112517] +18:25:17 [ 11] [ 6] [807481] +18:25:17 [ 15] [ 4] [0320] +18:25:17 [ 37] [ 12] [57918807481] +18:25:17 [ 39] [ 2] [00] +18:25:17 [ 70] [ 3] [001] +18:25:17 ============================================================================ +18:25:17 Sending to : +18:25:17 ============================================================================ +18:25:17 + + +waiting on router queue for slot.... +18:25:21 ============================================================================ +18:25:21 Slot Id : <12> +18:25:21 Transaction Type : REQUEST +18:25:21 Received From : +18:25:21 ============================================================================ +18:25:21 FNo. Len. Field Value +18:25:21 ============================================================================ +18:25:21 [ 1] [ 4] [0800] +18:25:21 [ 7] [ 10] [0320112428] +18:25:21 [ 11] [ 6] [157696] +18:25:21 [ 70] [ 3] [301] +18:25:21 ============================================================================ +18:25:21 + + +waiting on router queue for slot.... +18:25:21 Sending to : +18:25:21 ============================================================================ +18:25:21 ============================================================================ +18:25:21 Slot Id : <12> +18:25:21 Transaction Type : RESPONSE +18:25:21 Received From : +18:25:21 ============================================================================ +18:25:21 FNo. Len. Field Value +18:25:21 ============================================================================ +18:25:21 [ 1] [ 4] [0810] +18:25:21 [ 7] [ 10] [0320112428] +18:25:21 [ 11] [ 6] [157696] +18:25:21 [ 39] [ 2] [00] +18:25:21 [ 70] [ 3] [301] +18:25:21 ============================================================================ +18:25:21 Calculate Source COMM Id = 2 +18:25:21 ============================================================================ +18:25:21 + + +waiting on router queue for slot.... +18:25:24 ============================================================================ +18:25:24 Slot Id : <22> +18:25:24 Transaction Type : REQUEST +18:25:24 Received From : +18:25:24 ============================================================================ +18:25:24 FNo. Len. Field Value +18:25:24 ============================================================================ +18:25:24 [ 1] [ 4] [0800] +18:25:24 [ 7] [ 10] [0320182510] +18:25:24 [ 11] [ 6] [006154] +18:25:24 [ 37] [ 12] [507918006154] +18:25:24 [ 70] [ 3] [ ] +18:25:24 ============================================================================ +18:25:24 + + +waiting on router queue for slot.... +18:25:24 Sending to : +18:25:24 ============================================================================ +18:25:24 ============================================================================ +18:25:24 Slot Id : <22> +18:25:24 Transaction Type : RESPONSE +18:25:24 Received From : +18:25:24 ============================================================================ +18:25:24 FNo. Len. Field Value +18:25:24 ============================================================================ +18:25:24 [ 1] [ 4] [0810] +18:25:24 [ 7] [ 10] [0320182510] +18:25:24 [ 11] [ 6] [006154] +18:25:24 [ 37] [ 12] [507918006154] +18:25:24 [ 39] [ 2] [91] +18:25:24 [ 70] [ 3] [ ] +18:25:24 ============================================================================ +18:25:24 Calculate Source COMM Id = 3 +18:25:24 ============================================================================ +18:25:24 + + +waiting on router queue for slot.... +18:25:31 ============================================================================ +18:25:31 Slot Id : <469> +18:25:31 Transaction Type : REQUEST +18:25:31 Received From : +18:25:31 ============================================================================ +18:25:31 FNo. Len. Field Value +18:25:31 ============================================================================ +18:25:31 [ 1] [ 4] [0800] +18:25:31 [ 7] [ 10] [0320112438] +18:25:31 [ 11] [ 6] [157697] +18:25:31 [ 70] [ 3] [301] +18:25:31 ============================================================================ +18:25:31 + + +waiting on router queue for slot.... +18:25:31 Sending to : +18:25:31 ============================================================================ +18:25:31 ============================================================================ +18:25:31 Slot Id : <469> +18:25:31 Transaction Type : RESPONSE +18:25:31 Received From : +18:25:31 ============================================================================ +18:25:31 FNo. Len. Field Value +18:25:31 ============================================================================ +18:25:31 [ 1] [ 4] [0810] +18:25:31 [ 7] [ 10] [0320112438] +18:25:31 [ 11] [ 6] [157697] +18:25:31 [ 39] [ 2] [00] +18:25:31 [ 70] [ 3] [301] +18:25:31 ============================================================================ +18:25:31 Calculate Source COMM Id = 2 +18:25:31 ============================================================================ +18:25:31 + + +waiting on router queue for slot.... +18:25:35 ============================================================================ +18:25:35 Slot Id : <494> +18:25:35 Transaction Type : REQUEST +18:25:35 Received From : +18:25:35 ============================================================================ +18:25:35 FNo. Len. Field Value +18:25:35 ============================================================================ +18:25:35 [ 1] [ 4] [0420] +18:25:35 [ 2] [ 16] [1808930500012687] +18:25:35 [ 3] [ 6] [010000] +18:25:35 [ 4] [ 12] [000100000000] +18:25:35 [ 7] [ 10] [0320182217] +18:25:35 [ 11] [ 6] [954661] +18:25:35 [ 12] [ 6] [182217] +18:25:35 [ 13] [ 4] [0320] +18:25:35 [ 15] [ 4] [0320] +18:25:35 [ 18] [ 4] [6011] +18:25:35 [ 19] [ 3] [418] +18:25:35 [ 22] [ 3] [021] +18:25:35 [ 25] [ 2] [01] +18:25:35 [ 28] [ 9] [C00002000] +18:25:35 [ 32] [ 6] [668899] +18:25:35 [ 35] [ 27] [1808930500012687=1803500028] +18:25:35 [ 37] [ 12] [507901489389] +18:25:35 [ 39] [ 2] [00] +18:25:35 [ 41] [ 8] [03515001] +18:25:35 [ 42] [ 15] [APT ] +18:25:35 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:25:35 [ 49] [ 3] [418] +18:25:35 [ 51] [ 3] [418] +18:25:35 [ 52] [ 16] [101E461FEA356406] +18:25:35 [ 90] [ 42] [020095466103201822170000066889900000000000] +18:25:35 ============================================================================ +18:25:35 + + +waiting on router queue for slot.... +18:25:35 Sending to : +18:25:35 ============================================================================ +18:25:38 ============================================================================ +18:25:38 Slot Id : <17> +18:25:38 Transaction Type : REQUEST +18:25:38 Received From : +18:25:38 ============================================================================ +18:25:38 FNo. Len. Field Value +18:25:38 ============================================================================ +18:25:38 [ 1] [ 4] [0200] +18:25:38 [ 2] [ 16] [6688990040131409] +18:25:38 [ 3] [ 6] [011000] +18:25:38 [ 4] [ 12] [000020000000] +18:25:38 [ 7] [ 10] [0320182533] +18:25:38 [ 11] [ 6] [827226] +18:25:38 [ 12] [ 6] [182533] +18:25:38 [ 13] [ 4] [0320] +18:25:38 [ 15] [ 4] [0320] +18:25:38 [ 18] [ 4] [6011] +18:25:38 [ 22] [ 3] [900] +18:25:38 [ 25] [ 2] [02] +18:25:38 [ 28] [ 9] [D00002000] +18:25:38 [ 32] [ 6] [621354] +18:25:38 [ 35] [ 37] [6688990040131409=98041261670969800000] +18:25:38 [ 37] [ 12] [507903040598] +18:25:38 [ 41] [ 8] [01008400] +18:25:38 [ 42] [ 15] [NATIVE ] +18:25:38 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +18:25:38 [ 49] [ 3] [418] +18:25:38 [ 52] [ 16] [F77EFD9F195AC1AF] +18:25:38 ============================================================================ +18:25:38 + + +waiting on router queue for slot.... +18:25:38 Sending to : +18:25:38 ============================================================================ +18:25:38 Sending to : +18:25:38 ============================================================================ +18:25:39 ============================================================================ +18:25:39 Slot Id : <494> +18:25:39 Transaction Type : RESPONSE +18:25:39 Received From : +18:25:39 ============================================================================ +18:25:39 FNo. Len. Field Value +18:25:39 ============================================================================ +18:25:39 [ 1] [ 4] [0430] +18:25:39 [ 2] [ 16] [1808930500012687] +18:25:39 [ 3] [ 6] [010000] +18:25:39 [ 4] [ 12] [000100000000] +18:25:39 [ 7] [ 10] [0320182217] +18:25:39 [ 11] [ 6] [954661] +18:25:39 [ 12] [ 6] [182217] +18:25:39 [ 13] [ 4] [0320] +18:25:39 [ 15] [ 4] [0320] +18:25:39 [ 18] [ 4] [6011] +18:25:39 [ 19] [ 3] [418] +18:25:39 [ 22] [ 3] [021] +18:25:39 [ 25] [ 2] [01] +18:25:39 [ 28] [ 9] [C00002000] +18:25:39 [ 32] [ 6] [668899] +18:25:39 [ 35] [ 27] [1808930500012687=1803500028] +18:25:39 [ 37] [ 12] [507901489389] +18:25:39 [ 39] [ 2] [00] +18:25:39 [ 41] [ 8] [03515001] +18:25:39 [ 42] [ 15] [APT ] +18:25:39 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:25:39 [ 49] [ 3] [418] +18:25:39 [ 51] [ 3] [418] +18:25:39 [ 52] [ 16] [101E461FEA356406] +18:25:39 [ 90] [ 42] [020095466103201822170000066889900000000000] +18:25:39 ============================================================================ +18:25:39 Calculate Source COMM Id = 4 +18:25:39 ============================================================================ +18:25:39 + + +waiting on router queue for slot.... +18:25:39 ============================================================================ +18:25:39 Slot Id : <17> +18:25:39 Transaction Type : REQUEST +18:25:39 Received From : +18:25:39 ============================================================================ +18:25:39 FNo. Len. Field Value +18:25:39 ============================================================================ +18:25:39 [ 1] [ 4] [0200] +18:25:39 [ 2] [ 16] [6688990040131409] +18:25:39 [ 3] [ 6] [011000] +18:25:39 [ 4] [ 12] [000020000000] +18:25:39 [ 7] [ 10] [0320182533] +18:25:39 [ 11] [ 6] [827226] +18:25:39 [ 12] [ 6] [182533] +18:25:39 [ 13] [ 4] [0320] +18:25:39 [ 15] [ 4] [0320] +18:25:39 [ 18] [ 4] [6011] +18:25:39 [ 22] [ 3] [900] +18:25:39 [ 25] [ 2] [02] +18:25:39 [ 28] [ 9] [D00002000] +18:25:39 [ 32] [ 6] [621354] +18:25:39 [ 35] [ 37] [6688990040131409=98041261670969800000] +18:25:39 [ 37] [ 12] [507903040598] +18:25:39 [ 41] [ 8] [01008400] +18:25:39 [ 42] [ 15] [NATIVE ] +18:25:39 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +18:25:39 [ 49] [ 3] [418] +18:25:39 [ 52] [ 16] [F77EFD9F195AC1AF] +18:25:39 ============================================================================ +18:25:39 + + +waiting on router queue for slot.... +18:25:39 Sending to : +18:25:39 ============================================================================ +18:25:39 ============================================================================ +18:25:39 Slot Id : <17> +18:25:39 Transaction Type : REQUEST +18:25:39 Received From : +18:25:39 ============================================================================ +18:25:39 FNo. Len. Field Value +18:25:39 ============================================================================ +18:25:39 [ 1] [ 4] [0200] +18:25:39 [ 2] [ 16] [6688990040131409] +18:25:39 [ 3] [ 6] [011000] +18:25:39 [ 4] [ 12] [000020000000] +18:25:39 [ 7] [ 10] [0320182533] +18:25:39 [ 11] [ 6] [827226] +18:25:39 [ 12] [ 6] [182533] +18:25:39 [ 13] [ 4] [0320] +18:25:39 [ 15] [ 4] [0320] +18:25:39 [ 18] [ 4] [6011] +18:25:39 [ 22] [ 3] [900] +18:25:39 [ 25] [ 2] [02] +18:25:39 [ 28] [ 9] [D00002000] +18:25:39 [ 32] [ 6] [621354] +18:25:39 [ 35] [ 37] [6688990040131409=98041261670969800000] +18:25:39 [ 37] [ 12] [507903040598] +18:25:39 [ 41] [ 8] [01008400] +18:25:39 [ 42] [ 15] [NATIVE ] +18:25:39 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +18:25:39 [ 49] [ 3] [418] +18:25:39 [ 52] [ 16] [46A83309EBD9E266] +18:25:39 ============================================================================ +18:25:39 + + +waiting on router queue for slot.... +18:25:39 Sending to : <4> +18:25:39 ============================================================================ +18:25:39 ============================================================================ +18:25:39 Slot Id : <17> +18:25:39 Transaction Type : RESPONSE +18:25:39 Received From : +18:25:39 ============================================================================ +18:25:39 FNo. Len. Field Value +18:25:39 ============================================================================ +18:25:39 [ 1] [ 4] [0210] +18:25:39 [ 2] [ 16] [6688990040131409] +18:25:39 [ 3] [ 6] [011000] +18:25:39 [ 4] [ 12] [000020000000] +18:25:39 [ 7] [ 10] [0320182533] +18:25:39 [ 11] [ 6] [827226] +18:25:39 [ 12] [ 6] [182533] +18:25:39 [ 13] [ 4] [0320] +18:25:39 [ 15] [ 4] [0320] +18:25:39 [ 18] [ 4] [6011] +18:25:39 [ 22] [ 3] [021] +18:25:39 [ 32] [ 6] [621354] +18:25:39 [ 35] [ 37] [6688990040131409=98041261670969800000] +18:25:39 [ 37] [ 12] [507903040598] +18:25:39 [ 38] [ 6] [182329] +18:25:39 [ 39] [ 2] [55] +18:25:39 [ 41] [ 8] [01008400] +18:25:39 [ 49] [ 3] [418] +18:25:39 ============================================================================ +18:25:39 Sending to : +18:25:39 ============================================================================ +18:25:39 + + +waiting on router queue for slot.... +18:25:40 ============================================================================ +18:25:40 Slot Id : <17> +18:25:40 Transaction Type : RESPONSE +18:25:40 Received From : +18:25:40 ============================================================================ +18:25:40 FNo. Len. Field Value +18:25:40 ============================================================================ +18:25:40 [ 1] [ 4] [0210] +18:25:40 [ 2] [ 16] [6688990040131409] +18:25:40 [ 3] [ 6] [011000] +18:25:40 [ 4] [ 12] [000020000000] +18:25:40 [ 7] [ 10] [0320182533] +18:25:40 [ 11] [ 6] [827226] +18:25:40 [ 12] [ 6] [182533] +18:25:40 [ 13] [ 4] [0320] +18:25:40 [ 15] [ 4] [0320] +18:25:40 [ 18] [ 4] [6011] +18:25:40 [ 22] [ 3] [021] +18:25:40 [ 32] [ 6] [621354] +18:25:40 [ 35] [ 37] [6688990040131409=98041261670969800000] +18:25:40 [ 37] [ 12] [507903040598] +18:25:40 [ 38] [ 6] [182329] +18:25:40 [ 39] [ 2] [55] +18:25:40 [ 41] [ 8] [01008400] +18:25:40 [ 49] [ 3] [418] +18:25:40 ============================================================================ +18:25:40 Calculate Source COMM Id = 0 +18:25:40 ============================================================================ +18:25:40 + + +waiting on router queue for slot.... +18:25:41 ============================================================================ +18:25:41 Slot Id : <491> +18:25:41 Transaction Type : REQUEST +18:25:41 Received From : +18:25:41 ============================================================================ +18:25:41 FNo. Len. Field Value +18:25:41 ============================================================================ +18:25:41 [ 1] [ 4] [0800] +18:25:41 [ 7] [ 10] [0320112448] +18:25:41 [ 11] [ 6] [157698] +18:25:41 [ 70] [ 3] [301] +18:25:41 ============================================================================ +18:25:41 + + +waiting on router queue for slot.... +18:25:41 Sending to : +18:25:41 ============================================================================ +18:25:41 ============================================================================ +18:25:41 Slot Id : <491> +18:25:41 Transaction Type : RESPONSE +18:25:41 Received From : +18:25:41 ============================================================================ +18:25:41 FNo. Len. Field Value +18:25:41 ============================================================================ +18:25:41 [ 1] [ 4] [0810] +18:25:41 [ 7] [ 10] [0320112448] +18:25:41 [ 11] [ 6] [157698] +18:25:41 [ 39] [ 2] [00] +18:25:41 [ 70] [ 3] [301] +18:25:41 ============================================================================ +18:25:41 Calculate Source COMM Id = 2 +18:25:41 ============================================================================ +18:25:41 + + +waiting on router queue for slot.... +18:25:52 ============================================================================ +18:25:52 Slot Id : <29> +18:25:52 Transaction Type : REQUEST +18:25:52 Received From : +18:25:52 ============================================================================ +18:25:52 FNo. Len. Field Value +18:25:52 ============================================================================ +18:25:52 [ 1] [ 4] [0800] +18:25:52 [ 7] [ 10] [0320112459] +18:25:52 [ 11] [ 6] [157699] +18:25:52 [ 70] [ 3] [301] +18:25:52 ============================================================================ +18:25:52 + + +waiting on router queue for slot.... +18:25:52 Sending to : +18:25:52 ============================================================================ +18:25:52 ============================================================================ +18:25:52 Slot Id : <29> +18:25:52 Transaction Type : RESPONSE +18:25:52 Received From : +18:25:52 ============================================================================ +18:25:52 FNo. Len. Field Value +18:25:52 ============================================================================ +18:25:52 [ 1] [ 4] [0810] +18:25:52 [ 7] [ 10] [0320112459] +18:25:52 [ 11] [ 6] [157699] +18:25:52 [ 39] [ 2] [00] +18:25:52 [ 70] [ 3] [301] +18:25:52 ============================================================================ +18:25:52 Calculate Source COMM Id = 2 +18:25:52 ============================================================================ +18:25:52 + + +waiting on router queue for slot.... +18:25:54 ============================================================================ +18:25:54 Slot Id : <10> +18:25:54 Transaction Type : REQUEST +18:25:54 Received From : +18:25:54 ============================================================================ +18:25:54 FNo. Len. Field Value +18:25:54 ============================================================================ +18:25:54 [ 1] [ 4] [0200] +18:25:54 [ 2] [ 16] [6688990700194200] +18:25:54 [ 3] [ 6] [010000] +18:25:54 [ 4] [ 12] [000050000000] +18:25:54 [ 7] [ 10] [0320182549] +18:25:54 [ 11] [ 6] [827282] +18:25:54 [ 12] [ 6] [182549] +18:25:54 [ 13] [ 4] [0320] +18:25:54 [ 15] [ 4] [0320] +18:25:54 [ 18] [ 4] [6011] +18:25:54 [ 22] [ 3] [900] +18:25:54 [ 25] [ 2] [02] +18:25:54 [ 28] [ 9] [D00002000] +18:25:54 [ 32] [ 6] [621354] +18:25:54 [ 35] [ 37] [6688990700194200=43060071420011800000] +18:25:54 [ 37] [ 12] [507904470597] +18:25:54 [ 41] [ 8] [15000900] +18:25:54 [ 42] [ 15] [NATIVE ] +18:25:54 [ 43] [ 40] [Xokxay Hotel Pakson LAO] +18:25:54 [ 49] [ 3] [418] +18:25:54 [ 52] [ 16] [3C172191A8C42991] +18:25:54 ============================================================================ +18:25:54 + + +waiting on router queue for slot.... +18:25:54 Sending to : +18:25:54 ============================================================================ +18:25:54 Sending to : +18:25:54 ============================================================================ +18:25:55 ============================================================================ +18:25:55 Slot Id : <10> +18:25:55 Transaction Type : REQUEST +18:25:55 Received From : +18:25:55 ============================================================================ +18:25:55 FNo. Len. Field Value +18:25:55 ============================================================================ +18:25:55 [ 1] [ 4] [0200] +18:25:55 [ 2] [ 16] [6688990700194200] +18:25:55 [ 3] [ 6] [010000] +18:25:55 [ 4] [ 12] [000050000000] +18:25:55 [ 7] [ 10] [0320182549] +18:25:55 [ 11] [ 6] [827282] +18:25:55 [ 12] [ 6] [182549] +18:25:55 [ 13] [ 4] [0320] +18:25:55 [ 15] [ 4] [0320] +18:25:55 [ 18] [ 4] [6011] +18:25:55 [ 22] [ 3] [900] +18:25:55 [ 25] [ 2] [02] +18:25:55 [ 28] [ 9] [D00002000] +18:25:55 [ 32] [ 6] [621354] +18:25:55 [ 35] [ 37] [6688990700194200=43060071420011800000] +18:25:55 [ 37] [ 12] [507904470597] +18:25:55 [ 41] [ 8] [15000900] +18:25:55 [ 42] [ 15] [NATIVE ] +18:25:55 [ 43] [ 40] [Xokxay Hotel Pakson LAO] +18:25:55 [ 49] [ 3] [418] +18:25:55 [ 52] [ 16] [3C172191A8C42991] +18:25:55 ============================================================================ +18:25:55 + + +waiting on router queue for slot.... +18:25:55 Sending to : +18:25:55 ============================================================================ +18:25:55 ============================================================================ +18:25:55 Slot Id : <10> +18:25:55 Transaction Type : REQUEST +18:25:55 Received From : +18:25:55 ============================================================================ +18:25:55 FNo. Len. Field Value +18:25:55 ============================================================================ +18:25:55 [ 1] [ 4] [0200] +18:25:55 [ 2] [ 16] [6688990700194200] +18:25:55 [ 3] [ 6] [010000] +18:25:55 [ 4] [ 12] [000050000000] +18:25:55 [ 7] [ 10] [0320182549] +18:25:55 [ 11] [ 6] [827282] +18:25:55 [ 12] [ 6] [182549] +18:25:55 [ 13] [ 4] [0320] +18:25:55 [ 15] [ 4] [0320] +18:25:55 [ 18] [ 4] [6011] +18:25:55 [ 22] [ 3] [900] +18:25:55 [ 25] [ 2] [02] +18:25:55 [ 28] [ 9] [D00002000] +18:25:55 [ 32] [ 6] [621354] +18:25:55 [ 35] [ 37] [6688990700194200=43060071420011800000] +18:25:55 [ 37] [ 12] [507904470597] +18:25:55 [ 41] [ 8] [15000900] +18:25:55 [ 42] [ 15] [NATIVE ] +18:25:55 [ 43] [ 40] [Xokxay Hotel Pakson LAO] +18:25:55 [ 49] [ 3] [418] +18:25:55 [ 52] [ 16] [68CABFF5CC749D64] +18:25:55 ============================================================================ +18:25:55 + + +waiting on router queue for slot.... +18:25:55 Sending to : <4> +18:25:55 ============================================================================ +18:25:56 ============================================================================ +18:25:56 Slot Id : <10> +18:25:56 Transaction Type : RESPONSE +18:25:56 Received From : +18:25:56 ============================================================================ +18:25:56 FNo. Len. Field Value +18:25:56 ============================================================================ +18:25:56 [ 1] [ 4] [0210] +18:25:56 [ 2] [ 16] [6688990700194200] +18:25:56 [ 3] [ 6] [010000] +18:25:56 [ 4] [ 12] [000050000000] +18:25:56 [ 11] [ 6] [827282] +18:25:56 [ 12] [ 6] [182549] +18:25:56 [ 15] [ 4] [0320] +18:25:56 [ 18] [ 4] [6011] +18:25:56 [ 32] [ 6] [621354] +18:25:56 [ 35] [ 37] [6688990700194200=43060071420011800000] +18:25:56 [ 37] [ 12] [507904470597] +18:25:56 [ 38] [ 6] [883532] +18:25:56 [ 39] [ 2] [00] +18:25:56 [ 41] [ 8] [15000900] +18:25:56 [ 49] [ 3] [418] +18:25:56 [ 54] [ 20] [0002418C001444188596] +18:25:56 ============================================================================ +18:25:56 Sending to : +18:25:56 ============================================================================ +18:25:56 + + +waiting on router queue for slot.... +18:25:56 ============================================================================ +18:25:56 Slot Id : <499> +18:25:56 Transaction Type : REQUEST +18:25:56 Received From : +18:25:56 ============================================================================ +18:25:56 FNo. Len. Field Value +18:25:56 ============================================================================ +18:25:56 [ 1] [ 4] [0200] +18:25:56 [ 2] [ 16] [1808930300018231] +18:25:56 [ 3] [ 6] [301000] +18:25:56 [ 4] [ 12] [000000000000] +18:25:56 [ 7] [ 10] [0320182551] +18:25:56 [ 11] [ 6] [827284] +18:25:56 [ 12] [ 6] [182551] +18:25:56 [ 13] [ 4] [0320] +18:25:56 [ 15] [ 4] [0320] +18:25:56 [ 18] [ 4] [6011] +18:25:56 [ 22] [ 3] [900] +18:25:56 [ 25] [ 2] [02] +18:25:56 [ 28] [ 9] [D00000000] +18:25:56 [ 32] [ 6] [621354] +18:25:56 [ 35] [ 27] [1808930300018231=1803500682] +18:25:56 [ 37] [ 12] [507903961867] +18:25:56 [ 41] [ 8] [01011200] +18:25:56 [ 42] [ 15] [NATIVE ] +18:25:56 [ 43] [ 40] [Dongkhamxang Hatxaifong LAO] +18:25:56 [ 49] [ 3] [418] +18:25:56 [ 52] [ 16] [9A975A047F84AB82] +18:25:56 ============================================================================ +18:25:56 + + +waiting on router queue for slot.... +18:25:56 Sending to : +18:25:56 ============================================================================ +18:25:56 Sending to : +18:25:56 ============================================================================ +18:25:56 ============================================================================ +18:25:56 Slot Id : <499> +18:25:56 Transaction Type : REQUEST +18:25:56 Received From : +18:25:56 ============================================================================ +18:25:56 FNo. Len. Field Value +18:25:56 ============================================================================ +18:25:56 [ 1] [ 4] [0200] +18:25:56 [ 2] [ 16] [1808930300018231] +18:25:56 [ 3] [ 6] [301000] +18:25:56 [ 4] [ 12] [000000000000] +18:25:56 [ 7] [ 10] [0320182551] +18:25:56 [ 11] [ 6] [827284] +18:25:56 [ 12] [ 6] [182551] +18:25:56 [ 13] [ 4] [0320] +18:25:56 [ 15] [ 4] [0320] +18:25:56 [ 18] [ 4] [6011] +18:25:56 [ 22] [ 3] [900] +18:25:56 [ 25] [ 2] [02] +18:25:56 [ 28] [ 9] [D00000000] +18:25:56 [ 32] [ 6] [621354] +18:25:56 [ 35] [ 27] [1808930300018231=1803500682] +18:25:56 [ 37] [ 12] [507903961867] +18:25:56 [ 41] [ 8] [01011200] +18:25:56 [ 42] [ 15] [NATIVE ] +18:25:56 [ 43] [ 40] [Dongkhamxang Hatxaifong LAO] +18:25:56 [ 49] [ 3] [418] +18:25:56 [ 52] [ 16] [9A975A047F84AB82] +18:25:56 ============================================================================ +18:25:56 + + +waiting on router queue for slot.... +18:25:56 Sending to : +18:25:56 ============================================================================ +18:25:57 ============================================================================ +18:25:57 Slot Id : <499> +18:25:57 Transaction Type : REQUEST +18:25:57 Received From : +18:25:57 ============================================================================ +18:25:57 FNo. Len. Field Value +18:25:57 ============================================================================ +18:25:57 [ 1] [ 4] [0200] +18:25:57 [ 2] [ 16] [1808930300018231] +18:25:57 [ 3] [ 6] [301000] +18:25:57 [ 4] [ 12] [000000000000] +18:25:57 [ 7] [ 10] [0320182551] +18:25:57 [ 11] [ 6] [827284] +18:25:57 [ 12] [ 6] [182551] +18:25:57 [ 13] [ 4] [0320] +18:25:57 [ 15] [ 4] [0320] +18:25:57 [ 18] [ 4] [6011] +18:25:57 [ 22] [ 3] [900] +18:25:57 [ 25] [ 2] [02] +18:25:57 [ 28] [ 9] [D00000000] +18:25:57 [ 32] [ 6] [621354] +18:25:57 [ 35] [ 27] [1808930300018231=1803500682] +18:25:57 [ 37] [ 12] [507903961867] +18:25:57 [ 41] [ 8] [01011200] +18:25:57 [ 42] [ 15] [NATIVE ] +18:25:57 [ 43] [ 40] [Dongkhamxang Hatxaifong LAO] +18:25:57 [ 49] [ 3] [418] +18:25:57 [ 52] [ 16] [EAB0853DFB8610F9] +18:25:57 ============================================================================ +18:25:57 + + +waiting on router queue for slot.... +18:25:57 Sending to : <2> +18:25:57 ============================================================================ +18:25:57 ============================================================================ +18:25:57 Slot Id : <10> +18:25:57 Transaction Type : RESPONSE +18:25:57 Received From : +18:25:57 ============================================================================ +18:25:57 FNo. Len. Field Value +18:25:57 ============================================================================ +18:25:57 [ 1] [ 4] [0210] +18:25:57 [ 2] [ 16] [6688990700194200] +18:25:57 [ 3] [ 6] [010000] +18:25:57 [ 4] [ 12] [000050000000] +18:25:57 [ 11] [ 6] [827282] +18:25:57 [ 12] [ 6] [182549] +18:25:57 [ 15] [ 4] [0320] +18:25:57 [ 18] [ 4] [6011] +18:25:57 [ 32] [ 6] [621354] +18:25:57 [ 35] [ 37] [6688990700194200=43060071420011800000] +18:25:57 [ 37] [ 12] [507904470597] +18:25:57 [ 38] [ 6] [883532] +18:25:57 [ 39] [ 2] [00] +18:25:57 [ 41] [ 8] [15000900] +18:25:57 [ 49] [ 3] [418] +18:25:57 [ 54] [ 20] [0002418C001444188596] +18:25:57 ============================================================================ +18:25:57 Calculate Source COMM Id = 0 +18:25:57 ============================================================================ +18:25:57 + + +waiting on router queue for slot.... +18:25:58 ============================================================================ +18:25:58 Slot Id : <499> +18:25:58 Transaction Type : RESPONSE +18:25:58 Received From : +18:25:58 ============================================================================ +18:25:58 FNo. Len. Field Value +18:25:58 ============================================================================ +18:25:58 [ 1] [ 4] [0210] +18:25:58 [ 2] [ 16] [1808930300018231] +18:25:58 [ 3] [ 6] [301000] +18:25:58 [ 7] [ 10] [0320182551] +18:25:58 [ 11] [ 6] [827284] +18:25:58 [ 12] [ 6] [182551] +18:25:58 [ 13] [ 4] [0320] +18:25:58 [ 14] [ 4] [1803] +18:25:58 [ 19] [ 3] [418] +18:25:58 [ 32] [ 6] [621354] +18:25:58 [ 37] [ 12] [507903961867] +18:25:58 [ 38] [ 6] [827284] +18:25:58 [ 39] [ 2] [00] +18:25:58 [ 41] [ 8] [01011200] +18:25:58 [ 49] [ 3] [418] +18:25:58 [ 52] [ 16] [EAB0853DFB8610F9] +18:25:58 [ 54] [ 20] [1002418C000007484700] +18:25:58 ============================================================================ +18:25:58 Sending to : +18:25:58 ============================================================================ +18:25:58 + + +waiting on router queue for slot.... +18:25:59 ============================================================================ +18:25:59 Slot Id : <499> +18:25:59 Transaction Type : RESPONSE +18:25:59 Received From : +18:25:59 ============================================================================ +18:25:59 FNo. Len. Field Value +18:25:59 ============================================================================ +18:25:59 [ 1] [ 4] [0210] +18:25:59 [ 2] [ 16] [1808930300018231] +18:25:59 [ 3] [ 6] [301000] +18:25:59 [ 7] [ 10] [0320182551] +18:25:59 [ 11] [ 6] [827284] +18:25:59 [ 12] [ 6] [182551] +18:25:59 [ 13] [ 4] [0320] +18:25:59 [ 14] [ 4] [1803] +18:25:59 [ 19] [ 3] [418] +18:25:59 [ 32] [ 6] [621354] +18:25:59 [ 37] [ 12] [507903961867] +18:25:59 [ 38] [ 6] [827284] +18:25:59 [ 39] [ 2] [00] +18:25:59 [ 41] [ 8] [01011200] +18:25:59 [ 49] [ 3] [418] +18:25:59 [ 52] [ 16] [EAB0853DFB8610F9] +18:25:59 [ 54] [ 20] [1002418C000007484700] +18:25:59 ============================================================================ +18:25:59 Calculate Source COMM Id = 0 +18:25:59 ============================================================================ +18:25:59 + + +waiting on router queue for slot.... +18:26:01 ============================================================================ +18:26:01 Slot Id : <481> +18:26:01 Transaction Type : REQUEST +18:26:01 Received From : +18:26:01 ============================================================================ +18:26:01 FNo. Len. Field Value +18:26:01 ============================================================================ +18:26:01 [ 1] [ 4] [0200] +18:26:01 [ 2] [ 16] [1808931800017269] +18:26:01 [ 3] [ 6] [010000] +18:26:01 [ 4] [ 12] [000050000000] +18:26:01 [ 7] [ 10] [0320182556] +18:26:01 [ 11] [ 6] [827296] +18:26:01 [ 12] [ 6] [182556] +18:26:01 [ 13] [ 4] [0320] +18:26:01 [ 15] [ 4] [0320] +18:26:01 [ 18] [ 4] [6011] +18:26:01 [ 22] [ 3] [900] +18:26:01 [ 25] [ 2] [02] +18:26:01 [ 28] [ 9] [D00002000] +18:26:01 [ 32] [ 6] [621354] +18:26:01 [ 35] [ 27] [1808931800017269=1803500108] +18:26:01 [ 37] [ 12] [507904653869] +18:26:01 [ 41] [ 8] [17001000] +18:26:01 [ 42] [ 15] [NATIVE ] +18:26:01 [ 43] [ 40] [Sum Market Samneua LAO] +18:26:01 [ 49] [ 3] [418] +18:26:01 [ 52] [ 16] [35F813462DED028C] +18:26:01 ============================================================================ +18:26:01 + + +waiting on router queue for slot.... +18:26:01 Sending to : +18:26:01 ============================================================================ +18:26:01 Sending to : +18:26:01 ============================================================================ +18:26:01 ============================================================================ +18:26:01 Slot Id : <481> +18:26:01 Transaction Type : REQUEST +18:26:01 Received From : +18:26:01 ============================================================================ +18:26:01 FNo. Len. Field Value +18:26:01 ============================================================================ +18:26:01 [ 1] [ 4] [0200] +18:26:01 [ 2] [ 16] [1808931800017269] +18:26:01 [ 3] [ 6] [010000] +18:26:01 [ 4] [ 12] [000050000000] +18:26:01 [ 7] [ 10] [0320182556] +18:26:01 [ 11] [ 6] [827296] +18:26:01 [ 12] [ 6] [182556] +18:26:01 [ 13] [ 4] [0320] +18:26:01 [ 15] [ 4] [0320] +18:26:01 [ 18] [ 4] [6011] +18:26:01 [ 22] [ 3] [900] +18:26:01 [ 25] [ 2] [02] +18:26:01 [ 28] [ 9] [D00002000] +18:26:01 [ 32] [ 6] [621354] +18:26:01 [ 35] [ 27] [1808931800017269=1803500108] +18:26:01 [ 37] [ 12] [507904653869] +18:26:01 [ 41] [ 8] [17001000] +18:26:01 [ 42] [ 15] [NATIVE ] +18:26:01 [ 43] [ 40] [Sum Market Samneua LAO] +18:26:01 [ 49] [ 3] [418] +18:26:01 [ 52] [ 16] [35F813462DED028C] +18:26:01 ============================================================================ +18:26:01 + + +waiting on router queue for slot.... +18:26:01 Sending to : +18:26:01 ============================================================================ +18:26:01 ============================================================================ +18:26:01 Slot Id : <481> +18:26:01 Transaction Type : REQUEST +18:26:01 Received From : +18:26:01 ============================================================================ +18:26:01 FNo. Len. Field Value +18:26:01 ============================================================================ +18:26:01 [ 1] [ 4] [0200] +18:26:01 [ 2] [ 16] [1808931800017269] +18:26:01 [ 3] [ 6] [010000] +18:26:01 [ 4] [ 12] [000050000000] +18:26:01 [ 7] [ 10] [0320182556] +18:26:01 [ 11] [ 6] [827296] +18:26:01 [ 12] [ 6] [182556] +18:26:01 [ 13] [ 4] [0320] +18:26:01 [ 15] [ 4] [0320] +18:26:01 [ 18] [ 4] [6011] +18:26:01 [ 22] [ 3] [900] +18:26:01 [ 25] [ 2] [02] +18:26:01 [ 28] [ 9] [D00002000] +18:26:01 [ 32] [ 6] [621354] +18:26:01 [ 35] [ 27] [1808931800017269=1803500108] +18:26:01 [ 37] [ 12] [507904653869] +18:26:01 [ 41] [ 8] [17001000] +18:26:01 [ 42] [ 15] [NATIVE ] +18:26:01 [ 43] [ 40] [Sum Market Samneua LAO] +18:26:01 [ 49] [ 3] [418] +18:26:01 [ 52] [ 16] [FC9D251F1F3BB0DC] +18:26:01 ============================================================================ +18:26:01 + + +waiting on router queue for slot.... +18:26:01 Sending to : <2> +18:26:01 ============================================================================ +18:26:03 ============================================================================ +18:26:03 Slot Id : <23> +18:26:03 Transaction Type : REQUEST +18:26:03 Received From : +18:26:03 ============================================================================ +18:26:03 FNo. Len. Field Value +18:26:03 ============================================================================ +18:26:03 [ 1] [ 4] [0800] +18:26:03 [ 7] [ 10] [0321013752] +18:26:03 [ 11] [ 6] [183752] +18:26:03 [ 37] [ 12] [57918183752] +18:26:03 [ 70] [ 3] [301] +18:26:03 ============================================================================ +18:26:03 + + +waiting on router queue for slot.... +18:26:03 Sending to : +18:26:03 ============================================================================ +18:26:03 ============================================================================ +18:26:03 Slot Id : <23> +18:26:03 Transaction Type : RESPONSE +18:26:03 Received From : +18:26:03 ============================================================================ +18:26:03 FNo. Len. Field Value +18:26:03 ============================================================================ +18:26:03 [ 1] [ 4] [0810] +18:26:03 [ 7] [ 10] [0321013752] +18:26:03 [ 11] [ 6] [183752] +18:26:03 [ 37] [ 12] [579181837520] +18:26:03 [ 39] [ 2] [00] +18:26:03 [ 70] [ 3] [810] +18:26:03 ============================================================================ +18:26:03 Calculate Source COMM Id = 6 +18:26:03 ============================================================================ +18:26:03 + + +waiting on router queue for slot.... +18:26:05 ============================================================================ +18:26:05 Slot Id : <481> +18:26:05 Transaction Type : RESPONSE +18:26:05 Received From : +18:26:05 ============================================================================ +18:26:05 FNo. Len. Field Value +18:26:05 ============================================================================ +18:26:05 [ 1] [ 4] [0210] +18:26:05 [ 2] [ 16] [1808931800017269] +18:26:05 [ 3] [ 6] [010000] +18:26:05 [ 4] [ 12] [000050000000] +18:26:05 [ 6] [ 12] [000050000000] +18:26:05 [ 7] [ 10] [0320182556] +18:26:05 [ 11] [ 6] [827296] +18:26:05 [ 12] [ 6] [182556] +18:26:05 [ 13] [ 4] [0320] +18:26:05 [ 18] [ 4] [6011] +18:26:05 [ 19] [ 3] [418] +18:26:05 [ 22] [ 3] [021] +18:26:05 [ 32] [ 6] [621354] +18:26:05 [ 35] [ 27] [1808931800017269=1803500108] +18:26:05 [ 37] [ 12] [507904653869] +18:26:05 [ 38] [ 6] [827296] +18:26:05 [ 39] [ 2] [00] +18:26:05 [ 41] [ 8] [17001000] +18:26:05 [ 49] [ 3] [418] +18:26:05 [ 52] [ 16] [FC9D251F1F3BB0DC] +18:26:05 [ 54] [ 20] [1001418C000097408800] +18:26:05 ============================================================================ +18:26:05 Sending to : +18:26:05 ============================================================================ +18:26:05 + + +waiting on router queue for slot.... +18:26:07 ============================================================================ +18:26:07 Slot Id : <481> +18:26:07 Transaction Type : RESPONSE +18:26:07 Received From : +18:26:07 ============================================================================ +18:26:07 FNo. Len. Field Value +18:26:07 ============================================================================ +18:26:07 [ 1] [ 4] [0210] +18:26:07 [ 2] [ 16] [1808931800017269] +18:26:07 [ 3] [ 6] [010000] +18:26:07 [ 4] [ 12] [000050000000] +18:26:07 [ 6] [ 12] [000050000000] +18:26:07 [ 7] [ 10] [0320182556] +18:26:07 [ 11] [ 6] [827296] +18:26:07 [ 12] [ 6] [182556] +18:26:07 [ 13] [ 4] [0320] +18:26:07 [ 18] [ 4] [6011] +18:26:07 [ 19] [ 3] [418] +18:26:07 [ 22] [ 3] [021] +18:26:07 [ 32] [ 6] [621354] +18:26:07 [ 35] [ 27] [1808931800017269=1803500108] +18:26:07 [ 37] [ 12] [507904653869] +18:26:07 [ 38] [ 6] [827296] +18:26:07 [ 39] [ 2] [00] +18:26:07 [ 41] [ 8] [17001000] +18:26:07 [ 49] [ 3] [418] +18:26:07 [ 52] [ 16] [FC9D251F1F3BB0DC] +18:26:07 [ 54] [ 20] [1001418C000097408800] +18:26:07 ============================================================================ +18:26:07 Calculate Source COMM Id = 0 +18:26:07 ============================================================================ +18:26:07 + + +waiting on router queue for slot.... +18:26:08 ============================================================================ +18:26:08 Slot Id : <31> +18:26:08 Transaction Type : REQUEST +18:26:08 Received From : +18:26:08 ============================================================================ +18:26:08 FNo. Len. Field Value +18:26:08 ============================================================================ +18:26:08 [ 1] [ 4] [0200] +18:26:08 [ 2] [ 16] [6688990040131409] +18:26:08 [ 3] [ 6] [011000] +18:26:08 [ 4] [ 12] [000020000000] +18:26:08 [ 7] [ 10] [0320182602] +18:26:08 [ 11] [ 6] [827320] +18:26:08 [ 12] [ 6] [182602] +18:26:08 [ 13] [ 4] [0320] +18:26:08 [ 15] [ 4] [0320] +18:26:08 [ 18] [ 4] [6011] +18:26:08 [ 22] [ 3] [900] +18:26:08 [ 25] [ 2] [02] +18:26:08 [ 28] [ 9] [D00002000] +18:26:08 [ 32] [ 6] [621354] +18:26:08 [ 35] [ 37] [6688990040131409=98041261670969800000] +18:26:08 [ 37] [ 12] [507903040600] +18:26:08 [ 41] [ 8] [01008400] +18:26:08 [ 42] [ 15] [NATIVE ] +18:26:08 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +18:26:08 [ 49] [ 3] [418] +18:26:08 [ 52] [ 16] [8CB1C0EC1FC3332E] +18:26:08 ============================================================================ +18:26:08 + + +waiting on router queue for slot.... +18:26:08 Sending to : +18:26:08 ============================================================================ +18:26:08 Sending to : +18:26:08 ============================================================================ +18:26:08 ============================================================================ +18:26:08 Slot Id : <31> +18:26:08 Transaction Type : REQUEST +18:26:08 Received From : +18:26:08 ============================================================================ +18:26:08 FNo. Len. Field Value +18:26:08 ============================================================================ +18:26:08 [ 1] [ 4] [0200] +18:26:08 [ 2] [ 16] [6688990040131409] +18:26:08 [ 3] [ 6] [011000] +18:26:08 [ 4] [ 12] [000020000000] +18:26:08 [ 7] [ 10] [0320182602] +18:26:08 [ 11] [ 6] [827320] +18:26:08 [ 12] [ 6] [182602] +18:26:08 [ 13] [ 4] [0320] +18:26:08 [ 15] [ 4] [0320] +18:26:08 [ 18] [ 4] [6011] +18:26:08 [ 22] [ 3] [900] +18:26:08 [ 25] [ 2] [02] +18:26:08 [ 28] [ 9] [D00002000] +18:26:08 [ 32] [ 6] [621354] +18:26:08 [ 35] [ 37] [6688990040131409=98041261670969800000] +18:26:08 [ 37] [ 12] [507903040600] +18:26:08 [ 41] [ 8] [01008400] +18:26:08 [ 42] [ 15] [NATIVE ] +18:26:08 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +18:26:08 [ 49] [ 3] [418] +18:26:08 [ 52] [ 16] [8CB1C0EC1FC3332E] +18:26:08 ============================================================================ +18:26:08 + + +waiting on router queue for slot.... +18:26:08 Sending to : +18:26:08 ============================================================================ +18:26:08 ============================================================================ +18:26:08 Slot Id : <31> +18:26:08 Transaction Type : REQUEST +18:26:08 Received From : +18:26:08 ============================================================================ +18:26:08 FNo. Len. Field Value +18:26:08 ============================================================================ +18:26:08 [ 1] [ 4] [0200] +18:26:08 [ 2] [ 16] [6688990040131409] +18:26:08 [ 3] [ 6] [011000] +18:26:08 [ 4] [ 12] [000020000000] +18:26:08 [ 7] [ 10] [0320182602] +18:26:08 [ 11] [ 6] [827320] +18:26:08 [ 12] [ 6] [182602] +18:26:08 [ 13] [ 4] [0320] +18:26:08 [ 15] [ 4] [0320] +18:26:08 [ 18] [ 4] [6011] +18:26:08 [ 22] [ 3] [900] +18:26:08 [ 25] [ 2] [02] +18:26:08 [ 28] [ 9] [D00002000] +18:26:08 [ 32] [ 6] [621354] +18:26:08 [ 35] [ 37] [6688990040131409=98041261670969800000] +18:26:08 [ 37] [ 12] [507903040600] +18:26:08 [ 41] [ 8] [01008400] +18:26:08 [ 42] [ 15] [NATIVE ] +18:26:08 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +18:26:08 [ 49] [ 3] [418] +18:26:08 [ 52] [ 16] [0FBDD4998DB8F768] +18:26:08 ============================================================================ +18:26:08 + + +waiting on router queue for slot.... +18:26:08 Sending to : <4> +18:26:08 ============================================================================ +18:26:09 ============================================================================ +18:26:09 Slot Id : <31> +18:26:09 Transaction Type : RESPONSE +18:26:09 Received From : +18:26:09 ============================================================================ +18:26:09 FNo. Len. Field Value +18:26:09 ============================================================================ +18:26:09 [ 1] [ 4] [0210] +18:26:09 [ 2] [ 16] [6688990040131409] +18:26:09 [ 3] [ 6] [011000] +18:26:09 [ 4] [ 12] [000020000000] +18:26:09 [ 11] [ 6] [827320] +18:26:09 [ 12] [ 6] [182602] +18:26:09 [ 15] [ 4] [0320] +18:26:09 [ 18] [ 4] [6011] +18:26:09 [ 32] [ 6] [621354] +18:26:09 [ 35] [ 37] [6688990040131409=98041261670969800000] +18:26:09 [ 37] [ 12] [507903040600] +18:26:09 [ 38] [ 6] [042250] +18:26:09 [ 39] [ 2] [00] +18:26:09 [ 41] [ 8] [01008400] +18:26:09 [ 49] [ 3] [418] +18:26:09 [ 54] [ 20] [1002418C000070297422] +18:26:09 ============================================================================ +18:26:09 Sending to : +18:26:09 ============================================================================ +18:26:09 + + +waiting on router queue for slot.... +18:26:10 ============================================================================ +18:26:10 Slot Id : <31> +18:26:10 Transaction Type : RESPONSE +18:26:10 Received From : +18:26:10 ============================================================================ +18:26:10 FNo. Len. Field Value +18:26:10 ============================================================================ +18:26:10 [ 1] [ 4] [0210] +18:26:10 [ 2] [ 16] [6688990040131409] +18:26:10 [ 3] [ 6] [011000] +18:26:10 [ 4] [ 12] [000020000000] +18:26:10 [ 11] [ 6] [827320] +18:26:10 [ 12] [ 6] [182602] +18:26:10 [ 15] [ 4] [0320] +18:26:10 [ 18] [ 4] [6011] +18:26:10 [ 32] [ 6] [621354] +18:26:10 [ 35] [ 37] [6688990040131409=98041261670969800000] +18:26:10 [ 37] [ 12] [507903040600] +18:26:10 [ 38] [ 6] [042250] +18:26:10 [ 39] [ 2] [00] +18:26:10 [ 41] [ 8] [01008400] +18:26:10 [ 49] [ 3] [418] +18:26:10 [ 54] [ 20] [1002418C000070297422] +18:26:10 ============================================================================ +18:26:10 Calculate Source COMM Id = 0 +18:26:10 ============================================================================ +18:26:10 + + +waiting on router queue for slot.... +18:26:13 ============================================================================ +18:26:13 Slot Id : <35> +18:26:13 Transaction Type : REQUEST +18:26:13 Received From : +18:26:13 ============================================================================ +18:26:13 FNo. Len. Field Value +18:26:13 ============================================================================ +18:26:13 [ 1] [ 4] [0800] +18:26:13 [ 7] [ 10] [0320112519] +18:26:13 [ 11] [ 6] [157700] +18:26:13 [ 70] [ 3] [301] +18:26:13 ============================================================================ +18:26:13 + + +waiting on router queue for slot.... +18:26:13 Sending to : +18:26:13 ============================================================================ +18:26:13 ============================================================================ +18:26:13 Slot Id : <35> +18:26:13 Transaction Type : RESPONSE +18:26:13 Received From : +18:26:13 ============================================================================ +18:26:13 FNo. Len. Field Value +18:26:13 ============================================================================ +18:26:13 [ 1] [ 4] [0810] +18:26:13 [ 7] [ 10] [0320112519] +18:26:13 [ 11] [ 6] [157700] +18:26:13 [ 39] [ 2] [00] +18:26:13 [ 70] [ 3] [301] +18:26:13 ============================================================================ +18:26:13 Calculate Source COMM Id = 2 +18:26:13 ============================================================================ +18:26:13 + + +waiting on router queue for slot.... +18:26:14 ============================================================================ +18:26:14 Slot Id : <3> +18:26:14 Transaction Type : REQUEST +18:26:14 Received From : +18:26:14 ============================================================================ +18:26:14 FNo. Len. Field Value +18:26:14 ============================================================================ +18:26:14 [ 1] [ 4] [0200] +18:26:14 [ 2] [ 16] [6213545000017057] +18:26:14 [ 3] [ 6] [010000] +18:26:14 [ 4] [ 12] [000020000000] +18:26:14 [ 7] [ 10] [0320182404] +18:26:14 [ 11] [ 6] [954689] +18:26:14 [ 12] [ 6] [182404] +18:26:14 [ 13] [ 4] [0320] +18:26:14 [ 15] [ 4] [0320] +18:26:14 [ 18] [ 4] [6011] +18:26:14 [ 19] [ 3] [418] +18:26:14 [ 22] [ 3] [021] +18:26:14 [ 25] [ 2] [01] +18:26:14 [ 28] [ 9] [D00002000] +18:26:14 [ 32] [ 6] [668899] +18:26:14 [ 35] [ 32] [6213545000017057=491212011705773] +18:26:14 [ 37] [ 12] [507902650473] +18:26:14 [ 41] [ 8] [03018006] +18:26:14 [ 42] [ 15] [APT ] +18:26:14 [ 43] [ 40] [ VOCATIONAL SCHOOL XAYSETT] +18:26:14 [ 49] [ 3] [418] +18:26:14 [ 52] [ 16] [4FD13F3A99FB08C0] +18:26:14 ============================================================================ +18:26:14 + + +waiting on router queue for slot.... +18:26:14 Sending to : +18:26:14 ============================================================================ +18:26:14 Sending to : +18:26:14 ============================================================================ +18:26:15 ============================================================================ +18:26:15 Slot Id : <3> +18:26:15 Transaction Type : REQUEST +18:26:15 Received From : +18:26:15 ============================================================================ +18:26:15 FNo. Len. Field Value +18:26:15 ============================================================================ +18:26:15 [ 1] [ 4] [0200] +18:26:15 [ 2] [ 16] [6213545000017057] +18:26:15 [ 3] [ 6] [010000] +18:26:15 [ 4] [ 12] [000020000000] +18:26:15 [ 7] [ 10] [0320182404] +18:26:15 [ 11] [ 6] [954689] +18:26:15 [ 12] [ 6] [182404] +18:26:15 [ 13] [ 4] [0320] +18:26:15 [ 15] [ 4] [0320] +18:26:15 [ 18] [ 4] [6011] +18:26:15 [ 19] [ 3] [418] +18:26:15 [ 22] [ 3] [021] +18:26:15 [ 25] [ 2] [01] +18:26:15 [ 28] [ 9] [D00002000] +18:26:15 [ 32] [ 6] [668899] +18:26:15 [ 35] [ 32] [6213545000017057=491212011705773] +18:26:15 [ 37] [ 12] [507902650473] +18:26:15 [ 41] [ 8] [03018006] +18:26:15 [ 42] [ 15] [APT ] +18:26:15 [ 43] [ 40] [ VOCATIONAL SCHOOL XAYSETT] +18:26:15 [ 49] [ 3] [418] +18:26:15 [ 52] [ 16] [4FD13F3A99FB08C0] +18:26:15 ============================================================================ +18:26:15 + + +waiting on router queue for slot.... +18:26:15 Sending to : +18:26:15 ============================================================================ +18:26:15 ============================================================================ +18:26:15 Slot Id : <3> +18:26:15 Transaction Type : REQUEST +18:26:15 Received From : +18:26:15 ============================================================================ +18:26:15 FNo. Len. Field Value +18:26:15 ============================================================================ +18:26:15 [ 1] [ 4] [0200] +18:26:15 [ 2] [ 16] [6213545000017057] +18:26:15 [ 3] [ 6] [010000] +18:26:15 [ 4] [ 12] [000020000000] +18:26:15 [ 7] [ 10] [0320182404] +18:26:15 [ 11] [ 6] [954689] +18:26:15 [ 12] [ 6] [182404] +18:26:15 [ 13] [ 4] [0320] +18:26:15 [ 15] [ 4] [0320] +18:26:15 [ 18] [ 4] [6011] +18:26:15 [ 19] [ 3] [418] +18:26:15 [ 22] [ 3] [021] +18:26:15 [ 25] [ 2] [01] +18:26:15 [ 28] [ 9] [D00002000] +18:26:15 [ 32] [ 6] [668899] +18:26:15 [ 35] [ 32] [6213545000017057=491212011705773] +18:26:15 [ 37] [ 12] [507902650473] +18:26:15 [ 41] [ 8] [03018006] +18:26:15 [ 42] [ 15] [APT ] +18:26:15 [ 43] [ 40] [ VOCATIONAL SCHOOL XAYSETT] +18:26:15 [ 49] [ 3] [418] +18:26:15 [ 52] [ 16] [5E8773E2F4427623] +18:26:15 ============================================================================ +18:26:15 + + +waiting on router queue for slot.... +18:26:15 Sending to : <0> +18:26:15 ============================================================================ +18:26:16 ============================================================================ +18:26:16 Slot Id : <3> +18:26:16 Transaction Type : RESPONSE +18:26:16 Received From : +18:26:16 ============================================================================ +18:26:16 FNo. Len. Field Value +18:26:16 ============================================================================ +18:26:16 [ 1] [ 4] [0210] +18:26:16 [ 2] [ 16] [6213545000017057] +18:26:16 [ 3] [ 6] [010000] +18:26:16 [ 4] [ 12] [000020000000] +18:26:16 [ 7] [ 10] [0320182404] +18:26:16 [ 11] [ 6] [954689] +18:26:16 [ 12] [ 6] [182404] +18:26:16 [ 13] [ 4] [0320] +18:26:16 [ 15] [ 4] [0320] +18:26:16 [ 18] [ 4] [6011] +18:26:16 [ 19] [ 3] [418] +18:26:16 [ 32] [ 6] [668899] +18:26:16 [ 35] [ 32] [6213545000017057=491212011705773] +18:26:16 [ 37] [ 12] [507902650473] +18:26:16 [ 38] [ 6] [184279] +18:26:16 [ 39] [ 2] [00] +18:26:16 [ 41] [ 8] [03018006] +18:26:16 [ 49] [ 3] [418] +18:26:16 [ 54] [ 40] [0001418C0000269864820002418C000026986482] +18:26:16 ============================================================================ +18:26:16 Sending to : +18:26:16 ============================================================================ +18:26:16 + + +waiting on router queue for slot.... +18:26:16 ============================================================================ +18:26:16 Slot Id : <11> +18:26:16 Transaction Type : REQUEST +18:26:16 Received From : +18:26:16 ============================================================================ +18:26:16 FNo. Len. Field Value +18:26:16 ============================================================================ +18:26:16 [ 1] [ 4] [0200] +18:26:16 [ 2] [ 16] [1808931100008893] +18:26:16 [ 3] [ 6] [010000] +18:26:16 [ 4] [ 12] [000005000000] +18:26:16 [ 7] [ 10] [0320182611] +18:26:16 [ 11] [ 6] [827344] +18:26:16 [ 12] [ 6] [182611] +18:26:16 [ 13] [ 4] [0320] +18:26:16 [ 15] [ 4] [0320] +18:26:16 [ 18] [ 4] [6011] +18:26:16 [ 22] [ 3] [900] +18:26:16 [ 25] [ 2] [02] +18:26:16 [ 28] [ 9] [D00002000] +18:26:16 [ 32] [ 6] [621354] +18:26:16 [ 35] [ 27] [1808931100008893=1803500206] +18:26:16 [ 37] [ 12] [507904559822] +18:26:16 [ 41] [ 8] [02001800] +18:26:16 [ 42] [ 15] [NATIVE ] +18:26:16 [ 43] [ 40] [Bus Station Khm Thakek LAO] +18:26:16 [ 49] [ 3] [418] +18:26:16 [ 52] [ 16] [61667B712DEFA954] +18:26:16 ============================================================================ +18:26:16 + + +waiting on router queue for slot.... +18:26:16 Sending to : +18:26:16 ============================================================================ +18:26:16 Sending to : +18:26:16 ============================================================================ +18:26:17 ============================================================================ +18:26:17 Slot Id : <11> +18:26:17 Transaction Type : REQUEST +18:26:17 Received From : +18:26:17 ============================================================================ +18:26:17 FNo. Len. Field Value +18:26:17 ============================================================================ +18:26:17 [ 1] [ 4] [0200] +18:26:17 [ 2] [ 16] [1808931100008893] +18:26:17 [ 3] [ 6] [010000] +18:26:17 [ 4] [ 12] [000005000000] +18:26:17 [ 7] [ 10] [0320182611] +18:26:17 [ 11] [ 6] [827344] +18:26:17 [ 12] [ 6] [182611] +18:26:17 [ 13] [ 4] [0320] +18:26:17 [ 15] [ 4] [0320] +18:26:17 [ 18] [ 4] [6011] +18:26:17 [ 22] [ 3] [900] +18:26:17 [ 25] [ 2] [02] +18:26:17 [ 28] [ 9] [D00002000] +18:26:17 [ 32] [ 6] [621354] +18:26:17 [ 35] [ 27] [1808931100008893=1803500206] +18:26:17 [ 37] [ 12] [507904559822] +18:26:17 [ 41] [ 8] [02001800] +18:26:17 [ 42] [ 15] [NATIVE ] +18:26:17 [ 43] [ 40] [Bus Station Khm Thakek LAO] +18:26:17 [ 49] [ 3] [418] +18:26:17 [ 52] [ 16] [61667B712DEFA954] +18:26:17 ============================================================================ +18:26:17 + + +waiting on router queue for slot.... +18:26:17 Sending to : +18:26:17 ============================================================================ +18:26:17 ============================================================================ +18:26:17 Slot Id : <11> +18:26:17 Transaction Type : REQUEST +18:26:17 Received From : +18:26:17 ============================================================================ +18:26:17 FNo. Len. Field Value +18:26:17 ============================================================================ +18:26:17 [ 1] [ 4] [0200] +18:26:17 [ 2] [ 16] [1808931100008893] +18:26:17 [ 3] [ 6] [010000] +18:26:17 [ 4] [ 12] [000005000000] +18:26:17 [ 7] [ 10] [0320182611] +18:26:17 [ 11] [ 6] [827344] +18:26:17 [ 12] [ 6] [182611] +18:26:17 [ 13] [ 4] [0320] +18:26:17 [ 15] [ 4] [0320] +18:26:17 [ 18] [ 4] [6011] +18:26:17 [ 22] [ 3] [900] +18:26:17 [ 25] [ 2] [02] +18:26:17 [ 28] [ 9] [D00002000] +18:26:17 [ 32] [ 6] [621354] +18:26:17 [ 35] [ 27] [1808931100008893=1803500206] +18:26:17 [ 37] [ 12] [507904559822] +18:26:17 [ 41] [ 8] [02001800] +18:26:17 [ 42] [ 15] [NATIVE ] +18:26:17 [ 43] [ 40] [Bus Station Khm Thakek LAO] +18:26:17 [ 49] [ 3] [418] +18:26:17 [ 52] [ 16] [85A1C4DC05836DDE] +18:26:17 ============================================================================ +18:26:17 + + +waiting on router queue for slot.... +18:26:17 Sending to : <2> +18:26:17 ============================================================================ +18:26:17 ============================================================================ +18:26:17 Slot Id : <3> +18:26:17 Transaction Type : RESPONSE +18:26:17 Received From : +18:26:17 ============================================================================ +18:26:17 FNo. Len. Field Value +18:26:17 ============================================================================ +18:26:17 [ 1] [ 4] [0210] +18:26:17 [ 2] [ 16] [6213545000017057] +18:26:17 [ 3] [ 6] [010000] +18:26:17 [ 4] [ 12] [000020000000] +18:26:17 [ 7] [ 10] [0320182404] +18:26:17 [ 11] [ 6] [954689] +18:26:17 [ 12] [ 6] [182404] +18:26:17 [ 13] [ 4] [0320] +18:26:17 [ 15] [ 4] [0320] +18:26:17 [ 18] [ 4] [6011] +18:26:17 [ 19] [ 3] [418] +18:26:17 [ 32] [ 6] [668899] +18:26:17 [ 35] [ 32] [6213545000017057=491212011705773] +18:26:17 [ 37] [ 12] [507902650473] +18:26:17 [ 38] [ 6] [184279] +18:26:17 [ 39] [ 2] [00] +18:26:17 [ 41] [ 8] [03018006] +18:26:17 [ 49] [ 3] [418] +18:26:17 [ 54] [ 40] [0001418C0000269864820002418C000026986482] +18:26:17 ============================================================================ +18:26:17 Calculate Source COMM Id = 4 +18:26:17 ============================================================================ +18:26:17 + + +waiting on router queue for slot.... +18:26:19 ============================================================================ +18:26:19 Slot Id : <496> +18:26:19 Transaction Type : REQUEST +18:26:19 Received From : +18:26:19 ============================================================================ +18:26:19 FNo. Len. Field Value +18:26:19 ============================================================================ +18:26:19 [ 1] [ 4] [0800] +18:26:19 [ 2] [ 5] [02531] +18:26:19 [ 3] [ 6] [579188] +18:26:19 [ 7] [ 10] [0320112619] +18:26:19 [ 11] [ 6] [807482] +18:26:19 [ 15] [ 10] [0320112619] +18:26:19 [ 37] [ 11] [57918807482] +18:26:19 [ 70] [ 3] [001] +18:26:19 ============================================================================ +18:26:19 + + +waiting on router queue for slot.... +18:26:19 ============================================================================ +18:26:19 Slot Id : <496> +18:26:19 Transaction Type : RESPONSE +18:26:19 Received From : +18:26:19 ============================================================================ +18:26:19 FNo. Len. Field Value +18:26:19 ============================================================================ +18:26:19 [ 1] [ 4] [0810] +18:26:19 [ 7] [ 10] [0320112619] +18:26:19 [ 11] [ 6] [807482] +18:26:19 [ 15] [ 4] [0320] +18:26:19 [ 37] [ 12] [57918807482] +18:26:19 [ 39] [ 2] [00] +18:26:19 [ 70] [ 3] [001] +18:26:19 ============================================================================ +18:26:19 Sending to : +18:26:19 ============================================================================ +18:26:19 + + +waiting on router queue for slot.... +18:26:22 ============================================================================ +18:26:22 Slot Id : <33> +18:26:22 Transaction Type : REQUEST +18:26:22 Received From : +18:26:22 ============================================================================ +18:26:22 FNo. Len. Field Value +18:26:22 ============================================================================ +18:26:22 [ 1] [ 4] [0800] +18:26:22 [ 7] [ 10] [0320112412] +18:26:22 [ 11] [ 6] [013359] +18:26:22 [ 37] [ 12] [57918013359] +18:26:22 [ 70] [ 3] [301] +18:26:22 ============================================================================ +18:26:22 + + +waiting on router queue for slot.... +18:26:22 Sending to : +18:26:22 ============================================================================ +18:26:22 ============================================================================ +18:26:22 Slot Id : <33> +18:26:22 Transaction Type : RESPONSE +18:26:22 Received From : +18:26:22 ============================================================================ +18:26:22 FNo. Len. Field Value +18:26:22 ============================================================================ +18:26:22 [ 1] [ 4] [0810] +18:26:22 [ 7] [ 10] [0320112412] +18:26:22 [ 11] [ 6] [013359] +18:26:22 [ 37] [ 12] [579180133590] +18:26:22 [ 39] [ 2] [00] +18:26:22 [ 70] [ 3] [810] +18:26:22 ============================================================================ +18:26:22 Calculate Source COMM Id = 4 +18:26:22 ============================================================================ +18:26:22 + + +waiting on router queue for slot.... +18:26:24 ============================================================================ +18:26:24 Slot Id : <11> +18:26:24 Transaction Type : RESPONSE +18:26:24 Received From : +18:26:24 ============================================================================ +18:26:24 FNo. Len. Field Value +18:26:24 ============================================================================ +18:26:24 [ 1] [ 4] [0210] +18:26:24 [ 2] [ 16] [1808931100008893] +18:26:24 [ 3] [ 6] [010000] +18:26:24 [ 4] [ 12] [000005000000] +18:26:24 [ 6] [ 12] [000005000000] +18:26:24 [ 7] [ 10] [0320182611] +18:26:24 [ 11] [ 6] [827344] +18:26:24 [ 12] [ 6] [182611] +18:26:24 [ 13] [ 4] [0320] +18:26:24 [ 18] [ 4] [6011] +18:26:24 [ 19] [ 3] [418] +18:26:24 [ 22] [ 3] [021] +18:26:24 [ 32] [ 6] [621354] +18:26:24 [ 35] [ 27] [1808931100008893=1803500206] +18:26:24 [ 37] [ 12] [507904559822] +18:26:24 [ 38] [ 6] [827344] +18:26:24 [ 39] [ 2] [00] +18:26:24 [ 41] [ 8] [02001800] +18:26:24 [ 49] [ 3] [418] +18:26:24 [ 52] [ 16] [85A1C4DC05836DDE] +18:26:24 [ 54] [ 20] [1001418C000008548400] +18:26:24 ============================================================================ +18:26:24 Sending to : +18:26:24 ============================================================================ +18:26:24 + + +waiting on router queue for slot.... +18:26:24 ============================================================================ +18:26:24 Slot Id : <21> +18:26:24 Transaction Type : REQUEST +18:26:24 Received From : +18:26:24 ============================================================================ +18:26:24 FNo. Len. Field Value +18:26:24 ============================================================================ +18:26:24 [ 1] [ 4] [0200] +18:26:24 [ 2] [ 16] [1808930200050995] +18:26:24 [ 3] [ 6] [302000] +18:26:24 [ 4] [ 12] [000000000000] +18:26:24 [ 7] [ 10] [0320182414] +18:26:24 [ 11] [ 6] [954692] +18:26:24 [ 12] [ 6] [182414] +18:26:24 [ 13] [ 4] [0320] +18:26:24 [ 15] [ 4] [0320] +18:26:24 [ 18] [ 4] [6011] +18:26:24 [ 19] [ 3] [418] +18:26:24 [ 22] [ 3] [021] +18:26:24 [ 25] [ 2] [01] +18:26:24 [ 28] [ 9] [D00000000] +18:26:24 [ 32] [ 6] [668899] +18:26:24 [ 35] [ 27] [1808930200050995=1803500757] +18:26:24 [ 37] [ 12] [507901203969] +18:26:24 [ 41] [ 8] [03020012] +18:26:24 [ 42] [ 15] [APT ] +18:26:24 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +18:26:24 [ 49] [ 3] [418] +18:26:24 [ 52] [ 16] [AFD42E29B67B7894] +18:26:24 ============================================================================ +18:26:24 + + +waiting on router queue for slot.... +18:26:24 Sending to : +18:26:24 ============================================================================ +18:26:24 Sending to : +18:26:24 ============================================================================ +18:26:25 ============================================================================ +18:26:25 Slot Id : <21> +18:26:25 Transaction Type : REQUEST +18:26:25 Received From : +18:26:25 ============================================================================ +18:26:25 FNo. Len. Field Value +18:26:25 ============================================================================ +18:26:25 [ 1] [ 4] [0200] +18:26:25 [ 2] [ 16] [1808930200050995] +18:26:25 [ 3] [ 6] [302000] +18:26:25 [ 4] [ 12] [000000000000] +18:26:25 [ 7] [ 10] [0320182414] +18:26:25 [ 11] [ 6] [954692] +18:26:25 [ 12] [ 6] [182414] +18:26:25 [ 13] [ 4] [0320] +18:26:25 [ 15] [ 4] [0320] +18:26:25 [ 18] [ 4] [6011] +18:26:25 [ 19] [ 3] [418] +18:26:25 [ 22] [ 3] [021] +18:26:25 [ 25] [ 2] [01] +18:26:25 [ 28] [ 9] [D00000000] +18:26:25 [ 32] [ 6] [668899] +18:26:25 [ 35] [ 27] [1808930200050995=1803500757] +18:26:25 [ 37] [ 12] [507901203969] +18:26:25 [ 41] [ 8] [03020012] +18:26:25 [ 42] [ 15] [APT ] +18:26:25 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +18:26:25 [ 49] [ 3] [418] +18:26:25 [ 52] [ 16] [AFD42E29B67B7894] +18:26:25 ============================================================================ +18:26:25 + + +waiting on router queue for slot.... +18:26:25 Sending to : +18:26:25 ============================================================================ +18:26:25 ============================================================================ +18:26:25 Slot Id : <21> +18:26:25 Transaction Type : REQUEST +18:26:25 Received From : +18:26:25 ============================================================================ +18:26:25 FNo. Len. Field Value +18:26:25 ============================================================================ +18:26:25 [ 1] [ 4] [0200] +18:26:25 [ 2] [ 16] [1808930200050995] +18:26:25 [ 3] [ 6] [302000] +18:26:25 [ 4] [ 12] [000000000000] +18:26:25 [ 7] [ 10] [0320182414] +18:26:25 [ 11] [ 6] [954692] +18:26:25 [ 12] [ 6] [182414] +18:26:25 [ 13] [ 4] [0320] +18:26:25 [ 15] [ 4] [0320] +18:26:25 [ 18] [ 4] [6011] +18:26:25 [ 19] [ 3] [418] +18:26:25 [ 22] [ 3] [021] +18:26:25 [ 25] [ 2] [01] +18:26:25 [ 28] [ 9] [D00000000] +18:26:25 [ 32] [ 6] [668899] +18:26:25 [ 35] [ 27] [1808930200050995=1803500757] +18:26:25 [ 37] [ 12] [507901203969] +18:26:25 [ 41] [ 8] [03020012] +18:26:25 [ 42] [ 15] [APT ] +18:26:25 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +18:26:25 [ 49] [ 3] [418] +18:26:25 [ 52] [ 16] [20FE3C03A28B491F] +18:26:25 ============================================================================ +18:26:25 + + +waiting on router queue for slot.... +18:26:25 Sending to : <2> +18:26:25 ============================================================================ +18:26:25 ============================================================================ +18:26:25 Slot Id : <11> +18:26:25 Transaction Type : RESPONSE +18:26:25 Received From : +18:26:25 ============================================================================ +18:26:25 FNo. Len. Field Value +18:26:25 ============================================================================ +18:26:25 [ 1] [ 4] [0210] +18:26:25 [ 2] [ 16] [1808931100008893] +18:26:25 [ 3] [ 6] [010000] +18:26:25 [ 4] [ 12] [000005000000] +18:26:25 [ 6] [ 12] [000005000000] +18:26:25 [ 7] [ 10] [0320182611] +18:26:25 [ 11] [ 6] [827344] +18:26:25 [ 12] [ 6] [182611] +18:26:25 [ 13] [ 4] [0320] +18:26:25 [ 18] [ 4] [6011] +18:26:25 [ 19] [ 3] [418] +18:26:25 [ 22] [ 3] [021] +18:26:25 [ 32] [ 6] [621354] +18:26:25 [ 35] [ 27] [1808931100008893=1803500206] +18:26:25 [ 37] [ 12] [507904559822] +18:26:25 [ 38] [ 6] [827344] +18:26:25 [ 39] [ 2] [00] +18:26:25 [ 41] [ 8] [02001800] +18:26:25 [ 49] [ 3] [418] +18:26:25 [ 52] [ 16] [85A1C4DC05836DDE] +18:26:25 [ 54] [ 20] [1001418C000008548400] +18:26:25 ============================================================================ +18:26:25 Calculate Source COMM Id = 0 +18:26:25 ============================================================================ +18:26:25 + + +waiting on router queue for slot.... +18:26:29 ============================================================================ +18:26:29 Slot Id : <21> +18:26:29 Transaction Type : RESPONSE +18:26:29 Received From : +18:26:29 ============================================================================ +18:26:29 FNo. Len. Field Value +18:26:29 ============================================================================ +18:26:29 [ 1] [ 4] [0210] +18:26:29 [ 2] [ 16] [1808930200050995] +18:26:29 [ 3] [ 6] [302000] +18:26:29 [ 7] [ 10] [0320182414] +18:26:29 [ 11] [ 6] [954692] +18:26:29 [ 12] [ 6] [182414] +18:26:29 [ 13] [ 4] [0320] +18:26:29 [ 14] [ 4] [1803] +18:26:29 [ 19] [ 3] [418] +18:26:29 [ 32] [ 6] [668899] +18:26:29 [ 37] [ 12] [507901203969] +18:26:29 [ 39] [ 2] [42] +18:26:29 [ 41] [ 8] [03020012] +18:26:29 [ 49] [ 3] [418] +18:26:29 [ 52] [ 16] [20FE3C03A28B491F] +18:26:29 ============================================================================ +18:26:29 Sending to : +18:26:29 ============================================================================ +18:26:29 + + +waiting on router queue for slot.... +18:26:31 ============================================================================ +18:26:31 Slot Id : <21> +18:26:31 Transaction Type : RESPONSE +18:26:31 Received From : +18:26:31 ============================================================================ +18:26:31 FNo. Len. Field Value +18:26:31 ============================================================================ +18:26:31 [ 1] [ 4] [0210] +18:26:31 [ 2] [ 16] [1808930200050995] +18:26:31 [ 3] [ 6] [302000] +18:26:31 [ 7] [ 10] [0320182414] +18:26:31 [ 11] [ 6] [954692] +18:26:31 [ 12] [ 6] [182414] +18:26:31 [ 13] [ 4] [0320] +18:26:31 [ 14] [ 4] [1803] +18:26:31 [ 19] [ 3] [418] +18:26:31 [ 32] [ 6] [668899] +18:26:31 [ 37] [ 12] [507901203969] +18:26:31 [ 39] [ 2] [42] +18:26:31 [ 41] [ 8] [03020012] +18:26:31 [ 49] [ 3] [418] +18:26:31 [ 52] [ 16] [20FE3C03A28B491F] +18:26:31 ============================================================================ +18:26:31 Calculate Source COMM Id = 4 +18:26:31 ============================================================================ +18:26:31 + + +waiting on router queue for slot.... +18:26:37 ============================================================================ +18:26:37 Slot Id : <30> +18:26:37 Transaction Type : REQUEST +18:26:37 Received From : +18:26:37 ============================================================================ +18:26:37 FNo. Len. Field Value +18:26:37 ============================================================================ +18:26:37 [ 1] [ 4] [0200] +18:26:37 [ 2] [ 16] [6213545001064181] +18:26:37 [ 3] [ 6] [302000] +18:26:37 [ 4] [ 12] [000000000000] +18:26:37 [ 7] [ 10] [0320182426] +18:26:37 [ 11] [ 6] [954698] +18:26:37 [ 12] [ 6] [182426] +18:26:37 [ 13] [ 4] [0320] +18:26:37 [ 15] [ 4] [0320] +18:26:37 [ 18] [ 4] [6011] +18:26:37 [ 19] [ 3] [418] +18:26:37 [ 22] [ 3] [021] +18:26:37 [ 25] [ 2] [01] +18:26:37 [ 28] [ 9] [D00000000] +18:26:37 [ 32] [ 6] [668899] +18:26:37 [ 35] [ 32] [6213545001064181=491212016418162] +18:26:37 [ 37] [ 12] [507902148135] +18:26:37 [ 41] [ 8] [03020024] +18:26:37 [ 42] [ 15] [APT ] +18:26:37 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +18:26:37 [ 49] [ 3] [418] +18:26:37 [ 52] [ 16] [1AF01B9AC03C627D] +18:26:37 ============================================================================ +18:26:37 + + +waiting on router queue for slot.... +18:26:37 Sending to : +18:26:37 ============================================================================ +18:26:37 Sending to : +18:26:37 ============================================================================ +18:26:37 ============================================================================ +18:26:37 Slot Id : <30> +18:26:37 Transaction Type : REQUEST +18:26:37 Received From : +18:26:37 ============================================================================ +18:26:37 FNo. Len. Field Value +18:26:37 ============================================================================ +18:26:37 [ 1] [ 4] [0200] +18:26:37 [ 2] [ 16] [6213545001064181] +18:26:37 [ 3] [ 6] [302000] +18:26:37 [ 4] [ 12] [000000000000] +18:26:37 [ 7] [ 10] [0320182426] +18:26:37 [ 11] [ 6] [954698] +18:26:37 [ 12] [ 6] [182426] +18:26:37 [ 13] [ 4] [0320] +18:26:37 [ 15] [ 4] [0320] +18:26:37 [ 18] [ 4] [6011] +18:26:37 [ 19] [ 3] [418] +18:26:37 [ 22] [ 3] [021] +18:26:37 [ 25] [ 2] [01] +18:26:37 [ 28] [ 9] [D00000000] +18:26:37 [ 32] [ 6] [668899] +18:26:37 [ 35] [ 32] [6213545001064181=491212016418162] +18:26:37 [ 37] [ 12] [507902148135] +18:26:37 [ 41] [ 8] [03020024] +18:26:37 [ 42] [ 15] [APT ] +18:26:37 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +18:26:37 [ 49] [ 3] [418] +18:26:37 [ 52] [ 16] [1AF01B9AC03C627D] +18:26:37 ============================================================================ +18:26:37 + + +waiting on router queue for slot.... +18:26:37 Sending to : +18:26:37 ============================================================================ +18:26:37 ============================================================================ +18:26:37 Slot Id : <30> +18:26:37 Transaction Type : REQUEST +18:26:37 Received From : +18:26:37 ============================================================================ +18:26:37 FNo. Len. Field Value +18:26:37 ============================================================================ +18:26:37 [ 1] [ 4] [0200] +18:26:37 [ 2] [ 16] [6213545001064181] +18:26:37 [ 3] [ 6] [302000] +18:26:37 [ 4] [ 12] [000000000000] +18:26:37 [ 7] [ 10] [0320182426] +18:26:37 [ 11] [ 6] [954698] +18:26:37 [ 12] [ 6] [182426] +18:26:37 [ 13] [ 4] [0320] +18:26:37 [ 15] [ 4] [0320] +18:26:37 [ 18] [ 4] [6011] +18:26:37 [ 19] [ 3] [418] +18:26:37 [ 22] [ 3] [021] +18:26:37 [ 25] [ 2] [01] +18:26:37 [ 28] [ 9] [D00000000] +18:26:37 [ 32] [ 6] [668899] +18:26:37 [ 35] [ 32] [6213545001064181=491212016418162] +18:26:37 [ 37] [ 12] [507902148135] +18:26:37 [ 41] [ 8] [03020024] +18:26:37 [ 42] [ 15] [APT ] +18:26:37 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +18:26:37 [ 49] [ 3] [418] +18:26:37 [ 52] [ 16] [2695E0C1AC96B34E] +18:26:37 ============================================================================ +18:26:37 + + +waiting on router queue for slot.... +18:26:37 Sending to : <0> +18:26:37 ============================================================================ +18:26:37 ============================================================================ +18:26:37 Slot Id : <30> +18:26:37 Transaction Type : RESPONSE +18:26:37 Received From : +18:26:37 ============================================================================ +18:26:37 FNo. Len. Field Value +18:26:37 ============================================================================ +18:26:37 [ 1] [ 4] [0210] +18:26:37 [ 2] [ 16] [6213545001064181] +18:26:37 [ 3] [ 6] [302000] +18:26:37 [ 4] [ 12] [000000000000] +18:26:37 [ 7] [ 10] [0320182426] +18:26:37 [ 11] [ 6] [954698] +18:26:37 [ 12] [ 6] [182426] +18:26:37 [ 13] [ 4] [0320] +18:26:37 [ 15] [ 4] [0320] +18:26:37 [ 18] [ 4] [6011] +18:26:37 [ 19] [ 3] [418] +18:26:37 [ 32] [ 6] [668899] +18:26:37 [ 35] [ 32] [6213545001064181=491212016418162] +18:26:37 [ 37] [ 12] [507902148135] +18:26:37 [ 38] [ 6] [355866] +18:26:37 [ 39] [ 2] [00] +18:26:37 [ 41] [ 8] [03020024] +18:26:37 [ 49] [ 3] [418] +18:26:37 [ 54] [ 40] [2001418C0000526102222002418C000052610222] +18:26:37 ============================================================================ +18:26:37 Sending to : +18:26:37 ============================================================================ +18:26:37 + + +waiting on router queue for slot.... +18:26:39 ============================================================================ +18:26:39 Slot Id : <30> +18:26:39 Transaction Type : RESPONSE +18:26:39 Received From : +18:26:39 ============================================================================ +18:26:39 FNo. Len. Field Value +18:26:39 ============================================================================ +18:26:39 [ 1] [ 4] [0210] +18:26:39 [ 2] [ 16] [6213545001064181] +18:26:39 [ 3] [ 6] [302000] +18:26:39 [ 4] [ 12] [000000000000] +18:26:39 [ 7] [ 10] [0320182426] +18:26:39 [ 11] [ 6] [954698] +18:26:39 [ 12] [ 6] [182426] +18:26:39 [ 13] [ 4] [0320] +18:26:39 [ 15] [ 4] [0320] +18:26:39 [ 18] [ 4] [6011] +18:26:39 [ 19] [ 3] [418] +18:26:39 [ 32] [ 6] [668899] +18:26:39 [ 35] [ 32] [6213545001064181=491212016418162] +18:26:39 [ 37] [ 12] [507902148135] +18:26:39 [ 38] [ 6] [355866] +18:26:39 [ 39] [ 2] [00] +18:26:39 [ 41] [ 8] [03020024] +18:26:39 [ 49] [ 3] [418] +18:26:39 [ 54] [ 40] [2001418C0000526102222002418C000052610222] +18:26:39 ============================================================================ +18:26:39 Calculate Source COMM Id = 4 +18:26:39 ============================================================================ +18:26:39 + + +waiting on router queue for slot.... +18:26:39 ============================================================================ +18:26:39 Slot Id : <9> +18:26:39 Transaction Type : REQUEST +18:26:39 Received From : +18:26:39 ============================================================================ +18:26:39 FNo. Len. Field Value +18:26:39 ============================================================================ +18:26:39 [ 1] [ 4] [0800] +18:26:39 [ 7] [ 10] [0320112546] +18:26:39 [ 11] [ 6] [157701] +18:26:39 [ 70] [ 3] [301] +18:26:39 ============================================================================ +18:26:39 + + +waiting on router queue for slot.... +18:26:39 Sending to : +18:26:39 ============================================================================ +18:26:39 ============================================================================ +18:26:39 Slot Id : <9> +18:26:39 Transaction Type : RESPONSE +18:26:39 Received From : +18:26:39 ============================================================================ +18:26:39 FNo. Len. Field Value +18:26:39 ============================================================================ +18:26:39 [ 1] [ 4] [0810] +18:26:39 [ 7] [ 10] [0320112546] +18:26:39 [ 11] [ 6] [157701] +18:26:39 [ 39] [ 2] [00] +18:26:39 [ 70] [ 3] [301] +18:26:39 ============================================================================ +18:26:39 Calculate Source COMM Id = 2 +18:26:39 ============================================================================ +18:26:39 + + +waiting on router queue for slot.... +18:26:50 ============================================================================ +18:26:50 Slot Id : <461> +18:26:50 Transaction Type : REQUEST +18:26:50 Received From : +18:26:50 ============================================================================ +18:26:50 FNo. Len. Field Value +18:26:50 ============================================================================ +18:26:50 [ 1] [ 4] [0800] +18:26:50 [ 7] [ 10] [0320112556] +18:26:50 [ 11] [ 6] [157702] +18:26:50 [ 70] [ 3] [301] +18:26:50 ============================================================================ +18:26:50 + + +waiting on router queue for slot.... +18:26:50 Sending to : +18:26:50 ============================================================================ +18:26:50 ============================================================================ +18:26:50 Slot Id : <461> +18:26:50 Transaction Type : RESPONSE +18:26:50 Received From : +18:26:50 ============================================================================ +18:26:50 FNo. Len. Field Value +18:26:50 ============================================================================ +18:26:50 [ 1] [ 4] [0810] +18:26:50 [ 7] [ 10] [0320112556] +18:26:50 [ 11] [ 6] [157702] +18:26:50 [ 39] [ 2] [00] +18:26:50 [ 70] [ 3] [301] +18:26:50 ============================================================================ +18:26:50 Calculate Source COMM Id = 2 +18:26:50 ============================================================================ +18:26:50 + + +waiting on router queue for slot.... +18:26:51 ============================================================================ +18:26:51 Slot Id : <45> +18:26:51 Transaction Type : REQUEST +18:26:51 Received From : +18:26:51 ============================================================================ +18:26:51 FNo. Len. Field Value +18:26:51 ============================================================================ +18:26:51 [ 0] [ 4] [0420] +18:26:51 [ 1] [ 4] [0420] +18:26:51 [ 2] [ 16] [1808930500012687] +18:26:51 [ 3] [ 6] [010000] +18:26:51 [ 4] [ 12] [000100000000] +18:26:51 [ 6] [ 12] [000100000000] +18:26:51 [ 7] [ 10] [0320182217] +18:26:51 [ 11] [ 6] [954661] +18:26:51 [ 12] [ 6] [182217] +18:26:51 [ 13] [ 4] [0320] +18:26:51 [ 15] [ 4] [0320] +18:26:51 [ 18] [ 4] [6011] +18:26:51 [ 19] [ 3] [418] +18:26:51 [ 22] [ 3] [021] +18:26:51 [ 25] [ 2] [01] +18:26:51 [ 28] [ 9] [D00002000] +18:26:51 [ 32] [ 6] [668899] +18:26:51 [ 35] [ 27] [1808930500012687=1803500028] +18:26:51 [ 37] [ 12] [507901489389] +18:26:51 [ 41] [ 8] [03515001] +18:26:51 [ 42] [ 15] [APT ] +18:26:51 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:26:51 [ 49] [ 3] [418] +18:26:51 [ 52] [ 16] [F14AC5155561B4B1] +18:26:51 ============================================================================ +18:26:51 + + +waiting on router queue for slot.... +18:26:53 ============================================================================ +18:26:53 Slot Id : <45> +18:26:53 Transaction Type : RESPONSE +18:26:53 Received From : +18:26:53 ============================================================================ +18:26:53 FNo. Len. Field Value +18:26:53 ============================================================================ +18:26:53 [ 1] [ 4] [0430] +18:26:53 [ 2] [ 16] [1808930500012687] +18:26:53 [ 3] [ 6] [010000] +18:26:53 [ 4] [ 12] [000100000000] +18:26:53 [ 6] [ 12] [000100000000] +18:26:53 [ 7] [ 10] [0320182217] +18:26:53 [ 11] [ 6] [954661] +18:26:53 [ 12] [ 6] [182217] +18:26:53 [ 13] [ 4] [0320] +18:26:53 [ 19] [ 3] [418] +18:26:53 [ 32] [ 6] [668899] +18:26:53 [ 35] [ 27] [1808930500012687=1803500028] +18:26:53 [ 37] [ 12] [507901489389] +18:26:53 [ 38] [ 6] [954661] +18:26:53 [ 39] [ 2] [00] +18:26:53 [ 41] [ 8] [03515001] +18:26:53 [ 49] [ 3] [418] +18:26:53 ============================================================================ +18:26:53 Successfully send the slot [45] To REVERSAL Process +18:26:53 + + +waiting on router queue for slot.... +18:26:59 ============================================================================ +18:26:59 Slot Id : <37> +18:26:59 Transaction Type : REQUEST +18:26:59 Received From : +18:26:59 ============================================================================ +18:26:59 FNo. Len. Field Value +18:26:59 ============================================================================ +18:26:59 [ 1] [ 4] [0200] +18:26:59 [ 2] [ 16] [6213544002031695] +18:26:59 [ 3] [ 6] [010000] +18:26:59 [ 4] [ 12] [000100000000] +18:26:59 [ 7] [ 10] [0320182448] +18:26:59 [ 11] [ 6] [954707] +18:26:59 [ 12] [ 6] [182448] +18:26:59 [ 13] [ 4] [0320] +18:26:59 [ 15] [ 4] [0320] +18:26:59 [ 18] [ 4] [6011] +18:26:59 [ 19] [ 3] [418] +18:26:59 [ 22] [ 3] [021] +18:26:59 [ 25] [ 2] [01] +18:26:59 [ 28] [ 9] [D00002000] +18:26:59 [ 32] [ 6] [668899] +18:26:59 [ 35] [ 32] [6213544002031695=491212013169607] +18:26:59 [ 37] [ 12] [507900285860] +18:26:59 [ 41] [ 8] [03010005] +18:26:59 [ 42] [ 15] [APT ] +18:26:59 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +18:26:59 [ 49] [ 3] [418] +18:26:59 [ 52] [ 16] [6C62224981805D94] +18:26:59 ============================================================================ +18:26:59 + + +waiting on router queue for slot.... +18:26:59 Sending to : +18:26:59 ============================================================================ +18:26:59 Sending to : +18:26:59 ============================================================================ +18:26:59 ============================================================================ +18:26:59 Slot Id : <37> +18:26:59 Transaction Type : REQUEST +18:26:59 Received From : +18:26:59 ============================================================================ +18:26:59 FNo. Len. Field Value +18:26:59 ============================================================================ +18:26:59 [ 1] [ 4] [0200] +18:26:59 [ 2] [ 16] [6213544002031695] +18:26:59 [ 3] [ 6] [010000] +18:26:59 [ 4] [ 12] [000100000000] +18:26:59 [ 7] [ 10] [0320182448] +18:26:59 [ 11] [ 6] [954707] +18:26:59 [ 12] [ 6] [182448] +18:26:59 [ 13] [ 4] [0320] +18:26:59 [ 15] [ 4] [0320] +18:26:59 [ 18] [ 4] [6011] +18:26:59 [ 19] [ 3] [418] +18:26:59 [ 22] [ 3] [021] +18:26:59 [ 25] [ 2] [01] +18:26:59 [ 28] [ 9] [D00002000] +18:26:59 [ 32] [ 6] [668899] +18:26:59 [ 35] [ 32] [6213544002031695=491212013169607] +18:26:59 [ 37] [ 12] [507900285860] +18:26:59 [ 41] [ 8] [03010005] +18:26:59 [ 42] [ 15] [APT ] +18:26:59 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +18:26:59 [ 49] [ 3] [418] +18:26:59 [ 52] [ 16] [6C62224981805D94] +18:26:59 ============================================================================ +18:26:59 + + +waiting on router queue for slot.... +18:26:59 Sending to : +18:26:59 ============================================================================ +18:26:59 ============================================================================ +18:26:59 Slot Id : <37> +18:26:59 Transaction Type : REQUEST +18:26:59 Received From : +18:26:59 ============================================================================ +18:26:59 FNo. Len. Field Value +18:26:59 ============================================================================ +18:26:59 [ 1] [ 4] [0200] +18:26:59 [ 2] [ 16] [6213544002031695] +18:26:59 [ 3] [ 6] [010000] +18:26:59 [ 4] [ 12] [000100000000] +18:26:59 [ 7] [ 10] [0320182448] +18:26:59 [ 11] [ 6] [954707] +18:26:59 [ 12] [ 6] [182448] +18:26:59 [ 13] [ 4] [0320] +18:26:59 [ 15] [ 4] [0320] +18:26:59 [ 18] [ 4] [6011] +18:26:59 [ 19] [ 3] [418] +18:26:59 [ 22] [ 3] [021] +18:26:59 [ 25] [ 2] [01] +18:26:59 [ 28] [ 9] [D00002000] +18:26:59 [ 32] [ 6] [668899] +18:26:59 [ 35] [ 32] [6213544002031695=491212013169607] +18:26:59 [ 37] [ 12] [507900285860] +18:26:59 [ 41] [ 8] [03010005] +18:26:59 [ 42] [ 15] [APT ] +18:26:59 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +18:26:59 [ 49] [ 3] [418] +18:26:59 [ 52] [ 16] [229CF5555A7F663D] +18:26:59 ============================================================================ +18:26:59 + + +waiting on router queue for slot.... +18:26:59 Sending to : <0> +18:26:59 ============================================================================ +18:27:00 ============================================================================ +18:27:00 Slot Id : <37> +18:27:00 Transaction Type : RESPONSE +18:27:00 Received From : +18:27:00 ============================================================================ +18:27:00 FNo. Len. Field Value +18:27:00 ============================================================================ +18:27:00 [ 1] [ 4] [0210] +18:27:00 [ 2] [ 16] [6213544002031695] +18:27:00 [ 3] [ 6] [010000] +18:27:00 [ 4] [ 12] [000100000000] +18:27:00 [ 7] [ 10] [0320182448] +18:27:00 [ 11] [ 6] [954707] +18:27:00 [ 12] [ 6] [182448] +18:27:00 [ 13] [ 4] [0320] +18:27:00 [ 15] [ 4] [0320] +18:27:00 [ 18] [ 4] [6011] +18:27:00 [ 19] [ 3] [418] +18:27:00 [ 32] [ 6] [668899] +18:27:00 [ 35] [ 32] [6213544002031695=491212013169607] +18:27:00 [ 37] [ 12] [507900285860] +18:27:00 [ 38] [ 6] [475895] +18:27:00 [ 39] [ 2] [00] +18:27:00 [ 41] [ 8] [03010005] +18:27:00 [ 49] [ 3] [418] +18:27:00 [ 54] [ 40] [0001418C0001271891500002418C000127189150] +18:27:00 ============================================================================ +18:27:00 Sending to : +18:27:00 ============================================================================ +18:27:00 + + +waiting on router queue for slot.... +18:27:01 ============================================================================ +18:27:01 Slot Id : <37> +18:27:01 Transaction Type : RESPONSE +18:27:01 Received From : +18:27:01 ============================================================================ +18:27:01 FNo. Len. Field Value +18:27:01 ============================================================================ +18:27:01 [ 1] [ 4] [0210] +18:27:01 [ 2] [ 16] [6213544002031695] +18:27:01 [ 3] [ 6] [010000] +18:27:01 [ 4] [ 12] [000100000000] +18:27:01 [ 7] [ 10] [0320182448] +18:27:01 [ 11] [ 6] [954707] +18:27:01 [ 12] [ 6] [182448] +18:27:01 [ 13] [ 4] [0320] +18:27:01 [ 15] [ 4] [0320] +18:27:01 [ 18] [ 4] [6011] +18:27:01 [ 19] [ 3] [418] +18:27:01 [ 32] [ 6] [668899] +18:27:01 [ 35] [ 32] [6213544002031695=491212013169607] +18:27:01 [ 37] [ 12] [507900285860] +18:27:01 [ 38] [ 6] [475895] +18:27:01 [ 39] [ 2] [00] +18:27:01 [ 41] [ 8] [03010005] +18:27:01 [ 49] [ 3] [418] +18:27:01 [ 54] [ 40] [0001418C0001271891500002418C000127189150] +18:27:01 ============================================================================ +18:27:01 Calculate Source COMM Id = 4 +18:27:01 ============================================================================ +18:27:01 + + +waiting on router queue for slot.... +18:27:05 ============================================================================ +18:27:05 Slot Id : <36> +18:27:05 Transaction Type : REQUEST +18:27:05 Received From : +18:27:05 ============================================================================ +18:27:05 FNo. Len. Field Value +18:27:05 ============================================================================ +18:27:05 [ 1] [ 4] [0800] +18:27:05 [ 7] [ 10] [0320112612] +18:27:05 [ 11] [ 6] [157703] +18:27:05 [ 70] [ 3] [301] +18:27:05 ============================================================================ +18:27:05 + + +waiting on router queue for slot.... +18:27:05 Sending to : +18:27:05 ============================================================================ +18:27:05 ============================================================================ +18:27:05 Slot Id : <36> +18:27:05 Transaction Type : RESPONSE +18:27:05 Received From : +18:27:05 ============================================================================ +18:27:05 FNo. Len. Field Value +18:27:05 ============================================================================ +18:27:05 [ 1] [ 4] [0810] +18:27:05 [ 7] [ 10] [0320112612] +18:27:05 [ 11] [ 6] [157703] +18:27:05 [ 39] [ 2] [00] +18:27:05 [ 70] [ 3] [301] +18:27:05 ============================================================================ +18:27:05 Calculate Source COMM Id = 2 +18:27:05 ============================================================================ +18:27:05 + + +waiting on router queue for slot.... +18:27:08 ============================================================================ +18:27:08 Slot Id : <40> +18:27:08 Transaction Type : REQUEST +18:27:08 Received From : +18:27:08 ============================================================================ +18:27:08 FNo. Len. Field Value +18:27:08 ============================================================================ +18:27:08 [ 1] [ 4] [0800] +18:27:08 [ 7] [ 10] [0321013857] +18:27:08 [ 11] [ 6] [183857] +18:27:08 [ 37] [ 12] [57918183857] +18:27:08 [ 70] [ 3] [301] +18:27:08 ============================================================================ +18:27:08 + + +waiting on router queue for slot.... +18:27:08 Sending to : +18:27:08 ============================================================================ +18:27:08 ============================================================================ +18:27:08 Slot Id : <40> +18:27:08 Transaction Type : RESPONSE +18:27:08 Received From : +18:27:08 ============================================================================ +18:27:08 FNo. Len. Field Value +18:27:08 ============================================================================ +18:27:08 [ 1] [ 4] [0810] +18:27:08 [ 7] [ 10] [0321013857] +18:27:08 [ 11] [ 6] [183857] +18:27:08 [ 37] [ 12] [579181838570] +18:27:08 [ 39] [ 2] [00] +18:27:08 [ 70] [ 3] [810] +18:27:08 ============================================================================ +18:27:08 Calculate Source COMM Id = 6 +18:27:08 ============================================================================ +18:27:08 + + +waiting on router queue for slot.... +18:27:14 ============================================================================ +18:27:14 Slot Id : <18> +18:27:14 Transaction Type : REQUEST +18:27:14 Received From : +18:27:14 ============================================================================ +18:27:14 FNo. Len. Field Value +18:27:14 ============================================================================ +18:27:14 [ 1] [ 4] [0200] +18:27:14 [ 2] [ 16] [6213545001064181] +18:27:14 [ 3] [ 6] [010000] +18:27:14 [ 4] [ 12] [000045000000] +18:27:14 [ 7] [ 10] [0320182503] +18:27:14 [ 11] [ 6] [954713] +18:27:14 [ 12] [ 6] [182503] +18:27:14 [ 13] [ 4] [0320] +18:27:14 [ 15] [ 4] [0320] +18:27:14 [ 18] [ 4] [6011] +18:27:14 [ 19] [ 3] [418] +18:27:14 [ 22] [ 3] [021] +18:27:14 [ 25] [ 2] [01] +18:27:14 [ 28] [ 9] [D00002000] +18:27:14 [ 32] [ 6] [668899] +18:27:14 [ 35] [ 32] [6213545001064181=491212016418162] +18:27:14 [ 37] [ 12] [507902148136] +18:27:14 [ 41] [ 8] [03020024] +18:27:14 [ 42] [ 15] [APT ] +18:27:14 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +18:27:14 [ 49] [ 3] [418] +18:27:14 [ 52] [ 16] [1AF01B9AC03C627D] +18:27:14 ============================================================================ +18:27:14 + + +waiting on router queue for slot.... +18:27:14 Sending to : +18:27:14 ============================================================================ +18:27:14 Sending to : +18:27:14 ============================================================================ +18:27:14 ============================================================================ +18:27:14 Slot Id : <18> +18:27:14 Transaction Type : REQUEST +18:27:14 Received From : +18:27:14 ============================================================================ +18:27:14 FNo. Len. Field Value +18:27:14 ============================================================================ +18:27:14 [ 1] [ 4] [0200] +18:27:14 [ 2] [ 16] [6213545001064181] +18:27:14 [ 3] [ 6] [010000] +18:27:14 [ 4] [ 12] [000045000000] +18:27:14 [ 7] [ 10] [0320182503] +18:27:14 [ 11] [ 6] [954713] +18:27:14 [ 12] [ 6] [182503] +18:27:14 [ 13] [ 4] [0320] +18:27:14 [ 15] [ 4] [0320] +18:27:14 [ 18] [ 4] [6011] +18:27:14 [ 19] [ 3] [418] +18:27:14 [ 22] [ 3] [021] +18:27:14 [ 25] [ 2] [01] +18:27:14 [ 28] [ 9] [D00002000] +18:27:14 [ 32] [ 6] [668899] +18:27:14 [ 35] [ 32] [6213545001064181=491212016418162] +18:27:14 [ 37] [ 12] [507902148136] +18:27:14 [ 41] [ 8] [03020024] +18:27:14 [ 42] [ 15] [APT ] +18:27:14 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +18:27:14 [ 49] [ 3] [418] +18:27:14 [ 52] [ 16] [1AF01B9AC03C627D] +18:27:14 ============================================================================ +18:27:14 + + +waiting on router queue for slot.... +18:27:14 Sending to : +18:27:14 ============================================================================ +18:27:14 ============================================================================ +18:27:14 Slot Id : <18> +18:27:14 Transaction Type : REQUEST +18:27:14 Received From : +18:27:14 ============================================================================ +18:27:14 FNo. Len. Field Value +18:27:14 ============================================================================ +18:27:14 [ 1] [ 4] [0200] +18:27:14 [ 2] [ 16] [6213545001064181] +18:27:14 [ 3] [ 6] [010000] +18:27:14 [ 4] [ 12] [000045000000] +18:27:14 [ 7] [ 10] [0320182503] +18:27:14 [ 11] [ 6] [954713] +18:27:14 [ 12] [ 6] [182503] +18:27:14 [ 13] [ 4] [0320] +18:27:14 [ 15] [ 4] [0320] +18:27:14 [ 18] [ 4] [6011] +18:27:14 [ 19] [ 3] [418] +18:27:14 [ 22] [ 3] [021] +18:27:14 [ 25] [ 2] [01] +18:27:14 [ 28] [ 9] [D00002000] +18:27:14 [ 32] [ 6] [668899] +18:27:14 [ 35] [ 32] [6213545001064181=491212016418162] +18:27:14 [ 37] [ 12] [507902148136] +18:27:14 [ 41] [ 8] [03020024] +18:27:14 [ 42] [ 15] [APT ] +18:27:14 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +18:27:14 [ 49] [ 3] [418] +18:27:14 [ 52] [ 16] [2695E0C1AC96B34E] +18:27:14 ============================================================================ +18:27:14 + + +waiting on router queue for slot.... +18:27:14 Sending to : <0> +18:27:14 ============================================================================ +18:27:14 ============================================================================ +18:27:14 Slot Id : <18> +18:27:14 Transaction Type : RESPONSE +18:27:14 Received From : +18:27:14 ============================================================================ +18:27:14 FNo. Len. Field Value +18:27:14 ============================================================================ +18:27:14 [ 1] [ 4] [0210] +18:27:14 [ 2] [ 16] [6213545001064181] +18:27:14 [ 3] [ 6] [010000] +18:27:14 [ 4] [ 12] [000045000000] +18:27:14 [ 7] [ 10] [0320182503] +18:27:14 [ 11] [ 6] [954713] +18:27:14 [ 12] [ 6] [182503] +18:27:14 [ 13] [ 4] [0320] +18:27:14 [ 15] [ 4] [0320] +18:27:14 [ 18] [ 4] [6011] +18:27:14 [ 19] [ 3] [418] +18:27:14 [ 32] [ 6] [668899] +18:27:14 [ 35] [ 32] [6213545001064181=491212016418162] +18:27:14 [ 37] [ 12] [507902148136] +18:27:14 [ 38] [ 6] [267230] +18:27:14 [ 39] [ 2] [00] +18:27:14 [ 41] [ 8] [03020024] +18:27:14 [ 49] [ 3] [418] +18:27:14 [ 54] [ 40] [0001418C0000074102220002418C000007410222] +18:27:14 ============================================================================ +18:27:14 Sending to : +18:27:14 ============================================================================ +18:27:14 + + +waiting on router queue for slot.... +18:27:15 ============================================================================ +18:27:15 Slot Id : <43> +18:27:15 Transaction Type : REQUEST +18:27:15 Received From : +18:27:15 ============================================================================ +18:27:15 FNo. Len. Field Value +18:27:15 ============================================================================ +18:27:15 [ 1] [ 4] [0200] +18:27:15 [ 2] [ 16] [6688990040156026] +18:27:15 [ 3] [ 6] [010000] +18:27:15 [ 4] [ 12] [000050000000] +18:27:15 [ 7] [ 10] [0320182710] +18:27:15 [ 11] [ 6] [827506] +18:27:15 [ 12] [ 6] [182710] +18:27:15 [ 13] [ 4] [0320] +18:27:15 [ 15] [ 4] [0320] +18:27:15 [ 18] [ 4] [6011] +18:27:15 [ 22] [ 3] [900] +18:27:15 [ 25] [ 2] [02] +18:27:15 [ 28] [ 9] [D00002000] +18:27:15 [ 32] [ 6] [621354] +18:27:15 [ 35] [ 37] [6688990040156026=98051261432760200000] +18:27:15 [ 37] [ 12] [507904653871] +18:27:15 [ 41] [ 8] [17001000] +18:27:15 [ 42] [ 15] [NATIVE ] +18:27:15 [ 43] [ 40] [Sum Market Samneua LAO] +18:27:15 [ 49] [ 3] [418] +18:27:15 [ 52] [ 16] [A5AEFD9C3B423741] +18:27:15 ============================================================================ +18:27:15 + + +waiting on router queue for slot.... +18:27:15 Sending to : +18:27:15 ============================================================================ +18:27:15 Sending to : +18:27:15 ============================================================================ +18:27:15 ============================================================================ +18:27:15 Slot Id : <43> +18:27:15 Transaction Type : REQUEST +18:27:15 Received From : +18:27:15 ============================================================================ +18:27:15 FNo. Len. Field Value +18:27:15 ============================================================================ +18:27:15 [ 1] [ 4] [0200] +18:27:15 [ 2] [ 16] [6688990040156026] +18:27:15 [ 3] [ 6] [010000] +18:27:15 [ 4] [ 12] [000050000000] +18:27:15 [ 7] [ 10] [0320182710] +18:27:15 [ 11] [ 6] [827506] +18:27:15 [ 12] [ 6] [182710] +18:27:15 [ 13] [ 4] [0320] +18:27:15 [ 15] [ 4] [0320] +18:27:15 [ 18] [ 4] [6011] +18:27:15 [ 22] [ 3] [900] +18:27:15 [ 25] [ 2] [02] +18:27:15 [ 28] [ 9] [D00002000] +18:27:15 [ 32] [ 6] [621354] +18:27:15 [ 35] [ 37] [6688990040156026=98051261432760200000] +18:27:15 [ 37] [ 12] [507904653871] +18:27:15 [ 41] [ 8] [17001000] +18:27:15 [ 42] [ 15] [NATIVE ] +18:27:15 [ 43] [ 40] [Sum Market Samneua LAO] +18:27:15 [ 49] [ 3] [418] +18:27:15 [ 52] [ 16] [A5AEFD9C3B423741] +18:27:15 ============================================================================ +18:27:15 + + +waiting on router queue for slot.... +18:27:15 Sending to : +18:27:15 ============================================================================ +18:27:15 ============================================================================ +18:27:15 Slot Id : <43> +18:27:15 Transaction Type : REQUEST +18:27:15 Received From : +18:27:15 ============================================================================ +18:27:15 FNo. Len. Field Value +18:27:15 ============================================================================ +18:27:15 [ 1] [ 4] [0200] +18:27:15 [ 2] [ 16] [6688990040156026] +18:27:15 [ 3] [ 6] [010000] +18:27:15 [ 4] [ 12] [000050000000] +18:27:15 [ 7] [ 10] [0320182710] +18:27:15 [ 11] [ 6] [827506] +18:27:15 [ 12] [ 6] [182710] +18:27:15 [ 13] [ 4] [0320] +18:27:15 [ 15] [ 4] [0320] +18:27:15 [ 18] [ 4] [6011] +18:27:15 [ 22] [ 3] [900] +18:27:15 [ 25] [ 2] [02] +18:27:15 [ 28] [ 9] [D00002000] +18:27:15 [ 32] [ 6] [621354] +18:27:15 [ 35] [ 37] [6688990040156026=98051261432760200000] +18:27:15 [ 37] [ 12] [507904653871] +18:27:15 [ 41] [ 8] [17001000] +18:27:15 [ 42] [ 15] [NATIVE ] +18:27:15 [ 43] [ 40] [Sum Market Samneua LAO] +18:27:15 [ 49] [ 3] [418] +18:27:15 [ 52] [ 16] [CA71C852AF15A85D] +18:27:15 ============================================================================ +18:27:15 + + +waiting on router queue for slot.... +18:27:15 Sending to : <4> +18:27:15 ============================================================================ +18:27:16 ============================================================================ +18:27:16 Slot Id : <18> +18:27:16 Transaction Type : RESPONSE +18:27:16 Received From : +18:27:16 ============================================================================ +18:27:16 FNo. Len. Field Value +18:27:16 ============================================================================ +18:27:16 [ 1] [ 4] [0210] +18:27:16 [ 2] [ 16] [6213545001064181] +18:27:16 [ 3] [ 6] [010000] +18:27:16 [ 4] [ 12] [000045000000] +18:27:16 [ 7] [ 10] [0320182503] +18:27:16 [ 11] [ 6] [954713] +18:27:16 [ 12] [ 6] [182503] +18:27:16 [ 13] [ 4] [0320] +18:27:16 [ 15] [ 4] [0320] +18:27:16 [ 18] [ 4] [6011] +18:27:16 [ 19] [ 3] [418] +18:27:16 [ 32] [ 6] [668899] +18:27:16 [ 35] [ 32] [6213545001064181=491212016418162] +18:27:16 [ 37] [ 12] [507902148136] +18:27:16 [ 38] [ 6] [267230] +18:27:16 [ 39] [ 2] [00] +18:27:16 [ 41] [ 8] [03020024] +18:27:16 [ 49] [ 3] [418] +18:27:16 [ 54] [ 40] [0001418C0000074102220002418C000007410222] +18:27:16 ============================================================================ +18:27:16 Calculate Source COMM Id = 4 +18:27:16 ============================================================================ +18:27:16 + + +waiting on router queue for slot.... +18:27:17 ============================================================================ +18:27:17 Slot Id : <43> +18:27:17 Transaction Type : RESPONSE +18:27:17 Received From : +18:27:17 ============================================================================ +18:27:17 FNo. Len. Field Value +18:27:17 ============================================================================ +18:27:17 [ 1] [ 4] [0210] +18:27:17 [ 2] [ 16] [6688990040156026] +18:27:17 [ 3] [ 6] [010000] +18:27:17 [ 4] [ 12] [000050000000] +18:27:17 [ 11] [ 6] [827506] +18:27:17 [ 12] [ 6] [182710] +18:27:17 [ 15] [ 4] [0320] +18:27:17 [ 18] [ 4] [6011] +18:27:17 [ 32] [ 6] [621354] +18:27:17 [ 35] [ 37] [6688990040156026=98051261432760200000] +18:27:17 [ 37] [ 12] [507904653871] +18:27:17 [ 38] [ 6] [428037] +18:27:17 [ 39] [ 2] [00] +18:27:17 [ 41] [ 8] [17001000] +18:27:17 [ 49] [ 3] [418] +18:27:17 [ 54] [ 20] [0002418C000151865405] +18:27:17 ============================================================================ +18:27:17 Sending to : +18:27:17 ============================================================================ +18:27:17 + + +waiting on router queue for slot.... +18:27:18 ============================================================================ +18:27:18 Slot Id : <43> +18:27:18 Transaction Type : RESPONSE +18:27:18 Received From : +18:27:18 ============================================================================ +18:27:18 FNo. Len. Field Value +18:27:18 ============================================================================ +18:27:18 [ 1] [ 4] [0210] +18:27:18 [ 2] [ 16] [6688990040156026] +18:27:18 [ 3] [ 6] [010000] +18:27:18 [ 4] [ 12] [000050000000] +18:27:18 [ 11] [ 6] [827506] +18:27:18 [ 12] [ 6] [182710] +18:27:18 [ 15] [ 4] [0320] +18:27:18 [ 18] [ 4] [6011] +18:27:18 [ 32] [ 6] [621354] +18:27:18 [ 35] [ 37] [6688990040156026=98051261432760200000] +18:27:18 [ 37] [ 12] [507904653871] +18:27:18 [ 38] [ 6] [428037] +18:27:18 [ 39] [ 2] [00] +18:27:18 [ 41] [ 8] [17001000] +18:27:18 [ 49] [ 3] [418] +18:27:18 [ 54] [ 20] [0002418C000151865405] +18:27:18 ============================================================================ +18:27:18 Calculate Source COMM Id = 0 +18:27:18 ============================================================================ +18:27:18 + + +waiting on router queue for slot.... +18:27:21 ============================================================================ +18:27:21 Slot Id : <497> +18:27:21 Transaction Type : REQUEST +18:27:21 Received From : +18:27:21 ============================================================================ +18:27:21 FNo. Len. Field Value +18:27:21 ============================================================================ +18:27:21 [ 1] [ 4] [0200] +18:27:21 [ 2] [ 16] [6688990040120022] +18:27:21 [ 3] [ 6] [010000] +18:27:21 [ 4] [ 12] [000005000000] +18:27:21 [ 7] [ 10] [0320182715] +18:27:21 [ 11] [ 6] [827518] +18:27:21 [ 12] [ 6] [182715] +18:27:21 [ 13] [ 4] [0320] +18:27:21 [ 15] [ 4] [0320] +18:27:21 [ 18] [ 4] [6011] +18:27:21 [ 22] [ 3] [900] +18:27:21 [ 25] [ 2] [02] +18:27:21 [ 28] [ 9] [D00002000] +18:27:21 [ 32] [ 6] [621354] +18:27:21 [ 35] [ 37] [6688990040120022=98031261021083100000] +18:27:21 [ 37] [ 12] [507904559824] +18:27:21 [ 41] [ 8] [02001800] +18:27:21 [ 42] [ 15] [NATIVE ] +18:27:21 [ 43] [ 40] [Bus Station Khm Thakek LAO] +18:27:21 [ 49] [ 3] [418] +18:27:21 [ 52] [ 16] [39DE804868F0FE31] +18:27:21 ============================================================================ +18:27:21 + + +waiting on router queue for slot.... +18:27:21 Sending to : +18:27:21 ============================================================================ +18:27:21 Sending to : +18:27:21 ============================================================================ +18:27:21 ============================================================================ +18:27:21 Slot Id : <497> +18:27:21 Transaction Type : REQUEST +18:27:21 Received From : +18:27:21 ============================================================================ +18:27:21 FNo. Len. Field Value +18:27:21 ============================================================================ +18:27:21 [ 1] [ 4] [0200] +18:27:21 [ 2] [ 16] [6688990040120022] +18:27:21 [ 3] [ 6] [010000] +18:27:21 [ 4] [ 12] [000005000000] +18:27:21 [ 7] [ 10] [0320182715] +18:27:21 [ 11] [ 6] [827518] +18:27:21 [ 12] [ 6] [182715] +18:27:21 [ 13] [ 4] [0320] +18:27:21 [ 15] [ 4] [0320] +18:27:21 [ 18] [ 4] [6011] +18:27:21 [ 22] [ 3] [900] +18:27:21 [ 25] [ 2] [02] +18:27:21 [ 28] [ 9] [D00002000] +18:27:21 [ 32] [ 6] [621354] +18:27:21 [ 35] [ 37] [6688990040120022=98031261021083100000] +18:27:21 [ 37] [ 12] [507904559824] +18:27:21 [ 41] [ 8] [02001800] +18:27:21 [ 42] [ 15] [NATIVE ] +18:27:21 [ 43] [ 40] [Bus Station Khm Thakek LAO] +18:27:21 [ 49] [ 3] [418] +18:27:21 [ 52] [ 16] [39DE804868F0FE31] +18:27:21 ============================================================================ +18:27:21 + + +waiting on router queue for slot.... +18:27:21 Sending to : +18:27:21 ============================================================================ +18:27:21 ============================================================================ +18:27:21 Slot Id : <497> +18:27:21 Transaction Type : REQUEST +18:27:21 Received From : +18:27:21 ============================================================================ +18:27:21 FNo. Len. Field Value +18:27:21 ============================================================================ +18:27:21 [ 1] [ 4] [0200] +18:27:21 [ 2] [ 16] [6688990040120022] +18:27:21 [ 3] [ 6] [010000] +18:27:21 [ 4] [ 12] [000005000000] +18:27:21 [ 7] [ 10] [0320182715] +18:27:21 [ 11] [ 6] [827518] +18:27:21 [ 12] [ 6] [182715] +18:27:21 [ 13] [ 4] [0320] +18:27:21 [ 15] [ 4] [0320] +18:27:21 [ 18] [ 4] [6011] +18:27:21 [ 22] [ 3] [900] +18:27:21 [ 25] [ 2] [02] +18:27:21 [ 28] [ 9] [D00002000] +18:27:21 [ 32] [ 6] [621354] +18:27:21 [ 35] [ 37] [6688990040120022=98031261021083100000] +18:27:21 [ 37] [ 12] [507904559824] +18:27:21 [ 41] [ 8] [02001800] +18:27:21 [ 42] [ 15] [NATIVE ] +18:27:21 [ 43] [ 40] [Bus Station Khm Thakek LAO] +18:27:21 [ 49] [ 3] [418] +18:27:21 [ 52] [ 16] [6378A45F38830265] +18:27:21 ============================================================================ +18:27:21 + + +waiting on router queue for slot.... +18:27:21 Sending to : <4> +18:27:21 ============================================================================ +18:27:21 ============================================================================ +18:27:21 Slot Id : <8> +18:27:21 Transaction Type : REQUEST +18:27:21 Received From : +18:27:21 ============================================================================ +18:27:21 FNo. Len. Field Value +18:27:21 ============================================================================ +18:27:21 [ 1] [ 4] [0800] +18:27:21 [ 2] [ 5] [02531] +18:27:21 [ 3] [ 6] [579188] +18:27:21 [ 7] [ 10] [0320112721] +18:27:21 [ 11] [ 6] [807483] +18:27:21 [ 15] [ 10] [0320112721] +18:27:21 [ 37] [ 11] [57918807483] +18:27:21 [ 70] [ 3] [001] +18:27:21 ============================================================================ +18:27:21 + + +waiting on router queue for slot.... +18:27:21 ============================================================================ +18:27:21 Slot Id : <8> +18:27:21 Transaction Type : RESPONSE +18:27:21 Received From : +18:27:21 ============================================================================ +18:27:21 FNo. Len. Field Value +18:27:21 ============================================================================ +18:27:21 [ 1] [ 4] [0810] +18:27:21 [ 7] [ 10] [0320112721] +18:27:21 [ 11] [ 6] [807483] +18:27:21 [ 15] [ 4] [0320] +18:27:21 [ 37] [ 12] [57918807483] +18:27:21 [ 39] [ 2] [00] +18:27:21 [ 70] [ 3] [001] +18:27:21 ============================================================================ +18:27:21 Sending to : +18:27:21 ============================================================================ +18:27:21 + + +waiting on router queue for slot.... +18:27:22 ============================================================================ +18:27:22 Slot Id : <497> +18:27:22 Transaction Type : RESPONSE +18:27:22 Received From : +18:27:22 ============================================================================ +18:27:22 FNo. Len. Field Value +18:27:22 ============================================================================ +18:27:22 [ 1] [ 4] [0210] +18:27:22 [ 2] [ 16] [6688990040120022] +18:27:22 [ 3] [ 6] [010000] +18:27:22 [ 4] [ 12] [000005000000] +18:27:22 [ 11] [ 6] [827518] +18:27:22 [ 12] [ 6] [182715] +18:27:22 [ 15] [ 4] [0320] +18:27:22 [ 18] [ 4] [6011] +18:27:22 [ 32] [ 6] [621354] +18:27:22 [ 35] [ 37] [6688990040120022=98031261021083100000] +18:27:22 [ 37] [ 12] [507904559824] +18:27:22 [ 38] [ 6] [063355] +18:27:22 [ 39] [ 2] [00] +18:27:22 [ 41] [ 8] [02001800] +18:27:22 [ 49] [ 3] [418] +18:27:22 [ 54] [ 20] [0002418C000009400000] +18:27:22 ============================================================================ +18:27:22 Sending to : +18:27:22 ============================================================================ +18:27:22 + + +waiting on router queue for slot.... +18:27:23 ============================================================================ +18:27:23 Slot Id : <28> +18:27:23 Transaction Type : REQUEST +18:27:23 Received From : +18:27:23 ============================================================================ +18:27:23 FNo. Len. Field Value +18:27:23 ============================================================================ +18:27:23 [ 1] [ 4] [0800] +18:27:23 [ 7] [ 10] [0320112629] +18:27:23 [ 11] [ 6] [157704] +18:27:23 [ 70] [ 3] [301] +18:27:23 ============================================================================ +18:27:23 + + +waiting on router queue for slot.... +18:27:23 Sending to : +18:27:23 ============================================================================ +18:27:23 ============================================================================ +18:27:23 Slot Id : <28> +18:27:23 Transaction Type : RESPONSE +18:27:23 Received From : +18:27:23 ============================================================================ +18:27:23 FNo. Len. Field Value +18:27:23 ============================================================================ +18:27:23 [ 1] [ 4] [0810] +18:27:23 [ 7] [ 10] [0320112629] +18:27:23 [ 11] [ 6] [157704] +18:27:23 [ 39] [ 2] [00] +18:27:23 [ 70] [ 3] [301] +18:27:23 ============================================================================ +18:27:23 Calculate Source COMM Id = 2 +18:27:23 ============================================================================ +18:27:23 + + +waiting on router queue for slot.... +18:27:24 ============================================================================ +18:27:24 Slot Id : <497> +18:27:24 Transaction Type : RESPONSE +18:27:24 Received From : +18:27:24 ============================================================================ +18:27:24 FNo. Len. Field Value +18:27:24 ============================================================================ +18:27:24 [ 1] [ 4] [0210] +18:27:24 [ 2] [ 16] [6688990040120022] +18:27:24 [ 3] [ 6] [010000] +18:27:24 [ 4] [ 12] [000005000000] +18:27:24 [ 11] [ 6] [827518] +18:27:24 [ 12] [ 6] [182715] +18:27:24 [ 15] [ 4] [0320] +18:27:24 [ 18] [ 4] [6011] +18:27:24 [ 32] [ 6] [621354] +18:27:24 [ 35] [ 37] [6688990040120022=98031261021083100000] +18:27:24 [ 37] [ 12] [507904559824] +18:27:24 [ 38] [ 6] [063355] +18:27:24 [ 39] [ 2] [00] +18:27:24 [ 41] [ 8] [02001800] +18:27:24 [ 49] [ 3] [418] +18:27:24 [ 54] [ 20] [0002418C000009400000] +18:27:24 ============================================================================ +18:27:24 Calculate Source COMM Id = 0 +18:27:24 ============================================================================ +18:27:24 + + +waiting on router queue for slot.... +18:27:39 ============================================================================ +18:27:39 Slot Id : <55> +18:27:39 Transaction Type : REQUEST +18:27:39 Received From : +18:27:39 ============================================================================ +18:27:39 FNo. Len. Field Value +18:27:39 ============================================================================ +18:27:39 [ 1] [ 4] [0800] +18:27:39 [ 7] [ 10] [0320112645] +18:27:39 [ 11] [ 6] [157705] +18:27:39 [ 70] [ 3] [301] +18:27:39 ============================================================================ +18:27:39 + + +waiting on router queue for slot.... +18:27:39 Sending to : +18:27:39 ============================================================================ +18:27:39 ============================================================================ +18:27:39 Slot Id : <55> +18:27:39 Transaction Type : RESPONSE +18:27:39 Received From : +18:27:39 ============================================================================ +18:27:39 FNo. Len. Field Value +18:27:39 ============================================================================ +18:27:39 [ 1] [ 4] [0810] +18:27:39 [ 7] [ 10] [0320112645] +18:27:39 [ 11] [ 6] [157705] +18:27:39 [ 39] [ 2] [00] +18:27:39 [ 70] [ 3] [301] +18:27:39 ============================================================================ +18:27:39 Calculate Source COMM Id = 2 +18:27:39 ============================================================================ +18:27:39 + + +waiting on router queue for slot.... +18:27:40 ============================================================================ +18:27:40 Slot Id : <467> +18:27:40 Transaction Type : REQUEST +18:27:40 Received From : +18:27:40 ============================================================================ +18:27:40 FNo. Len. Field Value +18:27:40 ============================================================================ +18:27:40 [ 1] [ 4] [0200] +18:27:40 [ 2] [ 16] [1808930500012687] +18:27:40 [ 3] [ 6] [010000] +18:27:40 [ 4] [ 12] [000100000000] +18:27:40 [ 7] [ 10] [0320182529] +18:27:40 [ 11] [ 6] [954721] +18:27:40 [ 12] [ 6] [182529] +18:27:40 [ 13] [ 4] [0320] +18:27:40 [ 15] [ 4] [0320] +18:27:40 [ 18] [ 4] [6011] +18:27:40 [ 19] [ 3] [418] +18:27:40 [ 22] [ 3] [021] +18:27:40 [ 25] [ 2] [01] +18:27:40 [ 28] [ 9] [D00002000] +18:27:40 [ 32] [ 6] [668899] +18:27:40 [ 35] [ 27] [1808930500012687=1803500028] +18:27:40 [ 37] [ 12] [507901489391] +18:27:40 [ 41] [ 8] [03515001] +18:27:40 [ 42] [ 15] [APT ] +18:27:40 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:27:40 [ 49] [ 3] [418] +18:27:40 [ 52] [ 16] [F14AC5155561B4B1] +18:27:40 ============================================================================ +18:27:40 + + +waiting on router queue for slot.... +18:27:40 Sending to : +18:27:40 ============================================================================ +18:27:40 Sending to : +18:27:40 ============================================================================ +18:27:40 ============================================================================ +18:27:40 Slot Id : <7> +18:27:40 Transaction Type : REQUEST +18:27:40 Received From : +18:27:40 ============================================================================ +18:27:40 FNo. Len. Field Value +18:27:40 ============================================================================ +18:27:40 [ 1] [ 4] [0200] +18:27:40 [ 2] [ 16] [1808930200050995] +18:27:40 [ 3] [ 6] [010000] +18:27:40 [ 4] [ 12] [000002000000] +18:27:40 [ 7] [ 10] [0320182529] +18:27:40 [ 11] [ 6] [954722] +18:27:40 [ 12] [ 6] [182529] +18:27:40 [ 13] [ 4] [0320] +18:27:40 [ 15] [ 4] [0320] +18:27:40 [ 18] [ 4] [6011] +18:27:40 [ 19] [ 3] [418] +18:27:40 [ 22] [ 3] [021] +18:27:40 [ 25] [ 2] [01] +18:27:40 [ 28] [ 9] [D00002000] +18:27:40 [ 32] [ 6] [668899] +18:27:40 [ 35] [ 27] [1808930200050995=1803500757] +18:27:40 [ 37] [ 12] [507901203971] +18:27:40 [ 41] [ 8] [03020012] +18:27:40 [ 42] [ 15] [APT ] +18:27:40 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +18:27:40 [ 49] [ 3] [418] +18:27:40 [ 52] [ 16] [AFD42E29B67B7894] +18:27:40 ============================================================================ +18:27:40 + + +waiting on router queue for slot.... +18:27:40 Sending to : +18:27:40 ============================================================================ +18:27:40 Sending to : +18:27:40 ============================================================================ +18:27:40 ============================================================================ +18:27:40 Slot Id : <467> +18:27:40 Transaction Type : REQUEST +18:27:40 Received From : +18:27:40 ============================================================================ +18:27:40 FNo. Len. Field Value +18:27:40 ============================================================================ +18:27:40 [ 1] [ 4] [0200] +18:27:40 [ 2] [ 16] [1808930500012687] +18:27:40 [ 3] [ 6] [010000] +18:27:40 [ 4] [ 12] [000100000000] +18:27:40 [ 7] [ 10] [0320182529] +18:27:40 [ 11] [ 6] [954721] +18:27:40 [ 12] [ 6] [182529] +18:27:40 [ 13] [ 4] [0320] +18:27:40 [ 15] [ 4] [0320] +18:27:40 [ 18] [ 4] [6011] +18:27:40 [ 19] [ 3] [418] +18:27:40 [ 22] [ 3] [021] +18:27:40 [ 25] [ 2] [01] +18:27:40 [ 28] [ 9] [D00002000] +18:27:40 [ 32] [ 6] [668899] +18:27:40 [ 35] [ 27] [1808930500012687=1803500028] +18:27:40 [ 37] [ 12] [507901489391] +18:27:40 [ 41] [ 8] [03515001] +18:27:40 [ 42] [ 15] [APT ] +18:27:40 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:27:40 [ 49] [ 3] [418] +18:27:40 [ 52] [ 16] [F14AC5155561B4B1] +18:27:40 ============================================================================ +18:27:40 + + +waiting on router queue for slot.... +18:27:40 Sending to : +18:27:40 ============================================================================ +18:27:40 ============================================================================ +18:27:40 Slot Id : <467> +18:27:40 Transaction Type : REQUEST +18:27:40 Received From : +18:27:40 ============================================================================ +18:27:40 FNo. Len. Field Value +18:27:40 ============================================================================ +18:27:40 [ 1] [ 4] [0200] +18:27:40 [ 2] [ 16] [1808930500012687] +18:27:40 [ 3] [ 6] [010000] +18:27:40 [ 4] [ 12] [000100000000] +18:27:40 [ 7] [ 10] [0320182529] +18:27:40 [ 11] [ 6] [954721] +18:27:40 [ 12] [ 6] [182529] +18:27:40 [ 13] [ 4] [0320] +18:27:40 [ 15] [ 4] [0320] +18:27:40 [ 18] [ 4] [6011] +18:27:40 [ 19] [ 3] [418] +18:27:40 [ 22] [ 3] [021] +18:27:40 [ 25] [ 2] [01] +18:27:40 [ 28] [ 9] [D00002000] +18:27:40 [ 32] [ 6] [668899] +18:27:40 [ 35] [ 27] [1808930500012687=1803500028] +18:27:40 [ 37] [ 12] [507901489391] +18:27:40 [ 41] [ 8] [03515001] +18:27:40 [ 42] [ 15] [APT ] +18:27:40 [ 43] [ 40] [ CHAMPASAK UNIT CHAMPASAK ] +18:27:40 [ 49] [ 3] [418] +18:27:40 [ 52] [ 16] [15E6262FB2DD77B0] +18:27:40 ============================================================================ +18:27:40 + + +waiting on router queue for slot.... +18:27:40 Sending to : <2> +18:27:40 ============================================================================ +18:27:40 ============================================================================ +18:27:40 Slot Id : <7> +18:27:40 Transaction Type : REQUEST +18:27:40 Received From : +18:27:40 ============================================================================ +18:27:40 FNo. Len. Field Value +18:27:40 ============================================================================ +18:27:40 [ 1] [ 4] [0200] +18:27:40 [ 2] [ 16] [1808930200050995] +18:27:40 [ 3] [ 6] [010000] +18:27:40 [ 4] [ 12] [000002000000] +18:27:40 [ 7] [ 10] [0320182529] +18:27:40 [ 11] [ 6] [954722] +18:27:40 [ 12] [ 6] [182529] +18:27:40 [ 13] [ 4] [0320] +18:27:40 [ 15] [ 4] [0320] +18:27:40 [ 18] [ 4] [6011] +18:27:40 [ 19] [ 3] [418] +18:27:40 [ 22] [ 3] [021] +18:27:40 [ 25] [ 2] [01] +18:27:40 [ 28] [ 9] [D00002000] +18:27:40 [ 32] [ 6] [668899] +18:27:40 [ 35] [ 27] [1808930200050995=1803500757] +18:27:40 [ 37] [ 12] [507901203971] +18:27:40 [ 41] [ 8] [03020012] +18:27:40 [ 42] [ 15] [APT ] +18:27:40 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +18:27:40 [ 49] [ 3] [418] +18:27:40 [ 52] [ 16] [AFD42E29B67B7894] +18:27:40 ============================================================================ +18:27:40 + + +waiting on router queue for slot.... +18:27:40 Sending to : +18:27:40 ============================================================================ +18:27:40 ============================================================================ +18:27:40 Slot Id : <7> +18:27:40 Transaction Type : REQUEST +18:27:40 Received From : +18:27:40 ============================================================================ +18:27:40 FNo. Len. Field Value +18:27:40 ============================================================================ +18:27:40 [ 1] [ 4] [0200] +18:27:40 [ 2] [ 16] [1808930200050995] +18:27:40 [ 3] [ 6] [010000] +18:27:40 [ 4] [ 12] [000002000000] +18:27:40 [ 7] [ 10] [0320182529] +18:27:40 [ 11] [ 6] [954722] +18:27:40 [ 12] [ 6] [182529] +18:27:40 [ 13] [ 4] [0320] +18:27:40 [ 15] [ 4] [0320] +18:27:40 [ 18] [ 4] [6011] +18:27:40 [ 19] [ 3] [418] +18:27:40 [ 22] [ 3] [021] +18:27:40 [ 25] [ 2] [01] +18:27:40 [ 28] [ 9] [D00002000] +18:27:40 [ 32] [ 6] [668899] +18:27:40 [ 35] [ 27] [1808930200050995=1803500757] +18:27:40 [ 37] [ 12] [507901203971] +18:27:40 [ 41] [ 8] [03020012] +18:27:40 [ 42] [ 15] [APT ] +18:27:40 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +18:27:40 [ 49] [ 3] [418] +18:27:40 [ 52] [ 16] [20FE3C03A28B491F] +18:27:40 ============================================================================ +18:27:40 + + +waiting on router queue for slot.... +18:27:40 Sending to : <2> +18:27:40 ============================================================================ +18:27:44 ============================================================================ +18:27:44 Slot Id : <7> +18:27:44 Transaction Type : RESPONSE +18:27:44 Received From : +18:27:44 ============================================================================ +18:27:44 FNo. Len. Field Value +18:27:44 ============================================================================ +18:27:44 [ 1] [ 4] [0210] +18:27:44 [ 2] [ 16] [1808930200050995] +18:27:44 [ 3] [ 6] [010000] +18:27:44 [ 4] [ 12] [000002000000] +18:27:44 [ 6] [ 12] [000002000000] +18:27:44 [ 7] [ 10] [0320182529] +18:27:44 [ 11] [ 6] [954722] +18:27:44 [ 12] [ 6] [182529] +18:27:44 [ 13] [ 4] [0320] +18:27:44 [ 18] [ 4] [6011] +18:27:44 [ 19] [ 3] [418] +18:27:44 [ 22] [ 3] [021] +18:27:44 [ 32] [ 6] [668899] +18:27:44 [ 35] [ 27] [1808930200050995=1803500757] +18:27:44 [ 37] [ 12] [507901203971] +18:27:44 [ 38] [ 6] [954722] +18:27:44 [ 39] [ 2] [00] +18:27:44 [ 41] [ 8] [03020012] +18:27:44 [ 49] [ 3] [418] +18:27:44 [ 52] [ 16] [20FE3C03A28B491F] +18:27:44 [ 54] [ 20] [1001418C000399309300] +18:27:44 ============================================================================ +18:27:44 Sending to : +18:27:44 ============================================================================ +18:27:44 + + +waiting on router queue for slot.... +18:27:45 ============================================================================ +18:27:45 Slot Id : <7> +18:27:45 Transaction Type : RESPONSE +18:27:45 Received From : +18:27:45 ============================================================================ +18:27:45 FNo. Len. Field Value +18:27:45 ============================================================================ +18:27:45 [ 1] [ 4] [0210] +18:27:45 [ 2] [ 16] [1808930200050995] +18:27:45 [ 3] [ 6] [010000] +18:27:45 [ 4] [ 12] [000002000000] +18:27:45 [ 6] [ 12] [000002000000] +18:27:45 [ 7] [ 10] [0320182529] +18:27:45 [ 11] [ 6] [954722] +18:27:45 [ 12] [ 6] [182529] +18:27:45 [ 13] [ 4] [0320] +18:27:45 [ 18] [ 4] [6011] +18:27:45 [ 19] [ 3] [418] +18:27:45 [ 22] [ 3] [021] +18:27:45 [ 32] [ 6] [668899] +18:27:45 [ 35] [ 27] [1808930200050995=1803500757] +18:27:45 [ 37] [ 12] [507901203971] +18:27:45 [ 38] [ 6] [954722] +18:27:45 [ 39] [ 2] [00] +18:27:45 [ 41] [ 8] [03020012] +18:27:45 [ 49] [ 3] [418] +18:27:45 [ 52] [ 16] [20FE3C03A28B491F] +18:27:45 [ 54] [ 20] [1001418C000399309300] +18:27:45 ============================================================================ +18:27:45 Calculate Source COMM Id = 4 +18:27:45 ============================================================================ +18:27:45 + + +waiting on router queue for slot.... +18:27:46 ============================================================================ +18:27:46 Slot Id : <467> +18:27:46 Transaction Type : RESPONSE +18:27:46 Received From : +18:27:46 ============================================================================ +18:27:46 FNo. Len. Field Value +18:27:46 ============================================================================ +18:27:46 [ 1] [ 4] [0210] +18:27:46 [ 2] [ 16] [1808930500012687] +18:27:46 [ 3] [ 6] [010000] +18:27:46 [ 4] [ 12] [000100000000] +18:27:46 [ 6] [ 12] [000100000000] +18:27:46 [ 7] [ 10] [0320182529] +18:27:46 [ 11] [ 6] [954721] +18:27:46 [ 12] [ 6] [182529] +18:27:46 [ 13] [ 4] [0320] +18:27:46 [ 18] [ 4] [6011] +18:27:46 [ 19] [ 3] [418] +18:27:46 [ 22] [ 3] [021] +18:27:46 [ 32] [ 6] [668899] +18:27:46 [ 35] [ 27] [1808930500012687=1803500028] +18:27:46 [ 37] [ 12] [507901489391] +18:27:46 [ 38] [ 6] [954721] +18:27:46 [ 39] [ 2] [00] +18:27:46 [ 41] [ 8] [03515001] +18:27:46 [ 49] [ 3] [418] +18:27:46 [ 52] [ 16] [15E6262FB2DD77B0] +18:27:46 [ 54] [ 20] [1001418C000007484700] +18:27:46 ============================================================================ +18:27:46 Sending to : +18:27:46 ============================================================================ +18:27:46 + + +waiting on router queue for slot.... +18:27:47 ============================================================================ +18:27:47 Slot Id : <467> +18:27:47 Transaction Type : RESPONSE +18:27:47 Received From : +18:27:47 ============================================================================ +18:27:47 FNo. Len. Field Value +18:27:47 ============================================================================ +18:27:47 [ 1] [ 4] [0210] +18:27:47 [ 2] [ 16] [1808930500012687] +18:27:47 [ 3] [ 6] [010000] +18:27:47 [ 4] [ 12] [000100000000] +18:27:47 [ 6] [ 12] [000100000000] +18:27:47 [ 7] [ 10] [0320182529] +18:27:47 [ 11] [ 6] [954721] +18:27:47 [ 12] [ 6] [182529] +18:27:47 [ 13] [ 4] [0320] +18:27:47 [ 18] [ 4] [6011] +18:27:47 [ 19] [ 3] [418] +18:27:47 [ 22] [ 3] [021] +18:27:47 [ 32] [ 6] [668899] +18:27:47 [ 35] [ 27] [1808930500012687=1803500028] +18:27:47 [ 37] [ 12] [507901489391] +18:27:47 [ 38] [ 6] [954721] +18:27:47 [ 39] [ 2] [00] +18:27:47 [ 41] [ 8] [03515001] +18:27:47 [ 49] [ 3] [418] +18:27:47 [ 52] [ 16] [15E6262FB2DD77B0] +18:27:47 [ 54] [ 20] [1001418C000007484700] +18:27:47 ============================================================================ +18:27:47 Calculate Source COMM Id = 4 +18:27:47 ============================================================================ +18:27:47 + + +waiting on router queue for slot.... +18:27:54 ============================================================================ +18:27:54 Slot Id : <52> +18:27:54 Transaction Type : REQUEST +18:27:54 Received From : +18:27:54 ============================================================================ +18:27:54 FNo. Len. Field Value +18:27:54 ============================================================================ +18:27:54 [ 1] [ 4] [0200] +18:27:54 [ 2] [ 16] [6688990050030160] +18:27:54 [ 3] [ 6] [010000] +18:27:54 [ 4] [ 12] [000010000000] +18:27:54 [ 7] [ 10] [0320112700] +18:27:54 [ 11] [ 6] [271217] +18:27:54 [ 12] [ 6] [182700] +18:27:54 [ 13] [ 4] [0320] +18:27:54 [ 14] [ 4] [9802] +18:27:54 [ 15] [ 4] [0320] +18:27:54 [ 18] [ 4] [6011] +18:27:54 [ 19] [ 3] [418] +18:27:54 [ 22] [ 3] [021] +18:27:54 [ 25] [ 2] [01] +18:27:54 [ 28] [ 9] [D00002000] +18:27:54 [ 32] [ 6] [180893] +18:27:54 [ 35] [ 37] [6688990050030160=98021261365206000000] +18:27:54 [ 37] [ 12] [507911271217] +18:27:54 [ 41] [ 8] [0102SAPA] +18:27:54 [ 42] [ 15] [999999 ] +18:27:54 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:27:54 [ 49] [ 3] [418] +18:27:54 [ 52] [ 16] [3BBEDA55857680C3] +18:27:54 ============================================================================ +18:27:54 + + +waiting on router queue for slot.... +18:27:54 Sending to : +18:27:54 ============================================================================ +18:27:54 Sending to : +18:27:54 ============================================================================ +18:27:54 ============================================================================ +18:27:54 Slot Id : <52> +18:27:54 Transaction Type : REQUEST +18:27:54 Received From : +18:27:54 ============================================================================ +18:27:54 FNo. Len. Field Value +18:27:54 ============================================================================ +18:27:54 [ 1] [ 4] [0200] +18:27:54 [ 2] [ 16] [6688990050030160] +18:27:54 [ 3] [ 6] [010000] +18:27:54 [ 4] [ 12] [000010000000] +18:27:54 [ 7] [ 10] [0320112700] +18:27:54 [ 11] [ 6] [271217] +18:27:54 [ 12] [ 6] [182700] +18:27:54 [ 13] [ 4] [0320] +18:27:54 [ 14] [ 4] [9802] +18:27:54 [ 15] [ 4] [0320] +18:27:54 [ 18] [ 4] [6011] +18:27:54 [ 19] [ 3] [418] +18:27:54 [ 22] [ 3] [021] +18:27:54 [ 25] [ 2] [01] +18:27:54 [ 28] [ 9] [D00002000] +18:27:54 [ 32] [ 6] [180893] +18:27:54 [ 35] [ 37] [6688990050030160=98021261365206000000] +18:27:54 [ 37] [ 12] [507911271217] +18:27:54 [ 41] [ 8] [0102SAPA] +18:27:54 [ 42] [ 15] [999999 ] +18:27:54 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:27:54 [ 49] [ 3] [418] +18:27:54 [ 52] [ 16] [3BBEDA55857680C3] +18:27:54 ============================================================================ +18:27:54 + + +waiting on router queue for slot.... +18:27:54 Sending to : +18:27:54 ============================================================================ +18:27:54 ============================================================================ +18:27:54 Slot Id : <52> +18:27:54 Transaction Type : REQUEST +18:27:54 Received From : +18:27:54 ============================================================================ +18:27:54 FNo. Len. Field Value +18:27:54 ============================================================================ +18:27:54 [ 1] [ 4] [0200] +18:27:54 [ 2] [ 16] [6688990050030160] +18:27:54 [ 3] [ 6] [010000] +18:27:54 [ 4] [ 12] [000010000000] +18:27:54 [ 7] [ 10] [0320112700] +18:27:54 [ 11] [ 6] [271217] +18:27:54 [ 12] [ 6] [182700] +18:27:54 [ 13] [ 4] [0320] +18:27:54 [ 14] [ 4] [9802] +18:27:54 [ 15] [ 4] [0320] +18:27:54 [ 18] [ 4] [6011] +18:27:54 [ 19] [ 3] [418] +18:27:54 [ 22] [ 3] [021] +18:27:54 [ 25] [ 2] [01] +18:27:54 [ 28] [ 9] [D00002000] +18:27:54 [ 32] [ 6] [180893] +18:27:54 [ 35] [ 37] [6688990050030160=98021261365206000000] +18:27:54 [ 37] [ 12] [507911271217] +18:27:54 [ 41] [ 8] [0102SAPA] +18:27:54 [ 42] [ 15] [999999 ] +18:27:54 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:27:54 [ 49] [ 3] [418] +18:27:54 [ 52] [ 16] [2B43558090BAD5EA] +18:27:54 ============================================================================ +18:27:54 + + +waiting on router queue for slot.... +18:27:54 Sending to : <0> +18:27:54 ============================================================================ +18:27:54 ============================================================================ +18:27:54 Slot Id : <52> +18:27:54 Transaction Type : RESPONSE +18:27:54 Received From : +18:27:54 ============================================================================ +18:27:54 FNo. Len. Field Value +18:27:54 ============================================================================ +18:27:54 [ 1] [ 4] [0210] +18:27:54 [ 2] [ 16] [6688990050030160] +18:27:54 [ 3] [ 6] [010000] +18:27:54 [ 4] [ 12] [000010000000] +18:27:54 [ 7] [ 10] [0320112700] +18:27:54 [ 11] [ 6] [271217] +18:27:54 [ 12] [ 6] [182700] +18:27:54 [ 13] [ 4] [0320] +18:27:54 [ 15] [ 4] [0320] +18:27:54 [ 18] [ 4] [6011] +18:27:54 [ 19] [ 3] [418] +18:27:54 [ 22] [ 3] [021] +18:27:54 [ 32] [ 6] [180893] +18:27:54 [ 35] [ 37] [6688990050030160=98021261365206000000] +18:27:54 [ 37] [ 12] [507911271217] +18:27:54 [ 39] [ 2] [14] +18:27:54 [ 41] [ 8] [0102SAPA] +18:27:54 [ 49] [ 3] [418] +18:27:54 ============================================================================ +18:27:54 Sending to : +18:27:54 ============================================================================ +18:27:54 + + +waiting on router queue for slot.... +18:27:55 ============================================================================ +18:27:55 Slot Id : <61> +18:27:55 Transaction Type : REQUEST +18:27:55 Received From : +18:27:55 ============================================================================ +18:27:55 FNo. Len. Field Value +18:27:55 ============================================================================ +18:27:55 [ 1] [ 4] [0800] +18:27:55 [ 7] [ 10] [0320112701] +18:27:55 [ 11] [ 6] [157706] +18:27:55 [ 70] [ 3] [301] +18:27:55 ============================================================================ +18:27:55 + + +waiting on router queue for slot.... +18:27:55 Sending to : +18:27:55 ============================================================================ +18:27:55 ============================================================================ +18:27:55 Slot Id : <61> +18:27:55 Transaction Type : RESPONSE +18:27:55 Received From : +18:27:55 ============================================================================ +18:27:55 FNo. Len. Field Value +18:27:55 ============================================================================ +18:27:55 [ 1] [ 4] [0810] +18:27:55 [ 7] [ 10] [0320112701] +18:27:55 [ 11] [ 6] [157706] +18:27:55 [ 39] [ 2] [00] +18:27:55 [ 70] [ 3] [301] +18:27:55 ============================================================================ +18:27:55 Calculate Source COMM Id = 2 +18:27:55 ============================================================================ +18:27:55 + + +waiting on router queue for slot.... +18:27:55 ============================================================================ +18:27:55 Slot Id : <52> +18:27:55 Transaction Type : RESPONSE +18:27:55 Received From : +18:27:55 ============================================================================ +18:27:55 FNo. Len. Field Value +18:27:55 ============================================================================ +18:27:55 [ 1] [ 4] [0210] +18:27:55 [ 2] [ 16] [6688990050030160] +18:27:55 [ 3] [ 6] [010000] +18:27:55 [ 4] [ 12] [000010000000] +18:27:55 [ 7] [ 10] [0320112700] +18:27:55 [ 11] [ 6] [271217] +18:27:55 [ 12] [ 6] [182700] +18:27:55 [ 13] [ 4] [0320] +18:27:55 [ 15] [ 4] [0320] +18:27:55 [ 18] [ 4] [6011] +18:27:55 [ 19] [ 3] [418] +18:27:55 [ 22] [ 3] [021] +18:27:55 [ 32] [ 6] [180893] +18:27:55 [ 35] [ 37] [6688990050030160=98021261365206000000] +18:27:55 [ 37] [ 12] [507911271217] +18:27:55 [ 39] [ 2] [14] +18:27:55 [ 41] [ 8] [0102SAPA] +18:27:55 [ 49] [ 3] [418] +18:27:55 ============================================================================ +18:27:55 Calculate Source COMM Id = 2 +18:27:55 ============================================================================ +18:27:55 + + +waiting on router queue for slot.... +18:28:11 ============================================================================ +18:28:11 Slot Id : <44> +18:28:11 Transaction Type : REQUEST +18:28:11 Received From : +18:28:11 ============================================================================ +18:28:11 FNo. Len. Field Value +18:28:11 ============================================================================ +18:28:11 [ 1] [ 4] [0800] +18:28:11 [ 7] [ 10] [0320112718] +18:28:11 [ 11] [ 6] [157707] +18:28:11 [ 70] [ 3] [301] +18:28:11 ============================================================================ +18:28:11 + + +waiting on router queue for slot.... +18:28:11 Sending to : +18:28:11 ============================================================================ +18:28:11 ============================================================================ +18:28:11 Slot Id : <44> +18:28:11 Transaction Type : RESPONSE +18:28:11 Received From : +18:28:11 ============================================================================ +18:28:11 FNo. Len. Field Value +18:28:11 ============================================================================ +18:28:11 [ 1] [ 4] [0810] +18:28:11 [ 7] [ 10] [0320112718] +18:28:11 [ 11] [ 6] [157707] +18:28:11 [ 39] [ 2] [00] +18:28:11 [ 70] [ 3] [301] +18:28:11 ============================================================================ +18:28:11 Calculate Source COMM Id = 2 +18:28:11 ============================================================================ +18:28:11 + + +waiting on router queue for slot.... +18:28:13 ============================================================================ +18:28:13 Slot Id : <50> +18:28:13 Transaction Type : REQUEST +18:28:13 Received From : +18:28:13 ============================================================================ +18:28:13 FNo. Len. Field Value +18:28:13 ============================================================================ +18:28:13 [ 1] [ 4] [0800] +18:28:13 [ 7] [ 10] [0320112808] +18:28:13 [ 11] [ 6] [036798] +18:28:13 [ 37] [ 12] [507918036798] +18:28:13 [ 70] [ 3] [001] +18:28:13 ============================================================================ +18:28:13 + + +waiting on router queue for slot.... +18:28:13 Sending to : +18:28:13 ============================================================================ +18:28:13 ============================================================================ +18:28:13 Slot Id : <50> +18:28:13 Transaction Type : RESPONSE +18:28:13 Received From : +18:28:13 ============================================================================ +18:28:13 FNo. Len. Field Value +18:28:13 ============================================================================ +18:28:13 [ 1] [ 4] [0810] +18:28:13 [ 7] [ 10] [0320112808] +18:28:13 [ 11] [ 6] [036798] +18:28:13 [ 37] [ 12] [507918036798] +18:28:13 [ 39] [ 2] [00] +18:28:13 [ 70] [ 3] [001] +18:28:13 ============================================================================ +18:28:13 Calculate Source COMM Id = 0 +18:28:13 ============================================================================ +18:28:13 + + +waiting on router queue for slot.... +18:28:13 ============================================================================ +18:28:13 Slot Id : <25> +18:28:13 Transaction Type : REQUEST +18:28:13 Received From : +18:28:13 ============================================================================ +18:28:13 FNo. Len. Field Value +18:28:13 ============================================================================ +18:28:13 [ 1] [ 4] [0800] +18:28:13 [ 7] [ 10] [0321014002] +18:28:13 [ 11] [ 6] [184002] +18:28:13 [ 37] [ 12] [57918184002] +18:28:13 [ 70] [ 3] [301] +18:28:13 ============================================================================ +18:28:13 + + +waiting on router queue for slot.... +18:28:13 Sending to : +18:28:13 ============================================================================ +18:28:13 ============================================================================ +18:28:13 Slot Id : <25> +18:28:13 Transaction Type : RESPONSE +18:28:13 Received From : +18:28:13 ============================================================================ +18:28:13 FNo. Len. Field Value +18:28:13 ============================================================================ +18:28:13 [ 1] [ 4] [0810] +18:28:13 [ 7] [ 10] [0321014002] +18:28:13 [ 11] [ 6] [184002] +18:28:13 [ 37] [ 12] [579181840020] +18:28:13 [ 39] [ 2] [00] +18:28:13 [ 70] [ 3] [810] +18:28:13 ============================================================================ +18:28:13 Calculate Source COMM Id = 6 +18:28:13 ============================================================================ +18:28:13 + + +waiting on router queue for slot.... +18:28:23 ============================================================================ +18:28:23 Slot Id : <60> +18:28:23 Transaction Type : REQUEST +18:28:23 Received From : +18:28:23 ============================================================================ +18:28:23 FNo. Len. Field Value +18:28:23 ============================================================================ +18:28:23 [ 1] [ 4] [0800] +18:28:23 [ 2] [ 5] [02531] +18:28:23 [ 3] [ 6] [579188] +18:28:23 [ 7] [ 10] [0320112823] +18:28:23 [ 11] [ 6] [807484] +18:28:23 [ 15] [ 10] [0320112823] +18:28:23 [ 37] [ 11] [57918807484] +18:28:23 [ 70] [ 3] [001] +18:28:23 ============================================================================ +18:28:23 + + +waiting on router queue for slot.... +18:28:23 ============================================================================ +18:28:23 Slot Id : <60> +18:28:23 Transaction Type : RESPONSE +18:28:23 Received From : +18:28:23 ============================================================================ +18:28:23 FNo. Len. Field Value +18:28:23 ============================================================================ +18:28:23 [ 1] [ 4] [0810] +18:28:23 [ 7] [ 10] [0320112823] +18:28:23 [ 11] [ 6] [807484] +18:28:23 [ 15] [ 4] [0320] +18:28:23 [ 37] [ 12] [57918807484] +18:28:23 [ 39] [ 2] [00] +18:28:23 [ 70] [ 3] [001] +18:28:23 ============================================================================ +18:28:23 Sending to : +18:28:23 ============================================================================ +18:28:23 + + +waiting on router queue for slot.... +18:28:27 ============================================================================ +18:28:27 Slot Id : <15> +18:28:27 Transaction Type : REQUEST +18:28:27 Received From : +18:28:27 ============================================================================ +18:28:27 FNo. Len. Field Value +18:28:27 ============================================================================ +18:28:27 [ 1] [ 4] [0800] +18:28:27 [ 7] [ 10] [0320112733] +18:28:27 [ 11] [ 6] [157708] +18:28:27 [ 70] [ 3] [301] +18:28:27 ============================================================================ +18:28:27 + + +waiting on router queue for slot.... +18:28:27 Sending to : +18:28:27 ============================================================================ +18:28:27 ============================================================================ +18:28:27 Slot Id : <15> +18:28:27 Transaction Type : RESPONSE +18:28:27 Received From : +18:28:27 ============================================================================ +18:28:27 FNo. Len. Field Value +18:28:27 ============================================================================ +18:28:27 [ 1] [ 4] [0810] +18:28:27 [ 7] [ 10] [0320112733] +18:28:27 [ 11] [ 6] [157708] +18:28:27 [ 39] [ 2] [00] +18:28:27 [ 70] [ 3] [301] +18:28:27 ============================================================================ +18:28:27 Calculate Source COMM Id = 2 +18:28:27 ============================================================================ +18:28:27 + + +waiting on router queue for slot.... +18:28:42 ============================================================================ +18:28:42 Slot Id : <478> +18:28:42 Transaction Type : REQUEST +18:28:42 Received From : +18:28:42 ============================================================================ +18:28:42 FNo. Len. Field Value +18:28:42 ============================================================================ +18:28:42 [ 1] [ 4] [0800] +18:28:42 [ 7] [ 10] [0320112749] +18:28:42 [ 11] [ 6] [157709] +18:28:42 [ 70] [ 3] [301] +18:28:42 ============================================================================ +18:28:42 + + +waiting on router queue for slot.... +18:28:42 Sending to : +18:28:42 ============================================================================ +18:28:42 ============================================================================ +18:28:42 Slot Id : <478> +18:28:42 Transaction Type : RESPONSE +18:28:42 Received From : +18:28:42 ============================================================================ +18:28:42 FNo. Len. Field Value +18:28:42 ============================================================================ +18:28:42 [ 1] [ 4] [0810] +18:28:42 [ 7] [ 10] [0320112749] +18:28:42 [ 11] [ 6] [157709] +18:28:42 [ 39] [ 2] [00] +18:28:42 [ 70] [ 3] [301] +18:28:42 ============================================================================ +18:28:42 Calculate Source COMM Id = 2 +18:28:42 ============================================================================ +18:28:42 + + +waiting on router queue for slot.... +18:28:52 ============================================================================ +18:28:52 Slot Id : <63> +18:28:52 Transaction Type : REQUEST +18:28:52 Received From : +18:28:52 ============================================================================ +18:28:52 FNo. Len. Field Value +18:28:52 ============================================================================ +18:28:52 [ 1] [ 4] [0800] +18:28:52 [ 7] [ 10] [0320112759] +18:28:52 [ 11] [ 6] [157710] +18:28:52 [ 70] [ 3] [301] +18:28:52 ============================================================================ +18:28:52 + + +waiting on router queue for slot.... +18:28:52 Sending to : +18:28:52 ============================================================================ +18:28:52 ============================================================================ +18:28:52 Slot Id : <63> +18:28:52 Transaction Type : RESPONSE +18:28:52 Received From : +18:28:52 ============================================================================ +18:28:52 FNo. Len. Field Value +18:28:52 ============================================================================ +18:28:52 [ 1] [ 4] [0810] +18:28:52 [ 7] [ 10] [0320112759] +18:28:52 [ 11] [ 6] [157710] +18:28:52 [ 39] [ 2] [00] +18:28:52 [ 70] [ 3] [301] +18:28:52 ============================================================================ +18:28:52 Calculate Source COMM Id = 2 +18:28:52 ============================================================================ +18:28:52 + + +waiting on router queue for slot.... +18:29:08 ============================================================================ +18:29:08 Slot Id : <38> +18:29:08 Transaction Type : REQUEST +18:29:08 Received From : +18:29:08 ============================================================================ +18:29:08 FNo. Len. Field Value +18:29:08 ============================================================================ +18:29:08 [ 1] [ 4] [0800] +18:29:08 [ 7] [ 10] [0320112814] +18:29:08 [ 11] [ 6] [157711] +18:29:08 [ 70] [ 3] [301] +18:29:08 ============================================================================ +18:29:08 + + +waiting on router queue for slot.... +18:29:08 Sending to : +18:29:08 ============================================================================ +18:29:08 ============================================================================ +18:29:08 Slot Id : <38> +18:29:08 Transaction Type : RESPONSE +18:29:08 Received From : +18:29:08 ============================================================================ +18:29:08 FNo. Len. Field Value +18:29:08 ============================================================================ +18:29:08 [ 1] [ 4] [0810] +18:29:08 [ 7] [ 10] [0320112814] +18:29:08 [ 11] [ 6] [157711] +18:29:08 [ 39] [ 2] [00] +18:29:08 [ 70] [ 3] [301] +18:29:08 ============================================================================ +18:29:08 Calculate Source COMM Id = 2 +18:29:08 ============================================================================ +18:29:08 + + +waiting on router queue for slot.... +18:29:09 ============================================================================ +18:29:09 Slot Id : <73> +18:29:09 Transaction Type : REQUEST +18:29:09 Received From : +18:29:09 ============================================================================ +18:29:09 FNo. Len. Field Value +18:29:09 ============================================================================ +18:29:09 [ 1] [ 4] [0200] +18:29:09 [ 2] [ 16] [6688990050030160] +18:29:09 [ 3] [ 6] [301000] +18:29:09 [ 7] [ 10] [0320112814] +18:29:09 [ 11] [ 6] [271222] +18:29:09 [ 12] [ 6] [182814] +18:29:09 [ 13] [ 4] [0320] +18:29:09 [ 14] [ 4] [9802] +18:29:09 [ 15] [ 4] [0320] +18:29:09 [ 18] [ 4] [6011] +18:29:09 [ 19] [ 3] [418] +18:29:09 [ 22] [ 3] [021] +18:29:09 [ 25] [ 2] [01] +18:29:09 [ 32] [ 6] [180893] +18:29:09 [ 35] [ 37] [6688990050030160=98021261365206000000] +18:29:09 [ 37] [ 12] [507911271222] +18:29:09 [ 41] [ 8] [0102SAPA] +18:29:09 [ 42] [ 15] [999999 ] +18:29:09 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:29:09 [ 49] [ 3] [418] +18:29:09 [ 52] [ 16] [3BBEDA55857680C3] +18:29:09 ============================================================================ +18:29:09 + + +waiting on router queue for slot.... +18:29:09 Sending to : +18:29:09 ============================================================================ +18:29:09 Sending to : +18:29:09 ============================================================================ +18:29:10 ============================================================================ +18:29:10 Slot Id : <73> +18:29:10 Transaction Type : REQUEST +18:29:10 Received From : +18:29:10 ============================================================================ +18:29:10 FNo. Len. Field Value +18:29:10 ============================================================================ +18:29:10 [ 1] [ 4] [0200] +18:29:10 [ 2] [ 16] [6688990050030160] +18:29:10 [ 3] [ 6] [301000] +18:29:10 [ 7] [ 10] [0320112814] +18:29:10 [ 11] [ 6] [271222] +18:29:10 [ 12] [ 6] [182814] +18:29:10 [ 13] [ 4] [0320] +18:29:10 [ 14] [ 4] [9802] +18:29:10 [ 15] [ 4] [0320] +18:29:10 [ 18] [ 4] [6011] +18:29:10 [ 19] [ 3] [418] +18:29:10 [ 22] [ 3] [021] +18:29:10 [ 25] [ 2] [01] +18:29:10 [ 32] [ 6] [180893] +18:29:10 [ 35] [ 37] [6688990050030160=98021261365206000000] +18:29:10 [ 37] [ 12] [507911271222] +18:29:10 [ 41] [ 8] [0102SAPA] +18:29:10 [ 42] [ 15] [999999 ] +18:29:10 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:29:10 [ 49] [ 3] [418] +18:29:10 [ 52] [ 16] [3BBEDA55857680C3] +18:29:10 ============================================================================ +18:29:10 + + +waiting on router queue for slot.... +18:29:10 Sending to : +18:29:10 ============================================================================ +18:29:10 ============================================================================ +18:29:10 Slot Id : <73> +18:29:10 Transaction Type : REQUEST +18:29:10 Received From : +18:29:10 ============================================================================ +18:29:10 FNo. Len. Field Value +18:29:10 ============================================================================ +18:29:10 [ 1] [ 4] [0200] +18:29:10 [ 2] [ 16] [6688990050030160] +18:29:10 [ 3] [ 6] [301000] +18:29:10 [ 7] [ 10] [0320112814] +18:29:10 [ 11] [ 6] [271222] +18:29:10 [ 12] [ 6] [182814] +18:29:10 [ 13] [ 4] [0320] +18:29:10 [ 14] [ 4] [9802] +18:29:10 [ 15] [ 4] [0320] +18:29:10 [ 18] [ 4] [6011] +18:29:10 [ 19] [ 3] [418] +18:29:10 [ 22] [ 3] [021] +18:29:10 [ 25] [ 2] [01] +18:29:10 [ 32] [ 6] [180893] +18:29:10 [ 35] [ 37] [6688990050030160=98021261365206000000] +18:29:10 [ 37] [ 12] [507911271222] +18:29:10 [ 41] [ 8] [0102SAPA] +18:29:10 [ 42] [ 15] [999999 ] +18:29:10 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:29:10 [ 49] [ 3] [418] +18:29:10 [ 52] [ 16] [2B43558090BAD5EA] +18:29:10 ============================================================================ +18:29:10 + + +waiting on router queue for slot.... +18:29:10 Sending to : <0> +18:29:10 ============================================================================ +18:29:10 ============================================================================ +18:29:10 Slot Id : <73> +18:29:10 Transaction Type : RESPONSE +18:29:10 Received From : +18:29:10 ============================================================================ +18:29:10 FNo. Len. Field Value +18:29:10 ============================================================================ +18:29:10 [ 1] [ 4] [0210] +18:29:10 [ 2] [ 16] [6688990050030160] +18:29:10 [ 3] [ 6] [301000] +18:29:10 [ 4] [ 12] [000000000000] +18:29:10 [ 7] [ 10] [0320112814] +18:29:10 [ 11] [ 6] [271222] +18:29:10 [ 12] [ 6] [182814] +18:29:10 [ 13] [ 4] [0320] +18:29:10 [ 15] [ 4] [0320] +18:29:10 [ 18] [ 4] [6011] +18:29:10 [ 19] [ 3] [418] +18:29:10 [ 22] [ 3] [021] +18:29:10 [ 32] [ 6] [180893] +18:29:10 [ 35] [ 37] [6688990050030160=98021261365206000000] +18:29:10 [ 37] [ 12] [507911271222] +18:29:10 [ 39] [ 2] [14] +18:29:10 [ 41] [ 8] [0102SAPA] +18:29:10 [ 49] [ 3] [418] +18:29:10 ============================================================================ +18:29:10 Sending to : +18:29:10 ============================================================================ +18:29:10 + + +waiting on router queue for slot.... +18:29:11 ============================================================================ +18:29:11 Slot Id : <73> +18:29:11 Transaction Type : RESPONSE +18:29:11 Received From : +18:29:11 ============================================================================ +18:29:11 FNo. Len. Field Value +18:29:11 ============================================================================ +18:29:11 [ 1] [ 4] [0210] +18:29:11 [ 2] [ 16] [6688990050030160] +18:29:11 [ 3] [ 6] [301000] +18:29:11 [ 4] [ 12] [000000000000] +18:29:11 [ 7] [ 10] [0320112814] +18:29:11 [ 11] [ 6] [271222] +18:29:11 [ 12] [ 6] [182814] +18:29:11 [ 13] [ 4] [0320] +18:29:11 [ 15] [ 4] [0320] +18:29:11 [ 18] [ 4] [6011] +18:29:11 [ 19] [ 3] [418] +18:29:11 [ 22] [ 3] [021] +18:29:11 [ 32] [ 6] [180893] +18:29:11 [ 35] [ 37] [6688990050030160=98021261365206000000] +18:29:11 [ 37] [ 12] [507911271222] +18:29:11 [ 39] [ 2] [14] +18:29:11 [ 41] [ 8] [0102SAPA] +18:29:11 [ 49] [ 3] [418] +18:29:11 ============================================================================ +18:29:11 Calculate Source COMM Id = 2 +18:29:11 ============================================================================ +18:29:11 + + +waiting on router queue for slot.... +18:29:18 ============================================================================ +18:29:18 Slot Id : <68> +18:29:18 Transaction Type : REQUEST +18:29:18 Received From : +18:29:18 ============================================================================ +18:29:18 FNo. Len. Field Value +18:29:18 ============================================================================ +18:29:18 [ 1] [ 4] [0800] +18:29:18 [ 7] [ 10] [0321014107] +18:29:18 [ 11] [ 6] [184107] +18:29:18 [ 37] [ 12] [57918184107] +18:29:18 [ 70] [ 3] [301] +18:29:18 ============================================================================ +18:29:18 + + +waiting on router queue for slot.... +18:29:18 Sending to : +18:29:18 ============================================================================ +18:29:18 ============================================================================ +18:29:18 Slot Id : <68> +18:29:18 Transaction Type : RESPONSE +18:29:18 Received From : +18:29:18 ============================================================================ +18:29:18 FNo. Len. Field Value +18:29:18 ============================================================================ +18:29:18 [ 1] [ 4] [0810] +18:29:18 [ 7] [ 10] [0321014107] +18:29:18 [ 11] [ 6] [184107] +18:29:18 [ 37] [ 12] [579181841070] +18:29:18 [ 39] [ 2] [00] +18:29:18 [ 70] [ 3] [810] +18:29:18 ============================================================================ +18:29:18 Calculate Source COMM Id = 6 +18:29:18 ============================================================================ +18:29:18 + + +waiting on router queue for slot.... +18:29:21 ============================================================================ +18:29:21 Slot Id : <487> +18:29:21 Transaction Type : REQUEST +18:29:21 Received From : +18:29:21 ============================================================================ +18:29:21 FNo. Len. Field Value +18:29:21 ============================================================================ +18:29:21 [ 1] [ 4] [0200] +18:29:21 [ 2] [ 16] [6213543000016393] +18:29:21 [ 3] [ 6] [010000] +18:29:21 [ 4] [ 12] [000020000000] +18:29:21 [ 7] [ 10] [0320182710] +18:29:21 [ 11] [ 6] [954748] +18:29:21 [ 12] [ 6] [182710] +18:29:21 [ 13] [ 4] [0320] +18:29:21 [ 15] [ 4] [0320] +18:29:21 [ 18] [ 4] [6011] +18:29:21 [ 19] [ 3] [418] +18:29:21 [ 22] [ 3] [021] +18:29:21 [ 25] [ 2] [01] +18:29:21 [ 28] [ 9] [D00002000] +18:29:21 [ 32] [ 6] [668899] +18:29:21 [ 35] [ 32] [6213543000016393=491212011639591] +18:29:21 [ 37] [ 12] [507902093456] +18:29:21 [ 41] [ 8] [03020021] +18:29:21 [ 42] [ 15] [APT ] +18:29:21 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +18:29:21 [ 49] [ 3] [418] +18:29:21 [ 52] [ 16] [89CDFDBC0CADCCBB] +18:29:21 ============================================================================ +18:29:21 + + +waiting on router queue for slot.... +18:29:21 Sending to : +18:29:21 ============================================================================ +18:29:21 Sending to : +18:29:21 ============================================================================ +18:29:21 ============================================================================ +18:29:21 Slot Id : <487> +18:29:21 Transaction Type : REQUEST +18:29:21 Received From : +18:29:21 ============================================================================ +18:29:21 FNo. Len. Field Value +18:29:21 ============================================================================ +18:29:21 [ 1] [ 4] [0200] +18:29:21 [ 2] [ 16] [6213543000016393] +18:29:21 [ 3] [ 6] [010000] +18:29:21 [ 4] [ 12] [000020000000] +18:29:21 [ 7] [ 10] [0320182710] +18:29:21 [ 11] [ 6] [954748] +18:29:21 [ 12] [ 6] [182710] +18:29:21 [ 13] [ 4] [0320] +18:29:21 [ 15] [ 4] [0320] +18:29:21 [ 18] [ 4] [6011] +18:29:21 [ 19] [ 3] [418] +18:29:21 [ 22] [ 3] [021] +18:29:21 [ 25] [ 2] [01] +18:29:21 [ 28] [ 9] [D00002000] +18:29:21 [ 32] [ 6] [668899] +18:29:21 [ 35] [ 32] [6213543000016393=491212011639591] +18:29:21 [ 37] [ 12] [507902093456] +18:29:21 [ 41] [ 8] [03020021] +18:29:21 [ 42] [ 15] [APT ] +18:29:21 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +18:29:21 [ 49] [ 3] [418] +18:29:21 [ 52] [ 16] [89CDFDBC0CADCCBB] +18:29:21 ============================================================================ +18:29:21 + + +waiting on router queue for slot.... +18:29:21 Sending to : +18:29:21 ============================================================================ +18:29:21 ============================================================================ +18:29:21 Slot Id : <487> +18:29:21 Transaction Type : REQUEST +18:29:21 Received From : +18:29:21 ============================================================================ +18:29:21 FNo. Len. Field Value +18:29:21 ============================================================================ +18:29:21 [ 1] [ 4] [0200] +18:29:21 [ 2] [ 16] [6213543000016393] +18:29:21 [ 3] [ 6] [010000] +18:29:21 [ 4] [ 12] [000020000000] +18:29:21 [ 7] [ 10] [0320182710] +18:29:21 [ 11] [ 6] [954748] +18:29:21 [ 12] [ 6] [182710] +18:29:21 [ 13] [ 4] [0320] +18:29:21 [ 15] [ 4] [0320] +18:29:21 [ 18] [ 4] [6011] +18:29:21 [ 19] [ 3] [418] +18:29:21 [ 22] [ 3] [021] +18:29:21 [ 25] [ 2] [01] +18:29:21 [ 28] [ 9] [D00002000] +18:29:21 [ 32] [ 6] [668899] +18:29:21 [ 35] [ 32] [6213543000016393=491212011639591] +18:29:21 [ 37] [ 12] [507902093456] +18:29:21 [ 41] [ 8] [03020021] +18:29:21 [ 42] [ 15] [APT ] +18:29:21 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +18:29:21 [ 49] [ 3] [418] +18:29:21 [ 52] [ 16] [E2A4228DB4E6C002] +18:29:21 ============================================================================ +18:29:21 + + +waiting on router queue for slot.... +18:29:21 Sending to : <0> +18:29:21 ============================================================================ +18:29:22 ============================================================================ +18:29:22 Slot Id : <487> +18:29:22 Transaction Type : RESPONSE +18:29:22 Received From : +18:29:22 ============================================================================ +18:29:22 FNo. Len. Field Value +18:29:22 ============================================================================ +18:29:22 [ 1] [ 4] [0210] +18:29:22 [ 2] [ 16] [6213543000016393] +18:29:22 [ 3] [ 6] [010000] +18:29:22 [ 4] [ 12] [000020000000] +18:29:22 [ 7] [ 10] [0320182710] +18:29:22 [ 11] [ 6] [954748] +18:29:22 [ 12] [ 6] [182710] +18:29:22 [ 13] [ 4] [0320] +18:29:22 [ 15] [ 4] [0320] +18:29:22 [ 18] [ 4] [6011] +18:29:22 [ 19] [ 3] [418] +18:29:22 [ 32] [ 6] [668899] +18:29:22 [ 35] [ 32] [6213543000016393=491212011639591] +18:29:22 [ 37] [ 12] [507902093456] +18:29:22 [ 38] [ 6] [441398] +18:29:22 [ 39] [ 2] [00] +18:29:22 [ 41] [ 8] [03020021] +18:29:22 [ 49] [ 3] [418] +18:29:22 [ 54] [ 40] [0001418C0000860853170002418C000086085317] +18:29:22 ============================================================================ +18:29:22 Sending to : +18:29:22 ============================================================================ +18:29:22 + + +waiting on router queue for slot.... +18:29:23 ============================================================================ +18:29:23 Slot Id : <32> +18:29:23 Transaction Type : REQUEST +18:29:23 Received From : +18:29:23 ============================================================================ +18:29:23 FNo. Len. Field Value +18:29:23 ============================================================================ +18:29:23 [ 1] [ 4] [0800] +18:29:23 [ 7] [ 10] [0320112830] +18:29:23 [ 11] [ 6] [157712] +18:29:23 [ 70] [ 3] [301] +18:29:23 ============================================================================ +18:29:23 + + +waiting on router queue for slot.... +18:29:23 Sending to : +18:29:23 ============================================================================ +18:29:23 ============================================================================ +18:29:23 Slot Id : <32> +18:29:23 Transaction Type : RESPONSE +18:29:23 Received From : +18:29:23 ============================================================================ +18:29:23 FNo. Len. Field Value +18:29:23 ============================================================================ +18:29:23 [ 1] [ 4] [0810] +18:29:23 [ 7] [ 10] [0320112830] +18:29:23 [ 11] [ 6] [157712] +18:29:23 [ 39] [ 2] [00] +18:29:23 [ 70] [ 3] [301] +18:29:23 ============================================================================ +18:29:23 Calculate Source COMM Id = 2 +18:29:23 ============================================================================ +18:29:23 + + +waiting on router queue for slot.... +18:29:23 ============================================================================ +18:29:23 Slot Id : <487> +18:29:23 Transaction Type : RESPONSE +18:29:23 Received From : +18:29:23 ============================================================================ +18:29:23 FNo. Len. Field Value +18:29:23 ============================================================================ +18:29:23 [ 1] [ 4] [0210] +18:29:23 [ 2] [ 16] [6213543000016393] +18:29:23 [ 3] [ 6] [010000] +18:29:23 [ 4] [ 12] [000020000000] +18:29:23 [ 7] [ 10] [0320182710] +18:29:23 [ 11] [ 6] [954748] +18:29:23 [ 12] [ 6] [182710] +18:29:23 [ 13] [ 4] [0320] +18:29:23 [ 15] [ 4] [0320] +18:29:23 [ 18] [ 4] [6011] +18:29:23 [ 19] [ 3] [418] +18:29:23 [ 32] [ 6] [668899] +18:29:23 [ 35] [ 32] [6213543000016393=491212011639591] +18:29:23 [ 37] [ 12] [507902093456] +18:29:23 [ 38] [ 6] [441398] +18:29:23 [ 39] [ 2] [00] +18:29:23 [ 41] [ 8] [03020021] +18:29:23 [ 49] [ 3] [418] +18:29:23 [ 54] [ 40] [0001418C0000860853170002418C000086085317] +18:29:23 ============================================================================ +18:29:23 Calculate Source COMM Id = 4 +18:29:23 ============================================================================ +18:29:23 + + +waiting on router queue for slot.... +18:29:25 ============================================================================ +18:29:25 Slot Id : <26> +18:29:25 Transaction Type : REQUEST +18:29:25 Received From : +18:29:25 ============================================================================ +18:29:25 FNo. Len. Field Value +18:29:25 ============================================================================ +18:29:25 [ 1] [ 4] [0800] +18:29:25 [ 2] [ 5] [02531] +18:29:25 [ 3] [ 6] [579188] +18:29:25 [ 7] [ 10] [0320112925] +18:29:25 [ 11] [ 6] [807485] +18:29:25 [ 15] [ 10] [0320112925] +18:29:25 [ 37] [ 11] [57918807485] +18:29:25 [ 70] [ 3] [001] +18:29:25 ============================================================================ +18:29:25 + + +waiting on router queue for slot.... +18:29:25 ============================================================================ +18:29:25 Slot Id : <26> +18:29:25 Transaction Type : RESPONSE +18:29:25 Received From : +18:29:25 ============================================================================ +18:29:25 FNo. Len. Field Value +18:29:25 ============================================================================ +18:29:25 [ 1] [ 4] [0810] +18:29:25 [ 7] [ 10] [0320112925] +18:29:25 [ 11] [ 6] [807485] +18:29:25 [ 15] [ 4] [0320] +18:29:25 [ 37] [ 12] [57918807485] +18:29:25 [ 39] [ 2] [00] +18:29:25 [ 70] [ 3] [001] +18:29:25 ============================================================================ +18:29:25 Sending to : +18:29:25 ============================================================================ +18:29:25 + + +waiting on router queue for slot.... +18:29:29 ============================================================================ +18:29:29 Slot Id : <41> +18:29:29 Transaction Type : REQUEST +18:29:29 Received From : +18:29:29 ============================================================================ +18:29:29 FNo. Len. Field Value +18:29:29 ============================================================================ +18:29:29 [ 1] [ 4] [0200] +18:29:29 [ 2] [ 16] [6213544002031695] +18:29:29 [ 3] [ 6] [010000] +18:29:29 [ 4] [ 12] [000094000000] +18:29:29 [ 7] [ 10] [0320182718] +18:29:29 [ 11] [ 6] [954750] +18:29:29 [ 12] [ 6] [182718] +18:29:29 [ 13] [ 4] [0320] +18:29:29 [ 15] [ 4] [0320] +18:29:29 [ 18] [ 4] [6011] +18:29:29 [ 19] [ 3] [418] +18:29:29 [ 22] [ 3] [021] +18:29:29 [ 25] [ 2] [01] +18:29:29 [ 28] [ 9] [D00002000] +18:29:29 [ 32] [ 6] [668899] +18:29:29 [ 35] [ 32] [6213544002031695=491212013169607] +18:29:29 [ 37] [ 12] [507900285862] +18:29:29 [ 41] [ 8] [03010005] +18:29:29 [ 42] [ 15] [APT ] +18:29:29 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +18:29:29 [ 49] [ 3] [418] +18:29:29 [ 52] [ 16] [6C62224981805D94] +18:29:29 ============================================================================ +18:29:29 + + +waiting on router queue for slot.... +18:29:29 Sending to : +18:29:29 ============================================================================ +18:29:29 Sending to : +18:29:29 ============================================================================ +18:29:29 ============================================================================ +18:29:29 Slot Id : <41> +18:29:29 Transaction Type : REQUEST +18:29:29 Received From : +18:29:29 ============================================================================ +18:29:29 FNo. Len. Field Value +18:29:29 ============================================================================ +18:29:29 [ 1] [ 4] [0200] +18:29:29 [ 2] [ 16] [6213544002031695] +18:29:29 [ 3] [ 6] [010000] +18:29:29 [ 4] [ 12] [000094000000] +18:29:29 [ 7] [ 10] [0320182718] +18:29:29 [ 11] [ 6] [954750] +18:29:29 [ 12] [ 6] [182718] +18:29:29 [ 13] [ 4] [0320] +18:29:29 [ 15] [ 4] [0320] +18:29:29 [ 18] [ 4] [6011] +18:29:29 [ 19] [ 3] [418] +18:29:29 [ 22] [ 3] [021] +18:29:29 [ 25] [ 2] [01] +18:29:29 [ 28] [ 9] [D00002000] +18:29:29 [ 32] [ 6] [668899] +18:29:29 [ 35] [ 32] [6213544002031695=491212013169607] +18:29:29 [ 37] [ 12] [507900285862] +18:29:29 [ 41] [ 8] [03010005] +18:29:29 [ 42] [ 15] [APT ] +18:29:29 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +18:29:29 [ 49] [ 3] [418] +18:29:29 [ 52] [ 16] [6C62224981805D94] +18:29:29 ============================================================================ +18:29:29 + + +waiting on router queue for slot.... +18:29:29 Sending to : +18:29:29 ============================================================================ +18:29:29 ============================================================================ +18:29:29 Slot Id : <41> +18:29:29 Transaction Type : REQUEST +18:29:29 Received From : +18:29:29 ============================================================================ +18:29:29 FNo. Len. Field Value +18:29:29 ============================================================================ +18:29:29 [ 1] [ 4] [0200] +18:29:29 [ 2] [ 16] [6213544002031695] +18:29:29 [ 3] [ 6] [010000] +18:29:29 [ 4] [ 12] [000094000000] +18:29:29 [ 7] [ 10] [0320182718] +18:29:29 [ 11] [ 6] [954750] +18:29:29 [ 12] [ 6] [182718] +18:29:29 [ 13] [ 4] [0320] +18:29:29 [ 15] [ 4] [0320] +18:29:29 [ 18] [ 4] [6011] +18:29:29 [ 19] [ 3] [418] +18:29:29 [ 22] [ 3] [021] +18:29:29 [ 25] [ 2] [01] +18:29:29 [ 28] [ 9] [D00002000] +18:29:29 [ 32] [ 6] [668899] +18:29:29 [ 35] [ 32] [6213544002031695=491212013169607] +18:29:29 [ 37] [ 12] [507900285862] +18:29:29 [ 41] [ 8] [03010005] +18:29:29 [ 42] [ 15] [APT ] +18:29:29 [ 43] [ 40] [ LAK52 UNIT LAK52 LAO] +18:29:29 [ 49] [ 3] [418] +18:29:29 [ 52] [ 16] [229CF5555A7F663D] +18:29:29 ============================================================================ +18:29:29 + + +waiting on router queue for slot.... +18:29:29 Sending to : <0> +18:29:29 ============================================================================ +18:29:30 ============================================================================ +18:29:30 Slot Id : <41> +18:29:30 Transaction Type : RESPONSE +18:29:30 Received From : +18:29:30 ============================================================================ +18:29:30 FNo. Len. Field Value +18:29:30 ============================================================================ +18:29:30 [ 1] [ 4] [0210] +18:29:30 [ 2] [ 16] [6213544002031695] +18:29:30 [ 3] [ 6] [010000] +18:29:30 [ 4] [ 12] [000094000000] +18:29:30 [ 7] [ 10] [0320182718] +18:29:30 [ 11] [ 6] [954750] +18:29:30 [ 12] [ 6] [182718] +18:29:30 [ 13] [ 4] [0320] +18:29:30 [ 15] [ 4] [0320] +18:29:30 [ 18] [ 4] [6011] +18:29:30 [ 19] [ 3] [418] +18:29:30 [ 32] [ 6] [668899] +18:29:30 [ 35] [ 32] [6213544002031695=491212013169607] +18:29:30 [ 37] [ 12] [507900285862] +18:29:30 [ 38] [ 6] [550722] +18:29:30 [ 39] [ 2] [00] +18:29:30 [ 41] [ 8] [03010005] +18:29:30 [ 49] [ 3] [418] +18:29:30 [ 54] [ 40] [0001418C0000329891500002418C000032989150] +18:29:30 ============================================================================ +18:29:30 Sending to : +18:29:30 ============================================================================ +18:29:30 + + +waiting on router queue for slot.... +18:29:31 ============================================================================ +18:29:31 Slot Id : <41> +18:29:31 Transaction Type : RESPONSE +18:29:31 Received From : +18:29:31 ============================================================================ +18:29:31 FNo. Len. Field Value +18:29:31 ============================================================================ +18:29:31 [ 1] [ 4] [0210] +18:29:31 [ 2] [ 16] [6213544002031695] +18:29:31 [ 3] [ 6] [010000] +18:29:31 [ 4] [ 12] [000094000000] +18:29:31 [ 7] [ 10] [0320182718] +18:29:31 [ 11] [ 6] [954750] +18:29:31 [ 12] [ 6] [182718] +18:29:31 [ 13] [ 4] [0320] +18:29:31 [ 15] [ 4] [0320] +18:29:31 [ 18] [ 4] [6011] +18:29:31 [ 19] [ 3] [418] +18:29:31 [ 32] [ 6] [668899] +18:29:31 [ 35] [ 32] [6213544002031695=491212013169607] +18:29:31 [ 37] [ 12] [507900285862] +18:29:31 [ 38] [ 6] [550722] +18:29:31 [ 39] [ 2] [00] +18:29:31 [ 41] [ 8] [03010005] +18:29:31 [ 49] [ 3] [418] +18:29:31 [ 54] [ 40] [0001418C0000329891500002418C000032989150] +18:29:31 ============================================================================ +18:29:31 Calculate Source COMM Id = 4 +18:29:31 ============================================================================ +18:29:31 + + +waiting on router queue for slot.... +18:29:34 ============================================================================ +18:29:34 Slot Id : <20> +18:29:34 Transaction Type : REQUEST +18:29:34 Received From : +18:29:34 ============================================================================ +18:29:34 FNo. Len. Field Value +18:29:34 ============================================================================ +18:29:34 [ 1] [ 4] [0800] +18:29:34 [ 7] [ 10] [0320112841] +18:29:34 [ 11] [ 6] [157713] +18:29:34 [ 70] [ 3] [301] +18:29:34 ============================================================================ +18:29:34 + + +waiting on router queue for slot.... +18:29:34 Sending to : +18:29:34 ============================================================================ +18:29:34 ============================================================================ +18:29:34 Slot Id : <20> +18:29:34 Transaction Type : RESPONSE +18:29:34 Received From : +18:29:34 ============================================================================ +18:29:34 FNo. Len. Field Value +18:29:34 ============================================================================ +18:29:34 [ 1] [ 4] [0810] +18:29:34 [ 7] [ 10] [0320112841] +18:29:34 [ 11] [ 6] [157713] +18:29:34 [ 39] [ 2] [00] +18:29:34 [ 70] [ 3] [301] +18:29:34 ============================================================================ +18:29:34 Calculate Source COMM Id = 2 +18:29:34 ============================================================================ +18:29:34 + + +waiting on router queue for slot.... +18:29:51 ============================================================================ +18:29:51 Slot Id : <464> +18:29:51 Transaction Type : REQUEST +18:29:51 Received From : +18:29:51 ============================================================================ +18:29:51 FNo. Len. Field Value +18:29:51 ============================================================================ +18:29:51 [ 1] [ 4] [0800] +18:29:51 [ 7] [ 10] [0320112857] +18:29:51 [ 11] [ 6] [157714] +18:29:51 [ 70] [ 3] [301] +18:29:51 ============================================================================ +18:29:51 + + +waiting on router queue for slot.... +18:29:51 Sending to : +18:29:51 ============================================================================ +18:29:51 ============================================================================ +18:29:51 Slot Id : <464> +18:29:51 Transaction Type : RESPONSE +18:29:51 Received From : +18:29:51 ============================================================================ +18:29:51 FNo. Len. Field Value +18:29:51 ============================================================================ +18:29:51 [ 1] [ 4] [0810] +18:29:51 [ 7] [ 10] [0320112857] +18:29:51 [ 11] [ 6] [157714] +18:29:51 [ 39] [ 2] [00] +18:29:51 [ 70] [ 3] [301] +18:29:51 ============================================================================ +18:29:51 Calculate Source COMM Id = 2 +18:29:51 ============================================================================ +18:29:51 + + +waiting on router queue for slot.... +18:29:57 ============================================================================ +18:29:57 Slot Id : <48> +18:29:57 Transaction Type : REQUEST +18:29:57 Received From : +18:29:57 ============================================================================ +18:29:57 FNo. Len. Field Value +18:29:57 ============================================================================ +18:29:57 [ 1] [ 4] [0800] +18:29:57 [ 7] [ 10] [0320113742] +18:29:57 [ 11] [ 6] [047945] +18:29:57 [ 37] [ 12] [57918047945] +18:29:57 [ 70] [ 3] [301] +18:29:57 ============================================================================ +18:29:57 + + +waiting on router queue for slot.... +18:29:57 Sending to : +18:29:57 ============================================================================ +18:29:57 ============================================================================ +18:29:57 Slot Id : <48> +18:29:57 Transaction Type : RESPONSE +18:29:57 Received From : +18:29:57 ============================================================================ +18:29:57 FNo. Len. Field Value +18:29:57 ============================================================================ +18:29:57 [ 1] [ 4] [0810] +18:29:57 [ 7] [ 10] [0320113742] +18:29:57 [ 11] [ 6] [047945] +18:29:57 [ 37] [ 12] [579180479450] +18:29:57 [ 39] [ 2] [00] +18:29:57 [ 70] [ 3] [810] +18:29:57 ============================================================================ +18:29:57 Calculate Source COMM Id = 1 +18:29:57 ============================================================================ +18:29:57 + + +waiting on router queue for slot.... +18:30:02 ============================================================================ +18:30:02 Slot Id : <46> +18:30:02 Transaction Type : REQUEST +18:30:02 Received From : +18:30:02 ============================================================================ +18:30:02 FNo. Len. Field Value +18:30:02 ============================================================================ +18:30:02 [ 1] [ 4] [0800] +18:30:02 [ 7] [ 10] [0320112909] +18:30:02 [ 11] [ 6] [157715] +18:30:02 [ 70] [ 3] [301] +18:30:02 ============================================================================ +18:30:02 + + +waiting on router queue for slot.... +18:30:02 Sending to : +18:30:02 ============================================================================ +18:30:02 ============================================================================ +18:30:02 Slot Id : <46> +18:30:02 Transaction Type : RESPONSE +18:30:02 Received From : +18:30:02 ============================================================================ +18:30:02 FNo. Len. Field Value +18:30:02 ============================================================================ +18:30:02 [ 1] [ 4] [0810] +18:30:02 [ 7] [ 10] [0320112909] +18:30:02 [ 11] [ 6] [157715] +18:30:02 [ 39] [ 2] [00] +18:30:02 [ 70] [ 3] [301] +18:30:02 ============================================================================ +18:30:02 Calculate Source COMM Id = 2 +18:30:02 ============================================================================ +18:30:02 + + +waiting on router queue for slot.... +18:30:12 ============================================================================ +18:30:12 Slot Id : <69> +18:30:12 Transaction Type : REQUEST +18:30:12 Received From : +18:30:12 ============================================================================ +18:30:12 FNo. Len. Field Value +18:30:12 ============================================================================ +18:30:12 [ 1] [ 4] [0200] +18:30:12 [ 2] [ 16] [6213544001523791] +18:30:12 [ 3] [ 6] [010000] +18:30:12 [ 4] [ 12] [000010000000] +18:30:12 [ 7] [ 10] [0320112918] +18:30:12 [ 11] [ 6] [271225] +18:30:12 [ 12] [ 6] [182918] +18:30:12 [ 13] [ 4] [0320] +18:30:12 [ 14] [ 4] [4912] +18:30:12 [ 15] [ 4] [0320] +18:30:12 [ 18] [ 4] [6011] +18:30:12 [ 19] [ 3] [418] +18:30:12 [ 22] [ 3] [021] +18:30:12 [ 25] [ 2] [01] +18:30:12 [ 28] [ 9] [D00002000] +18:30:12 [ 32] [ 6] [180893] +18:30:12 [ 35] [ 32] [6213544001523791=491212012379835] +18:30:12 [ 37] [ 12] [507911271225] +18:30:12 [ 41] [ 8] [0362CPSU] +18:30:12 [ 42] [ 15] [999999 ] +18:30:12 [ 43] [ 40] [ATM CHAMPASAK UNIVERSITY LOCATION, Pakse] +18:30:12 [ 49] [ 3] [418] +18:30:12 [ 52] [ 16] [4FE734CD5244CB3B] +18:30:12 ============================================================================ +18:30:12 + + +waiting on router queue for slot.... +18:30:12 Sending to : +18:30:12 ============================================================================ +18:30:12 Sending to : +18:30:12 ============================================================================ +18:30:12 ============================================================================ +18:30:12 Slot Id : <27> +18:30:12 Transaction Type : REQUEST +18:30:12 Received From : +18:30:12 ============================================================================ +18:30:12 FNo. Len. Field Value +18:30:12 ============================================================================ +18:30:12 [ 1] [ 4] [0800] +18:30:12 [ 7] [ 10] [0320112919] +18:30:12 [ 11] [ 6] [157716] +18:30:12 [ 70] [ 3] [301] +18:30:12 ============================================================================ +18:30:12 + + +waiting on router queue for slot.... +18:30:12 Sending to : +18:30:12 ============================================================================ +18:30:12 ============================================================================ +18:30:12 Slot Id : <27> +18:30:12 Transaction Type : RESPONSE +18:30:12 Received From : +18:30:12 ============================================================================ +18:30:12 FNo. Len. Field Value +18:30:12 ============================================================================ +18:30:12 [ 1] [ 4] [0810] +18:30:12 [ 7] [ 10] [0320112919] +18:30:12 [ 11] [ 6] [157716] +18:30:12 [ 39] [ 2] [00] +18:30:12 [ 70] [ 3] [301] +18:30:12 ============================================================================ +18:30:12 Calculate Source COMM Id = 2 +18:30:12 ============================================================================ +18:30:12 + + +waiting on router queue for slot.... +18:30:12 ============================================================================ +18:30:12 Slot Id : <69> +18:30:12 Transaction Type : REQUEST +18:30:12 Received From : +18:30:12 ============================================================================ +18:30:12 FNo. Len. Field Value +18:30:12 ============================================================================ +18:30:12 [ 1] [ 4] [0200] +18:30:12 [ 2] [ 16] [6213544001523791] +18:30:12 [ 3] [ 6] [010000] +18:30:12 [ 4] [ 12] [000010000000] +18:30:12 [ 7] [ 10] [0320112918] +18:30:12 [ 11] [ 6] [271225] +18:30:12 [ 12] [ 6] [182918] +18:30:12 [ 13] [ 4] [0320] +18:30:12 [ 14] [ 4] [4912] +18:30:12 [ 15] [ 4] [0320] +18:30:12 [ 18] [ 4] [6011] +18:30:12 [ 19] [ 3] [418] +18:30:12 [ 22] [ 3] [021] +18:30:12 [ 25] [ 2] [01] +18:30:12 [ 28] [ 9] [D00002000] +18:30:12 [ 32] [ 6] [180893] +18:30:12 [ 35] [ 32] [6213544001523791=491212012379835] +18:30:12 [ 37] [ 12] [507911271225] +18:30:12 [ 41] [ 8] [0362CPSU] +18:30:12 [ 42] [ 15] [999999 ] +18:30:12 [ 43] [ 40] [ATM CHAMPASAK UNIVERSITY LOCATION, Pakse] +18:30:12 [ 49] [ 3] [418] +18:30:12 [ 52] [ 16] [4FE734CD5244CB3B] +18:30:12 ============================================================================ +18:30:12 + + +waiting on router queue for slot.... +18:30:12 Sending to : +18:30:12 ============================================================================ +18:30:12 ============================================================================ +18:30:12 Slot Id : <69> +18:30:12 Transaction Type : REQUEST +18:30:12 Received From : +18:30:12 ============================================================================ +18:30:12 FNo. Len. Field Value +18:30:12 ============================================================================ +18:30:12 [ 1] [ 4] [0200] +18:30:12 [ 2] [ 16] [6213544001523791] +18:30:12 [ 3] [ 6] [010000] +18:30:12 [ 4] [ 12] [000010000000] +18:30:12 [ 7] [ 10] [0320112918] +18:30:12 [ 11] [ 6] [271225] +18:30:12 [ 12] [ 6] [182918] +18:30:12 [ 13] [ 4] [0320] +18:30:12 [ 14] [ 4] [4912] +18:30:12 [ 15] [ 4] [0320] +18:30:12 [ 18] [ 4] [6011] +18:30:12 [ 19] [ 3] [418] +18:30:12 [ 22] [ 3] [021] +18:30:12 [ 25] [ 2] [01] +18:30:12 [ 28] [ 9] [D00002000] +18:30:12 [ 32] [ 6] [180893] +18:30:12 [ 35] [ 32] [6213544001523791=491212012379835] +18:30:12 [ 37] [ 12] [507911271225] +18:30:12 [ 41] [ 8] [0362CPSU] +18:30:12 [ 42] [ 15] [999999 ] +18:30:12 [ 43] [ 40] [ATM CHAMPASAK UNIVERSITY LOCATION, Pakse] +18:30:12 [ 49] [ 3] [418] +18:30:12 [ 52] [ 16] [B4CA18DAB581464E] +18:30:12 ============================================================================ +18:30:12 + + +waiting on router queue for slot.... +18:30:12 Sending to : <0> +18:30:12 ============================================================================ +18:30:13 ============================================================================ +18:30:13 Slot Id : <69> +18:30:13 Transaction Type : RESPONSE +18:30:13 Received From : +18:30:13 ============================================================================ +18:30:13 FNo. Len. Field Value +18:30:13 ============================================================================ +18:30:13 [ 1] [ 4] [0210] +18:30:13 [ 2] [ 16] [6213544001523791] +18:30:13 [ 3] [ 6] [010000] +18:30:13 [ 4] [ 12] [000010000000] +18:30:13 [ 7] [ 10] [0320112918] +18:30:13 [ 11] [ 6] [271225] +18:30:13 [ 12] [ 6] [182918] +18:30:13 [ 13] [ 4] [0320] +18:30:13 [ 15] [ 4] [0320] +18:30:13 [ 18] [ 4] [6011] +18:30:13 [ 19] [ 3] [418] +18:30:13 [ 32] [ 6] [180893] +18:30:13 [ 35] [ 32] [6213544001523791=491212012379835] +18:30:13 [ 37] [ 12] [507911271225] +18:30:13 [ 38] [ 6] [542647] +18:30:13 [ 39] [ 2] [00] +18:30:13 [ 41] [ 8] [0362CPSU] +18:30:13 [ 49] [ 3] [418] +18:30:13 [ 54] [ 40] [0001418C0000127454650002418C000012745465] +18:30:13 ============================================================================ +18:30:13 Sending to : +18:30:13 ============================================================================ +18:30:13 + + +waiting on router queue for slot.... +18:30:14 ============================================================================ +18:30:14 Slot Id : <69> +18:30:14 Transaction Type : RESPONSE +18:30:14 Received From : +18:30:14 ============================================================================ +18:30:14 FNo. Len. Field Value +18:30:14 ============================================================================ +18:30:14 [ 1] [ 4] [0210] +18:30:14 [ 2] [ 16] [6213544001523791] +18:30:14 [ 3] [ 6] [010000] +18:30:14 [ 4] [ 12] [000010000000] +18:30:14 [ 7] [ 10] [0320112918] +18:30:14 [ 11] [ 6] [271225] +18:30:14 [ 12] [ 6] [182918] +18:30:14 [ 13] [ 4] [0320] +18:30:14 [ 15] [ 4] [0320] +18:30:14 [ 18] [ 4] [6011] +18:30:14 [ 19] [ 3] [418] +18:30:14 [ 32] [ 6] [180893] +18:30:14 [ 35] [ 32] [6213544001523791=491212012379835] +18:30:14 [ 37] [ 12] [507911271225] +18:30:14 [ 38] [ 6] [542647] +18:30:14 [ 39] [ 2] [00] +18:30:14 [ 41] [ 8] [0362CPSU] +18:30:14 [ 49] [ 3] [418] +18:30:14 [ 54] [ 40] [0001418C0000127454650002418C000012745465] +18:30:14 ============================================================================ +18:30:14 Calculate Source COMM Id = 2 +18:30:14 ============================================================================ +18:30:14 + + +waiting on router queue for slot.... +18:30:23 ============================================================================ +18:30:23 Slot Id : <19> +18:30:23 Transaction Type : REQUEST +18:30:23 Received From : +18:30:23 ============================================================================ +18:30:23 FNo. Len. Field Value +18:30:23 ============================================================================ +18:30:23 [ 1] [ 4] [0800] +18:30:23 [ 7] [ 10] [0321014212] +18:30:23 [ 11] [ 6] [184212] +18:30:23 [ 37] [ 12] [57918184212] +18:30:23 [ 70] [ 3] [301] +18:30:23 ============================================================================ +18:30:23 + + +waiting on router queue for slot.... +18:30:23 Sending to : +18:30:23 ============================================================================ +18:30:23 ============================================================================ +18:30:23 Slot Id : <19> +18:30:23 Transaction Type : RESPONSE +18:30:23 Received From : +18:30:23 ============================================================================ +18:30:23 FNo. Len. Field Value +18:30:23 ============================================================================ +18:30:23 [ 1] [ 4] [0810] +18:30:23 [ 7] [ 10] [0321014212] +18:30:23 [ 11] [ 6] [184212] +18:30:23 [ 37] [ 12] [579181842120] +18:30:23 [ 39] [ 2] [00] +18:30:23 [ 70] [ 3] [810] +18:30:23 ============================================================================ +18:30:23 Calculate Source COMM Id = 6 +18:30:23 ============================================================================ +18:30:23 + + +waiting on router queue for slot.... +18:30:27 ============================================================================ +18:30:27 Slot Id : <54> +18:30:27 Transaction Type : REQUEST +18:30:27 Received From : +18:30:27 ============================================================================ +18:30:27 FNo. Len. Field Value +18:30:27 ============================================================================ +18:30:27 [ 1] [ 4] [0800] +18:30:27 [ 2] [ 5] [02531] +18:30:27 [ 3] [ 6] [579188] +18:30:27 [ 7] [ 10] [0320113027] +18:30:27 [ 11] [ 6] [807486] +18:30:27 [ 15] [ 10] [0320113027] +18:30:27 [ 37] [ 11] [57918807486] +18:30:27 [ 70] [ 3] [001] +18:30:27 ============================================================================ +18:30:27 + + +waiting on router queue for slot.... +18:30:27 ============================================================================ +18:30:27 Slot Id : <54> +18:30:27 Transaction Type : RESPONSE +18:30:27 Received From : +18:30:27 ============================================================================ +18:30:27 FNo. Len. Field Value +18:30:27 ============================================================================ +18:30:27 [ 1] [ 4] [0810] +18:30:27 [ 7] [ 10] [0320113027] +18:30:27 [ 11] [ 6] [807486] +18:30:27 [ 15] [ 4] [0320] +18:30:27 [ 37] [ 12] [57918807486] +18:30:27 [ 39] [ 2] [00] +18:30:27 [ 70] [ 3] [001] +18:30:27 ============================================================================ +18:30:27 Sending to : +18:30:27 ============================================================================ +18:30:27 + + +waiting on router queue for slot.... +18:30:28 ============================================================================ +18:30:28 Slot Id : <78> +18:30:28 Transaction Type : REQUEST +18:30:28 Received From : +18:30:28 ============================================================================ +18:30:28 FNo. Len. Field Value +18:30:28 ============================================================================ +18:30:28 [ 1] [ 4] [0800] +18:30:28 [ 7] [ 10] [0320112934] +18:30:28 [ 11] [ 6] [157717] +18:30:28 [ 70] [ 3] [301] +18:30:28 ============================================================================ +18:30:28 + + +waiting on router queue for slot.... +18:30:28 Sending to : +18:30:28 ============================================================================ +18:30:28 ============================================================================ +18:30:28 Slot Id : <78> +18:30:28 Transaction Type : RESPONSE +18:30:28 Received From : +18:30:28 ============================================================================ +18:30:28 FNo. Len. Field Value +18:30:28 ============================================================================ +18:30:28 [ 1] [ 4] [0810] +18:30:28 [ 7] [ 10] [0320112934] +18:30:28 [ 11] [ 6] [157717] +18:30:28 [ 39] [ 2] [00] +18:30:28 [ 70] [ 3] [301] +18:30:28 ============================================================================ +18:30:28 Calculate Source COMM Id = 2 +18:30:28 ============================================================================ +18:30:28 + + +waiting on router queue for slot.... +18:30:34 ============================================================================ +18:30:34 Slot Id : <47> +18:30:34 Transaction Type : REQUEST +18:30:34 Received From : +18:30:34 ============================================================================ +18:30:34 FNo. Len. Field Value +18:30:34 ============================================================================ +18:30:34 [ 1] [ 4] [0200] +18:30:34 [ 2] [ 16] [1808931300038815] +18:30:34 [ 3] [ 6] [010000] +18:30:34 [ 4] [ 12] [000070000000] +18:30:34 [ 7] [ 10] [0320183029] +18:30:34 [ 11] [ 6] [828037] +18:30:34 [ 12] [ 6] [183029] +18:30:34 [ 13] [ 4] [0320] +18:30:34 [ 15] [ 4] [0320] +18:30:34 [ 18] [ 4] [6011] +18:30:34 [ 22] [ 3] [900] +18:30:34 [ 25] [ 2] [02] +18:30:34 [ 28] [ 9] [D00002000] +18:30:34 [ 32] [ 6] [621354] +18:30:34 [ 35] [ 27] [1808931300038815=1803500663] +18:30:34 [ 37] [ 12] [507903398181] +18:30:34 [ 41] [ 8] [06001200] +18:30:34 [ 42] [ 15] [NATIVE ] +18:30:34 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +18:30:34 [ 49] [ 3] [418] +18:30:34 [ 52] [ 16] [99CC8A62D9D73CC0] +18:30:34 ============================================================================ +18:30:34 + + +waiting on router queue for slot.... +18:30:34 Sending to : +18:30:34 ============================================================================ +18:30:34 Sending to : +18:30:34 ============================================================================ +18:30:35 ============================================================================ +18:30:35 Slot Id : <47> +18:30:35 Transaction Type : REQUEST +18:30:35 Received From : +18:30:35 ============================================================================ +18:30:35 FNo. Len. Field Value +18:30:35 ============================================================================ +18:30:35 [ 1] [ 4] [0200] +18:30:35 [ 2] [ 16] [1808931300038815] +18:30:35 [ 3] [ 6] [010000] +18:30:35 [ 4] [ 12] [000070000000] +18:30:35 [ 7] [ 10] [0320183029] +18:30:35 [ 11] [ 6] [828037] +18:30:35 [ 12] [ 6] [183029] +18:30:35 [ 13] [ 4] [0320] +18:30:35 [ 15] [ 4] [0320] +18:30:35 [ 18] [ 4] [6011] +18:30:35 [ 22] [ 3] [900] +18:30:35 [ 25] [ 2] [02] +18:30:35 [ 28] [ 9] [D00002000] +18:30:35 [ 32] [ 6] [621354] +18:30:35 [ 35] [ 27] [1808931300038815=1803500663] +18:30:35 [ 37] [ 12] [507903398181] +18:30:35 [ 41] [ 8] [06001200] +18:30:35 [ 42] [ 15] [NATIVE ] +18:30:35 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +18:30:35 [ 49] [ 3] [418] +18:30:35 [ 52] [ 16] [99CC8A62D9D73CC0] +18:30:35 ============================================================================ +18:30:35 + + +waiting on router queue for slot.... +18:30:35 Sending to : +18:30:35 ============================================================================ +18:30:35 ============================================================================ +18:30:35 Slot Id : <47> +18:30:35 Transaction Type : REQUEST +18:30:35 Received From : +18:30:35 ============================================================================ +18:30:35 FNo. Len. Field Value +18:30:35 ============================================================================ +18:30:35 [ 1] [ 4] [0200] +18:30:35 [ 2] [ 16] [1808931300038815] +18:30:35 [ 3] [ 6] [010000] +18:30:35 [ 4] [ 12] [000070000000] +18:30:35 [ 7] [ 10] [0320183029] +18:30:35 [ 11] [ 6] [828037] +18:30:35 [ 12] [ 6] [183029] +18:30:35 [ 13] [ 4] [0320] +18:30:35 [ 15] [ 4] [0320] +18:30:35 [ 18] [ 4] [6011] +18:30:35 [ 22] [ 3] [900] +18:30:35 [ 25] [ 2] [02] +18:30:35 [ 28] [ 9] [D00002000] +18:30:35 [ 32] [ 6] [621354] +18:30:35 [ 35] [ 27] [1808931300038815=1803500663] +18:30:35 [ 37] [ 12] [507903398181] +18:30:35 [ 41] [ 8] [06001200] +18:30:35 [ 42] [ 15] [NATIVE ] +18:30:35 [ 43] [ 40] [Oudomxay Branch 01 Xay LAO] +18:30:35 [ 49] [ 3] [418] +18:30:35 [ 52] [ 16] [761CC2AE730F37D3] +18:30:35 ============================================================================ +18:30:35 + + +waiting on router queue for slot.... +18:30:35 Sending to : <2> +18:30:35 ============================================================================ +18:30:42 ============================================================================ +18:30:42 Slot Id : <47> +18:30:42 Transaction Type : RESPONSE +18:30:42 Received From : +18:30:42 ============================================================================ +18:30:42 FNo. Len. Field Value +18:30:42 ============================================================================ +18:30:42 [ 1] [ 4] [0210] +18:30:42 [ 2] [ 16] [1808931300038815] +18:30:42 [ 3] [ 6] [010000] +18:30:42 [ 4] [ 12] [000070000000] +18:30:42 [ 6] [ 12] [000070000000] +18:30:42 [ 7] [ 10] [0320183029] +18:30:42 [ 11] [ 6] [828037] +18:30:42 [ 12] [ 6] [183029] +18:30:42 [ 13] [ 4] [0320] +18:30:42 [ 18] [ 4] [6011] +18:30:42 [ 19] [ 3] [418] +18:30:42 [ 22] [ 3] [021] +18:30:42 [ 32] [ 6] [621354] +18:30:42 [ 35] [ 27] [1808931300038815=1803500663] +18:30:42 [ 37] [ 12] [507903398181] +18:30:42 [ 38] [ 6] [828037] +18:30:42 [ 39] [ 2] [00] +18:30:42 [ 41] [ 8] [06001200] +18:30:42 [ 49] [ 3] [418] +18:30:42 [ 52] [ 16] [761CC2AE730F37D3] +18:30:42 [ 54] [ 20] [1001418C000003939700] +18:30:42 ============================================================================ +18:30:42 Sending to : +18:30:42 ============================================================================ +18:30:42 + + +waiting on router queue for slot.... +18:30:43 ============================================================================ +18:30:43 Slot Id : <47> +18:30:43 Transaction Type : RESPONSE +18:30:43 Received From : +18:30:43 ============================================================================ +18:30:43 FNo. Len. Field Value +18:30:43 ============================================================================ +18:30:43 [ 1] [ 4] [0210] +18:30:43 [ 2] [ 16] [1808931300038815] +18:30:43 [ 3] [ 6] [010000] +18:30:43 [ 4] [ 12] [000070000000] +18:30:43 [ 6] [ 12] [000070000000] +18:30:43 [ 7] [ 10] [0320183029] +18:30:43 [ 11] [ 6] [828037] +18:30:43 [ 12] [ 6] [183029] +18:30:43 [ 13] [ 4] [0320] +18:30:43 [ 18] [ 4] [6011] +18:30:43 [ 19] [ 3] [418] +18:30:43 [ 22] [ 3] [021] +18:30:43 [ 32] [ 6] [621354] +18:30:43 [ 35] [ 27] [1808931300038815=1803500663] +18:30:43 [ 37] [ 12] [507903398181] +18:30:43 [ 38] [ 6] [828037] +18:30:43 [ 39] [ 2] [00] +18:30:43 [ 41] [ 8] [06001200] +18:30:43 [ 49] [ 3] [418] +18:30:43 [ 52] [ 16] [761CC2AE730F37D3] +18:30:43 [ 54] [ 20] [1001418C000003939700] +18:30:43 ============================================================================ +18:30:43 Calculate Source COMM Id = 0 +18:30:43 ============================================================================ +18:30:43 + + +waiting on router queue for slot.... +18:30:49 ============================================================================ +18:30:49 Slot Id : <57> +18:30:49 Transaction Type : REQUEST +18:30:49 Received From : +18:30:49 ============================================================================ +18:30:49 FNo. Len. Field Value +18:30:49 ============================================================================ +18:30:49 [ 1] [ 4] [0800] +18:30:49 [ 7] [ 10] [0320112956] +18:30:49 [ 11] [ 6] [157718] +18:30:49 [ 70] [ 3] [301] +18:30:49 ============================================================================ +18:30:49 + + +waiting on router queue for slot.... +18:30:49 Sending to : +18:30:49 ============================================================================ +18:30:49 ============================================================================ +18:30:49 Slot Id : <57> +18:30:49 Transaction Type : RESPONSE +18:30:49 Received From : +18:30:49 ============================================================================ +18:30:49 FNo. Len. Field Value +18:30:49 ============================================================================ +18:30:49 [ 1] [ 4] [0810] +18:30:49 [ 7] [ 10] [0320112956] +18:30:49 [ 11] [ 6] [157718] +18:30:49 [ 39] [ 2] [00] +18:30:49 [ 70] [ 3] [301] +18:30:49 ============================================================================ +18:30:49 Calculate Source COMM Id = 2 +18:30:49 ============================================================================ +18:30:49 + + +waiting on router queue for slot.... +18:31:01 ============================================================================ +18:31:01 Slot Id : <24> +18:31:01 Transaction Type : REQUEST +18:31:01 Received From : +18:31:01 ============================================================================ +18:31:01 FNo. Len. Field Value +18:31:01 ============================================================================ +18:31:01 [ 1] [ 4] [0800] +18:31:01 [ 7] [ 10] [0320113008] +18:31:01 [ 11] [ 6] [157719] +18:31:01 [ 70] [ 3] [301] +18:31:01 ============================================================================ +18:31:01 + + +waiting on router queue for slot.... +18:31:01 Sending to : +18:31:01 ============================================================================ +18:31:01 ============================================================================ +18:31:01 Slot Id : <24> +18:31:01 Transaction Type : RESPONSE +18:31:01 Received From : +18:31:01 ============================================================================ +18:31:01 FNo. Len. Field Value +18:31:01 ============================================================================ +18:31:01 [ 1] [ 4] [0810] +18:31:01 [ 7] [ 10] [0320113008] +18:31:01 [ 11] [ 6] [157719] +18:31:01 [ 39] [ 2] [00] +18:31:01 [ 70] [ 3] [301] +18:31:01 ============================================================================ +18:31:01 Calculate Source COMM Id = 2 +18:31:01 ============================================================================ +18:31:01 + + +waiting on router queue for slot.... +18:31:11 ============================================================================ +18:31:11 Slot Id : <49> +18:31:11 Transaction Type : REQUEST +18:31:11 Received From : +18:31:11 ============================================================================ +18:31:11 FNo. Len. Field Value +18:31:11 ============================================================================ +18:31:11 [ 1] [ 4] [0200] +18:31:11 [ 2] [ 16] [6213545000013312] +18:31:11 [ 3] [ 6] [010000] +18:31:11 [ 4] [ 12] [000030000000] +18:31:11 [ 7] [ 10] [0320182901] +18:31:11 [ 11] [ 6] [954771] +18:31:11 [ 12] [ 6] [182901] +18:31:11 [ 13] [ 4] [0320] +18:31:11 [ 15] [ 4] [0320] +18:31:11 [ 18] [ 4] [6011] +18:31:11 [ 19] [ 3] [418] +18:31:11 [ 22] [ 3] [021] +18:31:11 [ 25] [ 2] [01] +18:31:11 [ 28] [ 9] [D00002000] +18:31:11 [ 32] [ 6] [668899] +18:31:11 [ 35] [ 32] [6213545000013312=491212011331862] +18:31:11 [ 37] [ 12] [507900823672] +18:31:11 [ 41] [ 8] [03015001] +18:31:11 [ 42] [ 15] [APT ] +18:31:11 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +18:31:11 [ 49] [ 3] [418] +18:31:11 [ 52] [ 16] [3268B8A0C70669CB] +18:31:11 ============================================================================ +18:31:11 + + +waiting on router queue for slot.... +18:31:11 Sending to : +18:31:11 ============================================================================ +18:31:11 Sending to : +18:31:11 ============================================================================ +18:31:11 ============================================================================ +18:31:11 Slot Id : <49> +18:31:11 Transaction Type : REQUEST +18:31:11 Received From : +18:31:11 ============================================================================ +18:31:11 FNo. Len. Field Value +18:31:11 ============================================================================ +18:31:11 [ 1] [ 4] [0200] +18:31:11 [ 2] [ 16] [6213545000013312] +18:31:11 [ 3] [ 6] [010000] +18:31:11 [ 4] [ 12] [000030000000] +18:31:11 [ 7] [ 10] [0320182901] +18:31:11 [ 11] [ 6] [954771] +18:31:11 [ 12] [ 6] [182901] +18:31:11 [ 13] [ 4] [0320] +18:31:11 [ 15] [ 4] [0320] +18:31:11 [ 18] [ 4] [6011] +18:31:11 [ 19] [ 3] [418] +18:31:11 [ 22] [ 3] [021] +18:31:11 [ 25] [ 2] [01] +18:31:11 [ 28] [ 9] [D00002000] +18:31:11 [ 32] [ 6] [668899] +18:31:11 [ 35] [ 32] [6213545000013312=491212011331862] +18:31:11 [ 37] [ 12] [507900823672] +18:31:11 [ 41] [ 8] [03015001] +18:31:11 [ 42] [ 15] [APT ] +18:31:11 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +18:31:11 [ 49] [ 3] [418] +18:31:11 [ 52] [ 16] [3268B8A0C70669CB] +18:31:11 ============================================================================ +18:31:11 + + +waiting on router queue for slot.... +18:31:11 Sending to : +18:31:11 ============================================================================ +18:31:11 ============================================================================ +18:31:11 Slot Id : <49> +18:31:11 Transaction Type : REQUEST +18:31:11 Received From : +18:31:11 ============================================================================ +18:31:11 FNo. Len. Field Value +18:31:11 ============================================================================ +18:31:11 [ 1] [ 4] [0200] +18:31:11 [ 2] [ 16] [6213545000013312] +18:31:11 [ 3] [ 6] [010000] +18:31:11 [ 4] [ 12] [000030000000] +18:31:11 [ 7] [ 10] [0320182901] +18:31:11 [ 11] [ 6] [954771] +18:31:11 [ 12] [ 6] [182901] +18:31:11 [ 13] [ 4] [0320] +18:31:11 [ 15] [ 4] [0320] +18:31:11 [ 18] [ 4] [6011] +18:31:11 [ 19] [ 3] [418] +18:31:11 [ 22] [ 3] [021] +18:31:11 [ 25] [ 2] [01] +18:31:11 [ 28] [ 9] [D00002000] +18:31:11 [ 32] [ 6] [668899] +18:31:11 [ 35] [ 32] [6213545000013312=491212011331862] +18:31:11 [ 37] [ 12] [507900823672] +18:31:11 [ 41] [ 8] [03015001] +18:31:11 [ 42] [ 15] [APT ] +18:31:11 [ 43] [ 40] [ PAKSE BR OFFICE PAKSE ] +18:31:11 [ 49] [ 3] [418] +18:31:11 [ 52] [ 16] [03D410E6F2F1DE98] +18:31:11 ============================================================================ +18:31:11 + + +waiting on router queue for slot.... +18:31:11 Sending to : <0> +18:31:11 ============================================================================ +18:31:12 ============================================================================ +18:31:12 Slot Id : <34> +18:31:12 Transaction Type : REQUEST +18:31:12 Received From : +18:31:12 ============================================================================ +18:31:12 FNo. Len. Field Value +18:31:12 ============================================================================ +18:31:12 [ 1] [ 4] [0800] +18:31:12 [ 7] [ 10] [0320113018] +18:31:12 [ 11] [ 6] [157720] +18:31:12 [ 70] [ 3] [301] +18:31:12 ============================================================================ +18:31:12 + + +waiting on router queue for slot.... +18:31:12 Sending to : +18:31:12 ============================================================================ +18:31:12 ============================================================================ +18:31:12 Slot Id : <34> +18:31:12 Transaction Type : RESPONSE +18:31:12 Received From : +18:31:12 ============================================================================ +18:31:12 FNo. Len. Field Value +18:31:12 ============================================================================ +18:31:12 [ 1] [ 4] [0810] +18:31:12 [ 7] [ 10] [0320113018] +18:31:12 [ 11] [ 6] [157720] +18:31:12 [ 39] [ 2] [00] +18:31:12 [ 70] [ 3] [301] +18:31:12 ============================================================================ +18:31:12 Calculate Source COMM Id = 2 +18:31:12 ============================================================================ +18:31:12 + + +waiting on router queue for slot.... +18:31:12 ============================================================================ +18:31:12 Slot Id : <49> +18:31:12 Transaction Type : RESPONSE +18:31:12 Received From : +18:31:12 ============================================================================ +18:31:12 FNo. Len. Field Value +18:31:12 ============================================================================ +18:31:12 [ 1] [ 4] [0210] +18:31:12 [ 2] [ 16] [6213545000013312] +18:31:12 [ 3] [ 6] [010000] +18:31:12 [ 4] [ 12] [000030000000] +18:31:12 [ 7] [ 10] [0320182901] +18:31:12 [ 11] [ 6] [954771] +18:31:12 [ 12] [ 6] [182901] +18:31:12 [ 13] [ 4] [0320] +18:31:12 [ 15] [ 4] [0320] +18:31:12 [ 18] [ 4] [6011] +18:31:12 [ 19] [ 3] [418] +18:31:12 [ 32] [ 6] [668899] +18:31:12 [ 35] [ 32] [6213545000013312=491212011331862] +18:31:12 [ 37] [ 12] [507900823672] +18:31:12 [ 38] [ 6] [685107] +18:31:12 [ 39] [ 2] [00] +18:31:12 [ 41] [ 8] [03015001] +18:31:12 [ 49] [ 3] [418] +18:31:12 [ 54] [ 40] [0001418C0000257499580002418C000025749958] +18:31:12 ============================================================================ +18:31:12 Sending to : +18:31:12 ============================================================================ +18:31:12 + + +waiting on router queue for slot.... +18:31:13 ============================================================================ +18:31:13 Slot Id : <49> +18:31:13 Transaction Type : RESPONSE +18:31:13 Received From : +18:31:13 ============================================================================ +18:31:13 FNo. Len. Field Value +18:31:13 ============================================================================ +18:31:13 [ 1] [ 4] [0210] +18:31:13 [ 2] [ 16] [6213545000013312] +18:31:13 [ 3] [ 6] [010000] +18:31:13 [ 4] [ 12] [000030000000] +18:31:13 [ 7] [ 10] [0320182901] +18:31:13 [ 11] [ 6] [954771] +18:31:13 [ 12] [ 6] [182901] +18:31:13 [ 13] [ 4] [0320] +18:31:13 [ 15] [ 4] [0320] +18:31:13 [ 18] [ 4] [6011] +18:31:13 [ 19] [ 3] [418] +18:31:13 [ 32] [ 6] [668899] +18:31:13 [ 35] [ 32] [6213545000013312=491212011331862] +18:31:13 [ 37] [ 12] [507900823672] +18:31:13 [ 38] [ 6] [685107] +18:31:13 [ 39] [ 2] [00] +18:31:13 [ 41] [ 8] [03015001] +18:31:13 [ 49] [ 3] [418] +18:31:13 [ 54] [ 40] [0001418C0000257499580002418C000025749958] +18:31:13 ============================================================================ +18:31:13 Calculate Source COMM Id = 4 +18:31:13 ============================================================================ +18:31:13 + + +waiting on router queue for slot.... +18:31:22 ============================================================================ +18:31:22 Slot Id : <81> +18:31:22 Transaction Type : REQUEST +18:31:22 Received From : +18:31:22 ============================================================================ +18:31:22 FNo. Len. Field Value +18:31:22 ============================================================================ +18:31:22 [ 1] [ 4] [0800] +18:31:22 [ 7] [ 10] [0320113029] +18:31:22 [ 11] [ 6] [157721] +18:31:22 [ 70] [ 3] [301] +18:31:22 ============================================================================ +18:31:22 + + +waiting on router queue for slot.... +18:31:22 Sending to : +18:31:22 ============================================================================ +18:31:22 ============================================================================ +18:31:22 Slot Id : <81> +18:31:22 Transaction Type : RESPONSE +18:31:22 Received From : +18:31:22 ============================================================================ +18:31:22 FNo. Len. Field Value +18:31:22 ============================================================================ +18:31:22 [ 1] [ 4] [0810] +18:31:22 [ 7] [ 10] [0320113029] +18:31:22 [ 11] [ 6] [157721] +18:31:22 [ 39] [ 2] [00] +18:31:22 [ 70] [ 3] [301] +18:31:22 ============================================================================ +18:31:22 Calculate Source COMM Id = 2 +18:31:22 ============================================================================ +18:31:22 + + +waiting on router queue for slot.... +18:31:22 ============================================================================ +18:31:22 Slot Id : <86> +18:31:22 Transaction Type : REQUEST +18:31:22 Received From : +18:31:22 ============================================================================ +18:31:22 FNo. Len. Field Value +18:31:22 ============================================================================ +18:31:22 [ 1] [ 4] [0800] +18:31:22 [ 7] [ 10] [0320112912] +18:31:22 [ 11] [ 6] [003154] +18:31:22 [ 37] [ 12] [57918003154] +18:31:22 [ 70] [ 3] [301] +18:31:22 ============================================================================ +18:31:22 + + +waiting on router queue for slot.... +18:31:22 Sending to : +18:31:22 ============================================================================ +18:31:22 ============================================================================ +18:31:22 Slot Id : <86> +18:31:22 Transaction Type : RESPONSE +18:31:22 Received From : +18:31:22 ============================================================================ +18:31:22 FNo. Len. Field Value +18:31:22 ============================================================================ +18:31:22 [ 1] [ 4] [0810] +18:31:22 [ 7] [ 10] [0320112912] +18:31:22 [ 11] [ 6] [003154] +18:31:22 [ 37] [ 12] [579180031540] +18:31:22 [ 39] [ 2] [00] +18:31:22 [ 70] [ 3] [810] +18:31:22 ============================================================================ +18:31:22 Calculate Source COMM Id = 4 +18:31:22 ============================================================================ +18:31:22 + + +waiting on router queue for slot.... +18:31:28 ============================================================================ +18:31:28 Slot Id : <42> +18:31:28 Transaction Type : REQUEST +18:31:28 Received From : +18:31:28 ============================================================================ +18:31:28 FNo. Len. Field Value +18:31:28 ============================================================================ +18:31:28 [ 1] [ 4] [0800] +18:31:28 [ 7] [ 10] [0321014317] +18:31:28 [ 11] [ 6] [184317] +18:31:28 [ 37] [ 12] [57918184317] +18:31:28 [ 70] [ 3] [301] +18:31:28 ============================================================================ +18:31:28 + + +waiting on router queue for slot.... +18:31:28 Sending to : +18:31:28 ============================================================================ +18:31:28 ============================================================================ +18:31:28 Slot Id : <42> +18:31:28 Transaction Type : RESPONSE +18:31:28 Received From : +18:31:28 ============================================================================ +18:31:28 FNo. Len. Field Value +18:31:28 ============================================================================ +18:31:28 [ 1] [ 4] [0810] +18:31:28 [ 7] [ 10] [0321014317] +18:31:28 [ 11] [ 6] [184317] +18:31:28 [ 37] [ 12] [579181843170] +18:31:28 [ 39] [ 2] [00] +18:31:28 [ 70] [ 3] [810] +18:31:28 ============================================================================ +18:31:28 Calculate Source COMM Id = 6 +18:31:28 ============================================================================ +18:31:28 + + +waiting on router queue for slot.... +18:31:29 ============================================================================ +18:31:29 Slot Id : <88> +18:31:29 Transaction Type : REQUEST +18:31:29 Received From : +18:31:29 ============================================================================ +18:31:29 FNo. Len. Field Value +18:31:29 ============================================================================ +18:31:29 [ 1] [ 4] [0800] +18:31:29 [ 2] [ 5] [02531] +18:31:29 [ 3] [ 6] [579188] +18:31:29 [ 7] [ 10] [0320113129] +18:31:29 [ 11] [ 6] [807487] +18:31:29 [ 15] [ 10] [0320113129] +18:31:29 [ 37] [ 11] [57918807487] +18:31:29 [ 70] [ 3] [001] +18:31:29 ============================================================================ +18:31:29 + + +waiting on router queue for slot.... +18:31:29 ============================================================================ +18:31:29 Slot Id : <88> +18:31:29 Transaction Type : RESPONSE +18:31:29 Received From : +18:31:29 ============================================================================ +18:31:29 FNo. Len. Field Value +18:31:29 ============================================================================ +18:31:29 [ 1] [ 4] [0810] +18:31:29 [ 7] [ 10] [0320113129] +18:31:29 [ 11] [ 6] [807487] +18:31:29 [ 15] [ 4] [0320] +18:31:29 [ 37] [ 12] [57918807487] +18:31:29 [ 39] [ 2] [00] +18:31:29 [ 70] [ 3] [001] +18:31:29 ============================================================================ +18:31:29 Sending to : +18:31:29 ============================================================================ +18:31:29 + + +waiting on router queue for slot.... +18:31:32 ============================================================================ +18:31:32 Slot Id : <89> +18:31:32 Transaction Type : REQUEST +18:31:32 Received From : +18:31:32 ============================================================================ +18:31:32 FNo. Len. Field Value +18:31:32 ============================================================================ +18:31:32 [ 1] [ 4] [0200] +18:31:32 [ 2] [ 16] [6688990100967304] +18:31:32 [ 3] [ 6] [010000] +18:31:32 [ 4] [ 12] [000100000000] +18:31:32 [ 7] [ 10] [0320113036] +18:31:32 [ 11] [ 6] [271232] +18:31:32 [ 12] [ 6] [183036] +18:31:32 [ 13] [ 4] [0320] +18:31:32 [ 14] [ 4] [4112] +18:31:32 [ 15] [ 4] [0320] +18:31:32 [ 18] [ 4] [6011] +18:31:32 [ 19] [ 3] [418] +18:31:32 [ 22] [ 3] [021] +18:31:32 [ 25] [ 2] [01] +18:31:32 [ 28] [ 9] [D00002000] +18:31:32 [ 32] [ 6] [180893] +18:31:32 [ 35] [ 37] [6688990100967304=41121231730465000000] +18:31:32 [ 37] [ 12] [507911271232] +18:31:32 [ 41] [ 8] [0467PSLK] +18:31:32 [ 42] [ 15] [999999 ] +18:31:32 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:31:32 [ 49] [ 3] [418] +18:31:32 [ 52] [ 16] [32B4D8CAD6BC286A] +18:31:32 ============================================================================ +18:31:32 + + +waiting on router queue for slot.... +18:31:32 Sending to : +18:31:32 ============================================================================ +18:31:32 Sending to : +18:31:32 ============================================================================ +18:31:32 ============================================================================ +18:31:32 Slot Id : <89> +18:31:32 Transaction Type : REQUEST +18:31:32 Received From : +18:31:32 ============================================================================ +18:31:32 FNo. Len. Field Value +18:31:32 ============================================================================ +18:31:32 [ 1] [ 4] [0200] +18:31:32 [ 2] [ 16] [6688990100967304] +18:31:32 [ 3] [ 6] [010000] +18:31:32 [ 4] [ 12] [000100000000] +18:31:32 [ 7] [ 10] [0320113036] +18:31:32 [ 11] [ 6] [271232] +18:31:32 [ 12] [ 6] [183036] +18:31:32 [ 13] [ 4] [0320] +18:31:32 [ 14] [ 4] [4112] +18:31:32 [ 15] [ 4] [0320] +18:31:32 [ 18] [ 4] [6011] +18:31:32 [ 19] [ 3] [418] +18:31:32 [ 22] [ 3] [021] +18:31:32 [ 25] [ 2] [01] +18:31:32 [ 28] [ 9] [D00002000] +18:31:32 [ 32] [ 6] [180893] +18:31:32 [ 35] [ 37] [6688990100967304=41121231730465000000] +18:31:32 [ 37] [ 12] [507911271232] +18:31:32 [ 41] [ 8] [0467PSLK] +18:31:32 [ 42] [ 15] [999999 ] +18:31:32 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:31:32 [ 49] [ 3] [418] +18:31:32 [ 52] [ 16] [32B4D8CAD6BC286A] +18:31:32 ============================================================================ +18:31:32 + + +waiting on router queue for slot.... +18:31:32 Sending to : +18:31:32 ============================================================================ +18:31:32 ============================================================================ +18:31:32 Slot Id : <89> +18:31:32 Transaction Type : REQUEST +18:31:32 Received From : +18:31:32 ============================================================================ +18:31:32 FNo. Len. Field Value +18:31:32 ============================================================================ +18:31:32 [ 1] [ 4] [0200] +18:31:32 [ 2] [ 16] [6688990100967304] +18:31:32 [ 3] [ 6] [010000] +18:31:32 [ 4] [ 12] [000100000000] +18:31:32 [ 7] [ 10] [0320113036] +18:31:32 [ 11] [ 6] [271232] +18:31:32 [ 12] [ 6] [183036] +18:31:32 [ 13] [ 4] [0320] +18:31:32 [ 14] [ 4] [4112] +18:31:32 [ 15] [ 4] [0320] +18:31:32 [ 18] [ 4] [6011] +18:31:32 [ 19] [ 3] [418] +18:31:32 [ 22] [ 3] [021] +18:31:32 [ 25] [ 2] [01] +18:31:32 [ 28] [ 9] [D00002000] +18:31:32 [ 32] [ 6] [180893] +18:31:32 [ 35] [ 37] [6688990100967304=41121231730465000000] +18:31:32 [ 37] [ 12] [507911271232] +18:31:32 [ 41] [ 8] [0467PSLK] +18:31:32 [ 42] [ 15] [999999 ] +18:31:32 [ 43] [ 40] [ATM KHOA PHONGSALY, Khoua, Lao People ] +18:31:32 [ 49] [ 3] [418] +18:31:32 [ 52] [ 16] [789D4E3BCD13F204] +18:31:32 ============================================================================ +18:31:32 + + +waiting on router queue for slot.... +18:31:32 Sending to : <0> +18:31:32 ============================================================================ +18:31:32 ============================================================================ +18:31:32 Slot Id : <89> +18:31:32 Transaction Type : RESPONSE +18:31:32 Received From : +18:31:32 ============================================================================ +18:31:32 FNo. Len. Field Value +18:31:32 ============================================================================ +18:31:32 [ 1] [ 4] [0210] +18:31:32 [ 2] [ 16] [6688990100967304] +18:31:32 [ 3] [ 6] [010000] +18:31:32 [ 4] [ 12] [000100000000] +18:31:32 [ 7] [ 10] [0320113036] +18:31:32 [ 11] [ 6] [271232] +18:31:32 [ 12] [ 6] [183036] +18:31:32 [ 13] [ 4] [0320] +18:31:32 [ 15] [ 4] [0320] +18:31:32 [ 18] [ 4] [6011] +18:31:32 [ 19] [ 3] [418] +18:31:32 [ 22] [ 3] [021] +18:31:32 [ 32] [ 6] [180893] +18:31:32 [ 35] [ 37] [6688990100967304=41121231730465000000] +18:31:32 [ 37] [ 12] [507911271232] +18:31:32 [ 39] [ 2] [14] +18:31:32 [ 41] [ 8] [0467PSLK] +18:31:32 [ 49] [ 3] [418] +18:31:32 ============================================================================ +18:31:32 Sending to : +18:31:32 ============================================================================ +18:31:32 + + +waiting on router queue for slot.... +18:31:33 ============================================================================ +18:31:33 Slot Id : <89> +18:31:33 Transaction Type : RESPONSE +18:31:33 Received From : +18:31:33 ============================================================================ +18:31:33 FNo. Len. Field Value +18:31:33 ============================================================================ +18:31:33 [ 1] [ 4] [0210] +18:31:33 [ 2] [ 16] [6688990100967304] +18:31:33 [ 3] [ 6] [010000] +18:31:33 [ 4] [ 12] [000100000000] +18:31:33 [ 7] [ 10] [0320113036] +18:31:33 [ 11] [ 6] [271232] +18:31:33 [ 12] [ 6] [183036] +18:31:33 [ 13] [ 4] [0320] +18:31:33 [ 15] [ 4] [0320] +18:31:33 [ 18] [ 4] [6011] +18:31:33 [ 19] [ 3] [418] +18:31:33 [ 22] [ 3] [021] +18:31:33 [ 32] [ 6] [180893] +18:31:33 [ 35] [ 37] [6688990100967304=41121231730465000000] +18:31:33 [ 37] [ 12] [507911271232] +18:31:33 [ 39] [ 2] [14] +18:31:33 [ 41] [ 8] [0467PSLK] +18:31:33 [ 49] [ 3] [418] +18:31:33 ============================================================================ +18:31:33 Calculate Source COMM Id = 2 +18:31:33 ============================================================================ +18:31:33 + + +waiting on router queue for slot.... +18:31:34 ============================================================================ +18:31:34 Slot Id : <59> +18:31:34 Transaction Type : REQUEST +18:31:34 Received From : +18:31:34 ============================================================================ +18:31:34 FNo. Len. Field Value +18:31:34 ============================================================================ +18:31:34 [ 1] [ 4] [0200] +18:31:34 [ 2] [ 16] [2206990000131862] +18:31:34 [ 3] [ 6] [010000] +18:31:34 [ 4] [ 12] [000020000000] +18:31:34 [ 7] [ 10] [0320182924] +18:31:34 [ 11] [ 6] [954776] +18:31:34 [ 12] [ 6] [182924] +18:31:34 [ 13] [ 4] [0320] +18:31:34 [ 15] [ 4] [0320] +18:31:34 [ 18] [ 4] [6011] +18:31:34 [ 19] [ 3] [418] +18:31:34 [ 22] [ 3] [021] +18:31:34 [ 25] [ 2] [01] +18:31:34 [ 28] [ 9] [D00002000] +18:31:34 [ 32] [ 6] [668899] +18:31:34 [ 35] [ 32] [2206990000131862=980412611202021] +18:31:34 [ 37] [ 12] [507900158500] +18:31:34 [ 41] [ 8] [03020006] +18:31:34 [ 42] [ 15] [APT ] +18:31:34 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +18:31:34 [ 49] [ 3] [418] +18:31:34 [ 52] [ 16] [1A1122133330D428] +18:31:34 ============================================================================ +18:31:34 + + +waiting on router queue for slot.... +18:31:34 Sending to : +18:31:34 ============================================================================ +18:31:34 Sending to : +18:31:34 ============================================================================ +18:31:35 ============================================================================ +18:31:35 Slot Id : <59> +18:31:35 Transaction Type : REQUEST +18:31:35 Received From : +18:31:35 ============================================================================ +18:31:35 FNo. Len. Field Value +18:31:35 ============================================================================ +18:31:35 [ 1] [ 4] [0200] +18:31:35 [ 2] [ 16] [2206990000131862] +18:31:35 [ 3] [ 6] [010000] +18:31:35 [ 4] [ 12] [000020000000] +18:31:35 [ 7] [ 10] [0320182924] +18:31:35 [ 11] [ 6] [954776] +18:31:35 [ 12] [ 6] [182924] +18:31:35 [ 13] [ 4] [0320] +18:31:35 [ 15] [ 4] [0320] +18:31:35 [ 18] [ 4] [6011] +18:31:35 [ 19] [ 3] [418] +18:31:35 [ 22] [ 3] [021] +18:31:35 [ 25] [ 2] [01] +18:31:35 [ 28] [ 9] [D00002000] +18:31:35 [ 32] [ 6] [668899] +18:31:35 [ 35] [ 32] [2206990000131862=980412611202021] +18:31:35 [ 37] [ 12] [507900158500] +18:31:35 [ 41] [ 8] [03020006] +18:31:35 [ 42] [ 15] [APT ] +18:31:35 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +18:31:35 [ 49] [ 3] [418] +18:31:35 [ 52] [ 16] [1A1122133330D428] +18:31:35 ============================================================================ +18:31:35 + + +waiting on router queue for slot.... +18:31:35 Sending to : +18:31:35 ============================================================================ +18:31:35 ============================================================================ +18:31:35 Slot Id : <59> +18:31:35 Transaction Type : REQUEST +18:31:35 Received From : +18:31:35 ============================================================================ +18:31:35 FNo. Len. Field Value +18:31:35 ============================================================================ +18:31:35 [ 1] [ 4] [0200] +18:31:35 [ 2] [ 16] [2206990000131862] +18:31:35 [ 3] [ 6] [010000] +18:31:35 [ 4] [ 12] [000020000000] +18:31:35 [ 7] [ 10] [0320182924] +18:31:35 [ 11] [ 6] [954776] +18:31:35 [ 12] [ 6] [182924] +18:31:35 [ 13] [ 4] [0320] +18:31:35 [ 15] [ 4] [0320] +18:31:35 [ 18] [ 4] [6011] +18:31:35 [ 19] [ 3] [418] +18:31:35 [ 22] [ 3] [021] +18:31:35 [ 25] [ 2] [01] +18:31:35 [ 28] [ 9] [D00002000] +18:31:35 [ 32] [ 6] [668899] +18:31:35 [ 35] [ 32] [2206990000131862=980412611202021] +18:31:35 [ 37] [ 12] [507900158500] +18:31:35 [ 41] [ 8] [03020006] +18:31:35 [ 42] [ 15] [APT ] +18:31:35 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +18:31:35 [ 49] [ 3] [418] +18:31:35 [ 52] [ 16] [B0A0F3D7D6EE5E62] +18:31:35 ============================================================================ +18:31:35 + + +waiting on router queue for slot.... +18:31:35 Sending to : <1> +18:31:35 ============================================================================ +18:31:37 ============================================================================ +18:31:37 Slot Id : <59> +18:31:37 Transaction Type : RESPONSE +18:31:37 Received From : +18:31:37 ============================================================================ +18:31:37 FNo. Len. Field Value +18:31:37 ============================================================================ +18:31:37 [ 1] [ 4] [0210] +18:31:37 [ 2] [ 16] [2206990000131862] +18:31:37 [ 3] [ 6] [010000] +18:31:37 [ 4] [ 12] [000020000000] +18:31:37 [ 7] [ 10] [0320182924] +18:31:37 [ 11] [ 6] [954776] +18:31:37 [ 12] [ 6] [182924] +18:31:37 [ 13] [ 4] [0320] +18:31:37 [ 15] [ 4] [0320] +18:31:37 [ 18] [ 4] [6011] +18:31:37 [ 32] [ 6] [668899] +18:31:37 [ 35] [ 32] [2206990000131862=980412611202021] +18:31:37 [ 37] [ 12] [507900158500] +18:31:37 [ 38] [ 6] [146023] +18:31:37 [ 39] [ 2] [00] +18:31:37 [ 41] [ 8] [03020006] +18:31:37 [ 49] [ 3] [418] +18:31:37 [ 54] [ 40] [0001418C0000060000000002418C000006000000] +18:31:37 ============================================================================ +18:31:37 Sending to : +18:31:37 ============================================================================ +18:31:37 + + +waiting on router queue for slot.... +18:31:39 ============================================================================ +18:31:39 Slot Id : <59> +18:31:39 Transaction Type : RESPONSE +18:31:39 Received From : +18:31:39 ============================================================================ +18:31:39 FNo. Len. Field Value +18:31:39 ============================================================================ +18:31:39 [ 1] [ 4] [0210] +18:31:39 [ 2] [ 16] [2206990000131862] +18:31:39 [ 3] [ 6] [010000] +18:31:39 [ 4] [ 12] [000020000000] +18:31:39 [ 7] [ 10] [0320182924] +18:31:39 [ 11] [ 6] [954776] +18:31:39 [ 12] [ 6] [182924] +18:31:39 [ 13] [ 4] [0320] +18:31:39 [ 15] [ 4] [0320] +18:31:39 [ 18] [ 4] [6011] +18:31:39 [ 32] [ 6] [668899] +18:31:39 [ 35] [ 32] [2206990000131862=980412611202021] +18:31:39 [ 37] [ 12] [507900158500] +18:31:39 [ 38] [ 6] [146023] +18:31:39 [ 39] [ 2] [00] +18:31:39 [ 41] [ 8] [03020006] +18:31:39 [ 49] [ 3] [418] +18:31:39 [ 54] [ 40] [0001418C0000060000000002418C000006000000] +18:31:39 ============================================================================ +18:31:39 Calculate Source COMM Id = 4 +18:31:39 ============================================================================ +18:31:39 + + +waiting on router queue for slot.... +18:31:42 ============================================================================ +18:31:42 Slot Id : <79> +18:31:42 Transaction Type : REQUEST +18:31:42 Received From : +18:31:42 ============================================================================ +18:31:42 FNo. Len. Field Value +18:31:42 ============================================================================ +18:31:42 [ 1] [ 4] [0200] +18:31:42 [ 2] [ 16] [6688990103495204] +18:31:42 [ 3] [ 6] [300000] +18:31:42 [ 4] [ 12] [000000000000] +18:31:42 [ 7] [ 10] [0320183137] +18:31:42 [ 11] [ 6] [828246] +18:31:42 [ 12] [ 6] [183137] +18:31:42 [ 13] [ 4] [0320] +18:31:42 [ 15] [ 4] [0320] +18:31:42 [ 18] [ 4] [6011] +18:31:42 [ 22] [ 3] [900] +18:31:42 [ 25] [ 2] [02] +18:31:42 [ 28] [ 9] [D00000000] +18:31:42 [ 32] [ 6] [621354] +18:31:42 [ 35] [ 37] [6688990103495204=43011231520444700000] +18:31:42 [ 37] [ 12] [507904965921] +18:31:42 [ 41] [ 8] [15001100] +18:31:42 [ 42] [ 15] [NATIVE ] +18:31:42 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +18:31:42 [ 49] [ 3] [418] +18:31:42 [ 52] [ 16] [3135AB48678697FA] +18:31:42 ============================================================================ +18:31:42 + + +waiting on router queue for slot.... +18:31:42 Sending to : +18:31:42 ============================================================================ +18:31:42 Sending to : +18:31:42 ============================================================================ +18:31:43 ============================================================================ +18:31:43 Slot Id : <79> +18:31:43 Transaction Type : REQUEST +18:31:43 Received From : +18:31:43 ============================================================================ +18:31:43 FNo. Len. Field Value +18:31:43 ============================================================================ +18:31:43 [ 1] [ 4] [0200] +18:31:43 [ 2] [ 16] [6688990103495204] +18:31:43 [ 3] [ 6] [300000] +18:31:43 [ 4] [ 12] [000000000000] +18:31:43 [ 7] [ 10] [0320183137] +18:31:43 [ 11] [ 6] [828246] +18:31:43 [ 12] [ 6] [183137] +18:31:43 [ 13] [ 4] [0320] +18:31:43 [ 15] [ 4] [0320] +18:31:43 [ 18] [ 4] [6011] +18:31:43 [ 22] [ 3] [900] +18:31:43 [ 25] [ 2] [02] +18:31:43 [ 28] [ 9] [D00000000] +18:31:43 [ 32] [ 6] [621354] +18:31:43 [ 35] [ 37] [6688990103495204=43011231520444700000] +18:31:43 [ 37] [ 12] [507904965921] +18:31:43 [ 41] [ 8] [15001100] +18:31:43 [ 42] [ 15] [NATIVE ] +18:31:43 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +18:31:43 [ 49] [ 3] [418] +18:31:43 [ 52] [ 16] [3135AB48678697FA] +18:31:43 ============================================================================ +18:31:43 + + +waiting on router queue for slot.... +18:31:43 Sending to : +18:31:43 ============================================================================ +18:31:43 ============================================================================ +18:31:43 Slot Id : <79> +18:31:43 Transaction Type : REQUEST +18:31:43 Received From : +18:31:43 ============================================================================ +18:31:43 FNo. Len. Field Value +18:31:43 ============================================================================ +18:31:43 [ 1] [ 4] [0200] +18:31:43 [ 2] [ 16] [6688990103495204] +18:31:43 [ 3] [ 6] [300000] +18:31:43 [ 4] [ 12] [000000000000] +18:31:43 [ 7] [ 10] [0320183137] +18:31:43 [ 11] [ 6] [828246] +18:31:43 [ 12] [ 6] [183137] +18:31:43 [ 13] [ 4] [0320] +18:31:43 [ 15] [ 4] [0320] +18:31:43 [ 18] [ 4] [6011] +18:31:43 [ 22] [ 3] [900] +18:31:43 [ 25] [ 2] [02] +18:31:43 [ 28] [ 9] [D00000000] +18:31:43 [ 32] [ 6] [621354] +18:31:43 [ 35] [ 37] [6688990103495204=43011231520444700000] +18:31:43 [ 37] [ 12] [507904965921] +18:31:43 [ 41] [ 8] [15001100] +18:31:43 [ 42] [ 15] [NATIVE ] +18:31:43 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +18:31:43 [ 49] [ 3] [418] +18:31:43 [ 52] [ 16] [1614750DB2E44C1E] +18:31:43 ============================================================================ +18:31:43 + + +waiting on router queue for slot.... +18:31:43 Sending to : <4> +18:31:43 ============================================================================ +18:31:44 ============================================================================ +18:31:44 Slot Id : <79> +18:31:44 Transaction Type : RESPONSE +18:31:44 Received From : +18:31:44 ============================================================================ +18:31:44 FNo. Len. Field Value +18:31:44 ============================================================================ +18:31:44 [ 1] [ 4] [0210] +18:31:44 [ 2] [ 16] [6688990103495204] +18:31:44 [ 3] [ 6] [300000] +18:31:44 [ 4] [ 12] [000000000000] +18:31:44 [ 11] [ 6] [828246] +18:31:44 [ 12] [ 6] [183137] +18:31:44 [ 15] [ 4] [0320] +18:31:44 [ 18] [ 4] [6011] +18:31:44 [ 32] [ 6] [621354] +18:31:44 [ 35] [ 37] [6688990103495204=43011231520444700000] +18:31:44 [ 37] [ 12] [507904965921] +18:31:44 [ 38] [ 6] [733007] +18:31:44 [ 39] [ 2] [00] +18:31:44 [ 41] [ 8] [15001100] +18:31:44 [ 49] [ 3] [418] +18:31:44 [ 54] [ 20] [0002418C000023718882] +18:31:44 ============================================================================ +18:31:44 Sending to : +18:31:44 ============================================================================ +18:31:44 + + +waiting on router queue for slot.... +18:31:45 ============================================================================ +18:31:45 Slot Id : <79> +18:31:45 Transaction Type : RESPONSE +18:31:45 Received From : +18:31:45 ============================================================================ +18:31:45 FNo. Len. Field Value +18:31:45 ============================================================================ +18:31:45 [ 1] [ 4] [0210] +18:31:45 [ 2] [ 16] [6688990103495204] +18:31:45 [ 3] [ 6] [300000] +18:31:45 [ 4] [ 12] [000000000000] +18:31:45 [ 11] [ 6] [828246] +18:31:45 [ 12] [ 6] [183137] +18:31:45 [ 15] [ 4] [0320] +18:31:45 [ 18] [ 4] [6011] +18:31:45 [ 32] [ 6] [621354] +18:31:45 [ 35] [ 37] [6688990103495204=43011231520444700000] +18:31:45 [ 37] [ 12] [507904965921] +18:31:45 [ 38] [ 6] [733007] +18:31:45 [ 39] [ 2] [00] +18:31:45 [ 41] [ 8] [15001100] +18:31:45 [ 49] [ 3] [418] +18:31:45 [ 54] [ 20] [0002418C000023718882] +18:31:45 ============================================================================ +18:31:45 Calculate Source COMM Id = 0 +18:31:45 ============================================================================ +18:31:45 + + +waiting on router queue for slot.... +18:31:49 ============================================================================ +18:31:49 Slot Id : <84> +18:31:49 Transaction Type : REQUEST +18:31:49 Received From : +18:31:49 ============================================================================ +18:31:49 FNo. Len. Field Value +18:31:49 ============================================================================ +18:31:49 [ 1] [ 4] [0800] +18:31:49 [ 7] [ 10] [0320113056] +18:31:49 [ 11] [ 6] [157722] +18:31:49 [ 70] [ 3] [301] +18:31:49 ============================================================================ +18:31:49 + + +waiting on router queue for slot.... +18:31:49 Sending to : +18:31:49 ============================================================================ +18:31:49 ============================================================================ +18:31:49 Slot Id : <84> +18:31:49 Transaction Type : RESPONSE +18:31:49 Received From : +18:31:49 ============================================================================ +18:31:49 FNo. Len. Field Value +18:31:49 ============================================================================ +18:31:49 [ 1] [ 4] [0810] +18:31:49 [ 7] [ 10] [0320113056] +18:31:49 [ 11] [ 6] [157722] +18:31:49 [ 39] [ 2] [00] +18:31:49 [ 70] [ 3] [301] +18:31:49 ============================================================================ +18:31:49 Calculate Source COMM Id = 2 +18:31:49 ============================================================================ +18:31:49 + + +waiting on router queue for slot.... +18:31:56 ============================================================================ +18:31:56 Slot Id : <58> +18:31:56 Transaction Type : REQUEST +18:31:56 Received From : +18:31:56 ============================================================================ +18:31:56 FNo. Len. Field Value +18:31:56 ============================================================================ +18:31:56 [ 1] [ 4] [0200] +18:31:56 [ 2] [ 16] [6688990108434109] +18:31:56 [ 3] [ 6] [010000] +18:31:56 [ 4] [ 12] [000200000000] +18:31:56 [ 7] [ 10] [0320113102] +18:31:56 [ 11] [ 6] [271235] +18:31:56 [ 12] [ 6] [183102] +18:31:56 [ 13] [ 4] [0320] +18:31:56 [ 14] [ 4] [4406] +18:31:56 [ 15] [ 4] [0320] +18:31:56 [ 18] [ 4] [6011] +18:31:56 [ 19] [ 3] [418] +18:31:56 [ 22] [ 3] [021] +18:31:56 [ 25] [ 2] [01] +18:31:56 [ 28] [ 9] [D00002000] +18:31:56 [ 32] [ 6] [180893] +18:31:56 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:31:56 [ 37] [ 12] [507911271235] +18:31:56 [ 41] [ 8] [0464UDPB] +18:31:56 [ 42] [ 15] [999999 ] +18:31:56 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:31:56 [ 49] [ 3] [418] +18:31:56 [ 52] [ 16] [BDC0F647C08F0A8C] +18:31:56 ============================================================================ +18:31:56 + + +waiting on router queue for slot.... +18:31:56 Sending to : +18:31:56 ============================================================================ +18:31:56 Sending to : +18:31:56 ============================================================================ +18:31:56 ============================================================================ +18:31:56 Slot Id : <58> +18:31:56 Transaction Type : REQUEST +18:31:56 Received From : +18:31:56 ============================================================================ +18:31:56 FNo. Len. Field Value +18:31:56 ============================================================================ +18:31:56 [ 1] [ 4] [0200] +18:31:56 [ 2] [ 16] [6688990108434109] +18:31:56 [ 3] [ 6] [010000] +18:31:56 [ 4] [ 12] [000200000000] +18:31:56 [ 7] [ 10] [0320113102] +18:31:56 [ 11] [ 6] [271235] +18:31:56 [ 12] [ 6] [183102] +18:31:56 [ 13] [ 4] [0320] +18:31:56 [ 14] [ 4] [4406] +18:31:56 [ 15] [ 4] [0320] +18:31:56 [ 18] [ 4] [6011] +18:31:56 [ 19] [ 3] [418] +18:31:56 [ 22] [ 3] [021] +18:31:56 [ 25] [ 2] [01] +18:31:56 [ 28] [ 9] [D00002000] +18:31:56 [ 32] [ 6] [180893] +18:31:56 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:31:56 [ 37] [ 12] [507911271235] +18:31:56 [ 41] [ 8] [0464UDPB] +18:31:56 [ 42] [ 15] [999999 ] +18:31:56 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:31:56 [ 49] [ 3] [418] +18:31:56 [ 52] [ 16] [BDC0F647C08F0A8C] +18:31:56 ============================================================================ +18:31:56 + + +waiting on router queue for slot.... +18:31:56 Sending to : +18:31:56 ============================================================================ +18:31:56 ============================================================================ +18:31:56 Slot Id : <58> +18:31:56 Transaction Type : REQUEST +18:31:56 Received From : +18:31:56 ============================================================================ +18:31:56 FNo. Len. Field Value +18:31:56 ============================================================================ +18:31:56 [ 1] [ 4] [0200] +18:31:56 [ 2] [ 16] [6688990108434109] +18:31:56 [ 3] [ 6] [010000] +18:31:56 [ 4] [ 12] [000200000000] +18:31:56 [ 7] [ 10] [0320113102] +18:31:56 [ 11] [ 6] [271235] +18:31:56 [ 12] [ 6] [183102] +18:31:56 [ 13] [ 4] [0320] +18:31:56 [ 14] [ 4] [4406] +18:31:56 [ 15] [ 4] [0320] +18:31:56 [ 18] [ 4] [6011] +18:31:56 [ 19] [ 3] [418] +18:31:56 [ 22] [ 3] [021] +18:31:56 [ 25] [ 2] [01] +18:31:56 [ 28] [ 9] [D00002000] +18:31:56 [ 32] [ 6] [180893] +18:31:56 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:31:56 [ 37] [ 12] [507911271235] +18:31:56 [ 41] [ 8] [0464UDPB] +18:31:56 [ 42] [ 15] [999999 ] +18:31:56 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:31:56 [ 49] [ 3] [418] +18:31:56 [ 52] [ 16] [070229D0A8F09284] +18:31:56 ============================================================================ +18:31:56 + + +waiting on router queue for slot.... +18:31:56 Sending to : <0> +18:31:56 ============================================================================ +18:31:56 ============================================================================ +18:31:56 Slot Id : <58> +18:31:56 Transaction Type : RESPONSE +18:31:56 Received From : +18:31:56 ============================================================================ +18:31:56 FNo. Len. Field Value +18:31:56 ============================================================================ +18:31:56 [ 1] [ 4] [0210] +18:31:56 [ 2] [ 16] [6688990108434109] +18:31:56 [ 3] [ 6] [010000] +18:31:56 [ 4] [ 12] [000200000000] +18:31:56 [ 7] [ 10] [0320113102] +18:31:56 [ 11] [ 6] [271235] +18:31:56 [ 12] [ 6] [183102] +18:31:56 [ 13] [ 4] [0320] +18:31:56 [ 15] [ 4] [0320] +18:31:56 [ 18] [ 4] [6011] +18:31:56 [ 19] [ 3] [418] +18:31:56 [ 22] [ 3] [021] +18:31:56 [ 32] [ 6] [180893] +18:31:56 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:31:56 [ 37] [ 12] [507911271235] +18:31:56 [ 39] [ 2] [61] +18:31:56 [ 41] [ 8] [0464UDPB] +18:31:56 [ 49] [ 3] [418] +18:31:56 ============================================================================ +18:31:56 Sending to : +18:31:56 ============================================================================ +18:31:56 + + +waiting on router queue for slot.... +18:31:57 ============================================================================ +18:31:57 Slot Id : <58> +18:31:57 Transaction Type : RESPONSE +18:31:57 Received From : +18:31:57 ============================================================================ +18:31:57 FNo. Len. Field Value +18:31:57 ============================================================================ +18:31:57 [ 1] [ 4] [0210] +18:31:57 [ 2] [ 16] [6688990108434109] +18:31:57 [ 3] [ 6] [010000] +18:31:57 [ 4] [ 12] [000200000000] +18:31:57 [ 7] [ 10] [0320113102] +18:31:57 [ 11] [ 6] [271235] +18:31:57 [ 12] [ 6] [183102] +18:31:57 [ 13] [ 4] [0320] +18:31:57 [ 15] [ 4] [0320] +18:31:57 [ 18] [ 4] [6011] +18:31:57 [ 19] [ 3] [418] +18:31:57 [ 22] [ 3] [021] +18:31:57 [ 32] [ 6] [180893] +18:31:57 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:31:57 [ 37] [ 12] [507911271235] +18:31:57 [ 39] [ 2] [61] +18:31:57 [ 41] [ 8] [0464UDPB] +18:31:57 [ 49] [ 3] [418] +18:31:57 ============================================================================ +18:31:57 Calculate Source COMM Id = 2 +18:31:57 ============================================================================ +18:31:57 + + +waiting on router queue for slot.... +18:32:11 ============================================================================ +18:32:11 Slot Id : <5> +18:32:11 Transaction Type : REQUEST +18:32:11 Received From : +18:32:11 ============================================================================ +18:32:11 FNo. Len. Field Value +18:32:11 ============================================================================ +18:32:11 [ 1] [ 4] [0800] +18:32:11 [ 7] [ 10] [0320113117] +18:32:11 [ 11] [ 6] [157723] +18:32:11 [ 70] [ 3] [301] +18:32:11 ============================================================================ +18:32:11 + + +waiting on router queue for slot.... +18:32:11 Sending to : +18:32:11 ============================================================================ +18:32:11 ============================================================================ +18:32:11 Slot Id : <5> +18:32:11 Transaction Type : RESPONSE +18:32:11 Received From : +18:32:11 ============================================================================ +18:32:11 FNo. Len. Field Value +18:32:11 ============================================================================ +18:32:11 [ 1] [ 4] [0810] +18:32:11 [ 7] [ 10] [0320113117] +18:32:11 [ 11] [ 6] [157723] +18:32:11 [ 39] [ 2] [00] +18:32:11 [ 70] [ 3] [301] +18:32:11 ============================================================================ +18:32:11 Calculate Source COMM Id = 2 +18:32:11 ============================================================================ +18:32:11 + + +waiting on router queue for slot.... +18:32:21 ============================================================================ +18:32:21 Slot Id : <67> +18:32:21 Transaction Type : REQUEST +18:32:21 Received From : +18:32:21 ============================================================================ +18:32:21 FNo. Len. Field Value +18:32:21 ============================================================================ +18:32:21 [ 1] [ 4] [0800] +18:32:21 [ 7] [ 10] [0320113128] +18:32:21 [ 11] [ 6] [157724] +18:32:21 [ 70] [ 3] [301] +18:32:21 ============================================================================ +18:32:21 + + +waiting on router queue for slot.... +18:32:21 Sending to : +18:32:21 ============================================================================ +18:32:21 ============================================================================ +18:32:21 Slot Id : <67> +18:32:21 Transaction Type : RESPONSE +18:32:21 Received From : +18:32:21 ============================================================================ +18:32:21 FNo. Len. Field Value +18:32:21 ============================================================================ +18:32:21 [ 1] [ 4] [0810] +18:32:21 [ 7] [ 10] [0320113128] +18:32:21 [ 11] [ 6] [157724] +18:32:21 [ 39] [ 2] [00] +18:32:21 [ 70] [ 3] [301] +18:32:21 ============================================================================ +18:32:21 Calculate Source COMM Id = 2 +18:32:21 ============================================================================ +18:32:21 + + +waiting on router queue for slot.... +18:32:31 ============================================================================ +18:32:31 Slot Id : <62> +18:32:31 Transaction Type : REQUEST +18:32:31 Received From : +18:32:31 ============================================================================ +18:32:31 FNo. Len. Field Value +18:32:31 ============================================================================ +18:32:31 [ 1] [ 4] [0800] +18:32:31 [ 2] [ 5] [02531] +18:32:31 [ 3] [ 6] [579188] +18:32:31 [ 7] [ 10] [0320113231] +18:32:31 [ 11] [ 6] [807488] +18:32:31 [ 15] [ 10] [0320113231] +18:32:31 [ 37] [ 11] [57918807488] +18:32:31 [ 70] [ 3] [001] +18:32:31 ============================================================================ +18:32:31 + + +waiting on router queue for slot.... +18:32:31 ============================================================================ +18:32:31 Slot Id : <62> +18:32:31 Transaction Type : RESPONSE +18:32:31 Received From : +18:32:31 ============================================================================ +18:32:31 FNo. Len. Field Value +18:32:31 ============================================================================ +18:32:31 [ 1] [ 4] [0810] +18:32:31 [ 7] [ 10] [0320113231] +18:32:31 [ 11] [ 6] [807488] +18:32:31 [ 15] [ 4] [0320] +18:32:31 [ 37] [ 12] [57918807488] +18:32:31 [ 39] [ 2] [00] +18:32:31 [ 70] [ 3] [001] +18:32:31 ============================================================================ +18:32:31 Sending to : +18:32:31 ============================================================================ +18:32:31 + + +waiting on router queue for slot.... +18:32:32 ============================================================================ +18:32:32 Slot Id : <93> +18:32:32 Transaction Type : REQUEST +18:32:32 Received From : +18:32:32 ============================================================================ +18:32:32 FNo. Len. Field Value +18:32:32 ============================================================================ +18:32:32 [ 1] [ 4] [0800] +18:32:32 [ 7] [ 10] [0320113138] +18:32:32 [ 11] [ 6] [157725] +18:32:32 [ 70] [ 3] [301] +18:32:32 ============================================================================ +18:32:32 + + +waiting on router queue for slot.... +18:32:32 Sending to : +18:32:32 ============================================================================ +18:32:32 ============================================================================ +18:32:32 Slot Id : <93> +18:32:32 Transaction Type : RESPONSE +18:32:32 Received From : +18:32:32 ============================================================================ +18:32:32 FNo. Len. Field Value +18:32:32 ============================================================================ +18:32:32 [ 1] [ 4] [0810] +18:32:32 [ 7] [ 10] [0320113138] +18:32:32 [ 11] [ 6] [157725] +18:32:32 [ 39] [ 2] [00] +18:32:32 [ 70] [ 3] [301] +18:32:32 ============================================================================ +18:32:32 Calculate Source COMM Id = 2 +18:32:32 ============================================================================ +18:32:32 + + +waiting on router queue for slot.... +18:32:32 ============================================================================ +18:32:32 Slot Id : <56> +18:32:32 Transaction Type : REQUEST +18:32:32 Received From : +18:32:32 ============================================================================ +18:32:32 FNo. Len. Field Value +18:32:32 ============================================================================ +18:32:32 [ 1] [ 4] [0200] +18:32:32 [ 2] [ 16] [6213541000685241] +18:32:32 [ 3] [ 6] [010000] +18:32:32 [ 4] [ 12] [000050000000] +18:32:32 [ 7] [ 10] [0320183021] +18:32:32 [ 11] [ 6] [954793] +18:32:32 [ 12] [ 6] [183021] +18:32:32 [ 13] [ 4] [0320] +18:32:32 [ 15] [ 4] [0320] +18:32:32 [ 18] [ 4] [6011] +18:32:32 [ 19] [ 3] [418] +18:32:32 [ 22] [ 3] [021] +18:32:32 [ 25] [ 2] [01] +18:32:32 [ 28] [ 9] [D00002000] +18:32:32 [ 32] [ 6] [668899] +18:32:32 [ 35] [ 32] [6213541000685241=491212018524536] +18:32:32 [ 37] [ 12] [507901584498] +18:32:32 [ 41] [ 8] [03915001] +18:32:32 [ 42] [ 15] [APT ] +18:32:32 [ 43] [ 40] [ VUNG TAO UNIT CHAMPASAK ] +18:32:32 [ 49] [ 3] [418] +18:32:32 [ 52] [ 16] [23BB103F9EF6B1CA] +18:32:32 ============================================================================ +18:32:32 + + +waiting on router queue for slot.... +18:32:32 Sending to : +18:32:32 ============================================================================ +18:32:32 Sending to : +18:32:32 ============================================================================ +18:32:32 ============================================================================ +18:32:32 Slot Id : <56> +18:32:32 Transaction Type : REQUEST +18:32:32 Received From : +18:32:32 ============================================================================ +18:32:32 FNo. Len. Field Value +18:32:32 ============================================================================ +18:32:32 [ 1] [ 4] [0200] +18:32:32 [ 2] [ 16] [6213541000685241] +18:32:32 [ 3] [ 6] [010000] +18:32:32 [ 4] [ 12] [000050000000] +18:32:32 [ 7] [ 10] [0320183021] +18:32:32 [ 11] [ 6] [954793] +18:32:32 [ 12] [ 6] [183021] +18:32:32 [ 13] [ 4] [0320] +18:32:32 [ 15] [ 4] [0320] +18:32:32 [ 18] [ 4] [6011] +18:32:32 [ 19] [ 3] [418] +18:32:32 [ 22] [ 3] [021] +18:32:32 [ 25] [ 2] [01] +18:32:32 [ 28] [ 9] [D00002000] +18:32:32 [ 32] [ 6] [668899] +18:32:32 [ 35] [ 32] [6213541000685241=491212018524536] +18:32:32 [ 37] [ 12] [507901584498] +18:32:32 [ 41] [ 8] [03915001] +18:32:32 [ 42] [ 15] [APT ] +18:32:32 [ 43] [ 40] [ VUNG TAO UNIT CHAMPASAK ] +18:32:32 [ 49] [ 3] [418] +18:32:32 [ 52] [ 16] [23BB103F9EF6B1CA] +18:32:32 ============================================================================ +18:32:32 + + +waiting on router queue for slot.... +18:32:32 Sending to : +18:32:32 ============================================================================ +18:32:32 ============================================================================ +18:32:32 Slot Id : <56> +18:32:32 Transaction Type : REQUEST +18:32:32 Received From : +18:32:32 ============================================================================ +18:32:32 FNo. Len. Field Value +18:32:32 ============================================================================ +18:32:32 [ 1] [ 4] [0200] +18:32:32 [ 2] [ 16] [6213541000685241] +18:32:32 [ 3] [ 6] [010000] +18:32:32 [ 4] [ 12] [000050000000] +18:32:32 [ 7] [ 10] [0320183021] +18:32:32 [ 11] [ 6] [954793] +18:32:32 [ 12] [ 6] [183021] +18:32:32 [ 13] [ 4] [0320] +18:32:32 [ 15] [ 4] [0320] +18:32:32 [ 18] [ 4] [6011] +18:32:32 [ 19] [ 3] [418] +18:32:32 [ 22] [ 3] [021] +18:32:32 [ 25] [ 2] [01] +18:32:32 [ 28] [ 9] [D00002000] +18:32:32 [ 32] [ 6] [668899] +18:32:32 [ 35] [ 32] [6213541000685241=491212018524536] +18:32:32 [ 37] [ 12] [507901584498] +18:32:32 [ 41] [ 8] [03915001] +18:32:32 [ 42] [ 15] [APT ] +18:32:32 [ 43] [ 40] [ VUNG TAO UNIT CHAMPASAK ] +18:32:32 [ 49] [ 3] [418] +18:32:32 [ 52] [ 16] [DEA6980322E7A6C8] +18:32:32 ============================================================================ +18:32:32 + + +waiting on router queue for slot.... +18:32:32 Sending to : <0> +18:32:32 ============================================================================ +18:32:33 ============================================================================ +18:32:33 Slot Id : <82> +18:32:33 Transaction Type : REQUEST +18:32:33 Received From : +18:32:33 ============================================================================ +18:32:33 FNo. Len. Field Value +18:32:33 ============================================================================ +18:32:33 [ 1] [ 4] [0200] +18:32:33 [ 2] [ 16] [6688990103495204] +18:32:33 [ 3] [ 6] [011000] +18:32:33 [ 4] [ 12] [000010000000] +18:32:33 [ 7] [ 10] [0320183227] +18:32:33 [ 11] [ 6] [828374] +18:32:33 [ 12] [ 6] [183227] +18:32:33 [ 13] [ 4] [0320] +18:32:33 [ 15] [ 4] [0320] +18:32:33 [ 18] [ 4] [6011] +18:32:33 [ 22] [ 3] [900] +18:32:33 [ 25] [ 2] [02] +18:32:33 [ 28] [ 9] [D00002000] +18:32:33 [ 32] [ 6] [621354] +18:32:33 [ 35] [ 37] [6688990103495204=43011231520444700000] +18:32:33 [ 37] [ 12] [507904965923] +18:32:33 [ 41] [ 8] [15001100] +18:32:33 [ 42] [ 15] [NATIVE ] +18:32:33 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +18:32:33 [ 49] [ 3] [418] +18:32:33 [ 52] [ 16] [3135AB48678697FA] +18:32:33 ============================================================================ +18:32:33 + + +waiting on router queue for slot.... +18:32:33 Sending to : +18:32:33 ============================================================================ +18:32:33 Sending to : +18:32:33 ============================================================================ +18:32:33 ============================================================================ +18:32:33 Slot Id : <56> +18:32:33 Transaction Type : RESPONSE +18:32:33 Received From : +18:32:33 ============================================================================ +18:32:33 FNo. Len. Field Value +18:32:33 ============================================================================ +18:32:33 [ 1] [ 4] [0210] +18:32:33 [ 2] [ 16] [6213541000685241] +18:32:33 [ 3] [ 6] [010000] +18:32:33 [ 4] [ 12] [000050000000] +18:32:33 [ 7] [ 10] [0320183021] +18:32:33 [ 11] [ 6] [954793] +18:32:33 [ 12] [ 6] [183021] +18:32:33 [ 13] [ 4] [0320] +18:32:33 [ 15] [ 4] [0320] +18:32:33 [ 18] [ 4] [6011] +18:32:33 [ 19] [ 3] [418] +18:32:33 [ 32] [ 6] [668899] +18:32:33 [ 35] [ 32] [6213541000685241=491212018524536] +18:32:33 [ 37] [ 12] [507901584498] +18:32:33 [ 38] [ 6] [403338] +18:32:33 [ 39] [ 2] [00] +18:32:33 [ 41] [ 8] [03915001] +18:32:33 [ 49] [ 3] [418] +18:32:33 [ 54] [ 40] [0001418C0009723874440002418C000972387444] +18:32:33 ============================================================================ +18:32:33 Sending to : +18:32:33 ============================================================================ +18:32:33 + + +waiting on router queue for slot.... +18:32:33 ============================================================================ +18:32:33 Slot Id : <82> +18:32:33 Transaction Type : REQUEST +18:32:33 Received From : +18:32:33 ============================================================================ +18:32:33 FNo. Len. Field Value +18:32:33 ============================================================================ +18:32:33 [ 1] [ 4] [0200] +18:32:33 [ 2] [ 16] [6688990103495204] +18:32:33 [ 3] [ 6] [011000] +18:32:33 [ 4] [ 12] [000010000000] +18:32:33 [ 7] [ 10] [0320183227] +18:32:33 [ 11] [ 6] [828374] +18:32:33 [ 12] [ 6] [183227] +18:32:33 [ 13] [ 4] [0320] +18:32:33 [ 15] [ 4] [0320] +18:32:33 [ 18] [ 4] [6011] +18:32:33 [ 22] [ 3] [900] +18:32:33 [ 25] [ 2] [02] +18:32:33 [ 28] [ 9] [D00002000] +18:32:33 [ 32] [ 6] [621354] +18:32:33 [ 35] [ 37] [6688990103495204=43011231520444700000] +18:32:33 [ 37] [ 12] [507904965923] +18:32:33 [ 41] [ 8] [15001100] +18:32:33 [ 42] [ 15] [NATIVE ] +18:32:33 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +18:32:33 [ 49] [ 3] [418] +18:32:33 [ 52] [ 16] [3135AB48678697FA] +18:32:33 ============================================================================ +18:32:33 + + +waiting on router queue for slot.... +18:32:33 Sending to : +18:32:33 ============================================================================ +18:32:33 ============================================================================ +18:32:33 Slot Id : <82> +18:32:33 Transaction Type : REQUEST +18:32:33 Received From : +18:32:33 ============================================================================ +18:32:33 FNo. Len. Field Value +18:32:33 ============================================================================ +18:32:33 [ 1] [ 4] [0200] +18:32:33 [ 2] [ 16] [6688990103495204] +18:32:33 [ 3] [ 6] [011000] +18:32:33 [ 4] [ 12] [000010000000] +18:32:33 [ 7] [ 10] [0320183227] +18:32:33 [ 11] [ 6] [828374] +18:32:33 [ 12] [ 6] [183227] +18:32:33 [ 13] [ 4] [0320] +18:32:33 [ 15] [ 4] [0320] +18:32:33 [ 18] [ 4] [6011] +18:32:33 [ 22] [ 3] [900] +18:32:33 [ 25] [ 2] [02] +18:32:33 [ 28] [ 9] [D00002000] +18:32:33 [ 32] [ 6] [621354] +18:32:33 [ 35] [ 37] [6688990103495204=43011231520444700000] +18:32:33 [ 37] [ 12] [507904965923] +18:32:33 [ 41] [ 8] [15001100] +18:32:33 [ 42] [ 15] [NATIVE ] +18:32:33 [ 43] [ 40] [Beng Km20 Unit Bolikhamxay LAO] +18:32:33 [ 49] [ 3] [418] +18:32:33 [ 52] [ 16] [1614750DB2E44C1E] +18:32:33 ============================================================================ +18:32:33 + + +waiting on router queue for slot.... +18:32:33 Sending to : <4> +18:32:33 ============================================================================ +18:32:33 ============================================================================ +18:32:33 Slot Id : <39> +18:32:33 Transaction Type : REQUEST +18:32:33 Received From : +18:32:33 ============================================================================ +18:32:33 FNo. Len. Field Value +18:32:33 ============================================================================ +18:32:33 [ 1] [ 4] [0800] +18:32:33 [ 7] [ 10] [0321014422] +18:32:33 [ 11] [ 6] [184422] +18:32:33 [ 37] [ 12] [57918184422] +18:32:33 [ 70] [ 3] [301] +18:32:33 ============================================================================ +18:32:33 + + +waiting on router queue for slot.... +18:32:33 Sending to : +18:32:33 ============================================================================ +18:32:33 ============================================================================ +18:32:33 Slot Id : <39> +18:32:33 Transaction Type : RESPONSE +18:32:33 Received From : +18:32:33 ============================================================================ +18:32:33 FNo. Len. Field Value +18:32:33 ============================================================================ +18:32:33 [ 1] [ 4] [0810] +18:32:33 [ 7] [ 10] [0321014422] +18:32:33 [ 11] [ 6] [184422] +18:32:33 [ 37] [ 12] [579181844220] +18:32:33 [ 39] [ 2] [00] +18:32:33 [ 70] [ 3] [810] +18:32:33 ============================================================================ +18:32:33 Calculate Source COMM Id = 6 +18:32:33 ============================================================================ +18:32:33 + + +waiting on router queue for slot.... +18:32:34 ============================================================================ +18:32:34 Slot Id : <56> +18:32:34 Transaction Type : RESPONSE +18:32:34 Received From : +18:32:34 ============================================================================ +18:32:34 FNo. Len. Field Value +18:32:34 ============================================================================ +18:32:34 [ 1] [ 4] [0210] +18:32:34 [ 2] [ 16] [6213541000685241] +18:32:34 [ 3] [ 6] [010000] +18:32:34 [ 4] [ 12] [000050000000] +18:32:34 [ 7] [ 10] [0320183021] +18:32:34 [ 11] [ 6] [954793] +18:32:34 [ 12] [ 6] [183021] +18:32:34 [ 13] [ 4] [0320] +18:32:34 [ 15] [ 4] [0320] +18:32:34 [ 18] [ 4] [6011] +18:32:34 [ 19] [ 3] [418] +18:32:34 [ 32] [ 6] [668899] +18:32:34 [ 35] [ 32] [6213541000685241=491212018524536] +18:32:34 [ 37] [ 12] [507901584498] +18:32:34 [ 38] [ 6] [403338] +18:32:34 [ 39] [ 2] [00] +18:32:34 [ 41] [ 8] [03915001] +18:32:34 [ 49] [ 3] [418] +18:32:34 [ 54] [ 40] [0001418C0009723874440002418C000972387444] +18:32:34 ============================================================================ +18:32:34 Calculate Source COMM Id = 4 +18:32:34 ============================================================================ +18:32:34 + + +waiting on router queue for slot.... +18:32:35 ============================================================================ +18:32:35 Slot Id : <82> +18:32:35 Transaction Type : RESPONSE +18:32:35 Received From : +18:32:35 ============================================================================ +18:32:35 FNo. Len. Field Value +18:32:35 ============================================================================ +18:32:35 [ 1] [ 4] [0210] +18:32:35 [ 2] [ 16] [6688990103495204] +18:32:35 [ 3] [ 6] [011000] +18:32:35 [ 4] [ 12] [000010000000] +18:32:35 [ 11] [ 6] [828374] +18:32:35 [ 12] [ 6] [183227] +18:32:35 [ 15] [ 4] [0320] +18:32:35 [ 18] [ 4] [6011] +18:32:35 [ 32] [ 6] [621354] +18:32:35 [ 35] [ 37] [6688990103495204=43011231520444700000] +18:32:35 [ 37] [ 12] [507904965923] +18:32:35 [ 38] [ 6] [062494] +18:32:35 [ 39] [ 2] [00] +18:32:35 [ 41] [ 8] [15001100] +18:32:35 [ 49] [ 3] [418] +18:32:35 [ 54] [ 20] [1002418C000013518882] +18:32:35 ============================================================================ +18:32:35 Sending to : +18:32:35 ============================================================================ +18:32:35 + + +waiting on router queue for slot.... +18:32:36 ============================================================================ +18:32:36 Slot Id : <82> +18:32:36 Transaction Type : RESPONSE +18:32:36 Received From : +18:32:36 ============================================================================ +18:32:36 FNo. Len. Field Value +18:32:36 ============================================================================ +18:32:36 [ 1] [ 4] [0210] +18:32:36 [ 2] [ 16] [6688990103495204] +18:32:36 [ 3] [ 6] [011000] +18:32:36 [ 4] [ 12] [000010000000] +18:32:36 [ 11] [ 6] [828374] +18:32:36 [ 12] [ 6] [183227] +18:32:36 [ 15] [ 4] [0320] +18:32:36 [ 18] [ 4] [6011] +18:32:36 [ 32] [ 6] [621354] +18:32:36 [ 35] [ 37] [6688990103495204=43011231520444700000] +18:32:36 [ 37] [ 12] [507904965923] +18:32:36 [ 38] [ 6] [062494] +18:32:36 [ 39] [ 2] [00] +18:32:36 [ 41] [ 8] [15001100] +18:32:36 [ 49] [ 3] [418] +18:32:36 [ 54] [ 20] [1002418C000013518882] +18:32:36 ============================================================================ +18:32:36 Calculate Source COMM Id = 0 +18:32:36 ============================================================================ +18:32:36 + + +waiting on router queue for slot.... +18:32:43 ============================================================================ +18:32:43 Slot Id : <51> +18:32:43 Transaction Type : REQUEST +18:32:43 Received From : +18:32:43 ============================================================================ +18:32:43 FNo. Len. Field Value +18:32:43 ============================================================================ +18:32:43 [ 1] [ 4] [0200] +18:32:43 [ 2] [ 16] [6688990108434109] +18:32:43 [ 3] [ 6] [010000] +18:32:43 [ 4] [ 12] [000010000000] +18:32:43 [ 7] [ 10] [0320113148] +18:32:43 [ 11] [ 6] [271237] +18:32:43 [ 12] [ 6] [183148] +18:32:43 [ 13] [ 4] [0320] +18:32:43 [ 14] [ 4] [4406] +18:32:43 [ 15] [ 4] [0320] +18:32:43 [ 18] [ 4] [6011] +18:32:43 [ 19] [ 3] [418] +18:32:43 [ 22] [ 3] [021] +18:32:43 [ 25] [ 2] [01] +18:32:43 [ 28] [ 9] [D00002000] +18:32:43 [ 32] [ 6] [180893] +18:32:43 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:32:43 [ 37] [ 12] [507911271237] +18:32:43 [ 41] [ 8] [0464UDPB] +18:32:43 [ 42] [ 15] [999999 ] +18:32:43 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:32:43 [ 49] [ 3] [418] +18:32:43 [ 52] [ 16] [BDC0F647C08F0A8C] +18:32:43 ============================================================================ +18:32:43 + + +waiting on router queue for slot.... +18:32:43 Sending to : +18:32:43 ============================================================================ +18:32:43 Sending to : +18:32:43 ============================================================================ +18:32:43 ============================================================================ +18:32:43 Slot Id : <51> +18:32:43 Transaction Type : REQUEST +18:32:43 Received From : +18:32:43 ============================================================================ +18:32:43 FNo. Len. Field Value +18:32:43 ============================================================================ +18:32:43 [ 1] [ 4] [0200] +18:32:43 [ 2] [ 16] [6688990108434109] +18:32:43 [ 3] [ 6] [010000] +18:32:43 [ 4] [ 12] [000010000000] +18:32:43 [ 7] [ 10] [0320113148] +18:32:43 [ 11] [ 6] [271237] +18:32:43 [ 12] [ 6] [183148] +18:32:43 [ 13] [ 4] [0320] +18:32:43 [ 14] [ 4] [4406] +18:32:43 [ 15] [ 4] [0320] +18:32:43 [ 18] [ 4] [6011] +18:32:43 [ 19] [ 3] [418] +18:32:43 [ 22] [ 3] [021] +18:32:43 [ 25] [ 2] [01] +18:32:43 [ 28] [ 9] [D00002000] +18:32:43 [ 32] [ 6] [180893] +18:32:43 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:32:43 [ 37] [ 12] [507911271237] +18:32:43 [ 41] [ 8] [0464UDPB] +18:32:43 [ 42] [ 15] [999999 ] +18:32:43 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:32:43 [ 49] [ 3] [418] +18:32:43 [ 52] [ 16] [BDC0F647C08F0A8C] +18:32:43 ============================================================================ +18:32:43 + + +waiting on router queue for slot.... +18:32:43 Sending to : +18:32:43 ============================================================================ +18:32:43 ============================================================================ +18:32:43 Slot Id : <51> +18:32:43 Transaction Type : REQUEST +18:32:43 Received From : +18:32:43 ============================================================================ +18:32:43 FNo. Len. Field Value +18:32:43 ============================================================================ +18:32:43 [ 1] [ 4] [0200] +18:32:43 [ 2] [ 16] [6688990108434109] +18:32:43 [ 3] [ 6] [010000] +18:32:43 [ 4] [ 12] [000010000000] +18:32:43 [ 7] [ 10] [0320113148] +18:32:43 [ 11] [ 6] [271237] +18:32:43 [ 12] [ 6] [183148] +18:32:43 [ 13] [ 4] [0320] +18:32:43 [ 14] [ 4] [4406] +18:32:43 [ 15] [ 4] [0320] +18:32:43 [ 18] [ 4] [6011] +18:32:43 [ 19] [ 3] [418] +18:32:43 [ 22] [ 3] [021] +18:32:43 [ 25] [ 2] [01] +18:32:43 [ 28] [ 9] [D00002000] +18:32:43 [ 32] [ 6] [180893] +18:32:43 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:32:43 [ 37] [ 12] [507911271237] +18:32:43 [ 41] [ 8] [0464UDPB] +18:32:43 [ 42] [ 15] [999999 ] +18:32:43 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:32:43 [ 49] [ 3] [418] +18:32:43 [ 52] [ 16] [070229D0A8F09284] +18:32:43 ============================================================================ +18:32:43 + + +waiting on router queue for slot.... +18:32:43 Sending to : <0> +18:32:43 ============================================================================ +18:32:43 ============================================================================ +18:32:43 Slot Id : <51> +18:32:43 Transaction Type : RESPONSE +18:32:43 Received From : +18:32:43 ============================================================================ +18:32:43 FNo. Len. Field Value +18:32:43 ============================================================================ +18:32:43 [ 1] [ 4] [0210] +18:32:43 [ 2] [ 16] [6688990108434109] +18:32:43 [ 3] [ 6] [010000] +18:32:43 [ 4] [ 12] [000010000000] +18:32:43 [ 7] [ 10] [0320113148] +18:32:43 [ 11] [ 6] [271237] +18:32:43 [ 12] [ 6] [183148] +18:32:43 [ 13] [ 4] [0320] +18:32:43 [ 15] [ 4] [0320] +18:32:43 [ 18] [ 4] [6011] +18:32:43 [ 19] [ 3] [418] +18:32:43 [ 22] [ 3] [021] +18:32:43 [ 32] [ 6] [180893] +18:32:43 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:32:43 [ 37] [ 12] [507911271237] +18:32:43 [ 39] [ 2] [14] +18:32:43 [ 41] [ 8] [0464UDPB] +18:32:43 [ 49] [ 3] [418] +18:32:43 ============================================================================ +18:32:43 Sending to : +18:32:43 ============================================================================ +18:32:43 + + +waiting on router queue for slot.... +18:32:44 ============================================================================ +18:32:44 Slot Id : <51> +18:32:44 Transaction Type : RESPONSE +18:32:44 Received From : +18:32:44 ============================================================================ +18:32:44 FNo. Len. Field Value +18:32:44 ============================================================================ +18:32:44 [ 1] [ 4] [0210] +18:32:44 [ 2] [ 16] [6688990108434109] +18:32:44 [ 3] [ 6] [010000] +18:32:44 [ 4] [ 12] [000010000000] +18:32:44 [ 7] [ 10] [0320113148] +18:32:44 [ 11] [ 6] [271237] +18:32:44 [ 12] [ 6] [183148] +18:32:44 [ 13] [ 4] [0320] +18:32:44 [ 15] [ 4] [0320] +18:32:44 [ 18] [ 4] [6011] +18:32:44 [ 19] [ 3] [418] +18:32:44 [ 22] [ 3] [021] +18:32:44 [ 32] [ 6] [180893] +18:32:44 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:32:44 [ 37] [ 12] [507911271237] +18:32:44 [ 39] [ 2] [14] +18:32:44 [ 41] [ 8] [0464UDPB] +18:32:44 [ 49] [ 3] [418] +18:32:44 ============================================================================ +18:32:44 Calculate Source COMM Id = 2 +18:32:44 ============================================================================ +18:32:44 + + +waiting on router queue for slot.... +18:32:52 ============================================================================ +18:32:52 Slot Id : <64> +18:32:52 Transaction Type : REQUEST +18:32:52 Received From : +18:32:52 ============================================================================ +18:32:52 FNo. Len. Field Value +18:32:52 ============================================================================ +18:32:52 [ 1] [ 4] [0200] +18:32:52 [ 2] [ 16] [6213543000101989] +18:32:52 [ 3] [ 6] [010000] +18:32:52 [ 4] [ 12] [000100000000] +18:32:52 [ 7] [ 10] [0320113158] +18:32:52 [ 11] [ 6] [271239] +18:32:52 [ 12] [ 6] [183158] +18:32:52 [ 13] [ 4] [0320] +18:32:52 [ 14] [ 4] [4912] +18:32:52 [ 15] [ 4] [0320] +18:32:52 [ 18] [ 4] [6011] +18:32:52 [ 19] [ 3] [418] +18:32:52 [ 22] [ 3] [021] +18:32:52 [ 25] [ 2] [01] +18:32:52 [ 28] [ 9] [D00002000] +18:32:52 [ 32] [ 6] [180893] +18:32:52 [ 35] [ 32] [6213543000101989=491212010198011] +18:32:52 [ 37] [ 12] [507911271239] +18:32:52 [ 41] [ 8] [0104NUOL] +18:32:52 [ 42] [ 15] [999999 ] +18:32:52 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +18:32:52 [ 49] [ 3] [418] +18:32:52 [ 52] [ 16] [20A445E14E4C6A7A] +18:32:52 ============================================================================ +18:32:52 + + +waiting on router queue for slot.... +18:32:52 Sending to : +18:32:52 ============================================================================ +18:32:52 Sending to : +18:32:52 ============================================================================ +18:32:52 ============================================================================ +18:32:52 Slot Id : <64> +18:32:52 Transaction Type : REQUEST +18:32:52 Received From : +18:32:52 ============================================================================ +18:32:52 FNo. Len. Field Value +18:32:52 ============================================================================ +18:32:52 [ 1] [ 4] [0200] +18:32:52 [ 2] [ 16] [6213543000101989] +18:32:52 [ 3] [ 6] [010000] +18:32:52 [ 4] [ 12] [000100000000] +18:32:52 [ 7] [ 10] [0320113158] +18:32:52 [ 11] [ 6] [271239] +18:32:52 [ 12] [ 6] [183158] +18:32:52 [ 13] [ 4] [0320] +18:32:52 [ 14] [ 4] [4912] +18:32:52 [ 15] [ 4] [0320] +18:32:52 [ 18] [ 4] [6011] +18:32:52 [ 19] [ 3] [418] +18:32:52 [ 22] [ 3] [021] +18:32:52 [ 25] [ 2] [01] +18:32:52 [ 28] [ 9] [D00002000] +18:32:52 [ 32] [ 6] [180893] +18:32:52 [ 35] [ 32] [6213543000101989=491212010198011] +18:32:52 [ 37] [ 12] [507911271239] +18:32:52 [ 41] [ 8] [0104NUOL] +18:32:52 [ 42] [ 15] [999999 ] +18:32:52 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +18:32:52 [ 49] [ 3] [418] +18:32:52 [ 52] [ 16] [20A445E14E4C6A7A] +18:32:52 ============================================================================ +18:32:52 + + +waiting on router queue for slot.... +18:32:52 Sending to : +18:32:52 ============================================================================ +18:32:52 ============================================================================ +18:32:52 Slot Id : <64> +18:32:52 Transaction Type : REQUEST +18:32:52 Received From : +18:32:52 ============================================================================ +18:32:52 FNo. Len. Field Value +18:32:52 ============================================================================ +18:32:52 [ 1] [ 4] [0200] +18:32:52 [ 2] [ 16] [6213543000101989] +18:32:52 [ 3] [ 6] [010000] +18:32:52 [ 4] [ 12] [000100000000] +18:32:52 [ 7] [ 10] [0320113158] +18:32:52 [ 11] [ 6] [271239] +18:32:52 [ 12] [ 6] [183158] +18:32:52 [ 13] [ 4] [0320] +18:32:52 [ 14] [ 4] [4912] +18:32:52 [ 15] [ 4] [0320] +18:32:52 [ 18] [ 4] [6011] +18:32:52 [ 19] [ 3] [418] +18:32:52 [ 22] [ 3] [021] +18:32:52 [ 25] [ 2] [01] +18:32:52 [ 28] [ 9] [D00002000] +18:32:52 [ 32] [ 6] [180893] +18:32:52 [ 35] [ 32] [6213543000101989=491212010198011] +18:32:52 [ 37] [ 12] [507911271239] +18:32:52 [ 41] [ 8] [0104NUOL] +18:32:52 [ 42] [ 15] [999999 ] +18:32:52 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +18:32:52 [ 49] [ 3] [418] +18:32:52 [ 52] [ 16] [68A287D527064ED3] +18:32:52 ============================================================================ +18:32:52 + + +waiting on router queue for slot.... +18:32:52 Sending to : <0> +18:32:52 ============================================================================ +18:32:53 ============================================================================ +18:32:53 Slot Id : <64> +18:32:53 Transaction Type : RESPONSE +18:32:53 Received From : +18:32:53 ============================================================================ +18:32:53 FNo. Len. Field Value +18:32:53 ============================================================================ +18:32:53 [ 1] [ 4] [0210] +18:32:53 [ 2] [ 16] [6213543000101989] +18:32:53 [ 3] [ 6] [010000] +18:32:53 [ 4] [ 12] [000100000000] +18:32:53 [ 7] [ 10] [0320113158] +18:32:53 [ 11] [ 6] [271239] +18:32:53 [ 12] [ 6] [183158] +18:32:53 [ 13] [ 4] [0320] +18:32:53 [ 15] [ 4] [0320] +18:32:53 [ 18] [ 4] [6011] +18:32:53 [ 19] [ 3] [418] +18:32:53 [ 32] [ 6] [180893] +18:32:53 [ 35] [ 32] [6213543000101989=491212010198011] +18:32:53 [ 37] [ 12] [507911271239] +18:32:53 [ 38] [ 6] [590448] +18:32:53 [ 39] [ 2] [00] +18:32:53 [ 41] [ 8] [0104NUOL] +18:32:53 [ 49] [ 3] [418] +18:32:53 [ 54] [ 40] [0001840C0000000211690002840C000000017169] +18:32:53 ============================================================================ +18:32:53 Sending to : +18:32:53 ============================================================================ +18:32:53 + + +waiting on router queue for slot.... +18:32:54 ============================================================================ +18:32:54 Slot Id : <64> +18:32:54 Transaction Type : RESPONSE +18:32:54 Received From : +18:32:54 ============================================================================ +18:32:54 FNo. Len. Field Value +18:32:54 ============================================================================ +18:32:54 [ 1] [ 4] [0210] +18:32:54 [ 2] [ 16] [6213543000101989] +18:32:54 [ 3] [ 6] [010000] +18:32:54 [ 4] [ 12] [000100000000] +18:32:54 [ 7] [ 10] [0320113158] +18:32:54 [ 11] [ 6] [271239] +18:32:54 [ 12] [ 6] [183158] +18:32:54 [ 13] [ 4] [0320] +18:32:54 [ 15] [ 4] [0320] +18:32:54 [ 18] [ 4] [6011] +18:32:54 [ 19] [ 3] [418] +18:32:54 [ 32] [ 6] [180893] +18:32:54 [ 35] [ 32] [6213543000101989=491212010198011] +18:32:54 [ 37] [ 12] [507911271239] +18:32:54 [ 38] [ 6] [590448] +18:32:54 [ 39] [ 2] [00] +18:32:54 [ 41] [ 8] [0104NUOL] +18:32:54 [ 49] [ 3] [418] +18:32:54 [ 54] [ 40] [0001840C0000000211690002840C000000017169] +18:32:54 ============================================================================ +18:32:54 Calculate Source COMM Id = 2 +18:32:54 ============================================================================ +18:32:54 + + +waiting on router queue for slot.... +18:33:10 ============================================================================ +18:33:10 Slot Id : <100> +18:33:10 Transaction Type : REQUEST +18:33:10 Received From : +18:33:10 ============================================================================ +18:33:10 FNo. Len. Field Value +18:33:10 ============================================================================ +18:33:10 [ 1] [ 4] [0800] +18:33:10 [ 7] [ 10] [0320113215] +18:33:10 [ 11] [ 6] [157726] +18:33:10 [ 70] [ 3] [301] +18:33:10 ============================================================================ +18:33:10 + + +waiting on router queue for slot.... +18:33:10 Sending to : +18:33:10 ============================================================================ +18:33:10 ============================================================================ +18:33:10 Slot Id : <100> +18:33:10 Transaction Type : RESPONSE +18:33:10 Received From : +18:33:10 ============================================================================ +18:33:10 FNo. Len. Field Value +18:33:10 ============================================================================ +18:33:10 [ 1] [ 4] [0810] +18:33:10 [ 7] [ 10] [0320113215] +18:33:10 [ 11] [ 6] [157726] +18:33:10 [ 39] [ 2] [00] +18:33:10 [ 70] [ 3] [301] +18:33:10 ============================================================================ +18:33:10 Calculate Source COMM Id = 2 +18:33:10 ============================================================================ +18:33:10 + + +waiting on router queue for slot.... +18:33:10 ============================================================================ +18:33:10 Slot Id : <99> +18:33:10 Transaction Type : REQUEST +18:33:10 Received From : +18:33:10 ============================================================================ +18:33:10 FNo. Len. Field Value +18:33:10 ============================================================================ +18:33:10 [ 1] [ 4] [0200] +18:33:10 [ 2] [ 16] [1808930600008361] +18:33:10 [ 3] [ 6] [011000] +18:33:10 [ 4] [ 12] [000020000000] +18:33:10 [ 7] [ 10] [0320183304] +18:33:10 [ 11] [ 6] [828493] +18:33:10 [ 12] [ 6] [183304] +18:33:10 [ 13] [ 4] [0320] +18:33:10 [ 15] [ 4] [0320] +18:33:10 [ 18] [ 4] [6011] +18:33:10 [ 22] [ 3] [900] +18:33:10 [ 25] [ 2] [02] +18:33:10 [ 28] [ 9] [D00002000] +18:33:10 [ 32] [ 6] [621354] +18:33:10 [ 35] [ 27] [1808930600008361=1803500887] +18:33:10 [ 37] [ 12] [507904424240] +18:33:10 [ 41] [ 8] [03004100] +18:33:10 [ 42] [ 15] [NATIVE ] +18:33:10 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +18:33:10 [ 49] [ 3] [418] +18:33:10 [ 52] [ 16] [1F57EE341E15DBAD] +18:33:10 ============================================================================ +18:33:10 + + +waiting on router queue for slot.... +18:33:10 Sending to : +18:33:10 ============================================================================ +18:33:10 Sending to : +18:33:10 ============================================================================ +18:33:10 ============================================================================ +18:33:10 Slot Id : <99> +18:33:10 Transaction Type : REQUEST +18:33:10 Received From : +18:33:10 ============================================================================ +18:33:10 FNo. Len. Field Value +18:33:10 ============================================================================ +18:33:10 [ 1] [ 4] [0200] +18:33:10 [ 2] [ 16] [1808930600008361] +18:33:10 [ 3] [ 6] [011000] +18:33:10 [ 4] [ 12] [000020000000] +18:33:10 [ 7] [ 10] [0320183304] +18:33:10 [ 11] [ 6] [828493] +18:33:10 [ 12] [ 6] [183304] +18:33:10 [ 13] [ 4] [0320] +18:33:10 [ 15] [ 4] [0320] +18:33:10 [ 18] [ 4] [6011] +18:33:10 [ 22] [ 3] [900] +18:33:10 [ 25] [ 2] [02] +18:33:10 [ 28] [ 9] [D00002000] +18:33:10 [ 32] [ 6] [621354] +18:33:10 [ 35] [ 27] [1808930600008361=1803500887] +18:33:10 [ 37] [ 12] [507904424240] +18:33:10 [ 41] [ 8] [03004100] +18:33:10 [ 42] [ 15] [NATIVE ] +18:33:10 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +18:33:10 [ 49] [ 3] [418] +18:33:10 [ 52] [ 16] [1F57EE341E15DBAD] +18:33:10 ============================================================================ +18:33:10 + + +waiting on router queue for slot.... +18:33:10 Sending to : +18:33:10 ============================================================================ +18:33:10 ============================================================================ +18:33:10 Slot Id : <99> +18:33:10 Transaction Type : REQUEST +18:33:10 Received From : +18:33:10 ============================================================================ +18:33:10 FNo. Len. Field Value +18:33:10 ============================================================================ +18:33:10 [ 1] [ 4] [0200] +18:33:10 [ 2] [ 16] [1808930600008361] +18:33:10 [ 3] [ 6] [011000] +18:33:10 [ 4] [ 12] [000020000000] +18:33:10 [ 7] [ 10] [0320183304] +18:33:10 [ 11] [ 6] [828493] +18:33:10 [ 12] [ 6] [183304] +18:33:10 [ 13] [ 4] [0320] +18:33:10 [ 15] [ 4] [0320] +18:33:10 [ 18] [ 4] [6011] +18:33:10 [ 22] [ 3] [900] +18:33:10 [ 25] [ 2] [02] +18:33:10 [ 28] [ 9] [D00002000] +18:33:10 [ 32] [ 6] [621354] +18:33:10 [ 35] [ 27] [1808930600008361=1803500887] +18:33:10 [ 37] [ 12] [507904424240] +18:33:10 [ 41] [ 8] [03004100] +18:33:10 [ 42] [ 15] [NATIVE ] +18:33:10 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +18:33:10 [ 49] [ 3] [418] +18:33:10 [ 52] [ 16] [082E8FF96C71E68C] +18:33:10 ============================================================================ +18:33:10 + + +waiting on router queue for slot.... +18:33:10 Sending to : <2> +18:33:10 ============================================================================ +18:33:24 ============================================================================ +18:33:24 Slot Id : <91> +18:33:24 Transaction Type : REQUEST +18:33:24 Received From : +18:33:24 ============================================================================ +18:33:24 FNo. Len. Field Value +18:33:24 ============================================================================ +18:33:24 [ 1] [ 4] [0800] +18:33:24 [ 7] [ 10] [0320113230] +18:33:24 [ 11] [ 6] [157727] +18:33:24 [ 70] [ 3] [301] +18:33:24 ============================================================================ +18:33:24 + + +waiting on router queue for slot.... +18:33:24 Sending to : +18:33:24 ============================================================================ +18:33:24 ============================================================================ +18:33:24 Slot Id : <91> +18:33:24 Transaction Type : RESPONSE +18:33:24 Received From : +18:33:24 ============================================================================ +18:33:24 FNo. Len. Field Value +18:33:24 ============================================================================ +18:33:24 [ 1] [ 4] [0810] +18:33:24 [ 7] [ 10] [0320113230] +18:33:24 [ 11] [ 6] [157727] +18:33:24 [ 39] [ 2] [00] +18:33:24 [ 70] [ 3] [301] +18:33:24 ============================================================================ +18:33:24 Calculate Source COMM Id = 2 +18:33:24 ============================================================================ +18:33:24 + + +waiting on router queue for slot.... +18:33:33 ============================================================================ +18:33:33 Slot Id : <72> +18:33:33 Transaction Type : REQUEST +18:33:33 Received From : +18:33:33 ============================================================================ +18:33:33 FNo. Len. Field Value +18:33:33 ============================================================================ +18:33:33 [ 1] [ 4] [0800] +18:33:33 [ 2] [ 5] [02531] +18:33:33 [ 3] [ 6] [579188] +18:33:33 [ 7] [ 10] [0320113333] +18:33:33 [ 11] [ 6] [807489] +18:33:33 [ 15] [ 10] [0320113333] +18:33:33 [ 37] [ 11] [57918807489] +18:33:33 [ 70] [ 3] [001] +18:33:33 ============================================================================ +18:33:33 + + +waiting on router queue for slot.... +18:33:33 ============================================================================ +18:33:33 Slot Id : <72> +18:33:33 Transaction Type : RESPONSE +18:33:33 Received From : +18:33:33 ============================================================================ +18:33:33 FNo. Len. Field Value +18:33:33 ============================================================================ +18:33:33 [ 1] [ 4] [0810] +18:33:33 [ 7] [ 10] [0320113333] +18:33:33 [ 11] [ 6] [807489] +18:33:33 [ 15] [ 4] [0320] +18:33:33 [ 37] [ 12] [57918807489] +18:33:33 [ 39] [ 2] [00] +18:33:33 [ 70] [ 3] [001] +18:33:33 ============================================================================ +18:33:33 Sending to : +18:33:33 ============================================================================ +18:33:33 + + +waiting on router queue for slot.... +18:33:34 ============================================================================ +18:33:34 Slot Id : <65> +18:33:34 Transaction Type : REQUEST +18:33:34 Received From : +18:33:34 ============================================================================ +18:33:34 FNo. Len. Field Value +18:33:34 ============================================================================ +18:33:34 [ 1] [ 4] [0800] +18:33:34 [ 7] [ 10] [0320113240] +18:33:34 [ 11] [ 6] [157728] +18:33:34 [ 70] [ 3] [301] +18:33:34 ============================================================================ +18:33:34 + + +waiting on router queue for slot.... +18:33:34 Sending to : +18:33:34 ============================================================================ +18:33:34 ============================================================================ +18:33:34 Slot Id : <65> +18:33:34 Transaction Type : RESPONSE +18:33:34 Received From : +18:33:34 ============================================================================ +18:33:34 FNo. Len. Field Value +18:33:34 ============================================================================ +18:33:34 [ 1] [ 4] [0810] +18:33:34 [ 7] [ 10] [0320113240] +18:33:34 [ 11] [ 6] [157728] +18:33:34 [ 39] [ 2] [00] +18:33:34 [ 70] [ 3] [301] +18:33:34 ============================================================================ +18:33:34 Calculate Source COMM Id = 2 +18:33:34 ============================================================================ +18:33:34 + + +waiting on router queue for slot.... +18:33:39 ============================================================================ +18:33:39 Slot Id : <76> +18:33:39 Transaction Type : REQUEST +18:33:39 Received From : +18:33:39 ============================================================================ +18:33:39 FNo. Len. Field Value +18:33:39 ============================================================================ +18:33:39 [ 1] [ 4] [0800] +18:33:39 [ 7] [ 10] [0321014527] +18:33:39 [ 11] [ 6] [184527] +18:33:39 [ 37] [ 12] [57918184527] +18:33:39 [ 70] [ 3] [301] +18:33:39 ============================================================================ +18:33:39 + + +waiting on router queue for slot.... +18:33:39 Sending to : +18:33:39 ============================================================================ +18:33:39 ============================================================================ +18:33:39 Slot Id : <76> +18:33:39 Transaction Type : RESPONSE +18:33:39 Received From : +18:33:39 ============================================================================ +18:33:39 FNo. Len. Field Value +18:33:39 ============================================================================ +18:33:39 [ 1] [ 4] [0810] +18:33:39 [ 7] [ 10] [0321014527] +18:33:39 [ 11] [ 6] [184527] +18:33:39 [ 37] [ 12] [579181845270] +18:33:39 [ 39] [ 2] [00] +18:33:39 [ 70] [ 3] [810] +18:33:39 ============================================================================ +18:33:39 Calculate Source COMM Id = 6 +18:33:39 ============================================================================ +18:33:39 + + +waiting on router queue for slot.... +18:33:41 ============================================================================ +18:33:41 Slot Id : <90> +18:33:41 Transaction Type : REQUEST +18:33:41 Received From : +18:33:41 ============================================================================ +18:33:41 FNo. Len. Field Value +18:33:41 ============================================================================ +18:33:41 [ 1] [ 4] [0420] +18:33:41 [ 2] [ 16] [1808930600008361] +18:33:41 [ 3] [ 6] [011000] +18:33:41 [ 4] [ 12] [000020000000] +18:33:41 [ 7] [ 10] [0320183304] +18:33:41 [ 11] [ 6] [828493] +18:33:41 [ 12] [ 6] [183304] +18:33:41 [ 13] [ 4] [0320] +18:33:41 [ 15] [ 4] [0320] +18:33:41 [ 18] [ 4] [6011] +18:33:41 [ 22] [ 3] [900] +18:33:41 [ 25] [ 2] [02] +18:33:41 [ 28] [ 9] [C00002000] +18:33:41 [ 32] [ 6] [621354] +18:33:41 [ 35] [ 27] [1808930600008361=1803500887] +18:33:41 [ 37] [ 12] [507904424240] +18:33:41 [ 39] [ 2] [00] +18:33:41 [ 41] [ 8] [03004100] +18:33:41 [ 42] [ 15] [NATIVE ] +18:33:41 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +18:33:41 [ 49] [ 3] [418] +18:33:41 [ 90] [ 42] [020082849303201833040000062135400000000000] +18:33:41 ============================================================================ +18:33:41 + + +waiting on router queue for slot.... +18:33:41 Sending to : +18:33:41 ============================================================================ +18:33:43 ============================================================================ +18:33:43 Slot Id : <106> +18:33:43 Transaction Type : REQUEST +18:33:43 Received From : +18:33:43 ============================================================================ +18:33:43 FNo. Len. Field Value +18:33:43 ============================================================================ +18:33:43 [ 1] [ 4] [0200] +18:33:43 [ 2] [ 16] [6213545001015290] +18:33:43 [ 3] [ 6] [302000] +18:33:43 [ 4] [ 12] [000000000000] +18:33:43 [ 7] [ 10] [0320183133] +18:33:43 [ 11] [ 6] [954807] +18:33:43 [ 12] [ 6] [183133] +18:33:43 [ 13] [ 4] [0320] +18:33:43 [ 15] [ 4] [0320] +18:33:43 [ 18] [ 4] [6011] +18:33:43 [ 19] [ 3] [418] +18:33:43 [ 22] [ 3] [021] +18:33:43 [ 25] [ 2] [01] +18:33:43 [ 28] [ 9] [D00000000] +18:33:43 [ 32] [ 6] [668899] +18:33:43 [ 35] [ 32] [6213545001015290=491212011529214] +18:33:43 [ 37] [ 12] [507900146893] +18:33:43 [ 41] [ 8] [03020005] +18:33:43 [ 42] [ 15] [APT ] +18:33:43 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:33:43 [ 49] [ 3] [418] +18:33:43 [ 52] [ 16] [E8D87D9524BF2AA4] +18:33:43 ============================================================================ +18:33:43 + + +waiting on router queue for slot.... +18:33:43 Sending to : +18:33:43 ============================================================================ +18:33:43 Sending to : +18:33:43 ============================================================================ +18:33:44 ============================================================================ +18:33:44 Slot Id : <106> +18:33:44 Transaction Type : REQUEST +18:33:44 Received From : +18:33:44 ============================================================================ +18:33:44 FNo. Len. Field Value +18:33:44 ============================================================================ +18:33:44 [ 1] [ 4] [0200] +18:33:44 [ 2] [ 16] [6213545001015290] +18:33:44 [ 3] [ 6] [302000] +18:33:44 [ 4] [ 12] [000000000000] +18:33:44 [ 7] [ 10] [0320183133] +18:33:44 [ 11] [ 6] [954807] +18:33:44 [ 12] [ 6] [183133] +18:33:44 [ 13] [ 4] [0320] +18:33:44 [ 15] [ 4] [0320] +18:33:44 [ 18] [ 4] [6011] +18:33:44 [ 19] [ 3] [418] +18:33:44 [ 22] [ 3] [021] +18:33:44 [ 25] [ 2] [01] +18:33:44 [ 28] [ 9] [D00000000] +18:33:44 [ 32] [ 6] [668899] +18:33:44 [ 35] [ 32] [6213545001015290=491212011529214] +18:33:44 [ 37] [ 12] [507900146893] +18:33:44 [ 41] [ 8] [03020005] +18:33:44 [ 42] [ 15] [APT ] +18:33:44 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:33:44 [ 49] [ 3] [418] +18:33:44 [ 52] [ 16] [E8D87D9524BF2AA4] +18:33:44 ============================================================================ +18:33:44 + + +waiting on router queue for slot.... +18:33:44 Sending to : +18:33:44 ============================================================================ +18:33:44 ============================================================================ +18:33:44 Slot Id : <106> +18:33:44 Transaction Type : REQUEST +18:33:44 Received From : +18:33:44 ============================================================================ +18:33:44 FNo. Len. Field Value +18:33:44 ============================================================================ +18:33:44 [ 1] [ 4] [0200] +18:33:44 [ 2] [ 16] [6213545001015290] +18:33:44 [ 3] [ 6] [302000] +18:33:44 [ 4] [ 12] [000000000000] +18:33:44 [ 7] [ 10] [0320183133] +18:33:44 [ 11] [ 6] [954807] +18:33:44 [ 12] [ 6] [183133] +18:33:44 [ 13] [ 4] [0320] +18:33:44 [ 15] [ 4] [0320] +18:33:44 [ 18] [ 4] [6011] +18:33:44 [ 19] [ 3] [418] +18:33:44 [ 22] [ 3] [021] +18:33:44 [ 25] [ 2] [01] +18:33:44 [ 28] [ 9] [D00000000] +18:33:44 [ 32] [ 6] [668899] +18:33:44 [ 35] [ 32] [6213545001015290=491212011529214] +18:33:44 [ 37] [ 12] [507900146893] +18:33:44 [ 41] [ 8] [03020005] +18:33:44 [ 42] [ 15] [APT ] +18:33:44 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:33:44 [ 49] [ 3] [418] +18:33:44 [ 52] [ 16] [C8B740AE5B9D1CF0] +18:33:44 ============================================================================ +18:33:44 + + +waiting on router queue for slot.... +18:33:44 Sending to : <0> +18:33:44 ============================================================================ +18:33:44 ============================================================================ +18:33:44 Slot Id : <106> +18:33:44 Transaction Type : RESPONSE +18:33:44 Received From : +18:33:44 ============================================================================ +18:33:44 FNo. Len. Field Value +18:33:44 ============================================================================ +18:33:44 [ 1] [ 4] [0210] +18:33:44 [ 2] [ 16] [6213545001015290] +18:33:44 [ 3] [ 6] [302000] +18:33:44 [ 4] [ 12] [000000000000] +18:33:44 [ 7] [ 10] [0320183133] +18:33:44 [ 11] [ 6] [954807] +18:33:44 [ 12] [ 6] [183133] +18:33:44 [ 13] [ 4] [0320] +18:33:44 [ 15] [ 4] [0320] +18:33:44 [ 18] [ 4] [6011] +18:33:44 [ 19] [ 3] [418] +18:33:44 [ 32] [ 6] [668899] +18:33:44 [ 35] [ 32] [6213545001015290=491212011529214] +18:33:44 [ 37] [ 12] [507900146893] +18:33:44 [ 38] [ 6] [970495] +18:33:44 [ 39] [ 2] [00] +18:33:44 [ 41] [ 8] [03020005] +18:33:44 [ 49] [ 3] [418] +18:33:44 [ 54] [ 40] [2001418C0004209310872002418C000420931087] +18:33:44 ============================================================================ +18:33:44 Sending to : +18:33:44 ============================================================================ +18:33:44 + + +waiting on router queue for slot.... +18:33:46 ============================================================================ +18:33:46 Slot Id : <90> +18:33:46 Transaction Type : RESPONSE +18:33:46 Received From : +18:33:46 ============================================================================ +18:33:46 FNo. Len. Field Value +18:33:46 ============================================================================ +18:33:46 [ 1] [ 4] [0430] +18:33:46 [ 2] [ 16] [1808930600008361] +18:33:46 [ 3] [ 6] [011000] +18:33:46 [ 4] [ 12] [000020000000] +18:33:46 [ 7] [ 10] [0320183304] +18:33:46 [ 11] [ 6] [828493] +18:33:46 [ 12] [ 6] [183304] +18:33:46 [ 13] [ 4] [0320] +18:33:46 [ 15] [ 4] [0320] +18:33:46 [ 18] [ 4] [6011] +18:33:46 [ 22] [ 3] [900] +18:33:46 [ 25] [ 2] [02] +18:33:46 [ 28] [ 9] [C00002000] +18:33:46 [ 32] [ 6] [621354] +18:33:46 [ 35] [ 27] [1808930600008361=1803500887] +18:33:46 [ 37] [ 12] [507904424240] +18:33:46 [ 39] [ 2] [00] +18:33:46 [ 41] [ 8] [03004100] +18:33:46 [ 42] [ 15] [NATIVE ] +18:33:46 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +18:33:46 [ 49] [ 3] [418] +18:33:46 [ 90] [ 42] [020082849303201833040000062135400000000000] +18:33:46 ============================================================================ +18:33:46 Calculate Source COMM Id = 0 +18:33:46 ============================================================================ +18:33:46 + + +waiting on router queue for slot.... +18:33:46 ============================================================================ +18:33:46 Slot Id : <99> +18:33:46 Transaction Type : RESPONSE +18:33:46 Received From : +18:33:46 ============================================================================ +18:33:46 FNo. Len. Field Value +18:33:46 ============================================================================ +18:33:46 [ 1] [ 4] [0210] +18:33:46 [ 2] [ 16] [1808930600008361] +18:33:46 [ 3] [ 6] [011000] +18:33:46 [ 4] [ 12] [000020000000] +18:33:46 [ 6] [ 12] [000020000000] +18:33:46 [ 7] [ 10] [0320183304] +18:33:46 [ 11] [ 6] [828493] +18:33:46 [ 12] [ 6] [183304] +18:33:46 [ 13] [ 4] [0320] +18:33:46 [ 18] [ 4] [6011] +18:33:46 [ 19] [ 3] [418] +18:33:46 [ 22] [ 3] [021] +18:33:46 [ 28] [ 9] [D00002000] +18:33:46 [ 32] [ 6] [621354] +18:33:46 [ 35] [ 27] [1808930600008361=1803500887] +18:33:46 [ 37] [ 12] [507904424240] +18:33:46 [ 39] [ 2] [91] +18:33:46 [ 41] [ 8] [03004100] +18:33:46 [ 44] [ 3] [0X2] +18:33:46 [ 49] [ 3] [418] +18:33:46 [ 51] [ 3] [418] +18:33:46 [ 52] [ 16] [082E8FF96C71E68C] +18:33:46 ============================================================================ +18:33:46 Sending to : +18:33:46 ============================================================================ +18:33:46 + + +waiting on router queue for slot.... +18:33:46 ============================================================================ +18:33:46 Slot Id : <106> +18:33:46 Transaction Type : RESPONSE +18:33:46 Received From : +18:33:46 ============================================================================ +18:33:46 FNo. Len. Field Value +18:33:46 ============================================================================ +18:33:46 [ 1] [ 4] [0210] +18:33:46 [ 2] [ 16] [6213545001015290] +18:33:46 [ 3] [ 6] [302000] +18:33:46 [ 4] [ 12] [000000000000] +18:33:46 [ 7] [ 10] [0320183133] +18:33:46 [ 11] [ 6] [954807] +18:33:46 [ 12] [ 6] [183133] +18:33:46 [ 13] [ 4] [0320] +18:33:46 [ 15] [ 4] [0320] +18:33:46 [ 18] [ 4] [6011] +18:33:46 [ 19] [ 3] [418] +18:33:46 [ 32] [ 6] [668899] +18:33:46 [ 35] [ 32] [6213545001015290=491212011529214] +18:33:46 [ 37] [ 12] [507900146893] +18:33:46 [ 38] [ 6] [970495] +18:33:46 [ 39] [ 2] [00] +18:33:46 [ 41] [ 8] [03020005] +18:33:46 [ 49] [ 3] [418] +18:33:46 [ 54] [ 40] [2001418C0004209310872002418C000420931087] +18:33:46 ============================================================================ +18:33:46 Calculate Source COMM Id = 4 +18:33:46 ============================================================================ +18:33:46 + + +waiting on router queue for slot.... +18:33:47 ============================================================================ +18:33:47 Slot Id : <99> +18:33:47 Transaction Type : RESPONSE +18:33:47 Received From : +18:33:47 ============================================================================ +18:33:47 FNo. Len. Field Value +18:33:47 ============================================================================ +18:33:47 [ 1] [ 4] [0210] +18:33:47 [ 2] [ 16] [1808930600008361] +18:33:47 [ 3] [ 6] [011000] +18:33:47 [ 4] [ 12] [000020000000] +18:33:47 [ 6] [ 12] [000020000000] +18:33:47 [ 7] [ 10] [0320183304] +18:33:47 [ 11] [ 6] [828493] +18:33:47 [ 12] [ 6] [183304] +18:33:47 [ 13] [ 4] [0320] +18:33:47 [ 18] [ 4] [6011] +18:33:47 [ 19] [ 3] [418] +18:33:47 [ 22] [ 3] [021] +18:33:47 [ 28] [ 9] [D00002000] +18:33:47 [ 32] [ 6] [621354] +18:33:47 [ 35] [ 27] [1808930600008361=1803500887] +18:33:47 [ 37] [ 12] [507904424240] +18:33:47 [ 39] [ 2] [91] +18:33:47 [ 41] [ 8] [03004100] +18:33:47 [ 44] [ 3] [0X2] +18:33:47 [ 49] [ 3] [418] +18:33:47 [ 51] [ 3] [418] +18:33:47 [ 52] [ 16] [082E8FF96C71E68C] +18:33:47 ============================================================================ +18:33:47 Calculate Source COMM Id = 0 +18:33:47 ============================================================================ +18:33:47 + + +waiting on router queue for slot.... +18:33:49 ============================================================================ +18:33:49 Slot Id : <114> +18:33:49 Transaction Type : REQUEST +18:33:49 Received From : +18:33:49 ============================================================================ +18:33:49 FNo. Len. Field Value +18:33:49 ============================================================================ +18:33:49 [ 1] [ 4] [0800] +18:33:49 [ 7] [ 10] [0320113256] +18:33:49 [ 11] [ 6] [157729] +18:33:49 [ 70] [ 3] [301] +18:33:49 ============================================================================ +18:33:49 + + +waiting on router queue for slot.... +18:33:49 Sending to : +18:33:49 ============================================================================ +18:33:49 ============================================================================ +18:33:49 Slot Id : <114> +18:33:49 Transaction Type : RESPONSE +18:33:49 Received From : +18:33:49 ============================================================================ +18:33:49 FNo. Len. Field Value +18:33:49 ============================================================================ +18:33:49 [ 1] [ 4] [0810] +18:33:49 [ 7] [ 10] [0320113256] +18:33:49 [ 11] [ 6] [157729] +18:33:49 [ 39] [ 2] [00] +18:33:49 [ 70] [ 3] [301] +18:33:49 ============================================================================ +18:33:49 Calculate Source COMM Id = 2 +18:33:49 ============================================================================ +18:33:49 + + +waiting on router queue for slot.... +18:33:53 ============================================================================ +18:33:53 Slot Id : <83> +18:33:53 Transaction Type : REQUEST +18:33:53 Received From : +18:33:53 ============================================================================ +18:33:53 FNo. Len. Field Value +18:33:53 ============================================================================ +18:33:53 [ 1] [ 4] [0200] +18:33:53 [ 2] [ 16] [6213541000532492] +18:33:53 [ 3] [ 6] [011000] +18:33:53 [ 4] [ 12] [000100000000] +18:33:53 [ 7] [ 10] [0320183414] +18:33:53 [ 11] [ 6] [210463] +18:33:53 [ 12] [ 6] [183557] +18:33:53 [ 13] [ 4] [0320] +18:33:53 [ 14] [ 4] [4912] +18:33:53 [ 15] [ 4] [0320] +18:33:53 [ 18] [ 4] [6011] +18:33:53 [ 19] [ 3] [418] +18:33:53 [ 22] [ 3] [021] +18:33:53 [ 25] [ 2] [01] +18:33:53 [ 28] [ 9] [D00002000] +18:33:53 [ 32] [ 6] [198901] +18:33:53 [ 35] [ 32] [6213541000532492=491212013249831] +18:33:53 [ 37] [ 12] [507918210463] +18:33:53 [ 41] [ 8] [00002222] +18:33:53 [ 42] [ 15] [000000041002222] +18:33:53 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +18:33:53 [ 49] [ 3] [418] +18:33:53 [ 52] [ 16] [08425DC8FE91A6D0] +18:33:53 ============================================================================ +18:33:53 + + +waiting on router queue for slot.... +18:33:53 Sending to : +18:33:53 ============================================================================ +18:33:53 Sending to : +18:33:53 ============================================================================ +18:33:54 ============================================================================ +18:33:54 Slot Id : <83> +18:33:54 Transaction Type : REQUEST +18:33:54 Received From : +18:33:54 ============================================================================ +18:33:54 FNo. Len. Field Value +18:33:54 ============================================================================ +18:33:54 [ 1] [ 4] [0200] +18:33:54 [ 2] [ 16] [6213541000532492] +18:33:54 [ 3] [ 6] [011000] +18:33:54 [ 4] [ 12] [000100000000] +18:33:54 [ 7] [ 10] [0320183414] +18:33:54 [ 11] [ 6] [210463] +18:33:54 [ 12] [ 6] [183557] +18:33:54 [ 13] [ 4] [0320] +18:33:54 [ 14] [ 4] [4912] +18:33:54 [ 15] [ 4] [0320] +18:33:54 [ 18] [ 4] [6011] +18:33:54 [ 19] [ 3] [418] +18:33:54 [ 22] [ 3] [021] +18:33:54 [ 25] [ 2] [01] +18:33:54 [ 28] [ 9] [D00002000] +18:33:54 [ 32] [ 6] [198901] +18:33:54 [ 35] [ 32] [6213541000532492=491212013249831] +18:33:54 [ 37] [ 12] [507918210463] +18:33:54 [ 41] [ 8] [00002222] +18:33:54 [ 42] [ 15] [000000041002222] +18:33:54 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +18:33:54 [ 49] [ 3] [418] +18:33:54 [ 52] [ 16] [08425DC8FE91A6D0] +18:33:54 ============================================================================ +18:33:54 + + +waiting on router queue for slot.... +18:33:54 Sending to : +18:33:54 ============================================================================ +18:33:54 ============================================================================ +18:33:54 Slot Id : <83> +18:33:54 Transaction Type : REQUEST +18:33:54 Received From : +18:33:54 ============================================================================ +18:33:54 FNo. Len. Field Value +18:33:54 ============================================================================ +18:33:54 [ 1] [ 4] [0200] +18:33:54 [ 2] [ 16] [6213541000532492] +18:33:54 [ 3] [ 6] [011000] +18:33:54 [ 4] [ 12] [000100000000] +18:33:54 [ 7] [ 10] [0320183414] +18:33:54 [ 11] [ 6] [210463] +18:33:54 [ 12] [ 6] [183557] +18:33:54 [ 13] [ 4] [0320] +18:33:54 [ 14] [ 4] [4912] +18:33:54 [ 15] [ 4] [0320] +18:33:54 [ 18] [ 4] [6011] +18:33:54 [ 19] [ 3] [418] +18:33:54 [ 22] [ 3] [021] +18:33:54 [ 25] [ 2] [01] +18:33:54 [ 28] [ 9] [D00002000] +18:33:54 [ 32] [ 6] [198901] +18:33:54 [ 35] [ 32] [6213541000532492=491212013249831] +18:33:54 [ 37] [ 12] [507918210463] +18:33:54 [ 41] [ 8] [00002222] +18:33:54 [ 42] [ 15] [000000041002222] +18:33:54 [ 43] [ 40] [ATM NONG VAN JUMPASAK VN ] +18:33:54 [ 49] [ 3] [418] +18:33:54 [ 52] [ 16] [E67DD9A0FFF82309] +18:33:54 ============================================================================ +18:33:54 + + +waiting on router queue for slot.... +18:33:54 Sending to : <0> +18:33:54 ============================================================================ +18:33:55 ============================================================================ +18:33:55 Slot Id : <83> +18:33:55 Transaction Type : RESPONSE +18:33:55 Received From : +18:33:55 ============================================================================ +18:33:55 FNo. Len. Field Value +18:33:55 ============================================================================ +18:33:55 [ 1] [ 4] [0210] +18:33:55 [ 2] [ 16] [6213541000532492] +18:33:55 [ 3] [ 6] [011000] +18:33:55 [ 4] [ 12] [000100000000] +18:33:55 [ 7] [ 10] [0320183414] +18:33:55 [ 11] [ 6] [210463] +18:33:55 [ 12] [ 6] [183557] +18:33:55 [ 13] [ 4] [0320] +18:33:55 [ 15] [ 4] [0320] +18:33:55 [ 18] [ 4] [6011] +18:33:55 [ 19] [ 3] [418] +18:33:55 [ 32] [ 6] [198901] +18:33:55 [ 35] [ 32] [6213541000532492=491212013249831] +18:33:55 [ 37] [ 12] [507918210463] +18:33:55 [ 38] [ 6] [187786] +18:33:55 [ 39] [ 2] [00] +18:33:55 [ 41] [ 8] [00002222] +18:33:55 [ 49] [ 3] [418] +18:33:55 [ 54] [ 40] [1001418C0012584504941002418C001258450494] +18:33:55 ============================================================================ +18:33:55 Sending to : +18:33:55 ============================================================================ +18:33:55 + + +waiting on router queue for slot.... +18:33:56 ============================================================================ +18:33:56 Slot Id : <83> +18:33:56 Transaction Type : RESPONSE +18:33:56 Received From : +18:33:56 ============================================================================ +18:33:56 FNo. Len. Field Value +18:33:56 ============================================================================ +18:33:56 [ 1] [ 4] [0210] +18:33:56 [ 2] [ 16] [6213541000532492] +18:33:56 [ 3] [ 6] [011000] +18:33:56 [ 4] [ 12] [000100000000] +18:33:56 [ 7] [ 10] [0320183414] +18:33:56 [ 11] [ 6] [210463] +18:33:56 [ 12] [ 6] [183557] +18:33:56 [ 13] [ 4] [0320] +18:33:56 [ 15] [ 4] [0320] +18:33:56 [ 18] [ 4] [6011] +18:33:56 [ 19] [ 3] [418] +18:33:56 [ 32] [ 6] [198901] +18:33:56 [ 35] [ 32] [6213541000532492=491212013249831] +18:33:56 [ 37] [ 12] [507918210463] +18:33:56 [ 38] [ 6] [187786] +18:33:56 [ 39] [ 2] [00] +18:33:56 [ 41] [ 8] [00002222] +18:33:56 [ 49] [ 3] [418] +18:33:56 [ 54] [ 40] [1001418C0012584504941002418C001258450494] +18:33:56 ============================================================================ +18:33:56 Calculate Source COMM Id = 5 +18:33:56 ============================================================================ +18:33:56 + + +waiting on router queue for slot.... +18:34:00 ============================================================================ +18:34:00 Slot Id : <66> +18:34:00 Transaction Type : REQUEST +18:34:00 Received From : +18:34:00 ============================================================================ +18:34:00 FNo. Len. Field Value +18:34:00 ============================================================================ +18:34:00 [ 1] [ 4] [0800] +18:34:00 [ 7] [ 10] [0320113307] +18:34:00 [ 11] [ 6] [157730] +18:34:00 [ 70] [ 3] [301] +18:34:00 ============================================================================ +18:34:00 + + +waiting on router queue for slot.... +18:34:00 Sending to : +18:34:00 ============================================================================ +18:34:00 ============================================================================ +18:34:00 Slot Id : <66> +18:34:00 Transaction Type : RESPONSE +18:34:00 Received From : +18:34:00 ============================================================================ +18:34:00 FNo. Len. Field Value +18:34:00 ============================================================================ +18:34:00 [ 1] [ 4] [0810] +18:34:00 [ 7] [ 10] [0320113307] +18:34:00 [ 11] [ 6] [157730] +18:34:00 [ 39] [ 2] [00] +18:34:00 [ 70] [ 3] [301] +18:34:00 ============================================================================ +18:34:00 Calculate Source COMM Id = 2 +18:34:00 ============================================================================ +18:34:00 + + +waiting on router queue for slot.... +18:34:11 ============================================================================ +18:34:11 Slot Id : <118> +18:34:11 Transaction Type : REQUEST +18:34:11 Received From : +18:34:11 ============================================================================ +18:34:11 FNo. Len. Field Value +18:34:11 ============================================================================ +18:34:11 [ 1] [ 4] [0800] +18:34:11 [ 7] [ 10] [0320113318] +18:34:11 [ 11] [ 6] [157731] +18:34:11 [ 70] [ 3] [301] +18:34:11 ============================================================================ +18:34:11 + + +waiting on router queue for slot.... +18:34:11 Sending to : +18:34:11 ============================================================================ +18:34:11 ============================================================================ +18:34:11 Slot Id : <118> +18:34:11 Transaction Type : RESPONSE +18:34:11 Received From : +18:34:11 ============================================================================ +18:34:11 FNo. Len. Field Value +18:34:11 ============================================================================ +18:34:11 [ 1] [ 4] [0810] +18:34:11 [ 7] [ 10] [0320113318] +18:34:11 [ 11] [ 6] [157731] +18:34:11 [ 39] [ 2] [00] +18:34:11 [ 70] [ 3] [301] +18:34:11 ============================================================================ +18:34:11 Calculate Source COMM Id = 2 +18:34:11 ============================================================================ +18:34:11 + + +waiting on router queue for slot.... +18:34:11 ============================================================================ +18:34:11 Slot Id : <107> +18:34:11 Transaction Type : REQUEST +18:34:11 Received From : +18:34:11 ============================================================================ +18:34:11 FNo. Len. Field Value +18:34:11 ============================================================================ +18:34:11 [ 1] [ 4] [0200] +18:34:11 [ 2] [ 16] [6688990103650204] +18:34:11 [ 3] [ 6] [300000] +18:34:11 [ 4] [ 12] [000000000000] +18:34:11 [ 7] [ 10] [0320183406] +18:34:11 [ 11] [ 6] [828660] +18:34:11 [ 12] [ 6] [183406] +18:34:11 [ 13] [ 4] [0320] +18:34:11 [ 15] [ 4] [0320] +18:34:11 [ 18] [ 4] [6011] +18:34:11 [ 22] [ 3] [900] +18:34:11 [ 25] [ 2] [02] +18:34:11 [ 28] [ 9] [D00000000] +18:34:11 [ 32] [ 6] [621354] +18:34:11 [ 35] [ 37] [6688990103650204=43011231020486100000] +18:34:11 [ 37] [ 12] [507903489514] +18:34:11 [ 41] [ 8] [06002100] +18:34:11 [ 42] [ 15] [NATIVE ] +18:34:11 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +18:34:11 [ 49] [ 3] [418] +18:34:11 [ 52] [ 16] [64B3E1A6C98C3BFE] +18:34:11 ============================================================================ +18:34:11 + + +waiting on router queue for slot.... +18:34:11 Sending to : +18:34:11 ============================================================================ +18:34:11 Sending to : +18:34:11 ============================================================================ +18:34:12 ============================================================================ +18:34:12 Slot Id : <107> +18:34:12 Transaction Type : REQUEST +18:34:12 Received From : +18:34:12 ============================================================================ +18:34:12 FNo. Len. Field Value +18:34:12 ============================================================================ +18:34:12 [ 1] [ 4] [0200] +18:34:12 [ 2] [ 16] [6688990103650204] +18:34:12 [ 3] [ 6] [300000] +18:34:12 [ 4] [ 12] [000000000000] +18:34:12 [ 7] [ 10] [0320183406] +18:34:12 [ 11] [ 6] [828660] +18:34:12 [ 12] [ 6] [183406] +18:34:12 [ 13] [ 4] [0320] +18:34:12 [ 15] [ 4] [0320] +18:34:12 [ 18] [ 4] [6011] +18:34:12 [ 22] [ 3] [900] +18:34:12 [ 25] [ 2] [02] +18:34:12 [ 28] [ 9] [D00000000] +18:34:12 [ 32] [ 6] [621354] +18:34:12 [ 35] [ 37] [6688990103650204=43011231020486100000] +18:34:12 [ 37] [ 12] [507903489514] +18:34:12 [ 41] [ 8] [06002100] +18:34:12 [ 42] [ 15] [NATIVE ] +18:34:12 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +18:34:12 [ 49] [ 3] [418] +18:34:12 [ 52] [ 16] [64B3E1A6C98C3BFE] +18:34:12 ============================================================================ +18:34:12 + + +waiting on router queue for slot.... +18:34:12 Sending to : +18:34:12 ============================================================================ +18:34:12 ============================================================================ +18:34:12 Slot Id : <107> +18:34:12 Transaction Type : REQUEST +18:34:12 Received From : +18:34:12 ============================================================================ +18:34:12 FNo. Len. Field Value +18:34:12 ============================================================================ +18:34:12 [ 1] [ 4] [0200] +18:34:12 [ 2] [ 16] [6688990103650204] +18:34:12 [ 3] [ 6] [300000] +18:34:12 [ 4] [ 12] [000000000000] +18:34:12 [ 7] [ 10] [0320183406] +18:34:12 [ 11] [ 6] [828660] +18:34:12 [ 12] [ 6] [183406] +18:34:12 [ 13] [ 4] [0320] +18:34:12 [ 15] [ 4] [0320] +18:34:12 [ 18] [ 4] [6011] +18:34:12 [ 22] [ 3] [900] +18:34:12 [ 25] [ 2] [02] +18:34:12 [ 28] [ 9] [D00000000] +18:34:12 [ 32] [ 6] [621354] +18:34:12 [ 35] [ 37] [6688990103650204=43011231020486100000] +18:34:12 [ 37] [ 12] [507903489514] +18:34:12 [ 41] [ 8] [06002100] +18:34:12 [ 42] [ 15] [NATIVE ] +18:34:12 [ 43] [ 40] [Parkbeng Market Parkbeng LAO] +18:34:12 [ 49] [ 3] [418] +18:34:12 [ 52] [ 16] [B36414BBCF882BF2] +18:34:12 ============================================================================ +18:34:12 + + +waiting on router queue for slot.... +18:34:12 Sending to : <4> +18:34:12 ============================================================================ +18:34:12 ============================================================================ +18:34:12 Slot Id : <107> +18:34:12 Transaction Type : RESPONSE +18:34:12 Received From : +18:34:12 ============================================================================ +18:34:12 FNo. Len. Field Value +18:34:12 ============================================================================ +18:34:12 [ 1] [ 4] [0210] +18:34:12 [ 2] [ 16] [6688990103650204] +18:34:12 [ 3] [ 6] [300000] +18:34:12 [ 4] [ 12] [000000000000] +18:34:12 [ 11] [ 6] [828660] +18:34:12 [ 12] [ 6] [183406] +18:34:12 [ 15] [ 4] [0320] +18:34:12 [ 18] [ 4] [6011] +18:34:12 [ 32] [ 6] [621354] +18:34:12 [ 35] [ 37] [6688990103650204=43011231020486100000] +18:34:12 [ 37] [ 12] [507903489514] +18:34:12 [ 38] [ 6] [597907] +18:34:12 [ 39] [ 2] [00] +18:34:12 [ 41] [ 8] [06002100] +18:34:12 [ 49] [ 3] [418] +18:34:12 [ 54] [ 20] [0002418C000117250559] +18:34:12 ============================================================================ +18:34:12 Sending to : +18:34:12 ============================================================================ +18:34:12 + + +waiting on router queue for slot.... +18:34:14 ============================================================================ +18:34:14 Slot Id : <107> +18:34:14 Transaction Type : RESPONSE +18:34:14 Received From : +18:34:14 ============================================================================ +18:34:14 FNo. Len. Field Value +18:34:14 ============================================================================ +18:34:14 [ 1] [ 4] [0210] +18:34:14 [ 2] [ 16] [6688990103650204] +18:34:14 [ 3] [ 6] [300000] +18:34:14 [ 4] [ 12] [000000000000] +18:34:14 [ 11] [ 6] [828660] +18:34:14 [ 12] [ 6] [183406] +18:34:14 [ 15] [ 4] [0320] +18:34:14 [ 18] [ 4] [6011] +18:34:14 [ 32] [ 6] [621354] +18:34:14 [ 35] [ 37] [6688990103650204=43011231020486100000] +18:34:14 [ 37] [ 12] [507903489514] +18:34:14 [ 38] [ 6] [597907] +18:34:14 [ 39] [ 2] [00] +18:34:14 [ 41] [ 8] [06002100] +18:34:14 [ 49] [ 3] [418] +18:34:14 [ 54] [ 20] [0002418C000117250559] +18:34:14 ============================================================================ +18:34:14 Calculate Source COMM Id = 0 +18:34:14 ============================================================================ +18:34:14 + + +waiting on router queue for slot.... +18:34:21 ============================================================================ +18:34:21 Slot Id : <121> +18:34:21 Transaction Type : REQUEST +18:34:21 Received From : +18:34:21 ============================================================================ +18:34:21 FNo. Len. Field Value +18:34:21 ============================================================================ +18:34:21 [ 1] [ 4] [0800] +18:34:21 [ 7] [ 10] [0320113328] +18:34:21 [ 11] [ 6] [157732] +18:34:21 [ 70] [ 3] [301] +18:34:21 ============================================================================ +18:34:21 + + +waiting on router queue for slot.... +18:34:21 Sending to : +18:34:21 ============================================================================ +18:34:21 ============================================================================ +18:34:21 Slot Id : <121> +18:34:21 Transaction Type : RESPONSE +18:34:21 Received From : +18:34:21 ============================================================================ +18:34:21 FNo. Len. Field Value +18:34:21 ============================================================================ +18:34:21 [ 1] [ 4] [0810] +18:34:21 [ 7] [ 10] [0320113328] +18:34:21 [ 11] [ 6] [157732] +18:34:21 [ 39] [ 2] [00] +18:34:21 [ 70] [ 3] [301] +18:34:21 ============================================================================ +18:34:21 Calculate Source COMM Id = 2 +18:34:21 ============================================================================ +18:34:21 + + +waiting on router queue for slot.... +18:34:22 ============================================================================ +18:34:22 Slot Id : <115> +18:34:22 Transaction Type : REQUEST +18:34:22 Received From : +18:34:22 ============================================================================ +18:34:22 FNo. Len. Field Value +18:34:22 ============================================================================ +18:34:22 [ 1] [ 4] [0200] +18:34:22 [ 2] [ 16] [1808930600008361] +18:34:22 [ 3] [ 6] [011000] +18:34:22 [ 4] [ 12] [000020000000] +18:34:22 [ 7] [ 10] [0320183417] +18:34:22 [ 11] [ 6] [828686] +18:34:22 [ 12] [ 6] [183417] +18:34:22 [ 13] [ 4] [0320] +18:34:22 [ 15] [ 4] [0320] +18:34:22 [ 18] [ 4] [6011] +18:34:22 [ 22] [ 3] [900] +18:34:22 [ 25] [ 2] [02] +18:34:22 [ 28] [ 9] [D00002000] +18:34:22 [ 32] [ 6] [621354] +18:34:22 [ 35] [ 27] [1808930600008361=1803500887] +18:34:22 [ 37] [ 12] [507904424242] +18:34:22 [ 41] [ 8] [03004100] +18:34:22 [ 42] [ 15] [NATIVE ] +18:34:22 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +18:34:22 [ 49] [ 3] [418] +18:34:22 [ 52] [ 16] [1F57EE341E15DBAD] +18:34:22 ============================================================================ +18:34:22 + + +waiting on router queue for slot.... +18:34:22 Sending to : +18:34:22 ============================================================================ +18:34:22 Sending to : +18:34:22 ============================================================================ +18:34:22 ============================================================================ +18:34:22 Slot Id : <115> +18:34:22 Transaction Type : REQUEST +18:34:22 Received From : +18:34:22 ============================================================================ +18:34:22 FNo. Len. Field Value +18:34:22 ============================================================================ +18:34:22 [ 1] [ 4] [0200] +18:34:22 [ 2] [ 16] [1808930600008361] +18:34:22 [ 3] [ 6] [011000] +18:34:22 [ 4] [ 12] [000020000000] +18:34:22 [ 7] [ 10] [0320183417] +18:34:22 [ 11] [ 6] [828686] +18:34:22 [ 12] [ 6] [183417] +18:34:22 [ 13] [ 4] [0320] +18:34:22 [ 15] [ 4] [0320] +18:34:22 [ 18] [ 4] [6011] +18:34:22 [ 22] [ 3] [900] +18:34:22 [ 25] [ 2] [02] +18:34:22 [ 28] [ 9] [D00002000] +18:34:22 [ 32] [ 6] [621354] +18:34:22 [ 35] [ 27] [1808930600008361=1803500887] +18:34:22 [ 37] [ 12] [507904424242] +18:34:22 [ 41] [ 8] [03004100] +18:34:22 [ 42] [ 15] [NATIVE ] +18:34:22 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +18:34:22 [ 49] [ 3] [418] +18:34:22 [ 52] [ 16] [1F57EE341E15DBAD] +18:34:22 ============================================================================ +18:34:22 + + +waiting on router queue for slot.... +18:34:22 Sending to : +18:34:22 ============================================================================ +18:34:22 ============================================================================ +18:34:22 Slot Id : <115> +18:34:22 Transaction Type : REQUEST +18:34:22 Received From : +18:34:22 ============================================================================ +18:34:22 FNo. Len. Field Value +18:34:22 ============================================================================ +18:34:22 [ 1] [ 4] [0200] +18:34:22 [ 2] [ 16] [1808930600008361] +18:34:22 [ 3] [ 6] [011000] +18:34:22 [ 4] [ 12] [000020000000] +18:34:22 [ 7] [ 10] [0320183417] +18:34:22 [ 11] [ 6] [828686] +18:34:22 [ 12] [ 6] [183417] +18:34:22 [ 13] [ 4] [0320] +18:34:22 [ 15] [ 4] [0320] +18:34:22 [ 18] [ 4] [6011] +18:34:22 [ 22] [ 3] [900] +18:34:22 [ 25] [ 2] [02] +18:34:22 [ 28] [ 9] [D00002000] +18:34:22 [ 32] [ 6] [621354] +18:34:22 [ 35] [ 27] [1808930600008361=1803500887] +18:34:22 [ 37] [ 12] [507904424242] +18:34:22 [ 41] [ 8] [03004100] +18:34:22 [ 42] [ 15] [NATIVE ] +18:34:22 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +18:34:22 [ 49] [ 3] [418] +18:34:22 [ 52] [ 16] [082E8FF96C71E68C] +18:34:22 ============================================================================ +18:34:22 + + +waiting on router queue for slot.... +18:34:22 Sending to : <2> +18:34:22 ============================================================================ +18:34:26 ============================================================================ +18:34:26 Slot Id : <115> +18:34:26 Transaction Type : RESPONSE +18:34:26 Received From : +18:34:26 ============================================================================ +18:34:26 FNo. Len. Field Value +18:34:26 ============================================================================ +18:34:26 [ 1] [ 4] [0210] +18:34:26 [ 2] [ 16] [1808930600008361] +18:34:26 [ 3] [ 6] [011000] +18:34:26 [ 4] [ 12] [000020000000] +18:34:26 [ 6] [ 12] [000020000000] +18:34:26 [ 7] [ 10] [0320183417] +18:34:26 [ 11] [ 6] [828686] +18:34:26 [ 12] [ 6] [183417] +18:34:26 [ 13] [ 4] [0320] +18:34:26 [ 18] [ 4] [6011] +18:34:26 [ 19] [ 3] [418] +18:34:26 [ 22] [ 3] [021] +18:34:26 [ 32] [ 6] [621354] +18:34:26 [ 35] [ 27] [1808930600008361=1803500887] +18:34:26 [ 37] [ 12] [507904424242] +18:34:26 [ 38] [ 6] [828686] +18:34:26 [ 39] [ 2] [00] +18:34:26 [ 41] [ 8] [03004100] +18:34:26 [ 49] [ 3] [418] +18:34:26 [ 52] [ 16] [082E8FF96C71E68C] +18:34:26 [ 54] [ 20] [1001418C000434062400] +18:34:26 ============================================================================ +18:34:26 Sending to : +18:34:26 ============================================================================ +18:34:26 + + +waiting on router queue for slot.... +18:34:27 ============================================================================ +18:34:27 Slot Id : <92> +18:34:27 Transaction Type : REQUEST +18:34:27 Received From : +18:34:27 ============================================================================ +18:34:27 FNo. Len. Field Value +18:34:27 ============================================================================ +18:34:27 [ 1] [ 4] [0200] +18:34:27 [ 2] [ 16] [6213545001015290] +18:34:27 [ 3] [ 6] [010000] +18:34:27 [ 4] [ 12] [000100000000] +18:34:27 [ 7] [ 10] [0320183217] +18:34:27 [ 11] [ 6] [954818] +18:34:27 [ 12] [ 6] [183217] +18:34:27 [ 13] [ 4] [0320] +18:34:27 [ 15] [ 4] [0320] +18:34:27 [ 18] [ 4] [6011] +18:34:27 [ 19] [ 3] [418] +18:34:27 [ 22] [ 3] [021] +18:34:27 [ 25] [ 2] [01] +18:34:27 [ 28] [ 9] [D00002000] +18:34:27 [ 32] [ 6] [668899] +18:34:27 [ 35] [ 32] [6213545001015290=491212011529214] +18:34:27 [ 37] [ 12] [507900146894] +18:34:27 [ 41] [ 8] [03020005] +18:34:27 [ 42] [ 15] [APT ] +18:34:27 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:34:27 [ 49] [ 3] [418] +18:34:27 [ 52] [ 16] [E8D87D9524BF2AA4] +18:34:27 ============================================================================ +18:34:27 + + +waiting on router queue for slot.... +18:34:27 Sending to : +18:34:27 ============================================================================ +18:34:27 Sending to : +18:34:27 ============================================================================ +18:34:27 ============================================================================ +18:34:27 Slot Id : <92> +18:34:27 Transaction Type : REQUEST +18:34:27 Received From : +18:34:27 ============================================================================ +18:34:27 FNo. Len. Field Value +18:34:27 ============================================================================ +18:34:27 [ 1] [ 4] [0200] +18:34:27 [ 2] [ 16] [6213545001015290] +18:34:27 [ 3] [ 6] [010000] +18:34:27 [ 4] [ 12] [000100000000] +18:34:27 [ 7] [ 10] [0320183217] +18:34:27 [ 11] [ 6] [954818] +18:34:27 [ 12] [ 6] [183217] +18:34:27 [ 13] [ 4] [0320] +18:34:27 [ 15] [ 4] [0320] +18:34:27 [ 18] [ 4] [6011] +18:34:27 [ 19] [ 3] [418] +18:34:27 [ 22] [ 3] [021] +18:34:27 [ 25] [ 2] [01] +18:34:27 [ 28] [ 9] [D00002000] +18:34:27 [ 32] [ 6] [668899] +18:34:27 [ 35] [ 32] [6213545001015290=491212011529214] +18:34:27 [ 37] [ 12] [507900146894] +18:34:27 [ 41] [ 8] [03020005] +18:34:27 [ 42] [ 15] [APT ] +18:34:27 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:34:27 [ 49] [ 3] [418] +18:34:27 [ 52] [ 16] [E8D87D9524BF2AA4] +18:34:27 ============================================================================ +18:34:27 + + +waiting on router queue for slot.... +18:34:27 Sending to : +18:34:27 ============================================================================ +18:34:27 ============================================================================ +18:34:27 Slot Id : <92> +18:34:27 Transaction Type : REQUEST +18:34:27 Received From : +18:34:27 ============================================================================ +18:34:27 FNo. Len. Field Value +18:34:27 ============================================================================ +18:34:27 [ 1] [ 4] [0200] +18:34:27 [ 2] [ 16] [6213545001015290] +18:34:27 [ 3] [ 6] [010000] +18:34:27 [ 4] [ 12] [000100000000] +18:34:27 [ 7] [ 10] [0320183217] +18:34:27 [ 11] [ 6] [954818] +18:34:27 [ 12] [ 6] [183217] +18:34:27 [ 13] [ 4] [0320] +18:34:27 [ 15] [ 4] [0320] +18:34:27 [ 18] [ 4] [6011] +18:34:27 [ 19] [ 3] [418] +18:34:27 [ 22] [ 3] [021] +18:34:27 [ 25] [ 2] [01] +18:34:27 [ 28] [ 9] [D00002000] +18:34:27 [ 32] [ 6] [668899] +18:34:27 [ 35] [ 32] [6213545001015290=491212011529214] +18:34:27 [ 37] [ 12] [507900146894] +18:34:27 [ 41] [ 8] [03020005] +18:34:27 [ 42] [ 15] [APT ] +18:34:27 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:34:27 [ 49] [ 3] [418] +18:34:27 [ 52] [ 16] [C8B740AE5B9D1CF0] +18:34:27 ============================================================================ +18:34:27 + + +waiting on router queue for slot.... +18:34:27 Sending to : <0> +18:34:27 ============================================================================ +18:34:28 ============================================================================ +18:34:28 Slot Id : <115> +18:34:28 Transaction Type : RESPONSE +18:34:28 Received From : +18:34:28 ============================================================================ +18:34:28 FNo. Len. Field Value +18:34:28 ============================================================================ +18:34:28 [ 1] [ 4] [0210] +18:34:28 [ 2] [ 16] [1808930600008361] +18:34:28 [ 3] [ 6] [011000] +18:34:28 [ 4] [ 12] [000020000000] +18:34:28 [ 6] [ 12] [000020000000] +18:34:28 [ 7] [ 10] [0320183417] +18:34:28 [ 11] [ 6] [828686] +18:34:28 [ 12] [ 6] [183417] +18:34:28 [ 13] [ 4] [0320] +18:34:28 [ 18] [ 4] [6011] +18:34:28 [ 19] [ 3] [418] +18:34:28 [ 22] [ 3] [021] +18:34:28 [ 32] [ 6] [621354] +18:34:28 [ 35] [ 27] [1808930600008361=1803500887] +18:34:28 [ 37] [ 12] [507904424242] +18:34:28 [ 38] [ 6] [828686] +18:34:28 [ 39] [ 2] [00] +18:34:28 [ 41] [ 8] [03004100] +18:34:28 [ 49] [ 3] [418] +18:34:28 [ 52] [ 16] [082E8FF96C71E68C] +18:34:28 [ 54] [ 20] [1001418C000434062400] +18:34:28 ============================================================================ +18:34:28 Calculate Source COMM Id = 0 +18:34:28 ============================================================================ +18:34:28 + + +waiting on router queue for slot.... +18:34:28 ============================================================================ +18:34:28 Slot Id : <92> +18:34:28 Transaction Type : RESPONSE +18:34:28 Received From : +18:34:28 ============================================================================ +18:34:28 FNo. Len. Field Value +18:34:28 ============================================================================ +18:34:28 [ 1] [ 4] [0210] +18:34:28 [ 2] [ 16] [6213545001015290] +18:34:28 [ 3] [ 6] [010000] +18:34:28 [ 4] [ 12] [000100000000] +18:34:28 [ 7] [ 10] [0320183217] +18:34:28 [ 11] [ 6] [954818] +18:34:28 [ 12] [ 6] [183217] +18:34:28 [ 13] [ 4] [0320] +18:34:28 [ 15] [ 4] [0320] +18:34:28 [ 18] [ 4] [6011] +18:34:28 [ 19] [ 3] [418] +18:34:28 [ 32] [ 6] [668899] +18:34:28 [ 35] [ 32] [6213545001015290=491212011529214] +18:34:28 [ 37] [ 12] [507900146894] +18:34:28 [ 38] [ 6] [599321] +18:34:28 [ 39] [ 2] [00] +18:34:28 [ 41] [ 8] [03020005] +18:34:28 [ 49] [ 3] [418] +18:34:28 [ 54] [ 40] [0001418C0003207310870002418C000320731087] +18:34:28 ============================================================================ +18:34:28 Sending to : +18:34:28 ============================================================================ +18:34:28 + + +waiting on router queue for slot.... +18:34:29 ============================================================================ +18:34:29 Slot Id : <92> +18:34:29 Transaction Type : RESPONSE +18:34:29 Received From : +18:34:29 ============================================================================ +18:34:29 FNo. Len. Field Value +18:34:29 ============================================================================ +18:34:29 [ 1] [ 4] [0210] +18:34:29 [ 2] [ 16] [6213545001015290] +18:34:29 [ 3] [ 6] [010000] +18:34:29 [ 4] [ 12] [000100000000] +18:34:29 [ 7] [ 10] [0320183217] +18:34:29 [ 11] [ 6] [954818] +18:34:29 [ 12] [ 6] [183217] +18:34:29 [ 13] [ 4] [0320] +18:34:29 [ 15] [ 4] [0320] +18:34:29 [ 18] [ 4] [6011] +18:34:29 [ 19] [ 3] [418] +18:34:29 [ 32] [ 6] [668899] +18:34:29 [ 35] [ 32] [6213545001015290=491212011529214] +18:34:29 [ 37] [ 12] [507900146894] +18:34:29 [ 38] [ 6] [599321] +18:34:29 [ 39] [ 2] [00] +18:34:29 [ 41] [ 8] [03020005] +18:34:29 [ 49] [ 3] [418] +18:34:29 [ 54] [ 40] [0001418C0003207310870002418C000320731087] +18:34:29 ============================================================================ +18:34:29 Calculate Source COMM Id = 4 +18:34:29 ============================================================================ +18:34:29 + + +waiting on router queue for slot.... +18:34:35 ============================================================================ +18:34:35 Slot Id : <74> +18:34:35 Transaction Type : REQUEST +18:34:35 Received From : +18:34:35 ============================================================================ +18:34:35 FNo. Len. Field Value +18:34:35 ============================================================================ +18:34:35 [ 1] [ 4] [0800] +18:34:35 [ 2] [ 5] [02531] +18:34:35 [ 3] [ 6] [579188] +18:34:35 [ 7] [ 10] [0320113435] +18:34:35 [ 11] [ 6] [807490] +18:34:35 [ 15] [ 10] [0320113435] +18:34:35 [ 37] [ 11] [57918807490] +18:34:35 [ 70] [ 3] [001] +18:34:35 ============================================================================ +18:34:35 + + +waiting on router queue for slot.... +18:34:35 ============================================================================ +18:34:35 Slot Id : <74> +18:34:35 Transaction Type : RESPONSE +18:34:35 Received From : +18:34:35 ============================================================================ +18:34:35 FNo. Len. Field Value +18:34:35 ============================================================================ +18:34:35 [ 1] [ 4] [0810] +18:34:35 [ 7] [ 10] [0320113435] +18:34:35 [ 11] [ 6] [807490] +18:34:35 [ 15] [ 4] [0320] +18:34:35 [ 37] [ 12] [57918807490] +18:34:35 [ 39] [ 2] [00] +18:34:35 [ 70] [ 3] [001] +18:34:35 ============================================================================ +18:34:35 Sending to : +18:34:35 ============================================================================ +18:34:35 + + +waiting on router queue for slot.... +18:34:37 ============================================================================ +18:34:37 Slot Id : <113> +18:34:37 Transaction Type : REQUEST +18:34:37 Received From : +18:34:37 ============================================================================ +18:34:37 FNo. Len. Field Value +18:34:37 ============================================================================ +18:34:37 [ 1] [ 4] [0800] +18:34:37 [ 7] [ 10] [0320113344] +18:34:37 [ 11] [ 6] [157733] +18:34:37 [ 70] [ 3] [301] +18:34:37 ============================================================================ +18:34:37 + + +waiting on router queue for slot.... +18:34:37 Sending to : +18:34:37 ============================================================================ +18:34:37 ============================================================================ +18:34:37 Slot Id : <113> +18:34:37 Transaction Type : RESPONSE +18:34:37 Received From : +18:34:37 ============================================================================ +18:34:37 FNo. Len. Field Value +18:34:37 ============================================================================ +18:34:37 [ 1] [ 4] [0810] +18:34:37 [ 7] [ 10] [0320113344] +18:34:37 [ 11] [ 6] [157733] +18:34:37 [ 39] [ 2] [00] +18:34:37 [ 70] [ 3] [301] +18:34:37 ============================================================================ +18:34:37 Calculate Source COMM Id = 2 +18:34:37 ============================================================================ +18:34:37 + + +waiting on router queue for slot.... +18:34:39 ============================================================================ +18:34:39 Slot Id : <98> +18:34:39 Transaction Type : REQUEST +18:34:39 Received From : +18:34:39 ============================================================================ +18:34:39 FNo. Len. Field Value +18:34:39 ============================================================================ +18:34:39 [ 1] [ 4] [0200] +18:34:39 [ 2] [ 16] [6213548000344661] +18:34:39 [ 3] [ 6] [010000] +18:34:39 [ 4] [ 12] [000150000000] +18:34:39 [ 7] [ 10] [0320113345] +18:34:39 [ 11] [ 6] [271248] +18:34:39 [ 12] [ 6] [183345] +18:34:39 [ 13] [ 4] [0320] +18:34:39 [ 14] [ 4] [1804] +18:34:39 [ 15] [ 4] [0320] +18:34:39 [ 18] [ 4] [6011] +18:34:39 [ 19] [ 3] [418] +18:34:39 [ 22] [ 3] [021] +18:34:39 [ 25] [ 2] [01] +18:34:39 [ 28] [ 9] [D00002000] +18:34:39 [ 32] [ 6] [180893] +18:34:39 [ 35] [ 32] [6213548000344661=180412014466662] +18:34:39 [ 37] [ 12] [507911271248] +18:34:39 [ 41] [ 8] [0102SAPA] +18:34:39 [ 42] [ 15] [999999 ] +18:34:39 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:34:39 [ 49] [ 3] [418] +18:34:39 [ 52] [ 16] [ABB46F3CDD783E5E] +18:34:39 ============================================================================ +18:34:39 + + +waiting on router queue for slot.... +18:34:39 Sending to : +18:34:39 ============================================================================ +18:34:39 Sending to : +18:34:39 ============================================================================ +18:34:40 ============================================================================ +18:34:40 Slot Id : <98> +18:34:40 Transaction Type : REQUEST +18:34:40 Received From : +18:34:40 ============================================================================ +18:34:40 FNo. Len. Field Value +18:34:40 ============================================================================ +18:34:40 [ 1] [ 4] [0200] +18:34:40 [ 2] [ 16] [6213548000344661] +18:34:40 [ 3] [ 6] [010000] +18:34:40 [ 4] [ 12] [000150000000] +18:34:40 [ 7] [ 10] [0320113345] +18:34:40 [ 11] [ 6] [271248] +18:34:40 [ 12] [ 6] [183345] +18:34:40 [ 13] [ 4] [0320] +18:34:40 [ 14] [ 4] [1804] +18:34:40 [ 15] [ 4] [0320] +18:34:40 [ 18] [ 4] [6011] +18:34:40 [ 19] [ 3] [418] +18:34:40 [ 22] [ 3] [021] +18:34:40 [ 25] [ 2] [01] +18:34:40 [ 28] [ 9] [D00002000] +18:34:40 [ 32] [ 6] [180893] +18:34:40 [ 35] [ 32] [6213548000344661=180412014466662] +18:34:40 [ 37] [ 12] [507911271248] +18:34:40 [ 41] [ 8] [0102SAPA] +18:34:40 [ 42] [ 15] [999999 ] +18:34:40 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:34:40 [ 49] [ 3] [418] +18:34:40 [ 52] [ 16] [ABB46F3CDD783E5E] +18:34:40 ============================================================================ +18:34:40 + + +waiting on router queue for slot.... +18:34:40 Sending to : +18:34:40 ============================================================================ +18:34:40 ============================================================================ +18:34:40 Slot Id : <98> +18:34:40 Transaction Type : REQUEST +18:34:40 Received From : +18:34:40 ============================================================================ +18:34:40 FNo. Len. Field Value +18:34:40 ============================================================================ +18:34:40 [ 1] [ 4] [0200] +18:34:40 [ 2] [ 16] [6213548000344661] +18:34:40 [ 3] [ 6] [010000] +18:34:40 [ 4] [ 12] [000150000000] +18:34:40 [ 7] [ 10] [0320113345] +18:34:40 [ 11] [ 6] [271248] +18:34:40 [ 12] [ 6] [183345] +18:34:40 [ 13] [ 4] [0320] +18:34:40 [ 14] [ 4] [1804] +18:34:40 [ 15] [ 4] [0320] +18:34:40 [ 18] [ 4] [6011] +18:34:40 [ 19] [ 3] [418] +18:34:40 [ 22] [ 3] [021] +18:34:40 [ 25] [ 2] [01] +18:34:40 [ 28] [ 9] [D00002000] +18:34:40 [ 32] [ 6] [180893] +18:34:40 [ 35] [ 32] [6213548000344661=180412014466662] +18:34:40 [ 37] [ 12] [507911271248] +18:34:40 [ 41] [ 8] [0102SAPA] +18:34:40 [ 42] [ 15] [999999 ] +18:34:40 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:34:40 [ 49] [ 3] [418] +18:34:40 [ 52] [ 16] [5C185845207AAA1D] +18:34:40 ============================================================================ +18:34:40 + + +waiting on router queue for slot.... +18:34:40 Sending to : <0> +18:34:40 ============================================================================ +18:34:40 ============================================================================ +18:34:40 Slot Id : <98> +18:34:40 Transaction Type : RESPONSE +18:34:40 Received From : +18:34:40 ============================================================================ +18:34:40 FNo. Len. Field Value +18:34:40 ============================================================================ +18:34:40 [ 1] [ 4] [0210] +18:34:40 [ 2] [ 16] [6213548000344661] +18:34:40 [ 3] [ 6] [010000] +18:34:40 [ 4] [ 12] [000150000000] +18:34:40 [ 7] [ 10] [0320113345] +18:34:40 [ 11] [ 6] [271248] +18:34:40 [ 12] [ 6] [183345] +18:34:40 [ 13] [ 4] [0320] +18:34:40 [ 15] [ 4] [0320] +18:34:40 [ 18] [ 4] [6011] +18:34:40 [ 19] [ 3] [418] +18:34:40 [ 22] [ 3] [021] +18:34:40 [ 32] [ 6] [180893] +18:34:40 [ 35] [ 32] [6213548000344661=180412014466662] +18:34:40 [ 37] [ 12] [507911271248] +18:34:40 [ 39] [ 2] [61] +18:34:40 [ 41] [ 8] [0102SAPA] +18:34:40 [ 49] [ 3] [418] +18:34:40 ============================================================================ +18:34:40 Sending to : +18:34:40 ============================================================================ +18:34:40 + + +waiting on router queue for slot.... +18:34:41 ============================================================================ +18:34:41 Slot Id : <98> +18:34:41 Transaction Type : RESPONSE +18:34:41 Received From : +18:34:41 ============================================================================ +18:34:41 FNo. Len. Field Value +18:34:41 ============================================================================ +18:34:41 [ 1] [ 4] [0210] +18:34:41 [ 2] [ 16] [6213548000344661] +18:34:41 [ 3] [ 6] [010000] +18:34:41 [ 4] [ 12] [000150000000] +18:34:41 [ 7] [ 10] [0320113345] +18:34:41 [ 11] [ 6] [271248] +18:34:41 [ 12] [ 6] [183345] +18:34:41 [ 13] [ 4] [0320] +18:34:41 [ 15] [ 4] [0320] +18:34:41 [ 18] [ 4] [6011] +18:34:41 [ 19] [ 3] [418] +18:34:41 [ 22] [ 3] [021] +18:34:41 [ 32] [ 6] [180893] +18:34:41 [ 35] [ 32] [6213548000344661=180412014466662] +18:34:41 [ 37] [ 12] [507911271248] +18:34:41 [ 39] [ 2] [61] +18:34:41 [ 41] [ 8] [0102SAPA] +18:34:41 [ 49] [ 3] [418] +18:34:41 ============================================================================ +18:34:41 Calculate Source COMM Id = 2 +18:34:41 ============================================================================ +18:34:41 + + +waiting on router queue for slot.... +18:34:44 ============================================================================ +18:34:44 Slot Id : <108> +18:34:44 Transaction Type : REQUEST +18:34:44 Received From : +18:34:44 ============================================================================ +18:34:44 FNo. Len. Field Value +18:34:44 ============================================================================ +18:34:44 [ 1] [ 4] [0800] +18:34:44 [ 7] [ 10] [0321014632] +18:34:44 [ 11] [ 6] [184632] +18:34:44 [ 37] [ 12] [57918184632] +18:34:44 [ 70] [ 3] [301] +18:34:44 ============================================================================ +18:34:44 + + +waiting on router queue for slot.... +18:34:44 Sending to : +18:34:44 ============================================================================ +18:34:44 ============================================================================ +18:34:44 Slot Id : <108> +18:34:44 Transaction Type : RESPONSE +18:34:44 Received From : +18:34:44 ============================================================================ +18:34:44 FNo. Len. Field Value +18:34:44 ============================================================================ +18:34:44 [ 1] [ 4] [0810] +18:34:44 [ 7] [ 10] [0321014632] +18:34:44 [ 11] [ 6] [184632] +18:34:44 [ 37] [ 12] [579181846320] +18:34:44 [ 39] [ 2] [00] +18:34:44 [ 70] [ 3] [810] +18:34:44 ============================================================================ +18:34:44 Calculate Source COMM Id = 6 +18:34:44 ============================================================================ +18:34:44 + + +waiting on router queue for slot.... +18:34:47 ============================================================================ +18:34:47 Slot Id : <127> +18:34:47 Transaction Type : REQUEST +18:34:47 Received From : +18:34:47 ============================================================================ +18:34:47 FNo. Len. Field Value +18:34:47 ============================================================================ +18:34:47 [ 1] [ 4] [0200] +18:34:47 [ 2] [ 16] [6213545000030027] +18:34:47 [ 3] [ 6] [301000] +18:34:47 [ 7] [ 10] [0320113353] +18:34:47 [ 11] [ 6] [271250] +18:34:47 [ 12] [ 6] [183353] +18:34:47 [ 13] [ 4] [0320] +18:34:47 [ 14] [ 4] [4912] +18:34:47 [ 15] [ 4] [0320] +18:34:47 [ 18] [ 4] [6011] +18:34:47 [ 19] [ 3] [418] +18:34:47 [ 22] [ 3] [021] +18:34:47 [ 25] [ 2] [01] +18:34:47 [ 32] [ 6] [180893] +18:34:47 [ 35] [ 32] [6213545000030027=491212013002136] +18:34:47 [ 37] [ 12] [507911271250] +18:34:47 [ 41] [ 8] [0243VTKS] +18:34:47 [ 42] [ 15] [999999 ] +18:34:47 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +18:34:47 [ 49] [ 3] [418] +18:34:47 [ 52] [ 16] [54F8D4CE0C47E066] +18:34:47 ============================================================================ +18:34:47 + + +waiting on router queue for slot.... +18:34:47 Sending to : +18:34:47 ============================================================================ +18:34:47 Sending to : +18:34:47 ============================================================================ +18:34:47 ============================================================================ +18:34:47 Slot Id : <127> +18:34:47 Transaction Type : REQUEST +18:34:47 Received From : +18:34:47 ============================================================================ +18:34:47 FNo. Len. Field Value +18:34:47 ============================================================================ +18:34:47 [ 1] [ 4] [0200] +18:34:47 [ 2] [ 16] [6213545000030027] +18:34:47 [ 3] [ 6] [301000] +18:34:47 [ 7] [ 10] [0320113353] +18:34:47 [ 11] [ 6] [271250] +18:34:47 [ 12] [ 6] [183353] +18:34:47 [ 13] [ 4] [0320] +18:34:47 [ 14] [ 4] [4912] +18:34:47 [ 15] [ 4] [0320] +18:34:47 [ 18] [ 4] [6011] +18:34:47 [ 19] [ 3] [418] +18:34:47 [ 22] [ 3] [021] +18:34:47 [ 25] [ 2] [01] +18:34:47 [ 32] [ 6] [180893] +18:34:47 [ 35] [ 32] [6213545000030027=491212013002136] +18:34:47 [ 37] [ 12] [507911271250] +18:34:47 [ 41] [ 8] [0243VTKS] +18:34:47 [ 42] [ 15] [999999 ] +18:34:47 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +18:34:47 [ 49] [ 3] [418] +18:34:47 [ 52] [ 16] [54F8D4CE0C47E066] +18:34:47 ============================================================================ +18:34:47 + + +waiting on router queue for slot.... +18:34:47 Sending to : +18:34:47 ============================================================================ +18:34:47 ============================================================================ +18:34:47 Slot Id : <127> +18:34:47 Transaction Type : REQUEST +18:34:47 Received From : +18:34:47 ============================================================================ +18:34:47 FNo. Len. Field Value +18:34:47 ============================================================================ +18:34:47 [ 1] [ 4] [0200] +18:34:47 [ 2] [ 16] [6213545000030027] +18:34:47 [ 3] [ 6] [301000] +18:34:47 [ 7] [ 10] [0320113353] +18:34:47 [ 11] [ 6] [271250] +18:34:47 [ 12] [ 6] [183353] +18:34:47 [ 13] [ 4] [0320] +18:34:47 [ 14] [ 4] [4912] +18:34:47 [ 15] [ 4] [0320] +18:34:47 [ 18] [ 4] [6011] +18:34:47 [ 19] [ 3] [418] +18:34:47 [ 22] [ 3] [021] +18:34:47 [ 25] [ 2] [01] +18:34:47 [ 32] [ 6] [180893] +18:34:47 [ 35] [ 32] [6213545000030027=491212013002136] +18:34:47 [ 37] [ 12] [507911271250] +18:34:47 [ 41] [ 8] [0243VTKS] +18:34:47 [ 42] [ 15] [999999 ] +18:34:47 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +18:34:47 [ 49] [ 3] [418] +18:34:47 [ 52] [ 16] [B301CB6249AD4EDA] +18:34:47 ============================================================================ +18:34:47 + + +waiting on router queue for slot.... +18:34:47 Sending to : <0> +18:34:47 ============================================================================ +18:34:48 ============================================================================ +18:34:48 Slot Id : <127> +18:34:48 Transaction Type : RESPONSE +18:34:48 Received From : +18:34:48 ============================================================================ +18:34:48 FNo. Len. Field Value +18:34:48 ============================================================================ +18:34:48 [ 1] [ 4] [0210] +18:34:48 [ 2] [ 16] [6213545000030027] +18:34:48 [ 3] [ 6] [301000] +18:34:48 [ 4] [ 12] [000000000000] +18:34:48 [ 7] [ 10] [0320113353] +18:34:48 [ 11] [ 6] [271250] +18:34:48 [ 12] [ 6] [183353] +18:34:48 [ 13] [ 4] [0320] +18:34:48 [ 15] [ 4] [0320] +18:34:48 [ 18] [ 4] [6011] +18:34:48 [ 19] [ 3] [418] +18:34:48 [ 32] [ 6] [180893] +18:34:48 [ 35] [ 32] [6213545000030027=491212013002136] +18:34:48 [ 37] [ 12] [507911271250] +18:34:48 [ 38] [ 6] [706525] +18:34:48 [ 39] [ 2] [00] +18:34:48 [ 41] [ 8] [0243VTKS] +18:34:48 [ 49] [ 3] [418] +18:34:48 [ 54] [ 40] [1001418C0008392830991002418C000839283099] +18:34:48 ============================================================================ +18:34:48 Sending to : +18:34:48 ============================================================================ +18:34:48 + + +waiting on router queue for slot.... +18:34:49 ============================================================================ +18:34:49 Slot Id : <127> +18:34:49 Transaction Type : RESPONSE +18:34:49 Received From : +18:34:49 ============================================================================ +18:34:49 FNo. Len. Field Value +18:34:49 ============================================================================ +18:34:49 [ 1] [ 4] [0210] +18:34:49 [ 2] [ 16] [6213545000030027] +18:34:49 [ 3] [ 6] [301000] +18:34:49 [ 4] [ 12] [000000000000] +18:34:49 [ 7] [ 10] [0320113353] +18:34:49 [ 11] [ 6] [271250] +18:34:49 [ 12] [ 6] [183353] +18:34:49 [ 13] [ 4] [0320] +18:34:49 [ 15] [ 4] [0320] +18:34:49 [ 18] [ 4] [6011] +18:34:49 [ 19] [ 3] [418] +18:34:49 [ 32] [ 6] [180893] +18:34:49 [ 35] [ 32] [6213545000030027=491212013002136] +18:34:49 [ 37] [ 12] [507911271250] +18:34:49 [ 38] [ 6] [706525] +18:34:49 [ 39] [ 2] [00] +18:34:49 [ 41] [ 8] [0243VTKS] +18:34:49 [ 49] [ 3] [418] +18:34:49 [ 54] [ 40] [1001418C0008392830991002418C000839283099] +18:34:49 ============================================================================ +18:34:49 Calculate Source COMM Id = 2 +18:34:49 ============================================================================ +18:34:49 + + +waiting on router queue for slot.... +18:34:57 ============================================================================ +18:34:57 Slot Id : <95> +18:34:57 Transaction Type : REQUEST +18:34:57 Received From : +18:34:57 ============================================================================ +18:34:57 FNo. Len. Field Value +18:34:57 ============================================================================ +18:34:57 [ 0] [ 4] [0420] +18:34:57 [ 1] [ 4] [0420] +18:34:57 [ 2] [ 16] [1808930600008361] +18:34:57 [ 3] [ 6] [011000] +18:34:57 [ 4] [ 12] [000020000000] +18:34:57 [ 6] [ 12] [000020000000] +18:34:57 [ 7] [ 10] [0320183304] +18:34:57 [ 11] [ 6] [828493] +18:34:57 [ 12] [ 6] [183304] +18:34:57 [ 13] [ 4] [0320] +18:34:57 [ 15] [ 4] [0320] +18:34:57 [ 18] [ 4] [6011] +18:34:57 [ 22] [ 3] [900] +18:34:57 [ 25] [ 2] [02] +18:34:57 [ 28] [ 9] [D00002000] +18:34:57 [ 32] [ 6] [621354] +18:34:57 [ 35] [ 27] [1808930600008361=1803500887] +18:34:57 [ 37] [ 12] [507904424240] +18:34:57 [ 39] [ 2] [00] +18:34:57 [ 41] [ 8] [03004100] +18:34:57 [ 42] [ 15] [NATIVE ] +18:34:57 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +18:34:57 [ 49] [ 3] [418] +18:34:57 [ 52] [ 16] [1F57EE341E15DBAD] +18:34:57 ============================================================================ +18:34:57 + + +waiting on router queue for slot.... +18:34:57 ============================================================================ +18:34:57 Slot Id : <75> +18:34:57 Transaction Type : REQUEST +18:34:57 Received From : +18:34:57 ============================================================================ +18:34:57 FNo. Len. Field Value +18:34:57 ============================================================================ +18:34:57 [ 1] [ 4] [0800] +18:34:57 [ 7] [ 10] [0320114242] +18:34:57 [ 11] [ 6] [057797] +18:34:57 [ 37] [ 12] [57918057797] +18:34:57 [ 70] [ 3] [301] +18:34:57 ============================================================================ +18:34:57 + + +waiting on router queue for slot.... +18:34:57 Sending to : +18:34:57 ============================================================================ +18:34:57 ============================================================================ +18:34:57 Slot Id : <75> +18:34:57 Transaction Type : RESPONSE +18:34:57 Received From : +18:34:57 ============================================================================ +18:34:57 FNo. Len. Field Value +18:34:57 ============================================================================ +18:34:57 [ 1] [ 4] [0810] +18:34:57 [ 7] [ 10] [0320114242] +18:34:57 [ 11] [ 6] [057797] +18:34:57 [ 37] [ 12] [579180577970] +18:34:57 [ 39] [ 2] [00] +18:34:57 [ 70] [ 3] [810] +18:34:57 ============================================================================ +18:34:57 Calculate Source COMM Id = 1 +18:34:57 ============================================================================ +18:34:57 + + +waiting on router queue for slot.... +18:34:58 ============================================================================ +18:34:58 Slot Id : <95> +18:34:58 Transaction Type : RESPONSE +18:34:58 Received From : +18:34:58 ============================================================================ +18:34:58 FNo. Len. Field Value +18:34:58 ============================================================================ +18:34:58 [ 1] [ 4] [0430] +18:34:58 [ 2] [ 16] [1808930600008361] +18:34:58 [ 3] [ 6] [011000] +18:34:58 [ 4] [ 12] [000020000000] +18:34:58 [ 6] [ 12] [000020000000] +18:34:58 [ 7] [ 10] [0320183304] +18:34:58 [ 11] [ 6] [828493] +18:34:58 [ 12] [ 6] [183304] +18:34:58 [ 13] [ 4] [0320] +18:34:58 [ 19] [ 3] [418] +18:34:58 [ 32] [ 6] [621354] +18:34:58 [ 35] [ 27] [1808930600008361=1803500887] +18:34:58 [ 37] [ 12] [507904424240] +18:34:58 [ 39] [ 2] [12] +18:34:58 [ 41] [ 8] [03004100] +18:34:58 [ 49] [ 3] [418] +18:34:58 ============================================================================ +18:34:58 Successfully send the slot [95] To REVERSAL Process +18:34:58 + + +waiting on router queue for slot.... +18:35:08 ============================================================================ +18:35:08 Slot Id : <94> +18:35:08 Transaction Type : REQUEST +18:35:08 Received From : +18:35:08 ============================================================================ +18:35:08 FNo. Len. Field Value +18:35:08 ============================================================================ +18:35:08 [ 1] [ 4] [0200] +18:35:08 [ 2] [ 16] [6213548000197887] +18:35:08 [ 3] [ 6] [010000] +18:35:08 [ 4] [ 12] [000050000000] +18:35:08 [ 7] [ 10] [0320183258] +18:35:08 [ 11] [ 6] [954828] +18:35:08 [ 12] [ 6] [183258] +18:35:08 [ 13] [ 4] [0320] +18:35:08 [ 15] [ 4] [0320] +18:35:08 [ 18] [ 4] [6011] +18:35:08 [ 19] [ 3] [418] +18:35:08 [ 22] [ 3] [021] +18:35:08 [ 25] [ 2] [01] +18:35:08 [ 28] [ 9] [D00002000] +18:35:08 [ 32] [ 6] [668899] +18:35:08 [ 35] [ 32] [6213548000197887=171212019788819] +18:35:08 [ 37] [ 12] [507902532081] +18:35:08 [ 41] [ 8] [03020033] +18:35:08 [ 42] [ 15] [APT ] +18:35:08 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +18:35:08 [ 49] [ 3] [418] +18:35:08 [ 52] [ 16] [98233EF0D2667524] +18:35:08 ============================================================================ +18:35:08 + + +waiting on router queue for slot.... +18:35:08 Sending to : +18:35:08 ============================================================================ +18:35:08 Sending to : +18:35:08 ============================================================================ +18:35:08 ============================================================================ +18:35:08 Slot Id : <94> +18:35:08 Transaction Type : REQUEST +18:35:08 Received From : +18:35:08 ============================================================================ +18:35:08 FNo. Len. Field Value +18:35:08 ============================================================================ +18:35:08 [ 1] [ 4] [0200] +18:35:08 [ 2] [ 16] [6213548000197887] +18:35:08 [ 3] [ 6] [010000] +18:35:08 [ 4] [ 12] [000050000000] +18:35:08 [ 7] [ 10] [0320183258] +18:35:08 [ 11] [ 6] [954828] +18:35:08 [ 12] [ 6] [183258] +18:35:08 [ 13] [ 4] [0320] +18:35:08 [ 15] [ 4] [0320] +18:35:08 [ 18] [ 4] [6011] +18:35:08 [ 19] [ 3] [418] +18:35:08 [ 22] [ 3] [021] +18:35:08 [ 25] [ 2] [01] +18:35:08 [ 28] [ 9] [D00002000] +18:35:08 [ 32] [ 6] [668899] +18:35:08 [ 35] [ 32] [6213548000197887=171212019788819] +18:35:08 [ 37] [ 12] [507902532081] +18:35:08 [ 41] [ 8] [03020033] +18:35:08 [ 42] [ 15] [APT ] +18:35:08 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +18:35:08 [ 49] [ 3] [418] +18:35:08 [ 52] [ 16] [98233EF0D2667524] +18:35:08 ============================================================================ +18:35:08 + + +waiting on router queue for slot.... +18:35:08 Sending to : +18:35:08 ============================================================================ +18:35:09 ============================================================================ +18:35:09 Slot Id : <94> +18:35:09 Transaction Type : REQUEST +18:35:09 Received From : +18:35:09 ============================================================================ +18:35:09 FNo. Len. Field Value +18:35:09 ============================================================================ +18:35:09 [ 1] [ 4] [0200] +18:35:09 [ 2] [ 16] [6213548000197887] +18:35:09 [ 3] [ 6] [010000] +18:35:09 [ 4] [ 12] [000050000000] +18:35:09 [ 7] [ 10] [0320183258] +18:35:09 [ 11] [ 6] [954828] +18:35:09 [ 12] [ 6] [183258] +18:35:09 [ 13] [ 4] [0320] +18:35:09 [ 15] [ 4] [0320] +18:35:09 [ 18] [ 4] [6011] +18:35:09 [ 19] [ 3] [418] +18:35:09 [ 22] [ 3] [021] +18:35:09 [ 25] [ 2] [01] +18:35:09 [ 28] [ 9] [D00002000] +18:35:09 [ 32] [ 6] [668899] +18:35:09 [ 35] [ 32] [6213548000197887=171212019788819] +18:35:09 [ 37] [ 12] [507902532081] +18:35:09 [ 41] [ 8] [03020033] +18:35:09 [ 42] [ 15] [APT ] +18:35:09 [ 43] [ 40] [ POST OFFICE DONGDOK XAYSE] +18:35:09 [ 49] [ 3] [418] +18:35:09 [ 52] [ 16] [D74DEB7718E0EB08] +18:35:09 ============================================================================ +18:35:09 + + +waiting on router queue for slot.... +18:35:09 Sending to : <0> +18:35:09 ============================================================================ +18:35:09 ============================================================================ +18:35:09 Slot Id : <53> +18:35:09 Transaction Type : REQUEST +18:35:09 Received From : +18:35:09 ============================================================================ +18:35:09 FNo. Len. Field Value +18:35:09 ============================================================================ +18:35:09 [ 1] [ 4] [0800] +18:35:09 [ 7] [ 10] [0320113415] +18:35:09 [ 11] [ 6] [157734] +18:35:09 [ 70] [ 3] [301] +18:35:09 ============================================================================ +18:35:09 + + +waiting on router queue for slot.... +18:35:09 Sending to : +18:35:09 ============================================================================ +18:35:09 ============================================================================ +18:35:09 Slot Id : <53> +18:35:09 Transaction Type : RESPONSE +18:35:09 Received From : +18:35:09 ============================================================================ +18:35:09 FNo. Len. Field Value +18:35:09 ============================================================================ +18:35:09 [ 1] [ 4] [0810] +18:35:09 [ 7] [ 10] [0320113415] +18:35:09 [ 11] [ 6] [157734] +18:35:09 [ 39] [ 2] [00] +18:35:09 [ 70] [ 3] [301] +18:35:09 ============================================================================ +18:35:09 Calculate Source COMM Id = 2 +18:35:09 ============================================================================ +18:35:09 + + +waiting on router queue for slot.... +18:35:09 ============================================================================ +18:35:09 Slot Id : <94> +18:35:09 Transaction Type : RESPONSE +18:35:09 Received From : +18:35:09 ============================================================================ +18:35:09 FNo. Len. Field Value +18:35:09 ============================================================================ +18:35:09 [ 1] [ 4] [0210] +18:35:09 [ 2] [ 16] [6213548000197887] +18:35:09 [ 3] [ 6] [010000] +18:35:09 [ 4] [ 12] [000050000000] +18:35:09 [ 7] [ 10] [0320183258] +18:35:09 [ 11] [ 6] [954828] +18:35:09 [ 12] [ 6] [183258] +18:35:09 [ 13] [ 4] [0320] +18:35:09 [ 15] [ 4] [0320] +18:35:09 [ 18] [ 4] [6011] +18:35:09 [ 19] [ 3] [418] +18:35:09 [ 32] [ 6] [668899] +18:35:09 [ 35] [ 32] [6213548000197887=171212019788819] +18:35:09 [ 37] [ 12] [507902532081] +18:35:09 [ 38] [ 6] [840614] +18:35:09 [ 39] [ 2] [00] +18:35:09 [ 41] [ 8] [03020033] +18:35:09 [ 49] [ 3] [418] +18:35:09 [ 54] [ 40] [0001418C0000283359080002418C000028335908] +18:35:09 ============================================================================ +18:35:09 Sending to : +18:35:09 ============================================================================ +18:35:09 + + +waiting on router queue for slot.... +18:35:10 ============================================================================ +18:35:10 Slot Id : <94> +18:35:10 Transaction Type : RESPONSE +18:35:10 Received From : +18:35:10 ============================================================================ +18:35:10 FNo. Len. Field Value +18:35:10 ============================================================================ +18:35:10 [ 1] [ 4] [0210] +18:35:10 [ 2] [ 16] [6213548000197887] +18:35:10 [ 3] [ 6] [010000] +18:35:10 [ 4] [ 12] [000050000000] +18:35:10 [ 7] [ 10] [0320183258] +18:35:10 [ 11] [ 6] [954828] +18:35:10 [ 12] [ 6] [183258] +18:35:10 [ 13] [ 4] [0320] +18:35:10 [ 15] [ 4] [0320] +18:35:10 [ 18] [ 4] [6011] +18:35:10 [ 19] [ 3] [418] +18:35:10 [ 32] [ 6] [668899] +18:35:10 [ 35] [ 32] [6213548000197887=171212019788819] +18:35:10 [ 37] [ 12] [507902532081] +18:35:10 [ 38] [ 6] [840614] +18:35:10 [ 39] [ 2] [00] +18:35:10 [ 41] [ 8] [03020033] +18:35:10 [ 49] [ 3] [418] +18:35:10 [ 54] [ 40] [0001418C0000283359080002418C000028335908] +18:35:10 ============================================================================ +18:35:10 Calculate Source COMM Id = 4 +18:35:10 ============================================================================ +18:35:10 + + +waiting on router queue for slot.... +18:35:24 ============================================================================ +18:35:24 Slot Id : <134> +18:35:24 Transaction Type : REQUEST +18:35:24 Received From : +18:35:24 ============================================================================ +18:35:24 FNo. Len. Field Value +18:35:24 ============================================================================ +18:35:24 [ 1] [ 4] [0800] +18:35:24 [ 7] [ 10] [0320113431] +18:35:24 [ 11] [ 6] [157735] +18:35:24 [ 70] [ 3] [301] +18:35:24 ============================================================================ +18:35:24 + + +waiting on router queue for slot.... +18:35:24 Sending to : +18:35:24 ============================================================================ +18:35:24 ============================================================================ +18:35:24 Slot Id : <134> +18:35:24 Transaction Type : RESPONSE +18:35:24 Received From : +18:35:24 ============================================================================ +18:35:24 FNo. Len. Field Value +18:35:24 ============================================================================ +18:35:24 [ 1] [ 4] [0810] +18:35:24 [ 7] [ 10] [0320113431] +18:35:24 [ 11] [ 6] [157735] +18:35:24 [ 39] [ 2] [00] +18:35:24 [ 70] [ 3] [301] +18:35:24 ============================================================================ +18:35:24 Calculate Source COMM Id = 2 +18:35:24 ============================================================================ +18:35:24 + + +waiting on router queue for slot.... +18:35:35 ============================================================================ +18:35:35 Slot Id : <96> +18:35:35 Transaction Type : REQUEST +18:35:35 Received From : +18:35:35 ============================================================================ +18:35:35 FNo. Len. Field Value +18:35:35 ============================================================================ +18:35:35 [ 1] [ 4] [0800] +18:35:35 [ 7] [ 10] [0320113442] +18:35:35 [ 11] [ 6] [157736] +18:35:35 [ 70] [ 3] [301] +18:35:35 ============================================================================ +18:35:35 + + +waiting on router queue for slot.... +18:35:35 Sending to : +18:35:35 ============================================================================ +18:35:35 ============================================================================ +18:35:35 Slot Id : <96> +18:35:35 Transaction Type : RESPONSE +18:35:35 Received From : +18:35:35 ============================================================================ +18:35:35 FNo. Len. Field Value +18:35:35 ============================================================================ +18:35:35 [ 1] [ 4] [0810] +18:35:35 [ 7] [ 10] [0320113442] +18:35:35 [ 11] [ 6] [157736] +18:35:35 [ 39] [ 2] [00] +18:35:35 [ 70] [ 3] [301] +18:35:35 ============================================================================ +18:35:35 Calculate Source COMM Id = 2 +18:35:35 ============================================================================ +18:35:35 + + +waiting on router queue for slot.... +18:35:37 ============================================================================ +18:35:37 Slot Id : <103> +18:35:37 Transaction Type : REQUEST +18:35:37 Received From : +18:35:37 ============================================================================ +18:35:37 FNo. Len. Field Value +18:35:37 ============================================================================ +18:35:37 [ 1] [ 4] [0800] +18:35:37 [ 2] [ 5] [02531] +18:35:37 [ 3] [ 6] [579188] +18:35:37 [ 7] [ 10] [0320113537] +18:35:37 [ 11] [ 6] [807491] +18:35:37 [ 15] [ 10] [0320113537] +18:35:37 [ 37] [ 11] [57918807491] +18:35:37 [ 70] [ 3] [001] +18:35:37 ============================================================================ +18:35:37 + + +waiting on router queue for slot.... +18:35:37 ============================================================================ +18:35:37 Slot Id : <103> +18:35:37 Transaction Type : RESPONSE +18:35:37 Received From : +18:35:37 ============================================================================ +18:35:37 FNo. Len. Field Value +18:35:37 ============================================================================ +18:35:37 [ 1] [ 4] [0810] +18:35:37 [ 7] [ 10] [0320113537] +18:35:37 [ 11] [ 6] [807491] +18:35:37 [ 15] [ 4] [0320] +18:35:37 [ 37] [ 12] [57918807491] +18:35:37 [ 39] [ 2] [00] +18:35:37 [ 70] [ 3] [001] +18:35:37 ============================================================================ +18:35:37 Sending to : +18:35:37 ============================================================================ +18:35:37 + + +waiting on router queue for slot.... +18:35:49 ============================================================================ +18:35:49 Slot Id : <125> +18:35:49 Transaction Type : REQUEST +18:35:49 Received From : +18:35:49 ============================================================================ +18:35:49 FNo. Len. Field Value +18:35:49 ============================================================================ +18:35:49 [ 1] [ 4] [0800] +18:35:49 [ 7] [ 10] [0321014737] +18:35:49 [ 11] [ 6] [184737] +18:35:49 [ 37] [ 12] [57918184737] +18:35:49 [ 70] [ 3] [301] +18:35:49 ============================================================================ +18:35:49 + + +waiting on router queue for slot.... +18:35:49 Sending to : +18:35:49 ============================================================================ +18:35:49 ============================================================================ +18:35:49 Slot Id : <125> +18:35:49 Transaction Type : RESPONSE +18:35:49 Received From : +18:35:49 ============================================================================ +18:35:49 FNo. Len. Field Value +18:35:49 ============================================================================ +18:35:49 [ 1] [ 4] [0810] +18:35:49 [ 7] [ 10] [0321014737] +18:35:49 [ 11] [ 6] [184737] +18:35:49 [ 37] [ 12] [579181847370] +18:35:49 [ 39] [ 2] [00] +18:35:49 [ 70] [ 3] [810] +18:35:49 ============================================================================ +18:35:49 Calculate Source COMM Id = 6 +18:35:49 ============================================================================ +18:35:49 + + +waiting on router queue for slot.... +18:35:51 ============================================================================ +18:35:51 Slot Id : <101> +18:35:51 Transaction Type : REQUEST +18:35:51 Received From : +18:35:51 ============================================================================ +18:35:51 FNo. Len. Field Value +18:35:51 ============================================================================ +18:35:51 [ 1] [ 4] [0800] +18:35:51 [ 7] [ 10] [0320113458] +18:35:51 [ 11] [ 6] [157737] +18:35:51 [ 70] [ 3] [301] +18:35:51 ============================================================================ +18:35:51 + + +waiting on router queue for slot.... +18:35:51 Sending to : +18:35:51 ============================================================================ +18:35:51 ============================================================================ +18:35:51 Slot Id : <101> +18:35:51 Transaction Type : RESPONSE +18:35:51 Received From : +18:35:51 ============================================================================ +18:35:51 FNo. Len. Field Value +18:35:51 ============================================================================ +18:35:51 [ 1] [ 4] [0810] +18:35:51 [ 7] [ 10] [0320113458] +18:35:51 [ 11] [ 6] [157737] +18:35:51 [ 39] [ 2] [00] +18:35:51 [ 70] [ 3] [301] +18:35:51 ============================================================================ +18:35:51 Calculate Source COMM Id = 2 +18:35:51 ============================================================================ +18:35:51 + + +waiting on router queue for slot.... +18:36:02 ============================================================================ +18:36:02 Slot Id : <70> +18:36:02 Transaction Type : REQUEST +18:36:02 Received From : +18:36:02 ============================================================================ +18:36:02 FNo. Len. Field Value +18:36:02 ============================================================================ +18:36:02 [ 1] [ 4] [0800] +18:36:02 [ 7] [ 10] [0320113509] +18:36:02 [ 11] [ 6] [157738] +18:36:02 [ 70] [ 3] [301] +18:36:02 ============================================================================ +18:36:02 + + +waiting on router queue for slot.... +18:36:02 Sending to : +18:36:02 ============================================================================ +18:36:02 ============================================================================ +18:36:02 Slot Id : <70> +18:36:02 Transaction Type : RESPONSE +18:36:02 Received From : +18:36:02 ============================================================================ +18:36:02 FNo. Len. Field Value +18:36:02 ============================================================================ +18:36:02 [ 1] [ 4] [0810] +18:36:02 [ 7] [ 10] [0320113509] +18:36:02 [ 11] [ 6] [157738] +18:36:02 [ 39] [ 2] [00] +18:36:02 [ 70] [ 3] [301] +18:36:02 ============================================================================ +18:36:02 Calculate Source COMM Id = 2 +18:36:02 ============================================================================ +18:36:02 + + +waiting on router queue for slot.... +18:36:08 ============================================================================ +18:36:08 Slot Id : <109> +18:36:08 Transaction Type : REQUEST +18:36:08 Received From : +18:36:08 ============================================================================ +18:36:08 FNo. Len. Field Value +18:36:08 ============================================================================ +18:36:08 [ 1] [ 4] [0200] +18:36:08 [ 2] [ 16] [6688990602952804] +18:36:08 [ 3] [ 6] [301000] +18:36:08 [ 4] [ 12] [000000000000] +18:36:08 [ 7] [ 10] [0320183603] +18:36:08 [ 11] [ 6] [828971] +18:36:08 [ 12] [ 6] [183603] +18:36:08 [ 13] [ 4] [0320] +18:36:08 [ 15] [ 4] [0320] +18:36:08 [ 18] [ 4] [6011] +18:36:08 [ 22] [ 3] [900] +18:36:08 [ 25] [ 2] [02] +18:36:08 [ 28] [ 9] [D00000000] +18:36:08 [ 32] [ 6] [621354] +18:36:08 [ 35] [ 37] [6688990602952804=44020061280457800000] +18:36:08 [ 37] [ 12] [507903032392] +18:36:08 [ 41] [ 8] [12002600] +18:36:08 [ 42] [ 15] [NATIVE ] +18:36:08 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +18:36:08 [ 49] [ 3] [418] +18:36:08 [ 52] [ 16] [DD8B054EE16461B8] +18:36:08 ============================================================================ +18:36:08 + + +waiting on router queue for slot.... +18:36:08 Sending to : +18:36:08 ============================================================================ +18:36:08 Sending to : +18:36:08 ============================================================================ +18:36:09 ============================================================================ +18:36:09 Slot Id : <109> +18:36:09 Transaction Type : REQUEST +18:36:09 Received From : +18:36:09 ============================================================================ +18:36:09 FNo. Len. Field Value +18:36:09 ============================================================================ +18:36:09 [ 1] [ 4] [0200] +18:36:09 [ 2] [ 16] [6688990602952804] +18:36:09 [ 3] [ 6] [301000] +18:36:09 [ 4] [ 12] [000000000000] +18:36:09 [ 7] [ 10] [0320183603] +18:36:09 [ 11] [ 6] [828971] +18:36:09 [ 12] [ 6] [183603] +18:36:09 [ 13] [ 4] [0320] +18:36:09 [ 15] [ 4] [0320] +18:36:09 [ 18] [ 4] [6011] +18:36:09 [ 22] [ 3] [900] +18:36:09 [ 25] [ 2] [02] +18:36:09 [ 28] [ 9] [D00000000] +18:36:09 [ 32] [ 6] [621354] +18:36:09 [ 35] [ 37] [6688990602952804=44020061280457800000] +18:36:09 [ 37] [ 12] [507903032392] +18:36:09 [ 41] [ 8] [12002600] +18:36:09 [ 42] [ 15] [NATIVE ] +18:36:09 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +18:36:09 [ 49] [ 3] [418] +18:36:09 [ 52] [ 16] [DD8B054EE16461B8] +18:36:09 ============================================================================ +18:36:09 + + +waiting on router queue for slot.... +18:36:09 Sending to : +18:36:09 ============================================================================ +18:36:09 ============================================================================ +18:36:09 Slot Id : <109> +18:36:09 Transaction Type : REQUEST +18:36:09 Received From : +18:36:09 ============================================================================ +18:36:09 FNo. Len. Field Value +18:36:09 ============================================================================ +18:36:09 [ 1] [ 4] [0200] +18:36:09 [ 2] [ 16] [6688990602952804] +18:36:09 [ 3] [ 6] [301000] +18:36:09 [ 4] [ 12] [000000000000] +18:36:09 [ 7] [ 10] [0320183603] +18:36:09 [ 11] [ 6] [828971] +18:36:09 [ 12] [ 6] [183603] +18:36:09 [ 13] [ 4] [0320] +18:36:09 [ 15] [ 4] [0320] +18:36:09 [ 18] [ 4] [6011] +18:36:09 [ 22] [ 3] [900] +18:36:09 [ 25] [ 2] [02] +18:36:09 [ 28] [ 9] [D00000000] +18:36:09 [ 32] [ 6] [621354] +18:36:09 [ 35] [ 37] [6688990602952804=44020061280457800000] +18:36:09 [ 37] [ 12] [507903032392] +18:36:09 [ 41] [ 8] [12002600] +18:36:09 [ 42] [ 15] [NATIVE ] +18:36:09 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +18:36:09 [ 49] [ 3] [418] +18:36:09 [ 52] [ 16] [20AED56111FAD2C1] +18:36:09 ============================================================================ +18:36:09 + + +waiting on router queue for slot.... +18:36:09 Sending to : <4> +18:36:09 ============================================================================ +18:36:10 ============================================================================ +18:36:10 Slot Id : <77> +18:36:10 Transaction Type : REQUEST +18:36:10 Received From : +18:36:10 ============================================================================ +18:36:10 FNo. Len. Field Value +18:36:10 ============================================================================ +18:36:10 [ 1] [ 4] [0800] +18:36:10 [ 7] [ 10] [0320183556] +18:36:10 [ 11] [ 6] [033177] +18:36:10 [ 37] [ 12] [507918033177] +18:36:10 [ 70] [ 3] [ ] +18:36:10 ============================================================================ +18:36:10 + + +waiting on router queue for slot.... +18:36:10 Sending to : +18:36:10 ============================================================================ +18:36:10 ============================================================================ +18:36:10 Slot Id : <77> +18:36:10 Transaction Type : RESPONSE +18:36:10 Received From : +18:36:10 ============================================================================ +18:36:10 FNo. Len. Field Value +18:36:10 ============================================================================ +18:36:10 [ 1] [ 4] [0810] +18:36:10 [ 7] [ 10] [0320183556] +18:36:10 [ 11] [ 6] [033177] +18:36:10 [ 37] [ 12] [507918033177] +18:36:10 [ 39] [ 2] [91] +18:36:10 [ 70] [ 3] [ ] +18:36:10 ============================================================================ +18:36:10 Calculate Source COMM Id = 3 +18:36:10 ============================================================================ +18:36:10 + + +waiting on router queue for slot.... +18:36:10 ============================================================================ +18:36:10 Slot Id : <109> +18:36:10 Transaction Type : RESPONSE +18:36:10 Received From : +18:36:10 ============================================================================ +18:36:10 FNo. Len. Field Value +18:36:10 ============================================================================ +18:36:10 [ 1] [ 4] [0210] +18:36:10 [ 2] [ 16] [6688990602952804] +18:36:10 [ 3] [ 6] [301000] +18:36:10 [ 4] [ 12] [000000000000] +18:36:10 [ 11] [ 6] [828971] +18:36:10 [ 12] [ 6] [183603] +18:36:10 [ 15] [ 4] [0320] +18:36:10 [ 18] [ 4] [6011] +18:36:10 [ 32] [ 6] [621354] +18:36:10 [ 35] [ 37] [6688990602952804=44020061280457800000] +18:36:10 [ 37] [ 12] [507903032392] +18:36:10 [ 38] [ 6] [669794] +18:36:10 [ 39] [ 2] [00] +18:36:10 [ 41] [ 8] [12002600] +18:36:10 [ 49] [ 3] [418] +18:36:10 [ 54] [ 20] [1002418C000167285277] +18:36:10 ============================================================================ +18:36:10 Sending to : +18:36:10 ============================================================================ +18:36:10 + + +waiting on router queue for slot.... +18:36:11 ============================================================================ +18:36:11 Slot Id : <109> +18:36:11 Transaction Type : RESPONSE +18:36:11 Received From : +18:36:11 ============================================================================ +18:36:11 FNo. Len. Field Value +18:36:11 ============================================================================ +18:36:11 [ 1] [ 4] [0210] +18:36:11 [ 2] [ 16] [6688990602952804] +18:36:11 [ 3] [ 6] [301000] +18:36:11 [ 4] [ 12] [000000000000] +18:36:11 [ 11] [ 6] [828971] +18:36:11 [ 12] [ 6] [183603] +18:36:11 [ 15] [ 4] [0320] +18:36:11 [ 18] [ 4] [6011] +18:36:11 [ 32] [ 6] [621354] +18:36:11 [ 35] [ 37] [6688990602952804=44020061280457800000] +18:36:11 [ 37] [ 12] [507903032392] +18:36:11 [ 38] [ 6] [669794] +18:36:11 [ 39] [ 2] [00] +18:36:11 [ 41] [ 8] [12002600] +18:36:11 [ 49] [ 3] [418] +18:36:11 [ 54] [ 20] [1002418C000167285277] +18:36:11 ============================================================================ +18:36:11 Calculate Source COMM Id = 0 +18:36:11 ============================================================================ +18:36:11 + + +waiting on router queue for slot.... +18:36:13 ============================================================================ +18:36:13 Slot Id : <102> +18:36:13 Transaction Type : REQUEST +18:36:13 Received From : +18:36:13 ============================================================================ +18:36:13 FNo. Len. Field Value +18:36:13 ============================================================================ +18:36:13 [ 1] [ 4] [0800] +18:36:13 [ 7] [ 10] [0320113520] +18:36:13 [ 11] [ 6] [157739] +18:36:13 [ 70] [ 3] [301] +18:36:13 ============================================================================ +18:36:13 + + +waiting on router queue for slot.... +18:36:13 Sending to : +18:36:13 ============================================================================ +18:36:13 ============================================================================ +18:36:13 Slot Id : <102> +18:36:13 Transaction Type : RESPONSE +18:36:13 Received From : +18:36:13 ============================================================================ +18:36:13 FNo. Len. Field Value +18:36:13 ============================================================================ +18:36:13 [ 1] [ 4] [0810] +18:36:13 [ 7] [ 10] [0320113520] +18:36:13 [ 11] [ 6] [157739] +18:36:13 [ 39] [ 2] [00] +18:36:13 [ 70] [ 3] [301] +18:36:13 ============================================================================ +18:36:13 Calculate Source COMM Id = 2 +18:36:13 ============================================================================ +18:36:13 + + +waiting on router queue for slot.... +18:36:21 ============================================================================ +18:36:21 Slot Id : <136> +18:36:21 Transaction Type : REQUEST +18:36:21 Received From : +18:36:21 ============================================================================ +18:36:21 FNo. Len. Field Value +18:36:21 ============================================================================ +18:36:21 [ 1] [ 4] [0200] +18:36:21 [ 2] [ 16] [6688990040053850] +18:36:21 [ 3] [ 6] [300000] +18:36:21 [ 4] [ 12] [000000000000] +18:36:21 [ 7] [ 10] [0320183616] +18:36:21 [ 11] [ 6] [829004] +18:36:21 [ 12] [ 6] [183616] +18:36:21 [ 13] [ 4] [0320] +18:36:21 [ 15] [ 4] [0320] +18:36:21 [ 18] [ 4] [6011] +18:36:21 [ 22] [ 3] [900] +18:36:21 [ 25] [ 2] [02] +18:36:21 [ 28] [ 9] [D00000000] +18:36:21 [ 32] [ 6] [621354] +18:36:21 [ 35] [ 37] [6688990040053850=97121261543834200000] +18:36:21 [ 37] [ 12] [507903625572] +18:36:21 [ 41] [ 8] [16001500] +18:36:21 [ 42] [ 15] [NATIVE ] +18:36:21 [ 43] [ 40] [Sea game Village Xaythany LAO] +18:36:21 [ 49] [ 3] [418] +18:36:21 [ 52] [ 16] [41D415C41C1BA4EB] +18:36:21 ============================================================================ +18:36:21 + + +waiting on router queue for slot.... +18:36:21 Sending to : +18:36:21 ============================================================================ +18:36:21 Sending to : +18:36:21 ============================================================================ +18:36:21 ============================================================================ +18:36:21 Slot Id : <136> +18:36:21 Transaction Type : REQUEST +18:36:21 Received From : +18:36:21 ============================================================================ +18:36:21 FNo. Len. Field Value +18:36:21 ============================================================================ +18:36:21 [ 1] [ 4] [0200] +18:36:21 [ 2] [ 16] [6688990040053850] +18:36:21 [ 3] [ 6] [300000] +18:36:21 [ 4] [ 12] [000000000000] +18:36:21 [ 7] [ 10] [0320183616] +18:36:21 [ 11] [ 6] [829004] +18:36:21 [ 12] [ 6] [183616] +18:36:21 [ 13] [ 4] [0320] +18:36:21 [ 15] [ 4] [0320] +18:36:21 [ 18] [ 4] [6011] +18:36:21 [ 22] [ 3] [900] +18:36:21 [ 25] [ 2] [02] +18:36:21 [ 28] [ 9] [D00000000] +18:36:21 [ 32] [ 6] [621354] +18:36:21 [ 35] [ 37] [6688990040053850=97121261543834200000] +18:36:21 [ 37] [ 12] [507903625572] +18:36:21 [ 41] [ 8] [16001500] +18:36:21 [ 42] [ 15] [NATIVE ] +18:36:21 [ 43] [ 40] [Sea game Village Xaythany LAO] +18:36:21 [ 49] [ 3] [418] +18:36:21 [ 52] [ 16] [41D415C41C1BA4EB] +18:36:21 ============================================================================ +18:36:21 + + +waiting on router queue for slot.... +18:36:21 Sending to : +18:36:21 ============================================================================ +18:36:21 ============================================================================ +18:36:21 Slot Id : <136> +18:36:21 Transaction Type : REQUEST +18:36:21 Received From : +18:36:21 ============================================================================ +18:36:21 FNo. Len. Field Value +18:36:21 ============================================================================ +18:36:21 [ 1] [ 4] [0200] +18:36:21 [ 2] [ 16] [6688990040053850] +18:36:21 [ 3] [ 6] [300000] +18:36:21 [ 4] [ 12] [000000000000] +18:36:21 [ 7] [ 10] [0320183616] +18:36:21 [ 11] [ 6] [829004] +18:36:21 [ 12] [ 6] [183616] +18:36:21 [ 13] [ 4] [0320] +18:36:21 [ 15] [ 4] [0320] +18:36:21 [ 18] [ 4] [6011] +18:36:21 [ 22] [ 3] [900] +18:36:21 [ 25] [ 2] [02] +18:36:21 [ 28] [ 9] [D00000000] +18:36:21 [ 32] [ 6] [621354] +18:36:21 [ 35] [ 37] [6688990040053850=97121261543834200000] +18:36:21 [ 37] [ 12] [507903625572] +18:36:21 [ 41] [ 8] [16001500] +18:36:21 [ 42] [ 15] [NATIVE ] +18:36:21 [ 43] [ 40] [Sea game Village Xaythany LAO] +18:36:21 [ 49] [ 3] [418] +18:36:21 [ 52] [ 16] [9737BA9831646D98] +18:36:21 ============================================================================ +18:36:21 + + +waiting on router queue for slot.... +18:36:21 Sending to : <4> +18:36:21 ============================================================================ +18:36:22 ============================================================================ +18:36:22 Slot Id : <136> +18:36:22 Transaction Type : RESPONSE +18:36:22 Received From : +18:36:22 ============================================================================ +18:36:22 FNo. Len. Field Value +18:36:22 ============================================================================ +18:36:22 [ 1] [ 4] [0210] +18:36:22 [ 2] [ 16] [6688990040053850] +18:36:22 [ 3] [ 6] [300000] +18:36:22 [ 4] [ 12] [000000000000] +18:36:22 [ 11] [ 6] [829004] +18:36:22 [ 12] [ 6] [183616] +18:36:22 [ 15] [ 4] [0320] +18:36:22 [ 18] [ 4] [6011] +18:36:22 [ 32] [ 6] [621354] +18:36:22 [ 35] [ 37] [6688990040053850=97121261543834200000] +18:36:22 [ 37] [ 12] [507903625572] +18:36:22 [ 38] [ 6] [422345] +18:36:22 [ 39] [ 2] [00] +18:36:22 [ 41] [ 8] [16001500] +18:36:22 [ 49] [ 3] [418] +18:36:22 [ 54] [ 20] [0002418C000007189244] +18:36:22 ============================================================================ +18:36:22 Sending to : +18:36:22 ============================================================================ +18:36:22 + + +waiting on router queue for slot.... +18:36:23 ============================================================================ +18:36:23 Slot Id : <85> +18:36:23 Transaction Type : REQUEST +18:36:23 Received From : +18:36:23 ============================================================================ +18:36:23 FNo. Len. Field Value +18:36:23 ============================================================================ +18:36:23 [ 1] [ 4] [0800] +18:36:23 [ 7] [ 10] [0320113412] +18:36:23 [ 11] [ 6] [031545] +18:36:23 [ 37] [ 12] [57918031545] +18:36:23 [ 70] [ 3] [301] +18:36:23 ============================================================================ +18:36:23 + + +waiting on router queue for slot.... +18:36:23 Sending to : +18:36:23 ============================================================================ +18:36:23 ============================================================================ +18:36:23 Slot Id : <85> +18:36:23 Transaction Type : RESPONSE +18:36:23 Received From : +18:36:23 ============================================================================ +18:36:23 FNo. Len. Field Value +18:36:23 ============================================================================ +18:36:23 [ 1] [ 4] [0810] +18:36:23 [ 7] [ 10] [0320113412] +18:36:23 [ 11] [ 6] [031545] +18:36:23 [ 37] [ 12] [579180315450] +18:36:23 [ 39] [ 2] [00] +18:36:23 [ 70] [ 3] [810] +18:36:23 ============================================================================ +18:36:23 Calculate Source COMM Id = 4 +18:36:23 ============================================================================ +18:36:23 + + +waiting on router queue for slot.... +18:36:24 ============================================================================ +18:36:24 Slot Id : <136> +18:36:24 Transaction Type : RESPONSE +18:36:24 Received From : +18:36:24 ============================================================================ +18:36:24 FNo. Len. Field Value +18:36:24 ============================================================================ +18:36:24 [ 1] [ 4] [0210] +18:36:24 [ 2] [ 16] [6688990040053850] +18:36:24 [ 3] [ 6] [300000] +18:36:24 [ 4] [ 12] [000000000000] +18:36:24 [ 11] [ 6] [829004] +18:36:24 [ 12] [ 6] [183616] +18:36:24 [ 15] [ 4] [0320] +18:36:24 [ 18] [ 4] [6011] +18:36:24 [ 32] [ 6] [621354] +18:36:24 [ 35] [ 37] [6688990040053850=97121261543834200000] +18:36:24 [ 37] [ 12] [507903625572] +18:36:24 [ 38] [ 6] [422345] +18:36:24 [ 39] [ 2] [00] +18:36:24 [ 41] [ 8] [16001500] +18:36:24 [ 49] [ 3] [418] +18:36:24 [ 54] [ 20] [0002418C000007189244] +18:36:24 ============================================================================ +18:36:24 Calculate Source COMM Id = 0 +18:36:24 ============================================================================ +18:36:24 + + +waiting on router queue for slot.... +18:36:25 ============================================================================ +18:36:25 Slot Id : <71> +18:36:25 Transaction Type : REQUEST +18:36:25 Received From : +18:36:25 ============================================================================ +18:36:25 FNo. Len. Field Value +18:36:25 ============================================================================ +18:36:25 [ 1] [ 4] [0800] +18:36:25 [ 7] [ 10] [0320113532] +18:36:25 [ 11] [ 6] [157740] +18:36:25 [ 70] [ 3] [301] +18:36:25 ============================================================================ +18:36:25 + + +waiting on router queue for slot.... +18:36:25 Sending to : +18:36:25 ============================================================================ +18:36:25 ============================================================================ +18:36:25 Slot Id : <71> +18:36:25 Transaction Type : RESPONSE +18:36:25 Received From : +18:36:25 ============================================================================ +18:36:25 FNo. Len. Field Value +18:36:25 ============================================================================ +18:36:25 [ 1] [ 4] [0810] +18:36:25 [ 7] [ 10] [0320113532] +18:36:25 [ 11] [ 6] [157740] +18:36:25 [ 39] [ 2] [00] +18:36:25 [ 70] [ 3] [301] +18:36:25 ============================================================================ +18:36:25 Calculate Source COMM Id = 2 +18:36:25 ============================================================================ +18:36:25 + + +waiting on router queue for slot.... +18:36:26 ============================================================================ +18:36:26 Slot Id : <105> +18:36:26 Transaction Type : REQUEST +18:36:26 Received From : +18:36:26 ============================================================================ +18:36:26 FNo. Len. Field Value +18:36:26 ============================================================================ +18:36:26 [ 1] [ 4] [0200] +18:36:26 [ 2] [ 16] [6213544000398187] +18:36:26 [ 3] [ 6] [010000] +18:36:26 [ 4] [ 12] [000050000000] +18:36:26 [ 7] [ 10] [0320113532] +18:36:26 [ 11] [ 6] [271254] +18:36:26 [ 12] [ 6] [183532] +18:36:26 [ 13] [ 4] [0320] +18:36:26 [ 14] [ 4] [4912] +18:36:26 [ 15] [ 4] [0320] +18:36:26 [ 18] [ 4] [6011] +18:36:26 [ 19] [ 3] [418] +18:36:26 [ 22] [ 3] [021] +18:36:26 [ 25] [ 2] [01] +18:36:26 [ 28] [ 9] [D00002000] +18:36:26 [ 32] [ 6] [180893] +18:36:26 [ 35] [ 32] [6213544000398187=491212019818259] +18:36:26 [ 37] [ 12] [507911271254] +18:36:26 [ 41] [ 8] [0243VTKS] +18:36:26 [ 42] [ 15] [999999 ] +18:36:26 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +18:36:26 [ 49] [ 3] [418] +18:36:26 [ 52] [ 16] [170EE318E2098830] +18:36:26 ============================================================================ +18:36:26 + + +waiting on router queue for slot.... +18:36:26 Sending to : +18:36:26 ============================================================================ +18:36:26 Sending to : +18:36:26 ============================================================================ +18:36:26 ============================================================================ +18:36:26 Slot Id : <105> +18:36:26 Transaction Type : REQUEST +18:36:26 Received From : +18:36:26 ============================================================================ +18:36:26 FNo. Len. Field Value +18:36:26 ============================================================================ +18:36:26 [ 1] [ 4] [0200] +18:36:26 [ 2] [ 16] [6213544000398187] +18:36:26 [ 3] [ 6] [010000] +18:36:26 [ 4] [ 12] [000050000000] +18:36:26 [ 7] [ 10] [0320113532] +18:36:26 [ 11] [ 6] [271254] +18:36:26 [ 12] [ 6] [183532] +18:36:26 [ 13] [ 4] [0320] +18:36:26 [ 14] [ 4] [4912] +18:36:26 [ 15] [ 4] [0320] +18:36:26 [ 18] [ 4] [6011] +18:36:26 [ 19] [ 3] [418] +18:36:26 [ 22] [ 3] [021] +18:36:26 [ 25] [ 2] [01] +18:36:26 [ 28] [ 9] [D00002000] +18:36:26 [ 32] [ 6] [180893] +18:36:26 [ 35] [ 32] [6213544000398187=491212019818259] +18:36:26 [ 37] [ 12] [507911271254] +18:36:26 [ 41] [ 8] [0243VTKS] +18:36:26 [ 42] [ 15] [999999 ] +18:36:26 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +18:36:26 [ 49] [ 3] [418] +18:36:26 [ 52] [ 16] [170EE318E2098830] +18:36:26 ============================================================================ +18:36:26 + + +waiting on router queue for slot.... +18:36:26 Sending to : +18:36:26 ============================================================================ +18:36:26 ============================================================================ +18:36:26 Slot Id : <105> +18:36:26 Transaction Type : REQUEST +18:36:26 Received From : +18:36:26 ============================================================================ +18:36:26 FNo. Len. Field Value +18:36:26 ============================================================================ +18:36:26 [ 1] [ 4] [0200] +18:36:26 [ 2] [ 16] [6213544000398187] +18:36:26 [ 3] [ 6] [010000] +18:36:26 [ 4] [ 12] [000050000000] +18:36:26 [ 7] [ 10] [0320113532] +18:36:26 [ 11] [ 6] [271254] +18:36:26 [ 12] [ 6] [183532] +18:36:26 [ 13] [ 4] [0320] +18:36:26 [ 14] [ 4] [4912] +18:36:26 [ 15] [ 4] [0320] +18:36:26 [ 18] [ 4] [6011] +18:36:26 [ 19] [ 3] [418] +18:36:26 [ 22] [ 3] [021] +18:36:26 [ 25] [ 2] [01] +18:36:26 [ 28] [ 9] [D00002000] +18:36:26 [ 32] [ 6] [180893] +18:36:26 [ 35] [ 32] [6213544000398187=491212019818259] +18:36:26 [ 37] [ 12] [507911271254] +18:36:26 [ 41] [ 8] [0243VTKS] +18:36:26 [ 42] [ 15] [999999 ] +18:36:26 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +18:36:26 [ 49] [ 3] [418] +18:36:26 [ 52] [ 16] [68C98C1F08AA9511] +18:36:26 ============================================================================ +18:36:26 + + +waiting on router queue for slot.... +18:36:26 Sending to : <0> +18:36:26 ============================================================================ +18:36:27 ============================================================================ +18:36:27 Slot Id : <105> +18:36:27 Transaction Type : RESPONSE +18:36:27 Received From : +18:36:27 ============================================================================ +18:36:27 FNo. Len. Field Value +18:36:27 ============================================================================ +18:36:27 [ 1] [ 4] [0210] +18:36:27 [ 2] [ 16] [6213544000398187] +18:36:27 [ 3] [ 6] [010000] +18:36:27 [ 4] [ 12] [000050000000] +18:36:27 [ 7] [ 10] [0320113532] +18:36:27 [ 11] [ 6] [271254] +18:36:27 [ 12] [ 6] [183532] +18:36:27 [ 13] [ 4] [0320] +18:36:27 [ 15] [ 4] [0320] +18:36:27 [ 18] [ 4] [6011] +18:36:27 [ 19] [ 3] [418] +18:36:27 [ 32] [ 6] [180893] +18:36:27 [ 35] [ 32] [6213544000398187=491212019818259] +18:36:27 [ 37] [ 12] [507911271254] +18:36:27 [ 38] [ 6] [680461] +18:36:27 [ 39] [ 2] [00] +18:36:27 [ 41] [ 8] [0243VTKS] +18:36:27 [ 49] [ 3] [418] +18:36:27 [ 54] [ 40] [0001418C0014480387040002418C001448038704] +18:36:27 ============================================================================ +18:36:27 Sending to : +18:36:27 ============================================================================ +18:36:27 + + +waiting on router queue for slot.... +18:36:28 ============================================================================ +18:36:28 Slot Id : <129> +18:36:28 Transaction Type : REQUEST +18:36:28 Received From : +18:36:28 ============================================================================ +18:36:28 FNo. Len. Field Value +18:36:28 ============================================================================ +18:36:28 [ 1] [ 4] [0200] +18:36:28 [ 2] [ 16] [6688990108434109] +18:36:28 [ 3] [ 6] [301000] +18:36:28 [ 7] [ 10] [0320113534] +18:36:28 [ 11] [ 6] [271255] +18:36:28 [ 12] [ 6] [183534] +18:36:28 [ 13] [ 4] [0320] +18:36:28 [ 14] [ 4] [4406] +18:36:28 [ 15] [ 4] [0320] +18:36:28 [ 18] [ 4] [6011] +18:36:28 [ 19] [ 3] [418] +18:36:28 [ 22] [ 3] [021] +18:36:28 [ 25] [ 2] [01] +18:36:28 [ 32] [ 6] [180893] +18:36:28 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:36:28 [ 37] [ 12] [507911271255] +18:36:28 [ 41] [ 8] [0464UDPB] +18:36:28 [ 42] [ 15] [999999 ] +18:36:28 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:36:28 [ 49] [ 3] [418] +18:36:28 [ 52] [ 16] [BDC0F647C08F0A8C] +18:36:28 ============================================================================ +18:36:28 + + +waiting on router queue for slot.... +18:36:28 Sending to : +18:36:28 ============================================================================ +18:36:28 Sending to : +18:36:28 ============================================================================ +18:36:28 ============================================================================ +18:36:28 Slot Id : <129> +18:36:28 Transaction Type : REQUEST +18:36:28 Received From : +18:36:28 ============================================================================ +18:36:28 FNo. Len. Field Value +18:36:28 ============================================================================ +18:36:28 [ 1] [ 4] [0200] +18:36:28 [ 2] [ 16] [6688990108434109] +18:36:28 [ 3] [ 6] [301000] +18:36:28 [ 7] [ 10] [0320113534] +18:36:28 [ 11] [ 6] [271255] +18:36:28 [ 12] [ 6] [183534] +18:36:28 [ 13] [ 4] [0320] +18:36:28 [ 14] [ 4] [4406] +18:36:28 [ 15] [ 4] [0320] +18:36:28 [ 18] [ 4] [6011] +18:36:28 [ 19] [ 3] [418] +18:36:28 [ 22] [ 3] [021] +18:36:28 [ 25] [ 2] [01] +18:36:28 [ 32] [ 6] [180893] +18:36:28 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:36:28 [ 37] [ 12] [507911271255] +18:36:28 [ 41] [ 8] [0464UDPB] +18:36:28 [ 42] [ 15] [999999 ] +18:36:28 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:36:28 [ 49] [ 3] [418] +18:36:28 [ 52] [ 16] [BDC0F647C08F0A8C] +18:36:28 ============================================================================ +18:36:28 + + +waiting on router queue for slot.... +18:36:28 Sending to : +18:36:28 ============================================================================ +18:36:28 ============================================================================ +18:36:28 Slot Id : <129> +18:36:28 Transaction Type : REQUEST +18:36:28 Received From : +18:36:28 ============================================================================ +18:36:28 FNo. Len. Field Value +18:36:28 ============================================================================ +18:36:28 [ 1] [ 4] [0200] +18:36:28 [ 2] [ 16] [6688990108434109] +18:36:28 [ 3] [ 6] [301000] +18:36:28 [ 7] [ 10] [0320113534] +18:36:28 [ 11] [ 6] [271255] +18:36:28 [ 12] [ 6] [183534] +18:36:28 [ 13] [ 4] [0320] +18:36:28 [ 14] [ 4] [4406] +18:36:28 [ 15] [ 4] [0320] +18:36:28 [ 18] [ 4] [6011] +18:36:28 [ 19] [ 3] [418] +18:36:28 [ 22] [ 3] [021] +18:36:28 [ 25] [ 2] [01] +18:36:28 [ 32] [ 6] [180893] +18:36:28 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:36:28 [ 37] [ 12] [507911271255] +18:36:28 [ 41] [ 8] [0464UDPB] +18:36:28 [ 42] [ 15] [999999 ] +18:36:28 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:36:28 [ 49] [ 3] [418] +18:36:28 [ 52] [ 16] [070229D0A8F09284] +18:36:28 ============================================================================ +18:36:28 + + +waiting on router queue for slot.... +18:36:28 Sending to : <0> +18:36:28 ============================================================================ +18:36:28 ============================================================================ +18:36:28 Slot Id : <129> +18:36:28 Transaction Type : RESPONSE +18:36:28 Received From : +18:36:28 ============================================================================ +18:36:28 FNo. Len. Field Value +18:36:28 ============================================================================ +18:36:28 [ 1] [ 4] [0210] +18:36:28 [ 2] [ 16] [6688990108434109] +18:36:28 [ 3] [ 6] [301000] +18:36:28 [ 4] [ 12] [000000000000] +18:36:28 [ 7] [ 10] [0320113534] +18:36:28 [ 11] [ 6] [271255] +18:36:28 [ 12] [ 6] [183534] +18:36:28 [ 13] [ 4] [0320] +18:36:28 [ 15] [ 4] [0320] +18:36:28 [ 18] [ 4] [6011] +18:36:28 [ 19] [ 3] [418] +18:36:28 [ 22] [ 3] [021] +18:36:28 [ 32] [ 6] [180893] +18:36:28 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:36:28 [ 37] [ 12] [507911271255] +18:36:28 [ 39] [ 2] [14] +18:36:28 [ 41] [ 8] [0464UDPB] +18:36:28 [ 49] [ 3] [418] +18:36:28 ============================================================================ +18:36:28 Sending to : +18:36:28 ============================================================================ +18:36:28 + + +waiting on router queue for slot.... +18:36:29 ============================================================================ +18:36:29 Slot Id : <105> +18:36:29 Transaction Type : RESPONSE +18:36:29 Received From : +18:36:29 ============================================================================ +18:36:29 FNo. Len. Field Value +18:36:29 ============================================================================ +18:36:29 [ 1] [ 4] [0210] +18:36:29 [ 2] [ 16] [6213544000398187] +18:36:29 [ 3] [ 6] [010000] +18:36:29 [ 4] [ 12] [000050000000] +18:36:29 [ 7] [ 10] [0320113532] +18:36:29 [ 11] [ 6] [271254] +18:36:29 [ 12] [ 6] [183532] +18:36:29 [ 13] [ 4] [0320] +18:36:29 [ 15] [ 4] [0320] +18:36:29 [ 18] [ 4] [6011] +18:36:29 [ 19] [ 3] [418] +18:36:29 [ 32] [ 6] [180893] +18:36:29 [ 35] [ 32] [6213544000398187=491212019818259] +18:36:29 [ 37] [ 12] [507911271254] +18:36:29 [ 38] [ 6] [680461] +18:36:29 [ 39] [ 2] [00] +18:36:29 [ 41] [ 8] [0243VTKS] +18:36:29 [ 49] [ 3] [418] +18:36:29 [ 54] [ 40] [0001418C0014480387040002418C001448038704] +18:36:29 ============================================================================ +18:36:29 Calculate Source COMM Id = 2 +18:36:29 ============================================================================ +18:36:29 + + +waiting on router queue for slot.... +18:36:30 ============================================================================ +18:36:30 Slot Id : <129> +18:36:30 Transaction Type : RESPONSE +18:36:30 Received From : +18:36:30 ============================================================================ +18:36:30 FNo. Len. Field Value +18:36:30 ============================================================================ +18:36:30 [ 1] [ 4] [0210] +18:36:30 [ 2] [ 16] [6688990108434109] +18:36:30 [ 3] [ 6] [301000] +18:36:30 [ 4] [ 12] [000000000000] +18:36:30 [ 7] [ 10] [0320113534] +18:36:30 [ 11] [ 6] [271255] +18:36:30 [ 12] [ 6] [183534] +18:36:30 [ 13] [ 4] [0320] +18:36:30 [ 15] [ 4] [0320] +18:36:30 [ 18] [ 4] [6011] +18:36:30 [ 19] [ 3] [418] +18:36:30 [ 22] [ 3] [021] +18:36:30 [ 32] [ 6] [180893] +18:36:30 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:36:30 [ 37] [ 12] [507911271255] +18:36:30 [ 39] [ 2] [14] +18:36:30 [ 41] [ 8] [0464UDPB] +18:36:30 [ 49] [ 3] [418] +18:36:30 ============================================================================ +18:36:30 Calculate Source COMM Id = 2 +18:36:30 ============================================================================ +18:36:30 + + +waiting on router queue for slot.... +18:36:39 ============================================================================ +18:36:39 Slot Id : <116> +18:36:39 Transaction Type : REQUEST +18:36:39 Received From : +18:36:39 ============================================================================ +18:36:39 FNo. Len. Field Value +18:36:39 ============================================================================ +18:36:39 [ 1] [ 4] [0800] +18:36:39 [ 2] [ 5] [02531] +18:36:39 [ 3] [ 6] [579188] +18:36:39 [ 7] [ 10] [0320113639] +18:36:39 [ 11] [ 6] [807492] +18:36:39 [ 15] [ 10] [0320113639] +18:36:39 [ 37] [ 11] [57918807492] +18:36:39 [ 70] [ 3] [001] +18:36:39 ============================================================================ +18:36:39 + + +waiting on router queue for slot.... +18:36:39 ============================================================================ +18:36:39 Slot Id : <116> +18:36:39 Transaction Type : RESPONSE +18:36:39 Received From : +18:36:39 ============================================================================ +18:36:39 FNo. Len. Field Value +18:36:39 ============================================================================ +18:36:39 [ 1] [ 4] [0810] +18:36:39 [ 7] [ 10] [0320113639] +18:36:39 [ 11] [ 6] [807492] +18:36:39 [ 15] [ 4] [0320] +18:36:39 [ 37] [ 12] [57918807492] +18:36:39 [ 39] [ 2] [00] +18:36:39 [ 70] [ 3] [001] +18:36:39 ============================================================================ +18:36:39 Sending to : +18:36:39 ============================================================================ +18:36:39 + + +waiting on router queue for slot.... +18:36:41 ============================================================================ +18:36:41 Slot Id : <131> +18:36:41 Transaction Type : REQUEST +18:36:41 Received From : +18:36:41 ============================================================================ +18:36:41 FNo. Len. Field Value +18:36:41 ============================================================================ +18:36:41 [ 1] [ 4] [0800] +18:36:41 [ 7] [ 10] [0320113548] +18:36:41 [ 11] [ 6] [157741] +18:36:41 [ 70] [ 3] [301] +18:36:41 ============================================================================ +18:36:41 + + +waiting on router queue for slot.... +18:36:41 Sending to : +18:36:41 ============================================================================ +18:36:41 ============================================================================ +18:36:41 Slot Id : <131> +18:36:41 Transaction Type : RESPONSE +18:36:41 Received From : +18:36:41 ============================================================================ +18:36:41 FNo. Len. Field Value +18:36:41 ============================================================================ +18:36:41 [ 1] [ 4] [0810] +18:36:41 [ 7] [ 10] [0320113548] +18:36:41 [ 11] [ 6] [157741] +18:36:41 [ 39] [ 2] [00] +18:36:41 [ 70] [ 3] [301] +18:36:41 ============================================================================ +18:36:41 Calculate Source COMM Id = 2 +18:36:41 ============================================================================ +18:36:41 + + +waiting on router queue for slot.... +18:36:54 ============================================================================ +18:36:54 Slot Id : <104> +18:36:54 Transaction Type : REQUEST +18:36:54 Received From : +18:36:54 ============================================================================ +18:36:54 FNo. Len. Field Value +18:36:54 ============================================================================ +18:36:54 [ 1] [ 4] [0800] +18:36:54 [ 7] [ 10] [0321014842] +18:36:54 [ 11] [ 6] [184842] +18:36:54 [ 37] [ 12] [57918184842] +18:36:54 [ 70] [ 3] [301] +18:36:54 ============================================================================ +18:36:54 + + +waiting on router queue for slot.... +18:36:54 Sending to : +18:36:54 ============================================================================ +18:36:54 ============================================================================ +18:36:54 Slot Id : <104> +18:36:54 Transaction Type : RESPONSE +18:36:54 Received From : +18:36:54 ============================================================================ +18:36:54 FNo. Len. Field Value +18:36:54 ============================================================================ +18:36:54 [ 1] [ 4] [0810] +18:36:54 [ 7] [ 10] [0321014842] +18:36:54 [ 11] [ 6] [184842] +18:36:54 [ 37] [ 12] [579181848420] +18:36:54 [ 39] [ 2] [00] +18:36:54 [ 70] [ 3] [810] +18:36:54 ============================================================================ +18:36:54 Calculate Source COMM Id = 6 +18:36:54 ============================================================================ +18:36:54 + + +waiting on router queue for slot.... +18:36:58 ============================================================================ +18:36:58 Slot Id : <138> +18:36:58 Transaction Type : REQUEST +18:36:58 Received From : +18:36:58 ============================================================================ +18:36:58 FNo. Len. Field Value +18:36:58 ============================================================================ +18:36:58 [ 1] [ 4] [0800] +18:36:58 [ 7] [ 10] [0320113604] +18:36:58 [ 11] [ 6] [157742] +18:36:58 [ 70] [ 3] [301] +18:36:58 ============================================================================ +18:36:58 + + +waiting on router queue for slot.... +18:36:58 Sending to : +18:36:58 ============================================================================ +18:36:58 ============================================================================ +18:36:58 Slot Id : <138> +18:36:58 Transaction Type : RESPONSE +18:36:58 Received From : +18:36:58 ============================================================================ +18:36:58 FNo. Len. Field Value +18:36:58 ============================================================================ +18:36:58 [ 1] [ 4] [0810] +18:36:58 [ 7] [ 10] [0320113604] +18:36:58 [ 11] [ 6] [157742] +18:36:58 [ 39] [ 2] [00] +18:36:58 [ 70] [ 3] [301] +18:36:58 ============================================================================ +18:36:58 Calculate Source COMM Id = 2 +18:36:58 ============================================================================ +18:36:58 + + +waiting on router queue for slot.... +18:37:04 ============================================================================ +18:37:04 Slot Id : <97> +18:37:04 Transaction Type : REQUEST +18:37:04 Received From : +18:37:04 ============================================================================ +18:37:04 FNo. Len. Field Value +18:37:04 ============================================================================ +18:37:04 [ 1] [ 4] [0200] +18:37:04 [ 2] [ 16] [6688990602952804] +18:37:04 [ 3] [ 6] [011000] +18:37:04 [ 4] [ 12] [000020000000] +18:37:04 [ 7] [ 10] [0320183659] +18:37:04 [ 11] [ 6] [829084] +18:37:04 [ 12] [ 6] [183659] +18:37:04 [ 13] [ 4] [0320] +18:37:04 [ 15] [ 4] [0320] +18:37:04 [ 18] [ 4] [6011] +18:37:04 [ 22] [ 3] [900] +18:37:04 [ 25] [ 2] [02] +18:37:04 [ 28] [ 9] [D00002000] +18:37:04 [ 32] [ 6] [621354] +18:37:04 [ 35] [ 37] [6688990602952804=44020061280457800000] +18:37:04 [ 37] [ 12] [507903032394] +18:37:04 [ 41] [ 8] [12002600] +18:37:04 [ 42] [ 15] [NATIVE ] +18:37:04 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +18:37:04 [ 49] [ 3] [418] +18:37:04 [ 52] [ 16] [DD8B054EE16461B8] +18:37:04 ============================================================================ +18:37:04 + + +waiting on router queue for slot.... +18:37:04 Sending to : +18:37:04 ============================================================================ +18:37:04 Sending to : +18:37:04 ============================================================================ +18:37:04 ============================================================================ +18:37:04 Slot Id : <97> +18:37:04 Transaction Type : REQUEST +18:37:04 Received From : +18:37:04 ============================================================================ +18:37:04 FNo. Len. Field Value +18:37:04 ============================================================================ +18:37:04 [ 1] [ 4] [0200] +18:37:04 [ 2] [ 16] [6688990602952804] +18:37:04 [ 3] [ 6] [011000] +18:37:04 [ 4] [ 12] [000020000000] +18:37:04 [ 7] [ 10] [0320183659] +18:37:04 [ 11] [ 6] [829084] +18:37:04 [ 12] [ 6] [183659] +18:37:04 [ 13] [ 4] [0320] +18:37:04 [ 15] [ 4] [0320] +18:37:04 [ 18] [ 4] [6011] +18:37:04 [ 22] [ 3] [900] +18:37:04 [ 25] [ 2] [02] +18:37:04 [ 28] [ 9] [D00002000] +18:37:04 [ 32] [ 6] [621354] +18:37:04 [ 35] [ 37] [6688990602952804=44020061280457800000] +18:37:04 [ 37] [ 12] [507903032394] +18:37:04 [ 41] [ 8] [12002600] +18:37:04 [ 42] [ 15] [NATIVE ] +18:37:04 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +18:37:04 [ 49] [ 3] [418] +18:37:04 [ 52] [ 16] [DD8B054EE16461B8] +18:37:04 ============================================================================ +18:37:04 + + +waiting on router queue for slot.... +18:37:04 Sending to : +18:37:04 ============================================================================ +18:37:05 ============================================================================ +18:37:05 Slot Id : <97> +18:37:05 Transaction Type : REQUEST +18:37:05 Received From : +18:37:05 ============================================================================ +18:37:05 FNo. Len. Field Value +18:37:05 ============================================================================ +18:37:05 [ 1] [ 4] [0200] +18:37:05 [ 2] [ 16] [6688990602952804] +18:37:05 [ 3] [ 6] [011000] +18:37:05 [ 4] [ 12] [000020000000] +18:37:05 [ 7] [ 10] [0320183659] +18:37:05 [ 11] [ 6] [829084] +18:37:05 [ 12] [ 6] [183659] +18:37:05 [ 13] [ 4] [0320] +18:37:05 [ 15] [ 4] [0320] +18:37:05 [ 18] [ 4] [6011] +18:37:05 [ 22] [ 3] [900] +18:37:05 [ 25] [ 2] [02] +18:37:05 [ 28] [ 9] [D00002000] +18:37:05 [ 32] [ 6] [621354] +18:37:05 [ 35] [ 37] [6688990602952804=44020061280457800000] +18:37:05 [ 37] [ 12] [507903032394] +18:37:05 [ 41] [ 8] [12002600] +18:37:05 [ 42] [ 15] [NATIVE ] +18:37:05 [ 43] [ 40] [HONGSA UNIT Hongsa LAO] +18:37:05 [ 49] [ 3] [418] +18:37:05 [ 52] [ 16] [20AED56111FAD2C1] +18:37:05 ============================================================================ +18:37:05 + + +waiting on router queue for slot.... +18:37:05 Sending to : <4> +18:37:05 ============================================================================ +18:37:05 ============================================================================ +18:37:05 Slot Id : <97> +18:37:05 Transaction Type : RESPONSE +18:37:05 Received From : +18:37:05 ============================================================================ +18:37:05 FNo. Len. Field Value +18:37:05 ============================================================================ +18:37:05 [ 1] [ 4] [0210] +18:37:05 [ 2] [ 16] [6688990602952804] +18:37:05 [ 3] [ 6] [011000] +18:37:05 [ 4] [ 12] [000020000000] +18:37:05 [ 11] [ 6] [829084] +18:37:05 [ 12] [ 6] [183659] +18:37:05 [ 15] [ 4] [0320] +18:37:05 [ 18] [ 4] [6011] +18:37:05 [ 32] [ 6] [621354] +18:37:05 [ 35] [ 37] [6688990602952804=44020061280457800000] +18:37:05 [ 37] [ 12] [507903032394] +18:37:05 [ 38] [ 6] [555074] +18:37:05 [ 39] [ 2] [00] +18:37:05 [ 41] [ 8] [12002600] +18:37:05 [ 49] [ 3] [418] +18:37:05 [ 54] [ 20] [1002418C000147085277] +18:37:05 ============================================================================ +18:37:05 Sending to : +18:37:05 ============================================================================ +18:37:05 + + +waiting on router queue for slot.... +18:37:07 ============================================================================ +18:37:07 Slot Id : <97> +18:37:07 Transaction Type : RESPONSE +18:37:07 Received From : +18:37:07 ============================================================================ +18:37:07 FNo. Len. Field Value +18:37:07 ============================================================================ +18:37:07 [ 1] [ 4] [0210] +18:37:07 [ 2] [ 16] [6688990602952804] +18:37:07 [ 3] [ 6] [011000] +18:37:07 [ 4] [ 12] [000020000000] +18:37:07 [ 11] [ 6] [829084] +18:37:07 [ 12] [ 6] [183659] +18:37:07 [ 15] [ 4] [0320] +18:37:07 [ 18] [ 4] [6011] +18:37:07 [ 32] [ 6] [621354] +18:37:07 [ 35] [ 37] [6688990602952804=44020061280457800000] +18:37:07 [ 37] [ 12] [507903032394] +18:37:07 [ 38] [ 6] [555074] +18:37:07 [ 39] [ 2] [00] +18:37:07 [ 41] [ 8] [12002600] +18:37:07 [ 49] [ 3] [418] +18:37:07 [ 54] [ 20] [1002418C000147085277] +18:37:07 ============================================================================ +18:37:07 Calculate Source COMM Id = 0 +18:37:07 ============================================================================ +18:37:07 + + +waiting on router queue for slot.... +18:37:13 ============================================================================ +18:37:13 Slot Id : <112> +18:37:13 Transaction Type : REQUEST +18:37:13 Received From : +18:37:13 ============================================================================ +18:37:13 FNo. Len. Field Value +18:37:13 ============================================================================ +18:37:13 [ 1] [ 4] [0800] +18:37:13 [ 7] [ 10] [0320113620] +18:37:13 [ 11] [ 6] [157743] +18:37:13 [ 70] [ 3] [301] +18:37:13 ============================================================================ +18:37:13 + + +waiting on router queue for slot.... +18:37:13 Sending to : +18:37:13 ============================================================================ +18:37:13 ============================================================================ +18:37:13 Slot Id : <112> +18:37:13 Transaction Type : RESPONSE +18:37:13 Received From : +18:37:13 ============================================================================ +18:37:13 FNo. Len. Field Value +18:37:13 ============================================================================ +18:37:13 [ 1] [ 4] [0810] +18:37:13 [ 7] [ 10] [0320113620] +18:37:13 [ 11] [ 6] [157743] +18:37:13 [ 39] [ 2] [00] +18:37:13 [ 70] [ 3] [301] +18:37:13 ============================================================================ +18:37:13 Calculate Source COMM Id = 2 +18:37:13 ============================================================================ +18:37:13 + + +waiting on router queue for slot.... +18:37:17 ============================================================================ +18:37:17 Slot Id : <111> +18:37:17 Transaction Type : REQUEST +18:37:17 Received From : +18:37:17 ============================================================================ +18:37:17 FNo. Len. Field Value +18:37:17 ============================================================================ +18:37:17 [ 1] [ 4] [0200] +18:37:17 [ 2] [ 16] [6688990108434109] +18:37:17 [ 3] [ 6] [301000] +18:37:17 [ 7] [ 10] [0320113623] +18:37:17 [ 11] [ 6] [271257] +18:37:17 [ 12] [ 6] [183623] +18:37:17 [ 13] [ 4] [0320] +18:37:17 [ 14] [ 4] [4406] +18:37:17 [ 15] [ 4] [0320] +18:37:17 [ 18] [ 4] [6011] +18:37:17 [ 19] [ 3] [418] +18:37:17 [ 22] [ 3] [021] +18:37:17 [ 25] [ 2] [01] +18:37:17 [ 32] [ 6] [180893] +18:37:17 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:37:17 [ 37] [ 12] [507911271257] +18:37:17 [ 41] [ 8] [0464UDPB] +18:37:17 [ 42] [ 15] [999999 ] +18:37:17 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:37:17 [ 49] [ 3] [418] +18:37:17 [ 52] [ 16] [BDC0F647C08F0A8C] +18:37:17 ============================================================================ +18:37:17 + + +waiting on router queue for slot.... +18:37:17 Sending to : +18:37:17 ============================================================================ +18:37:17 Sending to : +18:37:17 ============================================================================ +18:37:17 ============================================================================ +18:37:17 Slot Id : <111> +18:37:17 Transaction Type : REQUEST +18:37:17 Received From : +18:37:17 ============================================================================ +18:37:17 FNo. Len. Field Value +18:37:17 ============================================================================ +18:37:17 [ 1] [ 4] [0200] +18:37:17 [ 2] [ 16] [6688990108434109] +18:37:17 [ 3] [ 6] [301000] +18:37:17 [ 7] [ 10] [0320113623] +18:37:17 [ 11] [ 6] [271257] +18:37:17 [ 12] [ 6] [183623] +18:37:17 [ 13] [ 4] [0320] +18:37:17 [ 14] [ 4] [4406] +18:37:17 [ 15] [ 4] [0320] +18:37:17 [ 18] [ 4] [6011] +18:37:17 [ 19] [ 3] [418] +18:37:17 [ 22] [ 3] [021] +18:37:17 [ 25] [ 2] [01] +18:37:17 [ 32] [ 6] [180893] +18:37:17 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:37:17 [ 37] [ 12] [507911271257] +18:37:17 [ 41] [ 8] [0464UDPB] +18:37:17 [ 42] [ 15] [999999 ] +18:37:17 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:37:17 [ 49] [ 3] [418] +18:37:17 [ 52] [ 16] [BDC0F647C08F0A8C] +18:37:17 ============================================================================ +18:37:17 + + +waiting on router queue for slot.... +18:37:17 Sending to : +18:37:17 ============================================================================ +18:37:17 ============================================================================ +18:37:17 Slot Id : <111> +18:37:17 Transaction Type : REQUEST +18:37:17 Received From : +18:37:17 ============================================================================ +18:37:17 FNo. Len. Field Value +18:37:17 ============================================================================ +18:37:17 [ 1] [ 4] [0200] +18:37:17 [ 2] [ 16] [6688990108434109] +18:37:17 [ 3] [ 6] [301000] +18:37:17 [ 7] [ 10] [0320113623] +18:37:17 [ 11] [ 6] [271257] +18:37:17 [ 12] [ 6] [183623] +18:37:17 [ 13] [ 4] [0320] +18:37:17 [ 14] [ 4] [4406] +18:37:17 [ 15] [ 4] [0320] +18:37:17 [ 18] [ 4] [6011] +18:37:17 [ 19] [ 3] [418] +18:37:17 [ 22] [ 3] [021] +18:37:17 [ 25] [ 2] [01] +18:37:17 [ 32] [ 6] [180893] +18:37:17 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:37:17 [ 37] [ 12] [507911271257] +18:37:17 [ 41] [ 8] [0464UDPB] +18:37:17 [ 42] [ 15] [999999 ] +18:37:17 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:37:17 [ 49] [ 3] [418] +18:37:17 [ 52] [ 16] [070229D0A8F09284] +18:37:17 ============================================================================ +18:37:17 + + +waiting on router queue for slot.... +18:37:17 Sending to : <0> +18:37:17 ============================================================================ +18:37:18 ============================================================================ +18:37:18 Slot Id : <111> +18:37:18 Transaction Type : RESPONSE +18:37:18 Received From : +18:37:18 ============================================================================ +18:37:18 FNo. Len. Field Value +18:37:18 ============================================================================ +18:37:18 [ 1] [ 4] [0210] +18:37:18 [ 2] [ 16] [6688990108434109] +18:37:18 [ 3] [ 6] [301000] +18:37:18 [ 4] [ 12] [000000000000] +18:37:18 [ 7] [ 10] [0320113623] +18:37:18 [ 11] [ 6] [271257] +18:37:18 [ 12] [ 6] [183623] +18:37:18 [ 13] [ 4] [0320] +18:37:18 [ 15] [ 4] [0320] +18:37:18 [ 18] [ 4] [6011] +18:37:18 [ 19] [ 3] [418] +18:37:18 [ 22] [ 3] [021] +18:37:18 [ 32] [ 6] [180893] +18:37:18 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:37:18 [ 37] [ 12] [507911271257] +18:37:18 [ 39] [ 2] [14] +18:37:18 [ 41] [ 8] [0464UDPB] +18:37:18 [ 49] [ 3] [418] +18:37:18 ============================================================================ +18:37:18 Sending to : +18:37:18 ============================================================================ +18:37:18 + + +waiting on router queue for slot.... +18:37:19 ============================================================================ +18:37:19 Slot Id : <111> +18:37:19 Transaction Type : RESPONSE +18:37:19 Received From : +18:37:19 ============================================================================ +18:37:19 FNo. Len. Field Value +18:37:19 ============================================================================ +18:37:19 [ 1] [ 4] [0210] +18:37:19 [ 2] [ 16] [6688990108434109] +18:37:19 [ 3] [ 6] [301000] +18:37:19 [ 4] [ 12] [000000000000] +18:37:19 [ 7] [ 10] [0320113623] +18:37:19 [ 11] [ 6] [271257] +18:37:19 [ 12] [ 6] [183623] +18:37:19 [ 13] [ 4] [0320] +18:37:19 [ 15] [ 4] [0320] +18:37:19 [ 18] [ 4] [6011] +18:37:19 [ 19] [ 3] [418] +18:37:19 [ 22] [ 3] [021] +18:37:19 [ 32] [ 6] [180893] +18:37:19 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:37:19 [ 37] [ 12] [507911271257] +18:37:19 [ 39] [ 2] [14] +18:37:19 [ 41] [ 8] [0464UDPB] +18:37:19 [ 49] [ 3] [418] +18:37:19 ============================================================================ +18:37:19 Calculate Source COMM Id = 2 +18:37:19 ============================================================================ +18:37:19 + + +waiting on router queue for slot.... +18:37:24 ============================================================================ +18:37:24 Slot Id : <124> +18:37:24 Transaction Type : REQUEST +18:37:24 Received From : +18:37:24 ============================================================================ +18:37:24 FNo. Len. Field Value +18:37:24 ============================================================================ +18:37:24 [ 1] [ 4] [0200] +18:37:24 [ 2] [ 16] [6213541000632540] +18:37:24 [ 3] [ 6] [011000] +18:37:24 [ 4] [ 12] [000100000000] +18:37:24 [ 7] [ 10] [0320183744] +18:37:24 [ 11] [ 6] [210510] +18:37:24 [ 12] [ 6] [183810] +18:37:24 [ 13] [ 4] [0320] +18:37:24 [ 14] [ 4] [4912] +18:37:24 [ 15] [ 4] [0320] +18:37:24 [ 18] [ 4] [6011] +18:37:24 [ 19] [ 3] [418] +18:37:24 [ 22] [ 3] [021] +18:37:24 [ 25] [ 2] [01] +18:37:24 [ 28] [ 9] [D00002000] +18:37:24 [ 32] [ 6] [198901] +18:37:24 [ 35] [ 32] [6213541000632540=491212013254302] +18:37:24 [ 37] [ 12] [507918210510] +18:37:24 [ 41] [ 8] [01529009] +18:37:24 [ 42] [ 15] [000000041529009] +18:37:24 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +18:37:24 [ 49] [ 3] [418] +18:37:24 [ 52] [ 16] [161030FD2B50E8F9] +18:37:24 ============================================================================ +18:37:24 + + +waiting on router queue for slot.... +18:37:24 Sending to : +18:37:24 ============================================================================ +18:37:24 Sending to : +18:37:24 ============================================================================ +18:37:24 ============================================================================ +18:37:24 Slot Id : <124> +18:37:24 Transaction Type : REQUEST +18:37:24 Received From : +18:37:24 ============================================================================ +18:37:24 FNo. Len. Field Value +18:37:24 ============================================================================ +18:37:24 [ 1] [ 4] [0200] +18:37:24 [ 2] [ 16] [6213541000632540] +18:37:24 [ 3] [ 6] [011000] +18:37:24 [ 4] [ 12] [000100000000] +18:37:24 [ 7] [ 10] [0320183744] +18:37:24 [ 11] [ 6] [210510] +18:37:24 [ 12] [ 6] [183810] +18:37:24 [ 13] [ 4] [0320] +18:37:24 [ 14] [ 4] [4912] +18:37:24 [ 15] [ 4] [0320] +18:37:24 [ 18] [ 4] [6011] +18:37:24 [ 19] [ 3] [418] +18:37:24 [ 22] [ 3] [021] +18:37:24 [ 25] [ 2] [01] +18:37:24 [ 28] [ 9] [D00002000] +18:37:24 [ 32] [ 6] [198901] +18:37:24 [ 35] [ 32] [6213541000632540=491212013254302] +18:37:24 [ 37] [ 12] [507918210510] +18:37:24 [ 41] [ 8] [01529009] +18:37:24 [ 42] [ 15] [000000041529009] +18:37:24 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +18:37:24 [ 49] [ 3] [418] +18:37:24 [ 52] [ 16] [161030FD2B50E8F9] +18:37:24 ============================================================================ +18:37:24 + + +waiting on router queue for slot.... +18:37:25 Sending to : +18:37:25 ============================================================================ +18:37:25 ============================================================================ +18:37:25 Slot Id : <124> +18:37:25 Transaction Type : REQUEST +18:37:25 Received From : +18:37:25 ============================================================================ +18:37:25 FNo. Len. Field Value +18:37:25 ============================================================================ +18:37:25 [ 1] [ 4] [0200] +18:37:25 [ 2] [ 16] [6213541000632540] +18:37:25 [ 3] [ 6] [011000] +18:37:25 [ 4] [ 12] [000100000000] +18:37:25 [ 7] [ 10] [0320183744] +18:37:25 [ 11] [ 6] [210510] +18:37:25 [ 12] [ 6] [183810] +18:37:25 [ 13] [ 4] [0320] +18:37:25 [ 14] [ 4] [4912] +18:37:25 [ 15] [ 4] [0320] +18:37:25 [ 18] [ 4] [6011] +18:37:25 [ 19] [ 3] [418] +18:37:25 [ 22] [ 3] [021] +18:37:25 [ 25] [ 2] [01] +18:37:25 [ 28] [ 9] [D00002000] +18:37:25 [ 32] [ 6] [198901] +18:37:25 [ 35] [ 32] [6213541000632540=491212013254302] +18:37:25 [ 37] [ 12] [507918210510] +18:37:25 [ 41] [ 8] [01529009] +18:37:25 [ 42] [ 15] [000000041529009] +18:37:25 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +18:37:25 [ 49] [ 3] [418] +18:37:25 [ 52] [ 16] [DDF63D374E5B12D7] +18:37:25 ============================================================================ +18:37:25 + + +waiting on router queue for slot.... +18:37:25 Sending to : <0> +18:37:25 ============================================================================ +18:37:25 ============================================================================ +18:37:25 Slot Id : <124> +18:37:25 Transaction Type : RESPONSE +18:37:25 Received From : +18:37:25 ============================================================================ +18:37:25 FNo. Len. Field Value +18:37:25 ============================================================================ +18:37:25 [ 1] [ 4] [0210] +18:37:25 [ 2] [ 16] [6213541000632540] +18:37:25 [ 3] [ 6] [011000] +18:37:25 [ 4] [ 12] [000100000000] +18:37:25 [ 7] [ 10] [0320183744] +18:37:25 [ 11] [ 6] [210510] +18:37:25 [ 12] [ 6] [183810] +18:37:25 [ 13] [ 4] [0320] +18:37:25 [ 15] [ 4] [0320] +18:37:25 [ 18] [ 4] [6011] +18:37:25 [ 19] [ 3] [418] +18:37:25 [ 32] [ 6] [198901] +18:37:25 [ 35] [ 32] [6213541000632540=491212013254302] +18:37:25 [ 37] [ 12] [507918210510] +18:37:25 [ 38] [ 6] [845466] +18:37:25 [ 39] [ 2] [00] +18:37:25 [ 41] [ 8] [01529009] +18:37:25 [ 49] [ 3] [418] +18:37:25 [ 54] [ 40] [1001418C0009764571201002418C000976457120] +18:37:25 ============================================================================ +18:37:25 Sending to : +18:37:25 ============================================================================ +18:37:25 + + +waiting on router queue for slot.... +18:37:26 ============================================================================ +18:37:26 Slot Id : <124> +18:37:26 Transaction Type : RESPONSE +18:37:26 Received From : +18:37:26 ============================================================================ +18:37:26 FNo. Len. Field Value +18:37:26 ============================================================================ +18:37:26 [ 1] [ 4] [0210] +18:37:26 [ 2] [ 16] [6213541000632540] +18:37:26 [ 3] [ 6] [011000] +18:37:26 [ 4] [ 12] [000100000000] +18:37:26 [ 7] [ 10] [0320183744] +18:37:26 [ 11] [ 6] [210510] +18:37:26 [ 12] [ 6] [183810] +18:37:26 [ 13] [ 4] [0320] +18:37:26 [ 15] [ 4] [0320] +18:37:26 [ 18] [ 4] [6011] +18:37:26 [ 19] [ 3] [418] +18:37:26 [ 32] [ 6] [198901] +18:37:26 [ 35] [ 32] [6213541000632540=491212013254302] +18:37:26 [ 37] [ 12] [507918210510] +18:37:26 [ 38] [ 6] [845466] +18:37:26 [ 39] [ 2] [00] +18:37:26 [ 41] [ 8] [01529009] +18:37:26 [ 49] [ 3] [418] +18:37:26 [ 54] [ 40] [1001418C0009764571201002418C000976457120] +18:37:26 ============================================================================ +18:37:26 Calculate Source COMM Id = 5 +18:37:26 ============================================================================ +18:37:26 + + +waiting on router queue for slot.... +18:37:30 ============================================================================ +18:37:30 Slot Id : <140> +18:37:30 Transaction Type : REQUEST +18:37:30 Received From : +18:37:30 ============================================================================ +18:37:30 FNo. Len. Field Value +18:37:30 ============================================================================ +18:37:30 [ 1] [ 4] [0200] +18:37:30 [ 2] [ 16] [2206990000122853] +18:37:30 [ 3] [ 6] [010000] +18:37:30 [ 4] [ 12] [000030000000] +18:37:30 [ 7] [ 10] [0320183520] +18:37:30 [ 11] [ 6] [954872] +18:37:30 [ 12] [ 6] [183520] +18:37:30 [ 13] [ 4] [0320] +18:37:30 [ 15] [ 4] [0320] +18:37:30 [ 18] [ 4] [6011] +18:37:30 [ 19] [ 3] [418] +18:37:30 [ 22] [ 3] [021] +18:37:30 [ 25] [ 2] [01] +18:37:30 [ 28] [ 9] [D00002000] +18:37:30 [ 32] [ 6] [668899] +18:37:30 [ 35] [ 32] [2206990000122853=980312617796421] +18:37:30 [ 37] [ 12] [507902565320] +18:37:30 [ 41] [ 8] [03001014] +18:37:30 [ 42] [ 15] [APT ] +18:37:30 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +18:37:30 [ 49] [ 3] [418] +18:37:30 [ 52] [ 16] [FF10EB9BD05773C0] +18:37:30 ============================================================================ +18:37:30 + + +waiting on router queue for slot.... +18:37:30 Sending to : +18:37:30 ============================================================================ +18:37:30 Sending to : +18:37:30 ============================================================================ +18:37:31 ============================================================================ +18:37:31 Slot Id : <140> +18:37:31 Transaction Type : REQUEST +18:37:31 Received From : +18:37:31 ============================================================================ +18:37:31 FNo. Len. Field Value +18:37:31 ============================================================================ +18:37:31 [ 1] [ 4] [0200] +18:37:31 [ 2] [ 16] [2206990000122853] +18:37:31 [ 3] [ 6] [010000] +18:37:31 [ 4] [ 12] [000030000000] +18:37:31 [ 7] [ 10] [0320183520] +18:37:31 [ 11] [ 6] [954872] +18:37:31 [ 12] [ 6] [183520] +18:37:31 [ 13] [ 4] [0320] +18:37:31 [ 15] [ 4] [0320] +18:37:31 [ 18] [ 4] [6011] +18:37:31 [ 19] [ 3] [418] +18:37:31 [ 22] [ 3] [021] +18:37:31 [ 25] [ 2] [01] +18:37:31 [ 28] [ 9] [D00002000] +18:37:31 [ 32] [ 6] [668899] +18:37:31 [ 35] [ 32] [2206990000122853=980312617796421] +18:37:31 [ 37] [ 12] [507902565320] +18:37:31 [ 41] [ 8] [03001014] +18:37:31 [ 42] [ 15] [APT ] +18:37:31 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +18:37:31 [ 49] [ 3] [418] +18:37:31 [ 52] [ 16] [FF10EB9BD05773C0] +18:37:31 ============================================================================ +18:37:31 + + +waiting on router queue for slot.... +18:37:31 Sending to : +18:37:31 ============================================================================ +18:37:31 ============================================================================ +18:37:31 Slot Id : <140> +18:37:31 Transaction Type : REQUEST +18:37:31 Received From : +18:37:31 ============================================================================ +18:37:31 FNo. Len. Field Value +18:37:31 ============================================================================ +18:37:31 [ 1] [ 4] [0200] +18:37:31 [ 2] [ 16] [2206990000122853] +18:37:31 [ 3] [ 6] [010000] +18:37:31 [ 4] [ 12] [000030000000] +18:37:31 [ 7] [ 10] [0320183520] +18:37:31 [ 11] [ 6] [954872] +18:37:31 [ 12] [ 6] [183520] +18:37:31 [ 13] [ 4] [0320] +18:37:31 [ 15] [ 4] [0320] +18:37:31 [ 18] [ 4] [6011] +18:37:31 [ 19] [ 3] [418] +18:37:31 [ 22] [ 3] [021] +18:37:31 [ 25] [ 2] [01] +18:37:31 [ 28] [ 9] [D00002000] +18:37:31 [ 32] [ 6] [668899] +18:37:31 [ 35] [ 32] [2206990000122853=980312617796421] +18:37:31 [ 37] [ 12] [507902565320] +18:37:31 [ 41] [ 8] [03001014] +18:37:31 [ 42] [ 15] [APT ] +18:37:31 [ 43] [ 40] [ LAK21 SOUKSALA KOKESIVILA] +18:37:31 [ 49] [ 3] [418] +18:37:31 [ 52] [ 16] [D96379A315C19785] +18:37:31 ============================================================================ +18:37:31 + + +waiting on router queue for slot.... +18:37:31 Sending to : <1> +18:37:31 ============================================================================ +18:37:33 ============================================================================ +18:37:33 Slot Id : <140> +18:37:33 Transaction Type : RESPONSE +18:37:33 Received From : +18:37:33 ============================================================================ +18:37:33 FNo. Len. Field Value +18:37:33 ============================================================================ +18:37:33 [ 1] [ 4] [0210] +18:37:33 [ 2] [ 16] [2206990000122853] +18:37:33 [ 3] [ 6] [010000] +18:37:33 [ 4] [ 12] [000030000000] +18:37:33 [ 7] [ 10] [0320183520] +18:37:33 [ 11] [ 6] [954872] +18:37:33 [ 12] [ 6] [183520] +18:37:33 [ 13] [ 4] [0320] +18:37:33 [ 15] [ 4] [0320] +18:37:33 [ 18] [ 4] [6011] +18:37:33 [ 32] [ 6] [668899] +18:37:33 [ 35] [ 32] [2206990000122853=980312617796421] +18:37:33 [ 37] [ 12] [507902565320] +18:37:33 [ 38] [ 6] [129217] +18:37:33 [ 39] [ 2] [00] +18:37:33 [ 41] [ 8] [03001014] +18:37:33 [ 49] [ 3] [418] +18:37:33 [ 54] [ 40] [0001418C0003730038000002418C000373003800] +18:37:33 ============================================================================ +18:37:33 Sending to : +18:37:33 ============================================================================ +18:37:33 + + +waiting on router queue for slot.... +18:37:34 ============================================================================ +18:37:34 Slot Id : <80> +18:37:34 Transaction Type : REQUEST +18:37:34 Received From : +18:37:34 ============================================================================ +18:37:34 FNo. Len. Field Value +18:37:34 ============================================================================ +18:37:34 [ 1] [ 4] [0800] +18:37:34 [ 7] [ 10] [0320113641] +18:37:34 [ 11] [ 6] [157744] +18:37:34 [ 70] [ 3] [301] +18:37:34 ============================================================================ +18:37:34 + + +waiting on router queue for slot.... +18:37:34 Sending to : +18:37:34 ============================================================================ +18:37:34 ============================================================================ +18:37:34 Slot Id : <80> +18:37:34 Transaction Type : RESPONSE +18:37:34 Received From : +18:37:34 ============================================================================ +18:37:34 FNo. Len. Field Value +18:37:34 ============================================================================ +18:37:34 [ 1] [ 4] [0810] +18:37:34 [ 7] [ 10] [0320113641] +18:37:34 [ 11] [ 6] [157744] +18:37:34 [ 39] [ 2] [00] +18:37:34 [ 70] [ 3] [301] +18:37:34 ============================================================================ +18:37:34 Calculate Source COMM Id = 2 +18:37:34 ============================================================================ +18:37:34 + + +waiting on router queue for slot.... +18:37:35 ============================================================================ +18:37:35 Slot Id : <140> +18:37:35 Transaction Type : RESPONSE +18:37:35 Received From : +18:37:35 ============================================================================ +18:37:35 FNo. Len. Field Value +18:37:35 ============================================================================ +18:37:35 [ 1] [ 4] [0210] +18:37:35 [ 2] [ 16] [2206990000122853] +18:37:35 [ 3] [ 6] [010000] +18:37:35 [ 4] [ 12] [000030000000] +18:37:35 [ 7] [ 10] [0320183520] +18:37:35 [ 11] [ 6] [954872] +18:37:35 [ 12] [ 6] [183520] +18:37:35 [ 13] [ 4] [0320] +18:37:35 [ 15] [ 4] [0320] +18:37:35 [ 18] [ 4] [6011] +18:37:35 [ 32] [ 6] [668899] +18:37:35 [ 35] [ 32] [2206990000122853=980312617796421] +18:37:35 [ 37] [ 12] [507902565320] +18:37:35 [ 38] [ 6] [129217] +18:37:35 [ 39] [ 2] [00] +18:37:35 [ 41] [ 8] [03001014] +18:37:35 [ 49] [ 3] [418] +18:37:35 [ 54] [ 40] [0001418C0003730038000002418C000373003800] +18:37:35 ============================================================================ +18:37:35 Calculate Source COMM Id = 4 +18:37:35 ============================================================================ +18:37:35 + + +waiting on router queue for slot.... +18:37:39 ============================================================================ +18:37:39 Slot Id : <147> +18:37:39 Transaction Type : REQUEST +18:37:39 Received From : +18:37:39 ============================================================================ +18:37:39 FNo. Len. Field Value +18:37:39 ============================================================================ +18:37:39 [ 1] [ 4] [0200] +18:37:39 [ 2] [ 16] [1808930400012498] +18:37:39 [ 3] [ 6] [010000] +18:37:39 [ 4] [ 12] [000100000000] +18:37:39 [ 7] [ 10] [0320183734] +18:37:39 [ 11] [ 6] [829182] +18:37:39 [ 12] [ 6] [183734] +18:37:39 [ 13] [ 4] [0320] +18:37:39 [ 15] [ 4] [0320] +18:37:39 [ 18] [ 4] [6011] +18:37:39 [ 22] [ 3] [900] +18:37:39 [ 25] [ 2] [02] +18:37:39 [ 28] [ 9] [D00002000] +18:37:39 [ 32] [ 6] [621354] +18:37:39 [ 35] [ 27] [1808930400012498=1803500459] +18:37:39 [ 37] [ 12] [507904460742] +18:37:39 [ 41] [ 8] [15000800] +18:37:39 [ 42] [ 15] [NATIVE ] +18:37:39 [ 43] [ 40] [Talat Indochina BKX Pakson LAO] +18:37:39 [ 49] [ 3] [418] +18:37:39 [ 52] [ 16] [EA7CCF23E9732830] +18:37:39 ============================================================================ +18:37:39 + + +waiting on router queue for slot.... +18:37:39 Sending to : +18:37:39 ============================================================================ +18:37:39 Sending to : +18:37:39 ============================================================================ +18:37:40 ============================================================================ +18:37:40 Slot Id : <147> +18:37:40 Transaction Type : REQUEST +18:37:40 Received From : +18:37:40 ============================================================================ +18:37:40 FNo. Len. Field Value +18:37:40 ============================================================================ +18:37:40 [ 1] [ 4] [0200] +18:37:40 [ 2] [ 16] [1808930400012498] +18:37:40 [ 3] [ 6] [010000] +18:37:40 [ 4] [ 12] [000100000000] +18:37:40 [ 7] [ 10] [0320183734] +18:37:40 [ 11] [ 6] [829182] +18:37:40 [ 12] [ 6] [183734] +18:37:40 [ 13] [ 4] [0320] +18:37:40 [ 15] [ 4] [0320] +18:37:40 [ 18] [ 4] [6011] +18:37:40 [ 22] [ 3] [900] +18:37:40 [ 25] [ 2] [02] +18:37:40 [ 28] [ 9] [D00002000] +18:37:40 [ 32] [ 6] [621354] +18:37:40 [ 35] [ 27] [1808930400012498=1803500459] +18:37:40 [ 37] [ 12] [507904460742] +18:37:40 [ 41] [ 8] [15000800] +18:37:40 [ 42] [ 15] [NATIVE ] +18:37:40 [ 43] [ 40] [Talat Indochina BKX Pakson LAO] +18:37:40 [ 49] [ 3] [418] +18:37:40 [ 52] [ 16] [EA7CCF23E9732830] +18:37:40 ============================================================================ +18:37:40 + + +waiting on router queue for slot.... +18:37:40 Sending to : +18:37:40 ============================================================================ +18:37:40 ============================================================================ +18:37:40 Slot Id : <147> +18:37:40 Transaction Type : REQUEST +18:37:40 Received From : +18:37:40 ============================================================================ +18:37:40 FNo. Len. Field Value +18:37:40 ============================================================================ +18:37:40 [ 1] [ 4] [0200] +18:37:40 [ 2] [ 16] [1808930400012498] +18:37:40 [ 3] [ 6] [010000] +18:37:40 [ 4] [ 12] [000100000000] +18:37:40 [ 7] [ 10] [0320183734] +18:37:40 [ 11] [ 6] [829182] +18:37:40 [ 12] [ 6] [183734] +18:37:40 [ 13] [ 4] [0320] +18:37:40 [ 15] [ 4] [0320] +18:37:40 [ 18] [ 4] [6011] +18:37:40 [ 22] [ 3] [900] +18:37:40 [ 25] [ 2] [02] +18:37:40 [ 28] [ 9] [D00002000] +18:37:40 [ 32] [ 6] [621354] +18:37:40 [ 35] [ 27] [1808930400012498=1803500459] +18:37:40 [ 37] [ 12] [507904460742] +18:37:40 [ 41] [ 8] [15000800] +18:37:40 [ 42] [ 15] [NATIVE ] +18:37:40 [ 43] [ 40] [Talat Indochina BKX Pakson LAO] +18:37:40 [ 49] [ 3] [418] +18:37:40 [ 52] [ 16] [2A3ADE202E720A87] +18:37:40 ============================================================================ +18:37:40 + + +waiting on router queue for slot.... +18:37:40 Sending to : <2> +18:37:40 ============================================================================ +18:37:41 ============================================================================ +18:37:41 Slot Id : <123> +18:37:41 Transaction Type : REQUEST +18:37:41 Received From : +18:37:41 ============================================================================ +18:37:41 FNo. Len. Field Value +18:37:41 ============================================================================ +18:37:41 [ 1] [ 4] [0800] +18:37:41 [ 2] [ 5] [02531] +18:37:41 [ 3] [ 6] [579188] +18:37:41 [ 7] [ 10] [0320113741] +18:37:41 [ 11] [ 6] [807493] +18:37:41 [ 15] [ 10] [0320113741] +18:37:41 [ 37] [ 11] [57918807493] +18:37:41 [ 70] [ 3] [001] +18:37:41 ============================================================================ +18:37:41 + + +waiting on router queue for slot.... +18:37:41 ============================================================================ +18:37:41 Slot Id : <123> +18:37:41 Transaction Type : RESPONSE +18:37:41 Received From : +18:37:41 ============================================================================ +18:37:41 FNo. Len. Field Value +18:37:41 ============================================================================ +18:37:41 [ 1] [ 4] [0810] +18:37:41 [ 7] [ 10] [0320113741] +18:37:41 [ 11] [ 6] [807493] +18:37:41 [ 15] [ 4] [0320] +18:37:41 [ 37] [ 12] [57918807493] +18:37:41 [ 39] [ 2] [00] +18:37:41 [ 70] [ 3] [001] +18:37:41 ============================================================================ +18:37:41 Sending to : +18:37:41 ============================================================================ +18:37:41 + + +waiting on router queue for slot.... +18:37:44 ============================================================================ +18:37:44 Slot Id : <147> +18:37:44 Transaction Type : RESPONSE +18:37:44 Received From : +18:37:44 ============================================================================ +18:37:44 FNo. Len. Field Value +18:37:44 ============================================================================ +18:37:44 [ 1] [ 4] [0210] +18:37:44 [ 2] [ 16] [1808930400012498] +18:37:44 [ 3] [ 6] [010000] +18:37:44 [ 4] [ 12] [000100000000] +18:37:44 [ 6] [ 12] [000100000000] +18:37:44 [ 7] [ 10] [0320183734] +18:37:44 [ 11] [ 6] [829182] +18:37:44 [ 12] [ 6] [183734] +18:37:44 [ 13] [ 4] [0320] +18:37:44 [ 18] [ 4] [6011] +18:37:44 [ 19] [ 3] [418] +18:37:44 [ 22] [ 3] [021] +18:37:44 [ 32] [ 6] [621354] +18:37:44 [ 35] [ 27] [1808930400012498=1803500459] +18:37:44 [ 37] [ 12] [507904460742] +18:37:44 [ 38] [ 6] [829182] +18:37:44 [ 39] [ 2] [00] +18:37:44 [ 41] [ 8] [15000800] +18:37:44 [ 49] [ 3] [418] +18:37:44 [ 52] [ 16] [2A3ADE202E720A87] +18:37:44 [ 54] [ 20] [1001418C000004103700] +18:37:44 ============================================================================ +18:37:44 Sending to : +18:37:44 ============================================================================ +18:37:44 + + +waiting on router queue for slot.... +18:37:46 ============================================================================ +18:37:46 Slot Id : <147> +18:37:46 Transaction Type : RESPONSE +18:37:46 Received From : +18:37:46 ============================================================================ +18:37:46 FNo. Len. Field Value +18:37:46 ============================================================================ +18:37:46 [ 1] [ 4] [0210] +18:37:46 [ 2] [ 16] [1808930400012498] +18:37:46 [ 3] [ 6] [010000] +18:37:46 [ 4] [ 12] [000100000000] +18:37:46 [ 6] [ 12] [000100000000] +18:37:46 [ 7] [ 10] [0320183734] +18:37:46 [ 11] [ 6] [829182] +18:37:46 [ 12] [ 6] [183734] +18:37:46 [ 13] [ 4] [0320] +18:37:46 [ 18] [ 4] [6011] +18:37:46 [ 19] [ 3] [418] +18:37:46 [ 22] [ 3] [021] +18:37:46 [ 32] [ 6] [621354] +18:37:46 [ 35] [ 27] [1808930400012498=1803500459] +18:37:46 [ 37] [ 12] [507904460742] +18:37:46 [ 38] [ 6] [829182] +18:37:46 [ 39] [ 2] [00] +18:37:46 [ 41] [ 8] [15000800] +18:37:46 [ 49] [ 3] [418] +18:37:46 [ 52] [ 16] [2A3ADE202E720A87] +18:37:46 [ 54] [ 20] [1001418C000004103700] +18:37:46 ============================================================================ +18:37:46 Calculate Source COMM Id = 0 +18:37:46 ============================================================================ +18:37:46 + + +waiting on router queue for slot.... +18:37:47 ============================================================================ +18:37:47 Slot Id : <117> +18:37:47 Transaction Type : REQUEST +18:37:47 Received From : +18:37:47 ============================================================================ +18:37:47 FNo. Len. Field Value +18:37:47 ============================================================================ +18:37:47 [ 1] [ 4] [0200] +18:37:47 [ 2] [ 16] [1808931800011569] +18:37:47 [ 3] [ 6] [301000] +18:37:47 [ 4] [ 12] [000000000000] +18:37:47 [ 7] [ 10] [0320183742] +18:37:47 [ 11] [ 6] [829207] +18:37:47 [ 12] [ 6] [183742] +18:37:47 [ 13] [ 4] [0320] +18:37:47 [ 15] [ 4] [0320] +18:37:47 [ 18] [ 4] [6011] +18:37:47 [ 22] [ 3] [900] +18:37:47 [ 25] [ 2] [02] +18:37:47 [ 28] [ 9] [D00000000] +18:37:47 [ 32] [ 6] [621354] +18:37:47 [ 35] [ 27] [1808931800011569=1803500210] +18:37:47 [ 37] [ 12] [507904635984] +18:37:47 [ 41] [ 8] [17000800] +18:37:47 [ 42] [ 15] [NATIVE ] +18:37:47 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:37:47 [ 49] [ 3] [418] +18:37:47 [ 52] [ 16] [21F0114423871442] +18:37:47 ============================================================================ +18:37:47 + + +waiting on router queue for slot.... +18:37:47 Sending to : +18:37:47 ============================================================================ +18:37:47 Sending to : +18:37:47 ============================================================================ +18:37:48 ============================================================================ +18:37:48 Slot Id : <117> +18:37:48 Transaction Type : REQUEST +18:37:48 Received From : +18:37:48 ============================================================================ +18:37:48 FNo. Len. Field Value +18:37:48 ============================================================================ +18:37:48 [ 1] [ 4] [0200] +18:37:48 [ 2] [ 16] [1808931800011569] +18:37:48 [ 3] [ 6] [301000] +18:37:48 [ 4] [ 12] [000000000000] +18:37:48 [ 7] [ 10] [0320183742] +18:37:48 [ 11] [ 6] [829207] +18:37:48 [ 12] [ 6] [183742] +18:37:48 [ 13] [ 4] [0320] +18:37:48 [ 15] [ 4] [0320] +18:37:48 [ 18] [ 4] [6011] +18:37:48 [ 22] [ 3] [900] +18:37:48 [ 25] [ 2] [02] +18:37:48 [ 28] [ 9] [D00000000] +18:37:48 [ 32] [ 6] [621354] +18:37:48 [ 35] [ 27] [1808931800011569=1803500210] +18:37:48 [ 37] [ 12] [507904635984] +18:37:48 [ 41] [ 8] [17000800] +18:37:48 [ 42] [ 15] [NATIVE ] +18:37:48 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:37:48 [ 49] [ 3] [418] +18:37:48 [ 52] [ 16] [21F0114423871442] +18:37:48 ============================================================================ +18:37:48 + + +waiting on router queue for slot.... +18:37:48 Sending to : +18:37:48 ============================================================================ +18:37:48 ============================================================================ +18:37:48 Slot Id : <117> +18:37:48 Transaction Type : REQUEST +18:37:48 Received From : +18:37:48 ============================================================================ +18:37:48 FNo. Len. Field Value +18:37:48 ============================================================================ +18:37:48 [ 1] [ 4] [0200] +18:37:48 [ 2] [ 16] [1808931800011569] +18:37:48 [ 3] [ 6] [301000] +18:37:48 [ 4] [ 12] [000000000000] +18:37:48 [ 7] [ 10] [0320183742] +18:37:48 [ 11] [ 6] [829207] +18:37:48 [ 12] [ 6] [183742] +18:37:48 [ 13] [ 4] [0320] +18:37:48 [ 15] [ 4] [0320] +18:37:48 [ 18] [ 4] [6011] +18:37:48 [ 22] [ 3] [900] +18:37:48 [ 25] [ 2] [02] +18:37:48 [ 28] [ 9] [D00000000] +18:37:48 [ 32] [ 6] [621354] +18:37:48 [ 35] [ 27] [1808931800011569=1803500210] +18:37:48 [ 37] [ 12] [507904635984] +18:37:48 [ 41] [ 8] [17000800] +18:37:48 [ 42] [ 15] [NATIVE ] +18:37:48 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:37:48 [ 49] [ 3] [418] +18:37:48 [ 52] [ 16] [274F36639EDC9908] +18:37:48 ============================================================================ +18:37:48 + + +waiting on router queue for slot.... +18:37:48 Sending to : <2> +18:37:48 ============================================================================ +18:37:49 ============================================================================ +18:37:49 Slot Id : <132> +18:37:49 Transaction Type : REQUEST +18:37:49 Received From : +18:37:49 ============================================================================ +18:37:49 FNo. Len. Field Value +18:37:49 ============================================================================ +18:37:49 [ 1] [ 4] [0200] +18:37:49 [ 2] [ 16] [6688990103257208] +18:37:49 [ 3] [ 6] [010000] +18:37:49 [ 4] [ 12] [000040000000] +18:37:49 [ 7] [ 10] [0320183744] +18:37:49 [ 11] [ 6] [829214] +18:37:49 [ 12] [ 6] [183744] +18:37:49 [ 13] [ 4] [0320] +18:37:49 [ 15] [ 4] [0320] +18:37:49 [ 18] [ 4] [6011] +18:37:49 [ 22] [ 3] [900] +18:37:49 [ 25] [ 2] [02] +18:37:49 [ 28] [ 9] [D00002000] +18:37:49 [ 32] [ 6] [621354] +18:37:49 [ 35] [ 37] [6688990103257208=42121231720899300000] +18:37:49 [ 37] [ 12] [507903499711] +18:37:49 [ 41] [ 8] [06002200] +18:37:49 [ 42] [ 15] [NATIVE ] +18:37:49 [ 43] [ 40] [Beng Market Beng LAO] +18:37:49 [ 49] [ 3] [418] +18:37:49 [ 52] [ 16] [12A891FD63026465] +18:37:49 ============================================================================ +18:37:49 + + +waiting on router queue for slot.... +18:37:49 Sending to : +18:37:49 ============================================================================ +18:37:49 Sending to : +18:37:49 ============================================================================ +18:37:49 ============================================================================ +18:37:49 Slot Id : <132> +18:37:49 Transaction Type : REQUEST +18:37:49 Received From : +18:37:49 ============================================================================ +18:37:49 FNo. Len. Field Value +18:37:49 ============================================================================ +18:37:49 [ 1] [ 4] [0200] +18:37:49 [ 2] [ 16] [6688990103257208] +18:37:49 [ 3] [ 6] [010000] +18:37:49 [ 4] [ 12] [000040000000] +18:37:49 [ 7] [ 10] [0320183744] +18:37:49 [ 11] [ 6] [829214] +18:37:49 [ 12] [ 6] [183744] +18:37:49 [ 13] [ 4] [0320] +18:37:49 [ 15] [ 4] [0320] +18:37:49 [ 18] [ 4] [6011] +18:37:49 [ 22] [ 3] [900] +18:37:49 [ 25] [ 2] [02] +18:37:49 [ 28] [ 9] [D00002000] +18:37:49 [ 32] [ 6] [621354] +18:37:49 [ 35] [ 37] [6688990103257208=42121231720899300000] +18:37:49 [ 37] [ 12] [507903499711] +18:37:49 [ 41] [ 8] [06002200] +18:37:49 [ 42] [ 15] [NATIVE ] +18:37:49 [ 43] [ 40] [Beng Market Beng LAO] +18:37:49 [ 49] [ 3] [418] +18:37:49 [ 52] [ 16] [12A891FD63026465] +18:37:49 ============================================================================ +18:37:49 + + +waiting on router queue for slot.... +18:37:49 Sending to : +18:37:49 ============================================================================ +18:37:49 ============================================================================ +18:37:49 Slot Id : <132> +18:37:49 Transaction Type : REQUEST +18:37:49 Received From : +18:37:49 ============================================================================ +18:37:49 FNo. Len. Field Value +18:37:49 ============================================================================ +18:37:49 [ 1] [ 4] [0200] +18:37:49 [ 2] [ 16] [6688990103257208] +18:37:49 [ 3] [ 6] [010000] +18:37:49 [ 4] [ 12] [000040000000] +18:37:49 [ 7] [ 10] [0320183744] +18:37:49 [ 11] [ 6] [829214] +18:37:49 [ 12] [ 6] [183744] +18:37:49 [ 13] [ 4] [0320] +18:37:49 [ 15] [ 4] [0320] +18:37:49 [ 18] [ 4] [6011] +18:37:49 [ 22] [ 3] [900] +18:37:49 [ 25] [ 2] [02] +18:37:49 [ 28] [ 9] [D00002000] +18:37:49 [ 32] [ 6] [621354] +18:37:49 [ 35] [ 37] [6688990103257208=42121231720899300000] +18:37:49 [ 37] [ 12] [507903499711] +18:37:49 [ 41] [ 8] [06002200] +18:37:49 [ 42] [ 15] [NATIVE ] +18:37:49 [ 43] [ 40] [Beng Market Beng LAO] +18:37:49 [ 49] [ 3] [418] +18:37:49 [ 52] [ 16] [5911BE405B5F7241] +18:37:49 ============================================================================ +18:37:49 + + +waiting on router queue for slot.... +18:37:49 Sending to : <4> +18:37:49 ============================================================================ +18:37:50 ============================================================================ +18:37:50 Slot Id : <117> +18:37:50 Transaction Type : RESPONSE +18:37:50 Received From : +18:37:50 ============================================================================ +18:37:50 FNo. Len. Field Value +18:37:50 ============================================================================ +18:37:50 [ 1] [ 4] [0210] +18:37:50 [ 2] [ 16] [1808931800011569] +18:37:50 [ 3] [ 6] [301000] +18:37:50 [ 7] [ 10] [0320183742] +18:37:50 [ 11] [ 6] [829207] +18:37:50 [ 12] [ 6] [183742] +18:37:50 [ 13] [ 4] [0320] +18:37:50 [ 14] [ 4] [1803] +18:37:50 [ 19] [ 3] [418] +18:37:50 [ 32] [ 6] [621354] +18:37:50 [ 37] [ 12] [507904635984] +18:37:50 [ 39] [ 2] [55] +18:37:50 [ 41] [ 8] [17000800] +18:37:50 [ 49] [ 3] [418] +18:37:50 [ 52] [ 16] [274F36639EDC9908] +18:37:50 ============================================================================ +18:37:50 Sending to : +18:37:50 ============================================================================ +18:37:50 + + +waiting on router queue for slot.... +18:37:50 ============================================================================ +18:37:50 Slot Id : <132> +18:37:50 Transaction Type : RESPONSE +18:37:50 Received From : +18:37:50 ============================================================================ +18:37:50 FNo. Len. Field Value +18:37:50 ============================================================================ +18:37:50 [ 1] [ 4] [0210] +18:37:50 [ 2] [ 16] [6688990103257208] +18:37:50 [ 3] [ 6] [010000] +18:37:50 [ 4] [ 12] [000040000000] +18:37:50 [ 11] [ 6] [829214] +18:37:50 [ 12] [ 6] [183744] +18:37:50 [ 15] [ 4] [0320] +18:37:50 [ 18] [ 4] [6011] +18:37:50 [ 32] [ 6] [621354] +18:37:50 [ 35] [ 37] [6688990103257208=42121231720899300000] +18:37:50 [ 37] [ 12] [507903499711] +18:37:50 [ 38] [ 6] [099558] +18:37:50 [ 39] [ 2] [00] +18:37:50 [ 41] [ 8] [06002200] +18:37:50 [ 49] [ 3] [418] +18:37:50 [ 54] [ 20] [0002418C000056670474] +18:37:50 ============================================================================ +18:37:50 Sending to : +18:37:50 ============================================================================ +18:37:50 + + +waiting on router queue for slot.... +18:37:51 ============================================================================ +18:37:51 Slot Id : <117> +18:37:51 Transaction Type : RESPONSE +18:37:51 Received From : +18:37:51 ============================================================================ +18:37:51 FNo. Len. Field Value +18:37:51 ============================================================================ +18:37:51 [ 1] [ 4] [0210] +18:37:51 [ 2] [ 16] [1808931800011569] +18:37:51 [ 3] [ 6] [301000] +18:37:51 [ 7] [ 10] [0320183742] +18:37:51 [ 11] [ 6] [829207] +18:37:51 [ 12] [ 6] [183742] +18:37:51 [ 13] [ 4] [0320] +18:37:51 [ 14] [ 4] [1803] +18:37:51 [ 19] [ 3] [418] +18:37:51 [ 32] [ 6] [621354] +18:37:51 [ 37] [ 12] [507904635984] +18:37:51 [ 39] [ 2] [55] +18:37:51 [ 41] [ 8] [17000800] +18:37:51 [ 49] [ 3] [418] +18:37:51 [ 52] [ 16] [274F36639EDC9908] +18:37:51 ============================================================================ +18:37:51 Calculate Source COMM Id = 0 +18:37:51 ============================================================================ +18:37:51 + + +waiting on router queue for slot.... +18:37:52 ============================================================================ +18:37:52 Slot Id : <132> +18:37:52 Transaction Type : RESPONSE +18:37:52 Received From : +18:37:52 ============================================================================ +18:37:52 FNo. Len. Field Value +18:37:52 ============================================================================ +18:37:52 [ 1] [ 4] [0210] +18:37:52 [ 2] [ 16] [6688990103257208] +18:37:52 [ 3] [ 6] [010000] +18:37:52 [ 4] [ 12] [000040000000] +18:37:52 [ 11] [ 6] [829214] +18:37:52 [ 12] [ 6] [183744] +18:37:52 [ 15] [ 4] [0320] +18:37:52 [ 18] [ 4] [6011] +18:37:52 [ 32] [ 6] [621354] +18:37:52 [ 35] [ 37] [6688990103257208=42121231720899300000] +18:37:52 [ 37] [ 12] [507903499711] +18:37:52 [ 38] [ 6] [099558] +18:37:52 [ 39] [ 2] [00] +18:37:52 [ 41] [ 8] [06002200] +18:37:52 [ 49] [ 3] [418] +18:37:52 [ 54] [ 20] [0002418C000056670474] +18:37:52 ============================================================================ +18:37:52 Calculate Source COMM Id = 0 +18:37:52 ============================================================================ +18:37:52 + + +waiting on router queue for slot.... +18:37:57 ============================================================================ +18:37:57 Slot Id : <162> +18:37:57 Transaction Type : REQUEST +18:37:57 Received From : +18:37:57 ============================================================================ +18:37:57 FNo. Len. Field Value +18:37:57 ============================================================================ +18:37:57 [ 1] [ 4] [0200] +18:37:57 [ 2] [ 16] [6688990700331307] +18:37:57 [ 3] [ 6] [300000] +18:37:57 [ 4] [ 12] [000000000000] +18:37:57 [ 7] [ 10] [0320183752] +18:37:57 [ 11] [ 6] [829239] +18:37:57 [ 12] [ 6] [183752] +18:37:57 [ 13] [ 4] [0320] +18:37:57 [ 15] [ 4] [0320] +18:37:57 [ 18] [ 4] [6011] +18:37:57 [ 22] [ 3] [900] +18:37:57 [ 25] [ 2] [02] +18:37:57 [ 28] [ 9] [D00000000] +18:37:57 [ 32] [ 6] [621354] +18:37:57 [ 35] [ 37] [6688990700331307=44060071130724300000] +18:37:57 [ 37] [ 12] [507903863765] +18:37:57 [ 41] [ 8] [01010200] +18:37:57 [ 42] [ 15] [NATIVE ] +18:37:57 [ 43] [ 40] [Thangone Market Xaythany LAO] +18:37:57 [ 49] [ 3] [418] +18:37:57 [ 52] [ 16] [283DC3BABB4535E9] +18:37:57 ============================================================================ +18:37:57 + + +waiting on router queue for slot.... +18:37:57 Sending to : +18:37:57 ============================================================================ +18:37:57 Sending to : +18:37:57 ============================================================================ +18:37:57 ============================================================================ +18:37:57 Slot Id : <162> +18:37:57 Transaction Type : REQUEST +18:37:57 Received From : +18:37:57 ============================================================================ +18:37:57 FNo. Len. Field Value +18:37:57 ============================================================================ +18:37:57 [ 1] [ 4] [0200] +18:37:57 [ 2] [ 16] [6688990700331307] +18:37:57 [ 3] [ 6] [300000] +18:37:57 [ 4] [ 12] [000000000000] +18:37:57 [ 7] [ 10] [0320183752] +18:37:57 [ 11] [ 6] [829239] +18:37:57 [ 12] [ 6] [183752] +18:37:57 [ 13] [ 4] [0320] +18:37:57 [ 15] [ 4] [0320] +18:37:57 [ 18] [ 4] [6011] +18:37:57 [ 22] [ 3] [900] +18:37:57 [ 25] [ 2] [02] +18:37:57 [ 28] [ 9] [D00000000] +18:37:57 [ 32] [ 6] [621354] +18:37:57 [ 35] [ 37] [6688990700331307=44060071130724300000] +18:37:57 [ 37] [ 12] [507903863765] +18:37:57 [ 41] [ 8] [01010200] +18:37:57 [ 42] [ 15] [NATIVE ] +18:37:57 [ 43] [ 40] [Thangone Market Xaythany LAO] +18:37:57 [ 49] [ 3] [418] +18:37:57 [ 52] [ 16] [283DC3BABB4535E9] +18:37:57 ============================================================================ +18:37:57 + + +waiting on router queue for slot.... +18:37:57 Sending to : +18:37:57 ============================================================================ +18:37:57 ============================================================================ +18:37:57 Slot Id : <162> +18:37:57 Transaction Type : REQUEST +18:37:57 Received From : +18:37:57 ============================================================================ +18:37:57 FNo. Len. Field Value +18:37:57 ============================================================================ +18:37:57 [ 1] [ 4] [0200] +18:37:57 [ 2] [ 16] [6688990700331307] +18:37:57 [ 3] [ 6] [300000] +18:37:57 [ 4] [ 12] [000000000000] +18:37:57 [ 7] [ 10] [0320183752] +18:37:57 [ 11] [ 6] [829239] +18:37:57 [ 12] [ 6] [183752] +18:37:57 [ 13] [ 4] [0320] +18:37:57 [ 15] [ 4] [0320] +18:37:57 [ 18] [ 4] [6011] +18:37:57 [ 22] [ 3] [900] +18:37:57 [ 25] [ 2] [02] +18:37:57 [ 28] [ 9] [D00000000] +18:37:57 [ 32] [ 6] [621354] +18:37:57 [ 35] [ 37] [6688990700331307=44060071130724300000] +18:37:57 [ 37] [ 12] [507903863765] +18:37:57 [ 41] [ 8] [01010200] +18:37:57 [ 42] [ 15] [NATIVE ] +18:37:57 [ 43] [ 40] [Thangone Market Xaythany LAO] +18:37:57 [ 49] [ 3] [418] +18:37:57 [ 52] [ 16] [4A7E46A26902F98F] +18:37:57 ============================================================================ +18:37:57 + + +waiting on router queue for slot.... +18:37:57 Sending to : <4> +18:37:57 ============================================================================ +18:37:58 ============================================================================ +18:37:58 Slot Id : <162> +18:37:58 Transaction Type : RESPONSE +18:37:58 Received From : +18:37:58 ============================================================================ +18:37:58 FNo. Len. Field Value +18:37:58 ============================================================================ +18:37:58 [ 1] [ 4] [0210] +18:37:58 [ 2] [ 16] [6688990700331307] +18:37:58 [ 3] [ 6] [300000] +18:37:58 [ 4] [ 12] [000000000000] +18:37:58 [ 11] [ 6] [829239] +18:37:58 [ 12] [ 6] [183752] +18:37:58 [ 15] [ 4] [0320] +18:37:58 [ 18] [ 4] [6011] +18:37:58 [ 32] [ 6] [621354] +18:37:58 [ 35] [ 37] [6688990700331307=44060071130724300000] +18:37:58 [ 37] [ 12] [507903863765] +18:37:58 [ 38] [ 6] [102153] +18:37:58 [ 39] [ 2] [00] +18:37:58 [ 41] [ 8] [01010200] +18:37:58 [ 49] [ 3] [418] +18:37:58 [ 54] [ 20] [0002418C000047547675] +18:37:58 ============================================================================ +18:37:58 Sending to : +18:37:58 ============================================================================ +18:37:58 + + +waiting on router queue for slot.... +18:37:59 ============================================================================ +18:37:59 Slot Id : <122> +18:37:59 Transaction Type : REQUEST +18:37:59 Received From : +18:37:59 ============================================================================ +18:37:59 FNo. Len. Field Value +18:37:59 ============================================================================ +18:37:59 [ 1] [ 4] [0800] +18:37:59 [ 7] [ 10] [0321014947] +18:37:59 [ 11] [ 6] [184947] +18:37:59 [ 37] [ 12] [57918184947] +18:37:59 [ 70] [ 3] [301] +18:37:59 ============================================================================ +18:37:59 + + +waiting on router queue for slot.... +18:37:59 Sending to : +18:37:59 ============================================================================ +18:37:59 ============================================================================ +18:37:59 Slot Id : <122> +18:37:59 Transaction Type : RESPONSE +18:37:59 Received From : +18:37:59 ============================================================================ +18:37:59 FNo. Len. Field Value +18:37:59 ============================================================================ +18:37:59 [ 1] [ 4] [0810] +18:37:59 [ 7] [ 10] [0321014947] +18:37:59 [ 11] [ 6] [184947] +18:37:59 [ 37] [ 12] [579181849470] +18:37:59 [ 39] [ 2] [00] +18:37:59 [ 70] [ 3] [810] +18:37:59 ============================================================================ +18:37:59 Calculate Source COMM Id = 6 +18:37:59 ============================================================================ +18:37:59 + + +waiting on router queue for slot.... +18:37:59 ============================================================================ +18:37:59 Slot Id : <162> +18:37:59 Transaction Type : RESPONSE +18:37:59 Received From : +18:37:59 ============================================================================ +18:37:59 FNo. Len. Field Value +18:37:59 ============================================================================ +18:37:59 [ 1] [ 4] [0210] +18:37:59 [ 2] [ 16] [6688990700331307] +18:37:59 [ 3] [ 6] [300000] +18:37:59 [ 4] [ 12] [000000000000] +18:37:59 [ 11] [ 6] [829239] +18:37:59 [ 12] [ 6] [183752] +18:37:59 [ 15] [ 4] [0320] +18:37:59 [ 18] [ 4] [6011] +18:37:59 [ 32] [ 6] [621354] +18:37:59 [ 35] [ 37] [6688990700331307=44060071130724300000] +18:37:59 [ 37] [ 12] [507903863765] +18:37:59 [ 38] [ 6] [102153] +18:37:59 [ 39] [ 2] [00] +18:37:59 [ 41] [ 8] [01010200] +18:37:59 [ 49] [ 3] [418] +18:37:59 [ 54] [ 20] [0002418C000047547675] +18:37:59 ============================================================================ +18:37:59 Calculate Source COMM Id = 0 +18:37:59 ============================================================================ +18:37:59 + + +waiting on router queue for slot.... +18:38:02 ============================================================================ +18:38:02 Slot Id : <161> +18:38:02 Transaction Type : REQUEST +18:38:02 Received From : +18:38:02 ============================================================================ +18:38:02 FNo. Len. Field Value +18:38:02 ============================================================================ +18:38:02 [ 1] [ 4] [0800] +18:38:02 [ 7] [ 10] [0320113708] +18:38:02 [ 11] [ 6] [157745] +18:38:02 [ 70] [ 3] [301] +18:38:02 ============================================================================ +18:38:02 + + +waiting on router queue for slot.... +18:38:02 Sending to : +18:38:02 ============================================================================ +18:38:02 ============================================================================ +18:38:02 Slot Id : <161> +18:38:02 Transaction Type : RESPONSE +18:38:02 Received From : +18:38:02 ============================================================================ +18:38:02 FNo. Len. Field Value +18:38:02 ============================================================================ +18:38:02 [ 1] [ 4] [0810] +18:38:02 [ 7] [ 10] [0320113708] +18:38:02 [ 11] [ 6] [157745] +18:38:02 [ 39] [ 2] [00] +18:38:02 [ 70] [ 3] [301] +18:38:02 ============================================================================ +18:38:02 Calculate Source COMM Id = 2 +18:38:02 ============================================================================ +18:38:02 + + +waiting on router queue for slot.... +18:38:05 ============================================================================ +18:38:05 Slot Id : <166> +18:38:05 Transaction Type : REQUEST +18:38:05 Received From : +18:38:05 ============================================================================ +18:38:05 FNo. Len. Field Value +18:38:05 ============================================================================ +18:38:05 [ 1] [ 4] [0200] +18:38:05 [ 2] [ 16] [6688990108434109] +18:38:05 [ 3] [ 6] [011000] +18:38:05 [ 4] [ 12] [000002000000] +18:38:05 [ 7] [ 10] [0320113712] +18:38:05 [ 11] [ 6] [271262] +18:38:05 [ 12] [ 6] [183712] +18:38:05 [ 13] [ 4] [0320] +18:38:05 [ 14] [ 4] [4406] +18:38:05 [ 15] [ 4] [0320] +18:38:05 [ 18] [ 4] [6011] +18:38:05 [ 19] [ 3] [418] +18:38:05 [ 22] [ 3] [021] +18:38:05 [ 25] [ 2] [01] +18:38:05 [ 28] [ 9] [D00002000] +18:38:05 [ 32] [ 6] [180893] +18:38:05 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:38:05 [ 37] [ 12] [507911271262] +18:38:05 [ 41] [ 8] [0464UDPB] +18:38:05 [ 42] [ 15] [999999 ] +18:38:05 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:38:05 [ 49] [ 3] [418] +18:38:05 [ 52] [ 16] [BDC0F647C08F0A8C] +18:38:05 ============================================================================ +18:38:05 + + +waiting on router queue for slot.... +18:38:05 Sending to : +18:38:05 ============================================================================ +18:38:05 Sending to : +18:38:05 ============================================================================ +18:38:05 ============================================================================ +18:38:05 Slot Id : <166> +18:38:05 Transaction Type : REQUEST +18:38:05 Received From : +18:38:05 ============================================================================ +18:38:05 FNo. Len. Field Value +18:38:05 ============================================================================ +18:38:05 [ 1] [ 4] [0200] +18:38:05 [ 2] [ 16] [6688990108434109] +18:38:05 [ 3] [ 6] [011000] +18:38:05 [ 4] [ 12] [000002000000] +18:38:05 [ 7] [ 10] [0320113712] +18:38:05 [ 11] [ 6] [271262] +18:38:05 [ 12] [ 6] [183712] +18:38:05 [ 13] [ 4] [0320] +18:38:05 [ 14] [ 4] [4406] +18:38:05 [ 15] [ 4] [0320] +18:38:05 [ 18] [ 4] [6011] +18:38:05 [ 19] [ 3] [418] +18:38:05 [ 22] [ 3] [021] +18:38:05 [ 25] [ 2] [01] +18:38:05 [ 28] [ 9] [D00002000] +18:38:05 [ 32] [ 6] [180893] +18:38:05 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:38:05 [ 37] [ 12] [507911271262] +18:38:05 [ 41] [ 8] [0464UDPB] +18:38:05 [ 42] [ 15] [999999 ] +18:38:05 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:38:05 [ 49] [ 3] [418] +18:38:05 [ 52] [ 16] [BDC0F647C08F0A8C] +18:38:05 ============================================================================ +18:38:05 + + +waiting on router queue for slot.... +18:38:05 Sending to : +18:38:05 ============================================================================ +18:38:05 ============================================================================ +18:38:05 Slot Id : <166> +18:38:05 Transaction Type : REQUEST +18:38:05 Received From : +18:38:05 ============================================================================ +18:38:05 FNo. Len. Field Value +18:38:05 ============================================================================ +18:38:05 [ 1] [ 4] [0200] +18:38:05 [ 2] [ 16] [6688990108434109] +18:38:05 [ 3] [ 6] [011000] +18:38:05 [ 4] [ 12] [000002000000] +18:38:05 [ 7] [ 10] [0320113712] +18:38:05 [ 11] [ 6] [271262] +18:38:05 [ 12] [ 6] [183712] +18:38:05 [ 13] [ 4] [0320] +18:38:05 [ 14] [ 4] [4406] +18:38:05 [ 15] [ 4] [0320] +18:38:05 [ 18] [ 4] [6011] +18:38:05 [ 19] [ 3] [418] +18:38:05 [ 22] [ 3] [021] +18:38:05 [ 25] [ 2] [01] +18:38:05 [ 28] [ 9] [D00002000] +18:38:05 [ 32] [ 6] [180893] +18:38:05 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:38:05 [ 37] [ 12] [507911271262] +18:38:05 [ 41] [ 8] [0464UDPB] +18:38:05 [ 42] [ 15] [999999 ] +18:38:05 [ 43] [ 40] [ATM PARKBENG OUDOMXAI, Pakbaeng, Lao Peo] +18:38:05 [ 49] [ 3] [418] +18:38:05 [ 52] [ 16] [070229D0A8F09284] +18:38:05 ============================================================================ +18:38:05 + + +waiting on router queue for slot.... +18:38:05 Sending to : <0> +18:38:05 ============================================================================ +18:38:06 ============================================================================ +18:38:06 Slot Id : <143> +18:38:06 Transaction Type : REQUEST +18:38:06 Received From : +18:38:06 ============================================================================ +18:38:06 FNo. Len. Field Value +18:38:06 ============================================================================ +18:38:06 [ 1] [ 4] [0200] +18:38:06 [ 2] [ 16] [1808931800011569] +18:38:06 [ 3] [ 6] [301000] +18:38:06 [ 4] [ 12] [000000000000] +18:38:06 [ 7] [ 10] [0320183800] +18:38:06 [ 11] [ 6] [829271] +18:38:06 [ 12] [ 6] [183800] +18:38:06 [ 13] [ 4] [0320] +18:38:06 [ 15] [ 4] [0320] +18:38:06 [ 18] [ 4] [6011] +18:38:06 [ 22] [ 3] [900] +18:38:06 [ 25] [ 2] [02] +18:38:06 [ 28] [ 9] [D00000000] +18:38:06 [ 32] [ 6] [621354] +18:38:06 [ 35] [ 27] [1808931800011569=1803500210] +18:38:06 [ 37] [ 12] [507904635985] +18:38:06 [ 41] [ 8] [17000800] +18:38:06 [ 42] [ 15] [NATIVE ] +18:38:06 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:38:06 [ 49] [ 3] [418] +18:38:06 [ 52] [ 16] [7F860409BBC16762] +18:38:06 ============================================================================ +18:38:06 + + +waiting on router queue for slot.... +18:38:06 Sending to : +18:38:06 ============================================================================ +18:38:06 Sending to : +18:38:06 ============================================================================ +18:38:06 ============================================================================ +18:38:06 Slot Id : <166> +18:38:06 Transaction Type : RESPONSE +18:38:06 Received From : +18:38:06 ============================================================================ +18:38:06 FNo. Len. Field Value +18:38:06 ============================================================================ +18:38:06 [ 1] [ 4] [0210] +18:38:06 [ 2] [ 16] [6688990108434109] +18:38:06 [ 3] [ 6] [011000] +18:38:06 [ 4] [ 12] [000002000000] +18:38:06 [ 7] [ 10] [0320113712] +18:38:06 [ 11] [ 6] [271262] +18:38:06 [ 12] [ 6] [183712] +18:38:06 [ 13] [ 4] [0320] +18:38:06 [ 15] [ 4] [0320] +18:38:06 [ 18] [ 4] [6011] +18:38:06 [ 19] [ 3] [418] +18:38:06 [ 22] [ 3] [021] +18:38:06 [ 32] [ 6] [180893] +18:38:06 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:38:06 [ 37] [ 12] [507911271262] +18:38:06 [ 39] [ 2] [14] +18:38:06 [ 41] [ 8] [0464UDPB] +18:38:06 [ 49] [ 3] [418] +18:38:06 ============================================================================ +18:38:06 Sending to : +18:38:06 ============================================================================ +18:38:06 + + +waiting on router queue for slot.... +18:38:06 ============================================================================ +18:38:06 Slot Id : <143> +18:38:06 Transaction Type : REQUEST +18:38:06 Received From : +18:38:06 ============================================================================ +18:38:06 FNo. Len. Field Value +18:38:06 ============================================================================ +18:38:06 [ 1] [ 4] [0200] +18:38:06 [ 2] [ 16] [1808931800011569] +18:38:06 [ 3] [ 6] [301000] +18:38:06 [ 4] [ 12] [000000000000] +18:38:06 [ 7] [ 10] [0320183800] +18:38:06 [ 11] [ 6] [829271] +18:38:06 [ 12] [ 6] [183800] +18:38:06 [ 13] [ 4] [0320] +18:38:06 [ 15] [ 4] [0320] +18:38:06 [ 18] [ 4] [6011] +18:38:06 [ 22] [ 3] [900] +18:38:06 [ 25] [ 2] [02] +18:38:06 [ 28] [ 9] [D00000000] +18:38:06 [ 32] [ 6] [621354] +18:38:06 [ 35] [ 27] [1808931800011569=1803500210] +18:38:06 [ 37] [ 12] [507904635985] +18:38:06 [ 41] [ 8] [17000800] +18:38:06 [ 42] [ 15] [NATIVE ] +18:38:06 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:38:06 [ 49] [ 3] [418] +18:38:06 [ 52] [ 16] [7F860409BBC16762] +18:38:06 ============================================================================ +18:38:06 + + +waiting on router queue for slot.... +18:38:06 Sending to : +18:38:06 ============================================================================ +18:38:06 ============================================================================ +18:38:06 Slot Id : <143> +18:38:06 Transaction Type : REQUEST +18:38:06 Received From : +18:38:06 ============================================================================ +18:38:06 FNo. Len. Field Value +18:38:06 ============================================================================ +18:38:06 [ 1] [ 4] [0200] +18:38:06 [ 2] [ 16] [1808931800011569] +18:38:06 [ 3] [ 6] [301000] +18:38:06 [ 4] [ 12] [000000000000] +18:38:06 [ 7] [ 10] [0320183800] +18:38:06 [ 11] [ 6] [829271] +18:38:06 [ 12] [ 6] [183800] +18:38:06 [ 13] [ 4] [0320] +18:38:06 [ 15] [ 4] [0320] +18:38:06 [ 18] [ 4] [6011] +18:38:06 [ 22] [ 3] [900] +18:38:06 [ 25] [ 2] [02] +18:38:06 [ 28] [ 9] [D00000000] +18:38:06 [ 32] [ 6] [621354] +18:38:06 [ 35] [ 27] [1808931800011569=1803500210] +18:38:06 [ 37] [ 12] [507904635985] +18:38:06 [ 41] [ 8] [17000800] +18:38:06 [ 42] [ 15] [NATIVE ] +18:38:06 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:38:06 [ 49] [ 3] [418] +18:38:06 [ 52] [ 16] [9D31CC6F73FF9EB9] +18:38:06 ============================================================================ +18:38:06 + + +waiting on router queue for slot.... +18:38:06 Sending to : <2> +18:38:06 ============================================================================ +18:38:07 ============================================================================ +18:38:07 Slot Id : <166> +18:38:07 Transaction Type : RESPONSE +18:38:07 Received From : +18:38:07 ============================================================================ +18:38:07 FNo. Len. Field Value +18:38:07 ============================================================================ +18:38:07 [ 1] [ 4] [0210] +18:38:07 [ 2] [ 16] [6688990108434109] +18:38:07 [ 3] [ 6] [011000] +18:38:07 [ 4] [ 12] [000002000000] +18:38:07 [ 7] [ 10] [0320113712] +18:38:07 [ 11] [ 6] [271262] +18:38:07 [ 12] [ 6] [183712] +18:38:07 [ 13] [ 4] [0320] +18:38:07 [ 15] [ 4] [0320] +18:38:07 [ 18] [ 4] [6011] +18:38:07 [ 19] [ 3] [418] +18:38:07 [ 22] [ 3] [021] +18:38:07 [ 32] [ 6] [180893] +18:38:07 [ 35] [ 37] [6688990108434109=44061231410938800000] +18:38:07 [ 37] [ 12] [507911271262] +18:38:07 [ 39] [ 2] [14] +18:38:07 [ 41] [ 8] [0464UDPB] +18:38:07 [ 49] [ 3] [418] +18:38:07 ============================================================================ +18:38:07 Calculate Source COMM Id = 2 +18:38:07 ============================================================================ +18:38:07 + + +waiting on router queue for slot.... +18:38:09 ============================================================================ +18:38:09 Slot Id : <143> +18:38:09 Transaction Type : RESPONSE +18:38:09 Received From : +18:38:09 ============================================================================ +18:38:09 FNo. Len. Field Value +18:38:09 ============================================================================ +18:38:09 [ 1] [ 4] [0210] +18:38:09 [ 2] [ 16] [1808931800011569] +18:38:09 [ 3] [ 6] [301000] +18:38:09 [ 7] [ 10] [0320183800] +18:38:09 [ 11] [ 6] [829271] +18:38:09 [ 12] [ 6] [183800] +18:38:09 [ 13] [ 4] [0320] +18:38:09 [ 14] [ 4] [1803] +18:38:09 [ 19] [ 3] [418] +18:38:09 [ 32] [ 6] [621354] +18:38:09 [ 37] [ 12] [507904635985] +18:38:09 [ 38] [ 6] [829271] +18:38:09 [ 39] [ 2] [00] +18:38:09 [ 41] [ 8] [17000800] +18:38:09 [ 49] [ 3] [418] +18:38:09 [ 52] [ 16] [9D31CC6F73FF9EB9] +18:38:09 [ 54] [ 20] [1002418C000216942600] +18:38:09 ============================================================================ +18:38:09 Sending to : +18:38:09 ============================================================================ +18:38:09 + + +waiting on router queue for slot.... +18:38:11 ============================================================================ +18:38:11 Slot Id : <143> +18:38:11 Transaction Type : RESPONSE +18:38:11 Received From : +18:38:11 ============================================================================ +18:38:11 FNo. Len. Field Value +18:38:11 ============================================================================ +18:38:11 [ 1] [ 4] [0210] +18:38:11 [ 2] [ 16] [1808931800011569] +18:38:11 [ 3] [ 6] [301000] +18:38:11 [ 7] [ 10] [0320183800] +18:38:11 [ 11] [ 6] [829271] +18:38:11 [ 12] [ 6] [183800] +18:38:11 [ 13] [ 4] [0320] +18:38:11 [ 14] [ 4] [1803] +18:38:11 [ 19] [ 3] [418] +18:38:11 [ 32] [ 6] [621354] +18:38:11 [ 37] [ 12] [507904635985] +18:38:11 [ 38] [ 6] [829271] +18:38:11 [ 39] [ 2] [00] +18:38:11 [ 41] [ 8] [17000800] +18:38:11 [ 49] [ 3] [418] +18:38:11 [ 52] [ 16] [9D31CC6F73FF9EB9] +18:38:11 [ 54] [ 20] [1002418C000216942600] +18:38:11 ============================================================================ +18:38:11 Calculate Source COMM Id = 0 +18:38:11 ============================================================================ +18:38:11 + + +waiting on router queue for slot.... +18:38:11 ============================================================================ +18:38:11 Slot Id : <154> +18:38:11 Transaction Type : REQUEST +18:38:11 Received From : +18:38:11 ============================================================================ +18:38:11 FNo. Len. Field Value +18:38:11 ============================================================================ +18:38:11 [ 1] [ 4] [0200] +18:38:11 [ 2] [ 16] [6213541000632540] +18:38:11 [ 3] [ 6] [011000] +18:38:11 [ 4] [ 12] [000100000000] +18:38:11 [ 7] [ 10] [0320183831] +18:38:11 [ 11] [ 6] [210522] +18:38:11 [ 12] [ 6] [183856] +18:38:11 [ 13] [ 4] [0320] +18:38:11 [ 14] [ 4] [4912] +18:38:11 [ 15] [ 4] [0320] +18:38:11 [ 18] [ 4] [6011] +18:38:11 [ 19] [ 3] [418] +18:38:11 [ 22] [ 3] [021] +18:38:11 [ 25] [ 2] [01] +18:38:11 [ 28] [ 9] [D00002000] +18:38:11 [ 32] [ 6] [198901] +18:38:11 [ 35] [ 32] [6213541000632540=491212013254302] +18:38:11 [ 37] [ 12] [507918210522] +18:38:11 [ 41] [ 8] [01529009] +18:38:11 [ 42] [ 15] [000000041529009] +18:38:11 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +18:38:11 [ 49] [ 3] [418] +18:38:11 [ 52] [ 16] [161030FD2B50E8F9] +18:38:11 ============================================================================ +18:38:11 + + +waiting on router queue for slot.... +18:38:11 Sending to : +18:38:11 ============================================================================ +18:38:11 Sending to : +18:38:11 ============================================================================ +18:38:11 ============================================================================ +18:38:11 Slot Id : <154> +18:38:11 Transaction Type : REQUEST +18:38:11 Received From : +18:38:11 ============================================================================ +18:38:11 FNo. Len. Field Value +18:38:11 ============================================================================ +18:38:11 [ 1] [ 4] [0200] +18:38:11 [ 2] [ 16] [6213541000632540] +18:38:11 [ 3] [ 6] [011000] +18:38:11 [ 4] [ 12] [000100000000] +18:38:11 [ 7] [ 10] [0320183831] +18:38:11 [ 11] [ 6] [210522] +18:38:11 [ 12] [ 6] [183856] +18:38:11 [ 13] [ 4] [0320] +18:38:11 [ 14] [ 4] [4912] +18:38:11 [ 15] [ 4] [0320] +18:38:11 [ 18] [ 4] [6011] +18:38:11 [ 19] [ 3] [418] +18:38:11 [ 22] [ 3] [021] +18:38:11 [ 25] [ 2] [01] +18:38:11 [ 28] [ 9] [D00002000] +18:38:11 [ 32] [ 6] [198901] +18:38:11 [ 35] [ 32] [6213541000632540=491212013254302] +18:38:11 [ 37] [ 12] [507918210522] +18:38:11 [ 41] [ 8] [01529009] +18:38:11 [ 42] [ 15] [000000041529009] +18:38:11 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +18:38:11 [ 49] [ 3] [418] +18:38:11 [ 52] [ 16] [161030FD2B50E8F9] +18:38:11 ============================================================================ +18:38:11 + + +waiting on router queue for slot.... +18:38:11 Sending to : +18:38:11 ============================================================================ +18:38:11 ============================================================================ +18:38:11 Slot Id : <154> +18:38:11 Transaction Type : REQUEST +18:38:11 Received From : +18:38:11 ============================================================================ +18:38:11 FNo. Len. Field Value +18:38:11 ============================================================================ +18:38:11 [ 1] [ 4] [0200] +18:38:11 [ 2] [ 16] [6213541000632540] +18:38:11 [ 3] [ 6] [011000] +18:38:11 [ 4] [ 12] [000100000000] +18:38:11 [ 7] [ 10] [0320183831] +18:38:11 [ 11] [ 6] [210522] +18:38:11 [ 12] [ 6] [183856] +18:38:11 [ 13] [ 4] [0320] +18:38:11 [ 14] [ 4] [4912] +18:38:11 [ 15] [ 4] [0320] +18:38:11 [ 18] [ 4] [6011] +18:38:11 [ 19] [ 3] [418] +18:38:11 [ 22] [ 3] [021] +18:38:11 [ 25] [ 2] [01] +18:38:11 [ 28] [ 9] [D00002000] +18:38:11 [ 32] [ 6] [198901] +18:38:11 [ 35] [ 32] [6213541000632540=491212013254302] +18:38:11 [ 37] [ 12] [507918210522] +18:38:11 [ 41] [ 8] [01529009] +18:38:11 [ 42] [ 15] [000000041529009] +18:38:11 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +18:38:11 [ 49] [ 3] [418] +18:38:11 [ 52] [ 16] [DDF63D374E5B12D7] +18:38:11 ============================================================================ +18:38:11 + + +waiting on router queue for slot.... +18:38:11 Sending to : <0> +18:38:11 ============================================================================ +18:38:12 ============================================================================ +18:38:12 Slot Id : <154> +18:38:12 Transaction Type : RESPONSE +18:38:12 Received From : +18:38:12 ============================================================================ +18:38:12 FNo. Len. Field Value +18:38:12 ============================================================================ +18:38:12 [ 1] [ 4] [0210] +18:38:12 [ 2] [ 16] [6213541000632540] +18:38:12 [ 3] [ 6] [011000] +18:38:12 [ 4] [ 12] [000100000000] +18:38:12 [ 7] [ 10] [0320183831] +18:38:12 [ 11] [ 6] [210522] +18:38:12 [ 12] [ 6] [183856] +18:38:12 [ 13] [ 4] [0320] +18:38:12 [ 15] [ 4] [0320] +18:38:12 [ 18] [ 4] [6011] +18:38:12 [ 19] [ 3] [418] +18:38:12 [ 32] [ 6] [198901] +18:38:12 [ 35] [ 32] [6213541000632540=491212013254302] +18:38:12 [ 37] [ 12] [507918210522] +18:38:12 [ 38] [ 6] [699602] +18:38:12 [ 39] [ 2] [00] +18:38:12 [ 41] [ 8] [01529009] +18:38:12 [ 49] [ 3] [418] +18:38:12 [ 54] [ 40] [1001418C0008762571201002418C000876257120] +18:38:12 ============================================================================ +18:38:12 Sending to : +18:38:12 ============================================================================ +18:38:12 + + +waiting on router queue for slot.... +18:38:13 ============================================================================ +18:38:13 Slot Id : <154> +18:38:13 Transaction Type : RESPONSE +18:38:13 Received From : +18:38:13 ============================================================================ +18:38:13 FNo. Len. Field Value +18:38:13 ============================================================================ +18:38:13 [ 1] [ 4] [0210] +18:38:13 [ 2] [ 16] [6213541000632540] +18:38:13 [ 3] [ 6] [011000] +18:38:13 [ 4] [ 12] [000100000000] +18:38:13 [ 7] [ 10] [0320183831] +18:38:13 [ 11] [ 6] [210522] +18:38:13 [ 12] [ 6] [183856] +18:38:13 [ 13] [ 4] [0320] +18:38:13 [ 15] [ 4] [0320] +18:38:13 [ 18] [ 4] [6011] +18:38:13 [ 19] [ 3] [418] +18:38:13 [ 32] [ 6] [198901] +18:38:13 [ 35] [ 32] [6213541000632540=491212013254302] +18:38:13 [ 37] [ 12] [507918210522] +18:38:13 [ 38] [ 6] [699602] +18:38:13 [ 39] [ 2] [00] +18:38:13 [ 41] [ 8] [01529009] +18:38:13 [ 49] [ 3] [418] +18:38:13 [ 54] [ 40] [1001418C0008762571201002418C000876257120] +18:38:13 ============================================================================ +18:38:13 Calculate Source COMM Id = 5 +18:38:13 ============================================================================ +18:38:13 + + +waiting on router queue for slot.... +18:38:17 ============================================================================ +18:38:17 Slot Id : <145> +18:38:17 Transaction Type : REQUEST +18:38:17 Received From : +18:38:17 ============================================================================ +18:38:17 FNo. Len. Field Value +18:38:17 ============================================================================ +18:38:17 [ 1] [ 4] [0800] +18:38:17 [ 7] [ 10] [0320113724] +18:38:17 [ 11] [ 6] [157746] +18:38:17 [ 70] [ 3] [301] +18:38:17 ============================================================================ +18:38:17 + + +waiting on router queue for slot.... +18:38:17 Sending to : +18:38:17 ============================================================================ +18:38:17 ============================================================================ +18:38:17 Slot Id : <145> +18:38:17 Transaction Type : RESPONSE +18:38:17 Received From : +18:38:17 ============================================================================ +18:38:17 FNo. Len. Field Value +18:38:17 ============================================================================ +18:38:17 [ 1] [ 4] [0810] +18:38:17 [ 7] [ 10] [0320113724] +18:38:17 [ 11] [ 6] [157746] +18:38:17 [ 39] [ 2] [00] +18:38:17 [ 70] [ 3] [301] +18:38:17 ============================================================================ +18:38:17 Calculate Source COMM Id = 2 +18:38:17 ============================================================================ +18:38:17 + + +waiting on router queue for slot.... +18:38:32 ============================================================================ +18:38:32 Slot Id : <153> +18:38:32 Transaction Type : REQUEST +18:38:32 Received From : +18:38:32 ============================================================================ +18:38:32 FNo. Len. Field Value +18:38:32 ============================================================================ +18:38:32 [ 1] [ 4] [0800] +18:38:32 [ 7] [ 10] [0320113739] +18:38:32 [ 11] [ 6] [157747] +18:38:32 [ 70] [ 3] [301] +18:38:32 ============================================================================ +18:38:32 + + +waiting on router queue for slot.... +18:38:32 Sending to : +18:38:32 ============================================================================ +18:38:32 ============================================================================ +18:38:32 Slot Id : <153> +18:38:32 Transaction Type : RESPONSE +18:38:32 Received From : +18:38:32 ============================================================================ +18:38:32 FNo. Len. Field Value +18:38:32 ============================================================================ +18:38:32 [ 1] [ 4] [0810] +18:38:32 [ 7] [ 10] [0320113739] +18:38:32 [ 11] [ 6] [157747] +18:38:32 [ 39] [ 2] [00] +18:38:32 [ 70] [ 3] [301] +18:38:32 ============================================================================ +18:38:32 Calculate Source COMM Id = 2 +18:38:32 ============================================================================ +18:38:32 + + +waiting on router queue for slot.... +18:38:43 ============================================================================ +18:38:43 Slot Id : <150> +18:38:43 Transaction Type : REQUEST +18:38:43 Received From : +18:38:43 ============================================================================ +18:38:43 FNo. Len. Field Value +18:38:43 ============================================================================ +18:38:43 [ 1] [ 4] [0800] +18:38:43 [ 7] [ 10] [0320113750] +18:38:43 [ 11] [ 6] [157748] +18:38:43 [ 70] [ 3] [301] +18:38:43 ============================================================================ +18:38:43 + + +waiting on router queue for slot.... +18:38:43 Sending to : +18:38:43 ============================================================================ +18:38:43 ============================================================================ +18:38:43 Slot Id : <150> +18:38:43 Transaction Type : RESPONSE +18:38:43 Received From : +18:38:43 ============================================================================ +18:38:43 FNo. Len. Field Value +18:38:43 ============================================================================ +18:38:43 [ 1] [ 4] [0810] +18:38:43 [ 7] [ 10] [0320113750] +18:38:43 [ 11] [ 6] [157748] +18:38:43 [ 39] [ 2] [00] +18:38:43 [ 70] [ 3] [301] +18:38:43 ============================================================================ +18:38:43 Calculate Source COMM Id = 2 +18:38:43 ============================================================================ +18:38:43 + + +waiting on router queue for slot.... +18:38:43 ============================================================================ +18:38:43 Slot Id : <120> +18:38:43 Transaction Type : REQUEST +18:38:43 Received From : +18:38:43 ============================================================================ +18:38:43 FNo. Len. Field Value +18:38:43 ============================================================================ +18:38:43 [ 1] [ 4] [0800] +18:38:43 [ 2] [ 5] [02531] +18:38:43 [ 3] [ 6] [579188] +18:38:43 [ 7] [ 10] [0320113843] +18:38:43 [ 11] [ 6] [807494] +18:38:43 [ 15] [ 10] [0320113843] +18:38:43 [ 37] [ 11] [57918807494] +18:38:43 [ 70] [ 3] [001] +18:38:43 ============================================================================ +18:38:43 + + +waiting on router queue for slot.... +18:38:43 ============================================================================ +18:38:43 Slot Id : <120> +18:38:43 Transaction Type : RESPONSE +18:38:43 Received From : +18:38:43 ============================================================================ +18:38:43 FNo. Len. Field Value +18:38:43 ============================================================================ +18:38:43 [ 1] [ 4] [0810] +18:38:43 [ 7] [ 10] [0320113843] +18:38:43 [ 11] [ 6] [807494] +18:38:43 [ 15] [ 4] [0320] +18:38:43 [ 37] [ 12] [57918807494] +18:38:43 [ 39] [ 2] [00] +18:38:43 [ 70] [ 3] [001] +18:38:43 ============================================================================ +18:38:43 Sending to : +18:38:43 ============================================================================ +18:38:43 + + +waiting on router queue for slot.... +18:38:47 ============================================================================ +18:38:47 Slot Id : <110> +18:38:47 Transaction Type : REQUEST +18:38:47 Received From : +18:38:47 ============================================================================ +18:38:47 FNo. Len. Field Value +18:38:47 ============================================================================ +18:38:47 [ 1] [ 4] [0200] +18:38:47 [ 2] [ 16] [1808931800011569] +18:38:47 [ 3] [ 6] [301000] +18:38:47 [ 4] [ 12] [000000000000] +18:38:47 [ 7] [ 10] [0320183841] +18:38:47 [ 11] [ 6] [829386] +18:38:47 [ 12] [ 6] [183841] +18:38:47 [ 13] [ 4] [0320] +18:38:47 [ 15] [ 4] [0320] +18:38:47 [ 18] [ 4] [6011] +18:38:47 [ 22] [ 3] [900] +18:38:47 [ 25] [ 2] [02] +18:38:47 [ 28] [ 9] [D00000000] +18:38:47 [ 32] [ 6] [621354] +18:38:47 [ 35] [ 27] [1808931800011569=1803500210] +18:38:47 [ 37] [ 12] [507904635986] +18:38:47 [ 41] [ 8] [17000800] +18:38:47 [ 42] [ 15] [NATIVE ] +18:38:47 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:38:47 [ 49] [ 3] [418] +18:38:47 [ 52] [ 16] [7F860409BBC16762] +18:38:47 ============================================================================ +18:38:47 + + +waiting on router queue for slot.... +18:38:47 Sending to : +18:38:47 ============================================================================ +18:38:47 Sending to : +18:38:47 ============================================================================ +18:38:47 ============================================================================ +18:38:47 Slot Id : <110> +18:38:47 Transaction Type : REQUEST +18:38:47 Received From : +18:38:47 ============================================================================ +18:38:47 FNo. Len. Field Value +18:38:47 ============================================================================ +18:38:47 [ 1] [ 4] [0200] +18:38:47 [ 2] [ 16] [1808931800011569] +18:38:47 [ 3] [ 6] [301000] +18:38:47 [ 4] [ 12] [000000000000] +18:38:47 [ 7] [ 10] [0320183841] +18:38:47 [ 11] [ 6] [829386] +18:38:47 [ 12] [ 6] [183841] +18:38:47 [ 13] [ 4] [0320] +18:38:47 [ 15] [ 4] [0320] +18:38:47 [ 18] [ 4] [6011] +18:38:47 [ 22] [ 3] [900] +18:38:47 [ 25] [ 2] [02] +18:38:47 [ 28] [ 9] [D00000000] +18:38:47 [ 32] [ 6] [621354] +18:38:47 [ 35] [ 27] [1808931800011569=1803500210] +18:38:47 [ 37] [ 12] [507904635986] +18:38:47 [ 41] [ 8] [17000800] +18:38:47 [ 42] [ 15] [NATIVE ] +18:38:47 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:38:47 [ 49] [ 3] [418] +18:38:47 [ 52] [ 16] [7F860409BBC16762] +18:38:47 ============================================================================ +18:38:47 + + +waiting on router queue for slot.... +18:38:47 Sending to : +18:38:47 ============================================================================ +18:38:47 ============================================================================ +18:38:47 Slot Id : <110> +18:38:47 Transaction Type : REQUEST +18:38:47 Received From : +18:38:47 ============================================================================ +18:38:47 FNo. Len. Field Value +18:38:47 ============================================================================ +18:38:47 [ 1] [ 4] [0200] +18:38:47 [ 2] [ 16] [1808931800011569] +18:38:47 [ 3] [ 6] [301000] +18:38:47 [ 4] [ 12] [000000000000] +18:38:47 [ 7] [ 10] [0320183841] +18:38:47 [ 11] [ 6] [829386] +18:38:47 [ 12] [ 6] [183841] +18:38:47 [ 13] [ 4] [0320] +18:38:47 [ 15] [ 4] [0320] +18:38:47 [ 18] [ 4] [6011] +18:38:47 [ 22] [ 3] [900] +18:38:47 [ 25] [ 2] [02] +18:38:47 [ 28] [ 9] [D00000000] +18:38:47 [ 32] [ 6] [621354] +18:38:47 [ 35] [ 27] [1808931800011569=1803500210] +18:38:47 [ 37] [ 12] [507904635986] +18:38:47 [ 41] [ 8] [17000800] +18:38:47 [ 42] [ 15] [NATIVE ] +18:38:47 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:38:47 [ 49] [ 3] [418] +18:38:47 [ 52] [ 16] [9D31CC6F73FF9EB9] +18:38:47 ============================================================================ +18:38:47 + + +waiting on router queue for slot.... +18:38:47 Sending to : <2> +18:38:47 ============================================================================ +18:38:50 ============================================================================ +18:38:50 Slot Id : <110> +18:38:50 Transaction Type : RESPONSE +18:38:50 Received From : +18:38:50 ============================================================================ +18:38:50 FNo. Len. Field Value +18:38:50 ============================================================================ +18:38:50 [ 1] [ 4] [0210] +18:38:50 [ 2] [ 16] [1808931800011569] +18:38:50 [ 3] [ 6] [301000] +18:38:50 [ 7] [ 10] [0320183841] +18:38:50 [ 11] [ 6] [829386] +18:38:50 [ 12] [ 6] [183841] +18:38:50 [ 13] [ 4] [0320] +18:38:50 [ 14] [ 4] [1803] +18:38:50 [ 19] [ 3] [418] +18:38:50 [ 32] [ 6] [621354] +18:38:50 [ 37] [ 12] [507904635986] +18:38:50 [ 38] [ 6] [829386] +18:38:50 [ 39] [ 2] [00] +18:38:50 [ 41] [ 8] [17000800] +18:38:50 [ 49] [ 3] [418] +18:38:50 [ 52] [ 16] [9D31CC6F73FF9EB9] +18:38:50 [ 54] [ 20] [1002418C000216942600] +18:38:50 ============================================================================ +18:38:50 Sending to : +18:38:50 ============================================================================ +18:38:50 + + +waiting on router queue for slot.... +18:38:51 ============================================================================ +18:38:51 Slot Id : <110> +18:38:51 Transaction Type : RESPONSE +18:38:51 Received From : +18:38:51 ============================================================================ +18:38:51 FNo. Len. Field Value +18:38:51 ============================================================================ +18:38:51 [ 1] [ 4] [0210] +18:38:51 [ 2] [ 16] [1808931800011569] +18:38:51 [ 3] [ 6] [301000] +18:38:51 [ 7] [ 10] [0320183841] +18:38:51 [ 11] [ 6] [829386] +18:38:51 [ 12] [ 6] [183841] +18:38:51 [ 13] [ 4] [0320] +18:38:51 [ 14] [ 4] [1803] +18:38:51 [ 19] [ 3] [418] +18:38:51 [ 32] [ 6] [621354] +18:38:51 [ 37] [ 12] [507904635986] +18:38:51 [ 38] [ 6] [829386] +18:38:51 [ 39] [ 2] [00] +18:38:51 [ 41] [ 8] [17000800] +18:38:51 [ 49] [ 3] [418] +18:38:51 [ 52] [ 16] [9D31CC6F73FF9EB9] +18:38:51 [ 54] [ 20] [1002418C000216942600] +18:38:51 ============================================================================ +18:38:51 Calculate Source COMM Id = 0 +18:38:51 ============================================================================ +18:38:51 + + +waiting on router queue for slot.... +18:38:58 ============================================================================ +18:38:58 Slot Id : <133> +18:38:58 Transaction Type : REQUEST +18:38:58 Received From : +18:38:58 ============================================================================ +18:38:58 FNo. Len. Field Value +18:38:58 ============================================================================ +18:38:58 [ 1] [ 4] [0800] +18:38:58 [ 7] [ 10] [0320113805] +18:38:58 [ 11] [ 6] [157749] +18:38:58 [ 70] [ 3] [301] +18:38:58 ============================================================================ +18:38:58 + + +waiting on router queue for slot.... +18:38:58 Sending to : +18:38:58 ============================================================================ +18:38:58 ============================================================================ +18:38:58 Slot Id : <133> +18:38:58 Transaction Type : RESPONSE +18:38:58 Received From : +18:38:58 ============================================================================ +18:38:58 FNo. Len. Field Value +18:38:58 ============================================================================ +18:38:58 [ 1] [ 4] [0810] +18:38:58 [ 7] [ 10] [0320113805] +18:38:58 [ 11] [ 6] [157749] +18:38:58 [ 39] [ 2] [00] +18:38:58 [ 70] [ 3] [301] +18:38:58 ============================================================================ +18:38:58 Calculate Source COMM Id = 2 +18:38:58 ============================================================================ +18:38:58 + + +waiting on router queue for slot.... +18:39:01 ============================================================================ +18:39:01 Slot Id : <158> +18:39:01 Transaction Type : REQUEST +18:39:01 Received From : +18:39:01 ============================================================================ +18:39:01 FNo. Len. Field Value +18:39:01 ============================================================================ +18:39:01 [ 1] [ 4] [0200] +18:39:01 [ 2] [ 16] [1888880000002717] +18:39:01 [ 3] [ 6] [010000] +18:39:01 [ 4] [ 12] [000030000000] +18:39:01 [ 7] [ 10] [0320183856] +18:39:01 [ 11] [ 6] [829435] +18:39:01 [ 12] [ 6] [183856] +18:39:01 [ 13] [ 4] [0320] +18:39:01 [ 15] [ 4] [0320] +18:39:01 [ 18] [ 4] [6011] +18:39:01 [ 22] [ 3] [900] +18:39:01 [ 25] [ 2] [02] +18:39:01 [ 28] [ 9] [D00002000] +18:39:01 [ 32] [ 6] [621354] +18:39:01 [ 35] [ 32] [1888880000002717=000010100000090] +18:39:01 [ 37] [ 12] [507904341833] +18:39:01 [ 41] [ 8] [03003300] +18:39:01 [ 42] [ 15] [NATIVE ] +18:39:01 [ 43] [ 40] [SVN University KaisonephomvLAO] +18:39:01 [ 49] [ 3] [418] +18:39:01 [ 52] [ 16] [B765977AF200E31D] +18:39:01 ============================================================================ +18:39:01 + + +waiting on router queue for slot.... +18:39:01 Sending to : +18:39:01 ============================================================================ +18:39:01 Sending to : +18:39:01 ============================================================================ +18:39:02 ============================================================================ +18:39:02 Slot Id : <158> +18:39:02 Transaction Type : REQUEST +18:39:02 Received From : +18:39:02 ============================================================================ +18:39:02 FNo. Len. Field Value +18:39:02 ============================================================================ +18:39:02 [ 1] [ 4] [0200] +18:39:02 [ 2] [ 16] [1888880000002717] +18:39:02 [ 3] [ 6] [010000] +18:39:02 [ 4] [ 12] [000030000000] +18:39:02 [ 7] [ 10] [0320183856] +18:39:02 [ 11] [ 6] [829435] +18:39:02 [ 12] [ 6] [183856] +18:39:02 [ 13] [ 4] [0320] +18:39:02 [ 15] [ 4] [0320] +18:39:02 [ 18] [ 4] [6011] +18:39:02 [ 22] [ 3] [900] +18:39:02 [ 25] [ 2] [02] +18:39:02 [ 28] [ 9] [D00002000] +18:39:02 [ 32] [ 6] [621354] +18:39:02 [ 35] [ 32] [1888880000002717=000010100000090] +18:39:02 [ 37] [ 12] [507904341833] +18:39:02 [ 41] [ 8] [03003300] +18:39:02 [ 42] [ 15] [NATIVE ] +18:39:02 [ 43] [ 40] [SVN University KaisonephomvLAO] +18:39:02 [ 49] [ 3] [418] +18:39:02 [ 52] [ 16] [B765977AF200E31D] +18:39:02 ============================================================================ +18:39:02 + + +waiting on router queue for slot.... +18:39:02 Sending to : +18:39:02 ============================================================================ +18:39:02 ============================================================================ +18:39:02 Slot Id : <158> +18:39:02 Transaction Type : REQUEST +18:39:02 Received From : +18:39:02 ============================================================================ +18:39:02 FNo. Len. Field Value +18:39:02 ============================================================================ +18:39:02 [ 1] [ 4] [0200] +18:39:02 [ 2] [ 16] [1888880000002717] +18:39:02 [ 3] [ 6] [010000] +18:39:02 [ 4] [ 12] [000030000000] +18:39:02 [ 7] [ 10] [0320183856] +18:39:02 [ 11] [ 6] [829435] +18:39:02 [ 12] [ 6] [183856] +18:39:02 [ 13] [ 4] [0320] +18:39:02 [ 15] [ 4] [0320] +18:39:02 [ 18] [ 4] [6011] +18:39:02 [ 22] [ 3] [900] +18:39:02 [ 25] [ 2] [02] +18:39:02 [ 28] [ 9] [D00002000] +18:39:02 [ 32] [ 6] [621354] +18:39:02 [ 35] [ 32] [1888880000002717=000010100000090] +18:39:02 [ 37] [ 12] [507904341833] +18:39:02 [ 41] [ 8] [03003300] +18:39:02 [ 42] [ 15] [NATIVE ] +18:39:02 [ 43] [ 40] [SVN University KaisonephomvLAO] +18:39:02 [ 49] [ 3] [418] +18:39:02 [ 52] [ 16] [41FBC6392362DB69] +18:39:02 ============================================================================ +18:39:02 + + +waiting on router queue for slot.... +18:39:02 Sending to : <5> +18:39:02 ============================================================================ +18:39:04 ============================================================================ +18:39:04 Slot Id : <159> +18:39:04 Transaction Type : REQUEST +18:39:04 Received From : +18:39:04 ============================================================================ +18:39:04 FNo. Len. Field Value +18:39:04 ============================================================================ +18:39:04 [ 1] [ 4] [0800] +18:39:04 [ 7] [ 10] [0321015052] +18:39:04 [ 11] [ 6] [185052] +18:39:04 [ 37] [ 12] [57918185052] +18:39:04 [ 70] [ 3] [301] +18:39:04 ============================================================================ +18:39:04 + + +waiting on router queue for slot.... +18:39:04 Sending to : +18:39:04 ============================================================================ +18:39:04 ============================================================================ +18:39:04 Slot Id : <159> +18:39:04 Transaction Type : RESPONSE +18:39:04 Received From : +18:39:04 ============================================================================ +18:39:04 FNo. Len. Field Value +18:39:04 ============================================================================ +18:39:04 [ 1] [ 4] [0810] +18:39:04 [ 7] [ 10] [0321015052] +18:39:04 [ 11] [ 6] [185052] +18:39:04 [ 37] [ 12] [579181850520] +18:39:04 [ 39] [ 2] [00] +18:39:04 [ 70] [ 3] [810] +18:39:04 ============================================================================ +18:39:04 Calculate Source COMM Id = 6 +18:39:04 ============================================================================ +18:39:04 + + +waiting on router queue for slot.... +18:39:09 ============================================================================ +18:39:09 Slot Id : <142> +18:39:09 Transaction Type : REQUEST +18:39:09 Received From : +18:39:09 ============================================================================ +18:39:09 FNo. Len. Field Value +18:39:09 ============================================================================ +18:39:09 [ 1] [ 4] [0800] +18:39:09 [ 7] [ 10] [0320113816] +18:39:09 [ 11] [ 6] [157750] +18:39:09 [ 70] [ 3] [301] +18:39:09 ============================================================================ +18:39:09 + + +waiting on router queue for slot.... +18:39:09 Sending to : +18:39:09 ============================================================================ +18:39:09 ============================================================================ +18:39:09 Slot Id : <142> +18:39:09 Transaction Type : RESPONSE +18:39:09 Received From : +18:39:09 ============================================================================ +18:39:09 FNo. Len. Field Value +18:39:09 ============================================================================ +18:39:09 [ 1] [ 4] [0810] +18:39:09 [ 7] [ 10] [0320113816] +18:39:09 [ 11] [ 6] [157750] +18:39:09 [ 39] [ 2] [00] +18:39:09 [ 70] [ 3] [301] +18:39:09 ============================================================================ +18:39:09 Calculate Source COMM Id = 2 +18:39:09 ============================================================================ +18:39:09 + + +waiting on router queue for slot.... +18:39:11 ============================================================================ +18:39:11 Slot Id : <158> +18:39:11 Transaction Type : RESPONSE +18:39:11 Received From : +18:39:11 ============================================================================ +18:39:11 FNo. Len. Field Value +18:39:11 ============================================================================ +18:39:11 [ 1] [ 4] [0210] +18:39:11 [ 2] [ 16] [1888880000002717] +18:39:11 [ 3] [ 6] [010000] +18:39:11 [ 4] [ 12] [000030000000] +18:39:11 [ 7] [ 10] [0320183856] +18:39:11 [ 11] [ 6] [829435] +18:39:11 [ 12] [ 6] [183856] +18:39:11 [ 13] [ 4] [0320] +18:39:11 [ 15] [ 4] [0320] +18:39:11 [ 18] [ 4] [6011] +18:39:11 [ 19] [ 3] [418] +18:39:11 [ 32] [ 6] [621354] +18:39:11 [ 37] [ 12] [507904341833] +18:39:11 [ 38] [ 6] [201096] +18:39:11 [ 39] [ 2] [00] +18:39:11 [ 41] [ 8] [03003300] +18:39:11 [ 49] [ 3] [418] +18:39:11 [ 54] [ 0] [] +18:39:11 ============================================================================ +18:39:11 Sending to : +18:39:11 ============================================================================ +18:39:11 + + +waiting on router queue for slot.... +18:39:12 ============================================================================ +18:39:12 Slot Id : <158> +18:39:12 Transaction Type : RESPONSE +18:39:12 Received From : +18:39:12 ============================================================================ +18:39:12 FNo. Len. Field Value +18:39:12 ============================================================================ +18:39:12 [ 1] [ 4] [0210] +18:39:12 [ 2] [ 16] [1888880000002717] +18:39:12 [ 3] [ 6] [010000] +18:39:12 [ 4] [ 12] [000030000000] +18:39:12 [ 7] [ 10] [0320183856] +18:39:12 [ 11] [ 6] [829435] +18:39:12 [ 12] [ 6] [183856] +18:39:12 [ 13] [ 4] [0320] +18:39:12 [ 15] [ 4] [0320] +18:39:12 [ 18] [ 4] [6011] +18:39:12 [ 19] [ 3] [418] +18:39:12 [ 32] [ 6] [621354] +18:39:12 [ 37] [ 12] [507904341833] +18:39:12 [ 38] [ 6] [201096] +18:39:12 [ 39] [ 2] [00] +18:39:12 [ 41] [ 8] [03003300] +18:39:12 [ 49] [ 3] [418] +18:39:12 [ 54] [ 0] [] +18:39:12 ============================================================================ +18:39:12 Calculate Source COMM Id = 0 +18:39:12 ============================================================================ +18:39:12 + + +waiting on router queue for slot.... +18:39:20 ============================================================================ +18:39:20 Slot Id : <146> +18:39:20 Transaction Type : REQUEST +18:39:20 Received From : +18:39:20 ============================================================================ +18:39:20 FNo. Len. Field Value +18:39:20 ============================================================================ +18:39:20 [ 1] [ 4] [0800] +18:39:20 [ 7] [ 10] [0320113827] +18:39:20 [ 11] [ 6] [157751] +18:39:20 [ 70] [ 3] [301] +18:39:20 ============================================================================ +18:39:20 + + +waiting on router queue for slot.... +18:39:20 Sending to : +18:39:20 ============================================================================ +18:39:20 ============================================================================ +18:39:20 Slot Id : <146> +18:39:20 Transaction Type : RESPONSE +18:39:20 Received From : +18:39:20 ============================================================================ +18:39:20 FNo. Len. Field Value +18:39:20 ============================================================================ +18:39:20 [ 1] [ 4] [0810] +18:39:20 [ 7] [ 10] [0320113827] +18:39:20 [ 11] [ 6] [157751] +18:39:20 [ 39] [ 2] [00] +18:39:20 [ 70] [ 3] [301] +18:39:20 ============================================================================ +18:39:20 Calculate Source COMM Id = 2 +18:39:20 ============================================================================ +18:39:20 + + +waiting on router queue for slot.... +18:39:23 ============================================================================ +18:39:23 Slot Id : <167> +18:39:23 Transaction Type : REQUEST +18:39:23 Received From : +18:39:23 ============================================================================ +18:39:23 FNo. Len. Field Value +18:39:23 ============================================================================ +18:39:23 [ 1] [ 4] [0200] +18:39:23 [ 2] [ 16] [6688990700331307] +18:39:23 [ 3] [ 6] [013000] +18:39:23 [ 4] [ 12] [000010000000] +18:39:23 [ 7] [ 10] [0320183918] +18:39:23 [ 11] [ 6] [829512] +18:39:23 [ 12] [ 6] [183918] +18:39:23 [ 13] [ 4] [0320] +18:39:23 [ 15] [ 4] [0320] +18:39:23 [ 18] [ 4] [6011] +18:39:23 [ 22] [ 3] [900] +18:39:23 [ 25] [ 2] [02] +18:39:23 [ 28] [ 9] [D00002000] +18:39:23 [ 32] [ 6] [621354] +18:39:23 [ 35] [ 37] [6688990700331307=44060071130724300000] +18:39:23 [ 37] [ 12] [507903863767] +18:39:23 [ 41] [ 8] [01010200] +18:39:23 [ 42] [ 15] [NATIVE ] +18:39:23 [ 43] [ 40] [Thangone Market Xaythany LAO] +18:39:23 [ 49] [ 3] [418] +18:39:23 [ 52] [ 16] [283DC3BABB4535E9] +18:39:23 ============================================================================ +18:39:23 + + +waiting on router queue for slot.... +18:39:23 Sending to : +18:39:23 ============================================================================ +18:39:23 Sending to : +18:39:23 ============================================================================ +18:39:24 ============================================================================ +18:39:24 Slot Id : <167> +18:39:24 Transaction Type : REQUEST +18:39:24 Received From : +18:39:24 ============================================================================ +18:39:24 FNo. Len. Field Value +18:39:24 ============================================================================ +18:39:24 [ 1] [ 4] [0200] +18:39:24 [ 2] [ 16] [6688990700331307] +18:39:24 [ 3] [ 6] [013000] +18:39:24 [ 4] [ 12] [000010000000] +18:39:24 [ 7] [ 10] [0320183918] +18:39:24 [ 11] [ 6] [829512] +18:39:24 [ 12] [ 6] [183918] +18:39:24 [ 13] [ 4] [0320] +18:39:24 [ 15] [ 4] [0320] +18:39:24 [ 18] [ 4] [6011] +18:39:24 [ 22] [ 3] [900] +18:39:24 [ 25] [ 2] [02] +18:39:24 [ 28] [ 9] [D00002000] +18:39:24 [ 32] [ 6] [621354] +18:39:24 [ 35] [ 37] [6688990700331307=44060071130724300000] +18:39:24 [ 37] [ 12] [507903863767] +18:39:24 [ 41] [ 8] [01010200] +18:39:24 [ 42] [ 15] [NATIVE ] +18:39:24 [ 43] [ 40] [Thangone Market Xaythany LAO] +18:39:24 [ 49] [ 3] [418] +18:39:24 [ 52] [ 16] [283DC3BABB4535E9] +18:39:24 ============================================================================ +18:39:24 + + +waiting on router queue for slot.... +18:39:24 Sending to : +18:39:24 ============================================================================ +18:39:24 ============================================================================ +18:39:24 Slot Id : <167> +18:39:24 Transaction Type : REQUEST +18:39:24 Received From : +18:39:24 ============================================================================ +18:39:24 FNo. Len. Field Value +18:39:24 ============================================================================ +18:39:24 [ 1] [ 4] [0200] +18:39:24 [ 2] [ 16] [6688990700331307] +18:39:24 [ 3] [ 6] [013000] +18:39:24 [ 4] [ 12] [000010000000] +18:39:24 [ 7] [ 10] [0320183918] +18:39:24 [ 11] [ 6] [829512] +18:39:24 [ 12] [ 6] [183918] +18:39:24 [ 13] [ 4] [0320] +18:39:24 [ 15] [ 4] [0320] +18:39:24 [ 18] [ 4] [6011] +18:39:24 [ 22] [ 3] [900] +18:39:24 [ 25] [ 2] [02] +18:39:24 [ 28] [ 9] [D00002000] +18:39:24 [ 32] [ 6] [621354] +18:39:24 [ 35] [ 37] [6688990700331307=44060071130724300000] +18:39:24 [ 37] [ 12] [507903863767] +18:39:24 [ 41] [ 8] [01010200] +18:39:24 [ 42] [ 15] [NATIVE ] +18:39:24 [ 43] [ 40] [Thangone Market Xaythany LAO] +18:39:24 [ 49] [ 3] [418] +18:39:24 [ 52] [ 16] [4A7E46A26902F98F] +18:39:24 ============================================================================ +18:39:24 + + +waiting on router queue for slot.... +18:39:24 Sending to : <4> +18:39:24 ============================================================================ +18:39:25 ============================================================================ +18:39:25 Slot Id : <167> +18:39:25 Transaction Type : RESPONSE +18:39:25 Received From : +18:39:25 ============================================================================ +18:39:25 FNo. Len. Field Value +18:39:25 ============================================================================ +18:39:25 [ 1] [ 4] [0210] +18:39:25 [ 2] [ 16] [6688990700331307] +18:39:25 [ 3] [ 6] [013000] +18:39:25 [ 4] [ 12] [000010000000] +18:39:25 [ 11] [ 6] [829512] +18:39:25 [ 12] [ 6] [183918] +18:39:25 [ 15] [ 4] [0320] +18:39:25 [ 18] [ 4] [6011] +18:39:25 [ 32] [ 6] [621354] +18:39:25 [ 35] [ 37] [6688990700331307=44060071130724300000] +18:39:25 [ 37] [ 12] [507903863767] +18:39:25 [ 38] [ 6] [647253] +18:39:25 [ 39] [ 2] [00] +18:39:25 [ 41] [ 8] [01010200] +18:39:25 [ 49] [ 3] [418] +18:39:25 [ 54] [ 20] [3002418C000037347675] +18:39:25 ============================================================================ +18:39:25 Sending to : +18:39:25 ============================================================================ +18:39:25 + + +waiting on router queue for slot.... +18:39:26 ============================================================================ +18:39:26 Slot Id : <167> +18:39:26 Transaction Type : RESPONSE +18:39:26 Received From : +18:39:26 ============================================================================ +18:39:26 FNo. Len. Field Value +18:39:26 ============================================================================ +18:39:26 [ 1] [ 4] [0210] +18:39:26 [ 2] [ 16] [6688990700331307] +18:39:26 [ 3] [ 6] [013000] +18:39:26 [ 4] [ 12] [000010000000] +18:39:26 [ 11] [ 6] [829512] +18:39:26 [ 12] [ 6] [183918] +18:39:26 [ 15] [ 4] [0320] +18:39:26 [ 18] [ 4] [6011] +18:39:26 [ 32] [ 6] [621354] +18:39:26 [ 35] [ 37] [6688990700331307=44060071130724300000] +18:39:26 [ 37] [ 12] [507903863767] +18:39:26 [ 38] [ 6] [647253] +18:39:26 [ 39] [ 2] [00] +18:39:26 [ 41] [ 8] [01010200] +18:39:26 [ 49] [ 3] [418] +18:39:26 [ 54] [ 20] [3002418C000037347675] +18:39:26 ============================================================================ +18:39:26 Calculate Source COMM Id = 0 +18:39:26 ============================================================================ +18:39:26 + + +waiting on router queue for slot.... +18:39:31 ============================================================================ +18:39:31 Slot Id : <137> +18:39:31 Transaction Type : REQUEST +18:39:31 Received From : +18:39:31 ============================================================================ +18:39:31 FNo. Len. Field Value +18:39:31 ============================================================================ +18:39:31 [ 1] [ 4] [0800] +18:39:31 [ 7] [ 10] [0320113838] +18:39:31 [ 11] [ 6] [157752] +18:39:31 [ 70] [ 3] [301] +18:39:31 ============================================================================ +18:39:31 + + +waiting on router queue for slot.... +18:39:31 Sending to : +18:39:31 ============================================================================ +18:39:31 ============================================================================ +18:39:31 Slot Id : <137> +18:39:31 Transaction Type : RESPONSE +18:39:31 Received From : +18:39:31 ============================================================================ +18:39:31 FNo. Len. Field Value +18:39:31 ============================================================================ +18:39:31 [ 1] [ 4] [0810] +18:39:31 [ 7] [ 10] [0320113838] +18:39:31 [ 11] [ 6] [157752] +18:39:31 [ 39] [ 2] [00] +18:39:31 [ 70] [ 3] [301] +18:39:31 ============================================================================ +18:39:31 Calculate Source COMM Id = 2 +18:39:31 ============================================================================ +18:39:31 + + +waiting on router queue for slot.... +18:39:41 ============================================================================ +18:39:41 Slot Id : <87> +18:39:41 Transaction Type : REQUEST +18:39:41 Received From : +18:39:41 ============================================================================ +18:39:41 FNo. Len. Field Value +18:39:41 ============================================================================ +18:39:41 [ 1] [ 4] [0800] +18:39:41 [ 7] [ 10] [0320113848] +18:39:41 [ 11] [ 6] [157753] +18:39:41 [ 70] [ 3] [301] +18:39:41 ============================================================================ +18:39:41 + + +waiting on router queue for slot.... +18:39:41 Sending to : +18:39:41 ============================================================================ +18:39:41 ============================================================================ +18:39:41 Slot Id : <87> +18:39:41 Transaction Type : RESPONSE +18:39:41 Received From : +18:39:41 ============================================================================ +18:39:41 FNo. Len. Field Value +18:39:41 ============================================================================ +18:39:41 [ 1] [ 4] [0810] +18:39:41 [ 7] [ 10] [0320113848] +18:39:41 [ 11] [ 6] [157753] +18:39:41 [ 39] [ 2] [00] +18:39:41 [ 70] [ 3] [301] +18:39:41 ============================================================================ +18:39:41 Calculate Source COMM Id = 2 +18:39:41 ============================================================================ +18:39:41 + + +waiting on router queue for slot.... +18:39:45 ============================================================================ +18:39:45 Slot Id : <130> +18:39:45 Transaction Type : REQUEST +18:39:45 Received From : +18:39:45 ============================================================================ +18:39:45 FNo. Len. Field Value +18:39:45 ============================================================================ +18:39:45 [ 1] [ 4] [0800] +18:39:45 [ 2] [ 5] [02531] +18:39:45 [ 3] [ 6] [579188] +18:39:45 [ 7] [ 10] [0320113945] +18:39:45 [ 11] [ 6] [807495] +18:39:45 [ 15] [ 10] [0320113945] +18:39:45 [ 37] [ 11] [57918807495] +18:39:45 [ 70] [ 3] [001] +18:39:45 ============================================================================ +18:39:45 + + +waiting on router queue for slot.... +18:39:45 ============================================================================ +18:39:45 Slot Id : <130> +18:39:45 Transaction Type : RESPONSE +18:39:45 Received From : +18:39:45 ============================================================================ +18:39:45 FNo. Len. Field Value +18:39:45 ============================================================================ +18:39:45 [ 1] [ 4] [0810] +18:39:45 [ 7] [ 10] [0320113945] +18:39:45 [ 11] [ 6] [807495] +18:39:45 [ 15] [ 4] [0320] +18:39:45 [ 37] [ 12] [57918807495] +18:39:45 [ 39] [ 2] [00] +18:39:45 [ 70] [ 3] [001] +18:39:45 ============================================================================ +18:39:45 Sending to : +18:39:45 ============================================================================ +18:39:45 + + +waiting on router queue for slot.... +18:39:47 ============================================================================ +18:39:47 Slot Id : <157> +18:39:47 Transaction Type : REQUEST +18:39:47 Received From : +18:39:47 ============================================================================ +18:39:47 FNo. Len. Field Value +18:39:47 ============================================================================ +18:39:47 [ 1] [ 4] [0200] +18:39:47 [ 2] [ 16] [1808931800011569] +18:39:47 [ 3] [ 6] [011000] +18:39:47 [ 4] [ 12] [000010000000] +18:39:47 [ 7] [ 10] [0320183942] +18:39:47 [ 11] [ 6] [829592] +18:39:47 [ 12] [ 6] [183942] +18:39:47 [ 13] [ 4] [0320] +18:39:47 [ 15] [ 4] [0320] +18:39:47 [ 18] [ 4] [6011] +18:39:47 [ 22] [ 3] [900] +18:39:47 [ 25] [ 2] [02] +18:39:47 [ 28] [ 9] [D00002000] +18:39:47 [ 32] [ 6] [621354] +18:39:47 [ 35] [ 27] [1808931800011569=1803500210] +18:39:47 [ 37] [ 12] [507904635988] +18:39:47 [ 41] [ 8] [17000800] +18:39:47 [ 42] [ 15] [NATIVE ] +18:39:47 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:39:47 [ 49] [ 3] [418] +18:39:47 [ 52] [ 16] [7F860409BBC16762] +18:39:47 ============================================================================ +18:39:47 + + +waiting on router queue for slot.... +18:39:47 Sending to : +18:39:47 ============================================================================ +18:39:47 Sending to : +18:39:47 ============================================================================ +18:39:47 ============================================================================ +18:39:47 Slot Id : <157> +18:39:47 Transaction Type : REQUEST +18:39:47 Received From : +18:39:47 ============================================================================ +18:39:47 FNo. Len. Field Value +18:39:47 ============================================================================ +18:39:47 [ 1] [ 4] [0200] +18:39:47 [ 2] [ 16] [1808931800011569] +18:39:47 [ 3] [ 6] [011000] +18:39:47 [ 4] [ 12] [000010000000] +18:39:47 [ 7] [ 10] [0320183942] +18:39:47 [ 11] [ 6] [829592] +18:39:47 [ 12] [ 6] [183942] +18:39:47 [ 13] [ 4] [0320] +18:39:47 [ 15] [ 4] [0320] +18:39:47 [ 18] [ 4] [6011] +18:39:47 [ 22] [ 3] [900] +18:39:47 [ 25] [ 2] [02] +18:39:47 [ 28] [ 9] [D00002000] +18:39:47 [ 32] [ 6] [621354] +18:39:47 [ 35] [ 27] [1808931800011569=1803500210] +18:39:47 [ 37] [ 12] [507904635988] +18:39:47 [ 41] [ 8] [17000800] +18:39:47 [ 42] [ 15] [NATIVE ] +18:39:47 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:39:47 [ 49] [ 3] [418] +18:39:47 [ 52] [ 16] [7F860409BBC16762] +18:39:47 ============================================================================ +18:39:47 + + +waiting on router queue for slot.... +18:39:47 Sending to : +18:39:47 ============================================================================ +18:39:48 ============================================================================ +18:39:48 Slot Id : <157> +18:39:48 Transaction Type : REQUEST +18:39:48 Received From : +18:39:48 ============================================================================ +18:39:48 FNo. Len. Field Value +18:39:48 ============================================================================ +18:39:48 [ 1] [ 4] [0200] +18:39:48 [ 2] [ 16] [1808931800011569] +18:39:48 [ 3] [ 6] [011000] +18:39:48 [ 4] [ 12] [000010000000] +18:39:48 [ 7] [ 10] [0320183942] +18:39:48 [ 11] [ 6] [829592] +18:39:48 [ 12] [ 6] [183942] +18:39:48 [ 13] [ 4] [0320] +18:39:48 [ 15] [ 4] [0320] +18:39:48 [ 18] [ 4] [6011] +18:39:48 [ 22] [ 3] [900] +18:39:48 [ 25] [ 2] [02] +18:39:48 [ 28] [ 9] [D00002000] +18:39:48 [ 32] [ 6] [621354] +18:39:48 [ 35] [ 27] [1808931800011569=1803500210] +18:39:48 [ 37] [ 12] [507904635988] +18:39:48 [ 41] [ 8] [17000800] +18:39:48 [ 42] [ 15] [NATIVE ] +18:39:48 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:39:48 [ 49] [ 3] [418] +18:39:48 [ 52] [ 16] [9D31CC6F73FF9EB9] +18:39:48 ============================================================================ +18:39:48 + + +waiting on router queue for slot.... +18:39:48 Sending to : <2> +18:39:48 ============================================================================ +18:39:54 ============================================================================ +18:39:54 Slot Id : <157> +18:39:54 Transaction Type : RESPONSE +18:39:54 Received From : +18:39:54 ============================================================================ +18:39:54 FNo. Len. Field Value +18:39:54 ============================================================================ +18:39:54 [ 1] [ 4] [0210] +18:39:54 [ 2] [ 16] [1808931800011569] +18:39:54 [ 3] [ 6] [011000] +18:39:54 [ 4] [ 12] [000010000000] +18:39:54 [ 6] [ 12] [000010000000] +18:39:54 [ 7] [ 10] [0320183942] +18:39:54 [ 11] [ 6] [829592] +18:39:54 [ 12] [ 6] [183942] +18:39:54 [ 13] [ 4] [0320] +18:39:54 [ 18] [ 4] [6011] +18:39:54 [ 19] [ 3] [418] +18:39:54 [ 22] [ 3] [021] +18:39:54 [ 32] [ 6] [621354] +18:39:54 [ 35] [ 27] [1808931800011569=1803500210] +18:39:54 [ 37] [ 12] [507904635988] +18:39:54 [ 38] [ 6] [829592] +18:39:54 [ 39] [ 2] [00] +18:39:54 [ 41] [ 8] [17000800] +18:39:54 [ 49] [ 3] [418] +18:39:54 [ 52] [ 16] [9D31CC6F73FF9EB9] +18:39:54 [ 54] [ 20] [1001418C000206742600] +18:39:54 ============================================================================ +18:39:54 Sending to : +18:39:54 ============================================================================ +18:39:54 + + +waiting on router queue for slot.... +18:39:56 ============================================================================ +18:39:56 Slot Id : <157> +18:39:56 Transaction Type : RESPONSE +18:39:56 Received From : +18:39:56 ============================================================================ +18:39:56 FNo. Len. Field Value +18:39:56 ============================================================================ +18:39:56 [ 1] [ 4] [0210] +18:39:56 [ 2] [ 16] [1808931800011569] +18:39:56 [ 3] [ 6] [011000] +18:39:56 [ 4] [ 12] [000010000000] +18:39:56 [ 6] [ 12] [000010000000] +18:39:56 [ 7] [ 10] [0320183942] +18:39:56 [ 11] [ 6] [829592] +18:39:56 [ 12] [ 6] [183942] +18:39:56 [ 13] [ 4] [0320] +18:39:56 [ 18] [ 4] [6011] +18:39:56 [ 19] [ 3] [418] +18:39:56 [ 22] [ 3] [021] +18:39:56 [ 32] [ 6] [621354] +18:39:56 [ 35] [ 27] [1808931800011569=1803500210] +18:39:56 [ 37] [ 12] [507904635988] +18:39:56 [ 38] [ 6] [829592] +18:39:56 [ 39] [ 2] [00] +18:39:56 [ 41] [ 8] [17000800] +18:39:56 [ 49] [ 3] [418] +18:39:56 [ 52] [ 16] [9D31CC6F73FF9EB9] +18:39:56 [ 54] [ 20] [1001418C000206742600] +18:39:56 ============================================================================ +18:39:56 Calculate Source COMM Id = 0 +18:39:56 ============================================================================ +18:39:56 + + +waiting on router queue for slot.... +18:39:57 ============================================================================ +18:39:57 Slot Id : <128> +18:39:57 Transaction Type : REQUEST +18:39:57 Received From : +18:39:57 ============================================================================ +18:39:57 FNo. Len. Field Value +18:39:57 ============================================================================ +18:39:57 [ 1] [ 4] [0800] +18:39:57 [ 7] [ 10] [0320114742] +18:39:57 [ 11] [ 6] [007338] +18:39:57 [ 37] [ 12] [57918007338] +18:39:57 [ 70] [ 3] [301] +18:39:57 ============================================================================ +18:39:57 + + +waiting on router queue for slot.... +18:39:57 Sending to : +18:39:57 ============================================================================ +18:39:57 ============================================================================ +18:39:57 Slot Id : <128> +18:39:57 Transaction Type : RESPONSE +18:39:57 Received From : +18:39:57 ============================================================================ +18:39:57 FNo. Len. Field Value +18:39:57 ============================================================================ +18:39:57 [ 1] [ 4] [0810] +18:39:57 [ 7] [ 10] [0320114742] +18:39:57 [ 11] [ 6] [007338] +18:39:57 [ 37] [ 12] [579180073380] +18:39:57 [ 39] [ 2] [00] +18:39:57 [ 70] [ 3] [810] +18:39:57 ============================================================================ +18:39:57 Calculate Source COMM Id = 1 +18:39:57 ============================================================================ +18:39:57 + + +waiting on router queue for slot.... +18:40:02 ============================================================================ +18:40:02 Slot Id : <175> +18:40:02 Transaction Type : REQUEST +18:40:02 Received From : +18:40:02 ============================================================================ +18:40:02 FNo. Len. Field Value +18:40:02 ============================================================================ +18:40:02 [ 1] [ 4] [0800] +18:40:02 [ 7] [ 10] [0320113908] +18:40:02 [ 11] [ 6] [157754] +18:40:02 [ 70] [ 3] [301] +18:40:02 ============================================================================ +18:40:02 + + +waiting on router queue for slot.... +18:40:02 Sending to : +18:40:02 ============================================================================ +18:40:02 ============================================================================ +18:40:02 Slot Id : <175> +18:40:02 Transaction Type : RESPONSE +18:40:02 Received From : +18:40:02 ============================================================================ +18:40:02 FNo. Len. Field Value +18:40:02 ============================================================================ +18:40:02 [ 1] [ 4] [0810] +18:40:02 [ 7] [ 10] [0320113908] +18:40:02 [ 11] [ 6] [157754] +18:40:02 [ 39] [ 2] [00] +18:40:02 [ 70] [ 3] [301] +18:40:02 ============================================================================ +18:40:02 Calculate Source COMM Id = 2 +18:40:02 ============================================================================ +18:40:02 + + +waiting on router queue for slot.... +18:40:09 ============================================================================ +18:40:09 Slot Id : <141> +18:40:09 Transaction Type : REQUEST +18:40:09 Received From : +18:40:09 ============================================================================ +18:40:09 FNo. Len. Field Value +18:40:09 ============================================================================ +18:40:09 [ 1] [ 4] [0800] +18:40:09 [ 7] [ 10] [0321015157] +18:40:09 [ 11] [ 6] [185157] +18:40:09 [ 37] [ 12] [57918185157] +18:40:09 [ 70] [ 3] [301] +18:40:09 ============================================================================ +18:40:09 + + +waiting on router queue for slot.... +18:40:09 Sending to : +18:40:09 ============================================================================ +18:40:09 ============================================================================ +18:40:09 Slot Id : <141> +18:40:09 Transaction Type : RESPONSE +18:40:09 Received From : +18:40:09 ============================================================================ +18:40:09 FNo. Len. Field Value +18:40:09 ============================================================================ +18:40:09 [ 1] [ 4] [0810] +18:40:09 [ 7] [ 10] [0321015157] +18:40:09 [ 11] [ 6] [185157] +18:40:09 [ 37] [ 12] [579181851570] +18:40:09 [ 39] [ 2] [00] +18:40:09 [ 70] [ 3] [810] +18:40:09 ============================================================================ +18:40:09 Calculate Source COMM Id = 6 +18:40:09 ============================================================================ +18:40:09 + + +waiting on router queue for slot.... +18:40:14 ============================================================================ +18:40:14 Slot Id : <170> +18:40:14 Transaction Type : REQUEST +18:40:14 Received From : +18:40:14 ============================================================================ +18:40:14 FNo. Len. Field Value +18:40:14 ============================================================================ +18:40:14 [ 1] [ 4] [0200] +18:40:14 [ 2] [ 16] [6213548000567584] +18:40:14 [ 3] [ 6] [010000] +18:40:14 [ 4] [ 12] [000010000000] +18:40:14 [ 7] [ 10] [0320183804] +18:40:14 [ 11] [ 6] [954920] +18:40:14 [ 12] [ 6] [183804] +18:40:14 [ 13] [ 4] [0320] +18:40:14 [ 15] [ 4] [0320] +18:40:14 [ 18] [ 4] [6011] +18:40:14 [ 19] [ 3] [418] +18:40:14 [ 22] [ 3] [021] +18:40:14 [ 25] [ 2] [01] +18:40:14 [ 28] [ 9] [D00002000] +18:40:14 [ 32] [ 6] [668899] +18:40:14 [ 35] [ 32] [6213548000567584=190212016758534] +18:40:14 [ 37] [ 12] [507902093463] +18:40:14 [ 41] [ 8] [03020021] +18:40:14 [ 42] [ 15] [APT ] +18:40:14 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +18:40:14 [ 49] [ 3] [418] +18:40:14 [ 52] [ 16] [711EDA2D954E8EDC] +18:40:14 ============================================================================ +18:40:14 + + +waiting on router queue for slot.... +18:40:14 Sending to : +18:40:14 ============================================================================ +18:40:14 Sending to : +18:40:14 ============================================================================ +18:40:15 ============================================================================ +18:40:15 Slot Id : <170> +18:40:15 Transaction Type : REQUEST +18:40:15 Received From : +18:40:15 ============================================================================ +18:40:15 FNo. Len. Field Value +18:40:15 ============================================================================ +18:40:15 [ 1] [ 4] [0200] +18:40:15 [ 2] [ 16] [6213548000567584] +18:40:15 [ 3] [ 6] [010000] +18:40:15 [ 4] [ 12] [000010000000] +18:40:15 [ 7] [ 10] [0320183804] +18:40:15 [ 11] [ 6] [954920] +18:40:15 [ 12] [ 6] [183804] +18:40:15 [ 13] [ 4] [0320] +18:40:15 [ 15] [ 4] [0320] +18:40:15 [ 18] [ 4] [6011] +18:40:15 [ 19] [ 3] [418] +18:40:15 [ 22] [ 3] [021] +18:40:15 [ 25] [ 2] [01] +18:40:15 [ 28] [ 9] [D00002000] +18:40:15 [ 32] [ 6] [668899] +18:40:15 [ 35] [ 32] [6213548000567584=190212016758534] +18:40:15 [ 37] [ 12] [507902093463] +18:40:15 [ 41] [ 8] [03020021] +18:40:15 [ 42] [ 15] [APT ] +18:40:15 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +18:40:15 [ 49] [ 3] [418] +18:40:15 [ 52] [ 16] [711EDA2D954E8EDC] +18:40:15 ============================================================================ +18:40:15 + + +waiting on router queue for slot.... +18:40:15 Sending to : +18:40:15 ============================================================================ +18:40:15 ============================================================================ +18:40:15 Slot Id : <170> +18:40:15 Transaction Type : REQUEST +18:40:15 Received From : +18:40:15 ============================================================================ +18:40:15 FNo. Len. Field Value +18:40:15 ============================================================================ +18:40:15 [ 1] [ 4] [0200] +18:40:15 [ 2] [ 16] [6213548000567584] +18:40:15 [ 3] [ 6] [010000] +18:40:15 [ 4] [ 12] [000010000000] +18:40:15 [ 7] [ 10] [0320183804] +18:40:15 [ 11] [ 6] [954920] +18:40:15 [ 12] [ 6] [183804] +18:40:15 [ 13] [ 4] [0320] +18:40:15 [ 15] [ 4] [0320] +18:40:15 [ 18] [ 4] [6011] +18:40:15 [ 19] [ 3] [418] +18:40:15 [ 22] [ 3] [021] +18:40:15 [ 25] [ 2] [01] +18:40:15 [ 28] [ 9] [D00002000] +18:40:15 [ 32] [ 6] [668899] +18:40:15 [ 35] [ 32] [6213548000567584=190212016758534] +18:40:15 [ 37] [ 12] [507902093463] +18:40:15 [ 41] [ 8] [03020021] +18:40:15 [ 42] [ 15] [APT ] +18:40:15 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +18:40:15 [ 49] [ 3] [418] +18:40:15 [ 52] [ 16] [D7FF236430E6C05D] +18:40:15 ============================================================================ +18:40:15 + + +waiting on router queue for slot.... +18:40:15 Sending to : <0> +18:40:15 ============================================================================ +18:40:15 ============================================================================ +18:40:15 Slot Id : <170> +18:40:15 Transaction Type : RESPONSE +18:40:15 Received From : +18:40:15 ============================================================================ +18:40:15 FNo. Len. Field Value +18:40:15 ============================================================================ +18:40:15 [ 1] [ 4] [0210] +18:40:15 [ 2] [ 16] [6213548000567584] +18:40:15 [ 3] [ 6] [010000] +18:40:15 [ 4] [ 12] [000010000000] +18:40:15 [ 7] [ 10] [0320183804] +18:40:15 [ 11] [ 6] [954920] +18:40:15 [ 12] [ 6] [183804] +18:40:15 [ 13] [ 4] [0320] +18:40:15 [ 15] [ 4] [0320] +18:40:15 [ 18] [ 4] [6011] +18:40:15 [ 19] [ 3] [418] +18:40:15 [ 32] [ 6] [668899] +18:40:15 [ 35] [ 32] [6213548000567584=190212016758534] +18:40:15 [ 37] [ 12] [507902093463] +18:40:15 [ 38] [ 6] [199402] +18:40:15 [ 39] [ 2] [00] +18:40:15 [ 41] [ 8] [03020021] +18:40:15 [ 49] [ 3] [418] +18:40:15 [ 54] [ 40] [0001418C0000173408970002418C000017340897] +18:40:15 ============================================================================ +18:40:15 Sending to : +18:40:15 ============================================================================ +18:40:15 + + +waiting on router queue for slot.... +18:40:17 ============================================================================ +18:40:17 Slot Id : <170> +18:40:17 Transaction Type : RESPONSE +18:40:17 Received From : +18:40:17 ============================================================================ +18:40:17 FNo. Len. Field Value +18:40:17 ============================================================================ +18:40:17 [ 1] [ 4] [0210] +18:40:17 [ 2] [ 16] [6213548000567584] +18:40:17 [ 3] [ 6] [010000] +18:40:17 [ 4] [ 12] [000010000000] +18:40:17 [ 7] [ 10] [0320183804] +18:40:17 [ 11] [ 6] [954920] +18:40:17 [ 12] [ 6] [183804] +18:40:17 [ 13] [ 4] [0320] +18:40:17 [ 15] [ 4] [0320] +18:40:17 [ 18] [ 4] [6011] +18:40:17 [ 19] [ 3] [418] +18:40:17 [ 32] [ 6] [668899] +18:40:17 [ 35] [ 32] [6213548000567584=190212016758534] +18:40:17 [ 37] [ 12] [507902093463] +18:40:17 [ 38] [ 6] [199402] +18:40:17 [ 39] [ 2] [00] +18:40:17 [ 41] [ 8] [03020021] +18:40:17 [ 49] [ 3] [418] +18:40:17 [ 54] [ 40] [0001418C0000173408970002418C000017340897] +18:40:17 ============================================================================ +18:40:17 Calculate Source COMM Id = 4 +18:40:17 ============================================================================ +18:40:17 + + +waiting on router queue for slot.... +18:40:18 ============================================================================ +18:40:18 Slot Id : <151> +18:40:18 Transaction Type : REQUEST +18:40:18 Received From : +18:40:18 ============================================================================ +18:40:18 FNo. Len. Field Value +18:40:18 ============================================================================ +18:40:18 [ 1] [ 4] [0800] +18:40:18 [ 7] [ 10] [0320113924] +18:40:18 [ 11] [ 6] [157755] +18:40:18 [ 70] [ 3] [301] +18:40:18 ============================================================================ +18:40:18 + + +waiting on router queue for slot.... +18:40:18 Sending to : +18:40:18 ============================================================================ +18:40:18 ============================================================================ +18:40:18 Slot Id : <151> +18:40:18 Transaction Type : RESPONSE +18:40:18 Received From : +18:40:18 ============================================================================ +18:40:18 FNo. Len. Field Value +18:40:18 ============================================================================ +18:40:18 [ 1] [ 4] [0810] +18:40:18 [ 7] [ 10] [0320113924] +18:40:18 [ 11] [ 6] [157755] +18:40:18 [ 39] [ 2] [00] +18:40:18 [ 70] [ 3] [301] +18:40:18 ============================================================================ +18:40:18 Calculate Source COMM Id = 2 +18:40:18 ============================================================================ +18:40:18 + + +waiting on router queue for slot.... +18:40:29 ============================================================================ +18:40:29 Slot Id : <171> +18:40:29 Transaction Type : REQUEST +18:40:29 Received From : +18:40:29 ============================================================================ +18:40:29 FNo. Len. Field Value +18:40:29 ============================================================================ +18:40:29 [ 1] [ 4] [0200] +18:40:29 [ 2] [ 16] [6213544000149382] +18:40:29 [ 3] [ 6] [010000] +18:40:29 [ 4] [ 12] [000030000000] +18:40:29 [ 7] [ 10] [0320183818] +18:40:29 [ 11] [ 6] [954923] +18:40:29 [ 12] [ 6] [183818] +18:40:29 [ 13] [ 4] [0320] +18:40:29 [ 15] [ 4] [0320] +18:40:29 [ 18] [ 4] [6011] +18:40:29 [ 19] [ 3] [418] +18:40:29 [ 22] [ 3] [021] +18:40:29 [ 25] [ 2] [01] +18:40:29 [ 28] [ 9] [D00002000] +18:40:29 [ 32] [ 6] [668899] +18:40:29 [ 35] [ 32] [6213544000149382=491212014938722] +18:40:29 [ 37] [ 12] [507900502567] +18:40:29 [ 41] [ 8] [03011001] +18:40:29 [ 42] [ 15] [APT ] +18:40:29 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +18:40:29 [ 49] [ 3] [418] +18:40:29 [ 52] [ 16] [B46A5AEF17C5478C] +18:40:29 ============================================================================ +18:40:29 + + +waiting on router queue for slot.... +18:40:29 Sending to : +18:40:29 ============================================================================ +18:40:29 Sending to : +18:40:29 ============================================================================ +18:40:29 ============================================================================ +18:40:29 Slot Id : <171> +18:40:29 Transaction Type : REQUEST +18:40:29 Received From : +18:40:29 ============================================================================ +18:40:29 FNo. Len. Field Value +18:40:29 ============================================================================ +18:40:29 [ 1] [ 4] [0200] +18:40:29 [ 2] [ 16] [6213544000149382] +18:40:29 [ 3] [ 6] [010000] +18:40:29 [ 4] [ 12] [000030000000] +18:40:29 [ 7] [ 10] [0320183818] +18:40:29 [ 11] [ 6] [954923] +18:40:29 [ 12] [ 6] [183818] +18:40:29 [ 13] [ 4] [0320] +18:40:29 [ 15] [ 4] [0320] +18:40:29 [ 18] [ 4] [6011] +18:40:29 [ 19] [ 3] [418] +18:40:29 [ 22] [ 3] [021] +18:40:29 [ 25] [ 2] [01] +18:40:29 [ 28] [ 9] [D00002000] +18:40:29 [ 32] [ 6] [668899] +18:40:29 [ 35] [ 32] [6213544000149382=491212014938722] +18:40:29 [ 37] [ 12] [507900502567] +18:40:29 [ 41] [ 8] [03011001] +18:40:29 [ 42] [ 15] [APT ] +18:40:29 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +18:40:29 [ 49] [ 3] [418] +18:40:29 [ 52] [ 16] [B46A5AEF17C5478C] +18:40:29 ============================================================================ +18:40:29 + + +waiting on router queue for slot.... +18:40:29 Sending to : +18:40:29 ============================================================================ +18:40:29 ============================================================================ +18:40:29 Slot Id : <171> +18:40:29 Transaction Type : REQUEST +18:40:29 Received From : +18:40:29 ============================================================================ +18:40:29 FNo. Len. Field Value +18:40:29 ============================================================================ +18:40:29 [ 1] [ 4] [0200] +18:40:29 [ 2] [ 16] [6213544000149382] +18:40:29 [ 3] [ 6] [010000] +18:40:29 [ 4] [ 12] [000030000000] +18:40:29 [ 7] [ 10] [0320183818] +18:40:29 [ 11] [ 6] [954923] +18:40:29 [ 12] [ 6] [183818] +18:40:29 [ 13] [ 4] [0320] +18:40:29 [ 15] [ 4] [0320] +18:40:29 [ 18] [ 4] [6011] +18:40:29 [ 19] [ 3] [418] +18:40:29 [ 22] [ 3] [021] +18:40:29 [ 25] [ 2] [01] +18:40:29 [ 28] [ 9] [D00002000] +18:40:29 [ 32] [ 6] [668899] +18:40:29 [ 35] [ 32] [6213544000149382=491212014938722] +18:40:29 [ 37] [ 12] [507900502567] +18:40:29 [ 41] [ 8] [03011001] +18:40:29 [ 42] [ 15] [APT ] +18:40:29 [ 43] [ 40] [ PAKSAN BR OFFICE PAKSAN ] +18:40:29 [ 49] [ 3] [418] +18:40:29 [ 52] [ 16] [CD660F421D1B601B] +18:40:29 ============================================================================ +18:40:29 + + +waiting on router queue for slot.... +18:40:29 Sending to : <0> +18:40:29 ============================================================================ +18:40:30 ============================================================================ +18:40:30 Slot Id : <171> +18:40:30 Transaction Type : RESPONSE +18:40:30 Received From : +18:40:30 ============================================================================ +18:40:30 FNo. Len. Field Value +18:40:30 ============================================================================ +18:40:30 [ 1] [ 4] [0210] +18:40:30 [ 2] [ 16] [6213544000149382] +18:40:30 [ 3] [ 6] [010000] +18:40:30 [ 4] [ 12] [000030000000] +18:40:30 [ 7] [ 10] [0320183818] +18:40:30 [ 11] [ 6] [954923] +18:40:30 [ 12] [ 6] [183818] +18:40:30 [ 13] [ 4] [0320] +18:40:30 [ 15] [ 4] [0320] +18:40:30 [ 18] [ 4] [6011] +18:40:30 [ 19] [ 3] [418] +18:40:30 [ 32] [ 6] [668899] +18:40:30 [ 35] [ 32] [6213544000149382=491212014938722] +18:40:30 [ 37] [ 12] [507900502567] +18:40:30 [ 38] [ 6] [465439] +18:40:30 [ 39] [ 2] [00] +18:40:30 [ 41] [ 8] [03011001] +18:40:30 [ 49] [ 3] [418] +18:40:30 [ 54] [ 40] [0001418C0004248234670002418C000424823467] +18:40:30 ============================================================================ +18:40:30 Sending to : +18:40:30 ============================================================================ +18:40:30 + + +waiting on router queue for slot.... +18:40:31 ============================================================================ +18:40:31 Slot Id : <171> +18:40:31 Transaction Type : RESPONSE +18:40:31 Received From : +18:40:31 ============================================================================ +18:40:31 FNo. Len. Field Value +18:40:31 ============================================================================ +18:40:31 [ 1] [ 4] [0210] +18:40:31 [ 2] [ 16] [6213544000149382] +18:40:31 [ 3] [ 6] [010000] +18:40:31 [ 4] [ 12] [000030000000] +18:40:31 [ 7] [ 10] [0320183818] +18:40:31 [ 11] [ 6] [954923] +18:40:31 [ 12] [ 6] [183818] +18:40:31 [ 13] [ 4] [0320] +18:40:31 [ 15] [ 4] [0320] +18:40:31 [ 18] [ 4] [6011] +18:40:31 [ 19] [ 3] [418] +18:40:31 [ 32] [ 6] [668899] +18:40:31 [ 35] [ 32] [6213544000149382=491212014938722] +18:40:31 [ 37] [ 12] [507900502567] +18:40:31 [ 38] [ 6] [465439] +18:40:31 [ 39] [ 2] [00] +18:40:31 [ 41] [ 8] [03011001] +18:40:31 [ 49] [ 3] [418] +18:40:31 [ 54] [ 40] [0001418C0004248234670002418C000424823467] +18:40:31 ============================================================================ +18:40:31 Calculate Source COMM Id = 4 +18:40:31 ============================================================================ +18:40:31 + + +waiting on router queue for slot.... +18:40:34 ============================================================================ +18:40:34 Slot Id : <172> +18:40:34 Transaction Type : REQUEST +18:40:34 Received From : +18:40:34 ============================================================================ +18:40:34 FNo. Len. Field Value +18:40:34 ============================================================================ +18:40:34 [ 1] [ 4] [0800] +18:40:34 [ 7] [ 10] [0320113941] +18:40:34 [ 11] [ 6] [157756] +18:40:34 [ 70] [ 3] [301] +18:40:34 ============================================================================ +18:40:34 + + +waiting on router queue for slot.... +18:40:34 Sending to : +18:40:34 ============================================================================ +18:40:34 ============================================================================ +18:40:34 Slot Id : <172> +18:40:34 Transaction Type : RESPONSE +18:40:34 Received From : +18:40:34 ============================================================================ +18:40:34 FNo. Len. Field Value +18:40:34 ============================================================================ +18:40:34 [ 1] [ 4] [0810] +18:40:34 [ 7] [ 10] [0320113941] +18:40:34 [ 11] [ 6] [157756] +18:40:34 [ 39] [ 2] [00] +18:40:34 [ 70] [ 3] [301] +18:40:34 ============================================================================ +18:40:34 Calculate Source COMM Id = 2 +18:40:34 ============================================================================ +18:40:34 + + +waiting on router queue for slot.... +18:40:46 ============================================================================ +18:40:46 Slot Id : <164> +18:40:46 Transaction Type : REQUEST +18:40:46 Received From : +18:40:46 ============================================================================ +18:40:46 FNo. Len. Field Value +18:40:46 ============================================================================ +18:40:46 [ 1] [ 4] [0800] +18:40:46 [ 7] [ 10] [0320113953] +18:40:46 [ 11] [ 6] [157757] +18:40:46 [ 70] [ 3] [301] +18:40:46 ============================================================================ +18:40:46 + + +waiting on router queue for slot.... +18:40:46 Sending to : +18:40:46 ============================================================================ +18:40:46 ============================================================================ +18:40:46 Slot Id : <164> +18:40:46 Transaction Type : RESPONSE +18:40:46 Received From : +18:40:46 ============================================================================ +18:40:46 FNo. Len. Field Value +18:40:46 ============================================================================ +18:40:46 [ 1] [ 4] [0810] +18:40:46 [ 7] [ 10] [0320113953] +18:40:46 [ 11] [ 6] [157757] +18:40:46 [ 39] [ 2] [00] +18:40:46 [ 70] [ 3] [301] +18:40:46 ============================================================================ +18:40:46 Calculate Source COMM Id = 2 +18:40:46 ============================================================================ +18:40:46 + + +waiting on router queue for slot.... +18:40:47 ============================================================================ +18:40:47 Slot Id : <186> +18:40:47 Transaction Type : REQUEST +18:40:47 Received From : +18:40:47 ============================================================================ +18:40:47 FNo. Len. Field Value +18:40:47 ============================================================================ +18:40:47 [ 1] [ 4] [0800] +18:40:47 [ 2] [ 5] [02531] +18:40:47 [ 3] [ 6] [579188] +18:40:47 [ 7] [ 10] [0320114047] +18:40:47 [ 11] [ 6] [807496] +18:40:47 [ 15] [ 10] [0320114047] +18:40:47 [ 37] [ 11] [57918807496] +18:40:47 [ 70] [ 3] [001] +18:40:47 ============================================================================ +18:40:47 + + +waiting on router queue for slot.... +18:40:47 ============================================================================ +18:40:47 Slot Id : <186> +18:40:47 Transaction Type : RESPONSE +18:40:47 Received From : +18:40:47 ============================================================================ +18:40:47 FNo. Len. Field Value +18:40:47 ============================================================================ +18:40:47 [ 1] [ 4] [0810] +18:40:47 [ 7] [ 10] [0320114047] +18:40:47 [ 11] [ 6] [807496] +18:40:47 [ 15] [ 4] [0320] +18:40:47 [ 37] [ 12] [57918807496] +18:40:47 [ 39] [ 2] [00] +18:40:47 [ 70] [ 3] [001] +18:40:47 ============================================================================ +18:40:47 Sending to : +18:40:47 ============================================================================ +18:40:47 + + +waiting on router queue for slot.... +18:40:57 ============================================================================ +18:40:57 Slot Id : <126> +18:40:57 Transaction Type : REQUEST +18:40:57 Received From : +18:40:57 ============================================================================ +18:40:57 FNo. Len. Field Value +18:40:57 ============================================================================ +18:40:57 [ 1] [ 4] [0800] +18:40:57 [ 7] [ 10] [0320114003] +18:40:57 [ 11] [ 6] [157758] +18:40:57 [ 70] [ 3] [301] +18:40:57 ============================================================================ +18:40:57 + + +waiting on router queue for slot.... +18:40:57 Sending to : +18:40:57 ============================================================================ +18:40:57 ============================================================================ +18:40:57 Slot Id : <126> +18:40:57 Transaction Type : RESPONSE +18:40:57 Received From : +18:40:57 ============================================================================ +18:40:57 FNo. Len. Field Value +18:40:57 ============================================================================ +18:40:57 [ 1] [ 4] [0810] +18:40:57 [ 7] [ 10] [0320114003] +18:40:57 [ 11] [ 6] [157758] +18:40:57 [ 39] [ 2] [00] +18:40:57 [ 70] [ 3] [301] +18:40:57 ============================================================================ +18:40:57 Calculate Source COMM Id = 2 +18:40:57 ============================================================================ +18:40:57 + + +waiting on router queue for slot.... +18:41:12 ============================================================================ +18:41:12 Slot Id : <139> +18:41:12 Transaction Type : REQUEST +18:41:12 Received From : +18:41:12 ============================================================================ +18:41:12 FNo. Len. Field Value +18:41:12 ============================================================================ +18:41:12 [ 1] [ 4] [0800] +18:41:12 [ 7] [ 10] [0320114019] +18:41:12 [ 11] [ 6] [157759] +18:41:12 [ 70] [ 3] [301] +18:41:12 ============================================================================ +18:41:12 + + +waiting on router queue for slot.... +18:41:12 Sending to : +18:41:12 ============================================================================ +18:41:12 ============================================================================ +18:41:12 Slot Id : <139> +18:41:12 Transaction Type : RESPONSE +18:41:12 Received From : +18:41:12 ============================================================================ +18:41:12 FNo. Len. Field Value +18:41:12 ============================================================================ +18:41:12 [ 1] [ 4] [0810] +18:41:12 [ 7] [ 10] [0320114019] +18:41:12 [ 11] [ 6] [157759] +18:41:12 [ 39] [ 2] [00] +18:41:12 [ 70] [ 3] [301] +18:41:12 ============================================================================ +18:41:12 Calculate Source COMM Id = 2 +18:41:12 ============================================================================ +18:41:12 + + +waiting on router queue for slot.... +18:41:14 ============================================================================ +18:41:14 Slot Id : <202> +18:41:14 Transaction Type : REQUEST +18:41:14 Received From : +18:41:14 ============================================================================ +18:41:14 FNo. Len. Field Value +18:41:14 ============================================================================ +18:41:14 [ 1] [ 4] [0800] +18:41:14 [ 7] [ 10] [0321015302] +18:41:14 [ 11] [ 6] [185302] +18:41:14 [ 37] [ 12] [57918185302] +18:41:14 [ 70] [ 3] [301] +18:41:14 ============================================================================ +18:41:14 + + +waiting on router queue for slot.... +18:41:14 Sending to : +18:41:14 ============================================================================ +18:41:14 ============================================================================ +18:41:14 Slot Id : <202> +18:41:14 Transaction Type : RESPONSE +18:41:14 Received From : +18:41:14 ============================================================================ +18:41:14 FNo. Len. Field Value +18:41:14 ============================================================================ +18:41:14 [ 1] [ 4] [0810] +18:41:14 [ 7] [ 10] [0321015302] +18:41:14 [ 11] [ 6] [185302] +18:41:14 [ 37] [ 12] [579181853020] +18:41:14 [ 39] [ 2] [00] +18:41:14 [ 70] [ 3] [810] +18:41:14 ============================================================================ +18:41:14 Calculate Source COMM Id = 6 +18:41:14 ============================================================================ +18:41:14 + + +waiting on router queue for slot.... +18:41:23 ============================================================================ +18:41:23 Slot Id : <119> +18:41:23 Transaction Type : REQUEST +18:41:23 Received From : +18:41:23 ============================================================================ +18:41:23 FNo. Len. Field Value +18:41:23 ============================================================================ +18:41:23 [ 1] [ 4] [0800] +18:41:23 [ 7] [ 10] [0320113912] +18:41:23 [ 11] [ 6] [058029] +18:41:23 [ 37] [ 12] [57918058029] +18:41:23 [ 70] [ 3] [301] +18:41:23 ============================================================================ +18:41:23 + + +waiting on router queue for slot.... +18:41:23 Sending to : +18:41:23 ============================================================================ +18:41:23 ============================================================================ +18:41:23 Slot Id : <119> +18:41:23 Transaction Type : RESPONSE +18:41:23 Received From : +18:41:23 ============================================================================ +18:41:23 FNo. Len. Field Value +18:41:23 ============================================================================ +18:41:23 [ 1] [ 4] [0810] +18:41:23 [ 7] [ 10] [0320113912] +18:41:23 [ 11] [ 6] [058029] +18:41:23 [ 37] [ 12] [579180580290] +18:41:23 [ 39] [ 2] [00] +18:41:23 [ 70] [ 3] [810] +18:41:23 ============================================================================ +18:41:23 Calculate Source COMM Id = 4 +18:41:23 ============================================================================ +18:41:23 + + +waiting on router queue for slot.... +18:41:23 ============================================================================ +18:41:23 Slot Id : <148> +18:41:23 Transaction Type : REQUEST +18:41:23 Received From : +18:41:23 ============================================================================ +18:41:23 FNo. Len. Field Value +18:41:23 ============================================================================ +18:41:23 [ 1] [ 4] [0800] +18:41:23 [ 7] [ 10] [0320114030] +18:41:23 [ 11] [ 6] [157760] +18:41:23 [ 70] [ 3] [301] +18:41:23 ============================================================================ +18:41:23 + + +waiting on router queue for slot.... +18:41:23 Sending to : +18:41:23 ============================================================================ +18:41:23 ============================================================================ +18:41:23 Slot Id : <148> +18:41:23 Transaction Type : RESPONSE +18:41:23 Received From : +18:41:23 ============================================================================ +18:41:23 FNo. Len. Field Value +18:41:23 ============================================================================ +18:41:23 [ 1] [ 4] [0810] +18:41:23 [ 7] [ 10] [0320114030] +18:41:23 [ 11] [ 6] [157760] +18:41:23 [ 39] [ 2] [00] +18:41:23 [ 70] [ 3] [301] +18:41:23 ============================================================================ +18:41:23 Calculate Source COMM Id = 2 +18:41:23 ============================================================================ +18:41:23 + + +waiting on router queue for slot.... +18:41:38 ============================================================================ +18:41:38 Slot Id : <176> +18:41:38 Transaction Type : REQUEST +18:41:38 Received From : +18:41:38 ============================================================================ +18:41:38 FNo. Len. Field Value +18:41:38 ============================================================================ +18:41:38 [ 1] [ 4] [0800] +18:41:38 [ 7] [ 10] [0320114045] +18:41:38 [ 11] [ 6] [157761] +18:41:38 [ 70] [ 3] [301] +18:41:38 ============================================================================ +18:41:38 + + +waiting on router queue for slot.... +18:41:38 Sending to : +18:41:38 ============================================================================ +18:41:38 ============================================================================ +18:41:38 Slot Id : <176> +18:41:38 Transaction Type : RESPONSE +18:41:38 Received From : +18:41:38 ============================================================================ +18:41:38 FNo. Len. Field Value +18:41:38 ============================================================================ +18:41:38 [ 1] [ 4] [0810] +18:41:38 [ 7] [ 10] [0320114045] +18:41:38 [ 11] [ 6] [157761] +18:41:38 [ 39] [ 2] [00] +18:41:38 [ 70] [ 3] [301] +18:41:38 ============================================================================ +18:41:38 Calculate Source COMM Id = 2 +18:41:38 ============================================================================ +18:41:38 + + +waiting on router queue for slot.... +18:41:49 ============================================================================ +18:41:49 Slot Id : <144> +18:41:49 Transaction Type : REQUEST +18:41:49 Received From : +18:41:49 ============================================================================ +18:41:49 FNo. Len. Field Value +18:41:49 ============================================================================ +18:41:49 [ 1] [ 4] [0800] +18:41:49 [ 7] [ 10] [0320114056] +18:41:49 [ 11] [ 6] [157762] +18:41:49 [ 70] [ 3] [301] +18:41:49 ============================================================================ +18:41:49 + + +waiting on router queue for slot.... +18:41:49 Sending to : +18:41:49 ============================================================================ +18:41:49 ============================================================================ +18:41:49 Slot Id : <144> +18:41:49 Transaction Type : RESPONSE +18:41:49 Received From : +18:41:49 ============================================================================ +18:41:49 FNo. Len. Field Value +18:41:49 ============================================================================ +18:41:49 [ 1] [ 4] [0810] +18:41:49 [ 7] [ 10] [0320114056] +18:41:49 [ 11] [ 6] [157762] +18:41:49 [ 39] [ 2] [00] +18:41:49 [ 70] [ 3] [301] +18:41:49 ============================================================================ +18:41:49 Calculate Source COMM Id = 2 +18:41:49 ============================================================================ +18:41:49 + + +waiting on router queue for slot.... +18:41:49 ============================================================================ +18:41:49 Slot Id : <187> +18:41:49 Transaction Type : REQUEST +18:41:49 Received From : +18:41:49 ============================================================================ +18:41:49 FNo. Len. Field Value +18:41:49 ============================================================================ +18:41:49 [ 1] [ 4] [0800] +18:41:49 [ 2] [ 5] [02531] +18:41:49 [ 3] [ 6] [579188] +18:41:49 [ 7] [ 10] [0320114149] +18:41:49 [ 11] [ 6] [807497] +18:41:49 [ 15] [ 10] [0320114149] +18:41:49 [ 37] [ 11] [57918807497] +18:41:49 [ 70] [ 3] [001] +18:41:49 ============================================================================ +18:41:49 + + +waiting on router queue for slot.... +18:41:49 ============================================================================ +18:41:49 Slot Id : <187> +18:41:49 Transaction Type : RESPONSE +18:41:49 Received From : +18:41:49 ============================================================================ +18:41:49 FNo. Len. Field Value +18:41:49 ============================================================================ +18:41:49 [ 1] [ 4] [0810] +18:41:49 [ 7] [ 10] [0320114149] +18:41:49 [ 11] [ 6] [807497] +18:41:49 [ 15] [ 4] [0320] +18:41:49 [ 37] [ 12] [57918807497] +18:41:49 [ 39] [ 2] [00] +18:41:49 [ 70] [ 3] [001] +18:41:49 ============================================================================ +18:41:49 Sending to : +18:41:49 ============================================================================ +18:41:49 + + +waiting on router queue for slot.... +18:42:00 ============================================================================ +18:42:00 Slot Id : <182> +18:42:00 Transaction Type : REQUEST +18:42:00 Received From : +18:42:00 ============================================================================ +18:42:00 FNo. Len. Field Value +18:42:00 ============================================================================ +18:42:00 [ 1] [ 4] [0800] +18:42:00 [ 7] [ 10] [0320114107] +18:42:00 [ 11] [ 6] [157763] +18:42:00 [ 70] [ 3] [301] +18:42:00 ============================================================================ +18:42:00 + + +waiting on router queue for slot.... +18:42:00 Sending to : +18:42:00 ============================================================================ +18:42:00 ============================================================================ +18:42:00 Slot Id : <182> +18:42:00 Transaction Type : RESPONSE +18:42:00 Received From : +18:42:00 ============================================================================ +18:42:00 FNo. Len. Field Value +18:42:00 ============================================================================ +18:42:00 [ 1] [ 4] [0810] +18:42:00 [ 7] [ 10] [0320114107] +18:42:00 [ 11] [ 6] [157763] +18:42:00 [ 39] [ 2] [00] +18:42:00 [ 70] [ 3] [301] +18:42:00 ============================================================================ +18:42:00 Calculate Source COMM Id = 2 +18:42:00 ============================================================================ +18:42:00 + + +waiting on router queue for slot.... +18:42:08 ============================================================================ +18:42:08 Slot Id : <160> +18:42:08 Transaction Type : REQUEST +18:42:08 Received From : +18:42:08 ============================================================================ +18:42:08 FNo. Len. Field Value +18:42:08 ============================================================================ +18:42:08 [ 1] [ 4] [0200] +18:42:08 [ 2] [ 16] [6688990105370504] +18:42:08 [ 3] [ 6] [011000] +18:42:08 [ 4] [ 12] [000010000000] +18:42:08 [ 7] [ 10] [0320184203] +18:42:08 [ 11] [ 6] [829995] +18:42:08 [ 12] [ 6] [184203] +18:42:08 [ 13] [ 4] [0320] +18:42:08 [ 15] [ 4] [0320] +18:42:08 [ 18] [ 4] [6011] +18:42:08 [ 22] [ 3] [900] +18:42:08 [ 25] [ 2] [02] +18:42:08 [ 28] [ 9] [D00002000] +18:42:08 [ 32] [ 6] [621354] +18:42:08 [ 35] [ 37] [6688990105370504=43091231050477400000] +18:42:08 [ 37] [ 12] [507904635990] +18:42:08 [ 41] [ 8] [17000800] +18:42:08 [ 42] [ 15] [NATIVE ] +18:42:08 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:42:08 [ 49] [ 3] [418] +18:42:08 [ 52] [ 16] [9F916020C648851E] +18:42:08 ============================================================================ +18:42:08 + + +waiting on router queue for slot.... +18:42:08 Sending to : +18:42:08 ============================================================================ +18:42:08 Sending to : +18:42:08 ============================================================================ +18:42:08 ============================================================================ +18:42:08 Slot Id : <160> +18:42:08 Transaction Type : REQUEST +18:42:08 Received From : +18:42:08 ============================================================================ +18:42:08 FNo. Len. Field Value +18:42:08 ============================================================================ +18:42:08 [ 1] [ 4] [0200] +18:42:08 [ 2] [ 16] [6688990105370504] +18:42:08 [ 3] [ 6] [011000] +18:42:08 [ 4] [ 12] [000010000000] +18:42:08 [ 7] [ 10] [0320184203] +18:42:08 [ 11] [ 6] [829995] +18:42:08 [ 12] [ 6] [184203] +18:42:08 [ 13] [ 4] [0320] +18:42:08 [ 15] [ 4] [0320] +18:42:08 [ 18] [ 4] [6011] +18:42:08 [ 22] [ 3] [900] +18:42:08 [ 25] [ 2] [02] +18:42:08 [ 28] [ 9] [D00002000] +18:42:08 [ 32] [ 6] [621354] +18:42:08 [ 35] [ 37] [6688990105370504=43091231050477400000] +18:42:08 [ 37] [ 12] [507904635990] +18:42:08 [ 41] [ 8] [17000800] +18:42:08 [ 42] [ 15] [NATIVE ] +18:42:08 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:42:08 [ 49] [ 3] [418] +18:42:08 [ 52] [ 16] [9F916020C648851E] +18:42:08 ============================================================================ +18:42:08 + + +waiting on router queue for slot.... +18:42:08 Sending to : +18:42:08 ============================================================================ +18:42:08 ============================================================================ +18:42:08 Slot Id : <160> +18:42:08 Transaction Type : REQUEST +18:42:08 Received From : +18:42:08 ============================================================================ +18:42:08 FNo. Len. Field Value +18:42:08 ============================================================================ +18:42:08 [ 1] [ 4] [0200] +18:42:08 [ 2] [ 16] [6688990105370504] +18:42:08 [ 3] [ 6] [011000] +18:42:08 [ 4] [ 12] [000010000000] +18:42:08 [ 7] [ 10] [0320184203] +18:42:08 [ 11] [ 6] [829995] +18:42:08 [ 12] [ 6] [184203] +18:42:08 [ 13] [ 4] [0320] +18:42:08 [ 15] [ 4] [0320] +18:42:08 [ 18] [ 4] [6011] +18:42:08 [ 22] [ 3] [900] +18:42:08 [ 25] [ 2] [02] +18:42:08 [ 28] [ 9] [D00002000] +18:42:08 [ 32] [ 6] [621354] +18:42:08 [ 35] [ 37] [6688990105370504=43091231050477400000] +18:42:08 [ 37] [ 12] [507904635990] +18:42:08 [ 41] [ 8] [17000800] +18:42:08 [ 42] [ 15] [NATIVE ] +18:42:08 [ 43] [ 40] [Ban Nakhai Naxay LAO] +18:42:08 [ 49] [ 3] [418] +18:42:08 [ 52] [ 16] [DFF36F721ADC1A50] +18:42:08 ============================================================================ +18:42:08 + + +waiting on router queue for slot.... +18:42:08 Sending to : <4> +18:42:08 ============================================================================ +18:42:09 ============================================================================ +18:42:09 Slot Id : <160> +18:42:09 Transaction Type : RESPONSE +18:42:09 Received From : +18:42:09 ============================================================================ +18:42:09 FNo. Len. Field Value +18:42:09 ============================================================================ +18:42:09 [ 1] [ 4] [0210] +18:42:09 [ 2] [ 16] [6688990105370504] +18:42:09 [ 3] [ 6] [011000] +18:42:09 [ 4] [ 12] [000010000000] +18:42:09 [ 11] [ 6] [829995] +18:42:09 [ 12] [ 6] [184203] +18:42:09 [ 15] [ 4] [0320] +18:42:09 [ 18] [ 4] [6011] +18:42:09 [ 32] [ 6] [621354] +18:42:09 [ 35] [ 37] [6688990105370504=43091231050477400000] +18:42:09 [ 37] [ 12] [507904635990] +18:42:09 [ 38] [ 6] [531900] +18:42:09 [ 39] [ 2] [00] +18:42:09 [ 41] [ 8] [17000800] +18:42:09 [ 49] [ 3] [418] +18:42:09 [ 54] [ 20] [1002418C000042610587] +18:42:09 ============================================================================ +18:42:09 Sending to : +18:42:09 ============================================================================ +18:42:09 + + +waiting on router queue for slot.... +18:42:11 ============================================================================ +18:42:11 Slot Id : <163> +18:42:11 Transaction Type : REQUEST +18:42:11 Received From : +18:42:11 ============================================================================ +18:42:11 FNo. Len. Field Value +18:42:11 ============================================================================ +18:42:11 [ 1] [ 4] [0800] +18:42:11 [ 7] [ 10] [0320114118] +18:42:11 [ 11] [ 6] [157764] +18:42:11 [ 70] [ 3] [301] +18:42:11 ============================================================================ +18:42:11 + + +waiting on router queue for slot.... +18:42:11 Sending to : +18:42:11 ============================================================================ +18:42:11 ============================================================================ +18:42:11 Slot Id : <163> +18:42:11 Transaction Type : RESPONSE +18:42:11 Received From : +18:42:11 ============================================================================ +18:42:11 FNo. Len. Field Value +18:42:11 ============================================================================ +18:42:11 [ 1] [ 4] [0810] +18:42:11 [ 7] [ 10] [0320114118] +18:42:11 [ 11] [ 6] [157764] +18:42:11 [ 39] [ 2] [00] +18:42:11 [ 70] [ 3] [301] +18:42:11 ============================================================================ +18:42:11 Calculate Source COMM Id = 2 +18:42:11 ============================================================================ +18:42:11 + + +waiting on router queue for slot.... +18:42:11 ============================================================================ +18:42:11 Slot Id : <160> +18:42:11 Transaction Type : RESPONSE +18:42:11 Received From : +18:42:11 ============================================================================ +18:42:11 FNo. Len. Field Value +18:42:11 ============================================================================ +18:42:11 [ 1] [ 4] [0210] +18:42:11 [ 2] [ 16] [6688990105370504] +18:42:11 [ 3] [ 6] [011000] +18:42:11 [ 4] [ 12] [000010000000] +18:42:11 [ 11] [ 6] [829995] +18:42:11 [ 12] [ 6] [184203] +18:42:11 [ 15] [ 4] [0320] +18:42:11 [ 18] [ 4] [6011] +18:42:11 [ 32] [ 6] [621354] +18:42:11 [ 35] [ 37] [6688990105370504=43091231050477400000] +18:42:11 [ 37] [ 12] [507904635990] +18:42:11 [ 38] [ 6] [531900] +18:42:11 [ 39] [ 2] [00] +18:42:11 [ 41] [ 8] [17000800] +18:42:11 [ 49] [ 3] [418] +18:42:11 [ 54] [ 20] [1002418C000042610587] +18:42:11 ============================================================================ +18:42:11 Calculate Source COMM Id = 0 +18:42:11 ============================================================================ +18:42:11 + + +waiting on router queue for slot.... +18:42:19 ============================================================================ +18:42:19 Slot Id : <204> +18:42:19 Transaction Type : REQUEST +18:42:19 Received From : +18:42:19 ============================================================================ +18:42:19 FNo. Len. Field Value +18:42:19 ============================================================================ +18:42:19 [ 1] [ 4] [0800] +18:42:19 [ 7] [ 10] [0321015407] +18:42:19 [ 11] [ 6] [185407] +18:42:19 [ 37] [ 12] [57918185407] +18:42:19 [ 70] [ 3] [301] +18:42:19 ============================================================================ +18:42:19 + + +waiting on router queue for slot.... +18:42:19 Sending to : +18:42:19 ============================================================================ +18:42:19 ============================================================================ +18:42:19 Slot Id : <204> +18:42:19 Transaction Type : RESPONSE +18:42:19 Received From : +18:42:19 ============================================================================ +18:42:19 FNo. Len. Field Value +18:42:19 ============================================================================ +18:42:19 [ 1] [ 4] [0810] +18:42:19 [ 7] [ 10] [0321015407] +18:42:19 [ 11] [ 6] [185407] +18:42:19 [ 37] [ 12] [579181854070] +18:42:19 [ 39] [ 2] [00] +18:42:19 [ 70] [ 3] [810] +18:42:19 ============================================================================ +18:42:19 Calculate Source COMM Id = 6 +18:42:19 ============================================================================ +18:42:19 + + +waiting on router queue for slot.... +18:42:23 ============================================================================ +18:42:23 Slot Id : <203> +18:42:23 Transaction Type : REQUEST +18:42:23 Received From : +18:42:23 ============================================================================ +18:42:23 FNo. Len. Field Value +18:42:23 ============================================================================ +18:42:23 [ 1] [ 4] [0800] +18:42:23 [ 7] [ 10] [0320114128] +18:42:23 [ 11] [ 6] [157765] +18:42:23 [ 70] [ 3] [301] +18:42:23 ============================================================================ +18:42:23 + + +waiting on router queue for slot.... +18:42:23 Sending to : +18:42:23 ============================================================================ +18:42:23 ============================================================================ +18:42:23 Slot Id : <203> +18:42:23 Transaction Type : RESPONSE +18:42:23 Received From : +18:42:23 ============================================================================ +18:42:23 FNo. Len. Field Value +18:42:23 ============================================================================ +18:42:23 [ 1] [ 4] [0810] +18:42:23 [ 7] [ 10] [0320114128] +18:42:23 [ 11] [ 6] [157765] +18:42:23 [ 39] [ 2] [00] +18:42:23 [ 70] [ 3] [301] +18:42:23 ============================================================================ +18:42:23 Calculate Source COMM Id = 2 +18:42:23 ============================================================================ +18:42:23 + + +waiting on router queue for slot.... +18:42:37 ============================================================================ +18:42:37 Slot Id : <179> +18:42:37 Transaction Type : REQUEST +18:42:37 Received From : +18:42:37 ============================================================================ +18:42:37 FNo. Len. Field Value +18:42:37 ============================================================================ +18:42:37 [ 1] [ 4] [0800] +18:42:37 [ 7] [ 10] [0320114144] +18:42:37 [ 11] [ 6] [157766] +18:42:37 [ 70] [ 3] [301] +18:42:37 ============================================================================ +18:42:37 + + +waiting on router queue for slot.... +18:42:37 Sending to : +18:42:37 ============================================================================ +18:42:37 ============================================================================ +18:42:37 Slot Id : <179> +18:42:37 Transaction Type : RESPONSE +18:42:37 Received From : +18:42:37 ============================================================================ +18:42:37 FNo. Len. Field Value +18:42:37 ============================================================================ +18:42:37 [ 1] [ 4] [0810] +18:42:37 [ 7] [ 10] [0320114144] +18:42:37 [ 11] [ 6] [157766] +18:42:37 [ 39] [ 2] [00] +18:42:37 [ 70] [ 3] [301] +18:42:37 ============================================================================ +18:42:37 Calculate Source COMM Id = 2 +18:42:37 ============================================================================ +18:42:37 + + +waiting on router queue for slot.... +18:42:48 ============================================================================ +18:42:48 Slot Id : <191> +18:42:48 Transaction Type : REQUEST +18:42:48 Received From : +18:42:48 ============================================================================ +18:42:48 FNo. Len. Field Value +18:42:48 ============================================================================ +18:42:48 [ 1] [ 4] [0800] +18:42:48 [ 7] [ 10] [0320114154] +18:42:48 [ 11] [ 6] [157767] +18:42:48 [ 70] [ 3] [301] +18:42:48 ============================================================================ +18:42:48 + + +waiting on router queue for slot.... +18:42:48 Sending to : +18:42:48 ============================================================================ +18:42:48 ============================================================================ +18:42:48 Slot Id : <191> +18:42:48 Transaction Type : RESPONSE +18:42:48 Received From : +18:42:48 ============================================================================ +18:42:48 FNo. Len. Field Value +18:42:48 ============================================================================ +18:42:48 [ 1] [ 4] [0810] +18:42:48 [ 7] [ 10] [0320114154] +18:42:48 [ 11] [ 6] [157767] +18:42:48 [ 39] [ 2] [00] +18:42:48 [ 70] [ 3] [301] +18:42:48 ============================================================================ +18:42:48 Calculate Source COMM Id = 2 +18:42:48 ============================================================================ +18:42:48 + + +waiting on router queue for slot.... +18:42:48 ============================================================================ +18:42:48 Slot Id : <192> +18:42:48 Transaction Type : REQUEST +18:42:48 Received From : +18:42:48 ============================================================================ +18:42:48 FNo. Len. Field Value +18:42:48 ============================================================================ +18:42:48 [ 1] [ 4] [0200] +18:42:48 [ 2] [ 16] [6213544001883971] +18:42:48 [ 3] [ 6] [301000] +18:42:48 [ 4] [ 12] [000000000000] +18:42:48 [ 7] [ 10] [0320184038] +18:42:48 [ 11] [ 6] [954967] +18:42:48 [ 12] [ 6] [184038] +18:42:48 [ 13] [ 4] [0320] +18:42:48 [ 15] [ 4] [0320] +18:42:48 [ 18] [ 4] [6011] +18:42:48 [ 19] [ 3] [418] +18:42:48 [ 22] [ 3] [021] +18:42:48 [ 25] [ 2] [01] +18:42:48 [ 28] [ 9] [D00000000] +18:42:48 [ 32] [ 6] [668899] +18:42:48 [ 35] [ 32] [6213544001883971=491212018397633] +18:42:48 [ 37] [ 12] [507900146900] +18:42:48 [ 41] [ 8] [03020005] +18:42:48 [ 42] [ 15] [APT ] +18:42:48 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:42:48 [ 49] [ 3] [418] +18:42:48 [ 52] [ 16] [06B673823783874D] +18:42:48 ============================================================================ +18:42:48 + + +waiting on router queue for slot.... +18:42:48 Sending to : +18:42:48 ============================================================================ +18:42:48 Sending to : +18:42:48 ============================================================================ +18:42:49 ============================================================================ +18:42:49 Slot Id : <192> +18:42:49 Transaction Type : REQUEST +18:42:49 Received From : +18:42:49 ============================================================================ +18:42:49 FNo. Len. Field Value +18:42:49 ============================================================================ +18:42:49 [ 1] [ 4] [0200] +18:42:49 [ 2] [ 16] [6213544001883971] +18:42:49 [ 3] [ 6] [301000] +18:42:49 [ 4] [ 12] [000000000000] +18:42:49 [ 7] [ 10] [0320184038] +18:42:49 [ 11] [ 6] [954967] +18:42:49 [ 12] [ 6] [184038] +18:42:49 [ 13] [ 4] [0320] +18:42:49 [ 15] [ 4] [0320] +18:42:49 [ 18] [ 4] [6011] +18:42:49 [ 19] [ 3] [418] +18:42:49 [ 22] [ 3] [021] +18:42:49 [ 25] [ 2] [01] +18:42:49 [ 28] [ 9] [D00000000] +18:42:49 [ 32] [ 6] [668899] +18:42:49 [ 35] [ 32] [6213544001883971=491212018397633] +18:42:49 [ 37] [ 12] [507900146900] +18:42:49 [ 41] [ 8] [03020005] +18:42:49 [ 42] [ 15] [APT ] +18:42:49 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:42:49 [ 49] [ 3] [418] +18:42:49 [ 52] [ 16] [06B673823783874D] +18:42:49 ============================================================================ +18:42:49 + + +waiting on router queue for slot.... +18:42:49 Sending to : +18:42:49 ============================================================================ +18:42:49 ============================================================================ +18:42:49 Slot Id : <192> +18:42:49 Transaction Type : REQUEST +18:42:49 Received From : +18:42:49 ============================================================================ +18:42:49 FNo. Len. Field Value +18:42:49 ============================================================================ +18:42:49 [ 1] [ 4] [0200] +18:42:49 [ 2] [ 16] [6213544001883971] +18:42:49 [ 3] [ 6] [301000] +18:42:49 [ 4] [ 12] [000000000000] +18:42:49 [ 7] [ 10] [0320184038] +18:42:49 [ 11] [ 6] [954967] +18:42:49 [ 12] [ 6] [184038] +18:42:49 [ 13] [ 4] [0320] +18:42:49 [ 15] [ 4] [0320] +18:42:49 [ 18] [ 4] [6011] +18:42:49 [ 19] [ 3] [418] +18:42:49 [ 22] [ 3] [021] +18:42:49 [ 25] [ 2] [01] +18:42:49 [ 28] [ 9] [D00000000] +18:42:49 [ 32] [ 6] [668899] +18:42:49 [ 35] [ 32] [6213544001883971=491212018397633] +18:42:49 [ 37] [ 12] [507900146900] +18:42:49 [ 41] [ 8] [03020005] +18:42:49 [ 42] [ 15] [APT ] +18:42:49 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:42:49 [ 49] [ 3] [418] +18:42:49 [ 52] [ 16] [3D1D5EC71A08BF83] +18:42:49 ============================================================================ +18:42:49 + + +waiting on router queue for slot.... +18:42:49 Sending to : <0> +18:42:49 ============================================================================ +18:42:49 ============================================================================ +18:42:49 Slot Id : <192> +18:42:49 Transaction Type : RESPONSE +18:42:49 Received From : +18:42:49 ============================================================================ +18:42:49 FNo. Len. Field Value +18:42:49 ============================================================================ +18:42:49 [ 1] [ 4] [0210] +18:42:49 [ 2] [ 16] [6213544001883971] +18:42:49 [ 3] [ 6] [301000] +18:42:49 [ 4] [ 12] [000000000000] +18:42:49 [ 7] [ 10] [0320184038] +18:42:49 [ 11] [ 6] [954967] +18:42:49 [ 12] [ 6] [184038] +18:42:49 [ 13] [ 4] [0320] +18:42:49 [ 15] [ 4] [0320] +18:42:49 [ 18] [ 4] [6011] +18:42:49 [ 19] [ 3] [418] +18:42:49 [ 32] [ 6] [668899] +18:42:49 [ 35] [ 32] [6213544001883971=491212018397633] +18:42:49 [ 37] [ 12] [507900146900] +18:42:49 [ 38] [ 6] [104357] +18:42:49 [ 39] [ 2] [00] +18:42:49 [ 41] [ 8] [03020005] +18:42:49 [ 49] [ 3] [418] +18:42:49 [ 54] [ 40] [1001418C0001025791721002418C000102579172] +18:42:49 ============================================================================ +18:42:49 Sending to : +18:42:49 ============================================================================ +18:42:49 + + +waiting on router queue for slot.... +18:42:51 ============================================================================ +18:42:51 Slot Id : <192> +18:42:51 Transaction Type : RESPONSE +18:42:51 Received From : +18:42:51 ============================================================================ +18:42:51 FNo. Len. Field Value +18:42:51 ============================================================================ +18:42:51 [ 1] [ 4] [0210] +18:42:51 [ 2] [ 16] [6213544001883971] +18:42:51 [ 3] [ 6] [301000] +18:42:51 [ 4] [ 12] [000000000000] +18:42:51 [ 7] [ 10] [0320184038] +18:42:51 [ 11] [ 6] [954967] +18:42:51 [ 12] [ 6] [184038] +18:42:51 [ 13] [ 4] [0320] +18:42:51 [ 15] [ 4] [0320] +18:42:51 [ 18] [ 4] [6011] +18:42:51 [ 19] [ 3] [418] +18:42:51 [ 32] [ 6] [668899] +18:42:51 [ 35] [ 32] [6213544001883971=491212018397633] +18:42:51 [ 37] [ 12] [507900146900] +18:42:51 [ 38] [ 6] [104357] +18:42:51 [ 39] [ 2] [00] +18:42:51 [ 41] [ 8] [03020005] +18:42:51 [ 49] [ 3] [418] +18:42:51 [ 54] [ 40] [1001418C0001025791721002418C000102579172] +18:42:51 ============================================================================ +18:42:51 Calculate Source COMM Id = 4 +18:42:51 ============================================================================ +18:42:51 + + +waiting on router queue for slot.... +18:42:51 ============================================================================ +18:42:51 Slot Id : <135> +18:42:51 Transaction Type : REQUEST +18:42:51 Received From : +18:42:51 ============================================================================ +18:42:51 FNo. Len. Field Value +18:42:51 ============================================================================ +18:42:51 [ 1] [ 4] [0800] +18:42:51 [ 2] [ 5] [02531] +18:42:51 [ 3] [ 6] [579188] +18:42:51 [ 7] [ 10] [0320114251] +18:42:51 [ 11] [ 6] [807498] +18:42:51 [ 15] [ 10] [0320114251] +18:42:51 [ 37] [ 11] [57918807498] +18:42:51 [ 70] [ 3] [001] +18:42:51 ============================================================================ +18:42:51 + + +waiting on router queue for slot.... +18:42:51 ============================================================================ +18:42:51 Slot Id : <135> +18:42:51 Transaction Type : RESPONSE +18:42:51 Received From : +18:42:51 ============================================================================ +18:42:51 FNo. Len. Field Value +18:42:51 ============================================================================ +18:42:51 [ 1] [ 4] [0810] +18:42:51 [ 7] [ 10] [0320114251] +18:42:51 [ 11] [ 6] [807498] +18:42:51 [ 15] [ 4] [0320] +18:42:51 [ 37] [ 12] [57918807498] +18:42:51 [ 39] [ 2] [00] +18:42:51 [ 70] [ 3] [001] +18:42:51 ============================================================================ +18:42:51 Sending to : +18:42:51 ============================================================================ +18:42:51 + + +waiting on router queue for slot.... +18:42:53 ============================================================================ +18:42:53 Slot Id : <156> +18:42:53 Transaction Type : REQUEST +18:42:53 Received From : +18:42:53 ============================================================================ +18:42:53 FNo. Len. Field Value +18:42:53 ============================================================================ +18:42:53 [ 1] [ 4] [0200] +18:42:53 [ 2] [ 16] [6213541000511280] +18:42:53 [ 3] [ 6] [011000] +18:42:53 [ 4] [ 12] [000100000000] +18:42:53 [ 7] [ 10] [0320185038] +18:42:53 [ 11] [ 6] [003141] +18:42:53 [ 12] [ 6] [185038] +18:42:53 [ 13] [ 4] [0320] +18:42:53 [ 14] [ 4] [4912] +18:42:53 [ 15] [ 4] [0320] +18:42:53 [ 18] [ 4] [6011] +18:42:53 [ 22] [ 3] [900] +18:42:53 [ 25] [ 2] [02] +18:42:53 [ 28] [ 9] [D00002000] +18:42:53 [ 32] [ 6] [220699] +18:42:53 [ 35] [ 32] [6213541000511280=491212011128060] +18:42:53 [ 37] [ 12] [507900186778] +18:42:53 [ 41] [ 8] [08000100] +18:42:53 [ 42] [ 15] [APTRA ] +18:42:53 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:42:53 [ 49] [ 3] [418] +18:42:53 [ 52] [ 16] [A972D64EF14CF918] +18:42:53 ============================================================================ +18:42:53 + + +waiting on router queue for slot.... +18:42:53 Sending to : +18:42:53 ============================================================================ +18:42:53 Sending to : +18:42:53 ============================================================================ +18:42:53 ============================================================================ +18:42:53 Slot Id : <156> +18:42:53 Transaction Type : REQUEST +18:42:53 Received From : +18:42:53 ============================================================================ +18:42:53 FNo. Len. Field Value +18:42:53 ============================================================================ +18:42:53 [ 1] [ 4] [0200] +18:42:53 [ 2] [ 16] [6213541000511280] +18:42:53 [ 3] [ 6] [011000] +18:42:53 [ 4] [ 12] [000100000000] +18:42:53 [ 7] [ 10] [0320185038] +18:42:53 [ 11] [ 6] [003141] +18:42:53 [ 12] [ 6] [185038] +18:42:53 [ 13] [ 4] [0320] +18:42:53 [ 14] [ 4] [4912] +18:42:53 [ 15] [ 4] [0320] +18:42:53 [ 18] [ 4] [6011] +18:42:53 [ 22] [ 3] [900] +18:42:53 [ 25] [ 2] [02] +18:42:53 [ 28] [ 9] [D00002000] +18:42:53 [ 32] [ 6] [220699] +18:42:53 [ 35] [ 32] [6213541000511280=491212011128060] +18:42:53 [ 37] [ 12] [507900186778] +18:42:53 [ 41] [ 8] [08000100] +18:42:53 [ 42] [ 15] [APTRA ] +18:42:53 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:42:53 [ 49] [ 3] [418] +18:42:53 [ 52] [ 16] [A972D64EF14CF918] +18:42:53 ============================================================================ +18:42:53 + + +waiting on router queue for slot.... +18:42:53 Sending to : +18:42:53 ============================================================================ +18:42:53 ============================================================================ +18:42:53 Slot Id : <156> +18:42:53 Transaction Type : REQUEST +18:42:53 Received From : +18:42:53 ============================================================================ +18:42:53 FNo. Len. Field Value +18:42:53 ============================================================================ +18:42:53 [ 1] [ 4] [0200] +18:42:53 [ 2] [ 16] [6213541000511280] +18:42:53 [ 3] [ 6] [011000] +18:42:53 [ 4] [ 12] [000100000000] +18:42:53 [ 7] [ 10] [0320185038] +18:42:53 [ 11] [ 6] [003141] +18:42:53 [ 12] [ 6] [185038] +18:42:53 [ 13] [ 4] [0320] +18:42:53 [ 14] [ 4] [4912] +18:42:53 [ 15] [ 4] [0320] +18:42:53 [ 18] [ 4] [6011] +18:42:53 [ 22] [ 3] [900] +18:42:53 [ 25] [ 2] [02] +18:42:53 [ 28] [ 9] [D00002000] +18:42:53 [ 32] [ 6] [220699] +18:42:53 [ 35] [ 32] [6213541000511280=491212011128060] +18:42:53 [ 37] [ 12] [507900186778] +18:42:53 [ 41] [ 8] [08000100] +18:42:53 [ 42] [ 15] [APTRA ] +18:42:53 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:42:53 [ 49] [ 3] [418] +18:42:53 [ 52] [ 16] [975F97186E5D9C96] +18:42:53 ============================================================================ +18:42:53 + + +waiting on router queue for slot.... +18:42:53 Sending to : <0> +18:42:53 ============================================================================ +18:42:54 ============================================================================ +18:42:54 Slot Id : <156> +18:42:54 Transaction Type : RESPONSE +18:42:54 Received From : +18:42:54 ============================================================================ +18:42:54 FNo. Len. Field Value +18:42:54 ============================================================================ +18:42:54 [ 1] [ 4] [0210] +18:42:54 [ 2] [ 16] [6213541000511280] +18:42:54 [ 3] [ 6] [011000] +18:42:54 [ 4] [ 12] [000100000000] +18:42:54 [ 7] [ 10] [0320185038] +18:42:54 [ 11] [ 6] [003141] +18:42:54 [ 12] [ 6] [185038] +18:42:54 [ 13] [ 4] [0320] +18:42:54 [ 15] [ 4] [0320] +18:42:54 [ 18] [ 4] [6011] +18:42:54 [ 32] [ 6] [220699] +18:42:54 [ 35] [ 32] [6213541000511280=491212011128060] +18:42:54 [ 37] [ 12] [507900186778] +18:42:54 [ 38] [ 6] [506774] +18:42:54 [ 39] [ 2] [00] +18:42:54 [ 41] [ 8] [08000100] +18:42:54 [ 49] [ 3] [418] +18:42:54 [ 54] [ 40] [1001764C0000002334711002764C000000233471] +18:42:54 ============================================================================ +18:42:54 Sending to : +18:42:54 ============================================================================ +18:42:54 + + +waiting on router queue for slot.... +18:42:55 ============================================================================ +18:42:55 Slot Id : <156> +18:42:55 Transaction Type : RESPONSE +18:42:55 Received From : +18:42:55 ============================================================================ +18:42:55 FNo. Len. Field Value +18:42:55 ============================================================================ +18:42:55 [ 1] [ 4] [0210] +18:42:55 [ 2] [ 16] [6213541000511280] +18:42:55 [ 3] [ 6] [011000] +18:42:55 [ 4] [ 12] [000100000000] +18:42:55 [ 7] [ 10] [0320185038] +18:42:55 [ 11] [ 6] [003141] +18:42:55 [ 12] [ 6] [185038] +18:42:55 [ 13] [ 4] [0320] +18:42:55 [ 15] [ 4] [0320] +18:42:55 [ 18] [ 4] [6011] +18:42:55 [ 32] [ 6] [220699] +18:42:55 [ 35] [ 32] [6213541000511280=491212011128060] +18:42:55 [ 37] [ 12] [507900186778] +18:42:55 [ 38] [ 6] [506774] +18:42:55 [ 39] [ 2] [00] +18:42:55 [ 41] [ 8] [08000100] +18:42:55 [ 49] [ 3] [418] +18:42:55 [ 54] [ 40] [1001764C0000002334711002764C000000233471] +18:42:55 ============================================================================ +18:42:55 Calculate Source COMM Id = 1 +18:42:55 ============================================================================ +18:42:55 + + +waiting on router queue for slot.... +18:42:58 ============================================================================ +18:42:58 Slot Id : <190> +18:42:58 Transaction Type : REQUEST +18:42:58 Received From : +18:42:58 ============================================================================ +18:42:58 FNo. Len. Field Value +18:42:58 ============================================================================ +18:42:58 [ 1] [ 4] [0800] +18:42:58 [ 7] [ 10] [0320114205] +18:42:58 [ 11] [ 6] [157768] +18:42:58 [ 70] [ 3] [301] +18:42:58 ============================================================================ +18:42:58 + + +waiting on router queue for slot.... +18:42:58 Sending to : +18:42:58 ============================================================================ +18:42:58 ============================================================================ +18:42:58 Slot Id : <190> +18:42:58 Transaction Type : RESPONSE +18:42:58 Received From : +18:42:58 ============================================================================ +18:42:58 FNo. Len. Field Value +18:42:58 ============================================================================ +18:42:58 [ 1] [ 4] [0810] +18:42:58 [ 7] [ 10] [0320114205] +18:42:58 [ 11] [ 6] [157768] +18:42:58 [ 39] [ 2] [00] +18:42:58 [ 70] [ 3] [301] +18:42:58 ============================================================================ +18:42:58 Calculate Source COMM Id = 2 +18:42:58 ============================================================================ +18:42:58 + + +waiting on router queue for slot.... +18:43:09 ============================================================================ +18:43:09 Slot Id : <152> +18:43:09 Transaction Type : REQUEST +18:43:09 Received From : +18:43:09 ============================================================================ +18:43:09 FNo. Len. Field Value +18:43:09 ============================================================================ +18:43:09 [ 1] [ 4] [0800] +18:43:09 [ 7] [ 10] [0320114215] +18:43:09 [ 11] [ 6] [157769] +18:43:09 [ 70] [ 3] [301] +18:43:09 ============================================================================ +18:43:09 + + +waiting on router queue for slot.... +18:43:09 Sending to : +18:43:09 ============================================================================ +18:43:09 ============================================================================ +18:43:09 Slot Id : <152> +18:43:09 Transaction Type : RESPONSE +18:43:09 Received From : +18:43:09 ============================================================================ +18:43:09 FNo. Len. Field Value +18:43:09 ============================================================================ +18:43:09 [ 1] [ 4] [0810] +18:43:09 [ 7] [ 10] [0320114215] +18:43:09 [ 11] [ 6] [157769] +18:43:09 [ 39] [ 2] [00] +18:43:09 [ 70] [ 3] [301] +18:43:09 ============================================================================ +18:43:09 Calculate Source COMM Id = 2 +18:43:09 ============================================================================ +18:43:09 + + +waiting on router queue for slot.... +18:43:20 ============================================================================ +18:43:20 Slot Id : <198> +18:43:20 Transaction Type : REQUEST +18:43:20 Received From : +18:43:20 ============================================================================ +18:43:20 FNo. Len. Field Value +18:43:20 ============================================================================ +18:43:20 [ 1] [ 4] [0800] +18:43:20 [ 7] [ 10] [0320114226] +18:43:20 [ 11] [ 6] [157770] +18:43:20 [ 70] [ 3] [301] +18:43:20 ============================================================================ +18:43:20 + + +waiting on router queue for slot.... +18:43:20 Sending to : +18:43:20 ============================================================================ +18:43:20 ============================================================================ +18:43:20 Slot Id : <198> +18:43:20 Transaction Type : RESPONSE +18:43:20 Received From : +18:43:20 ============================================================================ +18:43:20 FNo. Len. Field Value +18:43:20 ============================================================================ +18:43:20 [ 1] [ 4] [0810] +18:43:20 [ 7] [ 10] [0320114226] +18:43:20 [ 11] [ 6] [157770] +18:43:20 [ 39] [ 2] [00] +18:43:20 [ 70] [ 3] [301] +18:43:20 ============================================================================ +18:43:20 Calculate Source COMM Id = 2 +18:43:20 ============================================================================ +18:43:20 + + +waiting on router queue for slot.... +18:43:24 ============================================================================ +18:43:24 Slot Id : <196> +18:43:24 Transaction Type : REQUEST +18:43:24 Received From : +18:43:24 ============================================================================ +18:43:24 FNo. Len. Field Value +18:43:24 ============================================================================ +18:43:24 [ 1] [ 4] [0800] +18:43:24 [ 7] [ 10] [0321015513] +18:43:24 [ 11] [ 6] [185513] +18:43:24 [ 37] [ 12] [57918185513] +18:43:24 [ 70] [ 3] [301] +18:43:24 ============================================================================ +18:43:24 + + +waiting on router queue for slot.... +18:43:24 Sending to : +18:43:24 ============================================================================ +18:43:24 ============================================================================ +18:43:24 Slot Id : <196> +18:43:24 Transaction Type : RESPONSE +18:43:24 Received From : +18:43:24 ============================================================================ +18:43:24 FNo. Len. Field Value +18:43:24 ============================================================================ +18:43:24 [ 1] [ 4] [0810] +18:43:24 [ 7] [ 10] [0321015513] +18:43:24 [ 11] [ 6] [185513] +18:43:24 [ 37] [ 12] [579181855130] +18:43:24 [ 39] [ 2] [00] +18:43:24 [ 70] [ 3] [810] +18:43:24 ============================================================================ +18:43:24 Calculate Source COMM Id = 6 +18:43:24 ============================================================================ +18:43:24 + + +waiting on router queue for slot.... +18:43:31 ============================================================================ +18:43:31 Slot Id : <155> +18:43:31 Transaction Type : REQUEST +18:43:31 Received From : +18:43:31 ============================================================================ +18:43:31 FNo. Len. Field Value +18:43:31 ============================================================================ +18:43:31 [ 1] [ 4] [0800] +18:43:31 [ 7] [ 10] [0320114237] +18:43:31 [ 11] [ 6] [157771] +18:43:31 [ 70] [ 3] [301] +18:43:31 ============================================================================ +18:43:31 + + +waiting on router queue for slot.... +18:43:31 Sending to : +18:43:31 ============================================================================ +18:43:31 ============================================================================ +18:43:31 Slot Id : <155> +18:43:31 Transaction Type : RESPONSE +18:43:31 Received From : +18:43:31 ============================================================================ +18:43:31 FNo. Len. Field Value +18:43:31 ============================================================================ +18:43:31 [ 1] [ 4] [0810] +18:43:31 [ 7] [ 10] [0320114237] +18:43:31 [ 11] [ 6] [157771] +18:43:31 [ 39] [ 2] [00] +18:43:31 [ 70] [ 3] [301] +18:43:31 ============================================================================ +18:43:31 Calculate Source COMM Id = 2 +18:43:31 ============================================================================ +18:43:31 + + +waiting on router queue for slot.... +18:43:41 ============================================================================ +18:43:41 Slot Id : <181> +18:43:41 Transaction Type : REQUEST +18:43:41 Received From : +18:43:41 ============================================================================ +18:43:41 FNo. Len. Field Value +18:43:41 ============================================================================ +18:43:41 [ 1] [ 4] [0800] +18:43:41 [ 7] [ 10] [0320114247] +18:43:41 [ 11] [ 6] [157772] +18:43:41 [ 70] [ 3] [301] +18:43:41 ============================================================================ +18:43:41 + + +waiting on router queue for slot.... +18:43:41 Sending to : +18:43:41 ============================================================================ +18:43:41 ============================================================================ +18:43:41 Slot Id : <181> +18:43:41 Transaction Type : RESPONSE +18:43:41 Received From : +18:43:41 ============================================================================ +18:43:41 FNo. Len. Field Value +18:43:41 ============================================================================ +18:43:41 [ 1] [ 4] [0810] +18:43:41 [ 7] [ 10] [0320114247] +18:43:41 [ 11] [ 6] [157772] +18:43:41 [ 39] [ 2] [00] +18:43:41 [ 70] [ 3] [301] +18:43:41 ============================================================================ +18:43:41 Calculate Source COMM Id = 2 +18:43:41 ============================================================================ +18:43:41 + + +waiting on router queue for slot.... +18:43:46 ============================================================================ +18:43:46 Slot Id : <214> +18:43:46 Transaction Type : REQUEST +18:43:46 Received From : +18:43:46 ============================================================================ +18:43:46 FNo. Len. Field Value +18:43:46 ============================================================================ +18:43:46 [ 1] [ 4] [0200] +18:43:46 [ 2] [ 16] [6226331500062322] +18:43:46 [ 3] [ 6] [011000] +18:43:46 [ 4] [ 12] [000300000000] +18:43:46 [ 7] [ 10] [0320114250] +18:43:46 [ 11] [ 6] [271274] +18:43:46 [ 12] [ 6] [184250] +18:43:46 [ 13] [ 4] [0320] +18:43:46 [ 14] [ 4] [4912] +18:43:46 [ 15] [ 4] [0320] +18:43:46 [ 18] [ 4] [6011] +18:43:46 [ 19] [ 3] [418] +18:43:46 [ 22] [ 3] [021] +18:43:46 [ 25] [ 2] [01] +18:43:46 [ 28] [ 9] [D00015000] +18:43:46 [ 32] [ 6] [180893] +18:43:46 [ 35] [ 34] [6226331500062322=49121201201160000] +18:43:46 [ 37] [ 12] [507911271274] +18:43:46 [ 41] [ 8] [0161HQBR] +18:43:46 [ 42] [ 15] [999999 ] +18:43:46 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:43:46 [ 49] [ 3] [418] +18:43:46 [ 52] [ 16] [A0228E97D54BEB55] +18:43:46 ============================================================================ +18:43:46 + + +waiting on router queue for slot.... +18:43:46 Sending to : +18:43:46 ============================================================================ +18:43:46 Sending to : +18:43:46 ============================================================================ +18:43:47 ============================================================================ +18:43:47 Slot Id : <214> +18:43:47 Transaction Type : REQUEST +18:43:47 Received From : +18:43:47 ============================================================================ +18:43:47 FNo. Len. Field Value +18:43:47 ============================================================================ +18:43:47 [ 1] [ 4] [0200] +18:43:47 [ 2] [ 16] [6226331500062322] +18:43:47 [ 3] [ 6] [011000] +18:43:47 [ 4] [ 12] [000300000000] +18:43:47 [ 7] [ 10] [0320114250] +18:43:47 [ 11] [ 6] [271274] +18:43:47 [ 12] [ 6] [184250] +18:43:47 [ 13] [ 4] [0320] +18:43:47 [ 14] [ 4] [4912] +18:43:47 [ 15] [ 4] [0320] +18:43:47 [ 18] [ 4] [6011] +18:43:47 [ 19] [ 3] [418] +18:43:47 [ 22] [ 3] [021] +18:43:47 [ 25] [ 2] [01] +18:43:47 [ 28] [ 9] [D00015000] +18:43:47 [ 32] [ 6] [180893] +18:43:47 [ 35] [ 34] [6226331500062322=49121201201160000] +18:43:47 [ 37] [ 12] [507911271274] +18:43:47 [ 41] [ 8] [0161HQBR] +18:43:47 [ 42] [ 15] [999999 ] +18:43:47 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:43:47 [ 49] [ 3] [418] +18:43:47 [ 52] [ 16] [A0228E97D54BEB55] +18:43:47 ============================================================================ +18:43:47 + + +waiting on router queue for slot.... +18:43:47 Sending to : +18:43:47 ============================================================================ +18:43:47 ============================================================================ +18:43:47 Slot Id : <214> +18:43:47 Transaction Type : REQUEST +18:43:47 Received From : +18:43:47 ============================================================================ +18:43:47 FNo. Len. Field Value +18:43:47 ============================================================================ +18:43:47 [ 1] [ 4] [0200] +18:43:47 [ 2] [ 16] [6226331500062322] +18:43:47 [ 3] [ 6] [011000] +18:43:47 [ 4] [ 12] [000300000000] +18:43:47 [ 7] [ 10] [0320114250] +18:43:47 [ 11] [ 6] [271274] +18:43:47 [ 12] [ 6] [184250] +18:43:47 [ 13] [ 4] [0320] +18:43:47 [ 14] [ 4] [4912] +18:43:47 [ 15] [ 4] [0320] +18:43:47 [ 18] [ 4] [6011] +18:43:47 [ 19] [ 3] [418] +18:43:47 [ 22] [ 3] [021] +18:43:47 [ 25] [ 2] [01] +18:43:47 [ 28] [ 9] [D00015000] +18:43:47 [ 32] [ 6] [180893] +18:43:47 [ 35] [ 34] [6226331500062322=49121201201160000] +18:43:47 [ 37] [ 12] [507911271274] +18:43:47 [ 41] [ 8] [0161HQBR] +18:43:47 [ 42] [ 15] [999999 ] +18:43:47 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:43:47 [ 49] [ 3] [418] +18:43:47 [ 52] [ 16] [EC7489C5B90FCA40] +18:43:47 ============================================================================ +18:43:47 + + +waiting on router queue for slot.... +18:43:47 Sending to : <0> +18:43:47 ============================================================================ +18:43:47 ============================================================================ +18:43:47 Slot Id : <214> +18:43:47 Transaction Type : RESPONSE +18:43:47 Received From : +18:43:47 ============================================================================ +18:43:47 FNo. Len. Field Value +18:43:47 ============================================================================ +18:43:47 [ 1] [ 4] [0210] +18:43:47 [ 2] [ 16] [6226331500062322] +18:43:47 [ 3] [ 6] [011000] +18:43:47 [ 4] [ 12] [000300000000] +18:43:47 [ 7] [ 10] [0320114250] +18:43:47 [ 11] [ 6] [271274] +18:43:47 [ 12] [ 6] [184250] +18:43:47 [ 13] [ 4] [0320] +18:43:47 [ 15] [ 4] [0320] +18:43:47 [ 18] [ 4] [6011] +18:43:47 [ 19] [ 3] [418] +18:43:47 [ 22] [ 3] [021] +18:43:47 [ 32] [ 6] [180893] +18:43:47 [ 35] [ 34] [6226331500062322=49121201201160000] +18:43:47 [ 37] [ 12] [507911271274] +18:43:47 [ 39] [ 2] [61] +18:43:47 [ 41] [ 8] [0161HQBR] +18:43:47 [ 49] [ 3] [418] +18:43:47 ============================================================================ +18:43:47 Sending to : +18:43:47 ============================================================================ +18:43:47 + + +waiting on router queue for slot.... +18:43:48 ============================================================================ +18:43:48 Slot Id : <214> +18:43:48 Transaction Type : RESPONSE +18:43:48 Received From : +18:43:48 ============================================================================ +18:43:48 FNo. Len. Field Value +18:43:48 ============================================================================ +18:43:48 [ 1] [ 4] [0210] +18:43:48 [ 2] [ 16] [6226331500062322] +18:43:48 [ 3] [ 6] [011000] +18:43:48 [ 4] [ 12] [000300000000] +18:43:48 [ 7] [ 10] [0320114250] +18:43:48 [ 11] [ 6] [271274] +18:43:48 [ 12] [ 6] [184250] +18:43:48 [ 13] [ 4] [0320] +18:43:48 [ 15] [ 4] [0320] +18:43:48 [ 18] [ 4] [6011] +18:43:48 [ 19] [ 3] [418] +18:43:48 [ 22] [ 3] [021] +18:43:48 [ 32] [ 6] [180893] +18:43:48 [ 35] [ 34] [6226331500062322=49121201201160000] +18:43:48 [ 37] [ 12] [507911271274] +18:43:48 [ 39] [ 2] [61] +18:43:48 [ 41] [ 8] [0161HQBR] +18:43:48 [ 49] [ 3] [418] +18:43:48 ============================================================================ +18:43:48 Calculate Source COMM Id = 2 +18:43:48 ============================================================================ +18:43:48 + + +waiting on router queue for slot.... +18:43:51 ============================================================================ +18:43:51 Slot Id : <201> +18:43:51 Transaction Type : REQUEST +18:43:51 Received From : +18:43:51 ============================================================================ +18:43:51 FNo. Len. Field Value +18:43:51 ============================================================================ +18:43:51 [ 1] [ 4] [0200] +18:43:51 [ 2] [ 16] [6213544001883971] +18:43:51 [ 3] [ 6] [010000] +18:43:51 [ 4] [ 12] [000020000000] +18:43:51 [ 7] [ 10] [0320184141] +18:43:51 [ 11] [ 6] [954988] +18:43:51 [ 12] [ 6] [184141] +18:43:51 [ 13] [ 4] [0320] +18:43:51 [ 15] [ 4] [0320] +18:43:51 [ 18] [ 4] [6011] +18:43:51 [ 19] [ 3] [418] +18:43:51 [ 22] [ 3] [021] +18:43:51 [ 25] [ 2] [01] +18:43:51 [ 28] [ 9] [D00002000] +18:43:51 [ 32] [ 6] [668899] +18:43:51 [ 35] [ 32] [6213544001883971=491212018397633] +18:43:51 [ 37] [ 12] [507900146901] +18:43:51 [ 41] [ 8] [03020005] +18:43:51 [ 42] [ 15] [APT ] +18:43:51 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:43:51 [ 49] [ 3] [418] +18:43:51 [ 52] [ 16] [06B673823783874D] +18:43:51 ============================================================================ +18:43:51 + + +waiting on router queue for slot.... +18:43:51 Sending to : +18:43:51 ============================================================================ +18:43:51 Sending to : +18:43:51 ============================================================================ +18:43:51 ============================================================================ +18:43:51 Slot Id : <201> +18:43:51 Transaction Type : REQUEST +18:43:51 Received From : +18:43:51 ============================================================================ +18:43:51 FNo. Len. Field Value +18:43:51 ============================================================================ +18:43:51 [ 1] [ 4] [0200] +18:43:51 [ 2] [ 16] [6213544001883971] +18:43:51 [ 3] [ 6] [010000] +18:43:51 [ 4] [ 12] [000020000000] +18:43:51 [ 7] [ 10] [0320184141] +18:43:51 [ 11] [ 6] [954988] +18:43:51 [ 12] [ 6] [184141] +18:43:51 [ 13] [ 4] [0320] +18:43:51 [ 15] [ 4] [0320] +18:43:51 [ 18] [ 4] [6011] +18:43:51 [ 19] [ 3] [418] +18:43:51 [ 22] [ 3] [021] +18:43:51 [ 25] [ 2] [01] +18:43:51 [ 28] [ 9] [D00002000] +18:43:51 [ 32] [ 6] [668899] +18:43:51 [ 35] [ 32] [6213544001883971=491212018397633] +18:43:51 [ 37] [ 12] [507900146901] +18:43:51 [ 41] [ 8] [03020005] +18:43:51 [ 42] [ 15] [APT ] +18:43:51 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:43:51 [ 49] [ 3] [418] +18:43:51 [ 52] [ 16] [06B673823783874D] +18:43:51 ============================================================================ +18:43:51 + + +waiting on router queue for slot.... +18:43:51 Sending to : +18:43:51 ============================================================================ +18:43:51 ============================================================================ +18:43:51 Slot Id : <201> +18:43:51 Transaction Type : REQUEST +18:43:51 Received From : +18:43:51 ============================================================================ +18:43:51 FNo. Len. Field Value +18:43:51 ============================================================================ +18:43:51 [ 1] [ 4] [0200] +18:43:51 [ 2] [ 16] [6213544001883971] +18:43:51 [ 3] [ 6] [010000] +18:43:51 [ 4] [ 12] [000020000000] +18:43:51 [ 7] [ 10] [0320184141] +18:43:51 [ 11] [ 6] [954988] +18:43:51 [ 12] [ 6] [184141] +18:43:51 [ 13] [ 4] [0320] +18:43:51 [ 15] [ 4] [0320] +18:43:51 [ 18] [ 4] [6011] +18:43:51 [ 19] [ 3] [418] +18:43:51 [ 22] [ 3] [021] +18:43:51 [ 25] [ 2] [01] +18:43:51 [ 28] [ 9] [D00002000] +18:43:51 [ 32] [ 6] [668899] +18:43:51 [ 35] [ 32] [6213544001883971=491212018397633] +18:43:51 [ 37] [ 12] [507900146901] +18:43:51 [ 41] [ 8] [03020005] +18:43:51 [ 42] [ 15] [APT ] +18:43:51 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:43:51 [ 49] [ 3] [418] +18:43:51 [ 52] [ 16] [3D1D5EC71A08BF83] +18:43:51 ============================================================================ +18:43:51 + + +waiting on router queue for slot.... +18:43:51 Sending to : <0> +18:43:51 ============================================================================ +18:43:52 ============================================================================ +18:43:52 Slot Id : <201> +18:43:52 Transaction Type : RESPONSE +18:43:52 Received From : +18:43:52 ============================================================================ +18:43:52 FNo. Len. Field Value +18:43:52 ============================================================================ +18:43:52 [ 1] [ 4] [0210] +18:43:52 [ 2] [ 16] [6213544001883971] +18:43:52 [ 3] [ 6] [010000] +18:43:52 [ 4] [ 12] [000020000000] +18:43:52 [ 7] [ 10] [0320184141] +18:43:52 [ 11] [ 6] [954988] +18:43:52 [ 12] [ 6] [184141] +18:43:52 [ 13] [ 4] [0320] +18:43:52 [ 15] [ 4] [0320] +18:43:52 [ 18] [ 4] [6011] +18:43:52 [ 19] [ 3] [418] +18:43:52 [ 32] [ 6] [668899] +18:43:52 [ 35] [ 32] [6213544001883971=491212018397633] +18:43:52 [ 37] [ 12] [507900146901] +18:43:52 [ 38] [ 6] [679012] +18:43:52 [ 39] [ 2] [00] +18:43:52 [ 41] [ 8] [03020005] +18:43:52 [ 49] [ 3] [418] +18:43:52 [ 54] [ 40] [0001418C0000823791720002418C000082379172] +18:43:52 ============================================================================ +18:43:52 Sending to : +18:43:52 ============================================================================ +18:43:52 + + +waiting on router queue for slot.... +18:43:53 ============================================================================ +18:43:53 Slot Id : <165> +18:43:53 Transaction Type : REQUEST +18:43:53 Received From : +18:43:53 ============================================================================ +18:43:53 FNo. Len. Field Value +18:43:53 ============================================================================ +18:43:53 [ 1] [ 4] [0800] +18:43:53 [ 2] [ 5] [02531] +18:43:53 [ 3] [ 6] [579188] +18:43:53 [ 7] [ 10] [0320114353] +18:43:53 [ 11] [ 6] [807499] +18:43:53 [ 15] [ 10] [0320114353] +18:43:53 [ 37] [ 11] [57918807499] +18:43:53 [ 70] [ 3] [001] +18:43:53 ============================================================================ +18:43:53 + + +waiting on router queue for slot.... +18:43:53 ============================================================================ +18:43:53 Slot Id : <165> +18:43:53 Transaction Type : RESPONSE +18:43:53 Received From : +18:43:53 ============================================================================ +18:43:53 FNo. Len. Field Value +18:43:53 ============================================================================ +18:43:53 [ 1] [ 4] [0810] +18:43:53 [ 7] [ 10] [0320114353] +18:43:53 [ 11] [ 6] [807499] +18:43:53 [ 15] [ 4] [0320] +18:43:53 [ 37] [ 12] [57918807499] +18:43:53 [ 39] [ 2] [00] +18:43:53 [ 70] [ 3] [001] +18:43:53 ============================================================================ +18:43:53 Sending to : +18:43:53 ============================================================================ +18:43:53 + + +waiting on router queue for slot.... +18:43:53 ============================================================================ +18:43:53 Slot Id : <201> +18:43:53 Transaction Type : RESPONSE +18:43:53 Received From : +18:43:53 ============================================================================ +18:43:53 FNo. Len. Field Value +18:43:53 ============================================================================ +18:43:53 [ 1] [ 4] [0210] +18:43:53 [ 2] [ 16] [6213544001883971] +18:43:53 [ 3] [ 6] [010000] +18:43:53 [ 4] [ 12] [000020000000] +18:43:53 [ 7] [ 10] [0320184141] +18:43:53 [ 11] [ 6] [954988] +18:43:53 [ 12] [ 6] [184141] +18:43:53 [ 13] [ 4] [0320] +18:43:53 [ 15] [ 4] [0320] +18:43:53 [ 18] [ 4] [6011] +18:43:53 [ 19] [ 3] [418] +18:43:53 [ 32] [ 6] [668899] +18:43:53 [ 35] [ 32] [6213544001883971=491212018397633] +18:43:53 [ 37] [ 12] [507900146901] +18:43:53 [ 38] [ 6] [679012] +18:43:53 [ 39] [ 2] [00] +18:43:53 [ 41] [ 8] [03020005] +18:43:53 [ 49] [ 3] [418] +18:43:53 [ 54] [ 40] [0001418C0000823791720002418C000082379172] +18:43:53 ============================================================================ +18:43:53 Calculate Source COMM Id = 4 +18:43:53 ============================================================================ +18:43:53 + + +waiting on router queue for slot.... +18:44:02 ============================================================================ +18:44:02 Slot Id : <195> +18:44:02 Transaction Type : REQUEST +18:44:02 Received From : +18:44:02 ============================================================================ +18:44:02 FNo. Len. Field Value +18:44:02 ============================================================================ +18:44:02 [ 1] [ 4] [0800] +18:44:02 [ 7] [ 10] [0320114309] +18:44:02 [ 11] [ 6] [157773] +18:44:02 [ 70] [ 3] [301] +18:44:02 ============================================================================ +18:44:02 + + +waiting on router queue for slot.... +18:44:02 Sending to : +18:44:02 ============================================================================ +18:44:02 ============================================================================ +18:44:02 Slot Id : <195> +18:44:02 Transaction Type : RESPONSE +18:44:02 Received From : +18:44:02 ============================================================================ +18:44:02 FNo. Len. Field Value +18:44:02 ============================================================================ +18:44:02 [ 1] [ 4] [0810] +18:44:02 [ 7] [ 10] [0320114309] +18:44:02 [ 11] [ 6] [157773] +18:44:02 [ 39] [ 2] [00] +18:44:02 [ 70] [ 3] [301] +18:44:02 ============================================================================ +18:44:02 Calculate Source COMM Id = 2 +18:44:02 ============================================================================ +18:44:02 + + +waiting on router queue for slot.... +18:44:04 ============================================================================ +18:44:04 Slot Id : <194> +18:44:04 Transaction Type : REQUEST +18:44:04 Received From : +18:44:04 ============================================================================ +18:44:04 FNo. Len. Field Value +18:44:04 ============================================================================ +18:44:04 [ 1] [ 4] [0200] +18:44:04 [ 2] [ 16] [6213541000227465] +18:44:04 [ 3] [ 6] [010000] +18:44:04 [ 4] [ 12] [000100000000] +18:44:04 [ 7] [ 10] [0320184153] +18:44:04 [ 11] [ 6] [954992] +18:44:04 [ 12] [ 6] [184153] +18:44:04 [ 13] [ 4] [0320] +18:44:04 [ 15] [ 4] [0320] +18:44:04 [ 18] [ 4] [6011] +18:44:04 [ 19] [ 3] [418] +18:44:04 [ 22] [ 3] [021] +18:44:04 [ 25] [ 2] [01] +18:44:04 [ 28] [ 9] [D00002000] +18:44:04 [ 32] [ 6] [668899] +18:44:04 [ 35] [ 32] [6213541000227465=491212012746420] +18:44:04 [ 37] [ 12] [507901541777] +18:44:04 [ 41] [ 8] [03020016] +18:44:04 [ 42] [ 15] [APT ] +18:44:04 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +18:44:04 [ 49] [ 3] [418] +18:44:04 [ 52] [ 16] [C2835F1F33B18249] +18:44:04 ============================================================================ +18:44:04 + + +waiting on router queue for slot.... +18:44:04 Sending to : +18:44:04 ============================================================================ +18:44:04 Sending to : +18:44:04 ============================================================================ +18:44:04 ============================================================================ +18:44:04 Slot Id : <194> +18:44:04 Transaction Type : REQUEST +18:44:04 Received From : +18:44:04 ============================================================================ +18:44:04 FNo. Len. Field Value +18:44:04 ============================================================================ +18:44:04 [ 1] [ 4] [0200] +18:44:04 [ 2] [ 16] [6213541000227465] +18:44:04 [ 3] [ 6] [010000] +18:44:04 [ 4] [ 12] [000100000000] +18:44:04 [ 7] [ 10] [0320184153] +18:44:04 [ 11] [ 6] [954992] +18:44:04 [ 12] [ 6] [184153] +18:44:04 [ 13] [ 4] [0320] +18:44:04 [ 15] [ 4] [0320] +18:44:04 [ 18] [ 4] [6011] +18:44:04 [ 19] [ 3] [418] +18:44:04 [ 22] [ 3] [021] +18:44:04 [ 25] [ 2] [01] +18:44:04 [ 28] [ 9] [D00002000] +18:44:04 [ 32] [ 6] [668899] +18:44:04 [ 35] [ 32] [6213541000227465=491212012746420] +18:44:04 [ 37] [ 12] [507901541777] +18:44:04 [ 41] [ 8] [03020016] +18:44:04 [ 42] [ 15] [APT ] +18:44:04 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +18:44:04 [ 49] [ 3] [418] +18:44:04 [ 52] [ 16] [C2835F1F33B18249] +18:44:04 ============================================================================ +18:44:04 + + +waiting on router queue for slot.... +18:44:04 Sending to : +18:44:04 ============================================================================ +18:44:04 ============================================================================ +18:44:04 Slot Id : <194> +18:44:04 Transaction Type : REQUEST +18:44:04 Received From : +18:44:04 ============================================================================ +18:44:04 FNo. Len. Field Value +18:44:04 ============================================================================ +18:44:04 [ 1] [ 4] [0200] +18:44:04 [ 2] [ 16] [6213541000227465] +18:44:04 [ 3] [ 6] [010000] +18:44:04 [ 4] [ 12] [000100000000] +18:44:04 [ 7] [ 10] [0320184153] +18:44:04 [ 11] [ 6] [954992] +18:44:04 [ 12] [ 6] [184153] +18:44:04 [ 13] [ 4] [0320] +18:44:04 [ 15] [ 4] [0320] +18:44:04 [ 18] [ 4] [6011] +18:44:04 [ 19] [ 3] [418] +18:44:04 [ 22] [ 3] [021] +18:44:04 [ 25] [ 2] [01] +18:44:04 [ 28] [ 9] [D00002000] +18:44:04 [ 32] [ 6] [668899] +18:44:04 [ 35] [ 32] [6213541000227465=491212012746420] +18:44:04 [ 37] [ 12] [507901541777] +18:44:04 [ 41] [ 8] [03020016] +18:44:04 [ 42] [ 15] [APT ] +18:44:04 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +18:44:04 [ 49] [ 3] [418] +18:44:04 [ 52] [ 16] [72D2CCD552B258CE] +18:44:04 ============================================================================ +18:44:04 + + +waiting on router queue for slot.... +18:44:04 Sending to : <0> +18:44:04 ============================================================================ +18:44:05 ============================================================================ +18:44:05 Slot Id : <194> +18:44:05 Transaction Type : RESPONSE +18:44:05 Received From : +18:44:05 ============================================================================ +18:44:05 FNo. Len. Field Value +18:44:05 ============================================================================ +18:44:05 [ 1] [ 4] [0210] +18:44:05 [ 2] [ 16] [6213541000227465] +18:44:05 [ 3] [ 6] [010000] +18:44:05 [ 4] [ 12] [000100000000] +18:44:05 [ 7] [ 10] [0320184153] +18:44:05 [ 11] [ 6] [954992] +18:44:05 [ 12] [ 6] [184153] +18:44:05 [ 13] [ 4] [0320] +18:44:05 [ 15] [ 4] [0320] +18:44:05 [ 18] [ 4] [6011] +18:44:05 [ 19] [ 3] [418] +18:44:05 [ 32] [ 6] [668899] +18:44:05 [ 35] [ 32] [6213541000227465=491212012746420] +18:44:05 [ 37] [ 12] [507901541777] +18:44:05 [ 38] [ 6] [459908] +18:44:05 [ 39] [ 2] [00] +18:44:05 [ 41] [ 8] [03020016] +18:44:05 [ 49] [ 3] [418] +18:44:05 [ 54] [ 40] [0001418C0005830145020002418C000583014502] +18:44:05 ============================================================================ +18:44:05 Sending to : +18:44:05 ============================================================================ +18:44:05 + + +waiting on router queue for slot.... +18:44:05 ============================================================================ +18:44:05 Slot Id : <209> +18:44:05 Transaction Type : REQUEST +18:44:05 Received From : +18:44:05 ============================================================================ +18:44:05 FNo. Len. Field Value +18:44:05 ============================================================================ +18:44:05 [ 1] [ 4] [0200] +18:44:05 [ 2] [ 16] [6688990107038901] +18:44:05 [ 3] [ 6] [300000] +18:44:05 [ 4] [ 12] [000000000000] +18:44:05 [ 7] [ 10] [0320184400] +18:44:05 [ 11] [ 6] [830322] +18:44:05 [ 12] [ 6] [184400] +18:44:05 [ 13] [ 4] [0320] +18:44:05 [ 15] [ 4] [0320] +18:44:05 [ 18] [ 4] [6011] +18:44:05 [ 22] [ 3] [900] +18:44:05 [ 25] [ 2] [02] +18:44:05 [ 28] [ 9] [D00000000] +18:44:05 [ 32] [ 6] [621354] +18:44:05 [ 35] [ 37] [6688990107038901=44011231890122800000] +18:44:05 [ 37] [ 12] [507902547239] +18:44:05 [ 41] [ 8] [05003700] +18:44:05 [ 42] [ 15] [NATIVE ] +18:44:05 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +18:44:05 [ 49] [ 3] [418] +18:44:05 [ 52] [ 16] [D72FBDC9B6F56000] +18:44:05 ============================================================================ +18:44:05 + + +waiting on router queue for slot.... +18:44:05 Sending to : +18:44:05 ============================================================================ +18:44:05 Sending to : +18:44:05 ============================================================================ +18:44:05 ============================================================================ +18:44:05 Slot Id : <209> +18:44:05 Transaction Type : REQUEST +18:44:05 Received From : +18:44:05 ============================================================================ +18:44:05 FNo. Len. Field Value +18:44:05 ============================================================================ +18:44:05 [ 1] [ 4] [0200] +18:44:05 [ 2] [ 16] [6688990107038901] +18:44:05 [ 3] [ 6] [300000] +18:44:05 [ 4] [ 12] [000000000000] +18:44:05 [ 7] [ 10] [0320184400] +18:44:05 [ 11] [ 6] [830322] +18:44:05 [ 12] [ 6] [184400] +18:44:05 [ 13] [ 4] [0320] +18:44:05 [ 15] [ 4] [0320] +18:44:05 [ 18] [ 4] [6011] +18:44:05 [ 22] [ 3] [900] +18:44:05 [ 25] [ 2] [02] +18:44:05 [ 28] [ 9] [D00000000] +18:44:05 [ 32] [ 6] [621354] +18:44:05 [ 35] [ 37] [6688990107038901=44011231890122800000] +18:44:05 [ 37] [ 12] [507902547239] +18:44:05 [ 41] [ 8] [05003700] +18:44:05 [ 42] [ 15] [NATIVE ] +18:44:05 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +18:44:05 [ 49] [ 3] [418] +18:44:05 [ 52] [ 16] [D72FBDC9B6F56000] +18:44:05 ============================================================================ +18:44:05 + + +waiting on router queue for slot.... +18:44:05 Sending to : +18:44:05 ============================================================================ +18:44:05 ============================================================================ +18:44:05 Slot Id : <209> +18:44:05 Transaction Type : REQUEST +18:44:05 Received From : +18:44:05 ============================================================================ +18:44:05 FNo. Len. Field Value +18:44:05 ============================================================================ +18:44:05 [ 1] [ 4] [0200] +18:44:05 [ 2] [ 16] [6688990107038901] +18:44:05 [ 3] [ 6] [300000] +18:44:05 [ 4] [ 12] [000000000000] +18:44:05 [ 7] [ 10] [0320184400] +18:44:05 [ 11] [ 6] [830322] +18:44:05 [ 12] [ 6] [184400] +18:44:05 [ 13] [ 4] [0320] +18:44:05 [ 15] [ 4] [0320] +18:44:05 [ 18] [ 4] [6011] +18:44:05 [ 22] [ 3] [900] +18:44:05 [ 25] [ 2] [02] +18:44:05 [ 28] [ 9] [D00000000] +18:44:05 [ 32] [ 6] [621354] +18:44:05 [ 35] [ 37] [6688990107038901=44011231890122800000] +18:44:05 [ 37] [ 12] [507902547239] +18:44:05 [ 41] [ 8] [05003700] +18:44:05 [ 42] [ 15] [NATIVE ] +18:44:05 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +18:44:05 [ 49] [ 3] [418] +18:44:05 [ 52] [ 16] [CE8E7DB83979D4FF] +18:44:05 ============================================================================ +18:44:05 + + +waiting on router queue for slot.... +18:44:05 Sending to : <4> +18:44:05 ============================================================================ +18:44:06 ============================================================================ +18:44:06 Slot Id : <194> +18:44:06 Transaction Type : RESPONSE +18:44:06 Received From : +18:44:06 ============================================================================ +18:44:06 FNo. Len. Field Value +18:44:06 ============================================================================ +18:44:06 [ 1] [ 4] [0210] +18:44:06 [ 2] [ 16] [6213541000227465] +18:44:06 [ 3] [ 6] [010000] +18:44:06 [ 4] [ 12] [000100000000] +18:44:06 [ 7] [ 10] [0320184153] +18:44:06 [ 11] [ 6] [954992] +18:44:06 [ 12] [ 6] [184153] +18:44:06 [ 13] [ 4] [0320] +18:44:06 [ 15] [ 4] [0320] +18:44:06 [ 18] [ 4] [6011] +18:44:06 [ 19] [ 3] [418] +18:44:06 [ 32] [ 6] [668899] +18:44:06 [ 35] [ 32] [6213541000227465=491212012746420] +18:44:06 [ 37] [ 12] [507901541777] +18:44:06 [ 38] [ 6] [459908] +18:44:06 [ 39] [ 2] [00] +18:44:06 [ 41] [ 8] [03020016] +18:44:06 [ 49] [ 3] [418] +18:44:06 [ 54] [ 40] [0001418C0005830145020002418C000583014502] +18:44:06 ============================================================================ +18:44:06 Calculate Source COMM Id = 4 +18:44:06 ============================================================================ +18:44:06 + + +waiting on router queue for slot.... +18:44:06 ============================================================================ +18:44:06 Slot Id : <209> +18:44:06 Transaction Type : RESPONSE +18:44:06 Received From : +18:44:06 ============================================================================ +18:44:06 FNo. Len. Field Value +18:44:06 ============================================================================ +18:44:06 [ 1] [ 4] [0210] +18:44:06 [ 2] [ 16] [6688990107038901] +18:44:06 [ 3] [ 6] [300000] +18:44:06 [ 4] [ 12] [000000000000] +18:44:06 [ 11] [ 6] [830322] +18:44:06 [ 12] [ 6] [184400] +18:44:06 [ 15] [ 4] [0320] +18:44:06 [ 18] [ 4] [6011] +18:44:06 [ 32] [ 6] [621354] +18:44:06 [ 35] [ 37] [6688990107038901=44011231890122800000] +18:44:06 [ 37] [ 12] [507902547239] +18:44:06 [ 38] [ 6] [319014] +18:44:06 [ 39] [ 2] [00] +18:44:06 [ 41] [ 8] [05003700] +18:44:06 [ 49] [ 3] [418] +18:44:06 [ 54] [ 20] [0002418C000014616289] +18:44:06 ============================================================================ +18:44:06 Sending to : +18:44:06 ============================================================================ +18:44:06 + + +waiting on router queue for slot.... +18:44:08 ============================================================================ +18:44:08 Slot Id : <209> +18:44:08 Transaction Type : RESPONSE +18:44:08 Received From : +18:44:08 ============================================================================ +18:44:08 FNo. Len. Field Value +18:44:08 ============================================================================ +18:44:08 [ 1] [ 4] [0210] +18:44:08 [ 2] [ 16] [6688990107038901] +18:44:08 [ 3] [ 6] [300000] +18:44:08 [ 4] [ 12] [000000000000] +18:44:08 [ 11] [ 6] [830322] +18:44:08 [ 12] [ 6] [184400] +18:44:08 [ 15] [ 4] [0320] +18:44:08 [ 18] [ 4] [6011] +18:44:08 [ 32] [ 6] [621354] +18:44:08 [ 35] [ 37] [6688990107038901=44011231890122800000] +18:44:08 [ 37] [ 12] [507902547239] +18:44:08 [ 38] [ 6] [319014] +18:44:08 [ 39] [ 2] [00] +18:44:08 [ 41] [ 8] [05003700] +18:44:08 [ 49] [ 3] [418] +18:44:08 [ 54] [ 20] [0002418C000014616289] +18:44:08 ============================================================================ +18:44:08 Calculate Source COMM Id = 0 +18:44:08 ============================================================================ +18:44:08 + + +waiting on router queue for slot.... +18:44:15 ============================================================================ +18:44:15 Slot Id : <178> +18:44:15 Transaction Type : REQUEST +18:44:15 Received From : +18:44:15 ============================================================================ +18:44:15 FNo. Len. Field Value +18:44:15 ============================================================================ +18:44:15 [ 1] [ 4] [0200] +18:44:15 [ 2] [ 16] [6226331500062322] +18:44:15 [ 3] [ 6] [011000] +18:44:15 [ 4] [ 12] [000280000000] +18:44:15 [ 7] [ 10] [0320114321] +18:44:15 [ 11] [ 6] [271276] +18:44:15 [ 12] [ 6] [184321] +18:44:15 [ 13] [ 4] [0320] +18:44:15 [ 14] [ 4] [4912] +18:44:15 [ 15] [ 4] [0320] +18:44:15 [ 18] [ 4] [6011] +18:44:15 [ 19] [ 3] [418] +18:44:15 [ 22] [ 3] [021] +18:44:15 [ 25] [ 2] [01] +18:44:15 [ 28] [ 9] [D00015000] +18:44:15 [ 32] [ 6] [180893] +18:44:15 [ 35] [ 34] [6226331500062322=49121201201160000] +18:44:15 [ 37] [ 12] [507911271276] +18:44:15 [ 41] [ 8] [0161HQBR] +18:44:15 [ 42] [ 15] [999999 ] +18:44:15 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:44:15 [ 49] [ 3] [418] +18:44:15 [ 52] [ 16] [A0228E97D54BEB55] +18:44:15 ============================================================================ +18:44:15 + + +waiting on router queue for slot.... +18:44:15 Sending to : +18:44:15 ============================================================================ +18:44:15 Sending to : +18:44:15 ============================================================================ +18:44:15 ============================================================================ +18:44:15 Slot Id : <178> +18:44:15 Transaction Type : REQUEST +18:44:15 Received From : +18:44:15 ============================================================================ +18:44:15 FNo. Len. Field Value +18:44:15 ============================================================================ +18:44:15 [ 1] [ 4] [0200] +18:44:15 [ 2] [ 16] [6226331500062322] +18:44:15 [ 3] [ 6] [011000] +18:44:15 [ 4] [ 12] [000280000000] +18:44:15 [ 7] [ 10] [0320114321] +18:44:15 [ 11] [ 6] [271276] +18:44:15 [ 12] [ 6] [184321] +18:44:15 [ 13] [ 4] [0320] +18:44:15 [ 14] [ 4] [4912] +18:44:15 [ 15] [ 4] [0320] +18:44:15 [ 18] [ 4] [6011] +18:44:15 [ 19] [ 3] [418] +18:44:15 [ 22] [ 3] [021] +18:44:15 [ 25] [ 2] [01] +18:44:15 [ 28] [ 9] [D00015000] +18:44:15 [ 32] [ 6] [180893] +18:44:15 [ 35] [ 34] [6226331500062322=49121201201160000] +18:44:15 [ 37] [ 12] [507911271276] +18:44:15 [ 41] [ 8] [0161HQBR] +18:44:15 [ 42] [ 15] [999999 ] +18:44:15 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:44:15 [ 49] [ 3] [418] +18:44:15 [ 52] [ 16] [A0228E97D54BEB55] +18:44:15 ============================================================================ +18:44:15 + + +waiting on router queue for slot.... +18:44:15 Sending to : +18:44:15 ============================================================================ +18:44:15 ============================================================================ +18:44:15 Slot Id : <178> +18:44:15 Transaction Type : REQUEST +18:44:15 Received From : +18:44:15 ============================================================================ +18:44:15 FNo. Len. Field Value +18:44:15 ============================================================================ +18:44:15 [ 1] [ 4] [0200] +18:44:15 [ 2] [ 16] [6226331500062322] +18:44:15 [ 3] [ 6] [011000] +18:44:15 [ 4] [ 12] [000280000000] +18:44:15 [ 7] [ 10] [0320114321] +18:44:15 [ 11] [ 6] [271276] +18:44:15 [ 12] [ 6] [184321] +18:44:15 [ 13] [ 4] [0320] +18:44:15 [ 14] [ 4] [4912] +18:44:15 [ 15] [ 4] [0320] +18:44:15 [ 18] [ 4] [6011] +18:44:15 [ 19] [ 3] [418] +18:44:15 [ 22] [ 3] [021] +18:44:15 [ 25] [ 2] [01] +18:44:15 [ 28] [ 9] [D00015000] +18:44:15 [ 32] [ 6] [180893] +18:44:15 [ 35] [ 34] [6226331500062322=49121201201160000] +18:44:15 [ 37] [ 12] [507911271276] +18:44:15 [ 41] [ 8] [0161HQBR] +18:44:15 [ 42] [ 15] [999999 ] +18:44:15 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:44:15 [ 49] [ 3] [418] +18:44:15 [ 52] [ 16] [EC7489C5B90FCA40] +18:44:15 ============================================================================ +18:44:15 + + +waiting on router queue for slot.... +18:44:15 Sending to : <0> +18:44:15 ============================================================================ +18:44:15 ============================================================================ +18:44:15 Slot Id : <178> +18:44:15 Transaction Type : RESPONSE +18:44:15 Received From : +18:44:15 ============================================================================ +18:44:15 FNo. Len. Field Value +18:44:15 ============================================================================ +18:44:15 [ 1] [ 4] [0210] +18:44:15 [ 2] [ 16] [6226331500062322] +18:44:15 [ 3] [ 6] [011000] +18:44:15 [ 4] [ 12] [000280000000] +18:44:15 [ 7] [ 10] [0320114321] +18:44:15 [ 11] [ 6] [271276] +18:44:15 [ 12] [ 6] [184321] +18:44:15 [ 13] [ 4] [0320] +18:44:15 [ 15] [ 4] [0320] +18:44:15 [ 18] [ 4] [6011] +18:44:15 [ 19] [ 3] [418] +18:44:15 [ 22] [ 3] [021] +18:44:15 [ 32] [ 6] [180893] +18:44:15 [ 35] [ 34] [6226331500062322=49121201201160000] +18:44:15 [ 37] [ 12] [507911271276] +18:44:15 [ 39] [ 2] [61] +18:44:15 [ 41] [ 8] [0161HQBR] +18:44:15 [ 49] [ 3] [418] +18:44:15 ============================================================================ +18:44:15 Sending to : +18:44:15 ============================================================================ +18:44:15 + + +waiting on router queue for slot.... +18:44:16 ============================================================================ +18:44:16 Slot Id : <178> +18:44:16 Transaction Type : RESPONSE +18:44:16 Received From : +18:44:16 ============================================================================ +18:44:16 FNo. Len. Field Value +18:44:16 ============================================================================ +18:44:16 [ 1] [ 4] [0210] +18:44:16 [ 2] [ 16] [6226331500062322] +18:44:16 [ 3] [ 6] [011000] +18:44:16 [ 4] [ 12] [000280000000] +18:44:16 [ 7] [ 10] [0320114321] +18:44:16 [ 11] [ 6] [271276] +18:44:16 [ 12] [ 6] [184321] +18:44:16 [ 13] [ 4] [0320] +18:44:16 [ 15] [ 4] [0320] +18:44:16 [ 18] [ 4] [6011] +18:44:16 [ 19] [ 3] [418] +18:44:16 [ 22] [ 3] [021] +18:44:16 [ 32] [ 6] [180893] +18:44:16 [ 35] [ 34] [6226331500062322=49121201201160000] +18:44:16 [ 37] [ 12] [507911271276] +18:44:16 [ 39] [ 2] [61] +18:44:16 [ 41] [ 8] [0161HQBR] +18:44:16 [ 49] [ 3] [418] +18:44:16 ============================================================================ +18:44:16 Calculate Source COMM Id = 2 +18:44:16 ============================================================================ +18:44:16 + + +waiting on router queue for slot.... +18:44:29 ============================================================================ +18:44:29 Slot Id : <193> +18:44:29 Transaction Type : REQUEST +18:44:29 Received From : +18:44:29 ============================================================================ +18:44:29 FNo. Len. Field Value +18:44:29 ============================================================================ +18:44:29 [ 1] [ 4] [0800] +18:44:29 [ 7] [ 10] [0321015618] +18:44:29 [ 11] [ 6] [185618] +18:44:29 [ 37] [ 12] [57918185618] +18:44:29 [ 70] [ 3] [301] +18:44:29 ============================================================================ +18:44:29 + + +waiting on router queue for slot.... +18:44:29 Sending to : +18:44:29 ============================================================================ +18:44:29 ============================================================================ +18:44:29 Slot Id : <193> +18:44:29 Transaction Type : RESPONSE +18:44:29 Received From : +18:44:29 ============================================================================ +18:44:29 FNo. Len. Field Value +18:44:29 ============================================================================ +18:44:29 [ 1] [ 4] [0810] +18:44:29 [ 7] [ 10] [0321015618] +18:44:29 [ 11] [ 6] [185618] +18:44:29 [ 37] [ 12] [579181856180] +18:44:29 [ 39] [ 2] [00] +18:44:29 [ 70] [ 3] [810] +18:44:29 ============================================================================ +18:44:29 Calculate Source COMM Id = 6 +18:44:29 ============================================================================ +18:44:29 + + +waiting on router queue for slot.... +18:44:29 ============================================================================ +18:44:29 Slot Id : <206> +18:44:29 Transaction Type : REQUEST +18:44:29 Received From : +18:44:29 ============================================================================ +18:44:29 FNo. Len. Field Value +18:44:29 ============================================================================ +18:44:29 [ 1] [ 4] [0800] +18:44:29 [ 7] [ 10] [0320114334] +18:44:29 [ 11] [ 6] [157774] +18:44:29 [ 70] [ 3] [301] +18:44:29 ============================================================================ +18:44:29 + + +waiting on router queue for slot.... +18:44:29 Sending to : +18:44:29 ============================================================================ +18:44:29 ============================================================================ +18:44:29 Slot Id : <206> +18:44:29 Transaction Type : RESPONSE +18:44:29 Received From : +18:44:29 ============================================================================ +18:44:29 FNo. Len. Field Value +18:44:29 ============================================================================ +18:44:29 [ 1] [ 4] [0810] +18:44:29 [ 7] [ 10] [0320114334] +18:44:29 [ 11] [ 6] [157774] +18:44:29 [ 39] [ 2] [00] +18:44:29 [ 70] [ 3] [301] +18:44:29 ============================================================================ +18:44:29 Calculate Source COMM Id = 2 +18:44:29 ============================================================================ +18:44:29 + + +waiting on router queue for slot.... +18:44:43 ============================================================================ +18:44:43 Slot Id : <184> +18:44:43 Transaction Type : REQUEST +18:44:43 Received From : +18:44:43 ============================================================================ +18:44:43 FNo. Len. Field Value +18:44:43 ============================================================================ +18:44:43 [ 1] [ 4] [0800] +18:44:43 [ 7] [ 10] [0320114350] +18:44:43 [ 11] [ 6] [157775] +18:44:43 [ 70] [ 3] [301] +18:44:43 ============================================================================ +18:44:43 + + +waiting on router queue for slot.... +18:44:43 Sending to : +18:44:43 ============================================================================ +18:44:43 ============================================================================ +18:44:43 Slot Id : <184> +18:44:43 Transaction Type : RESPONSE +18:44:43 Received From : +18:44:43 ============================================================================ +18:44:43 FNo. Len. Field Value +18:44:43 ============================================================================ +18:44:43 [ 1] [ 4] [0810] +18:44:43 [ 7] [ 10] [0320114350] +18:44:43 [ 11] [ 6] [157775] +18:44:43 [ 39] [ 2] [00] +18:44:43 [ 70] [ 3] [301] +18:44:43 ============================================================================ +18:44:43 Calculate Source COMM Id = 2 +18:44:43 ============================================================================ +18:44:43 + + +waiting on router queue for slot.... +18:44:50 ============================================================================ +18:44:50 Slot Id : <212> +18:44:50 Transaction Type : REQUEST +18:44:50 Received From : +18:44:50 ============================================================================ +18:44:50 FNo. Len. Field Value +18:44:50 ============================================================================ +18:44:50 [ 1] [ 4] [0200] +18:44:50 [ 2] [ 16] [6226331500062322] +18:44:50 [ 3] [ 6] [011000] +18:44:50 [ 4] [ 12] [000250000000] +18:44:50 [ 7] [ 10] [0320114356] +18:44:50 [ 11] [ 6] [271278] +18:44:50 [ 12] [ 6] [184356] +18:44:50 [ 13] [ 4] [0320] +18:44:50 [ 14] [ 4] [4912] +18:44:50 [ 15] [ 4] [0320] +18:44:50 [ 18] [ 4] [6011] +18:44:50 [ 19] [ 3] [418] +18:44:50 [ 22] [ 3] [021] +18:44:50 [ 25] [ 2] [01] +18:44:50 [ 28] [ 9] [D00015000] +18:44:50 [ 32] [ 6] [180893] +18:44:50 [ 35] [ 34] [6226331500062322=49121201201160000] +18:44:50 [ 37] [ 12] [507911271278] +18:44:50 [ 41] [ 8] [0161HQBR] +18:44:50 [ 42] [ 15] [999999 ] +18:44:50 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:44:50 [ 49] [ 3] [418] +18:44:50 [ 52] [ 16] [A0228E97D54BEB55] +18:44:50 ============================================================================ +18:44:50 + + +waiting on router queue for slot.... +18:44:50 Sending to : +18:44:50 ============================================================================ +18:44:50 Sending to : +18:44:50 ============================================================================ +18:44:51 ============================================================================ +18:44:51 Slot Id : <212> +18:44:51 Transaction Type : REQUEST +18:44:51 Received From : +18:44:51 ============================================================================ +18:44:51 FNo. Len. Field Value +18:44:51 ============================================================================ +18:44:51 [ 1] [ 4] [0200] +18:44:51 [ 2] [ 16] [6226331500062322] +18:44:51 [ 3] [ 6] [011000] +18:44:51 [ 4] [ 12] [000250000000] +18:44:51 [ 7] [ 10] [0320114356] +18:44:51 [ 11] [ 6] [271278] +18:44:51 [ 12] [ 6] [184356] +18:44:51 [ 13] [ 4] [0320] +18:44:51 [ 14] [ 4] [4912] +18:44:51 [ 15] [ 4] [0320] +18:44:51 [ 18] [ 4] [6011] +18:44:51 [ 19] [ 3] [418] +18:44:51 [ 22] [ 3] [021] +18:44:51 [ 25] [ 2] [01] +18:44:51 [ 28] [ 9] [D00015000] +18:44:51 [ 32] [ 6] [180893] +18:44:51 [ 35] [ 34] [6226331500062322=49121201201160000] +18:44:51 [ 37] [ 12] [507911271278] +18:44:51 [ 41] [ 8] [0161HQBR] +18:44:51 [ 42] [ 15] [999999 ] +18:44:51 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:44:51 [ 49] [ 3] [418] +18:44:51 [ 52] [ 16] [A0228E97D54BEB55] +18:44:51 ============================================================================ +18:44:51 + + +waiting on router queue for slot.... +18:44:51 Sending to : +18:44:51 ============================================================================ +18:44:51 ============================================================================ +18:44:51 Slot Id : <212> +18:44:51 Transaction Type : REQUEST +18:44:51 Received From : +18:44:51 ============================================================================ +18:44:51 FNo. Len. Field Value +18:44:51 ============================================================================ +18:44:51 [ 1] [ 4] [0200] +18:44:51 [ 2] [ 16] [6226331500062322] +18:44:51 [ 3] [ 6] [011000] +18:44:51 [ 4] [ 12] [000250000000] +18:44:51 [ 7] [ 10] [0320114356] +18:44:51 [ 11] [ 6] [271278] +18:44:51 [ 12] [ 6] [184356] +18:44:51 [ 13] [ 4] [0320] +18:44:51 [ 14] [ 4] [4912] +18:44:51 [ 15] [ 4] [0320] +18:44:51 [ 18] [ 4] [6011] +18:44:51 [ 19] [ 3] [418] +18:44:51 [ 22] [ 3] [021] +18:44:51 [ 25] [ 2] [01] +18:44:51 [ 28] [ 9] [D00015000] +18:44:51 [ 32] [ 6] [180893] +18:44:51 [ 35] [ 34] [6226331500062322=49121201201160000] +18:44:51 [ 37] [ 12] [507911271278] +18:44:51 [ 41] [ 8] [0161HQBR] +18:44:51 [ 42] [ 15] [999999 ] +18:44:51 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:44:51 [ 49] [ 3] [418] +18:44:51 [ 52] [ 16] [EC7489C5B90FCA40] +18:44:51 ============================================================================ +18:44:51 + + +waiting on router queue for slot.... +18:44:51 Sending to : <0> +18:44:51 ============================================================================ +18:44:51 ============================================================================ +18:44:51 Slot Id : <212> +18:44:51 Transaction Type : RESPONSE +18:44:51 Received From : +18:44:51 ============================================================================ +18:44:51 FNo. Len. Field Value +18:44:51 ============================================================================ +18:44:51 [ 1] [ 4] [0210] +18:44:51 [ 2] [ 16] [6226331500062322] +18:44:51 [ 3] [ 6] [011000] +18:44:51 [ 4] [ 12] [000250000000] +18:44:51 [ 7] [ 10] [0320114356] +18:44:51 [ 11] [ 6] [271278] +18:44:51 [ 12] [ 6] [184356] +18:44:51 [ 13] [ 4] [0320] +18:44:51 [ 15] [ 4] [0320] +18:44:51 [ 18] [ 4] [6011] +18:44:51 [ 19] [ 3] [418] +18:44:51 [ 22] [ 3] [021] +18:44:51 [ 32] [ 6] [180893] +18:44:51 [ 35] [ 34] [6226331500062322=49121201201160000] +18:44:51 [ 37] [ 12] [507911271278] +18:44:51 [ 39] [ 2] [61] +18:44:51 [ 41] [ 8] [0161HQBR] +18:44:51 [ 49] [ 3] [418] +18:44:51 ============================================================================ +18:44:51 Sending to : +18:44:51 ============================================================================ +18:44:51 + + +waiting on router queue for slot.... +18:44:52 ============================================================================ +18:44:52 Slot Id : <212> +18:44:52 Transaction Type : RESPONSE +18:44:52 Received From : +18:44:52 ============================================================================ +18:44:52 FNo. Len. Field Value +18:44:52 ============================================================================ +18:44:52 [ 1] [ 4] [0210] +18:44:52 [ 2] [ 16] [6226331500062322] +18:44:52 [ 3] [ 6] [011000] +18:44:52 [ 4] [ 12] [000250000000] +18:44:52 [ 7] [ 10] [0320114356] +18:44:52 [ 11] [ 6] [271278] +18:44:52 [ 12] [ 6] [184356] +18:44:52 [ 13] [ 4] [0320] +18:44:52 [ 15] [ 4] [0320] +18:44:52 [ 18] [ 4] [6011] +18:44:52 [ 19] [ 3] [418] +18:44:52 [ 22] [ 3] [021] +18:44:52 [ 32] [ 6] [180893] +18:44:52 [ 35] [ 34] [6226331500062322=49121201201160000] +18:44:52 [ 37] [ 12] [507911271278] +18:44:52 [ 39] [ 2] [61] +18:44:52 [ 41] [ 8] [0161HQBR] +18:44:52 [ 49] [ 3] [418] +18:44:52 ============================================================================ +18:44:52 Calculate Source COMM Id = 2 +18:44:52 ============================================================================ +18:44:52 + + +waiting on router queue for slot.... +18:44:55 ============================================================================ +18:44:55 Slot Id : <213> +18:44:55 Transaction Type : REQUEST +18:44:55 Received From : +18:44:55 ============================================================================ +18:44:55 FNo. Len. Field Value +18:44:55 ============================================================================ +18:44:55 [ 1] [ 4] [0200] +18:44:55 [ 2] [ 16] [6688990107038901] +18:44:55 [ 3] [ 6] [010000] +18:44:55 [ 4] [ 12] [000010000000] +18:44:55 [ 7] [ 10] [0320184450] +18:44:55 [ 11] [ 6] [830465] +18:44:55 [ 12] [ 6] [184450] +18:44:55 [ 13] [ 4] [0320] +18:44:55 [ 15] [ 4] [0320] +18:44:55 [ 18] [ 4] [6011] +18:44:55 [ 22] [ 3] [900] +18:44:55 [ 25] [ 2] [02] +18:44:55 [ 28] [ 9] [D00002000] +18:44:55 [ 32] [ 6] [621354] +18:44:55 [ 35] [ 37] [6688990107038901=44011231890122800000] +18:44:55 [ 37] [ 12] [507902547241] +18:44:55 [ 41] [ 8] [05003700] +18:44:55 [ 42] [ 15] [NATIVE ] +18:44:55 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +18:44:55 [ 49] [ 3] [418] +18:44:55 [ 52] [ 16] [D72FBDC9B6F56000] +18:44:55 ============================================================================ +18:44:55 + + +waiting on router queue for slot.... +18:44:55 Sending to : +18:44:55 ============================================================================ +18:44:55 Sending to : +18:44:55 ============================================================================ +18:44:55 ============================================================================ +18:44:55 Slot Id : <207> +18:44:55 Transaction Type : REQUEST +18:44:55 Received From : +18:44:55 ============================================================================ +18:44:55 FNo. Len. Field Value +18:44:55 ============================================================================ +18:44:55 [ 1] [ 4] [0200] +18:44:55 [ 2] [ 16] [6213541000227465] +18:44:55 [ 3] [ 6] [010000] +18:44:55 [ 4] [ 12] [000100000000] +18:44:55 [ 7] [ 10] [0320184244] +18:44:55 [ 11] [ 6] [955006] +18:44:55 [ 12] [ 6] [184244] +18:44:55 [ 13] [ 4] [0320] +18:44:55 [ 15] [ 4] [0320] +18:44:55 [ 18] [ 4] [6011] +18:44:55 [ 19] [ 3] [418] +18:44:55 [ 22] [ 3] [021] +18:44:55 [ 25] [ 2] [01] +18:44:55 [ 28] [ 9] [D00002000] +18:44:55 [ 32] [ 6] [668899] +18:44:55 [ 35] [ 32] [6213541000227465=491212012746420] +18:44:55 [ 37] [ 12] [507901541779] +18:44:55 [ 41] [ 8] [03020016] +18:44:55 [ 42] [ 15] [APT ] +18:44:55 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +18:44:55 [ 49] [ 3] [418] +18:44:55 [ 52] [ 16] [C2835F1F33B18249] +18:44:55 ============================================================================ +18:44:55 + + +waiting on router queue for slot.... +18:44:55 Sending to : +18:44:55 ============================================================================ +18:44:55 Sending to : +18:44:55 ============================================================================ +18:44:55 ============================================================================ +18:44:55 Slot Id : <230> +18:44:55 Transaction Type : REQUEST +18:44:55 Received From : +18:44:55 ============================================================================ +18:44:55 FNo. Len. Field Value +18:44:55 ============================================================================ +18:44:55 [ 1] [ 4] [0800] +18:44:55 [ 7] [ 10] [0320114450] +18:44:55 [ 11] [ 6] [051526] +18:44:55 [ 37] [ 12] [507918051526] +18:44:55 [ 70] [ 3] [001] +18:44:55 ============================================================================ +18:44:55 + + +waiting on router queue for slot.... +18:44:55 Sending to : +18:44:55 ============================================================================ +18:44:55 ============================================================================ +18:44:55 Slot Id : <230> +18:44:55 Transaction Type : RESPONSE +18:44:55 Received From : +18:44:55 ============================================================================ +18:44:55 FNo. Len. Field Value +18:44:55 ============================================================================ +18:44:55 [ 1] [ 4] [0810] +18:44:55 [ 7] [ 10] [0320114450] +18:44:55 [ 11] [ 6] [051526] +18:44:55 [ 37] [ 12] [507918051526] +18:44:55 [ 39] [ 2] [00] +18:44:55 [ 70] [ 3] [001] +18:44:55 ============================================================================ +18:44:55 Calculate Source COMM Id = 0 +18:44:55 ============================================================================ +18:44:55 + + +waiting on router queue for slot.... +18:44:55 ============================================================================ +18:44:55 Slot Id : <221> +18:44:55 Transaction Type : REQUEST +18:44:55 Received From : +18:44:55 ============================================================================ +18:44:55 FNo. Len. Field Value +18:44:55 ============================================================================ +18:44:55 [ 1] [ 4] [0800] +18:44:55 [ 2] [ 5] [02531] +18:44:55 [ 3] [ 6] [579188] +18:44:55 [ 7] [ 10] [0320114455] +18:44:55 [ 11] [ 6] [807500] +18:44:55 [ 15] [ 10] [0320114455] +18:44:55 [ 37] [ 11] [57918807500] +18:44:55 [ 70] [ 3] [001] +18:44:55 ============================================================================ +18:44:55 + + +waiting on router queue for slot.... +18:44:55 ============================================================================ +18:44:55 Slot Id : <213> +18:44:55 Transaction Type : REQUEST +18:44:55 Received From : +18:44:55 ============================================================================ +18:44:55 FNo. Len. Field Value +18:44:55 ============================================================================ +18:44:55 [ 1] [ 4] [0200] +18:44:55 [ 2] [ 16] [6688990107038901] +18:44:55 [ 3] [ 6] [010000] +18:44:55 [ 4] [ 12] [000010000000] +18:44:55 [ 7] [ 10] [0320184450] +18:44:55 [ 11] [ 6] [830465] +18:44:55 [ 12] [ 6] [184450] +18:44:55 [ 13] [ 4] [0320] +18:44:55 [ 15] [ 4] [0320] +18:44:55 [ 18] [ 4] [6011] +18:44:55 [ 22] [ 3] [900] +18:44:55 [ 25] [ 2] [02] +18:44:55 [ 28] [ 9] [D00002000] +18:44:55 [ 32] [ 6] [621354] +18:44:55 [ 35] [ 37] [6688990107038901=44011231890122800000] +18:44:55 [ 37] [ 12] [507902547241] +18:44:55 [ 41] [ 8] [05003700] +18:44:55 [ 42] [ 15] [NATIVE ] +18:44:55 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +18:44:55 [ 49] [ 3] [418] +18:44:55 [ 52] [ 16] [D72FBDC9B6F56000] +18:44:55 ============================================================================ +18:44:55 + + +waiting on router queue for slot.... +18:44:55 Sending to : +18:44:55 ============================================================================ +18:44:55 ============================================================================ +18:44:55 Slot Id : <213> +18:44:55 Transaction Type : REQUEST +18:44:55 Received From : +18:44:55 ============================================================================ +18:44:55 FNo. Len. Field Value +18:44:55 ============================================================================ +18:44:55 [ 1] [ 4] [0200] +18:44:55 [ 2] [ 16] [6688990107038901] +18:44:55 [ 3] [ 6] [010000] +18:44:55 [ 4] [ 12] [000010000000] +18:44:55 [ 7] [ 10] [0320184450] +18:44:55 [ 11] [ 6] [830465] +18:44:55 [ 12] [ 6] [184450] +18:44:55 [ 13] [ 4] [0320] +18:44:55 [ 15] [ 4] [0320] +18:44:55 [ 18] [ 4] [6011] +18:44:55 [ 22] [ 3] [900] +18:44:55 [ 25] [ 2] [02] +18:44:55 [ 28] [ 9] [D00002000] +18:44:55 [ 32] [ 6] [621354] +18:44:55 [ 35] [ 37] [6688990107038901=44011231890122800000] +18:44:55 [ 37] [ 12] [507902547241] +18:44:55 [ 41] [ 8] [05003700] +18:44:55 [ 42] [ 15] [NATIVE ] +18:44:55 [ 43] [ 40] [SOUPHANOUVONG UNIVER LuangprabangLAO] +18:44:55 [ 49] [ 3] [418] +18:44:55 [ 52] [ 16] [CE8E7DB83979D4FF] +18:44:55 ============================================================================ +18:44:55 + + +waiting on router queue for slot.... +18:44:55 Sending to : <4> +18:44:55 ============================================================================ +18:44:55 ============================================================================ +18:44:55 Slot Id : <207> +18:44:55 Transaction Type : REQUEST +18:44:55 Received From : +18:44:55 ============================================================================ +18:44:55 FNo. Len. Field Value +18:44:55 ============================================================================ +18:44:55 [ 1] [ 4] [0200] +18:44:55 [ 2] [ 16] [6213541000227465] +18:44:55 [ 3] [ 6] [010000] +18:44:55 [ 4] [ 12] [000100000000] +18:44:55 [ 7] [ 10] [0320184244] +18:44:55 [ 11] [ 6] [955006] +18:44:55 [ 12] [ 6] [184244] +18:44:55 [ 13] [ 4] [0320] +18:44:55 [ 15] [ 4] [0320] +18:44:55 [ 18] [ 4] [6011] +18:44:55 [ 19] [ 3] [418] +18:44:55 [ 22] [ 3] [021] +18:44:55 [ 25] [ 2] [01] +18:44:55 [ 28] [ 9] [D00002000] +18:44:55 [ 32] [ 6] [668899] +18:44:55 [ 35] [ 32] [6213541000227465=491212012746420] +18:44:55 [ 37] [ 12] [507901541779] +18:44:55 [ 41] [ 8] [03020016] +18:44:55 [ 42] [ 15] [APT ] +18:44:55 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +18:44:55 [ 49] [ 3] [418] +18:44:55 [ 52] [ 16] [C2835F1F33B18249] +18:44:55 ============================================================================ +18:44:55 + + +waiting on router queue for slot.... +18:44:55 Sending to : +18:44:55 ============================================================================ +18:44:55 ============================================================================ +18:44:55 Slot Id : <221> +18:44:55 Transaction Type : RESPONSE +18:44:55 Received From : +18:44:55 ============================================================================ +18:44:55 FNo. Len. Field Value +18:44:55 ============================================================================ +18:44:55 [ 1] [ 4] [0810] +18:44:55 [ 7] [ 10] [0320114455] +18:44:55 [ 11] [ 6] [807500] +18:44:55 [ 15] [ 4] [0320] +18:44:55 [ 37] [ 12] [57918807500] +18:44:55 [ 39] [ 2] [00] +18:44:55 [ 70] [ 3] [001] +18:44:55 ============================================================================ +18:44:55 Sending to : +18:44:55 ============================================================================ +18:44:55 + + +waiting on router queue for slot.... +18:44:55 ============================================================================ +18:44:55 Slot Id : <207> +18:44:55 Transaction Type : REQUEST +18:44:55 Received From : +18:44:55 ============================================================================ +18:44:55 FNo. Len. Field Value +18:44:55 ============================================================================ +18:44:55 [ 1] [ 4] [0200] +18:44:55 [ 2] [ 16] [6213541000227465] +18:44:55 [ 3] [ 6] [010000] +18:44:55 [ 4] [ 12] [000100000000] +18:44:55 [ 7] [ 10] [0320184244] +18:44:55 [ 11] [ 6] [955006] +18:44:55 [ 12] [ 6] [184244] +18:44:55 [ 13] [ 4] [0320] +18:44:55 [ 15] [ 4] [0320] +18:44:55 [ 18] [ 4] [6011] +18:44:55 [ 19] [ 3] [418] +18:44:55 [ 22] [ 3] [021] +18:44:55 [ 25] [ 2] [01] +18:44:55 [ 28] [ 9] [D00002000] +18:44:55 [ 32] [ 6] [668899] +18:44:55 [ 35] [ 32] [6213541000227465=491212012746420] +18:44:55 [ 37] [ 12] [507901541779] +18:44:55 [ 41] [ 8] [03020016] +18:44:55 [ 42] [ 15] [APT ] +18:44:55 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +18:44:55 [ 49] [ 3] [418] +18:44:55 [ 52] [ 16] [72D2CCD552B258CE] +18:44:55 ============================================================================ +18:44:55 + + +waiting on router queue for slot.... +18:44:55 Sending to : <0> +18:44:55 ============================================================================ +18:44:56 ============================================================================ +18:44:56 Slot Id : <207> +18:44:56 Transaction Type : RESPONSE +18:44:56 Received From : +18:44:56 ============================================================================ +18:44:56 FNo. Len. Field Value +18:44:56 ============================================================================ +18:44:56 [ 1] [ 4] [0210] +18:44:56 [ 2] [ 16] [6213541000227465] +18:44:56 [ 3] [ 6] [010000] +18:44:56 [ 4] [ 12] [000100000000] +18:44:56 [ 7] [ 10] [0320184244] +18:44:56 [ 11] [ 6] [955006] +18:44:56 [ 12] [ 6] [184244] +18:44:56 [ 13] [ 4] [0320] +18:44:56 [ 15] [ 4] [0320] +18:44:56 [ 18] [ 4] [6011] +18:44:56 [ 19] [ 3] [418] +18:44:56 [ 32] [ 6] [668899] +18:44:56 [ 35] [ 32] [6213541000227465=491212012746420] +18:44:56 [ 37] [ 12] [507901541779] +18:44:56 [ 38] [ 6] [531907] +18:44:56 [ 39] [ 2] [00] +18:44:56 [ 41] [ 8] [03020016] +18:44:56 [ 49] [ 3] [418] +18:44:56 [ 54] [ 40] [0001418C0004828145020002418C000482814502] +18:44:56 ============================================================================ +18:44:56 Sending to : +18:44:56 ============================================================================ +18:44:56 + + +waiting on router queue for slot.... +18:44:56 ============================================================================ +18:44:56 Slot Id : <213> +18:44:56 Transaction Type : RESPONSE +18:44:56 Received From : +18:44:56 ============================================================================ +18:44:56 FNo. Len. Field Value +18:44:56 ============================================================================ +18:44:56 [ 1] [ 4] [0210] +18:44:56 [ 2] [ 16] [6688990107038901] +18:44:56 [ 3] [ 6] [010000] +18:44:56 [ 4] [ 12] [000010000000] +18:44:56 [ 11] [ 6] [830465] +18:44:56 [ 12] [ 6] [184450] +18:44:56 [ 15] [ 4] [0320] +18:44:56 [ 18] [ 4] [6011] +18:44:56 [ 32] [ 6] [621354] +18:44:56 [ 35] [ 37] [6688990107038901=44011231890122800000] +18:44:56 [ 37] [ 12] [507902547241] +18:44:56 [ 38] [ 6] [222898] +18:44:56 [ 39] [ 2] [00] +18:44:56 [ 41] [ 8] [05003700] +18:44:56 [ 49] [ 3] [418] +18:44:56 [ 54] [ 20] [0002418C000004416289] +18:44:56 ============================================================================ +18:44:56 Sending to : +18:44:56 ============================================================================ +18:44:56 + + +waiting on router queue for slot.... +18:44:57 ============================================================================ +18:44:57 Slot Id : <207> +18:44:57 Transaction Type : RESPONSE +18:44:57 Received From : +18:44:57 ============================================================================ +18:44:57 FNo. Len. Field Value +18:44:57 ============================================================================ +18:44:57 [ 1] [ 4] [0210] +18:44:57 [ 2] [ 16] [6213541000227465] +18:44:57 [ 3] [ 6] [010000] +18:44:57 [ 4] [ 12] [000100000000] +18:44:57 [ 7] [ 10] [0320184244] +18:44:57 [ 11] [ 6] [955006] +18:44:57 [ 12] [ 6] [184244] +18:44:57 [ 13] [ 4] [0320] +18:44:57 [ 15] [ 4] [0320] +18:44:57 [ 18] [ 4] [6011] +18:44:57 [ 19] [ 3] [418] +18:44:57 [ 32] [ 6] [668899] +18:44:57 [ 35] [ 32] [6213541000227465=491212012746420] +18:44:57 [ 37] [ 12] [507901541779] +18:44:57 [ 38] [ 6] [531907] +18:44:57 [ 39] [ 2] [00] +18:44:57 [ 41] [ 8] [03020016] +18:44:57 [ 49] [ 3] [418] +18:44:57 [ 54] [ 40] [0001418C0004828145020002418C000482814502] +18:44:57 ============================================================================ +18:44:57 Calculate Source COMM Id = 4 +18:44:57 ============================================================================ +18:44:57 + + +waiting on router queue for slot.... +18:44:57 ============================================================================ +18:44:57 Slot Id : <183> +18:44:57 Transaction Type : REQUEST +18:44:57 Received From : +18:44:57 ============================================================================ +18:44:57 FNo. Len. Field Value +18:44:57 ============================================================================ +18:44:57 [ 1] [ 4] [0800] +18:44:57 [ 7] [ 10] [0320115242] +18:44:57 [ 11] [ 6] [029921] +18:44:57 [ 37] [ 12] [57918029921] +18:44:57 [ 70] [ 3] [301] +18:44:57 ============================================================================ +18:44:57 + + +waiting on router queue for slot.... +18:44:57 Sending to : +18:44:57 ============================================================================ +18:44:57 ============================================================================ +18:44:57 Slot Id : <183> +18:44:57 Transaction Type : RESPONSE +18:44:57 Received From : +18:44:57 ============================================================================ +18:44:57 FNo. Len. Field Value +18:44:57 ============================================================================ +18:44:57 [ 1] [ 4] [0810] +18:44:57 [ 7] [ 10] [0320115242] +18:44:57 [ 11] [ 6] [029921] +18:44:57 [ 37] [ 12] [579180299210] +18:44:57 [ 39] [ 2] [00] +18:44:57 [ 70] [ 3] [810] +18:44:57 ============================================================================ +18:44:57 Calculate Source COMM Id = 1 +18:44:57 ============================================================================ +18:44:57 + + +waiting on router queue for slot.... +18:44:58 ============================================================================ +18:44:58 Slot Id : <169> +18:44:58 Transaction Type : REQUEST +18:44:58 Received From : +18:44:58 ============================================================================ +18:44:58 FNo. Len. Field Value +18:44:58 ============================================================================ +18:44:58 [ 1] [ 4] [0200] +18:44:58 [ 2] [ 16] [6688990040037606] +18:44:58 [ 3] [ 6] [010000] +18:44:58 [ 4] [ 12] [000010000000] +18:44:58 [ 7] [ 10] [0320114404] +18:44:58 [ 11] [ 6] [271280] +18:44:58 [ 12] [ 6] [184404] +18:44:58 [ 13] [ 4] [0320] +18:44:58 [ 14] [ 4] [9711] +18:44:58 [ 15] [ 4] [0320] +18:44:58 [ 18] [ 4] [6011] +18:44:58 [ 19] [ 3] [418] +18:44:58 [ 22] [ 3] [021] +18:44:58 [ 25] [ 2] [01] +18:44:58 [ 28] [ 9] [D00002000] +18:44:58 [ 32] [ 6] [180893] +18:44:58 [ 35] [ 37] [6688990040037606=97111261070685200000] +18:44:58 [ 37] [ 12] [507911271280] +18:44:58 [ 41] [ 8] [0261PSL1] +18:44:58 [ 42] [ 15] [999999 ] +18:44:58 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +18:44:58 [ 49] [ 3] [418] +18:44:58 [ 52] [ 16] [D1D700B9DE41FDB7] +18:44:58 ============================================================================ +18:44:58 + + +waiting on router queue for slot.... +18:44:58 Sending to : +18:44:58 ============================================================================ +18:44:58 Sending to : +18:44:58 ============================================================================ +18:44:58 ============================================================================ +18:44:58 Slot Id : <169> +18:44:58 Transaction Type : REQUEST +18:44:58 Received From : +18:44:58 ============================================================================ +18:44:58 FNo. Len. Field Value +18:44:58 ============================================================================ +18:44:58 [ 1] [ 4] [0200] +18:44:58 [ 2] [ 16] [6688990040037606] +18:44:58 [ 3] [ 6] [010000] +18:44:58 [ 4] [ 12] [000010000000] +18:44:58 [ 7] [ 10] [0320114404] +18:44:58 [ 11] [ 6] [271280] +18:44:58 [ 12] [ 6] [184404] +18:44:58 [ 13] [ 4] [0320] +18:44:58 [ 14] [ 4] [9711] +18:44:58 [ 15] [ 4] [0320] +18:44:58 [ 18] [ 4] [6011] +18:44:58 [ 19] [ 3] [418] +18:44:58 [ 22] [ 3] [021] +18:44:58 [ 25] [ 2] [01] +18:44:58 [ 28] [ 9] [D00002000] +18:44:58 [ 32] [ 6] [180893] +18:44:58 [ 35] [ 37] [6688990040037606=97111261070685200000] +18:44:58 [ 37] [ 12] [507911271280] +18:44:58 [ 41] [ 8] [0261PSL1] +18:44:58 [ 42] [ 15] [999999 ] +18:44:58 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +18:44:58 [ 49] [ 3] [418] +18:44:58 [ 52] [ 16] [D1D700B9DE41FDB7] +18:44:58 ============================================================================ +18:44:58 + + +waiting on router queue for slot.... +18:44:58 Sending to : +18:44:58 ============================================================================ +18:44:58 ============================================================================ +18:44:58 Slot Id : <169> +18:44:58 Transaction Type : REQUEST +18:44:58 Received From : +18:44:58 ============================================================================ +18:44:58 FNo. Len. Field Value +18:44:58 ============================================================================ +18:44:58 [ 1] [ 4] [0200] +18:44:58 [ 2] [ 16] [6688990040037606] +18:44:58 [ 3] [ 6] [010000] +18:44:58 [ 4] [ 12] [000010000000] +18:44:58 [ 7] [ 10] [0320114404] +18:44:58 [ 11] [ 6] [271280] +18:44:58 [ 12] [ 6] [184404] +18:44:58 [ 13] [ 4] [0320] +18:44:58 [ 14] [ 4] [9711] +18:44:58 [ 15] [ 4] [0320] +18:44:58 [ 18] [ 4] [6011] +18:44:58 [ 19] [ 3] [418] +18:44:58 [ 22] [ 3] [021] +18:44:58 [ 25] [ 2] [01] +18:44:58 [ 28] [ 9] [D00002000] +18:44:58 [ 32] [ 6] [180893] +18:44:58 [ 35] [ 37] [6688990040037606=97111261070685200000] +18:44:58 [ 37] [ 12] [507911271280] +18:44:58 [ 41] [ 8] [0261PSL1] +18:44:58 [ 42] [ 15] [999999 ] +18:44:58 [ 43] [ 40] [ATM PHONGSALY BRANCH LOCATION, Phongsaly] +18:44:58 [ 49] [ 3] [418] +18:44:58 [ 52] [ 16] [49E89C69E3196910] +18:44:58 ============================================================================ +18:44:58 + + +waiting on router queue for slot.... +18:44:58 Sending to : <0> +18:44:58 ============================================================================ +18:44:58 ============================================================================ +18:44:58 Slot Id : <169> +18:44:58 Transaction Type : RESPONSE +18:44:58 Received From : +18:44:58 ============================================================================ +18:44:58 FNo. Len. Field Value +18:44:58 ============================================================================ +18:44:58 [ 1] [ 4] [0210] +18:44:58 [ 2] [ 16] [6688990040037606] +18:44:58 [ 3] [ 6] [010000] +18:44:58 [ 4] [ 12] [000010000000] +18:44:58 [ 7] [ 10] [0320114404] +18:44:58 [ 11] [ 6] [271280] +18:44:58 [ 12] [ 6] [184404] +18:44:58 [ 13] [ 4] [0320] +18:44:58 [ 15] [ 4] [0320] +18:44:58 [ 18] [ 4] [6011] +18:44:58 [ 19] [ 3] [418] +18:44:58 [ 22] [ 3] [021] +18:44:58 [ 32] [ 6] [180893] +18:44:58 [ 35] [ 37] [6688990040037606=97111261070685200000] +18:44:58 [ 37] [ 12] [507911271280] +18:44:58 [ 39] [ 2] [14] +18:44:58 [ 41] [ 8] [0261PSL1] +18:44:58 [ 49] [ 3] [418] +18:44:58 ============================================================================ +18:44:58 Sending to : +18:44:58 ============================================================================ +18:44:58 + + +waiting on router queue for slot.... +18:44:59 ============================================================================ +18:44:59 Slot Id : <213> +18:44:59 Transaction Type : RESPONSE +18:44:59 Received From : +18:44:59 ============================================================================ +18:44:59 FNo. Len. Field Value +18:44:59 ============================================================================ +18:44:59 [ 1] [ 4] [0210] +18:44:59 [ 2] [ 16] [6688990107038901] +18:44:59 [ 3] [ 6] [010000] +18:44:59 [ 4] [ 12] [000010000000] +18:44:59 [ 11] [ 6] [830465] +18:44:59 [ 12] [ 6] [184450] +18:44:59 [ 15] [ 4] [0320] +18:44:59 [ 18] [ 4] [6011] +18:44:59 [ 32] [ 6] [621354] +18:44:59 [ 35] [ 37] [6688990107038901=44011231890122800000] +18:44:59 [ 37] [ 12] [507902547241] +18:44:59 [ 38] [ 6] [222898] +18:44:59 [ 39] [ 2] [00] +18:44:59 [ 41] [ 8] [05003700] +18:44:59 [ 49] [ 3] [418] +18:44:59 [ 54] [ 20] [0002418C000004416289] +18:44:59 ============================================================================ +18:44:59 Calculate Source COMM Id = 0 +18:44:59 ============================================================================ +18:44:59 + + +waiting on router queue for slot.... +18:44:59 ============================================================================ +18:44:59 Slot Id : <169> +18:44:59 Transaction Type : RESPONSE +18:44:59 Received From : +18:44:59 ============================================================================ +18:44:59 FNo. Len. Field Value +18:44:59 ============================================================================ +18:44:59 [ 1] [ 4] [0210] +18:44:59 [ 2] [ 16] [6688990040037606] +18:44:59 [ 3] [ 6] [010000] +18:44:59 [ 4] [ 12] [000010000000] +18:44:59 [ 7] [ 10] [0320114404] +18:44:59 [ 11] [ 6] [271280] +18:44:59 [ 12] [ 6] [184404] +18:44:59 [ 13] [ 4] [0320] +18:44:59 [ 15] [ 4] [0320] +18:44:59 [ 18] [ 4] [6011] +18:44:59 [ 19] [ 3] [418] +18:44:59 [ 22] [ 3] [021] +18:44:59 [ 32] [ 6] [180893] +18:44:59 [ 35] [ 37] [6688990040037606=97111261070685200000] +18:44:59 [ 37] [ 12] [507911271280] +18:44:59 [ 39] [ 2] [14] +18:44:59 [ 41] [ 8] [0261PSL1] +18:44:59 [ 49] [ 3] [418] +18:44:59 ============================================================================ +18:44:59 Calculate Source COMM Id = 2 +18:44:59 ============================================================================ +18:44:59 + + +waiting on router queue for slot.... +18:45:10 ============================================================================ +18:45:10 Slot Id : <205> +18:45:10 Transaction Type : REQUEST +18:45:10 Received From : +18:45:10 ============================================================================ +18:45:10 FNo. Len. Field Value +18:45:10 ============================================================================ +18:45:10 [ 1] [ 4] [0200] +18:45:10 [ 2] [ 16] [6226331500062322] +18:45:10 [ 3] [ 6] [010000] +18:45:10 [ 4] [ 12] [000200000000] +18:45:10 [ 7] [ 10] [0320114414] +18:45:10 [ 11] [ 6] [271282] +18:45:10 [ 12] [ 6] [184414] +18:45:10 [ 13] [ 4] [0320] +18:45:10 [ 14] [ 4] [4912] +18:45:10 [ 15] [ 4] [0320] +18:45:10 [ 18] [ 4] [6011] +18:45:10 [ 19] [ 3] [418] +18:45:10 [ 22] [ 3] [021] +18:45:10 [ 25] [ 2] [01] +18:45:10 [ 28] [ 9] [D00015000] +18:45:10 [ 32] [ 6] [180893] +18:45:10 [ 35] [ 34] [6226331500062322=49121201201160000] +18:45:10 [ 37] [ 12] [507911271282] +18:45:10 [ 41] [ 8] [0161HQBR] +18:45:10 [ 42] [ 15] [999999 ] +18:45:10 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:45:10 [ 49] [ 3] [418] +18:45:10 [ 52] [ 16] [A0228E97D54BEB55] +18:45:10 ============================================================================ +18:45:10 + + +waiting on router queue for slot.... +18:45:10 Sending to : +18:45:10 ============================================================================ +18:45:10 Sending to : +18:45:10 ============================================================================ +18:45:10 ============================================================================ +18:45:10 Slot Id : <205> +18:45:10 Transaction Type : REQUEST +18:45:10 Received From : +18:45:10 ============================================================================ +18:45:10 FNo. Len. Field Value +18:45:10 ============================================================================ +18:45:10 [ 1] [ 4] [0200] +18:45:10 [ 2] [ 16] [6226331500062322] +18:45:10 [ 3] [ 6] [010000] +18:45:10 [ 4] [ 12] [000200000000] +18:45:10 [ 7] [ 10] [0320114414] +18:45:10 [ 11] [ 6] [271282] +18:45:10 [ 12] [ 6] [184414] +18:45:10 [ 13] [ 4] [0320] +18:45:10 [ 14] [ 4] [4912] +18:45:10 [ 15] [ 4] [0320] +18:45:10 [ 18] [ 4] [6011] +18:45:10 [ 19] [ 3] [418] +18:45:10 [ 22] [ 3] [021] +18:45:10 [ 25] [ 2] [01] +18:45:10 [ 28] [ 9] [D00015000] +18:45:10 [ 32] [ 6] [180893] +18:45:10 [ 35] [ 34] [6226331500062322=49121201201160000] +18:45:10 [ 37] [ 12] [507911271282] +18:45:10 [ 41] [ 8] [0161HQBR] +18:45:10 [ 42] [ 15] [999999 ] +18:45:10 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:45:10 [ 49] [ 3] [418] +18:45:10 [ 52] [ 16] [A0228E97D54BEB55] +18:45:10 ============================================================================ +18:45:10 + + +waiting on router queue for slot.... +18:45:10 Sending to : +18:45:10 ============================================================================ +18:45:10 ============================================================================ +18:45:10 Slot Id : <205> +18:45:10 Transaction Type : REQUEST +18:45:10 Received From : +18:45:10 ============================================================================ +18:45:10 FNo. Len. Field Value +18:45:10 ============================================================================ +18:45:10 [ 1] [ 4] [0200] +18:45:10 [ 2] [ 16] [6226331500062322] +18:45:10 [ 3] [ 6] [010000] +18:45:10 [ 4] [ 12] [000200000000] +18:45:10 [ 7] [ 10] [0320114414] +18:45:10 [ 11] [ 6] [271282] +18:45:10 [ 12] [ 6] [184414] +18:45:10 [ 13] [ 4] [0320] +18:45:10 [ 14] [ 4] [4912] +18:45:10 [ 15] [ 4] [0320] +18:45:10 [ 18] [ 4] [6011] +18:45:10 [ 19] [ 3] [418] +18:45:10 [ 22] [ 3] [021] +18:45:10 [ 25] [ 2] [01] +18:45:10 [ 28] [ 9] [D00015000] +18:45:10 [ 32] [ 6] [180893] +18:45:10 [ 35] [ 34] [6226331500062322=49121201201160000] +18:45:10 [ 37] [ 12] [507911271282] +18:45:10 [ 41] [ 8] [0161HQBR] +18:45:10 [ 42] [ 15] [999999 ] +18:45:10 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:45:10 [ 49] [ 3] [418] +18:45:10 [ 52] [ 16] [EC7489C5B90FCA40] +18:45:10 ============================================================================ +18:45:10 + + +waiting on router queue for slot.... +18:45:10 Sending to : <0> +18:45:10 ============================================================================ +18:45:10 ============================================================================ +18:45:10 Slot Id : <205> +18:45:10 Transaction Type : RESPONSE +18:45:10 Received From : +18:45:10 ============================================================================ +18:45:10 FNo. Len. Field Value +18:45:10 ============================================================================ +18:45:10 [ 1] [ 4] [0210] +18:45:10 [ 2] [ 16] [6226331500062322] +18:45:10 [ 3] [ 6] [010000] +18:45:10 [ 4] [ 12] [000200000000] +18:45:10 [ 7] [ 10] [0320114414] +18:45:10 [ 11] [ 6] [271282] +18:45:10 [ 12] [ 6] [184414] +18:45:10 [ 13] [ 4] [0320] +18:45:10 [ 15] [ 4] [0320] +18:45:10 [ 18] [ 4] [6011] +18:45:10 [ 19] [ 3] [418] +18:45:10 [ 22] [ 3] [021] +18:45:10 [ 32] [ 6] [180893] +18:45:10 [ 35] [ 34] [6226331500062322=49121201201160000] +18:45:10 [ 37] [ 12] [507911271282] +18:45:10 [ 39] [ 2] [61] +18:45:10 [ 41] [ 8] [0161HQBR] +18:45:10 [ 49] [ 3] [418] +18:45:10 ============================================================================ +18:45:10 Sending to : +18:45:10 ============================================================================ +18:45:10 + + +waiting on router queue for slot.... +18:45:11 ============================================================================ +18:45:11 Slot Id : <205> +18:45:11 Transaction Type : RESPONSE +18:45:11 Received From : +18:45:11 ============================================================================ +18:45:11 FNo. Len. Field Value +18:45:11 ============================================================================ +18:45:11 [ 1] [ 4] [0210] +18:45:11 [ 2] [ 16] [6226331500062322] +18:45:11 [ 3] [ 6] [010000] +18:45:11 [ 4] [ 12] [000200000000] +18:45:11 [ 7] [ 10] [0320114414] +18:45:11 [ 11] [ 6] [271282] +18:45:11 [ 12] [ 6] [184414] +18:45:11 [ 13] [ 4] [0320] +18:45:11 [ 15] [ 4] [0320] +18:45:11 [ 18] [ 4] [6011] +18:45:11 [ 19] [ 3] [418] +18:45:11 [ 22] [ 3] [021] +18:45:11 [ 32] [ 6] [180893] +18:45:11 [ 35] [ 34] [6226331500062322=49121201201160000] +18:45:11 [ 37] [ 12] [507911271282] +18:45:11 [ 39] [ 2] [61] +18:45:11 [ 41] [ 8] [0161HQBR] +18:45:11 [ 49] [ 3] [418] +18:45:11 ============================================================================ +18:45:11 Calculate Source COMM Id = 2 +18:45:11 ============================================================================ +18:45:11 + + +waiting on router queue for slot.... +18:45:26 ============================================================================ +18:45:26 Slot Id : <185> +18:45:26 Transaction Type : REQUEST +18:45:26 Received From : +18:45:26 ============================================================================ +18:45:26 FNo. Len. Field Value +18:45:26 ============================================================================ +18:45:26 [ 1] [ 4] [0800] +18:45:26 [ 7] [ 10] [0320114433] +18:45:26 [ 11] [ 6] [157776] +18:45:26 [ 70] [ 3] [301] +18:45:26 ============================================================================ +18:45:26 + + +waiting on router queue for slot.... +18:45:26 Sending to : +18:45:26 ============================================================================ +18:45:26 ============================================================================ +18:45:26 Slot Id : <185> +18:45:26 Transaction Type : RESPONSE +18:45:26 Received From : +18:45:26 ============================================================================ +18:45:26 FNo. Len. Field Value +18:45:26 ============================================================================ +18:45:26 [ 1] [ 4] [0810] +18:45:26 [ 7] [ 10] [0320114433] +18:45:26 [ 11] [ 6] [157776] +18:45:26 [ 39] [ 2] [00] +18:45:26 [ 70] [ 3] [301] +18:45:26 ============================================================================ +18:45:26 Calculate Source COMM Id = 2 +18:45:26 ============================================================================ +18:45:26 + + +waiting on router queue for slot.... +18:45:34 ============================================================================ +18:45:34 Slot Id : <149> +18:45:34 Transaction Type : REQUEST +18:45:34 Received From : +18:45:34 ============================================================================ +18:45:34 FNo. Len. Field Value +18:45:34 ============================================================================ +18:45:34 [ 1] [ 4] [0800] +18:45:34 [ 7] [ 10] [0321015723] +18:45:34 [ 11] [ 6] [185723] +18:45:34 [ 37] [ 12] [57918185723] +18:45:34 [ 70] [ 3] [301] +18:45:34 ============================================================================ +18:45:34 + + +waiting on router queue for slot.... +18:45:34 Sending to : +18:45:34 ============================================================================ +18:45:34 ============================================================================ +18:45:34 Slot Id : <149> +18:45:34 Transaction Type : RESPONSE +18:45:34 Received From : +18:45:34 ============================================================================ +18:45:34 FNo. Len. Field Value +18:45:34 ============================================================================ +18:45:34 [ 1] [ 4] [0810] +18:45:34 [ 7] [ 10] [0321015723] +18:45:34 [ 11] [ 6] [185723] +18:45:34 [ 37] [ 12] [579181857230] +18:45:34 [ 39] [ 2] [00] +18:45:34 [ 70] [ 3] [810] +18:45:34 ============================================================================ +18:45:34 Calculate Source COMM Id = 6 +18:45:34 ============================================================================ +18:45:34 + + +waiting on router queue for slot.... +18:45:37 ============================================================================ +18:45:37 Slot Id : <232> +18:45:37 Transaction Type : REQUEST +18:45:37 Received From : +18:45:37 ============================================================================ +18:45:37 FNo. Len. Field Value +18:45:37 ============================================================================ +18:45:37 [ 1] [ 4] [0800] +18:45:37 [ 7] [ 10] [0320114444] +18:45:37 [ 11] [ 6] [157777] +18:45:37 [ 70] [ 3] [301] +18:45:37 ============================================================================ +18:45:37 + + +waiting on router queue for slot.... +18:45:37 Sending to : +18:45:37 ============================================================================ +18:45:37 ============================================================================ +18:45:37 Slot Id : <232> +18:45:37 Transaction Type : RESPONSE +18:45:37 Received From : +18:45:37 ============================================================================ +18:45:37 FNo. Len. Field Value +18:45:37 ============================================================================ +18:45:37 [ 1] [ 4] [0810] +18:45:37 [ 7] [ 10] [0320114444] +18:45:37 [ 11] [ 6] [157777] +18:45:37 [ 39] [ 2] [00] +18:45:37 [ 70] [ 3] [301] +18:45:37 ============================================================================ +18:45:37 Calculate Source COMM Id = 2 +18:45:37 ============================================================================ +18:45:37 + + +waiting on router queue for slot.... +18:45:48 ============================================================================ +18:45:48 Slot Id : <180> +18:45:48 Transaction Type : REQUEST +18:45:48 Received From : +18:45:48 ============================================================================ +18:45:48 FNo. Len. Field Value +18:45:48 ============================================================================ +18:45:48 [ 1] [ 4] [0800] +18:45:48 [ 7] [ 10] [0320114454] +18:45:48 [ 11] [ 6] [157778] +18:45:48 [ 70] [ 3] [301] +18:45:48 ============================================================================ +18:45:48 + + +waiting on router queue for slot.... +18:45:48 Sending to : +18:45:48 ============================================================================ +18:45:48 ============================================================================ +18:45:48 Slot Id : <180> +18:45:48 Transaction Type : RESPONSE +18:45:48 Received From : +18:45:48 ============================================================================ +18:45:48 FNo. Len. Field Value +18:45:48 ============================================================================ +18:45:48 [ 1] [ 4] [0810] +18:45:48 [ 7] [ 10] [0320114454] +18:45:48 [ 11] [ 6] [157778] +18:45:48 [ 39] [ 2] [00] +18:45:48 [ 70] [ 3] [301] +18:45:48 ============================================================================ +18:45:48 Calculate Source COMM Id = 2 +18:45:48 ============================================================================ +18:45:48 + + +waiting on router queue for slot.... +18:45:50 ============================================================================ +18:45:50 Slot Id : <222> +18:45:50 Transaction Type : REQUEST +18:45:50 Received From : +18:45:50 ============================================================================ +18:45:50 FNo. Len. Field Value +18:45:50 ============================================================================ +18:45:50 [ 1] [ 4] [0200] +18:45:50 [ 2] [ 16] [1808931000018000] +18:45:50 [ 3] [ 6] [010000] +18:45:50 [ 4] [ 12] [000030000000] +18:45:50 [ 7] [ 10] [0320184340] +18:45:50 [ 11] [ 6] [955037] +18:45:50 [ 12] [ 6] [184340] +18:45:50 [ 13] [ 4] [0320] +18:45:50 [ 15] [ 4] [0320] +18:45:50 [ 18] [ 4] [6011] +18:45:50 [ 19] [ 3] [418] +18:45:50 [ 22] [ 3] [021] +18:45:50 [ 25] [ 2] [01] +18:45:50 [ 28] [ 9] [D00002000] +18:45:50 [ 32] [ 6] [668899] +18:45:50 [ 35] [ 27] [1808931000018000=1803500284] +18:45:50 [ 37] [ 12] [507901519468] +18:45:50 [ 41] [ 8] [03004003] +18:45:50 [ 42] [ 15] [APT ] +18:45:50 [ 43] [ 40] [ NAMKERNGMAI MARKET HOUYSA] +18:45:50 [ 49] [ 3] [418] +18:45:50 [ 52] [ 16] [C12C743A1E05FC79] +18:45:50 ============================================================================ +18:45:50 + + +waiting on router queue for slot.... +18:45:50 Sending to : +18:45:50 ============================================================================ +18:45:50 Sending to : +18:45:50 ============================================================================ +18:45:51 ============================================================================ +18:45:51 Slot Id : <222> +18:45:51 Transaction Type : REQUEST +18:45:51 Received From : +18:45:51 ============================================================================ +18:45:51 FNo. Len. Field Value +18:45:51 ============================================================================ +18:45:51 [ 1] [ 4] [0200] +18:45:51 [ 2] [ 16] [1808931000018000] +18:45:51 [ 3] [ 6] [010000] +18:45:51 [ 4] [ 12] [000030000000] +18:45:51 [ 7] [ 10] [0320184340] +18:45:51 [ 11] [ 6] [955037] +18:45:51 [ 12] [ 6] [184340] +18:45:51 [ 13] [ 4] [0320] +18:45:51 [ 15] [ 4] [0320] +18:45:51 [ 18] [ 4] [6011] +18:45:51 [ 19] [ 3] [418] +18:45:51 [ 22] [ 3] [021] +18:45:51 [ 25] [ 2] [01] +18:45:51 [ 28] [ 9] [D00002000] +18:45:51 [ 32] [ 6] [668899] +18:45:51 [ 35] [ 27] [1808931000018000=1803500284] +18:45:51 [ 37] [ 12] [507901519468] +18:45:51 [ 41] [ 8] [03004003] +18:45:51 [ 42] [ 15] [APT ] +18:45:51 [ 43] [ 40] [ NAMKERNGMAI MARKET HOUYSA] +18:45:51 [ 49] [ 3] [418] +18:45:51 [ 52] [ 16] [C12C743A1E05FC79] +18:45:51 ============================================================================ +18:45:51 + + +waiting on router queue for slot.... +18:45:51 Sending to : +18:45:51 ============================================================================ +18:45:51 ============================================================================ +18:45:51 Slot Id : <222> +18:45:51 Transaction Type : REQUEST +18:45:51 Received From : +18:45:51 ============================================================================ +18:45:51 FNo. Len. Field Value +18:45:51 ============================================================================ +18:45:51 [ 1] [ 4] [0200] +18:45:51 [ 2] [ 16] [1808931000018000] +18:45:51 [ 3] [ 6] [010000] +18:45:51 [ 4] [ 12] [000030000000] +18:45:51 [ 7] [ 10] [0320184340] +18:45:51 [ 11] [ 6] [955037] +18:45:51 [ 12] [ 6] [184340] +18:45:51 [ 13] [ 4] [0320] +18:45:51 [ 15] [ 4] [0320] +18:45:51 [ 18] [ 4] [6011] +18:45:51 [ 19] [ 3] [418] +18:45:51 [ 22] [ 3] [021] +18:45:51 [ 25] [ 2] [01] +18:45:51 [ 28] [ 9] [D00002000] +18:45:51 [ 32] [ 6] [668899] +18:45:51 [ 35] [ 27] [1808931000018000=1803500284] +18:45:51 [ 37] [ 12] [507901519468] +18:45:51 [ 41] [ 8] [03004003] +18:45:51 [ 42] [ 15] [APT ] +18:45:51 [ 43] [ 40] [ NAMKERNGMAI MARKET HOUYSA] +18:45:51 [ 49] [ 3] [418] +18:45:51 [ 52] [ 16] [1BE682E19AE7F8C6] +18:45:51 ============================================================================ +18:45:51 + + +waiting on router queue for slot.... +18:45:51 Sending to : <2> +18:45:51 ============================================================================ +18:45:54 ============================================================================ +18:45:54 Slot Id : <222> +18:45:54 Transaction Type : RESPONSE +18:45:54 Received From : +18:45:54 ============================================================================ +18:45:54 FNo. Len. Field Value +18:45:54 ============================================================================ +18:45:54 [ 1] [ 4] [0210] +18:45:54 [ 2] [ 16] [1808931000018000] +18:45:54 [ 3] [ 6] [010000] +18:45:54 [ 4] [ 12] [000030000000] +18:45:54 [ 6] [ 12] [000030000000] +18:45:54 [ 7] [ 10] [0320184340] +18:45:54 [ 11] [ 6] [955037] +18:45:54 [ 12] [ 6] [184340] +18:45:54 [ 13] [ 4] [0320] +18:45:54 [ 18] [ 4] [6011] +18:45:54 [ 19] [ 3] [418] +18:45:54 [ 22] [ 3] [021] +18:45:54 [ 32] [ 6] [668899] +18:45:54 [ 35] [ 27] [1808931000018000=1803500284] +18:45:54 [ 37] [ 12] [507901519468] +18:45:54 [ 38] [ 6] [955037] +18:45:54 [ 39] [ 2] [00] +18:45:54 [ 41] [ 8] [03004003] +18:45:54 [ 49] [ 3] [418] +18:45:54 [ 52] [ 16] [1BE682E19AE7F8C6] +18:45:54 [ 54] [ 20] [1001418C000145148084] +18:45:54 ============================================================================ +18:45:54 Sending to : +18:45:54 ============================================================================ +18:45:54 + + +waiting on router queue for slot.... +18:45:55 ============================================================================ +18:45:55 Slot Id : <208> +18:45:55 Transaction Type : REQUEST +18:45:55 Received From : +18:45:55 ============================================================================ +18:45:55 FNo. Len. Field Value +18:45:55 ============================================================================ +18:45:55 [ 1] [ 4] [0200] +18:45:55 [ 2] [ 16] [6226331500062322] +18:45:55 [ 3] [ 6] [010000] +18:45:55 [ 4] [ 12] [000150000000] +18:45:55 [ 7] [ 10] [0320114500] +18:45:55 [ 11] [ 6] [271287] +18:45:55 [ 12] [ 6] [184500] +18:45:55 [ 13] [ 4] [0320] +18:45:55 [ 14] [ 4] [4912] +18:45:55 [ 15] [ 4] [0320] +18:45:55 [ 18] [ 4] [6011] +18:45:55 [ 19] [ 3] [418] +18:45:55 [ 22] [ 3] [021] +18:45:55 [ 25] [ 2] [01] +18:45:55 [ 28] [ 9] [D00015000] +18:45:55 [ 32] [ 6] [180893] +18:45:55 [ 35] [ 34] [6226331500062322=49121201201160000] +18:45:55 [ 37] [ 12] [507911271287] +18:45:55 [ 41] [ 8] [0161HQBR] +18:45:55 [ 42] [ 15] [999999 ] +18:45:55 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:45:55 [ 49] [ 3] [418] +18:45:55 [ 52] [ 16] [A0228E97D54BEB55] +18:45:55 ============================================================================ +18:45:55 + + +waiting on router queue for slot.... +18:45:55 Sending to : +18:45:55 ============================================================================ +18:45:55 Sending to : +18:45:55 ============================================================================ +18:45:55 ============================================================================ +18:45:55 Slot Id : <208> +18:45:55 Transaction Type : REQUEST +18:45:55 Received From : +18:45:55 ============================================================================ +18:45:55 FNo. Len. Field Value +18:45:55 ============================================================================ +18:45:55 [ 1] [ 4] [0200] +18:45:55 [ 2] [ 16] [6226331500062322] +18:45:55 [ 3] [ 6] [010000] +18:45:55 [ 4] [ 12] [000150000000] +18:45:55 [ 7] [ 10] [0320114500] +18:45:55 [ 11] [ 6] [271287] +18:45:55 [ 12] [ 6] [184500] +18:45:55 [ 13] [ 4] [0320] +18:45:55 [ 14] [ 4] [4912] +18:45:55 [ 15] [ 4] [0320] +18:45:55 [ 18] [ 4] [6011] +18:45:55 [ 19] [ 3] [418] +18:45:55 [ 22] [ 3] [021] +18:45:55 [ 25] [ 2] [01] +18:45:55 [ 28] [ 9] [D00015000] +18:45:55 [ 32] [ 6] [180893] +18:45:55 [ 35] [ 34] [6226331500062322=49121201201160000] +18:45:55 [ 37] [ 12] [507911271287] +18:45:55 [ 41] [ 8] [0161HQBR] +18:45:55 [ 42] [ 15] [999999 ] +18:45:55 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:45:55 [ 49] [ 3] [418] +18:45:55 [ 52] [ 16] [A0228E97D54BEB55] +18:45:55 ============================================================================ +18:45:55 + + +waiting on router queue for slot.... +18:45:55 Sending to : +18:45:55 ============================================================================ +18:45:55 ============================================================================ +18:45:55 Slot Id : <208> +18:45:55 Transaction Type : REQUEST +18:45:55 Received From : +18:45:55 ============================================================================ +18:45:55 FNo. Len. Field Value +18:45:55 ============================================================================ +18:45:55 [ 1] [ 4] [0200] +18:45:55 [ 2] [ 16] [6226331500062322] +18:45:55 [ 3] [ 6] [010000] +18:45:55 [ 4] [ 12] [000150000000] +18:45:55 [ 7] [ 10] [0320114500] +18:45:55 [ 11] [ 6] [271287] +18:45:55 [ 12] [ 6] [184500] +18:45:55 [ 13] [ 4] [0320] +18:45:55 [ 14] [ 4] [4912] +18:45:55 [ 15] [ 4] [0320] +18:45:55 [ 18] [ 4] [6011] +18:45:55 [ 19] [ 3] [418] +18:45:55 [ 22] [ 3] [021] +18:45:55 [ 25] [ 2] [01] +18:45:55 [ 28] [ 9] [D00015000] +18:45:55 [ 32] [ 6] [180893] +18:45:55 [ 35] [ 34] [6226331500062322=49121201201160000] +18:45:55 [ 37] [ 12] [507911271287] +18:45:55 [ 41] [ 8] [0161HQBR] +18:45:55 [ 42] [ 15] [999999 ] +18:45:55 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:45:55 [ 49] [ 3] [418] +18:45:55 [ 52] [ 16] [EC7489C5B90FCA40] +18:45:55 ============================================================================ +18:45:55 + + +waiting on router queue for slot.... +18:45:55 Sending to : <0> +18:45:55 ============================================================================ +18:45:55 ============================================================================ +18:45:55 Slot Id : <208> +18:45:55 Transaction Type : RESPONSE +18:45:55 Received From : +18:45:55 ============================================================================ +18:45:55 FNo. Len. Field Value +18:45:55 ============================================================================ +18:45:55 [ 1] [ 4] [0210] +18:45:55 [ 2] [ 16] [6226331500062322] +18:45:55 [ 3] [ 6] [010000] +18:45:55 [ 4] [ 12] [000150000000] +18:45:55 [ 7] [ 10] [0320114500] +18:45:55 [ 11] [ 6] [271287] +18:45:55 [ 12] [ 6] [184500] +18:45:55 [ 13] [ 4] [0320] +18:45:55 [ 15] [ 4] [0320] +18:45:55 [ 18] [ 4] [6011] +18:45:55 [ 19] [ 3] [418] +18:45:55 [ 22] [ 3] [021] +18:45:55 [ 32] [ 6] [180893] +18:45:55 [ 35] [ 34] [6226331500062322=49121201201160000] +18:45:55 [ 37] [ 12] [507911271287] +18:45:55 [ 39] [ 2] [61] +18:45:55 [ 41] [ 8] [0161HQBR] +18:45:55 [ 49] [ 3] [418] +18:45:55 ============================================================================ +18:45:55 Sending to : +18:45:55 ============================================================================ +18:45:55 + + +waiting on router queue for slot.... +18:45:55 ============================================================================ +18:45:55 Slot Id : <222> +18:45:55 Transaction Type : RESPONSE +18:45:55 Received From : +18:45:55 ============================================================================ +18:45:55 FNo. Len. Field Value +18:45:55 ============================================================================ +18:45:55 [ 1] [ 4] [0210] +18:45:55 [ 2] [ 16] [1808931000018000] +18:45:55 [ 3] [ 6] [010000] +18:45:55 [ 4] [ 12] [000030000000] +18:45:55 [ 6] [ 12] [000030000000] +18:45:55 [ 7] [ 10] [0320184340] +18:45:55 [ 11] [ 6] [955037] +18:45:55 [ 12] [ 6] [184340] +18:45:55 [ 13] [ 4] [0320] +18:45:55 [ 18] [ 4] [6011] +18:45:55 [ 19] [ 3] [418] +18:45:55 [ 22] [ 3] [021] +18:45:55 [ 32] [ 6] [668899] +18:45:55 [ 35] [ 27] [1808931000018000=1803500284] +18:45:55 [ 37] [ 12] [507901519468] +18:45:55 [ 38] [ 6] [955037] +18:45:55 [ 39] [ 2] [00] +18:45:55 [ 41] [ 8] [03004003] +18:45:55 [ 49] [ 3] [418] +18:45:55 [ 52] [ 16] [1BE682E19AE7F8C6] +18:45:55 [ 54] [ 20] [1001418C000145148084] +18:45:55 ============================================================================ +18:45:55 Calculate Source COMM Id = 4 +18:45:55 ============================================================================ +18:45:55 + + +waiting on router queue for slot.... +18:45:56 ============================================================================ +18:45:56 Slot Id : <208> +18:45:56 Transaction Type : RESPONSE +18:45:56 Received From : +18:45:56 ============================================================================ +18:45:56 FNo. Len. Field Value +18:45:56 ============================================================================ +18:45:56 [ 1] [ 4] [0210] +18:45:56 [ 2] [ 16] [6226331500062322] +18:45:56 [ 3] [ 6] [010000] +18:45:56 [ 4] [ 12] [000150000000] +18:45:56 [ 7] [ 10] [0320114500] +18:45:56 [ 11] [ 6] [271287] +18:45:56 [ 12] [ 6] [184500] +18:45:56 [ 13] [ 4] [0320] +18:45:56 [ 15] [ 4] [0320] +18:45:56 [ 18] [ 4] [6011] +18:45:56 [ 19] [ 3] [418] +18:45:56 [ 22] [ 3] [021] +18:45:56 [ 32] [ 6] [180893] +18:45:56 [ 35] [ 34] [6226331500062322=49121201201160000] +18:45:56 [ 37] [ 12] [507911271287] +18:45:56 [ 39] [ 2] [61] +18:45:56 [ 41] [ 8] [0161HQBR] +18:45:56 [ 49] [ 3] [418] +18:45:56 ============================================================================ +18:45:56 Calculate Source COMM Id = 2 +18:45:56 ============================================================================ +18:45:56 + + +waiting on router queue for slot.... +18:45:57 ============================================================================ +18:45:57 Slot Id : <211> +18:45:57 Transaction Type : REQUEST +18:45:57 Received From : +18:45:57 ============================================================================ +18:45:57 FNo. Len. Field Value +18:45:57 ============================================================================ +18:45:57 [ 1] [ 4] [0800] +18:45:57 [ 2] [ 5] [02531] +18:45:57 [ 3] [ 6] [579188] +18:45:57 [ 7] [ 10] [0320114557] +18:45:57 [ 11] [ 6] [807501] +18:45:57 [ 15] [ 10] [0320114557] +18:45:57 [ 37] [ 11] [57918807501] +18:45:57 [ 70] [ 3] [001] +18:45:57 ============================================================================ +18:45:57 + + +waiting on router queue for slot.... +18:45:57 ============================================================================ +18:45:57 Slot Id : <211> +18:45:57 Transaction Type : RESPONSE +18:45:57 Received From : +18:45:57 ============================================================================ +18:45:57 FNo. Len. Field Value +18:45:57 ============================================================================ +18:45:57 [ 1] [ 4] [0810] +18:45:57 [ 7] [ 10] [0320114557] +18:45:57 [ 11] [ 6] [807501] +18:45:57 [ 15] [ 4] [0320] +18:45:57 [ 37] [ 12] [57918807501] +18:45:57 [ 39] [ 2] [00] +18:45:57 [ 70] [ 3] [001] +18:45:57 ============================================================================ +18:45:57 Sending to : +18:45:57 ============================================================================ +18:45:57 + + +waiting on router queue for slot.... +18:45:58 ============================================================================ +18:45:58 Slot Id : <189> +18:45:58 Transaction Type : REQUEST +18:45:58 Received From : +18:45:58 ============================================================================ +18:45:58 FNo. Len. Field Value +18:45:58 ============================================================================ +18:45:58 [ 1] [ 4] [0200] +18:45:58 [ 2] [ 16] [6688990102183108] +18:45:58 [ 3] [ 6] [010000] +18:45:58 [ 4] [ 12] [000010000000] +18:45:58 [ 7] [ 10] [0320184553] +18:45:58 [ 11] [ 6] [830650] +18:45:58 [ 12] [ 6] [184553] +18:45:58 [ 13] [ 4] [0320] +18:45:58 [ 15] [ 4] [0320] +18:45:58 [ 18] [ 4] [6011] +18:45:58 [ 22] [ 3] [900] +18:45:58 [ 25] [ 2] [02] +18:45:58 [ 28] [ 9] [D00002000] +18:45:58 [ 32] [ 6] [621354] +18:45:58 [ 35] [ 37] [6688990102183108=42071231310826700000] +18:45:58 [ 37] [ 12] [507904229525] +18:45:58 [ 41] [ 8] [05004600] +18:45:58 [ 42] [ 15] [NATIVE ] +18:45:58 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:45:58 [ 49] [ 3] [418] +18:45:58 [ 52] [ 16] [F33B9E1BC769CD06] +18:45:58 ============================================================================ +18:45:58 + + +waiting on router queue for slot.... +18:45:58 Sending to : +18:45:58 ============================================================================ +18:45:58 Sending to : +18:45:58 ============================================================================ +18:45:58 ============================================================================ +18:45:58 Slot Id : <189> +18:45:58 Transaction Type : REQUEST +18:45:58 Received From : +18:45:58 ============================================================================ +18:45:58 FNo. Len. Field Value +18:45:58 ============================================================================ +18:45:58 [ 1] [ 4] [0200] +18:45:58 [ 2] [ 16] [6688990102183108] +18:45:58 [ 3] [ 6] [010000] +18:45:58 [ 4] [ 12] [000010000000] +18:45:58 [ 7] [ 10] [0320184553] +18:45:58 [ 11] [ 6] [830650] +18:45:58 [ 12] [ 6] [184553] +18:45:58 [ 13] [ 4] [0320] +18:45:58 [ 15] [ 4] [0320] +18:45:58 [ 18] [ 4] [6011] +18:45:58 [ 22] [ 3] [900] +18:45:58 [ 25] [ 2] [02] +18:45:58 [ 28] [ 9] [D00002000] +18:45:58 [ 32] [ 6] [621354] +18:45:58 [ 35] [ 37] [6688990102183108=42071231310826700000] +18:45:58 [ 37] [ 12] [507904229525] +18:45:58 [ 41] [ 8] [05004600] +18:45:58 [ 42] [ 15] [NATIVE ] +18:45:58 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:45:58 [ 49] [ 3] [418] +18:45:58 [ 52] [ 16] [F33B9E1BC769CD06] +18:45:58 ============================================================================ +18:45:58 + + +waiting on router queue for slot.... +18:45:58 Sending to : +18:45:58 ============================================================================ +18:45:58 ============================================================================ +18:45:58 Slot Id : <189> +18:45:58 Transaction Type : REQUEST +18:45:58 Received From : +18:45:58 ============================================================================ +18:45:58 FNo. Len. Field Value +18:45:58 ============================================================================ +18:45:58 [ 1] [ 4] [0200] +18:45:58 [ 2] [ 16] [6688990102183108] +18:45:58 [ 3] [ 6] [010000] +18:45:58 [ 4] [ 12] [000010000000] +18:45:58 [ 7] [ 10] [0320184553] +18:45:58 [ 11] [ 6] [830650] +18:45:58 [ 12] [ 6] [184553] +18:45:58 [ 13] [ 4] [0320] +18:45:58 [ 15] [ 4] [0320] +18:45:58 [ 18] [ 4] [6011] +18:45:58 [ 22] [ 3] [900] +18:45:58 [ 25] [ 2] [02] +18:45:58 [ 28] [ 9] [D00002000] +18:45:58 [ 32] [ 6] [621354] +18:45:58 [ 35] [ 37] [6688990102183108=42071231310826700000] +18:45:58 [ 37] [ 12] [507904229525] +18:45:58 [ 41] [ 8] [05004600] +18:45:58 [ 42] [ 15] [NATIVE ] +18:45:58 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:45:58 [ 49] [ 3] [418] +18:45:58 [ 52] [ 16] [E8AEE4E4C77412E1] +18:45:58 ============================================================================ +18:45:58 + + +waiting on router queue for slot.... +18:45:58 Sending to : <4> +18:45:58 ============================================================================ +18:46:00 ============================================================================ +18:46:00 Slot Id : <189> +18:46:00 Transaction Type : RESPONSE +18:46:00 Received From : +18:46:00 ============================================================================ +18:46:00 FNo. Len. Field Value +18:46:00 ============================================================================ +18:46:00 [ 1] [ 4] [0210] +18:46:00 [ 2] [ 16] [6688990102183108] +18:46:00 [ 3] [ 6] [010000] +18:46:00 [ 4] [ 12] [000010000000] +18:46:00 [ 11] [ 6] [830650] +18:46:00 [ 12] [ 6] [184553] +18:46:00 [ 15] [ 4] [0320] +18:46:00 [ 18] [ 4] [6011] +18:46:00 [ 32] [ 6] [621354] +18:46:00 [ 35] [ 37] [6688990102183108=42071231310826700000] +18:46:00 [ 37] [ 12] [507904229525] +18:46:00 [ 38] [ 6] [403391] +18:46:00 [ 39] [ 2] [00] +18:46:00 [ 41] [ 8] [05004600] +18:46:00 [ 49] [ 3] [418] +18:46:00 [ 54] [ 20] [0002418C000003101798] +18:46:00 ============================================================================ +18:46:00 Sending to : +18:46:00 ============================================================================ +18:46:00 + + +waiting on router queue for slot.... +18:46:01 ============================================================================ +18:46:01 Slot Id : <189> +18:46:01 Transaction Type : RESPONSE +18:46:01 Received From : +18:46:01 ============================================================================ +18:46:01 FNo. Len. Field Value +18:46:01 ============================================================================ +18:46:01 [ 1] [ 4] [0210] +18:46:01 [ 2] [ 16] [6688990102183108] +18:46:01 [ 3] [ 6] [010000] +18:46:01 [ 4] [ 12] [000010000000] +18:46:01 [ 11] [ 6] [830650] +18:46:01 [ 12] [ 6] [184553] +18:46:01 [ 15] [ 4] [0320] +18:46:01 [ 18] [ 4] [6011] +18:46:01 [ 32] [ 6] [621354] +18:46:01 [ 35] [ 37] [6688990102183108=42071231310826700000] +18:46:01 [ 37] [ 12] [507904229525] +18:46:01 [ 38] [ 6] [403391] +18:46:01 [ 39] [ 2] [00] +18:46:01 [ 41] [ 8] [05004600] +18:46:01 [ 49] [ 3] [418] +18:46:01 [ 54] [ 20] [0002418C000003101798] +18:46:01 ============================================================================ +18:46:01 Calculate Source COMM Id = 0 +18:46:01 ============================================================================ +18:46:01 + + +waiting on router queue for slot.... +18:46:08 ============================================================================ +18:46:08 Slot Id : <229> +18:46:08 Transaction Type : REQUEST +18:46:08 Received From : +18:46:08 ============================================================================ +18:46:08 FNo. Len. Field Value +18:46:08 ============================================================================ +18:46:08 [ 1] [ 4] [0800] +18:46:08 [ 7] [ 10] [0320114515] +18:46:08 [ 11] [ 6] [157779] +18:46:08 [ 70] [ 3] [301] +18:46:08 ============================================================================ +18:46:08 + + +waiting on router queue for slot.... +18:46:08 Sending to : +18:46:08 ============================================================================ +18:46:08 ============================================================================ +18:46:08 Slot Id : <229> +18:46:08 Transaction Type : RESPONSE +18:46:08 Received From : +18:46:08 ============================================================================ +18:46:08 FNo. Len. Field Value +18:46:08 ============================================================================ +18:46:08 [ 1] [ 4] [0810] +18:46:08 [ 7] [ 10] [0320114515] +18:46:08 [ 11] [ 6] [157779] +18:46:08 [ 39] [ 2] [00] +18:46:08 [ 70] [ 3] [301] +18:46:08 ============================================================================ +18:46:08 Calculate Source COMM Id = 2 +18:46:08 ============================================================================ +18:46:08 + + +waiting on router queue for slot.... +18:46:19 ============================================================================ +18:46:19 Slot Id : <168> +18:46:19 Transaction Type : REQUEST +18:46:19 Received From : +18:46:19 ============================================================================ +18:46:19 FNo. Len. Field Value +18:46:19 ============================================================================ +18:46:19 [ 1] [ 4] [0800] +18:46:19 [ 7] [ 10] [0320114526] +18:46:19 [ 11] [ 6] [157780] +18:46:19 [ 70] [ 3] [301] +18:46:19 ============================================================================ +18:46:19 + + +waiting on router queue for slot.... +18:46:19 Sending to : +18:46:19 ============================================================================ +18:46:19 ============================================================================ +18:46:19 Slot Id : <168> +18:46:19 Transaction Type : RESPONSE +18:46:19 Received From : +18:46:19 ============================================================================ +18:46:19 FNo. Len. Field Value +18:46:19 ============================================================================ +18:46:19 [ 1] [ 4] [0810] +18:46:19 [ 7] [ 10] [0320114526] +18:46:19 [ 11] [ 6] [157780] +18:46:19 [ 39] [ 2] [00] +18:46:19 [ 70] [ 3] [301] +18:46:19 ============================================================================ +18:46:19 Calculate Source COMM Id = 2 +18:46:19 ============================================================================ +18:46:19 + + +waiting on router queue for slot.... +18:46:23 ============================================================================ +18:46:23 Slot Id : <173> +18:46:23 Transaction Type : REQUEST +18:46:23 Received From : +18:46:23 ============================================================================ +18:46:23 FNo. Len. Field Value +18:46:23 ============================================================================ +18:46:23 [ 1] [ 4] [0800] +18:46:23 [ 7] [ 10] [0320114412] +18:46:23 [ 11] [ 6] [061223] +18:46:23 [ 37] [ 12] [57918061223] +18:46:23 [ 70] [ 3] [301] +18:46:23 ============================================================================ +18:46:23 + + +waiting on router queue for slot.... +18:46:23 Sending to : +18:46:23 ============================================================================ +18:46:23 ============================================================================ +18:46:23 Slot Id : <173> +18:46:23 Transaction Type : RESPONSE +18:46:23 Received From : +18:46:23 ============================================================================ +18:46:23 FNo. Len. Field Value +18:46:23 ============================================================================ +18:46:23 [ 1] [ 4] [0810] +18:46:23 [ 7] [ 10] [0320114412] +18:46:23 [ 11] [ 6] [061223] +18:46:23 [ 37] [ 12] [579180612230] +18:46:23 [ 39] [ 2] [00] +18:46:23 [ 70] [ 3] [810] +18:46:23 ============================================================================ +18:46:23 Calculate Source COMM Id = 4 +18:46:23 ============================================================================ +18:46:23 + + +waiting on router queue for slot.... +18:46:30 ============================================================================ +18:46:30 Slot Id : <174> +18:46:30 Transaction Type : REQUEST +18:46:30 Received From : +18:46:30 ============================================================================ +18:46:30 FNo. Len. Field Value +18:46:30 ============================================================================ +18:46:30 [ 1] [ 4] [0800] +18:46:30 [ 7] [ 10] [0320114537] +18:46:30 [ 11] [ 6] [157781] +18:46:30 [ 70] [ 3] [301] +18:46:30 ============================================================================ +18:46:30 + + +waiting on router queue for slot.... +18:46:30 Sending to : +18:46:30 ============================================================================ +18:46:30 ============================================================================ +18:46:30 Slot Id : <174> +18:46:30 Transaction Type : RESPONSE +18:46:30 Received From : +18:46:30 ============================================================================ +18:46:30 FNo. Len. Field Value +18:46:30 ============================================================================ +18:46:30 [ 1] [ 4] [0810] +18:46:30 [ 7] [ 10] [0320114537] +18:46:30 [ 11] [ 6] [157781] +18:46:30 [ 39] [ 2] [00] +18:46:30 [ 70] [ 3] [301] +18:46:30 ============================================================================ +18:46:30 Calculate Source COMM Id = 2 +18:46:30 ============================================================================ +18:46:30 + + +waiting on router queue for slot.... +18:46:39 ============================================================================ +18:46:39 Slot Id : <246> +18:46:39 Transaction Type : REQUEST +18:46:39 Received From : +18:46:39 ============================================================================ +18:46:39 FNo. Len. Field Value +18:46:39 ============================================================================ +18:46:39 [ 1] [ 4] [0800] +18:46:39 [ 7] [ 10] [0321015828] +18:46:39 [ 11] [ 6] [185828] +18:46:39 [ 37] [ 12] [57918185828] +18:46:39 [ 70] [ 3] [301] +18:46:39 ============================================================================ +18:46:39 + + +waiting on router queue for slot.... +18:46:39 Sending to : +18:46:39 ============================================================================ +18:46:39 ============================================================================ +18:46:39 Slot Id : <246> +18:46:39 Transaction Type : RESPONSE +18:46:39 Received From : +18:46:39 ============================================================================ +18:46:39 FNo. Len. Field Value +18:46:39 ============================================================================ +18:46:39 [ 1] [ 4] [0810] +18:46:39 [ 7] [ 10] [0321015828] +18:46:39 [ 11] [ 6] [185828] +18:46:39 [ 37] [ 12] [579181858280] +18:46:39 [ 39] [ 2] [00] +18:46:39 [ 70] [ 3] [810] +18:46:39 ============================================================================ +18:46:39 Calculate Source COMM Id = 6 +18:46:39 ============================================================================ +18:46:39 + + +waiting on router queue for slot.... +18:46:41 ============================================================================ +18:46:41 Slot Id : <188> +18:46:41 Transaction Type : REQUEST +18:46:41 Received From : +18:46:41 ============================================================================ +18:46:41 FNo. Len. Field Value +18:46:41 ============================================================================ +18:46:41 [ 1] [ 4] [0200] +18:46:41 [ 2] [ 16] [6213544000555299] +18:46:41 [ 3] [ 6] [010000] +18:46:41 [ 4] [ 12] [000010000000] +18:46:41 [ 7] [ 10] [0320114547] +18:46:41 [ 11] [ 6] [271292] +18:46:41 [ 12] [ 6] [184547] +18:46:41 [ 13] [ 4] [0320] +18:46:41 [ 14] [ 4] [4912] +18:46:41 [ 15] [ 4] [0320] +18:46:41 [ 18] [ 4] [6011] +18:46:41 [ 19] [ 3] [418] +18:46:41 [ 22] [ 3] [021] +18:46:41 [ 25] [ 2] [01] +18:46:41 [ 28] [ 9] [D00002000] +18:46:41 [ 32] [ 6] [180893] +18:46:41 [ 35] [ 32] [6213544000555299=491212015529359] +18:46:41 [ 37] [ 12] [507911271292] +18:46:41 [ 41] [ 8] [0102SAPA] +18:46:41 [ 42] [ 15] [999999 ] +18:46:41 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:46:41 [ 49] [ 3] [418] +18:46:41 [ 52] [ 16] [B144F3F169F60905] +18:46:41 ============================================================================ +18:46:41 + + +waiting on router queue for slot.... +18:46:41 Sending to : +18:46:41 ============================================================================ +18:46:41 Sending to : +18:46:41 ============================================================================ +18:46:41 ============================================================================ +18:46:41 Slot Id : <223> +18:46:41 Transaction Type : REQUEST +18:46:41 Received From : +18:46:41 ============================================================================ +18:46:41 FNo. Len. Field Value +18:46:41 ============================================================================ +18:46:41 [ 1] [ 4] [0800] +18:46:41 [ 7] [ 10] [0320114548] +18:46:41 [ 11] [ 6] [157782] +18:46:41 [ 70] [ 3] [301] +18:46:41 ============================================================================ +18:46:41 + + +waiting on router queue for slot.... +18:46:41 Sending to : +18:46:41 ============================================================================ +18:46:41 ============================================================================ +18:46:41 Slot Id : <223> +18:46:41 Transaction Type : RESPONSE +18:46:41 Received From : +18:46:41 ============================================================================ +18:46:41 FNo. Len. Field Value +18:46:41 ============================================================================ +18:46:41 [ 1] [ 4] [0810] +18:46:41 [ 7] [ 10] [0320114548] +18:46:41 [ 11] [ 6] [157782] +18:46:41 [ 39] [ 2] [00] +18:46:41 [ 70] [ 3] [301] +18:46:41 ============================================================================ +18:46:41 Calculate Source COMM Id = 2 +18:46:41 ============================================================================ +18:46:41 + + +waiting on router queue for slot.... +18:46:41 ============================================================================ +18:46:41 Slot Id : <188> +18:46:41 Transaction Type : REQUEST +18:46:41 Received From : +18:46:41 ============================================================================ +18:46:41 FNo. Len. Field Value +18:46:41 ============================================================================ +18:46:41 [ 1] [ 4] [0200] +18:46:41 [ 2] [ 16] [6213544000555299] +18:46:41 [ 3] [ 6] [010000] +18:46:41 [ 4] [ 12] [000010000000] +18:46:41 [ 7] [ 10] [0320114547] +18:46:41 [ 11] [ 6] [271292] +18:46:41 [ 12] [ 6] [184547] +18:46:41 [ 13] [ 4] [0320] +18:46:41 [ 14] [ 4] [4912] +18:46:41 [ 15] [ 4] [0320] +18:46:41 [ 18] [ 4] [6011] +18:46:41 [ 19] [ 3] [418] +18:46:41 [ 22] [ 3] [021] +18:46:41 [ 25] [ 2] [01] +18:46:41 [ 28] [ 9] [D00002000] +18:46:41 [ 32] [ 6] [180893] +18:46:41 [ 35] [ 32] [6213544000555299=491212015529359] +18:46:41 [ 37] [ 12] [507911271292] +18:46:41 [ 41] [ 8] [0102SAPA] +18:46:41 [ 42] [ 15] [999999 ] +18:46:41 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:46:41 [ 49] [ 3] [418] +18:46:41 [ 52] [ 16] [B144F3F169F60905] +18:46:41 ============================================================================ +18:46:41 + + +waiting on router queue for slot.... +18:46:41 Sending to : +18:46:41 ============================================================================ +18:46:41 ============================================================================ +18:46:41 Slot Id : <188> +18:46:41 Transaction Type : REQUEST +18:46:41 Received From : +18:46:41 ============================================================================ +18:46:41 FNo. Len. Field Value +18:46:41 ============================================================================ +18:46:41 [ 1] [ 4] [0200] +18:46:41 [ 2] [ 16] [6213544000555299] +18:46:41 [ 3] [ 6] [010000] +18:46:41 [ 4] [ 12] [000010000000] +18:46:41 [ 7] [ 10] [0320114547] +18:46:41 [ 11] [ 6] [271292] +18:46:41 [ 12] [ 6] [184547] +18:46:41 [ 13] [ 4] [0320] +18:46:41 [ 14] [ 4] [4912] +18:46:41 [ 15] [ 4] [0320] +18:46:41 [ 18] [ 4] [6011] +18:46:41 [ 19] [ 3] [418] +18:46:41 [ 22] [ 3] [021] +18:46:41 [ 25] [ 2] [01] +18:46:41 [ 28] [ 9] [D00002000] +18:46:41 [ 32] [ 6] [180893] +18:46:41 [ 35] [ 32] [6213544000555299=491212015529359] +18:46:41 [ 37] [ 12] [507911271292] +18:46:41 [ 41] [ 8] [0102SAPA] +18:46:41 [ 42] [ 15] [999999 ] +18:46:41 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:46:41 [ 49] [ 3] [418] +18:46:41 [ 52] [ 16] [9344A96F2BBBA209] +18:46:41 ============================================================================ +18:46:41 + + +waiting on router queue for slot.... +18:46:41 Sending to : <0> +18:46:41 ============================================================================ +18:46:42 ============================================================================ +18:46:42 Slot Id : <188> +18:46:42 Transaction Type : RESPONSE +18:46:42 Received From : +18:46:42 ============================================================================ +18:46:42 FNo. Len. Field Value +18:46:42 ============================================================================ +18:46:42 [ 1] [ 4] [0210] +18:46:42 [ 2] [ 16] [6213544000555299] +18:46:42 [ 3] [ 6] [010000] +18:46:42 [ 4] [ 12] [000010000000] +18:46:42 [ 7] [ 10] [0320114547] +18:46:42 [ 11] [ 6] [271292] +18:46:42 [ 12] [ 6] [184547] +18:46:42 [ 13] [ 4] [0320] +18:46:42 [ 15] [ 4] [0320] +18:46:42 [ 18] [ 4] [6011] +18:46:42 [ 19] [ 3] [418] +18:46:42 [ 32] [ 6] [180893] +18:46:42 [ 35] [ 32] [6213544000555299=491212015529359] +18:46:42 [ 37] [ 12] [507911271292] +18:46:42 [ 38] [ 6] [667992] +18:46:42 [ 39] [ 2] [00] +18:46:42 [ 41] [ 8] [0102SAPA] +18:46:42 [ 49] [ 3] [418] +18:46:42 [ 54] [ 40] [0001418C0000194468730002418C000019446873] +18:46:42 ============================================================================ +18:46:42 Sending to : +18:46:42 ============================================================================ +18:46:42 + + +waiting on router queue for slot.... +18:46:43 ============================================================================ +18:46:43 Slot Id : <188> +18:46:43 Transaction Type : RESPONSE +18:46:43 Received From : +18:46:43 ============================================================================ +18:46:43 FNo. Len. Field Value +18:46:43 ============================================================================ +18:46:43 [ 1] [ 4] [0210] +18:46:43 [ 2] [ 16] [6213544000555299] +18:46:43 [ 3] [ 6] [010000] +18:46:43 [ 4] [ 12] [000010000000] +18:46:43 [ 7] [ 10] [0320114547] +18:46:43 [ 11] [ 6] [271292] +18:46:43 [ 12] [ 6] [184547] +18:46:43 [ 13] [ 4] [0320] +18:46:43 [ 15] [ 4] [0320] +18:46:43 [ 18] [ 4] [6011] +18:46:43 [ 19] [ 3] [418] +18:46:43 [ 32] [ 6] [180893] +18:46:43 [ 35] [ 32] [6213544000555299=491212015529359] +18:46:43 [ 37] [ 12] [507911271292] +18:46:43 [ 38] [ 6] [667992] +18:46:43 [ 39] [ 2] [00] +18:46:43 [ 41] [ 8] [0102SAPA] +18:46:43 [ 49] [ 3] [418] +18:46:43 [ 54] [ 40] [0001418C0000194468730002418C000019446873] +18:46:43 ============================================================================ +18:46:43 Calculate Source COMM Id = 2 +18:46:43 ============================================================================ +18:46:43 + + +waiting on router queue for slot.... +18:46:55 ============================================================================ +18:46:55 Slot Id : <235> +18:46:55 Transaction Type : REQUEST +18:46:55 Received From : +18:46:55 ============================================================================ +18:46:55 FNo. Len. Field Value +18:46:55 ============================================================================ +18:46:55 [ 1] [ 4] [0800] +18:46:55 [ 7] [ 10] [0320184641] +18:46:55 [ 11] [ 6] [059761] +18:46:55 [ 37] [ 12] [507918059761] +18:46:55 [ 70] [ 3] [ ] +18:46:55 ============================================================================ +18:46:55 + + +waiting on router queue for slot.... +18:46:55 Sending to : +18:46:55 ============================================================================ +18:46:55 ============================================================================ +18:46:55 Slot Id : <235> +18:46:55 Transaction Type : RESPONSE +18:46:55 Received From : +18:46:55 ============================================================================ +18:46:55 FNo. Len. Field Value +18:46:55 ============================================================================ +18:46:55 [ 1] [ 4] [0810] +18:46:55 [ 7] [ 10] [0320184641] +18:46:55 [ 11] [ 6] [059761] +18:46:55 [ 37] [ 12] [507918059761] +18:46:55 [ 39] [ 2] [91] +18:46:55 [ 70] [ 3] [ ] +18:46:55 ============================================================================ +18:46:55 Calculate Source COMM Id = 3 +18:46:55 ============================================================================ +18:46:55 + + +waiting on router queue for slot.... +18:46:56 ============================================================================ +18:46:56 Slot Id : <227> +18:46:56 Transaction Type : REQUEST +18:46:56 Received From : +18:46:56 ============================================================================ +18:46:56 FNo. Len. Field Value +18:46:56 ============================================================================ +18:46:56 [ 1] [ 4] [0200] +18:46:56 [ 2] [ 16] [6213548000522472] +18:46:56 [ 3] [ 6] [010000] +18:46:56 [ 4] [ 12] [000020000000] +18:46:56 [ 7] [ 10] [0320184445] +18:46:56 [ 11] [ 6] [955054] +18:46:56 [ 12] [ 6] [184445] +18:46:56 [ 13] [ 4] [0320] +18:46:56 [ 15] [ 4] [0320] +18:46:56 [ 18] [ 4] [6011] +18:46:56 [ 19] [ 3] [418] +18:46:56 [ 22] [ 3] [021] +18:46:56 [ 25] [ 2] [01] +18:46:56 [ 28] [ 9] [D00002000] +18:46:56 [ 32] [ 6] [668899] +18:46:56 [ 35] [ 32] [6213548000522472=181212012247098] +18:46:56 [ 37] [ 12] [507902488675] +18:46:56 [ 41] [ 8] [03001013] +18:46:56 [ 42] [ 15] [APT ] +18:46:56 [ 43] [ 40] [ VAT CHAN VAT CHAN LAO] +18:46:56 [ 49] [ 3] [418] +18:46:56 [ 52] [ 16] [3FDA293A21F990EF] +18:46:56 ============================================================================ +18:46:56 + + +waiting on router queue for slot.... +18:46:56 Sending to : +18:46:56 ============================================================================ +18:46:56 Sending to : +18:46:56 ============================================================================ +18:46:56 ============================================================================ +18:46:56 Slot Id : <227> +18:46:56 Transaction Type : REQUEST +18:46:56 Received From : +18:46:56 ============================================================================ +18:46:56 FNo. Len. Field Value +18:46:56 ============================================================================ +18:46:56 [ 1] [ 4] [0200] +18:46:56 [ 2] [ 16] [6213548000522472] +18:46:56 [ 3] [ 6] [010000] +18:46:56 [ 4] [ 12] [000020000000] +18:46:56 [ 7] [ 10] [0320184445] +18:46:56 [ 11] [ 6] [955054] +18:46:56 [ 12] [ 6] [184445] +18:46:56 [ 13] [ 4] [0320] +18:46:56 [ 15] [ 4] [0320] +18:46:56 [ 18] [ 4] [6011] +18:46:56 [ 19] [ 3] [418] +18:46:56 [ 22] [ 3] [021] +18:46:56 [ 25] [ 2] [01] +18:46:56 [ 28] [ 9] [D00002000] +18:46:56 [ 32] [ 6] [668899] +18:46:56 [ 35] [ 32] [6213548000522472=181212012247098] +18:46:56 [ 37] [ 12] [507902488675] +18:46:56 [ 41] [ 8] [03001013] +18:46:56 [ 42] [ 15] [APT ] +18:46:56 [ 43] [ 40] [ VAT CHAN VAT CHAN LAO] +18:46:56 [ 49] [ 3] [418] +18:46:56 [ 52] [ 16] [3FDA293A21F990EF] +18:46:56 ============================================================================ +18:46:56 + + +waiting on router queue for slot.... +18:46:56 Sending to : +18:46:56 ============================================================================ +18:46:56 ============================================================================ +18:46:56 Slot Id : <227> +18:46:56 Transaction Type : REQUEST +18:46:56 Received From : +18:46:56 ============================================================================ +18:46:56 FNo. Len. Field Value +18:46:56 ============================================================================ +18:46:56 [ 1] [ 4] [0200] +18:46:56 [ 2] [ 16] [6213548000522472] +18:46:56 [ 3] [ 6] [010000] +18:46:56 [ 4] [ 12] [000020000000] +18:46:56 [ 7] [ 10] [0320184445] +18:46:56 [ 11] [ 6] [955054] +18:46:56 [ 12] [ 6] [184445] +18:46:56 [ 13] [ 4] [0320] +18:46:56 [ 15] [ 4] [0320] +18:46:56 [ 18] [ 4] [6011] +18:46:56 [ 19] [ 3] [418] +18:46:56 [ 22] [ 3] [021] +18:46:56 [ 25] [ 2] [01] +18:46:56 [ 28] [ 9] [D00002000] +18:46:56 [ 32] [ 6] [668899] +18:46:56 [ 35] [ 32] [6213548000522472=181212012247098] +18:46:56 [ 37] [ 12] [507902488675] +18:46:56 [ 41] [ 8] [03001013] +18:46:56 [ 42] [ 15] [APT ] +18:46:56 [ 43] [ 40] [ VAT CHAN VAT CHAN LAO] +18:46:56 [ 49] [ 3] [418] +18:46:56 [ 52] [ 16] [6EA118C5D643CBA9] +18:46:56 ============================================================================ +18:46:56 + + +waiting on router queue for slot.... +18:46:56 Sending to : <0> +18:46:56 ============================================================================ +18:46:57 ============================================================================ +18:46:57 Slot Id : <227> +18:46:57 Transaction Type : RESPONSE +18:46:57 Received From : +18:46:57 ============================================================================ +18:46:57 FNo. Len. Field Value +18:46:57 ============================================================================ +18:46:57 [ 1] [ 4] [0210] +18:46:57 [ 2] [ 16] [6213548000522472] +18:46:57 [ 3] [ 6] [010000] +18:46:57 [ 4] [ 12] [000020000000] +18:46:57 [ 7] [ 10] [0320184445] +18:46:57 [ 11] [ 6] [955054] +18:46:57 [ 12] [ 6] [184445] +18:46:57 [ 13] [ 4] [0320] +18:46:57 [ 15] [ 4] [0320] +18:46:57 [ 18] [ 4] [6011] +18:46:57 [ 19] [ 3] [418] +18:46:57 [ 32] [ 6] [668899] +18:46:57 [ 35] [ 32] [6213548000522472=181212012247098] +18:46:57 [ 37] [ 12] [507902488675] +18:46:57 [ 38] [ 6] [506635] +18:46:57 [ 39] [ 2] [00] +18:46:57 [ 41] [ 8] [03001013] +18:46:57 [ 49] [ 3] [418] +18:46:57 [ 54] [ 40] [0001418C0002346283560002418C000234628356] +18:46:57 ============================================================================ +18:46:57 Sending to : +18:46:57 ============================================================================ +18:46:57 + + +waiting on router queue for slot.... +18:46:57 ============================================================================ +18:46:57 Slot Id : <244> +18:46:57 Transaction Type : REQUEST +18:46:57 Received From : +18:46:57 ============================================================================ +18:46:57 FNo. Len. Field Value +18:46:57 ============================================================================ +18:46:57 [ 1] [ 4] [0800] +18:46:57 [ 7] [ 10] [0320114604] +18:46:57 [ 11] [ 6] [157783] +18:46:57 [ 70] [ 3] [301] +18:46:57 ============================================================================ +18:46:57 + + +waiting on router queue for slot.... +18:46:57 Sending to : +18:46:57 ============================================================================ +18:46:57 ============================================================================ +18:46:57 Slot Id : <244> +18:46:57 Transaction Type : RESPONSE +18:46:57 Received From : +18:46:57 ============================================================================ +18:46:57 FNo. Len. Field Value +18:46:57 ============================================================================ +18:46:57 [ 1] [ 4] [0810] +18:46:57 [ 7] [ 10] [0320114604] +18:46:57 [ 11] [ 6] [157783] +18:46:57 [ 39] [ 2] [00] +18:46:57 [ 70] [ 3] [301] +18:46:57 ============================================================================ +18:46:57 Calculate Source COMM Id = 2 +18:46:57 ============================================================================ +18:46:57 + + +waiting on router queue for slot.... +18:46:58 ============================================================================ +18:46:58 Slot Id : <227> +18:46:58 Transaction Type : RESPONSE +18:46:58 Received From : +18:46:58 ============================================================================ +18:46:58 FNo. Len. Field Value +18:46:58 ============================================================================ +18:46:58 [ 1] [ 4] [0210] +18:46:58 [ 2] [ 16] [6213548000522472] +18:46:58 [ 3] [ 6] [010000] +18:46:58 [ 4] [ 12] [000020000000] +18:46:58 [ 7] [ 10] [0320184445] +18:46:58 [ 11] [ 6] [955054] +18:46:58 [ 12] [ 6] [184445] +18:46:58 [ 13] [ 4] [0320] +18:46:58 [ 15] [ 4] [0320] +18:46:58 [ 18] [ 4] [6011] +18:46:58 [ 19] [ 3] [418] +18:46:58 [ 32] [ 6] [668899] +18:46:58 [ 35] [ 32] [6213548000522472=181212012247098] +18:46:58 [ 37] [ 12] [507902488675] +18:46:58 [ 38] [ 6] [506635] +18:46:58 [ 39] [ 2] [00] +18:46:58 [ 41] [ 8] [03001013] +18:46:58 [ 49] [ 3] [418] +18:46:58 [ 54] [ 40] [0001418C0002346283560002418C000234628356] +18:46:58 ============================================================================ +18:46:58 Calculate Source COMM Id = 4 +18:46:58 ============================================================================ +18:46:58 + + +waiting on router queue for slot.... +18:46:59 ============================================================================ +18:46:59 Slot Id : <215> +18:46:59 Transaction Type : REQUEST +18:46:59 Received From : +18:46:59 ============================================================================ +18:46:59 FNo. Len. Field Value +18:46:59 ============================================================================ +18:46:59 [ 1] [ 4] [0800] +18:46:59 [ 2] [ 5] [02531] +18:46:59 [ 3] [ 6] [579188] +18:46:59 [ 7] [ 10] [0320114659] +18:46:59 [ 11] [ 6] [807502] +18:46:59 [ 15] [ 10] [0320114659] +18:46:59 [ 37] [ 11] [57918807502] +18:46:59 [ 70] [ 3] [001] +18:46:59 ============================================================================ +18:46:59 + + +waiting on router queue for slot.... +18:46:59 ============================================================================ +18:46:59 Slot Id : <215> +18:46:59 Transaction Type : RESPONSE +18:46:59 Received From : +18:46:59 ============================================================================ +18:46:59 FNo. Len. Field Value +18:46:59 ============================================================================ +18:46:59 [ 1] [ 4] [0810] +18:46:59 [ 7] [ 10] [0320114659] +18:46:59 [ 11] [ 6] [807502] +18:46:59 [ 15] [ 4] [0320] +18:46:59 [ 37] [ 12] [57918807502] +18:46:59 [ 39] [ 2] [00] +18:46:59 [ 70] [ 3] [001] +18:46:59 ============================================================================ +18:46:59 Sending to : +18:46:59 ============================================================================ +18:46:59 + + +waiting on router queue for slot.... +18:47:11 ============================================================================ +18:47:11 Slot Id : <248> +18:47:11 Transaction Type : REQUEST +18:47:11 Received From : +18:47:11 ============================================================================ +18:47:11 FNo. Len. Field Value +18:47:11 ============================================================================ +18:47:11 [ 1] [ 4] [0200] +18:47:11 [ 2] [ 16] [6226331500062322] +18:47:11 [ 3] [ 6] [010000] +18:47:11 [ 4] [ 12] [000200000000] +18:47:11 [ 7] [ 10] [0320114617] +18:47:11 [ 11] [ 6] [271297] +18:47:11 [ 12] [ 6] [184617] +18:47:11 [ 13] [ 4] [0320] +18:47:11 [ 14] [ 4] [4912] +18:47:11 [ 15] [ 4] [0320] +18:47:11 [ 18] [ 4] [6011] +18:47:11 [ 19] [ 3] [418] +18:47:11 [ 22] [ 3] [021] +18:47:11 [ 25] [ 2] [01] +18:47:11 [ 28] [ 9] [D00015000] +18:47:11 [ 32] [ 6] [180893] +18:47:11 [ 35] [ 34] [6226331500062322=49121201201160000] +18:47:11 [ 37] [ 12] [507911271297] +18:47:11 [ 41] [ 8] [0161HQBR] +18:47:11 [ 42] [ 15] [999999 ] +18:47:11 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:47:11 [ 49] [ 3] [418] +18:47:11 [ 52] [ 16] [A0228E97D54BEB55] +18:47:11 ============================================================================ +18:47:11 + + +waiting on router queue for slot.... +18:47:11 Sending to : +18:47:11 ============================================================================ +18:47:11 Sending to : +18:47:11 ============================================================================ +18:47:12 ============================================================================ +18:47:12 Slot Id : <248> +18:47:12 Transaction Type : REQUEST +18:47:12 Received From : +18:47:12 ============================================================================ +18:47:12 FNo. Len. Field Value +18:47:12 ============================================================================ +18:47:12 [ 1] [ 4] [0200] +18:47:12 [ 2] [ 16] [6226331500062322] +18:47:12 [ 3] [ 6] [010000] +18:47:12 [ 4] [ 12] [000200000000] +18:47:12 [ 7] [ 10] [0320114617] +18:47:12 [ 11] [ 6] [271297] +18:47:12 [ 12] [ 6] [184617] +18:47:12 [ 13] [ 4] [0320] +18:47:12 [ 14] [ 4] [4912] +18:47:12 [ 15] [ 4] [0320] +18:47:12 [ 18] [ 4] [6011] +18:47:12 [ 19] [ 3] [418] +18:47:12 [ 22] [ 3] [021] +18:47:12 [ 25] [ 2] [01] +18:47:12 [ 28] [ 9] [D00015000] +18:47:12 [ 32] [ 6] [180893] +18:47:12 [ 35] [ 34] [6226331500062322=49121201201160000] +18:47:12 [ 37] [ 12] [507911271297] +18:47:12 [ 41] [ 8] [0161HQBR] +18:47:12 [ 42] [ 15] [999999 ] +18:47:12 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:47:12 [ 49] [ 3] [418] +18:47:12 [ 52] [ 16] [A0228E97D54BEB55] +18:47:12 ============================================================================ +18:47:12 + + +waiting on router queue for slot.... +18:47:12 Sending to : +18:47:12 ============================================================================ +18:47:12 ============================================================================ +18:47:12 Slot Id : <248> +18:47:12 Transaction Type : REQUEST +18:47:12 Received From : +18:47:12 ============================================================================ +18:47:12 FNo. Len. Field Value +18:47:12 ============================================================================ +18:47:12 [ 1] [ 4] [0200] +18:47:12 [ 2] [ 16] [6226331500062322] +18:47:12 [ 3] [ 6] [010000] +18:47:12 [ 4] [ 12] [000200000000] +18:47:12 [ 7] [ 10] [0320114617] +18:47:12 [ 11] [ 6] [271297] +18:47:12 [ 12] [ 6] [184617] +18:47:12 [ 13] [ 4] [0320] +18:47:12 [ 14] [ 4] [4912] +18:47:12 [ 15] [ 4] [0320] +18:47:12 [ 18] [ 4] [6011] +18:47:12 [ 19] [ 3] [418] +18:47:12 [ 22] [ 3] [021] +18:47:12 [ 25] [ 2] [01] +18:47:12 [ 28] [ 9] [D00015000] +18:47:12 [ 32] [ 6] [180893] +18:47:12 [ 35] [ 34] [6226331500062322=49121201201160000] +18:47:12 [ 37] [ 12] [507911271297] +18:47:12 [ 41] [ 8] [0161HQBR] +18:47:12 [ 42] [ 15] [999999 ] +18:47:12 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:47:12 [ 49] [ 3] [418] +18:47:12 [ 52] [ 16] [EC7489C5B90FCA40] +18:47:12 ============================================================================ +18:47:12 + + +waiting on router queue for slot.... +18:47:12 Sending to : <0> +18:47:12 ============================================================================ +18:47:12 ============================================================================ +18:47:12 Slot Id : <248> +18:47:12 Transaction Type : RESPONSE +18:47:12 Received From : +18:47:12 ============================================================================ +18:47:12 FNo. Len. Field Value +18:47:12 ============================================================================ +18:47:12 [ 1] [ 4] [0210] +18:47:12 [ 2] [ 16] [6226331500062322] +18:47:12 [ 3] [ 6] [010000] +18:47:12 [ 4] [ 12] [000200000000] +18:47:12 [ 7] [ 10] [0320114617] +18:47:12 [ 11] [ 6] [271297] +18:47:12 [ 12] [ 6] [184617] +18:47:12 [ 13] [ 4] [0320] +18:47:12 [ 15] [ 4] [0320] +18:47:12 [ 18] [ 4] [6011] +18:47:12 [ 19] [ 3] [418] +18:47:12 [ 22] [ 3] [021] +18:47:12 [ 32] [ 6] [180893] +18:47:12 [ 35] [ 34] [6226331500062322=49121201201160000] +18:47:12 [ 37] [ 12] [507911271297] +18:47:12 [ 39] [ 2] [61] +18:47:12 [ 41] [ 8] [0161HQBR] +18:47:12 [ 49] [ 3] [418] +18:47:12 ============================================================================ +18:47:12 Sending to : +18:47:12 ============================================================================ +18:47:12 + + +waiting on router queue for slot.... +18:47:13 ============================================================================ +18:47:13 Slot Id : <248> +18:47:13 Transaction Type : RESPONSE +18:47:13 Received From : +18:47:13 ============================================================================ +18:47:13 FNo. Len. Field Value +18:47:13 ============================================================================ +18:47:13 [ 1] [ 4] [0210] +18:47:13 [ 2] [ 16] [6226331500062322] +18:47:13 [ 3] [ 6] [010000] +18:47:13 [ 4] [ 12] [000200000000] +18:47:13 [ 7] [ 10] [0320114617] +18:47:13 [ 11] [ 6] [271297] +18:47:13 [ 12] [ 6] [184617] +18:47:13 [ 13] [ 4] [0320] +18:47:13 [ 15] [ 4] [0320] +18:47:13 [ 18] [ 4] [6011] +18:47:13 [ 19] [ 3] [418] +18:47:13 [ 22] [ 3] [021] +18:47:13 [ 32] [ 6] [180893] +18:47:13 [ 35] [ 34] [6226331500062322=49121201201160000] +18:47:13 [ 37] [ 12] [507911271297] +18:47:13 [ 39] [ 2] [61] +18:47:13 [ 41] [ 8] [0161HQBR] +18:47:13 [ 49] [ 3] [418] +18:47:13 ============================================================================ +18:47:13 Calculate Source COMM Id = 2 +18:47:13 ============================================================================ +18:47:13 + + +waiting on router queue for slot.... +18:47:13 ============================================================================ +18:47:13 Slot Id : <251> +18:47:13 Transaction Type : REQUEST +18:47:13 Received From : +18:47:13 ============================================================================ +18:47:13 FNo. Len. Field Value +18:47:13 ============================================================================ +18:47:13 [ 1] [ 4] [0800] +18:47:13 [ 7] [ 10] [0320114619] +18:47:13 [ 11] [ 6] [157784] +18:47:13 [ 70] [ 3] [301] +18:47:13 ============================================================================ +18:47:13 + + +waiting on router queue for slot.... +18:47:13 Sending to : +18:47:13 ============================================================================ +18:47:13 ============================================================================ +18:47:13 Slot Id : <251> +18:47:13 Transaction Type : RESPONSE +18:47:13 Received From : +18:47:13 ============================================================================ +18:47:13 FNo. Len. Field Value +18:47:13 ============================================================================ +18:47:13 [ 1] [ 4] [0810] +18:47:13 [ 7] [ 10] [0320114619] +18:47:13 [ 11] [ 6] [157784] +18:47:13 [ 39] [ 2] [00] +18:47:13 [ 70] [ 3] [301] +18:47:13 ============================================================================ +18:47:13 Calculate Source COMM Id = 2 +18:47:13 ============================================================================ +18:47:13 + + +waiting on router queue for slot.... +18:47:24 ============================================================================ +18:47:24 Slot Id : <255> +18:47:24 Transaction Type : REQUEST +18:47:24 Received From : +18:47:24 ============================================================================ +18:47:24 FNo. Len. Field Value +18:47:24 ============================================================================ +18:47:24 [ 1] [ 4] [0800] +18:47:24 [ 7] [ 10] [0320114630] +18:47:24 [ 11] [ 6] [157785] +18:47:24 [ 70] [ 3] [301] +18:47:24 ============================================================================ +18:47:24 + + +waiting on router queue for slot.... +18:47:24 Sending to : +18:47:24 ============================================================================ +18:47:24 ============================================================================ +18:47:24 Slot Id : <255> +18:47:24 Transaction Type : RESPONSE +18:47:24 Received From : +18:47:24 ============================================================================ +18:47:24 FNo. Len. Field Value +18:47:24 ============================================================================ +18:47:24 [ 1] [ 4] [0810] +18:47:24 [ 7] [ 10] [0320114630] +18:47:24 [ 11] [ 6] [157785] +18:47:24 [ 39] [ 2] [00] +18:47:24 [ 70] [ 3] [301] +18:47:24 ============================================================================ +18:47:24 Calculate Source COMM Id = 2 +18:47:24 ============================================================================ +18:47:24 + + +waiting on router queue for slot.... +18:47:27 ============================================================================ +18:47:27 Slot Id : <243> +18:47:27 Transaction Type : REQUEST +18:47:27 Received From : +18:47:27 ============================================================================ +18:47:27 FNo. Len. Field Value +18:47:27 ============================================================================ +18:47:27 [ 1] [ 4] [0200] +18:47:27 [ 2] [ 16] [6226331500062322] +18:47:27 [ 3] [ 6] [010000] +18:47:27 [ 4] [ 12] [000100000000] +18:47:27 [ 7] [ 10] [0320114633] +18:47:27 [ 11] [ 6] [271299] +18:47:27 [ 12] [ 6] [184633] +18:47:27 [ 13] [ 4] [0320] +18:47:27 [ 14] [ 4] [4912] +18:47:27 [ 15] [ 4] [0320] +18:47:27 [ 18] [ 4] [6011] +18:47:27 [ 19] [ 3] [418] +18:47:27 [ 22] [ 3] [021] +18:47:27 [ 25] [ 2] [01] +18:47:27 [ 28] [ 9] [D00015000] +18:47:27 [ 32] [ 6] [180893] +18:47:27 [ 35] [ 34] [6226331500062322=49121201201160000] +18:47:27 [ 37] [ 12] [507911271299] +18:47:27 [ 41] [ 8] [0161HQBR] +18:47:27 [ 42] [ 15] [999999 ] +18:47:27 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:47:27 [ 49] [ 3] [418] +18:47:27 [ 52] [ 16] [A0228E97D54BEB55] +18:47:27 ============================================================================ +18:47:27 + + +waiting on router queue for slot.... +18:47:27 Sending to : +18:47:27 ============================================================================ +18:47:27 Sending to : +18:47:27 ============================================================================ +18:47:28 ============================================================================ +18:47:28 Slot Id : <243> +18:47:28 Transaction Type : REQUEST +18:47:28 Received From : +18:47:28 ============================================================================ +18:47:28 FNo. Len. Field Value +18:47:28 ============================================================================ +18:47:28 [ 1] [ 4] [0200] +18:47:28 [ 2] [ 16] [6226331500062322] +18:47:28 [ 3] [ 6] [010000] +18:47:28 [ 4] [ 12] [000100000000] +18:47:28 [ 7] [ 10] [0320114633] +18:47:28 [ 11] [ 6] [271299] +18:47:28 [ 12] [ 6] [184633] +18:47:28 [ 13] [ 4] [0320] +18:47:28 [ 14] [ 4] [4912] +18:47:28 [ 15] [ 4] [0320] +18:47:28 [ 18] [ 4] [6011] +18:47:28 [ 19] [ 3] [418] +18:47:28 [ 22] [ 3] [021] +18:47:28 [ 25] [ 2] [01] +18:47:28 [ 28] [ 9] [D00015000] +18:47:28 [ 32] [ 6] [180893] +18:47:28 [ 35] [ 34] [6226331500062322=49121201201160000] +18:47:28 [ 37] [ 12] [507911271299] +18:47:28 [ 41] [ 8] [0161HQBR] +18:47:28 [ 42] [ 15] [999999 ] +18:47:28 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:47:28 [ 49] [ 3] [418] +18:47:28 [ 52] [ 16] [A0228E97D54BEB55] +18:47:28 ============================================================================ +18:47:28 + + +waiting on router queue for slot.... +18:47:28 Sending to : +18:47:28 ============================================================================ +18:47:28 ============================================================================ +18:47:28 Slot Id : <243> +18:47:28 Transaction Type : REQUEST +18:47:28 Received From : +18:47:28 ============================================================================ +18:47:28 FNo. Len. Field Value +18:47:28 ============================================================================ +18:47:28 [ 1] [ 4] [0200] +18:47:28 [ 2] [ 16] [6226331500062322] +18:47:28 [ 3] [ 6] [010000] +18:47:28 [ 4] [ 12] [000100000000] +18:47:28 [ 7] [ 10] [0320114633] +18:47:28 [ 11] [ 6] [271299] +18:47:28 [ 12] [ 6] [184633] +18:47:28 [ 13] [ 4] [0320] +18:47:28 [ 14] [ 4] [4912] +18:47:28 [ 15] [ 4] [0320] +18:47:28 [ 18] [ 4] [6011] +18:47:28 [ 19] [ 3] [418] +18:47:28 [ 22] [ 3] [021] +18:47:28 [ 25] [ 2] [01] +18:47:28 [ 28] [ 9] [D00015000] +18:47:28 [ 32] [ 6] [180893] +18:47:28 [ 35] [ 34] [6226331500062322=49121201201160000] +18:47:28 [ 37] [ 12] [507911271299] +18:47:28 [ 41] [ 8] [0161HQBR] +18:47:28 [ 42] [ 15] [999999 ] +18:47:28 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:47:28 [ 49] [ 3] [418] +18:47:28 [ 52] [ 16] [EC7489C5B90FCA40] +18:47:28 ============================================================================ +18:47:28 + + +waiting on router queue for slot.... +18:47:28 Sending to : <0> +18:47:28 ============================================================================ +18:47:28 ============================================================================ +18:47:28 Slot Id : <243> +18:47:28 Transaction Type : RESPONSE +18:47:28 Received From : +18:47:28 ============================================================================ +18:47:28 FNo. Len. Field Value +18:47:28 ============================================================================ +18:47:28 [ 1] [ 4] [0210] +18:47:28 [ 2] [ 16] [6226331500062322] +18:47:28 [ 3] [ 6] [010000] +18:47:28 [ 4] [ 12] [000100000000] +18:47:28 [ 7] [ 10] [0320114633] +18:47:28 [ 11] [ 6] [271299] +18:47:28 [ 12] [ 6] [184633] +18:47:28 [ 13] [ 4] [0320] +18:47:28 [ 15] [ 4] [0320] +18:47:28 [ 18] [ 4] [6011] +18:47:28 [ 19] [ 3] [418] +18:47:28 [ 22] [ 3] [021] +18:47:28 [ 32] [ 6] [180893] +18:47:28 [ 35] [ 34] [6226331500062322=49121201201160000] +18:47:28 [ 37] [ 12] [507911271299] +18:47:28 [ 38] [ 6] [985406] +18:47:28 [ 39] [ 2] [00] +18:47:28 [ 41] [ 8] [0161HQBR] +18:47:28 [ 49] [ 3] [418] +18:47:28 [ 54] [ 0] [] +18:47:28 ============================================================================ +18:47:28 Sending to : +18:47:28 ============================================================================ +18:47:28 + + +waiting on router queue for slot.... +18:47:30 ============================================================================ +18:47:30 Slot Id : <243> +18:47:30 Transaction Type : RESPONSE +18:47:30 Received From : +18:47:30 ============================================================================ +18:47:30 FNo. Len. Field Value +18:47:30 ============================================================================ +18:47:30 [ 1] [ 4] [0210] +18:47:30 [ 2] [ 16] [6226331500062322] +18:47:30 [ 3] [ 6] [010000] +18:47:30 [ 4] [ 12] [000100000000] +18:47:30 [ 7] [ 10] [0320114633] +18:47:30 [ 11] [ 6] [271299] +18:47:30 [ 12] [ 6] [184633] +18:47:30 [ 13] [ 4] [0320] +18:47:30 [ 15] [ 4] [0320] +18:47:30 [ 18] [ 4] [6011] +18:47:30 [ 19] [ 3] [418] +18:47:30 [ 22] [ 3] [021] +18:47:30 [ 32] [ 6] [180893] +18:47:30 [ 35] [ 34] [6226331500062322=49121201201160000] +18:47:30 [ 37] [ 12] [507911271299] +18:47:30 [ 38] [ 6] [985406] +18:47:30 [ 39] [ 2] [00] +18:47:30 [ 41] [ 8] [0161HQBR] +18:47:30 [ 49] [ 3] [418] +18:47:30 [ 54] [ 0] [] +18:47:30 ============================================================================ +18:47:30 Calculate Source COMM Id = 2 +18:47:30 ============================================================================ +18:47:30 + + +waiting on router queue for slot.... +18:47:44 ============================================================================ +18:47:44 Slot Id : <242> +18:47:44 Transaction Type : REQUEST +18:47:44 Received From : +18:47:44 ============================================================================ +18:47:44 FNo. Len. Field Value +18:47:44 ============================================================================ +18:47:44 [ 1] [ 4] [0800] +18:47:44 [ 7] [ 10] [0321015933] +18:47:44 [ 11] [ 6] [185933] +18:47:44 [ 37] [ 12] [57918185933] +18:47:44 [ 70] [ 3] [301] +18:47:44 ============================================================================ +18:47:44 + + +waiting on router queue for slot.... +18:47:44 Sending to : +18:47:44 ============================================================================ +18:47:44 ============================================================================ +18:47:44 Slot Id : <242> +18:47:44 Transaction Type : RESPONSE +18:47:44 Received From : +18:47:44 ============================================================================ +18:47:44 FNo. Len. Field Value +18:47:44 ============================================================================ +18:47:44 [ 1] [ 4] [0810] +18:47:44 [ 7] [ 10] [0321015933] +18:47:44 [ 11] [ 6] [185933] +18:47:44 [ 37] [ 12] [579181859330] +18:47:44 [ 39] [ 2] [00] +18:47:44 [ 70] [ 3] [810] +18:47:44 ============================================================================ +18:47:44 Calculate Source COMM Id = 6 +18:47:44 ============================================================================ +18:47:44 + + +waiting on router queue for slot.... +18:47:45 ============================================================================ +18:47:45 Slot Id : <250> +18:47:45 Transaction Type : REQUEST +18:47:45 Received From : +18:47:45 ============================================================================ +18:47:45 FNo. Len. Field Value +18:47:45 ============================================================================ +18:47:45 [ 1] [ 4] [0800] +18:47:45 [ 7] [ 10] [0320114651] +18:47:45 [ 11] [ 6] [157786] +18:47:45 [ 70] [ 3] [301] +18:47:45 ============================================================================ +18:47:45 + + +waiting on router queue for slot.... +18:47:45 Sending to : +18:47:45 ============================================================================ +18:47:45 ============================================================================ +18:47:45 Slot Id : <250> +18:47:45 Transaction Type : RESPONSE +18:47:45 Received From : +18:47:45 ============================================================================ +18:47:45 FNo. Len. Field Value +18:47:45 ============================================================================ +18:47:45 [ 1] [ 4] [0810] +18:47:45 [ 7] [ 10] [0320114651] +18:47:45 [ 11] [ 6] [157786] +18:47:45 [ 39] [ 2] [00] +18:47:45 [ 70] [ 3] [301] +18:47:45 ============================================================================ +18:47:45 Calculate Source COMM Id = 2 +18:47:45 ============================================================================ +18:47:45 + + +waiting on router queue for slot.... +18:47:55 ============================================================================ +18:47:55 Slot Id : <177> +18:47:55 Transaction Type : REQUEST +18:47:55 Received From : +18:47:55 ============================================================================ +18:47:55 FNo. Len. Field Value +18:47:55 ============================================================================ +18:47:55 [ 1] [ 4] [0800] +18:47:55 [ 7] [ 10] [0320114702] +18:47:55 [ 11] [ 6] [157787] +18:47:55 [ 70] [ 3] [301] +18:47:55 ============================================================================ +18:47:55 + + +waiting on router queue for slot.... +18:47:55 Sending to : +18:47:55 ============================================================================ +18:47:55 ============================================================================ +18:47:55 Slot Id : <177> +18:47:55 Transaction Type : RESPONSE +18:47:55 Received From : +18:47:55 ============================================================================ +18:47:55 FNo. Len. Field Value +18:47:55 ============================================================================ +18:47:55 [ 1] [ 4] [0810] +18:47:55 [ 7] [ 10] [0320114702] +18:47:55 [ 11] [ 6] [157787] +18:47:55 [ 39] [ 2] [00] +18:47:55 [ 70] [ 3] [301] +18:47:55 ============================================================================ +18:47:55 Calculate Source COMM Id = 2 +18:47:55 ============================================================================ +18:47:55 + + +waiting on router queue for slot.... +18:48:01 ============================================================================ +18:48:01 Slot Id : <226> +18:48:01 Transaction Type : REQUEST +18:48:01 Received From : +18:48:01 ============================================================================ +18:48:01 FNo. Len. Field Value +18:48:01 ============================================================================ +18:48:01 [ 1] [ 4] [0800] +18:48:01 [ 2] [ 5] [02531] +18:48:01 [ 3] [ 6] [579188] +18:48:01 [ 7] [ 10] [0320114801] +18:48:01 [ 11] [ 6] [807503] +18:48:01 [ 15] [ 10] [0320114801] +18:48:01 [ 37] [ 11] [57918807503] +18:48:01 [ 70] [ 3] [001] +18:48:01 ============================================================================ +18:48:01 + + +waiting on router queue for slot.... +18:48:01 ============================================================================ +18:48:01 Slot Id : <226> +18:48:01 Transaction Type : RESPONSE +18:48:01 Received From : +18:48:01 ============================================================================ +18:48:01 FNo. Len. Field Value +18:48:01 ============================================================================ +18:48:01 [ 1] [ 4] [0810] +18:48:01 [ 7] [ 10] [0320114801] +18:48:01 [ 11] [ 6] [807503] +18:48:01 [ 15] [ 4] [0320] +18:48:01 [ 37] [ 12] [57918807503] +18:48:01 [ 39] [ 2] [00] +18:48:01 [ 70] [ 3] [001] +18:48:01 ============================================================================ +18:48:01 Sending to : +18:48:01 ============================================================================ +18:48:01 + + +waiting on router queue for slot.... +18:48:06 ============================================================================ +18:48:06 Slot Id : <233> +18:48:06 Transaction Type : REQUEST +18:48:06 Received From : +18:48:06 ============================================================================ +18:48:06 FNo. Len. Field Value +18:48:06 ============================================================================ +18:48:06 [ 1] [ 4] [0800] +18:48:06 [ 7] [ 10] [0320114713] +18:48:06 [ 11] [ 6] [157788] +18:48:06 [ 70] [ 3] [301] +18:48:06 ============================================================================ +18:48:06 + + +waiting on router queue for slot.... +18:48:06 Sending to : +18:48:06 ============================================================================ +18:48:06 ============================================================================ +18:48:06 Slot Id : <233> +18:48:06 Transaction Type : RESPONSE +18:48:06 Received From : +18:48:06 ============================================================================ +18:48:06 FNo. Len. Field Value +18:48:06 ============================================================================ +18:48:06 [ 1] [ 4] [0810] +18:48:06 [ 7] [ 10] [0320114713] +18:48:06 [ 11] [ 6] [157788] +18:48:06 [ 39] [ 2] [00] +18:48:06 [ 70] [ 3] [301] +18:48:06 ============================================================================ +18:48:06 Calculate Source COMM Id = 2 +18:48:06 ============================================================================ +18:48:06 + + +waiting on router queue for slot.... +18:48:22 ============================================================================ +18:48:22 Slot Id : <237> +18:48:22 Transaction Type : REQUEST +18:48:22 Received From : +18:48:22 ============================================================================ +18:48:22 FNo. Len. Field Value +18:48:22 ============================================================================ +18:48:22 [ 1] [ 4] [0800] +18:48:22 [ 7] [ 10] [0320114729] +18:48:22 [ 11] [ 6] [157789] +18:48:22 [ 70] [ 3] [301] +18:48:22 ============================================================================ +18:48:22 + + +waiting on router queue for slot.... +18:48:22 Sending to : +18:48:22 ============================================================================ +18:48:22 ============================================================================ +18:48:22 Slot Id : <237> +18:48:22 Transaction Type : RESPONSE +18:48:22 Received From : +18:48:22 ============================================================================ +18:48:22 FNo. Len. Field Value +18:48:22 ============================================================================ +18:48:22 [ 1] [ 4] [0810] +18:48:22 [ 7] [ 10] [0320114729] +18:48:22 [ 11] [ 6] [157789] +18:48:22 [ 39] [ 2] [00] +18:48:22 [ 70] [ 3] [301] +18:48:22 ============================================================================ +18:48:22 Calculate Source COMM Id = 2 +18:48:22 ============================================================================ +18:48:22 + + +waiting on router queue for slot.... +18:48:33 ============================================================================ +18:48:33 Slot Id : <260> +18:48:33 Transaction Type : REQUEST +18:48:33 Received From : +18:48:33 ============================================================================ +18:48:33 FNo. Len. Field Value +18:48:33 ============================================================================ +18:48:33 [ 1] [ 4] [0800] +18:48:33 [ 7] [ 10] [0320114739] +18:48:33 [ 11] [ 6] [157790] +18:48:33 [ 70] [ 3] [301] +18:48:33 ============================================================================ +18:48:33 + + +waiting on router queue for slot.... +18:48:33 Sending to : +18:48:33 ============================================================================ +18:48:33 ============================================================================ +18:48:33 Slot Id : <260> +18:48:33 Transaction Type : RESPONSE +18:48:33 Received From : +18:48:33 ============================================================================ +18:48:33 FNo. Len. Field Value +18:48:33 ============================================================================ +18:48:33 [ 1] [ 4] [0810] +18:48:33 [ 7] [ 10] [0320114739] +18:48:33 [ 11] [ 6] [157790] +18:48:33 [ 39] [ 2] [00] +18:48:33 [ 70] [ 3] [301] +18:48:33 ============================================================================ +18:48:33 Calculate Source COMM Id = 2 +18:48:33 ============================================================================ +18:48:33 + + +waiting on router queue for slot.... +18:48:48 ============================================================================ +18:48:48 Slot Id : <234> +18:48:48 Transaction Type : REQUEST +18:48:48 Received From : +18:48:48 ============================================================================ +18:48:48 FNo. Len. Field Value +18:48:48 ============================================================================ +18:48:48 [ 1] [ 4] [0800] +18:48:48 [ 7] [ 10] [0320114755] +18:48:48 [ 11] [ 6] [157791] +18:48:48 [ 70] [ 3] [301] +18:48:48 ============================================================================ +18:48:48 + + +waiting on router queue for slot.... +18:48:48 Sending to : +18:48:48 ============================================================================ +18:48:48 ============================================================================ +18:48:48 Slot Id : <234> +18:48:48 Transaction Type : RESPONSE +18:48:48 Received From : +18:48:48 ============================================================================ +18:48:48 FNo. Len. Field Value +18:48:48 ============================================================================ +18:48:48 [ 1] [ 4] [0810] +18:48:48 [ 7] [ 10] [0320114755] +18:48:48 [ 11] [ 6] [157791] +18:48:48 [ 39] [ 2] [00] +18:48:48 [ 70] [ 3] [301] +18:48:48 ============================================================================ +18:48:48 Calculate Source COMM Id = 2 +18:48:48 ============================================================================ +18:48:48 + + +waiting on router queue for slot.... +18:48:49 ============================================================================ +18:48:49 Slot Id : <253> +18:48:49 Transaction Type : REQUEST +18:48:49 Received From : +18:48:49 ============================================================================ +18:48:49 FNo. Len. Field Value +18:48:49 ============================================================================ +18:48:49 [ 1] [ 4] [0800] +18:48:49 [ 7] [ 10] [0321020038] +18:48:49 [ 11] [ 6] [190038] +18:48:49 [ 37] [ 12] [57919190038] +18:48:49 [ 70] [ 3] [301] +18:48:49 ============================================================================ +18:48:49 + + +waiting on router queue for slot.... +18:48:49 Sending to : +18:48:49 ============================================================================ +18:48:49 ============================================================================ +18:48:49 Slot Id : <253> +18:48:49 Transaction Type : RESPONSE +18:48:49 Received From : +18:48:49 ============================================================================ +18:48:49 FNo. Len. Field Value +18:48:49 ============================================================================ +18:48:49 [ 1] [ 4] [0810] +18:48:49 [ 7] [ 10] [0321020038] +18:48:49 [ 11] [ 6] [190038] +18:48:49 [ 37] [ 12] [579191900380] +18:48:49 [ 39] [ 2] [00] +18:48:49 [ 70] [ 3] [810] +18:48:49 ============================================================================ +18:48:49 Calculate Source COMM Id = 6 +18:48:49 ============================================================================ +18:48:49 + + +waiting on router queue for slot.... +18:48:53 ============================================================================ +18:48:53 Slot Id : <238> +18:48:53 Transaction Type : REQUEST +18:48:53 Received From : +18:48:53 ============================================================================ +18:48:53 FNo. Len. Field Value +18:48:53 ============================================================================ +18:48:53 [ 1] [ 4] [0200] +18:48:53 [ 2] [ 16] [6213545000653489] +18:48:53 [ 3] [ 6] [011000] +18:48:53 [ 4] [ 12] [000100000000] +18:48:53 [ 7] [ 10] [0320114759] +18:48:53 [ 11] [ 6] [271303] +18:48:53 [ 12] [ 6] [184759] +18:48:53 [ 13] [ 4] [0320] +18:48:53 [ 14] [ 4] [4912] +18:48:53 [ 15] [ 4] [0320] +18:48:53 [ 18] [ 4] [6011] +18:48:53 [ 19] [ 3] [418] +18:48:53 [ 22] [ 3] [021] +18:48:53 [ 25] [ 2] [01] +18:48:53 [ 28] [ 9] [D00002000] +18:48:53 [ 32] [ 6] [180893] +18:48:53 [ 35] [ 32] [6213545000653489=491212015348890] +18:48:53 [ 37] [ 12] [507911271303] +18:48:53 [ 41] [ 8] [0361BLTB] +18:48:53 [ 42] [ 15] [999999 ] +18:48:53 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +18:48:53 [ 49] [ 3] [418] +18:48:53 [ 52] [ 16] [8BACA615EE4C2D51] +18:48:53 ============================================================================ +18:48:53 + + +waiting on router queue for slot.... +18:48:53 Sending to : +18:48:53 ============================================================================ +18:48:53 Sending to : +18:48:53 ============================================================================ +18:48:53 ============================================================================ +18:48:53 Slot Id : <238> +18:48:53 Transaction Type : REQUEST +18:48:53 Received From : +18:48:53 ============================================================================ +18:48:53 FNo. Len. Field Value +18:48:53 ============================================================================ +18:48:53 [ 1] [ 4] [0200] +18:48:53 [ 2] [ 16] [6213545000653489] +18:48:53 [ 3] [ 6] [011000] +18:48:53 [ 4] [ 12] [000100000000] +18:48:53 [ 7] [ 10] [0320114759] +18:48:53 [ 11] [ 6] [271303] +18:48:53 [ 12] [ 6] [184759] +18:48:53 [ 13] [ 4] [0320] +18:48:53 [ 14] [ 4] [4912] +18:48:53 [ 15] [ 4] [0320] +18:48:53 [ 18] [ 4] [6011] +18:48:53 [ 19] [ 3] [418] +18:48:53 [ 22] [ 3] [021] +18:48:53 [ 25] [ 2] [01] +18:48:53 [ 28] [ 9] [D00002000] +18:48:53 [ 32] [ 6] [180893] +18:48:53 [ 35] [ 32] [6213545000653489=491212015348890] +18:48:53 [ 37] [ 12] [507911271303] +18:48:53 [ 41] [ 8] [0361BLTB] +18:48:53 [ 42] [ 15] [999999 ] +18:48:53 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +18:48:53 [ 49] [ 3] [418] +18:48:53 [ 52] [ 16] [8BACA615EE4C2D51] +18:48:53 ============================================================================ +18:48:53 + + +waiting on router queue for slot.... +18:48:53 Sending to : +18:48:53 ============================================================================ +18:48:53 ============================================================================ +18:48:53 Slot Id : <238> +18:48:53 Transaction Type : REQUEST +18:48:53 Received From : +18:48:53 ============================================================================ +18:48:53 FNo. Len. Field Value +18:48:53 ============================================================================ +18:48:53 [ 1] [ 4] [0200] +18:48:53 [ 2] [ 16] [6213545000653489] +18:48:53 [ 3] [ 6] [011000] +18:48:53 [ 4] [ 12] [000100000000] +18:48:53 [ 7] [ 10] [0320114759] +18:48:53 [ 11] [ 6] [271303] +18:48:53 [ 12] [ 6] [184759] +18:48:53 [ 13] [ 4] [0320] +18:48:53 [ 14] [ 4] [4912] +18:48:53 [ 15] [ 4] [0320] +18:48:53 [ 18] [ 4] [6011] +18:48:53 [ 19] [ 3] [418] +18:48:53 [ 22] [ 3] [021] +18:48:53 [ 25] [ 2] [01] +18:48:53 [ 28] [ 9] [D00002000] +18:48:53 [ 32] [ 6] [180893] +18:48:53 [ 35] [ 32] [6213545000653489=491212015348890] +18:48:53 [ 37] [ 12] [507911271303] +18:48:53 [ 41] [ 8] [0361BLTB] +18:48:53 [ 42] [ 15] [999999 ] +18:48:53 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +18:48:53 [ 49] [ 3] [418] +18:48:53 [ 52] [ 16] [40A2E0B99158662A] +18:48:53 ============================================================================ +18:48:53 + + +waiting on router queue for slot.... +18:48:53 Sending to : <0> +18:48:53 ============================================================================ +18:48:54 ============================================================================ +18:48:54 Slot Id : <238> +18:48:54 Transaction Type : RESPONSE +18:48:54 Received From : +18:48:54 ============================================================================ +18:48:54 FNo. Len. Field Value +18:48:54 ============================================================================ +18:48:54 [ 1] [ 4] [0210] +18:48:54 [ 2] [ 16] [6213545000653489] +18:48:54 [ 3] [ 6] [011000] +18:48:54 [ 4] [ 12] [000100000000] +18:48:54 [ 7] [ 10] [0320114759] +18:48:54 [ 11] [ 6] [271303] +18:48:54 [ 12] [ 6] [184759] +18:48:54 [ 13] [ 4] [0320] +18:48:54 [ 15] [ 4] [0320] +18:48:54 [ 18] [ 4] [6011] +18:48:54 [ 19] [ 3] [418] +18:48:54 [ 32] [ 6] [180893] +18:48:54 [ 35] [ 32] [6213545000653489=491212015348890] +18:48:54 [ 37] [ 12] [507911271303] +18:48:54 [ 38] [ 6] [598138] +18:48:54 [ 39] [ 2] [00] +18:48:54 [ 41] [ 8] [0361BLTB] +18:48:54 [ 49] [ 3] [418] +18:48:54 [ 54] [ 40] [1001418C0000799969101002418C000079996910] +18:48:54 ============================================================================ +18:48:54 Sending to : +18:48:54 ============================================================================ +18:48:54 + + +waiting on router queue for slot.... +18:48:55 ============================================================================ +18:48:55 Slot Id : <238> +18:48:55 Transaction Type : RESPONSE +18:48:55 Received From : +18:48:55 ============================================================================ +18:48:55 FNo. Len. Field Value +18:48:55 ============================================================================ +18:48:55 [ 1] [ 4] [0210] +18:48:55 [ 2] [ 16] [6213545000653489] +18:48:55 [ 3] [ 6] [011000] +18:48:55 [ 4] [ 12] [000100000000] +18:48:55 [ 7] [ 10] [0320114759] +18:48:55 [ 11] [ 6] [271303] +18:48:55 [ 12] [ 6] [184759] +18:48:55 [ 13] [ 4] [0320] +18:48:55 [ 15] [ 4] [0320] +18:48:55 [ 18] [ 4] [6011] +18:48:55 [ 19] [ 3] [418] +18:48:55 [ 32] [ 6] [180893] +18:48:55 [ 35] [ 32] [6213545000653489=491212015348890] +18:48:55 [ 37] [ 12] [507911271303] +18:48:55 [ 38] [ 6] [598138] +18:48:55 [ 39] [ 2] [00] +18:48:55 [ 41] [ 8] [0361BLTB] +18:48:55 [ 49] [ 3] [418] +18:48:55 [ 54] [ 40] [1001418C0000799969101002418C000079996910] +18:48:55 ============================================================================ +18:48:55 Calculate Source COMM Id = 2 +18:48:55 ============================================================================ +18:48:55 + + +waiting on router queue for slot.... +18:49:03 ============================================================================ +18:49:03 Slot Id : <200> +18:49:03 Transaction Type : REQUEST +18:49:03 Received From : +18:49:03 ============================================================================ +18:49:03 FNo. Len. Field Value +18:49:03 ============================================================================ +18:49:03 [ 1] [ 4] [0800] +18:49:03 [ 2] [ 5] [02531] +18:49:03 [ 3] [ 6] [579188] +18:49:03 [ 7] [ 10] [0320114903] +18:49:03 [ 11] [ 6] [807504] +18:49:03 [ 15] [ 10] [0320114903] +18:49:03 [ 37] [ 11] [57918807504] +18:49:03 [ 70] [ 3] [001] +18:49:03 ============================================================================ +18:49:03 + + +waiting on router queue for slot.... +18:49:03 ============================================================================ +18:49:03 Slot Id : <200> +18:49:03 Transaction Type : RESPONSE +18:49:03 Received From : +18:49:03 ============================================================================ +18:49:03 FNo. Len. Field Value +18:49:03 ============================================================================ +18:49:03 [ 1] [ 4] [0810] +18:49:03 [ 7] [ 10] [0320114903] +18:49:03 [ 11] [ 6] [807504] +18:49:03 [ 15] [ 4] [0320] +18:49:03 [ 37] [ 12] [57918807504] +18:49:03 [ 39] [ 2] [00] +18:49:03 [ 70] [ 3] [001] +18:49:03 ============================================================================ +18:49:03 Sending to : +18:49:03 ============================================================================ +18:49:03 + + +waiting on router queue for slot.... +18:49:09 ============================================================================ +18:49:09 Slot Id : <216> +18:49:09 Transaction Type : REQUEST +18:49:09 Received From : +18:49:09 ============================================================================ +18:49:09 FNo. Len. Field Value +18:49:09 ============================================================================ +18:49:09 [ 1] [ 4] [0800] +18:49:09 [ 7] [ 10] [0320114815] +18:49:09 [ 11] [ 6] [157792] +18:49:09 [ 70] [ 3] [301] +18:49:09 ============================================================================ +18:49:09 + + +waiting on router queue for slot.... +18:49:09 Sending to : +18:49:09 ============================================================================ +18:49:09 ============================================================================ +18:49:09 Slot Id : <216> +18:49:09 Transaction Type : RESPONSE +18:49:09 Received From : +18:49:09 ============================================================================ +18:49:09 FNo. Len. Field Value +18:49:09 ============================================================================ +18:49:09 [ 1] [ 4] [0810] +18:49:09 [ 7] [ 10] [0320114815] +18:49:09 [ 11] [ 6] [157792] +18:49:09 [ 39] [ 2] [00] +18:49:09 [ 70] [ 3] [301] +18:49:09 ============================================================================ +18:49:09 Calculate Source COMM Id = 2 +18:49:09 ============================================================================ +18:49:09 + + +waiting on router queue for slot.... +18:49:18 ============================================================================ +18:49:18 Slot Id : <249> +18:49:18 Transaction Type : REQUEST +18:49:18 Received From : +18:49:18 ============================================================================ +18:49:18 FNo. Len. Field Value +18:49:18 ============================================================================ +18:49:18 [ 1] [ 4] [0200] +18:49:18 [ 2] [ 16] [6213544002133608] +18:49:18 [ 3] [ 6] [300000] +18:49:18 [ 4] [ 12] [000000000000] +18:49:18 [ 7] [ 10] [0320184707] +18:49:18 [ 11] [ 6] [955116] +18:49:18 [ 12] [ 6] [184707] +18:49:18 [ 13] [ 4] [0320] +18:49:18 [ 15] [ 4] [0320] +18:49:18 [ 18] [ 4] [6011] +18:49:18 [ 19] [ 3] [418] +18:49:18 [ 22] [ 3] [021] +18:49:18 [ 25] [ 2] [01] +18:49:18 [ 28] [ 9] [D00000000] +18:49:18 [ 32] [ 6] [668899] +18:49:18 [ 35] [ 32] [6213544002133608=491212013360410] +18:49:18 [ 37] [ 12] [507900977536] +18:49:18 [ 41] [ 8] [03407002] +18:49:18 [ 42] [ 15] [APT ] +18:49:18 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +18:49:18 [ 49] [ 3] [418] +18:49:18 [ 52] [ 16] [43223C1A74D42BF3] +18:49:18 ============================================================================ +18:49:18 + + +waiting on router queue for slot.... +18:49:18 Sending to : +18:49:18 ============================================================================ +18:49:18 Sending to : +18:49:18 ============================================================================ +18:49:18 ============================================================================ +18:49:18 Slot Id : <249> +18:49:18 Transaction Type : REQUEST +18:49:18 Received From : +18:49:18 ============================================================================ +18:49:18 FNo. Len. Field Value +18:49:18 ============================================================================ +18:49:18 [ 1] [ 4] [0200] +18:49:18 [ 2] [ 16] [6213544002133608] +18:49:18 [ 3] [ 6] [300000] +18:49:18 [ 4] [ 12] [000000000000] +18:49:18 [ 7] [ 10] [0320184707] +18:49:18 [ 11] [ 6] [955116] +18:49:18 [ 12] [ 6] [184707] +18:49:18 [ 13] [ 4] [0320] +18:49:18 [ 15] [ 4] [0320] +18:49:18 [ 18] [ 4] [6011] +18:49:18 [ 19] [ 3] [418] +18:49:18 [ 22] [ 3] [021] +18:49:18 [ 25] [ 2] [01] +18:49:18 [ 28] [ 9] [D00000000] +18:49:18 [ 32] [ 6] [668899] +18:49:18 [ 35] [ 32] [6213544002133608=491212013360410] +18:49:18 [ 37] [ 12] [507900977536] +18:49:18 [ 41] [ 8] [03407002] +18:49:18 [ 42] [ 15] [APT ] +18:49:18 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +18:49:18 [ 49] [ 3] [418] +18:49:18 [ 52] [ 16] [43223C1A74D42BF3] +18:49:18 ============================================================================ +18:49:18 + + +waiting on router queue for slot.... +18:49:18 Sending to : +18:49:18 ============================================================================ +18:49:18 ============================================================================ +18:49:18 Slot Id : <249> +18:49:18 Transaction Type : REQUEST +18:49:18 Received From : +18:49:18 ============================================================================ +18:49:18 FNo. Len. Field Value +18:49:18 ============================================================================ +18:49:18 [ 1] [ 4] [0200] +18:49:18 [ 2] [ 16] [6213544002133608] +18:49:18 [ 3] [ 6] [300000] +18:49:18 [ 4] [ 12] [000000000000] +18:49:18 [ 7] [ 10] [0320184707] +18:49:18 [ 11] [ 6] [955116] +18:49:18 [ 12] [ 6] [184707] +18:49:18 [ 13] [ 4] [0320] +18:49:18 [ 15] [ 4] [0320] +18:49:18 [ 18] [ 4] [6011] +18:49:18 [ 19] [ 3] [418] +18:49:18 [ 22] [ 3] [021] +18:49:18 [ 25] [ 2] [01] +18:49:18 [ 28] [ 9] [D00000000] +18:49:18 [ 32] [ 6] [668899] +18:49:18 [ 35] [ 32] [6213544002133608=491212013360410] +18:49:18 [ 37] [ 12] [507900977536] +18:49:18 [ 41] [ 8] [03407002] +18:49:18 [ 42] [ 15] [APT ] +18:49:18 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +18:49:18 [ 49] [ 3] [418] +18:49:18 [ 52] [ 16] [927E495547BE069A] +18:49:18 ============================================================================ +18:49:18 + + +waiting on router queue for slot.... +18:49:18 Sending to : <0> +18:49:18 ============================================================================ +18:49:18 ============================================================================ +18:49:18 Slot Id : <249> +18:49:18 Transaction Type : RESPONSE +18:49:18 Received From : +18:49:18 ============================================================================ +18:49:18 FNo. Len. Field Value +18:49:18 ============================================================================ +18:49:18 [ 1] [ 4] [0210] +18:49:18 [ 2] [ 16] [6213544002133608] +18:49:18 [ 3] [ 6] [300000] +18:49:18 [ 4] [ 12] [000000000000] +18:49:18 [ 7] [ 10] [0320184707] +18:49:18 [ 11] [ 6] [955116] +18:49:18 [ 12] [ 6] [184707] +18:49:18 [ 13] [ 4] [0320] +18:49:18 [ 15] [ 4] [0320] +18:49:18 [ 18] [ 4] [6011] +18:49:18 [ 19] [ 3] [418] +18:49:18 [ 32] [ 6] [668899] +18:49:18 [ 35] [ 32] [6213544002133608=491212013360410] +18:49:18 [ 37] [ 12] [507900977536] +18:49:18 [ 38] [ 6] [254747] +18:49:18 [ 39] [ 2] [00] +18:49:18 [ 41] [ 8] [03407002] +18:49:18 [ 49] [ 3] [418] +18:49:18 [ 54] [ 40] [0001418C0007889545970002418C000788954597] +18:49:18 ============================================================================ +18:49:18 Sending to : +18:49:18 ============================================================================ +18:49:18 + + +waiting on router queue for slot.... +18:49:19 ============================================================================ +18:49:19 Slot Id : <259> +18:49:19 Transaction Type : REQUEST +18:49:19 Received From : +18:49:19 ============================================================================ +18:49:19 FNo. Len. Field Value +18:49:19 ============================================================================ +18:49:19 [ 1] [ 4] [0800] +18:49:19 [ 7] [ 10] [0320114826] +18:49:19 [ 11] [ 6] [157793] +18:49:19 [ 70] [ 3] [301] +18:49:19 ============================================================================ +18:49:19 + + +waiting on router queue for slot.... +18:49:19 Sending to : +18:49:19 ============================================================================ +18:49:19 ============================================================================ +18:49:19 Slot Id : <259> +18:49:19 Transaction Type : RESPONSE +18:49:19 Received From : +18:49:19 ============================================================================ +18:49:19 FNo. Len. Field Value +18:49:19 ============================================================================ +18:49:19 [ 1] [ 4] [0810] +18:49:19 [ 7] [ 10] [0320114826] +18:49:19 [ 11] [ 6] [157793] +18:49:19 [ 39] [ 2] [00] +18:49:19 [ 70] [ 3] [301] +18:49:19 ============================================================================ +18:49:19 Calculate Source COMM Id = 2 +18:49:19 ============================================================================ +18:49:19 + + +waiting on router queue for slot.... +18:49:20 ============================================================================ +18:49:20 Slot Id : <249> +18:49:20 Transaction Type : RESPONSE +18:49:20 Received From : +18:49:20 ============================================================================ +18:49:20 FNo. Len. Field Value +18:49:20 ============================================================================ +18:49:20 [ 1] [ 4] [0210] +18:49:20 [ 2] [ 16] [6213544002133608] +18:49:20 [ 3] [ 6] [300000] +18:49:20 [ 4] [ 12] [000000000000] +18:49:20 [ 7] [ 10] [0320184707] +18:49:20 [ 11] [ 6] [955116] +18:49:20 [ 12] [ 6] [184707] +18:49:20 [ 13] [ 4] [0320] +18:49:20 [ 15] [ 4] [0320] +18:49:20 [ 18] [ 4] [6011] +18:49:20 [ 19] [ 3] [418] +18:49:20 [ 32] [ 6] [668899] +18:49:20 [ 35] [ 32] [6213544002133608=491212013360410] +18:49:20 [ 37] [ 12] [507900977536] +18:49:20 [ 38] [ 6] [254747] +18:49:20 [ 39] [ 2] [00] +18:49:20 [ 41] [ 8] [03407002] +18:49:20 [ 49] [ 3] [418] +18:49:20 [ 54] [ 40] [0001418C0007889545970002418C000788954597] +18:49:20 ============================================================================ +18:49:20 Calculate Source COMM Id = 4 +18:49:20 ============================================================================ +18:49:20 + + +waiting on router queue for slot.... +18:49:28 ============================================================================ +18:49:28 Slot Id : <263> +18:49:28 Transaction Type : REQUEST +18:49:28 Received From : +18:49:28 ============================================================================ +18:49:28 FNo. Len. Field Value +18:49:28 ============================================================================ +18:49:28 [ 1] [ 4] [0200] +18:49:28 [ 2] [ 16] [6213545001001993] +18:49:28 [ 3] [ 6] [010000] +18:49:28 [ 4] [ 12] [000070000000] +18:49:28 [ 7] [ 10] [0320184718] +18:49:28 [ 11] [ 6] [955122] +18:49:28 [ 12] [ 6] [184718] +18:49:28 [ 13] [ 4] [0320] +18:49:28 [ 15] [ 4] [0320] +18:49:28 [ 18] [ 4] [6011] +18:49:28 [ 19] [ 3] [418] +18:49:28 [ 22] [ 3] [021] +18:49:28 [ 25] [ 2] [01] +18:49:28 [ 28] [ 9] [D00002000] +18:49:28 [ 32] [ 6] [668899] +18:49:28 [ 35] [ 32] [6213545001001993=491212010199166] +18:49:28 [ 37] [ 12] [507902104501] +18:49:28 [ 41] [ 8] [03020022] +18:49:28 [ 42] [ 15] [APT ] +18:49:28 [ 43] [ 40] [ ARMY MART LAK 5 CHOMMANY ] +18:49:28 [ 49] [ 3] [418] +18:49:28 [ 52] [ 16] [F509038B6E273004] +18:49:28 ============================================================================ +18:49:28 + + +waiting on router queue for slot.... +18:49:28 Sending to : +18:49:28 ============================================================================ +18:49:28 Sending to : +18:49:28 ============================================================================ +18:49:29 ============================================================================ +18:49:29 Slot Id : <263> +18:49:29 Transaction Type : REQUEST +18:49:29 Received From : +18:49:29 ============================================================================ +18:49:29 FNo. Len. Field Value +18:49:29 ============================================================================ +18:49:29 [ 1] [ 4] [0200] +18:49:29 [ 2] [ 16] [6213545001001993] +18:49:29 [ 3] [ 6] [010000] +18:49:29 [ 4] [ 12] [000070000000] +18:49:29 [ 7] [ 10] [0320184718] +18:49:29 [ 11] [ 6] [955122] +18:49:29 [ 12] [ 6] [184718] +18:49:29 [ 13] [ 4] [0320] +18:49:29 [ 15] [ 4] [0320] +18:49:29 [ 18] [ 4] [6011] +18:49:29 [ 19] [ 3] [418] +18:49:29 [ 22] [ 3] [021] +18:49:29 [ 25] [ 2] [01] +18:49:29 [ 28] [ 9] [D00002000] +18:49:29 [ 32] [ 6] [668899] +18:49:29 [ 35] [ 32] [6213545001001993=491212010199166] +18:49:29 [ 37] [ 12] [507902104501] +18:49:29 [ 41] [ 8] [03020022] +18:49:29 [ 42] [ 15] [APT ] +18:49:29 [ 43] [ 40] [ ARMY MART LAK 5 CHOMMANY ] +18:49:29 [ 49] [ 3] [418] +18:49:29 [ 52] [ 16] [F509038B6E273004] +18:49:29 ============================================================================ +18:49:29 + + +waiting on router queue for slot.... +18:49:29 Sending to : +18:49:29 ============================================================================ +18:49:29 ============================================================================ +18:49:29 Slot Id : <263> +18:49:29 Transaction Type : REQUEST +18:49:29 Received From : +18:49:29 ============================================================================ +18:49:29 FNo. Len. Field Value +18:49:29 ============================================================================ +18:49:29 [ 1] [ 4] [0200] +18:49:29 [ 2] [ 16] [6213545001001993] +18:49:29 [ 3] [ 6] [010000] +18:49:29 [ 4] [ 12] [000070000000] +18:49:29 [ 7] [ 10] [0320184718] +18:49:29 [ 11] [ 6] [955122] +18:49:29 [ 12] [ 6] [184718] +18:49:29 [ 13] [ 4] [0320] +18:49:29 [ 15] [ 4] [0320] +18:49:29 [ 18] [ 4] [6011] +18:49:29 [ 19] [ 3] [418] +18:49:29 [ 22] [ 3] [021] +18:49:29 [ 25] [ 2] [01] +18:49:29 [ 28] [ 9] [D00002000] +18:49:29 [ 32] [ 6] [668899] +18:49:29 [ 35] [ 32] [6213545001001993=491212010199166] +18:49:29 [ 37] [ 12] [507902104501] +18:49:29 [ 41] [ 8] [03020022] +18:49:29 [ 42] [ 15] [APT ] +18:49:29 [ 43] [ 40] [ ARMY MART LAK 5 CHOMMANY ] +18:49:29 [ 49] [ 3] [418] +18:49:29 [ 52] [ 16] [95E4AB2BFF946B31] +18:49:29 ============================================================================ +18:49:29 + + +waiting on router queue for slot.... +18:49:29 Sending to : <0> +18:49:29 ============================================================================ +18:49:29 ============================================================================ +18:49:29 Slot Id : <263> +18:49:29 Transaction Type : RESPONSE +18:49:29 Received From : +18:49:29 ============================================================================ +18:49:29 FNo. Len. Field Value +18:49:29 ============================================================================ +18:49:29 [ 1] [ 4] [0210] +18:49:29 [ 2] [ 16] [6213545001001993] +18:49:29 [ 3] [ 6] [010000] +18:49:29 [ 4] [ 12] [000070000000] +18:49:29 [ 7] [ 10] [0320184718] +18:49:29 [ 11] [ 6] [955122] +18:49:29 [ 12] [ 6] [184718] +18:49:29 [ 13] [ 4] [0320] +18:49:29 [ 15] [ 4] [0320] +18:49:29 [ 18] [ 4] [6011] +18:49:29 [ 19] [ 3] [418] +18:49:29 [ 22] [ 3] [021] +18:49:29 [ 32] [ 6] [668899] +18:49:29 [ 35] [ 32] [6213545001001993=491212010199166] +18:49:29 [ 37] [ 12] [507902104501] +18:49:29 [ 39] [ 2] [14] +18:49:29 [ 41] [ 8] [03020022] +18:49:29 [ 49] [ 3] [418] +18:49:29 ============================================================================ +18:49:29 Sending to : +18:49:29 ============================================================================ +18:49:29 + + +waiting on router queue for slot.... +18:49:29 ============================================================================ +18:49:29 Slot Id : <210> +18:49:29 Transaction Type : REQUEST +18:49:29 Received From : +18:49:29 ============================================================================ +18:49:29 FNo. Len. Field Value +18:49:29 ============================================================================ +18:49:29 [ 1] [ 4] [0800] +18:49:29 [ 7] [ 10] [0320114836] +18:49:29 [ 11] [ 6] [157794] +18:49:29 [ 70] [ 3] [301] +18:49:29 ============================================================================ +18:49:29 + + +waiting on router queue for slot.... +18:49:29 Sending to : +18:49:29 ============================================================================ +18:49:29 ============================================================================ +18:49:29 Slot Id : <210> +18:49:29 Transaction Type : RESPONSE +18:49:29 Received From : +18:49:29 ============================================================================ +18:49:29 FNo. Len. Field Value +18:49:29 ============================================================================ +18:49:29 [ 1] [ 4] [0810] +18:49:29 [ 7] [ 10] [0320114836] +18:49:29 [ 11] [ 6] [157794] +18:49:29 [ 39] [ 2] [00] +18:49:29 [ 70] [ 3] [301] +18:49:29 ============================================================================ +18:49:29 Calculate Source COMM Id = 2 +18:49:29 ============================================================================ +18:49:29 + + +waiting on router queue for slot.... +18:49:30 ============================================================================ +18:49:30 Slot Id : <263> +18:49:30 Transaction Type : RESPONSE +18:49:30 Received From : +18:49:30 ============================================================================ +18:49:30 FNo. Len. Field Value +18:49:30 ============================================================================ +18:49:30 [ 1] [ 4] [0210] +18:49:30 [ 2] [ 16] [6213545001001993] +18:49:30 [ 3] [ 6] [010000] +18:49:30 [ 4] [ 12] [000070000000] +18:49:30 [ 7] [ 10] [0320184718] +18:49:30 [ 11] [ 6] [955122] +18:49:30 [ 12] [ 6] [184718] +18:49:30 [ 13] [ 4] [0320] +18:49:30 [ 15] [ 4] [0320] +18:49:30 [ 18] [ 4] [6011] +18:49:30 [ 19] [ 3] [418] +18:49:30 [ 22] [ 3] [021] +18:49:30 [ 32] [ 6] [668899] +18:49:30 [ 35] [ 32] [6213545001001993=491212010199166] +18:49:30 [ 37] [ 12] [507902104501] +18:49:30 [ 39] [ 2] [14] +18:49:30 [ 41] [ 8] [03020022] +18:49:30 [ 49] [ 3] [418] +18:49:30 ============================================================================ +18:49:30 Calculate Source COMM Id = 4 +18:49:30 ============================================================================ +18:49:30 + + +waiting on router queue for slot.... +18:49:40 ============================================================================ +18:49:40 Slot Id : <261> +18:49:40 Transaction Type : REQUEST +18:49:40 Received From : +18:49:40 ============================================================================ +18:49:40 FNo. Len. Field Value +18:49:40 ============================================================================ +18:49:40 [ 1] [ 4] [0800] +18:49:40 [ 7] [ 10] [0320114847] +18:49:40 [ 11] [ 6] [157795] +18:49:40 [ 70] [ 3] [301] +18:49:40 ============================================================================ +18:49:40 + + +waiting on router queue for slot.... +18:49:40 Sending to : +18:49:40 ============================================================================ +18:49:40 ============================================================================ +18:49:40 Slot Id : <261> +18:49:40 Transaction Type : RESPONSE +18:49:40 Received From : +18:49:40 ============================================================================ +18:49:40 FNo. Len. Field Value +18:49:40 ============================================================================ +18:49:40 [ 1] [ 4] [0810] +18:49:40 [ 7] [ 10] [0320114847] +18:49:40 [ 11] [ 6] [157795] +18:49:40 [ 39] [ 2] [00] +18:49:40 [ 70] [ 3] [301] +18:49:40 ============================================================================ +18:49:40 Calculate Source COMM Id = 2 +18:49:40 ============================================================================ +18:49:40 + + +waiting on router queue for slot.... +18:49:43 ============================================================================ +18:49:43 Slot Id : <269> +18:49:43 Transaction Type : REQUEST +18:49:43 Received From : +18:49:43 ============================================================================ +18:49:43 FNo. Len. Field Value +18:49:43 ============================================================================ +18:49:43 [ 1] [ 4] [0200] +18:49:43 [ 2] [ 16] [6213544000075512] +18:49:43 [ 3] [ 6] [010000] +18:49:43 [ 4] [ 12] [000010000000] +18:49:43 [ 7] [ 10] [0320114848] +18:49:43 [ 11] [ 6] [271308] +18:49:43 [ 12] [ 6] [184848] +18:49:43 [ 13] [ 4] [0320] +18:49:43 [ 14] [ 4] [4912] +18:49:43 [ 15] [ 4] [0320] +18:49:43 [ 18] [ 4] [6011] +18:49:43 [ 19] [ 3] [418] +18:49:43 [ 22] [ 3] [021] +18:49:43 [ 25] [ 2] [01] +18:49:43 [ 28] [ 9] [D00002000] +18:49:43 [ 32] [ 6] [180893] +18:49:43 [ 35] [ 32] [6213544000075512=491212017551641] +18:49:43 [ 37] [ 12] [507911271308] +18:49:43 [ 41] [ 8] [0102SAPA] +18:49:43 [ 42] [ 15] [999999 ] +18:49:43 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:49:43 [ 49] [ 3] [418] +18:49:43 [ 52] [ 16] [2544D311632CF08A] +18:49:43 ============================================================================ +18:49:43 + + +waiting on router queue for slot.... +18:49:43 Sending to : +18:49:43 ============================================================================ +18:49:43 Sending to : +18:49:43 ============================================================================ +18:49:44 ============================================================================ +18:49:44 Slot Id : <269> +18:49:44 Transaction Type : REQUEST +18:49:44 Received From : +18:49:44 ============================================================================ +18:49:44 FNo. Len. Field Value +18:49:44 ============================================================================ +18:49:44 [ 1] [ 4] [0200] +18:49:44 [ 2] [ 16] [6213544000075512] +18:49:44 [ 3] [ 6] [010000] +18:49:44 [ 4] [ 12] [000010000000] +18:49:44 [ 7] [ 10] [0320114848] +18:49:44 [ 11] [ 6] [271308] +18:49:44 [ 12] [ 6] [184848] +18:49:44 [ 13] [ 4] [0320] +18:49:44 [ 14] [ 4] [4912] +18:49:44 [ 15] [ 4] [0320] +18:49:44 [ 18] [ 4] [6011] +18:49:44 [ 19] [ 3] [418] +18:49:44 [ 22] [ 3] [021] +18:49:44 [ 25] [ 2] [01] +18:49:44 [ 28] [ 9] [D00002000] +18:49:44 [ 32] [ 6] [180893] +18:49:44 [ 35] [ 32] [6213544000075512=491212017551641] +18:49:44 [ 37] [ 12] [507911271308] +18:49:44 [ 41] [ 8] [0102SAPA] +18:49:44 [ 42] [ 15] [999999 ] +18:49:44 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:49:44 [ 49] [ 3] [418] +18:49:44 [ 52] [ 16] [2544D311632CF08A] +18:49:44 ============================================================================ +18:49:44 + + +waiting on router queue for slot.... +18:49:44 Sending to : +18:49:44 ============================================================================ +18:49:44 ============================================================================ +18:49:44 Slot Id : <269> +18:49:44 Transaction Type : REQUEST +18:49:44 Received From : +18:49:44 ============================================================================ +18:49:44 FNo. Len. Field Value +18:49:44 ============================================================================ +18:49:44 [ 1] [ 4] [0200] +18:49:44 [ 2] [ 16] [6213544000075512] +18:49:44 [ 3] [ 6] [010000] +18:49:44 [ 4] [ 12] [000010000000] +18:49:44 [ 7] [ 10] [0320114848] +18:49:44 [ 11] [ 6] [271308] +18:49:44 [ 12] [ 6] [184848] +18:49:44 [ 13] [ 4] [0320] +18:49:44 [ 14] [ 4] [4912] +18:49:44 [ 15] [ 4] [0320] +18:49:44 [ 18] [ 4] [6011] +18:49:44 [ 19] [ 3] [418] +18:49:44 [ 22] [ 3] [021] +18:49:44 [ 25] [ 2] [01] +18:49:44 [ 28] [ 9] [D00002000] +18:49:44 [ 32] [ 6] [180893] +18:49:44 [ 35] [ 32] [6213544000075512=491212017551641] +18:49:44 [ 37] [ 12] [507911271308] +18:49:44 [ 41] [ 8] [0102SAPA] +18:49:44 [ 42] [ 15] [999999 ] +18:49:44 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:49:44 [ 49] [ 3] [418] +18:49:44 [ 52] [ 16] [1655DB807DE12E51] +18:49:44 ============================================================================ +18:49:44 + + +waiting on router queue for slot.... +18:49:44 Sending to : <0> +18:49:44 ============================================================================ +18:49:44 ============================================================================ +18:49:44 Slot Id : <269> +18:49:44 Transaction Type : RESPONSE +18:49:44 Received From : +18:49:44 ============================================================================ +18:49:44 FNo. Len. Field Value +18:49:44 ============================================================================ +18:49:44 [ 1] [ 4] [0210] +18:49:44 [ 2] [ 16] [6213544000075512] +18:49:44 [ 3] [ 6] [010000] +18:49:44 [ 4] [ 12] [000010000000] +18:49:44 [ 7] [ 10] [0320114848] +18:49:44 [ 11] [ 6] [271308] +18:49:44 [ 12] [ 6] [184848] +18:49:44 [ 13] [ 4] [0320] +18:49:44 [ 15] [ 4] [0320] +18:49:44 [ 18] [ 4] [6011] +18:49:44 [ 19] [ 3] [418] +18:49:44 [ 32] [ 6] [180893] +18:49:44 [ 35] [ 32] [6213544000075512=491212017551641] +18:49:44 [ 37] [ 12] [507911271308] +18:49:44 [ 38] [ 6] [850833] +18:49:44 [ 39] [ 2] [00] +18:49:44 [ 41] [ 8] [0102SAPA] +18:49:44 [ 49] [ 3] [418] +18:49:44 [ 54] [ 40] [0001418C0000856857200002418C000085685720] +18:49:44 ============================================================================ +18:49:44 Sending to : +18:49:44 ============================================================================ +18:49:44 + + +waiting on router queue for slot.... +18:49:46 ============================================================================ +18:49:46 Slot Id : <269> +18:49:46 Transaction Type : RESPONSE +18:49:46 Received From : +18:49:46 ============================================================================ +18:49:46 FNo. Len. Field Value +18:49:46 ============================================================================ +18:49:46 [ 1] [ 4] [0210] +18:49:46 [ 2] [ 16] [6213544000075512] +18:49:46 [ 3] [ 6] [010000] +18:49:46 [ 4] [ 12] [000010000000] +18:49:46 [ 7] [ 10] [0320114848] +18:49:46 [ 11] [ 6] [271308] +18:49:46 [ 12] [ 6] [184848] +18:49:46 [ 13] [ 4] [0320] +18:49:46 [ 15] [ 4] [0320] +18:49:46 [ 18] [ 4] [6011] +18:49:46 [ 19] [ 3] [418] +18:49:46 [ 32] [ 6] [180893] +18:49:46 [ 35] [ 32] [6213544000075512=491212017551641] +18:49:46 [ 37] [ 12] [507911271308] +18:49:46 [ 38] [ 6] [850833] +18:49:46 [ 39] [ 2] [00] +18:49:46 [ 41] [ 8] [0102SAPA] +18:49:46 [ 49] [ 3] [418] +18:49:46 [ 54] [ 40] [0001418C0000856857200002418C000085685720] +18:49:46 ============================================================================ +18:49:46 Calculate Source COMM Id = 2 +18:49:46 ============================================================================ +18:49:46 + + +waiting on router queue for slot.... +18:49:54 ============================================================================ +18:49:54 Slot Id : <225> +18:49:54 Transaction Type : REQUEST +18:49:54 Received From : +18:49:54 ============================================================================ +18:49:54 FNo. Len. Field Value +18:49:54 ============================================================================ +18:49:54 [ 1] [ 4] [0800] +18:49:54 [ 7] [ 10] [0321020143] +18:49:54 [ 11] [ 6] [190143] +18:49:54 [ 37] [ 12] [57919190143] +18:49:54 [ 70] [ 3] [301] +18:49:54 ============================================================================ +18:49:54 + + +waiting on router queue for slot.... +18:49:54 Sending to : +18:49:54 ============================================================================ +18:49:54 ============================================================================ +18:49:54 Slot Id : <225> +18:49:54 Transaction Type : RESPONSE +18:49:54 Received From : +18:49:54 ============================================================================ +18:49:54 FNo. Len. Field Value +18:49:54 ============================================================================ +18:49:54 [ 1] [ 4] [0810] +18:49:54 [ 7] [ 10] [0321020143] +18:49:54 [ 11] [ 6] [190143] +18:49:54 [ 37] [ 12] [579191901430] +18:49:54 [ 39] [ 2] [00] +18:49:54 [ 70] [ 3] [810] +18:49:54 ============================================================================ +18:49:54 Calculate Source COMM Id = 6 +18:49:54 ============================================================================ +18:49:54 + + +waiting on router queue for slot.... +18:49:57 ============================================================================ +18:49:57 Slot Id : <199> +18:49:57 Transaction Type : REQUEST +18:49:57 Received From : +18:49:57 ============================================================================ +18:49:57 FNo. Len. Field Value +18:49:57 ============================================================================ +18:49:57 [ 1] [ 4] [0800] +18:49:57 [ 7] [ 10] [0320115742] +18:49:57 [ 11] [ 6] [008113] +18:49:57 [ 37] [ 12] [57918008113] +18:49:57 [ 70] [ 3] [301] +18:49:57 ============================================================================ +18:49:57 + + +waiting on router queue for slot.... +18:49:57 Sending to : +18:49:57 ============================================================================ +18:49:57 ============================================================================ +18:49:57 Slot Id : <199> +18:49:57 Transaction Type : RESPONSE +18:49:57 Received From : +18:49:57 ============================================================================ +18:49:57 FNo. Len. Field Value +18:49:57 ============================================================================ +18:49:57 [ 1] [ 4] [0810] +18:49:57 [ 7] [ 10] [0320115742] +18:49:57 [ 11] [ 6] [008113] +18:49:57 [ 37] [ 12] [579180081130] +18:49:57 [ 39] [ 2] [00] +18:49:57 [ 70] [ 3] [810] +18:49:57 ============================================================================ +18:49:57 Calculate Source COMM Id = 1 +18:49:57 ============================================================================ +18:49:57 + + +waiting on router queue for slot.... +18:50:01 ============================================================================ +18:50:01 Slot Id : <270> +18:50:01 Transaction Type : REQUEST +18:50:01 Received From : +18:50:01 ============================================================================ +18:50:01 FNo. Len. Field Value +18:50:01 ============================================================================ +18:50:01 [ 1] [ 4] [0800] +18:50:01 [ 7] [ 10] [0320114908] +18:50:01 [ 11] [ 6] [157796] +18:50:01 [ 70] [ 3] [301] +18:50:01 ============================================================================ +18:50:01 + + +waiting on router queue for slot.... +18:50:01 Sending to : +18:50:01 ============================================================================ +18:50:01 ============================================================================ +18:50:01 Slot Id : <270> +18:50:01 Transaction Type : RESPONSE +18:50:01 Received From : +18:50:01 ============================================================================ +18:50:01 FNo. Len. Field Value +18:50:01 ============================================================================ +18:50:01 [ 1] [ 4] [0810] +18:50:01 [ 7] [ 10] [0320114908] +18:50:01 [ 11] [ 6] [157796] +18:50:01 [ 39] [ 2] [00] +18:50:01 [ 70] [ 3] [301] +18:50:01 ============================================================================ +18:50:01 Calculate Source COMM Id = 2 +18:50:01 ============================================================================ +18:50:01 + + +waiting on router queue for slot.... +18:50:05 ============================================================================ +18:50:05 Slot Id : <275> +18:50:05 Transaction Type : REQUEST +18:50:05 Received From : +18:50:05 ============================================================================ +18:50:05 FNo. Len. Field Value +18:50:05 ============================================================================ +18:50:05 [ 1] [ 4] [0800] +18:50:05 [ 2] [ 5] [02531] +18:50:05 [ 3] [ 6] [579188] +18:50:05 [ 7] [ 10] [0320115005] +18:50:05 [ 11] [ 6] [807505] +18:50:05 [ 15] [ 10] [0320115005] +18:50:05 [ 37] [ 11] [57918807505] +18:50:05 [ 70] [ 3] [001] +18:50:05 ============================================================================ +18:50:05 + + +waiting on router queue for slot.... +18:50:05 ============================================================================ +18:50:05 Slot Id : <275> +18:50:05 Transaction Type : RESPONSE +18:50:05 Received From : +18:50:05 ============================================================================ +18:50:05 FNo. Len. Field Value +18:50:05 ============================================================================ +18:50:05 [ 1] [ 4] [0810] +18:50:05 [ 7] [ 10] [0320115005] +18:50:05 [ 11] [ 6] [807505] +18:50:05 [ 15] [ 4] [0320] +18:50:05 [ 37] [ 12] [57918807505] +18:50:05 [ 39] [ 2] [00] +18:50:05 [ 70] [ 3] [001] +18:50:05 ============================================================================ +18:50:05 Sending to : +18:50:05 ============================================================================ +18:50:05 + + +waiting on router queue for slot.... +18:50:06 ============================================================================ +18:50:06 Slot Id : <240> +18:50:06 Transaction Type : REQUEST +18:50:06 Received From : +18:50:06 ============================================================================ +18:50:06 FNo. Len. Field Value +18:50:06 ============================================================================ +18:50:06 [ 1] [ 4] [0200] +18:50:06 [ 2] [ 16] [6213544002133608] +18:50:06 [ 3] [ 6] [010000] +18:50:06 [ 4] [ 12] [000100000000] +18:50:06 [ 7] [ 10] [0320184756] +18:50:06 [ 11] [ 6] [955139] +18:50:06 [ 12] [ 6] [184756] +18:50:06 [ 13] [ 4] [0320] +18:50:06 [ 15] [ 4] [0320] +18:50:06 [ 18] [ 4] [6011] +18:50:06 [ 19] [ 3] [418] +18:50:06 [ 22] [ 3] [021] +18:50:06 [ 25] [ 2] [01] +18:50:06 [ 28] [ 9] [D00002000] +18:50:06 [ 32] [ 6] [668899] +18:50:06 [ 35] [ 32] [6213544002133608=491212013360410] +18:50:06 [ 37] [ 12] [507900977537] +18:50:06 [ 41] [ 8] [03407002] +18:50:06 [ 42] [ 15] [APT ] +18:50:06 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +18:50:06 [ 49] [ 3] [418] +18:50:06 [ 52] [ 16] [43223C1A74D42BF3] +18:50:06 ============================================================================ +18:50:06 + + +waiting on router queue for slot.... +18:50:06 Sending to : +18:50:06 ============================================================================ +18:50:06 Sending to : +18:50:06 ============================================================================ +18:50:07 ============================================================================ +18:50:07 Slot Id : <240> +18:50:07 Transaction Type : REQUEST +18:50:07 Received From : +18:50:07 ============================================================================ +18:50:07 FNo. Len. Field Value +18:50:07 ============================================================================ +18:50:07 [ 1] [ 4] [0200] +18:50:07 [ 2] [ 16] [6213544002133608] +18:50:07 [ 3] [ 6] [010000] +18:50:07 [ 4] [ 12] [000100000000] +18:50:07 [ 7] [ 10] [0320184756] +18:50:07 [ 11] [ 6] [955139] +18:50:07 [ 12] [ 6] [184756] +18:50:07 [ 13] [ 4] [0320] +18:50:07 [ 15] [ 4] [0320] +18:50:07 [ 18] [ 4] [6011] +18:50:07 [ 19] [ 3] [418] +18:50:07 [ 22] [ 3] [021] +18:50:07 [ 25] [ 2] [01] +18:50:07 [ 28] [ 9] [D00002000] +18:50:07 [ 32] [ 6] [668899] +18:50:07 [ 35] [ 32] [6213544002133608=491212013360410] +18:50:07 [ 37] [ 12] [507900977537] +18:50:07 [ 41] [ 8] [03407002] +18:50:07 [ 42] [ 15] [APT ] +18:50:07 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +18:50:07 [ 49] [ 3] [418] +18:50:07 [ 52] [ 16] [43223C1A74D42BF3] +18:50:07 ============================================================================ +18:50:07 + + +waiting on router queue for slot.... +18:50:07 Sending to : +18:50:07 ============================================================================ +18:50:07 ============================================================================ +18:50:07 Slot Id : <240> +18:50:07 Transaction Type : REQUEST +18:50:07 Received From : +18:50:07 ============================================================================ +18:50:07 FNo. Len. Field Value +18:50:07 ============================================================================ +18:50:07 [ 1] [ 4] [0200] +18:50:07 [ 2] [ 16] [6213544002133608] +18:50:07 [ 3] [ 6] [010000] +18:50:07 [ 4] [ 12] [000100000000] +18:50:07 [ 7] [ 10] [0320184756] +18:50:07 [ 11] [ 6] [955139] +18:50:07 [ 12] [ 6] [184756] +18:50:07 [ 13] [ 4] [0320] +18:50:07 [ 15] [ 4] [0320] +18:50:07 [ 18] [ 4] [6011] +18:50:07 [ 19] [ 3] [418] +18:50:07 [ 22] [ 3] [021] +18:50:07 [ 25] [ 2] [01] +18:50:07 [ 28] [ 9] [D00002000] +18:50:07 [ 32] [ 6] [668899] +18:50:07 [ 35] [ 32] [6213544002133608=491212013360410] +18:50:07 [ 37] [ 12] [507900977537] +18:50:07 [ 41] [ 8] [03407002] +18:50:07 [ 42] [ 15] [APT ] +18:50:07 [ 43] [ 40] [ MUEANGNGERN XAYABOULY LA] +18:50:07 [ 49] [ 3] [418] +18:50:07 [ 52] [ 16] [927E495547BE069A] +18:50:07 ============================================================================ +18:50:07 + + +waiting on router queue for slot.... +18:50:07 Sending to : <0> +18:50:07 ============================================================================ +18:50:07 ============================================================================ +18:50:07 Slot Id : <197> +18:50:07 Transaction Type : REQUEST +18:50:07 Received From : +18:50:07 ============================================================================ +18:50:07 FNo. Len. Field Value +18:50:07 ============================================================================ +18:50:07 [ 1] [ 4] [0200] +18:50:07 [ 2] [ 16] [6213548000001345] +18:50:07 [ 3] [ 6] [012000] +18:50:07 [ 4] [ 12] [000032000000] +18:50:07 [ 7] [ 10] [0320114914] +18:50:07 [ 11] [ 6] [271312] +18:50:07 [ 12] [ 6] [184914] +18:50:07 [ 13] [ 4] [0320] +18:50:07 [ 14] [ 4] [1303] +18:50:07 [ 15] [ 4] [0320] +18:50:07 [ 18] [ 4] [6011] +18:50:07 [ 19] [ 3] [418] +18:50:07 [ 22] [ 3] [021] +18:50:07 [ 25] [ 2] [01] +18:50:07 [ 28] [ 9] [D00002000] +18:50:07 [ 32] [ 6] [180893] +18:50:07 [ 35] [ 32] [6213548000001345=130312010134736] +18:50:07 [ 37] [ 12] [507911271312] +18:50:07 [ 41] [ 8] [0115LPBR] +18:50:07 [ 42] [ 15] [999999 ] +18:50:07 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +18:50:07 [ 49] [ 3] [418] +18:50:07 [ 52] [ 16] [42B31A951AE324EA] +18:50:07 ============================================================================ +18:50:07 + + +waiting on router queue for slot.... +18:50:07 Sending to : +18:50:07 ============================================================================ +18:50:07 Sending to : +18:50:07 ============================================================================ +18:50:07 ============================================================================ +18:50:07 Slot Id : <240> +18:50:07 Transaction Type : RESPONSE +18:50:07 Received From : +18:50:07 ============================================================================ +18:50:07 FNo. Len. Field Value +18:50:07 ============================================================================ +18:50:07 [ 1] [ 4] [0210] +18:50:07 [ 2] [ 16] [6213544002133608] +18:50:07 [ 3] [ 6] [010000] +18:50:07 [ 4] [ 12] [000100000000] +18:50:07 [ 7] [ 10] [0320184756] +18:50:07 [ 11] [ 6] [955139] +18:50:07 [ 12] [ 6] [184756] +18:50:07 [ 13] [ 4] [0320] +18:50:07 [ 15] [ 4] [0320] +18:50:07 [ 18] [ 4] [6011] +18:50:07 [ 19] [ 3] [418] +18:50:07 [ 32] [ 6] [668899] +18:50:07 [ 35] [ 32] [6213544002133608=491212013360410] +18:50:07 [ 37] [ 12] [507900977537] +18:50:07 [ 38] [ 6] [987323] +18:50:07 [ 39] [ 2] [00] +18:50:07 [ 41] [ 8] [03407002] +18:50:07 [ 49] [ 3] [418] +18:50:07 [ 54] [ 40] [0001418C0006887545970002418C000688754597] +18:50:07 ============================================================================ +18:50:07 Sending to : +18:50:07 ============================================================================ +18:50:07 + + +waiting on router queue for slot.... +18:50:07 ============================================================================ +18:50:07 Slot Id : <197> +18:50:07 Transaction Type : REQUEST +18:50:07 Received From : +18:50:07 ============================================================================ +18:50:07 FNo. Len. Field Value +18:50:07 ============================================================================ +18:50:07 [ 1] [ 4] [0200] +18:50:07 [ 2] [ 16] [6213548000001345] +18:50:07 [ 3] [ 6] [012000] +18:50:07 [ 4] [ 12] [000032000000] +18:50:07 [ 7] [ 10] [0320114914] +18:50:07 [ 11] [ 6] [271312] +18:50:07 [ 12] [ 6] [184914] +18:50:07 [ 13] [ 4] [0320] +18:50:07 [ 14] [ 4] [1303] +18:50:07 [ 15] [ 4] [0320] +18:50:07 [ 18] [ 4] [6011] +18:50:07 [ 19] [ 3] [418] +18:50:07 [ 22] [ 3] [021] +18:50:07 [ 25] [ 2] [01] +18:50:07 [ 28] [ 9] [D00002000] +18:50:07 [ 32] [ 6] [180893] +18:50:07 [ 35] [ 32] [6213548000001345=130312010134736] +18:50:07 [ 37] [ 12] [507911271312] +18:50:07 [ 41] [ 8] [0115LPBR] +18:50:07 [ 42] [ 15] [999999 ] +18:50:07 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +18:50:07 [ 49] [ 3] [418] +18:50:07 [ 52] [ 16] [42B31A951AE324EA] +18:50:07 ============================================================================ +18:50:07 + + +waiting on router queue for slot.... +18:50:07 Sending to : +18:50:07 ============================================================================ +18:50:07 ============================================================================ +18:50:07 Slot Id : <197> +18:50:07 Transaction Type : REQUEST +18:50:07 Received From : +18:50:07 ============================================================================ +18:50:07 FNo. Len. Field Value +18:50:07 ============================================================================ +18:50:07 [ 1] [ 4] [0200] +18:50:07 [ 2] [ 16] [6213548000001345] +18:50:07 [ 3] [ 6] [012000] +18:50:07 [ 4] [ 12] [000032000000] +18:50:07 [ 7] [ 10] [0320114914] +18:50:07 [ 11] [ 6] [271312] +18:50:07 [ 12] [ 6] [184914] +18:50:07 [ 13] [ 4] [0320] +18:50:07 [ 14] [ 4] [1303] +18:50:07 [ 15] [ 4] [0320] +18:50:07 [ 18] [ 4] [6011] +18:50:07 [ 19] [ 3] [418] +18:50:07 [ 22] [ 3] [021] +18:50:07 [ 25] [ 2] [01] +18:50:07 [ 28] [ 9] [D00002000] +18:50:07 [ 32] [ 6] [180893] +18:50:07 [ 35] [ 32] [6213548000001345=130312010134736] +18:50:07 [ 37] [ 12] [507911271312] +18:50:07 [ 41] [ 8] [0115LPBR] +18:50:07 [ 42] [ 15] [999999 ] +18:50:07 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +18:50:07 [ 49] [ 3] [418] +18:50:07 [ 52] [ 16] [1C4CAA40F19BCFE9] +18:50:07 ============================================================================ +18:50:07 + + +waiting on router queue for slot.... +18:50:07 Sending to : <0> +18:50:07 ============================================================================ +18:50:07 ============================================================================ +18:50:07 Slot Id : <197> +18:50:07 Transaction Type : RESPONSE +18:50:07 Received From : +18:50:07 ============================================================================ +18:50:07 FNo. Len. Field Value +18:50:07 ============================================================================ +18:50:07 [ 1] [ 4] [0210] +18:50:07 [ 2] [ 16] [6213548000001345] +18:50:07 [ 3] [ 6] [012000] +18:50:07 [ 4] [ 12] [000032000000] +18:50:07 [ 7] [ 10] [0320114914] +18:50:07 [ 11] [ 6] [271312] +18:50:07 [ 12] [ 6] [184914] +18:50:07 [ 13] [ 4] [0320] +18:50:07 [ 15] [ 4] [0320] +18:50:07 [ 18] [ 4] [6011] +18:50:07 [ 19] [ 3] [418] +18:50:07 [ 22] [ 3] [021] +18:50:07 [ 32] [ 6] [180893] +18:50:07 [ 35] [ 32] [6213548000001345=130312010134736] +18:50:07 [ 37] [ 12] [507911271312] +18:50:07 [ 38] [ 6] [185002] +18:50:07 [ 39] [ 2] [75] +18:50:07 [ 41] [ 8] [0115LPBR] +18:50:07 [ 49] [ 3] [418] +18:50:07 ============================================================================ +18:50:07 Sending to : +18:50:07 ============================================================================ +18:50:07 + + +waiting on router queue for slot.... +18:50:09 ============================================================================ +18:50:09 Slot Id : <240> +18:50:09 Transaction Type : RESPONSE +18:50:09 Received From : +18:50:09 ============================================================================ +18:50:09 FNo. Len. Field Value +18:50:09 ============================================================================ +18:50:09 [ 1] [ 4] [0210] +18:50:09 [ 2] [ 16] [6213544002133608] +18:50:09 [ 3] [ 6] [010000] +18:50:09 [ 4] [ 12] [000100000000] +18:50:09 [ 7] [ 10] [0320184756] +18:50:09 [ 11] [ 6] [955139] +18:50:09 [ 12] [ 6] [184756] +18:50:09 [ 13] [ 4] [0320] +18:50:09 [ 15] [ 4] [0320] +18:50:09 [ 18] [ 4] [6011] +18:50:09 [ 19] [ 3] [418] +18:50:09 [ 32] [ 6] [668899] +18:50:09 [ 35] [ 32] [6213544002133608=491212013360410] +18:50:09 [ 37] [ 12] [507900977537] +18:50:09 [ 38] [ 6] [987323] +18:50:09 [ 39] [ 2] [00] +18:50:09 [ 41] [ 8] [03407002] +18:50:09 [ 49] [ 3] [418] +18:50:09 [ 54] [ 40] [0001418C0006887545970002418C000688754597] +18:50:09 ============================================================================ +18:50:09 Calculate Source COMM Id = 4 +18:50:09 ============================================================================ +18:50:09 + + +waiting on router queue for slot.... +18:50:10 ============================================================================ +18:50:10 Slot Id : <197> +18:50:10 Transaction Type : RESPONSE +18:50:10 Received From : +18:50:10 ============================================================================ +18:50:10 FNo. Len. Field Value +18:50:10 ============================================================================ +18:50:10 [ 1] [ 4] [0210] +18:50:10 [ 2] [ 16] [6213548000001345] +18:50:10 [ 3] [ 6] [012000] +18:50:10 [ 4] [ 12] [000032000000] +18:50:10 [ 7] [ 10] [0320114914] +18:50:10 [ 11] [ 6] [271312] +18:50:10 [ 12] [ 6] [184914] +18:50:10 [ 13] [ 4] [0320] +18:50:10 [ 15] [ 4] [0320] +18:50:10 [ 18] [ 4] [6011] +18:50:10 [ 19] [ 3] [418] +18:50:10 [ 22] [ 3] [021] +18:50:10 [ 32] [ 6] [180893] +18:50:10 [ 35] [ 32] [6213548000001345=130312010134736] +18:50:10 [ 37] [ 12] [507911271312] +18:50:10 [ 38] [ 6] [185002] +18:50:10 [ 39] [ 2] [75] +18:50:10 [ 41] [ 8] [0115LPBR] +18:50:10 [ 49] [ 3] [418] +18:50:10 ============================================================================ +18:50:10 Calculate Source COMM Id = 2 +18:50:10 ============================================================================ +18:50:10 + + +waiting on router queue for slot.... +18:50:11 ============================================================================ +18:50:11 Slot Id : <265> +18:50:11 Transaction Type : REQUEST +18:50:11 Received From : +18:50:11 ============================================================================ +18:50:11 FNo. Len. Field Value +18:50:11 ============================================================================ +18:50:11 [ 1] [ 4] [0200] +18:50:11 [ 2] [ 16] [6688990102133004] +18:50:11 [ 3] [ 6] [010000] +18:50:11 [ 4] [ 12] [000100000000] +18:50:11 [ 7] [ 10] [0320185006] +18:50:11 [ 11] [ 6] [831323] +18:50:11 [ 12] [ 6] [185006] +18:50:11 [ 13] [ 4] [0320] +18:50:11 [ 15] [ 4] [0320] +18:50:11 [ 18] [ 4] [6011] +18:50:11 [ 22] [ 3] [900] +18:50:11 [ 25] [ 2] [02] +18:50:11 [ 28] [ 9] [D00002000] +18:50:11 [ 32] [ 6] [621354] +18:50:11 [ 35] [ 37] [6688990102133004=42071231300464000000] +18:50:11 [ 37] [ 12] [507904807862] +18:50:11 [ 41] [ 8] [07001600] +18:50:11 [ 42] [ 15] [NATIVE ] +18:50:11 [ 43] [ 40] [Long District Long LAO] +18:50:11 [ 49] [ 3] [418] +18:50:11 [ 52] [ 16] [9C5EEB73C041A86E] +18:50:11 ============================================================================ +18:50:11 + + +waiting on router queue for slot.... +18:50:11 Sending to : +18:50:11 ============================================================================ +18:50:11 Sending to : +18:50:11 ============================================================================ +18:50:11 ============================================================================ +18:50:11 Slot Id : <265> +18:50:11 Transaction Type : REQUEST +18:50:11 Received From : +18:50:11 ============================================================================ +18:50:11 FNo. Len. Field Value +18:50:11 ============================================================================ +18:50:11 [ 1] [ 4] [0200] +18:50:11 [ 2] [ 16] [6688990102133004] +18:50:11 [ 3] [ 6] [010000] +18:50:11 [ 4] [ 12] [000100000000] +18:50:11 [ 7] [ 10] [0320185006] +18:50:11 [ 11] [ 6] [831323] +18:50:11 [ 12] [ 6] [185006] +18:50:11 [ 13] [ 4] [0320] +18:50:11 [ 15] [ 4] [0320] +18:50:11 [ 18] [ 4] [6011] +18:50:11 [ 22] [ 3] [900] +18:50:11 [ 25] [ 2] [02] +18:50:11 [ 28] [ 9] [D00002000] +18:50:11 [ 32] [ 6] [621354] +18:50:11 [ 35] [ 37] [6688990102133004=42071231300464000000] +18:50:11 [ 37] [ 12] [507904807862] +18:50:11 [ 41] [ 8] [07001600] +18:50:11 [ 42] [ 15] [NATIVE ] +18:50:11 [ 43] [ 40] [Long District Long LAO] +18:50:11 [ 49] [ 3] [418] +18:50:11 [ 52] [ 16] [9C5EEB73C041A86E] +18:50:11 ============================================================================ +18:50:11 + + +waiting on router queue for slot.... +18:50:11 Sending to : +18:50:11 ============================================================================ +18:50:11 ============================================================================ +18:50:11 Slot Id : <265> +18:50:11 Transaction Type : REQUEST +18:50:11 Received From : +18:50:11 ============================================================================ +18:50:11 FNo. Len. Field Value +18:50:11 ============================================================================ +18:50:11 [ 1] [ 4] [0200] +18:50:11 [ 2] [ 16] [6688990102133004] +18:50:11 [ 3] [ 6] [010000] +18:50:11 [ 4] [ 12] [000100000000] +18:50:11 [ 7] [ 10] [0320185006] +18:50:11 [ 11] [ 6] [831323] +18:50:11 [ 12] [ 6] [185006] +18:50:11 [ 13] [ 4] [0320] +18:50:11 [ 15] [ 4] [0320] +18:50:11 [ 18] [ 4] [6011] +18:50:11 [ 22] [ 3] [900] +18:50:11 [ 25] [ 2] [02] +18:50:11 [ 28] [ 9] [D00002000] +18:50:11 [ 32] [ 6] [621354] +18:50:11 [ 35] [ 37] [6688990102133004=42071231300464000000] +18:50:11 [ 37] [ 12] [507904807862] +18:50:11 [ 41] [ 8] [07001600] +18:50:11 [ 42] [ 15] [NATIVE ] +18:50:11 [ 43] [ 40] [Long District Long LAO] +18:50:11 [ 49] [ 3] [418] +18:50:11 [ 52] [ 16] [E8266F44B41D9C56] +18:50:11 ============================================================================ +18:50:11 + + +waiting on router queue for slot.... +18:50:11 Sending to : <4> +18:50:11 ============================================================================ +18:50:13 ============================================================================ +18:50:13 Slot Id : <265> +18:50:13 Transaction Type : RESPONSE +18:50:13 Received From : +18:50:13 ============================================================================ +18:50:13 FNo. Len. Field Value +18:50:13 ============================================================================ +18:50:13 [ 1] [ 4] [0210] +18:50:13 [ 2] [ 16] [6688990102133004] +18:50:13 [ 3] [ 6] [010000] +18:50:13 [ 4] [ 12] [000100000000] +18:50:13 [ 11] [ 6] [831323] +18:50:13 [ 12] [ 6] [185006] +18:50:13 [ 15] [ 4] [0320] +18:50:13 [ 18] [ 4] [6011] +18:50:13 [ 32] [ 6] [621354] +18:50:13 [ 35] [ 37] [6688990102133004=42071231300464000000] +18:50:13 [ 37] [ 12] [507904807862] +18:50:13 [ 38] [ 6] [132042] +18:50:13 [ 39] [ 2] [00] +18:50:13 [ 41] [ 8] [07001600] +18:50:13 [ 49] [ 3] [418] +18:50:13 [ 54] [ 20] [0002418C000123592292] +18:50:13 ============================================================================ +18:50:13 Sending to : +18:50:13 ============================================================================ +18:50:13 + + +waiting on router queue for slot.... +18:50:13 ============================================================================ +18:50:13 Slot Id : <218> +18:50:13 Transaction Type : REQUEST +18:50:13 Received From : +18:50:13 ============================================================================ +18:50:13 FNo. Len. Field Value +18:50:13 ============================================================================ +18:50:13 [ 1] [ 4] [0200] +18:50:13 [ 2] [ 16] [6213545000229611] +18:50:13 [ 3] [ 6] [010000] +18:50:13 [ 4] [ 12] [000100000000] +18:50:13 [ 7] [ 10] [0320184803] +18:50:13 [ 11] [ 6] [955142] +18:50:13 [ 12] [ 6] [184803] +18:50:13 [ 13] [ 4] [0320] +18:50:13 [ 15] [ 4] [0320] +18:50:13 [ 18] [ 4] [6011] +18:50:13 [ 19] [ 3] [418] +18:50:13 [ 22] [ 3] [021] +18:50:13 [ 25] [ 2] [01] +18:50:13 [ 28] [ 9] [D00002000] +18:50:13 [ 32] [ 6] [668899] +18:50:13 [ 35] [ 32] [6213545000229611=491212012961625] +18:50:13 [ 37] [ 12] [507902235455] +18:50:13 [ 41] [ 8] [03003004] +18:50:13 [ 42] [ 15] [APT ] +18:50:13 [ 43] [ 40] [ NAMTHA MARKET MEAUNG NUMN] +18:50:13 [ 49] [ 3] [418] +18:50:13 [ 52] [ 16] [E0B33B0ECDBD1498] +18:50:13 ============================================================================ +18:50:13 + + +waiting on router queue for slot.... +18:50:13 Sending to : +18:50:13 ============================================================================ +18:50:13 Sending to : +18:50:13 ============================================================================ +18:50:14 ============================================================================ +18:50:14 Slot Id : <218> +18:50:14 Transaction Type : REQUEST +18:50:14 Received From : +18:50:14 ============================================================================ +18:50:14 FNo. Len. Field Value +18:50:14 ============================================================================ +18:50:14 [ 1] [ 4] [0200] +18:50:14 [ 2] [ 16] [6213545000229611] +18:50:14 [ 3] [ 6] [010000] +18:50:14 [ 4] [ 12] [000100000000] +18:50:14 [ 7] [ 10] [0320184803] +18:50:14 [ 11] [ 6] [955142] +18:50:14 [ 12] [ 6] [184803] +18:50:14 [ 13] [ 4] [0320] +18:50:14 [ 15] [ 4] [0320] +18:50:14 [ 18] [ 4] [6011] +18:50:14 [ 19] [ 3] [418] +18:50:14 [ 22] [ 3] [021] +18:50:14 [ 25] [ 2] [01] +18:50:14 [ 28] [ 9] [D00002000] +18:50:14 [ 32] [ 6] [668899] +18:50:14 [ 35] [ 32] [6213545000229611=491212012961625] +18:50:14 [ 37] [ 12] [507902235455] +18:50:14 [ 41] [ 8] [03003004] +18:50:14 [ 42] [ 15] [APT ] +18:50:14 [ 43] [ 40] [ NAMTHA MARKET MEAUNG NUMN] +18:50:14 [ 49] [ 3] [418] +18:50:14 [ 52] [ 16] [E0B33B0ECDBD1498] +18:50:14 ============================================================================ +18:50:14 + + +waiting on router queue for slot.... +18:50:14 Sending to : +18:50:14 ============================================================================ +18:50:14 ============================================================================ +18:50:14 Slot Id : <218> +18:50:14 Transaction Type : REQUEST +18:50:14 Received From : +18:50:14 ============================================================================ +18:50:14 FNo. Len. Field Value +18:50:14 ============================================================================ +18:50:14 [ 1] [ 4] [0200] +18:50:14 [ 2] [ 16] [6213545000229611] +18:50:14 [ 3] [ 6] [010000] +18:50:14 [ 4] [ 12] [000100000000] +18:50:14 [ 7] [ 10] [0320184803] +18:50:14 [ 11] [ 6] [955142] +18:50:14 [ 12] [ 6] [184803] +18:50:14 [ 13] [ 4] [0320] +18:50:14 [ 15] [ 4] [0320] +18:50:14 [ 18] [ 4] [6011] +18:50:14 [ 19] [ 3] [418] +18:50:14 [ 22] [ 3] [021] +18:50:14 [ 25] [ 2] [01] +18:50:14 [ 28] [ 9] [D00002000] +18:50:14 [ 32] [ 6] [668899] +18:50:14 [ 35] [ 32] [6213545000229611=491212012961625] +18:50:14 [ 37] [ 12] [507902235455] +18:50:14 [ 41] [ 8] [03003004] +18:50:14 [ 42] [ 15] [APT ] +18:50:14 [ 43] [ 40] [ NAMTHA MARKET MEAUNG NUMN] +18:50:14 [ 49] [ 3] [418] +18:50:14 [ 52] [ 16] [921A7DF8CAD4C4FD] +18:50:14 ============================================================================ +18:50:14 + + +waiting on router queue for slot.... +18:50:14 Sending to : <0> +18:50:14 ============================================================================ +18:50:14 ============================================================================ +18:50:14 Slot Id : <218> +18:50:14 Transaction Type : RESPONSE +18:50:14 Received From : +18:50:14 ============================================================================ +18:50:14 FNo. Len. Field Value +18:50:14 ============================================================================ +18:50:14 [ 1] [ 4] [0210] +18:50:14 [ 2] [ 16] [6213545000229611] +18:50:14 [ 3] [ 6] [010000] +18:50:14 [ 4] [ 12] [000100000000] +18:50:14 [ 7] [ 10] [0320184803] +18:50:14 [ 11] [ 6] [955142] +18:50:14 [ 12] [ 6] [184803] +18:50:14 [ 13] [ 4] [0320] +18:50:14 [ 15] [ 4] [0320] +18:50:14 [ 18] [ 4] [6011] +18:50:14 [ 19] [ 3] [418] +18:50:14 [ 32] [ 6] [668899] +18:50:14 [ 35] [ 32] [6213545000229611=491212012961625] +18:50:14 [ 37] [ 12] [507902235455] +18:50:14 [ 38] [ 6] [872364] +18:50:14 [ 39] [ 2] [00] +18:50:14 [ 41] [ 8] [03003004] +18:50:14 [ 49] [ 3] [418] +18:50:14 [ 54] [ 40] [0001418C0000618576250002418C000061857625] +18:50:14 ============================================================================ +18:50:14 Sending to : +18:50:14 ============================================================================ +18:50:14 + + +waiting on router queue for slot.... +18:50:14 ============================================================================ +18:50:14 Slot Id : <265> +18:50:14 Transaction Type : RESPONSE +18:50:14 Received From : +18:50:14 ============================================================================ +18:50:14 FNo. Len. Field Value +18:50:14 ============================================================================ +18:50:14 [ 1] [ 4] [0210] +18:50:14 [ 2] [ 16] [6688990102133004] +18:50:14 [ 3] [ 6] [010000] +18:50:14 [ 4] [ 12] [000100000000] +18:50:14 [ 11] [ 6] [831323] +18:50:14 [ 12] [ 6] [185006] +18:50:14 [ 15] [ 4] [0320] +18:50:14 [ 18] [ 4] [6011] +18:50:14 [ 32] [ 6] [621354] +18:50:14 [ 35] [ 37] [6688990102133004=42071231300464000000] +18:50:14 [ 37] [ 12] [507904807862] +18:50:14 [ 38] [ 6] [132042] +18:50:14 [ 39] [ 2] [00] +18:50:14 [ 41] [ 8] [07001600] +18:50:14 [ 49] [ 3] [418] +18:50:14 [ 54] [ 20] [0002418C000123592292] +18:50:14 ============================================================================ +18:50:14 Calculate Source COMM Id = 0 +18:50:14 ============================================================================ +18:50:14 + + +waiting on router queue for slot.... +18:50:16 ============================================================================ +18:50:16 Slot Id : <218> +18:50:16 Transaction Type : RESPONSE +18:50:16 Received From : +18:50:16 ============================================================================ +18:50:16 FNo. Len. Field Value +18:50:16 ============================================================================ +18:50:16 [ 1] [ 4] [0210] +18:50:16 [ 2] [ 16] [6213545000229611] +18:50:16 [ 3] [ 6] [010000] +18:50:16 [ 4] [ 12] [000100000000] +18:50:16 [ 7] [ 10] [0320184803] +18:50:16 [ 11] [ 6] [955142] +18:50:16 [ 12] [ 6] [184803] +18:50:16 [ 13] [ 4] [0320] +18:50:16 [ 15] [ 4] [0320] +18:50:16 [ 18] [ 4] [6011] +18:50:16 [ 19] [ 3] [418] +18:50:16 [ 32] [ 6] [668899] +18:50:16 [ 35] [ 32] [6213545000229611=491212012961625] +18:50:16 [ 37] [ 12] [507902235455] +18:50:16 [ 38] [ 6] [872364] +18:50:16 [ 39] [ 2] [00] +18:50:16 [ 41] [ 8] [03003004] +18:50:16 [ 49] [ 3] [418] +18:50:16 [ 54] [ 40] [0001418C0000618576250002418C000061857625] +18:50:16 ============================================================================ +18:50:16 Calculate Source COMM Id = 4 +18:50:16 ============================================================================ +18:50:16 + + +waiting on router queue for slot.... +18:50:23 ============================================================================ +18:50:23 Slot Id : <247> +18:50:23 Transaction Type : REQUEST +18:50:23 Received From : +18:50:23 ============================================================================ +18:50:23 FNo. Len. Field Value +18:50:23 ============================================================================ +18:50:23 [ 1] [ 4] [0800] +18:50:23 [ 7] [ 10] [0320114930] +18:50:23 [ 11] [ 6] [157797] +18:50:23 [ 70] [ 3] [301] +18:50:23 ============================================================================ +18:50:23 + + +waiting on router queue for slot.... +18:50:23 Sending to : +18:50:23 ============================================================================ +18:50:23 ============================================================================ +18:50:23 Slot Id : <247> +18:50:23 Transaction Type : RESPONSE +18:50:23 Received From : +18:50:23 ============================================================================ +18:50:23 FNo. Len. Field Value +18:50:23 ============================================================================ +18:50:23 [ 1] [ 4] [0810] +18:50:23 [ 7] [ 10] [0320114930] +18:50:23 [ 11] [ 6] [157797] +18:50:23 [ 39] [ 2] [00] +18:50:23 [ 70] [ 3] [301] +18:50:23 ============================================================================ +18:50:23 Calculate Source COMM Id = 2 +18:50:23 ============================================================================ +18:50:23 + + +waiting on router queue for slot.... +18:50:24 ============================================================================ +18:50:24 Slot Id : <256> +18:50:24 Transaction Type : REQUEST +18:50:24 Received From : +18:50:24 ============================================================================ +18:50:24 FNo. Len. Field Value +18:50:24 ============================================================================ +18:50:24 [ 1] [ 4] [0200] +18:50:24 [ 2] [ 16] [1808930300015518] +18:50:24 [ 3] [ 6] [011000] +18:50:24 [ 4] [ 12] [000020000000] +18:50:24 [ 7] [ 10] [0320185019] +18:50:24 [ 11] [ 6] [831364] +18:50:24 [ 12] [ 6] [185019] +18:50:24 [ 13] [ 4] [0320] +18:50:24 [ 15] [ 4] [0320] +18:50:24 [ 18] [ 4] [6011] +18:50:24 [ 22] [ 3] [900] +18:50:24 [ 25] [ 2] [02] +18:50:24 [ 28] [ 9] [D00002000] +18:50:24 [ 32] [ 6] [621354] +18:50:24 [ 35] [ 27] [1808930300015518=1803500992] +18:50:24 [ 37] [ 12] [507904898689] +18:50:24 [ 41] [ 8] [01012200] +18:50:24 [ 42] [ 15] [NATIVE ] +18:50:24 [ 43] [ 40] [Technical School Phonhong LAO] +18:50:24 [ 49] [ 3] [418] +18:50:24 [ 52] [ 16] [67FBE219C7A61FBB] +18:50:24 ============================================================================ +18:50:24 + + +waiting on router queue for slot.... +18:50:24 Sending to : +18:50:24 ============================================================================ +18:50:24 Sending to : +18:50:24 ============================================================================ +18:50:24 ============================================================================ +18:50:24 Slot Id : <256> +18:50:24 Transaction Type : REQUEST +18:50:24 Received From : +18:50:24 ============================================================================ +18:50:24 FNo. Len. Field Value +18:50:24 ============================================================================ +18:50:24 [ 1] [ 4] [0200] +18:50:24 [ 2] [ 16] [1808930300015518] +18:50:24 [ 3] [ 6] [011000] +18:50:24 [ 4] [ 12] [000020000000] +18:50:24 [ 7] [ 10] [0320185019] +18:50:24 [ 11] [ 6] [831364] +18:50:24 [ 12] [ 6] [185019] +18:50:24 [ 13] [ 4] [0320] +18:50:24 [ 15] [ 4] [0320] +18:50:24 [ 18] [ 4] [6011] +18:50:24 [ 22] [ 3] [900] +18:50:24 [ 25] [ 2] [02] +18:50:24 [ 28] [ 9] [D00002000] +18:50:24 [ 32] [ 6] [621354] +18:50:24 [ 35] [ 27] [1808930300015518=1803500992] +18:50:24 [ 37] [ 12] [507904898689] +18:50:24 [ 41] [ 8] [01012200] +18:50:24 [ 42] [ 15] [NATIVE ] +18:50:24 [ 43] [ 40] [Technical School Phonhong LAO] +18:50:24 [ 49] [ 3] [418] +18:50:24 [ 52] [ 16] [67FBE219C7A61FBB] +18:50:24 ============================================================================ +18:50:24 + + +waiting on router queue for slot.... +18:50:24 Sending to : +18:50:24 ============================================================================ +18:50:24 ============================================================================ +18:50:24 Slot Id : <256> +18:50:24 Transaction Type : REQUEST +18:50:24 Received From : +18:50:24 ============================================================================ +18:50:24 FNo. Len. Field Value +18:50:24 ============================================================================ +18:50:24 [ 1] [ 4] [0200] +18:50:24 [ 2] [ 16] [1808930300015518] +18:50:24 [ 3] [ 6] [011000] +18:50:24 [ 4] [ 12] [000020000000] +18:50:24 [ 7] [ 10] [0320185019] +18:50:24 [ 11] [ 6] [831364] +18:50:24 [ 12] [ 6] [185019] +18:50:24 [ 13] [ 4] [0320] +18:50:24 [ 15] [ 4] [0320] +18:50:24 [ 18] [ 4] [6011] +18:50:24 [ 22] [ 3] [900] +18:50:24 [ 25] [ 2] [02] +18:50:24 [ 28] [ 9] [D00002000] +18:50:24 [ 32] [ 6] [621354] +18:50:24 [ 35] [ 27] [1808930300015518=1803500992] +18:50:24 [ 37] [ 12] [507904898689] +18:50:24 [ 41] [ 8] [01012200] +18:50:24 [ 42] [ 15] [NATIVE ] +18:50:24 [ 43] [ 40] [Technical School Phonhong LAO] +18:50:24 [ 49] [ 3] [418] +18:50:24 [ 52] [ 16] [9AF614E6C5FAAD9A] +18:50:24 ============================================================================ +18:50:24 + + +waiting on router queue for slot.... +18:50:24 Sending to : <2> +18:50:24 ============================================================================ +18:50:30 ============================================================================ +18:50:30 Slot Id : <256> +18:50:30 Transaction Type : RESPONSE +18:50:30 Received From : +18:50:30 ============================================================================ +18:50:30 FNo. Len. Field Value +18:50:30 ============================================================================ +18:50:30 [ 1] [ 4] [0210] +18:50:30 [ 2] [ 16] [1808930300015518] +18:50:30 [ 3] [ 6] [011000] +18:50:30 [ 4] [ 12] [000020000000] +18:50:30 [ 6] [ 12] [000020000000] +18:50:30 [ 7] [ 10] [0320185019] +18:50:30 [ 11] [ 6] [831364] +18:50:30 [ 12] [ 6] [185019] +18:50:30 [ 13] [ 4] [0320] +18:50:30 [ 18] [ 4] [6011] +18:50:30 [ 19] [ 3] [418] +18:50:30 [ 22] [ 3] [021] +18:50:30 [ 32] [ 6] [621354] +18:50:30 [ 35] [ 27] [1808930300015518=1803500992] +18:50:30 [ 37] [ 12] [507904898689] +18:50:30 [ 38] [ 6] [831364] +18:50:30 [ 39] [ 2] [00] +18:50:30 [ 41] [ 8] [01012200] +18:50:30 [ 49] [ 3] [418] +18:50:30 [ 52] [ 16] [9AF614E6C5FAAD9A] +18:50:30 [ 54] [ 20] [1001418C000363893800] +18:50:30 ============================================================================ +18:50:30 Sending to : +18:50:30 ============================================================================ +18:50:30 + + +waiting on router queue for slot.... +18:50:32 ============================================================================ +18:50:32 Slot Id : <256> +18:50:32 Transaction Type : RESPONSE +18:50:32 Received From : +18:50:32 ============================================================================ +18:50:32 FNo. Len. Field Value +18:50:32 ============================================================================ +18:50:32 [ 1] [ 4] [0210] +18:50:32 [ 2] [ 16] [1808930300015518] +18:50:32 [ 3] [ 6] [011000] +18:50:32 [ 4] [ 12] [000020000000] +18:50:32 [ 6] [ 12] [000020000000] +18:50:32 [ 7] [ 10] [0320185019] +18:50:32 [ 11] [ 6] [831364] +18:50:32 [ 12] [ 6] [185019] +18:50:32 [ 13] [ 4] [0320] +18:50:32 [ 18] [ 4] [6011] +18:50:32 [ 19] [ 3] [418] +18:50:32 [ 22] [ 3] [021] +18:50:32 [ 32] [ 6] [621354] +18:50:32 [ 35] [ 27] [1808930300015518=1803500992] +18:50:32 [ 37] [ 12] [507904898689] +18:50:32 [ 38] [ 6] [831364] +18:50:32 [ 39] [ 2] [00] +18:50:32 [ 41] [ 8] [01012200] +18:50:32 [ 49] [ 3] [418] +18:50:32 [ 52] [ 16] [9AF614E6C5FAAD9A] +18:50:32 [ 54] [ 20] [1001418C000363893800] +18:50:32 ============================================================================ +18:50:32 Calculate Source COMM Id = 0 +18:50:32 ============================================================================ +18:50:32 + + +waiting on router queue for slot.... +18:50:35 ============================================================================ +18:50:35 Slot Id : <228> +18:50:35 Transaction Type : REQUEST +18:50:35 Received From : +18:50:35 ============================================================================ +18:50:35 FNo. Len. Field Value +18:50:35 ============================================================================ +18:50:35 [ 1] [ 4] [0200] +18:50:35 [ 2] [ 16] [1808930200040400] +18:50:35 [ 3] [ 6] [011000] +18:50:35 [ 4] [ 12] [000050000000] +18:50:35 [ 7] [ 10] [0320185030] +18:50:35 [ 11] [ 6] [831396] +18:50:35 [ 12] [ 6] [185030] +18:50:35 [ 13] [ 4] [0320] +18:50:35 [ 15] [ 4] [0320] +18:50:35 [ 18] [ 4] [6011] +18:50:35 [ 22] [ 3] [900] +18:50:35 [ 25] [ 2] [02] +18:50:35 [ 28] [ 9] [D00002000] +18:50:35 [ 32] [ 6] [621354] +18:50:35 [ 35] [ 27] [1808930200040400=1803500959] +18:50:35 [ 37] [ 12] [507903684173] +18:50:35 [ 41] [ 8] [01008800] +18:50:35 [ 42] [ 15] [NATIVE ] +18:50:35 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +18:50:35 [ 49] [ 3] [418] +18:50:35 [ 52] [ 16] [34AA1513BBA2436B] +18:50:35 ============================================================================ +18:50:35 + + +waiting on router queue for slot.... +18:50:35 Sending to : +18:50:35 ============================================================================ +18:50:35 Sending to : +18:50:35 ============================================================================ +18:50:35 ============================================================================ +18:50:35 Slot Id : <228> +18:50:35 Transaction Type : REQUEST +18:50:35 Received From : +18:50:35 ============================================================================ +18:50:35 FNo. Len. Field Value +18:50:35 ============================================================================ +18:50:35 [ 1] [ 4] [0200] +18:50:35 [ 2] [ 16] [1808930200040400] +18:50:35 [ 3] [ 6] [011000] +18:50:35 [ 4] [ 12] [000050000000] +18:50:35 [ 7] [ 10] [0320185030] +18:50:35 [ 11] [ 6] [831396] +18:50:35 [ 12] [ 6] [185030] +18:50:35 [ 13] [ 4] [0320] +18:50:35 [ 15] [ 4] [0320] +18:50:35 [ 18] [ 4] [6011] +18:50:35 [ 22] [ 3] [900] +18:50:35 [ 25] [ 2] [02] +18:50:35 [ 28] [ 9] [D00002000] +18:50:35 [ 32] [ 6] [621354] +18:50:35 [ 35] [ 27] [1808930200040400=1803500959] +18:50:35 [ 37] [ 12] [507903684173] +18:50:35 [ 41] [ 8] [01008800] +18:50:35 [ 42] [ 15] [NATIVE ] +18:50:35 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +18:50:35 [ 49] [ 3] [418] +18:50:35 [ 52] [ 16] [34AA1513BBA2436B] +18:50:35 ============================================================================ +18:50:35 + + +waiting on router queue for slot.... +18:50:35 Sending to : +18:50:35 ============================================================================ +18:50:35 ============================================================================ +18:50:35 Slot Id : <228> +18:50:35 Transaction Type : REQUEST +18:50:35 Received From : +18:50:35 ============================================================================ +18:50:35 FNo. Len. Field Value +18:50:35 ============================================================================ +18:50:35 [ 1] [ 4] [0200] +18:50:35 [ 2] [ 16] [1808930200040400] +18:50:35 [ 3] [ 6] [011000] +18:50:35 [ 4] [ 12] [000050000000] +18:50:35 [ 7] [ 10] [0320185030] +18:50:35 [ 11] [ 6] [831396] +18:50:35 [ 12] [ 6] [185030] +18:50:35 [ 13] [ 4] [0320] +18:50:35 [ 15] [ 4] [0320] +18:50:35 [ 18] [ 4] [6011] +18:50:35 [ 22] [ 3] [900] +18:50:35 [ 25] [ 2] [02] +18:50:35 [ 28] [ 9] [D00002000] +18:50:35 [ 32] [ 6] [621354] +18:50:35 [ 35] [ 27] [1808930200040400=1803500959] +18:50:35 [ 37] [ 12] [507903684173] +18:50:35 [ 41] [ 8] [01008800] +18:50:35 [ 42] [ 15] [NATIVE ] +18:50:35 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +18:50:35 [ 49] [ 3] [418] +18:50:35 [ 52] [ 16] [F8AEDEBC62348506] +18:50:35 ============================================================================ +18:50:35 + + +waiting on router queue for slot.... +18:50:35 Sending to : <2> +18:50:35 ============================================================================ +18:50:39 ============================================================================ +18:50:39 Slot Id : <228> +18:50:39 Transaction Type : RESPONSE +18:50:39 Received From : +18:50:39 ============================================================================ +18:50:39 FNo. Len. Field Value +18:50:39 ============================================================================ +18:50:39 [ 1] [ 4] [0210] +18:50:39 [ 2] [ 16] [1808930200040400] +18:50:39 [ 3] [ 6] [011000] +18:50:39 [ 4] [ 12] [000050000000] +18:50:39 [ 6] [ 12] [000050000000] +18:50:39 [ 7] [ 10] [0320185030] +18:50:39 [ 11] [ 6] [831396] +18:50:39 [ 12] [ 6] [185030] +18:50:39 [ 13] [ 4] [0320] +18:50:39 [ 18] [ 4] [6011] +18:50:39 [ 19] [ 3] [418] +18:50:39 [ 22] [ 3] [021] +18:50:39 [ 32] [ 6] [621354] +18:50:39 [ 35] [ 27] [1808930200040400=1803500959] +18:50:39 [ 37] [ 12] [507903684173] +18:50:39 [ 38] [ 6] [831396] +18:50:39 [ 39] [ 2] [00] +18:50:39 [ 41] [ 8] [01008800] +18:50:39 [ 49] [ 3] [418] +18:50:39 [ 52] [ 16] [F8AEDEBC62348506] +18:50:39 [ 54] [ 20] [1001418C000556225000] +18:50:39 ============================================================================ +18:50:39 Sending to : +18:50:39 ============================================================================ +18:50:39 + + +waiting on router queue for slot.... +18:50:41 ============================================================================ +18:50:41 Slot Id : <228> +18:50:41 Transaction Type : RESPONSE +18:50:41 Received From : +18:50:41 ============================================================================ +18:50:41 FNo. Len. Field Value +18:50:41 ============================================================================ +18:50:41 [ 1] [ 4] [0210] +18:50:41 [ 2] [ 16] [1808930200040400] +18:50:41 [ 3] [ 6] [011000] +18:50:41 [ 4] [ 12] [000050000000] +18:50:41 [ 6] [ 12] [000050000000] +18:50:41 [ 7] [ 10] [0320185030] +18:50:41 [ 11] [ 6] [831396] +18:50:41 [ 12] [ 6] [185030] +18:50:41 [ 13] [ 4] [0320] +18:50:41 [ 18] [ 4] [6011] +18:50:41 [ 19] [ 3] [418] +18:50:41 [ 22] [ 3] [021] +18:50:41 [ 32] [ 6] [621354] +18:50:41 [ 35] [ 27] [1808930200040400=1803500959] +18:50:41 [ 37] [ 12] [507903684173] +18:50:41 [ 38] [ 6] [831396] +18:50:41 [ 39] [ 2] [00] +18:50:41 [ 41] [ 8] [01008800] +18:50:41 [ 49] [ 3] [418] +18:50:41 [ 52] [ 16] [F8AEDEBC62348506] +18:50:41 [ 54] [ 20] [1001418C000556225000] +18:50:41 ============================================================================ +18:50:41 Calculate Source COMM Id = 0 +18:50:41 ============================================================================ +18:50:41 + + +waiting on router queue for slot.... +18:50:45 ============================================================================ +18:50:45 Slot Id : <274> +18:50:45 Transaction Type : REQUEST +18:50:45 Received From : +18:50:45 ============================================================================ +18:50:45 FNo. Len. Field Value +18:50:45 ============================================================================ +18:50:45 [ 1] [ 4] [0200] +18:50:45 [ 2] [ 16] [6213544001858015] +18:50:45 [ 3] [ 6] [010000] +18:50:45 [ 4] [ 12] [000010000000] +18:50:45 [ 7] [ 10] [0320114951] +18:50:45 [ 11] [ 6] [271314] +18:50:45 [ 12] [ 6] [184951] +18:50:45 [ 13] [ 4] [0320] +18:50:45 [ 14] [ 4] [4912] +18:50:45 [ 15] [ 4] [0320] +18:50:45 [ 18] [ 4] [6011] +18:50:45 [ 19] [ 3] [418] +18:50:45 [ 22] [ 3] [021] +18:50:45 [ 25] [ 2] [01] +18:50:45 [ 28] [ 9] [D00002000] +18:50:45 [ 32] [ 6] [180893] +18:50:45 [ 35] [ 32] [6213544001858015=491212015801214] +18:50:45 [ 37] [ 12] [507911271314] +18:50:45 [ 41] [ 8] [0102SAPA] +18:50:45 [ 42] [ 15] [999999 ] +18:50:45 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:50:45 [ 49] [ 3] [418] +18:50:45 [ 52] [ 16] [68132AB600269B66] +18:50:45 ============================================================================ +18:50:45 + + +waiting on router queue for slot.... +18:50:45 Sending to : +18:50:45 ============================================================================ +18:50:45 Sending to : +18:50:45 ============================================================================ +18:50:45 ============================================================================ +18:50:45 Slot Id : <274> +18:50:45 Transaction Type : REQUEST +18:50:45 Received From : +18:50:45 ============================================================================ +18:50:45 FNo. Len. Field Value +18:50:45 ============================================================================ +18:50:45 [ 1] [ 4] [0200] +18:50:45 [ 2] [ 16] [6213544001858015] +18:50:45 [ 3] [ 6] [010000] +18:50:45 [ 4] [ 12] [000010000000] +18:50:45 [ 7] [ 10] [0320114951] +18:50:45 [ 11] [ 6] [271314] +18:50:45 [ 12] [ 6] [184951] +18:50:45 [ 13] [ 4] [0320] +18:50:45 [ 14] [ 4] [4912] +18:50:45 [ 15] [ 4] [0320] +18:50:45 [ 18] [ 4] [6011] +18:50:45 [ 19] [ 3] [418] +18:50:45 [ 22] [ 3] [021] +18:50:45 [ 25] [ 2] [01] +18:50:45 [ 28] [ 9] [D00002000] +18:50:45 [ 32] [ 6] [180893] +18:50:45 [ 35] [ 32] [6213544001858015=491212015801214] +18:50:45 [ 37] [ 12] [507911271314] +18:50:45 [ 41] [ 8] [0102SAPA] +18:50:45 [ 42] [ 15] [999999 ] +18:50:45 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:50:45 [ 49] [ 3] [418] +18:50:45 [ 52] [ 16] [68132AB600269B66] +18:50:45 ============================================================================ +18:50:45 + + +waiting on router queue for slot.... +18:50:45 Sending to : +18:50:45 ============================================================================ +18:50:45 ============================================================================ +18:50:45 Slot Id : <274> +18:50:45 Transaction Type : REQUEST +18:50:45 Received From : +18:50:45 ============================================================================ +18:50:45 FNo. Len. Field Value +18:50:45 ============================================================================ +18:50:45 [ 1] [ 4] [0200] +18:50:45 [ 2] [ 16] [6213544001858015] +18:50:45 [ 3] [ 6] [010000] +18:50:45 [ 4] [ 12] [000010000000] +18:50:45 [ 7] [ 10] [0320114951] +18:50:45 [ 11] [ 6] [271314] +18:50:45 [ 12] [ 6] [184951] +18:50:45 [ 13] [ 4] [0320] +18:50:45 [ 14] [ 4] [4912] +18:50:45 [ 15] [ 4] [0320] +18:50:45 [ 18] [ 4] [6011] +18:50:45 [ 19] [ 3] [418] +18:50:45 [ 22] [ 3] [021] +18:50:45 [ 25] [ 2] [01] +18:50:45 [ 28] [ 9] [D00002000] +18:50:45 [ 32] [ 6] [180893] +18:50:45 [ 35] [ 32] [6213544001858015=491212015801214] +18:50:45 [ 37] [ 12] [507911271314] +18:50:45 [ 41] [ 8] [0102SAPA] +18:50:45 [ 42] [ 15] [999999 ] +18:50:45 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:50:45 [ 49] [ 3] [418] +18:50:45 [ 52] [ 16] [8C6DA420E42FC4D2] +18:50:45 ============================================================================ +18:50:45 + + +waiting on router queue for slot.... +18:50:45 Sending to : <0> +18:50:45 ============================================================================ +18:50:46 ============================================================================ +18:50:46 Slot Id : <274> +18:50:46 Transaction Type : RESPONSE +18:50:46 Received From : +18:50:46 ============================================================================ +18:50:46 FNo. Len. Field Value +18:50:46 ============================================================================ +18:50:46 [ 1] [ 4] [0210] +18:50:46 [ 2] [ 16] [6213544001858015] +18:50:46 [ 3] [ 6] [010000] +18:50:46 [ 4] [ 12] [000010000000] +18:50:46 [ 7] [ 10] [0320114951] +18:50:46 [ 11] [ 6] [271314] +18:50:46 [ 12] [ 6] [184951] +18:50:46 [ 13] [ 4] [0320] +18:50:46 [ 15] [ 4] [0320] +18:50:46 [ 18] [ 4] [6011] +18:50:46 [ 19] [ 3] [418] +18:50:46 [ 32] [ 6] [180893] +18:50:46 [ 35] [ 32] [6213544001858015=491212015801214] +18:50:46 [ 37] [ 12] [507911271314] +18:50:46 [ 38] [ 6] [747195] +18:50:46 [ 39] [ 2] [00] +18:50:46 [ 41] [ 8] [0102SAPA] +18:50:46 [ 49] [ 3] [418] +18:50:46 [ 54] [ 40] [0001418C0000089979220002418C000008997922] +18:50:46 ============================================================================ +18:50:46 Sending to : +18:50:46 ============================================================================ +18:50:46 + + +waiting on router queue for slot.... +18:50:47 ============================================================================ +18:50:47 Slot Id : <274> +18:50:47 Transaction Type : RESPONSE +18:50:47 Received From : +18:50:47 ============================================================================ +18:50:47 FNo. Len. Field Value +18:50:47 ============================================================================ +18:50:47 [ 1] [ 4] [0210] +18:50:47 [ 2] [ 16] [6213544001858015] +18:50:47 [ 3] [ 6] [010000] +18:50:47 [ 4] [ 12] [000010000000] +18:50:47 [ 7] [ 10] [0320114951] +18:50:47 [ 11] [ 6] [271314] +18:50:47 [ 12] [ 6] [184951] +18:50:47 [ 13] [ 4] [0320] +18:50:47 [ 15] [ 4] [0320] +18:50:47 [ 18] [ 4] [6011] +18:50:47 [ 19] [ 3] [418] +18:50:47 [ 32] [ 6] [180893] +18:50:47 [ 35] [ 32] [6213544001858015=491212015801214] +18:50:47 [ 37] [ 12] [507911271314] +18:50:47 [ 38] [ 6] [747195] +18:50:47 [ 39] [ 2] [00] +18:50:47 [ 41] [ 8] [0102SAPA] +18:50:47 [ 49] [ 3] [418] +18:50:47 [ 54] [ 40] [0001418C0000089979220002418C000008997922] +18:50:47 ============================================================================ +18:50:47 Calculate Source COMM Id = 2 +18:50:47 ============================================================================ +18:50:47 + + +waiting on router queue for slot.... +18:50:59 ============================================================================ +18:50:59 Slot Id : <264> +18:50:59 Transaction Type : REQUEST +18:50:59 Received From : +18:50:59 ============================================================================ +18:50:59 FNo. Len. Field Value +18:50:59 ============================================================================ +18:50:59 [ 1] [ 4] [0800] +18:50:59 [ 7] [ 10] [0321020248] +18:50:59 [ 11] [ 6] [190248] +18:50:59 [ 37] [ 12] [57919190248] +18:50:59 [ 70] [ 3] [301] +18:50:59 ============================================================================ +18:50:59 + + +waiting on router queue for slot.... +18:50:59 Sending to : +18:50:59 ============================================================================ +18:50:59 ============================================================================ +18:50:59 Slot Id : <264> +18:50:59 Transaction Type : RESPONSE +18:50:59 Received From : +18:50:59 ============================================================================ +18:50:59 FNo. Len. Field Value +18:50:59 ============================================================================ +18:50:59 [ 1] [ 4] [0810] +18:50:59 [ 7] [ 10] [0321020248] +18:50:59 [ 11] [ 6] [190248] +18:50:59 [ 37] [ 12] [579191902480] +18:50:59 [ 39] [ 2] [00] +18:50:59 [ 70] [ 3] [810] +18:50:59 ============================================================================ +18:50:59 Calculate Source COMM Id = 6 +18:50:59 ============================================================================ +18:50:59 + + +waiting on router queue for slot.... +18:50:59 ============================================================================ +18:50:59 Slot Id : <220> +18:50:59 Transaction Type : REQUEST +18:50:59 Received From : +18:50:59 ============================================================================ +18:50:59 FNo. Len. Field Value +18:50:59 ============================================================================ +18:50:59 [ 1] [ 4] [0200] +18:50:59 [ 2] [ 16] [6213548000313641] +18:50:59 [ 3] [ 6] [011000] +18:50:59 [ 4] [ 12] [000020000000] +18:50:59 [ 7] [ 10] [0320115006] +18:50:59 [ 11] [ 6] [271317] +18:50:59 [ 12] [ 6] [185006] +18:50:59 [ 13] [ 4] [0320] +18:50:59 [ 14] [ 4] [1803] +18:50:59 [ 15] [ 4] [0320] +18:50:59 [ 18] [ 4] [6011] +18:50:59 [ 19] [ 3] [418] +18:50:59 [ 22] [ 3] [021] +18:50:59 [ 25] [ 2] [01] +18:50:59 [ 28] [ 9] [D00002000] +18:50:59 [ 32] [ 6] [180893] +18:50:59 [ 35] [ 32] [6213548000313641=180312011364224] +18:50:59 [ 37] [ 12] [507911271317] +18:50:59 [ 41] [ 8] [0531VTHH] +18:50:59 [ 42] [ 15] [999999 ] +18:50:59 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +18:50:59 [ 49] [ 3] [418] +18:50:59 [ 52] [ 16] [C3B40DCA858DD7F9] +18:50:59 ============================================================================ +18:50:59 + + +waiting on router queue for slot.... +18:50:59 Sending to : +18:50:59 ============================================================================ +18:50:59 Sending to : +18:50:59 ============================================================================ +18:51:00 ============================================================================ +18:51:00 Slot Id : <220> +18:51:00 Transaction Type : REQUEST +18:51:00 Received From : +18:51:00 ============================================================================ +18:51:00 FNo. Len. Field Value +18:51:00 ============================================================================ +18:51:00 [ 1] [ 4] [0200] +18:51:00 [ 2] [ 16] [6213548000313641] +18:51:00 [ 3] [ 6] [011000] +18:51:00 [ 4] [ 12] [000020000000] +18:51:00 [ 7] [ 10] [0320115006] +18:51:00 [ 11] [ 6] [271317] +18:51:00 [ 12] [ 6] [185006] +18:51:00 [ 13] [ 4] [0320] +18:51:00 [ 14] [ 4] [1803] +18:51:00 [ 15] [ 4] [0320] +18:51:00 [ 18] [ 4] [6011] +18:51:00 [ 19] [ 3] [418] +18:51:00 [ 22] [ 3] [021] +18:51:00 [ 25] [ 2] [01] +18:51:00 [ 28] [ 9] [D00002000] +18:51:00 [ 32] [ 6] [180893] +18:51:00 [ 35] [ 32] [6213548000313641=180312011364224] +18:51:00 [ 37] [ 12] [507911271317] +18:51:00 [ 41] [ 8] [0531VTHH] +18:51:00 [ 42] [ 15] [999999 ] +18:51:00 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +18:51:00 [ 49] [ 3] [418] +18:51:00 [ 52] [ 16] [C3B40DCA858DD7F9] +18:51:00 ============================================================================ +18:51:00 + + +waiting on router queue for slot.... +18:51:00 Sending to : +18:51:00 ============================================================================ +18:51:00 ============================================================================ +18:51:00 Slot Id : <220> +18:51:00 Transaction Type : REQUEST +18:51:00 Received From : +18:51:00 ============================================================================ +18:51:00 FNo. Len. Field Value +18:51:00 ============================================================================ +18:51:00 [ 1] [ 4] [0200] +18:51:00 [ 2] [ 16] [6213548000313641] +18:51:00 [ 3] [ 6] [011000] +18:51:00 [ 4] [ 12] [000020000000] +18:51:00 [ 7] [ 10] [0320115006] +18:51:00 [ 11] [ 6] [271317] +18:51:00 [ 12] [ 6] [185006] +18:51:00 [ 13] [ 4] [0320] +18:51:00 [ 14] [ 4] [1803] +18:51:00 [ 15] [ 4] [0320] +18:51:00 [ 18] [ 4] [6011] +18:51:00 [ 19] [ 3] [418] +18:51:00 [ 22] [ 3] [021] +18:51:00 [ 25] [ 2] [01] +18:51:00 [ 28] [ 9] [D00002000] +18:51:00 [ 32] [ 6] [180893] +18:51:00 [ 35] [ 32] [6213548000313641=180312011364224] +18:51:00 [ 37] [ 12] [507911271317] +18:51:00 [ 41] [ 8] [0531VTHH] +18:51:00 [ 42] [ 15] [999999 ] +18:51:00 [ 43] [ 40] [ATM HINHERP LOCATION, Hinhurp, Lao Peopl] +18:51:00 [ 49] [ 3] [418] +18:51:00 [ 52] [ 16] [386A75CA41C3BE5C] +18:51:00 ============================================================================ +18:51:00 + + +waiting on router queue for slot.... +18:51:00 Sending to : <0> +18:51:00 ============================================================================ +18:51:00 ============================================================================ +18:51:00 Slot Id : <231> +18:51:00 Transaction Type : REQUEST +18:51:00 Received From : +18:51:00 ============================================================================ +18:51:00 FNo. Len. Field Value +18:51:00 ============================================================================ +18:51:00 [ 1] [ 4] [0800] +18:51:00 [ 7] [ 10] [0320115007] +18:51:00 [ 11] [ 6] [157798] +18:51:00 [ 70] [ 3] [301] +18:51:00 ============================================================================ +18:51:00 + + +waiting on router queue for slot.... +18:51:00 Sending to : +18:51:00 ============================================================================ +18:51:00 ============================================================================ +18:51:00 Slot Id : <231> +18:51:00 Transaction Type : RESPONSE +18:51:00 Received From : +18:51:00 ============================================================================ +18:51:00 FNo. Len. Field Value +18:51:00 ============================================================================ +18:51:00 [ 1] [ 4] [0810] +18:51:00 [ 7] [ 10] [0320115007] +18:51:00 [ 11] [ 6] [157798] +18:51:00 [ 39] [ 2] [00] +18:51:00 [ 70] [ 3] [301] +18:51:00 ============================================================================ +18:51:00 Calculate Source COMM Id = 2 +18:51:00 ============================================================================ +18:51:00 + + +waiting on router queue for slot.... +18:51:00 ============================================================================ +18:51:00 Slot Id : <220> +18:51:00 Transaction Type : RESPONSE +18:51:00 Received From : +18:51:00 ============================================================================ +18:51:00 FNo. Len. Field Value +18:51:00 ============================================================================ +18:51:00 [ 1] [ 4] [0210] +18:51:00 [ 2] [ 16] [6213548000313641] +18:51:00 [ 3] [ 6] [011000] +18:51:00 [ 4] [ 12] [000020000000] +18:51:00 [ 7] [ 10] [0320115006] +18:51:00 [ 11] [ 6] [271317] +18:51:00 [ 12] [ 6] [185006] +18:51:00 [ 13] [ 4] [0320] +18:51:00 [ 15] [ 4] [0320] +18:51:00 [ 18] [ 4] [6011] +18:51:00 [ 19] [ 3] [418] +18:51:00 [ 32] [ 6] [180893] +18:51:00 [ 35] [ 32] [6213548000313641=180312011364224] +18:51:00 [ 37] [ 12] [507911271317] +18:51:00 [ 38] [ 6] [840463] +18:51:00 [ 39] [ 2] [00] +18:51:00 [ 41] [ 8] [0531VTHH] +18:51:00 [ 49] [ 3] [418] +18:51:00 [ 54] [ 40] [1001418C0000152580431002418C000015258043] +18:51:00 ============================================================================ +18:51:00 Sending to : +18:51:00 ============================================================================ +18:51:00 + + +waiting on router queue for slot.... +18:51:01 ============================================================================ +18:51:01 Slot Id : <220> +18:51:01 Transaction Type : RESPONSE +18:51:01 Received From : +18:51:01 ============================================================================ +18:51:01 FNo. Len. Field Value +18:51:01 ============================================================================ +18:51:01 [ 1] [ 4] [0210] +18:51:01 [ 2] [ 16] [6213548000313641] +18:51:01 [ 3] [ 6] [011000] +18:51:01 [ 4] [ 12] [000020000000] +18:51:01 [ 7] [ 10] [0320115006] +18:51:01 [ 11] [ 6] [271317] +18:51:01 [ 12] [ 6] [185006] +18:51:01 [ 13] [ 4] [0320] +18:51:01 [ 15] [ 4] [0320] +18:51:01 [ 18] [ 4] [6011] +18:51:01 [ 19] [ 3] [418] +18:51:01 [ 32] [ 6] [180893] +18:51:01 [ 35] [ 32] [6213548000313641=180312011364224] +18:51:01 [ 37] [ 12] [507911271317] +18:51:01 [ 38] [ 6] [840463] +18:51:01 [ 39] [ 2] [00] +18:51:01 [ 41] [ 8] [0531VTHH] +18:51:01 [ 49] [ 3] [418] +18:51:01 [ 54] [ 40] [1001418C0000152580431002418C000015258043] +18:51:01 ============================================================================ +18:51:01 Calculate Source COMM Id = 2 +18:51:01 ============================================================================ +18:51:01 + + +waiting on router queue for slot.... +18:51:07 ============================================================================ +18:51:07 Slot Id : <273> +18:51:07 Transaction Type : REQUEST +18:51:07 Received From : +18:51:07 ============================================================================ +18:51:07 FNo. Len. Field Value +18:51:07 ============================================================================ +18:51:07 [ 1] [ 4] [0800] +18:51:07 [ 2] [ 5] [02531] +18:51:07 [ 3] [ 6] [579188] +18:51:07 [ 7] [ 10] [0320115107] +18:51:07 [ 11] [ 6] [807506] +18:51:07 [ 15] [ 10] [0320115107] +18:51:07 [ 37] [ 11] [57918807506] +18:51:07 [ 70] [ 3] [001] +18:51:07 ============================================================================ +18:51:07 + + +waiting on router queue for slot.... +18:51:07 ============================================================================ +18:51:07 Slot Id : <273> +18:51:07 Transaction Type : RESPONSE +18:51:07 Received From : +18:51:07 ============================================================================ +18:51:07 FNo. Len. Field Value +18:51:07 ============================================================================ +18:51:07 [ 1] [ 4] [0810] +18:51:07 [ 7] [ 10] [0320115107] +18:51:07 [ 11] [ 6] [807506] +18:51:07 [ 15] [ 4] [0320] +18:51:07 [ 37] [ 12] [57918807506] +18:51:07 [ 39] [ 2] [00] +18:51:07 [ 70] [ 3] [001] +18:51:07 ============================================================================ +18:51:07 Sending to : +18:51:07 ============================================================================ +18:51:07 + + +waiting on router queue for slot.... +18:51:16 ============================================================================ +18:51:16 Slot Id : <279> +18:51:16 Transaction Type : REQUEST +18:51:16 Received From : +18:51:16 ============================================================================ +18:51:16 FNo. Len. Field Value +18:51:16 ============================================================================ +18:51:16 [ 1] [ 4] [0800] +18:51:16 [ 7] [ 10] [0320115023] +18:51:16 [ 11] [ 6] [157799] +18:51:16 [ 70] [ 3] [301] +18:51:16 ============================================================================ +18:51:16 + + +waiting on router queue for slot.... +18:51:16 Sending to : +18:51:16 ============================================================================ +18:51:16 ============================================================================ +18:51:16 Slot Id : <279> +18:51:16 Transaction Type : RESPONSE +18:51:16 Received From : +18:51:16 ============================================================================ +18:51:16 FNo. Len. Field Value +18:51:16 ============================================================================ +18:51:16 [ 1] [ 4] [0810] +18:51:16 [ 7] [ 10] [0320115023] +18:51:16 [ 11] [ 6] [157799] +18:51:16 [ 39] [ 2] [00] +18:51:16 [ 70] [ 3] [301] +18:51:16 ============================================================================ +18:51:16 Calculate Source COMM Id = 2 +18:51:16 ============================================================================ +18:51:16 + + +waiting on router queue for slot.... +18:51:23 ============================================================================ +18:51:23 Slot Id : <239> +18:51:23 Transaction Type : REQUEST +18:51:23 Received From : +18:51:23 ============================================================================ +18:51:23 FNo. Len. Field Value +18:51:23 ============================================================================ +18:51:23 [ 1] [ 4] [0800] +18:51:23 [ 7] [ 10] [0320114912] +18:51:23 [ 11] [ 6] [052693] +18:51:23 [ 37] [ 12] [57918052693] +18:51:23 [ 70] [ 3] [301] +18:51:23 ============================================================================ +18:51:23 + + +waiting on router queue for slot.... +18:51:23 Sending to : +18:51:23 ============================================================================ +18:51:23 ============================================================================ +18:51:23 Slot Id : <239> +18:51:23 Transaction Type : RESPONSE +18:51:23 Received From : +18:51:23 ============================================================================ +18:51:23 FNo. Len. Field Value +18:51:23 ============================================================================ +18:51:23 [ 1] [ 4] [0810] +18:51:23 [ 7] [ 10] [0320114912] +18:51:23 [ 11] [ 6] [052693] +18:51:23 [ 37] [ 12] [579180526930] +18:51:23 [ 39] [ 2] [00] +18:51:23 [ 70] [ 3] [810] +18:51:23 ============================================================================ +18:51:23 Calculate Source COMM Id = 4 +18:51:23 ============================================================================ +18:51:23 + + +waiting on router queue for slot.... +18:51:23 ============================================================================ +18:51:23 Slot Id : <272> +18:51:23 Transaction Type : REQUEST +18:51:23 Received From : +18:51:23 ============================================================================ +18:51:23 FNo. Len. Field Value +18:51:23 ============================================================================ +18:51:23 [ 1] [ 4] [0200] +18:51:23 [ 2] [ 16] [6213543000035328] +18:51:23 [ 3] [ 6] [010000] +18:51:23 [ 4] [ 12] [000010000000] +18:51:23 [ 7] [ 10] [0320115029] +18:51:23 [ 11] [ 6] [271321] +18:51:23 [ 12] [ 6] [185029] +18:51:23 [ 13] [ 4] [0320] +18:51:23 [ 14] [ 4] [4912] +18:51:23 [ 15] [ 4] [0320] +18:51:23 [ 18] [ 4] [6011] +18:51:23 [ 19] [ 3] [418] +18:51:23 [ 22] [ 3] [021] +18:51:23 [ 25] [ 2] [01] +18:51:23 [ 28] [ 9] [D00002000] +18:51:23 [ 32] [ 6] [180893] +18:51:23 [ 35] [ 32] [6213543000035328=491212013532110] +18:51:23 [ 37] [ 12] [507911271321] +18:51:23 [ 41] [ 8] [0483XKNH] +18:51:23 [ 42] [ 15] [999999 ] +18:51:23 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +18:51:23 [ 49] [ 3] [418] +18:51:23 [ 52] [ 16] [B89DCBA86001F173] +18:51:23 ============================================================================ +18:51:23 + + +waiting on router queue for slot.... +18:51:23 Sending to : +18:51:23 ============================================================================ +18:51:23 Sending to : +18:51:23 ============================================================================ +18:51:23 ============================================================================ +18:51:23 Slot Id : <272> +18:51:23 Transaction Type : REQUEST +18:51:23 Received From : +18:51:23 ============================================================================ +18:51:23 FNo. Len. Field Value +18:51:23 ============================================================================ +18:51:23 [ 1] [ 4] [0200] +18:51:23 [ 2] [ 16] [6213543000035328] +18:51:23 [ 3] [ 6] [010000] +18:51:23 [ 4] [ 12] [000010000000] +18:51:23 [ 7] [ 10] [0320115029] +18:51:23 [ 11] [ 6] [271321] +18:51:23 [ 12] [ 6] [185029] +18:51:23 [ 13] [ 4] [0320] +18:51:23 [ 14] [ 4] [4912] +18:51:23 [ 15] [ 4] [0320] +18:51:23 [ 18] [ 4] [6011] +18:51:23 [ 19] [ 3] [418] +18:51:23 [ 22] [ 3] [021] +18:51:23 [ 25] [ 2] [01] +18:51:23 [ 28] [ 9] [D00002000] +18:51:23 [ 32] [ 6] [180893] +18:51:23 [ 35] [ 32] [6213543000035328=491212013532110] +18:51:23 [ 37] [ 12] [507911271321] +18:51:23 [ 41] [ 8] [0483XKNH] +18:51:23 [ 42] [ 15] [999999 ] +18:51:23 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +18:51:23 [ 49] [ 3] [418] +18:51:23 [ 52] [ 16] [B89DCBA86001F173] +18:51:23 ============================================================================ +18:51:23 + + +waiting on router queue for slot.... +18:51:23 Sending to : +18:51:23 ============================================================================ +18:51:23 ============================================================================ +18:51:23 Slot Id : <272> +18:51:23 Transaction Type : REQUEST +18:51:23 Received From : +18:51:23 ============================================================================ +18:51:23 FNo. Len. Field Value +18:51:23 ============================================================================ +18:51:23 [ 1] [ 4] [0200] +18:51:23 [ 2] [ 16] [6213543000035328] +18:51:23 [ 3] [ 6] [010000] +18:51:23 [ 4] [ 12] [000010000000] +18:51:23 [ 7] [ 10] [0320115029] +18:51:23 [ 11] [ 6] [271321] +18:51:23 [ 12] [ 6] [185029] +18:51:23 [ 13] [ 4] [0320] +18:51:23 [ 14] [ 4] [4912] +18:51:23 [ 15] [ 4] [0320] +18:51:23 [ 18] [ 4] [6011] +18:51:23 [ 19] [ 3] [418] +18:51:23 [ 22] [ 3] [021] +18:51:23 [ 25] [ 2] [01] +18:51:23 [ 28] [ 9] [D00002000] +18:51:23 [ 32] [ 6] [180893] +18:51:23 [ 35] [ 32] [6213543000035328=491212013532110] +18:51:23 [ 37] [ 12] [507911271321] +18:51:23 [ 41] [ 8] [0483XKNH] +18:51:23 [ 42] [ 15] [999999 ] +18:51:23 [ 43] [ 40] [ATM NORNGHED XIENGKHOANG PRO, Nonghad, L] +18:51:23 [ 49] [ 3] [418] +18:51:23 [ 52] [ 16] [4C3F00823037D7BF] +18:51:23 ============================================================================ +18:51:23 + + +waiting on router queue for slot.... +18:51:23 Sending to : <0> +18:51:23 ============================================================================ +18:51:24 ============================================================================ +18:51:24 Slot Id : <254> +18:51:24 Transaction Type : REQUEST +18:51:24 Received From : +18:51:24 ============================================================================ +18:51:24 FNo. Len. Field Value +18:51:24 ============================================================================ +18:51:24 [ 1] [ 4] [0200] +18:51:24 [ 2] [ 16] [1888880000096321] +18:51:24 [ 3] [ 6] [011000] +18:51:24 [ 4] [ 12] [000010000000] +18:51:24 [ 7] [ 10] [0320185909] +18:51:24 [ 11] [ 6] [001996] +18:51:24 [ 12] [ 6] [185909] +18:51:24 [ 13] [ 4] [0320] +18:51:24 [ 14] [ 4] [0000] +18:51:24 [ 15] [ 4] [0320] +18:51:24 [ 18] [ 4] [6011] +18:51:24 [ 22] [ 3] [900] +18:51:24 [ 25] [ 2] [02] +18:51:24 [ 28] [ 9] [D00002000] +18:51:24 [ 32] [ 6] [220699] +18:51:24 [ 35] [ 32] [1888880000096321=000010100000645] +18:51:24 [ 37] [ 12] [507900296971] +18:51:24 [ 41] [ 8] [01001600] +18:51:24 [ 42] [ 15] [APTRA ] +18:51:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:51:24 [ 49] [ 3] [418] +18:51:24 [ 52] [ 16] [D158ECD96352CB4B] +18:51:24 ============================================================================ +18:51:24 + + +waiting on router queue for slot.... +18:51:24 Sending to : +18:51:24 ============================================================================ +18:51:24 Sending to : +18:51:24 ============================================================================ +18:51:24 ============================================================================ +18:51:24 Slot Id : <272> +18:51:24 Transaction Type : RESPONSE +18:51:24 Received From : +18:51:24 ============================================================================ +18:51:24 FNo. Len. Field Value +18:51:24 ============================================================================ +18:51:24 [ 1] [ 4] [0210] +18:51:24 [ 2] [ 16] [6213543000035328] +18:51:24 [ 3] [ 6] [010000] +18:51:24 [ 4] [ 12] [000010000000] +18:51:24 [ 7] [ 10] [0320115029] +18:51:24 [ 11] [ 6] [271321] +18:51:24 [ 12] [ 6] [185029] +18:51:24 [ 13] [ 4] [0320] +18:51:24 [ 15] [ 4] [0320] +18:51:24 [ 18] [ 4] [6011] +18:51:24 [ 19] [ 3] [418] +18:51:24 [ 32] [ 6] [180893] +18:51:24 [ 35] [ 32] [6213543000035328=491212013532110] +18:51:24 [ 37] [ 12] [507911271321] +18:51:24 [ 38] [ 6] [530428] +18:51:24 [ 39] [ 2] [00] +18:51:24 [ 41] [ 8] [0483XKNH] +18:51:24 [ 49] [ 3] [418] +18:51:24 [ 54] [ 40] [0001418C0002745743140002418C000274574314] +18:51:24 ============================================================================ +18:51:24 Sending to : +18:51:24 ============================================================================ +18:51:24 + + +waiting on router queue for slot.... +18:51:24 ============================================================================ +18:51:24 Slot Id : <254> +18:51:24 Transaction Type : REQUEST +18:51:24 Received From : +18:51:24 ============================================================================ +18:51:24 FNo. Len. Field Value +18:51:24 ============================================================================ +18:51:24 [ 1] [ 4] [0200] +18:51:24 [ 2] [ 16] [1888880000096321] +18:51:24 [ 3] [ 6] [011000] +18:51:24 [ 4] [ 12] [000010000000] +18:51:24 [ 7] [ 10] [0320185909] +18:51:24 [ 11] [ 6] [001996] +18:51:24 [ 12] [ 6] [185909] +18:51:24 [ 13] [ 4] [0320] +18:51:24 [ 14] [ 4] [0000] +18:51:24 [ 15] [ 4] [0320] +18:51:24 [ 18] [ 4] [6011] +18:51:24 [ 22] [ 3] [900] +18:51:24 [ 25] [ 2] [02] +18:51:24 [ 28] [ 9] [D00002000] +18:51:24 [ 32] [ 6] [220699] +18:51:24 [ 35] [ 32] [1888880000096321=000010100000645] +18:51:24 [ 37] [ 12] [507900296971] +18:51:24 [ 41] [ 8] [01001600] +18:51:24 [ 42] [ 15] [APTRA ] +18:51:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:51:24 [ 49] [ 3] [418] +18:51:24 [ 52] [ 16] [D158ECD96352CB4B] +18:51:24 ============================================================================ +18:51:24 + + +waiting on router queue for slot.... +18:51:24 Sending to : +18:51:24 ============================================================================ +18:51:24 ============================================================================ +18:51:24 Slot Id : <254> +18:51:24 Transaction Type : REQUEST +18:51:24 Received From : +18:51:24 ============================================================================ +18:51:24 FNo. Len. Field Value +18:51:24 ============================================================================ +18:51:24 [ 1] [ 4] [0200] +18:51:24 [ 2] [ 16] [1888880000096321] +18:51:24 [ 3] [ 6] [011000] +18:51:24 [ 4] [ 12] [000010000000] +18:51:24 [ 7] [ 10] [0320185909] +18:51:24 [ 11] [ 6] [001996] +18:51:24 [ 12] [ 6] [185909] +18:51:24 [ 13] [ 4] [0320] +18:51:24 [ 14] [ 4] [0000] +18:51:24 [ 15] [ 4] [0320] +18:51:24 [ 18] [ 4] [6011] +18:51:24 [ 22] [ 3] [900] +18:51:24 [ 25] [ 2] [02] +18:51:24 [ 28] [ 9] [D00002000] +18:51:24 [ 32] [ 6] [220699] +18:51:24 [ 35] [ 32] [1888880000096321=000010100000645] +18:51:24 [ 37] [ 12] [507900296971] +18:51:24 [ 41] [ 8] [01001600] +18:51:24 [ 42] [ 15] [APTRA ] +18:51:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:51:24 [ 49] [ 3] [418] +18:51:24 [ 52] [ 16] [59210DF2EAA1FBD9] +18:51:24 ============================================================================ +18:51:24 + + +waiting on router queue for slot.... +18:51:24 Sending to : <5> +18:51:24 ============================================================================ +18:51:24 ============================================================================ +18:51:24 Slot Id : <254> +18:51:24 Transaction Type : RESPONSE +18:51:24 Received From : +18:51:24 ============================================================================ +18:51:24 FNo. Len. Field Value +18:51:24 ============================================================================ +18:51:24 [ 1] [ 4] [0210] +18:51:24 [ 2] [ 16] [1888880000096321] +18:51:24 [ 3] [ 6] [011000] +18:51:24 [ 4] [ 12] [000010000000] +18:51:24 [ 7] [ 10] [0320185909] +18:51:24 [ 11] [ 6] [001996] +18:51:24 [ 12] [ 6] [185909] +18:51:24 [ 13] [ 4] [0320] +18:51:24 [ 15] [ 4] [0320] +18:51:24 [ 18] [ 4] [6011] +18:51:24 [ 19] [ 3] [418] +18:51:24 [ 32] [ 6] [220699] +18:51:24 [ 37] [ 12] [507900296971] +18:51:24 [ 38] [ 6] [000000] +18:51:24 [ 39] [ 2] [55] +18:51:24 [ 41] [ 8] [01001600] +18:51:24 [ 49] [ 3] [418] +18:51:24 ============================================================================ +18:51:24 Sending to : +18:51:24 ============================================================================ +18:51:24 + + +waiting on router queue for slot.... +18:51:25 ============================================================================ +18:51:25 Slot Id : <272> +18:51:25 Transaction Type : RESPONSE +18:51:25 Received From : +18:51:25 ============================================================================ +18:51:25 FNo. Len. Field Value +18:51:25 ============================================================================ +18:51:25 [ 1] [ 4] [0210] +18:51:25 [ 2] [ 16] [6213543000035328] +18:51:25 [ 3] [ 6] [010000] +18:51:25 [ 4] [ 12] [000010000000] +18:51:25 [ 7] [ 10] [0320115029] +18:51:25 [ 11] [ 6] [271321] +18:51:25 [ 12] [ 6] [185029] +18:51:25 [ 13] [ 4] [0320] +18:51:25 [ 15] [ 4] [0320] +18:51:25 [ 18] [ 4] [6011] +18:51:25 [ 19] [ 3] [418] +18:51:25 [ 32] [ 6] [180893] +18:51:25 [ 35] [ 32] [6213543000035328=491212013532110] +18:51:25 [ 37] [ 12] [507911271321] +18:51:25 [ 38] [ 6] [530428] +18:51:25 [ 39] [ 2] [00] +18:51:25 [ 41] [ 8] [0483XKNH] +18:51:25 [ 49] [ 3] [418] +18:51:25 [ 54] [ 40] [0001418C0002745743140002418C000274574314] +18:51:25 ============================================================================ +18:51:25 Calculate Source COMM Id = 2 +18:51:25 ============================================================================ +18:51:25 + + +waiting on router queue for slot.... +18:51:26 ============================================================================ +18:51:26 Slot Id : <254> +18:51:26 Transaction Type : RESPONSE +18:51:26 Received From : +18:51:26 ============================================================================ +18:51:26 FNo. Len. Field Value +18:51:26 ============================================================================ +18:51:26 [ 1] [ 4] [0210] +18:51:26 [ 2] [ 16] [1888880000096321] +18:51:26 [ 3] [ 6] [011000] +18:51:26 [ 4] [ 12] [000010000000] +18:51:26 [ 7] [ 10] [0320185909] +18:51:26 [ 11] [ 6] [001996] +18:51:26 [ 12] [ 6] [185909] +18:51:26 [ 13] [ 4] [0320] +18:51:26 [ 15] [ 4] [0320] +18:51:26 [ 18] [ 4] [6011] +18:51:26 [ 19] [ 3] [418] +18:51:26 [ 32] [ 6] [220699] +18:51:26 [ 37] [ 12] [507900296971] +18:51:26 [ 38] [ 6] [000000] +18:51:26 [ 39] [ 2] [55] +18:51:26 [ 41] [ 8] [01001600] +18:51:26 [ 49] [ 3] [418] +18:51:26 ============================================================================ +18:51:26 Calculate Source COMM Id = 1 +18:51:26 ============================================================================ +18:51:26 + + +waiting on router queue for slot.... +18:51:27 ============================================================================ +18:51:27 Slot Id : <252> +18:51:27 Transaction Type : REQUEST +18:51:27 Received From : +18:51:27 ============================================================================ +18:51:27 FNo. Len. Field Value +18:51:27 ============================================================================ +18:51:27 [ 1] [ 4] [0800] +18:51:27 [ 7] [ 10] [0320115033] +18:51:27 [ 11] [ 6] [157800] +18:51:27 [ 70] [ 3] [301] +18:51:27 ============================================================================ +18:51:27 + + +waiting on router queue for slot.... +18:51:27 Sending to : +18:51:27 ============================================================================ +18:51:27 ============================================================================ +18:51:27 Slot Id : <252> +18:51:27 Transaction Type : RESPONSE +18:51:27 Received From : +18:51:27 ============================================================================ +18:51:27 FNo. Len. Field Value +18:51:27 ============================================================================ +18:51:27 [ 1] [ 4] [0810] +18:51:27 [ 7] [ 10] [0320115033] +18:51:27 [ 11] [ 6] [157800] +18:51:27 [ 39] [ 2] [00] +18:51:27 [ 70] [ 3] [301] +18:51:27 ============================================================================ +18:51:27 Calculate Source COMM Id = 2 +18:51:27 ============================================================================ +18:51:27 + + +waiting on router queue for slot.... +18:51:36 ============================================================================ +18:51:36 Slot Id : <282> +18:51:36 Transaction Type : REQUEST +18:51:36 Received From : +18:51:36 ============================================================================ +18:51:36 FNo. Len. Field Value +18:51:36 ============================================================================ +18:51:36 [ 1] [ 4] [0200] +18:51:36 [ 2] [ 16] [1808930200040400] +18:51:36 [ 3] [ 6] [301000] +18:51:36 [ 4] [ 12] [000000000000] +18:51:36 [ 7] [ 10] [0320185131] +18:51:36 [ 11] [ 6] [831559] +18:51:36 [ 12] [ 6] [185131] +18:51:36 [ 13] [ 4] [0320] +18:51:36 [ 15] [ 4] [0320] +18:51:36 [ 18] [ 4] [6011] +18:51:36 [ 22] [ 3] [900] +18:51:36 [ 25] [ 2] [02] +18:51:36 [ 28] [ 9] [D00000000] +18:51:36 [ 32] [ 6] [621354] +18:51:36 [ 35] [ 27] [1808930200040400=1803500959] +18:51:36 [ 37] [ 12] [507903684174] +18:51:36 [ 41] [ 8] [01008800] +18:51:36 [ 42] [ 15] [NATIVE ] +18:51:36 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +18:51:36 [ 49] [ 3] [418] +18:51:36 [ 52] [ 16] [34AA1513BBA2436B] +18:51:36 ============================================================================ +18:51:36 + + +waiting on router queue for slot.... +18:51:36 Sending to : +18:51:36 ============================================================================ +18:51:36 Sending to : +18:51:36 ============================================================================ +18:51:36 ============================================================================ +18:51:36 Slot Id : <282> +18:51:36 Transaction Type : REQUEST +18:51:36 Received From : +18:51:36 ============================================================================ +18:51:36 FNo. Len. Field Value +18:51:36 ============================================================================ +18:51:36 [ 1] [ 4] [0200] +18:51:36 [ 2] [ 16] [1808930200040400] +18:51:36 [ 3] [ 6] [301000] +18:51:36 [ 4] [ 12] [000000000000] +18:51:36 [ 7] [ 10] [0320185131] +18:51:36 [ 11] [ 6] [831559] +18:51:36 [ 12] [ 6] [185131] +18:51:36 [ 13] [ 4] [0320] +18:51:36 [ 15] [ 4] [0320] +18:51:36 [ 18] [ 4] [6011] +18:51:36 [ 22] [ 3] [900] +18:51:36 [ 25] [ 2] [02] +18:51:36 [ 28] [ 9] [D00000000] +18:51:36 [ 32] [ 6] [621354] +18:51:36 [ 35] [ 27] [1808930200040400=1803500959] +18:51:36 [ 37] [ 12] [507903684174] +18:51:36 [ 41] [ 8] [01008800] +18:51:36 [ 42] [ 15] [NATIVE ] +18:51:36 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +18:51:36 [ 49] [ 3] [418] +18:51:36 [ 52] [ 16] [34AA1513BBA2436B] +18:51:36 ============================================================================ +18:51:36 + + +waiting on router queue for slot.... +18:51:36 Sending to : +18:51:36 ============================================================================ +18:51:36 ============================================================================ +18:51:36 Slot Id : <282> +18:51:36 Transaction Type : REQUEST +18:51:36 Received From : +18:51:36 ============================================================================ +18:51:36 FNo. Len. Field Value +18:51:36 ============================================================================ +18:51:36 [ 1] [ 4] [0200] +18:51:36 [ 2] [ 16] [1808930200040400] +18:51:36 [ 3] [ 6] [301000] +18:51:36 [ 4] [ 12] [000000000000] +18:51:36 [ 7] [ 10] [0320185131] +18:51:36 [ 11] [ 6] [831559] +18:51:36 [ 12] [ 6] [185131] +18:51:36 [ 13] [ 4] [0320] +18:51:36 [ 15] [ 4] [0320] +18:51:36 [ 18] [ 4] [6011] +18:51:36 [ 22] [ 3] [900] +18:51:36 [ 25] [ 2] [02] +18:51:36 [ 28] [ 9] [D00000000] +18:51:36 [ 32] [ 6] [621354] +18:51:36 [ 35] [ 27] [1808930200040400=1803500959] +18:51:36 [ 37] [ 12] [507903684174] +18:51:36 [ 41] [ 8] [01008800] +18:51:36 [ 42] [ 15] [NATIVE ] +18:51:36 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +18:51:36 [ 49] [ 3] [418] +18:51:36 [ 52] [ 16] [F8AEDEBC62348506] +18:51:36 ============================================================================ +18:51:36 + + +waiting on router queue for slot.... +18:51:36 Sending to : <2> +18:51:36 ============================================================================ +18:51:39 ============================================================================ +18:51:39 Slot Id : <282> +18:51:39 Transaction Type : RESPONSE +18:51:39 Received From : +18:51:39 ============================================================================ +18:51:39 FNo. Len. Field Value +18:51:39 ============================================================================ +18:51:39 [ 1] [ 4] [0210] +18:51:39 [ 2] [ 16] [1808930200040400] +18:51:39 [ 3] [ 6] [301000] +18:51:39 [ 7] [ 10] [0320185131] +18:51:39 [ 11] [ 6] [831559] +18:51:39 [ 12] [ 6] [185131] +18:51:39 [ 13] [ 4] [0320] +18:51:39 [ 14] [ 4] [1803] +18:51:39 [ 19] [ 3] [418] +18:51:39 [ 32] [ 6] [621354] +18:51:39 [ 37] [ 12] [507903684174] +18:51:39 [ 38] [ 6] [831559] +18:51:39 [ 39] [ 2] [00] +18:51:39 [ 41] [ 8] [01008800] +18:51:39 [ 49] [ 3] [418] +18:51:39 [ 52] [ 16] [F8AEDEBC62348506] +18:51:39 [ 54] [ 20] [1002418C000556225000] +18:51:39 ============================================================================ +18:51:39 Sending to : +18:51:39 ============================================================================ +18:51:39 + + +waiting on router queue for slot.... +18:51:41 ============================================================================ +18:51:41 Slot Id : <282> +18:51:41 Transaction Type : RESPONSE +18:51:41 Received From : +18:51:41 ============================================================================ +18:51:41 FNo. Len. Field Value +18:51:41 ============================================================================ +18:51:41 [ 1] [ 4] [0210] +18:51:41 [ 2] [ 16] [1808930200040400] +18:51:41 [ 3] [ 6] [301000] +18:51:41 [ 7] [ 10] [0320185131] +18:51:41 [ 11] [ 6] [831559] +18:51:41 [ 12] [ 6] [185131] +18:51:41 [ 13] [ 4] [0320] +18:51:41 [ 14] [ 4] [1803] +18:51:41 [ 19] [ 3] [418] +18:51:41 [ 32] [ 6] [621354] +18:51:41 [ 37] [ 12] [507903684174] +18:51:41 [ 38] [ 6] [831559] +18:51:41 [ 39] [ 2] [00] +18:51:41 [ 41] [ 8] [01008800] +18:51:41 [ 49] [ 3] [418] +18:51:41 [ 52] [ 16] [F8AEDEBC62348506] +18:51:41 [ 54] [ 20] [1002418C000556225000] +18:51:41 ============================================================================ +18:51:41 Calculate Source COMM Id = 0 +18:51:41 ============================================================================ +18:51:41 + + +waiting on router queue for slot.... +18:51:48 ============================================================================ +18:51:48 Slot Id : <241> +18:51:48 Transaction Type : REQUEST +18:51:48 Received From : +18:51:48 ============================================================================ +18:51:48 FNo. Len. Field Value +18:51:48 ============================================================================ +18:51:48 [ 1] [ 4] [0800] +18:51:48 [ 7] [ 10] [0320115054] +18:51:48 [ 11] [ 6] [157801] +18:51:48 [ 70] [ 3] [301] +18:51:48 ============================================================================ +18:51:48 + + +waiting on router queue for slot.... +18:51:48 Sending to : +18:51:48 ============================================================================ +18:51:48 ============================================================================ +18:51:48 Slot Id : <241> +18:51:48 Transaction Type : RESPONSE +18:51:48 Received From : +18:51:48 ============================================================================ +18:51:48 FNo. Len. Field Value +18:51:48 ============================================================================ +18:51:48 [ 1] [ 4] [0810] +18:51:48 [ 7] [ 10] [0320115054] +18:51:48 [ 11] [ 6] [157801] +18:51:48 [ 39] [ 2] [00] +18:51:48 [ 70] [ 3] [301] +18:51:48 ============================================================================ +18:51:48 Calculate Source COMM Id = 2 +18:51:48 ============================================================================ +18:51:48 + + +waiting on router queue for slot.... +18:51:58 ============================================================================ +18:51:58 Slot Id : <266> +18:51:58 Transaction Type : REQUEST +18:51:58 Received From : +18:51:58 ============================================================================ +18:51:58 FNo. Len. Field Value +18:51:58 ============================================================================ +18:51:58 [ 1] [ 4] [0800] +18:51:58 [ 7] [ 10] [0320115105] +18:51:58 [ 11] [ 6] [157802] +18:51:58 [ 70] [ 3] [301] +18:51:58 ============================================================================ +18:51:58 + + +waiting on router queue for slot.... +18:51:58 Sending to : +18:51:58 ============================================================================ +18:51:58 ============================================================================ +18:51:58 Slot Id : <266> +18:51:58 Transaction Type : RESPONSE +18:51:58 Received From : +18:51:58 ============================================================================ +18:51:58 FNo. Len. Field Value +18:51:58 ============================================================================ +18:51:58 [ 1] [ 4] [0810] +18:51:58 [ 7] [ 10] [0320115105] +18:51:58 [ 11] [ 6] [157802] +18:51:58 [ 39] [ 2] [00] +18:51:58 [ 70] [ 3] [301] +18:51:58 ============================================================================ +18:51:58 Calculate Source COMM Id = 2 +18:51:58 ============================================================================ +18:51:58 + + +waiting on router queue for slot.... +18:52:04 ============================================================================ +18:52:04 Slot Id : <224> +18:52:04 Transaction Type : REQUEST +18:52:04 Received From : +18:52:04 ============================================================================ +18:52:04 FNo. Len. Field Value +18:52:04 ============================================================================ +18:52:04 [ 1] [ 4] [0800] +18:52:04 [ 7] [ 10] [0321020353] +18:52:04 [ 11] [ 6] [190353] +18:52:04 [ 37] [ 12] [57919190353] +18:52:04 [ 70] [ 3] [301] +18:52:04 ============================================================================ +18:52:04 + + +waiting on router queue for slot.... +18:52:04 Sending to : +18:52:04 ============================================================================ +18:52:04 ============================================================================ +18:52:04 Slot Id : <224> +18:52:04 Transaction Type : RESPONSE +18:52:04 Received From : +18:52:04 ============================================================================ +18:52:04 FNo. Len. Field Value +18:52:04 ============================================================================ +18:52:04 [ 1] [ 4] [0810] +18:52:04 [ 7] [ 10] [0321020353] +18:52:04 [ 11] [ 6] [190353] +18:52:04 [ 37] [ 12] [579191903530] +18:52:04 [ 39] [ 2] [00] +18:52:04 [ 70] [ 3] [810] +18:52:04 ============================================================================ +18:52:04 Calculate Source COMM Id = 6 +18:52:04 ============================================================================ +18:52:04 + + +waiting on router queue for slot.... +18:52:08 ============================================================================ +18:52:08 Slot Id : <280> +18:52:08 Transaction Type : REQUEST +18:52:08 Received From : +18:52:08 ============================================================================ +18:52:08 FNo. Len. Field Value +18:52:08 ============================================================================ +18:52:08 [ 1] [ 4] [0800] +18:52:08 [ 7] [ 10] [0320115115] +18:52:08 [ 11] [ 6] [157803] +18:52:08 [ 70] [ 3] [301] +18:52:08 ============================================================================ +18:52:08 + + +waiting on router queue for slot.... +18:52:08 Sending to : +18:52:08 ============================================================================ +18:52:08 ============================================================================ +18:52:08 Slot Id : <280> +18:52:08 Transaction Type : RESPONSE +18:52:08 Received From : +18:52:08 ============================================================================ +18:52:08 FNo. Len. Field Value +18:52:08 ============================================================================ +18:52:08 [ 1] [ 4] [0810] +18:52:08 [ 7] [ 10] [0320115115] +18:52:08 [ 11] [ 6] [157803] +18:52:08 [ 39] [ 2] [00] +18:52:08 [ 70] [ 3] [301] +18:52:08 ============================================================================ +18:52:08 Calculate Source COMM Id = 2 +18:52:08 ============================================================================ +18:52:08 + + +waiting on router queue for slot.... +18:52:09 ============================================================================ +18:52:09 Slot Id : <276> +18:52:09 Transaction Type : REQUEST +18:52:09 Received From : +18:52:09 ============================================================================ +18:52:09 FNo. Len. Field Value +18:52:09 ============================================================================ +18:52:09 [ 1] [ 4] [0800] +18:52:09 [ 2] [ 5] [02531] +18:52:09 [ 3] [ 6] [579188] +18:52:09 [ 7] [ 10] [0320115209] +18:52:09 [ 11] [ 6] [807507] +18:52:09 [ 15] [ 10] [0320115209] +18:52:09 [ 37] [ 11] [57918807507] +18:52:09 [ 70] [ 3] [001] +18:52:09 ============================================================================ +18:52:09 + + +waiting on router queue for slot.... +18:52:09 ============================================================================ +18:52:09 Slot Id : <276> +18:52:09 Transaction Type : RESPONSE +18:52:09 Received From : +18:52:09 ============================================================================ +18:52:09 FNo. Len. Field Value +18:52:09 ============================================================================ +18:52:09 [ 1] [ 4] [0810] +18:52:09 [ 7] [ 10] [0320115209] +18:52:09 [ 11] [ 6] [807507] +18:52:09 [ 15] [ 4] [0320] +18:52:09 [ 37] [ 12] [57918807507] +18:52:09 [ 39] [ 2] [00] +18:52:09 [ 70] [ 3] [001] +18:52:09 ============================================================================ +18:52:09 Sending to : +18:52:09 ============================================================================ +18:52:09 + + +waiting on router queue for slot.... +18:52:10 ============================================================================ +18:52:10 Slot Id : <258> +18:52:10 Transaction Type : REQUEST +18:52:10 Received From : +18:52:10 ============================================================================ +18:52:10 FNo. Len. Field Value +18:52:10 ============================================================================ +18:52:10 [ 1] [ 4] [0200] +18:52:10 [ 2] [ 16] [1888880000096321] +18:52:10 [ 3] [ 6] [011000] +18:52:10 [ 4] [ 12] [000010000000] +18:52:10 [ 7] [ 10] [0320185955] +18:52:10 [ 11] [ 6] [001999] +18:52:10 [ 12] [ 6] [185955] +18:52:10 [ 13] [ 4] [0320] +18:52:10 [ 14] [ 4] [0000] +18:52:10 [ 15] [ 4] [0320] +18:52:10 [ 18] [ 4] [6011] +18:52:10 [ 22] [ 3] [900] +18:52:10 [ 25] [ 2] [02] +18:52:10 [ 28] [ 9] [D00002000] +18:52:10 [ 32] [ 6] [220699] +18:52:10 [ 35] [ 32] [1888880000096321=000010100000645] +18:52:10 [ 37] [ 12] [507900296973] +18:52:10 [ 41] [ 8] [01001600] +18:52:10 [ 42] [ 15] [APTRA ] +18:52:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:52:10 [ 49] [ 3] [418] +18:52:10 [ 52] [ 16] [FA494661ED9A9840] +18:52:10 ============================================================================ +18:52:10 + + +waiting on router queue for slot.... +18:52:10 Sending to : +18:52:10 ============================================================================ +18:52:10 Sending to : +18:52:10 ============================================================================ +18:52:10 ============================================================================ +18:52:10 Slot Id : <258> +18:52:10 Transaction Type : REQUEST +18:52:10 Received From : +18:52:10 ============================================================================ +18:52:10 FNo. Len. Field Value +18:52:10 ============================================================================ +18:52:10 [ 1] [ 4] [0200] +18:52:10 [ 2] [ 16] [1888880000096321] +18:52:10 [ 3] [ 6] [011000] +18:52:10 [ 4] [ 12] [000010000000] +18:52:10 [ 7] [ 10] [0320185955] +18:52:10 [ 11] [ 6] [001999] +18:52:10 [ 12] [ 6] [185955] +18:52:10 [ 13] [ 4] [0320] +18:52:10 [ 14] [ 4] [0000] +18:52:10 [ 15] [ 4] [0320] +18:52:10 [ 18] [ 4] [6011] +18:52:10 [ 22] [ 3] [900] +18:52:10 [ 25] [ 2] [02] +18:52:10 [ 28] [ 9] [D00002000] +18:52:10 [ 32] [ 6] [220699] +18:52:10 [ 35] [ 32] [1888880000096321=000010100000645] +18:52:10 [ 37] [ 12] [507900296973] +18:52:10 [ 41] [ 8] [01001600] +18:52:10 [ 42] [ 15] [APTRA ] +18:52:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:52:10 [ 49] [ 3] [418] +18:52:10 [ 52] [ 16] [FA494661ED9A9840] +18:52:10 ============================================================================ +18:52:10 + + +waiting on router queue for slot.... +18:52:10 Sending to : +18:52:10 ============================================================================ +18:52:10 ============================================================================ +18:52:10 Slot Id : <258> +18:52:10 Transaction Type : REQUEST +18:52:10 Received From : +18:52:10 ============================================================================ +18:52:10 FNo. Len. Field Value +18:52:10 ============================================================================ +18:52:10 [ 1] [ 4] [0200] +18:52:10 [ 2] [ 16] [1888880000096321] +18:52:10 [ 3] [ 6] [011000] +18:52:10 [ 4] [ 12] [000010000000] +18:52:10 [ 7] [ 10] [0320185955] +18:52:10 [ 11] [ 6] [001999] +18:52:10 [ 12] [ 6] [185955] +18:52:10 [ 13] [ 4] [0320] +18:52:10 [ 14] [ 4] [0000] +18:52:10 [ 15] [ 4] [0320] +18:52:10 [ 18] [ 4] [6011] +18:52:10 [ 22] [ 3] [900] +18:52:10 [ 25] [ 2] [02] +18:52:10 [ 28] [ 9] [D00002000] +18:52:10 [ 32] [ 6] [220699] +18:52:10 [ 35] [ 32] [1888880000096321=000010100000645] +18:52:10 [ 37] [ 12] [507900296973] +18:52:10 [ 41] [ 8] [01001600] +18:52:10 [ 42] [ 15] [APTRA ] +18:52:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:52:10 [ 49] [ 3] [418] +18:52:10 [ 52] [ 16] [DC08AB49F285D966] +18:52:10 ============================================================================ +18:52:10 + + +waiting on router queue for slot.... +18:52:10 Sending to : <5> +18:52:10 ============================================================================ +18:52:19 ============================================================================ +18:52:19 Slot Id : <219> +18:52:19 Transaction Type : REQUEST +18:52:19 Received From : +18:52:19 ============================================================================ +18:52:19 FNo. Len. Field Value +18:52:19 ============================================================================ +18:52:19 [ 1] [ 4] [0800] +18:52:19 [ 7] [ 10] [0320115125] +18:52:19 [ 11] [ 6] [157804] +18:52:19 [ 70] [ 3] [301] +18:52:19 ============================================================================ +18:52:19 + + +waiting on router queue for slot.... +18:52:19 Sending to : +18:52:19 ============================================================================ +18:52:19 ============================================================================ +18:52:19 Slot Id : <219> +18:52:19 Transaction Type : RESPONSE +18:52:19 Received From : +18:52:19 ============================================================================ +18:52:19 FNo. Len. Field Value +18:52:19 ============================================================================ +18:52:19 [ 1] [ 4] [0810] +18:52:19 [ 7] [ 10] [0320115125] +18:52:19 [ 11] [ 6] [157804] +18:52:19 [ 39] [ 2] [00] +18:52:19 [ 70] [ 3] [301] +18:52:19 ============================================================================ +18:52:19 Calculate Source COMM Id = 2 +18:52:19 ============================================================================ +18:52:19 + + +waiting on router queue for slot.... +18:52:19 ============================================================================ +18:52:19 Slot Id : <258> +18:52:19 Transaction Type : RESPONSE +18:52:19 Received From : +18:52:19 ============================================================================ +18:52:19 FNo. Len. Field Value +18:52:19 ============================================================================ +18:52:19 [ 1] [ 4] [0210] +18:52:19 [ 2] [ 16] [1888880000096321] +18:52:19 [ 3] [ 6] [011000] +18:52:19 [ 4] [ 12] [000010000000] +18:52:19 [ 7] [ 10] [0320185955] +18:52:19 [ 11] [ 6] [001999] +18:52:19 [ 12] [ 6] [185955] +18:52:19 [ 13] [ 4] [0320] +18:52:19 [ 15] [ 4] [0320] +18:52:19 [ 18] [ 4] [6011] +18:52:19 [ 19] [ 3] [418] +18:52:19 [ 32] [ 6] [220699] +18:52:19 [ 37] [ 12] [507900296973] +18:52:19 [ 38] [ 6] [987712] +18:52:19 [ 39] [ 2] [00] +18:52:19 [ 41] [ 8] [01001600] +18:52:19 [ 49] [ 3] [418] +18:52:19 [ 54] [ 0] [] +18:52:19 ============================================================================ +18:52:19 Sending to : +18:52:19 ============================================================================ +18:52:19 + + +waiting on router queue for slot.... +18:52:21 ============================================================================ +18:52:21 Slot Id : <258> +18:52:21 Transaction Type : RESPONSE +18:52:21 Received From : +18:52:21 ============================================================================ +18:52:21 FNo. Len. Field Value +18:52:21 ============================================================================ +18:52:21 [ 1] [ 4] [0210] +18:52:21 [ 2] [ 16] [1888880000096321] +18:52:21 [ 3] [ 6] [011000] +18:52:21 [ 4] [ 12] [000010000000] +18:52:21 [ 7] [ 10] [0320185955] +18:52:21 [ 11] [ 6] [001999] +18:52:21 [ 12] [ 6] [185955] +18:52:21 [ 13] [ 4] [0320] +18:52:21 [ 15] [ 4] [0320] +18:52:21 [ 18] [ 4] [6011] +18:52:21 [ 19] [ 3] [418] +18:52:21 [ 32] [ 6] [220699] +18:52:21 [ 37] [ 12] [507900296973] +18:52:21 [ 38] [ 6] [987712] +18:52:21 [ 39] [ 2] [00] +18:52:21 [ 41] [ 8] [01001600] +18:52:21 [ 49] [ 3] [418] +18:52:21 [ 54] [ 0] [] +18:52:21 ============================================================================ +18:52:21 Calculate Source COMM Id = 1 +18:52:21 ============================================================================ +18:52:21 + + +waiting on router queue for slot.... +18:52:30 ============================================================================ +18:52:30 Slot Id : <290> +18:52:30 Transaction Type : REQUEST +18:52:30 Received From : +18:52:30 ============================================================================ +18:52:30 FNo. Len. Field Value +18:52:30 ============================================================================ +18:52:30 [ 1] [ 4] [0800] +18:52:30 [ 7] [ 10] [0320115137] +18:52:30 [ 11] [ 6] [157805] +18:52:30 [ 70] [ 3] [301] +18:52:30 ============================================================================ +18:52:30 + + +waiting on router queue for slot.... +18:52:30 Sending to : +18:52:30 ============================================================================ +18:52:30 ============================================================================ +18:52:30 Slot Id : <290> +18:52:30 Transaction Type : RESPONSE +18:52:30 Received From : +18:52:30 ============================================================================ +18:52:30 FNo. Len. Field Value +18:52:30 ============================================================================ +18:52:30 [ 1] [ 4] [0810] +18:52:30 [ 7] [ 10] [0320115137] +18:52:30 [ 11] [ 6] [157805] +18:52:30 [ 39] [ 2] [00] +18:52:30 [ 70] [ 3] [301] +18:52:30 ============================================================================ +18:52:30 Calculate Source COMM Id = 2 +18:52:30 ============================================================================ +18:52:30 + + +waiting on router queue for slot.... +18:52:46 ============================================================================ +18:52:46 Slot Id : <284> +18:52:46 Transaction Type : REQUEST +18:52:46 Received From : +18:52:46 ============================================================================ +18:52:46 FNo. Len. Field Value +18:52:46 ============================================================================ +18:52:46 [ 1] [ 4] [0800] +18:52:46 [ 7] [ 10] [0320115153] +18:52:46 [ 11] [ 6] [157806] +18:52:46 [ 70] [ 3] [301] +18:52:46 ============================================================================ +18:52:46 + + +waiting on router queue for slot.... +18:52:46 Sending to : +18:52:46 ============================================================================ +18:52:46 ============================================================================ +18:52:46 Slot Id : <284> +18:52:46 Transaction Type : RESPONSE +18:52:46 Received From : +18:52:46 ============================================================================ +18:52:46 FNo. Len. Field Value +18:52:46 ============================================================================ +18:52:46 [ 1] [ 4] [0810] +18:52:46 [ 7] [ 10] [0320115153] +18:52:46 [ 11] [ 6] [157806] +18:52:46 [ 39] [ 2] [00] +18:52:46 [ 70] [ 3] [301] +18:52:46 ============================================================================ +18:52:46 Calculate Source COMM Id = 2 +18:52:46 ============================================================================ +18:52:46 + + +waiting on router queue for slot.... +18:52:49 ============================================================================ +18:52:49 Slot Id : <287> +18:52:49 Transaction Type : REQUEST +18:52:49 Received From : +18:52:49 ============================================================================ +18:52:49 FNo. Len. Field Value +18:52:49 ============================================================================ +18:52:49 [ 1] [ 4] [0200] +18:52:49 [ 2] [ 16] [6213544000553187] +18:52:49 [ 3] [ 6] [011000] +18:52:49 [ 4] [ 12] [000040000000] +18:52:49 [ 7] [ 10] [0320115154] +18:52:49 [ 11] [ 6] [271325] +18:52:49 [ 12] [ 6] [185154] +18:52:49 [ 13] [ 4] [0320] +18:52:49 [ 14] [ 4] [4912] +18:52:49 [ 15] [ 4] [0320] +18:52:49 [ 18] [ 4] [6011] +18:52:49 [ 19] [ 3] [418] +18:52:49 [ 22] [ 3] [021] +18:52:49 [ 25] [ 2] [01] +18:52:49 [ 28] [ 9] [D00002000] +18:52:49 [ 32] [ 6] [180893] +18:52:49 [ 35] [ 32] [6213544000553187=491212015318887] +18:52:49 [ 37] [ 12] [507911271325] +18:52:49 [ 41] [ 8] [0105XTNY] +18:52:49 [ 42] [ 15] [999999 ] +18:52:49 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +18:52:49 [ 49] [ 3] [418] +18:52:49 [ 52] [ 16] [03448175B0B14AB1] +18:52:49 ============================================================================ +18:52:49 + + +waiting on router queue for slot.... +18:52:49 Sending to : +18:52:49 ============================================================================ +18:52:49 Sending to : +18:52:49 ============================================================================ +18:52:49 ============================================================================ +18:52:49 Slot Id : <287> +18:52:49 Transaction Type : REQUEST +18:52:49 Received From : +18:52:49 ============================================================================ +18:52:49 FNo. Len. Field Value +18:52:49 ============================================================================ +18:52:49 [ 1] [ 4] [0200] +18:52:49 [ 2] [ 16] [6213544000553187] +18:52:49 [ 3] [ 6] [011000] +18:52:49 [ 4] [ 12] [000040000000] +18:52:49 [ 7] [ 10] [0320115154] +18:52:49 [ 11] [ 6] [271325] +18:52:49 [ 12] [ 6] [185154] +18:52:49 [ 13] [ 4] [0320] +18:52:49 [ 14] [ 4] [4912] +18:52:49 [ 15] [ 4] [0320] +18:52:49 [ 18] [ 4] [6011] +18:52:49 [ 19] [ 3] [418] +18:52:49 [ 22] [ 3] [021] +18:52:49 [ 25] [ 2] [01] +18:52:49 [ 28] [ 9] [D00002000] +18:52:49 [ 32] [ 6] [180893] +18:52:49 [ 35] [ 32] [6213544000553187=491212015318887] +18:52:49 [ 37] [ 12] [507911271325] +18:52:49 [ 41] [ 8] [0105XTNY] +18:52:49 [ 42] [ 15] [999999 ] +18:52:49 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +18:52:49 [ 49] [ 3] [418] +18:52:49 [ 52] [ 16] [03448175B0B14AB1] +18:52:49 ============================================================================ +18:52:49 + + +waiting on router queue for slot.... +18:52:49 Sending to : +18:52:49 ============================================================================ +18:52:49 ============================================================================ +18:52:49 Slot Id : <287> +18:52:49 Transaction Type : REQUEST +18:52:49 Received From : +18:52:49 ============================================================================ +18:52:49 FNo. Len. Field Value +18:52:49 ============================================================================ +18:52:49 [ 1] [ 4] [0200] +18:52:49 [ 2] [ 16] [6213544000553187] +18:52:49 [ 3] [ 6] [011000] +18:52:49 [ 4] [ 12] [000040000000] +18:52:49 [ 7] [ 10] [0320115154] +18:52:49 [ 11] [ 6] [271325] +18:52:49 [ 12] [ 6] [185154] +18:52:49 [ 13] [ 4] [0320] +18:52:49 [ 14] [ 4] [4912] +18:52:49 [ 15] [ 4] [0320] +18:52:49 [ 18] [ 4] [6011] +18:52:49 [ 19] [ 3] [418] +18:52:49 [ 22] [ 3] [021] +18:52:49 [ 25] [ 2] [01] +18:52:49 [ 28] [ 9] [D00002000] +18:52:49 [ 32] [ 6] [180893] +18:52:49 [ 35] [ 32] [6213544000553187=491212015318887] +18:52:49 [ 37] [ 12] [507911271325] +18:52:49 [ 41] [ 8] [0105XTNY] +18:52:49 [ 42] [ 15] [999999 ] +18:52:49 [ 43] [ 40] [ATM SERVICE UNIT XAYTHANY LOCATION, Xayt] +18:52:49 [ 49] [ 3] [418] +18:52:49 [ 52] [ 16] [9230C74CBC2ABE18] +18:52:49 ============================================================================ +18:52:49 + + +waiting on router queue for slot.... +18:52:49 Sending to : <0> +18:52:49 ============================================================================ +18:52:50 ============================================================================ +18:52:50 Slot Id : <287> +18:52:50 Transaction Type : RESPONSE +18:52:50 Received From : +18:52:50 ============================================================================ +18:52:50 FNo. Len. Field Value +18:52:50 ============================================================================ +18:52:50 [ 1] [ 4] [0210] +18:52:50 [ 2] [ 16] [6213544000553187] +18:52:50 [ 3] [ 6] [011000] +18:52:50 [ 4] [ 12] [000040000000] +18:52:50 [ 7] [ 10] [0320115154] +18:52:50 [ 11] [ 6] [271325] +18:52:50 [ 12] [ 6] [185154] +18:52:50 [ 13] [ 4] [0320] +18:52:50 [ 15] [ 4] [0320] +18:52:50 [ 18] [ 4] [6011] +18:52:50 [ 19] [ 3] [418] +18:52:50 [ 32] [ 6] [180893] +18:52:50 [ 35] [ 32] [6213544000553187=491212015318887] +18:52:50 [ 37] [ 12] [507911271325] +18:52:50 [ 38] [ 6] [259733] +18:52:50 [ 39] [ 2] [00] +18:52:50 [ 41] [ 8] [0105XTNY] +18:52:50 [ 49] [ 3] [418] +18:52:50 [ 54] [ 40] [1001764C0000162119581002764C000016211958] +18:52:50 ============================================================================ +18:52:50 Sending to : +18:52:50 ============================================================================ +18:52:50 + + +waiting on router queue for slot.... +18:52:51 ============================================================================ +18:52:51 Slot Id : <287> +18:52:51 Transaction Type : RESPONSE +18:52:51 Received From : +18:52:51 ============================================================================ +18:52:51 FNo. Len. Field Value +18:52:51 ============================================================================ +18:52:51 [ 1] [ 4] [0210] +18:52:51 [ 2] [ 16] [6213544000553187] +18:52:51 [ 3] [ 6] [011000] +18:52:51 [ 4] [ 12] [000040000000] +18:52:51 [ 7] [ 10] [0320115154] +18:52:51 [ 11] [ 6] [271325] +18:52:51 [ 12] [ 6] [185154] +18:52:51 [ 13] [ 4] [0320] +18:52:51 [ 15] [ 4] [0320] +18:52:51 [ 18] [ 4] [6011] +18:52:51 [ 19] [ 3] [418] +18:52:51 [ 32] [ 6] [180893] +18:52:51 [ 35] [ 32] [6213544000553187=491212015318887] +18:52:51 [ 37] [ 12] [507911271325] +18:52:51 [ 38] [ 6] [259733] +18:52:51 [ 39] [ 2] [00] +18:52:51 [ 41] [ 8] [0105XTNY] +18:52:51 [ 49] [ 3] [418] +18:52:51 [ 54] [ 40] [1001764C0000162119581002764C000016211958] +18:52:51 ============================================================================ +18:52:51 Calculate Source COMM Id = 2 +18:52:51 ============================================================================ +18:52:51 + + +waiting on router queue for slot.... +18:53:02 ============================================================================ +18:53:02 Slot Id : <277> +18:53:02 Transaction Type : REQUEST +18:53:02 Received From : +18:53:02 ============================================================================ +18:53:02 FNo. Len. Field Value +18:53:02 ============================================================================ +18:53:02 [ 1] [ 4] [0800] +18:53:02 [ 7] [ 10] [0320115209] +18:53:02 [ 11] [ 6] [157807] +18:53:02 [ 70] [ 3] [301] +18:53:02 ============================================================================ +18:53:02 + + +waiting on router queue for slot.... +18:53:02 Sending to : +18:53:02 ============================================================================ +18:53:02 ============================================================================ +18:53:02 Slot Id : <277> +18:53:02 Transaction Type : RESPONSE +18:53:02 Received From : +18:53:02 ============================================================================ +18:53:02 FNo. Len. Field Value +18:53:02 ============================================================================ +18:53:02 [ 1] [ 4] [0810] +18:53:02 [ 7] [ 10] [0320115209] +18:53:02 [ 11] [ 6] [157807] +18:53:02 [ 39] [ 2] [00] +18:53:02 [ 70] [ 3] [301] +18:53:02 ============================================================================ +18:53:02 Calculate Source COMM Id = 2 +18:53:02 ============================================================================ +18:53:02 + + +waiting on router queue for slot.... +18:53:09 ============================================================================ +18:53:09 Slot Id : <271> +18:53:09 Transaction Type : REQUEST +18:53:09 Received From : +18:53:09 ============================================================================ +18:53:09 FNo. Len. Field Value +18:53:09 ============================================================================ +18:53:09 [ 1] [ 4] [0800] +18:53:09 [ 7] [ 10] [0321020458] +18:53:09 [ 11] [ 6] [190458] +18:53:09 [ 37] [ 12] [57919190458] +18:53:09 [ 70] [ 3] [301] +18:53:09 ============================================================================ +18:53:09 + + +waiting on router queue for slot.... +18:53:09 Sending to : +18:53:09 ============================================================================ +18:53:09 ============================================================================ +18:53:09 Slot Id : <271> +18:53:09 Transaction Type : RESPONSE +18:53:09 Received From : +18:53:09 ============================================================================ +18:53:09 FNo. Len. Field Value +18:53:09 ============================================================================ +18:53:09 [ 1] [ 4] [0810] +18:53:09 [ 7] [ 10] [0321020458] +18:53:09 [ 11] [ 6] [190458] +18:53:09 [ 37] [ 12] [579191904580] +18:53:09 [ 39] [ 2] [00] +18:53:09 [ 70] [ 3] [810] +18:53:09 ============================================================================ +18:53:09 Calculate Source COMM Id = 6 +18:53:09 ============================================================================ +18:53:09 + + +waiting on router queue for slot.... +18:53:11 ============================================================================ +18:53:11 Slot Id : <267> +18:53:11 Transaction Type : REQUEST +18:53:11 Received From : +18:53:11 ============================================================================ +18:53:11 FNo. Len. Field Value +18:53:11 ============================================================================ +18:53:11 [ 1] [ 4] [0800] +18:53:11 [ 2] [ 5] [02531] +18:53:11 [ 3] [ 6] [579188] +18:53:11 [ 7] [ 10] [0320115311] +18:53:11 [ 11] [ 6] [807508] +18:53:11 [ 15] [ 10] [0320115311] +18:53:11 [ 37] [ 11] [57918807508] +18:53:11 [ 70] [ 3] [001] +18:53:11 ============================================================================ +18:53:11 + + +waiting on router queue for slot.... +18:53:11 ============================================================================ +18:53:11 Slot Id : <267> +18:53:11 Transaction Type : RESPONSE +18:53:11 Received From : +18:53:11 ============================================================================ +18:53:11 FNo. Len. Field Value +18:53:11 ============================================================================ +18:53:11 [ 1] [ 4] [0810] +18:53:11 [ 7] [ 10] [0320115311] +18:53:11 [ 11] [ 6] [807508] +18:53:11 [ 15] [ 4] [0320] +18:53:11 [ 37] [ 12] [57918807508] +18:53:11 [ 39] [ 2] [00] +18:53:11 [ 70] [ 3] [001] +18:53:11 ============================================================================ +18:53:11 Sending to : +18:53:11 ============================================================================ +18:53:11 + + +waiting on router queue for slot.... +18:53:13 ============================================================================ +18:53:13 Slot Id : <245> +18:53:13 Transaction Type : REQUEST +18:53:13 Received From : +18:53:13 ============================================================================ +18:53:13 FNo. Len. Field Value +18:53:13 ============================================================================ +18:53:13 [ 1] [ 4] [0800] +18:53:13 [ 7] [ 10] [0320115220] +18:53:13 [ 11] [ 6] [157808] +18:53:13 [ 70] [ 3] [301] +18:53:13 ============================================================================ +18:53:13 + + +waiting on router queue for slot.... +18:53:13 Sending to : +18:53:13 ============================================================================ +18:53:13 ============================================================================ +18:53:13 Slot Id : <245> +18:53:13 Transaction Type : RESPONSE +18:53:13 Received From : +18:53:13 ============================================================================ +18:53:13 FNo. Len. Field Value +18:53:13 ============================================================================ +18:53:13 [ 1] [ 4] [0810] +18:53:13 [ 7] [ 10] [0320115220] +18:53:13 [ 11] [ 6] [157808] +18:53:13 [ 39] [ 2] [00] +18:53:13 [ 70] [ 3] [301] +18:53:13 ============================================================================ +18:53:13 Calculate Source COMM Id = 2 +18:53:13 ============================================================================ +18:53:13 + + +waiting on router queue for slot.... +18:53:15 ============================================================================ +18:53:15 Slot Id : <236> +18:53:15 Transaction Type : REQUEST +18:53:15 Received From : +18:53:15 ============================================================================ +18:53:15 FNo. Len. Field Value +18:53:15 ============================================================================ +18:53:15 [ 1] [ 4] [0200] +18:53:15 [ 2] [ 16] [6688990040035865] +18:53:15 [ 3] [ 6] [300000] +18:53:15 [ 4] [ 12] [000000000000] +18:53:15 [ 7] [ 10] [0320185310] +18:53:15 [ 11] [ 6] [831800] +18:53:15 [ 12] [ 6] [185310] +18:53:15 [ 13] [ 4] [0320] +18:53:15 [ 15] [ 4] [0320] +18:53:15 [ 18] [ 4] [6011] +18:53:15 [ 22] [ 3] [900] +18:53:15 [ 25] [ 2] [02] +18:53:15 [ 28] [ 9] [D00000000] +18:53:15 [ 32] [ 6] [621354] +18:53:15 [ 35] [ 37] [6688990040035865=97111261723947000000] +18:53:15 [ 37] [ 12] [507904229546] +18:53:15 [ 41] [ 8] [05004600] +18:53:15 [ 42] [ 15] [NATIVE ] +18:53:15 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:53:15 [ 49] [ 3] [418] +18:53:15 [ 52] [ 16] [7693BD3C32984424] +18:53:15 ============================================================================ +18:53:15 + + +waiting on router queue for slot.... +18:53:15 Sending to : +18:53:15 ============================================================================ +18:53:15 Sending to : +18:53:15 ============================================================================ +18:53:15 ============================================================================ +18:53:15 Slot Id : <236> +18:53:15 Transaction Type : REQUEST +18:53:15 Received From : +18:53:15 ============================================================================ +18:53:15 FNo. Len. Field Value +18:53:15 ============================================================================ +18:53:15 [ 1] [ 4] [0200] +18:53:15 [ 2] [ 16] [6688990040035865] +18:53:15 [ 3] [ 6] [300000] +18:53:15 [ 4] [ 12] [000000000000] +18:53:15 [ 7] [ 10] [0320185310] +18:53:15 [ 11] [ 6] [831800] +18:53:15 [ 12] [ 6] [185310] +18:53:15 [ 13] [ 4] [0320] +18:53:15 [ 15] [ 4] [0320] +18:53:15 [ 18] [ 4] [6011] +18:53:15 [ 22] [ 3] [900] +18:53:15 [ 25] [ 2] [02] +18:53:15 [ 28] [ 9] [D00000000] +18:53:15 [ 32] [ 6] [621354] +18:53:15 [ 35] [ 37] [6688990040035865=97111261723947000000] +18:53:15 [ 37] [ 12] [507904229546] +18:53:15 [ 41] [ 8] [05004600] +18:53:15 [ 42] [ 15] [NATIVE ] +18:53:15 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:53:15 [ 49] [ 3] [418] +18:53:15 [ 52] [ 16] [7693BD3C32984424] +18:53:15 ============================================================================ +18:53:15 + + +waiting on router queue for slot.... +18:53:15 Sending to : +18:53:15 ============================================================================ +18:53:15 ============================================================================ +18:53:15 Slot Id : <236> +18:53:15 Transaction Type : REQUEST +18:53:15 Received From : +18:53:15 ============================================================================ +18:53:15 FNo. Len. Field Value +18:53:15 ============================================================================ +18:53:15 [ 1] [ 4] [0200] +18:53:15 [ 2] [ 16] [6688990040035865] +18:53:15 [ 3] [ 6] [300000] +18:53:15 [ 4] [ 12] [000000000000] +18:53:15 [ 7] [ 10] [0320185310] +18:53:15 [ 11] [ 6] [831800] +18:53:15 [ 12] [ 6] [185310] +18:53:15 [ 13] [ 4] [0320] +18:53:15 [ 15] [ 4] [0320] +18:53:15 [ 18] [ 4] [6011] +18:53:15 [ 22] [ 3] [900] +18:53:15 [ 25] [ 2] [02] +18:53:15 [ 28] [ 9] [D00000000] +18:53:15 [ 32] [ 6] [621354] +18:53:15 [ 35] [ 37] [6688990040035865=97111261723947000000] +18:53:15 [ 37] [ 12] [507904229546] +18:53:15 [ 41] [ 8] [05004600] +18:53:15 [ 42] [ 15] [NATIVE ] +18:53:15 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:53:15 [ 49] [ 3] [418] +18:53:15 [ 52] [ 16] [34C934FDC80E9B4B] +18:53:15 ============================================================================ +18:53:15 + + +waiting on router queue for slot.... +18:53:15 Sending to : <4> +18:53:15 ============================================================================ +18:53:16 ============================================================================ +18:53:16 Slot Id : <236> +18:53:16 Transaction Type : RESPONSE +18:53:16 Received From : +18:53:16 ============================================================================ +18:53:16 FNo. Len. Field Value +18:53:16 ============================================================================ +18:53:16 [ 1] [ 4] [0210] +18:53:16 [ 2] [ 16] [6688990040035865] +18:53:16 [ 3] [ 6] [300000] +18:53:16 [ 4] [ 12] [000000000000] +18:53:16 [ 11] [ 6] [831800] +18:53:16 [ 12] [ 6] [185310] +18:53:16 [ 15] [ 4] [0320] +18:53:16 [ 18] [ 4] [6011] +18:53:16 [ 32] [ 6] [621354] +18:53:16 [ 35] [ 37] [6688990040035865=97111261723947000000] +18:53:16 [ 37] [ 12] [507904229546] +18:53:16 [ 38] [ 6] [101341] +18:53:16 [ 39] [ 2] [00] +18:53:16 [ 41] [ 8] [05004600] +18:53:16 [ 49] [ 3] [418] +18:53:16 [ 54] [ 20] [0002418C000042161081] +18:53:16 ============================================================================ +18:53:16 Sending to : +18:53:16 ============================================================================ +18:53:16 + + +waiting on router queue for slot.... +18:53:17 ============================================================================ +18:53:17 Slot Id : <236> +18:53:17 Transaction Type : RESPONSE +18:53:17 Received From : +18:53:17 ============================================================================ +18:53:17 FNo. Len. Field Value +18:53:17 ============================================================================ +18:53:17 [ 1] [ 4] [0210] +18:53:17 [ 2] [ 16] [6688990040035865] +18:53:17 [ 3] [ 6] [300000] +18:53:17 [ 4] [ 12] [000000000000] +18:53:17 [ 11] [ 6] [831800] +18:53:17 [ 12] [ 6] [185310] +18:53:17 [ 15] [ 4] [0320] +18:53:17 [ 18] [ 4] [6011] +18:53:17 [ 32] [ 6] [621354] +18:53:17 [ 35] [ 37] [6688990040035865=97111261723947000000] +18:53:17 [ 37] [ 12] [507904229546] +18:53:17 [ 38] [ 6] [101341] +18:53:17 [ 39] [ 2] [00] +18:53:17 [ 41] [ 8] [05004600] +18:53:17 [ 49] [ 3] [418] +18:53:17 [ 54] [ 20] [0002418C000042161081] +18:53:17 ============================================================================ +18:53:17 Calculate Source COMM Id = 0 +18:53:17 ============================================================================ +18:53:17 + + +waiting on router queue for slot.... +18:53:29 ============================================================================ +18:53:29 Slot Id : <294> +18:53:29 Transaction Type : REQUEST +18:53:29 Received From : +18:53:29 ============================================================================ +18:53:29 FNo. Len. Field Value +18:53:29 ============================================================================ +18:53:29 [ 1] [ 4] [0800] +18:53:29 [ 7] [ 10] [0320115236] +18:53:29 [ 11] [ 6] [157809] +18:53:29 [ 70] [ 3] [301] +18:53:29 ============================================================================ +18:53:29 + + +waiting on router queue for slot.... +18:53:29 Sending to : +18:53:29 ============================================================================ +18:53:29 ============================================================================ +18:53:29 Slot Id : <294> +18:53:29 Transaction Type : RESPONSE +18:53:29 Received From : +18:53:29 ============================================================================ +18:53:29 FNo. Len. Field Value +18:53:29 ============================================================================ +18:53:29 [ 1] [ 4] [0810] +18:53:29 [ 7] [ 10] [0320115236] +18:53:29 [ 11] [ 6] [157809] +18:53:29 [ 39] [ 2] [00] +18:53:29 [ 70] [ 3] [301] +18:53:29 ============================================================================ +18:53:29 Calculate Source COMM Id = 2 +18:53:29 ============================================================================ +18:53:29 + + +waiting on router queue for slot.... +18:53:33 ============================================================================ +18:53:33 Slot Id : <303> +18:53:33 Transaction Type : REQUEST +18:53:33 Received From : +18:53:33 ============================================================================ +18:53:33 FNo. Len. Field Value +18:53:33 ============================================================================ +18:53:33 [ 1] [ 4] [0200] +18:53:33 [ 2] [ 16] [6688990102658109] +18:53:33 [ 3] [ 6] [311000] +18:53:33 [ 4] [ 12] [000000000000] +18:53:33 [ 7] [ 10] [0320190118] +18:53:33 [ 11] [ 6] [003144] +18:53:33 [ 12] [ 6] [190118] +18:53:33 [ 13] [ 4] [0320] +18:53:33 [ 14] [ 4] [4209] +18:53:33 [ 15] [ 4] [0320] +18:53:33 [ 18] [ 4] [6011] +18:53:33 [ 22] [ 3] [900] +18:53:33 [ 25] [ 2] [02] +18:53:33 [ 28] [ 9] [000000000] +18:53:33 [ 32] [ 6] [220699] +18:53:33 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:53:33 [ 37] [ 12] [507900186780] +18:53:33 [ 41] [ 8] [08000100] +18:53:33 [ 42] [ 15] [APTRA ] +18:53:33 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:53:33 [ 49] [ 3] [418] +18:53:33 [ 52] [ 16] [4DE0DFDFB71B8AFB] +18:53:33 ============================================================================ +18:53:33 + + +waiting on router queue for slot.... +18:53:33 Sending to : +18:53:33 ============================================================================ +18:53:33 Sending to : +18:53:33 ============================================================================ +18:53:33 ============================================================================ +18:53:33 Slot Id : <303> +18:53:33 Transaction Type : REQUEST +18:53:33 Received From : +18:53:33 ============================================================================ +18:53:33 FNo. Len. Field Value +18:53:33 ============================================================================ +18:53:33 [ 1] [ 4] [0200] +18:53:33 [ 2] [ 16] [6688990102658109] +18:53:33 [ 3] [ 6] [311000] +18:53:33 [ 4] [ 12] [000000000000] +18:53:33 [ 7] [ 10] [0320190118] +18:53:33 [ 11] [ 6] [003144] +18:53:33 [ 12] [ 6] [190118] +18:53:33 [ 13] [ 4] [0320] +18:53:33 [ 14] [ 4] [4209] +18:53:33 [ 15] [ 4] [0320] +18:53:33 [ 18] [ 4] [6011] +18:53:33 [ 22] [ 3] [900] +18:53:33 [ 25] [ 2] [02] +18:53:33 [ 28] [ 9] [000000000] +18:53:33 [ 32] [ 6] [220699] +18:53:33 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:53:33 [ 37] [ 12] [507900186780] +18:53:33 [ 41] [ 8] [08000100] +18:53:33 [ 42] [ 15] [APTRA ] +18:53:33 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:53:33 [ 49] [ 3] [418] +18:53:33 [ 52] [ 16] [4DE0DFDFB71B8AFB] +18:53:33 ============================================================================ +18:53:33 + + +waiting on router queue for slot.... +18:53:33 Sending to : +18:53:33 ============================================================================ +18:53:33 ============================================================================ +18:53:33 Slot Id : <303> +18:53:33 Transaction Type : REQUEST +18:53:33 Received From : +18:53:33 ============================================================================ +18:53:33 FNo. Len. Field Value +18:53:33 ============================================================================ +18:53:33 [ 1] [ 4] [0200] +18:53:33 [ 2] [ 16] [6688990102658109] +18:53:33 [ 3] [ 6] [311000] +18:53:33 [ 4] [ 12] [000000000000] +18:53:33 [ 7] [ 10] [0320190118] +18:53:33 [ 11] [ 6] [003144] +18:53:33 [ 12] [ 6] [190118] +18:53:33 [ 13] [ 4] [0320] +18:53:33 [ 14] [ 4] [4209] +18:53:33 [ 15] [ 4] [0320] +18:53:33 [ 18] [ 4] [6011] +18:53:33 [ 22] [ 3] [900] +18:53:33 [ 25] [ 2] [02] +18:53:33 [ 28] [ 9] [000000000] +18:53:33 [ 32] [ 6] [220699] +18:53:33 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:53:33 [ 37] [ 12] [507900186780] +18:53:33 [ 41] [ 8] [08000100] +18:53:33 [ 42] [ 15] [APTRA ] +18:53:33 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:53:33 [ 49] [ 3] [418] +18:53:33 [ 52] [ 16] [9A7CECD3276AE487] +18:53:33 ============================================================================ +18:53:33 + + +waiting on router queue for slot.... +18:53:33 Sending to : <0> +18:53:33 ============================================================================ +18:53:34 ============================================================================ +18:53:34 Slot Id : <303> +18:53:34 Transaction Type : RESPONSE +18:53:34 Received From : +18:53:34 ============================================================================ +18:53:34 FNo. Len. Field Value +18:53:34 ============================================================================ +18:53:34 [ 1] [ 4] [0210] +18:53:34 [ 2] [ 16] [6688990102658109] +18:53:34 [ 3] [ 6] [311000] +18:53:34 [ 4] [ 12] [000000000000] +18:53:34 [ 7] [ 10] [0320190118] +18:53:34 [ 11] [ 6] [003144] +18:53:34 [ 12] [ 6] [190118] +18:53:34 [ 13] [ 4] [0320] +18:53:34 [ 15] [ 4] [0320] +18:53:34 [ 18] [ 4] [6011] +18:53:34 [ 22] [ 3] [900] +18:53:34 [ 32] [ 6] [220699] +18:53:34 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:53:34 [ 37] [ 12] [507900186780] +18:53:34 [ 39] [ 2] [14] +18:53:34 [ 41] [ 8] [08000100] +18:53:34 [ 49] [ 3] [418] +18:53:34 ============================================================================ +18:53:34 Sending to : +18:53:34 ============================================================================ +18:53:34 + + +waiting on router queue for slot.... +18:53:35 ============================================================================ +18:53:35 Slot Id : <303> +18:53:35 Transaction Type : RESPONSE +18:53:35 Received From : +18:53:35 ============================================================================ +18:53:35 FNo. Len. Field Value +18:53:35 ============================================================================ +18:53:35 [ 1] [ 4] [0210] +18:53:35 [ 2] [ 16] [6688990102658109] +18:53:35 [ 3] [ 6] [311000] +18:53:35 [ 4] [ 12] [000000000000] +18:53:35 [ 7] [ 10] [0320190118] +18:53:35 [ 11] [ 6] [003144] +18:53:35 [ 12] [ 6] [190118] +18:53:35 [ 13] [ 4] [0320] +18:53:35 [ 15] [ 4] [0320] +18:53:35 [ 18] [ 4] [6011] +18:53:35 [ 22] [ 3] [900] +18:53:35 [ 32] [ 6] [220699] +18:53:35 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:53:35 [ 37] [ 12] [507900186780] +18:53:35 [ 39] [ 2] [14] +18:53:35 [ 41] [ 8] [08000100] +18:53:35 [ 49] [ 3] [418] +18:53:35 ============================================================================ +18:53:35 Calculate Source COMM Id = 1 +18:53:35 ============================================================================ +18:53:35 + + +waiting on router queue for slot.... +18:53:44 ============================================================================ +18:53:44 Slot Id : <217> +18:53:44 Transaction Type : REQUEST +18:53:44 Received From : +18:53:44 ============================================================================ +18:53:44 FNo. Len. Field Value +18:53:44 ============================================================================ +18:53:44 [ 1] [ 4] [0800] +18:53:44 [ 7] [ 10] [0320115251] +18:53:44 [ 11] [ 6] [157810] +18:53:44 [ 70] [ 3] [301] +18:53:44 ============================================================================ +18:53:44 + + +waiting on router queue for slot.... +18:53:44 Sending to : +18:53:44 ============================================================================ +18:53:44 ============================================================================ +18:53:44 Slot Id : <217> +18:53:44 Transaction Type : RESPONSE +18:53:44 Received From : +18:53:44 ============================================================================ +18:53:44 FNo. Len. Field Value +18:53:44 ============================================================================ +18:53:44 [ 1] [ 4] [0810] +18:53:44 [ 7] [ 10] [0320115251] +18:53:44 [ 11] [ 6] [157810] +18:53:44 [ 39] [ 2] [00] +18:53:44 [ 70] [ 3] [301] +18:53:44 ============================================================================ +18:53:44 Calculate Source COMM Id = 2 +18:53:44 ============================================================================ +18:53:44 + + +waiting on router queue for slot.... +18:53:47 ============================================================================ +18:53:47 Slot Id : <293> +18:53:47 Transaction Type : REQUEST +18:53:47 Received From : +18:53:47 ============================================================================ +18:53:47 FNo. Len. Field Value +18:53:47 ============================================================================ +18:53:47 [ 1] [ 4] [0200] +18:53:47 [ 2] [ 16] [1808930200005007] +18:53:47 [ 3] [ 6] [011000] +18:53:47 [ 4] [ 12] [000050000000] +18:53:47 [ 7] [ 10] [0320185342] +18:53:47 [ 11] [ 6] [831888] +18:53:47 [ 12] [ 6] [185342] +18:53:47 [ 13] [ 4] [0320] +18:53:47 [ 15] [ 4] [0320] +18:53:47 [ 18] [ 4] [6011] +18:53:47 [ 22] [ 3] [900] +18:53:47 [ 25] [ 2] [02] +18:53:47 [ 28] [ 9] [D00002000] +18:53:47 [ 32] [ 6] [621354] +18:53:47 [ 35] [ 27] [1808930200005007=1803500656] +18:53:47 [ 37] [ 12] [507902859529] +18:53:47 [ 41] [ 8] [16001100] +18:53:47 [ 42] [ 15] [NATIVE ] +18:53:47 [ 43] [ 40] [SOUTH STATION Xaythany LAO] +18:53:47 [ 49] [ 3] [418] +18:53:47 [ 52] [ 16] [9FB4697097A1B912] +18:53:47 ============================================================================ +18:53:47 + + +waiting on router queue for slot.... +18:53:47 Sending to : +18:53:47 ============================================================================ +18:53:47 Sending to : +18:53:47 ============================================================================ +18:53:48 ============================================================================ +18:53:48 Slot Id : <293> +18:53:48 Transaction Type : REQUEST +18:53:48 Received From : +18:53:48 ============================================================================ +18:53:48 FNo. Len. Field Value +18:53:48 ============================================================================ +18:53:48 [ 1] [ 4] [0200] +18:53:48 [ 2] [ 16] [1808930200005007] +18:53:48 [ 3] [ 6] [011000] +18:53:48 [ 4] [ 12] [000050000000] +18:53:48 [ 7] [ 10] [0320185342] +18:53:48 [ 11] [ 6] [831888] +18:53:48 [ 12] [ 6] [185342] +18:53:48 [ 13] [ 4] [0320] +18:53:48 [ 15] [ 4] [0320] +18:53:48 [ 18] [ 4] [6011] +18:53:48 [ 22] [ 3] [900] +18:53:48 [ 25] [ 2] [02] +18:53:48 [ 28] [ 9] [D00002000] +18:53:48 [ 32] [ 6] [621354] +18:53:48 [ 35] [ 27] [1808930200005007=1803500656] +18:53:48 [ 37] [ 12] [507902859529] +18:53:48 [ 41] [ 8] [16001100] +18:53:48 [ 42] [ 15] [NATIVE ] +18:53:48 [ 43] [ 40] [SOUTH STATION Xaythany LAO] +18:53:48 [ 49] [ 3] [418] +18:53:48 [ 52] [ 16] [9FB4697097A1B912] +18:53:48 ============================================================================ +18:53:48 + + +waiting on router queue for slot.... +18:53:48 Sending to : +18:53:48 ============================================================================ +18:53:48 ============================================================================ +18:53:48 Slot Id : <293> +18:53:48 Transaction Type : REQUEST +18:53:48 Received From : +18:53:48 ============================================================================ +18:53:48 FNo. Len. Field Value +18:53:48 ============================================================================ +18:53:48 [ 1] [ 4] [0200] +18:53:48 [ 2] [ 16] [1808930200005007] +18:53:48 [ 3] [ 6] [011000] +18:53:48 [ 4] [ 12] [000050000000] +18:53:48 [ 7] [ 10] [0320185342] +18:53:48 [ 11] [ 6] [831888] +18:53:48 [ 12] [ 6] [185342] +18:53:48 [ 13] [ 4] [0320] +18:53:48 [ 15] [ 4] [0320] +18:53:48 [ 18] [ 4] [6011] +18:53:48 [ 22] [ 3] [900] +18:53:48 [ 25] [ 2] [02] +18:53:48 [ 28] [ 9] [D00002000] +18:53:48 [ 32] [ 6] [621354] +18:53:48 [ 35] [ 27] [1808930200005007=1803500656] +18:53:48 [ 37] [ 12] [507902859529] +18:53:48 [ 41] [ 8] [16001100] +18:53:48 [ 42] [ 15] [NATIVE ] +18:53:48 [ 43] [ 40] [SOUTH STATION Xaythany LAO] +18:53:48 [ 49] [ 3] [418] +18:53:48 [ 52] [ 16] [5999AA456B499927] +18:53:48 ============================================================================ +18:53:48 + + +waiting on router queue for slot.... +18:53:48 Sending to : <2> +18:53:48 ============================================================================ +18:53:51 ============================================================================ +18:53:51 Slot Id : <293> +18:53:51 Transaction Type : RESPONSE +18:53:51 Received From : +18:53:51 ============================================================================ +18:53:51 FNo. Len. Field Value +18:53:51 ============================================================================ +18:53:51 [ 1] [ 4] [0210] +18:53:51 [ 2] [ 16] [1808930200005007] +18:53:51 [ 3] [ 6] [011000] +18:53:51 [ 4] [ 12] [000050000000] +18:53:51 [ 6] [ 12] [000050000000] +18:53:51 [ 7] [ 10] [0320185342] +18:53:51 [ 11] [ 6] [831888] +18:53:51 [ 12] [ 6] [185342] +18:53:51 [ 13] [ 4] [0320] +18:53:51 [ 18] [ 4] [6011] +18:53:51 [ 19] [ 3] [418] +18:53:51 [ 22] [ 3] [021] +18:53:51 [ 32] [ 6] [621354] +18:53:51 [ 35] [ 27] [1808930200005007=1803500656] +18:53:51 [ 37] [ 12] [507902859529] +18:53:51 [ 38] [ 6] [831888] +18:53:51 [ 39] [ 2] [00] +18:53:51 [ 41] [ 8] [16001100] +18:53:51 [ 49] [ 3] [418] +18:53:51 [ 52] [ 16] [5999AA456B499927] +18:53:51 [ 54] [ 20] [1001418C000101133500] +18:53:51 ============================================================================ +18:53:51 Sending to : +18:53:51 ============================================================================ +18:53:51 + + +waiting on router queue for slot.... +18:53:52 ============================================================================ +18:53:52 Slot Id : <298> +18:53:52 Transaction Type : REQUEST +18:53:52 Received From : +18:53:52 ============================================================================ +18:53:52 FNo. Len. Field Value +18:53:52 ============================================================================ +18:53:52 [ 1] [ 4] [0200] +18:53:52 [ 2] [ 16] [6688990108417104] +18:53:52 [ 3] [ 6] [010000] +18:53:52 [ 4] [ 12] [000005000000] +18:53:52 [ 7] [ 10] [0320185346] +18:53:52 [ 11] [ 6] [831900] +18:53:52 [ 12] [ 6] [185346] +18:53:52 [ 13] [ 4] [0320] +18:53:52 [ 15] [ 4] [0320] +18:53:52 [ 18] [ 4] [6011] +18:53:52 [ 22] [ 3] [900] +18:53:52 [ 25] [ 2] [02] +18:53:52 [ 28] [ 9] [D00002000] +18:53:52 [ 32] [ 6] [621354] +18:53:52 [ 35] [ 37] [6688990108417104=44061231710449200000] +18:53:52 [ 37] [ 12] [507904719809] +18:53:52 [ 41] [ 8] [18001000] +18:53:52 [ 42] [ 15] [NATIVE ] +18:53:52 [ 43] [ 40] [Khoua Unit Khoua LAO] +18:53:52 [ 49] [ 3] [418] +18:53:52 [ 52] [ 16] [53FDC4AB4B08F28E] +18:53:52 ============================================================================ +18:53:52 + + +waiting on router queue for slot.... +18:53:52 Sending to : +18:53:52 ============================================================================ +18:53:52 Sending to : +18:53:52 ============================================================================ +18:53:52 ============================================================================ +18:53:52 Slot Id : <298> +18:53:52 Transaction Type : REQUEST +18:53:52 Received From : +18:53:52 ============================================================================ +18:53:52 FNo. Len. Field Value +18:53:52 ============================================================================ +18:53:52 [ 1] [ 4] [0200] +18:53:52 [ 2] [ 16] [6688990108417104] +18:53:52 [ 3] [ 6] [010000] +18:53:52 [ 4] [ 12] [000005000000] +18:53:52 [ 7] [ 10] [0320185346] +18:53:52 [ 11] [ 6] [831900] +18:53:52 [ 12] [ 6] [185346] +18:53:52 [ 13] [ 4] [0320] +18:53:52 [ 15] [ 4] [0320] +18:53:52 [ 18] [ 4] [6011] +18:53:52 [ 22] [ 3] [900] +18:53:52 [ 25] [ 2] [02] +18:53:52 [ 28] [ 9] [D00002000] +18:53:52 [ 32] [ 6] [621354] +18:53:52 [ 35] [ 37] [6688990108417104=44061231710449200000] +18:53:52 [ 37] [ 12] [507904719809] +18:53:52 [ 41] [ 8] [18001000] +18:53:52 [ 42] [ 15] [NATIVE ] +18:53:52 [ 43] [ 40] [Khoua Unit Khoua LAO] +18:53:52 [ 49] [ 3] [418] +18:53:52 [ 52] [ 16] [53FDC4AB4B08F28E] +18:53:52 ============================================================================ +18:53:52 + + +waiting on router queue for slot.... +18:53:52 Sending to : +18:53:52 ============================================================================ +18:53:52 ============================================================================ +18:53:52 Slot Id : <298> +18:53:52 Transaction Type : REQUEST +18:53:52 Received From : +18:53:52 ============================================================================ +18:53:52 FNo. Len. Field Value +18:53:52 ============================================================================ +18:53:52 [ 1] [ 4] [0200] +18:53:52 [ 2] [ 16] [6688990108417104] +18:53:52 [ 3] [ 6] [010000] +18:53:52 [ 4] [ 12] [000005000000] +18:53:52 [ 7] [ 10] [0320185346] +18:53:52 [ 11] [ 6] [831900] +18:53:52 [ 12] [ 6] [185346] +18:53:52 [ 13] [ 4] [0320] +18:53:52 [ 15] [ 4] [0320] +18:53:52 [ 18] [ 4] [6011] +18:53:52 [ 22] [ 3] [900] +18:53:52 [ 25] [ 2] [02] +18:53:52 [ 28] [ 9] [D00002000] +18:53:52 [ 32] [ 6] [621354] +18:53:52 [ 35] [ 37] [6688990108417104=44061231710449200000] +18:53:52 [ 37] [ 12] [507904719809] +18:53:52 [ 41] [ 8] [18001000] +18:53:52 [ 42] [ 15] [NATIVE ] +18:53:52 [ 43] [ 40] [Khoua Unit Khoua LAO] +18:53:52 [ 49] [ 3] [418] +18:53:52 [ 52] [ 16] [F9F9AC4E27397504] +18:53:52 ============================================================================ +18:53:52 + + +waiting on router queue for slot.... +18:53:52 Sending to : <4> +18:53:52 ============================================================================ +18:53:52 ============================================================================ +18:53:52 Slot Id : <293> +18:53:52 Transaction Type : RESPONSE +18:53:52 Received From : +18:53:52 ============================================================================ +18:53:52 FNo. Len. Field Value +18:53:52 ============================================================================ +18:53:52 [ 1] [ 4] [0210] +18:53:52 [ 2] [ 16] [1808930200005007] +18:53:52 [ 3] [ 6] [011000] +18:53:52 [ 4] [ 12] [000050000000] +18:53:52 [ 6] [ 12] [000050000000] +18:53:52 [ 7] [ 10] [0320185342] +18:53:52 [ 11] [ 6] [831888] +18:53:52 [ 12] [ 6] [185342] +18:53:52 [ 13] [ 4] [0320] +18:53:52 [ 18] [ 4] [6011] +18:53:52 [ 19] [ 3] [418] +18:53:52 [ 22] [ 3] [021] +18:53:52 [ 32] [ 6] [621354] +18:53:52 [ 35] [ 27] [1808930200005007=1803500656] +18:53:52 [ 37] [ 12] [507902859529] +18:53:52 [ 38] [ 6] [831888] +18:53:52 [ 39] [ 2] [00] +18:53:52 [ 41] [ 8] [16001100] +18:53:52 [ 49] [ 3] [418] +18:53:52 [ 52] [ 16] [5999AA456B499927] +18:53:52 [ 54] [ 20] [1001418C000101133500] +18:53:52 ============================================================================ +18:53:52 Calculate Source COMM Id = 0 +18:53:52 ============================================================================ +18:53:52 + + +waiting on router queue for slot.... +18:53:53 ============================================================================ +18:53:53 Slot Id : <298> +18:53:53 Transaction Type : RESPONSE +18:53:53 Received From : +18:53:53 ============================================================================ +18:53:53 FNo. Len. Field Value +18:53:53 ============================================================================ +18:53:53 [ 1] [ 4] [0210] +18:53:53 [ 2] [ 16] [6688990108417104] +18:53:53 [ 3] [ 6] [010000] +18:53:53 [ 4] [ 12] [000005000000] +18:53:53 [ 11] [ 6] [831900] +18:53:53 [ 12] [ 6] [185346] +18:53:53 [ 15] [ 4] [0320] +18:53:53 [ 18] [ 4] [6011] +18:53:53 [ 32] [ 6] [621354] +18:53:53 [ 35] [ 37] [6688990108417104=44061231710449200000] +18:53:53 [ 37] [ 12] [507904719809] +18:53:53 [ 38] [ 6] [025149] +18:53:53 [ 39] [ 2] [00] +18:53:53 [ 41] [ 8] [18001000] +18:53:53 [ 49] [ 3] [418] +18:53:53 [ 54] [ 20] [0002418C000077436912] +18:53:53 ============================================================================ +18:53:53 Sending to : +18:53:53 ============================================================================ +18:53:53 + + +waiting on router queue for slot.... +18:53:55 ============================================================================ +18:53:55 Slot Id : <298> +18:53:55 Transaction Type : RESPONSE +18:53:55 Received From : +18:53:55 ============================================================================ +18:53:55 FNo. Len. Field Value +18:53:55 ============================================================================ +18:53:55 [ 1] [ 4] [0210] +18:53:55 [ 2] [ 16] [6688990108417104] +18:53:55 [ 3] [ 6] [010000] +18:53:55 [ 4] [ 12] [000005000000] +18:53:55 [ 11] [ 6] [831900] +18:53:55 [ 12] [ 6] [185346] +18:53:55 [ 15] [ 4] [0320] +18:53:55 [ 18] [ 4] [6011] +18:53:55 [ 32] [ 6] [621354] +18:53:55 [ 35] [ 37] [6688990108417104=44061231710449200000] +18:53:55 [ 37] [ 12] [507904719809] +18:53:55 [ 38] [ 6] [025149] +18:53:55 [ 39] [ 2] [00] +18:53:55 [ 41] [ 8] [18001000] +18:53:55 [ 49] [ 3] [418] +18:53:55 [ 54] [ 20] [0002418C000077436912] +18:53:55 ============================================================================ +18:53:55 Calculate Source COMM Id = 0 +18:53:55 ============================================================================ +18:53:55 + + +waiting on router queue for slot.... +18:54:02 ============================================================================ +18:54:02 Slot Id : <300> +18:54:02 Transaction Type : REQUEST +18:54:02 Received From : +18:54:02 ============================================================================ +18:54:02 FNo. Len. Field Value +18:54:02 ============================================================================ +18:54:02 [ 1] [ 4] [0200] +18:54:02 [ 2] [ 16] [6688990700163106] +18:54:02 [ 3] [ 6] [011000] +18:54:02 [ 4] [ 12] [000030000000] +18:54:02 [ 7] [ 10] [0320115307] +18:54:02 [ 11] [ 6] [271332] +18:54:02 [ 12] [ 6] [185307] +18:54:02 [ 13] [ 4] [0320] +18:54:02 [ 14] [ 4] [4303] +18:54:02 [ 15] [ 4] [0320] +18:54:02 [ 18] [ 4] [6011] +18:54:02 [ 19] [ 3] [418] +18:54:02 [ 22] [ 3] [021] +18:54:02 [ 25] [ 2] [01] +18:54:02 [ 28] [ 9] [D00002000] +18:54:02 [ 32] [ 6] [180893] +18:54:02 [ 35] [ 37] [6688990700163106=43030071310693800000] +18:54:02 [ 37] [ 12] [507911271332] +18:54:02 [ 41] [ 8] [0104NUOL] +18:54:02 [ 42] [ 15] [999999 ] +18:54:02 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +18:54:02 [ 49] [ 3] [418] +18:54:02 [ 52] [ 16] [029EC6745F641FFC] +18:54:02 ============================================================================ +18:54:02 + + +waiting on router queue for slot.... +18:54:02 Sending to : +18:54:02 ============================================================================ +18:54:02 Sending to : +18:54:02 ============================================================================ +18:54:02 ============================================================================ +18:54:02 Slot Id : <300> +18:54:02 Transaction Type : REQUEST +18:54:02 Received From : +18:54:02 ============================================================================ +18:54:02 FNo. Len. Field Value +18:54:02 ============================================================================ +18:54:02 [ 1] [ 4] [0200] +18:54:02 [ 2] [ 16] [6688990700163106] +18:54:02 [ 3] [ 6] [011000] +18:54:02 [ 4] [ 12] [000030000000] +18:54:02 [ 7] [ 10] [0320115307] +18:54:02 [ 11] [ 6] [271332] +18:54:02 [ 12] [ 6] [185307] +18:54:02 [ 13] [ 4] [0320] +18:54:02 [ 14] [ 4] [4303] +18:54:02 [ 15] [ 4] [0320] +18:54:02 [ 18] [ 4] [6011] +18:54:02 [ 19] [ 3] [418] +18:54:02 [ 22] [ 3] [021] +18:54:02 [ 25] [ 2] [01] +18:54:02 [ 28] [ 9] [D00002000] +18:54:02 [ 32] [ 6] [180893] +18:54:02 [ 35] [ 37] [6688990700163106=43030071310693800000] +18:54:02 [ 37] [ 12] [507911271332] +18:54:02 [ 41] [ 8] [0104NUOL] +18:54:02 [ 42] [ 15] [999999 ] +18:54:02 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +18:54:02 [ 49] [ 3] [418] +18:54:02 [ 52] [ 16] [029EC6745F641FFC] +18:54:02 ============================================================================ +18:54:02 + + +waiting on router queue for slot.... +18:54:02 Sending to : +18:54:02 ============================================================================ +18:54:02 ============================================================================ +18:54:02 Slot Id : <300> +18:54:02 Transaction Type : REQUEST +18:54:02 Received From : +18:54:02 ============================================================================ +18:54:02 FNo. Len. Field Value +18:54:02 ============================================================================ +18:54:02 [ 1] [ 4] [0200] +18:54:02 [ 2] [ 16] [6688990700163106] +18:54:02 [ 3] [ 6] [011000] +18:54:02 [ 4] [ 12] [000030000000] +18:54:02 [ 7] [ 10] [0320115307] +18:54:02 [ 11] [ 6] [271332] +18:54:02 [ 12] [ 6] [185307] +18:54:02 [ 13] [ 4] [0320] +18:54:02 [ 14] [ 4] [4303] +18:54:02 [ 15] [ 4] [0320] +18:54:02 [ 18] [ 4] [6011] +18:54:02 [ 19] [ 3] [418] +18:54:02 [ 22] [ 3] [021] +18:54:02 [ 25] [ 2] [01] +18:54:02 [ 28] [ 9] [D00002000] +18:54:02 [ 32] [ 6] [180893] +18:54:02 [ 35] [ 37] [6688990700163106=43030071310693800000] +18:54:02 [ 37] [ 12] [507911271332] +18:54:02 [ 41] [ 8] [0104NUOL] +18:54:02 [ 42] [ 15] [999999 ] +18:54:02 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +18:54:02 [ 49] [ 3] [418] +18:54:02 [ 52] [ 16] [CA205DB0DD1A185E] +18:54:02 ============================================================================ +18:54:02 + + +waiting on router queue for slot.... +18:54:02 Sending to : <0> +18:54:02 ============================================================================ +18:54:02 ============================================================================ +18:54:02 Slot Id : <300> +18:54:02 Transaction Type : RESPONSE +18:54:02 Received From : +18:54:02 ============================================================================ +18:54:02 FNo. Len. Field Value +18:54:02 ============================================================================ +18:54:02 [ 1] [ 4] [0210] +18:54:02 [ 2] [ 16] [6688990700163106] +18:54:02 [ 3] [ 6] [011000] +18:54:02 [ 4] [ 12] [000030000000] +18:54:02 [ 7] [ 10] [0320115307] +18:54:02 [ 11] [ 6] [271332] +18:54:02 [ 12] [ 6] [185307] +18:54:02 [ 13] [ 4] [0320] +18:54:02 [ 15] [ 4] [0320] +18:54:02 [ 18] [ 4] [6011] +18:54:02 [ 19] [ 3] [418] +18:54:02 [ 22] [ 3] [021] +18:54:02 [ 32] [ 6] [180893] +18:54:02 [ 35] [ 37] [6688990700163106=43030071310693800000] +18:54:02 [ 37] [ 12] [507911271332] +18:54:02 [ 39] [ 2] [14] +18:54:02 [ 41] [ 8] [0104NUOL] +18:54:02 [ 49] [ 3] [418] +18:54:02 ============================================================================ +18:54:02 Sending to : +18:54:02 ============================================================================ +18:54:02 + + +waiting on router queue for slot.... +18:54:03 ============================================================================ +18:54:03 Slot Id : <300> +18:54:03 Transaction Type : RESPONSE +18:54:03 Received From : +18:54:03 ============================================================================ +18:54:03 FNo. Len. Field Value +18:54:03 ============================================================================ +18:54:03 [ 1] [ 4] [0210] +18:54:03 [ 2] [ 16] [6688990700163106] +18:54:03 [ 3] [ 6] [011000] +18:54:03 [ 4] [ 12] [000030000000] +18:54:03 [ 7] [ 10] [0320115307] +18:54:03 [ 11] [ 6] [271332] +18:54:03 [ 12] [ 6] [185307] +18:54:03 [ 13] [ 4] [0320] +18:54:03 [ 15] [ 4] [0320] +18:54:03 [ 18] [ 4] [6011] +18:54:03 [ 19] [ 3] [418] +18:54:03 [ 22] [ 3] [021] +18:54:03 [ 32] [ 6] [180893] +18:54:03 [ 35] [ 37] [6688990700163106=43030071310693800000] +18:54:03 [ 37] [ 12] [507911271332] +18:54:03 [ 39] [ 2] [14] +18:54:03 [ 41] [ 8] [0104NUOL] +18:54:03 [ 49] [ 3] [418] +18:54:03 ============================================================================ +18:54:03 Calculate Source COMM Id = 2 +18:54:03 ============================================================================ +18:54:03 + + +waiting on router queue for slot.... +18:54:11 ============================================================================ +18:54:11 Slot Id : <299> +18:54:11 Transaction Type : REQUEST +18:54:11 Received From : +18:54:11 ============================================================================ +18:54:11 FNo. Len. Field Value +18:54:11 ============================================================================ +18:54:11 [ 1] [ 4] [0200] +18:54:11 [ 2] [ 16] [6688990040035865] +18:54:11 [ 3] [ 6] [300000] +18:54:11 [ 4] [ 12] [000000000000] +18:54:11 [ 7] [ 10] [0320185406] +18:54:11 [ 11] [ 6] [831938] +18:54:11 [ 12] [ 6] [185406] +18:54:11 [ 13] [ 4] [0320] +18:54:11 [ 15] [ 4] [0320] +18:54:11 [ 18] [ 4] [6011] +18:54:11 [ 22] [ 3] [900] +18:54:11 [ 25] [ 2] [02] +18:54:11 [ 28] [ 9] [D00000000] +18:54:11 [ 32] [ 6] [621354] +18:54:11 [ 35] [ 37] [6688990040035865=97111261723947000000] +18:54:11 [ 37] [ 12] [507904229547] +18:54:11 [ 41] [ 8] [05004600] +18:54:11 [ 42] [ 15] [NATIVE ] +18:54:11 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:54:11 [ 49] [ 3] [418] +18:54:11 [ 52] [ 16] [7693BD3C32984424] +18:54:11 ============================================================================ +18:54:11 + + +waiting on router queue for slot.... +18:54:11 Sending to : +18:54:11 ============================================================================ +18:54:11 Sending to : +18:54:11 ============================================================================ +18:54:11 ============================================================================ +18:54:11 Slot Id : <299> +18:54:11 Transaction Type : REQUEST +18:54:11 Received From : +18:54:11 ============================================================================ +18:54:11 FNo. Len. Field Value +18:54:11 ============================================================================ +18:54:11 [ 1] [ 4] [0200] +18:54:11 [ 2] [ 16] [6688990040035865] +18:54:11 [ 3] [ 6] [300000] +18:54:11 [ 4] [ 12] [000000000000] +18:54:11 [ 7] [ 10] [0320185406] +18:54:11 [ 11] [ 6] [831938] +18:54:11 [ 12] [ 6] [185406] +18:54:11 [ 13] [ 4] [0320] +18:54:11 [ 15] [ 4] [0320] +18:54:11 [ 18] [ 4] [6011] +18:54:11 [ 22] [ 3] [900] +18:54:11 [ 25] [ 2] [02] +18:54:11 [ 28] [ 9] [D00000000] +18:54:11 [ 32] [ 6] [621354] +18:54:11 [ 35] [ 37] [6688990040035865=97111261723947000000] +18:54:11 [ 37] [ 12] [507904229547] +18:54:11 [ 41] [ 8] [05004600] +18:54:11 [ 42] [ 15] [NATIVE ] +18:54:11 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:54:11 [ 49] [ 3] [418] +18:54:11 [ 52] [ 16] [7693BD3C32984424] +18:54:11 ============================================================================ +18:54:11 + + +waiting on router queue for slot.... +18:54:11 Sending to : +18:54:11 ============================================================================ +18:54:11 ============================================================================ +18:54:11 Slot Id : <299> +18:54:11 Transaction Type : REQUEST +18:54:11 Received From : +18:54:11 ============================================================================ +18:54:11 FNo. Len. Field Value +18:54:11 ============================================================================ +18:54:11 [ 1] [ 4] [0200] +18:54:11 [ 2] [ 16] [6688990040035865] +18:54:11 [ 3] [ 6] [300000] +18:54:11 [ 4] [ 12] [000000000000] +18:54:11 [ 7] [ 10] [0320185406] +18:54:11 [ 11] [ 6] [831938] +18:54:11 [ 12] [ 6] [185406] +18:54:11 [ 13] [ 4] [0320] +18:54:11 [ 15] [ 4] [0320] +18:54:11 [ 18] [ 4] [6011] +18:54:11 [ 22] [ 3] [900] +18:54:11 [ 25] [ 2] [02] +18:54:11 [ 28] [ 9] [D00000000] +18:54:11 [ 32] [ 6] [621354] +18:54:11 [ 35] [ 37] [6688990040035865=97111261723947000000] +18:54:11 [ 37] [ 12] [507904229547] +18:54:11 [ 41] [ 8] [05004600] +18:54:11 [ 42] [ 15] [NATIVE ] +18:54:11 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +18:54:11 [ 49] [ 3] [418] +18:54:11 [ 52] [ 16] [34C934FDC80E9B4B] +18:54:11 ============================================================================ +18:54:11 + + +waiting on router queue for slot.... +18:54:11 Sending to : <4> +18:54:11 ============================================================================ +18:54:12 ============================================================================ +18:54:12 Slot Id : <299> +18:54:12 Transaction Type : RESPONSE +18:54:12 Received From : +18:54:12 ============================================================================ +18:54:12 FNo. Len. Field Value +18:54:12 ============================================================================ +18:54:12 [ 1] [ 4] [0210] +18:54:12 [ 2] [ 16] [6688990040035865] +18:54:12 [ 3] [ 6] [300000] +18:54:12 [ 4] [ 12] [000000000000] +18:54:12 [ 11] [ 6] [831938] +18:54:12 [ 12] [ 6] [185406] +18:54:12 [ 15] [ 4] [0320] +18:54:12 [ 18] [ 4] [6011] +18:54:12 [ 32] [ 6] [621354] +18:54:12 [ 35] [ 37] [6688990040035865=97111261723947000000] +18:54:12 [ 37] [ 12] [507904229547] +18:54:12 [ 38] [ 6] [157830] +18:54:12 [ 39] [ 2] [00] +18:54:12 [ 41] [ 8] [05004600] +18:54:12 [ 49] [ 3] [418] +18:54:12 [ 54] [ 20] [0002418C000042161081] +18:54:12 ============================================================================ +18:54:12 Sending to : +18:54:12 ============================================================================ +18:54:12 + + +waiting on router queue for slot.... +18:54:13 ============================================================================ +18:54:13 Slot Id : <257> +18:54:13 Transaction Type : REQUEST +18:54:13 Received From : +18:54:13 ============================================================================ +18:54:13 FNo. Len. Field Value +18:54:13 ============================================================================ +18:54:13 [ 1] [ 4] [0800] +18:54:13 [ 2] [ 5] [02531] +18:54:13 [ 3] [ 6] [579188] +18:54:13 [ 7] [ 10] [0320115413] +18:54:13 [ 11] [ 6] [807509] +18:54:13 [ 15] [ 10] [0320115413] +18:54:13 [ 37] [ 11] [57918807509] +18:54:13 [ 70] [ 3] [001] +18:54:13 ============================================================================ +18:54:13 + + +waiting on router queue for slot.... +18:54:13 ============================================================================ +18:54:13 Slot Id : <257> +18:54:13 Transaction Type : RESPONSE +18:54:13 Received From : +18:54:13 ============================================================================ +18:54:13 FNo. Len. Field Value +18:54:13 ============================================================================ +18:54:13 [ 1] [ 4] [0810] +18:54:13 [ 7] [ 10] [0320115413] +18:54:13 [ 11] [ 6] [807509] +18:54:13 [ 15] [ 4] [0320] +18:54:13 [ 37] [ 12] [57918807509] +18:54:13 [ 39] [ 2] [00] +18:54:13 [ 70] [ 3] [001] +18:54:13 ============================================================================ +18:54:13 Sending to : +18:54:13 ============================================================================ +18:54:13 + + +waiting on router queue for slot.... +18:54:14 ============================================================================ +18:54:14 Slot Id : <299> +18:54:14 Transaction Type : RESPONSE +18:54:14 Received From : +18:54:14 ============================================================================ +18:54:14 FNo. Len. Field Value +18:54:14 ============================================================================ +18:54:14 [ 1] [ 4] [0210] +18:54:14 [ 2] [ 16] [6688990040035865] +18:54:14 [ 3] [ 6] [300000] +18:54:14 [ 4] [ 12] [000000000000] +18:54:14 [ 11] [ 6] [831938] +18:54:14 [ 12] [ 6] [185406] +18:54:14 [ 15] [ 4] [0320] +18:54:14 [ 18] [ 4] [6011] +18:54:14 [ 32] [ 6] [621354] +18:54:14 [ 35] [ 37] [6688990040035865=97111261723947000000] +18:54:14 [ 37] [ 12] [507904229547] +18:54:14 [ 38] [ 6] [157830] +18:54:14 [ 39] [ 2] [00] +18:54:14 [ 41] [ 8] [05004600] +18:54:14 [ 49] [ 3] [418] +18:54:14 [ 54] [ 20] [0002418C000042161081] +18:54:14 ============================================================================ +18:54:14 Calculate Source COMM Id = 0 +18:54:14 ============================================================================ +18:54:14 + + +waiting on router queue for slot.... +18:54:14 ============================================================================ +18:54:14 Slot Id : <278> +18:54:14 Transaction Type : REQUEST +18:54:14 Received From : +18:54:14 ============================================================================ +18:54:14 FNo. Len. Field Value +18:54:14 ============================================================================ +18:54:14 [ 1] [ 4] [0800] +18:54:14 [ 7] [ 10] [0321020603] +18:54:14 [ 11] [ 6] [190603] +18:54:14 [ 37] [ 12] [57919190603] +18:54:14 [ 70] [ 3] [301] +18:54:14 ============================================================================ +18:54:14 + + +waiting on router queue for slot.... +18:54:14 Sending to : +18:54:14 ============================================================================ +18:54:14 ============================================================================ +18:54:14 Slot Id : <278> +18:54:14 Transaction Type : RESPONSE +18:54:14 Received From : +18:54:14 ============================================================================ +18:54:14 FNo. Len. Field Value +18:54:14 ============================================================================ +18:54:14 [ 1] [ 4] [0810] +18:54:14 [ 7] [ 10] [0321020603] +18:54:14 [ 11] [ 6] [190603] +18:54:14 [ 37] [ 12] [579191906030] +18:54:14 [ 39] [ 2] [00] +18:54:14 [ 70] [ 3] [810] +18:54:14 ============================================================================ +18:54:14 Calculate Source COMM Id = 6 +18:54:14 ============================================================================ +18:54:14 + + +waiting on router queue for slot.... +18:54:15 ============================================================================ +18:54:15 Slot Id : <281> +18:54:15 Transaction Type : REQUEST +18:54:15 Received From : +18:54:15 ============================================================================ +18:54:15 FNo. Len. Field Value +18:54:15 ============================================================================ +18:54:15 [ 1] [ 4] [0800] +18:54:15 [ 7] [ 10] [0320115321] +18:54:15 [ 11] [ 6] [157811] +18:54:15 [ 70] [ 3] [301] +18:54:15 ============================================================================ +18:54:15 + + +waiting on router queue for slot.... +18:54:15 Sending to : +18:54:15 ============================================================================ +18:54:15 ============================================================================ +18:54:15 Slot Id : <281> +18:54:15 Transaction Type : RESPONSE +18:54:15 Received From : +18:54:15 ============================================================================ +18:54:15 FNo. Len. Field Value +18:54:15 ============================================================================ +18:54:15 [ 1] [ 4] [0810] +18:54:15 [ 7] [ 10] [0320115321] +18:54:15 [ 11] [ 6] [157811] +18:54:15 [ 39] [ 2] [00] +18:54:15 [ 70] [ 3] [301] +18:54:15 ============================================================================ +18:54:15 Calculate Source COMM Id = 2 +18:54:15 ============================================================================ +18:54:15 + + +waiting on router queue for slot.... +18:54:16 ============================================================================ +18:54:16 Slot Id : <308> +18:54:16 Transaction Type : REQUEST +18:54:16 Received From : +18:54:16 ============================================================================ +18:54:16 FNo. Len. Field Value +18:54:16 ============================================================================ +18:54:16 [ 1] [ 4] [0200] +18:54:16 [ 2] [ 16] [6688990102658109] +18:54:16 [ 3] [ 6] [310000] +18:54:16 [ 4] [ 12] [000000000000] +18:54:16 [ 7] [ 10] [0320190201] +18:54:16 [ 11] [ 6] [003147] +18:54:16 [ 12] [ 6] [190201] +18:54:16 [ 13] [ 4] [0320] +18:54:16 [ 14] [ 4] [4209] +18:54:16 [ 15] [ 4] [0320] +18:54:16 [ 18] [ 4] [6011] +18:54:16 [ 22] [ 3] [900] +18:54:16 [ 25] [ 2] [02] +18:54:16 [ 28] [ 9] [000000000] +18:54:16 [ 32] [ 6] [220699] +18:54:16 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:54:16 [ 37] [ 12] [507900186782] +18:54:16 [ 41] [ 8] [08000100] +18:54:16 [ 42] [ 15] [APTRA ] +18:54:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:54:16 [ 49] [ 3] [418] +18:54:16 [ 52] [ 16] [4DE0DFDFB71B8AFB] +18:54:16 ============================================================================ +18:54:16 + + +waiting on router queue for slot.... +18:54:16 Sending to : +18:54:16 ============================================================================ +18:54:16 Sending to : +18:54:16 ============================================================================ +18:54:16 ============================================================================ +18:54:16 Slot Id : <308> +18:54:16 Transaction Type : REQUEST +18:54:16 Received From : +18:54:16 ============================================================================ +18:54:16 FNo. Len. Field Value +18:54:16 ============================================================================ +18:54:16 [ 1] [ 4] [0200] +18:54:16 [ 2] [ 16] [6688990102658109] +18:54:16 [ 3] [ 6] [310000] +18:54:16 [ 4] [ 12] [000000000000] +18:54:16 [ 7] [ 10] [0320190201] +18:54:16 [ 11] [ 6] [003147] +18:54:16 [ 12] [ 6] [190201] +18:54:16 [ 13] [ 4] [0320] +18:54:16 [ 14] [ 4] [4209] +18:54:16 [ 15] [ 4] [0320] +18:54:16 [ 18] [ 4] [6011] +18:54:16 [ 22] [ 3] [900] +18:54:16 [ 25] [ 2] [02] +18:54:16 [ 28] [ 9] [000000000] +18:54:16 [ 32] [ 6] [220699] +18:54:16 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:54:16 [ 37] [ 12] [507900186782] +18:54:16 [ 41] [ 8] [08000100] +18:54:16 [ 42] [ 15] [APTRA ] +18:54:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:54:16 [ 49] [ 3] [418] +18:54:16 [ 52] [ 16] [4DE0DFDFB71B8AFB] +18:54:16 ============================================================================ +18:54:16 + + +waiting on router queue for slot.... +18:54:16 Sending to : +18:54:16 ============================================================================ +18:54:16 ============================================================================ +18:54:16 Slot Id : <308> +18:54:16 Transaction Type : REQUEST +18:54:16 Received From : +18:54:16 ============================================================================ +18:54:16 FNo. Len. Field Value +18:54:16 ============================================================================ +18:54:16 [ 1] [ 4] [0200] +18:54:16 [ 2] [ 16] [6688990102658109] +18:54:16 [ 3] [ 6] [310000] +18:54:16 [ 4] [ 12] [000000000000] +18:54:16 [ 7] [ 10] [0320190201] +18:54:16 [ 11] [ 6] [003147] +18:54:16 [ 12] [ 6] [190201] +18:54:16 [ 13] [ 4] [0320] +18:54:16 [ 14] [ 4] [4209] +18:54:16 [ 15] [ 4] [0320] +18:54:16 [ 18] [ 4] [6011] +18:54:16 [ 22] [ 3] [900] +18:54:16 [ 25] [ 2] [02] +18:54:16 [ 28] [ 9] [000000000] +18:54:16 [ 32] [ 6] [220699] +18:54:16 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:54:16 [ 37] [ 12] [507900186782] +18:54:16 [ 41] [ 8] [08000100] +18:54:16 [ 42] [ 15] [APTRA ] +18:54:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:54:16 [ 49] [ 3] [418] +18:54:16 [ 52] [ 16] [9A7CECD3276AE487] +18:54:16 ============================================================================ +18:54:16 + + +waiting on router queue for slot.... +18:54:16 Sending to : <0> +18:54:16 ============================================================================ +18:54:17 ============================================================================ +18:54:17 Slot Id : <308> +18:54:17 Transaction Type : RESPONSE +18:54:17 Received From : +18:54:17 ============================================================================ +18:54:17 FNo. Len. Field Value +18:54:17 ============================================================================ +18:54:17 [ 1] [ 4] [0210] +18:54:17 [ 2] [ 16] [6688990102658109] +18:54:17 [ 3] [ 6] [310000] +18:54:17 [ 4] [ 12] [000000000000] +18:54:17 [ 7] [ 10] [0320190201] +18:54:17 [ 11] [ 6] [003147] +18:54:17 [ 12] [ 6] [190201] +18:54:17 [ 13] [ 4] [0320] +18:54:17 [ 15] [ 4] [0320] +18:54:17 [ 18] [ 4] [6011] +18:54:17 [ 22] [ 3] [900] +18:54:17 [ 32] [ 6] [220699] +18:54:17 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:54:17 [ 37] [ 12] [507900186782] +18:54:17 [ 39] [ 2] [14] +18:54:17 [ 41] [ 8] [08000100] +18:54:17 [ 49] [ 3] [418] +18:54:17 ============================================================================ +18:54:17 Sending to : +18:54:17 ============================================================================ +18:54:17 + + +waiting on router queue for slot.... +18:54:18 ============================================================================ +18:54:18 Slot Id : <308> +18:54:18 Transaction Type : RESPONSE +18:54:18 Received From : +18:54:18 ============================================================================ +18:54:18 FNo. Len. Field Value +18:54:18 ============================================================================ +18:54:18 [ 1] [ 4] [0210] +18:54:18 [ 2] [ 16] [6688990102658109] +18:54:18 [ 3] [ 6] [310000] +18:54:18 [ 4] [ 12] [000000000000] +18:54:18 [ 7] [ 10] [0320190201] +18:54:18 [ 11] [ 6] [003147] +18:54:18 [ 12] [ 6] [190201] +18:54:18 [ 13] [ 4] [0320] +18:54:18 [ 15] [ 4] [0320] +18:54:18 [ 18] [ 4] [6011] +18:54:18 [ 22] [ 3] [900] +18:54:18 [ 32] [ 6] [220699] +18:54:18 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:54:18 [ 37] [ 12] [507900186782] +18:54:18 [ 39] [ 2] [14] +18:54:18 [ 41] [ 8] [08000100] +18:54:18 [ 49] [ 3] [418] +18:54:18 ============================================================================ +18:54:18 Calculate Source COMM Id = 1 +18:54:18 ============================================================================ +18:54:18 + + +waiting on router queue for slot.... +18:54:28 ============================================================================ +18:54:28 Slot Id : <286> +18:54:28 Transaction Type : REQUEST +18:54:28 Received From : +18:54:28 ============================================================================ +18:54:28 FNo. Len. Field Value +18:54:28 ============================================================================ +18:54:28 [ 1] [ 4] [0800] +18:54:28 [ 7] [ 10] [0320115334] +18:54:28 [ 11] [ 6] [157812] +18:54:28 [ 70] [ 3] [301] +18:54:28 ============================================================================ +18:54:28 + + +waiting on router queue for slot.... +18:54:28 Sending to : +18:54:28 ============================================================================ +18:54:28 ============================================================================ +18:54:28 Slot Id : <286> +18:54:28 Transaction Type : RESPONSE +18:54:28 Received From : +18:54:28 ============================================================================ +18:54:28 FNo. Len. Field Value +18:54:28 ============================================================================ +18:54:28 [ 1] [ 4] [0810] +18:54:28 [ 7] [ 10] [0320115334] +18:54:28 [ 11] [ 6] [157812] +18:54:28 [ 39] [ 2] [00] +18:54:28 [ 70] [ 3] [301] +18:54:28 ============================================================================ +18:54:28 Calculate Source COMM Id = 2 +18:54:28 ============================================================================ +18:54:28 + + +waiting on router queue for slot.... +18:54:43 ============================================================================ +18:54:43 Slot Id : <295> +18:54:43 Transaction Type : REQUEST +18:54:43 Received From : +18:54:43 ============================================================================ +18:54:43 FNo. Len. Field Value +18:54:43 ============================================================================ +18:54:43 [ 1] [ 4] [0800] +18:54:43 [ 7] [ 10] [0320115350] +18:54:43 [ 11] [ 6] [157813] +18:54:43 [ 70] [ 3] [301] +18:54:43 ============================================================================ +18:54:43 + + +waiting on router queue for slot.... +18:54:43 Sending to : +18:54:43 ============================================================================ +18:54:43 ============================================================================ +18:54:43 Slot Id : <295> +18:54:43 Transaction Type : RESPONSE +18:54:43 Received From : +18:54:43 ============================================================================ +18:54:43 FNo. Len. Field Value +18:54:43 ============================================================================ +18:54:43 [ 1] [ 4] [0810] +18:54:43 [ 7] [ 10] [0320115350] +18:54:43 [ 11] [ 6] [157813] +18:54:43 [ 39] [ 2] [00] +18:54:43 [ 70] [ 3] [301] +18:54:43 ============================================================================ +18:54:43 Calculate Source COMM Id = 2 +18:54:43 ============================================================================ +18:54:43 + + +waiting on router queue for slot.... +18:54:57 ============================================================================ +18:54:57 Slot Id : <296> +18:54:57 Transaction Type : REQUEST +18:54:57 Received From : +18:54:57 ============================================================================ +18:54:57 FNo. Len. Field Value +18:54:57 ============================================================================ +18:54:57 [ 1] [ 4] [0800] +18:54:57 [ 7] [ 10] [0320120242] +18:54:57 [ 11] [ 6] [004273] +18:54:57 [ 37] [ 12] [57919004273] +18:54:57 [ 70] [ 3] [301] +18:54:57 ============================================================================ +18:54:57 + + +waiting on router queue for slot.... +18:54:57 Sending to : +18:54:57 ============================================================================ +18:54:57 ============================================================================ +18:54:57 Slot Id : <296> +18:54:57 Transaction Type : RESPONSE +18:54:57 Received From : +18:54:57 ============================================================================ +18:54:57 FNo. Len. Field Value +18:54:57 ============================================================================ +18:54:57 [ 1] [ 4] [0810] +18:54:57 [ 7] [ 10] [0320120242] +18:54:57 [ 11] [ 6] [004273] +18:54:57 [ 37] [ 12] [579190042730] +18:54:57 [ 39] [ 2] [00] +18:54:57 [ 70] [ 3] [810] +18:54:57 ============================================================================ +18:54:57 Calculate Source COMM Id = 1 +18:54:57 ============================================================================ +18:54:57 + + +waiting on router queue for slot.... +18:55:00 ============================================================================ +18:55:00 Slot Id : <283> +18:55:00 Transaction Type : REQUEST +18:55:00 Received From : +18:55:00 ============================================================================ +18:55:00 FNo. Len. Field Value +18:55:00 ============================================================================ +18:55:00 [ 1] [ 4] [0800] +18:55:00 [ 7] [ 10] [0320115406] +18:55:00 [ 11] [ 6] [157814] +18:55:00 [ 70] [ 3] [301] +18:55:00 ============================================================================ +18:55:00 + + +waiting on router queue for slot.... +18:55:00 Sending to : +18:55:00 ============================================================================ +18:55:00 ============================================================================ +18:55:00 Slot Id : <283> +18:55:00 Transaction Type : RESPONSE +18:55:00 Received From : +18:55:00 ============================================================================ +18:55:00 FNo. Len. Field Value +18:55:00 ============================================================================ +18:55:00 [ 1] [ 4] [0810] +18:55:00 [ 7] [ 10] [0320115406] +18:55:00 [ 11] [ 6] [157814] +18:55:00 [ 39] [ 2] [00] +18:55:00 [ 70] [ 3] [301] +18:55:00 ============================================================================ +18:55:00 Calculate Source COMM Id = 2 +18:55:00 ============================================================================ +18:55:00 + + +waiting on router queue for slot.... +18:55:10 ============================================================================ +18:55:10 Slot Id : <306> +18:55:10 Transaction Type : REQUEST +18:55:10 Received From : +18:55:10 ============================================================================ +18:55:10 FNo. Len. Field Value +18:55:10 ============================================================================ +18:55:10 [ 1] [ 4] [0800] +18:55:10 [ 7] [ 10] [0320115417] +18:55:10 [ 11] [ 6] [157815] +18:55:10 [ 70] [ 3] [301] +18:55:10 ============================================================================ +18:55:10 + + +waiting on router queue for slot.... +18:55:10 Sending to : +18:55:10 ============================================================================ +18:55:10 ============================================================================ +18:55:10 Slot Id : <306> +18:55:10 Transaction Type : RESPONSE +18:55:10 Received From : +18:55:10 ============================================================================ +18:55:10 FNo. Len. Field Value +18:55:10 ============================================================================ +18:55:10 [ 1] [ 4] [0810] +18:55:10 [ 7] [ 10] [0320115417] +18:55:10 [ 11] [ 6] [157815] +18:55:10 [ 39] [ 2] [00] +18:55:10 [ 70] [ 3] [301] +18:55:10 ============================================================================ +18:55:10 Calculate Source COMM Id = 2 +18:55:10 ============================================================================ +18:55:10 + + +waiting on router queue for slot.... +18:55:15 ============================================================================ +18:55:15 Slot Id : <311> +18:55:15 Transaction Type : REQUEST +18:55:15 Received From : +18:55:15 ============================================================================ +18:55:15 FNo. Len. Field Value +18:55:15 ============================================================================ +18:55:15 [ 1] [ 4] [0800] +18:55:15 [ 2] [ 5] [02531] +18:55:15 [ 3] [ 6] [579188] +18:55:15 [ 7] [ 10] [0320115515] +18:55:15 [ 11] [ 6] [807510] +18:55:15 [ 15] [ 10] [0320115515] +18:55:15 [ 37] [ 11] [57918807510] +18:55:15 [ 70] [ 3] [001] +18:55:15 ============================================================================ +18:55:15 + + +waiting on router queue for slot.... +18:55:15 ============================================================================ +18:55:15 Slot Id : <311> +18:55:15 Transaction Type : RESPONSE +18:55:15 Received From : +18:55:15 ============================================================================ +18:55:15 FNo. Len. Field Value +18:55:15 ============================================================================ +18:55:15 [ 1] [ 4] [0810] +18:55:15 [ 7] [ 10] [0320115515] +18:55:15 [ 11] [ 6] [807510] +18:55:15 [ 15] [ 4] [0320] +18:55:15 [ 37] [ 12] [57918807510] +18:55:15 [ 39] [ 2] [00] +18:55:15 [ 70] [ 3] [001] +18:55:15 ============================================================================ +18:55:15 Sending to : +18:55:15 ============================================================================ +18:55:15 + + +waiting on router queue for slot.... +18:55:19 ============================================================================ +18:55:19 Slot Id : <312> +18:55:19 Transaction Type : REQUEST +18:55:19 Received From : +18:55:19 ============================================================================ +18:55:19 FNo. Len. Field Value +18:55:19 ============================================================================ +18:55:19 [ 1] [ 4] [0800] +18:55:19 [ 7] [ 10] [0321020708] +18:55:19 [ 11] [ 6] [190708] +18:55:19 [ 37] [ 12] [57919190708] +18:55:19 [ 70] [ 3] [301] +18:55:19 ============================================================================ +18:55:19 + + +waiting on router queue for slot.... +18:55:19 Sending to : +18:55:19 ============================================================================ +18:55:19 ============================================================================ +18:55:19 Slot Id : <312> +18:55:19 Transaction Type : RESPONSE +18:55:19 Received From : +18:55:19 ============================================================================ +18:55:19 FNo. Len. Field Value +18:55:19 ============================================================================ +18:55:19 [ 1] [ 4] [0810] +18:55:19 [ 7] [ 10] [0321020708] +18:55:19 [ 11] [ 6] [190708] +18:55:19 [ 37] [ 12] [579191907080] +18:55:19 [ 39] [ 2] [00] +18:55:19 [ 70] [ 3] [810] +18:55:19 ============================================================================ +18:55:19 Calculate Source COMM Id = 6 +18:55:19 ============================================================================ +18:55:19 + + +waiting on router queue for slot.... +18:55:21 ============================================================================ +18:55:21 Slot Id : <307> +18:55:21 Transaction Type : REQUEST +18:55:21 Received From : +18:55:21 ============================================================================ +18:55:21 FNo. Len. Field Value +18:55:21 ============================================================================ +18:55:21 [ 1] [ 4] [0800] +18:55:21 [ 7] [ 10] [0320115428] +18:55:21 [ 11] [ 6] [157816] +18:55:21 [ 70] [ 3] [301] +18:55:21 ============================================================================ +18:55:21 + + +waiting on router queue for slot.... +18:55:21 Sending to : +18:55:21 ============================================================================ +18:55:21 ============================================================================ +18:55:21 Slot Id : <307> +18:55:21 Transaction Type : RESPONSE +18:55:21 Received From : +18:55:21 ============================================================================ +18:55:21 FNo. Len. Field Value +18:55:21 ============================================================================ +18:55:21 [ 1] [ 4] [0810] +18:55:21 [ 7] [ 10] [0320115428] +18:55:21 [ 11] [ 6] [157816] +18:55:21 [ 39] [ 2] [00] +18:55:21 [ 70] [ 3] [301] +18:55:21 ============================================================================ +18:55:21 Calculate Source COMM Id = 2 +18:55:21 ============================================================================ +18:55:21 + + +waiting on router queue for slot.... +18:55:33 ============================================================================ +18:55:33 Slot Id : <316> +18:55:33 Transaction Type : REQUEST +18:55:33 Received From : +18:55:33 ============================================================================ +18:55:33 FNo. Len. Field Value +18:55:33 ============================================================================ +18:55:33 [ 1] [ 4] [0200] +18:55:33 [ 2] [ 16] [6213541000468499] +18:55:33 [ 3] [ 6] [010000] +18:55:33 [ 4] [ 12] [000100000000] +18:55:33 [ 7] [ 10] [0320115439] +18:55:33 [ 11] [ 6] [271336] +18:55:33 [ 12] [ 6] [185439] +18:55:33 [ 13] [ 4] [0320] +18:55:33 [ 14] [ 4] [4912] +18:55:33 [ 15] [ 4] [0320] +18:55:33 [ 18] [ 4] [6011] +18:55:33 [ 19] [ 3] [418] +18:55:33 [ 22] [ 3] [021] +18:55:33 [ 25] [ 2] [01] +18:55:33 [ 28] [ 9] [D00002000] +18:55:33 [ 32] [ 6] [180893] +18:55:33 [ 35] [ 32] [6213541000468499=491212016849725] +18:55:33 [ 37] [ 12] [507911271336] +18:55:33 [ 41] [ 8] [0102SAPA] +18:55:33 [ 42] [ 15] [999999 ] +18:55:33 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:55:33 [ 49] [ 3] [418] +18:55:33 [ 52] [ 16] [9983A4F0F2069A8E] +18:55:33 ============================================================================ +18:55:33 + + +waiting on router queue for slot.... +18:55:33 Sending to : +18:55:33 ============================================================================ +18:55:33 Sending to : +18:55:33 ============================================================================ +18:55:33 ============================================================================ +18:55:33 Slot Id : <288> +18:55:33 Transaction Type : REQUEST +18:55:33 Received From : +18:55:33 ============================================================================ +18:55:33 FNo. Len. Field Value +18:55:33 ============================================================================ +18:55:33 [ 1] [ 4] [0800] +18:55:33 [ 7] [ 10] [0320115439] +18:55:33 [ 11] [ 6] [157817] +18:55:33 [ 70] [ 3] [301] +18:55:33 ============================================================================ +18:55:33 + + +waiting on router queue for slot.... +18:55:33 Sending to : +18:55:33 ============================================================================ +18:55:33 ============================================================================ +18:55:33 Slot Id : <288> +18:55:33 Transaction Type : RESPONSE +18:55:33 Received From : +18:55:33 ============================================================================ +18:55:33 FNo. Len. Field Value +18:55:33 ============================================================================ +18:55:33 [ 1] [ 4] [0810] +18:55:33 [ 7] [ 10] [0320115439] +18:55:33 [ 11] [ 6] [157817] +18:55:33 [ 39] [ 2] [00] +18:55:33 [ 70] [ 3] [301] +18:55:33 ============================================================================ +18:55:33 Calculate Source COMM Id = 2 +18:55:33 ============================================================================ +18:55:33 + + +waiting on router queue for slot.... +18:55:33 ============================================================================ +18:55:33 Slot Id : <316> +18:55:33 Transaction Type : REQUEST +18:55:33 Received From : +18:55:33 ============================================================================ +18:55:33 FNo. Len. Field Value +18:55:33 ============================================================================ +18:55:33 [ 1] [ 4] [0200] +18:55:33 [ 2] [ 16] [6213541000468499] +18:55:33 [ 3] [ 6] [010000] +18:55:33 [ 4] [ 12] [000100000000] +18:55:33 [ 7] [ 10] [0320115439] +18:55:33 [ 11] [ 6] [271336] +18:55:33 [ 12] [ 6] [185439] +18:55:33 [ 13] [ 4] [0320] +18:55:33 [ 14] [ 4] [4912] +18:55:33 [ 15] [ 4] [0320] +18:55:33 [ 18] [ 4] [6011] +18:55:33 [ 19] [ 3] [418] +18:55:33 [ 22] [ 3] [021] +18:55:33 [ 25] [ 2] [01] +18:55:33 [ 28] [ 9] [D00002000] +18:55:33 [ 32] [ 6] [180893] +18:55:33 [ 35] [ 32] [6213541000468499=491212016849725] +18:55:33 [ 37] [ 12] [507911271336] +18:55:33 [ 41] [ 8] [0102SAPA] +18:55:33 [ 42] [ 15] [999999 ] +18:55:33 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:55:33 [ 49] [ 3] [418] +18:55:33 [ 52] [ 16] [9983A4F0F2069A8E] +18:55:33 ============================================================================ +18:55:33 + + +waiting on router queue for slot.... +18:55:33 Sending to : +18:55:33 ============================================================================ +18:55:33 ============================================================================ +18:55:33 Slot Id : <316> +18:55:33 Transaction Type : REQUEST +18:55:33 Received From : +18:55:33 ============================================================================ +18:55:33 FNo. Len. Field Value +18:55:33 ============================================================================ +18:55:33 [ 1] [ 4] [0200] +18:55:33 [ 2] [ 16] [6213541000468499] +18:55:33 [ 3] [ 6] [010000] +18:55:33 [ 4] [ 12] [000100000000] +18:55:33 [ 7] [ 10] [0320115439] +18:55:33 [ 11] [ 6] [271336] +18:55:33 [ 12] [ 6] [185439] +18:55:33 [ 13] [ 4] [0320] +18:55:33 [ 14] [ 4] [4912] +18:55:33 [ 15] [ 4] [0320] +18:55:33 [ 18] [ 4] [6011] +18:55:33 [ 19] [ 3] [418] +18:55:33 [ 22] [ 3] [021] +18:55:33 [ 25] [ 2] [01] +18:55:33 [ 28] [ 9] [D00002000] +18:55:33 [ 32] [ 6] [180893] +18:55:33 [ 35] [ 32] [6213541000468499=491212016849725] +18:55:33 [ 37] [ 12] [507911271336] +18:55:33 [ 41] [ 8] [0102SAPA] +18:55:33 [ 42] [ 15] [999999 ] +18:55:33 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +18:55:33 [ 49] [ 3] [418] +18:55:33 [ 52] [ 16] [BD20756CB9CBA482] +18:55:33 ============================================================================ +18:55:33 + + +waiting on router queue for slot.... +18:55:33 Sending to : <0> +18:55:33 ============================================================================ +18:55:34 ============================================================================ +18:55:34 Slot Id : <316> +18:55:34 Transaction Type : RESPONSE +18:55:34 Received From : +18:55:34 ============================================================================ +18:55:34 FNo. Len. Field Value +18:55:34 ============================================================================ +18:55:34 [ 1] [ 4] [0210] +18:55:34 [ 2] [ 16] [6213541000468499] +18:55:34 [ 3] [ 6] [010000] +18:55:34 [ 4] [ 12] [000100000000] +18:55:34 [ 7] [ 10] [0320115439] +18:55:34 [ 11] [ 6] [271336] +18:55:34 [ 12] [ 6] [185439] +18:55:34 [ 13] [ 4] [0320] +18:55:34 [ 15] [ 4] [0320] +18:55:34 [ 18] [ 4] [6011] +18:55:34 [ 19] [ 3] [418] +18:55:34 [ 32] [ 6] [180893] +18:55:34 [ 35] [ 32] [6213541000468499=491212016849725] +18:55:34 [ 37] [ 12] [507911271336] +18:55:34 [ 38] [ 6] [271336] +18:55:34 [ 39] [ 2] [51] +18:55:34 [ 41] [ 8] [0102SAPA] +18:55:34 [ 49] [ 3] [418] +18:55:34 [ 54] [ 40] [0001418C0000142664250002418C000014266425] +18:55:34 ============================================================================ +18:55:34 Sending to : +18:55:34 ============================================================================ +18:55:34 + + +waiting on router queue for slot.... +18:55:35 ============================================================================ +18:55:35 Slot Id : <316> +18:55:35 Transaction Type : RESPONSE +18:55:35 Received From : +18:55:35 ============================================================================ +18:55:35 FNo. Len. Field Value +18:55:35 ============================================================================ +18:55:35 [ 1] [ 4] [0210] +18:55:35 [ 2] [ 16] [6213541000468499] +18:55:35 [ 3] [ 6] [010000] +18:55:35 [ 4] [ 12] [000100000000] +18:55:35 [ 7] [ 10] [0320115439] +18:55:35 [ 11] [ 6] [271336] +18:55:35 [ 12] [ 6] [185439] +18:55:35 [ 13] [ 4] [0320] +18:55:35 [ 15] [ 4] [0320] +18:55:35 [ 18] [ 4] [6011] +18:55:35 [ 19] [ 3] [418] +18:55:35 [ 32] [ 6] [180893] +18:55:35 [ 35] [ 32] [6213541000468499=491212016849725] +18:55:35 [ 37] [ 12] [507911271336] +18:55:35 [ 38] [ 6] [271336] +18:55:35 [ 39] [ 2] [51] +18:55:35 [ 41] [ 8] [0102SAPA] +18:55:35 [ 49] [ 3] [418] +18:55:35 [ 54] [ 40] [0001418C0000142664250002418C000014266425] +18:55:35 ============================================================================ +18:55:35 Calculate Source COMM Id = 2 +18:55:35 ============================================================================ +18:55:35 + + +waiting on router queue for slot.... +18:55:49 ============================================================================ +18:55:49 Slot Id : <310> +18:55:49 Transaction Type : REQUEST +18:55:49 Received From : +18:55:49 ============================================================================ +18:55:49 FNo. Len. Field Value +18:55:49 ============================================================================ +18:55:49 [ 1] [ 4] [0800] +18:55:49 [ 7] [ 10] [0320115455] +18:55:49 [ 11] [ 6] [157818] +18:55:49 [ 70] [ 3] [301] +18:55:49 ============================================================================ +18:55:49 + + +waiting on router queue for slot.... +18:55:49 Sending to : +18:55:49 ============================================================================ +18:55:49 ============================================================================ +18:55:49 Slot Id : <310> +18:55:49 Transaction Type : RESPONSE +18:55:49 Received From : +18:55:49 ============================================================================ +18:55:49 FNo. Len. Field Value +18:55:49 ============================================================================ +18:55:49 [ 1] [ 4] [0810] +18:55:49 [ 7] [ 10] [0320115455] +18:55:49 [ 11] [ 6] [157818] +18:55:49 [ 39] [ 2] [00] +18:55:49 [ 70] [ 3] [301] +18:55:49 ============================================================================ +18:55:49 Calculate Source COMM Id = 2 +18:55:49 ============================================================================ +18:55:49 + + +waiting on router queue for slot.... +18:55:50 ============================================================================ +18:55:50 Slot Id : <317> +18:55:50 Transaction Type : REQUEST +18:55:50 Received From : +18:55:50 ============================================================================ +18:55:50 FNo. Len. Field Value +18:55:50 ============================================================================ +18:55:50 [ 1] [ 4] [0200] +18:55:50 [ 2] [ 16] [6213544001229449] +18:55:50 [ 3] [ 6] [011000] +18:55:50 [ 4] [ 12] [000020000000] +18:55:50 [ 7] [ 10] [0320115456] +18:55:50 [ 11] [ 6] [271338] +18:55:50 [ 12] [ 6] [185456] +18:55:50 [ 13] [ 4] [0320] +18:55:50 [ 14] [ 4] [4912] +18:55:50 [ 15] [ 4] [0320] +18:55:50 [ 18] [ 4] [6011] +18:55:50 [ 19] [ 3] [418] +18:55:50 [ 22] [ 3] [021] +18:55:50 [ 25] [ 2] [01] +18:55:50 [ 28] [ 9] [D00002000] +18:55:50 [ 32] [ 6] [180893] +18:55:50 [ 35] [ 32] [6213544001229449=491212012944435] +18:55:50 [ 37] [ 12] [507911271338] +18:55:50 [ 41] [ 8] [0110VTBR] +18:55:50 [ 42] [ 15] [999999 ] +18:55:50 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +18:55:50 [ 49] [ 3] [418] +18:55:50 [ 52] [ 16] [D8E29FC707583134] +18:55:50 ============================================================================ +18:55:50 + + +waiting on router queue for slot.... +18:55:50 Sending to : +18:55:50 ============================================================================ +18:55:50 Sending to : +18:55:50 ============================================================================ +18:55:50 ============================================================================ +18:55:50 Slot Id : <317> +18:55:50 Transaction Type : REQUEST +18:55:50 Received From : +18:55:50 ============================================================================ +18:55:50 FNo. Len. Field Value +18:55:50 ============================================================================ +18:55:50 [ 1] [ 4] [0200] +18:55:50 [ 2] [ 16] [6213544001229449] +18:55:50 [ 3] [ 6] [011000] +18:55:50 [ 4] [ 12] [000020000000] +18:55:50 [ 7] [ 10] [0320115456] +18:55:50 [ 11] [ 6] [271338] +18:55:50 [ 12] [ 6] [185456] +18:55:50 [ 13] [ 4] [0320] +18:55:50 [ 14] [ 4] [4912] +18:55:50 [ 15] [ 4] [0320] +18:55:50 [ 18] [ 4] [6011] +18:55:50 [ 19] [ 3] [418] +18:55:50 [ 22] [ 3] [021] +18:55:50 [ 25] [ 2] [01] +18:55:50 [ 28] [ 9] [D00002000] +18:55:50 [ 32] [ 6] [180893] +18:55:50 [ 35] [ 32] [6213544001229449=491212012944435] +18:55:50 [ 37] [ 12] [507911271338] +18:55:50 [ 41] [ 8] [0110VTBR] +18:55:50 [ 42] [ 15] [999999 ] +18:55:50 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +18:55:50 [ 49] [ 3] [418] +18:55:50 [ 52] [ 16] [D8E29FC707583134] +18:55:50 ============================================================================ +18:55:50 + + +waiting on router queue for slot.... +18:55:50 Sending to : +18:55:50 ============================================================================ +18:55:51 ============================================================================ +18:55:51 Slot Id : <317> +18:55:51 Transaction Type : REQUEST +18:55:51 Received From : +18:55:51 ============================================================================ +18:55:51 FNo. Len. Field Value +18:55:51 ============================================================================ +18:55:51 [ 1] [ 4] [0200] +18:55:51 [ 2] [ 16] [6213544001229449] +18:55:51 [ 3] [ 6] [011000] +18:55:51 [ 4] [ 12] [000020000000] +18:55:51 [ 7] [ 10] [0320115456] +18:55:51 [ 11] [ 6] [271338] +18:55:51 [ 12] [ 6] [185456] +18:55:51 [ 13] [ 4] [0320] +18:55:51 [ 14] [ 4] [4912] +18:55:51 [ 15] [ 4] [0320] +18:55:51 [ 18] [ 4] [6011] +18:55:51 [ 19] [ 3] [418] +18:55:51 [ 22] [ 3] [021] +18:55:51 [ 25] [ 2] [01] +18:55:51 [ 28] [ 9] [D00002000] +18:55:51 [ 32] [ 6] [180893] +18:55:51 [ 35] [ 32] [6213544001229449=491212012944435] +18:55:51 [ 37] [ 12] [507911271338] +18:55:51 [ 41] [ 8] [0110VTBR] +18:55:51 [ 42] [ 15] [999999 ] +18:55:51 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +18:55:51 [ 49] [ 3] [418] +18:55:51 [ 52] [ 16] [A01DBBD921D0454A] +18:55:51 ============================================================================ +18:55:51 + + +waiting on router queue for slot.... +18:55:51 Sending to : <0> +18:55:51 ============================================================================ +18:55:51 ============================================================================ +18:55:51 Slot Id : <317> +18:55:51 Transaction Type : RESPONSE +18:55:51 Received From : +18:55:51 ============================================================================ +18:55:51 FNo. Len. Field Value +18:55:51 ============================================================================ +18:55:51 [ 1] [ 4] [0210] +18:55:51 [ 2] [ 16] [6213544001229449] +18:55:51 [ 3] [ 6] [011000] +18:55:51 [ 4] [ 12] [000020000000] +18:55:51 [ 7] [ 10] [0320115456] +18:55:51 [ 11] [ 6] [271338] +18:55:51 [ 12] [ 6] [185456] +18:55:51 [ 13] [ 4] [0320] +18:55:51 [ 15] [ 4] [0320] +18:55:51 [ 18] [ 4] [6011] +18:55:51 [ 19] [ 3] [418] +18:55:51 [ 32] [ 6] [180893] +18:55:51 [ 35] [ 32] [6213544001229449=491212012944435] +18:55:51 [ 37] [ 12] [507911271338] +18:55:51 [ 38] [ 6] [271338] +18:55:51 [ 39] [ 2] [51] +18:55:51 [ 41] [ 8] [0110VTBR] +18:55:51 [ 49] [ 3] [418] +18:55:51 [ 54] [ 40] [1001418C0000212364521002418C000021236452] +18:55:51 ============================================================================ +18:55:51 Sending to : +18:55:51 ============================================================================ +18:55:51 + + +waiting on router queue for slot.... +18:55:52 ============================================================================ +18:55:52 Slot Id : <317> +18:55:52 Transaction Type : RESPONSE +18:55:52 Received From : +18:55:52 ============================================================================ +18:55:52 FNo. Len. Field Value +18:55:52 ============================================================================ +18:55:52 [ 1] [ 4] [0210] +18:55:52 [ 2] [ 16] [6213544001229449] +18:55:52 [ 3] [ 6] [011000] +18:55:52 [ 4] [ 12] [000020000000] +18:55:52 [ 7] [ 10] [0320115456] +18:55:52 [ 11] [ 6] [271338] +18:55:52 [ 12] [ 6] [185456] +18:55:52 [ 13] [ 4] [0320] +18:55:52 [ 15] [ 4] [0320] +18:55:52 [ 18] [ 4] [6011] +18:55:52 [ 19] [ 3] [418] +18:55:52 [ 32] [ 6] [180893] +18:55:52 [ 35] [ 32] [6213544001229449=491212012944435] +18:55:52 [ 37] [ 12] [507911271338] +18:55:52 [ 38] [ 6] [271338] +18:55:52 [ 39] [ 2] [51] +18:55:52 [ 41] [ 8] [0110VTBR] +18:55:52 [ 49] [ 3] [418] +18:55:52 [ 54] [ 40] [1001418C0000212364521002418C000021236452] +18:55:52 ============================================================================ +18:55:52 Calculate Source COMM Id = 2 +18:55:52 ============================================================================ +18:55:52 + + +waiting on router queue for slot.... +18:55:56 ============================================================================ +18:55:56 Slot Id : <318> +18:55:56 Transaction Type : REQUEST +18:55:56 Received From : +18:55:56 ============================================================================ +18:55:56 FNo. Len. Field Value +18:55:56 ============================================================================ +18:55:56 [ 1] [ 4] [0200] +18:55:56 [ 2] [ 16] [1989010003157486] +18:55:56 [ 3] [ 6] [011000] +18:55:56 [ 4] [ 12] [000100000000] +18:55:56 [ 7] [ 10] [0320185551] +18:55:56 [ 11] [ 6] [832169] +18:55:56 [ 12] [ 6] [185551] +18:55:56 [ 13] [ 4] [0320] +18:55:56 [ 15] [ 4] [0320] +18:55:56 [ 18] [ 4] [6011] +18:55:56 [ 22] [ 3] [900] +18:55:56 [ 25] [ 2] [02] +18:55:56 [ 28] [ 9] [D00002000] +18:55:56 [ 32] [ 6] [621354] +18:55:56 [ 35] [ 32] [1989010003157486=000010100000722] +18:55:56 [ 37] [ 12] [507903957413] +18:55:56 [ 41] [ 8] [01011100] +18:55:56 [ 42] [ 15] [NATIVE ] +18:55:56 [ 43] [ 40] [Lasavong Hotel Xaysetha LAO] +18:55:56 [ 49] [ 3] [418] +18:55:56 [ 52] [ 16] [961205CCCF6DE644] +18:55:56 ============================================================================ +18:55:56 + + +waiting on router queue for slot.... +18:55:56 Sending to : +18:55:56 ============================================================================ +18:55:56 Sending to : +18:55:56 ============================================================================ +18:55:56 ============================================================================ +18:55:56 Slot Id : <318> +18:55:56 Transaction Type : REQUEST +18:55:56 Received From : +18:55:56 ============================================================================ +18:55:56 FNo. Len. Field Value +18:55:56 ============================================================================ +18:55:56 [ 1] [ 4] [0200] +18:55:56 [ 2] [ 16] [1989010003157486] +18:55:56 [ 3] [ 6] [011000] +18:55:56 [ 4] [ 12] [000100000000] +18:55:56 [ 7] [ 10] [0320185551] +18:55:56 [ 11] [ 6] [832169] +18:55:56 [ 12] [ 6] [185551] +18:55:56 [ 13] [ 4] [0320] +18:55:56 [ 15] [ 4] [0320] +18:55:56 [ 18] [ 4] [6011] +18:55:56 [ 22] [ 3] [900] +18:55:56 [ 25] [ 2] [02] +18:55:56 [ 28] [ 9] [D00002000] +18:55:56 [ 32] [ 6] [621354] +18:55:56 [ 35] [ 32] [1989010003157486=000010100000722] +18:55:56 [ 37] [ 12] [507903957413] +18:55:56 [ 41] [ 8] [01011100] +18:55:56 [ 42] [ 15] [NATIVE ] +18:55:56 [ 43] [ 40] [Lasavong Hotel Xaysetha LAO] +18:55:56 [ 49] [ 3] [418] +18:55:56 [ 52] [ 16] [961205CCCF6DE644] +18:55:56 ============================================================================ +18:55:56 + + +waiting on router queue for slot.... +18:55:56 Sending to : +18:55:56 ============================================================================ +18:55:56 ============================================================================ +18:55:56 Slot Id : <318> +18:55:56 Transaction Type : REQUEST +18:55:56 Received From : +18:55:56 ============================================================================ +18:55:56 FNo. Len. Field Value +18:55:56 ============================================================================ +18:55:56 [ 1] [ 4] [0200] +18:55:56 [ 2] [ 16] [1989010003157486] +18:55:56 [ 3] [ 6] [011000] +18:55:56 [ 4] [ 12] [000100000000] +18:55:56 [ 7] [ 10] [0320185551] +18:55:56 [ 11] [ 6] [832169] +18:55:56 [ 12] [ 6] [185551] +18:55:56 [ 13] [ 4] [0320] +18:55:56 [ 15] [ 4] [0320] +18:55:56 [ 18] [ 4] [6011] +18:55:56 [ 22] [ 3] [900] +18:55:56 [ 25] [ 2] [02] +18:55:56 [ 28] [ 9] [D00002000] +18:55:56 [ 32] [ 6] [621354] +18:55:56 [ 35] [ 32] [1989010003157486=000010100000722] +18:55:56 [ 37] [ 12] [507903957413] +18:55:56 [ 41] [ 8] [01011100] +18:55:56 [ 42] [ 15] [NATIVE ] +18:55:56 [ 43] [ 40] [Lasavong Hotel Xaysetha LAO] +18:55:56 [ 49] [ 3] [418] +18:55:56 [ 52] [ 16] [225E78BFE76C1A4A] +18:55:56 ============================================================================ +18:55:56 + + +waiting on router queue for slot.... +18:55:56 Sending to : <5> +18:55:56 ============================================================================ +18:56:02 ============================================================================ +18:56:02 Slot Id : <318> +18:56:02 Transaction Type : RESPONSE +18:56:02 Received From : +18:56:02 ============================================================================ +18:56:02 FNo. Len. Field Value +18:56:02 ============================================================================ +18:56:02 [ 1] [ 4] [0210] +18:56:02 [ 2] [ 16] [1989010003157486] +18:56:02 [ 3] [ 6] [011000] +18:56:02 [ 4] [ 12] [000100000000] +18:56:02 [ 7] [ 10] [0320185551] +18:56:02 [ 11] [ 6] [832169] +18:56:02 [ 12] [ 6] [185551] +18:56:02 [ 13] [ 4] [0320] +18:56:02 [ 15] [ 4] [0320] +18:56:02 [ 18] [ 4] [6011] +18:56:02 [ 19] [ 3] [418] +18:56:02 [ 32] [ 6] [621354] +18:56:02 [ 37] [ 12] [507903957413] +18:56:02 [ 38] [ 6] [383343] +18:56:02 [ 39] [ 2] [00] +18:56:02 [ 41] [ 8] [01011100] +18:56:02 [ 49] [ 3] [418] +18:56:02 [ 54] [ 20] [1001418C000687391600] +18:56:02 ============================================================================ +18:56:02 Sending to : +18:56:02 ============================================================================ +18:56:02 + + +waiting on router queue for slot.... +18:56:03 ============================================================================ +18:56:03 Slot Id : <318> +18:56:03 Transaction Type : RESPONSE +18:56:03 Received From : +18:56:03 ============================================================================ +18:56:03 FNo. Len. Field Value +18:56:03 ============================================================================ +18:56:03 [ 1] [ 4] [0210] +18:56:03 [ 2] [ 16] [1989010003157486] +18:56:03 [ 3] [ 6] [011000] +18:56:03 [ 4] [ 12] [000100000000] +18:56:03 [ 7] [ 10] [0320185551] +18:56:03 [ 11] [ 6] [832169] +18:56:03 [ 12] [ 6] [185551] +18:56:03 [ 13] [ 4] [0320] +18:56:03 [ 15] [ 4] [0320] +18:56:03 [ 18] [ 4] [6011] +18:56:03 [ 19] [ 3] [418] +18:56:03 [ 32] [ 6] [621354] +18:56:03 [ 37] [ 12] [507903957413] +18:56:03 [ 38] [ 6] [383343] +18:56:03 [ 39] [ 2] [00] +18:56:03 [ 41] [ 8] [01011100] +18:56:03 [ 49] [ 3] [418] +18:56:03 [ 54] [ 20] [1001418C000687391600] +18:56:03 ============================================================================ +18:56:03 Calculate Source COMM Id = 0 +18:56:03 ============================================================================ +18:56:03 + + +waiting on router queue for slot.... +18:56:06 ============================================================================ +18:56:06 Slot Id : <325> +18:56:06 Transaction Type : REQUEST +18:56:06 Received From : +18:56:06 ============================================================================ +18:56:06 FNo. Len. Field Value +18:56:06 ============================================================================ +18:56:06 [ 1] [ 4] [0800] +18:56:06 [ 7] [ 10] [0320115511] +18:56:06 [ 11] [ 6] [157819] +18:56:06 [ 70] [ 3] [301] +18:56:06 ============================================================================ +18:56:06 + + +waiting on router queue for slot.... +18:56:06 Sending to : +18:56:06 ============================================================================ +18:56:07 ============================================================================ +18:56:07 Slot Id : <325> +18:56:07 Transaction Type : RESPONSE +18:56:07 Received From : +18:56:07 ============================================================================ +18:56:07 FNo. Len. Field Value +18:56:07 ============================================================================ +18:56:07 [ 1] [ 4] [0810] +18:56:07 [ 7] [ 10] [0320115511] +18:56:07 [ 11] [ 6] [157819] +18:56:07 [ 39] [ 2] [00] +18:56:07 [ 70] [ 3] [301] +18:56:07 ============================================================================ +18:56:07 Calculate Source COMM Id = 2 +18:56:07 ============================================================================ +18:56:07 + + +waiting on router queue for slot.... +18:56:07 ============================================================================ +18:56:07 Slot Id : <322> +18:56:07 Transaction Type : REQUEST +18:56:07 Received From : +18:56:07 ============================================================================ +18:56:07 FNo. Len. Field Value +18:56:07 ============================================================================ +18:56:07 [ 1] [ 4] [0200] +18:56:07 [ 2] [ 16] [6213541000712201] +18:56:07 [ 3] [ 6] [301000] +18:56:07 [ 4] [ 12] [000000000000] +18:56:07 [ 7] [ 10] [0320185357] +18:56:07 [ 11] [ 6] [955321] +18:56:07 [ 12] [ 6] [185357] +18:56:07 [ 13] [ 4] [0320] +18:56:07 [ 15] [ 4] [0320] +18:56:07 [ 18] [ 4] [6011] +18:56:07 [ 19] [ 3] [418] +18:56:07 [ 22] [ 3] [021] +18:56:07 [ 25] [ 2] [01] +18:56:07 [ 28] [ 9] [D00000000] +18:56:07 [ 32] [ 6] [668899] +18:56:07 [ 35] [ 32] [6213541000712201=491212011220434] +18:56:07 [ 37] [ 12] [507902407376] +18:56:07 [ 41] [ 8] [03001010] +18:56:07 [ 42] [ 15] [APT ] +18:56:07 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +18:56:07 [ 49] [ 3] [418] +18:56:07 [ 52] [ 16] [D2AA4C2E9471D446] +18:56:07 ============================================================================ +18:56:07 + + +waiting on router queue for slot.... +18:56:07 Sending to : +18:56:07 ============================================================================ +18:56:07 Sending to : +18:56:07 ============================================================================ +18:56:08 ============================================================================ +18:56:08 Slot Id : <322> +18:56:08 Transaction Type : REQUEST +18:56:08 Received From : +18:56:08 ============================================================================ +18:56:08 FNo. Len. Field Value +18:56:08 ============================================================================ +18:56:08 [ 1] [ 4] [0200] +18:56:08 [ 2] [ 16] [6213541000712201] +18:56:08 [ 3] [ 6] [301000] +18:56:08 [ 4] [ 12] [000000000000] +18:56:08 [ 7] [ 10] [0320185357] +18:56:08 [ 11] [ 6] [955321] +18:56:08 [ 12] [ 6] [185357] +18:56:08 [ 13] [ 4] [0320] +18:56:08 [ 15] [ 4] [0320] +18:56:08 [ 18] [ 4] [6011] +18:56:08 [ 19] [ 3] [418] +18:56:08 [ 22] [ 3] [021] +18:56:08 [ 25] [ 2] [01] +18:56:08 [ 28] [ 9] [D00000000] +18:56:08 [ 32] [ 6] [668899] +18:56:08 [ 35] [ 32] [6213541000712201=491212011220434] +18:56:08 [ 37] [ 12] [507902407376] +18:56:08 [ 41] [ 8] [03001010] +18:56:08 [ 42] [ 15] [APT ] +18:56:08 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +18:56:08 [ 49] [ 3] [418] +18:56:08 [ 52] [ 16] [D2AA4C2E9471D446] +18:56:08 ============================================================================ +18:56:08 + + +waiting on router queue for slot.... +18:56:08 Sending to : +18:56:08 ============================================================================ +18:56:08 ============================================================================ +18:56:08 Slot Id : <322> +18:56:08 Transaction Type : REQUEST +18:56:08 Received From : +18:56:08 ============================================================================ +18:56:08 FNo. Len. Field Value +18:56:08 ============================================================================ +18:56:08 [ 1] [ 4] [0200] +18:56:08 [ 2] [ 16] [6213541000712201] +18:56:08 [ 3] [ 6] [301000] +18:56:08 [ 4] [ 12] [000000000000] +18:56:08 [ 7] [ 10] [0320185357] +18:56:08 [ 11] [ 6] [955321] +18:56:08 [ 12] [ 6] [185357] +18:56:08 [ 13] [ 4] [0320] +18:56:08 [ 15] [ 4] [0320] +18:56:08 [ 18] [ 4] [6011] +18:56:08 [ 19] [ 3] [418] +18:56:08 [ 22] [ 3] [021] +18:56:08 [ 25] [ 2] [01] +18:56:08 [ 28] [ 9] [D00000000] +18:56:08 [ 32] [ 6] [668899] +18:56:08 [ 35] [ 32] [6213541000712201=491212011220434] +18:56:08 [ 37] [ 12] [507902407376] +18:56:08 [ 41] [ 8] [03001010] +18:56:08 [ 42] [ 15] [APT ] +18:56:08 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +18:56:08 [ 49] [ 3] [418] +18:56:08 [ 52] [ 16] [BCE5C859692D3994] +18:56:08 ============================================================================ +18:56:08 + + +waiting on router queue for slot.... +18:56:08 Sending to : <0> +18:56:08 ============================================================================ +18:56:08 ============================================================================ +18:56:08 Slot Id : <322> +18:56:08 Transaction Type : RESPONSE +18:56:08 Received From : +18:56:08 ============================================================================ +18:56:08 FNo. Len. Field Value +18:56:08 ============================================================================ +18:56:08 [ 1] [ 4] [0210] +18:56:08 [ 2] [ 16] [6213541000712201] +18:56:08 [ 3] [ 6] [301000] +18:56:08 [ 4] [ 12] [000000000000] +18:56:08 [ 7] [ 10] [0320185357] +18:56:08 [ 11] [ 6] [955321] +18:56:08 [ 12] [ 6] [185357] +18:56:08 [ 13] [ 4] [0320] +18:56:08 [ 15] [ 4] [0320] +18:56:08 [ 18] [ 4] [6011] +18:56:08 [ 19] [ 3] [418] +18:56:08 [ 32] [ 6] [668899] +18:56:08 [ 35] [ 32] [6213541000712201=491212011220434] +18:56:08 [ 37] [ 12] [507902407376] +18:56:08 [ 38] [ 6] [127792] +18:56:08 [ 39] [ 2] [00] +18:56:08 [ 41] [ 8] [03001010] +18:56:08 [ 49] [ 3] [418] +18:56:08 [ 54] [ 40] [1001418C0007100766801002418C000710076680] +18:56:08 ============================================================================ +18:56:08 Sending to : +18:56:08 ============================================================================ +18:56:08 + + +waiting on router queue for slot.... +18:56:10 ============================================================================ +18:56:10 Slot Id : <322> +18:56:10 Transaction Type : RESPONSE +18:56:10 Received From : +18:56:10 ============================================================================ +18:56:10 FNo. Len. Field Value +18:56:10 ============================================================================ +18:56:10 [ 1] [ 4] [0210] +18:56:10 [ 2] [ 16] [6213541000712201] +18:56:10 [ 3] [ 6] [301000] +18:56:10 [ 4] [ 12] [000000000000] +18:56:10 [ 7] [ 10] [0320185357] +18:56:10 [ 11] [ 6] [955321] +18:56:10 [ 12] [ 6] [185357] +18:56:10 [ 13] [ 4] [0320] +18:56:10 [ 15] [ 4] [0320] +18:56:10 [ 18] [ 4] [6011] +18:56:10 [ 19] [ 3] [418] +18:56:10 [ 32] [ 6] [668899] +18:56:10 [ 35] [ 32] [6213541000712201=491212011220434] +18:56:10 [ 37] [ 12] [507902407376] +18:56:10 [ 38] [ 6] [127792] +18:56:10 [ 39] [ 2] [00] +18:56:10 [ 41] [ 8] [03001010] +18:56:10 [ 49] [ 3] [418] +18:56:10 [ 54] [ 40] [1001418C0007100766801002418C000710076680] +18:56:10 ============================================================================ +18:56:10 Calculate Source COMM Id = 4 +18:56:10 ============================================================================ +18:56:10 + + +waiting on router queue for slot.... +18:56:17 ============================================================================ +18:56:17 Slot Id : <315> +18:56:17 Transaction Type : REQUEST +18:56:17 Received From : +18:56:17 ============================================================================ +18:56:17 FNo. Len. Field Value +18:56:17 ============================================================================ +18:56:17 [ 1] [ 4] [0800] +18:56:17 [ 2] [ 5] [02531] +18:56:17 [ 3] [ 6] [579188] +18:56:17 [ 7] [ 10] [0320115617] +18:56:17 [ 11] [ 6] [807511] +18:56:17 [ 15] [ 10] [0320115617] +18:56:17 [ 37] [ 11] [57918807511] +18:56:17 [ 70] [ 3] [001] +18:56:17 ============================================================================ +18:56:17 + + +waiting on router queue for slot.... +18:56:17 ============================================================================ +18:56:17 Slot Id : <315> +18:56:17 Transaction Type : RESPONSE +18:56:17 Received From : +18:56:17 ============================================================================ +18:56:17 FNo. Len. Field Value +18:56:17 ============================================================================ +18:56:17 [ 1] [ 4] [0810] +18:56:17 [ 7] [ 10] [0320115617] +18:56:17 [ 11] [ 6] [807511] +18:56:17 [ 15] [ 4] [0320] +18:56:17 [ 37] [ 12] [57918807511] +18:56:17 [ 39] [ 2] [00] +18:56:17 [ 70] [ 3] [001] +18:56:17 ============================================================================ +18:56:17 Sending to : +18:56:17 ============================================================================ +18:56:17 + + +waiting on router queue for slot.... +18:56:20 ============================================================================ +18:56:20 Slot Id : <297> +18:56:20 Transaction Type : REQUEST +18:56:20 Received From : +18:56:20 ============================================================================ +18:56:20 FNo. Len. Field Value +18:56:20 ============================================================================ +18:56:20 [ 1] [ 4] [0800] +18:56:20 [ 7] [ 10] [0320115527] +18:56:20 [ 11] [ 6] [157820] +18:56:20 [ 70] [ 3] [301] +18:56:20 ============================================================================ +18:56:20 + + +waiting on router queue for slot.... +18:56:20 Sending to : +18:56:20 ============================================================================ +18:56:20 ============================================================================ +18:56:20 Slot Id : <297> +18:56:20 Transaction Type : RESPONSE +18:56:20 Received From : +18:56:20 ============================================================================ +18:56:20 FNo. Len. Field Value +18:56:20 ============================================================================ +18:56:20 [ 1] [ 4] [0810] +18:56:20 [ 7] [ 10] [0320115527] +18:56:20 [ 11] [ 6] [157820] +18:56:20 [ 39] [ 2] [00] +18:56:20 [ 70] [ 3] [301] +18:56:20 ============================================================================ +18:56:20 Calculate Source COMM Id = 2 +18:56:20 ============================================================================ +18:56:20 + + +waiting on router queue for slot.... +18:56:22 ============================================================================ +18:56:22 Slot Id : <289> +18:56:22 Transaction Type : REQUEST +18:56:22 Received From : +18:56:22 ============================================================================ +18:56:22 FNo. Len. Field Value +18:56:22 ============================================================================ +18:56:22 [ 1] [ 4] [0800] +18:56:22 [ 7] [ 10] [0320115412] +18:56:22 [ 11] [ 6] [069877] +18:56:22 [ 37] [ 12] [57918069877] +18:56:22 [ 70] [ 3] [301] +18:56:22 ============================================================================ +18:56:22 + + +waiting on router queue for slot.... +18:56:22 Sending to : +18:56:22 ============================================================================ +18:56:22 ============================================================================ +18:56:22 Slot Id : <289> +18:56:22 Transaction Type : RESPONSE +18:56:22 Received From : +18:56:22 ============================================================================ +18:56:22 FNo. Len. Field Value +18:56:22 ============================================================================ +18:56:22 [ 1] [ 4] [0810] +18:56:22 [ 7] [ 10] [0320115412] +18:56:22 [ 11] [ 6] [069877] +18:56:22 [ 37] [ 12] [579180698770] +18:56:22 [ 39] [ 2] [00] +18:56:22 [ 70] [ 3] [810] +18:56:22 ============================================================================ +18:56:22 Calculate Source COMM Id = 4 +18:56:22 ============================================================================ +18:56:22 + + +waiting on router queue for slot.... +18:56:24 ============================================================================ +18:56:24 Slot Id : <304> +18:56:24 Transaction Type : REQUEST +18:56:24 Received From : +18:56:24 ============================================================================ +18:56:24 FNo. Len. Field Value +18:56:24 ============================================================================ +18:56:24 [ 1] [ 4] [0800] +18:56:24 [ 7] [ 10] [0321020813] +18:56:24 [ 11] [ 6] [190813] +18:56:24 [ 37] [ 12] [57919190813] +18:56:24 [ 70] [ 3] [301] +18:56:24 ============================================================================ +18:56:24 + + +waiting on router queue for slot.... +18:56:24 Sending to : +18:56:24 ============================================================================ +18:56:24 ============================================================================ +18:56:24 Slot Id : <304> +18:56:24 Transaction Type : RESPONSE +18:56:24 Received From : +18:56:24 ============================================================================ +18:56:24 FNo. Len. Field Value +18:56:24 ============================================================================ +18:56:24 [ 1] [ 4] [0810] +18:56:24 [ 7] [ 10] [0321020813] +18:56:24 [ 11] [ 6] [190813] +18:56:24 [ 37] [ 12] [579191908130] +18:56:24 [ 39] [ 2] [00] +18:56:24 [ 70] [ 3] [810] +18:56:24 ============================================================================ +18:56:24 Calculate Source COMM Id = 6 +18:56:24 ============================================================================ +18:56:24 + + +waiting on router queue for slot.... +18:56:27 ============================================================================ +18:56:27 Slot Id : <326> +18:56:27 Transaction Type : REQUEST +18:56:27 Received From : +18:56:27 ============================================================================ +18:56:27 FNo. Len. Field Value +18:56:27 ============================================================================ +18:56:27 [ 1] [ 4] [0200] +18:56:27 [ 2] [ 16] [6213544001229449] +18:56:27 [ 3] [ 6] [301000] +18:56:27 [ 7] [ 10] [0320115534] +18:56:27 [ 11] [ 6] [271342] +18:56:27 [ 12] [ 6] [185534] +18:56:27 [ 13] [ 4] [0320] +18:56:27 [ 14] [ 4] [4912] +18:56:27 [ 15] [ 4] [0320] +18:56:27 [ 18] [ 4] [6011] +18:56:27 [ 19] [ 3] [418] +18:56:27 [ 22] [ 3] [021] +18:56:27 [ 25] [ 2] [01] +18:56:27 [ 32] [ 6] [180893] +18:56:27 [ 35] [ 32] [6213544001229449=491212012944435] +18:56:27 [ 37] [ 12] [507911271342] +18:56:27 [ 41] [ 8] [0110VTBR] +18:56:27 [ 42] [ 15] [999999 ] +18:56:27 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +18:56:27 [ 49] [ 3] [418] +18:56:27 [ 52] [ 16] [D8E29FC707583134] +18:56:27 ============================================================================ +18:56:27 + + +waiting on router queue for slot.... +18:56:27 Sending to : +18:56:27 ============================================================================ +18:56:27 Sending to : +18:56:27 ============================================================================ +18:56:28 ============================================================================ +18:56:28 Slot Id : <326> +18:56:28 Transaction Type : REQUEST +18:56:28 Received From : +18:56:28 ============================================================================ +18:56:28 FNo. Len. Field Value +18:56:28 ============================================================================ +18:56:28 [ 1] [ 4] [0200] +18:56:28 [ 2] [ 16] [6213544001229449] +18:56:28 [ 3] [ 6] [301000] +18:56:28 [ 7] [ 10] [0320115534] +18:56:28 [ 11] [ 6] [271342] +18:56:28 [ 12] [ 6] [185534] +18:56:28 [ 13] [ 4] [0320] +18:56:28 [ 14] [ 4] [4912] +18:56:28 [ 15] [ 4] [0320] +18:56:28 [ 18] [ 4] [6011] +18:56:28 [ 19] [ 3] [418] +18:56:28 [ 22] [ 3] [021] +18:56:28 [ 25] [ 2] [01] +18:56:28 [ 32] [ 6] [180893] +18:56:28 [ 35] [ 32] [6213544001229449=491212012944435] +18:56:28 [ 37] [ 12] [507911271342] +18:56:28 [ 41] [ 8] [0110VTBR] +18:56:28 [ 42] [ 15] [999999 ] +18:56:28 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +18:56:28 [ 49] [ 3] [418] +18:56:28 [ 52] [ 16] [D8E29FC707583134] +18:56:28 ============================================================================ +18:56:28 + + +waiting on router queue for slot.... +18:56:28 Sending to : +18:56:28 ============================================================================ +18:56:28 ============================================================================ +18:56:28 Slot Id : <326> +18:56:28 Transaction Type : REQUEST +18:56:28 Received From : +18:56:28 ============================================================================ +18:56:28 FNo. Len. Field Value +18:56:28 ============================================================================ +18:56:28 [ 1] [ 4] [0200] +18:56:28 [ 2] [ 16] [6213544001229449] +18:56:28 [ 3] [ 6] [301000] +18:56:28 [ 7] [ 10] [0320115534] +18:56:28 [ 11] [ 6] [271342] +18:56:28 [ 12] [ 6] [185534] +18:56:28 [ 13] [ 4] [0320] +18:56:28 [ 14] [ 4] [4912] +18:56:28 [ 15] [ 4] [0320] +18:56:28 [ 18] [ 4] [6011] +18:56:28 [ 19] [ 3] [418] +18:56:28 [ 22] [ 3] [021] +18:56:28 [ 25] [ 2] [01] +18:56:28 [ 32] [ 6] [180893] +18:56:28 [ 35] [ 32] [6213544001229449=491212012944435] +18:56:28 [ 37] [ 12] [507911271342] +18:56:28 [ 41] [ 8] [0110VTBR] +18:56:28 [ 42] [ 15] [999999 ] +18:56:28 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +18:56:28 [ 49] [ 3] [418] +18:56:28 [ 52] [ 16] [A01DBBD921D0454A] +18:56:28 ============================================================================ +18:56:28 + + +waiting on router queue for slot.... +18:56:28 Sending to : <0> +18:56:28 ============================================================================ +18:56:28 ============================================================================ +18:56:28 Slot Id : <326> +18:56:28 Transaction Type : RESPONSE +18:56:28 Received From : +18:56:28 ============================================================================ +18:56:28 FNo. Len. Field Value +18:56:28 ============================================================================ +18:56:28 [ 1] [ 4] [0210] +18:56:28 [ 2] [ 16] [6213544001229449] +18:56:28 [ 3] [ 6] [301000] +18:56:28 [ 4] [ 12] [000000000000] +18:56:28 [ 7] [ 10] [0320115534] +18:56:28 [ 11] [ 6] [271342] +18:56:28 [ 12] [ 6] [185534] +18:56:28 [ 13] [ 4] [0320] +18:56:28 [ 15] [ 4] [0320] +18:56:28 [ 18] [ 4] [6011] +18:56:28 [ 19] [ 3] [418] +18:56:28 [ 32] [ 6] [180893] +18:56:28 [ 35] [ 32] [6213544001229449=491212012944435] +18:56:28 [ 37] [ 12] [507911271342] +18:56:28 [ 38] [ 6] [987988] +18:56:28 [ 39] [ 2] [00] +18:56:28 [ 41] [ 8] [0110VTBR] +18:56:28 [ 49] [ 3] [418] +18:56:28 [ 54] [ 40] [1001418C0000212364521002418C000021236452] +18:56:28 ============================================================================ +18:56:28 Sending to : +18:56:28 ============================================================================ +18:56:28 + + +waiting on router queue for slot.... +18:56:29 ============================================================================ +18:56:29 Slot Id : <326> +18:56:29 Transaction Type : RESPONSE +18:56:29 Received From : +18:56:29 ============================================================================ +18:56:29 FNo. Len. Field Value +18:56:29 ============================================================================ +18:56:29 [ 1] [ 4] [0210] +18:56:29 [ 2] [ 16] [6213544001229449] +18:56:29 [ 3] [ 6] [301000] +18:56:29 [ 4] [ 12] [000000000000] +18:56:29 [ 7] [ 10] [0320115534] +18:56:29 [ 11] [ 6] [271342] +18:56:29 [ 12] [ 6] [185534] +18:56:29 [ 13] [ 4] [0320] +18:56:29 [ 15] [ 4] [0320] +18:56:29 [ 18] [ 4] [6011] +18:56:29 [ 19] [ 3] [418] +18:56:29 [ 32] [ 6] [180893] +18:56:29 [ 35] [ 32] [6213544001229449=491212012944435] +18:56:29 [ 37] [ 12] [507911271342] +18:56:29 [ 38] [ 6] [987988] +18:56:29 [ 39] [ 2] [00] +18:56:29 [ 41] [ 8] [0110VTBR] +18:56:29 [ 49] [ 3] [418] +18:56:29 [ 54] [ 40] [1001418C0000212364521002418C000021236452] +18:56:29 ============================================================================ +18:56:29 Calculate Source COMM Id = 2 +18:56:29 ============================================================================ +18:56:29 + + +waiting on router queue for slot.... +18:56:41 ============================================================================ +18:56:41 Slot Id : <291> +18:56:41 Transaction Type : REQUEST +18:56:41 Received From : +18:56:41 ============================================================================ +18:56:41 FNo. Len. Field Value +18:56:41 ============================================================================ +18:56:41 [ 1] [ 4] [0800] +18:56:41 [ 7] [ 10] [0320115548] +18:56:41 [ 11] [ 6] [157821] +18:56:41 [ 70] [ 3] [301] +18:56:41 ============================================================================ +18:56:41 + + +waiting on router queue for slot.... +18:56:41 Sending to : +18:56:41 ============================================================================ +18:56:41 ============================================================================ +18:56:41 Slot Id : <291> +18:56:41 Transaction Type : RESPONSE +18:56:41 Received From : +18:56:41 ============================================================================ +18:56:41 FNo. Len. Field Value +18:56:41 ============================================================================ +18:56:41 [ 1] [ 4] [0810] +18:56:41 [ 7] [ 10] [0320115548] +18:56:41 [ 11] [ 6] [157821] +18:56:41 [ 39] [ 2] [00] +18:56:41 [ 70] [ 3] [301] +18:56:41 ============================================================================ +18:56:41 Calculate Source COMM Id = 2 +18:56:41 ============================================================================ +18:56:41 + + +waiting on router queue for slot.... +18:56:48 ============================================================================ +18:56:48 Slot Id : <327> +18:56:48 Transaction Type : REQUEST +18:56:48 Received From : +18:56:48 ============================================================================ +18:56:48 FNo. Len. Field Value +18:56:48 ============================================================================ +18:56:48 [ 1] [ 4] [0200] +18:56:48 [ 2] [ 16] [6213541000468499] +18:56:48 [ 3] [ 6] [010000] +18:56:48 [ 4] [ 12] [000100000000] +18:56:48 [ 7] [ 10] [0320185437] +18:56:48 [ 11] [ 6] [955345] +18:56:48 [ 12] [ 6] [185437] +18:56:48 [ 13] [ 4] [0320] +18:56:48 [ 15] [ 4] [0320] +18:56:48 [ 18] [ 4] [6011] +18:56:48 [ 19] [ 3] [418] +18:56:48 [ 22] [ 3] [021] +18:56:48 [ 25] [ 2] [01] +18:56:48 [ 28] [ 9] [D00002000] +18:56:48 [ 32] [ 6] [668899] +18:56:48 [ 35] [ 32] [6213541000468499=491212016849725] +18:56:48 [ 37] [ 12] [507900146918] +18:56:48 [ 41] [ 8] [03020005] +18:56:48 [ 42] [ 15] [APT ] +18:56:48 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:56:48 [ 49] [ 3] [418] +18:56:48 [ 52] [ 16] [FCE1AC1CF5833070] +18:56:48 ============================================================================ +18:56:48 + + +waiting on router queue for slot.... +18:56:48 Sending to : +18:56:48 ============================================================================ +18:56:48 Sending to : +18:56:48 ============================================================================ +18:56:48 ============================================================================ +18:56:48 Slot Id : <327> +18:56:48 Transaction Type : REQUEST +18:56:48 Received From : +18:56:48 ============================================================================ +18:56:48 FNo. Len. Field Value +18:56:48 ============================================================================ +18:56:48 [ 1] [ 4] [0200] +18:56:48 [ 2] [ 16] [6213541000468499] +18:56:48 [ 3] [ 6] [010000] +18:56:48 [ 4] [ 12] [000100000000] +18:56:48 [ 7] [ 10] [0320185437] +18:56:48 [ 11] [ 6] [955345] +18:56:48 [ 12] [ 6] [185437] +18:56:48 [ 13] [ 4] [0320] +18:56:48 [ 15] [ 4] [0320] +18:56:48 [ 18] [ 4] [6011] +18:56:48 [ 19] [ 3] [418] +18:56:48 [ 22] [ 3] [021] +18:56:48 [ 25] [ 2] [01] +18:56:48 [ 28] [ 9] [D00002000] +18:56:48 [ 32] [ 6] [668899] +18:56:48 [ 35] [ 32] [6213541000468499=491212016849725] +18:56:48 [ 37] [ 12] [507900146918] +18:56:48 [ 41] [ 8] [03020005] +18:56:48 [ 42] [ 15] [APT ] +18:56:48 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:56:48 [ 49] [ 3] [418] +18:56:48 [ 52] [ 16] [FCE1AC1CF5833070] +18:56:48 ============================================================================ +18:56:48 + + +waiting on router queue for slot.... +18:56:48 Sending to : +18:56:48 ============================================================================ +18:56:48 ============================================================================ +18:56:48 Slot Id : <327> +18:56:48 Transaction Type : REQUEST +18:56:48 Received From : +18:56:48 ============================================================================ +18:56:48 FNo. Len. Field Value +18:56:48 ============================================================================ +18:56:48 [ 1] [ 4] [0200] +18:56:48 [ 2] [ 16] [6213541000468499] +18:56:48 [ 3] [ 6] [010000] +18:56:48 [ 4] [ 12] [000100000000] +18:56:48 [ 7] [ 10] [0320185437] +18:56:48 [ 11] [ 6] [955345] +18:56:48 [ 12] [ 6] [185437] +18:56:48 [ 13] [ 4] [0320] +18:56:48 [ 15] [ 4] [0320] +18:56:48 [ 18] [ 4] [6011] +18:56:48 [ 19] [ 3] [418] +18:56:48 [ 22] [ 3] [021] +18:56:48 [ 25] [ 2] [01] +18:56:48 [ 28] [ 9] [D00002000] +18:56:48 [ 32] [ 6] [668899] +18:56:48 [ 35] [ 32] [6213541000468499=491212016849725] +18:56:48 [ 37] [ 12] [507900146918] +18:56:48 [ 41] [ 8] [03020005] +18:56:48 [ 42] [ 15] [APT ] +18:56:48 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:56:48 [ 49] [ 3] [418] +18:56:48 [ 52] [ 16] [BD20756CB9CBA482] +18:56:48 ============================================================================ +18:56:48 + + +waiting on router queue for slot.... +18:56:48 Sending to : <0> +18:56:48 ============================================================================ +18:56:49 ============================================================================ +18:56:49 Slot Id : <327> +18:56:49 Transaction Type : RESPONSE +18:56:49 Received From : +18:56:49 ============================================================================ +18:56:49 FNo. Len. Field Value +18:56:49 ============================================================================ +18:56:49 [ 1] [ 4] [0210] +18:56:49 [ 2] [ 16] [6213541000468499] +18:56:49 [ 3] [ 6] [010000] +18:56:49 [ 4] [ 12] [000100000000] +18:56:49 [ 7] [ 10] [0320185437] +18:56:49 [ 11] [ 6] [955345] +18:56:49 [ 12] [ 6] [185437] +18:56:49 [ 13] [ 4] [0320] +18:56:49 [ 15] [ 4] [0320] +18:56:49 [ 18] [ 4] [6011] +18:56:49 [ 19] [ 3] [418] +18:56:49 [ 32] [ 6] [668899] +18:56:49 [ 35] [ 32] [6213541000468499=491212016849725] +18:56:49 [ 37] [ 12] [507900146918] +18:56:49 [ 38] [ 6] [955345] +18:56:49 [ 39] [ 2] [51] +18:56:49 [ 41] [ 8] [03020005] +18:56:49 [ 49] [ 3] [418] +18:56:49 [ 54] [ 40] [0001418C0000142664250002418C000014266425] +18:56:49 ============================================================================ +18:56:49 Sending to : +18:56:49 ============================================================================ +18:56:49 + + +waiting on router queue for slot.... +18:56:50 ============================================================================ +18:56:50 Slot Id : <327> +18:56:50 Transaction Type : RESPONSE +18:56:50 Received From : +18:56:50 ============================================================================ +18:56:50 FNo. Len. Field Value +18:56:50 ============================================================================ +18:56:50 [ 1] [ 4] [0210] +18:56:50 [ 2] [ 16] [6213541000468499] +18:56:50 [ 3] [ 6] [010000] +18:56:50 [ 4] [ 12] [000100000000] +18:56:50 [ 7] [ 10] [0320185437] +18:56:50 [ 11] [ 6] [955345] +18:56:50 [ 12] [ 6] [185437] +18:56:50 [ 13] [ 4] [0320] +18:56:50 [ 15] [ 4] [0320] +18:56:50 [ 18] [ 4] [6011] +18:56:50 [ 19] [ 3] [418] +18:56:50 [ 32] [ 6] [668899] +18:56:50 [ 35] [ 32] [6213541000468499=491212016849725] +18:56:50 [ 37] [ 12] [507900146918] +18:56:50 [ 38] [ 6] [955345] +18:56:50 [ 39] [ 2] [51] +18:56:50 [ 41] [ 8] [03020005] +18:56:50 [ 49] [ 3] [418] +18:56:50 [ 54] [ 40] [0001418C0000142664250002418C000014266425] +18:56:50 ============================================================================ +18:56:50 Calculate Source COMM Id = 4 +18:56:50 ============================================================================ +18:56:50 + + +waiting on router queue for slot.... +18:56:53 ============================================================================ +18:56:53 Slot Id : <285> +18:56:53 Transaction Type : REQUEST +18:56:53 Received From : +18:56:53 ============================================================================ +18:56:53 FNo. Len. Field Value +18:56:53 ============================================================================ +18:56:53 [ 1] [ 4] [0800] +18:56:53 [ 7] [ 10] [0320115600] +18:56:53 [ 11] [ 6] [157822] +18:56:53 [ 70] [ 3] [301] +18:56:53 ============================================================================ +18:56:53 + + +waiting on router queue for slot.... +18:56:53 Sending to : +18:56:53 ============================================================================ +18:56:53 ============================================================================ +18:56:53 Slot Id : <285> +18:56:53 Transaction Type : RESPONSE +18:56:53 Received From : +18:56:53 ============================================================================ +18:56:53 FNo. Len. Field Value +18:56:53 ============================================================================ +18:56:53 [ 1] [ 4] [0810] +18:56:53 [ 7] [ 10] [0320115600] +18:56:53 [ 11] [ 6] [157822] +18:56:53 [ 39] [ 2] [00] +18:56:53 [ 70] [ 3] [301] +18:56:53 ============================================================================ +18:56:53 Calculate Source COMM Id = 2 +18:56:53 ============================================================================ +18:56:53 + + +waiting on router queue for slot.... +18:57:10 ============================================================================ +18:57:10 Slot Id : <331> +18:57:10 Transaction Type : REQUEST +18:57:10 Received From : +18:57:10 ============================================================================ +18:57:10 FNo. Len. Field Value +18:57:10 ============================================================================ +18:57:10 [ 1] [ 4] [0800] +18:57:10 [ 7] [ 10] [0320115616] +18:57:10 [ 11] [ 6] [157823] +18:57:10 [ 70] [ 3] [301] +18:57:10 ============================================================================ +18:57:10 + + +waiting on router queue for slot.... +18:57:10 Sending to : +18:57:10 ============================================================================ +18:57:10 ============================================================================ +18:57:10 Slot Id : <331> +18:57:10 Transaction Type : RESPONSE +18:57:10 Received From : +18:57:10 ============================================================================ +18:57:10 FNo. Len. Field Value +18:57:10 ============================================================================ +18:57:10 [ 1] [ 4] [0810] +18:57:10 [ 7] [ 10] [0320115616] +18:57:10 [ 11] [ 6] [157823] +18:57:10 [ 39] [ 2] [00] +18:57:10 [ 70] [ 3] [301] +18:57:10 ============================================================================ +18:57:10 Calculate Source COMM Id = 2 +18:57:10 ============================================================================ +18:57:10 + + +waiting on router queue for slot.... +18:57:10 ============================================================================ +18:57:10 Slot Id : <301> +18:57:10 Transaction Type : REQUEST +18:57:10 Received From : +18:57:10 ============================================================================ +18:57:10 FNo. Len. Field Value +18:57:10 ============================================================================ +18:57:10 [ 1] [ 4] [0200] +18:57:10 [ 2] [ 16] [6213541000468499] +18:57:10 [ 3] [ 6] [010000] +18:57:10 [ 4] [ 12] [000100000000] +18:57:10 [ 7] [ 10] [0320185500] +18:57:10 [ 11] [ 6] [955357] +18:57:10 [ 12] [ 6] [185500] +18:57:10 [ 13] [ 4] [0320] +18:57:10 [ 15] [ 4] [0320] +18:57:10 [ 18] [ 4] [6011] +18:57:10 [ 19] [ 3] [418] +18:57:10 [ 22] [ 3] [021] +18:57:10 [ 25] [ 2] [01] +18:57:10 [ 28] [ 9] [D00002000] +18:57:10 [ 32] [ 6] [668899] +18:57:10 [ 35] [ 32] [6213541000468499=491212016849725] +18:57:10 [ 37] [ 12] [507900146919] +18:57:10 [ 41] [ 8] [03020005] +18:57:10 [ 42] [ 15] [APT ] +18:57:10 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:57:10 [ 49] [ 3] [418] +18:57:10 [ 52] [ 16] [FCE1AC1CF5833070] +18:57:10 ============================================================================ +18:57:10 + + +waiting on router queue for slot.... +18:57:10 Sending to : +18:57:10 ============================================================================ +18:57:10 Sending to : +18:57:10 ============================================================================ +18:57:10 ============================================================================ +18:57:10 Slot Id : <301> +18:57:10 Transaction Type : REQUEST +18:57:10 Received From : +18:57:10 ============================================================================ +18:57:10 FNo. Len. Field Value +18:57:10 ============================================================================ +18:57:10 [ 1] [ 4] [0200] +18:57:10 [ 2] [ 16] [6213541000468499] +18:57:10 [ 3] [ 6] [010000] +18:57:10 [ 4] [ 12] [000100000000] +18:57:10 [ 7] [ 10] [0320185500] +18:57:10 [ 11] [ 6] [955357] +18:57:10 [ 12] [ 6] [185500] +18:57:10 [ 13] [ 4] [0320] +18:57:10 [ 15] [ 4] [0320] +18:57:10 [ 18] [ 4] [6011] +18:57:10 [ 19] [ 3] [418] +18:57:10 [ 22] [ 3] [021] +18:57:10 [ 25] [ 2] [01] +18:57:10 [ 28] [ 9] [D00002000] +18:57:10 [ 32] [ 6] [668899] +18:57:10 [ 35] [ 32] [6213541000468499=491212016849725] +18:57:10 [ 37] [ 12] [507900146919] +18:57:10 [ 41] [ 8] [03020005] +18:57:10 [ 42] [ 15] [APT ] +18:57:10 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:57:10 [ 49] [ 3] [418] +18:57:10 [ 52] [ 16] [FCE1AC1CF5833070] +18:57:10 ============================================================================ +18:57:10 + + +waiting on router queue for slot.... +18:57:10 Sending to : +18:57:10 ============================================================================ +18:57:10 ============================================================================ +18:57:10 Slot Id : <301> +18:57:10 Transaction Type : REQUEST +18:57:10 Received From : +18:57:10 ============================================================================ +18:57:10 FNo. Len. Field Value +18:57:10 ============================================================================ +18:57:10 [ 1] [ 4] [0200] +18:57:10 [ 2] [ 16] [6213541000468499] +18:57:10 [ 3] [ 6] [010000] +18:57:10 [ 4] [ 12] [000100000000] +18:57:10 [ 7] [ 10] [0320185500] +18:57:10 [ 11] [ 6] [955357] +18:57:10 [ 12] [ 6] [185500] +18:57:10 [ 13] [ 4] [0320] +18:57:10 [ 15] [ 4] [0320] +18:57:10 [ 18] [ 4] [6011] +18:57:10 [ 19] [ 3] [418] +18:57:10 [ 22] [ 3] [021] +18:57:10 [ 25] [ 2] [01] +18:57:10 [ 28] [ 9] [D00002000] +18:57:10 [ 32] [ 6] [668899] +18:57:10 [ 35] [ 32] [6213541000468499=491212016849725] +18:57:10 [ 37] [ 12] [507900146919] +18:57:10 [ 41] [ 8] [03020005] +18:57:10 [ 42] [ 15] [APT ] +18:57:10 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:57:10 [ 49] [ 3] [418] +18:57:10 [ 52] [ 16] [BD20756CB9CBA482] +18:57:10 ============================================================================ +18:57:10 + + +waiting on router queue for slot.... +18:57:10 Sending to : <0> +18:57:10 ============================================================================ +18:57:11 ============================================================================ +18:57:11 Slot Id : <301> +18:57:11 Transaction Type : RESPONSE +18:57:11 Received From : +18:57:11 ============================================================================ +18:57:11 FNo. Len. Field Value +18:57:11 ============================================================================ +18:57:11 [ 1] [ 4] [0210] +18:57:11 [ 2] [ 16] [6213541000468499] +18:57:11 [ 3] [ 6] [010000] +18:57:11 [ 4] [ 12] [000100000000] +18:57:11 [ 7] [ 10] [0320185500] +18:57:11 [ 11] [ 6] [955357] +18:57:11 [ 12] [ 6] [185500] +18:57:11 [ 13] [ 4] [0320] +18:57:11 [ 15] [ 4] [0320] +18:57:11 [ 18] [ 4] [6011] +18:57:11 [ 19] [ 3] [418] +18:57:11 [ 32] [ 6] [668899] +18:57:11 [ 35] [ 32] [6213541000468499=491212016849725] +18:57:11 [ 37] [ 12] [507900146919] +18:57:11 [ 38] [ 6] [955357] +18:57:11 [ 39] [ 2] [51] +18:57:11 [ 41] [ 8] [03020005] +18:57:11 [ 49] [ 3] [418] +18:57:11 [ 54] [ 40] [0001418C0000142664250002418C000014266425] +18:57:11 ============================================================================ +18:57:11 Sending to : +18:57:11 ============================================================================ +18:57:11 + + +waiting on router queue for slot.... +18:57:12 ============================================================================ +18:57:12 Slot Id : <301> +18:57:12 Transaction Type : RESPONSE +18:57:12 Received From : +18:57:12 ============================================================================ +18:57:12 FNo. Len. Field Value +18:57:12 ============================================================================ +18:57:12 [ 1] [ 4] [0210] +18:57:12 [ 2] [ 16] [6213541000468499] +18:57:12 [ 3] [ 6] [010000] +18:57:12 [ 4] [ 12] [000100000000] +18:57:12 [ 7] [ 10] [0320185500] +18:57:12 [ 11] [ 6] [955357] +18:57:12 [ 12] [ 6] [185500] +18:57:12 [ 13] [ 4] [0320] +18:57:12 [ 15] [ 4] [0320] +18:57:12 [ 18] [ 4] [6011] +18:57:12 [ 19] [ 3] [418] +18:57:12 [ 32] [ 6] [668899] +18:57:12 [ 35] [ 32] [6213541000468499=491212016849725] +18:57:12 [ 37] [ 12] [507900146919] +18:57:12 [ 38] [ 6] [955357] +18:57:12 [ 39] [ 2] [51] +18:57:12 [ 41] [ 8] [03020005] +18:57:12 [ 49] [ 3] [418] +18:57:12 [ 54] [ 40] [0001418C0000142664250002418C000014266425] +18:57:12 ============================================================================ +18:57:12 Calculate Source COMM Id = 4 +18:57:12 ============================================================================ +18:57:12 + + +waiting on router queue for slot.... +18:57:19 ============================================================================ +18:57:19 Slot Id : <305> +18:57:19 Transaction Type : REQUEST +18:57:19 Received From : +18:57:19 ============================================================================ +18:57:19 FNo. Len. Field Value +18:57:19 ============================================================================ +18:57:19 [ 1] [ 4] [0800] +18:57:19 [ 2] [ 5] [02531] +18:57:19 [ 3] [ 6] [579188] +18:57:19 [ 7] [ 10] [0320115719] +18:57:19 [ 11] [ 6] [807512] +18:57:19 [ 15] [ 10] [0320115719] +18:57:19 [ 37] [ 11] [57918807512] +18:57:19 [ 70] [ 3] [001] +18:57:19 ============================================================================ +18:57:19 + + +waiting on router queue for slot.... +18:57:19 ============================================================================ +18:57:19 Slot Id : <305> +18:57:19 Transaction Type : RESPONSE +18:57:19 Received From : +18:57:19 ============================================================================ +18:57:19 FNo. Len. Field Value +18:57:19 ============================================================================ +18:57:19 [ 1] [ 4] [0810] +18:57:19 [ 7] [ 10] [0320115719] +18:57:19 [ 11] [ 6] [807512] +18:57:19 [ 15] [ 4] [0320] +18:57:19 [ 37] [ 12] [57918807512] +18:57:19 [ 39] [ 2] [00] +18:57:19 [ 70] [ 3] [001] +18:57:19 ============================================================================ +18:57:19 Sending to : +18:57:19 ============================================================================ +18:57:19 + + +waiting on router queue for slot.... +18:57:23 ============================================================================ +18:57:23 Slot Id : <314> +18:57:23 Transaction Type : REQUEST +18:57:23 Received From : +18:57:23 ============================================================================ +18:57:23 FNo. Len. Field Value +18:57:23 ============================================================================ +18:57:23 [ 1] [ 4] [0200] +18:57:23 [ 2] [ 16] [6213544001229449] +18:57:23 [ 3] [ 6] [011000] +18:57:23 [ 4] [ 12] [000015000000] +18:57:23 [ 7] [ 10] [0320115628] +18:57:23 [ 11] [ 6] [271345] +18:57:23 [ 12] [ 6] [185628] +18:57:23 [ 13] [ 4] [0320] +18:57:23 [ 14] [ 4] [4912] +18:57:23 [ 15] [ 4] [0320] +18:57:23 [ 18] [ 4] [6011] +18:57:23 [ 19] [ 3] [418] +18:57:23 [ 22] [ 3] [021] +18:57:23 [ 25] [ 2] [01] +18:57:23 [ 28] [ 9] [D00002000] +18:57:23 [ 32] [ 6] [180893] +18:57:23 [ 35] [ 32] [6213544001229449=491212012944435] +18:57:23 [ 37] [ 12] [507911271345] +18:57:23 [ 41] [ 8] [0110VTBR] +18:57:23 [ 42] [ 15] [999999 ] +18:57:23 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +18:57:23 [ 49] [ 3] [418] +18:57:23 [ 52] [ 16] [D8E29FC707583134] +18:57:23 ============================================================================ +18:57:23 + + +waiting on router queue for slot.... +18:57:23 Sending to : +18:57:23 ============================================================================ +18:57:23 Sending to : +18:57:23 ============================================================================ +18:57:23 ============================================================================ +18:57:23 Slot Id : <314> +18:57:23 Transaction Type : REQUEST +18:57:23 Received From : +18:57:23 ============================================================================ +18:57:23 FNo. Len. Field Value +18:57:23 ============================================================================ +18:57:23 [ 1] [ 4] [0200] +18:57:23 [ 2] [ 16] [6213544001229449] +18:57:23 [ 3] [ 6] [011000] +18:57:23 [ 4] [ 12] [000015000000] +18:57:23 [ 7] [ 10] [0320115628] +18:57:23 [ 11] [ 6] [271345] +18:57:23 [ 12] [ 6] [185628] +18:57:23 [ 13] [ 4] [0320] +18:57:23 [ 14] [ 4] [4912] +18:57:23 [ 15] [ 4] [0320] +18:57:23 [ 18] [ 4] [6011] +18:57:23 [ 19] [ 3] [418] +18:57:23 [ 22] [ 3] [021] +18:57:23 [ 25] [ 2] [01] +18:57:23 [ 28] [ 9] [D00002000] +18:57:23 [ 32] [ 6] [180893] +18:57:23 [ 35] [ 32] [6213544001229449=491212012944435] +18:57:23 [ 37] [ 12] [507911271345] +18:57:23 [ 41] [ 8] [0110VTBR] +18:57:23 [ 42] [ 15] [999999 ] +18:57:23 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +18:57:23 [ 49] [ 3] [418] +18:57:23 [ 52] [ 16] [D8E29FC707583134] +18:57:23 ============================================================================ +18:57:23 + + +waiting on router queue for slot.... +18:57:23 Sending to : +18:57:23 ============================================================================ +18:57:23 ============================================================================ +18:57:23 Slot Id : <314> +18:57:23 Transaction Type : REQUEST +18:57:23 Received From : +18:57:23 ============================================================================ +18:57:23 FNo. Len. Field Value +18:57:23 ============================================================================ +18:57:23 [ 1] [ 4] [0200] +18:57:23 [ 2] [ 16] [6213544001229449] +18:57:23 [ 3] [ 6] [011000] +18:57:23 [ 4] [ 12] [000015000000] +18:57:23 [ 7] [ 10] [0320115628] +18:57:23 [ 11] [ 6] [271345] +18:57:23 [ 12] [ 6] [185628] +18:57:23 [ 13] [ 4] [0320] +18:57:23 [ 14] [ 4] [4912] +18:57:23 [ 15] [ 4] [0320] +18:57:23 [ 18] [ 4] [6011] +18:57:23 [ 19] [ 3] [418] +18:57:23 [ 22] [ 3] [021] +18:57:23 [ 25] [ 2] [01] +18:57:23 [ 28] [ 9] [D00002000] +18:57:23 [ 32] [ 6] [180893] +18:57:23 [ 35] [ 32] [6213544001229449=491212012944435] +18:57:23 [ 37] [ 12] [507911271345] +18:57:23 [ 41] [ 8] [0110VTBR] +18:57:23 [ 42] [ 15] [999999 ] +18:57:23 [ 43] [ 40] [ATM VIENTIANE PROVICE BRANCH LOCATION, P] +18:57:23 [ 49] [ 3] [418] +18:57:23 [ 52] [ 16] [A01DBBD921D0454A] +18:57:23 ============================================================================ +18:57:23 + + +waiting on router queue for slot.... +18:57:23 Sending to : <0> +18:57:23 ============================================================================ +18:57:24 ============================================================================ +18:57:24 Slot Id : <314> +18:57:24 Transaction Type : RESPONSE +18:57:24 Received From : +18:57:24 ============================================================================ +18:57:24 FNo. Len. Field Value +18:57:24 ============================================================================ +18:57:24 [ 1] [ 4] [0210] +18:57:24 [ 2] [ 16] [6213544001229449] +18:57:24 [ 3] [ 6] [011000] +18:57:24 [ 4] [ 12] [000015000000] +18:57:24 [ 7] [ 10] [0320115628] +18:57:24 [ 11] [ 6] [271345] +18:57:24 [ 12] [ 6] [185628] +18:57:24 [ 13] [ 4] [0320] +18:57:24 [ 15] [ 4] [0320] +18:57:24 [ 18] [ 4] [6011] +18:57:24 [ 19] [ 3] [418] +18:57:24 [ 32] [ 6] [180893] +18:57:24 [ 35] [ 32] [6213544001229449=491212012944435] +18:57:24 [ 37] [ 12] [507911271345] +18:57:24 [ 38] [ 6] [301448] +18:57:24 [ 39] [ 2] [00] +18:57:24 [ 41] [ 8] [0110VTBR] +18:57:24 [ 49] [ 3] [418] +18:57:24 [ 54] [ 40] [1001418C0000060364521002418C000006036452] +18:57:24 ============================================================================ +18:57:24 Sending to : +18:57:24 ============================================================================ +18:57:24 + + +waiting on router queue for slot.... +18:57:25 ============================================================================ +18:57:25 Slot Id : <302> +18:57:25 Transaction Type : REQUEST +18:57:25 Received From : +18:57:25 ============================================================================ +18:57:25 FNo. Len. Field Value +18:57:25 ============================================================================ +18:57:25 [ 1] [ 4] [0800] +18:57:25 [ 7] [ 10] [0320115631] +18:57:25 [ 11] [ 6] [157824] +18:57:25 [ 70] [ 3] [301] +18:57:25 ============================================================================ +18:57:25 + + +waiting on router queue for slot.... +18:57:25 Sending to : +18:57:25 ============================================================================ +18:57:25 ============================================================================ +18:57:25 Slot Id : <302> +18:57:25 Transaction Type : RESPONSE +18:57:25 Received From : +18:57:25 ============================================================================ +18:57:25 FNo. Len. Field Value +18:57:25 ============================================================================ +18:57:25 [ 1] [ 4] [0810] +18:57:25 [ 7] [ 10] [0320115631] +18:57:25 [ 11] [ 6] [157824] +18:57:25 [ 39] [ 2] [00] +18:57:25 [ 70] [ 3] [301] +18:57:25 ============================================================================ +18:57:25 Calculate Source COMM Id = 2 +18:57:25 ============================================================================ +18:57:25 + + +waiting on router queue for slot.... +18:57:25 ============================================================================ +18:57:25 Slot Id : <314> +18:57:25 Transaction Type : RESPONSE +18:57:25 Received From : +18:57:25 ============================================================================ +18:57:25 FNo. Len. Field Value +18:57:25 ============================================================================ +18:57:25 [ 1] [ 4] [0210] +18:57:25 [ 2] [ 16] [6213544001229449] +18:57:25 [ 3] [ 6] [011000] +18:57:25 [ 4] [ 12] [000015000000] +18:57:25 [ 7] [ 10] [0320115628] +18:57:25 [ 11] [ 6] [271345] +18:57:25 [ 12] [ 6] [185628] +18:57:25 [ 13] [ 4] [0320] +18:57:25 [ 15] [ 4] [0320] +18:57:25 [ 18] [ 4] [6011] +18:57:25 [ 19] [ 3] [418] +18:57:25 [ 32] [ 6] [180893] +18:57:25 [ 35] [ 32] [6213544001229449=491212012944435] +18:57:25 [ 37] [ 12] [507911271345] +18:57:25 [ 38] [ 6] [301448] +18:57:25 [ 39] [ 2] [00] +18:57:25 [ 41] [ 8] [0110VTBR] +18:57:25 [ 49] [ 3] [418] +18:57:25 [ 54] [ 40] [1001418C0000060364521002418C000006036452] +18:57:25 ============================================================================ +18:57:25 Calculate Source COMM Id = 2 +18:57:25 ============================================================================ +18:57:25 + + +waiting on router queue for slot.... +18:57:29 ============================================================================ +18:57:29 Slot Id : <292> +18:57:29 Transaction Type : REQUEST +18:57:29 Received From : +18:57:29 ============================================================================ +18:57:29 FNo. Len. Field Value +18:57:29 ============================================================================ +18:57:29 [ 1] [ 4] [0800] +18:57:29 [ 7] [ 10] [0321020918] +18:57:29 [ 11] [ 6] [190918] +18:57:29 [ 37] [ 12] [57919190918] +18:57:29 [ 70] [ 3] [301] +18:57:29 ============================================================================ +18:57:29 + + +waiting on router queue for slot.... +18:57:29 Sending to : +18:57:29 ============================================================================ +18:57:29 ============================================================================ +18:57:29 Slot Id : <292> +18:57:29 Transaction Type : RESPONSE +18:57:29 Received From : +18:57:29 ============================================================================ +18:57:29 FNo. Len. Field Value +18:57:29 ============================================================================ +18:57:29 [ 1] [ 4] [0810] +18:57:29 [ 7] [ 10] [0321020918] +18:57:29 [ 11] [ 6] [190918] +18:57:29 [ 37] [ 12] [579191909180] +18:57:29 [ 39] [ 2] [00] +18:57:29 [ 70] [ 3] [810] +18:57:29 ============================================================================ +18:57:29 Calculate Source COMM Id = 6 +18:57:29 ============================================================================ +18:57:29 + + +waiting on router queue for slot.... +18:57:31 ============================================================================ +18:57:31 Slot Id : <335> +18:57:31 Transaction Type : REQUEST +18:57:31 Received From : +18:57:31 ============================================================================ +18:57:31 FNo. Len. Field Value +18:57:31 ============================================================================ +18:57:31 [ 1] [ 4] [0200] +18:57:31 [ 2] [ 16] [6213541000468499] +18:57:31 [ 3] [ 6] [010000] +18:57:31 [ 4] [ 12] [000100000000] +18:57:31 [ 7] [ 10] [0320185521] +18:57:31 [ 11] [ 6] [955371] +18:57:31 [ 12] [ 6] [185521] +18:57:31 [ 13] [ 4] [0320] +18:57:31 [ 15] [ 4] [0320] +18:57:31 [ 18] [ 4] [6011] +18:57:31 [ 19] [ 3] [418] +18:57:31 [ 22] [ 3] [021] +18:57:31 [ 25] [ 2] [01] +18:57:31 [ 28] [ 9] [D00002000] +18:57:31 [ 32] [ 6] [668899] +18:57:31 [ 35] [ 32] [6213541000468499=491212016849725] +18:57:31 [ 37] [ 12] [507900146920] +18:57:31 [ 41] [ 8] [03020005] +18:57:31 [ 42] [ 15] [APT ] +18:57:31 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:57:31 [ 49] [ 3] [418] +18:57:31 [ 52] [ 16] [FCE1AC1CF5833070] +18:57:31 ============================================================================ +18:57:31 + + +waiting on router queue for slot.... +18:57:31 Sending to : +18:57:31 ============================================================================ +18:57:31 Sending to : +18:57:31 ============================================================================ +18:57:32 ============================================================================ +18:57:32 Slot Id : <335> +18:57:32 Transaction Type : REQUEST +18:57:32 Received From : +18:57:32 ============================================================================ +18:57:32 FNo. Len. Field Value +18:57:32 ============================================================================ +18:57:32 [ 1] [ 4] [0200] +18:57:32 [ 2] [ 16] [6213541000468499] +18:57:32 [ 3] [ 6] [010000] +18:57:32 [ 4] [ 12] [000100000000] +18:57:32 [ 7] [ 10] [0320185521] +18:57:32 [ 11] [ 6] [955371] +18:57:32 [ 12] [ 6] [185521] +18:57:32 [ 13] [ 4] [0320] +18:57:32 [ 15] [ 4] [0320] +18:57:32 [ 18] [ 4] [6011] +18:57:32 [ 19] [ 3] [418] +18:57:32 [ 22] [ 3] [021] +18:57:32 [ 25] [ 2] [01] +18:57:32 [ 28] [ 9] [D00002000] +18:57:32 [ 32] [ 6] [668899] +18:57:32 [ 35] [ 32] [6213541000468499=491212016849725] +18:57:32 [ 37] [ 12] [507900146920] +18:57:32 [ 41] [ 8] [03020005] +18:57:32 [ 42] [ 15] [APT ] +18:57:32 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:57:32 [ 49] [ 3] [418] +18:57:32 [ 52] [ 16] [FCE1AC1CF5833070] +18:57:32 ============================================================================ +18:57:32 + + +waiting on router queue for slot.... +18:57:32 Sending to : +18:57:32 ============================================================================ +18:57:32 ============================================================================ +18:57:32 Slot Id : <335> +18:57:32 Transaction Type : REQUEST +18:57:32 Received From : +18:57:32 ============================================================================ +18:57:32 FNo. Len. Field Value +18:57:32 ============================================================================ +18:57:32 [ 1] [ 4] [0200] +18:57:32 [ 2] [ 16] [6213541000468499] +18:57:32 [ 3] [ 6] [010000] +18:57:32 [ 4] [ 12] [000100000000] +18:57:32 [ 7] [ 10] [0320185521] +18:57:32 [ 11] [ 6] [955371] +18:57:32 [ 12] [ 6] [185521] +18:57:32 [ 13] [ 4] [0320] +18:57:32 [ 15] [ 4] [0320] +18:57:32 [ 18] [ 4] [6011] +18:57:32 [ 19] [ 3] [418] +18:57:32 [ 22] [ 3] [021] +18:57:32 [ 25] [ 2] [01] +18:57:32 [ 28] [ 9] [D00002000] +18:57:32 [ 32] [ 6] [668899] +18:57:32 [ 35] [ 32] [6213541000468499=491212016849725] +18:57:32 [ 37] [ 12] [507900146920] +18:57:32 [ 41] [ 8] [03020005] +18:57:32 [ 42] [ 15] [APT ] +18:57:32 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +18:57:32 [ 49] [ 3] [418] +18:57:32 [ 52] [ 16] [BD20756CB9CBA482] +18:57:32 ============================================================================ +18:57:32 + + +waiting on router queue for slot.... +18:57:32 Sending to : <0> +18:57:32 ============================================================================ +18:57:32 ============================================================================ +18:57:32 Slot Id : <335> +18:57:32 Transaction Type : RESPONSE +18:57:32 Received From : +18:57:32 ============================================================================ +18:57:32 FNo. Len. Field Value +18:57:32 ============================================================================ +18:57:32 [ 1] [ 4] [0210] +18:57:32 [ 2] [ 16] [6213541000468499] +18:57:32 [ 3] [ 6] [010000] +18:57:32 [ 4] [ 12] [000100000000] +18:57:32 [ 7] [ 10] [0320185521] +18:57:32 [ 11] [ 6] [955371] +18:57:32 [ 12] [ 6] [185521] +18:57:32 [ 13] [ 4] [0320] +18:57:32 [ 15] [ 4] [0320] +18:57:32 [ 18] [ 4] [6011] +18:57:32 [ 19] [ 3] [418] +18:57:32 [ 32] [ 6] [668899] +18:57:32 [ 35] [ 32] [6213541000468499=491212016849725] +18:57:32 [ 37] [ 12] [507900146920] +18:57:32 [ 38] [ 6] [955371] +18:57:32 [ 39] [ 2] [51] +18:57:32 [ 41] [ 8] [03020005] +18:57:32 [ 49] [ 3] [418] +18:57:32 [ 54] [ 40] [0001418C0000142664250002418C000014266425] +18:57:32 ============================================================================ +18:57:32 Sending to : +18:57:32 ============================================================================ +18:57:32 + + +waiting on router queue for slot.... +18:57:33 ============================================================================ +18:57:33 Slot Id : <335> +18:57:33 Transaction Type : RESPONSE +18:57:33 Received From : +18:57:33 ============================================================================ +18:57:33 FNo. Len. Field Value +18:57:33 ============================================================================ +18:57:33 [ 1] [ 4] [0210] +18:57:33 [ 2] [ 16] [6213541000468499] +18:57:33 [ 3] [ 6] [010000] +18:57:33 [ 4] [ 12] [000100000000] +18:57:33 [ 7] [ 10] [0320185521] +18:57:33 [ 11] [ 6] [955371] +18:57:33 [ 12] [ 6] [185521] +18:57:33 [ 13] [ 4] [0320] +18:57:33 [ 15] [ 4] [0320] +18:57:33 [ 18] [ 4] [6011] +18:57:33 [ 19] [ 3] [418] +18:57:33 [ 32] [ 6] [668899] +18:57:33 [ 35] [ 32] [6213541000468499=491212016849725] +18:57:33 [ 37] [ 12] [507900146920] +18:57:33 [ 38] [ 6] [955371] +18:57:33 [ 39] [ 2] [51] +18:57:33 [ 41] [ 8] [03020005] +18:57:33 [ 49] [ 3] [418] +18:57:33 [ 54] [ 40] [0001418C0000142664250002418C000014266425] +18:57:33 ============================================================================ +18:57:33 Calculate Source COMM Id = 4 +18:57:33 ============================================================================ +18:57:33 + + +waiting on router queue for slot.... +18:57:36 ============================================================================ +18:57:36 Slot Id : <333> +18:57:36 Transaction Type : REQUEST +18:57:36 Received From : +18:57:36 ============================================================================ +18:57:36 FNo. Len. Field Value +18:57:36 ============================================================================ +18:57:36 [ 1] [ 4] [0800] +18:57:36 [ 7] [ 10] [0320115643] +18:57:36 [ 11] [ 6] [157825] +18:57:36 [ 70] [ 3] [301] +18:57:36 ============================================================================ +18:57:36 + + +waiting on router queue for slot.... +18:57:36 Sending to : +18:57:36 ============================================================================ +18:57:36 ============================================================================ +18:57:36 Slot Id : <333> +18:57:36 Transaction Type : RESPONSE +18:57:36 Received From : +18:57:36 ============================================================================ +18:57:36 FNo. Len. Field Value +18:57:36 ============================================================================ +18:57:36 [ 1] [ 4] [0810] +18:57:36 [ 7] [ 10] [0320115643] +18:57:36 [ 11] [ 6] [157825] +18:57:36 [ 39] [ 2] [00] +18:57:36 [ 70] [ 3] [301] +18:57:36 ============================================================================ +18:57:36 Calculate Source COMM Id = 2 +18:57:36 ============================================================================ +18:57:36 + + +waiting on router queue for slot.... +18:57:37 ============================================================================ +18:57:37 Slot Id : <334> +18:57:37 Transaction Type : REQUEST +18:57:37 Received From : +18:57:37 ============================================================================ +18:57:37 FNo. Len. Field Value +18:57:37 ============================================================================ +18:57:37 [ 1] [ 4] [0200] +18:57:37 [ 2] [ 16] [6213541000712201] +18:57:37 [ 3] [ 6] [010000] +18:57:37 [ 4] [ 12] [000050000000] +18:57:37 [ 7] [ 10] [0320185527] +18:57:37 [ 11] [ 6] [955374] +18:57:37 [ 12] [ 6] [185527] +18:57:37 [ 13] [ 4] [0320] +18:57:37 [ 15] [ 4] [0320] +18:57:37 [ 18] [ 4] [6011] +18:57:37 [ 19] [ 3] [418] +18:57:37 [ 22] [ 3] [021] +18:57:37 [ 25] [ 2] [01] +18:57:37 [ 28] [ 9] [D00002000] +18:57:37 [ 32] [ 6] [668899] +18:57:37 [ 35] [ 32] [6213541000712201=491212011220434] +18:57:37 [ 37] [ 12] [507902407379] +18:57:37 [ 41] [ 8] [03001010] +18:57:37 [ 42] [ 15] [APT ] +18:57:37 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +18:57:37 [ 49] [ 3] [418] +18:57:37 [ 52] [ 16] [D2AA4C2E9471D446] +18:57:37 ============================================================================ +18:57:37 + + +waiting on router queue for slot.... +18:57:37 Sending to : +18:57:37 ============================================================================ +18:57:37 Sending to : +18:57:37 ============================================================================ +18:57:38 ============================================================================ +18:57:38 Slot Id : <334> +18:57:38 Transaction Type : REQUEST +18:57:38 Received From : +18:57:38 ============================================================================ +18:57:38 FNo. Len. Field Value +18:57:38 ============================================================================ +18:57:38 [ 1] [ 4] [0200] +18:57:38 [ 2] [ 16] [6213541000712201] +18:57:38 [ 3] [ 6] [010000] +18:57:38 [ 4] [ 12] [000050000000] +18:57:38 [ 7] [ 10] [0320185527] +18:57:38 [ 11] [ 6] [955374] +18:57:38 [ 12] [ 6] [185527] +18:57:38 [ 13] [ 4] [0320] +18:57:38 [ 15] [ 4] [0320] +18:57:38 [ 18] [ 4] [6011] +18:57:38 [ 19] [ 3] [418] +18:57:38 [ 22] [ 3] [021] +18:57:38 [ 25] [ 2] [01] +18:57:38 [ 28] [ 9] [D00002000] +18:57:38 [ 32] [ 6] [668899] +18:57:38 [ 35] [ 32] [6213541000712201=491212011220434] +18:57:38 [ 37] [ 12] [507902407379] +18:57:38 [ 41] [ 8] [03001010] +18:57:38 [ 42] [ 15] [APT ] +18:57:38 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +18:57:38 [ 49] [ 3] [418] +18:57:38 [ 52] [ 16] [D2AA4C2E9471D446] +18:57:38 ============================================================================ +18:57:38 + + +waiting on router queue for slot.... +18:57:38 Sending to : +18:57:38 ============================================================================ +18:57:38 ============================================================================ +18:57:38 Slot Id : <334> +18:57:38 Transaction Type : REQUEST +18:57:38 Received From : +18:57:38 ============================================================================ +18:57:38 FNo. Len. Field Value +18:57:38 ============================================================================ +18:57:38 [ 1] [ 4] [0200] +18:57:38 [ 2] [ 16] [6213541000712201] +18:57:38 [ 3] [ 6] [010000] +18:57:38 [ 4] [ 12] [000050000000] +18:57:38 [ 7] [ 10] [0320185527] +18:57:38 [ 11] [ 6] [955374] +18:57:38 [ 12] [ 6] [185527] +18:57:38 [ 13] [ 4] [0320] +18:57:38 [ 15] [ 4] [0320] +18:57:38 [ 18] [ 4] [6011] +18:57:38 [ 19] [ 3] [418] +18:57:38 [ 22] [ 3] [021] +18:57:38 [ 25] [ 2] [01] +18:57:38 [ 28] [ 9] [D00002000] +18:57:38 [ 32] [ 6] [668899] +18:57:38 [ 35] [ 32] [6213541000712201=491212011220434] +18:57:38 [ 37] [ 12] [507902407379] +18:57:38 [ 41] [ 8] [03001010] +18:57:38 [ 42] [ 15] [APT ] +18:57:38 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +18:57:38 [ 49] [ 3] [418] +18:57:38 [ 52] [ 16] [BCE5C859692D3994] +18:57:38 ============================================================================ +18:57:38 + + +waiting on router queue for slot.... +18:57:38 Sending to : <0> +18:57:38 ============================================================================ +18:57:38 ============================================================================ +18:57:38 Slot Id : <334> +18:57:38 Transaction Type : RESPONSE +18:57:38 Received From : +18:57:38 ============================================================================ +18:57:38 FNo. Len. Field Value +18:57:38 ============================================================================ +18:57:38 [ 1] [ 4] [0210] +18:57:38 [ 2] [ 16] [6213541000712201] +18:57:38 [ 3] [ 6] [010000] +18:57:38 [ 4] [ 12] [000050000000] +18:57:38 [ 7] [ 10] [0320185527] +18:57:38 [ 11] [ 6] [955374] +18:57:38 [ 12] [ 6] [185527] +18:57:38 [ 13] [ 4] [0320] +18:57:38 [ 15] [ 4] [0320] +18:57:38 [ 18] [ 4] [6011] +18:57:38 [ 19] [ 3] [418] +18:57:38 [ 32] [ 6] [668899] +18:57:38 [ 35] [ 32] [6213541000712201=491212011220434] +18:57:38 [ 37] [ 12] [507902407379] +18:57:38 [ 38] [ 6] [090285] +18:57:38 [ 39] [ 2] [00] +18:57:38 [ 41] [ 8] [03001010] +18:57:38 [ 49] [ 3] [418] +18:57:38 [ 54] [ 40] [0001418C0006598766800002418C000659876680] +18:57:38 ============================================================================ +18:57:38 Sending to : +18:57:38 ============================================================================ +18:57:38 + + +waiting on router queue for slot.... +18:57:40 ============================================================================ +18:57:40 Slot Id : <334> +18:57:40 Transaction Type : RESPONSE +18:57:40 Received From : +18:57:40 ============================================================================ +18:57:40 FNo. Len. Field Value +18:57:40 ============================================================================ +18:57:40 [ 1] [ 4] [0210] +18:57:40 [ 2] [ 16] [6213541000712201] +18:57:40 [ 3] [ 6] [010000] +18:57:40 [ 4] [ 12] [000050000000] +18:57:40 [ 7] [ 10] [0320185527] +18:57:40 [ 11] [ 6] [955374] +18:57:40 [ 12] [ 6] [185527] +18:57:40 [ 13] [ 4] [0320] +18:57:40 [ 15] [ 4] [0320] +18:57:40 [ 18] [ 4] [6011] +18:57:40 [ 19] [ 3] [418] +18:57:40 [ 32] [ 6] [668899] +18:57:40 [ 35] [ 32] [6213541000712201=491212011220434] +18:57:40 [ 37] [ 12] [507902407379] +18:57:40 [ 38] [ 6] [090285] +18:57:40 [ 39] [ 2] [00] +18:57:40 [ 41] [ 8] [03001010] +18:57:40 [ 49] [ 3] [418] +18:57:40 [ 54] [ 40] [0001418C0006598766800002418C000659876680] +18:57:40 ============================================================================ +18:57:40 Calculate Source COMM Id = 4 +18:57:40 ============================================================================ +18:57:40 + + +waiting on router queue for slot.... +18:57:41 ============================================================================ +18:57:41 Slot Id : <262> +18:57:41 Transaction Type : REQUEST +18:57:41 Received From : +18:57:41 ============================================================================ +18:57:41 FNo. Len. Field Value +18:57:41 ============================================================================ +18:57:41 [ 1] [ 4] [0800] +18:57:41 [ 7] [ 10] [0320185727] +18:57:41 [ 11] [ 6] [085162] +18:57:41 [ 37] [ 12] [507918085162] +18:57:41 [ 70] [ 3] [ ] +18:57:41 ============================================================================ +18:57:41 + + +waiting on router queue for slot.... +18:57:41 Sending to : +18:57:41 ============================================================================ +18:57:41 ============================================================================ +18:57:41 Slot Id : <262> +18:57:41 Transaction Type : RESPONSE +18:57:41 Received From : +18:57:41 ============================================================================ +18:57:41 FNo. Len. Field Value +18:57:41 ============================================================================ +18:57:41 [ 1] [ 4] [0810] +18:57:41 [ 7] [ 10] [0320185727] +18:57:41 [ 11] [ 6] [085162] +18:57:41 [ 37] [ 12] [507918085162] +18:57:41 [ 39] [ 2] [91] +18:57:41 [ 70] [ 3] [ ] +18:57:41 ============================================================================ +18:57:41 Calculate Source COMM Id = 3 +18:57:41 ============================================================================ +18:57:41 + + +waiting on router queue for slot.... +18:57:52 ============================================================================ +18:57:52 Slot Id : <336> +18:57:52 Transaction Type : REQUEST +18:57:52 Received From : +18:57:52 ============================================================================ +18:57:52 FNo. Len. Field Value +18:57:52 ============================================================================ +18:57:52 [ 1] [ 4] [0800] +18:57:52 [ 7] [ 10] [0320115659] +18:57:52 [ 11] [ 6] [157826] +18:57:52 [ 70] [ 3] [301] +18:57:52 ============================================================================ +18:57:52 + + +waiting on router queue for slot.... +18:57:52 Sending to : +18:57:52 ============================================================================ +18:57:52 ============================================================================ +18:57:52 Slot Id : <336> +18:57:52 Transaction Type : RESPONSE +18:57:52 Received From : +18:57:52 ============================================================================ +18:57:52 FNo. Len. Field Value +18:57:52 ============================================================================ +18:57:52 [ 1] [ 4] [0810] +18:57:52 [ 7] [ 10] [0320115659] +18:57:52 [ 11] [ 6] [157826] +18:57:52 [ 39] [ 2] [00] +18:57:52 [ 70] [ 3] [301] +18:57:52 ============================================================================ +18:57:52 Calculate Source COMM Id = 2 +18:57:52 ============================================================================ +18:57:52 + + +waiting on router queue for slot.... +18:58:02 ============================================================================ +18:58:02 Slot Id : <321> +18:58:02 Transaction Type : REQUEST +18:58:02 Received From : +18:58:02 ============================================================================ +18:58:02 FNo. Len. Field Value +18:58:02 ============================================================================ +18:58:02 [ 1] [ 4] [0200] +18:58:02 [ 2] [ 16] [6213541000652084] +18:58:02 [ 3] [ 6] [010000] +18:58:02 [ 4] [ 12] [000100000000] +18:58:02 [ 7] [ 10] [0320115708] +18:58:02 [ 11] [ 6] [271348] +18:58:02 [ 12] [ 6] [185708] +18:58:02 [ 13] [ 4] [0320] +18:58:02 [ 14] [ 4] [4912] +18:58:02 [ 15] [ 4] [0320] +18:58:02 [ 18] [ 4] [6011] +18:58:02 [ 19] [ 3] [418] +18:58:02 [ 22] [ 3] [021] +18:58:02 [ 25] [ 2] [01] +18:58:02 [ 28] [ 9] [D00002000] +18:58:02 [ 32] [ 6] [180893] +18:58:02 [ 35] [ 32] [6213541000652084=491212015208339] +18:58:02 [ 37] [ 12] [507911271348] +18:58:02 [ 41] [ 8] [0141HQBR] +18:58:02 [ 42] [ 15] [999999 ] +18:58:02 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:58:02 [ 49] [ 3] [418] +18:58:02 [ 52] [ 16] [C0C13415BF97F98A] +18:58:02 ============================================================================ +18:58:02 + + +waiting on router queue for slot.... +18:58:02 Sending to : +18:58:02 ============================================================================ +18:58:02 Sending to : +18:58:02 ============================================================================ +18:58:02 ============================================================================ +18:58:02 Slot Id : <321> +18:58:02 Transaction Type : REQUEST +18:58:02 Received From : +18:58:02 ============================================================================ +18:58:02 FNo. Len. Field Value +18:58:02 ============================================================================ +18:58:02 [ 1] [ 4] [0200] +18:58:02 [ 2] [ 16] [6213541000652084] +18:58:02 [ 3] [ 6] [010000] +18:58:02 [ 4] [ 12] [000100000000] +18:58:02 [ 7] [ 10] [0320115708] +18:58:02 [ 11] [ 6] [271348] +18:58:02 [ 12] [ 6] [185708] +18:58:02 [ 13] [ 4] [0320] +18:58:02 [ 14] [ 4] [4912] +18:58:02 [ 15] [ 4] [0320] +18:58:02 [ 18] [ 4] [6011] +18:58:02 [ 19] [ 3] [418] +18:58:02 [ 22] [ 3] [021] +18:58:02 [ 25] [ 2] [01] +18:58:02 [ 28] [ 9] [D00002000] +18:58:02 [ 32] [ 6] [180893] +18:58:02 [ 35] [ 32] [6213541000652084=491212015208339] +18:58:02 [ 37] [ 12] [507911271348] +18:58:02 [ 41] [ 8] [0141HQBR] +18:58:02 [ 42] [ 15] [999999 ] +18:58:02 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:58:02 [ 49] [ 3] [418] +18:58:02 [ 52] [ 16] [C0C13415BF97F98A] +18:58:02 ============================================================================ +18:58:02 + + +waiting on router queue for slot.... +18:58:02 Sending to : +18:58:02 ============================================================================ +18:58:02 ============================================================================ +18:58:02 Slot Id : <320> +18:58:02 Transaction Type : REQUEST +18:58:02 Received From : +18:58:02 ============================================================================ +18:58:02 FNo. Len. Field Value +18:58:02 ============================================================================ +18:58:02 [ 1] [ 4] [0800] +18:58:02 [ 7] [ 10] [0320115709] +18:58:02 [ 11] [ 6] [157827] +18:58:02 [ 70] [ 3] [301] +18:58:02 ============================================================================ +18:58:02 + + +waiting on router queue for slot.... +18:58:02 Sending to : +18:58:02 ============================================================================ +18:58:02 ============================================================================ +18:58:02 Slot Id : <320> +18:58:02 Transaction Type : RESPONSE +18:58:02 Received From : +18:58:02 ============================================================================ +18:58:02 FNo. Len. Field Value +18:58:02 ============================================================================ +18:58:02 [ 1] [ 4] [0810] +18:58:02 [ 7] [ 10] [0320115709] +18:58:02 [ 11] [ 6] [157827] +18:58:02 [ 39] [ 2] [00] +18:58:02 [ 70] [ 3] [301] +18:58:02 ============================================================================ +18:58:02 Calculate Source COMM Id = 2 +18:58:02 ============================================================================ +18:58:02 + + +waiting on router queue for slot.... +18:58:02 ============================================================================ +18:58:02 Slot Id : <321> +18:58:02 Transaction Type : REQUEST +18:58:02 Received From : +18:58:02 ============================================================================ +18:58:02 FNo. Len. Field Value +18:58:02 ============================================================================ +18:58:02 [ 1] [ 4] [0200] +18:58:02 [ 2] [ 16] [6213541000652084] +18:58:02 [ 3] [ 6] [010000] +18:58:02 [ 4] [ 12] [000100000000] +18:58:02 [ 7] [ 10] [0320115708] +18:58:02 [ 11] [ 6] [271348] +18:58:02 [ 12] [ 6] [185708] +18:58:02 [ 13] [ 4] [0320] +18:58:02 [ 14] [ 4] [4912] +18:58:02 [ 15] [ 4] [0320] +18:58:02 [ 18] [ 4] [6011] +18:58:02 [ 19] [ 3] [418] +18:58:02 [ 22] [ 3] [021] +18:58:02 [ 25] [ 2] [01] +18:58:02 [ 28] [ 9] [D00002000] +18:58:02 [ 32] [ 6] [180893] +18:58:02 [ 35] [ 32] [6213541000652084=491212015208339] +18:58:02 [ 37] [ 12] [507911271348] +18:58:02 [ 41] [ 8] [0141HQBR] +18:58:02 [ 42] [ 15] [999999 ] +18:58:02 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +18:58:02 [ 49] [ 3] [418] +18:58:02 [ 52] [ 16] [A76498DAAC3CEE0D] +18:58:02 ============================================================================ +18:58:02 + + +waiting on router queue for slot.... +18:58:02 Sending to : <0> +18:58:02 ============================================================================ +18:58:03 ============================================================================ +18:58:03 Slot Id : <321> +18:58:03 Transaction Type : RESPONSE +18:58:03 Received From : +18:58:03 ============================================================================ +18:58:03 FNo. Len. Field Value +18:58:03 ============================================================================ +18:58:03 [ 1] [ 4] [0210] +18:58:03 [ 2] [ 16] [6213541000652084] +18:58:03 [ 3] [ 6] [010000] +18:58:03 [ 4] [ 12] [000100000000] +18:58:03 [ 7] [ 10] [0320115708] +18:58:03 [ 11] [ 6] [271348] +18:58:03 [ 12] [ 6] [185708] +18:58:03 [ 13] [ 4] [0320] +18:58:03 [ 15] [ 4] [0320] +18:58:03 [ 18] [ 4] [6011] +18:58:03 [ 19] [ 3] [418] +18:58:03 [ 32] [ 6] [180893] +18:58:03 [ 35] [ 32] [6213541000652084=491212015208339] +18:58:03 [ 37] [ 12] [507911271348] +18:58:03 [ 38] [ 6] [271348] +18:58:03 [ 39] [ 2] [51] +18:58:03 [ 41] [ 8] [0141HQBR] +18:58:03 [ 49] [ 3] [418] +18:58:03 [ 54] [ 40] [0001418C0000878993800002418C000087899380] +18:58:03 ============================================================================ +18:58:03 Sending to : +18:58:03 ============================================================================ +18:58:03 + + +waiting on router queue for slot.... +18:58:04 ============================================================================ +18:58:04 Slot Id : <321> +18:58:04 Transaction Type : RESPONSE +18:58:04 Received From : +18:58:04 ============================================================================ +18:58:04 FNo. Len. Field Value +18:58:04 ============================================================================ +18:58:04 [ 1] [ 4] [0210] +18:58:04 [ 2] [ 16] [6213541000652084] +18:58:04 [ 3] [ 6] [010000] +18:58:04 [ 4] [ 12] [000100000000] +18:58:04 [ 7] [ 10] [0320115708] +18:58:04 [ 11] [ 6] [271348] +18:58:04 [ 12] [ 6] [185708] +18:58:04 [ 13] [ 4] [0320] +18:58:04 [ 15] [ 4] [0320] +18:58:04 [ 18] [ 4] [6011] +18:58:04 [ 19] [ 3] [418] +18:58:04 [ 32] [ 6] [180893] +18:58:04 [ 35] [ 32] [6213541000652084=491212015208339] +18:58:04 [ 37] [ 12] [507911271348] +18:58:04 [ 38] [ 6] [271348] +18:58:04 [ 39] [ 2] [51] +18:58:04 [ 41] [ 8] [0141HQBR] +18:58:04 [ 49] [ 3] [418] +18:58:04 [ 54] [ 40] [0001418C0000878993800002418C000087899380] +18:58:04 ============================================================================ +18:58:04 Calculate Source COMM Id = 2 +18:58:04 ============================================================================ +18:58:04 + + +waiting on router queue for slot.... +18:58:12 ============================================================================ +18:58:12 Slot Id : <323> +18:58:12 Transaction Type : REQUEST +18:58:12 Received From : +18:58:12 ============================================================================ +18:58:12 FNo. Len. Field Value +18:58:12 ============================================================================ +18:58:12 [ 1] [ 4] [0200] +18:58:12 [ 2] [ 16] [2206990000130104] +18:58:12 [ 3] [ 6] [011000] +18:58:12 [ 4] [ 12] [000100000000] +18:58:12 [ 7] [ 10] [0320185807] +18:58:12 [ 11] [ 6] [832493] +18:58:12 [ 12] [ 6] [185807] +18:58:12 [ 13] [ 4] [0320] +18:58:12 [ 15] [ 4] [0320] +18:58:12 [ 18] [ 4] [6011] +18:58:12 [ 22] [ 3] [900] +18:58:12 [ 25] [ 2] [02] +18:58:12 [ 28] [ 9] [D00002000] +18:58:12 [ 32] [ 6] [621354] +18:58:12 [ 35] [ 32] [2206990000130104=980412610576238] +18:58:12 [ 37] [ 12] [507905057928] +18:58:12 [ 41] [ 8] [03004300] +18:58:12 [ 42] [ 15] [NATIVE ] +18:58:12 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +18:58:12 [ 49] [ 3] [418] +18:58:12 [ 52] [ 16] [AFDB420BFCB418CB] +18:58:12 ============================================================================ +18:58:12 + + +waiting on router queue for slot.... +18:58:12 Sending to : +18:58:12 ============================================================================ +18:58:12 Sending to : +18:58:12 ============================================================================ +18:58:12 ============================================================================ +18:58:12 Slot Id : <323> +18:58:12 Transaction Type : REQUEST +18:58:12 Received From : +18:58:12 ============================================================================ +18:58:12 FNo. Len. Field Value +18:58:12 ============================================================================ +18:58:12 [ 1] [ 4] [0200] +18:58:12 [ 2] [ 16] [2206990000130104] +18:58:12 [ 3] [ 6] [011000] +18:58:12 [ 4] [ 12] [000100000000] +18:58:12 [ 7] [ 10] [0320185807] +18:58:12 [ 11] [ 6] [832493] +18:58:12 [ 12] [ 6] [185807] +18:58:12 [ 13] [ 4] [0320] +18:58:12 [ 15] [ 4] [0320] +18:58:12 [ 18] [ 4] [6011] +18:58:12 [ 22] [ 3] [900] +18:58:12 [ 25] [ 2] [02] +18:58:12 [ 28] [ 9] [D00002000] +18:58:12 [ 32] [ 6] [621354] +18:58:12 [ 35] [ 32] [2206990000130104=980412610576238] +18:58:12 [ 37] [ 12] [507905057928] +18:58:12 [ 41] [ 8] [03004300] +18:58:12 [ 42] [ 15] [NATIVE ] +18:58:12 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +18:58:12 [ 49] [ 3] [418] +18:58:12 [ 52] [ 16] [AFDB420BFCB418CB] +18:58:12 ============================================================================ +18:58:12 + + +waiting on router queue for slot.... +18:58:12 Sending to : +18:58:12 ============================================================================ +18:58:12 ============================================================================ +18:58:12 Slot Id : <323> +18:58:12 Transaction Type : REQUEST +18:58:12 Received From : +18:58:12 ============================================================================ +18:58:12 FNo. Len. Field Value +18:58:12 ============================================================================ +18:58:12 [ 1] [ 4] [0200] +18:58:12 [ 2] [ 16] [2206990000130104] +18:58:12 [ 3] [ 6] [011000] +18:58:12 [ 4] [ 12] [000100000000] +18:58:12 [ 7] [ 10] [0320185807] +18:58:12 [ 11] [ 6] [832493] +18:58:12 [ 12] [ 6] [185807] +18:58:12 [ 13] [ 4] [0320] +18:58:12 [ 15] [ 4] [0320] +18:58:12 [ 18] [ 4] [6011] +18:58:12 [ 22] [ 3] [900] +18:58:12 [ 25] [ 2] [02] +18:58:12 [ 28] [ 9] [D00002000] +18:58:12 [ 32] [ 6] [621354] +18:58:12 [ 35] [ 32] [2206990000130104=980412610576238] +18:58:12 [ 37] [ 12] [507905057928] +18:58:12 [ 41] [ 8] [03004300] +18:58:12 [ 42] [ 15] [NATIVE ] +18:58:12 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +18:58:12 [ 49] [ 3] [418] +18:58:12 [ 52] [ 16] [912452CD5D70E961] +18:58:12 ============================================================================ +18:58:12 + + +waiting on router queue for slot.... +18:58:12 Sending to : <1> +18:58:12 ============================================================================ +18:58:13 ============================================================================ +18:58:13 Slot Id : <323> +18:58:13 Transaction Type : RESPONSE +18:58:13 Received From : +18:58:13 ============================================================================ +18:58:13 FNo. Len. Field Value +18:58:13 ============================================================================ +18:58:13 [ 1] [ 4] [0210] +18:58:13 [ 2] [ 16] [2206990000130104] +18:58:13 [ 3] [ 6] [011000] +18:58:13 [ 4] [ 12] [000100000000] +18:58:13 [ 7] [ 10] [0320185807] +18:58:13 [ 11] [ 6] [832493] +18:58:13 [ 12] [ 6] [185807] +18:58:13 [ 13] [ 4] [0320] +18:58:13 [ 15] [ 4] [0320] +18:58:13 [ 18] [ 4] [6011] +18:58:13 [ 22] [ 3] [900] +18:58:13 [ 32] [ 6] [621354] +18:58:13 [ 35] [ 32] [2206990000130104=980412610576238] +18:58:13 [ 37] [ 12] [507905057928] +18:58:13 [ 39] [ 2] [62] +18:58:13 [ 41] [ 8] [03004300] +18:58:13 [ 49] [ 3] [418] +18:58:13 ============================================================================ +18:58:13 Sending to : +18:58:13 ============================================================================ +18:58:13 + + +waiting on router queue for slot.... +18:58:14 ============================================================================ +18:58:14 Slot Id : <323> +18:58:14 Transaction Type : RESPONSE +18:58:14 Received From : +18:58:14 ============================================================================ +18:58:14 FNo. Len. Field Value +18:58:14 ============================================================================ +18:58:14 [ 1] [ 4] [0210] +18:58:14 [ 2] [ 16] [2206990000130104] +18:58:14 [ 3] [ 6] [011000] +18:58:14 [ 4] [ 12] [000100000000] +18:58:14 [ 7] [ 10] [0320185807] +18:58:14 [ 11] [ 6] [832493] +18:58:14 [ 12] [ 6] [185807] +18:58:14 [ 13] [ 4] [0320] +18:58:14 [ 15] [ 4] [0320] +18:58:14 [ 18] [ 4] [6011] +18:58:14 [ 22] [ 3] [900] +18:58:14 [ 32] [ 6] [621354] +18:58:14 [ 35] [ 32] [2206990000130104=980412610576238] +18:58:14 [ 37] [ 12] [507905057928] +18:58:14 [ 39] [ 2] [62] +18:58:14 [ 41] [ 8] [03004300] +18:58:14 [ 49] [ 3] [418] +18:58:14 ============================================================================ +18:58:14 Calculate Source COMM Id = 0 +18:58:14 ============================================================================ +18:58:14 + + +waiting on router queue for slot.... +18:58:19 ============================================================================ +18:58:19 Slot Id : <341> +18:58:19 Transaction Type : REQUEST +18:58:19 Received From : +18:58:19 ============================================================================ +18:58:19 FNo. Len. Field Value +18:58:19 ============================================================================ +18:58:19 [ 1] [ 4] [0800] +18:58:19 [ 7] [ 10] [0320115726] +18:58:19 [ 11] [ 6] [157828] +18:58:19 [ 70] [ 3] [301] +18:58:19 ============================================================================ +18:58:19 + + +waiting on router queue for slot.... +18:58:19 Sending to : +18:58:19 ============================================================================ +18:58:19 ============================================================================ +18:58:19 Slot Id : <341> +18:58:19 Transaction Type : RESPONSE +18:58:19 Received From : +18:58:19 ============================================================================ +18:58:19 FNo. Len. Field Value +18:58:19 ============================================================================ +18:58:19 [ 1] [ 4] [0810] +18:58:19 [ 7] [ 10] [0320115726] +18:58:19 [ 11] [ 6] [157828] +18:58:19 [ 39] [ 2] [00] +18:58:19 [ 70] [ 3] [301] +18:58:19 ============================================================================ +18:58:19 Calculate Source COMM Id = 2 +18:58:19 ============================================================================ +18:58:19 + + +waiting on router queue for slot.... +18:58:21 ============================================================================ +18:58:21 Slot Id : <268> +18:58:21 Transaction Type : REQUEST +18:58:21 Received From : +18:58:21 ============================================================================ +18:58:21 FNo. Len. Field Value +18:58:21 ============================================================================ +18:58:21 [ 1] [ 4] [0200] +18:58:21 [ 2] [ 16] [6688990600863607] +18:58:21 [ 3] [ 6] [301000] +18:58:21 [ 7] [ 10] [0320115728] +18:58:21 [ 11] [ 6] [271349] +18:58:21 [ 12] [ 6] [185728] +18:58:21 [ 13] [ 4] [0320] +18:58:21 [ 14] [ 4] [4102] +18:58:21 [ 15] [ 4] [0320] +18:58:21 [ 18] [ 4] [6011] +18:58:21 [ 19] [ 3] [418] +18:58:21 [ 22] [ 3] [021] +18:58:21 [ 25] [ 2] [01] +18:58:21 [ 32] [ 6] [180893] +18:58:21 [ 35] [ 37] [6688990600863607=41020061360796700000] +18:58:21 [ 37] [ 12] [507911271349] +18:58:21 [ 41] [ 8] [0526XYHS] +18:58:21 [ 42] [ 15] [999999 ] +18:58:21 [ 43] [ 40] [ATM HONGSA LOCATION, Hongsa, Lao People ] +18:58:21 [ 49] [ 3] [418] +18:58:21 [ 52] [ 16] [3567178BA573343E] +18:58:21 ============================================================================ +18:58:21 + + +waiting on router queue for slot.... +18:58:21 Sending to : +18:58:21 ============================================================================ +18:58:21 Sending to : +18:58:21 ============================================================================ +18:58:21 ============================================================================ +18:58:21 Slot Id : <342> +18:58:21 Transaction Type : REQUEST +18:58:21 Received From : +18:58:21 ============================================================================ +18:58:21 FNo. Len. Field Value +18:58:21 ============================================================================ +18:58:21 [ 1] [ 4] [0800] +18:58:21 [ 2] [ 5] [02531] +18:58:21 [ 3] [ 6] [579188] +18:58:21 [ 7] [ 10] [0320115821] +18:58:21 [ 11] [ 6] [807513] +18:58:21 [ 15] [ 10] [0320115821] +18:58:21 [ 37] [ 11] [57918807513] +18:58:21 [ 70] [ 3] [001] +18:58:21 ============================================================================ +18:58:21 + + +waiting on router queue for slot.... +18:58:21 ============================================================================ +18:58:21 Slot Id : <342> +18:58:21 Transaction Type : RESPONSE +18:58:21 Received From : +18:58:21 ============================================================================ +18:58:21 FNo. Len. Field Value +18:58:21 ============================================================================ +18:58:21 [ 1] [ 4] [0810] +18:58:21 [ 7] [ 10] [0320115821] +18:58:21 [ 11] [ 6] [807513] +18:58:21 [ 15] [ 4] [0320] +18:58:21 [ 37] [ 12] [57918807513] +18:58:21 [ 39] [ 2] [00] +18:58:21 [ 70] [ 3] [001] +18:58:21 ============================================================================ +18:58:21 Sending to : +18:58:21 ============================================================================ +18:58:21 + + +waiting on router queue for slot.... +18:58:21 ============================================================================ +18:58:21 Slot Id : <268> +18:58:21 Transaction Type : REQUEST +18:58:21 Received From : +18:58:21 ============================================================================ +18:58:21 FNo. Len. Field Value +18:58:21 ============================================================================ +18:58:21 [ 1] [ 4] [0200] +18:58:21 [ 2] [ 16] [6688990600863607] +18:58:21 [ 3] [ 6] [301000] +18:58:21 [ 7] [ 10] [0320115728] +18:58:21 [ 11] [ 6] [271349] +18:58:21 [ 12] [ 6] [185728] +18:58:21 [ 13] [ 4] [0320] +18:58:21 [ 14] [ 4] [4102] +18:58:21 [ 15] [ 4] [0320] +18:58:21 [ 18] [ 4] [6011] +18:58:21 [ 19] [ 3] [418] +18:58:21 [ 22] [ 3] [021] +18:58:21 [ 25] [ 2] [01] +18:58:21 [ 32] [ 6] [180893] +18:58:21 [ 35] [ 37] [6688990600863607=41020061360796700000] +18:58:21 [ 37] [ 12] [507911271349] +18:58:21 [ 41] [ 8] [0526XYHS] +18:58:21 [ 42] [ 15] [999999 ] +18:58:21 [ 43] [ 40] [ATM HONGSA LOCATION, Hongsa, Lao People ] +18:58:21 [ 49] [ 3] [418] +18:58:21 [ 52] [ 16] [3567178BA573343E] +18:58:21 ============================================================================ +18:58:21 + + +waiting on router queue for slot.... +18:58:21 Sending to : +18:58:21 ============================================================================ +18:58:21 ============================================================================ +18:58:21 Slot Id : <268> +18:58:21 Transaction Type : REQUEST +18:58:21 Received From : +18:58:21 ============================================================================ +18:58:21 FNo. Len. Field Value +18:58:21 ============================================================================ +18:58:21 [ 1] [ 4] [0200] +18:58:21 [ 2] [ 16] [6688990600863607] +18:58:21 [ 3] [ 6] [301000] +18:58:21 [ 7] [ 10] [0320115728] +18:58:21 [ 11] [ 6] [271349] +18:58:21 [ 12] [ 6] [185728] +18:58:21 [ 13] [ 4] [0320] +18:58:21 [ 14] [ 4] [4102] +18:58:21 [ 15] [ 4] [0320] +18:58:21 [ 18] [ 4] [6011] +18:58:21 [ 19] [ 3] [418] +18:58:21 [ 22] [ 3] [021] +18:58:21 [ 25] [ 2] [01] +18:58:21 [ 32] [ 6] [180893] +18:58:21 [ 35] [ 37] [6688990600863607=41020061360796700000] +18:58:21 [ 37] [ 12] [507911271349] +18:58:21 [ 41] [ 8] [0526XYHS] +18:58:21 [ 42] [ 15] [999999 ] +18:58:21 [ 43] [ 40] [ATM HONGSA LOCATION, Hongsa, Lao People ] +18:58:21 [ 49] [ 3] [418] +18:58:21 [ 52] [ 16] [EFE465DCA034A014] +18:58:21 ============================================================================ +18:58:21 + + +waiting on router queue for slot.... +18:58:21 Sending to : <0> +18:58:21 ============================================================================ +18:58:21 ============================================================================ +18:58:21 Slot Id : <268> +18:58:21 Transaction Type : RESPONSE +18:58:21 Received From : +18:58:21 ============================================================================ +18:58:21 FNo. Len. Field Value +18:58:21 ============================================================================ +18:58:21 [ 1] [ 4] [0210] +18:58:21 [ 2] [ 16] [6688990600863607] +18:58:21 [ 3] [ 6] [301000] +18:58:21 [ 4] [ 12] [000000000000] +18:58:21 [ 7] [ 10] [0320115728] +18:58:21 [ 11] [ 6] [271349] +18:58:21 [ 12] [ 6] [185728] +18:58:21 [ 13] [ 4] [0320] +18:58:21 [ 15] [ 4] [0320] +18:58:21 [ 18] [ 4] [6011] +18:58:21 [ 19] [ 3] [418] +18:58:21 [ 22] [ 3] [021] +18:58:21 [ 32] [ 6] [180893] +18:58:21 [ 35] [ 37] [6688990600863607=41020061360796700000] +18:58:21 [ 37] [ 12] [507911271349] +18:58:21 [ 39] [ 2] [14] +18:58:21 [ 41] [ 8] [0526XYHS] +18:58:21 [ 49] [ 3] [418] +18:58:21 ============================================================================ +18:58:21 Sending to : +18:58:21 ============================================================================ +18:58:21 + + +waiting on router queue for slot.... +18:58:23 ============================================================================ +18:58:23 Slot Id : <268> +18:58:23 Transaction Type : RESPONSE +18:58:23 Received From : +18:58:23 ============================================================================ +18:58:23 FNo. Len. Field Value +18:58:23 ============================================================================ +18:58:23 [ 1] [ 4] [0210] +18:58:23 [ 2] [ 16] [6688990600863607] +18:58:23 [ 3] [ 6] [301000] +18:58:23 [ 4] [ 12] [000000000000] +18:58:23 [ 7] [ 10] [0320115728] +18:58:23 [ 11] [ 6] [271349] +18:58:23 [ 12] [ 6] [185728] +18:58:23 [ 13] [ 4] [0320] +18:58:23 [ 15] [ 4] [0320] +18:58:23 [ 18] [ 4] [6011] +18:58:23 [ 19] [ 3] [418] +18:58:23 [ 22] [ 3] [021] +18:58:23 [ 32] [ 6] [180893] +18:58:23 [ 35] [ 37] [6688990600863607=41020061360796700000] +18:58:23 [ 37] [ 12] [507911271349] +18:58:23 [ 39] [ 2] [14] +18:58:23 [ 41] [ 8] [0526XYHS] +18:58:23 [ 49] [ 3] [418] +18:58:23 ============================================================================ +18:58:23 Calculate Source COMM Id = 2 +18:58:23 ============================================================================ +18:58:23 + + +waiting on router queue for slot.... +18:58:23 ============================================================================ +18:58:23 Slot Id : <352> +18:58:23 Transaction Type : REQUEST +18:58:23 Received From : +18:58:23 ============================================================================ +18:58:23 FNo. Len. Field Value +18:58:23 ============================================================================ +18:58:23 [ 1] [ 4] [0200] +18:58:23 [ 2] [ 16] [6688990107119404] +18:58:23 [ 3] [ 6] [010000] +18:58:23 [ 4] [ 12] [000005000000] +18:58:23 [ 7] [ 10] [0320185818] +18:58:23 [ 11] [ 6] [832521] +18:58:23 [ 12] [ 6] [185818] +18:58:23 [ 13] [ 4] [0320] +18:58:23 [ 15] [ 4] [0320] +18:58:23 [ 18] [ 4] [6011] +18:58:23 [ 22] [ 3] [900] +18:58:23 [ 25] [ 2] [02] +18:58:23 [ 28] [ 9] [D00002000] +18:58:23 [ 32] [ 6] [621354] +18:58:23 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:58:23 [ 37] [ 12] [507905382552] +18:58:23 [ 41] [ 8] [12003400] +18:58:23 [ 42] [ 15] [NATIVE ] +18:58:23 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +18:58:23 [ 49] [ 3] [418] +18:58:23 [ 52] [ 16] [39F15A3C130A5D01] +18:58:23 ============================================================================ +18:58:23 + + +waiting on router queue for slot.... +18:58:23 Sending to : +18:58:23 ============================================================================ +18:58:23 Sending to : +18:58:23 ============================================================================ +18:58:23 ============================================================================ +18:58:23 Slot Id : <352> +18:58:23 Transaction Type : REQUEST +18:58:23 Received From : +18:58:23 ============================================================================ +18:58:23 FNo. Len. Field Value +18:58:23 ============================================================================ +18:58:23 [ 1] [ 4] [0200] +18:58:23 [ 2] [ 16] [6688990107119404] +18:58:23 [ 3] [ 6] [010000] +18:58:23 [ 4] [ 12] [000005000000] +18:58:23 [ 7] [ 10] [0320185818] +18:58:23 [ 11] [ 6] [832521] +18:58:23 [ 12] [ 6] [185818] +18:58:23 [ 13] [ 4] [0320] +18:58:23 [ 15] [ 4] [0320] +18:58:23 [ 18] [ 4] [6011] +18:58:23 [ 22] [ 3] [900] +18:58:23 [ 25] [ 2] [02] +18:58:23 [ 28] [ 9] [D00002000] +18:58:23 [ 32] [ 6] [621354] +18:58:23 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:58:23 [ 37] [ 12] [507905382552] +18:58:23 [ 41] [ 8] [12003400] +18:58:23 [ 42] [ 15] [NATIVE ] +18:58:23 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +18:58:23 [ 49] [ 3] [418] +18:58:23 [ 52] [ 16] [39F15A3C130A5D01] +18:58:23 ============================================================================ +18:58:23 + + +waiting on router queue for slot.... +18:58:23 Sending to : +18:58:23 ============================================================================ +18:58:23 ============================================================================ +18:58:23 Slot Id : <352> +18:58:23 Transaction Type : REQUEST +18:58:23 Received From : +18:58:23 ============================================================================ +18:58:23 FNo. Len. Field Value +18:58:23 ============================================================================ +18:58:23 [ 1] [ 4] [0200] +18:58:23 [ 2] [ 16] [6688990107119404] +18:58:23 [ 3] [ 6] [010000] +18:58:23 [ 4] [ 12] [000005000000] +18:58:23 [ 7] [ 10] [0320185818] +18:58:23 [ 11] [ 6] [832521] +18:58:23 [ 12] [ 6] [185818] +18:58:23 [ 13] [ 4] [0320] +18:58:23 [ 15] [ 4] [0320] +18:58:23 [ 18] [ 4] [6011] +18:58:23 [ 22] [ 3] [900] +18:58:23 [ 25] [ 2] [02] +18:58:23 [ 28] [ 9] [D00002000] +18:58:23 [ 32] [ 6] [621354] +18:58:23 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:58:23 [ 37] [ 12] [507905382552] +18:58:23 [ 41] [ 8] [12003400] +18:58:23 [ 42] [ 15] [NATIVE ] +18:58:23 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +18:58:23 [ 49] [ 3] [418] +18:58:23 [ 52] [ 16] [B8A1FC23F328AC1F] +18:58:23 ============================================================================ +18:58:23 + + +waiting on router queue for slot.... +18:58:23 Sending to : <4> +18:58:23 ============================================================================ +18:58:24 ============================================================================ +18:58:24 Slot Id : <352> +18:58:24 Transaction Type : RESPONSE +18:58:24 Received From : +18:58:24 ============================================================================ +18:58:24 FNo. Len. Field Value +18:58:24 ============================================================================ +18:58:24 [ 1] [ 4] [0210] +18:58:24 [ 2] [ 16] [6688990107119404] +18:58:24 [ 3] [ 6] [010000] +18:58:24 [ 4] [ 12] [000005000000] +18:58:24 [ 11] [ 6] [832521] +18:58:24 [ 12] [ 6] [185818] +18:58:24 [ 15] [ 4] [0320] +18:58:24 [ 18] [ 4] [6011] +18:58:24 [ 32] [ 6] [621354] +18:58:24 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:58:24 [ 37] [ 12] [507905382552] +18:58:24 [ 39] [ 2] [51] +18:58:24 [ 41] [ 8] [12003400] +18:58:24 [ 49] [ 3] [418] +18:58:24 [ 54] [ 0] [] +18:58:24 ============================================================================ +18:58:24 Sending to : +18:58:24 ============================================================================ +18:58:24 + + +waiting on router queue for slot.... +18:58:24 ============================================================================ +18:58:24 Slot Id : <352> +18:58:24 Transaction Type : RESPONSE +18:58:24 Received From : +18:58:24 ============================================================================ +18:58:24 FNo. Len. Field Value +18:58:24 ============================================================================ +18:58:24 [ 1] [ 4] [0210] +18:58:24 [ 2] [ 16] [6688990107119404] +18:58:24 [ 3] [ 6] [010000] +18:58:24 [ 4] [ 12] [000005000000] +18:58:24 [ 11] [ 6] [832521] +18:58:24 [ 12] [ 6] [185818] +18:58:24 [ 15] [ 4] [0320] +18:58:24 [ 18] [ 4] [6011] +18:58:24 [ 32] [ 6] [621354] +18:58:24 [ 35] [ 37] [6688990107119404=44021231940462300000] +18:58:24 [ 37] [ 12] [507905382552] +18:58:24 [ 39] [ 2] [51] +18:58:24 [ 41] [ 8] [12003400] +18:58:24 [ 49] [ 3] [418] +18:58:24 [ 54] [ 0] [] +18:58:24 ============================================================================ +18:58:24 Calculate Source COMM Id = 0 +18:58:24 ============================================================================ +18:58:24 + + +waiting on router queue for slot.... +18:58:35 ============================================================================ +18:58:35 Slot Id : <339> +18:58:35 Transaction Type : REQUEST +18:58:35 Received From : +18:58:35 ============================================================================ +18:58:35 FNo. Len. Field Value +18:58:35 ============================================================================ +18:58:35 [ 1] [ 4] [0800] +18:58:35 [ 7] [ 10] [0320115742] +18:58:35 [ 11] [ 6] [157829] +18:58:35 [ 70] [ 3] [301] +18:58:35 ============================================================================ +18:58:35 + + +waiting on router queue for slot.... +18:58:35 Sending to : +18:58:35 ============================================================================ +18:58:35 ============================================================================ +18:58:35 Slot Id : <339> +18:58:35 Transaction Type : RESPONSE +18:58:35 Received From : +18:58:35 ============================================================================ +18:58:35 FNo. Len. Field Value +18:58:35 ============================================================================ +18:58:35 [ 1] [ 4] [0810] +18:58:35 [ 7] [ 10] [0320115742] +18:58:35 [ 11] [ 6] [157829] +18:58:35 [ 39] [ 2] [00] +18:58:35 [ 70] [ 3] [301] +18:58:35 ============================================================================ +18:58:35 Calculate Source COMM Id = 2 +18:58:35 ============================================================================ +18:58:35 + + +waiting on router queue for slot.... +18:58:35 ============================================================================ +18:58:35 Slot Id : <309> +18:58:35 Transaction Type : REQUEST +18:58:35 Received From : +18:58:35 ============================================================================ +18:58:35 FNo. Len. Field Value +18:58:35 ============================================================================ +18:58:35 [ 1] [ 4] [0800] +18:58:35 [ 7] [ 10] [0321021023] +18:58:35 [ 11] [ 6] [191023] +18:58:35 [ 37] [ 12] [57919191023] +18:58:35 [ 70] [ 3] [301] +18:58:35 ============================================================================ +18:58:35 + + +waiting on router queue for slot.... +18:58:35 Sending to : +18:58:35 ============================================================================ +18:58:35 ============================================================================ +18:58:35 Slot Id : <309> +18:58:35 Transaction Type : RESPONSE +18:58:35 Received From : +18:58:35 ============================================================================ +18:58:35 FNo. Len. Field Value +18:58:35 ============================================================================ +18:58:35 [ 1] [ 4] [0810] +18:58:35 [ 7] [ 10] [0321021023] +18:58:35 [ 11] [ 6] [191023] +18:58:35 [ 37] [ 12] [579191910230] +18:58:35 [ 39] [ 2] [00] +18:58:35 [ 70] [ 3] [810] +18:58:35 ============================================================================ +18:58:35 Calculate Source COMM Id = 6 +18:58:35 ============================================================================ +18:58:35 + + +waiting on router queue for slot.... +18:58:43 ============================================================================ +18:58:43 Slot Id : <348> +18:58:43 Transaction Type : REQUEST +18:58:43 Received From : +18:58:43 ============================================================================ +18:58:43 FNo. Len. Field Value +18:58:43 ============================================================================ +18:58:43 [ 1] [ 4] [0200] +18:58:43 [ 2] [ 16] [6213541000180284] +18:58:43 [ 3] [ 6] [310000] +18:58:43 [ 4] [ 12] [000000000000] +18:58:43 [ 7] [ 10] [0320190628] +18:58:43 [ 11] [ 6] [223789] +18:58:43 [ 12] [ 6] [190628] +18:58:43 [ 13] [ 4] [0320] +18:58:43 [ 14] [ 4] [4912] +18:58:43 [ 15] [ 4] [0320] +18:58:43 [ 18] [ 4] [6011] +18:58:43 [ 22] [ 3] [900] +18:58:43 [ 25] [ 2] [02] +18:58:43 [ 28] [ 9] [000000000] +18:58:43 [ 32] [ 6] [220699] +18:58:43 [ 35] [ 32] [6213541000180284=491212018028258] +18:58:43 [ 37] [ 12] [507900118802] +18:58:43 [ 41] [ 8] [01001100] +18:58:43 [ 42] [ 15] [APTRA ] +18:58:43 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:58:43 [ 49] [ 3] [418] +18:58:43 [ 52] [ 16] [D45D24D627AC62B9] +18:58:43 ============================================================================ +18:58:43 + + +waiting on router queue for slot.... +18:58:43 Sending to : +18:58:43 ============================================================================ +18:58:43 Sending to : +18:58:43 ============================================================================ +18:58:44 ============================================================================ +18:58:44 Slot Id : <348> +18:58:44 Transaction Type : REQUEST +18:58:44 Received From : +18:58:44 ============================================================================ +18:58:44 FNo. Len. Field Value +18:58:44 ============================================================================ +18:58:44 [ 1] [ 4] [0200] +18:58:44 [ 2] [ 16] [6213541000180284] +18:58:44 [ 3] [ 6] [310000] +18:58:44 [ 4] [ 12] [000000000000] +18:58:44 [ 7] [ 10] [0320190628] +18:58:44 [ 11] [ 6] [223789] +18:58:44 [ 12] [ 6] [190628] +18:58:44 [ 13] [ 4] [0320] +18:58:44 [ 14] [ 4] [4912] +18:58:44 [ 15] [ 4] [0320] +18:58:44 [ 18] [ 4] [6011] +18:58:44 [ 22] [ 3] [900] +18:58:44 [ 25] [ 2] [02] +18:58:44 [ 28] [ 9] [000000000] +18:58:44 [ 32] [ 6] [220699] +18:58:44 [ 35] [ 32] [6213541000180284=491212018028258] +18:58:44 [ 37] [ 12] [507900118802] +18:58:44 [ 41] [ 8] [01001100] +18:58:44 [ 42] [ 15] [APTRA ] +18:58:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:58:44 [ 49] [ 3] [418] +18:58:44 [ 52] [ 16] [D45D24D627AC62B9] +18:58:44 ============================================================================ +18:58:44 + + +waiting on router queue for slot.... +18:58:44 Sending to : +18:58:44 ============================================================================ +18:58:44 ============================================================================ +18:58:44 Slot Id : <348> +18:58:44 Transaction Type : REQUEST +18:58:44 Received From : +18:58:44 ============================================================================ +18:58:44 FNo. Len. Field Value +18:58:44 ============================================================================ +18:58:44 [ 1] [ 4] [0200] +18:58:44 [ 2] [ 16] [6213541000180284] +18:58:44 [ 3] [ 6] [310000] +18:58:44 [ 4] [ 12] [000000000000] +18:58:44 [ 7] [ 10] [0320190628] +18:58:44 [ 11] [ 6] [223789] +18:58:44 [ 12] [ 6] [190628] +18:58:44 [ 13] [ 4] [0320] +18:58:44 [ 14] [ 4] [4912] +18:58:44 [ 15] [ 4] [0320] +18:58:44 [ 18] [ 4] [6011] +18:58:44 [ 22] [ 3] [900] +18:58:44 [ 25] [ 2] [02] +18:58:44 [ 28] [ 9] [000000000] +18:58:44 [ 32] [ 6] [220699] +18:58:44 [ 35] [ 32] [6213541000180284=491212018028258] +18:58:44 [ 37] [ 12] [507900118802] +18:58:44 [ 41] [ 8] [01001100] +18:58:44 [ 42] [ 15] [APTRA ] +18:58:44 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:58:44 [ 49] [ 3] [418] +18:58:44 [ 52] [ 16] [136C13398DB8D429] +18:58:44 ============================================================================ +18:58:44 + + +waiting on router queue for slot.... +18:58:44 Sending to : <0> +18:58:44 ============================================================================ +18:58:44 ============================================================================ +18:58:44 Slot Id : <348> +18:58:44 Transaction Type : RESPONSE +18:58:44 Received From : +18:58:44 ============================================================================ +18:58:44 FNo. Len. Field Value +18:58:44 ============================================================================ +18:58:44 [ 1] [ 4] [0210] +18:58:44 [ 2] [ 16] [6213541000180284] +18:58:44 [ 3] [ 6] [310000] +18:58:44 [ 4] [ 12] [000000000000] +18:58:44 [ 7] [ 10] [0320190628] +18:58:44 [ 11] [ 6] [223789] +18:58:44 [ 12] [ 6] [190628] +18:58:44 [ 13] [ 4] [0320] +18:58:44 [ 15] [ 4] [0320] +18:58:44 [ 18] [ 4] [6011] +18:58:44 [ 32] [ 6] [220699] +18:58:44 [ 35] [ 32] [6213541000180284=491212018028258] +18:58:44 [ 37] [ 12] [507900118802] +18:58:44 [ 38] [ 6] [052613] +18:58:44 [ 39] [ 2] [00] +18:58:44 [ 41] [ 8] [01001100] +18:58:44 [ 49] [ 3] [418] +18:58:44 [ 54] [ 40] [0001418C0002238558220002418C000223855822] +18:58:44 ============================================================================ +18:58:44 Sending to : +18:58:44 ============================================================================ +18:58:44 + + +waiting on router queue for slot.... +18:58:45 ============================================================================ +18:58:45 Slot Id : <348> +18:58:45 Transaction Type : RESPONSE +18:58:45 Received From : +18:58:45 ============================================================================ +18:58:45 FNo. Len. Field Value +18:58:45 ============================================================================ +18:58:45 [ 1] [ 4] [0210] +18:58:45 [ 2] [ 16] [6213541000180284] +18:58:45 [ 3] [ 6] [310000] +18:58:45 [ 4] [ 12] [000000000000] +18:58:45 [ 7] [ 10] [0320190628] +18:58:45 [ 11] [ 6] [223789] +18:58:45 [ 12] [ 6] [190628] +18:58:45 [ 13] [ 4] [0320] +18:58:45 [ 15] [ 4] [0320] +18:58:45 [ 18] [ 4] [6011] +18:58:45 [ 32] [ 6] [220699] +18:58:45 [ 35] [ 32] [6213541000180284=491212018028258] +18:58:45 [ 37] [ 12] [507900118802] +18:58:45 [ 38] [ 6] [052613] +18:58:45 [ 39] [ 2] [00] +18:58:45 [ 41] [ 8] [01001100] +18:58:45 [ 49] [ 3] [418] +18:58:45 [ 54] [ 40] [0001418C0002238558220002418C000223855822] +18:58:45 ============================================================================ +18:58:45 Calculate Source COMM Id = 1 +18:58:45 ============================================================================ +18:58:45 + + +waiting on router queue for slot.... +18:58:46 ============================================================================ +18:58:46 Slot Id : <347> +18:58:46 Transaction Type : REQUEST +18:58:46 Received From : +18:58:46 ============================================================================ +18:58:46 FNo. Len. Field Value +18:58:46 ============================================================================ +18:58:46 [ 1] [ 4] [0800] +18:58:46 [ 7] [ 10] [0320115753] +18:58:46 [ 11] [ 6] [157830] +18:58:46 [ 70] [ 3] [301] +18:58:46 ============================================================================ +18:58:46 + + +waiting on router queue for slot.... +18:58:46 Sending to : +18:58:46 ============================================================================ +18:58:46 ============================================================================ +18:58:46 Slot Id : <347> +18:58:46 Transaction Type : RESPONSE +18:58:46 Received From : +18:58:46 ============================================================================ +18:58:46 FNo. Len. Field Value +18:58:46 ============================================================================ +18:58:46 [ 1] [ 4] [0810] +18:58:46 [ 7] [ 10] [0320115753] +18:58:46 [ 11] [ 6] [157830] +18:58:46 [ 39] [ 2] [00] +18:58:46 [ 70] [ 3] [301] +18:58:46 ============================================================================ +18:58:46 Calculate Source COMM Id = 2 +18:58:46 ============================================================================ +18:58:46 + + +waiting on router queue for slot.... +18:58:54 ============================================================================ +18:58:54 Slot Id : <329> +18:58:54 Transaction Type : REQUEST +18:58:54 Received From : +18:58:54 ============================================================================ +18:58:54 FNo. Len. Field Value +18:58:54 ============================================================================ +18:58:54 [ 1] [ 4] [0200] +18:58:54 [ 2] [ 16] [6213544002071238] +18:58:54 [ 3] [ 6] [011000] +18:58:54 [ 4] [ 12] [000020000000] +18:58:54 [ 7] [ 10] [0320115800] +18:58:54 [ 11] [ 6] [271352] +18:58:54 [ 12] [ 6] [185800] +18:58:54 [ 13] [ 4] [0320] +18:58:54 [ 14] [ 4] [4912] +18:58:54 [ 15] [ 4] [0320] +18:58:54 [ 18] [ 4] [6011] +18:58:54 [ 19] [ 3] [418] +18:58:54 [ 22] [ 3] [021] +18:58:54 [ 25] [ 2] [01] +18:58:54 [ 28] [ 9] [D00002000] +18:58:54 [ 32] [ 6] [180893] +18:58:54 [ 35] [ 32] [6213544002071238=491212017123830] +18:58:54 [ 37] [ 12] [507911271352] +18:58:54 [ 41] [ 8] [0421BKPH] +18:58:54 [ 42] [ 15] [999999 ] +18:58:54 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +18:58:54 [ 49] [ 3] [418] +18:58:54 [ 52] [ 16] [F1ACE74599C79DCC] +18:58:54 ============================================================================ +18:58:54 + + +waiting on router queue for slot.... +18:58:54 Sending to : +18:58:54 ============================================================================ +18:58:54 Sending to : +18:58:54 ============================================================================ +18:58:54 ============================================================================ +18:58:54 Slot Id : <329> +18:58:54 Transaction Type : REQUEST +18:58:54 Received From : +18:58:54 ============================================================================ +18:58:54 FNo. Len. Field Value +18:58:54 ============================================================================ +18:58:54 [ 1] [ 4] [0200] +18:58:54 [ 2] [ 16] [6213544002071238] +18:58:54 [ 3] [ 6] [011000] +18:58:54 [ 4] [ 12] [000020000000] +18:58:54 [ 7] [ 10] [0320115800] +18:58:54 [ 11] [ 6] [271352] +18:58:54 [ 12] [ 6] [185800] +18:58:54 [ 13] [ 4] [0320] +18:58:54 [ 14] [ 4] [4912] +18:58:54 [ 15] [ 4] [0320] +18:58:54 [ 18] [ 4] [6011] +18:58:54 [ 19] [ 3] [418] +18:58:54 [ 22] [ 3] [021] +18:58:54 [ 25] [ 2] [01] +18:58:54 [ 28] [ 9] [D00002000] +18:58:54 [ 32] [ 6] [180893] +18:58:54 [ 35] [ 32] [6213544002071238=491212017123830] +18:58:54 [ 37] [ 12] [507911271352] +18:58:54 [ 41] [ 8] [0421BKPH] +18:58:54 [ 42] [ 15] [999999 ] +18:58:54 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +18:58:54 [ 49] [ 3] [418] +18:58:54 [ 52] [ 16] [F1ACE74599C79DCC] +18:58:54 ============================================================================ +18:58:54 + + +waiting on router queue for slot.... +18:58:54 Sending to : +18:58:54 ============================================================================ +18:58:54 ============================================================================ +18:58:54 Slot Id : <329> +18:58:54 Transaction Type : REQUEST +18:58:54 Received From : +18:58:54 ============================================================================ +18:58:54 FNo. Len. Field Value +18:58:54 ============================================================================ +18:58:54 [ 1] [ 4] [0200] +18:58:54 [ 2] [ 16] [6213544002071238] +18:58:54 [ 3] [ 6] [011000] +18:58:54 [ 4] [ 12] [000020000000] +18:58:54 [ 7] [ 10] [0320115800] +18:58:54 [ 11] [ 6] [271352] +18:58:54 [ 12] [ 6] [185800] +18:58:54 [ 13] [ 4] [0320] +18:58:54 [ 14] [ 4] [4912] +18:58:54 [ 15] [ 4] [0320] +18:58:54 [ 18] [ 4] [6011] +18:58:54 [ 19] [ 3] [418] +18:58:54 [ 22] [ 3] [021] +18:58:54 [ 25] [ 2] [01] +18:58:54 [ 28] [ 9] [D00002000] +18:58:54 [ 32] [ 6] [180893] +18:58:54 [ 35] [ 32] [6213544002071238=491212017123830] +18:58:54 [ 37] [ 12] [507911271352] +18:58:54 [ 41] [ 8] [0421BKPH] +18:58:54 [ 42] [ 15] [999999 ] +18:58:54 [ 43] [ 40] [ATM BORKEO PHAOUDOM, Phaoudom, Lao Peopl] +18:58:54 [ 49] [ 3] [418] +18:58:54 [ 52] [ 16] [CDBF008CD7F3F9CF] +18:58:54 ============================================================================ +18:58:54 + + +waiting on router queue for slot.... +18:58:54 Sending to : <0> +18:58:54 ============================================================================ +18:58:55 ============================================================================ +18:58:55 Slot Id : <329> +18:58:55 Transaction Type : RESPONSE +18:58:55 Received From : +18:58:55 ============================================================================ +18:58:55 FNo. Len. Field Value +18:58:55 ============================================================================ +18:58:55 [ 1] [ 4] [0210] +18:58:55 [ 2] [ 16] [6213544002071238] +18:58:55 [ 3] [ 6] [011000] +18:58:55 [ 4] [ 12] [000020000000] +18:58:55 [ 7] [ 10] [0320115800] +18:58:55 [ 11] [ 6] [271352] +18:58:55 [ 12] [ 6] [185800] +18:58:55 [ 13] [ 4] [0320] +18:58:55 [ 15] [ 4] [0320] +18:58:55 [ 18] [ 4] [6011] +18:58:55 [ 19] [ 3] [418] +18:58:55 [ 32] [ 6] [180893] +18:58:55 [ 35] [ 32] [6213544002071238=491212017123830] +18:58:55 [ 37] [ 12] [507911271352] +18:58:55 [ 38] [ 6] [446601] +18:58:55 [ 39] [ 2] [00] +18:58:55 [ 41] [ 8] [0421BKPH] +18:58:55 [ 49] [ 3] [418] +18:58:55 [ 54] [ 40] [1001418C0002045628741002418C000204562874] +18:58:55 ============================================================================ +18:58:55 Sending to : +18:58:55 ============================================================================ +18:58:55 + + +waiting on router queue for slot.... +18:58:56 ============================================================================ +18:58:56 Slot Id : <329> +18:58:56 Transaction Type : RESPONSE +18:58:56 Received From : +18:58:56 ============================================================================ +18:58:56 FNo. Len. Field Value +18:58:56 ============================================================================ +18:58:56 [ 1] [ 4] [0210] +18:58:56 [ 2] [ 16] [6213544002071238] +18:58:56 [ 3] [ 6] [011000] +18:58:56 [ 4] [ 12] [000020000000] +18:58:56 [ 7] [ 10] [0320115800] +18:58:56 [ 11] [ 6] [271352] +18:58:56 [ 12] [ 6] [185800] +18:58:56 [ 13] [ 4] [0320] +18:58:56 [ 15] [ 4] [0320] +18:58:56 [ 18] [ 4] [6011] +18:58:56 [ 19] [ 3] [418] +18:58:56 [ 32] [ 6] [180893] +18:58:56 [ 35] [ 32] [6213544002071238=491212017123830] +18:58:56 [ 37] [ 12] [507911271352] +18:58:56 [ 38] [ 6] [446601] +18:58:56 [ 39] [ 2] [00] +18:58:56 [ 41] [ 8] [0421BKPH] +18:58:56 [ 49] [ 3] [418] +18:58:56 [ 54] [ 40] [1001418C0002045628741002418C000204562874] +18:58:56 ============================================================================ +18:58:56 Calculate Source COMM Id = 2 +18:58:56 ============================================================================ +18:58:56 + + +waiting on router queue for slot.... +18:59:07 ============================================================================ +18:59:07 Slot Id : <328> +18:59:07 Transaction Type : REQUEST +18:59:07 Received From : +18:59:07 ============================================================================ +18:59:07 FNo. Len. Field Value +18:59:07 ============================================================================ +18:59:07 [ 1] [ 4] [0200] +18:59:07 [ 2] [ 16] [6213541000393465] +18:59:07 [ 3] [ 6] [010000] +18:59:07 [ 4] [ 12] [000080000000] +18:59:07 [ 7] [ 10] [0320185657] +18:59:07 [ 11] [ 6] [955423] +18:59:07 [ 12] [ 6] [185657] +18:59:07 [ 13] [ 4] [0320] +18:59:07 [ 15] [ 4] [0320] +18:59:07 [ 18] [ 4] [6011] +18:59:07 [ 19] [ 3] [418] +18:59:07 [ 22] [ 3] [021] +18:59:07 [ 25] [ 2] [01] +18:59:07 [ 28] [ 9] [D00002000] +18:59:07 [ 32] [ 6] [668899] +18:59:07 [ 35] [ 32] [6213541000393465=491212019346512] +18:59:07 [ 37] [ 12] [507902407381] +18:59:07 [ 41] [ 8] [03001010] +18:59:07 [ 42] [ 15] [APT ] +18:59:07 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +18:59:07 [ 49] [ 3] [418] +18:59:07 [ 52] [ 16] [7F8035351DA4762A] +18:59:07 ============================================================================ +18:59:07 + + +waiting on router queue for slot.... +18:59:07 Sending to : +18:59:07 ============================================================================ +18:59:07 Sending to : +18:59:07 ============================================================================ +18:59:07 ============================================================================ +18:59:07 Slot Id : <328> +18:59:07 Transaction Type : REQUEST +18:59:07 Received From : +18:59:07 ============================================================================ +18:59:07 FNo. Len. Field Value +18:59:07 ============================================================================ +18:59:07 [ 1] [ 4] [0200] +18:59:07 [ 2] [ 16] [6213541000393465] +18:59:07 [ 3] [ 6] [010000] +18:59:07 [ 4] [ 12] [000080000000] +18:59:07 [ 7] [ 10] [0320185657] +18:59:07 [ 11] [ 6] [955423] +18:59:07 [ 12] [ 6] [185657] +18:59:07 [ 13] [ 4] [0320] +18:59:07 [ 15] [ 4] [0320] +18:59:07 [ 18] [ 4] [6011] +18:59:07 [ 19] [ 3] [418] +18:59:07 [ 22] [ 3] [021] +18:59:07 [ 25] [ 2] [01] +18:59:07 [ 28] [ 9] [D00002000] +18:59:07 [ 32] [ 6] [668899] +18:59:07 [ 35] [ 32] [6213541000393465=491212019346512] +18:59:07 [ 37] [ 12] [507902407381] +18:59:07 [ 41] [ 8] [03001010] +18:59:07 [ 42] [ 15] [APT ] +18:59:07 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +18:59:07 [ 49] [ 3] [418] +18:59:07 [ 52] [ 16] [7F8035351DA4762A] +18:59:07 ============================================================================ +18:59:07 + + +waiting on router queue for slot.... +18:59:07 Sending to : +18:59:07 ============================================================================ +18:59:07 ============================================================================ +18:59:07 Slot Id : <328> +18:59:07 Transaction Type : REQUEST +18:59:07 Received From : +18:59:07 ============================================================================ +18:59:07 FNo. Len. Field Value +18:59:07 ============================================================================ +18:59:07 [ 1] [ 4] [0200] +18:59:07 [ 2] [ 16] [6213541000393465] +18:59:07 [ 3] [ 6] [010000] +18:59:07 [ 4] [ 12] [000080000000] +18:59:07 [ 7] [ 10] [0320185657] +18:59:07 [ 11] [ 6] [955423] +18:59:07 [ 12] [ 6] [185657] +18:59:07 [ 13] [ 4] [0320] +18:59:07 [ 15] [ 4] [0320] +18:59:07 [ 18] [ 4] [6011] +18:59:07 [ 19] [ 3] [418] +18:59:07 [ 22] [ 3] [021] +18:59:07 [ 25] [ 2] [01] +18:59:07 [ 28] [ 9] [D00002000] +18:59:07 [ 32] [ 6] [668899] +18:59:07 [ 35] [ 32] [6213541000393465=491212019346512] +18:59:07 [ 37] [ 12] [507902407381] +18:59:07 [ 41] [ 8] [03001010] +18:59:07 [ 42] [ 15] [APT ] +18:59:07 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +18:59:07 [ 49] [ 3] [418] +18:59:07 [ 52] [ 16] [F61A90353BC7F274] +18:59:07 ============================================================================ +18:59:07 + + +waiting on router queue for slot.... +18:59:07 Sending to : <0> +18:59:07 ============================================================================ +18:59:08 ============================================================================ +18:59:08 Slot Id : <337> +18:59:08 Transaction Type : REQUEST +18:59:08 Received From : +18:59:08 ============================================================================ +18:59:08 FNo. Len. Field Value +18:59:08 ============================================================================ +18:59:08 [ 1] [ 4] [0800] +18:59:08 [ 7] [ 10] [0320115813] +18:59:08 [ 11] [ 6] [157831] +18:59:08 [ 70] [ 3] [301] +18:59:08 ============================================================================ +18:59:08 + + +waiting on router queue for slot.... +18:59:08 Sending to : +18:59:08 ============================================================================ +18:59:08 ============================================================================ +18:59:08 Slot Id : <337> +18:59:08 Transaction Type : RESPONSE +18:59:08 Received From : +18:59:08 ============================================================================ +18:59:08 FNo. Len. Field Value +18:59:08 ============================================================================ +18:59:08 [ 1] [ 4] [0810] +18:59:08 [ 7] [ 10] [0320115813] +18:59:08 [ 11] [ 6] [157831] +18:59:08 [ 39] [ 2] [00] +18:59:08 [ 70] [ 3] [301] +18:59:08 ============================================================================ +18:59:08 Calculate Source COMM Id = 2 +18:59:08 ============================================================================ +18:59:08 + + +waiting on router queue for slot.... +18:59:08 ============================================================================ +18:59:08 Slot Id : <328> +18:59:08 Transaction Type : RESPONSE +18:59:08 Received From : +18:59:08 ============================================================================ +18:59:08 FNo. Len. Field Value +18:59:08 ============================================================================ +18:59:08 [ 1] [ 4] [0210] +18:59:08 [ 2] [ 16] [6213541000393465] +18:59:08 [ 3] [ 6] [010000] +18:59:08 [ 4] [ 12] [000080000000] +18:59:08 [ 7] [ 10] [0320185657] +18:59:08 [ 11] [ 6] [955423] +18:59:08 [ 12] [ 6] [185657] +18:59:08 [ 13] [ 4] [0320] +18:59:08 [ 15] [ 4] [0320] +18:59:08 [ 18] [ 4] [6011] +18:59:08 [ 19] [ 3] [418] +18:59:08 [ 32] [ 6] [668899] +18:59:08 [ 35] [ 32] [6213541000393465=491212019346512] +18:59:08 [ 37] [ 12] [507902407381] +18:59:08 [ 38] [ 6] [955423] +18:59:08 [ 39] [ 2] [51] +18:59:08 [ 41] [ 8] [03001010] +18:59:08 [ 49] [ 3] [418] +18:59:08 [ 54] [ 40] [0001840C0000000094850002840C000000009485] +18:59:08 ============================================================================ +18:59:08 Sending to : +18:59:08 ============================================================================ +18:59:08 + + +waiting on router queue for slot.... +18:59:09 ============================================================================ +18:59:09 Slot Id : <328> +18:59:09 Transaction Type : RESPONSE +18:59:09 Received From : +18:59:09 ============================================================================ +18:59:09 FNo. Len. Field Value +18:59:09 ============================================================================ +18:59:09 [ 1] [ 4] [0210] +18:59:09 [ 2] [ 16] [6213541000393465] +18:59:09 [ 3] [ 6] [010000] +18:59:09 [ 4] [ 12] [000080000000] +18:59:09 [ 7] [ 10] [0320185657] +18:59:09 [ 11] [ 6] [955423] +18:59:09 [ 12] [ 6] [185657] +18:59:09 [ 13] [ 4] [0320] +18:59:09 [ 15] [ 4] [0320] +18:59:09 [ 18] [ 4] [6011] +18:59:09 [ 19] [ 3] [418] +18:59:09 [ 32] [ 6] [668899] +18:59:09 [ 35] [ 32] [6213541000393465=491212019346512] +18:59:09 [ 37] [ 12] [507902407381] +18:59:09 [ 38] [ 6] [955423] +18:59:09 [ 39] [ 2] [51] +18:59:09 [ 41] [ 8] [03001010] +18:59:09 [ 49] [ 3] [418] +18:59:09 [ 54] [ 40] [0001840C0000000094850002840C000000009485] +18:59:09 ============================================================================ +18:59:09 Calculate Source COMM Id = 4 +18:59:09 ============================================================================ +18:59:09 + + +waiting on router queue for slot.... +18:59:14 ============================================================================ +18:59:14 Slot Id : <350> +18:59:14 Transaction Type : REQUEST +18:59:14 Received From : +18:59:14 ============================================================================ +18:59:14 FNo. Len. Field Value +18:59:14 ============================================================================ +18:59:14 [ 1] [ 4] [0200] +18:59:14 [ 2] [ 16] [6213541000180284] +18:59:14 [ 3] [ 6] [010000] +18:59:14 [ 4] [ 12] [000100000000] +18:59:14 [ 7] [ 10] [0320190659] +18:59:14 [ 11] [ 6] [223790] +18:59:14 [ 12] [ 6] [190659] +18:59:14 [ 13] [ 4] [0320] +18:59:14 [ 14] [ 4] [4912] +18:59:14 [ 15] [ 4] [0320] +18:59:14 [ 18] [ 4] [6011] +18:59:14 [ 22] [ 3] [900] +18:59:14 [ 25] [ 2] [02] +18:59:14 [ 28] [ 9] [D00002000] +18:59:14 [ 32] [ 6] [220699] +18:59:14 [ 35] [ 32] [6213541000180284=491212018028258] +18:59:14 [ 37] [ 12] [507900118803] +18:59:14 [ 41] [ 8] [01001100] +18:59:14 [ 42] [ 15] [APTRA ] +18:59:14 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:59:14 [ 49] [ 3] [418] +18:59:14 [ 52] [ 16] [D45D24D627AC62B9] +18:59:14 ============================================================================ +18:59:14 + + +waiting on router queue for slot.... +18:59:14 Sending to : +18:59:14 ============================================================================ +18:59:14 Sending to : +18:59:14 ============================================================================ +18:59:14 ============================================================================ +18:59:14 Slot Id : <346> +18:59:14 Transaction Type : REQUEST +18:59:14 Received From : +18:59:14 ============================================================================ +18:59:14 FNo. Len. Field Value +18:59:14 ============================================================================ +18:59:14 [ 1] [ 4] [0200] +18:59:14 [ 2] [ 16] [6688990600863607] +18:59:14 [ 3] [ 6] [010000] +18:59:14 [ 4] [ 12] [000100000000] +18:59:14 [ 7] [ 10] [0320115821] +18:59:14 [ 11] [ 6] [271355] +18:59:14 [ 12] [ 6] [185821] +18:59:14 [ 13] [ 4] [0320] +18:59:14 [ 14] [ 4] [4102] +18:59:14 [ 15] [ 4] [0320] +18:59:14 [ 18] [ 4] [6011] +18:59:14 [ 19] [ 3] [418] +18:59:14 [ 22] [ 3] [021] +18:59:14 [ 25] [ 2] [01] +18:59:14 [ 28] [ 9] [D00002000] +18:59:14 [ 32] [ 6] [180893] +18:59:14 [ 35] [ 37] [6688990600863607=41020061360796700000] +18:59:14 [ 37] [ 12] [507911271355] +18:59:14 [ 41] [ 8] [0526XYHS] +18:59:14 [ 42] [ 15] [999999 ] +18:59:14 [ 43] [ 40] [ATM HONGSA LOCATION, Hongsa, Lao People ] +18:59:14 [ 49] [ 3] [418] +18:59:14 [ 52] [ 16] [3567178BA573343E] +18:59:14 ============================================================================ +18:59:14 + + +waiting on router queue for slot.... +18:59:14 Sending to : +18:59:14 ============================================================================ +18:59:14 Sending to : +18:59:14 ============================================================================ +18:59:15 ============================================================================ +18:59:15 Slot Id : <350> +18:59:15 Transaction Type : REQUEST +18:59:15 Received From : +18:59:15 ============================================================================ +18:59:15 FNo. Len. Field Value +18:59:15 ============================================================================ +18:59:15 [ 1] [ 4] [0200] +18:59:15 [ 2] [ 16] [6213541000180284] +18:59:15 [ 3] [ 6] [010000] +18:59:15 [ 4] [ 12] [000100000000] +18:59:15 [ 7] [ 10] [0320190659] +18:59:15 [ 11] [ 6] [223790] +18:59:15 [ 12] [ 6] [190659] +18:59:15 [ 13] [ 4] [0320] +18:59:15 [ 14] [ 4] [4912] +18:59:15 [ 15] [ 4] [0320] +18:59:15 [ 18] [ 4] [6011] +18:59:15 [ 22] [ 3] [900] +18:59:15 [ 25] [ 2] [02] +18:59:15 [ 28] [ 9] [D00002000] +18:59:15 [ 32] [ 6] [220699] +18:59:15 [ 35] [ 32] [6213541000180284=491212018028258] +18:59:15 [ 37] [ 12] [507900118803] +18:59:15 [ 41] [ 8] [01001100] +18:59:15 [ 42] [ 15] [APTRA ] +18:59:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:59:15 [ 49] [ 3] [418] +18:59:15 [ 52] [ 16] [D45D24D627AC62B9] +18:59:15 ============================================================================ +18:59:15 + + +waiting on router queue for slot.... +18:59:15 Sending to : +18:59:15 ============================================================================ +18:59:15 ============================================================================ +18:59:15 Slot Id : <350> +18:59:15 Transaction Type : REQUEST +18:59:15 Received From : +18:59:15 ============================================================================ +18:59:15 FNo. Len. Field Value +18:59:15 ============================================================================ +18:59:15 [ 1] [ 4] [0200] +18:59:15 [ 2] [ 16] [6213541000180284] +18:59:15 [ 3] [ 6] [010000] +18:59:15 [ 4] [ 12] [000100000000] +18:59:15 [ 7] [ 10] [0320190659] +18:59:15 [ 11] [ 6] [223790] +18:59:15 [ 12] [ 6] [190659] +18:59:15 [ 13] [ 4] [0320] +18:59:15 [ 14] [ 4] [4912] +18:59:15 [ 15] [ 4] [0320] +18:59:15 [ 18] [ 4] [6011] +18:59:15 [ 22] [ 3] [900] +18:59:15 [ 25] [ 2] [02] +18:59:15 [ 28] [ 9] [D00002000] +18:59:15 [ 32] [ 6] [220699] +18:59:15 [ 35] [ 32] [6213541000180284=491212018028258] +18:59:15 [ 37] [ 12] [507900118803] +18:59:15 [ 41] [ 8] [01001100] +18:59:15 [ 42] [ 15] [APTRA ] +18:59:15 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:59:15 [ 49] [ 3] [418] +18:59:15 [ 52] [ 16] [136C13398DB8D429] +18:59:15 ============================================================================ +18:59:15 + + +waiting on router queue for slot.... +18:59:15 Sending to : <0> +18:59:15 ============================================================================ +18:59:15 ============================================================================ +18:59:15 Slot Id : <350> +18:59:15 Transaction Type : RESPONSE +18:59:15 Received From : +18:59:15 ============================================================================ +18:59:15 FNo. Len. Field Value +18:59:15 ============================================================================ +18:59:15 [ 1] [ 4] [0210] +18:59:15 [ 2] [ 16] [6213541000180284] +18:59:15 [ 3] [ 6] [010000] +18:59:15 [ 4] [ 12] [000100000000] +18:59:15 [ 7] [ 10] [0320190659] +18:59:15 [ 11] [ 6] [223790] +18:59:15 [ 12] [ 6] [190659] +18:59:15 [ 13] [ 4] [0320] +18:59:15 [ 15] [ 4] [0320] +18:59:15 [ 18] [ 4] [6011] +18:59:15 [ 22] [ 3] [900] +18:59:15 [ 32] [ 6] [220699] +18:59:15 [ 35] [ 32] [6213541000180284=491212018028258] +18:59:15 [ 37] [ 12] [507900118803] +18:59:15 [ 39] [ 2] [05] +18:59:15 [ 41] [ 8] [01001100] +18:59:15 [ 49] [ 3] [418] +18:59:15 ============================================================================ +18:59:15 Sending to : +18:59:15 ============================================================================ +18:59:15 + + +waiting on router queue for slot.... +18:59:15 ============================================================================ +18:59:15 Slot Id : <346> +18:59:15 Transaction Type : REQUEST +18:59:15 Received From : +18:59:15 ============================================================================ +18:59:15 FNo. Len. Field Value +18:59:15 ============================================================================ +18:59:15 [ 1] [ 4] [0200] +18:59:15 [ 2] [ 16] [6688990600863607] +18:59:15 [ 3] [ 6] [010000] +18:59:15 [ 4] [ 12] [000100000000] +18:59:15 [ 7] [ 10] [0320115821] +18:59:15 [ 11] [ 6] [271355] +18:59:15 [ 12] [ 6] [185821] +18:59:15 [ 13] [ 4] [0320] +18:59:15 [ 14] [ 4] [4102] +18:59:15 [ 15] [ 4] [0320] +18:59:15 [ 18] [ 4] [6011] +18:59:15 [ 19] [ 3] [418] +18:59:15 [ 22] [ 3] [021] +18:59:15 [ 25] [ 2] [01] +18:59:15 [ 28] [ 9] [D00002000] +18:59:15 [ 32] [ 6] [180893] +18:59:15 [ 35] [ 37] [6688990600863607=41020061360796700000] +18:59:15 [ 37] [ 12] [507911271355] +18:59:15 [ 41] [ 8] [0526XYHS] +18:59:15 [ 42] [ 15] [999999 ] +18:59:15 [ 43] [ 40] [ATM HONGSA LOCATION, Hongsa, Lao People ] +18:59:15 [ 49] [ 3] [418] +18:59:15 [ 52] [ 16] [3567178BA573343E] +18:59:15 ============================================================================ +18:59:15 + + +waiting on router queue for slot.... +18:59:15 Sending to : +18:59:15 ============================================================================ +18:59:15 ============================================================================ +18:59:15 Slot Id : <346> +18:59:15 Transaction Type : REQUEST +18:59:15 Received From : +18:59:15 ============================================================================ +18:59:15 FNo. Len. Field Value +18:59:15 ============================================================================ +18:59:15 [ 1] [ 4] [0200] +18:59:15 [ 2] [ 16] [6688990600863607] +18:59:15 [ 3] [ 6] [010000] +18:59:15 [ 4] [ 12] [000100000000] +18:59:15 [ 7] [ 10] [0320115821] +18:59:15 [ 11] [ 6] [271355] +18:59:15 [ 12] [ 6] [185821] +18:59:15 [ 13] [ 4] [0320] +18:59:15 [ 14] [ 4] [4102] +18:59:15 [ 15] [ 4] [0320] +18:59:15 [ 18] [ 4] [6011] +18:59:15 [ 19] [ 3] [418] +18:59:15 [ 22] [ 3] [021] +18:59:15 [ 25] [ 2] [01] +18:59:15 [ 28] [ 9] [D00002000] +18:59:15 [ 32] [ 6] [180893] +18:59:15 [ 35] [ 37] [6688990600863607=41020061360796700000] +18:59:15 [ 37] [ 12] [507911271355] +18:59:15 [ 41] [ 8] [0526XYHS] +18:59:15 [ 42] [ 15] [999999 ] +18:59:15 [ 43] [ 40] [ATM HONGSA LOCATION, Hongsa, Lao People ] +18:59:15 [ 49] [ 3] [418] +18:59:15 [ 52] [ 16] [EFE465DCA034A014] +18:59:15 ============================================================================ +18:59:15 + + +waiting on router queue for slot.... +18:59:15 Sending to : <0> +18:59:15 ============================================================================ +18:59:15 ============================================================================ +18:59:15 Slot Id : <346> +18:59:15 Transaction Type : RESPONSE +18:59:15 Received From : +18:59:15 ============================================================================ +18:59:15 FNo. Len. Field Value +18:59:15 ============================================================================ +18:59:15 [ 1] [ 4] [0210] +18:59:15 [ 2] [ 16] [6688990600863607] +18:59:15 [ 3] [ 6] [010000] +18:59:15 [ 4] [ 12] [000100000000] +18:59:15 [ 7] [ 10] [0320115821] +18:59:15 [ 11] [ 6] [271355] +18:59:15 [ 12] [ 6] [185821] +18:59:15 [ 13] [ 4] [0320] +18:59:15 [ 15] [ 4] [0320] +18:59:15 [ 18] [ 4] [6011] +18:59:15 [ 19] [ 3] [418] +18:59:15 [ 22] [ 3] [021] +18:59:15 [ 32] [ 6] [180893] +18:59:15 [ 35] [ 37] [6688990600863607=41020061360796700000] +18:59:15 [ 37] [ 12] [507911271355] +18:59:15 [ 39] [ 2] [14] +18:59:15 [ 41] [ 8] [0526XYHS] +18:59:15 [ 49] [ 3] [418] +18:59:15 ============================================================================ +18:59:15 Sending to : +18:59:15 ============================================================================ +18:59:15 + + +waiting on router queue for slot.... +18:59:16 ============================================================================ +18:59:16 Slot Id : <350> +18:59:16 Transaction Type : RESPONSE +18:59:16 Received From : +18:59:16 ============================================================================ +18:59:16 FNo. Len. Field Value +18:59:16 ============================================================================ +18:59:16 [ 1] [ 4] [0210] +18:59:16 [ 2] [ 16] [6213541000180284] +18:59:16 [ 3] [ 6] [010000] +18:59:16 [ 4] [ 12] [000100000000] +18:59:16 [ 7] [ 10] [0320190659] +18:59:16 [ 11] [ 6] [223790] +18:59:16 [ 12] [ 6] [190659] +18:59:16 [ 13] [ 4] [0320] +18:59:16 [ 15] [ 4] [0320] +18:59:16 [ 18] [ 4] [6011] +18:59:16 [ 22] [ 3] [900] +18:59:16 [ 32] [ 6] [220699] +18:59:16 [ 35] [ 32] [6213541000180284=491212018028258] +18:59:16 [ 37] [ 12] [507900118803] +18:59:16 [ 39] [ 2] [05] +18:59:16 [ 41] [ 8] [01001100] +18:59:16 [ 49] [ 3] [418] +18:59:16 ============================================================================ +18:59:16 Calculate Source COMM Id = 1 +18:59:16 ============================================================================ +18:59:16 + + +waiting on router queue for slot.... +18:59:17 ============================================================================ +18:59:17 Slot Id : <346> +18:59:17 Transaction Type : RESPONSE +18:59:17 Received From : +18:59:17 ============================================================================ +18:59:17 FNo. Len. Field Value +18:59:17 ============================================================================ +18:59:17 [ 1] [ 4] [0210] +18:59:17 [ 2] [ 16] [6688990600863607] +18:59:17 [ 3] [ 6] [010000] +18:59:17 [ 4] [ 12] [000100000000] +18:59:17 [ 7] [ 10] [0320115821] +18:59:17 [ 11] [ 6] [271355] +18:59:17 [ 12] [ 6] [185821] +18:59:17 [ 13] [ 4] [0320] +18:59:17 [ 15] [ 4] [0320] +18:59:17 [ 18] [ 4] [6011] +18:59:17 [ 19] [ 3] [418] +18:59:17 [ 22] [ 3] [021] +18:59:17 [ 32] [ 6] [180893] +18:59:17 [ 35] [ 37] [6688990600863607=41020061360796700000] +18:59:17 [ 37] [ 12] [507911271355] +18:59:17 [ 39] [ 2] [14] +18:59:17 [ 41] [ 8] [0526XYHS] +18:59:17 [ 49] [ 3] [418] +18:59:17 ============================================================================ +18:59:17 Calculate Source COMM Id = 2 +18:59:17 ============================================================================ +18:59:17 + + +waiting on router queue for slot.... +18:59:23 ============================================================================ +18:59:23 Slot Id : <357> +18:59:23 Transaction Type : REQUEST +18:59:23 Received From : +18:59:23 ============================================================================ +18:59:23 FNo. Len. Field Value +18:59:23 ============================================================================ +18:59:23 [ 1] [ 4] [0800] +18:59:23 [ 2] [ 5] [02531] +18:59:23 [ 3] [ 6] [579188] +18:59:23 [ 7] [ 10] [0320115923] +18:59:23 [ 11] [ 6] [807514] +18:59:23 [ 15] [ 10] [0320115923] +18:59:23 [ 37] [ 11] [57918807514] +18:59:23 [ 70] [ 3] [001] +18:59:23 ============================================================================ +18:59:23 + + +waiting on router queue for slot.... +18:59:23 ============================================================================ +18:59:23 Slot Id : <357> +18:59:23 Transaction Type : RESPONSE +18:59:23 Received From : +18:59:23 ============================================================================ +18:59:23 FNo. Len. Field Value +18:59:23 ============================================================================ +18:59:23 [ 1] [ 4] [0810] +18:59:23 [ 7] [ 10] [0320115923] +18:59:23 [ 11] [ 6] [807514] +18:59:23 [ 15] [ 4] [0320] +18:59:23 [ 37] [ 12] [57918807514] +18:59:23 [ 39] [ 2] [00] +18:59:23 [ 70] [ 3] [001] +18:59:23 ============================================================================ +18:59:23 Sending to : +18:59:23 ============================================================================ +18:59:23 + + +waiting on router queue for slot.... +18:59:27 ============================================================================ +18:59:27 Slot Id : <332> +18:59:27 Transaction Type : REQUEST +18:59:27 Received From : +18:59:27 ============================================================================ +18:59:27 FNo. Len. Field Value +18:59:27 ============================================================================ +18:59:27 [ 1] [ 4] [0800] +18:59:27 [ 7] [ 10] [0320115834] +18:59:27 [ 11] [ 6] [157832] +18:59:27 [ 70] [ 3] [301] +18:59:27 ============================================================================ +18:59:27 + + +waiting on router queue for slot.... +18:59:27 Sending to : +18:59:27 ============================================================================ +18:59:27 ============================================================================ +18:59:27 Slot Id : <332> +18:59:27 Transaction Type : RESPONSE +18:59:27 Received From : +18:59:27 ============================================================================ +18:59:27 FNo. Len. Field Value +18:59:27 ============================================================================ +18:59:27 [ 1] [ 4] [0810] +18:59:27 [ 7] [ 10] [0320115834] +18:59:27 [ 11] [ 6] [157832] +18:59:27 [ 39] [ 2] [00] +18:59:27 [ 70] [ 3] [301] +18:59:27 ============================================================================ +18:59:27 Calculate Source COMM Id = 2 +18:59:27 ============================================================================ +18:59:27 + + +waiting on router queue for slot.... +18:59:39 ============================================================================ +18:59:39 Slot Id : <319> +18:59:39 Transaction Type : REQUEST +18:59:39 Received From : +18:59:39 ============================================================================ +18:59:39 FNo. Len. Field Value +18:59:39 ============================================================================ +18:59:39 [ 1] [ 4] [0800] +18:59:39 [ 7] [ 10] [0320115845] +18:59:39 [ 11] [ 6] [157833] +18:59:39 [ 70] [ 3] [301] +18:59:39 ============================================================================ +18:59:39 + + +waiting on router queue for slot.... +18:59:39 Sending to : +18:59:39 ============================================================================ +18:59:39 ============================================================================ +18:59:39 Slot Id : <319> +18:59:39 Transaction Type : RESPONSE +18:59:39 Received From : +18:59:39 ============================================================================ +18:59:39 FNo. Len. Field Value +18:59:39 ============================================================================ +18:59:39 [ 1] [ 4] [0810] +18:59:39 [ 7] [ 10] [0320115845] +18:59:39 [ 11] [ 6] [157833] +18:59:39 [ 39] [ 2] [00] +18:59:39 [ 70] [ 3] [301] +18:59:39 ============================================================================ +18:59:39 Calculate Source COMM Id = 2 +18:59:39 ============================================================================ +18:59:39 + + +waiting on router queue for slot.... +18:59:41 ============================================================================ +18:59:41 Slot Id : <365> +18:59:41 Transaction Type : REQUEST +18:59:41 Received From : +18:59:41 ============================================================================ +18:59:41 FNo. Len. Field Value +18:59:41 ============================================================================ +18:59:41 [ 1] [ 4] [0800] +18:59:41 [ 7] [ 10] [0321021128] +18:59:41 [ 11] [ 6] [191128] +18:59:41 [ 37] [ 12] [57919191128] +18:59:41 [ 70] [ 3] [301] +18:59:41 ============================================================================ +18:59:41 + + +waiting on router queue for slot.... +18:59:41 Sending to : +18:59:41 ============================================================================ +18:59:41 ============================================================================ +18:59:41 Slot Id : <365> +18:59:41 Transaction Type : RESPONSE +18:59:41 Received From : +18:59:41 ============================================================================ +18:59:41 FNo. Len. Field Value +18:59:41 ============================================================================ +18:59:41 [ 1] [ 4] [0810] +18:59:41 [ 7] [ 10] [0321021128] +18:59:41 [ 11] [ 6] [191128] +18:59:41 [ 37] [ 12] [579191911280] +18:59:41 [ 39] [ 2] [00] +18:59:41 [ 70] [ 3] [810] +18:59:41 ============================================================================ +18:59:41 Calculate Source COMM Id = 6 +18:59:41 ============================================================================ +18:59:41 + + +waiting on router queue for slot.... +18:59:47 ============================================================================ +18:59:47 Slot Id : <356> +18:59:47 Transaction Type : REQUEST +18:59:47 Received From : +18:59:47 ============================================================================ +18:59:47 FNo. Len. Field Value +18:59:47 ============================================================================ +18:59:47 [ 1] [ 4] [0200] +18:59:47 [ 2] [ 16] [6688990102658109] +18:59:47 [ 3] [ 6] [301000] +18:59:47 [ 7] [ 10] [0320115852] +18:59:47 [ 11] [ 6] [271356] +18:59:47 [ 12] [ 6] [185852] +18:59:47 [ 13] [ 4] [0320] +18:59:47 [ 14] [ 4] [4209] +18:59:47 [ 15] [ 4] [0320] +18:59:47 [ 18] [ 4] [6011] +18:59:47 [ 19] [ 3] [418] +18:59:47 [ 22] [ 3] [021] +18:59:47 [ 25] [ 2] [01] +18:59:47 [ 32] [ 6] [180893] +18:59:47 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:59:47 [ 37] [ 12] [507911271356] +18:59:47 [ 41] [ 8] [0529LPBF] +18:59:47 [ 42] [ 15] [999999 ] +18:59:47 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +18:59:47 [ 49] [ 3] [418] +18:59:47 [ 52] [ 16] [21228FF6FBB04369] +18:59:47 ============================================================================ +18:59:47 + + +waiting on router queue for slot.... +18:59:47 Sending to : +18:59:47 ============================================================================ +18:59:47 Sending to : +18:59:47 ============================================================================ +18:59:47 ============================================================================ +18:59:47 Slot Id : <356> +18:59:47 Transaction Type : REQUEST +18:59:47 Received From : +18:59:47 ============================================================================ +18:59:47 FNo. Len. Field Value +18:59:47 ============================================================================ +18:59:47 [ 1] [ 4] [0200] +18:59:47 [ 2] [ 16] [6688990102658109] +18:59:47 [ 3] [ 6] [301000] +18:59:47 [ 7] [ 10] [0320115852] +18:59:47 [ 11] [ 6] [271356] +18:59:47 [ 12] [ 6] [185852] +18:59:47 [ 13] [ 4] [0320] +18:59:47 [ 14] [ 4] [4209] +18:59:47 [ 15] [ 4] [0320] +18:59:47 [ 18] [ 4] [6011] +18:59:47 [ 19] [ 3] [418] +18:59:47 [ 22] [ 3] [021] +18:59:47 [ 25] [ 2] [01] +18:59:47 [ 32] [ 6] [180893] +18:59:47 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:59:47 [ 37] [ 12] [507911271356] +18:59:47 [ 41] [ 8] [0529LPBF] +18:59:47 [ 42] [ 15] [999999 ] +18:59:47 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +18:59:47 [ 49] [ 3] [418] +18:59:47 [ 52] [ 16] [21228FF6FBB04369] +18:59:47 ============================================================================ +18:59:47 + + +waiting on router queue for slot.... +18:59:47 Sending to : +18:59:47 ============================================================================ +18:59:47 ============================================================================ +18:59:47 Slot Id : <356> +18:59:47 Transaction Type : REQUEST +18:59:47 Received From : +18:59:47 ============================================================================ +18:59:47 FNo. Len. Field Value +18:59:47 ============================================================================ +18:59:47 [ 1] [ 4] [0200] +18:59:47 [ 2] [ 16] [6688990102658109] +18:59:47 [ 3] [ 6] [301000] +18:59:47 [ 7] [ 10] [0320115852] +18:59:47 [ 11] [ 6] [271356] +18:59:47 [ 12] [ 6] [185852] +18:59:47 [ 13] [ 4] [0320] +18:59:47 [ 14] [ 4] [4209] +18:59:47 [ 15] [ 4] [0320] +18:59:47 [ 18] [ 4] [6011] +18:59:47 [ 19] [ 3] [418] +18:59:47 [ 22] [ 3] [021] +18:59:47 [ 25] [ 2] [01] +18:59:47 [ 32] [ 6] [180893] +18:59:47 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:59:47 [ 37] [ 12] [507911271356] +18:59:47 [ 41] [ 8] [0529LPBF] +18:59:47 [ 42] [ 15] [999999 ] +18:59:47 [ 43] [ 40] [ATM FINANCE DEVISION LUANGPRABANG, Luang] +18:59:47 [ 49] [ 3] [418] +18:59:47 [ 52] [ 16] [9A7CECD3276AE487] +18:59:47 ============================================================================ +18:59:47 + + +waiting on router queue for slot.... +18:59:47 Sending to : <0> +18:59:47 ============================================================================ +18:59:47 ============================================================================ +18:59:47 Slot Id : <356> +18:59:47 Transaction Type : RESPONSE +18:59:47 Received From : +18:59:47 ============================================================================ +18:59:47 FNo. Len. Field Value +18:59:47 ============================================================================ +18:59:47 [ 1] [ 4] [0210] +18:59:47 [ 2] [ 16] [6688990102658109] +18:59:47 [ 3] [ 6] [301000] +18:59:47 [ 4] [ 12] [000000000000] +18:59:47 [ 7] [ 10] [0320115852] +18:59:47 [ 11] [ 6] [271356] +18:59:47 [ 12] [ 6] [185852] +18:59:47 [ 13] [ 4] [0320] +18:59:47 [ 15] [ 4] [0320] +18:59:47 [ 18] [ 4] [6011] +18:59:47 [ 19] [ 3] [418] +18:59:47 [ 22] [ 3] [021] +18:59:47 [ 32] [ 6] [180893] +18:59:47 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:59:47 [ 37] [ 12] [507911271356] +18:59:47 [ 39] [ 2] [14] +18:59:47 [ 41] [ 8] [0529LPBF] +18:59:47 [ 49] [ 3] [418] +18:59:47 ============================================================================ +18:59:47 Sending to : +18:59:47 ============================================================================ +18:59:47 + + +waiting on router queue for slot.... +18:59:49 ============================================================================ +18:59:49 Slot Id : <356> +18:59:49 Transaction Type : RESPONSE +18:59:49 Received From : +18:59:49 ============================================================================ +18:59:49 FNo. Len. Field Value +18:59:49 ============================================================================ +18:59:49 [ 1] [ 4] [0210] +18:59:49 [ 2] [ 16] [6688990102658109] +18:59:49 [ 3] [ 6] [301000] +18:59:49 [ 4] [ 12] [000000000000] +18:59:49 [ 7] [ 10] [0320115852] +18:59:49 [ 11] [ 6] [271356] +18:59:49 [ 12] [ 6] [185852] +18:59:49 [ 13] [ 4] [0320] +18:59:49 [ 15] [ 4] [0320] +18:59:49 [ 18] [ 4] [6011] +18:59:49 [ 19] [ 3] [418] +18:59:49 [ 22] [ 3] [021] +18:59:49 [ 32] [ 6] [180893] +18:59:49 [ 35] [ 37] [6688990102658109=42091231810907900000] +18:59:49 [ 37] [ 12] [507911271356] +18:59:49 [ 39] [ 2] [14] +18:59:49 [ 41] [ 8] [0529LPBF] +18:59:49 [ 49] [ 3] [418] +18:59:49 ============================================================================ +18:59:49 Calculate Source COMM Id = 2 +18:59:49 ============================================================================ +18:59:49 + + +waiting on router queue for slot.... +18:59:49 ============================================================================ +18:59:49 Slot Id : <330> +18:59:49 Transaction Type : REQUEST +18:59:49 Received From : +18:59:49 ============================================================================ +18:59:49 FNo. Len. Field Value +18:59:49 ============================================================================ +18:59:49 [ 1] [ 4] [0200] +18:59:49 [ 2] [ 16] [2206990000130104] +18:59:49 [ 3] [ 6] [011000] +18:59:49 [ 4] [ 12] [000050000000] +18:59:49 [ 7] [ 10] [0320185944] +18:59:49 [ 11] [ 6] [832772] +18:59:49 [ 12] [ 6] [185944] +18:59:49 [ 13] [ 4] [0320] +18:59:49 [ 15] [ 4] [0320] +18:59:49 [ 18] [ 4] [6011] +18:59:49 [ 22] [ 3] [900] +18:59:49 [ 25] [ 2] [02] +18:59:49 [ 28] [ 9] [D00002000] +18:59:49 [ 32] [ 6] [621354] +18:59:49 [ 35] [ 32] [2206990000130104=980412610576238] +18:59:49 [ 37] [ 12] [507905057930] +18:59:49 [ 41] [ 8] [03004300] +18:59:49 [ 42] [ 15] [NATIVE ] +18:59:49 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +18:59:49 [ 49] [ 3] [418] +18:59:49 [ 52] [ 16] [AFDB420BFCB418CB] +18:59:49 ============================================================================ +18:59:49 + + +waiting on router queue for slot.... +18:59:49 Sending to : +18:59:49 ============================================================================ +18:59:49 Sending to : +18:59:49 ============================================================================ +18:59:50 ============================================================================ +18:59:50 Slot Id : <330> +18:59:50 Transaction Type : REQUEST +18:59:50 Received From : +18:59:50 ============================================================================ +18:59:50 FNo. Len. Field Value +18:59:50 ============================================================================ +18:59:50 [ 1] [ 4] [0200] +18:59:50 [ 2] [ 16] [2206990000130104] +18:59:50 [ 3] [ 6] [011000] +18:59:50 [ 4] [ 12] [000050000000] +18:59:50 [ 7] [ 10] [0320185944] +18:59:50 [ 11] [ 6] [832772] +18:59:50 [ 12] [ 6] [185944] +18:59:50 [ 13] [ 4] [0320] +18:59:50 [ 15] [ 4] [0320] +18:59:50 [ 18] [ 4] [6011] +18:59:50 [ 22] [ 3] [900] +18:59:50 [ 25] [ 2] [02] +18:59:50 [ 28] [ 9] [D00002000] +18:59:50 [ 32] [ 6] [621354] +18:59:50 [ 35] [ 32] [2206990000130104=980412610576238] +18:59:50 [ 37] [ 12] [507905057930] +18:59:50 [ 41] [ 8] [03004300] +18:59:50 [ 42] [ 15] [NATIVE ] +18:59:50 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +18:59:50 [ 49] [ 3] [418] +18:59:50 [ 52] [ 16] [AFDB420BFCB418CB] +18:59:50 ============================================================================ +18:59:50 + + +waiting on router queue for slot.... +18:59:50 Sending to : +18:59:50 ============================================================================ +18:59:50 ============================================================================ +18:59:50 Slot Id : <330> +18:59:50 Transaction Type : REQUEST +18:59:50 Received From : +18:59:50 ============================================================================ +18:59:50 FNo. Len. Field Value +18:59:50 ============================================================================ +18:59:50 [ 1] [ 4] [0200] +18:59:50 [ 2] [ 16] [2206990000130104] +18:59:50 [ 3] [ 6] [011000] +18:59:50 [ 4] [ 12] [000050000000] +18:59:50 [ 7] [ 10] [0320185944] +18:59:50 [ 11] [ 6] [832772] +18:59:50 [ 12] [ 6] [185944] +18:59:50 [ 13] [ 4] [0320] +18:59:50 [ 15] [ 4] [0320] +18:59:50 [ 18] [ 4] [6011] +18:59:50 [ 22] [ 3] [900] +18:59:50 [ 25] [ 2] [02] +18:59:50 [ 28] [ 9] [D00002000] +18:59:50 [ 32] [ 6] [621354] +18:59:50 [ 35] [ 32] [2206990000130104=980412610576238] +18:59:50 [ 37] [ 12] [507905057930] +18:59:50 [ 41] [ 8] [03004300] +18:59:50 [ 42] [ 15] [NATIVE ] +18:59:50 [ 43] [ 40] [Hongvakan Meuang kaisone Kaisone LAO] +18:59:50 [ 49] [ 3] [418] +18:59:50 [ 52] [ 16] [912452CD5D70E961] +18:59:50 ============================================================================ +18:59:50 + + +waiting on router queue for slot.... +18:59:50 Sending to : <1> +18:59:50 ============================================================================ +18:59:50 ============================================================================ +18:59:50 Slot Id : <330> +18:59:50 Transaction Type : RESPONSE +18:59:50 Received From : +18:59:50 ============================================================================ +18:59:50 FNo. Len. Field Value +18:59:50 ============================================================================ +18:59:50 [ 1] [ 4] [0210] +18:59:50 [ 2] [ 16] [2206990000130104] +18:59:50 [ 3] [ 6] [011000] +18:59:50 [ 4] [ 12] [000050000000] +18:59:50 [ 7] [ 10] [0320185944] +18:59:50 [ 11] [ 6] [832772] +18:59:50 [ 12] [ 6] [185944] +18:59:50 [ 13] [ 4] [0320] +18:59:50 [ 15] [ 4] [0320] +18:59:50 [ 18] [ 4] [6011] +18:59:50 [ 22] [ 3] [900] +18:59:50 [ 32] [ 6] [621354] +18:59:50 [ 35] [ 32] [2206990000130104=980412610576238] +18:59:50 [ 37] [ 12] [507905057930] +18:59:50 [ 39] [ 2] [62] +18:59:50 [ 41] [ 8] [03004300] +18:59:50 [ 49] [ 3] [418] +18:59:50 ============================================================================ +18:59:50 Sending to : +18:59:50 ============================================================================ +18:59:50 + + +waiting on router queue for slot.... +18:59:51 ============================================================================ +18:59:51 Slot Id : <330> +18:59:51 Transaction Type : RESPONSE +18:59:51 Received From : +18:59:51 ============================================================================ +18:59:51 FNo. Len. Field Value +18:59:51 ============================================================================ +18:59:51 [ 1] [ 4] [0210] +18:59:51 [ 2] [ 16] [2206990000130104] +18:59:51 [ 3] [ 6] [011000] +18:59:51 [ 4] [ 12] [000050000000] +18:59:51 [ 7] [ 10] [0320185944] +18:59:51 [ 11] [ 6] [832772] +18:59:51 [ 12] [ 6] [185944] +18:59:51 [ 13] [ 4] [0320] +18:59:51 [ 15] [ 4] [0320] +18:59:51 [ 18] [ 4] [6011] +18:59:51 [ 22] [ 3] [900] +18:59:51 [ 32] [ 6] [621354] +18:59:51 [ 35] [ 32] [2206990000130104=980412610576238] +18:59:51 [ 37] [ 12] [507905057930] +18:59:51 [ 39] [ 2] [62] +18:59:51 [ 41] [ 8] [03004300] +18:59:51 [ 49] [ 3] [418] +18:59:51 ============================================================================ +18:59:51 Calculate Source COMM Id = 0 +18:59:51 ============================================================================ +18:59:51 + + +waiting on router queue for slot.... +18:59:57 ============================================================================ +18:59:57 Slot Id : <378> +18:59:57 Transaction Type : REQUEST +18:59:57 Received From : +18:59:57 ============================================================================ +18:59:57 FNo. Len. Field Value +18:59:57 ============================================================================ +18:59:57 [ 1] [ 4] [0800] +18:59:57 [ 7] [ 10] [0320120742] +18:59:57 [ 11] [ 6] [014820] +18:59:57 [ 37] [ 12] [57919014820] +18:59:57 [ 70] [ 3] [301] +18:59:57 ============================================================================ +18:59:57 + + +waiting on router queue for slot.... +18:59:57 Sending to : +18:59:57 ============================================================================ +18:59:57 ============================================================================ +18:59:57 Slot Id : <378> +18:59:57 Transaction Type : RESPONSE +18:59:57 Received From : +18:59:57 ============================================================================ +18:59:57 FNo. Len. Field Value +18:59:57 ============================================================================ +18:59:57 [ 1] [ 4] [0810] +18:59:57 [ 7] [ 10] [0320120742] +18:59:57 [ 11] [ 6] [014820] +18:59:57 [ 37] [ 12] [579190148200] +18:59:57 [ 39] [ 2] [00] +18:59:57 [ 70] [ 3] [810] +18:59:57 ============================================================================ +18:59:57 Calculate Source COMM Id = 1 +18:59:57 ============================================================================ +18:59:57 + + +waiting on router queue for slot.... +18:59:59 ============================================================================ +18:59:59 Slot Id : <366> +18:59:59 Transaction Type : REQUEST +18:59:59 Received From : +18:59:59 ============================================================================ +18:59:59 FNo. Len. Field Value +18:59:59 ============================================================================ +18:59:59 [ 1] [ 4] [0200] +18:59:59 [ 2] [ 16] [6213541000180284] +18:59:59 [ 3] [ 6] [010000] +18:59:59 [ 4] [ 12] [000100000000] +18:59:59 [ 7] [ 10] [0320190744] +18:59:59 [ 11] [ 6] [223793] +18:59:59 [ 12] [ 6] [190744] +18:59:59 [ 13] [ 4] [0320] +18:59:59 [ 14] [ 4] [4912] +18:59:59 [ 15] [ 4] [0320] +18:59:59 [ 18] [ 4] [6011] +18:59:59 [ 22] [ 3] [900] +18:59:59 [ 25] [ 2] [02] +18:59:59 [ 28] [ 9] [D00002000] +18:59:59 [ 32] [ 6] [220699] +18:59:59 [ 35] [ 32] [6213541000180284=491212018028258] +18:59:59 [ 37] [ 12] [507900118805] +18:59:59 [ 41] [ 8] [01001100] +18:59:59 [ 42] [ 15] [APTRA ] +18:59:59 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +18:59:59 [ 49] [ 3] [418] +18:59:59 [ 52] [ 16] [D45D24D627AC62B9] +18:59:59 ============================================================================ +18:59:59 + + +waiting on router queue for slot.... +18:59:59 Sending to : +18:59:59 ============================================================================ +18:59:59 Sending to : +18:59:59 ============================================================================ +19:00:00 ============================================================================ +19:00:00 Slot Id : <371> +19:00:00 Transaction Type : REQUEST +19:00:00 Received From : +19:00:00 ============================================================================ +19:00:00 FNo. Len. Field Value +19:00:00 ============================================================================ +19:00:00 [ 1] [ 4] [0800] +19:00:00 [ 7] [ 10] [0320115906] +19:00:00 [ 11] [ 6] [157834] +19:00:00 [ 70] [ 3] [301] +19:00:00 ============================================================================ +19:00:00 + + +waiting on router queue for slot.... +19:00:00 Sending to : +19:00:00 ============================================================================ +19:00:00 ============================================================================ +19:00:00 Slot Id : <371> +19:00:00 Transaction Type : RESPONSE +19:00:00 Received From : +19:00:00 ============================================================================ +19:00:00 FNo. Len. Field Value +19:00:00 ============================================================================ +19:00:00 [ 1] [ 4] [0810] +19:00:00 [ 7] [ 10] [0320115906] +19:00:00 [ 11] [ 6] [157834] +19:00:00 [ 39] [ 2] [00] +19:00:00 [ 70] [ 3] [301] +19:00:00 ============================================================================ +19:00:00 Calculate Source COMM Id = 2 +19:00:00 ============================================================================ +19:00:00 + + +waiting on router queue for slot.... +19:00:00 ============================================================================ +19:00:00 Slot Id : <366> +19:00:00 Transaction Type : REQUEST +19:00:00 Received From : +19:00:00 ============================================================================ +19:00:00 FNo. Len. Field Value +19:00:00 ============================================================================ +19:00:00 [ 1] [ 4] [0200] +19:00:00 [ 2] [ 16] [6213541000180284] +19:00:00 [ 3] [ 6] [010000] +19:00:00 [ 4] [ 12] [000100000000] +19:00:00 [ 7] [ 10] [0320190744] +19:00:00 [ 11] [ 6] [223793] +19:00:00 [ 12] [ 6] [190744] +19:00:00 [ 13] [ 4] [0320] +19:00:00 [ 14] [ 4] [4912] +19:00:00 [ 15] [ 4] [0320] +19:00:00 [ 18] [ 4] [6011] +19:00:00 [ 22] [ 3] [900] +19:00:00 [ 25] [ 2] [02] +19:00:00 [ 28] [ 9] [D00002000] +19:00:00 [ 32] [ 6] [220699] +19:00:00 [ 35] [ 32] [6213541000180284=491212018028258] +19:00:00 [ 37] [ 12] [507900118805] +19:00:00 [ 41] [ 8] [01001100] +19:00:00 [ 42] [ 15] [APTRA ] +19:00:00 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:00:00 [ 49] [ 3] [418] +19:00:00 [ 52] [ 16] [D45D24D627AC62B9] +19:00:00 ============================================================================ +19:00:00 + + +waiting on router queue for slot.... +19:00:00 Sending to : +19:00:00 ============================================================================ +19:00:00 ============================================================================ +19:00:00 Slot Id : <366> +19:00:00 Transaction Type : REQUEST +19:00:00 Received From : +19:00:00 ============================================================================ +19:00:00 FNo. Len. Field Value +19:00:00 ============================================================================ +19:00:00 [ 1] [ 4] [0200] +19:00:00 [ 2] [ 16] [6213541000180284] +19:00:00 [ 3] [ 6] [010000] +19:00:00 [ 4] [ 12] [000100000000] +19:00:00 [ 7] [ 10] [0320190744] +19:00:00 [ 11] [ 6] [223793] +19:00:00 [ 12] [ 6] [190744] +19:00:00 [ 13] [ 4] [0320] +19:00:00 [ 14] [ 4] [4912] +19:00:00 [ 15] [ 4] [0320] +19:00:00 [ 18] [ 4] [6011] +19:00:00 [ 22] [ 3] [900] +19:00:00 [ 25] [ 2] [02] +19:00:00 [ 28] [ 9] [D00002000] +19:00:00 [ 32] [ 6] [220699] +19:00:00 [ 35] [ 32] [6213541000180284=491212018028258] +19:00:00 [ 37] [ 12] [507900118805] +19:00:00 [ 41] [ 8] [01001100] +19:00:00 [ 42] [ 15] [APTRA ] +19:00:00 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:00:00 [ 49] [ 3] [418] +19:00:00 [ 52] [ 16] [136C13398DB8D429] +19:00:00 ============================================================================ +19:00:00 + + +waiting on router queue for slot.... +19:00:00 Sending to : <0> +19:00:00 ============================================================================ +19:00:00 ============================================================================ +19:00:00 Slot Id : <366> +19:00:00 Transaction Type : RESPONSE +19:00:00 Received From : +19:00:00 ============================================================================ +19:00:00 FNo. Len. Field Value +19:00:00 ============================================================================ +19:00:00 [ 1] [ 4] [0210] +19:00:00 [ 2] [ 16] [6213541000180284] +19:00:00 [ 3] [ 6] [010000] +19:00:00 [ 4] [ 12] [000100000000] +19:00:00 [ 7] [ 10] [0320190744] +19:00:00 [ 11] [ 6] [223793] +19:00:00 [ 12] [ 6] [190744] +19:00:00 [ 13] [ 4] [0320] +19:00:00 [ 15] [ 4] [0320] +19:00:00 [ 18] [ 4] [6011] +19:00:00 [ 32] [ 6] [220699] +19:00:00 [ 35] [ 32] [6213541000180284=491212018028258] +19:00:00 [ 37] [ 12] [507900118805] +19:00:00 [ 38] [ 6] [057402] +19:00:00 [ 39] [ 2] [00] +19:00:00 [ 41] [ 8] [01001100] +19:00:00 [ 49] [ 3] [418] +19:00:00 [ 54] [ 40] [0001418C0001236558220002418C000123655822] +19:00:00 ============================================================================ +19:00:00 Sending to : +19:00:00 ============================================================================ +19:00:00 + + +waiting on router queue for slot.... +19:00:02 ============================================================================ +19:00:02 Slot Id : <366> +19:00:02 Transaction Type : RESPONSE +19:00:02 Received From : +19:00:02 ============================================================================ +19:00:02 FNo. Len. Field Value +19:00:02 ============================================================================ +19:00:02 [ 1] [ 4] [0210] +19:00:02 [ 2] [ 16] [6213541000180284] +19:00:02 [ 3] [ 6] [010000] +19:00:02 [ 4] [ 12] [000100000000] +19:00:02 [ 7] [ 10] [0320190744] +19:00:02 [ 11] [ 6] [223793] +19:00:02 [ 12] [ 6] [190744] +19:00:02 [ 13] [ 4] [0320] +19:00:02 [ 15] [ 4] [0320] +19:00:02 [ 18] [ 4] [6011] +19:00:02 [ 32] [ 6] [220699] +19:00:02 [ 35] [ 32] [6213541000180284=491212018028258] +19:00:02 [ 37] [ 12] [507900118805] +19:00:02 [ 38] [ 6] [057402] +19:00:02 [ 39] [ 2] [00] +19:00:02 [ 41] [ 8] [01001100] +19:00:02 [ 49] [ 3] [418] +19:00:02 [ 54] [ 40] [0001418C0001236558220002418C000123655822] +19:00:02 ============================================================================ +19:00:02 Calculate Source COMM Id = 1 +19:00:02 ============================================================================ +19:00:02 + + +waiting on router queue for slot.... +19:00:11 ============================================================================ +19:00:11 Slot Id : <313> +19:00:11 Transaction Type : REQUEST +19:00:11 Received From : +19:00:11 ============================================================================ +19:00:11 FNo. Len. Field Value +19:00:11 ============================================================================ +19:00:11 [ 1] [ 4] [0800] +19:00:11 [ 7] [ 10] [0320115917] +19:00:11 [ 11] [ 6] [157835] +19:00:11 [ 70] [ 3] [301] +19:00:11 ============================================================================ +19:00:11 + + +waiting on router queue for slot.... +19:00:11 Sending to : +19:00:11 ============================================================================ +19:00:11 ============================================================================ +19:00:11 Slot Id : <313> +19:00:11 Transaction Type : RESPONSE +19:00:11 Received From : +19:00:11 ============================================================================ +19:00:11 FNo. Len. Field Value +19:00:11 ============================================================================ +19:00:11 [ 1] [ 4] [0810] +19:00:11 [ 7] [ 10] [0320115917] +19:00:11 [ 11] [ 6] [157835] +19:00:11 [ 39] [ 2] [00] +19:00:11 [ 70] [ 3] [301] +19:00:11 ============================================================================ +19:00:11 Calculate Source COMM Id = 2 +19:00:11 ============================================================================ +19:00:11 + + +waiting on router queue for slot.... +19:00:12 ============================================================================ +19:00:12 Slot Id : <343> +19:00:12 Transaction Type : REQUEST +19:00:12 Received From : +19:00:12 ============================================================================ +19:00:12 FNo. Len. Field Value +19:00:12 ============================================================================ +19:00:12 [ 1] [ 4] [0200] +19:00:12 [ 2] [ 16] [6688990108391309] +19:00:12 [ 3] [ 6] [303000] +19:00:12 [ 4] [ 12] [000000000000] +19:00:12 [ 7] [ 10] [0320190006] +19:00:12 [ 11] [ 6] [832840] +19:00:12 [ 12] [ 6] [190006] +19:00:12 [ 13] [ 4] [0320] +19:00:12 [ 15] [ 4] [0320] +19:00:12 [ 18] [ 4] [6011] +19:00:12 [ 22] [ 3] [900] +19:00:12 [ 25] [ 2] [02] +19:00:12 [ 28] [ 9] [D00000000] +19:00:12 [ 32] [ 6] [621354] +19:00:12 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:00:12 [ 37] [ 12] [507904725071] +19:00:12 [ 41] [ 8] [18001100] +19:00:12 [ 42] [ 15] [NATIVE ] +19:00:12 [ 43] [ 40] [Ban Naxong May LAO] +19:00:12 [ 49] [ 3] [418] +19:00:12 [ 52] [ 16] [A89681AFA37812C7] +19:00:12 ============================================================================ +19:00:12 + + +waiting on router queue for slot.... +19:00:12 Sending to : +19:00:12 ============================================================================ +19:00:12 Sending to : +19:00:12 ============================================================================ +19:00:12 ============================================================================ +19:00:12 Slot Id : <343> +19:00:12 Transaction Type : REQUEST +19:00:12 Received From : +19:00:12 ============================================================================ +19:00:12 FNo. Len. Field Value +19:00:12 ============================================================================ +19:00:12 [ 1] [ 4] [0200] +19:00:12 [ 2] [ 16] [6688990108391309] +19:00:12 [ 3] [ 6] [303000] +19:00:12 [ 4] [ 12] [000000000000] +19:00:12 [ 7] [ 10] [0320190006] +19:00:12 [ 11] [ 6] [832840] +19:00:12 [ 12] [ 6] [190006] +19:00:12 [ 13] [ 4] [0320] +19:00:12 [ 15] [ 4] [0320] +19:00:12 [ 18] [ 4] [6011] +19:00:12 [ 22] [ 3] [900] +19:00:12 [ 25] [ 2] [02] +19:00:12 [ 28] [ 9] [D00000000] +19:00:12 [ 32] [ 6] [621354] +19:00:12 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:00:12 [ 37] [ 12] [507904725071] +19:00:12 [ 41] [ 8] [18001100] +19:00:12 [ 42] [ 15] [NATIVE ] +19:00:12 [ 43] [ 40] [Ban Naxong May LAO] +19:00:12 [ 49] [ 3] [418] +19:00:12 [ 52] [ 16] [A89681AFA37812C7] +19:00:12 ============================================================================ +19:00:12 + + +waiting on router queue for slot.... +19:00:12 Sending to : +19:00:12 ============================================================================ +19:00:12 ============================================================================ +19:00:12 Slot Id : <343> +19:00:12 Transaction Type : REQUEST +19:00:12 Received From : +19:00:12 ============================================================================ +19:00:12 FNo. Len. Field Value +19:00:12 ============================================================================ +19:00:12 [ 1] [ 4] [0200] +19:00:12 [ 2] [ 16] [6688990108391309] +19:00:12 [ 3] [ 6] [303000] +19:00:12 [ 4] [ 12] [000000000000] +19:00:12 [ 7] [ 10] [0320190006] +19:00:12 [ 11] [ 6] [832840] +19:00:12 [ 12] [ 6] [190006] +19:00:12 [ 13] [ 4] [0320] +19:00:12 [ 15] [ 4] [0320] +19:00:12 [ 18] [ 4] [6011] +19:00:12 [ 22] [ 3] [900] +19:00:12 [ 25] [ 2] [02] +19:00:12 [ 28] [ 9] [D00000000] +19:00:12 [ 32] [ 6] [621354] +19:00:12 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:00:12 [ 37] [ 12] [507904725071] +19:00:12 [ 41] [ 8] [18001100] +19:00:12 [ 42] [ 15] [NATIVE ] +19:00:12 [ 43] [ 40] [Ban Naxong May LAO] +19:00:12 [ 49] [ 3] [418] +19:00:12 [ 52] [ 16] [9E5CF70EF701E05A] +19:00:12 ============================================================================ +19:00:12 + + +waiting on router queue for slot.... +19:00:12 Sending to : <4> +19:00:12 ============================================================================ +19:00:13 ============================================================================ +19:00:13 Slot Id : <343> +19:00:13 Transaction Type : RESPONSE +19:00:13 Received From : +19:00:13 ============================================================================ +19:00:13 FNo. Len. Field Value +19:00:13 ============================================================================ +19:00:13 [ 1] [ 4] [0210] +19:00:13 [ 2] [ 16] [6688990108391309] +19:00:13 [ 3] [ 6] [303000] +19:00:13 [ 4] [ 12] [000000000000] +19:00:13 [ 11] [ 6] [832840] +19:00:13 [ 12] [ 6] [190006] +19:00:13 [ 15] [ 4] [0320] +19:00:13 [ 18] [ 4] [6011] +19:00:13 [ 32] [ 6] [621354] +19:00:13 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:00:13 [ 37] [ 12] [507904725071] +19:00:13 [ 38] [ 6] [901170] +19:00:13 [ 39] [ 2] [00] +19:00:13 [ 41] [ 8] [18001100] +19:00:13 [ 49] [ 3] [418] +19:00:13 [ 54] [ 20] [3002418C000588975104] +19:00:13 ============================================================================ +19:00:13 Sending to : +19:00:13 ============================================================================ +19:00:13 + + +waiting on router queue for slot.... +19:00:15 ============================================================================ +19:00:15 Slot Id : <343> +19:00:15 Transaction Type : RESPONSE +19:00:15 Received From : +19:00:15 ============================================================================ +19:00:15 FNo. Len. Field Value +19:00:15 ============================================================================ +19:00:15 [ 1] [ 4] [0210] +19:00:15 [ 2] [ 16] [6688990108391309] +19:00:15 [ 3] [ 6] [303000] +19:00:15 [ 4] [ 12] [000000000000] +19:00:15 [ 11] [ 6] [832840] +19:00:15 [ 12] [ 6] [190006] +19:00:15 [ 15] [ 4] [0320] +19:00:15 [ 18] [ 4] [6011] +19:00:15 [ 32] [ 6] [621354] +19:00:15 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:00:15 [ 37] [ 12] [507904725071] +19:00:15 [ 38] [ 6] [901170] +19:00:15 [ 39] [ 2] [00] +19:00:15 [ 41] [ 8] [18001100] +19:00:15 [ 49] [ 3] [418] +19:00:15 [ 54] [ 20] [3002418C000588975104] +19:00:15 ============================================================================ +19:00:15 Calculate Source COMM Id = 0 +19:00:15 ============================================================================ +19:00:15 + + +waiting on router queue for slot.... +19:00:18 ============================================================================ +19:00:18 Slot Id : <373> +19:00:18 Transaction Type : REQUEST +19:00:18 Received From : +19:00:18 ============================================================================ +19:00:18 FNo. Len. Field Value +19:00:18 ============================================================================ +19:00:18 [ 1] [ 4] [0200] +19:00:18 [ 2] [ 16] [6688990105148306] +19:00:18 [ 3] [ 6] [011000] +19:00:18 [ 4] [ 12] [000015000000] +19:00:18 [ 7] [ 10] [0320190038] +19:00:18 [ 11] [ 6] [210852] +19:00:18 [ 12] [ 6] [065848] +19:00:18 [ 13] [ 4] [0320] +19:00:18 [ 14] [ 4] [4307] +19:00:18 [ 15] [ 4] [0320] +19:00:18 [ 18] [ 4] [6011] +19:00:18 [ 19] [ 3] [418] +19:00:18 [ 22] [ 3] [021] +19:00:18 [ 25] [ 2] [01] +19:00:18 [ 28] [ 9] [D00002000] +19:00:18 [ 32] [ 6] [198901] +19:00:18 [ 35] [ 37] [6688990105148306=43071231830681200000] +19:00:18 [ 37] [ 12] [507919210852] +19:00:18 [ 41] [ 8] [01529031] +19:00:18 [ 42] [ 15] [000000041529031] +19:00:18 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +19:00:18 [ 49] [ 3] [418] +19:00:18 [ 52] [ 16] [285789380D38C5E9] +19:00:18 ============================================================================ +19:00:18 + + +waiting on router queue for slot.... +19:00:18 Sending to : +19:00:18 ============================================================================ +19:00:18 Sending to : +19:00:18 ============================================================================ +19:00:18 ============================================================================ +19:00:18 Slot Id : <373> +19:00:18 Transaction Type : REQUEST +19:00:18 Received From : +19:00:18 ============================================================================ +19:00:18 FNo. Len. Field Value +19:00:18 ============================================================================ +19:00:18 [ 1] [ 4] [0200] +19:00:18 [ 2] [ 16] [6688990105148306] +19:00:18 [ 3] [ 6] [011000] +19:00:18 [ 4] [ 12] [000015000000] +19:00:18 [ 7] [ 10] [0320190038] +19:00:18 [ 11] [ 6] [210852] +19:00:18 [ 12] [ 6] [065848] +19:00:18 [ 13] [ 4] [0320] +19:00:18 [ 14] [ 4] [4307] +19:00:18 [ 15] [ 4] [0320] +19:00:18 [ 18] [ 4] [6011] +19:00:18 [ 19] [ 3] [418] +19:00:18 [ 22] [ 3] [021] +19:00:18 [ 25] [ 2] [01] +19:00:18 [ 28] [ 9] [D00002000] +19:00:18 [ 32] [ 6] [198901] +19:00:18 [ 35] [ 37] [6688990105148306=43071231830681200000] +19:00:18 [ 37] [ 12] [507919210852] +19:00:18 [ 41] [ 8] [01529031] +19:00:18 [ 42] [ 15] [000000041529031] +19:00:18 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +19:00:18 [ 49] [ 3] [418] +19:00:18 [ 52] [ 16] [285789380D38C5E9] +19:00:18 ============================================================================ +19:00:18 + + +waiting on router queue for slot.... +19:00:18 Sending to : +19:00:18 ============================================================================ +19:00:18 ============================================================================ +19:00:18 Slot Id : <373> +19:00:18 Transaction Type : REQUEST +19:00:18 Received From : +19:00:18 ============================================================================ +19:00:18 FNo. Len. Field Value +19:00:18 ============================================================================ +19:00:18 [ 1] [ 4] [0200] +19:00:18 [ 2] [ 16] [6688990105148306] +19:00:18 [ 3] [ 6] [011000] +19:00:18 [ 4] [ 12] [000015000000] +19:00:18 [ 7] [ 10] [0320190038] +19:00:18 [ 11] [ 6] [210852] +19:00:18 [ 12] [ 6] [065848] +19:00:18 [ 13] [ 4] [0320] +19:00:18 [ 14] [ 4] [4307] +19:00:18 [ 15] [ 4] [0320] +19:00:18 [ 18] [ 4] [6011] +19:00:18 [ 19] [ 3] [418] +19:00:18 [ 22] [ 3] [021] +19:00:18 [ 25] [ 2] [01] +19:00:18 [ 28] [ 9] [D00002000] +19:00:18 [ 32] [ 6] [198901] +19:00:18 [ 35] [ 37] [6688990105148306=43071231830681200000] +19:00:18 [ 37] [ 12] [507919210852] +19:00:18 [ 41] [ 8] [01529031] +19:00:18 [ 42] [ 15] [000000041529031] +19:00:18 [ 43] [ 40] [JDB ATM VT DONG DOK BS VN ] +19:00:18 [ 49] [ 3] [418] +19:00:18 [ 52] [ 16] [D9EB5CB82469407D] +19:00:18 ============================================================================ +19:00:18 + + +waiting on router queue for slot.... +19:00:18 Sending to : <4> +19:00:18 ============================================================================ +19:00:20 ============================================================================ +19:00:20 Slot Id : <345> +19:00:20 Transaction Type : REQUEST +19:00:20 Received From : +19:00:20 ============================================================================ +19:00:20 FNo. Len. Field Value +19:00:20 ============================================================================ +19:00:20 [ 1] [ 4] [0200] +19:00:20 [ 2] [ 16] [6688990600863607] +19:00:20 [ 3] [ 6] [010000] +19:00:20 [ 4] [ 12] [000100000000] +19:00:20 [ 7] [ 10] [0320115925] +19:00:20 [ 11] [ 6] [271358] +19:00:20 [ 12] [ 6] [185925] +19:00:20 [ 13] [ 4] [0320] +19:00:20 [ 14] [ 4] [4102] +19:00:20 [ 15] [ 4] [0320] +19:00:20 [ 18] [ 4] [6011] +19:00:20 [ 19] [ 3] [418] +19:00:20 [ 22] [ 3] [021] +19:00:20 [ 25] [ 2] [01] +19:00:20 [ 28] [ 9] [D00002000] +19:00:20 [ 32] [ 6] [180893] +19:00:20 [ 35] [ 37] [6688990600863607=41020061360796700000] +19:00:20 [ 37] [ 12] [507911271358] +19:00:20 [ 41] [ 8] [0526XYHS] +19:00:20 [ 42] [ 15] [999999 ] +19:00:20 [ 43] [ 40] [ATM HONGSA LOCATION, Hongsa, Lao People ] +19:00:20 [ 49] [ 3] [418] +19:00:20 [ 52] [ 16] [3567178BA573343E] +19:00:20 ============================================================================ +19:00:20 + + +waiting on router queue for slot.... +19:00:20 Sending to : +19:00:20 ============================================================================ +19:00:20 Sending to : +19:00:20 ============================================================================ +19:00:20 ============================================================================ +19:00:20 Slot Id : <373> +19:00:20 Transaction Type : RESPONSE +19:00:20 Received From : +19:00:20 ============================================================================ +19:00:20 FNo. Len. Field Value +19:00:20 ============================================================================ +19:00:20 [ 1] [ 4] [0210] +19:00:20 [ 2] [ 16] [6688990105148306] +19:00:20 [ 3] [ 6] [011000] +19:00:20 [ 4] [ 12] [000015000000] +19:00:20 [ 11] [ 6] [210852] +19:00:20 [ 12] [ 6] [065848] +19:00:20 [ 15] [ 4] [0320] +19:00:20 [ 18] [ 4] [6011] +19:00:20 [ 32] [ 6] [198901] +19:00:20 [ 35] [ 37] [6688990105148306=43071231830681200000] +19:00:20 [ 37] [ 12] [507919210852] +19:00:20 [ 38] [ 6] [078362] +19:00:20 [ 39] [ 2] [00] +19:00:20 [ 41] [ 8] [01529031] +19:00:20 [ 49] [ 3] [418] +19:00:20 [ 54] [ 20] [1002418C000130156507] +19:00:20 ============================================================================ +19:00:20 Sending to : +19:00:20 ============================================================================ +19:00:20 + + +waiting on router queue for slot.... +19:00:20 ============================================================================ +19:00:20 Slot Id : <345> +19:00:20 Transaction Type : REQUEST +19:00:20 Received From : +19:00:20 ============================================================================ +19:00:20 FNo. Len. Field Value +19:00:20 ============================================================================ +19:00:20 [ 1] [ 4] [0200] +19:00:20 [ 2] [ 16] [6688990600863607] +19:00:20 [ 3] [ 6] [010000] +19:00:20 [ 4] [ 12] [000100000000] +19:00:20 [ 7] [ 10] [0320115925] +19:00:20 [ 11] [ 6] [271358] +19:00:20 [ 12] [ 6] [185925] +19:00:20 [ 13] [ 4] [0320] +19:00:20 [ 14] [ 4] [4102] +19:00:20 [ 15] [ 4] [0320] +19:00:20 [ 18] [ 4] [6011] +19:00:20 [ 19] [ 3] [418] +19:00:20 [ 22] [ 3] [021] +19:00:20 [ 25] [ 2] [01] +19:00:20 [ 28] [ 9] [D00002000] +19:00:20 [ 32] [ 6] [180893] +19:00:20 [ 35] [ 37] [6688990600863607=41020061360796700000] +19:00:20 [ 37] [ 12] [507911271358] +19:00:20 [ 41] [ 8] [0526XYHS] +19:00:20 [ 42] [ 15] [999999 ] +19:00:20 [ 43] [ 40] [ATM HONGSA LOCATION, Hongsa, Lao People ] +19:00:20 [ 49] [ 3] [418] +19:00:20 [ 52] [ 16] [3567178BA573343E] +19:00:20 ============================================================================ +19:00:20 + + +waiting on router queue for slot.... +19:00:20 Sending to : +19:00:20 ============================================================================ +19:00:20 ============================================================================ +19:00:20 Slot Id : <345> +19:00:20 Transaction Type : REQUEST +19:00:20 Received From : +19:00:20 ============================================================================ +19:00:20 FNo. Len. Field Value +19:00:20 ============================================================================ +19:00:20 [ 1] [ 4] [0200] +19:00:20 [ 2] [ 16] [6688990600863607] +19:00:20 [ 3] [ 6] [010000] +19:00:20 [ 4] [ 12] [000100000000] +19:00:20 [ 7] [ 10] [0320115925] +19:00:20 [ 11] [ 6] [271358] +19:00:20 [ 12] [ 6] [185925] +19:00:20 [ 13] [ 4] [0320] +19:00:20 [ 14] [ 4] [4102] +19:00:20 [ 15] [ 4] [0320] +19:00:20 [ 18] [ 4] [6011] +19:00:20 [ 19] [ 3] [418] +19:00:20 [ 22] [ 3] [021] +19:00:20 [ 25] [ 2] [01] +19:00:20 [ 28] [ 9] [D00002000] +19:00:20 [ 32] [ 6] [180893] +19:00:20 [ 35] [ 37] [6688990600863607=41020061360796700000] +19:00:20 [ 37] [ 12] [507911271358] +19:00:20 [ 41] [ 8] [0526XYHS] +19:00:20 [ 42] [ 15] [999999 ] +19:00:20 [ 43] [ 40] [ATM HONGSA LOCATION, Hongsa, Lao People ] +19:00:20 [ 49] [ 3] [418] +19:00:20 [ 52] [ 16] [EFE465DCA034A014] +19:00:20 ============================================================================ +19:00:20 + + +waiting on router queue for slot.... +19:00:20 Sending to : <0> +19:00:20 ============================================================================ +19:00:20 ============================================================================ +19:00:20 Slot Id : <345> +19:00:20 Transaction Type : RESPONSE +19:00:20 Received From : +19:00:20 ============================================================================ +19:00:20 FNo. Len. Field Value +19:00:20 ============================================================================ +19:00:20 [ 1] [ 4] [0210] +19:00:20 [ 2] [ 16] [6688990600863607] +19:00:20 [ 3] [ 6] [010000] +19:00:20 [ 4] [ 12] [000100000000] +19:00:20 [ 7] [ 10] [0320115925] +19:00:20 [ 11] [ 6] [271358] +19:00:20 [ 12] [ 6] [185925] +19:00:20 [ 13] [ 4] [0320] +19:00:20 [ 15] [ 4] [0320] +19:00:20 [ 18] [ 4] [6011] +19:00:20 [ 19] [ 3] [418] +19:00:20 [ 22] [ 3] [021] +19:00:20 [ 32] [ 6] [180893] +19:00:20 [ 35] [ 37] [6688990600863607=41020061360796700000] +19:00:20 [ 37] [ 12] [507911271358] +19:00:20 [ 39] [ 2] [14] +19:00:20 [ 41] [ 8] [0526XYHS] +19:00:20 [ 49] [ 3] [418] +19:00:20 ============================================================================ +19:00:20 Sending to : +19:00:20 ============================================================================ +19:00:20 + + +waiting on router queue for slot.... +19:00:21 ============================================================================ +19:00:21 Slot Id : <373> +19:00:21 Transaction Type : RESPONSE +19:00:21 Received From : +19:00:21 ============================================================================ +19:00:21 FNo. Len. Field Value +19:00:21 ============================================================================ +19:00:21 [ 1] [ 4] [0210] +19:00:21 [ 2] [ 16] [6688990105148306] +19:00:21 [ 3] [ 6] [011000] +19:00:21 [ 4] [ 12] [000015000000] +19:00:21 [ 11] [ 6] [210852] +19:00:21 [ 12] [ 6] [065848] +19:00:21 [ 15] [ 4] [0320] +19:00:21 [ 18] [ 4] [6011] +19:00:21 [ 32] [ 6] [198901] +19:00:21 [ 35] [ 37] [6688990105148306=43071231830681200000] +19:00:21 [ 37] [ 12] [507919210852] +19:00:21 [ 38] [ 6] [078362] +19:00:21 [ 39] [ 2] [00] +19:00:21 [ 41] [ 8] [01529031] +19:00:21 [ 49] [ 3] [418] +19:00:21 [ 54] [ 20] [1002418C000130156507] +19:00:21 ============================================================================ +19:00:21 Calculate Source COMM Id = 5 +19:00:21 ============================================================================ +19:00:21 + + +waiting on router queue for slot.... +19:00:21 ============================================================================ +19:00:21 Slot Id : <340> +19:00:21 Transaction Type : REQUEST +19:00:21 Received From : +19:00:21 ============================================================================ +19:00:21 FNo. Len. Field Value +19:00:21 ============================================================================ +19:00:21 [ 1] [ 4] [0800] +19:00:21 [ 7] [ 10] [0320115928] +19:00:21 [ 11] [ 6] [157836] +19:00:21 [ 70] [ 3] [301] +19:00:21 ============================================================================ +19:00:21 + + +waiting on router queue for slot.... +19:00:21 Sending to : +19:00:21 ============================================================================ +19:00:21 ============================================================================ +19:00:21 Slot Id : <340> +19:00:21 Transaction Type : RESPONSE +19:00:21 Received From : +19:00:21 ============================================================================ +19:00:21 FNo. Len. Field Value +19:00:21 ============================================================================ +19:00:21 [ 1] [ 4] [0810] +19:00:21 [ 7] [ 10] [0320115928] +19:00:21 [ 11] [ 6] [157836] +19:00:21 [ 39] [ 2] [00] +19:00:21 [ 70] [ 3] [301] +19:00:21 ============================================================================ +19:00:21 Calculate Source COMM Id = 2 +19:00:21 ============================================================================ +19:00:21 + + +waiting on router queue for slot.... +19:00:23 ============================================================================ +19:00:23 Slot Id : <345> +19:00:23 Transaction Type : RESPONSE +19:00:23 Received From : +19:00:23 ============================================================================ +19:00:23 FNo. Len. Field Value +19:00:23 ============================================================================ +19:00:23 [ 1] [ 4] [0210] +19:00:23 [ 2] [ 16] [6688990600863607] +19:00:23 [ 3] [ 6] [010000] +19:00:23 [ 4] [ 12] [000100000000] +19:00:23 [ 7] [ 10] [0320115925] +19:00:23 [ 11] [ 6] [271358] +19:00:23 [ 12] [ 6] [185925] +19:00:23 [ 13] [ 4] [0320] +19:00:23 [ 15] [ 4] [0320] +19:00:23 [ 18] [ 4] [6011] +19:00:23 [ 19] [ 3] [418] +19:00:23 [ 22] [ 3] [021] +19:00:23 [ 32] [ 6] [180893] +19:00:23 [ 35] [ 37] [6688990600863607=41020061360796700000] +19:00:23 [ 37] [ 12] [507911271358] +19:00:23 [ 39] [ 2] [14] +19:00:23 [ 41] [ 8] [0526XYHS] +19:00:23 [ 49] [ 3] [418] +19:00:23 ============================================================================ +19:00:23 Calculate Source COMM Id = 2 +19:00:23 ============================================================================ +19:00:23 + + +waiting on router queue for slot.... +19:00:25 ============================================================================ +19:00:25 Slot Id : <324> +19:00:25 Transaction Type : REQUEST +19:00:25 Received From : +19:00:25 ============================================================================ +19:00:25 FNo. Len. Field Value +19:00:25 ============================================================================ +19:00:25 [ 1] [ 4] [0800] +19:00:25 [ 2] [ 5] [02531] +19:00:25 [ 3] [ 6] [579198] +19:00:25 [ 7] [ 10] [0320120025] +19:00:25 [ 11] [ 6] [807515] +19:00:25 [ 15] [ 10] [0320120025] +19:00:25 [ 37] [ 11] [57919807515] +19:00:25 [ 70] [ 3] [001] +19:00:25 ============================================================================ +19:00:25 + + +waiting on router queue for slot.... +19:00:25 ============================================================================ +19:00:25 Slot Id : <324> +19:00:25 Transaction Type : RESPONSE +19:00:25 Received From : +19:00:25 ============================================================================ +19:00:25 FNo. Len. Field Value +19:00:25 ============================================================================ +19:00:25 [ 1] [ 4] [0810] +19:00:25 [ 7] [ 10] [0320120025] +19:00:25 [ 11] [ 6] [807515] +19:00:25 [ 15] [ 4] [0320] +19:00:25 [ 37] [ 12] [57919807515] +19:00:25 [ 39] [ 2] [00] +19:00:25 [ 70] [ 3] [001] +19:00:25 ============================================================================ +19:00:25 Sending to : +19:00:25 ============================================================================ +19:00:25 + + +waiting on router queue for slot.... +19:00:33 ============================================================================ +19:00:33 Slot Id : <353> +19:00:33 Transaction Type : REQUEST +19:00:33 Received From : +19:00:33 ============================================================================ +19:00:33 FNo. Len. Field Value +19:00:33 ============================================================================ +19:00:33 [ 1] [ 4] [0800] +19:00:33 [ 7] [ 10] [0320115939] +19:00:33 [ 11] [ 6] [157837] +19:00:33 [ 70] [ 3] [301] +19:00:33 ============================================================================ +19:00:33 + + +waiting on router queue for slot.... +19:00:33 Sending to : +19:00:33 ============================================================================ +19:00:33 ============================================================================ +19:00:33 Slot Id : <353> +19:00:33 Transaction Type : RESPONSE +19:00:33 Received From : +19:00:33 ============================================================================ +19:00:33 FNo. Len. Field Value +19:00:33 ============================================================================ +19:00:33 [ 1] [ 4] [0810] +19:00:33 [ 7] [ 10] [0320115939] +19:00:33 [ 11] [ 6] [157837] +19:00:33 [ 39] [ 2] [00] +19:00:33 [ 70] [ 3] [301] +19:00:33 ============================================================================ +19:00:33 Calculate Source COMM Id = 2 +19:00:33 ============================================================================ +19:00:33 + + +waiting on router queue for slot.... +19:00:34 ============================================================================ +19:00:34 Slot Id : <382> +19:00:34 Transaction Type : REQUEST +19:00:34 Received From : +19:00:34 ============================================================================ +19:00:34 FNo. Len. Field Value +19:00:34 ============================================================================ +19:00:34 [ 1] [ 4] [0200] +19:00:34 [ 2] [ 16] [2206990000131318] +19:00:34 [ 3] [ 6] [010000] +19:00:34 [ 4] [ 12] [000030000000] +19:00:34 [ 7] [ 10] [0320190029] +19:00:34 [ 11] [ 6] [832891] +19:00:34 [ 12] [ 6] [190029] +19:00:34 [ 13] [ 4] [0320] +19:00:34 [ 15] [ 4] [0320] +19:00:34 [ 18] [ 4] [6011] +19:00:34 [ 22] [ 3] [900] +19:00:34 [ 25] [ 2] [02] +19:00:34 [ 28] [ 9] [D00002000] +19:00:34 [ 32] [ 6] [621354] +19:00:34 [ 35] [ 32] [2206990000131318=980412616090787] +19:00:34 [ 37] [ 12] [507903684193] +19:00:34 [ 41] [ 8] [01008800] +19:00:34 [ 42] [ 15] [NATIVE ] +19:00:34 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +19:00:34 [ 49] [ 3] [418] +19:00:34 [ 52] [ 16] [5A736436049A7F2D] +19:00:34 ============================================================================ +19:00:34 + + +waiting on router queue for slot.... +19:00:34 Sending to : +19:00:34 ============================================================================ +19:00:34 Sending to : +19:00:34 ============================================================================ +19:00:35 ============================================================================ +19:00:35 Slot Id : <382> +19:00:35 Transaction Type : REQUEST +19:00:35 Received From : +19:00:35 ============================================================================ +19:00:35 FNo. Len. Field Value +19:00:35 ============================================================================ +19:00:35 [ 1] [ 4] [0200] +19:00:35 [ 2] [ 16] [2206990000131318] +19:00:35 [ 3] [ 6] [010000] +19:00:35 [ 4] [ 12] [000030000000] +19:00:35 [ 7] [ 10] [0320190029] +19:00:35 [ 11] [ 6] [832891] +19:00:35 [ 12] [ 6] [190029] +19:00:35 [ 13] [ 4] [0320] +19:00:35 [ 15] [ 4] [0320] +19:00:35 [ 18] [ 4] [6011] +19:00:35 [ 22] [ 3] [900] +19:00:35 [ 25] [ 2] [02] +19:00:35 [ 28] [ 9] [D00002000] +19:00:35 [ 32] [ 6] [621354] +19:00:35 [ 35] [ 32] [2206990000131318=980412616090787] +19:00:35 [ 37] [ 12] [507903684193] +19:00:35 [ 41] [ 8] [01008800] +19:00:35 [ 42] [ 15] [NATIVE ] +19:00:35 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +19:00:35 [ 49] [ 3] [418] +19:00:35 [ 52] [ 16] [5A736436049A7F2D] +19:00:35 ============================================================================ +19:00:35 + + +waiting on router queue for slot.... +19:00:35 Sending to : +19:00:35 ============================================================================ +19:00:35 ============================================================================ +19:00:35 Slot Id : <382> +19:00:35 Transaction Type : REQUEST +19:00:35 Received From : +19:00:35 ============================================================================ +19:00:35 FNo. Len. Field Value +19:00:35 ============================================================================ +19:00:35 [ 1] [ 4] [0200] +19:00:35 [ 2] [ 16] [2206990000131318] +19:00:35 [ 3] [ 6] [010000] +19:00:35 [ 4] [ 12] [000030000000] +19:00:35 [ 7] [ 10] [0320190029] +19:00:35 [ 11] [ 6] [832891] +19:00:35 [ 12] [ 6] [190029] +19:00:35 [ 13] [ 4] [0320] +19:00:35 [ 15] [ 4] [0320] +19:00:35 [ 18] [ 4] [6011] +19:00:35 [ 22] [ 3] [900] +19:00:35 [ 25] [ 2] [02] +19:00:35 [ 28] [ 9] [D00002000] +19:00:35 [ 32] [ 6] [621354] +19:00:35 [ 35] [ 32] [2206990000131318=980412616090787] +19:00:35 [ 37] [ 12] [507903684193] +19:00:35 [ 41] [ 8] [01008800] +19:00:35 [ 42] [ 15] [NATIVE ] +19:00:35 [ 43] [ 40] [Lao Women Union ChanthaboulyLAO] +19:00:35 [ 49] [ 3] [418] +19:00:35 [ 52] [ 16] [5F26734E124C10C8] +19:00:35 ============================================================================ +19:00:35 + + +waiting on router queue for slot.... +19:00:35 Sending to : <1> +19:00:35 ============================================================================ +19:00:37 ============================================================================ +19:00:37 Slot Id : <382> +19:00:37 Transaction Type : RESPONSE +19:00:37 Received From : +19:00:37 ============================================================================ +19:00:37 FNo. Len. Field Value +19:00:37 ============================================================================ +19:00:37 [ 1] [ 4] [0210] +19:00:37 [ 2] [ 16] [2206990000131318] +19:00:37 [ 3] [ 6] [010000] +19:00:37 [ 4] [ 12] [000030000000] +19:00:37 [ 7] [ 10] [0320190029] +19:00:37 [ 11] [ 6] [832891] +19:00:37 [ 12] [ 6] [190029] +19:00:37 [ 13] [ 4] [0320] +19:00:37 [ 15] [ 4] [0320] +19:00:37 [ 18] [ 4] [6011] +19:00:37 [ 32] [ 6] [621354] +19:00:37 [ 35] [ 32] [2206990000131318=980412616090787] +19:00:37 [ 37] [ 12] [507903684193] +19:00:37 [ 38] [ 6] [148070] +19:00:37 [ 39] [ 2] [00] +19:00:37 [ 41] [ 8] [01008800] +19:00:37 [ 49] [ 3] [418] +19:00:37 [ 54] [ 40] [0001418C0005001031000002418C000500103100] +19:00:37 ============================================================================ +19:00:37 Sending to : +19:00:37 ============================================================================ +19:00:37 + + +waiting on router queue for slot.... +19:00:39 ============================================================================ +19:00:39 Slot Id : <382> +19:00:39 Transaction Type : RESPONSE +19:00:39 Received From : +19:00:39 ============================================================================ +19:00:39 FNo. Len. Field Value +19:00:39 ============================================================================ +19:00:39 [ 1] [ 4] [0210] +19:00:39 [ 2] [ 16] [2206990000131318] +19:00:39 [ 3] [ 6] [010000] +19:00:39 [ 4] [ 12] [000030000000] +19:00:39 [ 7] [ 10] [0320190029] +19:00:39 [ 11] [ 6] [832891] +19:00:39 [ 12] [ 6] [190029] +19:00:39 [ 13] [ 4] [0320] +19:00:39 [ 15] [ 4] [0320] +19:00:39 [ 18] [ 4] [6011] +19:00:39 [ 32] [ 6] [621354] +19:00:39 [ 35] [ 32] [2206990000131318=980412616090787] +19:00:39 [ 37] [ 12] [507903684193] +19:00:39 [ 38] [ 6] [148070] +19:00:39 [ 39] [ 2] [00] +19:00:39 [ 41] [ 8] [01008800] +19:00:39 [ 49] [ 3] [418] +19:00:39 [ 54] [ 40] [0001418C0005001031000002418C000500103100] +19:00:39 ============================================================================ +19:00:39 Calculate Source COMM Id = 0 +19:00:39 ============================================================================ +19:00:39 + + +waiting on router queue for slot.... +19:00:44 ============================================================================ +19:00:44 Slot Id : <363> +19:00:44 Transaction Type : REQUEST +19:00:44 Received From : +19:00:44 ============================================================================ +19:00:44 FNo. Len. Field Value +19:00:44 ============================================================================ +19:00:44 [ 1] [ 4] [0800] +19:00:44 [ 7] [ 10] [0320115951] +19:00:44 [ 11] [ 6] [157838] +19:00:44 [ 70] [ 3] [301] +19:00:44 ============================================================================ +19:00:44 + + +waiting on router queue for slot.... +19:00:44 Sending to : +19:00:44 ============================================================================ +19:00:44 ============================================================================ +19:00:44 Slot Id : <363> +19:00:44 Transaction Type : RESPONSE +19:00:44 Received From : +19:00:44 ============================================================================ +19:00:44 FNo. Len. Field Value +19:00:44 ============================================================================ +19:00:44 [ 1] [ 4] [0810] +19:00:44 [ 7] [ 10] [0320115951] +19:00:44 [ 11] [ 6] [157838] +19:00:44 [ 39] [ 2] [00] +19:00:44 [ 70] [ 3] [301] +19:00:44 ============================================================================ +19:00:44 Calculate Source COMM Id = 2 +19:00:44 ============================================================================ +19:00:44 + + +waiting on router queue for slot.... +19:00:46 ============================================================================ +19:00:46 Slot Id : <344> +19:00:46 Transaction Type : REQUEST +19:00:46 Received From : +19:00:46 ============================================================================ +19:00:46 FNo. Len. Field Value +19:00:46 ============================================================================ +19:00:46 [ 1] [ 4] [0800] +19:00:46 [ 7] [ 10] [0321021233] +19:00:46 [ 11] [ 6] [191233] +19:00:46 [ 37] [ 12] [57919191233] +19:00:46 [ 70] [ 3] [301] +19:00:46 ============================================================================ +19:00:46 + + +waiting on router queue for slot.... +19:00:46 Sending to : +19:00:46 ============================================================================ +19:00:46 ============================================================================ +19:00:46 Slot Id : <344> +19:00:46 Transaction Type : RESPONSE +19:00:46 Received From : +19:00:46 ============================================================================ +19:00:46 FNo. Len. Field Value +19:00:46 ============================================================================ +19:00:46 [ 1] [ 4] [0810] +19:00:46 [ 7] [ 10] [0321021233] +19:00:46 [ 11] [ 6] [191233] +19:00:46 [ 37] [ 12] [579191912330] +19:00:46 [ 39] [ 2] [00] +19:00:46 [ 70] [ 3] [810] +19:00:46 ============================================================================ +19:00:46 Calculate Source COMM Id = 6 +19:00:46 ============================================================================ +19:00:46 + + +waiting on router queue for slot.... +19:01:00 ============================================================================ +19:01:00 Slot Id : <355> +19:01:00 Transaction Type : REQUEST +19:01:00 Received From : +19:01:00 ============================================================================ +19:01:00 FNo. Len. Field Value +19:01:00 ============================================================================ +19:01:00 [ 1] [ 4] [0800] +19:01:00 [ 7] [ 10] [0320120007] +19:01:00 [ 11] [ 6] [157839] +19:01:00 [ 70] [ 3] [301] +19:01:00 ============================================================================ +19:01:00 + + +waiting on router queue for slot.... +19:01:00 Sending to : +19:01:00 ============================================================================ +19:01:00 ============================================================================ +19:01:00 Slot Id : <355> +19:01:00 Transaction Type : RESPONSE +19:01:00 Received From : +19:01:00 ============================================================================ +19:01:00 FNo. Len. Field Value +19:01:00 ============================================================================ +19:01:00 [ 1] [ 4] [0810] +19:01:00 [ 7] [ 10] [0320120007] +19:01:00 [ 11] [ 6] [157839] +19:01:00 [ 39] [ 2] [00] +19:01:00 [ 70] [ 3] [301] +19:01:00 ============================================================================ +19:01:00 Calculate Source COMM Id = 2 +19:01:00 ============================================================================ +19:01:00 + + +waiting on router queue for slot.... +19:01:02 ============================================================================ +19:01:02 Slot Id : <370> +19:01:02 Transaction Type : REQUEST +19:01:02 Received From : +19:01:02 ============================================================================ +19:01:02 FNo. Len. Field Value +19:01:02 ============================================================================ +19:01:02 [ 1] [ 4] [0200] +19:01:02 [ 2] [ 16] [6688990108391309] +19:01:02 [ 3] [ 6] [010000] +19:01:02 [ 4] [ 12] [000100000000] +19:01:02 [ 7] [ 10] [0320190057] +19:01:02 [ 11] [ 6] [832972] +19:01:02 [ 12] [ 6] [190057] +19:01:02 [ 13] [ 4] [0320] +19:01:02 [ 15] [ 4] [0320] +19:01:02 [ 18] [ 4] [6011] +19:01:02 [ 22] [ 3] [900] +19:01:02 [ 25] [ 2] [02] +19:01:02 [ 28] [ 9] [D00002000] +19:01:02 [ 32] [ 6] [621354] +19:01:02 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:01:02 [ 37] [ 12] [507904725073] +19:01:02 [ 41] [ 8] [18001100] +19:01:02 [ 42] [ 15] [NATIVE ] +19:01:02 [ 43] [ 40] [Ban Naxong May LAO] +19:01:02 [ 49] [ 3] [418] +19:01:02 [ 52] [ 16] [A89681AFA37812C7] +19:01:02 ============================================================================ +19:01:02 + + +waiting on router queue for slot.... +19:01:02 Sending to : +19:01:02 ============================================================================ +19:01:02 Sending to : +19:01:02 ============================================================================ +19:01:03 ============================================================================ +19:01:03 Slot Id : <370> +19:01:03 Transaction Type : REQUEST +19:01:03 Received From : +19:01:03 ============================================================================ +19:01:03 FNo. Len. Field Value +19:01:03 ============================================================================ +19:01:03 [ 1] [ 4] [0200] +19:01:03 [ 2] [ 16] [6688990108391309] +19:01:03 [ 3] [ 6] [010000] +19:01:03 [ 4] [ 12] [000100000000] +19:01:03 [ 7] [ 10] [0320190057] +19:01:03 [ 11] [ 6] [832972] +19:01:03 [ 12] [ 6] [190057] +19:01:03 [ 13] [ 4] [0320] +19:01:03 [ 15] [ 4] [0320] +19:01:03 [ 18] [ 4] [6011] +19:01:03 [ 22] [ 3] [900] +19:01:03 [ 25] [ 2] [02] +19:01:03 [ 28] [ 9] [D00002000] +19:01:03 [ 32] [ 6] [621354] +19:01:03 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:01:03 [ 37] [ 12] [507904725073] +19:01:03 [ 41] [ 8] [18001100] +19:01:03 [ 42] [ 15] [NATIVE ] +19:01:03 [ 43] [ 40] [Ban Naxong May LAO] +19:01:03 [ 49] [ 3] [418] +19:01:03 [ 52] [ 16] [A89681AFA37812C7] +19:01:03 ============================================================================ +19:01:03 + + +waiting on router queue for slot.... +19:01:03 Sending to : +19:01:03 ============================================================================ +19:01:03 ============================================================================ +19:01:03 Slot Id : <370> +19:01:03 Transaction Type : REQUEST +19:01:03 Received From : +19:01:03 ============================================================================ +19:01:03 FNo. Len. Field Value +19:01:03 ============================================================================ +19:01:03 [ 1] [ 4] [0200] +19:01:03 [ 2] [ 16] [6688990108391309] +19:01:03 [ 3] [ 6] [010000] +19:01:03 [ 4] [ 12] [000100000000] +19:01:03 [ 7] [ 10] [0320190057] +19:01:03 [ 11] [ 6] [832972] +19:01:03 [ 12] [ 6] [190057] +19:01:03 [ 13] [ 4] [0320] +19:01:03 [ 15] [ 4] [0320] +19:01:03 [ 18] [ 4] [6011] +19:01:03 [ 22] [ 3] [900] +19:01:03 [ 25] [ 2] [02] +19:01:03 [ 28] [ 9] [D00002000] +19:01:03 [ 32] [ 6] [621354] +19:01:03 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:01:03 [ 37] [ 12] [507904725073] +19:01:03 [ 41] [ 8] [18001100] +19:01:03 [ 42] [ 15] [NATIVE ] +19:01:03 [ 43] [ 40] [Ban Naxong May LAO] +19:01:03 [ 49] [ 3] [418] +19:01:03 [ 52] [ 16] [9E5CF70EF701E05A] +19:01:03 ============================================================================ +19:01:03 + + +waiting on router queue for slot.... +19:01:03 Sending to : <4> +19:01:03 ============================================================================ +19:01:04 ============================================================================ +19:01:04 Slot Id : <370> +19:01:04 Transaction Type : RESPONSE +19:01:04 Received From : +19:01:04 ============================================================================ +19:01:04 FNo. Len. Field Value +19:01:04 ============================================================================ +19:01:04 [ 1] [ 4] [0210] +19:01:04 [ 2] [ 16] [6688990108391309] +19:01:04 [ 3] [ 6] [010000] +19:01:04 [ 4] [ 12] [000100000000] +19:01:04 [ 11] [ 6] [832972] +19:01:04 [ 12] [ 6] [190057] +19:01:04 [ 15] [ 4] [0320] +19:01:04 [ 18] [ 4] [6011] +19:01:04 [ 32] [ 6] [621354] +19:01:04 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:01:04 [ 37] [ 12] [507904725073] +19:01:04 [ 38] [ 6] [636219] +19:01:04 [ 39] [ 2] [00] +19:01:04 [ 41] [ 8] [18001100] +19:01:04 [ 49] [ 3] [418] +19:01:04 [ 54] [ 20] [0002418C000488775104] +19:01:04 ============================================================================ +19:01:04 Sending to : +19:01:04 ============================================================================ +19:01:04 + + +waiting on router queue for slot.... +19:01:05 ============================================================================ +19:01:05 Slot Id : <370> +19:01:05 Transaction Type : RESPONSE +19:01:05 Received From : +19:01:05 ============================================================================ +19:01:05 FNo. Len. Field Value +19:01:05 ============================================================================ +19:01:05 [ 1] [ 4] [0210] +19:01:05 [ 2] [ 16] [6688990108391309] +19:01:05 [ 3] [ 6] [010000] +19:01:05 [ 4] [ 12] [000100000000] +19:01:05 [ 11] [ 6] [832972] +19:01:05 [ 12] [ 6] [190057] +19:01:05 [ 15] [ 4] [0320] +19:01:05 [ 18] [ 4] [6011] +19:01:05 [ 32] [ 6] [621354] +19:01:05 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:01:05 [ 37] [ 12] [507904725073] +19:01:05 [ 38] [ 6] [636219] +19:01:05 [ 39] [ 2] [00] +19:01:05 [ 41] [ 8] [18001100] +19:01:05 [ 49] [ 3] [418] +19:01:05 [ 54] [ 20] [0002418C000488775104] +19:01:05 ============================================================================ +19:01:05 Calculate Source COMM Id = 0 +19:01:05 ============================================================================ +19:01:05 + + +waiting on router queue for slot.... +19:01:10 ============================================================================ +19:01:10 Slot Id : <358> +19:01:10 Transaction Type : REQUEST +19:01:10 Received From : +19:01:10 ============================================================================ +19:01:10 FNo. Len. Field Value +19:01:10 ============================================================================ +19:01:10 [ 1] [ 4] [0800] +19:01:10 [ 7] [ 10] [0320120017] +19:01:10 [ 11] [ 6] [157840] +19:01:10 [ 70] [ 3] [301] +19:01:10 ============================================================================ +19:01:10 + + +waiting on router queue for slot.... +19:01:10 Sending to : +19:01:10 ============================================================================ +19:01:10 ============================================================================ +19:01:10 Slot Id : <358> +19:01:10 Transaction Type : RESPONSE +19:01:10 Received From : +19:01:10 ============================================================================ +19:01:10 FNo. Len. Field Value +19:01:10 ============================================================================ +19:01:10 [ 1] [ 4] [0810] +19:01:10 [ 7] [ 10] [0320120017] +19:01:10 [ 11] [ 6] [157840] +19:01:10 [ 39] [ 2] [00] +19:01:10 [ 70] [ 3] [301] +19:01:10 ============================================================================ +19:01:10 Calculate Source COMM Id = 2 +19:01:10 ============================================================================ +19:01:10 + + +waiting on router queue for slot.... +19:01:12 ============================================================================ +19:01:12 Slot Id : <379> +19:01:12 Transaction Type : REQUEST +19:01:12 Received From : +19:01:12 ============================================================================ +19:01:12 FNo. Len. Field Value +19:01:12 ============================================================================ +19:01:12 [ 1] [ 4] [0200] +19:01:12 [ 2] [ 16] [6688990105946402] +19:01:12 [ 3] [ 6] [010000] +19:01:12 [ 4] [ 12] [000010000000] +19:01:12 [ 7] [ 10] [0320120018] +19:01:12 [ 11] [ 6] [271361] +19:01:12 [ 12] [ 6] [190018] +19:01:12 [ 13] [ 4] [0320] +19:01:12 [ 14] [ 4] [4311] +19:01:12 [ 15] [ 4] [0320] +19:01:12 [ 18] [ 4] [6011] +19:01:12 [ 19] [ 3] [418] +19:01:12 [ 22] [ 3] [021] +19:01:12 [ 25] [ 2] [01] +19:01:12 [ 28] [ 9] [D00002000] +19:01:12 [ 32] [ 6] [180893] +19:01:12 [ 35] [ 37] [6688990105946402=43111231640235100000] +19:01:12 [ 37] [ 12] [507912271361] +19:01:12 [ 41] [ 8] [0102SAPA] +19:01:12 [ 42] [ 15] [999999 ] +19:01:12 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +19:01:12 [ 49] [ 3] [418] +19:01:12 [ 52] [ 16] [0029C12F121FDB3F] +19:01:12 ============================================================================ +19:01:12 + + +waiting on router queue for slot.... +19:01:12 Sending to : +19:01:12 ============================================================================ +19:01:12 Sending to : +19:01:12 ============================================================================ +19:01:13 ============================================================================ +19:01:13 Slot Id : <379> +19:01:13 Transaction Type : REQUEST +19:01:13 Received From : +19:01:13 ============================================================================ +19:01:13 FNo. Len. Field Value +19:01:13 ============================================================================ +19:01:13 [ 1] [ 4] [0200] +19:01:13 [ 2] [ 16] [6688990105946402] +19:01:13 [ 3] [ 6] [010000] +19:01:13 [ 4] [ 12] [000010000000] +19:01:13 [ 7] [ 10] [0320120018] +19:01:13 [ 11] [ 6] [271361] +19:01:13 [ 12] [ 6] [190018] +19:01:13 [ 13] [ 4] [0320] +19:01:13 [ 14] [ 4] [4311] +19:01:13 [ 15] [ 4] [0320] +19:01:13 [ 18] [ 4] [6011] +19:01:13 [ 19] [ 3] [418] +19:01:13 [ 22] [ 3] [021] +19:01:13 [ 25] [ 2] [01] +19:01:13 [ 28] [ 9] [D00002000] +19:01:13 [ 32] [ 6] [180893] +19:01:13 [ 35] [ 37] [6688990105946402=43111231640235100000] +19:01:13 [ 37] [ 12] [507912271361] +19:01:13 [ 41] [ 8] [0102SAPA] +19:01:13 [ 42] [ 15] [999999 ] +19:01:13 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +19:01:13 [ 49] [ 3] [418] +19:01:13 [ 52] [ 16] [0029C12F121FDB3F] +19:01:13 ============================================================================ +19:01:13 + + +waiting on router queue for slot.... +19:01:13 Sending to : +19:01:13 ============================================================================ +19:01:13 ============================================================================ +19:01:13 Slot Id : <379> +19:01:13 Transaction Type : REQUEST +19:01:13 Received From : +19:01:13 ============================================================================ +19:01:13 FNo. Len. Field Value +19:01:13 ============================================================================ +19:01:13 [ 1] [ 4] [0200] +19:01:13 [ 2] [ 16] [6688990105946402] +19:01:13 [ 3] [ 6] [010000] +19:01:13 [ 4] [ 12] [000010000000] +19:01:13 [ 7] [ 10] [0320120018] +19:01:13 [ 11] [ 6] [271361] +19:01:13 [ 12] [ 6] [190018] +19:01:13 [ 13] [ 4] [0320] +19:01:13 [ 14] [ 4] [4311] +19:01:13 [ 15] [ 4] [0320] +19:01:13 [ 18] [ 4] [6011] +19:01:13 [ 19] [ 3] [418] +19:01:13 [ 22] [ 3] [021] +19:01:13 [ 25] [ 2] [01] +19:01:13 [ 28] [ 9] [D00002000] +19:01:13 [ 32] [ 6] [180893] +19:01:13 [ 35] [ 37] [6688990105946402=43111231640235100000] +19:01:13 [ 37] [ 12] [507912271361] +19:01:13 [ 41] [ 8] [0102SAPA] +19:01:13 [ 42] [ 15] [999999 ] +19:01:13 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +19:01:13 [ 49] [ 3] [418] +19:01:13 [ 52] [ 16] [BA0BF54BF2D17B59] +19:01:13 ============================================================================ +19:01:13 + + +waiting on router queue for slot.... +19:01:13 Sending to : <0> +19:01:13 ============================================================================ +19:01:13 ============================================================================ +19:01:13 Slot Id : <379> +19:01:13 Transaction Type : RESPONSE +19:01:13 Received From : +19:01:13 ============================================================================ +19:01:13 FNo. Len. Field Value +19:01:13 ============================================================================ +19:01:13 [ 1] [ 4] [0210] +19:01:13 [ 2] [ 16] [6688990105946402] +19:01:13 [ 3] [ 6] [010000] +19:01:13 [ 4] [ 12] [000010000000] +19:01:13 [ 7] [ 10] [0320120018] +19:01:13 [ 11] [ 6] [271361] +19:01:13 [ 12] [ 6] [190018] +19:01:13 [ 13] [ 4] [0320] +19:01:13 [ 15] [ 4] [0320] +19:01:13 [ 18] [ 4] [6011] +19:01:13 [ 19] [ 3] [418] +19:01:13 [ 22] [ 3] [021] +19:01:13 [ 32] [ 6] [180893] +19:01:13 [ 35] [ 37] [6688990105946402=43111231640235100000] +19:01:13 [ 37] [ 12] [507912271361] +19:01:13 [ 39] [ 2] [14] +19:01:13 [ 41] [ 8] [0102SAPA] +19:01:13 [ 49] [ 3] [418] +19:01:13 ============================================================================ +19:01:13 Sending to : +19:01:13 ============================================================================ +19:01:13 + + +waiting on router queue for slot.... +19:01:14 ============================================================================ +19:01:14 Slot Id : <379> +19:01:14 Transaction Type : RESPONSE +19:01:14 Received From : +19:01:14 ============================================================================ +19:01:14 FNo. Len. Field Value +19:01:14 ============================================================================ +19:01:14 [ 1] [ 4] [0210] +19:01:14 [ 2] [ 16] [6688990105946402] +19:01:14 [ 3] [ 6] [010000] +19:01:14 [ 4] [ 12] [000010000000] +19:01:14 [ 7] [ 10] [0320120018] +19:01:14 [ 11] [ 6] [271361] +19:01:14 [ 12] [ 6] [190018] +19:01:14 [ 13] [ 4] [0320] +19:01:14 [ 15] [ 4] [0320] +19:01:14 [ 18] [ 4] [6011] +19:01:14 [ 19] [ 3] [418] +19:01:14 [ 22] [ 3] [021] +19:01:14 [ 32] [ 6] [180893] +19:01:14 [ 35] [ 37] [6688990105946402=43111231640235100000] +19:01:14 [ 37] [ 12] [507912271361] +19:01:14 [ 39] [ 2] [14] +19:01:14 [ 41] [ 8] [0102SAPA] +19:01:14 [ 49] [ 3] [418] +19:01:14 ============================================================================ +19:01:14 Calculate Source COMM Id = 2 +19:01:14 ============================================================================ +19:01:14 + + +waiting on router queue for slot.... +19:01:22 ============================================================================ +19:01:22 Slot Id : <369> +19:01:22 Transaction Type : REQUEST +19:01:22 Received From : +19:01:22 ============================================================================ +19:01:22 FNo. Len. Field Value +19:01:22 ============================================================================ +19:01:22 [ 1] [ 4] [0800] +19:01:22 [ 7] [ 10] [0320115912] +19:01:22 [ 11] [ 6] [083503] +19:01:22 [ 37] [ 12] [57918083503] +19:01:22 [ 70] [ 3] [301] +19:01:22 ============================================================================ +19:01:22 + + +waiting on router queue for slot.... +19:01:22 Sending to : +19:01:22 ============================================================================ +19:01:22 ============================================================================ +19:01:22 Slot Id : <369> +19:01:22 Transaction Type : RESPONSE +19:01:22 Received From : +19:01:22 ============================================================================ +19:01:22 FNo. Len. Field Value +19:01:22 ============================================================================ +19:01:22 [ 1] [ 4] [0810] +19:01:22 [ 7] [ 10] [0320115912] +19:01:22 [ 11] [ 6] [083503] +19:01:22 [ 37] [ 12] [579180835030] +19:01:22 [ 39] [ 2] [00] +19:01:22 [ 70] [ 3] [810] +19:01:22 ============================================================================ +19:01:22 Calculate Source COMM Id = 4 +19:01:22 ============================================================================ +19:01:22 + + +waiting on router queue for slot.... +19:01:27 ============================================================================ +19:01:27 Slot Id : <360> +19:01:27 Transaction Type : REQUEST +19:01:27 Received From : +19:01:27 ============================================================================ +19:01:27 FNo. Len. Field Value +19:01:27 ============================================================================ +19:01:27 [ 1] [ 4] [0800] +19:01:27 [ 2] [ 5] [02531] +19:01:27 [ 3] [ 6] [579198] +19:01:27 [ 7] [ 10] [0320120127] +19:01:27 [ 11] [ 6] [807516] +19:01:27 [ 15] [ 10] [0320120127] +19:01:27 [ 37] [ 11] [57919807516] +19:01:27 [ 70] [ 3] [001] +19:01:27 ============================================================================ +19:01:27 + + +waiting on router queue for slot.... +19:01:27 ============================================================================ +19:01:27 Slot Id : <360> +19:01:27 Transaction Type : RESPONSE +19:01:27 Received From : +19:01:27 ============================================================================ +19:01:27 FNo. Len. Field Value +19:01:27 ============================================================================ +19:01:27 [ 1] [ 4] [0810] +19:01:27 [ 7] [ 10] [0320120127] +19:01:27 [ 11] [ 6] [807516] +19:01:27 [ 15] [ 4] [0320] +19:01:27 [ 37] [ 12] [57919807516] +19:01:27 [ 39] [ 2] [00] +19:01:27 [ 70] [ 3] [001] +19:01:27 ============================================================================ +19:01:27 Sending to : +19:01:27 ============================================================================ +19:01:27 + + +waiting on router queue for slot.... +19:01:30 ============================================================================ +19:01:30 Slot Id : <338> +19:01:30 Transaction Type : REQUEST +19:01:30 Received From : +19:01:30 ============================================================================ +19:01:30 FNo. Len. Field Value +19:01:30 ============================================================================ +19:01:30 [ 1] [ 4] [0800] +19:01:30 [ 7] [ 10] [0320120037] +19:01:30 [ 11] [ 6] [157841] +19:01:30 [ 70] [ 3] [301] +19:01:30 ============================================================================ +19:01:30 + + +waiting on router queue for slot.... +19:01:30 Sending to : +19:01:30 ============================================================================ +19:01:30 ============================================================================ +19:01:30 Slot Id : <338> +19:01:30 Transaction Type : RESPONSE +19:01:30 Received From : +19:01:30 ============================================================================ +19:01:30 FNo. Len. Field Value +19:01:30 ============================================================================ +19:01:30 [ 1] [ 4] [0810] +19:01:30 [ 7] [ 10] [0320120037] +19:01:30 [ 11] [ 6] [157841] +19:01:30 [ 39] [ 2] [00] +19:01:30 [ 70] [ 3] [301] +19:01:30 ============================================================================ +19:01:30 Calculate Source COMM Id = 2 +19:01:30 ============================================================================ +19:01:30 + + +waiting on router queue for slot.... +19:01:31 ============================================================================ +19:01:31 Slot Id : <354> +19:01:31 Transaction Type : REQUEST +19:01:31 Received From : +19:01:31 ============================================================================ +19:01:31 FNo. Len. Field Value +19:01:31 ============================================================================ +19:01:31 [ 1] [ 4] [0200] +19:01:31 [ 2] [ 16] [6213544001136149] +19:01:31 [ 3] [ 6] [011000] +19:01:31 [ 4] [ 12] [000100000000] +19:01:31 [ 7] [ 10] [0320190151] +19:01:31 [ 11] [ 6] [210874] +19:01:31 [ 12] [ 6] [185558] +19:01:31 [ 13] [ 4] [0320] +19:01:31 [ 14] [ 4] [4912] +19:01:31 [ 15] [ 4] [0320] +19:01:31 [ 18] [ 4] [6011] +19:01:31 [ 19] [ 3] [418] +19:01:31 [ 22] [ 3] [021] +19:01:31 [ 25] [ 2] [01] +19:01:31 [ 28] [ 9] [D00002000] +19:01:31 [ 32] [ 6] [198901] +19:01:31 [ 35] [ 32] [6213544001136149=491212013614767] +19:01:31 [ 37] [ 12] [507919210874] +19:01:31 [ 41] [ 8] [00852900] +19:01:31 [ 42] [ 15] [000000040852900] +19:01:31 [ 43] [ 40] [JDB ATM SAVAN VEGAS1 VN ] +19:01:31 [ 49] [ 3] [418] +19:01:31 [ 52] [ 16] [25DF3DA8F19C2F80] +19:01:31 ============================================================================ +19:01:31 + + +waiting on router queue for slot.... +19:01:31 Sending to : +19:01:31 ============================================================================ +19:01:31 Sending to : +19:01:31 ============================================================================ +19:01:32 ============================================================================ +19:01:32 Slot Id : <354> +19:01:32 Transaction Type : REQUEST +19:01:32 Received From : +19:01:32 ============================================================================ +19:01:32 FNo. Len. Field Value +19:01:32 ============================================================================ +19:01:32 [ 1] [ 4] [0200] +19:01:32 [ 2] [ 16] [6213544001136149] +19:01:32 [ 3] [ 6] [011000] +19:01:32 [ 4] [ 12] [000100000000] +19:01:32 [ 7] [ 10] [0320190151] +19:01:32 [ 11] [ 6] [210874] +19:01:32 [ 12] [ 6] [185558] +19:01:32 [ 13] [ 4] [0320] +19:01:32 [ 14] [ 4] [4912] +19:01:32 [ 15] [ 4] [0320] +19:01:32 [ 18] [ 4] [6011] +19:01:32 [ 19] [ 3] [418] +19:01:32 [ 22] [ 3] [021] +19:01:32 [ 25] [ 2] [01] +19:01:32 [ 28] [ 9] [D00002000] +19:01:32 [ 32] [ 6] [198901] +19:01:32 [ 35] [ 32] [6213544001136149=491212013614767] +19:01:32 [ 37] [ 12] [507919210874] +19:01:32 [ 41] [ 8] [00852900] +19:01:32 [ 42] [ 15] [000000040852900] +19:01:32 [ 43] [ 40] [JDB ATM SAVAN VEGAS1 VN ] +19:01:32 [ 49] [ 3] [418] +19:01:32 [ 52] [ 16] [25DF3DA8F19C2F80] +19:01:32 ============================================================================ +19:01:32 + + +waiting on router queue for slot.... +19:01:32 Sending to : +19:01:32 ============================================================================ +19:01:32 ============================================================================ +19:01:32 Slot Id : <354> +19:01:32 Transaction Type : REQUEST +19:01:32 Received From : +19:01:32 ============================================================================ +19:01:32 FNo. Len. Field Value +19:01:32 ============================================================================ +19:01:32 [ 1] [ 4] [0200] +19:01:32 [ 2] [ 16] [6213544001136149] +19:01:32 [ 3] [ 6] [011000] +19:01:32 [ 4] [ 12] [000100000000] +19:01:32 [ 7] [ 10] [0320190151] +19:01:32 [ 11] [ 6] [210874] +19:01:32 [ 12] [ 6] [185558] +19:01:32 [ 13] [ 4] [0320] +19:01:32 [ 14] [ 4] [4912] +19:01:32 [ 15] [ 4] [0320] +19:01:32 [ 18] [ 4] [6011] +19:01:32 [ 19] [ 3] [418] +19:01:32 [ 22] [ 3] [021] +19:01:32 [ 25] [ 2] [01] +19:01:32 [ 28] [ 9] [D00002000] +19:01:32 [ 32] [ 6] [198901] +19:01:32 [ 35] [ 32] [6213544001136149=491212013614767] +19:01:32 [ 37] [ 12] [507919210874] +19:01:32 [ 41] [ 8] [00852900] +19:01:32 [ 42] [ 15] [000000040852900] +19:01:32 [ 43] [ 40] [JDB ATM SAVAN VEGAS1 VN ] +19:01:32 [ 49] [ 3] [418] +19:01:32 [ 52] [ 16] [66DE7E73D7934A13] +19:01:32 ============================================================================ +19:01:32 + + +waiting on router queue for slot.... +19:01:32 Sending to : <0> +19:01:32 ============================================================================ +19:01:32 ============================================================================ +19:01:32 Slot Id : <354> +19:01:32 Transaction Type : RESPONSE +19:01:32 Received From : +19:01:32 ============================================================================ +19:01:32 FNo. Len. Field Value +19:01:32 ============================================================================ +19:01:32 [ 1] [ 4] [0210] +19:01:32 [ 2] [ 16] [6213544001136149] +19:01:32 [ 3] [ 6] [011000] +19:01:32 [ 4] [ 12] [000100000000] +19:01:32 [ 7] [ 10] [0320190151] +19:01:32 [ 11] [ 6] [210874] +19:01:32 [ 12] [ 6] [185558] +19:01:32 [ 13] [ 4] [0320] +19:01:32 [ 15] [ 4] [0320] +19:01:32 [ 18] [ 4] [6011] +19:01:32 [ 19] [ 3] [418] +19:01:32 [ 32] [ 6] [198901] +19:01:32 [ 35] [ 32] [6213544001136149=491212013614767] +19:01:32 [ 37] [ 12] [507919210874] +19:01:32 [ 38] [ 6] [856496] +19:01:32 [ 39] [ 2] [00] +19:01:32 [ 41] [ 8] [00852900] +19:01:32 [ 49] [ 3] [418] +19:01:32 [ 54] [ 40] [1001418C0004024686181002418C000402468618] +19:01:32 ============================================================================ +19:01:32 Sending to : +19:01:32 ============================================================================ +19:01:32 + + +waiting on router queue for slot.... +19:01:34 ============================================================================ +19:01:34 Slot Id : <354> +19:01:34 Transaction Type : RESPONSE +19:01:34 Received From : +19:01:34 ============================================================================ +19:01:34 FNo. Len. Field Value +19:01:34 ============================================================================ +19:01:34 [ 1] [ 4] [0210] +19:01:34 [ 2] [ 16] [6213544001136149] +19:01:34 [ 3] [ 6] [011000] +19:01:34 [ 4] [ 12] [000100000000] +19:01:34 [ 7] [ 10] [0320190151] +19:01:34 [ 11] [ 6] [210874] +19:01:34 [ 12] [ 6] [185558] +19:01:34 [ 13] [ 4] [0320] +19:01:34 [ 15] [ 4] [0320] +19:01:34 [ 18] [ 4] [6011] +19:01:34 [ 19] [ 3] [418] +19:01:34 [ 32] [ 6] [198901] +19:01:34 [ 35] [ 32] [6213544001136149=491212013614767] +19:01:34 [ 37] [ 12] [507919210874] +19:01:34 [ 38] [ 6] [856496] +19:01:34 [ 39] [ 2] [00] +19:01:34 [ 41] [ 8] [00852900] +19:01:34 [ 49] [ 3] [418] +19:01:34 [ 54] [ 40] [1001418C0004024686181002418C000402468618] +19:01:34 ============================================================================ +19:01:34 Calculate Source COMM Id = 5 +19:01:34 ============================================================================ +19:01:34 + + +waiting on router queue for slot.... +19:01:37 ============================================================================ +19:01:37 Slot Id : <396> +19:01:37 Transaction Type : REQUEST +19:01:37 Received From : +19:01:37 ============================================================================ +19:01:37 FNo. Len. Field Value +19:01:37 ============================================================================ +19:01:37 [ 1] [ 4] [0800] +19:01:37 [ 7] [ 10] [0320120132] +19:01:37 [ 11] [ 6] [010737] +19:01:37 [ 37] [ 12] [507919010737] +19:01:37 [ 70] [ 3] [001] +19:01:37 ============================================================================ +19:01:37 + + +waiting on router queue for slot.... +19:01:37 Sending to : +19:01:37 ============================================================================ +19:01:37 ============================================================================ +19:01:37 Slot Id : <396> +19:01:37 Transaction Type : RESPONSE +19:01:37 Received From : +19:01:37 ============================================================================ +19:01:37 FNo. Len. Field Value +19:01:37 ============================================================================ +19:01:37 [ 1] [ 4] [0810] +19:01:37 [ 7] [ 10] [0320120132] +19:01:37 [ 11] [ 6] [010737] +19:01:37 [ 37] [ 12] [507919010737] +19:01:37 [ 39] [ 2] [00] +19:01:37 [ 70] [ 3] [001] +19:01:37 ============================================================================ +19:01:37 Calculate Source COMM Id = 0 +19:01:37 ============================================================================ +19:01:37 + + +waiting on router queue for slot.... +19:01:41 ============================================================================ +19:01:41 Slot Id : <390> +19:01:41 Transaction Type : REQUEST +19:01:41 Received From : +19:01:41 ============================================================================ +19:01:41 FNo. Len. Field Value +19:01:41 ============================================================================ +19:01:41 [ 1] [ 4] [0800] +19:01:41 [ 7] [ 10] [0320120047] +19:01:41 [ 11] [ 6] [157842] +19:01:41 [ 70] [ 3] [301] +19:01:41 ============================================================================ +19:01:41 + + +waiting on router queue for slot.... +19:01:41 Sending to : +19:01:41 ============================================================================ +19:01:41 ============================================================================ +19:01:41 Slot Id : <390> +19:01:41 Transaction Type : RESPONSE +19:01:41 Received From : +19:01:41 ============================================================================ +19:01:41 FNo. Len. Field Value +19:01:41 ============================================================================ +19:01:41 [ 1] [ 4] [0810] +19:01:41 [ 7] [ 10] [0320120047] +19:01:41 [ 11] [ 6] [157842] +19:01:41 [ 39] [ 2] [00] +19:01:41 [ 70] [ 3] [301] +19:01:41 ============================================================================ +19:01:41 Calculate Source COMM Id = 2 +19:01:41 ============================================================================ +19:01:41 + + +waiting on router queue for slot.... +19:01:44 ============================================================================ +19:01:44 Slot Id : <374> +19:01:44 Transaction Type : REQUEST +19:01:44 Received From : +19:01:44 ============================================================================ +19:01:44 FNo. Len. Field Value +19:01:44 ============================================================================ +19:01:44 [ 1] [ 4] [0200] +19:01:44 [ 2] [ 16] [6213544002283130] +19:01:44 [ 3] [ 6] [010000] +19:01:44 [ 4] [ 12] [000100000000] +19:01:44 [ 7] [ 10] [0320185933] +19:01:44 [ 11] [ 6] [955497] +19:01:44 [ 12] [ 6] [185933] +19:01:44 [ 13] [ 4] [0320] +19:01:44 [ 15] [ 4] [0320] +19:01:44 [ 18] [ 4] [6011] +19:01:44 [ 19] [ 3] [418] +19:01:44 [ 22] [ 3] [021] +19:01:44 [ 25] [ 2] [01] +19:01:44 [ 28] [ 9] [D00002000] +19:01:44 [ 32] [ 6] [668899] +19:01:44 [ 35] [ 32] [6213544002283130=491212018313945] +19:01:44 [ 37] [ 12] [507902488684] +19:01:44 [ 41] [ 8] [03001013] +19:01:44 [ 42] [ 15] [APT ] +19:01:44 [ 43] [ 40] [ VAT CHAN VAT CHAN LAO] +19:01:44 [ 49] [ 3] [418] +19:01:44 [ 52] [ 16] [7C9177BF156A0CA8] +19:01:44 ============================================================================ +19:01:44 + + +waiting on router queue for slot.... +19:01:44 Sending to : +19:01:44 ============================================================================ +19:01:44 Sending to : +19:01:44 ============================================================================ +19:01:44 ============================================================================ +19:01:44 Slot Id : <374> +19:01:44 Transaction Type : REQUEST +19:01:44 Received From : +19:01:44 ============================================================================ +19:01:44 FNo. Len. Field Value +19:01:44 ============================================================================ +19:01:44 [ 1] [ 4] [0200] +19:01:44 [ 2] [ 16] [6213544002283130] +19:01:44 [ 3] [ 6] [010000] +19:01:44 [ 4] [ 12] [000100000000] +19:01:44 [ 7] [ 10] [0320185933] +19:01:44 [ 11] [ 6] [955497] +19:01:44 [ 12] [ 6] [185933] +19:01:44 [ 13] [ 4] [0320] +19:01:44 [ 15] [ 4] [0320] +19:01:44 [ 18] [ 4] [6011] +19:01:44 [ 19] [ 3] [418] +19:01:44 [ 22] [ 3] [021] +19:01:44 [ 25] [ 2] [01] +19:01:44 [ 28] [ 9] [D00002000] +19:01:44 [ 32] [ 6] [668899] +19:01:44 [ 35] [ 32] [6213544002283130=491212018313945] +19:01:44 [ 37] [ 12] [507902488684] +19:01:44 [ 41] [ 8] [03001013] +19:01:44 [ 42] [ 15] [APT ] +19:01:44 [ 43] [ 40] [ VAT CHAN VAT CHAN LAO] +19:01:44 [ 49] [ 3] [418] +19:01:44 [ 52] [ 16] [7C9177BF156A0CA8] +19:01:44 ============================================================================ +19:01:44 + + +waiting on router queue for slot.... +19:01:44 Sending to : +19:01:44 ============================================================================ +19:01:44 ============================================================================ +19:01:44 Slot Id : <374> +19:01:44 Transaction Type : REQUEST +19:01:44 Received From : +19:01:44 ============================================================================ +19:01:44 FNo. Len. Field Value +19:01:44 ============================================================================ +19:01:44 [ 1] [ 4] [0200] +19:01:44 [ 2] [ 16] [6213544002283130] +19:01:44 [ 3] [ 6] [010000] +19:01:44 [ 4] [ 12] [000100000000] +19:01:44 [ 7] [ 10] [0320185933] +19:01:44 [ 11] [ 6] [955497] +19:01:44 [ 12] [ 6] [185933] +19:01:44 [ 13] [ 4] [0320] +19:01:44 [ 15] [ 4] [0320] +19:01:44 [ 18] [ 4] [6011] +19:01:44 [ 19] [ 3] [418] +19:01:44 [ 22] [ 3] [021] +19:01:44 [ 25] [ 2] [01] +19:01:44 [ 28] [ 9] [D00002000] +19:01:44 [ 32] [ 6] [668899] +19:01:44 [ 35] [ 32] [6213544002283130=491212018313945] +19:01:44 [ 37] [ 12] [507902488684] +19:01:44 [ 41] [ 8] [03001013] +19:01:44 [ 42] [ 15] [APT ] +19:01:44 [ 43] [ 40] [ VAT CHAN VAT CHAN LAO] +19:01:44 [ 49] [ 3] [418] +19:01:44 [ 52] [ 16] [1E680E5F468C6409] +19:01:44 ============================================================================ +19:01:44 + + +waiting on router queue for slot.... +19:01:44 Sending to : <0> +19:01:44 ============================================================================ +19:01:45 ============================================================================ +19:01:45 Slot Id : <374> +19:01:45 Transaction Type : RESPONSE +19:01:45 Received From : +19:01:45 ============================================================================ +19:01:45 FNo. Len. Field Value +19:01:45 ============================================================================ +19:01:45 [ 1] [ 4] [0210] +19:01:45 [ 2] [ 16] [6213544002283130] +19:01:45 [ 3] [ 6] [010000] +19:01:45 [ 4] [ 12] [000100000000] +19:01:45 [ 7] [ 10] [0320185933] +19:01:45 [ 11] [ 6] [955497] +19:01:45 [ 12] [ 6] [185933] +19:01:45 [ 13] [ 4] [0320] +19:01:45 [ 15] [ 4] [0320] +19:01:45 [ 18] [ 4] [6011] +19:01:45 [ 19] [ 3] [418] +19:01:45 [ 32] [ 6] [668899] +19:01:45 [ 35] [ 32] [6213544002283130=491212018313945] +19:01:45 [ 37] [ 12] [507902488684] +19:01:45 [ 38] [ 6] [372711] +19:01:45 [ 39] [ 2] [00] +19:01:45 [ 41] [ 8] [03001013] +19:01:45 [ 49] [ 3] [418] +19:01:45 [ 54] [ 40] [0001840C0000000302790002840C000000030279] +19:01:45 ============================================================================ +19:01:45 Sending to : +19:01:45 ============================================================================ +19:01:45 + + +waiting on router queue for slot.... +19:01:46 ============================================================================ +19:01:46 Slot Id : <374> +19:01:46 Transaction Type : RESPONSE +19:01:46 Received From : +19:01:46 ============================================================================ +19:01:46 FNo. Len. Field Value +19:01:46 ============================================================================ +19:01:46 [ 1] [ 4] [0210] +19:01:46 [ 2] [ 16] [6213544002283130] +19:01:46 [ 3] [ 6] [010000] +19:01:46 [ 4] [ 12] [000100000000] +19:01:46 [ 7] [ 10] [0320185933] +19:01:46 [ 11] [ 6] [955497] +19:01:46 [ 12] [ 6] [185933] +19:01:46 [ 13] [ 4] [0320] +19:01:46 [ 15] [ 4] [0320] +19:01:46 [ 18] [ 4] [6011] +19:01:46 [ 19] [ 3] [418] +19:01:46 [ 32] [ 6] [668899] +19:01:46 [ 35] [ 32] [6213544002283130=491212018313945] +19:01:46 [ 37] [ 12] [507902488684] +19:01:46 [ 38] [ 6] [372711] +19:01:46 [ 39] [ 2] [00] +19:01:46 [ 41] [ 8] [03001013] +19:01:46 [ 49] [ 3] [418] +19:01:46 [ 54] [ 40] [0001840C0000000302790002840C000000030279] +19:01:46 ============================================================================ +19:01:46 Calculate Source COMM Id = 4 +19:01:46 ============================================================================ +19:01:46 + + +waiting on router queue for slot.... +19:01:51 ============================================================================ +19:01:51 Slot Id : <361> +19:01:51 Transaction Type : REQUEST +19:01:51 Received From : +19:01:51 ============================================================================ +19:01:51 FNo. Len. Field Value +19:01:51 ============================================================================ +19:01:51 [ 1] [ 4] [0800] +19:01:51 [ 7] [ 10] [0321021338] +19:01:51 [ 11] [ 6] [191338] +19:01:51 [ 37] [ 12] [57919191338] +19:01:51 [ 70] [ 3] [301] +19:01:51 ============================================================================ +19:01:51 + + +waiting on router queue for slot.... +19:01:51 Sending to : +19:01:51 ============================================================================ +19:01:51 ============================================================================ +19:01:51 Slot Id : <361> +19:01:51 Transaction Type : RESPONSE +19:01:51 Received From : +19:01:51 ============================================================================ +19:01:51 FNo. Len. Field Value +19:01:51 ============================================================================ +19:01:51 [ 1] [ 4] [0810] +19:01:51 [ 7] [ 10] [0321021338] +19:01:51 [ 11] [ 6] [191338] +19:01:51 [ 37] [ 12] [579191913380] +19:01:51 [ 39] [ 2] [00] +19:01:51 [ 70] [ 3] [810] +19:01:51 ============================================================================ +19:01:51 Calculate Source COMM Id = 6 +19:01:51 ============================================================================ +19:01:51 + + +waiting on router queue for slot.... +19:01:51 ============================================================================ +19:01:51 Slot Id : <351> +19:01:51 Transaction Type : REQUEST +19:01:51 Received From : +19:01:51 ============================================================================ +19:01:51 FNo. Len. Field Value +19:01:51 ============================================================================ +19:01:51 [ 1] [ 4] [0800] +19:01:51 [ 7] [ 10] [0320120058] +19:01:51 [ 11] [ 6] [157843] +19:01:51 [ 70] [ 3] [301] +19:01:51 ============================================================================ +19:01:51 + + +waiting on router queue for slot.... +19:01:51 Sending to : +19:01:51 ============================================================================ +19:01:51 ============================================================================ +19:01:51 Slot Id : <351> +19:01:51 Transaction Type : RESPONSE +19:01:51 Received From : +19:01:51 ============================================================================ +19:01:51 FNo. Len. Field Value +19:01:51 ============================================================================ +19:01:51 [ 1] [ 4] [0810] +19:01:51 [ 7] [ 10] [0320120058] +19:01:51 [ 11] [ 6] [157843] +19:01:51 [ 39] [ 2] [00] +19:01:51 [ 70] [ 3] [301] +19:01:51 ============================================================================ +19:01:51 Calculate Source COMM Id = 2 +19:01:51 ============================================================================ +19:01:51 + + +waiting on router queue for slot.... +19:02:08 ============================================================================ +19:02:08 Slot Id : <389> +19:02:08 Transaction Type : REQUEST +19:02:08 Received From : +19:02:08 ============================================================================ +19:02:08 FNo. Len. Field Value +19:02:08 ============================================================================ +19:02:08 [ 1] [ 4] [0800] +19:02:08 [ 7] [ 10] [0320120114] +19:02:08 [ 11] [ 6] [157844] +19:02:08 [ 70] [ 3] [301] +19:02:08 ============================================================================ +19:02:08 + + +waiting on router queue for slot.... +19:02:08 Sending to : +19:02:08 ============================================================================ +19:02:08 ============================================================================ +19:02:08 Slot Id : <389> +19:02:08 Transaction Type : RESPONSE +19:02:08 Received From : +19:02:08 ============================================================================ +19:02:08 FNo. Len. Field Value +19:02:08 ============================================================================ +19:02:08 [ 1] [ 4] [0810] +19:02:08 [ 7] [ 10] [0320120114] +19:02:08 [ 11] [ 6] [157844] +19:02:08 [ 39] [ 2] [00] +19:02:08 [ 70] [ 3] [301] +19:02:08 ============================================================================ +19:02:08 Calculate Source COMM Id = 2 +19:02:08 ============================================================================ +19:02:08 + + +waiting on router queue for slot.... +19:02:11 ============================================================================ +19:02:11 Slot Id : <410> +19:02:11 Transaction Type : REQUEST +19:02:11 Received From : +19:02:11 ============================================================================ +19:02:11 FNo. Len. Field Value +19:02:11 ============================================================================ +19:02:11 [ 1] [ 4] [0200] +19:02:11 [ 2] [ 16] [6688990108391309] +19:02:11 [ 3] [ 6] [010000] +19:02:11 [ 4] [ 12] [000100000000] +19:02:11 [ 7] [ 10] [0320190206] +19:02:11 [ 11] [ 6] [833141] +19:02:11 [ 12] [ 6] [190206] +19:02:11 [ 13] [ 4] [0320] +19:02:11 [ 15] [ 4] [0320] +19:02:11 [ 18] [ 4] [6011] +19:02:11 [ 22] [ 3] [900] +19:02:11 [ 25] [ 2] [02] +19:02:11 [ 28] [ 9] [D00002000] +19:02:11 [ 32] [ 6] [621354] +19:02:11 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:02:11 [ 37] [ 12] [507904725075] +19:02:11 [ 41] [ 8] [18001100] +19:02:11 [ 42] [ 15] [NATIVE ] +19:02:11 [ 43] [ 40] [Ban Naxong May LAO] +19:02:11 [ 49] [ 3] [418] +19:02:11 [ 52] [ 16] [A89681AFA37812C7] +19:02:11 ============================================================================ +19:02:11 + + +waiting on router queue for slot.... +19:02:11 Sending to : +19:02:11 ============================================================================ +19:02:11 Sending to : +19:02:11 ============================================================================ +19:02:11 ============================================================================ +19:02:11 Slot Id : <410> +19:02:11 Transaction Type : REQUEST +19:02:11 Received From : +19:02:11 ============================================================================ +19:02:11 FNo. Len. Field Value +19:02:11 ============================================================================ +19:02:11 [ 1] [ 4] [0200] +19:02:11 [ 2] [ 16] [6688990108391309] +19:02:11 [ 3] [ 6] [010000] +19:02:11 [ 4] [ 12] [000100000000] +19:02:11 [ 7] [ 10] [0320190206] +19:02:11 [ 11] [ 6] [833141] +19:02:11 [ 12] [ 6] [190206] +19:02:11 [ 13] [ 4] [0320] +19:02:11 [ 15] [ 4] [0320] +19:02:11 [ 18] [ 4] [6011] +19:02:11 [ 22] [ 3] [900] +19:02:11 [ 25] [ 2] [02] +19:02:11 [ 28] [ 9] [D00002000] +19:02:11 [ 32] [ 6] [621354] +19:02:11 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:02:11 [ 37] [ 12] [507904725075] +19:02:11 [ 41] [ 8] [18001100] +19:02:11 [ 42] [ 15] [NATIVE ] +19:02:11 [ 43] [ 40] [Ban Naxong May LAO] +19:02:11 [ 49] [ 3] [418] +19:02:11 [ 52] [ 16] [A89681AFA37812C7] +19:02:11 ============================================================================ +19:02:11 + + +waiting on router queue for slot.... +19:02:11 Sending to : +19:02:11 ============================================================================ +19:02:11 ============================================================================ +19:02:11 Slot Id : <410> +19:02:11 Transaction Type : REQUEST +19:02:11 Received From : +19:02:11 ============================================================================ +19:02:11 FNo. Len. Field Value +19:02:11 ============================================================================ +19:02:11 [ 1] [ 4] [0200] +19:02:11 [ 2] [ 16] [6688990108391309] +19:02:11 [ 3] [ 6] [010000] +19:02:11 [ 4] [ 12] [000100000000] +19:02:11 [ 7] [ 10] [0320190206] +19:02:11 [ 11] [ 6] [833141] +19:02:11 [ 12] [ 6] [190206] +19:02:11 [ 13] [ 4] [0320] +19:02:11 [ 15] [ 4] [0320] +19:02:11 [ 18] [ 4] [6011] +19:02:11 [ 22] [ 3] [900] +19:02:11 [ 25] [ 2] [02] +19:02:11 [ 28] [ 9] [D00002000] +19:02:11 [ 32] [ 6] [621354] +19:02:11 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:02:11 [ 37] [ 12] [507904725075] +19:02:11 [ 41] [ 8] [18001100] +19:02:11 [ 42] [ 15] [NATIVE ] +19:02:11 [ 43] [ 40] [Ban Naxong May LAO] +19:02:11 [ 49] [ 3] [418] +19:02:11 [ 52] [ 16] [9E5CF70EF701E05A] +19:02:11 ============================================================================ +19:02:11 + + +waiting on router queue for slot.... +19:02:11 Sending to : <4> +19:02:11 ============================================================================ +19:02:13 ============================================================================ +19:02:13 Slot Id : <410> +19:02:13 Transaction Type : RESPONSE +19:02:13 Received From : +19:02:13 ============================================================================ +19:02:13 FNo. Len. Field Value +19:02:13 ============================================================================ +19:02:13 [ 1] [ 4] [0210] +19:02:13 [ 2] [ 16] [6688990108391309] +19:02:13 [ 3] [ 6] [010000] +19:02:13 [ 4] [ 12] [000100000000] +19:02:13 [ 11] [ 6] [833141] +19:02:13 [ 12] [ 6] [190206] +19:02:13 [ 15] [ 4] [0320] +19:02:13 [ 18] [ 4] [6011] +19:02:13 [ 32] [ 6] [621354] +19:02:13 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:02:13 [ 37] [ 12] [507904725075] +19:02:13 [ 38] [ 6] [390430] +19:02:13 [ 39] [ 2] [00] +19:02:13 [ 41] [ 8] [18001100] +19:02:13 [ 49] [ 3] [418] +19:02:13 [ 54] [ 20] [0002418C000388575104] +19:02:13 ============================================================================ +19:02:13 Sending to : +19:02:13 ============================================================================ +19:02:13 + + +waiting on router queue for slot.... +19:02:15 ============================================================================ +19:02:15 Slot Id : <410> +19:02:15 Transaction Type : RESPONSE +19:02:15 Received From : +19:02:15 ============================================================================ +19:02:15 FNo. Len. Field Value +19:02:15 ============================================================================ +19:02:15 [ 1] [ 4] [0210] +19:02:15 [ 2] [ 16] [6688990108391309] +19:02:15 [ 3] [ 6] [010000] +19:02:15 [ 4] [ 12] [000100000000] +19:02:15 [ 11] [ 6] [833141] +19:02:15 [ 12] [ 6] [190206] +19:02:15 [ 15] [ 4] [0320] +19:02:15 [ 18] [ 4] [6011] +19:02:15 [ 32] [ 6] [621354] +19:02:15 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:02:15 [ 37] [ 12] [507904725075] +19:02:15 [ 38] [ 6] [390430] +19:02:15 [ 39] [ 2] [00] +19:02:15 [ 41] [ 8] [18001100] +19:02:15 [ 49] [ 3] [418] +19:02:15 [ 54] [ 20] [0002418C000388575104] +19:02:15 ============================================================================ +19:02:15 Calculate Source COMM Id = 0 +19:02:15 ============================================================================ +19:02:15 + + +waiting on router queue for slot.... +19:02:22 ============================================================================ +19:02:22 Slot Id : <376> +19:02:22 Transaction Type : REQUEST +19:02:22 Received From : +19:02:22 ============================================================================ +19:02:22 FNo. Len. Field Value +19:02:22 ============================================================================ +19:02:22 [ 1] [ 4] [0800] +19:02:22 [ 7] [ 10] [0320120129] +19:02:22 [ 11] [ 6] [157845] +19:02:22 [ 70] [ 3] [301] +19:02:22 ============================================================================ +19:02:22 + + +waiting on router queue for slot.... +19:02:22 Sending to : +19:02:22 ============================================================================ +19:02:22 ============================================================================ +19:02:22 Slot Id : <376> +19:02:22 Transaction Type : RESPONSE +19:02:22 Received From : +19:02:22 ============================================================================ +19:02:22 FNo. Len. Field Value +19:02:22 ============================================================================ +19:02:22 [ 1] [ 4] [0810] +19:02:22 [ 7] [ 10] [0320120129] +19:02:22 [ 11] [ 6] [157845] +19:02:22 [ 39] [ 2] [00] +19:02:22 [ 70] [ 3] [301] +19:02:22 ============================================================================ +19:02:22 Calculate Source COMM Id = 2 +19:02:22 ============================================================================ +19:02:22 + + +waiting on router queue for slot.... +19:02:28 ============================================================================ +19:02:28 Slot Id : <383> +19:02:28 Transaction Type : REQUEST +19:02:28 Received From : +19:02:28 ============================================================================ +19:02:28 FNo. Len. Field Value +19:02:28 ============================================================================ +19:02:28 [ 1] [ 4] [0200] +19:02:28 [ 2] [ 16] [6213541000721822] +19:02:28 [ 3] [ 6] [011000] +19:02:28 [ 4] [ 12] [000100000000] +19:02:28 [ 7] [ 10] [0320191013] +19:02:28 [ 11] [ 6] [306148] +19:02:28 [ 12] [ 6] [191013] +19:02:28 [ 13] [ 4] [0320] +19:02:28 [ 14] [ 4] [4912] +19:02:28 [ 15] [ 4] [0320] +19:02:28 [ 18] [ 4] [6011] +19:02:28 [ 22] [ 3] [900] +19:02:28 [ 25] [ 2] [02] +19:02:28 [ 28] [ 9] [D00002000] +19:02:28 [ 32] [ 6] [220699] +19:02:28 [ 35] [ 32] [6213541000721822=491212012182619] +19:02:28 [ 37] [ 12] [507900079360] +19:02:28 [ 41] [ 8] [01000700] +19:02:28 [ 42] [ 15] [APTRA ] +19:02:28 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:02:28 [ 49] [ 3] [418] +19:02:28 [ 52] [ 16] [66012F128DC2927A] +19:02:28 ============================================================================ +19:02:28 + + +waiting on router queue for slot.... +19:02:28 Sending to : +19:02:28 ============================================================================ +19:02:28 Sending to : +19:02:28 ============================================================================ +19:02:29 ============================================================================ +19:02:29 Slot Id : <383> +19:02:29 Transaction Type : REQUEST +19:02:29 Received From : +19:02:29 ============================================================================ +19:02:29 FNo. Len. Field Value +19:02:29 ============================================================================ +19:02:29 [ 1] [ 4] [0200] +19:02:29 [ 2] [ 16] [6213541000721822] +19:02:29 [ 3] [ 6] [011000] +19:02:29 [ 4] [ 12] [000100000000] +19:02:29 [ 7] [ 10] [0320191013] +19:02:29 [ 11] [ 6] [306148] +19:02:29 [ 12] [ 6] [191013] +19:02:29 [ 13] [ 4] [0320] +19:02:29 [ 14] [ 4] [4912] +19:02:29 [ 15] [ 4] [0320] +19:02:29 [ 18] [ 4] [6011] +19:02:29 [ 22] [ 3] [900] +19:02:29 [ 25] [ 2] [02] +19:02:29 [ 28] [ 9] [D00002000] +19:02:29 [ 32] [ 6] [220699] +19:02:29 [ 35] [ 32] [6213541000721822=491212012182619] +19:02:29 [ 37] [ 12] [507900079360] +19:02:29 [ 41] [ 8] [01000700] +19:02:29 [ 42] [ 15] [APTRA ] +19:02:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:02:29 [ 49] [ 3] [418] +19:02:29 [ 52] [ 16] [66012F128DC2927A] +19:02:29 ============================================================================ +19:02:29 + + +waiting on router queue for slot.... +19:02:29 Sending to : +19:02:29 ============================================================================ +19:02:29 ============================================================================ +19:02:29 Slot Id : <383> +19:02:29 Transaction Type : REQUEST +19:02:29 Received From : +19:02:29 ============================================================================ +19:02:29 FNo. Len. Field Value +19:02:29 ============================================================================ +19:02:29 [ 1] [ 4] [0200] +19:02:29 [ 2] [ 16] [6213541000721822] +19:02:29 [ 3] [ 6] [011000] +19:02:29 [ 4] [ 12] [000100000000] +19:02:29 [ 7] [ 10] [0320191013] +19:02:29 [ 11] [ 6] [306148] +19:02:29 [ 12] [ 6] [191013] +19:02:29 [ 13] [ 4] [0320] +19:02:29 [ 14] [ 4] [4912] +19:02:29 [ 15] [ 4] [0320] +19:02:29 [ 18] [ 4] [6011] +19:02:29 [ 22] [ 3] [900] +19:02:29 [ 25] [ 2] [02] +19:02:29 [ 28] [ 9] [D00002000] +19:02:29 [ 32] [ 6] [220699] +19:02:29 [ 35] [ 32] [6213541000721822=491212012182619] +19:02:29 [ 37] [ 12] [507900079360] +19:02:29 [ 41] [ 8] [01000700] +19:02:29 [ 42] [ 15] [APTRA ] +19:02:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:02:29 [ 49] [ 3] [418] +19:02:29 [ 52] [ 16] [B7B34F763845E5E6] +19:02:29 ============================================================================ +19:02:29 + + +waiting on router queue for slot.... +19:02:29 Sending to : <0> +19:02:29 ============================================================================ +19:02:29 ============================================================================ +19:02:29 Slot Id : <383> +19:02:29 Transaction Type : RESPONSE +19:02:29 Received From : +19:02:29 ============================================================================ +19:02:29 FNo. Len. Field Value +19:02:29 ============================================================================ +19:02:29 [ 1] [ 4] [0210] +19:02:29 [ 2] [ 16] [6213541000721822] +19:02:29 [ 3] [ 6] [011000] +19:02:29 [ 4] [ 12] [000100000000] +19:02:29 [ 7] [ 10] [0320191013] +19:02:29 [ 11] [ 6] [306148] +19:02:29 [ 12] [ 6] [191013] +19:02:29 [ 13] [ 4] [0320] +19:02:29 [ 15] [ 4] [0320] +19:02:29 [ 18] [ 4] [6011] +19:02:29 [ 22] [ 3] [900] +19:02:29 [ 32] [ 6] [220699] +19:02:29 [ 35] [ 32] [6213541000721822=491212012182619] +19:02:29 [ 37] [ 12] [507900079360] +19:02:29 [ 39] [ 2] [05] +19:02:29 [ 41] [ 8] [01000700] +19:02:29 [ 49] [ 3] [418] +19:02:29 ============================================================================ +19:02:29 Sending to : +19:02:29 ============================================================================ +19:02:29 + + +waiting on router queue for slot.... +19:02:29 ============================================================================ +19:02:29 Slot Id : <359> +19:02:29 Transaction Type : REQUEST +19:02:29 Received From : +19:02:29 ============================================================================ +19:02:29 FNo. Len. Field Value +19:02:29 ============================================================================ +19:02:29 [ 1] [ 4] [0800] +19:02:29 [ 2] [ 5] [02531] +19:02:29 [ 3] [ 6] [579198] +19:02:29 [ 7] [ 10] [0320120229] +19:02:29 [ 11] [ 6] [807517] +19:02:29 [ 15] [ 10] [0320120229] +19:02:29 [ 37] [ 11] [57919807517] +19:02:29 [ 70] [ 3] [001] +19:02:29 ============================================================================ +19:02:29 + + +waiting on router queue for slot.... +19:02:29 ============================================================================ +19:02:29 Slot Id : <359> +19:02:29 Transaction Type : RESPONSE +19:02:29 Received From : +19:02:29 ============================================================================ +19:02:29 FNo. Len. Field Value +19:02:29 ============================================================================ +19:02:29 [ 1] [ 4] [0810] +19:02:29 [ 7] [ 10] [0320120229] +19:02:29 [ 11] [ 6] [807517] +19:02:29 [ 15] [ 4] [0320] +19:02:29 [ 37] [ 12] [57919807517] +19:02:29 [ 39] [ 2] [00] +19:02:29 [ 70] [ 3] [001] +19:02:29 ============================================================================ +19:02:29 Sending to : +19:02:29 ============================================================================ +19:02:29 + + +waiting on router queue for slot.... +19:02:30 ============================================================================ +19:02:30 Slot Id : <383> +19:02:30 Transaction Type : RESPONSE +19:02:30 Received From : +19:02:30 ============================================================================ +19:02:30 FNo. Len. Field Value +19:02:30 ============================================================================ +19:02:30 [ 1] [ 4] [0210] +19:02:30 [ 2] [ 16] [6213541000721822] +19:02:30 [ 3] [ 6] [011000] +19:02:30 [ 4] [ 12] [000100000000] +19:02:30 [ 7] [ 10] [0320191013] +19:02:30 [ 11] [ 6] [306148] +19:02:30 [ 12] [ 6] [191013] +19:02:30 [ 13] [ 4] [0320] +19:02:30 [ 15] [ 4] [0320] +19:02:30 [ 18] [ 4] [6011] +19:02:30 [ 22] [ 3] [900] +19:02:30 [ 32] [ 6] [220699] +19:02:30 [ 35] [ 32] [6213541000721822=491212012182619] +19:02:30 [ 37] [ 12] [507900079360] +19:02:30 [ 39] [ 2] [05] +19:02:30 [ 41] [ 8] [01000700] +19:02:30 [ 49] [ 3] [418] +19:02:30 ============================================================================ +19:02:30 Calculate Source COMM Id = 1 +19:02:30 ============================================================================ +19:02:30 + + +waiting on router queue for slot.... +19:02:33 ============================================================================ +19:02:33 Slot Id : <400> +19:02:33 Transaction Type : REQUEST +19:02:33 Received From : +19:02:33 ============================================================================ +19:02:33 FNo. Len. Field Value +19:02:33 ============================================================================ +19:02:33 [ 1] [ 4] [0800] +19:02:33 [ 7] [ 10] [0320120140] +19:02:33 [ 11] [ 6] [157846] +19:02:33 [ 70] [ 3] [301] +19:02:33 ============================================================================ +19:02:33 + + +waiting on router queue for slot.... +19:02:33 Sending to : +19:02:33 ============================================================================ +19:02:33 ============================================================================ +19:02:33 Slot Id : <400> +19:02:33 Transaction Type : RESPONSE +19:02:33 Received From : +19:02:33 ============================================================================ +19:02:33 FNo. Len. Field Value +19:02:33 ============================================================================ +19:02:33 [ 1] [ 4] [0810] +19:02:33 [ 7] [ 10] [0320120140] +19:02:33 [ 11] [ 6] [157846] +19:02:33 [ 39] [ 2] [00] +19:02:33 [ 70] [ 3] [301] +19:02:33 ============================================================================ +19:02:33 Calculate Source COMM Id = 2 +19:02:33 ============================================================================ +19:02:33 + + +waiting on router queue for slot.... +19:02:45 ============================================================================ +19:02:45 Slot Id : <393> +19:02:45 Transaction Type : REQUEST +19:02:45 Received From : +19:02:45 ============================================================================ +19:02:45 FNo. Len. Field Value +19:02:45 ============================================================================ +19:02:45 [ 1] [ 4] [0200] +19:02:45 [ 2] [ 16] [6213548000311686] +19:02:45 [ 3] [ 6] [310000] +19:02:45 [ 4] [ 12] [000000000000] +19:02:45 [ 7] [ 10] [0320191030] +19:02:45 [ 11] [ 6] [254892] +19:02:45 [ 12] [ 6] [191030] +19:02:45 [ 13] [ 4] [0320] +19:02:45 [ 14] [ 4] [1803] +19:02:45 [ 15] [ 4] [0320] +19:02:45 [ 18] [ 4] [6011] +19:02:45 [ 22] [ 3] [900] +19:02:45 [ 25] [ 2] [02] +19:02:45 [ 28] [ 9] [000000000] +19:02:45 [ 32] [ 6] [220699] +19:02:45 [ 35] [ 32] [6213548000311686=180312011168076] +19:02:45 [ 37] [ 12] [507900094445] +19:02:45 [ 41] [ 8] [01000900] +19:02:45 [ 42] [ 15] [APTRA ] +19:02:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:02:45 [ 49] [ 3] [418] +19:02:45 [ 52] [ 16] [978FF29BD0F5A7BB] +19:02:45 ============================================================================ +19:02:45 + + +waiting on router queue for slot.... +19:02:45 Sending to : +19:02:45 ============================================================================ +19:02:45 Sending to : +19:02:45 ============================================================================ +19:02:45 ============================================================================ +19:02:45 Slot Id : <393> +19:02:45 Transaction Type : REQUEST +19:02:45 Received From : +19:02:45 ============================================================================ +19:02:45 FNo. Len. Field Value +19:02:45 ============================================================================ +19:02:45 [ 1] [ 4] [0200] +19:02:45 [ 2] [ 16] [6213548000311686] +19:02:45 [ 3] [ 6] [310000] +19:02:45 [ 4] [ 12] [000000000000] +19:02:45 [ 7] [ 10] [0320191030] +19:02:45 [ 11] [ 6] [254892] +19:02:45 [ 12] [ 6] [191030] +19:02:45 [ 13] [ 4] [0320] +19:02:45 [ 14] [ 4] [1803] +19:02:45 [ 15] [ 4] [0320] +19:02:45 [ 18] [ 4] [6011] +19:02:45 [ 22] [ 3] [900] +19:02:45 [ 25] [ 2] [02] +19:02:45 [ 28] [ 9] [000000000] +19:02:45 [ 32] [ 6] [220699] +19:02:45 [ 35] [ 32] [6213548000311686=180312011168076] +19:02:45 [ 37] [ 12] [507900094445] +19:02:45 [ 41] [ 8] [01000900] +19:02:45 [ 42] [ 15] [APTRA ] +19:02:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:02:45 [ 49] [ 3] [418] +19:02:45 [ 52] [ 16] [978FF29BD0F5A7BB] +19:02:45 ============================================================================ +19:02:45 + + +waiting on router queue for slot.... +19:02:45 Sending to : +19:02:45 ============================================================================ +19:02:45 ============================================================================ +19:02:45 Slot Id : <393> +19:02:45 Transaction Type : REQUEST +19:02:45 Received From : +19:02:45 ============================================================================ +19:02:45 FNo. Len. Field Value +19:02:45 ============================================================================ +19:02:45 [ 1] [ 4] [0200] +19:02:45 [ 2] [ 16] [6213548000311686] +19:02:45 [ 3] [ 6] [310000] +19:02:45 [ 4] [ 12] [000000000000] +19:02:45 [ 7] [ 10] [0320191030] +19:02:45 [ 11] [ 6] [254892] +19:02:45 [ 12] [ 6] [191030] +19:02:45 [ 13] [ 4] [0320] +19:02:45 [ 14] [ 4] [1803] +19:02:45 [ 15] [ 4] [0320] +19:02:45 [ 18] [ 4] [6011] +19:02:45 [ 22] [ 3] [900] +19:02:45 [ 25] [ 2] [02] +19:02:45 [ 28] [ 9] [000000000] +19:02:45 [ 32] [ 6] [220699] +19:02:45 [ 35] [ 32] [6213548000311686=180312011168076] +19:02:45 [ 37] [ 12] [507900094445] +19:02:45 [ 41] [ 8] [01000900] +19:02:45 [ 42] [ 15] [APTRA ] +19:02:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:02:45 [ 49] [ 3] [418] +19:02:45 [ 52] [ 16] [D9511459B0A5CE05] +19:02:45 ============================================================================ +19:02:45 + + +waiting on router queue for slot.... +19:02:45 Sending to : <0> +19:02:45 ============================================================================ +19:02:46 ============================================================================ +19:02:46 Slot Id : <393> +19:02:46 Transaction Type : RESPONSE +19:02:46 Received From : +19:02:46 ============================================================================ +19:02:46 FNo. Len. Field Value +19:02:46 ============================================================================ +19:02:46 [ 1] [ 4] [0210] +19:02:46 [ 2] [ 16] [6213548000311686] +19:02:46 [ 3] [ 6] [310000] +19:02:46 [ 4] [ 12] [000000000000] +19:02:46 [ 7] [ 10] [0320191030] +19:02:46 [ 11] [ 6] [254892] +19:02:46 [ 12] [ 6] [191030] +19:02:46 [ 13] [ 4] [0320] +19:02:46 [ 15] [ 4] [0320] +19:02:46 [ 18] [ 4] [6011] +19:02:46 [ 32] [ 6] [220699] +19:02:46 [ 35] [ 32] [6213548000311686=180312011168076] +19:02:46 [ 37] [ 12] [507900094445] +19:02:46 [ 38] [ 6] [708941] +19:02:46 [ 39] [ 2] [00] +19:02:46 [ 41] [ 8] [01000900] +19:02:46 [ 49] [ 3] [418] +19:02:46 [ 54] [ 40] [0001418C0000550806260002418C000055080626] +19:02:46 ============================================================================ +19:02:46 Sending to : +19:02:46 ============================================================================ +19:02:46 + + +waiting on router queue for slot.... +19:02:46 ============================================================================ +19:02:46 Slot Id : <395> +19:02:46 Transaction Type : REQUEST +19:02:46 Received From : +19:02:46 ============================================================================ +19:02:46 FNo. Len. Field Value +19:02:46 ============================================================================ +19:02:46 [ 1] [ 4] [0800] +19:02:46 [ 7] [ 10] [0320120152] +19:02:46 [ 11] [ 6] [157847] +19:02:46 [ 70] [ 3] [301] +19:02:46 ============================================================================ +19:02:46 + + +waiting on router queue for slot.... +19:02:46 Sending to : +19:02:46 ============================================================================ +19:02:46 ============================================================================ +19:02:46 Slot Id : <395> +19:02:46 Transaction Type : RESPONSE +19:02:46 Received From : +19:02:46 ============================================================================ +19:02:46 FNo. Len. Field Value +19:02:46 ============================================================================ +19:02:46 [ 1] [ 4] [0810] +19:02:46 [ 7] [ 10] [0320120152] +19:02:46 [ 11] [ 6] [157847] +19:02:46 [ 39] [ 2] [00] +19:02:46 [ 70] [ 3] [301] +19:02:46 ============================================================================ +19:02:46 Calculate Source COMM Id = 2 +19:02:46 ============================================================================ +19:02:46 + + +waiting on router queue for slot.... +19:02:47 ============================================================================ +19:02:47 Slot Id : <393> +19:02:47 Transaction Type : RESPONSE +19:02:47 Received From : +19:02:47 ============================================================================ +19:02:47 FNo. Len. Field Value +19:02:47 ============================================================================ +19:02:47 [ 1] [ 4] [0210] +19:02:47 [ 2] [ 16] [6213548000311686] +19:02:47 [ 3] [ 6] [310000] +19:02:47 [ 4] [ 12] [000000000000] +19:02:47 [ 7] [ 10] [0320191030] +19:02:47 [ 11] [ 6] [254892] +19:02:47 [ 12] [ 6] [191030] +19:02:47 [ 13] [ 4] [0320] +19:02:47 [ 15] [ 4] [0320] +19:02:47 [ 18] [ 4] [6011] +19:02:47 [ 32] [ 6] [220699] +19:02:47 [ 35] [ 32] [6213548000311686=180312011168076] +19:02:47 [ 37] [ 12] [507900094445] +19:02:47 [ 38] [ 6] [708941] +19:02:47 [ 39] [ 2] [00] +19:02:47 [ 41] [ 8] [01000900] +19:02:47 [ 49] [ 3] [418] +19:02:47 [ 54] [ 40] [0001418C0000550806260002418C000055080626] +19:02:47 ============================================================================ +19:02:47 Calculate Source COMM Id = 1 +19:02:47 ============================================================================ +19:02:47 + + +waiting on router queue for slot.... +19:02:50 ============================================================================ +19:02:50 Slot Id : <414> +19:02:50 Transaction Type : REQUEST +19:02:50 Received From : +19:02:50 ============================================================================ +19:02:50 FNo. Len. Field Value +19:02:50 ============================================================================ +19:02:50 [ 1] [ 4] [0200] +19:02:50 [ 2] [ 16] [6688990050074945] +19:02:50 [ 3] [ 6] [011000] +19:02:50 [ 4] [ 12] [000005000000] +19:02:50 [ 7] [ 10] [0320190245] +19:02:50 [ 11] [ 6] [833243] +19:02:50 [ 12] [ 6] [190245] +19:02:50 [ 13] [ 4] [0320] +19:02:50 [ 15] [ 4] [0320] +19:02:50 [ 18] [ 4] [6011] +19:02:50 [ 22] [ 3] [900] +19:02:50 [ 25] [ 2] [02] +19:02:50 [ 28] [ 9] [D00002000] +19:02:50 [ 32] [ 6] [621354] +19:02:50 [ 35] [ 37] [6688990050074945=98051261315608200000] +19:02:50 [ 37] [ 12] [507903604126] +19:02:50 [ 41] [ 8] [16001300] +19:02:50 [ 42] [ 15] [NATIVE ] +19:02:50 [ 43] [ 40] [Dongdok 02 Xaythany LAO] +19:02:50 [ 49] [ 3] [418] +19:02:50 [ 52] [ 16] [3E5B8E95A0E28751] +19:02:50 ============================================================================ +19:02:50 + + +waiting on router queue for slot.... +19:02:50 Sending to : +19:02:50 ============================================================================ +19:02:50 Sending to : +19:02:50 ============================================================================ +19:02:50 ============================================================================ +19:02:50 Slot Id : <414> +19:02:50 Transaction Type : REQUEST +19:02:50 Received From : +19:02:50 ============================================================================ +19:02:50 FNo. Len. Field Value +19:02:50 ============================================================================ +19:02:50 [ 1] [ 4] [0200] +19:02:50 [ 2] [ 16] [6688990050074945] +19:02:50 [ 3] [ 6] [011000] +19:02:50 [ 4] [ 12] [000005000000] +19:02:50 [ 7] [ 10] [0320190245] +19:02:50 [ 11] [ 6] [833243] +19:02:50 [ 12] [ 6] [190245] +19:02:50 [ 13] [ 4] [0320] +19:02:50 [ 15] [ 4] [0320] +19:02:50 [ 18] [ 4] [6011] +19:02:50 [ 22] [ 3] [900] +19:02:50 [ 25] [ 2] [02] +19:02:50 [ 28] [ 9] [D00002000] +19:02:50 [ 32] [ 6] [621354] +19:02:50 [ 35] [ 37] [6688990050074945=98051261315608200000] +19:02:50 [ 37] [ 12] [507903604126] +19:02:50 [ 41] [ 8] [16001300] +19:02:50 [ 42] [ 15] [NATIVE ] +19:02:50 [ 43] [ 40] [Dongdok 02 Xaythany LAO] +19:02:50 [ 49] [ 3] [418] +19:02:50 [ 52] [ 16] [3E5B8E95A0E28751] +19:02:50 ============================================================================ +19:02:50 + + +waiting on router queue for slot.... +19:02:50 Sending to : +19:02:50 ============================================================================ +19:02:50 ============================================================================ +19:02:50 Slot Id : <414> +19:02:50 Transaction Type : REQUEST +19:02:50 Received From : +19:02:50 ============================================================================ +19:02:50 FNo. Len. Field Value +19:02:50 ============================================================================ +19:02:50 [ 1] [ 4] [0200] +19:02:50 [ 2] [ 16] [6688990050074945] +19:02:50 [ 3] [ 6] [011000] +19:02:50 [ 4] [ 12] [000005000000] +19:02:50 [ 7] [ 10] [0320190245] +19:02:50 [ 11] [ 6] [833243] +19:02:50 [ 12] [ 6] [190245] +19:02:50 [ 13] [ 4] [0320] +19:02:50 [ 15] [ 4] [0320] +19:02:50 [ 18] [ 4] [6011] +19:02:50 [ 22] [ 3] [900] +19:02:50 [ 25] [ 2] [02] +19:02:50 [ 28] [ 9] [D00002000] +19:02:50 [ 32] [ 6] [621354] +19:02:50 [ 35] [ 37] [6688990050074945=98051261315608200000] +19:02:50 [ 37] [ 12] [507903604126] +19:02:50 [ 41] [ 8] [16001300] +19:02:50 [ 42] [ 15] [NATIVE ] +19:02:50 [ 43] [ 40] [Dongdok 02 Xaythany LAO] +19:02:50 [ 49] [ 3] [418] +19:02:50 [ 52] [ 16] [CFDD844E5F0964AB] +19:02:50 ============================================================================ +19:02:50 + + +waiting on router queue for slot.... +19:02:50 Sending to : <4> +19:02:50 ============================================================================ +19:02:52 ============================================================================ +19:02:52 Slot Id : <414> +19:02:52 Transaction Type : RESPONSE +19:02:52 Received From : +19:02:52 ============================================================================ +19:02:52 FNo. Len. Field Value +19:02:52 ============================================================================ +19:02:52 [ 1] [ 4] [0210] +19:02:52 [ 2] [ 16] [6688990050074945] +19:02:52 [ 3] [ 6] [011000] +19:02:52 [ 4] [ 12] [000005000000] +19:02:52 [ 11] [ 6] [833243] +19:02:52 [ 12] [ 6] [190245] +19:02:52 [ 15] [ 4] [0320] +19:02:52 [ 18] [ 4] [6011] +19:02:52 [ 32] [ 6] [621354] +19:02:52 [ 35] [ 37] [6688990050074945=98051261315608200000] +19:02:52 [ 37] [ 12] [507903604126] +19:02:52 [ 38] [ 6] [134296] +19:02:52 [ 39] [ 2] [00] +19:02:52 [ 41] [ 8] [16001300] +19:02:52 [ 49] [ 3] [418] +19:02:52 [ 54] [ 20] [1002418C000004800000] +19:02:52 ============================================================================ +19:02:52 Sending to : +19:02:52 ============================================================================ +19:02:52 + + +waiting on router queue for slot.... +19:02:53 ============================================================================ +19:02:53 Slot Id : <414> +19:02:53 Transaction Type : RESPONSE +19:02:53 Received From : +19:02:53 ============================================================================ +19:02:53 FNo. Len. Field Value +19:02:53 ============================================================================ +19:02:53 [ 1] [ 4] [0210] +19:02:53 [ 2] [ 16] [6688990050074945] +19:02:53 [ 3] [ 6] [011000] +19:02:53 [ 4] [ 12] [000005000000] +19:02:53 [ 11] [ 6] [833243] +19:02:53 [ 12] [ 6] [190245] +19:02:53 [ 15] [ 4] [0320] +19:02:53 [ 18] [ 4] [6011] +19:02:53 [ 32] [ 6] [621354] +19:02:53 [ 35] [ 37] [6688990050074945=98051261315608200000] +19:02:53 [ 37] [ 12] [507903604126] +19:02:53 [ 38] [ 6] [134296] +19:02:53 [ 39] [ 2] [00] +19:02:53 [ 41] [ 8] [16001300] +19:02:53 [ 49] [ 3] [418] +19:02:53 [ 54] [ 20] [1002418C000004800000] +19:02:53 ============================================================================ +19:02:53 Calculate Source COMM Id = 0 +19:02:53 ============================================================================ +19:02:53 + + +waiting on router queue for slot.... +19:02:53 ============================================================================ +19:02:53 Slot Id : <413> +19:02:53 Transaction Type : REQUEST +19:02:53 Received From : +19:02:53 ============================================================================ +19:02:53 FNo. Len. Field Value +19:02:53 ============================================================================ +19:02:53 [ 1] [ 4] [0200] +19:02:53 [ 2] [ 16] [6688990107910109] +19:02:53 [ 3] [ 6] [011000] +19:02:53 [ 4] [ 12] [000005000000] +19:02:53 [ 7] [ 10] [0320190248] +19:02:53 [ 11] [ 6] [833249] +19:02:53 [ 12] [ 6] [190248] +19:02:53 [ 13] [ 4] [0320] +19:02:53 [ 15] [ 4] [0320] +19:02:53 [ 18] [ 4] [6011] +19:02:53 [ 22] [ 3] [900] +19:02:53 [ 25] [ 2] [02] +19:02:53 [ 28] [ 9] [D00002000] +19:02:53 [ 32] [ 6] [621354] +19:02:53 [ 35] [ 37] [6688990107910109=44041231010988100000] +19:02:53 [ 37] [ 12] [507902374945] +19:02:53 [ 41] [ 8] [01006200] +19:02:53 [ 42] [ 15] [NATIVE ] +19:02:53 [ 43] [ 40] [M-Point Mart Watchanh ChanthaboulyLAO] +19:02:53 [ 49] [ 3] [418] +19:02:53 [ 52] [ 16] [12451265C7C16425] +19:02:53 ============================================================================ +19:02:53 + + +waiting on router queue for slot.... +19:02:53 Sending to : +19:02:53 ============================================================================ +19:02:53 Sending to : +19:02:53 ============================================================================ +19:02:54 ============================================================================ +19:02:54 Slot Id : <413> +19:02:54 Transaction Type : REQUEST +19:02:54 Received From : +19:02:54 ============================================================================ +19:02:54 FNo. Len. Field Value +19:02:54 ============================================================================ +19:02:54 [ 1] [ 4] [0200] +19:02:54 [ 2] [ 16] [6688990107910109] +19:02:54 [ 3] [ 6] [011000] +19:02:54 [ 4] [ 12] [000005000000] +19:02:54 [ 7] [ 10] [0320190248] +19:02:54 [ 11] [ 6] [833249] +19:02:54 [ 12] [ 6] [190248] +19:02:54 [ 13] [ 4] [0320] +19:02:54 [ 15] [ 4] [0320] +19:02:54 [ 18] [ 4] [6011] +19:02:54 [ 22] [ 3] [900] +19:02:54 [ 25] [ 2] [02] +19:02:54 [ 28] [ 9] [D00002000] +19:02:54 [ 32] [ 6] [621354] +19:02:54 [ 35] [ 37] [6688990107910109=44041231010988100000] +19:02:54 [ 37] [ 12] [507902374945] +19:02:54 [ 41] [ 8] [01006200] +19:02:54 [ 42] [ 15] [NATIVE ] +19:02:54 [ 43] [ 40] [M-Point Mart Watchanh ChanthaboulyLAO] +19:02:54 [ 49] [ 3] [418] +19:02:54 [ 52] [ 16] [12451265C7C16425] +19:02:54 ============================================================================ +19:02:54 + + +waiting on router queue for slot.... +19:02:54 Sending to : +19:02:54 ============================================================================ +19:02:54 ============================================================================ +19:02:54 Slot Id : <413> +19:02:54 Transaction Type : REQUEST +19:02:54 Received From : +19:02:54 ============================================================================ +19:02:54 FNo. Len. Field Value +19:02:54 ============================================================================ +19:02:54 [ 1] [ 4] [0200] +19:02:54 [ 2] [ 16] [6688990107910109] +19:02:54 [ 3] [ 6] [011000] +19:02:54 [ 4] [ 12] [000005000000] +19:02:54 [ 7] [ 10] [0320190248] +19:02:54 [ 11] [ 6] [833249] +19:02:54 [ 12] [ 6] [190248] +19:02:54 [ 13] [ 4] [0320] +19:02:54 [ 15] [ 4] [0320] +19:02:54 [ 18] [ 4] [6011] +19:02:54 [ 22] [ 3] [900] +19:02:54 [ 25] [ 2] [02] +19:02:54 [ 28] [ 9] [D00002000] +19:02:54 [ 32] [ 6] [621354] +19:02:54 [ 35] [ 37] [6688990107910109=44041231010988100000] +19:02:54 [ 37] [ 12] [507902374945] +19:02:54 [ 41] [ 8] [01006200] +19:02:54 [ 42] [ 15] [NATIVE ] +19:02:54 [ 43] [ 40] [M-Point Mart Watchanh ChanthaboulyLAO] +19:02:54 [ 49] [ 3] [418] +19:02:54 [ 52] [ 16] [35B55005845F5358] +19:02:54 ============================================================================ +19:02:54 + + +waiting on router queue for slot.... +19:02:54 Sending to : <4> +19:02:54 ============================================================================ +19:02:55 ============================================================================ +19:02:55 Slot Id : <413> +19:02:55 Transaction Type : RESPONSE +19:02:55 Received From : +19:02:55 ============================================================================ +19:02:55 FNo. Len. Field Value +19:02:55 ============================================================================ +19:02:55 [ 1] [ 4] [0210] +19:02:55 [ 2] [ 16] [6688990107910109] +19:02:55 [ 3] [ 6] [011000] +19:02:55 [ 4] [ 12] [000005000000] +19:02:55 [ 11] [ 6] [833249] +19:02:55 [ 12] [ 6] [190248] +19:02:55 [ 15] [ 4] [0320] +19:02:55 [ 18] [ 4] [6011] +19:02:55 [ 32] [ 6] [621354] +19:02:55 [ 35] [ 37] [6688990107910109=44041231010988100000] +19:02:55 [ 37] [ 12] [507902374945] +19:02:55 [ 38] [ 6] [547518] +19:02:55 [ 39] [ 2] [00] +19:02:55 [ 41] [ 8] [01006200] +19:02:55 [ 49] [ 3] [418] +19:02:55 [ 54] [ 20] [1002418C000085043010] +19:02:55 ============================================================================ +19:02:55 Sending to : +19:02:55 ============================================================================ +19:02:55 + + +waiting on router queue for slot.... +19:02:56 ============================================================================ +19:02:56 Slot Id : <413> +19:02:56 Transaction Type : RESPONSE +19:02:56 Received From : +19:02:56 ============================================================================ +19:02:56 FNo. Len. Field Value +19:02:56 ============================================================================ +19:02:56 [ 1] [ 4] [0210] +19:02:56 [ 2] [ 16] [6688990107910109] +19:02:56 [ 3] [ 6] [011000] +19:02:56 [ 4] [ 12] [000005000000] +19:02:56 [ 11] [ 6] [833249] +19:02:56 [ 12] [ 6] [190248] +19:02:56 [ 15] [ 4] [0320] +19:02:56 [ 18] [ 4] [6011] +19:02:56 [ 32] [ 6] [621354] +19:02:56 [ 35] [ 37] [6688990107910109=44041231010988100000] +19:02:56 [ 37] [ 12] [507902374945] +19:02:56 [ 38] [ 6] [547518] +19:02:56 [ 39] [ 2] [00] +19:02:56 [ 41] [ 8] [01006200] +19:02:56 [ 49] [ 3] [418] +19:02:56 [ 54] [ 20] [1002418C000085043010] +19:02:56 ============================================================================ +19:02:56 Calculate Source COMM Id = 0 +19:02:56 ============================================================================ +19:02:56 + + +waiting on router queue for slot.... +19:02:56 ============================================================================ +19:02:56 Slot Id : <349> +19:02:56 Transaction Type : REQUEST +19:02:56 Received From : +19:02:56 ============================================================================ +19:02:56 FNo. Len. Field Value +19:02:56 ============================================================================ +19:02:56 [ 1] [ 4] [0800] +19:02:56 [ 7] [ 10] [0321021443] +19:02:56 [ 11] [ 6] [191443] +19:02:56 [ 37] [ 12] [57919191443] +19:02:56 [ 70] [ 3] [301] +19:02:56 ============================================================================ +19:02:56 + + +waiting on router queue for slot.... +19:02:56 Sending to : +19:02:56 ============================================================================ +19:02:56 ============================================================================ +19:02:56 Slot Id : <349> +19:02:56 Transaction Type : RESPONSE +19:02:56 Received From : +19:02:56 ============================================================================ +19:02:56 FNo. Len. Field Value +19:02:56 ============================================================================ +19:02:56 [ 1] [ 4] [0810] +19:02:56 [ 7] [ 10] [0321021443] +19:02:56 [ 11] [ 6] [191443] +19:02:56 [ 37] [ 12] [579191914430] +19:02:56 [ 39] [ 2] [00] +19:02:56 [ 70] [ 3] [810] +19:02:56 ============================================================================ +19:02:56 Calculate Source COMM Id = 6 +19:02:56 ============================================================================ +19:02:56 + + +waiting on router queue for slot.... +19:02:59 ============================================================================ +19:02:59 Slot Id : <394> +19:02:59 Transaction Type : REQUEST +19:02:59 Received From : +19:02:59 ============================================================================ +19:02:59 FNo. Len. Field Value +19:02:59 ============================================================================ +19:02:59 [ 1] [ 4] [0200] +19:02:59 [ 2] [ 16] [6213544000881000] +19:02:59 [ 3] [ 6] [011000] +19:02:59 [ 4] [ 12] [000020000000] +19:02:59 [ 7] [ 10] [0320120205] +19:02:59 [ 11] [ 6] [271363] +19:02:59 [ 12] [ 6] [190205] +19:02:59 [ 13] [ 4] [0320] +19:02:59 [ 14] [ 4] [4912] +19:02:59 [ 15] [ 4] [0320] +19:02:59 [ 18] [ 4] [6011] +19:02:59 [ 19] [ 3] [418] +19:02:59 [ 22] [ 3] [021] +19:02:59 [ 25] [ 2] [01] +19:02:59 [ 28] [ 9] [D00002000] +19:02:59 [ 32] [ 6] [180893] +19:02:59 [ 35] [ 32] [6213544000881000=491212018100804] +19:02:59 [ 37] [ 12] [507912271363] +19:02:59 [ 41] [ 8] [0381CPSP] +19:02:59 [ 42] [ 15] [999999 ] +19:02:59 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +19:02:59 [ 49] [ 3] [418] +19:02:59 [ 52] [ 16] [8E34FD6F2A99DF9B] +19:02:59 ============================================================================ +19:02:59 + + +waiting on router queue for slot.... +19:02:59 Sending to : +19:02:59 ============================================================================ +19:02:59 Sending to : +19:02:59 ============================================================================ +19:02:59 ============================================================================ +19:02:59 Slot Id : <394> +19:02:59 Transaction Type : REQUEST +19:02:59 Received From : +19:02:59 ============================================================================ +19:02:59 FNo. Len. Field Value +19:02:59 ============================================================================ +19:02:59 [ 1] [ 4] [0200] +19:02:59 [ 2] [ 16] [6213544000881000] +19:02:59 [ 3] [ 6] [011000] +19:02:59 [ 4] [ 12] [000020000000] +19:02:59 [ 7] [ 10] [0320120205] +19:02:59 [ 11] [ 6] [271363] +19:02:59 [ 12] [ 6] [190205] +19:02:59 [ 13] [ 4] [0320] +19:02:59 [ 14] [ 4] [4912] +19:02:59 [ 15] [ 4] [0320] +19:02:59 [ 18] [ 4] [6011] +19:02:59 [ 19] [ 3] [418] +19:02:59 [ 22] [ 3] [021] +19:02:59 [ 25] [ 2] [01] +19:02:59 [ 28] [ 9] [D00002000] +19:02:59 [ 32] [ 6] [180893] +19:02:59 [ 35] [ 32] [6213544000881000=491212018100804] +19:02:59 [ 37] [ 12] [507912271363] +19:02:59 [ 41] [ 8] [0381CPSP] +19:02:59 [ 42] [ 15] [999999 ] +19:02:59 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +19:02:59 [ 49] [ 3] [418] +19:02:59 [ 52] [ 16] [8E34FD6F2A99DF9B] +19:02:59 ============================================================================ +19:02:59 + + +waiting on router queue for slot.... +19:02:59 Sending to : +19:02:59 ============================================================================ +19:02:59 ============================================================================ +19:02:59 Slot Id : <394> +19:02:59 Transaction Type : REQUEST +19:02:59 Received From : +19:02:59 ============================================================================ +19:02:59 FNo. Len. Field Value +19:02:59 ============================================================================ +19:02:59 [ 1] [ 4] [0200] +19:02:59 [ 2] [ 16] [6213544000881000] +19:02:59 [ 3] [ 6] [011000] +19:02:59 [ 4] [ 12] [000020000000] +19:02:59 [ 7] [ 10] [0320120205] +19:02:59 [ 11] [ 6] [271363] +19:02:59 [ 12] [ 6] [190205] +19:02:59 [ 13] [ 4] [0320] +19:02:59 [ 14] [ 4] [4912] +19:02:59 [ 15] [ 4] [0320] +19:02:59 [ 18] [ 4] [6011] +19:02:59 [ 19] [ 3] [418] +19:02:59 [ 22] [ 3] [021] +19:02:59 [ 25] [ 2] [01] +19:02:59 [ 28] [ 9] [D00002000] +19:02:59 [ 32] [ 6] [180893] +19:02:59 [ 35] [ 32] [6213544000881000=491212018100804] +19:02:59 [ 37] [ 12] [507912271363] +19:02:59 [ 41] [ 8] [0381CPSP] +19:02:59 [ 42] [ 15] [999999 ] +19:02:59 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +19:02:59 [ 49] [ 3] [418] +19:02:59 [ 52] [ 16] [C27C3B3F1FAA2079] +19:02:59 ============================================================================ +19:02:59 + + +waiting on router queue for slot.... +19:02:59 Sending to : <0> +19:02:59 ============================================================================ +19:02:59 ============================================================================ +19:02:59 Slot Id : <394> +19:02:59 Transaction Type : RESPONSE +19:02:59 Received From : +19:02:59 ============================================================================ +19:02:59 FNo. Len. Field Value +19:02:59 ============================================================================ +19:02:59 [ 1] [ 4] [0210] +19:02:59 [ 2] [ 16] [6213544000881000] +19:02:59 [ 3] [ 6] [011000] +19:02:59 [ 4] [ 12] [000020000000] +19:02:59 [ 7] [ 10] [0320120205] +19:02:59 [ 11] [ 6] [271363] +19:02:59 [ 12] [ 6] [190205] +19:02:59 [ 13] [ 4] [0320] +19:02:59 [ 15] [ 4] [0320] +19:02:59 [ 18] [ 4] [6011] +19:02:59 [ 19] [ 3] [418] +19:02:59 [ 22] [ 3] [021] +19:02:59 [ 32] [ 6] [180893] +19:02:59 [ 35] [ 32] [6213544000881000=491212018100804] +19:02:59 [ 37] [ 12] [507912271363] +19:02:59 [ 39] [ 2] [65] +19:02:59 [ 41] [ 8] [0381CPSP] +19:02:59 [ 49] [ 3] [418] +19:02:59 ============================================================================ +19:02:59 Sending to : +19:02:59 ============================================================================ +19:02:59 + + +waiting on router queue for slot.... +19:03:00 ============================================================================ +19:03:00 Slot Id : <394> +19:03:00 Transaction Type : RESPONSE +19:03:00 Received From : +19:03:00 ============================================================================ +19:03:00 FNo. Len. Field Value +19:03:00 ============================================================================ +19:03:00 [ 1] [ 4] [0210] +19:03:00 [ 2] [ 16] [6213544000881000] +19:03:00 [ 3] [ 6] [011000] +19:03:00 [ 4] [ 12] [000020000000] +19:03:00 [ 7] [ 10] [0320120205] +19:03:00 [ 11] [ 6] [271363] +19:03:00 [ 12] [ 6] [190205] +19:03:00 [ 13] [ 4] [0320] +19:03:00 [ 15] [ 4] [0320] +19:03:00 [ 18] [ 4] [6011] +19:03:00 [ 19] [ 3] [418] +19:03:00 [ 22] [ 3] [021] +19:03:00 [ 32] [ 6] [180893] +19:03:00 [ 35] [ 32] [6213544000881000=491212018100804] +19:03:00 [ 37] [ 12] [507912271363] +19:03:00 [ 39] [ 2] [65] +19:03:00 [ 41] [ 8] [0381CPSP] +19:03:00 [ 49] [ 3] [418] +19:03:00 ============================================================================ +19:03:00 Calculate Source COMM Id = 2 +19:03:00 ============================================================================ +19:03:00 + + +waiting on router queue for slot.... +19:03:01 ============================================================================ +19:03:01 Slot Id : <397> +19:03:01 Transaction Type : REQUEST +19:03:01 Received From : +19:03:01 ============================================================================ +19:03:01 FNo. Len. Field Value +19:03:01 ============================================================================ +19:03:01 [ 1] [ 4] [0200] +19:03:01 [ 2] [ 16] [6688990103042907] +19:03:01 [ 3] [ 6] [013000] +19:03:01 [ 4] [ 12] [000020000000] +19:03:01 [ 7] [ 10] [0320190256] +19:03:01 [ 11] [ 6] [833276] +19:03:01 [ 12] [ 6] [190256] +19:03:01 [ 13] [ 4] [0320] +19:03:01 [ 15] [ 4] [0320] +19:03:01 [ 18] [ 4] [6011] +19:03:01 [ 22] [ 3] [900] +19:03:01 [ 25] [ 2] [02] +19:03:01 [ 28] [ 9] [D00002000] +19:03:01 [ 32] [ 6] [621354] +19:03:01 [ 35] [ 37] [6688990103042907=42111231290725900000] +19:03:01 [ 37] [ 12] [507905382554] +19:03:01 [ 41] [ 8] [12003400] +19:03:01 [ 42] [ 15] [NATIVE ] +19:03:01 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +19:03:01 [ 49] [ 3] [418] +19:03:01 [ 52] [ 16] [C82A7307B598500F] +19:03:01 ============================================================================ +19:03:01 + + +waiting on router queue for slot.... +19:03:02 Sending to : +19:03:02 ============================================================================ +19:03:02 Sending to : +19:03:02 ============================================================================ +19:03:02 ============================================================================ +19:03:02 Slot Id : <397> +19:03:02 Transaction Type : REQUEST +19:03:02 Received From : +19:03:02 ============================================================================ +19:03:02 FNo. Len. Field Value +19:03:02 ============================================================================ +19:03:02 [ 1] [ 4] [0200] +19:03:02 [ 2] [ 16] [6688990103042907] +19:03:02 [ 3] [ 6] [013000] +19:03:02 [ 4] [ 12] [000020000000] +19:03:02 [ 7] [ 10] [0320190256] +19:03:02 [ 11] [ 6] [833276] +19:03:02 [ 12] [ 6] [190256] +19:03:02 [ 13] [ 4] [0320] +19:03:02 [ 15] [ 4] [0320] +19:03:02 [ 18] [ 4] [6011] +19:03:02 [ 22] [ 3] [900] +19:03:02 [ 25] [ 2] [02] +19:03:02 [ 28] [ 9] [D00002000] +19:03:02 [ 32] [ 6] [621354] +19:03:02 [ 35] [ 37] [6688990103042907=42111231290725900000] +19:03:02 [ 37] [ 12] [507905382554] +19:03:02 [ 41] [ 8] [12003400] +19:03:02 [ 42] [ 15] [NATIVE ] +19:03:02 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +19:03:02 [ 49] [ 3] [418] +19:03:02 [ 52] [ 16] [C82A7307B598500F] +19:03:02 ============================================================================ +19:03:02 + + +waiting on router queue for slot.... +19:03:02 Sending to : +19:03:02 ============================================================================ +19:03:02 ============================================================================ +19:03:02 Slot Id : <397> +19:03:02 Transaction Type : REQUEST +19:03:02 Received From : +19:03:02 ============================================================================ +19:03:02 FNo. Len. Field Value +19:03:02 ============================================================================ +19:03:02 [ 1] [ 4] [0200] +19:03:02 [ 2] [ 16] [6688990103042907] +19:03:02 [ 3] [ 6] [013000] +19:03:02 [ 4] [ 12] [000020000000] +19:03:02 [ 7] [ 10] [0320190256] +19:03:02 [ 11] [ 6] [833276] +19:03:02 [ 12] [ 6] [190256] +19:03:02 [ 13] [ 4] [0320] +19:03:02 [ 15] [ 4] [0320] +19:03:02 [ 18] [ 4] [6011] +19:03:02 [ 22] [ 3] [900] +19:03:02 [ 25] [ 2] [02] +19:03:02 [ 28] [ 9] [D00002000] +19:03:02 [ 32] [ 6] [621354] +19:03:02 [ 35] [ 37] [6688990103042907=42111231290725900000] +19:03:02 [ 37] [ 12] [507905382554] +19:03:02 [ 41] [ 8] [12003400] +19:03:02 [ 42] [ 15] [NATIVE ] +19:03:02 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +19:03:02 [ 49] [ 3] [418] +19:03:02 [ 52] [ 16] [E1F5F06007BB1743] +19:03:02 ============================================================================ +19:03:02 + + +waiting on router queue for slot.... +19:03:02 Sending to : <4> +19:03:02 ============================================================================ +19:03:04 ============================================================================ +19:03:04 Slot Id : <397> +19:03:04 Transaction Type : RESPONSE +19:03:04 Received From : +19:03:04 ============================================================================ +19:03:04 FNo. Len. Field Value +19:03:04 ============================================================================ +19:03:04 [ 1] [ 4] [0210] +19:03:04 [ 2] [ 16] [6688990103042907] +19:03:04 [ 3] [ 6] [013000] +19:03:04 [ 4] [ 12] [000020000000] +19:03:04 [ 11] [ 6] [833276] +19:03:04 [ 12] [ 6] [190256] +19:03:04 [ 15] [ 4] [0320] +19:03:04 [ 18] [ 4] [6011] +19:03:04 [ 32] [ 6] [621354] +19:03:04 [ 35] [ 37] [6688990103042907=42111231290725900000] +19:03:04 [ 37] [ 12] [507905382554] +19:03:04 [ 38] [ 6] [814372] +19:03:04 [ 39] [ 2] [00] +19:03:04 [ 41] [ 8] [12003400] +19:03:04 [ 49] [ 3] [418] +19:03:04 [ 54] [ 20] [3002418C000002299278] +19:03:04 ============================================================================ +19:03:04 Sending to : +19:03:04 ============================================================================ +19:03:04 + + +waiting on router queue for slot.... +19:03:05 ============================================================================ +19:03:05 Slot Id : <397> +19:03:05 Transaction Type : RESPONSE +19:03:05 Received From : +19:03:05 ============================================================================ +19:03:05 FNo. Len. Field Value +19:03:05 ============================================================================ +19:03:05 [ 1] [ 4] [0210] +19:03:05 [ 2] [ 16] [6688990103042907] +19:03:05 [ 3] [ 6] [013000] +19:03:05 [ 4] [ 12] [000020000000] +19:03:05 [ 11] [ 6] [833276] +19:03:05 [ 12] [ 6] [190256] +19:03:05 [ 15] [ 4] [0320] +19:03:05 [ 18] [ 4] [6011] +19:03:05 [ 32] [ 6] [621354] +19:03:05 [ 35] [ 37] [6688990103042907=42111231290725900000] +19:03:05 [ 37] [ 12] [507905382554] +19:03:05 [ 38] [ 6] [814372] +19:03:05 [ 39] [ 2] [00] +19:03:05 [ 41] [ 8] [12003400] +19:03:05 [ 49] [ 3] [418] +19:03:05 [ 54] [ 20] [3002418C000002299278] +19:03:05 ============================================================================ +19:03:05 Calculate Source COMM Id = 0 +19:03:05 ============================================================================ +19:03:05 + + +waiting on router queue for slot.... +19:03:08 ============================================================================ +19:03:08 Slot Id : <418> +19:03:08 Transaction Type : REQUEST +19:03:08 Received From : +19:03:08 ============================================================================ +19:03:08 FNo. Len. Field Value +19:03:08 ============================================================================ +19:03:08 [ 1] [ 4] [0200] +19:03:08 [ 2] [ 16] [6688990108391309] +19:03:08 [ 3] [ 6] [303000] +19:03:08 [ 4] [ 12] [000000000000] +19:03:08 [ 7] [ 10] [0320190303] +19:03:08 [ 11] [ 6] [833298] +19:03:08 [ 12] [ 6] [190303] +19:03:08 [ 13] [ 4] [0320] +19:03:08 [ 15] [ 4] [0320] +19:03:08 [ 18] [ 4] [6011] +19:03:08 [ 22] [ 3] [900] +19:03:08 [ 25] [ 2] [02] +19:03:08 [ 28] [ 9] [D00000000] +19:03:08 [ 32] [ 6] [621354] +19:03:08 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:03:08 [ 37] [ 12] [507904725076] +19:03:08 [ 41] [ 8] [18001100] +19:03:08 [ 42] [ 15] [NATIVE ] +19:03:08 [ 43] [ 40] [Ban Naxong May LAO] +19:03:08 [ 49] [ 3] [418] +19:03:08 [ 52] [ 16] [A89681AFA37812C7] +19:03:08 ============================================================================ +19:03:08 + + +waiting on router queue for slot.... +19:03:08 Sending to : +19:03:08 ============================================================================ +19:03:08 Sending to : +19:03:08 ============================================================================ +19:03:08 ============================================================================ +19:03:08 Slot Id : <418> +19:03:08 Transaction Type : REQUEST +19:03:08 Received From : +19:03:08 ============================================================================ +19:03:08 FNo. Len. Field Value +19:03:08 ============================================================================ +19:03:08 [ 1] [ 4] [0200] +19:03:08 [ 2] [ 16] [6688990108391309] +19:03:08 [ 3] [ 6] [303000] +19:03:08 [ 4] [ 12] [000000000000] +19:03:08 [ 7] [ 10] [0320190303] +19:03:08 [ 11] [ 6] [833298] +19:03:08 [ 12] [ 6] [190303] +19:03:08 [ 13] [ 4] [0320] +19:03:08 [ 15] [ 4] [0320] +19:03:08 [ 18] [ 4] [6011] +19:03:08 [ 22] [ 3] [900] +19:03:08 [ 25] [ 2] [02] +19:03:08 [ 28] [ 9] [D00000000] +19:03:08 [ 32] [ 6] [621354] +19:03:08 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:03:08 [ 37] [ 12] [507904725076] +19:03:08 [ 41] [ 8] [18001100] +19:03:08 [ 42] [ 15] [NATIVE ] +19:03:08 [ 43] [ 40] [Ban Naxong May LAO] +19:03:08 [ 49] [ 3] [418] +19:03:08 [ 52] [ 16] [A89681AFA37812C7] +19:03:08 ============================================================================ +19:03:08 + + +waiting on router queue for slot.... +19:03:08 Sending to : +19:03:08 ============================================================================ +19:03:08 ============================================================================ +19:03:08 Slot Id : <418> +19:03:08 Transaction Type : REQUEST +19:03:08 Received From : +19:03:08 ============================================================================ +19:03:08 FNo. Len. Field Value +19:03:08 ============================================================================ +19:03:08 [ 1] [ 4] [0200] +19:03:08 [ 2] [ 16] [6688990108391309] +19:03:08 [ 3] [ 6] [303000] +19:03:08 [ 4] [ 12] [000000000000] +19:03:08 [ 7] [ 10] [0320190303] +19:03:08 [ 11] [ 6] [833298] +19:03:08 [ 12] [ 6] [190303] +19:03:08 [ 13] [ 4] [0320] +19:03:08 [ 15] [ 4] [0320] +19:03:08 [ 18] [ 4] [6011] +19:03:08 [ 22] [ 3] [900] +19:03:08 [ 25] [ 2] [02] +19:03:08 [ 28] [ 9] [D00000000] +19:03:08 [ 32] [ 6] [621354] +19:03:08 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:03:08 [ 37] [ 12] [507904725076] +19:03:08 [ 41] [ 8] [18001100] +19:03:08 [ 42] [ 15] [NATIVE ] +19:03:08 [ 43] [ 40] [Ban Naxong May LAO] +19:03:08 [ 49] [ 3] [418] +19:03:08 [ 52] [ 16] [9E5CF70EF701E05A] +19:03:08 ============================================================================ +19:03:08 + + +waiting on router queue for slot.... +19:03:08 Sending to : <4> +19:03:08 ============================================================================ +19:03:09 ============================================================================ +19:03:09 Slot Id : <418> +19:03:09 Transaction Type : RESPONSE +19:03:09 Received From : +19:03:09 ============================================================================ +19:03:09 FNo. Len. Field Value +19:03:09 ============================================================================ +19:03:09 [ 1] [ 4] [0210] +19:03:09 [ 2] [ 16] [6688990108391309] +19:03:09 [ 3] [ 6] [303000] +19:03:09 [ 4] [ 12] [000000000000] +19:03:09 [ 11] [ 6] [833298] +19:03:09 [ 12] [ 6] [190303] +19:03:09 [ 15] [ 4] [0320] +19:03:09 [ 18] [ 4] [6011] +19:03:09 [ 32] [ 6] [621354] +19:03:09 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:03:09 [ 37] [ 12] [507904725076] +19:03:09 [ 38] [ 6] [223220] +19:03:09 [ 39] [ 2] [00] +19:03:09 [ 41] [ 8] [18001100] +19:03:09 [ 49] [ 3] [418] +19:03:09 [ 54] [ 20] [3002418C000388575104] +19:03:09 ============================================================================ +19:03:09 Sending to : +19:03:09 ============================================================================ +19:03:09 + + +waiting on router queue for slot.... +19:03:10 ============================================================================ +19:03:10 Slot Id : <418> +19:03:10 Transaction Type : RESPONSE +19:03:10 Received From : +19:03:10 ============================================================================ +19:03:10 FNo. Len. Field Value +19:03:10 ============================================================================ +19:03:10 [ 1] [ 4] [0210] +19:03:10 [ 2] [ 16] [6688990108391309] +19:03:10 [ 3] [ 6] [303000] +19:03:10 [ 4] [ 12] [000000000000] +19:03:10 [ 11] [ 6] [833298] +19:03:10 [ 12] [ 6] [190303] +19:03:10 [ 15] [ 4] [0320] +19:03:10 [ 18] [ 4] [6011] +19:03:10 [ 32] [ 6] [621354] +19:03:10 [ 35] [ 37] [6688990108391309=44061231130928800000] +19:03:10 [ 37] [ 12] [507904725076] +19:03:10 [ 38] [ 6] [223220] +19:03:10 [ 39] [ 2] [00] +19:03:10 [ 41] [ 8] [18001100] +19:03:10 [ 49] [ 3] [418] +19:03:10 [ 54] [ 20] [3002418C000388575104] +19:03:10 ============================================================================ +19:03:10 Calculate Source COMM Id = 0 +19:03:10 ============================================================================ +19:03:10 + + +waiting on router queue for slot.... +19:03:12 ============================================================================ +19:03:12 Slot Id : <387> +19:03:12 Transaction Type : REQUEST +19:03:12 Received From : +19:03:12 ============================================================================ +19:03:12 FNo. Len. Field Value +19:03:12 ============================================================================ +19:03:12 [ 1] [ 4] [0800] +19:03:12 [ 7] [ 10] [0320120218] +19:03:12 [ 11] [ 6] [157848] +19:03:12 [ 70] [ 3] [301] +19:03:12 ============================================================================ +19:03:12 + + +waiting on router queue for slot.... +19:03:12 Sending to : +19:03:12 ============================================================================ +19:03:12 ============================================================================ +19:03:12 Slot Id : <387> +19:03:12 Transaction Type : RESPONSE +19:03:12 Received From : +19:03:12 ============================================================================ +19:03:12 FNo. Len. Field Value +19:03:12 ============================================================================ +19:03:12 [ 1] [ 4] [0810] +19:03:12 [ 7] [ 10] [0320120218] +19:03:12 [ 11] [ 6] [157848] +19:03:12 [ 39] [ 2] [00] +19:03:12 [ 70] [ 3] [301] +19:03:12 ============================================================================ +19:03:12 Calculate Source COMM Id = 2 +19:03:12 ============================================================================ +19:03:12 + + +waiting on router queue for slot.... +19:03:18 ============================================================================ +19:03:18 Slot Id : <372> +19:03:18 Transaction Type : REQUEST +19:03:18 Received From : +19:03:18 ============================================================================ +19:03:18 FNo. Len. Field Value +19:03:18 ============================================================================ +19:03:18 [ 1] [ 4] [0200] +19:03:18 [ 2] [ 16] [6213548000311686] +19:03:18 [ 3] [ 6] [010000] +19:03:18 [ 4] [ 12] [000010000000] +19:03:18 [ 7] [ 10] [0320191103] +19:03:18 [ 11] [ 6] [254893] +19:03:18 [ 12] [ 6] [191103] +19:03:18 [ 13] [ 4] [0320] +19:03:18 [ 14] [ 4] [1803] +19:03:18 [ 15] [ 4] [0320] +19:03:18 [ 18] [ 4] [6011] +19:03:18 [ 22] [ 3] [900] +19:03:18 [ 25] [ 2] [02] +19:03:18 [ 28] [ 9] [D00002000] +19:03:18 [ 32] [ 6] [220699] +19:03:18 [ 35] [ 32] [6213548000311686=180312011168076] +19:03:18 [ 37] [ 12] [507900094446] +19:03:18 [ 41] [ 8] [01000900] +19:03:18 [ 42] [ 15] [APTRA ] +19:03:18 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:03:18 [ 49] [ 3] [418] +19:03:18 [ 52] [ 16] [978FF29BD0F5A7BB] +19:03:18 ============================================================================ +19:03:18 + + +waiting on router queue for slot.... +19:03:18 Sending to : +19:03:18 ============================================================================ +19:03:18 Sending to : +19:03:18 ============================================================================ +19:03:19 ============================================================================ +19:03:19 Slot Id : <372> +19:03:19 Transaction Type : REQUEST +19:03:19 Received From : +19:03:19 ============================================================================ +19:03:19 FNo. Len. Field Value +19:03:19 ============================================================================ +19:03:19 [ 1] [ 4] [0200] +19:03:19 [ 2] [ 16] [6213548000311686] +19:03:19 [ 3] [ 6] [010000] +19:03:19 [ 4] [ 12] [000010000000] +19:03:19 [ 7] [ 10] [0320191103] +19:03:19 [ 11] [ 6] [254893] +19:03:19 [ 12] [ 6] [191103] +19:03:19 [ 13] [ 4] [0320] +19:03:19 [ 14] [ 4] [1803] +19:03:19 [ 15] [ 4] [0320] +19:03:19 [ 18] [ 4] [6011] +19:03:19 [ 22] [ 3] [900] +19:03:19 [ 25] [ 2] [02] +19:03:19 [ 28] [ 9] [D00002000] +19:03:19 [ 32] [ 6] [220699] +19:03:19 [ 35] [ 32] [6213548000311686=180312011168076] +19:03:19 [ 37] [ 12] [507900094446] +19:03:19 [ 41] [ 8] [01000900] +19:03:19 [ 42] [ 15] [APTRA ] +19:03:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:03:19 [ 49] [ 3] [418] +19:03:19 [ 52] [ 16] [978FF29BD0F5A7BB] +19:03:19 ============================================================================ +19:03:19 + + +waiting on router queue for slot.... +19:03:19 Sending to : +19:03:19 ============================================================================ +19:03:19 ============================================================================ +19:03:19 Slot Id : <372> +19:03:19 Transaction Type : REQUEST +19:03:19 Received From : +19:03:19 ============================================================================ +19:03:19 FNo. Len. Field Value +19:03:19 ============================================================================ +19:03:19 [ 1] [ 4] [0200] +19:03:19 [ 2] [ 16] [6213548000311686] +19:03:19 [ 3] [ 6] [010000] +19:03:19 [ 4] [ 12] [000010000000] +19:03:19 [ 7] [ 10] [0320191103] +19:03:19 [ 11] [ 6] [254893] +19:03:19 [ 12] [ 6] [191103] +19:03:19 [ 13] [ 4] [0320] +19:03:19 [ 14] [ 4] [1803] +19:03:19 [ 15] [ 4] [0320] +19:03:19 [ 18] [ 4] [6011] +19:03:19 [ 22] [ 3] [900] +19:03:19 [ 25] [ 2] [02] +19:03:19 [ 28] [ 9] [D00002000] +19:03:19 [ 32] [ 6] [220699] +19:03:19 [ 35] [ 32] [6213548000311686=180312011168076] +19:03:19 [ 37] [ 12] [507900094446] +19:03:19 [ 41] [ 8] [01000900] +19:03:19 [ 42] [ 15] [APTRA ] +19:03:19 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:03:19 [ 49] [ 3] [418] +19:03:19 [ 52] [ 16] [D9511459B0A5CE05] +19:03:19 ============================================================================ +19:03:19 + + +waiting on router queue for slot.... +19:03:19 Sending to : <0> +19:03:19 ============================================================================ +19:03:19 ============================================================================ +19:03:19 Slot Id : <372> +19:03:19 Transaction Type : RESPONSE +19:03:19 Received From : +19:03:19 ============================================================================ +19:03:19 FNo. Len. Field Value +19:03:19 ============================================================================ +19:03:19 [ 1] [ 4] [0210] +19:03:19 [ 2] [ 16] [6213548000311686] +19:03:19 [ 3] [ 6] [010000] +19:03:19 [ 4] [ 12] [000010000000] +19:03:19 [ 7] [ 10] [0320191103] +19:03:19 [ 11] [ 6] [254893] +19:03:19 [ 12] [ 6] [191103] +19:03:19 [ 13] [ 4] [0320] +19:03:19 [ 15] [ 4] [0320] +19:03:19 [ 18] [ 4] [6011] +19:03:19 [ 32] [ 6] [220699] +19:03:19 [ 35] [ 32] [6213548000311686=180312011168076] +19:03:19 [ 37] [ 12] [507900094446] +19:03:19 [ 38] [ 6] [931745] +19:03:19 [ 39] [ 2] [00] +19:03:19 [ 41] [ 8] [01000900] +19:03:19 [ 49] [ 3] [418] +19:03:19 [ 54] [ 40] [0001418C0000448806260002418C000044880626] +19:03:19 ============================================================================ +19:03:19 Sending to : +19:03:19 ============================================================================ +19:03:19 + + +waiting on router queue for slot.... +19:03:21 ============================================================================ +19:03:21 Slot Id : <372> +19:03:21 Transaction Type : RESPONSE +19:03:21 Received From : +19:03:21 ============================================================================ +19:03:21 FNo. Len. Field Value +19:03:21 ============================================================================ +19:03:21 [ 1] [ 4] [0210] +19:03:21 [ 2] [ 16] [6213548000311686] +19:03:21 [ 3] [ 6] [010000] +19:03:21 [ 4] [ 12] [000010000000] +19:03:21 [ 7] [ 10] [0320191103] +19:03:21 [ 11] [ 6] [254893] +19:03:21 [ 12] [ 6] [191103] +19:03:21 [ 13] [ 4] [0320] +19:03:21 [ 15] [ 4] [0320] +19:03:21 [ 18] [ 4] [6011] +19:03:21 [ 32] [ 6] [220699] +19:03:21 [ 35] [ 32] [6213548000311686=180312011168076] +19:03:21 [ 37] [ 12] [507900094446] +19:03:21 [ 38] [ 6] [931745] +19:03:21 [ 39] [ 2] [00] +19:03:21 [ 41] [ 8] [01000900] +19:03:21 [ 49] [ 3] [418] +19:03:21 [ 54] [ 40] [0001418C0000448806260002418C000044880626] +19:03:21 ============================================================================ +19:03:21 Calculate Source COMM Id = 1 +19:03:21 ============================================================================ +19:03:21 + + +waiting on router queue for slot.... +19:03:23 ============================================================================ +19:03:23 Slot Id : <399> +19:03:23 Transaction Type : REQUEST +19:03:23 Received From : +19:03:23 ============================================================================ +19:03:23 FNo. Len. Field Value +19:03:23 ============================================================================ +19:03:23 [ 1] [ 4] [0800] +19:03:23 [ 7] [ 10] [0320120229] +19:03:23 [ 11] [ 6] [157849] +19:03:23 [ 70] [ 3] [301] +19:03:23 ============================================================================ +19:03:23 + + +waiting on router queue for slot.... +19:03:23 Sending to : +19:03:23 ============================================================================ +19:03:23 ============================================================================ +19:03:23 Slot Id : <399> +19:03:23 Transaction Type : RESPONSE +19:03:23 Received From : +19:03:23 ============================================================================ +19:03:23 FNo. Len. Field Value +19:03:23 ============================================================================ +19:03:23 [ 1] [ 4] [0810] +19:03:23 [ 7] [ 10] [0320120229] +19:03:23 [ 11] [ 6] [157849] +19:03:23 [ 39] [ 2] [00] +19:03:23 [ 70] [ 3] [301] +19:03:23 ============================================================================ +19:03:23 Calculate Source COMM Id = 2 +19:03:23 ============================================================================ +19:03:23 + + +waiting on router queue for slot.... +19:03:31 ============================================================================ +19:03:31 Slot Id : <406> +19:03:31 Transaction Type : REQUEST +19:03:31 Received From : +19:03:31 ============================================================================ +19:03:31 FNo. Len. Field Value +19:03:31 ============================================================================ +19:03:31 [ 1] [ 4] [0800] +19:03:31 [ 2] [ 5] [02531] +19:03:31 [ 3] [ 6] [579198] +19:03:31 [ 7] [ 10] [0320120331] +19:03:31 [ 11] [ 6] [807518] +19:03:31 [ 15] [ 10] [0320120331] +19:03:31 [ 37] [ 11] [57919807518] +19:03:31 [ 70] [ 3] [001] +19:03:31 ============================================================================ +19:03:31 + + +waiting on router queue for slot.... +19:03:31 ============================================================================ +19:03:31 Slot Id : <406> +19:03:31 Transaction Type : RESPONSE +19:03:31 Received From : +19:03:31 ============================================================================ +19:03:31 FNo. Len. Field Value +19:03:31 ============================================================================ +19:03:31 [ 1] [ 4] [0810] +19:03:31 [ 7] [ 10] [0320120331] +19:03:31 [ 11] [ 6] [807518] +19:03:31 [ 15] [ 4] [0320] +19:03:31 [ 37] [ 12] [57919807518] +19:03:31 [ 39] [ 2] [00] +19:03:31 [ 70] [ 3] [001] +19:03:31 ============================================================================ +19:03:31 Sending to : +19:03:31 ============================================================================ +19:03:31 + + +waiting on router queue for slot.... +19:03:33 ============================================================================ +19:03:33 Slot Id : <368> +19:03:33 Transaction Type : REQUEST +19:03:33 Received From : +19:03:33 ============================================================================ +19:03:33 FNo. Len. Field Value +19:03:33 ============================================================================ +19:03:33 [ 1] [ 4] [0800] +19:03:33 [ 7] [ 10] [0320120240] +19:03:33 [ 11] [ 6] [157850] +19:03:33 [ 70] [ 3] [301] +19:03:33 ============================================================================ +19:03:33 + + +waiting on router queue for slot.... +19:03:33 Sending to : +19:03:33 ============================================================================ +19:03:33 ============================================================================ +19:03:33 Slot Id : <368> +19:03:33 Transaction Type : RESPONSE +19:03:33 Received From : +19:03:33 ============================================================================ +19:03:33 FNo. Len. Field Value +19:03:33 ============================================================================ +19:03:33 [ 1] [ 4] [0810] +19:03:33 [ 7] [ 10] [0320120240] +19:03:33 [ 11] [ 6] [157850] +19:03:33 [ 39] [ 2] [00] +19:03:33 [ 70] [ 3] [301] +19:03:33 ============================================================================ +19:03:33 Calculate Source COMM Id = 2 +19:03:33 ============================================================================ +19:03:33 + + +waiting on router queue for slot.... +19:03:44 ============================================================================ +19:03:44 Slot Id : <419> +19:03:44 Transaction Type : REQUEST +19:03:44 Received From : +19:03:44 ============================================================================ +19:03:44 FNo. Len. Field Value +19:03:44 ============================================================================ +19:03:44 [ 1] [ 4] [0800] +19:03:44 [ 7] [ 10] [0320120250] +19:03:44 [ 11] [ 6] [157851] +19:03:44 [ 70] [ 3] [301] +19:03:44 ============================================================================ +19:03:44 + + +waiting on router queue for slot.... +19:03:44 Sending to : +19:03:44 ============================================================================ +19:03:44 ============================================================================ +19:03:44 Slot Id : <419> +19:03:44 Transaction Type : RESPONSE +19:03:44 Received From : +19:03:44 ============================================================================ +19:03:44 FNo. Len. Field Value +19:03:44 ============================================================================ +19:03:44 [ 1] [ 4] [0810] +19:03:44 [ 7] [ 10] [0320120250] +19:03:44 [ 11] [ 6] [157851] +19:03:44 [ 39] [ 2] [00] +19:03:44 [ 70] [ 3] [301] +19:03:44 ============================================================================ +19:03:44 Calculate Source COMM Id = 2 +19:03:44 ============================================================================ +19:03:44 + + +waiting on router queue for slot.... +19:03:56 ============================================================================ +19:03:56 Slot Id : <411> +19:03:56 Transaction Type : REQUEST +19:03:56 Received From : +19:03:56 ============================================================================ +19:03:56 FNo. Len. Field Value +19:03:56 ============================================================================ +19:03:56 [ 1] [ 4] [0800] +19:03:56 [ 7] [ 10] [0320120301] +19:03:56 [ 11] [ 6] [157852] +19:03:56 [ 70] [ 3] [301] +19:03:56 ============================================================================ +19:03:56 + + +waiting on router queue for slot.... +19:03:56 Sending to : +19:03:56 ============================================================================ +19:03:56 ============================================================================ +19:03:56 Slot Id : <411> +19:03:56 Transaction Type : RESPONSE +19:03:56 Received From : +19:03:56 ============================================================================ +19:03:56 FNo. Len. Field Value +19:03:56 ============================================================================ +19:03:56 [ 1] [ 4] [0810] +19:03:56 [ 7] [ 10] [0320120301] +19:03:56 [ 11] [ 6] [157852] +19:03:56 [ 39] [ 2] [00] +19:03:56 [ 70] [ 3] [301] +19:03:56 ============================================================================ +19:03:56 Calculate Source COMM Id = 2 +19:03:56 ============================================================================ +19:03:56 + + +waiting on router queue for slot.... +19:03:56 ============================================================================ +19:03:56 Slot Id : <380> +19:03:56 Transaction Type : REQUEST +19:03:56 Received From : +19:03:56 ============================================================================ +19:03:56 FNo. Len. Field Value +19:03:56 ============================================================================ +19:03:56 [ 1] [ 4] [0200] +19:03:56 [ 2] [ 16] [1808930900012063] +19:03:56 [ 3] [ 6] [011000] +19:03:56 [ 4] [ 12] [000010000000] +19:03:56 [ 7] [ 10] [0320190351] +19:03:56 [ 11] [ 6] [833425] +19:03:56 [ 12] [ 6] [190351] +19:03:56 [ 13] [ 4] [0320] +19:03:56 [ 15] [ 4] [0320] +19:03:56 [ 18] [ 4] [6011] +19:03:56 [ 22] [ 3] [900] +19:03:56 [ 25] [ 2] [02] +19:03:56 [ 28] [ 9] [D00002000] +19:03:56 [ 32] [ 6] [621354] +19:03:56 [ 35] [ 27] [1808930900012063=1803500547] +19:03:56 [ 37] [ 12] [507903699809] +19:03:56 [ 41] [ 8] [05004500] +19:03:56 [ 42] [ 15] [NATIVE ] +19:03:56 [ 43] [ 40] [Tourism LuangprabangLAO] +19:03:56 [ 49] [ 3] [418] +19:03:56 [ 52] [ 16] [7D039E9191E6988C] +19:03:56 ============================================================================ +19:03:56 + + +waiting on router queue for slot.... +19:03:56 Sending to : +19:03:56 ============================================================================ +19:03:56 Sending to : +19:03:56 ============================================================================ +19:03:57 ============================================================================ +19:03:57 Slot Id : <380> +19:03:57 Transaction Type : REQUEST +19:03:57 Received From : +19:03:57 ============================================================================ +19:03:57 FNo. Len. Field Value +19:03:57 ============================================================================ +19:03:57 [ 1] [ 4] [0200] +19:03:57 [ 2] [ 16] [1808930900012063] +19:03:57 [ 3] [ 6] [011000] +19:03:57 [ 4] [ 12] [000010000000] +19:03:57 [ 7] [ 10] [0320190351] +19:03:57 [ 11] [ 6] [833425] +19:03:57 [ 12] [ 6] [190351] +19:03:57 [ 13] [ 4] [0320] +19:03:57 [ 15] [ 4] [0320] +19:03:57 [ 18] [ 4] [6011] +19:03:57 [ 22] [ 3] [900] +19:03:57 [ 25] [ 2] [02] +19:03:57 [ 28] [ 9] [D00002000] +19:03:57 [ 32] [ 6] [621354] +19:03:57 [ 35] [ 27] [1808930900012063=1803500547] +19:03:57 [ 37] [ 12] [507903699809] +19:03:57 [ 41] [ 8] [05004500] +19:03:57 [ 42] [ 15] [NATIVE ] +19:03:57 [ 43] [ 40] [Tourism LuangprabangLAO] +19:03:57 [ 49] [ 3] [418] +19:03:57 [ 52] [ 16] [7D039E9191E6988C] +19:03:57 ============================================================================ +19:03:57 + + +waiting on router queue for slot.... +19:03:57 Sending to : +19:03:57 ============================================================================ +19:03:57 ============================================================================ +19:03:57 Slot Id : <380> +19:03:57 Transaction Type : REQUEST +19:03:57 Received From : +19:03:57 ============================================================================ +19:03:57 FNo. Len. Field Value +19:03:57 ============================================================================ +19:03:57 [ 1] [ 4] [0200] +19:03:57 [ 2] [ 16] [1808930900012063] +19:03:57 [ 3] [ 6] [011000] +19:03:57 [ 4] [ 12] [000010000000] +19:03:57 [ 7] [ 10] [0320190351] +19:03:57 [ 11] [ 6] [833425] +19:03:57 [ 12] [ 6] [190351] +19:03:57 [ 13] [ 4] [0320] +19:03:57 [ 15] [ 4] [0320] +19:03:57 [ 18] [ 4] [6011] +19:03:57 [ 22] [ 3] [900] +19:03:57 [ 25] [ 2] [02] +19:03:57 [ 28] [ 9] [D00002000] +19:03:57 [ 32] [ 6] [621354] +19:03:57 [ 35] [ 27] [1808930900012063=1803500547] +19:03:57 [ 37] [ 12] [507903699809] +19:03:57 [ 41] [ 8] [05004500] +19:03:57 [ 42] [ 15] [NATIVE ] +19:03:57 [ 43] [ 40] [Tourism LuangprabangLAO] +19:03:57 [ 49] [ 3] [418] +19:03:57 [ 52] [ 16] [52C1D3EBF24619A3] +19:03:57 ============================================================================ +19:03:57 + + +waiting on router queue for slot.... +19:03:57 Sending to : <2> +19:03:57 ============================================================================ +19:04:00 ============================================================================ +19:04:00 Slot Id : <380> +19:04:00 Transaction Type : RESPONSE +19:04:00 Received From : +19:04:00 ============================================================================ +19:04:00 FNo. Len. Field Value +19:04:00 ============================================================================ +19:04:00 [ 1] [ 4] [0210] +19:04:00 [ 2] [ 16] [1808930900012063] +19:04:00 [ 3] [ 6] [011000] +19:04:00 [ 4] [ 12] [000010000000] +19:04:00 [ 6] [ 12] [000010000000] +19:04:00 [ 7] [ 10] [0320190351] +19:04:00 [ 11] [ 6] [833425] +19:04:00 [ 12] [ 6] [190351] +19:04:00 [ 13] [ 4] [0320] +19:04:00 [ 18] [ 4] [6011] +19:04:00 [ 19] [ 3] [418] +19:04:00 [ 22] [ 3] [021] +19:04:00 [ 32] [ 6] [621354] +19:04:00 [ 35] [ 27] [1808930900012063=1803500547] +19:04:00 [ 37] [ 12] [507903699809] +19:04:00 [ 38] [ 6] [833425] +19:04:00 [ 39] [ 2] [00] +19:04:00 [ 41] [ 8] [05004500] +19:04:00 [ 49] [ 3] [418] +19:04:00 [ 52] [ 16] [52C1D3EBF24619A3] +19:04:00 [ 54] [ 20] [1001418C000006152400] +19:04:00 ============================================================================ +19:04:00 Sending to : +19:04:00 ============================================================================ +19:04:00 + + +waiting on router queue for slot.... +19:04:01 ============================================================================ +19:04:01 Slot Id : <384> +19:04:01 Transaction Type : REQUEST +19:04:01 Received From : +19:04:01 ============================================================================ +19:04:01 FNo. Len. Field Value +19:04:01 ============================================================================ +19:04:01 [ 1] [ 4] [0200] +19:04:01 [ 2] [ 16] [6213543000050889] +19:04:01 [ 3] [ 6] [010000] +19:04:01 [ 4] [ 12] [000050000000] +19:04:01 [ 7] [ 10] [0320190150] +19:04:01 [ 11] [ 6] [955546] +19:04:01 [ 12] [ 6] [190150] +19:04:01 [ 13] [ 4] [0320] +19:04:01 [ 15] [ 4] [0320] +19:04:01 [ 18] [ 4] [6011] +19:04:01 [ 19] [ 3] [418] +19:04:01 [ 22] [ 3] [021] +19:04:01 [ 25] [ 2] [01] +19:04:01 [ 28] [ 9] [D00002000] +19:04:01 [ 32] [ 6] [668899] +19:04:01 [ 35] [ 32] [6213543000050889=491212015088850] +19:04:01 [ 37] [ 12] [507901008868] +19:04:01 [ 41] [ 8] [03403001] +19:04:01 [ 42] [ 15] [APT ] +19:04:01 [ 43] [ 40] [ LUANGNUMTHA MARKET LUANGN] +19:04:01 [ 49] [ 3] [418] +19:04:01 [ 52] [ 16] [CC734890D73ECEEB] +19:04:01 ============================================================================ +19:04:01 + + +waiting on router queue for slot.... +19:04:01 Sending to : +19:04:01 ============================================================================ +19:04:01 Sending to : +19:04:01 ============================================================================ +19:04:01 ============================================================================ +19:04:01 Slot Id : <407> +19:04:01 Transaction Type : REQUEST +19:04:01 Received From : +19:04:01 ============================================================================ +19:04:01 FNo. Len. Field Value +19:04:01 ============================================================================ +19:04:01 [ 1] [ 4] [0800] +19:04:01 [ 7] [ 10] [0321021548] +19:04:01 [ 11] [ 6] [191548] +19:04:01 [ 37] [ 12] [57919191548] +19:04:01 [ 70] [ 3] [301] +19:04:01 ============================================================================ +19:04:01 + + +waiting on router queue for slot.... +19:04:01 Sending to : +19:04:01 ============================================================================ +19:04:01 ============================================================================ +19:04:01 Slot Id : <407> +19:04:01 Transaction Type : RESPONSE +19:04:01 Received From : +19:04:01 ============================================================================ +19:04:01 FNo. Len. Field Value +19:04:01 ============================================================================ +19:04:01 [ 1] [ 4] [0810] +19:04:01 [ 7] [ 10] [0321021548] +19:04:01 [ 11] [ 6] [191548] +19:04:01 [ 37] [ 12] [579191915480] +19:04:01 [ 39] [ 2] [00] +19:04:01 [ 70] [ 3] [810] +19:04:01 ============================================================================ +19:04:01 Calculate Source COMM Id = 6 +19:04:01 ============================================================================ +19:04:01 + + +waiting on router queue for slot.... +19:04:01 ============================================================================ +19:04:01 Slot Id : <384> +19:04:01 Transaction Type : REQUEST +19:04:01 Received From : +19:04:01 ============================================================================ +19:04:01 FNo. Len. Field Value +19:04:01 ============================================================================ +19:04:01 [ 1] [ 4] [0200] +19:04:01 [ 2] [ 16] [6213543000050889] +19:04:01 [ 3] [ 6] [010000] +19:04:01 [ 4] [ 12] [000050000000] +19:04:01 [ 7] [ 10] [0320190150] +19:04:01 [ 11] [ 6] [955546] +19:04:01 [ 12] [ 6] [190150] +19:04:01 [ 13] [ 4] [0320] +19:04:01 [ 15] [ 4] [0320] +19:04:01 [ 18] [ 4] [6011] +19:04:01 [ 19] [ 3] [418] +19:04:01 [ 22] [ 3] [021] +19:04:01 [ 25] [ 2] [01] +19:04:01 [ 28] [ 9] [D00002000] +19:04:01 [ 32] [ 6] [668899] +19:04:01 [ 35] [ 32] [6213543000050889=491212015088850] +19:04:01 [ 37] [ 12] [507901008868] +19:04:01 [ 41] [ 8] [03403001] +19:04:01 [ 42] [ 15] [APT ] +19:04:01 [ 43] [ 40] [ LUANGNUMTHA MARKET LUANGN] +19:04:01 [ 49] [ 3] [418] +19:04:01 [ 52] [ 16] [CC734890D73ECEEB] +19:04:01 ============================================================================ +19:04:01 + + +waiting on router queue for slot.... +19:04:01 Sending to : +19:04:01 ============================================================================ +19:04:01 ============================================================================ +19:04:01 Slot Id : <384> +19:04:01 Transaction Type : REQUEST +19:04:01 Received From : +19:04:01 ============================================================================ +19:04:01 FNo. Len. Field Value +19:04:01 ============================================================================ +19:04:01 [ 1] [ 4] [0200] +19:04:01 [ 2] [ 16] [6213543000050889] +19:04:01 [ 3] [ 6] [010000] +19:04:01 [ 4] [ 12] [000050000000] +19:04:01 [ 7] [ 10] [0320190150] +19:04:01 [ 11] [ 6] [955546] +19:04:01 [ 12] [ 6] [190150] +19:04:01 [ 13] [ 4] [0320] +19:04:01 [ 15] [ 4] [0320] +19:04:01 [ 18] [ 4] [6011] +19:04:01 [ 19] [ 3] [418] +19:04:01 [ 22] [ 3] [021] +19:04:01 [ 25] [ 2] [01] +19:04:01 [ 28] [ 9] [D00002000] +19:04:01 [ 32] [ 6] [668899] +19:04:01 [ 35] [ 32] [6213543000050889=491212015088850] +19:04:01 [ 37] [ 12] [507901008868] +19:04:01 [ 41] [ 8] [03403001] +19:04:01 [ 42] [ 15] [APT ] +19:04:01 [ 43] [ 40] [ LUANGNUMTHA MARKET LUANGN] +19:04:01 [ 49] [ 3] [418] +19:04:01 [ 52] [ 16] [8DCA7018990002FF] +19:04:01 ============================================================================ +19:04:01 + + +waiting on router queue for slot.... +19:04:01 Sending to : <0> +19:04:01 ============================================================================ +19:04:01 ============================================================================ +19:04:01 Slot Id : <384> +19:04:01 Transaction Type : RESPONSE +19:04:01 Received From : +19:04:01 ============================================================================ +19:04:01 FNo. Len. Field Value +19:04:01 ============================================================================ +19:04:01 [ 1] [ 4] [0210] +19:04:01 [ 2] [ 16] [6213543000050889] +19:04:01 [ 3] [ 6] [010000] +19:04:01 [ 4] [ 12] [000050000000] +19:04:01 [ 7] [ 10] [0320190150] +19:04:01 [ 11] [ 6] [955546] +19:04:01 [ 12] [ 6] [190150] +19:04:01 [ 13] [ 4] [0320] +19:04:01 [ 15] [ 4] [0320] +19:04:01 [ 18] [ 4] [6011] +19:04:01 [ 19] [ 3] [418] +19:04:01 [ 22] [ 3] [021] +19:04:01 [ 32] [ 6] [668899] +19:04:01 [ 35] [ 32] [6213543000050889=491212015088850] +19:04:01 [ 37] [ 12] [507901008868] +19:04:01 [ 38] [ 6] [190356] +19:04:01 [ 39] [ 2] [55] +19:04:01 [ 41] [ 8] [03403001] +19:04:01 [ 49] [ 3] [418] +19:04:01 ============================================================================ +19:04:01 Sending to : +19:04:01 ============================================================================ +19:04:01 + + +waiting on router queue for slot.... +19:04:02 ============================================================================ +19:04:02 Slot Id : <380> +19:04:02 Transaction Type : RESPONSE +19:04:02 Received From : +19:04:02 ============================================================================ +19:04:02 FNo. Len. Field Value +19:04:02 ============================================================================ +19:04:02 [ 1] [ 4] [0210] +19:04:02 [ 2] [ 16] [1808930900012063] +19:04:02 [ 3] [ 6] [011000] +19:04:02 [ 4] [ 12] [000010000000] +19:04:02 [ 6] [ 12] [000010000000] +19:04:02 [ 7] [ 10] [0320190351] +19:04:02 [ 11] [ 6] [833425] +19:04:02 [ 12] [ 6] [190351] +19:04:02 [ 13] [ 4] [0320] +19:04:02 [ 18] [ 4] [6011] +19:04:02 [ 19] [ 3] [418] +19:04:02 [ 22] [ 3] [021] +19:04:02 [ 32] [ 6] [621354] +19:04:02 [ 35] [ 27] [1808930900012063=1803500547] +19:04:02 [ 37] [ 12] [507903699809] +19:04:02 [ 38] [ 6] [833425] +19:04:02 [ 39] [ 2] [00] +19:04:02 [ 41] [ 8] [05004500] +19:04:02 [ 49] [ 3] [418] +19:04:02 [ 52] [ 16] [52C1D3EBF24619A3] +19:04:02 [ 54] [ 20] [1001418C000006152400] +19:04:02 ============================================================================ +19:04:02 Calculate Source COMM Id = 0 +19:04:02 ============================================================================ +19:04:02 + + +waiting on router queue for slot.... +19:04:03 ============================================================================ +19:04:03 Slot Id : <384> +19:04:03 Transaction Type : RESPONSE +19:04:03 Received From : +19:04:03 ============================================================================ +19:04:03 FNo. Len. Field Value +19:04:03 ============================================================================ +19:04:03 [ 1] [ 4] [0210] +19:04:03 [ 2] [ 16] [6213543000050889] +19:04:03 [ 3] [ 6] [010000] +19:04:03 [ 4] [ 12] [000050000000] +19:04:03 [ 7] [ 10] [0320190150] +19:04:03 [ 11] [ 6] [955546] +19:04:03 [ 12] [ 6] [190150] +19:04:03 [ 13] [ 4] [0320] +19:04:03 [ 15] [ 4] [0320] +19:04:03 [ 18] [ 4] [6011] +19:04:03 [ 19] [ 3] [418] +19:04:03 [ 22] [ 3] [021] +19:04:03 [ 32] [ 6] [668899] +19:04:03 [ 35] [ 32] [6213543000050889=491212015088850] +19:04:03 [ 37] [ 12] [507901008868] +19:04:03 [ 38] [ 6] [190356] +19:04:03 [ 39] [ 2] [55] +19:04:03 [ 41] [ 8] [03403001] +19:04:03 [ 49] [ 3] [418] +19:04:03 ============================================================================ +19:04:03 Calculate Source COMM Id = 4 +19:04:03 ============================================================================ +19:04:03 + + +waiting on router queue for slot.... +19:04:03 ============================================================================ +19:04:03 Slot Id : <416> +19:04:03 Transaction Type : REQUEST +19:04:03 Received From : +19:04:03 ============================================================================ +19:04:03 FNo. Len. Field Value +19:04:03 ============================================================================ +19:04:03 [ 1] [ 4] [0200] +19:04:03 [ 2] [ 16] [6213544000881000] +19:04:03 [ 3] [ 6] [010000] +19:04:03 [ 4] [ 12] [000010000000] +19:04:03 [ 7] [ 10] [0320120310] +19:04:03 [ 11] [ 6] [271367] +19:04:03 [ 12] [ 6] [190310] +19:04:03 [ 13] [ 4] [0320] +19:04:03 [ 14] [ 4] [4912] +19:04:03 [ 15] [ 4] [0320] +19:04:03 [ 18] [ 4] [6011] +19:04:03 [ 19] [ 3] [418] +19:04:03 [ 22] [ 3] [021] +19:04:03 [ 25] [ 2] [01] +19:04:03 [ 28] [ 9] [D00002000] +19:04:03 [ 32] [ 6] [180893] +19:04:03 [ 35] [ 32] [6213544000881000=491212018100804] +19:04:03 [ 37] [ 12] [507912271367] +19:04:03 [ 41] [ 8] [0381CPSP] +19:04:03 [ 42] [ 15] [999999 ] +19:04:03 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +19:04:03 [ 49] [ 3] [418] +19:04:03 [ 52] [ 16] [8E34FD6F2A99DF9B] +19:04:03 ============================================================================ +19:04:03 + + +waiting on router queue for slot.... +19:04:03 Sending to : +19:04:03 ============================================================================ +19:04:03 Sending to : +19:04:03 ============================================================================ +19:04:04 ============================================================================ +19:04:04 Slot Id : <416> +19:04:04 Transaction Type : REQUEST +19:04:04 Received From : +19:04:04 ============================================================================ +19:04:04 FNo. Len. Field Value +19:04:04 ============================================================================ +19:04:04 [ 1] [ 4] [0200] +19:04:04 [ 2] [ 16] [6213544000881000] +19:04:04 [ 3] [ 6] [010000] +19:04:04 [ 4] [ 12] [000010000000] +19:04:04 [ 7] [ 10] [0320120310] +19:04:04 [ 11] [ 6] [271367] +19:04:04 [ 12] [ 6] [190310] +19:04:04 [ 13] [ 4] [0320] +19:04:04 [ 14] [ 4] [4912] +19:04:04 [ 15] [ 4] [0320] +19:04:04 [ 18] [ 4] [6011] +19:04:04 [ 19] [ 3] [418] +19:04:04 [ 22] [ 3] [021] +19:04:04 [ 25] [ 2] [01] +19:04:04 [ 28] [ 9] [D00002000] +19:04:04 [ 32] [ 6] [180893] +19:04:04 [ 35] [ 32] [6213544000881000=491212018100804] +19:04:04 [ 37] [ 12] [507912271367] +19:04:04 [ 41] [ 8] [0381CPSP] +19:04:04 [ 42] [ 15] [999999 ] +19:04:04 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +19:04:04 [ 49] [ 3] [418] +19:04:04 [ 52] [ 16] [8E34FD6F2A99DF9B] +19:04:04 ============================================================================ +19:04:04 + + +waiting on router queue for slot.... +19:04:04 Sending to : +19:04:04 ============================================================================ +19:04:04 ============================================================================ +19:04:04 Slot Id : <416> +19:04:04 Transaction Type : REQUEST +19:04:04 Received From : +19:04:04 ============================================================================ +19:04:04 FNo. Len. Field Value +19:04:04 ============================================================================ +19:04:04 [ 1] [ 4] [0200] +19:04:04 [ 2] [ 16] [6213544000881000] +19:04:04 [ 3] [ 6] [010000] +19:04:04 [ 4] [ 12] [000010000000] +19:04:04 [ 7] [ 10] [0320120310] +19:04:04 [ 11] [ 6] [271367] +19:04:04 [ 12] [ 6] [190310] +19:04:04 [ 13] [ 4] [0320] +19:04:04 [ 14] [ 4] [4912] +19:04:04 [ 15] [ 4] [0320] +19:04:04 [ 18] [ 4] [6011] +19:04:04 [ 19] [ 3] [418] +19:04:04 [ 22] [ 3] [021] +19:04:04 [ 25] [ 2] [01] +19:04:04 [ 28] [ 9] [D00002000] +19:04:04 [ 32] [ 6] [180893] +19:04:04 [ 35] [ 32] [6213544000881000=491212018100804] +19:04:04 [ 37] [ 12] [507912271367] +19:04:04 [ 41] [ 8] [0381CPSP] +19:04:04 [ 42] [ 15] [999999 ] +19:04:04 [ 43] [ 40] [ATM PAKSONG CHAMPASAK BRANCH LOCATION, P] +19:04:04 [ 49] [ 3] [418] +19:04:04 [ 52] [ 16] [C27C3B3F1FAA2079] +19:04:04 ============================================================================ +19:04:04 + + +waiting on router queue for slot.... +19:04:04 Sending to : <0> +19:04:04 ============================================================================ +19:04:05 ============================================================================ +19:04:05 Slot Id : <416> +19:04:05 Transaction Type : RESPONSE +19:04:05 Received From : +19:04:05 ============================================================================ +19:04:05 FNo. Len. Field Value +19:04:05 ============================================================================ +19:04:05 [ 1] [ 4] [0210] +19:04:05 [ 2] [ 16] [6213544000881000] +19:04:05 [ 3] [ 6] [010000] +19:04:05 [ 4] [ 12] [000010000000] +19:04:05 [ 7] [ 10] [0320120310] +19:04:05 [ 11] [ 6] [271367] +19:04:05 [ 12] [ 6] [190310] +19:04:05 [ 13] [ 4] [0320] +19:04:05 [ 15] [ 4] [0320] +19:04:05 [ 18] [ 4] [6011] +19:04:05 [ 19] [ 3] [418] +19:04:05 [ 22] [ 3] [021] +19:04:05 [ 32] [ 6] [180893] +19:04:05 [ 35] [ 32] [6213544000881000=491212018100804] +19:04:05 [ 37] [ 12] [507912271367] +19:04:05 [ 39] [ 2] [65] +19:04:05 [ 41] [ 8] [0381CPSP] +19:04:05 [ 49] [ 3] [418] +19:04:05 ============================================================================ +19:04:05 Sending to : +19:04:05 ============================================================================ +19:04:05 + + +waiting on router queue for slot.... +19:04:07 ============================================================================ +19:04:07 Slot Id : <416> +19:04:07 Transaction Type : RESPONSE +19:04:07 Received From : +19:04:07 ============================================================================ +19:04:07 FNo. Len. Field Value +19:04:07 ============================================================================ +19:04:07 [ 1] [ 4] [0210] +19:04:07 [ 2] [ 16] [6213544000881000] +19:04:07 [ 3] [ 6] [010000] +19:04:07 [ 4] [ 12] [000010000000] +19:04:07 [ 7] [ 10] [0320120310] +19:04:07 [ 11] [ 6] [271367] +19:04:07 [ 12] [ 6] [190310] +19:04:07 [ 13] [ 4] [0320] +19:04:07 [ 15] [ 4] [0320] +19:04:07 [ 18] [ 4] [6011] +19:04:07 [ 19] [ 3] [418] +19:04:07 [ 22] [ 3] [021] +19:04:07 [ 32] [ 6] [180893] +19:04:07 [ 35] [ 32] [6213544000881000=491212018100804] +19:04:07 [ 37] [ 12] [507912271367] +19:04:07 [ 39] [ 2] [65] +19:04:07 [ 41] [ 8] [0381CPSP] +19:04:07 [ 49] [ 3] [418] +19:04:07 ============================================================================ +19:04:07 Calculate Source COMM Id = 2 +19:04:07 ============================================================================ +19:04:07 + + +waiting on router queue for slot.... +19:04:20 ============================================================================ +19:04:20 Slot Id : <401> +19:04:20 Transaction Type : REQUEST +19:04:20 Received From : +19:04:20 ============================================================================ +19:04:20 FNo. Len. Field Value +19:04:20 ============================================================================ +19:04:20 [ 1] [ 4] [0800] +19:04:20 [ 7] [ 10] [0320120327] +19:04:20 [ 11] [ 6] [157853] +19:04:20 [ 70] [ 3] [301] +19:04:20 ============================================================================ +19:04:20 + + +waiting on router queue for slot.... +19:04:20 Sending to : +19:04:20 ============================================================================ +19:04:20 ============================================================================ +19:04:20 Slot Id : <401> +19:04:20 Transaction Type : RESPONSE +19:04:20 Received From : +19:04:20 ============================================================================ +19:04:20 FNo. Len. Field Value +19:04:20 ============================================================================ +19:04:20 [ 1] [ 4] [0810] +19:04:20 [ 7] [ 10] [0320120327] +19:04:20 [ 11] [ 6] [157853] +19:04:20 [ 39] [ 2] [00] +19:04:20 [ 70] [ 3] [301] +19:04:20 ============================================================================ +19:04:20 Calculate Source COMM Id = 2 +19:04:20 ============================================================================ +19:04:20 + + +waiting on router queue for slot.... +19:04:24 ============================================================================ +19:04:24 Slot Id : <433> +19:04:24 Transaction Type : REQUEST +19:04:24 Received From : +19:04:24 ============================================================================ +19:04:24 FNo. Len. Field Value +19:04:24 ============================================================================ +19:04:24 [ 1] [ 4] [0200] +19:04:24 [ 2] [ 16] [6688990040063040] +19:04:24 [ 3] [ 6] [010000] +19:04:24 [ 4] [ 12] [000010000000] +19:04:24 [ 7] [ 10] [0320120329] +19:04:24 [ 11] [ 6] [271371] +19:04:24 [ 12] [ 6] [190329] +19:04:24 [ 13] [ 4] [0320] +19:04:24 [ 14] [ 4] [9801] +19:04:24 [ 15] [ 4] [0320] +19:04:24 [ 18] [ 4] [6011] +19:04:24 [ 19] [ 3] [418] +19:04:24 [ 22] [ 3] [021] +19:04:24 [ 25] [ 2] [01] +19:04:24 [ 28] [ 9] [D00002000] +19:04:24 [ 32] [ 6] [180893] +19:04:24 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:04:24 [ 37] [ 12] [507912271371] +19:04:24 [ 41] [ 8] [0118UDBR] +19:04:24 [ 42] [ 15] [999999 ] +19:04:24 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +19:04:24 [ 49] [ 3] [418] +19:04:24 [ 52] [ 16] [A2E3199346774B61] +19:04:24 ============================================================================ +19:04:24 + + +waiting on router queue for slot.... +19:04:24 Sending to : +19:04:24 ============================================================================ +19:04:24 Sending to : +19:04:24 ============================================================================ +19:04:24 ============================================================================ +19:04:24 Slot Id : <433> +19:04:24 Transaction Type : REQUEST +19:04:24 Received From : +19:04:24 ============================================================================ +19:04:24 FNo. Len. Field Value +19:04:24 ============================================================================ +19:04:24 [ 1] [ 4] [0200] +19:04:24 [ 2] [ 16] [6688990040063040] +19:04:24 [ 3] [ 6] [010000] +19:04:24 [ 4] [ 12] [000010000000] +19:04:24 [ 7] [ 10] [0320120329] +19:04:24 [ 11] [ 6] [271371] +19:04:24 [ 12] [ 6] [190329] +19:04:24 [ 13] [ 4] [0320] +19:04:24 [ 14] [ 4] [9801] +19:04:24 [ 15] [ 4] [0320] +19:04:24 [ 18] [ 4] [6011] +19:04:24 [ 19] [ 3] [418] +19:04:24 [ 22] [ 3] [021] +19:04:24 [ 25] [ 2] [01] +19:04:24 [ 28] [ 9] [D00002000] +19:04:24 [ 32] [ 6] [180893] +19:04:24 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:04:24 [ 37] [ 12] [507912271371] +19:04:24 [ 41] [ 8] [0118UDBR] +19:04:24 [ 42] [ 15] [999999 ] +19:04:24 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +19:04:24 [ 49] [ 3] [418] +19:04:24 [ 52] [ 16] [A2E3199346774B61] +19:04:24 ============================================================================ +19:04:24 + + +waiting on router queue for slot.... +19:04:24 Sending to : +19:04:24 ============================================================================ +19:04:24 ============================================================================ +19:04:24 Slot Id : <433> +19:04:24 Transaction Type : REQUEST +19:04:24 Received From : +19:04:24 ============================================================================ +19:04:24 FNo. Len. Field Value +19:04:24 ============================================================================ +19:04:24 [ 1] [ 4] [0200] +19:04:24 [ 2] [ 16] [6688990040063040] +19:04:24 [ 3] [ 6] [010000] +19:04:24 [ 4] [ 12] [000010000000] +19:04:24 [ 7] [ 10] [0320120329] +19:04:24 [ 11] [ 6] [271371] +19:04:24 [ 12] [ 6] [190329] +19:04:24 [ 13] [ 4] [0320] +19:04:24 [ 14] [ 4] [9801] +19:04:24 [ 15] [ 4] [0320] +19:04:24 [ 18] [ 4] [6011] +19:04:24 [ 19] [ 3] [418] +19:04:24 [ 22] [ 3] [021] +19:04:24 [ 25] [ 2] [01] +19:04:24 [ 28] [ 9] [D00002000] +19:04:24 [ 32] [ 6] [180893] +19:04:24 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:04:24 [ 37] [ 12] [507912271371] +19:04:24 [ 41] [ 8] [0118UDBR] +19:04:24 [ 42] [ 15] [999999 ] +19:04:24 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +19:04:24 [ 49] [ 3] [418] +19:04:24 [ 52] [ 16] [E71EC437AC4A8D71] +19:04:24 ============================================================================ +19:04:24 + + +waiting on router queue for slot.... +19:04:24 Sending to : <0> +19:04:24 ============================================================================ +19:04:24 ============================================================================ +19:04:24 Slot Id : <433> +19:04:24 Transaction Type : RESPONSE +19:04:24 Received From : +19:04:24 ============================================================================ +19:04:24 FNo. Len. Field Value +19:04:24 ============================================================================ +19:04:24 [ 1] [ 4] [0210] +19:04:24 [ 2] [ 16] [6688990040063040] +19:04:24 [ 3] [ 6] [010000] +19:04:24 [ 4] [ 12] [000010000000] +19:04:24 [ 7] [ 10] [0320120329] +19:04:24 [ 11] [ 6] [271371] +19:04:24 [ 12] [ 6] [190329] +19:04:24 [ 13] [ 4] [0320] +19:04:24 [ 15] [ 4] [0320] +19:04:24 [ 18] [ 4] [6011] +19:04:24 [ 19] [ 3] [418] +19:04:24 [ 22] [ 3] [021] +19:04:24 [ 32] [ 6] [180893] +19:04:24 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:04:24 [ 37] [ 12] [507912271371] +19:04:24 [ 39] [ 2] [14] +19:04:24 [ 41] [ 8] [0118UDBR] +19:04:24 [ 49] [ 3] [418] +19:04:24 ============================================================================ +19:04:24 Sending to : +19:04:24 ============================================================================ +19:04:24 + + +waiting on router queue for slot.... +19:04:26 ============================================================================ +19:04:26 Slot Id : <433> +19:04:26 Transaction Type : RESPONSE +19:04:26 Received From : +19:04:26 ============================================================================ +19:04:26 FNo. Len. Field Value +19:04:26 ============================================================================ +19:04:26 [ 1] [ 4] [0210] +19:04:26 [ 2] [ 16] [6688990040063040] +19:04:26 [ 3] [ 6] [010000] +19:04:26 [ 4] [ 12] [000010000000] +19:04:26 [ 7] [ 10] [0320120329] +19:04:26 [ 11] [ 6] [271371] +19:04:26 [ 12] [ 6] [190329] +19:04:26 [ 13] [ 4] [0320] +19:04:26 [ 15] [ 4] [0320] +19:04:26 [ 18] [ 4] [6011] +19:04:26 [ 19] [ 3] [418] +19:04:26 [ 22] [ 3] [021] +19:04:26 [ 32] [ 6] [180893] +19:04:26 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:04:26 [ 37] [ 12] [507912271371] +19:04:26 [ 39] [ 2] [14] +19:04:26 [ 41] [ 8] [0118UDBR] +19:04:26 [ 49] [ 3] [418] +19:04:26 ============================================================================ +19:04:26 Calculate Source COMM Id = 2 +19:04:26 ============================================================================ +19:04:26 + + +waiting on router queue for slot.... +19:04:33 ============================================================================ +19:04:33 Slot Id : <381> +19:04:33 Transaction Type : REQUEST +19:04:33 Received From : +19:04:33 ============================================================================ +19:04:33 FNo. Len. Field Value +19:04:33 ============================================================================ +19:04:33 [ 1] [ 4] [0800] +19:04:33 [ 2] [ 5] [02531] +19:04:33 [ 3] [ 6] [579198] +19:04:33 [ 7] [ 10] [0320120433] +19:04:33 [ 11] [ 6] [807519] +19:04:33 [ 15] [ 10] [0320120433] +19:04:33 [ 37] [ 11] [57919807519] +19:04:33 [ 70] [ 3] [001] +19:04:33 ============================================================================ +19:04:33 + + +waiting on router queue for slot.... +19:04:33 ============================================================================ +19:04:33 Slot Id : <381> +19:04:33 Transaction Type : RESPONSE +19:04:33 Received From : +19:04:33 ============================================================================ +19:04:33 FNo. Len. Field Value +19:04:33 ============================================================================ +19:04:33 [ 1] [ 4] [0810] +19:04:33 [ 7] [ 10] [0320120433] +19:04:33 [ 11] [ 6] [807519] +19:04:33 [ 15] [ 4] [0320] +19:04:33 [ 37] [ 12] [57919807519] +19:04:33 [ 39] [ 2] [00] +19:04:33 [ 70] [ 3] [001] +19:04:33 ============================================================================ +19:04:33 Sending to : +19:04:33 ============================================================================ +19:04:33 + + +waiting on router queue for slot.... +19:04:41 ============================================================================ +19:04:41 Slot Id : <420> +19:04:41 Transaction Type : REQUEST +19:04:41 Received From : +19:04:41 ============================================================================ +19:04:41 FNo. Len. Field Value +19:04:41 ============================================================================ +19:04:41 [ 1] [ 4] [0800] +19:04:41 [ 7] [ 10] [0320120348] +19:04:41 [ 11] [ 6] [157854] +19:04:41 [ 70] [ 3] [301] +19:04:41 ============================================================================ +19:04:41 + + +waiting on router queue for slot.... +19:04:41 Sending to : +19:04:41 ============================================================================ +19:04:41 ============================================================================ +19:04:41 Slot Id : <420> +19:04:41 Transaction Type : RESPONSE +19:04:41 Received From : +19:04:41 ============================================================================ +19:04:41 FNo. Len. Field Value +19:04:41 ============================================================================ +19:04:41 [ 1] [ 4] [0810] +19:04:41 [ 7] [ 10] [0320120348] +19:04:41 [ 11] [ 6] [157854] +19:04:41 [ 39] [ 2] [00] +19:04:41 [ 70] [ 3] [301] +19:04:41 ============================================================================ +19:04:41 Calculate Source COMM Id = 2 +19:04:41 ============================================================================ +19:04:41 + + +waiting on router queue for slot.... +19:04:54 ============================================================================ +19:04:54 Slot Id : <398> +19:04:54 Transaction Type : REQUEST +19:04:54 Received From : +19:04:54 ============================================================================ +19:04:54 FNo. Len. Field Value +19:04:54 ============================================================================ +19:04:54 [ 1] [ 4] [0800] +19:04:54 [ 7] [ 10] [0320120400] +19:04:54 [ 11] [ 6] [157855] +19:04:54 [ 70] [ 3] [301] +19:04:54 ============================================================================ +19:04:54 + + +waiting on router queue for slot.... +19:04:54 Sending to : +19:04:54 ============================================================================ +19:04:54 ============================================================================ +19:04:54 Slot Id : <398> +19:04:54 Transaction Type : RESPONSE +19:04:54 Received From : +19:04:54 ============================================================================ +19:04:54 FNo. Len. Field Value +19:04:54 ============================================================================ +19:04:54 [ 1] [ 4] [0810] +19:04:54 [ 7] [ 10] [0320120400] +19:04:54 [ 11] [ 6] [157855] +19:04:54 [ 39] [ 2] [00] +19:04:54 [ 70] [ 3] [301] +19:04:54 ============================================================================ +19:04:54 Calculate Source COMM Id = 2 +19:04:54 ============================================================================ +19:04:54 + + +waiting on router queue for slot.... +19:04:57 ============================================================================ +19:04:57 Slot Id : <409> +19:04:57 Transaction Type : REQUEST +19:04:57 Received From : +19:04:57 ============================================================================ +19:04:57 FNo. Len. Field Value +19:04:57 ============================================================================ +19:04:57 [ 1] [ 4] [0200] +19:04:57 [ 2] [ 16] [6213545000939839] +19:04:57 [ 3] [ 6] [011000] +19:04:57 [ 4] [ 12] [000030000000] +19:04:57 [ 7] [ 10] [0320120402] +19:04:57 [ 11] [ 6] [271373] +19:04:57 [ 12] [ 6] [190402] +19:04:57 [ 13] [ 4] [0320] +19:04:57 [ 14] [ 4] [4912] +19:04:57 [ 15] [ 4] [0320] +19:04:57 [ 18] [ 4] [6011] +19:04:57 [ 19] [ 3] [418] +19:04:57 [ 22] [ 3] [021] +19:04:57 [ 25] [ 2] [01] +19:04:57 [ 28] [ 9] [D00002000] +19:04:57 [ 32] [ 6] [180893] +19:04:57 [ 35] [ 32] [6213545000939839=491212013983994] +19:04:57 [ 37] [ 12] [507912271373] +19:04:57 [ 41] [ 8] [0102SAPA] +19:04:57 [ 42] [ 15] [999999 ] +19:04:57 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +19:04:57 [ 49] [ 3] [418] +19:04:57 [ 52] [ 16] [B5238F1FE2ED7AAA] +19:04:57 ============================================================================ +19:04:57 + + +waiting on router queue for slot.... +19:04:57 Sending to : +19:04:57 ============================================================================ +19:04:57 Sending to : +19:04:57 ============================================================================ +19:04:57 ============================================================================ +19:04:57 Slot Id : <409> +19:04:57 Transaction Type : REQUEST +19:04:57 Received From : +19:04:57 ============================================================================ +19:04:57 FNo. Len. Field Value +19:04:57 ============================================================================ +19:04:57 [ 1] [ 4] [0200] +19:04:57 [ 2] [ 16] [6213545000939839] +19:04:57 [ 3] [ 6] [011000] +19:04:57 [ 4] [ 12] [000030000000] +19:04:57 [ 7] [ 10] [0320120402] +19:04:57 [ 11] [ 6] [271373] +19:04:57 [ 12] [ 6] [190402] +19:04:57 [ 13] [ 4] [0320] +19:04:57 [ 14] [ 4] [4912] +19:04:57 [ 15] [ 4] [0320] +19:04:57 [ 18] [ 4] [6011] +19:04:57 [ 19] [ 3] [418] +19:04:57 [ 22] [ 3] [021] +19:04:57 [ 25] [ 2] [01] +19:04:57 [ 28] [ 9] [D00002000] +19:04:57 [ 32] [ 6] [180893] +19:04:57 [ 35] [ 32] [6213545000939839=491212013983994] +19:04:57 [ 37] [ 12] [507912271373] +19:04:57 [ 41] [ 8] [0102SAPA] +19:04:57 [ 42] [ 15] [999999 ] +19:04:57 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +19:04:57 [ 49] [ 3] [418] +19:04:57 [ 52] [ 16] [B5238F1FE2ED7AAA] +19:04:57 ============================================================================ +19:04:57 + + +waiting on router queue for slot.... +19:04:57 Sending to : +19:04:57 ============================================================================ +19:04:57 ============================================================================ +19:04:57 Slot Id : <415> +19:04:57 Transaction Type : REQUEST +19:04:57 Received From : +19:04:57 ============================================================================ +19:04:57 FNo. Len. Field Value +19:04:57 ============================================================================ +19:04:57 [ 1] [ 4] [0800] +19:04:57 [ 7] [ 10] [0320121242] +19:04:57 [ 11] [ 6] [011815] +19:04:57 [ 37] [ 12] [57919011815] +19:04:57 [ 70] [ 3] [301] +19:04:57 ============================================================================ +19:04:57 + + +waiting on router queue for slot.... +19:04:57 Sending to : +19:04:57 ============================================================================ +19:04:57 ============================================================================ +19:04:57 Slot Id : <415> +19:04:57 Transaction Type : RESPONSE +19:04:57 Received From : +19:04:57 ============================================================================ +19:04:57 FNo. Len. Field Value +19:04:57 ============================================================================ +19:04:57 [ 1] [ 4] [0810] +19:04:57 [ 7] [ 10] [0320121242] +19:04:57 [ 11] [ 6] [011815] +19:04:57 [ 37] [ 12] [579190118150] +19:04:57 [ 39] [ 2] [00] +19:04:57 [ 70] [ 3] [810] +19:04:57 ============================================================================ +19:04:57 Calculate Source COMM Id = 1 +19:04:57 ============================================================================ +19:04:57 + + +waiting on router queue for slot.... +19:04:57 ============================================================================ +19:04:57 Slot Id : <409> +19:04:57 Transaction Type : REQUEST +19:04:57 Received From : +19:04:57 ============================================================================ +19:04:57 FNo. Len. Field Value +19:04:57 ============================================================================ +19:04:57 [ 1] [ 4] [0200] +19:04:57 [ 2] [ 16] [6213545000939839] +19:04:57 [ 3] [ 6] [011000] +19:04:57 [ 4] [ 12] [000030000000] +19:04:57 [ 7] [ 10] [0320120402] +19:04:57 [ 11] [ 6] [271373] +19:04:57 [ 12] [ 6] [190402] +19:04:57 [ 13] [ 4] [0320] +19:04:57 [ 14] [ 4] [4912] +19:04:57 [ 15] [ 4] [0320] +19:04:57 [ 18] [ 4] [6011] +19:04:57 [ 19] [ 3] [418] +19:04:57 [ 22] [ 3] [021] +19:04:57 [ 25] [ 2] [01] +19:04:57 [ 28] [ 9] [D00002000] +19:04:57 [ 32] [ 6] [180893] +19:04:57 [ 35] [ 32] [6213545000939839=491212013983994] +19:04:57 [ 37] [ 12] [507912271373] +19:04:57 [ 41] [ 8] [0102SAPA] +19:04:57 [ 42] [ 15] [999999 ] +19:04:57 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +19:04:57 [ 49] [ 3] [418] +19:04:57 [ 52] [ 16] [8440FE35F60166BC] +19:04:57 ============================================================================ +19:04:57 + + +waiting on router queue for slot.... +19:04:57 Sending to : <0> +19:04:57 ============================================================================ +19:04:58 ============================================================================ +19:04:58 Slot Id : <409> +19:04:58 Transaction Type : RESPONSE +19:04:58 Received From : +19:04:58 ============================================================================ +19:04:58 FNo. Len. Field Value +19:04:58 ============================================================================ +19:04:58 [ 1] [ 4] [0210] +19:04:58 [ 2] [ 16] [6213545000939839] +19:04:58 [ 3] [ 6] [011000] +19:04:58 [ 4] [ 12] [000030000000] +19:04:58 [ 7] [ 10] [0320120402] +19:04:58 [ 11] [ 6] [271373] +19:04:58 [ 12] [ 6] [190402] +19:04:58 [ 13] [ 4] [0320] +19:04:58 [ 15] [ 4] [0320] +19:04:58 [ 18] [ 4] [6011] +19:04:58 [ 19] [ 3] [418] +19:04:58 [ 32] [ 6] [180893] +19:04:58 [ 35] [ 32] [6213545000939839=491212013983994] +19:04:58 [ 37] [ 12] [507912271373] +19:04:58 [ 38] [ 6] [542882] +19:04:58 [ 39] [ 2] [00] +19:04:58 [ 41] [ 8] [0102SAPA] +19:04:58 [ 49] [ 3] [418] +19:04:58 [ 54] [ 40] [1001418C0001422626981002418C000142262698] +19:04:58 ============================================================================ +19:04:58 Sending to : +19:04:58 ============================================================================ +19:04:58 + + +waiting on router queue for slot.... +19:04:59 ============================================================================ +19:04:59 Slot Id : <409> +19:04:59 Transaction Type : RESPONSE +19:04:59 Received From : +19:04:59 ============================================================================ +19:04:59 FNo. Len. Field Value +19:04:59 ============================================================================ +19:04:59 [ 1] [ 4] [0210] +19:04:59 [ 2] [ 16] [6213545000939839] +19:04:59 [ 3] [ 6] [011000] +19:04:59 [ 4] [ 12] [000030000000] +19:04:59 [ 7] [ 10] [0320120402] +19:04:59 [ 11] [ 6] [271373] +19:04:59 [ 12] [ 6] [190402] +19:04:59 [ 13] [ 4] [0320] +19:04:59 [ 15] [ 4] [0320] +19:04:59 [ 18] [ 4] [6011] +19:04:59 [ 19] [ 3] [418] +19:04:59 [ 32] [ 6] [180893] +19:04:59 [ 35] [ 32] [6213545000939839=491212013983994] +19:04:59 [ 37] [ 12] [507912271373] +19:04:59 [ 38] [ 6] [542882] +19:04:59 [ 39] [ 2] [00] +19:04:59 [ 41] [ 8] [0102SAPA] +19:04:59 [ 49] [ 3] [418] +19:04:59 [ 54] [ 40] [1001418C0001422626981002418C000142262698] +19:04:59 ============================================================================ +19:04:59 Calculate Source COMM Id = 2 +19:04:59 ============================================================================ +19:04:59 + + +waiting on router queue for slot.... +19:05:06 ============================================================================ +19:05:06 Slot Id : <425> +19:05:06 Transaction Type : REQUEST +19:05:06 Received From : +19:05:06 ============================================================================ +19:05:06 FNo. Len. Field Value +19:05:06 ============================================================================ +19:05:06 [ 1] [ 4] [0800] +19:05:06 [ 7] [ 10] [0321021653] +19:05:06 [ 11] [ 6] [191653] +19:05:06 [ 37] [ 12] [57919191653] +19:05:06 [ 70] [ 3] [301] +19:05:06 ============================================================================ +19:05:06 + + +waiting on router queue for slot.... +19:05:06 Sending to : +19:05:06 ============================================================================ +19:05:06 ============================================================================ +19:05:06 Slot Id : <425> +19:05:06 Transaction Type : RESPONSE +19:05:06 Received From : +19:05:06 ============================================================================ +19:05:06 FNo. Len. Field Value +19:05:06 ============================================================================ +19:05:06 [ 1] [ 4] [0810] +19:05:06 [ 7] [ 10] [0321021653] +19:05:06 [ 11] [ 6] [191653] +19:05:06 [ 37] [ 12] [579191916530] +19:05:06 [ 39] [ 2] [00] +19:05:06 [ 70] [ 3] [810] +19:05:06 ============================================================================ +19:05:06 Calculate Source COMM Id = 6 +19:05:06 ============================================================================ +19:05:06 + + +waiting on router queue for slot.... +19:05:14 ============================================================================ +19:05:14 Slot Id : <364> +19:05:14 Transaction Type : REQUEST +19:05:14 Received From : +19:05:14 ============================================================================ +19:05:14 FNo. Len. Field Value +19:05:14 ============================================================================ +19:05:14 [ 1] [ 4] [0800] +19:05:14 [ 7] [ 10] [0320120421] +19:05:14 [ 11] [ 6] [157856] +19:05:14 [ 70] [ 3] [301] +19:05:14 ============================================================================ +19:05:14 + + +waiting on router queue for slot.... +19:05:14 Sending to : +19:05:14 ============================================================================ +19:05:14 ============================================================================ +19:05:14 Slot Id : <364> +19:05:14 Transaction Type : RESPONSE +19:05:14 Received From : +19:05:14 ============================================================================ +19:05:14 FNo. Len. Field Value +19:05:14 ============================================================================ +19:05:14 [ 1] [ 4] [0810] +19:05:14 [ 7] [ 10] [0320120421] +19:05:14 [ 11] [ 6] [157856] +19:05:14 [ 39] [ 2] [00] +19:05:14 [ 70] [ 3] [301] +19:05:14 ============================================================================ +19:05:14 Calculate Source COMM Id = 2 +19:05:14 ============================================================================ +19:05:14 + + +waiting on router queue for slot.... +19:05:24 ============================================================================ +19:05:24 Slot Id : <388> +19:05:24 Transaction Type : REQUEST +19:05:24 Received From : +19:05:24 ============================================================================ +19:05:24 FNo. Len. Field Value +19:05:24 ============================================================================ +19:05:24 [ 1] [ 4] [0200] +19:05:24 [ 2] [ 16] [1808930800006496] +19:05:24 [ 3] [ 6] [011000] +19:05:24 [ 4] [ 12] [000010000000] +19:05:24 [ 7] [ 10] [0320190518] +19:05:24 [ 11] [ 6] [833695] +19:05:24 [ 12] [ 6] [190518] +19:05:24 [ 13] [ 4] [0320] +19:05:24 [ 15] [ 4] [0320] +19:05:24 [ 18] [ 4] [6011] +19:05:24 [ 22] [ 3] [900] +19:05:24 [ 25] [ 2] [02] +19:05:24 [ 28] [ 9] [D00002000] +19:05:24 [ 32] [ 6] [621354] +19:05:24 [ 35] [ 27] [1808930800006496=1803500354] +19:05:24 [ 37] [ 12] [507902497550] +19:05:24 [ 41] [ 8] [05003200] +19:05:24 [ 42] [ 15] [NATIVE ] +19:05:24 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +19:05:24 [ 49] [ 3] [418] +19:05:24 [ 52] [ 16] [0E8565619CD0B3CC] +19:05:24 ============================================================================ +19:05:24 + + +waiting on router queue for slot.... +19:05:24 Sending to : +19:05:24 ============================================================================ +19:05:24 Sending to : +19:05:24 ============================================================================ +19:05:24 ============================================================================ +19:05:24 Slot Id : <388> +19:05:24 Transaction Type : REQUEST +19:05:24 Received From : +19:05:24 ============================================================================ +19:05:24 FNo. Len. Field Value +19:05:24 ============================================================================ +19:05:24 [ 1] [ 4] [0200] +19:05:24 [ 2] [ 16] [1808930800006496] +19:05:24 [ 3] [ 6] [011000] +19:05:24 [ 4] [ 12] [000010000000] +19:05:24 [ 7] [ 10] [0320190518] +19:05:24 [ 11] [ 6] [833695] +19:05:24 [ 12] [ 6] [190518] +19:05:24 [ 13] [ 4] [0320] +19:05:24 [ 15] [ 4] [0320] +19:05:24 [ 18] [ 4] [6011] +19:05:24 [ 22] [ 3] [900] +19:05:24 [ 25] [ 2] [02] +19:05:24 [ 28] [ 9] [D00002000] +19:05:24 [ 32] [ 6] [621354] +19:05:24 [ 35] [ 27] [1808930800006496=1803500354] +19:05:24 [ 37] [ 12] [507902497550] +19:05:24 [ 41] [ 8] [05003200] +19:05:24 [ 42] [ 15] [NATIVE ] +19:05:24 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +19:05:24 [ 49] [ 3] [418] +19:05:24 [ 52] [ 16] [0E8565619CD0B3CC] +19:05:24 ============================================================================ +19:05:24 + + +waiting on router queue for slot.... +19:05:24 Sending to : +19:05:24 ============================================================================ +19:05:24 ============================================================================ +19:05:24 Slot Id : <388> +19:05:24 Transaction Type : REQUEST +19:05:24 Received From : +19:05:24 ============================================================================ +19:05:24 FNo. Len. Field Value +19:05:24 ============================================================================ +19:05:24 [ 1] [ 4] [0200] +19:05:24 [ 2] [ 16] [1808930800006496] +19:05:24 [ 3] [ 6] [011000] +19:05:24 [ 4] [ 12] [000010000000] +19:05:24 [ 7] [ 10] [0320190518] +19:05:24 [ 11] [ 6] [833695] +19:05:24 [ 12] [ 6] [190518] +19:05:24 [ 13] [ 4] [0320] +19:05:24 [ 15] [ 4] [0320] +19:05:24 [ 18] [ 4] [6011] +19:05:24 [ 22] [ 3] [900] +19:05:24 [ 25] [ 2] [02] +19:05:24 [ 28] [ 9] [D00002000] +19:05:24 [ 32] [ 6] [621354] +19:05:24 [ 35] [ 27] [1808930800006496=1803500354] +19:05:24 [ 37] [ 12] [507902497550] +19:05:24 [ 41] [ 8] [05003200] +19:05:24 [ 42] [ 15] [NATIVE ] +19:05:24 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +19:05:24 [ 49] [ 3] [418] +19:05:24 [ 52] [ 16] [C4B0E17E598C3945] +19:05:24 ============================================================================ +19:05:24 + + +waiting on router queue for slot.... +19:05:24 Sending to : <2> +19:05:24 ============================================================================ +19:05:27 ============================================================================ +19:05:27 Slot Id : <388> +19:05:27 Transaction Type : RESPONSE +19:05:27 Received From : +19:05:27 ============================================================================ +19:05:27 FNo. Len. Field Value +19:05:27 ============================================================================ +19:05:27 [ 1] [ 4] [0210] +19:05:27 [ 2] [ 16] [1808930800006496] +19:05:27 [ 3] [ 6] [011000] +19:05:27 [ 4] [ 12] [000010000000] +19:05:27 [ 6] [ 12] [000010000000] +19:05:27 [ 7] [ 10] [0320190518] +19:05:27 [ 11] [ 6] [833695] +19:05:27 [ 12] [ 6] [190518] +19:05:27 [ 13] [ 4] [0320] +19:05:27 [ 18] [ 4] [6011] +19:05:27 [ 19] [ 3] [418] +19:05:27 [ 22] [ 3] [021] +19:05:27 [ 32] [ 6] [621354] +19:05:27 [ 35] [ 27] [1808930800006496=1803500354] +19:05:27 [ 37] [ 12] [507902497550] +19:05:27 [ 38] [ 6] [833695] +19:05:27 [ 39] [ 2] [00] +19:05:27 [ 41] [ 8] [05003200] +19:05:27 [ 49] [ 3] [418] +19:05:27 [ 52] [ 16] [C4B0E17E598C3945] +19:05:27 [ 54] [ 20] [1001418C000499236100] +19:05:27 ============================================================================ +19:05:27 Sending to : +19:05:27 ============================================================================ +19:05:27 + + +waiting on router queue for slot.... +19:05:29 ============================================================================ +19:05:29 Slot Id : <388> +19:05:29 Transaction Type : RESPONSE +19:05:29 Received From : +19:05:29 ============================================================================ +19:05:29 FNo. Len. Field Value +19:05:29 ============================================================================ +19:05:29 [ 1] [ 4] [0210] +19:05:29 [ 2] [ 16] [1808930800006496] +19:05:29 [ 3] [ 6] [011000] +19:05:29 [ 4] [ 12] [000010000000] +19:05:29 [ 6] [ 12] [000010000000] +19:05:29 [ 7] [ 10] [0320190518] +19:05:29 [ 11] [ 6] [833695] +19:05:29 [ 12] [ 6] [190518] +19:05:29 [ 13] [ 4] [0320] +19:05:29 [ 18] [ 4] [6011] +19:05:29 [ 19] [ 3] [418] +19:05:29 [ 22] [ 3] [021] +19:05:29 [ 32] [ 6] [621354] +19:05:29 [ 35] [ 27] [1808930800006496=1803500354] +19:05:29 [ 37] [ 12] [507902497550] +19:05:29 [ 38] [ 6] [833695] +19:05:29 [ 39] [ 2] [00] +19:05:29 [ 41] [ 8] [05003200] +19:05:29 [ 49] [ 3] [418] +19:05:29 [ 52] [ 16] [C4B0E17E598C3945] +19:05:29 [ 54] [ 20] [1001418C000499236100] +19:05:29 ============================================================================ +19:05:29 Calculate Source COMM Id = 0 +19:05:29 ============================================================================ +19:05:29 + + +waiting on router queue for slot.... +19:05:35 ============================================================================ +19:05:35 Slot Id : <367> +19:05:35 Transaction Type : REQUEST +19:05:35 Received From : +19:05:35 ============================================================================ +19:05:35 FNo. Len. Field Value +19:05:35 ============================================================================ +19:05:35 [ 1] [ 4] [0800] +19:05:35 [ 2] [ 5] [02531] +19:05:35 [ 3] [ 6] [579198] +19:05:35 [ 7] [ 10] [0320120535] +19:05:35 [ 11] [ 6] [807520] +19:05:35 [ 15] [ 10] [0320120535] +19:05:35 [ 37] [ 11] [57919807520] +19:05:35 [ 70] [ 3] [001] +19:05:35 ============================================================================ +19:05:35 + + +waiting on router queue for slot.... +19:05:35 ============================================================================ +19:05:35 Slot Id : <367> +19:05:35 Transaction Type : RESPONSE +19:05:35 Received From : +19:05:35 ============================================================================ +19:05:35 FNo. Len. Field Value +19:05:35 ============================================================================ +19:05:35 [ 1] [ 4] [0810] +19:05:35 [ 7] [ 10] [0320120535] +19:05:35 [ 11] [ 6] [807520] +19:05:35 [ 15] [ 4] [0320] +19:05:35 [ 37] [ 12] [57919807520] +19:05:35 [ 39] [ 2] [00] +19:05:35 [ 70] [ 3] [001] +19:05:35 ============================================================================ +19:05:35 Sending to : +19:05:35 ============================================================================ +19:05:35 + + +waiting on router queue for slot.... +19:05:36 ============================================================================ +19:05:36 Slot Id : <430> +19:05:36 Transaction Type : REQUEST +19:05:36 Received From : +19:05:36 ============================================================================ +19:05:36 FNo. Len. Field Value +19:05:36 ============================================================================ +19:05:36 [ 1] [ 4] [0800] +19:05:36 [ 7] [ 10] [0320120442] +19:05:36 [ 11] [ 6] [157857] +19:05:36 [ 70] [ 3] [301] +19:05:36 ============================================================================ +19:05:36 + + +waiting on router queue for slot.... +19:05:36 Sending to : +19:05:36 ============================================================================ +19:05:36 ============================================================================ +19:05:36 Slot Id : <430> +19:05:36 Transaction Type : RESPONSE +19:05:36 Received From : +19:05:36 ============================================================================ +19:05:36 FNo. Len. Field Value +19:05:36 ============================================================================ +19:05:36 [ 1] [ 4] [0810] +19:05:36 [ 7] [ 10] [0320120442] +19:05:36 [ 11] [ 6] [157857] +19:05:36 [ 39] [ 2] [00] +19:05:36 [ 70] [ 3] [301] +19:05:36 ============================================================================ +19:05:36 Calculate Source COMM Id = 2 +19:05:36 ============================================================================ +19:05:36 + + +waiting on router queue for slot.... +19:05:51 ============================================================================ +19:05:51 Slot Id : <441> +19:05:51 Transaction Type : REQUEST +19:05:51 Received From : +19:05:51 ============================================================================ +19:05:51 FNo. Len. Field Value +19:05:51 ============================================================================ +19:05:51 [ 1] [ 4] [0800] +19:05:51 [ 7] [ 10] [0320120457] +19:05:51 [ 11] [ 6] [157858] +19:05:51 [ 70] [ 3] [301] +19:05:51 ============================================================================ +19:05:51 + + +waiting on router queue for slot.... +19:05:51 Sending to : +19:05:51 ============================================================================ +19:05:51 ============================================================================ +19:05:51 Slot Id : <441> +19:05:51 Transaction Type : RESPONSE +19:05:51 Received From : +19:05:51 ============================================================================ +19:05:51 FNo. Len. Field Value +19:05:51 ============================================================================ +19:05:51 [ 1] [ 4] [0810] +19:05:51 [ 7] [ 10] [0320120457] +19:05:51 [ 11] [ 6] [157858] +19:05:51 [ 39] [ 2] [00] +19:05:51 [ 70] [ 3] [301] +19:05:51 ============================================================================ +19:05:51 Calculate Source COMM Id = 2 +19:05:51 ============================================================================ +19:05:51 + + +waiting on router queue for slot.... +19:06:02 ============================================================================ +19:06:02 Slot Id : <403> +19:06:02 Transaction Type : REQUEST +19:06:02 Received From : +19:06:02 ============================================================================ +19:06:02 FNo. Len. Field Value +19:06:02 ============================================================================ +19:06:02 [ 1] [ 4] [0800] +19:06:02 [ 7] [ 10] [0320120509] +19:06:02 [ 11] [ 6] [157859] +19:06:02 [ 70] [ 3] [301] +19:06:02 ============================================================================ +19:06:02 + + +waiting on router queue for slot.... +19:06:02 Sending to : +19:06:02 ============================================================================ +19:06:02 ============================================================================ +19:06:02 Slot Id : <403> +19:06:02 Transaction Type : RESPONSE +19:06:02 Received From : +19:06:02 ============================================================================ +19:06:02 FNo. Len. Field Value +19:06:02 ============================================================================ +19:06:02 [ 1] [ 4] [0810] +19:06:02 [ 7] [ 10] [0320120509] +19:06:02 [ 11] [ 6] [157859] +19:06:02 [ 39] [ 2] [00] +19:06:02 [ 70] [ 3] [301] +19:06:02 ============================================================================ +19:06:02 Calculate Source COMM Id = 2 +19:06:02 ============================================================================ +19:06:02 + + +waiting on router queue for slot.... +19:06:11 ============================================================================ +19:06:11 Slot Id : <437> +19:06:11 Transaction Type : REQUEST +19:06:11 Received From : +19:06:11 ============================================================================ +19:06:11 FNo. Len. Field Value +19:06:11 ============================================================================ +19:06:11 [ 1] [ 4] [0800] +19:06:11 [ 7] [ 10] [0321021758] +19:06:11 [ 11] [ 6] [191758] +19:06:11 [ 37] [ 12] [57919191758] +19:06:11 [ 70] [ 3] [301] +19:06:11 ============================================================================ +19:06:11 + + +waiting on router queue for slot.... +19:06:11 Sending to : +19:06:11 ============================================================================ +19:06:11 ============================================================================ +19:06:11 Slot Id : <437> +19:06:11 Transaction Type : RESPONSE +19:06:11 Received From : +19:06:11 ============================================================================ +19:06:11 FNo. Len. Field Value +19:06:11 ============================================================================ +19:06:11 [ 1] [ 4] [0810] +19:06:11 [ 7] [ 10] [0321021758] +19:06:11 [ 11] [ 6] [191758] +19:06:11 [ 37] [ 12] [579191917580] +19:06:11 [ 39] [ 2] [00] +19:06:11 [ 70] [ 3] [810] +19:06:11 ============================================================================ +19:06:11 Calculate Source COMM Id = 6 +19:06:11 ============================================================================ +19:06:11 + + +waiting on router queue for slot.... +19:06:12 ============================================================================ +19:06:12 Slot Id : <402> +19:06:12 Transaction Type : REQUEST +19:06:12 Received From : +19:06:12 ============================================================================ +19:06:12 FNo. Len. Field Value +19:06:12 ============================================================================ +19:06:12 [ 1] [ 4] [0800] +19:06:12 [ 7] [ 10] [0320120519] +19:06:12 [ 11] [ 6] [157860] +19:06:12 [ 70] [ 3] [301] +19:06:12 ============================================================================ +19:06:12 + + +waiting on router queue for slot.... +19:06:12 Sending to : +19:06:12 ============================================================================ +19:06:12 ============================================================================ +19:06:12 Slot Id : <402> +19:06:12 Transaction Type : RESPONSE +19:06:12 Received From : +19:06:12 ============================================================================ +19:06:12 FNo. Len. Field Value +19:06:12 ============================================================================ +19:06:12 [ 1] [ 4] [0810] +19:06:12 [ 7] [ 10] [0320120519] +19:06:12 [ 11] [ 6] [157860] +19:06:12 [ 39] [ 2] [00] +19:06:12 [ 70] [ 3] [301] +19:06:12 ============================================================================ +19:06:12 Calculate Source COMM Id = 2 +19:06:12 ============================================================================ +19:06:12 + + +waiting on router queue for slot.... +19:06:19 ============================================================================ +19:06:19 Slot Id : <362> +19:06:19 Transaction Type : REQUEST +19:06:19 Received From : +19:06:19 ============================================================================ +19:06:19 FNo. Len. Field Value +19:06:19 ============================================================================ +19:06:19 [ 1] [ 4] [0200] +19:06:19 [ 2] [ 16] [1808930800006496] +19:06:19 [ 3] [ 6] [301000] +19:06:19 [ 4] [ 12] [000000000000] +19:06:19 [ 7] [ 10] [0320190614] +19:06:19 [ 11] [ 6] [833825] +19:06:19 [ 12] [ 6] [190614] +19:06:19 [ 13] [ 4] [0320] +19:06:19 [ 15] [ 4] [0320] +19:06:19 [ 18] [ 4] [6011] +19:06:19 [ 22] [ 3] [900] +19:06:19 [ 25] [ 2] [02] +19:06:19 [ 28] [ 9] [D00000000] +19:06:19 [ 32] [ 6] [621354] +19:06:19 [ 35] [ 27] [1808930800006496=1803500354] +19:06:19 [ 37] [ 12] [507902497551] +19:06:19 [ 41] [ 8] [05003200] +19:06:19 [ 42] [ 15] [NATIVE ] +19:06:19 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +19:06:19 [ 49] [ 3] [418] +19:06:19 [ 52] [ 16] [0E8565619CD0B3CC] +19:06:19 ============================================================================ +19:06:19 + + +waiting on router queue for slot.... +19:06:19 Sending to : +19:06:19 ============================================================================ +19:06:19 Sending to : +19:06:19 ============================================================================ +19:06:19 ============================================================================ +19:06:19 Slot Id : <362> +19:06:19 Transaction Type : REQUEST +19:06:19 Received From : +19:06:19 ============================================================================ +19:06:19 FNo. Len. Field Value +19:06:19 ============================================================================ +19:06:19 [ 1] [ 4] [0200] +19:06:19 [ 2] [ 16] [1808930800006496] +19:06:19 [ 3] [ 6] [301000] +19:06:19 [ 4] [ 12] [000000000000] +19:06:19 [ 7] [ 10] [0320190614] +19:06:19 [ 11] [ 6] [833825] +19:06:19 [ 12] [ 6] [190614] +19:06:19 [ 13] [ 4] [0320] +19:06:19 [ 15] [ 4] [0320] +19:06:19 [ 18] [ 4] [6011] +19:06:19 [ 22] [ 3] [900] +19:06:19 [ 25] [ 2] [02] +19:06:19 [ 28] [ 9] [D00000000] +19:06:19 [ 32] [ 6] [621354] +19:06:19 [ 35] [ 27] [1808930800006496=1803500354] +19:06:19 [ 37] [ 12] [507902497551] +19:06:19 [ 41] [ 8] [05003200] +19:06:19 [ 42] [ 15] [NATIVE ] +19:06:19 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +19:06:19 [ 49] [ 3] [418] +19:06:19 [ 52] [ 16] [0E8565619CD0B3CC] +19:06:19 ============================================================================ +19:06:19 + + +waiting on router queue for slot.... +19:06:19 Sending to : +19:06:19 ============================================================================ +19:06:19 ============================================================================ +19:06:19 Slot Id : <362> +19:06:19 Transaction Type : REQUEST +19:06:19 Received From : +19:06:19 ============================================================================ +19:06:19 FNo. Len. Field Value +19:06:19 ============================================================================ +19:06:19 [ 1] [ 4] [0200] +19:06:19 [ 2] [ 16] [1808930800006496] +19:06:19 [ 3] [ 6] [301000] +19:06:19 [ 4] [ 12] [000000000000] +19:06:19 [ 7] [ 10] [0320190614] +19:06:19 [ 11] [ 6] [833825] +19:06:19 [ 12] [ 6] [190614] +19:06:19 [ 13] [ 4] [0320] +19:06:19 [ 15] [ 4] [0320] +19:06:19 [ 18] [ 4] [6011] +19:06:19 [ 22] [ 3] [900] +19:06:19 [ 25] [ 2] [02] +19:06:19 [ 28] [ 9] [D00000000] +19:06:19 [ 32] [ 6] [621354] +19:06:19 [ 35] [ 27] [1808930800006496=1803500354] +19:06:19 [ 37] [ 12] [507902497551] +19:06:19 [ 41] [ 8] [05003200] +19:06:19 [ 42] [ 15] [NATIVE ] +19:06:19 [ 43] [ 40] [VIENGXAY VILLAGE LuangprabangLAO] +19:06:19 [ 49] [ 3] [418] +19:06:19 [ 52] [ 16] [C4B0E17E598C3945] +19:06:19 ============================================================================ +19:06:19 + + +waiting on router queue for slot.... +19:06:19 Sending to : <2> +19:06:19 ============================================================================ +19:06:22 ============================================================================ +19:06:22 Slot Id : <385> +19:06:22 Transaction Type : REQUEST +19:06:22 Received From : +19:06:22 ============================================================================ +19:06:22 FNo. Len. Field Value +19:06:22 ============================================================================ +19:06:22 [ 1] [ 4] [0800] +19:06:22 [ 7] [ 10] [0320120412] +19:06:22 [ 11] [ 6] [089222] +19:06:22 [ 37] [ 12] [57919089222] +19:06:22 [ 70] [ 3] [301] +19:06:22 ============================================================================ +19:06:22 + + +waiting on router queue for slot.... +19:06:22 Sending to : +19:06:22 ============================================================================ +19:06:22 ============================================================================ +19:06:22 Slot Id : <385> +19:06:22 Transaction Type : RESPONSE +19:06:22 Received From : +19:06:22 ============================================================================ +19:06:22 FNo. Len. Field Value +19:06:22 ============================================================================ +19:06:22 [ 1] [ 4] [0810] +19:06:22 [ 7] [ 10] [0320120412] +19:06:22 [ 11] [ 6] [089222] +19:06:22 [ 37] [ 12] [579190892220] +19:06:22 [ 39] [ 2] [00] +19:06:22 [ 70] [ 3] [810] +19:06:22 ============================================================================ +19:06:22 Calculate Source COMM Id = 4 +19:06:22 ============================================================================ +19:06:22 + + +waiting on router queue for slot.... +19:06:22 ============================================================================ +19:06:22 Slot Id : <362> +19:06:22 Transaction Type : RESPONSE +19:06:22 Received From : +19:06:22 ============================================================================ +19:06:22 FNo. Len. Field Value +19:06:22 ============================================================================ +19:06:22 [ 1] [ 4] [0210] +19:06:22 [ 2] [ 16] [1808930800006496] +19:06:22 [ 3] [ 6] [301000] +19:06:22 [ 7] [ 10] [0320190614] +19:06:22 [ 11] [ 6] [833825] +19:06:22 [ 12] [ 6] [190614] +19:06:22 [ 13] [ 4] [0320] +19:06:22 [ 14] [ 4] [1803] +19:06:22 [ 19] [ 3] [418] +19:06:22 [ 32] [ 6] [621354] +19:06:22 [ 37] [ 12] [507902497551] +19:06:22 [ 38] [ 6] [833825] +19:06:22 [ 39] [ 2] [00] +19:06:22 [ 41] [ 8] [05003200] +19:06:22 [ 49] [ 3] [418] +19:06:22 [ 52] [ 16] [C4B0E17E598C3945] +19:06:22 [ 54] [ 20] [1002418C000499236100] +19:06:22 ============================================================================ +19:06:22 Sending to : +19:06:22 ============================================================================ +19:06:22 + + +waiting on router queue for slot.... +19:06:24 ============================================================================ +19:06:24 Slot Id : <362> +19:06:24 Transaction Type : RESPONSE +19:06:24 Received From : +19:06:24 ============================================================================ +19:06:24 FNo. Len. Field Value +19:06:24 ============================================================================ +19:06:24 [ 1] [ 4] [0210] +19:06:24 [ 2] [ 16] [1808930800006496] +19:06:24 [ 3] [ 6] [301000] +19:06:24 [ 7] [ 10] [0320190614] +19:06:24 [ 11] [ 6] [833825] +19:06:24 [ 12] [ 6] [190614] +19:06:24 [ 13] [ 4] [0320] +19:06:24 [ 14] [ 4] [1803] +19:06:24 [ 19] [ 3] [418] +19:06:24 [ 32] [ 6] [621354] +19:06:24 [ 37] [ 12] [507902497551] +19:06:24 [ 38] [ 6] [833825] +19:06:24 [ 39] [ 2] [00] +19:06:24 [ 41] [ 8] [05003200] +19:06:24 [ 49] [ 3] [418] +19:06:24 [ 52] [ 16] [C4B0E17E598C3945] +19:06:24 [ 54] [ 20] [1002418C000499236100] +19:06:24 ============================================================================ +19:06:24 Calculate Source COMM Id = 0 +19:06:24 ============================================================================ +19:06:24 + + +waiting on router queue for slot.... +19:06:33 ============================================================================ +19:06:33 Slot Id : <375> +19:06:33 Transaction Type : REQUEST +19:06:33 Received From : +19:06:33 ============================================================================ +19:06:33 FNo. Len. Field Value +19:06:33 ============================================================================ +19:06:33 [ 1] [ 4] [0800] +19:06:33 [ 7] [ 10] [0320120540] +19:06:33 [ 11] [ 6] [157861] +19:06:33 [ 70] [ 3] [301] +19:06:33 ============================================================================ +19:06:33 + + +waiting on router queue for slot.... +19:06:33 Sending to : +19:06:33 ============================================================================ +19:06:33 ============================================================================ +19:06:33 Slot Id : <375> +19:06:33 Transaction Type : RESPONSE +19:06:33 Received From : +19:06:33 ============================================================================ +19:06:33 FNo. Len. Field Value +19:06:33 ============================================================================ +19:06:33 [ 1] [ 4] [0810] +19:06:33 [ 7] [ 10] [0320120540] +19:06:33 [ 11] [ 6] [157861] +19:06:33 [ 39] [ 2] [00] +19:06:33 [ 70] [ 3] [301] +19:06:33 ============================================================================ +19:06:33 Calculate Source COMM Id = 2 +19:06:33 ============================================================================ +19:06:33 + + +waiting on router queue for slot.... +19:06:37 ============================================================================ +19:06:37 Slot Id : <408> +19:06:37 Transaction Type : REQUEST +19:06:37 Received From : +19:06:37 ============================================================================ +19:06:37 FNo. Len. Field Value +19:06:37 ============================================================================ +19:06:37 [ 1] [ 4] [0800] +19:06:37 [ 2] [ 5] [02531] +19:06:37 [ 3] [ 6] [579198] +19:06:37 [ 7] [ 10] [0320120637] +19:06:37 [ 11] [ 6] [807521] +19:06:37 [ 15] [ 10] [0320120637] +19:06:37 [ 37] [ 11] [57919807521] +19:06:37 [ 70] [ 3] [001] +19:06:37 ============================================================================ +19:06:37 + + +waiting on router queue for slot.... +19:06:37 ============================================================================ +19:06:37 Slot Id : <408> +19:06:37 Transaction Type : RESPONSE +19:06:37 Received From : +19:06:37 ============================================================================ +19:06:37 FNo. Len. Field Value +19:06:37 ============================================================================ +19:06:37 [ 1] [ 4] [0810] +19:06:37 [ 7] [ 10] [0320120637] +19:06:37 [ 11] [ 6] [807521] +19:06:37 [ 15] [ 4] [0320] +19:06:37 [ 37] [ 12] [57919807521] +19:06:37 [ 39] [ 2] [00] +19:06:37 [ 70] [ 3] [001] +19:06:37 ============================================================================ +19:06:37 Sending to : +19:06:37 ============================================================================ +19:06:37 + + +waiting on router queue for slot.... +19:06:44 ============================================================================ +19:06:44 Slot Id : <450> +19:06:44 Transaction Type : REQUEST +19:06:44 Received From : +19:06:44 ============================================================================ +19:06:44 FNo. Len. Field Value +19:06:44 ============================================================================ +19:06:44 [ 1] [ 4] [0800] +19:06:44 [ 7] [ 10] [0320120551] +19:06:44 [ 11] [ 6] [157862] +19:06:44 [ 70] [ 3] [301] +19:06:44 ============================================================================ +19:06:44 + + +waiting on router queue for slot.... +19:06:44 Sending to : +19:06:44 ============================================================================ +19:06:44 ============================================================================ +19:06:44 Slot Id : <450> +19:06:44 Transaction Type : RESPONSE +19:06:44 Received From : +19:06:44 ============================================================================ +19:06:44 FNo. Len. Field Value +19:06:44 ============================================================================ +19:06:44 [ 1] [ 4] [0810] +19:06:44 [ 7] [ 10] [0320120551] +19:06:44 [ 11] [ 6] [157862] +19:06:44 [ 39] [ 2] [00] +19:06:44 [ 70] [ 3] [301] +19:06:44 ============================================================================ +19:06:44 Calculate Source COMM Id = 2 +19:06:44 ============================================================================ +19:06:44 + + +waiting on router queue for slot.... +19:06:56 ============================================================================ +19:06:56 Slot Id : <392> +19:06:56 Transaction Type : REQUEST +19:06:56 Received From : +19:06:56 ============================================================================ +19:06:56 FNo. Len. Field Value +19:06:56 ============================================================================ +19:06:56 [ 1] [ 4] [0200] +19:06:56 [ 2] [ 16] [6213541000530207] +19:06:56 [ 3] [ 6] [300000] +19:06:56 [ 4] [ 12] [000000000000] +19:06:56 [ 7] [ 10] [0320191843] +19:06:56 [ 11] [ 6] [412745] +19:06:56 [ 12] [ 6] [191843] +19:06:56 [ 13] [ 4] [0320] +19:06:56 [ 14] [ 4] [1249] +19:06:56 [ 15] [ 4] [0320] +19:06:56 [ 18] [ 4] [6011] +19:06:56 [ 19] [ 3] [418] +19:06:56 [ 22] [ 3] [021] +19:06:56 [ 25] [ 2] [01] +19:06:56 [ 28] [ 9] [D00000000] +19:06:56 [ 32] [ 6] [123401] +19:06:56 [ 35] [ 32] [6213541000530207=491212013020931] +19:06:56 [ 37] [ 12] [507900325463] +19:06:56 [ 41] [ 8] [01002400] +19:06:56 [ 42] [ 15] [APT ] +19:06:56 [ 43] [ 40] [LAOS NONGTAENG LAOS LAO] +19:06:56 [ 49] [ 3] [418] +19:06:56 [ 52] [ 16] [A1A4F48CA2A53FC5] +19:06:56 ============================================================================ +19:06:56 + + +waiting on router queue for slot.... +19:06:56 Sending to : +19:06:56 ============================================================================ +19:06:56 Sending to : +19:06:56 ============================================================================ +19:06:56 ============================================================================ +19:06:56 Slot Id : <392> +19:06:56 Transaction Type : REQUEST +19:06:56 Received From : +19:06:56 ============================================================================ +19:06:56 FNo. Len. Field Value +19:06:56 ============================================================================ +19:06:56 [ 1] [ 4] [0200] +19:06:56 [ 2] [ 16] [6213541000530207] +19:06:56 [ 3] [ 6] [300000] +19:06:56 [ 4] [ 12] [000000000000] +19:06:56 [ 7] [ 10] [0320191843] +19:06:56 [ 11] [ 6] [412745] +19:06:56 [ 12] [ 6] [191843] +19:06:56 [ 13] [ 4] [0320] +19:06:56 [ 14] [ 4] [1249] +19:06:56 [ 15] [ 4] [0320] +19:06:56 [ 18] [ 4] [6011] +19:06:56 [ 19] [ 3] [418] +19:06:56 [ 22] [ 3] [021] +19:06:56 [ 25] [ 2] [01] +19:06:56 [ 28] [ 9] [D00000000] +19:06:56 [ 32] [ 6] [123401] +19:06:56 [ 35] [ 32] [6213541000530207=491212013020931] +19:06:56 [ 37] [ 12] [507900325463] +19:06:56 [ 41] [ 8] [01002400] +19:06:56 [ 42] [ 15] [APT ] +19:06:56 [ 43] [ 40] [LAOS NONGTAENG LAOS LAO] +19:06:56 [ 49] [ 3] [418] +19:06:56 [ 52] [ 16] [A1A4F48CA2A53FC5] +19:06:56 ============================================================================ +19:06:56 + + +waiting on router queue for slot.... +19:06:56 Sending to : +19:06:56 ============================================================================ +19:06:56 ============================================================================ +19:06:56 Slot Id : <392> +19:06:56 Transaction Type : REQUEST +19:06:56 Received From : +19:06:56 ============================================================================ +19:06:56 FNo. Len. Field Value +19:06:56 ============================================================================ +19:06:56 [ 1] [ 4] [0200] +19:06:56 [ 2] [ 16] [6213541000530207] +19:06:56 [ 3] [ 6] [300000] +19:06:56 [ 4] [ 12] [000000000000] +19:06:56 [ 7] [ 10] [0320191843] +19:06:56 [ 11] [ 6] [412745] +19:06:56 [ 12] [ 6] [191843] +19:06:56 [ 13] [ 4] [0320] +19:06:56 [ 14] [ 4] [1249] +19:06:56 [ 15] [ 4] [0320] +19:06:56 [ 18] [ 4] [6011] +19:06:56 [ 19] [ 3] [418] +19:06:56 [ 22] [ 3] [021] +19:06:56 [ 25] [ 2] [01] +19:06:56 [ 28] [ 9] [D00000000] +19:06:56 [ 32] [ 6] [123401] +19:06:56 [ 35] [ 32] [6213541000530207=491212013020931] +19:06:56 [ 37] [ 12] [507900325463] +19:06:56 [ 41] [ 8] [01002400] +19:06:56 [ 42] [ 15] [APT ] +19:06:56 [ 43] [ 40] [LAOS NONGTAENG LAOS LAO] +19:06:56 [ 49] [ 3] [418] +19:06:56 [ 52] [ 16] [1DCBF29CD51B9A2B] +19:06:56 ============================================================================ +19:06:56 + + +waiting on router queue for slot.... +19:06:56 Sending to : <0> +19:06:56 ============================================================================ +19:06:57 ============================================================================ +19:06:57 Slot Id : <392> +19:06:57 Transaction Type : RESPONSE +19:06:57 Received From : +19:06:57 ============================================================================ +19:06:57 FNo. Len. Field Value +19:06:57 ============================================================================ +19:06:57 [ 1] [ 4] [0210] +19:06:57 [ 2] [ 16] [6213541000530207] +19:06:57 [ 3] [ 6] [300000] +19:06:57 [ 4] [ 12] [000000000000] +19:06:57 [ 7] [ 10] [0320191843] +19:06:57 [ 11] [ 6] [412745] +19:06:57 [ 12] [ 6] [191843] +19:06:57 [ 13] [ 4] [0320] +19:06:57 [ 15] [ 4] [0320] +19:06:57 [ 18] [ 4] [6011] +19:06:57 [ 19] [ 3] [418] +19:06:57 [ 32] [ 6] [123401] +19:06:57 [ 35] [ 32] [6213541000530207=491212013020931] +19:06:57 [ 37] [ 12] [507900325463] +19:06:57 [ 38] [ 6] [480816] +19:06:57 [ 39] [ 2] [00] +19:06:57 [ 41] [ 8] [01002400] +19:06:57 [ 49] [ 3] [418] +19:06:57 [ 54] [ 40] [0001840C0000003331390002840C000000333139] +19:06:57 ============================================================================ +19:06:57 Sending to : +19:06:57 ============================================================================ +19:06:57 + + +waiting on router queue for slot.... +19:06:58 ============================================================================ +19:06:58 Slot Id : <392> +19:06:58 Transaction Type : RESPONSE +19:06:58 Received From : +19:06:58 ============================================================================ +19:06:58 FNo. Len. Field Value +19:06:58 ============================================================================ +19:06:58 [ 1] [ 4] [0210] +19:06:58 [ 2] [ 16] [6213541000530207] +19:06:58 [ 3] [ 6] [300000] +19:06:58 [ 4] [ 12] [000000000000] +19:06:58 [ 7] [ 10] [0320191843] +19:06:58 [ 11] [ 6] [412745] +19:06:58 [ 12] [ 6] [191843] +19:06:58 [ 13] [ 4] [0320] +19:06:58 [ 15] [ 4] [0320] +19:06:58 [ 18] [ 4] [6011] +19:06:58 [ 19] [ 3] [418] +19:06:58 [ 32] [ 6] [123401] +19:06:58 [ 35] [ 32] [6213541000530207=491212013020931] +19:06:58 [ 37] [ 12] [507900325463] +19:06:58 [ 38] [ 6] [480816] +19:06:58 [ 39] [ 2] [00] +19:06:58 [ 41] [ 8] [01002400] +19:06:58 [ 49] [ 3] [418] +19:06:58 [ 54] [ 40] [0001840C0000003331390002840C000000333139] +19:06:58 ============================================================================ +19:06:58 Calculate Source COMM Id = 6 +19:06:58 ============================================================================ +19:06:58 + + +waiting on router queue for slot.... +19:06:59 ============================================================================ +19:06:59 Slot Id : <417> +19:06:59 Transaction Type : REQUEST +19:06:59 Received From : +19:06:59 ============================================================================ +19:06:59 FNo. Len. Field Value +19:06:59 ============================================================================ +19:06:59 [ 1] [ 4] [0800] +19:06:59 [ 7] [ 10] [0320120606] +19:06:59 [ 11] [ 6] [157863] +19:06:59 [ 70] [ 3] [301] +19:06:59 ============================================================================ +19:06:59 + + +waiting on router queue for slot.... +19:06:59 Sending to : +19:06:59 ============================================================================ +19:06:59 ============================================================================ +19:06:59 Slot Id : <417> +19:06:59 Transaction Type : RESPONSE +19:06:59 Received From : +19:06:59 ============================================================================ +19:06:59 FNo. Len. Field Value +19:06:59 ============================================================================ +19:06:59 [ 1] [ 4] [0810] +19:06:59 [ 7] [ 10] [0320120606] +19:06:59 [ 11] [ 6] [157863] +19:06:59 [ 39] [ 2] [00] +19:06:59 [ 70] [ 3] [301] +19:06:59 ============================================================================ +19:06:59 Calculate Source COMM Id = 2 +19:06:59 ============================================================================ +19:06:59 + + +waiting on router queue for slot.... +19:07:10 ============================================================================ +19:07:10 Slot Id : <412> +19:07:10 Transaction Type : REQUEST +19:07:10 Received From : +19:07:10 ============================================================================ +19:07:10 FNo. Len. Field Value +19:07:10 ============================================================================ +19:07:10 [ 1] [ 4] [0800] +19:07:10 [ 7] [ 10] [0320120617] +19:07:10 [ 11] [ 6] [157864] +19:07:10 [ 70] [ 3] [301] +19:07:10 ============================================================================ +19:07:10 + + +waiting on router queue for slot.... +19:07:10 Sending to : +19:07:10 ============================================================================ +19:07:10 ============================================================================ +19:07:10 Slot Id : <412> +19:07:10 Transaction Type : RESPONSE +19:07:10 Received From : +19:07:10 ============================================================================ +19:07:10 FNo. Len. Field Value +19:07:10 ============================================================================ +19:07:10 [ 1] [ 4] [0810] +19:07:10 [ 7] [ 10] [0320120617] +19:07:10 [ 11] [ 6] [157864] +19:07:10 [ 39] [ 2] [00] +19:07:10 [ 70] [ 3] [301] +19:07:10 ============================================================================ +19:07:10 Calculate Source COMM Id = 2 +19:07:10 ============================================================================ +19:07:10 + + +waiting on router queue for slot.... +19:07:16 ============================================================================ +19:07:16 Slot Id : <447> +19:07:16 Transaction Type : REQUEST +19:07:16 Received From : +19:07:16 ============================================================================ +19:07:16 FNo. Len. Field Value +19:07:16 ============================================================================ +19:07:16 [ 1] [ 4] [0200] +19:07:16 [ 2] [ 16] [6213543000069483] +19:07:16 [ 3] [ 6] [010000] +19:07:16 [ 4] [ 12] [000010000000] +19:07:16 [ 7] [ 10] [0320190506] +19:07:16 [ 11] [ 6] [955627] +19:07:16 [ 12] [ 6] [190506] +19:07:16 [ 13] [ 4] [0320] +19:07:16 [ 15] [ 4] [0320] +19:07:16 [ 18] [ 4] [6011] +19:07:16 [ 19] [ 3] [418] +19:07:16 [ 22] [ 3] [021] +19:07:16 [ 25] [ 2] [01] +19:07:16 [ 28] [ 9] [D00002000] +19:07:16 [ 32] [ 6] [668899] +19:07:16 [ 35] [ 32] [6213543000069483=491212016948578] +19:07:16 [ 37] [ 12] [507900146933] +19:07:16 [ 41] [ 8] [03020005] +19:07:16 [ 42] [ 15] [APT ] +19:07:16 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:07:16 [ 49] [ 3] [418] +19:07:16 [ 52] [ 16] [5EE97E34B0D76242] +19:07:16 ============================================================================ +19:07:16 + + +waiting on router queue for slot.... +19:07:16 Sending to : +19:07:16 ============================================================================ +19:07:16 Sending to : +19:07:16 ============================================================================ +19:07:16 ============================================================================ +19:07:16 Slot Id : <391> +19:07:16 Transaction Type : REQUEST +19:07:16 Received From : +19:07:16 ============================================================================ +19:07:16 FNo. Len. Field Value +19:07:16 ============================================================================ +19:07:16 [ 1] [ 4] [0800] +19:07:16 [ 7] [ 10] [0321021903] +19:07:16 [ 11] [ 6] [191903] +19:07:16 [ 37] [ 12] [57919191903] +19:07:16 [ 70] [ 3] [301] +19:07:16 ============================================================================ +19:07:16 + + +waiting on router queue for slot.... +19:07:16 Sending to : +19:07:16 ============================================================================ +19:07:16 ============================================================================ +19:07:16 Slot Id : <391> +19:07:16 Transaction Type : RESPONSE +19:07:16 Received From : +19:07:16 ============================================================================ +19:07:16 FNo. Len. Field Value +19:07:16 ============================================================================ +19:07:16 [ 1] [ 4] [0810] +19:07:16 [ 7] [ 10] [0321021903] +19:07:16 [ 11] [ 6] [191903] +19:07:16 [ 37] [ 12] [579191919030] +19:07:16 [ 39] [ 2] [00] +19:07:16 [ 70] [ 3] [810] +19:07:16 ============================================================================ +19:07:16 Calculate Source COMM Id = 6 +19:07:16 ============================================================================ +19:07:16 + + +waiting on router queue for slot.... +19:07:16 ============================================================================ +19:07:16 Slot Id : <447> +19:07:16 Transaction Type : REQUEST +19:07:16 Received From : +19:07:16 ============================================================================ +19:07:16 FNo. Len. Field Value +19:07:16 ============================================================================ +19:07:16 [ 1] [ 4] [0200] +19:07:16 [ 2] [ 16] [6213543000069483] +19:07:16 [ 3] [ 6] [010000] +19:07:16 [ 4] [ 12] [000010000000] +19:07:16 [ 7] [ 10] [0320190506] +19:07:16 [ 11] [ 6] [955627] +19:07:16 [ 12] [ 6] [190506] +19:07:16 [ 13] [ 4] [0320] +19:07:16 [ 15] [ 4] [0320] +19:07:16 [ 18] [ 4] [6011] +19:07:16 [ 19] [ 3] [418] +19:07:16 [ 22] [ 3] [021] +19:07:16 [ 25] [ 2] [01] +19:07:16 [ 28] [ 9] [D00002000] +19:07:16 [ 32] [ 6] [668899] +19:07:16 [ 35] [ 32] [6213543000069483=491212016948578] +19:07:16 [ 37] [ 12] [507900146933] +19:07:16 [ 41] [ 8] [03020005] +19:07:16 [ 42] [ 15] [APT ] +19:07:16 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:07:16 [ 49] [ 3] [418] +19:07:16 [ 52] [ 16] [5EE97E34B0D76242] +19:07:16 ============================================================================ +19:07:16 + + +waiting on router queue for slot.... +19:07:16 Sending to : +19:07:16 ============================================================================ +19:07:16 ============================================================================ +19:07:16 Slot Id : <447> +19:07:16 Transaction Type : REQUEST +19:07:16 Received From : +19:07:16 ============================================================================ +19:07:16 FNo. Len. Field Value +19:07:16 ============================================================================ +19:07:16 [ 1] [ 4] [0200] +19:07:16 [ 2] [ 16] [6213543000069483] +19:07:16 [ 3] [ 6] [010000] +19:07:16 [ 4] [ 12] [000010000000] +19:07:16 [ 7] [ 10] [0320190506] +19:07:16 [ 11] [ 6] [955627] +19:07:16 [ 12] [ 6] [190506] +19:07:16 [ 13] [ 4] [0320] +19:07:16 [ 15] [ 4] [0320] +19:07:16 [ 18] [ 4] [6011] +19:07:16 [ 19] [ 3] [418] +19:07:16 [ 22] [ 3] [021] +19:07:16 [ 25] [ 2] [01] +19:07:16 [ 28] [ 9] [D00002000] +19:07:16 [ 32] [ 6] [668899] +19:07:16 [ 35] [ 32] [6213543000069483=491212016948578] +19:07:16 [ 37] [ 12] [507900146933] +19:07:16 [ 41] [ 8] [03020005] +19:07:16 [ 42] [ 15] [APT ] +19:07:16 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:07:16 [ 49] [ 3] [418] +19:07:16 [ 52] [ 16] [4C89ADA101CA5E71] +19:07:16 ============================================================================ +19:07:16 + + +waiting on router queue for slot.... +19:07:16 Sending to : <0> +19:07:16 ============================================================================ +19:07:17 ============================================================================ +19:07:17 Slot Id : <447> +19:07:17 Transaction Type : RESPONSE +19:07:17 Received From : +19:07:17 ============================================================================ +19:07:17 FNo. Len. Field Value +19:07:17 ============================================================================ +19:07:17 [ 1] [ 4] [0210] +19:07:17 [ 2] [ 16] [6213543000069483] +19:07:17 [ 3] [ 6] [010000] +19:07:17 [ 4] [ 12] [000010000000] +19:07:17 [ 7] [ 10] [0320190506] +19:07:17 [ 11] [ 6] [955627] +19:07:17 [ 12] [ 6] [190506] +19:07:17 [ 13] [ 4] [0320] +19:07:17 [ 15] [ 4] [0320] +19:07:17 [ 18] [ 4] [6011] +19:07:17 [ 19] [ 3] [418] +19:07:17 [ 32] [ 6] [668899] +19:07:17 [ 35] [ 32] [6213543000069483=491212016948578] +19:07:17 [ 37] [ 12] [507900146933] +19:07:17 [ 38] [ 6] [641334] +19:07:17 [ 39] [ 2] [00] +19:07:17 [ 41] [ 8] [03020005] +19:07:17 [ 49] [ 3] [418] +19:07:17 [ 54] [ 40] [0001418C0000394425820002418C000039442582] +19:07:17 ============================================================================ +19:07:17 Sending to : +19:07:17 ============================================================================ +19:07:17 + + +waiting on router queue for slot.... +19:07:19 ============================================================================ +19:07:19 Slot Id : <447> +19:07:19 Transaction Type : RESPONSE +19:07:19 Received From : +19:07:19 ============================================================================ +19:07:19 FNo. Len. Field Value +19:07:19 ============================================================================ +19:07:19 [ 1] [ 4] [0210] +19:07:19 [ 2] [ 16] [6213543000069483] +19:07:19 [ 3] [ 6] [010000] +19:07:19 [ 4] [ 12] [000010000000] +19:07:19 [ 7] [ 10] [0320190506] +19:07:19 [ 11] [ 6] [955627] +19:07:19 [ 12] [ 6] [190506] +19:07:19 [ 13] [ 4] [0320] +19:07:19 [ 15] [ 4] [0320] +19:07:19 [ 18] [ 4] [6011] +19:07:19 [ 19] [ 3] [418] +19:07:19 [ 32] [ 6] [668899] +19:07:19 [ 35] [ 32] [6213543000069483=491212016948578] +19:07:19 [ 37] [ 12] [507900146933] +19:07:19 [ 38] [ 6] [641334] +19:07:19 [ 39] [ 2] [00] +19:07:19 [ 41] [ 8] [03020005] +19:07:19 [ 49] [ 3] [418] +19:07:19 [ 54] [ 40] [0001418C0000394425820002418C000039442582] +19:07:19 ============================================================================ +19:07:19 Calculate Source COMM Id = 4 +19:07:19 ============================================================================ +19:07:19 + + +waiting on router queue for slot.... +19:07:21 ============================================================================ +19:07:21 Slot Id : <405> +19:07:21 Transaction Type : REQUEST +19:07:21 Received From : +19:07:21 ============================================================================ +19:07:21 FNo. Len. Field Value +19:07:21 ============================================================================ +19:07:21 [ 1] [ 4] [0800] +19:07:21 [ 7] [ 10] [0320120628] +19:07:21 [ 11] [ 6] [157865] +19:07:21 [ 70] [ 3] [301] +19:07:21 ============================================================================ +19:07:21 + + +waiting on router queue for slot.... +19:07:21 Sending to : +19:07:21 ============================================================================ +19:07:21 ============================================================================ +19:07:21 Slot Id : <405> +19:07:21 Transaction Type : RESPONSE +19:07:21 Received From : +19:07:21 ============================================================================ +19:07:21 FNo. Len. Field Value +19:07:21 ============================================================================ +19:07:21 [ 1] [ 4] [0810] +19:07:21 [ 7] [ 10] [0320120628] +19:07:21 [ 11] [ 6] [157865] +19:07:21 [ 39] [ 2] [00] +19:07:21 [ 70] [ 3] [301] +19:07:21 ============================================================================ +19:07:21 Calculate Source COMM Id = 2 +19:07:21 ============================================================================ +19:07:21 + + +waiting on router queue for slot.... +19:07:31 ============================================================================ +19:07:31 Slot Id : <429> +19:07:31 Transaction Type : REQUEST +19:07:31 Received From : +19:07:31 ============================================================================ +19:07:31 FNo. Len. Field Value +19:07:31 ============================================================================ +19:07:31 [ 1] [ 4] [0200] +19:07:31 [ 2] [ 16] [6213541000530207] +19:07:31 [ 3] [ 6] [010000] +19:07:31 [ 4] [ 12] [000030000000] +19:07:31 [ 7] [ 10] [0320191918] +19:07:31 [ 11] [ 6] [412747] +19:07:31 [ 12] [ 6] [191918] +19:07:31 [ 13] [ 4] [0320] +19:07:31 [ 14] [ 4] [1249] +19:07:31 [ 15] [ 4] [0320] +19:07:31 [ 18] [ 4] [6011] +19:07:31 [ 19] [ 3] [418] +19:07:31 [ 22] [ 3] [021] +19:07:31 [ 25] [ 2] [01] +19:07:31 [ 28] [ 9] [D00002000] +19:07:31 [ 32] [ 6] [123401] +19:07:31 [ 35] [ 32] [6213541000530207=491212013020931] +19:07:31 [ 37] [ 12] [507900325464] +19:07:31 [ 41] [ 8] [01002400] +19:07:31 [ 42] [ 15] [APT ] +19:07:31 [ 43] [ 40] [LAOS NONGTAENG LAOS LAO] +19:07:31 [ 49] [ 3] [418] +19:07:31 [ 52] [ 16] [A1A4F48CA2A53FC5] +19:07:31 ============================================================================ +19:07:31 + + +waiting on router queue for slot.... +19:07:31 Sending to : +19:07:31 ============================================================================ +19:07:31 Sending to : +19:07:31 ============================================================================ +19:07:31 ============================================================================ +19:07:31 Slot Id : <429> +19:07:31 Transaction Type : REQUEST +19:07:31 Received From : +19:07:31 ============================================================================ +19:07:31 FNo. Len. Field Value +19:07:31 ============================================================================ +19:07:31 [ 1] [ 4] [0200] +19:07:31 [ 2] [ 16] [6213541000530207] +19:07:31 [ 3] [ 6] [010000] +19:07:31 [ 4] [ 12] [000030000000] +19:07:31 [ 7] [ 10] [0320191918] +19:07:31 [ 11] [ 6] [412747] +19:07:31 [ 12] [ 6] [191918] +19:07:31 [ 13] [ 4] [0320] +19:07:31 [ 14] [ 4] [1249] +19:07:31 [ 15] [ 4] [0320] +19:07:31 [ 18] [ 4] [6011] +19:07:31 [ 19] [ 3] [418] +19:07:31 [ 22] [ 3] [021] +19:07:31 [ 25] [ 2] [01] +19:07:31 [ 28] [ 9] [D00002000] +19:07:31 [ 32] [ 6] [123401] +19:07:31 [ 35] [ 32] [6213541000530207=491212013020931] +19:07:31 [ 37] [ 12] [507900325464] +19:07:31 [ 41] [ 8] [01002400] +19:07:31 [ 42] [ 15] [APT ] +19:07:31 [ 43] [ 40] [LAOS NONGTAENG LAOS LAO] +19:07:31 [ 49] [ 3] [418] +19:07:31 [ 52] [ 16] [A1A4F48CA2A53FC5] +19:07:31 ============================================================================ +19:07:31 + + +waiting on router queue for slot.... +19:07:31 Sending to : +19:07:31 ============================================================================ +19:07:31 ============================================================================ +19:07:31 Slot Id : <429> +19:07:31 Transaction Type : REQUEST +19:07:31 Received From : +19:07:31 ============================================================================ +19:07:31 FNo. Len. Field Value +19:07:31 ============================================================================ +19:07:31 [ 1] [ 4] [0200] +19:07:31 [ 2] [ 16] [6213541000530207] +19:07:31 [ 3] [ 6] [010000] +19:07:31 [ 4] [ 12] [000030000000] +19:07:31 [ 7] [ 10] [0320191918] +19:07:31 [ 11] [ 6] [412747] +19:07:31 [ 12] [ 6] [191918] +19:07:31 [ 13] [ 4] [0320] +19:07:31 [ 14] [ 4] [1249] +19:07:31 [ 15] [ 4] [0320] +19:07:31 [ 18] [ 4] [6011] +19:07:31 [ 19] [ 3] [418] +19:07:31 [ 22] [ 3] [021] +19:07:31 [ 25] [ 2] [01] +19:07:31 [ 28] [ 9] [D00002000] +19:07:31 [ 32] [ 6] [123401] +19:07:31 [ 35] [ 32] [6213541000530207=491212013020931] +19:07:31 [ 37] [ 12] [507900325464] +19:07:31 [ 41] [ 8] [01002400] +19:07:31 [ 42] [ 15] [APT ] +19:07:31 [ 43] [ 40] [LAOS NONGTAENG LAOS LAO] +19:07:31 [ 49] [ 3] [418] +19:07:31 [ 52] [ 16] [1DCBF29CD51B9A2B] +19:07:31 ============================================================================ +19:07:31 + + +waiting on router queue for slot.... +19:07:31 Sending to : <0> +19:07:31 ============================================================================ +19:07:32 ============================================================================ +19:07:32 Slot Id : <443> +19:07:32 Transaction Type : REQUEST +19:07:32 Received From : +19:07:32 ============================================================================ +19:07:32 FNo. Len. Field Value +19:07:32 ============================================================================ +19:07:32 [ 1] [ 4] [0800] +19:07:32 [ 7] [ 10] [0320120639] +19:07:32 [ 11] [ 6] [157866] +19:07:32 [ 70] [ 3] [301] +19:07:32 ============================================================================ +19:07:32 + + +waiting on router queue for slot.... +19:07:32 Sending to : +19:07:32 ============================================================================ +19:07:32 ============================================================================ +19:07:32 Slot Id : <443> +19:07:32 Transaction Type : RESPONSE +19:07:32 Received From : +19:07:32 ============================================================================ +19:07:32 FNo. Len. Field Value +19:07:32 ============================================================================ +19:07:32 [ 1] [ 4] [0810] +19:07:32 [ 7] [ 10] [0320120639] +19:07:32 [ 11] [ 6] [157866] +19:07:32 [ 39] [ 2] [00] +19:07:32 [ 70] [ 3] [301] +19:07:32 ============================================================================ +19:07:32 Calculate Source COMM Id = 2 +19:07:32 ============================================================================ +19:07:32 + + +waiting on router queue for slot.... +19:07:32 ============================================================================ +19:07:32 Slot Id : <429> +19:07:32 Transaction Type : RESPONSE +19:07:32 Received From : +19:07:32 ============================================================================ +19:07:32 FNo. Len. Field Value +19:07:32 ============================================================================ +19:07:32 [ 1] [ 4] [0210] +19:07:32 [ 2] [ 16] [6213541000530207] +19:07:32 [ 3] [ 6] [010000] +19:07:32 [ 4] [ 12] [000030000000] +19:07:32 [ 7] [ 10] [0320191918] +19:07:32 [ 11] [ 6] [412747] +19:07:32 [ 12] [ 6] [191918] +19:07:32 [ 13] [ 4] [0320] +19:07:32 [ 15] [ 4] [0320] +19:07:32 [ 18] [ 4] [6011] +19:07:32 [ 19] [ 3] [418] +19:07:32 [ 32] [ 6] [123401] +19:07:32 [ 35] [ 32] [6213541000530207=491212013020931] +19:07:32 [ 37] [ 12] [507900325464] +19:07:32 [ 38] [ 6] [620428] +19:07:32 [ 39] [ 2] [00] +19:07:32 [ 41] [ 8] [01002400] +19:07:32 [ 49] [ 3] [418] +19:07:32 [ 54] [ 40] [0001840C0000003294110002840C000000329411] +19:07:32 ============================================================================ +19:07:32 Sending to : +19:07:32 ============================================================================ +19:07:32 + + +waiting on router queue for slot.... +19:07:34 ============================================================================ +19:07:34 Slot Id : <429> +19:07:34 Transaction Type : RESPONSE +19:07:34 Received From : +19:07:34 ============================================================================ +19:07:34 FNo. Len. Field Value +19:07:34 ============================================================================ +19:07:34 [ 1] [ 4] [0210] +19:07:34 [ 2] [ 16] [6213541000530207] +19:07:34 [ 3] [ 6] [010000] +19:07:34 [ 4] [ 12] [000030000000] +19:07:34 [ 7] [ 10] [0320191918] +19:07:34 [ 11] [ 6] [412747] +19:07:34 [ 12] [ 6] [191918] +19:07:34 [ 13] [ 4] [0320] +19:07:34 [ 15] [ 4] [0320] +19:07:34 [ 18] [ 4] [6011] +19:07:34 [ 19] [ 3] [418] +19:07:34 [ 32] [ 6] [123401] +19:07:34 [ 35] [ 32] [6213541000530207=491212013020931] +19:07:34 [ 37] [ 12] [507900325464] +19:07:34 [ 38] [ 6] [620428] +19:07:34 [ 39] [ 2] [00] +19:07:34 [ 41] [ 8] [01002400] +19:07:34 [ 49] [ 3] [418] +19:07:34 [ 54] [ 40] [0001840C0000003294110002840C000000329411] +19:07:34 ============================================================================ +19:07:34 Calculate Source COMM Id = 6 +19:07:34 ============================================================================ +19:07:34 + + +waiting on router queue for slot.... +19:07:39 ============================================================================ +19:07:39 Slot Id : <386> +19:07:39 Transaction Type : REQUEST +19:07:39 Received From : +19:07:39 ============================================================================ +19:07:39 FNo. Len. Field Value +19:07:39 ============================================================================ +19:07:39 [ 1] [ 4] [0800] +19:07:39 [ 2] [ 5] [02531] +19:07:39 [ 3] [ 6] [579198] +19:07:39 [ 7] [ 10] [0320120739] +19:07:39 [ 11] [ 6] [807522] +19:07:39 [ 15] [ 10] [0320120739] +19:07:39 [ 37] [ 11] [57919807522] +19:07:39 [ 70] [ 3] [001] +19:07:39 ============================================================================ +19:07:39 + + +waiting on router queue for slot.... +19:07:39 ============================================================================ +19:07:39 Slot Id : <386> +19:07:39 Transaction Type : RESPONSE +19:07:39 Received From : +19:07:39 ============================================================================ +19:07:39 FNo. Len. Field Value +19:07:39 ============================================================================ +19:07:39 [ 1] [ 4] [0810] +19:07:39 [ 7] [ 10] [0320120739] +19:07:39 [ 11] [ 6] [807522] +19:07:39 [ 15] [ 4] [0320] +19:07:39 [ 37] [ 12] [57919807522] +19:07:39 [ 39] [ 2] [00] +19:07:39 [ 70] [ 3] [001] +19:07:39 ============================================================================ +19:07:39 Sending to : +19:07:39 ============================================================================ +19:07:39 + + +waiting on router queue for slot.... +19:07:43 ============================================================================ +19:07:43 Slot Id : <377> +19:07:43 Transaction Type : REQUEST +19:07:43 Received From : +19:07:43 ============================================================================ +19:07:43 FNo. Len. Field Value +19:07:43 ============================================================================ +19:07:43 [ 1] [ 4] [0800] +19:07:43 [ 7] [ 10] [0320120650] +19:07:43 [ 11] [ 6] [157867] +19:07:43 [ 70] [ 3] [301] +19:07:43 ============================================================================ +19:07:43 + + +waiting on router queue for slot.... +19:07:43 Sending to : +19:07:43 ============================================================================ +19:07:43 ============================================================================ +19:07:43 Slot Id : <377> +19:07:43 Transaction Type : RESPONSE +19:07:43 Received From : +19:07:43 ============================================================================ +19:07:43 FNo. Len. Field Value +19:07:43 ============================================================================ +19:07:43 [ 1] [ 4] [0810] +19:07:43 [ 7] [ 10] [0320120650] +19:07:43 [ 11] [ 6] [157867] +19:07:43 [ 39] [ 2] [00] +19:07:43 [ 70] [ 3] [301] +19:07:43 ============================================================================ +19:07:43 Calculate Source COMM Id = 2 +19:07:43 ============================================================================ +19:07:43 + + +waiting on router queue for slot.... +19:07:45 ============================================================================ +19:07:45 Slot Id : <446> +19:07:45 Transaction Type : REQUEST +19:07:45 Received From : +19:07:45 ============================================================================ +19:07:45 FNo. Len. Field Value +19:07:45 ============================================================================ +19:07:45 [ 1] [ 4] [0200] +19:07:45 [ 2] [ 16] [6213544000842648] +19:07:45 [ 3] [ 6] [010000] +19:07:45 [ 4] [ 12] [000004000000] +19:07:45 [ 7] [ 10] [0320191530] +19:07:45 [ 11] [ 6] [254896] +19:07:45 [ 12] [ 6] [191530] +19:07:45 [ 13] [ 4] [0320] +19:07:45 [ 14] [ 4] [4912] +19:07:45 [ 15] [ 4] [0320] +19:07:45 [ 18] [ 4] [6011] +19:07:45 [ 22] [ 3] [900] +19:07:45 [ 25] [ 2] [02] +19:07:45 [ 28] [ 9] [D00002000] +19:07:45 [ 32] [ 6] [220699] +19:07:45 [ 35] [ 32] [6213544000842648=491212014264874] +19:07:45 [ 37] [ 12] [507900094448] +19:07:45 [ 41] [ 8] [01000900] +19:07:45 [ 42] [ 15] [APTRA ] +19:07:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:07:45 [ 49] [ 3] [418] +19:07:45 [ 52] [ 16] [412F7144F2EAB9AC] +19:07:45 ============================================================================ +19:07:45 + + +waiting on router queue for slot.... +19:07:45 Sending to : +19:07:45 ============================================================================ +19:07:45 Sending to : +19:07:45 ============================================================================ +19:07:45 ============================================================================ +19:07:45 Slot Id : <446> +19:07:45 Transaction Type : REQUEST +19:07:45 Received From : +19:07:45 ============================================================================ +19:07:45 FNo. Len. Field Value +19:07:45 ============================================================================ +19:07:45 [ 1] [ 4] [0200] +19:07:45 [ 2] [ 16] [6213544000842648] +19:07:45 [ 3] [ 6] [010000] +19:07:45 [ 4] [ 12] [000004000000] +19:07:45 [ 7] [ 10] [0320191530] +19:07:45 [ 11] [ 6] [254896] +19:07:45 [ 12] [ 6] [191530] +19:07:45 [ 13] [ 4] [0320] +19:07:45 [ 14] [ 4] [4912] +19:07:45 [ 15] [ 4] [0320] +19:07:45 [ 18] [ 4] [6011] +19:07:45 [ 22] [ 3] [900] +19:07:45 [ 25] [ 2] [02] +19:07:45 [ 28] [ 9] [D00002000] +19:07:45 [ 32] [ 6] [220699] +19:07:45 [ 35] [ 32] [6213544000842648=491212014264874] +19:07:45 [ 37] [ 12] [507900094448] +19:07:45 [ 41] [ 8] [01000900] +19:07:45 [ 42] [ 15] [APTRA ] +19:07:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:07:45 [ 49] [ 3] [418] +19:07:45 [ 52] [ 16] [412F7144F2EAB9AC] +19:07:45 ============================================================================ +19:07:45 + + +waiting on router queue for slot.... +19:07:45 Sending to : +19:07:45 ============================================================================ +19:07:45 ============================================================================ +19:07:45 Slot Id : <446> +19:07:45 Transaction Type : REQUEST +19:07:45 Received From : +19:07:45 ============================================================================ +19:07:45 FNo. Len. Field Value +19:07:45 ============================================================================ +19:07:45 [ 1] [ 4] [0200] +19:07:45 [ 2] [ 16] [6213544000842648] +19:07:45 [ 3] [ 6] [010000] +19:07:45 [ 4] [ 12] [000004000000] +19:07:45 [ 7] [ 10] [0320191530] +19:07:45 [ 11] [ 6] [254896] +19:07:45 [ 12] [ 6] [191530] +19:07:45 [ 13] [ 4] [0320] +19:07:45 [ 14] [ 4] [4912] +19:07:45 [ 15] [ 4] [0320] +19:07:45 [ 18] [ 4] [6011] +19:07:45 [ 22] [ 3] [900] +19:07:45 [ 25] [ 2] [02] +19:07:45 [ 28] [ 9] [D00002000] +19:07:45 [ 32] [ 6] [220699] +19:07:45 [ 35] [ 32] [6213544000842648=491212014264874] +19:07:45 [ 37] [ 12] [507900094448] +19:07:45 [ 41] [ 8] [01000900] +19:07:45 [ 42] [ 15] [APTRA ] +19:07:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:07:45 [ 49] [ 3] [418] +19:07:45 [ 52] [ 16] [184557D53F13DD6D] +19:07:45 ============================================================================ +19:07:45 + + +waiting on router queue for slot.... +19:07:45 Sending to : <0> +19:07:45 ============================================================================ +19:07:46 ============================================================================ +19:07:46 Slot Id : <446> +19:07:46 Transaction Type : RESPONSE +19:07:46 Received From : +19:07:46 ============================================================================ +19:07:46 FNo. Len. Field Value +19:07:46 ============================================================================ +19:07:46 [ 1] [ 4] [0210] +19:07:46 [ 2] [ 16] [6213544000842648] +19:07:46 [ 3] [ 6] [010000] +19:07:46 [ 4] [ 12] [000004000000] +19:07:46 [ 7] [ 10] [0320191530] +19:07:46 [ 11] [ 6] [254896] +19:07:46 [ 12] [ 6] [191530] +19:07:46 [ 13] [ 4] [0320] +19:07:46 [ 15] [ 4] [0320] +19:07:46 [ 18] [ 4] [6011] +19:07:46 [ 32] [ 6] [220699] +19:07:46 [ 35] [ 32] [6213544000842648=491212014264874] +19:07:46 [ 37] [ 12] [507900094448] +19:07:46 [ 38] [ 6] [405296] +19:07:46 [ 39] [ 2] [00] +19:07:46 [ 41] [ 8] [01000900] +19:07:46 [ 49] [ 3] [418] +19:07:46 [ 54] [ 40] [0001418C0000054628980002418C000005462898] +19:07:46 ============================================================================ +19:07:46 Sending to : +19:07:46 ============================================================================ +19:07:46 + + +waiting on router queue for slot.... +19:07:47 ============================================================================ +19:07:47 Slot Id : <446> +19:07:47 Transaction Type : RESPONSE +19:07:47 Received From : +19:07:47 ============================================================================ +19:07:47 FNo. Len. Field Value +19:07:47 ============================================================================ +19:07:47 [ 1] [ 4] [0210] +19:07:47 [ 2] [ 16] [6213544000842648] +19:07:47 [ 3] [ 6] [010000] +19:07:47 [ 4] [ 12] [000004000000] +19:07:47 [ 7] [ 10] [0320191530] +19:07:47 [ 11] [ 6] [254896] +19:07:47 [ 12] [ 6] [191530] +19:07:47 [ 13] [ 4] [0320] +19:07:47 [ 15] [ 4] [0320] +19:07:47 [ 18] [ 4] [6011] +19:07:47 [ 32] [ 6] [220699] +19:07:47 [ 35] [ 32] [6213544000842648=491212014264874] +19:07:47 [ 37] [ 12] [507900094448] +19:07:47 [ 38] [ 6] [405296] +19:07:47 [ 39] [ 2] [00] +19:07:47 [ 41] [ 8] [01000900] +19:07:47 [ 49] [ 3] [418] +19:07:47 [ 54] [ 40] [0001418C0000054628980002418C000005462898] +19:07:47 ============================================================================ +19:07:47 Calculate Source COMM Id = 1 +19:07:47 ============================================================================ +19:07:47 + + +waiting on router queue for slot.... +19:07:51 ============================================================================ +19:07:51 Slot Id : <404> +19:07:51 Transaction Type : REQUEST +19:07:51 Received From : +19:07:51 ============================================================================ +19:07:51 FNo. Len. Field Value +19:07:51 ============================================================================ +19:07:51 [ 1] [ 4] [0200] +19:07:51 [ 2] [ 16] [6688990040063040] +19:07:51 [ 3] [ 6] [011000] +19:07:51 [ 4] [ 12] [000010000000] +19:07:51 [ 7] [ 10] [0320190746] +19:07:51 [ 11] [ 6] [834024] +19:07:51 [ 12] [ 6] [190746] +19:07:51 [ 13] [ 4] [0320] +19:07:51 [ 15] [ 4] [0320] +19:07:51 [ 18] [ 4] [6011] +19:07:51 [ 22] [ 3] [900] +19:07:51 [ 25] [ 2] [02] +19:07:51 [ 28] [ 9] [D00002000] +19:07:51 [ 32] [ 6] [621354] +19:07:51 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:07:51 [ 37] [ 12] [507903444208] +19:07:51 [ 41] [ 8] [06001700] +19:07:51 [ 42] [ 15] [NATIVE ] +19:07:51 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +19:07:51 [ 49] [ 3] [418] +19:07:51 [ 52] [ 16] [E71EC437AC4A8D71] +19:07:51 ============================================================================ +19:07:51 + + +waiting on router queue for slot.... +19:07:51 Sending to : +19:07:51 ============================================================================ +19:07:51 Sending to : +19:07:51 ============================================================================ +19:07:52 ============================================================================ +19:07:52 Slot Id : <404> +19:07:52 Transaction Type : REQUEST +19:07:52 Received From : +19:07:52 ============================================================================ +19:07:52 FNo. Len. Field Value +19:07:52 ============================================================================ +19:07:52 [ 1] [ 4] [0200] +19:07:52 [ 2] [ 16] [6688990040063040] +19:07:52 [ 3] [ 6] [011000] +19:07:52 [ 4] [ 12] [000010000000] +19:07:52 [ 7] [ 10] [0320190746] +19:07:52 [ 11] [ 6] [834024] +19:07:52 [ 12] [ 6] [190746] +19:07:52 [ 13] [ 4] [0320] +19:07:52 [ 15] [ 4] [0320] +19:07:52 [ 18] [ 4] [6011] +19:07:52 [ 22] [ 3] [900] +19:07:52 [ 25] [ 2] [02] +19:07:52 [ 28] [ 9] [D00002000] +19:07:52 [ 32] [ 6] [621354] +19:07:52 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:07:52 [ 37] [ 12] [507903444208] +19:07:52 [ 41] [ 8] [06001700] +19:07:52 [ 42] [ 15] [NATIVE ] +19:07:52 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +19:07:52 [ 49] [ 3] [418] +19:07:52 [ 52] [ 16] [E71EC437AC4A8D71] +19:07:52 ============================================================================ +19:07:52 + + +waiting on router queue for slot.... +19:07:52 Sending to : +19:07:52 ============================================================================ +19:07:52 ============================================================================ +19:07:52 Slot Id : <404> +19:07:52 Transaction Type : REQUEST +19:07:52 Received From : +19:07:52 ============================================================================ +19:07:52 FNo. Len. Field Value +19:07:52 ============================================================================ +19:07:52 [ 1] [ 4] [0200] +19:07:52 [ 2] [ 16] [6688990040063040] +19:07:52 [ 3] [ 6] [011000] +19:07:52 [ 4] [ 12] [000010000000] +19:07:52 [ 7] [ 10] [0320190746] +19:07:52 [ 11] [ 6] [834024] +19:07:52 [ 12] [ 6] [190746] +19:07:52 [ 13] [ 4] [0320] +19:07:52 [ 15] [ 4] [0320] +19:07:52 [ 18] [ 4] [6011] +19:07:52 [ 22] [ 3] [900] +19:07:52 [ 25] [ 2] [02] +19:07:52 [ 28] [ 9] [D00002000] +19:07:52 [ 32] [ 6] [621354] +19:07:52 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:07:52 [ 37] [ 12] [507903444208] +19:07:52 [ 41] [ 8] [06001700] +19:07:52 [ 42] [ 15] [NATIVE ] +19:07:52 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +19:07:52 [ 49] [ 3] [418] +19:07:52 [ 52] [ 16] [377E1E0A3ABEEA35] +19:07:52 ============================================================================ +19:07:52 + + +waiting on router queue for slot.... +19:07:52 Sending to : <4> +19:07:52 ============================================================================ +19:07:53 ============================================================================ +19:07:53 Slot Id : <404> +19:07:53 Transaction Type : RESPONSE +19:07:53 Received From : +19:07:53 ============================================================================ +19:07:53 FNo. Len. Field Value +19:07:53 ============================================================================ +19:07:53 [ 1] [ 4] [0210] +19:07:53 [ 2] [ 16] [6688990040063040] +19:07:53 [ 3] [ 6] [011000] +19:07:53 [ 4] [ 12] [000010000000] +19:07:53 [ 11] [ 6] [834024] +19:07:53 [ 12] [ 6] [190746] +19:07:53 [ 15] [ 4] [0320] +19:07:53 [ 18] [ 4] [6011] +19:07:53 [ 32] [ 6] [621354] +19:07:53 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:07:53 [ 37] [ 12] [507903444208] +19:07:53 [ 38] [ 6] [500700] +19:07:53 [ 39] [ 2] [00] +19:07:53 [ 41] [ 8] [06001700] +19:07:53 [ 49] [ 3] [418] +19:07:53 [ 54] [ 20] [1002418C000042094088] +19:07:53 ============================================================================ +19:07:53 Sending to : +19:07:53 ============================================================================ +19:07:53 + + +waiting on router queue for slot.... +19:07:54 ============================================================================ +19:07:54 Slot Id : <456> +19:07:54 Transaction Type : REQUEST +19:07:54 Received From : +19:07:54 ============================================================================ +19:07:54 FNo. Len. Field Value +19:07:54 ============================================================================ +19:07:54 [ 1] [ 4] [0800] +19:07:54 [ 7] [ 10] [0320120701] +19:07:54 [ 11] [ 6] [157868] +19:07:54 [ 70] [ 3] [301] +19:07:54 ============================================================================ +19:07:54 + + +waiting on router queue for slot.... +19:07:54 Sending to : +19:07:54 ============================================================================ +19:07:54 ============================================================================ +19:07:54 Slot Id : <456> +19:07:54 Transaction Type : RESPONSE +19:07:54 Received From : +19:07:54 ============================================================================ +19:07:54 FNo. Len. Field Value +19:07:54 ============================================================================ +19:07:54 [ 1] [ 4] [0810] +19:07:54 [ 7] [ 10] [0320120701] +19:07:54 [ 11] [ 6] [157868] +19:07:54 [ 39] [ 2] [00] +19:07:54 [ 70] [ 3] [301] +19:07:54 ============================================================================ +19:07:54 Calculate Source COMM Id = 2 +19:07:54 ============================================================================ +19:07:54 + + +waiting on router queue for slot.... +19:07:55 ============================================================================ +19:07:55 Slot Id : <404> +19:07:55 Transaction Type : RESPONSE +19:07:55 Received From : +19:07:55 ============================================================================ +19:07:55 FNo. Len. Field Value +19:07:55 ============================================================================ +19:07:55 [ 1] [ 4] [0210] +19:07:55 [ 2] [ 16] [6688990040063040] +19:07:55 [ 3] [ 6] [011000] +19:07:55 [ 4] [ 12] [000010000000] +19:07:55 [ 11] [ 6] [834024] +19:07:55 [ 12] [ 6] [190746] +19:07:55 [ 15] [ 4] [0320] +19:07:55 [ 18] [ 4] [6011] +19:07:55 [ 32] [ 6] [621354] +19:07:55 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:07:55 [ 37] [ 12] [507903444208] +19:07:55 [ 38] [ 6] [500700] +19:07:55 [ 39] [ 2] [00] +19:07:55 [ 41] [ 8] [06001700] +19:07:55 [ 49] [ 3] [418] +19:07:55 [ 54] [ 20] [1002418C000042094088] +19:07:55 ============================================================================ +19:07:55 Calculate Source COMM Id = 0 +19:07:55 ============================================================================ +19:07:55 + + +waiting on router queue for slot.... +19:08:05 ============================================================================ +19:08:05 Slot Id : <434> +19:08:05 Transaction Type : REQUEST +19:08:05 Received From : +19:08:05 ============================================================================ +19:08:05 FNo. Len. Field Value +19:08:05 ============================================================================ +19:08:05 [ 1] [ 4] [0200] +19:08:05 [ 2] [ 16] [6213544001699435] +19:08:05 [ 3] [ 6] [010000] +19:08:05 [ 4] [ 12] [000050000000] +19:08:05 [ 7] [ 10] [0320191952] +19:08:05 [ 11] [ 6] [412753] +19:08:05 [ 12] [ 6] [191952] +19:08:05 [ 13] [ 4] [0320] +19:08:05 [ 14] [ 4] [1249] +19:08:05 [ 15] [ 4] [0320] +19:08:05 [ 18] [ 4] [6011] +19:08:05 [ 19] [ 3] [418] +19:08:05 [ 22] [ 3] [021] +19:08:05 [ 25] [ 2] [01] +19:08:05 [ 28] [ 9] [D00002000] +19:08:05 [ 32] [ 6] [123401] +19:08:05 [ 35] [ 32] [6213544001699435=491212019943430] +19:08:05 [ 37] [ 12] [507900450275] +19:08:05 [ 41] [ 8] [02000600] +19:08:05 [ 42] [ 15] [APT ] +19:08:05 [ 43] [ 40] [LAOS THAHEEN PKS LAOS LA] +19:08:05 [ 49] [ 3] [418] +19:08:05 [ 52] [ 16] [97F78C221D1344DD] +19:08:05 ============================================================================ +19:08:05 + + +waiting on router queue for slot.... +19:08:05 Sending to : +19:08:05 ============================================================================ +19:08:05 Sending to : +19:08:05 ============================================================================ +19:08:05 ============================================================================ +19:08:05 Slot Id : <424> +19:08:05 Transaction Type : REQUEST +19:08:05 Received From : +19:08:05 ============================================================================ +19:08:05 FNo. Len. Field Value +19:08:05 ============================================================================ +19:08:05 [ 1] [ 4] [0800] +19:08:05 [ 7] [ 10] [0320120711] +19:08:05 [ 11] [ 6] [157869] +19:08:05 [ 70] [ 3] [301] +19:08:05 ============================================================================ +19:08:05 + + +waiting on router queue for slot.... +19:08:05 Sending to : +19:08:05 ============================================================================ +19:08:05 ============================================================================ +19:08:05 Slot Id : <424> +19:08:05 Transaction Type : RESPONSE +19:08:05 Received From : +19:08:05 ============================================================================ +19:08:05 FNo. Len. Field Value +19:08:05 ============================================================================ +19:08:05 [ 1] [ 4] [0810] +19:08:05 [ 7] [ 10] [0320120711] +19:08:05 [ 11] [ 6] [157869] +19:08:05 [ 39] [ 2] [00] +19:08:05 [ 70] [ 3] [301] +19:08:05 ============================================================================ +19:08:05 Calculate Source COMM Id = 2 +19:08:05 ============================================================================ +19:08:05 + + +waiting on router queue for slot.... +19:08:05 ============================================================================ +19:08:05 Slot Id : <434> +19:08:05 Transaction Type : REQUEST +19:08:05 Received From : +19:08:05 ============================================================================ +19:08:05 FNo. Len. Field Value +19:08:05 ============================================================================ +19:08:05 [ 1] [ 4] [0200] +19:08:05 [ 2] [ 16] [6213544001699435] +19:08:05 [ 3] [ 6] [010000] +19:08:05 [ 4] [ 12] [000050000000] +19:08:05 [ 7] [ 10] [0320191952] +19:08:05 [ 11] [ 6] [412753] +19:08:05 [ 12] [ 6] [191952] +19:08:05 [ 13] [ 4] [0320] +19:08:05 [ 14] [ 4] [1249] +19:08:05 [ 15] [ 4] [0320] +19:08:05 [ 18] [ 4] [6011] +19:08:05 [ 19] [ 3] [418] +19:08:05 [ 22] [ 3] [021] +19:08:05 [ 25] [ 2] [01] +19:08:05 [ 28] [ 9] [D00002000] +19:08:05 [ 32] [ 6] [123401] +19:08:05 [ 35] [ 32] [6213544001699435=491212019943430] +19:08:05 [ 37] [ 12] [507900450275] +19:08:05 [ 41] [ 8] [02000600] +19:08:05 [ 42] [ 15] [APT ] +19:08:05 [ 43] [ 40] [LAOS THAHEEN PKS LAOS LA] +19:08:05 [ 49] [ 3] [418] +19:08:05 [ 52] [ 16] [97F78C221D1344DD] +19:08:05 ============================================================================ +19:08:05 + + +waiting on router queue for slot.... +19:08:05 Sending to : +19:08:05 ============================================================================ +19:08:05 ============================================================================ +19:08:05 Slot Id : <434> +19:08:05 Transaction Type : REQUEST +19:08:05 Received From : +19:08:05 ============================================================================ +19:08:05 FNo. Len. Field Value +19:08:05 ============================================================================ +19:08:05 [ 1] [ 4] [0200] +19:08:05 [ 2] [ 16] [6213544001699435] +19:08:05 [ 3] [ 6] [010000] +19:08:05 [ 4] [ 12] [000050000000] +19:08:05 [ 7] [ 10] [0320191952] +19:08:05 [ 11] [ 6] [412753] +19:08:05 [ 12] [ 6] [191952] +19:08:05 [ 13] [ 4] [0320] +19:08:05 [ 14] [ 4] [1249] +19:08:05 [ 15] [ 4] [0320] +19:08:05 [ 18] [ 4] [6011] +19:08:05 [ 19] [ 3] [418] +19:08:05 [ 22] [ 3] [021] +19:08:05 [ 25] [ 2] [01] +19:08:05 [ 28] [ 9] [D00002000] +19:08:05 [ 32] [ 6] [123401] +19:08:05 [ 35] [ 32] [6213544001699435=491212019943430] +19:08:05 [ 37] [ 12] [507900450275] +19:08:05 [ 41] [ 8] [02000600] +19:08:05 [ 42] [ 15] [APT ] +19:08:05 [ 43] [ 40] [LAOS THAHEEN PKS LAOS LA] +19:08:05 [ 49] [ 3] [418] +19:08:05 [ 52] [ 16] [39A584FDD62A4727] +19:08:05 ============================================================================ +19:08:05 + + +waiting on router queue for slot.... +19:08:05 Sending to : <0> +19:08:05 ============================================================================ +19:08:06 ============================================================================ +19:08:06 Slot Id : <434> +19:08:06 Transaction Type : RESPONSE +19:08:06 Received From : +19:08:06 ============================================================================ +19:08:06 FNo. Len. Field Value +19:08:06 ============================================================================ +19:08:06 [ 1] [ 4] [0210] +19:08:06 [ 2] [ 16] [6213544001699435] +19:08:06 [ 3] [ 6] [010000] +19:08:06 [ 4] [ 12] [000050000000] +19:08:06 [ 7] [ 10] [0320191952] +19:08:06 [ 11] [ 6] [412753] +19:08:06 [ 12] [ 6] [191952] +19:08:06 [ 13] [ 4] [0320] +19:08:06 [ 15] [ 4] [0320] +19:08:06 [ 18] [ 4] [6011] +19:08:06 [ 19] [ 3] [418] +19:08:06 [ 32] [ 6] [123401] +19:08:06 [ 35] [ 32] [6213544001699435=491212019943430] +19:08:06 [ 37] [ 12] [507900450275] +19:08:06 [ 38] [ 6] [213274] +19:08:06 [ 39] [ 2] [00] +19:08:06 [ 41] [ 8] [02000600] +19:08:06 [ 49] [ 3] [418] +19:08:06 [ 54] [ 40] [0001418C0000136643550002418C000013664355] +19:08:06 ============================================================================ +19:08:06 Sending to : +19:08:06 ============================================================================ +19:08:06 + + +waiting on router queue for slot.... +19:08:07 ============================================================================ +19:08:07 Slot Id : <434> +19:08:07 Transaction Type : RESPONSE +19:08:07 Received From : +19:08:07 ============================================================================ +19:08:07 FNo. Len. Field Value +19:08:07 ============================================================================ +19:08:07 [ 1] [ 4] [0210] +19:08:07 [ 2] [ 16] [6213544001699435] +19:08:07 [ 3] [ 6] [010000] +19:08:07 [ 4] [ 12] [000050000000] +19:08:07 [ 7] [ 10] [0320191952] +19:08:07 [ 11] [ 6] [412753] +19:08:07 [ 12] [ 6] [191952] +19:08:07 [ 13] [ 4] [0320] +19:08:07 [ 15] [ 4] [0320] +19:08:07 [ 18] [ 4] [6011] +19:08:07 [ 19] [ 3] [418] +19:08:07 [ 32] [ 6] [123401] +19:08:07 [ 35] [ 32] [6213544001699435=491212019943430] +19:08:07 [ 37] [ 12] [507900450275] +19:08:07 [ 38] [ 6] [213274] +19:08:07 [ 39] [ 2] [00] +19:08:07 [ 41] [ 8] [02000600] +19:08:07 [ 49] [ 3] [418] +19:08:07 [ 54] [ 40] [0001418C0000136643550002418C000013664355] +19:08:07 ============================================================================ +19:08:07 Calculate Source COMM Id = 6 +19:08:07 ============================================================================ +19:08:07 + + +waiting on router queue for slot.... +19:08:20 ============================================================================ +19:08:20 Slot Id : <445> +19:08:20 Transaction Type : REQUEST +19:08:20 Received From : +19:08:20 ============================================================================ +19:08:20 FNo. Len. Field Value +19:08:20 ============================================================================ +19:08:20 [ 1] [ 4] [0800] +19:08:20 [ 7] [ 10] [0320120727] +19:08:20 [ 11] [ 6] [157870] +19:08:20 [ 70] [ 3] [301] +19:08:20 ============================================================================ +19:08:20 + + +waiting on router queue for slot.... +19:08:20 Sending to : +19:08:20 ============================================================================ +19:08:20 ============================================================================ +19:08:20 Slot Id : <445> +19:08:20 Transaction Type : RESPONSE +19:08:20 Received From : +19:08:20 ============================================================================ +19:08:20 FNo. Len. Field Value +19:08:20 ============================================================================ +19:08:20 [ 1] [ 4] [0810] +19:08:20 [ 7] [ 10] [0320120727] +19:08:20 [ 11] [ 6] [157870] +19:08:20 [ 39] [ 2] [00] +19:08:20 [ 70] [ 3] [301] +19:08:20 ============================================================================ +19:08:20 Calculate Source COMM Id = 2 +19:08:20 ============================================================================ +19:08:20 + + +waiting on router queue for slot.... +19:08:21 ============================================================================ +19:08:21 Slot Id : <442> +19:08:21 Transaction Type : REQUEST +19:08:21 Received From : +19:08:21 ============================================================================ +19:08:21 FNo. Len. Field Value +19:08:21 ============================================================================ +19:08:21 [ 1] [ 4] [0800] +19:08:21 [ 7] [ 10] [0321022008] +19:08:21 [ 11] [ 6] [192008] +19:08:21 [ 37] [ 12] [57919192008] +19:08:21 [ 70] [ 3] [301] +19:08:21 ============================================================================ +19:08:21 + + +waiting on router queue for slot.... +19:08:21 Sending to : +19:08:21 ============================================================================ +19:08:21 ============================================================================ +19:08:21 Slot Id : <442> +19:08:21 Transaction Type : RESPONSE +19:08:21 Received From : +19:08:21 ============================================================================ +19:08:21 FNo. Len. Field Value +19:08:21 ============================================================================ +19:08:21 [ 1] [ 4] [0810] +19:08:21 [ 7] [ 10] [0321022008] +19:08:21 [ 11] [ 6] [192008] +19:08:21 [ 37] [ 12] [579191920080] +19:08:21 [ 39] [ 2] [00] +19:08:21 [ 70] [ 3] [810] +19:08:21 ============================================================================ +19:08:21 Calculate Source COMM Id = 6 +19:08:21 ============================================================================ +19:08:21 + + +waiting on router queue for slot.... +19:08:27 ============================================================================ +19:08:27 Slot Id : <438> +19:08:27 Transaction Type : REQUEST +19:08:27 Received From : +19:08:27 ============================================================================ +19:08:27 FNo. Len. Field Value +19:08:27 ============================================================================ +19:08:27 [ 1] [ 4] [0800] +19:08:27 [ 7] [ 10] [0320190813] +19:08:27 [ 11] [ 6] [008866] +19:08:27 [ 37] [ 12] [507919008866] +19:08:27 [ 70] [ 3] [ ] +19:08:27 ============================================================================ +19:08:27 + + +waiting on router queue for slot.... +19:08:27 Sending to : +19:08:27 ============================================================================ +19:08:27 ============================================================================ +19:08:27 Slot Id : <438> +19:08:27 Transaction Type : RESPONSE +19:08:27 Received From : +19:08:27 ============================================================================ +19:08:27 FNo. Len. Field Value +19:08:27 ============================================================================ +19:08:27 [ 1] [ 4] [0810] +19:08:27 [ 7] [ 10] [0320190813] +19:08:27 [ 11] [ 6] [008866] +19:08:27 [ 37] [ 12] [507919008866] +19:08:27 [ 39] [ 2] [91] +19:08:27 [ 70] [ 3] [ ] +19:08:27 ============================================================================ +19:08:27 Calculate Source COMM Id = 3 +19:08:27 ============================================================================ +19:08:27 + + +waiting on router queue for slot.... +19:08:31 ============================================================================ +19:08:31 Slot Id : <435> +19:08:31 Transaction Type : REQUEST +19:08:31 Received From : +19:08:31 ============================================================================ +19:08:31 FNo. Len. Field Value +19:08:31 ============================================================================ +19:08:31 [ 1] [ 4] [0800] +19:08:31 [ 7] [ 10] [0320120738] +19:08:31 [ 11] [ 6] [157871] +19:08:31 [ 70] [ 3] [301] +19:08:31 ============================================================================ +19:08:31 + + +waiting on router queue for slot.... +19:08:31 Sending to : +19:08:31 ============================================================================ +19:08:31 ============================================================================ +19:08:31 Slot Id : <435> +19:08:31 Transaction Type : RESPONSE +19:08:31 Received From : +19:08:31 ============================================================================ +19:08:31 FNo. Len. Field Value +19:08:31 ============================================================================ +19:08:31 [ 1] [ 4] [0810] +19:08:31 [ 7] [ 10] [0320120738] +19:08:31 [ 11] [ 6] [157871] +19:08:31 [ 39] [ 2] [00] +19:08:31 [ 70] [ 3] [301] +19:08:31 ============================================================================ +19:08:31 Calculate Source COMM Id = 2 +19:08:31 ============================================================================ +19:08:31 + + +waiting on router queue for slot.... +19:08:41 ============================================================================ +19:08:41 Slot Id : <427> +19:08:41 Transaction Type : REQUEST +19:08:41 Received From : +19:08:41 ============================================================================ +19:08:41 FNo. Len. Field Value +19:08:41 ============================================================================ +19:08:41 [ 1] [ 4] [0800] +19:08:41 [ 2] [ 5] [02531] +19:08:41 [ 3] [ 6] [579198] +19:08:41 [ 7] [ 10] [0320120841] +19:08:41 [ 11] [ 6] [807523] +19:08:41 [ 15] [ 10] [0320120841] +19:08:41 [ 37] [ 11] [57919807523] +19:08:41 [ 70] [ 3] [001] +19:08:41 ============================================================================ +19:08:41 + + +waiting on router queue for slot.... +19:08:41 ============================================================================ +19:08:41 Slot Id : <427> +19:08:41 Transaction Type : RESPONSE +19:08:41 Received From : +19:08:41 ============================================================================ +19:08:41 FNo. Len. Field Value +19:08:41 ============================================================================ +19:08:41 [ 1] [ 4] [0810] +19:08:41 [ 7] [ 10] [0320120841] +19:08:41 [ 11] [ 6] [807523] +19:08:41 [ 15] [ 4] [0320] +19:08:41 [ 37] [ 12] [57919807523] +19:08:41 [ 39] [ 2] [00] +19:08:41 [ 70] [ 3] [001] +19:08:41 ============================================================================ +19:08:41 Sending to : +19:08:41 ============================================================================ +19:08:41 + + +waiting on router queue for slot.... +19:08:42 ============================================================================ +19:08:42 Slot Id : <431> +19:08:42 Transaction Type : REQUEST +19:08:42 Received From : +19:08:42 ============================================================================ +19:08:42 FNo. Len. Field Value +19:08:42 ============================================================================ +19:08:42 [ 1] [ 4] [0800] +19:08:42 [ 7] [ 10] [0320120749] +19:08:42 [ 11] [ 6] [157872] +19:08:42 [ 70] [ 3] [301] +19:08:42 ============================================================================ +19:08:42 + + +waiting on router queue for slot.... +19:08:42 Sending to : +19:08:42 ============================================================================ +19:08:42 ============================================================================ +19:08:42 Slot Id : <431> +19:08:42 Transaction Type : RESPONSE +19:08:42 Received From : +19:08:42 ============================================================================ +19:08:42 FNo. Len. Field Value +19:08:42 ============================================================================ +19:08:42 [ 1] [ 4] [0810] +19:08:42 [ 7] [ 10] [0320120749] +19:08:42 [ 11] [ 6] [157872] +19:08:42 [ 39] [ 2] [00] +19:08:42 [ 70] [ 3] [301] +19:08:42 ============================================================================ +19:08:42 Calculate Source COMM Id = 2 +19:08:42 ============================================================================ +19:08:42 + + +waiting on router queue for slot.... +19:08:52 ============================================================================ +19:08:52 Slot Id : <462> +19:08:52 Transaction Type : REQUEST +19:08:52 Received From : +19:08:52 ============================================================================ +19:08:52 FNo. Len. Field Value +19:08:52 ============================================================================ +19:08:52 [ 1] [ 4] [0800] +19:08:52 [ 7] [ 10] [0320120759] +19:08:52 [ 11] [ 6] [157873] +19:08:52 [ 70] [ 3] [301] +19:08:52 ============================================================================ +19:08:52 + + +waiting on router queue for slot.... +19:08:52 Sending to : +19:08:52 ============================================================================ +19:08:52 ============================================================================ +19:08:52 Slot Id : <462> +19:08:52 Transaction Type : RESPONSE +19:08:52 Received From : +19:08:52 ============================================================================ +19:08:52 FNo. Len. Field Value +19:08:52 ============================================================================ +19:08:52 [ 1] [ 4] [0810] +19:08:52 [ 7] [ 10] [0320120759] +19:08:52 [ 11] [ 6] [157873] +19:08:52 [ 39] [ 2] [00] +19:08:52 [ 70] [ 3] [301] +19:08:52 ============================================================================ +19:08:52 Calculate Source COMM Id = 2 +19:08:52 ============================================================================ +19:08:52 + + +waiting on router queue for slot.... +19:08:54 ============================================================================ +19:08:54 Slot Id : <428> +19:08:54 Transaction Type : REQUEST +19:08:54 Received From : +19:08:54 ============================================================================ +19:08:54 FNo. Len. Field Value +19:08:54 ============================================================================ +19:08:54 [ 1] [ 4] [0200] +19:08:54 [ 2] [ 16] [6213548000311686] +19:08:54 [ 3] [ 6] [010000] +19:08:54 [ 4] [ 12] [000004000000] +19:08:54 [ 7] [ 10] [0320191639] +19:08:54 [ 11] [ 6] [254899] +19:08:54 [ 12] [ 6] [191639] +19:08:54 [ 13] [ 4] [0320] +19:08:54 [ 14] [ 4] [1803] +19:08:54 [ 15] [ 4] [0320] +19:08:54 [ 18] [ 4] [6011] +19:08:54 [ 22] [ 3] [900] +19:08:54 [ 25] [ 2] [02] +19:08:54 [ 28] [ 9] [D00002000] +19:08:54 [ 32] [ 6] [220699] +19:08:54 [ 35] [ 32] [6213548000311686=180312011168076] +19:08:54 [ 37] [ 12] [507900094450] +19:08:54 [ 41] [ 8] [01000900] +19:08:54 [ 42] [ 15] [APTRA ] +19:08:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:08:54 [ 49] [ 3] [418] +19:08:54 [ 52] [ 16] [978FF29BD0F5A7BB] +19:08:54 ============================================================================ +19:08:54 + + +waiting on router queue for slot.... +19:08:54 Sending to : +19:08:54 ============================================================================ +19:08:54 Sending to : +19:08:54 ============================================================================ +19:08:54 ============================================================================ +19:08:54 Slot Id : <428> +19:08:54 Transaction Type : REQUEST +19:08:54 Received From : +19:08:54 ============================================================================ +19:08:54 FNo. Len. Field Value +19:08:54 ============================================================================ +19:08:54 [ 1] [ 4] [0200] +19:08:54 [ 2] [ 16] [6213548000311686] +19:08:54 [ 3] [ 6] [010000] +19:08:54 [ 4] [ 12] [000004000000] +19:08:54 [ 7] [ 10] [0320191639] +19:08:54 [ 11] [ 6] [254899] +19:08:54 [ 12] [ 6] [191639] +19:08:54 [ 13] [ 4] [0320] +19:08:54 [ 14] [ 4] [1803] +19:08:54 [ 15] [ 4] [0320] +19:08:54 [ 18] [ 4] [6011] +19:08:54 [ 22] [ 3] [900] +19:08:54 [ 25] [ 2] [02] +19:08:54 [ 28] [ 9] [D00002000] +19:08:54 [ 32] [ 6] [220699] +19:08:54 [ 35] [ 32] [6213548000311686=180312011168076] +19:08:54 [ 37] [ 12] [507900094450] +19:08:54 [ 41] [ 8] [01000900] +19:08:54 [ 42] [ 15] [APTRA ] +19:08:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:08:54 [ 49] [ 3] [418] +19:08:54 [ 52] [ 16] [978FF29BD0F5A7BB] +19:08:54 ============================================================================ +19:08:54 + + +waiting on router queue for slot.... +19:08:54 Sending to : +19:08:54 ============================================================================ +19:08:54 ============================================================================ +19:08:54 Slot Id : <428> +19:08:54 Transaction Type : REQUEST +19:08:54 Received From : +19:08:54 ============================================================================ +19:08:54 FNo. Len. Field Value +19:08:54 ============================================================================ +19:08:54 [ 1] [ 4] [0200] +19:08:54 [ 2] [ 16] [6213548000311686] +19:08:54 [ 3] [ 6] [010000] +19:08:54 [ 4] [ 12] [000004000000] +19:08:54 [ 7] [ 10] [0320191639] +19:08:54 [ 11] [ 6] [254899] +19:08:54 [ 12] [ 6] [191639] +19:08:54 [ 13] [ 4] [0320] +19:08:54 [ 14] [ 4] [1803] +19:08:54 [ 15] [ 4] [0320] +19:08:54 [ 18] [ 4] [6011] +19:08:54 [ 22] [ 3] [900] +19:08:54 [ 25] [ 2] [02] +19:08:54 [ 28] [ 9] [D00002000] +19:08:54 [ 32] [ 6] [220699] +19:08:54 [ 35] [ 32] [6213548000311686=180312011168076] +19:08:54 [ 37] [ 12] [507900094450] +19:08:54 [ 41] [ 8] [01000900] +19:08:54 [ 42] [ 15] [APTRA ] +19:08:54 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:08:54 [ 49] [ 3] [418] +19:08:54 [ 52] [ 16] [D9511459B0A5CE05] +19:08:54 ============================================================================ +19:08:54 + + +waiting on router queue for slot.... +19:08:54 Sending to : <0> +19:08:54 ============================================================================ +19:08:55 ============================================================================ +19:08:55 Slot Id : <428> +19:08:55 Transaction Type : RESPONSE +19:08:55 Received From : +19:08:55 ============================================================================ +19:08:55 FNo. Len. Field Value +19:08:55 ============================================================================ +19:08:55 [ 1] [ 4] [0210] +19:08:55 [ 2] [ 16] [6213548000311686] +19:08:55 [ 3] [ 6] [010000] +19:08:55 [ 4] [ 12] [000004000000] +19:08:55 [ 7] [ 10] [0320191639] +19:08:55 [ 11] [ 6] [254899] +19:08:55 [ 12] [ 6] [191639] +19:08:55 [ 13] [ 4] [0320] +19:08:55 [ 15] [ 4] [0320] +19:08:55 [ 18] [ 4] [6011] +19:08:55 [ 32] [ 6] [220699] +19:08:55 [ 35] [ 32] [6213548000311686=180312011168076] +19:08:55 [ 37] [ 12] [507900094450] +19:08:55 [ 38] [ 6] [471178] +19:08:55 [ 39] [ 2] [00] +19:08:55 [ 41] [ 8] [01000900] +19:08:55 [ 49] [ 3] [418] +19:08:55 [ 54] [ 40] [0001418C0000256806260002418C000025680626] +19:08:55 ============================================================================ +19:08:55 Sending to : +19:08:55 ============================================================================ +19:08:55 + + +waiting on router queue for slot.... +19:08:56 ============================================================================ +19:08:56 Slot Id : <428> +19:08:56 Transaction Type : RESPONSE +19:08:56 Received From : +19:08:56 ============================================================================ +19:08:56 FNo. Len. Field Value +19:08:56 ============================================================================ +19:08:56 [ 1] [ 4] [0210] +19:08:56 [ 2] [ 16] [6213548000311686] +19:08:56 [ 3] [ 6] [010000] +19:08:56 [ 4] [ 12] [000004000000] +19:08:56 [ 7] [ 10] [0320191639] +19:08:56 [ 11] [ 6] [254899] +19:08:56 [ 12] [ 6] [191639] +19:08:56 [ 13] [ 4] [0320] +19:08:56 [ 15] [ 4] [0320] +19:08:56 [ 18] [ 4] [6011] +19:08:56 [ 32] [ 6] [220699] +19:08:56 [ 35] [ 32] [6213548000311686=180312011168076] +19:08:56 [ 37] [ 12] [507900094450] +19:08:56 [ 38] [ 6] [471178] +19:08:56 [ 39] [ 2] [00] +19:08:56 [ 41] [ 8] [01000900] +19:08:56 [ 49] [ 3] [418] +19:08:56 [ 54] [ 40] [0001418C0000256806260002418C000025680626] +19:08:56 ============================================================================ +19:08:56 Calculate Source COMM Id = 1 +19:08:56 ============================================================================ +19:08:56 + + +waiting on router queue for slot.... +19:08:56 ============================================================================ +19:08:56 Slot Id : <421> +19:08:56 Transaction Type : REQUEST +19:08:56 Received From : +19:08:56 ============================================================================ +19:08:56 FNo. Len. Field Value +19:08:56 ============================================================================ +19:08:56 [ 1] [ 4] [0200] +19:08:56 [ 2] [ 16] [6688990040063040] +19:08:56 [ 3] [ 6] [011000] +19:08:56 [ 4] [ 12] [000010000000] +19:08:56 [ 7] [ 10] [0320190851] +19:08:56 [ 11] [ 6] [834197] +19:08:56 [ 12] [ 6] [190851] +19:08:56 [ 13] [ 4] [0320] +19:08:56 [ 15] [ 4] [0320] +19:08:56 [ 18] [ 4] [6011] +19:08:56 [ 22] [ 3] [900] +19:08:56 [ 25] [ 2] [02] +19:08:56 [ 28] [ 9] [D00002000] +19:08:56 [ 32] [ 6] [621354] +19:08:56 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:08:56 [ 37] [ 12] [507903444210] +19:08:56 [ 41] [ 8] [06001700] +19:08:56 [ 42] [ 15] [NATIVE ] +19:08:56 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +19:08:56 [ 49] [ 3] [418] +19:08:56 [ 52] [ 16] [E71EC437AC4A8D71] +19:08:56 ============================================================================ +19:08:56 + + +waiting on router queue for slot.... +19:08:56 Sending to : +19:08:56 ============================================================================ +19:08:56 Sending to : +19:08:56 ============================================================================ +19:08:57 ============================================================================ +19:08:57 Slot Id : <421> +19:08:57 Transaction Type : REQUEST +19:08:57 Received From : +19:08:57 ============================================================================ +19:08:57 FNo. Len. Field Value +19:08:57 ============================================================================ +19:08:57 [ 1] [ 4] [0200] +19:08:57 [ 2] [ 16] [6688990040063040] +19:08:57 [ 3] [ 6] [011000] +19:08:57 [ 4] [ 12] [000010000000] +19:08:57 [ 7] [ 10] [0320190851] +19:08:57 [ 11] [ 6] [834197] +19:08:57 [ 12] [ 6] [190851] +19:08:57 [ 13] [ 4] [0320] +19:08:57 [ 15] [ 4] [0320] +19:08:57 [ 18] [ 4] [6011] +19:08:57 [ 22] [ 3] [900] +19:08:57 [ 25] [ 2] [02] +19:08:57 [ 28] [ 9] [D00002000] +19:08:57 [ 32] [ 6] [621354] +19:08:57 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:08:57 [ 37] [ 12] [507903444210] +19:08:57 [ 41] [ 8] [06001700] +19:08:57 [ 42] [ 15] [NATIVE ] +19:08:57 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +19:08:57 [ 49] [ 3] [418] +19:08:57 [ 52] [ 16] [E71EC437AC4A8D71] +19:08:57 ============================================================================ +19:08:57 + + +waiting on router queue for slot.... +19:08:57 Sending to : +19:08:57 ============================================================================ +19:08:57 ============================================================================ +19:08:57 Slot Id : <421> +19:08:57 Transaction Type : REQUEST +19:08:57 Received From : +19:08:57 ============================================================================ +19:08:57 FNo. Len. Field Value +19:08:57 ============================================================================ +19:08:57 [ 1] [ 4] [0200] +19:08:57 [ 2] [ 16] [6688990040063040] +19:08:57 [ 3] [ 6] [011000] +19:08:57 [ 4] [ 12] [000010000000] +19:08:57 [ 7] [ 10] [0320190851] +19:08:57 [ 11] [ 6] [834197] +19:08:57 [ 12] [ 6] [190851] +19:08:57 [ 13] [ 4] [0320] +19:08:57 [ 15] [ 4] [0320] +19:08:57 [ 18] [ 4] [6011] +19:08:57 [ 22] [ 3] [900] +19:08:57 [ 25] [ 2] [02] +19:08:57 [ 28] [ 9] [D00002000] +19:08:57 [ 32] [ 6] [621354] +19:08:57 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:08:57 [ 37] [ 12] [507903444210] +19:08:57 [ 41] [ 8] [06001700] +19:08:57 [ 42] [ 15] [NATIVE ] +19:08:57 [ 43] [ 40] [Dudu Minimark ODX Xay LAO] +19:08:57 [ 49] [ 3] [418] +19:08:57 [ 52] [ 16] [377E1E0A3ABEEA35] +19:08:57 ============================================================================ +19:08:57 + + +waiting on router queue for slot.... +19:08:57 Sending to : <4> +19:08:57 ============================================================================ +19:08:58 ============================================================================ +19:08:58 Slot Id : <421> +19:08:58 Transaction Type : RESPONSE +19:08:58 Received From : +19:08:58 ============================================================================ +19:08:58 FNo. Len. Field Value +19:08:58 ============================================================================ +19:08:58 [ 1] [ 4] [0210] +19:08:58 [ 2] [ 16] [6688990040063040] +19:08:58 [ 3] [ 6] [011000] +19:08:58 [ 4] [ 12] [000010000000] +19:08:58 [ 11] [ 6] [834197] +19:08:58 [ 12] [ 6] [190851] +19:08:58 [ 15] [ 4] [0320] +19:08:58 [ 18] [ 4] [6011] +19:08:58 [ 32] [ 6] [621354] +19:08:58 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:08:58 [ 37] [ 12] [507903444210] +19:08:58 [ 38] [ 6] [811072] +19:08:58 [ 39] [ 2] [00] +19:08:58 [ 41] [ 8] [06001700] +19:08:58 [ 49] [ 3] [418] +19:08:58 [ 54] [ 20] [1002418C000031894088] +19:08:58 ============================================================================ +19:08:58 Sending to : +19:08:58 ============================================================================ +19:08:58 + + +waiting on router queue for slot.... +19:09:00 ============================================================================ +19:09:00 Slot Id : <421> +19:09:00 Transaction Type : RESPONSE +19:09:00 Received From : +19:09:00 ============================================================================ +19:09:00 FNo. Len. Field Value +19:09:00 ============================================================================ +19:09:00 [ 1] [ 4] [0210] +19:09:00 [ 2] [ 16] [6688990040063040] +19:09:00 [ 3] [ 6] [011000] +19:09:00 [ 4] [ 12] [000010000000] +19:09:00 [ 11] [ 6] [834197] +19:09:00 [ 12] [ 6] [190851] +19:09:00 [ 15] [ 4] [0320] +19:09:00 [ 18] [ 4] [6011] +19:09:00 [ 32] [ 6] [621354] +19:09:00 [ 35] [ 37] [6688990040063040=98011261322317400000] +19:09:00 [ 37] [ 12] [507903444210] +19:09:00 [ 38] [ 6] [811072] +19:09:00 [ 39] [ 2] [00] +19:09:00 [ 41] [ 8] [06001700] +19:09:00 [ 49] [ 3] [418] +19:09:00 [ 54] [ 20] [1002418C000031894088] +19:09:00 ============================================================================ +19:09:00 Calculate Source COMM Id = 0 +19:09:00 ============================================================================ +19:09:00 + + +waiting on router queue for slot.... +19:09:08 ============================================================================ +19:09:08 Slot Id : <422> +19:09:08 Transaction Type : REQUEST +19:09:08 Received From : +19:09:08 ============================================================================ +19:09:08 FNo. Len. Field Value +19:09:08 ============================================================================ +19:09:08 [ 1] [ 4] [0800] +19:09:08 [ 7] [ 10] [0320120815] +19:09:08 [ 11] [ 6] [157874] +19:09:08 [ 70] [ 3] [301] +19:09:08 ============================================================================ +19:09:08 + + +waiting on router queue for slot.... +19:09:08 Sending to : +19:09:08 ============================================================================ +19:09:08 ============================================================================ +19:09:08 Slot Id : <422> +19:09:08 Transaction Type : RESPONSE +19:09:08 Received From : +19:09:08 ============================================================================ +19:09:08 FNo. Len. Field Value +19:09:08 ============================================================================ +19:09:08 [ 1] [ 4] [0810] +19:09:08 [ 7] [ 10] [0320120815] +19:09:08 [ 11] [ 6] [157874] +19:09:08 [ 39] [ 2] [00] +19:09:08 [ 70] [ 3] [301] +19:09:08 ============================================================================ +19:09:08 Calculate Source COMM Id = 2 +19:09:08 ============================================================================ +19:09:08 + + +waiting on router queue for slot.... +19:09:19 ============================================================================ +19:09:19 Slot Id : <451> +19:09:19 Transaction Type : REQUEST +19:09:19 Received From : +19:09:19 ============================================================================ +19:09:19 FNo. Len. Field Value +19:09:19 ============================================================================ +19:09:19 [ 1] [ 4] [0800] +19:09:19 [ 7] [ 10] [0320120825] +19:09:19 [ 11] [ 6] [157875] +19:09:19 [ 70] [ 3] [301] +19:09:19 ============================================================================ +19:09:19 + + +waiting on router queue for slot.... +19:09:19 Sending to : +19:09:19 ============================================================================ +19:09:19 ============================================================================ +19:09:19 Slot Id : <451> +19:09:19 Transaction Type : RESPONSE +19:09:19 Received From : +19:09:19 ============================================================================ +19:09:19 FNo. Len. Field Value +19:09:19 ============================================================================ +19:09:19 [ 1] [ 4] [0810] +19:09:19 [ 7] [ 10] [0320120825] +19:09:19 [ 11] [ 6] [157875] +19:09:19 [ 39] [ 2] [00] +19:09:19 [ 70] [ 3] [301] +19:09:19 ============================================================================ +19:09:19 Calculate Source COMM Id = 2 +19:09:19 ============================================================================ +19:09:19 + + +waiting on router queue for slot.... +19:09:26 ============================================================================ +19:09:26 Slot Id : <457> +19:09:26 Transaction Type : REQUEST +19:09:26 Received From : +19:09:26 ============================================================================ +19:09:26 FNo. Len. Field Value +19:09:26 ============================================================================ +19:09:26 [ 1] [ 4] [0800] +19:09:26 [ 7] [ 10] [0321022113] +19:09:26 [ 11] [ 6] [192113] +19:09:26 [ 37] [ 12] [57919192113] +19:09:26 [ 70] [ 3] [301] +19:09:26 ============================================================================ +19:09:26 + + +waiting on router queue for slot.... +19:09:26 Sending to : +19:09:26 ============================================================================ +19:09:26 ============================================================================ +19:09:26 Slot Id : <457> +19:09:26 Transaction Type : RESPONSE +19:09:26 Received From : +19:09:26 ============================================================================ +19:09:26 FNo. Len. Field Value +19:09:26 ============================================================================ +19:09:26 [ 1] [ 4] [0810] +19:09:26 [ 7] [ 10] [0321022113] +19:09:26 [ 11] [ 6] [192113] +19:09:26 [ 37] [ 12] [579191921130] +19:09:26 [ 39] [ 2] [00] +19:09:26 [ 70] [ 3] [810] +19:09:26 ============================================================================ +19:09:26 Calculate Source COMM Id = 6 +19:09:26 ============================================================================ +19:09:26 + + +waiting on router queue for slot.... +19:09:34 ============================================================================ +19:09:34 Slot Id : <465> +19:09:34 Transaction Type : REQUEST +19:09:34 Received From : +19:09:34 ============================================================================ +19:09:34 FNo. Len. Field Value +19:09:34 ============================================================================ +19:09:34 [ 1] [ 4] [0800] +19:09:34 [ 7] [ 10] [0320120841] +19:09:34 [ 11] [ 6] [157876] +19:09:34 [ 70] [ 3] [301] +19:09:34 ============================================================================ +19:09:34 + + +waiting on router queue for slot.... +19:09:34 Sending to : +19:09:34 ============================================================================ +19:09:34 ============================================================================ +19:09:34 Slot Id : <465> +19:09:34 Transaction Type : RESPONSE +19:09:34 Received From : +19:09:34 ============================================================================ +19:09:34 FNo. Len. Field Value +19:09:34 ============================================================================ +19:09:34 [ 1] [ 4] [0810] +19:09:34 [ 7] [ 10] [0320120841] +19:09:34 [ 11] [ 6] [157876] +19:09:34 [ 39] [ 2] [00] +19:09:34 [ 70] [ 3] [301] +19:09:34 ============================================================================ +19:09:34 Calculate Source COMM Id = 2 +19:09:34 ============================================================================ +19:09:34 + + +waiting on router queue for slot.... +19:09:37 ============================================================================ +19:09:37 Slot Id : <426> +19:09:37 Transaction Type : REQUEST +19:09:37 Received From : +19:09:37 ============================================================================ +19:09:37 FNo. Len. Field Value +19:09:37 ============================================================================ +19:09:37 [ 1] [ 4] [0200] +19:09:37 [ 2] [ 16] [2206990000132613] +19:09:37 [ 3] [ 6] [010000] +19:09:37 [ 4] [ 12] [000050000000] +19:09:37 [ 7] [ 10] [0320190726] +19:09:37 [ 11] [ 6] [955711] +19:09:37 [ 12] [ 6] [190726] +19:09:37 [ 13] [ 4] [0320] +19:09:37 [ 15] [ 4] [0320] +19:09:37 [ 18] [ 4] [6011] +19:09:37 [ 19] [ 3] [418] +19:09:37 [ 22] [ 3] [021] +19:09:37 [ 25] [ 2] [01] +19:09:37 [ 28] [ 9] [D00002000] +19:09:37 [ 32] [ 6] [668899] +19:09:37 [ 35] [ 32] [2206990000132613=980512615354037] +19:09:37 [ 37] [ 12] [507900146935] +19:09:37 [ 41] [ 8] [03020005] +19:09:37 [ 42] [ 15] [APT ] +19:09:37 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:09:37 [ 49] [ 3] [418] +19:09:37 [ 52] [ 16] [A0DE5C44632EA158] +19:09:37 ============================================================================ +19:09:37 + + +waiting on router queue for slot.... +19:09:37 Sending to : +19:09:37 ============================================================================ +19:09:37 Sending to : +19:09:37 ============================================================================ +19:09:37 ============================================================================ +19:09:37 Slot Id : <426> +19:09:37 Transaction Type : REQUEST +19:09:37 Received From : +19:09:37 ============================================================================ +19:09:37 FNo. Len. Field Value +19:09:37 ============================================================================ +19:09:37 [ 1] [ 4] [0200] +19:09:37 [ 2] [ 16] [2206990000132613] +19:09:37 [ 3] [ 6] [010000] +19:09:37 [ 4] [ 12] [000050000000] +19:09:37 [ 7] [ 10] [0320190726] +19:09:37 [ 11] [ 6] [955711] +19:09:37 [ 12] [ 6] [190726] +19:09:37 [ 13] [ 4] [0320] +19:09:37 [ 15] [ 4] [0320] +19:09:37 [ 18] [ 4] [6011] +19:09:37 [ 19] [ 3] [418] +19:09:37 [ 22] [ 3] [021] +19:09:37 [ 25] [ 2] [01] +19:09:37 [ 28] [ 9] [D00002000] +19:09:37 [ 32] [ 6] [668899] +19:09:37 [ 35] [ 32] [2206990000132613=980512615354037] +19:09:37 [ 37] [ 12] [507900146935] +19:09:37 [ 41] [ 8] [03020005] +19:09:37 [ 42] [ 15] [APT ] +19:09:37 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:09:37 [ 49] [ 3] [418] +19:09:37 [ 52] [ 16] [A0DE5C44632EA158] +19:09:37 ============================================================================ +19:09:37 + + +waiting on router queue for slot.... +19:09:37 Sending to : +19:09:37 ============================================================================ +19:09:37 ============================================================================ +19:09:37 Slot Id : <426> +19:09:37 Transaction Type : REQUEST +19:09:37 Received From : +19:09:37 ============================================================================ +19:09:37 FNo. Len. Field Value +19:09:37 ============================================================================ +19:09:37 [ 1] [ 4] [0200] +19:09:37 [ 2] [ 16] [2206990000132613] +19:09:37 [ 3] [ 6] [010000] +19:09:37 [ 4] [ 12] [000050000000] +19:09:37 [ 7] [ 10] [0320190726] +19:09:37 [ 11] [ 6] [955711] +19:09:37 [ 12] [ 6] [190726] +19:09:37 [ 13] [ 4] [0320] +19:09:37 [ 15] [ 4] [0320] +19:09:37 [ 18] [ 4] [6011] +19:09:37 [ 19] [ 3] [418] +19:09:37 [ 22] [ 3] [021] +19:09:37 [ 25] [ 2] [01] +19:09:37 [ 28] [ 9] [D00002000] +19:09:37 [ 32] [ 6] [668899] +19:09:37 [ 35] [ 32] [2206990000132613=980512615354037] +19:09:37 [ 37] [ 12] [507900146935] +19:09:37 [ 41] [ 8] [03020005] +19:09:37 [ 42] [ 15] [APT ] +19:09:37 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:09:37 [ 49] [ 3] [418] +19:09:37 [ 52] [ 16] [9B779EACA19CF57F] +19:09:37 ============================================================================ +19:09:37 + + +waiting on router queue for slot.... +19:09:37 Sending to : <1> +19:09:37 ============================================================================ +19:09:40 ============================================================================ +19:09:40 Slot Id : <426> +19:09:40 Transaction Type : RESPONSE +19:09:40 Received From : +19:09:40 ============================================================================ +19:09:40 FNo. Len. Field Value +19:09:40 ============================================================================ +19:09:40 [ 1] [ 4] [0210] +19:09:40 [ 2] [ 16] [2206990000132613] +19:09:40 [ 3] [ 6] [010000] +19:09:40 [ 4] [ 12] [000050000000] +19:09:40 [ 7] [ 10] [0320190726] +19:09:40 [ 11] [ 6] [955711] +19:09:40 [ 12] [ 6] [190726] +19:09:40 [ 13] [ 4] [0320] +19:09:40 [ 15] [ 4] [0320] +19:09:40 [ 18] [ 4] [6011] +19:09:40 [ 32] [ 6] [668899] +19:09:40 [ 35] [ 32] [2206990000132613=980512615354037] +19:09:40 [ 37] [ 12] [507900146935] +19:09:40 [ 38] [ 6] [647628] +19:09:40 [ 39] [ 2] [00] +19:09:40 [ 41] [ 8] [03020005] +19:09:40 [ 49] [ 3] [418] +19:09:40 [ 54] [ 40] [0001418C0001048000000002418C000104800000] +19:09:40 ============================================================================ +19:09:40 Sending to : +19:09:40 ============================================================================ +19:09:40 + + +waiting on router queue for slot.... +19:09:41 ============================================================================ +19:09:41 Slot Id : <426> +19:09:41 Transaction Type : RESPONSE +19:09:41 Received From : +19:09:41 ============================================================================ +19:09:41 FNo. Len. Field Value +19:09:41 ============================================================================ +19:09:41 [ 1] [ 4] [0210] +19:09:41 [ 2] [ 16] [2206990000132613] +19:09:41 [ 3] [ 6] [010000] +19:09:41 [ 4] [ 12] [000050000000] +19:09:41 [ 7] [ 10] [0320190726] +19:09:41 [ 11] [ 6] [955711] +19:09:41 [ 12] [ 6] [190726] +19:09:41 [ 13] [ 4] [0320] +19:09:41 [ 15] [ 4] [0320] +19:09:41 [ 18] [ 4] [6011] +19:09:41 [ 32] [ 6] [668899] +19:09:41 [ 35] [ 32] [2206990000132613=980512615354037] +19:09:41 [ 37] [ 12] [507900146935] +19:09:41 [ 38] [ 6] [647628] +19:09:41 [ 39] [ 2] [00] +19:09:41 [ 41] [ 8] [03020005] +19:09:41 [ 49] [ 3] [418] +19:09:41 [ 54] [ 40] [0001418C0001048000000002418C000104800000] +19:09:41 ============================================================================ +19:09:41 Calculate Source COMM Id = 4 +19:09:41 ============================================================================ +19:09:41 + + +waiting on router queue for slot.... +19:09:43 ============================================================================ +19:09:43 Slot Id : <436> +19:09:43 Transaction Type : REQUEST +19:09:43 Received From : +19:09:43 ============================================================================ +19:09:43 FNo. Len. Field Value +19:09:43 ============================================================================ +19:09:43 [ 1] [ 4] [0800] +19:09:43 [ 2] [ 5] [02531] +19:09:43 [ 3] [ 6] [579198] +19:09:43 [ 7] [ 10] [0320120943] +19:09:43 [ 11] [ 6] [807524] +19:09:43 [ 15] [ 10] [0320120943] +19:09:43 [ 37] [ 11] [57919807524] +19:09:43 [ 70] [ 3] [001] +19:09:43 ============================================================================ +19:09:43 + + +waiting on router queue for slot.... +19:09:43 ============================================================================ +19:09:43 Slot Id : <436> +19:09:43 Transaction Type : RESPONSE +19:09:43 Received From : +19:09:43 ============================================================================ +19:09:43 FNo. Len. Field Value +19:09:43 ============================================================================ +19:09:43 [ 1] [ 4] [0810] +19:09:43 [ 7] [ 10] [0320120943] +19:09:43 [ 11] [ 6] [807524] +19:09:43 [ 15] [ 4] [0320] +19:09:43 [ 37] [ 12] [57919807524] +19:09:43 [ 39] [ 2] [00] +19:09:43 [ 70] [ 3] [001] +19:09:43 ============================================================================ +19:09:43 Sending to : +19:09:43 ============================================================================ +19:09:43 + + +waiting on router queue for slot.... +19:09:50 ============================================================================ +19:09:50 Slot Id : <444> +19:09:50 Transaction Type : REQUEST +19:09:50 Received From : +19:09:50 ============================================================================ +19:09:50 FNo. Len. Field Value +19:09:50 ============================================================================ +19:09:50 [ 1] [ 4] [0800] +19:09:50 [ 7] [ 10] [0320120856] +19:09:50 [ 11] [ 6] [157877] +19:09:50 [ 70] [ 3] [301] +19:09:50 ============================================================================ +19:09:50 + + +waiting on router queue for slot.... +19:09:50 Sending to : +19:09:50 ============================================================================ +19:09:50 ============================================================================ +19:09:50 Slot Id : <444> +19:09:50 Transaction Type : RESPONSE +19:09:50 Received From : +19:09:50 ============================================================================ +19:09:50 FNo. Len. Field Value +19:09:50 ============================================================================ +19:09:50 [ 1] [ 4] [0810] +19:09:50 [ 7] [ 10] [0320120856] +19:09:50 [ 11] [ 6] [157877] +19:09:50 [ 39] [ 2] [00] +19:09:50 [ 70] [ 3] [301] +19:09:50 ============================================================================ +19:09:50 Calculate Source COMM Id = 2 +19:09:50 ============================================================================ +19:09:50 + + +waiting on router queue for slot.... +19:09:51 ============================================================================ +19:09:51 Slot Id : <423> +19:09:51 Transaction Type : REQUEST +19:09:51 Received From : +19:09:51 ============================================================================ +19:09:51 FNo. Len. Field Value +19:09:51 ============================================================================ +19:09:51 [ 1] [ 4] [0200] +19:09:51 [ 2] [ 16] [6213544001522793] +19:09:51 [ 3] [ 6] [010000] +19:09:51 [ 4] [ 12] [000020000000] +19:09:51 [ 7] [ 10] [0320190741] +19:09:51 [ 11] [ 6] [955725] +19:09:51 [ 12] [ 6] [190741] +19:09:51 [ 13] [ 4] [0320] +19:09:51 [ 15] [ 4] [0320] +19:09:51 [ 18] [ 4] [6011] +19:09:51 [ 19] [ 3] [418] +19:09:51 [ 22] [ 3] [021] +19:09:51 [ 25] [ 2] [01] +19:09:51 [ 28] [ 9] [D00002000] +19:09:51 [ 32] [ 6] [668899] +19:09:51 [ 35] [ 32] [6213544001522793=491212012279671] +19:09:51 [ 37] [ 12] [507902148143] +19:09:51 [ 41] [ 8] [03020024] +19:09:51 [ 42] [ 15] [APT ] +19:09:51 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +19:09:51 [ 49] [ 3] [418] +19:09:51 [ 52] [ 16] [0037D6DA23BCA7AC] +19:09:51 ============================================================================ +19:09:51 + + +waiting on router queue for slot.... +19:09:51 Sending to : +19:09:51 ============================================================================ +19:09:51 Sending to : +19:09:51 ============================================================================ +19:09:52 ============================================================================ +19:09:52 Slot Id : <423> +19:09:52 Transaction Type : REQUEST +19:09:52 Received From : +19:09:52 ============================================================================ +19:09:52 FNo. Len. Field Value +19:09:52 ============================================================================ +19:09:52 [ 1] [ 4] [0200] +19:09:52 [ 2] [ 16] [6213544001522793] +19:09:52 [ 3] [ 6] [010000] +19:09:52 [ 4] [ 12] [000020000000] +19:09:52 [ 7] [ 10] [0320190741] +19:09:52 [ 11] [ 6] [955725] +19:09:52 [ 12] [ 6] [190741] +19:09:52 [ 13] [ 4] [0320] +19:09:52 [ 15] [ 4] [0320] +19:09:52 [ 18] [ 4] [6011] +19:09:52 [ 19] [ 3] [418] +19:09:52 [ 22] [ 3] [021] +19:09:52 [ 25] [ 2] [01] +19:09:52 [ 28] [ 9] [D00002000] +19:09:52 [ 32] [ 6] [668899] +19:09:52 [ 35] [ 32] [6213544001522793=491212012279671] +19:09:52 [ 37] [ 12] [507902148143] +19:09:52 [ 41] [ 8] [03020024] +19:09:52 [ 42] [ 15] [APT ] +19:09:52 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +19:09:52 [ 49] [ 3] [418] +19:09:52 [ 52] [ 16] [0037D6DA23BCA7AC] +19:09:52 ============================================================================ +19:09:52 + + +waiting on router queue for slot.... +19:09:52 Sending to : +19:09:52 ============================================================================ +19:09:52 ============================================================================ +19:09:52 Slot Id : <423> +19:09:52 Transaction Type : REQUEST +19:09:52 Received From : +19:09:52 ============================================================================ +19:09:52 FNo. Len. Field Value +19:09:52 ============================================================================ +19:09:52 [ 1] [ 4] [0200] +19:09:52 [ 2] [ 16] [6213544001522793] +19:09:52 [ 3] [ 6] [010000] +19:09:52 [ 4] [ 12] [000020000000] +19:09:52 [ 7] [ 10] [0320190741] +19:09:52 [ 11] [ 6] [955725] +19:09:52 [ 12] [ 6] [190741] +19:09:52 [ 13] [ 4] [0320] +19:09:52 [ 15] [ 4] [0320] +19:09:52 [ 18] [ 4] [6011] +19:09:52 [ 19] [ 3] [418] +19:09:52 [ 22] [ 3] [021] +19:09:52 [ 25] [ 2] [01] +19:09:52 [ 28] [ 9] [D00002000] +19:09:52 [ 32] [ 6] [668899] +19:09:52 [ 35] [ 32] [6213544001522793=491212012279671] +19:09:52 [ 37] [ 12] [507902148143] +19:09:52 [ 41] [ 8] [03020024] +19:09:52 [ 42] [ 15] [APT ] +19:09:52 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +19:09:52 [ 49] [ 3] [418] +19:09:52 [ 52] [ 16] [7A9AC5BE1DF3A0D9] +19:09:52 ============================================================================ +19:09:52 + + +waiting on router queue for slot.... +19:09:52 Sending to : <0> +19:09:52 ============================================================================ +19:09:53 ============================================================================ +19:09:53 Slot Id : <423> +19:09:53 Transaction Type : RESPONSE +19:09:53 Received From : +19:09:53 ============================================================================ +19:09:53 FNo. Len. Field Value +19:09:53 ============================================================================ +19:09:53 [ 1] [ 4] [0210] +19:09:53 [ 2] [ 16] [6213544001522793] +19:09:53 [ 3] [ 6] [010000] +19:09:53 [ 4] [ 12] [000020000000] +19:09:53 [ 7] [ 10] [0320190741] +19:09:53 [ 11] [ 6] [955725] +19:09:53 [ 12] [ 6] [190741] +19:09:53 [ 13] [ 4] [0320] +19:09:53 [ 15] [ 4] [0320] +19:09:53 [ 18] [ 4] [6011] +19:09:53 [ 19] [ 3] [418] +19:09:53 [ 32] [ 6] [668899] +19:09:53 [ 35] [ 32] [6213544001522793=491212012279671] +19:09:53 [ 37] [ 12] [507902148143] +19:09:53 [ 38] [ 6] [104591] +19:09:53 [ 39] [ 2] [00] +19:09:53 [ 41] [ 8] [03020024] +19:09:53 [ 49] [ 3] [418] +19:09:53 [ 54] [ 40] [0001418C0000447478170002418C000044747817] +19:09:53 ============================================================================ +19:09:53 Sending to : +19:09:53 ============================================================================ +19:09:53 + + +waiting on router queue for slot.... +19:09:54 ============================================================================ +19:09:54 Slot Id : <423> +19:09:54 Transaction Type : RESPONSE +19:09:54 Received From : +19:09:54 ============================================================================ +19:09:54 FNo. Len. Field Value +19:09:54 ============================================================================ +19:09:54 [ 1] [ 4] [0210] +19:09:54 [ 2] [ 16] [6213544001522793] +19:09:54 [ 3] [ 6] [010000] +19:09:54 [ 4] [ 12] [000020000000] +19:09:54 [ 7] [ 10] [0320190741] +19:09:54 [ 11] [ 6] [955725] +19:09:54 [ 12] [ 6] [190741] +19:09:54 [ 13] [ 4] [0320] +19:09:54 [ 15] [ 4] [0320] +19:09:54 [ 18] [ 4] [6011] +19:09:54 [ 19] [ 3] [418] +19:09:54 [ 32] [ 6] [668899] +19:09:54 [ 35] [ 32] [6213544001522793=491212012279671] +19:09:54 [ 37] [ 12] [507902148143] +19:09:54 [ 38] [ 6] [104591] +19:09:54 [ 39] [ 2] [00] +19:09:54 [ 41] [ 8] [03020024] +19:09:54 [ 49] [ 3] [418] +19:09:54 [ 54] [ 40] [0001418C0000447478170002418C000044747817] +19:09:54 ============================================================================ +19:09:54 Calculate Source COMM Id = 4 +19:09:54 ============================================================================ +19:09:54 + + +waiting on router queue for slot.... +19:09:57 ============================================================================ +19:09:57 Slot Id : <458> +19:09:57 Transaction Type : REQUEST +19:09:57 Received From : +19:09:57 ============================================================================ +19:09:57 FNo. Len. Field Value +19:09:57 ============================================================================ +19:09:57 [ 1] [ 4] [0800] +19:09:57 [ 7] [ 10] [0320121742] +19:09:57 [ 11] [ 6] [077018] +19:09:57 [ 37] [ 12] [57919077018] +19:09:57 [ 70] [ 3] [301] +19:09:57 ============================================================================ +19:09:57 + + +waiting on router queue for slot.... +19:09:57 Sending to : +19:09:57 ============================================================================ +19:09:57 ============================================================================ +19:09:57 Slot Id : <458> +19:09:57 Transaction Type : RESPONSE +19:09:57 Received From : +19:09:57 ============================================================================ +19:09:57 FNo. Len. Field Value +19:09:57 ============================================================================ +19:09:57 [ 1] [ 4] [0810] +19:09:57 [ 7] [ 10] [0320121742] +19:09:57 [ 11] [ 6] [077018] +19:09:57 [ 37] [ 12] [579190770180] +19:09:57 [ 39] [ 2] [00] +19:09:57 [ 70] [ 3] [810] +19:09:57 ============================================================================ +19:09:57 Calculate Source COMM Id = 1 +19:09:57 ============================================================================ +19:09:57 + + +waiting on router queue for slot.... +19:09:59 ============================================================================ +19:09:59 Slot Id : <459> +19:09:59 Transaction Type : REQUEST +19:09:59 Received From : +19:09:59 ============================================================================ +19:09:59 FNo. Len. Field Value +19:09:59 ============================================================================ +19:09:59 [ 1] [ 4] [0200] +19:09:59 [ 2] [ 16] [6213544001255634] +19:09:59 [ 3] [ 6] [010000] +19:09:59 [ 4] [ 12] [000200000000] +19:09:59 [ 7] [ 10] [0320120906] +19:09:59 [ 11] [ 6] [271380] +19:09:59 [ 12] [ 6] [190906] +19:09:59 [ 13] [ 4] [0320] +19:09:59 [ 14] [ 4] [4912] +19:09:59 [ 15] [ 4] [0320] +19:09:59 [ 18] [ 4] [6011] +19:09:59 [ 19] [ 3] [418] +19:09:59 [ 22] [ 3] [021] +19:09:59 [ 25] [ 2] [01] +19:09:59 [ 28] [ 9] [D00002000] +19:09:59 [ 32] [ 6] [180893] +19:09:59 [ 35] [ 32] [6213544001255634=491212015563503] +19:09:59 [ 37] [ 12] [507912271380] +19:09:59 [ 41] [ 8] [0102SAPA] +19:09:59 [ 42] [ 15] [999999 ] +19:09:59 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +19:09:59 [ 49] [ 3] [418] +19:09:59 [ 52] [ 16] [0C2D618389037144] +19:09:59 ============================================================================ +19:09:59 + + +waiting on router queue for slot.... +19:09:59 Sending to : +19:09:59 ============================================================================ +19:09:59 Sending to : +19:09:59 ============================================================================ +19:10:00 ============================================================================ +19:10:00 Slot Id : <459> +19:10:00 Transaction Type : REQUEST +19:10:00 Received From : +19:10:00 ============================================================================ +19:10:00 FNo. Len. Field Value +19:10:00 ============================================================================ +19:10:00 [ 1] [ 4] [0200] +19:10:00 [ 2] [ 16] [6213544001255634] +19:10:00 [ 3] [ 6] [010000] +19:10:00 [ 4] [ 12] [000200000000] +19:10:00 [ 7] [ 10] [0320120906] +19:10:00 [ 11] [ 6] [271380] +19:10:00 [ 12] [ 6] [190906] +19:10:00 [ 13] [ 4] [0320] +19:10:00 [ 14] [ 4] [4912] +19:10:00 [ 15] [ 4] [0320] +19:10:00 [ 18] [ 4] [6011] +19:10:00 [ 19] [ 3] [418] +19:10:00 [ 22] [ 3] [021] +19:10:00 [ 25] [ 2] [01] +19:10:00 [ 28] [ 9] [D00002000] +19:10:00 [ 32] [ 6] [180893] +19:10:00 [ 35] [ 32] [6213544001255634=491212015563503] +19:10:00 [ 37] [ 12] [507912271380] +19:10:00 [ 41] [ 8] [0102SAPA] +19:10:00 [ 42] [ 15] [999999 ] +19:10:00 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +19:10:00 [ 49] [ 3] [418] +19:10:00 [ 52] [ 16] [0C2D618389037144] +19:10:00 ============================================================================ +19:10:00 + + +waiting on router queue for slot.... +19:10:00 Sending to : +19:10:00 ============================================================================ +19:10:00 ============================================================================ +19:10:00 Slot Id : <459> +19:10:00 Transaction Type : REQUEST +19:10:00 Received From : +19:10:00 ============================================================================ +19:10:00 FNo. Len. Field Value +19:10:00 ============================================================================ +19:10:00 [ 1] [ 4] [0200] +19:10:00 [ 2] [ 16] [6213544001255634] +19:10:00 [ 3] [ 6] [010000] +19:10:00 [ 4] [ 12] [000200000000] +19:10:00 [ 7] [ 10] [0320120906] +19:10:00 [ 11] [ 6] [271380] +19:10:00 [ 12] [ 6] [190906] +19:10:00 [ 13] [ 4] [0320] +19:10:00 [ 14] [ 4] [4912] +19:10:00 [ 15] [ 4] [0320] +19:10:00 [ 18] [ 4] [6011] +19:10:00 [ 19] [ 3] [418] +19:10:00 [ 22] [ 3] [021] +19:10:00 [ 25] [ 2] [01] +19:10:00 [ 28] [ 9] [D00002000] +19:10:00 [ 32] [ 6] [180893] +19:10:00 [ 35] [ 32] [6213544001255634=491212015563503] +19:10:00 [ 37] [ 12] [507912271380] +19:10:00 [ 41] [ 8] [0102SAPA] +19:10:00 [ 42] [ 15] [999999 ] +19:10:00 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +19:10:00 [ 49] [ 3] [418] +19:10:00 [ 52] [ 16] [5311CD809E15F3C3] +19:10:00 ============================================================================ +19:10:00 + + +waiting on router queue for slot.... +19:10:00 Sending to : <0> +19:10:00 ============================================================================ +19:10:00 ============================================================================ +19:10:00 Slot Id : <459> +19:10:00 Transaction Type : RESPONSE +19:10:00 Received From : +19:10:00 ============================================================================ +19:10:00 FNo. Len. Field Value +19:10:00 ============================================================================ +19:10:00 [ 1] [ 4] [0210] +19:10:00 [ 2] [ 16] [6213544001255634] +19:10:00 [ 3] [ 6] [010000] +19:10:00 [ 4] [ 12] [000200000000] +19:10:00 [ 7] [ 10] [0320120906] +19:10:00 [ 11] [ 6] [271380] +19:10:00 [ 12] [ 6] [190906] +19:10:00 [ 13] [ 4] [0320] +19:10:00 [ 15] [ 4] [0320] +19:10:00 [ 18] [ 4] [6011] +19:10:00 [ 19] [ 3] [418] +19:10:00 [ 22] [ 3] [021] +19:10:00 [ 32] [ 6] [180893] +19:10:00 [ 35] [ 32] [6213544001255634=491212015563503] +19:10:00 [ 37] [ 12] [507912271380] +19:10:00 [ 39] [ 2] [61] +19:10:00 [ 41] [ 8] [0102SAPA] +19:10:00 [ 49] [ 3] [418] +19:10:00 ============================================================================ +19:10:00 Sending to : +19:10:00 ============================================================================ +19:10:00 + + +waiting on router queue for slot.... +19:10:00 ============================================================================ +19:10:00 Slot Id : <452> +19:10:00 Transaction Type : REQUEST +19:10:00 Received From : +19:10:00 ============================================================================ +19:10:00 FNo. Len. Field Value +19:10:00 ============================================================================ +19:10:00 [ 1] [ 4] [0800] +19:10:00 [ 7] [ 10] [0320120907] +19:10:00 [ 11] [ 6] [157878] +19:10:00 [ 70] [ 3] [301] +19:10:00 ============================================================================ +19:10:00 + + +waiting on router queue for slot.... +19:10:00 Sending to : +19:10:00 ============================================================================ +19:10:00 ============================================================================ +19:10:00 Slot Id : <452> +19:10:00 Transaction Type : RESPONSE +19:10:00 Received From : +19:10:00 ============================================================================ +19:10:00 FNo. Len. Field Value +19:10:00 ============================================================================ +19:10:00 [ 1] [ 4] [0810] +19:10:00 [ 7] [ 10] [0320120907] +19:10:00 [ 11] [ 6] [157878] +19:10:00 [ 39] [ 2] [00] +19:10:00 [ 70] [ 3] [301] +19:10:00 ============================================================================ +19:10:00 Calculate Source COMM Id = 2 +19:10:00 ============================================================================ +19:10:00 + + +waiting on router queue for slot.... +19:10:01 ============================================================================ +19:10:01 Slot Id : <459> +19:10:01 Transaction Type : RESPONSE +19:10:01 Received From : +19:10:01 ============================================================================ +19:10:01 FNo. Len. Field Value +19:10:01 ============================================================================ +19:10:01 [ 1] [ 4] [0210] +19:10:01 [ 2] [ 16] [6213544001255634] +19:10:01 [ 3] [ 6] [010000] +19:10:01 [ 4] [ 12] [000200000000] +19:10:01 [ 7] [ 10] [0320120906] +19:10:01 [ 11] [ 6] [271380] +19:10:01 [ 12] [ 6] [190906] +19:10:01 [ 13] [ 4] [0320] +19:10:01 [ 15] [ 4] [0320] +19:10:01 [ 18] [ 4] [6011] +19:10:01 [ 19] [ 3] [418] +19:10:01 [ 22] [ 3] [021] +19:10:01 [ 32] [ 6] [180893] +19:10:01 [ 35] [ 32] [6213544001255634=491212015563503] +19:10:01 [ 37] [ 12] [507912271380] +19:10:01 [ 39] [ 2] [61] +19:10:01 [ 41] [ 8] [0102SAPA] +19:10:01 [ 49] [ 3] [418] +19:10:01 ============================================================================ +19:10:01 Calculate Source COMM Id = 2 +19:10:01 ============================================================================ +19:10:01 + + +waiting on router queue for slot.... +19:10:16 ============================================================================ +19:10:16 Slot Id : <439> +19:10:16 Transaction Type : REQUEST +19:10:16 Received From : +19:10:16 ============================================================================ +19:10:16 FNo. Len. Field Value +19:10:16 ============================================================================ +19:10:16 [ 1] [ 4] [0800] +19:10:16 [ 7] [ 10] [0320120922] +19:10:16 [ 11] [ 6] [157879] +19:10:16 [ 70] [ 3] [301] +19:10:16 ============================================================================ +19:10:16 + + +waiting on router queue for slot.... +19:10:16 Sending to : +19:10:16 ============================================================================ +19:10:16 ============================================================================ +19:10:16 Slot Id : <439> +19:10:16 Transaction Type : RESPONSE +19:10:16 Received From : +19:10:16 ============================================================================ +19:10:16 FNo. Len. Field Value +19:10:16 ============================================================================ +19:10:16 [ 1] [ 4] [0810] +19:10:16 [ 7] [ 10] [0320120922] +19:10:16 [ 11] [ 6] [157879] +19:10:16 [ 39] [ 2] [00] +19:10:16 [ 70] [ 3] [301] +19:10:16 ============================================================================ +19:10:16 Calculate Source COMM Id = 2 +19:10:16 ============================================================================ +19:10:16 + + +waiting on router queue for slot.... +19:10:30 ============================================================================ +19:10:30 Slot Id : <466> +19:10:30 Transaction Type : REQUEST +19:10:30 Received From : +19:10:30 ============================================================================ +19:10:30 FNo. Len. Field Value +19:10:30 ============================================================================ +19:10:30 [ 1] [ 4] [0800] +19:10:30 [ 7] [ 10] [0320120937] +19:10:30 [ 11] [ 6] [157880] +19:10:30 [ 70] [ 3] [301] +19:10:30 ============================================================================ +19:10:30 + + +waiting on router queue for slot.... +19:10:30 Sending to : +19:10:30 ============================================================================ +19:10:30 ============================================================================ +19:10:30 Slot Id : <466> +19:10:30 Transaction Type : RESPONSE +19:10:30 Received From : +19:10:30 ============================================================================ +19:10:30 FNo. Len. Field Value +19:10:30 ============================================================================ +19:10:30 [ 1] [ 4] [0810] +19:10:30 [ 7] [ 10] [0320120937] +19:10:30 [ 11] [ 6] [157880] +19:10:30 [ 39] [ 2] [00] +19:10:30 [ 70] [ 3] [301] +19:10:30 ============================================================================ +19:10:30 Calculate Source COMM Id = 2 +19:10:30 ============================================================================ +19:10:30 + + +waiting on router queue for slot.... +19:10:31 ============================================================================ +19:10:31 Slot Id : <468> +19:10:31 Transaction Type : REQUEST +19:10:31 Received From : +19:10:31 ============================================================================ +19:10:31 FNo. Len. Field Value +19:10:31 ============================================================================ +19:10:31 [ 1] [ 4] [0800] +19:10:31 [ 7] [ 10] [0321022219] +19:10:31 [ 11] [ 6] [192219] +19:10:31 [ 37] [ 12] [57919192219] +19:10:31 [ 70] [ 3] [301] +19:10:31 ============================================================================ +19:10:31 + + +waiting on router queue for slot.... +19:10:31 Sending to : +19:10:31 ============================================================================ +19:10:31 ============================================================================ +19:10:31 Slot Id : <468> +19:10:31 Transaction Type : RESPONSE +19:10:31 Received From : +19:10:31 ============================================================================ +19:10:31 FNo. Len. Field Value +19:10:31 ============================================================================ +19:10:31 [ 1] [ 4] [0810] +19:10:31 [ 7] [ 10] [0321022219] +19:10:31 [ 11] [ 6] [192219] +19:10:31 [ 37] [ 12] [579191922190] +19:10:31 [ 39] [ 2] [00] +19:10:31 [ 70] [ 3] [810] +19:10:31 ============================================================================ +19:10:31 Calculate Source COMM Id = 6 +19:10:31 ============================================================================ +19:10:31 + + +waiting on router queue for slot.... +19:10:41 ============================================================================ +19:10:41 Slot Id : <455> +19:10:41 Transaction Type : REQUEST +19:10:41 Received From : +19:10:41 ============================================================================ +19:10:41 FNo. Len. Field Value +19:10:41 ============================================================================ +19:10:41 [ 1] [ 4] [0800] +19:10:41 [ 7] [ 10] [0320120947] +19:10:41 [ 11] [ 6] [157881] +19:10:41 [ 70] [ 3] [301] +19:10:41 ============================================================================ +19:10:41 + + +waiting on router queue for slot.... +19:10:41 Sending to : +19:10:41 ============================================================================ +19:10:41 ============================================================================ +19:10:41 Slot Id : <455> +19:10:41 Transaction Type : RESPONSE +19:10:41 Received From : +19:10:41 ============================================================================ +19:10:41 FNo. Len. Field Value +19:10:41 ============================================================================ +19:10:41 [ 1] [ 4] [0810] +19:10:41 [ 7] [ 10] [0320120947] +19:10:41 [ 11] [ 6] [157881] +19:10:41 [ 39] [ 2] [00] +19:10:41 [ 70] [ 3] [301] +19:10:41 ============================================================================ +19:10:41 Calculate Source COMM Id = 2 +19:10:41 ============================================================================ +19:10:41 + + +waiting on router queue for slot.... +19:10:45 ============================================================================ +19:10:45 Slot Id : <475> +19:10:45 Transaction Type : REQUEST +19:10:45 Received From : +19:10:45 ============================================================================ +19:10:45 FNo. Len. Field Value +19:10:45 ============================================================================ +19:10:45 [ 1] [ 4] [0800] +19:10:45 [ 2] [ 5] [02531] +19:10:45 [ 3] [ 6] [579198] +19:10:45 [ 7] [ 10] [0320121045] +19:10:45 [ 11] [ 6] [807525] +19:10:45 [ 15] [ 10] [0320121045] +19:10:45 [ 37] [ 11] [57919807525] +19:10:45 [ 70] [ 3] [001] +19:10:45 ============================================================================ +19:10:45 + + +waiting on router queue for slot.... +19:10:45 ============================================================================ +19:10:45 Slot Id : <475> +19:10:45 Transaction Type : RESPONSE +19:10:45 Received From : +19:10:45 ============================================================================ +19:10:45 FNo. Len. Field Value +19:10:45 ============================================================================ +19:10:45 [ 1] [ 4] [0810] +19:10:45 [ 7] [ 10] [0320121045] +19:10:45 [ 11] [ 6] [807525] +19:10:45 [ 15] [ 4] [0320] +19:10:45 [ 37] [ 12] [57919807525] +19:10:45 [ 39] [ 2] [00] +19:10:45 [ 70] [ 3] [001] +19:10:45 ============================================================================ +19:10:45 Sending to : +19:10:45 ============================================================================ +19:10:45 + + +waiting on router queue for slot.... +19:10:51 ============================================================================ +19:10:51 Slot Id : <460> +19:10:51 Transaction Type : REQUEST +19:10:51 Received From : +19:10:51 ============================================================================ +19:10:51 FNo. Len. Field Value +19:10:51 ============================================================================ +19:10:51 [ 1] [ 4] [0800] +19:10:51 [ 7] [ 10] [0320120958] +19:10:51 [ 11] [ 6] [157882] +19:10:51 [ 70] [ 3] [301] +19:10:51 ============================================================================ +19:10:51 + + +waiting on router queue for slot.... +19:10:51 Sending to : +19:10:51 ============================================================================ +19:10:51 ============================================================================ +19:10:51 Slot Id : <460> +19:10:51 Transaction Type : RESPONSE +19:10:51 Received From : +19:10:51 ============================================================================ +19:10:51 FNo. Len. Field Value +19:10:51 ============================================================================ +19:10:51 [ 1] [ 4] [0810] +19:10:51 [ 7] [ 10] [0320120958] +19:10:51 [ 11] [ 6] [157882] +19:10:51 [ 39] [ 2] [00] +19:10:51 [ 70] [ 3] [301] +19:10:51 ============================================================================ +19:10:51 Calculate Source COMM Id = 2 +19:10:51 ============================================================================ +19:10:51 + + +waiting on router queue for slot.... +19:11:03 ============================================================================ +19:11:03 Slot Id : <440> +19:11:03 Transaction Type : REQUEST +19:11:03 Received From : +19:11:03 ============================================================================ +19:11:03 FNo. Len. Field Value +19:11:03 ============================================================================ +19:11:03 [ 1] [ 4] [0800] +19:11:03 [ 7] [ 10] [0320121009] +19:11:03 [ 11] [ 6] [157883] +19:11:03 [ 70] [ 3] [301] +19:11:03 ============================================================================ +19:11:03 + + +waiting on router queue for slot.... +19:11:03 Sending to : +19:11:03 ============================================================================ +19:11:03 ============================================================================ +19:11:03 Slot Id : <440> +19:11:03 Transaction Type : RESPONSE +19:11:03 Received From : +19:11:03 ============================================================================ +19:11:03 FNo. Len. Field Value +19:11:03 ============================================================================ +19:11:03 [ 1] [ 4] [0810] +19:11:03 [ 7] [ 10] [0320121009] +19:11:03 [ 11] [ 6] [157883] +19:11:03 [ 39] [ 2] [00] +19:11:03 [ 70] [ 3] [301] +19:11:03 ============================================================================ +19:11:03 Calculate Source COMM Id = 2 +19:11:03 ============================================================================ +19:11:03 + + +waiting on router queue for slot.... +19:11:18 ============================================================================ +19:11:18 Slot Id : <495> +19:11:18 Transaction Type : REQUEST +19:11:18 Received From : +19:11:18 ============================================================================ +19:11:18 FNo. Len. Field Value +19:11:18 ============================================================================ +19:11:18 [ 1] [ 4] [0800] +19:11:18 [ 7] [ 10] [0320121024] +19:11:18 [ 11] [ 6] [157884] +19:11:18 [ 70] [ 3] [301] +19:11:18 ============================================================================ +19:11:18 + + +waiting on router queue for slot.... +19:11:18 Sending to : +19:11:18 ============================================================================ +19:11:18 ============================================================================ +19:11:18 Slot Id : <495> +19:11:18 Transaction Type : RESPONSE +19:11:18 Received From : +19:11:18 ============================================================================ +19:11:18 FNo. Len. Field Value +19:11:18 ============================================================================ +19:11:18 [ 1] [ 4] [0810] +19:11:18 [ 7] [ 10] [0320121024] +19:11:18 [ 11] [ 6] [157884] +19:11:18 [ 39] [ 2] [00] +19:11:18 [ 70] [ 3] [301] +19:11:18 ============================================================================ +19:11:18 Calculate Source COMM Id = 2 +19:11:18 ============================================================================ +19:11:18 + + +waiting on router queue for slot.... +19:11:19 ============================================================================ +19:11:19 Slot Id : <482> +19:11:19 Transaction Type : REQUEST +19:11:19 Received From : +19:11:19 ============================================================================ +19:11:19 FNo. Len. Field Value +19:11:19 ============================================================================ +19:11:19 [ 1] [ 4] [0200] +19:11:19 [ 2] [ 16] [6213541000163363] +19:11:19 [ 3] [ 6] [010000] +19:11:19 [ 4] [ 12] [000030000000] +19:11:19 [ 7] [ 10] [0320190908] +19:11:19 [ 11] [ 6] [955770] +19:11:19 [ 12] [ 6] [190908] +19:11:19 [ 13] [ 4] [0320] +19:11:19 [ 15] [ 4] [0320] +19:11:19 [ 18] [ 4] [6011] +19:11:19 [ 19] [ 3] [418] +19:11:19 [ 22] [ 3] [021] +19:11:19 [ 25] [ 2] [01] +19:11:19 [ 28] [ 9] [D00002000] +19:11:19 [ 32] [ 6] [668899] +19:11:19 [ 35] [ 32] [6213541000163363=491212016336323] +19:11:19 [ 37] [ 12] [507902475772] +19:11:19 [ 41] [ 8] [03020032] +19:11:19 [ 42] [ 15] [APT ] +19:11:19 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:11:19 [ 49] [ 3] [418] +19:11:19 [ 52] [ 16] [50B348F14BEFF14C] +19:11:19 ============================================================================ +19:11:19 + + +waiting on router queue for slot.... +19:11:19 Sending to : +19:11:19 ============================================================================ +19:11:19 Sending to : +19:11:19 ============================================================================ +19:11:19 ============================================================================ +19:11:19 Slot Id : <482> +19:11:19 Transaction Type : REQUEST +19:11:19 Received From : +19:11:19 ============================================================================ +19:11:19 FNo. Len. Field Value +19:11:19 ============================================================================ +19:11:19 [ 1] [ 4] [0200] +19:11:19 [ 2] [ 16] [6213541000163363] +19:11:19 [ 3] [ 6] [010000] +19:11:19 [ 4] [ 12] [000030000000] +19:11:19 [ 7] [ 10] [0320190908] +19:11:19 [ 11] [ 6] [955770] +19:11:19 [ 12] [ 6] [190908] +19:11:19 [ 13] [ 4] [0320] +19:11:19 [ 15] [ 4] [0320] +19:11:19 [ 18] [ 4] [6011] +19:11:19 [ 19] [ 3] [418] +19:11:19 [ 22] [ 3] [021] +19:11:19 [ 25] [ 2] [01] +19:11:19 [ 28] [ 9] [D00002000] +19:11:19 [ 32] [ 6] [668899] +19:11:19 [ 35] [ 32] [6213541000163363=491212016336323] +19:11:19 [ 37] [ 12] [507902475772] +19:11:19 [ 41] [ 8] [03020032] +19:11:19 [ 42] [ 15] [APT ] +19:11:19 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:11:19 [ 49] [ 3] [418] +19:11:19 [ 52] [ 16] [50B348F14BEFF14C] +19:11:19 ============================================================================ +19:11:19 + + +waiting on router queue for slot.... +19:11:19 Sending to : +19:11:19 ============================================================================ +19:11:19 ============================================================================ +19:11:19 Slot Id : <482> +19:11:19 Transaction Type : REQUEST +19:11:19 Received From : +19:11:19 ============================================================================ +19:11:19 FNo. Len. Field Value +19:11:19 ============================================================================ +19:11:19 [ 1] [ 4] [0200] +19:11:19 [ 2] [ 16] [6213541000163363] +19:11:19 [ 3] [ 6] [010000] +19:11:19 [ 4] [ 12] [000030000000] +19:11:19 [ 7] [ 10] [0320190908] +19:11:19 [ 11] [ 6] [955770] +19:11:19 [ 12] [ 6] [190908] +19:11:19 [ 13] [ 4] [0320] +19:11:19 [ 15] [ 4] [0320] +19:11:19 [ 18] [ 4] [6011] +19:11:19 [ 19] [ 3] [418] +19:11:19 [ 22] [ 3] [021] +19:11:19 [ 25] [ 2] [01] +19:11:19 [ 28] [ 9] [D00002000] +19:11:19 [ 32] [ 6] [668899] +19:11:19 [ 35] [ 32] [6213541000163363=491212016336323] +19:11:19 [ 37] [ 12] [507902475772] +19:11:19 [ 41] [ 8] [03020032] +19:11:19 [ 42] [ 15] [APT ] +19:11:19 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:11:19 [ 49] [ 3] [418] +19:11:19 [ 52] [ 16] [98FF777124FE4A5F] +19:11:19 ============================================================================ +19:11:19 + + +waiting on router queue for slot.... +19:11:19 Sending to : <0> +19:11:19 ============================================================================ +19:11:20 ============================================================================ +19:11:20 Slot Id : <432> +19:11:20 Transaction Type : REQUEST +19:11:20 Received From : +19:11:20 ============================================================================ +19:11:20 FNo. Len. Field Value +19:11:20 ============================================================================ +19:11:20 [ 1] [ 4] [0200] +19:11:20 [ 2] [ 16] [6688990102566203] +19:11:20 [ 3] [ 6] [300000] +19:11:20 [ 4] [ 12] [000000000000] +19:11:20 [ 7] [ 10] [0320191115] +19:11:20 [ 11] [ 6] [834494] +19:11:20 [ 12] [ 6] [191115] +19:11:20 [ 13] [ 4] [0320] +19:11:20 [ 15] [ 4] [0320] +19:11:20 [ 18] [ 4] [6011] +19:11:20 [ 22] [ 3] [900] +19:11:20 [ 25] [ 2] [02] +19:11:20 [ 28] [ 9] [D00000000] +19:11:20 [ 32] [ 6] [621354] +19:11:20 [ 35] [ 37] [6688990102566203=42091231620358300000] +19:11:20 [ 37] [ 12] [507904000605] +19:11:20 [ 41] [ 8] [01011600] +19:11:20 [ 42] [ 15] [NATIVE ] +19:11:20 [ 43] [ 40] [Nakeua Market Thoulakhom LAO] +19:11:20 [ 49] [ 3] [418] +19:11:20 [ 52] [ 16] [BDEEF22EFB64B5A6] +19:11:20 ============================================================================ +19:11:20 + + +waiting on router queue for slot.... +19:11:20 Sending to : +19:11:20 ============================================================================ +19:11:20 Sending to : +19:11:20 ============================================================================ +19:11:20 ============================================================================ +19:11:20 Slot Id : <482> +19:11:20 Transaction Type : RESPONSE +19:11:20 Received From : +19:11:20 ============================================================================ +19:11:20 FNo. Len. Field Value +19:11:20 ============================================================================ +19:11:20 [ 1] [ 4] [0210] +19:11:20 [ 2] [ 16] [6213541000163363] +19:11:20 [ 3] [ 6] [010000] +19:11:20 [ 4] [ 12] [000030000000] +19:11:20 [ 7] [ 10] [0320190908] +19:11:20 [ 11] [ 6] [955770] +19:11:20 [ 12] [ 6] [190908] +19:11:20 [ 13] [ 4] [0320] +19:11:20 [ 15] [ 4] [0320] +19:11:20 [ 18] [ 4] [6011] +19:11:20 [ 19] [ 3] [418] +19:11:20 [ 32] [ 6] [668899] +19:11:20 [ 35] [ 32] [6213541000163363=491212016336323] +19:11:20 [ 37] [ 12] [507902475772] +19:11:20 [ 38] [ 6] [955770] +19:11:20 [ 39] [ 2] [51] +19:11:20 [ 41] [ 8] [03020032] +19:11:20 [ 49] [ 3] [418] +19:11:20 [ 54] [ 40] [0001418C0000220270540002418C000022027054] +19:11:20 ============================================================================ +19:11:20 Sending to : +19:11:20 ============================================================================ +19:11:20 + + +waiting on router queue for slot.... +19:11:20 ============================================================================ +19:11:20 Slot Id : <432> +19:11:20 Transaction Type : REQUEST +19:11:20 Received From : +19:11:20 ============================================================================ +19:11:20 FNo. Len. Field Value +19:11:20 ============================================================================ +19:11:20 [ 1] [ 4] [0200] +19:11:20 [ 2] [ 16] [6688990102566203] +19:11:20 [ 3] [ 6] [300000] +19:11:20 [ 4] [ 12] [000000000000] +19:11:20 [ 7] [ 10] [0320191115] +19:11:20 [ 11] [ 6] [834494] +19:11:20 [ 12] [ 6] [191115] +19:11:20 [ 13] [ 4] [0320] +19:11:20 [ 15] [ 4] [0320] +19:11:20 [ 18] [ 4] [6011] +19:11:20 [ 22] [ 3] [900] +19:11:20 [ 25] [ 2] [02] +19:11:20 [ 28] [ 9] [D00000000] +19:11:20 [ 32] [ 6] [621354] +19:11:20 [ 35] [ 37] [6688990102566203=42091231620358300000] +19:11:20 [ 37] [ 12] [507904000605] +19:11:20 [ 41] [ 8] [01011600] +19:11:20 [ 42] [ 15] [NATIVE ] +19:11:20 [ 43] [ 40] [Nakeua Market Thoulakhom LAO] +19:11:20 [ 49] [ 3] [418] +19:11:20 [ 52] [ 16] [BDEEF22EFB64B5A6] +19:11:20 ============================================================================ +19:11:20 + + +waiting on router queue for slot.... +19:11:20 Sending to : +19:11:20 ============================================================================ +19:11:20 ============================================================================ +19:11:20 Slot Id : <432> +19:11:20 Transaction Type : REQUEST +19:11:20 Received From : +19:11:20 ============================================================================ +19:11:20 FNo. Len. Field Value +19:11:20 ============================================================================ +19:11:20 [ 1] [ 4] [0200] +19:11:20 [ 2] [ 16] [6688990102566203] +19:11:20 [ 3] [ 6] [300000] +19:11:20 [ 4] [ 12] [000000000000] +19:11:20 [ 7] [ 10] [0320191115] +19:11:20 [ 11] [ 6] [834494] +19:11:20 [ 12] [ 6] [191115] +19:11:20 [ 13] [ 4] [0320] +19:11:20 [ 15] [ 4] [0320] +19:11:20 [ 18] [ 4] [6011] +19:11:20 [ 22] [ 3] [900] +19:11:20 [ 25] [ 2] [02] +19:11:20 [ 28] [ 9] [D00000000] +19:11:20 [ 32] [ 6] [621354] +19:11:20 [ 35] [ 37] [6688990102566203=42091231620358300000] +19:11:20 [ 37] [ 12] [507904000605] +19:11:20 [ 41] [ 8] [01011600] +19:11:20 [ 42] [ 15] [NATIVE ] +19:11:20 [ 43] [ 40] [Nakeua Market Thoulakhom LAO] +19:11:20 [ 49] [ 3] [418] +19:11:20 [ 52] [ 16] [D7B216C5C9BD72B1] +19:11:20 ============================================================================ +19:11:20 + + +waiting on router queue for slot.... +19:11:20 Sending to : <4> +19:11:20 ============================================================================ +19:11:21 ============================================================================ +19:11:21 Slot Id : <482> +19:11:21 Transaction Type : RESPONSE +19:11:21 Received From : +19:11:21 ============================================================================ +19:11:21 FNo. Len. Field Value +19:11:21 ============================================================================ +19:11:21 [ 1] [ 4] [0210] +19:11:21 [ 2] [ 16] [6213541000163363] +19:11:21 [ 3] [ 6] [010000] +19:11:21 [ 4] [ 12] [000030000000] +19:11:21 [ 7] [ 10] [0320190908] +19:11:21 [ 11] [ 6] [955770] +19:11:21 [ 12] [ 6] [190908] +19:11:21 [ 13] [ 4] [0320] +19:11:21 [ 15] [ 4] [0320] +19:11:21 [ 18] [ 4] [6011] +19:11:21 [ 19] [ 3] [418] +19:11:21 [ 32] [ 6] [668899] +19:11:21 [ 35] [ 32] [6213541000163363=491212016336323] +19:11:21 [ 37] [ 12] [507902475772] +19:11:21 [ 38] [ 6] [955770] +19:11:21 [ 39] [ 2] [51] +19:11:21 [ 41] [ 8] [03020032] +19:11:21 [ 49] [ 3] [418] +19:11:21 [ 54] [ 40] [0001418C0000220270540002418C000022027054] +19:11:21 ============================================================================ +19:11:21 Calculate Source COMM Id = 4 +19:11:21 ============================================================================ +19:11:21 + + +waiting on router queue for slot.... +19:11:21 ============================================================================ +19:11:21 Slot Id : <432> +19:11:21 Transaction Type : RESPONSE +19:11:21 Received From : +19:11:21 ============================================================================ +19:11:21 FNo. Len. Field Value +19:11:21 ============================================================================ +19:11:21 [ 1] [ 4] [0210] +19:11:21 [ 2] [ 16] [6688990102566203] +19:11:21 [ 3] [ 6] [300000] +19:11:21 [ 4] [ 12] [000000000000] +19:11:21 [ 11] [ 6] [834494] +19:11:21 [ 12] [ 6] [191115] +19:11:21 [ 15] [ 4] [0320] +19:11:21 [ 18] [ 4] [6011] +19:11:21 [ 32] [ 6] [621354] +19:11:21 [ 35] [ 37] [6688990102566203=42091231620358300000] +19:11:21 [ 37] [ 12] [507904000605] +19:11:21 [ 38] [ 6] [252350] +19:11:21 [ 39] [ 2] [00] +19:11:21 [ 41] [ 8] [01011600] +19:11:21 [ 49] [ 3] [418] +19:11:21 [ 54] [ 20] [0002418C000065149839] +19:11:21 ============================================================================ +19:11:21 Sending to : +19:11:21 ============================================================================ +19:11:21 + + +waiting on router queue for slot.... +19:11:22 ============================================================================ +19:11:22 Slot Id : <449> +19:11:22 Transaction Type : REQUEST +19:11:22 Received From : +19:11:22 ============================================================================ +19:11:22 FNo. Len. Field Value +19:11:22 ============================================================================ +19:11:22 [ 1] [ 4] [0800] +19:11:22 [ 7] [ 10] [0320120912] +19:11:22 [ 11] [ 6] [089864] +19:11:22 [ 37] [ 12] [57919089864] +19:11:22 [ 70] [ 3] [301] +19:11:22 ============================================================================ +19:11:22 + + +waiting on router queue for slot.... +19:11:22 Sending to : +19:11:22 ============================================================================ +19:11:22 ============================================================================ +19:11:22 Slot Id : <449> +19:11:22 Transaction Type : RESPONSE +19:11:22 Received From : +19:11:22 ============================================================================ +19:11:22 FNo. Len. Field Value +19:11:22 ============================================================================ +19:11:22 [ 1] [ 4] [0810] +19:11:22 [ 7] [ 10] [0320120912] +19:11:22 [ 11] [ 6] [089864] +19:11:22 [ 37] [ 12] [579190898640] +19:11:22 [ 39] [ 2] [00] +19:11:22 [ 70] [ 3] [810] +19:11:22 ============================================================================ +19:11:22 Calculate Source COMM Id = 4 +19:11:22 ============================================================================ +19:11:22 + + +waiting on router queue for slot.... +19:11:23 ============================================================================ +19:11:23 Slot Id : <432> +19:11:23 Transaction Type : RESPONSE +19:11:23 Received From : +19:11:23 ============================================================================ +19:11:23 FNo. Len. Field Value +19:11:23 ============================================================================ +19:11:23 [ 1] [ 4] [0210] +19:11:23 [ 2] [ 16] [6688990102566203] +19:11:23 [ 3] [ 6] [300000] +19:11:23 [ 4] [ 12] [000000000000] +19:11:23 [ 11] [ 6] [834494] +19:11:23 [ 12] [ 6] [191115] +19:11:23 [ 15] [ 4] [0320] +19:11:23 [ 18] [ 4] [6011] +19:11:23 [ 32] [ 6] [621354] +19:11:23 [ 35] [ 37] [6688990102566203=42091231620358300000] +19:11:23 [ 37] [ 12] [507904000605] +19:11:23 [ 38] [ 6] [252350] +19:11:23 [ 39] [ 2] [00] +19:11:23 [ 41] [ 8] [01011600] +19:11:23 [ 49] [ 3] [418] +19:11:23 [ 54] [ 20] [0002418C000065149839] +19:11:23 ============================================================================ +19:11:23 Calculate Source COMM Id = 0 +19:11:23 ============================================================================ +19:11:23 + + +waiting on router queue for slot.... +19:11:31 ============================================================================ +19:11:31 Slot Id : <488> +19:11:31 Transaction Type : REQUEST +19:11:31 Received From : +19:11:31 ============================================================================ +19:11:31 FNo. Len. Field Value +19:11:31 ============================================================================ +19:11:31 [ 1] [ 4] [0200] +19:11:31 [ 2] [ 16] [1808931000017820] +19:11:31 [ 3] [ 6] [011000] +19:11:31 [ 4] [ 12] [000030000000] +19:11:31 [ 7] [ 10] [0320191125] +19:11:31 [ 11] [ 6] [834522] +19:11:31 [ 12] [ 6] [191125] +19:11:31 [ 13] [ 4] [0320] +19:11:31 [ 15] [ 4] [0320] +19:11:31 [ 18] [ 4] [6011] +19:11:31 [ 22] [ 3] [900] +19:11:31 [ 25] [ 2] [02] +19:11:31 [ 28] [ 9] [D00002000] +19:11:31 [ 32] [ 6] [621354] +19:11:31 [ 35] [ 27] [1808931000017820=1803500962] +19:11:31 [ 37] [ 12] [507902606525] +19:11:31 [ 41] [ 8] [05004300] +19:11:31 [ 42] [ 15] [NATIVE ] +19:11:31 [ 43] [ 40] [Ka deng office LuangprabangLAO] +19:11:31 [ 49] [ 3] [418] +19:11:31 [ 52] [ 16] [37023FE68BB69693] +19:11:31 ============================================================================ +19:11:31 + + +waiting on router queue for slot.... +19:11:31 Sending to : +19:11:31 ============================================================================ +19:11:31 Sending to : +19:11:31 ============================================================================ +19:11:31 ============================================================================ +19:11:31 Slot Id : <488> +19:11:31 Transaction Type : REQUEST +19:11:31 Received From : +19:11:31 ============================================================================ +19:11:31 FNo. Len. Field Value +19:11:31 ============================================================================ +19:11:31 [ 1] [ 4] [0200] +19:11:31 [ 2] [ 16] [1808931000017820] +19:11:31 [ 3] [ 6] [011000] +19:11:31 [ 4] [ 12] [000030000000] +19:11:31 [ 7] [ 10] [0320191125] +19:11:31 [ 11] [ 6] [834522] +19:11:31 [ 12] [ 6] [191125] +19:11:31 [ 13] [ 4] [0320] +19:11:31 [ 15] [ 4] [0320] +19:11:31 [ 18] [ 4] [6011] +19:11:31 [ 22] [ 3] [900] +19:11:31 [ 25] [ 2] [02] +19:11:31 [ 28] [ 9] [D00002000] +19:11:31 [ 32] [ 6] [621354] +19:11:31 [ 35] [ 27] [1808931000017820=1803500962] +19:11:31 [ 37] [ 12] [507902606525] +19:11:31 [ 41] [ 8] [05004300] +19:11:31 [ 42] [ 15] [NATIVE ] +19:11:31 [ 43] [ 40] [Ka deng office LuangprabangLAO] +19:11:31 [ 49] [ 3] [418] +19:11:31 [ 52] [ 16] [37023FE68BB69693] +19:11:31 ============================================================================ +19:11:31 + + +waiting on router queue for slot.... +19:11:31 Sending to : +19:11:31 ============================================================================ +19:11:31 ============================================================================ +19:11:31 Slot Id : <488> +19:11:31 Transaction Type : REQUEST +19:11:31 Received From : +19:11:31 ============================================================================ +19:11:31 FNo. Len. Field Value +19:11:31 ============================================================================ +19:11:31 [ 1] [ 4] [0200] +19:11:31 [ 2] [ 16] [1808931000017820] +19:11:31 [ 3] [ 6] [011000] +19:11:31 [ 4] [ 12] [000030000000] +19:11:31 [ 7] [ 10] [0320191125] +19:11:31 [ 11] [ 6] [834522] +19:11:31 [ 12] [ 6] [191125] +19:11:31 [ 13] [ 4] [0320] +19:11:31 [ 15] [ 4] [0320] +19:11:31 [ 18] [ 4] [6011] +19:11:31 [ 22] [ 3] [900] +19:11:31 [ 25] [ 2] [02] +19:11:31 [ 28] [ 9] [D00002000] +19:11:31 [ 32] [ 6] [621354] +19:11:31 [ 35] [ 27] [1808931000017820=1803500962] +19:11:31 [ 37] [ 12] [507902606525] +19:11:31 [ 41] [ 8] [05004300] +19:11:31 [ 42] [ 15] [NATIVE ] +19:11:31 [ 43] [ 40] [Ka deng office LuangprabangLAO] +19:11:31 [ 49] [ 3] [418] +19:11:31 [ 52] [ 16] [E9EE0900B126A592] +19:11:31 ============================================================================ +19:11:31 + + +waiting on router queue for slot.... +19:11:31 Sending to : <2> +19:11:31 ============================================================================ +19:11:34 ============================================================================ +19:11:34 Slot Id : <488> +19:11:34 Transaction Type : RESPONSE +19:11:34 Received From : +19:11:34 ============================================================================ +19:11:34 FNo. Len. Field Value +19:11:34 ============================================================================ +19:11:34 [ 1] [ 4] [0210] +19:11:34 [ 2] [ 16] [1808931000017820] +19:11:34 [ 3] [ 6] [011000] +19:11:34 [ 4] [ 12] [000030000000] +19:11:34 [ 6] [ 12] [000030000000] +19:11:34 [ 7] [ 10] [0320191125] +19:11:34 [ 11] [ 6] [834522] +19:11:34 [ 12] [ 6] [191125] +19:11:34 [ 13] [ 4] [0320] +19:11:34 [ 18] [ 4] [6011] +19:11:34 [ 19] [ 3] [418] +19:11:34 [ 22] [ 3] [021] +19:11:34 [ 32] [ 6] [621354] +19:11:34 [ 35] [ 27] [1808931000017820=1803500962] +19:11:34 [ 37] [ 12] [507902606525] +19:11:34 [ 38] [ 6] [834522] +19:11:34 [ 39] [ 2] [00] +19:11:34 [ 41] [ 8] [05004300] +19:11:34 [ 49] [ 3] [418] +19:11:34 [ 52] [ 16] [E9EE0900B126A592] +19:11:34 [ 54] [ 20] [1001418C000022553200] +19:11:34 ============================================================================ +19:11:34 Sending to : +19:11:34 ============================================================================ +19:11:34 + + +waiting on router queue for slot.... +19:11:36 ============================================================================ +19:11:36 Slot Id : <488> +19:11:36 Transaction Type : RESPONSE +19:11:36 Received From : +19:11:36 ============================================================================ +19:11:36 FNo. Len. Field Value +19:11:36 ============================================================================ +19:11:36 [ 1] [ 4] [0210] +19:11:36 [ 2] [ 16] [1808931000017820] +19:11:36 [ 3] [ 6] [011000] +19:11:36 [ 4] [ 12] [000030000000] +19:11:36 [ 6] [ 12] [000030000000] +19:11:36 [ 7] [ 10] [0320191125] +19:11:36 [ 11] [ 6] [834522] +19:11:36 [ 12] [ 6] [191125] +19:11:36 [ 13] [ 4] [0320] +19:11:36 [ 18] [ 4] [6011] +19:11:36 [ 19] [ 3] [418] +19:11:36 [ 22] [ 3] [021] +19:11:36 [ 32] [ 6] [621354] +19:11:36 [ 35] [ 27] [1808931000017820=1803500962] +19:11:36 [ 37] [ 12] [507902606525] +19:11:36 [ 38] [ 6] [834522] +19:11:36 [ 39] [ 2] [00] +19:11:36 [ 41] [ 8] [05004300] +19:11:36 [ 49] [ 3] [418] +19:11:36 [ 52] [ 16] [E9EE0900B126A592] +19:11:36 [ 54] [ 20] [1001418C000022553200] +19:11:36 ============================================================================ +19:11:36 Calculate Source COMM Id = 0 +19:11:36 ============================================================================ +19:11:36 + + +waiting on router queue for slot.... +19:11:36 ============================================================================ +19:11:36 Slot Id : <453> +19:11:36 Transaction Type : REQUEST +19:11:36 Received From : +19:11:36 ============================================================================ +19:11:36 FNo. Len. Field Value +19:11:36 ============================================================================ +19:11:36 [ 1] [ 4] [0800] +19:11:36 [ 7] [ 10] [0321022324] +19:11:36 [ 11] [ 6] [192324] +19:11:36 [ 37] [ 12] [57919192324] +19:11:36 [ 70] [ 3] [301] +19:11:36 ============================================================================ +19:11:36 + + +waiting on router queue for slot.... +19:11:36 Sending to : +19:11:36 ============================================================================ +19:11:36 ============================================================================ +19:11:36 Slot Id : <453> +19:11:36 Transaction Type : RESPONSE +19:11:36 Received From : +19:11:36 ============================================================================ +19:11:36 FNo. Len. Field Value +19:11:36 ============================================================================ +19:11:36 [ 1] [ 4] [0810] +19:11:36 [ 7] [ 10] [0321022324] +19:11:36 [ 11] [ 6] [192324] +19:11:36 [ 37] [ 12] [579191923240] +19:11:36 [ 39] [ 2] [00] +19:11:36 [ 70] [ 3] [810] +19:11:36 ============================================================================ +19:11:36 Calculate Source COMM Id = 6 +19:11:36 ============================================================================ +19:11:36 + + +waiting on router queue for slot.... +19:11:38 ============================================================================ +19:11:38 Slot Id : <470> +19:11:38 Transaction Type : REQUEST +19:11:38 Received From : +19:11:38 ============================================================================ +19:11:38 FNo. Len. Field Value +19:11:38 ============================================================================ +19:11:38 [ 1] [ 4] [0200] +19:11:38 [ 2] [ 16] [1808931300023296] +19:11:38 [ 3] [ 6] [011000] +19:11:38 [ 4] [ 12] [000010000000] +19:11:38 [ 7] [ 10] [0320191133] +19:11:38 [ 11] [ 6] [834542] +19:11:38 [ 12] [ 6] [191133] +19:11:38 [ 13] [ 4] [0320] +19:11:38 [ 15] [ 4] [0320] +19:11:38 [ 18] [ 4] [6011] +19:11:38 [ 22] [ 3] [900] +19:11:38 [ 25] [ 2] [02] +19:11:38 [ 28] [ 9] [D00002000] +19:11:38 [ 32] [ 6] [621354] +19:11:38 [ 35] [ 27] [1808931300023296=1803500035] +19:11:38 [ 37] [ 12] [507903505882] +19:11:38 [ 41] [ 8] [09000700] +19:11:38 [ 42] [ 15] [NATIVE ] +19:11:38 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +19:11:38 [ 49] [ 3] [418] +19:11:38 [ 52] [ 16] [DC51A3F60A2A1C72] +19:11:38 ============================================================================ +19:11:38 + + +waiting on router queue for slot.... +19:11:38 Sending to : +19:11:38 ============================================================================ +19:11:38 Sending to : +19:11:38 ============================================================================ +19:11:39 ============================================================================ +19:11:39 Slot Id : <470> +19:11:39 Transaction Type : REQUEST +19:11:39 Received From : +19:11:39 ============================================================================ +19:11:39 FNo. Len. Field Value +19:11:39 ============================================================================ +19:11:39 [ 1] [ 4] [0200] +19:11:39 [ 2] [ 16] [1808931300023296] +19:11:39 [ 3] [ 6] [011000] +19:11:39 [ 4] [ 12] [000010000000] +19:11:39 [ 7] [ 10] [0320191133] +19:11:39 [ 11] [ 6] [834542] +19:11:39 [ 12] [ 6] [191133] +19:11:39 [ 13] [ 4] [0320] +19:11:39 [ 15] [ 4] [0320] +19:11:39 [ 18] [ 4] [6011] +19:11:39 [ 22] [ 3] [900] +19:11:39 [ 25] [ 2] [02] +19:11:39 [ 28] [ 9] [D00002000] +19:11:39 [ 32] [ 6] [621354] +19:11:39 [ 35] [ 27] [1808931300023296=1803500035] +19:11:39 [ 37] [ 12] [507903505882] +19:11:39 [ 41] [ 8] [09000700] +19:11:39 [ 42] [ 15] [NATIVE ] +19:11:39 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +19:11:39 [ 49] [ 3] [418] +19:11:39 [ 52] [ 16] [DC51A3F60A2A1C72] +19:11:39 ============================================================================ +19:11:39 + + +waiting on router queue for slot.... +19:11:39 Sending to : +19:11:39 ============================================================================ +19:11:39 ============================================================================ +19:11:39 Slot Id : <470> +19:11:39 Transaction Type : REQUEST +19:11:39 Received From : +19:11:39 ============================================================================ +19:11:39 FNo. Len. Field Value +19:11:39 ============================================================================ +19:11:39 [ 1] [ 4] [0200] +19:11:39 [ 2] [ 16] [1808931300023296] +19:11:39 [ 3] [ 6] [011000] +19:11:39 [ 4] [ 12] [000010000000] +19:11:39 [ 7] [ 10] [0320191133] +19:11:39 [ 11] [ 6] [834542] +19:11:39 [ 12] [ 6] [191133] +19:11:39 [ 13] [ 4] [0320] +19:11:39 [ 15] [ 4] [0320] +19:11:39 [ 18] [ 4] [6011] +19:11:39 [ 22] [ 3] [900] +19:11:39 [ 25] [ 2] [02] +19:11:39 [ 28] [ 9] [D00002000] +19:11:39 [ 32] [ 6] [621354] +19:11:39 [ 35] [ 27] [1808931300023296=1803500035] +19:11:39 [ 37] [ 12] [507903505882] +19:11:39 [ 41] [ 8] [09000700] +19:11:39 [ 42] [ 15] [NATIVE ] +19:11:39 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +19:11:39 [ 49] [ 3] [418] +19:11:39 [ 52] [ 16] [F4637D6F55C5A6FB] +19:11:39 ============================================================================ +19:11:39 + + +waiting on router queue for slot.... +19:11:39 Sending to : <2> +19:11:39 ============================================================================ +19:11:43 ============================================================================ +19:11:43 Slot Id : <470> +19:11:43 Transaction Type : RESPONSE +19:11:43 Received From : +19:11:43 ============================================================================ +19:11:43 FNo. Len. Field Value +19:11:43 ============================================================================ +19:11:43 [ 1] [ 4] [0210] +19:11:43 [ 2] [ 16] [1808931300023296] +19:11:43 [ 3] [ 6] [011000] +19:11:43 [ 4] [ 12] [000010000000] +19:11:43 [ 6] [ 12] [000010000000] +19:11:43 [ 7] [ 10] [0320191133] +19:11:43 [ 11] [ 6] [834542] +19:11:43 [ 12] [ 6] [191133] +19:11:43 [ 13] [ 4] [0320] +19:11:43 [ 18] [ 4] [6011] +19:11:43 [ 19] [ 3] [418] +19:11:43 [ 22] [ 3] [021] +19:11:43 [ 32] [ 6] [621354] +19:11:43 [ 35] [ 27] [1808931300023296=1803500035] +19:11:43 [ 37] [ 12] [507903505882] +19:11:43 [ 38] [ 6] [834542] +19:11:43 [ 39] [ 2] [00] +19:11:43 [ 41] [ 8] [09000700] +19:11:43 [ 49] [ 3] [418] +19:11:43 [ 52] [ 16] [F4637D6F55C5A6FB] +19:11:43 [ 54] [ 20] [1001418C000013905600] +19:11:43 ============================================================================ +19:11:43 Sending to : +19:11:43 ============================================================================ +19:11:43 + + +waiting on router queue for slot.... +19:11:44 ============================================================================ +19:11:44 Slot Id : <470> +19:11:44 Transaction Type : RESPONSE +19:11:44 Received From : +19:11:44 ============================================================================ +19:11:44 FNo. Len. Field Value +19:11:44 ============================================================================ +19:11:44 [ 1] [ 4] [0210] +19:11:44 [ 2] [ 16] [1808931300023296] +19:11:44 [ 3] [ 6] [011000] +19:11:44 [ 4] [ 12] [000010000000] +19:11:44 [ 6] [ 12] [000010000000] +19:11:44 [ 7] [ 10] [0320191133] +19:11:44 [ 11] [ 6] [834542] +19:11:44 [ 12] [ 6] [191133] +19:11:44 [ 13] [ 4] [0320] +19:11:44 [ 18] [ 4] [6011] +19:11:44 [ 19] [ 3] [418] +19:11:44 [ 22] [ 3] [021] +19:11:44 [ 32] [ 6] [621354] +19:11:44 [ 35] [ 27] [1808931300023296=1803500035] +19:11:44 [ 37] [ 12] [507903505882] +19:11:44 [ 38] [ 6] [834542] +19:11:44 [ 39] [ 2] [00] +19:11:44 [ 41] [ 8] [09000700] +19:11:44 [ 49] [ 3] [418] +19:11:44 [ 52] [ 16] [F4637D6F55C5A6FB] +19:11:44 [ 54] [ 20] [1001418C000013905600] +19:11:44 ============================================================================ +19:11:44 Calculate Source COMM Id = 0 +19:11:44 ============================================================================ +19:11:44 + + +waiting on router queue for slot.... +19:11:47 ============================================================================ +19:11:47 Slot Id : <484> +19:11:47 Transaction Type : REQUEST +19:11:47 Received From : +19:11:47 ============================================================================ +19:11:47 FNo. Len. Field Value +19:11:47 ============================================================================ +19:11:47 [ 1] [ 4] [0800] +19:11:47 [ 2] [ 5] [02531] +19:11:47 [ 3] [ 6] [579198] +19:11:47 [ 7] [ 10] [0320121147] +19:11:47 [ 11] [ 6] [807526] +19:11:47 [ 15] [ 10] [0320121147] +19:11:47 [ 37] [ 11] [57919807526] +19:11:47 [ 70] [ 3] [001] +19:11:47 ============================================================================ +19:11:47 + + +waiting on router queue for slot.... +19:11:47 ============================================================================ +19:11:47 Slot Id : <484> +19:11:47 Transaction Type : RESPONSE +19:11:47 Received From : +19:11:47 ============================================================================ +19:11:47 FNo. Len. Field Value +19:11:47 ============================================================================ +19:11:47 [ 1] [ 4] [0810] +19:11:47 [ 7] [ 10] [0320121147] +19:11:47 [ 11] [ 6] [807526] +19:11:47 [ 15] [ 4] [0320] +19:11:47 [ 37] [ 12] [57919807526] +19:11:47 [ 39] [ 2] [00] +19:11:47 [ 70] [ 3] [001] +19:11:47 ============================================================================ +19:11:47 Sending to : +19:11:47 ============================================================================ +19:11:47 + + +waiting on router queue for slot.... +19:11:50 ============================================================================ +19:11:50 Slot Id : <480> +19:11:50 Transaction Type : REQUEST +19:11:50 Received From : +19:11:50 ============================================================================ +19:11:50 FNo. Len. Field Value +19:11:50 ============================================================================ +19:11:50 [ 1] [ 4] [0800] +19:11:50 [ 7] [ 10] [0320121057] +19:11:50 [ 11] [ 6] [157885] +19:11:50 [ 70] [ 3] [301] +19:11:50 ============================================================================ +19:11:50 + + +waiting on router queue for slot.... +19:11:50 Sending to : +19:11:50 ============================================================================ +19:11:50 ============================================================================ +19:11:50 Slot Id : <480> +19:11:50 Transaction Type : RESPONSE +19:11:50 Received From : +19:11:50 ============================================================================ +19:11:50 FNo. Len. Field Value +19:11:50 ============================================================================ +19:11:50 [ 1] [ 4] [0810] +19:11:50 [ 7] [ 10] [0320121057] +19:11:50 [ 11] [ 6] [157885] +19:11:50 [ 39] [ 2] [00] +19:11:50 [ 70] [ 3] [301] +19:11:50 ============================================================================ +19:11:50 Calculate Source COMM Id = 2 +19:11:50 ============================================================================ +19:11:50 + + +waiting on router queue for slot.... +19:11:53 ============================================================================ +19:11:53 Slot Id : <471> +19:11:53 Transaction Type : REQUEST +19:11:53 Received From : +19:11:53 ============================================================================ +19:11:53 FNo. Len. Field Value +19:11:53 ============================================================================ +19:11:53 [ 1] [ 4] [0200] +19:11:53 [ 2] [ 16] [6213541000163363] +19:11:53 [ 3] [ 6] [010000] +19:11:53 [ 4] [ 12] [000025000000] +19:11:53 [ 7] [ 10] [0320190943] +19:11:53 [ 11] [ 6] [955793] +19:11:53 [ 12] [ 6] [190943] +19:11:53 [ 13] [ 4] [0320] +19:11:53 [ 15] [ 4] [0320] +19:11:53 [ 18] [ 4] [6011] +19:11:53 [ 19] [ 3] [418] +19:11:53 [ 22] [ 3] [021] +19:11:53 [ 25] [ 2] [01] +19:11:53 [ 28] [ 9] [D00002000] +19:11:53 [ 32] [ 6] [668899] +19:11:53 [ 35] [ 32] [6213541000163363=491212016336323] +19:11:53 [ 37] [ 12] [507902475773] +19:11:53 [ 41] [ 8] [03020032] +19:11:53 [ 42] [ 15] [APT ] +19:11:53 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:11:53 [ 49] [ 3] [418] +19:11:53 [ 52] [ 16] [50B348F14BEFF14C] +19:11:53 ============================================================================ +19:11:53 + + +waiting on router queue for slot.... +19:11:53 Sending to : +19:11:53 ============================================================================ +19:11:53 Sending to : +19:11:53 ============================================================================ +19:11:53 ============================================================================ +19:11:53 Slot Id : <471> +19:11:53 Transaction Type : REQUEST +19:11:53 Received From : +19:11:53 ============================================================================ +19:11:53 FNo. Len. Field Value +19:11:53 ============================================================================ +19:11:53 [ 1] [ 4] [0200] +19:11:53 [ 2] [ 16] [6213541000163363] +19:11:53 [ 3] [ 6] [010000] +19:11:53 [ 4] [ 12] [000025000000] +19:11:53 [ 7] [ 10] [0320190943] +19:11:53 [ 11] [ 6] [955793] +19:11:53 [ 12] [ 6] [190943] +19:11:53 [ 13] [ 4] [0320] +19:11:53 [ 15] [ 4] [0320] +19:11:53 [ 18] [ 4] [6011] +19:11:53 [ 19] [ 3] [418] +19:11:53 [ 22] [ 3] [021] +19:11:53 [ 25] [ 2] [01] +19:11:53 [ 28] [ 9] [D00002000] +19:11:53 [ 32] [ 6] [668899] +19:11:53 [ 35] [ 32] [6213541000163363=491212016336323] +19:11:53 [ 37] [ 12] [507902475773] +19:11:53 [ 41] [ 8] [03020032] +19:11:53 [ 42] [ 15] [APT ] +19:11:53 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:11:53 [ 49] [ 3] [418] +19:11:53 [ 52] [ 16] [50B348F14BEFF14C] +19:11:53 ============================================================================ +19:11:53 + + +waiting on router queue for slot.... +19:11:53 Sending to : +19:11:53 ============================================================================ +19:11:53 ============================================================================ +19:11:53 Slot Id : <471> +19:11:53 Transaction Type : REQUEST +19:11:53 Received From : +19:11:53 ============================================================================ +19:11:53 FNo. Len. Field Value +19:11:53 ============================================================================ +19:11:53 [ 1] [ 4] [0200] +19:11:53 [ 2] [ 16] [6213541000163363] +19:11:53 [ 3] [ 6] [010000] +19:11:53 [ 4] [ 12] [000025000000] +19:11:53 [ 7] [ 10] [0320190943] +19:11:53 [ 11] [ 6] [955793] +19:11:53 [ 12] [ 6] [190943] +19:11:53 [ 13] [ 4] [0320] +19:11:53 [ 15] [ 4] [0320] +19:11:53 [ 18] [ 4] [6011] +19:11:53 [ 19] [ 3] [418] +19:11:53 [ 22] [ 3] [021] +19:11:53 [ 25] [ 2] [01] +19:11:53 [ 28] [ 9] [D00002000] +19:11:53 [ 32] [ 6] [668899] +19:11:53 [ 35] [ 32] [6213541000163363=491212016336323] +19:11:53 [ 37] [ 12] [507902475773] +19:11:53 [ 41] [ 8] [03020032] +19:11:53 [ 42] [ 15] [APT ] +19:11:53 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:11:53 [ 49] [ 3] [418] +19:11:53 [ 52] [ 16] [98FF777124FE4A5F] +19:11:53 ============================================================================ +19:11:53 + + +waiting on router queue for slot.... +19:11:53 Sending to : <0> +19:11:53 ============================================================================ +19:11:54 ============================================================================ +19:11:54 Slot Id : <471> +19:11:54 Transaction Type : RESPONSE +19:11:54 Received From : +19:11:54 ============================================================================ +19:11:54 FNo. Len. Field Value +19:11:54 ============================================================================ +19:11:54 [ 1] [ 4] [0210] +19:11:54 [ 2] [ 16] [6213541000163363] +19:11:54 [ 3] [ 6] [010000] +19:11:54 [ 4] [ 12] [000025000000] +19:11:54 [ 7] [ 10] [0320190943] +19:11:54 [ 11] [ 6] [955793] +19:11:54 [ 12] [ 6] [190943] +19:11:54 [ 13] [ 4] [0320] +19:11:54 [ 15] [ 4] [0320] +19:11:54 [ 18] [ 4] [6011] +19:11:54 [ 19] [ 3] [418] +19:11:54 [ 32] [ 6] [668899] +19:11:54 [ 35] [ 32] [6213541000163363=491212016336323] +19:11:54 [ 37] [ 12] [507902475773] +19:11:54 [ 38] [ 6] [955793] +19:11:54 [ 39] [ 2] [51] +19:11:54 [ 41] [ 8] [03020032] +19:11:54 [ 49] [ 3] [418] +19:11:54 [ 54] [ 40] [0001418C0000220270540002418C000022027054] +19:11:54 ============================================================================ +19:11:54 Sending to : +19:11:54 ============================================================================ +19:11:54 + + +waiting on router queue for slot.... +19:11:55 ============================================================================ +19:11:55 Slot Id : <471> +19:11:55 Transaction Type : RESPONSE +19:11:55 Received From : +19:11:55 ============================================================================ +19:11:55 FNo. Len. Field Value +19:11:55 ============================================================================ +19:11:55 [ 1] [ 4] [0210] +19:11:55 [ 2] [ 16] [6213541000163363] +19:11:55 [ 3] [ 6] [010000] +19:11:55 [ 4] [ 12] [000025000000] +19:11:55 [ 7] [ 10] [0320190943] +19:11:55 [ 11] [ 6] [955793] +19:11:55 [ 12] [ 6] [190943] +19:11:55 [ 13] [ 4] [0320] +19:11:55 [ 15] [ 4] [0320] +19:11:55 [ 18] [ 4] [6011] +19:11:55 [ 19] [ 3] [418] +19:11:55 [ 32] [ 6] [668899] +19:11:55 [ 35] [ 32] [6213541000163363=491212016336323] +19:11:55 [ 37] [ 12] [507902475773] +19:11:55 [ 38] [ 6] [955793] +19:11:55 [ 39] [ 2] [51] +19:11:55 [ 41] [ 8] [03020032] +19:11:55 [ 49] [ 3] [418] +19:11:55 [ 54] [ 40] [0001418C0000220270540002418C000022027054] +19:11:55 ============================================================================ +19:11:55 Calculate Source COMM Id = 4 +19:11:55 ============================================================================ +19:11:55 + + +waiting on router queue for slot.... +19:12:01 ============================================================================ +19:12:01 Slot Id : <490> +19:12:01 Transaction Type : REQUEST +19:12:01 Received From : +19:12:01 ============================================================================ +19:12:01 FNo. Len. Field Value +19:12:01 ============================================================================ +19:12:01 [ 1] [ 4] [0800] +19:12:01 [ 7] [ 10] [0320121108] +19:12:01 [ 11] [ 6] [157886] +19:12:01 [ 70] [ 3] [301] +19:12:01 ============================================================================ +19:12:01 + + +waiting on router queue for slot.... +19:12:01 Sending to : +19:12:01 ============================================================================ +19:12:01 ============================================================================ +19:12:01 Slot Id : <490> +19:12:01 Transaction Type : RESPONSE +19:12:01 Received From : +19:12:01 ============================================================================ +19:12:01 FNo. Len. Field Value +19:12:01 ============================================================================ +19:12:01 [ 1] [ 4] [0810] +19:12:01 [ 7] [ 10] [0320121108] +19:12:01 [ 11] [ 6] [157886] +19:12:01 [ 39] [ 2] [00] +19:12:01 [ 70] [ 3] [301] +19:12:01 ============================================================================ +19:12:01 Calculate Source COMM Id = 2 +19:12:01 ============================================================================ +19:12:01 + + +waiting on router queue for slot.... +19:12:02 ============================================================================ +19:12:02 Slot Id : <463> +19:12:02 Transaction Type : REQUEST +19:12:02 Received From : +19:12:02 ============================================================================ +19:12:02 FNo. Len. Field Value +19:12:02 ============================================================================ +19:12:02 [ 1] [ 4] [0200] +19:12:02 [ 2] [ 16] [6213544002149653] +19:12:02 [ 3] [ 6] [010000] +19:12:02 [ 4] [ 12] [000020000000] +19:12:02 [ 7] [ 10] [0320190952] +19:12:02 [ 11] [ 6] [955799] +19:12:02 [ 12] [ 6] [190952] +19:12:02 [ 13] [ 4] [0320] +19:12:02 [ 15] [ 4] [0320] +19:12:02 [ 18] [ 4] [6011] +19:12:02 [ 19] [ 3] [418] +19:12:02 [ 22] [ 3] [021] +19:12:02 [ 25] [ 2] [01] +19:12:02 [ 28] [ 9] [D00002000] +19:12:02 [ 32] [ 6] [668899] +19:12:02 [ 35] [ 32] [6213544002149653=491212014965263] +19:12:02 [ 37] [ 12] [507901196876] +19:12:02 [ 41] [ 8] [03020011] +19:12:02 [ 42] [ 15] [APT ] +19:12:02 [ 43] [ 40] [ SOUTHERN BUS STATION VTE ] +19:12:02 [ 49] [ 3] [418] +19:12:02 [ 52] [ 16] [0047E365EC7CD010] +19:12:02 ============================================================================ +19:12:02 + + +waiting on router queue for slot.... +19:12:02 Sending to : +19:12:02 ============================================================================ +19:12:02 Sending to : +19:12:02 ============================================================================ +19:12:03 ============================================================================ +19:12:03 Slot Id : <463> +19:12:03 Transaction Type : REQUEST +19:12:03 Received From : +19:12:03 ============================================================================ +19:12:03 FNo. Len. Field Value +19:12:03 ============================================================================ +19:12:03 [ 1] [ 4] [0200] +19:12:03 [ 2] [ 16] [6213544002149653] +19:12:03 [ 3] [ 6] [010000] +19:12:03 [ 4] [ 12] [000020000000] +19:12:03 [ 7] [ 10] [0320190952] +19:12:03 [ 11] [ 6] [955799] +19:12:03 [ 12] [ 6] [190952] +19:12:03 [ 13] [ 4] [0320] +19:12:03 [ 15] [ 4] [0320] +19:12:03 [ 18] [ 4] [6011] +19:12:03 [ 19] [ 3] [418] +19:12:03 [ 22] [ 3] [021] +19:12:03 [ 25] [ 2] [01] +19:12:03 [ 28] [ 9] [D00002000] +19:12:03 [ 32] [ 6] [668899] +19:12:03 [ 35] [ 32] [6213544002149653=491212014965263] +19:12:03 [ 37] [ 12] [507901196876] +19:12:03 [ 41] [ 8] [03020011] +19:12:03 [ 42] [ 15] [APT ] +19:12:03 [ 43] [ 40] [ SOUTHERN BUS STATION VTE ] +19:12:03 [ 49] [ 3] [418] +19:12:03 [ 52] [ 16] [0047E365EC7CD010] +19:12:03 ============================================================================ +19:12:03 + + +waiting on router queue for slot.... +19:12:03 Sending to : +19:12:03 ============================================================================ +19:12:03 ============================================================================ +19:12:03 Slot Id : <463> +19:12:03 Transaction Type : REQUEST +19:12:03 Received From : +19:12:03 ============================================================================ +19:12:03 FNo. Len. Field Value +19:12:03 ============================================================================ +19:12:03 [ 1] [ 4] [0200] +19:12:03 [ 2] [ 16] [6213544002149653] +19:12:03 [ 3] [ 6] [010000] +19:12:03 [ 4] [ 12] [000020000000] +19:12:03 [ 7] [ 10] [0320190952] +19:12:03 [ 11] [ 6] [955799] +19:12:03 [ 12] [ 6] [190952] +19:12:03 [ 13] [ 4] [0320] +19:12:03 [ 15] [ 4] [0320] +19:12:03 [ 18] [ 4] [6011] +19:12:03 [ 19] [ 3] [418] +19:12:03 [ 22] [ 3] [021] +19:12:03 [ 25] [ 2] [01] +19:12:03 [ 28] [ 9] [D00002000] +19:12:03 [ 32] [ 6] [668899] +19:12:03 [ 35] [ 32] [6213544002149653=491212014965263] +19:12:03 [ 37] [ 12] [507901196876] +19:12:03 [ 41] [ 8] [03020011] +19:12:03 [ 42] [ 15] [APT ] +19:12:03 [ 43] [ 40] [ SOUTHERN BUS STATION VTE ] +19:12:03 [ 49] [ 3] [418] +19:12:03 [ 52] [ 16] [05B0B37D0FE05690] +19:12:03 ============================================================================ +19:12:03 + + +waiting on router queue for slot.... +19:12:03 Sending to : <0> +19:12:03 ============================================================================ +19:12:03 ============================================================================ +19:12:03 Slot Id : <463> +19:12:03 Transaction Type : RESPONSE +19:12:03 Received From : +19:12:03 ============================================================================ +19:12:03 FNo. Len. Field Value +19:12:03 ============================================================================ +19:12:03 [ 1] [ 4] [0210] +19:12:03 [ 2] [ 16] [6213544002149653] +19:12:03 [ 3] [ 6] [010000] +19:12:03 [ 4] [ 12] [000020000000] +19:12:03 [ 7] [ 10] [0320190952] +19:12:03 [ 11] [ 6] [955799] +19:12:03 [ 12] [ 6] [190952] +19:12:03 [ 13] [ 4] [0320] +19:12:03 [ 15] [ 4] [0320] +19:12:03 [ 18] [ 4] [6011] +19:12:03 [ 19] [ 3] [418] +19:12:03 [ 32] [ 6] [668899] +19:12:03 [ 35] [ 32] [6213544002149653=491212014965263] +19:12:03 [ 37] [ 12] [507901196876] +19:12:03 [ 38] [ 6] [812433] +19:12:03 [ 39] [ 2] [00] +19:12:03 [ 41] [ 8] [03020011] +19:12:03 [ 49] [ 3] [418] +19:12:03 [ 54] [ 40] [0001418C0000151097650002418C000015109765] +19:12:03 ============================================================================ +19:12:03 Sending to : +19:12:03 ============================================================================ +19:12:03 + + +waiting on router queue for slot.... +19:12:04 ============================================================================ +19:12:04 Slot Id : <463> +19:12:04 Transaction Type : RESPONSE +19:12:04 Received From : +19:12:04 ============================================================================ +19:12:04 FNo. Len. Field Value +19:12:04 ============================================================================ +19:12:04 [ 1] [ 4] [0210] +19:12:04 [ 2] [ 16] [6213544002149653] +19:12:04 [ 3] [ 6] [010000] +19:12:04 [ 4] [ 12] [000020000000] +19:12:04 [ 7] [ 10] [0320190952] +19:12:04 [ 11] [ 6] [955799] +19:12:04 [ 12] [ 6] [190952] +19:12:04 [ 13] [ 4] [0320] +19:12:04 [ 15] [ 4] [0320] +19:12:04 [ 18] [ 4] [6011] +19:12:04 [ 19] [ 3] [418] +19:12:04 [ 32] [ 6] [668899] +19:12:04 [ 35] [ 32] [6213544002149653=491212014965263] +19:12:04 [ 37] [ 12] [507901196876] +19:12:04 [ 38] [ 6] [812433] +19:12:04 [ 39] [ 2] [00] +19:12:04 [ 41] [ 8] [03020011] +19:12:04 [ 49] [ 3] [418] +19:12:04 [ 54] [ 40] [0001418C0000151097650002418C000015109765] +19:12:04 ============================================================================ +19:12:04 Calculate Source COMM Id = 4 +19:12:04 ============================================================================ +19:12:04 + + +waiting on router queue for slot.... +19:12:05 ============================================================================ +19:12:05 Slot Id : <448> +19:12:05 Transaction Type : REQUEST +19:12:05 Received From : +19:12:05 ============================================================================ +19:12:05 FNo. Len. Field Value +19:12:05 ============================================================================ +19:12:05 [ 1] [ 4] [0200] +19:12:05 [ 2] [ 16] [1808930600035745] +19:12:05 [ 3] [ 6] [011000] +19:12:05 [ 4] [ 12] [000100000000] +19:12:05 [ 7] [ 10] [0320191225] +19:12:05 [ 11] [ 6] [211024] +19:12:05 [ 12] [ 6] [191250] +19:12:05 [ 13] [ 4] [0320] +19:12:05 [ 14] [ 4] [1803] +19:12:05 [ 15] [ 4] [0320] +19:12:05 [ 18] [ 4] [6011] +19:12:05 [ 19] [ 3] [418] +19:12:05 [ 22] [ 3] [021] +19:12:05 [ 25] [ 2] [01] +19:12:05 [ 28] [ 9] [D00002000] +19:12:05 [ 32] [ 6] [198901] +19:12:05 [ 35] [ 27] [1808930600035745=1803500879] +19:12:05 [ 37] [ 12] [507919211024] +19:12:05 [ 41] [ 8] [01529009] +19:12:05 [ 42] [ 15] [000000041529009] +19:12:05 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +19:12:05 [ 49] [ 3] [418] +19:12:05 [ 52] [ 16] [AEF7326B6CD96DAB] +19:12:05 ============================================================================ +19:12:05 + + +waiting on router queue for slot.... +19:12:05 Sending to : +19:12:05 ============================================================================ +19:12:05 Sending to : +19:12:05 ============================================================================ +19:12:06 ============================================================================ +19:12:06 Slot Id : <448> +19:12:06 Transaction Type : REQUEST +19:12:06 Received From : +19:12:06 ============================================================================ +19:12:06 FNo. Len. Field Value +19:12:06 ============================================================================ +19:12:06 [ 1] [ 4] [0200] +19:12:06 [ 2] [ 16] [1808930600035745] +19:12:06 [ 3] [ 6] [011000] +19:12:06 [ 4] [ 12] [000100000000] +19:12:06 [ 7] [ 10] [0320191225] +19:12:06 [ 11] [ 6] [211024] +19:12:06 [ 12] [ 6] [191250] +19:12:06 [ 13] [ 4] [0320] +19:12:06 [ 14] [ 4] [1803] +19:12:06 [ 15] [ 4] [0320] +19:12:06 [ 18] [ 4] [6011] +19:12:06 [ 19] [ 3] [418] +19:12:06 [ 22] [ 3] [021] +19:12:06 [ 25] [ 2] [01] +19:12:06 [ 28] [ 9] [D00002000] +19:12:06 [ 32] [ 6] [198901] +19:12:06 [ 35] [ 27] [1808930600035745=1803500879] +19:12:06 [ 37] [ 12] [507919211024] +19:12:06 [ 41] [ 8] [01529009] +19:12:06 [ 42] [ 15] [000000041529009] +19:12:06 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +19:12:06 [ 49] [ 3] [418] +19:12:06 [ 52] [ 16] [AEF7326B6CD96DAB] +19:12:06 ============================================================================ +19:12:06 + + +waiting on router queue for slot.... +19:12:06 Sending to : +19:12:06 ============================================================================ +19:12:06 ============================================================================ +19:12:06 Slot Id : <448> +19:12:06 Transaction Type : REQUEST +19:12:06 Received From : +19:12:06 ============================================================================ +19:12:06 FNo. Len. Field Value +19:12:06 ============================================================================ +19:12:06 [ 1] [ 4] [0200] +19:12:06 [ 2] [ 16] [1808930600035745] +19:12:06 [ 3] [ 6] [011000] +19:12:06 [ 4] [ 12] [000100000000] +19:12:06 [ 7] [ 10] [0320191225] +19:12:06 [ 11] [ 6] [211024] +19:12:06 [ 12] [ 6] [191250] +19:12:06 [ 13] [ 4] [0320] +19:12:06 [ 14] [ 4] [1803] +19:12:06 [ 15] [ 4] [0320] +19:12:06 [ 18] [ 4] [6011] +19:12:06 [ 19] [ 3] [418] +19:12:06 [ 22] [ 3] [021] +19:12:06 [ 25] [ 2] [01] +19:12:06 [ 28] [ 9] [D00002000] +19:12:06 [ 32] [ 6] [198901] +19:12:06 [ 35] [ 27] [1808930600035745=1803500879] +19:12:06 [ 37] [ 12] [507919211024] +19:12:06 [ 41] [ 8] [01529009] +19:12:06 [ 42] [ 15] [000000041529009] +19:12:06 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +19:12:06 [ 49] [ 3] [418] +19:12:06 [ 52] [ 16] [4C4977F133B0030E] +19:12:06 ============================================================================ +19:12:06 + + +waiting on router queue for slot.... +19:12:06 Sending to : <2> +19:12:06 ============================================================================ +19:12:09 ============================================================================ +19:12:09 Slot Id : <479> +19:12:09 Transaction Type : REQUEST +19:12:09 Received From : +19:12:09 ============================================================================ +19:12:09 FNo. Len. Field Value +19:12:09 ============================================================================ +19:12:09 [ 1] [ 4] [0200] +19:12:09 [ 2] [ 16] [6213548000351880] +19:12:09 [ 3] [ 6] [010000] +19:12:09 [ 4] [ 12] [000050000000] +19:12:09 [ 7] [ 10] [0320190958] +19:12:09 [ 11] [ 6] [955802] +19:12:09 [ 12] [ 6] [190958] +19:12:09 [ 13] [ 4] [0320] +19:12:09 [ 15] [ 4] [0320] +19:12:09 [ 18] [ 4] [6011] +19:12:09 [ 19] [ 3] [418] +19:12:09 [ 22] [ 3] [021] +19:12:09 [ 25] [ 2] [01] +19:12:09 [ 28] [ 9] [D00002000] +19:12:09 [ 32] [ 6] [668899] +19:12:09 [ 35] [ 32] [6213548000351880=180412015188110] +19:12:09 [ 37] [ 12] [507901972557] +19:12:09 [ 41] [ 8] [03012003] +19:12:09 [ 42] [ 15] [APT ] +19:12:09 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +19:12:09 [ 49] [ 3] [418] +19:12:09 [ 52] [ 16] [F1C24968512F7A21] +19:12:09 ============================================================================ +19:12:09 + + +waiting on router queue for slot.... +19:12:09 Sending to : +19:12:09 ============================================================================ +19:12:09 Sending to : +19:12:09 ============================================================================ +19:12:09 ============================================================================ +19:12:09 Slot Id : <479> +19:12:09 Transaction Type : REQUEST +19:12:09 Received From : +19:12:09 ============================================================================ +19:12:09 FNo. Len. Field Value +19:12:09 ============================================================================ +19:12:09 [ 1] [ 4] [0200] +19:12:09 [ 2] [ 16] [6213548000351880] +19:12:09 [ 3] [ 6] [010000] +19:12:09 [ 4] [ 12] [000050000000] +19:12:09 [ 7] [ 10] [0320190958] +19:12:09 [ 11] [ 6] [955802] +19:12:09 [ 12] [ 6] [190958] +19:12:09 [ 13] [ 4] [0320] +19:12:09 [ 15] [ 4] [0320] +19:12:09 [ 18] [ 4] [6011] +19:12:09 [ 19] [ 3] [418] +19:12:09 [ 22] [ 3] [021] +19:12:09 [ 25] [ 2] [01] +19:12:09 [ 28] [ 9] [D00002000] +19:12:09 [ 32] [ 6] [668899] +19:12:09 [ 35] [ 32] [6213548000351880=180412015188110] +19:12:09 [ 37] [ 12] [507901972557] +19:12:09 [ 41] [ 8] [03012003] +19:12:09 [ 42] [ 15] [APT ] +19:12:09 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +19:12:09 [ 49] [ 3] [418] +19:12:09 [ 52] [ 16] [F1C24968512F7A21] +19:12:09 ============================================================================ +19:12:09 + + +waiting on router queue for slot.... +19:12:09 Sending to : +19:12:09 ============================================================================ +19:12:09 ============================================================================ +19:12:09 Slot Id : <479> +19:12:09 Transaction Type : REQUEST +19:12:09 Received From : +19:12:09 ============================================================================ +19:12:09 FNo. Len. Field Value +19:12:09 ============================================================================ +19:12:09 [ 1] [ 4] [0200] +19:12:09 [ 2] [ 16] [6213548000351880] +19:12:09 [ 3] [ 6] [010000] +19:12:09 [ 4] [ 12] [000050000000] +19:12:09 [ 7] [ 10] [0320190958] +19:12:09 [ 11] [ 6] [955802] +19:12:09 [ 12] [ 6] [190958] +19:12:09 [ 13] [ 4] [0320] +19:12:09 [ 15] [ 4] [0320] +19:12:09 [ 18] [ 4] [6011] +19:12:09 [ 19] [ 3] [418] +19:12:09 [ 22] [ 3] [021] +19:12:09 [ 25] [ 2] [01] +19:12:09 [ 28] [ 9] [D00002000] +19:12:09 [ 32] [ 6] [668899] +19:12:09 [ 35] [ 32] [6213548000351880=180412015188110] +19:12:09 [ 37] [ 12] [507901972557] +19:12:09 [ 41] [ 8] [03012003] +19:12:09 [ 42] [ 15] [APT ] +19:12:09 [ 43] [ 40] [ MEAUNGVIENGTHONG UNIT LAK] +19:12:09 [ 49] [ 3] [418] +19:12:09 [ 52] [ 16] [9ED66C2C69737DD7] +19:12:09 ============================================================================ +19:12:09 + + +waiting on router queue for slot.... +19:12:09 Sending to : <0> +19:12:09 ============================================================================ +19:12:09 ============================================================================ +19:12:09 Slot Id : <448> +19:12:09 Transaction Type : RESPONSE +19:12:09 Received From : +19:12:09 ============================================================================ +19:12:09 FNo. Len. Field Value +19:12:09 ============================================================================ +19:12:09 [ 1] [ 4] [0210] +19:12:09 [ 2] [ 16] [1808930600035745] +19:12:09 [ 3] [ 6] [011000] +19:12:09 [ 4] [ 12] [000100000000] +19:12:09 [ 6] [ 12] [000100000000] +19:12:09 [ 7] [ 10] [0320191225] +19:12:09 [ 11] [ 6] [211024] +19:12:09 [ 12] [ 6] [191250] +19:12:09 [ 13] [ 4] [0320] +19:12:09 [ 14] [ 4] [1803] +19:12:09 [ 18] [ 4] [6011] +19:12:09 [ 19] [ 3] [418] +19:12:09 [ 22] [ 3] [021] +19:12:09 [ 32] [ 6] [198901] +19:12:09 [ 35] [ 27] [1808930600035745=1803500879] +19:12:09 [ 37] [ 12] [507919211024] +19:12:09 [ 38] [ 6] [211024] +19:12:09 [ 39] [ 2] [51] +19:12:09 [ 41] [ 8] [01529009] +19:12:09 [ 49] [ 3] [418] +19:12:09 [ 52] [ 16] [4C4977F133B0030E] +19:12:09 ============================================================================ +19:12:09 Sending to : +19:12:09 ============================================================================ +19:12:09 + + +waiting on router queue for slot.... +19:12:10 ============================================================================ +19:12:10 Slot Id : <479> +19:12:10 Transaction Type : RESPONSE +19:12:10 Received From : +19:12:10 ============================================================================ +19:12:10 FNo. Len. Field Value +19:12:10 ============================================================================ +19:12:10 [ 1] [ 4] [0210] +19:12:10 [ 2] [ 16] [6213548000351880] +19:12:10 [ 3] [ 6] [010000] +19:12:10 [ 4] [ 12] [000050000000] +19:12:10 [ 7] [ 10] [0320190958] +19:12:10 [ 11] [ 6] [955802] +19:12:10 [ 12] [ 6] [190958] +19:12:10 [ 13] [ 4] [0320] +19:12:10 [ 15] [ 4] [0320] +19:12:10 [ 18] [ 4] [6011] +19:12:10 [ 19] [ 3] [418] +19:12:10 [ 32] [ 6] [668899] +19:12:10 [ 35] [ 32] [6213548000351880=180412015188110] +19:12:10 [ 37] [ 12] [507901972557] +19:12:10 [ 38] [ 6] [477306] +19:12:10 [ 39] [ 2] [00] +19:12:10 [ 41] [ 8] [03012003] +19:12:10 [ 49] [ 3] [418] +19:12:10 [ 54] [ 40] [0001418C0000220083820002418C000022008382] +19:12:10 ============================================================================ +19:12:10 Sending to : +19:12:10 ============================================================================ +19:12:10 + + +waiting on router queue for slot.... +19:12:11 ============================================================================ +19:12:11 Slot Id : <448> +19:12:11 Transaction Type : RESPONSE +19:12:11 Received From : +19:12:11 ============================================================================ +19:12:11 FNo. Len. Field Value +19:12:11 ============================================================================ +19:12:11 [ 1] [ 4] [0210] +19:12:11 [ 2] [ 16] [1808930600035745] +19:12:11 [ 3] [ 6] [011000] +19:12:11 [ 4] [ 12] [000100000000] +19:12:11 [ 6] [ 12] [000100000000] +19:12:11 [ 7] [ 10] [0320191225] +19:12:11 [ 11] [ 6] [211024] +19:12:11 [ 12] [ 6] [191250] +19:12:11 [ 13] [ 4] [0320] +19:12:11 [ 14] [ 4] [1803] +19:12:11 [ 18] [ 4] [6011] +19:12:11 [ 19] [ 3] [418] +19:12:11 [ 22] [ 3] [021] +19:12:11 [ 32] [ 6] [198901] +19:12:11 [ 35] [ 27] [1808930600035745=1803500879] +19:12:11 [ 37] [ 12] [507919211024] +19:12:11 [ 38] [ 6] [211024] +19:12:11 [ 39] [ 2] [51] +19:12:11 [ 41] [ 8] [01529009] +19:12:11 [ 49] [ 3] [418] +19:12:11 [ 52] [ 16] [4C4977F133B0030E] +19:12:11 ============================================================================ +19:12:11 Calculate Source COMM Id = 5 +19:12:11 ============================================================================ +19:12:11 + + +waiting on router queue for slot.... +19:12:12 ============================================================================ +19:12:12 Slot Id : <479> +19:12:12 Transaction Type : RESPONSE +19:12:12 Received From : +19:12:12 ============================================================================ +19:12:12 FNo. Len. Field Value +19:12:12 ============================================================================ +19:12:12 [ 1] [ 4] [0210] +19:12:12 [ 2] [ 16] [6213548000351880] +19:12:12 [ 3] [ 6] [010000] +19:12:12 [ 4] [ 12] [000050000000] +19:12:12 [ 7] [ 10] [0320190958] +19:12:12 [ 11] [ 6] [955802] +19:12:12 [ 12] [ 6] [190958] +19:12:12 [ 13] [ 4] [0320] +19:12:12 [ 15] [ 4] [0320] +19:12:12 [ 18] [ 4] [6011] +19:12:12 [ 19] [ 3] [418] +19:12:12 [ 32] [ 6] [668899] +19:12:12 [ 35] [ 32] [6213548000351880=180412015188110] +19:12:12 [ 37] [ 12] [507901972557] +19:12:12 [ 38] [ 6] [477306] +19:12:12 [ 39] [ 2] [00] +19:12:12 [ 41] [ 8] [03012003] +19:12:12 [ 49] [ 3] [418] +19:12:12 [ 54] [ 40] [0001418C0000220083820002418C000022008382] +19:12:12 ============================================================================ +19:12:12 Calculate Source COMM Id = 4 +19:12:12 ============================================================================ +19:12:12 + + +waiting on router queue for slot.... +19:12:17 ============================================================================ +19:12:17 Slot Id : <0> +19:12:17 Transaction Type : REQUEST +19:12:17 Received From : +19:12:17 ============================================================================ +19:12:17 FNo. Len. Field Value +19:12:17 ============================================================================ +19:12:17 [ 1] [ 4] [0800] +19:12:17 [ 7] [ 10] [0320121123] +19:12:17 [ 11] [ 6] [157887] +19:12:17 [ 70] [ 3] [301] +19:12:17 ============================================================================ +19:12:17 + + +waiting on router queue for slot.... +19:12:17 Sending to : +19:12:17 ============================================================================ +19:12:17 ============================================================================ +19:12:17 Slot Id : <0> +19:12:17 Transaction Type : RESPONSE +19:12:17 Received From : +19:12:17 ============================================================================ +19:12:17 FNo. Len. Field Value +19:12:17 ============================================================================ +19:12:17 [ 1] [ 4] [0810] +19:12:17 [ 7] [ 10] [0320121123] +19:12:17 [ 11] [ 6] [157887] +19:12:17 [ 39] [ 2] [00] +19:12:17 [ 70] [ 3] [301] +19:12:17 ============================================================================ +19:12:17 Calculate Source COMM Id = 2 +19:12:17 ============================================================================ +19:12:17 + + +waiting on router queue for slot.... +19:12:27 ============================================================================ +19:12:27 Slot Id : <4> +19:12:27 Transaction Type : REQUEST +19:12:27 Received From : +19:12:27 ============================================================================ +19:12:27 FNo. Len. Field Value +19:12:27 ============================================================================ +19:12:27 [ 1] [ 4] [0800] +19:12:27 [ 7] [ 10] [0320121134] +19:12:27 [ 11] [ 6] [157888] +19:12:27 [ 70] [ 3] [301] +19:12:27 ============================================================================ +19:12:27 + + +waiting on router queue for slot.... +19:12:27 Sending to : +19:12:27 ============================================================================ +19:12:27 ============================================================================ +19:12:27 Slot Id : <4> +19:12:27 Transaction Type : RESPONSE +19:12:27 Received From : +19:12:27 ============================================================================ +19:12:27 FNo. Len. Field Value +19:12:27 ============================================================================ +19:12:27 [ 1] [ 4] [0810] +19:12:27 [ 7] [ 10] [0320121134] +19:12:27 [ 11] [ 6] [157888] +19:12:27 [ 39] [ 2] [00] +19:12:27 [ 70] [ 3] [301] +19:12:27 ============================================================================ +19:12:27 Calculate Source COMM Id = 2 +19:12:27 ============================================================================ +19:12:27 + + +waiting on router queue for slot.... +19:12:30 ============================================================================ +19:12:30 Slot Id : <493> +19:12:30 Transaction Type : REQUEST +19:12:30 Received From : +19:12:30 ============================================================================ +19:12:30 FNo. Len. Field Value +19:12:30 ============================================================================ +19:12:30 [ 1] [ 4] [0200] +19:12:30 [ 2] [ 16] [1808930600035745] +19:12:30 [ 3] [ 6] [011000] +19:12:30 [ 4] [ 12] [000010000000] +19:12:30 [ 7] [ 10] [0320191250] +19:12:30 [ 11] [ 6] [211031] +19:12:30 [ 12] [ 6] [191315] +19:12:30 [ 13] [ 4] [0320] +19:12:30 [ 14] [ 4] [1803] +19:12:30 [ 15] [ 4] [0320] +19:12:30 [ 18] [ 4] [6011] +19:12:30 [ 19] [ 3] [418] +19:12:30 [ 22] [ 3] [021] +19:12:30 [ 25] [ 2] [01] +19:12:30 [ 28] [ 9] [D00002000] +19:12:30 [ 32] [ 6] [198901] +19:12:30 [ 35] [ 27] [1808930600035745=1803500879] +19:12:30 [ 37] [ 12] [507919211031] +19:12:30 [ 41] [ 8] [01529009] +19:12:30 [ 42] [ 15] [000000041529009] +19:12:30 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +19:12:30 [ 49] [ 3] [418] +19:12:30 [ 52] [ 16] [AEF7326B6CD96DAB] +19:12:30 ============================================================================ +19:12:30 + + +waiting on router queue for slot.... +19:12:30 Sending to : +19:12:30 ============================================================================ +19:12:30 Sending to : +19:12:30 ============================================================================ +19:12:30 ============================================================================ +19:12:30 Slot Id : <2> +19:12:30 Transaction Type : REQUEST +19:12:30 Received From : +19:12:30 ============================================================================ +19:12:30 FNo. Len. Field Value +19:12:30 ============================================================================ +19:12:30 [ 1] [ 4] [0200] +19:12:30 [ 2] [ 16] [6213541000163363] +19:12:30 [ 3] [ 6] [010000] +19:12:30 [ 4] [ 12] [000020000000] +19:12:30 [ 7] [ 10] [0320191020] +19:12:30 [ 11] [ 6] [955822] +19:12:30 [ 12] [ 6] [191020] +19:12:30 [ 13] [ 4] [0320] +19:12:30 [ 15] [ 4] [0320] +19:12:30 [ 18] [ 4] [6011] +19:12:30 [ 19] [ 3] [418] +19:12:30 [ 22] [ 3] [021] +19:12:30 [ 25] [ 2] [01] +19:12:30 [ 28] [ 9] [D00002000] +19:12:30 [ 32] [ 6] [668899] +19:12:30 [ 35] [ 32] [6213541000163363=491212016336323] +19:12:30 [ 37] [ 12] [507902475774] +19:12:30 [ 41] [ 8] [03020032] +19:12:30 [ 42] [ 15] [APT ] +19:12:30 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:12:30 [ 49] [ 3] [418] +19:12:30 [ 52] [ 16] [50B348F14BEFF14C] +19:12:30 ============================================================================ +19:12:30 + + +waiting on router queue for slot.... +19:12:30 Sending to : +19:12:30 ============================================================================ +19:12:30 Sending to : +19:12:30 ============================================================================ +19:12:30 ============================================================================ +19:12:30 Slot Id : <493> +19:12:30 Transaction Type : REQUEST +19:12:30 Received From : +19:12:30 ============================================================================ +19:12:30 FNo. Len. Field Value +19:12:30 ============================================================================ +19:12:30 [ 1] [ 4] [0200] +19:12:30 [ 2] [ 16] [1808930600035745] +19:12:30 [ 3] [ 6] [011000] +19:12:30 [ 4] [ 12] [000010000000] +19:12:30 [ 7] [ 10] [0320191250] +19:12:30 [ 11] [ 6] [211031] +19:12:30 [ 12] [ 6] [191315] +19:12:30 [ 13] [ 4] [0320] +19:12:30 [ 14] [ 4] [1803] +19:12:30 [ 15] [ 4] [0320] +19:12:30 [ 18] [ 4] [6011] +19:12:30 [ 19] [ 3] [418] +19:12:30 [ 22] [ 3] [021] +19:12:30 [ 25] [ 2] [01] +19:12:30 [ 28] [ 9] [D00002000] +19:12:30 [ 32] [ 6] [198901] +19:12:30 [ 35] [ 27] [1808930600035745=1803500879] +19:12:30 [ 37] [ 12] [507919211031] +19:12:30 [ 41] [ 8] [01529009] +19:12:30 [ 42] [ 15] [000000041529009] +19:12:30 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +19:12:30 [ 49] [ 3] [418] +19:12:30 [ 52] [ 16] [AEF7326B6CD96DAB] +19:12:30 ============================================================================ +19:12:30 + + +waiting on router queue for slot.... +19:12:30 Sending to : +19:12:30 ============================================================================ +19:12:30 ============================================================================ +19:12:30 Slot Id : <493> +19:12:30 Transaction Type : REQUEST +19:12:30 Received From : +19:12:30 ============================================================================ +19:12:30 FNo. Len. Field Value +19:12:30 ============================================================================ +19:12:30 [ 1] [ 4] [0200] +19:12:30 [ 2] [ 16] [1808930600035745] +19:12:30 [ 3] [ 6] [011000] +19:12:30 [ 4] [ 12] [000010000000] +19:12:30 [ 7] [ 10] [0320191250] +19:12:30 [ 11] [ 6] [211031] +19:12:30 [ 12] [ 6] [191315] +19:12:30 [ 13] [ 4] [0320] +19:12:30 [ 14] [ 4] [1803] +19:12:30 [ 15] [ 4] [0320] +19:12:30 [ 18] [ 4] [6011] +19:12:30 [ 19] [ 3] [418] +19:12:30 [ 22] [ 3] [021] +19:12:30 [ 25] [ 2] [01] +19:12:30 [ 28] [ 9] [D00002000] +19:12:30 [ 32] [ 6] [198901] +19:12:30 [ 35] [ 27] [1808930600035745=1803500879] +19:12:30 [ 37] [ 12] [507919211031] +19:12:30 [ 41] [ 8] [01529009] +19:12:30 [ 42] [ 15] [000000041529009] +19:12:30 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +19:12:30 [ 49] [ 3] [418] +19:12:30 [ 52] [ 16] [4C4977F133B0030E] +19:12:30 ============================================================================ +19:12:30 + + +waiting on router queue for slot.... +19:12:30 Sending to : <2> +19:12:30 ============================================================================ +19:12:30 ============================================================================ +19:12:30 Slot Id : <2> +19:12:30 Transaction Type : REQUEST +19:12:30 Received From : +19:12:30 ============================================================================ +19:12:30 FNo. Len. Field Value +19:12:30 ============================================================================ +19:12:30 [ 1] [ 4] [0200] +19:12:30 [ 2] [ 16] [6213541000163363] +19:12:30 [ 3] [ 6] [010000] +19:12:30 [ 4] [ 12] [000020000000] +19:12:30 [ 7] [ 10] [0320191020] +19:12:30 [ 11] [ 6] [955822] +19:12:30 [ 12] [ 6] [191020] +19:12:30 [ 13] [ 4] [0320] +19:12:30 [ 15] [ 4] [0320] +19:12:30 [ 18] [ 4] [6011] +19:12:30 [ 19] [ 3] [418] +19:12:30 [ 22] [ 3] [021] +19:12:30 [ 25] [ 2] [01] +19:12:30 [ 28] [ 9] [D00002000] +19:12:30 [ 32] [ 6] [668899] +19:12:30 [ 35] [ 32] [6213541000163363=491212016336323] +19:12:30 [ 37] [ 12] [507902475774] +19:12:30 [ 41] [ 8] [03020032] +19:12:30 [ 42] [ 15] [APT ] +19:12:30 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:12:30 [ 49] [ 3] [418] +19:12:30 [ 52] [ 16] [50B348F14BEFF14C] +19:12:30 ============================================================================ +19:12:30 + + +waiting on router queue for slot.... +19:12:30 Sending to : +19:12:30 ============================================================================ +19:12:31 ============================================================================ +19:12:31 Slot Id : <2> +19:12:31 Transaction Type : REQUEST +19:12:31 Received From : +19:12:31 ============================================================================ +19:12:31 FNo. Len. Field Value +19:12:31 ============================================================================ +19:12:31 [ 1] [ 4] [0200] +19:12:31 [ 2] [ 16] [6213541000163363] +19:12:31 [ 3] [ 6] [010000] +19:12:31 [ 4] [ 12] [000020000000] +19:12:31 [ 7] [ 10] [0320191020] +19:12:31 [ 11] [ 6] [955822] +19:12:31 [ 12] [ 6] [191020] +19:12:31 [ 13] [ 4] [0320] +19:12:31 [ 15] [ 4] [0320] +19:12:31 [ 18] [ 4] [6011] +19:12:31 [ 19] [ 3] [418] +19:12:31 [ 22] [ 3] [021] +19:12:31 [ 25] [ 2] [01] +19:12:31 [ 28] [ 9] [D00002000] +19:12:31 [ 32] [ 6] [668899] +19:12:31 [ 35] [ 32] [6213541000163363=491212016336323] +19:12:31 [ 37] [ 12] [507902475774] +19:12:31 [ 41] [ 8] [03020032] +19:12:31 [ 42] [ 15] [APT ] +19:12:31 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:12:31 [ 49] [ 3] [418] +19:12:31 [ 52] [ 16] [98FF777124FE4A5F] +19:12:31 ============================================================================ +19:12:31 + + +waiting on router queue for slot.... +19:12:31 Sending to : <0> +19:12:31 ============================================================================ +19:12:31 ============================================================================ +19:12:31 Slot Id : <2> +19:12:31 Transaction Type : RESPONSE +19:12:31 Received From : +19:12:31 ============================================================================ +19:12:31 FNo. Len. Field Value +19:12:31 ============================================================================ +19:12:31 [ 1] [ 4] [0210] +19:12:31 [ 2] [ 16] [6213541000163363] +19:12:31 [ 3] [ 6] [010000] +19:12:31 [ 4] [ 12] [000020000000] +19:12:31 [ 7] [ 10] [0320191020] +19:12:31 [ 11] [ 6] [955822] +19:12:31 [ 12] [ 6] [191020] +19:12:31 [ 13] [ 4] [0320] +19:12:31 [ 15] [ 4] [0320] +19:12:31 [ 18] [ 4] [6011] +19:12:31 [ 19] [ 3] [418] +19:12:31 [ 32] [ 6] [668899] +19:12:31 [ 35] [ 32] [6213541000163363=491212016336323] +19:12:31 [ 37] [ 12] [507902475774] +19:12:31 [ 38] [ 6] [955822] +19:12:31 [ 39] [ 2] [51] +19:12:31 [ 41] [ 8] [03020032] +19:12:31 [ 49] [ 3] [418] +19:12:31 [ 54] [ 40] [0001418C0000220270540002418C000022027054] +19:12:31 ============================================================================ +19:12:31 Sending to : +19:12:31 ============================================================================ +19:12:31 + + +waiting on router queue for slot.... +19:12:32 ============================================================================ +19:12:32 Slot Id : <2> +19:12:32 Transaction Type : RESPONSE +19:12:32 Received From : +19:12:32 ============================================================================ +19:12:32 FNo. Len. Field Value +19:12:32 ============================================================================ +19:12:32 [ 1] [ 4] [0210] +19:12:32 [ 2] [ 16] [6213541000163363] +19:12:32 [ 3] [ 6] [010000] +19:12:32 [ 4] [ 12] [000020000000] +19:12:32 [ 7] [ 10] [0320191020] +19:12:32 [ 11] [ 6] [955822] +19:12:32 [ 12] [ 6] [191020] +19:12:32 [ 13] [ 4] [0320] +19:12:32 [ 15] [ 4] [0320] +19:12:32 [ 18] [ 4] [6011] +19:12:32 [ 19] [ 3] [418] +19:12:32 [ 32] [ 6] [668899] +19:12:32 [ 35] [ 32] [6213541000163363=491212016336323] +19:12:32 [ 37] [ 12] [507902475774] +19:12:32 [ 38] [ 6] [955822] +19:12:32 [ 39] [ 2] [51] +19:12:32 [ 41] [ 8] [03020032] +19:12:32 [ 49] [ 3] [418] +19:12:32 [ 54] [ 40] [0001418C0000220270540002418C000022027054] +19:12:32 ============================================================================ +19:12:32 Calculate Source COMM Id = 4 +19:12:32 ============================================================================ +19:12:32 + + +waiting on router queue for slot.... +19:12:34 ============================================================================ +19:12:34 Slot Id : <493> +19:12:34 Transaction Type : RESPONSE +19:12:34 Received From : +19:12:34 ============================================================================ +19:12:34 FNo. Len. Field Value +19:12:34 ============================================================================ +19:12:34 [ 1] [ 4] [0210] +19:12:34 [ 2] [ 16] [1808930600035745] +19:12:34 [ 3] [ 6] [011000] +19:12:34 [ 4] [ 12] [000010000000] +19:12:34 [ 6] [ 12] [000010000000] +19:12:34 [ 7] [ 10] [0320191250] +19:12:34 [ 11] [ 6] [211031] +19:12:34 [ 12] [ 6] [191315] +19:12:34 [ 13] [ 4] [0320] +19:12:34 [ 14] [ 4] [1803] +19:12:34 [ 18] [ 4] [6011] +19:12:34 [ 19] [ 3] [418] +19:12:34 [ 22] [ 3] [021] +19:12:34 [ 32] [ 6] [198901] +19:12:34 [ 35] [ 27] [1808930600035745=1803500879] +19:12:34 [ 37] [ 12] [507919211031] +19:12:34 [ 38] [ 6] [211031] +19:12:34 [ 39] [ 2] [00] +19:12:34 [ 41] [ 8] [01529009] +19:12:34 [ 49] [ 3] [418] +19:12:34 [ 52] [ 16] [4C4977F133B0030E] +19:12:34 [ 54] [ 20] [1001418C000012768000] +19:12:34 ============================================================================ +19:12:34 Sending to : +19:12:34 ============================================================================ +19:12:34 + + +waiting on router queue for slot.... +19:12:35 ============================================================================ +19:12:35 Slot Id : <498> +19:12:35 Transaction Type : REQUEST +19:12:35 Received From : +19:12:35 ============================================================================ +19:12:35 FNo. Len. Field Value +19:12:35 ============================================================================ +19:12:35 [ 1] [ 4] [0200] +19:12:35 [ 2] [ 16] [1808931300023296] +19:12:35 [ 3] [ 6] [301000] +19:12:35 [ 4] [ 12] [000000000000] +19:12:35 [ 7] [ 10] [0320191230] +19:12:35 [ 11] [ 6] [834651] +19:12:35 [ 12] [ 6] [191230] +19:12:35 [ 13] [ 4] [0320] +19:12:35 [ 15] [ 4] [0320] +19:12:35 [ 18] [ 4] [6011] +19:12:35 [ 22] [ 3] [900] +19:12:35 [ 25] [ 2] [02] +19:12:35 [ 28] [ 9] [D00000000] +19:12:35 [ 32] [ 6] [621354] +19:12:35 [ 35] [ 27] [1808931300023296=1803500035] +19:12:35 [ 37] [ 12] [507903505883] +19:12:35 [ 41] [ 8] [09000700] +19:12:35 [ 42] [ 15] [NATIVE ] +19:12:35 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +19:12:35 [ 49] [ 3] [418] +19:12:35 [ 52] [ 16] [DC51A3F60A2A1C72] +19:12:35 ============================================================================ +19:12:35 + + +waiting on router queue for slot.... +19:12:35 Sending to : +19:12:35 ============================================================================ +19:12:35 Sending to : +19:12:35 ============================================================================ +19:12:35 ============================================================================ +19:12:35 Slot Id : <1> +19:12:35 Transaction Type : REQUEST +19:12:35 Received From : +19:12:35 ============================================================================ +19:12:35 FNo. Len. Field Value +19:12:35 ============================================================================ +19:12:35 [ 1] [ 4] [0200] +19:12:35 [ 2] [ 16] [1808931000024230] +19:12:35 [ 3] [ 6] [011000] +19:12:35 [ 4] [ 12] [000010000000] +19:12:35 [ 7] [ 10] [0320191230] +19:12:35 [ 11] [ 6] [834655] +19:12:35 [ 12] [ 6] [191230] +19:12:35 [ 13] [ 4] [0320] +19:12:35 [ 15] [ 4] [0320] +19:12:35 [ 18] [ 4] [6011] +19:12:35 [ 22] [ 3] [900] +19:12:35 [ 25] [ 2] [02] +19:12:35 [ 28] [ 9] [D00002000] +19:12:35 [ 32] [ 6] [621354] +19:12:35 [ 35] [ 27] [1808931000024230=1803500162] +19:12:35 [ 37] [ 12] [507902606527] +19:12:35 [ 41] [ 8] [05004300] +19:12:35 [ 42] [ 15] [NATIVE ] +19:12:35 [ 43] [ 40] [Ka deng office LuangprabangLAO] +19:12:35 [ 49] [ 3] [418] +19:12:35 [ 52] [ 16] [2FF83F3470282849] +19:12:35 ============================================================================ +19:12:35 + + +waiting on router queue for slot.... +19:12:35 Sending to : +19:12:35 ============================================================================ +19:12:35 Sending to : +19:12:35 ============================================================================ +19:12:35 ============================================================================ +19:12:35 Slot Id : <498> +19:12:35 Transaction Type : REQUEST +19:12:35 Received From : +19:12:35 ============================================================================ +19:12:35 FNo. Len. Field Value +19:12:35 ============================================================================ +19:12:35 [ 1] [ 4] [0200] +19:12:35 [ 2] [ 16] [1808931300023296] +19:12:35 [ 3] [ 6] [301000] +19:12:35 [ 4] [ 12] [000000000000] +19:12:35 [ 7] [ 10] [0320191230] +19:12:35 [ 11] [ 6] [834651] +19:12:35 [ 12] [ 6] [191230] +19:12:35 [ 13] [ 4] [0320] +19:12:35 [ 15] [ 4] [0320] +19:12:35 [ 18] [ 4] [6011] +19:12:35 [ 22] [ 3] [900] +19:12:35 [ 25] [ 2] [02] +19:12:35 [ 28] [ 9] [D00000000] +19:12:35 [ 32] [ 6] [621354] +19:12:35 [ 35] [ 27] [1808931300023296=1803500035] +19:12:35 [ 37] [ 12] [507903505883] +19:12:35 [ 41] [ 8] [09000700] +19:12:35 [ 42] [ 15] [NATIVE ] +19:12:35 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +19:12:35 [ 49] [ 3] [418] +19:12:35 [ 52] [ 16] [DC51A3F60A2A1C72] +19:12:35 ============================================================================ +19:12:35 + + +waiting on router queue for slot.... +19:12:35 Sending to : +19:12:35 ============================================================================ +19:12:35 ============================================================================ +19:12:35 Slot Id : <498> +19:12:35 Transaction Type : REQUEST +19:12:35 Received From : +19:12:35 ============================================================================ +19:12:35 FNo. Len. Field Value +19:12:35 ============================================================================ +19:12:35 [ 1] [ 4] [0200] +19:12:35 [ 2] [ 16] [1808931300023296] +19:12:35 [ 3] [ 6] [301000] +19:12:35 [ 4] [ 12] [000000000000] +19:12:35 [ 7] [ 10] [0320191230] +19:12:35 [ 11] [ 6] [834651] +19:12:35 [ 12] [ 6] [191230] +19:12:35 [ 13] [ 4] [0320] +19:12:35 [ 15] [ 4] [0320] +19:12:35 [ 18] [ 4] [6011] +19:12:35 [ 22] [ 3] [900] +19:12:35 [ 25] [ 2] [02] +19:12:35 [ 28] [ 9] [D00000000] +19:12:35 [ 32] [ 6] [621354] +19:12:35 [ 35] [ 27] [1808931300023296=1803500035] +19:12:35 [ 37] [ 12] [507903505883] +19:12:35 [ 41] [ 8] [09000700] +19:12:35 [ 42] [ 15] [NATIVE ] +19:12:35 [ 43] [ 40] [Thongkhankham Branch ChanthaboulyLAO] +19:12:35 [ 49] [ 3] [418] +19:12:35 [ 52] [ 16] [F4637D6F55C5A6FB] +19:12:35 ============================================================================ +19:12:35 + + +waiting on router queue for slot.... +19:12:35 Sending to : <2> +19:12:35 ============================================================================ +19:12:35 ============================================================================ +19:12:35 Slot Id : <1> +19:12:35 Transaction Type : REQUEST +19:12:35 Received From : +19:12:35 ============================================================================ +19:12:35 FNo. Len. Field Value +19:12:35 ============================================================================ +19:12:35 [ 1] [ 4] [0200] +19:12:35 [ 2] [ 16] [1808931000024230] +19:12:35 [ 3] [ 6] [011000] +19:12:35 [ 4] [ 12] [000010000000] +19:12:35 [ 7] [ 10] [0320191230] +19:12:35 [ 11] [ 6] [834655] +19:12:35 [ 12] [ 6] [191230] +19:12:35 [ 13] [ 4] [0320] +19:12:35 [ 15] [ 4] [0320] +19:12:35 [ 18] [ 4] [6011] +19:12:35 [ 22] [ 3] [900] +19:12:35 [ 25] [ 2] [02] +19:12:35 [ 28] [ 9] [D00002000] +19:12:35 [ 32] [ 6] [621354] +19:12:35 [ 35] [ 27] [1808931000024230=1803500162] +19:12:35 [ 37] [ 12] [507902606527] +19:12:35 [ 41] [ 8] [05004300] +19:12:35 [ 42] [ 15] [NATIVE ] +19:12:35 [ 43] [ 40] [Ka deng office LuangprabangLAO] +19:12:35 [ 49] [ 3] [418] +19:12:35 [ 52] [ 16] [2FF83F3470282849] +19:12:35 ============================================================================ +19:12:35 + + +waiting on router queue for slot.... +19:12:35 Sending to : +19:12:35 ============================================================================ +19:12:35 ============================================================================ +19:12:35 Slot Id : <1> +19:12:35 Transaction Type : REQUEST +19:12:35 Received From : +19:12:35 ============================================================================ +19:12:35 FNo. Len. Field Value +19:12:35 ============================================================================ +19:12:35 [ 1] [ 4] [0200] +19:12:35 [ 2] [ 16] [1808931000024230] +19:12:35 [ 3] [ 6] [011000] +19:12:35 [ 4] [ 12] [000010000000] +19:12:35 [ 7] [ 10] [0320191230] +19:12:35 [ 11] [ 6] [834655] +19:12:35 [ 12] [ 6] [191230] +19:12:35 [ 13] [ 4] [0320] +19:12:35 [ 15] [ 4] [0320] +19:12:35 [ 18] [ 4] [6011] +19:12:35 [ 22] [ 3] [900] +19:12:35 [ 25] [ 2] [02] +19:12:35 [ 28] [ 9] [D00002000] +19:12:35 [ 32] [ 6] [621354] +19:12:35 [ 35] [ 27] [1808931000024230=1803500162] +19:12:35 [ 37] [ 12] [507902606527] +19:12:35 [ 41] [ 8] [05004300] +19:12:35 [ 42] [ 15] [NATIVE ] +19:12:35 [ 43] [ 40] [Ka deng office LuangprabangLAO] +19:12:35 [ 49] [ 3] [418] +19:12:35 [ 52] [ 16] [2176C7B6B1A466FD] +19:12:35 ============================================================================ +19:12:35 + + +waiting on router queue for slot.... +19:12:35 Sending to : <2> +19:12:35 ============================================================================ +19:12:36 ============================================================================ +19:12:36 Slot Id : <493> +19:12:36 Transaction Type : RESPONSE +19:12:36 Received From : +19:12:36 ============================================================================ +19:12:36 FNo. Len. Field Value +19:12:36 ============================================================================ +19:12:36 [ 1] [ 4] [0210] +19:12:36 [ 2] [ 16] [1808930600035745] +19:12:36 [ 3] [ 6] [011000] +19:12:36 [ 4] [ 12] [000010000000] +19:12:36 [ 6] [ 12] [000010000000] +19:12:36 [ 7] [ 10] [0320191250] +19:12:36 [ 11] [ 6] [211031] +19:12:36 [ 12] [ 6] [191315] +19:12:36 [ 13] [ 4] [0320] +19:12:36 [ 14] [ 4] [1803] +19:12:36 [ 18] [ 4] [6011] +19:12:36 [ 19] [ 3] [418] +19:12:36 [ 22] [ 3] [021] +19:12:36 [ 32] [ 6] [198901] +19:12:36 [ 35] [ 27] [1808930600035745=1803500879] +19:12:36 [ 37] [ 12] [507919211031] +19:12:36 [ 38] [ 6] [211031] +19:12:36 [ 39] [ 2] [00] +19:12:36 [ 41] [ 8] [01529009] +19:12:36 [ 49] [ 3] [418] +19:12:36 [ 52] [ 16] [4C4977F133B0030E] +19:12:36 [ 54] [ 20] [1001418C000012768000] +19:12:36 ============================================================================ +19:12:36 Calculate Source COMM Id = 5 +19:12:36 ============================================================================ +19:12:36 + + +waiting on router queue for slot.... +19:12:38 ============================================================================ +19:12:38 Slot Id : <498> +19:12:38 Transaction Type : RESPONSE +19:12:38 Received From : +19:12:38 ============================================================================ +19:12:38 FNo. Len. Field Value +19:12:38 ============================================================================ +19:12:38 [ 1] [ 4] [0210] +19:12:38 [ 2] [ 16] [1808931300023296] +19:12:38 [ 3] [ 6] [301000] +19:12:38 [ 7] [ 10] [0320191230] +19:12:38 [ 11] [ 6] [834651] +19:12:38 [ 12] [ 6] [191230] +19:12:38 [ 13] [ 4] [0320] +19:12:38 [ 14] [ 4] [1803] +19:12:38 [ 19] [ 3] [418] +19:12:38 [ 32] [ 6] [621354] +19:12:38 [ 37] [ 12] [507903505883] +19:12:38 [ 38] [ 6] [834651] +19:12:38 [ 39] [ 2] [00] +19:12:38 [ 41] [ 8] [09000700] +19:12:38 [ 49] [ 3] [418] +19:12:38 [ 52] [ 16] [F4637D6F55C5A6FB] +19:12:38 [ 54] [ 20] [1002418C000013905600] +19:12:38 ============================================================================ +19:12:38 Sending to : +19:12:38 ============================================================================ +19:12:38 + + +waiting on router queue for slot.... +19:12:39 ============================================================================ +19:12:39 Slot Id : <498> +19:12:39 Transaction Type : RESPONSE +19:12:39 Received From : +19:12:39 ============================================================================ +19:12:39 FNo. Len. Field Value +19:12:39 ============================================================================ +19:12:39 [ 1] [ 4] [0210] +19:12:39 [ 2] [ 16] [1808931300023296] +19:12:39 [ 3] [ 6] [301000] +19:12:39 [ 7] [ 10] [0320191230] +19:12:39 [ 11] [ 6] [834651] +19:12:39 [ 12] [ 6] [191230] +19:12:39 [ 13] [ 4] [0320] +19:12:39 [ 14] [ 4] [1803] +19:12:39 [ 19] [ 3] [418] +19:12:39 [ 32] [ 6] [621354] +19:12:39 [ 37] [ 12] [507903505883] +19:12:39 [ 38] [ 6] [834651] +19:12:39 [ 39] [ 2] [00] +19:12:39 [ 41] [ 8] [09000700] +19:12:39 [ 49] [ 3] [418] +19:12:39 [ 52] [ 16] [F4637D6F55C5A6FB] +19:12:39 [ 54] [ 20] [1002418C000013905600] +19:12:39 ============================================================================ +19:12:39 Calculate Source COMM Id = 0 +19:12:39 ============================================================================ +19:12:39 + + +waiting on router queue for slot.... +19:12:41 ============================================================================ +19:12:41 Slot Id : <473> +19:12:41 Transaction Type : REQUEST +19:12:41 Received From : +19:12:41 ============================================================================ +19:12:41 FNo. Len. Field Value +19:12:41 ============================================================================ +19:12:41 [ 1] [ 4] [0800] +19:12:41 [ 7] [ 10] [0321022429] +19:12:41 [ 11] [ 6] [192429] +19:12:41 [ 37] [ 12] [57919192429] +19:12:41 [ 70] [ 3] [301] +19:12:41 ============================================================================ +19:12:41 + + +waiting on router queue for slot.... +19:12:41 Sending to : +19:12:41 ============================================================================ +19:12:41 ============================================================================ +19:12:41 Slot Id : <473> +19:12:41 Transaction Type : RESPONSE +19:12:41 Received From : +19:12:41 ============================================================================ +19:12:41 FNo. Len. Field Value +19:12:41 ============================================================================ +19:12:41 [ 1] [ 4] [0810] +19:12:41 [ 7] [ 10] [0321022429] +19:12:41 [ 11] [ 6] [192429] +19:12:41 [ 37] [ 12] [579191924290] +19:12:41 [ 39] [ 2] [00] +19:12:41 [ 70] [ 3] [810] +19:12:41 ============================================================================ +19:12:41 Calculate Source COMM Id = 6 +19:12:41 ============================================================================ +19:12:41 + + +waiting on router queue for slot.... +19:12:41 ============================================================================ +19:12:41 Slot Id : <1> +19:12:41 Transaction Type : RESPONSE +19:12:41 Received From : +19:12:41 ============================================================================ +19:12:41 FNo. Len. Field Value +19:12:41 ============================================================================ +19:12:41 [ 1] [ 4] [0210] +19:12:41 [ 2] [ 16] [1808931000024230] +19:12:41 [ 3] [ 6] [011000] +19:12:41 [ 4] [ 12] [000010000000] +19:12:41 [ 6] [ 12] [000010000000] +19:12:41 [ 7] [ 10] [0320191230] +19:12:41 [ 11] [ 6] [834655] +19:12:41 [ 12] [ 6] [191230] +19:12:41 [ 13] [ 4] [0320] +19:12:41 [ 18] [ 4] [6011] +19:12:41 [ 19] [ 3] [418] +19:12:41 [ 22] [ 3] [021] +19:12:41 [ 32] [ 6] [621354] +19:12:41 [ 35] [ 27] [1808931000024230=1803500162] +19:12:41 [ 37] [ 12] [507902606527] +19:12:41 [ 38] [ 6] [834655] +19:12:41 [ 39] [ 2] [00] +19:12:41 [ 41] [ 8] [05004300] +19:12:41 [ 49] [ 3] [418] +19:12:41 [ 52] [ 16] [2176C7B6B1A466FD] +19:12:41 [ 54] [ 20] [1001418C000014027300] +19:12:41 ============================================================================ +19:12:41 Sending to : +19:12:41 ============================================================================ +19:12:41 + + +waiting on router queue for slot.... +19:12:42 ============================================================================ +19:12:42 Slot Id : <1> +19:12:42 Transaction Type : RESPONSE +19:12:42 Received From : +19:12:42 ============================================================================ +19:12:42 FNo. Len. Field Value +19:12:42 ============================================================================ +19:12:42 [ 1] [ 4] [0210] +19:12:42 [ 2] [ 16] [1808931000024230] +19:12:42 [ 3] [ 6] [011000] +19:12:42 [ 4] [ 12] [000010000000] +19:12:42 [ 6] [ 12] [000010000000] +19:12:42 [ 7] [ 10] [0320191230] +19:12:42 [ 11] [ 6] [834655] +19:12:42 [ 12] [ 6] [191230] +19:12:42 [ 13] [ 4] [0320] +19:12:42 [ 18] [ 4] [6011] +19:12:42 [ 19] [ 3] [418] +19:12:42 [ 22] [ 3] [021] +19:12:42 [ 32] [ 6] [621354] +19:12:42 [ 35] [ 27] [1808931000024230=1803500162] +19:12:42 [ 37] [ 12] [507902606527] +19:12:42 [ 38] [ 6] [834655] +19:12:42 [ 39] [ 2] [00] +19:12:42 [ 41] [ 8] [05004300] +19:12:42 [ 49] [ 3] [418] +19:12:42 [ 52] [ 16] [2176C7B6B1A466FD] +19:12:42 [ 54] [ 20] [1001418C000014027300] +19:12:42 ============================================================================ +19:12:42 Calculate Source COMM Id = 0 +19:12:42 ============================================================================ +19:12:42 + + +waiting on router queue for slot.... +19:12:49 ============================================================================ +19:12:49 Slot Id : <476> +19:12:49 Transaction Type : REQUEST +19:12:49 Received From : +19:12:49 ============================================================================ +19:12:49 FNo. Len. Field Value +19:12:49 ============================================================================ +19:12:49 [ 1] [ 4] [0800] +19:12:49 [ 7] [ 10] [0320121155] +19:12:49 [ 11] [ 6] [157889] +19:12:49 [ 70] [ 3] [301] +19:12:49 ============================================================================ +19:12:49 + + +waiting on router queue for slot.... +19:12:49 Sending to : +19:12:49 ============================================================================ +19:12:49 ============================================================================ +19:12:49 Slot Id : <476> +19:12:49 Transaction Type : RESPONSE +19:12:49 Received From : +19:12:49 ============================================================================ +19:12:49 FNo. Len. Field Value +19:12:49 ============================================================================ +19:12:49 [ 1] [ 4] [0810] +19:12:49 [ 7] [ 10] [0320121155] +19:12:49 [ 11] [ 6] [157889] +19:12:49 [ 39] [ 2] [00] +19:12:49 [ 70] [ 3] [301] +19:12:49 ============================================================================ +19:12:49 Calculate Source COMM Id = 2 +19:12:49 ============================================================================ +19:12:49 + + +waiting on router queue for slot.... +19:12:49 ============================================================================ +19:12:49 Slot Id : <489> +19:12:49 Transaction Type : REQUEST +19:12:49 Received From : +19:12:49 ============================================================================ +19:12:49 FNo. Len. Field Value +19:12:49 ============================================================================ +19:12:49 [ 1] [ 4] [0800] +19:12:49 [ 2] [ 5] [02531] +19:12:49 [ 3] [ 6] [579198] +19:12:49 [ 7] [ 10] [0320121249] +19:12:49 [ 11] [ 6] [807527] +19:12:49 [ 15] [ 10] [0320121249] +19:12:49 [ 37] [ 11] [57919807527] +19:12:49 [ 70] [ 3] [001] +19:12:49 ============================================================================ +19:12:49 + + +waiting on router queue for slot.... +19:12:49 ============================================================================ +19:12:49 Slot Id : <489> +19:12:49 Transaction Type : RESPONSE +19:12:49 Received From : +19:12:49 ============================================================================ +19:12:49 FNo. Len. Field Value +19:12:49 ============================================================================ +19:12:49 [ 1] [ 4] [0810] +19:12:49 [ 7] [ 10] [0320121249] +19:12:49 [ 11] [ 6] [807527] +19:12:49 [ 15] [ 4] [0320] +19:12:49 [ 37] [ 12] [57919807527] +19:12:49 [ 39] [ 2] [00] +19:12:49 [ 70] [ 3] [001] +19:12:49 ============================================================================ +19:12:49 Sending to : +19:12:49 ============================================================================ +19:12:49 + + +waiting on router queue for slot.... +19:13:04 ============================================================================ +19:13:04 Slot Id : <477> +19:13:04 Transaction Type : REQUEST +19:13:04 Received From : +19:13:04 ============================================================================ +19:13:04 FNo. Len. Field Value +19:13:04 ============================================================================ +19:13:04 [ 1] [ 4] [0800] +19:13:04 [ 7] [ 10] [0320121210] +19:13:04 [ 11] [ 6] [157890] +19:13:04 [ 70] [ 3] [301] +19:13:04 ============================================================================ +19:13:04 + + +waiting on router queue for slot.... +19:13:04 Sending to : +19:13:04 ============================================================================ +19:13:04 ============================================================================ +19:13:04 Slot Id : <477> +19:13:04 Transaction Type : RESPONSE +19:13:04 Received From : +19:13:04 ============================================================================ +19:13:04 FNo. Len. Field Value +19:13:04 ============================================================================ +19:13:04 [ 1] [ 4] [0810] +19:13:04 [ 7] [ 10] [0320121210] +19:13:04 [ 11] [ 6] [157890] +19:13:04 [ 39] [ 2] [00] +19:13:04 [ 70] [ 3] [301] +19:13:04 ============================================================================ +19:13:04 Calculate Source COMM Id = 2 +19:13:04 ============================================================================ +19:13:04 + + +waiting on router queue for slot.... +19:13:15 ============================================================================ +19:13:15 Slot Id : <485> +19:13:15 Transaction Type : REQUEST +19:13:15 Received From : +19:13:15 ============================================================================ +19:13:15 FNo. Len. Field Value +19:13:15 ============================================================================ +19:13:15 [ 1] [ 4] [0800] +19:13:15 [ 7] [ 10] [0320121221] +19:13:15 [ 11] [ 6] [157891] +19:13:15 [ 70] [ 3] [301] +19:13:15 ============================================================================ +19:13:15 + + +waiting on router queue for slot.... +19:13:15 Sending to : +19:13:15 ============================================================================ +19:13:15 ============================================================================ +19:13:15 Slot Id : <485> +19:13:15 Transaction Type : RESPONSE +19:13:15 Received From : +19:13:15 ============================================================================ +19:13:15 FNo. Len. Field Value +19:13:15 ============================================================================ +19:13:15 [ 1] [ 4] [0810] +19:13:15 [ 7] [ 10] [0320121221] +19:13:15 [ 11] [ 6] [157891] +19:13:15 [ 39] [ 2] [00] +19:13:15 [ 70] [ 3] [301] +19:13:15 ============================================================================ +19:13:15 Calculate Source COMM Id = 2 +19:13:15 ============================================================================ +19:13:15 + + +waiting on router queue for slot.... +19:13:26 ============================================================================ +19:13:26 Slot Id : <14> +19:13:26 Transaction Type : REQUEST +19:13:26 Received From : +19:13:26 ============================================================================ +19:13:26 FNo. Len. Field Value +19:13:26 ============================================================================ +19:13:26 [ 1] [ 4] [0800] +19:13:26 [ 7] [ 10] [0320121232] +19:13:26 [ 11] [ 6] [157892] +19:13:26 [ 70] [ 3] [301] +19:13:26 ============================================================================ +19:13:26 + + +waiting on router queue for slot.... +19:13:26 Sending to : +19:13:26 ============================================================================ +19:13:26 ============================================================================ +19:13:26 Slot Id : <14> +19:13:26 Transaction Type : RESPONSE +19:13:26 Received From : +19:13:26 ============================================================================ +19:13:26 FNo. Len. Field Value +19:13:26 ============================================================================ +19:13:26 [ 1] [ 4] [0810] +19:13:26 [ 7] [ 10] [0320121232] +19:13:26 [ 11] [ 6] [157892] +19:13:26 [ 39] [ 2] [00] +19:13:26 [ 70] [ 3] [301] +19:13:26 ============================================================================ +19:13:26 Calculate Source COMM Id = 2 +19:13:26 ============================================================================ +19:13:26 + + +waiting on router queue for slot.... +19:13:37 ============================================================================ +19:13:37 Slot Id : <483> +19:13:37 Transaction Type : REQUEST +19:13:37 Received From : +19:13:37 ============================================================================ +19:13:37 FNo. Len. Field Value +19:13:37 ============================================================================ +19:13:37 [ 1] [ 4] [0800] +19:13:37 [ 7] [ 10] [0320121243] +19:13:37 [ 11] [ 6] [157893] +19:13:37 [ 70] [ 3] [301] +19:13:37 ============================================================================ +19:13:37 + + +waiting on router queue for slot.... +19:13:37 Sending to : +19:13:37 ============================================================================ +19:13:37 ============================================================================ +19:13:37 Slot Id : <483> +19:13:37 Transaction Type : RESPONSE +19:13:37 Received From : +19:13:37 ============================================================================ +19:13:37 FNo. Len. Field Value +19:13:37 ============================================================================ +19:13:37 [ 1] [ 4] [0810] +19:13:37 [ 7] [ 10] [0320121243] +19:13:37 [ 11] [ 6] [157893] +19:13:37 [ 39] [ 2] [00] +19:13:37 [ 70] [ 3] [301] +19:13:37 ============================================================================ +19:13:37 Calculate Source COMM Id = 2 +19:13:37 ============================================================================ +19:13:37 + + +waiting on router queue for slot.... +19:13:43 ============================================================================ +19:13:43 Slot Id : <486> +19:13:43 Transaction Type : REQUEST +19:13:43 Received From : +19:13:43 ============================================================================ +19:13:43 FNo. Len. Field Value +19:13:43 ============================================================================ +19:13:43 [ 1] [ 4] [0200] +19:13:43 [ 2] [ 16] [6213541000163363] +19:13:43 [ 3] [ 6] [010000] +19:13:43 [ 4] [ 12] [000015000000] +19:13:43 [ 7] [ 10] [0320191133] +19:13:43 [ 11] [ 6] [955862] +19:13:43 [ 12] [ 6] [191133] +19:13:43 [ 13] [ 4] [0320] +19:13:43 [ 15] [ 4] [0320] +19:13:43 [ 18] [ 4] [6011] +19:13:43 [ 19] [ 3] [418] +19:13:43 [ 22] [ 3] [021] +19:13:43 [ 25] [ 2] [01] +19:13:43 [ 28] [ 9] [D00002000] +19:13:43 [ 32] [ 6] [668899] +19:13:43 [ 35] [ 32] [6213541000163363=491212016336323] +19:13:43 [ 37] [ 12] [507902475776] +19:13:43 [ 41] [ 8] [03020032] +19:13:43 [ 42] [ 15] [APT ] +19:13:43 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:13:43 [ 49] [ 3] [418] +19:13:43 [ 52] [ 16] [50B348F14BEFF14C] +19:13:43 ============================================================================ +19:13:43 + + +waiting on router queue for slot.... +19:13:43 Sending to : +19:13:43 ============================================================================ +19:13:43 Sending to : +19:13:43 ============================================================================ +19:13:43 ============================================================================ +19:13:43 Slot Id : <486> +19:13:43 Transaction Type : REQUEST +19:13:43 Received From : +19:13:43 ============================================================================ +19:13:43 FNo. Len. Field Value +19:13:43 ============================================================================ +19:13:43 [ 1] [ 4] [0200] +19:13:43 [ 2] [ 16] [6213541000163363] +19:13:43 [ 3] [ 6] [010000] +19:13:43 [ 4] [ 12] [000015000000] +19:13:43 [ 7] [ 10] [0320191133] +19:13:43 [ 11] [ 6] [955862] +19:13:43 [ 12] [ 6] [191133] +19:13:43 [ 13] [ 4] [0320] +19:13:43 [ 15] [ 4] [0320] +19:13:43 [ 18] [ 4] [6011] +19:13:43 [ 19] [ 3] [418] +19:13:43 [ 22] [ 3] [021] +19:13:43 [ 25] [ 2] [01] +19:13:43 [ 28] [ 9] [D00002000] +19:13:43 [ 32] [ 6] [668899] +19:13:43 [ 35] [ 32] [6213541000163363=491212016336323] +19:13:43 [ 37] [ 12] [507902475776] +19:13:43 [ 41] [ 8] [03020032] +19:13:43 [ 42] [ 15] [APT ] +19:13:43 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:13:43 [ 49] [ 3] [418] +19:13:43 [ 52] [ 16] [50B348F14BEFF14C] +19:13:43 ============================================================================ +19:13:43 + + +waiting on router queue for slot.... +19:13:43 Sending to : +19:13:43 ============================================================================ +19:13:43 ============================================================================ +19:13:43 Slot Id : <486> +19:13:43 Transaction Type : REQUEST +19:13:43 Received From : +19:13:43 ============================================================================ +19:13:43 FNo. Len. Field Value +19:13:43 ============================================================================ +19:13:43 [ 1] [ 4] [0200] +19:13:43 [ 2] [ 16] [6213541000163363] +19:13:43 [ 3] [ 6] [010000] +19:13:43 [ 4] [ 12] [000015000000] +19:13:43 [ 7] [ 10] [0320191133] +19:13:43 [ 11] [ 6] [955862] +19:13:43 [ 12] [ 6] [191133] +19:13:43 [ 13] [ 4] [0320] +19:13:43 [ 15] [ 4] [0320] +19:13:43 [ 18] [ 4] [6011] +19:13:43 [ 19] [ 3] [418] +19:13:43 [ 22] [ 3] [021] +19:13:43 [ 25] [ 2] [01] +19:13:43 [ 28] [ 9] [D00002000] +19:13:43 [ 32] [ 6] [668899] +19:13:43 [ 35] [ 32] [6213541000163363=491212016336323] +19:13:43 [ 37] [ 12] [507902475776] +19:13:43 [ 41] [ 8] [03020032] +19:13:43 [ 42] [ 15] [APT ] +19:13:43 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:13:43 [ 49] [ 3] [418] +19:13:43 [ 52] [ 16] [98FF777124FE4A5F] +19:13:43 ============================================================================ +19:13:43 + + +waiting on router queue for slot.... +19:13:43 Sending to : <0> +19:13:43 ============================================================================ +19:13:43 ============================================================================ +19:13:43 Slot Id : <486> +19:13:43 Transaction Type : RESPONSE +19:13:43 Received From : +19:13:43 ============================================================================ +19:13:43 FNo. Len. Field Value +19:13:43 ============================================================================ +19:13:43 [ 1] [ 4] [0210] +19:13:43 [ 2] [ 16] [6213541000163363] +19:13:43 [ 3] [ 6] [010000] +19:13:43 [ 4] [ 12] [000015000000] +19:13:43 [ 7] [ 10] [0320191133] +19:13:43 [ 11] [ 6] [955862] +19:13:43 [ 12] [ 6] [191133] +19:13:43 [ 13] [ 4] [0320] +19:13:43 [ 15] [ 4] [0320] +19:13:43 [ 18] [ 4] [6011] +19:13:43 [ 19] [ 3] [418] +19:13:43 [ 22] [ 3] [021] +19:13:43 [ 32] [ 6] [668899] +19:13:43 [ 35] [ 32] [6213541000163363=491212016336323] +19:13:43 [ 37] [ 12] [507902475776] +19:13:43 [ 39] [ 2] [05] +19:13:43 [ 41] [ 8] [03020032] +19:13:43 [ 49] [ 3] [418] +19:13:43 ============================================================================ +19:13:43 Sending to : +19:13:43 ============================================================================ +19:13:43 + + +waiting on router queue for slot.... +19:13:44 ============================================================================ +19:13:44 Slot Id : <486> +19:13:44 Transaction Type : RESPONSE +19:13:44 Received From : +19:13:44 ============================================================================ +19:13:44 FNo. Len. Field Value +19:13:44 ============================================================================ +19:13:44 [ 1] [ 4] [0210] +19:13:44 [ 2] [ 16] [6213541000163363] +19:13:44 [ 3] [ 6] [010000] +19:13:44 [ 4] [ 12] [000015000000] +19:13:44 [ 7] [ 10] [0320191133] +19:13:44 [ 11] [ 6] [955862] +19:13:44 [ 12] [ 6] [191133] +19:13:44 [ 13] [ 4] [0320] +19:13:44 [ 15] [ 4] [0320] +19:13:44 [ 18] [ 4] [6011] +19:13:44 [ 19] [ 3] [418] +19:13:44 [ 22] [ 3] [021] +19:13:44 [ 32] [ 6] [668899] +19:13:44 [ 35] [ 32] [6213541000163363=491212016336323] +19:13:44 [ 37] [ 12] [507902475776] +19:13:44 [ 39] [ 2] [05] +19:13:44 [ 41] [ 8] [03020032] +19:13:44 [ 49] [ 3] [418] +19:13:44 ============================================================================ +19:13:44 Calculate Source COMM Id = 4 +19:13:44 ============================================================================ +19:13:44 + + +waiting on router queue for slot.... +19:13:46 ============================================================================ +19:13:46 Slot Id : <474> +19:13:46 Transaction Type : REQUEST +19:13:46 Received From : +19:13:46 ============================================================================ +19:13:46 FNo. Len. Field Value +19:13:46 ============================================================================ +19:13:46 [ 1] [ 4] [0800] +19:13:46 [ 7] [ 10] [0321022534] +19:13:46 [ 11] [ 6] [192534] +19:13:46 [ 37] [ 12] [57919192534] +19:13:46 [ 70] [ 3] [301] +19:13:46 ============================================================================ +19:13:46 + + +waiting on router queue for slot.... +19:13:46 Sending to : +19:13:46 ============================================================================ +19:13:46 ============================================================================ +19:13:46 Slot Id : <474> +19:13:46 Transaction Type : RESPONSE +19:13:46 Received From : +19:13:46 ============================================================================ +19:13:46 FNo. Len. Field Value +19:13:46 ============================================================================ +19:13:46 [ 1] [ 4] [0810] +19:13:46 [ 7] [ 10] [0321022534] +19:13:46 [ 11] [ 6] [192534] +19:13:46 [ 37] [ 12] [579191925340] +19:13:46 [ 39] [ 2] [00] +19:13:46 [ 70] [ 3] [810] +19:13:46 ============================================================================ +19:13:46 Calculate Source COMM Id = 6 +19:13:46 ============================================================================ +19:13:46 + + +waiting on router queue for slot.... +19:13:51 ============================================================================ +19:13:51 Slot Id : <472> +19:13:51 Transaction Type : REQUEST +19:13:51 Received From : +19:13:51 ============================================================================ +19:13:51 FNo. Len. Field Value +19:13:51 ============================================================================ +19:13:51 [ 1] [ 4] [0800] +19:13:51 [ 2] [ 5] [02531] +19:13:51 [ 3] [ 6] [579198] +19:13:51 [ 7] [ 10] [0320121351] +19:13:51 [ 11] [ 6] [807528] +19:13:51 [ 15] [ 10] [0320121351] +19:13:51 [ 37] [ 11] [57919807528] +19:13:51 [ 70] [ 3] [001] +19:13:51 ============================================================================ +19:13:51 + + +waiting on router queue for slot.... +19:13:51 ============================================================================ +19:13:51 Slot Id : <472> +19:13:51 Transaction Type : RESPONSE +19:13:51 Received From : +19:13:51 ============================================================================ +19:13:51 FNo. Len. Field Value +19:13:51 ============================================================================ +19:13:51 [ 1] [ 4] [0810] +19:13:51 [ 7] [ 10] [0320121351] +19:13:51 [ 11] [ 6] [807528] +19:13:51 [ 15] [ 4] [0320] +19:13:51 [ 37] [ 12] [57919807528] +19:13:51 [ 39] [ 2] [00] +19:13:51 [ 70] [ 3] [001] +19:13:51 ============================================================================ +19:13:51 Sending to : +19:13:51 ============================================================================ +19:13:51 + + +waiting on router queue for slot.... +19:13:52 ============================================================================ +19:13:52 Slot Id : <6> +19:13:52 Transaction Type : REQUEST +19:13:52 Received From : +19:13:52 ============================================================================ +19:13:52 FNo. Len. Field Value +19:13:52 ============================================================================ +19:13:52 [ 1] [ 4] [0800] +19:13:52 [ 7] [ 10] [0320121259] +19:13:52 [ 11] [ 6] [157894] +19:13:52 [ 70] [ 3] [301] +19:13:52 ============================================================================ +19:13:52 + + +waiting on router queue for slot.... +19:13:52 Sending to : +19:13:52 ============================================================================ +19:13:52 ============================================================================ +19:13:52 Slot Id : <6> +19:13:52 Transaction Type : RESPONSE +19:13:52 Received From : +19:13:52 ============================================================================ +19:13:52 FNo. Len. Field Value +19:13:52 ============================================================================ +19:13:52 [ 1] [ 4] [0810] +19:13:52 [ 7] [ 10] [0320121259] +19:13:52 [ 11] [ 6] [157894] +19:13:52 [ 39] [ 2] [00] +19:13:52 [ 70] [ 3] [301] +19:13:52 ============================================================================ +19:13:52 Calculate Source COMM Id = 2 +19:13:52 ============================================================================ +19:13:52 + + +waiting on router queue for slot.... +19:14:00 ============================================================================ +19:14:00 Slot Id : <492> +19:14:00 Transaction Type : REQUEST +19:14:00 Received From : +19:14:00 ============================================================================ +19:14:00 FNo. Len. Field Value +19:14:00 ============================================================================ +19:14:00 [ 1] [ 4] [0200] +19:14:00 [ 2] [ 16] [6213544001206330] +19:14:00 [ 3] [ 6] [011000] +19:14:00 [ 4] [ 12] [000200000000] +19:14:00 [ 7] [ 10] [0320191420] +19:14:00 [ 11] [ 6] [211048] +19:14:00 [ 12] [ 6] [191445] +19:14:00 [ 13] [ 4] [0320] +19:14:00 [ 14] [ 4] [4912] +19:14:00 [ 15] [ 4] [0320] +19:14:00 [ 18] [ 4] [6011] +19:14:00 [ 19] [ 3] [418] +19:14:00 [ 22] [ 3] [021] +19:14:00 [ 25] [ 2] [01] +19:14:00 [ 28] [ 9] [D00002000] +19:14:00 [ 32] [ 6] [198901] +19:14:00 [ 35] [ 32] [6213544001206330=491212010633541] +19:14:00 [ 37] [ 12] [507919211048] +19:14:00 [ 41] [ 8] [01529009] +19:14:00 [ 42] [ 15] [000000041529009] +19:14:00 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +19:14:00 [ 49] [ 3] [418] +19:14:00 [ 52] [ 16] [12664D456E36B629] +19:14:00 ============================================================================ +19:14:00 + + +waiting on router queue for slot.... +19:14:00 Sending to : +19:14:00 ============================================================================ +19:14:00 Sending to : +19:14:00 ============================================================================ +19:14:01 ============================================================================ +19:14:01 Slot Id : <492> +19:14:01 Transaction Type : REQUEST +19:14:01 Received From : +19:14:01 ============================================================================ +19:14:01 FNo. Len. Field Value +19:14:01 ============================================================================ +19:14:01 [ 1] [ 4] [0200] +19:14:01 [ 2] [ 16] [6213544001206330] +19:14:01 [ 3] [ 6] [011000] +19:14:01 [ 4] [ 12] [000200000000] +19:14:01 [ 7] [ 10] [0320191420] +19:14:01 [ 11] [ 6] [211048] +19:14:01 [ 12] [ 6] [191445] +19:14:01 [ 13] [ 4] [0320] +19:14:01 [ 14] [ 4] [4912] +19:14:01 [ 15] [ 4] [0320] +19:14:01 [ 18] [ 4] [6011] +19:14:01 [ 19] [ 3] [418] +19:14:01 [ 22] [ 3] [021] +19:14:01 [ 25] [ 2] [01] +19:14:01 [ 28] [ 9] [D00002000] +19:14:01 [ 32] [ 6] [198901] +19:14:01 [ 35] [ 32] [6213544001206330=491212010633541] +19:14:01 [ 37] [ 12] [507919211048] +19:14:01 [ 41] [ 8] [01529009] +19:14:01 [ 42] [ 15] [000000041529009] +19:14:01 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +19:14:01 [ 49] [ 3] [418] +19:14:01 [ 52] [ 16] [12664D456E36B629] +19:14:01 ============================================================================ +19:14:01 + + +waiting on router queue for slot.... +19:14:01 Sending to : +19:14:01 ============================================================================ +19:14:01 ============================================================================ +19:14:01 Slot Id : <492> +19:14:01 Transaction Type : REQUEST +19:14:01 Received From : +19:14:01 ============================================================================ +19:14:01 FNo. Len. Field Value +19:14:01 ============================================================================ +19:14:01 [ 1] [ 4] [0200] +19:14:01 [ 2] [ 16] [6213544001206330] +19:14:01 [ 3] [ 6] [011000] +19:14:01 [ 4] [ 12] [000200000000] +19:14:01 [ 7] [ 10] [0320191420] +19:14:01 [ 11] [ 6] [211048] +19:14:01 [ 12] [ 6] [191445] +19:14:01 [ 13] [ 4] [0320] +19:14:01 [ 14] [ 4] [4912] +19:14:01 [ 15] [ 4] [0320] +19:14:01 [ 18] [ 4] [6011] +19:14:01 [ 19] [ 3] [418] +19:14:01 [ 22] [ 3] [021] +19:14:01 [ 25] [ 2] [01] +19:14:01 [ 28] [ 9] [D00002000] +19:14:01 [ 32] [ 6] [198901] +19:14:01 [ 35] [ 32] [6213544001206330=491212010633541] +19:14:01 [ 37] [ 12] [507919211048] +19:14:01 [ 41] [ 8] [01529009] +19:14:01 [ 42] [ 15] [000000041529009] +19:14:01 [ 43] [ 40] [JDB ATM SOKPALAUNG VN ] +19:14:01 [ 49] [ 3] [418] +19:14:01 [ 52] [ 16] [C0AFDD9668900301] +19:14:01 ============================================================================ +19:14:01 + + +waiting on router queue for slot.... +19:14:01 Sending to : <0> +19:14:01 ============================================================================ +19:14:01 ============================================================================ +19:14:01 Slot Id : <492> +19:14:01 Transaction Type : RESPONSE +19:14:01 Received From : +19:14:01 ============================================================================ +19:14:01 FNo. Len. Field Value +19:14:01 ============================================================================ +19:14:01 [ 1] [ 4] [0210] +19:14:01 [ 2] [ 16] [6213544001206330] +19:14:01 [ 3] [ 6] [011000] +19:14:01 [ 4] [ 12] [000200000000] +19:14:01 [ 7] [ 10] [0320191420] +19:14:01 [ 11] [ 6] [211048] +19:14:01 [ 12] [ 6] [191445] +19:14:01 [ 13] [ 4] [0320] +19:14:01 [ 15] [ 4] [0320] +19:14:01 [ 18] [ 4] [6011] +19:14:01 [ 19] [ 3] [418] +19:14:01 [ 22] [ 3] [021] +19:14:01 [ 32] [ 6] [198901] +19:14:01 [ 35] [ 32] [6213544001206330=491212010633541] +19:14:01 [ 37] [ 12] [507919211048] +19:14:01 [ 39] [ 2] [61] +19:14:01 [ 41] [ 8] [01529009] +19:14:01 [ 49] [ 3] [418] +19:14:01 ============================================================================ +19:14:01 Sending to : +19:14:01 ============================================================================ +19:14:01 + + +waiting on router queue for slot.... +19:14:02 ============================================================================ +19:14:02 Slot Id : <492> +19:14:02 Transaction Type : RESPONSE +19:14:02 Received From : +19:14:02 ============================================================================ +19:14:02 FNo. Len. Field Value +19:14:02 ============================================================================ +19:14:02 [ 1] [ 4] [0210] +19:14:02 [ 2] [ 16] [6213544001206330] +19:14:02 [ 3] [ 6] [011000] +19:14:02 [ 4] [ 12] [000200000000] +19:14:02 [ 7] [ 10] [0320191420] +19:14:02 [ 11] [ 6] [211048] +19:14:02 [ 12] [ 6] [191445] +19:14:02 [ 13] [ 4] [0320] +19:14:02 [ 15] [ 4] [0320] +19:14:02 [ 18] [ 4] [6011] +19:14:02 [ 19] [ 3] [418] +19:14:02 [ 22] [ 3] [021] +19:14:02 [ 32] [ 6] [198901] +19:14:02 [ 35] [ 32] [6213544001206330=491212010633541] +19:14:02 [ 37] [ 12] [507919211048] +19:14:02 [ 39] [ 2] [61] +19:14:02 [ 41] [ 8] [01529009] +19:14:02 [ 49] [ 3] [418] +19:14:02 ============================================================================ +19:14:02 Calculate Source COMM Id = 5 +19:14:02 ============================================================================ +19:14:02 + + +waiting on router queue for slot.... +19:14:08 ============================================================================ +19:14:08 Slot Id : <13> +19:14:08 Transaction Type : REQUEST +19:14:08 Received From : +19:14:08 ============================================================================ +19:14:08 FNo. Len. Field Value +19:14:08 ============================================================================ +19:14:08 [ 1] [ 4] [0800] +19:14:08 [ 7] [ 10] [0320121315] +19:14:08 [ 11] [ 6] [157895] +19:14:08 [ 70] [ 3] [301] +19:14:08 ============================================================================ +19:14:08 + + +waiting on router queue for slot.... +19:14:08 Sending to : +19:14:08 ============================================================================ +19:14:08 ============================================================================ +19:14:08 Slot Id : <13> +19:14:08 Transaction Type : RESPONSE +19:14:08 Received From : +19:14:08 ============================================================================ +19:14:08 FNo. Len. Field Value +19:14:08 ============================================================================ +19:14:08 [ 1] [ 4] [0810] +19:14:08 [ 7] [ 10] [0320121315] +19:14:08 [ 11] [ 6] [157895] +19:14:08 [ 39] [ 2] [00] +19:14:08 [ 70] [ 3] [301] +19:14:08 ============================================================================ +19:14:08 Calculate Source COMM Id = 2 +19:14:08 ============================================================================ +19:14:08 + + +waiting on router queue for slot.... +19:14:20 ============================================================================ +19:14:20 Slot Id : <16> +19:14:20 Transaction Type : REQUEST +19:14:20 Received From : +19:14:20 ============================================================================ +19:14:20 FNo. Len. Field Value +19:14:20 ============================================================================ +19:14:20 [ 1] [ 4] [0800] +19:14:20 [ 7] [ 10] [0320121326] +19:14:20 [ 11] [ 6] [157896] +19:14:20 [ 70] [ 3] [301] +19:14:20 ============================================================================ +19:14:20 + + +waiting on router queue for slot.... +19:14:20 Sending to : +19:14:20 ============================================================================ +19:14:20 ============================================================================ +19:14:20 Slot Id : <16> +19:14:20 Transaction Type : RESPONSE +19:14:20 Received From : +19:14:20 ============================================================================ +19:14:20 FNo. Len. Field Value +19:14:20 ============================================================================ +19:14:20 [ 1] [ 4] [0810] +19:14:20 [ 7] [ 10] [0320121326] +19:14:20 [ 11] [ 6] [157896] +19:14:20 [ 39] [ 2] [00] +19:14:20 [ 70] [ 3] [301] +19:14:20 ============================================================================ +19:14:20 Calculate Source COMM Id = 2 +19:14:20 ============================================================================ +19:14:20 + + +waiting on router queue for slot.... +19:14:30 ============================================================================ +19:14:30 Slot Id : <454> +19:14:30 Transaction Type : REQUEST +19:14:30 Received From : +19:14:30 ============================================================================ +19:14:30 FNo. Len. Field Value +19:14:30 ============================================================================ +19:14:30 [ 1] [ 4] [0200] +19:14:30 [ 2] [ 16] [6688990105724601] +19:14:30 [ 3] [ 6] [010000] +19:14:30 [ 4] [ 12] [000100000000] +19:14:30 [ 7] [ 10] [0320191425] +19:14:30 [ 11] [ 6] [834908] +19:14:30 [ 12] [ 6] [191425] +19:14:30 [ 13] [ 4] [0320] +19:14:30 [ 15] [ 4] [0320] +19:14:30 [ 18] [ 4] [6011] +19:14:30 [ 22] [ 3] [900] +19:14:30 [ 25] [ 2] [02] +19:14:30 [ 28] [ 9] [D00002000] +19:14:30 [ 32] [ 6] [621354] +19:14:30 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:14:30 [ 37] [ 12] [507903461761] +19:14:30 [ 41] [ 8] [06001900] +19:14:30 [ 42] [ 15] [NATIVE ] +19:14:30 [ 43] [ 40] [La District La LAO] +19:14:30 [ 49] [ 3] [418] +19:14:30 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:14:30 ============================================================================ +19:14:30 + + +waiting on router queue for slot.... +19:14:30 Sending to : +19:14:30 ============================================================================ +19:14:30 Sending to : +19:14:30 ============================================================================ +19:14:31 ============================================================================ +19:14:31 Slot Id : <454> +19:14:31 Transaction Type : REQUEST +19:14:31 Received From : +19:14:31 ============================================================================ +19:14:31 FNo. Len. Field Value +19:14:31 ============================================================================ +19:14:31 [ 1] [ 4] [0200] +19:14:31 [ 2] [ 16] [6688990105724601] +19:14:31 [ 3] [ 6] [010000] +19:14:31 [ 4] [ 12] [000100000000] +19:14:31 [ 7] [ 10] [0320191425] +19:14:31 [ 11] [ 6] [834908] +19:14:31 [ 12] [ 6] [191425] +19:14:31 [ 13] [ 4] [0320] +19:14:31 [ 15] [ 4] [0320] +19:14:31 [ 18] [ 4] [6011] +19:14:31 [ 22] [ 3] [900] +19:14:31 [ 25] [ 2] [02] +19:14:31 [ 28] [ 9] [D00002000] +19:14:31 [ 32] [ 6] [621354] +19:14:31 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:14:31 [ 37] [ 12] [507903461761] +19:14:31 [ 41] [ 8] [06001900] +19:14:31 [ 42] [ 15] [NATIVE ] +19:14:31 [ 43] [ 40] [La District La LAO] +19:14:31 [ 49] [ 3] [418] +19:14:31 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:14:31 ============================================================================ +19:14:31 + + +waiting on router queue for slot.... +19:14:31 Sending to : +19:14:31 ============================================================================ +19:14:31 ============================================================================ +19:14:31 Slot Id : <454> +19:14:31 Transaction Type : REQUEST +19:14:31 Received From : +19:14:31 ============================================================================ +19:14:31 FNo. Len. Field Value +19:14:31 ============================================================================ +19:14:31 [ 1] [ 4] [0200] +19:14:31 [ 2] [ 16] [6688990105724601] +19:14:31 [ 3] [ 6] [010000] +19:14:31 [ 4] [ 12] [000100000000] +19:14:31 [ 7] [ 10] [0320191425] +19:14:31 [ 11] [ 6] [834908] +19:14:31 [ 12] [ 6] [191425] +19:14:31 [ 13] [ 4] [0320] +19:14:31 [ 15] [ 4] [0320] +19:14:31 [ 18] [ 4] [6011] +19:14:31 [ 22] [ 3] [900] +19:14:31 [ 25] [ 2] [02] +19:14:31 [ 28] [ 9] [D00002000] +19:14:31 [ 32] [ 6] [621354] +19:14:31 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:14:31 [ 37] [ 12] [507903461761] +19:14:31 [ 41] [ 8] [06001900] +19:14:31 [ 42] [ 15] [NATIVE ] +19:14:31 [ 43] [ 40] [La District La LAO] +19:14:31 [ 49] [ 3] [418] +19:14:31 [ 52] [ 16] [880D114C12D054AC] +19:14:31 ============================================================================ +19:14:31 + + +waiting on router queue for slot.... +19:14:31 Sending to : <4> +19:14:31 ============================================================================ +19:14:32 ============================================================================ +19:14:32 Slot Id : <454> +19:14:32 Transaction Type : RESPONSE +19:14:32 Received From : +19:14:32 ============================================================================ +19:14:32 FNo. Len. Field Value +19:14:32 ============================================================================ +19:14:32 [ 1] [ 4] [0210] +19:14:32 [ 2] [ 16] [6688990105724601] +19:14:32 [ 3] [ 6] [010000] +19:14:32 [ 4] [ 12] [000100000000] +19:14:32 [ 11] [ 6] [834908] +19:14:32 [ 12] [ 6] [191425] +19:14:32 [ 15] [ 4] [0320] +19:14:32 [ 18] [ 4] [6011] +19:14:32 [ 32] [ 6] [621354] +19:14:32 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:14:32 [ 37] [ 12] [507903461761] +19:14:32 [ 38] [ 6] [829266] +19:14:32 [ 39] [ 2] [00] +19:14:32 [ 41] [ 8] [06001900] +19:14:32 [ 49] [ 3] [418] +19:14:32 [ 54] [ 20] [0002418C000402016689] +19:14:32 ============================================================================ +19:14:32 Sending to : +19:14:32 ============================================================================ +19:14:32 + + +waiting on router queue for slot.... +19:14:34 ============================================================================ +19:14:34 Slot Id : <454> +19:14:34 Transaction Type : RESPONSE +19:14:34 Received From : +19:14:34 ============================================================================ +19:14:34 FNo. Len. Field Value +19:14:34 ============================================================================ +19:14:34 [ 1] [ 4] [0210] +19:14:34 [ 2] [ 16] [6688990105724601] +19:14:34 [ 3] [ 6] [010000] +19:14:34 [ 4] [ 12] [000100000000] +19:14:34 [ 11] [ 6] [834908] +19:14:34 [ 12] [ 6] [191425] +19:14:34 [ 15] [ 4] [0320] +19:14:34 [ 18] [ 4] [6011] +19:14:34 [ 32] [ 6] [621354] +19:14:34 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:14:34 [ 37] [ 12] [507903461761] +19:14:34 [ 38] [ 6] [829266] +19:14:34 [ 39] [ 2] [00] +19:14:34 [ 41] [ 8] [06001900] +19:14:34 [ 49] [ 3] [418] +19:14:34 [ 54] [ 20] [0002418C000402016689] +19:14:34 ============================================================================ +19:14:34 Calculate Source COMM Id = 0 +19:14:34 ============================================================================ +19:14:34 + + +waiting on router queue for slot.... +19:14:36 ============================================================================ +19:14:36 Slot Id : <12> +19:14:36 Transaction Type : REQUEST +19:14:36 Received From : +19:14:36 ============================================================================ +19:14:36 FNo. Len. Field Value +19:14:36 ============================================================================ +19:14:36 [ 1] [ 4] [0800] +19:14:36 [ 7] [ 10] [0320121342] +19:14:36 [ 11] [ 6] [157897] +19:14:36 [ 70] [ 3] [301] +19:14:36 ============================================================================ +19:14:36 + + +waiting on router queue for slot.... +19:14:36 Sending to : +19:14:36 ============================================================================ +19:14:36 ============================================================================ +19:14:36 Slot Id : <12> +19:14:36 Transaction Type : RESPONSE +19:14:36 Received From : +19:14:36 ============================================================================ +19:14:36 FNo. Len. Field Value +19:14:36 ============================================================================ +19:14:36 [ 1] [ 4] [0810] +19:14:36 [ 7] [ 10] [0320121342] +19:14:36 [ 11] [ 6] [157897] +19:14:36 [ 39] [ 2] [00] +19:14:36 [ 70] [ 3] [301] +19:14:36 ============================================================================ +19:14:36 Calculate Source COMM Id = 2 +19:14:36 ============================================================================ +19:14:36 + + +waiting on router queue for slot.... +19:14:51 ============================================================================ +19:14:51 Slot Id : <22> +19:14:51 Transaction Type : REQUEST +19:14:51 Received From : +19:14:51 ============================================================================ +19:14:51 FNo. Len. Field Value +19:14:51 ============================================================================ +19:14:51 [ 1] [ 4] [0200] +19:14:51 [ 2] [ 16] [6213541000163363] +19:14:51 [ 3] [ 6] [010000] +19:14:51 [ 4] [ 12] [000016000000] +19:14:51 [ 7] [ 10] [0320191240] +19:14:51 [ 11] [ 6] [955892] +19:14:51 [ 12] [ 6] [191240] +19:14:51 [ 13] [ 4] [0320] +19:14:51 [ 15] [ 4] [0320] +19:14:51 [ 18] [ 4] [6011] +19:14:51 [ 19] [ 3] [418] +19:14:51 [ 22] [ 3] [021] +19:14:51 [ 25] [ 2] [01] +19:14:51 [ 28] [ 9] [D00002000] +19:14:51 [ 32] [ 6] [668899] +19:14:51 [ 35] [ 32] [6213541000163363=491212016336323] +19:14:51 [ 37] [ 12] [507902475778] +19:14:51 [ 41] [ 8] [03020032] +19:14:51 [ 42] [ 15] [APT ] +19:14:51 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:14:51 [ 49] [ 3] [418] +19:14:51 [ 52] [ 16] [50B348F14BEFF14C] +19:14:51 ============================================================================ +19:14:51 + + +waiting on router queue for slot.... +19:14:51 Sending to : +19:14:51 ============================================================================ +19:14:51 Sending to : +19:14:51 ============================================================================ +19:14:51 ============================================================================ +19:14:51 Slot Id : <469> +19:14:51 Transaction Type : REQUEST +19:14:51 Received From : +19:14:51 ============================================================================ +19:14:51 FNo. Len. Field Value +19:14:51 ============================================================================ +19:14:51 [ 1] [ 4] [0800] +19:14:51 [ 7] [ 10] [0320121357] +19:14:51 [ 11] [ 6] [157898] +19:14:51 [ 70] [ 3] [301] +19:14:51 ============================================================================ +19:14:51 + + +waiting on router queue for slot.... +19:14:51 Sending to : +19:14:51 ============================================================================ +19:14:51 ============================================================================ +19:14:51 Slot Id : <469> +19:14:51 Transaction Type : RESPONSE +19:14:51 Received From : +19:14:51 ============================================================================ +19:14:51 FNo. Len. Field Value +19:14:51 ============================================================================ +19:14:51 [ 1] [ 4] [0810] +19:14:51 [ 7] [ 10] [0320121357] +19:14:51 [ 11] [ 6] [157898] +19:14:51 [ 39] [ 2] [00] +19:14:51 [ 70] [ 3] [301] +19:14:51 ============================================================================ +19:14:51 Calculate Source COMM Id = 2 +19:14:51 ============================================================================ +19:14:51 + + +waiting on router queue for slot.... +19:14:51 ============================================================================ +19:14:51 Slot Id : <22> +19:14:51 Transaction Type : REQUEST +19:14:51 Received From : +19:14:51 ============================================================================ +19:14:51 FNo. Len. Field Value +19:14:51 ============================================================================ +19:14:51 [ 1] [ 4] [0200] +19:14:51 [ 2] [ 16] [6213541000163363] +19:14:51 [ 3] [ 6] [010000] +19:14:51 [ 4] [ 12] [000016000000] +19:14:51 [ 7] [ 10] [0320191240] +19:14:51 [ 11] [ 6] [955892] +19:14:51 [ 12] [ 6] [191240] +19:14:51 [ 13] [ 4] [0320] +19:14:51 [ 15] [ 4] [0320] +19:14:51 [ 18] [ 4] [6011] +19:14:51 [ 19] [ 3] [418] +19:14:51 [ 22] [ 3] [021] +19:14:51 [ 25] [ 2] [01] +19:14:51 [ 28] [ 9] [D00002000] +19:14:51 [ 32] [ 6] [668899] +19:14:51 [ 35] [ 32] [6213541000163363=491212016336323] +19:14:51 [ 37] [ 12] [507902475778] +19:14:51 [ 41] [ 8] [03020032] +19:14:51 [ 42] [ 15] [APT ] +19:14:51 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:14:51 [ 49] [ 3] [418] +19:14:51 [ 52] [ 16] [50B348F14BEFF14C] +19:14:51 ============================================================================ +19:14:51 + + +waiting on router queue for slot.... +19:14:51 Sending to : +19:14:51 ============================================================================ +19:14:51 ============================================================================ +19:14:51 Slot Id : <22> +19:14:51 Transaction Type : REQUEST +19:14:51 Received From : +19:14:51 ============================================================================ +19:14:51 FNo. Len. Field Value +19:14:51 ============================================================================ +19:14:51 [ 1] [ 4] [0200] +19:14:51 [ 2] [ 16] [6213541000163363] +19:14:51 [ 3] [ 6] [010000] +19:14:51 [ 4] [ 12] [000016000000] +19:14:51 [ 7] [ 10] [0320191240] +19:14:51 [ 11] [ 6] [955892] +19:14:51 [ 12] [ 6] [191240] +19:14:51 [ 13] [ 4] [0320] +19:14:51 [ 15] [ 4] [0320] +19:14:51 [ 18] [ 4] [6011] +19:14:51 [ 19] [ 3] [418] +19:14:51 [ 22] [ 3] [021] +19:14:51 [ 25] [ 2] [01] +19:14:51 [ 28] [ 9] [D00002000] +19:14:51 [ 32] [ 6] [668899] +19:14:51 [ 35] [ 32] [6213541000163363=491212016336323] +19:14:51 [ 37] [ 12] [507902475778] +19:14:51 [ 41] [ 8] [03020032] +19:14:51 [ 42] [ 15] [APT ] +19:14:51 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:14:51 [ 49] [ 3] [418] +19:14:51 [ 52] [ 16] [98FF777124FE4A5F] +19:14:51 ============================================================================ +19:14:51 + + +waiting on router queue for slot.... +19:14:51 Sending to : <0> +19:14:51 ============================================================================ +19:14:51 ============================================================================ +19:14:51 Slot Id : <494> +19:14:51 Transaction Type : REQUEST +19:14:51 Received From : +19:14:51 ============================================================================ +19:14:51 FNo. Len. Field Value +19:14:51 ============================================================================ +19:14:51 [ 1] [ 4] [0800] +19:14:51 [ 7] [ 10] [0321022639] +19:14:51 [ 11] [ 6] [192639] +19:14:51 [ 37] [ 12] [57919192639] +19:14:51 [ 70] [ 3] [301] +19:14:51 ============================================================================ +19:14:51 + + +waiting on router queue for slot.... +19:14:51 Sending to : +19:14:51 ============================================================================ +19:14:51 ============================================================================ +19:14:51 Slot Id : <494> +19:14:51 Transaction Type : RESPONSE +19:14:51 Received From : +19:14:51 ============================================================================ +19:14:51 FNo. Len. Field Value +19:14:51 ============================================================================ +19:14:51 [ 1] [ 4] [0810] +19:14:51 [ 7] [ 10] [0321022639] +19:14:51 [ 11] [ 6] [192639] +19:14:51 [ 37] [ 12] [579191926390] +19:14:51 [ 39] [ 2] [00] +19:14:51 [ 70] [ 3] [810] +19:14:51 ============================================================================ +19:14:51 Calculate Source COMM Id = 6 +19:14:51 ============================================================================ +19:14:51 + + +waiting on router queue for slot.... +19:14:52 ============================================================================ +19:14:52 Slot Id : <22> +19:14:52 Transaction Type : RESPONSE +19:14:52 Received From : +19:14:52 ============================================================================ +19:14:52 FNo. Len. Field Value +19:14:52 ============================================================================ +19:14:52 [ 1] [ 4] [0210] +19:14:52 [ 2] [ 16] [6213541000163363] +19:14:52 [ 3] [ 6] [010000] +19:14:52 [ 4] [ 12] [000016000000] +19:14:52 [ 7] [ 10] [0320191240] +19:14:52 [ 11] [ 6] [955892] +19:14:52 [ 12] [ 6] [191240] +19:14:52 [ 13] [ 4] [0320] +19:14:52 [ 15] [ 4] [0320] +19:14:52 [ 18] [ 4] [6011] +19:14:52 [ 19] [ 3] [418] +19:14:52 [ 32] [ 6] [668899] +19:14:52 [ 35] [ 32] [6213541000163363=491212016336323] +19:14:52 [ 37] [ 12] [507902475778] +19:14:52 [ 38] [ 6] [237511] +19:14:52 [ 39] [ 2] [00] +19:14:52 [ 41] [ 8] [03020032] +19:14:52 [ 49] [ 3] [418] +19:14:52 [ 54] [ 40] [0001418C0000058270540002418C000005827054] +19:14:52 ============================================================================ +19:14:52 Sending to : +19:14:52 ============================================================================ +19:14:52 + + +waiting on router queue for slot.... +19:14:53 ============================================================================ +19:14:53 Slot Id : <22> +19:14:53 Transaction Type : RESPONSE +19:14:53 Received From : +19:14:53 ============================================================================ +19:14:53 FNo. Len. Field Value +19:14:53 ============================================================================ +19:14:53 [ 1] [ 4] [0210] +19:14:53 [ 2] [ 16] [6213541000163363] +19:14:53 [ 3] [ 6] [010000] +19:14:53 [ 4] [ 12] [000016000000] +19:14:53 [ 7] [ 10] [0320191240] +19:14:53 [ 11] [ 6] [955892] +19:14:53 [ 12] [ 6] [191240] +19:14:53 [ 13] [ 4] [0320] +19:14:53 [ 15] [ 4] [0320] +19:14:53 [ 18] [ 4] [6011] +19:14:53 [ 19] [ 3] [418] +19:14:53 [ 32] [ 6] [668899] +19:14:53 [ 35] [ 32] [6213541000163363=491212016336323] +19:14:53 [ 37] [ 12] [507902475778] +19:14:53 [ 38] [ 6] [237511] +19:14:53 [ 39] [ 2] [00] +19:14:53 [ 41] [ 8] [03020032] +19:14:53 [ 49] [ 3] [418] +19:14:53 [ 54] [ 40] [0001418C0000058270540002418C000005827054] +19:14:53 ============================================================================ +19:14:53 Calculate Source COMM Id = 4 +19:14:53 ============================================================================ +19:14:53 + + +waiting on router queue for slot.... +19:14:53 ============================================================================ +19:14:53 Slot Id : <491> +19:14:53 Transaction Type : REQUEST +19:14:53 Received From : +19:14:53 ============================================================================ +19:14:53 FNo. Len. Field Value +19:14:53 ============================================================================ +19:14:53 [ 1] [ 4] [0800] +19:14:53 [ 2] [ 5] [02531] +19:14:53 [ 3] [ 6] [579198] +19:14:53 [ 7] [ 10] [0320121453] +19:14:53 [ 11] [ 6] [807529] +19:14:53 [ 15] [ 10] [0320121453] +19:14:53 [ 37] [ 11] [57919807529] +19:14:53 [ 70] [ 3] [001] +19:14:53 ============================================================================ +19:14:53 + + +waiting on router queue for slot.... +19:14:53 ============================================================================ +19:14:53 Slot Id : <491> +19:14:53 Transaction Type : RESPONSE +19:14:53 Received From : +19:14:53 ============================================================================ +19:14:53 FNo. Len. Field Value +19:14:53 ============================================================================ +19:14:53 [ 1] [ 4] [0810] +19:14:53 [ 7] [ 10] [0320121453] +19:14:53 [ 11] [ 6] [807529] +19:14:53 [ 15] [ 4] [0320] +19:14:53 [ 37] [ 12] [57919807529] +19:14:53 [ 39] [ 2] [00] +19:14:53 [ 70] [ 3] [001] +19:14:53 ============================================================================ +19:14:53 Sending to : +19:14:53 ============================================================================ +19:14:53 + + +waiting on router queue for slot.... +19:14:57 ============================================================================ +19:14:57 Slot Id : <17> +19:14:57 Transaction Type : REQUEST +19:14:57 Received From : +19:14:57 ============================================================================ +19:14:57 FNo. Len. Field Value +19:14:57 ============================================================================ +19:14:57 [ 1] [ 4] [0800] +19:14:57 [ 7] [ 10] [0320122242] +19:14:57 [ 11] [ 6] [054233] +19:14:57 [ 37] [ 12] [57919054233] +19:14:57 [ 70] [ 3] [301] +19:14:57 ============================================================================ +19:14:57 + + +waiting on router queue for slot.... +19:14:57 Sending to : +19:14:57 ============================================================================ +19:14:57 ============================================================================ +19:14:57 Slot Id : <17> +19:14:57 Transaction Type : RESPONSE +19:14:57 Received From : +19:14:57 ============================================================================ +19:14:57 FNo. Len. Field Value +19:14:57 ============================================================================ +19:14:57 [ 1] [ 4] [0810] +19:14:57 [ 7] [ 10] [0320122242] +19:14:57 [ 11] [ 6] [054233] +19:14:57 [ 37] [ 12] [579190542330] +19:14:57 [ 39] [ 2] [00] +19:14:57 [ 70] [ 3] [810] +19:14:57 ============================================================================ +19:14:57 Calculate Source COMM Id = 1 +19:14:57 ============================================================================ +19:14:57 + + +waiting on router queue for slot.... +19:15:06 ============================================================================ +19:15:06 Slot Id : <29> +19:15:06 Transaction Type : REQUEST +19:15:06 Received From : +19:15:06 ============================================================================ +19:15:06 FNo. Len. Field Value +19:15:06 ============================================================================ +19:15:06 [ 1] [ 4] [0800] +19:15:06 [ 7] [ 10] [0320121413] +19:15:06 [ 11] [ 6] [157899] +19:15:06 [ 70] [ 3] [301] +19:15:06 ============================================================================ +19:15:06 + + +waiting on router queue for slot.... +19:15:06 Sending to : +19:15:06 ============================================================================ +19:15:06 ============================================================================ +19:15:06 Slot Id : <29> +19:15:06 Transaction Type : RESPONSE +19:15:06 Received From : +19:15:06 ============================================================================ +19:15:06 FNo. Len. Field Value +19:15:06 ============================================================================ +19:15:06 [ 1] [ 4] [0810] +19:15:06 [ 7] [ 10] [0320121413] +19:15:06 [ 11] [ 6] [157899] +19:15:06 [ 39] [ 2] [00] +19:15:06 [ 70] [ 3] [301] +19:15:06 ============================================================================ +19:15:06 Calculate Source COMM Id = 2 +19:15:06 ============================================================================ +19:15:06 + + +waiting on router queue for slot.... +19:15:22 ============================================================================ +19:15:22 Slot Id : <10> +19:15:22 Transaction Type : REQUEST +19:15:22 Received From : +19:15:22 ============================================================================ +19:15:22 FNo. Len. Field Value +19:15:22 ============================================================================ +19:15:22 [ 1] [ 4] [0800] +19:15:22 [ 7] [ 10] [0320121428] +19:15:22 [ 11] [ 6] [157900] +19:15:22 [ 70] [ 3] [301] +19:15:22 ============================================================================ +19:15:22 + + +waiting on router queue for slot.... +19:15:22 Sending to : +19:15:22 ============================================================================ +19:15:22 ============================================================================ +19:15:22 Slot Id : <10> +19:15:22 Transaction Type : RESPONSE +19:15:22 Received From : +19:15:22 ============================================================================ +19:15:22 FNo. Len. Field Value +19:15:22 ============================================================================ +19:15:22 [ 1] [ 4] [0810] +19:15:22 [ 7] [ 10] [0320121428] +19:15:22 [ 11] [ 6] [157900] +19:15:22 [ 39] [ 2] [00] +19:15:22 [ 70] [ 3] [301] +19:15:22 ============================================================================ +19:15:22 Calculate Source COMM Id = 2 +19:15:22 ============================================================================ +19:15:22 + + +waiting on router queue for slot.... +19:15:25 ============================================================================ +19:15:25 Slot Id : <499> +19:15:25 Transaction Type : REQUEST +19:15:25 Received From : +19:15:25 ============================================================================ +19:15:25 FNo. Len. Field Value +19:15:25 ============================================================================ +19:15:25 [ 1] [ 4] [0200] +19:15:25 [ 2] [ 16] [6688990105724601] +19:15:25 [ 3] [ 6] [010000] +19:15:25 [ 4] [ 12] [000100000000] +19:15:25 [ 7] [ 10] [0320191520] +19:15:25 [ 11] [ 6] [835031] +19:15:25 [ 12] [ 6] [191520] +19:15:25 [ 13] [ 4] [0320] +19:15:25 [ 15] [ 4] [0320] +19:15:25 [ 18] [ 4] [6011] +19:15:25 [ 22] [ 3] [900] +19:15:25 [ 25] [ 2] [02] +19:15:25 [ 28] [ 9] [D00002000] +19:15:25 [ 32] [ 6] [621354] +19:15:25 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:15:25 [ 37] [ 12] [507903461763] +19:15:25 [ 41] [ 8] [06001900] +19:15:25 [ 42] [ 15] [NATIVE ] +19:15:25 [ 43] [ 40] [La District La LAO] +19:15:25 [ 49] [ 3] [418] +19:15:25 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:15:25 ============================================================================ +19:15:25 + + +waiting on router queue for slot.... +19:15:25 Sending to : +19:15:25 ============================================================================ +19:15:25 Sending to : +19:15:25 ============================================================================ +19:15:25 ============================================================================ +19:15:25 Slot Id : <499> +19:15:25 Transaction Type : REQUEST +19:15:25 Received From : +19:15:25 ============================================================================ +19:15:25 FNo. Len. Field Value +19:15:25 ============================================================================ +19:15:25 [ 1] [ 4] [0200] +19:15:25 [ 2] [ 16] [6688990105724601] +19:15:25 [ 3] [ 6] [010000] +19:15:25 [ 4] [ 12] [000100000000] +19:15:25 [ 7] [ 10] [0320191520] +19:15:25 [ 11] [ 6] [835031] +19:15:25 [ 12] [ 6] [191520] +19:15:25 [ 13] [ 4] [0320] +19:15:25 [ 15] [ 4] [0320] +19:15:25 [ 18] [ 4] [6011] +19:15:25 [ 22] [ 3] [900] +19:15:25 [ 25] [ 2] [02] +19:15:25 [ 28] [ 9] [D00002000] +19:15:25 [ 32] [ 6] [621354] +19:15:25 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:15:25 [ 37] [ 12] [507903461763] +19:15:25 [ 41] [ 8] [06001900] +19:15:25 [ 42] [ 15] [NATIVE ] +19:15:25 [ 43] [ 40] [La District La LAO] +19:15:25 [ 49] [ 3] [418] +19:15:25 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:15:25 ============================================================================ +19:15:25 + + +waiting on router queue for slot.... +19:15:25 Sending to : +19:15:25 ============================================================================ +19:15:25 ============================================================================ +19:15:25 Slot Id : <499> +19:15:25 Transaction Type : REQUEST +19:15:25 Received From : +19:15:25 ============================================================================ +19:15:25 FNo. Len. Field Value +19:15:25 ============================================================================ +19:15:25 [ 1] [ 4] [0200] +19:15:25 [ 2] [ 16] [6688990105724601] +19:15:25 [ 3] [ 6] [010000] +19:15:25 [ 4] [ 12] [000100000000] +19:15:25 [ 7] [ 10] [0320191520] +19:15:25 [ 11] [ 6] [835031] +19:15:25 [ 12] [ 6] [191520] +19:15:25 [ 13] [ 4] [0320] +19:15:25 [ 15] [ 4] [0320] +19:15:25 [ 18] [ 4] [6011] +19:15:25 [ 22] [ 3] [900] +19:15:25 [ 25] [ 2] [02] +19:15:25 [ 28] [ 9] [D00002000] +19:15:25 [ 32] [ 6] [621354] +19:15:25 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:15:25 [ 37] [ 12] [507903461763] +19:15:25 [ 41] [ 8] [06001900] +19:15:25 [ 42] [ 15] [NATIVE ] +19:15:25 [ 43] [ 40] [La District La LAO] +19:15:25 [ 49] [ 3] [418] +19:15:25 [ 52] [ 16] [880D114C12D054AC] +19:15:25 ============================================================================ +19:15:25 + + +waiting on router queue for slot.... +19:15:25 Sending to : <4> +19:15:25 ============================================================================ +19:15:28 ============================================================================ +19:15:28 Slot Id : <499> +19:15:28 Transaction Type : RESPONSE +19:15:28 Received From : +19:15:28 ============================================================================ +19:15:28 FNo. Len. Field Value +19:15:28 ============================================================================ +19:15:28 [ 1] [ 4] [0210] +19:15:28 [ 2] [ 16] [6688990105724601] +19:15:28 [ 3] [ 6] [010000] +19:15:28 [ 4] [ 12] [000100000000] +19:15:28 [ 11] [ 6] [835031] +19:15:28 [ 12] [ 6] [191520] +19:15:28 [ 15] [ 4] [0320] +19:15:28 [ 18] [ 4] [6011] +19:15:28 [ 32] [ 6] [621354] +19:15:28 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:15:28 [ 37] [ 12] [507903461763] +19:15:28 [ 38] [ 6] [063344] +19:15:28 [ 39] [ 2] [00] +19:15:28 [ 41] [ 8] [06001900] +19:15:28 [ 49] [ 3] [418] +19:15:28 [ 54] [ 20] [0002418C000301816689] +19:15:28 ============================================================================ +19:15:28 Sending to : +19:15:28 ============================================================================ +19:15:28 + + +waiting on router queue for slot.... +19:15:30 ============================================================================ +19:15:30 Slot Id : <499> +19:15:30 Transaction Type : RESPONSE +19:15:30 Received From : +19:15:30 ============================================================================ +19:15:30 FNo. Len. Field Value +19:15:30 ============================================================================ +19:15:30 [ 1] [ 4] [0210] +19:15:30 [ 2] [ 16] [6688990105724601] +19:15:30 [ 3] [ 6] [010000] +19:15:30 [ 4] [ 12] [000100000000] +19:15:30 [ 11] [ 6] [835031] +19:15:30 [ 12] [ 6] [191520] +19:15:30 [ 15] [ 4] [0320] +19:15:30 [ 18] [ 4] [6011] +19:15:30 [ 32] [ 6] [621354] +19:15:30 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:15:30 [ 37] [ 12] [507903461763] +19:15:30 [ 38] [ 6] [063344] +19:15:30 [ 39] [ 2] [00] +19:15:30 [ 41] [ 8] [06001900] +19:15:30 [ 49] [ 3] [418] +19:15:30 [ 54] [ 20] [0002418C000301816689] +19:15:30 ============================================================================ +19:15:30 Calculate Source COMM Id = 0 +19:15:30 ============================================================================ +19:15:30 + + +waiting on router queue for slot.... +19:15:32 ============================================================================ +19:15:32 Slot Id : <23> +19:15:32 Transaction Type : REQUEST +19:15:32 Received From : +19:15:32 ============================================================================ +19:15:32 FNo. Len. Field Value +19:15:32 ============================================================================ +19:15:32 [ 1] [ 4] [0800] +19:15:32 [ 7] [ 10] [0320121439] +19:15:32 [ 11] [ 6] [157901] +19:15:32 [ 70] [ 3] [301] +19:15:32 ============================================================================ +19:15:32 + + +waiting on router queue for slot.... +19:15:32 Sending to : +19:15:32 ============================================================================ +19:15:32 ============================================================================ +19:15:32 Slot Id : <23> +19:15:32 Transaction Type : RESPONSE +19:15:32 Received From : +19:15:32 ============================================================================ +19:15:32 FNo. Len. Field Value +19:15:32 ============================================================================ +19:15:32 [ 1] [ 4] [0810] +19:15:32 [ 7] [ 10] [0320121439] +19:15:32 [ 11] [ 6] [157901] +19:15:32 [ 39] [ 2] [00] +19:15:32 [ 70] [ 3] [301] +19:15:32 ============================================================================ +19:15:32 Calculate Source COMM Id = 2 +19:15:32 ============================================================================ +19:15:32 + + +waiting on router queue for slot.... +19:15:48 ============================================================================ +19:15:48 Slot Id : <481> +19:15:48 Transaction Type : REQUEST +19:15:48 Received From : +19:15:48 ============================================================================ +19:15:48 FNo. Len. Field Value +19:15:48 ============================================================================ +19:15:48 [ 1] [ 4] [0800] +19:15:48 [ 7] [ 10] [0320121454] +19:15:48 [ 11] [ 6] [157902] +19:15:48 [ 70] [ 3] [301] +19:15:48 ============================================================================ +19:15:48 + + +waiting on router queue for slot.... +19:15:48 Sending to : +19:15:48 ============================================================================ +19:15:48 ============================================================================ +19:15:48 Slot Id : <481> +19:15:48 Transaction Type : RESPONSE +19:15:48 Received From : +19:15:48 ============================================================================ +19:15:48 FNo. Len. Field Value +19:15:48 ============================================================================ +19:15:48 [ 1] [ 4] [0810] +19:15:48 [ 7] [ 10] [0320121454] +19:15:48 [ 11] [ 6] [157902] +19:15:48 [ 39] [ 2] [00] +19:15:48 [ 70] [ 3] [301] +19:15:48 ============================================================================ +19:15:48 Calculate Source COMM Id = 2 +19:15:48 ============================================================================ +19:15:48 + + +waiting on router queue for slot.... +19:15:55 ============================================================================ +19:15:55 Slot Id : <35> +19:15:55 Transaction Type : REQUEST +19:15:55 Received From : +19:15:55 ============================================================================ +19:15:55 FNo. Len. Field Value +19:15:55 ============================================================================ +19:15:55 [ 1] [ 4] [0800] +19:15:55 [ 2] [ 5] [02531] +19:15:55 [ 3] [ 6] [579198] +19:15:55 [ 7] [ 10] [0320121555] +19:15:55 [ 11] [ 6] [807530] +19:15:55 [ 15] [ 10] [0320121555] +19:15:55 [ 37] [ 11] [57919807530] +19:15:55 [ 70] [ 3] [001] +19:15:55 ============================================================================ +19:15:55 + + +waiting on router queue for slot.... +19:15:55 ============================================================================ +19:15:55 Slot Id : <35> +19:15:55 Transaction Type : RESPONSE +19:15:55 Received From : +19:15:55 ============================================================================ +19:15:55 FNo. Len. Field Value +19:15:55 ============================================================================ +19:15:55 [ 1] [ 4] [0810] +19:15:55 [ 7] [ 10] [0320121555] +19:15:55 [ 11] [ 6] [807530] +19:15:55 [ 15] [ 4] [0320] +19:15:55 [ 37] [ 12] [57919807530] +19:15:55 [ 39] [ 2] [00] +19:15:55 [ 70] [ 3] [001] +19:15:55 ============================================================================ +19:15:55 Sending to : +19:15:55 ============================================================================ +19:15:55 + + +waiting on router queue for slot.... +19:15:56 ============================================================================ +19:15:56 Slot Id : <31> +19:15:56 Transaction Type : REQUEST +19:15:56 Received From : +19:15:56 ============================================================================ +19:15:56 FNo. Len. Field Value +19:15:56 ============================================================================ +19:15:56 [ 1] [ 4] [0800] +19:15:56 [ 7] [ 10] [0321022744] +19:15:56 [ 11] [ 6] [192744] +19:15:56 [ 37] [ 12] [57919192744] +19:15:56 [ 70] [ 3] [301] +19:15:56 ============================================================================ +19:15:56 + + +waiting on router queue for slot.... +19:15:56 Sending to : +19:15:56 ============================================================================ +19:15:56 ============================================================================ +19:15:56 Slot Id : <31> +19:15:56 Transaction Type : RESPONSE +19:15:56 Received From : +19:15:56 ============================================================================ +19:15:56 FNo. Len. Field Value +19:15:56 ============================================================================ +19:15:56 [ 1] [ 4] [0810] +19:15:56 [ 7] [ 10] [0321022744] +19:15:56 [ 11] [ 6] [192744] +19:15:56 [ 37] [ 12] [579191927440] +19:15:56 [ 39] [ 2] [00] +19:15:56 [ 70] [ 3] [810] +19:15:56 ============================================================================ +19:15:56 Calculate Source COMM Id = 6 +19:15:56 ============================================================================ +19:15:56 + + +waiting on router queue for slot.... +19:16:03 ============================================================================ +19:16:03 Slot Id : <3> +19:16:03 Transaction Type : REQUEST +19:16:03 Received From : +19:16:03 ============================================================================ +19:16:03 FNo. Len. Field Value +19:16:03 ============================================================================ +19:16:03 [ 1] [ 4] [0800] +19:16:03 [ 7] [ 10] [0320121509] +19:16:03 [ 11] [ 6] [157903] +19:16:03 [ 70] [ 3] [301] +19:16:03 ============================================================================ +19:16:03 + + +waiting on router queue for slot.... +19:16:03 Sending to : +19:16:03 ============================================================================ +19:16:03 ============================================================================ +19:16:03 Slot Id : <3> +19:16:03 Transaction Type : RESPONSE +19:16:03 Received From : +19:16:03 ============================================================================ +19:16:03 FNo. Len. Field Value +19:16:03 ============================================================================ +19:16:03 [ 1] [ 4] [0810] +19:16:03 [ 7] [ 10] [0320121509] +19:16:03 [ 11] [ 6] [157903] +19:16:03 [ 39] [ 2] [00] +19:16:03 [ 70] [ 3] [301] +19:16:03 ============================================================================ +19:16:03 Calculate Source COMM Id = 2 +19:16:03 ============================================================================ +19:16:03 + + +waiting on router queue for slot.... +19:16:17 ============================================================================ +19:16:17 Slot Id : <496> +19:16:17 Transaction Type : REQUEST +19:16:17 Received From : +19:16:17 ============================================================================ +19:16:17 FNo. Len. Field Value +19:16:17 ============================================================================ +19:16:17 [ 1] [ 4] [0200] +19:16:17 [ 2] [ 16] [6213542000037094] +19:16:17 [ 3] [ 6] [011000] +19:16:17 [ 4] [ 12] [000005000000] +19:16:17 [ 7] [ 10] [0320192402] +19:16:17 [ 11] [ 6] [259356] +19:16:17 [ 12] [ 6] [192402] +19:16:17 [ 13] [ 4] [0320] +19:16:17 [ 14] [ 4] [4912] +19:16:17 [ 15] [ 4] [0320] +19:16:17 [ 18] [ 4] [6011] +19:16:17 [ 22] [ 3] [900] +19:16:17 [ 25] [ 2] [02] +19:16:17 [ 28] [ 9] [D00002000] +19:16:17 [ 32] [ 6] [220699] +19:16:17 [ 35] [ 32] [6213542000037094=491212013709011] +19:16:17 [ 37] [ 12] [507900040665] +19:16:17 [ 41] [ 8] [01000400] +19:16:17 [ 42] [ 15] [APTRA ] +19:16:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:16:17 [ 49] [ 3] [418] +19:16:17 [ 52] [ 16] [67F1CF2A07740EE6] +19:16:17 ============================================================================ +19:16:17 + + +waiting on router queue for slot.... +19:16:17 Sending to : +19:16:17 ============================================================================ +19:16:17 Sending to : +19:16:17 ============================================================================ +19:16:17 ============================================================================ +19:16:17 Slot Id : <496> +19:16:17 Transaction Type : REQUEST +19:16:17 Received From : +19:16:17 ============================================================================ +19:16:17 FNo. Len. Field Value +19:16:17 ============================================================================ +19:16:17 [ 1] [ 4] [0200] +19:16:17 [ 2] [ 16] [6213542000037094] +19:16:17 [ 3] [ 6] [011000] +19:16:17 [ 4] [ 12] [000005000000] +19:16:17 [ 7] [ 10] [0320192402] +19:16:17 [ 11] [ 6] [259356] +19:16:17 [ 12] [ 6] [192402] +19:16:17 [ 13] [ 4] [0320] +19:16:17 [ 14] [ 4] [4912] +19:16:17 [ 15] [ 4] [0320] +19:16:17 [ 18] [ 4] [6011] +19:16:17 [ 22] [ 3] [900] +19:16:17 [ 25] [ 2] [02] +19:16:17 [ 28] [ 9] [D00002000] +19:16:17 [ 32] [ 6] [220699] +19:16:17 [ 35] [ 32] [6213542000037094=491212013709011] +19:16:17 [ 37] [ 12] [507900040665] +19:16:17 [ 41] [ 8] [01000400] +19:16:17 [ 42] [ 15] [APTRA ] +19:16:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:16:17 [ 49] [ 3] [418] +19:16:17 [ 52] [ 16] [67F1CF2A07740EE6] +19:16:17 ============================================================================ +19:16:17 + + +waiting on router queue for slot.... +19:16:17 Sending to : +19:16:17 ============================================================================ +19:16:17 ============================================================================ +19:16:17 Slot Id : <496> +19:16:17 Transaction Type : REQUEST +19:16:17 Received From : +19:16:17 ============================================================================ +19:16:17 FNo. Len. Field Value +19:16:17 ============================================================================ +19:16:17 [ 1] [ 4] [0200] +19:16:17 [ 2] [ 16] [6213542000037094] +19:16:17 [ 3] [ 6] [011000] +19:16:17 [ 4] [ 12] [000005000000] +19:16:17 [ 7] [ 10] [0320192402] +19:16:17 [ 11] [ 6] [259356] +19:16:17 [ 12] [ 6] [192402] +19:16:17 [ 13] [ 4] [0320] +19:16:17 [ 14] [ 4] [4912] +19:16:17 [ 15] [ 4] [0320] +19:16:17 [ 18] [ 4] [6011] +19:16:17 [ 22] [ 3] [900] +19:16:17 [ 25] [ 2] [02] +19:16:17 [ 28] [ 9] [D00002000] +19:16:17 [ 32] [ 6] [220699] +19:16:17 [ 35] [ 32] [6213542000037094=491212013709011] +19:16:17 [ 37] [ 12] [507900040665] +19:16:17 [ 41] [ 8] [01000400] +19:16:17 [ 42] [ 15] [APTRA ] +19:16:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:16:17 [ 49] [ 3] [418] +19:16:17 [ 52] [ 16] [84A9480D329405A0] +19:16:17 ============================================================================ +19:16:17 + + +waiting on router queue for slot.... +19:16:17 Sending to : <0> +19:16:17 ============================================================================ +19:16:18 ============================================================================ +19:16:18 Slot Id : <496> +19:16:18 Transaction Type : RESPONSE +19:16:18 Received From : +19:16:18 ============================================================================ +19:16:18 FNo. Len. Field Value +19:16:18 ============================================================================ +19:16:18 [ 1] [ 4] [0210] +19:16:18 [ 2] [ 16] [6213542000037094] +19:16:18 [ 3] [ 6] [011000] +19:16:18 [ 4] [ 12] [000005000000] +19:16:18 [ 7] [ 10] [0320192402] +19:16:18 [ 11] [ 6] [259356] +19:16:18 [ 12] [ 6] [192402] +19:16:18 [ 13] [ 4] [0320] +19:16:18 [ 15] [ 4] [0320] +19:16:18 [ 18] [ 4] [6011] +19:16:18 [ 32] [ 6] [220699] +19:16:18 [ 35] [ 32] [6213542000037094=491212013709011] +19:16:18 [ 37] [ 12] [507900040665] +19:16:18 [ 38] [ 6] [394800] +19:16:18 [ 39] [ 2] [00] +19:16:18 [ 41] [ 8] [01000400] +19:16:18 [ 49] [ 3] [418] +19:16:18 [ 54] [ 40] [1001418C0000077808131002418C000007780813] +19:16:18 ============================================================================ +19:16:18 Sending to : +19:16:18 ============================================================================ +19:16:18 + + +waiting on router queue for slot.... +19:16:18 ============================================================================ +19:16:18 Slot Id : <33> +19:16:18 Transaction Type : REQUEST +19:16:18 Received From : +19:16:18 ============================================================================ +19:16:18 FNo. Len. Field Value +19:16:18 ============================================================================ +19:16:18 [ 1] [ 4] [0800] +19:16:18 [ 7] [ 10] [0320121525] +19:16:18 [ 11] [ 6] [157904] +19:16:18 [ 70] [ 3] [301] +19:16:18 ============================================================================ +19:16:18 + + +waiting on router queue for slot.... +19:16:18 Sending to : +19:16:18 ============================================================================ +19:16:18 ============================================================================ +19:16:18 Slot Id : <33> +19:16:18 Transaction Type : RESPONSE +19:16:18 Received From : +19:16:18 ============================================================================ +19:16:18 FNo. Len. Field Value +19:16:18 ============================================================================ +19:16:18 [ 1] [ 4] [0810] +19:16:18 [ 7] [ 10] [0320121525] +19:16:18 [ 11] [ 6] [157904] +19:16:18 [ 39] [ 2] [00] +19:16:18 [ 70] [ 3] [301] +19:16:18 ============================================================================ +19:16:18 Calculate Source COMM Id = 2 +19:16:18 ============================================================================ +19:16:18 + + +waiting on router queue for slot.... +19:16:19 ============================================================================ +19:16:19 Slot Id : <496> +19:16:19 Transaction Type : RESPONSE +19:16:19 Received From : +19:16:19 ============================================================================ +19:16:19 FNo. Len. Field Value +19:16:19 ============================================================================ +19:16:19 [ 1] [ 4] [0210] +19:16:19 [ 2] [ 16] [6213542000037094] +19:16:19 [ 3] [ 6] [011000] +19:16:19 [ 4] [ 12] [000005000000] +19:16:19 [ 7] [ 10] [0320192402] +19:16:19 [ 11] [ 6] [259356] +19:16:19 [ 12] [ 6] [192402] +19:16:19 [ 13] [ 4] [0320] +19:16:19 [ 15] [ 4] [0320] +19:16:19 [ 18] [ 4] [6011] +19:16:19 [ 32] [ 6] [220699] +19:16:19 [ 35] [ 32] [6213542000037094=491212013709011] +19:16:19 [ 37] [ 12] [507900040665] +19:16:19 [ 38] [ 6] [394800] +19:16:19 [ 39] [ 2] [00] +19:16:19 [ 41] [ 8] [01000400] +19:16:19 [ 49] [ 3] [418] +19:16:19 [ 54] [ 40] [1001418C0000077808131002418C000007780813] +19:16:19 ============================================================================ +19:16:19 Calculate Source COMM Id = 1 +19:16:19 ============================================================================ +19:16:19 + + +waiting on router queue for slot.... +19:16:21 ============================================================================ +19:16:21 Slot Id : <11> +19:16:21 Transaction Type : REQUEST +19:16:21 Received From : +19:16:21 ============================================================================ +19:16:21 FNo. Len. Field Value +19:16:21 ============================================================================ +19:16:21 [ 1] [ 4] [0200] +19:16:21 [ 2] [ 16] [6688990105724601] +19:16:21 [ 3] [ 6] [010000] +19:16:21 [ 4] [ 12] [000100000000] +19:16:21 [ 7] [ 10] [0320191616] +19:16:21 [ 11] [ 6] [835129] +19:16:21 [ 12] [ 6] [191616] +19:16:21 [ 13] [ 4] [0320] +19:16:21 [ 15] [ 4] [0320] +19:16:21 [ 18] [ 4] [6011] +19:16:21 [ 22] [ 3] [900] +19:16:21 [ 25] [ 2] [02] +19:16:21 [ 28] [ 9] [D00002000] +19:16:21 [ 32] [ 6] [621354] +19:16:21 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:16:21 [ 37] [ 12] [507903461765] +19:16:21 [ 41] [ 8] [06001900] +19:16:21 [ 42] [ 15] [NATIVE ] +19:16:21 [ 43] [ 40] [La District La LAO] +19:16:21 [ 49] [ 3] [418] +19:16:21 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:16:21 ============================================================================ +19:16:21 + + +waiting on router queue for slot.... +19:16:21 Sending to : +19:16:21 ============================================================================ +19:16:21 Sending to : +19:16:21 ============================================================================ +19:16:21 ============================================================================ +19:16:21 Slot Id : <11> +19:16:21 Transaction Type : REQUEST +19:16:21 Received From : +19:16:21 ============================================================================ +19:16:21 FNo. Len. Field Value +19:16:21 ============================================================================ +19:16:21 [ 1] [ 4] [0200] +19:16:21 [ 2] [ 16] [6688990105724601] +19:16:21 [ 3] [ 6] [010000] +19:16:21 [ 4] [ 12] [000100000000] +19:16:21 [ 7] [ 10] [0320191616] +19:16:21 [ 11] [ 6] [835129] +19:16:21 [ 12] [ 6] [191616] +19:16:21 [ 13] [ 4] [0320] +19:16:21 [ 15] [ 4] [0320] +19:16:21 [ 18] [ 4] [6011] +19:16:21 [ 22] [ 3] [900] +19:16:21 [ 25] [ 2] [02] +19:16:21 [ 28] [ 9] [D00002000] +19:16:21 [ 32] [ 6] [621354] +19:16:21 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:16:21 [ 37] [ 12] [507903461765] +19:16:21 [ 41] [ 8] [06001900] +19:16:21 [ 42] [ 15] [NATIVE ] +19:16:21 [ 43] [ 40] [La District La LAO] +19:16:21 [ 49] [ 3] [418] +19:16:21 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:16:21 ============================================================================ +19:16:21 + + +waiting on router queue for slot.... +19:16:21 Sending to : +19:16:21 ============================================================================ +19:16:21 ============================================================================ +19:16:21 Slot Id : <11> +19:16:21 Transaction Type : REQUEST +19:16:21 Received From : +19:16:21 ============================================================================ +19:16:21 FNo. Len. Field Value +19:16:21 ============================================================================ +19:16:21 [ 1] [ 4] [0200] +19:16:21 [ 2] [ 16] [6688990105724601] +19:16:21 [ 3] [ 6] [010000] +19:16:21 [ 4] [ 12] [000100000000] +19:16:21 [ 7] [ 10] [0320191616] +19:16:21 [ 11] [ 6] [835129] +19:16:21 [ 12] [ 6] [191616] +19:16:21 [ 13] [ 4] [0320] +19:16:21 [ 15] [ 4] [0320] +19:16:21 [ 18] [ 4] [6011] +19:16:21 [ 22] [ 3] [900] +19:16:21 [ 25] [ 2] [02] +19:16:21 [ 28] [ 9] [D00002000] +19:16:21 [ 32] [ 6] [621354] +19:16:21 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:16:21 [ 37] [ 12] [507903461765] +19:16:21 [ 41] [ 8] [06001900] +19:16:21 [ 42] [ 15] [NATIVE ] +19:16:21 [ 43] [ 40] [La District La LAO] +19:16:21 [ 49] [ 3] [418] +19:16:21 [ 52] [ 16] [880D114C12D054AC] +19:16:21 ============================================================================ +19:16:21 + + +waiting on router queue for slot.... +19:16:21 Sending to : <4> +19:16:21 ============================================================================ +19:16:22 ============================================================================ +19:16:22 Slot Id : <21> +19:16:22 Transaction Type : REQUEST +19:16:22 Received From : +19:16:22 ============================================================================ +19:16:22 FNo. Len. Field Value +19:16:22 ============================================================================ +19:16:22 [ 1] [ 4] [0800] +19:16:22 [ 7] [ 10] [0320121412] +19:16:22 [ 11] [ 6] [075895] +19:16:22 [ 37] [ 12] [57919075895] +19:16:22 [ 70] [ 3] [301] +19:16:22 ============================================================================ +19:16:22 + + +waiting on router queue for slot.... +19:16:22 Sending to : +19:16:22 ============================================================================ +19:16:22 ============================================================================ +19:16:22 Slot Id : <21> +19:16:22 Transaction Type : RESPONSE +19:16:22 Received From : +19:16:22 ============================================================================ +19:16:22 FNo. Len. Field Value +19:16:22 ============================================================================ +19:16:22 [ 1] [ 4] [0810] +19:16:22 [ 7] [ 10] [0320121412] +19:16:22 [ 11] [ 6] [075895] +19:16:22 [ 37] [ 12] [579190758950] +19:16:22 [ 39] [ 2] [00] +19:16:22 [ 70] [ 3] [810] +19:16:22 ============================================================================ +19:16:22 Calculate Source COMM Id = 4 +19:16:22 ============================================================================ +19:16:22 + + +waiting on router queue for slot.... +19:16:23 ============================================================================ +19:16:23 Slot Id : <11> +19:16:23 Transaction Type : RESPONSE +19:16:23 Received From : +19:16:23 ============================================================================ +19:16:23 FNo. Len. Field Value +19:16:23 ============================================================================ +19:16:23 [ 1] [ 4] [0210] +19:16:23 [ 2] [ 16] [6688990105724601] +19:16:23 [ 3] [ 6] [010000] +19:16:23 [ 4] [ 12] [000100000000] +19:16:23 [ 11] [ 6] [835129] +19:16:23 [ 12] [ 6] [191616] +19:16:23 [ 15] [ 4] [0320] +19:16:23 [ 18] [ 4] [6011] +19:16:23 [ 32] [ 6] [621354] +19:16:23 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:16:23 [ 37] [ 12] [507903461765] +19:16:23 [ 38] [ 6] [141802] +19:16:23 [ 39] [ 2] [00] +19:16:23 [ 41] [ 8] [06001900] +19:16:23 [ 49] [ 3] [418] +19:16:23 [ 54] [ 20] [0002418C000201616689] +19:16:23 ============================================================================ +19:16:23 Sending to : +19:16:23 ============================================================================ +19:16:23 + + +waiting on router queue for slot.... +19:16:24 ============================================================================ +19:16:24 Slot Id : <11> +19:16:24 Transaction Type : RESPONSE +19:16:24 Received From : +19:16:24 ============================================================================ +19:16:24 FNo. Len. Field Value +19:16:24 ============================================================================ +19:16:24 [ 1] [ 4] [0210] +19:16:24 [ 2] [ 16] [6688990105724601] +19:16:24 [ 3] [ 6] [010000] +19:16:24 [ 4] [ 12] [000100000000] +19:16:24 [ 11] [ 6] [835129] +19:16:24 [ 12] [ 6] [191616] +19:16:24 [ 15] [ 4] [0320] +19:16:24 [ 18] [ 4] [6011] +19:16:24 [ 32] [ 6] [621354] +19:16:24 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:16:24 [ 37] [ 12] [507903461765] +19:16:24 [ 38] [ 6] [141802] +19:16:24 [ 39] [ 2] [00] +19:16:24 [ 41] [ 8] [06001900] +19:16:24 [ 49] [ 3] [418] +19:16:24 [ 54] [ 20] [0002418C000201616689] +19:16:24 ============================================================================ +19:16:24 Calculate Source COMM Id = 0 +19:16:24 ============================================================================ +19:16:24 + + +waiting on router queue for slot.... +19:16:29 ============================================================================ +19:16:29 Slot Id : <9> +19:16:29 Transaction Type : REQUEST +19:16:29 Received From : +19:16:29 ============================================================================ +19:16:29 FNo. Len. Field Value +19:16:29 ============================================================================ +19:16:29 [ 1] [ 4] [0800] +19:16:29 [ 7] [ 10] [0320121535] +19:16:29 [ 11] [ 6] [157905] +19:16:29 [ 70] [ 3] [301] +19:16:29 ============================================================================ +19:16:29 + + +waiting on router queue for slot.... +19:16:29 Sending to : +19:16:29 ============================================================================ +19:16:29 ============================================================================ +19:16:29 Slot Id : <9> +19:16:29 Transaction Type : RESPONSE +19:16:29 Received From : +19:16:29 ============================================================================ +19:16:29 FNo. Len. Field Value +19:16:29 ============================================================================ +19:16:29 [ 1] [ 4] [0810] +19:16:29 [ 7] [ 10] [0320121535] +19:16:29 [ 11] [ 6] [157905] +19:16:29 [ 39] [ 2] [00] +19:16:29 [ 70] [ 3] [301] +19:16:29 ============================================================================ +19:16:29 Calculate Source COMM Id = 2 +19:16:29 ============================================================================ +19:16:29 + + +waiting on router queue for slot.... +19:16:44 ============================================================================ +19:16:44 Slot Id : <30> +19:16:44 Transaction Type : REQUEST +19:16:44 Received From : +19:16:44 ============================================================================ +19:16:44 FNo. Len. Field Value +19:16:44 ============================================================================ +19:16:44 [ 1] [ 4] [0800] +19:16:44 [ 7] [ 10] [0320121551] +19:16:44 [ 11] [ 6] [157906] +19:16:44 [ 70] [ 3] [301] +19:16:44 ============================================================================ +19:16:44 + + +waiting on router queue for slot.... +19:16:44 Sending to : +19:16:44 ============================================================================ +19:16:44 ============================================================================ +19:16:44 Slot Id : <30> +19:16:44 Transaction Type : RESPONSE +19:16:44 Received From : +19:16:44 ============================================================================ +19:16:44 FNo. Len. Field Value +19:16:44 ============================================================================ +19:16:44 [ 1] [ 4] [0810] +19:16:44 [ 7] [ 10] [0320121551] +19:16:44 [ 11] [ 6] [157906] +19:16:44 [ 39] [ 2] [00] +19:16:44 [ 70] [ 3] [301] +19:16:44 ============================================================================ +19:16:44 Calculate Source COMM Id = 2 +19:16:44 ============================================================================ +19:16:44 + + +waiting on router queue for slot.... +19:16:55 ============================================================================ +19:16:55 Slot Id : <461> +19:16:55 Transaction Type : REQUEST +19:16:55 Received From : +19:16:55 ============================================================================ +19:16:55 FNo. Len. Field Value +19:16:55 ============================================================================ +19:16:55 [ 1] [ 4] [0800] +19:16:55 [ 7] [ 10] [0320121602] +19:16:55 [ 11] [ 6] [157907] +19:16:55 [ 70] [ 3] [301] +19:16:55 ============================================================================ +19:16:55 + + +waiting on router queue for slot.... +19:16:55 Sending to : +19:16:55 ============================================================================ +19:16:55 ============================================================================ +19:16:55 Slot Id : <461> +19:16:55 Transaction Type : RESPONSE +19:16:55 Received From : +19:16:55 ============================================================================ +19:16:55 FNo. Len. Field Value +19:16:55 ============================================================================ +19:16:55 [ 1] [ 4] [0810] +19:16:55 [ 7] [ 10] [0320121602] +19:16:55 [ 11] [ 6] [157907] +19:16:55 [ 39] [ 2] [00] +19:16:55 [ 70] [ 3] [301] +19:16:55 ============================================================================ +19:16:55 Calculate Source COMM Id = 2 +19:16:55 ============================================================================ +19:16:55 + + +waiting on router queue for slot.... +19:16:57 ============================================================================ +19:16:57 Slot Id : <45> +19:16:57 Transaction Type : REQUEST +19:16:57 Received From : +19:16:57 ============================================================================ +19:16:57 FNo. Len. Field Value +19:16:57 ============================================================================ +19:16:57 [ 1] [ 4] [0800] +19:16:57 [ 2] [ 5] [02531] +19:16:57 [ 3] [ 6] [579198] +19:16:57 [ 7] [ 10] [0320121657] +19:16:57 [ 11] [ 6] [807531] +19:16:57 [ 15] [ 10] [0320121657] +19:16:57 [ 37] [ 11] [57919807531] +19:16:57 [ 70] [ 3] [001] +19:16:57 ============================================================================ +19:16:57 + + +waiting on router queue for slot.... +19:16:57 ============================================================================ +19:16:57 Slot Id : <45> +19:16:57 Transaction Type : RESPONSE +19:16:57 Received From : +19:16:57 ============================================================================ +19:16:57 FNo. Len. Field Value +19:16:57 ============================================================================ +19:16:57 [ 1] [ 4] [0810] +19:16:57 [ 7] [ 10] [0320121657] +19:16:57 [ 11] [ 6] [807531] +19:16:57 [ 15] [ 4] [0320] +19:16:57 [ 37] [ 12] [57919807531] +19:16:57 [ 39] [ 2] [00] +19:16:57 [ 70] [ 3] [001] +19:16:57 ============================================================================ +19:16:57 Sending to : +19:16:57 ============================================================================ +19:16:57 + + +waiting on router queue for slot.... +19:17:01 ============================================================================ +19:17:01 Slot Id : <37> +19:17:01 Transaction Type : REQUEST +19:17:01 Received From : +19:17:01 ============================================================================ +19:17:01 FNo. Len. Field Value +19:17:01 ============================================================================ +19:17:01 [ 1] [ 4] [0800] +19:17:01 [ 7] [ 10] [0321022849] +19:17:01 [ 11] [ 6] [192849] +19:17:01 [ 37] [ 12] [57919192849] +19:17:01 [ 70] [ 3] [301] +19:17:01 ============================================================================ +19:17:01 + + +waiting on router queue for slot.... +19:17:01 Sending to : +19:17:01 ============================================================================ +19:17:01 ============================================================================ +19:17:01 Slot Id : <37> +19:17:01 Transaction Type : RESPONSE +19:17:01 Received From : +19:17:01 ============================================================================ +19:17:01 FNo. Len. Field Value +19:17:01 ============================================================================ +19:17:01 [ 1] [ 4] [0810] +19:17:01 [ 7] [ 10] [0321022849] +19:17:01 [ 11] [ 6] [192849] +19:17:01 [ 37] [ 12] [579191928490] +19:17:01 [ 39] [ 2] [00] +19:17:01 [ 70] [ 3] [810] +19:17:01 ============================================================================ +19:17:01 Calculate Source COMM Id = 6 +19:17:01 ============================================================================ +19:17:01 + + +waiting on router queue for slot.... +19:17:02 ============================================================================ +19:17:02 Slot Id : <36> +19:17:02 Transaction Type : REQUEST +19:17:02 Received From : +19:17:02 ============================================================================ +19:17:02 FNo. Len. Field Value +19:17:02 ============================================================================ +19:17:02 [ 1] [ 4] [0200] +19:17:02 [ 2] [ 16] [1808931000020352] +19:17:02 [ 3] [ 6] [010000] +19:17:02 [ 4] [ 12] [000100000000] +19:17:02 [ 7] [ 10] [0320191451] +19:17:02 [ 11] [ 6] [955943] +19:17:02 [ 12] [ 6] [191451] +19:17:02 [ 13] [ 4] [0320] +19:17:02 [ 15] [ 4] [0320] +19:17:02 [ 18] [ 4] [6011] +19:17:02 [ 19] [ 3] [418] +19:17:02 [ 22] [ 3] [021] +19:17:02 [ 25] [ 2] [01] +19:17:02 [ 28] [ 9] [D00002000] +19:17:02 [ 32] [ 6] [668899] +19:17:02 [ 35] [ 27] [1808931000020352=1803500134] +19:17:02 [ 37] [ 12] [507902093482] +19:17:02 [ 41] [ 8] [03020021] +19:17:02 [ 42] [ 15] [APT ] +19:17:02 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +19:17:02 [ 49] [ 3] [418] +19:17:02 [ 52] [ 16] [88C821A781A6DFFB] +19:17:02 ============================================================================ +19:17:02 + + +waiting on router queue for slot.... +19:17:02 Sending to : +19:17:02 ============================================================================ +19:17:02 Sending to : +19:17:02 ============================================================================ +19:17:02 ============================================================================ +19:17:02 Slot Id : <36> +19:17:02 Transaction Type : REQUEST +19:17:02 Received From : +19:17:02 ============================================================================ +19:17:02 FNo. Len. Field Value +19:17:02 ============================================================================ +19:17:02 [ 1] [ 4] [0200] +19:17:02 [ 2] [ 16] [1808931000020352] +19:17:02 [ 3] [ 6] [010000] +19:17:02 [ 4] [ 12] [000100000000] +19:17:02 [ 7] [ 10] [0320191451] +19:17:02 [ 11] [ 6] [955943] +19:17:02 [ 12] [ 6] [191451] +19:17:02 [ 13] [ 4] [0320] +19:17:02 [ 15] [ 4] [0320] +19:17:02 [ 18] [ 4] [6011] +19:17:02 [ 19] [ 3] [418] +19:17:02 [ 22] [ 3] [021] +19:17:02 [ 25] [ 2] [01] +19:17:02 [ 28] [ 9] [D00002000] +19:17:02 [ 32] [ 6] [668899] +19:17:02 [ 35] [ 27] [1808931000020352=1803500134] +19:17:02 [ 37] [ 12] [507902093482] +19:17:02 [ 41] [ 8] [03020021] +19:17:02 [ 42] [ 15] [APT ] +19:17:02 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +19:17:02 [ 49] [ 3] [418] +19:17:02 [ 52] [ 16] [88C821A781A6DFFB] +19:17:02 ============================================================================ +19:17:02 + + +waiting on router queue for slot.... +19:17:02 Sending to : +19:17:02 ============================================================================ +19:17:02 ============================================================================ +19:17:02 Slot Id : <36> +19:17:02 Transaction Type : REQUEST +19:17:02 Received From : +19:17:02 ============================================================================ +19:17:02 FNo. Len. Field Value +19:17:02 ============================================================================ +19:17:02 [ 1] [ 4] [0200] +19:17:02 [ 2] [ 16] [1808931000020352] +19:17:02 [ 3] [ 6] [010000] +19:17:02 [ 4] [ 12] [000100000000] +19:17:02 [ 7] [ 10] [0320191451] +19:17:02 [ 11] [ 6] [955943] +19:17:02 [ 12] [ 6] [191451] +19:17:02 [ 13] [ 4] [0320] +19:17:02 [ 15] [ 4] [0320] +19:17:02 [ 18] [ 4] [6011] +19:17:02 [ 19] [ 3] [418] +19:17:02 [ 22] [ 3] [021] +19:17:02 [ 25] [ 2] [01] +19:17:02 [ 28] [ 9] [D00002000] +19:17:02 [ 32] [ 6] [668899] +19:17:02 [ 35] [ 27] [1808931000020352=1803500134] +19:17:02 [ 37] [ 12] [507902093482] +19:17:02 [ 41] [ 8] [03020021] +19:17:02 [ 42] [ 15] [APT ] +19:17:02 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +19:17:02 [ 49] [ 3] [418] +19:17:02 [ 52] [ 16] [2EB1DA4B61E1CB4E] +19:17:02 ============================================================================ +19:17:02 + + +waiting on router queue for slot.... +19:17:02 Sending to : <2> +19:17:02 ============================================================================ +19:17:06 ============================================================================ +19:17:06 Slot Id : <36> +19:17:06 Transaction Type : RESPONSE +19:17:06 Received From : +19:17:06 ============================================================================ +19:17:06 FNo. Len. Field Value +19:17:06 ============================================================================ +19:17:06 [ 1] [ 4] [0210] +19:17:06 [ 2] [ 16] [1808931000020352] +19:17:06 [ 3] [ 6] [010000] +19:17:06 [ 4] [ 12] [000100000000] +19:17:06 [ 6] [ 12] [000100000000] +19:17:06 [ 7] [ 10] [0320191451] +19:17:06 [ 11] [ 6] [955943] +19:17:06 [ 12] [ 6] [191451] +19:17:06 [ 13] [ 4] [0320] +19:17:06 [ 18] [ 4] [6011] +19:17:06 [ 19] [ 3] [418] +19:17:06 [ 22] [ 3] [021] +19:17:06 [ 32] [ 6] [668899] +19:17:06 [ 35] [ 27] [1808931000020352=1803500134] +19:17:06 [ 37] [ 12] [507902093482] +19:17:06 [ 38] [ 6] [955943] +19:17:06 [ 39] [ 2] [00] +19:17:06 [ 41] [ 8] [03020021] +19:17:06 [ 49] [ 3] [418] +19:17:06 [ 52] [ 16] [2EB1DA4B61E1CB4E] +19:17:06 [ 54] [ 20] [1001418C000023286700] +19:17:06 ============================================================================ +19:17:06 Sending to : +19:17:06 ============================================================================ +19:17:06 + + +waiting on router queue for slot.... +19:17:08 ============================================================================ +19:17:08 Slot Id : <36> +19:17:08 Transaction Type : RESPONSE +19:17:08 Received From : +19:17:08 ============================================================================ +19:17:08 FNo. Len. Field Value +19:17:08 ============================================================================ +19:17:08 [ 1] [ 4] [0210] +19:17:08 [ 2] [ 16] [1808931000020352] +19:17:08 [ 3] [ 6] [010000] +19:17:08 [ 4] [ 12] [000100000000] +19:17:08 [ 6] [ 12] [000100000000] +19:17:08 [ 7] [ 10] [0320191451] +19:17:08 [ 11] [ 6] [955943] +19:17:08 [ 12] [ 6] [191451] +19:17:08 [ 13] [ 4] [0320] +19:17:08 [ 18] [ 4] [6011] +19:17:08 [ 19] [ 3] [418] +19:17:08 [ 22] [ 3] [021] +19:17:08 [ 32] [ 6] [668899] +19:17:08 [ 35] [ 27] [1808931000020352=1803500134] +19:17:08 [ 37] [ 12] [507902093482] +19:17:08 [ 38] [ 6] [955943] +19:17:08 [ 39] [ 2] [00] +19:17:08 [ 41] [ 8] [03020021] +19:17:08 [ 49] [ 3] [418] +19:17:08 [ 52] [ 16] [2EB1DA4B61E1CB4E] +19:17:08 [ 54] [ 20] [1001418C000023286700] +19:17:08 ============================================================================ +19:17:08 Calculate Source COMM Id = 4 +19:17:08 ============================================================================ +19:17:08 + + +waiting on router queue for slot.... +19:17:13 ============================================================================ +19:17:13 Slot Id : <40> +19:17:13 Transaction Type : REQUEST +19:17:13 Received From : +19:17:13 ============================================================================ +19:17:13 FNo. Len. Field Value +19:17:13 ============================================================================ +19:17:13 [ 1] [ 4] [0200] +19:17:13 [ 2] [ 16] [6688990105724601] +19:17:13 [ 3] [ 6] [010000] +19:17:13 [ 4] [ 12] [000100000000] +19:17:13 [ 7] [ 10] [0320191707] +19:17:13 [ 11] [ 6] [835225] +19:17:13 [ 12] [ 6] [191707] +19:17:13 [ 13] [ 4] [0320] +19:17:13 [ 15] [ 4] [0320] +19:17:13 [ 18] [ 4] [6011] +19:17:13 [ 22] [ 3] [900] +19:17:13 [ 25] [ 2] [02] +19:17:13 [ 28] [ 9] [D00002000] +19:17:13 [ 32] [ 6] [621354] +19:17:13 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:17:13 [ 37] [ 12] [507903461767] +19:17:13 [ 41] [ 8] [06001900] +19:17:13 [ 42] [ 15] [NATIVE ] +19:17:13 [ 43] [ 40] [La District La LAO] +19:17:13 [ 49] [ 3] [418] +19:17:13 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:17:13 ============================================================================ +19:17:13 + + +waiting on router queue for slot.... +19:17:13 Sending to : +19:17:13 ============================================================================ +19:17:13 Sending to : +19:17:13 ============================================================================ +19:17:13 ============================================================================ +19:17:13 Slot Id : <40> +19:17:13 Transaction Type : REQUEST +19:17:13 Received From : +19:17:13 ============================================================================ +19:17:13 FNo. Len. Field Value +19:17:13 ============================================================================ +19:17:13 [ 1] [ 4] [0200] +19:17:13 [ 2] [ 16] [6688990105724601] +19:17:13 [ 3] [ 6] [010000] +19:17:13 [ 4] [ 12] [000100000000] +19:17:13 [ 7] [ 10] [0320191707] +19:17:13 [ 11] [ 6] [835225] +19:17:13 [ 12] [ 6] [191707] +19:17:13 [ 13] [ 4] [0320] +19:17:13 [ 15] [ 4] [0320] +19:17:13 [ 18] [ 4] [6011] +19:17:13 [ 22] [ 3] [900] +19:17:13 [ 25] [ 2] [02] +19:17:13 [ 28] [ 9] [D00002000] +19:17:13 [ 32] [ 6] [621354] +19:17:13 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:17:13 [ 37] [ 12] [507903461767] +19:17:13 [ 41] [ 8] [06001900] +19:17:13 [ 42] [ 15] [NATIVE ] +19:17:13 [ 43] [ 40] [La District La LAO] +19:17:13 [ 49] [ 3] [418] +19:17:13 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:17:13 ============================================================================ +19:17:13 + + +waiting on router queue for slot.... +19:17:13 Sending to : +19:17:13 ============================================================================ +19:17:13 ============================================================================ +19:17:13 Slot Id : <40> +19:17:13 Transaction Type : REQUEST +19:17:13 Received From : +19:17:13 ============================================================================ +19:17:13 FNo. Len. Field Value +19:17:13 ============================================================================ +19:17:13 [ 1] [ 4] [0200] +19:17:13 [ 2] [ 16] [6688990105724601] +19:17:13 [ 3] [ 6] [010000] +19:17:13 [ 4] [ 12] [000100000000] +19:17:13 [ 7] [ 10] [0320191707] +19:17:13 [ 11] [ 6] [835225] +19:17:13 [ 12] [ 6] [191707] +19:17:13 [ 13] [ 4] [0320] +19:17:13 [ 15] [ 4] [0320] +19:17:13 [ 18] [ 4] [6011] +19:17:13 [ 22] [ 3] [900] +19:17:13 [ 25] [ 2] [02] +19:17:13 [ 28] [ 9] [D00002000] +19:17:13 [ 32] [ 6] [621354] +19:17:13 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:17:13 [ 37] [ 12] [507903461767] +19:17:13 [ 41] [ 8] [06001900] +19:17:13 [ 42] [ 15] [NATIVE ] +19:17:13 [ 43] [ 40] [La District La LAO] +19:17:13 [ 49] [ 3] [418] +19:17:13 [ 52] [ 16] [880D114C12D054AC] +19:17:13 ============================================================================ +19:17:13 + + +waiting on router queue for slot.... +19:17:13 Sending to : <4> +19:17:13 ============================================================================ +19:17:14 ============================================================================ +19:17:14 Slot Id : <40> +19:17:14 Transaction Type : RESPONSE +19:17:14 Received From : +19:17:14 ============================================================================ +19:17:14 FNo. Len. Field Value +19:17:14 ============================================================================ +19:17:14 [ 1] [ 4] [0210] +19:17:14 [ 2] [ 16] [6688990105724601] +19:17:14 [ 3] [ 6] [010000] +19:17:14 [ 4] [ 12] [000100000000] +19:17:14 [ 11] [ 6] [835225] +19:17:14 [ 12] [ 6] [191707] +19:17:14 [ 15] [ 4] [0320] +19:17:14 [ 18] [ 4] [6011] +19:17:14 [ 32] [ 6] [621354] +19:17:14 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:17:14 [ 37] [ 12] [507903461767] +19:17:14 [ 38] [ 6] [033511] +19:17:14 [ 39] [ 2] [00] +19:17:14 [ 41] [ 8] [06001900] +19:17:14 [ 49] [ 3] [418] +19:17:14 [ 54] [ 20] [0002418C000101416689] +19:17:14 ============================================================================ +19:17:14 Sending to : +19:17:14 ============================================================================ +19:17:14 + + +waiting on router queue for slot.... +19:17:15 ============================================================================ +19:17:15 Slot Id : <40> +19:17:15 Transaction Type : RESPONSE +19:17:15 Received From : +19:17:15 ============================================================================ +19:17:15 FNo. Len. Field Value +19:17:15 ============================================================================ +19:17:15 [ 1] [ 4] [0210] +19:17:15 [ 2] [ 16] [6688990105724601] +19:17:15 [ 3] [ 6] [010000] +19:17:15 [ 4] [ 12] [000100000000] +19:17:15 [ 11] [ 6] [835225] +19:17:15 [ 12] [ 6] [191707] +19:17:15 [ 15] [ 4] [0320] +19:17:15 [ 18] [ 4] [6011] +19:17:15 [ 32] [ 6] [621354] +19:17:15 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:17:15 [ 37] [ 12] [507903461767] +19:17:15 [ 38] [ 6] [033511] +19:17:15 [ 39] [ 2] [00] +19:17:15 [ 41] [ 8] [06001900] +19:17:15 [ 49] [ 3] [418] +19:17:15 [ 54] [ 20] [0002418C000101416689] +19:17:15 ============================================================================ +19:17:15 Calculate Source COMM Id = 0 +19:17:15 ============================================================================ +19:17:15 + + +waiting on router queue for slot.... +19:17:16 ============================================================================ +19:17:16 Slot Id : <18> +19:17:16 Transaction Type : REQUEST +19:17:16 Received From : +19:17:16 ============================================================================ +19:17:16 FNo. Len. Field Value +19:17:16 ============================================================================ +19:17:16 [ 1] [ 4] [0800] +19:17:16 [ 7] [ 10] [0320121623] +19:17:16 [ 11] [ 6] [157908] +19:17:16 [ 70] [ 3] [301] +19:17:16 ============================================================================ +19:17:16 + + +waiting on router queue for slot.... +19:17:16 Sending to : +19:17:16 ============================================================================ +19:17:16 ============================================================================ +19:17:16 Slot Id : <18> +19:17:16 Transaction Type : RESPONSE +19:17:16 Received From : +19:17:16 ============================================================================ +19:17:16 FNo. Len. Field Value +19:17:16 ============================================================================ +19:17:16 [ 1] [ 4] [0810] +19:17:16 [ 7] [ 10] [0320121623] +19:17:16 [ 11] [ 6] [157908] +19:17:16 [ 39] [ 2] [00] +19:17:16 [ 70] [ 3] [301] +19:17:16 ============================================================================ +19:17:16 Calculate Source COMM Id = 2 +19:17:16 ============================================================================ +19:17:16 + + +waiting on router queue for slot.... +19:17:29 ============================================================================ +19:17:29 Slot Id : <43> +19:17:29 Transaction Type : REQUEST +19:17:29 Received From : +19:17:29 ============================================================================ +19:17:29 FNo. Len. Field Value +19:17:29 ============================================================================ +19:17:29 [ 1] [ 4] [0800] +19:17:29 [ 7] [ 10] [0320121635] +19:17:29 [ 11] [ 6] [157909] +19:17:29 [ 70] [ 3] [301] +19:17:29 ============================================================================ +19:17:29 + + +waiting on router queue for slot.... +19:17:29 Sending to : +19:17:29 ============================================================================ +19:17:29 ============================================================================ +19:17:29 Slot Id : <43> +19:17:29 Transaction Type : RESPONSE +19:17:29 Received From : +19:17:29 ============================================================================ +19:17:29 FNo. Len. Field Value +19:17:29 ============================================================================ +19:17:29 [ 1] [ 4] [0810] +19:17:29 [ 7] [ 10] [0320121635] +19:17:29 [ 11] [ 6] [157909] +19:17:29 [ 39] [ 2] [00] +19:17:29 [ 70] [ 3] [301] +19:17:29 ============================================================================ +19:17:29 Calculate Source COMM Id = 2 +19:17:29 ============================================================================ +19:17:29 + + +waiting on router queue for slot.... +19:17:44 ============================================================================ +19:17:44 Slot Id : <28> +19:17:44 Transaction Type : REQUEST +19:17:44 Received From : +19:17:44 ============================================================================ +19:17:44 FNo. Len. Field Value +19:17:44 ============================================================================ +19:17:44 [ 1] [ 4] [0800] +19:17:44 [ 7] [ 10] [0320121651] +19:17:44 [ 11] [ 6] [157910] +19:17:44 [ 70] [ 3] [301] +19:17:44 ============================================================================ +19:17:44 + + +waiting on router queue for slot.... +19:17:44 Sending to : +19:17:44 ============================================================================ +19:17:44 ============================================================================ +19:17:44 Slot Id : <28> +19:17:44 Transaction Type : RESPONSE +19:17:44 Received From : +19:17:44 ============================================================================ +19:17:44 FNo. Len. Field Value +19:17:44 ============================================================================ +19:17:44 [ 1] [ 4] [0810] +19:17:44 [ 7] [ 10] [0320121651] +19:17:44 [ 11] [ 6] [157910] +19:17:44 [ 39] [ 2] [00] +19:17:44 [ 70] [ 3] [301] +19:17:44 ============================================================================ +19:17:44 Calculate Source COMM Id = 2 +19:17:44 ============================================================================ +19:17:44 + + +waiting on router queue for slot.... +19:17:59 ============================================================================ +19:17:59 Slot Id : <8> +19:17:59 Transaction Type : REQUEST +19:17:59 Received From : +19:17:59 ============================================================================ +19:17:59 FNo. Len. Field Value +19:17:59 ============================================================================ +19:17:59 [ 1] [ 4] [0800] +19:17:59 [ 2] [ 5] [02531] +19:17:59 [ 3] [ 6] [579198] +19:17:59 [ 7] [ 10] [0320121759] +19:17:59 [ 11] [ 6] [807532] +19:17:59 [ 15] [ 10] [0320121759] +19:17:59 [ 37] [ 11] [57919807532] +19:17:59 [ 70] [ 3] [001] +19:17:59 ============================================================================ +19:17:59 + + +waiting on router queue for slot.... +19:17:59 ============================================================================ +19:17:59 Slot Id : <8> +19:17:59 Transaction Type : RESPONSE +19:17:59 Received From : +19:17:59 ============================================================================ +19:17:59 FNo. Len. Field Value +19:17:59 ============================================================================ +19:17:59 [ 1] [ 4] [0810] +19:17:59 [ 7] [ 10] [0320121759] +19:17:59 [ 11] [ 6] [807532] +19:17:59 [ 15] [ 4] [0320] +19:17:59 [ 37] [ 12] [57919807532] +19:17:59 [ 39] [ 2] [00] +19:17:59 [ 70] [ 3] [001] +19:17:59 ============================================================================ +19:17:59 Sending to : +19:17:59 ============================================================================ +19:17:59 + + +waiting on router queue for slot.... +19:17:59 ============================================================================ +19:17:59 Slot Id : <497> +19:17:59 Transaction Type : REQUEST +19:17:59 Received From : +19:17:59 ============================================================================ +19:17:59 FNo. Len. Field Value +19:17:59 ============================================================================ +19:17:59 [ 1] [ 4] [0800] +19:17:59 [ 7] [ 10] [0320121706] +19:17:59 [ 11] [ 6] [157911] +19:17:59 [ 70] [ 3] [301] +19:17:59 ============================================================================ +19:17:59 + + +waiting on router queue for slot.... +19:17:59 Sending to : +19:17:59 ============================================================================ +19:17:59 ============================================================================ +19:17:59 Slot Id : <497> +19:17:59 Transaction Type : RESPONSE +19:17:59 Received From : +19:17:59 ============================================================================ +19:17:59 FNo. Len. Field Value +19:17:59 ============================================================================ +19:17:59 [ 1] [ 4] [0810] +19:17:59 [ 7] [ 10] [0320121706] +19:17:59 [ 11] [ 6] [157911] +19:17:59 [ 39] [ 2] [00] +19:17:59 [ 70] [ 3] [301] +19:17:59 ============================================================================ +19:17:59 Calculate Source COMM Id = 2 +19:17:59 ============================================================================ +19:17:59 + + +waiting on router queue for slot.... +19:18:01 ============================================================================ +19:18:01 Slot Id : <55> +19:18:01 Transaction Type : REQUEST +19:18:01 Received From : +19:18:01 ============================================================================ +19:18:01 FNo. Len. Field Value +19:18:01 ============================================================================ +19:18:01 [ 1] [ 4] [0200] +19:18:01 [ 2] [ 16] [6688990105724601] +19:18:01 [ 3] [ 6] [010000] +19:18:01 [ 4] [ 12] [000100000000] +19:18:01 [ 7] [ 10] [0320191755] +19:18:01 [ 11] [ 6] [835330] +19:18:01 [ 12] [ 6] [191755] +19:18:01 [ 13] [ 4] [0320] +19:18:01 [ 15] [ 4] [0320] +19:18:01 [ 18] [ 4] [6011] +19:18:01 [ 22] [ 3] [900] +19:18:01 [ 25] [ 2] [02] +19:18:01 [ 28] [ 9] [D00002000] +19:18:01 [ 32] [ 6] [621354] +19:18:01 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:18:01 [ 37] [ 12] [507903461769] +19:18:01 [ 41] [ 8] [06001900] +19:18:01 [ 42] [ 15] [NATIVE ] +19:18:01 [ 43] [ 40] [La District La LAO] +19:18:01 [ 49] [ 3] [418] +19:18:01 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:18:01 ============================================================================ +19:18:01 + + +waiting on router queue for slot.... +19:18:01 Sending to : +19:18:01 ============================================================================ +19:18:01 Sending to : +19:18:01 ============================================================================ +19:18:01 ============================================================================ +19:18:01 Slot Id : <55> +19:18:01 Transaction Type : REQUEST +19:18:01 Received From : +19:18:01 ============================================================================ +19:18:01 FNo. Len. Field Value +19:18:01 ============================================================================ +19:18:01 [ 1] [ 4] [0200] +19:18:01 [ 2] [ 16] [6688990105724601] +19:18:01 [ 3] [ 6] [010000] +19:18:01 [ 4] [ 12] [000100000000] +19:18:01 [ 7] [ 10] [0320191755] +19:18:01 [ 11] [ 6] [835330] +19:18:01 [ 12] [ 6] [191755] +19:18:01 [ 13] [ 4] [0320] +19:18:01 [ 15] [ 4] [0320] +19:18:01 [ 18] [ 4] [6011] +19:18:01 [ 22] [ 3] [900] +19:18:01 [ 25] [ 2] [02] +19:18:01 [ 28] [ 9] [D00002000] +19:18:01 [ 32] [ 6] [621354] +19:18:01 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:18:01 [ 37] [ 12] [507903461769] +19:18:01 [ 41] [ 8] [06001900] +19:18:01 [ 42] [ 15] [NATIVE ] +19:18:01 [ 43] [ 40] [La District La LAO] +19:18:01 [ 49] [ 3] [418] +19:18:01 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:18:01 ============================================================================ +19:18:01 + + +waiting on router queue for slot.... +19:18:01 Sending to : +19:18:01 ============================================================================ +19:18:01 ============================================================================ +19:18:01 Slot Id : <55> +19:18:01 Transaction Type : REQUEST +19:18:01 Received From : +19:18:01 ============================================================================ +19:18:01 FNo. Len. Field Value +19:18:01 ============================================================================ +19:18:01 [ 1] [ 4] [0200] +19:18:01 [ 2] [ 16] [6688990105724601] +19:18:01 [ 3] [ 6] [010000] +19:18:01 [ 4] [ 12] [000100000000] +19:18:01 [ 7] [ 10] [0320191755] +19:18:01 [ 11] [ 6] [835330] +19:18:01 [ 12] [ 6] [191755] +19:18:01 [ 13] [ 4] [0320] +19:18:01 [ 15] [ 4] [0320] +19:18:01 [ 18] [ 4] [6011] +19:18:01 [ 22] [ 3] [900] +19:18:01 [ 25] [ 2] [02] +19:18:01 [ 28] [ 9] [D00002000] +19:18:01 [ 32] [ 6] [621354] +19:18:01 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:18:01 [ 37] [ 12] [507903461769] +19:18:01 [ 41] [ 8] [06001900] +19:18:01 [ 42] [ 15] [NATIVE ] +19:18:01 [ 43] [ 40] [La District La LAO] +19:18:01 [ 49] [ 3] [418] +19:18:01 [ 52] [ 16] [880D114C12D054AC] +19:18:01 ============================================================================ +19:18:01 + + +waiting on router queue for slot.... +19:18:01 Sending to : <4> +19:18:01 ============================================================================ +19:18:01 ============================================================================ +19:18:01 Slot Id : <55> +19:18:01 Transaction Type : RESPONSE +19:18:01 Received From : +19:18:01 ============================================================================ +19:18:01 FNo. Len. Field Value +19:18:01 ============================================================================ +19:18:01 [ 1] [ 4] [0210] +19:18:01 [ 2] [ 16] [6688990105724601] +19:18:01 [ 3] [ 6] [010000] +19:18:01 [ 4] [ 12] [000100000000] +19:18:01 [ 11] [ 6] [835330] +19:18:01 [ 12] [ 6] [191755] +19:18:01 [ 15] [ 4] [0320] +19:18:01 [ 18] [ 4] [6011] +19:18:01 [ 32] [ 6] [621354] +19:18:01 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:18:01 [ 37] [ 12] [507903461769] +19:18:01 [ 39] [ 2] [51] +19:18:01 [ 41] [ 8] [06001900] +19:18:01 [ 49] [ 3] [418] +19:18:01 [ 54] [ 0] [] +19:18:01 ============================================================================ +19:18:01 Sending to : +19:18:01 ============================================================================ +19:18:01 + + +waiting on router queue for slot.... +19:18:02 ============================================================================ +19:18:02 Slot Id : <55> +19:18:02 Transaction Type : RESPONSE +19:18:02 Received From : +19:18:02 ============================================================================ +19:18:02 FNo. Len. Field Value +19:18:02 ============================================================================ +19:18:02 [ 1] [ 4] [0210] +19:18:02 [ 2] [ 16] [6688990105724601] +19:18:02 [ 3] [ 6] [010000] +19:18:02 [ 4] [ 12] [000100000000] +19:18:02 [ 11] [ 6] [835330] +19:18:02 [ 12] [ 6] [191755] +19:18:02 [ 15] [ 4] [0320] +19:18:02 [ 18] [ 4] [6011] +19:18:02 [ 32] [ 6] [621354] +19:18:02 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:18:02 [ 37] [ 12] [507903461769] +19:18:02 [ 39] [ 2] [51] +19:18:02 [ 41] [ 8] [06001900] +19:18:02 [ 49] [ 3] [418] +19:18:02 [ 54] [ 0] [] +19:18:02 ============================================================================ +19:18:02 Calculate Source COMM Id = 0 +19:18:02 ============================================================================ +19:18:02 + + +waiting on router queue for slot.... +19:18:06 ============================================================================ +19:18:06 Slot Id : <7> +19:18:06 Transaction Type : REQUEST +19:18:06 Received From : +19:18:06 ============================================================================ +19:18:06 FNo. Len. Field Value +19:18:06 ============================================================================ +19:18:06 [ 1] [ 4] [0800] +19:18:06 [ 7] [ 10] [0321022954] +19:18:06 [ 11] [ 6] [192954] +19:18:06 [ 37] [ 12] [57919192954] +19:18:06 [ 70] [ 3] [301] +19:18:06 ============================================================================ +19:18:06 + + +waiting on router queue for slot.... +19:18:06 Sending to : +19:18:06 ============================================================================ +19:18:06 ============================================================================ +19:18:06 Slot Id : <7> +19:18:06 Transaction Type : RESPONSE +19:18:06 Received From : +19:18:06 ============================================================================ +19:18:06 FNo. Len. Field Value +19:18:06 ============================================================================ +19:18:06 [ 1] [ 4] [0810] +19:18:06 [ 7] [ 10] [0321022954] +19:18:06 [ 11] [ 6] [192954] +19:18:06 [ 37] [ 12] [579191929540] +19:18:06 [ 39] [ 2] [00] +19:18:06 [ 70] [ 3] [810] +19:18:06 ============================================================================ +19:18:06 Calculate Source COMM Id = 6 +19:18:06 ============================================================================ +19:18:06 + + +waiting on router queue for slot.... +19:18:15 ============================================================================ +19:18:15 Slot Id : <467> +19:18:15 Transaction Type : REQUEST +19:18:15 Received From : +19:18:15 ============================================================================ +19:18:15 FNo. Len. Field Value +19:18:15 ============================================================================ +19:18:15 [ 1] [ 4] [0800] +19:18:15 [ 7] [ 10] [0320121721] +19:18:15 [ 11] [ 6] [157912] +19:18:15 [ 70] [ 3] [301] +19:18:15 ============================================================================ +19:18:15 + + +waiting on router queue for slot.... +19:18:15 Sending to : +19:18:15 ============================================================================ +19:18:15 ============================================================================ +19:18:15 Slot Id : <467> +19:18:15 Transaction Type : RESPONSE +19:18:15 Received From : +19:18:15 ============================================================================ +19:18:15 FNo. Len. Field Value +19:18:15 ============================================================================ +19:18:15 [ 1] [ 4] [0810] +19:18:15 [ 7] [ 10] [0320121721] +19:18:15 [ 11] [ 6] [157912] +19:18:15 [ 39] [ 2] [00] +19:18:15 [ 70] [ 3] [301] +19:18:15 ============================================================================ +19:18:15 Calculate Source COMM Id = 2 +19:18:15 ============================================================================ +19:18:15 + + +waiting on router queue for slot.... +19:18:16 ============================================================================ +19:18:16 Slot Id : <61> +19:18:16 Transaction Type : REQUEST +19:18:16 Received From : +19:18:16 ============================================================================ +19:18:16 FNo. Len. Field Value +19:18:16 ============================================================================ +19:18:16 [ 1] [ 4] [0200] +19:18:16 [ 2] [ 16] [6213543000125749] +19:18:16 [ 3] [ 6] [311000] +19:18:16 [ 4] [ 12] [000000000000] +19:18:16 [ 7] [ 10] [0320192601] +19:18:16 [ 11] [ 6] [450670] +19:18:16 [ 12] [ 6] [192601] +19:18:16 [ 13] [ 4] [0320] +19:18:16 [ 14] [ 4] [4912] +19:18:16 [ 15] [ 4] [0320] +19:18:16 [ 18] [ 4] [6011] +19:18:16 [ 22] [ 3] [900] +19:18:16 [ 25] [ 2] [02] +19:18:16 [ 28] [ 9] [000000000] +19:18:16 [ 32] [ 6] [220699] +19:18:16 [ 35] [ 32] [6213543000125749=491212012574659] +19:18:16 [ 37] [ 12] [507900153118] +19:18:16 [ 41] [ 8] [03000300] +19:18:16 [ 42] [ 15] [APTRA ] +19:18:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:18:16 [ 49] [ 3] [418] +19:18:16 [ 52] [ 16] [FE5D78956CC412EF] +19:18:16 ============================================================================ +19:18:16 + + +waiting on router queue for slot.... +19:18:16 Sending to : +19:18:16 ============================================================================ +19:18:16 Sending to : +19:18:16 ============================================================================ +19:18:16 ============================================================================ +19:18:16 Slot Id : <61> +19:18:16 Transaction Type : REQUEST +19:18:16 Received From : +19:18:16 ============================================================================ +19:18:16 FNo. Len. Field Value +19:18:16 ============================================================================ +19:18:16 [ 1] [ 4] [0200] +19:18:16 [ 2] [ 16] [6213543000125749] +19:18:16 [ 3] [ 6] [311000] +19:18:16 [ 4] [ 12] [000000000000] +19:18:16 [ 7] [ 10] [0320192601] +19:18:16 [ 11] [ 6] [450670] +19:18:16 [ 12] [ 6] [192601] +19:18:16 [ 13] [ 4] [0320] +19:18:16 [ 14] [ 4] [4912] +19:18:16 [ 15] [ 4] [0320] +19:18:16 [ 18] [ 4] [6011] +19:18:16 [ 22] [ 3] [900] +19:18:16 [ 25] [ 2] [02] +19:18:16 [ 28] [ 9] [000000000] +19:18:16 [ 32] [ 6] [220699] +19:18:16 [ 35] [ 32] [6213543000125749=491212012574659] +19:18:16 [ 37] [ 12] [507900153118] +19:18:16 [ 41] [ 8] [03000300] +19:18:16 [ 42] [ 15] [APTRA ] +19:18:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:18:16 [ 49] [ 3] [418] +19:18:16 [ 52] [ 16] [FE5D78956CC412EF] +19:18:16 ============================================================================ +19:18:16 + + +waiting on router queue for slot.... +19:18:16 Sending to : +19:18:16 ============================================================================ +19:18:16 ============================================================================ +19:18:16 Slot Id : <61> +19:18:16 Transaction Type : REQUEST +19:18:16 Received From : +19:18:16 ============================================================================ +19:18:16 FNo. Len. Field Value +19:18:16 ============================================================================ +19:18:16 [ 1] [ 4] [0200] +19:18:16 [ 2] [ 16] [6213543000125749] +19:18:16 [ 3] [ 6] [311000] +19:18:16 [ 4] [ 12] [000000000000] +19:18:16 [ 7] [ 10] [0320192601] +19:18:16 [ 11] [ 6] [450670] +19:18:16 [ 12] [ 6] [192601] +19:18:16 [ 13] [ 4] [0320] +19:18:16 [ 14] [ 4] [4912] +19:18:16 [ 15] [ 4] [0320] +19:18:16 [ 18] [ 4] [6011] +19:18:16 [ 22] [ 3] [900] +19:18:16 [ 25] [ 2] [02] +19:18:16 [ 28] [ 9] [000000000] +19:18:16 [ 32] [ 6] [220699] +19:18:16 [ 35] [ 32] [6213543000125749=491212012574659] +19:18:16 [ 37] [ 12] [507900153118] +19:18:16 [ 41] [ 8] [03000300] +19:18:16 [ 42] [ 15] [APTRA ] +19:18:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:18:16 [ 49] [ 3] [418] +19:18:16 [ 52] [ 16] [B93CD6821E871BC9] +19:18:16 ============================================================================ +19:18:16 + + +waiting on router queue for slot.... +19:18:16 Sending to : <0> +19:18:16 ============================================================================ +19:18:16 ============================================================================ +19:18:16 Slot Id : <61> +19:18:16 Transaction Type : RESPONSE +19:18:16 Received From : +19:18:16 ============================================================================ +19:18:16 FNo. Len. Field Value +19:18:16 ============================================================================ +19:18:16 [ 1] [ 4] [0210] +19:18:16 [ 2] [ 16] [6213543000125749] +19:18:16 [ 3] [ 6] [311000] +19:18:16 [ 4] [ 12] [000000000000] +19:18:16 [ 7] [ 10] [0320192601] +19:18:16 [ 11] [ 6] [450670] +19:18:16 [ 12] [ 6] [192601] +19:18:16 [ 13] [ 4] [0320] +19:18:16 [ 15] [ 4] [0320] +19:18:16 [ 18] [ 4] [6011] +19:18:16 [ 32] [ 6] [220699] +19:18:16 [ 35] [ 32] [6213543000125749=491212012574659] +19:18:16 [ 37] [ 12] [507900153118] +19:18:16 [ 38] [ 6] [387094] +19:18:16 [ 39] [ 2] [00] +19:18:16 [ 41] [ 8] [03000300] +19:18:16 [ 49] [ 3] [418] +19:18:16 [ 54] [ 40] [1001418C0000330915651002418C000033091565] +19:18:16 ============================================================================ +19:18:16 Sending to : +19:18:16 ============================================================================ +19:18:16 + + +waiting on router queue for slot.... +19:18:18 ============================================================================ +19:18:18 Slot Id : <61> +19:18:18 Transaction Type : RESPONSE +19:18:18 Received From : +19:18:18 ============================================================================ +19:18:18 FNo. Len. Field Value +19:18:18 ============================================================================ +19:18:18 [ 1] [ 4] [0210] +19:18:18 [ 2] [ 16] [6213543000125749] +19:18:18 [ 3] [ 6] [311000] +19:18:18 [ 4] [ 12] [000000000000] +19:18:18 [ 7] [ 10] [0320192601] +19:18:18 [ 11] [ 6] [450670] +19:18:18 [ 12] [ 6] [192601] +19:18:18 [ 13] [ 4] [0320] +19:18:18 [ 15] [ 4] [0320] +19:18:18 [ 18] [ 4] [6011] +19:18:18 [ 32] [ 6] [220699] +19:18:18 [ 35] [ 32] [6213543000125749=491212012574659] +19:18:18 [ 37] [ 12] [507900153118] +19:18:18 [ 38] [ 6] [387094] +19:18:18 [ 39] [ 2] [00] +19:18:18 [ 41] [ 8] [03000300] +19:18:18 [ 49] [ 3] [418] +19:18:18 [ 54] [ 40] [1001418C0000330915651002418C000033091565] +19:18:18 ============================================================================ +19:18:18 Calculate Source COMM Id = 1 +19:18:18 ============================================================================ +19:18:18 + + +waiting on router queue for slot.... +19:18:19 ============================================================================ +19:18:19 Slot Id : <52> +19:18:19 Transaction Type : REQUEST +19:18:19 Received From : +19:18:19 ============================================================================ +19:18:19 FNo. Len. Field Value +19:18:19 ============================================================================ +19:18:19 [ 1] [ 4] [0800] +19:18:19 [ 7] [ 10] [0320121814] +19:18:19 [ 11] [ 6] [000092] +19:18:19 [ 37] [ 12] [507919000092] +19:18:19 [ 70] [ 3] [001] +19:18:19 ============================================================================ +19:18:19 + + +waiting on router queue for slot.... +19:18:19 Sending to : +19:18:19 ============================================================================ +19:18:19 ============================================================================ +19:18:19 Slot Id : <52> +19:18:19 Transaction Type : RESPONSE +19:18:19 Received From : +19:18:19 ============================================================================ +19:18:19 FNo. Len. Field Value +19:18:19 ============================================================================ +19:18:19 [ 1] [ 4] [0810] +19:18:19 [ 7] [ 10] [0320121814] +19:18:19 [ 11] [ 6] [000092] +19:18:19 [ 37] [ 12] [507919000092] +19:18:19 [ 39] [ 2] [00] +19:18:19 [ 70] [ 3] [001] +19:18:19 ============================================================================ +19:18:19 Calculate Source COMM Id = 0 +19:18:19 ============================================================================ +19:18:19 + + +waiting on router queue for slot.... +19:18:33 ============================================================================ +19:18:33 Slot Id : <44> +19:18:33 Transaction Type : REQUEST +19:18:33 Received From : +19:18:33 ============================================================================ +19:18:33 FNo. Len. Field Value +19:18:33 ============================================================================ +19:18:33 [ 1] [ 4] [0800] +19:18:33 [ 7] [ 10] [0320121737] +19:18:33 [ 11] [ 6] [157913] +19:18:33 [ 70] [ 3] [301] +19:18:33 ============================================================================ +19:18:33 + + +waiting on router queue for slot.... +19:18:33 Sending to : +19:18:33 ============================================================================ +19:18:33 ============================================================================ +19:18:33 Slot Id : <44> +19:18:33 Transaction Type : RESPONSE +19:18:33 Received From : +19:18:33 ============================================================================ +19:18:33 FNo. Len. Field Value +19:18:33 ============================================================================ +19:18:33 [ 1] [ 4] [0810] +19:18:33 [ 7] [ 10] [0320121737] +19:18:33 [ 11] [ 6] [157913] +19:18:33 [ 39] [ 2] [00] +19:18:33 [ 70] [ 3] [301] +19:18:33 ============================================================================ +19:18:33 Calculate Source COMM Id = 2 +19:18:33 ============================================================================ +19:18:33 + + +waiting on router queue for slot.... +19:18:39 ============================================================================ +19:18:39 Slot Id : <50> +19:18:39 Transaction Type : REQUEST +19:18:39 Received From : +19:18:39 ============================================================================ +19:18:39 FNo. Len. Field Value +19:18:39 ============================================================================ +19:18:39 [ 1] [ 4] [0200] +19:18:39 [ 2] [ 16] [6688990600342008] +19:18:39 [ 3] [ 6] [010000] +19:18:39 [ 4] [ 12] [000010000000] +19:18:39 [ 7] [ 10] [0320191833] +19:18:39 [ 11] [ 6] [835404] +19:18:39 [ 12] [ 6] [191833] +19:18:39 [ 13] [ 4] [0320] +19:18:39 [ 15] [ 4] [0320] +19:18:39 [ 18] [ 4] [6011] +19:18:39 [ 22] [ 3] [900] +19:18:39 [ 25] [ 2] [02] +19:18:39 [ 28] [ 9] [D00002000] +19:18:39 [ 32] [ 6] [621354] +19:18:39 [ 35] [ 37] [6688990600342008=40100061200885700000] +19:18:39 [ 37] [ 12] [507903667722] +19:18:39 [ 41] [ 8] [16001900] +19:18:39 [ 42] [ 15] [NATIVE ] +19:18:39 [ 43] [ 40] [Naxaithong Unit02 Xaythany LAO] +19:18:39 [ 49] [ 3] [418] +19:18:39 [ 52] [ 16] [3CBCCDFF7878A2DE] +19:18:39 ============================================================================ +19:18:39 + + +waiting on router queue for slot.... +19:18:39 Sending to : +19:18:39 ============================================================================ +19:18:39 Sending to : +19:18:39 ============================================================================ +19:18:39 ============================================================================ +19:18:39 Slot Id : <50> +19:18:39 Transaction Type : REQUEST +19:18:39 Received From : +19:18:39 ============================================================================ +19:18:39 FNo. Len. Field Value +19:18:39 ============================================================================ +19:18:39 [ 1] [ 4] [0200] +19:18:39 [ 2] [ 16] [6688990600342008] +19:18:39 [ 3] [ 6] [010000] +19:18:39 [ 4] [ 12] [000010000000] +19:18:39 [ 7] [ 10] [0320191833] +19:18:39 [ 11] [ 6] [835404] +19:18:39 [ 12] [ 6] [191833] +19:18:39 [ 13] [ 4] [0320] +19:18:39 [ 15] [ 4] [0320] +19:18:39 [ 18] [ 4] [6011] +19:18:39 [ 22] [ 3] [900] +19:18:39 [ 25] [ 2] [02] +19:18:39 [ 28] [ 9] [D00002000] +19:18:39 [ 32] [ 6] [621354] +19:18:39 [ 35] [ 37] [6688990600342008=40100061200885700000] +19:18:39 [ 37] [ 12] [507903667722] +19:18:39 [ 41] [ 8] [16001900] +19:18:39 [ 42] [ 15] [NATIVE ] +19:18:39 [ 43] [ 40] [Naxaithong Unit02 Xaythany LAO] +19:18:39 [ 49] [ 3] [418] +19:18:39 [ 52] [ 16] [3CBCCDFF7878A2DE] +19:18:39 ============================================================================ +19:18:39 + + +waiting on router queue for slot.... +19:18:39 Sending to : +19:18:39 ============================================================================ +19:18:39 ============================================================================ +19:18:39 Slot Id : <50> +19:18:39 Transaction Type : REQUEST +19:18:39 Received From : +19:18:39 ============================================================================ +19:18:39 FNo. Len. Field Value +19:18:39 ============================================================================ +19:18:39 [ 1] [ 4] [0200] +19:18:39 [ 2] [ 16] [6688990600342008] +19:18:39 [ 3] [ 6] [010000] +19:18:39 [ 4] [ 12] [000010000000] +19:18:39 [ 7] [ 10] [0320191833] +19:18:39 [ 11] [ 6] [835404] +19:18:39 [ 12] [ 6] [191833] +19:18:39 [ 13] [ 4] [0320] +19:18:39 [ 15] [ 4] [0320] +19:18:39 [ 18] [ 4] [6011] +19:18:39 [ 22] [ 3] [900] +19:18:39 [ 25] [ 2] [02] +19:18:39 [ 28] [ 9] [D00002000] +19:18:39 [ 32] [ 6] [621354] +19:18:39 [ 35] [ 37] [6688990600342008=40100061200885700000] +19:18:39 [ 37] [ 12] [507903667722] +19:18:39 [ 41] [ 8] [16001900] +19:18:39 [ 42] [ 15] [NATIVE ] +19:18:39 [ 43] [ 40] [Naxaithong Unit02 Xaythany LAO] +19:18:39 [ 49] [ 3] [418] +19:18:39 [ 52] [ 16] [9F3E24E58C96FB5C] +19:18:39 ============================================================================ +19:18:39 + + +waiting on router queue for slot.... +19:18:39 Sending to : <4> +19:18:39 ============================================================================ +19:18:39 ============================================================================ +19:18:39 Slot Id : <50> +19:18:39 Transaction Type : RESPONSE +19:18:39 Received From : +19:18:39 ============================================================================ +19:18:39 FNo. Len. Field Value +19:18:39 ============================================================================ +19:18:39 [ 1] [ 4] [0210] +19:18:39 [ 2] [ 16] [6688990600342008] +19:18:39 [ 3] [ 6] [010000] +19:18:39 [ 4] [ 12] [000010000000] +19:18:39 [ 7] [ 10] [0320191833] +19:18:39 [ 11] [ 6] [835404] +19:18:39 [ 12] [ 6] [191833] +19:18:39 [ 13] [ 4] [0320] +19:18:39 [ 15] [ 4] [0320] +19:18:39 [ 18] [ 4] [6011] +19:18:39 [ 22] [ 3] [021] +19:18:39 [ 32] [ 6] [621354] +19:18:39 [ 35] [ 37] [6688990600342008=40100061200885700000] +19:18:39 [ 37] [ 12] [507903667722] +19:18:39 [ 38] [ 6] [191629] +19:18:39 [ 39] [ 2] [55] +19:18:39 [ 41] [ 8] [16001900] +19:18:39 [ 49] [ 3] [418] +19:18:39 ============================================================================ +19:18:39 Sending to : +19:18:39 ============================================================================ +19:18:39 + + +waiting on router queue for slot.... +19:18:40 ============================================================================ +19:18:40 Slot Id : <50> +19:18:40 Transaction Type : RESPONSE +19:18:40 Received From : +19:18:40 ============================================================================ +19:18:40 FNo. Len. Field Value +19:18:40 ============================================================================ +19:18:40 [ 1] [ 4] [0210] +19:18:40 [ 2] [ 16] [6688990600342008] +19:18:40 [ 3] [ 6] [010000] +19:18:40 [ 4] [ 12] [000010000000] +19:18:40 [ 7] [ 10] [0320191833] +19:18:40 [ 11] [ 6] [835404] +19:18:40 [ 12] [ 6] [191833] +19:18:40 [ 13] [ 4] [0320] +19:18:40 [ 15] [ 4] [0320] +19:18:40 [ 18] [ 4] [6011] +19:18:40 [ 22] [ 3] [021] +19:18:40 [ 32] [ 6] [621354] +19:18:40 [ 35] [ 37] [6688990600342008=40100061200885700000] +19:18:40 [ 37] [ 12] [507903667722] +19:18:40 [ 38] [ 6] [191629] +19:18:40 [ 39] [ 2] [55] +19:18:40 [ 41] [ 8] [16001900] +19:18:40 [ 49] [ 3] [418] +19:18:40 ============================================================================ +19:18:40 Calculate Source COMM Id = 0 +19:18:40 ============================================================================ +19:18:40 + + +waiting on router queue for slot.... +19:18:46 ============================================================================ +19:18:46 Slot Id : <25> +19:18:46 Transaction Type : REQUEST +19:18:46 Received From : +19:18:46 ============================================================================ +19:18:46 FNo. Len. Field Value +19:18:46 ============================================================================ +19:18:46 [ 1] [ 4] [0800] +19:18:46 [ 7] [ 10] [0320121752] +19:18:46 [ 11] [ 6] [157914] +19:18:46 [ 70] [ 3] [301] +19:18:46 ============================================================================ +19:18:46 + + +waiting on router queue for slot.... +19:18:46 Sending to : +19:18:46 ============================================================================ +19:18:46 ============================================================================ +19:18:46 Slot Id : <25> +19:18:46 Transaction Type : RESPONSE +19:18:46 Received From : +19:18:46 ============================================================================ +19:18:46 FNo. Len. Field Value +19:18:46 ============================================================================ +19:18:46 [ 1] [ 4] [0810] +19:18:46 [ 7] [ 10] [0320121752] +19:18:46 [ 11] [ 6] [157914] +19:18:46 [ 39] [ 2] [00] +19:18:46 [ 70] [ 3] [301] +19:18:46 ============================================================================ +19:18:46 Calculate Source COMM Id = 2 +19:18:46 ============================================================================ +19:18:46 + + +waiting on router queue for slot.... +19:18:56 ============================================================================ +19:18:56 Slot Id : <60> +19:18:56 Transaction Type : REQUEST +19:18:56 Received From : +19:18:56 ============================================================================ +19:18:56 FNo. Len. Field Value +19:18:56 ============================================================================ +19:18:56 [ 1] [ 4] [0200] +19:18:56 [ 2] [ 16] [6213543000125749] +19:18:56 [ 3] [ 6] [011000] +19:18:56 [ 4] [ 12] [000025000000] +19:18:56 [ 7] [ 10] [0320192641] +19:18:56 [ 11] [ 6] [450671] +19:18:56 [ 12] [ 6] [192641] +19:18:56 [ 13] [ 4] [0320] +19:18:56 [ 14] [ 4] [4912] +19:18:56 [ 15] [ 4] [0320] +19:18:56 [ 18] [ 4] [6011] +19:18:56 [ 22] [ 3] [900] +19:18:56 [ 25] [ 2] [02] +19:18:56 [ 28] [ 9] [D00002000] +19:18:56 [ 32] [ 6] [220699] +19:18:56 [ 35] [ 32] [6213543000125749=491212012574659] +19:18:56 [ 37] [ 12] [507900153119] +19:18:56 [ 41] [ 8] [03000300] +19:18:56 [ 42] [ 15] [APTRA ] +19:18:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:18:56 [ 49] [ 3] [418] +19:18:56 [ 52] [ 16] [FE5D78956CC412EF] +19:18:56 ============================================================================ +19:18:56 + + +waiting on router queue for slot.... +19:18:56 Sending to : +19:18:56 ============================================================================ +19:18:56 Sending to : +19:18:56 ============================================================================ +19:18:57 ============================================================================ +19:18:57 Slot Id : <60> +19:18:57 Transaction Type : REQUEST +19:18:57 Received From : +19:18:57 ============================================================================ +19:18:57 FNo. Len. Field Value +19:18:57 ============================================================================ +19:18:57 [ 1] [ 4] [0200] +19:18:57 [ 2] [ 16] [6213543000125749] +19:18:57 [ 3] [ 6] [011000] +19:18:57 [ 4] [ 12] [000025000000] +19:18:57 [ 7] [ 10] [0320192641] +19:18:57 [ 11] [ 6] [450671] +19:18:57 [ 12] [ 6] [192641] +19:18:57 [ 13] [ 4] [0320] +19:18:57 [ 14] [ 4] [4912] +19:18:57 [ 15] [ 4] [0320] +19:18:57 [ 18] [ 4] [6011] +19:18:57 [ 22] [ 3] [900] +19:18:57 [ 25] [ 2] [02] +19:18:57 [ 28] [ 9] [D00002000] +19:18:57 [ 32] [ 6] [220699] +19:18:57 [ 35] [ 32] [6213543000125749=491212012574659] +19:18:57 [ 37] [ 12] [507900153119] +19:18:57 [ 41] [ 8] [03000300] +19:18:57 [ 42] [ 15] [APTRA ] +19:18:57 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:18:57 [ 49] [ 3] [418] +19:18:57 [ 52] [ 16] [FE5D78956CC412EF] +19:18:57 ============================================================================ +19:18:57 + + +waiting on router queue for slot.... +19:18:57 Sending to : +19:18:57 ============================================================================ +19:18:57 ============================================================================ +19:18:57 Slot Id : <60> +19:18:57 Transaction Type : REQUEST +19:18:57 Received From : +19:18:57 ============================================================================ +19:18:57 FNo. Len. Field Value +19:18:57 ============================================================================ +19:18:57 [ 1] [ 4] [0200] +19:18:57 [ 2] [ 16] [6213543000125749] +19:18:57 [ 3] [ 6] [011000] +19:18:57 [ 4] [ 12] [000025000000] +19:18:57 [ 7] [ 10] [0320192641] +19:18:57 [ 11] [ 6] [450671] +19:18:57 [ 12] [ 6] [192641] +19:18:57 [ 13] [ 4] [0320] +19:18:57 [ 14] [ 4] [4912] +19:18:57 [ 15] [ 4] [0320] +19:18:57 [ 18] [ 4] [6011] +19:18:57 [ 22] [ 3] [900] +19:18:57 [ 25] [ 2] [02] +19:18:57 [ 28] [ 9] [D00002000] +19:18:57 [ 32] [ 6] [220699] +19:18:57 [ 35] [ 32] [6213543000125749=491212012574659] +19:18:57 [ 37] [ 12] [507900153119] +19:18:57 [ 41] [ 8] [03000300] +19:18:57 [ 42] [ 15] [APTRA ] +19:18:57 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:18:57 [ 49] [ 3] [418] +19:18:57 [ 52] [ 16] [B93CD6821E871BC9] +19:18:57 ============================================================================ +19:18:57 + + +waiting on router queue for slot.... +19:18:57 Sending to : <0> +19:18:57 ============================================================================ +19:18:57 ============================================================================ +19:18:57 Slot Id : <15> +19:18:57 Transaction Type : REQUEST +19:18:57 Received From : +19:18:57 ============================================================================ +19:18:57 FNo. Len. Field Value +19:18:57 ============================================================================ +19:18:57 [ 1] [ 4] [0800] +19:18:57 [ 7] [ 10] [0320121803] +19:18:57 [ 11] [ 6] [157915] +19:18:57 [ 70] [ 3] [301] +19:18:57 ============================================================================ +19:18:57 + + +waiting on router queue for slot.... +19:18:57 Sending to : +19:18:57 ============================================================================ +19:18:57 ============================================================================ +19:18:57 Slot Id : <15> +19:18:57 Transaction Type : RESPONSE +19:18:57 Received From : +19:18:57 ============================================================================ +19:18:57 FNo. Len. Field Value +19:18:57 ============================================================================ +19:18:57 [ 1] [ 4] [0810] +19:18:57 [ 7] [ 10] [0320121803] +19:18:57 [ 11] [ 6] [157915] +19:18:57 [ 39] [ 2] [00] +19:18:57 [ 70] [ 3] [301] +19:18:57 ============================================================================ +19:18:57 Calculate Source COMM Id = 2 +19:18:57 ============================================================================ +19:18:57 + + +waiting on router queue for slot.... +19:18:57 ============================================================================ +19:18:57 Slot Id : <60> +19:18:57 Transaction Type : RESPONSE +19:18:57 Received From : +19:18:57 ============================================================================ +19:18:57 FNo. Len. Field Value +19:18:57 ============================================================================ +19:18:57 [ 1] [ 4] [0210] +19:18:57 [ 2] [ 16] [6213543000125749] +19:18:57 [ 3] [ 6] [011000] +19:18:57 [ 4] [ 12] [000025000000] +19:18:57 [ 7] [ 10] [0320192641] +19:18:57 [ 11] [ 6] [450671] +19:18:57 [ 12] [ 6] [192641] +19:18:57 [ 13] [ 4] [0320] +19:18:57 [ 15] [ 4] [0320] +19:18:57 [ 18] [ 4] [6011] +19:18:57 [ 32] [ 6] [220699] +19:18:57 [ 35] [ 32] [6213543000125749=491212012574659] +19:18:57 [ 37] [ 12] [507900153119] +19:18:57 [ 38] [ 6] [880296] +19:18:57 [ 39] [ 2] [00] +19:18:57 [ 41] [ 8] [03000300] +19:18:57 [ 49] [ 3] [418] +19:18:57 [ 54] [ 40] [1001418C0000078915651002418C000007891565] +19:18:57 ============================================================================ +19:18:57 Sending to : +19:18:57 ============================================================================ +19:18:57 + + +waiting on router queue for slot.... +19:18:58 ============================================================================ +19:18:58 Slot Id : <478> +19:18:58 Transaction Type : REQUEST +19:18:58 Received From : +19:18:58 ============================================================================ +19:18:58 FNo. Len. Field Value +19:18:58 ============================================================================ +19:18:58 [ 1] [ 4] [0200] +19:18:58 [ 2] [ 16] [6688990600342008] +19:18:58 [ 3] [ 6] [010000] +19:18:58 [ 4] [ 12] [000010000000] +19:18:58 [ 7] [ 10] [0320191853] +19:18:58 [ 11] [ 6] [835458] +19:18:58 [ 12] [ 6] [191853] +19:18:58 [ 13] [ 4] [0320] +19:18:58 [ 15] [ 4] [0320] +19:18:58 [ 18] [ 4] [6011] +19:18:58 [ 22] [ 3] [900] +19:18:58 [ 25] [ 2] [02] +19:18:58 [ 28] [ 9] [D00002000] +19:18:58 [ 32] [ 6] [621354] +19:18:58 [ 35] [ 37] [6688990600342008=40100061200885700000] +19:18:58 [ 37] [ 12] [507903667724] +19:18:58 [ 41] [ 8] [16001900] +19:18:58 [ 42] [ 15] [NATIVE ] +19:18:58 [ 43] [ 40] [Naxaithong Unit02 Xaythany LAO] +19:18:58 [ 49] [ 3] [418] +19:18:58 [ 52] [ 16] [3CBCCDFF7878A2DE] +19:18:58 ============================================================================ +19:18:58 + + +waiting on router queue for slot.... +19:18:58 Sending to : +19:18:58 ============================================================================ +19:18:58 Sending to : +19:18:58 ============================================================================ +19:18:59 ============================================================================ +19:18:59 Slot Id : <60> +19:18:59 Transaction Type : RESPONSE +19:18:59 Received From : +19:18:59 ============================================================================ +19:18:59 FNo. Len. Field Value +19:18:59 ============================================================================ +19:18:59 [ 1] [ 4] [0210] +19:18:59 [ 2] [ 16] [6213543000125749] +19:18:59 [ 3] [ 6] [011000] +19:18:59 [ 4] [ 12] [000025000000] +19:18:59 [ 7] [ 10] [0320192641] +19:18:59 [ 11] [ 6] [450671] +19:18:59 [ 12] [ 6] [192641] +19:18:59 [ 13] [ 4] [0320] +19:18:59 [ 15] [ 4] [0320] +19:18:59 [ 18] [ 4] [6011] +19:18:59 [ 32] [ 6] [220699] +19:18:59 [ 35] [ 32] [6213543000125749=491212012574659] +19:18:59 [ 37] [ 12] [507900153119] +19:18:59 [ 38] [ 6] [880296] +19:18:59 [ 39] [ 2] [00] +19:18:59 [ 41] [ 8] [03000300] +19:18:59 [ 49] [ 3] [418] +19:18:59 [ 54] [ 40] [1001418C0000078915651002418C000007891565] +19:18:59 ============================================================================ +19:18:59 Calculate Source COMM Id = 1 +19:18:59 ============================================================================ +19:18:59 + + +waiting on router queue for slot.... +19:18:59 ============================================================================ +19:18:59 Slot Id : <478> +19:18:59 Transaction Type : REQUEST +19:18:59 Received From : +19:18:59 ============================================================================ +19:18:59 FNo. Len. Field Value +19:18:59 ============================================================================ +19:18:59 [ 1] [ 4] [0200] +19:18:59 [ 2] [ 16] [6688990600342008] +19:18:59 [ 3] [ 6] [010000] +19:18:59 [ 4] [ 12] [000010000000] +19:18:59 [ 7] [ 10] [0320191853] +19:18:59 [ 11] [ 6] [835458] +19:18:59 [ 12] [ 6] [191853] +19:18:59 [ 13] [ 4] [0320] +19:18:59 [ 15] [ 4] [0320] +19:18:59 [ 18] [ 4] [6011] +19:18:59 [ 22] [ 3] [900] +19:18:59 [ 25] [ 2] [02] +19:18:59 [ 28] [ 9] [D00002000] +19:18:59 [ 32] [ 6] [621354] +19:18:59 [ 35] [ 37] [6688990600342008=40100061200885700000] +19:18:59 [ 37] [ 12] [507903667724] +19:18:59 [ 41] [ 8] [16001900] +19:18:59 [ 42] [ 15] [NATIVE ] +19:18:59 [ 43] [ 40] [Naxaithong Unit02 Xaythany LAO] +19:18:59 [ 49] [ 3] [418] +19:18:59 [ 52] [ 16] [3CBCCDFF7878A2DE] +19:18:59 ============================================================================ +19:18:59 + + +waiting on router queue for slot.... +19:18:59 Sending to : +19:18:59 ============================================================================ +19:18:59 ============================================================================ +19:18:59 Slot Id : <478> +19:18:59 Transaction Type : REQUEST +19:18:59 Received From : +19:18:59 ============================================================================ +19:18:59 FNo. Len. Field Value +19:18:59 ============================================================================ +19:18:59 [ 1] [ 4] [0200] +19:18:59 [ 2] [ 16] [6688990600342008] +19:18:59 [ 3] [ 6] [010000] +19:18:59 [ 4] [ 12] [000010000000] +19:18:59 [ 7] [ 10] [0320191853] +19:18:59 [ 11] [ 6] [835458] +19:18:59 [ 12] [ 6] [191853] +19:18:59 [ 13] [ 4] [0320] +19:18:59 [ 15] [ 4] [0320] +19:18:59 [ 18] [ 4] [6011] +19:18:59 [ 22] [ 3] [900] +19:18:59 [ 25] [ 2] [02] +19:18:59 [ 28] [ 9] [D00002000] +19:18:59 [ 32] [ 6] [621354] +19:18:59 [ 35] [ 37] [6688990600342008=40100061200885700000] +19:18:59 [ 37] [ 12] [507903667724] +19:18:59 [ 41] [ 8] [16001900] +19:18:59 [ 42] [ 15] [NATIVE ] +19:18:59 [ 43] [ 40] [Naxaithong Unit02 Xaythany LAO] +19:18:59 [ 49] [ 3] [418] +19:18:59 [ 52] [ 16] [9F3E24E58C96FB5C] +19:18:59 ============================================================================ +19:18:59 + + +waiting on router queue for slot.... +19:18:59 Sending to : <4> +19:18:59 ============================================================================ +19:18:59 ============================================================================ +19:18:59 Slot Id : <478> +19:18:59 Transaction Type : RESPONSE +19:18:59 Received From : +19:18:59 ============================================================================ +19:18:59 FNo. Len. Field Value +19:18:59 ============================================================================ +19:18:59 [ 1] [ 4] [0210] +19:18:59 [ 2] [ 16] [6688990600342008] +19:18:59 [ 3] [ 6] [010000] +19:18:59 [ 4] [ 12] [000010000000] +19:18:59 [ 7] [ 10] [0320191853] +19:18:59 [ 11] [ 6] [835458] +19:18:59 [ 12] [ 6] [191853] +19:18:59 [ 13] [ 4] [0320] +19:18:59 [ 15] [ 4] [0320] +19:18:59 [ 18] [ 4] [6011] +19:18:59 [ 22] [ 3] [021] +19:18:59 [ 32] [ 6] [621354] +19:18:59 [ 35] [ 37] [6688990600342008=40100061200885700000] +19:18:59 [ 37] [ 12] [507903667724] +19:18:59 [ 38] [ 6] [191648] +19:18:59 [ 39] [ 2] [55] +19:18:59 [ 41] [ 8] [16001900] +19:18:59 [ 49] [ 3] [418] +19:18:59 ============================================================================ +19:18:59 Sending to : +19:18:59 ============================================================================ +19:18:59 + + +waiting on router queue for slot.... +19:19:00 ============================================================================ +19:19:00 Slot Id : <478> +19:19:00 Transaction Type : RESPONSE +19:19:00 Received From : +19:19:00 ============================================================================ +19:19:00 FNo. Len. Field Value +19:19:00 ============================================================================ +19:19:00 [ 1] [ 4] [0210] +19:19:00 [ 2] [ 16] [6688990600342008] +19:19:00 [ 3] [ 6] [010000] +19:19:00 [ 4] [ 12] [000010000000] +19:19:00 [ 7] [ 10] [0320191853] +19:19:00 [ 11] [ 6] [835458] +19:19:00 [ 12] [ 6] [191853] +19:19:00 [ 13] [ 4] [0320] +19:19:00 [ 15] [ 4] [0320] +19:19:00 [ 18] [ 4] [6011] +19:19:00 [ 22] [ 3] [021] +19:19:00 [ 32] [ 6] [621354] +19:19:00 [ 35] [ 37] [6688990600342008=40100061200885700000] +19:19:00 [ 37] [ 12] [507903667724] +19:19:00 [ 38] [ 6] [191648] +19:19:00 [ 39] [ 2] [55] +19:19:00 [ 41] [ 8] [16001900] +19:19:00 [ 49] [ 3] [418] +19:19:00 ============================================================================ +19:19:00 Calculate Source COMM Id = 0 +19:19:00 ============================================================================ +19:19:00 + + +waiting on router queue for slot.... +19:19:01 ============================================================================ +19:19:01 Slot Id : <63> +19:19:01 Transaction Type : REQUEST +19:19:01 Received From : +19:19:01 ============================================================================ +19:19:01 FNo. Len. Field Value +19:19:01 ============================================================================ +19:19:01 [ 1] [ 4] [0800] +19:19:01 [ 2] [ 5] [02531] +19:19:01 [ 3] [ 6] [579198] +19:19:01 [ 7] [ 10] [0320121901] +19:19:01 [ 11] [ 6] [807533] +19:19:01 [ 15] [ 10] [0320121901] +19:19:01 [ 37] [ 11] [57919807533] +19:19:01 [ 70] [ 3] [001] +19:19:01 ============================================================================ +19:19:01 + + +waiting on router queue for slot.... +19:19:01 ============================================================================ +19:19:01 Slot Id : <63> +19:19:01 Transaction Type : RESPONSE +19:19:01 Received From : +19:19:01 ============================================================================ +19:19:01 FNo. Len. Field Value +19:19:01 ============================================================================ +19:19:01 [ 1] [ 4] [0810] +19:19:01 [ 7] [ 10] [0320121901] +19:19:01 [ 11] [ 6] [807533] +19:19:01 [ 15] [ 4] [0320] +19:19:01 [ 37] [ 12] [57919807533] +19:19:01 [ 39] [ 2] [00] +19:19:01 [ 70] [ 3] [001] +19:19:01 ============================================================================ +19:19:01 Sending to : +19:19:01 ============================================================================ +19:19:01 + + +waiting on router queue for slot.... +19:19:07 ============================================================================ +19:19:07 Slot Id : <38> +19:19:07 Transaction Type : REQUEST +19:19:07 Received From : +19:19:07 ============================================================================ +19:19:07 FNo. Len. Field Value +19:19:07 ============================================================================ +19:19:07 [ 1] [ 4] [0200] +19:19:07 [ 2] [ 16] [1808930900004565] +19:19:07 [ 3] [ 6] [011000] +19:19:07 [ 4] [ 12] [000015000000] +19:19:07 [ 7] [ 10] [0320191902] +19:19:07 [ 11] [ 6] [835470] +19:19:07 [ 12] [ 6] [191902] +19:19:07 [ 13] [ 4] [0320] +19:19:07 [ 15] [ 4] [0320] +19:19:07 [ 18] [ 4] [6011] +19:19:07 [ 22] [ 3] [900] +19:19:07 [ 25] [ 2] [02] +19:19:07 [ 28] [ 9] [D00002000] +19:19:07 [ 32] [ 6] [621354] +19:19:07 [ 35] [ 27] [1808930900004565=1803500349] +19:19:07 [ 37] [ 12] [507902606529] +19:19:07 [ 41] [ 8] [05004300] +19:19:07 [ 42] [ 15] [NATIVE ] +19:19:07 [ 43] [ 40] [Ka deng office LuangprabangLAO] +19:19:07 [ 49] [ 3] [418] +19:19:07 [ 52] [ 16] [19E8C1147359B420] +19:19:07 ============================================================================ +19:19:07 + + +waiting on router queue for slot.... +19:19:07 Sending to : +19:19:07 ============================================================================ +19:19:07 Sending to : +19:19:07 ============================================================================ +19:19:07 ============================================================================ +19:19:07 Slot Id : <38> +19:19:07 Transaction Type : REQUEST +19:19:07 Received From : +19:19:07 ============================================================================ +19:19:07 FNo. Len. Field Value +19:19:07 ============================================================================ +19:19:07 [ 1] [ 4] [0200] +19:19:07 [ 2] [ 16] [1808930900004565] +19:19:07 [ 3] [ 6] [011000] +19:19:07 [ 4] [ 12] [000015000000] +19:19:07 [ 7] [ 10] [0320191902] +19:19:07 [ 11] [ 6] [835470] +19:19:07 [ 12] [ 6] [191902] +19:19:07 [ 13] [ 4] [0320] +19:19:07 [ 15] [ 4] [0320] +19:19:07 [ 18] [ 4] [6011] +19:19:07 [ 22] [ 3] [900] +19:19:07 [ 25] [ 2] [02] +19:19:07 [ 28] [ 9] [D00002000] +19:19:07 [ 32] [ 6] [621354] +19:19:07 [ 35] [ 27] [1808930900004565=1803500349] +19:19:07 [ 37] [ 12] [507902606529] +19:19:07 [ 41] [ 8] [05004300] +19:19:07 [ 42] [ 15] [NATIVE ] +19:19:07 [ 43] [ 40] [Ka deng office LuangprabangLAO] +19:19:07 [ 49] [ 3] [418] +19:19:07 [ 52] [ 16] [19E8C1147359B420] +19:19:07 ============================================================================ +19:19:07 + + +waiting on router queue for slot.... +19:19:07 Sending to : +19:19:07 ============================================================================ +19:19:07 ============================================================================ +19:19:07 Slot Id : <38> +19:19:07 Transaction Type : REQUEST +19:19:07 Received From : +19:19:07 ============================================================================ +19:19:07 FNo. Len. Field Value +19:19:07 ============================================================================ +19:19:07 [ 1] [ 4] [0200] +19:19:07 [ 2] [ 16] [1808930900004565] +19:19:07 [ 3] [ 6] [011000] +19:19:07 [ 4] [ 12] [000015000000] +19:19:07 [ 7] [ 10] [0320191902] +19:19:07 [ 11] [ 6] [835470] +19:19:07 [ 12] [ 6] [191902] +19:19:07 [ 13] [ 4] [0320] +19:19:07 [ 15] [ 4] [0320] +19:19:07 [ 18] [ 4] [6011] +19:19:07 [ 22] [ 3] [900] +19:19:07 [ 25] [ 2] [02] +19:19:07 [ 28] [ 9] [D00002000] +19:19:07 [ 32] [ 6] [621354] +19:19:07 [ 35] [ 27] [1808930900004565=1803500349] +19:19:07 [ 37] [ 12] [507902606529] +19:19:07 [ 41] [ 8] [05004300] +19:19:07 [ 42] [ 15] [NATIVE ] +19:19:07 [ 43] [ 40] [Ka deng office LuangprabangLAO] +19:19:07 [ 49] [ 3] [418] +19:19:07 [ 52] [ 16] [04D1786E9BD72A2F] +19:19:07 ============================================================================ +19:19:07 + + +waiting on router queue for slot.... +19:19:07 Sending to : <2> +19:19:07 ============================================================================ +19:19:11 ============================================================================ +19:19:11 Slot Id : <73> +19:19:11 Transaction Type : REQUEST +19:19:11 Received From : +19:19:11 ============================================================================ +19:19:11 FNo. Len. Field Value +19:19:11 ============================================================================ +19:19:11 [ 1] [ 4] [0800] +19:19:11 [ 7] [ 10] [0321023059] +19:19:11 [ 11] [ 6] [193059] +19:19:11 [ 37] [ 12] [57919193059] +19:19:11 [ 70] [ 3] [301] +19:19:11 ============================================================================ +19:19:11 + + +waiting on router queue for slot.... +19:19:11 Sending to : +19:19:11 ============================================================================ +19:19:11 ============================================================================ +19:19:11 Slot Id : <73> +19:19:11 Transaction Type : RESPONSE +19:19:11 Received From : +19:19:11 ============================================================================ +19:19:11 FNo. Len. Field Value +19:19:11 ============================================================================ +19:19:11 [ 1] [ 4] [0810] +19:19:11 [ 7] [ 10] [0321023059] +19:19:11 [ 11] [ 6] [193059] +19:19:11 [ 37] [ 12] [579191930590] +19:19:11 [ 39] [ 2] [00] +19:19:11 [ 70] [ 3] [810] +19:19:11 ============================================================================ +19:19:11 Calculate Source COMM Id = 6 +19:19:11 ============================================================================ +19:19:11 + + +waiting on router queue for slot.... +19:19:12 ============================================================================ +19:19:12 Slot Id : <38> +19:19:12 Transaction Type : RESPONSE +19:19:12 Received From : +19:19:12 ============================================================================ +19:19:12 FNo. Len. Field Value +19:19:12 ============================================================================ +19:19:12 [ 1] [ 4] [0210] +19:19:12 [ 2] [ 16] [1808930900004565] +19:19:12 [ 3] [ 6] [011000] +19:19:12 [ 4] [ 12] [000015000000] +19:19:12 [ 6] [ 12] [000015000000] +19:19:12 [ 7] [ 10] [0320191902] +19:19:12 [ 11] [ 6] [835470] +19:19:12 [ 12] [ 6] [191902] +19:19:12 [ 13] [ 4] [0320] +19:19:12 [ 18] [ 4] [6011] +19:19:12 [ 19] [ 3] [418] +19:19:12 [ 22] [ 3] [021] +19:19:12 [ 32] [ 6] [621354] +19:19:12 [ 35] [ 27] [1808930900004565=1803500349] +19:19:12 [ 37] [ 12] [507902606529] +19:19:12 [ 38] [ 6] [835470] +19:19:12 [ 39] [ 2] [00] +19:19:12 [ 41] [ 8] [05004300] +19:19:12 [ 49] [ 3] [418] +19:19:12 [ 52] [ 16] [04D1786E9BD72A2F] +19:19:12 [ 54] [ 20] [1001418C000530811100] +19:19:12 ============================================================================ +19:19:12 Sending to : +19:19:12 ============================================================================ +19:19:12 + + +waiting on router queue for slot.... +19:19:13 ============================================================================ +19:19:13 Slot Id : <68> +19:19:13 Transaction Type : REQUEST +19:19:13 Received From : +19:19:13 ============================================================================ +19:19:13 FNo. Len. Field Value +19:19:13 ============================================================================ +19:19:13 [ 1] [ 4] [0800] +19:19:13 [ 7] [ 10] [0320191859] +19:19:13 [ 11] [ 6] [031811] +19:19:13 [ 37] [ 12] [507919031811] +19:19:13 [ 70] [ 3] [ ] +19:19:13 ============================================================================ +19:19:13 + + +waiting on router queue for slot.... +19:19:13 Sending to : +19:19:13 ============================================================================ +19:19:13 ============================================================================ +19:19:13 Slot Id : <68> +19:19:13 Transaction Type : RESPONSE +19:19:13 Received From : +19:19:13 ============================================================================ +19:19:13 FNo. Len. Field Value +19:19:13 ============================================================================ +19:19:13 [ 1] [ 4] [0810] +19:19:13 [ 7] [ 10] [0320191859] +19:19:13 [ 11] [ 6] [031811] +19:19:13 [ 37] [ 12] [507919031811] +19:19:13 [ 39] [ 2] [91] +19:19:13 [ 70] [ 3] [ ] +19:19:13 ============================================================================ +19:19:13 Calculate Source COMM Id = 3 +19:19:13 ============================================================================ +19:19:13 + + +waiting on router queue for slot.... +19:19:13 ============================================================================ +19:19:13 Slot Id : <38> +19:19:13 Transaction Type : RESPONSE +19:19:13 Received From : +19:19:13 ============================================================================ +19:19:13 FNo. Len. Field Value +19:19:13 ============================================================================ +19:19:13 [ 1] [ 4] [0210] +19:19:13 [ 2] [ 16] [1808930900004565] +19:19:13 [ 3] [ 6] [011000] +19:19:13 [ 4] [ 12] [000015000000] +19:19:13 [ 6] [ 12] [000015000000] +19:19:13 [ 7] [ 10] [0320191902] +19:19:13 [ 11] [ 6] [835470] +19:19:13 [ 12] [ 6] [191902] +19:19:13 [ 13] [ 4] [0320] +19:19:13 [ 18] [ 4] [6011] +19:19:13 [ 19] [ 3] [418] +19:19:13 [ 22] [ 3] [021] +19:19:13 [ 32] [ 6] [621354] +19:19:13 [ 35] [ 27] [1808930900004565=1803500349] +19:19:13 [ 37] [ 12] [507902606529] +19:19:13 [ 38] [ 6] [835470] +19:19:13 [ 39] [ 2] [00] +19:19:13 [ 41] [ 8] [05004300] +19:19:13 [ 49] [ 3] [418] +19:19:13 [ 52] [ 16] [04D1786E9BD72A2F] +19:19:13 [ 54] [ 20] [1001418C000530811100] +19:19:13 ============================================================================ +19:19:13 Calculate Source COMM Id = 0 +19:19:13 ============================================================================ +19:19:13 + + +waiting on router queue for slot.... +19:19:23 ============================================================================ +19:19:23 Slot Id : <32> +19:19:23 Transaction Type : REQUEST +19:19:23 Received From : +19:19:23 ============================================================================ +19:19:23 FNo. Len. Field Value +19:19:23 ============================================================================ +19:19:23 [ 1] [ 4] [0800] +19:19:23 [ 7] [ 10] [0320121830] +19:19:23 [ 11] [ 6] [157916] +19:19:23 [ 70] [ 3] [301] +19:19:23 ============================================================================ +19:19:23 + + +waiting on router queue for slot.... +19:19:23 Sending to : +19:19:23 ============================================================================ +19:19:23 ============================================================================ +19:19:23 Slot Id : <32> +19:19:23 Transaction Type : RESPONSE +19:19:23 Received From : +19:19:23 ============================================================================ +19:19:23 FNo. Len. Field Value +19:19:23 ============================================================================ +19:19:23 [ 1] [ 4] [0810] +19:19:23 [ 7] [ 10] [0320121830] +19:19:23 [ 11] [ 6] [157916] +19:19:23 [ 39] [ 2] [00] +19:19:23 [ 70] [ 3] [301] +19:19:23 ============================================================================ +19:19:23 Calculate Source COMM Id = 2 +19:19:23 ============================================================================ +19:19:23 + + +waiting on router queue for slot.... +19:19:33 ============================================================================ +19:19:33 Slot Id : <487> +19:19:33 Transaction Type : REQUEST +19:19:33 Received From : +19:19:33 ============================================================================ +19:19:33 FNo. Len. Field Value +19:19:33 ============================================================================ +19:19:33 [ 1] [ 4] [0200] +19:19:33 [ 2] [ 16] [6688990105724601] +19:19:33 [ 3] [ 6] [300000] +19:19:33 [ 4] [ 12] [000000000000] +19:19:33 [ 7] [ 10] [0320191928] +19:19:33 [ 11] [ 6] [835511] +19:19:33 [ 12] [ 6] [191928] +19:19:33 [ 13] [ 4] [0320] +19:19:33 [ 15] [ 4] [0320] +19:19:33 [ 18] [ 4] [6011] +19:19:33 [ 22] [ 3] [900] +19:19:33 [ 25] [ 2] [02] +19:19:33 [ 28] [ 9] [D00000000] +19:19:33 [ 32] [ 6] [621354] +19:19:33 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:19:33 [ 37] [ 12] [507903461771] +19:19:33 [ 41] [ 8] [06001900] +19:19:33 [ 42] [ 15] [NATIVE ] +19:19:33 [ 43] [ 40] [La District La LAO] +19:19:33 [ 49] [ 3] [418] +19:19:33 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:19:33 ============================================================================ +19:19:33 + + +waiting on router queue for slot.... +19:19:33 Sending to : +19:19:33 ============================================================================ +19:19:33 Sending to : +19:19:33 ============================================================================ +19:19:33 ============================================================================ +19:19:33 Slot Id : <487> +19:19:33 Transaction Type : REQUEST +19:19:33 Received From : +19:19:33 ============================================================================ +19:19:33 FNo. Len. Field Value +19:19:33 ============================================================================ +19:19:33 [ 1] [ 4] [0200] +19:19:33 [ 2] [ 16] [6688990105724601] +19:19:33 [ 3] [ 6] [300000] +19:19:33 [ 4] [ 12] [000000000000] +19:19:33 [ 7] [ 10] [0320191928] +19:19:33 [ 11] [ 6] [835511] +19:19:33 [ 12] [ 6] [191928] +19:19:33 [ 13] [ 4] [0320] +19:19:33 [ 15] [ 4] [0320] +19:19:33 [ 18] [ 4] [6011] +19:19:33 [ 22] [ 3] [900] +19:19:33 [ 25] [ 2] [02] +19:19:33 [ 28] [ 9] [D00000000] +19:19:33 [ 32] [ 6] [621354] +19:19:33 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:19:33 [ 37] [ 12] [507903461771] +19:19:33 [ 41] [ 8] [06001900] +19:19:33 [ 42] [ 15] [NATIVE ] +19:19:33 [ 43] [ 40] [La District La LAO] +19:19:33 [ 49] [ 3] [418] +19:19:33 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:19:33 ============================================================================ +19:19:33 + + +waiting on router queue for slot.... +19:19:33 Sending to : +19:19:33 ============================================================================ +19:19:33 ============================================================================ +19:19:33 Slot Id : <487> +19:19:33 Transaction Type : REQUEST +19:19:33 Received From : +19:19:33 ============================================================================ +19:19:33 FNo. Len. Field Value +19:19:33 ============================================================================ +19:19:33 [ 1] [ 4] [0200] +19:19:33 [ 2] [ 16] [6688990105724601] +19:19:33 [ 3] [ 6] [300000] +19:19:33 [ 4] [ 12] [000000000000] +19:19:33 [ 7] [ 10] [0320191928] +19:19:33 [ 11] [ 6] [835511] +19:19:33 [ 12] [ 6] [191928] +19:19:33 [ 13] [ 4] [0320] +19:19:33 [ 15] [ 4] [0320] +19:19:33 [ 18] [ 4] [6011] +19:19:33 [ 22] [ 3] [900] +19:19:33 [ 25] [ 2] [02] +19:19:33 [ 28] [ 9] [D00000000] +19:19:33 [ 32] [ 6] [621354] +19:19:33 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:19:33 [ 37] [ 12] [507903461771] +19:19:33 [ 41] [ 8] [06001900] +19:19:33 [ 42] [ 15] [NATIVE ] +19:19:33 [ 43] [ 40] [La District La LAO] +19:19:33 [ 49] [ 3] [418] +19:19:33 [ 52] [ 16] [880D114C12D054AC] +19:19:33 ============================================================================ +19:19:33 + + +waiting on router queue for slot.... +19:19:33 Sending to : <4> +19:19:33 ============================================================================ +19:19:34 ============================================================================ +19:19:34 Slot Id : <487> +19:19:34 Transaction Type : RESPONSE +19:19:34 Received From : +19:19:34 ============================================================================ +19:19:34 FNo. Len. Field Value +19:19:34 ============================================================================ +19:19:34 [ 1] [ 4] [0210] +19:19:34 [ 2] [ 16] [6688990105724601] +19:19:34 [ 3] [ 6] [300000] +19:19:34 [ 4] [ 12] [000000000000] +19:19:34 [ 11] [ 6] [835511] +19:19:34 [ 12] [ 6] [191928] +19:19:34 [ 15] [ 4] [0320] +19:19:34 [ 18] [ 4] [6011] +19:19:34 [ 32] [ 6] [621354] +19:19:34 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:19:34 [ 37] [ 12] [507903461771] +19:19:34 [ 38] [ 6] [414117] +19:19:34 [ 39] [ 2] [00] +19:19:34 [ 41] [ 8] [06001900] +19:19:34 [ 49] [ 3] [418] +19:19:34 [ 54] [ 20] [0002418C000101416689] +19:19:34 ============================================================================ +19:19:34 Sending to : +19:19:34 ============================================================================ +19:19:34 + + +waiting on router queue for slot.... +19:19:35 ============================================================================ +19:19:35 Slot Id : <26> +19:19:35 Transaction Type : REQUEST +19:19:35 Received From : +19:19:35 ============================================================================ +19:19:35 FNo. Len. Field Value +19:19:35 ============================================================================ +19:19:35 [ 1] [ 4] [0800] +19:19:35 [ 7] [ 10] [0320121842] +19:19:35 [ 11] [ 6] [157917] +19:19:35 [ 70] [ 3] [301] +19:19:35 ============================================================================ +19:19:35 + + +waiting on router queue for slot.... +19:19:35 Sending to : +19:19:35 ============================================================================ +19:19:35 ============================================================================ +19:19:35 Slot Id : <26> +19:19:35 Transaction Type : RESPONSE +19:19:35 Received From : +19:19:35 ============================================================================ +19:19:35 FNo. Len. Field Value +19:19:35 ============================================================================ +19:19:35 [ 1] [ 4] [0810] +19:19:35 [ 7] [ 10] [0320121842] +19:19:35 [ 11] [ 6] [157917] +19:19:35 [ 39] [ 2] [00] +19:19:35 [ 70] [ 3] [301] +19:19:35 ============================================================================ +19:19:35 Calculate Source COMM Id = 2 +19:19:35 ============================================================================ +19:19:35 + + +waiting on router queue for slot.... +19:19:36 ============================================================================ +19:19:36 Slot Id : <487> +19:19:36 Transaction Type : RESPONSE +19:19:36 Received From : +19:19:36 ============================================================================ +19:19:36 FNo. Len. Field Value +19:19:36 ============================================================================ +19:19:36 [ 1] [ 4] [0210] +19:19:36 [ 2] [ 16] [6688990105724601] +19:19:36 [ 3] [ 6] [300000] +19:19:36 [ 4] [ 12] [000000000000] +19:19:36 [ 11] [ 6] [835511] +19:19:36 [ 12] [ 6] [191928] +19:19:36 [ 15] [ 4] [0320] +19:19:36 [ 18] [ 4] [6011] +19:19:36 [ 32] [ 6] [621354] +19:19:36 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:19:36 [ 37] [ 12] [507903461771] +19:19:36 [ 38] [ 6] [414117] +19:19:36 [ 39] [ 2] [00] +19:19:36 [ 41] [ 8] [06001900] +19:19:36 [ 49] [ 3] [418] +19:19:36 [ 54] [ 20] [0002418C000101416689] +19:19:36 ============================================================================ +19:19:36 Calculate Source COMM Id = 0 +19:19:36 ============================================================================ +19:19:36 + + +waiting on router queue for slot.... +19:19:43 ============================================================================ +19:19:43 Slot Id : <41> +19:19:43 Transaction Type : REQUEST +19:19:43 Received From : +19:19:43 ============================================================================ +19:19:43 FNo. Len. Field Value +19:19:43 ============================================================================ +19:19:43 [ 1] [ 4] [0200] +19:19:43 [ 2] [ 16] [6688990602015602] +19:19:43 [ 3] [ 6] [010000] +19:19:43 [ 4] [ 12] [000010000000] +19:19:43 [ 7] [ 10] [0320191938] +19:19:43 [ 11] [ 6] [835529] +19:19:43 [ 12] [ 6] [191938] +19:19:43 [ 13] [ 4] [0320] +19:19:43 [ 15] [ 4] [0320] +19:19:43 [ 18] [ 4] [6011] +19:19:43 [ 22] [ 3] [900] +19:19:43 [ 25] [ 2] [02] +19:19:43 [ 28] [ 9] [D00002000] +19:19:43 [ 32] [ 6] [621354] +19:19:43 [ 35] [ 37] [6688990602015602=42070061560267900000] +19:19:43 [ 37] [ 12] [507903667726] +19:19:43 [ 41] [ 8] [16001900] +19:19:43 [ 42] [ 15] [NATIVE ] +19:19:43 [ 43] [ 40] [Naxaithong Unit02 Xaythany LAO] +19:19:43 [ 49] [ 3] [418] +19:19:43 [ 52] [ 16] [CE9B3EEFD1C08F15] +19:19:43 ============================================================================ +19:19:43 + + +waiting on router queue for slot.... +19:19:43 Sending to : +19:19:43 ============================================================================ +19:19:43 Sending to : +19:19:43 ============================================================================ +19:19:43 ============================================================================ +19:19:43 Slot Id : <41> +19:19:43 Transaction Type : REQUEST +19:19:43 Received From : +19:19:43 ============================================================================ +19:19:43 FNo. Len. Field Value +19:19:43 ============================================================================ +19:19:43 [ 1] [ 4] [0200] +19:19:43 [ 2] [ 16] [6688990602015602] +19:19:43 [ 3] [ 6] [010000] +19:19:43 [ 4] [ 12] [000010000000] +19:19:43 [ 7] [ 10] [0320191938] +19:19:43 [ 11] [ 6] [835529] +19:19:43 [ 12] [ 6] [191938] +19:19:43 [ 13] [ 4] [0320] +19:19:43 [ 15] [ 4] [0320] +19:19:43 [ 18] [ 4] [6011] +19:19:43 [ 22] [ 3] [900] +19:19:43 [ 25] [ 2] [02] +19:19:43 [ 28] [ 9] [D00002000] +19:19:43 [ 32] [ 6] [621354] +19:19:43 [ 35] [ 37] [6688990602015602=42070061560267900000] +19:19:43 [ 37] [ 12] [507903667726] +19:19:43 [ 41] [ 8] [16001900] +19:19:43 [ 42] [ 15] [NATIVE ] +19:19:43 [ 43] [ 40] [Naxaithong Unit02 Xaythany LAO] +19:19:43 [ 49] [ 3] [418] +19:19:43 [ 52] [ 16] [CE9B3EEFD1C08F15] +19:19:43 ============================================================================ +19:19:43 + + +waiting on router queue for slot.... +19:19:43 Sending to : +19:19:43 ============================================================================ +19:19:43 ============================================================================ +19:19:43 Slot Id : <41> +19:19:43 Transaction Type : REQUEST +19:19:43 Received From : +19:19:43 ============================================================================ +19:19:43 FNo. Len. Field Value +19:19:43 ============================================================================ +19:19:43 [ 1] [ 4] [0200] +19:19:43 [ 2] [ 16] [6688990602015602] +19:19:43 [ 3] [ 6] [010000] +19:19:43 [ 4] [ 12] [000010000000] +19:19:43 [ 7] [ 10] [0320191938] +19:19:43 [ 11] [ 6] [835529] +19:19:43 [ 12] [ 6] [191938] +19:19:43 [ 13] [ 4] [0320] +19:19:43 [ 15] [ 4] [0320] +19:19:43 [ 18] [ 4] [6011] +19:19:43 [ 22] [ 3] [900] +19:19:43 [ 25] [ 2] [02] +19:19:43 [ 28] [ 9] [D00002000] +19:19:43 [ 32] [ 6] [621354] +19:19:43 [ 35] [ 37] [6688990602015602=42070061560267900000] +19:19:43 [ 37] [ 12] [507903667726] +19:19:43 [ 41] [ 8] [16001900] +19:19:43 [ 42] [ 15] [NATIVE ] +19:19:43 [ 43] [ 40] [Naxaithong Unit02 Xaythany LAO] +19:19:43 [ 49] [ 3] [418] +19:19:43 [ 52] [ 16] [918C466E0A5C6088] +19:19:43 ============================================================================ +19:19:43 + + +waiting on router queue for slot.... +19:19:43 Sending to : <4> +19:19:43 ============================================================================ +19:19:45 ============================================================================ +19:19:45 Slot Id : <41> +19:19:45 Transaction Type : RESPONSE +19:19:45 Received From : +19:19:45 ============================================================================ +19:19:45 FNo. Len. Field Value +19:19:45 ============================================================================ +19:19:45 [ 1] [ 4] [0210] +19:19:45 [ 2] [ 16] [6688990602015602] +19:19:45 [ 3] [ 6] [010000] +19:19:45 [ 4] [ 12] [000010000000] +19:19:45 [ 11] [ 6] [835529] +19:19:45 [ 12] [ 6] [191938] +19:19:45 [ 15] [ 4] [0320] +19:19:45 [ 18] [ 4] [6011] +19:19:45 [ 32] [ 6] [621354] +19:19:45 [ 35] [ 37] [6688990602015602=42070061560267900000] +19:19:45 [ 37] [ 12] [507903667726] +19:19:45 [ 38] [ 6] [119452] +19:19:45 [ 39] [ 2] [00] +19:19:45 [ 41] [ 8] [16001900] +19:19:45 [ 49] [ 3] [418] +19:19:45 [ 54] [ 20] [0002418C000004355681] +19:19:45 ============================================================================ +19:19:45 Sending to : +19:19:45 ============================================================================ +19:19:45 + + +waiting on router queue for slot.... +19:19:45 ============================================================================ +19:19:45 Slot Id : <20> +19:19:45 Transaction Type : REQUEST +19:19:45 Received From : +19:19:45 ============================================================================ +19:19:45 FNo. Len. Field Value +19:19:45 ============================================================================ +19:19:45 [ 1] [ 4] [0200] +19:19:45 [ 2] [ 16] [1808930100002419] +19:19:45 [ 3] [ 6] [011000] +19:19:45 [ 4] [ 12] [000020000000] +19:19:45 [ 7] [ 10] [0320192005] +19:19:45 [ 11] [ 6] [211129] +19:19:45 [ 12] [ 6] [190719] +19:19:45 [ 13] [ 4] [0320] +19:19:45 [ 14] [ 4] [1803] +19:19:45 [ 15] [ 4] [0320] +19:19:45 [ 18] [ 4] [6011] +19:19:45 [ 19] [ 3] [418] +19:19:45 [ 22] [ 3] [021] +19:19:45 [ 25] [ 2] [01] +19:19:45 [ 28] [ 9] [D00002000] +19:19:45 [ 32] [ 6] [198901] +19:19:45 [ 35] [ 27] [1808930100002419=1803500160] +19:19:45 [ 37] [ 12] [507919211129] +19:19:45 [ 41] [ 8] [01529019] +19:19:45 [ 42] [ 15] [000000041529019] +19:19:45 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +19:19:45 [ 49] [ 3] [418] +19:19:45 [ 52] [ 16] [1B22A524A1EEE2FA] +19:19:45 ============================================================================ +19:19:45 + + +waiting on router queue for slot.... +19:19:45 Sending to : +19:19:45 ============================================================================ +19:19:45 Sending to : +19:19:45 ============================================================================ +19:19:45 ============================================================================ +19:19:45 Slot Id : <20> +19:19:45 Transaction Type : REQUEST +19:19:45 Received From : +19:19:45 ============================================================================ +19:19:45 FNo. Len. Field Value +19:19:45 ============================================================================ +19:19:45 [ 1] [ 4] [0200] +19:19:45 [ 2] [ 16] [1808930100002419] +19:19:45 [ 3] [ 6] [011000] +19:19:45 [ 4] [ 12] [000020000000] +19:19:45 [ 7] [ 10] [0320192005] +19:19:45 [ 11] [ 6] [211129] +19:19:45 [ 12] [ 6] [190719] +19:19:45 [ 13] [ 4] [0320] +19:19:45 [ 14] [ 4] [1803] +19:19:45 [ 15] [ 4] [0320] +19:19:45 [ 18] [ 4] [6011] +19:19:45 [ 19] [ 3] [418] +19:19:45 [ 22] [ 3] [021] +19:19:45 [ 25] [ 2] [01] +19:19:45 [ 28] [ 9] [D00002000] +19:19:45 [ 32] [ 6] [198901] +19:19:45 [ 35] [ 27] [1808930100002419=1803500160] +19:19:45 [ 37] [ 12] [507919211129] +19:19:45 [ 41] [ 8] [01529019] +19:19:45 [ 42] [ 15] [000000041529019] +19:19:45 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +19:19:45 [ 49] [ 3] [418] +19:19:45 [ 52] [ 16] [1B22A524A1EEE2FA] +19:19:45 ============================================================================ +19:19:45 + + +waiting on router queue for slot.... +19:19:45 Sending to : +19:19:45 ============================================================================ +19:19:45 ============================================================================ +19:19:45 Slot Id : <20> +19:19:45 Transaction Type : REQUEST +19:19:45 Received From : +19:19:45 ============================================================================ +19:19:45 FNo. Len. Field Value +19:19:45 ============================================================================ +19:19:45 [ 1] [ 4] [0200] +19:19:45 [ 2] [ 16] [1808930100002419] +19:19:45 [ 3] [ 6] [011000] +19:19:45 [ 4] [ 12] [000020000000] +19:19:45 [ 7] [ 10] [0320192005] +19:19:45 [ 11] [ 6] [211129] +19:19:45 [ 12] [ 6] [190719] +19:19:45 [ 13] [ 4] [0320] +19:19:45 [ 14] [ 4] [1803] +19:19:45 [ 15] [ 4] [0320] +19:19:45 [ 18] [ 4] [6011] +19:19:45 [ 19] [ 3] [418] +19:19:45 [ 22] [ 3] [021] +19:19:45 [ 25] [ 2] [01] +19:19:45 [ 28] [ 9] [D00002000] +19:19:45 [ 32] [ 6] [198901] +19:19:45 [ 35] [ 27] [1808930100002419=1803500160] +19:19:45 [ 37] [ 12] [507919211129] +19:19:45 [ 41] [ 8] [01529019] +19:19:45 [ 42] [ 15] [000000041529019] +19:19:45 [ 43] [ 40] [JDB ATM 103 HOSPITAL VN ] +19:19:45 [ 49] [ 3] [418] +19:19:45 [ 52] [ 16] [9B33E715AA682664] +19:19:45 ============================================================================ +19:19:45 + + +waiting on router queue for slot.... +19:19:45 Sending to : <2> +19:19:45 ============================================================================ +19:19:46 ============================================================================ +19:19:46 Slot Id : <41> +19:19:46 Transaction Type : RESPONSE +19:19:46 Received From : +19:19:46 ============================================================================ +19:19:46 FNo. Len. Field Value +19:19:46 ============================================================================ +19:19:46 [ 1] [ 4] [0210] +19:19:46 [ 2] [ 16] [6688990602015602] +19:19:46 [ 3] [ 6] [010000] +19:19:46 [ 4] [ 12] [000010000000] +19:19:46 [ 11] [ 6] [835529] +19:19:46 [ 12] [ 6] [191938] +19:19:46 [ 15] [ 4] [0320] +19:19:46 [ 18] [ 4] [6011] +19:19:46 [ 32] [ 6] [621354] +19:19:46 [ 35] [ 37] [6688990602015602=42070061560267900000] +19:19:46 [ 37] [ 12] [507903667726] +19:19:46 [ 38] [ 6] [119452] +19:19:46 [ 39] [ 2] [00] +19:19:46 [ 41] [ 8] [16001900] +19:19:46 [ 49] [ 3] [418] +19:19:46 [ 54] [ 20] [0002418C000004355681] +19:19:46 ============================================================================ +19:19:46 Calculate Source COMM Id = 0 +19:19:46 ============================================================================ +19:19:46 + + +waiting on router queue for slot.... +19:19:49 ============================================================================ +19:19:49 Slot Id : <20> +19:19:49 Transaction Type : RESPONSE +19:19:49 Received From : +19:19:49 ============================================================================ +19:19:49 FNo. Len. Field Value +19:19:49 ============================================================================ +19:19:49 [ 1] [ 4] [0210] +19:19:49 [ 2] [ 16] [1808930100002419] +19:19:49 [ 3] [ 6] [011000] +19:19:49 [ 4] [ 12] [000020000000] +19:19:49 [ 6] [ 12] [000020000000] +19:19:49 [ 7] [ 10] [0320192005] +19:19:49 [ 11] [ 6] [211129] +19:19:49 [ 12] [ 6] [190719] +19:19:49 [ 13] [ 4] [0320] +19:19:49 [ 14] [ 4] [1803] +19:19:49 [ 18] [ 4] [6011] +19:19:49 [ 19] [ 3] [418] +19:19:49 [ 22] [ 3] [021] +19:19:49 [ 32] [ 6] [198901] +19:19:49 [ 35] [ 27] [1808930100002419=1803500160] +19:19:49 [ 37] [ 12] [507919211129] +19:19:49 [ 38] [ 6] [211129] +19:19:49 [ 39] [ 2] [00] +19:19:49 [ 41] [ 8] [01529019] +19:19:49 [ 49] [ 3] [418] +19:19:49 [ 52] [ 16] [9B33E715AA682664] +19:19:49 [ 54] [ 20] [1001418C003953095800] +19:19:49 ============================================================================ +19:19:49 Sending to : +19:19:49 ============================================================================ +19:19:49 + + +waiting on router queue for slot.... +19:19:51 ============================================================================ +19:19:51 Slot Id : <20> +19:19:51 Transaction Type : RESPONSE +19:19:51 Received From : +19:19:51 ============================================================================ +19:19:51 FNo. Len. Field Value +19:19:51 ============================================================================ +19:19:51 [ 1] [ 4] [0210] +19:19:51 [ 2] [ 16] [1808930100002419] +19:19:51 [ 3] [ 6] [011000] +19:19:51 [ 4] [ 12] [000020000000] +19:19:51 [ 6] [ 12] [000020000000] +19:19:51 [ 7] [ 10] [0320192005] +19:19:51 [ 11] [ 6] [211129] +19:19:51 [ 12] [ 6] [190719] +19:19:51 [ 13] [ 4] [0320] +19:19:51 [ 14] [ 4] [1803] +19:19:51 [ 18] [ 4] [6011] +19:19:51 [ 19] [ 3] [418] +19:19:51 [ 22] [ 3] [021] +19:19:51 [ 32] [ 6] [198901] +19:19:51 [ 35] [ 27] [1808930100002419=1803500160] +19:19:51 [ 37] [ 12] [507919211129] +19:19:51 [ 38] [ 6] [211129] +19:19:51 [ 39] [ 2] [00] +19:19:51 [ 41] [ 8] [01529019] +19:19:51 [ 49] [ 3] [418] +19:19:51 [ 52] [ 16] [9B33E715AA682664] +19:19:51 [ 54] [ 20] [1001418C003953095800] +19:19:51 ============================================================================ +19:19:51 Calculate Source COMM Id = 5 +19:19:51 ============================================================================ +19:19:51 + + +waiting on router queue for slot.... +19:19:57 ============================================================================ +19:19:57 Slot Id : <464> +19:19:57 Transaction Type : REQUEST +19:19:57 Received From : +19:19:57 ============================================================================ +19:19:57 FNo. Len. Field Value +19:19:57 ============================================================================ +19:19:57 [ 1] [ 4] [0800] +19:19:57 [ 7] [ 10] [0320122742] +19:19:57 [ 11] [ 6] [069048] +19:19:57 [ 37] [ 12] [57919069048] +19:19:57 [ 70] [ 3] [301] +19:19:57 ============================================================================ +19:19:57 + + +waiting on router queue for slot.... +19:19:57 Sending to : +19:19:57 ============================================================================ +19:19:57 ============================================================================ +19:19:57 Slot Id : <464> +19:19:57 Transaction Type : RESPONSE +19:19:57 Received From : +19:19:57 ============================================================================ +19:19:57 FNo. Len. Field Value +19:19:57 ============================================================================ +19:19:57 [ 1] [ 4] [0810] +19:19:57 [ 7] [ 10] [0320122742] +19:19:57 [ 11] [ 6] [069048] +19:19:57 [ 37] [ 12] [579190690480] +19:19:57 [ 39] [ 2] [00] +19:19:57 [ 70] [ 3] [810] +19:19:57 ============================================================================ +19:19:57 Calculate Source COMM Id = 1 +19:19:57 ============================================================================ +19:19:57 + + +waiting on router queue for slot.... +19:19:58 ============================================================================ +19:19:58 Slot Id : <48> +19:19:58 Transaction Type : REQUEST +19:19:58 Received From : +19:19:58 ============================================================================ +19:19:58 FNo. Len. Field Value +19:19:58 ============================================================================ +19:19:58 [ 1] [ 4] [0800] +19:19:58 [ 7] [ 10] [0320121904] +19:19:58 [ 11] [ 6] [157918] +19:19:58 [ 70] [ 3] [301] +19:19:58 ============================================================================ +19:19:58 + + +waiting on router queue for slot.... +19:19:58 Sending to : +19:19:58 ============================================================================ +19:19:58 ============================================================================ +19:19:58 Slot Id : <48> +19:19:58 Transaction Type : RESPONSE +19:19:58 Received From : +19:19:58 ============================================================================ +19:19:58 FNo. Len. Field Value +19:19:58 ============================================================================ +19:19:58 [ 1] [ 4] [0810] +19:19:58 [ 7] [ 10] [0320121904] +19:19:58 [ 11] [ 6] [157918] +19:19:58 [ 39] [ 2] [00] +19:19:58 [ 70] [ 3] [301] +19:19:58 ============================================================================ +19:19:58 Calculate Source COMM Id = 2 +19:19:58 ============================================================================ +19:19:58 + + +waiting on router queue for slot.... +19:20:03 ============================================================================ +19:20:03 Slot Id : <46> +19:20:03 Transaction Type : REQUEST +19:20:03 Received From : +19:20:03 ============================================================================ +19:20:03 FNo. Len. Field Value +19:20:03 ============================================================================ +19:20:03 [ 1] [ 4] [0800] +19:20:03 [ 2] [ 5] [02531] +19:20:03 [ 3] [ 6] [579198] +19:20:03 [ 7] [ 10] [0320122003] +19:20:03 [ 11] [ 6] [807534] +19:20:03 [ 15] [ 10] [0320122003] +19:20:03 [ 37] [ 11] [57919807534] +19:20:03 [ 70] [ 3] [001] +19:20:03 ============================================================================ +19:20:03 + + +waiting on router queue for slot.... +19:20:03 ============================================================================ +19:20:03 Slot Id : <46> +19:20:03 Transaction Type : RESPONSE +19:20:03 Received From : +19:20:03 ============================================================================ +19:20:03 FNo. Len. Field Value +19:20:03 ============================================================================ +19:20:03 [ 1] [ 4] [0810] +19:20:03 [ 7] [ 10] [0320122003] +19:20:03 [ 11] [ 6] [807534] +19:20:03 [ 15] [ 4] [0320] +19:20:03 [ 37] [ 12] [57919807534] +19:20:03 [ 39] [ 2] [00] +19:20:03 [ 70] [ 3] [001] +19:20:03 ============================================================================ +19:20:03 Sending to : +19:20:03 ============================================================================ +19:20:03 + + +waiting on router queue for slot.... +19:20:10 ============================================================================ +19:20:10 Slot Id : <27> +19:20:10 Transaction Type : REQUEST +19:20:10 Received From : +19:20:10 ============================================================================ +19:20:10 FNo. Len. Field Value +19:20:10 ============================================================================ +19:20:10 [ 1] [ 4] [0200] +19:20:10 [ 2] [ 16] [6213548000197937] +19:20:10 [ 3] [ 6] [301000] +19:20:10 [ 4] [ 12] [000000000000] +19:20:10 [ 7] [ 10] [0320191759] +19:20:10 [ 11] [ 6] [956004] +19:20:10 [ 12] [ 6] [191759] +19:20:10 [ 13] [ 4] [0320] +19:20:10 [ 15] [ 4] [0320] +19:20:10 [ 18] [ 4] [6011] +19:20:10 [ 19] [ 3] [418] +19:20:10 [ 22] [ 3] [021] +19:20:10 [ 25] [ 2] [01] +19:20:10 [ 28] [ 9] [D00000000] +19:20:10 [ 32] [ 6] [668899] +19:20:10 [ 35] [ 32] [6213548000197937=171212019793471] +19:20:10 [ 37] [ 12] [507901963741] +19:20:10 [ 41] [ 8] [03020019] +19:20:10 [ 42] [ 15] [APT ] +19:20:10 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +19:20:10 [ 49] [ 3] [418] +19:20:10 [ 52] [ 16] [B95179E355E7F8B8] +19:20:10 ============================================================================ +19:20:10 + + +waiting on router queue for slot.... +19:20:10 Sending to : +19:20:10 ============================================================================ +19:20:10 Sending to : +19:20:10 ============================================================================ +19:20:10 ============================================================================ +19:20:10 Slot Id : <27> +19:20:10 Transaction Type : REQUEST +19:20:10 Received From : +19:20:10 ============================================================================ +19:20:10 FNo. Len. Field Value +19:20:10 ============================================================================ +19:20:10 [ 1] [ 4] [0200] +19:20:10 [ 2] [ 16] [6213548000197937] +19:20:10 [ 3] [ 6] [301000] +19:20:10 [ 4] [ 12] [000000000000] +19:20:10 [ 7] [ 10] [0320191759] +19:20:10 [ 11] [ 6] [956004] +19:20:10 [ 12] [ 6] [191759] +19:20:10 [ 13] [ 4] [0320] +19:20:10 [ 15] [ 4] [0320] +19:20:10 [ 18] [ 4] [6011] +19:20:10 [ 19] [ 3] [418] +19:20:10 [ 22] [ 3] [021] +19:20:10 [ 25] [ 2] [01] +19:20:10 [ 28] [ 9] [D00000000] +19:20:10 [ 32] [ 6] [668899] +19:20:10 [ 35] [ 32] [6213548000197937=171212019793471] +19:20:10 [ 37] [ 12] [507901963741] +19:20:10 [ 41] [ 8] [03020019] +19:20:10 [ 42] [ 15] [APT ] +19:20:10 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +19:20:10 [ 49] [ 3] [418] +19:20:10 [ 52] [ 16] [B95179E355E7F8B8] +19:20:10 ============================================================================ +19:20:10 + + +waiting on router queue for slot.... +19:20:10 Sending to : +19:20:10 ============================================================================ +19:20:10 ============================================================================ +19:20:10 Slot Id : <27> +19:20:10 Transaction Type : REQUEST +19:20:10 Received From : +19:20:10 ============================================================================ +19:20:10 FNo. Len. Field Value +19:20:10 ============================================================================ +19:20:10 [ 1] [ 4] [0200] +19:20:10 [ 2] [ 16] [6213548000197937] +19:20:10 [ 3] [ 6] [301000] +19:20:10 [ 4] [ 12] [000000000000] +19:20:10 [ 7] [ 10] [0320191759] +19:20:10 [ 11] [ 6] [956004] +19:20:10 [ 12] [ 6] [191759] +19:20:10 [ 13] [ 4] [0320] +19:20:10 [ 15] [ 4] [0320] +19:20:10 [ 18] [ 4] [6011] +19:20:10 [ 19] [ 3] [418] +19:20:10 [ 22] [ 3] [021] +19:20:10 [ 25] [ 2] [01] +19:20:10 [ 28] [ 9] [D00000000] +19:20:10 [ 32] [ 6] [668899] +19:20:10 [ 35] [ 32] [6213548000197937=171212019793471] +19:20:10 [ 37] [ 12] [507901963741] +19:20:10 [ 41] [ 8] [03020019] +19:20:10 [ 42] [ 15] [APT ] +19:20:10 [ 43] [ 40] [ DONGKHAMSANG SCHOOL SAYSE] +19:20:10 [ 49] [ 3] [418] +19:20:10 [ 52] [ 16] [F8C179FE2234F337] +19:20:10 ============================================================================ +19:20:10 + + +waiting on router queue for slot.... +19:20:10 Sending to : <0> +19:20:10 ============================================================================ +19:20:11 ============================================================================ +19:20:11 Slot Id : <27> +19:20:11 Transaction Type : RESPONSE +19:20:11 Received From : +19:20:11 ============================================================================ +19:20:11 FNo. Len. Field Value +19:20:11 ============================================================================ +19:20:11 [ 1] [ 4] [0210] +19:20:11 [ 2] [ 16] [6213548000197937] +19:20:11 [ 3] [ 6] [301000] +19:20:11 [ 4] [ 12] [000000000000] +19:20:11 [ 7] [ 10] [0320191759] +19:20:11 [ 11] [ 6] [956004] +19:20:11 [ 12] [ 6] [191759] +19:20:11 [ 13] [ 4] [0320] +19:20:11 [ 15] [ 4] [0320] +19:20:11 [ 18] [ 4] [6011] +19:20:11 [ 19] [ 3] [418] +19:20:11 [ 32] [ 6] [668899] +19:20:11 [ 35] [ 32] [6213548000197937=171212019793471] +19:20:11 [ 37] [ 12] [507901963741] +19:20:11 [ 38] [ 6] [546611] +19:20:11 [ 39] [ 2] [00] +19:20:11 [ 41] [ 8] [03020019] +19:20:11 [ 49] [ 3] [418] +19:20:11 [ 54] [ 40] [1001418C0000324377911002418C000032437791] +19:20:11 ============================================================================ +19:20:11 Sending to : +19:20:11 ============================================================================ +19:20:11 + + +waiting on router queue for slot.... +19:20:12 ============================================================================ +19:20:12 Slot Id : <27> +19:20:12 Transaction Type : RESPONSE +19:20:12 Received From : +19:20:12 ============================================================================ +19:20:12 FNo. Len. Field Value +19:20:12 ============================================================================ +19:20:12 [ 1] [ 4] [0210] +19:20:12 [ 2] [ 16] [6213548000197937] +19:20:12 [ 3] [ 6] [301000] +19:20:12 [ 4] [ 12] [000000000000] +19:20:12 [ 7] [ 10] [0320191759] +19:20:12 [ 11] [ 6] [956004] +19:20:12 [ 12] [ 6] [191759] +19:20:12 [ 13] [ 4] [0320] +19:20:12 [ 15] [ 4] [0320] +19:20:12 [ 18] [ 4] [6011] +19:20:12 [ 19] [ 3] [418] +19:20:12 [ 32] [ 6] [668899] +19:20:12 [ 35] [ 32] [6213548000197937=171212019793471] +19:20:12 [ 37] [ 12] [507901963741] +19:20:12 [ 38] [ 6] [546611] +19:20:12 [ 39] [ 2] [00] +19:20:12 [ 41] [ 8] [03020019] +19:20:12 [ 49] [ 3] [418] +19:20:12 [ 54] [ 40] [1001418C0000324377911002418C000032437791] +19:20:12 ============================================================================ +19:20:12 Calculate Source COMM Id = 4 +19:20:12 ============================================================================ +19:20:12 + + +waiting on router queue for slot.... +19:20:14 ============================================================================ +19:20:14 Slot Id : <69> +19:20:14 Transaction Type : REQUEST +19:20:14 Received From : +19:20:14 ============================================================================ +19:20:14 FNo. Len. Field Value +19:20:14 ============================================================================ +19:20:14 [ 1] [ 4] [0800] +19:20:14 [ 7] [ 10] [0320121920] +19:20:14 [ 11] [ 6] [157919] +19:20:14 [ 70] [ 3] [301] +19:20:14 ============================================================================ +19:20:14 + + +waiting on router queue for slot.... +19:20:14 Sending to : +19:20:14 ============================================================================ +19:20:14 ============================================================================ +19:20:14 Slot Id : <69> +19:20:14 Transaction Type : RESPONSE +19:20:14 Received From : +19:20:14 ============================================================================ +19:20:14 FNo. Len. Field Value +19:20:14 ============================================================================ +19:20:14 [ 1] [ 4] [0810] +19:20:14 [ 7] [ 10] [0320121920] +19:20:14 [ 11] [ 6] [157919] +19:20:14 [ 39] [ 2] [00] +19:20:14 [ 70] [ 3] [301] +19:20:14 ============================================================================ +19:20:14 Calculate Source COMM Id = 2 +19:20:14 ============================================================================ +19:20:14 + + +waiting on router queue for slot.... +19:20:16 ============================================================================ +19:20:16 Slot Id : <19> +19:20:16 Transaction Type : REQUEST +19:20:16 Received From : +19:20:16 ============================================================================ +19:20:16 FNo. Len. Field Value +19:20:16 ============================================================================ +19:20:16 [ 1] [ 4] [0800] +19:20:16 [ 7] [ 10] [0321023204] +19:20:16 [ 11] [ 6] [193204] +19:20:16 [ 37] [ 12] [57919193204] +19:20:16 [ 70] [ 3] [301] +19:20:16 ============================================================================ +19:20:16 + + +waiting on router queue for slot.... +19:20:16 Sending to : +19:20:16 ============================================================================ +19:20:16 ============================================================================ +19:20:16 Slot Id : <19> +19:20:16 Transaction Type : RESPONSE +19:20:16 Received From : +19:20:16 ============================================================================ +19:20:16 FNo. Len. Field Value +19:20:16 ============================================================================ +19:20:16 [ 1] [ 4] [0810] +19:20:16 [ 7] [ 10] [0321023204] +19:20:16 [ 11] [ 6] [193204] +19:20:16 [ 37] [ 12] [579191932040] +19:20:16 [ 39] [ 2] [00] +19:20:16 [ 70] [ 3] [810] +19:20:16 ============================================================================ +19:20:16 Calculate Source COMM Id = 6 +19:20:16 ============================================================================ +19:20:16 + + +waiting on router queue for slot.... +19:20:25 ============================================================================ +19:20:25 Slot Id : <78> +19:20:25 Transaction Type : REQUEST +19:20:25 Received From : +19:20:25 ============================================================================ +19:20:25 FNo. Len. Field Value +19:20:25 ============================================================================ +19:20:25 [ 1] [ 4] [0800] +19:20:25 [ 7] [ 10] [0320121931] +19:20:25 [ 11] [ 6] [157920] +19:20:25 [ 70] [ 3] [301] +19:20:25 ============================================================================ +19:20:25 + + +waiting on router queue for slot.... +19:20:25 Sending to : +19:20:25 ============================================================================ +19:20:25 ============================================================================ +19:20:25 Slot Id : <78> +19:20:25 Transaction Type : RESPONSE +19:20:25 Received From : +19:20:25 ============================================================================ +19:20:25 FNo. Len. Field Value +19:20:25 ============================================================================ +19:20:25 [ 1] [ 4] [0810] +19:20:25 [ 7] [ 10] [0320121931] +19:20:25 [ 11] [ 6] [157920] +19:20:25 [ 39] [ 2] [00] +19:20:25 [ 70] [ 3] [301] +19:20:25 ============================================================================ +19:20:25 Calculate Source COMM Id = 2 +19:20:25 ============================================================================ +19:20:25 + + +waiting on router queue for slot.... +19:20:29 ============================================================================ +19:20:29 Slot Id : <54> +19:20:29 Transaction Type : REQUEST +19:20:29 Received From : +19:20:29 ============================================================================ +19:20:29 FNo. Len. Field Value +19:20:29 ============================================================================ +19:20:29 [ 1] [ 4] [0200] +19:20:29 [ 2] [ 16] [6688990060000021] +19:20:29 [ 3] [ 6] [010000] +19:20:29 [ 4] [ 12] [000010000000] +19:20:29 [ 7] [ 10] [0320121933] +19:20:29 [ 11] [ 6] [271399] +19:20:29 [ 12] [ 6] [191933] +19:20:29 [ 13] [ 4] [0320] +19:20:29 [ 14] [ 4] [9709] +19:20:29 [ 15] [ 4] [0320] +19:20:29 [ 18] [ 4] [6011] +19:20:29 [ 19] [ 3] [418] +19:20:29 [ 22] [ 3] [021] +19:20:29 [ 25] [ 2] [01] +19:20:29 [ 28] [ 9] [D00002000] +19:20:29 [ 32] [ 6] [180893] +19:20:29 [ 35] [ 37] [6688990060000021=97091261203768600000] +19:20:29 [ 37] [ 12] [507912271399] +19:20:29 [ 41] [ 8] [0466PSLB] +19:20:29 [ 42] [ 15] [999999 ] +19:20:29 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:20:29 [ 49] [ 3] [418] +19:20:29 [ 52] [ 16] [0346D04D8E9EBD12] +19:20:29 ============================================================================ +19:20:29 + + +waiting on router queue for slot.... +19:20:29 Sending to : +19:20:29 ============================================================================ +19:20:29 Sending to : +19:20:29 ============================================================================ +19:20:29 ============================================================================ +19:20:29 Slot Id : <54> +19:20:29 Transaction Type : REQUEST +19:20:29 Received From : +19:20:29 ============================================================================ +19:20:29 FNo. Len. Field Value +19:20:29 ============================================================================ +19:20:29 [ 1] [ 4] [0200] +19:20:29 [ 2] [ 16] [6688990060000021] +19:20:29 [ 3] [ 6] [010000] +19:20:29 [ 4] [ 12] [000010000000] +19:20:29 [ 7] [ 10] [0320121933] +19:20:29 [ 11] [ 6] [271399] +19:20:29 [ 12] [ 6] [191933] +19:20:29 [ 13] [ 4] [0320] +19:20:29 [ 14] [ 4] [9709] +19:20:29 [ 15] [ 4] [0320] +19:20:29 [ 18] [ 4] [6011] +19:20:29 [ 19] [ 3] [418] +19:20:29 [ 22] [ 3] [021] +19:20:29 [ 25] [ 2] [01] +19:20:29 [ 28] [ 9] [D00002000] +19:20:29 [ 32] [ 6] [180893] +19:20:29 [ 35] [ 37] [6688990060000021=97091261203768600000] +19:20:29 [ 37] [ 12] [507912271399] +19:20:29 [ 41] [ 8] [0466PSLB] +19:20:29 [ 42] [ 15] [999999 ] +19:20:29 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:20:29 [ 49] [ 3] [418] +19:20:29 [ 52] [ 16] [0346D04D8E9EBD12] +19:20:29 ============================================================================ +19:20:29 + + +waiting on router queue for slot.... +19:20:29 Sending to : +19:20:29 ============================================================================ +19:20:29 ============================================================================ +19:20:29 Slot Id : <54> +19:20:29 Transaction Type : REQUEST +19:20:29 Received From : +19:20:29 ============================================================================ +19:20:29 FNo. Len. Field Value +19:20:29 ============================================================================ +19:20:29 [ 1] [ 4] [0200] +19:20:29 [ 2] [ 16] [6688990060000021] +19:20:29 [ 3] [ 6] [010000] +19:20:29 [ 4] [ 12] [000010000000] +19:20:29 [ 7] [ 10] [0320121933] +19:20:29 [ 11] [ 6] [271399] +19:20:29 [ 12] [ 6] [191933] +19:20:29 [ 13] [ 4] [0320] +19:20:29 [ 14] [ 4] [9709] +19:20:29 [ 15] [ 4] [0320] +19:20:29 [ 18] [ 4] [6011] +19:20:29 [ 19] [ 3] [418] +19:20:29 [ 22] [ 3] [021] +19:20:29 [ 25] [ 2] [01] +19:20:29 [ 28] [ 9] [D00002000] +19:20:29 [ 32] [ 6] [180893] +19:20:29 [ 35] [ 37] [6688990060000021=97091261203768600000] +19:20:29 [ 37] [ 12] [507912271399] +19:20:29 [ 41] [ 8] [0466PSLB] +19:20:29 [ 42] [ 15] [999999 ] +19:20:29 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:20:29 [ 49] [ 3] [418] +19:20:29 [ 52] [ 16] [FF091978ADBD18C7] +19:20:29 ============================================================================ +19:20:29 + + +waiting on router queue for slot.... +19:20:29 Sending to : <0> +19:20:29 ============================================================================ +19:20:29 ============================================================================ +19:20:29 Slot Id : <54> +19:20:29 Transaction Type : RESPONSE +19:20:29 Received From : +19:20:29 ============================================================================ +19:20:29 FNo. Len. Field Value +19:20:29 ============================================================================ +19:20:29 [ 1] [ 4] [0210] +19:20:29 [ 2] [ 16] [6688990060000021] +19:20:29 [ 3] [ 6] [010000] +19:20:29 [ 4] [ 12] [000010000000] +19:20:29 [ 7] [ 10] [0320121933] +19:20:29 [ 11] [ 6] [271399] +19:20:29 [ 12] [ 6] [191933] +19:20:29 [ 13] [ 4] [0320] +19:20:29 [ 15] [ 4] [0320] +19:20:29 [ 18] [ 4] [6011] +19:20:29 [ 19] [ 3] [418] +19:20:29 [ 22] [ 3] [021] +19:20:29 [ 32] [ 6] [180893] +19:20:29 [ 35] [ 37] [6688990060000021=97091261203768600000] +19:20:29 [ 37] [ 12] [507912271399] +19:20:29 [ 39] [ 2] [14] +19:20:29 [ 41] [ 8] [0466PSLB] +19:20:29 [ 49] [ 3] [418] +19:20:29 ============================================================================ +19:20:29 Sending to : +19:20:29 ============================================================================ +19:20:29 + + +waiting on router queue for slot.... +19:20:30 ============================================================================ +19:20:30 Slot Id : <54> +19:20:30 Transaction Type : RESPONSE +19:20:30 Received From : +19:20:30 ============================================================================ +19:20:30 FNo. Len. Field Value +19:20:30 ============================================================================ +19:20:30 [ 1] [ 4] [0210] +19:20:30 [ 2] [ 16] [6688990060000021] +19:20:30 [ 3] [ 6] [010000] +19:20:30 [ 4] [ 12] [000010000000] +19:20:30 [ 7] [ 10] [0320121933] +19:20:30 [ 11] [ 6] [271399] +19:20:30 [ 12] [ 6] [191933] +19:20:30 [ 13] [ 4] [0320] +19:20:30 [ 15] [ 4] [0320] +19:20:30 [ 18] [ 4] [6011] +19:20:30 [ 19] [ 3] [418] +19:20:30 [ 22] [ 3] [021] +19:20:30 [ 32] [ 6] [180893] +19:20:30 [ 35] [ 37] [6688990060000021=97091261203768600000] +19:20:30 [ 37] [ 12] [507912271399] +19:20:30 [ 39] [ 2] [14] +19:20:30 [ 41] [ 8] [0466PSLB] +19:20:30 [ 49] [ 3] [418] +19:20:30 ============================================================================ +19:20:30 Calculate Source COMM Id = 2 +19:20:30 ============================================================================ +19:20:30 + + +waiting on router queue for slot.... +19:20:41 ============================================================================ +19:20:41 Slot Id : <47> +19:20:41 Transaction Type : REQUEST +19:20:41 Received From : +19:20:41 ============================================================================ +19:20:41 FNo. Len. Field Value +19:20:41 ============================================================================ +19:20:41 [ 1] [ 4] [0800] +19:20:41 [ 7] [ 10] [0320121947] +19:20:41 [ 11] [ 6] [157921] +19:20:41 [ 70] [ 3] [301] +19:20:41 ============================================================================ +19:20:41 + + +waiting on router queue for slot.... +19:20:41 Sending to : +19:20:41 ============================================================================ +19:20:41 ============================================================================ +19:20:41 Slot Id : <47> +19:20:41 Transaction Type : RESPONSE +19:20:41 Received From : +19:20:41 ============================================================================ +19:20:41 FNo. Len. Field Value +19:20:41 ============================================================================ +19:20:41 [ 1] [ 4] [0810] +19:20:41 [ 7] [ 10] [0320121947] +19:20:41 [ 11] [ 6] [157921] +19:20:41 [ 39] [ 2] [00] +19:20:41 [ 70] [ 3] [301] +19:20:41 ============================================================================ +19:20:41 Calculate Source COMM Id = 2 +19:20:41 ============================================================================ +19:20:41 + + +waiting on router queue for slot.... +19:20:52 ============================================================================ +19:20:52 Slot Id : <57> +19:20:52 Transaction Type : REQUEST +19:20:52 Received From : +19:20:52 ============================================================================ +19:20:52 FNo. Len. Field Value +19:20:52 ============================================================================ +19:20:52 [ 1] [ 4] [0800] +19:20:52 [ 7] [ 10] [0320121958] +19:20:52 [ 11] [ 6] [157922] +19:20:52 [ 70] [ 3] [301] +19:20:52 ============================================================================ +19:20:52 + + +waiting on router queue for slot.... +19:20:52 Sending to : +19:20:52 ============================================================================ +19:20:52 ============================================================================ +19:20:52 Slot Id : <57> +19:20:52 Transaction Type : RESPONSE +19:20:52 Received From : +19:20:52 ============================================================================ +19:20:52 FNo. Len. Field Value +19:20:52 ============================================================================ +19:20:52 [ 1] [ 4] [0810] +19:20:52 [ 7] [ 10] [0320121958] +19:20:52 [ 11] [ 6] [157922] +19:20:52 [ 39] [ 2] [00] +19:20:52 [ 70] [ 3] [301] +19:20:52 ============================================================================ +19:20:52 Calculate Source COMM Id = 2 +19:20:52 ============================================================================ +19:20:52 + + +waiting on router queue for slot.... +19:21:03 ============================================================================ +19:21:03 Slot Id : <24> +19:21:03 Transaction Type : REQUEST +19:21:03 Received From : +19:21:03 ============================================================================ +19:21:03 FNo. Len. Field Value +19:21:03 ============================================================================ +19:21:03 [ 1] [ 4] [0800] +19:21:03 [ 7] [ 10] [0320122009] +19:21:03 [ 11] [ 6] [157923] +19:21:03 [ 70] [ 3] [301] +19:21:03 ============================================================================ +19:21:03 + + +waiting on router queue for slot.... +19:21:03 Sending to : +19:21:03 ============================================================================ +19:21:03 ============================================================================ +19:21:03 Slot Id : <24> +19:21:03 Transaction Type : RESPONSE +19:21:03 Received From : +19:21:03 ============================================================================ +19:21:03 FNo. Len. Field Value +19:21:03 ============================================================================ +19:21:03 [ 1] [ 4] [0810] +19:21:03 [ 7] [ 10] [0320122009] +19:21:03 [ 11] [ 6] [157923] +19:21:03 [ 39] [ 2] [00] +19:21:03 [ 70] [ 3] [301] +19:21:03 ============================================================================ +19:21:03 Calculate Source COMM Id = 2 +19:21:03 ============================================================================ +19:21:03 + + +waiting on router queue for slot.... +19:21:05 ============================================================================ +19:21:05 Slot Id : <34> +19:21:05 Transaction Type : REQUEST +19:21:05 Received From : +19:21:05 ============================================================================ +19:21:05 FNo. Len. Field Value +19:21:05 ============================================================================ +19:21:05 [ 1] [ 4] [0800] +19:21:05 [ 2] [ 5] [02531] +19:21:05 [ 3] [ 6] [579198] +19:21:05 [ 7] [ 10] [0320122105] +19:21:05 [ 11] [ 6] [807535] +19:21:05 [ 15] [ 10] [0320122105] +19:21:05 [ 37] [ 11] [57919807535] +19:21:05 [ 70] [ 3] [001] +19:21:05 ============================================================================ +19:21:05 + + +waiting on router queue for slot.... +19:21:05 ============================================================================ +19:21:05 Slot Id : <34> +19:21:05 Transaction Type : RESPONSE +19:21:05 Received From : +19:21:05 ============================================================================ +19:21:05 FNo. Len. Field Value +19:21:05 ============================================================================ +19:21:05 [ 1] [ 4] [0810] +19:21:05 [ 7] [ 10] [0320122105] +19:21:05 [ 11] [ 6] [807535] +19:21:05 [ 15] [ 4] [0320] +19:21:05 [ 37] [ 12] [57919807535] +19:21:05 [ 39] [ 2] [00] +19:21:05 [ 70] [ 3] [001] +19:21:05 ============================================================================ +19:21:05 Sending to : +19:21:05 ============================================================================ +19:21:05 + + +waiting on router queue for slot.... +19:21:08 ============================================================================ +19:21:08 Slot Id : <49> +19:21:08 Transaction Type : REQUEST +19:21:08 Received From : +19:21:08 ============================================================================ +19:21:08 FNo. Len. Field Value +19:21:08 ============================================================================ +19:21:08 [ 1] [ 4] [0200] +19:21:08 [ 2] [ 16] [6213541000672033] +19:21:08 [ 3] [ 6] [011000] +19:21:08 [ 4] [ 12] [000100000000] +19:21:08 [ 7] [ 10] [0320192128] +19:21:08 [ 11] [ 6] [211156] +19:21:08 [ 12] [ 6] [190933] +19:21:08 [ 13] [ 4] [0320] +19:21:08 [ 14] [ 4] [4912] +19:21:08 [ 15] [ 4] [0320] +19:21:08 [ 18] [ 4] [6011] +19:21:08 [ 19] [ 3] [418] +19:21:08 [ 22] [ 3] [021] +19:21:08 [ 25] [ 2] [01] +19:21:08 [ 28] [ 9] [D00002000] +19:21:08 [ 32] [ 6] [198901] +19:21:08 [ 35] [ 32] [6213541000672033=491212017203169] +19:21:08 [ 37] [ 12] [507919211156] +19:21:08 [ 41] [ 8] [01529014] +19:21:08 [ 42] [ 15] [000000041529014] +19:21:08 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:21:08 [ 49] [ 3] [418] +19:21:08 [ 52] [ 16] [DC9D97543C45EABB] +19:21:08 ============================================================================ +19:21:08 + + +waiting on router queue for slot.... +19:21:08 Sending to : +19:21:08 ============================================================================ +19:21:08 Sending to : +19:21:08 ============================================================================ +19:21:09 ============================================================================ +19:21:09 Slot Id : <49> +19:21:09 Transaction Type : REQUEST +19:21:09 Received From : +19:21:09 ============================================================================ +19:21:09 FNo. Len. Field Value +19:21:09 ============================================================================ +19:21:09 [ 1] [ 4] [0200] +19:21:09 [ 2] [ 16] [6213541000672033] +19:21:09 [ 3] [ 6] [011000] +19:21:09 [ 4] [ 12] [000100000000] +19:21:09 [ 7] [ 10] [0320192128] +19:21:09 [ 11] [ 6] [211156] +19:21:09 [ 12] [ 6] [190933] +19:21:09 [ 13] [ 4] [0320] +19:21:09 [ 14] [ 4] [4912] +19:21:09 [ 15] [ 4] [0320] +19:21:09 [ 18] [ 4] [6011] +19:21:09 [ 19] [ 3] [418] +19:21:09 [ 22] [ 3] [021] +19:21:09 [ 25] [ 2] [01] +19:21:09 [ 28] [ 9] [D00002000] +19:21:09 [ 32] [ 6] [198901] +19:21:09 [ 35] [ 32] [6213541000672033=491212017203169] +19:21:09 [ 37] [ 12] [507919211156] +19:21:09 [ 41] [ 8] [01529014] +19:21:09 [ 42] [ 15] [000000041529014] +19:21:09 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:21:09 [ 49] [ 3] [418] +19:21:09 [ 52] [ 16] [DC9D97543C45EABB] +19:21:09 ============================================================================ +19:21:09 + + +waiting on router queue for slot.... +19:21:09 Sending to : +19:21:09 ============================================================================ +19:21:09 ============================================================================ +19:21:09 Slot Id : <49> +19:21:09 Transaction Type : REQUEST +19:21:09 Received From : +19:21:09 ============================================================================ +19:21:09 FNo. Len. Field Value +19:21:09 ============================================================================ +19:21:09 [ 1] [ 4] [0200] +19:21:09 [ 2] [ 16] [6213541000672033] +19:21:09 [ 3] [ 6] [011000] +19:21:09 [ 4] [ 12] [000100000000] +19:21:09 [ 7] [ 10] [0320192128] +19:21:09 [ 11] [ 6] [211156] +19:21:09 [ 12] [ 6] [190933] +19:21:09 [ 13] [ 4] [0320] +19:21:09 [ 14] [ 4] [4912] +19:21:09 [ 15] [ 4] [0320] +19:21:09 [ 18] [ 4] [6011] +19:21:09 [ 19] [ 3] [418] +19:21:09 [ 22] [ 3] [021] +19:21:09 [ 25] [ 2] [01] +19:21:09 [ 28] [ 9] [D00002000] +19:21:09 [ 32] [ 6] [198901] +19:21:09 [ 35] [ 32] [6213541000672033=491212017203169] +19:21:09 [ 37] [ 12] [507919211156] +19:21:09 [ 41] [ 8] [01529014] +19:21:09 [ 42] [ 15] [000000041529014] +19:21:09 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:21:09 [ 49] [ 3] [418] +19:21:09 [ 52] [ 16] [3D520585CA77A566] +19:21:09 ============================================================================ +19:21:09 + + +waiting on router queue for slot.... +19:21:09 Sending to : <0> +19:21:09 ============================================================================ +19:21:09 ============================================================================ +19:21:09 Slot Id : <49> +19:21:09 Transaction Type : RESPONSE +19:21:09 Received From : +19:21:09 ============================================================================ +19:21:09 FNo. Len. Field Value +19:21:09 ============================================================================ +19:21:09 [ 1] [ 4] [0210] +19:21:09 [ 2] [ 16] [6213541000672033] +19:21:09 [ 3] [ 6] [011000] +19:21:09 [ 4] [ 12] [000100000000] +19:21:09 [ 7] [ 10] [0320192128] +19:21:09 [ 11] [ 6] [211156] +19:21:09 [ 12] [ 6] [190933] +19:21:09 [ 13] [ 4] [0320] +19:21:09 [ 15] [ 4] [0320] +19:21:09 [ 18] [ 4] [6011] +19:21:09 [ 19] [ 3] [418] +19:21:09 [ 32] [ 6] [198901] +19:21:09 [ 35] [ 32] [6213541000672033=491212017203169] +19:21:09 [ 37] [ 12] [507919211156] +19:21:09 [ 38] [ 6] [962073] +19:21:09 [ 39] [ 2] [00] +19:21:09 [ 41] [ 8] [01529014] +19:21:09 [ 49] [ 3] [418] +19:21:09 [ 54] [ 40] [1001418C0012265648471002418C001226564847] +19:21:09 ============================================================================ +19:21:09 Sending to : +19:21:09 ============================================================================ +19:21:09 + + +waiting on router queue for slot.... +19:21:11 ============================================================================ +19:21:11 Slot Id : <49> +19:21:11 Transaction Type : RESPONSE +19:21:11 Received From : +19:21:11 ============================================================================ +19:21:11 FNo. Len. Field Value +19:21:11 ============================================================================ +19:21:11 [ 1] [ 4] [0210] +19:21:11 [ 2] [ 16] [6213541000672033] +19:21:11 [ 3] [ 6] [011000] +19:21:11 [ 4] [ 12] [000100000000] +19:21:11 [ 7] [ 10] [0320192128] +19:21:11 [ 11] [ 6] [211156] +19:21:11 [ 12] [ 6] [190933] +19:21:11 [ 13] [ 4] [0320] +19:21:11 [ 15] [ 4] [0320] +19:21:11 [ 18] [ 4] [6011] +19:21:11 [ 19] [ 3] [418] +19:21:11 [ 32] [ 6] [198901] +19:21:11 [ 35] [ 32] [6213541000672033=491212017203169] +19:21:11 [ 37] [ 12] [507919211156] +19:21:11 [ 38] [ 6] [962073] +19:21:11 [ 39] [ 2] [00] +19:21:11 [ 41] [ 8] [01529014] +19:21:11 [ 49] [ 3] [418] +19:21:11 [ 54] [ 40] [1001418C0012265648471002418C001226564847] +19:21:11 ============================================================================ +19:21:11 Calculate Source COMM Id = 5 +19:21:11 ============================================================================ +19:21:11 + + +waiting on router queue for slot.... +19:21:16 ============================================================================ +19:21:16 Slot Id : <81> +19:21:16 Transaction Type : REQUEST +19:21:16 Received From : +19:21:16 ============================================================================ +19:21:16 FNo. Len. Field Value +19:21:16 ============================================================================ +19:21:16 [ 1] [ 4] [0200] +19:21:16 [ 2] [ 16] [6688990060000021] +19:21:16 [ 3] [ 6] [301000] +19:21:16 [ 7] [ 10] [0320122022] +19:21:16 [ 11] [ 6] [271400] +19:21:16 [ 12] [ 6] [192022] +19:21:16 [ 13] [ 4] [0320] +19:21:16 [ 14] [ 4] [9709] +19:21:16 [ 15] [ 4] [0320] +19:21:16 [ 18] [ 4] [6011] +19:21:16 [ 19] [ 3] [418] +19:21:16 [ 22] [ 3] [021] +19:21:16 [ 25] [ 2] [01] +19:21:16 [ 32] [ 6] [180893] +19:21:16 [ 35] [ 37] [6688990060000021=97091261203768600000] +19:21:16 [ 37] [ 12] [507912271400] +19:21:16 [ 41] [ 8] [0466PSLB] +19:21:16 [ 42] [ 15] [999999 ] +19:21:16 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:21:16 [ 49] [ 3] [418] +19:21:16 [ 52] [ 16] [0346D04D8E9EBD12] +19:21:16 ============================================================================ +19:21:16 + + +waiting on router queue for slot.... +19:21:16 Sending to : +19:21:16 ============================================================================ +19:21:16 Sending to : +19:21:16 ============================================================================ +19:21:16 ============================================================================ +19:21:16 Slot Id : <81> +19:21:16 Transaction Type : REQUEST +19:21:16 Received From : +19:21:16 ============================================================================ +19:21:16 FNo. Len. Field Value +19:21:16 ============================================================================ +19:21:16 [ 1] [ 4] [0200] +19:21:16 [ 2] [ 16] [6688990060000021] +19:21:16 [ 3] [ 6] [301000] +19:21:16 [ 7] [ 10] [0320122022] +19:21:16 [ 11] [ 6] [271400] +19:21:16 [ 12] [ 6] [192022] +19:21:16 [ 13] [ 4] [0320] +19:21:16 [ 14] [ 4] [9709] +19:21:16 [ 15] [ 4] [0320] +19:21:16 [ 18] [ 4] [6011] +19:21:16 [ 19] [ 3] [418] +19:21:16 [ 22] [ 3] [021] +19:21:16 [ 25] [ 2] [01] +19:21:16 [ 32] [ 6] [180893] +19:21:16 [ 35] [ 37] [6688990060000021=97091261203768600000] +19:21:16 [ 37] [ 12] [507912271400] +19:21:16 [ 41] [ 8] [0466PSLB] +19:21:16 [ 42] [ 15] [999999 ] +19:21:16 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:21:16 [ 49] [ 3] [418] +19:21:16 [ 52] [ 16] [0346D04D8E9EBD12] +19:21:16 ============================================================================ +19:21:16 + + +waiting on router queue for slot.... +19:21:16 Sending to : +19:21:16 ============================================================================ +19:21:16 ============================================================================ +19:21:16 Slot Id : <81> +19:21:16 Transaction Type : REQUEST +19:21:16 Received From : +19:21:16 ============================================================================ +19:21:16 FNo. Len. Field Value +19:21:16 ============================================================================ +19:21:16 [ 1] [ 4] [0200] +19:21:16 [ 2] [ 16] [6688990060000021] +19:21:16 [ 3] [ 6] [301000] +19:21:16 [ 7] [ 10] [0320122022] +19:21:16 [ 11] [ 6] [271400] +19:21:16 [ 12] [ 6] [192022] +19:21:16 [ 13] [ 4] [0320] +19:21:16 [ 14] [ 4] [9709] +19:21:16 [ 15] [ 4] [0320] +19:21:16 [ 18] [ 4] [6011] +19:21:16 [ 19] [ 3] [418] +19:21:16 [ 22] [ 3] [021] +19:21:16 [ 25] [ 2] [01] +19:21:16 [ 32] [ 6] [180893] +19:21:16 [ 35] [ 37] [6688990060000021=97091261203768600000] +19:21:16 [ 37] [ 12] [507912271400] +19:21:16 [ 41] [ 8] [0466PSLB] +19:21:16 [ 42] [ 15] [999999 ] +19:21:16 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:21:16 [ 49] [ 3] [418] +19:21:16 [ 52] [ 16] [FF091978ADBD18C7] +19:21:16 ============================================================================ +19:21:16 + + +waiting on router queue for slot.... +19:21:16 Sending to : <0> +19:21:16 ============================================================================ +19:21:17 ============================================================================ +19:21:17 Slot Id : <81> +19:21:17 Transaction Type : RESPONSE +19:21:17 Received From : +19:21:17 ============================================================================ +19:21:17 FNo. Len. Field Value +19:21:17 ============================================================================ +19:21:17 [ 1] [ 4] [0210] +19:21:17 [ 2] [ 16] [6688990060000021] +19:21:17 [ 3] [ 6] [301000] +19:21:17 [ 4] [ 12] [000000000000] +19:21:17 [ 7] [ 10] [0320122022] +19:21:17 [ 11] [ 6] [271400] +19:21:17 [ 12] [ 6] [192022] +19:21:17 [ 13] [ 4] [0320] +19:21:17 [ 15] [ 4] [0320] +19:21:17 [ 18] [ 4] [6011] +19:21:17 [ 19] [ 3] [418] +19:21:17 [ 22] [ 3] [021] +19:21:17 [ 32] [ 6] [180893] +19:21:17 [ 35] [ 37] [6688990060000021=97091261203768600000] +19:21:17 [ 37] [ 12] [507912271400] +19:21:17 [ 39] [ 2] [14] +19:21:17 [ 41] [ 8] [0466PSLB] +19:21:17 [ 49] [ 3] [418] +19:21:17 ============================================================================ +19:21:17 Sending to : +19:21:17 ============================================================================ +19:21:17 + + +waiting on router queue for slot.... +19:21:18 ============================================================================ +19:21:18 Slot Id : <81> +19:21:18 Transaction Type : RESPONSE +19:21:18 Received From : +19:21:18 ============================================================================ +19:21:18 FNo. Len. Field Value +19:21:18 ============================================================================ +19:21:18 [ 1] [ 4] [0210] +19:21:18 [ 2] [ 16] [6688990060000021] +19:21:18 [ 3] [ 6] [301000] +19:21:18 [ 4] [ 12] [000000000000] +19:21:18 [ 7] [ 10] [0320122022] +19:21:18 [ 11] [ 6] [271400] +19:21:18 [ 12] [ 6] [192022] +19:21:18 [ 13] [ 4] [0320] +19:21:18 [ 15] [ 4] [0320] +19:21:18 [ 18] [ 4] [6011] +19:21:18 [ 19] [ 3] [418] +19:21:18 [ 22] [ 3] [021] +19:21:18 [ 32] [ 6] [180893] +19:21:18 [ 35] [ 37] [6688990060000021=97091261203768600000] +19:21:18 [ 37] [ 12] [507912271400] +19:21:18 [ 39] [ 2] [14] +19:21:18 [ 41] [ 8] [0466PSLB] +19:21:18 [ 49] [ 3] [418] +19:21:18 ============================================================================ +19:21:18 Calculate Source COMM Id = 2 +19:21:18 ============================================================================ +19:21:18 + + +waiting on router queue for slot.... +19:21:19 ============================================================================ +19:21:19 Slot Id : <86> +19:21:19 Transaction Type : REQUEST +19:21:19 Received From : +19:21:19 ============================================================================ +19:21:19 FNo. Len. Field Value +19:21:19 ============================================================================ +19:21:19 [ 1] [ 4] [0200] +19:21:19 [ 2] [ 16] [6688990060006606] +19:21:19 [ 3] [ 6] [010000] +19:21:19 [ 4] [ 12] [000005000000] +19:21:19 [ 7] [ 10] [0320192114] +19:21:19 [ 11] [ 6] [835704] +19:21:19 [ 12] [ 6] [192114] +19:21:19 [ 13] [ 4] [0320] +19:21:19 [ 15] [ 4] [0320] +19:21:19 [ 18] [ 4] [6011] +19:21:19 [ 22] [ 3] [900] +19:21:19 [ 25] [ 2] [02] +19:21:19 [ 28] [ 9] [D00002000] +19:21:19 [ 32] [ 6] [621354] +19:21:19 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:21:19 [ 37] [ 12] [507905230334] +19:21:19 [ 41] [ 8] [01013200] +19:21:19 [ 42] [ 15] [NATIVE ] +19:21:19 [ 43] [ 40] [Khoksivilay Distric Vientiane LAO] +19:21:19 [ 49] [ 3] [418] +19:21:19 [ 52] [ 16] [8F8B330F2E3016D5] +19:21:19 ============================================================================ +19:21:19 + + +waiting on router queue for slot.... +19:21:19 Sending to : +19:21:19 ============================================================================ +19:21:19 Sending to : +19:21:19 ============================================================================ +19:21:19 ============================================================================ +19:21:19 Slot Id : <86> +19:21:19 Transaction Type : REQUEST +19:21:19 Received From : +19:21:19 ============================================================================ +19:21:19 FNo. Len. Field Value +19:21:19 ============================================================================ +19:21:19 [ 1] [ 4] [0200] +19:21:19 [ 2] [ 16] [6688990060006606] +19:21:19 [ 3] [ 6] [010000] +19:21:19 [ 4] [ 12] [000005000000] +19:21:19 [ 7] [ 10] [0320192114] +19:21:19 [ 11] [ 6] [835704] +19:21:19 [ 12] [ 6] [192114] +19:21:19 [ 13] [ 4] [0320] +19:21:19 [ 15] [ 4] [0320] +19:21:19 [ 18] [ 4] [6011] +19:21:19 [ 22] [ 3] [900] +19:21:19 [ 25] [ 2] [02] +19:21:19 [ 28] [ 9] [D00002000] +19:21:19 [ 32] [ 6] [621354] +19:21:19 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:21:19 [ 37] [ 12] [507905230334] +19:21:19 [ 41] [ 8] [01013200] +19:21:19 [ 42] [ 15] [NATIVE ] +19:21:19 [ 43] [ 40] [Khoksivilay Distric Vientiane LAO] +19:21:19 [ 49] [ 3] [418] +19:21:19 [ 52] [ 16] [8F8B330F2E3016D5] +19:21:19 ============================================================================ +19:21:19 + + +waiting on router queue for slot.... +19:21:19 Sending to : +19:21:19 ============================================================================ +19:21:19 ============================================================================ +19:21:19 Slot Id : <86> +19:21:19 Transaction Type : REQUEST +19:21:19 Received From : +19:21:19 ============================================================================ +19:21:19 FNo. Len. Field Value +19:21:19 ============================================================================ +19:21:19 [ 1] [ 4] [0200] +19:21:19 [ 2] [ 16] [6688990060006606] +19:21:19 [ 3] [ 6] [010000] +19:21:19 [ 4] [ 12] [000005000000] +19:21:19 [ 7] [ 10] [0320192114] +19:21:19 [ 11] [ 6] [835704] +19:21:19 [ 12] [ 6] [192114] +19:21:19 [ 13] [ 4] [0320] +19:21:19 [ 15] [ 4] [0320] +19:21:19 [ 18] [ 4] [6011] +19:21:19 [ 22] [ 3] [900] +19:21:19 [ 25] [ 2] [02] +19:21:19 [ 28] [ 9] [D00002000] +19:21:19 [ 32] [ 6] [621354] +19:21:19 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:21:19 [ 37] [ 12] [507905230334] +19:21:19 [ 41] [ 8] [01013200] +19:21:19 [ 42] [ 15] [NATIVE ] +19:21:19 [ 43] [ 40] [Khoksivilay Distric Vientiane LAO] +19:21:19 [ 49] [ 3] [418] +19:21:19 [ 52] [ 16] [02DC9FA2E9098C97] +19:21:19 ============================================================================ +19:21:19 + + +waiting on router queue for slot.... +19:21:19 Sending to : <4> +19:21:19 ============================================================================ +19:21:20 ============================================================================ +19:21:20 Slot Id : <86> +19:21:20 Transaction Type : RESPONSE +19:21:20 Received From : +19:21:20 ============================================================================ +19:21:20 FNo. Len. Field Value +19:21:20 ============================================================================ +19:21:20 [ 1] [ 4] [0210] +19:21:20 [ 2] [ 16] [6688990060006606] +19:21:20 [ 3] [ 6] [010000] +19:21:20 [ 4] [ 12] [000005000000] +19:21:20 [ 11] [ 6] [835704] +19:21:20 [ 12] [ 6] [192114] +19:21:20 [ 15] [ 4] [0320] +19:21:20 [ 18] [ 4] [6011] +19:21:20 [ 32] [ 6] [621354] +19:21:20 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:21:20 [ 37] [ 12] [507905230334] +19:21:20 [ 38] [ 6] [022474] +19:21:20 [ 39] [ 2] [00] +19:21:20 [ 41] [ 8] [01013200] +19:21:20 [ 49] [ 3] [418] +19:21:20 [ 54] [ 20] [0002418C000023008677] +19:21:20 ============================================================================ +19:21:20 Sending to : +19:21:20 ============================================================================ +19:21:20 + + +waiting on router queue for slot.... +19:21:21 ============================================================================ +19:21:21 Slot Id : <42> +19:21:21 Transaction Type : REQUEST +19:21:21 Received From : +19:21:21 ============================================================================ +19:21:21 FNo. Len. Field Value +19:21:21 ============================================================================ +19:21:21 [ 1] [ 4] [0800] +19:21:21 [ 7] [ 10] [0321023309] +19:21:21 [ 11] [ 6] [193309] +19:21:21 [ 37] [ 12] [57919193309] +19:21:21 [ 70] [ 3] [301] +19:21:21 ============================================================================ +19:21:21 + + +waiting on router queue for slot.... +19:21:21 Sending to : +19:21:21 ============================================================================ +19:21:21 ============================================================================ +19:21:21 Slot Id : <42> +19:21:21 Transaction Type : RESPONSE +19:21:21 Received From : +19:21:21 ============================================================================ +19:21:21 FNo. Len. Field Value +19:21:21 ============================================================================ +19:21:21 [ 1] [ 4] [0810] +19:21:21 [ 7] [ 10] [0321023309] +19:21:21 [ 11] [ 6] [193309] +19:21:21 [ 37] [ 12] [579191933090] +19:21:21 [ 39] [ 2] [00] +19:21:21 [ 70] [ 3] [810] +19:21:21 ============================================================================ +19:21:21 Calculate Source COMM Id = 6 +19:21:21 ============================================================================ +19:21:21 + + +waiting on router queue for slot.... +19:21:22 ============================================================================ +19:21:22 Slot Id : <86> +19:21:22 Transaction Type : RESPONSE +19:21:22 Received From : +19:21:22 ============================================================================ +19:21:22 FNo. Len. Field Value +19:21:22 ============================================================================ +19:21:22 [ 1] [ 4] [0210] +19:21:22 [ 2] [ 16] [6688990060006606] +19:21:22 [ 3] [ 6] [010000] +19:21:22 [ 4] [ 12] [000005000000] +19:21:22 [ 11] [ 6] [835704] +19:21:22 [ 12] [ 6] [192114] +19:21:22 [ 15] [ 4] [0320] +19:21:22 [ 18] [ 4] [6011] +19:21:22 [ 32] [ 6] [621354] +19:21:22 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:21:22 [ 37] [ 12] [507905230334] +19:21:22 [ 38] [ 6] [022474] +19:21:22 [ 39] [ 2] [00] +19:21:22 [ 41] [ 8] [01013200] +19:21:22 [ 49] [ 3] [418] +19:21:22 [ 54] [ 20] [0002418C000023008677] +19:21:22 ============================================================================ +19:21:22 Calculate Source COMM Id = 0 +19:21:22 ============================================================================ +19:21:22 + + +waiting on router queue for slot.... +19:21:22 ============================================================================ +19:21:22 Slot Id : <88> +19:21:22 Transaction Type : REQUEST +19:21:22 Received From : +19:21:22 ============================================================================ +19:21:22 FNo. Len. Field Value +19:21:22 ============================================================================ +19:21:22 [ 1] [ 4] [0800] +19:21:22 [ 7] [ 10] [0320121912] +19:21:22 [ 11] [ 6] [005557] +19:21:22 [ 37] [ 12] [57919005557] +19:21:22 [ 70] [ 3] [301] +19:21:22 ============================================================================ +19:21:22 + + +waiting on router queue for slot.... +19:21:22 Sending to : +19:21:22 ============================================================================ +19:21:22 ============================================================================ +19:21:22 Slot Id : <88> +19:21:22 Transaction Type : RESPONSE +19:21:22 Received From : +19:21:22 ============================================================================ +19:21:22 FNo. Len. Field Value +19:21:22 ============================================================================ +19:21:22 [ 1] [ 4] [0810] +19:21:22 [ 7] [ 10] [0320121912] +19:21:22 [ 11] [ 6] [005557] +19:21:22 [ 37] [ 12] [579190055570] +19:21:22 [ 39] [ 2] [00] +19:21:22 [ 70] [ 3] [810] +19:21:22 ============================================================================ +19:21:22 Calculate Source COMM Id = 4 +19:21:22 ============================================================================ +19:21:22 + + +waiting on router queue for slot.... +19:21:30 ============================================================================ +19:21:30 Slot Id : <89> +19:21:30 Transaction Type : REQUEST +19:21:30 Received From : +19:21:30 ============================================================================ +19:21:30 FNo. Len. Field Value +19:21:30 ============================================================================ +19:21:30 [ 1] [ 4] [0800] +19:21:30 [ 7] [ 10] [0320122036] +19:21:30 [ 11] [ 6] [157924] +19:21:30 [ 70] [ 3] [301] +19:21:30 ============================================================================ +19:21:30 + + +waiting on router queue for slot.... +19:21:30 Sending to : +19:21:30 ============================================================================ +19:21:30 ============================================================================ +19:21:30 Slot Id : <89> +19:21:30 Transaction Type : RESPONSE +19:21:30 Received From : +19:21:30 ============================================================================ +19:21:30 FNo. Len. Field Value +19:21:30 ============================================================================ +19:21:30 [ 1] [ 4] [0810] +19:21:30 [ 7] [ 10] [0320122036] +19:21:30 [ 11] [ 6] [157924] +19:21:30 [ 39] [ 2] [00] +19:21:30 [ 70] [ 3] [301] +19:21:30 ============================================================================ +19:21:30 Calculate Source COMM Id = 2 +19:21:30 ============================================================================ +19:21:30 + + +waiting on router queue for slot.... +19:21:40 ============================================================================ +19:21:40 Slot Id : <59> +19:21:40 Transaction Type : REQUEST +19:21:40 Received From : +19:21:40 ============================================================================ +19:21:40 FNo. Len. Field Value +19:21:40 ============================================================================ +19:21:40 [ 1] [ 4] [0200] +19:21:40 [ 2] [ 16] [6688990105724601] +19:21:40 [ 3] [ 6] [012000] +19:21:40 [ 4] [ 12] [000090000000] +19:21:40 [ 7] [ 10] [0320192135] +19:21:40 [ 11] [ 6] [835758] +19:21:40 [ 12] [ 6] [192135] +19:21:40 [ 13] [ 4] [0320] +19:21:40 [ 15] [ 4] [0320] +19:21:40 [ 18] [ 4] [6011] +19:21:40 [ 22] [ 3] [900] +19:21:40 [ 25] [ 2] [02] +19:21:40 [ 28] [ 9] [D00002000] +19:21:40 [ 32] [ 6] [621354] +19:21:40 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:21:40 [ 37] [ 12] [507903461780] +19:21:40 [ 41] [ 8] [06001900] +19:21:40 [ 42] [ 15] [NATIVE ] +19:21:40 [ 43] [ 40] [La District La LAO] +19:21:40 [ 49] [ 3] [418] +19:21:40 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:21:40 ============================================================================ +19:21:40 + + +waiting on router queue for slot.... +19:21:40 Sending to : +19:21:40 ============================================================================ +19:21:40 Sending to : +19:21:40 ============================================================================ +19:21:41 ============================================================================ +19:21:41 Slot Id : <59> +19:21:41 Transaction Type : REQUEST +19:21:41 Received From : +19:21:41 ============================================================================ +19:21:41 FNo. Len. Field Value +19:21:41 ============================================================================ +19:21:41 [ 1] [ 4] [0200] +19:21:41 [ 2] [ 16] [6688990105724601] +19:21:41 [ 3] [ 6] [012000] +19:21:41 [ 4] [ 12] [000090000000] +19:21:41 [ 7] [ 10] [0320192135] +19:21:41 [ 11] [ 6] [835758] +19:21:41 [ 12] [ 6] [192135] +19:21:41 [ 13] [ 4] [0320] +19:21:41 [ 15] [ 4] [0320] +19:21:41 [ 18] [ 4] [6011] +19:21:41 [ 22] [ 3] [900] +19:21:41 [ 25] [ 2] [02] +19:21:41 [ 28] [ 9] [D00002000] +19:21:41 [ 32] [ 6] [621354] +19:21:41 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:21:41 [ 37] [ 12] [507903461780] +19:21:41 [ 41] [ 8] [06001900] +19:21:41 [ 42] [ 15] [NATIVE ] +19:21:41 [ 43] [ 40] [La District La LAO] +19:21:41 [ 49] [ 3] [418] +19:21:41 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:21:41 ============================================================================ +19:21:41 + + +waiting on router queue for slot.... +19:21:41 Sending to : +19:21:41 ============================================================================ +19:21:41 ============================================================================ +19:21:41 Slot Id : <59> +19:21:41 Transaction Type : REQUEST +19:21:41 Received From : +19:21:41 ============================================================================ +19:21:41 FNo. Len. Field Value +19:21:41 ============================================================================ +19:21:41 [ 1] [ 4] [0200] +19:21:41 [ 2] [ 16] [6688990105724601] +19:21:41 [ 3] [ 6] [012000] +19:21:41 [ 4] [ 12] [000090000000] +19:21:41 [ 7] [ 10] [0320192135] +19:21:41 [ 11] [ 6] [835758] +19:21:41 [ 12] [ 6] [192135] +19:21:41 [ 13] [ 4] [0320] +19:21:41 [ 15] [ 4] [0320] +19:21:41 [ 18] [ 4] [6011] +19:21:41 [ 22] [ 3] [900] +19:21:41 [ 25] [ 2] [02] +19:21:41 [ 28] [ 9] [D00002000] +19:21:41 [ 32] [ 6] [621354] +19:21:41 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:21:41 [ 37] [ 12] [507903461780] +19:21:41 [ 41] [ 8] [06001900] +19:21:41 [ 42] [ 15] [NATIVE ] +19:21:41 [ 43] [ 40] [La District La LAO] +19:21:41 [ 49] [ 3] [418] +19:21:41 [ 52] [ 16] [880D114C12D054AC] +19:21:41 ============================================================================ +19:21:41 + + +waiting on router queue for slot.... +19:21:41 Sending to : <4> +19:21:41 ============================================================================ +19:21:41 ============================================================================ +19:21:41 Slot Id : <79> +19:21:41 Transaction Type : REQUEST +19:21:41 Received From : +19:21:41 ============================================================================ +19:21:41 FNo. Len. Field Value +19:21:41 ============================================================================ +19:21:41 [ 1] [ 4] [0800] +19:21:41 [ 7] [ 10] [0320122048] +19:21:41 [ 11] [ 6] [157925] +19:21:41 [ 70] [ 3] [301] +19:21:41 ============================================================================ +19:21:41 + + +waiting on router queue for slot.... +19:21:41 Sending to : +19:21:41 ============================================================================ +19:21:41 ============================================================================ +19:21:41 Slot Id : <79> +19:21:41 Transaction Type : RESPONSE +19:21:41 Received From : +19:21:41 ============================================================================ +19:21:41 FNo. Len. Field Value +19:21:41 ============================================================================ +19:21:41 [ 1] [ 4] [0810] +19:21:41 [ 7] [ 10] [0320122048] +19:21:41 [ 11] [ 6] [157925] +19:21:41 [ 39] [ 2] [00] +19:21:41 [ 70] [ 3] [301] +19:21:41 ============================================================================ +19:21:41 Calculate Source COMM Id = 2 +19:21:41 ============================================================================ +19:21:41 + + +waiting on router queue for slot.... +19:21:42 ============================================================================ +19:21:42 Slot Id : <59> +19:21:42 Transaction Type : RESPONSE +19:21:42 Received From : +19:21:42 ============================================================================ +19:21:42 FNo. Len. Field Value +19:21:42 ============================================================================ +19:21:42 [ 1] [ 4] [0210] +19:21:42 [ 2] [ 16] [6688990105724601] +19:21:42 [ 3] [ 6] [012000] +19:21:42 [ 4] [ 12] [000090000000] +19:21:42 [ 11] [ 6] [835758] +19:21:42 [ 12] [ 6] [192135] +19:21:42 [ 15] [ 4] [0320] +19:21:42 [ 18] [ 4] [6011] +19:21:42 [ 32] [ 6] [621354] +19:21:42 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:21:42 [ 37] [ 12] [507903461780] +19:21:42 [ 38] [ 6] [607643] +19:21:42 [ 39] [ 2] [00] +19:21:42 [ 41] [ 8] [06001900] +19:21:42 [ 49] [ 3] [418] +19:21:42 [ 54] [ 20] [2002418C000011216689] +19:21:42 ============================================================================ +19:21:42 Sending to : +19:21:42 ============================================================================ +19:21:42 + + +waiting on router queue for slot.... +19:21:43 ============================================================================ +19:21:43 Slot Id : <59> +19:21:43 Transaction Type : RESPONSE +19:21:43 Received From : +19:21:43 ============================================================================ +19:21:43 FNo. Len. Field Value +19:21:43 ============================================================================ +19:21:43 [ 1] [ 4] [0210] +19:21:43 [ 2] [ 16] [6688990105724601] +19:21:43 [ 3] [ 6] [012000] +19:21:43 [ 4] [ 12] [000090000000] +19:21:43 [ 11] [ 6] [835758] +19:21:43 [ 12] [ 6] [192135] +19:21:43 [ 15] [ 4] [0320] +19:21:43 [ 18] [ 4] [6011] +19:21:43 [ 32] [ 6] [621354] +19:21:43 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:21:43 [ 37] [ 12] [507903461780] +19:21:43 [ 38] [ 6] [607643] +19:21:43 [ 39] [ 2] [00] +19:21:43 [ 41] [ 8] [06001900] +19:21:43 [ 49] [ 3] [418] +19:21:43 [ 54] [ 20] [2002418C000011216689] +19:21:43 ============================================================================ +19:21:43 Calculate Source COMM Id = 0 +19:21:43 ============================================================================ +19:21:43 + + +waiting on router queue for slot.... +19:21:47 ============================================================================ +19:21:47 Slot Id : <84> +19:21:47 Transaction Type : REQUEST +19:21:47 Received From : +19:21:47 ============================================================================ +19:21:47 FNo. Len. Field Value +19:21:47 ============================================================================ +19:21:47 [ 1] [ 4] [0200] +19:21:47 [ 2] [ 16] [1808931000020352] +19:21:47 [ 3] [ 6] [010000] +19:21:47 [ 4] [ 12] [000015000000] +19:21:47 [ 7] [ 10] [0320191936] +19:21:47 [ 11] [ 6] [956042] +19:21:47 [ 12] [ 6] [191936] +19:21:47 [ 13] [ 4] [0320] +19:21:47 [ 15] [ 4] [0320] +19:21:47 [ 18] [ 4] [6011] +19:21:47 [ 19] [ 3] [418] +19:21:47 [ 22] [ 3] [021] +19:21:47 [ 25] [ 2] [01] +19:21:47 [ 28] [ 9] [D00002000] +19:21:47 [ 32] [ 6] [668899] +19:21:47 [ 35] [ 27] [1808931000020352=1803500134] +19:21:47 [ 37] [ 12] [507902093488] +19:21:47 [ 41] [ 8] [03020021] +19:21:47 [ 42] [ 15] [APT ] +19:21:47 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +19:21:47 [ 49] [ 3] [418] +19:21:47 [ 52] [ 16] [88C821A781A6DFFB] +19:21:47 ============================================================================ +19:21:47 + + +waiting on router queue for slot.... +19:21:47 Sending to : +19:21:47 ============================================================================ +19:21:47 Sending to : +19:21:47 ============================================================================ +19:21:47 ============================================================================ +19:21:47 Slot Id : <84> +19:21:47 Transaction Type : REQUEST +19:21:47 Received From : +19:21:47 ============================================================================ +19:21:47 FNo. Len. Field Value +19:21:47 ============================================================================ +19:21:47 [ 1] [ 4] [0200] +19:21:47 [ 2] [ 16] [1808931000020352] +19:21:47 [ 3] [ 6] [010000] +19:21:47 [ 4] [ 12] [000015000000] +19:21:47 [ 7] [ 10] [0320191936] +19:21:47 [ 11] [ 6] [956042] +19:21:47 [ 12] [ 6] [191936] +19:21:47 [ 13] [ 4] [0320] +19:21:47 [ 15] [ 4] [0320] +19:21:47 [ 18] [ 4] [6011] +19:21:47 [ 19] [ 3] [418] +19:21:47 [ 22] [ 3] [021] +19:21:47 [ 25] [ 2] [01] +19:21:47 [ 28] [ 9] [D00002000] +19:21:47 [ 32] [ 6] [668899] +19:21:47 [ 35] [ 27] [1808931000020352=1803500134] +19:21:47 [ 37] [ 12] [507902093488] +19:21:47 [ 41] [ 8] [03020021] +19:21:47 [ 42] [ 15] [APT ] +19:21:47 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +19:21:47 [ 49] [ 3] [418] +19:21:47 [ 52] [ 16] [88C821A781A6DFFB] +19:21:47 ============================================================================ +19:21:47 + + +waiting on router queue for slot.... +19:21:47 Sending to : +19:21:47 ============================================================================ +19:21:47 ============================================================================ +19:21:47 Slot Id : <84> +19:21:47 Transaction Type : REQUEST +19:21:47 Received From : +19:21:47 ============================================================================ +19:21:47 FNo. Len. Field Value +19:21:47 ============================================================================ +19:21:47 [ 1] [ 4] [0200] +19:21:47 [ 2] [ 16] [1808931000020352] +19:21:47 [ 3] [ 6] [010000] +19:21:47 [ 4] [ 12] [000015000000] +19:21:47 [ 7] [ 10] [0320191936] +19:21:47 [ 11] [ 6] [956042] +19:21:47 [ 12] [ 6] [191936] +19:21:47 [ 13] [ 4] [0320] +19:21:47 [ 15] [ 4] [0320] +19:21:47 [ 18] [ 4] [6011] +19:21:47 [ 19] [ 3] [418] +19:21:47 [ 22] [ 3] [021] +19:21:47 [ 25] [ 2] [01] +19:21:47 [ 28] [ 9] [D00002000] +19:21:47 [ 32] [ 6] [668899] +19:21:47 [ 35] [ 27] [1808931000020352=1803500134] +19:21:47 [ 37] [ 12] [507902093488] +19:21:47 [ 41] [ 8] [03020021] +19:21:47 [ 42] [ 15] [APT ] +19:21:47 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +19:21:47 [ 49] [ 3] [418] +19:21:47 [ 52] [ 16] [2EB1DA4B61E1CB4E] +19:21:47 ============================================================================ +19:21:47 + + +waiting on router queue for slot.... +19:21:47 Sending to : <2> +19:21:47 ============================================================================ +19:21:49 ============================================================================ +19:21:49 Slot Id : <58> +19:21:49 Transaction Type : REQUEST +19:21:49 Received From : +19:21:49 ============================================================================ +19:21:49 FNo. Len. Field Value +19:21:49 ============================================================================ +19:21:49 [ 1] [ 4] [0200] +19:21:49 [ 2] [ 16] [6213541000672033] +19:21:49 [ 3] [ 6] [301000] +19:21:49 [ 4] [ 12] [000000000000] +19:21:49 [ 7] [ 10] [0320192209] +19:21:49 [ 11] [ 6] [211162] +19:21:49 [ 12] [ 6] [191013] +19:21:49 [ 13] [ 4] [0320] +19:21:49 [ 14] [ 4] [4912] +19:21:49 [ 15] [ 4] [0320] +19:21:49 [ 18] [ 4] [6011] +19:21:49 [ 19] [ 3] [418] +19:21:49 [ 22] [ 3] [021] +19:21:49 [ 25] [ 2] [01] +19:21:49 [ 28] [ 9] [D00000000] +19:21:49 [ 32] [ 6] [198901] +19:21:49 [ 35] [ 32] [6213541000672033=491212017203169] +19:21:49 [ 37] [ 12] [507919211162] +19:21:49 [ 41] [ 8] [01529014] +19:21:49 [ 42] [ 15] [000000041529014] +19:21:49 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:21:49 [ 49] [ 3] [418] +19:21:49 [ 52] [ 16] [DC9D97543C45EABB] +19:21:49 ============================================================================ +19:21:49 + + +waiting on router queue for slot.... +19:21:49 Sending to : +19:21:49 ============================================================================ +19:21:49 Sending to : +19:21:49 ============================================================================ +19:21:49 ============================================================================ +19:21:49 Slot Id : <58> +19:21:49 Transaction Type : REQUEST +19:21:49 Received From : +19:21:49 ============================================================================ +19:21:49 FNo. Len. Field Value +19:21:49 ============================================================================ +19:21:49 [ 1] [ 4] [0200] +19:21:49 [ 2] [ 16] [6213541000672033] +19:21:49 [ 3] [ 6] [301000] +19:21:49 [ 4] [ 12] [000000000000] +19:21:49 [ 7] [ 10] [0320192209] +19:21:49 [ 11] [ 6] [211162] +19:21:49 [ 12] [ 6] [191013] +19:21:49 [ 13] [ 4] [0320] +19:21:49 [ 14] [ 4] [4912] +19:21:49 [ 15] [ 4] [0320] +19:21:49 [ 18] [ 4] [6011] +19:21:49 [ 19] [ 3] [418] +19:21:49 [ 22] [ 3] [021] +19:21:49 [ 25] [ 2] [01] +19:21:49 [ 28] [ 9] [D00000000] +19:21:49 [ 32] [ 6] [198901] +19:21:49 [ 35] [ 32] [6213541000672033=491212017203169] +19:21:49 [ 37] [ 12] [507919211162] +19:21:49 [ 41] [ 8] [01529014] +19:21:49 [ 42] [ 15] [000000041529014] +19:21:49 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:21:49 [ 49] [ 3] [418] +19:21:49 [ 52] [ 16] [DC9D97543C45EABB] +19:21:49 ============================================================================ +19:21:49 + + +waiting on router queue for slot.... +19:21:49 Sending to : +19:21:49 ============================================================================ +19:21:49 ============================================================================ +19:21:49 Slot Id : <58> +19:21:49 Transaction Type : REQUEST +19:21:49 Received From : +19:21:49 ============================================================================ +19:21:49 FNo. Len. Field Value +19:21:49 ============================================================================ +19:21:49 [ 1] [ 4] [0200] +19:21:49 [ 2] [ 16] [6213541000672033] +19:21:49 [ 3] [ 6] [301000] +19:21:49 [ 4] [ 12] [000000000000] +19:21:49 [ 7] [ 10] [0320192209] +19:21:49 [ 11] [ 6] [211162] +19:21:49 [ 12] [ 6] [191013] +19:21:49 [ 13] [ 4] [0320] +19:21:49 [ 14] [ 4] [4912] +19:21:49 [ 15] [ 4] [0320] +19:21:49 [ 18] [ 4] [6011] +19:21:49 [ 19] [ 3] [418] +19:21:49 [ 22] [ 3] [021] +19:21:49 [ 25] [ 2] [01] +19:21:49 [ 28] [ 9] [D00000000] +19:21:49 [ 32] [ 6] [198901] +19:21:49 [ 35] [ 32] [6213541000672033=491212017203169] +19:21:49 [ 37] [ 12] [507919211162] +19:21:49 [ 41] [ 8] [01529014] +19:21:49 [ 42] [ 15] [000000041529014] +19:21:49 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:21:49 [ 49] [ 3] [418] +19:21:49 [ 52] [ 16] [3D520585CA77A566] +19:21:49 ============================================================================ +19:21:49 + + +waiting on router queue for slot.... +19:21:49 Sending to : <0> +19:21:49 ============================================================================ +19:21:50 ============================================================================ +19:21:50 Slot Id : <58> +19:21:50 Transaction Type : RESPONSE +19:21:50 Received From : +19:21:50 ============================================================================ +19:21:50 FNo. Len. Field Value +19:21:50 ============================================================================ +19:21:50 [ 1] [ 4] [0210] +19:21:50 [ 2] [ 16] [6213541000672033] +19:21:50 [ 3] [ 6] [301000] +19:21:50 [ 4] [ 12] [000000000000] +19:21:50 [ 7] [ 10] [0320192209] +19:21:50 [ 11] [ 6] [211162] +19:21:50 [ 12] [ 6] [191013] +19:21:50 [ 13] [ 4] [0320] +19:21:50 [ 15] [ 4] [0320] +19:21:50 [ 18] [ 4] [6011] +19:21:50 [ 19] [ 3] [418] +19:21:50 [ 32] [ 6] [198901] +19:21:50 [ 35] [ 32] [6213541000672033=491212017203169] +19:21:50 [ 37] [ 12] [507919211162] +19:21:50 [ 38] [ 6] [616261] +19:21:50 [ 39] [ 2] [00] +19:21:50 [ 41] [ 8] [01529014] +19:21:50 [ 49] [ 3] [418] +19:21:50 [ 54] [ 40] [1001418C0012265648471002418C001226564847] +19:21:50 ============================================================================ +19:21:50 Sending to : +19:21:50 ============================================================================ +19:21:50 + + +waiting on router queue for slot.... +19:21:51 ============================================================================ +19:21:51 Slot Id : <58> +19:21:51 Transaction Type : RESPONSE +19:21:51 Received From : +19:21:51 ============================================================================ +19:21:51 FNo. Len. Field Value +19:21:51 ============================================================================ +19:21:51 [ 1] [ 4] [0210] +19:21:51 [ 2] [ 16] [6213541000672033] +19:21:51 [ 3] [ 6] [301000] +19:21:51 [ 4] [ 12] [000000000000] +19:21:51 [ 7] [ 10] [0320192209] +19:21:51 [ 11] [ 6] [211162] +19:21:51 [ 12] [ 6] [191013] +19:21:51 [ 13] [ 4] [0320] +19:21:51 [ 15] [ 4] [0320] +19:21:51 [ 18] [ 4] [6011] +19:21:51 [ 19] [ 3] [418] +19:21:51 [ 32] [ 6] [198901] +19:21:51 [ 35] [ 32] [6213541000672033=491212017203169] +19:21:51 [ 37] [ 12] [507919211162] +19:21:51 [ 38] [ 6] [616261] +19:21:51 [ 39] [ 2] [00] +19:21:51 [ 41] [ 8] [01529014] +19:21:51 [ 49] [ 3] [418] +19:21:51 [ 54] [ 40] [1001418C0012265648471002418C001226564847] +19:21:51 ============================================================================ +19:21:51 Calculate Source COMM Id = 5 +19:21:51 ============================================================================ +19:21:51 + + +waiting on router queue for slot.... +19:21:52 ============================================================================ +19:21:52 Slot Id : <84> +19:21:52 Transaction Type : RESPONSE +19:21:52 Received From : +19:21:52 ============================================================================ +19:21:52 FNo. Len. Field Value +19:21:52 ============================================================================ +19:21:52 [ 1] [ 4] [0210] +19:21:52 [ 2] [ 16] [1808931000020352] +19:21:52 [ 3] [ 6] [010000] +19:21:52 [ 4] [ 12] [000015000000] +19:21:52 [ 6] [ 12] [000015000000] +19:21:52 [ 7] [ 10] [0320191936] +19:21:52 [ 11] [ 6] [956042] +19:21:52 [ 12] [ 6] [191936] +19:21:52 [ 13] [ 4] [0320] +19:21:52 [ 18] [ 4] [6011] +19:21:52 [ 19] [ 3] [418] +19:21:52 [ 22] [ 3] [021] +19:21:52 [ 32] [ 6] [668899] +19:21:52 [ 35] [ 27] [1808931000020352=1803500134] +19:21:52 [ 37] [ 12] [507902093488] +19:21:52 [ 38] [ 6] [956042] +19:21:52 [ 39] [ 2] [00] +19:21:52 [ 41] [ 8] [03020021] +19:21:52 [ 49] [ 3] [418] +19:21:52 [ 52] [ 16] [2EB1DA4B61E1CB4E] +19:21:52 [ 54] [ 20] [1001418C000008086700] +19:21:52 ============================================================================ +19:21:52 Sending to : +19:21:52 ============================================================================ +19:21:52 + + +waiting on router queue for slot.... +19:21:54 ============================================================================ +19:21:54 Slot Id : <84> +19:21:54 Transaction Type : RESPONSE +19:21:54 Received From : +19:21:54 ============================================================================ +19:21:54 FNo. Len. Field Value +19:21:54 ============================================================================ +19:21:54 [ 1] [ 4] [0210] +19:21:54 [ 2] [ 16] [1808931000020352] +19:21:54 [ 3] [ 6] [010000] +19:21:54 [ 4] [ 12] [000015000000] +19:21:54 [ 6] [ 12] [000015000000] +19:21:54 [ 7] [ 10] [0320191936] +19:21:54 [ 11] [ 6] [956042] +19:21:54 [ 12] [ 6] [191936] +19:21:54 [ 13] [ 4] [0320] +19:21:54 [ 18] [ 4] [6011] +19:21:54 [ 19] [ 3] [418] +19:21:54 [ 22] [ 3] [021] +19:21:54 [ 32] [ 6] [668899] +19:21:54 [ 35] [ 27] [1808931000020352=1803500134] +19:21:54 [ 37] [ 12] [507902093488] +19:21:54 [ 38] [ 6] [956042] +19:21:54 [ 39] [ 2] [00] +19:21:54 [ 41] [ 8] [03020021] +19:21:54 [ 49] [ 3] [418] +19:21:54 [ 52] [ 16] [2EB1DA4B61E1CB4E] +19:21:54 [ 54] [ 20] [1001418C000008086700] +19:21:54 ============================================================================ +19:21:54 Calculate Source COMM Id = 4 +19:21:54 ============================================================================ +19:21:54 + + +waiting on router queue for slot.... +19:22:03 ============================================================================ +19:22:03 Slot Id : <5> +19:22:03 Transaction Type : REQUEST +19:22:03 Received From : +19:22:03 ============================================================================ +19:22:03 FNo. Len. Field Value +19:22:03 ============================================================================ +19:22:03 [ 1] [ 4] [0800] +19:22:03 [ 7] [ 10] [0320122109] +19:22:03 [ 11] [ 6] [157926] +19:22:03 [ 70] [ 3] [301] +19:22:03 ============================================================================ +19:22:03 + + +waiting on router queue for slot.... +19:22:03 Sending to : +19:22:03 ============================================================================ +19:22:03 ============================================================================ +19:22:03 Slot Id : <5> +19:22:03 Transaction Type : RESPONSE +19:22:03 Received From : +19:22:03 ============================================================================ +19:22:03 FNo. Len. Field Value +19:22:03 ============================================================================ +19:22:03 [ 1] [ 4] [0810] +19:22:03 [ 7] [ 10] [0320122109] +19:22:03 [ 11] [ 6] [157926] +19:22:03 [ 39] [ 2] [00] +19:22:03 [ 70] [ 3] [301] +19:22:03 ============================================================================ +19:22:03 Calculate Source COMM Id = 2 +19:22:03 ============================================================================ +19:22:03 + + +waiting on router queue for slot.... +19:22:07 ============================================================================ +19:22:07 Slot Id : <67> +19:22:07 Transaction Type : REQUEST +19:22:07 Received From : +19:22:07 ============================================================================ +19:22:07 FNo. Len. Field Value +19:22:07 ============================================================================ +19:22:07 [ 1] [ 4] [0800] +19:22:07 [ 2] [ 5] [02531] +19:22:07 [ 3] [ 6] [579198] +19:22:07 [ 7] [ 10] [0320122207] +19:22:07 [ 11] [ 6] [807536] +19:22:07 [ 15] [ 10] [0320122207] +19:22:07 [ 37] [ 11] [57919807536] +19:22:07 [ 70] [ 3] [001] +19:22:07 ============================================================================ +19:22:07 + + +waiting on router queue for slot.... +19:22:07 ============================================================================ +19:22:07 Slot Id : <67> +19:22:07 Transaction Type : RESPONSE +19:22:07 Received From : +19:22:07 ============================================================================ +19:22:07 FNo. Len. Field Value +19:22:07 ============================================================================ +19:22:07 [ 1] [ 4] [0810] +19:22:07 [ 7] [ 10] [0320122207] +19:22:07 [ 11] [ 6] [807536] +19:22:07 [ 15] [ 4] [0320] +19:22:07 [ 37] [ 12] [57919807536] +19:22:07 [ 39] [ 2] [00] +19:22:07 [ 70] [ 3] [001] +19:22:07 ============================================================================ +19:22:07 Sending to : +19:22:07 ============================================================================ +19:22:07 + + +waiting on router queue for slot.... +19:22:10 ============================================================================ +19:22:10 Slot Id : <93> +19:22:10 Transaction Type : REQUEST +19:22:10 Received From : +19:22:10 ============================================================================ +19:22:10 FNo. Len. Field Value +19:22:10 ============================================================================ +19:22:10 [ 1] [ 4] [0200] +19:22:10 [ 2] [ 16] [6213541000672033] +19:22:10 [ 3] [ 6] [011000] +19:22:10 [ 4] [ 12] [000100000000] +19:22:10 [ 7] [ 10] [0320192230] +19:22:10 [ 11] [ 6] [211165] +19:22:10 [ 12] [ 6] [191035] +19:22:10 [ 13] [ 4] [0320] +19:22:10 [ 14] [ 4] [4912] +19:22:10 [ 15] [ 4] [0320] +19:22:10 [ 18] [ 4] [6011] +19:22:10 [ 19] [ 3] [418] +19:22:10 [ 22] [ 3] [021] +19:22:10 [ 25] [ 2] [01] +19:22:10 [ 28] [ 9] [D00002000] +19:22:10 [ 32] [ 6] [198901] +19:22:10 [ 35] [ 32] [6213541000672033=491212017203169] +19:22:10 [ 37] [ 12] [507919211165] +19:22:10 [ 41] [ 8] [01529014] +19:22:10 [ 42] [ 15] [000000041529014] +19:22:10 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:22:10 [ 49] [ 3] [418] +19:22:10 [ 52] [ 16] [DC9D97543C45EABB] +19:22:10 ============================================================================ +19:22:10 + + +waiting on router queue for slot.... +19:22:10 Sending to : +19:22:10 ============================================================================ +19:22:10 Sending to : +19:22:10 ============================================================================ +19:22:11 ============================================================================ +19:22:11 Slot Id : <93> +19:22:11 Transaction Type : REQUEST +19:22:11 Received From : +19:22:11 ============================================================================ +19:22:11 FNo. Len. Field Value +19:22:11 ============================================================================ +19:22:11 [ 1] [ 4] [0200] +19:22:11 [ 2] [ 16] [6213541000672033] +19:22:11 [ 3] [ 6] [011000] +19:22:11 [ 4] [ 12] [000100000000] +19:22:11 [ 7] [ 10] [0320192230] +19:22:11 [ 11] [ 6] [211165] +19:22:11 [ 12] [ 6] [191035] +19:22:11 [ 13] [ 4] [0320] +19:22:11 [ 14] [ 4] [4912] +19:22:11 [ 15] [ 4] [0320] +19:22:11 [ 18] [ 4] [6011] +19:22:11 [ 19] [ 3] [418] +19:22:11 [ 22] [ 3] [021] +19:22:11 [ 25] [ 2] [01] +19:22:11 [ 28] [ 9] [D00002000] +19:22:11 [ 32] [ 6] [198901] +19:22:11 [ 35] [ 32] [6213541000672033=491212017203169] +19:22:11 [ 37] [ 12] [507919211165] +19:22:11 [ 41] [ 8] [01529014] +19:22:11 [ 42] [ 15] [000000041529014] +19:22:11 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:22:11 [ 49] [ 3] [418] +19:22:11 [ 52] [ 16] [DC9D97543C45EABB] +19:22:11 ============================================================================ +19:22:11 + + +waiting on router queue for slot.... +19:22:11 Sending to : +19:22:11 ============================================================================ +19:22:11 ============================================================================ +19:22:11 Slot Id : <93> +19:22:11 Transaction Type : REQUEST +19:22:11 Received From : +19:22:11 ============================================================================ +19:22:11 FNo. Len. Field Value +19:22:11 ============================================================================ +19:22:11 [ 1] [ 4] [0200] +19:22:11 [ 2] [ 16] [6213541000672033] +19:22:11 [ 3] [ 6] [011000] +19:22:11 [ 4] [ 12] [000100000000] +19:22:11 [ 7] [ 10] [0320192230] +19:22:11 [ 11] [ 6] [211165] +19:22:11 [ 12] [ 6] [191035] +19:22:11 [ 13] [ 4] [0320] +19:22:11 [ 14] [ 4] [4912] +19:22:11 [ 15] [ 4] [0320] +19:22:11 [ 18] [ 4] [6011] +19:22:11 [ 19] [ 3] [418] +19:22:11 [ 22] [ 3] [021] +19:22:11 [ 25] [ 2] [01] +19:22:11 [ 28] [ 9] [D00002000] +19:22:11 [ 32] [ 6] [198901] +19:22:11 [ 35] [ 32] [6213541000672033=491212017203169] +19:22:11 [ 37] [ 12] [507919211165] +19:22:11 [ 41] [ 8] [01529014] +19:22:11 [ 42] [ 15] [000000041529014] +19:22:11 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:22:11 [ 49] [ 3] [418] +19:22:11 [ 52] [ 16] [3D520585CA77A566] +19:22:11 ============================================================================ +19:22:11 + + +waiting on router queue for slot.... +19:22:11 Sending to : <0> +19:22:11 ============================================================================ +19:22:11 ============================================================================ +19:22:11 Slot Id : <93> +19:22:11 Transaction Type : RESPONSE +19:22:11 Received From : +19:22:11 ============================================================================ +19:22:11 FNo. Len. Field Value +19:22:11 ============================================================================ +19:22:11 [ 1] [ 4] [0210] +19:22:11 [ 2] [ 16] [6213541000672033] +19:22:11 [ 3] [ 6] [011000] +19:22:11 [ 4] [ 12] [000100000000] +19:22:11 [ 7] [ 10] [0320192230] +19:22:11 [ 11] [ 6] [211165] +19:22:11 [ 12] [ 6] [191035] +19:22:11 [ 13] [ 4] [0320] +19:22:11 [ 15] [ 4] [0320] +19:22:11 [ 18] [ 4] [6011] +19:22:11 [ 19] [ 3] [418] +19:22:11 [ 32] [ 6] [198901] +19:22:11 [ 35] [ 32] [6213541000672033=491212017203169] +19:22:11 [ 37] [ 12] [507919211165] +19:22:11 [ 38] [ 6] [815332] +19:22:11 [ 39] [ 2] [00] +19:22:11 [ 41] [ 8] [01529014] +19:22:11 [ 49] [ 3] [418] +19:22:11 [ 54] [ 40] [1001418C0011263648471002418C001126364847] +19:22:11 ============================================================================ +19:22:11 Sending to : +19:22:11 ============================================================================ +19:22:11 + + +waiting on router queue for slot.... +19:22:13 ============================================================================ +19:22:13 Slot Id : <93> +19:22:13 Transaction Type : RESPONSE +19:22:13 Received From : +19:22:13 ============================================================================ +19:22:13 FNo. Len. Field Value +19:22:13 ============================================================================ +19:22:13 [ 1] [ 4] [0210] +19:22:13 [ 2] [ 16] [6213541000672033] +19:22:13 [ 3] [ 6] [011000] +19:22:13 [ 4] [ 12] [000100000000] +19:22:13 [ 7] [ 10] [0320192230] +19:22:13 [ 11] [ 6] [211165] +19:22:13 [ 12] [ 6] [191035] +19:22:13 [ 13] [ 4] [0320] +19:22:13 [ 15] [ 4] [0320] +19:22:13 [ 18] [ 4] [6011] +19:22:13 [ 19] [ 3] [418] +19:22:13 [ 32] [ 6] [198901] +19:22:13 [ 35] [ 32] [6213541000672033=491212017203169] +19:22:13 [ 37] [ 12] [507919211165] +19:22:13 [ 38] [ 6] [815332] +19:22:13 [ 39] [ 2] [00] +19:22:13 [ 41] [ 8] [01529014] +19:22:13 [ 49] [ 3] [418] +19:22:13 [ 54] [ 40] [1001418C0011263648471002418C001126364847] +19:22:13 ============================================================================ +19:22:13 Calculate Source COMM Id = 5 +19:22:13 ============================================================================ +19:22:13 + + +waiting on router queue for slot.... +19:22:15 ============================================================================ +19:22:15 Slot Id : <62> +19:22:15 Transaction Type : REQUEST +19:22:15 Received From : +19:22:15 ============================================================================ +19:22:15 FNo. Len. Field Value +19:22:15 ============================================================================ +19:22:15 [ 1] [ 4] [0800] +19:22:15 [ 7] [ 10] [0320122122] +19:22:15 [ 11] [ 6] [157927] +19:22:15 [ 70] [ 3] [301] +19:22:15 ============================================================================ +19:22:15 + + +waiting on router queue for slot.... +19:22:15 Sending to : +19:22:15 ============================================================================ +19:22:15 ============================================================================ +19:22:15 Slot Id : <62> +19:22:15 Transaction Type : RESPONSE +19:22:15 Received From : +19:22:15 ============================================================================ +19:22:15 FNo. Len. Field Value +19:22:15 ============================================================================ +19:22:15 [ 1] [ 4] [0810] +19:22:15 [ 7] [ 10] [0320122122] +19:22:15 [ 11] [ 6] [157927] +19:22:15 [ 39] [ 2] [00] +19:22:15 [ 70] [ 3] [301] +19:22:15 ============================================================================ +19:22:15 Calculate Source COMM Id = 2 +19:22:15 ============================================================================ +19:22:15 + + +waiting on router queue for slot.... +19:22:26 ============================================================================ +19:22:26 Slot Id : <39> +19:22:26 Transaction Type : REQUEST +19:22:26 Received From : +19:22:26 ============================================================================ +19:22:26 FNo. Len. Field Value +19:22:26 ============================================================================ +19:22:26 [ 1] [ 4] [0800] +19:22:26 [ 7] [ 10] [0320122133] +19:22:26 [ 11] [ 6] [157928] +19:22:26 [ 70] [ 3] [301] +19:22:26 ============================================================================ +19:22:26 + + +waiting on router queue for slot.... +19:22:26 Sending to : +19:22:26 ============================================================================ +19:22:26 ============================================================================ +19:22:26 Slot Id : <39> +19:22:26 Transaction Type : RESPONSE +19:22:26 Received From : +19:22:26 ============================================================================ +19:22:26 FNo. Len. Field Value +19:22:26 ============================================================================ +19:22:26 [ 1] [ 4] [0810] +19:22:26 [ 7] [ 10] [0320122133] +19:22:26 [ 11] [ 6] [157928] +19:22:26 [ 39] [ 2] [00] +19:22:26 [ 70] [ 3] [301] +19:22:26 ============================================================================ +19:22:26 Calculate Source COMM Id = 2 +19:22:26 ============================================================================ +19:22:26 + + +waiting on router queue for slot.... +19:22:26 ============================================================================ +19:22:26 Slot Id : <56> +19:22:26 Transaction Type : REQUEST +19:22:26 Received From : +19:22:26 ============================================================================ +19:22:26 FNo. Len. Field Value +19:22:26 ============================================================================ +19:22:26 [ 1] [ 4] [0800] +19:22:26 [ 7] [ 10] [0321023414] +19:22:26 [ 11] [ 6] [193414] +19:22:26 [ 37] [ 12] [57919193414] +19:22:26 [ 70] [ 3] [301] +19:22:26 ============================================================================ +19:22:26 + + +waiting on router queue for slot.... +19:22:26 Sending to : +19:22:26 ============================================================================ +19:22:26 ============================================================================ +19:22:26 Slot Id : <56> +19:22:26 Transaction Type : RESPONSE +19:22:26 Received From : +19:22:26 ============================================================================ +19:22:26 FNo. Len. Field Value +19:22:26 ============================================================================ +19:22:26 [ 1] [ 4] [0810] +19:22:26 [ 7] [ 10] [0321023414] +19:22:26 [ 11] [ 6] [193414] +19:22:26 [ 37] [ 12] [579191934140] +19:22:26 [ 39] [ 2] [00] +19:22:26 [ 70] [ 3] [810] +19:22:26 ============================================================================ +19:22:26 Calculate Source COMM Id = 6 +19:22:26 ============================================================================ +19:22:26 + + +waiting on router queue for slot.... +19:22:31 ============================================================================ +19:22:31 Slot Id : <82> +19:22:31 Transaction Type : REQUEST +19:22:31 Received From : +19:22:31 ============================================================================ +19:22:31 FNo. Len. Field Value +19:22:31 ============================================================================ +19:22:31 [ 1] [ 4] [0200] +19:22:31 [ 2] [ 16] [6688990060006606] +19:22:31 [ 3] [ 6] [010000] +19:22:31 [ 4] [ 12] [000010000000] +19:22:31 [ 7] [ 10] [0320192226] +19:22:31 [ 11] [ 6] [835858] +19:22:31 [ 12] [ 6] [192226] +19:22:31 [ 13] [ 4] [0320] +19:22:31 [ 15] [ 4] [0320] +19:22:31 [ 18] [ 4] [6011] +19:22:31 [ 22] [ 3] [900] +19:22:31 [ 25] [ 2] [02] +19:22:31 [ 28] [ 9] [D00002000] +19:22:31 [ 32] [ 6] [621354] +19:22:31 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:22:31 [ 37] [ 12] [507905230336] +19:22:31 [ 41] [ 8] [01013200] +19:22:31 [ 42] [ 15] [NATIVE ] +19:22:31 [ 43] [ 40] [Khoksivilay Distric Vientiane LAO] +19:22:31 [ 49] [ 3] [418] +19:22:31 [ 52] [ 16] [8F8B330F2E3016D5] +19:22:31 ============================================================================ +19:22:31 + + +waiting on router queue for slot.... +19:22:31 Sending to : +19:22:31 ============================================================================ +19:22:31 Sending to : +19:22:31 ============================================================================ +19:22:31 ============================================================================ +19:22:31 Slot Id : <82> +19:22:31 Transaction Type : REQUEST +19:22:31 Received From : +19:22:31 ============================================================================ +19:22:31 FNo. Len. Field Value +19:22:31 ============================================================================ +19:22:31 [ 1] [ 4] [0200] +19:22:31 [ 2] [ 16] [6688990060006606] +19:22:31 [ 3] [ 6] [010000] +19:22:31 [ 4] [ 12] [000010000000] +19:22:31 [ 7] [ 10] [0320192226] +19:22:31 [ 11] [ 6] [835858] +19:22:31 [ 12] [ 6] [192226] +19:22:31 [ 13] [ 4] [0320] +19:22:31 [ 15] [ 4] [0320] +19:22:31 [ 18] [ 4] [6011] +19:22:31 [ 22] [ 3] [900] +19:22:31 [ 25] [ 2] [02] +19:22:31 [ 28] [ 9] [D00002000] +19:22:31 [ 32] [ 6] [621354] +19:22:31 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:22:31 [ 37] [ 12] [507905230336] +19:22:31 [ 41] [ 8] [01013200] +19:22:31 [ 42] [ 15] [NATIVE ] +19:22:31 [ 43] [ 40] [Khoksivilay Distric Vientiane LAO] +19:22:31 [ 49] [ 3] [418] +19:22:31 [ 52] [ 16] [8F8B330F2E3016D5] +19:22:31 ============================================================================ +19:22:31 + + +waiting on router queue for slot.... +19:22:31 Sending to : +19:22:31 ============================================================================ +19:22:31 ============================================================================ +19:22:31 Slot Id : <82> +19:22:31 Transaction Type : REQUEST +19:22:31 Received From : +19:22:31 ============================================================================ +19:22:31 FNo. Len. Field Value +19:22:31 ============================================================================ +19:22:31 [ 1] [ 4] [0200] +19:22:31 [ 2] [ 16] [6688990060006606] +19:22:31 [ 3] [ 6] [010000] +19:22:31 [ 4] [ 12] [000010000000] +19:22:31 [ 7] [ 10] [0320192226] +19:22:31 [ 11] [ 6] [835858] +19:22:31 [ 12] [ 6] [192226] +19:22:31 [ 13] [ 4] [0320] +19:22:31 [ 15] [ 4] [0320] +19:22:31 [ 18] [ 4] [6011] +19:22:31 [ 22] [ 3] [900] +19:22:31 [ 25] [ 2] [02] +19:22:31 [ 28] [ 9] [D00002000] +19:22:31 [ 32] [ 6] [621354] +19:22:31 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:22:31 [ 37] [ 12] [507905230336] +19:22:31 [ 41] [ 8] [01013200] +19:22:31 [ 42] [ 15] [NATIVE ] +19:22:31 [ 43] [ 40] [Khoksivilay Distric Vientiane LAO] +19:22:31 [ 49] [ 3] [418] +19:22:31 [ 52] [ 16] [02DC9FA2E9098C97] +19:22:31 ============================================================================ +19:22:31 + + +waiting on router queue for slot.... +19:22:31 Sending to : <4> +19:22:31 ============================================================================ +19:22:32 ============================================================================ +19:22:32 Slot Id : <82> +19:22:32 Transaction Type : RESPONSE +19:22:32 Received From : +19:22:32 ============================================================================ +19:22:32 FNo. Len. Field Value +19:22:32 ============================================================================ +19:22:32 [ 1] [ 4] [0210] +19:22:32 [ 2] [ 16] [6688990060006606] +19:22:32 [ 3] [ 6] [010000] +19:22:32 [ 4] [ 12] [000010000000] +19:22:32 [ 11] [ 6] [835858] +19:22:32 [ 12] [ 6] [192226] +19:22:32 [ 15] [ 4] [0320] +19:22:32 [ 18] [ 4] [6011] +19:22:32 [ 32] [ 6] [621354] +19:22:32 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:22:32 [ 37] [ 12] [507905230336] +19:22:32 [ 38] [ 6] [354009] +19:22:32 [ 39] [ 2] [00] +19:22:32 [ 41] [ 8] [01013200] +19:22:32 [ 49] [ 3] [418] +19:22:32 [ 54] [ 20] [0002418C000012808677] +19:22:32 ============================================================================ +19:22:32 Sending to : +19:22:32 ============================================================================ +19:22:32 + + +waiting on router queue for slot.... +19:22:34 ============================================================================ +19:22:34 Slot Id : <82> +19:22:34 Transaction Type : RESPONSE +19:22:34 Received From : +19:22:34 ============================================================================ +19:22:34 FNo. Len. Field Value +19:22:34 ============================================================================ +19:22:34 [ 1] [ 4] [0210] +19:22:34 [ 2] [ 16] [6688990060006606] +19:22:34 [ 3] [ 6] [010000] +19:22:34 [ 4] [ 12] [000010000000] +19:22:34 [ 11] [ 6] [835858] +19:22:34 [ 12] [ 6] [192226] +19:22:34 [ 15] [ 4] [0320] +19:22:34 [ 18] [ 4] [6011] +19:22:34 [ 32] [ 6] [621354] +19:22:34 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:22:34 [ 37] [ 12] [507905230336] +19:22:34 [ 38] [ 6] [354009] +19:22:34 [ 39] [ 2] [00] +19:22:34 [ 41] [ 8] [01013200] +19:22:34 [ 49] [ 3] [418] +19:22:34 [ 54] [ 20] [0002418C000012808677] +19:22:34 ============================================================================ +19:22:34 Calculate Source COMM Id = 0 +19:22:34 ============================================================================ +19:22:34 + + +waiting on router queue for slot.... +19:22:37 ============================================================================ +19:22:37 Slot Id : <51> +19:22:37 Transaction Type : REQUEST +19:22:37 Received From : +19:22:37 ============================================================================ +19:22:37 FNo. Len. Field Value +19:22:37 ============================================================================ +19:22:37 [ 1] [ 4] [0800] +19:22:37 [ 7] [ 10] [0320122144] +19:22:37 [ 11] [ 6] [157929] +19:22:37 [ 70] [ 3] [301] +19:22:37 ============================================================================ +19:22:37 + + +waiting on router queue for slot.... +19:22:37 Sending to : +19:22:37 ============================================================================ +19:22:37 ============================================================================ +19:22:37 Slot Id : <51> +19:22:37 Transaction Type : RESPONSE +19:22:37 Received From : +19:22:37 ============================================================================ +19:22:37 FNo. Len. Field Value +19:22:37 ============================================================================ +19:22:37 [ 1] [ 4] [0810] +19:22:37 [ 7] [ 10] [0320122144] +19:22:37 [ 11] [ 6] [157929] +19:22:37 [ 39] [ 2] [00] +19:22:37 [ 70] [ 3] [301] +19:22:37 ============================================================================ +19:22:37 Calculate Source COMM Id = 2 +19:22:37 ============================================================================ +19:22:37 + + +waiting on router queue for slot.... +19:22:37 ============================================================================ +19:22:37 Slot Id : <64> +19:22:37 Transaction Type : REQUEST +19:22:37 Received From : +19:22:37 ============================================================================ +19:22:37 FNo. Len. Field Value +19:22:37 ============================================================================ +19:22:37 [ 1] [ 4] [0200] +19:22:37 [ 2] [ 16] [6213541000672033] +19:22:37 [ 3] [ 6] [011000] +19:22:37 [ 4] [ 12] [000100000000] +19:22:37 [ 7] [ 10] [0320192258] +19:22:37 [ 11] [ 6] [211173] +19:22:37 [ 12] [ 6] [191102] +19:22:37 [ 13] [ 4] [0320] +19:22:37 [ 14] [ 4] [4912] +19:22:37 [ 15] [ 4] [0320] +19:22:37 [ 18] [ 4] [6011] +19:22:37 [ 19] [ 3] [418] +19:22:37 [ 22] [ 3] [021] +19:22:37 [ 25] [ 2] [01] +19:22:37 [ 28] [ 9] [D00002000] +19:22:37 [ 32] [ 6] [198901] +19:22:37 [ 35] [ 32] [6213541000672033=491212017203169] +19:22:37 [ 37] [ 12] [507919211173] +19:22:37 [ 41] [ 8] [01529014] +19:22:37 [ 42] [ 15] [000000041529014] +19:22:37 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:22:37 [ 49] [ 3] [418] +19:22:37 [ 52] [ 16] [DC9D97543C45EABB] +19:22:37 ============================================================================ +19:22:37 + + +waiting on router queue for slot.... +19:22:37 Sending to : +19:22:37 ============================================================================ +19:22:37 Sending to : +19:22:37 ============================================================================ +19:22:38 ============================================================================ +19:22:38 Slot Id : <64> +19:22:38 Transaction Type : REQUEST +19:22:38 Received From : +19:22:38 ============================================================================ +19:22:38 FNo. Len. Field Value +19:22:38 ============================================================================ +19:22:38 [ 1] [ 4] [0200] +19:22:38 [ 2] [ 16] [6213541000672033] +19:22:38 [ 3] [ 6] [011000] +19:22:38 [ 4] [ 12] [000100000000] +19:22:38 [ 7] [ 10] [0320192258] +19:22:38 [ 11] [ 6] [211173] +19:22:38 [ 12] [ 6] [191102] +19:22:38 [ 13] [ 4] [0320] +19:22:38 [ 14] [ 4] [4912] +19:22:38 [ 15] [ 4] [0320] +19:22:38 [ 18] [ 4] [6011] +19:22:38 [ 19] [ 3] [418] +19:22:38 [ 22] [ 3] [021] +19:22:38 [ 25] [ 2] [01] +19:22:38 [ 28] [ 9] [D00002000] +19:22:38 [ 32] [ 6] [198901] +19:22:38 [ 35] [ 32] [6213541000672033=491212017203169] +19:22:38 [ 37] [ 12] [507919211173] +19:22:38 [ 41] [ 8] [01529014] +19:22:38 [ 42] [ 15] [000000041529014] +19:22:38 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:22:38 [ 49] [ 3] [418] +19:22:38 [ 52] [ 16] [DC9D97543C45EABB] +19:22:38 ============================================================================ +19:22:38 + + +waiting on router queue for slot.... +19:22:38 Sending to : +19:22:38 ============================================================================ +19:22:38 ============================================================================ +19:22:38 Slot Id : <64> +19:22:38 Transaction Type : REQUEST +19:22:38 Received From : +19:22:38 ============================================================================ +19:22:38 FNo. Len. Field Value +19:22:38 ============================================================================ +19:22:38 [ 1] [ 4] [0200] +19:22:38 [ 2] [ 16] [6213541000672033] +19:22:38 [ 3] [ 6] [011000] +19:22:38 [ 4] [ 12] [000100000000] +19:22:38 [ 7] [ 10] [0320192258] +19:22:38 [ 11] [ 6] [211173] +19:22:38 [ 12] [ 6] [191102] +19:22:38 [ 13] [ 4] [0320] +19:22:38 [ 14] [ 4] [4912] +19:22:38 [ 15] [ 4] [0320] +19:22:38 [ 18] [ 4] [6011] +19:22:38 [ 19] [ 3] [418] +19:22:38 [ 22] [ 3] [021] +19:22:38 [ 25] [ 2] [01] +19:22:38 [ 28] [ 9] [D00002000] +19:22:38 [ 32] [ 6] [198901] +19:22:38 [ 35] [ 32] [6213541000672033=491212017203169] +19:22:38 [ 37] [ 12] [507919211173] +19:22:38 [ 41] [ 8] [01529014] +19:22:38 [ 42] [ 15] [000000041529014] +19:22:38 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:22:38 [ 49] [ 3] [418] +19:22:38 [ 52] [ 16] [3D520585CA77A566] +19:22:38 ============================================================================ +19:22:38 + + +waiting on router queue for slot.... +19:22:38 Sending to : <0> +19:22:38 ============================================================================ +19:22:38 ============================================================================ +19:22:38 Slot Id : <64> +19:22:38 Transaction Type : RESPONSE +19:22:38 Received From : +19:22:38 ============================================================================ +19:22:38 FNo. Len. Field Value +19:22:38 ============================================================================ +19:22:38 [ 1] [ 4] [0210] +19:22:38 [ 2] [ 16] [6213541000672033] +19:22:38 [ 3] [ 6] [011000] +19:22:38 [ 4] [ 12] [000100000000] +19:22:38 [ 7] [ 10] [0320192258] +19:22:38 [ 11] [ 6] [211173] +19:22:38 [ 12] [ 6] [191102] +19:22:38 [ 13] [ 4] [0320] +19:22:38 [ 15] [ 4] [0320] +19:22:38 [ 18] [ 4] [6011] +19:22:38 [ 19] [ 3] [418] +19:22:38 [ 32] [ 6] [198901] +19:22:38 [ 35] [ 32] [6213541000672033=491212017203169] +19:22:38 [ 37] [ 12] [507919211173] +19:22:38 [ 38] [ 6] [978579] +19:22:38 [ 39] [ 2] [00] +19:22:38 [ 41] [ 8] [01529014] +19:22:38 [ 49] [ 3] [418] +19:22:38 [ 54] [ 40] [1001418C0010261648471002418C001026164847] +19:22:38 ============================================================================ +19:22:38 Sending to : +19:22:38 ============================================================================ +19:22:38 + + +waiting on router queue for slot.... +19:22:40 ============================================================================ +19:22:40 Slot Id : <64> +19:22:40 Transaction Type : RESPONSE +19:22:40 Received From : +19:22:40 ============================================================================ +19:22:40 FNo. Len. Field Value +19:22:40 ============================================================================ +19:22:40 [ 1] [ 4] [0210] +19:22:40 [ 2] [ 16] [6213541000672033] +19:22:40 [ 3] [ 6] [011000] +19:22:40 [ 4] [ 12] [000100000000] +19:22:40 [ 7] [ 10] [0320192258] +19:22:40 [ 11] [ 6] [211173] +19:22:40 [ 12] [ 6] [191102] +19:22:40 [ 13] [ 4] [0320] +19:22:40 [ 15] [ 4] [0320] +19:22:40 [ 18] [ 4] [6011] +19:22:40 [ 19] [ 3] [418] +19:22:40 [ 32] [ 6] [198901] +19:22:40 [ 35] [ 32] [6213541000672033=491212017203169] +19:22:40 [ 37] [ 12] [507919211173] +19:22:40 [ 38] [ 6] [978579] +19:22:40 [ 39] [ 2] [00] +19:22:40 [ 41] [ 8] [01529014] +19:22:40 [ 49] [ 3] [418] +19:22:40 [ 54] [ 40] [1001418C0010261648471002418C001026164847] +19:22:40 ============================================================================ +19:22:40 Calculate Source COMM Id = 5 +19:22:40 ============================================================================ +19:22:40 + + +waiting on router queue for slot.... +19:22:52 ============================================================================ +19:22:52 Slot Id : <100> +19:22:52 Transaction Type : REQUEST +19:22:52 Received From : +19:22:52 ============================================================================ +19:22:52 FNo. Len. Field Value +19:22:52 ============================================================================ +19:22:52 [ 1] [ 4] [0800] +19:22:52 [ 7] [ 10] [0320122159] +19:22:52 [ 11] [ 6] [157930] +19:22:52 [ 70] [ 3] [301] +19:22:52 ============================================================================ +19:22:52 + + +waiting on router queue for slot.... +19:22:52 Sending to : +19:22:52 ============================================================================ +19:22:52 ============================================================================ +19:22:52 Slot Id : <100> +19:22:52 Transaction Type : RESPONSE +19:22:52 Received From : +19:22:52 ============================================================================ +19:22:52 FNo. Len. Field Value +19:22:52 ============================================================================ +19:22:52 [ 1] [ 4] [0810] +19:22:52 [ 7] [ 10] [0320122159] +19:22:52 [ 11] [ 6] [157930] +19:22:52 [ 39] [ 2] [00] +19:22:52 [ 70] [ 3] [301] +19:22:52 ============================================================================ +19:22:52 Calculate Source COMM Id = 2 +19:22:52 ============================================================================ +19:22:52 + + +waiting on router queue for slot.... +19:23:02 ============================================================================ +19:23:02 Slot Id : <91> +19:23:02 Transaction Type : REQUEST +19:23:02 Received From : +19:23:02 ============================================================================ +19:23:02 FNo. Len. Field Value +19:23:02 ============================================================================ +19:23:02 [ 1] [ 4] [0200] +19:23:02 [ 2] [ 16] [6688990108110006] +19:23:02 [ 3] [ 6] [010000] +19:23:02 [ 4] [ 12] [000010000000] +19:23:02 [ 7] [ 10] [0320122209] +19:23:02 [ 11] [ 6] [271403] +19:23:02 [ 12] [ 6] [192209] +19:23:02 [ 13] [ 4] [0320] +19:23:02 [ 14] [ 4] [4405] +19:23:02 [ 15] [ 4] [0320] +19:23:02 [ 18] [ 4] [6011] +19:23:02 [ 19] [ 3] [418] +19:23:02 [ 22] [ 3] [021] +19:23:02 [ 25] [ 2] [01] +19:23:02 [ 28] [ 9] [D00002000] +19:23:02 [ 32] [ 6] [180893] +19:23:02 [ 35] [ 37] [6688990108110006=44051231000643500000] +19:23:02 [ 37] [ 12] [507912271403] +19:23:02 [ 41] [ 8] [0466PSLB] +19:23:02 [ 42] [ 15] [999999 ] +19:23:02 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:23:02 [ 49] [ 3] [418] +19:23:02 [ 52] [ 16] [D96EA2EC56F7192E] +19:23:02 ============================================================================ +19:23:02 + + +waiting on router queue for slot.... +19:23:02 Sending to : +19:23:02 ============================================================================ +19:23:02 Sending to : +19:23:02 ============================================================================ +19:23:02 ============================================================================ +19:23:02 Slot Id : <91> +19:23:02 Transaction Type : REQUEST +19:23:02 Received From : +19:23:02 ============================================================================ +19:23:02 FNo. Len. Field Value +19:23:02 ============================================================================ +19:23:02 [ 1] [ 4] [0200] +19:23:02 [ 2] [ 16] [6688990108110006] +19:23:02 [ 3] [ 6] [010000] +19:23:02 [ 4] [ 12] [000010000000] +19:23:02 [ 7] [ 10] [0320122209] +19:23:02 [ 11] [ 6] [271403] +19:23:02 [ 12] [ 6] [192209] +19:23:02 [ 13] [ 4] [0320] +19:23:02 [ 14] [ 4] [4405] +19:23:02 [ 15] [ 4] [0320] +19:23:02 [ 18] [ 4] [6011] +19:23:02 [ 19] [ 3] [418] +19:23:02 [ 22] [ 3] [021] +19:23:02 [ 25] [ 2] [01] +19:23:02 [ 28] [ 9] [D00002000] +19:23:02 [ 32] [ 6] [180893] +19:23:02 [ 35] [ 37] [6688990108110006=44051231000643500000] +19:23:02 [ 37] [ 12] [507912271403] +19:23:02 [ 41] [ 8] [0466PSLB] +19:23:02 [ 42] [ 15] [999999 ] +19:23:02 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:23:02 [ 49] [ 3] [418] +19:23:02 [ 52] [ 16] [D96EA2EC56F7192E] +19:23:02 ============================================================================ +19:23:02 + + +waiting on router queue for slot.... +19:23:02 Sending to : +19:23:02 ============================================================================ +19:23:02 ============================================================================ +19:23:02 Slot Id : <91> +19:23:02 Transaction Type : REQUEST +19:23:02 Received From : +19:23:02 ============================================================================ +19:23:02 FNo. Len. Field Value +19:23:02 ============================================================================ +19:23:02 [ 1] [ 4] [0200] +19:23:02 [ 2] [ 16] [6688990108110006] +19:23:02 [ 3] [ 6] [010000] +19:23:02 [ 4] [ 12] [000010000000] +19:23:02 [ 7] [ 10] [0320122209] +19:23:02 [ 11] [ 6] [271403] +19:23:02 [ 12] [ 6] [192209] +19:23:02 [ 13] [ 4] [0320] +19:23:02 [ 14] [ 4] [4405] +19:23:02 [ 15] [ 4] [0320] +19:23:02 [ 18] [ 4] [6011] +19:23:02 [ 19] [ 3] [418] +19:23:02 [ 22] [ 3] [021] +19:23:02 [ 25] [ 2] [01] +19:23:02 [ 28] [ 9] [D00002000] +19:23:02 [ 32] [ 6] [180893] +19:23:02 [ 35] [ 37] [6688990108110006=44051231000643500000] +19:23:02 [ 37] [ 12] [507912271403] +19:23:02 [ 41] [ 8] [0466PSLB] +19:23:02 [ 42] [ 15] [999999 ] +19:23:02 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:23:02 [ 49] [ 3] [418] +19:23:02 [ 52] [ 16] [F13E005F91113180] +19:23:02 ============================================================================ +19:23:02 + + +waiting on router queue for slot.... +19:23:02 Sending to : <0> +19:23:02 ============================================================================ +19:23:03 ============================================================================ +19:23:03 Slot Id : <91> +19:23:03 Transaction Type : RESPONSE +19:23:03 Received From : +19:23:03 ============================================================================ +19:23:03 FNo. Len. Field Value +19:23:03 ============================================================================ +19:23:03 [ 1] [ 4] [0210] +19:23:03 [ 2] [ 16] [6688990108110006] +19:23:03 [ 3] [ 6] [010000] +19:23:03 [ 4] [ 12] [000010000000] +19:23:03 [ 7] [ 10] [0320122209] +19:23:03 [ 11] [ 6] [271403] +19:23:03 [ 12] [ 6] [192209] +19:23:03 [ 13] [ 4] [0320] +19:23:03 [ 15] [ 4] [0320] +19:23:03 [ 18] [ 4] [6011] +19:23:03 [ 19] [ 3] [418] +19:23:03 [ 22] [ 3] [021] +19:23:03 [ 32] [ 6] [180893] +19:23:03 [ 35] [ 37] [6688990108110006=44051231000643500000] +19:23:03 [ 37] [ 12] [507912271403] +19:23:03 [ 39] [ 2] [14] +19:23:03 [ 41] [ 8] [0466PSLB] +19:23:03 [ 49] [ 3] [418] +19:23:03 ============================================================================ +19:23:03 Sending to : +19:23:03 ============================================================================ +19:23:03 + + +waiting on router queue for slot.... +19:23:03 ============================================================================ +19:23:03 Slot Id : <65> +19:23:03 Transaction Type : REQUEST +19:23:03 Received From : +19:23:03 ============================================================================ +19:23:03 FNo. Len. Field Value +19:23:03 ============================================================================ +19:23:03 [ 1] [ 4] [0800] +19:23:03 [ 7] [ 10] [0320122210] +19:23:03 [ 11] [ 6] [157931] +19:23:03 [ 70] [ 3] [301] +19:23:03 ============================================================================ +19:23:03 + + +waiting on router queue for slot.... +19:23:03 Sending to : +19:23:03 ============================================================================ +19:23:03 ============================================================================ +19:23:03 Slot Id : <65> +19:23:03 Transaction Type : RESPONSE +19:23:03 Received From : +19:23:03 ============================================================================ +19:23:03 FNo. Len. Field Value +19:23:03 ============================================================================ +19:23:03 [ 1] [ 4] [0810] +19:23:03 [ 7] [ 10] [0320122210] +19:23:03 [ 11] [ 6] [157931] +19:23:03 [ 39] [ 2] [00] +19:23:03 [ 70] [ 3] [301] +19:23:03 ============================================================================ +19:23:03 Calculate Source COMM Id = 2 +19:23:03 ============================================================================ +19:23:03 + + +waiting on router queue for slot.... +19:23:03 ============================================================================ +19:23:03 Slot Id : <72> +19:23:03 Transaction Type : REQUEST +19:23:03 Received From : +19:23:03 ============================================================================ +19:23:03 FNo. Len. Field Value +19:23:03 ============================================================================ +19:23:03 [ 1] [ 4] [0200] +19:23:03 [ 2] [ 16] [6213541000672033] +19:23:03 [ 3] [ 6] [011000] +19:23:03 [ 4] [ 12] [000100000000] +19:23:03 [ 7] [ 10] [0320192323] +19:23:03 [ 11] [ 6] [211175] +19:23:03 [ 12] [ 6] [191128] +19:23:03 [ 13] [ 4] [0320] +19:23:03 [ 14] [ 4] [4912] +19:23:03 [ 15] [ 4] [0320] +19:23:03 [ 18] [ 4] [6011] +19:23:03 [ 19] [ 3] [418] +19:23:03 [ 22] [ 3] [021] +19:23:03 [ 25] [ 2] [01] +19:23:03 [ 28] [ 9] [D00002000] +19:23:03 [ 32] [ 6] [198901] +19:23:03 [ 35] [ 32] [6213541000672033=491212017203169] +19:23:03 [ 37] [ 12] [507919211175] +19:23:03 [ 41] [ 8] [01529014] +19:23:03 [ 42] [ 15] [000000041529014] +19:23:03 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:23:03 [ 49] [ 3] [418] +19:23:03 [ 52] [ 16] [DC9D97543C45EABB] +19:23:03 ============================================================================ +19:23:03 + + +waiting on router queue for slot.... +19:23:03 Sending to : +19:23:03 ============================================================================ +19:23:03 Sending to : +19:23:03 ============================================================================ +19:23:03 ============================================================================ +19:23:03 Slot Id : <72> +19:23:03 Transaction Type : REQUEST +19:23:03 Received From : +19:23:03 ============================================================================ +19:23:03 FNo. Len. Field Value +19:23:03 ============================================================================ +19:23:03 [ 1] [ 4] [0200] +19:23:03 [ 2] [ 16] [6213541000672033] +19:23:03 [ 3] [ 6] [011000] +19:23:03 [ 4] [ 12] [000100000000] +19:23:03 [ 7] [ 10] [0320192323] +19:23:03 [ 11] [ 6] [211175] +19:23:03 [ 12] [ 6] [191128] +19:23:03 [ 13] [ 4] [0320] +19:23:03 [ 14] [ 4] [4912] +19:23:03 [ 15] [ 4] [0320] +19:23:03 [ 18] [ 4] [6011] +19:23:03 [ 19] [ 3] [418] +19:23:03 [ 22] [ 3] [021] +19:23:03 [ 25] [ 2] [01] +19:23:03 [ 28] [ 9] [D00002000] +19:23:03 [ 32] [ 6] [198901] +19:23:03 [ 35] [ 32] [6213541000672033=491212017203169] +19:23:03 [ 37] [ 12] [507919211175] +19:23:03 [ 41] [ 8] [01529014] +19:23:03 [ 42] [ 15] [000000041529014] +19:23:03 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:23:03 [ 49] [ 3] [418] +19:23:03 [ 52] [ 16] [DC9D97543C45EABB] +19:23:03 ============================================================================ +19:23:03 + + +waiting on router queue for slot.... +19:23:03 Sending to : +19:23:03 ============================================================================ +19:23:03 ============================================================================ +19:23:03 Slot Id : <72> +19:23:03 Transaction Type : REQUEST +19:23:03 Received From : +19:23:03 ============================================================================ +19:23:03 FNo. Len. Field Value +19:23:03 ============================================================================ +19:23:03 [ 1] [ 4] [0200] +19:23:03 [ 2] [ 16] [6213541000672033] +19:23:03 [ 3] [ 6] [011000] +19:23:03 [ 4] [ 12] [000100000000] +19:23:03 [ 7] [ 10] [0320192323] +19:23:03 [ 11] [ 6] [211175] +19:23:03 [ 12] [ 6] [191128] +19:23:03 [ 13] [ 4] [0320] +19:23:03 [ 14] [ 4] [4912] +19:23:03 [ 15] [ 4] [0320] +19:23:03 [ 18] [ 4] [6011] +19:23:03 [ 19] [ 3] [418] +19:23:03 [ 22] [ 3] [021] +19:23:03 [ 25] [ 2] [01] +19:23:03 [ 28] [ 9] [D00002000] +19:23:03 [ 32] [ 6] [198901] +19:23:03 [ 35] [ 32] [6213541000672033=491212017203169] +19:23:03 [ 37] [ 12] [507919211175] +19:23:03 [ 41] [ 8] [01529014] +19:23:03 [ 42] [ 15] [000000041529014] +19:23:03 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:23:03 [ 49] [ 3] [418] +19:23:03 [ 52] [ 16] [3D520585CA77A566] +19:23:03 ============================================================================ +19:23:03 + + +waiting on router queue for slot.... +19:23:03 Sending to : <0> +19:23:03 ============================================================================ +19:23:04 ============================================================================ +19:23:04 Slot Id : <91> +19:23:04 Transaction Type : RESPONSE +19:23:04 Received From : +19:23:04 ============================================================================ +19:23:04 FNo. Len. Field Value +19:23:04 ============================================================================ +19:23:04 [ 1] [ 4] [0210] +19:23:04 [ 2] [ 16] [6688990108110006] +19:23:04 [ 3] [ 6] [010000] +19:23:04 [ 4] [ 12] [000010000000] +19:23:04 [ 7] [ 10] [0320122209] +19:23:04 [ 11] [ 6] [271403] +19:23:04 [ 12] [ 6] [192209] +19:23:04 [ 13] [ 4] [0320] +19:23:04 [ 15] [ 4] [0320] +19:23:04 [ 18] [ 4] [6011] +19:23:04 [ 19] [ 3] [418] +19:23:04 [ 22] [ 3] [021] +19:23:04 [ 32] [ 6] [180893] +19:23:04 [ 35] [ 37] [6688990108110006=44051231000643500000] +19:23:04 [ 37] [ 12] [507912271403] +19:23:04 [ 39] [ 2] [14] +19:23:04 [ 41] [ 8] [0466PSLB] +19:23:04 [ 49] [ 3] [418] +19:23:04 ============================================================================ +19:23:04 Calculate Source COMM Id = 2 +19:23:04 ============================================================================ +19:23:04 + + +waiting on router queue for slot.... +19:23:04 ============================================================================ +19:23:04 Slot Id : <72> +19:23:04 Transaction Type : RESPONSE +19:23:04 Received From : +19:23:04 ============================================================================ +19:23:04 FNo. Len. Field Value +19:23:04 ============================================================================ +19:23:04 [ 1] [ 4] [0210] +19:23:04 [ 2] [ 16] [6213541000672033] +19:23:04 [ 3] [ 6] [011000] +19:23:04 [ 4] [ 12] [000100000000] +19:23:04 [ 7] [ 10] [0320192323] +19:23:04 [ 11] [ 6] [211175] +19:23:04 [ 12] [ 6] [191128] +19:23:04 [ 13] [ 4] [0320] +19:23:04 [ 15] [ 4] [0320] +19:23:04 [ 18] [ 4] [6011] +19:23:04 [ 19] [ 3] [418] +19:23:04 [ 32] [ 6] [198901] +19:23:04 [ 35] [ 32] [6213541000672033=491212017203169] +19:23:04 [ 37] [ 12] [507919211175] +19:23:04 [ 38] [ 6] [712560] +19:23:04 [ 39] [ 2] [00] +19:23:04 [ 41] [ 8] [01529014] +19:23:04 [ 49] [ 3] [418] +19:23:04 [ 54] [ 40] [1001418C0009259648471002418C000925964847] +19:23:04 ============================================================================ +19:23:04 Sending to : +19:23:04 ============================================================================ +19:23:04 + + +waiting on router queue for slot.... +19:23:06 ============================================================================ +19:23:06 Slot Id : <72> +19:23:06 Transaction Type : RESPONSE +19:23:06 Received From : +19:23:06 ============================================================================ +19:23:06 FNo. Len. Field Value +19:23:06 ============================================================================ +19:23:06 [ 1] [ 4] [0210] +19:23:06 [ 2] [ 16] [6213541000672033] +19:23:06 [ 3] [ 6] [011000] +19:23:06 [ 4] [ 12] [000100000000] +19:23:06 [ 7] [ 10] [0320192323] +19:23:06 [ 11] [ 6] [211175] +19:23:06 [ 12] [ 6] [191128] +19:23:06 [ 13] [ 4] [0320] +19:23:06 [ 15] [ 4] [0320] +19:23:06 [ 18] [ 4] [6011] +19:23:06 [ 19] [ 3] [418] +19:23:06 [ 32] [ 6] [198901] +19:23:06 [ 35] [ 32] [6213541000672033=491212017203169] +19:23:06 [ 37] [ 12] [507919211175] +19:23:06 [ 38] [ 6] [712560] +19:23:06 [ 39] [ 2] [00] +19:23:06 [ 41] [ 8] [01529014] +19:23:06 [ 49] [ 3] [418] +19:23:06 [ 54] [ 40] [1001418C0009259648471002418C000925964847] +19:23:06 ============================================================================ +19:23:06 Calculate Source COMM Id = 5 +19:23:06 ============================================================================ +19:23:06 + + +waiting on router queue for slot.... +19:23:09 ============================================================================ +19:23:09 Slot Id : <76> +19:23:09 Transaction Type : REQUEST +19:23:09 Received From : +19:23:09 ============================================================================ +19:23:09 FNo. Len. Field Value +19:23:09 ============================================================================ +19:23:09 [ 1] [ 4] [0800] +19:23:09 [ 2] [ 5] [02531] +19:23:09 [ 3] [ 6] [579198] +19:23:09 [ 7] [ 10] [0320122309] +19:23:09 [ 11] [ 6] [807537] +19:23:09 [ 15] [ 10] [0320122309] +19:23:09 [ 37] [ 11] [57919807537] +19:23:09 [ 70] [ 3] [001] +19:23:09 ============================================================================ +19:23:09 + + +waiting on router queue for slot.... +19:23:09 ============================================================================ +19:23:09 Slot Id : <76> +19:23:09 Transaction Type : RESPONSE +19:23:09 Received From : +19:23:09 ============================================================================ +19:23:09 FNo. Len. Field Value +19:23:09 ============================================================================ +19:23:09 [ 1] [ 4] [0810] +19:23:09 [ 7] [ 10] [0320122309] +19:23:09 [ 11] [ 6] [807537] +19:23:09 [ 15] [ 4] [0320] +19:23:09 [ 37] [ 12] [57919807537] +19:23:09 [ 39] [ 2] [00] +19:23:09 [ 70] [ 3] [001] +19:23:09 ============================================================================ +19:23:09 Sending to : +19:23:09 ============================================================================ +19:23:09 + + +waiting on router queue for slot.... +19:23:13 ============================================================================ +19:23:13 Slot Id : <90> +19:23:13 Transaction Type : REQUEST +19:23:13 Received From : +19:23:13 ============================================================================ +19:23:13 FNo. Len. Field Value +19:23:13 ============================================================================ +19:23:13 [ 1] [ 4] [0200] +19:23:13 [ 2] [ 16] [6688990105724601] +19:23:13 [ 3] [ 6] [012000] +19:23:13 [ 4] [ 12] [000005000000] +19:23:13 [ 7] [ 10] [0320192308] +19:23:13 [ 11] [ 6] [835954] +19:23:13 [ 12] [ 6] [192308] +19:23:13 [ 13] [ 4] [0320] +19:23:13 [ 15] [ 4] [0320] +19:23:13 [ 18] [ 4] [6011] +19:23:13 [ 22] [ 3] [900] +19:23:13 [ 25] [ 2] [02] +19:23:13 [ 28] [ 9] [D00002000] +19:23:13 [ 32] [ 6] [621354] +19:23:13 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:23:13 [ 37] [ 12] [507903461788] +19:23:13 [ 41] [ 8] [06001900] +19:23:13 [ 42] [ 15] [NATIVE ] +19:23:13 [ 43] [ 40] [La District La LAO] +19:23:13 [ 49] [ 3] [418] +19:23:13 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:23:13 ============================================================================ +19:23:13 + + +waiting on router queue for slot.... +19:23:13 Sending to : +19:23:13 ============================================================================ +19:23:13 Sending to : +19:23:13 ============================================================================ +19:23:13 ============================================================================ +19:23:13 Slot Id : <90> +19:23:13 Transaction Type : REQUEST +19:23:13 Received From : +19:23:13 ============================================================================ +19:23:13 FNo. Len. Field Value +19:23:13 ============================================================================ +19:23:13 [ 1] [ 4] [0200] +19:23:13 [ 2] [ 16] [6688990105724601] +19:23:13 [ 3] [ 6] [012000] +19:23:13 [ 4] [ 12] [000005000000] +19:23:13 [ 7] [ 10] [0320192308] +19:23:13 [ 11] [ 6] [835954] +19:23:13 [ 12] [ 6] [192308] +19:23:13 [ 13] [ 4] [0320] +19:23:13 [ 15] [ 4] [0320] +19:23:13 [ 18] [ 4] [6011] +19:23:13 [ 22] [ 3] [900] +19:23:13 [ 25] [ 2] [02] +19:23:13 [ 28] [ 9] [D00002000] +19:23:13 [ 32] [ 6] [621354] +19:23:13 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:23:13 [ 37] [ 12] [507903461788] +19:23:13 [ 41] [ 8] [06001900] +19:23:13 [ 42] [ 15] [NATIVE ] +19:23:13 [ 43] [ 40] [La District La LAO] +19:23:13 [ 49] [ 3] [418] +19:23:13 [ 52] [ 16] [1EAAD3AEFDDF925D] +19:23:13 ============================================================================ +19:23:13 + + +waiting on router queue for slot.... +19:23:13 Sending to : +19:23:13 ============================================================================ +19:23:13 ============================================================================ +19:23:13 Slot Id : <90> +19:23:13 Transaction Type : REQUEST +19:23:13 Received From : +19:23:13 ============================================================================ +19:23:13 FNo. Len. Field Value +19:23:13 ============================================================================ +19:23:13 [ 1] [ 4] [0200] +19:23:13 [ 2] [ 16] [6688990105724601] +19:23:13 [ 3] [ 6] [012000] +19:23:13 [ 4] [ 12] [000005000000] +19:23:13 [ 7] [ 10] [0320192308] +19:23:13 [ 11] [ 6] [835954] +19:23:13 [ 12] [ 6] [192308] +19:23:13 [ 13] [ 4] [0320] +19:23:13 [ 15] [ 4] [0320] +19:23:13 [ 18] [ 4] [6011] +19:23:13 [ 22] [ 3] [900] +19:23:13 [ 25] [ 2] [02] +19:23:13 [ 28] [ 9] [D00002000] +19:23:13 [ 32] [ 6] [621354] +19:23:13 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:23:13 [ 37] [ 12] [507903461788] +19:23:13 [ 41] [ 8] [06001900] +19:23:13 [ 42] [ 15] [NATIVE ] +19:23:13 [ 43] [ 40] [La District La LAO] +19:23:13 [ 49] [ 3] [418] +19:23:13 [ 52] [ 16] [880D114C12D054AC] +19:23:13 ============================================================================ +19:23:13 + + +waiting on router queue for slot.... +19:23:13 Sending to : <4> +19:23:13 ============================================================================ +19:23:15 ============================================================================ +19:23:15 Slot Id : <90> +19:23:15 Transaction Type : RESPONSE +19:23:15 Received From : +19:23:15 ============================================================================ +19:23:15 FNo. Len. Field Value +19:23:15 ============================================================================ +19:23:15 [ 1] [ 4] [0210] +19:23:15 [ 2] [ 16] [6688990105724601] +19:23:15 [ 3] [ 6] [012000] +19:23:15 [ 4] [ 12] [000005000000] +19:23:15 [ 11] [ 6] [835954] +19:23:15 [ 12] [ 6] [192308] +19:23:15 [ 15] [ 4] [0320] +19:23:15 [ 18] [ 4] [6011] +19:23:15 [ 32] [ 6] [621354] +19:23:15 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:23:15 [ 37] [ 12] [507903461788] +19:23:15 [ 38] [ 6] [368764] +19:23:15 [ 39] [ 2] [00] +19:23:15 [ 41] [ 8] [06001900] +19:23:15 [ 49] [ 3] [418] +19:23:15 [ 54] [ 20] [2002418C000006016689] +19:23:15 ============================================================================ +19:23:15 Sending to : +19:23:15 ============================================================================ +19:23:15 + + +waiting on router queue for slot.... +19:23:16 ============================================================================ +19:23:16 Slot Id : <106> +19:23:16 Transaction Type : REQUEST +19:23:16 Received From : +19:23:16 ============================================================================ +19:23:16 FNo. Len. Field Value +19:23:16 ============================================================================ +19:23:16 [ 1] [ 4] [0200] +19:23:16 [ 2] [ 16] [6688990060006606] +19:23:16 [ 3] [ 6] [010000] +19:23:16 [ 4] [ 12] [000010000000] +19:23:16 [ 7] [ 10] [0320192310] +19:23:16 [ 11] [ 6] [835960] +19:23:16 [ 12] [ 6] [192310] +19:23:16 [ 13] [ 4] [0320] +19:23:16 [ 15] [ 4] [0320] +19:23:16 [ 18] [ 4] [6011] +19:23:16 [ 22] [ 3] [900] +19:23:16 [ 25] [ 2] [02] +19:23:16 [ 28] [ 9] [D00002000] +19:23:16 [ 32] [ 6] [621354] +19:23:16 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:23:16 [ 37] [ 12] [507905230338] +19:23:16 [ 41] [ 8] [01013200] +19:23:16 [ 42] [ 15] [NATIVE ] +19:23:16 [ 43] [ 40] [Khoksivilay Distric Vientiane LAO] +19:23:16 [ 49] [ 3] [418] +19:23:16 [ 52] [ 16] [8F8B330F2E3016D5] +19:23:16 ============================================================================ +19:23:16 + + +waiting on router queue for slot.... +19:23:16 Sending to : +19:23:16 ============================================================================ +19:23:16 Sending to : +19:23:16 ============================================================================ +19:23:16 ============================================================================ +19:23:16 Slot Id : <106> +19:23:16 Transaction Type : REQUEST +19:23:16 Received From : +19:23:16 ============================================================================ +19:23:16 FNo. Len. Field Value +19:23:16 ============================================================================ +19:23:16 [ 1] [ 4] [0200] +19:23:16 [ 2] [ 16] [6688990060006606] +19:23:16 [ 3] [ 6] [010000] +19:23:16 [ 4] [ 12] [000010000000] +19:23:16 [ 7] [ 10] [0320192310] +19:23:16 [ 11] [ 6] [835960] +19:23:16 [ 12] [ 6] [192310] +19:23:16 [ 13] [ 4] [0320] +19:23:16 [ 15] [ 4] [0320] +19:23:16 [ 18] [ 4] [6011] +19:23:16 [ 22] [ 3] [900] +19:23:16 [ 25] [ 2] [02] +19:23:16 [ 28] [ 9] [D00002000] +19:23:16 [ 32] [ 6] [621354] +19:23:16 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:23:16 [ 37] [ 12] [507905230338] +19:23:16 [ 41] [ 8] [01013200] +19:23:16 [ 42] [ 15] [NATIVE ] +19:23:16 [ 43] [ 40] [Khoksivilay Distric Vientiane LAO] +19:23:16 [ 49] [ 3] [418] +19:23:16 [ 52] [ 16] [8F8B330F2E3016D5] +19:23:16 ============================================================================ +19:23:16 + + +waiting on router queue for slot.... +19:23:16 Sending to : +19:23:16 ============================================================================ +19:23:16 ============================================================================ +19:23:16 Slot Id : <106> +19:23:16 Transaction Type : REQUEST +19:23:16 Received From : +19:23:16 ============================================================================ +19:23:16 FNo. Len. Field Value +19:23:16 ============================================================================ +19:23:16 [ 1] [ 4] [0200] +19:23:16 [ 2] [ 16] [6688990060006606] +19:23:16 [ 3] [ 6] [010000] +19:23:16 [ 4] [ 12] [000010000000] +19:23:16 [ 7] [ 10] [0320192310] +19:23:16 [ 11] [ 6] [835960] +19:23:16 [ 12] [ 6] [192310] +19:23:16 [ 13] [ 4] [0320] +19:23:16 [ 15] [ 4] [0320] +19:23:16 [ 18] [ 4] [6011] +19:23:16 [ 22] [ 3] [900] +19:23:16 [ 25] [ 2] [02] +19:23:16 [ 28] [ 9] [D00002000] +19:23:16 [ 32] [ 6] [621354] +19:23:16 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:23:16 [ 37] [ 12] [507905230338] +19:23:16 [ 41] [ 8] [01013200] +19:23:16 [ 42] [ 15] [NATIVE ] +19:23:16 [ 43] [ 40] [Khoksivilay Distric Vientiane LAO] +19:23:16 [ 49] [ 3] [418] +19:23:16 [ 52] [ 16] [02DC9FA2E9098C97] +19:23:16 ============================================================================ +19:23:16 + + +waiting on router queue for slot.... +19:23:16 Sending to : <4> +19:23:16 ============================================================================ +19:23:16 ============================================================================ +19:23:16 Slot Id : <90> +19:23:16 Transaction Type : RESPONSE +19:23:16 Received From : +19:23:16 ============================================================================ +19:23:16 FNo. Len. Field Value +19:23:16 ============================================================================ +19:23:16 [ 1] [ 4] [0210] +19:23:16 [ 2] [ 16] [6688990105724601] +19:23:16 [ 3] [ 6] [012000] +19:23:16 [ 4] [ 12] [000005000000] +19:23:16 [ 11] [ 6] [835954] +19:23:16 [ 12] [ 6] [192308] +19:23:16 [ 15] [ 4] [0320] +19:23:16 [ 18] [ 4] [6011] +19:23:16 [ 32] [ 6] [621354] +19:23:16 [ 35] [ 37] [6688990105724601=43101231460172500000] +19:23:16 [ 37] [ 12] [507903461788] +19:23:16 [ 38] [ 6] [368764] +19:23:16 [ 39] [ 2] [00] +19:23:16 [ 41] [ 8] [06001900] +19:23:16 [ 49] [ 3] [418] +19:23:16 [ 54] [ 20] [2002418C000006016689] +19:23:16 ============================================================================ +19:23:16 Calculate Source COMM Id = 0 +19:23:16 ============================================================================ +19:23:16 + + +waiting on router queue for slot.... +19:23:17 ============================================================================ +19:23:17 Slot Id : <106> +19:23:17 Transaction Type : RESPONSE +19:23:17 Received From : +19:23:17 ============================================================================ +19:23:17 FNo. Len. Field Value +19:23:17 ============================================================================ +19:23:17 [ 1] [ 4] [0210] +19:23:17 [ 2] [ 16] [6688990060006606] +19:23:17 [ 3] [ 6] [010000] +19:23:17 [ 4] [ 12] [000010000000] +19:23:17 [ 11] [ 6] [835960] +19:23:17 [ 12] [ 6] [192310] +19:23:17 [ 15] [ 4] [0320] +19:23:17 [ 18] [ 4] [6011] +19:23:17 [ 32] [ 6] [621354] +19:23:17 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:23:17 [ 37] [ 12] [507905230338] +19:23:17 [ 38] [ 6] [822883] +19:23:17 [ 39] [ 2] [00] +19:23:17 [ 41] [ 8] [01013200] +19:23:17 [ 49] [ 3] [418] +19:23:17 [ 54] [ 20] [0002418C000002608677] +19:23:17 ============================================================================ +19:23:17 Sending to : +19:23:17 ============================================================================ +19:23:17 + + +waiting on router queue for slot.... +19:23:18 ============================================================================ +19:23:18 Slot Id : <106> +19:23:18 Transaction Type : RESPONSE +19:23:18 Received From : +19:23:18 ============================================================================ +19:23:18 FNo. Len. Field Value +19:23:18 ============================================================================ +19:23:18 [ 1] [ 4] [0210] +19:23:18 [ 2] [ 16] [6688990060006606] +19:23:18 [ 3] [ 6] [010000] +19:23:18 [ 4] [ 12] [000010000000] +19:23:18 [ 11] [ 6] [835960] +19:23:18 [ 12] [ 6] [192310] +19:23:18 [ 15] [ 4] [0320] +19:23:18 [ 18] [ 4] [6011] +19:23:18 [ 32] [ 6] [621354] +19:23:18 [ 35] [ 37] [6688990060006606=97111261896568500000] +19:23:18 [ 37] [ 12] [507905230338] +19:23:18 [ 38] [ 6] [822883] +19:23:18 [ 39] [ 2] [00] +19:23:18 [ 41] [ 8] [01013200] +19:23:18 [ 49] [ 3] [418] +19:23:18 [ 54] [ 20] [0002418C000002608677] +19:23:18 ============================================================================ +19:23:18 Calculate Source COMM Id = 0 +19:23:18 ============================================================================ +19:23:18 + + +waiting on router queue for slot.... +19:23:20 ============================================================================ +19:23:20 Slot Id : <114> +19:23:20 Transaction Type : REQUEST +19:23:20 Received From : +19:23:20 ============================================================================ +19:23:20 FNo. Len. Field Value +19:23:20 ============================================================================ +19:23:20 [ 1] [ 4] [0800] +19:23:20 [ 7] [ 10] [0320122226] +19:23:20 [ 11] [ 6] [157932] +19:23:20 [ 70] [ 3] [301] +19:23:20 ============================================================================ +19:23:20 + + +waiting on router queue for slot.... +19:23:20 Sending to : +19:23:20 ============================================================================ +19:23:20 ============================================================================ +19:23:20 Slot Id : <114> +19:23:20 Transaction Type : RESPONSE +19:23:20 Received From : +19:23:20 ============================================================================ +19:23:20 FNo. Len. Field Value +19:23:20 ============================================================================ +19:23:20 [ 1] [ 4] [0810] +19:23:20 [ 7] [ 10] [0320122226] +19:23:20 [ 11] [ 6] [157932] +19:23:20 [ 39] [ 2] [00] +19:23:20 [ 70] [ 3] [301] +19:23:20 ============================================================================ +19:23:20 Calculate Source COMM Id = 2 +19:23:20 ============================================================================ +19:23:20 + + +waiting on router queue for slot.... +19:23:26 ============================================================================ +19:23:26 Slot Id : <99> +19:23:26 Transaction Type : REQUEST +19:23:26 Received From : +19:23:26 ============================================================================ +19:23:26 FNo. Len. Field Value +19:23:26 ============================================================================ +19:23:26 [ 1] [ 4] [0200] +19:23:26 [ 2] [ 16] [6688990040166181] +19:23:26 [ 3] [ 6] [011000] +19:23:26 [ 4] [ 12] [000030000000] +19:23:26 [ 7] [ 10] [0320192321] +19:23:26 [ 11] [ 6] [835979] +19:23:26 [ 12] [ 6] [192321] +19:23:26 [ 13] [ 4] [0320] +19:23:26 [ 15] [ 4] [0320] +19:23:26 [ 18] [ 4] [6011] +19:23:26 [ 22] [ 3] [900] +19:23:26 [ 25] [ 2] [02] +19:23:26 [ 28] [ 9] [D00002000] +19:23:26 [ 32] [ 6] [621354] +19:23:26 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:23:26 [ 37] [ 12] [507903525196] +19:23:26 [ 41] [ 8] [09000900] +19:23:26 [ 42] [ 15] [NATIVE ] +19:23:26 [ 43] [ 40] [VTC Branch03 ChanthaboulyLAO] +19:23:26 [ 49] [ 3] [418] +19:23:26 [ 52] [ 16] [AD1351A4383ED677] +19:23:26 ============================================================================ +19:23:26 + + +waiting on router queue for slot.... +19:23:26 Sending to : +19:23:26 ============================================================================ +19:23:26 Sending to : +19:23:26 ============================================================================ +19:23:26 ============================================================================ +19:23:26 Slot Id : <99> +19:23:26 Transaction Type : REQUEST +19:23:26 Received From : +19:23:26 ============================================================================ +19:23:26 FNo. Len. Field Value +19:23:26 ============================================================================ +19:23:26 [ 1] [ 4] [0200] +19:23:26 [ 2] [ 16] [6688990040166181] +19:23:26 [ 3] [ 6] [011000] +19:23:26 [ 4] [ 12] [000030000000] +19:23:26 [ 7] [ 10] [0320192321] +19:23:26 [ 11] [ 6] [835979] +19:23:26 [ 12] [ 6] [192321] +19:23:26 [ 13] [ 4] [0320] +19:23:26 [ 15] [ 4] [0320] +19:23:26 [ 18] [ 4] [6011] +19:23:26 [ 22] [ 3] [900] +19:23:26 [ 25] [ 2] [02] +19:23:26 [ 28] [ 9] [D00002000] +19:23:26 [ 32] [ 6] [621354] +19:23:26 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:23:26 [ 37] [ 12] [507903525196] +19:23:26 [ 41] [ 8] [09000900] +19:23:26 [ 42] [ 15] [NATIVE ] +19:23:26 [ 43] [ 40] [VTC Branch03 ChanthaboulyLAO] +19:23:26 [ 49] [ 3] [418] +19:23:26 [ 52] [ 16] [AD1351A4383ED677] +19:23:26 ============================================================================ +19:23:26 + + +waiting on router queue for slot.... +19:23:26 Sending to : +19:23:26 ============================================================================ +19:23:26 ============================================================================ +19:23:26 Slot Id : <99> +19:23:26 Transaction Type : REQUEST +19:23:26 Received From : +19:23:26 ============================================================================ +19:23:26 FNo. Len. Field Value +19:23:26 ============================================================================ +19:23:26 [ 1] [ 4] [0200] +19:23:26 [ 2] [ 16] [6688990040166181] +19:23:26 [ 3] [ 6] [011000] +19:23:26 [ 4] [ 12] [000030000000] +19:23:26 [ 7] [ 10] [0320192321] +19:23:26 [ 11] [ 6] [835979] +19:23:26 [ 12] [ 6] [192321] +19:23:26 [ 13] [ 4] [0320] +19:23:26 [ 15] [ 4] [0320] +19:23:26 [ 18] [ 4] [6011] +19:23:26 [ 22] [ 3] [900] +19:23:26 [ 25] [ 2] [02] +19:23:26 [ 28] [ 9] [D00002000] +19:23:26 [ 32] [ 6] [621354] +19:23:26 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:23:26 [ 37] [ 12] [507903525196] +19:23:26 [ 41] [ 8] [09000900] +19:23:26 [ 42] [ 15] [NATIVE ] +19:23:26 [ 43] [ 40] [VTC Branch03 ChanthaboulyLAO] +19:23:26 [ 49] [ 3] [418] +19:23:26 [ 52] [ 16] [A742D31E44116901] +19:23:26 ============================================================================ +19:23:26 + + +waiting on router queue for slot.... +19:23:26 Sending to : <4> +19:23:26 ============================================================================ +19:23:26 ============================================================================ +19:23:26 Slot Id : <99> +19:23:26 Transaction Type : RESPONSE +19:23:26 Received From : +19:23:26 ============================================================================ +19:23:26 FNo. Len. Field Value +19:23:26 ============================================================================ +19:23:26 [ 1] [ 4] [0210] +19:23:26 [ 2] [ 16] [6688990040166181] +19:23:26 [ 3] [ 6] [011000] +19:23:26 [ 4] [ 12] [000030000000] +19:23:26 [ 7] [ 10] [0320192321] +19:23:26 [ 11] [ 6] [835979] +19:23:26 [ 12] [ 6] [192321] +19:23:26 [ 13] [ 4] [0320] +19:23:26 [ 15] [ 4] [0320] +19:23:26 [ 18] [ 4] [6011] +19:23:26 [ 22] [ 3] [021] +19:23:26 [ 32] [ 6] [621354] +19:23:26 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:23:26 [ 37] [ 12] [507903525196] +19:23:26 [ 38] [ 6] [192116] +19:23:26 [ 39] [ 2] [55] +19:23:26 [ 41] [ 8] [09000900] +19:23:26 [ 49] [ 3] [418] +19:23:26 ============================================================================ +19:23:26 Sending to : +19:23:26 ============================================================================ +19:23:26 + + +waiting on router queue for slot.... +19:23:28 ============================================================================ +19:23:28 Slot Id : <99> +19:23:28 Transaction Type : RESPONSE +19:23:28 Received From : +19:23:28 ============================================================================ +19:23:28 FNo. Len. Field Value +19:23:28 ============================================================================ +19:23:28 [ 1] [ 4] [0210] +19:23:28 [ 2] [ 16] [6688990040166181] +19:23:28 [ 3] [ 6] [011000] +19:23:28 [ 4] [ 12] [000030000000] +19:23:28 [ 7] [ 10] [0320192321] +19:23:28 [ 11] [ 6] [835979] +19:23:28 [ 12] [ 6] [192321] +19:23:28 [ 13] [ 4] [0320] +19:23:28 [ 15] [ 4] [0320] +19:23:28 [ 18] [ 4] [6011] +19:23:28 [ 22] [ 3] [021] +19:23:28 [ 32] [ 6] [621354] +19:23:28 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:23:28 [ 37] [ 12] [507903525196] +19:23:28 [ 38] [ 6] [192116] +19:23:28 [ 39] [ 2] [55] +19:23:28 [ 41] [ 8] [09000900] +19:23:28 [ 49] [ 3] [418] +19:23:28 ============================================================================ +19:23:28 Calculate Source COMM Id = 0 +19:23:28 ============================================================================ +19:23:28 + + +waiting on router queue for slot.... +19:23:30 ============================================================================ +19:23:30 Slot Id : <83> +19:23:30 Transaction Type : REQUEST +19:23:30 Received From : +19:23:30 ============================================================================ +19:23:30 FNo. Len. Field Value +19:23:30 ============================================================================ +19:23:30 [ 1] [ 4] [0800] +19:23:30 [ 7] [ 10] [0320122236] +19:23:30 [ 11] [ 6] [157933] +19:23:30 [ 70] [ 3] [301] +19:23:30 ============================================================================ +19:23:30 + + +waiting on router queue for slot.... +19:23:30 Sending to : +19:23:30 ============================================================================ +19:23:30 ============================================================================ +19:23:30 Slot Id : <83> +19:23:30 Transaction Type : RESPONSE +19:23:30 Received From : +19:23:30 ============================================================================ +19:23:30 FNo. Len. Field Value +19:23:30 ============================================================================ +19:23:30 [ 1] [ 4] [0810] +19:23:30 [ 7] [ 10] [0320122236] +19:23:30 [ 11] [ 6] [157933] +19:23:30 [ 39] [ 2] [00] +19:23:30 [ 70] [ 3] [301] +19:23:30 ============================================================================ +19:23:30 Calculate Source COMM Id = 2 +19:23:30 ============================================================================ +19:23:30 + + +waiting on router queue for slot.... +19:23:31 ============================================================================ +19:23:31 Slot Id : <66> +19:23:31 Transaction Type : REQUEST +19:23:31 Received From : +19:23:31 ============================================================================ +19:23:31 FNo. Len. Field Value +19:23:31 ============================================================================ +19:23:31 [ 1] [ 4] [0800] +19:23:31 [ 7] [ 10] [0321023519] +19:23:31 [ 11] [ 6] [193519] +19:23:31 [ 37] [ 12] [57919193519] +19:23:31 [ 70] [ 3] [301] +19:23:31 ============================================================================ +19:23:31 + + +waiting on router queue for slot.... +19:23:31 Sending to : +19:23:31 ============================================================================ +19:23:31 ============================================================================ +19:23:31 Slot Id : <66> +19:23:31 Transaction Type : RESPONSE +19:23:31 Received From : +19:23:31 ============================================================================ +19:23:31 FNo. Len. Field Value +19:23:31 ============================================================================ +19:23:31 [ 1] [ 4] [0810] +19:23:31 [ 7] [ 10] [0321023519] +19:23:31 [ 11] [ 6] [193519] +19:23:31 [ 37] [ 12] [579191935190] +19:23:31 [ 39] [ 2] [00] +19:23:31 [ 70] [ 3] [810] +19:23:31 ============================================================================ +19:23:31 Calculate Source COMM Id = 6 +19:23:31 ============================================================================ +19:23:31 + + +waiting on router queue for slot.... +19:23:35 ============================================================================ +19:23:35 Slot Id : <118> +19:23:35 Transaction Type : REQUEST +19:23:35 Received From : +19:23:35 ============================================================================ +19:23:35 FNo. Len. Field Value +19:23:35 ============================================================================ +19:23:35 [ 1] [ 4] [0200] +19:23:35 [ 2] [ 16] [6213541000672033] +19:23:35 [ 3] [ 6] [011000] +19:23:35 [ 4] [ 12] [000100000000] +19:23:35 [ 7] [ 10] [0320192355] +19:23:35 [ 11] [ 6] [211185] +19:23:35 [ 12] [ 6] [191200] +19:23:35 [ 13] [ 4] [0320] +19:23:35 [ 14] [ 4] [4912] +19:23:35 [ 15] [ 4] [0320] +19:23:35 [ 18] [ 4] [6011] +19:23:35 [ 19] [ 3] [418] +19:23:35 [ 22] [ 3] [021] +19:23:35 [ 25] [ 2] [01] +19:23:35 [ 28] [ 9] [D00002000] +19:23:35 [ 32] [ 6] [198901] +19:23:35 [ 35] [ 32] [6213541000672033=491212017203169] +19:23:35 [ 37] [ 12] [507919211185] +19:23:35 [ 41] [ 8] [01529014] +19:23:35 [ 42] [ 15] [000000041529014] +19:23:35 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:23:35 [ 49] [ 3] [418] +19:23:35 [ 52] [ 16] [DC9D97543C45EABB] +19:23:35 ============================================================================ +19:23:35 + + +waiting on router queue for slot.... +19:23:35 Sending to : +19:23:35 ============================================================================ +19:23:35 Sending to : +19:23:35 ============================================================================ +19:23:36 ============================================================================ +19:23:36 Slot Id : <118> +19:23:36 Transaction Type : REQUEST +19:23:36 Received From : +19:23:36 ============================================================================ +19:23:36 FNo. Len. Field Value +19:23:36 ============================================================================ +19:23:36 [ 1] [ 4] [0200] +19:23:36 [ 2] [ 16] [6213541000672033] +19:23:36 [ 3] [ 6] [011000] +19:23:36 [ 4] [ 12] [000100000000] +19:23:36 [ 7] [ 10] [0320192355] +19:23:36 [ 11] [ 6] [211185] +19:23:36 [ 12] [ 6] [191200] +19:23:36 [ 13] [ 4] [0320] +19:23:36 [ 14] [ 4] [4912] +19:23:36 [ 15] [ 4] [0320] +19:23:36 [ 18] [ 4] [6011] +19:23:36 [ 19] [ 3] [418] +19:23:36 [ 22] [ 3] [021] +19:23:36 [ 25] [ 2] [01] +19:23:36 [ 28] [ 9] [D00002000] +19:23:36 [ 32] [ 6] [198901] +19:23:36 [ 35] [ 32] [6213541000672033=491212017203169] +19:23:36 [ 37] [ 12] [507919211185] +19:23:36 [ 41] [ 8] [01529014] +19:23:36 [ 42] [ 15] [000000041529014] +19:23:36 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:23:36 [ 49] [ 3] [418] +19:23:36 [ 52] [ 16] [DC9D97543C45EABB] +19:23:36 ============================================================================ +19:23:36 + + +waiting on router queue for slot.... +19:23:36 Sending to : +19:23:36 ============================================================================ +19:23:36 ============================================================================ +19:23:36 Slot Id : <118> +19:23:36 Transaction Type : REQUEST +19:23:36 Received From : +19:23:36 ============================================================================ +19:23:36 FNo. Len. Field Value +19:23:36 ============================================================================ +19:23:36 [ 1] [ 4] [0200] +19:23:36 [ 2] [ 16] [6213541000672033] +19:23:36 [ 3] [ 6] [011000] +19:23:36 [ 4] [ 12] [000100000000] +19:23:36 [ 7] [ 10] [0320192355] +19:23:36 [ 11] [ 6] [211185] +19:23:36 [ 12] [ 6] [191200] +19:23:36 [ 13] [ 4] [0320] +19:23:36 [ 14] [ 4] [4912] +19:23:36 [ 15] [ 4] [0320] +19:23:36 [ 18] [ 4] [6011] +19:23:36 [ 19] [ 3] [418] +19:23:36 [ 22] [ 3] [021] +19:23:36 [ 25] [ 2] [01] +19:23:36 [ 28] [ 9] [D00002000] +19:23:36 [ 32] [ 6] [198901] +19:23:36 [ 35] [ 32] [6213541000672033=491212017203169] +19:23:36 [ 37] [ 12] [507919211185] +19:23:36 [ 41] [ 8] [01529014] +19:23:36 [ 42] [ 15] [000000041529014] +19:23:36 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:23:36 [ 49] [ 3] [418] +19:23:36 [ 52] [ 16] [3D520585CA77A566] +19:23:36 ============================================================================ +19:23:36 + + +waiting on router queue for slot.... +19:23:36 Sending to : <0> +19:23:36 ============================================================================ +19:23:36 ============================================================================ +19:23:36 Slot Id : <118> +19:23:36 Transaction Type : RESPONSE +19:23:36 Received From : +19:23:36 ============================================================================ +19:23:36 FNo. Len. Field Value +19:23:36 ============================================================================ +19:23:36 [ 1] [ 4] [0210] +19:23:36 [ 2] [ 16] [6213541000672033] +19:23:36 [ 3] [ 6] [011000] +19:23:36 [ 4] [ 12] [000100000000] +19:23:36 [ 7] [ 10] [0320192355] +19:23:36 [ 11] [ 6] [211185] +19:23:36 [ 12] [ 6] [191200] +19:23:36 [ 13] [ 4] [0320] +19:23:36 [ 15] [ 4] [0320] +19:23:36 [ 18] [ 4] [6011] +19:23:36 [ 19] [ 3] [418] +19:23:36 [ 32] [ 6] [198901] +19:23:36 [ 35] [ 32] [6213541000672033=491212017203169] +19:23:36 [ 37] [ 12] [507919211185] +19:23:36 [ 38] [ 6] [898589] +19:23:36 [ 39] [ 2] [00] +19:23:36 [ 41] [ 8] [01529014] +19:23:36 [ 49] [ 3] [418] +19:23:36 [ 54] [ 40] [1001418C0008257648471002418C000825764847] +19:23:36 ============================================================================ +19:23:36 Sending to : +19:23:36 ============================================================================ +19:23:36 + + +waiting on router queue for slot.... +19:23:38 ============================================================================ +19:23:38 Slot Id : <118> +19:23:38 Transaction Type : RESPONSE +19:23:38 Received From : +19:23:38 ============================================================================ +19:23:38 FNo. Len. Field Value +19:23:38 ============================================================================ +19:23:38 [ 1] [ 4] [0210] +19:23:38 [ 2] [ 16] [6213541000672033] +19:23:38 [ 3] [ 6] [011000] +19:23:38 [ 4] [ 12] [000100000000] +19:23:38 [ 7] [ 10] [0320192355] +19:23:38 [ 11] [ 6] [211185] +19:23:38 [ 12] [ 6] [191200] +19:23:38 [ 13] [ 4] [0320] +19:23:38 [ 15] [ 4] [0320] +19:23:38 [ 18] [ 4] [6011] +19:23:38 [ 19] [ 3] [418] +19:23:38 [ 32] [ 6] [198901] +19:23:38 [ 35] [ 32] [6213541000672033=491212017203169] +19:23:38 [ 37] [ 12] [507919211185] +19:23:38 [ 38] [ 6] [898589] +19:23:38 [ 39] [ 2] [00] +19:23:38 [ 41] [ 8] [01529014] +19:23:38 [ 49] [ 3] [418] +19:23:38 [ 54] [ 40] [1001418C0008257648471002418C000825764847] +19:23:38 ============================================================================ +19:23:38 Calculate Source COMM Id = 5 +19:23:38 ============================================================================ +19:23:38 + + +waiting on router queue for slot.... +19:23:45 ============================================================================ +19:23:45 Slot Id : <107> +19:23:45 Transaction Type : REQUEST +19:23:45 Received From : +19:23:45 ============================================================================ +19:23:45 FNo. Len. Field Value +19:23:45 ============================================================================ +19:23:45 [ 1] [ 4] [0800] +19:23:45 [ 7] [ 10] [0320122252] +19:23:45 [ 11] [ 6] [157934] +19:23:45 [ 70] [ 3] [301] +19:23:45 ============================================================================ +19:23:45 + + +waiting on router queue for slot.... +19:23:45 Sending to : +19:23:45 ============================================================================ +19:23:45 ============================================================================ +19:23:45 Slot Id : <107> +19:23:45 Transaction Type : RESPONSE +19:23:45 Received From : +19:23:45 ============================================================================ +19:23:45 FNo. Len. Field Value +19:23:45 ============================================================================ +19:23:45 [ 1] [ 4] [0810] +19:23:45 [ 7] [ 10] [0320122252] +19:23:45 [ 11] [ 6] [157934] +19:23:45 [ 39] [ 2] [00] +19:23:45 [ 70] [ 3] [301] +19:23:45 ============================================================================ +19:23:45 Calculate Source COMM Id = 2 +19:23:45 ============================================================================ +19:23:45 + + +waiting on router queue for slot.... +19:23:57 ============================================================================ +19:23:57 Slot Id : <121> +19:23:57 Transaction Type : REQUEST +19:23:57 Received From : +19:23:57 ============================================================================ +19:23:57 FNo. Len. Field Value +19:23:57 ============================================================================ +19:23:57 [ 1] [ 4] [0800] +19:23:57 [ 7] [ 10] [0320122303] +19:23:57 [ 11] [ 6] [157935] +19:23:57 [ 70] [ 3] [301] +19:23:57 ============================================================================ +19:23:57 + + +waiting on router queue for slot.... +19:23:57 Sending to : +19:23:57 ============================================================================ +19:23:57 ============================================================================ +19:23:57 Slot Id : <121> +19:23:57 Transaction Type : RESPONSE +19:23:57 Received From : +19:23:57 ============================================================================ +19:23:57 FNo. Len. Field Value +19:23:57 ============================================================================ +19:23:57 [ 1] [ 4] [0810] +19:23:57 [ 7] [ 10] [0320122303] +19:23:57 [ 11] [ 6] [157935] +19:23:57 [ 39] [ 2] [00] +19:23:57 [ 70] [ 3] [301] +19:23:57 ============================================================================ +19:23:57 Calculate Source COMM Id = 2 +19:23:57 ============================================================================ +19:23:57 + + +waiting on router queue for slot.... +19:24:01 ============================================================================ +19:24:01 Slot Id : <115> +19:24:01 Transaction Type : REQUEST +19:24:01 Received From : +19:24:01 ============================================================================ +19:24:01 FNo. Len. Field Value +19:24:01 ============================================================================ +19:24:01 [ 1] [ 4] [0200] +19:24:01 [ 2] [ 16] [6688990040166181] +19:24:01 [ 3] [ 6] [011000] +19:24:01 [ 4] [ 12] [000030000000] +19:24:01 [ 7] [ 10] [0320192356] +19:24:01 [ 11] [ 6] [836059] +19:24:01 [ 12] [ 6] [192356] +19:24:01 [ 13] [ 4] [0320] +19:24:01 [ 15] [ 4] [0320] +19:24:01 [ 18] [ 4] [6011] +19:24:01 [ 22] [ 3] [900] +19:24:01 [ 25] [ 2] [02] +19:24:01 [ 28] [ 9] [D00002000] +19:24:01 [ 32] [ 6] [621354] +19:24:01 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:24:01 [ 37] [ 12] [507903525198] +19:24:01 [ 41] [ 8] [09000900] +19:24:01 [ 42] [ 15] [NATIVE ] +19:24:01 [ 43] [ 40] [VTC Branch03 ChanthaboulyLAO] +19:24:01 [ 49] [ 3] [418] +19:24:01 [ 52] [ 16] [45B9D5078F0B01A6] +19:24:01 ============================================================================ +19:24:01 + + +waiting on router queue for slot.... +19:24:01 Sending to : +19:24:01 ============================================================================ +19:24:01 Sending to : +19:24:01 ============================================================================ +19:24:01 ============================================================================ +19:24:01 Slot Id : <115> +19:24:01 Transaction Type : REQUEST +19:24:01 Received From : +19:24:01 ============================================================================ +19:24:01 FNo. Len. Field Value +19:24:01 ============================================================================ +19:24:01 [ 1] [ 4] [0200] +19:24:01 [ 2] [ 16] [6688990040166181] +19:24:01 [ 3] [ 6] [011000] +19:24:01 [ 4] [ 12] [000030000000] +19:24:01 [ 7] [ 10] [0320192356] +19:24:01 [ 11] [ 6] [836059] +19:24:01 [ 12] [ 6] [192356] +19:24:01 [ 13] [ 4] [0320] +19:24:01 [ 15] [ 4] [0320] +19:24:01 [ 18] [ 4] [6011] +19:24:01 [ 22] [ 3] [900] +19:24:01 [ 25] [ 2] [02] +19:24:01 [ 28] [ 9] [D00002000] +19:24:01 [ 32] [ 6] [621354] +19:24:01 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:24:01 [ 37] [ 12] [507903525198] +19:24:01 [ 41] [ 8] [09000900] +19:24:01 [ 42] [ 15] [NATIVE ] +19:24:01 [ 43] [ 40] [VTC Branch03 ChanthaboulyLAO] +19:24:01 [ 49] [ 3] [418] +19:24:01 [ 52] [ 16] [45B9D5078F0B01A6] +19:24:01 ============================================================================ +19:24:01 + + +waiting on router queue for slot.... +19:24:01 Sending to : +19:24:01 ============================================================================ +19:24:01 ============================================================================ +19:24:01 Slot Id : <115> +19:24:01 Transaction Type : REQUEST +19:24:01 Received From : +19:24:01 ============================================================================ +19:24:01 FNo. Len. Field Value +19:24:01 ============================================================================ +19:24:01 [ 1] [ 4] [0200] +19:24:01 [ 2] [ 16] [6688990040166181] +19:24:01 [ 3] [ 6] [011000] +19:24:01 [ 4] [ 12] [000030000000] +19:24:01 [ 7] [ 10] [0320192356] +19:24:01 [ 11] [ 6] [836059] +19:24:01 [ 12] [ 6] [192356] +19:24:01 [ 13] [ 4] [0320] +19:24:01 [ 15] [ 4] [0320] +19:24:01 [ 18] [ 4] [6011] +19:24:01 [ 22] [ 3] [900] +19:24:01 [ 25] [ 2] [02] +19:24:01 [ 28] [ 9] [D00002000] +19:24:01 [ 32] [ 6] [621354] +19:24:01 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:24:01 [ 37] [ 12] [507903525198] +19:24:01 [ 41] [ 8] [09000900] +19:24:01 [ 42] [ 15] [NATIVE ] +19:24:01 [ 43] [ 40] [VTC Branch03 ChanthaboulyLAO] +19:24:01 [ 49] [ 3] [418] +19:24:01 [ 52] [ 16] [C67C3C42819F9FFD] +19:24:01 ============================================================================ +19:24:01 + + +waiting on router queue for slot.... +19:24:01 Sending to : <4> +19:24:01 ============================================================================ +19:24:01 ============================================================================ +19:24:01 Slot Id : <115> +19:24:01 Transaction Type : RESPONSE +19:24:01 Received From : +19:24:01 ============================================================================ +19:24:01 FNo. Len. Field Value +19:24:01 ============================================================================ +19:24:01 [ 1] [ 4] [0210] +19:24:01 [ 2] [ 16] [6688990040166181] +19:24:01 [ 3] [ 6] [011000] +19:24:01 [ 4] [ 12] [000030000000] +19:24:01 [ 7] [ 10] [0320192356] +19:24:01 [ 11] [ 6] [836059] +19:24:01 [ 12] [ 6] [192356] +19:24:01 [ 13] [ 4] [0320] +19:24:01 [ 15] [ 4] [0320] +19:24:01 [ 18] [ 4] [6011] +19:24:01 [ 22] [ 3] [021] +19:24:01 [ 32] [ 6] [621354] +19:24:01 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:24:01 [ 37] [ 12] [507903525198] +19:24:01 [ 38] [ 6] [192151] +19:24:01 [ 39] [ 2] [55] +19:24:01 [ 41] [ 8] [09000900] +19:24:01 [ 49] [ 3] [418] +19:24:01 ============================================================================ +19:24:01 Sending to : +19:24:01 ============================================================================ +19:24:01 + + +waiting on router queue for slot.... +19:24:02 ============================================================================ +19:24:02 Slot Id : <115> +19:24:02 Transaction Type : RESPONSE +19:24:02 Received From : +19:24:02 ============================================================================ +19:24:02 FNo. Len. Field Value +19:24:02 ============================================================================ +19:24:02 [ 1] [ 4] [0210] +19:24:02 [ 2] [ 16] [6688990040166181] +19:24:02 [ 3] [ 6] [011000] +19:24:02 [ 4] [ 12] [000030000000] +19:24:02 [ 7] [ 10] [0320192356] +19:24:02 [ 11] [ 6] [836059] +19:24:02 [ 12] [ 6] [192356] +19:24:02 [ 13] [ 4] [0320] +19:24:02 [ 15] [ 4] [0320] +19:24:02 [ 18] [ 4] [6011] +19:24:02 [ 22] [ 3] [021] +19:24:02 [ 32] [ 6] [621354] +19:24:02 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:24:02 [ 37] [ 12] [507903525198] +19:24:02 [ 38] [ 6] [192151] +19:24:02 [ 39] [ 2] [55] +19:24:02 [ 41] [ 8] [09000900] +19:24:02 [ 49] [ 3] [418] +19:24:02 ============================================================================ +19:24:02 Calculate Source COMM Id = 0 +19:24:02 ============================================================================ +19:24:02 + + +waiting on router queue for slot.... +19:24:05 ============================================================================ +19:24:05 Slot Id : <92> +19:24:05 Transaction Type : REQUEST +19:24:05 Received From : +19:24:05 ============================================================================ +19:24:05 FNo. Len. Field Value +19:24:05 ============================================================================ +19:24:05 [ 1] [ 4] [0200] +19:24:05 [ 2] [ 16] [6213541000672033] +19:24:05 [ 3] [ 6] [011000] +19:24:05 [ 4] [ 12] [000100000000] +19:24:05 [ 7] [ 10] [0320192425] +19:24:05 [ 11] [ 6] [211190] +19:24:05 [ 12] [ 6] [191230] +19:24:05 [ 13] [ 4] [0320] +19:24:05 [ 14] [ 4] [4912] +19:24:05 [ 15] [ 4] [0320] +19:24:05 [ 18] [ 4] [6011] +19:24:05 [ 19] [ 3] [418] +19:24:05 [ 22] [ 3] [021] +19:24:05 [ 25] [ 2] [01] +19:24:05 [ 28] [ 9] [D00002000] +19:24:05 [ 32] [ 6] [198901] +19:24:05 [ 35] [ 32] [6213541000672033=491212017203169] +19:24:05 [ 37] [ 12] [507919211190] +19:24:05 [ 41] [ 8] [01529014] +19:24:05 [ 42] [ 15] [000000041529014] +19:24:05 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:24:05 [ 49] [ 3] [418] +19:24:05 [ 52] [ 16] [DC9D97543C45EABB] +19:24:05 ============================================================================ +19:24:05 + + +waiting on router queue for slot.... +19:24:05 Sending to : +19:24:05 ============================================================================ +19:24:05 Sending to : +19:24:05 ============================================================================ +19:24:06 ============================================================================ +19:24:06 Slot Id : <92> +19:24:06 Transaction Type : REQUEST +19:24:06 Received From : +19:24:06 ============================================================================ +19:24:06 FNo. Len. Field Value +19:24:06 ============================================================================ +19:24:06 [ 1] [ 4] [0200] +19:24:06 [ 2] [ 16] [6213541000672033] +19:24:06 [ 3] [ 6] [011000] +19:24:06 [ 4] [ 12] [000100000000] +19:24:06 [ 7] [ 10] [0320192425] +19:24:06 [ 11] [ 6] [211190] +19:24:06 [ 12] [ 6] [191230] +19:24:06 [ 13] [ 4] [0320] +19:24:06 [ 14] [ 4] [4912] +19:24:06 [ 15] [ 4] [0320] +19:24:06 [ 18] [ 4] [6011] +19:24:06 [ 19] [ 3] [418] +19:24:06 [ 22] [ 3] [021] +19:24:06 [ 25] [ 2] [01] +19:24:06 [ 28] [ 9] [D00002000] +19:24:06 [ 32] [ 6] [198901] +19:24:06 [ 35] [ 32] [6213541000672033=491212017203169] +19:24:06 [ 37] [ 12] [507919211190] +19:24:06 [ 41] [ 8] [01529014] +19:24:06 [ 42] [ 15] [000000041529014] +19:24:06 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:24:06 [ 49] [ 3] [418] +19:24:06 [ 52] [ 16] [DC9D97543C45EABB] +19:24:06 ============================================================================ +19:24:06 + + +waiting on router queue for slot.... +19:24:06 Sending to : +19:24:06 ============================================================================ +19:24:06 ============================================================================ +19:24:06 Slot Id : <92> +19:24:06 Transaction Type : REQUEST +19:24:06 Received From : +19:24:06 ============================================================================ +19:24:06 FNo. Len. Field Value +19:24:06 ============================================================================ +19:24:06 [ 1] [ 4] [0200] +19:24:06 [ 2] [ 16] [6213541000672033] +19:24:06 [ 3] [ 6] [011000] +19:24:06 [ 4] [ 12] [000100000000] +19:24:06 [ 7] [ 10] [0320192425] +19:24:06 [ 11] [ 6] [211190] +19:24:06 [ 12] [ 6] [191230] +19:24:06 [ 13] [ 4] [0320] +19:24:06 [ 14] [ 4] [4912] +19:24:06 [ 15] [ 4] [0320] +19:24:06 [ 18] [ 4] [6011] +19:24:06 [ 19] [ 3] [418] +19:24:06 [ 22] [ 3] [021] +19:24:06 [ 25] [ 2] [01] +19:24:06 [ 28] [ 9] [D00002000] +19:24:06 [ 32] [ 6] [198901] +19:24:06 [ 35] [ 32] [6213541000672033=491212017203169] +19:24:06 [ 37] [ 12] [507919211190] +19:24:06 [ 41] [ 8] [01529014] +19:24:06 [ 42] [ 15] [000000041529014] +19:24:06 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:24:06 [ 49] [ 3] [418] +19:24:06 [ 52] [ 16] [3D520585CA77A566] +19:24:06 ============================================================================ +19:24:06 + + +waiting on router queue for slot.... +19:24:06 Sending to : <0> +19:24:06 ============================================================================ +19:24:06 ============================================================================ +19:24:06 Slot Id : <92> +19:24:06 Transaction Type : RESPONSE +19:24:06 Received From : +19:24:06 ============================================================================ +19:24:06 FNo. Len. Field Value +19:24:06 ============================================================================ +19:24:06 [ 1] [ 4] [0210] +19:24:06 [ 2] [ 16] [6213541000672033] +19:24:06 [ 3] [ 6] [011000] +19:24:06 [ 4] [ 12] [000100000000] +19:24:06 [ 7] [ 10] [0320192425] +19:24:06 [ 11] [ 6] [211190] +19:24:06 [ 12] [ 6] [191230] +19:24:06 [ 13] [ 4] [0320] +19:24:06 [ 15] [ 4] [0320] +19:24:06 [ 18] [ 4] [6011] +19:24:06 [ 19] [ 3] [418] +19:24:06 [ 32] [ 6] [198901] +19:24:06 [ 35] [ 32] [6213541000672033=491212017203169] +19:24:06 [ 37] [ 12] [507919211190] +19:24:06 [ 38] [ 6] [777409] +19:24:06 [ 39] [ 2] [00] +19:24:06 [ 41] [ 8] [01529014] +19:24:06 [ 49] [ 3] [418] +19:24:06 [ 54] [ 40] [1001418C0007255648471002418C000725564847] +19:24:06 ============================================================================ +19:24:06 Sending to : +19:24:06 ============================================================================ +19:24:06 + + +waiting on router queue for slot.... +19:24:07 ============================================================================ +19:24:07 Slot Id : <92> +19:24:07 Transaction Type : RESPONSE +19:24:07 Received From : +19:24:07 ============================================================================ +19:24:07 FNo. Len. Field Value +19:24:07 ============================================================================ +19:24:07 [ 1] [ 4] [0210] +19:24:07 [ 2] [ 16] [6213541000672033] +19:24:07 [ 3] [ 6] [011000] +19:24:07 [ 4] [ 12] [000100000000] +19:24:07 [ 7] [ 10] [0320192425] +19:24:07 [ 11] [ 6] [211190] +19:24:07 [ 12] [ 6] [191230] +19:24:07 [ 13] [ 4] [0320] +19:24:07 [ 15] [ 4] [0320] +19:24:07 [ 18] [ 4] [6011] +19:24:07 [ 19] [ 3] [418] +19:24:07 [ 32] [ 6] [198901] +19:24:07 [ 35] [ 32] [6213541000672033=491212017203169] +19:24:07 [ 37] [ 12] [507919211190] +19:24:07 [ 38] [ 6] [777409] +19:24:07 [ 39] [ 2] [00] +19:24:07 [ 41] [ 8] [01529014] +19:24:07 [ 49] [ 3] [418] +19:24:07 [ 54] [ 40] [1001418C0007255648471002418C000725564847] +19:24:07 ============================================================================ +19:24:07 Calculate Source COMM Id = 5 +19:24:07 ============================================================================ +19:24:07 + + +waiting on router queue for slot.... +19:24:08 ============================================================================ +19:24:08 Slot Id : <74> +19:24:08 Transaction Type : REQUEST +19:24:08 Received From : +19:24:08 ============================================================================ +19:24:08 FNo. Len. Field Value +19:24:08 ============================================================================ +19:24:08 [ 1] [ 4] [0800] +19:24:08 [ 7] [ 10] [0320122314] +19:24:08 [ 11] [ 6] [157936] +19:24:08 [ 70] [ 3] [301] +19:24:08 ============================================================================ +19:24:08 + + +waiting on router queue for slot.... +19:24:08 Sending to : +19:24:08 ============================================================================ +19:24:08 ============================================================================ +19:24:08 Slot Id : <74> +19:24:08 Transaction Type : RESPONSE +19:24:08 Received From : +19:24:08 ============================================================================ +19:24:08 FNo. Len. Field Value +19:24:08 ============================================================================ +19:24:08 [ 1] [ 4] [0810] +19:24:08 [ 7] [ 10] [0320122314] +19:24:08 [ 11] [ 6] [157936] +19:24:08 [ 39] [ 2] [00] +19:24:08 [ 70] [ 3] [301] +19:24:08 ============================================================================ +19:24:08 Calculate Source COMM Id = 2 +19:24:08 ============================================================================ +19:24:08 + + +waiting on router queue for slot.... +19:24:11 ============================================================================ +19:24:11 Slot Id : <113> +19:24:11 Transaction Type : REQUEST +19:24:11 Received From : +19:24:11 ============================================================================ +19:24:11 FNo. Len. Field Value +19:24:11 ============================================================================ +19:24:11 [ 1] [ 4] [0800] +19:24:11 [ 2] [ 5] [02531] +19:24:11 [ 3] [ 6] [579198] +19:24:11 [ 7] [ 10] [0320122411] +19:24:11 [ 11] [ 6] [807538] +19:24:11 [ 15] [ 10] [0320122411] +19:24:11 [ 37] [ 11] [57919807538] +19:24:11 [ 70] [ 3] [001] +19:24:11 ============================================================================ +19:24:11 + + +waiting on router queue for slot.... +19:24:11 ============================================================================ +19:24:11 Slot Id : <113> +19:24:11 Transaction Type : RESPONSE +19:24:11 Received From : +19:24:11 ============================================================================ +19:24:11 FNo. Len. Field Value +19:24:11 ============================================================================ +19:24:11 [ 1] [ 4] [0810] +19:24:11 [ 7] [ 10] [0320122411] +19:24:11 [ 11] [ 6] [807538] +19:24:11 [ 15] [ 4] [0320] +19:24:11 [ 37] [ 12] [57919807538] +19:24:11 [ 39] [ 2] [00] +19:24:11 [ 70] [ 3] [001] +19:24:11 ============================================================================ +19:24:11 Sending to : +19:24:11 ============================================================================ +19:24:11 + + +waiting on router queue for slot.... +19:24:17 ============================================================================ +19:24:17 Slot Id : <98> +19:24:17 Transaction Type : REQUEST +19:24:17 Received From : +19:24:17 ============================================================================ +19:24:17 FNo. Len. Field Value +19:24:17 ============================================================================ +19:24:17 [ 1] [ 4] [0200] +19:24:17 [ 2] [ 16] [6213544001770608] +19:24:17 [ 3] [ 6] [010000] +19:24:17 [ 4] [ 12] [000010000000] +19:24:17 [ 7] [ 10] [0320192206] +19:24:17 [ 11] [ 6] [956081] +19:24:17 [ 12] [ 6] [192206] +19:24:17 [ 13] [ 4] [0320] +19:24:17 [ 15] [ 4] [0320] +19:24:17 [ 18] [ 4] [6011] +19:24:17 [ 19] [ 3] [418] +19:24:17 [ 22] [ 3] [021] +19:24:17 [ 25] [ 2] [01] +19:24:17 [ 28] [ 9] [D00002000] +19:24:17 [ 32] [ 6] [668899] +19:24:17 [ 35] [ 32] [6213544001770608=491212017060859] +19:24:17 [ 37] [ 12] [507901203991] +19:24:17 [ 41] [ 8] [03020012] +19:24:17 [ 42] [ 15] [APT ] +19:24:17 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +19:24:17 [ 49] [ 3] [418] +19:24:17 [ 52] [ 16] [6D6535780199F981] +19:24:17 ============================================================================ +19:24:17 + + +waiting on router queue for slot.... +19:24:17 Sending to : +19:24:17 ============================================================================ +19:24:17 Sending to : +19:24:17 ============================================================================ +19:24:17 ============================================================================ +19:24:17 Slot Id : <98> +19:24:17 Transaction Type : REQUEST +19:24:17 Received From : +19:24:17 ============================================================================ +19:24:17 FNo. Len. Field Value +19:24:17 ============================================================================ +19:24:17 [ 1] [ 4] [0200] +19:24:17 [ 2] [ 16] [6213544001770608] +19:24:17 [ 3] [ 6] [010000] +19:24:17 [ 4] [ 12] [000010000000] +19:24:17 [ 7] [ 10] [0320192206] +19:24:17 [ 11] [ 6] [956081] +19:24:17 [ 12] [ 6] [192206] +19:24:17 [ 13] [ 4] [0320] +19:24:17 [ 15] [ 4] [0320] +19:24:17 [ 18] [ 4] [6011] +19:24:17 [ 19] [ 3] [418] +19:24:17 [ 22] [ 3] [021] +19:24:17 [ 25] [ 2] [01] +19:24:17 [ 28] [ 9] [D00002000] +19:24:17 [ 32] [ 6] [668899] +19:24:17 [ 35] [ 32] [6213544001770608=491212017060859] +19:24:17 [ 37] [ 12] [507901203991] +19:24:17 [ 41] [ 8] [03020012] +19:24:17 [ 42] [ 15] [APT ] +19:24:17 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +19:24:17 [ 49] [ 3] [418] +19:24:17 [ 52] [ 16] [6D6535780199F981] +19:24:17 ============================================================================ +19:24:17 + + +waiting on router queue for slot.... +19:24:17 Sending to : +19:24:17 ============================================================================ +19:24:17 ============================================================================ +19:24:17 Slot Id : <98> +19:24:17 Transaction Type : REQUEST +19:24:17 Received From : +19:24:17 ============================================================================ +19:24:17 FNo. Len. Field Value +19:24:17 ============================================================================ +19:24:17 [ 1] [ 4] [0200] +19:24:17 [ 2] [ 16] [6213544001770608] +19:24:17 [ 3] [ 6] [010000] +19:24:17 [ 4] [ 12] [000010000000] +19:24:17 [ 7] [ 10] [0320192206] +19:24:17 [ 11] [ 6] [956081] +19:24:17 [ 12] [ 6] [192206] +19:24:17 [ 13] [ 4] [0320] +19:24:17 [ 15] [ 4] [0320] +19:24:17 [ 18] [ 4] [6011] +19:24:17 [ 19] [ 3] [418] +19:24:17 [ 22] [ 3] [021] +19:24:17 [ 25] [ 2] [01] +19:24:17 [ 28] [ 9] [D00002000] +19:24:17 [ 32] [ 6] [668899] +19:24:17 [ 35] [ 32] [6213544001770608=491212017060859] +19:24:17 [ 37] [ 12] [507901203991] +19:24:17 [ 41] [ 8] [03020012] +19:24:17 [ 42] [ 15] [APT ] +19:24:17 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +19:24:17 [ 49] [ 3] [418] +19:24:17 [ 52] [ 16] [F05A884C69373ABC] +19:24:17 ============================================================================ +19:24:17 + + +waiting on router queue for slot.... +19:24:17 Sending to : <0> +19:24:17 ============================================================================ +19:24:18 ============================================================================ +19:24:18 Slot Id : <98> +19:24:18 Transaction Type : RESPONSE +19:24:18 Received From : +19:24:18 ============================================================================ +19:24:18 FNo. Len. Field Value +19:24:18 ============================================================================ +19:24:18 [ 1] [ 4] [0210] +19:24:18 [ 2] [ 16] [6213544001770608] +19:24:18 [ 3] [ 6] [010000] +19:24:18 [ 4] [ 12] [000010000000] +19:24:18 [ 7] [ 10] [0320192206] +19:24:18 [ 11] [ 6] [956081] +19:24:18 [ 12] [ 6] [192206] +19:24:18 [ 13] [ 4] [0320] +19:24:18 [ 15] [ 4] [0320] +19:24:18 [ 18] [ 4] [6011] +19:24:18 [ 19] [ 3] [418] +19:24:18 [ 32] [ 6] [668899] +19:24:18 [ 35] [ 32] [6213544001770608=491212017060859] +19:24:18 [ 37] [ 12] [507901203991] +19:24:18 [ 38] [ 6] [956081] +19:24:18 [ 39] [ 2] [51] +19:24:18 [ 41] [ 8] [03020012] +19:24:18 [ 49] [ 3] [418] +19:24:18 [ 54] [ 40] [0001840C0000000013020002840C000000001302] +19:24:18 ============================================================================ +19:24:18 Sending to : +19:24:18 ============================================================================ +19:24:18 + + +waiting on router queue for slot.... +19:24:18 ============================================================================ +19:24:18 Slot Id : <108> +19:24:18 Transaction Type : REQUEST +19:24:18 Received From : +19:24:18 ============================================================================ +19:24:18 FNo. Len. Field Value +19:24:18 ============================================================================ +19:24:18 [ 1] [ 4] [0800] +19:24:18 [ 7] [ 10] [0320122325] +19:24:18 [ 11] [ 6] [157937] +19:24:18 [ 70] [ 3] [301] +19:24:18 ============================================================================ +19:24:18 + + +waiting on router queue for slot.... +19:24:18 Sending to : +19:24:18 ============================================================================ +19:24:18 ============================================================================ +19:24:18 Slot Id : <108> +19:24:18 Transaction Type : RESPONSE +19:24:18 Received From : +19:24:18 ============================================================================ +19:24:18 FNo. Len. Field Value +19:24:18 ============================================================================ +19:24:18 [ 1] [ 4] [0810] +19:24:18 [ 7] [ 10] [0320122325] +19:24:18 [ 11] [ 6] [157937] +19:24:18 [ 39] [ 2] [00] +19:24:18 [ 70] [ 3] [301] +19:24:18 ============================================================================ +19:24:18 Calculate Source COMM Id = 2 +19:24:18 ============================================================================ +19:24:18 + + +waiting on router queue for slot.... +19:24:19 ============================================================================ +19:24:19 Slot Id : <98> +19:24:19 Transaction Type : RESPONSE +19:24:19 Received From : +19:24:19 ============================================================================ +19:24:19 FNo. Len. Field Value +19:24:19 ============================================================================ +19:24:19 [ 1] [ 4] [0210] +19:24:19 [ 2] [ 16] [6213544001770608] +19:24:19 [ 3] [ 6] [010000] +19:24:19 [ 4] [ 12] [000010000000] +19:24:19 [ 7] [ 10] [0320192206] +19:24:19 [ 11] [ 6] [956081] +19:24:19 [ 12] [ 6] [192206] +19:24:19 [ 13] [ 4] [0320] +19:24:19 [ 15] [ 4] [0320] +19:24:19 [ 18] [ 4] [6011] +19:24:19 [ 19] [ 3] [418] +19:24:19 [ 32] [ 6] [668899] +19:24:19 [ 35] [ 32] [6213544001770608=491212017060859] +19:24:19 [ 37] [ 12] [507901203991] +19:24:19 [ 38] [ 6] [956081] +19:24:19 [ 39] [ 2] [51] +19:24:19 [ 41] [ 8] [03020012] +19:24:19 [ 49] [ 3] [418] +19:24:19 [ 54] [ 40] [0001840C0000000013020002840C000000001302] +19:24:19 ============================================================================ +19:24:19 Calculate Source COMM Id = 4 +19:24:19 ============================================================================ +19:24:19 + + +waiting on router queue for slot.... +19:24:33 ============================================================================ +19:24:33 Slot Id : <127> +19:24:33 Transaction Type : REQUEST +19:24:33 Received From : +19:24:33 ============================================================================ +19:24:33 FNo. Len. Field Value +19:24:33 ============================================================================ +19:24:33 [ 1] [ 4] [0200] +19:24:33 [ 2] [ 16] [6213541000672033] +19:24:33 [ 3] [ 6] [011000] +19:24:33 [ 4] [ 12] [000100000000] +19:24:33 [ 7] [ 10] [0320192453] +19:24:33 [ 11] [ 6] [211200] +19:24:33 [ 12] [ 6] [191257] +19:24:33 [ 13] [ 4] [0320] +19:24:33 [ 14] [ 4] [4912] +19:24:33 [ 15] [ 4] [0320] +19:24:33 [ 18] [ 4] [6011] +19:24:33 [ 19] [ 3] [418] +19:24:33 [ 22] [ 3] [021] +19:24:33 [ 25] [ 2] [01] +19:24:33 [ 28] [ 9] [D00002000] +19:24:33 [ 32] [ 6] [198901] +19:24:33 [ 35] [ 32] [6213541000672033=491212017203169] +19:24:33 [ 37] [ 12] [507919211200] +19:24:33 [ 41] [ 8] [01529014] +19:24:33 [ 42] [ 15] [000000041529014] +19:24:33 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:24:33 [ 49] [ 3] [418] +19:24:33 [ 52] [ 16] [DC9D97543C45EABB] +19:24:33 ============================================================================ +19:24:33 + + +waiting on router queue for slot.... +19:24:33 Sending to : +19:24:33 ============================================================================ +19:24:33 Sending to : +19:24:33 ============================================================================ +19:24:33 ============================================================================ +19:24:33 Slot Id : <127> +19:24:33 Transaction Type : REQUEST +19:24:33 Received From : +19:24:33 ============================================================================ +19:24:33 FNo. Len. Field Value +19:24:33 ============================================================================ +19:24:33 [ 1] [ 4] [0200] +19:24:33 [ 2] [ 16] [6213541000672033] +19:24:33 [ 3] [ 6] [011000] +19:24:33 [ 4] [ 12] [000100000000] +19:24:33 [ 7] [ 10] [0320192453] +19:24:33 [ 11] [ 6] [211200] +19:24:33 [ 12] [ 6] [191257] +19:24:33 [ 13] [ 4] [0320] +19:24:33 [ 14] [ 4] [4912] +19:24:33 [ 15] [ 4] [0320] +19:24:33 [ 18] [ 4] [6011] +19:24:33 [ 19] [ 3] [418] +19:24:33 [ 22] [ 3] [021] +19:24:33 [ 25] [ 2] [01] +19:24:33 [ 28] [ 9] [D00002000] +19:24:33 [ 32] [ 6] [198901] +19:24:33 [ 35] [ 32] [6213541000672033=491212017203169] +19:24:33 [ 37] [ 12] [507919211200] +19:24:33 [ 41] [ 8] [01529014] +19:24:33 [ 42] [ 15] [000000041529014] +19:24:33 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:24:33 [ 49] [ 3] [418] +19:24:33 [ 52] [ 16] [DC9D97543C45EABB] +19:24:33 ============================================================================ +19:24:33 + + +waiting on router queue for slot.... +19:24:33 Sending to : +19:24:33 ============================================================================ +19:24:33 ============================================================================ +19:24:33 Slot Id : <127> +19:24:33 Transaction Type : REQUEST +19:24:33 Received From : +19:24:33 ============================================================================ +19:24:33 FNo. Len. Field Value +19:24:33 ============================================================================ +19:24:33 [ 1] [ 4] [0200] +19:24:33 [ 2] [ 16] [6213541000672033] +19:24:33 [ 3] [ 6] [011000] +19:24:33 [ 4] [ 12] [000100000000] +19:24:33 [ 7] [ 10] [0320192453] +19:24:33 [ 11] [ 6] [211200] +19:24:33 [ 12] [ 6] [191257] +19:24:33 [ 13] [ 4] [0320] +19:24:33 [ 14] [ 4] [4912] +19:24:33 [ 15] [ 4] [0320] +19:24:33 [ 18] [ 4] [6011] +19:24:33 [ 19] [ 3] [418] +19:24:33 [ 22] [ 3] [021] +19:24:33 [ 25] [ 2] [01] +19:24:33 [ 28] [ 9] [D00002000] +19:24:33 [ 32] [ 6] [198901] +19:24:33 [ 35] [ 32] [6213541000672033=491212017203169] +19:24:33 [ 37] [ 12] [507919211200] +19:24:33 [ 41] [ 8] [01529014] +19:24:33 [ 42] [ 15] [000000041529014] +19:24:33 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:24:33 [ 49] [ 3] [418] +19:24:33 [ 52] [ 16] [3D520585CA77A566] +19:24:33 ============================================================================ +19:24:33 + + +waiting on router queue for slot.... +19:24:33 Sending to : <0> +19:24:33 ============================================================================ +19:24:33 ============================================================================ +19:24:33 Slot Id : <75> +19:24:33 Transaction Type : REQUEST +19:24:33 Received From : +19:24:33 ============================================================================ +19:24:33 FNo. Len. Field Value +19:24:33 ============================================================================ +19:24:33 [ 1] [ 4] [0800] +19:24:33 [ 7] [ 10] [0320122340] +19:24:33 [ 11] [ 6] [157938] +19:24:33 [ 70] [ 3] [301] +19:24:33 ============================================================================ +19:24:33 + + +waiting on router queue for slot.... +19:24:33 Sending to : +19:24:33 ============================================================================ +19:24:33 ============================================================================ +19:24:33 Slot Id : <75> +19:24:33 Transaction Type : RESPONSE +19:24:33 Received From : +19:24:33 ============================================================================ +19:24:33 FNo. Len. Field Value +19:24:33 ============================================================================ +19:24:33 [ 1] [ 4] [0810] +19:24:33 [ 7] [ 10] [0320122340] +19:24:33 [ 11] [ 6] [157938] +19:24:33 [ 39] [ 2] [00] +19:24:33 [ 70] [ 3] [301] +19:24:33 ============================================================================ +19:24:33 Calculate Source COMM Id = 2 +19:24:33 ============================================================================ +19:24:33 + + +waiting on router queue for slot.... +19:24:34 ============================================================================ +19:24:34 Slot Id : <127> +19:24:34 Transaction Type : RESPONSE +19:24:34 Received From : +19:24:34 ============================================================================ +19:24:34 FNo. Len. Field Value +19:24:34 ============================================================================ +19:24:34 [ 1] [ 4] [0210] +19:24:34 [ 2] [ 16] [6213541000672033] +19:24:34 [ 3] [ 6] [011000] +19:24:34 [ 4] [ 12] [000100000000] +19:24:34 [ 7] [ 10] [0320192453] +19:24:34 [ 11] [ 6] [211200] +19:24:34 [ 12] [ 6] [191257] +19:24:34 [ 13] [ 4] [0320] +19:24:34 [ 15] [ 4] [0320] +19:24:34 [ 18] [ 4] [6011] +19:24:34 [ 19] [ 3] [418] +19:24:34 [ 32] [ 6] [198901] +19:24:34 [ 35] [ 32] [6213541000672033=491212017203169] +19:24:34 [ 37] [ 12] [507919211200] +19:24:34 [ 38] [ 6] [241369] +19:24:34 [ 39] [ 2] [00] +19:24:34 [ 41] [ 8] [01529014] +19:24:34 [ 49] [ 3] [418] +19:24:34 [ 54] [ 40] [1001418C0006253648471002418C000625364847] +19:24:34 ============================================================================ +19:24:34 Sending to : +19:24:34 ============================================================================ +19:24:34 + + +waiting on router queue for slot.... +19:24:35 ============================================================================ +19:24:35 Slot Id : <127> +19:24:35 Transaction Type : RESPONSE +19:24:35 Received From : +19:24:35 ============================================================================ +19:24:35 FNo. Len. Field Value +19:24:35 ============================================================================ +19:24:35 [ 1] [ 4] [0210] +19:24:35 [ 2] [ 16] [6213541000672033] +19:24:35 [ 3] [ 6] [011000] +19:24:35 [ 4] [ 12] [000100000000] +19:24:35 [ 7] [ 10] [0320192453] +19:24:35 [ 11] [ 6] [211200] +19:24:35 [ 12] [ 6] [191257] +19:24:35 [ 13] [ 4] [0320] +19:24:35 [ 15] [ 4] [0320] +19:24:35 [ 18] [ 4] [6011] +19:24:35 [ 19] [ 3] [418] +19:24:35 [ 32] [ 6] [198901] +19:24:35 [ 35] [ 32] [6213541000672033=491212017203169] +19:24:35 [ 37] [ 12] [507919211200] +19:24:35 [ 38] [ 6] [241369] +19:24:35 [ 39] [ 2] [00] +19:24:35 [ 41] [ 8] [01529014] +19:24:35 [ 49] [ 3] [418] +19:24:35 [ 54] [ 40] [1001418C0006253648471002418C000625364847] +19:24:35 ============================================================================ +19:24:35 Calculate Source COMM Id = 5 +19:24:35 ============================================================================ +19:24:35 + + +waiting on router queue for slot.... +19:24:35 ============================================================================ +19:24:35 Slot Id : <95> +19:24:35 Transaction Type : REQUEST +19:24:35 Received From : +19:24:35 ============================================================================ +19:24:35 FNo. Len. Field Value +19:24:35 ============================================================================ +19:24:35 [ 1] [ 4] [0200] +19:24:35 [ 2] [ 16] [6213544002200589] +19:24:35 [ 3] [ 6] [011000] +19:24:35 [ 4] [ 12] [000100000000] +19:24:35 [ 7] [ 10] [0320192455] +19:24:35 [ 11] [ 6] [211201] +19:24:35 [ 12] [ 6] [191740] +19:24:35 [ 13] [ 4] [0320] +19:24:35 [ 14] [ 4] [4912] +19:24:35 [ 15] [ 4] [0320] +19:24:35 [ 18] [ 4] [6011] +19:24:35 [ 19] [ 3] [418] +19:24:35 [ 22] [ 3] [021] +19:24:35 [ 25] [ 2] [01] +19:24:35 [ 28] [ 9] [D00002000] +19:24:35 [ 32] [ 6] [198901] +19:24:35 [ 35] [ 32] [6213544002200589=491212010058804] +19:24:35 [ 37] [ 12] [507919211201] +19:24:35 [ 41] [ 8] [01652909] +19:24:35 [ 42] [ 15] [000000041652909] +19:24:35 [ 43] [ 40] [JDB ATM LPB 4 VN ] +19:24:35 [ 49] [ 3] [418] +19:24:35 [ 52] [ 16] [10240371F244F0F1] +19:24:35 ============================================================================ +19:24:35 + + +waiting on router queue for slot.... +19:24:35 Sending to : +19:24:35 ============================================================================ +19:24:35 Sending to : +19:24:35 ============================================================================ +19:24:36 ============================================================================ +19:24:36 Slot Id : <95> +19:24:36 Transaction Type : REQUEST +19:24:36 Received From : +19:24:36 ============================================================================ +19:24:36 FNo. Len. Field Value +19:24:36 ============================================================================ +19:24:36 [ 1] [ 4] [0200] +19:24:36 [ 2] [ 16] [6213544002200589] +19:24:36 [ 3] [ 6] [011000] +19:24:36 [ 4] [ 12] [000100000000] +19:24:36 [ 7] [ 10] [0320192455] +19:24:36 [ 11] [ 6] [211201] +19:24:36 [ 12] [ 6] [191740] +19:24:36 [ 13] [ 4] [0320] +19:24:36 [ 14] [ 4] [4912] +19:24:36 [ 15] [ 4] [0320] +19:24:36 [ 18] [ 4] [6011] +19:24:36 [ 19] [ 3] [418] +19:24:36 [ 22] [ 3] [021] +19:24:36 [ 25] [ 2] [01] +19:24:36 [ 28] [ 9] [D00002000] +19:24:36 [ 32] [ 6] [198901] +19:24:36 [ 35] [ 32] [6213544002200589=491212010058804] +19:24:36 [ 37] [ 12] [507919211201] +19:24:36 [ 41] [ 8] [01652909] +19:24:36 [ 42] [ 15] [000000041652909] +19:24:36 [ 43] [ 40] [JDB ATM LPB 4 VN ] +19:24:36 [ 49] [ 3] [418] +19:24:36 [ 52] [ 16] [10240371F244F0F1] +19:24:36 ============================================================================ +19:24:36 + + +waiting on router queue for slot.... +19:24:36 Sending to : +19:24:36 ============================================================================ +19:24:36 ============================================================================ +19:24:36 Slot Id : <95> +19:24:36 Transaction Type : REQUEST +19:24:36 Received From : +19:24:36 ============================================================================ +19:24:36 FNo. Len. Field Value +19:24:36 ============================================================================ +19:24:36 [ 1] [ 4] [0200] +19:24:36 [ 2] [ 16] [6213544002200589] +19:24:36 [ 3] [ 6] [011000] +19:24:36 [ 4] [ 12] [000100000000] +19:24:36 [ 7] [ 10] [0320192455] +19:24:36 [ 11] [ 6] [211201] +19:24:36 [ 12] [ 6] [191740] +19:24:36 [ 13] [ 4] [0320] +19:24:36 [ 14] [ 4] [4912] +19:24:36 [ 15] [ 4] [0320] +19:24:36 [ 18] [ 4] [6011] +19:24:36 [ 19] [ 3] [418] +19:24:36 [ 22] [ 3] [021] +19:24:36 [ 25] [ 2] [01] +19:24:36 [ 28] [ 9] [D00002000] +19:24:36 [ 32] [ 6] [198901] +19:24:36 [ 35] [ 32] [6213544002200589=491212010058804] +19:24:36 [ 37] [ 12] [507919211201] +19:24:36 [ 41] [ 8] [01652909] +19:24:36 [ 42] [ 15] [000000041652909] +19:24:36 [ 43] [ 40] [JDB ATM LPB 4 VN ] +19:24:36 [ 49] [ 3] [418] +19:24:36 [ 52] [ 16] [9CA8617C3EB166C5] +19:24:36 ============================================================================ +19:24:36 + + +waiting on router queue for slot.... +19:24:36 Sending to : <0> +19:24:36 ============================================================================ +19:24:36 ============================================================================ +19:24:36 Slot Id : <53> +19:24:36 Transaction Type : REQUEST +19:24:36 Received From : +19:24:36 ============================================================================ +19:24:36 FNo. Len. Field Value +19:24:36 ============================================================================ +19:24:36 [ 1] [ 4] [0200] +19:24:36 [ 2] [ 16] [6213543000036292] +19:24:36 [ 3] [ 6] [010000] +19:24:36 [ 4] [ 12] [000200000000] +19:24:36 [ 7] [ 10] [0320122340] +19:24:36 [ 11] [ 6] [271408] +19:24:36 [ 12] [ 6] [192340] +19:24:36 [ 13] [ 4] [0320] +19:24:36 [ 14] [ 4] [4912] +19:24:36 [ 15] [ 4] [0320] +19:24:36 [ 18] [ 4] [6011] +19:24:36 [ 19] [ 3] [418] +19:24:36 [ 22] [ 3] [021] +19:24:36 [ 25] [ 2] [01] +19:24:36 [ 28] [ 9] [D00002000] +19:24:36 [ 32] [ 6] [180893] +19:24:36 [ 35] [ 32] [6213543000036292=491212013629552] +19:24:36 [ 37] [ 12] [507912271408] +19:24:36 [ 41] [ 8] [0362CPSU] +19:24:36 [ 42] [ 15] [999999 ] +19:24:36 [ 43] [ 40] [ATM CHAMPASAK UNIVERSITY LOCATION, Pakse] +19:24:36 [ 49] [ 3] [418] +19:24:36 [ 52] [ 16] [950A061D98F601FE] +19:24:36 ============================================================================ +19:24:36 + + +waiting on router queue for slot.... +19:24:36 Sending to : +19:24:36 ============================================================================ +19:24:36 Sending to : +19:24:36 ============================================================================ +19:24:36 ============================================================================ +19:24:36 Slot Id : <94> +19:24:36 Transaction Type : REQUEST +19:24:36 Received From : +19:24:36 ============================================================================ +19:24:36 FNo. Len. Field Value +19:24:36 ============================================================================ +19:24:36 [ 1] [ 4] [0800] +19:24:36 [ 7] [ 10] [0321023624] +19:24:36 [ 11] [ 6] [193624] +19:24:36 [ 37] [ 12] [57919193624] +19:24:36 [ 70] [ 3] [301] +19:24:36 ============================================================================ +19:24:36 + + +waiting on router queue for slot.... +19:24:36 Sending to : +19:24:36 ============================================================================ +19:24:36 ============================================================================ +19:24:36 Slot Id : <94> +19:24:36 Transaction Type : RESPONSE +19:24:36 Received From : +19:24:36 ============================================================================ +19:24:36 FNo. Len. Field Value +19:24:36 ============================================================================ +19:24:36 [ 1] [ 4] [0810] +19:24:36 [ 7] [ 10] [0321023624] +19:24:36 [ 11] [ 6] [193624] +19:24:36 [ 37] [ 12] [579191936240] +19:24:36 [ 39] [ 2] [00] +19:24:36 [ 70] [ 3] [810] +19:24:36 ============================================================================ +19:24:36 Calculate Source COMM Id = 6 +19:24:36 ============================================================================ +19:24:36 + + +waiting on router queue for slot.... +19:24:36 ============================================================================ +19:24:36 Slot Id : <95> +19:24:36 Transaction Type : RESPONSE +19:24:36 Received From : +19:24:36 ============================================================================ +19:24:36 FNo. Len. Field Value +19:24:36 ============================================================================ +19:24:36 [ 1] [ 4] [0210] +19:24:36 [ 2] [ 16] [6213544002200589] +19:24:36 [ 3] [ 6] [011000] +19:24:36 [ 4] [ 12] [000100000000] +19:24:36 [ 7] [ 10] [0320192455] +19:24:36 [ 11] [ 6] [211201] +19:24:36 [ 12] [ 6] [191740] +19:24:36 [ 13] [ 4] [0320] +19:24:36 [ 15] [ 4] [0320] +19:24:36 [ 18] [ 4] [6011] +19:24:36 [ 19] [ 3] [418] +19:24:36 [ 32] [ 6] [198901] +19:24:36 [ 35] [ 32] [6213544002200589=491212010058804] +19:24:36 [ 37] [ 12] [507919211201] +19:24:36 [ 38] [ 6] [889651] +19:24:36 [ 39] [ 2] [00] +19:24:36 [ 41] [ 8] [01652909] +19:24:36 [ 49] [ 3] [418] +19:24:36 [ 54] [ 40] [1001840C0000003479291002840C000000347929] +19:24:36 ============================================================================ +19:24:36 Sending to : +19:24:36 ============================================================================ +19:24:36 + + +waiting on router queue for slot.... +19:24:36 ============================================================================ +19:24:36 Slot Id : <53> +19:24:36 Transaction Type : REQUEST +19:24:36 Received From : +19:24:36 ============================================================================ +19:24:36 FNo. Len. Field Value +19:24:36 ============================================================================ +19:24:36 [ 1] [ 4] [0200] +19:24:36 [ 2] [ 16] [6213543000036292] +19:24:36 [ 3] [ 6] [010000] +19:24:36 [ 4] [ 12] [000200000000] +19:24:36 [ 7] [ 10] [0320122340] +19:24:36 [ 11] [ 6] [271408] +19:24:36 [ 12] [ 6] [192340] +19:24:36 [ 13] [ 4] [0320] +19:24:36 [ 14] [ 4] [4912] +19:24:36 [ 15] [ 4] [0320] +19:24:36 [ 18] [ 4] [6011] +19:24:36 [ 19] [ 3] [418] +19:24:36 [ 22] [ 3] [021] +19:24:36 [ 25] [ 2] [01] +19:24:36 [ 28] [ 9] [D00002000] +19:24:36 [ 32] [ 6] [180893] +19:24:36 [ 35] [ 32] [6213543000036292=491212013629552] +19:24:36 [ 37] [ 12] [507912271408] +19:24:36 [ 41] [ 8] [0362CPSU] +19:24:36 [ 42] [ 15] [999999 ] +19:24:36 [ 43] [ 40] [ATM CHAMPASAK UNIVERSITY LOCATION, Pakse] +19:24:36 [ 49] [ 3] [418] +19:24:36 [ 52] [ 16] [950A061D98F601FE] +19:24:36 ============================================================================ +19:24:36 + + +waiting on router queue for slot.... +19:24:36 Sending to : +19:24:36 ============================================================================ +19:24:36 ============================================================================ +19:24:36 Slot Id : <53> +19:24:36 Transaction Type : REQUEST +19:24:36 Received From : +19:24:36 ============================================================================ +19:24:36 FNo. Len. Field Value +19:24:36 ============================================================================ +19:24:36 [ 1] [ 4] [0200] +19:24:36 [ 2] [ 16] [6213543000036292] +19:24:36 [ 3] [ 6] [010000] +19:24:36 [ 4] [ 12] [000200000000] +19:24:36 [ 7] [ 10] [0320122340] +19:24:36 [ 11] [ 6] [271408] +19:24:36 [ 12] [ 6] [192340] +19:24:36 [ 13] [ 4] [0320] +19:24:36 [ 14] [ 4] [4912] +19:24:36 [ 15] [ 4] [0320] +19:24:36 [ 18] [ 4] [6011] +19:24:36 [ 19] [ 3] [418] +19:24:36 [ 22] [ 3] [021] +19:24:36 [ 25] [ 2] [01] +19:24:36 [ 28] [ 9] [D00002000] +19:24:36 [ 32] [ 6] [180893] +19:24:36 [ 35] [ 32] [6213543000036292=491212013629552] +19:24:36 [ 37] [ 12] [507912271408] +19:24:36 [ 41] [ 8] [0362CPSU] +19:24:36 [ 42] [ 15] [999999 ] +19:24:36 [ 43] [ 40] [ATM CHAMPASAK UNIVERSITY LOCATION, Pakse] +19:24:36 [ 49] [ 3] [418] +19:24:36 [ 52] [ 16] [FE51F69B6C36CE1B] +19:24:36 ============================================================================ +19:24:36 + + +waiting on router queue for slot.... +19:24:36 Sending to : <0> +19:24:36 ============================================================================ +19:24:37 ============================================================================ +19:24:37 Slot Id : <95> +19:24:37 Transaction Type : RESPONSE +19:24:37 Received From : +19:24:37 ============================================================================ +19:24:37 FNo. Len. Field Value +19:24:37 ============================================================================ +19:24:37 [ 1] [ 4] [0210] +19:24:37 [ 2] [ 16] [6213544002200589] +19:24:37 [ 3] [ 6] [011000] +19:24:37 [ 4] [ 12] [000100000000] +19:24:37 [ 7] [ 10] [0320192455] +19:24:37 [ 11] [ 6] [211201] +19:24:37 [ 12] [ 6] [191740] +19:24:37 [ 13] [ 4] [0320] +19:24:37 [ 15] [ 4] [0320] +19:24:37 [ 18] [ 4] [6011] +19:24:37 [ 19] [ 3] [418] +19:24:37 [ 32] [ 6] [198901] +19:24:37 [ 35] [ 32] [6213544002200589=491212010058804] +19:24:37 [ 37] [ 12] [507919211201] +19:24:37 [ 38] [ 6] [889651] +19:24:37 [ 39] [ 2] [00] +19:24:37 [ 41] [ 8] [01652909] +19:24:37 [ 49] [ 3] [418] +19:24:37 [ 54] [ 40] [1001840C0000003479291002840C000000347929] +19:24:37 ============================================================================ +19:24:37 Calculate Source COMM Id = 5 +19:24:37 ============================================================================ +19:24:37 + + +waiting on router queue for slot.... +19:24:38 ============================================================================ +19:24:38 Slot Id : <53> +19:24:38 Transaction Type : RESPONSE +19:24:38 Received From : +19:24:38 ============================================================================ +19:24:38 FNo. Len. Field Value +19:24:38 ============================================================================ +19:24:38 [ 1] [ 4] [0210] +19:24:38 [ 2] [ 16] [6213543000036292] +19:24:38 [ 3] [ 6] [010000] +19:24:38 [ 4] [ 12] [000200000000] +19:24:38 [ 7] [ 10] [0320122340] +19:24:38 [ 11] [ 6] [271408] +19:24:38 [ 12] [ 6] [192340] +19:24:38 [ 13] [ 4] [0320] +19:24:38 [ 15] [ 4] [0320] +19:24:38 [ 18] [ 4] [6011] +19:24:38 [ 19] [ 3] [418] +19:24:38 [ 22] [ 3] [021] +19:24:38 [ 32] [ 6] [180893] +19:24:38 [ 35] [ 32] [6213543000036292=491212013629552] +19:24:38 [ 37] [ 12] [507912271408] +19:24:38 [ 39] [ 2] [61] +19:24:38 [ 41] [ 8] [0362CPSU] +19:24:38 [ 49] [ 3] [418] +19:24:38 ============================================================================ +19:24:38 Sending to : +19:24:38 ============================================================================ +19:24:38 + + +waiting on router queue for slot.... +19:24:39 ============================================================================ +19:24:39 Slot Id : <53> +19:24:39 Transaction Type : RESPONSE +19:24:39 Received From : +19:24:39 ============================================================================ +19:24:39 FNo. Len. Field Value +19:24:39 ============================================================================ +19:24:39 [ 1] [ 4] [0210] +19:24:39 [ 2] [ 16] [6213543000036292] +19:24:39 [ 3] [ 6] [010000] +19:24:39 [ 4] [ 12] [000200000000] +19:24:39 [ 7] [ 10] [0320122340] +19:24:39 [ 11] [ 6] [271408] +19:24:39 [ 12] [ 6] [192340] +19:24:39 [ 13] [ 4] [0320] +19:24:39 [ 15] [ 4] [0320] +19:24:39 [ 18] [ 4] [6011] +19:24:39 [ 19] [ 3] [418] +19:24:39 [ 22] [ 3] [021] +19:24:39 [ 32] [ 6] [180893] +19:24:39 [ 35] [ 32] [6213543000036292=491212013629552] +19:24:39 [ 37] [ 12] [507912271408] +19:24:39 [ 39] [ 2] [61] +19:24:39 [ 41] [ 8] [0362CPSU] +19:24:39 [ 49] [ 3] [418] +19:24:39 ============================================================================ +19:24:39 Calculate Source COMM Id = 2 +19:24:39 ============================================================================ +19:24:39 + + +waiting on router queue for slot.... +19:24:50 ============================================================================ +19:24:50 Slot Id : <134> +19:24:50 Transaction Type : REQUEST +19:24:50 Received From : +19:24:50 ============================================================================ +19:24:50 FNo. Len. Field Value +19:24:50 ============================================================================ +19:24:50 [ 1] [ 4] [0800] +19:24:50 [ 7] [ 10] [0320122356] +19:24:50 [ 11] [ 6] [157939] +19:24:50 [ 70] [ 3] [301] +19:24:50 ============================================================================ +19:24:50 + + +waiting on router queue for slot.... +19:24:50 Sending to : +19:24:50 ============================================================================ +19:24:50 ============================================================================ +19:24:50 Slot Id : <134> +19:24:50 Transaction Type : RESPONSE +19:24:50 Received From : +19:24:50 ============================================================================ +19:24:50 FNo. Len. Field Value +19:24:50 ============================================================================ +19:24:50 [ 1] [ 4] [0810] +19:24:50 [ 7] [ 10] [0320122356] +19:24:50 [ 11] [ 6] [157939] +19:24:50 [ 39] [ 2] [00] +19:24:50 [ 70] [ 3] [301] +19:24:50 ============================================================================ +19:24:50 Calculate Source COMM Id = 2 +19:24:50 ============================================================================ +19:24:50 + + +waiting on router queue for slot.... +19:24:54 ============================================================================ +19:24:54 Slot Id : <96> +19:24:54 Transaction Type : REQUEST +19:24:54 Received From : +19:24:54 ============================================================================ +19:24:54 FNo. Len. Field Value +19:24:54 ============================================================================ +19:24:54 [ 1] [ 4] [0200] +19:24:54 [ 2] [ 16] [6688990040166181] +19:24:54 [ 3] [ 6] [011000] +19:24:54 [ 4] [ 12] [000030000000] +19:24:54 [ 7] [ 10] [0320192449] +19:24:54 [ 11] [ 6] [836160] +19:24:54 [ 12] [ 6] [192449] +19:24:54 [ 13] [ 4] [0320] +19:24:54 [ 15] [ 4] [0320] +19:24:54 [ 18] [ 4] [6011] +19:24:54 [ 22] [ 3] [900] +19:24:54 [ 25] [ 2] [02] +19:24:54 [ 28] [ 9] [D00002000] +19:24:54 [ 32] [ 6] [621354] +19:24:54 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:24:54 [ 37] [ 12] [507903525200] +19:24:54 [ 41] [ 8] [09000900] +19:24:54 [ 42] [ 15] [NATIVE ] +19:24:54 [ 43] [ 40] [VTC Branch03 ChanthaboulyLAO] +19:24:54 [ 49] [ 3] [418] +19:24:54 [ 52] [ 16] [1AB6DE88DCEEFEEE] +19:24:54 ============================================================================ +19:24:54 + + +waiting on router queue for slot.... +19:24:54 Sending to : +19:24:54 ============================================================================ +19:24:54 Sending to : +19:24:54 ============================================================================ +19:24:54 ============================================================================ +19:24:54 Slot Id : <96> +19:24:54 Transaction Type : REQUEST +19:24:54 Received From : +19:24:54 ============================================================================ +19:24:54 FNo. Len. Field Value +19:24:54 ============================================================================ +19:24:54 [ 1] [ 4] [0200] +19:24:54 [ 2] [ 16] [6688990040166181] +19:24:54 [ 3] [ 6] [011000] +19:24:54 [ 4] [ 12] [000030000000] +19:24:54 [ 7] [ 10] [0320192449] +19:24:54 [ 11] [ 6] [836160] +19:24:54 [ 12] [ 6] [192449] +19:24:54 [ 13] [ 4] [0320] +19:24:54 [ 15] [ 4] [0320] +19:24:54 [ 18] [ 4] [6011] +19:24:54 [ 22] [ 3] [900] +19:24:54 [ 25] [ 2] [02] +19:24:54 [ 28] [ 9] [D00002000] +19:24:54 [ 32] [ 6] [621354] +19:24:54 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:24:54 [ 37] [ 12] [507903525200] +19:24:54 [ 41] [ 8] [09000900] +19:24:54 [ 42] [ 15] [NATIVE ] +19:24:54 [ 43] [ 40] [VTC Branch03 ChanthaboulyLAO] +19:24:54 [ 49] [ 3] [418] +19:24:54 [ 52] [ 16] [1AB6DE88DCEEFEEE] +19:24:54 ============================================================================ +19:24:54 + + +waiting on router queue for slot.... +19:24:54 Sending to : +19:24:54 ============================================================================ +19:24:54 ============================================================================ +19:24:54 Slot Id : <96> +19:24:54 Transaction Type : REQUEST +19:24:54 Received From : +19:24:54 ============================================================================ +19:24:54 FNo. Len. Field Value +19:24:54 ============================================================================ +19:24:54 [ 1] [ 4] [0200] +19:24:54 [ 2] [ 16] [6688990040166181] +19:24:54 [ 3] [ 6] [011000] +19:24:54 [ 4] [ 12] [000030000000] +19:24:54 [ 7] [ 10] [0320192449] +19:24:54 [ 11] [ 6] [836160] +19:24:54 [ 12] [ 6] [192449] +19:24:54 [ 13] [ 4] [0320] +19:24:54 [ 15] [ 4] [0320] +19:24:54 [ 18] [ 4] [6011] +19:24:54 [ 22] [ 3] [900] +19:24:54 [ 25] [ 2] [02] +19:24:54 [ 28] [ 9] [D00002000] +19:24:54 [ 32] [ 6] [621354] +19:24:54 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:24:54 [ 37] [ 12] [507903525200] +19:24:54 [ 41] [ 8] [09000900] +19:24:54 [ 42] [ 15] [NATIVE ] +19:24:54 [ 43] [ 40] [VTC Branch03 ChanthaboulyLAO] +19:24:54 [ 49] [ 3] [418] +19:24:54 [ 52] [ 16] [8B6C4DFA86FF2ACE] +19:24:54 ============================================================================ +19:24:54 + + +waiting on router queue for slot.... +19:24:54 Sending to : <4> +19:24:54 ============================================================================ +19:24:54 ============================================================================ +19:24:54 Slot Id : <96> +19:24:54 Transaction Type : RESPONSE +19:24:54 Received From : +19:24:54 ============================================================================ +19:24:54 FNo. Len. Field Value +19:24:54 ============================================================================ +19:24:54 [ 1] [ 4] [0210] +19:24:54 [ 2] [ 16] [6688990040166181] +19:24:54 [ 3] [ 6] [011000] +19:24:54 [ 4] [ 12] [000030000000] +19:24:54 [ 7] [ 10] [0320192449] +19:24:54 [ 11] [ 6] [836160] +19:24:54 [ 12] [ 6] [192449] +19:24:54 [ 13] [ 4] [0320] +19:24:54 [ 15] [ 4] [0320] +19:24:54 [ 18] [ 4] [6011] +19:24:54 [ 22] [ 3] [021] +19:24:54 [ 32] [ 6] [621354] +19:24:54 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:24:54 [ 37] [ 12] [507903525200] +19:24:54 [ 38] [ 6] [192244] +19:24:54 [ 39] [ 2] [75] +19:24:54 [ 41] [ 8] [09000900] +19:24:54 [ 49] [ 3] [418] +19:24:54 ============================================================================ +19:24:54 Sending to : +19:24:54 ============================================================================ +19:24:54 + + +waiting on router queue for slot.... +19:24:55 ============================================================================ +19:24:55 Slot Id : <96> +19:24:55 Transaction Type : RESPONSE +19:24:55 Received From : +19:24:55 ============================================================================ +19:24:55 FNo. Len. Field Value +19:24:55 ============================================================================ +19:24:55 [ 1] [ 4] [0210] +19:24:55 [ 2] [ 16] [6688990040166181] +19:24:55 [ 3] [ 6] [011000] +19:24:55 [ 4] [ 12] [000030000000] +19:24:55 [ 7] [ 10] [0320192449] +19:24:55 [ 11] [ 6] [836160] +19:24:55 [ 12] [ 6] [192449] +19:24:55 [ 13] [ 4] [0320] +19:24:55 [ 15] [ 4] [0320] +19:24:55 [ 18] [ 4] [6011] +19:24:55 [ 22] [ 3] [021] +19:24:55 [ 32] [ 6] [621354] +19:24:55 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:24:55 [ 37] [ 12] [507903525200] +19:24:55 [ 38] [ 6] [192244] +19:24:55 [ 39] [ 2] [75] +19:24:55 [ 41] [ 8] [09000900] +19:24:55 [ 49] [ 3] [418] +19:24:55 ============================================================================ +19:24:55 Calculate Source COMM Id = 0 +19:24:55 ============================================================================ +19:24:55 + + +waiting on router queue for slot.... +19:24:56 ============================================================================ +19:24:56 Slot Id : <103> +19:24:56 Transaction Type : REQUEST +19:24:56 Received From : +19:24:56 ============================================================================ +19:24:56 FNo. Len. Field Value +19:24:56 ============================================================================ +19:24:56 [ 1] [ 4] [0800] +19:24:56 [ 7] [ 10] [0320123242] +19:24:56 [ 11] [ 6] [077047] +19:24:56 [ 37] [ 12] [57919077047] +19:24:56 [ 70] [ 3] [301] +19:24:56 ============================================================================ +19:24:56 + + +waiting on router queue for slot.... +19:24:56 Sending to : +19:24:56 ============================================================================ +19:24:56 ============================================================================ +19:24:56 Slot Id : <103> +19:24:56 Transaction Type : RESPONSE +19:24:56 Received From : +19:24:56 ============================================================================ +19:24:56 FNo. Len. Field Value +19:24:56 ============================================================================ +19:24:56 [ 1] [ 4] [0810] +19:24:56 [ 7] [ 10] [0320123242] +19:24:56 [ 11] [ 6] [077047] +19:24:56 [ 37] [ 12] [579190770470] +19:24:56 [ 39] [ 2] [00] +19:24:56 [ 70] [ 3] [810] +19:24:56 ============================================================================ +19:24:56 Calculate Source COMM Id = 1 +19:24:56 ============================================================================ +19:24:56 + + +waiting on router queue for slot.... +19:25:00 ============================================================================ +19:25:00 Slot Id : <125> +19:25:00 Transaction Type : REQUEST +19:25:00 Received From : +19:25:00 ============================================================================ +19:25:00 FNo. Len. Field Value +19:25:00 ============================================================================ +19:25:00 [ 1] [ 4] [0800] +19:25:00 [ 7] [ 10] [0320122407] +19:25:00 [ 11] [ 6] [157940] +19:25:00 [ 70] [ 3] [301] +19:25:00 ============================================================================ +19:25:00 + + +waiting on router queue for slot.... +19:25:00 Sending to : +19:25:00 ============================================================================ +19:25:00 ============================================================================ +19:25:00 Slot Id : <125> +19:25:00 Transaction Type : RESPONSE +19:25:00 Received From : +19:25:00 ============================================================================ +19:25:00 FNo. Len. Field Value +19:25:00 ============================================================================ +19:25:00 [ 1] [ 4] [0810] +19:25:00 [ 7] [ 10] [0320122407] +19:25:00 [ 11] [ 6] [157940] +19:25:00 [ 39] [ 2] [00] +19:25:00 [ 70] [ 3] [301] +19:25:00 ============================================================================ +19:25:00 Calculate Source COMM Id = 2 +19:25:00 ============================================================================ +19:25:00 + + +waiting on router queue for slot.... +19:25:03 ============================================================================ +19:25:03 Slot Id : <101> +19:25:03 Transaction Type : REQUEST +19:25:03 Received From : +19:25:03 ============================================================================ +19:25:03 FNo. Len. Field Value +19:25:03 ============================================================================ +19:25:03 [ 1] [ 4] [0200] +19:25:03 [ 2] [ 16] [6213541000672033] +19:25:03 [ 3] [ 6] [011000] +19:25:03 [ 4] [ 12] [000100000000] +19:25:03 [ 7] [ 10] [0320192523] +19:25:03 [ 11] [ 6] [211210] +19:25:03 [ 12] [ 6] [191327] +19:25:03 [ 13] [ 4] [0320] +19:25:03 [ 14] [ 4] [4912] +19:25:03 [ 15] [ 4] [0320] +19:25:03 [ 18] [ 4] [6011] +19:25:03 [ 19] [ 3] [418] +19:25:03 [ 22] [ 3] [021] +19:25:03 [ 25] [ 2] [01] +19:25:03 [ 28] [ 9] [D00002000] +19:25:03 [ 32] [ 6] [198901] +19:25:03 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:03 [ 37] [ 12] [507919211210] +19:25:03 [ 41] [ 8] [01529014] +19:25:03 [ 42] [ 15] [000000041529014] +19:25:03 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:25:03 [ 49] [ 3] [418] +19:25:03 [ 52] [ 16] [DC9D97543C45EABB] +19:25:03 ============================================================================ +19:25:03 + + +waiting on router queue for slot.... +19:25:03 Sending to : +19:25:03 ============================================================================ +19:25:03 Sending to : +19:25:03 ============================================================================ +19:25:03 ============================================================================ +19:25:03 Slot Id : <101> +19:25:03 Transaction Type : REQUEST +19:25:03 Received From : +19:25:03 ============================================================================ +19:25:03 FNo. Len. Field Value +19:25:03 ============================================================================ +19:25:03 [ 1] [ 4] [0200] +19:25:03 [ 2] [ 16] [6213541000672033] +19:25:03 [ 3] [ 6] [011000] +19:25:03 [ 4] [ 12] [000100000000] +19:25:03 [ 7] [ 10] [0320192523] +19:25:03 [ 11] [ 6] [211210] +19:25:03 [ 12] [ 6] [191327] +19:25:03 [ 13] [ 4] [0320] +19:25:03 [ 14] [ 4] [4912] +19:25:03 [ 15] [ 4] [0320] +19:25:03 [ 18] [ 4] [6011] +19:25:03 [ 19] [ 3] [418] +19:25:03 [ 22] [ 3] [021] +19:25:03 [ 25] [ 2] [01] +19:25:03 [ 28] [ 9] [D00002000] +19:25:03 [ 32] [ 6] [198901] +19:25:03 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:03 [ 37] [ 12] [507919211210] +19:25:03 [ 41] [ 8] [01529014] +19:25:03 [ 42] [ 15] [000000041529014] +19:25:03 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:25:03 [ 49] [ 3] [418] +19:25:03 [ 52] [ 16] [DC9D97543C45EABB] +19:25:03 ============================================================================ +19:25:03 + + +waiting on router queue for slot.... +19:25:03 Sending to : +19:25:03 ============================================================================ +19:25:03 ============================================================================ +19:25:03 Slot Id : <101> +19:25:03 Transaction Type : REQUEST +19:25:03 Received From : +19:25:03 ============================================================================ +19:25:03 FNo. Len. Field Value +19:25:03 ============================================================================ +19:25:03 [ 1] [ 4] [0200] +19:25:03 [ 2] [ 16] [6213541000672033] +19:25:03 [ 3] [ 6] [011000] +19:25:03 [ 4] [ 12] [000100000000] +19:25:03 [ 7] [ 10] [0320192523] +19:25:03 [ 11] [ 6] [211210] +19:25:03 [ 12] [ 6] [191327] +19:25:03 [ 13] [ 4] [0320] +19:25:03 [ 14] [ 4] [4912] +19:25:03 [ 15] [ 4] [0320] +19:25:03 [ 18] [ 4] [6011] +19:25:03 [ 19] [ 3] [418] +19:25:03 [ 22] [ 3] [021] +19:25:03 [ 25] [ 2] [01] +19:25:03 [ 28] [ 9] [D00002000] +19:25:03 [ 32] [ 6] [198901] +19:25:03 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:03 [ 37] [ 12] [507919211210] +19:25:03 [ 41] [ 8] [01529014] +19:25:03 [ 42] [ 15] [000000041529014] +19:25:03 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:25:03 [ 49] [ 3] [418] +19:25:03 [ 52] [ 16] [3D520585CA77A566] +19:25:03 ============================================================================ +19:25:03 + + +waiting on router queue for slot.... +19:25:03 Sending to : <0> +19:25:03 ============================================================================ +19:25:04 ============================================================================ +19:25:04 Slot Id : <101> +19:25:04 Transaction Type : RESPONSE +19:25:04 Received From : +19:25:04 ============================================================================ +19:25:04 FNo. Len. Field Value +19:25:04 ============================================================================ +19:25:04 [ 1] [ 4] [0210] +19:25:04 [ 2] [ 16] [6213541000672033] +19:25:04 [ 3] [ 6] [011000] +19:25:04 [ 4] [ 12] [000100000000] +19:25:04 [ 7] [ 10] [0320192523] +19:25:04 [ 11] [ 6] [211210] +19:25:04 [ 12] [ 6] [191327] +19:25:04 [ 13] [ 4] [0320] +19:25:04 [ 15] [ 4] [0320] +19:25:04 [ 18] [ 4] [6011] +19:25:04 [ 19] [ 3] [418] +19:25:04 [ 32] [ 6] [198901] +19:25:04 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:04 [ 37] [ 12] [507919211210] +19:25:04 [ 38] [ 6] [415980] +19:25:04 [ 39] [ 2] [00] +19:25:04 [ 41] [ 8] [01529014] +19:25:04 [ 49] [ 3] [418] +19:25:04 [ 54] [ 40] [1001418C0005251648471002418C000525164847] +19:25:04 ============================================================================ +19:25:04 Sending to : +19:25:04 ============================================================================ +19:25:04 + + +waiting on router queue for slot.... +19:25:04 ============================================================================ +19:25:04 Slot Id : <70> +19:25:04 Transaction Type : REQUEST +19:25:04 Received From : +19:25:04 ============================================================================ +19:25:04 FNo. Len. Field Value +19:25:04 ============================================================================ +19:25:04 [ 1] [ 4] [0200] +19:25:04 [ 2] [ 16] [6213544001770608] +19:25:04 [ 3] [ 6] [010000] +19:25:04 [ 4] [ 12] [000005000000] +19:25:04 [ 7] [ 10] [0320192253] +19:25:04 [ 11] [ 6] [956096] +19:25:04 [ 12] [ 6] [192253] +19:25:04 [ 13] [ 4] [0320] +19:25:04 [ 15] [ 4] [0320] +19:25:04 [ 18] [ 4] [6011] +19:25:04 [ 19] [ 3] [418] +19:25:04 [ 22] [ 3] [021] +19:25:04 [ 25] [ 2] [01] +19:25:04 [ 28] [ 9] [D00002000] +19:25:04 [ 32] [ 6] [668899] +19:25:04 [ 35] [ 32] [6213544001770608=491212017060859] +19:25:04 [ 37] [ 12] [507901203992] +19:25:04 [ 41] [ 8] [03020012] +19:25:04 [ 42] [ 15] [APT ] +19:25:04 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +19:25:04 [ 49] [ 3] [418] +19:25:04 [ 52] [ 16] [6D6535780199F981] +19:25:04 ============================================================================ +19:25:04 + + +waiting on router queue for slot.... +19:25:04 Sending to : +19:25:04 ============================================================================ +19:25:04 Sending to : +19:25:04 ============================================================================ +19:25:04 ============================================================================ +19:25:04 Slot Id : <70> +19:25:04 Transaction Type : REQUEST +19:25:04 Received From : +19:25:04 ============================================================================ +19:25:04 FNo. Len. Field Value +19:25:04 ============================================================================ +19:25:04 [ 1] [ 4] [0200] +19:25:04 [ 2] [ 16] [6213544001770608] +19:25:04 [ 3] [ 6] [010000] +19:25:04 [ 4] [ 12] [000005000000] +19:25:04 [ 7] [ 10] [0320192253] +19:25:04 [ 11] [ 6] [956096] +19:25:04 [ 12] [ 6] [192253] +19:25:04 [ 13] [ 4] [0320] +19:25:04 [ 15] [ 4] [0320] +19:25:04 [ 18] [ 4] [6011] +19:25:04 [ 19] [ 3] [418] +19:25:04 [ 22] [ 3] [021] +19:25:04 [ 25] [ 2] [01] +19:25:04 [ 28] [ 9] [D00002000] +19:25:04 [ 32] [ 6] [668899] +19:25:04 [ 35] [ 32] [6213544001770608=491212017060859] +19:25:04 [ 37] [ 12] [507901203992] +19:25:04 [ 41] [ 8] [03020012] +19:25:04 [ 42] [ 15] [APT ] +19:25:04 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +19:25:04 [ 49] [ 3] [418] +19:25:04 [ 52] [ 16] [6D6535780199F981] +19:25:04 ============================================================================ +19:25:04 + + +waiting on router queue for slot.... +19:25:04 Sending to : +19:25:04 ============================================================================ +19:25:04 ============================================================================ +19:25:04 Slot Id : <70> +19:25:04 Transaction Type : REQUEST +19:25:04 Received From : +19:25:04 ============================================================================ +19:25:04 FNo. Len. Field Value +19:25:04 ============================================================================ +19:25:04 [ 1] [ 4] [0200] +19:25:04 [ 2] [ 16] [6213544001770608] +19:25:04 [ 3] [ 6] [010000] +19:25:04 [ 4] [ 12] [000005000000] +19:25:04 [ 7] [ 10] [0320192253] +19:25:04 [ 11] [ 6] [956096] +19:25:04 [ 12] [ 6] [192253] +19:25:04 [ 13] [ 4] [0320] +19:25:04 [ 15] [ 4] [0320] +19:25:04 [ 18] [ 4] [6011] +19:25:04 [ 19] [ 3] [418] +19:25:04 [ 22] [ 3] [021] +19:25:04 [ 25] [ 2] [01] +19:25:04 [ 28] [ 9] [D00002000] +19:25:04 [ 32] [ 6] [668899] +19:25:04 [ 35] [ 32] [6213544001770608=491212017060859] +19:25:04 [ 37] [ 12] [507901203992] +19:25:04 [ 41] [ 8] [03020012] +19:25:04 [ 42] [ 15] [APT ] +19:25:04 [ 43] [ 40] [ HUAYHONG MARKET HUAYHONG ] +19:25:04 [ 49] [ 3] [418] +19:25:04 [ 52] [ 16] [F05A884C69373ABC] +19:25:04 ============================================================================ +19:25:04 + + +waiting on router queue for slot.... +19:25:04 Sending to : <0> +19:25:04 ============================================================================ +19:25:05 ============================================================================ +19:25:05 Slot Id : <70> +19:25:05 Transaction Type : RESPONSE +19:25:05 Received From : +19:25:05 ============================================================================ +19:25:05 FNo. Len. Field Value +19:25:05 ============================================================================ +19:25:05 [ 1] [ 4] [0210] +19:25:05 [ 2] [ 16] [6213544001770608] +19:25:05 [ 3] [ 6] [010000] +19:25:05 [ 4] [ 12] [000005000000] +19:25:05 [ 7] [ 10] [0320192253] +19:25:05 [ 11] [ 6] [956096] +19:25:05 [ 12] [ 6] [192253] +19:25:05 [ 13] [ 4] [0320] +19:25:05 [ 15] [ 4] [0320] +19:25:05 [ 18] [ 4] [6011] +19:25:05 [ 19] [ 3] [418] +19:25:05 [ 32] [ 6] [668899] +19:25:05 [ 35] [ 32] [6213544001770608=491212017060859] +19:25:05 [ 37] [ 12] [507901203992] +19:25:05 [ 38] [ 6] [956096] +19:25:05 [ 39] [ 2] [51] +19:25:05 [ 41] [ 8] [03020012] +19:25:05 [ 49] [ 3] [418] +19:25:05 [ 54] [ 40] [0001840C0000000013020002840C000000001302] +19:25:05 ============================================================================ +19:25:05 Sending to : +19:25:05 ============================================================================ +19:25:05 + + +waiting on router queue for slot.... +19:25:05 ============================================================================ +19:25:05 Slot Id : <101> +19:25:05 Transaction Type : RESPONSE +19:25:05 Received From : +19:25:05 ============================================================================ +19:25:05 FNo. Len. Field Value +19:25:05 ============================================================================ +19:25:05 [ 1] [ 4] [0210] +19:25:05 [ 2] [ 16] [6213541000672033] +19:25:05 [ 3] [ 6] [011000] +19:25:05 [ 4] [ 12] [000100000000] +19:25:05 [ 7] [ 10] [0320192523] +19:25:05 [ 11] [ 6] [211210] +19:25:05 [ 12] [ 6] [191327] +19:25:05 [ 13] [ 4] [0320] +19:25:05 [ 15] [ 4] [0320] +19:25:05 [ 18] [ 4] [6011] +19:25:05 [ 19] [ 3] [418] +19:25:05 [ 32] [ 6] [198901] +19:25:05 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:05 [ 37] [ 12] [507919211210] +19:25:05 [ 38] [ 6] [415980] +19:25:05 [ 39] [ 2] [00] +19:25:05 [ 41] [ 8] [01529014] +19:25:05 [ 49] [ 3] [418] +19:25:05 [ 54] [ 40] [1001418C0005251648471002418C000525164847] +19:25:05 ============================================================================ +19:25:05 Calculate Source COMM Id = 5 +19:25:05 ============================================================================ +19:25:05 + + +waiting on router queue for slot.... +19:25:06 ============================================================================ +19:25:06 Slot Id : <70> +19:25:06 Transaction Type : RESPONSE +19:25:06 Received From : +19:25:06 ============================================================================ +19:25:06 FNo. Len. Field Value +19:25:06 ============================================================================ +19:25:06 [ 1] [ 4] [0210] +19:25:06 [ 2] [ 16] [6213544001770608] +19:25:06 [ 3] [ 6] [010000] +19:25:06 [ 4] [ 12] [000005000000] +19:25:06 [ 7] [ 10] [0320192253] +19:25:06 [ 11] [ 6] [956096] +19:25:06 [ 12] [ 6] [192253] +19:25:06 [ 13] [ 4] [0320] +19:25:06 [ 15] [ 4] [0320] +19:25:06 [ 18] [ 4] [6011] +19:25:06 [ 19] [ 3] [418] +19:25:06 [ 32] [ 6] [668899] +19:25:06 [ 35] [ 32] [6213544001770608=491212017060859] +19:25:06 [ 37] [ 12] [507901203992] +19:25:06 [ 38] [ 6] [956096] +19:25:06 [ 39] [ 2] [51] +19:25:06 [ 41] [ 8] [03020012] +19:25:06 [ 49] [ 3] [418] +19:25:06 [ 54] [ 40] [0001840C0000000013020002840C000000001302] +19:25:06 ============================================================================ +19:25:06 Calculate Source COMM Id = 4 +19:25:06 ============================================================================ +19:25:06 + + +waiting on router queue for slot.... +19:25:11 ============================================================================ +19:25:11 Slot Id : <77> +19:25:11 Transaction Type : REQUEST +19:25:11 Received From : +19:25:11 ============================================================================ +19:25:11 FNo. Len. Field Value +19:25:11 ============================================================================ +19:25:11 [ 1] [ 4] [0800] +19:25:11 [ 7] [ 10] [0320122417] +19:25:11 [ 11] [ 6] [157941] +19:25:11 [ 70] [ 3] [301] +19:25:11 ============================================================================ +19:25:11 + + +waiting on router queue for slot.... +19:25:11 Sending to : +19:25:11 ============================================================================ +19:25:11 ============================================================================ +19:25:11 Slot Id : <77> +19:25:11 Transaction Type : RESPONSE +19:25:11 Received From : +19:25:11 ============================================================================ +19:25:11 FNo. Len. Field Value +19:25:11 ============================================================================ +19:25:11 [ 1] [ 4] [0810] +19:25:11 [ 7] [ 10] [0320122417] +19:25:11 [ 11] [ 6] [157941] +19:25:11 [ 39] [ 2] [00] +19:25:11 [ 70] [ 3] [301] +19:25:11 ============================================================================ +19:25:11 Calculate Source COMM Id = 2 +19:25:11 ============================================================================ +19:25:11 + + +waiting on router queue for slot.... +19:25:13 ============================================================================ +19:25:13 Slot Id : <102> +19:25:13 Transaction Type : REQUEST +19:25:13 Received From : +19:25:13 ============================================================================ +19:25:13 FNo. Len. Field Value +19:25:13 ============================================================================ +19:25:13 [ 1] [ 4] [0800] +19:25:13 [ 2] [ 5] [02531] +19:25:13 [ 3] [ 6] [579198] +19:25:13 [ 7] [ 10] [0320122513] +19:25:13 [ 11] [ 6] [807539] +19:25:13 [ 15] [ 10] [0320122513] +19:25:13 [ 37] [ 11] [57919807539] +19:25:13 [ 70] [ 3] [001] +19:25:13 ============================================================================ +19:25:13 + + +waiting on router queue for slot.... +19:25:13 ============================================================================ +19:25:13 Slot Id : <102> +19:25:13 Transaction Type : RESPONSE +19:25:13 Received From : +19:25:13 ============================================================================ +19:25:13 FNo. Len. Field Value +19:25:13 ============================================================================ +19:25:13 [ 1] [ 4] [0810] +19:25:13 [ 7] [ 10] [0320122513] +19:25:13 [ 11] [ 6] [807539] +19:25:13 [ 15] [ 4] [0320] +19:25:13 [ 37] [ 12] [57919807539] +19:25:13 [ 39] [ 2] [00] +19:25:13 [ 70] [ 3] [001] +19:25:13 ============================================================================ +19:25:13 Sending to : +19:25:13 ============================================================================ +19:25:13 + + +waiting on router queue for slot.... +19:25:21 ============================================================================ +19:25:21 Slot Id : <109> +19:25:21 Transaction Type : REQUEST +19:25:21 Received From : +19:25:21 ============================================================================ +19:25:21 FNo. Len. Field Value +19:25:21 ============================================================================ +19:25:21 [ 1] [ 4] [0800] +19:25:21 [ 7] [ 10] [0320122427] +19:25:21 [ 11] [ 6] [157942] +19:25:21 [ 70] [ 3] [301] +19:25:21 ============================================================================ +19:25:21 + + +waiting on router queue for slot.... +19:25:21 Sending to : +19:25:21 ============================================================================ +19:25:21 ============================================================================ +19:25:21 Slot Id : <109> +19:25:21 Transaction Type : RESPONSE +19:25:21 Received From : +19:25:21 ============================================================================ +19:25:21 FNo. Len. Field Value +19:25:21 ============================================================================ +19:25:21 [ 1] [ 4] [0810] +19:25:21 [ 7] [ 10] [0320122427] +19:25:21 [ 11] [ 6] [157942] +19:25:21 [ 39] [ 2] [00] +19:25:21 [ 70] [ 3] [301] +19:25:21 ============================================================================ +19:25:21 Calculate Source COMM Id = 2 +19:25:21 ============================================================================ +19:25:21 + + +waiting on router queue for slot.... +19:25:27 ============================================================================ +19:25:27 Slot Id : <85> +19:25:27 Transaction Type : REQUEST +19:25:27 Received From : +19:25:27 ============================================================================ +19:25:27 FNo. Len. Field Value +19:25:27 ============================================================================ +19:25:27 [ 1] [ 4] [0200] +19:25:27 [ 2] [ 16] [6213541000672033] +19:25:27 [ 3] [ 6] [011000] +19:25:27 [ 4] [ 12] [000100000000] +19:25:27 [ 7] [ 10] [0320192547] +19:25:27 [ 11] [ 6] [211218] +19:25:27 [ 12] [ 6] [191351] +19:25:27 [ 13] [ 4] [0320] +19:25:27 [ 14] [ 4] [4912] +19:25:27 [ 15] [ 4] [0320] +19:25:27 [ 18] [ 4] [6011] +19:25:27 [ 19] [ 3] [418] +19:25:27 [ 22] [ 3] [021] +19:25:27 [ 25] [ 2] [01] +19:25:27 [ 28] [ 9] [D00002000] +19:25:27 [ 32] [ 6] [198901] +19:25:27 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:27 [ 37] [ 12] [507919211218] +19:25:27 [ 41] [ 8] [01529014] +19:25:27 [ 42] [ 15] [000000041529014] +19:25:27 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:25:27 [ 49] [ 3] [418] +19:25:27 [ 52] [ 16] [DC9D97543C45EABB] +19:25:27 ============================================================================ +19:25:27 + + +waiting on router queue for slot.... +19:25:27 Sending to : +19:25:27 ============================================================================ +19:25:27 Sending to : +19:25:27 ============================================================================ +19:25:27 ============================================================================ +19:25:27 Slot Id : <85> +19:25:27 Transaction Type : REQUEST +19:25:27 Received From : +19:25:27 ============================================================================ +19:25:27 FNo. Len. Field Value +19:25:27 ============================================================================ +19:25:27 [ 1] [ 4] [0200] +19:25:27 [ 2] [ 16] [6213541000672033] +19:25:27 [ 3] [ 6] [011000] +19:25:27 [ 4] [ 12] [000100000000] +19:25:27 [ 7] [ 10] [0320192547] +19:25:27 [ 11] [ 6] [211218] +19:25:27 [ 12] [ 6] [191351] +19:25:27 [ 13] [ 4] [0320] +19:25:27 [ 14] [ 4] [4912] +19:25:27 [ 15] [ 4] [0320] +19:25:27 [ 18] [ 4] [6011] +19:25:27 [ 19] [ 3] [418] +19:25:27 [ 22] [ 3] [021] +19:25:27 [ 25] [ 2] [01] +19:25:27 [ 28] [ 9] [D00002000] +19:25:27 [ 32] [ 6] [198901] +19:25:27 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:27 [ 37] [ 12] [507919211218] +19:25:27 [ 41] [ 8] [01529014] +19:25:27 [ 42] [ 15] [000000041529014] +19:25:27 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:25:27 [ 49] [ 3] [418] +19:25:27 [ 52] [ 16] [DC9D97543C45EABB] +19:25:27 ============================================================================ +19:25:27 + + +waiting on router queue for slot.... +19:25:27 Sending to : +19:25:27 ============================================================================ +19:25:27 ============================================================================ +19:25:27 Slot Id : <85> +19:25:27 Transaction Type : REQUEST +19:25:27 Received From : +19:25:27 ============================================================================ +19:25:27 FNo. Len. Field Value +19:25:27 ============================================================================ +19:25:27 [ 1] [ 4] [0200] +19:25:27 [ 2] [ 16] [6213541000672033] +19:25:27 [ 3] [ 6] [011000] +19:25:27 [ 4] [ 12] [000100000000] +19:25:27 [ 7] [ 10] [0320192547] +19:25:27 [ 11] [ 6] [211218] +19:25:27 [ 12] [ 6] [191351] +19:25:27 [ 13] [ 4] [0320] +19:25:27 [ 14] [ 4] [4912] +19:25:27 [ 15] [ 4] [0320] +19:25:27 [ 18] [ 4] [6011] +19:25:27 [ 19] [ 3] [418] +19:25:27 [ 22] [ 3] [021] +19:25:27 [ 25] [ 2] [01] +19:25:27 [ 28] [ 9] [D00002000] +19:25:27 [ 32] [ 6] [198901] +19:25:27 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:27 [ 37] [ 12] [507919211218] +19:25:27 [ 41] [ 8] [01529014] +19:25:27 [ 42] [ 15] [000000041529014] +19:25:27 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:25:27 [ 49] [ 3] [418] +19:25:27 [ 52] [ 16] [3D520585CA77A566] +19:25:27 ============================================================================ +19:25:27 + + +waiting on router queue for slot.... +19:25:27 Sending to : <0> +19:25:27 ============================================================================ +19:25:28 ============================================================================ +19:25:28 Slot Id : <85> +19:25:28 Transaction Type : RESPONSE +19:25:28 Received From : +19:25:28 ============================================================================ +19:25:28 FNo. Len. Field Value +19:25:28 ============================================================================ +19:25:28 [ 1] [ 4] [0210] +19:25:28 [ 2] [ 16] [6213541000672033] +19:25:28 [ 3] [ 6] [011000] +19:25:28 [ 4] [ 12] [000100000000] +19:25:28 [ 7] [ 10] [0320192547] +19:25:28 [ 11] [ 6] [211218] +19:25:28 [ 12] [ 6] [191351] +19:25:28 [ 13] [ 4] [0320] +19:25:28 [ 15] [ 4] [0320] +19:25:28 [ 18] [ 4] [6011] +19:25:28 [ 19] [ 3] [418] +19:25:28 [ 32] [ 6] [198901] +19:25:28 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:28 [ 37] [ 12] [507919211218] +19:25:28 [ 38] [ 6] [257551] +19:25:28 [ 39] [ 2] [00] +19:25:28 [ 41] [ 8] [01529014] +19:25:28 [ 49] [ 3] [418] +19:25:28 [ 54] [ 40] [1001418C0004249648471002418C000424964847] +19:25:28 ============================================================================ +19:25:28 Sending to : +19:25:28 ============================================================================ +19:25:28 + + +waiting on router queue for slot.... +19:25:29 ============================================================================ +19:25:29 Slot Id : <85> +19:25:29 Transaction Type : RESPONSE +19:25:29 Received From : +19:25:29 ============================================================================ +19:25:29 FNo. Len. Field Value +19:25:29 ============================================================================ +19:25:29 [ 1] [ 4] [0210] +19:25:29 [ 2] [ 16] [6213541000672033] +19:25:29 [ 3] [ 6] [011000] +19:25:29 [ 4] [ 12] [000100000000] +19:25:29 [ 7] [ 10] [0320192547] +19:25:29 [ 11] [ 6] [211218] +19:25:29 [ 12] [ 6] [191351] +19:25:29 [ 13] [ 4] [0320] +19:25:29 [ 15] [ 4] [0320] +19:25:29 [ 18] [ 4] [6011] +19:25:29 [ 19] [ 3] [418] +19:25:29 [ 32] [ 6] [198901] +19:25:29 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:29 [ 37] [ 12] [507919211218] +19:25:29 [ 38] [ 6] [257551] +19:25:29 [ 39] [ 2] [00] +19:25:29 [ 41] [ 8] [01529014] +19:25:29 [ 49] [ 3] [418] +19:25:29 [ 54] [ 40] [1001418C0004249648471002418C000424964847] +19:25:29 ============================================================================ +19:25:29 Calculate Source COMM Id = 5 +19:25:29 ============================================================================ +19:25:29 + + +waiting on router queue for slot.... +19:25:37 ============================================================================ +19:25:37 Slot Id : <71> +19:25:37 Transaction Type : REQUEST +19:25:37 Received From : +19:25:37 ============================================================================ +19:25:37 FNo. Len. Field Value +19:25:37 ============================================================================ +19:25:37 [ 1] [ 4] [0800] +19:25:37 [ 7] [ 10] [0320122443] +19:25:37 [ 11] [ 6] [157943] +19:25:37 [ 70] [ 3] [301] +19:25:37 ============================================================================ +19:25:37 + + +waiting on router queue for slot.... +19:25:37 Sending to : +19:25:37 ============================================================================ +19:25:37 ============================================================================ +19:25:37 Slot Id : <71> +19:25:37 Transaction Type : RESPONSE +19:25:37 Received From : +19:25:37 ============================================================================ +19:25:37 FNo. Len. Field Value +19:25:37 ============================================================================ +19:25:37 [ 1] [ 4] [0810] +19:25:37 [ 7] [ 10] [0320122443] +19:25:37 [ 11] [ 6] [157943] +19:25:37 [ 39] [ 2] [00] +19:25:37 [ 70] [ 3] [301] +19:25:37 ============================================================================ +19:25:37 Calculate Source COMM Id = 2 +19:25:37 ============================================================================ +19:25:37 + + +waiting on router queue for slot.... +19:25:41 ============================================================================ +19:25:41 Slot Id : <136> +19:25:41 Transaction Type : REQUEST +19:25:41 Received From : +19:25:41 ============================================================================ +19:25:41 FNo. Len. Field Value +19:25:41 ============================================================================ +19:25:41 [ 1] [ 4] [0800] +19:25:41 [ 7] [ 10] [0321023729] +19:25:41 [ 11] [ 6] [193729] +19:25:41 [ 37] [ 12] [57919193729] +19:25:41 [ 70] [ 3] [301] +19:25:41 ============================================================================ +19:25:41 + + +waiting on router queue for slot.... +19:25:41 Sending to : +19:25:41 ============================================================================ +19:25:41 ============================================================================ +19:25:41 Slot Id : <136> +19:25:41 Transaction Type : RESPONSE +19:25:41 Received From : +19:25:41 ============================================================================ +19:25:41 FNo. Len. Field Value +19:25:41 ============================================================================ +19:25:41 [ 1] [ 4] [0810] +19:25:41 [ 7] [ 10] [0321023729] +19:25:41 [ 11] [ 6] [193729] +19:25:41 [ 37] [ 12] [579191937290] +19:25:41 [ 39] [ 2] [00] +19:25:41 [ 70] [ 3] [810] +19:25:41 ============================================================================ +19:25:41 Calculate Source COMM Id = 6 +19:25:41 ============================================================================ +19:25:41 + + +waiting on router queue for slot.... +19:25:48 ============================================================================ +19:25:48 Slot Id : <105> +19:25:48 Transaction Type : REQUEST +19:25:48 Received From : +19:25:48 ============================================================================ +19:25:48 FNo. Len. Field Value +19:25:48 ============================================================================ +19:25:48 [ 1] [ 4] [0800] +19:25:48 [ 7] [ 10] [0320122454] +19:25:48 [ 11] [ 6] [157944] +19:25:48 [ 70] [ 3] [301] +19:25:48 ============================================================================ +19:25:48 + + +waiting on router queue for slot.... +19:25:48 Sending to : +19:25:48 ============================================================================ +19:25:48 ============================================================================ +19:25:48 Slot Id : <105> +19:25:48 Transaction Type : RESPONSE +19:25:48 Received From : +19:25:48 ============================================================================ +19:25:48 FNo. Len. Field Value +19:25:48 ============================================================================ +19:25:48 [ 1] [ 4] [0810] +19:25:48 [ 7] [ 10] [0320122454] +19:25:48 [ 11] [ 6] [157944] +19:25:48 [ 39] [ 2] [00] +19:25:48 [ 70] [ 3] [301] +19:25:48 ============================================================================ +19:25:48 Calculate Source COMM Id = 2 +19:25:48 ============================================================================ +19:25:48 + + +waiting on router queue for slot.... +19:25:53 ============================================================================ +19:25:53 Slot Id : <129> +19:25:53 Transaction Type : REQUEST +19:25:53 Received From : +19:25:53 ============================================================================ +19:25:53 FNo. Len. Field Value +19:25:53 ============================================================================ +19:25:53 [ 1] [ 4] [0200] +19:25:53 [ 2] [ 16] [6213541000672033] +19:25:53 [ 3] [ 6] [011000] +19:25:53 [ 4] [ 12] [000100000000] +19:25:53 [ 7] [ 10] [0320192613] +19:25:53 [ 11] [ 6] [211227] +19:25:53 [ 12] [ 6] [191417] +19:25:53 [ 13] [ 4] [0320] +19:25:53 [ 14] [ 4] [4912] +19:25:53 [ 15] [ 4] [0320] +19:25:53 [ 18] [ 4] [6011] +19:25:53 [ 19] [ 3] [418] +19:25:53 [ 22] [ 3] [021] +19:25:53 [ 25] [ 2] [01] +19:25:53 [ 28] [ 9] [D00002000] +19:25:53 [ 32] [ 6] [198901] +19:25:53 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:53 [ 37] [ 12] [507919211227] +19:25:53 [ 41] [ 8] [01529014] +19:25:53 [ 42] [ 15] [000000041529014] +19:25:53 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:25:53 [ 49] [ 3] [418] +19:25:53 [ 52] [ 16] [DC9D97543C45EABB] +19:25:53 ============================================================================ +19:25:53 + + +waiting on router queue for slot.... +19:25:53 Sending to : +19:25:53 ============================================================================ +19:25:53 Sending to : +19:25:53 ============================================================================ +19:25:53 ============================================================================ +19:25:53 Slot Id : <129> +19:25:53 Transaction Type : REQUEST +19:25:53 Received From : +19:25:53 ============================================================================ +19:25:53 FNo. Len. Field Value +19:25:53 ============================================================================ +19:25:53 [ 1] [ 4] [0200] +19:25:53 [ 2] [ 16] [6213541000672033] +19:25:53 [ 3] [ 6] [011000] +19:25:53 [ 4] [ 12] [000100000000] +19:25:53 [ 7] [ 10] [0320192613] +19:25:53 [ 11] [ 6] [211227] +19:25:53 [ 12] [ 6] [191417] +19:25:53 [ 13] [ 4] [0320] +19:25:53 [ 14] [ 4] [4912] +19:25:53 [ 15] [ 4] [0320] +19:25:53 [ 18] [ 4] [6011] +19:25:53 [ 19] [ 3] [418] +19:25:53 [ 22] [ 3] [021] +19:25:53 [ 25] [ 2] [01] +19:25:53 [ 28] [ 9] [D00002000] +19:25:53 [ 32] [ 6] [198901] +19:25:53 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:53 [ 37] [ 12] [507919211227] +19:25:53 [ 41] [ 8] [01529014] +19:25:53 [ 42] [ 15] [000000041529014] +19:25:53 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:25:53 [ 49] [ 3] [418] +19:25:53 [ 52] [ 16] [DC9D97543C45EABB] +19:25:53 ============================================================================ +19:25:53 + + +waiting on router queue for slot.... +19:25:53 Sending to : +19:25:53 ============================================================================ +19:25:53 ============================================================================ +19:25:53 Slot Id : <129> +19:25:53 Transaction Type : REQUEST +19:25:53 Received From : +19:25:53 ============================================================================ +19:25:53 FNo. Len. Field Value +19:25:53 ============================================================================ +19:25:53 [ 1] [ 4] [0200] +19:25:53 [ 2] [ 16] [6213541000672033] +19:25:53 [ 3] [ 6] [011000] +19:25:53 [ 4] [ 12] [000100000000] +19:25:53 [ 7] [ 10] [0320192613] +19:25:53 [ 11] [ 6] [211227] +19:25:53 [ 12] [ 6] [191417] +19:25:53 [ 13] [ 4] [0320] +19:25:53 [ 14] [ 4] [4912] +19:25:53 [ 15] [ 4] [0320] +19:25:53 [ 18] [ 4] [6011] +19:25:53 [ 19] [ 3] [418] +19:25:53 [ 22] [ 3] [021] +19:25:53 [ 25] [ 2] [01] +19:25:53 [ 28] [ 9] [D00002000] +19:25:53 [ 32] [ 6] [198901] +19:25:53 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:53 [ 37] [ 12] [507919211227] +19:25:53 [ 41] [ 8] [01529014] +19:25:53 [ 42] [ 15] [000000041529014] +19:25:53 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:25:53 [ 49] [ 3] [418] +19:25:53 [ 52] [ 16] [3D520585CA77A566] +19:25:53 ============================================================================ +19:25:53 + + +waiting on router queue for slot.... +19:25:53 Sending to : <0> +19:25:53 ============================================================================ +19:25:53 ============================================================================ +19:25:53 Slot Id : <129> +19:25:53 Transaction Type : RESPONSE +19:25:53 Received From : +19:25:53 ============================================================================ +19:25:53 FNo. Len. Field Value +19:25:53 ============================================================================ +19:25:53 [ 1] [ 4] [0210] +19:25:53 [ 2] [ 16] [6213541000672033] +19:25:53 [ 3] [ 6] [011000] +19:25:53 [ 4] [ 12] [000100000000] +19:25:53 [ 7] [ 10] [0320192613] +19:25:53 [ 11] [ 6] [211227] +19:25:53 [ 12] [ 6] [191417] +19:25:53 [ 13] [ 4] [0320] +19:25:53 [ 15] [ 4] [0320] +19:25:53 [ 18] [ 4] [6011] +19:25:53 [ 19] [ 3] [418] +19:25:53 [ 32] [ 6] [198901] +19:25:53 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:53 [ 37] [ 12] [507919211227] +19:25:53 [ 38] [ 6] [243025] +19:25:53 [ 39] [ 2] [00] +19:25:53 [ 41] [ 8] [01529014] +19:25:53 [ 49] [ 3] [418] +19:25:53 [ 54] [ 40] [1001418C0003247648471002418C000324764847] +19:25:53 ============================================================================ +19:25:53 Sending to : +19:25:53 ============================================================================ +19:25:53 + + +waiting on router queue for slot.... +19:25:55 ============================================================================ +19:25:55 Slot Id : <129> +19:25:55 Transaction Type : RESPONSE +19:25:55 Received From : +19:25:55 ============================================================================ +19:25:55 FNo. Len. Field Value +19:25:55 ============================================================================ +19:25:55 [ 1] [ 4] [0210] +19:25:55 [ 2] [ 16] [6213541000672033] +19:25:55 [ 3] [ 6] [011000] +19:25:55 [ 4] [ 12] [000100000000] +19:25:55 [ 7] [ 10] [0320192613] +19:25:55 [ 11] [ 6] [211227] +19:25:55 [ 12] [ 6] [191417] +19:25:55 [ 13] [ 4] [0320] +19:25:55 [ 15] [ 4] [0320] +19:25:55 [ 18] [ 4] [6011] +19:25:55 [ 19] [ 3] [418] +19:25:55 [ 32] [ 6] [198901] +19:25:55 [ 35] [ 32] [6213541000672033=491212017203169] +19:25:55 [ 37] [ 12] [507919211227] +19:25:55 [ 38] [ 6] [243025] +19:25:55 [ 39] [ 2] [00] +19:25:55 [ 41] [ 8] [01529014] +19:25:55 [ 49] [ 3] [418] +19:25:55 [ 54] [ 40] [1001418C0003247648471002418C000324764847] +19:25:55 ============================================================================ +19:25:55 Calculate Source COMM Id = 5 +19:25:55 ============================================================================ +19:25:55 + + +waiting on router queue for slot.... +19:25:58 ============================================================================ +19:25:58 Slot Id : <116> +19:25:58 Transaction Type : REQUEST +19:25:58 Received From : +19:25:58 ============================================================================ +19:25:58 FNo. Len. Field Value +19:25:58 ============================================================================ +19:25:58 [ 1] [ 4] [0800] +19:25:58 [ 7] [ 10] [0320122505] +19:25:58 [ 11] [ 6] [157945] +19:25:58 [ 70] [ 3] [301] +19:25:58 ============================================================================ +19:25:58 + + +waiting on router queue for slot.... +19:25:58 Sending to : +19:25:58 ============================================================================ +19:25:58 ============================================================================ +19:25:58 Slot Id : <116> +19:25:58 Transaction Type : RESPONSE +19:25:58 Received From : +19:25:58 ============================================================================ +19:25:58 FNo. Len. Field Value +19:25:58 ============================================================================ +19:25:58 [ 1] [ 4] [0810] +19:25:58 [ 7] [ 10] [0320122505] +19:25:58 [ 11] [ 6] [157945] +19:25:58 [ 39] [ 2] [00] +19:25:58 [ 70] [ 3] [301] +19:25:58 ============================================================================ +19:25:58 Calculate Source COMM Id = 2 +19:25:58 ============================================================================ +19:25:58 + + +waiting on router queue for slot.... +19:26:14 ============================================================================ +19:26:14 Slot Id : <131> +19:26:14 Transaction Type : REQUEST +19:26:14 Received From : +19:26:14 ============================================================================ +19:26:14 FNo. Len. Field Value +19:26:14 ============================================================================ +19:26:14 [ 1] [ 4] [0800] +19:26:14 [ 7] [ 10] [0320122520] +19:26:14 [ 11] [ 6] [157946] +19:26:14 [ 70] [ 3] [301] +19:26:14 ============================================================================ +19:26:14 + + +waiting on router queue for slot.... +19:26:14 Sending to : +19:26:14 ============================================================================ +19:26:14 ============================================================================ +19:26:14 Slot Id : <131> +19:26:14 Transaction Type : RESPONSE +19:26:14 Received From : +19:26:14 ============================================================================ +19:26:14 FNo. Len. Field Value +19:26:14 ============================================================================ +19:26:14 [ 1] [ 4] [0810] +19:26:14 [ 7] [ 10] [0320122520] +19:26:14 [ 11] [ 6] [157946] +19:26:14 [ 39] [ 2] [00] +19:26:14 [ 70] [ 3] [301] +19:26:14 ============================================================================ +19:26:14 Calculate Source COMM Id = 2 +19:26:14 ============================================================================ +19:26:14 + + +waiting on router queue for slot.... +19:26:14 ============================================================================ +19:26:14 Slot Id : <104> +19:26:14 Transaction Type : REQUEST +19:26:14 Received From : +19:26:14 ============================================================================ +19:26:14 FNo. Len. Field Value +19:26:14 ============================================================================ +19:26:14 [ 1] [ 4] [0200] +19:26:14 [ 2] [ 16] [6213544001983367] +19:26:14 [ 3] [ 6] [010000] +19:26:14 [ 4] [ 12] [000050000000] +19:26:14 [ 7] [ 10] [0320192404] +19:26:14 [ 11] [ 6] [956121] +19:26:14 [ 12] [ 6] [192404] +19:26:14 [ 13] [ 4] [0320] +19:26:14 [ 15] [ 4] [0320] +19:26:14 [ 18] [ 4] [6011] +19:26:14 [ 19] [ 3] [418] +19:26:14 [ 22] [ 3] [021] +19:26:14 [ 25] [ 2] [01] +19:26:14 [ 28] [ 9] [D00002000] +19:26:14 [ 32] [ 6] [668899] +19:26:14 [ 35] [ 32] [6213544001983367=491212018336163] +19:26:14 [ 37] [ 12] [507901541786] +19:26:14 [ 41] [ 8] [03020016] +19:26:14 [ 42] [ 15] [APT ] +19:26:14 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +19:26:14 [ 49] [ 3] [418] +19:26:14 [ 52] [ 16] [9719A49F19B92A5F] +19:26:14 ============================================================================ +19:26:14 + + +waiting on router queue for slot.... +19:26:14 Sending to : +19:26:14 ============================================================================ +19:26:14 Sending to : +19:26:14 ============================================================================ +19:26:14 ============================================================================ +19:26:14 Slot Id : <104> +19:26:14 Transaction Type : REQUEST +19:26:14 Received From : +19:26:14 ============================================================================ +19:26:14 FNo. Len. Field Value +19:26:14 ============================================================================ +19:26:14 [ 1] [ 4] [0200] +19:26:14 [ 2] [ 16] [6213544001983367] +19:26:14 [ 3] [ 6] [010000] +19:26:14 [ 4] [ 12] [000050000000] +19:26:14 [ 7] [ 10] [0320192404] +19:26:14 [ 11] [ 6] [956121] +19:26:14 [ 12] [ 6] [192404] +19:26:14 [ 13] [ 4] [0320] +19:26:14 [ 15] [ 4] [0320] +19:26:14 [ 18] [ 4] [6011] +19:26:14 [ 19] [ 3] [418] +19:26:14 [ 22] [ 3] [021] +19:26:14 [ 25] [ 2] [01] +19:26:14 [ 28] [ 9] [D00002000] +19:26:14 [ 32] [ 6] [668899] +19:26:14 [ 35] [ 32] [6213544001983367=491212018336163] +19:26:14 [ 37] [ 12] [507901541786] +19:26:14 [ 41] [ 8] [03020016] +19:26:14 [ 42] [ 15] [APT ] +19:26:14 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +19:26:14 [ 49] [ 3] [418] +19:26:14 [ 52] [ 16] [9719A49F19B92A5F] +19:26:14 ============================================================================ +19:26:14 + + +waiting on router queue for slot.... +19:26:14 Sending to : +19:26:14 ============================================================================ +19:26:14 ============================================================================ +19:26:14 Slot Id : <104> +19:26:14 Transaction Type : REQUEST +19:26:14 Received From : +19:26:14 ============================================================================ +19:26:14 FNo. Len. Field Value +19:26:14 ============================================================================ +19:26:14 [ 1] [ 4] [0200] +19:26:14 [ 2] [ 16] [6213544001983367] +19:26:14 [ 3] [ 6] [010000] +19:26:14 [ 4] [ 12] [000050000000] +19:26:14 [ 7] [ 10] [0320192404] +19:26:14 [ 11] [ 6] [956121] +19:26:14 [ 12] [ 6] [192404] +19:26:14 [ 13] [ 4] [0320] +19:26:14 [ 15] [ 4] [0320] +19:26:14 [ 18] [ 4] [6011] +19:26:14 [ 19] [ 3] [418] +19:26:14 [ 22] [ 3] [021] +19:26:14 [ 25] [ 2] [01] +19:26:14 [ 28] [ 9] [D00002000] +19:26:14 [ 32] [ 6] [668899] +19:26:14 [ 35] [ 32] [6213544001983367=491212018336163] +19:26:14 [ 37] [ 12] [507901541786] +19:26:14 [ 41] [ 8] [03020016] +19:26:14 [ 42] [ 15] [APT ] +19:26:14 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +19:26:14 [ 49] [ 3] [418] +19:26:14 [ 52] [ 16] [493FF4955B7B3D1F] +19:26:14 ============================================================================ +19:26:14 + + +waiting on router queue for slot.... +19:26:14 Sending to : <0> +19:26:14 ============================================================================ +19:26:15 ============================================================================ +19:26:15 Slot Id : <104> +19:26:15 Transaction Type : RESPONSE +19:26:15 Received From : +19:26:15 ============================================================================ +19:26:15 FNo. Len. Field Value +19:26:15 ============================================================================ +19:26:15 [ 1] [ 4] [0210] +19:26:15 [ 2] [ 16] [6213544001983367] +19:26:15 [ 3] [ 6] [010000] +19:26:15 [ 4] [ 12] [000050000000] +19:26:15 [ 7] [ 10] [0320192404] +19:26:15 [ 11] [ 6] [956121] +19:26:15 [ 12] [ 6] [192404] +19:26:15 [ 13] [ 4] [0320] +19:26:15 [ 15] [ 4] [0320] +19:26:15 [ 18] [ 4] [6011] +19:26:15 [ 19] [ 3] [418] +19:26:15 [ 32] [ 6] [668899] +19:26:15 [ 35] [ 32] [6213544001983367=491212018336163] +19:26:15 [ 37] [ 12] [507901541786] +19:26:15 [ 38] [ 6] [651577] +19:26:15 [ 39] [ 2] [00] +19:26:15 [ 41] [ 8] [03020016] +19:26:15 [ 49] [ 3] [418] +19:26:15 [ 54] [ 40] [0001418C0001845658240002418C000184565824] +19:26:15 ============================================================================ +19:26:15 Sending to : +19:26:15 ============================================================================ +19:26:15 + + +waiting on router queue for slot.... +19:26:15 ============================================================================ +19:26:15 Slot Id : <138> +19:26:15 Transaction Type : REQUEST +19:26:15 Received From : +19:26:15 ============================================================================ +19:26:15 FNo. Len. Field Value +19:26:15 ============================================================================ +19:26:15 [ 1] [ 4] [0800] +19:26:15 [ 2] [ 5] [02531] +19:26:15 [ 3] [ 6] [579198] +19:26:15 [ 7] [ 10] [0320122615] +19:26:15 [ 11] [ 6] [807540] +19:26:15 [ 15] [ 10] [0320122615] +19:26:15 [ 37] [ 11] [57919807540] +19:26:15 [ 70] [ 3] [001] +19:26:15 ============================================================================ +19:26:15 + + +waiting on router queue for slot.... +19:26:15 ============================================================================ +19:26:15 Slot Id : <138> +19:26:15 Transaction Type : RESPONSE +19:26:15 Received From : +19:26:15 ============================================================================ +19:26:15 FNo. Len. Field Value +19:26:15 ============================================================================ +19:26:15 [ 1] [ 4] [0810] +19:26:15 [ 7] [ 10] [0320122615] +19:26:15 [ 11] [ 6] [807540] +19:26:15 [ 15] [ 4] [0320] +19:26:15 [ 37] [ 12] [57919807540] +19:26:15 [ 39] [ 2] [00] +19:26:15 [ 70] [ 3] [001] +19:26:15 ============================================================================ +19:26:15 Sending to : +19:26:15 ============================================================================ +19:26:15 + + +waiting on router queue for slot.... +19:26:16 ============================================================================ +19:26:16 Slot Id : <97> +19:26:16 Transaction Type : REQUEST +19:26:16 Received From : +19:26:16 ============================================================================ +19:26:16 FNo. Len. Field Value +19:26:16 ============================================================================ +19:26:16 [ 1] [ 4] [0200] +19:26:16 [ 2] [ 16] [6213541000672033] +19:26:16 [ 3] [ 6] [011000] +19:26:16 [ 4] [ 12] [000100000000] +19:26:16 [ 7] [ 10] [0320192636] +19:26:16 [ 11] [ 6] [211235] +19:26:16 [ 12] [ 6] [191441] +19:26:16 [ 13] [ 4] [0320] +19:26:16 [ 14] [ 4] [4912] +19:26:16 [ 15] [ 4] [0320] +19:26:16 [ 18] [ 4] [6011] +19:26:16 [ 19] [ 3] [418] +19:26:16 [ 22] [ 3] [021] +19:26:16 [ 25] [ 2] [01] +19:26:16 [ 28] [ 9] [D00002000] +19:26:16 [ 32] [ 6] [198901] +19:26:16 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:16 [ 37] [ 12] [507919211235] +19:26:16 [ 41] [ 8] [01529014] +19:26:16 [ 42] [ 15] [000000041529014] +19:26:16 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:26:16 [ 49] [ 3] [418] +19:26:16 [ 52] [ 16] [DC9D97543C45EABB] +19:26:16 ============================================================================ +19:26:16 + + +waiting on router queue for slot.... +19:26:16 Sending to : +19:26:16 ============================================================================ +19:26:16 Sending to : +19:26:16 ============================================================================ +19:26:17 ============================================================================ +19:26:17 Slot Id : <97> +19:26:17 Transaction Type : REQUEST +19:26:17 Received From : +19:26:17 ============================================================================ +19:26:17 FNo. Len. Field Value +19:26:17 ============================================================================ +19:26:17 [ 1] [ 4] [0200] +19:26:17 [ 2] [ 16] [6213541000672033] +19:26:17 [ 3] [ 6] [011000] +19:26:17 [ 4] [ 12] [000100000000] +19:26:17 [ 7] [ 10] [0320192636] +19:26:17 [ 11] [ 6] [211235] +19:26:17 [ 12] [ 6] [191441] +19:26:17 [ 13] [ 4] [0320] +19:26:17 [ 14] [ 4] [4912] +19:26:17 [ 15] [ 4] [0320] +19:26:17 [ 18] [ 4] [6011] +19:26:17 [ 19] [ 3] [418] +19:26:17 [ 22] [ 3] [021] +19:26:17 [ 25] [ 2] [01] +19:26:17 [ 28] [ 9] [D00002000] +19:26:17 [ 32] [ 6] [198901] +19:26:17 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:17 [ 37] [ 12] [507919211235] +19:26:17 [ 41] [ 8] [01529014] +19:26:17 [ 42] [ 15] [000000041529014] +19:26:17 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:26:17 [ 49] [ 3] [418] +19:26:17 [ 52] [ 16] [DC9D97543C45EABB] +19:26:17 ============================================================================ +19:26:17 + + +waiting on router queue for slot.... +19:26:17 Sending to : +19:26:17 ============================================================================ +19:26:17 ============================================================================ +19:26:17 Slot Id : <97> +19:26:17 Transaction Type : REQUEST +19:26:17 Received From : +19:26:17 ============================================================================ +19:26:17 FNo. Len. Field Value +19:26:17 ============================================================================ +19:26:17 [ 1] [ 4] [0200] +19:26:17 [ 2] [ 16] [6213541000672033] +19:26:17 [ 3] [ 6] [011000] +19:26:17 [ 4] [ 12] [000100000000] +19:26:17 [ 7] [ 10] [0320192636] +19:26:17 [ 11] [ 6] [211235] +19:26:17 [ 12] [ 6] [191441] +19:26:17 [ 13] [ 4] [0320] +19:26:17 [ 14] [ 4] [4912] +19:26:17 [ 15] [ 4] [0320] +19:26:17 [ 18] [ 4] [6011] +19:26:17 [ 19] [ 3] [418] +19:26:17 [ 22] [ 3] [021] +19:26:17 [ 25] [ 2] [01] +19:26:17 [ 28] [ 9] [D00002000] +19:26:17 [ 32] [ 6] [198901] +19:26:17 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:17 [ 37] [ 12] [507919211235] +19:26:17 [ 41] [ 8] [01529014] +19:26:17 [ 42] [ 15] [000000041529014] +19:26:17 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:26:17 [ 49] [ 3] [418] +19:26:17 [ 52] [ 16] [3D520585CA77A566] +19:26:17 ============================================================================ +19:26:17 + + +waiting on router queue for slot.... +19:26:17 Sending to : <0> +19:26:17 ============================================================================ +19:26:17 ============================================================================ +19:26:17 Slot Id : <97> +19:26:17 Transaction Type : RESPONSE +19:26:17 Received From : +19:26:17 ============================================================================ +19:26:17 FNo. Len. Field Value +19:26:17 ============================================================================ +19:26:17 [ 1] [ 4] [0210] +19:26:17 [ 2] [ 16] [6213541000672033] +19:26:17 [ 3] [ 6] [011000] +19:26:17 [ 4] [ 12] [000100000000] +19:26:17 [ 7] [ 10] [0320192636] +19:26:17 [ 11] [ 6] [211235] +19:26:17 [ 12] [ 6] [191441] +19:26:17 [ 13] [ 4] [0320] +19:26:17 [ 15] [ 4] [0320] +19:26:17 [ 18] [ 4] [6011] +19:26:17 [ 19] [ 3] [418] +19:26:17 [ 22] [ 3] [021] +19:26:17 [ 32] [ 6] [198901] +19:26:17 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:17 [ 37] [ 12] [507919211235] +19:26:17 [ 39] [ 2] [05] +19:26:17 [ 41] [ 8] [01529014] +19:26:17 [ 49] [ 3] [418] +19:26:17 ============================================================================ +19:26:17 Sending to : +19:26:17 ============================================================================ +19:26:17 + + +waiting on router queue for slot.... +19:26:17 ============================================================================ +19:26:17 Slot Id : <104> +19:26:17 Transaction Type : RESPONSE +19:26:17 Received From : +19:26:17 ============================================================================ +19:26:17 FNo. Len. Field Value +19:26:17 ============================================================================ +19:26:17 [ 1] [ 4] [0210] +19:26:17 [ 2] [ 16] [6213544001983367] +19:26:17 [ 3] [ 6] [010000] +19:26:17 [ 4] [ 12] [000050000000] +19:26:17 [ 7] [ 10] [0320192404] +19:26:17 [ 11] [ 6] [956121] +19:26:17 [ 12] [ 6] [192404] +19:26:17 [ 13] [ 4] [0320] +19:26:17 [ 15] [ 4] [0320] +19:26:17 [ 18] [ 4] [6011] +19:26:17 [ 19] [ 3] [418] +19:26:17 [ 32] [ 6] [668899] +19:26:17 [ 35] [ 32] [6213544001983367=491212018336163] +19:26:17 [ 37] [ 12] [507901541786] +19:26:17 [ 38] [ 6] [651577] +19:26:17 [ 39] [ 2] [00] +19:26:17 [ 41] [ 8] [03020016] +19:26:17 [ 49] [ 3] [418] +19:26:17 [ 54] [ 40] [0001418C0001845658240002418C000184565824] +19:26:17 ============================================================================ +19:26:17 Calculate Source COMM Id = 4 +19:26:17 ============================================================================ +19:26:17 + + +waiting on router queue for slot.... +19:26:18 ============================================================================ +19:26:18 Slot Id : <97> +19:26:18 Transaction Type : RESPONSE +19:26:18 Received From : +19:26:18 ============================================================================ +19:26:18 FNo. Len. Field Value +19:26:18 ============================================================================ +19:26:18 [ 1] [ 4] [0210] +19:26:18 [ 2] [ 16] [6213541000672033] +19:26:18 [ 3] [ 6] [011000] +19:26:18 [ 4] [ 12] [000100000000] +19:26:18 [ 7] [ 10] [0320192636] +19:26:18 [ 11] [ 6] [211235] +19:26:18 [ 12] [ 6] [191441] +19:26:18 [ 13] [ 4] [0320] +19:26:18 [ 15] [ 4] [0320] +19:26:18 [ 18] [ 4] [6011] +19:26:18 [ 19] [ 3] [418] +19:26:18 [ 22] [ 3] [021] +19:26:18 [ 32] [ 6] [198901] +19:26:18 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:18 [ 37] [ 12] [507919211235] +19:26:18 [ 39] [ 2] [05] +19:26:18 [ 41] [ 8] [01529014] +19:26:18 [ 49] [ 3] [418] +19:26:18 ============================================================================ +19:26:18 Calculate Source COMM Id = 5 +19:26:18 ============================================================================ +19:26:18 + + +waiting on router queue for slot.... +19:26:22 ============================================================================ +19:26:22 Slot Id : <112> +19:26:22 Transaction Type : REQUEST +19:26:22 Received From : +19:26:22 ============================================================================ +19:26:22 FNo. Len. Field Value +19:26:22 ============================================================================ +19:26:22 [ 1] [ 4] [0800] +19:26:22 [ 7] [ 10] [0320122412] +19:26:22 [ 11] [ 6] [001652] +19:26:22 [ 37] [ 12] [57919001652] +19:26:22 [ 70] [ 3] [301] +19:26:22 ============================================================================ +19:26:22 + + +waiting on router queue for slot.... +19:26:22 Sending to : +19:26:22 ============================================================================ +19:26:22 ============================================================================ +19:26:22 Slot Id : <112> +19:26:22 Transaction Type : RESPONSE +19:26:22 Received From : +19:26:22 ============================================================================ +19:26:22 FNo. Len. Field Value +19:26:22 ============================================================================ +19:26:22 [ 1] [ 4] [0810] +19:26:22 [ 7] [ 10] [0320122412] +19:26:22 [ 11] [ 6] [001652] +19:26:22 [ 37] [ 12] [579190016520] +19:26:22 [ 39] [ 2] [00] +19:26:22 [ 70] [ 3] [810] +19:26:22 ============================================================================ +19:26:22 Calculate Source COMM Id = 4 +19:26:22 ============================================================================ +19:26:22 + + +waiting on router queue for slot.... +19:26:29 ============================================================================ +19:26:29 Slot Id : <111> +19:26:29 Transaction Type : REQUEST +19:26:29 Received From : +19:26:29 ============================================================================ +19:26:29 FNo. Len. Field Value +19:26:29 ============================================================================ +19:26:29 [ 1] [ 4] [0200] +19:26:29 [ 2] [ 16] [6213541000672033] +19:26:29 [ 3] [ 6] [011000] +19:26:29 [ 4] [ 12] [000100000000] +19:26:29 [ 7] [ 10] [0320192649] +19:26:29 [ 11] [ 6] [211238] +19:26:29 [ 12] [ 6] [191453] +19:26:29 [ 13] [ 4] [0320] +19:26:29 [ 14] [ 4] [4912] +19:26:29 [ 15] [ 4] [0320] +19:26:29 [ 18] [ 4] [6011] +19:26:29 [ 19] [ 3] [418] +19:26:29 [ 22] [ 3] [021] +19:26:29 [ 25] [ 2] [01] +19:26:29 [ 28] [ 9] [D00002000] +19:26:29 [ 32] [ 6] [198901] +19:26:29 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:29 [ 37] [ 12] [507919211238] +19:26:29 [ 41] [ 8] [01529014] +19:26:29 [ 42] [ 15] [000000041529014] +19:26:29 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:26:29 [ 49] [ 3] [418] +19:26:29 [ 52] [ 16] [DC9D97543C45EABB] +19:26:29 ============================================================================ +19:26:29 + + +waiting on router queue for slot.... +19:26:29 Sending to : +19:26:29 ============================================================================ +19:26:29 Sending to : +19:26:29 ============================================================================ +19:26:29 ============================================================================ +19:26:29 Slot Id : <111> +19:26:29 Transaction Type : REQUEST +19:26:29 Received From : +19:26:29 ============================================================================ +19:26:29 FNo. Len. Field Value +19:26:29 ============================================================================ +19:26:29 [ 1] [ 4] [0200] +19:26:29 [ 2] [ 16] [6213541000672033] +19:26:29 [ 3] [ 6] [011000] +19:26:29 [ 4] [ 12] [000100000000] +19:26:29 [ 7] [ 10] [0320192649] +19:26:29 [ 11] [ 6] [211238] +19:26:29 [ 12] [ 6] [191453] +19:26:29 [ 13] [ 4] [0320] +19:26:29 [ 14] [ 4] [4912] +19:26:29 [ 15] [ 4] [0320] +19:26:29 [ 18] [ 4] [6011] +19:26:29 [ 19] [ 3] [418] +19:26:29 [ 22] [ 3] [021] +19:26:29 [ 25] [ 2] [01] +19:26:29 [ 28] [ 9] [D00002000] +19:26:29 [ 32] [ 6] [198901] +19:26:29 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:29 [ 37] [ 12] [507919211238] +19:26:29 [ 41] [ 8] [01529014] +19:26:29 [ 42] [ 15] [000000041529014] +19:26:29 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:26:29 [ 49] [ 3] [418] +19:26:29 [ 52] [ 16] [DC9D97543C45EABB] +19:26:29 ============================================================================ +19:26:29 + + +waiting on router queue for slot.... +19:26:29 Sending to : +19:26:29 ============================================================================ +19:26:29 ============================================================================ +19:26:29 Slot Id : <111> +19:26:29 Transaction Type : REQUEST +19:26:29 Received From : +19:26:29 ============================================================================ +19:26:29 FNo. Len. Field Value +19:26:29 ============================================================================ +19:26:29 [ 1] [ 4] [0200] +19:26:29 [ 2] [ 16] [6213541000672033] +19:26:29 [ 3] [ 6] [011000] +19:26:29 [ 4] [ 12] [000100000000] +19:26:29 [ 7] [ 10] [0320192649] +19:26:29 [ 11] [ 6] [211238] +19:26:29 [ 12] [ 6] [191453] +19:26:29 [ 13] [ 4] [0320] +19:26:29 [ 14] [ 4] [4912] +19:26:29 [ 15] [ 4] [0320] +19:26:29 [ 18] [ 4] [6011] +19:26:29 [ 19] [ 3] [418] +19:26:29 [ 22] [ 3] [021] +19:26:29 [ 25] [ 2] [01] +19:26:29 [ 28] [ 9] [D00002000] +19:26:29 [ 32] [ 6] [198901] +19:26:29 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:29 [ 37] [ 12] [507919211238] +19:26:29 [ 41] [ 8] [01529014] +19:26:29 [ 42] [ 15] [000000041529014] +19:26:29 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:26:29 [ 49] [ 3] [418] +19:26:29 [ 52] [ 16] [3D520585CA77A566] +19:26:29 ============================================================================ +19:26:29 + + +waiting on router queue for slot.... +19:26:29 Sending to : <0> +19:26:29 ============================================================================ +19:26:30 ============================================================================ +19:26:30 Slot Id : <111> +19:26:30 Transaction Type : RESPONSE +19:26:30 Received From : +19:26:30 ============================================================================ +19:26:30 FNo. Len. Field Value +19:26:30 ============================================================================ +19:26:30 [ 1] [ 4] [0210] +19:26:30 [ 2] [ 16] [6213541000672033] +19:26:30 [ 3] [ 6] [011000] +19:26:30 [ 4] [ 12] [000100000000] +19:26:30 [ 7] [ 10] [0320192649] +19:26:30 [ 11] [ 6] [211238] +19:26:30 [ 12] [ 6] [191453] +19:26:30 [ 13] [ 4] [0320] +19:26:30 [ 15] [ 4] [0320] +19:26:30 [ 18] [ 4] [6011] +19:26:30 [ 19] [ 3] [418] +19:26:30 [ 32] [ 6] [198901] +19:26:30 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:30 [ 37] [ 12] [507919211238] +19:26:30 [ 38] [ 6] [268987] +19:26:30 [ 39] [ 2] [00] +19:26:30 [ 41] [ 8] [01529014] +19:26:30 [ 49] [ 3] [418] +19:26:30 [ 54] [ 40] [1001418C0002245648471002418C000224564847] +19:26:30 ============================================================================ +19:26:30 Sending to : +19:26:30 ============================================================================ +19:26:30 + + +waiting on router queue for slot.... +19:26:30 ============================================================================ +19:26:30 Slot Id : <124> +19:26:30 Transaction Type : REQUEST +19:26:30 Received From : +19:26:30 ============================================================================ +19:26:30 FNo. Len. Field Value +19:26:30 ============================================================================ +19:26:30 [ 1] [ 4] [0800] +19:26:30 [ 7] [ 10] [0320122537] +19:26:30 [ 11] [ 6] [157947] +19:26:30 [ 70] [ 3] [301] +19:26:30 ============================================================================ +19:26:30 + + +waiting on router queue for slot.... +19:26:30 Sending to : +19:26:30 ============================================================================ +19:26:30 ============================================================================ +19:26:30 Slot Id : <124> +19:26:30 Transaction Type : RESPONSE +19:26:30 Received From : +19:26:30 ============================================================================ +19:26:30 FNo. Len. Field Value +19:26:30 ============================================================================ +19:26:30 [ 1] [ 4] [0810] +19:26:30 [ 7] [ 10] [0320122537] +19:26:30 [ 11] [ 6] [157947] +19:26:30 [ 39] [ 2] [00] +19:26:30 [ 70] [ 3] [301] +19:26:30 ============================================================================ +19:26:30 Calculate Source COMM Id = 2 +19:26:30 ============================================================================ +19:26:30 + + +waiting on router queue for slot.... +19:26:31 ============================================================================ +19:26:31 Slot Id : <111> +19:26:31 Transaction Type : RESPONSE +19:26:31 Received From : +19:26:31 ============================================================================ +19:26:31 FNo. Len. Field Value +19:26:31 ============================================================================ +19:26:31 [ 1] [ 4] [0210] +19:26:31 [ 2] [ 16] [6213541000672033] +19:26:31 [ 3] [ 6] [011000] +19:26:31 [ 4] [ 12] [000100000000] +19:26:31 [ 7] [ 10] [0320192649] +19:26:31 [ 11] [ 6] [211238] +19:26:31 [ 12] [ 6] [191453] +19:26:31 [ 13] [ 4] [0320] +19:26:31 [ 15] [ 4] [0320] +19:26:31 [ 18] [ 4] [6011] +19:26:31 [ 19] [ 3] [418] +19:26:31 [ 32] [ 6] [198901] +19:26:31 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:31 [ 37] [ 12] [507919211238] +19:26:31 [ 38] [ 6] [268987] +19:26:31 [ 39] [ 2] [00] +19:26:31 [ 41] [ 8] [01529014] +19:26:31 [ 49] [ 3] [418] +19:26:31 [ 54] [ 40] [1001418C0002245648471002418C000224564847] +19:26:31 ============================================================================ +19:26:31 Calculate Source COMM Id = 5 +19:26:31 ============================================================================ +19:26:31 + + +waiting on router queue for slot.... +19:26:41 ============================================================================ +19:26:41 Slot Id : <80> +19:26:41 Transaction Type : REQUEST +19:26:41 Received From : +19:26:41 ============================================================================ +19:26:41 FNo. Len. Field Value +19:26:41 ============================================================================ +19:26:41 [ 1] [ 4] [0800] +19:26:41 [ 7] [ 10] [0320122548] +19:26:41 [ 11] [ 6] [157948] +19:26:41 [ 70] [ 3] [301] +19:26:41 ============================================================================ +19:26:41 + + +waiting on router queue for slot.... +19:26:41 Sending to : +19:26:41 ============================================================================ +19:26:41 ============================================================================ +19:26:41 Slot Id : <80> +19:26:41 Transaction Type : RESPONSE +19:26:41 Received From : +19:26:41 ============================================================================ +19:26:41 FNo. Len. Field Value +19:26:41 ============================================================================ +19:26:41 [ 1] [ 4] [0810] +19:26:41 [ 7] [ 10] [0320122548] +19:26:41 [ 11] [ 6] [157948] +19:26:41 [ 39] [ 2] [00] +19:26:41 [ 70] [ 3] [301] +19:26:41 ============================================================================ +19:26:41 Calculate Source COMM Id = 2 +19:26:41 ============================================================================ +19:26:41 + + +waiting on router queue for slot.... +19:26:46 ============================================================================ +19:26:46 Slot Id : <140> +19:26:46 Transaction Type : REQUEST +19:26:46 Received From : +19:26:46 ============================================================================ +19:26:46 FNo. Len. Field Value +19:26:46 ============================================================================ +19:26:46 [ 1] [ 4] [0800] +19:26:46 [ 7] [ 10] [0321023834] +19:26:46 [ 11] [ 6] [193834] +19:26:46 [ 37] [ 12] [57919193834] +19:26:46 [ 70] [ 3] [301] +19:26:46 ============================================================================ +19:26:46 + + +waiting on router queue for slot.... +19:26:46 Sending to : +19:26:46 ============================================================================ +19:26:46 ============================================================================ +19:26:46 Slot Id : <140> +19:26:46 Transaction Type : RESPONSE +19:26:46 Received From : +19:26:46 ============================================================================ +19:26:46 FNo. Len. Field Value +19:26:46 ============================================================================ +19:26:46 [ 1] [ 4] [0810] +19:26:46 [ 7] [ 10] [0321023834] +19:26:46 [ 11] [ 6] [193834] +19:26:46 [ 37] [ 12] [579191938340] +19:26:46 [ 39] [ 2] [00] +19:26:46 [ 70] [ 3] [810] +19:26:46 ============================================================================ +19:26:46 Calculate Source COMM Id = 6 +19:26:46 ============================================================================ +19:26:46 + + +waiting on router queue for slot.... +19:26:53 ============================================================================ +19:26:53 Slot Id : <123> +19:26:53 Transaction Type : REQUEST +19:26:53 Received From : +19:26:53 ============================================================================ +19:26:53 FNo. Len. Field Value +19:26:53 ============================================================================ +19:26:53 [ 1] [ 4] [0200] +19:26:53 [ 2] [ 16] [6213541000672033] +19:26:53 [ 3] [ 6] [011000] +19:26:53 [ 4] [ 12] [000100000000] +19:26:53 [ 7] [ 10] [0320192713] +19:26:53 [ 11] [ 6] [211243] +19:26:53 [ 12] [ 6] [191518] +19:26:53 [ 13] [ 4] [0320] +19:26:53 [ 14] [ 4] [4912] +19:26:53 [ 15] [ 4] [0320] +19:26:53 [ 18] [ 4] [6011] +19:26:53 [ 19] [ 3] [418] +19:26:53 [ 22] [ 3] [021] +19:26:53 [ 25] [ 2] [01] +19:26:53 [ 28] [ 9] [D00002000] +19:26:53 [ 32] [ 6] [198901] +19:26:53 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:53 [ 37] [ 12] [507919211243] +19:26:53 [ 41] [ 8] [01529014] +19:26:53 [ 42] [ 15] [000000041529014] +19:26:53 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:26:53 [ 49] [ 3] [418] +19:26:53 [ 52] [ 16] [DC9D97543C45EABB] +19:26:53 ============================================================================ +19:26:53 + + +waiting on router queue for slot.... +19:26:53 Sending to : +19:26:53 ============================================================================ +19:26:53 Sending to : +19:26:53 ============================================================================ +19:26:54 ============================================================================ +19:26:54 Slot Id : <123> +19:26:54 Transaction Type : REQUEST +19:26:54 Received From : +19:26:54 ============================================================================ +19:26:54 FNo. Len. Field Value +19:26:54 ============================================================================ +19:26:54 [ 1] [ 4] [0200] +19:26:54 [ 2] [ 16] [6213541000672033] +19:26:54 [ 3] [ 6] [011000] +19:26:54 [ 4] [ 12] [000100000000] +19:26:54 [ 7] [ 10] [0320192713] +19:26:54 [ 11] [ 6] [211243] +19:26:54 [ 12] [ 6] [191518] +19:26:54 [ 13] [ 4] [0320] +19:26:54 [ 14] [ 4] [4912] +19:26:54 [ 15] [ 4] [0320] +19:26:54 [ 18] [ 4] [6011] +19:26:54 [ 19] [ 3] [418] +19:26:54 [ 22] [ 3] [021] +19:26:54 [ 25] [ 2] [01] +19:26:54 [ 28] [ 9] [D00002000] +19:26:54 [ 32] [ 6] [198901] +19:26:54 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:54 [ 37] [ 12] [507919211243] +19:26:54 [ 41] [ 8] [01529014] +19:26:54 [ 42] [ 15] [000000041529014] +19:26:54 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:26:54 [ 49] [ 3] [418] +19:26:54 [ 52] [ 16] [DC9D97543C45EABB] +19:26:54 ============================================================================ +19:26:54 + + +waiting on router queue for slot.... +19:26:54 Sending to : +19:26:54 ============================================================================ +19:26:54 ============================================================================ +19:26:54 Slot Id : <123> +19:26:54 Transaction Type : REQUEST +19:26:54 Received From : +19:26:54 ============================================================================ +19:26:54 FNo. Len. Field Value +19:26:54 ============================================================================ +19:26:54 [ 1] [ 4] [0200] +19:26:54 [ 2] [ 16] [6213541000672033] +19:26:54 [ 3] [ 6] [011000] +19:26:54 [ 4] [ 12] [000100000000] +19:26:54 [ 7] [ 10] [0320192713] +19:26:54 [ 11] [ 6] [211243] +19:26:54 [ 12] [ 6] [191518] +19:26:54 [ 13] [ 4] [0320] +19:26:54 [ 14] [ 4] [4912] +19:26:54 [ 15] [ 4] [0320] +19:26:54 [ 18] [ 4] [6011] +19:26:54 [ 19] [ 3] [418] +19:26:54 [ 22] [ 3] [021] +19:26:54 [ 25] [ 2] [01] +19:26:54 [ 28] [ 9] [D00002000] +19:26:54 [ 32] [ 6] [198901] +19:26:54 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:54 [ 37] [ 12] [507919211243] +19:26:54 [ 41] [ 8] [01529014] +19:26:54 [ 42] [ 15] [000000041529014] +19:26:54 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:26:54 [ 49] [ 3] [418] +19:26:54 [ 52] [ 16] [3D520585CA77A566] +19:26:54 ============================================================================ +19:26:54 + + +waiting on router queue for slot.... +19:26:54 Sending to : <0> +19:26:54 ============================================================================ +19:26:54 ============================================================================ +19:26:54 Slot Id : <123> +19:26:54 Transaction Type : RESPONSE +19:26:54 Received From : +19:26:54 ============================================================================ +19:26:54 FNo. Len. Field Value +19:26:54 ============================================================================ +19:26:54 [ 1] [ 4] [0210] +19:26:54 [ 2] [ 16] [6213541000672033] +19:26:54 [ 3] [ 6] [011000] +19:26:54 [ 4] [ 12] [000100000000] +19:26:54 [ 7] [ 10] [0320192713] +19:26:54 [ 11] [ 6] [211243] +19:26:54 [ 12] [ 6] [191518] +19:26:54 [ 13] [ 4] [0320] +19:26:54 [ 15] [ 4] [0320] +19:26:54 [ 18] [ 4] [6011] +19:26:54 [ 19] [ 3] [418] +19:26:54 [ 32] [ 6] [198901] +19:26:54 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:54 [ 37] [ 12] [507919211243] +19:26:54 [ 38] [ 6] [780006] +19:26:54 [ 39] [ 2] [00] +19:26:54 [ 41] [ 8] [01529014] +19:26:54 [ 49] [ 3] [418] +19:26:54 [ 54] [ 40] [1001418C0001243648471002418C000124364847] +19:26:54 ============================================================================ +19:26:54 Sending to : +19:26:54 ============================================================================ +19:26:54 + + +waiting on router queue for slot.... +19:26:55 ============================================================================ +19:26:55 Slot Id : <123> +19:26:55 Transaction Type : RESPONSE +19:26:55 Received From : +19:26:55 ============================================================================ +19:26:55 FNo. Len. Field Value +19:26:55 ============================================================================ +19:26:55 [ 1] [ 4] [0210] +19:26:55 [ 2] [ 16] [6213541000672033] +19:26:55 [ 3] [ 6] [011000] +19:26:55 [ 4] [ 12] [000100000000] +19:26:55 [ 7] [ 10] [0320192713] +19:26:55 [ 11] [ 6] [211243] +19:26:55 [ 12] [ 6] [191518] +19:26:55 [ 13] [ 4] [0320] +19:26:55 [ 15] [ 4] [0320] +19:26:55 [ 18] [ 4] [6011] +19:26:55 [ 19] [ 3] [418] +19:26:55 [ 32] [ 6] [198901] +19:26:55 [ 35] [ 32] [6213541000672033=491212017203169] +19:26:55 [ 37] [ 12] [507919211243] +19:26:55 [ 38] [ 6] [780006] +19:26:55 [ 39] [ 2] [00] +19:26:55 [ 41] [ 8] [01529014] +19:26:55 [ 49] [ 3] [418] +19:26:55 [ 54] [ 40] [1001418C0001243648471002418C000124364847] +19:26:55 ============================================================================ +19:26:55 Calculate Source COMM Id = 5 +19:26:55 ============================================================================ +19:26:55 + + +waiting on router queue for slot.... +19:26:57 ============================================================================ +19:26:57 Slot Id : <147> +19:26:57 Transaction Type : REQUEST +19:26:57 Received From : +19:26:57 ============================================================================ +19:26:57 FNo. Len. Field Value +19:26:57 ============================================================================ +19:26:57 [ 1] [ 4] [0800] +19:26:57 [ 7] [ 10] [0320122603] +19:26:57 [ 11] [ 6] [157949] +19:26:57 [ 70] [ 3] [301] +19:26:57 ============================================================================ +19:26:57 + + +waiting on router queue for slot.... +19:26:57 Sending to : +19:26:57 ============================================================================ +19:26:57 ============================================================================ +19:26:57 Slot Id : <147> +19:26:57 Transaction Type : RESPONSE +19:26:57 Received From : +19:26:57 ============================================================================ +19:26:57 FNo. Len. Field Value +19:26:57 ============================================================================ +19:26:57 [ 1] [ 4] [0810] +19:26:57 [ 7] [ 10] [0320122603] +19:26:57 [ 11] [ 6] [157949] +19:26:57 [ 39] [ 2] [00] +19:26:57 [ 70] [ 3] [301] +19:26:57 ============================================================================ +19:26:57 Calculate Source COMM Id = 2 +19:26:57 ============================================================================ +19:26:57 + + +waiting on router queue for slot.... +19:27:12 ============================================================================ +19:27:12 Slot Id : <117> +19:27:12 Transaction Type : REQUEST +19:27:12 Received From : +19:27:12 ============================================================================ +19:27:12 FNo. Len. Field Value +19:27:12 ============================================================================ +19:27:12 [ 1] [ 4] [0800] +19:27:12 [ 7] [ 10] [0320122619] +19:27:12 [ 11] [ 6] [157950] +19:27:12 [ 70] [ 3] [301] +19:27:12 ============================================================================ +19:27:12 + + +waiting on router queue for slot.... +19:27:12 Sending to : +19:27:12 ============================================================================ +19:27:12 ============================================================================ +19:27:12 Slot Id : <117> +19:27:12 Transaction Type : RESPONSE +19:27:12 Received From : +19:27:12 ============================================================================ +19:27:12 FNo. Len. Field Value +19:27:12 ============================================================================ +19:27:12 [ 1] [ 4] [0810] +19:27:12 [ 7] [ 10] [0320122619] +19:27:12 [ 11] [ 6] [157950] +19:27:12 [ 39] [ 2] [00] +19:27:12 [ 70] [ 3] [301] +19:27:12 ============================================================================ +19:27:12 Calculate Source COMM Id = 2 +19:27:12 ============================================================================ +19:27:12 + + +waiting on router queue for slot.... +19:27:17 ============================================================================ +19:27:17 Slot Id : <132> +19:27:17 Transaction Type : REQUEST +19:27:17 Received From : +19:27:17 ============================================================================ +19:27:17 FNo. Len. Field Value +19:27:17 ============================================================================ +19:27:17 [ 1] [ 4] [0800] +19:27:17 [ 2] [ 5] [02531] +19:27:17 [ 3] [ 6] [579198] +19:27:17 [ 7] [ 10] [0320122717] +19:27:17 [ 11] [ 6] [807541] +19:27:17 [ 15] [ 10] [0320122717] +19:27:17 [ 37] [ 11] [57919807541] +19:27:17 [ 70] [ 3] [001] +19:27:17 ============================================================================ +19:27:17 + + +waiting on router queue for slot.... +19:27:17 ============================================================================ +19:27:17 Slot Id : <132> +19:27:17 Transaction Type : RESPONSE +19:27:17 Received From : +19:27:17 ============================================================================ +19:27:17 FNo. Len. Field Value +19:27:17 ============================================================================ +19:27:17 [ 1] [ 4] [0810] +19:27:17 [ 7] [ 10] [0320122717] +19:27:17 [ 11] [ 6] [807541] +19:27:17 [ 15] [ 4] [0320] +19:27:17 [ 37] [ 12] [57919807541] +19:27:17 [ 39] [ 2] [00] +19:27:17 [ 70] [ 3] [001] +19:27:17 ============================================================================ +19:27:17 Sending to : +19:27:17 ============================================================================ +19:27:17 + + +waiting on router queue for slot.... +19:27:22 ============================================================================ +19:27:22 Slot Id : <122> +19:27:22 Transaction Type : REQUEST +19:27:22 Received From : +19:27:22 ============================================================================ +19:27:22 FNo. Len. Field Value +19:27:22 ============================================================================ +19:27:22 [ 1] [ 4] [0200] +19:27:22 [ 2] [ 16] [6213541000672033] +19:27:22 [ 3] [ 6] [011000] +19:27:22 [ 4] [ 12] [000100000000] +19:27:22 [ 7] [ 10] [0320192742] +19:27:22 [ 11] [ 6] [211247] +19:27:22 [ 12] [ 6] [191546] +19:27:22 [ 13] [ 4] [0320] +19:27:22 [ 14] [ 4] [4912] +19:27:22 [ 15] [ 4] [0320] +19:27:22 [ 18] [ 4] [6011] +19:27:22 [ 19] [ 3] [418] +19:27:22 [ 22] [ 3] [021] +19:27:22 [ 25] [ 2] [01] +19:27:22 [ 28] [ 9] [D00002000] +19:27:22 [ 32] [ 6] [198901] +19:27:22 [ 35] [ 32] [6213541000672033=491212017203169] +19:27:22 [ 37] [ 12] [507919211247] +19:27:22 [ 41] [ 8] [01529014] +19:27:22 [ 42] [ 15] [000000041529014] +19:27:22 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:27:22 [ 49] [ 3] [418] +19:27:22 [ 52] [ 16] [DC9D97543C45EABB] +19:27:22 ============================================================================ +19:27:22 + + +waiting on router queue for slot.... +19:27:22 Sending to : +19:27:22 ============================================================================ +19:27:22 Sending to : +19:27:22 ============================================================================ +19:27:22 ============================================================================ +19:27:22 Slot Id : <122> +19:27:22 Transaction Type : REQUEST +19:27:22 Received From : +19:27:22 ============================================================================ +19:27:22 FNo. Len. Field Value +19:27:22 ============================================================================ +19:27:22 [ 1] [ 4] [0200] +19:27:22 [ 2] [ 16] [6213541000672033] +19:27:22 [ 3] [ 6] [011000] +19:27:22 [ 4] [ 12] [000100000000] +19:27:22 [ 7] [ 10] [0320192742] +19:27:22 [ 11] [ 6] [211247] +19:27:22 [ 12] [ 6] [191546] +19:27:22 [ 13] [ 4] [0320] +19:27:22 [ 14] [ 4] [4912] +19:27:22 [ 15] [ 4] [0320] +19:27:22 [ 18] [ 4] [6011] +19:27:22 [ 19] [ 3] [418] +19:27:22 [ 22] [ 3] [021] +19:27:22 [ 25] [ 2] [01] +19:27:22 [ 28] [ 9] [D00002000] +19:27:22 [ 32] [ 6] [198901] +19:27:22 [ 35] [ 32] [6213541000672033=491212017203169] +19:27:22 [ 37] [ 12] [507919211247] +19:27:22 [ 41] [ 8] [01529014] +19:27:22 [ 42] [ 15] [000000041529014] +19:27:22 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:27:22 [ 49] [ 3] [418] +19:27:22 [ 52] [ 16] [DC9D97543C45EABB] +19:27:22 ============================================================================ +19:27:22 + + +waiting on router queue for slot.... +19:27:22 Sending to : +19:27:22 ============================================================================ +19:27:22 ============================================================================ +19:27:22 Slot Id : <122> +19:27:22 Transaction Type : REQUEST +19:27:22 Received From : +19:27:22 ============================================================================ +19:27:22 FNo. Len. Field Value +19:27:22 ============================================================================ +19:27:22 [ 1] [ 4] [0200] +19:27:22 [ 2] [ 16] [6213541000672033] +19:27:22 [ 3] [ 6] [011000] +19:27:22 [ 4] [ 12] [000100000000] +19:27:22 [ 7] [ 10] [0320192742] +19:27:22 [ 11] [ 6] [211247] +19:27:22 [ 12] [ 6] [191546] +19:27:22 [ 13] [ 4] [0320] +19:27:22 [ 14] [ 4] [4912] +19:27:22 [ 15] [ 4] [0320] +19:27:22 [ 18] [ 4] [6011] +19:27:22 [ 19] [ 3] [418] +19:27:22 [ 22] [ 3] [021] +19:27:22 [ 25] [ 2] [01] +19:27:22 [ 28] [ 9] [D00002000] +19:27:22 [ 32] [ 6] [198901] +19:27:22 [ 35] [ 32] [6213541000672033=491212017203169] +19:27:22 [ 37] [ 12] [507919211247] +19:27:22 [ 41] [ 8] [01529014] +19:27:22 [ 42] [ 15] [000000041529014] +19:27:22 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:27:22 [ 49] [ 3] [418] +19:27:22 [ 52] [ 16] [3D520585CA77A566] +19:27:22 ============================================================================ +19:27:22 + + +waiting on router queue for slot.... +19:27:22 Sending to : <0> +19:27:22 ============================================================================ +19:27:23 ============================================================================ +19:27:23 Slot Id : <122> +19:27:23 Transaction Type : RESPONSE +19:27:23 Received From : +19:27:23 ============================================================================ +19:27:23 FNo. Len. Field Value +19:27:23 ============================================================================ +19:27:23 [ 1] [ 4] [0210] +19:27:23 [ 2] [ 16] [6213541000672033] +19:27:23 [ 3] [ 6] [011000] +19:27:23 [ 4] [ 12] [000100000000] +19:27:23 [ 7] [ 10] [0320192742] +19:27:23 [ 11] [ 6] [211247] +19:27:23 [ 12] [ 6] [191546] +19:27:23 [ 13] [ 4] [0320] +19:27:23 [ 15] [ 4] [0320] +19:27:23 [ 18] [ 4] [6011] +19:27:23 [ 19] [ 3] [418] +19:27:23 [ 32] [ 6] [198901] +19:27:23 [ 35] [ 32] [6213541000672033=491212017203169] +19:27:23 [ 37] [ 12] [507919211247] +19:27:23 [ 38] [ 6] [302573] +19:27:23 [ 39] [ 2] [00] +19:27:23 [ 41] [ 8] [01529014] +19:27:23 [ 49] [ 3] [418] +19:27:23 [ 54] [ 40] [1001418C0000241648471002418C000024164847] +19:27:23 ============================================================================ +19:27:23 Sending to : +19:27:23 ============================================================================ +19:27:23 + + +waiting on router queue for slot.... +19:27:23 ============================================================================ +19:27:23 Slot Id : <161> +19:27:23 Transaction Type : REQUEST +19:27:23 Received From : +19:27:23 ============================================================================ +19:27:23 FNo. Len. Field Value +19:27:23 ============================================================================ +19:27:23 [ 1] [ 4] [0800] +19:27:23 [ 7] [ 10] [0320122629] +19:27:23 [ 11] [ 6] [157951] +19:27:23 [ 70] [ 3] [301] +19:27:23 ============================================================================ +19:27:23 + + +waiting on router queue for slot.... +19:27:23 Sending to : +19:27:23 ============================================================================ +19:27:23 ============================================================================ +19:27:23 Slot Id : <161> +19:27:23 Transaction Type : RESPONSE +19:27:23 Received From : +19:27:23 ============================================================================ +19:27:23 FNo. Len. Field Value +19:27:23 ============================================================================ +19:27:23 [ 1] [ 4] [0810] +19:27:23 [ 7] [ 10] [0320122629] +19:27:23 [ 11] [ 6] [157951] +19:27:23 [ 39] [ 2] [00] +19:27:23 [ 70] [ 3] [301] +19:27:23 ============================================================================ +19:27:23 Calculate Source COMM Id = 2 +19:27:23 ============================================================================ +19:27:23 + + +waiting on router queue for slot.... +19:27:24 ============================================================================ +19:27:24 Slot Id : <122> +19:27:24 Transaction Type : RESPONSE +19:27:24 Received From : +19:27:24 ============================================================================ +19:27:24 FNo. Len. Field Value +19:27:24 ============================================================================ +19:27:24 [ 1] [ 4] [0210] +19:27:24 [ 2] [ 16] [6213541000672033] +19:27:24 [ 3] [ 6] [011000] +19:27:24 [ 4] [ 12] [000100000000] +19:27:24 [ 7] [ 10] [0320192742] +19:27:24 [ 11] [ 6] [211247] +19:27:24 [ 12] [ 6] [191546] +19:27:24 [ 13] [ 4] [0320] +19:27:24 [ 15] [ 4] [0320] +19:27:24 [ 18] [ 4] [6011] +19:27:24 [ 19] [ 3] [418] +19:27:24 [ 32] [ 6] [198901] +19:27:24 [ 35] [ 32] [6213541000672033=491212017203169] +19:27:24 [ 37] [ 12] [507919211247] +19:27:24 [ 38] [ 6] [302573] +19:27:24 [ 39] [ 2] [00] +19:27:24 [ 41] [ 8] [01529014] +19:27:24 [ 49] [ 3] [418] +19:27:24 [ 54] [ 40] [1001418C0000241648471002418C000024164847] +19:27:24 ============================================================================ +19:27:24 Calculate Source COMM Id = 5 +19:27:24 ============================================================================ +19:27:24 + + +waiting on router queue for slot.... +19:27:24 ============================================================================ +19:27:24 Slot Id : <162> +19:27:24 Transaction Type : REQUEST +19:27:24 Received From : +19:27:24 ============================================================================ +19:27:24 FNo. Len. Field Value +19:27:24 ============================================================================ +19:27:24 [ 1] [ 4] [0200] +19:27:24 [ 2] [ 16] [6213544002188792] +19:27:24 [ 3] [ 6] [010000] +19:27:24 [ 4] [ 12] [000010000000] +19:27:24 [ 7] [ 10] [0320192514] +19:27:24 [ 11] [ 6] [956151] +19:27:24 [ 12] [ 6] [192514] +19:27:24 [ 13] [ 4] [0320] +19:27:24 [ 15] [ 4] [0320] +19:27:24 [ 18] [ 4] [6011] +19:27:24 [ 19] [ 3] [418] +19:27:24 [ 22] [ 3] [021] +19:27:24 [ 25] [ 2] [01] +19:27:24 [ 28] [ 9] [D00002000] +19:27:24 [ 32] [ 6] [668899] +19:27:24 [ 35] [ 32] [6213544002188792=491212018879562] +19:27:24 [ 37] [ 12] [507900869022] +19:27:24 [ 41] [ 8] [03018001] +19:27:24 [ 42] [ 15] [APT ] +19:27:24 [ 43] [ 40] [ CHAMPA HOTEL ATTAPEU L] +19:27:24 [ 49] [ 3] [418] +19:27:24 [ 52] [ 16] [C7770353D65F795E] +19:27:24 ============================================================================ +19:27:24 + + +waiting on router queue for slot.... +19:27:24 Sending to : +19:27:24 ============================================================================ +19:27:24 Sending to : +19:27:24 ============================================================================ +19:27:25 ============================================================================ +19:27:25 Slot Id : <162> +19:27:25 Transaction Type : REQUEST +19:27:25 Received From : +19:27:25 ============================================================================ +19:27:25 FNo. Len. Field Value +19:27:25 ============================================================================ +19:27:25 [ 1] [ 4] [0200] +19:27:25 [ 2] [ 16] [6213544002188792] +19:27:25 [ 3] [ 6] [010000] +19:27:25 [ 4] [ 12] [000010000000] +19:27:25 [ 7] [ 10] [0320192514] +19:27:25 [ 11] [ 6] [956151] +19:27:25 [ 12] [ 6] [192514] +19:27:25 [ 13] [ 4] [0320] +19:27:25 [ 15] [ 4] [0320] +19:27:25 [ 18] [ 4] [6011] +19:27:25 [ 19] [ 3] [418] +19:27:25 [ 22] [ 3] [021] +19:27:25 [ 25] [ 2] [01] +19:27:25 [ 28] [ 9] [D00002000] +19:27:25 [ 32] [ 6] [668899] +19:27:25 [ 35] [ 32] [6213544002188792=491212018879562] +19:27:25 [ 37] [ 12] [507900869022] +19:27:25 [ 41] [ 8] [03018001] +19:27:25 [ 42] [ 15] [APT ] +19:27:25 [ 43] [ 40] [ CHAMPA HOTEL ATTAPEU L] +19:27:25 [ 49] [ 3] [418] +19:27:25 [ 52] [ 16] [C7770353D65F795E] +19:27:25 ============================================================================ +19:27:25 + + +waiting on router queue for slot.... +19:27:25 Sending to : +19:27:25 ============================================================================ +19:27:25 ============================================================================ +19:27:25 Slot Id : <162> +19:27:25 Transaction Type : REQUEST +19:27:25 Received From : +19:27:25 ============================================================================ +19:27:25 FNo. Len. Field Value +19:27:25 ============================================================================ +19:27:25 [ 1] [ 4] [0200] +19:27:25 [ 2] [ 16] [6213544002188792] +19:27:25 [ 3] [ 6] [010000] +19:27:25 [ 4] [ 12] [000010000000] +19:27:25 [ 7] [ 10] [0320192514] +19:27:25 [ 11] [ 6] [956151] +19:27:25 [ 12] [ 6] [192514] +19:27:25 [ 13] [ 4] [0320] +19:27:25 [ 15] [ 4] [0320] +19:27:25 [ 18] [ 4] [6011] +19:27:25 [ 19] [ 3] [418] +19:27:25 [ 22] [ 3] [021] +19:27:25 [ 25] [ 2] [01] +19:27:25 [ 28] [ 9] [D00002000] +19:27:25 [ 32] [ 6] [668899] +19:27:25 [ 35] [ 32] [6213544002188792=491212018879562] +19:27:25 [ 37] [ 12] [507900869022] +19:27:25 [ 41] [ 8] [03018001] +19:27:25 [ 42] [ 15] [APT ] +19:27:25 [ 43] [ 40] [ CHAMPA HOTEL ATTAPEU L] +19:27:25 [ 49] [ 3] [418] +19:27:25 [ 52] [ 16] [E2030B5C601FAF90] +19:27:25 ============================================================================ +19:27:25 + + +waiting on router queue for slot.... +19:27:25 Sending to : <0> +19:27:25 ============================================================================ +19:27:26 ============================================================================ +19:27:26 Slot Id : <162> +19:27:26 Transaction Type : RESPONSE +19:27:26 Received From : +19:27:26 ============================================================================ +19:27:26 FNo. Len. Field Value +19:27:26 ============================================================================ +19:27:26 [ 1] [ 4] [0210] +19:27:26 [ 2] [ 16] [6213544002188792] +19:27:26 [ 3] [ 6] [010000] +19:27:26 [ 4] [ 12] [000010000000] +19:27:26 [ 7] [ 10] [0320192514] +19:27:26 [ 11] [ 6] [956151] +19:27:26 [ 12] [ 6] [192514] +19:27:26 [ 13] [ 4] [0320] +19:27:26 [ 15] [ 4] [0320] +19:27:26 [ 18] [ 4] [6011] +19:27:26 [ 19] [ 3] [418] +19:27:26 [ 32] [ 6] [668899] +19:27:26 [ 35] [ 32] [6213544002188792=491212018879562] +19:27:26 [ 37] [ 12] [507900869022] +19:27:26 [ 38] [ 6] [138984] +19:27:26 [ 39] [ 2] [00] +19:27:26 [ 41] [ 8] [03018001] +19:27:26 [ 49] [ 3] [418] +19:27:26 [ 54] [ 40] [0001418C0001472000000002418C000147200000] +19:27:26 ============================================================================ +19:27:26 Sending to : +19:27:26 ============================================================================ +19:27:26 + + +waiting on router queue for slot.... +19:27:27 ============================================================================ +19:27:27 Slot Id : <162> +19:27:27 Transaction Type : RESPONSE +19:27:27 Received From : +19:27:27 ============================================================================ +19:27:27 FNo. Len. Field Value +19:27:27 ============================================================================ +19:27:27 [ 1] [ 4] [0210] +19:27:27 [ 2] [ 16] [6213544002188792] +19:27:27 [ 3] [ 6] [010000] +19:27:27 [ 4] [ 12] [000010000000] +19:27:27 [ 7] [ 10] [0320192514] +19:27:27 [ 11] [ 6] [956151] +19:27:27 [ 12] [ 6] [192514] +19:27:27 [ 13] [ 4] [0320] +19:27:27 [ 15] [ 4] [0320] +19:27:27 [ 18] [ 4] [6011] +19:27:27 [ 19] [ 3] [418] +19:27:27 [ 32] [ 6] [668899] +19:27:27 [ 35] [ 32] [6213544002188792=491212018879562] +19:27:27 [ 37] [ 12] [507900869022] +19:27:27 [ 38] [ 6] [138984] +19:27:27 [ 39] [ 2] [00] +19:27:27 [ 41] [ 8] [03018001] +19:27:27 [ 49] [ 3] [418] +19:27:27 [ 54] [ 40] [0001418C0001472000000002418C000147200000] +19:27:27 ============================================================================ +19:27:27 Calculate Source COMM Id = 4 +19:27:27 ============================================================================ +19:27:27 + + +waiting on router queue for slot.... +19:27:29 ============================================================================ +19:27:29 Slot Id : <166> +19:27:29 Transaction Type : REQUEST +19:27:29 Received From : +19:27:29 ============================================================================ +19:27:29 FNo. Len. Field Value +19:27:29 ============================================================================ +19:27:29 [ 1] [ 4] [0200] +19:27:29 [ 2] [ 16] [6213545001076649] +19:27:29 [ 3] [ 6] [301000] +19:27:29 [ 4] [ 12] [000000000000] +19:27:29 [ 7] [ 10] [0320192518] +19:27:29 [ 11] [ 6] [956155] +19:27:29 [ 12] [ 6] [192518] +19:27:29 [ 13] [ 4] [0320] +19:27:29 [ 15] [ 4] [0320] +19:27:29 [ 18] [ 4] [6011] +19:27:29 [ 19] [ 3] [418] +19:27:29 [ 22] [ 3] [021] +19:27:29 [ 25] [ 2] [01] +19:27:29 [ 28] [ 9] [D00000000] +19:27:29 [ 32] [ 6] [668899] +19:27:29 [ 35] [ 32] [6213545001076649=491212017664692] +19:27:29 [ 37] [ 12] [507900146950] +19:27:29 [ 41] [ 8] [03020005] +19:27:29 [ 42] [ 15] [APT ] +19:27:29 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:27:29 [ 49] [ 3] [418] +19:27:29 [ 52] [ 16] [D4A49124A4666741] +19:27:29 ============================================================================ +19:27:29 + + +waiting on router queue for slot.... +19:27:29 Sending to : +19:27:29 ============================================================================ +19:27:29 Sending to : +19:27:29 ============================================================================ +19:27:29 ============================================================================ +19:27:29 Slot Id : <166> +19:27:29 Transaction Type : REQUEST +19:27:29 Received From : +19:27:29 ============================================================================ +19:27:29 FNo. Len. Field Value +19:27:29 ============================================================================ +19:27:29 [ 1] [ 4] [0200] +19:27:29 [ 2] [ 16] [6213545001076649] +19:27:29 [ 3] [ 6] [301000] +19:27:29 [ 4] [ 12] [000000000000] +19:27:29 [ 7] [ 10] [0320192518] +19:27:29 [ 11] [ 6] [956155] +19:27:29 [ 12] [ 6] [192518] +19:27:29 [ 13] [ 4] [0320] +19:27:29 [ 15] [ 4] [0320] +19:27:29 [ 18] [ 4] [6011] +19:27:29 [ 19] [ 3] [418] +19:27:29 [ 22] [ 3] [021] +19:27:29 [ 25] [ 2] [01] +19:27:29 [ 28] [ 9] [D00000000] +19:27:29 [ 32] [ 6] [668899] +19:27:29 [ 35] [ 32] [6213545001076649=491212017664692] +19:27:29 [ 37] [ 12] [507900146950] +19:27:29 [ 41] [ 8] [03020005] +19:27:29 [ 42] [ 15] [APT ] +19:27:29 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:27:29 [ 49] [ 3] [418] +19:27:29 [ 52] [ 16] [D4A49124A4666741] +19:27:29 ============================================================================ +19:27:29 + + +waiting on router queue for slot.... +19:27:29 Sending to : +19:27:29 ============================================================================ +19:27:29 ============================================================================ +19:27:29 Slot Id : <166> +19:27:29 Transaction Type : REQUEST +19:27:29 Received From : +19:27:29 ============================================================================ +19:27:29 FNo. Len. Field Value +19:27:29 ============================================================================ +19:27:29 [ 1] [ 4] [0200] +19:27:29 [ 2] [ 16] [6213545001076649] +19:27:29 [ 3] [ 6] [301000] +19:27:29 [ 4] [ 12] [000000000000] +19:27:29 [ 7] [ 10] [0320192518] +19:27:29 [ 11] [ 6] [956155] +19:27:29 [ 12] [ 6] [192518] +19:27:29 [ 13] [ 4] [0320] +19:27:29 [ 15] [ 4] [0320] +19:27:29 [ 18] [ 4] [6011] +19:27:29 [ 19] [ 3] [418] +19:27:29 [ 22] [ 3] [021] +19:27:29 [ 25] [ 2] [01] +19:27:29 [ 28] [ 9] [D00000000] +19:27:29 [ 32] [ 6] [668899] +19:27:29 [ 35] [ 32] [6213545001076649=491212017664692] +19:27:29 [ 37] [ 12] [507900146950] +19:27:29 [ 41] [ 8] [03020005] +19:27:29 [ 42] [ 15] [APT ] +19:27:29 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:27:29 [ 49] [ 3] [418] +19:27:29 [ 52] [ 16] [9DCF5EEC6598EFB7] +19:27:29 ============================================================================ +19:27:29 + + +waiting on router queue for slot.... +19:27:29 Sending to : <0> +19:27:29 ============================================================================ +19:27:30 ============================================================================ +19:27:30 Slot Id : <166> +19:27:30 Transaction Type : RESPONSE +19:27:30 Received From : +19:27:30 ============================================================================ +19:27:30 FNo. Len. Field Value +19:27:30 ============================================================================ +19:27:30 [ 1] [ 4] [0210] +19:27:30 [ 2] [ 16] [6213545001076649] +19:27:30 [ 3] [ 6] [301000] +19:27:30 [ 4] [ 12] [000000000000] +19:27:30 [ 7] [ 10] [0320192518] +19:27:30 [ 11] [ 6] [956155] +19:27:30 [ 12] [ 6] [192518] +19:27:30 [ 13] [ 4] [0320] +19:27:30 [ 15] [ 4] [0320] +19:27:30 [ 18] [ 4] [6011] +19:27:30 [ 19] [ 3] [418] +19:27:30 [ 32] [ 6] [668899] +19:27:30 [ 35] [ 32] [6213545001076649=491212017664692] +19:27:30 [ 37] [ 12] [507900146950] +19:27:30 [ 38] [ 6] [449350] +19:27:30 [ 39] [ 2] [00] +19:27:30 [ 41] [ 8] [03020005] +19:27:30 [ 49] [ 3] [418] +19:27:30 [ 54] [ 40] [1001418C0002997472921002418C000299747292] +19:27:30 ============================================================================ +19:27:30 Sending to : +19:27:30 ============================================================================ +19:27:30 + + +waiting on router queue for slot.... +19:27:31 ============================================================================ +19:27:31 Slot Id : <166> +19:27:31 Transaction Type : RESPONSE +19:27:31 Received From : +19:27:31 ============================================================================ +19:27:31 FNo. Len. Field Value +19:27:31 ============================================================================ +19:27:31 [ 1] [ 4] [0210] +19:27:31 [ 2] [ 16] [6213545001076649] +19:27:31 [ 3] [ 6] [301000] +19:27:31 [ 4] [ 12] [000000000000] +19:27:31 [ 7] [ 10] [0320192518] +19:27:31 [ 11] [ 6] [956155] +19:27:31 [ 12] [ 6] [192518] +19:27:31 [ 13] [ 4] [0320] +19:27:31 [ 15] [ 4] [0320] +19:27:31 [ 18] [ 4] [6011] +19:27:31 [ 19] [ 3] [418] +19:27:31 [ 32] [ 6] [668899] +19:27:31 [ 35] [ 32] [6213545001076649=491212017664692] +19:27:31 [ 37] [ 12] [507900146950] +19:27:31 [ 38] [ 6] [449350] +19:27:31 [ 39] [ 2] [00] +19:27:31 [ 41] [ 8] [03020005] +19:27:31 [ 49] [ 3] [418] +19:27:31 [ 54] [ 40] [1001418C0002997472921002418C000299747292] +19:27:31 ============================================================================ +19:27:31 Calculate Source COMM Id = 4 +19:27:31 ============================================================================ +19:27:31 + + +waiting on router queue for slot.... +19:27:34 ============================================================================ +19:27:34 Slot Id : <143> +19:27:34 Transaction Type : REQUEST +19:27:34 Received From : +19:27:34 ============================================================================ +19:27:34 FNo. Len. Field Value +19:27:34 ============================================================================ +19:27:34 [ 1] [ 4] [0800] +19:27:34 [ 7] [ 10] [0320122640] +19:27:34 [ 11] [ 6] [157952] +19:27:34 [ 70] [ 3] [301] +19:27:34 ============================================================================ +19:27:34 + + +waiting on router queue for slot.... +19:27:34 Sending to : +19:27:34 ============================================================================ +19:27:34 ============================================================================ +19:27:34 Slot Id : <143> +19:27:34 Transaction Type : RESPONSE +19:27:34 Received From : +19:27:34 ============================================================================ +19:27:34 FNo. Len. Field Value +19:27:34 ============================================================================ +19:27:34 [ 1] [ 4] [0810] +19:27:34 [ 7] [ 10] [0320122640] +19:27:34 [ 11] [ 6] [157952] +19:27:34 [ 39] [ 2] [00] +19:27:34 [ 70] [ 3] [301] +19:27:34 ============================================================================ +19:27:34 Calculate Source COMM Id = 2 +19:27:34 ============================================================================ +19:27:34 + + +waiting on router queue for slot.... +19:27:45 ============================================================================ +19:27:45 Slot Id : <154> +19:27:45 Transaction Type : REQUEST +19:27:45 Received From : +19:27:45 ============================================================================ +19:27:45 FNo. Len. Field Value +19:27:45 ============================================================================ +19:27:45 [ 1] [ 4] [0800] +19:27:45 [ 7] [ 10] [0320122651] +19:27:45 [ 11] [ 6] [157953] +19:27:45 [ 70] [ 3] [301] +19:27:45 ============================================================================ +19:27:45 + + +waiting on router queue for slot.... +19:27:45 Sending to : +19:27:45 ============================================================================ +19:27:45 ============================================================================ +19:27:45 Slot Id : <154> +19:27:45 Transaction Type : RESPONSE +19:27:45 Received From : +19:27:45 ============================================================================ +19:27:45 FNo. Len. Field Value +19:27:45 ============================================================================ +19:27:45 [ 1] [ 4] [0810] +19:27:45 [ 7] [ 10] [0320122651] +19:27:45 [ 11] [ 6] [157953] +19:27:45 [ 39] [ 2] [00] +19:27:45 [ 70] [ 3] [301] +19:27:45 ============================================================================ +19:27:45 Calculate Source COMM Id = 2 +19:27:45 ============================================================================ +19:27:45 + + +waiting on router queue for slot.... +19:27:46 ============================================================================ +19:27:46 Slot Id : <145> +19:27:46 Transaction Type : REQUEST +19:27:46 Received From : +19:27:46 ============================================================================ +19:27:46 FNo. Len. Field Value +19:27:46 ============================================================================ +19:27:46 [ 1] [ 4] [0200] +19:27:46 [ 2] [ 16] [6213541000672033] +19:27:46 [ 3] [ 6] [011000] +19:27:46 [ 4] [ 12] [000100000000] +19:27:46 [ 7] [ 10] [0320192806] +19:27:46 [ 11] [ 6] [211254] +19:27:46 [ 12] [ 6] [191610] +19:27:46 [ 13] [ 4] [0320] +19:27:46 [ 14] [ 4] [4912] +19:27:46 [ 15] [ 4] [0320] +19:27:46 [ 18] [ 4] [6011] +19:27:46 [ 19] [ 3] [418] +19:27:46 [ 22] [ 3] [021] +19:27:46 [ 25] [ 2] [01] +19:27:46 [ 28] [ 9] [D00002000] +19:27:46 [ 32] [ 6] [198901] +19:27:46 [ 35] [ 32] [6213541000672033=491212017203169] +19:27:46 [ 37] [ 12] [507919211254] +19:27:46 [ 41] [ 8] [01529014] +19:27:46 [ 42] [ 15] [000000041529014] +19:27:46 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:27:46 [ 49] [ 3] [418] +19:27:46 [ 52] [ 16] [DC9D97543C45EABB] +19:27:46 ============================================================================ +19:27:46 + + +waiting on router queue for slot.... +19:27:46 Sending to : +19:27:46 ============================================================================ +19:27:46 Sending to : +19:27:46 ============================================================================ +19:27:46 ============================================================================ +19:27:46 Slot Id : <145> +19:27:46 Transaction Type : REQUEST +19:27:46 Received From : +19:27:46 ============================================================================ +19:27:46 FNo. Len. Field Value +19:27:46 ============================================================================ +19:27:46 [ 1] [ 4] [0200] +19:27:46 [ 2] [ 16] [6213541000672033] +19:27:46 [ 3] [ 6] [011000] +19:27:46 [ 4] [ 12] [000100000000] +19:27:46 [ 7] [ 10] [0320192806] +19:27:46 [ 11] [ 6] [211254] +19:27:46 [ 12] [ 6] [191610] +19:27:46 [ 13] [ 4] [0320] +19:27:46 [ 14] [ 4] [4912] +19:27:46 [ 15] [ 4] [0320] +19:27:46 [ 18] [ 4] [6011] +19:27:46 [ 19] [ 3] [418] +19:27:46 [ 22] [ 3] [021] +19:27:46 [ 25] [ 2] [01] +19:27:46 [ 28] [ 9] [D00002000] +19:27:46 [ 32] [ 6] [198901] +19:27:46 [ 35] [ 32] [6213541000672033=491212017203169] +19:27:46 [ 37] [ 12] [507919211254] +19:27:46 [ 41] [ 8] [01529014] +19:27:46 [ 42] [ 15] [000000041529014] +19:27:46 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:27:46 [ 49] [ 3] [418] +19:27:46 [ 52] [ 16] [DC9D97543C45EABB] +19:27:46 ============================================================================ +19:27:46 + + +waiting on router queue for slot.... +19:27:46 Sending to : +19:27:46 ============================================================================ +19:27:46 ============================================================================ +19:27:46 Slot Id : <145> +19:27:46 Transaction Type : REQUEST +19:27:46 Received From : +19:27:46 ============================================================================ +19:27:46 FNo. Len. Field Value +19:27:46 ============================================================================ +19:27:46 [ 1] [ 4] [0200] +19:27:46 [ 2] [ 16] [6213541000672033] +19:27:46 [ 3] [ 6] [011000] +19:27:46 [ 4] [ 12] [000100000000] +19:27:46 [ 7] [ 10] [0320192806] +19:27:46 [ 11] [ 6] [211254] +19:27:46 [ 12] [ 6] [191610] +19:27:46 [ 13] [ 4] [0320] +19:27:46 [ 14] [ 4] [4912] +19:27:46 [ 15] [ 4] [0320] +19:27:46 [ 18] [ 4] [6011] +19:27:46 [ 19] [ 3] [418] +19:27:46 [ 22] [ 3] [021] +19:27:46 [ 25] [ 2] [01] +19:27:46 [ 28] [ 9] [D00002000] +19:27:46 [ 32] [ 6] [198901] +19:27:46 [ 35] [ 32] [6213541000672033=491212017203169] +19:27:46 [ 37] [ 12] [507919211254] +19:27:46 [ 41] [ 8] [01529014] +19:27:46 [ 42] [ 15] [000000041529014] +19:27:46 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:27:46 [ 49] [ 3] [418] +19:27:46 [ 52] [ 16] [3D520585CA77A566] +19:27:46 ============================================================================ +19:27:46 + + +waiting on router queue for slot.... +19:27:46 Sending to : <0> +19:27:46 ============================================================================ +19:27:47 ============================================================================ +19:27:47 Slot Id : <145> +19:27:47 Transaction Type : RESPONSE +19:27:47 Received From : +19:27:47 ============================================================================ +19:27:47 FNo. Len. Field Value +19:27:47 ============================================================================ +19:27:47 [ 1] [ 4] [0210] +19:27:47 [ 2] [ 16] [6213541000672033] +19:27:47 [ 3] [ 6] [011000] +19:27:47 [ 4] [ 12] [000100000000] +19:27:47 [ 7] [ 10] [0320192806] +19:27:47 [ 11] [ 6] [211254] +19:27:47 [ 12] [ 6] [191610] +19:27:47 [ 13] [ 4] [0320] +19:27:47 [ 15] [ 4] [0320] +19:27:47 [ 18] [ 4] [6011] +19:27:47 [ 19] [ 3] [418] +19:27:47 [ 32] [ 6] [198901] +19:27:47 [ 35] [ 32] [6213541000672033=491212017203169] +19:27:47 [ 37] [ 12] [507919211254] +19:27:47 [ 38] [ 6] [211254] +19:27:47 [ 39] [ 2] [51] +19:27:47 [ 41] [ 8] [01529014] +19:27:47 [ 49] [ 3] [418] +19:27:47 [ 54] [ 40] [1001418C0000241648471002418C000024164847] +19:27:47 ============================================================================ +19:27:47 Sending to : +19:27:47 ============================================================================ +19:27:47 + + +waiting on router queue for slot.... +19:27:48 ============================================================================ +19:27:48 Slot Id : <145> +19:27:48 Transaction Type : RESPONSE +19:27:48 Received From : +19:27:48 ============================================================================ +19:27:48 FNo. Len. Field Value +19:27:48 ============================================================================ +19:27:48 [ 1] [ 4] [0210] +19:27:48 [ 2] [ 16] [6213541000672033] +19:27:48 [ 3] [ 6] [011000] +19:27:48 [ 4] [ 12] [000100000000] +19:27:48 [ 7] [ 10] [0320192806] +19:27:48 [ 11] [ 6] [211254] +19:27:48 [ 12] [ 6] [191610] +19:27:48 [ 13] [ 4] [0320] +19:27:48 [ 15] [ 4] [0320] +19:27:48 [ 18] [ 4] [6011] +19:27:48 [ 19] [ 3] [418] +19:27:48 [ 32] [ 6] [198901] +19:27:48 [ 35] [ 32] [6213541000672033=491212017203169] +19:27:48 [ 37] [ 12] [507919211254] +19:27:48 [ 38] [ 6] [211254] +19:27:48 [ 39] [ 2] [51] +19:27:48 [ 41] [ 8] [01529014] +19:27:48 [ 49] [ 3] [418] +19:27:48 [ 54] [ 40] [1001418C0000241648471002418C000024164847] +19:27:48 ============================================================================ +19:27:48 Calculate Source COMM Id = 5 +19:27:48 ============================================================================ +19:27:48 + + +waiting on router queue for slot.... +19:27:51 ============================================================================ +19:27:51 Slot Id : <153> +19:27:51 Transaction Type : REQUEST +19:27:51 Received From : +19:27:51 ============================================================================ +19:27:51 FNo. Len. Field Value +19:27:51 ============================================================================ +19:27:51 [ 1] [ 4] [0800] +19:27:51 [ 7] [ 10] [0321023939] +19:27:51 [ 11] [ 6] [193939] +19:27:51 [ 37] [ 12] [57919193939] +19:27:51 [ 70] [ 3] [301] +19:27:51 ============================================================================ +19:27:51 + + +waiting on router queue for slot.... +19:27:51 Sending to : +19:27:51 ============================================================================ +19:27:51 ============================================================================ +19:27:51 Slot Id : <153> +19:27:51 Transaction Type : RESPONSE +19:27:51 Received From : +19:27:51 ============================================================================ +19:27:51 FNo. Len. Field Value +19:27:51 ============================================================================ +19:27:51 [ 1] [ 4] [0810] +19:27:51 [ 7] [ 10] [0321023939] +19:27:51 [ 11] [ 6] [193939] +19:27:51 [ 37] [ 12] [579191939390] +19:27:51 [ 39] [ 2] [00] +19:27:51 [ 70] [ 3] [810] +19:27:51 ============================================================================ +19:27:51 Calculate Source COMM Id = 6 +19:27:51 ============================================================================ +19:27:51 + + +waiting on router queue for slot.... +19:27:55 ============================================================================ +19:27:55 Slot Id : <150> +19:27:55 Transaction Type : REQUEST +19:27:55 Received From : +19:27:55 ============================================================================ +19:27:55 FNo. Len. Field Value +19:27:55 ============================================================================ +19:27:55 [ 1] [ 4] [0200] +19:27:55 [ 2] [ 16] [6213543000036292] +19:27:55 [ 3] [ 6] [010000] +19:27:55 [ 4] [ 12] [000050000000] +19:27:55 [ 7] [ 10] [0320122700] +19:27:55 [ 11] [ 6] [271415] +19:27:55 [ 12] [ 6] [192700] +19:27:55 [ 13] [ 4] [0320] +19:27:55 [ 14] [ 4] [4912] +19:27:55 [ 15] [ 4] [0320] +19:27:55 [ 18] [ 4] [6011] +19:27:55 [ 19] [ 3] [418] +19:27:55 [ 22] [ 3] [021] +19:27:55 [ 25] [ 2] [01] +19:27:55 [ 28] [ 9] [D00002000] +19:27:55 [ 32] [ 6] [180893] +19:27:55 [ 35] [ 32] [6213543000036292=491212013629552] +19:27:55 [ 37] [ 12] [507912271415] +19:27:55 [ 41] [ 8] [0362CPSU] +19:27:55 [ 42] [ 15] [999999 ] +19:27:55 [ 43] [ 40] [ATM CHAMPASAK UNIVERSITY LOCATION, Pakse] +19:27:55 [ 49] [ 3] [418] +19:27:55 [ 52] [ 16] [3E5DC9B6460520F1] +19:27:55 ============================================================================ +19:27:55 + + +waiting on router queue for slot.... +19:27:55 Sending to : +19:27:55 ============================================================================ +19:27:55 Sending to : +19:27:55 ============================================================================ +19:27:55 ============================================================================ +19:27:55 Slot Id : <150> +19:27:55 Transaction Type : REQUEST +19:27:55 Received From : +19:27:55 ============================================================================ +19:27:55 FNo. Len. Field Value +19:27:55 ============================================================================ +19:27:55 [ 1] [ 4] [0200] +19:27:55 [ 2] [ 16] [6213543000036292] +19:27:55 [ 3] [ 6] [010000] +19:27:55 [ 4] [ 12] [000050000000] +19:27:55 [ 7] [ 10] [0320122700] +19:27:55 [ 11] [ 6] [271415] +19:27:55 [ 12] [ 6] [192700] +19:27:55 [ 13] [ 4] [0320] +19:27:55 [ 14] [ 4] [4912] +19:27:55 [ 15] [ 4] [0320] +19:27:55 [ 18] [ 4] [6011] +19:27:55 [ 19] [ 3] [418] +19:27:55 [ 22] [ 3] [021] +19:27:55 [ 25] [ 2] [01] +19:27:55 [ 28] [ 9] [D00002000] +19:27:55 [ 32] [ 6] [180893] +19:27:55 [ 35] [ 32] [6213543000036292=491212013629552] +19:27:55 [ 37] [ 12] [507912271415] +19:27:55 [ 41] [ 8] [0362CPSU] +19:27:55 [ 42] [ 15] [999999 ] +19:27:55 [ 43] [ 40] [ATM CHAMPASAK UNIVERSITY LOCATION, Pakse] +19:27:55 [ 49] [ 3] [418] +19:27:55 [ 52] [ 16] [3E5DC9B6460520F1] +19:27:55 ============================================================================ +19:27:55 + + +waiting on router queue for slot.... +19:27:55 Sending to : +19:27:55 ============================================================================ +19:27:55 ============================================================================ +19:27:55 Slot Id : <150> +19:27:55 Transaction Type : REQUEST +19:27:55 Received From : +19:27:55 ============================================================================ +19:27:55 FNo. Len. Field Value +19:27:55 ============================================================================ +19:27:55 [ 1] [ 4] [0200] +19:27:55 [ 2] [ 16] [6213543000036292] +19:27:55 [ 3] [ 6] [010000] +19:27:55 [ 4] [ 12] [000050000000] +19:27:55 [ 7] [ 10] [0320122700] +19:27:55 [ 11] [ 6] [271415] +19:27:55 [ 12] [ 6] [192700] +19:27:55 [ 13] [ 4] [0320] +19:27:55 [ 14] [ 4] [4912] +19:27:55 [ 15] [ 4] [0320] +19:27:55 [ 18] [ 4] [6011] +19:27:55 [ 19] [ 3] [418] +19:27:55 [ 22] [ 3] [021] +19:27:55 [ 25] [ 2] [01] +19:27:55 [ 28] [ 9] [D00002000] +19:27:55 [ 32] [ 6] [180893] +19:27:55 [ 35] [ 32] [6213543000036292=491212013629552] +19:27:55 [ 37] [ 12] [507912271415] +19:27:55 [ 41] [ 8] [0362CPSU] +19:27:55 [ 42] [ 15] [999999 ] +19:27:55 [ 43] [ 40] [ATM CHAMPASAK UNIVERSITY LOCATION, Pakse] +19:27:55 [ 49] [ 3] [418] +19:27:55 [ 52] [ 16] [73EAA09E364253ED] +19:27:55 ============================================================================ +19:27:55 + + +waiting on router queue for slot.... +19:27:55 Sending to : <0> +19:27:55 ============================================================================ +19:27:56 ============================================================================ +19:27:56 Slot Id : <120> +19:27:56 Transaction Type : REQUEST +19:27:56 Received From : +19:27:56 ============================================================================ +19:27:56 FNo. Len. Field Value +19:27:56 ============================================================================ +19:27:56 [ 1] [ 4] [0800] +19:27:56 [ 7] [ 10] [0320122702] +19:27:56 [ 11] [ 6] [157954] +19:27:56 [ 70] [ 3] [301] +19:27:56 ============================================================================ +19:27:56 + + +waiting on router queue for slot.... +19:27:56 Sending to : +19:27:56 ============================================================================ +19:27:56 ============================================================================ +19:27:56 Slot Id : <120> +19:27:56 Transaction Type : RESPONSE +19:27:56 Received From : +19:27:56 ============================================================================ +19:27:56 FNo. Len. Field Value +19:27:56 ============================================================================ +19:27:56 [ 1] [ 4] [0810] +19:27:56 [ 7] [ 10] [0320122702] +19:27:56 [ 11] [ 6] [157954] +19:27:56 [ 39] [ 2] [00] +19:27:56 [ 70] [ 3] [301] +19:27:56 ============================================================================ +19:27:56 Calculate Source COMM Id = 2 +19:27:56 ============================================================================ +19:27:56 + + +waiting on router queue for slot.... +19:27:56 ============================================================================ +19:27:56 Slot Id : <150> +19:27:56 Transaction Type : RESPONSE +19:27:56 Received From : +19:27:56 ============================================================================ +19:27:56 FNo. Len. Field Value +19:27:56 ============================================================================ +19:27:56 [ 1] [ 4] [0210] +19:27:56 [ 2] [ 16] [6213543000036292] +19:27:56 [ 3] [ 6] [010000] +19:27:56 [ 4] [ 12] [000050000000] +19:27:56 [ 7] [ 10] [0320122700] +19:27:56 [ 11] [ 6] [271415] +19:27:56 [ 12] [ 6] [192700] +19:27:56 [ 13] [ 4] [0320] +19:27:56 [ 15] [ 4] [0320] +19:27:56 [ 18] [ 4] [6011] +19:27:56 [ 19] [ 3] [418] +19:27:56 [ 32] [ 6] [180893] +19:27:56 [ 35] [ 32] [6213543000036292=491212013629552] +19:27:56 [ 37] [ 12] [507912271415] +19:27:56 [ 38] [ 6] [254972] +19:27:56 [ 39] [ 2] [00] +19:27:56 [ 41] [ 8] [0362CPSU] +19:27:56 [ 49] [ 3] [418] +19:27:56 [ 54] [ 40] [0001418C0000352446720002418C000035244672] +19:27:56 ============================================================================ +19:27:56 Sending to : +19:27:56 ============================================================================ +19:27:56 + + +waiting on router queue for slot.... +19:27:57 ============================================================================ +19:27:57 Slot Id : <150> +19:27:57 Transaction Type : RESPONSE +19:27:57 Received From : +19:27:57 ============================================================================ +19:27:57 FNo. Len. Field Value +19:27:57 ============================================================================ +19:27:57 [ 1] [ 4] [0210] +19:27:57 [ 2] [ 16] [6213543000036292] +19:27:57 [ 3] [ 6] [010000] +19:27:57 [ 4] [ 12] [000050000000] +19:27:57 [ 7] [ 10] [0320122700] +19:27:57 [ 11] [ 6] [271415] +19:27:57 [ 12] [ 6] [192700] +19:27:57 [ 13] [ 4] [0320] +19:27:57 [ 15] [ 4] [0320] +19:27:57 [ 18] [ 4] [6011] +19:27:57 [ 19] [ 3] [418] +19:27:57 [ 32] [ 6] [180893] +19:27:57 [ 35] [ 32] [6213543000036292=491212013629552] +19:27:57 [ 37] [ 12] [507912271415] +19:27:57 [ 38] [ 6] [254972] +19:27:57 [ 39] [ 2] [00] +19:27:57 [ 41] [ 8] [0362CPSU] +19:27:57 [ 49] [ 3] [418] +19:27:57 [ 54] [ 40] [0001418C0000352446720002418C000035244672] +19:27:57 ============================================================================ +19:27:57 Calculate Source COMM Id = 2 +19:27:57 ============================================================================ +19:27:57 + + +waiting on router queue for slot.... +19:28:13 ============================================================================ +19:28:13 Slot Id : <110> +19:28:13 Transaction Type : REQUEST +19:28:13 Received From : +19:28:13 ============================================================================ +19:28:13 FNo. Len. Field Value +19:28:13 ============================================================================ +19:28:13 [ 1] [ 4] [0800] +19:28:13 [ 7] [ 10] [0320122719] +19:28:13 [ 11] [ 6] [157955] +19:28:13 [ 70] [ 3] [301] +19:28:13 ============================================================================ +19:28:13 + + +waiting on router queue for slot.... +19:28:13 Sending to : +19:28:13 ============================================================================ +19:28:13 ============================================================================ +19:28:13 Slot Id : <110> +19:28:13 Transaction Type : RESPONSE +19:28:13 Received From : +19:28:13 ============================================================================ +19:28:13 FNo. Len. Field Value +19:28:13 ============================================================================ +19:28:13 [ 1] [ 4] [0810] +19:28:13 [ 7] [ 10] [0320122719] +19:28:13 [ 11] [ 6] [157955] +19:28:13 [ 39] [ 2] [00] +19:28:13 [ 70] [ 3] [301] +19:28:13 ============================================================================ +19:28:13 Calculate Source COMM Id = 2 +19:28:13 ============================================================================ +19:28:13 + + +waiting on router queue for slot.... +19:28:19 ============================================================================ +19:28:19 Slot Id : <133> +19:28:19 Transaction Type : REQUEST +19:28:19 Received From : +19:28:19 ============================================================================ +19:28:19 FNo. Len. Field Value +19:28:19 ============================================================================ +19:28:19 [ 1] [ 4] [0800] +19:28:19 [ 2] [ 5] [02531] +19:28:19 [ 3] [ 6] [579198] +19:28:19 [ 7] [ 10] [0320122819] +19:28:19 [ 11] [ 6] [807542] +19:28:19 [ 15] [ 10] [0320122819] +19:28:19 [ 37] [ 11] [57919807542] +19:28:19 [ 70] [ 3] [001] +19:28:19 ============================================================================ +19:28:19 + + +waiting on router queue for slot.... +19:28:19 ============================================================================ +19:28:19 Slot Id : <133> +19:28:19 Transaction Type : RESPONSE +19:28:19 Received From : +19:28:19 ============================================================================ +19:28:19 FNo. Len. Field Value +19:28:19 ============================================================================ +19:28:19 [ 1] [ 4] [0810] +19:28:19 [ 7] [ 10] [0320122819] +19:28:19 [ 11] [ 6] [807542] +19:28:19 [ 15] [ 4] [0320] +19:28:19 [ 37] [ 12] [57919807542] +19:28:19 [ 39] [ 2] [00] +19:28:19 [ 70] [ 3] [001] +19:28:19 ============================================================================ +19:28:19 Sending to : +19:28:19 ============================================================================ +19:28:19 + + +waiting on router queue for slot.... +19:28:28 ============================================================================ +19:28:28 Slot Id : <159> +19:28:28 Transaction Type : REQUEST +19:28:28 Received From : +19:28:28 ============================================================================ +19:28:28 FNo. Len. Field Value +19:28:28 ============================================================================ +19:28:28 [ 1] [ 4] [0800] +19:28:28 [ 7] [ 10] [0320122735] +19:28:28 [ 11] [ 6] [157956] +19:28:28 [ 70] [ 3] [301] +19:28:28 ============================================================================ +19:28:28 + + +waiting on router queue for slot.... +19:28:28 Sending to : +19:28:28 ============================================================================ +19:28:28 ============================================================================ +19:28:28 Slot Id : <159> +19:28:28 Transaction Type : RESPONSE +19:28:28 Received From : +19:28:28 ============================================================================ +19:28:28 FNo. Len. Field Value +19:28:28 ============================================================================ +19:28:28 [ 1] [ 4] [0810] +19:28:28 [ 7] [ 10] [0320122735] +19:28:28 [ 11] [ 6] [157956] +19:28:28 [ 39] [ 2] [00] +19:28:28 [ 70] [ 3] [301] +19:28:28 ============================================================================ +19:28:28 Calculate Source COMM Id = 2 +19:28:28 ============================================================================ +19:28:28 + + +waiting on router queue for slot.... +19:28:30 ============================================================================ +19:28:30 Slot Id : <142> +19:28:30 Transaction Type : REQUEST +19:28:30 Received From : +19:28:30 ============================================================================ +19:28:30 FNo. Len. Field Value +19:28:30 ============================================================================ +19:28:30 [ 1] [ 4] [0200] +19:28:30 [ 2] [ 16] [1808931700031964] +19:28:30 [ 3] [ 6] [011000] +19:28:30 [ 4] [ 12] [000005000000] +19:28:30 [ 7] [ 10] [0320192825] +19:28:30 [ 11] [ 6] [836657] +19:28:30 [ 12] [ 6] [192825] +19:28:30 [ 13] [ 4] [0320] +19:28:30 [ 15] [ 4] [0320] +19:28:30 [ 18] [ 4] [6011] +19:28:30 [ 22] [ 3] [900] +19:28:30 [ 25] [ 2] [02] +19:28:30 [ 28] [ 9] [D00002000] +19:28:30 [ 32] [ 6] [621354] +19:28:30 [ 35] [ 27] [1808931700031964=1803500284] +19:28:30 [ 37] [ 12] [507904769742] +19:28:30 [ 41] [ 8] [07001200] +19:28:30 [ 42] [ 15] [NATIVE ] +19:28:30 [ 43] [ 40] [Sangkhou College LNT Namtar LAO] +19:28:30 [ 49] [ 3] [418] +19:28:30 [ 52] [ 16] [172219A8E70E6A50] +19:28:30 ============================================================================ +19:28:30 + + +waiting on router queue for slot.... +19:28:30 Sending to : +19:28:30 ============================================================================ +19:28:30 Sending to : +19:28:30 ============================================================================ +19:28:31 ============================================================================ +19:28:31 Slot Id : <142> +19:28:31 Transaction Type : REQUEST +19:28:31 Received From : +19:28:31 ============================================================================ +19:28:31 FNo. Len. Field Value +19:28:31 ============================================================================ +19:28:31 [ 1] [ 4] [0200] +19:28:31 [ 2] [ 16] [1808931700031964] +19:28:31 [ 3] [ 6] [011000] +19:28:31 [ 4] [ 12] [000005000000] +19:28:31 [ 7] [ 10] [0320192825] +19:28:31 [ 11] [ 6] [836657] +19:28:31 [ 12] [ 6] [192825] +19:28:31 [ 13] [ 4] [0320] +19:28:31 [ 15] [ 4] [0320] +19:28:31 [ 18] [ 4] [6011] +19:28:31 [ 22] [ 3] [900] +19:28:31 [ 25] [ 2] [02] +19:28:31 [ 28] [ 9] [D00002000] +19:28:31 [ 32] [ 6] [621354] +19:28:31 [ 35] [ 27] [1808931700031964=1803500284] +19:28:31 [ 37] [ 12] [507904769742] +19:28:31 [ 41] [ 8] [07001200] +19:28:31 [ 42] [ 15] [NATIVE ] +19:28:31 [ 43] [ 40] [Sangkhou College LNT Namtar LAO] +19:28:31 [ 49] [ 3] [418] +19:28:31 [ 52] [ 16] [172219A8E70E6A50] +19:28:31 ============================================================================ +19:28:31 + + +waiting on router queue for slot.... +19:28:31 Sending to : +19:28:31 ============================================================================ +19:28:31 ============================================================================ +19:28:31 Slot Id : <142> +19:28:31 Transaction Type : REQUEST +19:28:31 Received From : +19:28:31 ============================================================================ +19:28:31 FNo. Len. Field Value +19:28:31 ============================================================================ +19:28:31 [ 1] [ 4] [0200] +19:28:31 [ 2] [ 16] [1808931700031964] +19:28:31 [ 3] [ 6] [011000] +19:28:31 [ 4] [ 12] [000005000000] +19:28:31 [ 7] [ 10] [0320192825] +19:28:31 [ 11] [ 6] [836657] +19:28:31 [ 12] [ 6] [192825] +19:28:31 [ 13] [ 4] [0320] +19:28:31 [ 15] [ 4] [0320] +19:28:31 [ 18] [ 4] [6011] +19:28:31 [ 22] [ 3] [900] +19:28:31 [ 25] [ 2] [02] +19:28:31 [ 28] [ 9] [D00002000] +19:28:31 [ 32] [ 6] [621354] +19:28:31 [ 35] [ 27] [1808931700031964=1803500284] +19:28:31 [ 37] [ 12] [507904769742] +19:28:31 [ 41] [ 8] [07001200] +19:28:31 [ 42] [ 15] [NATIVE ] +19:28:31 [ 43] [ 40] [Sangkhou College LNT Namtar LAO] +19:28:31 [ 49] [ 3] [418] +19:28:31 [ 52] [ 16] [0553A65F98D4394E] +19:28:31 ============================================================================ +19:28:31 + + +waiting on router queue for slot.... +19:28:31 Sending to : <2> +19:28:31 ============================================================================ +19:28:34 ============================================================================ +19:28:34 Slot Id : <142> +19:28:34 Transaction Type : RESPONSE +19:28:34 Received From : +19:28:34 ============================================================================ +19:28:34 FNo. Len. Field Value +19:28:34 ============================================================================ +19:28:34 [ 1] [ 4] [0210] +19:28:34 [ 2] [ 16] [1808931700031964] +19:28:34 [ 3] [ 6] [011000] +19:28:34 [ 4] [ 12] [000005000000] +19:28:34 [ 6] [ 12] [000005000000] +19:28:34 [ 7] [ 10] [0320192825] +19:28:34 [ 11] [ 6] [836657] +19:28:34 [ 12] [ 6] [192825] +19:28:34 [ 13] [ 4] [0320] +19:28:34 [ 18] [ 4] [6011] +19:28:34 [ 19] [ 3] [418] +19:28:34 [ 22] [ 3] [021] +19:28:34 [ 32] [ 6] [621354] +19:28:34 [ 35] [ 27] [1808931700031964=1803500284] +19:28:34 [ 37] [ 12] [507904769742] +19:28:34 [ 38] [ 6] [836657] +19:28:34 [ 39] [ 2] [00] +19:28:34 [ 41] [ 8] [07001200] +19:28:34 [ 49] [ 3] [418] +19:28:34 [ 52] [ 16] [0553A65F98D4394E] +19:28:34 [ 54] [ 20] [1001418C000010880100] +19:28:34 ============================================================================ +19:28:34 Sending to : +19:28:34 ============================================================================ +19:28:34 + + +waiting on router queue for slot.... +19:28:35 ============================================================================ +19:28:35 Slot Id : <142> +19:28:35 Transaction Type : RESPONSE +19:28:35 Received From : +19:28:35 ============================================================================ +19:28:35 FNo. Len. Field Value +19:28:35 ============================================================================ +19:28:35 [ 1] [ 4] [0210] +19:28:35 [ 2] [ 16] [1808931700031964] +19:28:35 [ 3] [ 6] [011000] +19:28:35 [ 4] [ 12] [000005000000] +19:28:35 [ 6] [ 12] [000005000000] +19:28:35 [ 7] [ 10] [0320192825] +19:28:35 [ 11] [ 6] [836657] +19:28:35 [ 12] [ 6] [192825] +19:28:35 [ 13] [ 4] [0320] +19:28:35 [ 18] [ 4] [6011] +19:28:35 [ 19] [ 3] [418] +19:28:35 [ 22] [ 3] [021] +19:28:35 [ 32] [ 6] [621354] +19:28:35 [ 35] [ 27] [1808931700031964=1803500284] +19:28:35 [ 37] [ 12] [507904769742] +19:28:35 [ 38] [ 6] [836657] +19:28:35 [ 39] [ 2] [00] +19:28:35 [ 41] [ 8] [07001200] +19:28:35 [ 49] [ 3] [418] +19:28:35 [ 52] [ 16] [0553A65F98D4394E] +19:28:35 [ 54] [ 20] [1001418C000010880100] +19:28:35 ============================================================================ +19:28:35 Calculate Source COMM Id = 0 +19:28:35 ============================================================================ +19:28:35 + + +waiting on router queue for slot.... +19:28:44 ============================================================================ +19:28:44 Slot Id : <158> +19:28:44 Transaction Type : REQUEST +19:28:44 Received From : +19:28:44 ============================================================================ +19:28:44 FNo. Len. Field Value +19:28:44 ============================================================================ +19:28:44 [ 1] [ 4] [0200] +19:28:44 [ 2] [ 16] [6213544002082730] +19:28:44 [ 3] [ 6] [011000] +19:28:44 [ 4] [ 12] [000006000000] +19:28:44 [ 7] [ 10] [0320122750] +19:28:44 [ 11] [ 6] [271420] +19:28:44 [ 12] [ 6] [192750] +19:28:44 [ 13] [ 4] [0320] +19:28:44 [ 14] [ 4] [4912] +19:28:44 [ 15] [ 4] [0320] +19:28:44 [ 18] [ 4] [6011] +19:28:44 [ 19] [ 3] [418] +19:28:44 [ 22] [ 3] [021] +19:28:44 [ 25] [ 2] [01] +19:28:44 [ 28] [ 9] [D00002000] +19:28:44 [ 32] [ 6] [180893] +19:28:44 [ 35] [ 32] [6213544002082730=491212018273182] +19:28:44 [ 37] [ 12] [507912271420] +19:28:44 [ 41] [ 8] [0528LPBP] +19:28:44 [ 42] [ 15] [999999 ] +19:28:44 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +19:28:44 [ 49] [ 3] [418] +19:28:44 [ 52] [ 16] [C27B19C848DC4367] +19:28:44 ============================================================================ +19:28:44 + + +waiting on router queue for slot.... +19:28:44 Sending to : +19:28:44 ============================================================================ +19:28:44 Sending to : +19:28:44 ============================================================================ +19:28:44 ============================================================================ +19:28:44 Slot Id : <158> +19:28:44 Transaction Type : REQUEST +19:28:44 Received From : +19:28:44 ============================================================================ +19:28:44 FNo. Len. Field Value +19:28:44 ============================================================================ +19:28:44 [ 1] [ 4] [0200] +19:28:44 [ 2] [ 16] [6213544002082730] +19:28:44 [ 3] [ 6] [011000] +19:28:44 [ 4] [ 12] [000006000000] +19:28:44 [ 7] [ 10] [0320122750] +19:28:44 [ 11] [ 6] [271420] +19:28:44 [ 12] [ 6] [192750] +19:28:44 [ 13] [ 4] [0320] +19:28:44 [ 14] [ 4] [4912] +19:28:44 [ 15] [ 4] [0320] +19:28:44 [ 18] [ 4] [6011] +19:28:44 [ 19] [ 3] [418] +19:28:44 [ 22] [ 3] [021] +19:28:44 [ 25] [ 2] [01] +19:28:44 [ 28] [ 9] [D00002000] +19:28:44 [ 32] [ 6] [180893] +19:28:44 [ 35] [ 32] [6213544002082730=491212018273182] +19:28:44 [ 37] [ 12] [507912271420] +19:28:44 [ 41] [ 8] [0528LPBP] +19:28:44 [ 42] [ 15] [999999 ] +19:28:44 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +19:28:44 [ 49] [ 3] [418] +19:28:44 [ 52] [ 16] [C27B19C848DC4367] +19:28:44 ============================================================================ +19:28:44 + + +waiting on router queue for slot.... +19:28:44 Sending to : +19:28:44 ============================================================================ +19:28:44 ============================================================================ +19:28:44 Slot Id : <158> +19:28:44 Transaction Type : REQUEST +19:28:44 Received From : +19:28:44 ============================================================================ +19:28:44 FNo. Len. Field Value +19:28:44 ============================================================================ +19:28:44 [ 1] [ 4] [0200] +19:28:44 [ 2] [ 16] [6213544002082730] +19:28:44 [ 3] [ 6] [011000] +19:28:44 [ 4] [ 12] [000006000000] +19:28:44 [ 7] [ 10] [0320122750] +19:28:44 [ 11] [ 6] [271420] +19:28:44 [ 12] [ 6] [192750] +19:28:44 [ 13] [ 4] [0320] +19:28:44 [ 14] [ 4] [4912] +19:28:44 [ 15] [ 4] [0320] +19:28:44 [ 18] [ 4] [6011] +19:28:44 [ 19] [ 3] [418] +19:28:44 [ 22] [ 3] [021] +19:28:44 [ 25] [ 2] [01] +19:28:44 [ 28] [ 9] [D00002000] +19:28:44 [ 32] [ 6] [180893] +19:28:44 [ 35] [ 32] [6213544002082730=491212018273182] +19:28:44 [ 37] [ 12] [507912271420] +19:28:44 [ 41] [ 8] [0528LPBP] +19:28:44 [ 42] [ 15] [999999 ] +19:28:44 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +19:28:44 [ 49] [ 3] [418] +19:28:44 [ 52] [ 16] [20F9066FA2B3A5A3] +19:28:44 ============================================================================ +19:28:44 + + +waiting on router queue for slot.... +19:28:44 Sending to : <0> +19:28:44 ============================================================================ +19:28:44 ============================================================================ +19:28:44 Slot Id : <146> +19:28:44 Transaction Type : REQUEST +19:28:44 Received From : +19:28:44 ============================================================================ +19:28:44 FNo. Len. Field Value +19:28:44 ============================================================================ +19:28:44 [ 1] [ 4] [0800] +19:28:44 [ 7] [ 10] [0320122751] +19:28:44 [ 11] [ 6] [157957] +19:28:44 [ 70] [ 3] [301] +19:28:44 ============================================================================ +19:28:44 + + +waiting on router queue for slot.... +19:28:44 Sending to : +19:28:44 ============================================================================ +19:28:44 ============================================================================ +19:28:44 Slot Id : <146> +19:28:44 Transaction Type : RESPONSE +19:28:44 Received From : +19:28:44 ============================================================================ +19:28:44 FNo. Len. Field Value +19:28:44 ============================================================================ +19:28:44 [ 1] [ 4] [0810] +19:28:44 [ 7] [ 10] [0320122751] +19:28:44 [ 11] [ 6] [157957] +19:28:44 [ 39] [ 2] [00] +19:28:44 [ 70] [ 3] [301] +19:28:44 ============================================================================ +19:28:44 Calculate Source COMM Id = 2 +19:28:44 ============================================================================ +19:28:44 + + +waiting on router queue for slot.... +19:28:45 ============================================================================ +19:28:45 Slot Id : <158> +19:28:45 Transaction Type : RESPONSE +19:28:45 Received From : +19:28:45 ============================================================================ +19:28:45 FNo. Len. Field Value +19:28:45 ============================================================================ +19:28:45 [ 1] [ 4] [0210] +19:28:45 [ 2] [ 16] [6213544002082730] +19:28:45 [ 3] [ 6] [011000] +19:28:45 [ 4] [ 12] [000006000000] +19:28:45 [ 7] [ 10] [0320122750] +19:28:45 [ 11] [ 6] [271420] +19:28:45 [ 12] [ 6] [192750] +19:28:45 [ 13] [ 4] [0320] +19:28:45 [ 15] [ 4] [0320] +19:28:45 [ 18] [ 4] [6011] +19:28:45 [ 19] [ 3] [418] +19:28:45 [ 32] [ 6] [180893] +19:28:45 [ 35] [ 32] [6213544002082730=491212018273182] +19:28:45 [ 37] [ 12] [507912271420] +19:28:45 [ 38] [ 6] [271420] +19:28:45 [ 39] [ 2] [51] +19:28:45 [ 41] [ 8] [0528LPBP] +19:28:45 [ 49] [ 3] [418] +19:28:45 [ 54] [ 40] [1001418C0000099255401002418C000009925540] +19:28:45 ============================================================================ +19:28:45 Sending to : +19:28:45 ============================================================================ +19:28:45 + + +waiting on router queue for slot.... +19:28:46 ============================================================================ +19:28:46 Slot Id : <158> +19:28:46 Transaction Type : RESPONSE +19:28:46 Received From : +19:28:46 ============================================================================ +19:28:46 FNo. Len. Field Value +19:28:46 ============================================================================ +19:28:46 [ 1] [ 4] [0210] +19:28:46 [ 2] [ 16] [6213544002082730] +19:28:46 [ 3] [ 6] [011000] +19:28:46 [ 4] [ 12] [000006000000] +19:28:46 [ 7] [ 10] [0320122750] +19:28:46 [ 11] [ 6] [271420] +19:28:46 [ 12] [ 6] [192750] +19:28:46 [ 13] [ 4] [0320] +19:28:46 [ 15] [ 4] [0320] +19:28:46 [ 18] [ 4] [6011] +19:28:46 [ 19] [ 3] [418] +19:28:46 [ 32] [ 6] [180893] +19:28:46 [ 35] [ 32] [6213544002082730=491212018273182] +19:28:46 [ 37] [ 12] [507912271420] +19:28:46 [ 38] [ 6] [271420] +19:28:46 [ 39] [ 2] [51] +19:28:46 [ 41] [ 8] [0528LPBP] +19:28:46 [ 49] [ 3] [418] +19:28:46 [ 54] [ 40] [1001418C0000099255401002418C000009925540] +19:28:46 ============================================================================ +19:28:46 Calculate Source COMM Id = 2 +19:28:46 ============================================================================ +19:28:46 + + +waiting on router queue for slot.... +19:28:56 ============================================================================ +19:28:56 Slot Id : <167> +19:28:56 Transaction Type : REQUEST +19:28:56 Received From : +19:28:56 ============================================================================ +19:28:56 FNo. Len. Field Value +19:28:56 ============================================================================ +19:28:56 [ 1] [ 4] [0800] +19:28:56 [ 7] [ 10] [0321024044] +19:28:56 [ 11] [ 6] [194044] +19:28:56 [ 37] [ 12] [57919194044] +19:28:56 [ 70] [ 3] [301] +19:28:56 ============================================================================ +19:28:56 + + +waiting on router queue for slot.... +19:28:56 Sending to : +19:28:56 ============================================================================ +19:28:56 ============================================================================ +19:28:56 Slot Id : <167> +19:28:56 Transaction Type : RESPONSE +19:28:56 Received From : +19:28:56 ============================================================================ +19:28:56 FNo. Len. Field Value +19:28:56 ============================================================================ +19:28:56 [ 1] [ 4] [0810] +19:28:56 [ 7] [ 10] [0321024044] +19:28:56 [ 11] [ 6] [194044] +19:28:56 [ 37] [ 12] [579191940440] +19:28:56 [ 39] [ 2] [00] +19:28:56 [ 70] [ 3] [810] +19:28:56 ============================================================================ +19:28:56 Calculate Source COMM Id = 6 +19:28:56 ============================================================================ +19:28:56 + + +waiting on router queue for slot.... +19:28:59 ============================================================================ +19:28:59 Slot Id : <137> +19:28:59 Transaction Type : REQUEST +19:28:59 Received From : +19:28:59 ============================================================================ +19:28:59 FNo. Len. Field Value +19:28:59 ============================================================================ +19:28:59 [ 1] [ 4] [0200] +19:28:59 [ 2] [ 16] [6213545000389092] +19:28:59 [ 3] [ 6] [010000] +19:28:59 [ 4] [ 12] [000010000000] +19:28:59 [ 7] [ 10] [0320192649] +19:28:59 [ 11] [ 6] [956189] +19:28:59 [ 12] [ 6] [192649] +19:28:59 [ 13] [ 4] [0320] +19:28:59 [ 15] [ 4] [0320] +19:28:59 [ 18] [ 4] [6011] +19:28:59 [ 19] [ 3] [418] +19:28:59 [ 22] [ 3] [021] +19:28:59 [ 25] [ 2] [01] +19:28:59 [ 28] [ 9] [D00002000] +19:28:59 [ 32] [ 6] [668899] +19:28:59 [ 35] [ 32] [6213545000389092=491212018909472] +19:28:59 [ 37] [ 12] [507901262061] +19:28:59 [ 41] [ 8] [03206001] +19:28:59 [ 42] [ 15] [APT ] +19:28:59 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:28:59 [ 49] [ 3] [418] +19:28:59 [ 52] [ 16] [3CD1E35863BA7BDF] +19:28:59 ============================================================================ +19:28:59 + + +waiting on router queue for slot.... +19:28:59 Sending to : +19:28:59 ============================================================================ +19:28:59 Sending to : +19:28:59 ============================================================================ +19:29:00 ============================================================================ +19:29:00 Slot Id : <137> +19:29:00 Transaction Type : REQUEST +19:29:00 Received From : +19:29:00 ============================================================================ +19:29:00 FNo. Len. Field Value +19:29:00 ============================================================================ +19:29:00 [ 1] [ 4] [0200] +19:29:00 [ 2] [ 16] [6213545000389092] +19:29:00 [ 3] [ 6] [010000] +19:29:00 [ 4] [ 12] [000010000000] +19:29:00 [ 7] [ 10] [0320192649] +19:29:00 [ 11] [ 6] [956189] +19:29:00 [ 12] [ 6] [192649] +19:29:00 [ 13] [ 4] [0320] +19:29:00 [ 15] [ 4] [0320] +19:29:00 [ 18] [ 4] [6011] +19:29:00 [ 19] [ 3] [418] +19:29:00 [ 22] [ 3] [021] +19:29:00 [ 25] [ 2] [01] +19:29:00 [ 28] [ 9] [D00002000] +19:29:00 [ 32] [ 6] [668899] +19:29:00 [ 35] [ 32] [6213545000389092=491212018909472] +19:29:00 [ 37] [ 12] [507901262061] +19:29:00 [ 41] [ 8] [03206001] +19:29:00 [ 42] [ 15] [APT ] +19:29:00 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:29:00 [ 49] [ 3] [418] +19:29:00 [ 52] [ 16] [3CD1E35863BA7BDF] +19:29:00 ============================================================================ +19:29:00 + + +waiting on router queue for slot.... +19:29:00 Sending to : +19:29:00 ============================================================================ +19:29:00 ============================================================================ +19:29:00 Slot Id : <137> +19:29:00 Transaction Type : REQUEST +19:29:00 Received From : +19:29:00 ============================================================================ +19:29:00 FNo. Len. Field Value +19:29:00 ============================================================================ +19:29:00 [ 1] [ 4] [0200] +19:29:00 [ 2] [ 16] [6213545000389092] +19:29:00 [ 3] [ 6] [010000] +19:29:00 [ 4] [ 12] [000010000000] +19:29:00 [ 7] [ 10] [0320192649] +19:29:00 [ 11] [ 6] [956189] +19:29:00 [ 12] [ 6] [192649] +19:29:00 [ 13] [ 4] [0320] +19:29:00 [ 15] [ 4] [0320] +19:29:00 [ 18] [ 4] [6011] +19:29:00 [ 19] [ 3] [418] +19:29:00 [ 22] [ 3] [021] +19:29:00 [ 25] [ 2] [01] +19:29:00 [ 28] [ 9] [D00002000] +19:29:00 [ 32] [ 6] [668899] +19:29:00 [ 35] [ 32] [6213545000389092=491212018909472] +19:29:00 [ 37] [ 12] [507901262061] +19:29:00 [ 41] [ 8] [03206001] +19:29:00 [ 42] [ 15] [APT ] +19:29:00 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:29:00 [ 49] [ 3] [418] +19:29:00 [ 52] [ 16] [81A85DD16922B1F3] +19:29:00 ============================================================================ +19:29:00 + + +waiting on router queue for slot.... +19:29:00 Sending to : <0> +19:29:00 ============================================================================ +19:29:00 ============================================================================ +19:29:00 Slot Id : <87> +19:29:00 Transaction Type : REQUEST +19:29:00 Received From : +19:29:00 ============================================================================ +19:29:00 FNo. Len. Field Value +19:29:00 ============================================================================ +19:29:00 [ 1] [ 4] [0800] +19:29:00 [ 7] [ 10] [0320122807] +19:29:00 [ 11] [ 6] [157958] +19:29:00 [ 70] [ 3] [301] +19:29:00 ============================================================================ +19:29:00 + + +waiting on router queue for slot.... +19:29:00 Sending to : +19:29:00 ============================================================================ +19:29:00 ============================================================================ +19:29:00 Slot Id : <87> +19:29:00 Transaction Type : RESPONSE +19:29:00 Received From : +19:29:00 ============================================================================ +19:29:00 FNo. Len. Field Value +19:29:00 ============================================================================ +19:29:00 [ 1] [ 4] [0810] +19:29:00 [ 7] [ 10] [0320122807] +19:29:00 [ 11] [ 6] [157958] +19:29:00 [ 39] [ 2] [00] +19:29:00 [ 70] [ 3] [301] +19:29:00 ============================================================================ +19:29:00 Calculate Source COMM Id = 2 +19:29:00 ============================================================================ +19:29:00 + + +waiting on router queue for slot.... +19:29:00 ============================================================================ +19:29:00 Slot Id : <130> +19:29:00 Transaction Type : REQUEST +19:29:00 Received From : +19:29:00 ============================================================================ +19:29:00 FNo. Len. Field Value +19:29:00 ============================================================================ +19:29:00 [ 1] [ 4] [0200] +19:29:00 [ 2] [ 16] [1808931400009468] +19:29:00 [ 3] [ 6] [302000] +19:29:00 [ 4] [ 12] [000000000000] +19:29:00 [ 7] [ 10] [0320192650] +19:29:00 [ 11] [ 6] [956191] +19:29:00 [ 12] [ 6] [192650] +19:29:00 [ 13] [ 4] [0320] +19:29:00 [ 15] [ 4] [0320] +19:29:00 [ 18] [ 4] [6011] +19:29:00 [ 19] [ 3] [418] +19:29:00 [ 22] [ 3] [021] +19:29:00 [ 25] [ 2] [01] +19:29:00 [ 28] [ 9] [D00000000] +19:29:00 [ 32] [ 6] [668899] +19:29:00 [ 35] [ 27] [1808931400009468=1803500728] +19:29:00 [ 37] [ 12] [507901604355] +19:29:00 [ 41] [ 8] [03202001] +19:29:00 [ 42] [ 15] [APT ] +19:29:00 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:29:00 [ 49] [ 3] [418] +19:29:00 [ 52] [ 16] [FCCBF1E20FE18282] +19:29:00 ============================================================================ +19:29:00 + + +waiting on router queue for slot.... +19:29:00 Sending to : +19:29:00 ============================================================================ +19:29:00 Sending to : +19:29:00 ============================================================================ +19:29:00 ============================================================================ +19:29:00 Slot Id : <137> +19:29:00 Transaction Type : RESPONSE +19:29:00 Received From : +19:29:00 ============================================================================ +19:29:00 FNo. Len. Field Value +19:29:00 ============================================================================ +19:29:00 [ 1] [ 4] [0210] +19:29:00 [ 2] [ 16] [6213545000389092] +19:29:00 [ 3] [ 6] [010000] +19:29:00 [ 4] [ 12] [000010000000] +19:29:00 [ 7] [ 10] [0320192649] +19:29:00 [ 11] [ 6] [956189] +19:29:00 [ 12] [ 6] [192649] +19:29:00 [ 13] [ 4] [0320] +19:29:00 [ 15] [ 4] [0320] +19:29:00 [ 18] [ 4] [6011] +19:29:00 [ 19] [ 3] [418] +19:29:00 [ 32] [ 6] [668899] +19:29:00 [ 35] [ 32] [6213545000389092=491212018909472] +19:29:00 [ 37] [ 12] [507901262061] +19:29:00 [ 38] [ 6] [955778] +19:29:00 [ 39] [ 2] [00] +19:29:00 [ 41] [ 8] [03206001] +19:29:00 [ 49] [ 3] [418] +19:29:00 [ 54] [ 40] [0001418C0000802629660002418C000080262966] +19:29:00 ============================================================================ +19:29:00 Sending to : +19:29:00 ============================================================================ +19:29:00 + + +waiting on router queue for slot.... +19:29:01 ============================================================================ +19:29:01 Slot Id : <130> +19:29:01 Transaction Type : REQUEST +19:29:01 Received From : +19:29:01 ============================================================================ +19:29:01 FNo. Len. Field Value +19:29:01 ============================================================================ +19:29:01 [ 1] [ 4] [0200] +19:29:01 [ 2] [ 16] [1808931400009468] +19:29:01 [ 3] [ 6] [302000] +19:29:01 [ 4] [ 12] [000000000000] +19:29:01 [ 7] [ 10] [0320192650] +19:29:01 [ 11] [ 6] [956191] +19:29:01 [ 12] [ 6] [192650] +19:29:01 [ 13] [ 4] [0320] +19:29:01 [ 15] [ 4] [0320] +19:29:01 [ 18] [ 4] [6011] +19:29:01 [ 19] [ 3] [418] +19:29:01 [ 22] [ 3] [021] +19:29:01 [ 25] [ 2] [01] +19:29:01 [ 28] [ 9] [D00000000] +19:29:01 [ 32] [ 6] [668899] +19:29:01 [ 35] [ 27] [1808931400009468=1803500728] +19:29:01 [ 37] [ 12] [507901604355] +19:29:01 [ 41] [ 8] [03202001] +19:29:01 [ 42] [ 15] [APT ] +19:29:01 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:29:01 [ 49] [ 3] [418] +19:29:01 [ 52] [ 16] [FCCBF1E20FE18282] +19:29:01 ============================================================================ +19:29:01 + + +waiting on router queue for slot.... +19:29:01 Sending to : +19:29:01 ============================================================================ +19:29:01 ============================================================================ +19:29:01 Slot Id : <130> +19:29:01 Transaction Type : REQUEST +19:29:01 Received From : +19:29:01 ============================================================================ +19:29:01 FNo. Len. Field Value +19:29:01 ============================================================================ +19:29:01 [ 1] [ 4] [0200] +19:29:01 [ 2] [ 16] [1808931400009468] +19:29:01 [ 3] [ 6] [302000] +19:29:01 [ 4] [ 12] [000000000000] +19:29:01 [ 7] [ 10] [0320192650] +19:29:01 [ 11] [ 6] [956191] +19:29:01 [ 12] [ 6] [192650] +19:29:01 [ 13] [ 4] [0320] +19:29:01 [ 15] [ 4] [0320] +19:29:01 [ 18] [ 4] [6011] +19:29:01 [ 19] [ 3] [418] +19:29:01 [ 22] [ 3] [021] +19:29:01 [ 25] [ 2] [01] +19:29:01 [ 28] [ 9] [D00000000] +19:29:01 [ 32] [ 6] [668899] +19:29:01 [ 35] [ 27] [1808931400009468=1803500728] +19:29:01 [ 37] [ 12] [507901604355] +19:29:01 [ 41] [ 8] [03202001] +19:29:01 [ 42] [ 15] [APT ] +19:29:01 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:29:01 [ 49] [ 3] [418] +19:29:01 [ 52] [ 16] [972DC7AD132D3989] +19:29:01 ============================================================================ +19:29:01 + + +waiting on router queue for slot.... +19:29:01 Sending to : <2> +19:29:01 ============================================================================ +19:29:01 ============================================================================ +19:29:01 Slot Id : <130> +19:29:01 Transaction Type : RESPONSE +19:29:01 Received From : +19:29:01 ============================================================================ +19:29:01 FNo. Len. Field Value +19:29:01 ============================================================================ +19:29:01 [ 1] [ 4] [0210] +19:29:01 [ 2] [ 16] [1808931400009468] +19:29:01 [ 3] [ 6] [302000] +19:29:01 [ 7] [ 10] [0320192650] +19:29:01 [ 11] [ 6] [956191] +19:29:01 [ 12] [ 6] [192650] +19:29:01 [ 13] [ 4] [0320] +19:29:01 [ 14] [ 4] [1803] +19:29:01 [ 19] [ 3] [418] +19:29:01 [ 32] [ 6] [668899] +19:29:01 [ 37] [ 12] [507901604355] +19:29:01 [ 39] [ 2] [42] +19:29:01 [ 41] [ 8] [03202001] +19:29:01 [ 49] [ 3] [418] +19:29:01 [ 52] [ 16] [972DC7AD132D3989] +19:29:01 ============================================================================ +19:29:01 Sending to : +19:29:01 ============================================================================ +19:29:01 + + +waiting on router queue for slot.... +19:29:02 ============================================================================ +19:29:02 Slot Id : <137> +19:29:02 Transaction Type : RESPONSE +19:29:02 Received From : +19:29:02 ============================================================================ +19:29:02 FNo. Len. Field Value +19:29:02 ============================================================================ +19:29:02 [ 1] [ 4] [0210] +19:29:02 [ 2] [ 16] [6213545000389092] +19:29:02 [ 3] [ 6] [010000] +19:29:02 [ 4] [ 12] [000010000000] +19:29:02 [ 7] [ 10] [0320192649] +19:29:02 [ 11] [ 6] [956189] +19:29:02 [ 12] [ 6] [192649] +19:29:02 [ 13] [ 4] [0320] +19:29:02 [ 15] [ 4] [0320] +19:29:02 [ 18] [ 4] [6011] +19:29:02 [ 19] [ 3] [418] +19:29:02 [ 32] [ 6] [668899] +19:29:02 [ 35] [ 32] [6213545000389092=491212018909472] +19:29:02 [ 37] [ 12] [507901262061] +19:29:02 [ 38] [ 6] [955778] +19:29:02 [ 39] [ 2] [00] +19:29:02 [ 41] [ 8] [03206001] +19:29:02 [ 49] [ 3] [418] +19:29:02 [ 54] [ 40] [0001418C0000802629660002418C000080262966] +19:29:02 ============================================================================ +19:29:02 Calculate Source COMM Id = 4 +19:29:02 ============================================================================ +19:29:02 + + +waiting on router queue for slot.... +19:29:03 ============================================================================ +19:29:03 Slot Id : <130> +19:29:03 Transaction Type : RESPONSE +19:29:03 Received From : +19:29:03 ============================================================================ +19:29:03 FNo. Len. Field Value +19:29:03 ============================================================================ +19:29:03 [ 1] [ 4] [0210] +19:29:03 [ 2] [ 16] [1808931400009468] +19:29:03 [ 3] [ 6] [302000] +19:29:03 [ 7] [ 10] [0320192650] +19:29:03 [ 11] [ 6] [956191] +19:29:03 [ 12] [ 6] [192650] +19:29:03 [ 13] [ 4] [0320] +19:29:03 [ 14] [ 4] [1803] +19:29:03 [ 19] [ 3] [418] +19:29:03 [ 32] [ 6] [668899] +19:29:03 [ 37] [ 12] [507901604355] +19:29:03 [ 39] [ 2] [42] +19:29:03 [ 41] [ 8] [03202001] +19:29:03 [ 49] [ 3] [418] +19:29:03 [ 52] [ 16] [972DC7AD132D3989] +19:29:03 ============================================================================ +19:29:03 Calculate Source COMM Id = 4 +19:29:03 ============================================================================ +19:29:03 + + +waiting on router queue for slot.... +19:29:03 ============================================================================ +19:29:03 Slot Id : <128> +19:29:03 Transaction Type : REQUEST +19:29:03 Received From : +19:29:03 ============================================================================ +19:29:03 FNo. Len. Field Value +19:29:03 ============================================================================ +19:29:03 [ 1] [ 4] [0200] +19:29:03 [ 2] [ 16] [6213541000672033] +19:29:03 [ 3] [ 6] [301000] +19:29:03 [ 4] [ 12] [000000000000] +19:29:03 [ 7] [ 10] [0320192923] +19:29:03 [ 11] [ 6] [211268] +19:29:03 [ 12] [ 6] [191728] +19:29:03 [ 13] [ 4] [0320] +19:29:03 [ 14] [ 4] [4912] +19:29:03 [ 15] [ 4] [0320] +19:29:03 [ 18] [ 4] [6011] +19:29:03 [ 19] [ 3] [418] +19:29:03 [ 22] [ 3] [021] +19:29:03 [ 25] [ 2] [01] +19:29:03 [ 28] [ 9] [D00000000] +19:29:03 [ 32] [ 6] [198901] +19:29:03 [ 35] [ 32] [6213541000672033=491212017203169] +19:29:03 [ 37] [ 12] [507919211268] +19:29:03 [ 41] [ 8] [01529014] +19:29:03 [ 42] [ 15] [000000041529014] +19:29:03 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:29:03 [ 49] [ 3] [418] +19:29:03 [ 52] [ 16] [78D07BE0C000CED4] +19:29:03 ============================================================================ +19:29:03 + + +waiting on router queue for slot.... +19:29:03 Sending to : +19:29:03 ============================================================================ +19:29:03 Sending to : +19:29:03 ============================================================================ +19:29:04 ============================================================================ +19:29:04 Slot Id : <128> +19:29:04 Transaction Type : REQUEST +19:29:04 Received From : +19:29:04 ============================================================================ +19:29:04 FNo. Len. Field Value +19:29:04 ============================================================================ +19:29:04 [ 1] [ 4] [0200] +19:29:04 [ 2] [ 16] [6213541000672033] +19:29:04 [ 3] [ 6] [301000] +19:29:04 [ 4] [ 12] [000000000000] +19:29:04 [ 7] [ 10] [0320192923] +19:29:04 [ 11] [ 6] [211268] +19:29:04 [ 12] [ 6] [191728] +19:29:04 [ 13] [ 4] [0320] +19:29:04 [ 14] [ 4] [4912] +19:29:04 [ 15] [ 4] [0320] +19:29:04 [ 18] [ 4] [6011] +19:29:04 [ 19] [ 3] [418] +19:29:04 [ 22] [ 3] [021] +19:29:04 [ 25] [ 2] [01] +19:29:04 [ 28] [ 9] [D00000000] +19:29:04 [ 32] [ 6] [198901] +19:29:04 [ 35] [ 32] [6213541000672033=491212017203169] +19:29:04 [ 37] [ 12] [507919211268] +19:29:04 [ 41] [ 8] [01529014] +19:29:04 [ 42] [ 15] [000000041529014] +19:29:04 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:29:04 [ 49] [ 3] [418] +19:29:04 [ 52] [ 16] [78D07BE0C000CED4] +19:29:04 ============================================================================ +19:29:04 + + +waiting on router queue for slot.... +19:29:04 Sending to : +19:29:04 ============================================================================ +19:29:04 ============================================================================ +19:29:04 Slot Id : <128> +19:29:04 Transaction Type : REQUEST +19:29:04 Received From : +19:29:04 ============================================================================ +19:29:04 FNo. Len. Field Value +19:29:04 ============================================================================ +19:29:04 [ 1] [ 4] [0200] +19:29:04 [ 2] [ 16] [6213541000672033] +19:29:04 [ 3] [ 6] [301000] +19:29:04 [ 4] [ 12] [000000000000] +19:29:04 [ 7] [ 10] [0320192923] +19:29:04 [ 11] [ 6] [211268] +19:29:04 [ 12] [ 6] [191728] +19:29:04 [ 13] [ 4] [0320] +19:29:04 [ 14] [ 4] [4912] +19:29:04 [ 15] [ 4] [0320] +19:29:04 [ 18] [ 4] [6011] +19:29:04 [ 19] [ 3] [418] +19:29:04 [ 22] [ 3] [021] +19:29:04 [ 25] [ 2] [01] +19:29:04 [ 28] [ 9] [D00000000] +19:29:04 [ 32] [ 6] [198901] +19:29:04 [ 35] [ 32] [6213541000672033=491212017203169] +19:29:04 [ 37] [ 12] [507919211268] +19:29:04 [ 41] [ 8] [01529014] +19:29:04 [ 42] [ 15] [000000041529014] +19:29:04 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +19:29:04 [ 49] [ 3] [418] +19:29:04 [ 52] [ 16] [CE0DF121BB8B04E6] +19:29:04 ============================================================================ +19:29:04 + + +waiting on router queue for slot.... +19:29:04 Sending to : <0> +19:29:04 ============================================================================ +19:29:05 ============================================================================ +19:29:05 Slot Id : <128> +19:29:05 Transaction Type : RESPONSE +19:29:05 Received From : +19:29:05 ============================================================================ +19:29:05 FNo. Len. Field Value +19:29:05 ============================================================================ +19:29:05 [ 1] [ 4] [0210] +19:29:05 [ 2] [ 16] [6213541000672033] +19:29:05 [ 3] [ 6] [301000] +19:29:05 [ 4] [ 12] [000000000000] +19:29:05 [ 7] [ 10] [0320192923] +19:29:05 [ 11] [ 6] [211268] +19:29:05 [ 12] [ 6] [191728] +19:29:05 [ 13] [ 4] [0320] +19:29:05 [ 15] [ 4] [0320] +19:29:05 [ 18] [ 4] [6011] +19:29:05 [ 19] [ 3] [418] +19:29:05 [ 22] [ 3] [021] +19:29:05 [ 32] [ 6] [198901] +19:29:05 [ 35] [ 32] [6213541000672033=491212017203169] +19:29:05 [ 37] [ 12] [507919211268] +19:29:05 [ 38] [ 6] [192858] +19:29:05 [ 39] [ 2] [55] +19:29:05 [ 41] [ 8] [01529014] +19:29:05 [ 49] [ 3] [418] +19:29:05 ============================================================================ +19:29:05 Sending to : +19:29:05 ============================================================================ +19:29:05 + + +waiting on router queue for slot.... +19:29:07 ============================================================================ +19:29:07 Slot Id : <128> +19:29:07 Transaction Type : RESPONSE +19:29:07 Received From : +19:29:07 ============================================================================ +19:29:07 FNo. Len. Field Value +19:29:07 ============================================================================ +19:29:07 [ 1] [ 4] [0210] +19:29:07 [ 2] [ 16] [6213541000672033] +19:29:07 [ 3] [ 6] [301000] +19:29:07 [ 4] [ 12] [000000000000] +19:29:07 [ 7] [ 10] [0320192923] +19:29:07 [ 11] [ 6] [211268] +19:29:07 [ 12] [ 6] [191728] +19:29:07 [ 13] [ 4] [0320] +19:29:07 [ 15] [ 4] [0320] +19:29:07 [ 18] [ 4] [6011] +19:29:07 [ 19] [ 3] [418] +19:29:07 [ 22] [ 3] [021] +19:29:07 [ 32] [ 6] [198901] +19:29:07 [ 35] [ 32] [6213541000672033=491212017203169] +19:29:07 [ 37] [ 12] [507919211268] +19:29:07 [ 38] [ 6] [192858] +19:29:07 [ 39] [ 2] [55] +19:29:07 [ 41] [ 8] [01529014] +19:29:07 [ 49] [ 3] [418] +19:29:07 ============================================================================ +19:29:07 Calculate Source COMM Id = 5 +19:29:07 ============================================================================ +19:29:07 + + +waiting on router queue for slot.... +19:29:09 ============================================================================ +19:29:09 Slot Id : <157> +19:29:09 Transaction Type : REQUEST +19:29:09 Received From : +19:29:09 ============================================================================ +19:29:09 FNo. Len. Field Value +19:29:09 ============================================================================ +19:29:09 [ 1] [ 4] [0200] +19:29:09 [ 2] [ 16] [6213544002082730] +19:29:09 [ 3] [ 6] [301000] +19:29:09 [ 7] [ 10] [0320122815] +19:29:09 [ 11] [ 6] [271421] +19:29:09 [ 12] [ 6] [192815] +19:29:09 [ 13] [ 4] [0320] +19:29:09 [ 14] [ 4] [4912] +19:29:09 [ 15] [ 4] [0320] +19:29:09 [ 18] [ 4] [6011] +19:29:09 [ 19] [ 3] [418] +19:29:09 [ 22] [ 3] [021] +19:29:09 [ 25] [ 2] [01] +19:29:09 [ 32] [ 6] [180893] +19:29:09 [ 35] [ 32] [6213544002082730=491212018273182] +19:29:09 [ 37] [ 12] [507912271421] +19:29:09 [ 41] [ 8] [0528LPBP] +19:29:09 [ 42] [ 15] [999999 ] +19:29:09 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +19:29:09 [ 49] [ 3] [418] +19:29:09 [ 52] [ 16] [C27B19C848DC4367] +19:29:09 ============================================================================ +19:29:09 + + +waiting on router queue for slot.... +19:29:09 Sending to : +19:29:09 ============================================================================ +19:29:09 Sending to : +19:29:09 ============================================================================ +19:29:09 ============================================================================ +19:29:09 Slot Id : <157> +19:29:09 Transaction Type : REQUEST +19:29:09 Received From : +19:29:09 ============================================================================ +19:29:09 FNo. Len. Field Value +19:29:09 ============================================================================ +19:29:09 [ 1] [ 4] [0200] +19:29:09 [ 2] [ 16] [6213544002082730] +19:29:09 [ 3] [ 6] [301000] +19:29:09 [ 7] [ 10] [0320122815] +19:29:09 [ 11] [ 6] [271421] +19:29:09 [ 12] [ 6] [192815] +19:29:09 [ 13] [ 4] [0320] +19:29:09 [ 14] [ 4] [4912] +19:29:09 [ 15] [ 4] [0320] +19:29:09 [ 18] [ 4] [6011] +19:29:09 [ 19] [ 3] [418] +19:29:09 [ 22] [ 3] [021] +19:29:09 [ 25] [ 2] [01] +19:29:09 [ 32] [ 6] [180893] +19:29:09 [ 35] [ 32] [6213544002082730=491212018273182] +19:29:09 [ 37] [ 12] [507912271421] +19:29:09 [ 41] [ 8] [0528LPBP] +19:29:09 [ 42] [ 15] [999999 ] +19:29:09 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +19:29:09 [ 49] [ 3] [418] +19:29:09 [ 52] [ 16] [C27B19C848DC4367] +19:29:09 ============================================================================ +19:29:09 + + +waiting on router queue for slot.... +19:29:09 Sending to : +19:29:09 ============================================================================ +19:29:09 ============================================================================ +19:29:09 Slot Id : <157> +19:29:09 Transaction Type : REQUEST +19:29:09 Received From : +19:29:09 ============================================================================ +19:29:09 FNo. Len. Field Value +19:29:09 ============================================================================ +19:29:09 [ 1] [ 4] [0200] +19:29:09 [ 2] [ 16] [6213544002082730] +19:29:09 [ 3] [ 6] [301000] +19:29:09 [ 7] [ 10] [0320122815] +19:29:09 [ 11] [ 6] [271421] +19:29:09 [ 12] [ 6] [192815] +19:29:09 [ 13] [ 4] [0320] +19:29:09 [ 14] [ 4] [4912] +19:29:09 [ 15] [ 4] [0320] +19:29:09 [ 18] [ 4] [6011] +19:29:09 [ 19] [ 3] [418] +19:29:09 [ 22] [ 3] [021] +19:29:09 [ 25] [ 2] [01] +19:29:09 [ 32] [ 6] [180893] +19:29:09 [ 35] [ 32] [6213544002082730=491212018273182] +19:29:09 [ 37] [ 12] [507912271421] +19:29:09 [ 41] [ 8] [0528LPBP] +19:29:09 [ 42] [ 15] [999999 ] +19:29:09 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +19:29:09 [ 49] [ 3] [418] +19:29:09 [ 52] [ 16] [20F9066FA2B3A5A3] +19:29:09 ============================================================================ +19:29:09 + + +waiting on router queue for slot.... +19:29:09 Sending to : <0> +19:29:09 ============================================================================ +19:29:10 ============================================================================ +19:29:10 Slot Id : <157> +19:29:10 Transaction Type : RESPONSE +19:29:10 Received From : +19:29:10 ============================================================================ +19:29:10 FNo. Len. Field Value +19:29:10 ============================================================================ +19:29:10 [ 1] [ 4] [0210] +19:29:10 [ 2] [ 16] [6213544002082730] +19:29:10 [ 3] [ 6] [301000] +19:29:10 [ 4] [ 12] [000000000000] +19:29:10 [ 7] [ 10] [0320122815] +19:29:10 [ 11] [ 6] [271421] +19:29:10 [ 12] [ 6] [192815] +19:29:10 [ 13] [ 4] [0320] +19:29:10 [ 15] [ 4] [0320] +19:29:10 [ 18] [ 4] [6011] +19:29:10 [ 19] [ 3] [418] +19:29:10 [ 32] [ 6] [180893] +19:29:10 [ 35] [ 32] [6213544002082730=491212018273182] +19:29:10 [ 37] [ 12] [507912271421] +19:29:10 [ 38] [ 6] [620115] +19:29:10 [ 39] [ 2] [00] +19:29:10 [ 41] [ 8] [0528LPBP] +19:29:10 [ 49] [ 3] [418] +19:29:10 [ 54] [ 40] [1001418C0000099255401002418C000009925540] +19:29:10 ============================================================================ +19:29:10 Sending to : +19:29:10 ============================================================================ +19:29:10 + + +waiting on router queue for slot.... +19:29:11 ============================================================================ +19:29:11 Slot Id : <157> +19:29:11 Transaction Type : RESPONSE +19:29:11 Received From : +19:29:11 ============================================================================ +19:29:11 FNo. Len. Field Value +19:29:11 ============================================================================ +19:29:11 [ 1] [ 4] [0210] +19:29:11 [ 2] [ 16] [6213544002082730] +19:29:11 [ 3] [ 6] [301000] +19:29:11 [ 4] [ 12] [000000000000] +19:29:11 [ 7] [ 10] [0320122815] +19:29:11 [ 11] [ 6] [271421] +19:29:11 [ 12] [ 6] [192815] +19:29:11 [ 13] [ 4] [0320] +19:29:11 [ 15] [ 4] [0320] +19:29:11 [ 18] [ 4] [6011] +19:29:11 [ 19] [ 3] [418] +19:29:11 [ 32] [ 6] [180893] +19:29:11 [ 35] [ 32] [6213544002082730=491212018273182] +19:29:11 [ 37] [ 12] [507912271421] +19:29:11 [ 38] [ 6] [620115] +19:29:11 [ 39] [ 2] [00] +19:29:11 [ 41] [ 8] [0528LPBP] +19:29:11 [ 49] [ 3] [418] +19:29:11 [ 54] [ 40] [1001418C0000099255401002418C000009925540] +19:29:11 ============================================================================ +19:29:11 Calculate Source COMM Id = 2 +19:29:11 ============================================================================ +19:29:11 + + +waiting on router queue for slot.... +19:29:21 ============================================================================ +19:29:21 Slot Id : <175> +19:29:21 Transaction Type : REQUEST +19:29:21 Received From : +19:29:21 ============================================================================ +19:29:21 FNo. Len. Field Value +19:29:21 ============================================================================ +19:29:21 [ 1] [ 4] [0800] +19:29:21 [ 2] [ 5] [02531] +19:29:21 [ 3] [ 6] [579198] +19:29:21 [ 7] [ 10] [0320122921] +19:29:21 [ 11] [ 6] [807543] +19:29:21 [ 15] [ 10] [0320122921] +19:29:21 [ 37] [ 11] [57919807543] +19:29:21 [ 70] [ 3] [001] +19:29:21 ============================================================================ +19:29:21 + + +waiting on router queue for slot.... +19:29:21 ============================================================================ +19:29:21 Slot Id : <175> +19:29:21 Transaction Type : RESPONSE +19:29:21 Received From : +19:29:21 ============================================================================ +19:29:21 FNo. Len. Field Value +19:29:21 ============================================================================ +19:29:21 [ 1] [ 4] [0810] +19:29:21 [ 7] [ 10] [0320122921] +19:29:21 [ 11] [ 6] [807543] +19:29:21 [ 15] [ 4] [0320] +19:29:21 [ 37] [ 12] [57919807543] +19:29:21 [ 39] [ 2] [00] +19:29:21 [ 70] [ 3] [001] +19:29:21 ============================================================================ +19:29:21 Sending to : +19:29:21 ============================================================================ +19:29:21 + + +waiting on router queue for slot.... +19:29:22 ============================================================================ +19:29:22 Slot Id : <141> +19:29:22 Transaction Type : REQUEST +19:29:22 Received From : +19:29:22 ============================================================================ +19:29:22 FNo. Len. Field Value +19:29:22 ============================================================================ +19:29:22 [ 1] [ 4] [0200] +19:29:22 [ 2] [ 16] [6213545001076649] +19:29:22 [ 3] [ 6] [301000] +19:29:22 [ 4] [ 12] [000000000000] +19:29:22 [ 7] [ 10] [0320192711] +19:29:22 [ 11] [ 6] [956202] +19:29:22 [ 12] [ 6] [192711] +19:29:22 [ 13] [ 4] [0320] +19:29:22 [ 15] [ 4] [0320] +19:29:22 [ 18] [ 4] [6011] +19:29:22 [ 19] [ 3] [418] +19:29:22 [ 22] [ 3] [021] +19:29:22 [ 25] [ 2] [01] +19:29:22 [ 28] [ 9] [D00000000] +19:29:22 [ 32] [ 6] [668899] +19:29:22 [ 35] [ 32] [6213545001076649=491212017664692] +19:29:22 [ 37] [ 12] [507900146952] +19:29:22 [ 41] [ 8] [03020005] +19:29:22 [ 42] [ 15] [APT ] +19:29:22 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:29:22 [ 49] [ 3] [418] +19:29:22 [ 52] [ 16] [D4A49124A4666741] +19:29:22 ============================================================================ +19:29:22 + + +waiting on router queue for slot.... +19:29:22 Sending to : +19:29:22 ============================================================================ +19:29:22 Sending to : +19:29:22 ============================================================================ +19:29:22 ============================================================================ +19:29:22 Slot Id : <141> +19:29:22 Transaction Type : REQUEST +19:29:22 Received From : +19:29:22 ============================================================================ +19:29:22 FNo. Len. Field Value +19:29:22 ============================================================================ +19:29:22 [ 1] [ 4] [0200] +19:29:22 [ 2] [ 16] [6213545001076649] +19:29:22 [ 3] [ 6] [301000] +19:29:22 [ 4] [ 12] [000000000000] +19:29:22 [ 7] [ 10] [0320192711] +19:29:22 [ 11] [ 6] [956202] +19:29:22 [ 12] [ 6] [192711] +19:29:22 [ 13] [ 4] [0320] +19:29:22 [ 15] [ 4] [0320] +19:29:22 [ 18] [ 4] [6011] +19:29:22 [ 19] [ 3] [418] +19:29:22 [ 22] [ 3] [021] +19:29:22 [ 25] [ 2] [01] +19:29:22 [ 28] [ 9] [D00000000] +19:29:22 [ 32] [ 6] [668899] +19:29:22 [ 35] [ 32] [6213545001076649=491212017664692] +19:29:22 [ 37] [ 12] [507900146952] +19:29:22 [ 41] [ 8] [03020005] +19:29:22 [ 42] [ 15] [APT ] +19:29:22 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:29:22 [ 49] [ 3] [418] +19:29:22 [ 52] [ 16] [D4A49124A4666741] +19:29:22 ============================================================================ +19:29:22 + + +waiting on router queue for slot.... +19:29:22 Sending to : +19:29:22 ============================================================================ +19:29:22 ============================================================================ +19:29:22 Slot Id : <141> +19:29:22 Transaction Type : REQUEST +19:29:22 Received From : +19:29:22 ============================================================================ +19:29:22 FNo. Len. Field Value +19:29:22 ============================================================================ +19:29:22 [ 1] [ 4] [0200] +19:29:22 [ 2] [ 16] [6213545001076649] +19:29:22 [ 3] [ 6] [301000] +19:29:22 [ 4] [ 12] [000000000000] +19:29:22 [ 7] [ 10] [0320192711] +19:29:22 [ 11] [ 6] [956202] +19:29:22 [ 12] [ 6] [192711] +19:29:22 [ 13] [ 4] [0320] +19:29:22 [ 15] [ 4] [0320] +19:29:22 [ 18] [ 4] [6011] +19:29:22 [ 19] [ 3] [418] +19:29:22 [ 22] [ 3] [021] +19:29:22 [ 25] [ 2] [01] +19:29:22 [ 28] [ 9] [D00000000] +19:29:22 [ 32] [ 6] [668899] +19:29:22 [ 35] [ 32] [6213545001076649=491212017664692] +19:29:22 [ 37] [ 12] [507900146952] +19:29:22 [ 41] [ 8] [03020005] +19:29:22 [ 42] [ 15] [APT ] +19:29:22 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:29:22 [ 49] [ 3] [418] +19:29:22 [ 52] [ 16] [9DCF5EEC6598EFB7] +19:29:22 ============================================================================ +19:29:22 + + +waiting on router queue for slot.... +19:29:22 Sending to : <0> +19:29:22 ============================================================================ +19:29:22 ============================================================================ +19:29:22 Slot Id : <141> +19:29:22 Transaction Type : RESPONSE +19:29:22 Received From : +19:29:22 ============================================================================ +19:29:22 FNo. Len. Field Value +19:29:22 ============================================================================ +19:29:22 [ 1] [ 4] [0210] +19:29:22 [ 2] [ 16] [6213545001076649] +19:29:22 [ 3] [ 6] [301000] +19:29:22 [ 4] [ 12] [000000000000] +19:29:22 [ 7] [ 10] [0320192711] +19:29:22 [ 11] [ 6] [956202] +19:29:22 [ 12] [ 6] [192711] +19:29:22 [ 13] [ 4] [0320] +19:29:22 [ 15] [ 4] [0320] +19:29:22 [ 18] [ 4] [6011] +19:29:22 [ 19] [ 3] [418] +19:29:22 [ 32] [ 6] [668899] +19:29:22 [ 35] [ 32] [6213545001076649=491212017664692] +19:29:22 [ 37] [ 12] [507900146952] +19:29:22 [ 38] [ 6] [199982] +19:29:22 [ 39] [ 2] [00] +19:29:22 [ 41] [ 8] [03020005] +19:29:22 [ 49] [ 3] [418] +19:29:22 [ 54] [ 40] [1001418C0002997472921002418C000299747292] +19:29:22 ============================================================================ +19:29:22 Sending to : +19:29:22 ============================================================================ +19:29:22 + + +waiting on router queue for slot.... +19:29:24 ============================================================================ +19:29:24 Slot Id : <141> +19:29:24 Transaction Type : RESPONSE +19:29:24 Received From : +19:29:24 ============================================================================ +19:29:24 FNo. Len. Field Value +19:29:24 ============================================================================ +19:29:24 [ 1] [ 4] [0210] +19:29:24 [ 2] [ 16] [6213545001076649] +19:29:24 [ 3] [ 6] [301000] +19:29:24 [ 4] [ 12] [000000000000] +19:29:24 [ 7] [ 10] [0320192711] +19:29:24 [ 11] [ 6] [956202] +19:29:24 [ 12] [ 6] [192711] +19:29:24 [ 13] [ 4] [0320] +19:29:24 [ 15] [ 4] [0320] +19:29:24 [ 18] [ 4] [6011] +19:29:24 [ 19] [ 3] [418] +19:29:24 [ 32] [ 6] [668899] +19:29:24 [ 35] [ 32] [6213545001076649=491212017664692] +19:29:24 [ 37] [ 12] [507900146952] +19:29:24 [ 38] [ 6] [199982] +19:29:24 [ 39] [ 2] [00] +19:29:24 [ 41] [ 8] [03020005] +19:29:24 [ 49] [ 3] [418] +19:29:24 [ 54] [ 40] [1001418C0002997472921002418C000299747292] +19:29:24 ============================================================================ +19:29:24 Calculate Source COMM Id = 4 +19:29:24 ============================================================================ +19:29:24 + + +waiting on router queue for slot.... +19:29:27 ============================================================================ +19:29:27 Slot Id : <151> +19:29:27 Transaction Type : REQUEST +19:29:27 Received From : +19:29:27 ============================================================================ +19:29:27 FNo. Len. Field Value +19:29:27 ============================================================================ +19:29:27 [ 1] [ 4] [0800] +19:29:27 [ 7] [ 10] [0320122833] +19:29:27 [ 11] [ 6] [157959] +19:29:27 [ 70] [ 3] [301] +19:29:27 ============================================================================ +19:29:27 + + +waiting on router queue for slot.... +19:29:27 Sending to : +19:29:27 ============================================================================ +19:29:27 ============================================================================ +19:29:27 Slot Id : <151> +19:29:27 Transaction Type : RESPONSE +19:29:27 Received From : +19:29:27 ============================================================================ +19:29:27 FNo. Len. Field Value +19:29:27 ============================================================================ +19:29:27 [ 1] [ 4] [0810] +19:29:27 [ 7] [ 10] [0320122833] +19:29:27 [ 11] [ 6] [157959] +19:29:27 [ 39] [ 2] [00] +19:29:27 [ 70] [ 3] [301] +19:29:27 ============================================================================ +19:29:27 Calculate Source COMM Id = 2 +19:29:27 ============================================================================ +19:29:27 + + +waiting on router queue for slot.... +19:29:37 ============================================================================ +19:29:37 Slot Id : <170> +19:29:37 Transaction Type : REQUEST +19:29:37 Received From : +19:29:37 ============================================================================ +19:29:37 FNo. Len. Field Value +19:29:37 ============================================================================ +19:29:37 [ 1] [ 4] [0800] +19:29:37 [ 7] [ 10] [0320122844] +19:29:37 [ 11] [ 6] [157960] +19:29:37 [ 70] [ 3] [301] +19:29:37 ============================================================================ +19:29:37 + + +waiting on router queue for slot.... +19:29:37 Sending to : +19:29:37 ============================================================================ +19:29:37 ============================================================================ +19:29:37 Slot Id : <170> +19:29:37 Transaction Type : RESPONSE +19:29:37 Received From : +19:29:37 ============================================================================ +19:29:37 FNo. Len. Field Value +19:29:37 ============================================================================ +19:29:37 [ 1] [ 4] [0810] +19:29:37 [ 7] [ 10] [0320122844] +19:29:37 [ 11] [ 6] [157960] +19:29:37 [ 39] [ 2] [00] +19:29:37 [ 70] [ 3] [301] +19:29:37 ============================================================================ +19:29:37 Calculate Source COMM Id = 2 +19:29:37 ============================================================================ +19:29:37 + + +waiting on router queue for slot.... +19:29:47 ============================================================================ +19:29:47 Slot Id : <171> +19:29:47 Transaction Type : REQUEST +19:29:47 Received From : +19:29:47 ============================================================================ +19:29:47 FNo. Len. Field Value +19:29:47 ============================================================================ +19:29:47 [ 1] [ 4] [0200] +19:29:47 [ 2] [ 16] [6688990104203102] +19:29:47 [ 3] [ 6] [011000] +19:29:47 [ 4] [ 12] [000010000000] +19:29:47 [ 7] [ 10] [0320192942] +19:29:47 [ 11] [ 6] [836817] +19:29:47 [ 12] [ 6] [192942] +19:29:47 [ 13] [ 4] [0320] +19:29:47 [ 15] [ 4] [0320] +19:29:47 [ 18] [ 4] [6011] +19:29:47 [ 22] [ 3] [900] +19:29:47 [ 25] [ 2] [02] +19:29:47 [ 28] [ 9] [D00002000] +19:29:47 [ 32] [ 6] [621354] +19:29:47 [ 35] [ 37] [6688990104203102=43031231310233300000] +19:29:47 [ 37] [ 12] [507904377397] +19:29:47 [ 41] [ 8] [03003600] +19:29:47 [ 42] [ 15] [NATIVE ] +19:29:47 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +19:29:47 [ 49] [ 3] [418] +19:29:47 [ 52] [ 16] [23C4624A29F7E60D] +19:29:47 ============================================================================ +19:29:47 + + +waiting on router queue for slot.... +19:29:47 Sending to : +19:29:47 ============================================================================ +19:29:47 Sending to : +19:29:47 ============================================================================ +19:29:48 ============================================================================ +19:29:48 Slot Id : <171> +19:29:48 Transaction Type : REQUEST +19:29:48 Received From : +19:29:48 ============================================================================ +19:29:48 FNo. Len. Field Value +19:29:48 ============================================================================ +19:29:48 [ 1] [ 4] [0200] +19:29:48 [ 2] [ 16] [6688990104203102] +19:29:48 [ 3] [ 6] [011000] +19:29:48 [ 4] [ 12] [000010000000] +19:29:48 [ 7] [ 10] [0320192942] +19:29:48 [ 11] [ 6] [836817] +19:29:48 [ 12] [ 6] [192942] +19:29:48 [ 13] [ 4] [0320] +19:29:48 [ 15] [ 4] [0320] +19:29:48 [ 18] [ 4] [6011] +19:29:48 [ 22] [ 3] [900] +19:29:48 [ 25] [ 2] [02] +19:29:48 [ 28] [ 9] [D00002000] +19:29:48 [ 32] [ 6] [621354] +19:29:48 [ 35] [ 37] [6688990104203102=43031231310233300000] +19:29:48 [ 37] [ 12] [507904377397] +19:29:48 [ 41] [ 8] [03003600] +19:29:48 [ 42] [ 15] [NATIVE ] +19:29:48 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +19:29:48 [ 49] [ 3] [418] +19:29:48 [ 52] [ 16] [23C4624A29F7E60D] +19:29:48 ============================================================================ +19:29:48 + + +waiting on router queue for slot.... +19:29:48 Sending to : +19:29:48 ============================================================================ +19:29:48 ============================================================================ +19:29:48 Slot Id : <171> +19:29:48 Transaction Type : REQUEST +19:29:48 Received From : +19:29:48 ============================================================================ +19:29:48 FNo. Len. Field Value +19:29:48 ============================================================================ +19:29:48 [ 1] [ 4] [0200] +19:29:48 [ 2] [ 16] [6688990104203102] +19:29:48 [ 3] [ 6] [011000] +19:29:48 [ 4] [ 12] [000010000000] +19:29:48 [ 7] [ 10] [0320192942] +19:29:48 [ 11] [ 6] [836817] +19:29:48 [ 12] [ 6] [192942] +19:29:48 [ 13] [ 4] [0320] +19:29:48 [ 15] [ 4] [0320] +19:29:48 [ 18] [ 4] [6011] +19:29:48 [ 22] [ 3] [900] +19:29:48 [ 25] [ 2] [02] +19:29:48 [ 28] [ 9] [D00002000] +19:29:48 [ 32] [ 6] [621354] +19:29:48 [ 35] [ 37] [6688990104203102=43031231310233300000] +19:29:48 [ 37] [ 12] [507904377397] +19:29:48 [ 41] [ 8] [03003600] +19:29:48 [ 42] [ 15] [NATIVE ] +19:29:48 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +19:29:48 [ 49] [ 3] [418] +19:29:48 [ 52] [ 16] [DB3385798AFA49E3] +19:29:48 ============================================================================ +19:29:48 + + +waiting on router queue for slot.... +19:29:48 Sending to : <4> +19:29:48 ============================================================================ +19:29:48 ============================================================================ +19:29:48 Slot Id : <171> +19:29:48 Transaction Type : RESPONSE +19:29:48 Received From : +19:29:48 ============================================================================ +19:29:48 FNo. Len. Field Value +19:29:48 ============================================================================ +19:29:48 [ 1] [ 4] [0210] +19:29:48 [ 2] [ 16] [6688990104203102] +19:29:48 [ 3] [ 6] [011000] +19:29:48 [ 4] [ 12] [000010000000] +19:29:48 [ 7] [ 10] [0320192942] +19:29:48 [ 11] [ 6] [836817] +19:29:48 [ 12] [ 6] [192942] +19:29:48 [ 13] [ 4] [0320] +19:29:48 [ 15] [ 4] [0320] +19:29:48 [ 18] [ 4] [6011] +19:29:48 [ 22] [ 3] [021] +19:29:48 [ 32] [ 6] [621354] +19:29:48 [ 35] [ 37] [6688990104203102=43031231310233300000] +19:29:48 [ 37] [ 12] [507904377397] +19:29:48 [ 39] [ 2] [62] +19:29:48 [ 41] [ 8] [03003600] +19:29:48 [ 49] [ 3] [418] +19:29:48 ============================================================================ +19:29:48 Sending to : +19:29:48 ============================================================================ +19:29:48 + + +waiting on router queue for slot.... +19:29:48 ============================================================================ +19:29:48 Slot Id : <172> +19:29:48 Transaction Type : REQUEST +19:29:48 Received From : +19:29:48 ============================================================================ +19:29:48 FNo. Len. Field Value +19:29:48 ============================================================================ +19:29:48 [ 1] [ 4] [0800] +19:29:48 [ 7] [ 10] [0320122855] +19:29:48 [ 11] [ 6] [157961] +19:29:48 [ 70] [ 3] [301] +19:29:48 ============================================================================ +19:29:48 + + +waiting on router queue for slot.... +19:29:48 Sending to : +19:29:48 ============================================================================ +19:29:48 ============================================================================ +19:29:48 Slot Id : <172> +19:29:48 Transaction Type : RESPONSE +19:29:48 Received From : +19:29:48 ============================================================================ +19:29:48 FNo. Len. Field Value +19:29:48 ============================================================================ +19:29:48 [ 1] [ 4] [0810] +19:29:48 [ 7] [ 10] [0320122855] +19:29:48 [ 11] [ 6] [157961] +19:29:48 [ 39] [ 2] [00] +19:29:48 [ 70] [ 3] [301] +19:29:48 ============================================================================ +19:29:48 Calculate Source COMM Id = 2 +19:29:48 ============================================================================ +19:29:48 + + +waiting on router queue for slot.... +19:29:49 ============================================================================ +19:29:49 Slot Id : <171> +19:29:49 Transaction Type : RESPONSE +19:29:49 Received From : +19:29:49 ============================================================================ +19:29:49 FNo. Len. Field Value +19:29:49 ============================================================================ +19:29:49 [ 1] [ 4] [0210] +19:29:49 [ 2] [ 16] [6688990104203102] +19:29:49 [ 3] [ 6] [011000] +19:29:49 [ 4] [ 12] [000010000000] +19:29:49 [ 7] [ 10] [0320192942] +19:29:49 [ 11] [ 6] [836817] +19:29:49 [ 12] [ 6] [192942] +19:29:49 [ 13] [ 4] [0320] +19:29:49 [ 15] [ 4] [0320] +19:29:49 [ 18] [ 4] [6011] +19:29:49 [ 22] [ 3] [021] +19:29:49 [ 32] [ 6] [621354] +19:29:49 [ 35] [ 37] [6688990104203102=43031231310233300000] +19:29:49 [ 37] [ 12] [507904377397] +19:29:49 [ 39] [ 2] [62] +19:29:49 [ 41] [ 8] [03003600] +19:29:49 [ 49] [ 3] [418] +19:29:49 ============================================================================ +19:29:49 Calculate Source COMM Id = 0 +19:29:49 ============================================================================ +19:29:49 + + +waiting on router queue for slot.... +19:29:57 ============================================================================ +19:29:57 Slot Id : <164> +19:29:57 Transaction Type : REQUEST +19:29:57 Received From : +19:29:57 ============================================================================ +19:29:57 FNo. Len. Field Value +19:29:57 ============================================================================ +19:29:57 [ 1] [ 4] [0800] +19:29:57 [ 7] [ 10] [0320123742] +19:29:57 [ 11] [ 6] [017387] +19:29:57 [ 37] [ 12] [57919017387] +19:29:57 [ 70] [ 3] [301] +19:29:57 ============================================================================ +19:29:57 + + +waiting on router queue for slot.... +19:29:57 Sending to : +19:29:57 ============================================================================ +19:29:57 ============================================================================ +19:29:57 Slot Id : <164> +19:29:57 Transaction Type : RESPONSE +19:29:57 Received From : +19:29:57 ============================================================================ +19:29:57 FNo. Len. Field Value +19:29:57 ============================================================================ +19:29:57 [ 1] [ 4] [0810] +19:29:57 [ 7] [ 10] [0320123742] +19:29:57 [ 11] [ 6] [017387] +19:29:57 [ 37] [ 12] [579190173870] +19:29:57 [ 39] [ 2] [00] +19:29:57 [ 70] [ 3] [810] +19:29:57 ============================================================================ +19:29:57 Calculate Source COMM Id = 1 +19:29:57 ============================================================================ +19:29:57 + + +waiting on router queue for slot.... +19:29:59 ============================================================================ +19:29:59 Slot Id : <186> +19:29:59 Transaction Type : REQUEST +19:29:59 Received From : +19:29:59 ============================================================================ +19:29:59 FNo. Len. Field Value +19:29:59 ============================================================================ +19:29:59 [ 1] [ 4] [0800] +19:29:59 [ 7] [ 10] [0320192945] +19:29:59 [ 11] [ 6] [053351] +19:29:59 [ 37] [ 12] [507919053351] +19:29:59 [ 70] [ 3] [ ] +19:29:59 ============================================================================ +19:29:59 + + +waiting on router queue for slot.... +19:29:59 Sending to : +19:29:59 ============================================================================ +19:29:59 ============================================================================ +19:29:59 Slot Id : <186> +19:29:59 Transaction Type : RESPONSE +19:29:59 Received From : +19:29:59 ============================================================================ +19:29:59 FNo. Len. Field Value +19:29:59 ============================================================================ +19:29:59 [ 1] [ 4] [0810] +19:29:59 [ 7] [ 10] [0320192945] +19:29:59 [ 11] [ 6] [053351] +19:29:59 [ 37] [ 12] [507919053351] +19:29:59 [ 39] [ 2] [91] +19:29:59 [ 70] [ 3] [ ] +19:29:59 ============================================================================ +19:29:59 Calculate Source COMM Id = 3 +19:29:59 ============================================================================ +19:29:59 + + +waiting on router queue for slot.... +19:30:01 ============================================================================ +19:30:01 Slot Id : <126> +19:30:01 Transaction Type : REQUEST +19:30:01 Received From : +19:30:01 ============================================================================ +19:30:01 FNo. Len. Field Value +19:30:01 ============================================================================ +19:30:01 [ 1] [ 4] [0800] +19:30:01 [ 7] [ 10] [0320122907] +19:30:01 [ 11] [ 6] [157962] +19:30:01 [ 70] [ 3] [301] +19:30:01 ============================================================================ +19:30:01 + + +waiting on router queue for slot.... +19:30:01 Sending to : +19:30:01 ============================================================================ +19:30:01 ============================================================================ +19:30:01 Slot Id : <126> +19:30:01 Transaction Type : RESPONSE +19:30:01 Received From : +19:30:01 ============================================================================ +19:30:01 FNo. Len. Field Value +19:30:01 ============================================================================ +19:30:01 [ 1] [ 4] [0810] +19:30:01 [ 7] [ 10] [0320122907] +19:30:01 [ 11] [ 6] [157962] +19:30:01 [ 39] [ 2] [00] +19:30:01 [ 70] [ 3] [301] +19:30:01 ============================================================================ +19:30:01 Calculate Source COMM Id = 2 +19:30:01 ============================================================================ +19:30:01 + + +waiting on router queue for slot.... +19:30:01 ============================================================================ +19:30:01 Slot Id : <139> +19:30:01 Transaction Type : REQUEST +19:30:01 Received From : +19:30:01 ============================================================================ +19:30:01 FNo. Len. Field Value +19:30:01 ============================================================================ +19:30:01 [ 1] [ 4] [0800] +19:30:01 [ 7] [ 10] [0321024149] +19:30:01 [ 11] [ 6] [194149] +19:30:01 [ 37] [ 12] [57919194149] +19:30:01 [ 70] [ 3] [301] +19:30:01 ============================================================================ +19:30:01 + + +waiting on router queue for slot.... +19:30:01 Sending to : +19:30:01 ============================================================================ +19:30:01 ============================================================================ +19:30:01 Slot Id : <139> +19:30:01 Transaction Type : RESPONSE +19:30:01 Received From : +19:30:01 ============================================================================ +19:30:01 FNo. Len. Field Value +19:30:01 ============================================================================ +19:30:01 [ 1] [ 4] [0810] +19:30:01 [ 7] [ 10] [0321024149] +19:30:01 [ 11] [ 6] [194149] +19:30:01 [ 37] [ 12] [579191941490] +19:30:01 [ 39] [ 2] [00] +19:30:01 [ 70] [ 3] [810] +19:30:01 ============================================================================ +19:30:01 Calculate Source COMM Id = 6 +19:30:01 ============================================================================ +19:30:01 + + +waiting on router queue for slot.... +19:30:03 ============================================================================ +19:30:03 Slot Id : <202> +19:30:03 Transaction Type : REQUEST +19:30:03 Received From : +19:30:03 ============================================================================ +19:30:03 FNo. Len. Field Value +19:30:03 ============================================================================ +19:30:03 [ 1] [ 4] [0200] +19:30:03 [ 2] [ 16] [6213545001076649] +19:30:03 [ 3] [ 6] [010000] +19:30:03 [ 4] [ 12] [000070000000] +19:30:03 [ 7] [ 10] [0320192753] +19:30:03 [ 11] [ 6] [956222] +19:30:03 [ 12] [ 6] [192753] +19:30:03 [ 13] [ 4] [0320] +19:30:03 [ 15] [ 4] [0320] +19:30:03 [ 18] [ 4] [6011] +19:30:03 [ 19] [ 3] [418] +19:30:03 [ 22] [ 3] [021] +19:30:03 [ 25] [ 2] [01] +19:30:03 [ 28] [ 9] [D00002000] +19:30:03 [ 32] [ 6] [668899] +19:30:03 [ 35] [ 32] [6213545001076649=491212017664692] +19:30:03 [ 37] [ 12] [507900146953] +19:30:03 [ 41] [ 8] [03020005] +19:30:03 [ 42] [ 15] [APT ] +19:30:03 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:30:03 [ 49] [ 3] [418] +19:30:03 [ 52] [ 16] [D4A49124A4666741] +19:30:03 ============================================================================ +19:30:03 + + +waiting on router queue for slot.... +19:30:03 Sending to : +19:30:03 ============================================================================ +19:30:03 Sending to : +19:30:03 ============================================================================ +19:30:04 ============================================================================ +19:30:04 Slot Id : <202> +19:30:04 Transaction Type : REQUEST +19:30:04 Received From : +19:30:04 ============================================================================ +19:30:04 FNo. Len. Field Value +19:30:04 ============================================================================ +19:30:04 [ 1] [ 4] [0200] +19:30:04 [ 2] [ 16] [6213545001076649] +19:30:04 [ 3] [ 6] [010000] +19:30:04 [ 4] [ 12] [000070000000] +19:30:04 [ 7] [ 10] [0320192753] +19:30:04 [ 11] [ 6] [956222] +19:30:04 [ 12] [ 6] [192753] +19:30:04 [ 13] [ 4] [0320] +19:30:04 [ 15] [ 4] [0320] +19:30:04 [ 18] [ 4] [6011] +19:30:04 [ 19] [ 3] [418] +19:30:04 [ 22] [ 3] [021] +19:30:04 [ 25] [ 2] [01] +19:30:04 [ 28] [ 9] [D00002000] +19:30:04 [ 32] [ 6] [668899] +19:30:04 [ 35] [ 32] [6213545001076649=491212017664692] +19:30:04 [ 37] [ 12] [507900146953] +19:30:04 [ 41] [ 8] [03020005] +19:30:04 [ 42] [ 15] [APT ] +19:30:04 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:30:04 [ 49] [ 3] [418] +19:30:04 [ 52] [ 16] [D4A49124A4666741] +19:30:04 ============================================================================ +19:30:04 + + +waiting on router queue for slot.... +19:30:04 Sending to : +19:30:04 ============================================================================ +19:30:04 ============================================================================ +19:30:04 Slot Id : <202> +19:30:04 Transaction Type : REQUEST +19:30:04 Received From : +19:30:04 ============================================================================ +19:30:04 FNo. Len. Field Value +19:30:04 ============================================================================ +19:30:04 [ 1] [ 4] [0200] +19:30:04 [ 2] [ 16] [6213545001076649] +19:30:04 [ 3] [ 6] [010000] +19:30:04 [ 4] [ 12] [000070000000] +19:30:04 [ 7] [ 10] [0320192753] +19:30:04 [ 11] [ 6] [956222] +19:30:04 [ 12] [ 6] [192753] +19:30:04 [ 13] [ 4] [0320] +19:30:04 [ 15] [ 4] [0320] +19:30:04 [ 18] [ 4] [6011] +19:30:04 [ 19] [ 3] [418] +19:30:04 [ 22] [ 3] [021] +19:30:04 [ 25] [ 2] [01] +19:30:04 [ 28] [ 9] [D00002000] +19:30:04 [ 32] [ 6] [668899] +19:30:04 [ 35] [ 32] [6213545001076649=491212017664692] +19:30:04 [ 37] [ 12] [507900146953] +19:30:04 [ 41] [ 8] [03020005] +19:30:04 [ 42] [ 15] [APT ] +19:30:04 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +19:30:04 [ 49] [ 3] [418] +19:30:04 [ 52] [ 16] [9DCF5EEC6598EFB7] +19:30:04 ============================================================================ +19:30:04 + + +waiting on router queue for slot.... +19:30:04 Sending to : <0> +19:30:04 ============================================================================ +19:30:04 ============================================================================ +19:30:04 Slot Id : <202> +19:30:04 Transaction Type : RESPONSE +19:30:04 Received From : +19:30:04 ============================================================================ +19:30:04 FNo. Len. Field Value +19:30:04 ============================================================================ +19:30:04 [ 1] [ 4] [0210] +19:30:04 [ 2] [ 16] [6213545001076649] +19:30:04 [ 3] [ 6] [010000] +19:30:04 [ 4] [ 12] [000070000000] +19:30:04 [ 7] [ 10] [0320192753] +19:30:04 [ 11] [ 6] [956222] +19:30:04 [ 12] [ 6] [192753] +19:30:04 [ 13] [ 4] [0320] +19:30:04 [ 15] [ 4] [0320] +19:30:04 [ 18] [ 4] [6011] +19:30:04 [ 19] [ 3] [418] +19:30:04 [ 32] [ 6] [668899] +19:30:04 [ 35] [ 32] [6213545001076649=491212017664692] +19:30:04 [ 37] [ 12] [507900146953] +19:30:04 [ 38] [ 6] [937492] +19:30:04 [ 39] [ 2] [00] +19:30:04 [ 41] [ 8] [03020005] +19:30:04 [ 49] [ 3] [418] +19:30:04 [ 54] [ 40] [0001418C0002295472920002418C000229547292] +19:30:04 ============================================================================ +19:30:04 Sending to : +19:30:04 ============================================================================ +19:30:04 + + +waiting on router queue for slot.... +19:30:06 ============================================================================ +19:30:06 Slot Id : <202> +19:30:06 Transaction Type : RESPONSE +19:30:06 Received From : +19:30:06 ============================================================================ +19:30:06 FNo. Len. Field Value +19:30:06 ============================================================================ +19:30:06 [ 1] [ 4] [0210] +19:30:06 [ 2] [ 16] [6213545001076649] +19:30:06 [ 3] [ 6] [010000] +19:30:06 [ 4] [ 12] [000070000000] +19:30:06 [ 7] [ 10] [0320192753] +19:30:06 [ 11] [ 6] [956222] +19:30:06 [ 12] [ 6] [192753] +19:30:06 [ 13] [ 4] [0320] +19:30:06 [ 15] [ 4] [0320] +19:30:06 [ 18] [ 4] [6011] +19:30:06 [ 19] [ 3] [418] +19:30:06 [ 32] [ 6] [668899] +19:30:06 [ 35] [ 32] [6213545001076649=491212017664692] +19:30:06 [ 37] [ 12] [507900146953] +19:30:06 [ 38] [ 6] [937492] +19:30:06 [ 39] [ 2] [00] +19:30:06 [ 41] [ 8] [03020005] +19:30:06 [ 49] [ 3] [418] +19:30:06 [ 54] [ 40] [0001418C0002295472920002418C000229547292] +19:30:06 ============================================================================ +19:30:06 Calculate Source COMM Id = 4 +19:30:06 ============================================================================ +19:30:06 + + +waiting on router queue for slot.... +19:30:15 ============================================================================ +19:30:15 Slot Id : <119> +19:30:15 Transaction Type : REQUEST +19:30:15 Received From : +19:30:15 ============================================================================ +19:30:15 FNo. Len. Field Value +19:30:15 ============================================================================ +19:30:15 [ 1] [ 4] [0200] +19:30:15 [ 2] [ 16] [6213544002082730] +19:30:15 [ 3] [ 6] [012000] +19:30:15 [ 4] [ 12] [000005000000] +19:30:15 [ 7] [ 10] [0320122922] +19:30:15 [ 11] [ 6] [271424] +19:30:15 [ 12] [ 6] [192922] +19:30:15 [ 13] [ 4] [0320] +19:30:15 [ 14] [ 4] [4912] +19:30:15 [ 15] [ 4] [0320] +19:30:15 [ 18] [ 4] [6011] +19:30:15 [ 19] [ 3] [418] +19:30:15 [ 22] [ 3] [021] +19:30:15 [ 25] [ 2] [01] +19:30:15 [ 28] [ 9] [D00002000] +19:30:15 [ 32] [ 6] [180893] +19:30:15 [ 35] [ 32] [6213544002082730=491212018273182] +19:30:15 [ 37] [ 12] [507912271424] +19:30:15 [ 41] [ 8] [0528LPBP] +19:30:15 [ 42] [ 15] [999999 ] +19:30:15 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +19:30:15 [ 49] [ 3] [418] +19:30:15 [ 52] [ 16] [C27B19C848DC4367] +19:30:15 ============================================================================ +19:30:15 + + +waiting on router queue for slot.... +19:30:15 Sending to : +19:30:15 ============================================================================ +19:30:15 Sending to : +19:30:15 ============================================================================ +19:30:16 ============================================================================ +19:30:16 Slot Id : <119> +19:30:16 Transaction Type : REQUEST +19:30:16 Received From : +19:30:16 ============================================================================ +19:30:16 FNo. Len. Field Value +19:30:16 ============================================================================ +19:30:16 [ 1] [ 4] [0200] +19:30:16 [ 2] [ 16] [6213544002082730] +19:30:16 [ 3] [ 6] [012000] +19:30:16 [ 4] [ 12] [000005000000] +19:30:16 [ 7] [ 10] [0320122922] +19:30:16 [ 11] [ 6] [271424] +19:30:16 [ 12] [ 6] [192922] +19:30:16 [ 13] [ 4] [0320] +19:30:16 [ 14] [ 4] [4912] +19:30:16 [ 15] [ 4] [0320] +19:30:16 [ 18] [ 4] [6011] +19:30:16 [ 19] [ 3] [418] +19:30:16 [ 22] [ 3] [021] +19:30:16 [ 25] [ 2] [01] +19:30:16 [ 28] [ 9] [D00002000] +19:30:16 [ 32] [ 6] [180893] +19:30:16 [ 35] [ 32] [6213544002082730=491212018273182] +19:30:16 [ 37] [ 12] [507912271424] +19:30:16 [ 41] [ 8] [0528LPBP] +19:30:16 [ 42] [ 15] [999999 ] +19:30:16 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +19:30:16 [ 49] [ 3] [418] +19:30:16 [ 52] [ 16] [C27B19C848DC4367] +19:30:16 ============================================================================ +19:30:16 + + +waiting on router queue for slot.... +19:30:16 Sending to : +19:30:16 ============================================================================ +19:30:16 ============================================================================ +19:30:16 Slot Id : <119> +19:30:16 Transaction Type : REQUEST +19:30:16 Received From : +19:30:16 ============================================================================ +19:30:16 FNo. Len. Field Value +19:30:16 ============================================================================ +19:30:16 [ 1] [ 4] [0200] +19:30:16 [ 2] [ 16] [6213544002082730] +19:30:16 [ 3] [ 6] [012000] +19:30:16 [ 4] [ 12] [000005000000] +19:30:16 [ 7] [ 10] [0320122922] +19:30:16 [ 11] [ 6] [271424] +19:30:16 [ 12] [ 6] [192922] +19:30:16 [ 13] [ 4] [0320] +19:30:16 [ 14] [ 4] [4912] +19:30:16 [ 15] [ 4] [0320] +19:30:16 [ 18] [ 4] [6011] +19:30:16 [ 19] [ 3] [418] +19:30:16 [ 22] [ 3] [021] +19:30:16 [ 25] [ 2] [01] +19:30:16 [ 28] [ 9] [D00002000] +19:30:16 [ 32] [ 6] [180893] +19:30:16 [ 35] [ 32] [6213544002082730=491212018273182] +19:30:16 [ 37] [ 12] [507912271424] +19:30:16 [ 41] [ 8] [0528LPBP] +19:30:16 [ 42] [ 15] [999999 ] +19:30:16 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +19:30:16 [ 49] [ 3] [418] +19:30:16 [ 52] [ 16] [20F9066FA2B3A5A3] +19:30:16 ============================================================================ +19:30:16 + + +waiting on router queue for slot.... +19:30:16 Sending to : <0> +19:30:16 ============================================================================ +19:30:16 ============================================================================ +19:30:16 Slot Id : <119> +19:30:16 Transaction Type : RESPONSE +19:30:16 Received From : +19:30:16 ============================================================================ +19:30:16 FNo. Len. Field Value +19:30:16 ============================================================================ +19:30:16 [ 1] [ 4] [0210] +19:30:16 [ 2] [ 16] [6213544002082730] +19:30:16 [ 3] [ 6] [012000] +19:30:16 [ 4] [ 12] [000005000000] +19:30:16 [ 7] [ 10] [0320122922] +19:30:16 [ 11] [ 6] [271424] +19:30:16 [ 12] [ 6] [192922] +19:30:16 [ 13] [ 4] [0320] +19:30:16 [ 15] [ 4] [0320] +19:30:16 [ 18] [ 4] [6011] +19:30:16 [ 19] [ 3] [418] +19:30:16 [ 32] [ 6] [180893] +19:30:16 [ 35] [ 32] [6213544002082730=491212018273182] +19:30:16 [ 37] [ 12] [507912271424] +19:30:16 [ 38] [ 6] [271424] +19:30:16 [ 39] [ 2] [51] +19:30:16 [ 41] [ 8] [0528LPBP] +19:30:16 [ 49] [ 3] [418] +19:30:16 [ 54] [ 40] [2001418C0000099255402002418C000009925540] +19:30:16 ============================================================================ +19:30:16 Sending to : +19:30:16 ============================================================================ +19:30:16 + + +waiting on router queue for slot.... +19:30:17 ============================================================================ +19:30:17 Slot Id : <148> +19:30:17 Transaction Type : REQUEST +19:30:17 Received From : +19:30:17 ============================================================================ +19:30:17 FNo. Len. Field Value +19:30:17 ============================================================================ +19:30:17 [ 1] [ 4] [0800] +19:30:17 [ 7] [ 10] [0320122923] +19:30:17 [ 11] [ 6] [157963] +19:30:17 [ 70] [ 3] [301] +19:30:17 ============================================================================ +19:30:17 + + +waiting on router queue for slot.... +19:30:17 Sending to : +19:30:17 ============================================================================ +19:30:17 ============================================================================ +19:30:17 Slot Id : <148> +19:30:17 Transaction Type : RESPONSE +19:30:17 Received From : +19:30:17 ============================================================================ +19:30:17 FNo. Len. Field Value +19:30:17 ============================================================================ +19:30:17 [ 1] [ 4] [0810] +19:30:17 [ 7] [ 10] [0320122923] +19:30:17 [ 11] [ 6] [157963] +19:30:17 [ 39] [ 2] [00] +19:30:17 [ 70] [ 3] [301] +19:30:17 ============================================================================ +19:30:17 Calculate Source COMM Id = 2 +19:30:17 ============================================================================ +19:30:17 + + +waiting on router queue for slot.... +19:30:17 ============================================================================ +19:30:17 Slot Id : <119> +19:30:17 Transaction Type : RESPONSE +19:30:17 Received From : +19:30:17 ============================================================================ +19:30:17 FNo. Len. Field Value +19:30:17 ============================================================================ +19:30:17 [ 1] [ 4] [0210] +19:30:17 [ 2] [ 16] [6213544002082730] +19:30:17 [ 3] [ 6] [012000] +19:30:17 [ 4] [ 12] [000005000000] +19:30:17 [ 7] [ 10] [0320122922] +19:30:17 [ 11] [ 6] [271424] +19:30:17 [ 12] [ 6] [192922] +19:30:17 [ 13] [ 4] [0320] +19:30:17 [ 15] [ 4] [0320] +19:30:17 [ 18] [ 4] [6011] +19:30:17 [ 19] [ 3] [418] +19:30:17 [ 32] [ 6] [180893] +19:30:17 [ 35] [ 32] [6213544002082730=491212018273182] +19:30:17 [ 37] [ 12] [507912271424] +19:30:17 [ 38] [ 6] [271424] +19:30:17 [ 39] [ 2] [51] +19:30:17 [ 41] [ 8] [0528LPBP] +19:30:17 [ 49] [ 3] [418] +19:30:17 [ 54] [ 40] [2001418C0000099255402002418C000009925540] +19:30:17 ============================================================================ +19:30:17 Calculate Source COMM Id = 2 +19:30:17 ============================================================================ +19:30:17 + + +waiting on router queue for slot.... +19:30:23 ============================================================================ +19:30:23 Slot Id : <176> +19:30:23 Transaction Type : REQUEST +19:30:23 Received From : +19:30:23 ============================================================================ +19:30:23 FNo. Len. Field Value +19:30:23 ============================================================================ +19:30:23 [ 1] [ 4] [0800] +19:30:23 [ 2] [ 5] [02531] +19:30:23 [ 3] [ 6] [579198] +19:30:23 [ 7] [ 10] [0320123023] +19:30:23 [ 11] [ 6] [807544] +19:30:23 [ 15] [ 10] [0320123023] +19:30:23 [ 37] [ 11] [57919807544] +19:30:23 [ 70] [ 3] [001] +19:30:23 ============================================================================ +19:30:23 + + +waiting on router queue for slot.... +19:30:23 ============================================================================ +19:30:23 Slot Id : <176> +19:30:23 Transaction Type : RESPONSE +19:30:23 Received From : +19:30:23 ============================================================================ +19:30:23 FNo. Len. Field Value +19:30:23 ============================================================================ +19:30:23 [ 1] [ 4] [0810] +19:30:23 [ 7] [ 10] [0320123023] +19:30:23 [ 11] [ 6] [807544] +19:30:23 [ 15] [ 4] [0320] +19:30:23 [ 37] [ 12] [57919807544] +19:30:23 [ 39] [ 2] [00] +19:30:23 [ 70] [ 3] [001] +19:30:23 ============================================================================ +19:30:23 Sending to : +19:30:23 ============================================================================ +19:30:23 + + +waiting on router queue for slot.... +19:30:30 ============================================================================ +19:30:30 Slot Id : <144> +19:30:30 Transaction Type : REQUEST +19:30:30 Received From : +19:30:30 ============================================================================ +19:30:30 FNo. Len. Field Value +19:30:30 ============================================================================ +19:30:30 [ 1] [ 4] [0800] +19:30:30 [ 7] [ 10] [0320122937] +19:30:30 [ 11] [ 6] [157964] +19:30:30 [ 70] [ 3] [301] +19:30:30 ============================================================================ +19:30:30 + + +waiting on router queue for slot.... +19:30:30 Sending to : +19:30:30 ============================================================================ +19:30:30 ============================================================================ +19:30:30 Slot Id : <144> +19:30:30 Transaction Type : RESPONSE +19:30:30 Received From : +19:30:30 ============================================================================ +19:30:30 FNo. Len. Field Value +19:30:30 ============================================================================ +19:30:30 [ 1] [ 4] [0810] +19:30:30 [ 7] [ 10] [0320122937] +19:30:30 [ 11] [ 6] [157964] +19:30:30 [ 39] [ 2] [00] +19:30:30 [ 70] [ 3] [301] +19:30:30 ============================================================================ +19:30:30 Calculate Source COMM Id = 2 +19:30:30 ============================================================================ +19:30:30 + + +waiting on router queue for slot.... +19:30:32 ============================================================================ +19:30:32 Slot Id : <187> +19:30:32 Transaction Type : REQUEST +19:30:32 Received From : +19:30:32 ============================================================================ +19:30:32 FNo. Len. Field Value +19:30:32 ============================================================================ +19:30:32 [ 1] [ 4] [0200] +19:30:32 [ 2] [ 16] [6688990104203102] +19:30:32 [ 3] [ 6] [300000] +19:30:32 [ 4] [ 12] [000000000000] +19:30:32 [ 7] [ 10] [0320193027] +19:30:32 [ 11] [ 6] [836926] +19:30:32 [ 12] [ 6] [193027] +19:30:32 [ 13] [ 4] [0320] +19:30:32 [ 15] [ 4] [0320] +19:30:32 [ 18] [ 4] [6011] +19:30:32 [ 22] [ 3] [900] +19:30:32 [ 25] [ 2] [02] +19:30:32 [ 28] [ 9] [D00000000] +19:30:32 [ 32] [ 6] [621354] +19:30:32 [ 35] [ 37] [6688990104203102=43031231310233300000] +19:30:32 [ 37] [ 12] [507904377398] +19:30:32 [ 41] [ 8] [03003600] +19:30:32 [ 42] [ 15] [NATIVE ] +19:30:32 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +19:30:32 [ 49] [ 3] [418] +19:30:32 [ 52] [ 16] [FEAD68DE1B3FF9FF] +19:30:32 ============================================================================ +19:30:32 + + +waiting on router queue for slot.... +19:30:32 Sending to : +19:30:32 ============================================================================ +19:30:32 Sending to : +19:30:32 ============================================================================ +19:30:32 ============================================================================ +19:30:32 Slot Id : <187> +19:30:32 Transaction Type : REQUEST +19:30:32 Received From : +19:30:32 ============================================================================ +19:30:32 FNo. Len. Field Value +19:30:32 ============================================================================ +19:30:32 [ 1] [ 4] [0200] +19:30:32 [ 2] [ 16] [6688990104203102] +19:30:32 [ 3] [ 6] [300000] +19:30:32 [ 4] [ 12] [000000000000] +19:30:32 [ 7] [ 10] [0320193027] +19:30:32 [ 11] [ 6] [836926] +19:30:32 [ 12] [ 6] [193027] +19:30:32 [ 13] [ 4] [0320] +19:30:32 [ 15] [ 4] [0320] +19:30:32 [ 18] [ 4] [6011] +19:30:32 [ 22] [ 3] [900] +19:30:32 [ 25] [ 2] [02] +19:30:32 [ 28] [ 9] [D00000000] +19:30:32 [ 32] [ 6] [621354] +19:30:32 [ 35] [ 37] [6688990104203102=43031231310233300000] +19:30:32 [ 37] [ 12] [507904377398] +19:30:32 [ 41] [ 8] [03003600] +19:30:32 [ 42] [ 15] [NATIVE ] +19:30:32 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +19:30:32 [ 49] [ 3] [418] +19:30:32 [ 52] [ 16] [FEAD68DE1B3FF9FF] +19:30:32 ============================================================================ +19:30:32 + + +waiting on router queue for slot.... +19:30:32 Sending to : +19:30:32 ============================================================================ +19:30:32 ============================================================================ +19:30:32 Slot Id : <187> +19:30:32 Transaction Type : REQUEST +19:30:32 Received From : +19:30:32 ============================================================================ +19:30:32 FNo. Len. Field Value +19:30:32 ============================================================================ +19:30:32 [ 1] [ 4] [0200] +19:30:32 [ 2] [ 16] [6688990104203102] +19:30:32 [ 3] [ 6] [300000] +19:30:32 [ 4] [ 12] [000000000000] +19:30:32 [ 7] [ 10] [0320193027] +19:30:32 [ 11] [ 6] [836926] +19:30:32 [ 12] [ 6] [193027] +19:30:32 [ 13] [ 4] [0320] +19:30:32 [ 15] [ 4] [0320] +19:30:32 [ 18] [ 4] [6011] +19:30:32 [ 22] [ 3] [900] +19:30:32 [ 25] [ 2] [02] +19:30:32 [ 28] [ 9] [D00000000] +19:30:32 [ 32] [ 6] [621354] +19:30:32 [ 35] [ 37] [6688990104203102=43031231310233300000] +19:30:32 [ 37] [ 12] [507904377398] +19:30:32 [ 41] [ 8] [03003600] +19:30:32 [ 42] [ 15] [NATIVE ] +19:30:32 [ 43] [ 40] [EDL SVN KaisonephomvLAO] +19:30:32 [ 49] [ 3] [418] +19:30:32 [ 52] [ 16] [D5C09654BAB7165C] +19:30:32 ============================================================================ +19:30:32 + + +waiting on router queue for slot.... +19:30:32 Sending to : <4> +19:30:32 ============================================================================ +19:30:32 ============================================================================ +19:30:32 Slot Id : <187> +19:30:32 Transaction Type : RESPONSE +19:30:32 Received From : +19:30:32 ============================================================================ +19:30:32 FNo. Len. Field Value +19:30:32 ============================================================================ +19:30:32 [ 1] [ 4] [0210] +19:30:32 [ 2] [ 16] [6688990104203102] +19:30:32 [ 3] [ 6] [300000] +19:30:32 [ 4] [ 12] [000000000000] +19:30:32 [ 7] [ 10] [0320193027] +19:30:32 [ 11] [ 6] [836926] +19:30:32 [ 12] [ 6] [193027] +19:30:32 [ 13] [ 4] [0320] +19:30:32 [ 15] [ 4] [0320] +19:30:32 [ 18] [ 4] [6011] +19:30:32 [ 22] [ 3] [021] +19:30:32 [ 32] [ 6] [621354] +19:30:32 [ 35] [ 37] [6688990104203102=43031231310233300000] +19:30:32 [ 37] [ 12] [507904377398] +19:30:32 [ 39] [ 2] [62] +19:30:32 [ 41] [ 8] [03003600] +19:30:32 [ 49] [ 3] [418] +19:30:32 ============================================================================ +19:30:32 Sending to : +19:30:32 ============================================================================ +19:30:32 + + +waiting on router queue for slot.... +19:30:34 ============================================================================ +19:30:34 Slot Id : <187> +19:30:34 Transaction Type : RESPONSE +19:30:34 Received From : +19:30:34 ============================================================================ +19:30:34 FNo. Len. Field Value +19:30:34 ============================================================================ +19:30:34 [ 1] [ 4] [0210] +19:30:34 [ 2] [ 16] [6688990104203102] +19:30:34 [ 3] [ 6] [300000] +19:30:34 [ 4] [ 12] [000000000000] +19:30:34 [ 7] [ 10] [0320193027] +19:30:34 [ 11] [ 6] [836926] +19:30:34 [ 12] [ 6] [193027] +19:30:34 [ 13] [ 4] [0320] +19:30:34 [ 15] [ 4] [0320] +19:30:34 [ 18] [ 4] [6011] +19:30:34 [ 22] [ 3] [021] +19:30:34 [ 32] [ 6] [621354] +19:30:34 [ 35] [ 37] [6688990104203102=43031231310233300000] +19:30:34 [ 37] [ 12] [507904377398] +19:30:34 [ 39] [ 2] [62] +19:30:34 [ 41] [ 8] [03003600] +19:30:34 [ 49] [ 3] [418] +19:30:34 ============================================================================ +19:30:34 Calculate Source COMM Id = 0 +19:30:34 ============================================================================ +19:30:34 + + +waiting on router queue for slot.... +19:30:41 ============================================================================ +19:30:41 Slot Id : <182> +19:30:41 Transaction Type : REQUEST +19:30:41 Received From : +19:30:41 ============================================================================ +19:30:41 FNo. Len. Field Value +19:30:41 ============================================================================ +19:30:41 [ 1] [ 4] [0800] +19:30:41 [ 7] [ 10] [0320122947] +19:30:41 [ 11] [ 6] [157965] +19:30:41 [ 70] [ 3] [301] +19:30:41 ============================================================================ +19:30:41 + + +waiting on router queue for slot.... +19:30:41 Sending to : +19:30:41 ============================================================================ +19:30:41 ============================================================================ +19:30:41 Slot Id : <182> +19:30:41 Transaction Type : RESPONSE +19:30:41 Received From : +19:30:41 ============================================================================ +19:30:41 FNo. Len. Field Value +19:30:41 ============================================================================ +19:30:41 [ 1] [ 4] [0810] +19:30:41 [ 7] [ 10] [0320122947] +19:30:41 [ 11] [ 6] [157965] +19:30:41 [ 39] [ 2] [00] +19:30:41 [ 70] [ 3] [301] +19:30:41 ============================================================================ +19:30:41 Calculate Source COMM Id = 2 +19:30:41 ============================================================================ +19:30:41 + + +waiting on router queue for slot.... +19:30:56 ============================================================================ +19:30:56 Slot Id : <163> +19:30:56 Transaction Type : REQUEST +19:30:56 Received From : +19:30:56 ============================================================================ +19:30:56 FNo. Len. Field Value +19:30:56 ============================================================================ +19:30:56 [ 1] [ 4] [0200] +19:30:56 [ 2] [ 16] [6213544002082730] +19:30:56 [ 3] [ 6] [011000] +19:30:56 [ 4] [ 12] [000005000000] +19:30:56 [ 7] [ 10] [0320123001] +19:30:56 [ 11] [ 6] [271426] +19:30:56 [ 12] [ 6] [193001] +19:30:56 [ 13] [ 4] [0320] +19:30:56 [ 14] [ 4] [4912] +19:30:56 [ 15] [ 4] [0320] +19:30:56 [ 18] [ 4] [6011] +19:30:56 [ 19] [ 3] [418] +19:30:56 [ 22] [ 3] [021] +19:30:56 [ 25] [ 2] [01] +19:30:56 [ 28] [ 9] [D00002000] +19:30:56 [ 32] [ 6] [180893] +19:30:56 [ 35] [ 32] [6213544002082730=491212018273182] +19:30:56 [ 37] [ 12] [507912271426] +19:30:56 [ 41] [ 8] [0528LPBP] +19:30:56 [ 42] [ 15] [999999 ] +19:30:56 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +19:30:56 [ 49] [ 3] [418] +19:30:56 [ 52] [ 16] [C27B19C848DC4367] +19:30:56 ============================================================================ +19:30:56 + + +waiting on router queue for slot.... +19:30:56 Sending to : +19:30:56 ============================================================================ +19:30:56 Sending to : +19:30:56 ============================================================================ +19:30:56 ============================================================================ +19:30:56 Slot Id : <163> +19:30:56 Transaction Type : REQUEST +19:30:56 Received From : +19:30:56 ============================================================================ +19:30:56 FNo. Len. Field Value +19:30:56 ============================================================================ +19:30:56 [ 1] [ 4] [0200] +19:30:56 [ 2] [ 16] [6213544002082730] +19:30:56 [ 3] [ 6] [011000] +19:30:56 [ 4] [ 12] [000005000000] +19:30:56 [ 7] [ 10] [0320123001] +19:30:56 [ 11] [ 6] [271426] +19:30:56 [ 12] [ 6] [193001] +19:30:56 [ 13] [ 4] [0320] +19:30:56 [ 14] [ 4] [4912] +19:30:56 [ 15] [ 4] [0320] +19:30:56 [ 18] [ 4] [6011] +19:30:56 [ 19] [ 3] [418] +19:30:56 [ 22] [ 3] [021] +19:30:56 [ 25] [ 2] [01] +19:30:56 [ 28] [ 9] [D00002000] +19:30:56 [ 32] [ 6] [180893] +19:30:56 [ 35] [ 32] [6213544002082730=491212018273182] +19:30:56 [ 37] [ 12] [507912271426] +19:30:56 [ 41] [ 8] [0528LPBP] +19:30:56 [ 42] [ 15] [999999 ] +19:30:56 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +19:30:56 [ 49] [ 3] [418] +19:30:56 [ 52] [ 16] [C27B19C848DC4367] +19:30:56 ============================================================================ +19:30:56 + + +waiting on router queue for slot.... +19:30:56 Sending to : +19:30:56 ============================================================================ +19:30:56 ============================================================================ +19:30:56 Slot Id : <163> +19:30:56 Transaction Type : REQUEST +19:30:56 Received From : +19:30:56 ============================================================================ +19:30:56 FNo. Len. Field Value +19:30:56 ============================================================================ +19:30:56 [ 1] [ 4] [0200] +19:30:56 [ 2] [ 16] [6213544002082730] +19:30:56 [ 3] [ 6] [011000] +19:30:56 [ 4] [ 12] [000005000000] +19:30:56 [ 7] [ 10] [0320123001] +19:30:56 [ 11] [ 6] [271426] +19:30:56 [ 12] [ 6] [193001] +19:30:56 [ 13] [ 4] [0320] +19:30:56 [ 14] [ 4] [4912] +19:30:56 [ 15] [ 4] [0320] +19:30:56 [ 18] [ 4] [6011] +19:30:56 [ 19] [ 3] [418] +19:30:56 [ 22] [ 3] [021] +19:30:56 [ 25] [ 2] [01] +19:30:56 [ 28] [ 9] [D00002000] +19:30:56 [ 32] [ 6] [180893] +19:30:56 [ 35] [ 32] [6213544002082730=491212018273182] +19:30:56 [ 37] [ 12] [507912271426] +19:30:56 [ 41] [ 8] [0528LPBP] +19:30:56 [ 42] [ 15] [999999 ] +19:30:56 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +19:30:56 [ 49] [ 3] [418] +19:30:56 [ 52] [ 16] [20F9066FA2B3A5A3] +19:30:56 ============================================================================ +19:30:56 + + +waiting on router queue for slot.... +19:30:56 Sending to : <0> +19:30:56 ============================================================================ +19:30:57 ============================================================================ +19:30:57 Slot Id : <163> +19:30:57 Transaction Type : RESPONSE +19:30:57 Received From : +19:30:57 ============================================================================ +19:30:57 FNo. Len. Field Value +19:30:57 ============================================================================ +19:30:57 [ 1] [ 4] [0210] +19:30:57 [ 2] [ 16] [6213544002082730] +19:30:57 [ 3] [ 6] [011000] +19:30:57 [ 4] [ 12] [000005000000] +19:30:57 [ 7] [ 10] [0320123001] +19:30:57 [ 11] [ 6] [271426] +19:30:57 [ 12] [ 6] [193001] +19:30:57 [ 13] [ 4] [0320] +19:30:57 [ 15] [ 4] [0320] +19:30:57 [ 18] [ 4] [6011] +19:30:57 [ 19] [ 3] [418] +19:30:57 [ 32] [ 6] [180893] +19:30:57 [ 35] [ 32] [6213544002082730=491212018273182] +19:30:57 [ 37] [ 12] [507912271426] +19:30:57 [ 38] [ 6] [271426] +19:30:57 [ 39] [ 2] [51] +19:30:57 [ 41] [ 8] [0528LPBP] +19:30:57 [ 49] [ 3] [418] +19:30:57 [ 54] [ 40] [1001418C0000099255401002418C000009925540] +19:30:57 ============================================================================ +19:30:57 Sending to : +19:30:57 ============================================================================ +19:30:57 + + +waiting on router queue for slot.... +19:30:58 ============================================================================ +19:30:58 Slot Id : <163> +19:30:58 Transaction Type : RESPONSE +19:30:58 Received From : +19:30:58 ============================================================================ +19:30:58 FNo. Len. Field Value +19:30:58 ============================================================================ +19:30:58 [ 1] [ 4] [0210] +19:30:58 [ 2] [ 16] [6213544002082730] +19:30:58 [ 3] [ 6] [011000] +19:30:58 [ 4] [ 12] [000005000000] +19:30:58 [ 7] [ 10] [0320123001] +19:30:58 [ 11] [ 6] [271426] +19:30:58 [ 12] [ 6] [193001] +19:30:58 [ 13] [ 4] [0320] +19:30:58 [ 15] [ 4] [0320] +19:30:58 [ 18] [ 4] [6011] +19:30:58 [ 19] [ 3] [418] +19:30:58 [ 32] [ 6] [180893] +19:30:58 [ 35] [ 32] [6213544002082730=491212018273182] +19:30:58 [ 37] [ 12] [507912271426] +19:30:58 [ 38] [ 6] [271426] +19:30:58 [ 39] [ 2] [51] +19:30:58 [ 41] [ 8] [0528LPBP] +19:30:58 [ 49] [ 3] [418] +19:30:58 [ 54] [ 40] [1001418C0000099255401002418C000009925540] +19:30:58 ============================================================================ +19:30:58 Calculate Source COMM Id = 2 +19:30:58 ============================================================================ +19:30:58 + + +waiting on router queue for slot.... +19:30:58 ============================================================================ +19:30:58 Slot Id : <160> +19:30:58 Transaction Type : REQUEST +19:30:58 Received From : +19:30:58 ============================================================================ +19:30:58 FNo. Len. Field Value +19:30:58 ============================================================================ +19:30:58 [ 1] [ 4] [0800] +19:30:58 [ 7] [ 10] [0320123004] +19:30:58 [ 11] [ 6] [157966] +19:30:58 [ 70] [ 3] [301] +19:30:58 ============================================================================ +19:30:58 + + +waiting on router queue for slot.... +19:30:58 Sending to : +19:30:58 ============================================================================ +19:30:58 ============================================================================ +19:30:58 Slot Id : <160> +19:30:58 Transaction Type : RESPONSE +19:30:58 Received From : +19:30:58 ============================================================================ +19:30:58 FNo. Len. Field Value +19:30:58 ============================================================================ +19:30:58 [ 1] [ 4] [0810] +19:30:58 [ 7] [ 10] [0320123004] +19:30:58 [ 11] [ 6] [157966] +19:30:58 [ 39] [ 2] [00] +19:30:58 [ 70] [ 3] [301] +19:30:58 ============================================================================ +19:30:58 Calculate Source COMM Id = 2 +19:30:58 ============================================================================ +19:30:58 + + +waiting on router queue for slot.... +19:31:06 ============================================================================ +19:31:06 Slot Id : <204> +19:31:06 Transaction Type : REQUEST +19:31:06 Received From : +19:31:06 ============================================================================ +19:31:06 FNo. Len. Field Value +19:31:06 ============================================================================ +19:31:06 [ 1] [ 4] [0800] +19:31:06 [ 7] [ 10] [0321024254] +19:31:06 [ 11] [ 6] [194254] +19:31:06 [ 37] [ 12] [57919194254] +19:31:06 [ 70] [ 3] [301] +19:31:06 ============================================================================ +19:31:06 + + +waiting on router queue for slot.... +19:31:06 Sending to : +19:31:06 ============================================================================ +19:31:06 ============================================================================ +19:31:06 Slot Id : <204> +19:31:06 Transaction Type : RESPONSE +19:31:06 Received From : +19:31:06 ============================================================================ +19:31:06 FNo. Len. Field Value +19:31:06 ============================================================================ +19:31:06 [ 1] [ 4] [0810] +19:31:06 [ 7] [ 10] [0321024254] +19:31:06 [ 11] [ 6] [194254] +19:31:06 [ 37] [ 12] [579191942540] +19:31:06 [ 39] [ 2] [00] +19:31:06 [ 70] [ 3] [810] +19:31:06 ============================================================================ +19:31:06 Calculate Source COMM Id = 6 +19:31:06 ============================================================================ +19:31:06 + + +waiting on router queue for slot.... +19:31:11 ============================================================================ +19:31:11 Slot Id : <203> +19:31:11 Transaction Type : REQUEST +19:31:11 Received From : +19:31:11 ============================================================================ +19:31:11 FNo. Len. Field Value +19:31:11 ============================================================================ +19:31:11 [ 1] [ 4] [0200] +19:31:11 [ 2] [ 16] [6688990104088107] +19:31:11 [ 3] [ 6] [010000] +19:31:11 [ 4] [ 12] [000100000000] +19:31:11 [ 7] [ 10] [0320123017] +19:31:11 [ 11] [ 6] [271428] +19:31:11 [ 12] [ 6] [193017] +19:31:11 [ 13] [ 4] [0320] +19:31:11 [ 14] [ 4] [4302] +19:31:11 [ 15] [ 4] [0320] +19:31:11 [ 18] [ 4] [6011] +19:31:11 [ 19] [ 3] [418] +19:31:11 [ 22] [ 3] [021] +19:31:11 [ 25] [ 2] [01] +19:31:11 [ 28] [ 9] [D00002000] +19:31:11 [ 32] [ 6] [180893] +19:31:11 [ 35] [ 37] [6688990104088107=43021231810712600000] +19:31:11 [ 37] [ 12] [507912271428] +19:31:11 [ 41] [ 8] [0466PSLB] +19:31:11 [ 42] [ 15] [999999 ] +19:31:11 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:31:11 [ 49] [ 3] [418] +19:31:11 [ 52] [ 16] [37AD11AC1E6D3EBB] +19:31:11 ============================================================================ +19:31:11 + + +waiting on router queue for slot.... +19:31:11 Sending to : +19:31:11 ============================================================================ +19:31:11 Sending to : +19:31:11 ============================================================================ +19:31:12 ============================================================================ +19:31:12 Slot Id : <203> +19:31:12 Transaction Type : REQUEST +19:31:12 Received From : +19:31:12 ============================================================================ +19:31:12 FNo. Len. Field Value +19:31:12 ============================================================================ +19:31:12 [ 1] [ 4] [0200] +19:31:12 [ 2] [ 16] [6688990104088107] +19:31:12 [ 3] [ 6] [010000] +19:31:12 [ 4] [ 12] [000100000000] +19:31:12 [ 7] [ 10] [0320123017] +19:31:12 [ 11] [ 6] [271428] +19:31:12 [ 12] [ 6] [193017] +19:31:12 [ 13] [ 4] [0320] +19:31:12 [ 14] [ 4] [4302] +19:31:12 [ 15] [ 4] [0320] +19:31:12 [ 18] [ 4] [6011] +19:31:12 [ 19] [ 3] [418] +19:31:12 [ 22] [ 3] [021] +19:31:12 [ 25] [ 2] [01] +19:31:12 [ 28] [ 9] [D00002000] +19:31:12 [ 32] [ 6] [180893] +19:31:12 [ 35] [ 37] [6688990104088107=43021231810712600000] +19:31:12 [ 37] [ 12] [507912271428] +19:31:12 [ 41] [ 8] [0466PSLB] +19:31:12 [ 42] [ 15] [999999 ] +19:31:12 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:31:12 [ 49] [ 3] [418] +19:31:12 [ 52] [ 16] [37AD11AC1E6D3EBB] +19:31:12 ============================================================================ +19:31:12 + + +waiting on router queue for slot.... +19:31:12 Sending to : +19:31:12 ============================================================================ +19:31:12 ============================================================================ +19:31:12 Slot Id : <203> +19:31:12 Transaction Type : REQUEST +19:31:12 Received From : +19:31:12 ============================================================================ +19:31:12 FNo. Len. Field Value +19:31:12 ============================================================================ +19:31:12 [ 1] [ 4] [0200] +19:31:12 [ 2] [ 16] [6688990104088107] +19:31:12 [ 3] [ 6] [010000] +19:31:12 [ 4] [ 12] [000100000000] +19:31:12 [ 7] [ 10] [0320123017] +19:31:12 [ 11] [ 6] [271428] +19:31:12 [ 12] [ 6] [193017] +19:31:12 [ 13] [ 4] [0320] +19:31:12 [ 14] [ 4] [4302] +19:31:12 [ 15] [ 4] [0320] +19:31:12 [ 18] [ 4] [6011] +19:31:12 [ 19] [ 3] [418] +19:31:12 [ 22] [ 3] [021] +19:31:12 [ 25] [ 2] [01] +19:31:12 [ 28] [ 9] [D00002000] +19:31:12 [ 32] [ 6] [180893] +19:31:12 [ 35] [ 37] [6688990104088107=43021231810712600000] +19:31:12 [ 37] [ 12] [507912271428] +19:31:12 [ 41] [ 8] [0466PSLB] +19:31:12 [ 42] [ 15] [999999 ] +19:31:12 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:31:12 [ 49] [ 3] [418] +19:31:12 [ 52] [ 16] [A935C0A90779B860] +19:31:12 ============================================================================ +19:31:12 + + +waiting on router queue for slot.... +19:31:12 Sending to : <0> +19:31:12 ============================================================================ +19:31:12 ============================================================================ +19:31:12 Slot Id : <203> +19:31:12 Transaction Type : RESPONSE +19:31:12 Received From : +19:31:12 ============================================================================ +19:31:12 FNo. Len. Field Value +19:31:12 ============================================================================ +19:31:12 [ 1] [ 4] [0210] +19:31:12 [ 2] [ 16] [6688990104088107] +19:31:12 [ 3] [ 6] [010000] +19:31:12 [ 4] [ 12] [000100000000] +19:31:12 [ 7] [ 10] [0320123017] +19:31:12 [ 11] [ 6] [271428] +19:31:12 [ 12] [ 6] [193017] +19:31:12 [ 13] [ 4] [0320] +19:31:12 [ 15] [ 4] [0320] +19:31:12 [ 18] [ 4] [6011] +19:31:12 [ 19] [ 3] [418] +19:31:12 [ 22] [ 3] [021] +19:31:12 [ 32] [ 6] [180893] +19:31:12 [ 35] [ 37] [6688990104088107=43021231810712600000] +19:31:12 [ 37] [ 12] [507912271428] +19:31:12 [ 39] [ 2] [14] +19:31:12 [ 41] [ 8] [0466PSLB] +19:31:12 [ 49] [ 3] [418] +19:31:12 ============================================================================ +19:31:12 Sending to : +19:31:12 ============================================================================ +19:31:12 + + +waiting on router queue for slot.... +19:31:13 ============================================================================ +19:31:13 Slot Id : <203> +19:31:13 Transaction Type : RESPONSE +19:31:13 Received From : +19:31:13 ============================================================================ +19:31:13 FNo. Len. Field Value +19:31:13 ============================================================================ +19:31:13 [ 1] [ 4] [0210] +19:31:13 [ 2] [ 16] [6688990104088107] +19:31:13 [ 3] [ 6] [010000] +19:31:13 [ 4] [ 12] [000100000000] +19:31:13 [ 7] [ 10] [0320123017] +19:31:13 [ 11] [ 6] [271428] +19:31:13 [ 12] [ 6] [193017] +19:31:13 [ 13] [ 4] [0320] +19:31:13 [ 15] [ 4] [0320] +19:31:13 [ 18] [ 4] [6011] +19:31:13 [ 19] [ 3] [418] +19:31:13 [ 22] [ 3] [021] +19:31:13 [ 32] [ 6] [180893] +19:31:13 [ 35] [ 37] [6688990104088107=43021231810712600000] +19:31:13 [ 37] [ 12] [507912271428] +19:31:13 [ 39] [ 2] [14] +19:31:13 [ 41] [ 8] [0466PSLB] +19:31:13 [ 49] [ 3] [418] +19:31:13 ============================================================================ +19:31:13 Calculate Source COMM Id = 2 +19:31:13 ============================================================================ +19:31:13 + + +waiting on router queue for slot.... +19:31:23 ============================================================================ +19:31:23 Slot Id : <179> +19:31:23 Transaction Type : REQUEST +19:31:23 Received From : +19:31:23 ============================================================================ +19:31:23 FNo. Len. Field Value +19:31:23 ============================================================================ +19:31:23 [ 1] [ 4] [0800] +19:31:23 [ 7] [ 10] [0320122912] +19:31:23 [ 11] [ 6] [030666] +19:31:23 [ 37] [ 12] [57919030666] +19:31:23 [ 70] [ 3] [301] +19:31:23 ============================================================================ +19:31:23 + + +waiting on router queue for slot.... +19:31:23 Sending to : +19:31:23 ============================================================================ +19:31:23 ============================================================================ +19:31:23 Slot Id : <179> +19:31:23 Transaction Type : RESPONSE +19:31:23 Received From : +19:31:23 ============================================================================ +19:31:23 FNo. Len. Field Value +19:31:23 ============================================================================ +19:31:23 [ 1] [ 4] [0810] +19:31:23 [ 7] [ 10] [0320122912] +19:31:23 [ 11] [ 6] [030666] +19:31:23 [ 37] [ 12] [579190306660] +19:31:23 [ 39] [ 2] [00] +19:31:23 [ 70] [ 3] [810] +19:31:23 ============================================================================ +19:31:23 Calculate Source COMM Id = 4 +19:31:23 ============================================================================ +19:31:23 + + +waiting on router queue for slot.... +19:31:24 ============================================================================ +19:31:24 Slot Id : <191> +19:31:24 Transaction Type : REQUEST +19:31:24 Received From : +19:31:24 ============================================================================ +19:31:24 FNo. Len. Field Value +19:31:24 ============================================================================ +19:31:24 [ 1] [ 4] [0800] +19:31:24 [ 7] [ 10] [0320123031] +19:31:24 [ 11] [ 6] [157967] +19:31:24 [ 70] [ 3] [301] +19:31:24 ============================================================================ +19:31:24 + + +waiting on router queue for slot.... +19:31:24 Sending to : +19:31:24 ============================================================================ +19:31:24 ============================================================================ +19:31:24 Slot Id : <191> +19:31:24 Transaction Type : RESPONSE +19:31:24 Received From : +19:31:24 ============================================================================ +19:31:24 FNo. Len. Field Value +19:31:24 ============================================================================ +19:31:24 [ 1] [ 4] [0810] +19:31:24 [ 7] [ 10] [0320123031] +19:31:24 [ 11] [ 6] [157967] +19:31:24 [ 39] [ 2] [00] +19:31:24 [ 70] [ 3] [301] +19:31:24 ============================================================================ +19:31:24 Calculate Source COMM Id = 2 +19:31:24 ============================================================================ +19:31:24 + + +waiting on router queue for slot.... +19:31:25 ============================================================================ +19:31:25 Slot Id : <192> +19:31:25 Transaction Type : REQUEST +19:31:25 Received From : +19:31:25 ============================================================================ +19:31:25 FNo. Len. Field Value +19:31:25 ============================================================================ +19:31:25 [ 1] [ 4] [0800] +19:31:25 [ 2] [ 5] [02531] +19:31:25 [ 3] [ 6] [579198] +19:31:25 [ 7] [ 10] [0320123125] +19:31:25 [ 11] [ 6] [807545] +19:31:25 [ 15] [ 10] [0320123125] +19:31:25 [ 37] [ 11] [57919807545] +19:31:25 [ 70] [ 3] [001] +19:31:25 ============================================================================ +19:31:25 + + +waiting on router queue for slot.... +19:31:25 ============================================================================ +19:31:25 Slot Id : <192> +19:31:25 Transaction Type : RESPONSE +19:31:25 Received From : +19:31:25 ============================================================================ +19:31:25 FNo. Len. Field Value +19:31:25 ============================================================================ +19:31:25 [ 1] [ 4] [0810] +19:31:25 [ 7] [ 10] [0320123125] +19:31:25 [ 11] [ 6] [807545] +19:31:25 [ 15] [ 4] [0320] +19:31:25 [ 37] [ 12] [57919807545] +19:31:25 [ 39] [ 2] [00] +19:31:25 [ 70] [ 3] [001] +19:31:25 ============================================================================ +19:31:25 Sending to : +19:31:25 ============================================================================ +19:31:25 + + +waiting on router queue for slot.... +19:31:35 ============================================================================ +19:31:35 Slot Id : <135> +19:31:35 Transaction Type : REQUEST +19:31:35 Received From : +19:31:35 ============================================================================ +19:31:35 FNo. Len. Field Value +19:31:35 ============================================================================ +19:31:35 [ 1] [ 4] [0800] +19:31:35 [ 7] [ 10] [0320123041] +19:31:35 [ 11] [ 6] [157968] +19:31:35 [ 70] [ 3] [301] +19:31:35 ============================================================================ +19:31:35 + + +waiting on router queue for slot.... +19:31:35 Sending to : +19:31:35 ============================================================================ +19:31:35 ============================================================================ +19:31:35 Slot Id : <135> +19:31:35 Transaction Type : RESPONSE +19:31:35 Received From : +19:31:35 ============================================================================ +19:31:35 FNo. Len. Field Value +19:31:35 ============================================================================ +19:31:35 [ 1] [ 4] [0810] +19:31:35 [ 7] [ 10] [0320123041] +19:31:35 [ 11] [ 6] [157968] +19:31:35 [ 39] [ 2] [00] +19:31:35 [ 70] [ 3] [301] +19:31:35 ============================================================================ +19:31:35 Calculate Source COMM Id = 2 +19:31:35 ============================================================================ +19:31:35 + + +waiting on router queue for slot.... +19:31:45 ============================================================================ +19:31:45 Slot Id : <156> +19:31:45 Transaction Type : REQUEST +19:31:45 Received From : +19:31:45 ============================================================================ +19:31:45 FNo. Len. Field Value +19:31:45 ============================================================================ +19:31:45 [ 1] [ 4] [0800] +19:31:45 [ 7] [ 10] [0320123052] +19:31:45 [ 11] [ 6] [157969] +19:31:45 [ 70] [ 3] [301] +19:31:45 ============================================================================ +19:31:45 + + +waiting on router queue for slot.... +19:31:45 Sending to : +19:31:45 ============================================================================ +19:31:45 ============================================================================ +19:31:45 Slot Id : <156> +19:31:45 Transaction Type : RESPONSE +19:31:45 Received From : +19:31:45 ============================================================================ +19:31:45 FNo. Len. Field Value +19:31:45 ============================================================================ +19:31:45 [ 1] [ 4] [0810] +19:31:45 [ 7] [ 10] [0320123052] +19:31:45 [ 11] [ 6] [157969] +19:31:45 [ 39] [ 2] [00] +19:31:45 [ 70] [ 3] [301] +19:31:45 ============================================================================ +19:31:45 Calculate Source COMM Id = 2 +19:31:45 ============================================================================ +19:31:45 + + +waiting on router queue for slot.... +19:31:45 ============================================================================ +19:31:45 Slot Id : <190> +19:31:45 Transaction Type : REQUEST +19:31:45 Received From : +19:31:45 ============================================================================ +19:31:45 FNo. Len. Field Value +19:31:45 ============================================================================ +19:31:45 [ 1] [ 4] [0200] +19:31:45 [ 2] [ 16] [6213544001144283] +19:31:45 [ 3] [ 6] [010000] +19:31:45 [ 4] [ 12] [000100000000] +19:31:45 [ 7] [ 10] [0320192935] +19:31:45 [ 11] [ 6] [956266] +19:31:45 [ 12] [ 6] [192935] +19:31:45 [ 13] [ 4] [0320] +19:31:45 [ 15] [ 4] [0320] +19:31:45 [ 18] [ 4] [6011] +19:31:45 [ 19] [ 3] [418] +19:31:45 [ 22] [ 3] [021] +19:31:45 [ 25] [ 2] [01] +19:31:45 [ 28] [ 9] [D00002000] +19:31:45 [ 32] [ 6] [668899] +19:31:45 [ 35] [ 32] [6213544001144283=491212014428276] +19:31:45 [ 37] [ 12] [507900915418] +19:31:45 [ 41] [ 8] [03016002] +19:31:45 [ 42] [ 15] [APT ] +19:31:45 [ 43] [ 40] [ SARAVANH BUS STATION SARA] +19:31:45 [ 49] [ 3] [418] +19:31:45 [ 52] [ 16] [F206F7C3B4AC44CB] +19:31:45 ============================================================================ +19:31:45 + + +waiting on router queue for slot.... +19:31:45 Sending to : +19:31:45 ============================================================================ +19:31:45 Sending to : +19:31:45 ============================================================================ +19:31:46 ============================================================================ +19:31:46 Slot Id : <190> +19:31:46 Transaction Type : REQUEST +19:31:46 Received From : +19:31:46 ============================================================================ +19:31:46 FNo. Len. Field Value +19:31:46 ============================================================================ +19:31:46 [ 1] [ 4] [0200] +19:31:46 [ 2] [ 16] [6213544001144283] +19:31:46 [ 3] [ 6] [010000] +19:31:46 [ 4] [ 12] [000100000000] +19:31:46 [ 7] [ 10] [0320192935] +19:31:46 [ 11] [ 6] [956266] +19:31:46 [ 12] [ 6] [192935] +19:31:46 [ 13] [ 4] [0320] +19:31:46 [ 15] [ 4] [0320] +19:31:46 [ 18] [ 4] [6011] +19:31:46 [ 19] [ 3] [418] +19:31:46 [ 22] [ 3] [021] +19:31:46 [ 25] [ 2] [01] +19:31:46 [ 28] [ 9] [D00002000] +19:31:46 [ 32] [ 6] [668899] +19:31:46 [ 35] [ 32] [6213544001144283=491212014428276] +19:31:46 [ 37] [ 12] [507900915418] +19:31:46 [ 41] [ 8] [03016002] +19:31:46 [ 42] [ 15] [APT ] +19:31:46 [ 43] [ 40] [ SARAVANH BUS STATION SARA] +19:31:46 [ 49] [ 3] [418] +19:31:46 [ 52] [ 16] [F206F7C3B4AC44CB] +19:31:46 ============================================================================ +19:31:46 + + +waiting on router queue for slot.... +19:31:46 Sending to : +19:31:46 ============================================================================ +19:31:46 ============================================================================ +19:31:46 Slot Id : <190> +19:31:46 Transaction Type : REQUEST +19:31:46 Received From : +19:31:46 ============================================================================ +19:31:46 FNo. Len. Field Value +19:31:46 ============================================================================ +19:31:46 [ 1] [ 4] [0200] +19:31:46 [ 2] [ 16] [6213544001144283] +19:31:46 [ 3] [ 6] [010000] +19:31:46 [ 4] [ 12] [000100000000] +19:31:46 [ 7] [ 10] [0320192935] +19:31:46 [ 11] [ 6] [956266] +19:31:46 [ 12] [ 6] [192935] +19:31:46 [ 13] [ 4] [0320] +19:31:46 [ 15] [ 4] [0320] +19:31:46 [ 18] [ 4] [6011] +19:31:46 [ 19] [ 3] [418] +19:31:46 [ 22] [ 3] [021] +19:31:46 [ 25] [ 2] [01] +19:31:46 [ 28] [ 9] [D00002000] +19:31:46 [ 32] [ 6] [668899] +19:31:46 [ 35] [ 32] [6213544001144283=491212014428276] +19:31:46 [ 37] [ 12] [507900915418] +19:31:46 [ 41] [ 8] [03016002] +19:31:46 [ 42] [ 15] [APT ] +19:31:46 [ 43] [ 40] [ SARAVANH BUS STATION SARA] +19:31:46 [ 49] [ 3] [418] +19:31:46 [ 52] [ 16] [47020A573F5FF595] +19:31:46 ============================================================================ +19:31:46 + + +waiting on router queue for slot.... +19:31:46 Sending to : <0> +19:31:46 ============================================================================ +19:31:46 ============================================================================ +19:31:46 Slot Id : <190> +19:31:46 Transaction Type : RESPONSE +19:31:46 Received From : +19:31:46 ============================================================================ +19:31:46 FNo. Len. Field Value +19:31:46 ============================================================================ +19:31:46 [ 1] [ 4] [0210] +19:31:46 [ 2] [ 16] [6213544001144283] +19:31:46 [ 3] [ 6] [010000] +19:31:46 [ 4] [ 12] [000100000000] +19:31:46 [ 7] [ 10] [0320192935] +19:31:46 [ 11] [ 6] [956266] +19:31:46 [ 12] [ 6] [192935] +19:31:46 [ 13] [ 4] [0320] +19:31:46 [ 15] [ 4] [0320] +19:31:46 [ 18] [ 4] [6011] +19:31:46 [ 19] [ 3] [418] +19:31:46 [ 32] [ 6] [668899] +19:31:46 [ 35] [ 32] [6213544001144283=491212014428276] +19:31:46 [ 37] [ 12] [507900915418] +19:31:46 [ 38] [ 6] [010257] +19:31:46 [ 39] [ 2] [00] +19:31:46 [ 41] [ 8] [03016002] +19:31:46 [ 49] [ 3] [418] +19:31:46 [ 54] [ 40] [0001418C0000696243130002418C000069624313] +19:31:46 ============================================================================ +19:31:46 Sending to : +19:31:46 ============================================================================ +19:31:46 + + +waiting on router queue for slot.... +19:31:48 ============================================================================ +19:31:48 Slot Id : <190> +19:31:48 Transaction Type : RESPONSE +19:31:48 Received From : +19:31:48 ============================================================================ +19:31:48 FNo. Len. Field Value +19:31:48 ============================================================================ +19:31:48 [ 1] [ 4] [0210] +19:31:48 [ 2] [ 16] [6213544001144283] +19:31:48 [ 3] [ 6] [010000] +19:31:48 [ 4] [ 12] [000100000000] +19:31:48 [ 7] [ 10] [0320192935] +19:31:48 [ 11] [ 6] [956266] +19:31:48 [ 12] [ 6] [192935] +19:31:48 [ 13] [ 4] [0320] +19:31:48 [ 15] [ 4] [0320] +19:31:48 [ 18] [ 4] [6011] +19:31:48 [ 19] [ 3] [418] +19:31:48 [ 32] [ 6] [668899] +19:31:48 [ 35] [ 32] [6213544001144283=491212014428276] +19:31:48 [ 37] [ 12] [507900915418] +19:31:48 [ 38] [ 6] [010257] +19:31:48 [ 39] [ 2] [00] +19:31:48 [ 41] [ 8] [03016002] +19:31:48 [ 49] [ 3] [418] +19:31:48 [ 54] [ 40] [0001418C0000696243130002418C000069624313] +19:31:48 ============================================================================ +19:31:48 Calculate Source COMM Id = 4 +19:31:48 ============================================================================ +19:31:48 + + +waiting on router queue for slot.... +19:31:56 ============================================================================ +19:31:56 Slot Id : <152> +19:31:56 Transaction Type : REQUEST +19:31:56 Received From : +19:31:56 ============================================================================ +19:31:56 FNo. Len. Field Value +19:31:56 ============================================================================ +19:31:56 [ 1] [ 4] [0800] +19:31:56 [ 7] [ 10] [0320123103] +19:31:56 [ 11] [ 6] [157970] +19:31:56 [ 70] [ 3] [301] +19:31:56 ============================================================================ +19:31:56 + + +waiting on router queue for slot.... +19:31:56 Sending to : +19:31:56 ============================================================================ +19:31:56 ============================================================================ +19:31:56 Slot Id : <152> +19:31:56 Transaction Type : RESPONSE +19:31:56 Received From : +19:31:56 ============================================================================ +19:31:56 FNo. Len. Field Value +19:31:56 ============================================================================ +19:31:56 [ 1] [ 4] [0810] +19:31:56 [ 7] [ 10] [0320123103] +19:31:56 [ 11] [ 6] [157970] +19:31:56 [ 39] [ 2] [00] +19:31:56 [ 70] [ 3] [301] +19:31:56 ============================================================================ +19:31:56 Calculate Source COMM Id = 2 +19:31:56 ============================================================================ +19:31:56 + + +waiting on router queue for slot.... +19:32:00 ============================================================================ +19:32:00 Slot Id : <198> +19:32:00 Transaction Type : REQUEST +19:32:00 Received From : +19:32:00 ============================================================================ +19:32:00 FNo. Len. Field Value +19:32:00 ============================================================================ +19:32:00 [ 1] [ 4] [0200] +19:32:00 [ 2] [ 16] [1808931400009468] +19:32:00 [ 3] [ 6] [010000] +19:32:00 [ 4] [ 12] [000100000000] +19:32:00 [ 7] [ 10] [0320192949] +19:32:00 [ 11] [ 6] [956270] +19:32:00 [ 12] [ 6] [192949] +19:32:00 [ 13] [ 4] [0320] +19:32:00 [ 15] [ 4] [0320] +19:32:00 [ 18] [ 4] [6011] +19:32:00 [ 19] [ 3] [418] +19:32:00 [ 22] [ 3] [021] +19:32:00 [ 25] [ 2] [01] +19:32:00 [ 28] [ 9] [D00002000] +19:32:00 [ 32] [ 6] [668899] +19:32:00 [ 35] [ 27] [1808931400009468=1803500728] +19:32:00 [ 37] [ 12] [507901604360] +19:32:00 [ 41] [ 8] [03202001] +19:32:00 [ 42] [ 15] [APT ] +19:32:00 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:32:00 [ 49] [ 3] [418] +19:32:00 [ 52] [ 16] [FCCBF1E20FE18282] +19:32:00 ============================================================================ +19:32:00 + + +waiting on router queue for slot.... +19:32:00 Sending to : +19:32:00 ============================================================================ +19:32:00 Sending to : +19:32:00 ============================================================================ +19:32:00 ============================================================================ +19:32:00 Slot Id : <198> +19:32:00 Transaction Type : REQUEST +19:32:00 Received From : +19:32:00 ============================================================================ +19:32:00 FNo. Len. Field Value +19:32:00 ============================================================================ +19:32:00 [ 1] [ 4] [0200] +19:32:00 [ 2] [ 16] [1808931400009468] +19:32:00 [ 3] [ 6] [010000] +19:32:00 [ 4] [ 12] [000100000000] +19:32:00 [ 7] [ 10] [0320192949] +19:32:00 [ 11] [ 6] [956270] +19:32:00 [ 12] [ 6] [192949] +19:32:00 [ 13] [ 4] [0320] +19:32:00 [ 15] [ 4] [0320] +19:32:00 [ 18] [ 4] [6011] +19:32:00 [ 19] [ 3] [418] +19:32:00 [ 22] [ 3] [021] +19:32:00 [ 25] [ 2] [01] +19:32:00 [ 28] [ 9] [D00002000] +19:32:00 [ 32] [ 6] [668899] +19:32:00 [ 35] [ 27] [1808931400009468=1803500728] +19:32:00 [ 37] [ 12] [507901604360] +19:32:00 [ 41] [ 8] [03202001] +19:32:00 [ 42] [ 15] [APT ] +19:32:00 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:32:00 [ 49] [ 3] [418] +19:32:00 [ 52] [ 16] [FCCBF1E20FE18282] +19:32:00 ============================================================================ +19:32:00 + + +waiting on router queue for slot.... +19:32:00 Sending to : +19:32:00 ============================================================================ +19:32:00 ============================================================================ +19:32:00 Slot Id : <198> +19:32:00 Transaction Type : REQUEST +19:32:00 Received From : +19:32:00 ============================================================================ +19:32:00 FNo. Len. Field Value +19:32:00 ============================================================================ +19:32:00 [ 1] [ 4] [0200] +19:32:00 [ 2] [ 16] [1808931400009468] +19:32:00 [ 3] [ 6] [010000] +19:32:00 [ 4] [ 12] [000100000000] +19:32:00 [ 7] [ 10] [0320192949] +19:32:00 [ 11] [ 6] [956270] +19:32:00 [ 12] [ 6] [192949] +19:32:00 [ 13] [ 4] [0320] +19:32:00 [ 15] [ 4] [0320] +19:32:00 [ 18] [ 4] [6011] +19:32:00 [ 19] [ 3] [418] +19:32:00 [ 22] [ 3] [021] +19:32:00 [ 25] [ 2] [01] +19:32:00 [ 28] [ 9] [D00002000] +19:32:00 [ 32] [ 6] [668899] +19:32:00 [ 35] [ 27] [1808931400009468=1803500728] +19:32:00 [ 37] [ 12] [507901604360] +19:32:00 [ 41] [ 8] [03202001] +19:32:00 [ 42] [ 15] [APT ] +19:32:00 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:32:00 [ 49] [ 3] [418] +19:32:00 [ 52] [ 16] [972DC7AD132D3989] +19:32:00 ============================================================================ +19:32:00 + + +waiting on router queue for slot.... +19:32:00 Sending to : <2> +19:32:00 ============================================================================ +19:32:04 ============================================================================ +19:32:04 Slot Id : <198> +19:32:04 Transaction Type : RESPONSE +19:32:04 Received From : +19:32:04 ============================================================================ +19:32:04 FNo. Len. Field Value +19:32:04 ============================================================================ +19:32:04 [ 1] [ 4] [0210] +19:32:04 [ 2] [ 16] [1808931400009468] +19:32:04 [ 3] [ 6] [010000] +19:32:04 [ 4] [ 12] [000100000000] +19:32:04 [ 6] [ 12] [000100000000] +19:32:04 [ 7] [ 10] [0320192949] +19:32:04 [ 11] [ 6] [956270] +19:32:04 [ 12] [ 6] [192949] +19:32:04 [ 13] [ 4] [0320] +19:32:04 [ 18] [ 4] [6011] +19:32:04 [ 19] [ 3] [418] +19:32:04 [ 22] [ 3] [021] +19:32:04 [ 32] [ 6] [668899] +19:32:04 [ 35] [ 27] [1808931400009468=1803500728] +19:32:04 [ 37] [ 12] [507901604360] +19:32:04 [ 38] [ 6] [956270] +19:32:04 [ 39] [ 2] [00] +19:32:04 [ 41] [ 8] [03202001] +19:32:04 [ 49] [ 3] [418] +19:32:04 [ 52] [ 16] [972DC7AD132D3989] +19:32:04 [ 54] [ 20] [1001418C000100893300] +19:32:04 ============================================================================ +19:32:04 Sending to : +19:32:04 ============================================================================ +19:32:04 + + +waiting on router queue for slot.... +19:32:06 ============================================================================ +19:32:06 Slot Id : <198> +19:32:06 Transaction Type : RESPONSE +19:32:06 Received From : +19:32:06 ============================================================================ +19:32:06 FNo. Len. Field Value +19:32:06 ============================================================================ +19:32:06 [ 1] [ 4] [0210] +19:32:06 [ 2] [ 16] [1808931400009468] +19:32:06 [ 3] [ 6] [010000] +19:32:06 [ 4] [ 12] [000100000000] +19:32:06 [ 6] [ 12] [000100000000] +19:32:06 [ 7] [ 10] [0320192949] +19:32:06 [ 11] [ 6] [956270] +19:32:06 [ 12] [ 6] [192949] +19:32:06 [ 13] [ 4] [0320] +19:32:06 [ 18] [ 4] [6011] +19:32:06 [ 19] [ 3] [418] +19:32:06 [ 22] [ 3] [021] +19:32:06 [ 32] [ 6] [668899] +19:32:06 [ 35] [ 27] [1808931400009468=1803500728] +19:32:06 [ 37] [ 12] [507901604360] +19:32:06 [ 38] [ 6] [956270] +19:32:06 [ 39] [ 2] [00] +19:32:06 [ 41] [ 8] [03202001] +19:32:06 [ 49] [ 3] [418] +19:32:06 [ 52] [ 16] [972DC7AD132D3989] +19:32:06 [ 54] [ 20] [1001418C000100893300] +19:32:06 ============================================================================ +19:32:06 Calculate Source COMM Id = 4 +19:32:06 ============================================================================ +19:32:06 + + +waiting on router queue for slot.... +19:32:11 ============================================================================ +19:32:11 Slot Id : <196> +19:32:11 Transaction Type : REQUEST +19:32:11 Received From : +19:32:11 ============================================================================ +19:32:11 FNo. Len. Field Value +19:32:11 ============================================================================ +19:32:11 [ 1] [ 4] [0800] +19:32:11 [ 7] [ 10] [0321024359] +19:32:11 [ 11] [ 6] [194359] +19:32:11 [ 37] [ 12] [57919194359] +19:32:11 [ 70] [ 3] [301] +19:32:11 ============================================================================ +19:32:11 + + +waiting on router queue for slot.... +19:32:11 Sending to : +19:32:11 ============================================================================ +19:32:11 ============================================================================ +19:32:11 Slot Id : <196> +19:32:11 Transaction Type : RESPONSE +19:32:11 Received From : +19:32:11 ============================================================================ +19:32:11 FNo. Len. Field Value +19:32:11 ============================================================================ +19:32:11 [ 1] [ 4] [0810] +19:32:11 [ 7] [ 10] [0321024359] +19:32:11 [ 11] [ 6] [194359] +19:32:11 [ 37] [ 12] [579191943590] +19:32:11 [ 39] [ 2] [00] +19:32:11 [ 70] [ 3] [810] +19:32:11 ============================================================================ +19:32:11 Calculate Source COMM Id = 6 +19:32:11 ============================================================================ +19:32:11 + + +waiting on router queue for slot.... +19:32:12 ============================================================================ +19:32:12 Slot Id : <155> +19:32:12 Transaction Type : REQUEST +19:32:12 Received From : +19:32:12 ============================================================================ +19:32:12 FNo. Len. Field Value +19:32:12 ============================================================================ +19:32:12 [ 1] [ 4] [0800] +19:32:12 [ 7] [ 10] [0320123118] +19:32:12 [ 11] [ 6] [157971] +19:32:12 [ 70] [ 3] [301] +19:32:12 ============================================================================ +19:32:12 + + +waiting on router queue for slot.... +19:32:12 Sending to : +19:32:12 ============================================================================ +19:32:12 ============================================================================ +19:32:12 Slot Id : <155> +19:32:12 Transaction Type : RESPONSE +19:32:12 Received From : +19:32:12 ============================================================================ +19:32:12 FNo. Len. Field Value +19:32:12 ============================================================================ +19:32:12 [ 1] [ 4] [0810] +19:32:12 [ 7] [ 10] [0320123118] +19:32:12 [ 11] [ 6] [157971] +19:32:12 [ 39] [ 2] [00] +19:32:12 [ 70] [ 3] [301] +19:32:12 ============================================================================ +19:32:12 Calculate Source COMM Id = 2 +19:32:12 ============================================================================ +19:32:12 + + +waiting on router queue for slot.... +19:32:17 ============================================================================ +19:32:17 Slot Id : <181> +19:32:17 Transaction Type : REQUEST +19:32:17 Received From : +19:32:17 ============================================================================ +19:32:17 FNo. Len. Field Value +19:32:17 ============================================================================ +19:32:17 [ 1] [ 4] [0200] +19:32:17 [ 2] [ 16] [6688990104088107] +19:32:17 [ 3] [ 6] [010000] +19:32:17 [ 4] [ 12] [000100000000] +19:32:17 [ 7] [ 10] [0320123123] +19:32:17 [ 11] [ 6] [271434] +19:32:17 [ 12] [ 6] [193123] +19:32:17 [ 13] [ 4] [0320] +19:32:17 [ 14] [ 4] [4302] +19:32:17 [ 15] [ 4] [0320] +19:32:17 [ 18] [ 4] [6011] +19:32:17 [ 19] [ 3] [418] +19:32:17 [ 22] [ 3] [021] +19:32:17 [ 25] [ 2] [01] +19:32:17 [ 28] [ 9] [D00002000] +19:32:17 [ 32] [ 6] [180893] +19:32:17 [ 35] [ 37] [6688990104088107=43021231810712600000] +19:32:17 [ 37] [ 12] [507912271434] +19:32:17 [ 41] [ 8] [0466PSLB] +19:32:17 [ 42] [ 15] [999999 ] +19:32:17 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:32:17 [ 49] [ 3] [418] +19:32:17 [ 52] [ 16] [37AD11AC1E6D3EBB] +19:32:17 ============================================================================ +19:32:17 + + +waiting on router queue for slot.... +19:32:17 Sending to : +19:32:17 ============================================================================ +19:32:17 Sending to : +19:32:17 ============================================================================ +19:32:17 ============================================================================ +19:32:17 Slot Id : <181> +19:32:17 Transaction Type : REQUEST +19:32:17 Received From : +19:32:17 ============================================================================ +19:32:17 FNo. Len. Field Value +19:32:17 ============================================================================ +19:32:17 [ 1] [ 4] [0200] +19:32:17 [ 2] [ 16] [6688990104088107] +19:32:17 [ 3] [ 6] [010000] +19:32:17 [ 4] [ 12] [000100000000] +19:32:17 [ 7] [ 10] [0320123123] +19:32:17 [ 11] [ 6] [271434] +19:32:17 [ 12] [ 6] [193123] +19:32:17 [ 13] [ 4] [0320] +19:32:17 [ 14] [ 4] [4302] +19:32:17 [ 15] [ 4] [0320] +19:32:17 [ 18] [ 4] [6011] +19:32:17 [ 19] [ 3] [418] +19:32:17 [ 22] [ 3] [021] +19:32:17 [ 25] [ 2] [01] +19:32:17 [ 28] [ 9] [D00002000] +19:32:17 [ 32] [ 6] [180893] +19:32:17 [ 35] [ 37] [6688990104088107=43021231810712600000] +19:32:17 [ 37] [ 12] [507912271434] +19:32:17 [ 41] [ 8] [0466PSLB] +19:32:17 [ 42] [ 15] [999999 ] +19:32:17 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:32:17 [ 49] [ 3] [418] +19:32:17 [ 52] [ 16] [37AD11AC1E6D3EBB] +19:32:17 ============================================================================ +19:32:17 + + +waiting on router queue for slot.... +19:32:17 Sending to : +19:32:17 ============================================================================ +19:32:17 ============================================================================ +19:32:17 Slot Id : <181> +19:32:17 Transaction Type : REQUEST +19:32:17 Received From : +19:32:17 ============================================================================ +19:32:17 FNo. Len. Field Value +19:32:17 ============================================================================ +19:32:17 [ 1] [ 4] [0200] +19:32:17 [ 2] [ 16] [6688990104088107] +19:32:17 [ 3] [ 6] [010000] +19:32:17 [ 4] [ 12] [000100000000] +19:32:17 [ 7] [ 10] [0320123123] +19:32:17 [ 11] [ 6] [271434] +19:32:17 [ 12] [ 6] [193123] +19:32:17 [ 13] [ 4] [0320] +19:32:17 [ 14] [ 4] [4302] +19:32:17 [ 15] [ 4] [0320] +19:32:17 [ 18] [ 4] [6011] +19:32:17 [ 19] [ 3] [418] +19:32:17 [ 22] [ 3] [021] +19:32:17 [ 25] [ 2] [01] +19:32:17 [ 28] [ 9] [D00002000] +19:32:17 [ 32] [ 6] [180893] +19:32:17 [ 35] [ 37] [6688990104088107=43021231810712600000] +19:32:17 [ 37] [ 12] [507912271434] +19:32:17 [ 41] [ 8] [0466PSLB] +19:32:17 [ 42] [ 15] [999999 ] +19:32:17 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:32:17 [ 49] [ 3] [418] +19:32:17 [ 52] [ 16] [A935C0A90779B860] +19:32:17 ============================================================================ +19:32:17 + + +waiting on router queue for slot.... +19:32:17 Sending to : <0> +19:32:17 ============================================================================ +19:32:18 ============================================================================ +19:32:18 Slot Id : <181> +19:32:18 Transaction Type : RESPONSE +19:32:18 Received From : +19:32:18 ============================================================================ +19:32:18 FNo. Len. Field Value +19:32:18 ============================================================================ +19:32:18 [ 1] [ 4] [0210] +19:32:18 [ 2] [ 16] [6688990104088107] +19:32:18 [ 3] [ 6] [010000] +19:32:18 [ 4] [ 12] [000100000000] +19:32:18 [ 7] [ 10] [0320123123] +19:32:18 [ 11] [ 6] [271434] +19:32:18 [ 12] [ 6] [193123] +19:32:18 [ 13] [ 4] [0320] +19:32:18 [ 15] [ 4] [0320] +19:32:18 [ 18] [ 4] [6011] +19:32:18 [ 19] [ 3] [418] +19:32:18 [ 22] [ 3] [021] +19:32:18 [ 32] [ 6] [180893] +19:32:18 [ 35] [ 37] [6688990104088107=43021231810712600000] +19:32:18 [ 37] [ 12] [507912271434] +19:32:18 [ 39] [ 2] [14] +19:32:18 [ 41] [ 8] [0466PSLB] +19:32:18 [ 49] [ 3] [418] +19:32:18 ============================================================================ +19:32:18 Sending to : +19:32:18 ============================================================================ +19:32:18 + + +waiting on router queue for slot.... +19:32:19 ============================================================================ +19:32:19 Slot Id : <181> +19:32:19 Transaction Type : RESPONSE +19:32:19 Received From : +19:32:19 ============================================================================ +19:32:19 FNo. Len. Field Value +19:32:19 ============================================================================ +19:32:19 [ 1] [ 4] [0210] +19:32:19 [ 2] [ 16] [6688990104088107] +19:32:19 [ 3] [ 6] [010000] +19:32:19 [ 4] [ 12] [000100000000] +19:32:19 [ 7] [ 10] [0320123123] +19:32:19 [ 11] [ 6] [271434] +19:32:19 [ 12] [ 6] [193123] +19:32:19 [ 13] [ 4] [0320] +19:32:19 [ 15] [ 4] [0320] +19:32:19 [ 18] [ 4] [6011] +19:32:19 [ 19] [ 3] [418] +19:32:19 [ 22] [ 3] [021] +19:32:19 [ 32] [ 6] [180893] +19:32:19 [ 35] [ 37] [6688990104088107=43021231810712600000] +19:32:19 [ 37] [ 12] [507912271434] +19:32:19 [ 39] [ 2] [14] +19:32:19 [ 41] [ 8] [0466PSLB] +19:32:19 [ 49] [ 3] [418] +19:32:19 ============================================================================ +19:32:19 Calculate Source COMM Id = 2 +19:32:19 ============================================================================ +19:32:19 + + +waiting on router queue for slot.... +19:32:27 ============================================================================ +19:32:27 Slot Id : <214> +19:32:27 Transaction Type : REQUEST +19:32:27 Received From : +19:32:27 ============================================================================ +19:32:27 FNo. Len. Field Value +19:32:27 ============================================================================ +19:32:27 [ 1] [ 4] [0800] +19:32:27 [ 2] [ 5] [02531] +19:32:27 [ 3] [ 6] [579198] +19:32:27 [ 7] [ 10] [0320123227] +19:32:27 [ 11] [ 6] [807546] +19:32:27 [ 15] [ 10] [0320123227] +19:32:27 [ 37] [ 11] [57919807546] +19:32:27 [ 70] [ 3] [001] +19:32:27 ============================================================================ +19:32:27 + + +waiting on router queue for slot.... +19:32:27 ============================================================================ +19:32:27 Slot Id : <214> +19:32:27 Transaction Type : RESPONSE +19:32:27 Received From : +19:32:27 ============================================================================ +19:32:27 FNo. Len. Field Value +19:32:27 ============================================================================ +19:32:27 [ 1] [ 4] [0810] +19:32:27 [ 7] [ 10] [0320123227] +19:32:27 [ 11] [ 6] [807546] +19:32:27 [ 15] [ 4] [0320] +19:32:27 [ 37] [ 12] [57919807546] +19:32:27 [ 39] [ 2] [00] +19:32:27 [ 70] [ 3] [001] +19:32:27 ============================================================================ +19:32:27 Sending to : +19:32:27 ============================================================================ +19:32:27 + + +waiting on router queue for slot.... +19:32:33 ============================================================================ +19:32:33 Slot Id : <165> +19:32:33 Transaction Type : REQUEST +19:32:33 Received From : +19:32:33 ============================================================================ +19:32:33 FNo. Len. Field Value +19:32:33 ============================================================================ +19:32:33 [ 1] [ 4] [0800] +19:32:33 [ 7] [ 10] [0320123140] +19:32:33 [ 11] [ 6] [157972] +19:32:33 [ 70] [ 3] [301] +19:32:33 ============================================================================ +19:32:33 + + +waiting on router queue for slot.... +19:32:33 Sending to : +19:32:33 ============================================================================ +19:32:33 ============================================================================ +19:32:33 Slot Id : <165> +19:32:33 Transaction Type : RESPONSE +19:32:33 Received From : +19:32:33 ============================================================================ +19:32:33 FNo. Len. Field Value +19:32:33 ============================================================================ +19:32:33 [ 1] [ 4] [0810] +19:32:33 [ 7] [ 10] [0320123140] +19:32:33 [ 11] [ 6] [157972] +19:32:33 [ 39] [ 2] [00] +19:32:33 [ 70] [ 3] [301] +19:32:33 ============================================================================ +19:32:33 Calculate Source COMM Id = 2 +19:32:33 ============================================================================ +19:32:33 + + +waiting on router queue for slot.... +19:32:44 ============================================================================ +19:32:44 Slot Id : <201> +19:32:44 Transaction Type : REQUEST +19:32:44 Received From : +19:32:44 ============================================================================ +19:32:44 FNo. Len. Field Value +19:32:44 ============================================================================ +19:32:44 [ 1] [ 4] [0800] +19:32:44 [ 7] [ 10] [0320123151] +19:32:44 [ 11] [ 6] [157973] +19:32:44 [ 70] [ 3] [301] +19:32:44 ============================================================================ +19:32:44 + + +waiting on router queue for slot.... +19:32:44 Sending to : +19:32:44 ============================================================================ +19:32:44 ============================================================================ +19:32:44 Slot Id : <201> +19:32:44 Transaction Type : RESPONSE +19:32:44 Received From : +19:32:44 ============================================================================ +19:32:44 FNo. Len. Field Value +19:32:44 ============================================================================ +19:32:44 [ 1] [ 4] [0810] +19:32:44 [ 7] [ 10] [0320123151] +19:32:44 [ 11] [ 6] [157973] +19:32:44 [ 39] [ 2] [00] +19:32:44 [ 70] [ 3] [301] +19:32:44 ============================================================================ +19:32:44 Calculate Source COMM Id = 2 +19:32:44 ============================================================================ +19:32:44 + + +waiting on router queue for slot.... +19:32:55 ============================================================================ +19:32:55 Slot Id : <195> +19:32:55 Transaction Type : REQUEST +19:32:55 Received From : +19:32:55 ============================================================================ +19:32:55 FNo. Len. Field Value +19:32:55 ============================================================================ +19:32:55 [ 1] [ 4] [0800] +19:32:55 [ 7] [ 10] [0320123202] +19:32:55 [ 11] [ 6] [157974] +19:32:55 [ 70] [ 3] [301] +19:32:55 ============================================================================ +19:32:55 + + +waiting on router queue for slot.... +19:32:55 Sending to : +19:32:55 ============================================================================ +19:32:55 ============================================================================ +19:32:55 Slot Id : <195> +19:32:55 Transaction Type : RESPONSE +19:32:55 Received From : +19:32:55 ============================================================================ +19:32:55 FNo. Len. Field Value +19:32:55 ============================================================================ +19:32:55 [ 1] [ 4] [0810] +19:32:55 [ 7] [ 10] [0320123202] +19:32:55 [ 11] [ 6] [157974] +19:32:55 [ 39] [ 2] [00] +19:32:55 [ 70] [ 3] [301] +19:32:55 ============================================================================ +19:32:55 Calculate Source COMM Id = 2 +19:32:55 ============================================================================ +19:32:55 + + +waiting on router queue for slot.... +19:32:55 ============================================================================ +19:32:55 Slot Id : <194> +19:32:55 Transaction Type : REQUEST +19:32:55 Received From : +19:32:55 ============================================================================ +19:32:55 FNo. Len. Field Value +19:32:55 ============================================================================ +19:32:55 [ 1] [ 4] [0200] +19:32:55 [ 2] [ 16] [6688990040044164] +19:32:55 [ 3] [ 6] [012000] +19:32:55 [ 4] [ 12] [000050000000] +19:32:55 [ 7] [ 10] [0320193250] +19:32:55 [ 11] [ 6] [837209] +19:32:55 [ 12] [ 6] [193250] +19:32:55 [ 13] [ 4] [0320] +19:32:55 [ 15] [ 4] [0320] +19:32:55 [ 18] [ 4] [6011] +19:32:55 [ 22] [ 3] [900] +19:32:55 [ 25] [ 2] [02] +19:32:55 [ 28] [ 9] [D00002000] +19:32:55 [ 32] [ 6] [621354] +19:32:55 [ 35] [ 37] [6688990040044164=97121261323141200000] +19:32:55 [ 37] [ 12] [507903790224] +19:32:55 [ 41] [ 8] [01009500] +19:32:55 [ 42] [ 15] [NATIVE ] +19:32:55 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +19:32:55 [ 49] [ 3] [418] +19:32:55 [ 52] [ 16] [5244EBEC8FC0724E] +19:32:55 ============================================================================ +19:32:55 + + +waiting on router queue for slot.... +19:32:55 Sending to : +19:32:55 ============================================================================ +19:32:55 Sending to : +19:32:55 ============================================================================ +19:32:56 ============================================================================ +19:32:56 Slot Id : <194> +19:32:56 Transaction Type : REQUEST +19:32:56 Received From : +19:32:56 ============================================================================ +19:32:56 FNo. Len. Field Value +19:32:56 ============================================================================ +19:32:56 [ 1] [ 4] [0200] +19:32:56 [ 2] [ 16] [6688990040044164] +19:32:56 [ 3] [ 6] [012000] +19:32:56 [ 4] [ 12] [000050000000] +19:32:56 [ 7] [ 10] [0320193250] +19:32:56 [ 11] [ 6] [837209] +19:32:56 [ 12] [ 6] [193250] +19:32:56 [ 13] [ 4] [0320] +19:32:56 [ 15] [ 4] [0320] +19:32:56 [ 18] [ 4] [6011] +19:32:56 [ 22] [ 3] [900] +19:32:56 [ 25] [ 2] [02] +19:32:56 [ 28] [ 9] [D00002000] +19:32:56 [ 32] [ 6] [621354] +19:32:56 [ 35] [ 37] [6688990040044164=97121261323141200000] +19:32:56 [ 37] [ 12] [507903790224] +19:32:56 [ 41] [ 8] [01009500] +19:32:56 [ 42] [ 15] [NATIVE ] +19:32:56 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +19:32:56 [ 49] [ 3] [418] +19:32:56 [ 52] [ 16] [5244EBEC8FC0724E] +19:32:56 ============================================================================ +19:32:56 + + +waiting on router queue for slot.... +19:32:56 Sending to : +19:32:56 ============================================================================ +19:32:56 ============================================================================ +19:32:56 Slot Id : <194> +19:32:56 Transaction Type : REQUEST +19:32:56 Received From : +19:32:56 ============================================================================ +19:32:56 FNo. Len. Field Value +19:32:56 ============================================================================ +19:32:56 [ 1] [ 4] [0200] +19:32:56 [ 2] [ 16] [6688990040044164] +19:32:56 [ 3] [ 6] [012000] +19:32:56 [ 4] [ 12] [000050000000] +19:32:56 [ 7] [ 10] [0320193250] +19:32:56 [ 11] [ 6] [837209] +19:32:56 [ 12] [ 6] [193250] +19:32:56 [ 13] [ 4] [0320] +19:32:56 [ 15] [ 4] [0320] +19:32:56 [ 18] [ 4] [6011] +19:32:56 [ 22] [ 3] [900] +19:32:56 [ 25] [ 2] [02] +19:32:56 [ 28] [ 9] [D00002000] +19:32:56 [ 32] [ 6] [621354] +19:32:56 [ 35] [ 37] [6688990040044164=97121261323141200000] +19:32:56 [ 37] [ 12] [507903790224] +19:32:56 [ 41] [ 8] [01009500] +19:32:56 [ 42] [ 15] [NATIVE ] +19:32:56 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +19:32:56 [ 49] [ 3] [418] +19:32:56 [ 52] [ 16] [F0827F771EA4D544] +19:32:56 ============================================================================ +19:32:56 + + +waiting on router queue for slot.... +19:32:56 Sending to : <4> +19:32:56 ============================================================================ +19:32:58 ============================================================================ +19:32:58 Slot Id : <194> +19:32:58 Transaction Type : RESPONSE +19:32:58 Received From : +19:32:58 ============================================================================ +19:32:58 FNo. Len. Field Value +19:32:58 ============================================================================ +19:32:58 [ 1] [ 4] [0210] +19:32:58 [ 2] [ 16] [6688990040044164] +19:32:58 [ 3] [ 6] [012000] +19:32:58 [ 4] [ 12] [000050000000] +19:32:58 [ 11] [ 6] [837209] +19:32:58 [ 12] [ 6] [193250] +19:32:58 [ 15] [ 4] [0320] +19:32:58 [ 18] [ 4] [6011] +19:32:58 [ 32] [ 6] [621354] +19:32:58 [ 35] [ 37] [6688990040044164=97121261323141200000] +19:32:58 [ 37] [ 12] [507903790224] +19:32:58 [ 38] [ 6] [498622] +19:32:58 [ 39] [ 2] [00] +19:32:58 [ 41] [ 8] [01009500] +19:32:58 [ 49] [ 3] [418] +19:32:58 [ 54] [ 20] [2002418C000854830042] +19:32:58 ============================================================================ +19:32:58 Sending to : +19:32:58 ============================================================================ +19:32:58 + + +waiting on router queue for slot.... +19:33:00 ============================================================================ +19:33:00 Slot Id : <194> +19:33:00 Transaction Type : RESPONSE +19:33:00 Received From : +19:33:00 ============================================================================ +19:33:00 FNo. Len. Field Value +19:33:00 ============================================================================ +19:33:00 [ 1] [ 4] [0210] +19:33:00 [ 2] [ 16] [6688990040044164] +19:33:00 [ 3] [ 6] [012000] +19:33:00 [ 4] [ 12] [000050000000] +19:33:00 [ 11] [ 6] [837209] +19:33:00 [ 12] [ 6] [193250] +19:33:00 [ 15] [ 4] [0320] +19:33:00 [ 18] [ 4] [6011] +19:33:00 [ 32] [ 6] [621354] +19:33:00 [ 35] [ 37] [6688990040044164=97121261323141200000] +19:33:00 [ 37] [ 12] [507903790224] +19:33:00 [ 38] [ 6] [498622] +19:33:00 [ 39] [ 2] [00] +19:33:00 [ 41] [ 8] [01009500] +19:33:00 [ 49] [ 3] [418] +19:33:00 [ 54] [ 20] [2002418C000854830042] +19:33:00 ============================================================================ +19:33:00 Calculate Source COMM Id = 0 +19:33:00 ============================================================================ +19:33:00 + + +waiting on router queue for slot.... +19:33:05 ============================================================================ +19:33:05 Slot Id : <209> +19:33:05 Transaction Type : REQUEST +19:33:05 Received From : +19:33:05 ============================================================================ +19:33:05 FNo. Len. Field Value +19:33:05 ============================================================================ +19:33:05 [ 1] [ 4] [0200] +19:33:05 [ 2] [ 16] [6213544001144283] +19:33:05 [ 3] [ 6] [010000] +19:33:05 [ 4] [ 12] [000050000000] +19:33:05 [ 7] [ 10] [0320193055] +19:33:05 [ 11] [ 6] [956300] +19:33:05 [ 12] [ 6] [193055] +19:33:05 [ 13] [ 4] [0320] +19:33:05 [ 15] [ 4] [0320] +19:33:05 [ 18] [ 4] [6011] +19:33:05 [ 19] [ 3] [418] +19:33:05 [ 22] [ 3] [021] +19:33:05 [ 25] [ 2] [01] +19:33:05 [ 28] [ 9] [D00002000] +19:33:05 [ 32] [ 6] [668899] +19:33:05 [ 35] [ 32] [6213544001144283=491212014428276] +19:33:05 [ 37] [ 12] [507900915420] +19:33:05 [ 41] [ 8] [03016002] +19:33:05 [ 42] [ 15] [APT ] +19:33:05 [ 43] [ 40] [ SARAVANH BUS STATION SARA] +19:33:05 [ 49] [ 3] [418] +19:33:05 [ 52] [ 16] [F206F7C3B4AC44CB] +19:33:05 ============================================================================ +19:33:05 + + +waiting on router queue for slot.... +19:33:05 Sending to : +19:33:05 ============================================================================ +19:33:05 Sending to : +19:33:05 ============================================================================ +19:33:06 ============================================================================ +19:33:06 Slot Id : <209> +19:33:06 Transaction Type : REQUEST +19:33:06 Received From : +19:33:06 ============================================================================ +19:33:06 FNo. Len. Field Value +19:33:06 ============================================================================ +19:33:06 [ 1] [ 4] [0200] +19:33:06 [ 2] [ 16] [6213544001144283] +19:33:06 [ 3] [ 6] [010000] +19:33:06 [ 4] [ 12] [000050000000] +19:33:06 [ 7] [ 10] [0320193055] +19:33:06 [ 11] [ 6] [956300] +19:33:06 [ 12] [ 6] [193055] +19:33:06 [ 13] [ 4] [0320] +19:33:06 [ 15] [ 4] [0320] +19:33:06 [ 18] [ 4] [6011] +19:33:06 [ 19] [ 3] [418] +19:33:06 [ 22] [ 3] [021] +19:33:06 [ 25] [ 2] [01] +19:33:06 [ 28] [ 9] [D00002000] +19:33:06 [ 32] [ 6] [668899] +19:33:06 [ 35] [ 32] [6213544001144283=491212014428276] +19:33:06 [ 37] [ 12] [507900915420] +19:33:06 [ 41] [ 8] [03016002] +19:33:06 [ 42] [ 15] [APT ] +19:33:06 [ 43] [ 40] [ SARAVANH BUS STATION SARA] +19:33:06 [ 49] [ 3] [418] +19:33:06 [ 52] [ 16] [F206F7C3B4AC44CB] +19:33:06 ============================================================================ +19:33:06 + + +waiting on router queue for slot.... +19:33:06 Sending to : +19:33:06 ============================================================================ +19:33:06 ============================================================================ +19:33:06 Slot Id : <209> +19:33:06 Transaction Type : REQUEST +19:33:06 Received From : +19:33:06 ============================================================================ +19:33:06 FNo. Len. Field Value +19:33:06 ============================================================================ +19:33:06 [ 1] [ 4] [0200] +19:33:06 [ 2] [ 16] [6213544001144283] +19:33:06 [ 3] [ 6] [010000] +19:33:06 [ 4] [ 12] [000050000000] +19:33:06 [ 7] [ 10] [0320193055] +19:33:06 [ 11] [ 6] [956300] +19:33:06 [ 12] [ 6] [193055] +19:33:06 [ 13] [ 4] [0320] +19:33:06 [ 15] [ 4] [0320] +19:33:06 [ 18] [ 4] [6011] +19:33:06 [ 19] [ 3] [418] +19:33:06 [ 22] [ 3] [021] +19:33:06 [ 25] [ 2] [01] +19:33:06 [ 28] [ 9] [D00002000] +19:33:06 [ 32] [ 6] [668899] +19:33:06 [ 35] [ 32] [6213544001144283=491212014428276] +19:33:06 [ 37] [ 12] [507900915420] +19:33:06 [ 41] [ 8] [03016002] +19:33:06 [ 42] [ 15] [APT ] +19:33:06 [ 43] [ 40] [ SARAVANH BUS STATION SARA] +19:33:06 [ 49] [ 3] [418] +19:33:06 [ 52] [ 16] [47020A573F5FF595] +19:33:06 ============================================================================ +19:33:06 + + +waiting on router queue for slot.... +19:33:06 Sending to : <0> +19:33:06 ============================================================================ +19:33:06 ============================================================================ +19:33:06 Slot Id : <178> +19:33:06 Transaction Type : REQUEST +19:33:06 Received From : +19:33:06 ============================================================================ +19:33:06 FNo. Len. Field Value +19:33:06 ============================================================================ +19:33:06 [ 1] [ 4] [0800] +19:33:06 [ 7] [ 10] [0320123213] +19:33:06 [ 11] [ 6] [157975] +19:33:06 [ 70] [ 3] [301] +19:33:06 ============================================================================ +19:33:06 + + +waiting on router queue for slot.... +19:33:06 Sending to : +19:33:06 ============================================================================ +19:33:06 ============================================================================ +19:33:06 Slot Id : <178> +19:33:06 Transaction Type : RESPONSE +19:33:06 Received From : +19:33:06 ============================================================================ +19:33:06 FNo. Len. Field Value +19:33:06 ============================================================================ +19:33:06 [ 1] [ 4] [0810] +19:33:06 [ 7] [ 10] [0320123213] +19:33:06 [ 11] [ 6] [157975] +19:33:06 [ 39] [ 2] [00] +19:33:06 [ 70] [ 3] [301] +19:33:06 ============================================================================ +19:33:06 Calculate Source COMM Id = 2 +19:33:06 ============================================================================ +19:33:06 + + +waiting on router queue for slot.... +19:33:06 ============================================================================ +19:33:06 Slot Id : <209> +19:33:06 Transaction Type : RESPONSE +19:33:06 Received From : +19:33:06 ============================================================================ +19:33:06 FNo. Len. Field Value +19:33:06 ============================================================================ +19:33:06 [ 1] [ 4] [0210] +19:33:06 [ 2] [ 16] [6213544001144283] +19:33:06 [ 3] [ 6] [010000] +19:33:06 [ 4] [ 12] [000050000000] +19:33:06 [ 7] [ 10] [0320193055] +19:33:06 [ 11] [ 6] [956300] +19:33:06 [ 12] [ 6] [193055] +19:33:06 [ 13] [ 4] [0320] +19:33:06 [ 15] [ 4] [0320] +19:33:06 [ 18] [ 4] [6011] +19:33:06 [ 19] [ 3] [418] +19:33:06 [ 32] [ 6] [668899] +19:33:06 [ 35] [ 32] [6213544001144283=491212014428276] +19:33:06 [ 37] [ 12] [507900915420] +19:33:06 [ 38] [ 6] [936091] +19:33:06 [ 39] [ 2] [00] +19:33:06 [ 41] [ 8] [03016002] +19:33:06 [ 49] [ 3] [418] +19:33:06 [ 54] [ 40] [0001418C0000194243130002418C000019424313] +19:33:06 ============================================================================ +19:33:06 Sending to : +19:33:06 ============================================================================ +19:33:06 + + +waiting on router queue for slot.... +19:33:08 ============================================================================ +19:33:08 Slot Id : <209> +19:33:08 Transaction Type : RESPONSE +19:33:08 Received From : +19:33:08 ============================================================================ +19:33:08 FNo. Len. Field Value +19:33:08 ============================================================================ +19:33:08 [ 1] [ 4] [0210] +19:33:08 [ 2] [ 16] [6213544001144283] +19:33:08 [ 3] [ 6] [010000] +19:33:08 [ 4] [ 12] [000050000000] +19:33:08 [ 7] [ 10] [0320193055] +19:33:08 [ 11] [ 6] [956300] +19:33:08 [ 12] [ 6] [193055] +19:33:08 [ 13] [ 4] [0320] +19:33:08 [ 15] [ 4] [0320] +19:33:08 [ 18] [ 4] [6011] +19:33:08 [ 19] [ 3] [418] +19:33:08 [ 32] [ 6] [668899] +19:33:08 [ 35] [ 32] [6213544001144283=491212014428276] +19:33:08 [ 37] [ 12] [507900915420] +19:33:08 [ 38] [ 6] [936091] +19:33:08 [ 39] [ 2] [00] +19:33:08 [ 41] [ 8] [03016002] +19:33:08 [ 49] [ 3] [418] +19:33:08 [ 54] [ 40] [0001418C0000194243130002418C000019424313] +19:33:08 ============================================================================ +19:33:08 Calculate Source COMM Id = 4 +19:33:08 ============================================================================ +19:33:08 + + +waiting on router queue for slot.... +19:33:08 ============================================================================ +19:33:08 Slot Id : <193> +19:33:08 Transaction Type : REQUEST +19:33:08 Received From : +19:33:08 ============================================================================ +19:33:08 FNo. Len. Field Value +19:33:08 ============================================================================ +19:33:08 [ 1] [ 4] [0200] +19:33:08 [ 2] [ 16] [6213544002082730] +19:33:08 [ 3] [ 6] [300000] +19:33:08 [ 4] [ 12] [000000000000] +19:33:08 [ 7] [ 10] [0320193058] +19:33:08 [ 11] [ 6] [956303] +19:33:08 [ 12] [ 6] [193058] +19:33:08 [ 13] [ 4] [0320] +19:33:08 [ 15] [ 4] [0320] +19:33:08 [ 18] [ 4] [6011] +19:33:08 [ 19] [ 3] [418] +19:33:08 [ 22] [ 3] [021] +19:33:08 [ 25] [ 2] [01] +19:33:08 [ 28] [ 9] [D00000000] +19:33:08 [ 32] [ 6] [668899] +19:33:08 [ 35] [ 32] [6213544002082730=491212018273182] +19:33:08 [ 37] [ 12] [507901262068] +19:33:08 [ 41] [ 8] [03206001] +19:33:08 [ 42] [ 15] [APT ] +19:33:08 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:33:08 [ 49] [ 3] [418] +19:33:08 [ 52] [ 16] [78CF0425D3BE2A48] +19:33:08 ============================================================================ +19:33:08 + + +waiting on router queue for slot.... +19:33:08 Sending to : +19:33:08 ============================================================================ +19:33:08 Sending to : +19:33:08 ============================================================================ +19:33:09 ============================================================================ +19:33:09 Slot Id : <193> +19:33:09 Transaction Type : REQUEST +19:33:09 Received From : +19:33:09 ============================================================================ +19:33:09 FNo. Len. Field Value +19:33:09 ============================================================================ +19:33:09 [ 1] [ 4] [0200] +19:33:09 [ 2] [ 16] [6213544002082730] +19:33:09 [ 3] [ 6] [300000] +19:33:09 [ 4] [ 12] [000000000000] +19:33:09 [ 7] [ 10] [0320193058] +19:33:09 [ 11] [ 6] [956303] +19:33:09 [ 12] [ 6] [193058] +19:33:09 [ 13] [ 4] [0320] +19:33:09 [ 15] [ 4] [0320] +19:33:09 [ 18] [ 4] [6011] +19:33:09 [ 19] [ 3] [418] +19:33:09 [ 22] [ 3] [021] +19:33:09 [ 25] [ 2] [01] +19:33:09 [ 28] [ 9] [D00000000] +19:33:09 [ 32] [ 6] [668899] +19:33:09 [ 35] [ 32] [6213544002082730=491212018273182] +19:33:09 [ 37] [ 12] [507901262068] +19:33:09 [ 41] [ 8] [03206001] +19:33:09 [ 42] [ 15] [APT ] +19:33:09 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:33:09 [ 49] [ 3] [418] +19:33:09 [ 52] [ 16] [78CF0425D3BE2A48] +19:33:09 ============================================================================ +19:33:09 + + +waiting on router queue for slot.... +19:33:09 Sending to : +19:33:09 ============================================================================ +19:33:09 ============================================================================ +19:33:09 Slot Id : <193> +19:33:09 Transaction Type : REQUEST +19:33:09 Received From : +19:33:09 ============================================================================ +19:33:09 FNo. Len. Field Value +19:33:09 ============================================================================ +19:33:09 [ 1] [ 4] [0200] +19:33:09 [ 2] [ 16] [6213544002082730] +19:33:09 [ 3] [ 6] [300000] +19:33:09 [ 4] [ 12] [000000000000] +19:33:09 [ 7] [ 10] [0320193058] +19:33:09 [ 11] [ 6] [956303] +19:33:09 [ 12] [ 6] [193058] +19:33:09 [ 13] [ 4] [0320] +19:33:09 [ 15] [ 4] [0320] +19:33:09 [ 18] [ 4] [6011] +19:33:09 [ 19] [ 3] [418] +19:33:09 [ 22] [ 3] [021] +19:33:09 [ 25] [ 2] [01] +19:33:09 [ 28] [ 9] [D00000000] +19:33:09 [ 32] [ 6] [668899] +19:33:09 [ 35] [ 32] [6213544002082730=491212018273182] +19:33:09 [ 37] [ 12] [507901262068] +19:33:09 [ 41] [ 8] [03206001] +19:33:09 [ 42] [ 15] [APT ] +19:33:09 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:33:09 [ 49] [ 3] [418] +19:33:09 [ 52] [ 16] [20F9066FA2B3A5A3] +19:33:09 ============================================================================ +19:33:09 + + +waiting on router queue for slot.... +19:33:09 Sending to : <0> +19:33:09 ============================================================================ +19:33:09 ============================================================================ +19:33:09 Slot Id : <193> +19:33:09 Transaction Type : RESPONSE +19:33:09 Received From : +19:33:09 ============================================================================ +19:33:09 FNo. Len. Field Value +19:33:09 ============================================================================ +19:33:09 [ 1] [ 4] [0210] +19:33:09 [ 2] [ 16] [6213544002082730] +19:33:09 [ 3] [ 6] [300000] +19:33:09 [ 4] [ 12] [000000000000] +19:33:09 [ 7] [ 10] [0320193058] +19:33:09 [ 11] [ 6] [956303] +19:33:09 [ 12] [ 6] [193058] +19:33:09 [ 13] [ 4] [0320] +19:33:09 [ 15] [ 4] [0320] +19:33:09 [ 18] [ 4] [6011] +19:33:09 [ 19] [ 3] [418] +19:33:09 [ 32] [ 6] [668899] +19:33:09 [ 35] [ 32] [6213544002082730=491212018273182] +19:33:09 [ 37] [ 12] [507901262068] +19:33:09 [ 38] [ 6] [825492] +19:33:09 [ 39] [ 2] [00] +19:33:09 [ 41] [ 8] [03206001] +19:33:09 [ 49] [ 3] [418] +19:33:09 [ 54] [ 40] [0001418C0000099255400002418C000009925540] +19:33:09 ============================================================================ +19:33:09 Sending to : +19:33:09 ============================================================================ +19:33:09 + + +waiting on router queue for slot.... +19:33:10 ============================================================================ +19:33:10 Slot Id : <193> +19:33:10 Transaction Type : RESPONSE +19:33:10 Received From : +19:33:10 ============================================================================ +19:33:10 FNo. Len. Field Value +19:33:10 ============================================================================ +19:33:10 [ 1] [ 4] [0210] +19:33:10 [ 2] [ 16] [6213544002082730] +19:33:10 [ 3] [ 6] [300000] +19:33:10 [ 4] [ 12] [000000000000] +19:33:10 [ 7] [ 10] [0320193058] +19:33:10 [ 11] [ 6] [956303] +19:33:10 [ 12] [ 6] [193058] +19:33:10 [ 13] [ 4] [0320] +19:33:10 [ 15] [ 4] [0320] +19:33:10 [ 18] [ 4] [6011] +19:33:10 [ 19] [ 3] [418] +19:33:10 [ 32] [ 6] [668899] +19:33:10 [ 35] [ 32] [6213544002082730=491212018273182] +19:33:10 [ 37] [ 12] [507901262068] +19:33:10 [ 38] [ 6] [825492] +19:33:10 [ 39] [ 2] [00] +19:33:10 [ 41] [ 8] [03206001] +19:33:10 [ 49] [ 3] [418] +19:33:10 [ 54] [ 40] [0001418C0000099255400002418C000009925540] +19:33:10 ============================================================================ +19:33:10 Calculate Source COMM Id = 4 +19:33:10 ============================================================================ +19:33:10 + + +waiting on router queue for slot.... +19:33:16 ============================================================================ +19:33:16 Slot Id : <206> +19:33:16 Transaction Type : REQUEST +19:33:16 Received From : +19:33:16 ============================================================================ +19:33:16 FNo. Len. Field Value +19:33:16 ============================================================================ +19:33:16 [ 1] [ 4] [0800] +19:33:16 [ 7] [ 10] [0321024504] +19:33:16 [ 11] [ 6] [194504] +19:33:16 [ 37] [ 12] [57919194504] +19:33:16 [ 70] [ 3] [301] +19:33:16 ============================================================================ +19:33:16 + + +waiting on router queue for slot.... +19:33:16 Sending to : +19:33:16 ============================================================================ +19:33:16 ============================================================================ +19:33:16 Slot Id : <206> +19:33:16 Transaction Type : RESPONSE +19:33:16 Received From : +19:33:16 ============================================================================ +19:33:16 FNo. Len. Field Value +19:33:16 ============================================================================ +19:33:16 [ 1] [ 4] [0810] +19:33:16 [ 7] [ 10] [0321024504] +19:33:16 [ 11] [ 6] [194504] +19:33:16 [ 37] [ 12] [579191945040] +19:33:16 [ 39] [ 2] [00] +19:33:16 [ 70] [ 3] [810] +19:33:16 ============================================================================ +19:33:16 Calculate Source COMM Id = 6 +19:33:16 ============================================================================ +19:33:16 + + +waiting on router queue for slot.... +19:33:17 ============================================================================ +19:33:17 Slot Id : <184> +19:33:17 Transaction Type : REQUEST +19:33:17 Received From : +19:33:17 ============================================================================ +19:33:17 FNo. Len. Field Value +19:33:17 ============================================================================ +19:33:17 [ 1] [ 4] [0800] +19:33:17 [ 7] [ 10] [0320123223] +19:33:17 [ 11] [ 6] [157976] +19:33:17 [ 70] [ 3] [301] +19:33:17 ============================================================================ +19:33:17 + + +waiting on router queue for slot.... +19:33:17 Sending to : +19:33:17 ============================================================================ +19:33:17 ============================================================================ +19:33:17 Slot Id : <184> +19:33:17 Transaction Type : RESPONSE +19:33:17 Received From : +19:33:17 ============================================================================ +19:33:17 FNo. Len. Field Value +19:33:17 ============================================================================ +19:33:17 [ 1] [ 4] [0810] +19:33:17 [ 7] [ 10] [0320123223] +19:33:17 [ 11] [ 6] [157976] +19:33:17 [ 39] [ 2] [00] +19:33:17 [ 70] [ 3] [301] +19:33:17 ============================================================================ +19:33:17 Calculate Source COMM Id = 2 +19:33:17 ============================================================================ +19:33:17 + + +waiting on router queue for slot.... +19:33:18 ============================================================================ +19:33:18 Slot Id : <212> +19:33:18 Transaction Type : REQUEST +19:33:18 Received From : +19:33:18 ============================================================================ +19:33:18 FNo. Len. Field Value +19:33:18 ============================================================================ +19:33:18 [ 1] [ 4] [0200] +19:33:18 [ 2] [ 16] [6213545000762181] +19:33:18 [ 3] [ 6] [010000] +19:33:18 [ 4] [ 12] [000100000000] +19:33:18 [ 7] [ 10] [0320123224] +19:33:18 [ 11] [ 6] [271441] +19:33:18 [ 12] [ 6] [193224] +19:33:18 [ 13] [ 4] [0320] +19:33:18 [ 14] [ 4] [4912] +19:33:18 [ 15] [ 4] [0320] +19:33:18 [ 18] [ 4] [6011] +19:33:18 [ 19] [ 3] [418] +19:33:18 [ 22] [ 3] [021] +19:33:18 [ 25] [ 2] [01] +19:33:18 [ 28] [ 9] [D00002000] +19:33:18 [ 32] [ 6] [180893] +19:33:18 [ 35] [ 32] [6213545000762181=491212016218120] +19:33:18 [ 37] [ 12] [507912271441] +19:33:18 [ 41] [ 8] [0461BKPO] +19:33:18 [ 42] [ 15] [999999 ] +19:33:18 [ 43] [ 40] [ATM BORKEO PAROY, Hauysay, Lao People ] +19:33:18 [ 49] [ 3] [418] +19:33:18 [ 52] [ 16] [01EBDBDCAEFF1B67] +19:33:18 ============================================================================ +19:33:18 + + +waiting on router queue for slot.... +19:33:18 Sending to : +19:33:18 ============================================================================ +19:33:18 Sending to : +19:33:18 ============================================================================ +19:33:19 ============================================================================ +19:33:19 Slot Id : <212> +19:33:19 Transaction Type : REQUEST +19:33:19 Received From : +19:33:19 ============================================================================ +19:33:19 FNo. Len. Field Value +19:33:19 ============================================================================ +19:33:19 [ 1] [ 4] [0200] +19:33:19 [ 2] [ 16] [6213545000762181] +19:33:19 [ 3] [ 6] [010000] +19:33:19 [ 4] [ 12] [000100000000] +19:33:19 [ 7] [ 10] [0320123224] +19:33:19 [ 11] [ 6] [271441] +19:33:19 [ 12] [ 6] [193224] +19:33:19 [ 13] [ 4] [0320] +19:33:19 [ 14] [ 4] [4912] +19:33:19 [ 15] [ 4] [0320] +19:33:19 [ 18] [ 4] [6011] +19:33:19 [ 19] [ 3] [418] +19:33:19 [ 22] [ 3] [021] +19:33:19 [ 25] [ 2] [01] +19:33:19 [ 28] [ 9] [D00002000] +19:33:19 [ 32] [ 6] [180893] +19:33:19 [ 35] [ 32] [6213545000762181=491212016218120] +19:33:19 [ 37] [ 12] [507912271441] +19:33:19 [ 41] [ 8] [0461BKPO] +19:33:19 [ 42] [ 15] [999999 ] +19:33:19 [ 43] [ 40] [ATM BORKEO PAROY, Hauysay, Lao People ] +19:33:19 [ 49] [ 3] [418] +19:33:19 [ 52] [ 16] [01EBDBDCAEFF1B67] +19:33:19 ============================================================================ +19:33:19 + + +waiting on router queue for slot.... +19:33:19 Sending to : +19:33:19 ============================================================================ +19:33:19 ============================================================================ +19:33:19 Slot Id : <212> +19:33:19 Transaction Type : REQUEST +19:33:19 Received From : +19:33:19 ============================================================================ +19:33:19 FNo. Len. Field Value +19:33:19 ============================================================================ +19:33:19 [ 1] [ 4] [0200] +19:33:19 [ 2] [ 16] [6213545000762181] +19:33:19 [ 3] [ 6] [010000] +19:33:19 [ 4] [ 12] [000100000000] +19:33:19 [ 7] [ 10] [0320123224] +19:33:19 [ 11] [ 6] [271441] +19:33:19 [ 12] [ 6] [193224] +19:33:19 [ 13] [ 4] [0320] +19:33:19 [ 14] [ 4] [4912] +19:33:19 [ 15] [ 4] [0320] +19:33:19 [ 18] [ 4] [6011] +19:33:19 [ 19] [ 3] [418] +19:33:19 [ 22] [ 3] [021] +19:33:19 [ 25] [ 2] [01] +19:33:19 [ 28] [ 9] [D00002000] +19:33:19 [ 32] [ 6] [180893] +19:33:19 [ 35] [ 32] [6213545000762181=491212016218120] +19:33:19 [ 37] [ 12] [507912271441] +19:33:19 [ 41] [ 8] [0461BKPO] +19:33:19 [ 42] [ 15] [999999 ] +19:33:19 [ 43] [ 40] [ATM BORKEO PAROY, Hauysay, Lao People ] +19:33:19 [ 49] [ 3] [418] +19:33:19 [ 52] [ 16] [CD613D14C24794F0] +19:33:19 ============================================================================ +19:33:19 + + +waiting on router queue for slot.... +19:33:19 Sending to : <0> +19:33:19 ============================================================================ +19:33:19 ============================================================================ +19:33:19 Slot Id : <212> +19:33:19 Transaction Type : RESPONSE +19:33:19 Received From : +19:33:19 ============================================================================ +19:33:19 FNo. Len. Field Value +19:33:19 ============================================================================ +19:33:19 [ 1] [ 4] [0210] +19:33:19 [ 2] [ 16] [6213545000762181] +19:33:19 [ 3] [ 6] [010000] +19:33:19 [ 4] [ 12] [000100000000] +19:33:19 [ 7] [ 10] [0320123224] +19:33:19 [ 11] [ 6] [271441] +19:33:19 [ 12] [ 6] [193224] +19:33:19 [ 13] [ 4] [0320] +19:33:19 [ 15] [ 4] [0320] +19:33:19 [ 18] [ 4] [6011] +19:33:19 [ 19] [ 3] [418] +19:33:19 [ 32] [ 6] [180893] +19:33:19 [ 35] [ 32] [6213545000762181=491212016218120] +19:33:19 [ 37] [ 12] [507912271441] +19:33:19 [ 38] [ 6] [863077] +19:33:19 [ 39] [ 2] [00] +19:33:19 [ 41] [ 8] [0461BKPO] +19:33:19 [ 49] [ 3] [418] +19:33:19 [ 54] [ 40] [0001418C0000301822620002418C000030182262] +19:33:19 ============================================================================ +19:33:19 Sending to : +19:33:19 ============================================================================ +19:33:19 + + +waiting on router queue for slot.... +19:33:21 ============================================================================ +19:33:21 Slot Id : <212> +19:33:21 Transaction Type : RESPONSE +19:33:21 Received From : +19:33:21 ============================================================================ +19:33:21 FNo. Len. Field Value +19:33:21 ============================================================================ +19:33:21 [ 1] [ 4] [0210] +19:33:21 [ 2] [ 16] [6213545000762181] +19:33:21 [ 3] [ 6] [010000] +19:33:21 [ 4] [ 12] [000100000000] +19:33:21 [ 7] [ 10] [0320123224] +19:33:21 [ 11] [ 6] [271441] +19:33:21 [ 12] [ 6] [193224] +19:33:21 [ 13] [ 4] [0320] +19:33:21 [ 15] [ 4] [0320] +19:33:21 [ 18] [ 4] [6011] +19:33:21 [ 19] [ 3] [418] +19:33:21 [ 32] [ 6] [180893] +19:33:21 [ 35] [ 32] [6213545000762181=491212016218120] +19:33:21 [ 37] [ 12] [507912271441] +19:33:21 [ 38] [ 6] [863077] +19:33:21 [ 39] [ 2] [00] +19:33:21 [ 41] [ 8] [0461BKPO] +19:33:21 [ 49] [ 3] [418] +19:33:21 [ 54] [ 40] [0001418C0000301822620002418C000030182262] +19:33:21 ============================================================================ +19:33:21 Calculate Source COMM Id = 2 +19:33:21 ============================================================================ +19:33:21 + + +waiting on router queue for slot.... +19:33:23 ============================================================================ +19:33:23 Slot Id : <230> +19:33:23 Transaction Type : REQUEST +19:33:23 Received From : +19:33:23 ============================================================================ +19:33:23 FNo. Len. Field Value +19:33:23 ============================================================================ +19:33:23 [ 1] [ 4] [0200] +19:33:23 [ 2] [ 16] [1808931400009468] +19:33:23 [ 3] [ 6] [010000] +19:33:23 [ 4] [ 12] [000100000000] +19:33:23 [ 7] [ 10] [0320193112] +19:33:23 [ 11] [ 6] [956307] +19:33:23 [ 12] [ 6] [193112] +19:33:23 [ 13] [ 4] [0320] +19:33:23 [ 15] [ 4] [0320] +19:33:23 [ 18] [ 4] [6011] +19:33:23 [ 19] [ 3] [418] +19:33:23 [ 22] [ 3] [021] +19:33:23 [ 25] [ 2] [01] +19:33:23 [ 28] [ 9] [D00002000] +19:33:23 [ 32] [ 6] [668899] +19:33:23 [ 35] [ 27] [1808931400009468=1803500728] +19:33:23 [ 37] [ 12] [507901604362] +19:33:23 [ 41] [ 8] [03202001] +19:33:23 [ 42] [ 15] [APT ] +19:33:23 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:33:23 [ 49] [ 3] [418] +19:33:23 [ 52] [ 16] [FCCBF1E20FE18282] +19:33:23 ============================================================================ +19:33:23 + + +waiting on router queue for slot.... +19:33:23 Sending to : +19:33:23 ============================================================================ +19:33:23 Sending to : +19:33:23 ============================================================================ +19:33:23 ============================================================================ +19:33:23 Slot Id : <230> +19:33:23 Transaction Type : REQUEST +19:33:23 Received From : +19:33:23 ============================================================================ +19:33:23 FNo. Len. Field Value +19:33:23 ============================================================================ +19:33:23 [ 1] [ 4] [0200] +19:33:23 [ 2] [ 16] [1808931400009468] +19:33:23 [ 3] [ 6] [010000] +19:33:23 [ 4] [ 12] [000100000000] +19:33:23 [ 7] [ 10] [0320193112] +19:33:23 [ 11] [ 6] [956307] +19:33:23 [ 12] [ 6] [193112] +19:33:23 [ 13] [ 4] [0320] +19:33:23 [ 15] [ 4] [0320] +19:33:23 [ 18] [ 4] [6011] +19:33:23 [ 19] [ 3] [418] +19:33:23 [ 22] [ 3] [021] +19:33:23 [ 25] [ 2] [01] +19:33:23 [ 28] [ 9] [D00002000] +19:33:23 [ 32] [ 6] [668899] +19:33:23 [ 35] [ 27] [1808931400009468=1803500728] +19:33:23 [ 37] [ 12] [507901604362] +19:33:23 [ 41] [ 8] [03202001] +19:33:23 [ 42] [ 15] [APT ] +19:33:23 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:33:23 [ 49] [ 3] [418] +19:33:23 [ 52] [ 16] [FCCBF1E20FE18282] +19:33:23 ============================================================================ +19:33:23 + + +waiting on router queue for slot.... +19:33:23 Sending to : +19:33:23 ============================================================================ +19:33:23 ============================================================================ +19:33:23 Slot Id : <230> +19:33:23 Transaction Type : REQUEST +19:33:23 Received From : +19:33:23 ============================================================================ +19:33:23 FNo. Len. Field Value +19:33:23 ============================================================================ +19:33:23 [ 1] [ 4] [0200] +19:33:23 [ 2] [ 16] [1808931400009468] +19:33:23 [ 3] [ 6] [010000] +19:33:23 [ 4] [ 12] [000100000000] +19:33:23 [ 7] [ 10] [0320193112] +19:33:23 [ 11] [ 6] [956307] +19:33:23 [ 12] [ 6] [193112] +19:33:23 [ 13] [ 4] [0320] +19:33:23 [ 15] [ 4] [0320] +19:33:23 [ 18] [ 4] [6011] +19:33:23 [ 19] [ 3] [418] +19:33:23 [ 22] [ 3] [021] +19:33:23 [ 25] [ 2] [01] +19:33:23 [ 28] [ 9] [D00002000] +19:33:23 [ 32] [ 6] [668899] +19:33:23 [ 35] [ 27] [1808931400009468=1803500728] +19:33:23 [ 37] [ 12] [507901604362] +19:33:23 [ 41] [ 8] [03202001] +19:33:23 [ 42] [ 15] [APT ] +19:33:23 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:33:23 [ 49] [ 3] [418] +19:33:23 [ 52] [ 16] [972DC7AD132D3989] +19:33:23 ============================================================================ +19:33:23 + + +waiting on router queue for slot.... +19:33:23 Sending to : <2> +19:33:23 ============================================================================ +19:33:26 ============================================================================ +19:33:26 Slot Id : <230> +19:33:26 Transaction Type : RESPONSE +19:33:26 Received From : +19:33:26 ============================================================================ +19:33:26 FNo. Len. Field Value +19:33:26 ============================================================================ +19:33:26 [ 1] [ 4] [0210] +19:33:26 [ 2] [ 16] [1808931400009468] +19:33:26 [ 3] [ 6] [010000] +19:33:26 [ 4] [ 12] [000100000000] +19:33:26 [ 6] [ 12] [000100000000] +19:33:26 [ 7] [ 10] [0320193112] +19:33:26 [ 11] [ 6] [956307] +19:33:26 [ 12] [ 6] [193112] +19:33:26 [ 13] [ 4] [0320] +19:33:26 [ 18] [ 4] [6011] +19:33:26 [ 19] [ 3] [418] +19:33:26 [ 22] [ 3] [021] +19:33:26 [ 32] [ 6] [668899] +19:33:26 [ 35] [ 27] [1808931400009468=1803500728] +19:33:26 [ 37] [ 12] [507901604362] +19:33:26 [ 38] [ 6] [956307] +19:33:26 [ 39] [ 2] [51] +19:33:26 [ 41] [ 8] [03202001] +19:33:26 [ 49] [ 3] [418] +19:33:26 [ 52] [ 16] [972DC7AD132D3989] +19:33:26 ============================================================================ +19:33:26 Sending to : +19:33:26 ============================================================================ +19:33:26 + + +waiting on router queue for slot.... +19:33:27 ============================================================================ +19:33:27 Slot Id : <230> +19:33:27 Transaction Type : RESPONSE +19:33:27 Received From : +19:33:27 ============================================================================ +19:33:27 FNo. Len. Field Value +19:33:27 ============================================================================ +19:33:27 [ 1] [ 4] [0210] +19:33:27 [ 2] [ 16] [1808931400009468] +19:33:27 [ 3] [ 6] [010000] +19:33:27 [ 4] [ 12] [000100000000] +19:33:27 [ 6] [ 12] [000100000000] +19:33:27 [ 7] [ 10] [0320193112] +19:33:27 [ 11] [ 6] [956307] +19:33:27 [ 12] [ 6] [193112] +19:33:27 [ 13] [ 4] [0320] +19:33:27 [ 18] [ 4] [6011] +19:33:27 [ 19] [ 3] [418] +19:33:27 [ 22] [ 3] [021] +19:33:27 [ 32] [ 6] [668899] +19:33:27 [ 35] [ 27] [1808931400009468=1803500728] +19:33:27 [ 37] [ 12] [507901604362] +19:33:27 [ 38] [ 6] [956307] +19:33:27 [ 39] [ 2] [51] +19:33:27 [ 41] [ 8] [03202001] +19:33:27 [ 49] [ 3] [418] +19:33:27 [ 52] [ 16] [972DC7AD132D3989] +19:33:27 ============================================================================ +19:33:27 Calculate Source COMM Id = 4 +19:33:27 ============================================================================ +19:33:27 + + +waiting on router queue for slot.... +19:33:29 ============================================================================ +19:33:29 Slot Id : <183> +19:33:29 Transaction Type : REQUEST +19:33:29 Received From : +19:33:29 ============================================================================ +19:33:29 FNo. Len. Field Value +19:33:29 ============================================================================ +19:33:29 [ 1] [ 4] [0800] +19:33:29 [ 2] [ 5] [02531] +19:33:29 [ 3] [ 6] [579198] +19:33:29 [ 7] [ 10] [0320123329] +19:33:29 [ 11] [ 6] [807547] +19:33:29 [ 15] [ 10] [0320123329] +19:33:29 [ 37] [ 11] [57919807547] +19:33:29 [ 70] [ 3] [001] +19:33:29 ============================================================================ +19:33:29 + + +waiting on router queue for slot.... +19:33:29 ============================================================================ +19:33:29 Slot Id : <183> +19:33:29 Transaction Type : RESPONSE +19:33:29 Received From : +19:33:29 ============================================================================ +19:33:29 FNo. Len. Field Value +19:33:29 ============================================================================ +19:33:29 [ 1] [ 4] [0810] +19:33:29 [ 7] [ 10] [0320123329] +19:33:29 [ 11] [ 6] [807547] +19:33:29 [ 15] [ 4] [0320] +19:33:29 [ 37] [ 12] [57919807547] +19:33:29 [ 39] [ 2] [00] +19:33:29 [ 70] [ 3] [001] +19:33:29 ============================================================================ +19:33:29 Sending to : +19:33:29 ============================================================================ +19:33:29 + + +waiting on router queue for slot.... +19:33:33 ============================================================================ +19:33:33 Slot Id : <221> +19:33:33 Transaction Type : REQUEST +19:33:33 Received From : +19:33:33 ============================================================================ +19:33:33 FNo. Len. Field Value +19:33:33 ============================================================================ +19:33:33 [ 1] [ 4] [0800] +19:33:33 [ 7] [ 10] [0320123240] +19:33:33 [ 11] [ 6] [157977] +19:33:33 [ 70] [ 3] [301] +19:33:33 ============================================================================ +19:33:33 + + +waiting on router queue for slot.... +19:33:33 Sending to : +19:33:33 ============================================================================ +19:33:33 ============================================================================ +19:33:33 Slot Id : <221> +19:33:33 Transaction Type : RESPONSE +19:33:33 Received From : +19:33:33 ============================================================================ +19:33:33 FNo. Len. Field Value +19:33:33 ============================================================================ +19:33:33 [ 1] [ 4] [0810] +19:33:33 [ 7] [ 10] [0320123240] +19:33:33 [ 11] [ 6] [157977] +19:33:33 [ 39] [ 2] [00] +19:33:33 [ 70] [ 3] [301] +19:33:33 ============================================================================ +19:33:33 Calculate Source COMM Id = 2 +19:33:33 ============================================================================ +19:33:33 + + +waiting on router queue for slot.... +19:33:43 ============================================================================ +19:33:43 Slot Id : <207> +19:33:43 Transaction Type : REQUEST +19:33:43 Received From : +19:33:43 ============================================================================ +19:33:43 FNo. Len. Field Value +19:33:43 ============================================================================ +19:33:43 [ 1] [ 4] [0800] +19:33:43 [ 7] [ 10] [0320123250] +19:33:43 [ 11] [ 6] [157978] +19:33:43 [ 70] [ 3] [301] +19:33:43 ============================================================================ +19:33:43 + + +waiting on router queue for slot.... +19:33:43 Sending to : +19:33:43 ============================================================================ +19:33:43 ============================================================================ +19:33:43 Slot Id : <207> +19:33:43 Transaction Type : RESPONSE +19:33:43 Received From : +19:33:43 ============================================================================ +19:33:43 FNo. Len. Field Value +19:33:43 ============================================================================ +19:33:43 [ 1] [ 4] [0810] +19:33:43 [ 7] [ 10] [0320123250] +19:33:43 [ 11] [ 6] [157978] +19:33:43 [ 39] [ 2] [00] +19:33:43 [ 70] [ 3] [301] +19:33:43 ============================================================================ +19:33:43 Calculate Source COMM Id = 2 +19:33:43 ============================================================================ +19:33:43 + + +waiting on router queue for slot.... +19:33:45 ============================================================================ +19:33:45 Slot Id : <213> +19:33:45 Transaction Type : REQUEST +19:33:45 Received From : +19:33:45 ============================================================================ +19:33:45 FNo. Len. Field Value +19:33:45 ============================================================================ +19:33:45 [ 1] [ 4] [0200] +19:33:45 [ 2] [ 16] [1808931400009468] +19:33:45 [ 3] [ 6] [302000] +19:33:45 [ 4] [ 12] [000000000000] +19:33:45 [ 7] [ 10] [0320193134] +19:33:45 [ 11] [ 6] [956316] +19:33:45 [ 12] [ 6] [193134] +19:33:45 [ 13] [ 4] [0320] +19:33:45 [ 15] [ 4] [0320] +19:33:45 [ 18] [ 4] [6011] +19:33:45 [ 19] [ 3] [418] +19:33:45 [ 22] [ 3] [021] +19:33:45 [ 25] [ 2] [01] +19:33:45 [ 28] [ 9] [D00000000] +19:33:45 [ 32] [ 6] [668899] +19:33:45 [ 35] [ 27] [1808931400009468=1803500728] +19:33:45 [ 37] [ 12] [507901604363] +19:33:45 [ 41] [ 8] [03202001] +19:33:45 [ 42] [ 15] [APT ] +19:33:45 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:33:45 [ 49] [ 3] [418] +19:33:45 [ 52] [ 16] [FCCBF1E20FE18282] +19:33:45 ============================================================================ +19:33:45 + + +waiting on router queue for slot.... +19:33:45 Sending to : +19:33:45 ============================================================================ +19:33:45 Sending to : +19:33:45 ============================================================================ +19:33:45 ============================================================================ +19:33:45 Slot Id : <213> +19:33:45 Transaction Type : REQUEST +19:33:45 Received From : +19:33:45 ============================================================================ +19:33:45 FNo. Len. Field Value +19:33:45 ============================================================================ +19:33:45 [ 1] [ 4] [0200] +19:33:45 [ 2] [ 16] [1808931400009468] +19:33:45 [ 3] [ 6] [302000] +19:33:45 [ 4] [ 12] [000000000000] +19:33:45 [ 7] [ 10] [0320193134] +19:33:45 [ 11] [ 6] [956316] +19:33:45 [ 12] [ 6] [193134] +19:33:45 [ 13] [ 4] [0320] +19:33:45 [ 15] [ 4] [0320] +19:33:45 [ 18] [ 4] [6011] +19:33:45 [ 19] [ 3] [418] +19:33:45 [ 22] [ 3] [021] +19:33:45 [ 25] [ 2] [01] +19:33:45 [ 28] [ 9] [D00000000] +19:33:45 [ 32] [ 6] [668899] +19:33:45 [ 35] [ 27] [1808931400009468=1803500728] +19:33:45 [ 37] [ 12] [507901604363] +19:33:45 [ 41] [ 8] [03202001] +19:33:45 [ 42] [ 15] [APT ] +19:33:45 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:33:45 [ 49] [ 3] [418] +19:33:45 [ 52] [ 16] [FCCBF1E20FE18282] +19:33:45 ============================================================================ +19:33:45 + + +waiting on router queue for slot.... +19:33:45 Sending to : +19:33:45 ============================================================================ +19:33:45 ============================================================================ +19:33:45 Slot Id : <213> +19:33:45 Transaction Type : REQUEST +19:33:45 Received From : +19:33:45 ============================================================================ +19:33:45 FNo. Len. Field Value +19:33:45 ============================================================================ +19:33:45 [ 1] [ 4] [0200] +19:33:45 [ 2] [ 16] [1808931400009468] +19:33:45 [ 3] [ 6] [302000] +19:33:45 [ 4] [ 12] [000000000000] +19:33:45 [ 7] [ 10] [0320193134] +19:33:45 [ 11] [ 6] [956316] +19:33:45 [ 12] [ 6] [193134] +19:33:45 [ 13] [ 4] [0320] +19:33:45 [ 15] [ 4] [0320] +19:33:45 [ 18] [ 4] [6011] +19:33:45 [ 19] [ 3] [418] +19:33:45 [ 22] [ 3] [021] +19:33:45 [ 25] [ 2] [01] +19:33:45 [ 28] [ 9] [D00000000] +19:33:45 [ 32] [ 6] [668899] +19:33:45 [ 35] [ 27] [1808931400009468=1803500728] +19:33:45 [ 37] [ 12] [507901604363] +19:33:45 [ 41] [ 8] [03202001] +19:33:45 [ 42] [ 15] [APT ] +19:33:45 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:33:45 [ 49] [ 3] [418] +19:33:45 [ 52] [ 16] [972DC7AD132D3989] +19:33:45 ============================================================================ +19:33:45 + + +waiting on router queue for slot.... +19:33:45 Sending to : <2> +19:33:45 ============================================================================ +19:33:45 ============================================================================ +19:33:45 Slot Id : <213> +19:33:45 Transaction Type : RESPONSE +19:33:45 Received From : +19:33:45 ============================================================================ +19:33:45 FNo. Len. Field Value +19:33:45 ============================================================================ +19:33:45 [ 1] [ 4] [0210] +19:33:45 [ 2] [ 16] [1808931400009468] +19:33:45 [ 3] [ 6] [302000] +19:33:45 [ 7] [ 10] [0320193134] +19:33:45 [ 11] [ 6] [956316] +19:33:45 [ 12] [ 6] [193134] +19:33:45 [ 13] [ 4] [0320] +19:33:45 [ 14] [ 4] [1803] +19:33:45 [ 19] [ 3] [418] +19:33:45 [ 32] [ 6] [668899] +19:33:45 [ 37] [ 12] [507901604363] +19:33:45 [ 39] [ 2] [42] +19:33:45 [ 41] [ 8] [03202001] +19:33:45 [ 49] [ 3] [418] +19:33:45 [ 52] [ 16] [972DC7AD132D3989] +19:33:45 ============================================================================ +19:33:45 Sending to : +19:33:45 ============================================================================ +19:33:45 + + +waiting on router queue for slot.... +19:33:47 ============================================================================ +19:33:47 Slot Id : <213> +19:33:47 Transaction Type : RESPONSE +19:33:47 Received From : +19:33:47 ============================================================================ +19:33:47 FNo. Len. Field Value +19:33:47 ============================================================================ +19:33:47 [ 1] [ 4] [0210] +19:33:47 [ 2] [ 16] [1808931400009468] +19:33:47 [ 3] [ 6] [302000] +19:33:47 [ 7] [ 10] [0320193134] +19:33:47 [ 11] [ 6] [956316] +19:33:47 [ 12] [ 6] [193134] +19:33:47 [ 13] [ 4] [0320] +19:33:47 [ 14] [ 4] [1803] +19:33:47 [ 19] [ 3] [418] +19:33:47 [ 32] [ 6] [668899] +19:33:47 [ 37] [ 12] [507901604363] +19:33:47 [ 39] [ 2] [42] +19:33:47 [ 41] [ 8] [03202001] +19:33:47 [ 49] [ 3] [418] +19:33:47 [ 52] [ 16] [972DC7AD132D3989] +19:33:47 ============================================================================ +19:33:47 Calculate Source COMM Id = 4 +19:33:47 ============================================================================ +19:33:47 + + +waiting on router queue for slot.... +19:34:00 ============================================================================ +19:34:00 Slot Id : <169> +19:34:00 Transaction Type : REQUEST +19:34:00 Received From : +19:34:00 ============================================================================ +19:34:00 FNo. Len. Field Value +19:34:00 ============================================================================ +19:34:00 [ 1] [ 4] [0800] +19:34:00 [ 7] [ 10] [0320123306] +19:34:00 [ 11] [ 6] [157979] +19:34:00 [ 70] [ 3] [301] +19:34:00 ============================================================================ +19:34:00 + + +waiting on router queue for slot.... +19:34:00 Sending to : +19:34:00 ============================================================================ +19:34:00 ============================================================================ +19:34:00 Slot Id : <169> +19:34:00 Transaction Type : RESPONSE +19:34:00 Received From : +19:34:00 ============================================================================ +19:34:00 FNo. Len. Field Value +19:34:00 ============================================================================ +19:34:00 [ 1] [ 4] [0810] +19:34:00 [ 7] [ 10] [0320123306] +19:34:00 [ 11] [ 6] [157979] +19:34:00 [ 39] [ 2] [00] +19:34:00 [ 70] [ 3] [301] +19:34:00 ============================================================================ +19:34:00 Calculate Source COMM Id = 2 +19:34:00 ============================================================================ +19:34:00 + + +waiting on router queue for slot.... +19:34:06 ============================================================================ +19:34:06 Slot Id : <205> +19:34:06 Transaction Type : REQUEST +19:34:06 Received From : +19:34:06 ============================================================================ +19:34:06 FNo. Len. Field Value +19:34:06 ============================================================================ +19:34:06 [ 1] [ 4] [0200] +19:34:06 [ 2] [ 16] [6688990108473701] +19:34:06 [ 3] [ 6] [011000] +19:34:06 [ 4] [ 12] [000030000000] +19:34:06 [ 7] [ 10] [0320193401] +19:34:06 [ 11] [ 6] [837326] +19:34:06 [ 12] [ 6] [193401] +19:34:06 [ 13] [ 4] [0320] +19:34:06 [ 15] [ 4] [0320] +19:34:06 [ 18] [ 4] [6011] +19:34:06 [ 22] [ 3] [900] +19:34:06 [ 25] [ 2] [02] +19:34:06 [ 28] [ 9] [D00002000] +19:34:06 [ 32] [ 6] [621354] +19:34:06 [ 35] [ 37] [6688990108473701=44061231370102000000] +19:34:06 [ 37] [ 12] [507902846602] +19:34:06 [ 41] [ 8] [01007800] +19:34:06 [ 42] [ 15] [NATIVE ] +19:34:06 [ 43] [ 40] [NORTH STATION SikhottabongLAO] +19:34:06 [ 49] [ 3] [418] +19:34:06 [ 52] [ 16] [A4D04F99791252AE] +19:34:06 ============================================================================ +19:34:06 + + +waiting on router queue for slot.... +19:34:06 Sending to : +19:34:06 ============================================================================ +19:34:06 Sending to : +19:34:06 ============================================================================ +19:34:06 ============================================================================ +19:34:06 Slot Id : <205> +19:34:06 Transaction Type : REQUEST +19:34:06 Received From : +19:34:06 ============================================================================ +19:34:06 FNo. Len. Field Value +19:34:06 ============================================================================ +19:34:06 [ 1] [ 4] [0200] +19:34:06 [ 2] [ 16] [6688990108473701] +19:34:06 [ 3] [ 6] [011000] +19:34:06 [ 4] [ 12] [000030000000] +19:34:06 [ 7] [ 10] [0320193401] +19:34:06 [ 11] [ 6] [837326] +19:34:06 [ 12] [ 6] [193401] +19:34:06 [ 13] [ 4] [0320] +19:34:06 [ 15] [ 4] [0320] +19:34:06 [ 18] [ 4] [6011] +19:34:06 [ 22] [ 3] [900] +19:34:06 [ 25] [ 2] [02] +19:34:06 [ 28] [ 9] [D00002000] +19:34:06 [ 32] [ 6] [621354] +19:34:06 [ 35] [ 37] [6688990108473701=44061231370102000000] +19:34:06 [ 37] [ 12] [507902846602] +19:34:06 [ 41] [ 8] [01007800] +19:34:06 [ 42] [ 15] [NATIVE ] +19:34:06 [ 43] [ 40] [NORTH STATION SikhottabongLAO] +19:34:06 [ 49] [ 3] [418] +19:34:06 [ 52] [ 16] [A4D04F99791252AE] +19:34:06 ============================================================================ +19:34:06 + + +waiting on router queue for slot.... +19:34:06 Sending to : +19:34:06 ============================================================================ +19:34:06 ============================================================================ +19:34:06 Slot Id : <205> +19:34:06 Transaction Type : REQUEST +19:34:06 Received From : +19:34:06 ============================================================================ +19:34:06 FNo. Len. Field Value +19:34:06 ============================================================================ +19:34:06 [ 1] [ 4] [0200] +19:34:06 [ 2] [ 16] [6688990108473701] +19:34:06 [ 3] [ 6] [011000] +19:34:06 [ 4] [ 12] [000030000000] +19:34:06 [ 7] [ 10] [0320193401] +19:34:06 [ 11] [ 6] [837326] +19:34:06 [ 12] [ 6] [193401] +19:34:06 [ 13] [ 4] [0320] +19:34:06 [ 15] [ 4] [0320] +19:34:06 [ 18] [ 4] [6011] +19:34:06 [ 22] [ 3] [900] +19:34:06 [ 25] [ 2] [02] +19:34:06 [ 28] [ 9] [D00002000] +19:34:06 [ 32] [ 6] [621354] +19:34:06 [ 35] [ 37] [6688990108473701=44061231370102000000] +19:34:06 [ 37] [ 12] [507902846602] +19:34:06 [ 41] [ 8] [01007800] +19:34:06 [ 42] [ 15] [NATIVE ] +19:34:06 [ 43] [ 40] [NORTH STATION SikhottabongLAO] +19:34:06 [ 49] [ 3] [418] +19:34:06 [ 52] [ 16] [198186FD43842AE6] +19:34:06 ============================================================================ +19:34:06 + + +waiting on router queue for slot.... +19:34:06 Sending to : <4> +19:34:06 ============================================================================ +19:34:07 ============================================================================ +19:34:07 Slot Id : <205> +19:34:07 Transaction Type : RESPONSE +19:34:07 Received From : +19:34:07 ============================================================================ +19:34:07 FNo. Len. Field Value +19:34:07 ============================================================================ +19:34:07 [ 1] [ 4] [0210] +19:34:07 [ 2] [ 16] [6688990108473701] +19:34:07 [ 3] [ 6] [011000] +19:34:07 [ 4] [ 12] [000030000000] +19:34:07 [ 11] [ 6] [837326] +19:34:07 [ 12] [ 6] [193401] +19:34:07 [ 15] [ 4] [0320] +19:34:07 [ 18] [ 4] [6011] +19:34:07 [ 32] [ 6] [621354] +19:34:07 [ 35] [ 37] [6688990108473701=44061231370102000000] +19:34:07 [ 37] [ 12] [507902846602] +19:34:07 [ 38] [ 6] [277532] +19:34:07 [ 39] [ 2] [00] +19:34:07 [ 41] [ 8] [01007800] +19:34:07 [ 49] [ 3] [418] +19:34:07 [ 54] [ 20] [1002764C000000087060] +19:34:07 ============================================================================ +19:34:07 Sending to : +19:34:07 ============================================================================ +19:34:07 + + +waiting on router queue for slot.... +19:34:09 ============================================================================ +19:34:09 Slot Id : <205> +19:34:09 Transaction Type : RESPONSE +19:34:09 Received From : +19:34:09 ============================================================================ +19:34:09 FNo. Len. Field Value +19:34:09 ============================================================================ +19:34:09 [ 1] [ 4] [0210] +19:34:09 [ 2] [ 16] [6688990108473701] +19:34:09 [ 3] [ 6] [011000] +19:34:09 [ 4] [ 12] [000030000000] +19:34:09 [ 11] [ 6] [837326] +19:34:09 [ 12] [ 6] [193401] +19:34:09 [ 15] [ 4] [0320] +19:34:09 [ 18] [ 4] [6011] +19:34:09 [ 32] [ 6] [621354] +19:34:09 [ 35] [ 37] [6688990108473701=44061231370102000000] +19:34:09 [ 37] [ 12] [507902846602] +19:34:09 [ 38] [ 6] [277532] +19:34:09 [ 39] [ 2] [00] +19:34:09 [ 41] [ 8] [01007800] +19:34:09 [ 49] [ 3] [418] +19:34:09 [ 54] [ 20] [1002764C000000087060] +19:34:09 ============================================================================ +19:34:09 Calculate Source COMM Id = 0 +19:34:09 ============================================================================ +19:34:09 + + +waiting on router queue for slot.... +19:34:15 ============================================================================ +19:34:15 Slot Id : <185> +19:34:15 Transaction Type : REQUEST +19:34:15 Received From : +19:34:15 ============================================================================ +19:34:15 FNo. Len. Field Value +19:34:15 ============================================================================ +19:34:15 [ 1] [ 4] [0800] +19:34:15 [ 7] [ 10] [0320123322] +19:34:15 [ 11] [ 6] [157980] +19:34:15 [ 70] [ 3] [301] +19:34:15 ============================================================================ +19:34:15 + + +waiting on router queue for slot.... +19:34:15 Sending to : +19:34:15 ============================================================================ +19:34:15 ============================================================================ +19:34:15 Slot Id : <185> +19:34:15 Transaction Type : RESPONSE +19:34:15 Received From : +19:34:15 ============================================================================ +19:34:15 FNo. Len. Field Value +19:34:15 ============================================================================ +19:34:15 [ 1] [ 4] [0810] +19:34:15 [ 7] [ 10] [0320123322] +19:34:15 [ 11] [ 6] [157980] +19:34:15 [ 39] [ 2] [00] +19:34:15 [ 70] [ 3] [301] +19:34:15 ============================================================================ +19:34:15 Calculate Source COMM Id = 2 +19:34:15 ============================================================================ +19:34:15 + + +waiting on router queue for slot.... +19:34:21 ============================================================================ +19:34:21 Slot Id : <149> +19:34:21 Transaction Type : REQUEST +19:34:21 Received From : +19:34:21 ============================================================================ +19:34:21 FNo. Len. Field Value +19:34:21 ============================================================================ +19:34:21 [ 1] [ 4] [0800] +19:34:21 [ 7] [ 10] [0321024609] +19:34:21 [ 11] [ 6] [194609] +19:34:21 [ 37] [ 12] [57919194609] +19:34:21 [ 70] [ 3] [301] +19:34:21 ============================================================================ +19:34:21 + + +waiting on router queue for slot.... +19:34:21 Sending to : +19:34:21 ============================================================================ +19:34:21 ============================================================================ +19:34:21 Slot Id : <149> +19:34:21 Transaction Type : RESPONSE +19:34:21 Received From : +19:34:21 ============================================================================ +19:34:21 FNo. Len. Field Value +19:34:21 ============================================================================ +19:34:21 [ 1] [ 4] [0810] +19:34:21 [ 7] [ 10] [0321024609] +19:34:21 [ 11] [ 6] [194609] +19:34:21 [ 37] [ 12] [579191946090] +19:34:21 [ 39] [ 2] [00] +19:34:21 [ 70] [ 3] [810] +19:34:21 ============================================================================ +19:34:21 Calculate Source COMM Id = 6 +19:34:21 ============================================================================ +19:34:21 + + +waiting on router queue for slot.... +19:34:26 ============================================================================ +19:34:26 Slot Id : <232> +19:34:26 Transaction Type : REQUEST +19:34:26 Received From : +19:34:26 ============================================================================ +19:34:26 FNo. Len. Field Value +19:34:26 ============================================================================ +19:34:26 [ 1] [ 4] [0800] +19:34:26 [ 7] [ 10] [0320123332] +19:34:26 [ 11] [ 6] [157981] +19:34:26 [ 70] [ 3] [301] +19:34:26 ============================================================================ +19:34:26 + + +waiting on router queue for slot.... +19:34:26 Sending to : +19:34:26 ============================================================================ +19:34:26 ============================================================================ +19:34:26 Slot Id : <232> +19:34:26 Transaction Type : RESPONSE +19:34:26 Received From : +19:34:26 ============================================================================ +19:34:26 FNo. Len. Field Value +19:34:26 ============================================================================ +19:34:26 [ 1] [ 4] [0810] +19:34:26 [ 7] [ 10] [0320123332] +19:34:26 [ 11] [ 6] [157981] +19:34:26 [ 39] [ 2] [00] +19:34:26 [ 70] [ 3] [301] +19:34:26 ============================================================================ +19:34:26 Calculate Source COMM Id = 2 +19:34:26 ============================================================================ +19:34:26 + + +waiting on router queue for slot.... +19:34:31 ============================================================================ +19:34:31 Slot Id : <180> +19:34:31 Transaction Type : REQUEST +19:34:31 Received From : +19:34:31 ============================================================================ +19:34:31 FNo. Len. Field Value +19:34:31 ============================================================================ +19:34:31 [ 1] [ 4] [0800] +19:34:31 [ 2] [ 5] [02531] +19:34:31 [ 3] [ 6] [579198] +19:34:31 [ 7] [ 10] [0320123431] +19:34:31 [ 11] [ 6] [807548] +19:34:31 [ 15] [ 10] [0320123431] +19:34:31 [ 37] [ 11] [57919807548] +19:34:31 [ 70] [ 3] [001] +19:34:31 ============================================================================ +19:34:31 + + +waiting on router queue for slot.... +19:34:31 ============================================================================ +19:34:31 Slot Id : <180> +19:34:31 Transaction Type : RESPONSE +19:34:31 Received From : +19:34:31 ============================================================================ +19:34:31 FNo. Len. Field Value +19:34:31 ============================================================================ +19:34:31 [ 1] [ 4] [0810] +19:34:31 [ 7] [ 10] [0320123431] +19:34:31 [ 11] [ 6] [807548] +19:34:31 [ 15] [ 4] [0320] +19:34:31 [ 37] [ 12] [57919807548] +19:34:31 [ 39] [ 2] [00] +19:34:31 [ 70] [ 3] [001] +19:34:31 ============================================================================ +19:34:31 Sending to : +19:34:31 ============================================================================ +19:34:31 + + +waiting on router queue for slot.... +19:34:42 ============================================================================ +19:34:42 Slot Id : <222> +19:34:42 Transaction Type : REQUEST +19:34:42 Received From : +19:34:42 ============================================================================ +19:34:42 FNo. Len. Field Value +19:34:42 ============================================================================ +19:34:42 [ 1] [ 4] [0800] +19:34:42 [ 7] [ 10] [0320123349] +19:34:42 [ 11] [ 6] [157982] +19:34:42 [ 70] [ 3] [301] +19:34:42 ============================================================================ +19:34:42 + + +waiting on router queue for slot.... +19:34:42 Sending to : +19:34:42 ============================================================================ +19:34:42 ============================================================================ +19:34:42 Slot Id : <222> +19:34:42 Transaction Type : RESPONSE +19:34:42 Received From : +19:34:42 ============================================================================ +19:34:42 FNo. Len. Field Value +19:34:42 ============================================================================ +19:34:42 [ 1] [ 4] [0810] +19:34:42 [ 7] [ 10] [0320123349] +19:34:42 [ 11] [ 6] [157982] +19:34:42 [ 39] [ 2] [00] +19:34:42 [ 70] [ 3] [301] +19:34:42 ============================================================================ +19:34:42 Calculate Source COMM Id = 2 +19:34:42 ============================================================================ +19:34:42 + + +waiting on router queue for slot.... +19:34:44 ============================================================================ +19:34:44 Slot Id : <211> +19:34:44 Transaction Type : REQUEST +19:34:44 Received From : +19:34:44 ============================================================================ +19:34:44 FNo. Len. Field Value +19:34:44 ============================================================================ +19:34:44 [ 1] [ 4] [0200] +19:34:44 [ 2] [ 16] [6688990601026204] +19:34:44 [ 3] [ 6] [010000] +19:34:44 [ 4] [ 12] [000050000000] +19:34:44 [ 7] [ 10] [0320123350] +19:34:44 [ 11] [ 6] [271446] +19:34:44 [ 12] [ 6] [193350] +19:34:44 [ 13] [ 4] [0320] +19:34:44 [ 14] [ 4] [4104] +19:34:44 [ 15] [ 4] [0320] +19:34:44 [ 18] [ 4] [6011] +19:34:44 [ 19] [ 3] [418] +19:34:44 [ 22] [ 3] [021] +19:34:44 [ 25] [ 2] [01] +19:34:44 [ 28] [ 9] [D00002000] +19:34:44 [ 32] [ 6] [180893] +19:34:44 [ 35] [ 37] [6688990601026204=41040061620492000000] +19:34:44 [ 37] [ 12] [507912271446] +19:34:44 [ 41] [ 8] [0466PSLB] +19:34:44 [ 42] [ 15] [999999 ] +19:34:44 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:34:44 [ 49] [ 3] [418] +19:34:44 [ 52] [ 16] [FF239040B26787F1] +19:34:44 ============================================================================ +19:34:44 + + +waiting on router queue for slot.... +19:34:44 Sending to : +19:34:44 ============================================================================ +19:34:44 Sending to : +19:34:44 ============================================================================ +19:34:44 ============================================================================ +19:34:44 Slot Id : <211> +19:34:44 Transaction Type : REQUEST +19:34:44 Received From : +19:34:44 ============================================================================ +19:34:44 FNo. Len. Field Value +19:34:44 ============================================================================ +19:34:44 [ 1] [ 4] [0200] +19:34:44 [ 2] [ 16] [6688990601026204] +19:34:44 [ 3] [ 6] [010000] +19:34:44 [ 4] [ 12] [000050000000] +19:34:44 [ 7] [ 10] [0320123350] +19:34:44 [ 11] [ 6] [271446] +19:34:44 [ 12] [ 6] [193350] +19:34:44 [ 13] [ 4] [0320] +19:34:44 [ 14] [ 4] [4104] +19:34:44 [ 15] [ 4] [0320] +19:34:44 [ 18] [ 4] [6011] +19:34:44 [ 19] [ 3] [418] +19:34:44 [ 22] [ 3] [021] +19:34:44 [ 25] [ 2] [01] +19:34:44 [ 28] [ 9] [D00002000] +19:34:44 [ 32] [ 6] [180893] +19:34:44 [ 35] [ 37] [6688990601026204=41040061620492000000] +19:34:44 [ 37] [ 12] [507912271446] +19:34:44 [ 41] [ 8] [0466PSLB] +19:34:44 [ 42] [ 15] [999999 ] +19:34:44 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:34:44 [ 49] [ 3] [418] +19:34:44 [ 52] [ 16] [FF239040B26787F1] +19:34:44 ============================================================================ +19:34:44 + + +waiting on router queue for slot.... +19:34:44 Sending to : +19:34:44 ============================================================================ +19:34:44 ============================================================================ +19:34:44 Slot Id : <211> +19:34:44 Transaction Type : REQUEST +19:34:44 Received From : +19:34:44 ============================================================================ +19:34:44 FNo. Len. Field Value +19:34:44 ============================================================================ +19:34:44 [ 1] [ 4] [0200] +19:34:44 [ 2] [ 16] [6688990601026204] +19:34:44 [ 3] [ 6] [010000] +19:34:44 [ 4] [ 12] [000050000000] +19:34:44 [ 7] [ 10] [0320123350] +19:34:44 [ 11] [ 6] [271446] +19:34:44 [ 12] [ 6] [193350] +19:34:44 [ 13] [ 4] [0320] +19:34:44 [ 14] [ 4] [4104] +19:34:44 [ 15] [ 4] [0320] +19:34:44 [ 18] [ 4] [6011] +19:34:44 [ 19] [ 3] [418] +19:34:44 [ 22] [ 3] [021] +19:34:44 [ 25] [ 2] [01] +19:34:44 [ 28] [ 9] [D00002000] +19:34:44 [ 32] [ 6] [180893] +19:34:44 [ 35] [ 37] [6688990601026204=41040061620492000000] +19:34:44 [ 37] [ 12] [507912271446] +19:34:44 [ 41] [ 8] [0466PSLB] +19:34:44 [ 42] [ 15] [999999 ] +19:34:44 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:34:44 [ 49] [ 3] [418] +19:34:44 [ 52] [ 16] [8C032F43467F9B96] +19:34:44 ============================================================================ +19:34:44 + + +waiting on router queue for slot.... +19:34:44 Sending to : <0> +19:34:44 ============================================================================ +19:34:44 ============================================================================ +19:34:44 Slot Id : <211> +19:34:44 Transaction Type : RESPONSE +19:34:44 Received From : +19:34:44 ============================================================================ +19:34:44 FNo. Len. Field Value +19:34:44 ============================================================================ +19:34:44 [ 1] [ 4] [0210] +19:34:44 [ 2] [ 16] [6688990601026204] +19:34:44 [ 3] [ 6] [010000] +19:34:44 [ 4] [ 12] [000050000000] +19:34:44 [ 7] [ 10] [0320123350] +19:34:44 [ 11] [ 6] [271446] +19:34:44 [ 12] [ 6] [193350] +19:34:44 [ 13] [ 4] [0320] +19:34:44 [ 15] [ 4] [0320] +19:34:44 [ 18] [ 4] [6011] +19:34:44 [ 19] [ 3] [418] +19:34:44 [ 22] [ 3] [021] +19:34:44 [ 32] [ 6] [180893] +19:34:44 [ 35] [ 37] [6688990601026204=41040061620492000000] +19:34:44 [ 37] [ 12] [507912271446] +19:34:44 [ 39] [ 2] [14] +19:34:44 [ 41] [ 8] [0466PSLB] +19:34:44 [ 49] [ 3] [418] +19:34:44 ============================================================================ +19:34:44 Sending to : +19:34:44 ============================================================================ +19:34:44 + + +waiting on router queue for slot.... +19:34:45 ============================================================================ +19:34:45 Slot Id : <211> +19:34:45 Transaction Type : RESPONSE +19:34:45 Received From : +19:34:45 ============================================================================ +19:34:45 FNo. Len. Field Value +19:34:45 ============================================================================ +19:34:45 [ 1] [ 4] [0210] +19:34:45 [ 2] [ 16] [6688990601026204] +19:34:45 [ 3] [ 6] [010000] +19:34:45 [ 4] [ 12] [000050000000] +19:34:45 [ 7] [ 10] [0320123350] +19:34:45 [ 11] [ 6] [271446] +19:34:45 [ 12] [ 6] [193350] +19:34:45 [ 13] [ 4] [0320] +19:34:45 [ 15] [ 4] [0320] +19:34:45 [ 18] [ 4] [6011] +19:34:45 [ 19] [ 3] [418] +19:34:45 [ 22] [ 3] [021] +19:34:45 [ 32] [ 6] [180893] +19:34:45 [ 35] [ 37] [6688990601026204=41040061620492000000] +19:34:45 [ 37] [ 12] [507912271446] +19:34:45 [ 39] [ 2] [14] +19:34:45 [ 41] [ 8] [0466PSLB] +19:34:45 [ 49] [ 3] [418] +19:34:45 ============================================================================ +19:34:45 Calculate Source COMM Id = 2 +19:34:45 ============================================================================ +19:34:45 + + +waiting on router queue for slot.... +19:34:57 ============================================================================ +19:34:57 Slot Id : <208> +19:34:57 Transaction Type : REQUEST +19:34:57 Received From : +19:34:57 ============================================================================ +19:34:57 FNo. Len. Field Value +19:34:57 ============================================================================ +19:34:57 [ 1] [ 4] [0800] +19:34:57 [ 7] [ 10] [0320124242] +19:34:57 [ 11] [ 6] [055751] +19:34:57 [ 37] [ 12] [57919055751] +19:34:57 [ 70] [ 3] [301] +19:34:57 ============================================================================ +19:34:57 + + +waiting on router queue for slot.... +19:34:57 Sending to : +19:34:57 ============================================================================ +19:34:57 ============================================================================ +19:34:57 Slot Id : <208> +19:34:57 Transaction Type : RESPONSE +19:34:57 Received From : +19:34:57 ============================================================================ +19:34:57 FNo. Len. Field Value +19:34:57 ============================================================================ +19:34:57 [ 1] [ 4] [0810] +19:34:57 [ 7] [ 10] [0320124242] +19:34:57 [ 11] [ 6] [055751] +19:34:57 [ 37] [ 12] [579190557510] +19:34:57 [ 39] [ 2] [00] +19:34:57 [ 70] [ 3] [810] +19:34:57 ============================================================================ +19:34:57 Calculate Source COMM Id = 1 +19:34:57 ============================================================================ +19:34:57 + + +waiting on router queue for slot.... +19:34:57 ============================================================================ +19:34:57 Slot Id : <189> +19:34:57 Transaction Type : REQUEST +19:34:57 Received From : +19:34:57 ============================================================================ +19:34:57 FNo. Len. Field Value +19:34:57 ============================================================================ +19:34:57 [ 1] [ 4] [0800] +19:34:57 [ 7] [ 10] [0320123404] +19:34:57 [ 11] [ 6] [157983] +19:34:57 [ 70] [ 3] [301] +19:34:57 ============================================================================ +19:34:57 + + +waiting on router queue for slot.... +19:34:57 Sending to : +19:34:57 ============================================================================ +19:34:57 ============================================================================ +19:34:57 Slot Id : <189> +19:34:57 Transaction Type : RESPONSE +19:34:57 Received From : +19:34:57 ============================================================================ +19:34:57 FNo. Len. Field Value +19:34:57 ============================================================================ +19:34:57 [ 1] [ 4] [0810] +19:34:57 [ 7] [ 10] [0320123404] +19:34:57 [ 11] [ 6] [157983] +19:34:57 [ 39] [ 2] [00] +19:34:57 [ 70] [ 3] [301] +19:34:57 ============================================================================ +19:34:57 Calculate Source COMM Id = 2 +19:34:57 ============================================================================ +19:34:57 + + +waiting on router queue for slot.... +19:35:01 ============================================================================ +19:35:01 Slot Id : <229> +19:35:01 Transaction Type : REQUEST +19:35:01 Received From : +19:35:01 ============================================================================ +19:35:01 FNo. Len. Field Value +19:35:01 ============================================================================ +19:35:01 [ 1] [ 4] [0200] +19:35:01 [ 2] [ 16] [1808931400009468] +19:35:01 [ 3] [ 6] [010000] +19:35:01 [ 4] [ 12] [000070000000] +19:35:01 [ 7] [ 10] [0320193250] +19:35:01 [ 11] [ 6] [956344] +19:35:01 [ 12] [ 6] [193250] +19:35:01 [ 13] [ 4] [0320] +19:35:01 [ 15] [ 4] [0320] +19:35:01 [ 18] [ 4] [6011] +19:35:01 [ 19] [ 3] [418] +19:35:01 [ 22] [ 3] [021] +19:35:01 [ 25] [ 2] [01] +19:35:01 [ 28] [ 9] [D00002000] +19:35:01 [ 32] [ 6] [668899] +19:35:01 [ 35] [ 27] [1808931400009468=1803500728] +19:35:01 [ 37] [ 12] [507901604365] +19:35:01 [ 41] [ 8] [03202001] +19:35:01 [ 42] [ 15] [APT ] +19:35:01 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:35:01 [ 49] [ 3] [418] +19:35:01 [ 52] [ 16] [FCCBF1E20FE18282] +19:35:01 ============================================================================ +19:35:01 + + +waiting on router queue for slot.... +19:35:01 Sending to : +19:35:01 ============================================================================ +19:35:01 Sending to : +19:35:01 ============================================================================ +19:35:01 ============================================================================ +19:35:01 Slot Id : <168> +19:35:01 Transaction Type : REQUEST +19:35:01 Received From : +19:35:01 ============================================================================ +19:35:01 FNo. Len. Field Value +19:35:01 ============================================================================ +19:35:01 [ 1] [ 4] [0800] +19:35:01 [ 7] [ 10] [0320123456] +19:35:01 [ 11] [ 6] [059762] +19:35:01 [ 37] [ 12] [507919059762] +19:35:01 [ 70] [ 3] [001] +19:35:01 ============================================================================ +19:35:01 + + +waiting on router queue for slot.... +19:35:01 Sending to : +19:35:01 ============================================================================ +19:35:01 ============================================================================ +19:35:01 Slot Id : <168> +19:35:01 Transaction Type : RESPONSE +19:35:01 Received From : +19:35:01 ============================================================================ +19:35:01 FNo. Len. Field Value +19:35:01 ============================================================================ +19:35:01 [ 1] [ 4] [0810] +19:35:01 [ 7] [ 10] [0320123456] +19:35:01 [ 11] [ 6] [059762] +19:35:01 [ 37] [ 12] [507919059762] +19:35:01 [ 39] [ 2] [00] +19:35:01 [ 70] [ 3] [001] +19:35:01 ============================================================================ +19:35:01 Calculate Source COMM Id = 0 +19:35:01 ============================================================================ +19:35:01 + + +waiting on router queue for slot.... +19:35:01 ============================================================================ +19:35:01 Slot Id : <229> +19:35:01 Transaction Type : REQUEST +19:35:01 Received From : +19:35:01 ============================================================================ +19:35:01 FNo. Len. Field Value +19:35:01 ============================================================================ +19:35:01 [ 1] [ 4] [0200] +19:35:01 [ 2] [ 16] [1808931400009468] +19:35:01 [ 3] [ 6] [010000] +19:35:01 [ 4] [ 12] [000070000000] +19:35:01 [ 7] [ 10] [0320193250] +19:35:01 [ 11] [ 6] [956344] +19:35:01 [ 12] [ 6] [193250] +19:35:01 [ 13] [ 4] [0320] +19:35:01 [ 15] [ 4] [0320] +19:35:01 [ 18] [ 4] [6011] +19:35:01 [ 19] [ 3] [418] +19:35:01 [ 22] [ 3] [021] +19:35:01 [ 25] [ 2] [01] +19:35:01 [ 28] [ 9] [D00002000] +19:35:01 [ 32] [ 6] [668899] +19:35:01 [ 35] [ 27] [1808931400009468=1803500728] +19:35:01 [ 37] [ 12] [507901604365] +19:35:01 [ 41] [ 8] [03202001] +19:35:01 [ 42] [ 15] [APT ] +19:35:01 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:35:01 [ 49] [ 3] [418] +19:35:01 [ 52] [ 16] [FCCBF1E20FE18282] +19:35:01 ============================================================================ +19:35:01 + + +waiting on router queue for slot.... +19:35:01 Sending to : +19:35:01 ============================================================================ +19:35:01 ============================================================================ +19:35:01 Slot Id : <229> +19:35:01 Transaction Type : REQUEST +19:35:01 Received From : +19:35:01 ============================================================================ +19:35:01 FNo. Len. Field Value +19:35:01 ============================================================================ +19:35:01 [ 1] [ 4] [0200] +19:35:01 [ 2] [ 16] [1808931400009468] +19:35:01 [ 3] [ 6] [010000] +19:35:01 [ 4] [ 12] [000070000000] +19:35:01 [ 7] [ 10] [0320193250] +19:35:01 [ 11] [ 6] [956344] +19:35:01 [ 12] [ 6] [193250] +19:35:01 [ 13] [ 4] [0320] +19:35:01 [ 15] [ 4] [0320] +19:35:01 [ 18] [ 4] [6011] +19:35:01 [ 19] [ 3] [418] +19:35:01 [ 22] [ 3] [021] +19:35:01 [ 25] [ 2] [01] +19:35:01 [ 28] [ 9] [D00002000] +19:35:01 [ 32] [ 6] [668899] +19:35:01 [ 35] [ 27] [1808931400009468=1803500728] +19:35:01 [ 37] [ 12] [507901604365] +19:35:01 [ 41] [ 8] [03202001] +19:35:01 [ 42] [ 15] [APT ] +19:35:01 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:35:01 [ 49] [ 3] [418] +19:35:01 [ 52] [ 16] [972DC7AD132D3989] +19:35:01 ============================================================================ +19:35:01 + + +waiting on router queue for slot.... +19:35:01 Sending to : <2> +19:35:01 ============================================================================ +19:35:05 ============================================================================ +19:35:05 Slot Id : <229> +19:35:05 Transaction Type : RESPONSE +19:35:05 Received From : +19:35:05 ============================================================================ +19:35:05 FNo. Len. Field Value +19:35:05 ============================================================================ +19:35:05 [ 1] [ 4] [0210] +19:35:05 [ 2] [ 16] [1808931400009468] +19:35:05 [ 3] [ 6] [010000] +19:35:05 [ 4] [ 12] [000070000000] +19:35:05 [ 6] [ 12] [000070000000] +19:35:05 [ 7] [ 10] [0320193250] +19:35:05 [ 11] [ 6] [956344] +19:35:05 [ 12] [ 6] [193250] +19:35:05 [ 13] [ 4] [0320] +19:35:05 [ 18] [ 4] [6011] +19:35:05 [ 19] [ 3] [418] +19:35:05 [ 22] [ 3] [021] +19:35:05 [ 32] [ 6] [668899] +19:35:05 [ 35] [ 27] [1808931400009468=1803500728] +19:35:05 [ 37] [ 12] [507901604365] +19:35:05 [ 38] [ 6] [956344] +19:35:05 [ 39] [ 2] [00] +19:35:05 [ 41] [ 8] [03202001] +19:35:05 [ 49] [ 3] [418] +19:35:05 [ 52] [ 16] [972DC7AD132D3989] +19:35:05 [ 54] [ 20] [1001418C000030693300] +19:35:05 ============================================================================ +19:35:05 Sending to : +19:35:05 ============================================================================ +19:35:05 + + +waiting on router queue for slot.... +19:35:06 ============================================================================ +19:35:06 Slot Id : <229> +19:35:06 Transaction Type : RESPONSE +19:35:06 Received From : +19:35:06 ============================================================================ +19:35:06 FNo. Len. Field Value +19:35:06 ============================================================================ +19:35:06 [ 1] [ 4] [0210] +19:35:06 [ 2] [ 16] [1808931400009468] +19:35:06 [ 3] [ 6] [010000] +19:35:06 [ 4] [ 12] [000070000000] +19:35:06 [ 6] [ 12] [000070000000] +19:35:06 [ 7] [ 10] [0320193250] +19:35:06 [ 11] [ 6] [956344] +19:35:06 [ 12] [ 6] [193250] +19:35:06 [ 13] [ 4] [0320] +19:35:06 [ 18] [ 4] [6011] +19:35:06 [ 19] [ 3] [418] +19:35:06 [ 22] [ 3] [021] +19:35:06 [ 32] [ 6] [668899] +19:35:06 [ 35] [ 27] [1808931400009468=1803500728] +19:35:06 [ 37] [ 12] [507901604365] +19:35:06 [ 38] [ 6] [956344] +19:35:06 [ 39] [ 2] [00] +19:35:06 [ 41] [ 8] [03202001] +19:35:06 [ 49] [ 3] [418] +19:35:06 [ 52] [ 16] [972DC7AD132D3989] +19:35:06 [ 54] [ 20] [1001418C000030693300] +19:35:06 ============================================================================ +19:35:06 Calculate Source COMM Id = 4 +19:35:06 ============================================================================ +19:35:06 + + +waiting on router queue for slot.... +19:35:13 ============================================================================ +19:35:13 Slot Id : <173> +19:35:13 Transaction Type : REQUEST +19:35:13 Received From : +19:35:13 ============================================================================ +19:35:13 FNo. Len. Field Value +19:35:13 ============================================================================ +19:35:13 [ 1] [ 4] [0800] +19:35:13 [ 7] [ 10] [0320123420] +19:35:13 [ 11] [ 6] [157984] +19:35:13 [ 70] [ 3] [301] +19:35:13 ============================================================================ +19:35:13 + + +waiting on router queue for slot.... +19:35:13 Sending to : +19:35:13 ============================================================================ +19:35:13 ============================================================================ +19:35:13 Slot Id : <173> +19:35:13 Transaction Type : RESPONSE +19:35:13 Received From : +19:35:13 ============================================================================ +19:35:13 FNo. Len. Field Value +19:35:13 ============================================================================ +19:35:13 [ 1] [ 4] [0810] +19:35:13 [ 7] [ 10] [0320123420] +19:35:13 [ 11] [ 6] [157984] +19:35:13 [ 39] [ 2] [00] +19:35:13 [ 70] [ 3] [301] +19:35:13 ============================================================================ +19:35:13 Calculate Source COMM Id = 2 +19:35:13 ============================================================================ +19:35:13 + + +waiting on router queue for slot.... +19:35:26 ============================================================================ +19:35:26 Slot Id : <174> +19:35:26 Transaction Type : REQUEST +19:35:26 Received From : +19:35:26 ============================================================================ +19:35:26 FNo. Len. Field Value +19:35:26 ============================================================================ +19:35:26 [ 1] [ 4] [0800] +19:35:26 [ 7] [ 10] [0321024714] +19:35:26 [ 11] [ 6] [194714] +19:35:26 [ 37] [ 12] [57919194714] +19:35:26 [ 70] [ 3] [301] +19:35:26 ============================================================================ +19:35:26 + + +waiting on router queue for slot.... +19:35:26 Sending to : +19:35:26 ============================================================================ +19:35:26 ============================================================================ +19:35:26 Slot Id : <174> +19:35:26 Transaction Type : RESPONSE +19:35:26 Received From : +19:35:26 ============================================================================ +19:35:26 FNo. Len. Field Value +19:35:26 ============================================================================ +19:35:26 [ 1] [ 4] [0810] +19:35:26 [ 7] [ 10] [0321024714] +19:35:26 [ 11] [ 6] [194714] +19:35:26 [ 37] [ 12] [579191947140] +19:35:26 [ 39] [ 2] [00] +19:35:26 [ 70] [ 3] [810] +19:35:26 ============================================================================ +19:35:26 Calculate Source COMM Id = 6 +19:35:26 ============================================================================ +19:35:26 + + +waiting on router queue for slot.... +19:35:30 ============================================================================ +19:35:30 Slot Id : <246> +19:35:30 Transaction Type : REQUEST +19:35:30 Received From : +19:35:30 ============================================================================ +19:35:30 FNo. Len. Field Value +19:35:30 ============================================================================ +19:35:30 [ 1] [ 4] [0800] +19:35:30 [ 7] [ 10] [0320123437] +19:35:30 [ 11] [ 6] [157985] +19:35:30 [ 70] [ 3] [301] +19:35:30 ============================================================================ +19:35:30 + + +waiting on router queue for slot.... +19:35:30 Sending to : +19:35:30 ============================================================================ +19:35:30 ============================================================================ +19:35:30 Slot Id : <246> +19:35:30 Transaction Type : RESPONSE +19:35:30 Received From : +19:35:30 ============================================================================ +19:35:30 FNo. Len. Field Value +19:35:30 ============================================================================ +19:35:30 [ 1] [ 4] [0810] +19:35:30 [ 7] [ 10] [0320123437] +19:35:30 [ 11] [ 6] [157985] +19:35:30 [ 39] [ 2] [00] +19:35:30 [ 70] [ 3] [301] +19:35:30 ============================================================================ +19:35:30 Calculate Source COMM Id = 2 +19:35:30 ============================================================================ +19:35:30 + + +waiting on router queue for slot.... +19:35:31 ============================================================================ +19:35:31 Slot Id : <223> +19:35:31 Transaction Type : REQUEST +19:35:31 Received From : +19:35:31 ============================================================================ +19:35:31 FNo. Len. Field Value +19:35:31 ============================================================================ +19:35:31 [ 1] [ 4] [0200] +19:35:31 [ 2] [ 16] [6688990601026204] +19:35:31 [ 3] [ 6] [301000] +19:35:31 [ 7] [ 10] [0320123438] +19:35:31 [ 11] [ 6] [271449] +19:35:31 [ 12] [ 6] [193438] +19:35:31 [ 13] [ 4] [0320] +19:35:31 [ 14] [ 4] [4104] +19:35:31 [ 15] [ 4] [0320] +19:35:31 [ 18] [ 4] [6011] +19:35:31 [ 19] [ 3] [418] +19:35:31 [ 22] [ 3] [021] +19:35:31 [ 25] [ 2] [01] +19:35:31 [ 32] [ 6] [180893] +19:35:31 [ 35] [ 37] [6688990601026204=41040061620492000000] +19:35:31 [ 37] [ 12] [507912271449] +19:35:31 [ 41] [ 8] [0466PSLB] +19:35:31 [ 42] [ 15] [999999 ] +19:35:31 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:35:31 [ 49] [ 3] [418] +19:35:31 [ 52] [ 16] [FF239040B26787F1] +19:35:31 ============================================================================ +19:35:31 + + +waiting on router queue for slot.... +19:35:31 Sending to : +19:35:31 ============================================================================ +19:35:31 Sending to : +19:35:31 ============================================================================ +19:35:32 ============================================================================ +19:35:32 Slot Id : <223> +19:35:32 Transaction Type : REQUEST +19:35:32 Received From : +19:35:32 ============================================================================ +19:35:32 FNo. Len. Field Value +19:35:32 ============================================================================ +19:35:32 [ 1] [ 4] [0200] +19:35:32 [ 2] [ 16] [6688990601026204] +19:35:32 [ 3] [ 6] [301000] +19:35:32 [ 7] [ 10] [0320123438] +19:35:32 [ 11] [ 6] [271449] +19:35:32 [ 12] [ 6] [193438] +19:35:32 [ 13] [ 4] [0320] +19:35:32 [ 14] [ 4] [4104] +19:35:32 [ 15] [ 4] [0320] +19:35:32 [ 18] [ 4] [6011] +19:35:32 [ 19] [ 3] [418] +19:35:32 [ 22] [ 3] [021] +19:35:32 [ 25] [ 2] [01] +19:35:32 [ 32] [ 6] [180893] +19:35:32 [ 35] [ 37] [6688990601026204=41040061620492000000] +19:35:32 [ 37] [ 12] [507912271449] +19:35:32 [ 41] [ 8] [0466PSLB] +19:35:32 [ 42] [ 15] [999999 ] +19:35:32 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:35:32 [ 49] [ 3] [418] +19:35:32 [ 52] [ 16] [FF239040B26787F1] +19:35:32 ============================================================================ +19:35:32 + + +waiting on router queue for slot.... +19:35:32 Sending to : +19:35:32 ============================================================================ +19:35:32 ============================================================================ +19:35:32 Slot Id : <223> +19:35:32 Transaction Type : REQUEST +19:35:32 Received From : +19:35:32 ============================================================================ +19:35:32 FNo. Len. Field Value +19:35:32 ============================================================================ +19:35:32 [ 1] [ 4] [0200] +19:35:32 [ 2] [ 16] [6688990601026204] +19:35:32 [ 3] [ 6] [301000] +19:35:32 [ 7] [ 10] [0320123438] +19:35:32 [ 11] [ 6] [271449] +19:35:32 [ 12] [ 6] [193438] +19:35:32 [ 13] [ 4] [0320] +19:35:32 [ 14] [ 4] [4104] +19:35:32 [ 15] [ 4] [0320] +19:35:32 [ 18] [ 4] [6011] +19:35:32 [ 19] [ 3] [418] +19:35:32 [ 22] [ 3] [021] +19:35:32 [ 25] [ 2] [01] +19:35:32 [ 32] [ 6] [180893] +19:35:32 [ 35] [ 37] [6688990601026204=41040061620492000000] +19:35:32 [ 37] [ 12] [507912271449] +19:35:32 [ 41] [ 8] [0466PSLB] +19:35:32 [ 42] [ 15] [999999 ] +19:35:32 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:35:32 [ 49] [ 3] [418] +19:35:32 [ 52] [ 16] [8C032F43467F9B96] +19:35:32 ============================================================================ +19:35:32 + + +waiting on router queue for slot.... +19:35:32 Sending to : <0> +19:35:32 ============================================================================ +19:35:32 ============================================================================ +19:35:32 Slot Id : <223> +19:35:32 Transaction Type : RESPONSE +19:35:32 Received From : +19:35:32 ============================================================================ +19:35:32 FNo. Len. Field Value +19:35:32 ============================================================================ +19:35:32 [ 1] [ 4] [0210] +19:35:32 [ 2] [ 16] [6688990601026204] +19:35:32 [ 3] [ 6] [301000] +19:35:32 [ 4] [ 12] [000000000000] +19:35:32 [ 7] [ 10] [0320123438] +19:35:32 [ 11] [ 6] [271449] +19:35:32 [ 12] [ 6] [193438] +19:35:32 [ 13] [ 4] [0320] +19:35:32 [ 15] [ 4] [0320] +19:35:32 [ 18] [ 4] [6011] +19:35:32 [ 19] [ 3] [418] +19:35:32 [ 22] [ 3] [021] +19:35:32 [ 32] [ 6] [180893] +19:35:32 [ 35] [ 37] [6688990601026204=41040061620492000000] +19:35:32 [ 37] [ 12] [507912271449] +19:35:32 [ 39] [ 2] [14] +19:35:32 [ 41] [ 8] [0466PSLB] +19:35:32 [ 49] [ 3] [418] +19:35:32 ============================================================================ +19:35:32 Sending to : +19:35:32 ============================================================================ +19:35:32 + + +waiting on router queue for slot.... +19:35:33 ============================================================================ +19:35:33 Slot Id : <223> +19:35:33 Transaction Type : RESPONSE +19:35:33 Received From : +19:35:33 ============================================================================ +19:35:33 FNo. Len. Field Value +19:35:33 ============================================================================ +19:35:33 [ 1] [ 4] [0210] +19:35:33 [ 2] [ 16] [6688990601026204] +19:35:33 [ 3] [ 6] [301000] +19:35:33 [ 4] [ 12] [000000000000] +19:35:33 [ 7] [ 10] [0320123438] +19:35:33 [ 11] [ 6] [271449] +19:35:33 [ 12] [ 6] [193438] +19:35:33 [ 13] [ 4] [0320] +19:35:33 [ 15] [ 4] [0320] +19:35:33 [ 18] [ 4] [6011] +19:35:33 [ 19] [ 3] [418] +19:35:33 [ 22] [ 3] [021] +19:35:33 [ 32] [ 6] [180893] +19:35:33 [ 35] [ 37] [6688990601026204=41040061620492000000] +19:35:33 [ 37] [ 12] [507912271449] +19:35:33 [ 39] [ 2] [14] +19:35:33 [ 41] [ 8] [0466PSLB] +19:35:33 [ 49] [ 3] [418] +19:35:33 ============================================================================ +19:35:33 Calculate Source COMM Id = 2 +19:35:33 ============================================================================ +19:35:33 + + +waiting on router queue for slot.... +19:35:33 ============================================================================ +19:35:33 Slot Id : <188> +19:35:33 Transaction Type : REQUEST +19:35:33 Received From : +19:35:33 ============================================================================ +19:35:33 FNo. Len. Field Value +19:35:33 ============================================================================ +19:35:33 [ 1] [ 4] [0800] +19:35:33 [ 2] [ 5] [02531] +19:35:33 [ 3] [ 6] [579198] +19:35:33 [ 7] [ 10] [0320123533] +19:35:33 [ 11] [ 6] [807549] +19:35:33 [ 15] [ 10] [0320123533] +19:35:33 [ 37] [ 11] [57919807549] +19:35:33 [ 70] [ 3] [001] +19:35:33 ============================================================================ +19:35:33 + + +waiting on router queue for slot.... +19:35:33 ============================================================================ +19:35:33 Slot Id : <188> +19:35:33 Transaction Type : RESPONSE +19:35:33 Received From : +19:35:33 ============================================================================ +19:35:33 FNo. Len. Field Value +19:35:33 ============================================================================ +19:35:33 [ 1] [ 4] [0810] +19:35:33 [ 7] [ 10] [0320123533] +19:35:33 [ 11] [ 6] [807549] +19:35:33 [ 15] [ 4] [0320] +19:35:33 [ 37] [ 12] [57919807549] +19:35:33 [ 39] [ 2] [00] +19:35:33 [ 70] [ 3] [001] +19:35:33 ============================================================================ +19:35:33 Sending to : +19:35:33 ============================================================================ +19:35:33 + + +waiting on router queue for slot.... +19:35:46 ============================================================================ +19:35:46 Slot Id : <235> +19:35:46 Transaction Type : REQUEST +19:35:46 Received From : +19:35:46 ============================================================================ +19:35:46 FNo. Len. Field Value +19:35:46 ============================================================================ +19:35:46 [ 1] [ 4] [0800] +19:35:46 [ 7] [ 10] [0320123452] +19:35:46 [ 11] [ 6] [157986] +19:35:46 [ 70] [ 3] [301] +19:35:46 ============================================================================ +19:35:46 + + +waiting on router queue for slot.... +19:35:46 Sending to : +19:35:46 ============================================================================ +19:35:46 ============================================================================ +19:35:46 Slot Id : <235> +19:35:46 Transaction Type : RESPONSE +19:35:46 Received From : +19:35:46 ============================================================================ +19:35:46 FNo. Len. Field Value +19:35:46 ============================================================================ +19:35:46 [ 1] [ 4] [0810] +19:35:46 [ 7] [ 10] [0320123452] +19:35:46 [ 11] [ 6] [157986] +19:35:46 [ 39] [ 2] [00] +19:35:46 [ 70] [ 3] [301] +19:35:46 ============================================================================ +19:35:46 Calculate Source COMM Id = 2 +19:35:46 ============================================================================ +19:35:46 + + +waiting on router queue for slot.... +19:35:55 ============================================================================ +19:35:55 Slot Id : <244> +19:35:55 Transaction Type : REQUEST +19:35:55 Received From : +19:35:55 ============================================================================ +19:35:55 FNo. Len. Field Value +19:35:55 ============================================================================ +19:35:55 [ 1] [ 4] [0200] +19:35:55 [ 2] [ 16] [6213544002082730] +19:35:55 [ 3] [ 6] [301000] +19:35:55 [ 4] [ 12] [000000000000] +19:35:55 [ 7] [ 10] [0320193344] +19:35:55 [ 11] [ 6] [956365] +19:35:55 [ 12] [ 6] [193344] +19:35:55 [ 13] [ 4] [0320] +19:35:55 [ 15] [ 4] [0320] +19:35:55 [ 18] [ 4] [6011] +19:35:55 [ 19] [ 3] [418] +19:35:55 [ 22] [ 3] [021] +19:35:55 [ 25] [ 2] [01] +19:35:55 [ 28] [ 9] [D00000000] +19:35:55 [ 32] [ 6] [668899] +19:35:55 [ 35] [ 32] [6213544002082730=491212018273182] +19:35:55 [ 37] [ 12] [507901262072] +19:35:55 [ 41] [ 8] [03206001] +19:35:55 [ 42] [ 15] [APT ] +19:35:55 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:35:55 [ 49] [ 3] [418] +19:35:55 [ 52] [ 16] [78CF0425D3BE2A48] +19:35:55 ============================================================================ +19:35:55 + + +waiting on router queue for slot.... +19:35:55 Sending to : +19:35:55 ============================================================================ +19:35:55 Sending to : +19:35:55 ============================================================================ +19:35:55 ============================================================================ +19:35:55 Slot Id : <244> +19:35:55 Transaction Type : REQUEST +19:35:55 Received From : +19:35:55 ============================================================================ +19:35:55 FNo. Len. Field Value +19:35:55 ============================================================================ +19:35:55 [ 1] [ 4] [0200] +19:35:55 [ 2] [ 16] [6213544002082730] +19:35:55 [ 3] [ 6] [301000] +19:35:55 [ 4] [ 12] [000000000000] +19:35:55 [ 7] [ 10] [0320193344] +19:35:55 [ 11] [ 6] [956365] +19:35:55 [ 12] [ 6] [193344] +19:35:55 [ 13] [ 4] [0320] +19:35:55 [ 15] [ 4] [0320] +19:35:55 [ 18] [ 4] [6011] +19:35:55 [ 19] [ 3] [418] +19:35:55 [ 22] [ 3] [021] +19:35:55 [ 25] [ 2] [01] +19:35:55 [ 28] [ 9] [D00000000] +19:35:55 [ 32] [ 6] [668899] +19:35:55 [ 35] [ 32] [6213544002082730=491212018273182] +19:35:55 [ 37] [ 12] [507901262072] +19:35:55 [ 41] [ 8] [03206001] +19:35:55 [ 42] [ 15] [APT ] +19:35:55 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:35:55 [ 49] [ 3] [418] +19:35:55 [ 52] [ 16] [78CF0425D3BE2A48] +19:35:55 ============================================================================ +19:35:55 + + +waiting on router queue for slot.... +19:35:55 Sending to : +19:35:55 ============================================================================ +19:35:55 ============================================================================ +19:35:55 Slot Id : <244> +19:35:55 Transaction Type : REQUEST +19:35:55 Received From : +19:35:55 ============================================================================ +19:35:55 FNo. Len. Field Value +19:35:55 ============================================================================ +19:35:55 [ 1] [ 4] [0200] +19:35:55 [ 2] [ 16] [6213544002082730] +19:35:55 [ 3] [ 6] [301000] +19:35:55 [ 4] [ 12] [000000000000] +19:35:55 [ 7] [ 10] [0320193344] +19:35:55 [ 11] [ 6] [956365] +19:35:55 [ 12] [ 6] [193344] +19:35:55 [ 13] [ 4] [0320] +19:35:55 [ 15] [ 4] [0320] +19:35:55 [ 18] [ 4] [6011] +19:35:55 [ 19] [ 3] [418] +19:35:55 [ 22] [ 3] [021] +19:35:55 [ 25] [ 2] [01] +19:35:55 [ 28] [ 9] [D00000000] +19:35:55 [ 32] [ 6] [668899] +19:35:55 [ 35] [ 32] [6213544002082730=491212018273182] +19:35:55 [ 37] [ 12] [507901262072] +19:35:55 [ 41] [ 8] [03206001] +19:35:55 [ 42] [ 15] [APT ] +19:35:55 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:35:55 [ 49] [ 3] [418] +19:35:55 [ 52] [ 16] [20F9066FA2B3A5A3] +19:35:55 ============================================================================ +19:35:55 + + +waiting on router queue for slot.... +19:35:55 Sending to : <0> +19:35:55 ============================================================================ +19:35:55 ============================================================================ +19:35:55 Slot Id : <244> +19:35:55 Transaction Type : RESPONSE +19:35:55 Received From : +19:35:55 ============================================================================ +19:35:55 FNo. Len. Field Value +19:35:55 ============================================================================ +19:35:55 [ 1] [ 4] [0210] +19:35:55 [ 2] [ 16] [6213544002082730] +19:35:55 [ 3] [ 6] [301000] +19:35:55 [ 4] [ 12] [000000000000] +19:35:55 [ 7] [ 10] [0320193344] +19:35:55 [ 11] [ 6] [956365] +19:35:55 [ 12] [ 6] [193344] +19:35:55 [ 13] [ 4] [0320] +19:35:55 [ 15] [ 4] [0320] +19:35:55 [ 18] [ 4] [6011] +19:35:55 [ 19] [ 3] [418] +19:35:55 [ 32] [ 6] [668899] +19:35:55 [ 35] [ 32] [6213544002082730=491212018273182] +19:35:55 [ 37] [ 12] [507901262072] +19:35:55 [ 38] [ 6] [273891] +19:35:55 [ 39] [ 2] [00] +19:35:55 [ 41] [ 8] [03206001] +19:35:55 [ 49] [ 3] [418] +19:35:55 [ 54] [ 40] [1001418C0000099255401002418C000009925540] +19:35:55 ============================================================================ +19:35:55 Sending to : +19:35:55 ============================================================================ +19:35:55 + + +waiting on router queue for slot.... +19:35:56 ============================================================================ +19:35:56 Slot Id : <227> +19:35:56 Transaction Type : REQUEST +19:35:56 Received From : +19:35:56 ============================================================================ +19:35:56 FNo. Len. Field Value +19:35:56 ============================================================================ +19:35:56 [ 1] [ 4] [0800] +19:35:56 [ 7] [ 10] [0320123503] +19:35:56 [ 11] [ 6] [157987] +19:35:56 [ 70] [ 3] [301] +19:35:56 ============================================================================ +19:35:56 + + +waiting on router queue for slot.... +19:35:56 Sending to : +19:35:56 ============================================================================ +19:35:56 ============================================================================ +19:35:56 Slot Id : <227> +19:35:56 Transaction Type : RESPONSE +19:35:56 Received From : +19:35:56 ============================================================================ +19:35:56 FNo. Len. Field Value +19:35:56 ============================================================================ +19:35:56 [ 1] [ 4] [0810] +19:35:56 [ 7] [ 10] [0320123503] +19:35:56 [ 11] [ 6] [157987] +19:35:56 [ 39] [ 2] [00] +19:35:56 [ 70] [ 3] [301] +19:35:56 ============================================================================ +19:35:56 Calculate Source COMM Id = 2 +19:35:56 ============================================================================ +19:35:56 + + +waiting on router queue for slot.... +19:35:57 ============================================================================ +19:35:57 Slot Id : <244> +19:35:57 Transaction Type : RESPONSE +19:35:57 Received From : +19:35:57 ============================================================================ +19:35:57 FNo. Len. Field Value +19:35:57 ============================================================================ +19:35:57 [ 1] [ 4] [0210] +19:35:57 [ 2] [ 16] [6213544002082730] +19:35:57 [ 3] [ 6] [301000] +19:35:57 [ 4] [ 12] [000000000000] +19:35:57 [ 7] [ 10] [0320193344] +19:35:57 [ 11] [ 6] [956365] +19:35:57 [ 12] [ 6] [193344] +19:35:57 [ 13] [ 4] [0320] +19:35:57 [ 15] [ 4] [0320] +19:35:57 [ 18] [ 4] [6011] +19:35:57 [ 19] [ 3] [418] +19:35:57 [ 32] [ 6] [668899] +19:35:57 [ 35] [ 32] [6213544002082730=491212018273182] +19:35:57 [ 37] [ 12] [507901262072] +19:35:57 [ 38] [ 6] [273891] +19:35:57 [ 39] [ 2] [00] +19:35:57 [ 41] [ 8] [03206001] +19:35:57 [ 49] [ 3] [418] +19:35:57 [ 54] [ 40] [1001418C0000099255401002418C000009925540] +19:35:57 ============================================================================ +19:35:57 Calculate Source COMM Id = 4 +19:35:57 ============================================================================ +19:35:57 + + +waiting on router queue for slot.... +19:36:09 ============================================================================ +19:36:09 Slot Id : <215> +19:36:09 Transaction Type : REQUEST +19:36:09 Received From : +19:36:09 ============================================================================ +19:36:09 FNo. Len. Field Value +19:36:09 ============================================================================ +19:36:09 [ 1] [ 4] [0800] +19:36:09 [ 7] [ 10] [0320123515] +19:36:09 [ 11] [ 6] [157988] +19:36:09 [ 70] [ 3] [301] +19:36:09 ============================================================================ +19:36:09 + + +waiting on router queue for slot.... +19:36:09 Sending to : +19:36:09 ============================================================================ +19:36:09 ============================================================================ +19:36:09 Slot Id : <215> +19:36:09 Transaction Type : RESPONSE +19:36:09 Received From : +19:36:09 ============================================================================ +19:36:09 FNo. Len. Field Value +19:36:09 ============================================================================ +19:36:09 [ 1] [ 4] [0810] +19:36:09 [ 7] [ 10] [0320123515] +19:36:09 [ 11] [ 6] [157988] +19:36:09 [ 39] [ 2] [00] +19:36:09 [ 70] [ 3] [301] +19:36:09 ============================================================================ +19:36:09 Calculate Source COMM Id = 2 +19:36:09 ============================================================================ +19:36:09 + + +waiting on router queue for slot.... +19:36:14 ============================================================================ +19:36:14 Slot Id : <251> +19:36:14 Transaction Type : REQUEST +19:36:14 Received From : +19:36:14 ============================================================================ +19:36:14 FNo. Len. Field Value +19:36:14 ============================================================================ +19:36:14 [ 1] [ 4] [0200] +19:36:14 [ 2] [ 16] [6213544002082730] +19:36:14 [ 3] [ 6] [300000] +19:36:14 [ 4] [ 12] [000000000000] +19:36:14 [ 7] [ 10] [0320193403] +19:36:14 [ 11] [ 6] [956370] +19:36:14 [ 12] [ 6] [193403] +19:36:14 [ 13] [ 4] [0320] +19:36:14 [ 15] [ 4] [0320] +19:36:14 [ 18] [ 4] [6011] +19:36:14 [ 19] [ 3] [418] +19:36:14 [ 22] [ 3] [021] +19:36:14 [ 25] [ 2] [01] +19:36:14 [ 28] [ 9] [D00000000] +19:36:14 [ 32] [ 6] [668899] +19:36:14 [ 35] [ 32] [6213544002082730=491212018273182] +19:36:14 [ 37] [ 12] [507901262073] +19:36:14 [ 41] [ 8] [03206001] +19:36:14 [ 42] [ 15] [APT ] +19:36:14 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:36:14 [ 49] [ 3] [418] +19:36:14 [ 52] [ 16] [78CF0425D3BE2A48] +19:36:14 ============================================================================ +19:36:14 + + +waiting on router queue for slot.... +19:36:14 Sending to : +19:36:14 ============================================================================ +19:36:14 Sending to : +19:36:14 ============================================================================ +19:36:14 ============================================================================ +19:36:14 Slot Id : <251> +19:36:14 Transaction Type : REQUEST +19:36:14 Received From : +19:36:14 ============================================================================ +19:36:14 FNo. Len. Field Value +19:36:14 ============================================================================ +19:36:14 [ 1] [ 4] [0200] +19:36:14 [ 2] [ 16] [6213544002082730] +19:36:14 [ 3] [ 6] [300000] +19:36:14 [ 4] [ 12] [000000000000] +19:36:14 [ 7] [ 10] [0320193403] +19:36:14 [ 11] [ 6] [956370] +19:36:14 [ 12] [ 6] [193403] +19:36:14 [ 13] [ 4] [0320] +19:36:14 [ 15] [ 4] [0320] +19:36:14 [ 18] [ 4] [6011] +19:36:14 [ 19] [ 3] [418] +19:36:14 [ 22] [ 3] [021] +19:36:14 [ 25] [ 2] [01] +19:36:14 [ 28] [ 9] [D00000000] +19:36:14 [ 32] [ 6] [668899] +19:36:14 [ 35] [ 32] [6213544002082730=491212018273182] +19:36:14 [ 37] [ 12] [507901262073] +19:36:14 [ 41] [ 8] [03206001] +19:36:14 [ 42] [ 15] [APT ] +19:36:14 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:36:14 [ 49] [ 3] [418] +19:36:14 [ 52] [ 16] [78CF0425D3BE2A48] +19:36:14 ============================================================================ +19:36:14 + + +waiting on router queue for slot.... +19:36:14 Sending to : +19:36:14 ============================================================================ +19:36:14 ============================================================================ +19:36:14 Slot Id : <251> +19:36:14 Transaction Type : REQUEST +19:36:14 Received From : +19:36:14 ============================================================================ +19:36:14 FNo. Len. Field Value +19:36:14 ============================================================================ +19:36:14 [ 1] [ 4] [0200] +19:36:14 [ 2] [ 16] [6213544002082730] +19:36:14 [ 3] [ 6] [300000] +19:36:14 [ 4] [ 12] [000000000000] +19:36:14 [ 7] [ 10] [0320193403] +19:36:14 [ 11] [ 6] [956370] +19:36:14 [ 12] [ 6] [193403] +19:36:14 [ 13] [ 4] [0320] +19:36:14 [ 15] [ 4] [0320] +19:36:14 [ 18] [ 4] [6011] +19:36:14 [ 19] [ 3] [418] +19:36:14 [ 22] [ 3] [021] +19:36:14 [ 25] [ 2] [01] +19:36:14 [ 28] [ 9] [D00000000] +19:36:14 [ 32] [ 6] [668899] +19:36:14 [ 35] [ 32] [6213544002082730=491212018273182] +19:36:14 [ 37] [ 12] [507901262073] +19:36:14 [ 41] [ 8] [03206001] +19:36:14 [ 42] [ 15] [APT ] +19:36:14 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:36:14 [ 49] [ 3] [418] +19:36:14 [ 52] [ 16] [20F9066FA2B3A5A3] +19:36:14 ============================================================================ +19:36:14 + + +waiting on router queue for slot.... +19:36:14 Sending to : <0> +19:36:14 ============================================================================ +19:36:14 ============================================================================ +19:36:14 Slot Id : <251> +19:36:14 Transaction Type : RESPONSE +19:36:14 Received From : +19:36:14 ============================================================================ +19:36:14 FNo. Len. Field Value +19:36:14 ============================================================================ +19:36:14 [ 1] [ 4] [0210] +19:36:14 [ 2] [ 16] [6213544002082730] +19:36:14 [ 3] [ 6] [300000] +19:36:14 [ 4] [ 12] [000000000000] +19:36:14 [ 7] [ 10] [0320193403] +19:36:14 [ 11] [ 6] [956370] +19:36:14 [ 12] [ 6] [193403] +19:36:14 [ 13] [ 4] [0320] +19:36:14 [ 15] [ 4] [0320] +19:36:14 [ 18] [ 4] [6011] +19:36:14 [ 19] [ 3] [418] +19:36:14 [ 32] [ 6] [668899] +19:36:14 [ 35] [ 32] [6213544002082730=491212018273182] +19:36:14 [ 37] [ 12] [507901262073] +19:36:14 [ 38] [ 6] [232117] +19:36:14 [ 39] [ 2] [00] +19:36:14 [ 41] [ 8] [03206001] +19:36:14 [ 49] [ 3] [418] +19:36:14 [ 54] [ 40] [0001418C0000099255400002418C000009925540] +19:36:14 ============================================================================ +19:36:14 Sending to : +19:36:14 ============================================================================ +19:36:14 + + +waiting on router queue for slot.... +19:36:16 ============================================================================ +19:36:16 Slot Id : <251> +19:36:16 Transaction Type : RESPONSE +19:36:16 Received From : +19:36:16 ============================================================================ +19:36:16 FNo. Len. Field Value +19:36:16 ============================================================================ +19:36:16 [ 1] [ 4] [0210] +19:36:16 [ 2] [ 16] [6213544002082730] +19:36:16 [ 3] [ 6] [300000] +19:36:16 [ 4] [ 12] [000000000000] +19:36:16 [ 7] [ 10] [0320193403] +19:36:16 [ 11] [ 6] [956370] +19:36:16 [ 12] [ 6] [193403] +19:36:16 [ 13] [ 4] [0320] +19:36:16 [ 15] [ 4] [0320] +19:36:16 [ 18] [ 4] [6011] +19:36:16 [ 19] [ 3] [418] +19:36:16 [ 32] [ 6] [668899] +19:36:16 [ 35] [ 32] [6213544002082730=491212018273182] +19:36:16 [ 37] [ 12] [507901262073] +19:36:16 [ 38] [ 6] [232117] +19:36:16 [ 39] [ 2] [00] +19:36:16 [ 41] [ 8] [03206001] +19:36:16 [ 49] [ 3] [418] +19:36:16 [ 54] [ 40] [0001418C0000099255400002418C000009925540] +19:36:16 ============================================================================ +19:36:16 Calculate Source COMM Id = 4 +19:36:16 ============================================================================ +19:36:16 + + +waiting on router queue for slot.... +19:36:23 ============================================================================ +19:36:23 Slot Id : <248> +19:36:23 Transaction Type : REQUEST +19:36:23 Received From : +19:36:23 ============================================================================ +19:36:23 FNo. Len. Field Value +19:36:23 ============================================================================ +19:36:23 [ 1] [ 4] [0800] +19:36:23 [ 7] [ 10] [0320123412] +19:36:23 [ 11] [ 6] [091249] +19:36:23 [ 37] [ 12] [57919091249] +19:36:23 [ 70] [ 3] [301] +19:36:23 ============================================================================ +19:36:23 + + +waiting on router queue for slot.... +19:36:23 Sending to : +19:36:23 ============================================================================ +19:36:23 ============================================================================ +19:36:23 Slot Id : <248> +19:36:23 Transaction Type : RESPONSE +19:36:23 Received From : +19:36:23 ============================================================================ +19:36:23 FNo. Len. Field Value +19:36:23 ============================================================================ +19:36:23 [ 1] [ 4] [0810] +19:36:23 [ 7] [ 10] [0320123412] +19:36:23 [ 11] [ 6] [091249] +19:36:23 [ 37] [ 12] [579190912490] +19:36:23 [ 39] [ 2] [00] +19:36:23 [ 70] [ 3] [810] +19:36:23 ============================================================================ +19:36:23 Calculate Source COMM Id = 4 +19:36:23 ============================================================================ +19:36:23 + + +waiting on router queue for slot.... +19:36:24 ============================================================================ +19:36:24 Slot Id : <255> +19:36:24 Transaction Type : REQUEST +19:36:24 Received From : +19:36:24 ============================================================================ +19:36:24 FNo. Len. Field Value +19:36:24 ============================================================================ +19:36:24 [ 1] [ 4] [0800] +19:36:24 [ 7] [ 10] [0320123531] +19:36:24 [ 11] [ 6] [157989] +19:36:24 [ 70] [ 3] [301] +19:36:24 ============================================================================ +19:36:24 + + +waiting on router queue for slot.... +19:36:24 Sending to : +19:36:24 ============================================================================ +19:36:24 ============================================================================ +19:36:24 Slot Id : <255> +19:36:24 Transaction Type : RESPONSE +19:36:24 Received From : +19:36:24 ============================================================================ +19:36:24 FNo. Len. Field Value +19:36:24 ============================================================================ +19:36:24 [ 1] [ 4] [0810] +19:36:24 [ 7] [ 10] [0320123531] +19:36:24 [ 11] [ 6] [157989] +19:36:24 [ 39] [ 2] [00] +19:36:24 [ 70] [ 3] [301] +19:36:24 ============================================================================ +19:36:24 Calculate Source COMM Id = 2 +19:36:24 ============================================================================ +19:36:24 + + +waiting on router queue for slot.... +19:36:31 ============================================================================ +19:36:31 Slot Id : <243> +19:36:31 Transaction Type : REQUEST +19:36:31 Received From : +19:36:31 ============================================================================ +19:36:31 FNo. Len. Field Value +19:36:31 ============================================================================ +19:36:31 [ 1] [ 4] [0800] +19:36:31 [ 7] [ 10] [0321024820] +19:36:31 [ 11] [ 6] [194820] +19:36:31 [ 37] [ 12] [57919194820] +19:36:31 [ 70] [ 3] [301] +19:36:31 ============================================================================ +19:36:31 + + +waiting on router queue for slot.... +19:36:31 Sending to : +19:36:31 ============================================================================ +19:36:31 ============================================================================ +19:36:31 Slot Id : <243> +19:36:31 Transaction Type : RESPONSE +19:36:31 Received From : +19:36:31 ============================================================================ +19:36:31 FNo. Len. Field Value +19:36:31 ============================================================================ +19:36:31 [ 1] [ 4] [0810] +19:36:31 [ 7] [ 10] [0321024820] +19:36:31 [ 11] [ 6] [194820] +19:36:31 [ 37] [ 12] [579191948200] +19:36:31 [ 39] [ 2] [00] +19:36:31 [ 70] [ 3] [810] +19:36:31 ============================================================================ +19:36:31 Calculate Source COMM Id = 6 +19:36:31 ============================================================================ +19:36:31 + + +waiting on router queue for slot.... +19:36:34 ============================================================================ +19:36:34 Slot Id : <242> +19:36:34 Transaction Type : REQUEST +19:36:34 Received From : +19:36:34 ============================================================================ +19:36:34 FNo. Len. Field Value +19:36:34 ============================================================================ +19:36:34 [ 1] [ 4] [0800] +19:36:34 [ 7] [ 10] [0320123541] +19:36:34 [ 11] [ 6] [157990] +19:36:34 [ 70] [ 3] [301] +19:36:34 ============================================================================ +19:36:34 + + +waiting on router queue for slot.... +19:36:34 Sending to : +19:36:34 ============================================================================ +19:36:34 ============================================================================ +19:36:34 Slot Id : <242> +19:36:34 Transaction Type : RESPONSE +19:36:34 Received From : +19:36:34 ============================================================================ +19:36:34 FNo. Len. Field Value +19:36:34 ============================================================================ +19:36:34 [ 1] [ 4] [0810] +19:36:34 [ 7] [ 10] [0320123541] +19:36:34 [ 11] [ 6] [157990] +19:36:34 [ 39] [ 2] [00] +19:36:34 [ 70] [ 3] [301] +19:36:34 ============================================================================ +19:36:34 Calculate Source COMM Id = 2 +19:36:34 ============================================================================ +19:36:34 + + +waiting on router queue for slot.... +19:36:35 ============================================================================ +19:36:35 Slot Id : <250> +19:36:35 Transaction Type : REQUEST +19:36:35 Received From : +19:36:35 ============================================================================ +19:36:35 FNo. Len. Field Value +19:36:35 ============================================================================ +19:36:35 [ 1] [ 4] [0800] +19:36:35 [ 2] [ 5] [02531] +19:36:35 [ 3] [ 6] [579198] +19:36:35 [ 7] [ 10] [0320123635] +19:36:35 [ 11] [ 6] [807550] +19:36:35 [ 15] [ 10] [0320123635] +19:36:35 [ 37] [ 11] [57919807550] +19:36:35 [ 70] [ 3] [001] +19:36:35 ============================================================================ +19:36:35 + + +waiting on router queue for slot.... +19:36:35 ============================================================================ +19:36:35 Slot Id : <250> +19:36:35 Transaction Type : RESPONSE +19:36:35 Received From : +19:36:35 ============================================================================ +19:36:35 FNo. Len. Field Value +19:36:35 ============================================================================ +19:36:35 [ 1] [ 4] [0810] +19:36:35 [ 7] [ 10] [0320123635] +19:36:35 [ 11] [ 6] [807550] +19:36:35 [ 15] [ 4] [0320] +19:36:35 [ 37] [ 12] [57919807550] +19:36:35 [ 39] [ 2] [00] +19:36:35 [ 70] [ 3] [001] +19:36:35 ============================================================================ +19:36:35 Sending to : +19:36:35 ============================================================================ +19:36:35 + + +waiting on router queue for slot.... +19:36:46 ============================================================================ +19:36:46 Slot Id : <177> +19:36:46 Transaction Type : REQUEST +19:36:46 Received From : +19:36:46 ============================================================================ +19:36:46 FNo. Len. Field Value +19:36:46 ============================================================================ +19:36:46 [ 1] [ 4] [0200] +19:36:46 [ 2] [ 16] [6213544002082730] +19:36:46 [ 3] [ 6] [010000] +19:36:46 [ 4] [ 12] [000050000000] +19:36:46 [ 7] [ 10] [0320193435] +19:36:46 [ 11] [ 6] [956387] +19:36:46 [ 12] [ 6] [193435] +19:36:46 [ 13] [ 4] [0320] +19:36:46 [ 15] [ 4] [0320] +19:36:46 [ 18] [ 4] [6011] +19:36:46 [ 19] [ 3] [418] +19:36:46 [ 22] [ 3] [021] +19:36:46 [ 25] [ 2] [01] +19:36:46 [ 28] [ 9] [D00002000] +19:36:46 [ 32] [ 6] [668899] +19:36:46 [ 35] [ 32] [6213544002082730=491212018273182] +19:36:46 [ 37] [ 12] [507901262074] +19:36:46 [ 41] [ 8] [03206001] +19:36:46 [ 42] [ 15] [APT ] +19:36:46 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:36:46 [ 49] [ 3] [418] +19:36:46 [ 52] [ 16] [78CF0425D3BE2A48] +19:36:46 ============================================================================ +19:36:46 + + +waiting on router queue for slot.... +19:36:46 Sending to : +19:36:46 ============================================================================ +19:36:46 Sending to : +19:36:46 ============================================================================ +19:36:46 ============================================================================ +19:36:46 Slot Id : <177> +19:36:46 Transaction Type : REQUEST +19:36:46 Received From : +19:36:46 ============================================================================ +19:36:46 FNo. Len. Field Value +19:36:46 ============================================================================ +19:36:46 [ 1] [ 4] [0200] +19:36:46 [ 2] [ 16] [6213544002082730] +19:36:46 [ 3] [ 6] [010000] +19:36:46 [ 4] [ 12] [000050000000] +19:36:46 [ 7] [ 10] [0320193435] +19:36:46 [ 11] [ 6] [956387] +19:36:46 [ 12] [ 6] [193435] +19:36:46 [ 13] [ 4] [0320] +19:36:46 [ 15] [ 4] [0320] +19:36:46 [ 18] [ 4] [6011] +19:36:46 [ 19] [ 3] [418] +19:36:46 [ 22] [ 3] [021] +19:36:46 [ 25] [ 2] [01] +19:36:46 [ 28] [ 9] [D00002000] +19:36:46 [ 32] [ 6] [668899] +19:36:46 [ 35] [ 32] [6213544002082730=491212018273182] +19:36:46 [ 37] [ 12] [507901262074] +19:36:46 [ 41] [ 8] [03206001] +19:36:46 [ 42] [ 15] [APT ] +19:36:46 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:36:46 [ 49] [ 3] [418] +19:36:46 [ 52] [ 16] [78CF0425D3BE2A48] +19:36:46 ============================================================================ +19:36:46 + + +waiting on router queue for slot.... +19:36:46 Sending to : +19:36:46 ============================================================================ +19:36:46 ============================================================================ +19:36:46 Slot Id : <177> +19:36:46 Transaction Type : REQUEST +19:36:46 Received From : +19:36:46 ============================================================================ +19:36:46 FNo. Len. Field Value +19:36:46 ============================================================================ +19:36:46 [ 1] [ 4] [0200] +19:36:46 [ 2] [ 16] [6213544002082730] +19:36:46 [ 3] [ 6] [010000] +19:36:46 [ 4] [ 12] [000050000000] +19:36:46 [ 7] [ 10] [0320193435] +19:36:46 [ 11] [ 6] [956387] +19:36:46 [ 12] [ 6] [193435] +19:36:46 [ 13] [ 4] [0320] +19:36:46 [ 15] [ 4] [0320] +19:36:46 [ 18] [ 4] [6011] +19:36:46 [ 19] [ 3] [418] +19:36:46 [ 22] [ 3] [021] +19:36:46 [ 25] [ 2] [01] +19:36:46 [ 28] [ 9] [D00002000] +19:36:46 [ 32] [ 6] [668899] +19:36:46 [ 35] [ 32] [6213544002082730=491212018273182] +19:36:46 [ 37] [ 12] [507901262074] +19:36:46 [ 41] [ 8] [03206001] +19:36:46 [ 42] [ 15] [APT ] +19:36:46 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:36:46 [ 49] [ 3] [418] +19:36:46 [ 52] [ 16] [20F9066FA2B3A5A3] +19:36:46 ============================================================================ +19:36:46 + + +waiting on router queue for slot.... +19:36:46 Sending to : <0> +19:36:46 ============================================================================ +19:36:47 ============================================================================ +19:36:47 Slot Id : <177> +19:36:47 Transaction Type : RESPONSE +19:36:47 Received From : +19:36:47 ============================================================================ +19:36:47 FNo. Len. Field Value +19:36:47 ============================================================================ +19:36:47 [ 1] [ 4] [0210] +19:36:47 [ 2] [ 16] [6213544002082730] +19:36:47 [ 3] [ 6] [010000] +19:36:47 [ 4] [ 12] [000050000000] +19:36:47 [ 7] [ 10] [0320193435] +19:36:47 [ 11] [ 6] [956387] +19:36:47 [ 12] [ 6] [193435] +19:36:47 [ 13] [ 4] [0320] +19:36:47 [ 15] [ 4] [0320] +19:36:47 [ 18] [ 4] [6011] +19:36:47 [ 19] [ 3] [418] +19:36:47 [ 32] [ 6] [668899] +19:36:47 [ 35] [ 32] [6213544002082730=491212018273182] +19:36:47 [ 37] [ 12] [507901262074] +19:36:47 [ 38] [ 6] [956387] +19:36:47 [ 39] [ 2] [51] +19:36:47 [ 41] [ 8] [03206001] +19:36:47 [ 49] [ 3] [418] +19:36:47 [ 54] [ 40] [0001418C0000099255400002418C000009925540] +19:36:47 ============================================================================ +19:36:47 Sending to : +19:36:47 ============================================================================ +19:36:47 + + +waiting on router queue for slot.... +19:36:48 ============================================================================ +19:36:48 Slot Id : <177> +19:36:48 Transaction Type : RESPONSE +19:36:48 Received From : +19:36:48 ============================================================================ +19:36:48 FNo. Len. Field Value +19:36:48 ============================================================================ +19:36:48 [ 1] [ 4] [0210] +19:36:48 [ 2] [ 16] [6213544002082730] +19:36:48 [ 3] [ 6] [010000] +19:36:48 [ 4] [ 12] [000050000000] +19:36:48 [ 7] [ 10] [0320193435] +19:36:48 [ 11] [ 6] [956387] +19:36:48 [ 12] [ 6] [193435] +19:36:48 [ 13] [ 4] [0320] +19:36:48 [ 15] [ 4] [0320] +19:36:48 [ 18] [ 4] [6011] +19:36:48 [ 19] [ 3] [418] +19:36:48 [ 32] [ 6] [668899] +19:36:48 [ 35] [ 32] [6213544002082730=491212018273182] +19:36:48 [ 37] [ 12] [507901262074] +19:36:48 [ 38] [ 6] [956387] +19:36:48 [ 39] [ 2] [51] +19:36:48 [ 41] [ 8] [03206001] +19:36:48 [ 49] [ 3] [418] +19:36:48 [ 54] [ 40] [0001418C0000099255400002418C000009925540] +19:36:48 ============================================================================ +19:36:48 Calculate Source COMM Id = 4 +19:36:48 ============================================================================ +19:36:48 + + +waiting on router queue for slot.... +19:36:50 ============================================================================ +19:36:50 Slot Id : <226> +19:36:50 Transaction Type : REQUEST +19:36:50 Received From : +19:36:50 ============================================================================ +19:36:50 FNo. Len. Field Value +19:36:50 ============================================================================ +19:36:50 [ 1] [ 4] [0800] +19:36:50 [ 7] [ 10] [0320123557] +19:36:50 [ 11] [ 6] [157991] +19:36:50 [ 70] [ 3] [301] +19:36:50 ============================================================================ +19:36:50 + + +waiting on router queue for slot.... +19:36:50 Sending to : +19:36:50 ============================================================================ +19:36:50 ============================================================================ +19:36:50 Slot Id : <226> +19:36:50 Transaction Type : RESPONSE +19:36:50 Received From : +19:36:50 ============================================================================ +19:36:50 FNo. Len. Field Value +19:36:50 ============================================================================ +19:36:50 [ 1] [ 4] [0810] +19:36:50 [ 7] [ 10] [0320123557] +19:36:50 [ 11] [ 6] [157991] +19:36:50 [ 39] [ 2] [00] +19:36:50 [ 70] [ 3] [301] +19:36:50 ============================================================================ +19:36:50 Calculate Source COMM Id = 2 +19:36:50 ============================================================================ +19:36:50 + + +waiting on router queue for slot.... +19:37:00 ============================================================================ +19:37:00 Slot Id : <233> +19:37:00 Transaction Type : REQUEST +19:37:00 Received From : +19:37:00 ============================================================================ +19:37:00 FNo. Len. Field Value +19:37:00 ============================================================================ +19:37:00 [ 1] [ 4] [0200] +19:37:00 [ 2] [ 16] [6213544002082730] +19:37:00 [ 3] [ 6] [301000] +19:37:00 [ 4] [ 12] [000000000000] +19:37:00 [ 7] [ 10] [0320193449] +19:37:00 [ 11] [ 6] [956392] +19:37:00 [ 12] [ 6] [193449] +19:37:00 [ 13] [ 4] [0320] +19:37:00 [ 15] [ 4] [0320] +19:37:00 [ 18] [ 4] [6011] +19:37:00 [ 19] [ 3] [418] +19:37:00 [ 22] [ 3] [021] +19:37:00 [ 25] [ 2] [01] +19:37:00 [ 28] [ 9] [D00000000] +19:37:00 [ 32] [ 6] [668899] +19:37:00 [ 35] [ 32] [6213544002082730=491212018273182] +19:37:00 [ 37] [ 12] [507901262075] +19:37:00 [ 41] [ 8] [03206001] +19:37:00 [ 42] [ 15] [APT ] +19:37:00 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:37:00 [ 49] [ 3] [418] +19:37:00 [ 52] [ 16] [78CF0425D3BE2A48] +19:37:00 ============================================================================ +19:37:00 + + +waiting on router queue for slot.... +19:37:00 Sending to : +19:37:00 ============================================================================ +19:37:00 Sending to : +19:37:00 ============================================================================ +19:37:00 ============================================================================ +19:37:00 Slot Id : <233> +19:37:00 Transaction Type : REQUEST +19:37:00 Received From : +19:37:00 ============================================================================ +19:37:00 FNo. Len. Field Value +19:37:00 ============================================================================ +19:37:00 [ 1] [ 4] [0200] +19:37:00 [ 2] [ 16] [6213544002082730] +19:37:00 [ 3] [ 6] [301000] +19:37:00 [ 4] [ 12] [000000000000] +19:37:00 [ 7] [ 10] [0320193449] +19:37:00 [ 11] [ 6] [956392] +19:37:00 [ 12] [ 6] [193449] +19:37:00 [ 13] [ 4] [0320] +19:37:00 [ 15] [ 4] [0320] +19:37:00 [ 18] [ 4] [6011] +19:37:00 [ 19] [ 3] [418] +19:37:00 [ 22] [ 3] [021] +19:37:00 [ 25] [ 2] [01] +19:37:00 [ 28] [ 9] [D00000000] +19:37:00 [ 32] [ 6] [668899] +19:37:00 [ 35] [ 32] [6213544002082730=491212018273182] +19:37:00 [ 37] [ 12] [507901262075] +19:37:00 [ 41] [ 8] [03206001] +19:37:00 [ 42] [ 15] [APT ] +19:37:00 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:37:00 [ 49] [ 3] [418] +19:37:00 [ 52] [ 16] [78CF0425D3BE2A48] +19:37:00 ============================================================================ +19:37:00 + + +waiting on router queue for slot.... +19:37:00 Sending to : +19:37:00 ============================================================================ +19:37:00 ============================================================================ +19:37:00 Slot Id : <233> +19:37:00 Transaction Type : REQUEST +19:37:00 Received From : +19:37:00 ============================================================================ +19:37:00 FNo. Len. Field Value +19:37:00 ============================================================================ +19:37:00 [ 1] [ 4] [0200] +19:37:00 [ 2] [ 16] [6213544002082730] +19:37:00 [ 3] [ 6] [301000] +19:37:00 [ 4] [ 12] [000000000000] +19:37:00 [ 7] [ 10] [0320193449] +19:37:00 [ 11] [ 6] [956392] +19:37:00 [ 12] [ 6] [193449] +19:37:00 [ 13] [ 4] [0320] +19:37:00 [ 15] [ 4] [0320] +19:37:00 [ 18] [ 4] [6011] +19:37:00 [ 19] [ 3] [418] +19:37:00 [ 22] [ 3] [021] +19:37:00 [ 25] [ 2] [01] +19:37:00 [ 28] [ 9] [D00000000] +19:37:00 [ 32] [ 6] [668899] +19:37:00 [ 35] [ 32] [6213544002082730=491212018273182] +19:37:00 [ 37] [ 12] [507901262075] +19:37:00 [ 41] [ 8] [03206001] +19:37:00 [ 42] [ 15] [APT ] +19:37:00 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:37:00 [ 49] [ 3] [418] +19:37:00 [ 52] [ 16] [20F9066FA2B3A5A3] +19:37:00 ============================================================================ +19:37:00 + + +waiting on router queue for slot.... +19:37:00 Sending to : <0> +19:37:00 ============================================================================ +19:37:01 ============================================================================ +19:37:01 Slot Id : <233> +19:37:01 Transaction Type : RESPONSE +19:37:01 Received From : +19:37:01 ============================================================================ +19:37:01 FNo. Len. Field Value +19:37:01 ============================================================================ +19:37:01 [ 1] [ 4] [0210] +19:37:01 [ 2] [ 16] [6213544002082730] +19:37:01 [ 3] [ 6] [301000] +19:37:01 [ 4] [ 12] [000000000000] +19:37:01 [ 7] [ 10] [0320193449] +19:37:01 [ 11] [ 6] [956392] +19:37:01 [ 12] [ 6] [193449] +19:37:01 [ 13] [ 4] [0320] +19:37:01 [ 15] [ 4] [0320] +19:37:01 [ 18] [ 4] [6011] +19:37:01 [ 19] [ 3] [418] +19:37:01 [ 32] [ 6] [668899] +19:37:01 [ 35] [ 32] [6213544002082730=491212018273182] +19:37:01 [ 37] [ 12] [507901262075] +19:37:01 [ 38] [ 6] [485764] +19:37:01 [ 39] [ 2] [00] +19:37:01 [ 41] [ 8] [03206001] +19:37:01 [ 49] [ 3] [418] +19:37:01 [ 54] [ 40] [1001418C0000099255401002418C000009925540] +19:37:01 ============================================================================ +19:37:01 Sending to : +19:37:01 ============================================================================ +19:37:01 + + +waiting on router queue for slot.... +19:37:01 ============================================================================ +19:37:01 Slot Id : <237> +19:37:01 Transaction Type : REQUEST +19:37:01 Received From : +19:37:01 ============================================================================ +19:37:01 FNo. Len. Field Value +19:37:01 ============================================================================ +19:37:01 [ 1] [ 4] [0800] +19:37:01 [ 7] [ 10] [0320123608] +19:37:01 [ 11] [ 6] [157992] +19:37:01 [ 70] [ 3] [301] +19:37:01 ============================================================================ +19:37:01 + + +waiting on router queue for slot.... +19:37:01 Sending to : +19:37:01 ============================================================================ +19:37:01 ============================================================================ +19:37:01 Slot Id : <237> +19:37:01 Transaction Type : RESPONSE +19:37:01 Received From : +19:37:01 ============================================================================ +19:37:01 FNo. Len. Field Value +19:37:01 ============================================================================ +19:37:01 [ 1] [ 4] [0810] +19:37:01 [ 7] [ 10] [0320123608] +19:37:01 [ 11] [ 6] [157992] +19:37:01 [ 39] [ 2] [00] +19:37:01 [ 70] [ 3] [301] +19:37:01 ============================================================================ +19:37:01 Calculate Source COMM Id = 2 +19:37:01 ============================================================================ +19:37:01 + + +waiting on router queue for slot.... +19:37:02 ============================================================================ +19:37:02 Slot Id : <233> +19:37:02 Transaction Type : RESPONSE +19:37:02 Received From : +19:37:02 ============================================================================ +19:37:02 FNo. Len. Field Value +19:37:02 ============================================================================ +19:37:02 [ 1] [ 4] [0210] +19:37:02 [ 2] [ 16] [6213544002082730] +19:37:02 [ 3] [ 6] [301000] +19:37:02 [ 4] [ 12] [000000000000] +19:37:02 [ 7] [ 10] [0320193449] +19:37:02 [ 11] [ 6] [956392] +19:37:02 [ 12] [ 6] [193449] +19:37:02 [ 13] [ 4] [0320] +19:37:02 [ 15] [ 4] [0320] +19:37:02 [ 18] [ 4] [6011] +19:37:02 [ 19] [ 3] [418] +19:37:02 [ 32] [ 6] [668899] +19:37:02 [ 35] [ 32] [6213544002082730=491212018273182] +19:37:02 [ 37] [ 12] [507901262075] +19:37:02 [ 38] [ 6] [485764] +19:37:02 [ 39] [ 2] [00] +19:37:02 [ 41] [ 8] [03206001] +19:37:02 [ 49] [ 3] [418] +19:37:02 [ 54] [ 40] [1001418C0000099255401002418C000009925540] +19:37:02 ============================================================================ +19:37:02 Calculate Source COMM Id = 4 +19:37:02 ============================================================================ +19:37:02 + + +waiting on router queue for slot.... +19:37:08 ============================================================================ +19:37:08 Slot Id : <260> +19:37:08 Transaction Type : REQUEST +19:37:08 Received From : +19:37:08 ============================================================================ +19:37:08 FNo. Len. Field Value +19:37:08 ============================================================================ +19:37:08 [ 1] [ 4] [0200] +19:37:08 [ 2] [ 16] [6213541000519374] +19:37:08 [ 3] [ 6] [010000] +19:37:08 [ 4] [ 12] [000010000000] +19:37:08 [ 7] [ 10] [0320194453] +19:37:08 [ 11] [ 6] [306163] +19:37:08 [ 12] [ 6] [194453] +19:37:08 [ 13] [ 4] [0320] +19:37:08 [ 14] [ 4] [4912] +19:37:08 [ 15] [ 4] [0320] +19:37:08 [ 18] [ 4] [6011] +19:37:08 [ 22] [ 3] [900] +19:37:08 [ 25] [ 2] [02] +19:37:08 [ 28] [ 9] [D00002000] +19:37:08 [ 32] [ 6] [220699] +19:37:08 [ 35] [ 32] [6213541000519374=491212011937365] +19:37:08 [ 37] [ 12] [507900079362] +19:37:08 [ 41] [ 8] [01000700] +19:37:08 [ 42] [ 15] [APTRA ] +19:37:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:37:08 [ 49] [ 3] [418] +19:37:08 [ 52] [ 16] [A315D0E4F3069B1C] +19:37:08 ============================================================================ +19:37:08 + + +waiting on router queue for slot.... +19:37:08 Sending to : +19:37:08 ============================================================================ +19:37:08 Sending to : +19:37:08 ============================================================================ +19:37:08 ============================================================================ +19:37:08 Slot Id : <260> +19:37:08 Transaction Type : REQUEST +19:37:08 Received From : +19:37:08 ============================================================================ +19:37:08 FNo. Len. Field Value +19:37:08 ============================================================================ +19:37:08 [ 1] [ 4] [0200] +19:37:08 [ 2] [ 16] [6213541000519374] +19:37:08 [ 3] [ 6] [010000] +19:37:08 [ 4] [ 12] [000010000000] +19:37:08 [ 7] [ 10] [0320194453] +19:37:08 [ 11] [ 6] [306163] +19:37:08 [ 12] [ 6] [194453] +19:37:08 [ 13] [ 4] [0320] +19:37:08 [ 14] [ 4] [4912] +19:37:08 [ 15] [ 4] [0320] +19:37:08 [ 18] [ 4] [6011] +19:37:08 [ 22] [ 3] [900] +19:37:08 [ 25] [ 2] [02] +19:37:08 [ 28] [ 9] [D00002000] +19:37:08 [ 32] [ 6] [220699] +19:37:08 [ 35] [ 32] [6213541000519374=491212011937365] +19:37:08 [ 37] [ 12] [507900079362] +19:37:08 [ 41] [ 8] [01000700] +19:37:08 [ 42] [ 15] [APTRA ] +19:37:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:37:08 [ 49] [ 3] [418] +19:37:08 [ 52] [ 16] [A315D0E4F3069B1C] +19:37:08 ============================================================================ +19:37:08 + + +waiting on router queue for slot.... +19:37:08 Sending to : +19:37:08 ============================================================================ +19:37:08 ============================================================================ +19:37:08 Slot Id : <260> +19:37:08 Transaction Type : REQUEST +19:37:08 Received From : +19:37:08 ============================================================================ +19:37:08 FNo. Len. Field Value +19:37:08 ============================================================================ +19:37:08 [ 1] [ 4] [0200] +19:37:08 [ 2] [ 16] [6213541000519374] +19:37:08 [ 3] [ 6] [010000] +19:37:08 [ 4] [ 12] [000010000000] +19:37:08 [ 7] [ 10] [0320194453] +19:37:08 [ 11] [ 6] [306163] +19:37:08 [ 12] [ 6] [194453] +19:37:08 [ 13] [ 4] [0320] +19:37:08 [ 14] [ 4] [4912] +19:37:08 [ 15] [ 4] [0320] +19:37:08 [ 18] [ 4] [6011] +19:37:08 [ 22] [ 3] [900] +19:37:08 [ 25] [ 2] [02] +19:37:08 [ 28] [ 9] [D00002000] +19:37:08 [ 32] [ 6] [220699] +19:37:08 [ 35] [ 32] [6213541000519374=491212011937365] +19:37:08 [ 37] [ 12] [507900079362] +19:37:08 [ 41] [ 8] [01000700] +19:37:08 [ 42] [ 15] [APTRA ] +19:37:08 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:37:08 [ 49] [ 3] [418] +19:37:08 [ 52] [ 16] [B0E70B5E98C30E23] +19:37:08 ============================================================================ +19:37:08 + + +waiting on router queue for slot.... +19:37:08 Sending to : <0> +19:37:08 ============================================================================ +19:37:09 ============================================================================ +19:37:09 Slot Id : <260> +19:37:09 Transaction Type : RESPONSE +19:37:09 Received From : +19:37:09 ============================================================================ +19:37:09 FNo. Len. Field Value +19:37:09 ============================================================================ +19:37:09 [ 1] [ 4] [0210] +19:37:09 [ 2] [ 16] [6213541000519374] +19:37:09 [ 3] [ 6] [010000] +19:37:09 [ 4] [ 12] [000010000000] +19:37:09 [ 7] [ 10] [0320194453] +19:37:09 [ 11] [ 6] [306163] +19:37:09 [ 12] [ 6] [194453] +19:37:09 [ 13] [ 4] [0320] +19:37:09 [ 15] [ 4] [0320] +19:37:09 [ 18] [ 4] [6011] +19:37:09 [ 32] [ 6] [220699] +19:37:09 [ 35] [ 32] [6213541000519374=491212011937365] +19:37:09 [ 37] [ 12] [507900079362] +19:37:09 [ 38] [ 6] [119556] +19:37:09 [ 39] [ 2] [00] +19:37:09 [ 41] [ 8] [01000700] +19:37:09 [ 49] [ 3] [418] +19:37:09 [ 54] [ 40] [0001418C0000058478640002418C000005847864] +19:37:09 ============================================================================ +19:37:09 Sending to : +19:37:09 ============================================================================ +19:37:09 + + +waiting on router queue for slot.... +19:37:10 ============================================================================ +19:37:10 Slot Id : <260> +19:37:10 Transaction Type : RESPONSE +19:37:10 Received From : +19:37:10 ============================================================================ +19:37:10 FNo. Len. Field Value +19:37:10 ============================================================================ +19:37:10 [ 1] [ 4] [0210] +19:37:10 [ 2] [ 16] [6213541000519374] +19:37:10 [ 3] [ 6] [010000] +19:37:10 [ 4] [ 12] [000010000000] +19:37:10 [ 7] [ 10] [0320194453] +19:37:10 [ 11] [ 6] [306163] +19:37:10 [ 12] [ 6] [194453] +19:37:10 [ 13] [ 4] [0320] +19:37:10 [ 15] [ 4] [0320] +19:37:10 [ 18] [ 4] [6011] +19:37:10 [ 32] [ 6] [220699] +19:37:10 [ 35] [ 32] [6213541000519374=491212011937365] +19:37:10 [ 37] [ 12] [507900079362] +19:37:10 [ 38] [ 6] [119556] +19:37:10 [ 39] [ 2] [00] +19:37:10 [ 41] [ 8] [01000700] +19:37:10 [ 49] [ 3] [418] +19:37:10 [ 54] [ 40] [0001418C0000058478640002418C000005847864] +19:37:10 ============================================================================ +19:37:10 Calculate Source COMM Id = 1 +19:37:10 ============================================================================ +19:37:10 + + +waiting on router queue for slot.... +19:37:13 ============================================================================ +19:37:13 Slot Id : <234> +19:37:13 Transaction Type : REQUEST +19:37:13 Received From : +19:37:13 ============================================================================ +19:37:13 FNo. Len. Field Value +19:37:13 ============================================================================ +19:37:13 [ 1] [ 4] [0200] +19:37:13 [ 2] [ 16] [6213544002082730] +19:37:13 [ 3] [ 6] [301000] +19:37:13 [ 4] [ 12] [000000000000] +19:37:13 [ 7] [ 10] [0320193502] +19:37:13 [ 11] [ 6] [956395] +19:37:13 [ 12] [ 6] [193502] +19:37:13 [ 13] [ 4] [0320] +19:37:13 [ 15] [ 4] [0320] +19:37:13 [ 18] [ 4] [6011] +19:37:13 [ 19] [ 3] [418] +19:37:13 [ 22] [ 3] [021] +19:37:13 [ 25] [ 2] [01] +19:37:13 [ 28] [ 9] [D00000000] +19:37:13 [ 32] [ 6] [668899] +19:37:13 [ 35] [ 32] [6213544002082730=491212018273182] +19:37:13 [ 37] [ 12] [507901262076] +19:37:13 [ 41] [ 8] [03206001] +19:37:13 [ 42] [ 15] [APT ] +19:37:13 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:37:13 [ 49] [ 3] [418] +19:37:13 [ 52] [ 16] [78CF0425D3BE2A48] +19:37:13 ============================================================================ +19:37:13 + + +waiting on router queue for slot.... +19:37:13 Sending to : +19:37:13 ============================================================================ +19:37:13 Sending to : +19:37:13 ============================================================================ +19:37:13 ============================================================================ +19:37:13 Slot Id : <234> +19:37:13 Transaction Type : REQUEST +19:37:13 Received From : +19:37:13 ============================================================================ +19:37:13 FNo. Len. Field Value +19:37:13 ============================================================================ +19:37:13 [ 1] [ 4] [0200] +19:37:13 [ 2] [ 16] [6213544002082730] +19:37:13 [ 3] [ 6] [301000] +19:37:13 [ 4] [ 12] [000000000000] +19:37:13 [ 7] [ 10] [0320193502] +19:37:13 [ 11] [ 6] [956395] +19:37:13 [ 12] [ 6] [193502] +19:37:13 [ 13] [ 4] [0320] +19:37:13 [ 15] [ 4] [0320] +19:37:13 [ 18] [ 4] [6011] +19:37:13 [ 19] [ 3] [418] +19:37:13 [ 22] [ 3] [021] +19:37:13 [ 25] [ 2] [01] +19:37:13 [ 28] [ 9] [D00000000] +19:37:13 [ 32] [ 6] [668899] +19:37:13 [ 35] [ 32] [6213544002082730=491212018273182] +19:37:13 [ 37] [ 12] [507901262076] +19:37:13 [ 41] [ 8] [03206001] +19:37:13 [ 42] [ 15] [APT ] +19:37:13 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:37:13 [ 49] [ 3] [418] +19:37:13 [ 52] [ 16] [78CF0425D3BE2A48] +19:37:13 ============================================================================ +19:37:13 + + +waiting on router queue for slot.... +19:37:13 Sending to : +19:37:13 ============================================================================ +19:37:13 ============================================================================ +19:37:13 Slot Id : <234> +19:37:13 Transaction Type : REQUEST +19:37:13 Received From : +19:37:13 ============================================================================ +19:37:13 FNo. Len. Field Value +19:37:13 ============================================================================ +19:37:13 [ 1] [ 4] [0200] +19:37:13 [ 2] [ 16] [6213544002082730] +19:37:13 [ 3] [ 6] [301000] +19:37:13 [ 4] [ 12] [000000000000] +19:37:13 [ 7] [ 10] [0320193502] +19:37:13 [ 11] [ 6] [956395] +19:37:13 [ 12] [ 6] [193502] +19:37:13 [ 13] [ 4] [0320] +19:37:13 [ 15] [ 4] [0320] +19:37:13 [ 18] [ 4] [6011] +19:37:13 [ 19] [ 3] [418] +19:37:13 [ 22] [ 3] [021] +19:37:13 [ 25] [ 2] [01] +19:37:13 [ 28] [ 9] [D00000000] +19:37:13 [ 32] [ 6] [668899] +19:37:13 [ 35] [ 32] [6213544002082730=491212018273182] +19:37:13 [ 37] [ 12] [507901262076] +19:37:13 [ 41] [ 8] [03206001] +19:37:13 [ 42] [ 15] [APT ] +19:37:13 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:37:13 [ 49] [ 3] [418] +19:37:13 [ 52] [ 16] [20F9066FA2B3A5A3] +19:37:13 ============================================================================ +19:37:13 + + +waiting on router queue for slot.... +19:37:13 Sending to : <0> +19:37:13 ============================================================================ +19:37:14 ============================================================================ +19:37:14 Slot Id : <234> +19:37:14 Transaction Type : RESPONSE +19:37:14 Received From : +19:37:14 ============================================================================ +19:37:14 FNo. Len. Field Value +19:37:14 ============================================================================ +19:37:14 [ 1] [ 4] [0210] +19:37:14 [ 2] [ 16] [6213544002082730] +19:37:14 [ 3] [ 6] [301000] +19:37:14 [ 4] [ 12] [000000000000] +19:37:14 [ 7] [ 10] [0320193502] +19:37:14 [ 11] [ 6] [956395] +19:37:14 [ 12] [ 6] [193502] +19:37:14 [ 13] [ 4] [0320] +19:37:14 [ 15] [ 4] [0320] +19:37:14 [ 18] [ 4] [6011] +19:37:14 [ 19] [ 3] [418] +19:37:14 [ 32] [ 6] [668899] +19:37:14 [ 35] [ 32] [6213544002082730=491212018273182] +19:37:14 [ 37] [ 12] [507901262076] +19:37:14 [ 38] [ 6] [537363] +19:37:14 [ 39] [ 2] [00] +19:37:14 [ 41] [ 8] [03206001] +19:37:14 [ 49] [ 3] [418] +19:37:14 [ 54] [ 40] [1001418C0000099255401002418C000009925540] +19:37:14 ============================================================================ +19:37:14 Sending to : +19:37:14 ============================================================================ +19:37:14 + + +waiting on router queue for slot.... +19:37:15 ============================================================================ +19:37:15 Slot Id : <234> +19:37:15 Transaction Type : RESPONSE +19:37:15 Received From : +19:37:15 ============================================================================ +19:37:15 FNo. Len. Field Value +19:37:15 ============================================================================ +19:37:15 [ 1] [ 4] [0210] +19:37:15 [ 2] [ 16] [6213544002082730] +19:37:15 [ 3] [ 6] [301000] +19:37:15 [ 4] [ 12] [000000000000] +19:37:15 [ 7] [ 10] [0320193502] +19:37:15 [ 11] [ 6] [956395] +19:37:15 [ 12] [ 6] [193502] +19:37:15 [ 13] [ 4] [0320] +19:37:15 [ 15] [ 4] [0320] +19:37:15 [ 18] [ 4] [6011] +19:37:15 [ 19] [ 3] [418] +19:37:15 [ 32] [ 6] [668899] +19:37:15 [ 35] [ 32] [6213544002082730=491212018273182] +19:37:15 [ 37] [ 12] [507901262076] +19:37:15 [ 38] [ 6] [537363] +19:37:15 [ 39] [ 2] [00] +19:37:15 [ 41] [ 8] [03206001] +19:37:15 [ 49] [ 3] [418] +19:37:15 [ 54] [ 40] [1001418C0000099255401002418C000009925540] +19:37:15 ============================================================================ +19:37:15 Calculate Source COMM Id = 4 +19:37:15 ============================================================================ +19:37:15 + + +waiting on router queue for slot.... +19:37:16 ============================================================================ +19:37:16 Slot Id : <253> +19:37:16 Transaction Type : REQUEST +19:37:16 Received From : +19:37:16 ============================================================================ +19:37:16 FNo. Len. Field Value +19:37:16 ============================================================================ +19:37:16 [ 1] [ 4] [0800] +19:37:16 [ 7] [ 10] [0320123623] +19:37:16 [ 11] [ 6] [157993] +19:37:16 [ 70] [ 3] [301] +19:37:16 ============================================================================ +19:37:16 + + +waiting on router queue for slot.... +19:37:16 Sending to : +19:37:16 ============================================================================ +19:37:16 ============================================================================ +19:37:16 Slot Id : <253> +19:37:16 Transaction Type : RESPONSE +19:37:16 Received From : +19:37:16 ============================================================================ +19:37:16 FNo. Len. Field Value +19:37:16 ============================================================================ +19:37:16 [ 1] [ 4] [0810] +19:37:16 [ 7] [ 10] [0320123623] +19:37:16 [ 11] [ 6] [157993] +19:37:16 [ 39] [ 2] [00] +19:37:16 [ 70] [ 3] [301] +19:37:16 ============================================================================ +19:37:16 Calculate Source COMM Id = 2 +19:37:16 ============================================================================ +19:37:16 + + +waiting on router queue for slot.... +19:37:32 ============================================================================ +19:37:32 Slot Id : <238> +19:37:32 Transaction Type : REQUEST +19:37:32 Received From : +19:37:32 ============================================================================ +19:37:32 FNo. Len. Field Value +19:37:32 ============================================================================ +19:37:32 [ 1] [ 4] [0800] +19:37:32 [ 7] [ 10] [0320123638] +19:37:32 [ 11] [ 6] [157994] +19:37:32 [ 70] [ 3] [301] +19:37:32 ============================================================================ +19:37:32 + + +waiting on router queue for slot.... +19:37:32 Sending to : +19:37:32 ============================================================================ +19:37:32 ============================================================================ +19:37:32 Slot Id : <238> +19:37:32 Transaction Type : RESPONSE +19:37:32 Received From : +19:37:32 ============================================================================ +19:37:32 FNo. Len. Field Value +19:37:32 ============================================================================ +19:37:32 [ 1] [ 4] [0810] +19:37:32 [ 7] [ 10] [0320123638] +19:37:32 [ 11] [ 6] [157994] +19:37:32 [ 39] [ 2] [00] +19:37:32 [ 70] [ 3] [301] +19:37:32 ============================================================================ +19:37:32 Calculate Source COMM Id = 2 +19:37:32 ============================================================================ +19:37:32 + + +waiting on router queue for slot.... +19:37:36 ============================================================================ +19:37:36 Slot Id : <200> +19:37:36 Transaction Type : REQUEST +19:37:36 Received From : +19:37:36 ============================================================================ +19:37:36 FNo. Len. Field Value +19:37:36 ============================================================================ +19:37:36 [ 1] [ 4] [0800] +19:37:36 [ 7] [ 10] [0321024925] +19:37:36 [ 11] [ 6] [194925] +19:37:36 [ 37] [ 12] [57919194925] +19:37:36 [ 70] [ 3] [301] +19:37:36 ============================================================================ +19:37:36 + + +waiting on router queue for slot.... +19:37:36 Sending to : +19:37:36 ============================================================================ +19:37:36 ============================================================================ +19:37:36 Slot Id : <200> +19:37:36 Transaction Type : RESPONSE +19:37:36 Received From : +19:37:36 ============================================================================ +19:37:36 FNo. Len. Field Value +19:37:36 ============================================================================ +19:37:36 [ 1] [ 4] [0810] +19:37:36 [ 7] [ 10] [0321024925] +19:37:36 [ 11] [ 6] [194925] +19:37:36 [ 37] [ 12] [579191949250] +19:37:36 [ 39] [ 2] [00] +19:37:36 [ 70] [ 3] [810] +19:37:36 ============================================================================ +19:37:36 Calculate Source COMM Id = 6 +19:37:36 ============================================================================ +19:37:36 + + +waiting on router queue for slot.... +19:37:37 ============================================================================ +19:37:37 Slot Id : <216> +19:37:37 Transaction Type : REQUEST +19:37:37 Received From : +19:37:37 ============================================================================ +19:37:37 FNo. Len. Field Value +19:37:37 ============================================================================ +19:37:37 [ 1] [ 4] [0800] +19:37:37 [ 2] [ 5] [02531] +19:37:37 [ 3] [ 6] [579198] +19:37:37 [ 7] [ 10] [0320123737] +19:37:37 [ 11] [ 6] [807551] +19:37:37 [ 15] [ 10] [0320123737] +19:37:37 [ 37] [ 11] [57919807551] +19:37:37 [ 70] [ 3] [001] +19:37:37 ============================================================================ +19:37:37 + + +waiting on router queue for slot.... +19:37:37 ============================================================================ +19:37:37 Slot Id : <216> +19:37:37 Transaction Type : RESPONSE +19:37:37 Received From : +19:37:37 ============================================================================ +19:37:37 FNo. Len. Field Value +19:37:37 ============================================================================ +19:37:37 [ 1] [ 4] [0810] +19:37:37 [ 7] [ 10] [0320123737] +19:37:37 [ 11] [ 6] [807551] +19:37:37 [ 15] [ 4] [0320] +19:37:37 [ 37] [ 12] [57919807551] +19:37:37 [ 39] [ 2] [00] +19:37:37 [ 70] [ 3] [001] +19:37:37 ============================================================================ +19:37:37 Sending to : +19:37:37 ============================================================================ +19:37:37 + + +waiting on router queue for slot.... +19:37:43 ============================================================================ +19:37:43 Slot Id : <259> +19:37:43 Transaction Type : REQUEST +19:37:43 Received From : +19:37:43 ============================================================================ +19:37:43 FNo. Len. Field Value +19:37:43 ============================================================================ +19:37:43 [ 1] [ 4] [0800] +19:37:43 [ 7] [ 10] [0320123650] +19:37:43 [ 11] [ 6] [157995] +19:37:43 [ 70] [ 3] [301] +19:37:43 ============================================================================ +19:37:43 + + +waiting on router queue for slot.... +19:37:43 Sending to : +19:37:43 ============================================================================ +19:37:43 ============================================================================ +19:37:43 Slot Id : <259> +19:37:43 Transaction Type : RESPONSE +19:37:43 Received From : +19:37:43 ============================================================================ +19:37:43 FNo. Len. Field Value +19:37:43 ============================================================================ +19:37:43 [ 1] [ 4] [0810] +19:37:43 [ 7] [ 10] [0320123650] +19:37:43 [ 11] [ 6] [157995] +19:37:43 [ 39] [ 2] [00] +19:37:43 [ 70] [ 3] [301] +19:37:43 ============================================================================ +19:37:43 Calculate Source COMM Id = 2 +19:37:43 ============================================================================ +19:37:43 + + +waiting on router queue for slot.... +19:37:58 ============================================================================ +19:37:58 Slot Id : <249> +19:37:58 Transaction Type : REQUEST +19:37:58 Received From : +19:37:58 ============================================================================ +19:37:58 FNo. Len. Field Value +19:37:58 ============================================================================ +19:37:58 [ 1] [ 4] [0800] +19:37:58 [ 7] [ 10] [0320123705] +19:37:58 [ 11] [ 6] [157996] +19:37:58 [ 70] [ 3] [301] +19:37:58 ============================================================================ +19:37:58 + + +waiting on router queue for slot.... +19:37:58 Sending to : +19:37:58 ============================================================================ +19:37:58 ============================================================================ +19:37:58 Slot Id : <249> +19:37:58 Transaction Type : RESPONSE +19:37:58 Received From : +19:37:58 ============================================================================ +19:37:58 FNo. Len. Field Value +19:37:58 ============================================================================ +19:37:58 [ 1] [ 4] [0810] +19:37:58 [ 7] [ 10] [0320123705] +19:37:58 [ 11] [ 6] [157996] +19:37:58 [ 39] [ 2] [00] +19:37:58 [ 70] [ 3] [301] +19:37:58 ============================================================================ +19:37:58 Calculate Source COMM Id = 2 +19:37:58 ============================================================================ +19:37:58 + + +waiting on router queue for slot.... +19:38:09 ============================================================================ +19:38:09 Slot Id : <210> +19:38:09 Transaction Type : REQUEST +19:38:09 Received From : +19:38:09 ============================================================================ +19:38:09 FNo. Len. Field Value +19:38:09 ============================================================================ +19:38:09 [ 1] [ 4] [0800] +19:38:09 [ 7] [ 10] [0320123715] +19:38:09 [ 11] [ 6] [157997] +19:38:09 [ 70] [ 3] [301] +19:38:09 ============================================================================ +19:38:09 + + +waiting on router queue for slot.... +19:38:09 Sending to : +19:38:09 ============================================================================ +19:38:09 ============================================================================ +19:38:09 Slot Id : <210> +19:38:09 Transaction Type : RESPONSE +19:38:09 Received From : +19:38:09 ============================================================================ +19:38:09 FNo. Len. Field Value +19:38:09 ============================================================================ +19:38:09 [ 1] [ 4] [0810] +19:38:09 [ 7] [ 10] [0320123715] +19:38:09 [ 11] [ 6] [157997] +19:38:09 [ 39] [ 2] [00] +19:38:09 [ 70] [ 3] [301] +19:38:09 ============================================================================ +19:38:09 Calculate Source COMM Id = 2 +19:38:09 ============================================================================ +19:38:09 + + +waiting on router queue for slot.... +19:38:18 ============================================================================ +19:38:18 Slot Id : <263> +19:38:18 Transaction Type : REQUEST +19:38:18 Received From : +19:38:18 ============================================================================ +19:38:18 FNo. Len. Field Value +19:38:18 ============================================================================ +19:38:18 [ 1] [ 4] [0200] +19:38:18 [ 2] [ 16] [6688990600121808] +19:38:18 [ 3] [ 6] [011000] +19:38:18 [ 4] [ 12] [000030000000] +19:38:18 [ 7] [ 10] [0320193813] +19:38:18 [ 11] [ 6] [837757] +19:38:18 [ 12] [ 6] [193813] +19:38:18 [ 13] [ 4] [0320] +19:38:18 [ 15] [ 4] [0320] +19:38:18 [ 18] [ 4] [6011] +19:38:18 [ 22] [ 3] [900] +19:38:18 [ 25] [ 2] [02] +19:38:18 [ 28] [ 9] [D00002000] +19:38:18 [ 32] [ 6] [621354] +19:38:18 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:38:18 [ 37] [ 12] [507903535240] +19:38:18 [ 41] [ 8] [09001000] +19:38:18 [ 42] [ 15] [NATIVE ] +19:38:18 [ 43] [ 40] [Thatluang Unit Xaysetha LAO] +19:38:18 [ 49] [ 3] [418] +19:38:18 [ 52] [ 16] [9765566E9C461271] +19:38:18 ============================================================================ +19:38:18 + + +waiting on router queue for slot.... +19:38:18 Sending to : +19:38:18 ============================================================================ +19:38:18 Sending to : +19:38:18 ============================================================================ +19:38:18 ============================================================================ +19:38:18 Slot Id : <263> +19:38:18 Transaction Type : REQUEST +19:38:18 Received From : +19:38:18 ============================================================================ +19:38:18 FNo. Len. Field Value +19:38:18 ============================================================================ +19:38:18 [ 1] [ 4] [0200] +19:38:18 [ 2] [ 16] [6688990600121808] +19:38:18 [ 3] [ 6] [011000] +19:38:18 [ 4] [ 12] [000030000000] +19:38:18 [ 7] [ 10] [0320193813] +19:38:18 [ 11] [ 6] [837757] +19:38:18 [ 12] [ 6] [193813] +19:38:18 [ 13] [ 4] [0320] +19:38:18 [ 15] [ 4] [0320] +19:38:18 [ 18] [ 4] [6011] +19:38:18 [ 22] [ 3] [900] +19:38:18 [ 25] [ 2] [02] +19:38:18 [ 28] [ 9] [D00002000] +19:38:18 [ 32] [ 6] [621354] +19:38:18 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:38:18 [ 37] [ 12] [507903535240] +19:38:18 [ 41] [ 8] [09001000] +19:38:18 [ 42] [ 15] [NATIVE ] +19:38:18 [ 43] [ 40] [Thatluang Unit Xaysetha LAO] +19:38:18 [ 49] [ 3] [418] +19:38:18 [ 52] [ 16] [9765566E9C461271] +19:38:18 ============================================================================ +19:38:18 + + +waiting on router queue for slot.... +19:38:18 Sending to : +19:38:18 ============================================================================ +19:38:18 ============================================================================ +19:38:18 Slot Id : <263> +19:38:18 Transaction Type : REQUEST +19:38:18 Received From : +19:38:18 ============================================================================ +19:38:18 FNo. Len. Field Value +19:38:18 ============================================================================ +19:38:18 [ 1] [ 4] [0200] +19:38:18 [ 2] [ 16] [6688990600121808] +19:38:18 [ 3] [ 6] [011000] +19:38:18 [ 4] [ 12] [000030000000] +19:38:18 [ 7] [ 10] [0320193813] +19:38:18 [ 11] [ 6] [837757] +19:38:18 [ 12] [ 6] [193813] +19:38:18 [ 13] [ 4] [0320] +19:38:18 [ 15] [ 4] [0320] +19:38:18 [ 18] [ 4] [6011] +19:38:18 [ 22] [ 3] [900] +19:38:18 [ 25] [ 2] [02] +19:38:18 [ 28] [ 9] [D00002000] +19:38:18 [ 32] [ 6] [621354] +19:38:18 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:38:18 [ 37] [ 12] [507903535240] +19:38:18 [ 41] [ 8] [09001000] +19:38:18 [ 42] [ 15] [NATIVE ] +19:38:18 [ 43] [ 40] [Thatluang Unit Xaysetha LAO] +19:38:18 [ 49] [ 3] [418] +19:38:18 [ 52] [ 16] [301AC64855A4CEBE] +19:38:18 ============================================================================ +19:38:18 + + +waiting on router queue for slot.... +19:38:18 Sending to : <4> +19:38:18 ============================================================================ +19:38:18 ============================================================================ +19:38:18 Slot Id : <263> +19:38:18 Transaction Type : RESPONSE +19:38:18 Received From : +19:38:18 ============================================================================ +19:38:18 FNo. Len. Field Value +19:38:18 ============================================================================ +19:38:18 [ 1] [ 4] [0210] +19:38:18 [ 2] [ 16] [6688990600121808] +19:38:18 [ 3] [ 6] [011000] +19:38:18 [ 4] [ 12] [000030000000] +19:38:18 [ 7] [ 10] [0320193813] +19:38:18 [ 11] [ 6] [837757] +19:38:18 [ 12] [ 6] [193813] +19:38:18 [ 13] [ 4] [0320] +19:38:18 [ 15] [ 4] [0320] +19:38:18 [ 18] [ 4] [6011] +19:38:18 [ 22] [ 3] [021] +19:38:18 [ 32] [ 6] [621354] +19:38:18 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:38:18 [ 37] [ 12] [507903535240] +19:38:18 [ 38] [ 6] [193608] +19:38:18 [ 39] [ 2] [55] +19:38:18 [ 41] [ 8] [09001000] +19:38:18 [ 49] [ 3] [418] +19:38:18 ============================================================================ +19:38:18 Sending to : +19:38:18 ============================================================================ +19:38:18 + + +waiting on router queue for slot.... +19:38:19 ============================================================================ +19:38:19 Slot Id : <263> +19:38:19 Transaction Type : RESPONSE +19:38:19 Received From : +19:38:19 ============================================================================ +19:38:19 FNo. Len. Field Value +19:38:19 ============================================================================ +19:38:19 [ 1] [ 4] [0210] +19:38:19 [ 2] [ 16] [6688990600121808] +19:38:19 [ 3] [ 6] [011000] +19:38:19 [ 4] [ 12] [000030000000] +19:38:19 [ 7] [ 10] [0320193813] +19:38:19 [ 11] [ 6] [837757] +19:38:19 [ 12] [ 6] [193813] +19:38:19 [ 13] [ 4] [0320] +19:38:19 [ 15] [ 4] [0320] +19:38:19 [ 18] [ 4] [6011] +19:38:19 [ 22] [ 3] [021] +19:38:19 [ 32] [ 6] [621354] +19:38:19 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:38:19 [ 37] [ 12] [507903535240] +19:38:19 [ 38] [ 6] [193608] +19:38:19 [ 39] [ 2] [55] +19:38:19 [ 41] [ 8] [09001000] +19:38:19 [ 49] [ 3] [418] +19:38:19 ============================================================================ +19:38:19 Calculate Source COMM Id = 0 +19:38:19 ============================================================================ +19:38:19 + + +waiting on router queue for slot.... +19:38:24 ============================================================================ +19:38:24 Slot Id : <261> +19:38:24 Transaction Type : REQUEST +19:38:24 Received From : +19:38:24 ============================================================================ +19:38:24 FNo. Len. Field Value +19:38:24 ============================================================================ +19:38:24 [ 1] [ 4] [0800] +19:38:24 [ 7] [ 10] [0320123730] +19:38:24 [ 11] [ 6] [157998] +19:38:24 [ 70] [ 3] [301] +19:38:24 ============================================================================ +19:38:24 + + +waiting on router queue for slot.... +19:38:24 Sending to : +19:38:24 ============================================================================ +19:38:24 ============================================================================ +19:38:24 Slot Id : <261> +19:38:24 Transaction Type : RESPONSE +19:38:24 Received From : +19:38:24 ============================================================================ +19:38:24 FNo. Len. Field Value +19:38:24 ============================================================================ +19:38:24 [ 1] [ 4] [0810] +19:38:24 [ 7] [ 10] [0320123730] +19:38:24 [ 11] [ 6] [157998] +19:38:24 [ 39] [ 2] [00] +19:38:24 [ 70] [ 3] [301] +19:38:24 ============================================================================ +19:38:24 Calculate Source COMM Id = 2 +19:38:24 ============================================================================ +19:38:24 + + +waiting on router queue for slot.... +19:38:34 ============================================================================ +19:38:34 Slot Id : <269> +19:38:34 Transaction Type : REQUEST +19:38:34 Received From : +19:38:34 ============================================================================ +19:38:34 FNo. Len. Field Value +19:38:34 ============================================================================ +19:38:34 [ 1] [ 4] [0800] +19:38:34 [ 7] [ 10] [0320123741] +19:38:34 [ 11] [ 6] [157999] +19:38:34 [ 70] [ 3] [301] +19:38:34 ============================================================================ +19:38:34 + + +waiting on router queue for slot.... +19:38:34 Sending to : +19:38:34 ============================================================================ +19:38:34 ============================================================================ +19:38:34 Slot Id : <269> +19:38:34 Transaction Type : RESPONSE +19:38:34 Received From : +19:38:34 ============================================================================ +19:38:34 FNo. Len. Field Value +19:38:34 ============================================================================ +19:38:34 [ 1] [ 4] [0810] +19:38:34 [ 7] [ 10] [0320123741] +19:38:34 [ 11] [ 6] [157999] +19:38:34 [ 39] [ 2] [00] +19:38:34 [ 70] [ 3] [301] +19:38:34 ============================================================================ +19:38:34 Calculate Source COMM Id = 2 +19:38:34 ============================================================================ +19:38:34 + + +waiting on router queue for slot.... +19:38:39 ============================================================================ +19:38:39 Slot Id : <225> +19:38:39 Transaction Type : REQUEST +19:38:39 Received From : +19:38:39 ============================================================================ +19:38:39 FNo. Len. Field Value +19:38:39 ============================================================================ +19:38:39 [ 1] [ 4] [0800] +19:38:39 [ 2] [ 5] [02531] +19:38:39 [ 3] [ 6] [579198] +19:38:39 [ 7] [ 10] [0320123839] +19:38:39 [ 11] [ 6] [807552] +19:38:39 [ 15] [ 10] [0320123839] +19:38:39 [ 37] [ 11] [57919807552] +19:38:39 [ 70] [ 3] [001] +19:38:39 ============================================================================ +19:38:39 + + +waiting on router queue for slot.... +19:38:39 ============================================================================ +19:38:39 Slot Id : <225> +19:38:39 Transaction Type : RESPONSE +19:38:39 Received From : +19:38:39 ============================================================================ +19:38:39 FNo. Len. Field Value +19:38:39 ============================================================================ +19:38:39 [ 1] [ 4] [0810] +19:38:39 [ 7] [ 10] [0320123839] +19:38:39 [ 11] [ 6] [807552] +19:38:39 [ 15] [ 4] [0320] +19:38:39 [ 37] [ 12] [57919807552] +19:38:39 [ 39] [ 2] [00] +19:38:39 [ 70] [ 3] [001] +19:38:39 ============================================================================ +19:38:39 Sending to : +19:38:39 ============================================================================ +19:38:39 + + +waiting on router queue for slot.... +19:38:41 ============================================================================ +19:38:41 Slot Id : <199> +19:38:41 Transaction Type : REQUEST +19:38:41 Received From : +19:38:41 ============================================================================ +19:38:41 FNo. Len. Field Value +19:38:41 ============================================================================ +19:38:41 [ 1] [ 4] [0800] +19:38:41 [ 7] [ 10] [0321025030] +19:38:41 [ 11] [ 6] [195030] +19:38:41 [ 37] [ 12] [57919195030] +19:38:41 [ 70] [ 3] [301] +19:38:41 ============================================================================ +19:38:41 + + +waiting on router queue for slot.... +19:38:41 Sending to : +19:38:41 ============================================================================ +19:38:41 ============================================================================ +19:38:41 Slot Id : <199> +19:38:41 Transaction Type : RESPONSE +19:38:41 Received From : +19:38:41 ============================================================================ +19:38:41 FNo. Len. Field Value +19:38:41 ============================================================================ +19:38:41 [ 1] [ 4] [0810] +19:38:41 [ 7] [ 10] [0321025030] +19:38:41 [ 11] [ 6] [195030] +19:38:41 [ 37] [ 12] [579191950300] +19:38:41 [ 39] [ 2] [00] +19:38:41 [ 70] [ 3] [810] +19:38:41 ============================================================================ +19:38:41 Calculate Source COMM Id = 6 +19:38:41 ============================================================================ +19:38:41 + + +waiting on router queue for slot.... +19:38:45 ============================================================================ +19:38:45 Slot Id : <270> +19:38:45 Transaction Type : REQUEST +19:38:45 Received From : +19:38:45 ============================================================================ +19:38:45 FNo. Len. Field Value +19:38:45 ============================================================================ +19:38:45 [ 1] [ 4] [0200] +19:38:45 [ 2] [ 16] [6688990600121808] +19:38:45 [ 3] [ 6] [011000] +19:38:45 [ 4] [ 12] [000030000000] +19:38:45 [ 7] [ 10] [0320193840] +19:38:45 [ 11] [ 6] [837810] +19:38:45 [ 12] [ 6] [193840] +19:38:45 [ 13] [ 4] [0320] +19:38:45 [ 15] [ 4] [0320] +19:38:45 [ 18] [ 4] [6011] +19:38:45 [ 22] [ 3] [900] +19:38:45 [ 25] [ 2] [02] +19:38:45 [ 28] [ 9] [D00002000] +19:38:45 [ 32] [ 6] [621354] +19:38:45 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:38:45 [ 37] [ 12] [507903535242] +19:38:45 [ 41] [ 8] [09001000] +19:38:45 [ 42] [ 15] [NATIVE ] +19:38:45 [ 43] [ 40] [Thatluang Unit Xaysetha LAO] +19:38:45 [ 49] [ 3] [418] +19:38:45 [ 52] [ 16] [9765566E9C461271] +19:38:45 ============================================================================ +19:38:45 + + +waiting on router queue for slot.... +19:38:45 Sending to : +19:38:45 ============================================================================ +19:38:45 Sending to : +19:38:45 ============================================================================ +19:38:45 ============================================================================ +19:38:45 Slot Id : <270> +19:38:45 Transaction Type : REQUEST +19:38:45 Received From : +19:38:45 ============================================================================ +19:38:45 FNo. Len. Field Value +19:38:45 ============================================================================ +19:38:45 [ 1] [ 4] [0200] +19:38:45 [ 2] [ 16] [6688990600121808] +19:38:45 [ 3] [ 6] [011000] +19:38:45 [ 4] [ 12] [000030000000] +19:38:45 [ 7] [ 10] [0320193840] +19:38:45 [ 11] [ 6] [837810] +19:38:45 [ 12] [ 6] [193840] +19:38:45 [ 13] [ 4] [0320] +19:38:45 [ 15] [ 4] [0320] +19:38:45 [ 18] [ 4] [6011] +19:38:45 [ 22] [ 3] [900] +19:38:45 [ 25] [ 2] [02] +19:38:45 [ 28] [ 9] [D00002000] +19:38:45 [ 32] [ 6] [621354] +19:38:45 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:38:45 [ 37] [ 12] [507903535242] +19:38:45 [ 41] [ 8] [09001000] +19:38:45 [ 42] [ 15] [NATIVE ] +19:38:45 [ 43] [ 40] [Thatluang Unit Xaysetha LAO] +19:38:45 [ 49] [ 3] [418] +19:38:45 [ 52] [ 16] [9765566E9C461271] +19:38:45 ============================================================================ +19:38:45 + + +waiting on router queue for slot.... +19:38:45 Sending to : +19:38:45 ============================================================================ +19:38:45 ============================================================================ +19:38:45 Slot Id : <270> +19:38:45 Transaction Type : REQUEST +19:38:45 Received From : +19:38:45 ============================================================================ +19:38:45 FNo. Len. Field Value +19:38:45 ============================================================================ +19:38:45 [ 1] [ 4] [0200] +19:38:45 [ 2] [ 16] [6688990600121808] +19:38:45 [ 3] [ 6] [011000] +19:38:45 [ 4] [ 12] [000030000000] +19:38:45 [ 7] [ 10] [0320193840] +19:38:45 [ 11] [ 6] [837810] +19:38:45 [ 12] [ 6] [193840] +19:38:45 [ 13] [ 4] [0320] +19:38:45 [ 15] [ 4] [0320] +19:38:45 [ 18] [ 4] [6011] +19:38:45 [ 22] [ 3] [900] +19:38:45 [ 25] [ 2] [02] +19:38:45 [ 28] [ 9] [D00002000] +19:38:45 [ 32] [ 6] [621354] +19:38:45 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:38:45 [ 37] [ 12] [507903535242] +19:38:45 [ 41] [ 8] [09001000] +19:38:45 [ 42] [ 15] [NATIVE ] +19:38:45 [ 43] [ 40] [Thatluang Unit Xaysetha LAO] +19:38:45 [ 49] [ 3] [418] +19:38:45 [ 52] [ 16] [301AC64855A4CEBE] +19:38:45 ============================================================================ +19:38:45 + + +waiting on router queue for slot.... +19:38:45 Sending to : <4> +19:38:45 ============================================================================ +19:38:45 ============================================================================ +19:38:45 Slot Id : <270> +19:38:45 Transaction Type : RESPONSE +19:38:45 Received From : +19:38:45 ============================================================================ +19:38:45 FNo. Len. Field Value +19:38:45 ============================================================================ +19:38:45 [ 1] [ 4] [0210] +19:38:45 [ 2] [ 16] [6688990600121808] +19:38:45 [ 3] [ 6] [011000] +19:38:45 [ 4] [ 12] [000030000000] +19:38:45 [ 7] [ 10] [0320193840] +19:38:45 [ 11] [ 6] [837810] +19:38:45 [ 12] [ 6] [193840] +19:38:45 [ 13] [ 4] [0320] +19:38:45 [ 15] [ 4] [0320] +19:38:45 [ 18] [ 4] [6011] +19:38:45 [ 22] [ 3] [021] +19:38:45 [ 32] [ 6] [621354] +19:38:45 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:38:45 [ 37] [ 12] [507903535242] +19:38:45 [ 38] [ 6] [193635] +19:38:45 [ 39] [ 2] [55] +19:38:45 [ 41] [ 8] [09001000] +19:38:45 [ 49] [ 3] [418] +19:38:45 ============================================================================ +19:38:45 Sending to : +19:38:45 ============================================================================ +19:38:45 + + +waiting on router queue for slot.... +19:38:47 ============================================================================ +19:38:47 Slot Id : <270> +19:38:47 Transaction Type : RESPONSE +19:38:47 Received From : +19:38:47 ============================================================================ +19:38:47 FNo. Len. Field Value +19:38:47 ============================================================================ +19:38:47 [ 1] [ 4] [0210] +19:38:47 [ 2] [ 16] [6688990600121808] +19:38:47 [ 3] [ 6] [011000] +19:38:47 [ 4] [ 12] [000030000000] +19:38:47 [ 7] [ 10] [0320193840] +19:38:47 [ 11] [ 6] [837810] +19:38:47 [ 12] [ 6] [193840] +19:38:47 [ 13] [ 4] [0320] +19:38:47 [ 15] [ 4] [0320] +19:38:47 [ 18] [ 4] [6011] +19:38:47 [ 22] [ 3] [021] +19:38:47 [ 32] [ 6] [621354] +19:38:47 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:38:47 [ 37] [ 12] [507903535242] +19:38:47 [ 38] [ 6] [193635] +19:38:47 [ 39] [ 2] [55] +19:38:47 [ 41] [ 8] [09001000] +19:38:47 [ 49] [ 3] [418] +19:38:47 ============================================================================ +19:38:47 Calculate Source COMM Id = 0 +19:38:47 ============================================================================ +19:38:47 + + +waiting on router queue for slot.... +19:38:49 ============================================================================ +19:38:49 Slot Id : <275> +19:38:49 Transaction Type : REQUEST +19:38:49 Received From : +19:38:49 ============================================================================ +19:38:49 FNo. Len. Field Value +19:38:49 ============================================================================ +19:38:49 [ 1] [ 4] [0800] +19:38:49 [ 7] [ 10] [0320123756] +19:38:49 [ 11] [ 6] [158000] +19:38:49 [ 70] [ 3] [301] +19:38:49 ============================================================================ +19:38:49 + + +waiting on router queue for slot.... +19:38:49 Sending to : +19:38:49 ============================================================================ +19:38:49 ============================================================================ +19:38:49 Slot Id : <275> +19:38:49 Transaction Type : RESPONSE +19:38:49 Received From : +19:38:49 ============================================================================ +19:38:49 FNo. Len. Field Value +19:38:49 ============================================================================ +19:38:49 [ 1] [ 4] [0810] +19:38:49 [ 7] [ 10] [0320123756] +19:38:49 [ 11] [ 6] [158000] +19:38:49 [ 39] [ 2] [00] +19:38:49 [ 70] [ 3] [301] +19:38:49 ============================================================================ +19:38:49 Calculate Source COMM Id = 2 +19:38:49 ============================================================================ +19:38:49 + + +waiting on router queue for slot.... +19:38:59 ============================================================================ +19:38:59 Slot Id : <240> +19:38:59 Transaction Type : REQUEST +19:38:59 Received From : +19:38:59 ============================================================================ +19:38:59 FNo. Len. Field Value +19:38:59 ============================================================================ +19:38:59 [ 1] [ 4] [0800] +19:38:59 [ 7] [ 10] [0320123806] +19:38:59 [ 11] [ 6] [158001] +19:38:59 [ 70] [ 3] [301] +19:38:59 ============================================================================ +19:38:59 + + +waiting on router queue for slot.... +19:38:59 Sending to : +19:38:59 ============================================================================ +19:38:59 ============================================================================ +19:38:59 Slot Id : <240> +19:38:59 Transaction Type : RESPONSE +19:38:59 Received From : +19:38:59 ============================================================================ +19:38:59 FNo. Len. Field Value +19:38:59 ============================================================================ +19:38:59 [ 1] [ 4] [0810] +19:38:59 [ 7] [ 10] [0320123806] +19:38:59 [ 11] [ 6] [158001] +19:38:59 [ 39] [ 2] [00] +19:38:59 [ 70] [ 3] [301] +19:38:59 ============================================================================ +19:38:59 Calculate Source COMM Id = 2 +19:38:59 ============================================================================ +19:38:59 + + +waiting on router queue for slot.... +19:39:10 ============================================================================ +19:39:10 Slot Id : <197> +19:39:10 Transaction Type : REQUEST +19:39:10 Received From : +19:39:10 ============================================================================ +19:39:10 FNo. Len. Field Value +19:39:10 ============================================================================ +19:39:10 [ 1] [ 4] [0800] +19:39:10 [ 7] [ 10] [0320123816] +19:39:10 [ 11] [ 6] [158002] +19:39:10 [ 70] [ 3] [301] +19:39:10 ============================================================================ +19:39:10 + + +waiting on router queue for slot.... +19:39:10 Sending to : +19:39:10 ============================================================================ +19:39:10 ============================================================================ +19:39:10 Slot Id : <197> +19:39:10 Transaction Type : RESPONSE +19:39:10 Received From : +19:39:10 ============================================================================ +19:39:10 FNo. Len. Field Value +19:39:10 ============================================================================ +19:39:10 [ 1] [ 4] [0810] +19:39:10 [ 7] [ 10] [0320123816] +19:39:10 [ 11] [ 6] [158002] +19:39:10 [ 39] [ 2] [00] +19:39:10 [ 70] [ 3] [301] +19:39:10 ============================================================================ +19:39:10 Calculate Source COMM Id = 2 +19:39:10 ============================================================================ +19:39:10 + + +waiting on router queue for slot.... +19:39:17 ============================================================================ +19:39:17 Slot Id : <265> +19:39:17 Transaction Type : REQUEST +19:39:17 Received From : +19:39:17 ============================================================================ +19:39:17 FNo. Len. Field Value +19:39:17 ============================================================================ +19:39:17 [ 1] [ 4] [0200] +19:39:17 [ 2] [ 16] [6688990600121808] +19:39:17 [ 3] [ 6] [011000] +19:39:17 [ 4] [ 12] [000030000000] +19:39:17 [ 7] [ 10] [0320193912] +19:39:17 [ 11] [ 6] [837885] +19:39:17 [ 12] [ 6] [193912] +19:39:17 [ 13] [ 4] [0320] +19:39:17 [ 15] [ 4] [0320] +19:39:17 [ 18] [ 4] [6011] +19:39:17 [ 22] [ 3] [900] +19:39:17 [ 25] [ 2] [02] +19:39:17 [ 28] [ 9] [D00002000] +19:39:17 [ 32] [ 6] [621354] +19:39:17 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:39:17 [ 37] [ 12] [507903535244] +19:39:17 [ 41] [ 8] [09001000] +19:39:17 [ 42] [ 15] [NATIVE ] +19:39:17 [ 43] [ 40] [Thatluang Unit Xaysetha LAO] +19:39:17 [ 49] [ 3] [418] +19:39:17 [ 52] [ 16] [9FD484C1558A4905] +19:39:17 ============================================================================ +19:39:17 + + +waiting on router queue for slot.... +19:39:17 Sending to : +19:39:17 ============================================================================ +19:39:17 Sending to : +19:39:17 ============================================================================ +19:39:17 ============================================================================ +19:39:17 Slot Id : <265> +19:39:17 Transaction Type : REQUEST +19:39:17 Received From : +19:39:17 ============================================================================ +19:39:17 FNo. Len. Field Value +19:39:17 ============================================================================ +19:39:17 [ 1] [ 4] [0200] +19:39:17 [ 2] [ 16] [6688990600121808] +19:39:17 [ 3] [ 6] [011000] +19:39:17 [ 4] [ 12] [000030000000] +19:39:17 [ 7] [ 10] [0320193912] +19:39:17 [ 11] [ 6] [837885] +19:39:17 [ 12] [ 6] [193912] +19:39:17 [ 13] [ 4] [0320] +19:39:17 [ 15] [ 4] [0320] +19:39:17 [ 18] [ 4] [6011] +19:39:17 [ 22] [ 3] [900] +19:39:17 [ 25] [ 2] [02] +19:39:17 [ 28] [ 9] [D00002000] +19:39:17 [ 32] [ 6] [621354] +19:39:17 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:39:17 [ 37] [ 12] [507903535244] +19:39:17 [ 41] [ 8] [09001000] +19:39:17 [ 42] [ 15] [NATIVE ] +19:39:17 [ 43] [ 40] [Thatluang Unit Xaysetha LAO] +19:39:17 [ 49] [ 3] [418] +19:39:17 [ 52] [ 16] [9FD484C1558A4905] +19:39:17 ============================================================================ +19:39:17 + + +waiting on router queue for slot.... +19:39:17 Sending to : +19:39:17 ============================================================================ +19:39:17 ============================================================================ +19:39:17 Slot Id : <265> +19:39:17 Transaction Type : REQUEST +19:39:17 Received From : +19:39:17 ============================================================================ +19:39:17 FNo. Len. Field Value +19:39:17 ============================================================================ +19:39:17 [ 1] [ 4] [0200] +19:39:17 [ 2] [ 16] [6688990600121808] +19:39:17 [ 3] [ 6] [011000] +19:39:17 [ 4] [ 12] [000030000000] +19:39:17 [ 7] [ 10] [0320193912] +19:39:17 [ 11] [ 6] [837885] +19:39:17 [ 12] [ 6] [193912] +19:39:17 [ 13] [ 4] [0320] +19:39:17 [ 15] [ 4] [0320] +19:39:17 [ 18] [ 4] [6011] +19:39:17 [ 22] [ 3] [900] +19:39:17 [ 25] [ 2] [02] +19:39:17 [ 28] [ 9] [D00002000] +19:39:17 [ 32] [ 6] [621354] +19:39:17 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:39:17 [ 37] [ 12] [507903535244] +19:39:17 [ 41] [ 8] [09001000] +19:39:17 [ 42] [ 15] [NATIVE ] +19:39:17 [ 43] [ 40] [Thatluang Unit Xaysetha LAO] +19:39:17 [ 49] [ 3] [418] +19:39:17 [ 52] [ 16] [C85DCCE490CC423A] +19:39:17 ============================================================================ +19:39:17 + + +waiting on router queue for slot.... +19:39:17 Sending to : <4> +19:39:17 ============================================================================ +19:39:18 ============================================================================ +19:39:18 Slot Id : <265> +19:39:18 Transaction Type : RESPONSE +19:39:18 Received From : +19:39:18 ============================================================================ +19:39:18 FNo. Len. Field Value +19:39:18 ============================================================================ +19:39:18 [ 1] [ 4] [0210] +19:39:18 [ 2] [ 16] [6688990600121808] +19:39:18 [ 3] [ 6] [011000] +19:39:18 [ 4] [ 12] [000030000000] +19:39:18 [ 11] [ 6] [837885] +19:39:18 [ 12] [ 6] [193912] +19:39:18 [ 15] [ 4] [0320] +19:39:18 [ 18] [ 4] [6011] +19:39:18 [ 32] [ 6] [621354] +19:39:18 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:39:18 [ 37] [ 12] [507903535244] +19:39:18 [ 38] [ 6] [240410] +19:39:18 [ 39] [ 2] [00] +19:39:18 [ 41] [ 8] [09001000] +19:39:18 [ 49] [ 3] [418] +19:39:18 [ 54] [ 20] [1002418C000083806333] +19:39:18 ============================================================================ +19:39:18 Sending to : +19:39:18 ============================================================================ +19:39:18 + + +waiting on router queue for slot.... +19:39:20 ============================================================================ +19:39:20 Slot Id : <265> +19:39:20 Transaction Type : RESPONSE +19:39:20 Received From : +19:39:20 ============================================================================ +19:39:20 FNo. Len. Field Value +19:39:20 ============================================================================ +19:39:20 [ 1] [ 4] [0210] +19:39:20 [ 2] [ 16] [6688990600121808] +19:39:20 [ 3] [ 6] [011000] +19:39:20 [ 4] [ 12] [000030000000] +19:39:20 [ 11] [ 6] [837885] +19:39:20 [ 12] [ 6] [193912] +19:39:20 [ 15] [ 4] [0320] +19:39:20 [ 18] [ 4] [6011] +19:39:20 [ 32] [ 6] [621354] +19:39:20 [ 35] [ 37] [6688990600121808=40080061180824900000] +19:39:20 [ 37] [ 12] [507903535244] +19:39:20 [ 38] [ 6] [240410] +19:39:20 [ 39] [ 2] [00] +19:39:20 [ 41] [ 8] [09001000] +19:39:20 [ 49] [ 3] [418] +19:39:20 [ 54] [ 20] [1002418C000083806333] +19:39:20 ============================================================================ +19:39:20 Calculate Source COMM Id = 0 +19:39:20 ============================================================================ +19:39:20 + + +waiting on router queue for slot.... +19:39:25 ============================================================================ +19:39:25 Slot Id : <218> +19:39:25 Transaction Type : REQUEST +19:39:25 Received From : +19:39:25 ============================================================================ +19:39:25 FNo. Len. Field Value +19:39:25 ============================================================================ +19:39:25 [ 1] [ 4] [0800] +19:39:25 [ 7] [ 10] [0320123832] +19:39:25 [ 11] [ 6] [158003] +19:39:25 [ 70] [ 3] [301] +19:39:25 ============================================================================ +19:39:25 + + +waiting on router queue for slot.... +19:39:25 Sending to : +19:39:25 ============================================================================ +19:39:25 ============================================================================ +19:39:25 Slot Id : <218> +19:39:25 Transaction Type : RESPONSE +19:39:25 Received From : +19:39:25 ============================================================================ +19:39:25 FNo. Len. Field Value +19:39:25 ============================================================================ +19:39:25 [ 1] [ 4] [0810] +19:39:25 [ 7] [ 10] [0320123832] +19:39:25 [ 11] [ 6] [158003] +19:39:25 [ 39] [ 2] [00] +19:39:25 [ 70] [ 3] [301] +19:39:25 ============================================================================ +19:39:25 Calculate Source COMM Id = 2 +19:39:25 ============================================================================ +19:39:25 + + +waiting on router queue for slot.... +19:39:41 ============================================================================ +19:39:41 Slot Id : <247> +19:39:41 Transaction Type : REQUEST +19:39:41 Received From : +19:39:41 ============================================================================ +19:39:41 FNo. Len. Field Value +19:39:41 ============================================================================ +19:39:41 [ 1] [ 4] [0800] +19:39:41 [ 7] [ 10] [0320123847] +19:39:41 [ 11] [ 6] [158004] +19:39:41 [ 70] [ 3] [301] +19:39:41 ============================================================================ +19:39:41 + + +waiting on router queue for slot.... +19:39:41 Sending to : +19:39:41 ============================================================================ +19:39:41 ============================================================================ +19:39:41 Slot Id : <247> +19:39:41 Transaction Type : RESPONSE +19:39:41 Received From : +19:39:41 ============================================================================ +19:39:41 FNo. Len. Field Value +19:39:41 ============================================================================ +19:39:41 [ 1] [ 4] [0810] +19:39:41 [ 7] [ 10] [0320123847] +19:39:41 [ 11] [ 6] [158004] +19:39:41 [ 39] [ 2] [00] +19:39:41 [ 70] [ 3] [301] +19:39:41 ============================================================================ +19:39:41 Calculate Source COMM Id = 2 +19:39:41 ============================================================================ +19:39:41 + + +waiting on router queue for slot.... +19:39:41 ============================================================================ +19:39:41 Slot Id : <256> +19:39:41 Transaction Type : REQUEST +19:39:41 Received From : +19:39:41 ============================================================================ +19:39:41 FNo. Len. Field Value +19:39:41 ============================================================================ +19:39:41 [ 1] [ 4] [0800] +19:39:41 [ 2] [ 5] [02531] +19:39:41 [ 3] [ 6] [579198] +19:39:41 [ 7] [ 10] [0320123941] +19:39:41 [ 11] [ 6] [807553] +19:39:41 [ 15] [ 10] [0320123941] +19:39:41 [ 37] [ 11] [57919807553] +19:39:41 [ 70] [ 3] [001] +19:39:41 ============================================================================ +19:39:41 + + +waiting on router queue for slot.... +19:39:41 ============================================================================ +19:39:41 Slot Id : <256> +19:39:41 Transaction Type : RESPONSE +19:39:41 Received From : +19:39:41 ============================================================================ +19:39:41 FNo. Len. Field Value +19:39:41 ============================================================================ +19:39:41 [ 1] [ 4] [0810] +19:39:41 [ 7] [ 10] [0320123941] +19:39:41 [ 11] [ 6] [807553] +19:39:41 [ 15] [ 4] [0320] +19:39:41 [ 37] [ 12] [57919807553] +19:39:41 [ 39] [ 2] [00] +19:39:41 [ 70] [ 3] [001] +19:39:41 ============================================================================ +19:39:41 Sending to : +19:39:41 ============================================================================ +19:39:41 + + +waiting on router queue for slot.... +19:39:46 ============================================================================ +19:39:46 Slot Id : <228> +19:39:46 Transaction Type : REQUEST +19:39:46 Received From : +19:39:46 ============================================================================ +19:39:46 FNo. Len. Field Value +19:39:46 ============================================================================ +19:39:46 [ 1] [ 4] [0200] +19:39:46 [ 2] [ 16] [6213548000464394] +19:39:46 [ 3] [ 6] [011000] +19:39:46 [ 4] [ 12] [000010000000] +19:39:46 [ 7] [ 10] [0320194731] +19:39:46 [ 11] [ 6] [223796] +19:39:46 [ 12] [ 6] [194731] +19:39:46 [ 13] [ 4] [0320] +19:39:46 [ 14] [ 4] [1807] +19:39:46 [ 15] [ 4] [0320] +19:39:46 [ 18] [ 4] [6011] +19:39:46 [ 22] [ 3] [900] +19:39:46 [ 25] [ 2] [02] +19:39:46 [ 28] [ 9] [D00002000] +19:39:46 [ 32] [ 6] [220699] +19:39:46 [ 35] [ 32] [6213548000464394=180712016439590] +19:39:46 [ 37] [ 12] [507900118807] +19:39:46 [ 41] [ 8] [01001100] +19:39:46 [ 42] [ 15] [APTRA ] +19:39:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:39:46 [ 49] [ 3] [418] +19:39:46 [ 52] [ 16] [50849CA6C4B844B5] +19:39:46 ============================================================================ +19:39:46 + + +waiting on router queue for slot.... +19:39:46 Sending to : +19:39:46 ============================================================================ +19:39:46 Sending to : +19:39:46 ============================================================================ +19:39:46 ============================================================================ +19:39:46 Slot Id : <228> +19:39:46 Transaction Type : REQUEST +19:39:46 Received From : +19:39:46 ============================================================================ +19:39:46 FNo. Len. Field Value +19:39:46 ============================================================================ +19:39:46 [ 1] [ 4] [0200] +19:39:46 [ 2] [ 16] [6213548000464394] +19:39:46 [ 3] [ 6] [011000] +19:39:46 [ 4] [ 12] [000010000000] +19:39:46 [ 7] [ 10] [0320194731] +19:39:46 [ 11] [ 6] [223796] +19:39:46 [ 12] [ 6] [194731] +19:39:46 [ 13] [ 4] [0320] +19:39:46 [ 14] [ 4] [1807] +19:39:46 [ 15] [ 4] [0320] +19:39:46 [ 18] [ 4] [6011] +19:39:46 [ 22] [ 3] [900] +19:39:46 [ 25] [ 2] [02] +19:39:46 [ 28] [ 9] [D00002000] +19:39:46 [ 32] [ 6] [220699] +19:39:46 [ 35] [ 32] [6213548000464394=180712016439590] +19:39:46 [ 37] [ 12] [507900118807] +19:39:46 [ 41] [ 8] [01001100] +19:39:46 [ 42] [ 15] [APTRA ] +19:39:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:39:46 [ 49] [ 3] [418] +19:39:46 [ 52] [ 16] [50849CA6C4B844B5] +19:39:46 ============================================================================ +19:39:46 + + +waiting on router queue for slot.... +19:39:46 Sending to : +19:39:46 ============================================================================ +19:39:46 ============================================================================ +19:39:46 Slot Id : <228> +19:39:46 Transaction Type : REQUEST +19:39:46 Received From : +19:39:46 ============================================================================ +19:39:46 FNo. Len. Field Value +19:39:46 ============================================================================ +19:39:46 [ 1] [ 4] [0200] +19:39:46 [ 2] [ 16] [6213548000464394] +19:39:46 [ 3] [ 6] [011000] +19:39:46 [ 4] [ 12] [000010000000] +19:39:46 [ 7] [ 10] [0320194731] +19:39:46 [ 11] [ 6] [223796] +19:39:46 [ 12] [ 6] [194731] +19:39:46 [ 13] [ 4] [0320] +19:39:46 [ 14] [ 4] [1807] +19:39:46 [ 15] [ 4] [0320] +19:39:46 [ 18] [ 4] [6011] +19:39:46 [ 22] [ 3] [900] +19:39:46 [ 25] [ 2] [02] +19:39:46 [ 28] [ 9] [D00002000] +19:39:46 [ 32] [ 6] [220699] +19:39:46 [ 35] [ 32] [6213548000464394=180712016439590] +19:39:46 [ 37] [ 12] [507900118807] +19:39:46 [ 41] [ 8] [01001100] +19:39:46 [ 42] [ 15] [APTRA ] +19:39:46 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:39:46 [ 49] [ 3] [418] +19:39:46 [ 52] [ 16] [4A49243E138773D5] +19:39:46 ============================================================================ +19:39:46 + + +waiting on router queue for slot.... +19:39:46 Sending to : <0> +19:39:46 ============================================================================ +19:39:46 ============================================================================ +19:39:46 Slot Id : <274> +19:39:46 Transaction Type : REQUEST +19:39:46 Received From : +19:39:46 ============================================================================ +19:39:46 FNo. Len. Field Value +19:39:46 ============================================================================ +19:39:46 [ 1] [ 4] [0800] +19:39:46 [ 7] [ 10] [0321025135] +19:39:46 [ 11] [ 6] [195135] +19:39:46 [ 37] [ 12] [57919195135] +19:39:46 [ 70] [ 3] [301] +19:39:46 ============================================================================ +19:39:46 + + +waiting on router queue for slot.... +19:39:46 Sending to : +19:39:46 ============================================================================ +19:39:46 ============================================================================ +19:39:46 Slot Id : <274> +19:39:46 Transaction Type : RESPONSE +19:39:46 Received From : +19:39:46 ============================================================================ +19:39:46 FNo. Len. Field Value +19:39:46 ============================================================================ +19:39:46 [ 1] [ 4] [0810] +19:39:46 [ 7] [ 10] [0321025135] +19:39:46 [ 11] [ 6] [195135] +19:39:46 [ 37] [ 12] [579191951350] +19:39:46 [ 39] [ 2] [00] +19:39:46 [ 70] [ 3] [810] +19:39:46 ============================================================================ +19:39:46 Calculate Source COMM Id = 6 +19:39:46 ============================================================================ +19:39:46 + + +waiting on router queue for slot.... +19:39:47 ============================================================================ +19:39:47 Slot Id : <228> +19:39:47 Transaction Type : RESPONSE +19:39:47 Received From : +19:39:47 ============================================================================ +19:39:47 FNo. Len. Field Value +19:39:47 ============================================================================ +19:39:47 [ 1] [ 4] [0210] +19:39:47 [ 2] [ 16] [6213548000464394] +19:39:47 [ 3] [ 6] [011000] +19:39:47 [ 4] [ 12] [000010000000] +19:39:47 [ 7] [ 10] [0320194731] +19:39:47 [ 11] [ 6] [223796] +19:39:47 [ 12] [ 6] [194731] +19:39:47 [ 13] [ 4] [0320] +19:39:47 [ 15] [ 4] [0320] +19:39:47 [ 18] [ 4] [6011] +19:39:47 [ 32] [ 6] [220699] +19:39:47 [ 35] [ 32] [6213548000464394=180712016439590] +19:39:47 [ 37] [ 12] [507900118807] +19:39:47 [ 38] [ 6] [279281] +19:39:47 [ 39] [ 2] [00] +19:39:47 [ 41] [ 8] [01001100] +19:39:47 [ 49] [ 3] [418] +19:39:47 [ 54] [ 40] [1001418C0000658660351002418C000065866035] +19:39:47 ============================================================================ +19:39:47 Sending to : +19:39:47 ============================================================================ +19:39:47 + + +waiting on router queue for slot.... +19:39:48 ============================================================================ +19:39:48 Slot Id : <228> +19:39:48 Transaction Type : RESPONSE +19:39:48 Received From : +19:39:48 ============================================================================ +19:39:48 FNo. Len. Field Value +19:39:48 ============================================================================ +19:39:48 [ 1] [ 4] [0210] +19:39:48 [ 2] [ 16] [6213548000464394] +19:39:48 [ 3] [ 6] [011000] +19:39:48 [ 4] [ 12] [000010000000] +19:39:48 [ 7] [ 10] [0320194731] +19:39:48 [ 11] [ 6] [223796] +19:39:48 [ 12] [ 6] [194731] +19:39:48 [ 13] [ 4] [0320] +19:39:48 [ 15] [ 4] [0320] +19:39:48 [ 18] [ 4] [6011] +19:39:48 [ 32] [ 6] [220699] +19:39:48 [ 35] [ 32] [6213548000464394=180712016439590] +19:39:48 [ 37] [ 12] [507900118807] +19:39:48 [ 38] [ 6] [279281] +19:39:48 [ 39] [ 2] [00] +19:39:48 [ 41] [ 8] [01001100] +19:39:48 [ 49] [ 3] [418] +19:39:48 [ 54] [ 40] [1001418C0000658660351002418C000065866035] +19:39:48 ============================================================================ +19:39:48 Calculate Source COMM Id = 1 +19:39:48 ============================================================================ +19:39:48 + + +waiting on router queue for slot.... +19:39:56 ============================================================================ +19:39:56 Slot Id : <264> +19:39:56 Transaction Type : REQUEST +19:39:56 Received From : +19:39:56 ============================================================================ +19:39:56 FNo. Len. Field Value +19:39:56 ============================================================================ +19:39:56 [ 1] [ 4] [0800] +19:39:56 [ 7] [ 10] [0320123903] +19:39:56 [ 11] [ 6] [158005] +19:39:56 [ 70] [ 3] [301] +19:39:56 ============================================================================ +19:39:56 + + +waiting on router queue for slot.... +19:39:56 Sending to : +19:39:56 ============================================================================ +19:39:56 ============================================================================ +19:39:56 Slot Id : <264> +19:39:56 Transaction Type : RESPONSE +19:39:56 Received From : +19:39:56 ============================================================================ +19:39:56 FNo. Len. Field Value +19:39:56 ============================================================================ +19:39:56 [ 1] [ 4] [0810] +19:39:56 [ 7] [ 10] [0320123903] +19:39:56 [ 11] [ 6] [158005] +19:39:56 [ 39] [ 2] [00] +19:39:56 [ 70] [ 3] [301] +19:39:56 ============================================================================ +19:39:56 Calculate Source COMM Id = 2 +19:39:56 ============================================================================ +19:39:56 + + +waiting on router queue for slot.... +19:39:57 ============================================================================ +19:39:57 Slot Id : <231> +19:39:57 Transaction Type : REQUEST +19:39:57 Received From : +19:39:57 ============================================================================ +19:39:57 FNo. Len. Field Value +19:39:57 ============================================================================ +19:39:57 [ 1] [ 4] [0800] +19:39:57 [ 7] [ 10] [0320124742] +19:39:57 [ 11] [ 6] [050398] +19:39:57 [ 37] [ 12] [57919050398] +19:39:57 [ 70] [ 3] [301] +19:39:57 ============================================================================ +19:39:57 + + +waiting on router queue for slot.... +19:39:57 Sending to : +19:39:57 ============================================================================ +19:39:57 ============================================================================ +19:39:57 Slot Id : <231> +19:39:57 Transaction Type : RESPONSE +19:39:57 Received From : +19:39:57 ============================================================================ +19:39:57 FNo. Len. Field Value +19:39:57 ============================================================================ +19:39:57 [ 1] [ 4] [0810] +19:39:57 [ 7] [ 10] [0320124742] +19:39:57 [ 11] [ 6] [050398] +19:39:57 [ 37] [ 12] [579190503980] +19:39:57 [ 39] [ 2] [00] +19:39:57 [ 70] [ 3] [810] +19:39:57 ============================================================================ +19:39:57 Calculate Source COMM Id = 1 +19:39:57 ============================================================================ +19:39:57 + + +waiting on router queue for slot.... +19:40:11 ============================================================================ +19:40:11 Slot Id : <220> +19:40:11 Transaction Type : REQUEST +19:40:11 Received From : +19:40:11 ============================================================================ +19:40:11 FNo. Len. Field Value +19:40:11 ============================================================================ +19:40:11 [ 1] [ 4] [0800] +19:40:11 [ 7] [ 10] [0320123918] +19:40:11 [ 11] [ 6] [158006] +19:40:11 [ 70] [ 3] [301] +19:40:11 ============================================================================ +19:40:11 + + +waiting on router queue for slot.... +19:40:11 Sending to : +19:40:11 ============================================================================ +19:40:11 ============================================================================ +19:40:11 Slot Id : <220> +19:40:11 Transaction Type : RESPONSE +19:40:11 Received From : +19:40:11 ============================================================================ +19:40:11 FNo. Len. Field Value +19:40:11 ============================================================================ +19:40:11 [ 1] [ 4] [0810] +19:40:11 [ 7] [ 10] [0320123918] +19:40:11 [ 11] [ 6] [158006] +19:40:11 [ 39] [ 2] [00] +19:40:11 [ 70] [ 3] [301] +19:40:11 ============================================================================ +19:40:11 Calculate Source COMM Id = 2 +19:40:11 ============================================================================ +19:40:11 + + +waiting on router queue for slot.... +19:40:27 ============================================================================ +19:40:27 Slot Id : <273> +19:40:27 Transaction Type : REQUEST +19:40:27 Received From : +19:40:27 ============================================================================ +19:40:27 FNo. Len. Field Value +19:40:27 ============================================================================ +19:40:27 [ 1] [ 4] [0800] +19:40:27 [ 7] [ 10] [0320123934] +19:40:27 [ 11] [ 6] [158007] +19:40:27 [ 70] [ 3] [301] +19:40:27 ============================================================================ +19:40:27 + + +waiting on router queue for slot.... +19:40:27 Sending to : +19:40:27 ============================================================================ +19:40:27 ============================================================================ +19:40:27 Slot Id : <273> +19:40:27 Transaction Type : RESPONSE +19:40:27 Received From : +19:40:27 ============================================================================ +19:40:27 FNo. Len. Field Value +19:40:27 ============================================================================ +19:40:27 [ 1] [ 4] [0810] +19:40:27 [ 7] [ 10] [0320123934] +19:40:27 [ 11] [ 6] [158007] +19:40:27 [ 39] [ 2] [00] +19:40:27 [ 70] [ 3] [301] +19:40:27 ============================================================================ +19:40:27 Calculate Source COMM Id = 2 +19:40:27 ============================================================================ +19:40:27 + + +waiting on router queue for slot.... +19:40:28 ============================================================================ +19:40:28 Slot Id : <279> +19:40:28 Transaction Type : REQUEST +19:40:28 Received From : +19:40:28 ============================================================================ +19:40:28 FNo. Len. Field Value +19:40:28 ============================================================================ +19:40:28 [ 1] [ 4] [0200] +19:40:28 [ 2] [ 16] [6688990105028805] +19:40:28 [ 3] [ 6] [300000] +19:40:28 [ 4] [ 12] [000000000000] +19:40:28 [ 7] [ 10] [0320194023] +19:40:28 [ 11] [ 6] [838058] +19:40:28 [ 12] [ 6] [194023] +19:40:28 [ 13] [ 4] [0320] +19:40:28 [ 15] [ 4] [0320] +19:40:28 [ 18] [ 4] [6011] +19:40:28 [ 22] [ 3] [900] +19:40:28 [ 25] [ 2] [02] +19:40:28 [ 28] [ 9] [D00000000] +19:40:28 [ 32] [ 6] [621354] +19:40:28 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:40:28 [ 37] [ 12] [507903790238] +19:40:28 [ 41] [ 8] [01009500] +19:40:28 [ 42] [ 15] [NATIVE ] +19:40:28 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +19:40:28 [ 49] [ 3] [418] +19:40:28 [ 52] [ 16] [BCF4781F9FE7508C] +19:40:28 ============================================================================ +19:40:28 + + +waiting on router queue for slot.... +19:40:28 Sending to : +19:40:28 ============================================================================ +19:40:28 Sending to : +19:40:28 ============================================================================ +19:40:29 ============================================================================ +19:40:29 Slot Id : <279> +19:40:29 Transaction Type : REQUEST +19:40:29 Received From : +19:40:29 ============================================================================ +19:40:29 FNo. Len. Field Value +19:40:29 ============================================================================ +19:40:29 [ 1] [ 4] [0200] +19:40:29 [ 2] [ 16] [6688990105028805] +19:40:29 [ 3] [ 6] [300000] +19:40:29 [ 4] [ 12] [000000000000] +19:40:29 [ 7] [ 10] [0320194023] +19:40:29 [ 11] [ 6] [838058] +19:40:29 [ 12] [ 6] [194023] +19:40:29 [ 13] [ 4] [0320] +19:40:29 [ 15] [ 4] [0320] +19:40:29 [ 18] [ 4] [6011] +19:40:29 [ 22] [ 3] [900] +19:40:29 [ 25] [ 2] [02] +19:40:29 [ 28] [ 9] [D00000000] +19:40:29 [ 32] [ 6] [621354] +19:40:29 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:40:29 [ 37] [ 12] [507903790238] +19:40:29 [ 41] [ 8] [01009500] +19:40:29 [ 42] [ 15] [NATIVE ] +19:40:29 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +19:40:29 [ 49] [ 3] [418] +19:40:29 [ 52] [ 16] [BCF4781F9FE7508C] +19:40:29 ============================================================================ +19:40:29 + + +waiting on router queue for slot.... +19:40:29 Sending to : +19:40:29 ============================================================================ +19:40:29 ============================================================================ +19:40:29 Slot Id : <279> +19:40:29 Transaction Type : REQUEST +19:40:29 Received From : +19:40:29 ============================================================================ +19:40:29 FNo. Len. Field Value +19:40:29 ============================================================================ +19:40:29 [ 1] [ 4] [0200] +19:40:29 [ 2] [ 16] [6688990105028805] +19:40:29 [ 3] [ 6] [300000] +19:40:29 [ 4] [ 12] [000000000000] +19:40:29 [ 7] [ 10] [0320194023] +19:40:29 [ 11] [ 6] [838058] +19:40:29 [ 12] [ 6] [194023] +19:40:29 [ 13] [ 4] [0320] +19:40:29 [ 15] [ 4] [0320] +19:40:29 [ 18] [ 4] [6011] +19:40:29 [ 22] [ 3] [900] +19:40:29 [ 25] [ 2] [02] +19:40:29 [ 28] [ 9] [D00000000] +19:40:29 [ 32] [ 6] [621354] +19:40:29 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:40:29 [ 37] [ 12] [507903790238] +19:40:29 [ 41] [ 8] [01009500] +19:40:29 [ 42] [ 15] [NATIVE ] +19:40:29 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +19:40:29 [ 49] [ 3] [418] +19:40:29 [ 52] [ 16] [F7AB51CB13BAF674] +19:40:29 ============================================================================ +19:40:29 + + +waiting on router queue for slot.... +19:40:29 Sending to : <4> +19:40:29 ============================================================================ +19:40:29 ============================================================================ +19:40:29 Slot Id : <279> +19:40:29 Transaction Type : RESPONSE +19:40:29 Received From : +19:40:29 ============================================================================ +19:40:29 FNo. Len. Field Value +19:40:29 ============================================================================ +19:40:29 [ 1] [ 4] [0210] +19:40:29 [ 2] [ 16] [6688990105028805] +19:40:29 [ 3] [ 6] [300000] +19:40:29 [ 4] [ 12] [000000000000] +19:40:29 [ 7] [ 10] [0320194023] +19:40:29 [ 11] [ 6] [838058] +19:40:29 [ 12] [ 6] [194023] +19:40:29 [ 13] [ 4] [0320] +19:40:29 [ 15] [ 4] [0320] +19:40:29 [ 18] [ 4] [6011] +19:40:29 [ 22] [ 3] [021] +19:40:29 [ 32] [ 6] [621354] +19:40:29 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:40:29 [ 37] [ 12] [507903790238] +19:40:29 [ 38] [ 6] [193818] +19:40:29 [ 39] [ 2] [55] +19:40:29 [ 41] [ 8] [01009500] +19:40:29 [ 49] [ 3] [418] +19:40:29 ============================================================================ +19:40:29 Sending to : +19:40:29 ============================================================================ +19:40:29 + + +waiting on router queue for slot.... +19:40:30 ============================================================================ +19:40:30 Slot Id : <279> +19:40:30 Transaction Type : RESPONSE +19:40:30 Received From : +19:40:30 ============================================================================ +19:40:30 FNo. Len. Field Value +19:40:30 ============================================================================ +19:40:30 [ 1] [ 4] [0210] +19:40:30 [ 2] [ 16] [6688990105028805] +19:40:30 [ 3] [ 6] [300000] +19:40:30 [ 4] [ 12] [000000000000] +19:40:30 [ 7] [ 10] [0320194023] +19:40:30 [ 11] [ 6] [838058] +19:40:30 [ 12] [ 6] [194023] +19:40:30 [ 13] [ 4] [0320] +19:40:30 [ 15] [ 4] [0320] +19:40:30 [ 18] [ 4] [6011] +19:40:30 [ 22] [ 3] [021] +19:40:30 [ 32] [ 6] [621354] +19:40:30 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:40:30 [ 37] [ 12] [507903790238] +19:40:30 [ 38] [ 6] [193818] +19:40:30 [ 39] [ 2] [55] +19:40:30 [ 41] [ 8] [01009500] +19:40:30 [ 49] [ 3] [418] +19:40:30 ============================================================================ +19:40:30 Calculate Source COMM Id = 0 +19:40:30 ============================================================================ +19:40:30 + + +waiting on router queue for slot.... +19:40:43 ============================================================================ +19:40:43 Slot Id : <239> +19:40:43 Transaction Type : REQUEST +19:40:43 Received From : +19:40:43 ============================================================================ +19:40:43 FNo. Len. Field Value +19:40:43 ============================================================================ +19:40:43 [ 1] [ 4] [0800] +19:40:43 [ 7] [ 10] [0320123950] +19:40:43 [ 11] [ 6] [158008] +19:40:43 [ 70] [ 3] [301] +19:40:43 ============================================================================ +19:40:43 + + +waiting on router queue for slot.... +19:40:43 Sending to : +19:40:43 ============================================================================ +19:40:43 ============================================================================ +19:40:43 Slot Id : <239> +19:40:43 Transaction Type : RESPONSE +19:40:43 Received From : +19:40:43 ============================================================================ +19:40:43 FNo. Len. Field Value +19:40:43 ============================================================================ +19:40:43 [ 1] [ 4] [0810] +19:40:43 [ 7] [ 10] [0320123950] +19:40:43 [ 11] [ 6] [158008] +19:40:43 [ 39] [ 2] [00] +19:40:43 [ 70] [ 3] [301] +19:40:43 ============================================================================ +19:40:43 Calculate Source COMM Id = 2 +19:40:43 ============================================================================ +19:40:43 + + +waiting on router queue for slot.... +19:40:43 ============================================================================ +19:40:43 Slot Id : <252> +19:40:43 Transaction Type : REQUEST +19:40:43 Received From : +19:40:43 ============================================================================ +19:40:43 FNo. Len. Field Value +19:40:43 ============================================================================ +19:40:43 [ 1] [ 4] [0800] +19:40:43 [ 2] [ 5] [02531] +19:40:43 [ 3] [ 6] [579198] +19:40:43 [ 7] [ 10] [0320124043] +19:40:43 [ 11] [ 6] [807554] +19:40:43 [ 15] [ 10] [0320124043] +19:40:43 [ 37] [ 11] [57919807554] +19:40:43 [ 70] [ 3] [001] +19:40:43 ============================================================================ +19:40:43 + + +waiting on router queue for slot.... +19:40:43 ============================================================================ +19:40:43 Slot Id : <252> +19:40:43 Transaction Type : RESPONSE +19:40:43 Received From : +19:40:43 ============================================================================ +19:40:43 FNo. Len. Field Value +19:40:43 ============================================================================ +19:40:43 [ 1] [ 4] [0810] +19:40:43 [ 7] [ 10] [0320124043] +19:40:43 [ 11] [ 6] [807554] +19:40:43 [ 15] [ 4] [0320] +19:40:43 [ 37] [ 12] [57919807554] +19:40:43 [ 39] [ 2] [00] +19:40:43 [ 70] [ 3] [001] +19:40:43 ============================================================================ +19:40:43 Sending to : +19:40:43 ============================================================================ +19:40:43 + + +waiting on router queue for slot.... +19:40:45 ============================================================================ +19:40:45 Slot Id : <272> +19:40:45 Transaction Type : REQUEST +19:40:45 Received From : +19:40:45 ============================================================================ +19:40:45 FNo. Len. Field Value +19:40:45 ============================================================================ +19:40:45 [ 1] [ 4] [0800] +19:40:45 [ 7] [ 10] [0320194031] +19:40:45 [ 11] [ 6] [072699] +19:40:45 [ 37] [ 12] [507919072699] +19:40:45 [ 70] [ 3] [ ] +19:40:45 ============================================================================ +19:40:45 + + +waiting on router queue for slot.... +19:40:45 Sending to : +19:40:45 ============================================================================ +19:40:45 ============================================================================ +19:40:45 Slot Id : <272> +19:40:45 Transaction Type : RESPONSE +19:40:45 Received From : +19:40:45 ============================================================================ +19:40:45 FNo. Len. Field Value +19:40:45 ============================================================================ +19:40:45 [ 1] [ 4] [0810] +19:40:45 [ 7] [ 10] [0320194031] +19:40:45 [ 11] [ 6] [072699] +19:40:45 [ 37] [ 12] [507919072699] +19:40:45 [ 39] [ 2] [91] +19:40:45 [ 70] [ 3] [ ] +19:40:45 ============================================================================ +19:40:45 Calculate Source COMM Id = 3 +19:40:45 ============================================================================ +19:40:45 + + +waiting on router queue for slot.... +19:40:48 ============================================================================ +19:40:48 Slot Id : <254> +19:40:48 Transaction Type : REQUEST +19:40:48 Received From : +19:40:48 ============================================================================ +19:40:48 FNo. Len. Field Value +19:40:48 ============================================================================ +19:40:48 [ 1] [ 4] [0200] +19:40:48 [ 2] [ 16] [6688990105028805] +19:40:48 [ 3] [ 6] [300000] +19:40:48 [ 4] [ 12] [000000000000] +19:40:48 [ 7] [ 10] [0320194043] +19:40:48 [ 11] [ 6] [838098] +19:40:48 [ 12] [ 6] [194043] +19:40:48 [ 13] [ 4] [0320] +19:40:48 [ 15] [ 4] [0320] +19:40:48 [ 18] [ 4] [6011] +19:40:48 [ 22] [ 3] [900] +19:40:48 [ 25] [ 2] [02] +19:40:48 [ 28] [ 9] [D00000000] +19:40:48 [ 32] [ 6] [621354] +19:40:48 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:40:48 [ 37] [ 12] [507903790239] +19:40:48 [ 41] [ 8] [01009500] +19:40:48 [ 42] [ 15] [NATIVE ] +19:40:48 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +19:40:48 [ 49] [ 3] [418] +19:40:48 [ 52] [ 16] [BCF4781F9FE7508C] +19:40:48 ============================================================================ +19:40:48 + + +waiting on router queue for slot.... +19:40:48 Sending to : +19:40:48 ============================================================================ +19:40:48 Sending to : +19:40:48 ============================================================================ +19:40:49 ============================================================================ +19:40:49 Slot Id : <254> +19:40:49 Transaction Type : REQUEST +19:40:49 Received From : +19:40:49 ============================================================================ +19:40:49 FNo. Len. Field Value +19:40:49 ============================================================================ +19:40:49 [ 1] [ 4] [0200] +19:40:49 [ 2] [ 16] [6688990105028805] +19:40:49 [ 3] [ 6] [300000] +19:40:49 [ 4] [ 12] [000000000000] +19:40:49 [ 7] [ 10] [0320194043] +19:40:49 [ 11] [ 6] [838098] +19:40:49 [ 12] [ 6] [194043] +19:40:49 [ 13] [ 4] [0320] +19:40:49 [ 15] [ 4] [0320] +19:40:49 [ 18] [ 4] [6011] +19:40:49 [ 22] [ 3] [900] +19:40:49 [ 25] [ 2] [02] +19:40:49 [ 28] [ 9] [D00000000] +19:40:49 [ 32] [ 6] [621354] +19:40:49 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:40:49 [ 37] [ 12] [507903790239] +19:40:49 [ 41] [ 8] [01009500] +19:40:49 [ 42] [ 15] [NATIVE ] +19:40:49 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +19:40:49 [ 49] [ 3] [418] +19:40:49 [ 52] [ 16] [BCF4781F9FE7508C] +19:40:49 ============================================================================ +19:40:49 + + +waiting on router queue for slot.... +19:40:49 Sending to : +19:40:49 ============================================================================ +19:40:49 ============================================================================ +19:40:49 Slot Id : <254> +19:40:49 Transaction Type : REQUEST +19:40:49 Received From : +19:40:49 ============================================================================ +19:40:49 FNo. Len. Field Value +19:40:49 ============================================================================ +19:40:49 [ 1] [ 4] [0200] +19:40:49 [ 2] [ 16] [6688990105028805] +19:40:49 [ 3] [ 6] [300000] +19:40:49 [ 4] [ 12] [000000000000] +19:40:49 [ 7] [ 10] [0320194043] +19:40:49 [ 11] [ 6] [838098] +19:40:49 [ 12] [ 6] [194043] +19:40:49 [ 13] [ 4] [0320] +19:40:49 [ 15] [ 4] [0320] +19:40:49 [ 18] [ 4] [6011] +19:40:49 [ 22] [ 3] [900] +19:40:49 [ 25] [ 2] [02] +19:40:49 [ 28] [ 9] [D00000000] +19:40:49 [ 32] [ 6] [621354] +19:40:49 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:40:49 [ 37] [ 12] [507903790239] +19:40:49 [ 41] [ 8] [01009500] +19:40:49 [ 42] [ 15] [NATIVE ] +19:40:49 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +19:40:49 [ 49] [ 3] [418] +19:40:49 [ 52] [ 16] [F7AB51CB13BAF674] +19:40:49 ============================================================================ +19:40:49 + + +waiting on router queue for slot.... +19:40:49 Sending to : <4> +19:40:49 ============================================================================ +19:40:49 ============================================================================ +19:40:49 Slot Id : <254> +19:40:49 Transaction Type : RESPONSE +19:40:49 Received From : +19:40:49 ============================================================================ +19:40:49 FNo. Len. Field Value +19:40:49 ============================================================================ +19:40:49 [ 1] [ 4] [0210] +19:40:49 [ 2] [ 16] [6688990105028805] +19:40:49 [ 3] [ 6] [300000] +19:40:49 [ 4] [ 12] [000000000000] +19:40:49 [ 7] [ 10] [0320194043] +19:40:49 [ 11] [ 6] [838098] +19:40:49 [ 12] [ 6] [194043] +19:40:49 [ 13] [ 4] [0320] +19:40:49 [ 15] [ 4] [0320] +19:40:49 [ 18] [ 4] [6011] +19:40:49 [ 22] [ 3] [021] +19:40:49 [ 32] [ 6] [621354] +19:40:49 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:40:49 [ 37] [ 12] [507903790239] +19:40:49 [ 38] [ 6] [193838] +19:40:49 [ 39] [ 2] [55] +19:40:49 [ 41] [ 8] [01009500] +19:40:49 [ 49] [ 3] [418] +19:40:49 ============================================================================ +19:40:49 Sending to : +19:40:49 ============================================================================ +19:40:49 + + +waiting on router queue for slot.... +19:40:50 ============================================================================ +19:40:50 Slot Id : <254> +19:40:50 Transaction Type : RESPONSE +19:40:50 Received From : +19:40:50 ============================================================================ +19:40:50 FNo. Len. Field Value +19:40:50 ============================================================================ +19:40:50 [ 1] [ 4] [0210] +19:40:50 [ 2] [ 16] [6688990105028805] +19:40:50 [ 3] [ 6] [300000] +19:40:50 [ 4] [ 12] [000000000000] +19:40:50 [ 7] [ 10] [0320194043] +19:40:50 [ 11] [ 6] [838098] +19:40:50 [ 12] [ 6] [194043] +19:40:50 [ 13] [ 4] [0320] +19:40:50 [ 15] [ 4] [0320] +19:40:50 [ 18] [ 4] [6011] +19:40:50 [ 22] [ 3] [021] +19:40:50 [ 32] [ 6] [621354] +19:40:50 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:40:50 [ 37] [ 12] [507903790239] +19:40:50 [ 38] [ 6] [193838] +19:40:50 [ 39] [ 2] [55] +19:40:50 [ 41] [ 8] [01009500] +19:40:50 [ 49] [ 3] [418] +19:40:50 ============================================================================ +19:40:50 Calculate Source COMM Id = 0 +19:40:50 ============================================================================ +19:40:50 + + +waiting on router queue for slot.... +19:40:51 ============================================================================ +19:40:51 Slot Id : <282> +19:40:51 Transaction Type : REQUEST +19:40:51 Received From : +19:40:51 ============================================================================ +19:40:51 FNo. Len. Field Value +19:40:51 ============================================================================ +19:40:51 [ 1] [ 4] [0800] +19:40:51 [ 7] [ 10] [0321025240] +19:40:51 [ 11] [ 6] [195240] +19:40:51 [ 37] [ 12] [57919195240] +19:40:51 [ 70] [ 3] [301] +19:40:51 ============================================================================ +19:40:51 + + +waiting on router queue for slot.... +19:40:51 Sending to : +19:40:51 ============================================================================ +19:40:51 ============================================================================ +19:40:51 Slot Id : <282> +19:40:51 Transaction Type : RESPONSE +19:40:51 Received From : +19:40:51 ============================================================================ +19:40:51 FNo. Len. Field Value +19:40:51 ============================================================================ +19:40:51 [ 1] [ 4] [0810] +19:40:51 [ 7] [ 10] [0321025240] +19:40:51 [ 11] [ 6] [195240] +19:40:51 [ 37] [ 12] [579191952400] +19:40:51 [ 39] [ 2] [00] +19:40:51 [ 70] [ 3] [810] +19:40:51 ============================================================================ +19:40:51 Calculate Source COMM Id = 6 +19:40:51 ============================================================================ +19:40:51 + + +waiting on router queue for slot.... +19:40:55 ============================================================================ +19:40:55 Slot Id : <241> +19:40:55 Transaction Type : REQUEST +19:40:55 Received From : +19:40:55 ============================================================================ +19:40:55 FNo. Len. Field Value +19:40:55 ============================================================================ +19:40:55 [ 1] [ 4] [0800] +19:40:55 [ 7] [ 10] [0320124000] +19:40:55 [ 11] [ 6] [158009] +19:40:55 [ 70] [ 3] [301] +19:40:55 ============================================================================ +19:40:55 + + +waiting on router queue for slot.... +19:40:55 Sending to : +19:40:55 ============================================================================ +19:40:55 ============================================================================ +19:40:55 Slot Id : <241> +19:40:55 Transaction Type : RESPONSE +19:40:55 Received From : +19:40:55 ============================================================================ +19:40:55 FNo. Len. Field Value +19:40:55 ============================================================================ +19:40:55 [ 1] [ 4] [0810] +19:40:55 [ 7] [ 10] [0320124000] +19:40:55 [ 11] [ 6] [158009] +19:40:55 [ 39] [ 2] [00] +19:40:55 [ 70] [ 3] [301] +19:40:55 ============================================================================ +19:40:55 Calculate Source COMM Id = 2 +19:40:55 ============================================================================ +19:40:55 + + +waiting on router queue for slot.... +19:41:05 ============================================================================ +19:41:05 Slot Id : <266> +19:41:05 Transaction Type : REQUEST +19:41:05 Received From : +19:41:05 ============================================================================ +19:41:05 FNo. Len. Field Value +19:41:05 ============================================================================ +19:41:05 [ 1] [ 4] [0200] +19:41:05 [ 2] [ 16] [6213544001420535] +19:41:05 [ 3] [ 6] [010000] +19:41:05 [ 4] [ 12] [000200000000] +19:41:05 [ 7] [ 10] [0320124011] +19:41:05 [ 11] [ 6] [271458] +19:41:05 [ 12] [ 6] [194011] +19:41:05 [ 13] [ 4] [0320] +19:41:05 [ 14] [ 4] [4912] +19:41:05 [ 15] [ 4] [0320] +19:41:05 [ 18] [ 4] [6011] +19:41:05 [ 19] [ 3] [418] +19:41:05 [ 22] [ 3] [021] +19:41:05 [ 25] [ 2] [01] +19:41:05 [ 28] [ 9] [D00002000] +19:41:05 [ 32] [ 6] [180893] +19:41:05 [ 35] [ 32] [6213544001420535=491212012053147] +19:41:05 [ 37] [ 12] [507912271458] +19:41:05 [ 41] [ 8] [0523XYNG] +19:41:05 [ 42] [ 15] [999999 ] +19:41:05 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +19:41:05 [ 49] [ 3] [418] +19:41:05 [ 52] [ 16] [31A6D45E340BF259] +19:41:05 ============================================================================ +19:41:05 + + +waiting on router queue for slot.... +19:41:05 Sending to : +19:41:05 ============================================================================ +19:41:05 Sending to : +19:41:05 ============================================================================ +19:41:05 ============================================================================ +19:41:05 Slot Id : <266> +19:41:05 Transaction Type : REQUEST +19:41:05 Received From : +19:41:05 ============================================================================ +19:41:05 FNo. Len. Field Value +19:41:05 ============================================================================ +19:41:05 [ 1] [ 4] [0200] +19:41:05 [ 2] [ 16] [6213544001420535] +19:41:05 [ 3] [ 6] [010000] +19:41:05 [ 4] [ 12] [000200000000] +19:41:05 [ 7] [ 10] [0320124011] +19:41:05 [ 11] [ 6] [271458] +19:41:05 [ 12] [ 6] [194011] +19:41:05 [ 13] [ 4] [0320] +19:41:05 [ 14] [ 4] [4912] +19:41:05 [ 15] [ 4] [0320] +19:41:05 [ 18] [ 4] [6011] +19:41:05 [ 19] [ 3] [418] +19:41:05 [ 22] [ 3] [021] +19:41:05 [ 25] [ 2] [01] +19:41:05 [ 28] [ 9] [D00002000] +19:41:05 [ 32] [ 6] [180893] +19:41:05 [ 35] [ 32] [6213544001420535=491212012053147] +19:41:05 [ 37] [ 12] [507912271458] +19:41:05 [ 41] [ 8] [0523XYNG] +19:41:05 [ 42] [ 15] [999999 ] +19:41:05 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +19:41:05 [ 49] [ 3] [418] +19:41:05 [ 52] [ 16] [31A6D45E340BF259] +19:41:05 ============================================================================ +19:41:05 + + +waiting on router queue for slot.... +19:41:05 Sending to : +19:41:05 ============================================================================ +19:41:05 ============================================================================ +19:41:05 Slot Id : <266> +19:41:05 Transaction Type : REQUEST +19:41:05 Received From : +19:41:05 ============================================================================ +19:41:05 FNo. Len. Field Value +19:41:05 ============================================================================ +19:41:05 [ 1] [ 4] [0200] +19:41:05 [ 2] [ 16] [6213544001420535] +19:41:05 [ 3] [ 6] [010000] +19:41:05 [ 4] [ 12] [000200000000] +19:41:05 [ 7] [ 10] [0320124011] +19:41:05 [ 11] [ 6] [271458] +19:41:05 [ 12] [ 6] [194011] +19:41:05 [ 13] [ 4] [0320] +19:41:05 [ 14] [ 4] [4912] +19:41:05 [ 15] [ 4] [0320] +19:41:05 [ 18] [ 4] [6011] +19:41:05 [ 19] [ 3] [418] +19:41:05 [ 22] [ 3] [021] +19:41:05 [ 25] [ 2] [01] +19:41:05 [ 28] [ 9] [D00002000] +19:41:05 [ 32] [ 6] [180893] +19:41:05 [ 35] [ 32] [6213544001420535=491212012053147] +19:41:05 [ 37] [ 12] [507912271458] +19:41:05 [ 41] [ 8] [0523XYNG] +19:41:05 [ 42] [ 15] [999999 ] +19:41:05 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +19:41:05 [ 49] [ 3] [418] +19:41:05 [ 52] [ 16] [FD50D527677CA6F8] +19:41:05 ============================================================================ +19:41:05 + + +waiting on router queue for slot.... +19:41:05 Sending to : <0> +19:41:05 ============================================================================ +19:41:05 ============================================================================ +19:41:05 Slot Id : <266> +19:41:05 Transaction Type : RESPONSE +19:41:05 Received From : +19:41:05 ============================================================================ +19:41:05 FNo. Len. Field Value +19:41:05 ============================================================================ +19:41:05 [ 1] [ 4] [0210] +19:41:05 [ 2] [ 16] [6213544001420535] +19:41:05 [ 3] [ 6] [010000] +19:41:05 [ 4] [ 12] [000200000000] +19:41:05 [ 7] [ 10] [0320124011] +19:41:05 [ 11] [ 6] [271458] +19:41:05 [ 12] [ 6] [194011] +19:41:05 [ 13] [ 4] [0320] +19:41:05 [ 15] [ 4] [0320] +19:41:05 [ 18] [ 4] [6011] +19:41:05 [ 19] [ 3] [418] +19:41:05 [ 22] [ 3] [021] +19:41:05 [ 32] [ 6] [180893] +19:41:05 [ 35] [ 32] [6213544001420535=491212012053147] +19:41:05 [ 37] [ 12] [507912271458] +19:41:05 [ 39] [ 2] [61] +19:41:05 [ 41] [ 8] [0523XYNG] +19:41:05 [ 49] [ 3] [418] +19:41:05 ============================================================================ +19:41:05 Sending to : +19:41:05 ============================================================================ +19:41:05 + + +waiting on router queue for slot.... +19:41:06 ============================================================================ +19:41:06 Slot Id : <266> +19:41:06 Transaction Type : RESPONSE +19:41:06 Received From : +19:41:06 ============================================================================ +19:41:06 FNo. Len. Field Value +19:41:06 ============================================================================ +19:41:06 [ 1] [ 4] [0210] +19:41:06 [ 2] [ 16] [6213544001420535] +19:41:06 [ 3] [ 6] [010000] +19:41:06 [ 4] [ 12] [000200000000] +19:41:06 [ 7] [ 10] [0320124011] +19:41:06 [ 11] [ 6] [271458] +19:41:06 [ 12] [ 6] [194011] +19:41:06 [ 13] [ 4] [0320] +19:41:06 [ 15] [ 4] [0320] +19:41:06 [ 18] [ 4] [6011] +19:41:06 [ 19] [ 3] [418] +19:41:06 [ 22] [ 3] [021] +19:41:06 [ 32] [ 6] [180893] +19:41:06 [ 35] [ 32] [6213544001420535=491212012053147] +19:41:06 [ 37] [ 12] [507912271458] +19:41:06 [ 39] [ 2] [61] +19:41:06 [ 41] [ 8] [0523XYNG] +19:41:06 [ 49] [ 3] [418] +19:41:06 ============================================================================ +19:41:06 Calculate Source COMM Id = 2 +19:41:06 ============================================================================ +19:41:06 + + +waiting on router queue for slot.... +19:41:21 ============================================================================ +19:41:21 Slot Id : <224> +19:41:21 Transaction Type : REQUEST +19:41:21 Received From : +19:41:21 ============================================================================ +19:41:21 FNo. Len. Field Value +19:41:21 ============================================================================ +19:41:21 [ 1] [ 4] [0800] +19:41:21 [ 7] [ 10] [0320124028] +19:41:21 [ 11] [ 6] [158010] +19:41:21 [ 70] [ 3] [301] +19:41:21 ============================================================================ +19:41:21 + + +waiting on router queue for slot.... +19:41:21 Sending to : +19:41:21 ============================================================================ +19:41:21 ============================================================================ +19:41:21 Slot Id : <224> +19:41:21 Transaction Type : RESPONSE +19:41:21 Received From : +19:41:21 ============================================================================ +19:41:21 FNo. Len. Field Value +19:41:21 ============================================================================ +19:41:21 [ 1] [ 4] [0810] +19:41:21 [ 7] [ 10] [0320124028] +19:41:21 [ 11] [ 6] [158010] +19:41:21 [ 39] [ 2] [00] +19:41:21 [ 70] [ 3] [301] +19:41:21 ============================================================================ +19:41:21 Calculate Source COMM Id = 2 +19:41:21 ============================================================================ +19:41:21 + + +waiting on router queue for slot.... +19:41:23 ============================================================================ +19:41:23 Slot Id : <280> +19:41:23 Transaction Type : REQUEST +19:41:23 Received From : +19:41:23 ============================================================================ +19:41:23 FNo. Len. Field Value +19:41:23 ============================================================================ +19:41:23 [ 1] [ 4] [0800] +19:41:23 [ 7] [ 10] [0320123912] +19:41:23 [ 11] [ 6] [096055] +19:41:23 [ 37] [ 12] [57919096055] +19:41:23 [ 70] [ 3] [301] +19:41:23 ============================================================================ +19:41:23 + + +waiting on router queue for slot.... +19:41:23 Sending to : +19:41:23 ============================================================================ +19:41:23 ============================================================================ +19:41:23 Slot Id : <280> +19:41:23 Transaction Type : RESPONSE +19:41:23 Received From : +19:41:23 ============================================================================ +19:41:23 FNo. Len. Field Value +19:41:23 ============================================================================ +19:41:23 [ 1] [ 4] [0810] +19:41:23 [ 7] [ 10] [0320123912] +19:41:23 [ 11] [ 6] [096055] +19:41:23 [ 37] [ 12] [579190960550] +19:41:23 [ 39] [ 2] [00] +19:41:23 [ 70] [ 3] [810] +19:41:23 ============================================================================ +19:41:23 Calculate Source COMM Id = 4 +19:41:23 ============================================================================ +19:41:23 + + +waiting on router queue for slot.... +19:41:27 ============================================================================ +19:41:27 Slot Id : <276> +19:41:27 Transaction Type : REQUEST +19:41:27 Received From : +19:41:27 ============================================================================ +19:41:27 FNo. Len. Field Value +19:41:27 ============================================================================ +19:41:27 [ 1] [ 4] [0200] +19:41:27 [ 2] [ 16] [6688990105028805] +19:41:27 [ 3] [ 6] [300000] +19:41:27 [ 4] [ 12] [000000000000] +19:41:27 [ 7] [ 10] [0320194122] +19:41:27 [ 11] [ 6] [838185] +19:41:27 [ 12] [ 6] [194122] +19:41:27 [ 13] [ 4] [0320] +19:41:27 [ 15] [ 4] [0320] +19:41:27 [ 18] [ 4] [6011] +19:41:27 [ 22] [ 3] [900] +19:41:27 [ 25] [ 2] [02] +19:41:27 [ 28] [ 9] [D00000000] +19:41:27 [ 32] [ 6] [621354] +19:41:27 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:41:27 [ 37] [ 12] [507903790240] +19:41:27 [ 41] [ 8] [01009500] +19:41:27 [ 42] [ 15] [NATIVE ] +19:41:27 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +19:41:27 [ 49] [ 3] [418] +19:41:27 [ 52] [ 16] [BCF4781F9FE7508C] +19:41:27 ============================================================================ +19:41:27 + + +waiting on router queue for slot.... +19:41:27 Sending to : +19:41:27 ============================================================================ +19:41:27 Sending to : +19:41:27 ============================================================================ +19:41:28 ============================================================================ +19:41:28 Slot Id : <276> +19:41:28 Transaction Type : REQUEST +19:41:28 Received From : +19:41:28 ============================================================================ +19:41:28 FNo. Len. Field Value +19:41:28 ============================================================================ +19:41:28 [ 1] [ 4] [0200] +19:41:28 [ 2] [ 16] [6688990105028805] +19:41:28 [ 3] [ 6] [300000] +19:41:28 [ 4] [ 12] [000000000000] +19:41:28 [ 7] [ 10] [0320194122] +19:41:28 [ 11] [ 6] [838185] +19:41:28 [ 12] [ 6] [194122] +19:41:28 [ 13] [ 4] [0320] +19:41:28 [ 15] [ 4] [0320] +19:41:28 [ 18] [ 4] [6011] +19:41:28 [ 22] [ 3] [900] +19:41:28 [ 25] [ 2] [02] +19:41:28 [ 28] [ 9] [D00000000] +19:41:28 [ 32] [ 6] [621354] +19:41:28 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:41:28 [ 37] [ 12] [507903790240] +19:41:28 [ 41] [ 8] [01009500] +19:41:28 [ 42] [ 15] [NATIVE ] +19:41:28 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +19:41:28 [ 49] [ 3] [418] +19:41:28 [ 52] [ 16] [BCF4781F9FE7508C] +19:41:28 ============================================================================ +19:41:28 + + +waiting on router queue for slot.... +19:41:28 Sending to : +19:41:28 ============================================================================ +19:41:28 ============================================================================ +19:41:28 Slot Id : <276> +19:41:28 Transaction Type : REQUEST +19:41:28 Received From : +19:41:28 ============================================================================ +19:41:28 FNo. Len. Field Value +19:41:28 ============================================================================ +19:41:28 [ 1] [ 4] [0200] +19:41:28 [ 2] [ 16] [6688990105028805] +19:41:28 [ 3] [ 6] [300000] +19:41:28 [ 4] [ 12] [000000000000] +19:41:28 [ 7] [ 10] [0320194122] +19:41:28 [ 11] [ 6] [838185] +19:41:28 [ 12] [ 6] [194122] +19:41:28 [ 13] [ 4] [0320] +19:41:28 [ 15] [ 4] [0320] +19:41:28 [ 18] [ 4] [6011] +19:41:28 [ 22] [ 3] [900] +19:41:28 [ 25] [ 2] [02] +19:41:28 [ 28] [ 9] [D00000000] +19:41:28 [ 32] [ 6] [621354] +19:41:28 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:41:28 [ 37] [ 12] [507903790240] +19:41:28 [ 41] [ 8] [01009500] +19:41:28 [ 42] [ 15] [NATIVE ] +19:41:28 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +19:41:28 [ 49] [ 3] [418] +19:41:28 [ 52] [ 16] [F7AB51CB13BAF674] +19:41:28 ============================================================================ +19:41:28 + + +waiting on router queue for slot.... +19:41:28 Sending to : <4> +19:41:28 ============================================================================ +19:41:28 ============================================================================ +19:41:28 Slot Id : <276> +19:41:28 Transaction Type : RESPONSE +19:41:28 Received From : +19:41:28 ============================================================================ +19:41:28 FNo. Len. Field Value +19:41:28 ============================================================================ +19:41:28 [ 1] [ 4] [0210] +19:41:28 [ 2] [ 16] [6688990105028805] +19:41:28 [ 3] [ 6] [300000] +19:41:28 [ 4] [ 12] [000000000000] +19:41:28 [ 7] [ 10] [0320194122] +19:41:28 [ 11] [ 6] [838185] +19:41:28 [ 12] [ 6] [194122] +19:41:28 [ 13] [ 4] [0320] +19:41:28 [ 15] [ 4] [0320] +19:41:28 [ 18] [ 4] [6011] +19:41:28 [ 22] [ 3] [021] +19:41:28 [ 32] [ 6] [621354] +19:41:28 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:41:28 [ 37] [ 12] [507903790240] +19:41:28 [ 38] [ 6] [193917] +19:41:28 [ 39] [ 2] [75] +19:41:28 [ 41] [ 8] [01009500] +19:41:28 [ 49] [ 3] [418] +19:41:28 ============================================================================ +19:41:28 Sending to : +19:41:28 ============================================================================ +19:41:28 + + +waiting on router queue for slot.... +19:41:29 ============================================================================ +19:41:29 Slot Id : <276> +19:41:29 Transaction Type : RESPONSE +19:41:29 Received From : +19:41:29 ============================================================================ +19:41:29 FNo. Len. Field Value +19:41:29 ============================================================================ +19:41:29 [ 1] [ 4] [0210] +19:41:29 [ 2] [ 16] [6688990105028805] +19:41:29 [ 3] [ 6] [300000] +19:41:29 [ 4] [ 12] [000000000000] +19:41:29 [ 7] [ 10] [0320194122] +19:41:29 [ 11] [ 6] [838185] +19:41:29 [ 12] [ 6] [194122] +19:41:29 [ 13] [ 4] [0320] +19:41:29 [ 15] [ 4] [0320] +19:41:29 [ 18] [ 4] [6011] +19:41:29 [ 22] [ 3] [021] +19:41:29 [ 32] [ 6] [621354] +19:41:29 [ 35] [ 37] [6688990105028805=43071231880510200000] +19:41:29 [ 37] [ 12] [507903790240] +19:41:29 [ 38] [ 6] [193917] +19:41:29 [ 39] [ 2] [75] +19:41:29 [ 41] [ 8] [01009500] +19:41:29 [ 49] [ 3] [418] +19:41:29 ============================================================================ +19:41:29 Calculate Source COMM Id = 0 +19:41:29 ============================================================================ +19:41:29 + + +waiting on router queue for slot.... +19:41:31 ============================================================================ +19:41:31 Slot Id : <219> +19:41:31 Transaction Type : REQUEST +19:41:31 Received From : +19:41:31 ============================================================================ +19:41:31 FNo. Len. Field Value +19:41:31 ============================================================================ +19:41:31 [ 1] [ 4] [0800] +19:41:31 [ 7] [ 10] [0320124038] +19:41:31 [ 11] [ 6] [158011] +19:41:31 [ 70] [ 3] [301] +19:41:31 ============================================================================ +19:41:31 + + +waiting on router queue for slot.... +19:41:31 Sending to : +19:41:31 ============================================================================ +19:41:31 ============================================================================ +19:41:31 Slot Id : <219> +19:41:31 Transaction Type : RESPONSE +19:41:31 Received From : +19:41:31 ============================================================================ +19:41:31 FNo. Len. Field Value +19:41:31 ============================================================================ +19:41:31 [ 1] [ 4] [0810] +19:41:31 [ 7] [ 10] [0320124038] +19:41:31 [ 11] [ 6] [158011] +19:41:31 [ 39] [ 2] [00] +19:41:31 [ 70] [ 3] [301] +19:41:31 ============================================================================ +19:41:31 Calculate Source COMM Id = 2 +19:41:31 ============================================================================ +19:41:31 + + +waiting on router queue for slot.... +19:41:42 ============================================================================ +19:41:42 Slot Id : <258> +19:41:42 Transaction Type : REQUEST +19:41:42 Received From : +19:41:42 ============================================================================ +19:41:42 FNo. Len. Field Value +19:41:42 ============================================================================ +19:41:42 [ 1] [ 4] [0800] +19:41:42 [ 7] [ 10] [0320124049] +19:41:42 [ 11] [ 6] [158012] +19:41:42 [ 70] [ 3] [301] +19:41:42 ============================================================================ +19:41:42 + + +waiting on router queue for slot.... +19:41:42 Sending to : +19:41:42 ============================================================================ +19:41:42 ============================================================================ +19:41:42 Slot Id : <258> +19:41:42 Transaction Type : RESPONSE +19:41:42 Received From : +19:41:42 ============================================================================ +19:41:42 FNo. Len. Field Value +19:41:42 ============================================================================ +19:41:42 [ 1] [ 4] [0810] +19:41:42 [ 7] [ 10] [0320124049] +19:41:42 [ 11] [ 6] [158012] +19:41:42 [ 39] [ 2] [00] +19:41:42 [ 70] [ 3] [301] +19:41:42 ============================================================================ +19:41:42 Calculate Source COMM Id = 2 +19:41:42 ============================================================================ +19:41:42 + + +waiting on router queue for slot.... +19:41:45 ============================================================================ +19:41:45 Slot Id : <290> +19:41:45 Transaction Type : REQUEST +19:41:45 Received From : +19:41:45 ============================================================================ +19:41:45 FNo. Len. Field Value +19:41:45 ============================================================================ +19:41:45 [ 1] [ 4] [0800] +19:41:45 [ 2] [ 5] [02531] +19:41:45 [ 3] [ 6] [579198] +19:41:45 [ 7] [ 10] [0320124145] +19:41:45 [ 11] [ 6] [807555] +19:41:45 [ 15] [ 10] [0320124145] +19:41:45 [ 37] [ 11] [57919807555] +19:41:45 [ 70] [ 3] [001] +19:41:45 ============================================================================ +19:41:45 + + +waiting on router queue for slot.... +19:41:45 ============================================================================ +19:41:45 Slot Id : <290> +19:41:45 Transaction Type : RESPONSE +19:41:45 Received From : +19:41:45 ============================================================================ +19:41:45 FNo. Len. Field Value +19:41:45 ============================================================================ +19:41:45 [ 1] [ 4] [0810] +19:41:45 [ 7] [ 10] [0320124145] +19:41:45 [ 11] [ 6] [807555] +19:41:45 [ 15] [ 4] [0320] +19:41:45 [ 37] [ 12] [57919807555] +19:41:45 [ 39] [ 2] [00] +19:41:45 [ 70] [ 3] [001] +19:41:45 ============================================================================ +19:41:45 Sending to : +19:41:45 ============================================================================ +19:41:45 + + +waiting on router queue for slot.... +19:41:52 ============================================================================ +19:41:52 Slot Id : <284> +19:41:52 Transaction Type : REQUEST +19:41:52 Received From : +19:41:52 ============================================================================ +19:41:52 FNo. Len. Field Value +19:41:52 ============================================================================ +19:41:52 [ 1] [ 4] [0200] +19:41:52 [ 2] [ 16] [1808931400009500] +19:41:52 [ 3] [ 6] [010000] +19:41:52 [ 4] [ 12] [000100000000] +19:41:52 [ 7] [ 10] [0320193941] +19:41:52 [ 11] [ 6] [956455] +19:41:52 [ 12] [ 6] [193941] +19:41:52 [ 13] [ 4] [0320] +19:41:52 [ 15] [ 4] [0320] +19:41:52 [ 18] [ 4] [6011] +19:41:52 [ 19] [ 3] [418] +19:41:52 [ 22] [ 3] [021] +19:41:52 [ 25] [ 2] [01] +19:41:52 [ 28] [ 9] [D00002000] +19:41:52 [ 32] [ 6] [668899] +19:41:52 [ 35] [ 27] [1808931400009500=1803500899] +19:41:52 [ 37] [ 12] [507901604379] +19:41:52 [ 41] [ 8] [03202001] +19:41:52 [ 42] [ 15] [APT ] +19:41:52 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:41:52 [ 49] [ 3] [418] +19:41:52 [ 52] [ 16] [8469DDDEFD5503A0] +19:41:52 ============================================================================ +19:41:52 + + +waiting on router queue for slot.... +19:41:52 Sending to : +19:41:52 ============================================================================ +19:41:52 Sending to : +19:41:52 ============================================================================ +19:41:52 ============================================================================ +19:41:52 Slot Id : <284> +19:41:52 Transaction Type : REQUEST +19:41:52 Received From : +19:41:52 ============================================================================ +19:41:52 FNo. Len. Field Value +19:41:52 ============================================================================ +19:41:52 [ 1] [ 4] [0200] +19:41:52 [ 2] [ 16] [1808931400009500] +19:41:52 [ 3] [ 6] [010000] +19:41:52 [ 4] [ 12] [000100000000] +19:41:52 [ 7] [ 10] [0320193941] +19:41:52 [ 11] [ 6] [956455] +19:41:52 [ 12] [ 6] [193941] +19:41:52 [ 13] [ 4] [0320] +19:41:52 [ 15] [ 4] [0320] +19:41:52 [ 18] [ 4] [6011] +19:41:52 [ 19] [ 3] [418] +19:41:52 [ 22] [ 3] [021] +19:41:52 [ 25] [ 2] [01] +19:41:52 [ 28] [ 9] [D00002000] +19:41:52 [ 32] [ 6] [668899] +19:41:52 [ 35] [ 27] [1808931400009500=1803500899] +19:41:52 [ 37] [ 12] [507901604379] +19:41:52 [ 41] [ 8] [03202001] +19:41:52 [ 42] [ 15] [APT ] +19:41:52 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:41:52 [ 49] [ 3] [418] +19:41:52 [ 52] [ 16] [8469DDDEFD5503A0] +19:41:52 ============================================================================ +19:41:52 + + +waiting on router queue for slot.... +19:41:52 Sending to : +19:41:52 ============================================================================ +19:41:52 ============================================================================ +19:41:52 Slot Id : <284> +19:41:52 Transaction Type : REQUEST +19:41:52 Received From : +19:41:52 ============================================================================ +19:41:52 FNo. Len. Field Value +19:41:52 ============================================================================ +19:41:52 [ 1] [ 4] [0200] +19:41:52 [ 2] [ 16] [1808931400009500] +19:41:52 [ 3] [ 6] [010000] +19:41:52 [ 4] [ 12] [000100000000] +19:41:52 [ 7] [ 10] [0320193941] +19:41:52 [ 11] [ 6] [956455] +19:41:52 [ 12] [ 6] [193941] +19:41:52 [ 13] [ 4] [0320] +19:41:52 [ 15] [ 4] [0320] +19:41:52 [ 18] [ 4] [6011] +19:41:52 [ 19] [ 3] [418] +19:41:52 [ 22] [ 3] [021] +19:41:52 [ 25] [ 2] [01] +19:41:52 [ 28] [ 9] [D00002000] +19:41:52 [ 32] [ 6] [668899] +19:41:52 [ 35] [ 27] [1808931400009500=1803500899] +19:41:52 [ 37] [ 12] [507901604379] +19:41:52 [ 41] [ 8] [03202001] +19:41:52 [ 42] [ 15] [APT ] +19:41:52 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:41:52 [ 49] [ 3] [418] +19:41:52 [ 52] [ 16] [C5E42789A6EE4629] +19:41:52 ============================================================================ +19:41:52 + + +waiting on router queue for slot.... +19:41:52 Sending to : <2> +19:41:52 ============================================================================ +19:41:53 ============================================================================ +19:41:53 Slot Id : <287> +19:41:53 Transaction Type : REQUEST +19:41:53 Received From : +19:41:53 ============================================================================ +19:41:53 FNo. Len. Field Value +19:41:53 ============================================================================ +19:41:53 [ 1] [ 4] [0800] +19:41:53 [ 7] [ 10] [0320124059] +19:41:53 [ 11] [ 6] [158013] +19:41:53 [ 70] [ 3] [301] +19:41:53 ============================================================================ +19:41:53 + + +waiting on router queue for slot.... +19:41:53 Sending to : +19:41:53 ============================================================================ +19:41:53 ============================================================================ +19:41:53 Slot Id : <287> +19:41:53 Transaction Type : RESPONSE +19:41:53 Received From : +19:41:53 ============================================================================ +19:41:53 FNo. Len. Field Value +19:41:53 ============================================================================ +19:41:53 [ 1] [ 4] [0810] +19:41:53 [ 7] [ 10] [0320124059] +19:41:53 [ 11] [ 6] [158013] +19:41:53 [ 39] [ 2] [00] +19:41:53 [ 70] [ 3] [301] +19:41:53 ============================================================================ +19:41:53 Calculate Source COMM Id = 2 +19:41:53 ============================================================================ +19:41:53 + + +waiting on router queue for slot.... +19:41:55 ============================================================================ +19:41:55 Slot Id : <284> +19:41:55 Transaction Type : RESPONSE +19:41:55 Received From : +19:41:55 ============================================================================ +19:41:55 FNo. Len. Field Value +19:41:55 ============================================================================ +19:41:55 [ 1] [ 4] [0210] +19:41:55 [ 2] [ 16] [1808931400009500] +19:41:55 [ 3] [ 6] [010000] +19:41:55 [ 4] [ 12] [000100000000] +19:41:55 [ 6] [ 12] [000100000000] +19:41:55 [ 7] [ 10] [0320193941] +19:41:55 [ 11] [ 6] [956455] +19:41:55 [ 12] [ 6] [193941] +19:41:55 [ 13] [ 4] [0320] +19:41:55 [ 18] [ 4] [6011] +19:41:55 [ 19] [ 3] [418] +19:41:55 [ 22] [ 3] [021] +19:41:55 [ 32] [ 6] [668899] +19:41:55 [ 35] [ 27] [1808931400009500=1803500899] +19:41:55 [ 37] [ 12] [507901604379] +19:41:55 [ 38] [ 6] [956455] +19:41:55 [ 39] [ 2] [00] +19:41:55 [ 41] [ 8] [03202001] +19:41:55 [ 49] [ 3] [418] +19:41:55 [ 52] [ 16] [C5E42789A6EE4629] +19:41:55 [ 54] [ 20] [1001418C000200015600] +19:41:55 ============================================================================ +19:41:55 Sending to : +19:41:55 ============================================================================ +19:41:55 + + +waiting on router queue for slot.... +19:41:57 ============================================================================ +19:41:57 Slot Id : <277> +19:41:57 Transaction Type : REQUEST +19:41:57 Received From : +19:41:57 ============================================================================ +19:41:57 FNo. Len. Field Value +19:41:57 ============================================================================ +19:41:57 [ 1] [ 4] [0800] +19:41:57 [ 7] [ 10] [0321025345] +19:41:57 [ 11] [ 6] [195345] +19:41:57 [ 37] [ 12] [57919195345] +19:41:57 [ 70] [ 3] [301] +19:41:57 ============================================================================ +19:41:57 + + +waiting on router queue for slot.... +19:41:57 Sending to : +19:41:57 ============================================================================ +19:41:57 ============================================================================ +19:41:57 Slot Id : <277> +19:41:57 Transaction Type : RESPONSE +19:41:57 Received From : +19:41:57 ============================================================================ +19:41:57 FNo. Len. Field Value +19:41:57 ============================================================================ +19:41:57 [ 1] [ 4] [0810] +19:41:57 [ 7] [ 10] [0321025345] +19:41:57 [ 11] [ 6] [195345] +19:41:57 [ 37] [ 12] [579191953450] +19:41:57 [ 39] [ 2] [00] +19:41:57 [ 70] [ 3] [810] +19:41:57 ============================================================================ +19:41:57 Calculate Source COMM Id = 6 +19:41:57 ============================================================================ +19:41:57 + + +waiting on router queue for slot.... +19:41:57 ============================================================================ +19:41:57 Slot Id : <284> +19:41:57 Transaction Type : RESPONSE +19:41:57 Received From : +19:41:57 ============================================================================ +19:41:57 FNo. Len. Field Value +19:41:57 ============================================================================ +19:41:57 [ 1] [ 4] [0210] +19:41:57 [ 2] [ 16] [1808931400009500] +19:41:57 [ 3] [ 6] [010000] +19:41:57 [ 4] [ 12] [000100000000] +19:41:57 [ 6] [ 12] [000100000000] +19:41:57 [ 7] [ 10] [0320193941] +19:41:57 [ 11] [ 6] [956455] +19:41:57 [ 12] [ 6] [193941] +19:41:57 [ 13] [ 4] [0320] +19:41:57 [ 18] [ 4] [6011] +19:41:57 [ 19] [ 3] [418] +19:41:57 [ 22] [ 3] [021] +19:41:57 [ 32] [ 6] [668899] +19:41:57 [ 35] [ 27] [1808931400009500=1803500899] +19:41:57 [ 37] [ 12] [507901604379] +19:41:57 [ 38] [ 6] [956455] +19:41:57 [ 39] [ 2] [00] +19:41:57 [ 41] [ 8] [03202001] +19:41:57 [ 49] [ 3] [418] +19:41:57 [ 52] [ 16] [C5E42789A6EE4629] +19:41:57 [ 54] [ 20] [1001418C000200015600] +19:41:57 ============================================================================ +19:41:57 Calculate Source COMM Id = 4 +19:41:57 ============================================================================ +19:41:57 + + +waiting on router queue for slot.... +19:42:06 ============================================================================ +19:42:06 Slot Id : <271> +19:42:06 Transaction Type : REQUEST +19:42:06 Received From : +19:42:06 ============================================================================ +19:42:06 FNo. Len. Field Value +19:42:06 ============================================================================ +19:42:06 [ 1] [ 4] [0200] +19:42:06 [ 2] [ 16] [6213544001420535] +19:42:06 [ 3] [ 6] [012000] +19:42:06 [ 4] [ 12] [000020000000] +19:42:06 [ 7] [ 10] [0320124112] +19:42:06 [ 11] [ 6] [271460] +19:42:06 [ 12] [ 6] [194112] +19:42:06 [ 13] [ 4] [0320] +19:42:06 [ 14] [ 4] [4912] +19:42:06 [ 15] [ 4] [0320] +19:42:06 [ 18] [ 4] [6011] +19:42:06 [ 19] [ 3] [418] +19:42:06 [ 22] [ 3] [021] +19:42:06 [ 25] [ 2] [01] +19:42:06 [ 28] [ 9] [D00002000] +19:42:06 [ 32] [ 6] [180893] +19:42:06 [ 35] [ 32] [6213544001420535=491212012053147] +19:42:06 [ 37] [ 12] [507912271460] +19:42:06 [ 41] [ 8] [0523XYNG] +19:42:06 [ 42] [ 15] [999999 ] +19:42:06 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +19:42:06 [ 49] [ 3] [418] +19:42:06 [ 52] [ 16] [31A6D45E340BF259] +19:42:06 ============================================================================ +19:42:06 + + +waiting on router queue for slot.... +19:42:06 Sending to : +19:42:06 ============================================================================ +19:42:06 Sending to : +19:42:06 ============================================================================ +19:42:06 ============================================================================ +19:42:06 Slot Id : <271> +19:42:06 Transaction Type : REQUEST +19:42:06 Received From : +19:42:06 ============================================================================ +19:42:06 FNo. Len. Field Value +19:42:06 ============================================================================ +19:42:06 [ 1] [ 4] [0200] +19:42:06 [ 2] [ 16] [6213544001420535] +19:42:06 [ 3] [ 6] [012000] +19:42:06 [ 4] [ 12] [000020000000] +19:42:06 [ 7] [ 10] [0320124112] +19:42:06 [ 11] [ 6] [271460] +19:42:06 [ 12] [ 6] [194112] +19:42:06 [ 13] [ 4] [0320] +19:42:06 [ 14] [ 4] [4912] +19:42:06 [ 15] [ 4] [0320] +19:42:06 [ 18] [ 4] [6011] +19:42:06 [ 19] [ 3] [418] +19:42:06 [ 22] [ 3] [021] +19:42:06 [ 25] [ 2] [01] +19:42:06 [ 28] [ 9] [D00002000] +19:42:06 [ 32] [ 6] [180893] +19:42:06 [ 35] [ 32] [6213544001420535=491212012053147] +19:42:06 [ 37] [ 12] [507912271460] +19:42:06 [ 41] [ 8] [0523XYNG] +19:42:06 [ 42] [ 15] [999999 ] +19:42:06 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +19:42:06 [ 49] [ 3] [418] +19:42:06 [ 52] [ 16] [31A6D45E340BF259] +19:42:06 ============================================================================ +19:42:06 + + +waiting on router queue for slot.... +19:42:06 Sending to : +19:42:06 ============================================================================ +19:42:06 ============================================================================ +19:42:06 Slot Id : <271> +19:42:06 Transaction Type : REQUEST +19:42:06 Received From : +19:42:06 ============================================================================ +19:42:06 FNo. Len. Field Value +19:42:06 ============================================================================ +19:42:06 [ 1] [ 4] [0200] +19:42:06 [ 2] [ 16] [6213544001420535] +19:42:06 [ 3] [ 6] [012000] +19:42:06 [ 4] [ 12] [000020000000] +19:42:06 [ 7] [ 10] [0320124112] +19:42:06 [ 11] [ 6] [271460] +19:42:06 [ 12] [ 6] [194112] +19:42:06 [ 13] [ 4] [0320] +19:42:06 [ 14] [ 4] [4912] +19:42:06 [ 15] [ 4] [0320] +19:42:06 [ 18] [ 4] [6011] +19:42:06 [ 19] [ 3] [418] +19:42:06 [ 22] [ 3] [021] +19:42:06 [ 25] [ 2] [01] +19:42:06 [ 28] [ 9] [D00002000] +19:42:06 [ 32] [ 6] [180893] +19:42:06 [ 35] [ 32] [6213544001420535=491212012053147] +19:42:06 [ 37] [ 12] [507912271460] +19:42:06 [ 41] [ 8] [0523XYNG] +19:42:06 [ 42] [ 15] [999999 ] +19:42:06 [ 43] [ 40] [ATM MEUANG NGERN LOCATION, Ngeun, Lao Pe] +19:42:06 [ 49] [ 3] [418] +19:42:06 [ 52] [ 16] [FD50D527677CA6F8] +19:42:06 ============================================================================ +19:42:06 + + +waiting on router queue for slot.... +19:42:06 Sending to : <0> +19:42:06 ============================================================================ +19:42:07 ============================================================================ +19:42:07 Slot Id : <271> +19:42:07 Transaction Type : RESPONSE +19:42:07 Received From : +19:42:07 ============================================================================ +19:42:07 FNo. Len. Field Value +19:42:07 ============================================================================ +19:42:07 [ 1] [ 4] [0210] +19:42:07 [ 2] [ 16] [6213544001420535] +19:42:07 [ 3] [ 6] [012000] +19:42:07 [ 4] [ 12] [000020000000] +19:42:07 [ 7] [ 10] [0320124112] +19:42:07 [ 11] [ 6] [271460] +19:42:07 [ 12] [ 6] [194112] +19:42:07 [ 13] [ 4] [0320] +19:42:07 [ 15] [ 4] [0320] +19:42:07 [ 18] [ 4] [6011] +19:42:07 [ 19] [ 3] [418] +19:42:07 [ 32] [ 6] [180893] +19:42:07 [ 35] [ 32] [6213544001420535=491212012053147] +19:42:07 [ 37] [ 12] [507912271460] +19:42:07 [ 38] [ 6] [641100] +19:42:07 [ 39] [ 2] [00] +19:42:07 [ 41] [ 8] [0523XYNG] +19:42:07 [ 49] [ 3] [418] +19:42:07 [ 54] [ 40] [2001418C0000155859952002418C000015585995] +19:42:07 ============================================================================ +19:42:07 Sending to : +19:42:07 ============================================================================ +19:42:07 + + +waiting on router queue for slot.... +19:42:08 ============================================================================ +19:42:08 Slot Id : <267> +19:42:08 Transaction Type : REQUEST +19:42:08 Received From : +19:42:08 ============================================================================ +19:42:08 FNo. Len. Field Value +19:42:08 ============================================================================ +19:42:08 [ 1] [ 4] [0800] +19:42:08 [ 7] [ 10] [0320124114] +19:42:08 [ 11] [ 6] [158014] +19:42:08 [ 70] [ 3] [301] +19:42:08 ============================================================================ +19:42:08 + + +waiting on router queue for slot.... +19:42:08 Sending to : +19:42:08 ============================================================================ +19:42:08 ============================================================================ +19:42:08 Slot Id : <267> +19:42:08 Transaction Type : RESPONSE +19:42:08 Received From : +19:42:08 ============================================================================ +19:42:08 FNo. Len. Field Value +19:42:08 ============================================================================ +19:42:08 [ 1] [ 4] [0810] +19:42:08 [ 7] [ 10] [0320124114] +19:42:08 [ 11] [ 6] [158014] +19:42:08 [ 39] [ 2] [00] +19:42:08 [ 70] [ 3] [301] +19:42:08 ============================================================================ +19:42:08 Calculate Source COMM Id = 2 +19:42:08 ============================================================================ +19:42:08 + + +waiting on router queue for slot.... +19:42:09 ============================================================================ +19:42:09 Slot Id : <271> +19:42:09 Transaction Type : RESPONSE +19:42:09 Received From : +19:42:09 ============================================================================ +19:42:09 FNo. Len. Field Value +19:42:09 ============================================================================ +19:42:09 [ 1] [ 4] [0210] +19:42:09 [ 2] [ 16] [6213544001420535] +19:42:09 [ 3] [ 6] [012000] +19:42:09 [ 4] [ 12] [000020000000] +19:42:09 [ 7] [ 10] [0320124112] +19:42:09 [ 11] [ 6] [271460] +19:42:09 [ 12] [ 6] [194112] +19:42:09 [ 13] [ 4] [0320] +19:42:09 [ 15] [ 4] [0320] +19:42:09 [ 18] [ 4] [6011] +19:42:09 [ 19] [ 3] [418] +19:42:09 [ 32] [ 6] [180893] +19:42:09 [ 35] [ 32] [6213544001420535=491212012053147] +19:42:09 [ 37] [ 12] [507912271460] +19:42:09 [ 38] [ 6] [641100] +19:42:09 [ 39] [ 2] [00] +19:42:09 [ 41] [ 8] [0523XYNG] +19:42:09 [ 49] [ 3] [418] +19:42:09 [ 54] [ 40] [2001418C0000155859952002418C000015585995] +19:42:09 ============================================================================ +19:42:09 Calculate Source COMM Id = 2 +19:42:09 ============================================================================ +19:42:09 + + +waiting on router queue for slot.... +19:42:23 ============================================================================ +19:42:23 Slot Id : <245> +19:42:23 Transaction Type : REQUEST +19:42:23 Received From : +19:42:23 ============================================================================ +19:42:23 FNo. Len. Field Value +19:42:23 ============================================================================ +19:42:23 [ 1] [ 4] [0800] +19:42:23 [ 7] [ 10] [0320124130] +19:42:23 [ 11] [ 6] [158015] +19:42:23 [ 70] [ 3] [301] +19:42:23 ============================================================================ +19:42:23 + + +waiting on router queue for slot.... +19:42:23 Sending to : +19:42:23 ============================================================================ +19:42:23 ============================================================================ +19:42:23 Slot Id : <245> +19:42:23 Transaction Type : RESPONSE +19:42:23 Received From : +19:42:23 ============================================================================ +19:42:23 FNo. Len. Field Value +19:42:23 ============================================================================ +19:42:23 [ 1] [ 4] [0810] +19:42:23 [ 7] [ 10] [0320124130] +19:42:23 [ 11] [ 6] [158015] +19:42:23 [ 39] [ 2] [00] +19:42:23 [ 70] [ 3] [301] +19:42:23 ============================================================================ +19:42:23 Calculate Source COMM Id = 2 +19:42:23 ============================================================================ +19:42:23 + + +waiting on router queue for slot.... +19:42:39 ============================================================================ +19:42:39 Slot Id : <236> +19:42:39 Transaction Type : REQUEST +19:42:39 Received From : +19:42:39 ============================================================================ +19:42:39 FNo. Len. Field Value +19:42:39 ============================================================================ +19:42:39 [ 1] [ 4] [0800] +19:42:39 [ 7] [ 10] [0320124145] +19:42:39 [ 11] [ 6] [158016] +19:42:39 [ 70] [ 3] [301] +19:42:39 ============================================================================ +19:42:39 + + +waiting on router queue for slot.... +19:42:39 Sending to : +19:42:39 ============================================================================ +19:42:39 ============================================================================ +19:42:39 Slot Id : <236> +19:42:39 Transaction Type : RESPONSE +19:42:39 Received From : +19:42:39 ============================================================================ +19:42:39 FNo. Len. Field Value +19:42:39 ============================================================================ +19:42:39 [ 1] [ 4] [0810] +19:42:39 [ 7] [ 10] [0320124145] +19:42:39 [ 11] [ 6] [158016] +19:42:39 [ 39] [ 2] [00] +19:42:39 [ 70] [ 3] [301] +19:42:39 ============================================================================ +19:42:39 Calculate Source COMM Id = 2 +19:42:39 ============================================================================ +19:42:39 + + +waiting on router queue for slot.... +19:42:47 ============================================================================ +19:42:47 Slot Id : <294> +19:42:47 Transaction Type : REQUEST +19:42:47 Received From : +19:42:47 ============================================================================ +19:42:47 FNo. Len. Field Value +19:42:47 ============================================================================ +19:42:47 [ 1] [ 4] [0800] +19:42:47 [ 2] [ 5] [02531] +19:42:47 [ 3] [ 6] [579198] +19:42:47 [ 7] [ 10] [0320124247] +19:42:47 [ 11] [ 6] [807556] +19:42:47 [ 15] [ 10] [0320124247] +19:42:47 [ 37] [ 11] [57919807556] +19:42:47 [ 70] [ 3] [001] +19:42:47 ============================================================================ +19:42:47 + + +waiting on router queue for slot.... +19:42:47 ============================================================================ +19:42:47 Slot Id : <294> +19:42:47 Transaction Type : RESPONSE +19:42:47 Received From : +19:42:47 ============================================================================ +19:42:47 FNo. Len. Field Value +19:42:47 ============================================================================ +19:42:47 [ 1] [ 4] [0810] +19:42:47 [ 7] [ 10] [0320124247] +19:42:47 [ 11] [ 6] [807556] +19:42:47 [ 15] [ 4] [0320] +19:42:47 [ 37] [ 12] [57919807556] +19:42:47 [ 39] [ 2] [00] +19:42:47 [ 70] [ 3] [001] +19:42:47 ============================================================================ +19:42:47 Sending to : +19:42:47 ============================================================================ +19:42:47 + + +waiting on router queue for slot.... +19:42:49 ============================================================================ +19:42:49 Slot Id : <303> +19:42:49 Transaction Type : REQUEST +19:42:49 Received From : +19:42:49 ============================================================================ +19:42:49 FNo. Len. Field Value +19:42:49 ============================================================================ +19:42:49 [ 1] [ 4] [0800] +19:42:49 [ 7] [ 10] [0320124155] +19:42:49 [ 11] [ 6] [158017] +19:42:49 [ 70] [ 3] [301] +19:42:49 ============================================================================ +19:42:49 + + +waiting on router queue for slot.... +19:42:49 Sending to : +19:42:49 ============================================================================ +19:42:49 ============================================================================ +19:42:49 Slot Id : <303> +19:42:49 Transaction Type : RESPONSE +19:42:49 Received From : +19:42:49 ============================================================================ +19:42:49 FNo. Len. Field Value +19:42:49 ============================================================================ +19:42:49 [ 1] [ 4] [0810] +19:42:49 [ 7] [ 10] [0320124155] +19:42:49 [ 11] [ 6] [158017] +19:42:49 [ 39] [ 2] [00] +19:42:49 [ 70] [ 3] [301] +19:42:49 ============================================================================ +19:42:49 Calculate Source COMM Id = 2 +19:42:49 ============================================================================ +19:42:49 + + +waiting on router queue for slot.... +19:43:00 ============================================================================ +19:43:00 Slot Id : <217> +19:43:00 Transaction Type : REQUEST +19:43:00 Received From : +19:43:00 ============================================================================ +19:43:00 FNo. Len. Field Value +19:43:00 ============================================================================ +19:43:00 [ 1] [ 4] [0800] +19:43:00 [ 7] [ 10] [0320124206] +19:43:00 [ 11] [ 6] [158018] +19:43:00 [ 70] [ 3] [301] +19:43:00 ============================================================================ +19:43:00 + + +waiting on router queue for slot.... +19:43:00 Sending to : +19:43:00 ============================================================================ +19:43:00 ============================================================================ +19:43:00 Slot Id : <217> +19:43:00 Transaction Type : RESPONSE +19:43:00 Received From : +19:43:00 ============================================================================ +19:43:00 FNo. Len. Field Value +19:43:00 ============================================================================ +19:43:00 [ 1] [ 4] [0810] +19:43:00 [ 7] [ 10] [0320124206] +19:43:00 [ 11] [ 6] [158018] +19:43:00 [ 39] [ 2] [00] +19:43:00 [ 70] [ 3] [301] +19:43:00 ============================================================================ +19:43:00 Calculate Source COMM Id = 2 +19:43:00 ============================================================================ +19:43:00 + + +waiting on router queue for slot.... +19:43:00 ============================================================================ +19:43:00 Slot Id : <293> +19:43:00 Transaction Type : REQUEST +19:43:00 Received From : +19:43:00 ============================================================================ +19:43:00 FNo. Len. Field Value +19:43:00 ============================================================================ +19:43:00 [ 1] [ 4] [0200] +19:43:00 [ 2] [ 16] [6688990600855306] +19:43:00 [ 3] [ 6] [011000] +19:43:00 [ 4] [ 12] [000040000000] +19:43:00 [ 7] [ 10] [0320194255] +19:43:00 [ 11] [ 6] [838351] +19:43:00 [ 12] [ 6] [194255] +19:43:00 [ 13] [ 4] [0320] +19:43:00 [ 15] [ 4] [0320] +19:43:00 [ 18] [ 4] [6011] +19:43:00 [ 22] [ 3] [900] +19:43:00 [ 25] [ 2] [02] +19:43:00 [ 28] [ 9] [D00002000] +19:43:00 [ 32] [ 6] [621354] +19:43:00 [ 35] [ 37] [6688990600855306=41020061530632000000] +19:43:00 [ 37] [ 12] [507904989843] +19:43:00 [ 41] [ 8] [01012300] +19:43:00 [ 42] [ 15] [NATIVE ] +19:43:00 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +19:43:00 [ 49] [ 3] [418] +19:43:00 [ 52] [ 16] [DE7BEDD881AE8522] +19:43:00 ============================================================================ +19:43:00 + + +waiting on router queue for slot.... +19:43:00 Sending to : +19:43:00 ============================================================================ +19:43:00 Sending to : +19:43:00 ============================================================================ +19:43:00 ============================================================================ +19:43:00 Slot Id : <293> +19:43:00 Transaction Type : REQUEST +19:43:00 Received From : +19:43:00 ============================================================================ +19:43:00 FNo. Len. Field Value +19:43:00 ============================================================================ +19:43:00 [ 1] [ 4] [0200] +19:43:00 [ 2] [ 16] [6688990600855306] +19:43:00 [ 3] [ 6] [011000] +19:43:00 [ 4] [ 12] [000040000000] +19:43:00 [ 7] [ 10] [0320194255] +19:43:00 [ 11] [ 6] [838351] +19:43:00 [ 12] [ 6] [194255] +19:43:00 [ 13] [ 4] [0320] +19:43:00 [ 15] [ 4] [0320] +19:43:00 [ 18] [ 4] [6011] +19:43:00 [ 22] [ 3] [900] +19:43:00 [ 25] [ 2] [02] +19:43:00 [ 28] [ 9] [D00002000] +19:43:00 [ 32] [ 6] [621354] +19:43:00 [ 35] [ 37] [6688990600855306=41020061530632000000] +19:43:00 [ 37] [ 12] [507904989843] +19:43:00 [ 41] [ 8] [01012300] +19:43:00 [ 42] [ 15] [NATIVE ] +19:43:00 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +19:43:00 [ 49] [ 3] [418] +19:43:00 [ 52] [ 16] [DE7BEDD881AE8522] +19:43:00 ============================================================================ +19:43:00 + + +waiting on router queue for slot.... +19:43:00 Sending to : +19:43:00 ============================================================================ +19:43:00 ============================================================================ +19:43:00 Slot Id : <293> +19:43:00 Transaction Type : REQUEST +19:43:00 Received From : +19:43:00 ============================================================================ +19:43:00 FNo. Len. Field Value +19:43:00 ============================================================================ +19:43:00 [ 1] [ 4] [0200] +19:43:00 [ 2] [ 16] [6688990600855306] +19:43:00 [ 3] [ 6] [011000] +19:43:00 [ 4] [ 12] [000040000000] +19:43:00 [ 7] [ 10] [0320194255] +19:43:00 [ 11] [ 6] [838351] +19:43:00 [ 12] [ 6] [194255] +19:43:00 [ 13] [ 4] [0320] +19:43:00 [ 15] [ 4] [0320] +19:43:00 [ 18] [ 4] [6011] +19:43:00 [ 22] [ 3] [900] +19:43:00 [ 25] [ 2] [02] +19:43:00 [ 28] [ 9] [D00002000] +19:43:00 [ 32] [ 6] [621354] +19:43:00 [ 35] [ 37] [6688990600855306=41020061530632000000] +19:43:00 [ 37] [ 12] [507904989843] +19:43:00 [ 41] [ 8] [01012300] +19:43:00 [ 42] [ 15] [NATIVE ] +19:43:00 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +19:43:00 [ 49] [ 3] [418] +19:43:00 [ 52] [ 16] [1BA4F095E0513E92] +19:43:00 ============================================================================ +19:43:00 + + +waiting on router queue for slot.... +19:43:00 Sending to : <4> +19:43:00 ============================================================================ +19:43:01 ============================================================================ +19:43:01 Slot Id : <293> +19:43:01 Transaction Type : RESPONSE +19:43:01 Received From : +19:43:01 ============================================================================ +19:43:01 FNo. Len. Field Value +19:43:01 ============================================================================ +19:43:01 [ 1] [ 4] [0210] +19:43:01 [ 2] [ 16] [6688990600855306] +19:43:01 [ 3] [ 6] [011000] +19:43:01 [ 4] [ 12] [000040000000] +19:43:01 [ 11] [ 6] [838351] +19:43:01 [ 12] [ 6] [194255] +19:43:01 [ 15] [ 4] [0320] +19:43:01 [ 18] [ 4] [6011] +19:43:01 [ 32] [ 6] [621354] +19:43:01 [ 35] [ 37] [6688990600855306=41020061530632000000] +19:43:01 [ 37] [ 12] [507904989843] +19:43:01 [ 38] [ 6] [176113] +19:43:01 [ 39] [ 2] [00] +19:43:01 [ 41] [ 8] [01012300] +19:43:01 [ 49] [ 3] [418] +19:43:01 [ 54] [ 20] [1002418C000186136700] +19:43:01 ============================================================================ +19:43:01 Sending to : +19:43:01 ============================================================================ +19:43:01 + + +waiting on router queue for slot.... +19:43:02 ============================================================================ +19:43:02 Slot Id : <298> +19:43:02 Transaction Type : REQUEST +19:43:02 Received From : +19:43:02 ============================================================================ +19:43:02 FNo. Len. Field Value +19:43:02 ============================================================================ +19:43:02 [ 1] [ 4] [0800] +19:43:02 [ 7] [ 10] [0321025450] +19:43:02 [ 11] [ 6] [195450] +19:43:02 [ 37] [ 12] [57919195450] +19:43:02 [ 70] [ 3] [301] +19:43:02 ============================================================================ +19:43:02 + + +waiting on router queue for slot.... +19:43:02 Sending to : +19:43:02 ============================================================================ +19:43:02 ============================================================================ +19:43:02 Slot Id : <298> +19:43:02 Transaction Type : RESPONSE +19:43:02 Received From : +19:43:02 ============================================================================ +19:43:02 FNo. Len. Field Value +19:43:02 ============================================================================ +19:43:02 [ 1] [ 4] [0810] +19:43:02 [ 7] [ 10] [0321025450] +19:43:02 [ 11] [ 6] [195450] +19:43:02 [ 37] [ 12] [579191954500] +19:43:02 [ 39] [ 2] [00] +19:43:02 [ 70] [ 3] [810] +19:43:02 ============================================================================ +19:43:02 Calculate Source COMM Id = 6 +19:43:02 ============================================================================ +19:43:02 + + +waiting on router queue for slot.... +19:43:03 ============================================================================ +19:43:03 Slot Id : <293> +19:43:03 Transaction Type : RESPONSE +19:43:03 Received From : +19:43:03 ============================================================================ +19:43:03 FNo. Len. Field Value +19:43:03 ============================================================================ +19:43:03 [ 1] [ 4] [0210] +19:43:03 [ 2] [ 16] [6688990600855306] +19:43:03 [ 3] [ 6] [011000] +19:43:03 [ 4] [ 12] [000040000000] +19:43:03 [ 11] [ 6] [838351] +19:43:03 [ 12] [ 6] [194255] +19:43:03 [ 15] [ 4] [0320] +19:43:03 [ 18] [ 4] [6011] +19:43:03 [ 32] [ 6] [621354] +19:43:03 [ 35] [ 37] [6688990600855306=41020061530632000000] +19:43:03 [ 37] [ 12] [507904989843] +19:43:03 [ 38] [ 6] [176113] +19:43:03 [ 39] [ 2] [00] +19:43:03 [ 41] [ 8] [01012300] +19:43:03 [ 49] [ 3] [418] +19:43:03 [ 54] [ 20] [1002418C000186136700] +19:43:03 ============================================================================ +19:43:03 Calculate Source COMM Id = 0 +19:43:03 ============================================================================ +19:43:03 + + +waiting on router queue for slot.... +19:43:10 ============================================================================ +19:43:10 Slot Id : <300> +19:43:10 Transaction Type : REQUEST +19:43:10 Received From : +19:43:10 ============================================================================ +19:43:10 FNo. Len. Field Value +19:43:10 ============================================================================ +19:43:10 [ 1] [ 4] [0800] +19:43:10 [ 7] [ 10] [0320124217] +19:43:10 [ 11] [ 6] [158019] +19:43:10 [ 70] [ 3] [301] +19:43:10 ============================================================================ +19:43:10 + + +waiting on router queue for slot.... +19:43:10 Sending to : +19:43:10 ============================================================================ +19:43:10 ============================================================================ +19:43:10 Slot Id : <300> +19:43:10 Transaction Type : RESPONSE +19:43:10 Received From : +19:43:10 ============================================================================ +19:43:10 FNo. Len. Field Value +19:43:10 ============================================================================ +19:43:10 [ 1] [ 4] [0810] +19:43:10 [ 7] [ 10] [0320124217] +19:43:10 [ 11] [ 6] [158019] +19:43:10 [ 39] [ 2] [00] +19:43:10 [ 70] [ 3] [301] +19:43:10 ============================================================================ +19:43:10 Calculate Source COMM Id = 2 +19:43:10 ============================================================================ +19:43:10 + + +waiting on router queue for slot.... +19:43:21 ============================================================================ +19:43:21 Slot Id : <278> +19:43:21 Transaction Type : REQUEST +19:43:21 Received From : +19:43:21 ============================================================================ +19:43:21 FNo. Len. Field Value +19:43:21 ============================================================================ +19:43:21 [ 1] [ 4] [0800] +19:43:21 [ 7] [ 10] [0320124228] +19:43:21 [ 11] [ 6] [158020] +19:43:21 [ 70] [ 3] [301] +19:43:21 ============================================================================ +19:43:21 + + +waiting on router queue for slot.... +19:43:21 Sending to : +19:43:21 ============================================================================ +19:43:21 ============================================================================ +19:43:21 Slot Id : <278> +19:43:21 Transaction Type : RESPONSE +19:43:21 Received From : +19:43:21 ============================================================================ +19:43:21 FNo. Len. Field Value +19:43:21 ============================================================================ +19:43:21 [ 1] [ 4] [0810] +19:43:21 [ 7] [ 10] [0320124228] +19:43:21 [ 11] [ 6] [158020] +19:43:21 [ 39] [ 2] [00] +19:43:21 [ 70] [ 3] [301] +19:43:21 ============================================================================ +19:43:21 Calculate Source COMM Id = 2 +19:43:21 ============================================================================ +19:43:21 + + +waiting on router queue for slot.... +19:43:36 ============================================================================ +19:43:36 Slot Id : <281> +19:43:36 Transaction Type : REQUEST +19:43:36 Received From : +19:43:36 ============================================================================ +19:43:36 FNo. Len. Field Value +19:43:36 ============================================================================ +19:43:36 [ 1] [ 4] [0800] +19:43:36 [ 7] [ 10] [0320124243] +19:43:36 [ 11] [ 6] [158021] +19:43:36 [ 70] [ 3] [301] +19:43:36 ============================================================================ +19:43:36 + + +waiting on router queue for slot.... +19:43:36 Sending to : +19:43:36 ============================================================================ +19:43:36 ============================================================================ +19:43:36 Slot Id : <281> +19:43:36 Transaction Type : RESPONSE +19:43:36 Received From : +19:43:36 ============================================================================ +19:43:36 FNo. Len. Field Value +19:43:36 ============================================================================ +19:43:36 [ 1] [ 4] [0810] +19:43:36 [ 7] [ 10] [0320124243] +19:43:36 [ 11] [ 6] [158021] +19:43:36 [ 39] [ 2] [00] +19:43:36 [ 70] [ 3] [301] +19:43:36 ============================================================================ +19:43:36 Calculate Source COMM Id = 2 +19:43:36 ============================================================================ +19:43:36 + + +waiting on router queue for slot.... +19:43:42 ============================================================================ +19:43:42 Slot Id : <257> +19:43:42 Transaction Type : REQUEST +19:43:42 Received From : +19:43:42 ============================================================================ +19:43:42 FNo. Len. Field Value +19:43:42 ============================================================================ +19:43:42 [ 1] [ 4] [0200] +19:43:42 [ 2] [ 16] [6213543000141910] +19:43:42 [ 3] [ 6] [010000] +19:43:42 [ 4] [ 12] [000005000000] +19:43:42 [ 7] [ 10] [0320194132] +19:43:42 [ 11] [ 6] [956484] +19:43:42 [ 12] [ 6] [194132] +19:43:42 [ 13] [ 4] [0320] +19:43:42 [ 15] [ 4] [0320] +19:43:42 [ 18] [ 4] [6011] +19:43:42 [ 19] [ 3] [418] +19:43:42 [ 22] [ 3] [021] +19:43:42 [ 25] [ 2] [01] +19:43:42 [ 28] [ 9] [D00002000] +19:43:42 [ 32] [ 6] [668899] +19:43:42 [ 35] [ 32] [6213543000141910=491212014191019] +19:43:42 [ 37] [ 12] [507902678819] +19:43:42 [ 41] [ 8] [03020035] +19:43:42 [ 42] [ 15] [APT ] +19:43:42 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +19:43:42 [ 49] [ 3] [418] +19:43:42 [ 52] [ 16] [52F12B5BFA2D62A0] +19:43:42 ============================================================================ +19:43:42 + + +waiting on router queue for slot.... +19:43:42 Sending to : +19:43:42 ============================================================================ +19:43:42 Sending to : +19:43:42 ============================================================================ +19:43:43 ============================================================================ +19:43:43 Slot Id : <257> +19:43:43 Transaction Type : REQUEST +19:43:43 Received From : +19:43:43 ============================================================================ +19:43:43 FNo. Len. Field Value +19:43:43 ============================================================================ +19:43:43 [ 1] [ 4] [0200] +19:43:43 [ 2] [ 16] [6213543000141910] +19:43:43 [ 3] [ 6] [010000] +19:43:43 [ 4] [ 12] [000005000000] +19:43:43 [ 7] [ 10] [0320194132] +19:43:43 [ 11] [ 6] [956484] +19:43:43 [ 12] [ 6] [194132] +19:43:43 [ 13] [ 4] [0320] +19:43:43 [ 15] [ 4] [0320] +19:43:43 [ 18] [ 4] [6011] +19:43:43 [ 19] [ 3] [418] +19:43:43 [ 22] [ 3] [021] +19:43:43 [ 25] [ 2] [01] +19:43:43 [ 28] [ 9] [D00002000] +19:43:43 [ 32] [ 6] [668899] +19:43:43 [ 35] [ 32] [6213543000141910=491212014191019] +19:43:43 [ 37] [ 12] [507902678819] +19:43:43 [ 41] [ 8] [03020035] +19:43:43 [ 42] [ 15] [APT ] +19:43:43 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +19:43:43 [ 49] [ 3] [418] +19:43:43 [ 52] [ 16] [52F12B5BFA2D62A0] +19:43:43 ============================================================================ +19:43:43 + + +waiting on router queue for slot.... +19:43:43 Sending to : +19:43:43 ============================================================================ +19:43:43 ============================================================================ +19:43:43 Slot Id : <257> +19:43:43 Transaction Type : REQUEST +19:43:43 Received From : +19:43:43 ============================================================================ +19:43:43 FNo. Len. Field Value +19:43:43 ============================================================================ +19:43:43 [ 1] [ 4] [0200] +19:43:43 [ 2] [ 16] [6213543000141910] +19:43:43 [ 3] [ 6] [010000] +19:43:43 [ 4] [ 12] [000005000000] +19:43:43 [ 7] [ 10] [0320194132] +19:43:43 [ 11] [ 6] [956484] +19:43:43 [ 12] [ 6] [194132] +19:43:43 [ 13] [ 4] [0320] +19:43:43 [ 15] [ 4] [0320] +19:43:43 [ 18] [ 4] [6011] +19:43:43 [ 19] [ 3] [418] +19:43:43 [ 22] [ 3] [021] +19:43:43 [ 25] [ 2] [01] +19:43:43 [ 28] [ 9] [D00002000] +19:43:43 [ 32] [ 6] [668899] +19:43:43 [ 35] [ 32] [6213543000141910=491212014191019] +19:43:43 [ 37] [ 12] [507902678819] +19:43:43 [ 41] [ 8] [03020035] +19:43:43 [ 42] [ 15] [APT ] +19:43:43 [ 43] [ 40] [ ELECTRICITY SOKPALUANG SI] +19:43:43 [ 49] [ 3] [418] +19:43:43 [ 52] [ 16] [9EA97CF48CA19E5E] +19:43:43 ============================================================================ +19:43:43 + + +waiting on router queue for slot.... +19:43:43 Sending to : <0> +19:43:43 ============================================================================ +19:43:44 ============================================================================ +19:43:44 Slot Id : <257> +19:43:44 Transaction Type : RESPONSE +19:43:44 Received From : +19:43:44 ============================================================================ +19:43:44 FNo. Len. Field Value +19:43:44 ============================================================================ +19:43:44 [ 1] [ 4] [0210] +19:43:44 [ 2] [ 16] [6213543000141910] +19:43:44 [ 3] [ 6] [010000] +19:43:44 [ 4] [ 12] [000005000000] +19:43:44 [ 7] [ 10] [0320194132] +19:43:44 [ 11] [ 6] [956484] +19:43:44 [ 12] [ 6] [194132] +19:43:44 [ 13] [ 4] [0320] +19:43:44 [ 15] [ 4] [0320] +19:43:44 [ 18] [ 4] [6011] +19:43:44 [ 19] [ 3] [418] +19:43:44 [ 32] [ 6] [668899] +19:43:44 [ 35] [ 32] [6213543000141910=491212014191019] +19:43:44 [ 37] [ 12] [507902678819] +19:43:44 [ 38] [ 6] [041500] +19:43:44 [ 39] [ 2] [00] +19:43:44 [ 41] [ 8] [03020035] +19:43:44 [ 49] [ 3] [418] +19:43:44 [ 54] [ 40] [0001418C0000205223580002418C000020522358] +19:43:44 ============================================================================ +19:43:44 Sending to : +19:43:44 ============================================================================ +19:43:44 + + +waiting on router queue for slot.... +19:43:45 ============================================================================ +19:43:45 Slot Id : <257> +19:43:45 Transaction Type : RESPONSE +19:43:45 Received From : +19:43:45 ============================================================================ +19:43:45 FNo. Len. Field Value +19:43:45 ============================================================================ +19:43:45 [ 1] [ 4] [0210] +19:43:45 [ 2] [ 16] [6213543000141910] +19:43:45 [ 3] [ 6] [010000] +19:43:45 [ 4] [ 12] [000005000000] +19:43:45 [ 7] [ 10] [0320194132] +19:43:45 [ 11] [ 6] [956484] +19:43:45 [ 12] [ 6] [194132] +19:43:45 [ 13] [ 4] [0320] +19:43:45 [ 15] [ 4] [0320] +19:43:45 [ 18] [ 4] [6011] +19:43:45 [ 19] [ 3] [418] +19:43:45 [ 32] [ 6] [668899] +19:43:45 [ 35] [ 32] [6213543000141910=491212014191019] +19:43:45 [ 37] [ 12] [507902678819] +19:43:45 [ 38] [ 6] [041500] +19:43:45 [ 39] [ 2] [00] +19:43:45 [ 41] [ 8] [03020035] +19:43:45 [ 49] [ 3] [418] +19:43:45 [ 54] [ 40] [0001418C0000205223580002418C000020522358] +19:43:45 ============================================================================ +19:43:45 Calculate Source COMM Id = 4 +19:43:45 ============================================================================ +19:43:45 + + +waiting on router queue for slot.... +19:43:47 ============================================================================ +19:43:47 Slot Id : <299> +19:43:47 Transaction Type : REQUEST +19:43:47 Received From : +19:43:47 ============================================================================ +19:43:47 FNo. Len. Field Value +19:43:47 ============================================================================ +19:43:47 [ 1] [ 4] [0800] +19:43:47 [ 7] [ 10] [0320124253] +19:43:47 [ 11] [ 6] [158022] +19:43:47 [ 70] [ 3] [301] +19:43:47 ============================================================================ +19:43:47 + + +waiting on router queue for slot.... +19:43:47 Sending to : +19:43:47 ============================================================================ +19:43:47 ============================================================================ +19:43:47 Slot Id : <299> +19:43:47 Transaction Type : RESPONSE +19:43:47 Received From : +19:43:47 ============================================================================ +19:43:47 FNo. Len. Field Value +19:43:47 ============================================================================ +19:43:47 [ 1] [ 4] [0810] +19:43:47 [ 7] [ 10] [0320124253] +19:43:47 [ 11] [ 6] [158022] +19:43:47 [ 39] [ 2] [00] +19:43:47 [ 70] [ 3] [301] +19:43:47 ============================================================================ +19:43:47 Calculate Source COMM Id = 2 +19:43:47 ============================================================================ +19:43:47 + + +waiting on router queue for slot.... +19:43:49 ============================================================================ +19:43:49 Slot Id : <308> +19:43:49 Transaction Type : REQUEST +19:43:49 Received From : +19:43:49 ============================================================================ +19:43:49 FNo. Len. Field Value +19:43:49 ============================================================================ +19:43:49 [ 1] [ 4] [0800] +19:43:49 [ 2] [ 5] [02531] +19:43:49 [ 3] [ 6] [579198] +19:43:49 [ 7] [ 10] [0320124349] +19:43:49 [ 11] [ 6] [807557] +19:43:49 [ 15] [ 10] [0320124349] +19:43:49 [ 37] [ 11] [57919807557] +19:43:49 [ 70] [ 3] [001] +19:43:49 ============================================================================ +19:43:49 + + +waiting on router queue for slot.... +19:43:49 ============================================================================ +19:43:49 Slot Id : <308> +19:43:49 Transaction Type : RESPONSE +19:43:49 Received From : +19:43:49 ============================================================================ +19:43:49 FNo. Len. Field Value +19:43:49 ============================================================================ +19:43:49 [ 1] [ 4] [0810] +19:43:49 [ 7] [ 10] [0320124349] +19:43:49 [ 11] [ 6] [807557] +19:43:49 [ 15] [ 4] [0320] +19:43:49 [ 37] [ 12] [57919807557] +19:43:49 [ 39] [ 2] [00] +19:43:49 [ 70] [ 3] [001] +19:43:49 ============================================================================ +19:43:49 Sending to : +19:43:49 ============================================================================ +19:43:49 + + +waiting on router queue for slot.... +19:43:57 ============================================================================ +19:43:57 Slot Id : <286> +19:43:57 Transaction Type : REQUEST +19:43:57 Received From : +19:43:57 ============================================================================ +19:43:57 FNo. Len. Field Value +19:43:57 ============================================================================ +19:43:57 [ 1] [ 4] [0800] +19:43:57 [ 7] [ 10] [0320124304] +19:43:57 [ 11] [ 6] [158023] +19:43:57 [ 70] [ 3] [301] +19:43:57 ============================================================================ +19:43:57 + + +waiting on router queue for slot.... +19:43:57 Sending to : +19:43:57 ============================================================================ +19:43:57 ============================================================================ +19:43:57 Slot Id : <286> +19:43:57 Transaction Type : RESPONSE +19:43:57 Received From : +19:43:57 ============================================================================ +19:43:57 FNo. Len. Field Value +19:43:57 ============================================================================ +19:43:57 [ 1] [ 4] [0810] +19:43:57 [ 7] [ 10] [0320124304] +19:43:57 [ 11] [ 6] [158023] +19:43:57 [ 39] [ 2] [00] +19:43:57 [ 70] [ 3] [301] +19:43:57 ============================================================================ +19:43:57 Calculate Source COMM Id = 2 +19:43:57 ============================================================================ +19:43:57 + + +waiting on router queue for slot.... +19:44:07 ============================================================================ +19:44:07 Slot Id : <295> +19:44:07 Transaction Type : REQUEST +19:44:07 Received From : +19:44:07 ============================================================================ +19:44:07 FNo. Len. Field Value +19:44:07 ============================================================================ +19:44:07 [ 1] [ 4] [0800] +19:44:07 [ 7] [ 10] [0321025555] +19:44:07 [ 11] [ 6] [195555] +19:44:07 [ 37] [ 12] [57919195555] +19:44:07 [ 70] [ 3] [301] +19:44:07 ============================================================================ +19:44:07 + + +waiting on router queue for slot.... +19:44:07 Sending to : +19:44:07 ============================================================================ +19:44:07 ============================================================================ +19:44:07 Slot Id : <295> +19:44:07 Transaction Type : RESPONSE +19:44:07 Received From : +19:44:07 ============================================================================ +19:44:07 FNo. Len. Field Value +19:44:07 ============================================================================ +19:44:07 [ 1] [ 4] [0810] +19:44:07 [ 7] [ 10] [0321025555] +19:44:07 [ 11] [ 6] [195555] +19:44:07 [ 37] [ 12] [579191955550] +19:44:07 [ 39] [ 2] [00] +19:44:07 [ 70] [ 3] [810] +19:44:07 ============================================================================ +19:44:07 Calculate Source COMM Id = 6 +19:44:07 ============================================================================ +19:44:07 + + +waiting on router queue for slot.... +19:44:08 ============================================================================ +19:44:08 Slot Id : <296> +19:44:08 Transaction Type : REQUEST +19:44:08 Received From : +19:44:08 ============================================================================ +19:44:08 FNo. Len. Field Value +19:44:08 ============================================================================ +19:44:08 [ 1] [ 4] [0800] +19:44:08 [ 7] [ 10] [0320124315] +19:44:08 [ 11] [ 6] [158024] +19:44:08 [ 70] [ 3] [301] +19:44:08 ============================================================================ +19:44:08 + + +waiting on router queue for slot.... +19:44:08 Sending to : +19:44:08 ============================================================================ +19:44:08 ============================================================================ +19:44:08 Slot Id : <296> +19:44:08 Transaction Type : RESPONSE +19:44:08 Received From : +19:44:08 ============================================================================ +19:44:08 FNo. Len. Field Value +19:44:08 ============================================================================ +19:44:08 [ 1] [ 4] [0810] +19:44:08 [ 7] [ 10] [0320124315] +19:44:08 [ 11] [ 6] [158024] +19:44:08 [ 39] [ 2] [00] +19:44:08 [ 70] [ 3] [301] +19:44:08 ============================================================================ +19:44:08 Calculate Source COMM Id = 2 +19:44:08 ============================================================================ +19:44:08 + + +waiting on router queue for slot.... +19:44:20 ============================================================================ +19:44:20 Slot Id : <283> +19:44:20 Transaction Type : REQUEST +19:44:20 Received From : +19:44:20 ============================================================================ +19:44:20 FNo. Len. Field Value +19:44:20 ============================================================================ +19:44:20 [ 1] [ 4] [0800] +19:44:20 [ 7] [ 10] [0320124326] +19:44:20 [ 11] [ 6] [158025] +19:44:20 [ 70] [ 3] [301] +19:44:20 ============================================================================ +19:44:20 + + +waiting on router queue for slot.... +19:44:20 Sending to : +19:44:20 ============================================================================ +19:44:20 ============================================================================ +19:44:20 Slot Id : <283> +19:44:20 Transaction Type : RESPONSE +19:44:20 Received From : +19:44:20 ============================================================================ +19:44:20 FNo. Len. Field Value +19:44:20 ============================================================================ +19:44:20 [ 1] [ 4] [0810] +19:44:20 [ 7] [ 10] [0320124326] +19:44:20 [ 11] [ 6] [158025] +19:44:20 [ 39] [ 2] [00] +19:44:20 [ 70] [ 3] [301] +19:44:20 ============================================================================ +19:44:20 Calculate Source COMM Id = 2 +19:44:20 ============================================================================ +19:44:20 + + +waiting on router queue for slot.... +19:44:35 ============================================================================ +19:44:35 Slot Id : <306> +19:44:35 Transaction Type : REQUEST +19:44:35 Received From : +19:44:35 ============================================================================ +19:44:35 FNo. Len. Field Value +19:44:35 ============================================================================ +19:44:35 [ 1] [ 4] [0800] +19:44:35 [ 7] [ 10] [0320124342] +19:44:35 [ 11] [ 6] [158026] +19:44:35 [ 70] [ 3] [301] +19:44:35 ============================================================================ +19:44:35 + + +waiting on router queue for slot.... +19:44:35 Sending to : +19:44:35 ============================================================================ +19:44:35 ============================================================================ +19:44:35 Slot Id : <306> +19:44:35 Transaction Type : RESPONSE +19:44:35 Received From : +19:44:35 ============================================================================ +19:44:35 FNo. Len. Field Value +19:44:35 ============================================================================ +19:44:35 [ 1] [ 4] [0810] +19:44:35 [ 7] [ 10] [0320124342] +19:44:35 [ 11] [ 6] [158026] +19:44:35 [ 39] [ 2] [00] +19:44:35 [ 70] [ 3] [301] +19:44:35 ============================================================================ +19:44:35 Calculate Source COMM Id = 2 +19:44:35 ============================================================================ +19:44:35 + + +waiting on router queue for slot.... +19:44:46 ============================================================================ +19:44:46 Slot Id : <311> +19:44:46 Transaction Type : REQUEST +19:44:46 Received From : +19:44:46 ============================================================================ +19:44:46 FNo. Len. Field Value +19:44:46 ============================================================================ +19:44:46 [ 1] [ 4] [0800] +19:44:46 [ 7] [ 10] [0320124353] +19:44:46 [ 11] [ 6] [158027] +19:44:46 [ 70] [ 3] [301] +19:44:46 ============================================================================ +19:44:46 + + +waiting on router queue for slot.... +19:44:46 Sending to : +19:44:46 ============================================================================ +19:44:46 ============================================================================ +19:44:46 Slot Id : <311> +19:44:46 Transaction Type : RESPONSE +19:44:46 Received From : +19:44:46 ============================================================================ +19:44:46 FNo. Len. Field Value +19:44:46 ============================================================================ +19:44:46 [ 1] [ 4] [0810] +19:44:46 [ 7] [ 10] [0320124353] +19:44:46 [ 11] [ 6] [158027] +19:44:46 [ 39] [ 2] [00] +19:44:46 [ 70] [ 3] [301] +19:44:46 ============================================================================ +19:44:46 Calculate Source COMM Id = 2 +19:44:46 ============================================================================ +19:44:46 + + +waiting on router queue for slot.... +19:44:51 ============================================================================ +19:44:51 Slot Id : <312> +19:44:51 Transaction Type : REQUEST +19:44:51 Received From : +19:44:51 ============================================================================ +19:44:51 FNo. Len. Field Value +19:44:51 ============================================================================ +19:44:51 [ 1] [ 4] [0800] +19:44:51 [ 2] [ 5] [02531] +19:44:51 [ 3] [ 6] [579198] +19:44:51 [ 7] [ 10] [0320124451] +19:44:51 [ 11] [ 6] [807558] +19:44:51 [ 15] [ 10] [0320124451] +19:44:51 [ 37] [ 11] [57919807558] +19:44:51 [ 70] [ 3] [001] +19:44:51 ============================================================================ +19:44:51 + + +waiting on router queue for slot.... +19:44:51 ============================================================================ +19:44:51 Slot Id : <312> +19:44:51 Transaction Type : RESPONSE +19:44:51 Received From : +19:44:51 ============================================================================ +19:44:51 FNo. Len. Field Value +19:44:51 ============================================================================ +19:44:51 [ 1] [ 4] [0810] +19:44:51 [ 7] [ 10] [0320124451] +19:44:51 [ 11] [ 6] [807558] +19:44:51 [ 15] [ 4] [0320] +19:44:51 [ 37] [ 12] [57919807558] +19:44:51 [ 39] [ 2] [00] +19:44:51 [ 70] [ 3] [001] +19:44:51 ============================================================================ +19:44:51 Sending to : +19:44:51 ============================================================================ +19:44:51 + + +waiting on router queue for slot.... +19:44:57 ============================================================================ +19:44:57 Slot Id : <307> +19:44:57 Transaction Type : REQUEST +19:44:57 Received From : +19:44:57 ============================================================================ +19:44:57 FNo. Len. Field Value +19:44:57 ============================================================================ +19:44:57 [ 1] [ 4] [0800] +19:44:57 [ 7] [ 10] [0320125242] +19:44:57 [ 11] [ 6] [079275] +19:44:57 [ 37] [ 12] [57919079275] +19:44:57 [ 70] [ 3] [301] +19:44:57 ============================================================================ +19:44:57 + + +waiting on router queue for slot.... +19:44:57 Sending to : +19:44:57 ============================================================================ +19:44:57 ============================================================================ +19:44:57 Slot Id : <307> +19:44:57 Transaction Type : RESPONSE +19:44:57 Received From : +19:44:57 ============================================================================ +19:44:57 FNo. Len. Field Value +19:44:57 ============================================================================ +19:44:57 [ 1] [ 4] [0810] +19:44:57 [ 7] [ 10] [0320125242] +19:44:57 [ 11] [ 6] [079275] +19:44:57 [ 37] [ 12] [579190792750] +19:44:57 [ 39] [ 2] [00] +19:44:57 [ 70] [ 3] [810] +19:44:57 ============================================================================ +19:44:57 Calculate Source COMM Id = 1 +19:44:57 ============================================================================ +19:44:57 + + +waiting on router queue for slot.... +19:45:02 ============================================================================ +19:45:02 Slot Id : <288> +19:45:02 Transaction Type : REQUEST +19:45:02 Received From : +19:45:02 ============================================================================ +19:45:02 FNo. Len. Field Value +19:45:02 ============================================================================ +19:45:02 [ 1] [ 4] [0800] +19:45:02 [ 7] [ 10] [0320124409] +19:45:02 [ 11] [ 6] [158028] +19:45:02 [ 70] [ 3] [301] +19:45:02 ============================================================================ +19:45:02 + + +waiting on router queue for slot.... +19:45:02 Sending to : +19:45:02 ============================================================================ +19:45:02 ============================================================================ +19:45:02 Slot Id : <288> +19:45:02 Transaction Type : RESPONSE +19:45:02 Received From : +19:45:02 ============================================================================ +19:45:02 FNo. Len. Field Value +19:45:02 ============================================================================ +19:45:02 [ 1] [ 4] [0810] +19:45:02 [ 7] [ 10] [0320124409] +19:45:02 [ 11] [ 6] [158028] +19:45:02 [ 39] [ 2] [00] +19:45:02 [ 70] [ 3] [301] +19:45:02 ============================================================================ +19:45:02 Calculate Source COMM Id = 2 +19:45:02 ============================================================================ +19:45:02 + + +waiting on router queue for slot.... +19:45:12 ============================================================================ +19:45:12 Slot Id : <316> +19:45:12 Transaction Type : REQUEST +19:45:12 Received From : +19:45:12 ============================================================================ +19:45:12 FNo. Len. Field Value +19:45:12 ============================================================================ +19:45:12 [ 1] [ 4] [0800] +19:45:12 [ 7] [ 10] [0321025700] +19:45:12 [ 11] [ 6] [195700] +19:45:12 [ 37] [ 12] [57919195700] +19:45:12 [ 70] [ 3] [301] +19:45:12 ============================================================================ +19:45:12 + + +waiting on router queue for slot.... +19:45:12 Sending to : +19:45:12 ============================================================================ +19:45:12 ============================================================================ +19:45:12 Slot Id : <316> +19:45:12 Transaction Type : RESPONSE +19:45:12 Received From : +19:45:12 ============================================================================ +19:45:12 FNo. Len. Field Value +19:45:12 ============================================================================ +19:45:12 [ 1] [ 4] [0810] +19:45:12 [ 7] [ 10] [0321025700] +19:45:12 [ 11] [ 6] [195700] +19:45:12 [ 37] [ 12] [579191957000] +19:45:12 [ 39] [ 2] [00] +19:45:12 [ 70] [ 3] [810] +19:45:12 ============================================================================ +19:45:12 Calculate Source COMM Id = 6 +19:45:12 ============================================================================ +19:45:12 + + +waiting on router queue for slot.... +19:45:13 ============================================================================ +19:45:13 Slot Id : <310> +19:45:13 Transaction Type : REQUEST +19:45:13 Received From : +19:45:13 ============================================================================ +19:45:13 FNo. Len. Field Value +19:45:13 ============================================================================ +19:45:13 [ 1] [ 4] [0800] +19:45:13 [ 7] [ 10] [0320124420] +19:45:13 [ 11] [ 6] [158029] +19:45:13 [ 70] [ 3] [301] +19:45:13 ============================================================================ +19:45:13 + + +waiting on router queue for slot.... +19:45:13 Sending to : +19:45:13 ============================================================================ +19:45:13 ============================================================================ +19:45:13 Slot Id : <310> +19:45:13 Transaction Type : RESPONSE +19:45:13 Received From : +19:45:13 ============================================================================ +19:45:13 FNo. Len. Field Value +19:45:13 ============================================================================ +19:45:13 [ 1] [ 4] [0810] +19:45:13 [ 7] [ 10] [0320124420] +19:45:13 [ 11] [ 6] [158029] +19:45:13 [ 39] [ 2] [00] +19:45:13 [ 70] [ 3] [301] +19:45:13 ============================================================================ +19:45:13 Calculate Source COMM Id = 2 +19:45:13 ============================================================================ +19:45:13 + + +waiting on router queue for slot.... +19:45:20 ============================================================================ +19:45:20 Slot Id : <317> +19:45:20 Transaction Type : REQUEST +19:45:20 Received From : +19:45:20 ============================================================================ +19:45:20 FNo. Len. Field Value +19:45:20 ============================================================================ +19:45:20 [ 1] [ 4] [0200] +19:45:20 [ 2] [ 16] [6213544000561206] +19:45:20 [ 3] [ 6] [010000] +19:45:20 [ 4] [ 12] [000005000000] +19:45:20 [ 7] [ 10] [0320194309] +19:45:20 [ 11] [ 6] [956522] +19:45:20 [ 12] [ 6] [194309] +19:45:20 [ 13] [ 4] [0320] +19:45:20 [ 15] [ 4] [0320] +19:45:20 [ 18] [ 4] [6011] +19:45:20 [ 19] [ 3] [418] +19:45:20 [ 22] [ 3] [021] +19:45:20 [ 25] [ 2] [01] +19:45:20 [ 28] [ 9] [D00002000] +19:45:20 [ 32] [ 6] [668899] +19:45:20 [ 35] [ 32] [6213544000561206=491212016120537] +19:45:20 [ 37] [ 12] [507901541792] +19:45:20 [ 41] [ 8] [03020016] +19:45:20 [ 42] [ 15] [APT ] +19:45:20 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +19:45:20 [ 49] [ 3] [418] +19:45:20 [ 52] [ 16] [8726F00167ECBD01] +19:45:20 ============================================================================ +19:45:20 + + +waiting on router queue for slot.... +19:45:20 Sending to : +19:45:20 ============================================================================ +19:45:20 Sending to : +19:45:20 ============================================================================ +19:45:20 ============================================================================ +19:45:20 Slot Id : <317> +19:45:20 Transaction Type : REQUEST +19:45:20 Received From : +19:45:20 ============================================================================ +19:45:20 FNo. Len. Field Value +19:45:20 ============================================================================ +19:45:20 [ 1] [ 4] [0200] +19:45:20 [ 2] [ 16] [6213544000561206] +19:45:20 [ 3] [ 6] [010000] +19:45:20 [ 4] [ 12] [000005000000] +19:45:20 [ 7] [ 10] [0320194309] +19:45:20 [ 11] [ 6] [956522] +19:45:20 [ 12] [ 6] [194309] +19:45:20 [ 13] [ 4] [0320] +19:45:20 [ 15] [ 4] [0320] +19:45:20 [ 18] [ 4] [6011] +19:45:20 [ 19] [ 3] [418] +19:45:20 [ 22] [ 3] [021] +19:45:20 [ 25] [ 2] [01] +19:45:20 [ 28] [ 9] [D00002000] +19:45:20 [ 32] [ 6] [668899] +19:45:20 [ 35] [ 32] [6213544000561206=491212016120537] +19:45:20 [ 37] [ 12] [507901541792] +19:45:20 [ 41] [ 8] [03020016] +19:45:20 [ 42] [ 15] [APT ] +19:45:20 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +19:45:20 [ 49] [ 3] [418] +19:45:20 [ 52] [ 16] [8726F00167ECBD01] +19:45:20 ============================================================================ +19:45:20 + + +waiting on router queue for slot.... +19:45:20 Sending to : +19:45:20 ============================================================================ +19:45:20 ============================================================================ +19:45:20 Slot Id : <317> +19:45:20 Transaction Type : REQUEST +19:45:20 Received From : +19:45:20 ============================================================================ +19:45:20 FNo. Len. Field Value +19:45:20 ============================================================================ +19:45:20 [ 1] [ 4] [0200] +19:45:20 [ 2] [ 16] [6213544000561206] +19:45:20 [ 3] [ 6] [010000] +19:45:20 [ 4] [ 12] [000005000000] +19:45:20 [ 7] [ 10] [0320194309] +19:45:20 [ 11] [ 6] [956522] +19:45:20 [ 12] [ 6] [194309] +19:45:20 [ 13] [ 4] [0320] +19:45:20 [ 15] [ 4] [0320] +19:45:20 [ 18] [ 4] [6011] +19:45:20 [ 19] [ 3] [418] +19:45:20 [ 22] [ 3] [021] +19:45:20 [ 25] [ 2] [01] +19:45:20 [ 28] [ 9] [D00002000] +19:45:20 [ 32] [ 6] [668899] +19:45:20 [ 35] [ 32] [6213544000561206=491212016120537] +19:45:20 [ 37] [ 12] [507901541792] +19:45:20 [ 41] [ 8] [03020016] +19:45:20 [ 42] [ 15] [APT ] +19:45:20 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +19:45:20 [ 49] [ 3] [418] +19:45:20 [ 52] [ 16] [BDC4ADC77062A78A] +19:45:20 ============================================================================ +19:45:20 + + +waiting on router queue for slot.... +19:45:20 Sending to : <0> +19:45:20 ============================================================================ +19:45:20 ============================================================================ +19:45:20 Slot Id : <317> +19:45:20 Transaction Type : RESPONSE +19:45:20 Received From : +19:45:20 ============================================================================ +19:45:20 FNo. Len. Field Value +19:45:20 ============================================================================ +19:45:20 [ 1] [ 4] [0210] +19:45:20 [ 2] [ 16] [6213544000561206] +19:45:20 [ 3] [ 6] [010000] +19:45:20 [ 4] [ 12] [000005000000] +19:45:20 [ 7] [ 10] [0320194309] +19:45:20 [ 11] [ 6] [956522] +19:45:20 [ 12] [ 6] [194309] +19:45:20 [ 13] [ 4] [0320] +19:45:20 [ 15] [ 4] [0320] +19:45:20 [ 18] [ 4] [6011] +19:45:20 [ 19] [ 3] [418] +19:45:20 [ 32] [ 6] [668899] +19:45:20 [ 35] [ 32] [6213544000561206=491212016120537] +19:45:20 [ 37] [ 12] [507901541792] +19:45:20 [ 38] [ 6] [038282] +19:45:20 [ 39] [ 2] [00] +19:45:20 [ 41] [ 8] [03020016] +19:45:20 [ 49] [ 3] [418] +19:45:20 [ 54] [ 40] [0001418C0000087204080002418C000008720408] +19:45:20 ============================================================================ +19:45:20 Sending to : +19:45:20 ============================================================================ +19:45:20 + + +waiting on router queue for slot.... +19:45:22 ============================================================================ +19:45:22 Slot Id : <317> +19:45:22 Transaction Type : RESPONSE +19:45:22 Received From : +19:45:22 ============================================================================ +19:45:22 FNo. Len. Field Value +19:45:22 ============================================================================ +19:45:22 [ 1] [ 4] [0210] +19:45:22 [ 2] [ 16] [6213544000561206] +19:45:22 [ 3] [ 6] [010000] +19:45:22 [ 4] [ 12] [000005000000] +19:45:22 [ 7] [ 10] [0320194309] +19:45:22 [ 11] [ 6] [956522] +19:45:22 [ 12] [ 6] [194309] +19:45:22 [ 13] [ 4] [0320] +19:45:22 [ 15] [ 4] [0320] +19:45:22 [ 18] [ 4] [6011] +19:45:22 [ 19] [ 3] [418] +19:45:22 [ 32] [ 6] [668899] +19:45:22 [ 35] [ 32] [6213544000561206=491212016120537] +19:45:22 [ 37] [ 12] [507901541792] +19:45:22 [ 38] [ 6] [038282] +19:45:22 [ 39] [ 2] [00] +19:45:22 [ 41] [ 8] [03020016] +19:45:22 [ 49] [ 3] [418] +19:45:22 [ 54] [ 40] [0001418C0000087204080002418C000008720408] +19:45:22 ============================================================================ +19:45:22 Calculate Source COMM Id = 4 +19:45:22 ============================================================================ +19:45:22 + + +waiting on router queue for slot.... +19:45:27 ============================================================================ +19:45:27 Slot Id : <318> +19:45:27 Transaction Type : REQUEST +19:45:27 Received From : +19:45:27 ============================================================================ +19:45:27 FNo. Len. Field Value +19:45:27 ============================================================================ +19:45:27 [ 1] [ 4] [0200] +19:45:27 [ 2] [ 16] [6213541000707904] +19:45:27 [ 3] [ 6] [010000] +19:45:27 [ 4] [ 12] [000050000000] +19:45:27 [ 7] [ 10] [0320194316] +19:45:27 [ 11] [ 6] [956524] +19:45:27 [ 12] [ 6] [194316] +19:45:27 [ 13] [ 4] [0320] +19:45:27 [ 15] [ 4] [0320] +19:45:27 [ 18] [ 4] [6011] +19:45:27 [ 19] [ 3] [418] +19:45:27 [ 22] [ 3] [021] +19:45:27 [ 25] [ 2] [01] +19:45:27 [ 28] [ 9] [D00002000] +19:45:27 [ 32] [ 6] [668899] +19:45:27 [ 35] [ 32] [6213541000707904=491212010790179] +19:45:27 [ 37] [ 12] [507900858458] +19:45:27 [ 41] [ 8] [03015004] +19:45:27 [ 42] [ 15] [APT ] +19:45:27 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +19:45:27 [ 49] [ 3] [418] +19:45:27 [ 52] [ 16] [647600F773F7F008] +19:45:27 ============================================================================ +19:45:27 + + +waiting on router queue for slot.... +19:45:27 Sending to : +19:45:27 ============================================================================ +19:45:27 Sending to : +19:45:27 ============================================================================ +19:45:27 ============================================================================ +19:45:27 Slot Id : <318> +19:45:27 Transaction Type : REQUEST +19:45:27 Received From : +19:45:27 ============================================================================ +19:45:27 FNo. Len. Field Value +19:45:27 ============================================================================ +19:45:27 [ 1] [ 4] [0200] +19:45:27 [ 2] [ 16] [6213541000707904] +19:45:27 [ 3] [ 6] [010000] +19:45:27 [ 4] [ 12] [000050000000] +19:45:27 [ 7] [ 10] [0320194316] +19:45:27 [ 11] [ 6] [956524] +19:45:27 [ 12] [ 6] [194316] +19:45:27 [ 13] [ 4] [0320] +19:45:27 [ 15] [ 4] [0320] +19:45:27 [ 18] [ 4] [6011] +19:45:27 [ 19] [ 3] [418] +19:45:27 [ 22] [ 3] [021] +19:45:27 [ 25] [ 2] [01] +19:45:27 [ 28] [ 9] [D00002000] +19:45:27 [ 32] [ 6] [668899] +19:45:27 [ 35] [ 32] [6213541000707904=491212010790179] +19:45:27 [ 37] [ 12] [507900858458] +19:45:27 [ 41] [ 8] [03015004] +19:45:27 [ 42] [ 15] [APT ] +19:45:27 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +19:45:27 [ 49] [ 3] [418] +19:45:27 [ 52] [ 16] [647600F773F7F008] +19:45:27 ============================================================================ +19:45:27 + + +waiting on router queue for slot.... +19:45:27 Sending to : +19:45:27 ============================================================================ +19:45:27 ============================================================================ +19:45:27 Slot Id : <318> +19:45:27 Transaction Type : REQUEST +19:45:27 Received From : +19:45:27 ============================================================================ +19:45:27 FNo. Len. Field Value +19:45:27 ============================================================================ +19:45:27 [ 1] [ 4] [0200] +19:45:27 [ 2] [ 16] [6213541000707904] +19:45:27 [ 3] [ 6] [010000] +19:45:27 [ 4] [ 12] [000050000000] +19:45:27 [ 7] [ 10] [0320194316] +19:45:27 [ 11] [ 6] [956524] +19:45:27 [ 12] [ 6] [194316] +19:45:27 [ 13] [ 4] [0320] +19:45:27 [ 15] [ 4] [0320] +19:45:27 [ 18] [ 4] [6011] +19:45:27 [ 19] [ 3] [418] +19:45:27 [ 22] [ 3] [021] +19:45:27 [ 25] [ 2] [01] +19:45:27 [ 28] [ 9] [D00002000] +19:45:27 [ 32] [ 6] [668899] +19:45:27 [ 35] [ 32] [6213541000707904=491212010790179] +19:45:27 [ 37] [ 12] [507900858458] +19:45:27 [ 41] [ 8] [03015004] +19:45:27 [ 42] [ 15] [APT ] +19:45:27 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +19:45:27 [ 49] [ 3] [418] +19:45:27 [ 52] [ 16] [6747D416F8A124ED] +19:45:27 ============================================================================ +19:45:27 + + +waiting on router queue for slot.... +19:45:27 Sending to : <0> +19:45:27 ============================================================================ +19:45:28 ============================================================================ +19:45:28 Slot Id : <318> +19:45:28 Transaction Type : RESPONSE +19:45:28 Received From : +19:45:28 ============================================================================ +19:45:28 FNo. Len. Field Value +19:45:28 ============================================================================ +19:45:28 [ 1] [ 4] [0210] +19:45:28 [ 2] [ 16] [6213541000707904] +19:45:28 [ 3] [ 6] [010000] +19:45:28 [ 4] [ 12] [000050000000] +19:45:28 [ 7] [ 10] [0320194316] +19:45:28 [ 11] [ 6] [956524] +19:45:28 [ 12] [ 6] [194316] +19:45:28 [ 13] [ 4] [0320] +19:45:28 [ 15] [ 4] [0320] +19:45:28 [ 18] [ 4] [6011] +19:45:28 [ 19] [ 3] [418] +19:45:28 [ 32] [ 6] [668899] +19:45:28 [ 35] [ 32] [6213541000707904=491212010790179] +19:45:28 [ 37] [ 12] [507900858458] +19:45:28 [ 38] [ 6] [373613] +19:45:28 [ 39] [ 2] [00] +19:45:28 [ 41] [ 8] [03015004] +19:45:28 [ 49] [ 3] [418] +19:45:28 [ 54] [ 40] [0001418C0010998000000002418C001099800000] +19:45:28 ============================================================================ +19:45:28 Sending to : +19:45:28 ============================================================================ +19:45:28 + + +waiting on router queue for slot.... +19:45:29 ============================================================================ +19:45:29 Slot Id : <318> +19:45:29 Transaction Type : RESPONSE +19:45:29 Received From : +19:45:29 ============================================================================ +19:45:29 FNo. Len. Field Value +19:45:29 ============================================================================ +19:45:29 [ 1] [ 4] [0210] +19:45:29 [ 2] [ 16] [6213541000707904] +19:45:29 [ 3] [ 6] [010000] +19:45:29 [ 4] [ 12] [000050000000] +19:45:29 [ 7] [ 10] [0320194316] +19:45:29 [ 11] [ 6] [956524] +19:45:29 [ 12] [ 6] [194316] +19:45:29 [ 13] [ 4] [0320] +19:45:29 [ 15] [ 4] [0320] +19:45:29 [ 18] [ 4] [6011] +19:45:29 [ 19] [ 3] [418] +19:45:29 [ 32] [ 6] [668899] +19:45:29 [ 35] [ 32] [6213541000707904=491212010790179] +19:45:29 [ 37] [ 12] [507900858458] +19:45:29 [ 38] [ 6] [373613] +19:45:29 [ 39] [ 2] [00] +19:45:29 [ 41] [ 8] [03015004] +19:45:29 [ 49] [ 3] [418] +19:45:29 [ 54] [ 40] [0001418C0010998000000002418C001099800000] +19:45:29 ============================================================================ +19:45:29 Calculate Source COMM Id = 4 +19:45:29 ============================================================================ +19:45:29 + + +waiting on router queue for slot.... +19:45:30 ============================================================================ +19:45:30 Slot Id : <325> +19:45:30 Transaction Type : REQUEST +19:45:30 Received From : +19:45:30 ============================================================================ +19:45:30 FNo. Len. Field Value +19:45:30 ============================================================================ +19:45:30 [ 1] [ 4] [0800] +19:45:30 [ 7] [ 10] [0320124436] +19:45:30 [ 11] [ 6] [158030] +19:45:30 [ 70] [ 3] [301] +19:45:30 ============================================================================ +19:45:30 + + +waiting on router queue for slot.... +19:45:30 Sending to : +19:45:30 ============================================================================ +19:45:30 ============================================================================ +19:45:30 Slot Id : <325> +19:45:30 Transaction Type : RESPONSE +19:45:30 Received From : +19:45:30 ============================================================================ +19:45:30 FNo. Len. Field Value +19:45:30 ============================================================================ +19:45:30 [ 1] [ 4] [0810] +19:45:30 [ 7] [ 10] [0320124436] +19:45:30 [ 11] [ 6] [158030] +19:45:30 [ 39] [ 2] [00] +19:45:30 [ 70] [ 3] [301] +19:45:30 ============================================================================ +19:45:30 Calculate Source COMM Id = 2 +19:45:30 ============================================================================ +19:45:30 + + +waiting on router queue for slot.... +19:45:41 ============================================================================ +19:45:41 Slot Id : <322> +19:45:41 Transaction Type : REQUEST +19:45:41 Received From : +19:45:41 ============================================================================ +19:45:41 FNo. Len. Field Value +19:45:41 ============================================================================ +19:45:41 [ 1] [ 4] [0800] +19:45:41 [ 7] [ 10] [0320124447] +19:45:41 [ 11] [ 6] [158031] +19:45:41 [ 70] [ 3] [301] +19:45:41 ============================================================================ +19:45:41 + + +waiting on router queue for slot.... +19:45:41 Sending to : +19:45:41 ============================================================================ +19:45:41 ============================================================================ +19:45:41 Slot Id : <322> +19:45:41 Transaction Type : RESPONSE +19:45:41 Received From : +19:45:41 ============================================================================ +19:45:41 FNo. Len. Field Value +19:45:41 ============================================================================ +19:45:41 [ 1] [ 4] [0810] +19:45:41 [ 7] [ 10] [0320124447] +19:45:41 [ 11] [ 6] [158031] +19:45:41 [ 39] [ 2] [00] +19:45:41 [ 70] [ 3] [301] +19:45:41 ============================================================================ +19:45:41 Calculate Source COMM Id = 2 +19:45:41 ============================================================================ +19:45:41 + + +waiting on router queue for slot.... +19:45:51 ============================================================================ +19:45:51 Slot Id : <315> +19:45:51 Transaction Type : REQUEST +19:45:51 Received From : +19:45:51 ============================================================================ +19:45:51 FNo. Len. Field Value +19:45:51 ============================================================================ +19:45:51 [ 1] [ 4] [0800] +19:45:51 [ 7] [ 10] [0320124458] +19:45:51 [ 11] [ 6] [158032] +19:45:51 [ 70] [ 3] [301] +19:45:51 ============================================================================ +19:45:51 + + +waiting on router queue for slot.... +19:45:51 Sending to : +19:45:51 ============================================================================ +19:45:51 ============================================================================ +19:45:51 Slot Id : <315> +19:45:51 Transaction Type : RESPONSE +19:45:51 Received From : +19:45:51 ============================================================================ +19:45:51 FNo. Len. Field Value +19:45:51 ============================================================================ +19:45:51 [ 1] [ 4] [0810] +19:45:51 [ 7] [ 10] [0320124458] +19:45:51 [ 11] [ 6] [158032] +19:45:51 [ 39] [ 2] [00] +19:45:51 [ 70] [ 3] [301] +19:45:51 ============================================================================ +19:45:51 Calculate Source COMM Id = 2 +19:45:51 ============================================================================ +19:45:51 + + +waiting on router queue for slot.... +19:45:53 ============================================================================ +19:45:53 Slot Id : <297> +19:45:53 Transaction Type : REQUEST +19:45:53 Received From : +19:45:53 ============================================================================ +19:45:53 FNo. Len. Field Value +19:45:53 ============================================================================ +19:45:53 [ 1] [ 4] [0800] +19:45:53 [ 2] [ 5] [02531] +19:45:53 [ 3] [ 6] [579198] +19:45:53 [ 7] [ 10] [0320124553] +19:45:53 [ 11] [ 6] [807559] +19:45:53 [ 15] [ 10] [0320124553] +19:45:53 [ 37] [ 11] [57919807559] +19:45:53 [ 70] [ 3] [001] +19:45:53 ============================================================================ +19:45:53 + + +waiting on router queue for slot.... +19:45:53 ============================================================================ +19:45:53 Slot Id : <297> +19:45:53 Transaction Type : RESPONSE +19:45:53 Received From : +19:45:53 ============================================================================ +19:45:53 FNo. Len. Field Value +19:45:53 ============================================================================ +19:45:53 [ 1] [ 4] [0810] +19:45:53 [ 7] [ 10] [0320124553] +19:45:53 [ 11] [ 6] [807559] +19:45:53 [ 15] [ 4] [0320] +19:45:53 [ 37] [ 12] [57919807559] +19:45:53 [ 39] [ 2] [00] +19:45:53 [ 70] [ 3] [001] +19:45:53 ============================================================================ +19:45:53 Sending to : +19:45:53 ============================================================================ +19:45:53 + + +waiting on router queue for slot.... +19:46:07 ============================================================================ +19:46:07 Slot Id : <289> +19:46:07 Transaction Type : REQUEST +19:46:07 Received From : +19:46:07 ============================================================================ +19:46:07 FNo. Len. Field Value +19:46:07 ============================================================================ +19:46:07 [ 1] [ 4] [0800] +19:46:07 [ 7] [ 10] [0320124513] +19:46:07 [ 11] [ 6] [158033] +19:46:07 [ 70] [ 3] [301] +19:46:07 ============================================================================ +19:46:07 + + +waiting on router queue for slot.... +19:46:07 Sending to : +19:46:07 ============================================================================ +19:46:07 ============================================================================ +19:46:07 Slot Id : <289> +19:46:07 Transaction Type : RESPONSE +19:46:07 Received From : +19:46:07 ============================================================================ +19:46:07 FNo. Len. Field Value +19:46:07 ============================================================================ +19:46:07 [ 1] [ 4] [0810] +19:46:07 [ 7] [ 10] [0320124513] +19:46:07 [ 11] [ 6] [158033] +19:46:07 [ 39] [ 2] [00] +19:46:07 [ 70] [ 3] [301] +19:46:07 ============================================================================ +19:46:07 Calculate Source COMM Id = 2 +19:46:07 ============================================================================ +19:46:07 + + +waiting on router queue for slot.... +19:46:17 ============================================================================ +19:46:17 Slot Id : <304> +19:46:17 Transaction Type : REQUEST +19:46:17 Received From : +19:46:17 ============================================================================ +19:46:17 FNo. Len. Field Value +19:46:17 ============================================================================ +19:46:17 [ 1] [ 4] [0800] +19:46:17 [ 7] [ 10] [0321025805] +19:46:17 [ 11] [ 6] [195805] +19:46:17 [ 37] [ 12] [57919195805] +19:46:17 [ 70] [ 3] [301] +19:46:17 ============================================================================ +19:46:17 + + +waiting on router queue for slot.... +19:46:17 Sending to : +19:46:17 ============================================================================ +19:46:17 ============================================================================ +19:46:17 Slot Id : <304> +19:46:17 Transaction Type : RESPONSE +19:46:17 Received From : +19:46:17 ============================================================================ +19:46:17 FNo. Len. Field Value +19:46:17 ============================================================================ +19:46:17 [ 1] [ 4] [0810] +19:46:17 [ 7] [ 10] [0321025805] +19:46:17 [ 11] [ 6] [195805] +19:46:17 [ 37] [ 12] [579191958050] +19:46:17 [ 39] [ 2] [00] +19:46:17 [ 70] [ 3] [810] +19:46:17 ============================================================================ +19:46:17 Calculate Source COMM Id = 6 +19:46:17 ============================================================================ +19:46:17 + + +waiting on router queue for slot.... +19:46:19 ============================================================================ +19:46:19 Slot Id : <326> +19:46:19 Transaction Type : REQUEST +19:46:19 Received From : +19:46:19 ============================================================================ +19:46:19 FNo. Len. Field Value +19:46:19 ============================================================================ +19:46:19 [ 1] [ 4] [0800] +19:46:19 [ 7] [ 10] [0320124525] +19:46:19 [ 11] [ 6] [158034] +19:46:19 [ 70] [ 3] [301] +19:46:19 ============================================================================ +19:46:19 + + +waiting on router queue for slot.... +19:46:19 Sending to : +19:46:19 ============================================================================ +19:46:19 ============================================================================ +19:46:19 Slot Id : <326> +19:46:19 Transaction Type : RESPONSE +19:46:19 Received From : +19:46:19 ============================================================================ +19:46:19 FNo. Len. Field Value +19:46:19 ============================================================================ +19:46:19 [ 1] [ 4] [0810] +19:46:19 [ 7] [ 10] [0320124525] +19:46:19 [ 11] [ 6] [158034] +19:46:19 [ 39] [ 2] [00] +19:46:19 [ 70] [ 3] [301] +19:46:19 ============================================================================ +19:46:19 Calculate Source COMM Id = 2 +19:46:19 ============================================================================ +19:46:19 + + +waiting on router queue for slot.... +19:46:23 ============================================================================ +19:46:23 Slot Id : <291> +19:46:23 Transaction Type : REQUEST +19:46:23 Received From : +19:46:23 ============================================================================ +19:46:23 FNo. Len. Field Value +19:46:23 ============================================================================ +19:46:23 [ 1] [ 4] [0800] +19:46:23 [ 7] [ 10] [0320124412] +19:46:23 [ 11] [ 6] [013112] +19:46:23 [ 37] [ 12] [57919013112] +19:46:23 [ 70] [ 3] [301] +19:46:23 ============================================================================ +19:46:23 + + +waiting on router queue for slot.... +19:46:23 Sending to : +19:46:23 ============================================================================ +19:46:23 ============================================================================ +19:46:23 Slot Id : <291> +19:46:23 Transaction Type : RESPONSE +19:46:23 Received From : +19:46:23 ============================================================================ +19:46:23 FNo. Len. Field Value +19:46:23 ============================================================================ +19:46:23 [ 1] [ 4] [0810] +19:46:23 [ 7] [ 10] [0320124412] +19:46:23 [ 11] [ 6] [013112] +19:46:23 [ 37] [ 12] [579190131120] +19:46:23 [ 39] [ 2] [00] +19:46:23 [ 70] [ 3] [810] +19:46:23 ============================================================================ +19:46:23 Calculate Source COMM Id = 4 +19:46:23 ============================================================================ +19:46:23 + + +waiting on router queue for slot.... +19:46:29 ============================================================================ +19:46:29 Slot Id : <327> +19:46:29 Transaction Type : REQUEST +19:46:29 Received From : +19:46:29 ============================================================================ +19:46:29 FNo. Len. Field Value +19:46:29 ============================================================================ +19:46:29 [ 1] [ 4] [0800] +19:46:29 [ 7] [ 10] [0320124536] +19:46:29 [ 11] [ 6] [158035] +19:46:29 [ 70] [ 3] [301] +19:46:29 ============================================================================ +19:46:29 + + +waiting on router queue for slot.... +19:46:29 Sending to : +19:46:29 ============================================================================ +19:46:29 ============================================================================ +19:46:29 Slot Id : <327> +19:46:29 Transaction Type : RESPONSE +19:46:29 Received From : +19:46:29 ============================================================================ +19:46:29 FNo. Len. Field Value +19:46:29 ============================================================================ +19:46:29 [ 1] [ 4] [0810] +19:46:29 [ 7] [ 10] [0320124536] +19:46:29 [ 11] [ 6] [158035] +19:46:29 [ 39] [ 2] [00] +19:46:29 [ 70] [ 3] [301] +19:46:29 ============================================================================ +19:46:29 Calculate Source COMM Id = 2 +19:46:29 ============================================================================ +19:46:29 + + +waiting on router queue for slot.... +19:46:46 ============================================================================ +19:46:46 Slot Id : <285> +19:46:46 Transaction Type : REQUEST +19:46:46 Received From : +19:46:46 ============================================================================ +19:46:46 FNo. Len. Field Value +19:46:46 ============================================================================ +19:46:46 [ 1] [ 4] [0800] +19:46:46 [ 7] [ 10] [0320124551] +19:46:46 [ 11] [ 6] [158036] +19:46:46 [ 70] [ 3] [301] +19:46:46 ============================================================================ +19:46:46 + + +waiting on router queue for slot.... +19:46:46 Sending to : +19:46:46 ============================================================================ +19:46:46 ============================================================================ +19:46:46 Slot Id : <285> +19:46:46 Transaction Type : RESPONSE +19:46:46 Received From : +19:46:46 ============================================================================ +19:46:46 FNo. Len. Field Value +19:46:46 ============================================================================ +19:46:46 [ 1] [ 4] [0810] +19:46:46 [ 7] [ 10] [0320124551] +19:46:46 [ 11] [ 6] [158036] +19:46:46 [ 39] [ 2] [00] +19:46:46 [ 70] [ 3] [301] +19:46:46 ============================================================================ +19:46:46 Calculate Source COMM Id = 2 +19:46:46 ============================================================================ +19:46:46 + + +waiting on router queue for slot.... +19:46:55 ============================================================================ +19:46:55 Slot Id : <331> +19:46:55 Transaction Type : REQUEST +19:46:55 Received From : +19:46:55 ============================================================================ +19:46:55 FNo. Len. Field Value +19:46:55 ============================================================================ +19:46:55 [ 1] [ 4] [0800] +19:46:55 [ 2] [ 5] [02531] +19:46:55 [ 3] [ 6] [579198] +19:46:55 [ 7] [ 10] [0320124655] +19:46:55 [ 11] [ 6] [807560] +19:46:55 [ 15] [ 10] [0320124655] +19:46:55 [ 37] [ 11] [57919807560] +19:46:55 [ 70] [ 3] [001] +19:46:55 ============================================================================ +19:46:55 + + +waiting on router queue for slot.... +19:46:55 ============================================================================ +19:46:55 Slot Id : <331> +19:46:55 Transaction Type : RESPONSE +19:46:55 Received From : +19:46:55 ============================================================================ +19:46:55 FNo. Len. Field Value +19:46:55 ============================================================================ +19:46:55 [ 1] [ 4] [0810] +19:46:55 [ 7] [ 10] [0320124655] +19:46:55 [ 11] [ 6] [807560] +19:46:55 [ 15] [ 4] [0320] +19:46:55 [ 37] [ 12] [57919807560] +19:46:55 [ 39] [ 2] [00] +19:46:55 [ 70] [ 3] [001] +19:46:55 ============================================================================ +19:46:55 Sending to : +19:46:55 ============================================================================ +19:46:55 + + +waiting on router queue for slot.... +19:47:01 ============================================================================ +19:47:01 Slot Id : <301> +19:47:01 Transaction Type : REQUEST +19:47:01 Received From : +19:47:01 ============================================================================ +19:47:01 FNo. Len. Field Value +19:47:01 ============================================================================ +19:47:01 [ 1] [ 4] [0800] +19:47:01 [ 7] [ 10] [0320124607] +19:47:01 [ 11] [ 6] [158037] +19:47:01 [ 70] [ 3] [301] +19:47:01 ============================================================================ +19:47:01 + + +waiting on router queue for slot.... +19:47:01 Sending to : +19:47:01 ============================================================================ +19:47:01 ============================================================================ +19:47:01 Slot Id : <301> +19:47:01 Transaction Type : RESPONSE +19:47:01 Received From : +19:47:01 ============================================================================ +19:47:01 FNo. Len. Field Value +19:47:01 ============================================================================ +19:47:01 [ 1] [ 4] [0810] +19:47:01 [ 7] [ 10] [0320124607] +19:47:01 [ 11] [ 6] [158037] +19:47:01 [ 39] [ 2] [00] +19:47:01 [ 70] [ 3] [301] +19:47:01 ============================================================================ +19:47:01 Calculate Source COMM Id = 2 +19:47:01 ============================================================================ +19:47:01 + + +waiting on router queue for slot.... +19:47:17 ============================================================================ +19:47:17 Slot Id : <305> +19:47:17 Transaction Type : REQUEST +19:47:17 Received From : +19:47:17 ============================================================================ +19:47:17 FNo. Len. Field Value +19:47:17 ============================================================================ +19:47:17 [ 1] [ 4] [0800] +19:47:17 [ 7] [ 10] [0320124623] +19:47:17 [ 11] [ 6] [158038] +19:47:17 [ 70] [ 3] [301] +19:47:17 ============================================================================ +19:47:17 + + +waiting on router queue for slot.... +19:47:17 Sending to : +19:47:17 ============================================================================ +19:47:17 ============================================================================ +19:47:17 Slot Id : <305> +19:47:17 Transaction Type : RESPONSE +19:47:17 Received From : +19:47:17 ============================================================================ +19:47:17 FNo. Len. Field Value +19:47:17 ============================================================================ +19:47:17 [ 1] [ 4] [0810] +19:47:17 [ 7] [ 10] [0320124623] +19:47:17 [ 11] [ 6] [158038] +19:47:17 [ 39] [ 2] [00] +19:47:17 [ 70] [ 3] [301] +19:47:17 ============================================================================ +19:47:17 Calculate Source COMM Id = 2 +19:47:17 ============================================================================ +19:47:17 + + +waiting on router queue for slot.... +19:47:20 ============================================================================ +19:47:20 Slot Id : <302> +19:47:20 Transaction Type : REQUEST +19:47:20 Received From : +19:47:20 ============================================================================ +19:47:20 FNo. Len. Field Value +19:47:20 ============================================================================ +19:47:20 [ 1] [ 4] [0200] +19:47:20 [ 2] [ 16] [1808931400009500] +19:47:20 [ 3] [ 6] [010000] +19:47:20 [ 4] [ 12] [000100000000] +19:47:20 [ 7] [ 10] [0320194510] +19:47:20 [ 11] [ 6] [956556] +19:47:20 [ 12] [ 6] [194510] +19:47:20 [ 13] [ 4] [0320] +19:47:20 [ 15] [ 4] [0320] +19:47:20 [ 18] [ 4] [6011] +19:47:20 [ 19] [ 3] [418] +19:47:20 [ 22] [ 3] [021] +19:47:20 [ 25] [ 2] [01] +19:47:20 [ 28] [ 9] [D00002000] +19:47:20 [ 32] [ 6] [668899] +19:47:20 [ 35] [ 27] [1808931400009500=1803500899] +19:47:20 [ 37] [ 12] [507901604387] +19:47:20 [ 41] [ 8] [03202001] +19:47:20 [ 42] [ 15] [APT ] +19:47:20 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:47:20 [ 49] [ 3] [418] +19:47:20 [ 52] [ 16] [8469DDDEFD5503A0] +19:47:20 ============================================================================ +19:47:20 + + +waiting on router queue for slot.... +19:47:20 Sending to : +19:47:20 ============================================================================ +19:47:20 Sending to : +19:47:20 ============================================================================ +19:47:21 ============================================================================ +19:47:21 Slot Id : <302> +19:47:21 Transaction Type : REQUEST +19:47:21 Received From : +19:47:21 ============================================================================ +19:47:21 FNo. Len. Field Value +19:47:21 ============================================================================ +19:47:21 [ 1] [ 4] [0200] +19:47:21 [ 2] [ 16] [1808931400009500] +19:47:21 [ 3] [ 6] [010000] +19:47:21 [ 4] [ 12] [000100000000] +19:47:21 [ 7] [ 10] [0320194510] +19:47:21 [ 11] [ 6] [956556] +19:47:21 [ 12] [ 6] [194510] +19:47:21 [ 13] [ 4] [0320] +19:47:21 [ 15] [ 4] [0320] +19:47:21 [ 18] [ 4] [6011] +19:47:21 [ 19] [ 3] [418] +19:47:21 [ 22] [ 3] [021] +19:47:21 [ 25] [ 2] [01] +19:47:21 [ 28] [ 9] [D00002000] +19:47:21 [ 32] [ 6] [668899] +19:47:21 [ 35] [ 27] [1808931400009500=1803500899] +19:47:21 [ 37] [ 12] [507901604387] +19:47:21 [ 41] [ 8] [03202001] +19:47:21 [ 42] [ 15] [APT ] +19:47:21 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:47:21 [ 49] [ 3] [418] +19:47:21 [ 52] [ 16] [8469DDDEFD5503A0] +19:47:21 ============================================================================ +19:47:21 + + +waiting on router queue for slot.... +19:47:21 Sending to : +19:47:21 ============================================================================ +19:47:21 ============================================================================ +19:47:21 Slot Id : <302> +19:47:21 Transaction Type : REQUEST +19:47:21 Received From : +19:47:21 ============================================================================ +19:47:21 FNo. Len. Field Value +19:47:21 ============================================================================ +19:47:21 [ 1] [ 4] [0200] +19:47:21 [ 2] [ 16] [1808931400009500] +19:47:21 [ 3] [ 6] [010000] +19:47:21 [ 4] [ 12] [000100000000] +19:47:21 [ 7] [ 10] [0320194510] +19:47:21 [ 11] [ 6] [956556] +19:47:21 [ 12] [ 6] [194510] +19:47:21 [ 13] [ 4] [0320] +19:47:21 [ 15] [ 4] [0320] +19:47:21 [ 18] [ 4] [6011] +19:47:21 [ 19] [ 3] [418] +19:47:21 [ 22] [ 3] [021] +19:47:21 [ 25] [ 2] [01] +19:47:21 [ 28] [ 9] [D00002000] +19:47:21 [ 32] [ 6] [668899] +19:47:21 [ 35] [ 27] [1808931400009500=1803500899] +19:47:21 [ 37] [ 12] [507901604387] +19:47:21 [ 41] [ 8] [03202001] +19:47:21 [ 42] [ 15] [APT ] +19:47:21 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:47:21 [ 49] [ 3] [418] +19:47:21 [ 52] [ 16] [C5E42789A6EE4629] +19:47:21 ============================================================================ +19:47:21 + + +waiting on router queue for slot.... +19:47:21 Sending to : <2> +19:47:21 ============================================================================ +19:47:22 ============================================================================ +19:47:22 Slot Id : <314> +19:47:22 Transaction Type : REQUEST +19:47:22 Received From : +19:47:22 ============================================================================ +19:47:22 FNo. Len. Field Value +19:47:22 ============================================================================ +19:47:22 [ 1] [ 4] [0800] +19:47:22 [ 7] [ 10] [0321025910] +19:47:22 [ 11] [ 6] [195910] +19:47:22 [ 37] [ 12] [57919195910] +19:47:22 [ 70] [ 3] [301] +19:47:22 ============================================================================ +19:47:22 + + +waiting on router queue for slot.... +19:47:22 Sending to : +19:47:22 ============================================================================ +19:47:22 ============================================================================ +19:47:22 Slot Id : <314> +19:47:22 Transaction Type : RESPONSE +19:47:22 Received From : +19:47:22 ============================================================================ +19:47:22 FNo. Len. Field Value +19:47:22 ============================================================================ +19:47:22 [ 1] [ 4] [0810] +19:47:22 [ 7] [ 10] [0321025910] +19:47:22 [ 11] [ 6] [195910] +19:47:22 [ 37] [ 12] [579191959100] +19:47:22 [ 39] [ 2] [00] +19:47:22 [ 70] [ 3] [810] +19:47:22 ============================================================================ +19:47:22 Calculate Source COMM Id = 6 +19:47:22 ============================================================================ +19:47:22 + + +waiting on router queue for slot.... +19:47:24 ============================================================================ +19:47:24 Slot Id : <302> +19:47:24 Transaction Type : RESPONSE +19:47:24 Received From : +19:47:24 ============================================================================ +19:47:24 FNo. Len. Field Value +19:47:24 ============================================================================ +19:47:24 [ 1] [ 4] [0210] +19:47:24 [ 2] [ 16] [1808931400009500] +19:47:24 [ 3] [ 6] [010000] +19:47:24 [ 4] [ 12] [000100000000] +19:47:24 [ 6] [ 12] [000100000000] +19:47:24 [ 7] [ 10] [0320194510] +19:47:24 [ 11] [ 6] [956556] +19:47:24 [ 12] [ 6] [194510] +19:47:24 [ 13] [ 4] [0320] +19:47:24 [ 18] [ 4] [6011] +19:47:24 [ 19] [ 3] [418] +19:47:24 [ 22] [ 3] [021] +19:47:24 [ 32] [ 6] [668899] +19:47:24 [ 35] [ 27] [1808931400009500=1803500899] +19:47:24 [ 37] [ 12] [507901604387] +19:47:24 [ 38] [ 6] [956556] +19:47:24 [ 39] [ 2] [00] +19:47:24 [ 41] [ 8] [03202001] +19:47:24 [ 49] [ 3] [418] +19:47:24 [ 52] [ 16] [C5E42789A6EE4629] +19:47:24 [ 54] [ 20] [1001418C000099815600] +19:47:24 ============================================================================ +19:47:24 Sending to : +19:47:24 ============================================================================ +19:47:24 + + +waiting on router queue for slot.... +19:47:26 ============================================================================ +19:47:26 Slot Id : <302> +19:47:26 Transaction Type : RESPONSE +19:47:26 Received From : +19:47:26 ============================================================================ +19:47:26 FNo. Len. Field Value +19:47:26 ============================================================================ +19:47:26 [ 1] [ 4] [0210] +19:47:26 [ 2] [ 16] [1808931400009500] +19:47:26 [ 3] [ 6] [010000] +19:47:26 [ 4] [ 12] [000100000000] +19:47:26 [ 6] [ 12] [000100000000] +19:47:26 [ 7] [ 10] [0320194510] +19:47:26 [ 11] [ 6] [956556] +19:47:26 [ 12] [ 6] [194510] +19:47:26 [ 13] [ 4] [0320] +19:47:26 [ 18] [ 4] [6011] +19:47:26 [ 19] [ 3] [418] +19:47:26 [ 22] [ 3] [021] +19:47:26 [ 32] [ 6] [668899] +19:47:26 [ 35] [ 27] [1808931400009500=1803500899] +19:47:26 [ 37] [ 12] [507901604387] +19:47:26 [ 38] [ 6] [956556] +19:47:26 [ 39] [ 2] [00] +19:47:26 [ 41] [ 8] [03202001] +19:47:26 [ 49] [ 3] [418] +19:47:26 [ 52] [ 16] [C5E42789A6EE4629] +19:47:26 [ 54] [ 20] [1001418C000099815600] +19:47:26 ============================================================================ +19:47:26 Calculate Source COMM Id = 4 +19:47:26 ============================================================================ +19:47:26 + + +waiting on router queue for slot.... +19:47:32 ============================================================================ +19:47:32 Slot Id : <292> +19:47:32 Transaction Type : REQUEST +19:47:32 Received From : +19:47:32 ============================================================================ +19:47:32 FNo. Len. Field Value +19:47:32 ============================================================================ +19:47:32 [ 1] [ 4] [0800] +19:47:32 [ 7] [ 10] [0320124638] +19:47:32 [ 11] [ 6] [158039] +19:47:32 [ 70] [ 3] [301] +19:47:32 ============================================================================ +19:47:32 + + +waiting on router queue for slot.... +19:47:32 Sending to : +19:47:32 ============================================================================ +19:47:32 ============================================================================ +19:47:32 Slot Id : <292> +19:47:32 Transaction Type : RESPONSE +19:47:32 Received From : +19:47:32 ============================================================================ +19:47:32 FNo. Len. Field Value +19:47:32 ============================================================================ +19:47:32 [ 1] [ 4] [0810] +19:47:32 [ 7] [ 10] [0320124638] +19:47:32 [ 11] [ 6] [158039] +19:47:32 [ 39] [ 2] [00] +19:47:32 [ 70] [ 3] [301] +19:47:32 ============================================================================ +19:47:32 Calculate Source COMM Id = 2 +19:47:32 ============================================================================ +19:47:32 + + +waiting on router queue for slot.... +19:47:43 ============================================================================ +19:47:43 Slot Id : <335> +19:47:43 Transaction Type : REQUEST +19:47:43 Received From : +19:47:43 ============================================================================ +19:47:43 FNo. Len. Field Value +19:47:43 ============================================================================ +19:47:43 [ 1] [ 4] [0800] +19:47:43 [ 7] [ 10] [0320124649] +19:47:43 [ 11] [ 6] [158040] +19:47:43 [ 70] [ 3] [301] +19:47:43 ============================================================================ +19:47:43 + + +waiting on router queue for slot.... +19:47:43 Sending to : +19:47:43 ============================================================================ +19:47:43 ============================================================================ +19:47:43 Slot Id : <335> +19:47:43 Transaction Type : RESPONSE +19:47:43 Received From : +19:47:43 ============================================================================ +19:47:43 FNo. Len. Field Value +19:47:43 ============================================================================ +19:47:43 [ 1] [ 4] [0810] +19:47:43 [ 7] [ 10] [0320124649] +19:47:43 [ 11] [ 6] [158040] +19:47:43 [ 39] [ 2] [00] +19:47:43 [ 70] [ 3] [301] +19:47:43 ============================================================================ +19:47:43 Calculate Source COMM Id = 2 +19:47:43 ============================================================================ +19:47:43 + + +waiting on router queue for slot.... +19:47:54 ============================================================================ +19:47:54 Slot Id : <333> +19:47:54 Transaction Type : REQUEST +19:47:54 Received From : +19:47:54 ============================================================================ +19:47:54 FNo. Len. Field Value +19:47:54 ============================================================================ +19:47:54 [ 1] [ 4] [0800] +19:47:54 [ 7] [ 10] [0320124700] +19:47:54 [ 11] [ 6] [158041] +19:47:54 [ 70] [ 3] [301] +19:47:54 ============================================================================ +19:47:54 + + +waiting on router queue for slot.... +19:47:54 Sending to : +19:47:54 ============================================================================ +19:47:54 ============================================================================ +19:47:54 Slot Id : <333> +19:47:54 Transaction Type : RESPONSE +19:47:54 Received From : +19:47:54 ============================================================================ +19:47:54 FNo. Len. Field Value +19:47:54 ============================================================================ +19:47:54 [ 1] [ 4] [0810] +19:47:54 [ 7] [ 10] [0320124700] +19:47:54 [ 11] [ 6] [158041] +19:47:54 [ 39] [ 2] [00] +19:47:54 [ 70] [ 3] [301] +19:47:54 ============================================================================ +19:47:54 Calculate Source COMM Id = 2 +19:47:54 ============================================================================ +19:47:54 + + +waiting on router queue for slot.... +19:47:57 ============================================================================ +19:47:57 Slot Id : <262> +19:47:57 Transaction Type : REQUEST +19:47:57 Received From : +19:47:57 ============================================================================ +19:47:57 FNo. Len. Field Value +19:47:57 ============================================================================ +19:47:57 [ 1] [ 4] [0800] +19:47:57 [ 2] [ 5] [02531] +19:47:57 [ 3] [ 6] [579198] +19:47:57 [ 7] [ 10] [0320124757] +19:47:57 [ 11] [ 6] [807561] +19:47:57 [ 15] [ 10] [0320124757] +19:47:57 [ 37] [ 11] [57919807561] +19:47:57 [ 70] [ 3] [001] +19:47:57 ============================================================================ +19:47:57 + + +waiting on router queue for slot.... +19:47:57 ============================================================================ +19:47:57 Slot Id : <262> +19:47:57 Transaction Type : RESPONSE +19:47:57 Received From : +19:47:57 ============================================================================ +19:47:57 FNo. Len. Field Value +19:47:57 ============================================================================ +19:47:57 [ 1] [ 4] [0810] +19:47:57 [ 7] [ 10] [0320124757] +19:47:57 [ 11] [ 6] [807561] +19:47:57 [ 15] [ 4] [0320] +19:47:57 [ 37] [ 12] [57919807561] +19:47:57 [ 39] [ 2] [00] +19:47:57 [ 70] [ 3] [001] +19:47:57 ============================================================================ +19:47:57 Sending to : +19:47:57 ============================================================================ +19:47:57 + + +waiting on router queue for slot.... +19:48:04 ============================================================================ +19:48:04 Slot Id : <334> +19:48:04 Transaction Type : REQUEST +19:48:04 Received From : +19:48:04 ============================================================================ +19:48:04 FNo. Len. Field Value +19:48:04 ============================================================================ +19:48:04 [ 1] [ 4] [0800] +19:48:04 [ 7] [ 10] [0320124711] +19:48:04 [ 11] [ 6] [158042] +19:48:04 [ 70] [ 3] [301] +19:48:04 ============================================================================ +19:48:04 + + +waiting on router queue for slot.... +19:48:04 Sending to : +19:48:04 ============================================================================ +19:48:04 ============================================================================ +19:48:04 Slot Id : <334> +19:48:04 Transaction Type : RESPONSE +19:48:04 Received From : +19:48:04 ============================================================================ +19:48:04 FNo. Len. Field Value +19:48:04 ============================================================================ +19:48:04 [ 1] [ 4] [0810] +19:48:04 [ 7] [ 10] [0320124711] +19:48:04 [ 11] [ 6] [158042] +19:48:04 [ 39] [ 2] [00] +19:48:04 [ 70] [ 3] [301] +19:48:04 ============================================================================ +19:48:04 Calculate Source COMM Id = 2 +19:48:04 ============================================================================ +19:48:04 + + +waiting on router queue for slot.... +19:48:21 ============================================================================ +19:48:21 Slot Id : <336> +19:48:21 Transaction Type : REQUEST +19:48:21 Received From : +19:48:21 ============================================================================ +19:48:21 FNo. Len. Field Value +19:48:21 ============================================================================ +19:48:21 [ 1] [ 4] [0800] +19:48:21 [ 7] [ 10] [0320124728] +19:48:21 [ 11] [ 6] [158043] +19:48:21 [ 70] [ 3] [301] +19:48:21 ============================================================================ +19:48:21 + + +waiting on router queue for slot.... +19:48:21 Sending to : +19:48:21 ============================================================================ +19:48:21 ============================================================================ +19:48:21 Slot Id : <336> +19:48:21 Transaction Type : RESPONSE +19:48:21 Received From : +19:48:21 ============================================================================ +19:48:21 FNo. Len. Field Value +19:48:21 ============================================================================ +19:48:21 [ 1] [ 4] [0810] +19:48:21 [ 7] [ 10] [0320124728] +19:48:21 [ 11] [ 6] [158043] +19:48:21 [ 39] [ 2] [00] +19:48:21 [ 70] [ 3] [301] +19:48:21 ============================================================================ +19:48:21 Calculate Source COMM Id = 2 +19:48:21 ============================================================================ +19:48:21 + + +waiting on router queue for slot.... +19:48:27 ============================================================================ +19:48:27 Slot Id : <320> +19:48:27 Transaction Type : REQUEST +19:48:27 Received From : +19:48:27 ============================================================================ +19:48:27 FNo. Len. Field Value +19:48:27 ============================================================================ +19:48:27 [ 1] [ 4] [0800] +19:48:27 [ 7] [ 10] [0321030015] +19:48:27 [ 11] [ 6] [200015] +19:48:27 [ 37] [ 12] [57920200015] +19:48:27 [ 70] [ 3] [301] +19:48:27 ============================================================================ +19:48:27 + + +waiting on router queue for slot.... +19:48:27 Sending to : +19:48:27 ============================================================================ +19:48:27 ============================================================================ +19:48:27 Slot Id : <320> +19:48:27 Transaction Type : RESPONSE +19:48:27 Received From : +19:48:27 ============================================================================ +19:48:27 FNo. Len. Field Value +19:48:27 ============================================================================ +19:48:27 [ 1] [ 4] [0810] +19:48:27 [ 7] [ 10] [0321030015] +19:48:27 [ 11] [ 6] [200015] +19:48:27 [ 37] [ 12] [579202000150] +19:48:27 [ 39] [ 2] [00] +19:48:27 [ 70] [ 3] [810] +19:48:27 ============================================================================ +19:48:27 Calculate Source COMM Id = 6 +19:48:27 ============================================================================ +19:48:27 + + +waiting on router queue for slot.... +19:48:32 ============================================================================ +19:48:32 Slot Id : <321> +19:48:32 Transaction Type : REQUEST +19:48:32 Received From : +19:48:32 ============================================================================ +19:48:32 FNo. Len. Field Value +19:48:32 ============================================================================ +19:48:32 [ 1] [ 4] [0800] +19:48:32 [ 7] [ 10] [0320124739] +19:48:32 [ 11] [ 6] [158044] +19:48:32 [ 70] [ 3] [301] +19:48:32 ============================================================================ +19:48:32 + + +waiting on router queue for slot.... +19:48:32 Sending to : +19:48:32 ============================================================================ +19:48:32 ============================================================================ +19:48:32 Slot Id : <321> +19:48:32 Transaction Type : RESPONSE +19:48:32 Received From : +19:48:32 ============================================================================ +19:48:32 FNo. Len. Field Value +19:48:32 ============================================================================ +19:48:32 [ 1] [ 4] [0810] +19:48:32 [ 7] [ 10] [0320124739] +19:48:32 [ 11] [ 6] [158044] +19:48:32 [ 39] [ 2] [00] +19:48:32 [ 70] [ 3] [301] +19:48:32 ============================================================================ +19:48:32 Calculate Source COMM Id = 2 +19:48:32 ============================================================================ +19:48:32 + + +waiting on router queue for slot.... +19:48:46 ============================================================================ +19:48:46 Slot Id : <323> +19:48:46 Transaction Type : REQUEST +19:48:46 Received From : +19:48:46 ============================================================================ +19:48:46 FNo. Len. Field Value +19:48:46 ============================================================================ +19:48:46 [ 1] [ 4] [0800] +19:48:46 [ 7] [ 10] [0320124752] +19:48:46 [ 11] [ 6] [158045] +19:48:46 [ 70] [ 3] [301] +19:48:46 ============================================================================ +19:48:46 + + +waiting on router queue for slot.... +19:48:46 Sending to : +19:48:46 ============================================================================ +19:48:46 ============================================================================ +19:48:46 Slot Id : <323> +19:48:46 Transaction Type : RESPONSE +19:48:46 Received From : +19:48:46 ============================================================================ +19:48:46 FNo. Len. Field Value +19:48:46 ============================================================================ +19:48:46 [ 1] [ 4] [0810] +19:48:46 [ 7] [ 10] [0320124752] +19:48:46 [ 11] [ 6] [158045] +19:48:46 [ 39] [ 2] [00] +19:48:46 [ 70] [ 3] [301] +19:48:46 ============================================================================ +19:48:46 Calculate Source COMM Id = 2 +19:48:46 ============================================================================ +19:48:46 + + +waiting on router queue for slot.... +19:48:59 ============================================================================ +19:48:59 Slot Id : <341> +19:48:59 Transaction Type : REQUEST +19:48:59 Received From : +19:48:59 ============================================================================ +19:48:59 FNo. Len. Field Value +19:48:59 ============================================================================ +19:48:59 [ 1] [ 4] [0800] +19:48:59 [ 2] [ 5] [02531] +19:48:59 [ 3] [ 6] [579198] +19:48:59 [ 7] [ 10] [0320124859] +19:48:59 [ 11] [ 6] [807562] +19:48:59 [ 15] [ 10] [0320124859] +19:48:59 [ 37] [ 11] [57919807562] +19:48:59 [ 70] [ 3] [001] +19:48:59 ============================================================================ +19:48:59 + + +waiting on router queue for slot.... +19:48:59 ============================================================================ +19:48:59 Slot Id : <341> +19:48:59 Transaction Type : RESPONSE +19:48:59 Received From : +19:48:59 ============================================================================ +19:48:59 FNo. Len. Field Value +19:48:59 ============================================================================ +19:48:59 [ 1] [ 4] [0810] +19:48:59 [ 7] [ 10] [0320124859] +19:48:59 [ 11] [ 6] [807562] +19:48:59 [ 15] [ 4] [0320] +19:48:59 [ 37] [ 12] [57919807562] +19:48:59 [ 39] [ 2] [00] +19:48:59 [ 70] [ 3] [001] +19:48:59 ============================================================================ +19:48:59 Sending to : +19:48:59 ============================================================================ +19:48:59 + + +waiting on router queue for slot.... +19:49:00 ============================================================================ +19:49:00 Slot Id : <342> +19:49:00 Transaction Type : REQUEST +19:49:00 Received From : +19:49:00 ============================================================================ +19:49:00 FNo. Len. Field Value +19:49:00 ============================================================================ +19:49:00 [ 1] [ 4] [0800] +19:49:00 [ 7] [ 10] [0320124807] +19:49:00 [ 11] [ 6] [158046] +19:49:00 [ 70] [ 3] [301] +19:49:00 ============================================================================ +19:49:00 + + +waiting on router queue for slot.... +19:49:00 Sending to : +19:49:00 ============================================================================ +19:49:00 ============================================================================ +19:49:00 Slot Id : <342> +19:49:00 Transaction Type : RESPONSE +19:49:00 Received From : +19:49:00 ============================================================================ +19:49:00 FNo. Len. Field Value +19:49:00 ============================================================================ +19:49:00 [ 1] [ 4] [0810] +19:49:00 [ 7] [ 10] [0320124807] +19:49:00 [ 11] [ 6] [158046] +19:49:00 [ 39] [ 2] [00] +19:49:00 [ 70] [ 3] [301] +19:49:00 ============================================================================ +19:49:00 Calculate Source COMM Id = 2 +19:49:00 ============================================================================ +19:49:00 + + +waiting on router queue for slot.... +19:49:02 ============================================================================ +19:49:02 Slot Id : <268> +19:49:02 Transaction Type : REQUEST +19:49:02 Received From : +19:49:02 ============================================================================ +19:49:02 FNo. Len. Field Value +19:49:02 ============================================================================ +19:49:02 [ 1] [ 4] [0200] +19:49:02 [ 2] [ 16] [6213541000281777] +19:49:02 [ 3] [ 6] [010000] +19:49:02 [ 4] [ 12] [000200000000] +19:49:02 [ 7] [ 10] [0320124808] +19:49:02 [ 11] [ 6] [271476] +19:49:02 [ 12] [ 6] [194808] +19:49:02 [ 13] [ 4] [0320] +19:49:02 [ 14] [ 4] [4912] +19:49:02 [ 15] [ 4] [0320] +19:49:02 [ 18] [ 4] [6011] +19:49:02 [ 19] [ 3] [418] +19:49:02 [ 22] [ 3] [021] +19:49:02 [ 25] [ 2] [01] +19:49:02 [ 28] [ 9] [D00002000] +19:49:02 [ 32] [ 6] [180893] +19:49:02 [ 35] [ 32] [6213541000281777=491212018177176] +19:49:02 [ 37] [ 12] [507912271476] +19:49:02 [ 41] [ 8] [0441VT52] +19:49:02 [ 42] [ 15] [999999 ] +19:49:02 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:49:02 [ 49] [ 3] [418] +19:49:02 [ 52] [ 16] [9C548B4C94AD5BD8] +19:49:02 ============================================================================ +19:49:02 + + +waiting on router queue for slot.... +19:49:02 Sending to : +19:49:02 ============================================================================ +19:49:02 Sending to : +19:49:02 ============================================================================ +19:49:02 ============================================================================ +19:49:02 Slot Id : <268> +19:49:02 Transaction Type : REQUEST +19:49:02 Received From : +19:49:02 ============================================================================ +19:49:02 FNo. Len. Field Value +19:49:02 ============================================================================ +19:49:02 [ 1] [ 4] [0200] +19:49:02 [ 2] [ 16] [6213541000281777] +19:49:02 [ 3] [ 6] [010000] +19:49:02 [ 4] [ 12] [000200000000] +19:49:02 [ 7] [ 10] [0320124808] +19:49:02 [ 11] [ 6] [271476] +19:49:02 [ 12] [ 6] [194808] +19:49:02 [ 13] [ 4] [0320] +19:49:02 [ 14] [ 4] [4912] +19:49:02 [ 15] [ 4] [0320] +19:49:02 [ 18] [ 4] [6011] +19:49:02 [ 19] [ 3] [418] +19:49:02 [ 22] [ 3] [021] +19:49:02 [ 25] [ 2] [01] +19:49:02 [ 28] [ 9] [D00002000] +19:49:02 [ 32] [ 6] [180893] +19:49:02 [ 35] [ 32] [6213541000281777=491212018177176] +19:49:02 [ 37] [ 12] [507912271476] +19:49:02 [ 41] [ 8] [0441VT52] +19:49:02 [ 42] [ 15] [999999 ] +19:49:02 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:49:02 [ 49] [ 3] [418] +19:49:02 [ 52] [ 16] [9C548B4C94AD5BD8] +19:49:02 ============================================================================ +19:49:02 + + +waiting on router queue for slot.... +19:49:02 Sending to : +19:49:02 ============================================================================ +19:49:02 ============================================================================ +19:49:02 Slot Id : <268> +19:49:02 Transaction Type : REQUEST +19:49:02 Received From : +19:49:02 ============================================================================ +19:49:02 FNo. Len. Field Value +19:49:02 ============================================================================ +19:49:02 [ 1] [ 4] [0200] +19:49:02 [ 2] [ 16] [6213541000281777] +19:49:02 [ 3] [ 6] [010000] +19:49:02 [ 4] [ 12] [000200000000] +19:49:02 [ 7] [ 10] [0320124808] +19:49:02 [ 11] [ 6] [271476] +19:49:02 [ 12] [ 6] [194808] +19:49:02 [ 13] [ 4] [0320] +19:49:02 [ 14] [ 4] [4912] +19:49:02 [ 15] [ 4] [0320] +19:49:02 [ 18] [ 4] [6011] +19:49:02 [ 19] [ 3] [418] +19:49:02 [ 22] [ 3] [021] +19:49:02 [ 25] [ 2] [01] +19:49:02 [ 28] [ 9] [D00002000] +19:49:02 [ 32] [ 6] [180893] +19:49:02 [ 35] [ 32] [6213541000281777=491212018177176] +19:49:02 [ 37] [ 12] [507912271476] +19:49:02 [ 41] [ 8] [0441VT52] +19:49:02 [ 42] [ 15] [999999 ] +19:49:02 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:49:02 [ 49] [ 3] [418] +19:49:02 [ 52] [ 16] [C800533275ADBEA5] +19:49:02 ============================================================================ +19:49:02 + + +waiting on router queue for slot.... +19:49:02 Sending to : <0> +19:49:02 ============================================================================ +19:49:02 ============================================================================ +19:49:02 Slot Id : <268> +19:49:02 Transaction Type : RESPONSE +19:49:02 Received From : +19:49:02 ============================================================================ +19:49:02 FNo. Len. Field Value +19:49:02 ============================================================================ +19:49:02 [ 1] [ 4] [0210] +19:49:02 [ 2] [ 16] [6213541000281777] +19:49:02 [ 3] [ 6] [010000] +19:49:02 [ 4] [ 12] [000200000000] +19:49:02 [ 7] [ 10] [0320124808] +19:49:02 [ 11] [ 6] [271476] +19:49:02 [ 12] [ 6] [194808] +19:49:02 [ 13] [ 4] [0320] +19:49:02 [ 15] [ 4] [0320] +19:49:02 [ 18] [ 4] [6011] +19:49:02 [ 19] [ 3] [418] +19:49:02 [ 22] [ 3] [021] +19:49:02 [ 32] [ 6] [180893] +19:49:02 [ 35] [ 32] [6213541000281777=491212018177176] +19:49:02 [ 37] [ 12] [507912271476] +19:49:02 [ 39] [ 2] [61] +19:49:02 [ 41] [ 8] [0441VT52] +19:49:02 [ 49] [ 3] [418] +19:49:02 ============================================================================ +19:49:02 Sending to : +19:49:02 ============================================================================ +19:49:02 + + +waiting on router queue for slot.... +19:49:04 ============================================================================ +19:49:04 Slot Id : <268> +19:49:04 Transaction Type : RESPONSE +19:49:04 Received From : +19:49:04 ============================================================================ +19:49:04 FNo. Len. Field Value +19:49:04 ============================================================================ +19:49:04 [ 1] [ 4] [0210] +19:49:04 [ 2] [ 16] [6213541000281777] +19:49:04 [ 3] [ 6] [010000] +19:49:04 [ 4] [ 12] [000200000000] +19:49:04 [ 7] [ 10] [0320124808] +19:49:04 [ 11] [ 6] [271476] +19:49:04 [ 12] [ 6] [194808] +19:49:04 [ 13] [ 4] [0320] +19:49:04 [ 15] [ 4] [0320] +19:49:04 [ 18] [ 4] [6011] +19:49:04 [ 19] [ 3] [418] +19:49:04 [ 22] [ 3] [021] +19:49:04 [ 32] [ 6] [180893] +19:49:04 [ 35] [ 32] [6213541000281777=491212018177176] +19:49:04 [ 37] [ 12] [507912271476] +19:49:04 [ 39] [ 2] [61] +19:49:04 [ 41] [ 8] [0441VT52] +19:49:04 [ 49] [ 3] [418] +19:49:04 ============================================================================ +19:49:04 Calculate Source COMM Id = 2 +19:49:04 ============================================================================ +19:49:04 + + +waiting on router queue for slot.... +19:49:05 ============================================================================ +19:49:05 Slot Id : <352> +19:49:05 Transaction Type : REQUEST +19:49:05 Received From : +19:49:05 ============================================================================ +19:49:05 FNo. Len. Field Value +19:49:05 ============================================================================ +19:49:05 [ 1] [ 4] [0200] +19:49:05 [ 2] [ 16] [6688990102978200] +19:49:05 [ 3] [ 6] [011000] +19:49:05 [ 4] [ 12] [000005000000] +19:49:05 [ 7] [ 10] [0320124811] +19:49:05 [ 11] [ 6] [271478] +19:49:05 [ 12] [ 6] [194811] +19:49:05 [ 13] [ 4] [0320] +19:49:05 [ 14] [ 4] [4211] +19:49:05 [ 15] [ 4] [0320] +19:49:05 [ 18] [ 4] [6011] +19:49:05 [ 19] [ 3] [418] +19:49:05 [ 22] [ 3] [021] +19:49:05 [ 25] [ 2] [01] +19:49:05 [ 28] [ 9] [D00002000] +19:49:05 [ 32] [ 6] [180893] +19:49:05 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:49:05 [ 37] [ 12] [507912271478] +19:49:05 [ 41] [ 8] [0466PSLB] +19:49:05 [ 42] [ 15] [999999 ] +19:49:05 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:49:05 [ 49] [ 3] [418] +19:49:05 [ 52] [ 16] [280086D660CA5EB4] +19:49:05 ============================================================================ +19:49:05 + + +waiting on router queue for slot.... +19:49:05 Sending to : +19:49:05 ============================================================================ +19:49:05 Sending to : +19:49:05 ============================================================================ +19:49:05 ============================================================================ +19:49:05 Slot Id : <352> +19:49:05 Transaction Type : REQUEST +19:49:05 Received From : +19:49:05 ============================================================================ +19:49:05 FNo. Len. Field Value +19:49:05 ============================================================================ +19:49:05 [ 1] [ 4] [0200] +19:49:05 [ 2] [ 16] [6688990102978200] +19:49:05 [ 3] [ 6] [011000] +19:49:05 [ 4] [ 12] [000005000000] +19:49:05 [ 7] [ 10] [0320124811] +19:49:05 [ 11] [ 6] [271478] +19:49:05 [ 12] [ 6] [194811] +19:49:05 [ 13] [ 4] [0320] +19:49:05 [ 14] [ 4] [4211] +19:49:05 [ 15] [ 4] [0320] +19:49:05 [ 18] [ 4] [6011] +19:49:05 [ 19] [ 3] [418] +19:49:05 [ 22] [ 3] [021] +19:49:05 [ 25] [ 2] [01] +19:49:05 [ 28] [ 9] [D00002000] +19:49:05 [ 32] [ 6] [180893] +19:49:05 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:49:05 [ 37] [ 12] [507912271478] +19:49:05 [ 41] [ 8] [0466PSLB] +19:49:05 [ 42] [ 15] [999999 ] +19:49:05 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:49:05 [ 49] [ 3] [418] +19:49:05 [ 52] [ 16] [280086D660CA5EB4] +19:49:05 ============================================================================ +19:49:05 + + +waiting on router queue for slot.... +19:49:05 Sending to : +19:49:05 ============================================================================ +19:49:05 ============================================================================ +19:49:05 Slot Id : <352> +19:49:05 Transaction Type : REQUEST +19:49:05 Received From : +19:49:05 ============================================================================ +19:49:05 FNo. Len. Field Value +19:49:05 ============================================================================ +19:49:05 [ 1] [ 4] [0200] +19:49:05 [ 2] [ 16] [6688990102978200] +19:49:05 [ 3] [ 6] [011000] +19:49:05 [ 4] [ 12] [000005000000] +19:49:05 [ 7] [ 10] [0320124811] +19:49:05 [ 11] [ 6] [271478] +19:49:05 [ 12] [ 6] [194811] +19:49:05 [ 13] [ 4] [0320] +19:49:05 [ 14] [ 4] [4211] +19:49:05 [ 15] [ 4] [0320] +19:49:05 [ 18] [ 4] [6011] +19:49:05 [ 19] [ 3] [418] +19:49:05 [ 22] [ 3] [021] +19:49:05 [ 25] [ 2] [01] +19:49:05 [ 28] [ 9] [D00002000] +19:49:05 [ 32] [ 6] [180893] +19:49:05 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:49:05 [ 37] [ 12] [507912271478] +19:49:05 [ 41] [ 8] [0466PSLB] +19:49:05 [ 42] [ 15] [999999 ] +19:49:05 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:49:05 [ 49] [ 3] [418] +19:49:05 [ 52] [ 16] [F79007A0D28F8E58] +19:49:05 ============================================================================ +19:49:05 + + +waiting on router queue for slot.... +19:49:05 Sending to : <0> +19:49:05 ============================================================================ +19:49:06 ============================================================================ +19:49:06 Slot Id : <352> +19:49:06 Transaction Type : RESPONSE +19:49:06 Received From : +19:49:06 ============================================================================ +19:49:06 FNo. Len. Field Value +19:49:06 ============================================================================ +19:49:06 [ 1] [ 4] [0210] +19:49:06 [ 2] [ 16] [6688990102978200] +19:49:06 [ 3] [ 6] [011000] +19:49:06 [ 4] [ 12] [000005000000] +19:49:06 [ 7] [ 10] [0320124811] +19:49:06 [ 11] [ 6] [271478] +19:49:06 [ 12] [ 6] [194811] +19:49:06 [ 13] [ 4] [0320] +19:49:06 [ 15] [ 4] [0320] +19:49:06 [ 18] [ 4] [6011] +19:49:06 [ 19] [ 3] [418] +19:49:06 [ 22] [ 3] [021] +19:49:06 [ 32] [ 6] [180893] +19:49:06 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:49:06 [ 37] [ 12] [507912271478] +19:49:06 [ 39] [ 2] [14] +19:49:06 [ 41] [ 8] [0466PSLB] +19:49:06 [ 49] [ 3] [418] +19:49:06 ============================================================================ +19:49:06 Sending to : +19:49:06 ============================================================================ +19:49:06 + + +waiting on router queue for slot.... +19:49:07 ============================================================================ +19:49:07 Slot Id : <352> +19:49:07 Transaction Type : RESPONSE +19:49:07 Received From : +19:49:07 ============================================================================ +19:49:07 FNo. Len. Field Value +19:49:07 ============================================================================ +19:49:07 [ 1] [ 4] [0210] +19:49:07 [ 2] [ 16] [6688990102978200] +19:49:07 [ 3] [ 6] [011000] +19:49:07 [ 4] [ 12] [000005000000] +19:49:07 [ 7] [ 10] [0320124811] +19:49:07 [ 11] [ 6] [271478] +19:49:07 [ 12] [ 6] [194811] +19:49:07 [ 13] [ 4] [0320] +19:49:07 [ 15] [ 4] [0320] +19:49:07 [ 18] [ 4] [6011] +19:49:07 [ 19] [ 3] [418] +19:49:07 [ 22] [ 3] [021] +19:49:07 [ 32] [ 6] [180893] +19:49:07 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:49:07 [ 37] [ 12] [507912271478] +19:49:07 [ 39] [ 2] [14] +19:49:07 [ 41] [ 8] [0466PSLB] +19:49:07 [ 49] [ 3] [418] +19:49:07 ============================================================================ +19:49:07 Calculate Source COMM Id = 2 +19:49:07 ============================================================================ +19:49:07 + + +waiting on router queue for slot.... +19:49:18 ============================================================================ +19:49:18 Slot Id : <339> +19:49:18 Transaction Type : REQUEST +19:49:18 Received From : +19:49:18 ============================================================================ +19:49:18 FNo. Len. Field Value +19:49:18 ============================================================================ +19:49:18 [ 1] [ 4] [0800] +19:49:18 [ 7] [ 10] [0320124825] +19:49:18 [ 11] [ 6] [158047] +19:49:18 [ 70] [ 3] [301] +19:49:18 ============================================================================ +19:49:18 + + +waiting on router queue for slot.... +19:49:18 Sending to : +19:49:18 ============================================================================ +19:49:18 ============================================================================ +19:49:18 Slot Id : <339> +19:49:18 Transaction Type : RESPONSE +19:49:18 Received From : +19:49:18 ============================================================================ +19:49:18 FNo. Len. Field Value +19:49:18 ============================================================================ +19:49:18 [ 1] [ 4] [0810] +19:49:18 [ 7] [ 10] [0320124825] +19:49:18 [ 11] [ 6] [158047] +19:49:18 [ 39] [ 2] [00] +19:49:18 [ 70] [ 3] [301] +19:49:18 ============================================================================ +19:49:18 Calculate Source COMM Id = 2 +19:49:18 ============================================================================ +19:49:18 + + +waiting on router queue for slot.... +19:49:25 ============================================================================ +19:49:25 Slot Id : <309> +19:49:25 Transaction Type : REQUEST +19:49:25 Received From : +19:49:25 ============================================================================ +19:49:25 FNo. Len. Field Value +19:49:25 ============================================================================ +19:49:25 [ 1] [ 4] [0200] +19:49:25 [ 2] [ 16] [6213543000186634] +19:49:25 [ 3] [ 6] [010000] +19:49:25 [ 4] [ 12] [000050000000] +19:49:25 [ 7] [ 10] [0320200113] +19:49:25 [ 11] [ 6] [412792] +19:49:25 [ 12] [ 6] [200113] +19:49:25 [ 13] [ 4] [0320] +19:49:25 [ 14] [ 4] [1249] +19:49:25 [ 15] [ 4] [0320] +19:49:25 [ 18] [ 4] [6011] +19:49:25 [ 19] [ 3] [418] +19:49:25 [ 22] [ 3] [021] +19:49:25 [ 25] [ 2] [01] +19:49:25 [ 28] [ 9] [D00002000] +19:49:25 [ 32] [ 6] [123401] +19:49:25 [ 35] [ 32] [6213543000186634=491212018663734] +19:49:25 [ 37] [ 12] [507900192508] +19:49:25 [ 41] [ 8] [03000100] +19:49:25 [ 42] [ 15] [APT ] +19:49:25 [ 43] [ 40] [LAOS SAVANNAKHET BRANCH LAOS ] +19:49:25 [ 49] [ 3] [418] +19:49:25 [ 52] [ 16] [12C094CFF12C2DDB] +19:49:25 ============================================================================ +19:49:25 + + +waiting on router queue for slot.... +19:49:25 Sending to : +19:49:25 ============================================================================ +19:49:25 Sending to : +19:49:25 ============================================================================ +19:49:25 ============================================================================ +19:49:25 Slot Id : <309> +19:49:25 Transaction Type : REQUEST +19:49:25 Received From : +19:49:25 ============================================================================ +19:49:25 FNo. Len. Field Value +19:49:25 ============================================================================ +19:49:25 [ 1] [ 4] [0200] +19:49:25 [ 2] [ 16] [6213543000186634] +19:49:25 [ 3] [ 6] [010000] +19:49:25 [ 4] [ 12] [000050000000] +19:49:25 [ 7] [ 10] [0320200113] +19:49:25 [ 11] [ 6] [412792] +19:49:25 [ 12] [ 6] [200113] +19:49:25 [ 13] [ 4] [0320] +19:49:25 [ 14] [ 4] [1249] +19:49:25 [ 15] [ 4] [0320] +19:49:25 [ 18] [ 4] [6011] +19:49:25 [ 19] [ 3] [418] +19:49:25 [ 22] [ 3] [021] +19:49:25 [ 25] [ 2] [01] +19:49:25 [ 28] [ 9] [D00002000] +19:49:25 [ 32] [ 6] [123401] +19:49:25 [ 35] [ 32] [6213543000186634=491212018663734] +19:49:25 [ 37] [ 12] [507900192508] +19:49:25 [ 41] [ 8] [03000100] +19:49:25 [ 42] [ 15] [APT ] +19:49:25 [ 43] [ 40] [LAOS SAVANNAKHET BRANCH LAOS ] +19:49:25 [ 49] [ 3] [418] +19:49:25 [ 52] [ 16] [12C094CFF12C2DDB] +19:49:25 ============================================================================ +19:49:25 + + +waiting on router queue for slot.... +19:49:25 Sending to : +19:49:25 ============================================================================ +19:49:25 ============================================================================ +19:49:25 Slot Id : <309> +19:49:25 Transaction Type : REQUEST +19:49:25 Received From : +19:49:25 ============================================================================ +19:49:25 FNo. Len. Field Value +19:49:25 ============================================================================ +19:49:25 [ 1] [ 4] [0200] +19:49:25 [ 2] [ 16] [6213543000186634] +19:49:25 [ 3] [ 6] [010000] +19:49:25 [ 4] [ 12] [000050000000] +19:49:25 [ 7] [ 10] [0320200113] +19:49:25 [ 11] [ 6] [412792] +19:49:25 [ 12] [ 6] [200113] +19:49:25 [ 13] [ 4] [0320] +19:49:25 [ 14] [ 4] [1249] +19:49:25 [ 15] [ 4] [0320] +19:49:25 [ 18] [ 4] [6011] +19:49:25 [ 19] [ 3] [418] +19:49:25 [ 22] [ 3] [021] +19:49:25 [ 25] [ 2] [01] +19:49:25 [ 28] [ 9] [D00002000] +19:49:25 [ 32] [ 6] [123401] +19:49:25 [ 35] [ 32] [6213543000186634=491212018663734] +19:49:25 [ 37] [ 12] [507900192508] +19:49:25 [ 41] [ 8] [03000100] +19:49:25 [ 42] [ 15] [APT ] +19:49:25 [ 43] [ 40] [LAOS SAVANNAKHET BRANCH LAOS ] +19:49:25 [ 49] [ 3] [418] +19:49:25 [ 52] [ 16] [092FAF4BE42CDD91] +19:49:25 ============================================================================ +19:49:25 + + +waiting on router queue for slot.... +19:49:25 Sending to : <0> +19:49:25 ============================================================================ +19:49:26 ============================================================================ +19:49:26 Slot Id : <309> +19:49:26 Transaction Type : RESPONSE +19:49:26 Received From : +19:49:26 ============================================================================ +19:49:26 FNo. Len. Field Value +19:49:26 ============================================================================ +19:49:26 [ 1] [ 4] [0210] +19:49:26 [ 2] [ 16] [6213543000186634] +19:49:26 [ 3] [ 6] [010000] +19:49:26 [ 4] [ 12] [000050000000] +19:49:26 [ 7] [ 10] [0320200113] +19:49:26 [ 11] [ 6] [412792] +19:49:26 [ 12] [ 6] [200113] +19:49:26 [ 13] [ 4] [0320] +19:49:26 [ 15] [ 4] [0320] +19:49:26 [ 18] [ 4] [6011] +19:49:26 [ 19] [ 3] [418] +19:49:26 [ 32] [ 6] [123401] +19:49:26 [ 35] [ 32] [6213543000186634=491212018663734] +19:49:26 [ 37] [ 12] [507900192508] +19:49:26 [ 38] [ 6] [580801] +19:49:26 [ 39] [ 2] [00] +19:49:26 [ 41] [ 8] [03000100] +19:49:26 [ 49] [ 3] [418] +19:49:26 [ 54] [ 40] [0001418C0003117183040002418C000311718304] +19:49:26 ============================================================================ +19:49:26 Sending to : +19:49:26 ============================================================================ +19:49:26 + + +waiting on router queue for slot.... +19:49:27 ============================================================================ +19:49:27 Slot Id : <309> +19:49:27 Transaction Type : RESPONSE +19:49:27 Received From : +19:49:27 ============================================================================ +19:49:27 FNo. Len. Field Value +19:49:27 ============================================================================ +19:49:27 [ 1] [ 4] [0210] +19:49:27 [ 2] [ 16] [6213543000186634] +19:49:27 [ 3] [ 6] [010000] +19:49:27 [ 4] [ 12] [000050000000] +19:49:27 [ 7] [ 10] [0320200113] +19:49:27 [ 11] [ 6] [412792] +19:49:27 [ 12] [ 6] [200113] +19:49:27 [ 13] [ 4] [0320] +19:49:27 [ 15] [ 4] [0320] +19:49:27 [ 18] [ 4] [6011] +19:49:27 [ 19] [ 3] [418] +19:49:27 [ 32] [ 6] [123401] +19:49:27 [ 35] [ 32] [6213543000186634=491212018663734] +19:49:27 [ 37] [ 12] [507900192508] +19:49:27 [ 38] [ 6] [580801] +19:49:27 [ 39] [ 2] [00] +19:49:27 [ 41] [ 8] [03000100] +19:49:27 [ 49] [ 3] [418] +19:49:27 [ 54] [ 40] [0001418C0003117183040002418C000311718304] +19:49:27 ============================================================================ +19:49:27 Calculate Source COMM Id = 6 +19:49:27 ============================================================================ +19:49:27 + + +waiting on router queue for slot.... +19:49:29 ============================================================================ +19:49:29 Slot Id : <347> +19:49:29 Transaction Type : REQUEST +19:49:29 Received From : +19:49:29 ============================================================================ +19:49:29 FNo. Len. Field Value +19:49:29 ============================================================================ +19:49:29 [ 1] [ 4] [0800] +19:49:29 [ 7] [ 10] [0320124836] +19:49:29 [ 11] [ 6] [158048] +19:49:29 [ 70] [ 3] [301] +19:49:29 ============================================================================ +19:49:29 + + +waiting on router queue for slot.... +19:49:29 Sending to : +19:49:29 ============================================================================ +19:49:29 ============================================================================ +19:49:29 Slot Id : <347> +19:49:29 Transaction Type : RESPONSE +19:49:29 Received From : +19:49:29 ============================================================================ +19:49:29 FNo. Len. Field Value +19:49:29 ============================================================================ +19:49:29 [ 1] [ 4] [0810] +19:49:29 [ 7] [ 10] [0320124836] +19:49:29 [ 11] [ 6] [158048] +19:49:29 [ 39] [ 2] [00] +19:49:29 [ 70] [ 3] [301] +19:49:29 ============================================================================ +19:49:29 Calculate Source COMM Id = 2 +19:49:29 ============================================================================ +19:49:29 + + +waiting on router queue for slot.... +19:49:32 ============================================================================ +19:49:32 Slot Id : <348> +19:49:32 Transaction Type : REQUEST +19:49:32 Received From : +19:49:32 ============================================================================ +19:49:32 FNo. Len. Field Value +19:49:32 ============================================================================ +19:49:32 [ 1] [ 4] [0800] +19:49:32 [ 7] [ 10] [0321030120] +19:49:32 [ 11] [ 6] [200120] +19:49:32 [ 37] [ 12] [57920200120] +19:49:32 [ 70] [ 3] [301] +19:49:32 ============================================================================ +19:49:32 + + +waiting on router queue for slot.... +19:49:32 Sending to : +19:49:32 ============================================================================ +19:49:32 ============================================================================ +19:49:32 Slot Id : <348> +19:49:32 Transaction Type : RESPONSE +19:49:32 Received From : +19:49:32 ============================================================================ +19:49:32 FNo. Len. Field Value +19:49:32 ============================================================================ +19:49:32 [ 1] [ 4] [0810] +19:49:32 [ 7] [ 10] [0321030120] +19:49:32 [ 11] [ 6] [200120] +19:49:32 [ 37] [ 12] [579202001200] +19:49:32 [ 39] [ 2] [00] +19:49:32 [ 70] [ 3] [810] +19:49:32 ============================================================================ +19:49:32 Calculate Source COMM Id = 6 +19:49:32 ============================================================================ +19:49:32 + + +waiting on router queue for slot.... +19:49:34 ============================================================================ +19:49:34 Slot Id : <329> +19:49:34 Transaction Type : REQUEST +19:49:34 Received From : +19:49:34 ============================================================================ +19:49:34 FNo. Len. Field Value +19:49:34 ============================================================================ +19:49:34 [ 1] [ 4] [0200] +19:49:34 [ 2] [ 16] [1808931400009500] +19:49:34 [ 3] [ 6] [010000] +19:49:34 [ 4] [ 12] [000080000000] +19:49:34 [ 7] [ 10] [0320194723] +19:49:34 [ 11] [ 6] [956584] +19:49:34 [ 12] [ 6] [194723] +19:49:34 [ 13] [ 4] [0320] +19:49:34 [ 15] [ 4] [0320] +19:49:34 [ 18] [ 4] [6011] +19:49:34 [ 19] [ 3] [418] +19:49:34 [ 22] [ 3] [021] +19:49:34 [ 25] [ 2] [01] +19:49:34 [ 28] [ 9] [D00002000] +19:49:34 [ 32] [ 6] [668899] +19:49:34 [ 35] [ 27] [1808931400009500=1803500899] +19:49:34 [ 37] [ 12] [507901604389] +19:49:34 [ 41] [ 8] [03202001] +19:49:34 [ 42] [ 15] [APT ] +19:49:34 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:49:34 [ 49] [ 3] [418] +19:49:34 [ 52] [ 16] [8469DDDEFD5503A0] +19:49:34 ============================================================================ +19:49:34 + + +waiting on router queue for slot.... +19:49:34 Sending to : +19:49:34 ============================================================================ +19:49:34 Sending to : +19:49:34 ============================================================================ +19:49:34 ============================================================================ +19:49:34 Slot Id : <329> +19:49:34 Transaction Type : REQUEST +19:49:34 Received From : +19:49:34 ============================================================================ +19:49:34 FNo. Len. Field Value +19:49:34 ============================================================================ +19:49:34 [ 1] [ 4] [0200] +19:49:34 [ 2] [ 16] [1808931400009500] +19:49:34 [ 3] [ 6] [010000] +19:49:34 [ 4] [ 12] [000080000000] +19:49:34 [ 7] [ 10] [0320194723] +19:49:34 [ 11] [ 6] [956584] +19:49:34 [ 12] [ 6] [194723] +19:49:34 [ 13] [ 4] [0320] +19:49:34 [ 15] [ 4] [0320] +19:49:34 [ 18] [ 4] [6011] +19:49:34 [ 19] [ 3] [418] +19:49:34 [ 22] [ 3] [021] +19:49:34 [ 25] [ 2] [01] +19:49:34 [ 28] [ 9] [D00002000] +19:49:34 [ 32] [ 6] [668899] +19:49:34 [ 35] [ 27] [1808931400009500=1803500899] +19:49:34 [ 37] [ 12] [507901604389] +19:49:34 [ 41] [ 8] [03202001] +19:49:34 [ 42] [ 15] [APT ] +19:49:34 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:49:34 [ 49] [ 3] [418] +19:49:34 [ 52] [ 16] [8469DDDEFD5503A0] +19:49:34 ============================================================================ +19:49:34 + + +waiting on router queue for slot.... +19:49:34 Sending to : +19:49:34 ============================================================================ +19:49:34 ============================================================================ +19:49:34 Slot Id : <329> +19:49:34 Transaction Type : REQUEST +19:49:34 Received From : +19:49:34 ============================================================================ +19:49:34 FNo. Len. Field Value +19:49:34 ============================================================================ +19:49:34 [ 1] [ 4] [0200] +19:49:34 [ 2] [ 16] [1808931400009500] +19:49:34 [ 3] [ 6] [010000] +19:49:34 [ 4] [ 12] [000080000000] +19:49:34 [ 7] [ 10] [0320194723] +19:49:34 [ 11] [ 6] [956584] +19:49:34 [ 12] [ 6] [194723] +19:49:34 [ 13] [ 4] [0320] +19:49:34 [ 15] [ 4] [0320] +19:49:34 [ 18] [ 4] [6011] +19:49:34 [ 19] [ 3] [418] +19:49:34 [ 22] [ 3] [021] +19:49:34 [ 25] [ 2] [01] +19:49:34 [ 28] [ 9] [D00002000] +19:49:34 [ 32] [ 6] [668899] +19:49:34 [ 35] [ 27] [1808931400009500=1803500899] +19:49:34 [ 37] [ 12] [507901604389] +19:49:34 [ 41] [ 8] [03202001] +19:49:34 [ 42] [ 15] [APT ] +19:49:34 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:49:34 [ 49] [ 3] [418] +19:49:34 [ 52] [ 16] [C5E42789A6EE4629] +19:49:34 ============================================================================ +19:49:34 + + +waiting on router queue for slot.... +19:49:34 Sending to : <2> +19:49:34 ============================================================================ +19:49:37 ============================================================================ +19:49:37 Slot Id : <329> +19:49:37 Transaction Type : RESPONSE +19:49:37 Received From : +19:49:37 ============================================================================ +19:49:37 FNo. Len. Field Value +19:49:37 ============================================================================ +19:49:37 [ 1] [ 4] [0210] +19:49:37 [ 2] [ 16] [1808931400009500] +19:49:37 [ 3] [ 6] [010000] +19:49:37 [ 4] [ 12] [000080000000] +19:49:37 [ 6] [ 12] [000080000000] +19:49:37 [ 7] [ 10] [0320194723] +19:49:37 [ 11] [ 6] [956584] +19:49:37 [ 12] [ 6] [194723] +19:49:37 [ 13] [ 4] [0320] +19:49:37 [ 18] [ 4] [6011] +19:49:37 [ 19] [ 3] [418] +19:49:37 [ 22] [ 3] [021] +19:49:37 [ 32] [ 6] [668899] +19:49:37 [ 35] [ 27] [1808931400009500=1803500899] +19:49:37 [ 37] [ 12] [507901604389] +19:49:37 [ 38] [ 6] [956584] +19:49:37 [ 39] [ 2] [00] +19:49:37 [ 41] [ 8] [03202001] +19:49:37 [ 49] [ 3] [418] +19:49:37 [ 52] [ 16] [C5E42789A6EE4629] +19:49:37 [ 54] [ 20] [1001418C000019615600] +19:49:37 ============================================================================ +19:49:37 Sending to : +19:49:37 ============================================================================ +19:49:37 + + +waiting on router queue for slot.... +19:49:38 ============================================================================ +19:49:38 Slot Id : <329> +19:49:38 Transaction Type : RESPONSE +19:49:38 Received From : +19:49:38 ============================================================================ +19:49:38 FNo. Len. Field Value +19:49:38 ============================================================================ +19:49:38 [ 1] [ 4] [0210] +19:49:38 [ 2] [ 16] [1808931400009500] +19:49:38 [ 3] [ 6] [010000] +19:49:38 [ 4] [ 12] [000080000000] +19:49:38 [ 6] [ 12] [000080000000] +19:49:38 [ 7] [ 10] [0320194723] +19:49:38 [ 11] [ 6] [956584] +19:49:38 [ 12] [ 6] [194723] +19:49:38 [ 13] [ 4] [0320] +19:49:38 [ 18] [ 4] [6011] +19:49:38 [ 19] [ 3] [418] +19:49:38 [ 22] [ 3] [021] +19:49:38 [ 32] [ 6] [668899] +19:49:38 [ 35] [ 27] [1808931400009500=1803500899] +19:49:38 [ 37] [ 12] [507901604389] +19:49:38 [ 38] [ 6] [956584] +19:49:38 [ 39] [ 2] [00] +19:49:38 [ 41] [ 8] [03202001] +19:49:38 [ 49] [ 3] [418] +19:49:38 [ 52] [ 16] [C5E42789A6EE4629] +19:49:38 [ 54] [ 20] [1001418C000019615600] +19:49:38 ============================================================================ +19:49:38 Calculate Source COMM Id = 4 +19:49:38 ============================================================================ +19:49:38 + + +waiting on router queue for slot.... +19:49:45 ============================================================================ +19:49:45 Slot Id : <337> +19:49:45 Transaction Type : REQUEST +19:49:45 Received From : +19:49:45 ============================================================================ +19:49:45 FNo. Len. Field Value +19:49:45 ============================================================================ +19:49:45 [ 1] [ 4] [0800] +19:49:45 [ 7] [ 10] [0320124851] +19:49:45 [ 11] [ 6] [158049] +19:49:45 [ 70] [ 3] [301] +19:49:45 ============================================================================ +19:49:45 + + +waiting on router queue for slot.... +19:49:45 Sending to : +19:49:45 ============================================================================ +19:49:45 ============================================================================ +19:49:45 Slot Id : <337> +19:49:45 Transaction Type : RESPONSE +19:49:45 Received From : +19:49:45 ============================================================================ +19:49:45 FNo. Len. Field Value +19:49:45 ============================================================================ +19:49:45 [ 1] [ 4] [0810] +19:49:45 [ 7] [ 10] [0320124851] +19:49:45 [ 11] [ 6] [158049] +19:49:45 [ 39] [ 2] [00] +19:49:45 [ 70] [ 3] [301] +19:49:45 ============================================================================ +19:49:45 Calculate Source COMM Id = 2 +19:49:45 ============================================================================ +19:49:45 + + +waiting on router queue for slot.... +19:49:53 ============================================================================ +19:49:53 Slot Id : <328> +19:49:53 Transaction Type : REQUEST +19:49:53 Received From : +19:49:53 ============================================================================ +19:49:53 FNo. Len. Field Value +19:49:53 ============================================================================ +19:49:53 [ 1] [ 4] [0200] +19:49:53 [ 2] [ 16] [6213541000281777] +19:49:53 [ 3] [ 6] [010000] +19:49:53 [ 4] [ 12] [000150000000] +19:49:53 [ 7] [ 10] [0320124858] +19:49:53 [ 11] [ 6] [271481] +19:49:53 [ 12] [ 6] [194858] +19:49:53 [ 13] [ 4] [0320] +19:49:53 [ 14] [ 4] [4912] +19:49:53 [ 15] [ 4] [0320] +19:49:53 [ 18] [ 4] [6011] +19:49:53 [ 19] [ 3] [418] +19:49:53 [ 22] [ 3] [021] +19:49:53 [ 25] [ 2] [01] +19:49:53 [ 28] [ 9] [D00002000] +19:49:53 [ 32] [ 6] [180893] +19:49:53 [ 35] [ 32] [6213541000281777=491212018177176] +19:49:53 [ 37] [ 12] [507912271481] +19:49:53 [ 41] [ 8] [0441VT52] +19:49:53 [ 42] [ 15] [999999 ] +19:49:53 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:49:53 [ 49] [ 3] [418] +19:49:53 [ 52] [ 16] [9C548B4C94AD5BD8] +19:49:53 ============================================================================ +19:49:53 + + +waiting on router queue for slot.... +19:49:53 Sending to : +19:49:53 ============================================================================ +19:49:53 Sending to : +19:49:53 ============================================================================ +19:49:53 ============================================================================ +19:49:53 Slot Id : <328> +19:49:53 Transaction Type : REQUEST +19:49:53 Received From : +19:49:53 ============================================================================ +19:49:53 FNo. Len. Field Value +19:49:53 ============================================================================ +19:49:53 [ 1] [ 4] [0200] +19:49:53 [ 2] [ 16] [6213541000281777] +19:49:53 [ 3] [ 6] [010000] +19:49:53 [ 4] [ 12] [000150000000] +19:49:53 [ 7] [ 10] [0320124858] +19:49:53 [ 11] [ 6] [271481] +19:49:53 [ 12] [ 6] [194858] +19:49:53 [ 13] [ 4] [0320] +19:49:53 [ 14] [ 4] [4912] +19:49:53 [ 15] [ 4] [0320] +19:49:53 [ 18] [ 4] [6011] +19:49:53 [ 19] [ 3] [418] +19:49:53 [ 22] [ 3] [021] +19:49:53 [ 25] [ 2] [01] +19:49:53 [ 28] [ 9] [D00002000] +19:49:53 [ 32] [ 6] [180893] +19:49:53 [ 35] [ 32] [6213541000281777=491212018177176] +19:49:53 [ 37] [ 12] [507912271481] +19:49:53 [ 41] [ 8] [0441VT52] +19:49:53 [ 42] [ 15] [999999 ] +19:49:53 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:49:53 [ 49] [ 3] [418] +19:49:53 [ 52] [ 16] [9C548B4C94AD5BD8] +19:49:53 ============================================================================ +19:49:53 + + +waiting on router queue for slot.... +19:49:53 Sending to : +19:49:53 ============================================================================ +19:49:53 ============================================================================ +19:49:53 Slot Id : <328> +19:49:53 Transaction Type : REQUEST +19:49:53 Received From : +19:49:53 ============================================================================ +19:49:53 FNo. Len. Field Value +19:49:53 ============================================================================ +19:49:53 [ 1] [ 4] [0200] +19:49:53 [ 2] [ 16] [6213541000281777] +19:49:53 [ 3] [ 6] [010000] +19:49:53 [ 4] [ 12] [000150000000] +19:49:53 [ 7] [ 10] [0320124858] +19:49:53 [ 11] [ 6] [271481] +19:49:53 [ 12] [ 6] [194858] +19:49:53 [ 13] [ 4] [0320] +19:49:53 [ 14] [ 4] [4912] +19:49:53 [ 15] [ 4] [0320] +19:49:53 [ 18] [ 4] [6011] +19:49:53 [ 19] [ 3] [418] +19:49:53 [ 22] [ 3] [021] +19:49:53 [ 25] [ 2] [01] +19:49:53 [ 28] [ 9] [D00002000] +19:49:53 [ 32] [ 6] [180893] +19:49:53 [ 35] [ 32] [6213541000281777=491212018177176] +19:49:53 [ 37] [ 12] [507912271481] +19:49:53 [ 41] [ 8] [0441VT52] +19:49:53 [ 42] [ 15] [999999 ] +19:49:53 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:49:53 [ 49] [ 3] [418] +19:49:53 [ 52] [ 16] [C800533275ADBEA5] +19:49:53 ============================================================================ +19:49:53 + + +waiting on router queue for slot.... +19:49:53 Sending to : <0> +19:49:53 ============================================================================ +19:49:54 ============================================================================ +19:49:54 Slot Id : <328> +19:49:54 Transaction Type : RESPONSE +19:49:54 Received From : +19:49:54 ============================================================================ +19:49:54 FNo. Len. Field Value +19:49:54 ============================================================================ +19:49:54 [ 1] [ 4] [0210] +19:49:54 [ 2] [ 16] [6213541000281777] +19:49:54 [ 3] [ 6] [010000] +19:49:54 [ 4] [ 12] [000150000000] +19:49:54 [ 7] [ 10] [0320124858] +19:49:54 [ 11] [ 6] [271481] +19:49:54 [ 12] [ 6] [194858] +19:49:54 [ 13] [ 4] [0320] +19:49:54 [ 15] [ 4] [0320] +19:49:54 [ 18] [ 4] [6011] +19:49:54 [ 19] [ 3] [418] +19:49:54 [ 22] [ 3] [021] +19:49:54 [ 32] [ 6] [180893] +19:49:54 [ 35] [ 32] [6213541000281777=491212018177176] +19:49:54 [ 37] [ 12] [507912271481] +19:49:54 [ 39] [ 2] [61] +19:49:54 [ 41] [ 8] [0441VT52] +19:49:54 [ 49] [ 3] [418] +19:49:54 ============================================================================ +19:49:54 Sending to : +19:49:54 ============================================================================ +19:49:54 + + +waiting on router queue for slot.... +19:49:55 ============================================================================ +19:49:55 Slot Id : <328> +19:49:55 Transaction Type : RESPONSE +19:49:55 Received From : +19:49:55 ============================================================================ +19:49:55 FNo. Len. Field Value +19:49:55 ============================================================================ +19:49:55 [ 1] [ 4] [0210] +19:49:55 [ 2] [ 16] [6213541000281777] +19:49:55 [ 3] [ 6] [010000] +19:49:55 [ 4] [ 12] [000150000000] +19:49:55 [ 7] [ 10] [0320124858] +19:49:55 [ 11] [ 6] [271481] +19:49:55 [ 12] [ 6] [194858] +19:49:55 [ 13] [ 4] [0320] +19:49:55 [ 15] [ 4] [0320] +19:49:55 [ 18] [ 4] [6011] +19:49:55 [ 19] [ 3] [418] +19:49:55 [ 22] [ 3] [021] +19:49:55 [ 32] [ 6] [180893] +19:49:55 [ 35] [ 32] [6213541000281777=491212018177176] +19:49:55 [ 37] [ 12] [507912271481] +19:49:55 [ 39] [ 2] [61] +19:49:55 [ 41] [ 8] [0441VT52] +19:49:55 [ 49] [ 3] [418] +19:49:55 ============================================================================ +19:49:55 Calculate Source COMM Id = 2 +19:49:55 ============================================================================ +19:49:55 + + +waiting on router queue for slot.... +19:49:55 ============================================================================ +19:49:55 Slot Id : <350> +19:49:55 Transaction Type : REQUEST +19:49:55 Received From : +19:49:55 ============================================================================ +19:49:55 FNo. Len. Field Value +19:49:55 ============================================================================ +19:49:55 [ 1] [ 4] [0800] +19:49:55 [ 7] [ 10] [0320124902] +19:49:55 [ 11] [ 6] [158050] +19:49:55 [ 70] [ 3] [301] +19:49:55 ============================================================================ +19:49:55 + + +waiting on router queue for slot.... +19:49:55 Sending to : +19:49:55 ============================================================================ +19:49:55 ============================================================================ +19:49:55 Slot Id : <350> +19:49:55 Transaction Type : RESPONSE +19:49:55 Received From : +19:49:55 ============================================================================ +19:49:55 FNo. Len. Field Value +19:49:55 ============================================================================ +19:49:55 [ 1] [ 4] [0810] +19:49:55 [ 7] [ 10] [0320124902] +19:49:55 [ 11] [ 6] [158050] +19:49:55 [ 39] [ 2] [00] +19:49:55 [ 70] [ 3] [301] +19:49:55 ============================================================================ +19:49:55 Calculate Source COMM Id = 2 +19:49:55 ============================================================================ +19:49:55 + + +waiting on router queue for slot.... +19:49:57 ============================================================================ +19:49:57 Slot Id : <346> +19:49:57 Transaction Type : REQUEST +19:49:57 Received From : +19:49:57 ============================================================================ +19:49:57 FNo. Len. Field Value +19:49:57 ============================================================================ +19:49:57 [ 1] [ 4] [0800] +19:49:57 [ 7] [ 10] [0320125742] +19:49:57 [ 11] [ 6] [075275] +19:49:57 [ 37] [ 12] [57919075275] +19:49:57 [ 70] [ 3] [301] +19:49:57 ============================================================================ +19:49:57 + + +waiting on router queue for slot.... +19:49:57 Sending to : +19:49:57 ============================================================================ +19:49:57 ============================================================================ +19:49:57 Slot Id : <346> +19:49:57 Transaction Type : RESPONSE +19:49:57 Received From : +19:49:57 ============================================================================ +19:49:57 FNo. Len. Field Value +19:49:57 ============================================================================ +19:49:57 [ 1] [ 4] [0810] +19:49:57 [ 7] [ 10] [0320125742] +19:49:57 [ 11] [ 6] [075275] +19:49:57 [ 37] [ 12] [579190752750] +19:49:57 [ 39] [ 2] [00] +19:49:57 [ 70] [ 3] [810] +19:49:57 ============================================================================ +19:49:57 Calculate Source COMM Id = 1 +19:49:57 ============================================================================ +19:49:57 + + +waiting on router queue for slot.... +19:50:01 ============================================================================ +19:50:01 Slot Id : <357> +19:50:01 Transaction Type : REQUEST +19:50:01 Received From : +19:50:01 ============================================================================ +19:50:01 FNo. Len. Field Value +19:50:01 ============================================================================ +19:50:01 [ 1] [ 4] [0800] +19:50:01 [ 2] [ 5] [02531] +19:50:01 [ 3] [ 6] [579198] +19:50:01 [ 7] [ 10] [0320125001] +19:50:01 [ 11] [ 6] [807563] +19:50:01 [ 15] [ 10] [0320125001] +19:50:01 [ 37] [ 11] [57919807563] +19:50:01 [ 70] [ 3] [001] +19:50:01 ============================================================================ +19:50:01 + + +waiting on router queue for slot.... +19:50:01 ============================================================================ +19:50:01 Slot Id : <357> +19:50:01 Transaction Type : RESPONSE +19:50:01 Received From : +19:50:01 ============================================================================ +19:50:01 FNo. Len. Field Value +19:50:01 ============================================================================ +19:50:01 [ 1] [ 4] [0810] +19:50:01 [ 7] [ 10] [0320125001] +19:50:01 [ 11] [ 6] [807563] +19:50:01 [ 15] [ 4] [0320] +19:50:01 [ 37] [ 12] [57919807563] +19:50:01 [ 39] [ 2] [00] +19:50:01 [ 70] [ 3] [001] +19:50:01 ============================================================================ +19:50:01 Sending to : +19:50:01 ============================================================================ +19:50:01 + + +waiting on router queue for slot.... +19:50:02 ============================================================================ +19:50:02 Slot Id : <332> +19:50:02 Transaction Type : REQUEST +19:50:02 Received From : +19:50:02 ============================================================================ +19:50:02 FNo. Len. Field Value +19:50:02 ============================================================================ +19:50:02 [ 1] [ 4] [0200] +19:50:02 [ 2] [ 16] [6688990102978200] +19:50:02 [ 3] [ 6] [011000] +19:50:02 [ 4] [ 12] [000005000000] +19:50:02 [ 7] [ 10] [0320124908] +19:50:02 [ 11] [ 6] [271483] +19:50:02 [ 12] [ 6] [194908] +19:50:02 [ 13] [ 4] [0320] +19:50:02 [ 14] [ 4] [4211] +19:50:02 [ 15] [ 4] [0320] +19:50:02 [ 18] [ 4] [6011] +19:50:02 [ 19] [ 3] [418] +19:50:02 [ 22] [ 3] [021] +19:50:02 [ 25] [ 2] [01] +19:50:02 [ 28] [ 9] [D00002000] +19:50:02 [ 32] [ 6] [180893] +19:50:02 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:50:02 [ 37] [ 12] [507912271483] +19:50:02 [ 41] [ 8] [0466PSLB] +19:50:02 [ 42] [ 15] [999999 ] +19:50:02 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:50:02 [ 49] [ 3] [418] +19:50:02 [ 52] [ 16] [280086D660CA5EB4] +19:50:02 ============================================================================ +19:50:02 + + +waiting on router queue for slot.... +19:50:02 Sending to : +19:50:02 ============================================================================ +19:50:02 Sending to : +19:50:02 ============================================================================ +19:50:02 ============================================================================ +19:50:02 Slot Id : <332> +19:50:02 Transaction Type : REQUEST +19:50:02 Received From : +19:50:02 ============================================================================ +19:50:02 FNo. Len. Field Value +19:50:02 ============================================================================ +19:50:02 [ 1] [ 4] [0200] +19:50:02 [ 2] [ 16] [6688990102978200] +19:50:02 [ 3] [ 6] [011000] +19:50:02 [ 4] [ 12] [000005000000] +19:50:02 [ 7] [ 10] [0320124908] +19:50:02 [ 11] [ 6] [271483] +19:50:02 [ 12] [ 6] [194908] +19:50:02 [ 13] [ 4] [0320] +19:50:02 [ 14] [ 4] [4211] +19:50:02 [ 15] [ 4] [0320] +19:50:02 [ 18] [ 4] [6011] +19:50:02 [ 19] [ 3] [418] +19:50:02 [ 22] [ 3] [021] +19:50:02 [ 25] [ 2] [01] +19:50:02 [ 28] [ 9] [D00002000] +19:50:02 [ 32] [ 6] [180893] +19:50:02 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:50:02 [ 37] [ 12] [507912271483] +19:50:02 [ 41] [ 8] [0466PSLB] +19:50:02 [ 42] [ 15] [999999 ] +19:50:02 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:50:02 [ 49] [ 3] [418] +19:50:02 [ 52] [ 16] [280086D660CA5EB4] +19:50:02 ============================================================================ +19:50:02 + + +waiting on router queue for slot.... +19:50:02 Sending to : +19:50:02 ============================================================================ +19:50:02 ============================================================================ +19:50:02 Slot Id : <332> +19:50:02 Transaction Type : REQUEST +19:50:02 Received From : +19:50:02 ============================================================================ +19:50:02 FNo. Len. Field Value +19:50:02 ============================================================================ +19:50:02 [ 1] [ 4] [0200] +19:50:02 [ 2] [ 16] [6688990102978200] +19:50:02 [ 3] [ 6] [011000] +19:50:02 [ 4] [ 12] [000005000000] +19:50:02 [ 7] [ 10] [0320124908] +19:50:02 [ 11] [ 6] [271483] +19:50:02 [ 12] [ 6] [194908] +19:50:02 [ 13] [ 4] [0320] +19:50:02 [ 14] [ 4] [4211] +19:50:02 [ 15] [ 4] [0320] +19:50:02 [ 18] [ 4] [6011] +19:50:02 [ 19] [ 3] [418] +19:50:02 [ 22] [ 3] [021] +19:50:02 [ 25] [ 2] [01] +19:50:02 [ 28] [ 9] [D00002000] +19:50:02 [ 32] [ 6] [180893] +19:50:02 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:50:02 [ 37] [ 12] [507912271483] +19:50:02 [ 41] [ 8] [0466PSLB] +19:50:02 [ 42] [ 15] [999999 ] +19:50:02 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:50:02 [ 49] [ 3] [418] +19:50:02 [ 52] [ 16] [F79007A0D28F8E58] +19:50:02 ============================================================================ +19:50:02 + + +waiting on router queue for slot.... +19:50:02 Sending to : <0> +19:50:02 ============================================================================ +19:50:03 ============================================================================ +19:50:03 Slot Id : <332> +19:50:03 Transaction Type : RESPONSE +19:50:03 Received From : +19:50:03 ============================================================================ +19:50:03 FNo. Len. Field Value +19:50:03 ============================================================================ +19:50:03 [ 1] [ 4] [0210] +19:50:03 [ 2] [ 16] [6688990102978200] +19:50:03 [ 3] [ 6] [011000] +19:50:03 [ 4] [ 12] [000005000000] +19:50:03 [ 7] [ 10] [0320124908] +19:50:03 [ 11] [ 6] [271483] +19:50:03 [ 12] [ 6] [194908] +19:50:03 [ 13] [ 4] [0320] +19:50:03 [ 15] [ 4] [0320] +19:50:03 [ 18] [ 4] [6011] +19:50:03 [ 19] [ 3] [418] +19:50:03 [ 22] [ 3] [021] +19:50:03 [ 32] [ 6] [180893] +19:50:03 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:50:03 [ 37] [ 12] [507912271483] +19:50:03 [ 39] [ 2] [14] +19:50:03 [ 41] [ 8] [0466PSLB] +19:50:03 [ 49] [ 3] [418] +19:50:03 ============================================================================ +19:50:03 Sending to : +19:50:03 ============================================================================ +19:50:03 + + +waiting on router queue for slot.... +19:50:04 ============================================================================ +19:50:04 Slot Id : <332> +19:50:04 Transaction Type : RESPONSE +19:50:04 Received From : +19:50:04 ============================================================================ +19:50:04 FNo. Len. Field Value +19:50:04 ============================================================================ +19:50:04 [ 1] [ 4] [0210] +19:50:04 [ 2] [ 16] [6688990102978200] +19:50:04 [ 3] [ 6] [011000] +19:50:04 [ 4] [ 12] [000005000000] +19:50:04 [ 7] [ 10] [0320124908] +19:50:04 [ 11] [ 6] [271483] +19:50:04 [ 12] [ 6] [194908] +19:50:04 [ 13] [ 4] [0320] +19:50:04 [ 15] [ 4] [0320] +19:50:04 [ 18] [ 4] [6011] +19:50:04 [ 19] [ 3] [418] +19:50:04 [ 22] [ 3] [021] +19:50:04 [ 32] [ 6] [180893] +19:50:04 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:50:04 [ 37] [ 12] [507912271483] +19:50:04 [ 39] [ 2] [14] +19:50:04 [ 41] [ 8] [0466PSLB] +19:50:04 [ 49] [ 3] [418] +19:50:04 ============================================================================ +19:50:04 Calculate Source COMM Id = 2 +19:50:04 ============================================================================ +19:50:04 + + +waiting on router queue for slot.... +19:50:16 ============================================================================ +19:50:16 Slot Id : <319> +19:50:16 Transaction Type : REQUEST +19:50:16 Received From : +19:50:16 ============================================================================ +19:50:16 FNo. Len. Field Value +19:50:16 ============================================================================ +19:50:16 [ 1] [ 4] [0800] +19:50:16 [ 7] [ 10] [0320124923] +19:50:16 [ 11] [ 6] [158051] +19:50:16 [ 70] [ 3] [301] +19:50:16 ============================================================================ +19:50:16 + + +waiting on router queue for slot.... +19:50:16 Sending to : +19:50:16 ============================================================================ +19:50:16 ============================================================================ +19:50:16 Slot Id : <319> +19:50:16 Transaction Type : RESPONSE +19:50:16 Received From : +19:50:16 ============================================================================ +19:50:16 FNo. Len. Field Value +19:50:16 ============================================================================ +19:50:16 [ 1] [ 4] [0810] +19:50:16 [ 7] [ 10] [0320124923] +19:50:16 [ 11] [ 6] [158051] +19:50:16 [ 39] [ 2] [00] +19:50:16 [ 70] [ 3] [301] +19:50:16 ============================================================================ +19:50:16 Calculate Source COMM Id = 2 +19:50:16 ============================================================================ +19:50:16 + + +waiting on router queue for slot.... +19:50:33 ============================================================================ +19:50:33 Slot Id : <365> +19:50:33 Transaction Type : REQUEST +19:50:33 Received From : +19:50:33 ============================================================================ +19:50:33 FNo. Len. Field Value +19:50:33 ============================================================================ +19:50:33 [ 1] [ 4] [0800] +19:50:33 [ 7] [ 10] [0320124939] +19:50:33 [ 11] [ 6] [158052] +19:50:33 [ 70] [ 3] [301] +19:50:33 ============================================================================ +19:50:33 + + +waiting on router queue for slot.... +19:50:33 Sending to : +19:50:33 ============================================================================ +19:50:33 ============================================================================ +19:50:33 Slot Id : <365> +19:50:33 Transaction Type : RESPONSE +19:50:33 Received From : +19:50:33 ============================================================================ +19:50:33 FNo. Len. Field Value +19:50:33 ============================================================================ +19:50:33 [ 1] [ 4] [0810] +19:50:33 [ 7] [ 10] [0320124939] +19:50:33 [ 11] [ 6] [158052] +19:50:33 [ 39] [ 2] [00] +19:50:33 [ 70] [ 3] [301] +19:50:33 ============================================================================ +19:50:33 Calculate Source COMM Id = 2 +19:50:33 ============================================================================ +19:50:33 + + +waiting on router queue for slot.... +19:50:37 ============================================================================ +19:50:37 Slot Id : <356> +19:50:37 Transaction Type : REQUEST +19:50:37 Received From : +19:50:37 ============================================================================ +19:50:37 FNo. Len. Field Value +19:50:37 ============================================================================ +19:50:37 [ 1] [ 4] [0800] +19:50:37 [ 7] [ 10] [0321030225] +19:50:37 [ 11] [ 6] [200225] +19:50:37 [ 37] [ 12] [57920200225] +19:50:37 [ 70] [ 3] [301] +19:50:37 ============================================================================ +19:50:37 + + +waiting on router queue for slot.... +19:50:37 Sending to : +19:50:37 ============================================================================ +19:50:37 ============================================================================ +19:50:37 Slot Id : <356> +19:50:37 Transaction Type : RESPONSE +19:50:37 Received From : +19:50:37 ============================================================================ +19:50:37 FNo. Len. Field Value +19:50:37 ============================================================================ +19:50:37 [ 1] [ 4] [0810] +19:50:37 [ 7] [ 10] [0321030225] +19:50:37 [ 11] [ 6] [200225] +19:50:37 [ 37] [ 12] [579202002250] +19:50:37 [ 39] [ 2] [00] +19:50:37 [ 70] [ 3] [810] +19:50:37 ============================================================================ +19:50:37 Calculate Source COMM Id = 6 +19:50:37 ============================================================================ +19:50:37 + + +waiting on router queue for slot.... +19:50:44 ============================================================================ +19:50:44 Slot Id : <330> +19:50:44 Transaction Type : REQUEST +19:50:44 Received From : +19:50:44 ============================================================================ +19:50:44 FNo. Len. Field Value +19:50:44 ============================================================================ +19:50:44 [ 1] [ 4] [0800] +19:50:44 [ 7] [ 10] [0320124950] +19:50:44 [ 11] [ 6] [158053] +19:50:44 [ 70] [ 3] [301] +19:50:44 ============================================================================ +19:50:44 + + +waiting on router queue for slot.... +19:50:44 Sending to : +19:50:44 ============================================================================ +19:50:44 ============================================================================ +19:50:44 Slot Id : <330> +19:50:44 Transaction Type : RESPONSE +19:50:44 Received From : +19:50:44 ============================================================================ +19:50:44 FNo. Len. Field Value +19:50:44 ============================================================================ +19:50:44 [ 1] [ 4] [0810] +19:50:44 [ 7] [ 10] [0320124950] +19:50:44 [ 11] [ 6] [158053] +19:50:44 [ 39] [ 2] [00] +19:50:44 [ 70] [ 3] [301] +19:50:44 ============================================================================ +19:50:44 Calculate Source COMM Id = 2 +19:50:44 ============================================================================ +19:50:44 + + +waiting on router queue for slot.... +19:50:54 ============================================================================ +19:50:54 Slot Id : <378> +19:50:54 Transaction Type : REQUEST +19:50:54 Received From : +19:50:54 ============================================================================ +19:50:54 FNo. Len. Field Value +19:50:54 ============================================================================ +19:50:54 [ 1] [ 4] [0200] +19:50:54 [ 2] [ 16] [6213541000281777] +19:50:54 [ 3] [ 6] [010000] +19:50:54 [ 4] [ 12] [000100000000] +19:50:54 [ 7] [ 10] [0320125001] +19:50:54 [ 11] [ 6] [271487] +19:50:54 [ 12] [ 6] [195001] +19:50:54 [ 13] [ 4] [0320] +19:50:54 [ 14] [ 4] [4912] +19:50:54 [ 15] [ 4] [0320] +19:50:54 [ 18] [ 4] [6011] +19:50:54 [ 19] [ 3] [418] +19:50:54 [ 22] [ 3] [021] +19:50:54 [ 25] [ 2] [01] +19:50:54 [ 28] [ 9] [D00002000] +19:50:54 [ 32] [ 6] [180893] +19:50:54 [ 35] [ 32] [6213541000281777=491212018177176] +19:50:54 [ 37] [ 12] [507912271487] +19:50:54 [ 41] [ 8] [0441VT52] +19:50:54 [ 42] [ 15] [999999 ] +19:50:54 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:50:54 [ 49] [ 3] [418] +19:50:54 [ 52] [ 16] [9C548B4C94AD5BD8] +19:50:54 ============================================================================ +19:50:54 + + +waiting on router queue for slot.... +19:50:54 Sending to : +19:50:54 ============================================================================ +19:50:54 Sending to : +19:50:54 ============================================================================ +19:50:55 ============================================================================ +19:50:55 Slot Id : <378> +19:50:55 Transaction Type : REQUEST +19:50:55 Received From : +19:50:55 ============================================================================ +19:50:55 FNo. Len. Field Value +19:50:55 ============================================================================ +19:50:55 [ 1] [ 4] [0200] +19:50:55 [ 2] [ 16] [6213541000281777] +19:50:55 [ 3] [ 6] [010000] +19:50:55 [ 4] [ 12] [000100000000] +19:50:55 [ 7] [ 10] [0320125001] +19:50:55 [ 11] [ 6] [271487] +19:50:55 [ 12] [ 6] [195001] +19:50:55 [ 13] [ 4] [0320] +19:50:55 [ 14] [ 4] [4912] +19:50:55 [ 15] [ 4] [0320] +19:50:55 [ 18] [ 4] [6011] +19:50:55 [ 19] [ 3] [418] +19:50:55 [ 22] [ 3] [021] +19:50:55 [ 25] [ 2] [01] +19:50:55 [ 28] [ 9] [D00002000] +19:50:55 [ 32] [ 6] [180893] +19:50:55 [ 35] [ 32] [6213541000281777=491212018177176] +19:50:55 [ 37] [ 12] [507912271487] +19:50:55 [ 41] [ 8] [0441VT52] +19:50:55 [ 42] [ 15] [999999 ] +19:50:55 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:50:55 [ 49] [ 3] [418] +19:50:55 [ 52] [ 16] [9C548B4C94AD5BD8] +19:50:55 ============================================================================ +19:50:55 + + +waiting on router queue for slot.... +19:50:55 Sending to : +19:50:55 ============================================================================ +19:50:55 ============================================================================ +19:50:55 Slot Id : <378> +19:50:55 Transaction Type : REQUEST +19:50:55 Received From : +19:50:55 ============================================================================ +19:50:55 FNo. Len. Field Value +19:50:55 ============================================================================ +19:50:55 [ 1] [ 4] [0200] +19:50:55 [ 2] [ 16] [6213541000281777] +19:50:55 [ 3] [ 6] [010000] +19:50:55 [ 4] [ 12] [000100000000] +19:50:55 [ 7] [ 10] [0320125001] +19:50:55 [ 11] [ 6] [271487] +19:50:55 [ 12] [ 6] [195001] +19:50:55 [ 13] [ 4] [0320] +19:50:55 [ 14] [ 4] [4912] +19:50:55 [ 15] [ 4] [0320] +19:50:55 [ 18] [ 4] [6011] +19:50:55 [ 19] [ 3] [418] +19:50:55 [ 22] [ 3] [021] +19:50:55 [ 25] [ 2] [01] +19:50:55 [ 28] [ 9] [D00002000] +19:50:55 [ 32] [ 6] [180893] +19:50:55 [ 35] [ 32] [6213541000281777=491212018177176] +19:50:55 [ 37] [ 12] [507912271487] +19:50:55 [ 41] [ 8] [0441VT52] +19:50:55 [ 42] [ 15] [999999 ] +19:50:55 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:50:55 [ 49] [ 3] [418] +19:50:55 [ 52] [ 16] [C800533275ADBEA5] +19:50:55 ============================================================================ +19:50:55 + + +waiting on router queue for slot.... +19:50:55 Sending to : <0> +19:50:55 ============================================================================ +19:50:55 ============================================================================ +19:50:55 Slot Id : <378> +19:50:55 Transaction Type : RESPONSE +19:50:55 Received From : +19:50:55 ============================================================================ +19:50:55 FNo. Len. Field Value +19:50:55 ============================================================================ +19:50:55 [ 1] [ 4] [0210] +19:50:55 [ 2] [ 16] [6213541000281777] +19:50:55 [ 3] [ 6] [010000] +19:50:55 [ 4] [ 12] [000100000000] +19:50:55 [ 7] [ 10] [0320125001] +19:50:55 [ 11] [ 6] [271487] +19:50:55 [ 12] [ 6] [195001] +19:50:55 [ 13] [ 4] [0320] +19:50:55 [ 15] [ 4] [0320] +19:50:55 [ 18] [ 4] [6011] +19:50:55 [ 19] [ 3] [418] +19:50:55 [ 32] [ 6] [180893] +19:50:55 [ 35] [ 32] [6213541000281777=491212018177176] +19:50:55 [ 37] [ 12] [507912271487] +19:50:55 [ 38] [ 6] [906292] +19:50:55 [ 39] [ 2] [00] +19:50:55 [ 41] [ 8] [0441VT52] +19:50:55 [ 49] [ 3] [418] +19:50:55 [ 54] [ 40] [0001418C0007786447700002418C000778644770] +19:50:55 ============================================================================ +19:50:55 Sending to : +19:50:55 ============================================================================ +19:50:55 + + +waiting on router queue for slot.... +19:50:55 ============================================================================ +19:50:55 Slot Id : <371> +19:50:55 Transaction Type : REQUEST +19:50:55 Received From : +19:50:55 ============================================================================ +19:50:55 FNo. Len. Field Value +19:50:55 ============================================================================ +19:50:55 [ 1] [ 4] [0800] +19:50:55 [ 7] [ 10] [0320125002] +19:50:55 [ 11] [ 6] [158054] +19:50:55 [ 70] [ 3] [301] +19:50:55 ============================================================================ +19:50:55 + + +waiting on router queue for slot.... +19:50:55 Sending to : +19:50:55 ============================================================================ +19:50:55 ============================================================================ +19:50:55 Slot Id : <371> +19:50:55 Transaction Type : RESPONSE +19:50:55 Received From : +19:50:55 ============================================================================ +19:50:55 FNo. Len. Field Value +19:50:55 ============================================================================ +19:50:55 [ 1] [ 4] [0810] +19:50:55 [ 7] [ 10] [0320125002] +19:50:55 [ 11] [ 6] [158054] +19:50:55 [ 39] [ 2] [00] +19:50:55 [ 70] [ 3] [301] +19:50:55 ============================================================================ +19:50:55 Calculate Source COMM Id = 2 +19:50:55 ============================================================================ +19:50:55 + + +waiting on router queue for slot.... +19:50:56 ============================================================================ +19:50:56 Slot Id : <366> +19:50:56 Transaction Type : REQUEST +19:50:56 Received From : +19:50:56 ============================================================================ +19:50:56 FNo. Len. Field Value +19:50:56 ============================================================================ +19:50:56 [ 1] [ 4] [0200] +19:50:56 [ 2] [ 16] [6688990102978200] +19:50:56 [ 3] [ 6] [011000] +19:50:56 [ 4] [ 12] [000005000000] +19:50:56 [ 7] [ 10] [0320125001] +19:50:56 [ 11] [ 6] [271488] +19:50:56 [ 12] [ 6] [195001] +19:50:56 [ 13] [ 4] [0320] +19:50:56 [ 14] [ 4] [4211] +19:50:56 [ 15] [ 4] [0320] +19:50:56 [ 18] [ 4] [6011] +19:50:56 [ 19] [ 3] [418] +19:50:56 [ 22] [ 3] [021] +19:50:56 [ 25] [ 2] [01] +19:50:56 [ 28] [ 9] [D00002000] +19:50:56 [ 32] [ 6] [180893] +19:50:56 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:50:56 [ 37] [ 12] [507912271488] +19:50:56 [ 41] [ 8] [0466PSLB] +19:50:56 [ 42] [ 15] [999999 ] +19:50:56 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:50:56 [ 49] [ 3] [418] +19:50:56 [ 52] [ 16] [280086D660CA5EB4] +19:50:56 ============================================================================ +19:50:56 + + +waiting on router queue for slot.... +19:50:56 Sending to : +19:50:56 ============================================================================ +19:50:56 Sending to : +19:50:56 ============================================================================ +19:50:56 ============================================================================ +19:50:56 Slot Id : <366> +19:50:56 Transaction Type : REQUEST +19:50:56 Received From : +19:50:56 ============================================================================ +19:50:56 FNo. Len. Field Value +19:50:56 ============================================================================ +19:50:56 [ 1] [ 4] [0200] +19:50:56 [ 2] [ 16] [6688990102978200] +19:50:56 [ 3] [ 6] [011000] +19:50:56 [ 4] [ 12] [000005000000] +19:50:56 [ 7] [ 10] [0320125001] +19:50:56 [ 11] [ 6] [271488] +19:50:56 [ 12] [ 6] [195001] +19:50:56 [ 13] [ 4] [0320] +19:50:56 [ 14] [ 4] [4211] +19:50:56 [ 15] [ 4] [0320] +19:50:56 [ 18] [ 4] [6011] +19:50:56 [ 19] [ 3] [418] +19:50:56 [ 22] [ 3] [021] +19:50:56 [ 25] [ 2] [01] +19:50:56 [ 28] [ 9] [D00002000] +19:50:56 [ 32] [ 6] [180893] +19:50:56 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:50:56 [ 37] [ 12] [507912271488] +19:50:56 [ 41] [ 8] [0466PSLB] +19:50:56 [ 42] [ 15] [999999 ] +19:50:56 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:50:56 [ 49] [ 3] [418] +19:50:56 [ 52] [ 16] [280086D660CA5EB4] +19:50:56 ============================================================================ +19:50:56 + + +waiting on router queue for slot.... +19:50:56 Sending to : +19:50:56 ============================================================================ +19:50:56 ============================================================================ +19:50:56 Slot Id : <366> +19:50:56 Transaction Type : REQUEST +19:50:56 Received From : +19:50:56 ============================================================================ +19:50:56 FNo. Len. Field Value +19:50:56 ============================================================================ +19:50:56 [ 1] [ 4] [0200] +19:50:56 [ 2] [ 16] [6688990102978200] +19:50:56 [ 3] [ 6] [011000] +19:50:56 [ 4] [ 12] [000005000000] +19:50:56 [ 7] [ 10] [0320125001] +19:50:56 [ 11] [ 6] [271488] +19:50:56 [ 12] [ 6] [195001] +19:50:56 [ 13] [ 4] [0320] +19:50:56 [ 14] [ 4] [4211] +19:50:56 [ 15] [ 4] [0320] +19:50:56 [ 18] [ 4] [6011] +19:50:56 [ 19] [ 3] [418] +19:50:56 [ 22] [ 3] [021] +19:50:56 [ 25] [ 2] [01] +19:50:56 [ 28] [ 9] [D00002000] +19:50:56 [ 32] [ 6] [180893] +19:50:56 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:50:56 [ 37] [ 12] [507912271488] +19:50:56 [ 41] [ 8] [0466PSLB] +19:50:56 [ 42] [ 15] [999999 ] +19:50:56 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:50:56 [ 49] [ 3] [418] +19:50:56 [ 52] [ 16] [F79007A0D28F8E58] +19:50:56 ============================================================================ +19:50:56 + + +waiting on router queue for slot.... +19:50:56 Sending to : <0> +19:50:56 ============================================================================ +19:50:56 ============================================================================ +19:50:56 Slot Id : <366> +19:50:56 Transaction Type : RESPONSE +19:50:56 Received From : +19:50:56 ============================================================================ +19:50:56 FNo. Len. Field Value +19:50:56 ============================================================================ +19:50:56 [ 1] [ 4] [0210] +19:50:56 [ 2] [ 16] [6688990102978200] +19:50:56 [ 3] [ 6] [011000] +19:50:56 [ 4] [ 12] [000005000000] +19:50:56 [ 7] [ 10] [0320125001] +19:50:56 [ 11] [ 6] [271488] +19:50:56 [ 12] [ 6] [195001] +19:50:56 [ 13] [ 4] [0320] +19:50:56 [ 15] [ 4] [0320] +19:50:56 [ 18] [ 4] [6011] +19:50:56 [ 19] [ 3] [418] +19:50:56 [ 22] [ 3] [021] +19:50:56 [ 32] [ 6] [180893] +19:50:56 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:50:56 [ 37] [ 12] [507912271488] +19:50:56 [ 39] [ 2] [14] +19:50:56 [ 41] [ 8] [0466PSLB] +19:50:56 [ 49] [ 3] [418] +19:50:56 ============================================================================ +19:50:56 Sending to : +19:50:56 ============================================================================ +19:50:56 + + +waiting on router queue for slot.... +19:50:57 ============================================================================ +19:50:57 Slot Id : <378> +19:50:57 Transaction Type : RESPONSE +19:50:57 Received From : +19:50:57 ============================================================================ +19:50:57 FNo. Len. Field Value +19:50:57 ============================================================================ +19:50:57 [ 1] [ 4] [0210] +19:50:57 [ 2] [ 16] [6213541000281777] +19:50:57 [ 3] [ 6] [010000] +19:50:57 [ 4] [ 12] [000100000000] +19:50:57 [ 7] [ 10] [0320125001] +19:50:57 [ 11] [ 6] [271487] +19:50:57 [ 12] [ 6] [195001] +19:50:57 [ 13] [ 4] [0320] +19:50:57 [ 15] [ 4] [0320] +19:50:57 [ 18] [ 4] [6011] +19:50:57 [ 19] [ 3] [418] +19:50:57 [ 32] [ 6] [180893] +19:50:57 [ 35] [ 32] [6213541000281777=491212018177176] +19:50:57 [ 37] [ 12] [507912271487] +19:50:57 [ 38] [ 6] [906292] +19:50:57 [ 39] [ 2] [00] +19:50:57 [ 41] [ 8] [0441VT52] +19:50:57 [ 49] [ 3] [418] +19:50:57 [ 54] [ 40] [0001418C0007786447700002418C000778644770] +19:50:57 ============================================================================ +19:50:57 Calculate Source COMM Id = 2 +19:50:57 ============================================================================ +19:50:57 + + +waiting on router queue for slot.... +19:50:58 ============================================================================ +19:50:58 Slot Id : <366> +19:50:58 Transaction Type : RESPONSE +19:50:58 Received From : +19:50:58 ============================================================================ +19:50:58 FNo. Len. Field Value +19:50:58 ============================================================================ +19:50:58 [ 1] [ 4] [0210] +19:50:58 [ 2] [ 16] [6688990102978200] +19:50:58 [ 3] [ 6] [011000] +19:50:58 [ 4] [ 12] [000005000000] +19:50:58 [ 7] [ 10] [0320125001] +19:50:58 [ 11] [ 6] [271488] +19:50:58 [ 12] [ 6] [195001] +19:50:58 [ 13] [ 4] [0320] +19:50:58 [ 15] [ 4] [0320] +19:50:58 [ 18] [ 4] [6011] +19:50:58 [ 19] [ 3] [418] +19:50:58 [ 22] [ 3] [021] +19:50:58 [ 32] [ 6] [180893] +19:50:58 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:50:58 [ 37] [ 12] [507912271488] +19:50:58 [ 39] [ 2] [14] +19:50:58 [ 41] [ 8] [0466PSLB] +19:50:58 [ 49] [ 3] [418] +19:50:58 ============================================================================ +19:50:58 Calculate Source COMM Id = 2 +19:50:58 ============================================================================ +19:50:58 + + +waiting on router queue for slot.... +19:51:03 ============================================================================ +19:51:03 Slot Id : <313> +19:51:03 Transaction Type : REQUEST +19:51:03 Received From : +19:51:03 ============================================================================ +19:51:03 FNo. Len. Field Value +19:51:03 ============================================================================ +19:51:03 [ 1] [ 4] [0800] +19:51:03 [ 2] [ 5] [02531] +19:51:03 [ 3] [ 6] [579198] +19:51:03 [ 7] [ 10] [0320125103] +19:51:03 [ 11] [ 6] [807564] +19:51:03 [ 15] [ 10] [0320125103] +19:51:03 [ 37] [ 11] [57919807564] +19:51:03 [ 70] [ 3] [001] +19:51:03 ============================================================================ +19:51:03 + + +waiting on router queue for slot.... +19:51:03 ============================================================================ +19:51:03 Slot Id : <313> +19:51:03 Transaction Type : RESPONSE +19:51:03 Received From : +19:51:03 ============================================================================ +19:51:03 FNo. Len. Field Value +19:51:03 ============================================================================ +19:51:03 [ 1] [ 4] [0810] +19:51:03 [ 7] [ 10] [0320125103] +19:51:03 [ 11] [ 6] [807564] +19:51:03 [ 15] [ 4] [0320] +19:51:03 [ 37] [ 12] [57919807564] +19:51:03 [ 39] [ 2] [00] +19:51:03 [ 70] [ 3] [001] +19:51:03 ============================================================================ +19:51:03 Sending to : +19:51:03 ============================================================================ +19:51:03 + + +waiting on router queue for slot.... +19:51:11 ============================================================================ +19:51:11 Slot Id : <343> +19:51:11 Transaction Type : REQUEST +19:51:11 Received From : +19:51:11 ============================================================================ +19:51:11 FNo. Len. Field Value +19:51:11 ============================================================================ +19:51:11 [ 1] [ 4] [0800] +19:51:11 [ 7] [ 10] [0320125017] +19:51:11 [ 11] [ 6] [158055] +19:51:11 [ 70] [ 3] [301] +19:51:11 ============================================================================ +19:51:11 + + +waiting on router queue for slot.... +19:51:11 Sending to : +19:51:11 ============================================================================ +19:51:11 ============================================================================ +19:51:11 Slot Id : <343> +19:51:11 Transaction Type : RESPONSE +19:51:11 Received From : +19:51:11 ============================================================================ +19:51:11 FNo. Len. Field Value +19:51:11 ============================================================================ +19:51:11 [ 1] [ 4] [0810] +19:51:11 [ 7] [ 10] [0320125017] +19:51:11 [ 11] [ 6] [158055] +19:51:11 [ 39] [ 2] [00] +19:51:11 [ 70] [ 3] [301] +19:51:11 ============================================================================ +19:51:11 Calculate Source COMM Id = 2 +19:51:11 ============================================================================ +19:51:11 + + +waiting on router queue for slot.... +19:51:15 ============================================================================ +19:51:15 Slot Id : <340> +19:51:15 Transaction Type : REQUEST +19:51:15 Received From : +19:51:15 ============================================================================ +19:51:15 FNo. Len. Field Value +19:51:15 ============================================================================ +19:51:15 [ 1] [ 4] [0200] +19:51:15 [ 2] [ 16] [6213544001656914] +19:51:15 [ 3] [ 6] [010000] +19:51:15 [ 4] [ 12] [000010000000] +19:51:15 [ 7] [ 10] [0320194904] +19:51:15 [ 11] [ 6] [956600] +19:51:15 [ 12] [ 6] [194904] +19:51:15 [ 13] [ 4] [0320] +19:51:15 [ 15] [ 4] [0320] +19:51:15 [ 18] [ 4] [6011] +19:51:15 [ 19] [ 3] [418] +19:51:15 [ 22] [ 3] [021] +19:51:15 [ 25] [ 2] [01] +19:51:15 [ 28] [ 9] [D00002000] +19:51:15 [ 32] [ 6] [668899] +19:51:15 [ 35] [ 32] [6213544001656914=491212015691855] +19:51:15 [ 37] [ 12] [507901262078] +19:51:15 [ 41] [ 8] [03206001] +19:51:15 [ 42] [ 15] [APT ] +19:51:15 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:51:15 [ 49] [ 3] [418] +19:51:15 [ 52] [ 16] [0CE94DA648825B60] +19:51:15 ============================================================================ +19:51:15 + + +waiting on router queue for slot.... +19:51:15 Sending to : +19:51:15 ============================================================================ +19:51:15 Sending to : +19:51:15 ============================================================================ +19:51:15 ============================================================================ +19:51:15 Slot Id : <340> +19:51:15 Transaction Type : REQUEST +19:51:15 Received From : +19:51:15 ============================================================================ +19:51:15 FNo. Len. Field Value +19:51:15 ============================================================================ +19:51:15 [ 1] [ 4] [0200] +19:51:15 [ 2] [ 16] [6213544001656914] +19:51:15 [ 3] [ 6] [010000] +19:51:15 [ 4] [ 12] [000010000000] +19:51:15 [ 7] [ 10] [0320194904] +19:51:15 [ 11] [ 6] [956600] +19:51:15 [ 12] [ 6] [194904] +19:51:15 [ 13] [ 4] [0320] +19:51:15 [ 15] [ 4] [0320] +19:51:15 [ 18] [ 4] [6011] +19:51:15 [ 19] [ 3] [418] +19:51:15 [ 22] [ 3] [021] +19:51:15 [ 25] [ 2] [01] +19:51:15 [ 28] [ 9] [D00002000] +19:51:15 [ 32] [ 6] [668899] +19:51:15 [ 35] [ 32] [6213544001656914=491212015691855] +19:51:15 [ 37] [ 12] [507901262078] +19:51:15 [ 41] [ 8] [03206001] +19:51:15 [ 42] [ 15] [APT ] +19:51:15 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:51:15 [ 49] [ 3] [418] +19:51:15 [ 52] [ 16] [0CE94DA648825B60] +19:51:15 ============================================================================ +19:51:15 + + +waiting on router queue for slot.... +19:51:15 Sending to : +19:51:15 ============================================================================ +19:51:15 ============================================================================ +19:51:15 Slot Id : <340> +19:51:15 Transaction Type : REQUEST +19:51:15 Received From : +19:51:15 ============================================================================ +19:51:15 FNo. Len. Field Value +19:51:15 ============================================================================ +19:51:15 [ 1] [ 4] [0200] +19:51:15 [ 2] [ 16] [6213544001656914] +19:51:15 [ 3] [ 6] [010000] +19:51:15 [ 4] [ 12] [000010000000] +19:51:15 [ 7] [ 10] [0320194904] +19:51:15 [ 11] [ 6] [956600] +19:51:15 [ 12] [ 6] [194904] +19:51:15 [ 13] [ 4] [0320] +19:51:15 [ 15] [ 4] [0320] +19:51:15 [ 18] [ 4] [6011] +19:51:15 [ 19] [ 3] [418] +19:51:15 [ 22] [ 3] [021] +19:51:15 [ 25] [ 2] [01] +19:51:15 [ 28] [ 9] [D00002000] +19:51:15 [ 32] [ 6] [668899] +19:51:15 [ 35] [ 32] [6213544001656914=491212015691855] +19:51:15 [ 37] [ 12] [507901262078] +19:51:15 [ 41] [ 8] [03206001] +19:51:15 [ 42] [ 15] [APT ] +19:51:15 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +19:51:15 [ 49] [ 3] [418] +19:51:15 [ 52] [ 16] [1ED1D1CB663711AC] +19:51:15 ============================================================================ +19:51:15 + + +waiting on router queue for slot.... +19:51:15 Sending to : <0> +19:51:15 ============================================================================ +19:51:16 ============================================================================ +19:51:16 Slot Id : <340> +19:51:16 Transaction Type : RESPONSE +19:51:16 Received From : +19:51:16 ============================================================================ +19:51:16 FNo. Len. Field Value +19:51:16 ============================================================================ +19:51:16 [ 1] [ 4] [0210] +19:51:16 [ 2] [ 16] [6213544001656914] +19:51:16 [ 3] [ 6] [010000] +19:51:16 [ 4] [ 12] [000010000000] +19:51:16 [ 7] [ 10] [0320194904] +19:51:16 [ 11] [ 6] [956600] +19:51:16 [ 12] [ 6] [194904] +19:51:16 [ 13] [ 4] [0320] +19:51:16 [ 15] [ 4] [0320] +19:51:16 [ 18] [ 4] [6011] +19:51:16 [ 19] [ 3] [418] +19:51:16 [ 32] [ 6] [668899] +19:51:16 [ 35] [ 32] [6213544001656914=491212015691855] +19:51:16 [ 37] [ 12] [507901262078] +19:51:16 [ 38] [ 6] [463313] +19:51:16 [ 39] [ 2] [00] +19:51:16 [ 41] [ 8] [03206001] +19:51:16 [ 49] [ 3] [418] +19:51:16 [ 54] [ 40] [0001418C0000181701600002418C000018170160] +19:51:16 ============================================================================ +19:51:16 Sending to : +19:51:16 ============================================================================ +19:51:16 + + +waiting on router queue for slot.... +19:51:17 ============================================================================ +19:51:17 Slot Id : <340> +19:51:17 Transaction Type : RESPONSE +19:51:17 Received From : +19:51:17 ============================================================================ +19:51:17 FNo. Len. Field Value +19:51:17 ============================================================================ +19:51:17 [ 1] [ 4] [0210] +19:51:17 [ 2] [ 16] [6213544001656914] +19:51:17 [ 3] [ 6] [010000] +19:51:17 [ 4] [ 12] [000010000000] +19:51:17 [ 7] [ 10] [0320194904] +19:51:17 [ 11] [ 6] [956600] +19:51:17 [ 12] [ 6] [194904] +19:51:17 [ 13] [ 4] [0320] +19:51:17 [ 15] [ 4] [0320] +19:51:17 [ 18] [ 4] [6011] +19:51:17 [ 19] [ 3] [418] +19:51:17 [ 32] [ 6] [668899] +19:51:17 [ 35] [ 32] [6213544001656914=491212015691855] +19:51:17 [ 37] [ 12] [507901262078] +19:51:17 [ 38] [ 6] [463313] +19:51:17 [ 39] [ 2] [00] +19:51:17 [ 41] [ 8] [03206001] +19:51:17 [ 49] [ 3] [418] +19:51:17 [ 54] [ 40] [0001418C0000181701600002418C000018170160] +19:51:17 ============================================================================ +19:51:17 Calculate Source COMM Id = 4 +19:51:17 ============================================================================ +19:51:17 + + +waiting on router queue for slot.... +19:51:23 ============================================================================ +19:51:23 Slot Id : <373> +19:51:23 Transaction Type : REQUEST +19:51:23 Received From : +19:51:23 ============================================================================ +19:51:23 FNo. Len. Field Value +19:51:23 ============================================================================ +19:51:23 [ 1] [ 4] [0800] +19:51:23 [ 7] [ 10] [0320124912] +19:51:23 [ 11] [ 6] [051407] +19:51:23 [ 37] [ 12] [57919051407] +19:51:23 [ 70] [ 3] [301] +19:51:23 ============================================================================ +19:51:23 + + +waiting on router queue for slot.... +19:51:23 Sending to : +19:51:23 ============================================================================ +19:51:23 ============================================================================ +19:51:23 Slot Id : <373> +19:51:23 Transaction Type : RESPONSE +19:51:23 Received From : +19:51:23 ============================================================================ +19:51:23 FNo. Len. Field Value +19:51:23 ============================================================================ +19:51:23 [ 1] [ 4] [0810] +19:51:23 [ 7] [ 10] [0320124912] +19:51:23 [ 11] [ 6] [051407] +19:51:23 [ 37] [ 12] [579190514070] +19:51:23 [ 39] [ 2] [00] +19:51:23 [ 70] [ 3] [810] +19:51:23 ============================================================================ +19:51:23 Calculate Source COMM Id = 4 +19:51:23 ============================================================================ +19:51:23 + + +waiting on router queue for slot.... +19:51:26 ============================================================================ +19:51:26 Slot Id : <345> +19:51:26 Transaction Type : REQUEST +19:51:26 Received From : +19:51:26 ============================================================================ +19:51:26 FNo. Len. Field Value +19:51:26 ============================================================================ +19:51:26 [ 1] [ 4] [0800] +19:51:26 [ 7] [ 10] [0320125033] +19:51:26 [ 11] [ 6] [158056] +19:51:26 [ 70] [ 3] [301] +19:51:26 ============================================================================ +19:51:26 + + +waiting on router queue for slot.... +19:51:26 Sending to : +19:51:26 ============================================================================ +19:51:26 ============================================================================ +19:51:26 Slot Id : <345> +19:51:26 Transaction Type : RESPONSE +19:51:26 Received From : +19:51:26 ============================================================================ +19:51:26 FNo. Len. Field Value +19:51:26 ============================================================================ +19:51:26 [ 1] [ 4] [0810] +19:51:26 [ 7] [ 10] [0320125033] +19:51:26 [ 11] [ 6] [158056] +19:51:26 [ 39] [ 2] [00] +19:51:26 [ 70] [ 3] [301] +19:51:26 ============================================================================ +19:51:26 Calculate Source COMM Id = 2 +19:51:26 ============================================================================ +19:51:26 + + +waiting on router queue for slot.... +19:51:31 ============================================================================ +19:51:31 Slot Id : <324> +19:51:31 Transaction Type : REQUEST +19:51:31 Received From : +19:51:31 ============================================================================ +19:51:31 FNo. Len. Field Value +19:51:31 ============================================================================ +19:51:31 [ 1] [ 4] [0800] +19:51:31 [ 7] [ 10] [0320195117] +19:51:31 [ 11] [ 6] [089875] +19:51:31 [ 37] [ 12] [507919089875] +19:51:31 [ 70] [ 3] [ ] +19:51:31 ============================================================================ +19:51:31 + + +waiting on router queue for slot.... +19:51:31 Sending to : +19:51:31 ============================================================================ +19:51:31 ============================================================================ +19:51:31 Slot Id : <324> +19:51:31 Transaction Type : RESPONSE +19:51:31 Received From : +19:51:31 ============================================================================ +19:51:31 FNo. Len. Field Value +19:51:31 ============================================================================ +19:51:31 [ 1] [ 4] [0810] +19:51:31 [ 7] [ 10] [0320195117] +19:51:31 [ 11] [ 6] [089875] +19:51:31 [ 37] [ 12] [507919089875] +19:51:31 [ 39] [ 2] [91] +19:51:31 [ 70] [ 3] [ ] +19:51:31 ============================================================================ +19:51:31 Calculate Source COMM Id = 3 +19:51:31 ============================================================================ +19:51:31 + + +waiting on router queue for slot.... +19:51:33 ============================================================================ +19:51:33 Slot Id : <353> +19:51:33 Transaction Type : REQUEST +19:51:33 Received From : +19:51:33 ============================================================================ +19:51:33 FNo. Len. Field Value +19:51:33 ============================================================================ +19:51:33 [ 1] [ 4] [0200] +19:51:33 [ 2] [ 16] [6688990102978200] +19:51:33 [ 3] [ 6] [010000] +19:51:33 [ 4] [ 12] [000010000000] +19:51:33 [ 7] [ 10] [0320125039] +19:51:33 [ 11] [ 6] [271492] +19:51:33 [ 12] [ 6] [195039] +19:51:33 [ 13] [ 4] [0320] +19:51:33 [ 14] [ 4] [4211] +19:51:33 [ 15] [ 4] [0320] +19:51:33 [ 18] [ 4] [6011] +19:51:33 [ 19] [ 3] [418] +19:51:33 [ 22] [ 3] [021] +19:51:33 [ 25] [ 2] [01] +19:51:33 [ 28] [ 9] [D00002000] +19:51:33 [ 32] [ 6] [180893] +19:51:33 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:51:33 [ 37] [ 12] [507912271492] +19:51:33 [ 41] [ 8] [0466PSLB] +19:51:33 [ 42] [ 15] [999999 ] +19:51:33 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:51:33 [ 49] [ 3] [418] +19:51:33 [ 52] [ 16] [280086D660CA5EB4] +19:51:33 ============================================================================ +19:51:33 + + +waiting on router queue for slot.... +19:51:33 Sending to : +19:51:33 ============================================================================ +19:51:33 Sending to : +19:51:33 ============================================================================ +19:51:33 ============================================================================ +19:51:33 Slot Id : <353> +19:51:33 Transaction Type : REQUEST +19:51:33 Received From : +19:51:33 ============================================================================ +19:51:33 FNo. Len. Field Value +19:51:33 ============================================================================ +19:51:33 [ 1] [ 4] [0200] +19:51:33 [ 2] [ 16] [6688990102978200] +19:51:33 [ 3] [ 6] [010000] +19:51:33 [ 4] [ 12] [000010000000] +19:51:33 [ 7] [ 10] [0320125039] +19:51:33 [ 11] [ 6] [271492] +19:51:33 [ 12] [ 6] [195039] +19:51:33 [ 13] [ 4] [0320] +19:51:33 [ 14] [ 4] [4211] +19:51:33 [ 15] [ 4] [0320] +19:51:33 [ 18] [ 4] [6011] +19:51:33 [ 19] [ 3] [418] +19:51:33 [ 22] [ 3] [021] +19:51:33 [ 25] [ 2] [01] +19:51:33 [ 28] [ 9] [D00002000] +19:51:33 [ 32] [ 6] [180893] +19:51:33 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:51:33 [ 37] [ 12] [507912271492] +19:51:33 [ 41] [ 8] [0466PSLB] +19:51:33 [ 42] [ 15] [999999 ] +19:51:33 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:51:33 [ 49] [ 3] [418] +19:51:33 [ 52] [ 16] [280086D660CA5EB4] +19:51:33 ============================================================================ +19:51:33 + + +waiting on router queue for slot.... +19:51:33 Sending to : +19:51:33 ============================================================================ +19:51:33 ============================================================================ +19:51:33 Slot Id : <353> +19:51:33 Transaction Type : REQUEST +19:51:33 Received From : +19:51:33 ============================================================================ +19:51:33 FNo. Len. Field Value +19:51:33 ============================================================================ +19:51:33 [ 1] [ 4] [0200] +19:51:33 [ 2] [ 16] [6688990102978200] +19:51:33 [ 3] [ 6] [010000] +19:51:33 [ 4] [ 12] [000010000000] +19:51:33 [ 7] [ 10] [0320125039] +19:51:33 [ 11] [ 6] [271492] +19:51:33 [ 12] [ 6] [195039] +19:51:33 [ 13] [ 4] [0320] +19:51:33 [ 14] [ 4] [4211] +19:51:33 [ 15] [ 4] [0320] +19:51:33 [ 18] [ 4] [6011] +19:51:33 [ 19] [ 3] [418] +19:51:33 [ 22] [ 3] [021] +19:51:33 [ 25] [ 2] [01] +19:51:33 [ 28] [ 9] [D00002000] +19:51:33 [ 32] [ 6] [180893] +19:51:33 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:51:33 [ 37] [ 12] [507912271492] +19:51:33 [ 41] [ 8] [0466PSLB] +19:51:33 [ 42] [ 15] [999999 ] +19:51:33 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:51:33 [ 49] [ 3] [418] +19:51:33 [ 52] [ 16] [F79007A0D28F8E58] +19:51:33 ============================================================================ +19:51:33 + + +waiting on router queue for slot.... +19:51:33 Sending to : <0> +19:51:33 ============================================================================ +19:51:33 ============================================================================ +19:51:33 Slot Id : <353> +19:51:33 Transaction Type : RESPONSE +19:51:33 Received From : +19:51:33 ============================================================================ +19:51:33 FNo. Len. Field Value +19:51:33 ============================================================================ +19:51:33 [ 1] [ 4] [0210] +19:51:33 [ 2] [ 16] [6688990102978200] +19:51:33 [ 3] [ 6] [010000] +19:51:33 [ 4] [ 12] [000010000000] +19:51:33 [ 7] [ 10] [0320125039] +19:51:33 [ 11] [ 6] [271492] +19:51:33 [ 12] [ 6] [195039] +19:51:33 [ 13] [ 4] [0320] +19:51:33 [ 15] [ 4] [0320] +19:51:33 [ 18] [ 4] [6011] +19:51:33 [ 19] [ 3] [418] +19:51:33 [ 22] [ 3] [021] +19:51:33 [ 32] [ 6] [180893] +19:51:33 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:51:33 [ 37] [ 12] [507912271492] +19:51:33 [ 39] [ 2] [14] +19:51:33 [ 41] [ 8] [0466PSLB] +19:51:33 [ 49] [ 3] [418] +19:51:33 ============================================================================ +19:51:33 Sending to : +19:51:33 ============================================================================ +19:51:33 + + +waiting on router queue for slot.... +19:51:34 ============================================================================ +19:51:34 Slot Id : <353> +19:51:34 Transaction Type : RESPONSE +19:51:34 Received From : +19:51:34 ============================================================================ +19:51:34 FNo. Len. Field Value +19:51:34 ============================================================================ +19:51:34 [ 1] [ 4] [0210] +19:51:34 [ 2] [ 16] [6688990102978200] +19:51:34 [ 3] [ 6] [010000] +19:51:34 [ 4] [ 12] [000010000000] +19:51:34 [ 7] [ 10] [0320125039] +19:51:34 [ 11] [ 6] [271492] +19:51:34 [ 12] [ 6] [195039] +19:51:34 [ 13] [ 4] [0320] +19:51:34 [ 15] [ 4] [0320] +19:51:34 [ 18] [ 4] [6011] +19:51:34 [ 19] [ 3] [418] +19:51:34 [ 22] [ 3] [021] +19:51:34 [ 32] [ 6] [180893] +19:51:34 [ 35] [ 37] [6688990102978200=42111231820055200000] +19:51:34 [ 37] [ 12] [507912271492] +19:51:34 [ 39] [ 2] [14] +19:51:34 [ 41] [ 8] [0466PSLB] +19:51:34 [ 49] [ 3] [418] +19:51:34 ============================================================================ +19:51:34 Calculate Source COMM Id = 2 +19:51:34 ============================================================================ +19:51:34 + + +waiting on router queue for slot.... +19:51:42 ============================================================================ +19:51:42 Slot Id : <382> +19:51:42 Transaction Type : REQUEST +19:51:42 Received From : +19:51:42 ============================================================================ +19:51:42 FNo. Len. Field Value +19:51:42 ============================================================================ +19:51:42 [ 1] [ 4] [0800] +19:51:42 [ 7] [ 10] [0321030330] +19:51:42 [ 11] [ 6] [200330] +19:51:42 [ 37] [ 12] [57920200330] +19:51:42 [ 70] [ 3] [301] +19:51:42 ============================================================================ +19:51:42 + + +waiting on router queue for slot.... +19:51:42 Sending to : +19:51:42 ============================================================================ +19:51:42 ============================================================================ +19:51:42 Slot Id : <382> +19:51:42 Transaction Type : RESPONSE +19:51:42 Received From : +19:51:42 ============================================================================ +19:51:42 FNo. Len. Field Value +19:51:42 ============================================================================ +19:51:42 [ 1] [ 4] [0810] +19:51:42 [ 7] [ 10] [0321030330] +19:51:42 [ 11] [ 6] [200330] +19:51:42 [ 37] [ 12] [579202003300] +19:51:42 [ 39] [ 2] [00] +19:51:42 [ 70] [ 3] [810] +19:51:42 ============================================================================ +19:51:42 Calculate Source COMM Id = 6 +19:51:42 ============================================================================ +19:51:42 + + +waiting on router queue for slot.... +19:51:43 ============================================================================ +19:51:43 Slot Id : <363> +19:51:43 Transaction Type : REQUEST +19:51:43 Received From : +19:51:43 ============================================================================ +19:51:43 FNo. Len. Field Value +19:51:43 ============================================================================ +19:51:43 [ 1] [ 4] [0800] +19:51:43 [ 7] [ 10] [0320125138] +19:51:43 [ 11] [ 6] [013891] +19:51:43 [ 37] [ 12] [507919013891] +19:51:43 [ 70] [ 3] [001] +19:51:43 ============================================================================ +19:51:43 + + +waiting on router queue for slot.... +19:51:43 Sending to : +19:51:43 ============================================================================ +19:51:43 ============================================================================ +19:51:43 Slot Id : <363> +19:51:43 Transaction Type : RESPONSE +19:51:43 Received From : +19:51:43 ============================================================================ +19:51:43 FNo. Len. Field Value +19:51:43 ============================================================================ +19:51:43 [ 1] [ 4] [0810] +19:51:43 [ 7] [ 10] [0320125138] +19:51:43 [ 11] [ 6] [013891] +19:51:43 [ 37] [ 12] [507919013891] +19:51:43 [ 39] [ 2] [00] +19:51:43 [ 70] [ 3] [001] +19:51:43 ============================================================================ +19:51:43 Calculate Source COMM Id = 0 +19:51:43 ============================================================================ +19:51:43 + + +waiting on router queue for slot.... +19:51:48 ============================================================================ +19:51:48 Slot Id : <344> +19:51:48 Transaction Type : REQUEST +19:51:48 Received From : +19:51:48 ============================================================================ +19:51:48 FNo. Len. Field Value +19:51:48 ============================================================================ +19:51:48 [ 1] [ 4] [0800] +19:51:48 [ 7] [ 10] [0320125055] +19:51:48 [ 11] [ 6] [158057] +19:51:48 [ 70] [ 3] [301] +19:51:48 ============================================================================ +19:51:48 + + +waiting on router queue for slot.... +19:51:48 Sending to : +19:51:48 ============================================================================ +19:51:48 ============================================================================ +19:51:48 Slot Id : <344> +19:51:48 Transaction Type : RESPONSE +19:51:48 Received From : +19:51:48 ============================================================================ +19:51:48 FNo. Len. Field Value +19:51:48 ============================================================================ +19:51:48 [ 1] [ 4] [0810] +19:51:48 [ 7] [ 10] [0320125055] +19:51:48 [ 11] [ 6] [158057] +19:51:48 [ 39] [ 2] [00] +19:51:48 [ 70] [ 3] [301] +19:51:48 ============================================================================ +19:51:48 Calculate Source COMM Id = 2 +19:51:48 ============================================================================ +19:51:48 + + +waiting on router queue for slot.... +19:51:54 ============================================================================ +19:51:54 Slot Id : <355> +19:51:54 Transaction Type : REQUEST +19:51:54 Received From : +19:51:54 ============================================================================ +19:51:54 FNo. Len. Field Value +19:51:54 ============================================================================ +19:51:54 [ 1] [ 4] [0200] +19:51:54 [ 2] [ 16] [6213541000281777] +19:51:54 [ 3] [ 6] [010000] +19:51:54 [ 4] [ 12] [000100000000] +19:51:54 [ 7] [ 10] [0320125100] +19:51:54 [ 11] [ 6] [271495] +19:51:54 [ 12] [ 6] [195100] +19:51:54 [ 13] [ 4] [0320] +19:51:54 [ 14] [ 4] [4912] +19:51:54 [ 15] [ 4] [0320] +19:51:54 [ 18] [ 4] [6011] +19:51:54 [ 19] [ 3] [418] +19:51:54 [ 22] [ 3] [021] +19:51:54 [ 25] [ 2] [01] +19:51:54 [ 28] [ 9] [D00002000] +19:51:54 [ 32] [ 6] [180893] +19:51:54 [ 35] [ 32] [6213541000281777=491212018177176] +19:51:54 [ 37] [ 12] [507912271495] +19:51:54 [ 41] [ 8] [0441VT52] +19:51:54 [ 42] [ 15] [999999 ] +19:51:54 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:51:54 [ 49] [ 3] [418] +19:51:54 [ 52] [ 16] [9C548B4C94AD5BD8] +19:51:54 ============================================================================ +19:51:54 + + +waiting on router queue for slot.... +19:51:54 Sending to : +19:51:54 ============================================================================ +19:51:54 Sending to : +19:51:54 ============================================================================ +19:51:54 ============================================================================ +19:51:54 Slot Id : <355> +19:51:54 Transaction Type : REQUEST +19:51:54 Received From : +19:51:54 ============================================================================ +19:51:54 FNo. Len. Field Value +19:51:54 ============================================================================ +19:51:54 [ 1] [ 4] [0200] +19:51:54 [ 2] [ 16] [6213541000281777] +19:51:54 [ 3] [ 6] [010000] +19:51:54 [ 4] [ 12] [000100000000] +19:51:54 [ 7] [ 10] [0320125100] +19:51:54 [ 11] [ 6] [271495] +19:51:54 [ 12] [ 6] [195100] +19:51:54 [ 13] [ 4] [0320] +19:51:54 [ 14] [ 4] [4912] +19:51:54 [ 15] [ 4] [0320] +19:51:54 [ 18] [ 4] [6011] +19:51:54 [ 19] [ 3] [418] +19:51:54 [ 22] [ 3] [021] +19:51:54 [ 25] [ 2] [01] +19:51:54 [ 28] [ 9] [D00002000] +19:51:54 [ 32] [ 6] [180893] +19:51:54 [ 35] [ 32] [6213541000281777=491212018177176] +19:51:54 [ 37] [ 12] [507912271495] +19:51:54 [ 41] [ 8] [0441VT52] +19:51:54 [ 42] [ 15] [999999 ] +19:51:54 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:51:54 [ 49] [ 3] [418] +19:51:54 [ 52] [ 16] [9C548B4C94AD5BD8] +19:51:54 ============================================================================ +19:51:54 + + +waiting on router queue for slot.... +19:51:54 Sending to : +19:51:54 ============================================================================ +19:51:54 ============================================================================ +19:51:54 Slot Id : <355> +19:51:54 Transaction Type : REQUEST +19:51:54 Received From : +19:51:54 ============================================================================ +19:51:54 FNo. Len. Field Value +19:51:54 ============================================================================ +19:51:54 [ 1] [ 4] [0200] +19:51:54 [ 2] [ 16] [6213541000281777] +19:51:54 [ 3] [ 6] [010000] +19:51:54 [ 4] [ 12] [000100000000] +19:51:54 [ 7] [ 10] [0320125100] +19:51:54 [ 11] [ 6] [271495] +19:51:54 [ 12] [ 6] [195100] +19:51:54 [ 13] [ 4] [0320] +19:51:54 [ 14] [ 4] [4912] +19:51:54 [ 15] [ 4] [0320] +19:51:54 [ 18] [ 4] [6011] +19:51:54 [ 19] [ 3] [418] +19:51:54 [ 22] [ 3] [021] +19:51:54 [ 25] [ 2] [01] +19:51:54 [ 28] [ 9] [D00002000] +19:51:54 [ 32] [ 6] [180893] +19:51:54 [ 35] [ 32] [6213541000281777=491212018177176] +19:51:54 [ 37] [ 12] [507912271495] +19:51:54 [ 41] [ 8] [0441VT52] +19:51:54 [ 42] [ 15] [999999 ] +19:51:54 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:51:54 [ 49] [ 3] [418] +19:51:54 [ 52] [ 16] [C800533275ADBEA5] +19:51:54 ============================================================================ +19:51:54 + + +waiting on router queue for slot.... +19:51:54 Sending to : <0> +19:51:54 ============================================================================ +19:51:55 ============================================================================ +19:51:55 Slot Id : <355> +19:51:55 Transaction Type : RESPONSE +19:51:55 Received From : +19:51:55 ============================================================================ +19:51:55 FNo. Len. Field Value +19:51:55 ============================================================================ +19:51:55 [ 1] [ 4] [0210] +19:51:55 [ 2] [ 16] [6213541000281777] +19:51:55 [ 3] [ 6] [010000] +19:51:55 [ 4] [ 12] [000100000000] +19:51:55 [ 7] [ 10] [0320125100] +19:51:55 [ 11] [ 6] [271495] +19:51:55 [ 12] [ 6] [195100] +19:51:55 [ 13] [ 4] [0320] +19:51:55 [ 15] [ 4] [0320] +19:51:55 [ 18] [ 4] [6011] +19:51:55 [ 19] [ 3] [418] +19:51:55 [ 32] [ 6] [180893] +19:51:55 [ 35] [ 32] [6213541000281777=491212018177176] +19:51:55 [ 37] [ 12] [507912271495] +19:51:55 [ 38] [ 6] [553646] +19:51:55 [ 39] [ 2] [00] +19:51:55 [ 41] [ 8] [0441VT52] +19:51:55 [ 49] [ 3] [418] +19:51:55 [ 54] [ 40] [0001418C0006784447700002418C000678444770] +19:51:55 ============================================================================ +19:51:55 Sending to : +19:51:55 ============================================================================ +19:51:55 + + +waiting on router queue for slot.... +19:51:57 ============================================================================ +19:51:57 Slot Id : <355> +19:51:57 Transaction Type : RESPONSE +19:51:57 Received From : +19:51:57 ============================================================================ +19:51:57 FNo. Len. Field Value +19:51:57 ============================================================================ +19:51:57 [ 1] [ 4] [0210] +19:51:57 [ 2] [ 16] [6213541000281777] +19:51:57 [ 3] [ 6] [010000] +19:51:57 [ 4] [ 12] [000100000000] +19:51:57 [ 7] [ 10] [0320125100] +19:51:57 [ 11] [ 6] [271495] +19:51:57 [ 12] [ 6] [195100] +19:51:57 [ 13] [ 4] [0320] +19:51:57 [ 15] [ 4] [0320] +19:51:57 [ 18] [ 4] [6011] +19:51:57 [ 19] [ 3] [418] +19:51:57 [ 32] [ 6] [180893] +19:51:57 [ 35] [ 32] [6213541000281777=491212018177176] +19:51:57 [ 37] [ 12] [507912271495] +19:51:57 [ 38] [ 6] [553646] +19:51:57 [ 39] [ 2] [00] +19:51:57 [ 41] [ 8] [0441VT52] +19:51:57 [ 49] [ 3] [418] +19:51:57 [ 54] [ 40] [0001418C0006784447700002418C000678444770] +19:51:57 ============================================================================ +19:51:57 Calculate Source COMM Id = 2 +19:51:57 ============================================================================ +19:51:57 + + +waiting on router queue for slot.... +19:52:05 ============================================================================ +19:52:05 Slot Id : <370> +19:52:05 Transaction Type : REQUEST +19:52:05 Received From : +19:52:05 ============================================================================ +19:52:05 FNo. Len. Field Value +19:52:05 ============================================================================ +19:52:05 [ 1] [ 4] [0800] +19:52:05 [ 2] [ 5] [02531] +19:52:05 [ 3] [ 6] [579198] +19:52:05 [ 7] [ 10] [0320125205] +19:52:05 [ 11] [ 6] [807565] +19:52:05 [ 15] [ 10] [0320125205] +19:52:05 [ 37] [ 11] [57919807565] +19:52:05 [ 70] [ 3] [001] +19:52:05 ============================================================================ +19:52:05 + + +waiting on router queue for slot.... +19:52:05 ============================================================================ +19:52:05 Slot Id : <370> +19:52:05 Transaction Type : RESPONSE +19:52:05 Received From : +19:52:05 ============================================================================ +19:52:05 FNo. Len. Field Value +19:52:05 ============================================================================ +19:52:05 [ 1] [ 4] [0810] +19:52:05 [ 7] [ 10] [0320125205] +19:52:05 [ 11] [ 6] [807565] +19:52:05 [ 15] [ 4] [0320] +19:52:05 [ 37] [ 12] [57919807565] +19:52:05 [ 39] [ 2] [00] +19:52:05 [ 70] [ 3] [001] +19:52:05 ============================================================================ +19:52:05 Sending to : +19:52:05 ============================================================================ +19:52:05 + + +waiting on router queue for slot.... +19:52:10 ============================================================================ +19:52:10 Slot Id : <358> +19:52:10 Transaction Type : REQUEST +19:52:10 Received From : +19:52:10 ============================================================================ +19:52:10 FNo. Len. Field Value +19:52:10 ============================================================================ +19:52:10 [ 1] [ 4] [0800] +19:52:10 [ 7] [ 10] [0320125116] +19:52:10 [ 11] [ 6] [158058] +19:52:10 [ 70] [ 3] [301] +19:52:10 ============================================================================ +19:52:10 + + +waiting on router queue for slot.... +19:52:10 Sending to : +19:52:10 ============================================================================ +19:52:10 ============================================================================ +19:52:10 Slot Id : <358> +19:52:10 Transaction Type : RESPONSE +19:52:10 Received From : +19:52:10 ============================================================================ +19:52:10 FNo. Len. Field Value +19:52:10 ============================================================================ +19:52:10 [ 1] [ 4] [0810] +19:52:10 [ 7] [ 10] [0320125116] +19:52:10 [ 11] [ 6] [158058] +19:52:10 [ 39] [ 2] [00] +19:52:10 [ 70] [ 3] [301] +19:52:10 ============================================================================ +19:52:10 Calculate Source COMM Id = 2 +19:52:10 ============================================================================ +19:52:10 + + +waiting on router queue for slot.... +19:52:26 ============================================================================ +19:52:26 Slot Id : <379> +19:52:26 Transaction Type : REQUEST +19:52:26 Received From : +19:52:26 ============================================================================ +19:52:26 FNo. Len. Field Value +19:52:26 ============================================================================ +19:52:26 [ 1] [ 4] [0800] +19:52:26 [ 7] [ 10] [0320125132] +19:52:26 [ 11] [ 6] [158059] +19:52:26 [ 70] [ 3] [301] +19:52:26 ============================================================================ +19:52:26 + + +waiting on router queue for slot.... +19:52:26 Sending to : +19:52:26 ============================================================================ +19:52:26 ============================================================================ +19:52:26 Slot Id : <379> +19:52:26 Transaction Type : RESPONSE +19:52:26 Received From : +19:52:26 ============================================================================ +19:52:26 FNo. Len. Field Value +19:52:26 ============================================================================ +19:52:26 [ 1] [ 4] [0810] +19:52:26 [ 7] [ 10] [0320125132] +19:52:26 [ 11] [ 6] [158059] +19:52:26 [ 39] [ 2] [00] +19:52:26 [ 70] [ 3] [301] +19:52:26 ============================================================================ +19:52:26 Calculate Source COMM Id = 2 +19:52:26 ============================================================================ +19:52:26 + + +waiting on router queue for slot.... +19:52:41 ============================================================================ +19:52:41 Slot Id : <369> +19:52:41 Transaction Type : REQUEST +19:52:41 Received From : +19:52:41 ============================================================================ +19:52:41 FNo. Len. Field Value +19:52:41 ============================================================================ +19:52:41 [ 1] [ 4] [0800] +19:52:41 [ 7] [ 10] [0320125147] +19:52:41 [ 11] [ 6] [158060] +19:52:41 [ 70] [ 3] [301] +19:52:41 ============================================================================ +19:52:41 + + +waiting on router queue for slot.... +19:52:41 Sending to : +19:52:41 ============================================================================ +19:52:41 ============================================================================ +19:52:41 Slot Id : <369> +19:52:41 Transaction Type : RESPONSE +19:52:41 Received From : +19:52:41 ============================================================================ +19:52:41 FNo. Len. Field Value +19:52:41 ============================================================================ +19:52:41 [ 1] [ 4] [0810] +19:52:41 [ 7] [ 10] [0320125147] +19:52:41 [ 11] [ 6] [158060] +19:52:41 [ 39] [ 2] [00] +19:52:41 [ 70] [ 3] [301] +19:52:41 ============================================================================ +19:52:41 Calculate Source COMM Id = 2 +19:52:41 ============================================================================ +19:52:41 + + +waiting on router queue for slot.... +19:52:42 ============================================================================ +19:52:42 Slot Id : <360> +19:52:42 Transaction Type : REQUEST +19:52:42 Received From : +19:52:42 ============================================================================ +19:52:42 FNo. Len. Field Value +19:52:42 ============================================================================ +19:52:42 [ 1] [ 4] [0200] +19:52:42 [ 2] [ 16] [6213544000678067] +19:52:42 [ 3] [ 6] [302000] +19:52:42 [ 7] [ 10] [0320125148] +19:52:42 [ 11] [ 6] [271498] +19:52:42 [ 12] [ 6] [195148] +19:52:42 [ 13] [ 4] [0320] +19:52:42 [ 14] [ 4] [4912] +19:52:42 [ 15] [ 4] [0320] +19:52:42 [ 18] [ 4] [6011] +19:52:42 [ 19] [ 3] [418] +19:52:42 [ 22] [ 3] [021] +19:52:42 [ 25] [ 2] [01] +19:52:42 [ 32] [ 6] [180893] +19:52:42 [ 35] [ 32] [6213544000678067=491212017806384] +19:52:42 [ 37] [ 12] [507912271498] +19:52:42 [ 41] [ 8] [0102SAPA] +19:52:42 [ 42] [ 15] [999999 ] +19:52:42 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +19:52:42 [ 49] [ 3] [418] +19:52:42 [ 52] [ 16] [89658698CF933462] +19:52:42 ============================================================================ +19:52:42 + + +waiting on router queue for slot.... +19:52:42 Sending to : +19:52:42 ============================================================================ +19:52:42 Sending to : +19:52:42 ============================================================================ +19:52:42 ============================================================================ +19:52:42 Slot Id : <360> +19:52:42 Transaction Type : REQUEST +19:52:42 Received From : +19:52:42 ============================================================================ +19:52:42 FNo. Len. Field Value +19:52:42 ============================================================================ +19:52:42 [ 1] [ 4] [0200] +19:52:42 [ 2] [ 16] [6213544000678067] +19:52:42 [ 3] [ 6] [302000] +19:52:42 [ 7] [ 10] [0320125148] +19:52:42 [ 11] [ 6] [271498] +19:52:42 [ 12] [ 6] [195148] +19:52:42 [ 13] [ 4] [0320] +19:52:42 [ 14] [ 4] [4912] +19:52:42 [ 15] [ 4] [0320] +19:52:42 [ 18] [ 4] [6011] +19:52:42 [ 19] [ 3] [418] +19:52:42 [ 22] [ 3] [021] +19:52:42 [ 25] [ 2] [01] +19:52:42 [ 32] [ 6] [180893] +19:52:42 [ 35] [ 32] [6213544000678067=491212017806384] +19:52:42 [ 37] [ 12] [507912271498] +19:52:42 [ 41] [ 8] [0102SAPA] +19:52:42 [ 42] [ 15] [999999 ] +19:52:42 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +19:52:42 [ 49] [ 3] [418] +19:52:42 [ 52] [ 16] [89658698CF933462] +19:52:42 ============================================================================ +19:52:42 + + +waiting on router queue for slot.... +19:52:42 Sending to : +19:52:42 ============================================================================ +19:52:42 ============================================================================ +19:52:42 Slot Id : <360> +19:52:42 Transaction Type : REQUEST +19:52:42 Received From : +19:52:42 ============================================================================ +19:52:42 FNo. Len. Field Value +19:52:42 ============================================================================ +19:52:42 [ 1] [ 4] [0200] +19:52:42 [ 2] [ 16] [6213544000678067] +19:52:42 [ 3] [ 6] [302000] +19:52:42 [ 7] [ 10] [0320125148] +19:52:42 [ 11] [ 6] [271498] +19:52:42 [ 12] [ 6] [195148] +19:52:42 [ 13] [ 4] [0320] +19:52:42 [ 14] [ 4] [4912] +19:52:42 [ 15] [ 4] [0320] +19:52:42 [ 18] [ 4] [6011] +19:52:42 [ 19] [ 3] [418] +19:52:42 [ 22] [ 3] [021] +19:52:42 [ 25] [ 2] [01] +19:52:42 [ 32] [ 6] [180893] +19:52:42 [ 35] [ 32] [6213544000678067=491212017806384] +19:52:42 [ 37] [ 12] [507912271498] +19:52:42 [ 41] [ 8] [0102SAPA] +19:52:42 [ 42] [ 15] [999999 ] +19:52:42 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +19:52:42 [ 49] [ 3] [418] +19:52:42 [ 52] [ 16] [3F983C1589330794] +19:52:42 ============================================================================ +19:52:42 + + +waiting on router queue for slot.... +19:52:42 Sending to : <0> +19:52:42 ============================================================================ +19:52:43 ============================================================================ +19:52:43 Slot Id : <360> +19:52:43 Transaction Type : RESPONSE +19:52:43 Received From : +19:52:43 ============================================================================ +19:52:43 FNo. Len. Field Value +19:52:43 ============================================================================ +19:52:43 [ 1] [ 4] [0210] +19:52:43 [ 2] [ 16] [6213544000678067] +19:52:43 [ 3] [ 6] [302000] +19:52:43 [ 4] [ 12] [000000000000] +19:52:43 [ 7] [ 10] [0320125148] +19:52:43 [ 11] [ 6] [271498] +19:52:43 [ 12] [ 6] [195148] +19:52:43 [ 13] [ 4] [0320] +19:52:43 [ 15] [ 4] [0320] +19:52:43 [ 18] [ 4] [6011] +19:52:43 [ 19] [ 3] [418] +19:52:43 [ 32] [ 6] [180893] +19:52:43 [ 35] [ 32] [6213544000678067=491212017806384] +19:52:43 [ 37] [ 12] [507912271498] +19:52:43 [ 38] [ 6] [451947] +19:52:43 [ 39] [ 2] [00] +19:52:43 [ 41] [ 8] [0102SAPA] +19:52:43 [ 49] [ 3] [418] +19:52:43 [ 54] [ 40] [2001418C0004696486802002418C000469648680] +19:52:43 ============================================================================ +19:52:43 Sending to : +19:52:43 ============================================================================ +19:52:43 + + +waiting on router queue for slot.... +19:52:44 ============================================================================ +19:52:44 Slot Id : <360> +19:52:44 Transaction Type : RESPONSE +19:52:44 Received From : +19:52:44 ============================================================================ +19:52:44 FNo. Len. Field Value +19:52:44 ============================================================================ +19:52:44 [ 1] [ 4] [0210] +19:52:44 [ 2] [ 16] [6213544000678067] +19:52:44 [ 3] [ 6] [302000] +19:52:44 [ 4] [ 12] [000000000000] +19:52:44 [ 7] [ 10] [0320125148] +19:52:44 [ 11] [ 6] [271498] +19:52:44 [ 12] [ 6] [195148] +19:52:44 [ 13] [ 4] [0320] +19:52:44 [ 15] [ 4] [0320] +19:52:44 [ 18] [ 4] [6011] +19:52:44 [ 19] [ 3] [418] +19:52:44 [ 32] [ 6] [180893] +19:52:44 [ 35] [ 32] [6213544000678067=491212017806384] +19:52:44 [ 37] [ 12] [507912271498] +19:52:44 [ 38] [ 6] [451947] +19:52:44 [ 39] [ 2] [00] +19:52:44 [ 41] [ 8] [0102SAPA] +19:52:44 [ 49] [ 3] [418] +19:52:44 [ 54] [ 40] [2001418C0004696486802002418C000469648680] +19:52:44 ============================================================================ +19:52:44 Calculate Source COMM Id = 2 +19:52:44 ============================================================================ +19:52:44 + + +waiting on router queue for slot.... +19:52:45 ============================================================================ +19:52:45 Slot Id : <338> +19:52:45 Transaction Type : REQUEST +19:52:45 Received From : +19:52:45 ============================================================================ +19:52:45 FNo. Len. Field Value +19:52:45 ============================================================================ +19:52:45 [ 1] [ 4] [0200] +19:52:45 [ 2] [ 16] [6213545000162333] +19:52:45 [ 3] [ 6] [011000] +19:52:45 [ 4] [ 12] [000100000000] +19:52:45 [ 7] [ 10] [0320200030] +19:52:45 [ 11] [ 6] [240415] +19:52:45 [ 12] [ 6] [200030] +19:52:45 [ 13] [ 4] [0320] +19:52:45 [ 14] [ 4] [4912] +19:52:45 [ 15] [ 4] [0320] +19:52:45 [ 18] [ 4] [6011] +19:52:45 [ 22] [ 3] [900] +19:52:45 [ 25] [ 2] [02] +19:52:45 [ 28] [ 9] [D00002000] +19:52:45 [ 32] [ 6] [220699] +19:52:45 [ 35] [ 32] [6213545000162333=491212016233299] +19:52:45 [ 37] [ 12] [507900430291] +19:52:45 [ 41] [ 8] [01002100] +19:52:45 [ 42] [ 15] [APTRA ] +19:52:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:52:45 [ 49] [ 3] [418] +19:52:45 [ 52] [ 16] [A39AFB2638E37473] +19:52:45 ============================================================================ +19:52:45 + + +waiting on router queue for slot.... +19:52:45 Sending to : +19:52:45 ============================================================================ +19:52:45 Sending to : +19:52:45 ============================================================================ +19:52:45 ============================================================================ +19:52:45 Slot Id : <338> +19:52:45 Transaction Type : REQUEST +19:52:45 Received From : +19:52:45 ============================================================================ +19:52:45 FNo. Len. Field Value +19:52:45 ============================================================================ +19:52:45 [ 1] [ 4] [0200] +19:52:45 [ 2] [ 16] [6213545000162333] +19:52:45 [ 3] [ 6] [011000] +19:52:45 [ 4] [ 12] [000100000000] +19:52:45 [ 7] [ 10] [0320200030] +19:52:45 [ 11] [ 6] [240415] +19:52:45 [ 12] [ 6] [200030] +19:52:45 [ 13] [ 4] [0320] +19:52:45 [ 14] [ 4] [4912] +19:52:45 [ 15] [ 4] [0320] +19:52:45 [ 18] [ 4] [6011] +19:52:45 [ 22] [ 3] [900] +19:52:45 [ 25] [ 2] [02] +19:52:45 [ 28] [ 9] [D00002000] +19:52:45 [ 32] [ 6] [220699] +19:52:45 [ 35] [ 32] [6213545000162333=491212016233299] +19:52:45 [ 37] [ 12] [507900430291] +19:52:45 [ 41] [ 8] [01002100] +19:52:45 [ 42] [ 15] [APTRA ] +19:52:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:52:45 [ 49] [ 3] [418] +19:52:45 [ 52] [ 16] [A39AFB2638E37473] +19:52:45 ============================================================================ +19:52:45 + + +waiting on router queue for slot.... +19:52:45 Sending to : +19:52:45 ============================================================================ +19:52:45 ============================================================================ +19:52:45 Slot Id : <338> +19:52:45 Transaction Type : REQUEST +19:52:45 Received From : +19:52:45 ============================================================================ +19:52:45 FNo. Len. Field Value +19:52:45 ============================================================================ +19:52:45 [ 1] [ 4] [0200] +19:52:45 [ 2] [ 16] [6213545000162333] +19:52:45 [ 3] [ 6] [011000] +19:52:45 [ 4] [ 12] [000100000000] +19:52:45 [ 7] [ 10] [0320200030] +19:52:45 [ 11] [ 6] [240415] +19:52:45 [ 12] [ 6] [200030] +19:52:45 [ 13] [ 4] [0320] +19:52:45 [ 14] [ 4] [4912] +19:52:45 [ 15] [ 4] [0320] +19:52:45 [ 18] [ 4] [6011] +19:52:45 [ 22] [ 3] [900] +19:52:45 [ 25] [ 2] [02] +19:52:45 [ 28] [ 9] [D00002000] +19:52:45 [ 32] [ 6] [220699] +19:52:45 [ 35] [ 32] [6213545000162333=491212016233299] +19:52:45 [ 37] [ 12] [507900430291] +19:52:45 [ 41] [ 8] [01002100] +19:52:45 [ 42] [ 15] [APTRA ] +19:52:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:52:45 [ 49] [ 3] [418] +19:52:45 [ 52] [ 16] [8414F0AA7F92D600] +19:52:45 ============================================================================ +19:52:45 + + +waiting on router queue for slot.... +19:52:45 Sending to : <0> +19:52:45 ============================================================================ +19:52:46 ============================================================================ +19:52:46 Slot Id : <338> +19:52:46 Transaction Type : RESPONSE +19:52:46 Received From : +19:52:46 ============================================================================ +19:52:46 FNo. Len. Field Value +19:52:46 ============================================================================ +19:52:46 [ 1] [ 4] [0210] +19:52:46 [ 2] [ 16] [6213545000162333] +19:52:46 [ 3] [ 6] [011000] +19:52:46 [ 4] [ 12] [000100000000] +19:52:46 [ 7] [ 10] [0320200030] +19:52:46 [ 11] [ 6] [240415] +19:52:46 [ 12] [ 6] [200030] +19:52:46 [ 13] [ 4] [0320] +19:52:46 [ 15] [ 4] [0320] +19:52:46 [ 18] [ 4] [6011] +19:52:46 [ 32] [ 6] [220699] +19:52:46 [ 35] [ 32] [6213545000162333=491212016233299] +19:52:46 [ 37] [ 12] [507900430291] +19:52:46 [ 38] [ 6] [330560] +19:52:46 [ 39] [ 2] [00] +19:52:46 [ 41] [ 8] [01002100] +19:52:46 [ 49] [ 3] [418] +19:52:46 [ 54] [ 40] [1001418C0002602553261002418C000260255326] +19:52:46 ============================================================================ +19:52:46 Sending to : +19:52:46 ============================================================================ +19:52:46 + + +waiting on router queue for slot.... +19:52:47 ============================================================================ +19:52:47 Slot Id : <354> +19:52:47 Transaction Type : REQUEST +19:52:47 Received From : +19:52:47 ============================================================================ +19:52:47 FNo. Len. Field Value +19:52:47 ============================================================================ +19:52:47 [ 1] [ 4] [0800] +19:52:47 [ 7] [ 10] [0321030435] +19:52:47 [ 11] [ 6] [200435] +19:52:47 [ 37] [ 12] [57920200435] +19:52:47 [ 70] [ 3] [301] +19:52:47 ============================================================================ +19:52:47 + + +waiting on router queue for slot.... +19:52:47 Sending to : +19:52:47 ============================================================================ +19:52:47 ============================================================================ +19:52:47 Slot Id : <354> +19:52:47 Transaction Type : RESPONSE +19:52:47 Received From : +19:52:47 ============================================================================ +19:52:47 FNo. Len. Field Value +19:52:47 ============================================================================ +19:52:47 [ 1] [ 4] [0810] +19:52:47 [ 7] [ 10] [0321030435] +19:52:47 [ 11] [ 6] [200435] +19:52:47 [ 37] [ 12] [579202004350] +19:52:47 [ 39] [ 2] [00] +19:52:47 [ 70] [ 3] [810] +19:52:47 ============================================================================ +19:52:47 Calculate Source COMM Id = 6 +19:52:47 ============================================================================ +19:52:47 + + +waiting on router queue for slot.... +19:52:47 ============================================================================ +19:52:47 Slot Id : <338> +19:52:47 Transaction Type : RESPONSE +19:52:47 Received From : +19:52:47 ============================================================================ +19:52:47 FNo. Len. Field Value +19:52:47 ============================================================================ +19:52:47 [ 1] [ 4] [0210] +19:52:47 [ 2] [ 16] [6213545000162333] +19:52:47 [ 3] [ 6] [011000] +19:52:47 [ 4] [ 12] [000100000000] +19:52:47 [ 7] [ 10] [0320200030] +19:52:47 [ 11] [ 6] [240415] +19:52:47 [ 12] [ 6] [200030] +19:52:47 [ 13] [ 4] [0320] +19:52:47 [ 15] [ 4] [0320] +19:52:47 [ 18] [ 4] [6011] +19:52:47 [ 32] [ 6] [220699] +19:52:47 [ 35] [ 32] [6213545000162333=491212016233299] +19:52:47 [ 37] [ 12] [507900430291] +19:52:47 [ 38] [ 6] [330560] +19:52:47 [ 39] [ 2] [00] +19:52:47 [ 41] [ 8] [01002100] +19:52:47 [ 49] [ 3] [418] +19:52:47 [ 54] [ 40] [1001418C0002602553261002418C000260255326] +19:52:47 ============================================================================ +19:52:47 Calculate Source COMM Id = 1 +19:52:47 ============================================================================ +19:52:47 + + +waiting on router queue for slot.... +19:52:52 ============================================================================ +19:52:52 Slot Id : <396> +19:52:52 Transaction Type : REQUEST +19:52:52 Received From : +19:52:52 ============================================================================ +19:52:52 FNo. Len. Field Value +19:52:52 ============================================================================ +19:52:52 [ 1] [ 4] [0200] +19:52:52 [ 2] [ 16] [6213544000766896] +19:52:52 [ 3] [ 6] [300000] +19:52:52 [ 4] [ 12] [000000000000] +19:52:52 [ 7] [ 10] [0320195041] +19:52:52 [ 11] [ 6] [956625] +19:52:52 [ 12] [ 6] [195041] +19:52:52 [ 13] [ 4] [0320] +19:52:52 [ 15] [ 4] [0320] +19:52:52 [ 18] [ 4] [6011] +19:52:52 [ 19] [ 3] [418] +19:52:52 [ 22] [ 3] [021] +19:52:52 [ 25] [ 2] [01] +19:52:52 [ 28] [ 9] [D00000000] +19:52:52 [ 32] [ 6] [668899] +19:52:52 [ 35] [ 32] [6213544000766896=491212016689938] +19:52:52 [ 37] [ 12] [507901351222] +19:52:52 [ 41] [ 8] [03208001] +19:52:52 [ 42] [ 15] [APT ] +19:52:52 [ 43] [ 40] [ SOPBAO UNIT SAMNEUA LA] +19:52:52 [ 49] [ 3] [418] +19:52:52 [ 52] [ 16] [EB050F04D9C3CBEE] +19:52:52 ============================================================================ +19:52:52 + + +waiting on router queue for slot.... +19:52:52 Sending to : +19:52:52 ============================================================================ +19:52:52 Sending to : +19:52:52 ============================================================================ +19:52:52 ============================================================================ +19:52:52 Slot Id : <396> +19:52:52 Transaction Type : REQUEST +19:52:52 Received From : +19:52:52 ============================================================================ +19:52:52 FNo. Len. Field Value +19:52:52 ============================================================================ +19:52:52 [ 1] [ 4] [0200] +19:52:52 [ 2] [ 16] [6213544000766896] +19:52:52 [ 3] [ 6] [300000] +19:52:52 [ 4] [ 12] [000000000000] +19:52:52 [ 7] [ 10] [0320195041] +19:52:52 [ 11] [ 6] [956625] +19:52:52 [ 12] [ 6] [195041] +19:52:52 [ 13] [ 4] [0320] +19:52:52 [ 15] [ 4] [0320] +19:52:52 [ 18] [ 4] [6011] +19:52:52 [ 19] [ 3] [418] +19:52:52 [ 22] [ 3] [021] +19:52:52 [ 25] [ 2] [01] +19:52:52 [ 28] [ 9] [D00000000] +19:52:52 [ 32] [ 6] [668899] +19:52:52 [ 35] [ 32] [6213544000766896=491212016689938] +19:52:52 [ 37] [ 12] [507901351222] +19:52:52 [ 41] [ 8] [03208001] +19:52:52 [ 42] [ 15] [APT ] +19:52:52 [ 43] [ 40] [ SOPBAO UNIT SAMNEUA LA] +19:52:52 [ 49] [ 3] [418] +19:52:52 [ 52] [ 16] [EB050F04D9C3CBEE] +19:52:52 ============================================================================ +19:52:52 + + +waiting on router queue for slot.... +19:52:52 Sending to : +19:52:52 ============================================================================ +19:52:52 ============================================================================ +19:52:52 Slot Id : <396> +19:52:52 Transaction Type : REQUEST +19:52:52 Received From : +19:52:52 ============================================================================ +19:52:52 FNo. Len. Field Value +19:52:52 ============================================================================ +19:52:52 [ 1] [ 4] [0200] +19:52:52 [ 2] [ 16] [6213544000766896] +19:52:52 [ 3] [ 6] [300000] +19:52:52 [ 4] [ 12] [000000000000] +19:52:52 [ 7] [ 10] [0320195041] +19:52:52 [ 11] [ 6] [956625] +19:52:52 [ 12] [ 6] [195041] +19:52:52 [ 13] [ 4] [0320] +19:52:52 [ 15] [ 4] [0320] +19:52:52 [ 18] [ 4] [6011] +19:52:52 [ 19] [ 3] [418] +19:52:52 [ 22] [ 3] [021] +19:52:52 [ 25] [ 2] [01] +19:52:52 [ 28] [ 9] [D00000000] +19:52:52 [ 32] [ 6] [668899] +19:52:52 [ 35] [ 32] [6213544000766896=491212016689938] +19:52:52 [ 37] [ 12] [507901351222] +19:52:52 [ 41] [ 8] [03208001] +19:52:52 [ 42] [ 15] [APT ] +19:52:52 [ 43] [ 40] [ SOPBAO UNIT SAMNEUA LA] +19:52:52 [ 49] [ 3] [418] +19:52:52 [ 52] [ 16] [8313EE11103B8196] +19:52:52 ============================================================================ +19:52:52 + + +waiting on router queue for slot.... +19:52:52 Sending to : <0> +19:52:52 ============================================================================ +19:52:52 ============================================================================ +19:52:52 Slot Id : <396> +19:52:52 Transaction Type : RESPONSE +19:52:52 Received From : +19:52:52 ============================================================================ +19:52:52 FNo. Len. Field Value +19:52:52 ============================================================================ +19:52:52 [ 1] [ 4] [0210] +19:52:52 [ 2] [ 16] [6213544000766896] +19:52:52 [ 3] [ 6] [300000] +19:52:52 [ 4] [ 12] [000000000000] +19:52:52 [ 7] [ 10] [0320195041] +19:52:52 [ 11] [ 6] [956625] +19:52:52 [ 12] [ 6] [195041] +19:52:52 [ 13] [ 4] [0320] +19:52:52 [ 15] [ 4] [0320] +19:52:52 [ 18] [ 4] [6011] +19:52:52 [ 19] [ 3] [418] +19:52:52 [ 32] [ 6] [668899] +19:52:52 [ 35] [ 32] [6213544000766896=491212016689938] +19:52:52 [ 37] [ 12] [507901351222] +19:52:52 [ 38] [ 6] [359486] +19:52:52 [ 39] [ 2] [00] +19:52:52 [ 41] [ 8] [03208001] +19:52:52 [ 49] [ 3] [418] +19:52:52 [ 54] [ 40] [0001418C0000051308630002418C000005130863] +19:52:52 ============================================================================ +19:52:52 Sending to : +19:52:52 ============================================================================ +19:52:52 + + +waiting on router queue for slot.... +19:52:54 ============================================================================ +19:52:54 Slot Id : <396> +19:52:54 Transaction Type : RESPONSE +19:52:54 Received From : +19:52:54 ============================================================================ +19:52:54 FNo. Len. Field Value +19:52:54 ============================================================================ +19:52:54 [ 1] [ 4] [0210] +19:52:54 [ 2] [ 16] [6213544000766896] +19:52:54 [ 3] [ 6] [300000] +19:52:54 [ 4] [ 12] [000000000000] +19:52:54 [ 7] [ 10] [0320195041] +19:52:54 [ 11] [ 6] [956625] +19:52:54 [ 12] [ 6] [195041] +19:52:54 [ 13] [ 4] [0320] +19:52:54 [ 15] [ 4] [0320] +19:52:54 [ 18] [ 4] [6011] +19:52:54 [ 19] [ 3] [418] +19:52:54 [ 32] [ 6] [668899] +19:52:54 [ 35] [ 32] [6213544000766896=491212016689938] +19:52:54 [ 37] [ 12] [507901351222] +19:52:54 [ 38] [ 6] [359486] +19:52:54 [ 39] [ 2] [00] +19:52:54 [ 41] [ 8] [03208001] +19:52:54 [ 49] [ 3] [418] +19:52:54 [ 54] [ 40] [0001418C0000051308630002418C000005130863] +19:52:54 ============================================================================ +19:52:54 Calculate Source COMM Id = 4 +19:52:54 ============================================================================ +19:52:54 + + +waiting on router queue for slot.... +19:52:55 ============================================================================ +19:52:55 Slot Id : <390> +19:52:55 Transaction Type : REQUEST +19:52:55 Received From : +19:52:55 ============================================================================ +19:52:55 FNo. Len. Field Value +19:52:55 ============================================================================ +19:52:55 [ 1] [ 4] [0200] +19:52:55 [ 2] [ 16] [1808931600006512] +19:52:55 [ 3] [ 6] [012000] +19:52:55 [ 4] [ 12] [000050000000] +19:52:55 [ 7] [ 10] [0320195249] +19:52:55 [ 11] [ 6] [839505] +19:52:55 [ 12] [ 6] [195249] +19:52:55 [ 13] [ 4] [0320] +19:52:55 [ 15] [ 4] [0320] +19:52:55 [ 18] [ 4] [6011] +19:52:55 [ 22] [ 3] [900] +19:52:55 [ 25] [ 2] [02] +19:52:55 [ 28] [ 9] [D00002000] +19:52:55 [ 32] [ 6] [621354] +19:52:55 [ 35] [ 27] [1808931600006512=1803500329] +19:52:55 [ 37] [ 12] [507904885870] +19:52:55 [ 41] [ 8] [08001000] +19:52:55 [ 42] [ 15] [NATIVE ] +19:52:55 [ 43] [ 40] [Sanamxay District Samakyxay LAO] +19:52:55 [ 49] [ 3] [418] +19:52:55 [ 52] [ 16] [3786FFA592687B8C] +19:52:55 ============================================================================ +19:52:55 + + +waiting on router queue for slot.... +19:52:55 Sending to : +19:52:55 ============================================================================ +19:52:55 Sending to : +19:52:55 ============================================================================ +19:52:55 ============================================================================ +19:52:55 Slot Id : <390> +19:52:55 Transaction Type : REQUEST +19:52:55 Received From : +19:52:55 ============================================================================ +19:52:55 FNo. Len. Field Value +19:52:55 ============================================================================ +19:52:55 [ 1] [ 4] [0200] +19:52:55 [ 2] [ 16] [1808931600006512] +19:52:55 [ 3] [ 6] [012000] +19:52:55 [ 4] [ 12] [000050000000] +19:52:55 [ 7] [ 10] [0320195249] +19:52:55 [ 11] [ 6] [839505] +19:52:55 [ 12] [ 6] [195249] +19:52:55 [ 13] [ 4] [0320] +19:52:55 [ 15] [ 4] [0320] +19:52:55 [ 18] [ 4] [6011] +19:52:55 [ 22] [ 3] [900] +19:52:55 [ 25] [ 2] [02] +19:52:55 [ 28] [ 9] [D00002000] +19:52:55 [ 32] [ 6] [621354] +19:52:55 [ 35] [ 27] [1808931600006512=1803500329] +19:52:55 [ 37] [ 12] [507904885870] +19:52:55 [ 41] [ 8] [08001000] +19:52:55 [ 42] [ 15] [NATIVE ] +19:52:55 [ 43] [ 40] [Sanamxay District Samakyxay LAO] +19:52:55 [ 49] [ 3] [418] +19:52:55 [ 52] [ 16] [3786FFA592687B8C] +19:52:55 ============================================================================ +19:52:55 + + +waiting on router queue for slot.... +19:52:55 Sending to : +19:52:55 ============================================================================ +19:52:55 ============================================================================ +19:52:55 Slot Id : <390> +19:52:55 Transaction Type : REQUEST +19:52:55 Received From : +19:52:55 ============================================================================ +19:52:55 FNo. Len. Field Value +19:52:55 ============================================================================ +19:52:55 [ 1] [ 4] [0200] +19:52:55 [ 2] [ 16] [1808931600006512] +19:52:55 [ 3] [ 6] [012000] +19:52:55 [ 4] [ 12] [000050000000] +19:52:55 [ 7] [ 10] [0320195249] +19:52:55 [ 11] [ 6] [839505] +19:52:55 [ 12] [ 6] [195249] +19:52:55 [ 13] [ 4] [0320] +19:52:55 [ 15] [ 4] [0320] +19:52:55 [ 18] [ 4] [6011] +19:52:55 [ 22] [ 3] [900] +19:52:55 [ 25] [ 2] [02] +19:52:55 [ 28] [ 9] [D00002000] +19:52:55 [ 32] [ 6] [621354] +19:52:55 [ 35] [ 27] [1808931600006512=1803500329] +19:52:55 [ 37] [ 12] [507904885870] +19:52:55 [ 41] [ 8] [08001000] +19:52:55 [ 42] [ 15] [NATIVE ] +19:52:55 [ 43] [ 40] [Sanamxay District Samakyxay LAO] +19:52:55 [ 49] [ 3] [418] +19:52:55 [ 52] [ 16] [EB250C2CE4431BCD] +19:52:55 ============================================================================ +19:52:55 + + +waiting on router queue for slot.... +19:52:55 Sending to : <2> +19:52:55 ============================================================================ +19:52:58 ============================================================================ +19:52:58 Slot Id : <390> +19:52:58 Transaction Type : RESPONSE +19:52:58 Received From : +19:52:58 ============================================================================ +19:52:58 FNo. Len. Field Value +19:52:58 ============================================================================ +19:52:58 [ 1] [ 4] [0210] +19:52:58 [ 2] [ 16] [1808931600006512] +19:52:58 [ 3] [ 6] [012000] +19:52:58 [ 4] [ 12] [000050000000] +19:52:58 [ 7] [ 10] [0320195249] +19:52:58 [ 11] [ 6] [839505] +19:52:58 [ 12] [ 6] [195249] +19:52:58 [ 13] [ 4] [0320] +19:52:58 [ 18] [ 4] [6011] +19:52:58 [ 19] [ 3] [418] +19:52:58 [ 22] [ 3] [021] +19:52:58 [ 28] [ 9] [D00002000] +19:52:58 [ 32] [ 6] [621354] +19:52:58 [ 35] [ 27] [1808931600006512=1803500329] +19:52:58 [ 37] [ 12] [507904885870] +19:52:58 [ 39] [ 2] [42] +19:52:58 [ 41] [ 8] [08001000] +19:52:58 [ 49] [ 3] [418] +19:52:58 [ 52] [ 16] [EB250C2CE4431BCD] +19:52:58 ============================================================================ +19:52:58 Sending to : +19:52:58 ============================================================================ +19:52:58 + + +waiting on router queue for slot.... +19:53:00 ============================================================================ +19:53:00 Slot Id : <390> +19:53:00 Transaction Type : RESPONSE +19:53:00 Received From : +19:53:00 ============================================================================ +19:53:00 FNo. Len. Field Value +19:53:00 ============================================================================ +19:53:00 [ 1] [ 4] [0210] +19:53:00 [ 2] [ 16] [1808931600006512] +19:53:00 [ 3] [ 6] [012000] +19:53:00 [ 4] [ 12] [000050000000] +19:53:00 [ 7] [ 10] [0320195249] +19:53:00 [ 11] [ 6] [839505] +19:53:00 [ 12] [ 6] [195249] +19:53:00 [ 13] [ 4] [0320] +19:53:00 [ 18] [ 4] [6011] +19:53:00 [ 19] [ 3] [418] +19:53:00 [ 22] [ 3] [021] +19:53:00 [ 28] [ 9] [D00002000] +19:53:00 [ 32] [ 6] [621354] +19:53:00 [ 35] [ 27] [1808931600006512=1803500329] +19:53:00 [ 37] [ 12] [507904885870] +19:53:00 [ 39] [ 2] [42] +19:53:00 [ 41] [ 8] [08001000] +19:53:00 [ 49] [ 3] [418] +19:53:00 [ 52] [ 16] [EB250C2CE4431BCD] +19:53:00 ============================================================================ +19:53:00 Calculate Source COMM Id = 0 +19:53:00 ============================================================================ +19:53:00 + + +waiting on router queue for slot.... +19:53:00 ============================================================================ +19:53:00 Slot Id : <374> +19:53:00 Transaction Type : REQUEST +19:53:00 Received From : +19:53:00 ============================================================================ +19:53:00 FNo. Len. Field Value +19:53:00 ============================================================================ +19:53:00 [ 1] [ 4] [0200] +19:53:00 [ 2] [ 16] [6213541000281777] +19:53:00 [ 3] [ 6] [010000] +19:53:00 [ 4] [ 12] [000100000000] +19:53:00 [ 7] [ 10] [0320125205] +19:53:00 [ 11] [ 6] [271501] +19:53:00 [ 12] [ 6] [195205] +19:53:00 [ 13] [ 4] [0320] +19:53:00 [ 14] [ 4] [4912] +19:53:00 [ 15] [ 4] [0320] +19:53:00 [ 18] [ 4] [6011] +19:53:00 [ 19] [ 3] [418] +19:53:00 [ 22] [ 3] [021] +19:53:00 [ 25] [ 2] [01] +19:53:00 [ 28] [ 9] [D00002000] +19:53:00 [ 32] [ 6] [180893] +19:53:00 [ 35] [ 32] [6213541000281777=491212018177176] +19:53:00 [ 37] [ 12] [507912271501] +19:53:00 [ 41] [ 8] [0441VT52] +19:53:00 [ 42] [ 15] [999999 ] +19:53:00 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:53:00 [ 49] [ 3] [418] +19:53:00 [ 52] [ 16] [9C548B4C94AD5BD8] +19:53:00 ============================================================================ +19:53:00 + + +waiting on router queue for slot.... +19:53:00 Sending to : +19:53:00 ============================================================================ +19:53:00 Sending to : +19:53:00 ============================================================================ +19:53:00 ============================================================================ +19:53:00 Slot Id : <374> +19:53:00 Transaction Type : REQUEST +19:53:00 Received From : +19:53:00 ============================================================================ +19:53:00 FNo. Len. Field Value +19:53:00 ============================================================================ +19:53:00 [ 1] [ 4] [0200] +19:53:00 [ 2] [ 16] [6213541000281777] +19:53:00 [ 3] [ 6] [010000] +19:53:00 [ 4] [ 12] [000100000000] +19:53:00 [ 7] [ 10] [0320125205] +19:53:00 [ 11] [ 6] [271501] +19:53:00 [ 12] [ 6] [195205] +19:53:00 [ 13] [ 4] [0320] +19:53:00 [ 14] [ 4] [4912] +19:53:00 [ 15] [ 4] [0320] +19:53:00 [ 18] [ 4] [6011] +19:53:00 [ 19] [ 3] [418] +19:53:00 [ 22] [ 3] [021] +19:53:00 [ 25] [ 2] [01] +19:53:00 [ 28] [ 9] [D00002000] +19:53:00 [ 32] [ 6] [180893] +19:53:00 [ 35] [ 32] [6213541000281777=491212018177176] +19:53:00 [ 37] [ 12] [507912271501] +19:53:00 [ 41] [ 8] [0441VT52] +19:53:00 [ 42] [ 15] [999999 ] +19:53:00 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:53:00 [ 49] [ 3] [418] +19:53:00 [ 52] [ 16] [9C548B4C94AD5BD8] +19:53:00 ============================================================================ +19:53:00 + + +waiting on router queue for slot.... +19:53:00 Sending to : +19:53:00 ============================================================================ +19:53:00 ============================================================================ +19:53:00 Slot Id : <374> +19:53:00 Transaction Type : REQUEST +19:53:00 Received From : +19:53:00 ============================================================================ +19:53:00 FNo. Len. Field Value +19:53:00 ============================================================================ +19:53:00 [ 1] [ 4] [0200] +19:53:00 [ 2] [ 16] [6213541000281777] +19:53:00 [ 3] [ 6] [010000] +19:53:00 [ 4] [ 12] [000100000000] +19:53:00 [ 7] [ 10] [0320125205] +19:53:00 [ 11] [ 6] [271501] +19:53:00 [ 12] [ 6] [195205] +19:53:00 [ 13] [ 4] [0320] +19:53:00 [ 14] [ 4] [4912] +19:53:00 [ 15] [ 4] [0320] +19:53:00 [ 18] [ 4] [6011] +19:53:00 [ 19] [ 3] [418] +19:53:00 [ 22] [ 3] [021] +19:53:00 [ 25] [ 2] [01] +19:53:00 [ 28] [ 9] [D00002000] +19:53:00 [ 32] [ 6] [180893] +19:53:00 [ 35] [ 32] [6213541000281777=491212018177176] +19:53:00 [ 37] [ 12] [507912271501] +19:53:00 [ 41] [ 8] [0441VT52] +19:53:00 [ 42] [ 15] [999999 ] +19:53:00 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:53:00 [ 49] [ 3] [418] +19:53:00 [ 52] [ 16] [C800533275ADBEA5] +19:53:00 ============================================================================ +19:53:00 + + +waiting on router queue for slot.... +19:53:00 Sending to : <0> +19:53:00 ============================================================================ +19:53:01 ============================================================================ +19:53:01 Slot Id : <374> +19:53:01 Transaction Type : RESPONSE +19:53:01 Received From : +19:53:01 ============================================================================ +19:53:01 FNo. Len. Field Value +19:53:01 ============================================================================ +19:53:01 [ 1] [ 4] [0210] +19:53:01 [ 2] [ 16] [6213541000281777] +19:53:01 [ 3] [ 6] [010000] +19:53:01 [ 4] [ 12] [000100000000] +19:53:01 [ 7] [ 10] [0320125205] +19:53:01 [ 11] [ 6] [271501] +19:53:01 [ 12] [ 6] [195205] +19:53:01 [ 13] [ 4] [0320] +19:53:01 [ 15] [ 4] [0320] +19:53:01 [ 18] [ 4] [6011] +19:53:01 [ 19] [ 3] [418] +19:53:01 [ 32] [ 6] [180893] +19:53:01 [ 35] [ 32] [6213541000281777=491212018177176] +19:53:01 [ 37] [ 12] [507912271501] +19:53:01 [ 38] [ 6] [175152] +19:53:01 [ 39] [ 2] [00] +19:53:01 [ 41] [ 8] [0441VT52] +19:53:01 [ 49] [ 3] [418] +19:53:01 [ 54] [ 40] [0001418C0005782447700002418C000578244770] +19:53:01 ============================================================================ +19:53:01 Sending to : +19:53:01 ============================================================================ +19:53:01 + + +waiting on router queue for slot.... +19:53:02 ============================================================================ +19:53:02 Slot Id : <374> +19:53:02 Transaction Type : RESPONSE +19:53:02 Received From : +19:53:02 ============================================================================ +19:53:02 FNo. Len. Field Value +19:53:02 ============================================================================ +19:53:02 [ 1] [ 4] [0210] +19:53:02 [ 2] [ 16] [6213541000281777] +19:53:02 [ 3] [ 6] [010000] +19:53:02 [ 4] [ 12] [000100000000] +19:53:02 [ 7] [ 10] [0320125205] +19:53:02 [ 11] [ 6] [271501] +19:53:02 [ 12] [ 6] [195205] +19:53:02 [ 13] [ 4] [0320] +19:53:02 [ 15] [ 4] [0320] +19:53:02 [ 18] [ 4] [6011] +19:53:02 [ 19] [ 3] [418] +19:53:02 [ 32] [ 6] [180893] +19:53:02 [ 35] [ 32] [6213541000281777=491212018177176] +19:53:02 [ 37] [ 12] [507912271501] +19:53:02 [ 38] [ 6] [175152] +19:53:02 [ 39] [ 2] [00] +19:53:02 [ 41] [ 8] [0441VT52] +19:53:02 [ 49] [ 3] [418] +19:53:02 [ 54] [ 40] [0001418C0005782447700002418C000578244770] +19:53:02 ============================================================================ +19:53:02 Calculate Source COMM Id = 2 +19:53:02 ============================================================================ +19:53:02 + + +waiting on router queue for slot.... +19:53:04 ============================================================================ +19:53:04 Slot Id : <361> +19:53:04 Transaction Type : REQUEST +19:53:04 Received From : +19:53:04 ============================================================================ +19:53:04 FNo. Len. Field Value +19:53:04 ============================================================================ +19:53:04 [ 1] [ 4] [0200] +19:53:04 [ 2] [ 16] [6688990040166181] +19:53:04 [ 3] [ 6] [011000] +19:53:04 [ 4] [ 12] [000030000000] +19:53:04 [ 7] [ 10] [0320195259] +19:53:04 [ 11] [ 6] [839518] +19:53:04 [ 12] [ 6] [195259] +19:53:04 [ 13] [ 4] [0320] +19:53:04 [ 15] [ 4] [0320] +19:53:04 [ 18] [ 4] [6011] +19:53:04 [ 22] [ 3] [900] +19:53:04 [ 25] [ 2] [02] +19:53:04 [ 28] [ 9] [D00002000] +19:53:04 [ 32] [ 6] [621354] +19:53:04 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:53:04 [ 37] [ 12] [507903518040] +19:53:04 [ 41] [ 8] [09000800] +19:53:04 [ 42] [ 15] [NATIVE ] +19:53:04 [ 43] [ 40] [Thongkhankham 02 ChanthaboulyLAO] +19:53:04 [ 49] [ 3] [418] +19:53:04 [ 52] [ 16] [794B63017FF69CA2] +19:53:04 ============================================================================ +19:53:04 + + +waiting on router queue for slot.... +19:53:04 Sending to : +19:53:04 ============================================================================ +19:53:04 Sending to : +19:53:04 ============================================================================ +19:53:05 ============================================================================ +19:53:05 Slot Id : <361> +19:53:05 Transaction Type : REQUEST +19:53:05 Received From : +19:53:05 ============================================================================ +19:53:05 FNo. Len. Field Value +19:53:05 ============================================================================ +19:53:05 [ 1] [ 4] [0200] +19:53:05 [ 2] [ 16] [6688990040166181] +19:53:05 [ 3] [ 6] [011000] +19:53:05 [ 4] [ 12] [000030000000] +19:53:05 [ 7] [ 10] [0320195259] +19:53:05 [ 11] [ 6] [839518] +19:53:05 [ 12] [ 6] [195259] +19:53:05 [ 13] [ 4] [0320] +19:53:05 [ 15] [ 4] [0320] +19:53:05 [ 18] [ 4] [6011] +19:53:05 [ 22] [ 3] [900] +19:53:05 [ 25] [ 2] [02] +19:53:05 [ 28] [ 9] [D00002000] +19:53:05 [ 32] [ 6] [621354] +19:53:05 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:53:05 [ 37] [ 12] [507903518040] +19:53:05 [ 41] [ 8] [09000800] +19:53:05 [ 42] [ 15] [NATIVE ] +19:53:05 [ 43] [ 40] [Thongkhankham 02 ChanthaboulyLAO] +19:53:05 [ 49] [ 3] [418] +19:53:05 [ 52] [ 16] [794B63017FF69CA2] +19:53:05 ============================================================================ +19:53:05 + + +waiting on router queue for slot.... +19:53:05 Sending to : +19:53:05 ============================================================================ +19:53:05 ============================================================================ +19:53:05 Slot Id : <361> +19:53:05 Transaction Type : REQUEST +19:53:05 Received From : +19:53:05 ============================================================================ +19:53:05 FNo. Len. Field Value +19:53:05 ============================================================================ +19:53:05 [ 1] [ 4] [0200] +19:53:05 [ 2] [ 16] [6688990040166181] +19:53:05 [ 3] [ 6] [011000] +19:53:05 [ 4] [ 12] [000030000000] +19:53:05 [ 7] [ 10] [0320195259] +19:53:05 [ 11] [ 6] [839518] +19:53:05 [ 12] [ 6] [195259] +19:53:05 [ 13] [ 4] [0320] +19:53:05 [ 15] [ 4] [0320] +19:53:05 [ 18] [ 4] [6011] +19:53:05 [ 22] [ 3] [900] +19:53:05 [ 25] [ 2] [02] +19:53:05 [ 28] [ 9] [D00002000] +19:53:05 [ 32] [ 6] [621354] +19:53:05 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:53:05 [ 37] [ 12] [507903518040] +19:53:05 [ 41] [ 8] [09000800] +19:53:05 [ 42] [ 15] [NATIVE ] +19:53:05 [ 43] [ 40] [Thongkhankham 02 ChanthaboulyLAO] +19:53:05 [ 49] [ 3] [418] +19:53:05 [ 52] [ 16] [04BA0F1B7555CAEA] +19:53:05 ============================================================================ +19:53:05 + + +waiting on router queue for slot.... +19:53:05 Sending to : <4> +19:53:05 ============================================================================ +19:53:05 ============================================================================ +19:53:05 Slot Id : <361> +19:53:05 Transaction Type : RESPONSE +19:53:05 Received From : +19:53:05 ============================================================================ +19:53:05 FNo. Len. Field Value +19:53:05 ============================================================================ +19:53:05 [ 1] [ 4] [0210] +19:53:05 [ 2] [ 16] [6688990040166181] +19:53:05 [ 3] [ 6] [011000] +19:53:05 [ 4] [ 12] [000030000000] +19:53:05 [ 7] [ 10] [0320195259] +19:53:05 [ 11] [ 6] [839518] +19:53:05 [ 12] [ 6] [195259] +19:53:05 [ 13] [ 4] [0320] +19:53:05 [ 15] [ 4] [0320] +19:53:05 [ 18] [ 4] [6011] +19:53:05 [ 22] [ 3] [021] +19:53:05 [ 32] [ 6] [621354] +19:53:05 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:53:05 [ 37] [ 12] [507903518040] +19:53:05 [ 38] [ 6] [195054] +19:53:05 [ 39] [ 2] [75] +19:53:05 [ 41] [ 8] [09000800] +19:53:05 [ 49] [ 3] [418] +19:53:05 ============================================================================ +19:53:05 Sending to : +19:53:05 ============================================================================ +19:53:05 + + +waiting on router queue for slot.... +19:53:06 ============================================================================ +19:53:06 Slot Id : <351> +19:53:06 Transaction Type : REQUEST +19:53:06 Received From : +19:53:06 ============================================================================ +19:53:06 FNo. Len. Field Value +19:53:06 ============================================================================ +19:53:06 [ 1] [ 4] [0200] +19:53:06 [ 2] [ 16] [6213544001618609] +19:53:06 [ 3] [ 6] [010000] +19:53:06 [ 4] [ 12] [000030000000] +19:53:06 [ 7] [ 10] [0320195055] +19:53:06 [ 11] [ 6] [956629] +19:53:06 [ 12] [ 6] [195055] +19:53:06 [ 13] [ 4] [0320] +19:53:06 [ 15] [ 4] [0320] +19:53:06 [ 18] [ 4] [6011] +19:53:06 [ 19] [ 3] [418] +19:53:06 [ 22] [ 3] [021] +19:53:06 [ 25] [ 2] [01] +19:53:06 [ 28] [ 9] [D00002000] +19:53:06 [ 32] [ 6] [668899] +19:53:06 [ 35] [ 32] [6213544001618609=491212011860809] +19:53:06 [ 37] [ 12] [507902475780] +19:53:06 [ 41] [ 8] [03020032] +19:53:06 [ 42] [ 15] [APT ] +19:53:06 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:53:06 [ 49] [ 3] [418] +19:53:06 [ 52] [ 16] [745FC53460579D2F] +19:53:06 ============================================================================ +19:53:06 + + +waiting on router queue for slot.... +19:53:06 Sending to : +19:53:06 ============================================================================ +19:53:06 Sending to : +19:53:06 ============================================================================ +19:53:06 ============================================================================ +19:53:06 Slot Id : <351> +19:53:06 Transaction Type : REQUEST +19:53:06 Received From : +19:53:06 ============================================================================ +19:53:06 FNo. Len. Field Value +19:53:06 ============================================================================ +19:53:06 [ 1] [ 4] [0200] +19:53:06 [ 2] [ 16] [6213544001618609] +19:53:06 [ 3] [ 6] [010000] +19:53:06 [ 4] [ 12] [000030000000] +19:53:06 [ 7] [ 10] [0320195055] +19:53:06 [ 11] [ 6] [956629] +19:53:06 [ 12] [ 6] [195055] +19:53:06 [ 13] [ 4] [0320] +19:53:06 [ 15] [ 4] [0320] +19:53:06 [ 18] [ 4] [6011] +19:53:06 [ 19] [ 3] [418] +19:53:06 [ 22] [ 3] [021] +19:53:06 [ 25] [ 2] [01] +19:53:06 [ 28] [ 9] [D00002000] +19:53:06 [ 32] [ 6] [668899] +19:53:06 [ 35] [ 32] [6213544001618609=491212011860809] +19:53:06 [ 37] [ 12] [507902475780] +19:53:06 [ 41] [ 8] [03020032] +19:53:06 [ 42] [ 15] [APT ] +19:53:06 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:53:06 [ 49] [ 3] [418] +19:53:06 [ 52] [ 16] [745FC53460579D2F] +19:53:06 ============================================================================ +19:53:06 + + +waiting on router queue for slot.... +19:53:06 Sending to : +19:53:06 ============================================================================ +19:53:06 ============================================================================ +19:53:06 Slot Id : <351> +19:53:06 Transaction Type : REQUEST +19:53:06 Received From : +19:53:06 ============================================================================ +19:53:06 FNo. Len. Field Value +19:53:06 ============================================================================ +19:53:06 [ 1] [ 4] [0200] +19:53:06 [ 2] [ 16] [6213544001618609] +19:53:06 [ 3] [ 6] [010000] +19:53:06 [ 4] [ 12] [000030000000] +19:53:06 [ 7] [ 10] [0320195055] +19:53:06 [ 11] [ 6] [956629] +19:53:06 [ 12] [ 6] [195055] +19:53:06 [ 13] [ 4] [0320] +19:53:06 [ 15] [ 4] [0320] +19:53:06 [ 18] [ 4] [6011] +19:53:06 [ 19] [ 3] [418] +19:53:06 [ 22] [ 3] [021] +19:53:06 [ 25] [ 2] [01] +19:53:06 [ 28] [ 9] [D00002000] +19:53:06 [ 32] [ 6] [668899] +19:53:06 [ 35] [ 32] [6213544001618609=491212011860809] +19:53:06 [ 37] [ 12] [507902475780] +19:53:06 [ 41] [ 8] [03020032] +19:53:06 [ 42] [ 15] [APT ] +19:53:06 [ 43] [ 40] [ FM98 PHONETONG VIENTIANE ] +19:53:06 [ 49] [ 3] [418] +19:53:06 [ 52] [ 16] [2486CD87B0D0EF9D] +19:53:06 ============================================================================ +19:53:06 + + +waiting on router queue for slot.... +19:53:06 Sending to : <0> +19:53:06 ============================================================================ +19:53:06 ============================================================================ +19:53:06 Slot Id : <361> +19:53:06 Transaction Type : RESPONSE +19:53:06 Received From : +19:53:06 ============================================================================ +19:53:06 FNo. Len. Field Value +19:53:06 ============================================================================ +19:53:06 [ 1] [ 4] [0210] +19:53:06 [ 2] [ 16] [6688990040166181] +19:53:06 [ 3] [ 6] [011000] +19:53:06 [ 4] [ 12] [000030000000] +19:53:06 [ 7] [ 10] [0320195259] +19:53:06 [ 11] [ 6] [839518] +19:53:06 [ 12] [ 6] [195259] +19:53:06 [ 13] [ 4] [0320] +19:53:06 [ 15] [ 4] [0320] +19:53:06 [ 18] [ 4] [6011] +19:53:06 [ 22] [ 3] [021] +19:53:06 [ 32] [ 6] [621354] +19:53:06 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:53:06 [ 37] [ 12] [507903518040] +19:53:06 [ 38] [ 6] [195054] +19:53:06 [ 39] [ 2] [75] +19:53:06 [ 41] [ 8] [09000800] +19:53:06 [ 49] [ 3] [418] +19:53:06 ============================================================================ +19:53:06 Calculate Source COMM Id = 0 +19:53:06 ============================================================================ +19:53:06 + + +waiting on router queue for slot.... +19:53:06 ============================================================================ +19:53:06 Slot Id : <351> +19:53:06 Transaction Type : RESPONSE +19:53:06 Received From : +19:53:06 ============================================================================ +19:53:06 FNo. Len. Field Value +19:53:06 ============================================================================ +19:53:06 [ 1] [ 4] [0210] +19:53:06 [ 2] [ 16] [6213544001618609] +19:53:06 [ 3] [ 6] [010000] +19:53:06 [ 4] [ 12] [000030000000] +19:53:06 [ 7] [ 10] [0320195055] +19:53:06 [ 11] [ 6] [956629] +19:53:06 [ 12] [ 6] [195055] +19:53:06 [ 13] [ 4] [0320] +19:53:06 [ 15] [ 4] [0320] +19:53:06 [ 18] [ 4] [6011] +19:53:06 [ 19] [ 3] [418] +19:53:06 [ 32] [ 6] [668899] +19:53:06 [ 35] [ 32] [6213544001618609=491212011860809] +19:53:06 [ 37] [ 12] [507902475780] +19:53:06 [ 38] [ 6] [056864] +19:53:06 [ 39] [ 2] [00] +19:53:06 [ 41] [ 8] [03020032] +19:53:06 [ 49] [ 3] [418] +19:53:06 [ 54] [ 40] [0001418C0002004363380002418C000200436338] +19:53:06 ============================================================================ +19:53:06 Sending to : +19:53:06 ============================================================================ +19:53:06 + + +waiting on router queue for slot.... +19:53:07 ============================================================================ +19:53:07 Slot Id : <389> +19:53:07 Transaction Type : REQUEST +19:53:07 Received From : +19:53:07 ============================================================================ +19:53:07 FNo. Len. Field Value +19:53:07 ============================================================================ +19:53:07 [ 1] [ 4] [0800] +19:53:07 [ 2] [ 5] [02531] +19:53:07 [ 3] [ 6] [579198] +19:53:07 [ 7] [ 10] [0320125307] +19:53:07 [ 11] [ 6] [807566] +19:53:07 [ 15] [ 10] [0320125307] +19:53:07 [ 37] [ 11] [57919807566] +19:53:07 [ 70] [ 3] [001] +19:53:07 ============================================================================ +19:53:07 + + +waiting on router queue for slot.... +19:53:07 ============================================================================ +19:53:07 Slot Id : <389> +19:53:07 Transaction Type : RESPONSE +19:53:07 Received From : +19:53:07 ============================================================================ +19:53:07 FNo. Len. Field Value +19:53:07 ============================================================================ +19:53:07 [ 1] [ 4] [0810] +19:53:07 [ 7] [ 10] [0320125307] +19:53:07 [ 11] [ 6] [807566] +19:53:07 [ 15] [ 4] [0320] +19:53:07 [ 37] [ 12] [57919807566] +19:53:07 [ 39] [ 2] [00] +19:53:07 [ 70] [ 3] [001] +19:53:07 ============================================================================ +19:53:07 Sending to : +19:53:07 ============================================================================ +19:53:07 + + +waiting on router queue for slot.... +19:53:08 ============================================================================ +19:53:08 Slot Id : <351> +19:53:08 Transaction Type : RESPONSE +19:53:08 Received From : +19:53:08 ============================================================================ +19:53:08 FNo. Len. Field Value +19:53:08 ============================================================================ +19:53:08 [ 1] [ 4] [0210] +19:53:08 [ 2] [ 16] [6213544001618609] +19:53:08 [ 3] [ 6] [010000] +19:53:08 [ 4] [ 12] [000030000000] +19:53:08 [ 7] [ 10] [0320195055] +19:53:08 [ 11] [ 6] [956629] +19:53:08 [ 12] [ 6] [195055] +19:53:08 [ 13] [ 4] [0320] +19:53:08 [ 15] [ 4] [0320] +19:53:08 [ 18] [ 4] [6011] +19:53:08 [ 19] [ 3] [418] +19:53:08 [ 32] [ 6] [668899] +19:53:08 [ 35] [ 32] [6213544001618609=491212011860809] +19:53:08 [ 37] [ 12] [507902475780] +19:53:08 [ 38] [ 6] [056864] +19:53:08 [ 39] [ 2] [00] +19:53:08 [ 41] [ 8] [03020032] +19:53:08 [ 49] [ 3] [418] +19:53:08 [ 54] [ 40] [0001418C0002004363380002418C000200436338] +19:53:08 ============================================================================ +19:53:08 Calculate Source COMM Id = 4 +19:53:08 ============================================================================ +19:53:08 + + +waiting on router queue for slot.... +19:53:12 ============================================================================ +19:53:12 Slot Id : <410> +19:53:12 Transaction Type : REQUEST +19:53:12 Received From : +19:53:12 ============================================================================ +19:53:12 FNo. Len. Field Value +19:53:12 ============================================================================ +19:53:12 [ 1] [ 4] [0800] +19:53:12 [ 7] [ 10] [0320125219] +19:53:12 [ 11] [ 6] [158061] +19:53:12 [ 70] [ 3] [301] +19:53:12 ============================================================================ +19:53:12 + + +waiting on router queue for slot.... +19:53:12 Sending to : +19:53:12 ============================================================================ +19:53:12 ============================================================================ +19:53:12 Slot Id : <410> +19:53:12 Transaction Type : RESPONSE +19:53:12 Received From : +19:53:12 ============================================================================ +19:53:12 FNo. Len. Field Value +19:53:12 ============================================================================ +19:53:12 [ 1] [ 4] [0810] +19:53:12 [ 7] [ 10] [0320125219] +19:53:12 [ 11] [ 6] [158061] +19:53:12 [ 39] [ 2] [00] +19:53:12 [ 70] [ 3] [301] +19:53:12 ============================================================================ +19:53:12 Calculate Source COMM Id = 2 +19:53:12 ============================================================================ +19:53:12 + + +waiting on router queue for slot.... +19:53:23 ============================================================================ +19:53:23 Slot Id : <376> +19:53:23 Transaction Type : REQUEST +19:53:23 Received From : +19:53:23 ============================================================================ +19:53:23 FNo. Len. Field Value +19:53:23 ============================================================================ +19:53:23 [ 1] [ 4] [0800] +19:53:23 [ 7] [ 10] [0320125229] +19:53:23 [ 11] [ 6] [158062] +19:53:23 [ 70] [ 3] [301] +19:53:23 ============================================================================ +19:53:23 + + +waiting on router queue for slot.... +19:53:23 Sending to : +19:53:23 ============================================================================ +19:53:23 ============================================================================ +19:53:23 Slot Id : <376> +19:53:23 Transaction Type : RESPONSE +19:53:23 Received From : +19:53:23 ============================================================================ +19:53:23 FNo. Len. Field Value +19:53:23 ============================================================================ +19:53:23 [ 1] [ 4] [0810] +19:53:23 [ 7] [ 10] [0320125229] +19:53:23 [ 11] [ 6] [158062] +19:53:23 [ 39] [ 2] [00] +19:53:23 [ 70] [ 3] [301] +19:53:23 ============================================================================ +19:53:23 Calculate Source COMM Id = 2 +19:53:23 ============================================================================ +19:53:23 + + +waiting on router queue for slot.... +19:53:34 ============================================================================ +19:53:34 Slot Id : <359> +19:53:34 Transaction Type : REQUEST +19:53:34 Received From : +19:53:34 ============================================================================ +19:53:34 FNo. Len. Field Value +19:53:34 ============================================================================ +19:53:34 [ 1] [ 4] [0800] +19:53:34 [ 7] [ 10] [0320125240] +19:53:34 [ 11] [ 6] [158063] +19:53:34 [ 70] [ 3] [301] +19:53:34 ============================================================================ +19:53:34 + + +waiting on router queue for slot.... +19:53:34 Sending to : +19:53:34 ============================================================================ +19:53:34 ============================================================================ +19:53:34 Slot Id : <359> +19:53:34 Transaction Type : RESPONSE +19:53:34 Received From : +19:53:34 ============================================================================ +19:53:34 FNo. Len. Field Value +19:53:34 ============================================================================ +19:53:34 [ 1] [ 4] [0810] +19:53:34 [ 7] [ 10] [0320125240] +19:53:34 [ 11] [ 6] [158063] +19:53:34 [ 39] [ 2] [00] +19:53:34 [ 70] [ 3] [301] +19:53:34 ============================================================================ +19:53:34 Calculate Source COMM Id = 2 +19:53:34 ============================================================================ +19:53:34 + + +waiting on router queue for slot.... +19:53:44 ============================================================================ +19:53:44 Slot Id : <383> +19:53:44 Transaction Type : REQUEST +19:53:44 Received From : +19:53:44 ============================================================================ +19:53:44 FNo. Len. Field Value +19:53:44 ============================================================================ +19:53:44 [ 1] [ 4] [0800] +19:53:44 [ 7] [ 10] [0320125251] +19:53:44 [ 11] [ 6] [158064] +19:53:44 [ 70] [ 3] [301] +19:53:44 ============================================================================ +19:53:44 + + +waiting on router queue for slot.... +19:53:44 Sending to : +19:53:44 ============================================================================ +19:53:44 ============================================================================ +19:53:44 Slot Id : <383> +19:53:44 Transaction Type : RESPONSE +19:53:44 Received From : +19:53:44 ============================================================================ +19:53:44 FNo. Len. Field Value +19:53:44 ============================================================================ +19:53:44 [ 1] [ 4] [0810] +19:53:44 [ 7] [ 10] [0320125251] +19:53:44 [ 11] [ 6] [158064] +19:53:44 [ 39] [ 2] [00] +19:53:44 [ 70] [ 3] [301] +19:53:44 ============================================================================ +19:53:44 Calculate Source COMM Id = 2 +19:53:44 ============================================================================ +19:53:44 + + +waiting on router queue for slot.... +19:53:49 ============================================================================ +19:53:49 Slot Id : <400> +19:53:49 Transaction Type : REQUEST +19:53:49 Received From : +19:53:49 ============================================================================ +19:53:49 FNo. Len. Field Value +19:53:49 ============================================================================ +19:53:49 [ 1] [ 4] [0200] +19:53:49 [ 2] [ 16] [6213541000281777] +19:53:49 [ 3] [ 6] [010000] +19:53:49 [ 4] [ 12] [000100000000] +19:53:49 [ 7] [ 10] [0320125253] +19:53:49 [ 11] [ 6] [271506] +19:53:49 [ 12] [ 6] [195253] +19:53:49 [ 13] [ 4] [0320] +19:53:49 [ 14] [ 4] [4912] +19:53:49 [ 15] [ 4] [0320] +19:53:49 [ 18] [ 4] [6011] +19:53:49 [ 19] [ 3] [418] +19:53:49 [ 22] [ 3] [021] +19:53:49 [ 25] [ 2] [01] +19:53:49 [ 28] [ 9] [D00002000] +19:53:49 [ 32] [ 6] [180893] +19:53:49 [ 35] [ 32] [6213541000281777=491212018177176] +19:53:49 [ 37] [ 12] [507912271506] +19:53:49 [ 41] [ 8] [0441VT52] +19:53:49 [ 42] [ 15] [999999 ] +19:53:49 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:53:49 [ 49] [ 3] [418] +19:53:49 [ 52] [ 16] [9C548B4C94AD5BD8] +19:53:49 ============================================================================ +19:53:49 + + +waiting on router queue for slot.... +19:53:49 Sending to : +19:53:49 ============================================================================ +19:53:49 Sending to : +19:53:49 ============================================================================ +19:53:49 ============================================================================ +19:53:49 Slot Id : <400> +19:53:49 Transaction Type : REQUEST +19:53:49 Received From : +19:53:49 ============================================================================ +19:53:49 FNo. Len. Field Value +19:53:49 ============================================================================ +19:53:49 [ 1] [ 4] [0200] +19:53:49 [ 2] [ 16] [6213541000281777] +19:53:49 [ 3] [ 6] [010000] +19:53:49 [ 4] [ 12] [000100000000] +19:53:49 [ 7] [ 10] [0320125253] +19:53:49 [ 11] [ 6] [271506] +19:53:49 [ 12] [ 6] [195253] +19:53:49 [ 13] [ 4] [0320] +19:53:49 [ 14] [ 4] [4912] +19:53:49 [ 15] [ 4] [0320] +19:53:49 [ 18] [ 4] [6011] +19:53:49 [ 19] [ 3] [418] +19:53:49 [ 22] [ 3] [021] +19:53:49 [ 25] [ 2] [01] +19:53:49 [ 28] [ 9] [D00002000] +19:53:49 [ 32] [ 6] [180893] +19:53:49 [ 35] [ 32] [6213541000281777=491212018177176] +19:53:49 [ 37] [ 12] [507912271506] +19:53:49 [ 41] [ 8] [0441VT52] +19:53:49 [ 42] [ 15] [999999 ] +19:53:49 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:53:49 [ 49] [ 3] [418] +19:53:49 [ 52] [ 16] [9C548B4C94AD5BD8] +19:53:49 ============================================================================ +19:53:49 + + +waiting on router queue for slot.... +19:53:49 Sending to : +19:53:49 ============================================================================ +19:53:49 ============================================================================ +19:53:49 Slot Id : <400> +19:53:49 Transaction Type : REQUEST +19:53:49 Received From : +19:53:49 ============================================================================ +19:53:49 FNo. Len. Field Value +19:53:49 ============================================================================ +19:53:49 [ 1] [ 4] [0200] +19:53:49 [ 2] [ 16] [6213541000281777] +19:53:49 [ 3] [ 6] [010000] +19:53:49 [ 4] [ 12] [000100000000] +19:53:49 [ 7] [ 10] [0320125253] +19:53:49 [ 11] [ 6] [271506] +19:53:49 [ 12] [ 6] [195253] +19:53:49 [ 13] [ 4] [0320] +19:53:49 [ 14] [ 4] [4912] +19:53:49 [ 15] [ 4] [0320] +19:53:49 [ 18] [ 4] [6011] +19:53:49 [ 19] [ 3] [418] +19:53:49 [ 22] [ 3] [021] +19:53:49 [ 25] [ 2] [01] +19:53:49 [ 28] [ 9] [D00002000] +19:53:49 [ 32] [ 6] [180893] +19:53:49 [ 35] [ 32] [6213541000281777=491212018177176] +19:53:49 [ 37] [ 12] [507912271506] +19:53:49 [ 41] [ 8] [0441VT52] +19:53:49 [ 42] [ 15] [999999 ] +19:53:49 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:53:49 [ 49] [ 3] [418] +19:53:49 [ 52] [ 16] [C800533275ADBEA5] +19:53:49 ============================================================================ +19:53:49 + + +waiting on router queue for slot.... +19:53:49 Sending to : <0> +19:53:49 ============================================================================ +19:53:50 ============================================================================ +19:53:50 Slot Id : <400> +19:53:50 Transaction Type : RESPONSE +19:53:50 Received From : +19:53:50 ============================================================================ +19:53:50 FNo. Len. Field Value +19:53:50 ============================================================================ +19:53:50 [ 1] [ 4] [0210] +19:53:50 [ 2] [ 16] [6213541000281777] +19:53:50 [ 3] [ 6] [010000] +19:53:50 [ 4] [ 12] [000100000000] +19:53:50 [ 7] [ 10] [0320125253] +19:53:50 [ 11] [ 6] [271506] +19:53:50 [ 12] [ 6] [195253] +19:53:50 [ 13] [ 4] [0320] +19:53:50 [ 15] [ 4] [0320] +19:53:50 [ 18] [ 4] [6011] +19:53:50 [ 19] [ 3] [418] +19:53:50 [ 32] [ 6] [180893] +19:53:50 [ 35] [ 32] [6213541000281777=491212018177176] +19:53:50 [ 37] [ 12] [507912271506] +19:53:50 [ 38] [ 6] [246926] +19:53:50 [ 39] [ 2] [00] +19:53:50 [ 41] [ 8] [0441VT52] +19:53:50 [ 49] [ 3] [418] +19:53:50 [ 54] [ 40] [0001418C0004780447700002418C000478044770] +19:53:50 ============================================================================ +19:53:50 Sending to : +19:53:50 ============================================================================ +19:53:50 + + +waiting on router queue for slot.... +19:53:51 ============================================================================ +19:53:51 Slot Id : <400> +19:53:51 Transaction Type : RESPONSE +19:53:51 Received From : +19:53:51 ============================================================================ +19:53:51 FNo. Len. Field Value +19:53:51 ============================================================================ +19:53:51 [ 1] [ 4] [0210] +19:53:51 [ 2] [ 16] [6213541000281777] +19:53:51 [ 3] [ 6] [010000] +19:53:51 [ 4] [ 12] [000100000000] +19:53:51 [ 7] [ 10] [0320125253] +19:53:51 [ 11] [ 6] [271506] +19:53:51 [ 12] [ 6] [195253] +19:53:51 [ 13] [ 4] [0320] +19:53:51 [ 15] [ 4] [0320] +19:53:51 [ 18] [ 4] [6011] +19:53:51 [ 19] [ 3] [418] +19:53:51 [ 32] [ 6] [180893] +19:53:51 [ 35] [ 32] [6213541000281777=491212018177176] +19:53:51 [ 37] [ 12] [507912271506] +19:53:51 [ 38] [ 6] [246926] +19:53:51 [ 39] [ 2] [00] +19:53:51 [ 41] [ 8] [0441VT52] +19:53:51 [ 49] [ 3] [418] +19:53:51 [ 54] [ 40] [0001418C0004780447700002418C000478044770] +19:53:51 ============================================================================ +19:53:51 Calculate Source COMM Id = 2 +19:53:51 ============================================================================ +19:53:51 + + +waiting on router queue for slot.... +19:53:52 ============================================================================ +19:53:52 Slot Id : <395> +19:53:52 Transaction Type : REQUEST +19:53:52 Received From : +19:53:52 ============================================================================ +19:53:52 FNo. Len. Field Value +19:53:52 ============================================================================ +19:53:52 [ 1] [ 4] [0800] +19:53:52 [ 7] [ 10] [0321030540] +19:53:52 [ 11] [ 6] [200540] +19:53:52 [ 37] [ 12] [57920200540] +19:53:52 [ 70] [ 3] [301] +19:53:52 ============================================================================ +19:53:52 + + +waiting on router queue for slot.... +19:53:52 Sending to : +19:53:52 ============================================================================ +19:53:52 ============================================================================ +19:53:52 Slot Id : <395> +19:53:52 Transaction Type : RESPONSE +19:53:52 Received From : +19:53:52 ============================================================================ +19:53:52 FNo. Len. Field Value +19:53:52 ============================================================================ +19:53:52 [ 1] [ 4] [0810] +19:53:52 [ 7] [ 10] [0321030540] +19:53:52 [ 11] [ 6] [200540] +19:53:52 [ 37] [ 12] [579202005400] +19:53:52 [ 39] [ 2] [00] +19:53:52 [ 70] [ 3] [810] +19:53:52 ============================================================================ +19:53:52 Calculate Source COMM Id = 6 +19:53:52 ============================================================================ +19:53:52 + + +waiting on router queue for slot.... +19:54:06 ============================================================================ +19:54:06 Slot Id : <393> +19:54:06 Transaction Type : REQUEST +19:54:06 Received From : +19:54:06 ============================================================================ +19:54:06 FNo. Len. Field Value +19:54:06 ============================================================================ +19:54:06 [ 1] [ 4] [0800] +19:54:06 [ 7] [ 10] [0320125313] +19:54:06 [ 11] [ 6] [158065] +19:54:06 [ 70] [ 3] [301] +19:54:06 ============================================================================ +19:54:06 + + +waiting on router queue for slot.... +19:54:06 Sending to : +19:54:06 ============================================================================ +19:54:06 ============================================================================ +19:54:06 Slot Id : <393> +19:54:06 Transaction Type : RESPONSE +19:54:06 Received From : +19:54:06 ============================================================================ +19:54:06 FNo. Len. Field Value +19:54:06 ============================================================================ +19:54:06 [ 1] [ 4] [0810] +19:54:06 [ 7] [ 10] [0320125313] +19:54:06 [ 11] [ 6] [158065] +19:54:06 [ 39] [ 2] [00] +19:54:06 [ 70] [ 3] [301] +19:54:06 ============================================================================ +19:54:06 Calculate Source COMM Id = 2 +19:54:06 ============================================================================ +19:54:06 + + +waiting on router queue for slot.... +19:54:09 ============================================================================ +19:54:09 Slot Id : <414> +19:54:09 Transaction Type : REQUEST +19:54:09 Received From : +19:54:09 ============================================================================ +19:54:09 FNo. Len. Field Value +19:54:09 ============================================================================ +19:54:09 [ 1] [ 4] [0800] +19:54:09 [ 2] [ 5] [02531] +19:54:09 [ 3] [ 6] [579198] +19:54:09 [ 7] [ 10] [0320125409] +19:54:09 [ 11] [ 6] [807567] +19:54:09 [ 15] [ 10] [0320125409] +19:54:09 [ 37] [ 11] [57919807567] +19:54:09 [ 70] [ 3] [001] +19:54:09 ============================================================================ +19:54:09 + + +waiting on router queue for slot.... +19:54:09 ============================================================================ +19:54:09 Slot Id : <414> +19:54:09 Transaction Type : RESPONSE +19:54:09 Received From : +19:54:09 ============================================================================ +19:54:09 FNo. Len. Field Value +19:54:09 ============================================================================ +19:54:09 [ 1] [ 4] [0810] +19:54:09 [ 7] [ 10] [0320125409] +19:54:09 [ 11] [ 6] [807567] +19:54:09 [ 15] [ 4] [0320] +19:54:09 [ 37] [ 12] [57919807567] +19:54:09 [ 39] [ 2] [00] +19:54:09 [ 70] [ 3] [001] +19:54:09 ============================================================================ +19:54:09 Sending to : +19:54:09 ============================================================================ +19:54:09 + + +waiting on router queue for slot.... +19:54:10 ============================================================================ +19:54:10 Slot Id : <349> +19:54:10 Transaction Type : REQUEST +19:54:10 Received From : +19:54:10 ============================================================================ +19:54:10 FNo. Len. Field Value +19:54:10 ============================================================================ +19:54:10 [ 1] [ 4] [0200] +19:54:10 [ 2] [ 16] [6688990040166181] +19:54:10 [ 3] [ 6] [301000] +19:54:10 [ 4] [ 12] [000000000000] +19:54:10 [ 7] [ 10] [0320195405] +19:54:10 [ 11] [ 6] [839636] +19:54:10 [ 12] [ 6] [195405] +19:54:10 [ 13] [ 4] [0320] +19:54:10 [ 15] [ 4] [0320] +19:54:10 [ 18] [ 4] [6011] +19:54:10 [ 22] [ 3] [900] +19:54:10 [ 25] [ 2] [02] +19:54:10 [ 28] [ 9] [D00000000] +19:54:10 [ 32] [ 6] [621354] +19:54:10 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:54:10 [ 37] [ 12] [507903518041] +19:54:10 [ 41] [ 8] [09000800] +19:54:10 [ 42] [ 15] [NATIVE ] +19:54:10 [ 43] [ 40] [Thongkhankham 02 ChanthaboulyLAO] +19:54:10 [ 49] [ 3] [418] +19:54:10 [ 52] [ 16] [794B63017FF69CA2] +19:54:10 ============================================================================ +19:54:10 + + +waiting on router queue for slot.... +19:54:10 Sending to : +19:54:10 ============================================================================ +19:54:10 Sending to : +19:54:10 ============================================================================ +19:54:10 ============================================================================ +19:54:10 Slot Id : <349> +19:54:10 Transaction Type : REQUEST +19:54:10 Received From : +19:54:10 ============================================================================ +19:54:10 FNo. Len. Field Value +19:54:10 ============================================================================ +19:54:10 [ 1] [ 4] [0200] +19:54:10 [ 2] [ 16] [6688990040166181] +19:54:10 [ 3] [ 6] [301000] +19:54:10 [ 4] [ 12] [000000000000] +19:54:10 [ 7] [ 10] [0320195405] +19:54:10 [ 11] [ 6] [839636] +19:54:10 [ 12] [ 6] [195405] +19:54:10 [ 13] [ 4] [0320] +19:54:10 [ 15] [ 4] [0320] +19:54:10 [ 18] [ 4] [6011] +19:54:10 [ 22] [ 3] [900] +19:54:10 [ 25] [ 2] [02] +19:54:10 [ 28] [ 9] [D00000000] +19:54:10 [ 32] [ 6] [621354] +19:54:10 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:54:10 [ 37] [ 12] [507903518041] +19:54:10 [ 41] [ 8] [09000800] +19:54:10 [ 42] [ 15] [NATIVE ] +19:54:10 [ 43] [ 40] [Thongkhankham 02 ChanthaboulyLAO] +19:54:10 [ 49] [ 3] [418] +19:54:10 [ 52] [ 16] [794B63017FF69CA2] +19:54:10 ============================================================================ +19:54:10 + + +waiting on router queue for slot.... +19:54:10 Sending to : +19:54:10 ============================================================================ +19:54:10 ============================================================================ +19:54:10 Slot Id : <349> +19:54:10 Transaction Type : REQUEST +19:54:10 Received From : +19:54:10 ============================================================================ +19:54:10 FNo. Len. Field Value +19:54:10 ============================================================================ +19:54:10 [ 1] [ 4] [0200] +19:54:10 [ 2] [ 16] [6688990040166181] +19:54:10 [ 3] [ 6] [301000] +19:54:10 [ 4] [ 12] [000000000000] +19:54:10 [ 7] [ 10] [0320195405] +19:54:10 [ 11] [ 6] [839636] +19:54:10 [ 12] [ 6] [195405] +19:54:10 [ 13] [ 4] [0320] +19:54:10 [ 15] [ 4] [0320] +19:54:10 [ 18] [ 4] [6011] +19:54:10 [ 22] [ 3] [900] +19:54:10 [ 25] [ 2] [02] +19:54:10 [ 28] [ 9] [D00000000] +19:54:10 [ 32] [ 6] [621354] +19:54:10 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:54:10 [ 37] [ 12] [507903518041] +19:54:10 [ 41] [ 8] [09000800] +19:54:10 [ 42] [ 15] [NATIVE ] +19:54:10 [ 43] [ 40] [Thongkhankham 02 ChanthaboulyLAO] +19:54:10 [ 49] [ 3] [418] +19:54:10 [ 52] [ 16] [04BA0F1B7555CAEA] +19:54:10 ============================================================================ +19:54:10 + + +waiting on router queue for slot.... +19:54:10 Sending to : <4> +19:54:10 ============================================================================ +19:54:10 ============================================================================ +19:54:10 Slot Id : <349> +19:54:10 Transaction Type : RESPONSE +19:54:10 Received From : +19:54:10 ============================================================================ +19:54:10 FNo. Len. Field Value +19:54:10 ============================================================================ +19:54:10 [ 1] [ 4] [0210] +19:54:10 [ 2] [ 16] [6688990040166181] +19:54:10 [ 3] [ 6] [301000] +19:54:10 [ 4] [ 12] [000000000000] +19:54:10 [ 7] [ 10] [0320195405] +19:54:10 [ 11] [ 6] [839636] +19:54:10 [ 12] [ 6] [195405] +19:54:10 [ 13] [ 4] [0320] +19:54:10 [ 15] [ 4] [0320] +19:54:10 [ 18] [ 4] [6011] +19:54:10 [ 22] [ 3] [021] +19:54:10 [ 32] [ 6] [621354] +19:54:10 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:54:10 [ 37] [ 12] [507903518041] +19:54:10 [ 38] [ 6] [195200] +19:54:10 [ 39] [ 2] [75] +19:54:10 [ 41] [ 8] [09000800] +19:54:10 [ 49] [ 3] [418] +19:54:10 ============================================================================ +19:54:10 Sending to : +19:54:10 ============================================================================ +19:54:10 + + +waiting on router queue for slot.... +19:54:12 ============================================================================ +19:54:12 Slot Id : <349> +19:54:12 Transaction Type : RESPONSE +19:54:12 Received From : +19:54:12 ============================================================================ +19:54:12 FNo. Len. Field Value +19:54:12 ============================================================================ +19:54:12 [ 1] [ 4] [0210] +19:54:12 [ 2] [ 16] [6688990040166181] +19:54:12 [ 3] [ 6] [301000] +19:54:12 [ 4] [ 12] [000000000000] +19:54:12 [ 7] [ 10] [0320195405] +19:54:12 [ 11] [ 6] [839636] +19:54:12 [ 12] [ 6] [195405] +19:54:12 [ 13] [ 4] [0320] +19:54:12 [ 15] [ 4] [0320] +19:54:12 [ 18] [ 4] [6011] +19:54:12 [ 22] [ 3] [021] +19:54:12 [ 32] [ 6] [621354] +19:54:12 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:54:12 [ 37] [ 12] [507903518041] +19:54:12 [ 38] [ 6] [195200] +19:54:12 [ 39] [ 2] [75] +19:54:12 [ 41] [ 8] [09000800] +19:54:12 [ 49] [ 3] [418] +19:54:12 ============================================================================ +19:54:12 Calculate Source COMM Id = 0 +19:54:12 ============================================================================ +19:54:12 + + +waiting on router queue for slot.... +19:54:16 ============================================================================ +19:54:16 Slot Id : <413> +19:54:16 Transaction Type : REQUEST +19:54:16 Received From : +19:54:16 ============================================================================ +19:54:16 FNo. Len. Field Value +19:54:16 ============================================================================ +19:54:16 [ 1] [ 4] [0800] +19:54:16 [ 7] [ 10] [0320125323] +19:54:16 [ 11] [ 6] [158066] +19:54:16 [ 70] [ 3] [301] +19:54:16 ============================================================================ +19:54:16 + + +waiting on router queue for slot.... +19:54:16 Sending to : +19:54:16 ============================================================================ +19:54:16 ============================================================================ +19:54:16 Slot Id : <413> +19:54:16 Transaction Type : RESPONSE +19:54:16 Received From : +19:54:16 ============================================================================ +19:54:16 FNo. Len. Field Value +19:54:16 ============================================================================ +19:54:16 [ 1] [ 4] [0810] +19:54:16 [ 7] [ 10] [0320125323] +19:54:16 [ 11] [ 6] [158066] +19:54:16 [ 39] [ 2] [00] +19:54:16 [ 70] [ 3] [301] +19:54:16 ============================================================================ +19:54:16 Calculate Source COMM Id = 2 +19:54:16 ============================================================================ +19:54:16 + + +waiting on router queue for slot.... +19:54:16 ============================================================================ +19:54:16 Slot Id : <394> +19:54:16 Transaction Type : REQUEST +19:54:16 Received From : +19:54:16 ============================================================================ +19:54:16 FNo. Len. Field Value +19:54:16 ============================================================================ +19:54:16 [ 1] [ 4] [0200] +19:54:16 [ 2] [ 16] [6213544001921862] +19:54:16 [ 3] [ 6] [011000] +19:54:16 [ 4] [ 12] [000010000000] +19:54:16 [ 7] [ 10] [0320200201] +19:54:16 [ 11] [ 6] [240897] +19:54:16 [ 12] [ 6] [200201] +19:54:16 [ 13] [ 4] [0320] +19:54:16 [ 14] [ 4] [4912] +19:54:16 [ 15] [ 4] [0320] +19:54:16 [ 18] [ 4] [6011] +19:54:16 [ 22] [ 3] [900] +19:54:16 [ 25] [ 2] [02] +19:54:16 [ 28] [ 9] [D00002000] +19:54:16 [ 32] [ 6] [220699] +19:54:16 [ 35] [ 32] [6213544001921862=491212012186292] +19:54:16 [ 37] [ 12] [507900410473] +19:54:16 [ 41] [ 8] [08000300] +19:54:16 [ 42] [ 15] [APTRA ] +19:54:16 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:54:16 [ 49] [ 3] [418] +19:54:16 [ 52] [ 16] [EB62CD3ABBFFAE6E] +19:54:16 ============================================================================ +19:54:16 + + +waiting on router queue for slot.... +19:54:16 Sending to : +19:54:16 ============================================================================ +19:54:16 Sending to : +19:54:16 ============================================================================ +19:54:17 ============================================================================ +19:54:17 Slot Id : <394> +19:54:17 Transaction Type : REQUEST +19:54:17 Received From : +19:54:17 ============================================================================ +19:54:17 FNo. Len. Field Value +19:54:17 ============================================================================ +19:54:17 [ 1] [ 4] [0200] +19:54:17 [ 2] [ 16] [6213544001921862] +19:54:17 [ 3] [ 6] [011000] +19:54:17 [ 4] [ 12] [000010000000] +19:54:17 [ 7] [ 10] [0320200201] +19:54:17 [ 11] [ 6] [240897] +19:54:17 [ 12] [ 6] [200201] +19:54:17 [ 13] [ 4] [0320] +19:54:17 [ 14] [ 4] [4912] +19:54:17 [ 15] [ 4] [0320] +19:54:17 [ 18] [ 4] [6011] +19:54:17 [ 22] [ 3] [900] +19:54:17 [ 25] [ 2] [02] +19:54:17 [ 28] [ 9] [D00002000] +19:54:17 [ 32] [ 6] [220699] +19:54:17 [ 35] [ 32] [6213544001921862=491212012186292] +19:54:17 [ 37] [ 12] [507900410473] +19:54:17 [ 41] [ 8] [08000300] +19:54:17 [ 42] [ 15] [APTRA ] +19:54:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:54:17 [ 49] [ 3] [418] +19:54:17 [ 52] [ 16] [EB62CD3ABBFFAE6E] +19:54:17 ============================================================================ +19:54:17 + + +waiting on router queue for slot.... +19:54:17 Sending to : +19:54:17 ============================================================================ +19:54:17 ============================================================================ +19:54:17 Slot Id : <394> +19:54:17 Transaction Type : REQUEST +19:54:17 Received From : +19:54:17 ============================================================================ +19:54:17 FNo. Len. Field Value +19:54:17 ============================================================================ +19:54:17 [ 1] [ 4] [0200] +19:54:17 [ 2] [ 16] [6213544001921862] +19:54:17 [ 3] [ 6] [011000] +19:54:17 [ 4] [ 12] [000010000000] +19:54:17 [ 7] [ 10] [0320200201] +19:54:17 [ 11] [ 6] [240897] +19:54:17 [ 12] [ 6] [200201] +19:54:17 [ 13] [ 4] [0320] +19:54:17 [ 14] [ 4] [4912] +19:54:17 [ 15] [ 4] [0320] +19:54:17 [ 18] [ 4] [6011] +19:54:17 [ 22] [ 3] [900] +19:54:17 [ 25] [ 2] [02] +19:54:17 [ 28] [ 9] [D00002000] +19:54:17 [ 32] [ 6] [220699] +19:54:17 [ 35] [ 32] [6213544001921862=491212012186292] +19:54:17 [ 37] [ 12] [507900410473] +19:54:17 [ 41] [ 8] [08000300] +19:54:17 [ 42] [ 15] [APTRA ] +19:54:17 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +19:54:17 [ 49] [ 3] [418] +19:54:17 [ 52] [ 16] [C7ABDA8E6E472C50] +19:54:17 ============================================================================ +19:54:17 + + +waiting on router queue for slot.... +19:54:17 Sending to : <0> +19:54:17 ============================================================================ +19:54:17 ============================================================================ +19:54:17 Slot Id : <394> +19:54:17 Transaction Type : RESPONSE +19:54:17 Received From : +19:54:17 ============================================================================ +19:54:17 FNo. Len. Field Value +19:54:17 ============================================================================ +19:54:17 [ 1] [ 4] [0210] +19:54:17 [ 2] [ 16] [6213544001921862] +19:54:17 [ 3] [ 6] [011000] +19:54:17 [ 4] [ 12] [000010000000] +19:54:17 [ 7] [ 10] [0320200201] +19:54:17 [ 11] [ 6] [240897] +19:54:17 [ 12] [ 6] [200201] +19:54:17 [ 13] [ 4] [0320] +19:54:17 [ 15] [ 4] [0320] +19:54:17 [ 18] [ 4] [6011] +19:54:17 [ 32] [ 6] [220699] +19:54:17 [ 35] [ 32] [6213544001921862=491212012186292] +19:54:17 [ 37] [ 12] [507900410473] +19:54:17 [ 38] [ 6] [977041] +19:54:17 [ 39] [ 2] [00] +19:54:17 [ 41] [ 8] [08000300] +19:54:17 [ 49] [ 3] [418] +19:54:17 [ 54] [ 40] [1001418C0000366499701002418C000036649970] +19:54:17 ============================================================================ +19:54:17 Sending to : +19:54:17 ============================================================================ +19:54:17 + + +waiting on router queue for slot.... +19:54:18 ============================================================================ +19:54:18 Slot Id : <397> +19:54:18 Transaction Type : REQUEST +19:54:18 Received From : +19:54:18 ============================================================================ +19:54:18 FNo. Len. Field Value +19:54:18 ============================================================================ +19:54:18 [ 1] [ 4] [0200] +19:54:18 [ 2] [ 16] [6213541000202278] +19:54:18 [ 3] [ 6] [300000] +19:54:18 [ 4] [ 12] [000000000000] +19:54:18 [ 7] [ 10] [0320195208] +19:54:18 [ 11] [ 6] [956643] +19:54:18 [ 12] [ 6] [195208] +19:54:18 [ 13] [ 4] [0320] +19:54:18 [ 15] [ 4] [0320] +19:54:18 [ 18] [ 4] [6011] +19:54:18 [ 19] [ 3] [418] +19:54:18 [ 22] [ 3] [021] +19:54:18 [ 25] [ 2] [01] +19:54:18 [ 28] [ 9] [D00000000] +19:54:18 [ 32] [ 6] [668899] +19:54:18 [ 35] [ 32] [6213541000202278=491212010227342] +19:54:18 [ 37] [ 12] [507902573068] +19:54:18 [ 41] [ 8] [03005004] +19:54:18 [ 42] [ 15] [APT ] +19:54:18 [ 43] [ 40] [ OUDOMXAY HOSPITAL OUDOMXA] +19:54:18 [ 49] [ 3] [418] +19:54:18 [ 52] [ 16] [823DF15B7F66690E] +19:54:18 ============================================================================ +19:54:18 + + +waiting on router queue for slot.... +19:54:18 Sending to : +19:54:18 ============================================================================ +19:54:18 Sending to : +19:54:18 ============================================================================ +19:54:19 ============================================================================ +19:54:19 Slot Id : <397> +19:54:19 Transaction Type : REQUEST +19:54:19 Received From : +19:54:19 ============================================================================ +19:54:19 FNo. Len. Field Value +19:54:19 ============================================================================ +19:54:19 [ 1] [ 4] [0200] +19:54:19 [ 2] [ 16] [6213541000202278] +19:54:19 [ 3] [ 6] [300000] +19:54:19 [ 4] [ 12] [000000000000] +19:54:19 [ 7] [ 10] [0320195208] +19:54:19 [ 11] [ 6] [956643] +19:54:19 [ 12] [ 6] [195208] +19:54:19 [ 13] [ 4] [0320] +19:54:19 [ 15] [ 4] [0320] +19:54:19 [ 18] [ 4] [6011] +19:54:19 [ 19] [ 3] [418] +19:54:19 [ 22] [ 3] [021] +19:54:19 [ 25] [ 2] [01] +19:54:19 [ 28] [ 9] [D00000000] +19:54:19 [ 32] [ 6] [668899] +19:54:19 [ 35] [ 32] [6213541000202278=491212010227342] +19:54:19 [ 37] [ 12] [507902573068] +19:54:19 [ 41] [ 8] [03005004] +19:54:19 [ 42] [ 15] [APT ] +19:54:19 [ 43] [ 40] [ OUDOMXAY HOSPITAL OUDOMXA] +19:54:19 [ 49] [ 3] [418] +19:54:19 [ 52] [ 16] [823DF15B7F66690E] +19:54:19 ============================================================================ +19:54:19 + + +waiting on router queue for slot.... +19:54:19 Sending to : +19:54:19 ============================================================================ +19:54:19 ============================================================================ +19:54:19 Slot Id : <397> +19:54:19 Transaction Type : REQUEST +19:54:19 Received From : +19:54:19 ============================================================================ +19:54:19 FNo. Len. Field Value +19:54:19 ============================================================================ +19:54:19 [ 1] [ 4] [0200] +19:54:19 [ 2] [ 16] [6213541000202278] +19:54:19 [ 3] [ 6] [300000] +19:54:19 [ 4] [ 12] [000000000000] +19:54:19 [ 7] [ 10] [0320195208] +19:54:19 [ 11] [ 6] [956643] +19:54:19 [ 12] [ 6] [195208] +19:54:19 [ 13] [ 4] [0320] +19:54:19 [ 15] [ 4] [0320] +19:54:19 [ 18] [ 4] [6011] +19:54:19 [ 19] [ 3] [418] +19:54:19 [ 22] [ 3] [021] +19:54:19 [ 25] [ 2] [01] +19:54:19 [ 28] [ 9] [D00000000] +19:54:19 [ 32] [ 6] [668899] +19:54:19 [ 35] [ 32] [6213541000202278=491212010227342] +19:54:19 [ 37] [ 12] [507902573068] +19:54:19 [ 41] [ 8] [03005004] +19:54:19 [ 42] [ 15] [APT ] +19:54:19 [ 43] [ 40] [ OUDOMXAY HOSPITAL OUDOMXA] +19:54:19 [ 49] [ 3] [418] +19:54:19 [ 52] [ 16] [CFC63A1825CC3390] +19:54:19 ============================================================================ +19:54:19 + + +waiting on router queue for slot.... +19:54:19 Sending to : <0> +19:54:19 ============================================================================ +19:54:19 ============================================================================ +19:54:19 Slot Id : <397> +19:54:19 Transaction Type : RESPONSE +19:54:19 Received From : +19:54:19 ============================================================================ +19:54:19 FNo. Len. Field Value +19:54:19 ============================================================================ +19:54:19 [ 1] [ 4] [0210] +19:54:19 [ 2] [ 16] [6213541000202278] +19:54:19 [ 3] [ 6] [300000] +19:54:19 [ 4] [ 12] [000000000000] +19:54:19 [ 7] [ 10] [0320195208] +19:54:19 [ 11] [ 6] [956643] +19:54:19 [ 12] [ 6] [195208] +19:54:19 [ 13] [ 4] [0320] +19:54:19 [ 15] [ 4] [0320] +19:54:19 [ 18] [ 4] [6011] +19:54:19 [ 19] [ 3] [418] +19:54:19 [ 32] [ 6] [668899] +19:54:19 [ 35] [ 32] [6213541000202278=491212010227342] +19:54:19 [ 37] [ 12] [507902573068] +19:54:19 [ 38] [ 6] [860492] +19:54:19 [ 39] [ 2] [00] +19:54:19 [ 41] [ 8] [03005004] +19:54:19 [ 49] [ 3] [418] +19:54:19 [ 54] [ 40] [0001418C0000107441260002418C000010744126] +19:54:19 ============================================================================ +19:54:19 Sending to : +19:54:19 ============================================================================ +19:54:19 + + +waiting on router queue for slot.... +19:54:19 ============================================================================ +19:54:19 Slot Id : <394> +19:54:19 Transaction Type : RESPONSE +19:54:19 Received From : +19:54:19 ============================================================================ +19:54:19 FNo. Len. Field Value +19:54:19 ============================================================================ +19:54:19 [ 1] [ 4] [0210] +19:54:19 [ 2] [ 16] [6213544001921862] +19:54:19 [ 3] [ 6] [011000] +19:54:19 [ 4] [ 12] [000010000000] +19:54:19 [ 7] [ 10] [0320200201] +19:54:19 [ 11] [ 6] [240897] +19:54:19 [ 12] [ 6] [200201] +19:54:19 [ 13] [ 4] [0320] +19:54:19 [ 15] [ 4] [0320] +19:54:19 [ 18] [ 4] [6011] +19:54:19 [ 32] [ 6] [220699] +19:54:19 [ 35] [ 32] [6213544001921862=491212012186292] +19:54:19 [ 37] [ 12] [507900410473] +19:54:19 [ 38] [ 6] [977041] +19:54:19 [ 39] [ 2] [00] +19:54:19 [ 41] [ 8] [08000300] +19:54:19 [ 49] [ 3] [418] +19:54:19 [ 54] [ 40] [1001418C0000366499701002418C000036649970] +19:54:19 ============================================================================ +19:54:19 Calculate Source COMM Id = 1 +19:54:19 ============================================================================ +19:54:19 + + +waiting on router queue for slot.... +19:54:21 ============================================================================ +19:54:21 Slot Id : <397> +19:54:21 Transaction Type : RESPONSE +19:54:21 Received From : +19:54:21 ============================================================================ +19:54:21 FNo. Len. Field Value +19:54:21 ============================================================================ +19:54:21 [ 1] [ 4] [0210] +19:54:21 [ 2] [ 16] [6213541000202278] +19:54:21 [ 3] [ 6] [300000] +19:54:21 [ 4] [ 12] [000000000000] +19:54:21 [ 7] [ 10] [0320195208] +19:54:21 [ 11] [ 6] [956643] +19:54:21 [ 12] [ 6] [195208] +19:54:21 [ 13] [ 4] [0320] +19:54:21 [ 15] [ 4] [0320] +19:54:21 [ 18] [ 4] [6011] +19:54:21 [ 19] [ 3] [418] +19:54:21 [ 32] [ 6] [668899] +19:54:21 [ 35] [ 32] [6213541000202278=491212010227342] +19:54:21 [ 37] [ 12] [507902573068] +19:54:21 [ 38] [ 6] [860492] +19:54:21 [ 39] [ 2] [00] +19:54:21 [ 41] [ 8] [03005004] +19:54:21 [ 49] [ 3] [418] +19:54:21 [ 54] [ 40] [0001418C0000107441260002418C000010744126] +19:54:21 ============================================================================ +19:54:21 Calculate Source COMM Id = 4 +19:54:21 ============================================================================ +19:54:21 + + +waiting on router queue for slot.... +19:54:28 ============================================================================ +19:54:28 Slot Id : <387> +19:54:28 Transaction Type : REQUEST +19:54:28 Received From : +19:54:28 ============================================================================ +19:54:28 FNo. Len. Field Value +19:54:28 ============================================================================ +19:54:28 [ 1] [ 4] [0800] +19:54:28 [ 7] [ 10] [0320125334] +19:54:28 [ 11] [ 6] [158067] +19:54:28 [ 70] [ 3] [301] +19:54:28 ============================================================================ +19:54:28 + + +waiting on router queue for slot.... +19:54:28 Sending to : +19:54:28 ============================================================================ +19:54:28 ============================================================================ +19:54:28 Slot Id : <387> +19:54:28 Transaction Type : RESPONSE +19:54:28 Received From : +19:54:28 ============================================================================ +19:54:28 FNo. Len. Field Value +19:54:28 ============================================================================ +19:54:28 [ 1] [ 4] [0810] +19:54:28 [ 7] [ 10] [0320125334] +19:54:28 [ 11] [ 6] [158067] +19:54:28 [ 39] [ 2] [00] +19:54:28 [ 70] [ 3] [301] +19:54:28 ============================================================================ +19:54:28 Calculate Source COMM Id = 2 +19:54:28 ============================================================================ +19:54:28 + + +waiting on router queue for slot.... +19:54:44 ============================================================================ +19:54:44 Slot Id : <418> +19:54:44 Transaction Type : REQUEST +19:54:44 Received From : +19:54:44 ============================================================================ +19:54:44 FNo. Len. Field Value +19:54:44 ============================================================================ +19:54:44 [ 1] [ 4] [0800] +19:54:44 [ 7] [ 10] [0320125350] +19:54:44 [ 11] [ 6] [158068] +19:54:44 [ 70] [ 3] [301] +19:54:44 ============================================================================ +19:54:44 + + +waiting on router queue for slot.... +19:54:44 Sending to : +19:54:44 ============================================================================ +19:54:44 ============================================================================ +19:54:44 Slot Id : <418> +19:54:44 Transaction Type : RESPONSE +19:54:44 Received From : +19:54:44 ============================================================================ +19:54:44 FNo. Len. Field Value +19:54:44 ============================================================================ +19:54:44 [ 1] [ 4] [0810] +19:54:44 [ 7] [ 10] [0320125350] +19:54:44 [ 11] [ 6] [158068] +19:54:44 [ 39] [ 2] [00] +19:54:44 [ 70] [ 3] [301] +19:54:44 ============================================================================ +19:54:44 Calculate Source COMM Id = 2 +19:54:44 ============================================================================ +19:54:44 + + +waiting on router queue for slot.... +19:54:49 ============================================================================ +19:54:49 Slot Id : <399> +19:54:49 Transaction Type : REQUEST +19:54:49 Received From : +19:54:49 ============================================================================ +19:54:49 FNo. Len. Field Value +19:54:49 ============================================================================ +19:54:49 [ 1] [ 4] [0200] +19:54:49 [ 2] [ 16] [6213541000281777] +19:54:49 [ 3] [ 6] [010000] +19:54:49 [ 4] [ 12] [000100000000] +19:54:49 [ 7] [ 10] [0320125355] +19:54:49 [ 11] [ 6] [271511] +19:54:49 [ 12] [ 6] [195355] +19:54:49 [ 13] [ 4] [0320] +19:54:49 [ 14] [ 4] [4912] +19:54:49 [ 15] [ 4] [0320] +19:54:49 [ 18] [ 4] [6011] +19:54:49 [ 19] [ 3] [418] +19:54:49 [ 22] [ 3] [021] +19:54:49 [ 25] [ 2] [01] +19:54:49 [ 28] [ 9] [D00002000] +19:54:49 [ 32] [ 6] [180893] +19:54:49 [ 35] [ 32] [6213541000281777=491212018177176] +19:54:49 [ 37] [ 12] [507912271511] +19:54:49 [ 41] [ 8] [0441VT52] +19:54:49 [ 42] [ 15] [999999 ] +19:54:49 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:54:49 [ 49] [ 3] [418] +19:54:49 [ 52] [ 16] [9C548B4C94AD5BD8] +19:54:49 ============================================================================ +19:54:49 + + +waiting on router queue for slot.... +19:54:49 Sending to : +19:54:49 ============================================================================ +19:54:49 Sending to : +19:54:49 ============================================================================ +19:54:50 ============================================================================ +19:54:50 Slot Id : <399> +19:54:50 Transaction Type : REQUEST +19:54:50 Received From : +19:54:50 ============================================================================ +19:54:50 FNo. Len. Field Value +19:54:50 ============================================================================ +19:54:50 [ 1] [ 4] [0200] +19:54:50 [ 2] [ 16] [6213541000281777] +19:54:50 [ 3] [ 6] [010000] +19:54:50 [ 4] [ 12] [000100000000] +19:54:50 [ 7] [ 10] [0320125355] +19:54:50 [ 11] [ 6] [271511] +19:54:50 [ 12] [ 6] [195355] +19:54:50 [ 13] [ 4] [0320] +19:54:50 [ 14] [ 4] [4912] +19:54:50 [ 15] [ 4] [0320] +19:54:50 [ 18] [ 4] [6011] +19:54:50 [ 19] [ 3] [418] +19:54:50 [ 22] [ 3] [021] +19:54:50 [ 25] [ 2] [01] +19:54:50 [ 28] [ 9] [D00002000] +19:54:50 [ 32] [ 6] [180893] +19:54:50 [ 35] [ 32] [6213541000281777=491212018177176] +19:54:50 [ 37] [ 12] [507912271511] +19:54:50 [ 41] [ 8] [0441VT52] +19:54:50 [ 42] [ 15] [999999 ] +19:54:50 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:54:50 [ 49] [ 3] [418] +19:54:50 [ 52] [ 16] [9C548B4C94AD5BD8] +19:54:50 ============================================================================ +19:54:50 + + +waiting on router queue for slot.... +19:54:50 Sending to : +19:54:50 ============================================================================ +19:54:50 ============================================================================ +19:54:50 Slot Id : <399> +19:54:50 Transaction Type : REQUEST +19:54:50 Received From : +19:54:50 ============================================================================ +19:54:50 FNo. Len. Field Value +19:54:50 ============================================================================ +19:54:50 [ 1] [ 4] [0200] +19:54:50 [ 2] [ 16] [6213541000281777] +19:54:50 [ 3] [ 6] [010000] +19:54:50 [ 4] [ 12] [000100000000] +19:54:50 [ 7] [ 10] [0320125355] +19:54:50 [ 11] [ 6] [271511] +19:54:50 [ 12] [ 6] [195355] +19:54:50 [ 13] [ 4] [0320] +19:54:50 [ 14] [ 4] [4912] +19:54:50 [ 15] [ 4] [0320] +19:54:50 [ 18] [ 4] [6011] +19:54:50 [ 19] [ 3] [418] +19:54:50 [ 22] [ 3] [021] +19:54:50 [ 25] [ 2] [01] +19:54:50 [ 28] [ 9] [D00002000] +19:54:50 [ 32] [ 6] [180893] +19:54:50 [ 35] [ 32] [6213541000281777=491212018177176] +19:54:50 [ 37] [ 12] [507912271511] +19:54:50 [ 41] [ 8] [0441VT52] +19:54:50 [ 42] [ 15] [999999 ] +19:54:50 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:54:50 [ 49] [ 3] [418] +19:54:50 [ 52] [ 16] [C800533275ADBEA5] +19:54:50 ============================================================================ +19:54:50 + + +waiting on router queue for slot.... +19:54:50 Sending to : <0> +19:54:50 ============================================================================ +19:54:50 ============================================================================ +19:54:50 Slot Id : <399> +19:54:50 Transaction Type : RESPONSE +19:54:50 Received From : +19:54:50 ============================================================================ +19:54:50 FNo. Len. Field Value +19:54:50 ============================================================================ +19:54:50 [ 1] [ 4] [0210] +19:54:50 [ 2] [ 16] [6213541000281777] +19:54:50 [ 3] [ 6] [010000] +19:54:50 [ 4] [ 12] [000100000000] +19:54:50 [ 7] [ 10] [0320125355] +19:54:50 [ 11] [ 6] [271511] +19:54:50 [ 12] [ 6] [195355] +19:54:50 [ 13] [ 4] [0320] +19:54:50 [ 15] [ 4] [0320] +19:54:50 [ 18] [ 4] [6011] +19:54:50 [ 19] [ 3] [418] +19:54:50 [ 32] [ 6] [180893] +19:54:50 [ 35] [ 32] [6213541000281777=491212018177176] +19:54:50 [ 37] [ 12] [507912271511] +19:54:50 [ 38] [ 6] [736224] +19:54:50 [ 39] [ 2] [00] +19:54:50 [ 41] [ 8] [0441VT52] +19:54:50 [ 49] [ 3] [418] +19:54:50 [ 54] [ 40] [0001418C0003778447700002418C000377844770] +19:54:50 ============================================================================ +19:54:50 Sending to : +19:54:50 ============================================================================ +19:54:50 + + +waiting on router queue for slot.... +19:54:52 ============================================================================ +19:54:52 Slot Id : <399> +19:54:52 Transaction Type : RESPONSE +19:54:52 Received From : +19:54:52 ============================================================================ +19:54:52 FNo. Len. Field Value +19:54:52 ============================================================================ +19:54:52 [ 1] [ 4] [0210] +19:54:52 [ 2] [ 16] [6213541000281777] +19:54:52 [ 3] [ 6] [010000] +19:54:52 [ 4] [ 12] [000100000000] +19:54:52 [ 7] [ 10] [0320125355] +19:54:52 [ 11] [ 6] [271511] +19:54:52 [ 12] [ 6] [195355] +19:54:52 [ 13] [ 4] [0320] +19:54:52 [ 15] [ 4] [0320] +19:54:52 [ 18] [ 4] [6011] +19:54:52 [ 19] [ 3] [418] +19:54:52 [ 32] [ 6] [180893] +19:54:52 [ 35] [ 32] [6213541000281777=491212018177176] +19:54:52 [ 37] [ 12] [507912271511] +19:54:52 [ 38] [ 6] [736224] +19:54:52 [ 39] [ 2] [00] +19:54:52 [ 41] [ 8] [0441VT52] +19:54:52 [ 49] [ 3] [418] +19:54:52 [ 54] [ 40] [0001418C0003778447700002418C000377844770] +19:54:52 ============================================================================ +19:54:52 Calculate Source COMM Id = 2 +19:54:52 ============================================================================ +19:54:52 + + +waiting on router queue for slot.... +19:54:57 ============================================================================ +19:54:57 Slot Id : <372> +19:54:57 Transaction Type : REQUEST +19:54:57 Received From : +19:54:57 ============================================================================ +19:54:57 FNo. Len. Field Value +19:54:57 ============================================================================ +19:54:57 [ 1] [ 4] [0800] +19:54:57 [ 7] [ 10] [0321030645] +19:54:57 [ 11] [ 6] [200645] +19:54:57 [ 37] [ 12] [57920200645] +19:54:57 [ 70] [ 3] [301] +19:54:57 ============================================================================ +19:54:57 + + +waiting on router queue for slot.... +19:54:57 Sending to : +19:54:57 ============================================================================ +19:54:57 ============================================================================ +19:54:57 Slot Id : <372> +19:54:57 Transaction Type : RESPONSE +19:54:57 Received From : +19:54:57 ============================================================================ +19:54:57 FNo. Len. Field Value +19:54:57 ============================================================================ +19:54:57 [ 1] [ 4] [0810] +19:54:57 [ 7] [ 10] [0321030645] +19:54:57 [ 11] [ 6] [200645] +19:54:57 [ 37] [ 12] [579202006450] +19:54:57 [ 39] [ 2] [00] +19:54:57 [ 70] [ 3] [810] +19:54:57 ============================================================================ +19:54:57 Calculate Source COMM Id = 6 +19:54:57 ============================================================================ +19:54:57 + + +waiting on router queue for slot.... +19:54:57 ============================================================================ +19:54:57 Slot Id : <406> +19:54:57 Transaction Type : REQUEST +19:54:57 Received From : +19:54:57 ============================================================================ +19:54:57 FNo. Len. Field Value +19:54:57 ============================================================================ +19:54:57 [ 1] [ 4] [0800] +19:54:57 [ 7] [ 10] [0320130242] +19:54:57 [ 11] [ 6] [029664] +19:54:57 [ 37] [ 12] [57920029664] +19:54:57 [ 70] [ 3] [301] +19:54:57 ============================================================================ +19:54:57 + + +waiting on router queue for slot.... +19:54:57 Sending to : +19:54:57 ============================================================================ +19:54:57 ============================================================================ +19:54:57 Slot Id : <406> +19:54:57 Transaction Type : RESPONSE +19:54:57 Received From : +19:54:57 ============================================================================ +19:54:57 FNo. Len. Field Value +19:54:57 ============================================================================ +19:54:57 [ 1] [ 4] [0810] +19:54:57 [ 7] [ 10] [0320130242] +19:54:57 [ 11] [ 6] [029664] +19:54:57 [ 37] [ 12] [579200296640] +19:54:57 [ 39] [ 2] [00] +19:54:57 [ 70] [ 3] [810] +19:54:57 ============================================================================ +19:54:57 Calculate Source COMM Id = 1 +19:54:57 ============================================================================ +19:54:57 + + +waiting on router queue for slot.... +19:55:04 ============================================================================ +19:55:04 Slot Id : <368> +19:55:04 Transaction Type : REQUEST +19:55:04 Received From : +19:55:04 ============================================================================ +19:55:04 FNo. Len. Field Value +19:55:04 ============================================================================ +19:55:04 [ 1] [ 4] [0800] +19:55:04 [ 7] [ 10] [0320125411] +19:55:04 [ 11] [ 6] [158069] +19:55:04 [ 70] [ 3] [301] +19:55:04 ============================================================================ +19:55:04 + + +waiting on router queue for slot.... +19:55:04 Sending to : +19:55:04 ============================================================================ +19:55:04 ============================================================================ +19:55:04 Slot Id : <368> +19:55:04 Transaction Type : RESPONSE +19:55:04 Received From : +19:55:04 ============================================================================ +19:55:04 FNo. Len. Field Value +19:55:04 ============================================================================ +19:55:04 [ 1] [ 4] [0810] +19:55:04 [ 7] [ 10] [0320125411] +19:55:04 [ 11] [ 6] [158069] +19:55:04 [ 39] [ 2] [00] +19:55:04 [ 70] [ 3] [301] +19:55:04 ============================================================================ +19:55:04 Calculate Source COMM Id = 2 +19:55:04 ============================================================================ +19:55:04 + + +waiting on router queue for slot.... +19:55:08 ============================================================================ +19:55:08 Slot Id : <419> +19:55:08 Transaction Type : REQUEST +19:55:08 Received From : +19:55:08 ============================================================================ +19:55:08 FNo. Len. Field Value +19:55:08 ============================================================================ +19:55:08 [ 1] [ 4] [0200] +19:55:08 [ 2] [ 16] [1808930600012892] +19:55:08 [ 3] [ 6] [301000] +19:55:08 [ 4] [ 12] [000000000000] +19:55:08 [ 7] [ 10] [0320195503] +19:55:08 [ 11] [ 6] [839716] +19:55:08 [ 12] [ 6] [195503] +19:55:08 [ 13] [ 4] [0320] +19:55:08 [ 15] [ 4] [0320] +19:55:08 [ 18] [ 4] [6011] +19:55:08 [ 22] [ 3] [900] +19:55:08 [ 25] [ 2] [02] +19:55:08 [ 28] [ 9] [D00000000] +19:55:08 [ 32] [ 6] [621354] +19:55:08 [ 35] [ 27] [1808930600012892=1803500809] +19:55:08 [ 37] [ 12] [507904238408] +19:55:08 [ 41] [ 8] [03002200] +19:55:08 [ 42] [ 15] [NATIVE ] +19:55:08 [ 43] [ 40] [Savannakhet Branch KaisonephomvLAO] +19:55:08 [ 49] [ 3] [418] +19:55:08 [ 52] [ 16] [47CA4ABF349ABFD9] +19:55:08 ============================================================================ +19:55:08 + + +waiting on router queue for slot.... +19:55:09 Sending to : +19:55:09 ============================================================================ +19:55:09 Sending to : +19:55:09 ============================================================================ +19:55:09 ============================================================================ +19:55:09 Slot Id : <419> +19:55:09 Transaction Type : REQUEST +19:55:09 Received From : +19:55:09 ============================================================================ +19:55:09 FNo. Len. Field Value +19:55:09 ============================================================================ +19:55:09 [ 1] [ 4] [0200] +19:55:09 [ 2] [ 16] [1808930600012892] +19:55:09 [ 3] [ 6] [301000] +19:55:09 [ 4] [ 12] [000000000000] +19:55:09 [ 7] [ 10] [0320195503] +19:55:09 [ 11] [ 6] [839716] +19:55:09 [ 12] [ 6] [195503] +19:55:09 [ 13] [ 4] [0320] +19:55:09 [ 15] [ 4] [0320] +19:55:09 [ 18] [ 4] [6011] +19:55:09 [ 22] [ 3] [900] +19:55:09 [ 25] [ 2] [02] +19:55:09 [ 28] [ 9] [D00000000] +19:55:09 [ 32] [ 6] [621354] +19:55:09 [ 35] [ 27] [1808930600012892=1803500809] +19:55:09 [ 37] [ 12] [507904238408] +19:55:09 [ 41] [ 8] [03002200] +19:55:09 [ 42] [ 15] [NATIVE ] +19:55:09 [ 43] [ 40] [Savannakhet Branch KaisonephomvLAO] +19:55:09 [ 49] [ 3] [418] +19:55:09 [ 52] [ 16] [47CA4ABF349ABFD9] +19:55:09 ============================================================================ +19:55:09 + + +waiting on router queue for slot.... +19:55:09 Sending to : +19:55:09 ============================================================================ +19:55:09 ============================================================================ +19:55:09 Slot Id : <419> +19:55:09 Transaction Type : REQUEST +19:55:09 Received From : +19:55:09 ============================================================================ +19:55:09 FNo. Len. Field Value +19:55:09 ============================================================================ +19:55:09 [ 1] [ 4] [0200] +19:55:09 [ 2] [ 16] [1808930600012892] +19:55:09 [ 3] [ 6] [301000] +19:55:09 [ 4] [ 12] [000000000000] +19:55:09 [ 7] [ 10] [0320195503] +19:55:09 [ 11] [ 6] [839716] +19:55:09 [ 12] [ 6] [195503] +19:55:09 [ 13] [ 4] [0320] +19:55:09 [ 15] [ 4] [0320] +19:55:09 [ 18] [ 4] [6011] +19:55:09 [ 22] [ 3] [900] +19:55:09 [ 25] [ 2] [02] +19:55:09 [ 28] [ 9] [D00000000] +19:55:09 [ 32] [ 6] [621354] +19:55:09 [ 35] [ 27] [1808930600012892=1803500809] +19:55:09 [ 37] [ 12] [507904238408] +19:55:09 [ 41] [ 8] [03002200] +19:55:09 [ 42] [ 15] [NATIVE ] +19:55:09 [ 43] [ 40] [Savannakhet Branch KaisonephomvLAO] +19:55:09 [ 49] [ 3] [418] +19:55:09 [ 52] [ 16] [6828D1BE746896E9] +19:55:09 ============================================================================ +19:55:09 + + +waiting on router queue for slot.... +19:55:09 Sending to : <2> +19:55:09 ============================================================================ +19:55:11 ============================================================================ +19:55:11 Slot Id : <411> +19:55:11 Transaction Type : REQUEST +19:55:11 Received From : +19:55:11 ============================================================================ +19:55:11 FNo. Len. Field Value +19:55:11 ============================================================================ +19:55:11 [ 1] [ 4] [0200] +19:55:11 [ 2] [ 16] [6688990040166181] +19:55:11 [ 3] [ 6] [011000] +19:55:11 [ 4] [ 12] [000030000000] +19:55:11 [ 7] [ 10] [0320195506] +19:55:11 [ 11] [ 6] [839718] +19:55:11 [ 12] [ 6] [195506] +19:55:11 [ 13] [ 4] [0320] +19:55:11 [ 15] [ 4] [0320] +19:55:11 [ 18] [ 4] [6011] +19:55:11 [ 22] [ 3] [900] +19:55:11 [ 25] [ 2] [02] +19:55:11 [ 28] [ 9] [D00002000] +19:55:11 [ 32] [ 6] [621354] +19:55:11 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:55:11 [ 37] [ 12] [507903525258] +19:55:11 [ 41] [ 8] [09000900] +19:55:11 [ 42] [ 15] [NATIVE ] +19:55:11 [ 43] [ 40] [VTC Branch03 ChanthaboulyLAO] +19:55:11 [ 49] [ 3] [418] +19:55:11 [ 52] [ 16] [794B63017FF69CA2] +19:55:11 ============================================================================ +19:55:11 + + +waiting on router queue for slot.... +19:55:11 Sending to : +19:55:11 ============================================================================ +19:55:11 Sending to : +19:55:11 ============================================================================ +19:55:11 ============================================================================ +19:55:11 Slot Id : <411> +19:55:11 Transaction Type : REQUEST +19:55:11 Received From : +19:55:11 ============================================================================ +19:55:11 FNo. Len. Field Value +19:55:11 ============================================================================ +19:55:11 [ 1] [ 4] [0200] +19:55:11 [ 2] [ 16] [6688990040166181] +19:55:11 [ 3] [ 6] [011000] +19:55:11 [ 4] [ 12] [000030000000] +19:55:11 [ 7] [ 10] [0320195506] +19:55:11 [ 11] [ 6] [839718] +19:55:11 [ 12] [ 6] [195506] +19:55:11 [ 13] [ 4] [0320] +19:55:11 [ 15] [ 4] [0320] +19:55:11 [ 18] [ 4] [6011] +19:55:11 [ 22] [ 3] [900] +19:55:11 [ 25] [ 2] [02] +19:55:11 [ 28] [ 9] [D00002000] +19:55:11 [ 32] [ 6] [621354] +19:55:11 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:55:11 [ 37] [ 12] [507903525258] +19:55:11 [ 41] [ 8] [09000900] +19:55:11 [ 42] [ 15] [NATIVE ] +19:55:11 [ 43] [ 40] [VTC Branch03 ChanthaboulyLAO] +19:55:11 [ 49] [ 3] [418] +19:55:11 [ 52] [ 16] [794B63017FF69CA2] +19:55:11 ============================================================================ +19:55:11 + + +waiting on router queue for slot.... +19:55:11 Sending to : +19:55:11 ============================================================================ +19:55:11 ============================================================================ +19:55:11 Slot Id : <411> +19:55:11 Transaction Type : REQUEST +19:55:11 Received From : +19:55:11 ============================================================================ +19:55:11 FNo. Len. Field Value +19:55:11 ============================================================================ +19:55:11 [ 1] [ 4] [0200] +19:55:11 [ 2] [ 16] [6688990040166181] +19:55:11 [ 3] [ 6] [011000] +19:55:11 [ 4] [ 12] [000030000000] +19:55:11 [ 7] [ 10] [0320195506] +19:55:11 [ 11] [ 6] [839718] +19:55:11 [ 12] [ 6] [195506] +19:55:11 [ 13] [ 4] [0320] +19:55:11 [ 15] [ 4] [0320] +19:55:11 [ 18] [ 4] [6011] +19:55:11 [ 22] [ 3] [900] +19:55:11 [ 25] [ 2] [02] +19:55:11 [ 28] [ 9] [D00002000] +19:55:11 [ 32] [ 6] [621354] +19:55:11 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:55:11 [ 37] [ 12] [507903525258] +19:55:11 [ 41] [ 8] [09000900] +19:55:11 [ 42] [ 15] [NATIVE ] +19:55:11 [ 43] [ 40] [VTC Branch03 ChanthaboulyLAO] +19:55:11 [ 49] [ 3] [418] +19:55:11 [ 52] [ 16] [04BA0F1B7555CAEA] +19:55:11 ============================================================================ +19:55:11 + + +waiting on router queue for slot.... +19:55:11 Sending to : <4> +19:55:11 ============================================================================ +19:55:11 ============================================================================ +19:55:11 Slot Id : <419> +19:55:11 Transaction Type : RESPONSE +19:55:11 Received From : +19:55:11 ============================================================================ +19:55:11 FNo. Len. Field Value +19:55:11 ============================================================================ +19:55:11 [ 1] [ 4] [0210] +19:55:11 [ 2] [ 16] [1808930600012892] +19:55:11 [ 3] [ 6] [301000] +19:55:11 [ 7] [ 10] [0320195503] +19:55:11 [ 11] [ 6] [839716] +19:55:11 [ 12] [ 6] [195503] +19:55:11 [ 13] [ 4] [0320] +19:55:11 [ 14] [ 4] [1803] +19:55:11 [ 19] [ 3] [418] +19:55:11 [ 32] [ 6] [621354] +19:55:11 [ 37] [ 12] [507904238408] +19:55:11 [ 38] [ 6] [839716] +19:55:11 [ 39] [ 2] [00] +19:55:11 [ 41] [ 8] [03002200] +19:55:11 [ 49] [ 3] [418] +19:55:11 [ 52] [ 16] [6828D1BE746896E9] +19:55:11 [ 54] [ 20] [1002418C000162658600] +19:55:11 ============================================================================ +19:55:11 Sending to : +19:55:11 ============================================================================ +19:55:11 + + +waiting on router queue for slot.... +19:55:11 ============================================================================ +19:55:11 Slot Id : <411> +19:55:11 Transaction Type : RESPONSE +19:55:11 Received From : +19:55:11 ============================================================================ +19:55:11 FNo. Len. Field Value +19:55:11 ============================================================================ +19:55:11 [ 1] [ 4] [0210] +19:55:11 [ 2] [ 16] [6688990040166181] +19:55:11 [ 3] [ 6] [011000] +19:55:11 [ 4] [ 12] [000030000000] +19:55:11 [ 7] [ 10] [0320195506] +19:55:11 [ 11] [ 6] [839718] +19:55:11 [ 12] [ 6] [195506] +19:55:11 [ 13] [ 4] [0320] +19:55:11 [ 15] [ 4] [0320] +19:55:11 [ 18] [ 4] [6011] +19:55:11 [ 22] [ 3] [021] +19:55:11 [ 32] [ 6] [621354] +19:55:11 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:55:11 [ 37] [ 12] [507903525258] +19:55:11 [ 38] [ 6] [195301] +19:55:11 [ 39] [ 2] [75] +19:55:11 [ 41] [ 8] [09000900] +19:55:11 [ 49] [ 3] [418] +19:55:11 ============================================================================ +19:55:11 Sending to : +19:55:11 ============================================================================ +19:55:11 + + +waiting on router queue for slot.... +19:55:11 ============================================================================ +19:55:11 Slot Id : <407> +19:55:11 Transaction Type : REQUEST +19:55:11 Received From : +19:55:11 ============================================================================ +19:55:11 FNo. Len. Field Value +19:55:11 ============================================================================ +19:55:11 [ 1] [ 4] [0800] +19:55:11 [ 2] [ 5] [02531] +19:55:11 [ 3] [ 6] [579198] +19:55:11 [ 7] [ 10] [0320125511] +19:55:11 [ 11] [ 6] [807568] +19:55:11 [ 15] [ 10] [0320125511] +19:55:11 [ 37] [ 11] [57919807568] +19:55:11 [ 70] [ 3] [001] +19:55:11 ============================================================================ +19:55:11 + + +waiting on router queue for slot.... +19:55:11 ============================================================================ +19:55:11 Slot Id : <407> +19:55:11 Transaction Type : RESPONSE +19:55:11 Received From : +19:55:11 ============================================================================ +19:55:11 FNo. Len. Field Value +19:55:11 ============================================================================ +19:55:11 [ 1] [ 4] [0810] +19:55:11 [ 7] [ 10] [0320125511] +19:55:11 [ 11] [ 6] [807568] +19:55:11 [ 15] [ 4] [0320] +19:55:11 [ 37] [ 12] [57919807568] +19:55:11 [ 39] [ 2] [00] +19:55:11 [ 70] [ 3] [001] +19:55:11 ============================================================================ +19:55:11 Sending to : +19:55:11 ============================================================================ +19:55:11 + + +waiting on router queue for slot.... +19:55:13 ============================================================================ +19:55:13 Slot Id : <419> +19:55:13 Transaction Type : RESPONSE +19:55:13 Received From : +19:55:13 ============================================================================ +19:55:13 FNo. Len. Field Value +19:55:13 ============================================================================ +19:55:13 [ 1] [ 4] [0210] +19:55:13 [ 2] [ 16] [1808930600012892] +19:55:13 [ 3] [ 6] [301000] +19:55:13 [ 7] [ 10] [0320195503] +19:55:13 [ 11] [ 6] [839716] +19:55:13 [ 12] [ 6] [195503] +19:55:13 [ 13] [ 4] [0320] +19:55:13 [ 14] [ 4] [1803] +19:55:13 [ 19] [ 3] [418] +19:55:13 [ 32] [ 6] [621354] +19:55:13 [ 37] [ 12] [507904238408] +19:55:13 [ 38] [ 6] [839716] +19:55:13 [ 39] [ 2] [00] +19:55:13 [ 41] [ 8] [03002200] +19:55:13 [ 49] [ 3] [418] +19:55:13 [ 52] [ 16] [6828D1BE746896E9] +19:55:13 [ 54] [ 20] [1002418C000162658600] +19:55:13 ============================================================================ +19:55:13 Calculate Source COMM Id = 0 +19:55:13 ============================================================================ +19:55:13 + + +waiting on router queue for slot.... +19:55:14 ============================================================================ +19:55:14 Slot Id : <411> +19:55:14 Transaction Type : RESPONSE +19:55:14 Received From : +19:55:14 ============================================================================ +19:55:14 FNo. Len. Field Value +19:55:14 ============================================================================ +19:55:14 [ 1] [ 4] [0210] +19:55:14 [ 2] [ 16] [6688990040166181] +19:55:14 [ 3] [ 6] [011000] +19:55:14 [ 4] [ 12] [000030000000] +19:55:14 [ 7] [ 10] [0320195506] +19:55:14 [ 11] [ 6] [839718] +19:55:14 [ 12] [ 6] [195506] +19:55:14 [ 13] [ 4] [0320] +19:55:14 [ 15] [ 4] [0320] +19:55:14 [ 18] [ 4] [6011] +19:55:14 [ 22] [ 3] [021] +19:55:14 [ 32] [ 6] [621354] +19:55:14 [ 35] [ 37] [6688990040166181=98061261139990700000] +19:55:14 [ 37] [ 12] [507903525258] +19:55:14 [ 38] [ 6] [195301] +19:55:14 [ 39] [ 2] [75] +19:55:14 [ 41] [ 8] [09000900] +19:55:14 [ 49] [ 3] [418] +19:55:14 ============================================================================ +19:55:14 Calculate Source COMM Id = 0 +19:55:14 ============================================================================ +19:55:14 + + +waiting on router queue for slot.... +19:55:21 ============================================================================ +19:55:21 Slot Id : <380> +19:55:21 Transaction Type : REQUEST +19:55:21 Received From : +19:55:21 ============================================================================ +19:55:21 FNo. Len. Field Value +19:55:21 ============================================================================ +19:55:21 [ 1] [ 4] [0800] +19:55:21 [ 7] [ 10] [0320125428] +19:55:21 [ 11] [ 6] [158070] +19:55:21 [ 70] [ 3] [301] +19:55:21 ============================================================================ +19:55:21 + + +waiting on router queue for slot.... +19:55:21 Sending to : +19:55:21 ============================================================================ +19:55:21 ============================================================================ +19:55:21 Slot Id : <380> +19:55:21 Transaction Type : RESPONSE +19:55:21 Received From : +19:55:21 ============================================================================ +19:55:21 FNo. Len. Field Value +19:55:21 ============================================================================ +19:55:21 [ 1] [ 4] [0810] +19:55:21 [ 7] [ 10] [0320125428] +19:55:21 [ 11] [ 6] [158070] +19:55:21 [ 39] [ 2] [00] +19:55:21 [ 70] [ 3] [301] +19:55:21 ============================================================================ +19:55:21 Calculate Source COMM Id = 2 +19:55:21 ============================================================================ +19:55:21 + + +waiting on router queue for slot.... +19:55:32 ============================================================================ +19:55:32 Slot Id : <384> +19:55:32 Transaction Type : REQUEST +19:55:32 Received From : +19:55:32 ============================================================================ +19:55:32 FNo. Len. Field Value +19:55:32 ============================================================================ +19:55:32 [ 1] [ 4] [0800] +19:55:32 [ 7] [ 10] [0320125438] +19:55:32 [ 11] [ 6] [158071] +19:55:32 [ 70] [ 3] [301] +19:55:32 ============================================================================ +19:55:32 + + +waiting on router queue for slot.... +19:55:32 Sending to : +19:55:32 ============================================================================ +19:55:32 ============================================================================ +19:55:32 Slot Id : <384> +19:55:32 Transaction Type : RESPONSE +19:55:32 Received From : +19:55:32 ============================================================================ +19:55:32 FNo. Len. Field Value +19:55:32 ============================================================================ +19:55:32 [ 1] [ 4] [0810] +19:55:32 [ 7] [ 10] [0320125438] +19:55:32 [ 11] [ 6] [158071] +19:55:32 [ 39] [ 2] [00] +19:55:32 [ 70] [ 3] [301] +19:55:32 ============================================================================ +19:55:32 Calculate Source COMM Id = 2 +19:55:32 ============================================================================ +19:55:32 + + +waiting on router queue for slot.... +19:55:41 ============================================================================ +19:55:41 Slot Id : <416> +19:55:41 Transaction Type : REQUEST +19:55:41 Received From : +19:55:41 ============================================================================ +19:55:41 FNo. Len. Field Value +19:55:41 ============================================================================ +19:55:41 [ 1] [ 4] [0200] +19:55:41 [ 2] [ 16] [6213541000281777] +19:55:41 [ 3] [ 6] [010000] +19:55:41 [ 4] [ 12] [000050000000] +19:55:41 [ 7] [ 10] [0320125447] +19:55:41 [ 11] [ 6] [271517] +19:55:41 [ 12] [ 6] [195447] +19:55:41 [ 13] [ 4] [0320] +19:55:41 [ 14] [ 4] [4912] +19:55:41 [ 15] [ 4] [0320] +19:55:41 [ 18] [ 4] [6011] +19:55:41 [ 19] [ 3] [418] +19:55:41 [ 22] [ 3] [021] +19:55:41 [ 25] [ 2] [01] +19:55:41 [ 28] [ 9] [D00002000] +19:55:41 [ 32] [ 6] [180893] +19:55:41 [ 35] [ 32] [6213541000281777=491212018177176] +19:55:41 [ 37] [ 12] [507912271517] +19:55:41 [ 41] [ 8] [0441VT52] +19:55:41 [ 42] [ 15] [999999 ] +19:55:41 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:55:41 [ 49] [ 3] [418] +19:55:41 [ 52] [ 16] [9C548B4C94AD5BD8] +19:55:41 ============================================================================ +19:55:41 + + +waiting on router queue for slot.... +19:55:41 Sending to : +19:55:41 ============================================================================ +19:55:41 Sending to : +19:55:41 ============================================================================ +19:55:41 ============================================================================ +19:55:41 Slot Id : <416> +19:55:41 Transaction Type : REQUEST +19:55:41 Received From : +19:55:41 ============================================================================ +19:55:41 FNo. Len. Field Value +19:55:41 ============================================================================ +19:55:41 [ 1] [ 4] [0200] +19:55:41 [ 2] [ 16] [6213541000281777] +19:55:41 [ 3] [ 6] [010000] +19:55:41 [ 4] [ 12] [000050000000] +19:55:41 [ 7] [ 10] [0320125447] +19:55:41 [ 11] [ 6] [271517] +19:55:41 [ 12] [ 6] [195447] +19:55:41 [ 13] [ 4] [0320] +19:55:41 [ 14] [ 4] [4912] +19:55:41 [ 15] [ 4] [0320] +19:55:41 [ 18] [ 4] [6011] +19:55:41 [ 19] [ 3] [418] +19:55:41 [ 22] [ 3] [021] +19:55:41 [ 25] [ 2] [01] +19:55:41 [ 28] [ 9] [D00002000] +19:55:41 [ 32] [ 6] [180893] +19:55:41 [ 35] [ 32] [6213541000281777=491212018177176] +19:55:41 [ 37] [ 12] [507912271517] +19:55:41 [ 41] [ 8] [0441VT52] +19:55:41 [ 42] [ 15] [999999 ] +19:55:41 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:55:41 [ 49] [ 3] [418] +19:55:41 [ 52] [ 16] [9C548B4C94AD5BD8] +19:55:41 ============================================================================ +19:55:41 + + +waiting on router queue for slot.... +19:55:41 Sending to : +19:55:41 ============================================================================ +19:55:41 ============================================================================ +19:55:41 Slot Id : <416> +19:55:41 Transaction Type : REQUEST +19:55:41 Received From : +19:55:41 ============================================================================ +19:55:41 FNo. Len. Field Value +19:55:41 ============================================================================ +19:55:41 [ 1] [ 4] [0200] +19:55:41 [ 2] [ 16] [6213541000281777] +19:55:41 [ 3] [ 6] [010000] +19:55:41 [ 4] [ 12] [000050000000] +19:55:41 [ 7] [ 10] [0320125447] +19:55:41 [ 11] [ 6] [271517] +19:55:41 [ 12] [ 6] [195447] +19:55:41 [ 13] [ 4] [0320] +19:55:41 [ 14] [ 4] [4912] +19:55:41 [ 15] [ 4] [0320] +19:55:41 [ 18] [ 4] [6011] +19:55:41 [ 19] [ 3] [418] +19:55:41 [ 22] [ 3] [021] +19:55:41 [ 25] [ 2] [01] +19:55:41 [ 28] [ 9] [D00002000] +19:55:41 [ 32] [ 6] [180893] +19:55:41 [ 35] [ 32] [6213541000281777=491212018177176] +19:55:41 [ 37] [ 12] [507912271517] +19:55:41 [ 41] [ 8] [0441VT52] +19:55:41 [ 42] [ 15] [999999 ] +19:55:41 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +19:55:41 [ 49] [ 3] [418] +19:55:41 [ 52] [ 16] [C800533275ADBEA5] +19:55:41 ============================================================================ +19:55:41 + + +waiting on router queue for slot.... +19:55:41 Sending to : <0> +19:55:41 ============================================================================ +19:55:42 ============================================================================ +19:55:42 Slot Id : <416> +19:55:42 Transaction Type : RESPONSE +19:55:42 Received From : +19:55:42 ============================================================================ +19:55:42 FNo. Len. Field Value +19:55:42 ============================================================================ +19:55:42 [ 1] [ 4] [0210] +19:55:42 [ 2] [ 16] [6213541000281777] +19:55:42 [ 3] [ 6] [010000] +19:55:42 [ 4] [ 12] [000050000000] +19:55:42 [ 7] [ 10] [0320125447] +19:55:42 [ 11] [ 6] [271517] +19:55:42 [ 12] [ 6] [195447] +19:55:42 [ 13] [ 4] [0320] +19:55:42 [ 15] [ 4] [0320] +19:55:42 [ 18] [ 4] [6011] +19:55:42 [ 19] [ 3] [418] +19:55:42 [ 32] [ 6] [180893] +19:55:42 [ 35] [ 32] [6213541000281777=491212018177176] +19:55:42 [ 37] [ 12] [507912271517] +19:55:42 [ 38] [ 6] [439397] +19:55:42 [ 39] [ 2] [00] +19:55:42 [ 41] [ 8] [0441VT52] +19:55:42 [ 49] [ 3] [418] +19:55:42 [ 54] [ 40] [0001418C0003276447700002418C000327644770] +19:55:42 ============================================================================ +19:55:42 Sending to : +19:55:42 ============================================================================ +19:55:42 + + +waiting on router queue for slot.... +19:55:43 ============================================================================ +19:55:43 Slot Id : <401> +19:55:43 Transaction Type : REQUEST +19:55:43 Received From : +19:55:43 ============================================================================ +19:55:43 FNo. Len. Field Value +19:55:43 ============================================================================ +19:55:43 [ 1] [ 4] [0800] +19:55:43 [ 7] [ 10] [0320125449] +19:55:43 [ 11] [ 6] [158072] +19:55:43 [ 70] [ 3] [301] +19:55:43 ============================================================================ +19:55:43 + + +waiting on router queue for slot.... +19:55:43 Sending to : +19:55:43 ============================================================================ +19:55:43 ============================================================================ +19:55:43 Slot Id : <401> +19:55:43 Transaction Type : RESPONSE +19:55:43 Received From : +19:55:43 ============================================================================ +19:55:43 FNo. Len. Field Value +19:55:43 ============================================================================ +19:55:43 [ 1] [ 4] [0810] +19:55:43 [ 7] [ 10] [0320125449] +19:55:43 [ 11] [ 6] [158072] +19:55:43 [ 39] [ 2] [00] +19:55:43 [ 70] [ 3] [301] +19:55:43 ============================================================================ +19:55:43 Calculate Source COMM Id = 2 +19:55:43 ============================================================================ +19:55:43 + + +waiting on router queue for slot.... +19:55:44 ============================================================================ +19:55:44 Slot Id : <416> +19:55:44 Transaction Type : RESPONSE +19:55:44 Received From : +19:55:44 ============================================================================ +19:55:44 FNo. Len. Field Value +19:55:44 ============================================================================ +19:55:44 [ 1] [ 4] [0210] +19:55:44 [ 2] [ 16] [6213541000281777] +19:55:44 [ 3] [ 6] [010000] +19:55:44 [ 4] [ 12] [000050000000] +19:55:44 [ 7] [ 10] [0320125447] +19:55:44 [ 11] [ 6] [271517] +19:55:44 [ 12] [ 6] [195447] +19:55:44 [ 13] [ 4] [0320] +19:55:44 [ 15] [ 4] [0320] +19:55:44 [ 18] [ 4] [6011] +19:55:44 [ 19] [ 3] [418] +19:55:44 [ 32] [ 6] [180893] +19:55:44 [ 35] [ 32] [6213541000281777=491212018177176] +19:55:44 [ 37] [ 12] [507912271517] +19:55:44 [ 38] [ 6] [439397] +19:55:44 [ 39] [ 2] [00] +19:55:44 [ 41] [ 8] [0441VT52] +19:55:44 [ 49] [ 3] [418] +19:55:44 [ 54] [ 40] [0001418C0003276447700002418C000327644770] +19:55:44 ============================================================================ +19:55:44 Calculate Source COMM Id = 2 +19:55:44 ============================================================================ +19:55:44 + + +waiting on router queue for slot.... +19:55:58 ============================================================================ +19:55:58 Slot Id : <433> +19:55:58 Transaction Type : REQUEST +19:55:58 Received From : +19:55:58 ============================================================================ +19:55:58 FNo. Len. Field Value +19:55:58 ============================================================================ +19:55:58 [ 1] [ 4] [0800] +19:55:58 [ 7] [ 10] [0320125505] +19:55:58 [ 11] [ 6] [158073] +19:55:58 [ 70] [ 3] [301] +19:55:58 ============================================================================ +19:55:58 + + +waiting on router queue for slot.... +19:55:58 Sending to : +19:55:58 ============================================================================ +19:55:58 ============================================================================ +19:55:58 Slot Id : <433> +19:55:58 Transaction Type : RESPONSE +19:55:58 Received From : +19:55:58 ============================================================================ +19:55:58 FNo. Len. Field Value +19:55:58 ============================================================================ +19:55:58 [ 1] [ 4] [0810] +19:55:58 [ 7] [ 10] [0320125505] +19:55:58 [ 11] [ 6] [158073] +19:55:58 [ 39] [ 2] [00] +19:55:58 [ 70] [ 3] [301] +19:55:58 ============================================================================ +19:55:58 Calculate Source COMM Id = 2 +19:55:58 ============================================================================ +19:55:58 + + +waiting on router queue for slot.... +19:55:59 ============================================================================ +19:55:59 Slot Id : <381> +19:55:59 Transaction Type : REQUEST +19:55:59 Received From : +19:55:59 ============================================================================ +19:55:59 FNo. Len. Field Value +19:55:59 ============================================================================ +19:55:59 [ 1] [ 4] [0200] +19:55:59 [ 2] [ 16] [1808930600012892] +19:55:59 [ 3] [ 6] [011000] +19:55:59 [ 4] [ 12] [000020000000] +19:55:59 [ 7] [ 10] [0320195554] +19:55:59 [ 11] [ 6] [839768] +19:55:59 [ 12] [ 6] [195554] +19:55:59 [ 13] [ 4] [0320] +19:55:59 [ 15] [ 4] [0320] +19:55:59 [ 18] [ 4] [6011] +19:55:59 [ 22] [ 3] [900] +19:55:59 [ 25] [ 2] [02] +19:55:59 [ 28] [ 9] [D00002000] +19:55:59 [ 32] [ 6] [621354] +19:55:59 [ 35] [ 27] [1808930600012892=1803500809] +19:55:59 [ 37] [ 12] [507904238410] +19:55:59 [ 41] [ 8] [03002200] +19:55:59 [ 42] [ 15] [NATIVE ] +19:55:59 [ 43] [ 40] [Savannakhet Branch KaisonephomvLAO] +19:55:59 [ 49] [ 3] [418] +19:55:59 [ 52] [ 16] [47CA4ABF349ABFD9] +19:55:59 ============================================================================ +19:55:59 + + +waiting on router queue for slot.... +19:55:59 Sending to : +19:55:59 ============================================================================ +19:55:59 Sending to : +19:55:59 ============================================================================ +19:55:59 ============================================================================ +19:55:59 Slot Id : <381> +19:55:59 Transaction Type : REQUEST +19:55:59 Received From : +19:55:59 ============================================================================ +19:55:59 FNo. Len. Field Value +19:55:59 ============================================================================ +19:55:59 [ 1] [ 4] [0200] +19:55:59 [ 2] [ 16] [1808930600012892] +19:55:59 [ 3] [ 6] [011000] +19:55:59 [ 4] [ 12] [000020000000] +19:55:59 [ 7] [ 10] [0320195554] +19:55:59 [ 11] [ 6] [839768] +19:55:59 [ 12] [ 6] [195554] +19:55:59 [ 13] [ 4] [0320] +19:55:59 [ 15] [ 4] [0320] +19:55:59 [ 18] [ 4] [6011] +19:55:59 [ 22] [ 3] [900] +19:55:59 [ 25] [ 2] [02] +19:55:59 [ 28] [ 9] [D00002000] +19:55:59 [ 32] [ 6] [621354] +19:55:59 [ 35] [ 27] [1808930600012892=1803500809] +19:55:59 [ 37] [ 12] [507904238410] +19:55:59 [ 41] [ 8] [03002200] +19:55:59 [ 42] [ 15] [NATIVE ] +19:55:59 [ 43] [ 40] [Savannakhet Branch KaisonephomvLAO] +19:55:59 [ 49] [ 3] [418] +19:55:59 [ 52] [ 16] [47CA4ABF349ABFD9] +19:55:59 ============================================================================ +19:55:59 + + +waiting on router queue for slot.... +19:55:59 Sending to : +19:55:59 ============================================================================ +19:55:59 ============================================================================ +19:55:59 Slot Id : <381> +19:55:59 Transaction Type : REQUEST +19:55:59 Received From : +19:55:59 ============================================================================ +19:55:59 FNo. Len. Field Value +19:55:59 ============================================================================ +19:55:59 [ 1] [ 4] [0200] +19:55:59 [ 2] [ 16] [1808930600012892] +19:55:59 [ 3] [ 6] [011000] +19:55:59 [ 4] [ 12] [000020000000] +19:55:59 [ 7] [ 10] [0320195554] +19:55:59 [ 11] [ 6] [839768] +19:55:59 [ 12] [ 6] [195554] +19:55:59 [ 13] [ 4] [0320] +19:55:59 [ 15] [ 4] [0320] +19:55:59 [ 18] [ 4] [6011] +19:55:59 [ 22] [ 3] [900] +19:55:59 [ 25] [ 2] [02] +19:55:59 [ 28] [ 9] [D00002000] +19:55:59 [ 32] [ 6] [621354] +19:55:59 [ 35] [ 27] [1808930600012892=1803500809] +19:55:59 [ 37] [ 12] [507904238410] +19:55:59 [ 41] [ 8] [03002200] +19:55:59 [ 42] [ 15] [NATIVE ] +19:55:59 [ 43] [ 40] [Savannakhet Branch KaisonephomvLAO] +19:55:59 [ 49] [ 3] [418] +19:55:59 [ 52] [ 16] [6828D1BE746896E9] +19:55:59 ============================================================================ +19:55:59 + + +waiting on router queue for slot.... +19:55:59 Sending to : <2> +19:55:59 ============================================================================ +19:56:02 ============================================================================ +19:56:02 Slot Id : <420> +19:56:02 Transaction Type : REQUEST +19:56:02 Received From : +19:56:02 ============================================================================ +19:56:02 FNo. Len. Field Value +19:56:02 ============================================================================ +19:56:02 [ 1] [ 4] [0800] +19:56:02 [ 7] [ 10] [0321030750] +19:56:02 [ 11] [ 6] [200750] +19:56:02 [ 37] [ 12] [57920200750] +19:56:02 [ 70] [ 3] [301] +19:56:02 ============================================================================ +19:56:02 + + +waiting on router queue for slot.... +19:56:02 Sending to : +19:56:02 ============================================================================ +19:56:02 ============================================================================ +19:56:02 Slot Id : <420> +19:56:02 Transaction Type : RESPONSE +19:56:02 Received From : +19:56:02 ============================================================================ +19:56:02 FNo. Len. Field Value +19:56:02 ============================================================================ +19:56:02 [ 1] [ 4] [0810] +19:56:02 [ 7] [ 10] [0321030750] +19:56:02 [ 11] [ 6] [200750] +19:56:02 [ 37] [ 12] [579202007500] +19:56:02 [ 39] [ 2] [00] +19:56:02 [ 70] [ 3] [810] +19:56:02 ============================================================================ +19:56:02 Calculate Source COMM Id = 6 +19:56:02 ============================================================================ +19:56:02 + + +waiting on router queue for slot.... +19:56:04 ============================================================================ +19:56:04 Slot Id : <381> +19:56:04 Transaction Type : RESPONSE +19:56:04 Received From : +19:56:04 ============================================================================ +19:56:04 FNo. Len. Field Value +19:56:04 ============================================================================ +19:56:04 [ 1] [ 4] [0210] +19:56:04 [ 2] [ 16] [1808930600012892] +19:56:04 [ 3] [ 6] [011000] +19:56:04 [ 4] [ 12] [000020000000] +19:56:04 [ 6] [ 12] [000020000000] +19:56:04 [ 7] [ 10] [0320195554] +19:56:04 [ 11] [ 6] [839768] +19:56:04 [ 12] [ 6] [195554] +19:56:04 [ 13] [ 4] [0320] +19:56:04 [ 18] [ 4] [6011] +19:56:04 [ 19] [ 3] [418] +19:56:04 [ 22] [ 3] [021] +19:56:04 [ 32] [ 6] [621354] +19:56:04 [ 35] [ 27] [1808930600012892=1803500809] +19:56:04 [ 37] [ 12] [507904238410] +19:56:04 [ 38] [ 6] [839768] +19:56:04 [ 39] [ 2] [00] +19:56:04 [ 41] [ 8] [03002200] +19:56:04 [ 49] [ 3] [418] +19:56:04 [ 52] [ 16] [6828D1BE746896E9] +19:56:04 [ 54] [ 20] [1001418C000142458600] +19:56:04 ============================================================================ +19:56:04 Sending to : +19:56:04 ============================================================================ +19:56:04 + + +waiting on router queue for slot.... +19:56:04 ============================================================================ +19:56:04 Slot Id : <398> +19:56:04 Transaction Type : REQUEST +19:56:04 Received From : +19:56:04 ============================================================================ +19:56:04 FNo. Len. Field Value +19:56:04 ============================================================================ +19:56:04 [ 1] [ 4] [0200] +19:56:04 [ 2] [ 16] [6213544001991394] +19:56:04 [ 3] [ 6] [010000] +19:56:04 [ 4] [ 12] [000010000000] +19:56:04 [ 7] [ 10] [0320195353] +19:56:04 [ 11] [ 6] [956662] +19:56:04 [ 12] [ 6] [195353] +19:56:04 [ 13] [ 4] [0320] +19:56:04 [ 15] [ 4] [0320] +19:56:04 [ 18] [ 4] [6011] +19:56:04 [ 19] [ 3] [418] +19:56:04 [ 22] [ 3] [021] +19:56:04 [ 25] [ 2] [01] +19:56:04 [ 28] [ 9] [D00002000] +19:56:04 [ 32] [ 6] [668899] +19:56:04 [ 35] [ 32] [6213544001991394=491212019139640] +19:56:04 [ 37] [ 12] [507900168759] +19:56:04 [ 41] [ 8] [03020007] +19:56:04 [ 42] [ 15] [APT ] +19:56:04 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +19:56:04 [ 49] [ 3] [418] +19:56:04 [ 52] [ 16] [080757AC426BC7AC] +19:56:04 ============================================================================ +19:56:04 + + +waiting on router queue for slot.... +19:56:04 Sending to : +19:56:04 ============================================================================ +19:56:04 Sending to : +19:56:04 ============================================================================ +19:56:04 ============================================================================ +19:56:04 Slot Id : <398> +19:56:04 Transaction Type : REQUEST +19:56:04 Received From : +19:56:04 ============================================================================ +19:56:04 FNo. Len. Field Value +19:56:04 ============================================================================ +19:56:04 [ 1] [ 4] [0200] +19:56:04 [ 2] [ 16] [6213544001991394] +19:56:04 [ 3] [ 6] [010000] +19:56:04 [ 4] [ 12] [000010000000] +19:56:04 [ 7] [ 10] [0320195353] +19:56:04 [ 11] [ 6] [956662] +19:56:04 [ 12] [ 6] [195353] +19:56:04 [ 13] [ 4] [0320] +19:56:04 [ 15] [ 4] [0320] +19:56:04 [ 18] [ 4] [6011] +19:56:04 [ 19] [ 3] [418] +19:56:04 [ 22] [ 3] [021] +19:56:04 [ 25] [ 2] [01] +19:56:04 [ 28] [ 9] [D00002000] +19:56:04 [ 32] [ 6] [668899] +19:56:04 [ 35] [ 32] [6213544001991394=491212019139640] +19:56:04 [ 37] [ 12] [507900168759] +19:56:04 [ 41] [ 8] [03020007] +19:56:04 [ 42] [ 15] [APT ] +19:56:04 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +19:56:04 [ 49] [ 3] [418] +19:56:04 [ 52] [ 16] [080757AC426BC7AC] +19:56:04 ============================================================================ +19:56:04 + + +waiting on router queue for slot.... +19:56:04 Sending to : +19:56:04 ============================================================================ +19:56:04 ============================================================================ +19:56:04 Slot Id : <398> +19:56:04 Transaction Type : REQUEST +19:56:04 Received From : +19:56:04 ============================================================================ +19:56:04 FNo. Len. Field Value +19:56:04 ============================================================================ +19:56:04 [ 1] [ 4] [0200] +19:56:04 [ 2] [ 16] [6213544001991394] +19:56:04 [ 3] [ 6] [010000] +19:56:04 [ 4] [ 12] [000010000000] +19:56:04 [ 7] [ 10] [0320195353] +19:56:04 [ 11] [ 6] [956662] +19:56:04 [ 12] [ 6] [195353] +19:56:04 [ 13] [ 4] [0320] +19:56:04 [ 15] [ 4] [0320] +19:56:04 [ 18] [ 4] [6011] +19:56:04 [ 19] [ 3] [418] +19:56:04 [ 22] [ 3] [021] +19:56:04 [ 25] [ 2] [01] +19:56:04 [ 28] [ 9] [D00002000] +19:56:04 [ 32] [ 6] [668899] +19:56:04 [ 35] [ 32] [6213544001991394=491212019139640] +19:56:04 [ 37] [ 12] [507900168759] +19:56:04 [ 41] [ 8] [03020007] +19:56:04 [ 42] [ 15] [APT ] +19:56:04 [ 43] [ 40] [ NOUL DONGDOK XAYTHANY DNO] +19:56:04 [ 49] [ 3] [418] +19:56:04 [ 52] [ 16] [96D3FF0789AEB638] +19:56:04 ============================================================================ +19:56:04 + + +waiting on router queue for slot.... +19:56:04 Sending to : <0> +19:56:04 ============================================================================ +19:56:05 ============================================================================ +19:56:05 Slot Id : <398> +19:56:05 Transaction Type : RESPONSE +19:56:05 Received From : +19:56:05 ============================================================================ +19:56:05 FNo. Len. Field Value +19:56:05 ============================================================================ +19:56:05 [ 1] [ 4] [0210] +19:56:05 [ 2] [ 16] [6213544001991394] +19:56:05 [ 3] [ 6] [010000] +19:56:05 [ 4] [ 12] [000010000000] +19:56:05 [ 7] [ 10] [0320195353] +19:56:05 [ 11] [ 6] [956662] +19:56:05 [ 12] [ 6] [195353] +19:56:05 [ 13] [ 4] [0320] +19:56:05 [ 15] [ 4] [0320] +19:56:05 [ 18] [ 4] [6011] +19:56:05 [ 19] [ 3] [418] +19:56:05 [ 32] [ 6] [668899] +19:56:05 [ 35] [ 32] [6213544001991394=491212019139640] +19:56:05 [ 37] [ 12] [507900168759] +19:56:05 [ 38] [ 6] [510287] +19:56:05 [ 39] [ 2] [00] +19:56:05 [ 41] [ 8] [03020007] +19:56:05 [ 49] [ 3] [418] +19:56:05 [ 54] [ 40] [0001418C0000273759900002418C000027375990] +19:56:05 ============================================================================ +19:56:05 Sending to : +19:56:05 ============================================================================ +19:56:05 + + +waiting on router queue for slot.... +19:56:05 ============================================================================ +19:56:05 Slot Id : <381> +19:56:05 Transaction Type : RESPONSE +19:56:05 Received From : +19:56:05 ============================================================================ +19:56:05 FNo. Len. Field Value +19:56:05 ============================================================================ +19:56:05 [ 1] [ 4] [0210] +19:56:05 [ 2] [ 16] [1808930600012892] +19:56:05 [ 3] [ 6] [011000] +19:56:05 [ 4] [ 12] [000020000000] +19:56:05 [ 6] [ 12] [000020000000] +19:56:05 [ 7] [ 10] [0320195554] +19:56:05 [ 11] [ 6] [839768] +19:56:05 [ 12] [ 6] [195554] +19:56:05 [ 13] [ 4] [0320] +19:56:05 [ 18] [ 4] [6011] +19:56:05 [ 19] [ 3] [418] +19:56:05 [ 22] [ 3] [021] +19:56:05 [ 32] [ 6] [621354] +19:56:05 [ 35] [ 27] [1808930600012892=1803500809] +19:56:05 [ 37] [ 12] [507904238410] +19:56:05 [ 38] [ 6] [839768] +19:56:05 [ 39] [ 2] [00] +19:56:05 [ 41] [ 8] [03002200] +19:56:05 [ 49] [ 3] [418] +19:56:05 [ 52] [ 16] [6828D1BE746896E9] +19:56:05 [ 54] [ 20] [1001418C000142458600] +19:56:05 ============================================================================ +19:56:05 Calculate Source COMM Id = 0 +19:56:05 ============================================================================ +19:56:05 + + +waiting on router queue for slot.... +19:56:07 ============================================================================ +19:56:07 Slot Id : <398> +19:56:07 Transaction Type : RESPONSE +19:56:07 Received From : +19:56:07 ============================================================================ +19:56:07 FNo. Len. Field Value +19:56:07 ============================================================================ +19:56:07 [ 1] [ 4] [0210] +19:56:07 [ 2] [ 16] [6213544001991394] +19:56:07 [ 3] [ 6] [010000] +19:56:07 [ 4] [ 12] [000010000000] +19:56:07 [ 7] [ 10] [0320195353] +19:56:07 [ 11] [ 6] [956662] +19:56:07 [ 12] [ 6] [195353] +19:56:07 [ 13] [ 4] [0320] +19:56:07 [ 15] [ 4] [0320] +19:56:07 [ 18] [ 4] [6011] +19:56:07 [ 19] [ 3] [418] +19:56:07 [ 32] [ 6] [668899] +19:56:07 [ 35] [ 32] [6213544001991394=491212019139640] +19:56:07 [ 37] [ 12] [507900168759] +19:56:07 [ 38] [ 6] [510287] +19:56:07 [ 39] [ 2] [00] +19:56:07 [ 41] [ 8] [03020007] +19:56:07 [ 49] [ 3] [418] +19:56:07 [ 54] [ 40] [0001418C0000273759900002418C000027375990] +19:56:07 ============================================================================ +19:56:07 Calculate Source COMM Id = 4 +19:56:07 ============================================================================ +19:56:07 + + +waiting on router queue for slot.... +19:56:13 ============================================================================ +19:56:13 Slot Id : <415> +19:56:13 Transaction Type : REQUEST +19:56:13 Received From : +19:56:13 ============================================================================ +19:56:13 FNo. Len. Field Value +19:56:13 ============================================================================ +19:56:13 [ 1] [ 4] [0800] +19:56:13 [ 2] [ 5] [02531] +19:56:13 [ 3] [ 6] [579198] +19:56:13 [ 7] [ 10] [0320125613] +19:56:13 [ 11] [ 6] [807569] +19:56:13 [ 15] [ 10] [0320125613] +19:56:13 [ 37] [ 11] [57919807569] +19:56:13 [ 70] [ 3] [001] +19:56:13 ============================================================================ +19:56:13 + + +waiting on router queue for slot.... +19:56:13 ============================================================================ +19:56:13 Slot Id : <415> +19:56:13 Transaction Type : RESPONSE +19:56:13 Received From : +19:56:13 ============================================================================ +19:56:13 FNo. Len. Field Value +19:56:13 ============================================================================ +19:56:13 [ 1] [ 4] [0810] +19:56:13 [ 7] [ 10] [0320125613] +19:56:13 [ 11] [ 6] [807569] +19:56:13 [ 15] [ 4] [0320] +19:56:13 [ 37] [ 12] [57919807569] +19:56:13 [ 39] [ 2] [00] +19:56:13 [ 70] [ 3] [001] +19:56:13 ============================================================================ +19:56:13 Sending to : +19:56:13 ============================================================================ +19:56:13 + + +waiting on router queue for slot.... +19:56:14 ============================================================================ +19:56:14 Slot Id : <409> +19:56:14 Transaction Type : REQUEST +19:56:14 Received From : +19:56:14 ============================================================================ +19:56:14 FNo. Len. Field Value +19:56:14 ============================================================================ +19:56:14 [ 1] [ 4] [0200] +19:56:14 [ 2] [ 16] [6213544001650669] +19:56:14 [ 3] [ 6] [010000] +19:56:14 [ 4] [ 12] [000050000000] +19:56:14 [ 7] [ 10] [0320195403] +19:56:14 [ 11] [ 6] [956665] +19:56:14 [ 12] [ 6] [195403] +19:56:14 [ 13] [ 4] [0320] +19:56:14 [ 15] [ 4] [0320] +19:56:14 [ 18] [ 4] [6011] +19:56:14 [ 19] [ 3] [418] +19:56:14 [ 22] [ 3] [021] +19:56:14 [ 25] [ 2] [01] +19:56:14 [ 28] [ 9] [D00002000] +19:56:14 [ 32] [ 6] [668899] +19:56:14 [ 35] [ 32] [6213544001650669=491212015066864] +19:56:14 [ 37] [ 12] [507901604393] +19:56:14 [ 41] [ 8] [03202001] +19:56:14 [ 42] [ 15] [APT ] +19:56:14 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:56:14 [ 49] [ 3] [418] +19:56:14 [ 52] [ 16] [451B9A898874BB87] +19:56:14 ============================================================================ +19:56:14 + + +waiting on router queue for slot.... +19:56:14 Sending to : +19:56:14 ============================================================================ +19:56:14 Sending to : +19:56:14 ============================================================================ +19:56:14 ============================================================================ +19:56:14 Slot Id : <409> +19:56:14 Transaction Type : REQUEST +19:56:14 Received From : +19:56:14 ============================================================================ +19:56:14 FNo. Len. Field Value +19:56:14 ============================================================================ +19:56:14 [ 1] [ 4] [0200] +19:56:14 [ 2] [ 16] [6213544001650669] +19:56:14 [ 3] [ 6] [010000] +19:56:14 [ 4] [ 12] [000050000000] +19:56:14 [ 7] [ 10] [0320195403] +19:56:14 [ 11] [ 6] [956665] +19:56:14 [ 12] [ 6] [195403] +19:56:14 [ 13] [ 4] [0320] +19:56:14 [ 15] [ 4] [0320] +19:56:14 [ 18] [ 4] [6011] +19:56:14 [ 19] [ 3] [418] +19:56:14 [ 22] [ 3] [021] +19:56:14 [ 25] [ 2] [01] +19:56:14 [ 28] [ 9] [D00002000] +19:56:14 [ 32] [ 6] [668899] +19:56:14 [ 35] [ 32] [6213544001650669=491212015066864] +19:56:14 [ 37] [ 12] [507901604393] +19:56:14 [ 41] [ 8] [03202001] +19:56:14 [ 42] [ 15] [APT ] +19:56:14 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:56:14 [ 49] [ 3] [418] +19:56:14 [ 52] [ 16] [451B9A898874BB87] +19:56:14 ============================================================================ +19:56:14 + + +waiting on router queue for slot.... +19:56:14 Sending to : +19:56:14 ============================================================================ +19:56:14 ============================================================================ +19:56:14 Slot Id : <409> +19:56:14 Transaction Type : REQUEST +19:56:14 Received From : +19:56:14 ============================================================================ +19:56:14 FNo. Len. Field Value +19:56:14 ============================================================================ +19:56:14 [ 1] [ 4] [0200] +19:56:14 [ 2] [ 16] [6213544001650669] +19:56:14 [ 3] [ 6] [010000] +19:56:14 [ 4] [ 12] [000050000000] +19:56:14 [ 7] [ 10] [0320195403] +19:56:14 [ 11] [ 6] [956665] +19:56:14 [ 12] [ 6] [195403] +19:56:14 [ 13] [ 4] [0320] +19:56:14 [ 15] [ 4] [0320] +19:56:14 [ 18] [ 4] [6011] +19:56:14 [ 19] [ 3] [418] +19:56:14 [ 22] [ 3] [021] +19:56:14 [ 25] [ 2] [01] +19:56:14 [ 28] [ 9] [D00002000] +19:56:14 [ 32] [ 6] [668899] +19:56:14 [ 35] [ 32] [6213544001650669=491212015066864] +19:56:14 [ 37] [ 12] [507901604393] +19:56:14 [ 41] [ 8] [03202001] +19:56:14 [ 42] [ 15] [APT ] +19:56:14 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:56:14 [ 49] [ 3] [418] +19:56:14 [ 52] [ 16] [01D02F5EA565721A] +19:56:14 ============================================================================ +19:56:14 + + +waiting on router queue for slot.... +19:56:14 Sending to : <0> +19:56:14 ============================================================================ +19:56:15 ============================================================================ +19:56:15 Slot Id : <409> +19:56:15 Transaction Type : RESPONSE +19:56:15 Received From : +19:56:15 ============================================================================ +19:56:15 FNo. Len. Field Value +19:56:15 ============================================================================ +19:56:15 [ 1] [ 4] [0210] +19:56:15 [ 2] [ 16] [6213544001650669] +19:56:15 [ 3] [ 6] [010000] +19:56:15 [ 4] [ 12] [000050000000] +19:56:15 [ 7] [ 10] [0320195403] +19:56:15 [ 11] [ 6] [956665] +19:56:15 [ 12] [ 6] [195403] +19:56:15 [ 13] [ 4] [0320] +19:56:15 [ 15] [ 4] [0320] +19:56:15 [ 18] [ 4] [6011] +19:56:15 [ 19] [ 3] [418] +19:56:15 [ 32] [ 6] [668899] +19:56:15 [ 35] [ 32] [6213544001650669=491212015066864] +19:56:15 [ 37] [ 12] [507901604393] +19:56:15 [ 38] [ 6] [956665] +19:56:15 [ 39] [ 2] [51] +19:56:15 [ 41] [ 8] [03202001] +19:56:15 [ 49] [ 3] [418] +19:56:15 [ 54] [ 40] [0001418C0000021345490002418C000002134549] +19:56:15 ============================================================================ +19:56:15 Sending to : +19:56:15 ============================================================================ +19:56:15 + + +waiting on router queue for slot.... +19:56:15 ============================================================================ +19:56:15 Slot Id : <425> +19:56:15 Transaction Type : REQUEST +19:56:15 Received From : +19:56:15 ============================================================================ +19:56:15 FNo. Len. Field Value +19:56:15 ============================================================================ +19:56:15 [ 1] [ 4] [0800] +19:56:15 [ 7] [ 10] [0320125521] +19:56:15 [ 11] [ 6] [158074] +19:56:15 [ 70] [ 3] [301] +19:56:15 ============================================================================ +19:56:15 + + +waiting on router queue for slot.... +19:56:15 Sending to : +19:56:15 ============================================================================ +19:56:15 ============================================================================ +19:56:15 Slot Id : <425> +19:56:15 Transaction Type : RESPONSE +19:56:15 Received From : +19:56:15 ============================================================================ +19:56:15 FNo. Len. Field Value +19:56:15 ============================================================================ +19:56:15 [ 1] [ 4] [0810] +19:56:15 [ 7] [ 10] [0320125521] +19:56:15 [ 11] [ 6] [158074] +19:56:15 [ 39] [ 2] [00] +19:56:15 [ 70] [ 3] [301] +19:56:15 ============================================================================ +19:56:15 Calculate Source COMM Id = 2 +19:56:15 ============================================================================ +19:56:15 + + +waiting on router queue for slot.... +19:56:16 ============================================================================ +19:56:16 Slot Id : <409> +19:56:16 Transaction Type : RESPONSE +19:56:16 Received From : +19:56:16 ============================================================================ +19:56:16 FNo. Len. Field Value +19:56:16 ============================================================================ +19:56:16 [ 1] [ 4] [0210] +19:56:16 [ 2] [ 16] [6213544001650669] +19:56:16 [ 3] [ 6] [010000] +19:56:16 [ 4] [ 12] [000050000000] +19:56:16 [ 7] [ 10] [0320195403] +19:56:16 [ 11] [ 6] [956665] +19:56:16 [ 12] [ 6] [195403] +19:56:16 [ 13] [ 4] [0320] +19:56:16 [ 15] [ 4] [0320] +19:56:16 [ 18] [ 4] [6011] +19:56:16 [ 19] [ 3] [418] +19:56:16 [ 32] [ 6] [668899] +19:56:16 [ 35] [ 32] [6213544001650669=491212015066864] +19:56:16 [ 37] [ 12] [507901604393] +19:56:16 [ 38] [ 6] [956665] +19:56:16 [ 39] [ 2] [51] +19:56:16 [ 41] [ 8] [03202001] +19:56:16 [ 49] [ 3] [418] +19:56:16 [ 54] [ 40] [0001418C0000021345490002418C000002134549] +19:56:16 ============================================================================ +19:56:16 Calculate Source COMM Id = 4 +19:56:16 ============================================================================ +19:56:16 + + +waiting on router queue for slot.... +19:56:23 ============================================================================ +19:56:23 Slot Id : <364> +19:56:23 Transaction Type : REQUEST +19:56:23 Received From : +19:56:23 ============================================================================ +19:56:23 FNo. Len. Field Value +19:56:23 ============================================================================ +19:56:23 [ 1] [ 4] [0800] +19:56:23 [ 7] [ 10] [0320125412] +19:56:23 [ 11] [ 6] [015710] +19:56:23 [ 37] [ 12] [57919015710] +19:56:23 [ 70] [ 3] [301] +19:56:23 ============================================================================ +19:56:23 + + +waiting on router queue for slot.... +19:56:23 Sending to : +19:56:23 ============================================================================ +19:56:23 ============================================================================ +19:56:23 Slot Id : <364> +19:56:23 Transaction Type : RESPONSE +19:56:23 Received From : +19:56:23 ============================================================================ +19:56:23 FNo. Len. Field Value +19:56:23 ============================================================================ +19:56:23 [ 1] [ 4] [0810] +19:56:23 [ 7] [ 10] [0320125412] +19:56:23 [ 11] [ 6] [015710] +19:56:23 [ 37] [ 12] [579190157100] +19:56:23 [ 39] [ 2] [00] +19:56:23 [ 70] [ 3] [810] +19:56:23 ============================================================================ +19:56:23 Calculate Source COMM Id = 4 +19:56:23 ============================================================================ +19:56:23 + + +waiting on router queue for slot.... +19:56:26 ============================================================================ +19:56:26 Slot Id : <388> +19:56:26 Transaction Type : REQUEST +19:56:26 Received From : +19:56:26 ============================================================================ +19:56:26 FNo. Len. Field Value +19:56:26 ============================================================================ +19:56:26 [ 1] [ 4] [0800] +19:56:26 [ 7] [ 10] [0320125532] +19:56:26 [ 11] [ 6] [158075] +19:56:26 [ 70] [ 3] [301] +19:56:26 ============================================================================ +19:56:26 + + +waiting on router queue for slot.... +19:56:26 Sending to : +19:56:26 ============================================================================ +19:56:26 ============================================================================ +19:56:26 Slot Id : <388> +19:56:26 Transaction Type : RESPONSE +19:56:26 Received From : +19:56:26 ============================================================================ +19:56:26 FNo. Len. Field Value +19:56:26 ============================================================================ +19:56:26 [ 1] [ 4] [0810] +19:56:26 [ 7] [ 10] [0320125532] +19:56:26 [ 11] [ 6] [158075] +19:56:26 [ 39] [ 2] [00] +19:56:26 [ 70] [ 3] [301] +19:56:26 ============================================================================ +19:56:26 Calculate Source COMM Id = 2 +19:56:26 ============================================================================ +19:56:26 + + +waiting on router queue for slot.... +19:56:30 ============================================================================ +19:56:30 Slot Id : <430> +19:56:30 Transaction Type : REQUEST +19:56:30 Received From : +19:56:30 ============================================================================ +19:56:30 FNo. Len. Field Value +19:56:30 ============================================================================ +19:56:30 [ 1] [ 4] [0200] +19:56:30 [ 2] [ 16] [6213544001650669] +19:56:30 [ 3] [ 6] [301000] +19:56:30 [ 4] [ 12] [000000000000] +19:56:30 [ 7] [ 10] [0320195420] +19:56:30 [ 11] [ 6] [956669] +19:56:30 [ 12] [ 6] [195420] +19:56:30 [ 13] [ 4] [0320] +19:56:30 [ 15] [ 4] [0320] +19:56:30 [ 18] [ 4] [6011] +19:56:30 [ 19] [ 3] [418] +19:56:30 [ 22] [ 3] [021] +19:56:30 [ 25] [ 2] [01] +19:56:30 [ 28] [ 9] [D00000000] +19:56:30 [ 32] [ 6] [668899] +19:56:30 [ 35] [ 32] [6213544001650669=491212015066864] +19:56:30 [ 37] [ 12] [507901604394] +19:56:30 [ 41] [ 8] [03202001] +19:56:30 [ 42] [ 15] [APT ] +19:56:30 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:56:30 [ 49] [ 3] [418] +19:56:30 [ 52] [ 16] [451B9A898874BB87] +19:56:30 ============================================================================ +19:56:30 + + +waiting on router queue for slot.... +19:56:30 Sending to : +19:56:30 ============================================================================ +19:56:30 Sending to : +19:56:30 ============================================================================ +19:56:31 ============================================================================ +19:56:31 Slot Id : <430> +19:56:31 Transaction Type : REQUEST +19:56:31 Received From : +19:56:31 ============================================================================ +19:56:31 FNo. Len. Field Value +19:56:31 ============================================================================ +19:56:31 [ 1] [ 4] [0200] +19:56:31 [ 2] [ 16] [6213544001650669] +19:56:31 [ 3] [ 6] [301000] +19:56:31 [ 4] [ 12] [000000000000] +19:56:31 [ 7] [ 10] [0320195420] +19:56:31 [ 11] [ 6] [956669] +19:56:31 [ 12] [ 6] [195420] +19:56:31 [ 13] [ 4] [0320] +19:56:31 [ 15] [ 4] [0320] +19:56:31 [ 18] [ 4] [6011] +19:56:31 [ 19] [ 3] [418] +19:56:31 [ 22] [ 3] [021] +19:56:31 [ 25] [ 2] [01] +19:56:31 [ 28] [ 9] [D00000000] +19:56:31 [ 32] [ 6] [668899] +19:56:31 [ 35] [ 32] [6213544001650669=491212015066864] +19:56:31 [ 37] [ 12] [507901604394] +19:56:31 [ 41] [ 8] [03202001] +19:56:31 [ 42] [ 15] [APT ] +19:56:31 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:56:31 [ 49] [ 3] [418] +19:56:31 [ 52] [ 16] [451B9A898874BB87] +19:56:31 ============================================================================ +19:56:31 + + +waiting on router queue for slot.... +19:56:31 Sending to : +19:56:31 ============================================================================ +19:56:31 ============================================================================ +19:56:31 Slot Id : <430> +19:56:31 Transaction Type : REQUEST +19:56:31 Received From : +19:56:31 ============================================================================ +19:56:31 FNo. Len. Field Value +19:56:31 ============================================================================ +19:56:31 [ 1] [ 4] [0200] +19:56:31 [ 2] [ 16] [6213544001650669] +19:56:31 [ 3] [ 6] [301000] +19:56:31 [ 4] [ 12] [000000000000] +19:56:31 [ 7] [ 10] [0320195420] +19:56:31 [ 11] [ 6] [956669] +19:56:31 [ 12] [ 6] [195420] +19:56:31 [ 13] [ 4] [0320] +19:56:31 [ 15] [ 4] [0320] +19:56:31 [ 18] [ 4] [6011] +19:56:31 [ 19] [ 3] [418] +19:56:31 [ 22] [ 3] [021] +19:56:31 [ 25] [ 2] [01] +19:56:31 [ 28] [ 9] [D00000000] +19:56:31 [ 32] [ 6] [668899] +19:56:31 [ 35] [ 32] [6213544001650669=491212015066864] +19:56:31 [ 37] [ 12] [507901604394] +19:56:31 [ 41] [ 8] [03202001] +19:56:31 [ 42] [ 15] [APT ] +19:56:31 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +19:56:31 [ 49] [ 3] [418] +19:56:31 [ 52] [ 16] [01D02F5EA565721A] +19:56:31 ============================================================================ +19:56:31 + + +waiting on router queue for slot.... +19:56:31 Sending to : <0> +19:56:31 ============================================================================ +19:56:31 ============================================================================ +19:56:31 Slot Id : <430> +19:56:31 Transaction Type : RESPONSE +19:56:31 Received From : +19:56:31 ============================================================================ +19:56:31 FNo. Len. Field Value +19:56:31 ============================================================================ +19:56:31 [ 1] [ 4] [0210] +19:56:31 [ 2] [ 16] [6213544001650669] +19:56:31 [ 3] [ 6] [301000] +19:56:31 [ 4] [ 12] [000000000000] +19:56:31 [ 7] [ 10] [0320195420] +19:56:31 [ 11] [ 6] [956669] +19:56:31 [ 12] [ 6] [195420] +19:56:31 [ 13] [ 4] [0320] +19:56:31 [ 15] [ 4] [0320] +19:56:31 [ 18] [ 4] [6011] +19:56:31 [ 19] [ 3] [418] +19:56:31 [ 32] [ 6] [668899] +19:56:31 [ 35] [ 32] [6213544001650669=491212015066864] +19:56:31 [ 37] [ 12] [507901604394] +19:56:31 [ 38] [ 6] [019036] +19:56:31 [ 39] [ 2] [00] +19:56:31 [ 41] [ 8] [03202001] +19:56:31 [ 49] [ 3] [418] +19:56:31 [ 54] [ 40] [1001418C0000021345491002418C000002134549] +19:56:31 ============================================================================ +19:56:31 Sending to : +19:56:31 ============================================================================ +19:56:31 + + +waiting on router queue for slot.... +19:56:33 ============================================================================ +19:56:33 Slot Id : <430> +19:56:33 Transaction Type : RESPONSE +19:56:33 Received From : +19:56:33 ============================================================================ +19:56:33 FNo. Len. Field Value +19:56:33 ============================================================================ +19:56:33 [ 1] [ 4] [0210] +19:56:33 [ 2] [ 16] [6213544001650669] +19:56:33 [ 3] [ 6] [301000] +19:56:33 [ 4] [ 12] [000000000000] +19:56:33 [ 7] [ 10] [0320195420] +19:56:33 [ 11] [ 6] [956669] +19:56:33 [ 12] [ 6] [195420] +19:56:33 [ 13] [ 4] [0320] +19:56:33 [ 15] [ 4] [0320] +19:56:33 [ 18] [ 4] [6011] +19:56:33 [ 19] [ 3] [418] +19:56:33 [ 32] [ 6] [668899] +19:56:33 [ 35] [ 32] [6213544001650669=491212015066864] +19:56:33 [ 37] [ 12] [507901604394] +19:56:33 [ 38] [ 6] [019036] +19:56:33 [ 39] [ 2] [00] +19:56:33 [ 41] [ 8] [03202001] +19:56:33 [ 49] [ 3] [418] +19:56:33 [ 54] [ 40] [1001418C0000021345491002418C000002134549] +19:56:33 ============================================================================ +19:56:33 Calculate Source COMM Id = 4 +19:56:33 ============================================================================ +19:56:33 + + +waiting on router queue for slot.... +19:56:36 ============================================================================ +19:56:36 Slot Id : <367> +19:56:36 Transaction Type : REQUEST +19:56:36 Received From : +19:56:36 ============================================================================ +19:56:36 FNo. Len. Field Value +19:56:36 ============================================================================ +19:56:36 [ 1] [ 4] [0800] +19:56:36 [ 7] [ 10] [0320125543] +19:56:36 [ 11] [ 6] [158076] +19:56:36 [ 70] [ 3] [301] +19:56:36 ============================================================================ +19:56:36 + + +waiting on router queue for slot.... +19:56:36 Sending to : +19:56:36 ============================================================================ +19:56:36 ============================================================================ +19:56:36 Slot Id : <367> +19:56:36 Transaction Type : RESPONSE +19:56:36 Received From : +19:56:36 ============================================================================ +19:56:36 FNo. Len. Field Value +19:56:36 ============================================================================ +19:56:36 [ 1] [ 4] [0810] +19:56:36 [ 7] [ 10] [0320125543] +19:56:36 [ 11] [ 6] [158076] +19:56:36 [ 39] [ 2] [00] +19:56:36 [ 70] [ 3] [301] +19:56:36 ============================================================================ +19:56:36 Calculate Source COMM Id = 2 +19:56:36 ============================================================================ +19:56:36 + + +waiting on router queue for slot.... +19:56:48 ============================================================================ +19:56:48 Slot Id : <441> +19:56:48 Transaction Type : REQUEST +19:56:48 Received From : +19:56:48 ============================================================================ +19:56:48 FNo. Len. Field Value +19:56:48 ============================================================================ +19:56:48 [ 1] [ 4] [0800] +19:56:48 [ 7] [ 10] [0320125554] +19:56:48 [ 11] [ 6] [158077] +19:56:48 [ 70] [ 3] [301] +19:56:48 ============================================================================ +19:56:48 + + +waiting on router queue for slot.... +19:56:48 Sending to : +19:56:48 ============================================================================ +19:56:48 ============================================================================ +19:56:48 Slot Id : <441> +19:56:48 Transaction Type : RESPONSE +19:56:48 Received From : +19:56:48 ============================================================================ +19:56:48 FNo. Len. Field Value +19:56:48 ============================================================================ +19:56:48 [ 1] [ 4] [0810] +19:56:48 [ 7] [ 10] [0320125554] +19:56:48 [ 11] [ 6] [158077] +19:56:48 [ 39] [ 2] [00] +19:56:48 [ 70] [ 3] [301] +19:56:48 ============================================================================ +19:56:48 Calculate Source COMM Id = 2 +19:56:48 ============================================================================ +19:56:48 + + +waiting on router queue for slot.... +19:56:54 ============================================================================ +19:56:54 Slot Id : <403> +19:56:54 Transaction Type : REQUEST +19:56:54 Received From : +19:56:54 ============================================================================ +19:56:54 FNo. Len. Field Value +19:56:54 ============================================================================ +19:56:54 [ 1] [ 4] [0200] +19:56:54 [ 2] [ 16] [1808930600012892] +19:56:54 [ 3] [ 6] [301000] +19:56:54 [ 4] [ 12] [000000000000] +19:56:54 [ 7] [ 10] [0320195649] +19:56:54 [ 11] [ 6] [839824] +19:56:54 [ 12] [ 6] [195649] +19:56:54 [ 13] [ 4] [0320] +19:56:54 [ 15] [ 4] [0320] +19:56:54 [ 18] [ 4] [6011] +19:56:54 [ 22] [ 3] [900] +19:56:54 [ 25] [ 2] [02] +19:56:54 [ 28] [ 9] [D00000000] +19:56:54 [ 32] [ 6] [621354] +19:56:54 [ 35] [ 27] [1808930600012892=1803500809] +19:56:54 [ 37] [ 12] [507904238411] +19:56:54 [ 41] [ 8] [03002200] +19:56:54 [ 42] [ 15] [NATIVE ] +19:56:54 [ 43] [ 40] [Savannakhet Branch KaisonephomvLAO] +19:56:54 [ 49] [ 3] [418] +19:56:54 [ 52] [ 16] [47CA4ABF349ABFD9] +19:56:54 ============================================================================ +19:56:54 + + +waiting on router queue for slot.... +19:56:54 Sending to : +19:56:54 ============================================================================ +19:56:54 Sending to : +19:56:54 ============================================================================ +19:56:54 ============================================================================ +19:56:54 Slot Id : <403> +19:56:54 Transaction Type : REQUEST +19:56:54 Received From : +19:56:54 ============================================================================ +19:56:54 FNo. Len. Field Value +19:56:54 ============================================================================ +19:56:54 [ 1] [ 4] [0200] +19:56:54 [ 2] [ 16] [1808930600012892] +19:56:54 [ 3] [ 6] [301000] +19:56:54 [ 4] [ 12] [000000000000] +19:56:54 [ 7] [ 10] [0320195649] +19:56:54 [ 11] [ 6] [839824] +19:56:54 [ 12] [ 6] [195649] +19:56:54 [ 13] [ 4] [0320] +19:56:54 [ 15] [ 4] [0320] +19:56:54 [ 18] [ 4] [6011] +19:56:54 [ 22] [ 3] [900] +19:56:54 [ 25] [ 2] [02] +19:56:54 [ 28] [ 9] [D00000000] +19:56:54 [ 32] [ 6] [621354] +19:56:54 [ 35] [ 27] [1808930600012892=1803500809] +19:56:54 [ 37] [ 12] [507904238411] +19:56:54 [ 41] [ 8] [03002200] +19:56:54 [ 42] [ 15] [NATIVE ] +19:56:54 [ 43] [ 40] [Savannakhet Branch KaisonephomvLAO] +19:56:54 [ 49] [ 3] [418] +19:56:54 [ 52] [ 16] [47CA4ABF349ABFD9] +19:56:54 ============================================================================ +19:56:54 + + +waiting on router queue for slot.... +19:56:54 Sending to : +19:56:54 ============================================================================ +19:56:54 ============================================================================ +19:56:54 Slot Id : <403> +19:56:54 Transaction Type : REQUEST +19:56:54 Received From : +19:56:54 ============================================================================ +19:56:54 FNo. Len. Field Value +19:56:54 ============================================================================ +19:56:54 [ 1] [ 4] [0200] +19:56:54 [ 2] [ 16] [1808930600012892] +19:56:54 [ 3] [ 6] [301000] +19:56:54 [ 4] [ 12] [000000000000] +19:56:54 [ 7] [ 10] [0320195649] +19:56:54 [ 11] [ 6] [839824] +19:56:54 [ 12] [ 6] [195649] +19:56:54 [ 13] [ 4] [0320] +19:56:54 [ 15] [ 4] [0320] +19:56:54 [ 18] [ 4] [6011] +19:56:54 [ 22] [ 3] [900] +19:56:54 [ 25] [ 2] [02] +19:56:54 [ 28] [ 9] [D00000000] +19:56:54 [ 32] [ 6] [621354] +19:56:54 [ 35] [ 27] [1808930600012892=1803500809] +19:56:54 [ 37] [ 12] [507904238411] +19:56:54 [ 41] [ 8] [03002200] +19:56:54 [ 42] [ 15] [NATIVE ] +19:56:54 [ 43] [ 40] [Savannakhet Branch KaisonephomvLAO] +19:56:54 [ 49] [ 3] [418] +19:56:54 [ 52] [ 16] [6828D1BE746896E9] +19:56:54 ============================================================================ +19:56:54 + + +waiting on router queue for slot.... +19:56:54 Sending to : <2> +19:56:54 ============================================================================ +19:56:57 ============================================================================ +19:56:57 Slot Id : <403> +19:56:57 Transaction Type : RESPONSE +19:56:57 Received From : +19:56:57 ============================================================================ +19:56:57 FNo. Len. Field Value +19:56:57 ============================================================================ +19:56:57 [ 1] [ 4] [0210] +19:56:57 [ 2] [ 16] [1808930600012892] +19:56:57 [ 3] [ 6] [301000] +19:56:57 [ 7] [ 10] [0320195649] +19:56:57 [ 11] [ 6] [839824] +19:56:57 [ 12] [ 6] [195649] +19:56:57 [ 13] [ 4] [0320] +19:56:57 [ 14] [ 4] [1803] +19:56:57 [ 19] [ 3] [418] +19:56:57 [ 32] [ 6] [621354] +19:56:57 [ 37] [ 12] [507904238411] +19:56:57 [ 38] [ 6] [839824] +19:56:57 [ 39] [ 2] [00] +19:56:57 [ 41] [ 8] [03002200] +19:56:57 [ 49] [ 3] [418] +19:56:57 [ 52] [ 16] [6828D1BE746896E9] +19:56:57 [ 54] [ 20] [1002418C000142458600] +19:56:57 ============================================================================ +19:56:58 Sending to : +19:56:58 ============================================================================ +19:56:58 + + +waiting on router queue for slot.... +19:56:59 ============================================================================ +19:56:59 Slot Id : <403> +19:56:59 Transaction Type : RESPONSE +19:56:59 Received From : +19:56:59 ============================================================================ +19:56:59 FNo. Len. Field Value +19:56:59 ============================================================================ +19:56:59 [ 1] [ 4] [0210] +19:56:59 [ 2] [ 16] [1808930600012892] +19:56:59 [ 3] [ 6] [301000] +19:56:59 [ 7] [ 10] [0320195649] +19:56:59 [ 11] [ 6] [839824] +19:56:59 [ 12] [ 6] [195649] +19:56:59 [ 13] [ 4] [0320] +19:56:59 [ 14] [ 4] [1803] +19:56:59 [ 19] [ 3] [418] +19:56:59 [ 32] [ 6] [621354] +19:56:59 [ 37] [ 12] [507904238411] +19:56:59 [ 38] [ 6] [839824] +19:56:59 [ 39] [ 2] [00] +19:56:59 [ 41] [ 8] [03002200] +19:56:59 [ 49] [ 3] [418] +19:56:59 [ 52] [ 16] [6828D1BE746896E9] +19:56:59 [ 54] [ 20] [1002418C000142458600] +19:56:59 ============================================================================ +19:56:59 Calculate Source COMM Id = 0 +19:56:59 ============================================================================ +19:56:59 + + +waiting on router queue for slot.... +19:57:07 ============================================================================ +19:57:07 Slot Id : <437> +19:57:07 Transaction Type : REQUEST +19:57:07 Received From : +19:57:07 ============================================================================ +19:57:07 FNo. Len. Field Value +19:57:07 ============================================================================ +19:57:07 [ 1] [ 4] [0800] +19:57:07 [ 7] [ 10] [0321030855] +19:57:07 [ 11] [ 6] [200855] +19:57:07 [ 37] [ 12] [57920200855] +19:57:07 [ 70] [ 3] [301] +19:57:07 ============================================================================ +19:57:07 + + +waiting on router queue for slot.... +19:57:07 Sending to : +19:57:07 ============================================================================ +19:57:07 ============================================================================ +19:57:07 Slot Id : <437> +19:57:07 Transaction Type : RESPONSE +19:57:07 Received From : +19:57:07 ============================================================================ +19:57:07 FNo. Len. Field Value +19:57:07 ============================================================================ +19:57:07 [ 1] [ 4] [0810] +19:57:07 [ 7] [ 10] [0321030855] +19:57:07 [ 11] [ 6] [200855] +19:57:07 [ 37] [ 12] [579202008550] +19:57:07 [ 39] [ 2] [00] +19:57:07 [ 70] [ 3] [810] +19:57:07 ============================================================================ +19:57:07 Calculate Source COMM Id = 6 +19:57:07 ============================================================================ +19:57:07 + + +waiting on router queue for slot.... +19:57:08 ============================================================================ +19:57:08 Slot Id : <402> +19:57:08 Transaction Type : REQUEST +19:57:08 Received From : +19:57:08 ============================================================================ +19:57:08 FNo. Len. Field Value +19:57:08 ============================================================================ +19:57:08 [ 1] [ 4] [0800] +19:57:08 [ 7] [ 10] [0320125615] +19:57:08 [ 11] [ 6] [158078] +19:57:08 [ 70] [ 3] [301] +19:57:08 ============================================================================ +19:57:08 + + +waiting on router queue for slot.... +19:57:08 Sending to : +19:57:08 ============================================================================ +19:57:08 ============================================================================ +19:57:08 Slot Id : <402> +19:57:08 Transaction Type : RESPONSE +19:57:08 Received From : +19:57:08 ============================================================================ +19:57:08 FNo. Len. Field Value +19:57:08 ============================================================================ +19:57:08 [ 1] [ 4] [0810] +19:57:08 [ 7] [ 10] [0320125615] +19:57:08 [ 11] [ 6] [158078] +19:57:08 [ 39] [ 2] [00] +19:57:08 [ 70] [ 3] [301] +19:57:08 ============================================================================ +19:57:08 Calculate Source COMM Id = 2 +19:57:08 ============================================================================ +19:57:08 + + +waiting on router queue for slot.... +19:57:15 ============================================================================ +19:57:15 Slot Id : <385> +19:57:15 Transaction Type : REQUEST +19:57:15 Received From : +19:57:15 ============================================================================ +19:57:15 FNo. Len. Field Value +19:57:15 ============================================================================ +19:57:15 [ 1] [ 4] [0800] +19:57:15 [ 2] [ 5] [02531] +19:57:15 [ 3] [ 6] [579198] +19:57:15 [ 7] [ 10] [0320125715] +19:57:15 [ 11] [ 6] [807570] +19:57:15 [ 15] [ 10] [0320125715] +19:57:15 [ 37] [ 11] [57919807570] +19:57:15 [ 70] [ 3] [001] +19:57:15 ============================================================================ +19:57:15 + + +waiting on router queue for slot.... +19:57:15 ============================================================================ +19:57:15 Slot Id : <385> +19:57:15 Transaction Type : RESPONSE +19:57:15 Received From : +19:57:15 ============================================================================ +19:57:15 FNo. Len. Field Value +19:57:15 ============================================================================ +19:57:15 [ 1] [ 4] [0810] +19:57:15 [ 7] [ 10] [0320125715] +19:57:15 [ 11] [ 6] [807570] +19:57:15 [ 15] [ 4] [0320] +19:57:15 [ 37] [ 12] [57919807570] +19:57:15 [ 39] [ 2] [00] +19:57:15 [ 70] [ 3] [001] +19:57:15 ============================================================================ +19:57:15 Sending to : +19:57:15 ============================================================================ +19:57:15 + + +waiting on router queue for slot.... +19:57:19 ============================================================================ +19:57:19 Slot Id : <362> +19:57:19 Transaction Type : REQUEST +19:57:19 Received From : +19:57:19 ============================================================================ +19:57:19 FNo. Len. Field Value +19:57:19 ============================================================================ +19:57:19 [ 1] [ 4] [0800] +19:57:19 [ 7] [ 10] [0320125626] +19:57:19 [ 11] [ 6] [158079] +19:57:19 [ 70] [ 3] [301] +19:57:19 ============================================================================ +19:57:19 + + +waiting on router queue for slot.... +19:57:19 Sending to : +19:57:19 ============================================================================ +19:57:19 ============================================================================ +19:57:19 Slot Id : <362> +19:57:19 Transaction Type : RESPONSE +19:57:19 Received From : +19:57:19 ============================================================================ +19:57:19 FNo. Len. Field Value +19:57:19 ============================================================================ +19:57:19 [ 1] [ 4] [0810] +19:57:19 [ 7] [ 10] [0320125626] +19:57:19 [ 11] [ 6] [158079] +19:57:19 [ 39] [ 2] [00] +19:57:19 [ 70] [ 3] [301] +19:57:19 ============================================================================ +19:57:19 Calculate Source COMM Id = 2 +19:57:19 ============================================================================ +19:57:19 + + +waiting on router queue for slot.... +19:57:35 ============================================================================ +19:57:35 Slot Id : <375> +19:57:35 Transaction Type : REQUEST +19:57:35 Received From : +19:57:35 ============================================================================ +19:57:35 FNo. Len. Field Value +19:57:35 ============================================================================ +19:57:35 [ 1] [ 4] [0800] +19:57:35 [ 7] [ 10] [0320125641] +19:57:35 [ 11] [ 6] [158080] +19:57:35 [ 70] [ 3] [301] +19:57:35 ============================================================================ +19:57:35 + + +waiting on router queue for slot.... +19:57:35 Sending to : +19:57:35 ============================================================================ +19:57:35 ============================================================================ +19:57:35 Slot Id : <375> +19:57:35 Transaction Type : RESPONSE +19:57:35 Received From : +19:57:35 ============================================================================ +19:57:35 FNo. Len. Field Value +19:57:35 ============================================================================ +19:57:35 [ 1] [ 4] [0810] +19:57:35 [ 7] [ 10] [0320125641] +19:57:35 [ 11] [ 6] [158080] +19:57:35 [ 39] [ 2] [00] +19:57:35 [ 70] [ 3] [301] +19:57:35 ============================================================================ +19:57:35 Calculate Source COMM Id = 2 +19:57:35 ============================================================================ +19:57:35 + + +waiting on router queue for slot.... +19:57:46 ============================================================================ +19:57:46 Slot Id : <408> +19:57:46 Transaction Type : REQUEST +19:57:46 Received From : +19:57:46 ============================================================================ +19:57:46 FNo. Len. Field Value +19:57:46 ============================================================================ +19:57:46 [ 1] [ 4] [0800] +19:57:46 [ 7] [ 10] [0320125652] +19:57:46 [ 11] [ 6] [158081] +19:57:46 [ 70] [ 3] [301] +19:57:46 ============================================================================ +19:57:46 + + +waiting on router queue for slot.... +19:57:46 Sending to : +19:57:46 ============================================================================ +19:57:46 ============================================================================ +19:57:46 Slot Id : <408> +19:57:46 Transaction Type : RESPONSE +19:57:46 Received From : +19:57:46 ============================================================================ +19:57:46 FNo. Len. Field Value +19:57:46 ============================================================================ +19:57:46 [ 1] [ 4] [0810] +19:57:46 [ 7] [ 10] [0320125652] +19:57:46 [ 11] [ 6] [158081] +19:57:46 [ 39] [ 2] [00] +19:57:46 [ 70] [ 3] [301] +19:57:46 ============================================================================ +19:57:46 Calculate Source COMM Id = 2 +19:57:46 ============================================================================ +19:57:46 + + +waiting on router queue for slot.... +19:57:56 ============================================================================ +19:57:56 Slot Id : <450> +19:57:56 Transaction Type : REQUEST +19:57:56 Received From : +19:57:56 ============================================================================ +19:57:56 FNo. Len. Field Value +19:57:56 ============================================================================ +19:57:56 [ 1] [ 4] [0800] +19:57:56 [ 7] [ 10] [0320125702] +19:57:56 [ 11] [ 6] [158082] +19:57:56 [ 70] [ 3] [301] +19:57:56 ============================================================================ +19:57:56 + + +waiting on router queue for slot.... +19:57:56 Sending to : +19:57:56 ============================================================================ +19:57:56 ============================================================================ +19:57:56 Slot Id : <450> +19:57:56 Transaction Type : RESPONSE +19:57:56 Received From : +19:57:56 ============================================================================ +19:57:56 FNo. Len. Field Value +19:57:56 ============================================================================ +19:57:56 [ 1] [ 4] [0810] +19:57:56 [ 7] [ 10] [0320125702] +19:57:56 [ 11] [ 6] [158082] +19:57:56 [ 39] [ 2] [00] +19:57:56 [ 70] [ 3] [301] +19:57:56 ============================================================================ +19:57:56 Calculate Source COMM Id = 2 +19:57:56 ============================================================================ +19:57:56 + + +waiting on router queue for slot.... +19:58:06 ============================================================================ +19:58:06 Slot Id : <417> +19:58:06 Transaction Type : REQUEST +19:58:06 Received From : +19:58:06 ============================================================================ +19:58:06 FNo. Len. Field Value +19:58:06 ============================================================================ +19:58:06 [ 1] [ 4] [0800] +19:58:06 [ 7] [ 10] [0320125713] +19:58:06 [ 11] [ 6] [158083] +19:58:06 [ 70] [ 3] [301] +19:58:06 ============================================================================ +19:58:06 + + +waiting on router queue for slot.... +19:58:06 Sending to : +19:58:06 ============================================================================ +19:58:06 ============================================================================ +19:58:06 Slot Id : <417> +19:58:06 Transaction Type : RESPONSE +19:58:06 Received From : +19:58:06 ============================================================================ +19:58:06 FNo. Len. Field Value +19:58:06 ============================================================================ +19:58:06 [ 1] [ 4] [0810] +19:58:06 [ 7] [ 10] [0320125713] +19:58:06 [ 11] [ 6] [158083] +19:58:06 [ 39] [ 2] [00] +19:58:06 [ 70] [ 3] [301] +19:58:06 ============================================================================ +19:58:06 Calculate Source COMM Id = 2 +19:58:06 ============================================================================ +19:58:06 + + +waiting on router queue for slot.... +19:58:12 ============================================================================ +19:58:12 Slot Id : <392> +19:58:12 Transaction Type : REQUEST +19:58:12 Received From : +19:58:12 ============================================================================ +19:58:12 FNo. Len. Field Value +19:58:12 ============================================================================ +19:58:12 [ 1] [ 4] [0800] +19:58:12 [ 7] [ 10] [0321031000] +19:58:12 [ 11] [ 6] [201000] +19:58:12 [ 37] [ 12] [57920201000] +19:58:12 [ 70] [ 3] [301] +19:58:12 ============================================================================ +19:58:12 + + +waiting on router queue for slot.... +19:58:12 Sending to : +19:58:12 ============================================================================ +19:58:12 ============================================================================ +19:58:12 Slot Id : <392> +19:58:12 Transaction Type : RESPONSE +19:58:12 Received From : +19:58:12 ============================================================================ +19:58:12 FNo. Len. Field Value +19:58:12 ============================================================================ +19:58:12 [ 1] [ 4] [0810] +19:58:12 [ 7] [ 10] [0321031000] +19:58:12 [ 11] [ 6] [201000] +19:58:12 [ 37] [ 12] [579202010000] +19:58:12 [ 39] [ 2] [00] +19:58:12 [ 70] [ 3] [810] +19:58:12 ============================================================================ +19:58:12 Calculate Source COMM Id = 6 +19:58:12 ============================================================================ +19:58:12 + + +waiting on router queue for slot.... +19:58:17 ============================================================================ +19:58:17 Slot Id : <412> +19:58:17 Transaction Type : REQUEST +19:58:17 Received From : +19:58:17 ============================================================================ +19:58:17 FNo. Len. Field Value +19:58:17 ============================================================================ +19:58:17 [ 1] [ 4] [0800] +19:58:17 [ 2] [ 5] [02531] +19:58:17 [ 3] [ 6] [579198] +19:58:17 [ 7] [ 10] [0320125817] +19:58:17 [ 11] [ 6] [807571] +19:58:17 [ 15] [ 10] [0320125817] +19:58:17 [ 37] [ 11] [57919807571] +19:58:17 [ 70] [ 3] [001] +19:58:17 ============================================================================ +19:58:17 + + +waiting on router queue for slot.... +19:58:17 ============================================================================ +19:58:17 Slot Id : <412> +19:58:17 Transaction Type : RESPONSE +19:58:17 Received From : +19:58:17 ============================================================================ +19:58:17 FNo. Len. Field Value +19:58:17 ============================================================================ +19:58:17 [ 1] [ 4] [0810] +19:58:17 [ 7] [ 10] [0320125817] +19:58:17 [ 11] [ 6] [807571] +19:58:17 [ 15] [ 4] [0320] +19:58:17 [ 37] [ 12] [57919807571] +19:58:17 [ 39] [ 2] [00] +19:58:17 [ 70] [ 3] [001] +19:58:17 ============================================================================ +19:58:17 Sending to : +19:58:17 ============================================================================ +19:58:17 + + +waiting on router queue for slot.... +19:58:18 ============================================================================ +19:58:18 Slot Id : <391> +19:58:18 Transaction Type : REQUEST +19:58:18 Received From : +19:58:18 ============================================================================ +19:58:18 FNo. Len. Field Value +19:58:18 ============================================================================ +19:58:18 [ 1] [ 4] [0800] +19:58:18 [ 7] [ 10] [0320125724] +19:58:18 [ 11] [ 6] [158084] +19:58:18 [ 70] [ 3] [301] +19:58:18 ============================================================================ +19:58:18 + + +waiting on router queue for slot.... +19:58:18 Sending to : +19:58:18 ============================================================================ +19:58:18 ============================================================================ +19:58:18 Slot Id : <391> +19:58:18 Transaction Type : RESPONSE +19:58:18 Received From : +19:58:18 ============================================================================ +19:58:18 FNo. Len. Field Value +19:58:18 ============================================================================ +19:58:18 [ 1] [ 4] [0810] +19:58:18 [ 7] [ 10] [0320125724] +19:58:18 [ 11] [ 6] [158084] +19:58:18 [ 39] [ 2] [00] +19:58:18 [ 70] [ 3] [301] +19:58:18 ============================================================================ +19:58:18 Calculate Source COMM Id = 2 +19:58:18 ============================================================================ +19:58:18 + + +waiting on router queue for slot.... +19:58:24 ============================================================================ +19:58:24 Slot Id : <447> +19:58:24 Transaction Type : REQUEST +19:58:24 Received From : +19:58:24 ============================================================================ +19:58:24 FNo. Len. Field Value +19:58:24 ============================================================================ +19:58:24 [ 1] [ 4] [0200] +19:58:24 [ 2] [ 16] [6688990040074823] +19:58:24 [ 3] [ 6] [010000] +19:58:24 [ 4] [ 12] [000010000000] +19:58:24 [ 7] [ 10] [0320125730] +19:58:24 [ 11] [ 6] [271526] +19:58:24 [ 12] [ 6] [195730] +19:58:24 [ 13] [ 4] [0320] +19:58:24 [ 14] [ 4] [9801] +19:58:24 [ 15] [ 4] [0320] +19:58:24 [ 18] [ 4] [6011] +19:58:24 [ 19] [ 3] [418] +19:58:24 [ 22] [ 3] [021] +19:58:24 [ 25] [ 2] [01] +19:58:24 [ 28] [ 9] [D00002000] +19:58:24 [ 32] [ 6] [180893] +19:58:24 [ 35] [ 37] [6688990040074823=98011261783605600000] +19:58:24 [ 37] [ 12] [507912271526] +19:58:24 [ 41] [ 8] [0466PSLB] +19:58:24 [ 42] [ 15] [999999 ] +19:58:24 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:58:24 [ 49] [ 3] [418] +19:58:24 [ 52] [ 16] [6F11E6B8B3CEF1EC] +19:58:24 ============================================================================ +19:58:24 + + +waiting on router queue for slot.... +19:58:24 Sending to : +19:58:24 ============================================================================ +19:58:24 Sending to : +19:58:24 ============================================================================ +19:58:24 ============================================================================ +19:58:24 Slot Id : <447> +19:58:24 Transaction Type : REQUEST +19:58:24 Received From : +19:58:24 ============================================================================ +19:58:24 FNo. Len. Field Value +19:58:24 ============================================================================ +19:58:24 [ 1] [ 4] [0200] +19:58:24 [ 2] [ 16] [6688990040074823] +19:58:24 [ 3] [ 6] [010000] +19:58:24 [ 4] [ 12] [000010000000] +19:58:24 [ 7] [ 10] [0320125730] +19:58:24 [ 11] [ 6] [271526] +19:58:24 [ 12] [ 6] [195730] +19:58:24 [ 13] [ 4] [0320] +19:58:24 [ 14] [ 4] [9801] +19:58:24 [ 15] [ 4] [0320] +19:58:24 [ 18] [ 4] [6011] +19:58:24 [ 19] [ 3] [418] +19:58:24 [ 22] [ 3] [021] +19:58:24 [ 25] [ 2] [01] +19:58:24 [ 28] [ 9] [D00002000] +19:58:24 [ 32] [ 6] [180893] +19:58:24 [ 35] [ 37] [6688990040074823=98011261783605600000] +19:58:24 [ 37] [ 12] [507912271526] +19:58:24 [ 41] [ 8] [0466PSLB] +19:58:24 [ 42] [ 15] [999999 ] +19:58:24 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:58:24 [ 49] [ 3] [418] +19:58:24 [ 52] [ 16] [6F11E6B8B3CEF1EC] +19:58:24 ============================================================================ +19:58:24 + + +waiting on router queue for slot.... +19:58:24 Sending to : +19:58:24 ============================================================================ +19:58:24 ============================================================================ +19:58:24 Slot Id : <447> +19:58:24 Transaction Type : REQUEST +19:58:24 Received From : +19:58:24 ============================================================================ +19:58:24 FNo. Len. Field Value +19:58:24 ============================================================================ +19:58:24 [ 1] [ 4] [0200] +19:58:24 [ 2] [ 16] [6688990040074823] +19:58:24 [ 3] [ 6] [010000] +19:58:24 [ 4] [ 12] [000010000000] +19:58:24 [ 7] [ 10] [0320125730] +19:58:24 [ 11] [ 6] [271526] +19:58:24 [ 12] [ 6] [195730] +19:58:24 [ 13] [ 4] [0320] +19:58:24 [ 14] [ 4] [9801] +19:58:24 [ 15] [ 4] [0320] +19:58:24 [ 18] [ 4] [6011] +19:58:24 [ 19] [ 3] [418] +19:58:24 [ 22] [ 3] [021] +19:58:24 [ 25] [ 2] [01] +19:58:24 [ 28] [ 9] [D00002000] +19:58:24 [ 32] [ 6] [180893] +19:58:24 [ 35] [ 37] [6688990040074823=98011261783605600000] +19:58:24 [ 37] [ 12] [507912271526] +19:58:24 [ 41] [ 8] [0466PSLB] +19:58:24 [ 42] [ 15] [999999 ] +19:58:24 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:58:24 [ 49] [ 3] [418] +19:58:24 [ 52] [ 16] [B7FC747FF6D47A32] +19:58:24 ============================================================================ +19:58:24 + + +waiting on router queue for slot.... +19:58:24 Sending to : <0> +19:58:24 ============================================================================ +19:58:24 ============================================================================ +19:58:24 Slot Id : <447> +19:58:24 Transaction Type : RESPONSE +19:58:24 Received From : +19:58:24 ============================================================================ +19:58:24 FNo. Len. Field Value +19:58:24 ============================================================================ +19:58:24 [ 1] [ 4] [0210] +19:58:24 [ 2] [ 16] [6688990040074823] +19:58:24 [ 3] [ 6] [010000] +19:58:24 [ 4] [ 12] [000010000000] +19:58:24 [ 7] [ 10] [0320125730] +19:58:24 [ 11] [ 6] [271526] +19:58:24 [ 12] [ 6] [195730] +19:58:24 [ 13] [ 4] [0320] +19:58:24 [ 15] [ 4] [0320] +19:58:24 [ 18] [ 4] [6011] +19:58:24 [ 19] [ 3] [418] +19:58:24 [ 22] [ 3] [021] +19:58:24 [ 32] [ 6] [180893] +19:58:24 [ 35] [ 37] [6688990040074823=98011261783605600000] +19:58:24 [ 37] [ 12] [507912271526] +19:58:24 [ 39] [ 2] [14] +19:58:24 [ 41] [ 8] [0466PSLB] +19:58:24 [ 49] [ 3] [418] +19:58:24 ============================================================================ +19:58:24 Sending to : +19:58:24 ============================================================================ +19:58:24 + + +waiting on router queue for slot.... +19:58:25 ============================================================================ +19:58:25 Slot Id : <447> +19:58:25 Transaction Type : RESPONSE +19:58:25 Received From : +19:58:25 ============================================================================ +19:58:25 FNo. Len. Field Value +19:58:25 ============================================================================ +19:58:25 [ 1] [ 4] [0210] +19:58:25 [ 2] [ 16] [6688990040074823] +19:58:25 [ 3] [ 6] [010000] +19:58:25 [ 4] [ 12] [000010000000] +19:58:25 [ 7] [ 10] [0320125730] +19:58:25 [ 11] [ 6] [271526] +19:58:25 [ 12] [ 6] [195730] +19:58:25 [ 13] [ 4] [0320] +19:58:25 [ 15] [ 4] [0320] +19:58:25 [ 18] [ 4] [6011] +19:58:25 [ 19] [ 3] [418] +19:58:25 [ 22] [ 3] [021] +19:58:25 [ 32] [ 6] [180893] +19:58:25 [ 35] [ 37] [6688990040074823=98011261783605600000] +19:58:25 [ 37] [ 12] [507912271526] +19:58:25 [ 39] [ 2] [14] +19:58:25 [ 41] [ 8] [0466PSLB] +19:58:25 [ 49] [ 3] [418] +19:58:25 ============================================================================ +19:58:25 Calculate Source COMM Id = 2 +19:58:25 ============================================================================ +19:58:25 + + +waiting on router queue for slot.... +19:58:38 ============================================================================ +19:58:38 Slot Id : <405> +19:58:38 Transaction Type : REQUEST +19:58:38 Received From : +19:58:38 ============================================================================ +19:58:38 FNo. Len. Field Value +19:58:38 ============================================================================ +19:58:38 [ 1] [ 4] [0800] +19:58:38 [ 7] [ 10] [0320125745] +19:58:38 [ 11] [ 6] [158085] +19:58:38 [ 70] [ 3] [301] +19:58:38 ============================================================================ +19:58:38 + + +waiting on router queue for slot.... +19:58:38 Sending to : +19:58:38 ============================================================================ +19:58:38 ============================================================================ +19:58:38 Slot Id : <405> +19:58:38 Transaction Type : RESPONSE +19:58:38 Received From : +19:58:38 ============================================================================ +19:58:38 FNo. Len. Field Value +19:58:38 ============================================================================ +19:58:38 [ 1] [ 4] [0810] +19:58:38 [ 7] [ 10] [0320125745] +19:58:38 [ 11] [ 6] [158085] +19:58:38 [ 39] [ 2] [00] +19:58:38 [ 70] [ 3] [301] +19:58:38 ============================================================================ +19:58:38 Calculate Source COMM Id = 2 +19:58:38 ============================================================================ +19:58:38 + + +waiting on router queue for slot.... +19:58:40 ============================================================================ +19:58:40 Slot Id : <443> +19:58:40 Transaction Type : REQUEST +19:58:40 Received From : +19:58:40 ============================================================================ +19:58:40 FNo. Len. Field Value +19:58:40 ============================================================================ +19:58:40 [ 1] [ 4] [0200] +19:58:40 [ 2] [ 16] [1808931000004737] +19:58:40 [ 3] [ 6] [011000] +19:58:40 [ 4] [ 12] [000100000000] +19:58:40 [ 7] [ 10] [0320195834] +19:58:40 [ 11] [ 6] [839959] +19:58:40 [ 12] [ 6] [195834] +19:58:40 [ 13] [ 4] [0320] +19:58:40 [ 15] [ 4] [0320] +19:58:40 [ 18] [ 4] [6011] +19:58:40 [ 22] [ 3] [900] +19:58:40 [ 25] [ 2] [02] +19:58:40 [ 28] [ 9] [D00002000] +19:58:40 [ 32] [ 6] [621354] +19:58:40 [ 35] [ 27] [1808931000004737=1803500445] +19:58:40 [ 37] [ 12] [507904827742] +19:58:40 [ 41] [ 8] [11000600] +19:58:40 [ 42] [ 15] [NATIVE ] +19:58:40 [ 43] [ 40] [Bokeo Branch02 Houysai LAO] +19:58:40 [ 49] [ 3] [418] +19:58:40 [ 52] [ 16] [169D14F39F40924E] +19:58:40 ============================================================================ +19:58:40 + + +waiting on router queue for slot.... +19:58:40 Sending to : +19:58:40 ============================================================================ +19:58:40 Sending to : +19:58:40 ============================================================================ +19:58:40 ============================================================================ +19:58:40 Slot Id : <443> +19:58:40 Transaction Type : REQUEST +19:58:40 Received From : +19:58:40 ============================================================================ +19:58:40 FNo. Len. Field Value +19:58:40 ============================================================================ +19:58:40 [ 1] [ 4] [0200] +19:58:40 [ 2] [ 16] [1808931000004737] +19:58:40 [ 3] [ 6] [011000] +19:58:40 [ 4] [ 12] [000100000000] +19:58:40 [ 7] [ 10] [0320195834] +19:58:40 [ 11] [ 6] [839959] +19:58:40 [ 12] [ 6] [195834] +19:58:40 [ 13] [ 4] [0320] +19:58:40 [ 15] [ 4] [0320] +19:58:40 [ 18] [ 4] [6011] +19:58:40 [ 22] [ 3] [900] +19:58:40 [ 25] [ 2] [02] +19:58:40 [ 28] [ 9] [D00002000] +19:58:40 [ 32] [ 6] [621354] +19:58:40 [ 35] [ 27] [1808931000004737=1803500445] +19:58:40 [ 37] [ 12] [507904827742] +19:58:40 [ 41] [ 8] [11000600] +19:58:40 [ 42] [ 15] [NATIVE ] +19:58:40 [ 43] [ 40] [Bokeo Branch02 Houysai LAO] +19:58:40 [ 49] [ 3] [418] +19:58:40 [ 52] [ 16] [169D14F39F40924E] +19:58:40 ============================================================================ +19:58:40 + + +waiting on router queue for slot.... +19:58:40 Sending to : +19:58:40 ============================================================================ +19:58:40 ============================================================================ +19:58:40 Slot Id : <443> +19:58:40 Transaction Type : REQUEST +19:58:40 Received From : +19:58:40 ============================================================================ +19:58:40 FNo. Len. Field Value +19:58:40 ============================================================================ +19:58:40 [ 1] [ 4] [0200] +19:58:40 [ 2] [ 16] [1808931000004737] +19:58:40 [ 3] [ 6] [011000] +19:58:40 [ 4] [ 12] [000100000000] +19:58:40 [ 7] [ 10] [0320195834] +19:58:40 [ 11] [ 6] [839959] +19:58:40 [ 12] [ 6] [195834] +19:58:40 [ 13] [ 4] [0320] +19:58:40 [ 15] [ 4] [0320] +19:58:40 [ 18] [ 4] [6011] +19:58:40 [ 22] [ 3] [900] +19:58:40 [ 25] [ 2] [02] +19:58:40 [ 28] [ 9] [D00002000] +19:58:40 [ 32] [ 6] [621354] +19:58:40 [ 35] [ 27] [1808931000004737=1803500445] +19:58:40 [ 37] [ 12] [507904827742] +19:58:40 [ 41] [ 8] [11000600] +19:58:40 [ 42] [ 15] [NATIVE ] +19:58:40 [ 43] [ 40] [Bokeo Branch02 Houysai LAO] +19:58:40 [ 49] [ 3] [418] +19:58:40 [ 52] [ 16] [44BBDFB22B1CEF14] +19:58:40 ============================================================================ +19:58:40 + + +waiting on router queue for slot.... +19:58:40 Sending to : <2> +19:58:40 ============================================================================ +19:58:50 ============================================================================ +19:58:50 Slot Id : <443> +19:58:50 Transaction Type : RESPONSE +19:58:50 Received From : +19:58:50 ============================================================================ +19:58:50 FNo. Len. Field Value +19:58:50 ============================================================================ +19:58:50 [ 1] [ 4] [0210] +19:58:50 [ 2] [ 16] [1808931000004737] +19:58:50 [ 3] [ 6] [011000] +19:58:50 [ 4] [ 12] [000100000000] +19:58:50 [ 6] [ 12] [000100000000] +19:58:50 [ 7] [ 10] [0320195834] +19:58:50 [ 11] [ 6] [839959] +19:58:50 [ 12] [ 6] [195834] +19:58:50 [ 13] [ 4] [0320] +19:58:50 [ 18] [ 4] [6011] +19:58:50 [ 19] [ 3] [418] +19:58:50 [ 22] [ 3] [021] +19:58:50 [ 32] [ 6] [621354] +19:58:50 [ 35] [ 27] [1808931000004737=1803500445] +19:58:50 [ 37] [ 12] [507904827742] +19:58:50 [ 38] [ 6] [839959] +19:58:50 [ 39] [ 2] [00] +19:58:50 [ 41] [ 8] [11000600] +19:58:50 [ 49] [ 3] [418] +19:58:50 [ 52] [ 16] [44BBDFB22B1CEF14] +19:58:50 [ 54] [ 20] [1001418C000127012400] +19:58:50 ============================================================================ +19:58:50 Sending to : +19:58:50 ============================================================================ +19:58:50 + + +waiting on router queue for slot.... +19:58:52 ============================================================================ +19:58:52 Slot Id : <443> +19:58:52 Transaction Type : RESPONSE +19:58:52 Received From : +19:58:52 ============================================================================ +19:58:52 FNo. Len. Field Value +19:58:52 ============================================================================ +19:58:52 [ 1] [ 4] [0210] +19:58:52 [ 2] [ 16] [1808931000004737] +19:58:52 [ 3] [ 6] [011000] +19:58:52 [ 4] [ 12] [000100000000] +19:58:52 [ 6] [ 12] [000100000000] +19:58:52 [ 7] [ 10] [0320195834] +19:58:52 [ 11] [ 6] [839959] +19:58:52 [ 12] [ 6] [195834] +19:58:52 [ 13] [ 4] [0320] +19:58:52 [ 18] [ 4] [6011] +19:58:52 [ 19] [ 3] [418] +19:58:52 [ 22] [ 3] [021] +19:58:52 [ 32] [ 6] [621354] +19:58:52 [ 35] [ 27] [1808931000004737=1803500445] +19:58:52 [ 37] [ 12] [507904827742] +19:58:52 [ 38] [ 6] [839959] +19:58:52 [ 39] [ 2] [00] +19:58:52 [ 41] [ 8] [11000600] +19:58:52 [ 49] [ 3] [418] +19:58:52 [ 52] [ 16] [44BBDFB22B1CEF14] +19:58:52 [ 54] [ 20] [1001418C000127012400] +19:58:52 ============================================================================ +19:58:52 Calculate Source COMM Id = 0 +19:58:52 ============================================================================ +19:58:52 + + +waiting on router queue for slot.... +19:58:55 ============================================================================ +19:58:55 Slot Id : <429> +19:58:55 Transaction Type : REQUEST +19:58:55 Received From : +19:58:55 ============================================================================ +19:58:55 FNo. Len. Field Value +19:58:55 ============================================================================ +19:58:55 [ 1] [ 4] [0800] +19:58:55 [ 7] [ 10] [0320125801] +19:58:55 [ 11] [ 6] [158086] +19:58:55 [ 70] [ 3] [301] +19:58:55 ============================================================================ +19:58:55 + + +waiting on router queue for slot.... +19:58:55 Sending to : +19:58:55 ============================================================================ +19:58:55 ============================================================================ +19:58:55 Slot Id : <429> +19:58:55 Transaction Type : RESPONSE +19:58:55 Received From : +19:58:55 ============================================================================ +19:58:55 FNo. Len. Field Value +19:58:55 ============================================================================ +19:58:55 [ 1] [ 4] [0810] +19:58:55 [ 7] [ 10] [0320125801] +19:58:55 [ 11] [ 6] [158086] +19:58:55 [ 39] [ 2] [00] +19:58:55 [ 70] [ 3] [301] +19:58:55 ============================================================================ +19:58:55 Calculate Source COMM Id = 2 +19:58:55 ============================================================================ +19:58:55 + + +waiting on router queue for slot.... +19:59:05 ============================================================================ +19:59:05 Slot Id : <386> +19:59:05 Transaction Type : REQUEST +19:59:05 Received From : +19:59:05 ============================================================================ +19:59:05 FNo. Len. Field Value +19:59:05 ============================================================================ +19:59:05 [ 1] [ 4] [0800] +19:59:05 [ 7] [ 10] [0320125812] +19:59:05 [ 11] [ 6] [158087] +19:59:05 [ 70] [ 3] [301] +19:59:05 ============================================================================ +19:59:05 + + +waiting on router queue for slot.... +19:59:05 Sending to : +19:59:05 ============================================================================ +19:59:05 ============================================================================ +19:59:05 Slot Id : <386> +19:59:05 Transaction Type : RESPONSE +19:59:05 Received From : +19:59:05 ============================================================================ +19:59:05 FNo. Len. Field Value +19:59:05 ============================================================================ +19:59:05 [ 1] [ 4] [0810] +19:59:05 [ 7] [ 10] [0320125812] +19:59:05 [ 11] [ 6] [158087] +19:59:05 [ 39] [ 2] [00] +19:59:05 [ 70] [ 3] [301] +19:59:05 ============================================================================ +19:59:05 Calculate Source COMM Id = 2 +19:59:05 ============================================================================ +19:59:05 + + +waiting on router queue for slot.... +19:59:16 ============================================================================ +19:59:16 Slot Id : <377> +19:59:16 Transaction Type : REQUEST +19:59:16 Received From : +19:59:16 ============================================================================ +19:59:16 FNo. Len. Field Value +19:59:16 ============================================================================ +19:59:16 [ 1] [ 4] [0800] +19:59:16 [ 7] [ 10] [0320125823] +19:59:16 [ 11] [ 6] [158088] +19:59:16 [ 70] [ 3] [301] +19:59:16 ============================================================================ +19:59:16 + + +waiting on router queue for slot.... +19:59:16 Sending to : +19:59:16 ============================================================================ +19:59:16 ============================================================================ +19:59:16 Slot Id : <377> +19:59:16 Transaction Type : RESPONSE +19:59:16 Received From : +19:59:16 ============================================================================ +19:59:16 FNo. Len. Field Value +19:59:16 ============================================================================ +19:59:16 [ 1] [ 4] [0810] +19:59:16 [ 7] [ 10] [0320125823] +19:59:16 [ 11] [ 6] [158088] +19:59:16 [ 39] [ 2] [00] +19:59:16 [ 70] [ 3] [301] +19:59:16 ============================================================================ +19:59:16 Calculate Source COMM Id = 2 +19:59:16 ============================================================================ +19:59:16 + + +waiting on router queue for slot.... +19:59:17 ============================================================================ +19:59:17 Slot Id : <446> +19:59:17 Transaction Type : REQUEST +19:59:17 Received From : +19:59:17 ============================================================================ +19:59:17 FNo. Len. Field Value +19:59:17 ============================================================================ +19:59:17 [ 1] [ 4] [0800] +19:59:17 [ 7] [ 10] [0321031105] +19:59:17 [ 11] [ 6] [201105] +19:59:17 [ 37] [ 12] [57920201105] +19:59:17 [ 70] [ 3] [301] +19:59:17 ============================================================================ +19:59:17 + + +waiting on router queue for slot.... +19:59:17 Sending to : +19:59:17 ============================================================================ +19:59:17 ============================================================================ +19:59:17 Slot Id : <446> +19:59:17 Transaction Type : RESPONSE +19:59:17 Received From : +19:59:17 ============================================================================ +19:59:17 FNo. Len. Field Value +19:59:17 ============================================================================ +19:59:17 [ 1] [ 4] [0810] +19:59:17 [ 7] [ 10] [0321031105] +19:59:17 [ 11] [ 6] [201105] +19:59:17 [ 37] [ 12] [579202011050] +19:59:17 [ 39] [ 2] [00] +19:59:17 [ 70] [ 3] [810] +19:59:17 ============================================================================ +19:59:17 Calculate Source COMM Id = 6 +19:59:17 ============================================================================ +19:59:17 + + +waiting on router queue for slot.... +19:59:19 ============================================================================ +19:59:19 Slot Id : <456> +19:59:19 Transaction Type : REQUEST +19:59:19 Received From : +19:59:19 ============================================================================ +19:59:19 FNo. Len. Field Value +19:59:19 ============================================================================ +19:59:19 [ 1] [ 4] [0800] +19:59:19 [ 2] [ 5] [02531] +19:59:19 [ 3] [ 6] [579198] +19:59:19 [ 7] [ 10] [0320125919] +19:59:19 [ 11] [ 6] [807572] +19:59:19 [ 15] [ 10] [0320125919] +19:59:19 [ 37] [ 11] [57919807572] +19:59:19 [ 70] [ 3] [001] +19:59:19 ============================================================================ +19:59:19 + + +waiting on router queue for slot.... +19:59:19 ============================================================================ +19:59:19 Slot Id : <456> +19:59:19 Transaction Type : RESPONSE +19:59:19 Received From : +19:59:19 ============================================================================ +19:59:19 FNo. Len. Field Value +19:59:19 ============================================================================ +19:59:19 [ 1] [ 4] [0810] +19:59:19 [ 7] [ 10] [0320125919] +19:59:19 [ 11] [ 6] [807572] +19:59:19 [ 15] [ 4] [0320] +19:59:19 [ 37] [ 12] [57919807572] +19:59:19 [ 39] [ 2] [00] +19:59:19 [ 70] [ 3] [001] +19:59:19 ============================================================================ +19:59:19 Sending to : +19:59:19 ============================================================================ +19:59:19 + + +waiting on router queue for slot.... +19:59:27 ============================================================================ +19:59:27 Slot Id : <404> +19:59:27 Transaction Type : REQUEST +19:59:27 Received From : +19:59:27 ============================================================================ +19:59:27 FNo. Len. Field Value +19:59:27 ============================================================================ +19:59:27 [ 1] [ 4] [0800] +19:59:27 [ 7] [ 10] [0320125833] +19:59:27 [ 11] [ 6] [158089] +19:59:27 [ 70] [ 3] [301] +19:59:27 ============================================================================ +19:59:27 + + +waiting on router queue for slot.... +19:59:27 Sending to : +19:59:27 ============================================================================ +19:59:27 ============================================================================ +19:59:27 Slot Id : <404> +19:59:27 Transaction Type : RESPONSE +19:59:27 Received From : +19:59:27 ============================================================================ +19:59:27 FNo. Len. Field Value +19:59:27 ============================================================================ +19:59:27 [ 1] [ 4] [0810] +19:59:27 [ 7] [ 10] [0320125833] +19:59:27 [ 11] [ 6] [158089] +19:59:27 [ 39] [ 2] [00] +19:59:27 [ 70] [ 3] [301] +19:59:27 ============================================================================ +19:59:27 Calculate Source COMM Id = 2 +19:59:27 ============================================================================ +19:59:27 + + +waiting on router queue for slot.... +19:59:36 ============================================================================ +19:59:36 Slot Id : <424> +19:59:36 Transaction Type : REQUEST +19:59:36 Received From : +19:59:36 ============================================================================ +19:59:36 FNo. Len. Field Value +19:59:36 ============================================================================ +19:59:36 [ 1] [ 4] [0200] +19:59:36 [ 2] [ 16] [6688990040145458] +19:59:36 [ 3] [ 6] [011000] +19:59:36 [ 4] [ 12] [000005000000] +19:59:36 [ 7] [ 10] [0320195930] +19:59:36 [ 11] [ 6] [840033] +19:59:36 [ 12] [ 6] [195930] +19:59:36 [ 13] [ 4] [0320] +19:59:36 [ 15] [ 4] [0320] +19:59:36 [ 18] [ 4] [6011] +19:59:36 [ 22] [ 3] [900] +19:59:36 [ 25] [ 2] [02] +19:59:36 [ 28] [ 9] [D00002000] +19:59:36 [ 32] [ 6] [621354] +19:59:36 [ 35] [ 37] [6688990040145458=98041261652882100000] +19:59:36 [ 37] [ 12] [507905335296] +19:59:36 [ 41] [ 8] [05004700] +19:59:36 [ 42] [ 15] [NATIVE ] +19:59:36 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +19:59:36 [ 49] [ 3] [418] +19:59:36 [ 52] [ 16] [1E029173EB0D4DAB] +19:59:36 ============================================================================ +19:59:36 + + +waiting on router queue for slot.... +19:59:36 Sending to : +19:59:36 ============================================================================ +19:59:36 Sending to : +19:59:36 ============================================================================ +19:59:36 ============================================================================ +19:59:36 Slot Id : <424> +19:59:36 Transaction Type : REQUEST +19:59:36 Received From : +19:59:36 ============================================================================ +19:59:36 FNo. Len. Field Value +19:59:36 ============================================================================ +19:59:36 [ 1] [ 4] [0200] +19:59:36 [ 2] [ 16] [6688990040145458] +19:59:36 [ 3] [ 6] [011000] +19:59:36 [ 4] [ 12] [000005000000] +19:59:36 [ 7] [ 10] [0320195930] +19:59:36 [ 11] [ 6] [840033] +19:59:36 [ 12] [ 6] [195930] +19:59:36 [ 13] [ 4] [0320] +19:59:36 [ 15] [ 4] [0320] +19:59:36 [ 18] [ 4] [6011] +19:59:36 [ 22] [ 3] [900] +19:59:36 [ 25] [ 2] [02] +19:59:36 [ 28] [ 9] [D00002000] +19:59:36 [ 32] [ 6] [621354] +19:59:36 [ 35] [ 37] [6688990040145458=98041261652882100000] +19:59:36 [ 37] [ 12] [507905335296] +19:59:36 [ 41] [ 8] [05004700] +19:59:36 [ 42] [ 15] [NATIVE ] +19:59:36 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +19:59:36 [ 49] [ 3] [418] +19:59:36 [ 52] [ 16] [1E029173EB0D4DAB] +19:59:36 ============================================================================ +19:59:36 + + +waiting on router queue for slot.... +19:59:36 Sending to : +19:59:36 ============================================================================ +19:59:36 ============================================================================ +19:59:36 Slot Id : <424> +19:59:36 Transaction Type : REQUEST +19:59:36 Received From : +19:59:36 ============================================================================ +19:59:36 FNo. Len. Field Value +19:59:36 ============================================================================ +19:59:36 [ 1] [ 4] [0200] +19:59:36 [ 2] [ 16] [6688990040145458] +19:59:36 [ 3] [ 6] [011000] +19:59:36 [ 4] [ 12] [000005000000] +19:59:36 [ 7] [ 10] [0320195930] +19:59:36 [ 11] [ 6] [840033] +19:59:36 [ 12] [ 6] [195930] +19:59:36 [ 13] [ 4] [0320] +19:59:36 [ 15] [ 4] [0320] +19:59:36 [ 18] [ 4] [6011] +19:59:36 [ 22] [ 3] [900] +19:59:36 [ 25] [ 2] [02] +19:59:36 [ 28] [ 9] [D00002000] +19:59:36 [ 32] [ 6] [621354] +19:59:36 [ 35] [ 37] [6688990040145458=98041261652882100000] +19:59:36 [ 37] [ 12] [507905335296] +19:59:36 [ 41] [ 8] [05004700] +19:59:36 [ 42] [ 15] [NATIVE ] +19:59:36 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +19:59:36 [ 49] [ 3] [418] +19:59:36 [ 52] [ 16] [13ABA4E621531890] +19:59:36 ============================================================================ +19:59:36 + + +waiting on router queue for slot.... +19:59:36 Sending to : <4> +19:59:36 ============================================================================ +19:59:37 ============================================================================ +19:59:37 Slot Id : <424> +19:59:37 Transaction Type : RESPONSE +19:59:37 Received From : +19:59:37 ============================================================================ +19:59:37 FNo. Len. Field Value +19:59:37 ============================================================================ +19:59:37 [ 1] [ 4] [0210] +19:59:37 [ 2] [ 16] [6688990040145458] +19:59:37 [ 3] [ 6] [011000] +19:59:37 [ 4] [ 12] [000005000000] +19:59:37 [ 11] [ 6] [840033] +19:59:37 [ 12] [ 6] [195930] +19:59:37 [ 15] [ 4] [0320] +19:59:37 [ 18] [ 4] [6011] +19:59:37 [ 32] [ 6] [621354] +19:59:37 [ 35] [ 37] [6688990040145458=98041261652882100000] +19:59:37 [ 37] [ 12] [507905335296] +19:59:37 [ 38] [ 6] [764476] +19:59:37 [ 39] [ 2] [00] +19:59:37 [ 41] [ 8] [05004700] +19:59:37 [ 49] [ 3] [418] +19:59:37 [ 54] [ 20] [1002418C000008600000] +19:59:37 ============================================================================ +19:59:37 Sending to : +19:59:37 ============================================================================ +19:59:37 + + +waiting on router queue for slot.... +19:59:37 ============================================================================ +19:59:37 Slot Id : <434> +19:59:37 Transaction Type : REQUEST +19:59:37 Received From : +19:59:37 ============================================================================ +19:59:37 FNo. Len. Field Value +19:59:37 ============================================================================ +19:59:37 [ 1] [ 4] [0200] +19:59:37 [ 2] [ 16] [6688990040074823] +19:59:37 [ 3] [ 6] [010000] +19:59:37 [ 4] [ 12] [000010000000] +19:59:37 [ 7] [ 10] [0320125844] +19:59:37 [ 11] [ 6] [271530] +19:59:37 [ 12] [ 6] [195844] +19:59:37 [ 13] [ 4] [0320] +19:59:37 [ 14] [ 4] [9801] +19:59:37 [ 15] [ 4] [0320] +19:59:37 [ 18] [ 4] [6011] +19:59:37 [ 19] [ 3] [418] +19:59:37 [ 22] [ 3] [021] +19:59:37 [ 25] [ 2] [01] +19:59:37 [ 28] [ 9] [D00002000] +19:59:37 [ 32] [ 6] [180893] +19:59:37 [ 35] [ 37] [6688990040074823=98011261783605600000] +19:59:37 [ 37] [ 12] [507912271530] +19:59:37 [ 41] [ 8] [0466PSLB] +19:59:37 [ 42] [ 15] [999999 ] +19:59:37 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:59:37 [ 49] [ 3] [418] +19:59:37 [ 52] [ 16] [63230FAE8B2A3B74] +19:59:37 ============================================================================ +19:59:37 + + +waiting on router queue for slot.... +19:59:37 Sending to : +19:59:37 ============================================================================ +19:59:37 Sending to : +19:59:37 ============================================================================ +19:59:38 ============================================================================ +19:59:38 Slot Id : <434> +19:59:38 Transaction Type : REQUEST +19:59:38 Received From : +19:59:38 ============================================================================ +19:59:38 FNo. Len. Field Value +19:59:38 ============================================================================ +19:59:38 [ 1] [ 4] [0200] +19:59:38 [ 2] [ 16] [6688990040074823] +19:59:38 [ 3] [ 6] [010000] +19:59:38 [ 4] [ 12] [000010000000] +19:59:38 [ 7] [ 10] [0320125844] +19:59:38 [ 11] [ 6] [271530] +19:59:38 [ 12] [ 6] [195844] +19:59:38 [ 13] [ 4] [0320] +19:59:38 [ 14] [ 4] [9801] +19:59:38 [ 15] [ 4] [0320] +19:59:38 [ 18] [ 4] [6011] +19:59:38 [ 19] [ 3] [418] +19:59:38 [ 22] [ 3] [021] +19:59:38 [ 25] [ 2] [01] +19:59:38 [ 28] [ 9] [D00002000] +19:59:38 [ 32] [ 6] [180893] +19:59:38 [ 35] [ 37] [6688990040074823=98011261783605600000] +19:59:38 [ 37] [ 12] [507912271530] +19:59:38 [ 41] [ 8] [0466PSLB] +19:59:38 [ 42] [ 15] [999999 ] +19:59:38 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:59:38 [ 49] [ 3] [418] +19:59:38 [ 52] [ 16] [63230FAE8B2A3B74] +19:59:38 ============================================================================ +19:59:38 + + +waiting on router queue for slot.... +19:59:38 Sending to : +19:59:38 ============================================================================ +19:59:38 ============================================================================ +19:59:38 Slot Id : <434> +19:59:38 Transaction Type : REQUEST +19:59:38 Received From : +19:59:38 ============================================================================ +19:59:38 FNo. Len. Field Value +19:59:38 ============================================================================ +19:59:38 [ 1] [ 4] [0200] +19:59:38 [ 2] [ 16] [6688990040074823] +19:59:38 [ 3] [ 6] [010000] +19:59:38 [ 4] [ 12] [000010000000] +19:59:38 [ 7] [ 10] [0320125844] +19:59:38 [ 11] [ 6] [271530] +19:59:38 [ 12] [ 6] [195844] +19:59:38 [ 13] [ 4] [0320] +19:59:38 [ 14] [ 4] [9801] +19:59:38 [ 15] [ 4] [0320] +19:59:38 [ 18] [ 4] [6011] +19:59:38 [ 19] [ 3] [418] +19:59:38 [ 22] [ 3] [021] +19:59:38 [ 25] [ 2] [01] +19:59:38 [ 28] [ 9] [D00002000] +19:59:38 [ 32] [ 6] [180893] +19:59:38 [ 35] [ 37] [6688990040074823=98011261783605600000] +19:59:38 [ 37] [ 12] [507912271530] +19:59:38 [ 41] [ 8] [0466PSLB] +19:59:38 [ 42] [ 15] [999999 ] +19:59:38 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +19:59:38 [ 49] [ 3] [418] +19:59:38 [ 52] [ 16] [F79E2A59046D9466] +19:59:38 ============================================================================ +19:59:38 + + +waiting on router queue for slot.... +19:59:38 Sending to : <0> +19:59:38 ============================================================================ +19:59:38 ============================================================================ +19:59:38 Slot Id : <434> +19:59:38 Transaction Type : RESPONSE +19:59:38 Received From : +19:59:38 ============================================================================ +19:59:38 FNo. Len. Field Value +19:59:38 ============================================================================ +19:59:38 [ 1] [ 4] [0210] +19:59:38 [ 2] [ 16] [6688990040074823] +19:59:38 [ 3] [ 6] [010000] +19:59:38 [ 4] [ 12] [000010000000] +19:59:38 [ 7] [ 10] [0320125844] +19:59:38 [ 11] [ 6] [271530] +19:59:38 [ 12] [ 6] [195844] +19:59:38 [ 13] [ 4] [0320] +19:59:38 [ 15] [ 4] [0320] +19:59:38 [ 18] [ 4] [6011] +19:59:38 [ 19] [ 3] [418] +19:59:38 [ 22] [ 3] [021] +19:59:38 [ 32] [ 6] [180893] +19:59:38 [ 35] [ 37] [6688990040074823=98011261783605600000] +19:59:38 [ 37] [ 12] [507912271530] +19:59:38 [ 39] [ 2] [14] +19:59:38 [ 41] [ 8] [0466PSLB] +19:59:38 [ 49] [ 3] [418] +19:59:38 ============================================================================ +19:59:38 Sending to : +19:59:38 ============================================================================ +19:59:38 + + +waiting on router queue for slot.... +19:59:38 ============================================================================ +19:59:38 Slot Id : <424> +19:59:38 Transaction Type : RESPONSE +19:59:38 Received From : +19:59:38 ============================================================================ +19:59:38 FNo. Len. Field Value +19:59:38 ============================================================================ +19:59:38 [ 1] [ 4] [0210] +19:59:38 [ 2] [ 16] [6688990040145458] +19:59:38 [ 3] [ 6] [011000] +19:59:38 [ 4] [ 12] [000005000000] +19:59:38 [ 11] [ 6] [840033] +19:59:38 [ 12] [ 6] [195930] +19:59:38 [ 15] [ 4] [0320] +19:59:38 [ 18] [ 4] [6011] +19:59:38 [ 32] [ 6] [621354] +19:59:38 [ 35] [ 37] [6688990040145458=98041261652882100000] +19:59:38 [ 37] [ 12] [507905335296] +19:59:38 [ 38] [ 6] [764476] +19:59:38 [ 39] [ 2] [00] +19:59:38 [ 41] [ 8] [05004700] +19:59:38 [ 49] [ 3] [418] +19:59:38 [ 54] [ 20] [1002418C000008600000] +19:59:38 ============================================================================ +19:59:38 Calculate Source COMM Id = 0 +19:59:38 ============================================================================ +19:59:38 + + +waiting on router queue for slot.... +19:59:40 ============================================================================ +19:59:40 Slot Id : <434> +19:59:40 Transaction Type : RESPONSE +19:59:40 Received From : +19:59:40 ============================================================================ +19:59:40 FNo. Len. Field Value +19:59:40 ============================================================================ +19:59:40 [ 1] [ 4] [0210] +19:59:40 [ 2] [ 16] [6688990040074823] +19:59:40 [ 3] [ 6] [010000] +19:59:40 [ 4] [ 12] [000010000000] +19:59:40 [ 7] [ 10] [0320125844] +19:59:40 [ 11] [ 6] [271530] +19:59:40 [ 12] [ 6] [195844] +19:59:40 [ 13] [ 4] [0320] +19:59:40 [ 15] [ 4] [0320] +19:59:40 [ 18] [ 4] [6011] +19:59:40 [ 19] [ 3] [418] +19:59:40 [ 22] [ 3] [021] +19:59:40 [ 32] [ 6] [180893] +19:59:40 [ 35] [ 37] [6688990040074823=98011261783605600000] +19:59:40 [ 37] [ 12] [507912271530] +19:59:40 [ 39] [ 2] [14] +19:59:40 [ 41] [ 8] [0466PSLB] +19:59:40 [ 49] [ 3] [418] +19:59:40 ============================================================================ +19:59:40 Calculate Source COMM Id = 2 +19:59:40 ============================================================================ +19:59:40 + + +waiting on router queue for slot.... +19:59:53 ============================================================================ +19:59:53 Slot Id : <445> +19:59:53 Transaction Type : REQUEST +19:59:53 Received From : +19:59:53 ============================================================================ +19:59:53 FNo. Len. Field Value +19:59:53 ============================================================================ +19:59:53 [ 1] [ 4] [0800] +19:59:53 [ 7] [ 10] [0320125900] +19:59:53 [ 11] [ 6] [158090] +19:59:53 [ 70] [ 3] [301] +19:59:53 ============================================================================ +19:59:53 + + +waiting on router queue for slot.... +19:59:53 Sending to : +19:59:53 ============================================================================ +19:59:53 ============================================================================ +19:59:53 Slot Id : <445> +19:59:53 Transaction Type : RESPONSE +19:59:53 Received From : +19:59:53 ============================================================================ +19:59:53 FNo. Len. Field Value +19:59:53 ============================================================================ +19:59:53 [ 1] [ 4] [0810] +19:59:53 [ 7] [ 10] [0320125900] +19:59:53 [ 11] [ 6] [158090] +19:59:53 [ 39] [ 2] [00] +19:59:53 [ 70] [ 3] [301] +19:59:53 ============================================================================ +19:59:53 Calculate Source COMM Id = 2 +19:59:53 ============================================================================ +19:59:53 + + +waiting on router queue for slot.... +19:59:57 ============================================================================ +19:59:57 Slot Id : <442> +19:59:57 Transaction Type : REQUEST +19:59:57 Received From : +19:59:57 ============================================================================ +19:59:57 FNo. Len. Field Value +19:59:57 ============================================================================ +19:59:57 [ 1] [ 4] [0800] +19:59:57 [ 7] [ 10] [0320130742] +19:59:57 [ 11] [ 6] [053544] +19:59:57 [ 37] [ 12] [57920053544] +19:59:57 [ 70] [ 3] [301] +19:59:57 ============================================================================ +19:59:57 + + +waiting on router queue for slot.... +19:59:57 Sending to : +19:59:57 ============================================================================ +19:59:57 ============================================================================ +19:59:57 Slot Id : <442> +19:59:57 Transaction Type : RESPONSE +19:59:57 Received From : +19:59:57 ============================================================================ +19:59:57 FNo. Len. Field Value +19:59:57 ============================================================================ +19:59:57 [ 1] [ 4] [0810] +19:59:57 [ 7] [ 10] [0320130742] +19:59:57 [ 11] [ 6] [053544] +19:59:57 [ 37] [ 12] [579200535440] +19:59:57 [ 39] [ 2] [00] +19:59:57 [ 70] [ 3] [810] +19:59:57 ============================================================================ +19:59:57 Calculate Source COMM Id = 1 +19:59:57 ============================================================================ +19:59:57 + + +waiting on router queue for slot.... +20:00:04 ============================================================================ +20:00:04 Slot Id : <438> +20:00:04 Transaction Type : REQUEST +20:00:04 Received From : +20:00:04 ============================================================================ +20:00:04 FNo. Len. Field Value +20:00:04 ============================================================================ +20:00:04 [ 1] [ 4] [0800] +20:00:04 [ 7] [ 10] [0320125910] +20:00:04 [ 11] [ 6] [158091] +20:00:04 [ 70] [ 3] [301] +20:00:04 ============================================================================ +20:00:04 + + +waiting on router queue for slot.... +20:00:04 Sending to : +20:00:04 ============================================================================ +20:00:04 ============================================================================ +20:00:04 Slot Id : <438> +20:00:04 Transaction Type : RESPONSE +20:00:04 Received From : +20:00:04 ============================================================================ +20:00:04 FNo. Len. Field Value +20:00:04 ============================================================================ +20:00:04 [ 1] [ 4] [0810] +20:00:04 [ 7] [ 10] [0320125910] +20:00:04 [ 11] [ 6] [158091] +20:00:04 [ 39] [ 2] [00] +20:00:04 [ 70] [ 3] [301] +20:00:04 ============================================================================ +20:00:04 Calculate Source COMM Id = 2 +20:00:04 ============================================================================ +20:00:04 + + +waiting on router queue for slot.... +20:00:14 ============================================================================ +20:00:14 Slot Id : <435> +20:00:14 Transaction Type : REQUEST +20:00:14 Received From : +20:00:14 ============================================================================ +20:00:14 FNo. Len. Field Value +20:00:14 ============================================================================ +20:00:14 [ 1] [ 4] [0800] +20:00:14 [ 7] [ 10] [0320125921] +20:00:14 [ 11] [ 6] [158092] +20:00:14 [ 70] [ 3] [301] +20:00:14 ============================================================================ +20:00:14 + + +waiting on router queue for slot.... +20:00:14 Sending to : +20:00:14 ============================================================================ +20:00:14 ============================================================================ +20:00:14 Slot Id : <435> +20:00:14 Transaction Type : RESPONSE +20:00:14 Received From : +20:00:14 ============================================================================ +20:00:14 FNo. Len. Field Value +20:00:14 ============================================================================ +20:00:14 [ 1] [ 4] [0810] +20:00:14 [ 7] [ 10] [0320125921] +20:00:14 [ 11] [ 6] [158092] +20:00:14 [ 39] [ 2] [00] +20:00:14 [ 70] [ 3] [301] +20:00:14 ============================================================================ +20:00:14 Calculate Source COMM Id = 2 +20:00:14 ============================================================================ +20:00:14 + + +waiting on router queue for slot.... +20:00:16 ============================================================================ +20:00:16 Slot Id : <431> +20:00:16 Transaction Type : REQUEST +20:00:16 Received From : +20:00:16 ============================================================================ +20:00:16 FNo. Len. Field Value +20:00:16 ============================================================================ +20:00:16 [ 1] [ 4] [0200] +20:00:16 [ 2] [ 16] [6688990040074823] +20:00:16 [ 3] [ 6] [010000] +20:00:16 [ 4] [ 12] [000100000000] +20:00:16 [ 7] [ 10] [0320125922] +20:00:16 [ 11] [ 6] [271532] +20:00:16 [ 12] [ 6] [195922] +20:00:16 [ 13] [ 4] [0320] +20:00:16 [ 14] [ 4] [9801] +20:00:16 [ 15] [ 4] [0320] +20:00:16 [ 18] [ 4] [6011] +20:00:16 [ 19] [ 3] [418] +20:00:16 [ 22] [ 3] [021] +20:00:16 [ 25] [ 2] [01] +20:00:16 [ 28] [ 9] [D00002000] +20:00:16 [ 32] [ 6] [180893] +20:00:16 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:00:16 [ 37] [ 12] [507912271532] +20:00:16 [ 41] [ 8] [0466PSLB] +20:00:16 [ 42] [ 15] [999999 ] +20:00:16 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:00:16 [ 49] [ 3] [418] +20:00:16 [ 52] [ 16] [63230FAE8B2A3B74] +20:00:16 ============================================================================ +20:00:16 + + +waiting on router queue for slot.... +20:00:16 Sending to : +20:00:16 ============================================================================ +20:00:16 Sending to : +20:00:16 ============================================================================ +20:00:16 ============================================================================ +20:00:16 Slot Id : <431> +20:00:16 Transaction Type : REQUEST +20:00:16 Received From : +20:00:16 ============================================================================ +20:00:16 FNo. Len. Field Value +20:00:16 ============================================================================ +20:00:16 [ 1] [ 4] [0200] +20:00:16 [ 2] [ 16] [6688990040074823] +20:00:16 [ 3] [ 6] [010000] +20:00:16 [ 4] [ 12] [000100000000] +20:00:16 [ 7] [ 10] [0320125922] +20:00:16 [ 11] [ 6] [271532] +20:00:16 [ 12] [ 6] [195922] +20:00:16 [ 13] [ 4] [0320] +20:00:16 [ 14] [ 4] [9801] +20:00:16 [ 15] [ 4] [0320] +20:00:16 [ 18] [ 4] [6011] +20:00:16 [ 19] [ 3] [418] +20:00:16 [ 22] [ 3] [021] +20:00:16 [ 25] [ 2] [01] +20:00:16 [ 28] [ 9] [D00002000] +20:00:16 [ 32] [ 6] [180893] +20:00:16 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:00:16 [ 37] [ 12] [507912271532] +20:00:16 [ 41] [ 8] [0466PSLB] +20:00:16 [ 42] [ 15] [999999 ] +20:00:16 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:00:16 [ 49] [ 3] [418] +20:00:16 [ 52] [ 16] [63230FAE8B2A3B74] +20:00:16 ============================================================================ +20:00:16 + + +waiting on router queue for slot.... +20:00:16 Sending to : +20:00:16 ============================================================================ +20:00:16 ============================================================================ +20:00:16 Slot Id : <431> +20:00:16 Transaction Type : REQUEST +20:00:16 Received From : +20:00:16 ============================================================================ +20:00:16 FNo. Len. Field Value +20:00:16 ============================================================================ +20:00:16 [ 1] [ 4] [0200] +20:00:16 [ 2] [ 16] [6688990040074823] +20:00:16 [ 3] [ 6] [010000] +20:00:16 [ 4] [ 12] [000100000000] +20:00:16 [ 7] [ 10] [0320125922] +20:00:16 [ 11] [ 6] [271532] +20:00:16 [ 12] [ 6] [195922] +20:00:16 [ 13] [ 4] [0320] +20:00:16 [ 14] [ 4] [9801] +20:00:16 [ 15] [ 4] [0320] +20:00:16 [ 18] [ 4] [6011] +20:00:16 [ 19] [ 3] [418] +20:00:16 [ 22] [ 3] [021] +20:00:16 [ 25] [ 2] [01] +20:00:16 [ 28] [ 9] [D00002000] +20:00:16 [ 32] [ 6] [180893] +20:00:16 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:00:16 [ 37] [ 12] [507912271532] +20:00:16 [ 41] [ 8] [0466PSLB] +20:00:16 [ 42] [ 15] [999999 ] +20:00:16 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:00:16 [ 49] [ 3] [418] +20:00:16 [ 52] [ 16] [F79E2A59046D9466] +20:00:16 ============================================================================ +20:00:16 + + +waiting on router queue for slot.... +20:00:16 Sending to : <0> +20:00:16 ============================================================================ +20:00:16 ============================================================================ +20:00:16 Slot Id : <431> +20:00:16 Transaction Type : RESPONSE +20:00:16 Received From : +20:00:16 ============================================================================ +20:00:16 FNo. Len. Field Value +20:00:16 ============================================================================ +20:00:16 [ 1] [ 4] [0210] +20:00:16 [ 2] [ 16] [6688990040074823] +20:00:16 [ 3] [ 6] [010000] +20:00:16 [ 4] [ 12] [000100000000] +20:00:16 [ 7] [ 10] [0320125922] +20:00:16 [ 11] [ 6] [271532] +20:00:16 [ 12] [ 6] [195922] +20:00:16 [ 13] [ 4] [0320] +20:00:16 [ 15] [ 4] [0320] +20:00:16 [ 18] [ 4] [6011] +20:00:16 [ 19] [ 3] [418] +20:00:16 [ 22] [ 3] [021] +20:00:16 [ 32] [ 6] [180893] +20:00:16 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:00:16 [ 37] [ 12] [507912271532] +20:00:16 [ 39] [ 2] [14] +20:00:16 [ 41] [ 8] [0466PSLB] +20:00:16 [ 49] [ 3] [418] +20:00:16 ============================================================================ +20:00:16 Sending to : +20:00:16 ============================================================================ +20:00:16 + + +waiting on router queue for slot.... +20:00:17 ============================================================================ +20:00:17 Slot Id : <431> +20:00:17 Transaction Type : RESPONSE +20:00:17 Received From : +20:00:17 ============================================================================ +20:00:17 FNo. Len. Field Value +20:00:17 ============================================================================ +20:00:17 [ 1] [ 4] [0210] +20:00:17 [ 2] [ 16] [6688990040074823] +20:00:17 [ 3] [ 6] [010000] +20:00:17 [ 4] [ 12] [000100000000] +20:00:17 [ 7] [ 10] [0320125922] +20:00:17 [ 11] [ 6] [271532] +20:00:17 [ 12] [ 6] [195922] +20:00:17 [ 13] [ 4] [0320] +20:00:17 [ 15] [ 4] [0320] +20:00:17 [ 18] [ 4] [6011] +20:00:17 [ 19] [ 3] [418] +20:00:17 [ 22] [ 3] [021] +20:00:17 [ 32] [ 6] [180893] +20:00:17 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:00:17 [ 37] [ 12] [507912271532] +20:00:17 [ 39] [ 2] [14] +20:00:17 [ 41] [ 8] [0466PSLB] +20:00:17 [ 49] [ 3] [418] +20:00:17 ============================================================================ +20:00:17 Calculate Source COMM Id = 2 +20:00:17 ============================================================================ +20:00:17 + + +waiting on router queue for slot.... +20:00:21 ============================================================================ +20:00:21 Slot Id : <427> +20:00:21 Transaction Type : REQUEST +20:00:21 Received From : +20:00:21 ============================================================================ +20:00:21 FNo. Len. Field Value +20:00:21 ============================================================================ +20:00:21 [ 1] [ 4] [0800] +20:00:21 [ 2] [ 5] [02531] +20:00:21 [ 3] [ 6] [579208] +20:00:21 [ 7] [ 10] [0320130021] +20:00:21 [ 11] [ 6] [807573] +20:00:21 [ 15] [ 10] [0320130021] +20:00:21 [ 37] [ 11] [57920807573] +20:00:21 [ 70] [ 3] [001] +20:00:21 ============================================================================ +20:00:21 + + +waiting on router queue for slot.... +20:00:21 ============================================================================ +20:00:21 Slot Id : <427> +20:00:21 Transaction Type : RESPONSE +20:00:21 Received From : +20:00:21 ============================================================================ +20:00:21 FNo. Len. Field Value +20:00:21 ============================================================================ +20:00:21 [ 1] [ 4] [0810] +20:00:21 [ 7] [ 10] [0320130021] +20:00:21 [ 11] [ 6] [807573] +20:00:21 [ 15] [ 4] [0320] +20:00:21 [ 37] [ 12] [57920807573] +20:00:21 [ 39] [ 2] [00] +20:00:21 [ 70] [ 3] [001] +20:00:21 ============================================================================ +20:00:21 Sending to : +20:00:21 ============================================================================ +20:00:21 + + +waiting on router queue for slot.... +20:00:22 ============================================================================ +20:00:22 Slot Id : <462> +20:00:22 Transaction Type : REQUEST +20:00:22 Received From : +20:00:22 ============================================================================ +20:00:22 FNo. Len. Field Value +20:00:22 ============================================================================ +20:00:22 [ 1] [ 4] [0800] +20:00:22 [ 7] [ 10] [0321031210] +20:00:22 [ 11] [ 6] [201210] +20:00:22 [ 37] [ 12] [57920201210] +20:00:22 [ 70] [ 3] [301] +20:00:22 ============================================================================ +20:00:22 + + +waiting on router queue for slot.... +20:00:22 Sending to : +20:00:22 ============================================================================ +20:00:22 ============================================================================ +20:00:22 Slot Id : <462> +20:00:22 Transaction Type : RESPONSE +20:00:22 Received From : +20:00:22 ============================================================================ +20:00:22 FNo. Len. Field Value +20:00:22 ============================================================================ +20:00:22 [ 1] [ 4] [0810] +20:00:22 [ 7] [ 10] [0321031210] +20:00:22 [ 11] [ 6] [201210] +20:00:22 [ 37] [ 12] [579202012100] +20:00:22 [ 39] [ 2] [00] +20:00:22 [ 70] [ 3] [810] +20:00:22 ============================================================================ +20:00:22 Calculate Source COMM Id = 6 +20:00:22 ============================================================================ +20:00:22 + + +waiting on router queue for slot.... +20:00:30 ============================================================================ +20:00:30 Slot Id : <428> +20:00:30 Transaction Type : REQUEST +20:00:30 Received From : +20:00:30 ============================================================================ +20:00:30 FNo. Len. Field Value +20:00:30 ============================================================================ +20:00:30 [ 1] [ 4] [0200] +20:00:30 [ 2] [ 16] [6213544002046214] +20:00:30 [ 3] [ 6] [010000] +20:00:30 [ 4] [ 12] [000200000000] +20:00:30 [ 7] [ 10] [0320125936] +20:00:30 [ 11] [ 6] [271535] +20:00:30 [ 12] [ 6] [195936] +20:00:30 [ 13] [ 4] [0320] +20:00:30 [ 14] [ 4] [4912] +20:00:30 [ 15] [ 4] [0320] +20:00:30 [ 18] [ 4] [6011] +20:00:30 [ 19] [ 3] [418] +20:00:30 [ 22] [ 3] [021] +20:00:30 [ 25] [ 2] [01] +20:00:30 [ 28] [ 9] [D00002000] +20:00:30 [ 32] [ 6] [180893] +20:00:30 [ 35] [ 32] [6213544002046214=491212014621360] +20:00:30 [ 37] [ 12] [507912271535] +20:00:30 [ 41] [ 8] [0361BLTB] +20:00:30 [ 42] [ 15] [999999 ] +20:00:30 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +20:00:30 [ 49] [ 3] [418] +20:00:30 [ 52] [ 16] [FB86A9C8DADD4B79] +20:00:30 ============================================================================ +20:00:30 + + +waiting on router queue for slot.... +20:00:30 Sending to : +20:00:30 ============================================================================ +20:00:30 Sending to : +20:00:30 ============================================================================ +20:00:30 ============================================================================ +20:00:30 Slot Id : <428> +20:00:30 Transaction Type : REQUEST +20:00:30 Received From : +20:00:30 ============================================================================ +20:00:30 FNo. Len. Field Value +20:00:30 ============================================================================ +20:00:30 [ 1] [ 4] [0200] +20:00:30 [ 2] [ 16] [6213544002046214] +20:00:30 [ 3] [ 6] [010000] +20:00:30 [ 4] [ 12] [000200000000] +20:00:30 [ 7] [ 10] [0320125936] +20:00:30 [ 11] [ 6] [271535] +20:00:30 [ 12] [ 6] [195936] +20:00:30 [ 13] [ 4] [0320] +20:00:30 [ 14] [ 4] [4912] +20:00:30 [ 15] [ 4] [0320] +20:00:30 [ 18] [ 4] [6011] +20:00:30 [ 19] [ 3] [418] +20:00:30 [ 22] [ 3] [021] +20:00:30 [ 25] [ 2] [01] +20:00:30 [ 28] [ 9] [D00002000] +20:00:30 [ 32] [ 6] [180893] +20:00:30 [ 35] [ 32] [6213544002046214=491212014621360] +20:00:30 [ 37] [ 12] [507912271535] +20:00:30 [ 41] [ 8] [0361BLTB] +20:00:30 [ 42] [ 15] [999999 ] +20:00:30 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +20:00:30 [ 49] [ 3] [418] +20:00:30 [ 52] [ 16] [FB86A9C8DADD4B79] +20:00:30 ============================================================================ +20:00:30 + + +waiting on router queue for slot.... +20:00:30 Sending to : +20:00:30 ============================================================================ +20:00:30 ============================================================================ +20:00:30 Slot Id : <428> +20:00:30 Transaction Type : REQUEST +20:00:30 Received From : +20:00:30 ============================================================================ +20:00:30 FNo. Len. Field Value +20:00:30 ============================================================================ +20:00:30 [ 1] [ 4] [0200] +20:00:30 [ 2] [ 16] [6213544002046214] +20:00:30 [ 3] [ 6] [010000] +20:00:30 [ 4] [ 12] [000200000000] +20:00:30 [ 7] [ 10] [0320125936] +20:00:30 [ 11] [ 6] [271535] +20:00:30 [ 12] [ 6] [195936] +20:00:30 [ 13] [ 4] [0320] +20:00:30 [ 14] [ 4] [4912] +20:00:30 [ 15] [ 4] [0320] +20:00:30 [ 18] [ 4] [6011] +20:00:30 [ 19] [ 3] [418] +20:00:30 [ 22] [ 3] [021] +20:00:30 [ 25] [ 2] [01] +20:00:30 [ 28] [ 9] [D00002000] +20:00:30 [ 32] [ 6] [180893] +20:00:30 [ 35] [ 32] [6213544002046214=491212014621360] +20:00:30 [ 37] [ 12] [507912271535] +20:00:30 [ 41] [ 8] [0361BLTB] +20:00:30 [ 42] [ 15] [999999 ] +20:00:30 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +20:00:30 [ 49] [ 3] [418] +20:00:30 [ 52] [ 16] [64606E3165E16637] +20:00:30 ============================================================================ +20:00:30 + + +waiting on router queue for slot.... +20:00:30 Sending to : <0> +20:00:30 ============================================================================ +20:00:30 ============================================================================ +20:00:30 Slot Id : <428> +20:00:30 Transaction Type : RESPONSE +20:00:30 Received From : +20:00:30 ============================================================================ +20:00:30 FNo. Len. Field Value +20:00:30 ============================================================================ +20:00:30 [ 1] [ 4] [0210] +20:00:30 [ 2] [ 16] [6213544002046214] +20:00:30 [ 3] [ 6] [010000] +20:00:30 [ 4] [ 12] [000200000000] +20:00:30 [ 7] [ 10] [0320125936] +20:00:30 [ 11] [ 6] [271535] +20:00:30 [ 12] [ 6] [195936] +20:00:30 [ 13] [ 4] [0320] +20:00:30 [ 15] [ 4] [0320] +20:00:30 [ 18] [ 4] [6011] +20:00:30 [ 19] [ 3] [418] +20:00:30 [ 22] [ 3] [021] +20:00:30 [ 32] [ 6] [180893] +20:00:30 [ 35] [ 32] [6213544002046214=491212014621360] +20:00:30 [ 37] [ 12] [507912271535] +20:00:30 [ 39] [ 2] [61] +20:00:30 [ 41] [ 8] [0361BLTB] +20:00:30 [ 49] [ 3] [418] +20:00:30 ============================================================================ +20:00:30 Sending to : +20:00:30 ============================================================================ +20:00:30 + + +waiting on router queue for slot.... +20:00:31 ============================================================================ +20:00:31 Slot Id : <428> +20:00:31 Transaction Type : RESPONSE +20:00:31 Received From : +20:00:31 ============================================================================ +20:00:31 FNo. Len. Field Value +20:00:31 ============================================================================ +20:00:31 [ 1] [ 4] [0210] +20:00:31 [ 2] [ 16] [6213544002046214] +20:00:31 [ 3] [ 6] [010000] +20:00:31 [ 4] [ 12] [000200000000] +20:00:31 [ 7] [ 10] [0320125936] +20:00:31 [ 11] [ 6] [271535] +20:00:31 [ 12] [ 6] [195936] +20:00:31 [ 13] [ 4] [0320] +20:00:31 [ 15] [ 4] [0320] +20:00:31 [ 18] [ 4] [6011] +20:00:31 [ 19] [ 3] [418] +20:00:31 [ 22] [ 3] [021] +20:00:31 [ 32] [ 6] [180893] +20:00:31 [ 35] [ 32] [6213544002046214=491212014621360] +20:00:31 [ 37] [ 12] [507912271535] +20:00:31 [ 39] [ 2] [61] +20:00:31 [ 41] [ 8] [0361BLTB] +20:00:31 [ 49] [ 3] [418] +20:00:31 ============================================================================ +20:00:31 Calculate Source COMM Id = 2 +20:00:31 ============================================================================ +20:00:31 + + +waiting on router queue for slot.... +20:00:32 ============================================================================ +20:00:32 Slot Id : <421> +20:00:32 Transaction Type : REQUEST +20:00:32 Received From : +20:00:32 ============================================================================ +20:00:32 FNo. Len. Field Value +20:00:32 ============================================================================ +20:00:32 [ 1] [ 4] [0800] +20:00:32 [ 7] [ 10] [0320125939] +20:00:32 [ 11] [ 6] [158093] +20:00:32 [ 70] [ 3] [301] +20:00:32 ============================================================================ +20:00:32 + + +waiting on router queue for slot.... +20:00:32 Sending to : +20:00:32 ============================================================================ +20:00:32 ============================================================================ +20:00:32 Slot Id : <421> +20:00:32 Transaction Type : RESPONSE +20:00:32 Received From : +20:00:32 ============================================================================ +20:00:32 FNo. Len. Field Value +20:00:32 ============================================================================ +20:00:32 [ 1] [ 4] [0810] +20:00:32 [ 7] [ 10] [0320125939] +20:00:32 [ 11] [ 6] [158093] +20:00:32 [ 39] [ 2] [00] +20:00:32 [ 70] [ 3] [301] +20:00:32 ============================================================================ +20:00:32 Calculate Source COMM Id = 2 +20:00:32 ============================================================================ +20:00:32 + + +waiting on router queue for slot.... +20:00:47 ============================================================================ +20:00:47 Slot Id : <422> +20:00:47 Transaction Type : REQUEST +20:00:47 Received From : +20:00:47 ============================================================================ +20:00:47 FNo. Len. Field Value +20:00:47 ============================================================================ +20:00:47 [ 1] [ 4] [0800] +20:00:47 [ 7] [ 10] [0320125953] +20:00:47 [ 11] [ 6] [158094] +20:00:47 [ 70] [ 3] [301] +20:00:47 ============================================================================ +20:00:47 + + +waiting on router queue for slot.... +20:00:47 Sending to : +20:00:47 ============================================================================ +20:00:47 ============================================================================ +20:00:47 Slot Id : <422> +20:00:47 Transaction Type : RESPONSE +20:00:47 Received From : +20:00:47 ============================================================================ +20:00:47 FNo. Len. Field Value +20:00:47 ============================================================================ +20:00:47 [ 1] [ 4] [0810] +20:00:47 [ 7] [ 10] [0320125953] +20:00:47 [ 11] [ 6] [158094] +20:00:47 [ 39] [ 2] [00] +20:00:47 [ 70] [ 3] [301] +20:00:47 ============================================================================ +20:00:47 Calculate Source COMM Id = 2 +20:00:47 ============================================================================ +20:00:47 + + +waiting on router queue for slot.... +20:00:58 ============================================================================ +20:00:58 Slot Id : <451> +20:00:58 Transaction Type : REQUEST +20:00:58 Received From : +20:00:58 ============================================================================ +20:00:58 FNo. Len. Field Value +20:00:58 ============================================================================ +20:00:58 [ 1] [ 4] [0800] +20:00:58 [ 7] [ 10] [0320010004] +20:00:58 [ 11] [ 6] [158095] +20:00:58 [ 70] [ 3] [301] +20:00:58 ============================================================================ +20:00:58 + + +waiting on router queue for slot.... +20:00:58 Sending to : +20:00:58 ============================================================================ +20:00:58 ============================================================================ +20:00:58 Slot Id : <451> +20:00:58 Transaction Type : RESPONSE +20:00:58 Received From : +20:00:58 ============================================================================ +20:00:58 FNo. Len. Field Value +20:00:58 ============================================================================ +20:00:58 [ 1] [ 4] [0810] +20:00:58 [ 7] [ 10] [0320010004] +20:00:58 [ 11] [ 6] [158095] +20:00:58 [ 39] [ 2] [00] +20:00:58 [ 70] [ 3] [301] +20:00:58 ============================================================================ +20:00:58 Calculate Source COMM Id = 2 +20:00:58 ============================================================================ +20:00:58 + + +waiting on router queue for slot.... +20:01:01 ============================================================================ +20:01:01 Slot Id : <457> +20:01:01 Transaction Type : REQUEST +20:01:01 Received From : +20:01:01 ============================================================================ +20:01:01 FNo. Len. Field Value +20:01:01 ============================================================================ +20:01:01 [ 1] [ 4] [0200] +20:01:01 [ 2] [ 16] [6213548000029627] +20:01:01 [ 3] [ 6] [010000] +20:01:01 [ 4] [ 12] [000030000000] +20:01:01 [ 7] [ 10] [0320195850] +20:01:01 [ 11] [ 6] [956747] +20:01:01 [ 12] [ 6] [195850] +20:01:01 [ 13] [ 4] [0320] +20:01:01 [ 15] [ 4] [0320] +20:01:01 [ 18] [ 4] [6011] +20:01:01 [ 19] [ 3] [418] +20:01:01 [ 22] [ 3] [021] +20:01:01 [ 25] [ 2] [01] +20:01:01 [ 28] [ 9] [D00002000] +20:01:01 [ 32] [ 6] [668899] +20:01:01 [ 35] [ 32] [6213548000029627=130612012962045] +20:01:01 [ 37] [ 12] [507902308489] +20:01:01 [ 41] [ 8] [03011003] +20:01:01 [ 42] [ 15] [APT ] +20:01:01 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +20:01:01 [ 49] [ 3] [418] +20:01:01 [ 52] [ 16] [EA9D728B48B5DC66] +20:01:01 ============================================================================ +20:01:01 + + +waiting on router queue for slot.... +20:01:01 Sending to : +20:01:01 ============================================================================ +20:01:01 Sending to : +20:01:01 ============================================================================ +20:01:01 ============================================================================ +20:01:01 Slot Id : <457> +20:01:01 Transaction Type : REQUEST +20:01:01 Received From : +20:01:01 ============================================================================ +20:01:01 FNo. Len. Field Value +20:01:01 ============================================================================ +20:01:01 [ 1] [ 4] [0200] +20:01:01 [ 2] [ 16] [6213548000029627] +20:01:01 [ 3] [ 6] [010000] +20:01:01 [ 4] [ 12] [000030000000] +20:01:01 [ 7] [ 10] [0320195850] +20:01:01 [ 11] [ 6] [956747] +20:01:01 [ 12] [ 6] [195850] +20:01:01 [ 13] [ 4] [0320] +20:01:01 [ 15] [ 4] [0320] +20:01:01 [ 18] [ 4] [6011] +20:01:01 [ 19] [ 3] [418] +20:01:01 [ 22] [ 3] [021] +20:01:01 [ 25] [ 2] [01] +20:01:01 [ 28] [ 9] [D00002000] +20:01:01 [ 32] [ 6] [668899] +20:01:01 [ 35] [ 32] [6213548000029627=130612012962045] +20:01:01 [ 37] [ 12] [507902308489] +20:01:01 [ 41] [ 8] [03011003] +20:01:01 [ 42] [ 15] [APT ] +20:01:01 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +20:01:01 [ 49] [ 3] [418] +20:01:01 [ 52] [ 16] [EA9D728B48B5DC66] +20:01:01 ============================================================================ +20:01:01 + + +waiting on router queue for slot.... +20:01:01 Sending to : +20:01:01 ============================================================================ +20:01:01 ============================================================================ +20:01:01 Slot Id : <457> +20:01:01 Transaction Type : REQUEST +20:01:01 Received From : +20:01:01 ============================================================================ +20:01:01 FNo. Len. Field Value +20:01:01 ============================================================================ +20:01:01 [ 1] [ 4] [0200] +20:01:01 [ 2] [ 16] [6213548000029627] +20:01:01 [ 3] [ 6] [010000] +20:01:01 [ 4] [ 12] [000030000000] +20:01:01 [ 7] [ 10] [0320195850] +20:01:01 [ 11] [ 6] [956747] +20:01:01 [ 12] [ 6] [195850] +20:01:01 [ 13] [ 4] [0320] +20:01:01 [ 15] [ 4] [0320] +20:01:01 [ 18] [ 4] [6011] +20:01:01 [ 19] [ 3] [418] +20:01:01 [ 22] [ 3] [021] +20:01:01 [ 25] [ 2] [01] +20:01:01 [ 28] [ 9] [D00002000] +20:01:01 [ 32] [ 6] [668899] +20:01:01 [ 35] [ 32] [6213548000029627=130612012962045] +20:01:01 [ 37] [ 12] [507902308489] +20:01:01 [ 41] [ 8] [03011003] +20:01:01 [ 42] [ 15] [APT ] +20:01:01 [ 43] [ 40] [ PAKKADING UNIT PAKKADING ] +20:01:01 [ 49] [ 3] [418] +20:01:01 [ 52] [ 16] [A53A55F51DBA789A] +20:01:01 ============================================================================ +20:01:01 + + +waiting on router queue for slot.... +20:01:01 Sending to : <0> +20:01:01 ============================================================================ +20:01:02 ============================================================================ +20:01:02 Slot Id : <457> +20:01:02 Transaction Type : RESPONSE +20:01:02 Received From : +20:01:02 ============================================================================ +20:01:02 FNo. Len. Field Value +20:01:02 ============================================================================ +20:01:02 [ 1] [ 4] [0210] +20:01:02 [ 2] [ 16] [6213548000029627] +20:01:02 [ 3] [ 6] [010000] +20:01:02 [ 4] [ 12] [000030000000] +20:01:02 [ 7] [ 10] [0320195850] +20:01:02 [ 11] [ 6] [956747] +20:01:02 [ 12] [ 6] [195850] +20:01:02 [ 13] [ 4] [0320] +20:01:02 [ 15] [ 4] [0320] +20:01:02 [ 18] [ 4] [6011] +20:01:02 [ 19] [ 3] [418] +20:01:02 [ 32] [ 6] [668899] +20:01:02 [ 35] [ 32] [6213548000029627=130612012962045] +20:01:02 [ 37] [ 12] [507902308489] +20:01:02 [ 38] [ 6] [464244] +20:01:02 [ 39] [ 2] [00] +20:01:02 [ 41] [ 8] [03011003] +20:01:02 [ 49] [ 3] [418] +20:01:02 [ 54] [ 40] [0001418C0000243250110002418C000024325011] +20:01:02 ============================================================================ +20:01:02 Sending to : +20:01:02 ============================================================================ +20:01:02 + + +waiting on router queue for slot.... +20:01:02 ============================================================================ +20:01:02 Slot Id : <465> +20:01:02 Transaction Type : REQUEST +20:01:02 Received From : +20:01:02 ============================================================================ +20:01:02 FNo. Len. Field Value +20:01:02 ============================================================================ +20:01:02 [ 1] [ 4] [0200] +20:01:02 [ 2] [ 16] [6688990040074823] +20:01:02 [ 3] [ 6] [010000] +20:01:02 [ 4] [ 12] [000010000000] +20:01:02 [ 7] [ 10] [0320130008] +20:01:02 [ 11] [ 6] [271537] +20:01:02 [ 12] [ 6] [200008] +20:01:02 [ 13] [ 4] [0320] +20:01:02 [ 14] [ 4] [9801] +20:01:02 [ 15] [ 4] [0320] +20:01:02 [ 18] [ 4] [6011] +20:01:02 [ 19] [ 3] [418] +20:01:02 [ 22] [ 3] [021] +20:01:02 [ 25] [ 2] [01] +20:01:02 [ 28] [ 9] [D00002000] +20:01:02 [ 32] [ 6] [180893] +20:01:02 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:01:02 [ 37] [ 12] [507913271537] +20:01:02 [ 41] [ 8] [0466PSLB] +20:01:02 [ 42] [ 15] [999999 ] +20:01:02 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:01:02 [ 49] [ 3] [418] +20:01:02 [ 52] [ 16] [63230FAE8B2A3B74] +20:01:02 ============================================================================ +20:01:02 + + +waiting on router queue for slot.... +20:01:02 Sending to : +20:01:02 ============================================================================ +20:01:02 Sending to : +20:01:02 ============================================================================ +20:01:03 ============================================================================ +20:01:03 Slot Id : <465> +20:01:03 Transaction Type : REQUEST +20:01:03 Received From : +20:01:03 ============================================================================ +20:01:03 FNo. Len. Field Value +20:01:03 ============================================================================ +20:01:03 [ 1] [ 4] [0200] +20:01:03 [ 2] [ 16] [6688990040074823] +20:01:03 [ 3] [ 6] [010000] +20:01:03 [ 4] [ 12] [000010000000] +20:01:03 [ 7] [ 10] [0320130008] +20:01:03 [ 11] [ 6] [271537] +20:01:03 [ 12] [ 6] [200008] +20:01:03 [ 13] [ 4] [0320] +20:01:03 [ 14] [ 4] [9801] +20:01:03 [ 15] [ 4] [0320] +20:01:03 [ 18] [ 4] [6011] +20:01:03 [ 19] [ 3] [418] +20:01:03 [ 22] [ 3] [021] +20:01:03 [ 25] [ 2] [01] +20:01:03 [ 28] [ 9] [D00002000] +20:01:03 [ 32] [ 6] [180893] +20:01:03 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:01:03 [ 37] [ 12] [507913271537] +20:01:03 [ 41] [ 8] [0466PSLB] +20:01:03 [ 42] [ 15] [999999 ] +20:01:03 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:01:03 [ 49] [ 3] [418] +20:01:03 [ 52] [ 16] [63230FAE8B2A3B74] +20:01:03 ============================================================================ +20:01:03 + + +waiting on router queue for slot.... +20:01:03 Sending to : +20:01:03 ============================================================================ +20:01:03 ============================================================================ +20:01:03 Slot Id : <465> +20:01:03 Transaction Type : REQUEST +20:01:03 Received From : +20:01:03 ============================================================================ +20:01:03 FNo. Len. Field Value +20:01:03 ============================================================================ +20:01:03 [ 1] [ 4] [0200] +20:01:03 [ 2] [ 16] [6688990040074823] +20:01:03 [ 3] [ 6] [010000] +20:01:03 [ 4] [ 12] [000010000000] +20:01:03 [ 7] [ 10] [0320130008] +20:01:03 [ 11] [ 6] [271537] +20:01:03 [ 12] [ 6] [200008] +20:01:03 [ 13] [ 4] [0320] +20:01:03 [ 14] [ 4] [9801] +20:01:03 [ 15] [ 4] [0320] +20:01:03 [ 18] [ 4] [6011] +20:01:03 [ 19] [ 3] [418] +20:01:03 [ 22] [ 3] [021] +20:01:03 [ 25] [ 2] [01] +20:01:03 [ 28] [ 9] [D00002000] +20:01:03 [ 32] [ 6] [180893] +20:01:03 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:01:03 [ 37] [ 12] [507913271537] +20:01:03 [ 41] [ 8] [0466PSLB] +20:01:03 [ 42] [ 15] [999999 ] +20:01:03 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:01:03 [ 49] [ 3] [418] +20:01:03 [ 52] [ 16] [F79E2A59046D9466] +20:01:03 ============================================================================ +20:01:03 + + +waiting on router queue for slot.... +20:01:03 Sending to : <0> +20:01:03 ============================================================================ +20:01:03 ============================================================================ +20:01:03 Slot Id : <465> +20:01:03 Transaction Type : RESPONSE +20:01:03 Received From : +20:01:03 ============================================================================ +20:01:03 FNo. Len. Field Value +20:01:03 ============================================================================ +20:01:03 [ 1] [ 4] [0210] +20:01:03 [ 2] [ 16] [6688990040074823] +20:01:03 [ 3] [ 6] [010000] +20:01:03 [ 4] [ 12] [000010000000] +20:01:03 [ 7] [ 10] [0320130008] +20:01:03 [ 11] [ 6] [271537] +20:01:03 [ 12] [ 6] [200008] +20:01:03 [ 13] [ 4] [0320] +20:01:03 [ 15] [ 4] [0320] +20:01:03 [ 18] [ 4] [6011] +20:01:03 [ 19] [ 3] [418] +20:01:03 [ 22] [ 3] [021] +20:01:03 [ 32] [ 6] [180893] +20:01:03 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:01:03 [ 37] [ 12] [507913271537] +20:01:03 [ 39] [ 2] [14] +20:01:03 [ 41] [ 8] [0466PSLB] +20:01:03 [ 49] [ 3] [418] +20:01:03 ============================================================================ +20:01:03 Sending to : +20:01:03 ============================================================================ +20:01:03 + + +waiting on router queue for slot.... +20:01:03 ============================================================================ +20:01:03 Slot Id : <457> +20:01:03 Transaction Type : RESPONSE +20:01:03 Received From : +20:01:03 ============================================================================ +20:01:03 FNo. Len. Field Value +20:01:03 ============================================================================ +20:01:03 [ 1] [ 4] [0210] +20:01:03 [ 2] [ 16] [6213548000029627] +20:01:03 [ 3] [ 6] [010000] +20:01:03 [ 4] [ 12] [000030000000] +20:01:03 [ 7] [ 10] [0320195850] +20:01:03 [ 11] [ 6] [956747] +20:01:03 [ 12] [ 6] [195850] +20:01:03 [ 13] [ 4] [0320] +20:01:03 [ 15] [ 4] [0320] +20:01:03 [ 18] [ 4] [6011] +20:01:03 [ 19] [ 3] [418] +20:01:03 [ 32] [ 6] [668899] +20:01:03 [ 35] [ 32] [6213548000029627=130612012962045] +20:01:03 [ 37] [ 12] [507902308489] +20:01:03 [ 38] [ 6] [464244] +20:01:03 [ 39] [ 2] [00] +20:01:03 [ 41] [ 8] [03011003] +20:01:03 [ 49] [ 3] [418] +20:01:03 [ 54] [ 40] [0001418C0000243250110002418C000024325011] +20:01:03 ============================================================================ +20:01:03 Calculate Source COMM Id = 4 +20:01:03 ============================================================================ +20:01:03 + + +waiting on router queue for slot.... +20:01:05 ============================================================================ +20:01:05 Slot Id : <465> +20:01:05 Transaction Type : RESPONSE +20:01:05 Received From : +20:01:05 ============================================================================ +20:01:05 FNo. Len. Field Value +20:01:05 ============================================================================ +20:01:05 [ 1] [ 4] [0210] +20:01:05 [ 2] [ 16] [6688990040074823] +20:01:05 [ 3] [ 6] [010000] +20:01:05 [ 4] [ 12] [000010000000] +20:01:05 [ 7] [ 10] [0320130008] +20:01:05 [ 11] [ 6] [271537] +20:01:05 [ 12] [ 6] [200008] +20:01:05 [ 13] [ 4] [0320] +20:01:05 [ 15] [ 4] [0320] +20:01:05 [ 18] [ 4] [6011] +20:01:05 [ 19] [ 3] [418] +20:01:05 [ 22] [ 3] [021] +20:01:05 [ 32] [ 6] [180893] +20:01:05 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:01:05 [ 37] [ 12] [507913271537] +20:01:05 [ 39] [ 2] [14] +20:01:05 [ 41] [ 8] [0466PSLB] +20:01:05 [ 49] [ 3] [418] +20:01:05 ============================================================================ +20:01:05 Calculate Source COMM Id = 2 +20:01:05 ============================================================================ +20:01:05 + + +waiting on router queue for slot.... +20:01:20 ============================================================================ +20:01:20 Slot Id : <426> +20:01:20 Transaction Type : REQUEST +20:01:20 Received From : +20:01:20 ============================================================================ +20:01:20 FNo. Len. Field Value +20:01:20 ============================================================================ +20:01:20 [ 1] [ 4] [0800] +20:01:20 [ 7] [ 10] [0320010026] +20:01:20 [ 11] [ 6] [158096] +20:01:20 [ 70] [ 3] [301] +20:01:20 ============================================================================ +20:01:20 + + +waiting on router queue for slot.... +20:01:20 Sending to : +20:01:20 ============================================================================ +20:01:20 ============================================================================ +20:01:20 Slot Id : <426> +20:01:20 Transaction Type : RESPONSE +20:01:20 Received From : +20:01:20 ============================================================================ +20:01:20 FNo. Len. Field Value +20:01:20 ============================================================================ +20:01:20 [ 1] [ 4] [0810] +20:01:20 [ 7] [ 10] [0320010026] +20:01:20 [ 11] [ 6] [158096] +20:01:20 [ 39] [ 2] [00] +20:01:20 [ 70] [ 3] [301] +20:01:20 ============================================================================ +20:01:20 Calculate Source COMM Id = 2 +20:01:20 ============================================================================ +20:01:20 + + +waiting on router queue for slot.... +20:01:22 ============================================================================ +20:01:22 Slot Id : <436> +20:01:22 Transaction Type : REQUEST +20:01:22 Received From : +20:01:22 ============================================================================ +20:01:22 FNo. Len. Field Value +20:01:22 ============================================================================ +20:01:22 [ 1] [ 4] [0800] +20:01:22 [ 7] [ 10] [0320125912] +20:01:22 [ 11] [ 6] [047200] +20:01:22 [ 37] [ 12] [57919047200] +20:01:22 [ 70] [ 3] [301] +20:01:22 ============================================================================ +20:01:22 + + +waiting on router queue for slot.... +20:01:22 Sending to : +20:01:22 ============================================================================ +20:01:22 ============================================================================ +20:01:22 Slot Id : <436> +20:01:22 Transaction Type : RESPONSE +20:01:22 Received From : +20:01:22 ============================================================================ +20:01:22 FNo. Len. Field Value +20:01:22 ============================================================================ +20:01:22 [ 1] [ 4] [0810] +20:01:22 [ 7] [ 10] [0320125912] +20:01:22 [ 11] [ 6] [047200] +20:01:22 [ 37] [ 12] [579190472000] +20:01:22 [ 39] [ 2] [00] +20:01:22 [ 70] [ 3] [810] +20:01:22 ============================================================================ +20:01:22 Calculate Source COMM Id = 4 +20:01:22 ============================================================================ +20:01:22 + + +waiting on router queue for slot.... +20:01:23 ============================================================================ +20:01:23 Slot Id : <444> +20:01:23 Transaction Type : REQUEST +20:01:23 Received From : +20:01:23 ============================================================================ +20:01:23 FNo. Len. Field Value +20:01:23 ============================================================================ +20:01:23 [ 1] [ 4] [0800] +20:01:23 [ 2] [ 5] [02531] +20:01:23 [ 3] [ 6] [579208] +20:01:23 [ 7] [ 10] [0320130123] +20:01:23 [ 11] [ 6] [807574] +20:01:23 [ 15] [ 10] [0320130123] +20:01:23 [ 37] [ 11] [57920807574] +20:01:23 [ 70] [ 3] [001] +20:01:23 ============================================================================ +20:01:23 + + +waiting on router queue for slot.... +20:01:23 ============================================================================ +20:01:23 Slot Id : <444> +20:01:23 Transaction Type : RESPONSE +20:01:23 Received From : +20:01:23 ============================================================================ +20:01:23 FNo. Len. Field Value +20:01:23 ============================================================================ +20:01:23 [ 1] [ 4] [0810] +20:01:23 [ 7] [ 10] [0320130123] +20:01:23 [ 11] [ 6] [807574] +20:01:23 [ 15] [ 4] [0320] +20:01:23 [ 37] [ 12] [57920807574] +20:01:23 [ 39] [ 2] [00] +20:01:23 [ 70] [ 3] [001] +20:01:23 ============================================================================ +20:01:23 Sending to : +20:01:23 ============================================================================ +20:01:23 + + +waiting on router queue for slot.... +20:01:27 ============================================================================ +20:01:27 Slot Id : <423> +20:01:27 Transaction Type : REQUEST +20:01:27 Received From : +20:01:27 ============================================================================ +20:01:27 FNo. Len. Field Value +20:01:27 ============================================================================ +20:01:27 [ 1] [ 4] [0800] +20:01:27 [ 7] [ 10] [0321031315] +20:01:27 [ 11] [ 6] [201315] +20:01:27 [ 37] [ 12] [57920201315] +20:01:27 [ 70] [ 3] [301] +20:01:27 ============================================================================ +20:01:27 + + +waiting on router queue for slot.... +20:01:27 Sending to : +20:01:27 ============================================================================ +20:01:27 ============================================================================ +20:01:27 Slot Id : <423> +20:01:27 Transaction Type : RESPONSE +20:01:27 Received From : +20:01:27 ============================================================================ +20:01:27 FNo. Len. Field Value +20:01:27 ============================================================================ +20:01:27 [ 1] [ 4] [0810] +20:01:27 [ 7] [ 10] [0321031315] +20:01:27 [ 11] [ 6] [201315] +20:01:27 [ 37] [ 12] [579202013150] +20:01:27 [ 39] [ 2] [00] +20:01:27 [ 70] [ 3] [810] +20:01:27 ============================================================================ +20:01:27 Calculate Source COMM Id = 6 +20:01:27 ============================================================================ +20:01:27 + + +waiting on router queue for slot.... +20:01:30 ============================================================================ +20:01:30 Slot Id : <458> +20:01:30 Transaction Type : REQUEST +20:01:30 Received From : +20:01:30 ============================================================================ +20:01:30 FNo. Len. Field Value +20:01:30 ============================================================================ +20:01:30 [ 1] [ 4] [0800] +20:01:30 [ 7] [ 10] [0320010037] +20:01:30 [ 11] [ 6] [158097] +20:01:30 [ 70] [ 3] [301] +20:01:30 ============================================================================ +20:01:30 + + +waiting on router queue for slot.... +20:01:30 Sending to : +20:01:30 ============================================================================ +20:01:31 ============================================================================ +20:01:31 Slot Id : <458> +20:01:31 Transaction Type : RESPONSE +20:01:31 Received From : +20:01:31 ============================================================================ +20:01:31 FNo. Len. Field Value +20:01:31 ============================================================================ +20:01:31 [ 1] [ 4] [0810] +20:01:31 [ 7] [ 10] [0320010037] +20:01:31 [ 11] [ 6] [158097] +20:01:31 [ 39] [ 2] [00] +20:01:31 [ 70] [ 3] [301] +20:01:31 ============================================================================ +20:01:31 Calculate Source COMM Id = 2 +20:01:31 ============================================================================ +20:01:31 + + +waiting on router queue for slot.... +20:01:41 ============================================================================ +20:01:41 Slot Id : <452> +20:01:41 Transaction Type : REQUEST +20:01:41 Received From : +20:01:41 ============================================================================ +20:01:41 FNo. Len. Field Value +20:01:41 ============================================================================ +20:01:41 [ 1] [ 4] [0800] +20:01:41 [ 7] [ 10] [0320010047] +20:01:41 [ 11] [ 6] [158098] +20:01:41 [ 70] [ 3] [301] +20:01:41 ============================================================================ +20:01:41 + + +waiting on router queue for slot.... +20:01:41 Sending to : +20:01:41 ============================================================================ +20:01:41 ============================================================================ +20:01:41 Slot Id : <452> +20:01:41 Transaction Type : RESPONSE +20:01:41 Received From : +20:01:41 ============================================================================ +20:01:41 FNo. Len. Field Value +20:01:41 ============================================================================ +20:01:41 [ 1] [ 4] [0810] +20:01:41 [ 7] [ 10] [0320010047] +20:01:41 [ 11] [ 6] [158098] +20:01:41 [ 39] [ 2] [00] +20:01:41 [ 70] [ 3] [301] +20:01:41 ============================================================================ +20:01:41 Calculate Source COMM Id = 2 +20:01:41 ============================================================================ +20:01:41 + + +waiting on router queue for slot.... +20:01:42 ============================================================================ +20:01:42 Slot Id : <459> +20:01:42 Transaction Type : REQUEST +20:01:42 Received From : +20:01:42 ============================================================================ +20:01:42 FNo. Len. Field Value +20:01:42 ============================================================================ +20:01:42 [ 1] [ 4] [0200] +20:01:42 [ 2] [ 16] [6213545000968267] +20:01:42 [ 3] [ 6] [010000] +20:01:42 [ 4] [ 12] [000010000000] +20:01:42 [ 7] [ 10] [0320195931] +20:01:42 [ 11] [ 6] [956761] +20:01:42 [ 12] [ 6] [195931] +20:01:42 [ 13] [ 4] [0320] +20:01:42 [ 15] [ 4] [0320] +20:01:42 [ 18] [ 4] [6011] +20:01:42 [ 19] [ 3] [418] +20:01:42 [ 22] [ 3] [021] +20:01:42 [ 25] [ 2] [01] +20:01:42 [ 28] [ 9] [D00002000] +20:01:42 [ 32] [ 6] [668899] +20:01:42 [ 35] [ 32] [6213545000968267=491212016826137] +20:01:42 [ 37] [ 12] [507901541798] +20:01:42 [ 41] [ 8] [03020016] +20:01:42 [ 42] [ 15] [APT ] +20:01:42 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +20:01:42 [ 49] [ 3] [418] +20:01:42 [ 52] [ 16] [0A2B1AA496370A80] +20:01:42 ============================================================================ +20:01:42 + + +waiting on router queue for slot.... +20:01:42 Sending to : +20:01:42 ============================================================================ +20:01:42 Sending to : +20:01:42 ============================================================================ +20:01:42 ============================================================================ +20:01:42 Slot Id : <459> +20:01:42 Transaction Type : REQUEST +20:01:42 Received From : +20:01:42 ============================================================================ +20:01:42 FNo. Len. Field Value +20:01:42 ============================================================================ +20:01:42 [ 1] [ 4] [0200] +20:01:42 [ 2] [ 16] [6213545000968267] +20:01:42 [ 3] [ 6] [010000] +20:01:42 [ 4] [ 12] [000010000000] +20:01:42 [ 7] [ 10] [0320195931] +20:01:42 [ 11] [ 6] [956761] +20:01:42 [ 12] [ 6] [195931] +20:01:42 [ 13] [ 4] [0320] +20:01:42 [ 15] [ 4] [0320] +20:01:42 [ 18] [ 4] [6011] +20:01:42 [ 19] [ 3] [418] +20:01:42 [ 22] [ 3] [021] +20:01:42 [ 25] [ 2] [01] +20:01:42 [ 28] [ 9] [D00002000] +20:01:42 [ 32] [ 6] [668899] +20:01:42 [ 35] [ 32] [6213545000968267=491212016826137] +20:01:42 [ 37] [ 12] [507901541798] +20:01:42 [ 41] [ 8] [03020016] +20:01:42 [ 42] [ 15] [APT ] +20:01:42 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +20:01:42 [ 49] [ 3] [418] +20:01:42 [ 52] [ 16] [0A2B1AA496370A80] +20:01:42 ============================================================================ +20:01:42 + + +waiting on router queue for slot.... +20:01:42 Sending to : +20:01:42 ============================================================================ +20:01:42 ============================================================================ +20:01:42 Slot Id : <459> +20:01:42 Transaction Type : REQUEST +20:01:42 Received From : +20:01:42 ============================================================================ +20:01:42 FNo. Len. Field Value +20:01:42 ============================================================================ +20:01:42 [ 1] [ 4] [0200] +20:01:42 [ 2] [ 16] [6213545000968267] +20:01:42 [ 3] [ 6] [010000] +20:01:42 [ 4] [ 12] [000010000000] +20:01:42 [ 7] [ 10] [0320195931] +20:01:42 [ 11] [ 6] [956761] +20:01:42 [ 12] [ 6] [195931] +20:01:42 [ 13] [ 4] [0320] +20:01:42 [ 15] [ 4] [0320] +20:01:42 [ 18] [ 4] [6011] +20:01:42 [ 19] [ 3] [418] +20:01:42 [ 22] [ 3] [021] +20:01:42 [ 25] [ 2] [01] +20:01:42 [ 28] [ 9] [D00002000] +20:01:42 [ 32] [ 6] [668899] +20:01:42 [ 35] [ 32] [6213545000968267=491212016826137] +20:01:42 [ 37] [ 12] [507901541798] +20:01:42 [ 41] [ 8] [03020016] +20:01:42 [ 42] [ 15] [APT ] +20:01:42 [ 43] [ 40] [ LAO WOMAN UNION VIENTIANE] +20:01:42 [ 49] [ 3] [418] +20:01:42 [ 52] [ 16] [BACE275161B60A88] +20:01:42 ============================================================================ +20:01:42 + + +waiting on router queue for slot.... +20:01:42 Sending to : <0> +20:01:42 ============================================================================ +20:01:43 ============================================================================ +20:01:43 Slot Id : <459> +20:01:43 Transaction Type : RESPONSE +20:01:43 Received From : +20:01:43 ============================================================================ +20:01:43 FNo. Len. Field Value +20:01:43 ============================================================================ +20:01:43 [ 1] [ 4] [0210] +20:01:43 [ 2] [ 16] [6213545000968267] +20:01:43 [ 3] [ 6] [010000] +20:01:43 [ 4] [ 12] [000010000000] +20:01:43 [ 7] [ 10] [0320195931] +20:01:43 [ 11] [ 6] [956761] +20:01:43 [ 12] [ 6] [195931] +20:01:43 [ 13] [ 4] [0320] +20:01:43 [ 15] [ 4] [0320] +20:01:43 [ 18] [ 4] [6011] +20:01:43 [ 19] [ 3] [418] +20:01:43 [ 32] [ 6] [668899] +20:01:43 [ 35] [ 32] [6213545000968267=491212016826137] +20:01:43 [ 37] [ 12] [507901541798] +20:01:43 [ 38] [ 6] [435367] +20:01:43 [ 39] [ 2] [00] +20:01:43 [ 41] [ 8] [03020016] +20:01:43 [ 49] [ 3] [418] +20:01:43 [ 54] [ 40] [0001418C0000057890040002418C000005789004] +20:01:43 ============================================================================ +20:01:43 Sending to : +20:01:43 ============================================================================ +20:01:43 + + +waiting on router queue for slot.... +20:01:44 ============================================================================ +20:01:44 Slot Id : <459> +20:01:44 Transaction Type : RESPONSE +20:01:44 Received From : +20:01:44 ============================================================================ +20:01:44 FNo. Len. Field Value +20:01:44 ============================================================================ +20:01:44 [ 1] [ 4] [0210] +20:01:44 [ 2] [ 16] [6213545000968267] +20:01:44 [ 3] [ 6] [010000] +20:01:44 [ 4] [ 12] [000010000000] +20:01:44 [ 7] [ 10] [0320195931] +20:01:44 [ 11] [ 6] [956761] +20:01:44 [ 12] [ 6] [195931] +20:01:44 [ 13] [ 4] [0320] +20:01:44 [ 15] [ 4] [0320] +20:01:44 [ 18] [ 4] [6011] +20:01:44 [ 19] [ 3] [418] +20:01:44 [ 32] [ 6] [668899] +20:01:44 [ 35] [ 32] [6213545000968267=491212016826137] +20:01:44 [ 37] [ 12] [507901541798] +20:01:44 [ 38] [ 6] [435367] +20:01:44 [ 39] [ 2] [00] +20:01:44 [ 41] [ 8] [03020016] +20:01:44 [ 49] [ 3] [418] +20:01:44 [ 54] [ 40] [0001418C0000057890040002418C000005789004] +20:01:44 ============================================================================ +20:01:44 Calculate Source COMM Id = 4 +20:01:44 ============================================================================ +20:01:44 + + +waiting on router queue for slot.... +20:01:53 ============================================================================ +20:01:53 Slot Id : <439> +20:01:53 Transaction Type : REQUEST +20:01:53 Received From : +20:01:53 ============================================================================ +20:01:53 FNo. Len. Field Value +20:01:53 ============================================================================ +20:01:53 [ 1] [ 4] [0800] +20:01:53 [ 7] [ 10] [0320010059] +20:01:53 [ 11] [ 6] [158099] +20:01:53 [ 70] [ 3] [301] +20:01:53 ============================================================================ +20:01:53 + + +waiting on router queue for slot.... +20:01:53 Sending to : +20:01:53 ============================================================================ +20:01:53 ============================================================================ +20:01:53 Slot Id : <439> +20:01:53 Transaction Type : RESPONSE +20:01:53 Received From : +20:01:53 ============================================================================ +20:01:53 FNo. Len. Field Value +20:01:53 ============================================================================ +20:01:53 [ 1] [ 4] [0810] +20:01:53 [ 7] [ 10] [0320010059] +20:01:53 [ 11] [ 6] [158099] +20:01:53 [ 39] [ 2] [00] +20:01:53 [ 70] [ 3] [301] +20:01:53 ============================================================================ +20:01:53 Calculate Source COMM Id = 2 +20:01:53 ============================================================================ +20:01:53 + + +waiting on router queue for slot.... +20:01:55 ============================================================================ +20:01:55 Slot Id : <466> +20:01:55 Transaction Type : REQUEST +20:01:55 Received From : +20:01:55 ============================================================================ +20:01:55 FNo. Len. Field Value +20:01:55 ============================================================================ +20:01:55 [ 1] [ 4] [0200] +20:01:55 [ 2] [ 16] [6213544002046214] +20:01:55 [ 3] [ 6] [010000] +20:01:55 [ 4] [ 12] [000050000000] +20:01:55 [ 7] [ 10] [0320130059] +20:01:55 [ 11] [ 6] [271542] +20:01:55 [ 12] [ 6] [200059] +20:01:55 [ 13] [ 4] [0320] +20:01:55 [ 14] [ 4] [4912] +20:01:55 [ 15] [ 4] [0320] +20:01:55 [ 18] [ 4] [6011] +20:01:55 [ 19] [ 3] [418] +20:01:55 [ 22] [ 3] [021] +20:01:55 [ 25] [ 2] [01] +20:01:55 [ 28] [ 9] [D00002000] +20:01:55 [ 32] [ 6] [180893] +20:01:55 [ 35] [ 32] [6213544002046214=491212014621360] +20:01:55 [ 37] [ 12] [507913271542] +20:01:55 [ 41] [ 8] [0361BLTB] +20:01:55 [ 42] [ 15] [999999 ] +20:01:55 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +20:01:55 [ 49] [ 3] [418] +20:01:55 [ 52] [ 16] [FB86A9C8DADD4B79] +20:01:55 ============================================================================ +20:01:55 + + +waiting on router queue for slot.... +20:01:55 Sending to : +20:01:55 ============================================================================ +20:01:55 Sending to : +20:01:55 ============================================================================ +20:01:55 ============================================================================ +20:01:55 Slot Id : <466> +20:01:55 Transaction Type : REQUEST +20:01:55 Received From : +20:01:55 ============================================================================ +20:01:55 FNo. Len. Field Value +20:01:55 ============================================================================ +20:01:55 [ 1] [ 4] [0200] +20:01:55 [ 2] [ 16] [6213544002046214] +20:01:55 [ 3] [ 6] [010000] +20:01:55 [ 4] [ 12] [000050000000] +20:01:55 [ 7] [ 10] [0320130059] +20:01:55 [ 11] [ 6] [271542] +20:01:55 [ 12] [ 6] [200059] +20:01:55 [ 13] [ 4] [0320] +20:01:55 [ 14] [ 4] [4912] +20:01:55 [ 15] [ 4] [0320] +20:01:55 [ 18] [ 4] [6011] +20:01:55 [ 19] [ 3] [418] +20:01:55 [ 22] [ 3] [021] +20:01:55 [ 25] [ 2] [01] +20:01:55 [ 28] [ 9] [D00002000] +20:01:55 [ 32] [ 6] [180893] +20:01:55 [ 35] [ 32] [6213544002046214=491212014621360] +20:01:55 [ 37] [ 12] [507913271542] +20:01:55 [ 41] [ 8] [0361BLTB] +20:01:55 [ 42] [ 15] [999999 ] +20:01:55 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +20:01:55 [ 49] [ 3] [418] +20:01:55 [ 52] [ 16] [FB86A9C8DADD4B79] +20:01:55 ============================================================================ +20:01:55 + + +waiting on router queue for slot.... +20:01:55 Sending to : +20:01:55 ============================================================================ +20:01:55 ============================================================================ +20:01:55 Slot Id : <466> +20:01:55 Transaction Type : REQUEST +20:01:55 Received From : +20:01:55 ============================================================================ +20:01:55 FNo. Len. Field Value +20:01:55 ============================================================================ +20:01:55 [ 1] [ 4] [0200] +20:01:55 [ 2] [ 16] [6213544002046214] +20:01:55 [ 3] [ 6] [010000] +20:01:55 [ 4] [ 12] [000050000000] +20:01:55 [ 7] [ 10] [0320130059] +20:01:55 [ 11] [ 6] [271542] +20:01:55 [ 12] [ 6] [200059] +20:01:55 [ 13] [ 4] [0320] +20:01:55 [ 14] [ 4] [4912] +20:01:55 [ 15] [ 4] [0320] +20:01:55 [ 18] [ 4] [6011] +20:01:55 [ 19] [ 3] [418] +20:01:55 [ 22] [ 3] [021] +20:01:55 [ 25] [ 2] [01] +20:01:55 [ 28] [ 9] [D00002000] +20:01:55 [ 32] [ 6] [180893] +20:01:55 [ 35] [ 32] [6213544002046214=491212014621360] +20:01:55 [ 37] [ 12] [507913271542] +20:01:55 [ 41] [ 8] [0361BLTB] +20:01:55 [ 42] [ 15] [999999 ] +20:01:55 [ 43] [ 40] [ATM THAPHABATH BOLIKHAMXAI LOCATION, Tha] +20:01:55 [ 49] [ 3] [418] +20:01:55 [ 52] [ 16] [64606E3165E16637] +20:01:55 ============================================================================ +20:01:55 + + +waiting on router queue for slot.... +20:01:55 Sending to : <0> +20:01:55 ============================================================================ +20:01:56 ============================================================================ +20:01:56 Slot Id : <466> +20:01:56 Transaction Type : RESPONSE +20:01:56 Received From : +20:01:56 ============================================================================ +20:01:56 FNo. Len. Field Value +20:01:56 ============================================================================ +20:01:56 [ 1] [ 4] [0210] +20:01:56 [ 2] [ 16] [6213544002046214] +20:01:56 [ 3] [ 6] [010000] +20:01:56 [ 4] [ 12] [000050000000] +20:01:56 [ 7] [ 10] [0320130059] +20:01:56 [ 11] [ 6] [271542] +20:01:56 [ 12] [ 6] [200059] +20:01:56 [ 13] [ 4] [0320] +20:01:56 [ 15] [ 4] [0320] +20:01:56 [ 18] [ 4] [6011] +20:01:56 [ 19] [ 3] [418] +20:01:56 [ 32] [ 6] [180893] +20:01:56 [ 35] [ 32] [6213544002046214=491212014621360] +20:01:56 [ 37] [ 12] [507913271542] +20:01:56 [ 38] [ 6] [050963] +20:01:56 [ 39] [ 2] [00] +20:01:56 [ 41] [ 8] [0361BLTB] +20:01:56 [ 49] [ 3] [418] +20:01:56 [ 54] [ 40] [0001418C0003687836050002418C000368783605] +20:01:56 ============================================================================ +20:01:56 Sending to : +20:01:56 ============================================================================ +20:01:56 + + +waiting on router queue for slot.... +20:01:57 ============================================================================ +20:01:57 Slot Id : <466> +20:01:57 Transaction Type : RESPONSE +20:01:57 Received From : +20:01:57 ============================================================================ +20:01:57 FNo. Len. Field Value +20:01:57 ============================================================================ +20:01:57 [ 1] [ 4] [0210] +20:01:57 [ 2] [ 16] [6213544002046214] +20:01:57 [ 3] [ 6] [010000] +20:01:57 [ 4] [ 12] [000050000000] +20:01:57 [ 7] [ 10] [0320130059] +20:01:57 [ 11] [ 6] [271542] +20:01:57 [ 12] [ 6] [200059] +20:01:57 [ 13] [ 4] [0320] +20:01:57 [ 15] [ 4] [0320] +20:01:57 [ 18] [ 4] [6011] +20:01:57 [ 19] [ 3] [418] +20:01:57 [ 32] [ 6] [180893] +20:01:57 [ 35] [ 32] [6213544002046214=491212014621360] +20:01:57 [ 37] [ 12] [507913271542] +20:01:57 [ 38] [ 6] [050963] +20:01:57 [ 39] [ 2] [00] +20:01:57 [ 41] [ 8] [0361BLTB] +20:01:57 [ 49] [ 3] [418] +20:01:57 [ 54] [ 40] [0001418C0003687836050002418C000368783605] +20:01:57 ============================================================================ +20:01:57 Calculate Source COMM Id = 2 +20:01:57 ============================================================================ +20:01:57 + + +waiting on router queue for slot.... +20:02:09 ============================================================================ +20:02:09 Slot Id : <468> +20:02:09 Transaction Type : REQUEST +20:02:09 Received From : +20:02:09 ============================================================================ +20:02:09 FNo. Len. Field Value +20:02:09 ============================================================================ +20:02:09 [ 1] [ 4] [0800] +20:02:09 [ 7] [ 10] [0320010115] +20:02:09 [ 11] [ 6] [158100] +20:02:09 [ 70] [ 3] [301] +20:02:09 ============================================================================ +20:02:09 + + +waiting on router queue for slot.... +20:02:09 Sending to : +20:02:09 ============================================================================ +20:02:09 ============================================================================ +20:02:09 Slot Id : <468> +20:02:09 Transaction Type : RESPONSE +20:02:09 Received From : +20:02:09 ============================================================================ +20:02:09 FNo. Len. Field Value +20:02:09 ============================================================================ +20:02:09 [ 1] [ 4] [0810] +20:02:09 [ 7] [ 10] [0320010115] +20:02:09 [ 11] [ 6] [158100] +20:02:09 [ 39] [ 2] [00] +20:02:09 [ 70] [ 3] [301] +20:02:09 ============================================================================ +20:02:09 Calculate Source COMM Id = 2 +20:02:09 ============================================================================ +20:02:09 + + +waiting on router queue for slot.... +20:02:17 ============================================================================ +20:02:17 Slot Id : <455> +20:02:17 Transaction Type : REQUEST +20:02:17 Received From : +20:02:17 ============================================================================ +20:02:17 FNo. Len. Field Value +20:02:17 ============================================================================ +20:02:17 [ 1] [ 4] [0800] +20:02:17 [ 7] [ 10] [0320200203] +20:02:17 [ 11] [ 6] [006096] +20:02:17 [ 37] [ 12] [507920006096] +20:02:17 [ 70] [ 3] [ ] +20:02:17 ============================================================================ +20:02:17 + + +waiting on router queue for slot.... +20:02:17 Sending to : +20:02:17 ============================================================================ +20:02:17 ============================================================================ +20:02:17 Slot Id : <455> +20:02:17 Transaction Type : RESPONSE +20:02:17 Received From : +20:02:17 ============================================================================ +20:02:17 FNo. Len. Field Value +20:02:17 ============================================================================ +20:02:17 [ 1] [ 4] [0810] +20:02:17 [ 7] [ 10] [0320200203] +20:02:17 [ 11] [ 6] [006096] +20:02:17 [ 37] [ 12] [507920006096] +20:02:17 [ 39] [ 2] [91] +20:02:17 [ 70] [ 3] [ ] +20:02:17 ============================================================================ +20:02:17 Calculate Source COMM Id = 3 +20:02:17 ============================================================================ +20:02:17 + + +waiting on router queue for slot.... +20:02:24 ============================================================================ +20:02:24 Slot Id : <475> +20:02:24 Transaction Type : REQUEST +20:02:24 Received From : +20:02:24 ============================================================================ +20:02:24 FNo. Len. Field Value +20:02:24 ============================================================================ +20:02:24 [ 1] [ 4] [0800] +20:02:24 [ 7] [ 10] [0320010130] +20:02:24 [ 11] [ 6] [158101] +20:02:24 [ 70] [ 3] [301] +20:02:24 ============================================================================ +20:02:24 + + +waiting on router queue for slot.... +20:02:24 Sending to : +20:02:24 ============================================================================ +20:02:24 ============================================================================ +20:02:24 Slot Id : <475> +20:02:24 Transaction Type : RESPONSE +20:02:24 Received From : +20:02:24 ============================================================================ +20:02:24 FNo. Len. Field Value +20:02:24 ============================================================================ +20:02:24 [ 1] [ 4] [0810] +20:02:24 [ 7] [ 10] [0320010130] +20:02:24 [ 11] [ 6] [158101] +20:02:24 [ 39] [ 2] [00] +20:02:24 [ 70] [ 3] [301] +20:02:24 ============================================================================ +20:02:24 Calculate Source COMM Id = 2 +20:02:24 ============================================================================ +20:02:24 + + +waiting on router queue for slot.... +20:02:25 ============================================================================ +20:02:25 Slot Id : <460> +20:02:25 Transaction Type : REQUEST +20:02:25 Received From : +20:02:25 ============================================================================ +20:02:25 FNo. Len. Field Value +20:02:25 ============================================================================ +20:02:25 [ 1] [ 4] [0800] +20:02:25 [ 2] [ 5] [02531] +20:02:25 [ 3] [ 6] [579208] +20:02:25 [ 7] [ 10] [0320130225] +20:02:25 [ 11] [ 6] [807575] +20:02:25 [ 15] [ 10] [0320130225] +20:02:25 [ 37] [ 11] [57920807575] +20:02:25 [ 70] [ 3] [001] +20:02:25 ============================================================================ +20:02:25 + + +waiting on router queue for slot.... +20:02:25 ============================================================================ +20:02:25 Slot Id : <460> +20:02:25 Transaction Type : RESPONSE +20:02:25 Received From : +20:02:25 ============================================================================ +20:02:25 FNo. Len. Field Value +20:02:25 ============================================================================ +20:02:25 [ 1] [ 4] [0810] +20:02:25 [ 7] [ 10] [0320130225] +20:02:25 [ 11] [ 6] [807575] +20:02:25 [ 15] [ 4] [0320] +20:02:25 [ 37] [ 12] [57920807575] +20:02:25 [ 39] [ 2] [00] +20:02:25 [ 70] [ 3] [001] +20:02:25 ============================================================================ +20:02:25 Sending to : +20:02:25 ============================================================================ +20:02:25 + + +waiting on router queue for slot.... +20:02:31 ============================================================================ +20:02:31 Slot Id : <440> +20:02:31 Transaction Type : REQUEST +20:02:31 Received From : +20:02:31 ============================================================================ +20:02:31 FNo. Len. Field Value +20:02:31 ============================================================================ +20:02:31 [ 1] [ 4] [0200] +20:02:31 [ 2] [ 16] [1888880000075465] +20:02:31 [ 3] [ 6] [301000] +20:02:31 [ 4] [ 12] [000000000000] +20:02:31 [ 7] [ 10] [0320200020] +20:02:31 [ 11] [ 6] [956776] +20:02:31 [ 12] [ 6] [200020] +20:02:31 [ 13] [ 4] [0320] +20:02:31 [ 15] [ 4] [0320] +20:02:31 [ 18] [ 4] [6011] +20:02:31 [ 19] [ 3] [418] +20:02:31 [ 22] [ 3] [021] +20:02:31 [ 25] [ 2] [01] +20:02:31 [ 28] [ 9] [D00000000] +20:02:31 [ 32] [ 6] [668899] +20:02:31 [ 35] [ 32] [1888880000075465=000010100000113] +20:02:31 [ 37] [ 12] [507901955722] +20:02:31 [ 41] [ 8] [03020018] +20:02:31 [ 42] [ 15] [APT ] +20:02:31 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:02:31 [ 49] [ 3] [418] +20:02:31 [ 52] [ 16] [9ADA65E0A060A4AA] +20:02:31 ============================================================================ +20:02:31 + + +waiting on router queue for slot.... +20:02:31 Sending to : +20:02:31 ============================================================================ +20:02:31 Sending to : +20:02:31 ============================================================================ +20:02:31 ============================================================================ +20:02:31 Slot Id : <440> +20:02:31 Transaction Type : REQUEST +20:02:31 Received From : +20:02:31 ============================================================================ +20:02:31 FNo. Len. Field Value +20:02:31 ============================================================================ +20:02:31 [ 1] [ 4] [0200] +20:02:31 [ 2] [ 16] [1888880000075465] +20:02:31 [ 3] [ 6] [301000] +20:02:31 [ 4] [ 12] [000000000000] +20:02:31 [ 7] [ 10] [0320200020] +20:02:31 [ 11] [ 6] [956776] +20:02:31 [ 12] [ 6] [200020] +20:02:31 [ 13] [ 4] [0320] +20:02:31 [ 15] [ 4] [0320] +20:02:31 [ 18] [ 4] [6011] +20:02:31 [ 19] [ 3] [418] +20:02:31 [ 22] [ 3] [021] +20:02:31 [ 25] [ 2] [01] +20:02:31 [ 28] [ 9] [D00000000] +20:02:31 [ 32] [ 6] [668899] +20:02:31 [ 35] [ 32] [1888880000075465=000010100000113] +20:02:31 [ 37] [ 12] [507901955722] +20:02:31 [ 41] [ 8] [03020018] +20:02:31 [ 42] [ 15] [APT ] +20:02:31 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:02:31 [ 49] [ 3] [418] +20:02:31 [ 52] [ 16] [9ADA65E0A060A4AA] +20:02:31 ============================================================================ +20:02:31 + + +waiting on router queue for slot.... +20:02:31 Sending to : +20:02:31 ============================================================================ +20:02:31 ============================================================================ +20:02:31 Slot Id : <440> +20:02:31 Transaction Type : REQUEST +20:02:31 Received From : +20:02:31 ============================================================================ +20:02:31 FNo. Len. Field Value +20:02:31 ============================================================================ +20:02:31 [ 1] [ 4] [0200] +20:02:31 [ 2] [ 16] [1888880000075465] +20:02:31 [ 3] [ 6] [301000] +20:02:31 [ 4] [ 12] [000000000000] +20:02:31 [ 7] [ 10] [0320200020] +20:02:31 [ 11] [ 6] [956776] +20:02:31 [ 12] [ 6] [200020] +20:02:31 [ 13] [ 4] [0320] +20:02:31 [ 15] [ 4] [0320] +20:02:31 [ 18] [ 4] [6011] +20:02:31 [ 19] [ 3] [418] +20:02:31 [ 22] [ 3] [021] +20:02:31 [ 25] [ 2] [01] +20:02:31 [ 28] [ 9] [D00000000] +20:02:31 [ 32] [ 6] [668899] +20:02:31 [ 35] [ 32] [1888880000075465=000010100000113] +20:02:31 [ 37] [ 12] [507901955722] +20:02:31 [ 41] [ 8] [03020018] +20:02:31 [ 42] [ 15] [APT ] +20:02:31 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:02:31 [ 49] [ 3] [418] +20:02:31 [ 52] [ 16] [BCE69C1BF662F6B1] +20:02:31 ============================================================================ +20:02:31 + + +waiting on router queue for slot.... +20:02:31 Sending to : <5> +20:02:31 ============================================================================ +20:02:32 ============================================================================ +20:02:32 Slot Id : <495> +20:02:32 Transaction Type : REQUEST +20:02:32 Received From : +20:02:32 ============================================================================ +20:02:32 FNo. Len. Field Value +20:02:32 ============================================================================ +20:02:32 [ 1] [ 4] [0800] +20:02:32 [ 7] [ 10] [0321031420] +20:02:32 [ 11] [ 6] [201420] +20:02:32 [ 37] [ 12] [57920201420] +20:02:32 [ 70] [ 3] [301] +20:02:32 ============================================================================ +20:02:32 + + +waiting on router queue for slot.... +20:02:32 Sending to : +20:02:32 ============================================================================ +20:02:32 ============================================================================ +20:02:32 Slot Id : <495> +20:02:32 Transaction Type : RESPONSE +20:02:32 Received From : +20:02:32 ============================================================================ +20:02:32 FNo. Len. Field Value +20:02:32 ============================================================================ +20:02:32 [ 1] [ 4] [0810] +20:02:32 [ 7] [ 10] [0321031420] +20:02:32 [ 11] [ 6] [201420] +20:02:32 [ 37] [ 12] [579202014200] +20:02:32 [ 39] [ 2] [00] +20:02:32 [ 70] [ 3] [810] +20:02:32 ============================================================================ +20:02:32 Calculate Source COMM Id = 6 +20:02:32 ============================================================================ +20:02:32 + + +waiting on router queue for slot.... +20:02:34 ============================================================================ +20:02:34 Slot Id : <440> +20:02:34 Transaction Type : RESPONSE +20:02:34 Received From : +20:02:34 ============================================================================ +20:02:34 FNo. Len. Field Value +20:02:34 ============================================================================ +20:02:34 [ 1] [ 4] [0210] +20:02:34 [ 2] [ 16] [1888880000075465] +20:02:34 [ 3] [ 6] [301000] +20:02:34 [ 4] [ 12] [000000000000] +20:02:34 [ 7] [ 10] [0320200020] +20:02:34 [ 11] [ 6] [956776] +20:02:34 [ 12] [ 6] [200020] +20:02:34 [ 13] [ 4] [0320] +20:02:34 [ 15] [ 4] [0320] +20:02:34 [ 18] [ 4] [6011] +20:02:34 [ 19] [ 3] [418] +20:02:34 [ 32] [ 6] [668899] +20:02:34 [ 37] [ 12] [507901955722] +20:02:34 [ 38] [ 6] [386013] +20:02:34 [ 39] [ 2] [00] +20:02:34 [ 41] [ 8] [03020018] +20:02:34 [ 49] [ 3] [418] +20:02:34 [ 54] [ 20] [1001418C000027100000] +20:02:34 ============================================================================ +20:02:34 Sending to : +20:02:34 ============================================================================ +20:02:34 + + +waiting on router queue for slot.... +20:02:34 ============================================================================ +20:02:34 Slot Id : <449> +20:02:34 Transaction Type : REQUEST +20:02:34 Received From : +20:02:34 ============================================================================ +20:02:34 FNo. Len. Field Value +20:02:34 ============================================================================ +20:02:34 [ 1] [ 4] [0800] +20:02:34 [ 7] [ 10] [0320010141] +20:02:34 [ 11] [ 6] [158102] +20:02:34 [ 70] [ 3] [301] +20:02:34 ============================================================================ +20:02:34 + + +waiting on router queue for slot.... +20:02:34 Sending to : +20:02:34 ============================================================================ +20:02:34 ============================================================================ +20:02:34 Slot Id : <449> +20:02:34 Transaction Type : RESPONSE +20:02:34 Received From : +20:02:34 ============================================================================ +20:02:34 FNo. Len. Field Value +20:02:34 ============================================================================ +20:02:34 [ 1] [ 4] [0810] +20:02:34 [ 7] [ 10] [0320010141] +20:02:34 [ 11] [ 6] [158102] +20:02:34 [ 39] [ 2] [00] +20:02:34 [ 70] [ 3] [301] +20:02:34 ============================================================================ +20:02:34 Calculate Source COMM Id = 2 +20:02:34 ============================================================================ +20:02:34 + + +waiting on router queue for slot.... +20:02:35 ============================================================================ +20:02:35 Slot Id : <440> +20:02:35 Transaction Type : RESPONSE +20:02:35 Received From : +20:02:35 ============================================================================ +20:02:35 FNo. Len. Field Value +20:02:35 ============================================================================ +20:02:35 [ 1] [ 4] [0210] +20:02:35 [ 2] [ 16] [1888880000075465] +20:02:35 [ 3] [ 6] [301000] +20:02:35 [ 4] [ 12] [000000000000] +20:02:35 [ 7] [ 10] [0320200020] +20:02:35 [ 11] [ 6] [956776] +20:02:35 [ 12] [ 6] [200020] +20:02:35 [ 13] [ 4] [0320] +20:02:35 [ 15] [ 4] [0320] +20:02:35 [ 18] [ 4] [6011] +20:02:35 [ 19] [ 3] [418] +20:02:35 [ 32] [ 6] [668899] +20:02:35 [ 37] [ 12] [507901955722] +20:02:35 [ 38] [ 6] [386013] +20:02:35 [ 39] [ 2] [00] +20:02:35 [ 41] [ 8] [03020018] +20:02:35 [ 49] [ 3] [418] +20:02:35 [ 54] [ 20] [1001418C000027100000] +20:02:35 ============================================================================ +20:02:35 Calculate Source COMM Id = 4 +20:02:35 ============================================================================ +20:02:35 + + +waiting on router queue for slot.... +20:02:45 ============================================================================ +20:02:45 Slot Id : <482> +20:02:45 Transaction Type : REQUEST +20:02:45 Received From : +20:02:45 ============================================================================ +20:02:45 FNo. Len. Field Value +20:02:45 ============================================================================ +20:02:45 [ 1] [ 4] [0800] +20:02:45 [ 7] [ 10] [0320010152] +20:02:45 [ 11] [ 6] [158103] +20:02:45 [ 70] [ 3] [301] +20:02:45 ============================================================================ +20:02:45 + + +waiting on router queue for slot.... +20:02:45 Sending to : +20:02:45 ============================================================================ +20:02:45 ============================================================================ +20:02:45 Slot Id : <482> +20:02:45 Transaction Type : RESPONSE +20:02:45 Received From : +20:02:45 ============================================================================ +20:02:45 FNo. Len. Field Value +20:02:45 ============================================================================ +20:02:45 [ 1] [ 4] [0810] +20:02:45 [ 7] [ 10] [0320010152] +20:02:45 [ 11] [ 6] [158103] +20:02:45 [ 39] [ 2] [00] +20:02:45 [ 70] [ 3] [301] +20:02:45 ============================================================================ +20:02:45 Calculate Source COMM Id = 2 +20:02:45 ============================================================================ +20:02:45 + + +waiting on router queue for slot.... +20:02:58 ============================================================================ +20:02:58 Slot Id : <432> +20:02:58 Transaction Type : REQUEST +20:02:58 Received From : +20:02:58 ============================================================================ +20:02:58 FNo. Len. Field Value +20:02:58 ============================================================================ +20:02:58 [ 1] [ 4] [0800] +20:02:58 [ 7] [ 10] [0320010204] +20:02:58 [ 11] [ 6] [158104] +20:02:58 [ 70] [ 3] [301] +20:02:58 ============================================================================ +20:02:58 + + +waiting on router queue for slot.... +20:02:58 Sending to : +20:02:58 ============================================================================ +20:02:58 ============================================================================ +20:02:58 Slot Id : <432> +20:02:58 Transaction Type : RESPONSE +20:02:58 Received From : +20:02:58 ============================================================================ +20:02:58 FNo. Len. Field Value +20:02:58 ============================================================================ +20:02:58 [ 1] [ 4] [0810] +20:02:58 [ 7] [ 10] [0320010204] +20:02:58 [ 11] [ 6] [158104] +20:02:58 [ 39] [ 2] [00] +20:02:58 [ 70] [ 3] [301] +20:02:58 ============================================================================ +20:02:58 Calculate Source COMM Id = 2 +20:02:58 ============================================================================ +20:02:58 + + +waiting on router queue for slot.... +20:03:13 ============================================================================ +20:03:13 Slot Id : <453> +20:03:13 Transaction Type : REQUEST +20:03:13 Received From : +20:03:13 ============================================================================ +20:03:13 FNo. Len. Field Value +20:03:13 ============================================================================ +20:03:13 [ 1] [ 4] [0800] +20:03:13 [ 7] [ 10] [0320010219] +20:03:13 [ 11] [ 6] [158105] +20:03:13 [ 70] [ 3] [301] +20:03:13 ============================================================================ +20:03:13 + + +waiting on router queue for slot.... +20:03:13 Sending to : +20:03:13 ============================================================================ +20:03:13 ============================================================================ +20:03:13 Slot Id : <453> +20:03:13 Transaction Type : RESPONSE +20:03:13 Received From : +20:03:13 ============================================================================ +20:03:13 FNo. Len. Field Value +20:03:13 ============================================================================ +20:03:13 [ 1] [ 4] [0810] +20:03:13 [ 7] [ 10] [0320010219] +20:03:13 [ 11] [ 6] [158105] +20:03:13 [ 39] [ 2] [00] +20:03:13 [ 70] [ 3] [301] +20:03:13 ============================================================================ +20:03:13 Calculate Source COMM Id = 2 +20:03:13 ============================================================================ +20:03:13 + + +waiting on router queue for slot.... +20:03:20 ============================================================================ +20:03:20 Slot Id : <488> +20:03:20 Transaction Type : REQUEST +20:03:20 Received From : +20:03:20 ============================================================================ +20:03:20 FNo. Len. Field Value +20:03:20 ============================================================================ +20:03:20 [ 1] [ 4] [0200] +20:03:20 [ 2] [ 16] [6213544001465472] +20:03:20 [ 3] [ 6] [011000] +20:03:20 [ 4] [ 12] [000080000000] +20:03:20 [ 7] [ 10] [0320200340] +20:03:20 [ 11] [ 6] [211765] +20:03:20 [ 12] [ 6] [194714] +20:03:20 [ 13] [ 4] [0320] +20:03:20 [ 14] [ 4] [4912] +20:03:20 [ 15] [ 4] [0320] +20:03:20 [ 18] [ 4] [6011] +20:03:20 [ 19] [ 3] [418] +20:03:20 [ 22] [ 3] [021] +20:03:20 [ 25] [ 2] [01] +20:03:20 [ 28] [ 9] [D00002000] +20:03:20 [ 32] [ 6] [198901] +20:03:20 [ 35] [ 32] [6213544001465472=491212016547762] +20:03:20 [ 37] [ 12] [507920211765] +20:03:20 [ 41] [ 8] [01529003] +20:03:20 [ 42] [ 15] [000000041529003] +20:03:20 [ 43] [ 40] [JDB ATM HQ1 VN ] +20:03:20 [ 49] [ 3] [418] +20:03:20 [ 52] [ 16] [4B664F36748A8568] +20:03:20 ============================================================================ +20:03:20 + + +waiting on router queue for slot.... +20:03:20 Sending to : +20:03:20 ============================================================================ +20:03:20 Sending to : +20:03:20 ============================================================================ +20:03:21 ============================================================================ +20:03:21 Slot Id : <488> +20:03:21 Transaction Type : REQUEST +20:03:21 Received From : +20:03:21 ============================================================================ +20:03:21 FNo. Len. Field Value +20:03:21 ============================================================================ +20:03:21 [ 1] [ 4] [0200] +20:03:21 [ 2] [ 16] [6213544001465472] +20:03:21 [ 3] [ 6] [011000] +20:03:21 [ 4] [ 12] [000080000000] +20:03:21 [ 7] [ 10] [0320200340] +20:03:21 [ 11] [ 6] [211765] +20:03:21 [ 12] [ 6] [194714] +20:03:21 [ 13] [ 4] [0320] +20:03:21 [ 14] [ 4] [4912] +20:03:21 [ 15] [ 4] [0320] +20:03:21 [ 18] [ 4] [6011] +20:03:21 [ 19] [ 3] [418] +20:03:21 [ 22] [ 3] [021] +20:03:21 [ 25] [ 2] [01] +20:03:21 [ 28] [ 9] [D00002000] +20:03:21 [ 32] [ 6] [198901] +20:03:21 [ 35] [ 32] [6213544001465472=491212016547762] +20:03:21 [ 37] [ 12] [507920211765] +20:03:21 [ 41] [ 8] [01529003] +20:03:21 [ 42] [ 15] [000000041529003] +20:03:21 [ 43] [ 40] [JDB ATM HQ1 VN ] +20:03:21 [ 49] [ 3] [418] +20:03:21 [ 52] [ 16] [4B664F36748A8568] +20:03:21 ============================================================================ +20:03:21 + + +waiting on router queue for slot.... +20:03:21 Sending to : +20:03:21 ============================================================================ +20:03:21 ============================================================================ +20:03:21 Slot Id : <488> +20:03:21 Transaction Type : REQUEST +20:03:21 Received From : +20:03:21 ============================================================================ +20:03:21 FNo. Len. Field Value +20:03:21 ============================================================================ +20:03:21 [ 1] [ 4] [0200] +20:03:21 [ 2] [ 16] [6213544001465472] +20:03:21 [ 3] [ 6] [011000] +20:03:21 [ 4] [ 12] [000080000000] +20:03:21 [ 7] [ 10] [0320200340] +20:03:21 [ 11] [ 6] [211765] +20:03:21 [ 12] [ 6] [194714] +20:03:21 [ 13] [ 4] [0320] +20:03:21 [ 14] [ 4] [4912] +20:03:21 [ 15] [ 4] [0320] +20:03:21 [ 18] [ 4] [6011] +20:03:21 [ 19] [ 3] [418] +20:03:21 [ 22] [ 3] [021] +20:03:21 [ 25] [ 2] [01] +20:03:21 [ 28] [ 9] [D00002000] +20:03:21 [ 32] [ 6] [198901] +20:03:21 [ 35] [ 32] [6213544001465472=491212016547762] +20:03:21 [ 37] [ 12] [507920211765] +20:03:21 [ 41] [ 8] [01529003] +20:03:21 [ 42] [ 15] [000000041529003] +20:03:21 [ 43] [ 40] [JDB ATM HQ1 VN ] +20:03:21 [ 49] [ 3] [418] +20:03:21 [ 52] [ 16] [9609FC7E5AB0B42B] +20:03:21 ============================================================================ +20:03:21 + + +waiting on router queue for slot.... +20:03:21 Sending to : <0> +20:03:21 ============================================================================ +20:03:21 ============================================================================ +20:03:21 Slot Id : <488> +20:03:21 Transaction Type : RESPONSE +20:03:21 Received From : +20:03:21 ============================================================================ +20:03:21 FNo. Len. Field Value +20:03:21 ============================================================================ +20:03:21 [ 1] [ 4] [0210] +20:03:21 [ 2] [ 16] [6213544001465472] +20:03:21 [ 3] [ 6] [011000] +20:03:21 [ 4] [ 12] [000080000000] +20:03:21 [ 7] [ 10] [0320200340] +20:03:21 [ 11] [ 6] [211765] +20:03:21 [ 12] [ 6] [194714] +20:03:21 [ 13] [ 4] [0320] +20:03:21 [ 15] [ 4] [0320] +20:03:21 [ 18] [ 4] [6011] +20:03:21 [ 19] [ 3] [418] +20:03:21 [ 32] [ 6] [198901] +20:03:21 [ 35] [ 32] [6213544001465472=491212016547762] +20:03:21 [ 37] [ 12] [507920211765] +20:03:21 [ 38] [ 6] [748583] +20:03:21 [ 39] [ 2] [00] +20:03:21 [ 41] [ 8] [01529003] +20:03:21 [ 49] [ 3] [418] +20:03:21 [ 54] [ 40] [1001418C0000064616371002418C000006461637] +20:03:21 ============================================================================ +20:03:21 Sending to : +20:03:21 ============================================================================ +20:03:21 + + +waiting on router queue for slot.... +20:03:22 ============================================================================ +20:03:22 Slot Id : <470> +20:03:22 Transaction Type : REQUEST +20:03:22 Received From : +20:03:22 ============================================================================ +20:03:22 FNo. Len. Field Value +20:03:22 ============================================================================ +20:03:22 [ 1] [ 4] [0200] +20:03:22 [ 2] [ 16] [1888880000075465] +20:03:22 [ 3] [ 6] [010000] +20:03:22 [ 4] [ 12] [000020000000] +20:03:22 [ 7] [ 10] [0320200111] +20:03:22 [ 11] [ 6] [956785] +20:03:22 [ 12] [ 6] [200111] +20:03:22 [ 13] [ 4] [0320] +20:03:22 [ 15] [ 4] [0320] +20:03:22 [ 18] [ 4] [6011] +20:03:22 [ 19] [ 3] [418] +20:03:22 [ 22] [ 3] [021] +20:03:22 [ 25] [ 2] [01] +20:03:22 [ 28] [ 9] [D00002000] +20:03:22 [ 32] [ 6] [668899] +20:03:22 [ 35] [ 32] [1888880000075465=000010100000113] +20:03:22 [ 37] [ 12] [507901955723] +20:03:22 [ 41] [ 8] [03020018] +20:03:22 [ 42] [ 15] [APT ] +20:03:22 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:03:22 [ 49] [ 3] [418] +20:03:22 [ 52] [ 16] [9ADA65E0A060A4AA] +20:03:22 ============================================================================ +20:03:22 + + +waiting on router queue for slot.... +20:03:22 Sending to : +20:03:22 ============================================================================ +20:03:22 Sending to : +20:03:22 ============================================================================ +20:03:22 ============================================================================ +20:03:22 Slot Id : <470> +20:03:22 Transaction Type : REQUEST +20:03:22 Received From : +20:03:22 ============================================================================ +20:03:22 FNo. Len. Field Value +20:03:22 ============================================================================ +20:03:22 [ 1] [ 4] [0200] +20:03:22 [ 2] [ 16] [1888880000075465] +20:03:22 [ 3] [ 6] [010000] +20:03:22 [ 4] [ 12] [000020000000] +20:03:22 [ 7] [ 10] [0320200111] +20:03:22 [ 11] [ 6] [956785] +20:03:22 [ 12] [ 6] [200111] +20:03:22 [ 13] [ 4] [0320] +20:03:22 [ 15] [ 4] [0320] +20:03:22 [ 18] [ 4] [6011] +20:03:22 [ 19] [ 3] [418] +20:03:22 [ 22] [ 3] [021] +20:03:22 [ 25] [ 2] [01] +20:03:22 [ 28] [ 9] [D00002000] +20:03:22 [ 32] [ 6] [668899] +20:03:22 [ 35] [ 32] [1888880000075465=000010100000113] +20:03:22 [ 37] [ 12] [507901955723] +20:03:22 [ 41] [ 8] [03020018] +20:03:22 [ 42] [ 15] [APT ] +20:03:22 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:03:22 [ 49] [ 3] [418] +20:03:22 [ 52] [ 16] [9ADA65E0A060A4AA] +20:03:22 ============================================================================ +20:03:22 + + +waiting on router queue for slot.... +20:03:22 Sending to : +20:03:22 ============================================================================ +20:03:22 ============================================================================ +20:03:22 Slot Id : <470> +20:03:22 Transaction Type : REQUEST +20:03:22 Received From : +20:03:22 ============================================================================ +20:03:22 FNo. Len. Field Value +20:03:22 ============================================================================ +20:03:22 [ 1] [ 4] [0200] +20:03:22 [ 2] [ 16] [1888880000075465] +20:03:22 [ 3] [ 6] [010000] +20:03:22 [ 4] [ 12] [000020000000] +20:03:22 [ 7] [ 10] [0320200111] +20:03:22 [ 11] [ 6] [956785] +20:03:22 [ 12] [ 6] [200111] +20:03:22 [ 13] [ 4] [0320] +20:03:22 [ 15] [ 4] [0320] +20:03:22 [ 18] [ 4] [6011] +20:03:22 [ 19] [ 3] [418] +20:03:22 [ 22] [ 3] [021] +20:03:22 [ 25] [ 2] [01] +20:03:22 [ 28] [ 9] [D00002000] +20:03:22 [ 32] [ 6] [668899] +20:03:22 [ 35] [ 32] [1888880000075465=000010100000113] +20:03:22 [ 37] [ 12] [507901955723] +20:03:22 [ 41] [ 8] [03020018] +20:03:22 [ 42] [ 15] [APT ] +20:03:22 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:03:22 [ 49] [ 3] [418] +20:03:22 [ 52] [ 16] [BCE69C1BF662F6B1] +20:03:22 ============================================================================ +20:03:22 + + +waiting on router queue for slot.... +20:03:22 Sending to : <5> +20:03:22 ============================================================================ +20:03:23 ============================================================================ +20:03:23 Slot Id : <488> +20:03:23 Transaction Type : RESPONSE +20:03:23 Received From : +20:03:23 ============================================================================ +20:03:23 FNo. Len. Field Value +20:03:23 ============================================================================ +20:03:23 [ 1] [ 4] [0210] +20:03:23 [ 2] [ 16] [6213544001465472] +20:03:23 [ 3] [ 6] [011000] +20:03:23 [ 4] [ 12] [000080000000] +20:03:23 [ 7] [ 10] [0320200340] +20:03:23 [ 11] [ 6] [211765] +20:03:23 [ 12] [ 6] [194714] +20:03:23 [ 13] [ 4] [0320] +20:03:23 [ 15] [ 4] [0320] +20:03:23 [ 18] [ 4] [6011] +20:03:23 [ 19] [ 3] [418] +20:03:23 [ 32] [ 6] [198901] +20:03:23 [ 35] [ 32] [6213544001465472=491212016547762] +20:03:23 [ 37] [ 12] [507920211765] +20:03:23 [ 38] [ 6] [748583] +20:03:23 [ 39] [ 2] [00] +20:03:23 [ 41] [ 8] [01529003] +20:03:23 [ 49] [ 3] [418] +20:03:23 [ 54] [ 40] [1001418C0000064616371002418C000006461637] +20:03:23 ============================================================================ +20:03:23 Calculate Source COMM Id = 5 +20:03:23 ============================================================================ +20:03:23 + + +waiting on router queue for slot.... +20:03:24 ============================================================================ +20:03:24 Slot Id : <484> +20:03:24 Transaction Type : REQUEST +20:03:24 Received From : +20:03:24 ============================================================================ +20:03:24 FNo. Len. Field Value +20:03:24 ============================================================================ +20:03:24 [ 1] [ 4] [0800] +20:03:24 [ 7] [ 10] [0320010230] +20:03:24 [ 11] [ 6] [158106] +20:03:24 [ 70] [ 3] [301] +20:03:24 ============================================================================ +20:03:24 + + +waiting on router queue for slot.... +20:03:24 Sending to : +20:03:24 ============================================================================ +20:03:24 ============================================================================ +20:03:24 Slot Id : <484> +20:03:24 Transaction Type : RESPONSE +20:03:24 Received From : +20:03:24 ============================================================================ +20:03:24 FNo. Len. Field Value +20:03:24 ============================================================================ +20:03:24 [ 1] [ 4] [0810] +20:03:24 [ 7] [ 10] [0320010230] +20:03:24 [ 11] [ 6] [158106] +20:03:24 [ 39] [ 2] [00] +20:03:24 [ 70] [ 3] [301] +20:03:24 ============================================================================ +20:03:24 Calculate Source COMM Id = 2 +20:03:24 ============================================================================ +20:03:24 + + +waiting on router queue for slot.... +20:03:27 ============================================================================ +20:03:27 Slot Id : <480> +20:03:27 Transaction Type : REQUEST +20:03:27 Received From : +20:03:27 ============================================================================ +20:03:27 FNo. Len. Field Value +20:03:27 ============================================================================ +20:03:27 [ 1] [ 4] [0800] +20:03:27 [ 2] [ 5] [02531] +20:03:27 [ 3] [ 6] [579208] +20:03:27 [ 7] [ 10] [0320130327] +20:03:27 [ 11] [ 6] [807576] +20:03:27 [ 15] [ 10] [0320130327] +20:03:27 [ 37] [ 11] [57920807576] +20:03:27 [ 70] [ 3] [001] +20:03:27 ============================================================================ +20:03:27 + + +waiting on router queue for slot.... +20:03:27 ============================================================================ +20:03:27 Slot Id : <480> +20:03:27 Transaction Type : RESPONSE +20:03:27 Received From : +20:03:27 ============================================================================ +20:03:27 FNo. Len. Field Value +20:03:27 ============================================================================ +20:03:27 [ 1] [ 4] [0810] +20:03:27 [ 7] [ 10] [0320130327] +20:03:27 [ 11] [ 6] [807576] +20:03:27 [ 15] [ 4] [0320] +20:03:27 [ 37] [ 12] [57920807576] +20:03:27 [ 39] [ 2] [00] +20:03:27 [ 70] [ 3] [001] +20:03:27 ============================================================================ +20:03:27 Sending to : +20:03:27 ============================================================================ +20:03:27 + + +waiting on router queue for slot.... +20:03:28 ============================================================================ +20:03:28 Slot Id : <470> +20:03:28 Transaction Type : RESPONSE +20:03:28 Received From : +20:03:28 ============================================================================ +20:03:28 FNo. Len. Field Value +20:03:28 ============================================================================ +20:03:28 [ 1] [ 4] [0210] +20:03:28 [ 2] [ 16] [1888880000075465] +20:03:28 [ 3] [ 6] [010000] +20:03:28 [ 4] [ 12] [000020000000] +20:03:28 [ 7] [ 10] [0320200111] +20:03:28 [ 11] [ 6] [956785] +20:03:28 [ 12] [ 6] [200111] +20:03:28 [ 13] [ 4] [0320] +20:03:28 [ 15] [ 4] [0320] +20:03:28 [ 18] [ 4] [6011] +20:03:28 [ 19] [ 3] [418] +20:03:28 [ 32] [ 6] [668899] +20:03:28 [ 37] [ 12] [507901955723] +20:03:28 [ 38] [ 6] [996066] +20:03:28 [ 39] [ 2] [00] +20:03:28 [ 41] [ 8] [03020018] +20:03:28 [ 49] [ 3] [418] +20:03:28 [ 54] [ 0] [] +20:03:28 ============================================================================ +20:03:28 Sending to : +20:03:28 ============================================================================ +20:03:28 + + +waiting on router queue for slot.... +20:03:29 ============================================================================ +20:03:29 Slot Id : <470> +20:03:29 Transaction Type : RESPONSE +20:03:29 Received From : +20:03:29 ============================================================================ +20:03:29 FNo. Len. Field Value +20:03:29 ============================================================================ +20:03:29 [ 1] [ 4] [0210] +20:03:29 [ 2] [ 16] [1888880000075465] +20:03:29 [ 3] [ 6] [010000] +20:03:29 [ 4] [ 12] [000020000000] +20:03:29 [ 7] [ 10] [0320200111] +20:03:29 [ 11] [ 6] [956785] +20:03:29 [ 12] [ 6] [200111] +20:03:29 [ 13] [ 4] [0320] +20:03:29 [ 15] [ 4] [0320] +20:03:29 [ 18] [ 4] [6011] +20:03:29 [ 19] [ 3] [418] +20:03:29 [ 32] [ 6] [668899] +20:03:29 [ 37] [ 12] [507901955723] +20:03:29 [ 38] [ 6] [996066] +20:03:29 [ 39] [ 2] [00] +20:03:29 [ 41] [ 8] [03020018] +20:03:29 [ 49] [ 3] [418] +20:03:29 [ 54] [ 0] [] +20:03:29 ============================================================================ +20:03:29 Calculate Source COMM Id = 4 +20:03:29 ============================================================================ +20:03:29 + + +waiting on router queue for slot.... +20:03:37 ============================================================================ +20:03:37 Slot Id : <471> +20:03:37 Transaction Type : REQUEST +20:03:37 Received From : +20:03:37 ============================================================================ +20:03:37 FNo. Len. Field Value +20:03:37 ============================================================================ +20:03:37 [ 1] [ 4] [0800] +20:03:37 [ 7] [ 10] [0321031526] +20:03:37 [ 11] [ 6] [201526] +20:03:37 [ 37] [ 12] [57920201526] +20:03:37 [ 70] [ 3] [301] +20:03:37 ============================================================================ +20:03:37 + + +waiting on router queue for slot.... +20:03:37 Sending to : +20:03:37 ============================================================================ +20:03:37 ============================================================================ +20:03:37 Slot Id : <471> +20:03:37 Transaction Type : RESPONSE +20:03:37 Received From : +20:03:37 ============================================================================ +20:03:37 FNo. Len. Field Value +20:03:37 ============================================================================ +20:03:37 [ 1] [ 4] [0810] +20:03:37 [ 7] [ 10] [0321031526] +20:03:37 [ 11] [ 6] [201526] +20:03:37 [ 37] [ 12] [579202015260] +20:03:37 [ 39] [ 2] [00] +20:03:37 [ 70] [ 3] [810] +20:03:37 ============================================================================ +20:03:37 Calculate Source COMM Id = 6 +20:03:37 ============================================================================ +20:03:37 + + +waiting on router queue for slot.... +20:03:39 ============================================================================ +20:03:39 Slot Id : <490> +20:03:39 Transaction Type : REQUEST +20:03:39 Received From : +20:03:39 ============================================================================ +20:03:39 FNo. Len. Field Value +20:03:39 ============================================================================ +20:03:39 [ 1] [ 4] [0800] +20:03:39 [ 7] [ 10] [0320010245] +20:03:39 [ 11] [ 6] [158107] +20:03:39 [ 70] [ 3] [301] +20:03:39 ============================================================================ +20:03:39 + + +waiting on router queue for slot.... +20:03:39 Sending to : +20:03:39 ============================================================================ +20:03:39 ============================================================================ +20:03:39 Slot Id : <490> +20:03:39 Transaction Type : RESPONSE +20:03:39 Received From : +20:03:39 ============================================================================ +20:03:39 FNo. Len. Field Value +20:03:39 ============================================================================ +20:03:39 [ 1] [ 4] [0810] +20:03:39 [ 7] [ 10] [0320010245] +20:03:39 [ 11] [ 6] [158107] +20:03:39 [ 39] [ 2] [00] +20:03:39 [ 70] [ 3] [301] +20:03:39 ============================================================================ +20:03:39 Calculate Source COMM Id = 2 +20:03:39 ============================================================================ +20:03:39 + + +waiting on router queue for slot.... +20:03:50 ============================================================================ +20:03:50 Slot Id : <463> +20:03:50 Transaction Type : REQUEST +20:03:50 Received From : +20:03:50 ============================================================================ +20:03:50 FNo. Len. Field Value +20:03:50 ============================================================================ +20:03:50 [ 1] [ 4] [0800] +20:03:50 [ 7] [ 10] [0320010256] +20:03:50 [ 11] [ 6] [158108] +20:03:50 [ 70] [ 3] [301] +20:03:50 ============================================================================ +20:03:50 + + +waiting on router queue for slot.... +20:03:50 Sending to : +20:03:50 ============================================================================ +20:03:50 ============================================================================ +20:03:50 Slot Id : <463> +20:03:50 Transaction Type : RESPONSE +20:03:50 Received From : +20:03:50 ============================================================================ +20:03:50 FNo. Len. Field Value +20:03:50 ============================================================================ +20:03:50 [ 1] [ 4] [0810] +20:03:50 [ 7] [ 10] [0320010256] +20:03:50 [ 11] [ 6] [158108] +20:03:50 [ 39] [ 2] [00] +20:03:50 [ 70] [ 3] [301] +20:03:50 ============================================================================ +20:03:50 Calculate Source COMM Id = 2 +20:03:50 ============================================================================ +20:03:50 + + +waiting on router queue for slot.... +20:03:57 ============================================================================ +20:03:57 Slot Id : <448> +20:03:57 Transaction Type : REQUEST +20:03:57 Received From : +20:03:57 ============================================================================ +20:03:57 FNo. Len. Field Value +20:03:57 ============================================================================ +20:03:57 [ 1] [ 4] [0200] +20:03:57 [ 2] [ 16] [1808930600033625] +20:03:57 [ 3] [ 6] [011000] +20:03:57 [ 4] [ 12] [000050000000] +20:03:57 [ 7] [ 10] [0320200351] +20:03:57 [ 11] [ 6] [840419] +20:03:57 [ 12] [ 6] [200351] +20:03:57 [ 13] [ 4] [0320] +20:03:57 [ 15] [ 4] [0320] +20:03:57 [ 18] [ 4] [6011] +20:03:57 [ 22] [ 3] [900] +20:03:57 [ 25] [ 2] [02] +20:03:57 [ 28] [ 9] [D00002000] +20:03:57 [ 32] [ 6] [621354] +20:03:57 [ 35] [ 27] [1808930600033625=1803500063] +20:03:57 [ 37] [ 12] [507905150632] +20:03:57 [ 41] [ 8] [09001900] +20:03:57 [ 42] [ 15] [NATIVE ] +20:03:57 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +20:03:57 [ 49] [ 3] [418] +20:03:57 [ 52] [ 16] [ED159B9FBA2EDCAF] +20:03:57 ============================================================================ +20:03:57 + + +waiting on router queue for slot.... +20:03:57 Sending to : +20:03:57 ============================================================================ +20:03:57 Sending to : +20:03:57 ============================================================================ +20:03:57 ============================================================================ +20:03:57 Slot Id : <448> +20:03:57 Transaction Type : REQUEST +20:03:57 Received From : +20:03:57 ============================================================================ +20:03:57 FNo. Len. Field Value +20:03:57 ============================================================================ +20:03:57 [ 1] [ 4] [0200] +20:03:57 [ 2] [ 16] [1808930600033625] +20:03:57 [ 3] [ 6] [011000] +20:03:57 [ 4] [ 12] [000050000000] +20:03:57 [ 7] [ 10] [0320200351] +20:03:57 [ 11] [ 6] [840419] +20:03:57 [ 12] [ 6] [200351] +20:03:57 [ 13] [ 4] [0320] +20:03:57 [ 15] [ 4] [0320] +20:03:57 [ 18] [ 4] [6011] +20:03:57 [ 22] [ 3] [900] +20:03:57 [ 25] [ 2] [02] +20:03:57 [ 28] [ 9] [D00002000] +20:03:57 [ 32] [ 6] [621354] +20:03:57 [ 35] [ 27] [1808930600033625=1803500063] +20:03:57 [ 37] [ 12] [507905150632] +20:03:57 [ 41] [ 8] [09001900] +20:03:57 [ 42] [ 15] [NATIVE ] +20:03:57 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +20:03:57 [ 49] [ 3] [418] +20:03:57 [ 52] [ 16] [ED159B9FBA2EDCAF] +20:03:57 ============================================================================ +20:03:57 + + +waiting on router queue for slot.... +20:03:57 Sending to : +20:03:57 ============================================================================ +20:03:57 ============================================================================ +20:03:57 Slot Id : <448> +20:03:57 Transaction Type : REQUEST +20:03:57 Received From : +20:03:57 ============================================================================ +20:03:57 FNo. Len. Field Value +20:03:57 ============================================================================ +20:03:57 [ 1] [ 4] [0200] +20:03:57 [ 2] [ 16] [1808930600033625] +20:03:57 [ 3] [ 6] [011000] +20:03:57 [ 4] [ 12] [000050000000] +20:03:57 [ 7] [ 10] [0320200351] +20:03:57 [ 11] [ 6] [840419] +20:03:57 [ 12] [ 6] [200351] +20:03:57 [ 13] [ 4] [0320] +20:03:57 [ 15] [ 4] [0320] +20:03:57 [ 18] [ 4] [6011] +20:03:57 [ 22] [ 3] [900] +20:03:57 [ 25] [ 2] [02] +20:03:57 [ 28] [ 9] [D00002000] +20:03:57 [ 32] [ 6] [621354] +20:03:57 [ 35] [ 27] [1808930600033625=1803500063] +20:03:57 [ 37] [ 12] [507905150632] +20:03:57 [ 41] [ 8] [09001900] +20:03:57 [ 42] [ 15] [NATIVE ] +20:03:57 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +20:03:57 [ 49] [ 3] [418] +20:03:57 [ 52] [ 16] [4F49BB6B0F2144AD] +20:03:57 ============================================================================ +20:03:57 + + +waiting on router queue for slot.... +20:03:57 Sending to : <2> +20:03:57 ============================================================================ +20:04:00 ============================================================================ +20:04:00 Slot Id : <448> +20:04:00 Transaction Type : RESPONSE +20:04:00 Received From : +20:04:00 ============================================================================ +20:04:00 FNo. Len. Field Value +20:04:00 ============================================================================ +20:04:00 [ 1] [ 4] [0210] +20:04:00 [ 2] [ 16] [1808930600033625] +20:04:00 [ 3] [ 6] [011000] +20:04:00 [ 4] [ 12] [000050000000] +20:04:00 [ 6] [ 12] [000050000000] +20:04:00 [ 7] [ 10] [0320200351] +20:04:00 [ 11] [ 6] [840419] +20:04:00 [ 12] [ 6] [200351] +20:04:00 [ 13] [ 4] [0320] +20:04:00 [ 18] [ 4] [6011] +20:04:00 [ 19] [ 3] [418] +20:04:00 [ 22] [ 3] [021] +20:04:00 [ 28] [ 9] [D00002000] +20:04:00 [ 32] [ 6] [621354] +20:04:00 [ 35] [ 27] [1808930600033625=1803500063] +20:04:00 [ 37] [ 12] [507905150632] +20:04:00 [ 39] [ 2] [55] +20:04:00 [ 41] [ 8] [09001900] +20:04:00 [ 49] [ 3] [418] +20:04:00 [ 51] [ 3] [418] +20:04:00 [ 52] [ 16] [4F49BB6B0F2144AD] +20:04:00 ============================================================================ +20:04:00 Sending to : +20:04:00 ============================================================================ +20:04:00 + + +waiting on router queue for slot.... +20:04:01 ============================================================================ +20:04:01 Slot Id : <448> +20:04:01 Transaction Type : RESPONSE +20:04:01 Received From : +20:04:01 ============================================================================ +20:04:01 FNo. Len. Field Value +20:04:01 ============================================================================ +20:04:01 [ 1] [ 4] [0210] +20:04:01 [ 2] [ 16] [1808930600033625] +20:04:01 [ 3] [ 6] [011000] +20:04:01 [ 4] [ 12] [000050000000] +20:04:01 [ 6] [ 12] [000050000000] +20:04:01 [ 7] [ 10] [0320200351] +20:04:01 [ 11] [ 6] [840419] +20:04:01 [ 12] [ 6] [200351] +20:04:01 [ 13] [ 4] [0320] +20:04:01 [ 18] [ 4] [6011] +20:04:01 [ 19] [ 3] [418] +20:04:01 [ 22] [ 3] [021] +20:04:01 [ 28] [ 9] [D00002000] +20:04:01 [ 32] [ 6] [621354] +20:04:01 [ 35] [ 27] [1808930600033625=1803500063] +20:04:01 [ 37] [ 12] [507905150632] +20:04:01 [ 39] [ 2] [55] +20:04:01 [ 41] [ 8] [09001900] +20:04:01 [ 49] [ 3] [418] +20:04:01 [ 51] [ 3] [418] +20:04:01 [ 52] [ 16] [4F49BB6B0F2144AD] +20:04:01 ============================================================================ +20:04:01 Calculate Source COMM Id = 0 +20:04:01 ============================================================================ +20:04:01 + + +waiting on router queue for slot.... +20:04:10 ============================================================================ +20:04:10 Slot Id : <479> +20:04:10 Transaction Type : REQUEST +20:04:10 Received From : +20:04:10 ============================================================================ +20:04:10 FNo. Len. Field Value +20:04:10 ============================================================================ +20:04:10 [ 1] [ 4] [0800] +20:04:10 [ 7] [ 10] [0320010316] +20:04:10 [ 11] [ 6] [158109] +20:04:10 [ 70] [ 3] [301] +20:04:10 ============================================================================ +20:04:10 + + +waiting on router queue for slot.... +20:04:10 Sending to : +20:04:10 ============================================================================ +20:04:10 ============================================================================ +20:04:10 Slot Id : <479> +20:04:10 Transaction Type : RESPONSE +20:04:10 Received From : +20:04:10 ============================================================================ +20:04:10 FNo. Len. Field Value +20:04:10 ============================================================================ +20:04:10 [ 1] [ 4] [0810] +20:04:10 [ 7] [ 10] [0320010316] +20:04:10 [ 11] [ 6] [158109] +20:04:10 [ 39] [ 2] [00] +20:04:10 [ 70] [ 3] [301] +20:04:10 ============================================================================ +20:04:10 Calculate Source COMM Id = 2 +20:04:10 ============================================================================ +20:04:10 + + +waiting on router queue for slot.... +20:04:21 ============================================================================ +20:04:21 Slot Id : <0> +20:04:21 Transaction Type : REQUEST +20:04:21 Received From : +20:04:21 ============================================================================ +20:04:21 FNo. Len. Field Value +20:04:21 ============================================================================ +20:04:21 [ 1] [ 4] [0800] +20:04:21 [ 7] [ 10] [0320010327] +20:04:21 [ 11] [ 6] [158110] +20:04:21 [ 70] [ 3] [301] +20:04:21 ============================================================================ +20:04:21 + + +waiting on router queue for slot.... +20:04:21 Sending to : +20:04:21 ============================================================================ +20:04:21 ============================================================================ +20:04:21 Slot Id : <0> +20:04:21 Transaction Type : RESPONSE +20:04:21 Received From : +20:04:21 ============================================================================ +20:04:21 FNo. Len. Field Value +20:04:21 ============================================================================ +20:04:21 [ 1] [ 4] [0810] +20:04:21 [ 7] [ 10] [0320010327] +20:04:21 [ 11] [ 6] [158110] +20:04:21 [ 39] [ 2] [00] +20:04:21 [ 70] [ 3] [301] +20:04:21 ============================================================================ +20:04:21 Calculate Source COMM Id = 2 +20:04:21 ============================================================================ +20:04:21 + + +waiting on router queue for slot.... +20:04:26 ============================================================================ +20:04:26 Slot Id : <4> +20:04:26 Transaction Type : REQUEST +20:04:26 Received From : +20:04:26 ============================================================================ +20:04:26 FNo. Len. Field Value +20:04:26 ============================================================================ +20:04:26 [ 1] [ 4] [0200] +20:04:26 [ 2] [ 16] [1808930600033625] +20:04:26 [ 3] [ 6] [011000] +20:04:26 [ 4] [ 12] [000050000000] +20:04:26 [ 7] [ 10] [0320200421] +20:04:26 [ 11] [ 6] [840473] +20:04:26 [ 12] [ 6] [200421] +20:04:26 [ 13] [ 4] [0320] +20:04:26 [ 15] [ 4] [0320] +20:04:26 [ 18] [ 4] [6011] +20:04:26 [ 22] [ 3] [900] +20:04:26 [ 25] [ 2] [02] +20:04:26 [ 28] [ 9] [D00002000] +20:04:26 [ 32] [ 6] [621354] +20:04:26 [ 35] [ 27] [1808930600033625=1803500063] +20:04:26 [ 37] [ 12] [507905150634] +20:04:26 [ 41] [ 8] [09001900] +20:04:26 [ 42] [ 15] [NATIVE ] +20:04:26 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +20:04:26 [ 49] [ 3] [418] +20:04:26 [ 52] [ 16] [ED159B9FBA2EDCAF] +20:04:26 ============================================================================ +20:04:26 + + +waiting on router queue for slot.... +20:04:26 Sending to : +20:04:26 ============================================================================ +20:04:26 Sending to : +20:04:26 ============================================================================ +20:04:27 ============================================================================ +20:04:27 Slot Id : <4> +20:04:27 Transaction Type : REQUEST +20:04:27 Received From : +20:04:27 ============================================================================ +20:04:27 FNo. Len. Field Value +20:04:27 ============================================================================ +20:04:27 [ 1] [ 4] [0200] +20:04:27 [ 2] [ 16] [1808930600033625] +20:04:27 [ 3] [ 6] [011000] +20:04:27 [ 4] [ 12] [000050000000] +20:04:27 [ 7] [ 10] [0320200421] +20:04:27 [ 11] [ 6] [840473] +20:04:27 [ 12] [ 6] [200421] +20:04:27 [ 13] [ 4] [0320] +20:04:27 [ 15] [ 4] [0320] +20:04:27 [ 18] [ 4] [6011] +20:04:27 [ 22] [ 3] [900] +20:04:27 [ 25] [ 2] [02] +20:04:27 [ 28] [ 9] [D00002000] +20:04:27 [ 32] [ 6] [621354] +20:04:27 [ 35] [ 27] [1808930600033625=1803500063] +20:04:27 [ 37] [ 12] [507905150634] +20:04:27 [ 41] [ 8] [09001900] +20:04:27 [ 42] [ 15] [NATIVE ] +20:04:27 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +20:04:27 [ 49] [ 3] [418] +20:04:27 [ 52] [ 16] [ED159B9FBA2EDCAF] +20:04:27 ============================================================================ +20:04:27 + + +waiting on router queue for slot.... +20:04:27 Sending to : +20:04:27 ============================================================================ +20:04:27 ============================================================================ +20:04:27 Slot Id : <4> +20:04:27 Transaction Type : REQUEST +20:04:27 Received From : +20:04:27 ============================================================================ +20:04:27 FNo. Len. Field Value +20:04:27 ============================================================================ +20:04:27 [ 1] [ 4] [0200] +20:04:27 [ 2] [ 16] [1808930600033625] +20:04:27 [ 3] [ 6] [011000] +20:04:27 [ 4] [ 12] [000050000000] +20:04:27 [ 7] [ 10] [0320200421] +20:04:27 [ 11] [ 6] [840473] +20:04:27 [ 12] [ 6] [200421] +20:04:27 [ 13] [ 4] [0320] +20:04:27 [ 15] [ 4] [0320] +20:04:27 [ 18] [ 4] [6011] +20:04:27 [ 22] [ 3] [900] +20:04:27 [ 25] [ 2] [02] +20:04:27 [ 28] [ 9] [D00002000] +20:04:27 [ 32] [ 6] [621354] +20:04:27 [ 35] [ 27] [1808930600033625=1803500063] +20:04:27 [ 37] [ 12] [507905150634] +20:04:27 [ 41] [ 8] [09001900] +20:04:27 [ 42] [ 15] [NATIVE ] +20:04:27 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +20:04:27 [ 49] [ 3] [418] +20:04:27 [ 52] [ 16] [4F49BB6B0F2144AD] +20:04:27 ============================================================================ +20:04:27 + + +waiting on router queue for slot.... +20:04:27 Sending to : <2> +20:04:27 ============================================================================ +20:04:28 ============================================================================ +20:04:28 Slot Id : <4> +20:04:28 Transaction Type : RESPONSE +20:04:28 Received From : +20:04:28 ============================================================================ +20:04:28 FNo. Len. Field Value +20:04:28 ============================================================================ +20:04:28 [ 1] [ 4] [0210] +20:04:28 [ 2] [ 16] [1808930600033625] +20:04:28 [ 3] [ 6] [011000] +20:04:28 [ 4] [ 12] [000050000000] +20:04:28 [ 6] [ 12] [000050000000] +20:04:28 [ 7] [ 10] [0320200421] +20:04:28 [ 11] [ 6] [840473] +20:04:28 [ 12] [ 6] [200421] +20:04:28 [ 13] [ 4] [0320] +20:04:28 [ 18] [ 4] [6011] +20:04:28 [ 19] [ 3] [418] +20:04:28 [ 22] [ 3] [021] +20:04:28 [ 28] [ 9] [D00002000] +20:04:28 [ 32] [ 6] [621354] +20:04:28 [ 35] [ 27] [1808930600033625=1803500063] +20:04:28 [ 37] [ 12] [507905150634] +20:04:28 [ 39] [ 2] [55] +20:04:28 [ 41] [ 8] [09001900] +20:04:28 [ 49] [ 3] [418] +20:04:28 [ 51] [ 3] [418] +20:04:28 [ 52] [ 16] [4F49BB6B0F2144AD] +20:04:28 ============================================================================ +20:04:28 Sending to : +20:04:28 ============================================================================ +20:04:28 + + +waiting on router queue for slot.... +20:04:29 ============================================================================ +20:04:29 Slot Id : <2> +20:04:29 Transaction Type : REQUEST +20:04:29 Received From : +20:04:29 ============================================================================ +20:04:29 FNo. Len. Field Value +20:04:29 ============================================================================ +20:04:29 [ 1] [ 4] [0800] +20:04:29 [ 2] [ 5] [02531] +20:04:29 [ 3] [ 6] [579208] +20:04:29 [ 7] [ 10] [0320130429] +20:04:29 [ 11] [ 6] [807577] +20:04:29 [ 15] [ 10] [0320130429] +20:04:29 [ 37] [ 11] [57920807577] +20:04:29 [ 70] [ 3] [001] +20:04:29 ============================================================================ +20:04:29 + + +waiting on router queue for slot.... +20:04:29 ============================================================================ +20:04:29 Slot Id : <2> +20:04:29 Transaction Type : RESPONSE +20:04:29 Received From : +20:04:29 ============================================================================ +20:04:29 FNo. Len. Field Value +20:04:29 ============================================================================ +20:04:29 [ 1] [ 4] [0810] +20:04:29 [ 7] [ 10] [0320130429] +20:04:29 [ 11] [ 6] [807577] +20:04:29 [ 15] [ 4] [0320] +20:04:29 [ 37] [ 12] [57920807577] +20:04:29 [ 39] [ 2] [00] +20:04:29 [ 70] [ 3] [001] +20:04:29 ============================================================================ +20:04:29 Sending to : +20:04:29 ============================================================================ +20:04:29 + + +waiting on router queue for slot.... +20:04:30 ============================================================================ +20:04:30 Slot Id : <4> +20:04:30 Transaction Type : RESPONSE +20:04:30 Received From : +20:04:30 ============================================================================ +20:04:30 FNo. Len. Field Value +20:04:30 ============================================================================ +20:04:30 [ 1] [ 4] [0210] +20:04:30 [ 2] [ 16] [1808930600033625] +20:04:30 [ 3] [ 6] [011000] +20:04:30 [ 4] [ 12] [000050000000] +20:04:30 [ 6] [ 12] [000050000000] +20:04:30 [ 7] [ 10] [0320200421] +20:04:30 [ 11] [ 6] [840473] +20:04:30 [ 12] [ 6] [200421] +20:04:30 [ 13] [ 4] [0320] +20:04:30 [ 18] [ 4] [6011] +20:04:30 [ 19] [ 3] [418] +20:04:30 [ 22] [ 3] [021] +20:04:30 [ 28] [ 9] [D00002000] +20:04:30 [ 32] [ 6] [621354] +20:04:30 [ 35] [ 27] [1808930600033625=1803500063] +20:04:30 [ 37] [ 12] [507905150634] +20:04:30 [ 39] [ 2] [55] +20:04:30 [ 41] [ 8] [09001900] +20:04:30 [ 49] [ 3] [418] +20:04:30 [ 51] [ 3] [418] +20:04:30 [ 52] [ 16] [4F49BB6B0F2144AD] +20:04:30 ============================================================================ +20:04:30 Calculate Source COMM Id = 0 +20:04:30 ============================================================================ +20:04:30 + + +waiting on router queue for slot.... +20:04:40 ============================================================================ +20:04:40 Slot Id : <493> +20:04:40 Transaction Type : REQUEST +20:04:40 Received From : +20:04:40 ============================================================================ +20:04:40 FNo. Len. Field Value +20:04:40 ============================================================================ +20:04:40 [ 1] [ 4] [0800] +20:04:40 [ 7] [ 10] [0320010347] +20:04:40 [ 11] [ 6] [158111] +20:04:40 [ 70] [ 3] [301] +20:04:40 ============================================================================ +20:04:40 + + +waiting on router queue for slot.... +20:04:40 Sending to : +20:04:40 ============================================================================ +20:04:40 ============================================================================ +20:04:40 Slot Id : <493> +20:04:40 Transaction Type : RESPONSE +20:04:40 Received From : +20:04:40 ============================================================================ +20:04:40 FNo. Len. Field Value +20:04:40 ============================================================================ +20:04:40 [ 1] [ 4] [0810] +20:04:40 [ 7] [ 10] [0320010347] +20:04:40 [ 11] [ 6] [158111] +20:04:40 [ 39] [ 2] [00] +20:04:40 [ 70] [ 3] [301] +20:04:40 ============================================================================ +20:04:40 Calculate Source COMM Id = 2 +20:04:40 ============================================================================ +20:04:40 + + +waiting on router queue for slot.... +20:04:42 ============================================================================ +20:04:42 Slot Id : <473> +20:04:42 Transaction Type : REQUEST +20:04:42 Received From : +20:04:42 ============================================================================ +20:04:42 FNo. Len. Field Value +20:04:42 ============================================================================ +20:04:42 [ 1] [ 4] [0800] +20:04:42 [ 7] [ 10] [0321031631] +20:04:42 [ 11] [ 6] [201631] +20:04:42 [ 37] [ 12] [57920201631] +20:04:42 [ 70] [ 3] [301] +20:04:42 ============================================================================ +20:04:42 + + +waiting on router queue for slot.... +20:04:42 Sending to : +20:04:42 ============================================================================ +20:04:42 ============================================================================ +20:04:42 Slot Id : <473> +20:04:42 Transaction Type : RESPONSE +20:04:42 Received From : +20:04:42 ============================================================================ +20:04:42 FNo. Len. Field Value +20:04:42 ============================================================================ +20:04:42 [ 1] [ 4] [0810] +20:04:42 [ 7] [ 10] [0321031631] +20:04:42 [ 11] [ 6] [201631] +20:04:42 [ 37] [ 12] [579202016310] +20:04:42 [ 39] [ 2] [00] +20:04:42 [ 70] [ 3] [810] +20:04:42 ============================================================================ +20:04:42 Calculate Source COMM Id = 6 +20:04:42 ============================================================================ +20:04:42 + + +waiting on router queue for slot.... +20:04:51 ============================================================================ +20:04:51 Slot Id : <498> +20:04:51 Transaction Type : REQUEST +20:04:51 Received From : +20:04:51 ============================================================================ +20:04:51 FNo. Len. Field Value +20:04:51 ============================================================================ +20:04:51 [ 1] [ 4] [0800] +20:04:51 [ 7] [ 10] [0320010357] +20:04:51 [ 11] [ 6] [158112] +20:04:51 [ 70] [ 3] [301] +20:04:51 ============================================================================ +20:04:51 + + +waiting on router queue for slot.... +20:04:51 Sending to : +20:04:51 ============================================================================ +20:04:51 ============================================================================ +20:04:51 Slot Id : <498> +20:04:51 Transaction Type : RESPONSE +20:04:51 Received From : +20:04:51 ============================================================================ +20:04:51 FNo. Len. Field Value +20:04:51 ============================================================================ +20:04:51 [ 1] [ 4] [0810] +20:04:51 [ 7] [ 10] [0320010357] +20:04:51 [ 11] [ 6] [158112] +20:04:51 [ 39] [ 2] [00] +20:04:51 [ 70] [ 3] [301] +20:04:51 ============================================================================ +20:04:51 Calculate Source COMM Id = 2 +20:04:51 ============================================================================ +20:04:51 + + +waiting on router queue for slot.... +20:04:53 ============================================================================ +20:04:53 Slot Id : <1> +20:04:53 Transaction Type : REQUEST +20:04:53 Received From : +20:04:53 ============================================================================ +20:04:53 FNo. Len. Field Value +20:04:53 ============================================================================ +20:04:53 [ 1] [ 4] [0200] +20:04:53 [ 2] [ 16] [1808930600033625] +20:04:53 [ 3] [ 6] [011000] +20:04:53 [ 4] [ 12] [000050000000] +20:04:53 [ 7] [ 10] [0320200447] +20:04:53 [ 11] [ 6] [840502] +20:04:53 [ 12] [ 6] [200447] +20:04:53 [ 13] [ 4] [0320] +20:04:53 [ 15] [ 4] [0320] +20:04:53 [ 18] [ 4] [6011] +20:04:53 [ 22] [ 3] [900] +20:04:53 [ 25] [ 2] [02] +20:04:53 [ 28] [ 9] [D00002000] +20:04:53 [ 32] [ 6] [621354] +20:04:53 [ 35] [ 27] [1808930600033625=1803500063] +20:04:53 [ 37] [ 12] [507905150636] +20:04:53 [ 41] [ 8] [09001900] +20:04:53 [ 42] [ 15] [NATIVE ] +20:04:53 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +20:04:53 [ 49] [ 3] [418] +20:04:53 [ 52] [ 16] [86C411621A2EC13E] +20:04:53 ============================================================================ +20:04:53 + + +waiting on router queue for slot.... +20:04:53 Sending to : +20:04:53 ============================================================================ +20:04:53 Sending to : +20:04:53 ============================================================================ +20:04:53 ============================================================================ +20:04:53 Slot Id : <1> +20:04:53 Transaction Type : REQUEST +20:04:53 Received From : +20:04:53 ============================================================================ +20:04:53 FNo. Len. Field Value +20:04:53 ============================================================================ +20:04:53 [ 1] [ 4] [0200] +20:04:53 [ 2] [ 16] [1808930600033625] +20:04:53 [ 3] [ 6] [011000] +20:04:53 [ 4] [ 12] [000050000000] +20:04:53 [ 7] [ 10] [0320200447] +20:04:53 [ 11] [ 6] [840502] +20:04:53 [ 12] [ 6] [200447] +20:04:53 [ 13] [ 4] [0320] +20:04:53 [ 15] [ 4] [0320] +20:04:53 [ 18] [ 4] [6011] +20:04:53 [ 22] [ 3] [900] +20:04:53 [ 25] [ 2] [02] +20:04:53 [ 28] [ 9] [D00002000] +20:04:53 [ 32] [ 6] [621354] +20:04:53 [ 35] [ 27] [1808930600033625=1803500063] +20:04:53 [ 37] [ 12] [507905150636] +20:04:53 [ 41] [ 8] [09001900] +20:04:53 [ 42] [ 15] [NATIVE ] +20:04:53 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +20:04:53 [ 49] [ 3] [418] +20:04:53 [ 52] [ 16] [86C411621A2EC13E] +20:04:53 ============================================================================ +20:04:53 + + +waiting on router queue for slot.... +20:04:53 Sending to : +20:04:53 ============================================================================ +20:04:53 ============================================================================ +20:04:53 Slot Id : <1> +20:04:53 Transaction Type : REQUEST +20:04:53 Received From : +20:04:53 ============================================================================ +20:04:53 FNo. Len. Field Value +20:04:53 ============================================================================ +20:04:53 [ 1] [ 4] [0200] +20:04:53 [ 2] [ 16] [1808930600033625] +20:04:53 [ 3] [ 6] [011000] +20:04:53 [ 4] [ 12] [000050000000] +20:04:53 [ 7] [ 10] [0320200447] +20:04:53 [ 11] [ 6] [840502] +20:04:53 [ 12] [ 6] [200447] +20:04:53 [ 13] [ 4] [0320] +20:04:53 [ 15] [ 4] [0320] +20:04:53 [ 18] [ 4] [6011] +20:04:53 [ 22] [ 3] [900] +20:04:53 [ 25] [ 2] [02] +20:04:53 [ 28] [ 9] [D00002000] +20:04:53 [ 32] [ 6] [621354] +20:04:53 [ 35] [ 27] [1808930600033625=1803500063] +20:04:53 [ 37] [ 12] [507905150636] +20:04:53 [ 41] [ 8] [09001900] +20:04:53 [ 42] [ 15] [NATIVE ] +20:04:53 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +20:04:53 [ 49] [ 3] [418] +20:04:53 [ 52] [ 16] [3BB3F50B71990660] +20:04:53 ============================================================================ +20:04:53 + + +waiting on router queue for slot.... +20:04:53 Sending to : <2> +20:04:53 ============================================================================ +20:04:55 ============================================================================ +20:04:55 Slot Id : <1> +20:04:55 Transaction Type : RESPONSE +20:04:55 Received From : +20:04:55 ============================================================================ +20:04:55 FNo. Len. Field Value +20:04:55 ============================================================================ +20:04:55 [ 1] [ 4] [0210] +20:04:55 [ 2] [ 16] [1808930600033625] +20:04:55 [ 3] [ 6] [011000] +20:04:55 [ 4] [ 12] [000050000000] +20:04:55 [ 6] [ 12] [000050000000] +20:04:55 [ 7] [ 10] [0320200447] +20:04:55 [ 11] [ 6] [840502] +20:04:55 [ 12] [ 6] [200447] +20:04:55 [ 13] [ 4] [0320] +20:04:55 [ 18] [ 4] [6011] +20:04:55 [ 19] [ 3] [418] +20:04:55 [ 22] [ 3] [021] +20:04:55 [ 28] [ 9] [D00002000] +20:04:55 [ 32] [ 6] [621354] +20:04:55 [ 35] [ 27] [1808930600033625=1803500063] +20:04:55 [ 37] [ 12] [507905150636] +20:04:55 [ 39] [ 2] [75] +20:04:55 [ 41] [ 8] [09001900] +20:04:55 [ 49] [ 3] [418] +20:04:55 [ 51] [ 3] [418] +20:04:55 [ 52] [ 16] [3BB3F50B71990660] +20:04:55 ============================================================================ +20:04:55 Sending to : +20:04:55 ============================================================================ +20:04:55 + + +waiting on router queue for slot.... +20:04:56 ============================================================================ +20:04:56 Slot Id : <1> +20:04:56 Transaction Type : RESPONSE +20:04:56 Received From : +20:04:56 ============================================================================ +20:04:56 FNo. Len. Field Value +20:04:56 ============================================================================ +20:04:56 [ 1] [ 4] [0210] +20:04:56 [ 2] [ 16] [1808930600033625] +20:04:56 [ 3] [ 6] [011000] +20:04:56 [ 4] [ 12] [000050000000] +20:04:56 [ 6] [ 12] [000050000000] +20:04:56 [ 7] [ 10] [0320200447] +20:04:56 [ 11] [ 6] [840502] +20:04:56 [ 12] [ 6] [200447] +20:04:56 [ 13] [ 4] [0320] +20:04:56 [ 18] [ 4] [6011] +20:04:56 [ 19] [ 3] [418] +20:04:56 [ 22] [ 3] [021] +20:04:56 [ 28] [ 9] [D00002000] +20:04:56 [ 32] [ 6] [621354] +20:04:56 [ 35] [ 27] [1808930600033625=1803500063] +20:04:56 [ 37] [ 12] [507905150636] +20:04:56 [ 39] [ 2] [75] +20:04:56 [ 41] [ 8] [09001900] +20:04:56 [ 49] [ 3] [418] +20:04:56 [ 51] [ 3] [418] +20:04:56 [ 52] [ 16] [3BB3F50B71990660] +20:04:56 ============================================================================ +20:04:56 Calculate Source COMM Id = 0 +20:04:56 ============================================================================ +20:04:56 + + +waiting on router queue for slot.... +20:04:57 ============================================================================ +20:04:57 Slot Id : <476> +20:04:57 Transaction Type : REQUEST +20:04:57 Received From : +20:04:57 ============================================================================ +20:04:57 FNo. Len. Field Value +20:04:57 ============================================================================ +20:04:57 [ 1] [ 4] [0200] +20:04:57 [ 2] [ 16] [6213544000678901] +20:04:57 [ 3] [ 6] [302000] +20:04:57 [ 4] [ 12] [000000000000] +20:04:57 [ 7] [ 10] [0320200246] +20:04:57 [ 11] [ 6] [956815] +20:04:57 [ 12] [ 6] [200246] +20:04:57 [ 13] [ 4] [0320] +20:04:57 [ 15] [ 4] [0320] +20:04:57 [ 18] [ 4] [6011] +20:04:57 [ 19] [ 3] [418] +20:04:57 [ 22] [ 3] [021] +20:04:57 [ 25] [ 2] [01] +20:04:57 [ 28] [ 9] [D00000000] +20:04:57 [ 32] [ 6] [668899] +20:04:57 [ 35] [ 32] [6213544000678901=491212017890455] +20:04:57 [ 37] [ 12] [507901955725] +20:04:57 [ 41] [ 8] [03020018] +20:04:57 [ 42] [ 15] [APT ] +20:04:57 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:04:57 [ 49] [ 3] [418] +20:04:57 [ 52] [ 16] [BFEDE2A4BDA298FC] +20:04:57 ============================================================================ +20:04:57 + + +waiting on router queue for slot.... +20:04:57 Sending to : +20:04:57 ============================================================================ +20:04:57 Sending to : +20:04:57 ============================================================================ +20:04:57 ============================================================================ +20:04:57 Slot Id : <489> +20:04:57 Transaction Type : REQUEST +20:04:57 Received From : +20:04:57 ============================================================================ +20:04:57 FNo. Len. Field Value +20:04:57 ============================================================================ +20:04:57 [ 1] [ 4] [0800] +20:04:57 [ 7] [ 10] [0320131242] +20:04:57 [ 11] [ 6] [005588] +20:04:57 [ 37] [ 12] [57920005588] +20:04:57 [ 70] [ 3] [301] +20:04:57 ============================================================================ +20:04:57 + + +waiting on router queue for slot.... +20:04:57 Sending to : +20:04:57 ============================================================================ +20:04:57 ============================================================================ +20:04:57 Slot Id : <489> +20:04:57 Transaction Type : RESPONSE +20:04:57 Received From : +20:04:57 ============================================================================ +20:04:57 FNo. Len. Field Value +20:04:57 ============================================================================ +20:04:57 [ 1] [ 4] [0810] +20:04:57 [ 7] [ 10] [0320131242] +20:04:57 [ 11] [ 6] [005588] +20:04:57 [ 37] [ 12] [579200055880] +20:04:57 [ 39] [ 2] [00] +20:04:57 [ 70] [ 3] [810] +20:04:57 ============================================================================ +20:04:57 Calculate Source COMM Id = 1 +20:04:57 ============================================================================ +20:04:57 + + +waiting on router queue for slot.... +20:04:57 ============================================================================ +20:04:57 Slot Id : <476> +20:04:57 Transaction Type : REQUEST +20:04:57 Received From : +20:04:57 ============================================================================ +20:04:57 FNo. Len. Field Value +20:04:57 ============================================================================ +20:04:57 [ 1] [ 4] [0200] +20:04:57 [ 2] [ 16] [6213544000678901] +20:04:57 [ 3] [ 6] [302000] +20:04:57 [ 4] [ 12] [000000000000] +20:04:57 [ 7] [ 10] [0320200246] +20:04:57 [ 11] [ 6] [956815] +20:04:57 [ 12] [ 6] [200246] +20:04:57 [ 13] [ 4] [0320] +20:04:57 [ 15] [ 4] [0320] +20:04:57 [ 18] [ 4] [6011] +20:04:57 [ 19] [ 3] [418] +20:04:57 [ 22] [ 3] [021] +20:04:57 [ 25] [ 2] [01] +20:04:57 [ 28] [ 9] [D00000000] +20:04:57 [ 32] [ 6] [668899] +20:04:57 [ 35] [ 32] [6213544000678901=491212017890455] +20:04:57 [ 37] [ 12] [507901955725] +20:04:57 [ 41] [ 8] [03020018] +20:04:57 [ 42] [ 15] [APT ] +20:04:57 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:04:57 [ 49] [ 3] [418] +20:04:57 [ 52] [ 16] [BFEDE2A4BDA298FC] +20:04:57 ============================================================================ +20:04:57 + + +waiting on router queue for slot.... +20:04:57 Sending to : +20:04:57 ============================================================================ +20:04:57 ============================================================================ +20:04:57 Slot Id : <476> +20:04:57 Transaction Type : REQUEST +20:04:57 Received From : +20:04:57 ============================================================================ +20:04:57 FNo. Len. Field Value +20:04:57 ============================================================================ +20:04:57 [ 1] [ 4] [0200] +20:04:57 [ 2] [ 16] [6213544000678901] +20:04:57 [ 3] [ 6] [302000] +20:04:57 [ 4] [ 12] [000000000000] +20:04:57 [ 7] [ 10] [0320200246] +20:04:57 [ 11] [ 6] [956815] +20:04:57 [ 12] [ 6] [200246] +20:04:57 [ 13] [ 4] [0320] +20:04:57 [ 15] [ 4] [0320] +20:04:57 [ 18] [ 4] [6011] +20:04:57 [ 19] [ 3] [418] +20:04:57 [ 22] [ 3] [021] +20:04:57 [ 25] [ 2] [01] +20:04:57 [ 28] [ 9] [D00000000] +20:04:57 [ 32] [ 6] [668899] +20:04:57 [ 35] [ 32] [6213544000678901=491212017890455] +20:04:57 [ 37] [ 12] [507901955725] +20:04:57 [ 41] [ 8] [03020018] +20:04:57 [ 42] [ 15] [APT ] +20:04:57 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:04:57 [ 49] [ 3] [418] +20:04:57 [ 52] [ 16] [2464ACBCDA5E258C] +20:04:57 ============================================================================ +20:04:57 + + +waiting on router queue for slot.... +20:04:57 Sending to : <0> +20:04:57 ============================================================================ +20:04:57 ============================================================================ +20:04:57 Slot Id : <476> +20:04:57 Transaction Type : RESPONSE +20:04:57 Received From : +20:04:57 ============================================================================ +20:04:57 FNo. Len. Field Value +20:04:57 ============================================================================ +20:04:57 [ 1] [ 4] [0210] +20:04:57 [ 2] [ 16] [6213544000678901] +20:04:57 [ 3] [ 6] [302000] +20:04:57 [ 4] [ 12] [000000000000] +20:04:57 [ 7] [ 10] [0320200246] +20:04:57 [ 11] [ 6] [956815] +20:04:57 [ 12] [ 6] [200246] +20:04:57 [ 13] [ 4] [0320] +20:04:57 [ 15] [ 4] [0320] +20:04:57 [ 18] [ 4] [6011] +20:04:57 [ 19] [ 3] [418] +20:04:57 [ 32] [ 6] [668899] +20:04:57 [ 35] [ 32] [6213544000678901=491212017890455] +20:04:57 [ 37] [ 12] [507901955725] +20:04:57 [ 38] [ 6] [100735] +20:04:57 [ 39] [ 2] [00] +20:04:57 [ 41] [ 8] [03020018] +20:04:57 [ 49] [ 3] [418] +20:04:57 [ 54] [ 40] [2001418C0000573436022002418C000057343602] +20:04:57 ============================================================================ +20:04:57 Sending to : +20:04:57 ============================================================================ +20:04:57 + + +waiting on router queue for slot.... +20:04:58 ============================================================================ +20:04:58 Slot Id : <476> +20:04:58 Transaction Type : RESPONSE +20:04:58 Received From : +20:04:58 ============================================================================ +20:04:58 FNo. Len. Field Value +20:04:58 ============================================================================ +20:04:58 [ 1] [ 4] [0210] +20:04:58 [ 2] [ 16] [6213544000678901] +20:04:58 [ 3] [ 6] [302000] +20:04:58 [ 4] [ 12] [000000000000] +20:04:58 [ 7] [ 10] [0320200246] +20:04:58 [ 11] [ 6] [956815] +20:04:58 [ 12] [ 6] [200246] +20:04:58 [ 13] [ 4] [0320] +20:04:58 [ 15] [ 4] [0320] +20:04:58 [ 18] [ 4] [6011] +20:04:58 [ 19] [ 3] [418] +20:04:58 [ 32] [ 6] [668899] +20:04:58 [ 35] [ 32] [6213544000678901=491212017890455] +20:04:58 [ 37] [ 12] [507901955725] +20:04:58 [ 38] [ 6] [100735] +20:04:58 [ 39] [ 2] [00] +20:04:58 [ 41] [ 8] [03020018] +20:04:58 [ 49] [ 3] [418] +20:04:58 [ 54] [ 40] [2001418C0000573436022002418C000057343602] +20:04:58 ============================================================================ +20:04:58 Calculate Source COMM Id = 4 +20:04:58 ============================================================================ +20:04:58 + + +waiting on router queue for slot.... +20:05:07 ============================================================================ +20:05:07 Slot Id : <477> +20:05:07 Transaction Type : REQUEST +20:05:07 Received From : +20:05:07 ============================================================================ +20:05:07 FNo. Len. Field Value +20:05:07 ============================================================================ +20:05:07 [ 1] [ 4] [0800] +20:05:07 [ 7] [ 10] [0320010413] +20:05:07 [ 11] [ 6] [158113] +20:05:07 [ 70] [ 3] [301] +20:05:07 ============================================================================ +20:05:07 + + +waiting on router queue for slot.... +20:05:07 Sending to : +20:05:07 ============================================================================ +20:05:07 ============================================================================ +20:05:07 Slot Id : <477> +20:05:07 Transaction Type : RESPONSE +20:05:07 Received From : +20:05:07 ============================================================================ +20:05:07 FNo. Len. Field Value +20:05:07 ============================================================================ +20:05:07 [ 1] [ 4] [0810] +20:05:07 [ 7] [ 10] [0320010413] +20:05:07 [ 11] [ 6] [158113] +20:05:07 [ 39] [ 2] [00] +20:05:07 [ 70] [ 3] [301] +20:05:07 ============================================================================ +20:05:07 Calculate Source COMM Id = 2 +20:05:07 ============================================================================ +20:05:07 + + +waiting on router queue for slot.... +20:05:23 ============================================================================ +20:05:23 Slot Id : <485> +20:05:23 Transaction Type : REQUEST +20:05:23 Received From : +20:05:23 ============================================================================ +20:05:23 FNo. Len. Field Value +20:05:23 ============================================================================ +20:05:23 [ 1] [ 4] [0800] +20:05:23 [ 7] [ 10] [0320010430] +20:05:23 [ 11] [ 6] [158114] +20:05:23 [ 70] [ 3] [301] +20:05:23 ============================================================================ +20:05:23 + + +waiting on router queue for slot.... +20:05:23 Sending to : +20:05:23 ============================================================================ +20:05:23 ============================================================================ +20:05:23 Slot Id : <485> +20:05:23 Transaction Type : RESPONSE +20:05:23 Received From : +20:05:23 ============================================================================ +20:05:23 FNo. Len. Field Value +20:05:23 ============================================================================ +20:05:23 [ 1] [ 4] [0810] +20:05:23 [ 7] [ 10] [0320010430] +20:05:23 [ 11] [ 6] [158114] +20:05:23 [ 39] [ 2] [00] +20:05:23 [ 70] [ 3] [301] +20:05:23 ============================================================================ +20:05:23 Calculate Source COMM Id = 2 +20:05:23 ============================================================================ +20:05:23 + + +waiting on router queue for slot.... +20:05:31 ============================================================================ +20:05:31 Slot Id : <14> +20:05:31 Transaction Type : REQUEST +20:05:31 Received From : +20:05:31 ============================================================================ +20:05:31 FNo. Len. Field Value +20:05:31 ============================================================================ +20:05:31 [ 1] [ 4] [0800] +20:05:31 [ 2] [ 5] [02531] +20:05:31 [ 3] [ 6] [579208] +20:05:31 [ 7] [ 10] [0320130531] +20:05:31 [ 11] [ 6] [807578] +20:05:31 [ 15] [ 10] [0320130531] +20:05:31 [ 37] [ 11] [57920807578] +20:05:31 [ 70] [ 3] [001] +20:05:31 ============================================================================ +20:05:31 + + +waiting on router queue for slot.... +20:05:31 ============================================================================ +20:05:31 Slot Id : <14> +20:05:31 Transaction Type : RESPONSE +20:05:31 Received From : +20:05:31 ============================================================================ +20:05:31 FNo. Len. Field Value +20:05:31 ============================================================================ +20:05:31 [ 1] [ 4] [0810] +20:05:31 [ 7] [ 10] [0320130531] +20:05:31 [ 11] [ 6] [807578] +20:05:31 [ 15] [ 4] [0320] +20:05:31 [ 37] [ 12] [57920807578] +20:05:31 [ 39] [ 2] [00] +20:05:31 [ 70] [ 3] [001] +20:05:31 ============================================================================ +20:05:31 Sending to : +20:05:31 ============================================================================ +20:05:31 + + +waiting on router queue for slot.... +20:05:38 ============================================================================ +20:05:38 Slot Id : <483> +20:05:38 Transaction Type : REQUEST +20:05:38 Received From : +20:05:38 ============================================================================ +20:05:38 FNo. Len. Field Value +20:05:38 ============================================================================ +20:05:38 [ 1] [ 4] [0800] +20:05:38 [ 7] [ 10] [0320010445] +20:05:38 [ 11] [ 6] [158115] +20:05:38 [ 70] [ 3] [301] +20:05:38 ============================================================================ +20:05:38 + + +waiting on router queue for slot.... +20:05:38 Sending to : +20:05:38 ============================================================================ +20:05:38 ============================================================================ +20:05:38 Slot Id : <483> +20:05:38 Transaction Type : RESPONSE +20:05:38 Received From : +20:05:38 ============================================================================ +20:05:38 FNo. Len. Field Value +20:05:38 ============================================================================ +20:05:38 [ 1] [ 4] [0810] +20:05:38 [ 7] [ 10] [0320010445] +20:05:38 [ 11] [ 6] [158115] +20:05:38 [ 39] [ 2] [00] +20:05:38 [ 70] [ 3] [301] +20:05:38 ============================================================================ +20:05:38 Calculate Source COMM Id = 2 +20:05:38 ============================================================================ +20:05:38 + + +waiting on router queue for slot.... +20:05:40 ============================================================================ +20:05:40 Slot Id : <474> +20:05:40 Transaction Type : REQUEST +20:05:40 Received From : +20:05:40 ============================================================================ +20:05:40 FNo. Len. Field Value +20:05:40 ============================================================================ +20:05:40 [ 1] [ 4] [0200] +20:05:40 [ 2] [ 16] [6213544000678901] +20:05:40 [ 3] [ 6] [010000] +20:05:40 [ 4] [ 12] [000010000000] +20:05:40 [ 7] [ 10] [0320200330] +20:05:40 [ 11] [ 6] [956838] +20:05:40 [ 12] [ 6] [200330] +20:05:40 [ 13] [ 4] [0320] +20:05:40 [ 15] [ 4] [0320] +20:05:40 [ 18] [ 4] [6011] +20:05:40 [ 19] [ 3] [418] +20:05:40 [ 22] [ 3] [021] +20:05:40 [ 25] [ 2] [01] +20:05:40 [ 28] [ 9] [D00002000] +20:05:40 [ 32] [ 6] [668899] +20:05:40 [ 35] [ 32] [6213544000678901=491212017890455] +20:05:40 [ 37] [ 12] [507901955727] +20:05:40 [ 41] [ 8] [03020018] +20:05:40 [ 42] [ 15] [APT ] +20:05:40 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:05:40 [ 49] [ 3] [418] +20:05:40 [ 52] [ 16] [BFEDE2A4BDA298FC] +20:05:40 ============================================================================ +20:05:40 + + +waiting on router queue for slot.... +20:05:40 Sending to : +20:05:40 ============================================================================ +20:05:40 Sending to : +20:05:40 ============================================================================ +20:05:41 ============================================================================ +20:05:41 Slot Id : <474> +20:05:41 Transaction Type : REQUEST +20:05:41 Received From : +20:05:41 ============================================================================ +20:05:41 FNo. Len. Field Value +20:05:41 ============================================================================ +20:05:41 [ 1] [ 4] [0200] +20:05:41 [ 2] [ 16] [6213544000678901] +20:05:41 [ 3] [ 6] [010000] +20:05:41 [ 4] [ 12] [000010000000] +20:05:41 [ 7] [ 10] [0320200330] +20:05:41 [ 11] [ 6] [956838] +20:05:41 [ 12] [ 6] [200330] +20:05:41 [ 13] [ 4] [0320] +20:05:41 [ 15] [ 4] [0320] +20:05:41 [ 18] [ 4] [6011] +20:05:41 [ 19] [ 3] [418] +20:05:41 [ 22] [ 3] [021] +20:05:41 [ 25] [ 2] [01] +20:05:41 [ 28] [ 9] [D00002000] +20:05:41 [ 32] [ 6] [668899] +20:05:41 [ 35] [ 32] [6213544000678901=491212017890455] +20:05:41 [ 37] [ 12] [507901955727] +20:05:41 [ 41] [ 8] [03020018] +20:05:41 [ 42] [ 15] [APT ] +20:05:41 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:05:41 [ 49] [ 3] [418] +20:05:41 [ 52] [ 16] [BFEDE2A4BDA298FC] +20:05:41 ============================================================================ +20:05:41 + + +waiting on router queue for slot.... +20:05:41 Sending to : +20:05:41 ============================================================================ +20:05:41 ============================================================================ +20:05:41 Slot Id : <474> +20:05:41 Transaction Type : REQUEST +20:05:41 Received From : +20:05:41 ============================================================================ +20:05:41 FNo. Len. Field Value +20:05:41 ============================================================================ +20:05:41 [ 1] [ 4] [0200] +20:05:41 [ 2] [ 16] [6213544000678901] +20:05:41 [ 3] [ 6] [010000] +20:05:41 [ 4] [ 12] [000010000000] +20:05:41 [ 7] [ 10] [0320200330] +20:05:41 [ 11] [ 6] [956838] +20:05:41 [ 12] [ 6] [200330] +20:05:41 [ 13] [ 4] [0320] +20:05:41 [ 15] [ 4] [0320] +20:05:41 [ 18] [ 4] [6011] +20:05:41 [ 19] [ 3] [418] +20:05:41 [ 22] [ 3] [021] +20:05:41 [ 25] [ 2] [01] +20:05:41 [ 28] [ 9] [D00002000] +20:05:41 [ 32] [ 6] [668899] +20:05:41 [ 35] [ 32] [6213544000678901=491212017890455] +20:05:41 [ 37] [ 12] [507901955727] +20:05:41 [ 41] [ 8] [03020018] +20:05:41 [ 42] [ 15] [APT ] +20:05:41 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:05:41 [ 49] [ 3] [418] +20:05:41 [ 52] [ 16] [2464ACBCDA5E258C] +20:05:41 ============================================================================ +20:05:41 + + +waiting on router queue for slot.... +20:05:41 Sending to : <0> +20:05:41 ============================================================================ +20:05:41 ============================================================================ +20:05:41 Slot Id : <474> +20:05:41 Transaction Type : RESPONSE +20:05:41 Received From : +20:05:41 ============================================================================ +20:05:41 FNo. Len. Field Value +20:05:41 ============================================================================ +20:05:41 [ 1] [ 4] [0210] +20:05:41 [ 2] [ 16] [6213544000678901] +20:05:41 [ 3] [ 6] [010000] +20:05:41 [ 4] [ 12] [000010000000] +20:05:41 [ 7] [ 10] [0320200330] +20:05:41 [ 11] [ 6] [956838] +20:05:41 [ 12] [ 6] [200330] +20:05:41 [ 13] [ 4] [0320] +20:05:41 [ 15] [ 4] [0320] +20:05:41 [ 18] [ 4] [6011] +20:05:41 [ 19] [ 3] [418] +20:05:41 [ 32] [ 6] [668899] +20:05:41 [ 35] [ 32] [6213544000678901=491212017890455] +20:05:41 [ 37] [ 12] [507901955727] +20:05:41 [ 38] [ 6] [982211] +20:05:41 [ 39] [ 2] [00] +20:05:41 [ 41] [ 8] [03020018] +20:05:41 [ 49] [ 3] [418] +20:05:41 [ 54] [ 40] [0001418C0000471436020002418C000047143602] +20:05:41 ============================================================================ +20:05:41 Sending to : +20:05:41 ============================================================================ +20:05:41 + + +waiting on router queue for slot.... +20:05:43 ============================================================================ +20:05:43 Slot Id : <474> +20:05:43 Transaction Type : RESPONSE +20:05:43 Received From : +20:05:43 ============================================================================ +20:05:43 FNo. Len. Field Value +20:05:43 ============================================================================ +20:05:43 [ 1] [ 4] [0210] +20:05:43 [ 2] [ 16] [6213544000678901] +20:05:43 [ 3] [ 6] [010000] +20:05:43 [ 4] [ 12] [000010000000] +20:05:43 [ 7] [ 10] [0320200330] +20:05:43 [ 11] [ 6] [956838] +20:05:43 [ 12] [ 6] [200330] +20:05:43 [ 13] [ 4] [0320] +20:05:43 [ 15] [ 4] [0320] +20:05:43 [ 18] [ 4] [6011] +20:05:43 [ 19] [ 3] [418] +20:05:43 [ 32] [ 6] [668899] +20:05:43 [ 35] [ 32] [6213544000678901=491212017890455] +20:05:43 [ 37] [ 12] [507901955727] +20:05:43 [ 38] [ 6] [982211] +20:05:43 [ 39] [ 2] [00] +20:05:43 [ 41] [ 8] [03020018] +20:05:43 [ 49] [ 3] [418] +20:05:43 [ 54] [ 40] [0001418C0000471436020002418C000047143602] +20:05:43 ============================================================================ +20:05:43 Calculate Source COMM Id = 4 +20:05:43 ============================================================================ +20:05:43 + + +waiting on router queue for slot.... +20:05:44 ============================================================================ +20:05:44 Slot Id : <486> +20:05:44 Transaction Type : REQUEST +20:05:44 Received From : +20:05:44 ============================================================================ +20:05:44 FNo. Len. Field Value +20:05:44 ============================================================================ +20:05:44 [ 1] [ 4] [0200] +20:05:44 [ 2] [ 16] [6213541000672033] +20:05:44 [ 3] [ 6] [011000] +20:05:44 [ 4] [ 12] [000100000000] +20:05:44 [ 7] [ 10] [0320200604] +20:05:44 [ 11] [ 6] [211799] +20:05:44 [ 12] [ 6] [195408] +20:05:44 [ 13] [ 4] [0320] +20:05:44 [ 14] [ 4] [4912] +20:05:44 [ 15] [ 4] [0320] +20:05:44 [ 18] [ 4] [6011] +20:05:44 [ 19] [ 3] [418] +20:05:44 [ 22] [ 3] [021] +20:05:44 [ 25] [ 2] [01] +20:05:44 [ 28] [ 9] [D00002000] +20:05:44 [ 32] [ 6] [198901] +20:05:44 [ 35] [ 32] [6213541000672033=491212017203169] +20:05:44 [ 37] [ 12] [507920211799] +20:05:44 [ 41] [ 8] [01529014] +20:05:44 [ 42] [ 15] [000000041529014] +20:05:44 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:05:44 [ 49] [ 3] [418] +20:05:44 [ 52] [ 16] [DC9D97543C45EABB] +20:05:44 ============================================================================ +20:05:44 + + +waiting on router queue for slot.... +20:05:44 Sending to : +20:05:44 ============================================================================ +20:05:44 Sending to : +20:05:44 ============================================================================ +20:05:45 ============================================================================ +20:05:45 Slot Id : <486> +20:05:45 Transaction Type : REQUEST +20:05:45 Received From : +20:05:45 ============================================================================ +20:05:45 FNo. Len. Field Value +20:05:45 ============================================================================ +20:05:45 [ 1] [ 4] [0200] +20:05:45 [ 2] [ 16] [6213541000672033] +20:05:45 [ 3] [ 6] [011000] +20:05:45 [ 4] [ 12] [000100000000] +20:05:45 [ 7] [ 10] [0320200604] +20:05:45 [ 11] [ 6] [211799] +20:05:45 [ 12] [ 6] [195408] +20:05:45 [ 13] [ 4] [0320] +20:05:45 [ 14] [ 4] [4912] +20:05:45 [ 15] [ 4] [0320] +20:05:45 [ 18] [ 4] [6011] +20:05:45 [ 19] [ 3] [418] +20:05:45 [ 22] [ 3] [021] +20:05:45 [ 25] [ 2] [01] +20:05:45 [ 28] [ 9] [D00002000] +20:05:45 [ 32] [ 6] [198901] +20:05:45 [ 35] [ 32] [6213541000672033=491212017203169] +20:05:45 [ 37] [ 12] [507920211799] +20:05:45 [ 41] [ 8] [01529014] +20:05:45 [ 42] [ 15] [000000041529014] +20:05:45 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:05:45 [ 49] [ 3] [418] +20:05:45 [ 52] [ 16] [DC9D97543C45EABB] +20:05:45 ============================================================================ +20:05:45 + + +waiting on router queue for slot.... +20:05:45 Sending to : +20:05:45 ============================================================================ +20:05:45 ============================================================================ +20:05:45 Slot Id : <486> +20:05:45 Transaction Type : REQUEST +20:05:45 Received From : +20:05:45 ============================================================================ +20:05:45 FNo. Len. Field Value +20:05:45 ============================================================================ +20:05:45 [ 1] [ 4] [0200] +20:05:45 [ 2] [ 16] [6213541000672033] +20:05:45 [ 3] [ 6] [011000] +20:05:45 [ 4] [ 12] [000100000000] +20:05:45 [ 7] [ 10] [0320200604] +20:05:45 [ 11] [ 6] [211799] +20:05:45 [ 12] [ 6] [195408] +20:05:45 [ 13] [ 4] [0320] +20:05:45 [ 14] [ 4] [4912] +20:05:45 [ 15] [ 4] [0320] +20:05:45 [ 18] [ 4] [6011] +20:05:45 [ 19] [ 3] [418] +20:05:45 [ 22] [ 3] [021] +20:05:45 [ 25] [ 2] [01] +20:05:45 [ 28] [ 9] [D00002000] +20:05:45 [ 32] [ 6] [198901] +20:05:45 [ 35] [ 32] [6213541000672033=491212017203169] +20:05:45 [ 37] [ 12] [507920211799] +20:05:45 [ 41] [ 8] [01529014] +20:05:45 [ 42] [ 15] [000000041529014] +20:05:45 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:05:45 [ 49] [ 3] [418] +20:05:45 [ 52] [ 16] [3D520585CA77A566] +20:05:45 ============================================================================ +20:05:45 + + +waiting on router queue for slot.... +20:05:45 Sending to : <0> +20:05:45 ============================================================================ +20:05:46 ============================================================================ +20:05:46 Slot Id : <486> +20:05:46 Transaction Type : RESPONSE +20:05:46 Received From : +20:05:46 ============================================================================ +20:05:46 FNo. Len. Field Value +20:05:46 ============================================================================ +20:05:46 [ 1] [ 4] [0210] +20:05:46 [ 2] [ 16] [6213541000672033] +20:05:46 [ 3] [ 6] [011000] +20:05:46 [ 4] [ 12] [000100000000] +20:05:46 [ 7] [ 10] [0320200604] +20:05:46 [ 11] [ 6] [211799] +20:05:46 [ 12] [ 6] [195408] +20:05:46 [ 13] [ 4] [0320] +20:05:46 [ 15] [ 4] [0320] +20:05:46 [ 18] [ 4] [6011] +20:05:46 [ 19] [ 3] [418] +20:05:46 [ 32] [ 6] [198901] +20:05:46 [ 35] [ 32] [6213541000672033=491212017203169] +20:05:46 [ 37] [ 12] [507920211799] +20:05:46 [ 38] [ 6] [710765] +20:05:46 [ 39] [ 2] [00] +20:05:46 [ 41] [ 8] [01529014] +20:05:46 [ 49] [ 3] [418] +20:05:46 [ 54] [ 40] [1001418C0012139648471002418C001213964847] +20:05:46 ============================================================================ +20:05:46 Sending to : +20:05:46 ============================================================================ +20:05:46 + + +waiting on router queue for slot.... +20:05:47 ============================================================================ +20:05:47 Slot Id : <6> +20:05:47 Transaction Type : REQUEST +20:05:47 Received From : +20:05:47 ============================================================================ +20:05:47 FNo. Len. Field Value +20:05:47 ============================================================================ +20:05:47 [ 1] [ 4] [0800] +20:05:47 [ 7] [ 10] [0321031736] +20:05:47 [ 11] [ 6] [201736] +20:05:47 [ 37] [ 12] [57920201736] +20:05:47 [ 70] [ 3] [301] +20:05:47 ============================================================================ +20:05:47 + + +waiting on router queue for slot.... +20:05:47 Sending to : +20:05:47 ============================================================================ +20:05:47 ============================================================================ +20:05:47 Slot Id : <6> +20:05:47 Transaction Type : RESPONSE +20:05:47 Received From : +20:05:47 ============================================================================ +20:05:47 FNo. Len. Field Value +20:05:47 ============================================================================ +20:05:47 [ 1] [ 4] [0810] +20:05:47 [ 7] [ 10] [0321031736] +20:05:47 [ 11] [ 6] [201736] +20:05:47 [ 37] [ 12] [579202017360] +20:05:47 [ 39] [ 2] [00] +20:05:47 [ 70] [ 3] [810] +20:05:47 ============================================================================ +20:05:47 Calculate Source COMM Id = 6 +20:05:47 ============================================================================ +20:05:47 + + +waiting on router queue for slot.... +20:05:47 ============================================================================ +20:05:47 Slot Id : <486> +20:05:47 Transaction Type : RESPONSE +20:05:47 Received From : +20:05:47 ============================================================================ +20:05:47 FNo. Len. Field Value +20:05:47 ============================================================================ +20:05:47 [ 1] [ 4] [0210] +20:05:47 [ 2] [ 16] [6213541000672033] +20:05:47 [ 3] [ 6] [011000] +20:05:47 [ 4] [ 12] [000100000000] +20:05:47 [ 7] [ 10] [0320200604] +20:05:47 [ 11] [ 6] [211799] +20:05:47 [ 12] [ 6] [195408] +20:05:47 [ 13] [ 4] [0320] +20:05:47 [ 15] [ 4] [0320] +20:05:47 [ 18] [ 4] [6011] +20:05:47 [ 19] [ 3] [418] +20:05:47 [ 32] [ 6] [198901] +20:05:47 [ 35] [ 32] [6213541000672033=491212017203169] +20:05:47 [ 37] [ 12] [507920211799] +20:05:47 [ 38] [ 6] [710765] +20:05:47 [ 39] [ 2] [00] +20:05:47 [ 41] [ 8] [01529014] +20:05:47 [ 49] [ 3] [418] +20:05:47 [ 54] [ 40] [1001418C0012139648471002418C001213964847] +20:05:47 ============================================================================ +20:05:47 Calculate Source COMM Id = 5 +20:05:47 ============================================================================ +20:05:47 + + +waiting on router queue for slot.... +20:05:49 ============================================================================ +20:05:49 Slot Id : <472> +20:05:49 Transaction Type : REQUEST +20:05:49 Received From : +20:05:49 ============================================================================ +20:05:49 FNo. Len. Field Value +20:05:49 ============================================================================ +20:05:49 [ 1] [ 4] [0800] +20:05:49 [ 7] [ 10] [0320010456] +20:05:49 [ 11] [ 6] [158116] +20:05:49 [ 70] [ 3] [301] +20:05:49 ============================================================================ +20:05:49 + + +waiting on router queue for slot.... +20:05:49 Sending to : +20:05:49 ============================================================================ +20:05:49 ============================================================================ +20:05:49 Slot Id : <472> +20:05:49 Transaction Type : RESPONSE +20:05:49 Received From : +20:05:49 ============================================================================ +20:05:49 FNo. Len. Field Value +20:05:49 ============================================================================ +20:05:49 [ 1] [ 4] [0810] +20:05:49 [ 7] [ 10] [0320010456] +20:05:49 [ 11] [ 6] [158116] +20:05:49 [ 39] [ 2] [00] +20:05:49 [ 70] [ 3] [301] +20:05:49 ============================================================================ +20:05:49 Calculate Source COMM Id = 2 +20:05:49 ============================================================================ +20:05:49 + + +waiting on router queue for slot.... +20:06:00 ============================================================================ +20:06:00 Slot Id : <492> +20:06:00 Transaction Type : REQUEST +20:06:00 Received From : +20:06:00 ============================================================================ +20:06:00 FNo. Len. Field Value +20:06:00 ============================================================================ +20:06:00 [ 1] [ 4] [0800] +20:06:00 [ 7] [ 10] [0320010507] +20:06:00 [ 11] [ 6] [158117] +20:06:00 [ 70] [ 3] [301] +20:06:00 ============================================================================ +20:06:00 + + +waiting on router queue for slot.... +20:06:00 Sending to : +20:06:00 ============================================================================ +20:06:00 ============================================================================ +20:06:00 Slot Id : <492> +20:06:00 Transaction Type : RESPONSE +20:06:00 Received From : +20:06:00 ============================================================================ +20:06:00 FNo. Len. Field Value +20:06:00 ============================================================================ +20:06:00 [ 1] [ 4] [0810] +20:06:00 [ 7] [ 10] [0320010507] +20:06:00 [ 11] [ 6] [158117] +20:06:00 [ 39] [ 2] [00] +20:06:00 [ 70] [ 3] [301] +20:06:00 ============================================================================ +20:06:00 Calculate Source COMM Id = 2 +20:06:00 ============================================================================ +20:06:00 + + +waiting on router queue for slot.... +20:06:11 ============================================================================ +20:06:11 Slot Id : <13> +20:06:11 Transaction Type : REQUEST +20:06:11 Received From : +20:06:11 ============================================================================ +20:06:11 FNo. Len. Field Value +20:06:11 ============================================================================ +20:06:11 [ 1] [ 4] [0200] +20:06:11 [ 2] [ 16] [6213541000672033] +20:06:11 [ 3] [ 6] [011000] +20:06:11 [ 4] [ 12] [000100000000] +20:06:11 [ 7] [ 10] [0320200631] +20:06:11 [ 11] [ 6] [211809] +20:06:11 [ 12] [ 6] [195435] +20:06:11 [ 13] [ 4] [0320] +20:06:11 [ 14] [ 4] [4912] +20:06:11 [ 15] [ 4] [0320] +20:06:11 [ 18] [ 4] [6011] +20:06:11 [ 19] [ 3] [418] +20:06:11 [ 22] [ 3] [021] +20:06:11 [ 25] [ 2] [01] +20:06:11 [ 28] [ 9] [D00002000] +20:06:11 [ 32] [ 6] [198901] +20:06:11 [ 35] [ 32] [6213541000672033=491212017203169] +20:06:11 [ 37] [ 12] [507920211809] +20:06:11 [ 41] [ 8] [01529014] +20:06:11 [ 42] [ 15] [000000041529014] +20:06:11 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:06:11 [ 49] [ 3] [418] +20:06:11 [ 52] [ 16] [DC9D97543C45EABB] +20:06:11 ============================================================================ +20:06:11 + + +waiting on router queue for slot.... +20:06:11 Sending to : +20:06:11 ============================================================================ +20:06:11 Sending to : +20:06:11 ============================================================================ +20:06:11 ============================================================================ +20:06:11 Slot Id : <13> +20:06:11 Transaction Type : REQUEST +20:06:11 Received From : +20:06:11 ============================================================================ +20:06:11 FNo. Len. Field Value +20:06:11 ============================================================================ +20:06:11 [ 1] [ 4] [0200] +20:06:11 [ 2] [ 16] [6213541000672033] +20:06:11 [ 3] [ 6] [011000] +20:06:11 [ 4] [ 12] [000100000000] +20:06:11 [ 7] [ 10] [0320200631] +20:06:11 [ 11] [ 6] [211809] +20:06:11 [ 12] [ 6] [195435] +20:06:11 [ 13] [ 4] [0320] +20:06:11 [ 14] [ 4] [4912] +20:06:11 [ 15] [ 4] [0320] +20:06:11 [ 18] [ 4] [6011] +20:06:11 [ 19] [ 3] [418] +20:06:11 [ 22] [ 3] [021] +20:06:11 [ 25] [ 2] [01] +20:06:11 [ 28] [ 9] [D00002000] +20:06:11 [ 32] [ 6] [198901] +20:06:11 [ 35] [ 32] [6213541000672033=491212017203169] +20:06:11 [ 37] [ 12] [507920211809] +20:06:11 [ 41] [ 8] [01529014] +20:06:11 [ 42] [ 15] [000000041529014] +20:06:11 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:06:11 [ 49] [ 3] [418] +20:06:11 [ 52] [ 16] [DC9D97543C45EABB] +20:06:11 ============================================================================ +20:06:11 + + +waiting on router queue for slot.... +20:06:11 Sending to : +20:06:11 ============================================================================ +20:06:11 ============================================================================ +20:06:11 Slot Id : <13> +20:06:11 Transaction Type : REQUEST +20:06:11 Received From : +20:06:11 ============================================================================ +20:06:11 FNo. Len. Field Value +20:06:11 ============================================================================ +20:06:11 [ 1] [ 4] [0200] +20:06:11 [ 2] [ 16] [6213541000672033] +20:06:11 [ 3] [ 6] [011000] +20:06:11 [ 4] [ 12] [000100000000] +20:06:11 [ 7] [ 10] [0320200631] +20:06:11 [ 11] [ 6] [211809] +20:06:11 [ 12] [ 6] [195435] +20:06:11 [ 13] [ 4] [0320] +20:06:11 [ 14] [ 4] [4912] +20:06:11 [ 15] [ 4] [0320] +20:06:11 [ 18] [ 4] [6011] +20:06:11 [ 19] [ 3] [418] +20:06:11 [ 22] [ 3] [021] +20:06:11 [ 25] [ 2] [01] +20:06:11 [ 28] [ 9] [D00002000] +20:06:11 [ 32] [ 6] [198901] +20:06:11 [ 35] [ 32] [6213541000672033=491212017203169] +20:06:11 [ 37] [ 12] [507920211809] +20:06:11 [ 41] [ 8] [01529014] +20:06:11 [ 42] [ 15] [000000041529014] +20:06:11 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:06:11 [ 49] [ 3] [418] +20:06:11 [ 52] [ 16] [3D520585CA77A566] +20:06:11 ============================================================================ +20:06:11 + + +waiting on router queue for slot.... +20:06:11 Sending to : <0> +20:06:11 ============================================================================ +20:06:11 ============================================================================ +20:06:11 Slot Id : <16> +20:06:11 Transaction Type : REQUEST +20:06:11 Received From : +20:06:11 ============================================================================ +20:06:11 FNo. Len. Field Value +20:06:11 ============================================================================ +20:06:11 [ 1] [ 4] [0800] +20:06:11 [ 7] [ 10] [0320010518] +20:06:11 [ 11] [ 6] [158118] +20:06:11 [ 70] [ 3] [301] +20:06:11 ============================================================================ +20:06:11 + + +waiting on router queue for slot.... +20:06:11 Sending to : +20:06:11 ============================================================================ +20:06:11 ============================================================================ +20:06:11 Slot Id : <16> +20:06:11 Transaction Type : RESPONSE +20:06:11 Received From : +20:06:11 ============================================================================ +20:06:11 FNo. Len. Field Value +20:06:11 ============================================================================ +20:06:11 [ 1] [ 4] [0810] +20:06:11 [ 7] [ 10] [0320010518] +20:06:11 [ 11] [ 6] [158118] +20:06:11 [ 39] [ 2] [00] +20:06:11 [ 70] [ 3] [301] +20:06:11 ============================================================================ +20:06:11 Calculate Source COMM Id = 2 +20:06:11 ============================================================================ +20:06:11 + + +waiting on router queue for slot.... +20:06:12 ============================================================================ +20:06:12 Slot Id : <13> +20:06:12 Transaction Type : RESPONSE +20:06:12 Received From : +20:06:12 ============================================================================ +20:06:12 FNo. Len. Field Value +20:06:12 ============================================================================ +20:06:12 [ 1] [ 4] [0210] +20:06:12 [ 2] [ 16] [6213541000672033] +20:06:12 [ 3] [ 6] [011000] +20:06:12 [ 4] [ 12] [000100000000] +20:06:12 [ 7] [ 10] [0320200631] +20:06:12 [ 11] [ 6] [211809] +20:06:12 [ 12] [ 6] [195435] +20:06:12 [ 13] [ 4] [0320] +20:06:12 [ 15] [ 4] [0320] +20:06:12 [ 18] [ 4] [6011] +20:06:12 [ 19] [ 3] [418] +20:06:12 [ 32] [ 6] [198901] +20:06:12 [ 35] [ 32] [6213541000672033=491212017203169] +20:06:12 [ 37] [ 12] [507920211809] +20:06:12 [ 38] [ 6] [116486] +20:06:12 [ 39] [ 2] [00] +20:06:12 [ 41] [ 8] [01529014] +20:06:12 [ 49] [ 3] [418] +20:06:12 [ 54] [ 40] [1001418C0012139648471002418C001113764847] +20:06:12 ============================================================================ +20:06:12 Sending to : +20:06:12 ============================================================================ +20:06:12 + + +waiting on router queue for slot.... +20:06:13 ============================================================================ +20:06:13 Slot Id : <13> +20:06:13 Transaction Type : RESPONSE +20:06:13 Received From : +20:06:13 ============================================================================ +20:06:13 FNo. Len. Field Value +20:06:13 ============================================================================ +20:06:13 [ 1] [ 4] [0210] +20:06:13 [ 2] [ 16] [6213541000672033] +20:06:13 [ 3] [ 6] [011000] +20:06:13 [ 4] [ 12] [000100000000] +20:06:13 [ 7] [ 10] [0320200631] +20:06:13 [ 11] [ 6] [211809] +20:06:13 [ 12] [ 6] [195435] +20:06:13 [ 13] [ 4] [0320] +20:06:13 [ 15] [ 4] [0320] +20:06:13 [ 18] [ 4] [6011] +20:06:13 [ 19] [ 3] [418] +20:06:13 [ 32] [ 6] [198901] +20:06:13 [ 35] [ 32] [6213541000672033=491212017203169] +20:06:13 [ 37] [ 12] [507920211809] +20:06:13 [ 38] [ 6] [116486] +20:06:13 [ 39] [ 2] [00] +20:06:13 [ 41] [ 8] [01529014] +20:06:13 [ 49] [ 3] [418] +20:06:13 [ 54] [ 40] [1001418C0012139648471002418C001113764847] +20:06:13 ============================================================================ +20:06:13 Calculate Source COMM Id = 5 +20:06:13 ============================================================================ +20:06:13 + + +waiting on router queue for slot.... +20:06:14 ============================================================================ +20:06:14 Slot Id : <12> +20:06:14 Transaction Type : REQUEST +20:06:14 Received From : +20:06:14 ============================================================================ +20:06:14 FNo. Len. Field Value +20:06:14 ============================================================================ +20:06:14 [ 1] [ 4] [0200] +20:06:14 [ 2] [ 16] [1808930600033625] +20:06:14 [ 3] [ 6] [301000] +20:06:14 [ 4] [ 12] [000000000000] +20:06:14 [ 7] [ 10] [0320200609] +20:06:14 [ 11] [ 6] [840591] +20:06:14 [ 12] [ 6] [200609] +20:06:14 [ 13] [ 4] [0320] +20:06:14 [ 15] [ 4] [0320] +20:06:14 [ 18] [ 4] [6011] +20:06:14 [ 22] [ 3] [900] +20:06:14 [ 25] [ 2] [02] +20:06:14 [ 28] [ 9] [D00000000] +20:06:14 [ 32] [ 6] [621354] +20:06:14 [ 35] [ 27] [1808930600033625=1803500063] +20:06:14 [ 37] [ 12] [507903565781] +20:06:14 [ 41] [ 8] [09001300] +20:06:14 [ 42] [ 15] [NATIVE ] +20:06:14 [ 43] [ 40] [Chomphet Sisattanak LAO] +20:06:14 [ 49] [ 3] [418] +20:06:14 [ 52] [ 16] [ED159B9FBA2EDCAF] +20:06:14 ============================================================================ +20:06:14 + + +waiting on router queue for slot.... +20:06:14 Sending to : +20:06:14 ============================================================================ +20:06:14 Sending to : +20:06:14 ============================================================================ +20:06:15 ============================================================================ +20:06:15 Slot Id : <12> +20:06:15 Transaction Type : REQUEST +20:06:15 Received From : +20:06:15 ============================================================================ +20:06:15 FNo. Len. Field Value +20:06:15 ============================================================================ +20:06:15 [ 1] [ 4] [0200] +20:06:15 [ 2] [ 16] [1808930600033625] +20:06:15 [ 3] [ 6] [301000] +20:06:15 [ 4] [ 12] [000000000000] +20:06:15 [ 7] [ 10] [0320200609] +20:06:15 [ 11] [ 6] [840591] +20:06:15 [ 12] [ 6] [200609] +20:06:15 [ 13] [ 4] [0320] +20:06:15 [ 15] [ 4] [0320] +20:06:15 [ 18] [ 4] [6011] +20:06:15 [ 22] [ 3] [900] +20:06:15 [ 25] [ 2] [02] +20:06:15 [ 28] [ 9] [D00000000] +20:06:15 [ 32] [ 6] [621354] +20:06:15 [ 35] [ 27] [1808930600033625=1803500063] +20:06:15 [ 37] [ 12] [507903565781] +20:06:15 [ 41] [ 8] [09001300] +20:06:15 [ 42] [ 15] [NATIVE ] +20:06:15 [ 43] [ 40] [Chomphet Sisattanak LAO] +20:06:15 [ 49] [ 3] [418] +20:06:15 [ 52] [ 16] [ED159B9FBA2EDCAF] +20:06:15 ============================================================================ +20:06:15 + + +waiting on router queue for slot.... +20:06:15 Sending to : +20:06:15 ============================================================================ +20:06:15 ============================================================================ +20:06:15 Slot Id : <12> +20:06:15 Transaction Type : REQUEST +20:06:15 Received From : +20:06:15 ============================================================================ +20:06:15 FNo. Len. Field Value +20:06:15 ============================================================================ +20:06:15 [ 1] [ 4] [0200] +20:06:15 [ 2] [ 16] [1808930600033625] +20:06:15 [ 3] [ 6] [301000] +20:06:15 [ 4] [ 12] [000000000000] +20:06:15 [ 7] [ 10] [0320200609] +20:06:15 [ 11] [ 6] [840591] +20:06:15 [ 12] [ 6] [200609] +20:06:15 [ 13] [ 4] [0320] +20:06:15 [ 15] [ 4] [0320] +20:06:15 [ 18] [ 4] [6011] +20:06:15 [ 22] [ 3] [900] +20:06:15 [ 25] [ 2] [02] +20:06:15 [ 28] [ 9] [D00000000] +20:06:15 [ 32] [ 6] [621354] +20:06:15 [ 35] [ 27] [1808930600033625=1803500063] +20:06:15 [ 37] [ 12] [507903565781] +20:06:15 [ 41] [ 8] [09001300] +20:06:15 [ 42] [ 15] [NATIVE ] +20:06:15 [ 43] [ 40] [Chomphet Sisattanak LAO] +20:06:15 [ 49] [ 3] [418] +20:06:15 [ 52] [ 16] [4F49BB6B0F2144AD] +20:06:15 ============================================================================ +20:06:15 + + +waiting on router queue for slot.... +20:06:15 Sending to : <2> +20:06:15 ============================================================================ +20:06:16 ============================================================================ +20:06:16 Slot Id : <12> +20:06:16 Transaction Type : RESPONSE +20:06:16 Received From : +20:06:16 ============================================================================ +20:06:16 FNo. Len. Field Value +20:06:16 ============================================================================ +20:06:16 [ 1] [ 4] [0210] +20:06:16 [ 2] [ 16] [1808930600033625] +20:06:16 [ 3] [ 6] [301000] +20:06:16 [ 7] [ 10] [0320200609] +20:06:16 [ 11] [ 6] [840591] +20:06:16 [ 12] [ 6] [200609] +20:06:16 [ 13] [ 4] [0320] +20:06:16 [ 14] [ 4] [1803] +20:06:16 [ 19] [ 3] [418] +20:06:16 [ 32] [ 6] [621354] +20:06:16 [ 37] [ 12] [507903565781] +20:06:16 [ 39] [ 2] [75] +20:06:16 [ 41] [ 8] [09001300] +20:06:16 [ 49] [ 3] [418] +20:06:16 [ 52] [ 16] [4F49BB6B0F2144AD] +20:06:16 ============================================================================ +20:06:16 Sending to : +20:06:16 ============================================================================ +20:06:16 + + +waiting on router queue for slot.... +20:06:18 ============================================================================ +20:06:18 Slot Id : <12> +20:06:18 Transaction Type : RESPONSE +20:06:18 Received From : +20:06:18 ============================================================================ +20:06:18 FNo. Len. Field Value +20:06:18 ============================================================================ +20:06:18 [ 1] [ 4] [0210] +20:06:18 [ 2] [ 16] [1808930600033625] +20:06:18 [ 3] [ 6] [301000] +20:06:18 [ 7] [ 10] [0320200609] +20:06:18 [ 11] [ 6] [840591] +20:06:18 [ 12] [ 6] [200609] +20:06:18 [ 13] [ 4] [0320] +20:06:18 [ 14] [ 4] [1803] +20:06:18 [ 19] [ 3] [418] +20:06:18 [ 32] [ 6] [621354] +20:06:18 [ 37] [ 12] [507903565781] +20:06:18 [ 39] [ 2] [75] +20:06:18 [ 41] [ 8] [09001300] +20:06:18 [ 49] [ 3] [418] +20:06:18 [ 52] [ 16] [4F49BB6B0F2144AD] +20:06:18 ============================================================================ +20:06:18 Calculate Source COMM Id = 0 +20:06:18 ============================================================================ +20:06:18 + + +waiting on router queue for slot.... +20:06:22 ============================================================================ +20:06:22 Slot Id : <454> +20:06:22 Transaction Type : REQUEST +20:06:22 Received From : +20:06:22 ============================================================================ +20:06:22 FNo. Len. Field Value +20:06:22 ============================================================================ +20:06:22 [ 1] [ 4] [0800] +20:06:22 [ 7] [ 10] [0320130412] +20:06:22 [ 11] [ 6] [009472] +20:06:22 [ 37] [ 12] [57920009472] +20:06:22 [ 70] [ 3] [301] +20:06:22 ============================================================================ +20:06:22 + + +waiting on router queue for slot.... +20:06:22 Sending to : +20:06:22 ============================================================================ +20:06:22 ============================================================================ +20:06:22 Slot Id : <454> +20:06:22 Transaction Type : RESPONSE +20:06:22 Received From : +20:06:22 ============================================================================ +20:06:22 FNo. Len. Field Value +20:06:22 ============================================================================ +20:06:22 [ 1] [ 4] [0810] +20:06:22 [ 7] [ 10] [0320130412] +20:06:22 [ 11] [ 6] [009472] +20:06:22 [ 37] [ 12] [579200094720] +20:06:22 [ 39] [ 2] [00] +20:06:22 [ 70] [ 3] [810] +20:06:22 ============================================================================ +20:06:22 Calculate Source COMM Id = 4 +20:06:22 ============================================================================ +20:06:22 + + +waiting on router queue for slot.... +20:06:30 ============================================================================ +20:06:30 Slot Id : <469> +20:06:30 Transaction Type : REQUEST +20:06:30 Received From : +20:06:30 ============================================================================ +20:06:30 FNo. Len. Field Value +20:06:30 ============================================================================ +20:06:30 [ 1] [ 4] [0800] +20:06:30 [ 7] [ 10] [0320010534] +20:06:30 [ 11] [ 6] [158119] +20:06:30 [ 70] [ 3] [301] +20:06:30 ============================================================================ +20:06:30 + + +waiting on router queue for slot.... +20:06:30 Sending to : +20:06:30 ============================================================================ +20:06:30 ============================================================================ +20:06:30 Slot Id : <469> +20:06:30 Transaction Type : RESPONSE +20:06:30 Received From : +20:06:30 ============================================================================ +20:06:30 FNo. Len. Field Value +20:06:30 ============================================================================ +20:06:30 [ 1] [ 4] [0810] +20:06:30 [ 7] [ 10] [0320010534] +20:06:30 [ 11] [ 6] [158119] +20:06:30 [ 39] [ 2] [00] +20:06:30 [ 70] [ 3] [301] +20:06:30 ============================================================================ +20:06:30 Calculate Source COMM Id = 2 +20:06:30 ============================================================================ +20:06:30 + + +waiting on router queue for slot.... +20:06:33 ============================================================================ +20:06:33 Slot Id : <494> +20:06:33 Transaction Type : REQUEST +20:06:33 Received From : +20:06:33 ============================================================================ +20:06:33 FNo. Len. Field Value +20:06:33 ============================================================================ +20:06:33 [ 1] [ 4] [0800] +20:06:33 [ 2] [ 5] [02531] +20:06:33 [ 3] [ 6] [579208] +20:06:33 [ 7] [ 10] [0320130633] +20:06:33 [ 11] [ 6] [807579] +20:06:33 [ 15] [ 10] [0320130633] +20:06:33 [ 37] [ 11] [57920807579] +20:06:33 [ 70] [ 3] [001] +20:06:33 ============================================================================ +20:06:33 + + +waiting on router queue for slot.... +20:06:33 ============================================================================ +20:06:33 Slot Id : <494> +20:06:33 Transaction Type : RESPONSE +20:06:33 Received From : +20:06:33 ============================================================================ +20:06:33 FNo. Len. Field Value +20:06:33 ============================================================================ +20:06:33 [ 1] [ 4] [0810] +20:06:33 [ 7] [ 10] [0320130633] +20:06:33 [ 11] [ 6] [807579] +20:06:33 [ 15] [ 4] [0320] +20:06:33 [ 37] [ 12] [57920807579] +20:06:33 [ 39] [ 2] [00] +20:06:33 [ 70] [ 3] [001] +20:06:33 ============================================================================ +20:06:33 Sending to : +20:06:33 ============================================================================ +20:06:33 + + +waiting on router queue for slot.... +20:06:34 ============================================================================ +20:06:34 Slot Id : <491> +20:06:34 Transaction Type : REQUEST +20:06:34 Received From : +20:06:34 ============================================================================ +20:06:34 FNo. Len. Field Value +20:06:34 ============================================================================ +20:06:34 [ 1] [ 4] [0200] +20:06:34 [ 2] [ 16] [6213541000672033] +20:06:34 [ 3] [ 6] [011000] +20:06:34 [ 4] [ 12] [000100000000] +20:06:34 [ 7] [ 10] [0320200655] +20:06:34 [ 11] [ 6] [211813] +20:06:34 [ 12] [ 6] [195459] +20:06:34 [ 13] [ 4] [0320] +20:06:34 [ 14] [ 4] [4912] +20:06:34 [ 15] [ 4] [0320] +20:06:34 [ 18] [ 4] [6011] +20:06:34 [ 19] [ 3] [418] +20:06:34 [ 22] [ 3] [021] +20:06:34 [ 25] [ 2] [01] +20:06:34 [ 28] [ 9] [D00002000] +20:06:34 [ 32] [ 6] [198901] +20:06:34 [ 35] [ 32] [6213541000672033=491212017203169] +20:06:34 [ 37] [ 12] [507920211813] +20:06:34 [ 41] [ 8] [01529014] +20:06:34 [ 42] [ 15] [000000041529014] +20:06:34 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:06:34 [ 49] [ 3] [418] +20:06:34 [ 52] [ 16] [DC9D97543C45EABB] +20:06:34 ============================================================================ +20:06:34 + + +waiting on router queue for slot.... +20:06:35 Sending to : +20:06:35 ============================================================================ +20:06:35 Sending to : +20:06:35 ============================================================================ +20:06:35 ============================================================================ +20:06:35 Slot Id : <491> +20:06:35 Transaction Type : REQUEST +20:06:35 Received From : +20:06:35 ============================================================================ +20:06:35 FNo. Len. Field Value +20:06:35 ============================================================================ +20:06:35 [ 1] [ 4] [0200] +20:06:35 [ 2] [ 16] [6213541000672033] +20:06:35 [ 3] [ 6] [011000] +20:06:35 [ 4] [ 12] [000100000000] +20:06:35 [ 7] [ 10] [0320200655] +20:06:35 [ 11] [ 6] [211813] +20:06:35 [ 12] [ 6] [195459] +20:06:35 [ 13] [ 4] [0320] +20:06:35 [ 14] [ 4] [4912] +20:06:35 [ 15] [ 4] [0320] +20:06:35 [ 18] [ 4] [6011] +20:06:35 [ 19] [ 3] [418] +20:06:35 [ 22] [ 3] [021] +20:06:35 [ 25] [ 2] [01] +20:06:35 [ 28] [ 9] [D00002000] +20:06:35 [ 32] [ 6] [198901] +20:06:35 [ 35] [ 32] [6213541000672033=491212017203169] +20:06:35 [ 37] [ 12] [507920211813] +20:06:35 [ 41] [ 8] [01529014] +20:06:35 [ 42] [ 15] [000000041529014] +20:06:35 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:06:35 [ 49] [ 3] [418] +20:06:35 [ 52] [ 16] [DC9D97543C45EABB] +20:06:35 ============================================================================ +20:06:35 + + +waiting on router queue for slot.... +20:06:35 Sending to : +20:06:35 ============================================================================ +20:06:35 ============================================================================ +20:06:35 Slot Id : <491> +20:06:35 Transaction Type : REQUEST +20:06:35 Received From : +20:06:35 ============================================================================ +20:06:35 FNo. Len. Field Value +20:06:35 ============================================================================ +20:06:35 [ 1] [ 4] [0200] +20:06:35 [ 2] [ 16] [6213541000672033] +20:06:35 [ 3] [ 6] [011000] +20:06:35 [ 4] [ 12] [000100000000] +20:06:35 [ 7] [ 10] [0320200655] +20:06:35 [ 11] [ 6] [211813] +20:06:35 [ 12] [ 6] [195459] +20:06:35 [ 13] [ 4] [0320] +20:06:35 [ 14] [ 4] [4912] +20:06:35 [ 15] [ 4] [0320] +20:06:35 [ 18] [ 4] [6011] +20:06:35 [ 19] [ 3] [418] +20:06:35 [ 22] [ 3] [021] +20:06:35 [ 25] [ 2] [01] +20:06:35 [ 28] [ 9] [D00002000] +20:06:35 [ 32] [ 6] [198901] +20:06:35 [ 35] [ 32] [6213541000672033=491212017203169] +20:06:35 [ 37] [ 12] [507920211813] +20:06:35 [ 41] [ 8] [01529014] +20:06:35 [ 42] [ 15] [000000041529014] +20:06:35 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:06:35 [ 49] [ 3] [418] +20:06:35 [ 52] [ 16] [3D520585CA77A566] +20:06:35 ============================================================================ +20:06:35 + + +waiting on router queue for slot.... +20:06:35 Sending to : <0> +20:06:35 ============================================================================ +20:06:35 ============================================================================ +20:06:35 Slot Id : <491> +20:06:35 Transaction Type : RESPONSE +20:06:35 Received From : +20:06:35 ============================================================================ +20:06:35 FNo. Len. Field Value +20:06:35 ============================================================================ +20:06:35 [ 1] [ 4] [0210] +20:06:35 [ 2] [ 16] [6213541000672033] +20:06:35 [ 3] [ 6] [011000] +20:06:35 [ 4] [ 12] [000100000000] +20:06:35 [ 7] [ 10] [0320200655] +20:06:35 [ 11] [ 6] [211813] +20:06:35 [ 12] [ 6] [195459] +20:06:35 [ 13] [ 4] [0320] +20:06:35 [ 15] [ 4] [0320] +20:06:35 [ 18] [ 4] [6011] +20:06:35 [ 19] [ 3] [418] +20:06:35 [ 32] [ 6] [198901] +20:06:35 [ 35] [ 32] [6213541000672033=491212017203169] +20:06:35 [ 37] [ 12] [507920211813] +20:06:35 [ 38] [ 6] [994806] +20:06:35 [ 39] [ 2] [00] +20:06:35 [ 41] [ 8] [01529014] +20:06:35 [ 49] [ 3] [418] +20:06:35 [ 54] [ 40] [1001418C0012139648471002418C001013564847] +20:06:35 ============================================================================ +20:06:35 Sending to : +20:06:35 ============================================================================ +20:06:35 + + +waiting on router queue for slot.... +20:06:37 ============================================================================ +20:06:37 Slot Id : <491> +20:06:37 Transaction Type : RESPONSE +20:06:37 Received From : +20:06:37 ============================================================================ +20:06:37 FNo. Len. Field Value +20:06:37 ============================================================================ +20:06:37 [ 1] [ 4] [0210] +20:06:37 [ 2] [ 16] [6213541000672033] +20:06:37 [ 3] [ 6] [011000] +20:06:37 [ 4] [ 12] [000100000000] +20:06:37 [ 7] [ 10] [0320200655] +20:06:37 [ 11] [ 6] [211813] +20:06:37 [ 12] [ 6] [195459] +20:06:37 [ 13] [ 4] [0320] +20:06:37 [ 15] [ 4] [0320] +20:06:37 [ 18] [ 4] [6011] +20:06:37 [ 19] [ 3] [418] +20:06:37 [ 32] [ 6] [198901] +20:06:37 [ 35] [ 32] [6213541000672033=491212017203169] +20:06:37 [ 37] [ 12] [507920211813] +20:06:37 [ 38] [ 6] [994806] +20:06:37 [ 39] [ 2] [00] +20:06:37 [ 41] [ 8] [01529014] +20:06:37 [ 49] [ 3] [418] +20:06:37 [ 54] [ 40] [1001418C0012139648471002418C001013564847] +20:06:37 ============================================================================ +20:06:37 Calculate Source COMM Id = 5 +20:06:37 ============================================================================ +20:06:37 + + +waiting on router queue for slot.... +20:06:45 ============================================================================ +20:06:45 Slot Id : <22> +20:06:45 Transaction Type : REQUEST +20:06:45 Received From : +20:06:45 ============================================================================ +20:06:45 FNo. Len. Field Value +20:06:45 ============================================================================ +20:06:45 [ 1] [ 4] [0800] +20:06:45 [ 7] [ 10] [0320010552] +20:06:45 [ 11] [ 6] [158120] +20:06:45 [ 70] [ 3] [301] +20:06:45 ============================================================================ +20:06:45 + + +waiting on router queue for slot.... +20:06:45 Sending to : +20:06:45 ============================================================================ +20:06:45 ============================================================================ +20:06:45 Slot Id : <22> +20:06:45 Transaction Type : RESPONSE +20:06:45 Received From : +20:06:45 ============================================================================ +20:06:45 FNo. Len. Field Value +20:06:45 ============================================================================ +20:06:45 [ 1] [ 4] [0810] +20:06:45 [ 7] [ 10] [0320010552] +20:06:45 [ 11] [ 6] [158120] +20:06:45 [ 39] [ 2] [00] +20:06:45 [ 70] [ 3] [301] +20:06:45 ============================================================================ +20:06:45 Calculate Source COMM Id = 2 +20:06:45 ============================================================================ +20:06:45 + + +waiting on router queue for slot.... +20:06:52 ============================================================================ +20:06:52 Slot Id : <17> +20:06:52 Transaction Type : REQUEST +20:06:52 Received From : +20:06:52 ============================================================================ +20:06:52 FNo. Len. Field Value +20:06:52 ============================================================================ +20:06:52 [ 1] [ 4] [0800] +20:06:52 [ 7] [ 10] [0321031841] +20:06:52 [ 11] [ 6] [201841] +20:06:52 [ 37] [ 12] [57920201841] +20:06:52 [ 70] [ 3] [301] +20:06:52 ============================================================================ +20:06:52 + + +waiting on router queue for slot.... +20:06:52 Sending to : +20:06:52 ============================================================================ +20:06:52 ============================================================================ +20:06:52 Slot Id : <17> +20:06:52 Transaction Type : RESPONSE +20:06:52 Received From : +20:06:52 ============================================================================ +20:06:52 FNo. Len. Field Value +20:06:52 ============================================================================ +20:06:52 [ 1] [ 4] [0810] +20:06:52 [ 7] [ 10] [0321031841] +20:06:52 [ 11] [ 6] [201841] +20:06:52 [ 37] [ 12] [579202018410] +20:06:52 [ 39] [ 2] [00] +20:06:52 [ 70] [ 3] [810] +20:06:52 ============================================================================ +20:06:52 Calculate Source COMM Id = 6 +20:06:52 ============================================================================ +20:06:52 + + +waiting on router queue for slot.... +20:06:56 ============================================================================ +20:06:56 Slot Id : <29> +20:06:56 Transaction Type : REQUEST +20:06:56 Received From : +20:06:56 ============================================================================ +20:06:56 FNo. Len. Field Value +20:06:56 ============================================================================ +20:06:56 [ 1] [ 4] [0800] +20:06:56 [ 7] [ 10] [0320010603] +20:06:56 [ 11] [ 6] [158121] +20:06:56 [ 70] [ 3] [301] +20:06:56 ============================================================================ +20:06:56 + + +waiting on router queue for slot.... +20:06:56 Sending to : +20:06:56 ============================================================================ +20:06:56 ============================================================================ +20:06:56 Slot Id : <29> +20:06:56 Transaction Type : RESPONSE +20:06:56 Received From : +20:06:56 ============================================================================ +20:06:56 FNo. Len. Field Value +20:06:56 ============================================================================ +20:06:56 [ 1] [ 4] [0810] +20:06:56 [ 7] [ 10] [0320010603] +20:06:56 [ 11] [ 6] [158121] +20:06:56 [ 39] [ 2] [00] +20:06:56 [ 70] [ 3] [301] +20:06:56 ============================================================================ +20:06:56 Calculate Source COMM Id = 2 +20:06:56 ============================================================================ +20:06:56 + + +waiting on router queue for slot.... +20:06:59 ============================================================================ +20:06:59 Slot Id : <10> +20:06:59 Transaction Type : REQUEST +20:06:59 Received From : +20:06:59 ============================================================================ +20:06:59 FNo. Len. Field Value +20:06:59 ============================================================================ +20:06:59 [ 1] [ 4] [0200] +20:06:59 [ 2] [ 16] [6213541000672033] +20:06:59 [ 3] [ 6] [011000] +20:06:59 [ 4] [ 12] [000100000000] +20:06:59 [ 7] [ 10] [0320200719] +20:06:59 [ 11] [ 6] [211815] +20:06:59 [ 12] [ 6] [195523] +20:06:59 [ 13] [ 4] [0320] +20:06:59 [ 14] [ 4] [4912] +20:06:59 [ 15] [ 4] [0320] +20:06:59 [ 18] [ 4] [6011] +20:06:59 [ 19] [ 3] [418] +20:06:59 [ 22] [ 3] [021] +20:06:59 [ 25] [ 2] [01] +20:06:59 [ 28] [ 9] [D00002000] +20:06:59 [ 32] [ 6] [198901] +20:06:59 [ 35] [ 32] [6213541000672033=491212017203169] +20:06:59 [ 37] [ 12] [507920211815] +20:06:59 [ 41] [ 8] [01529014] +20:06:59 [ 42] [ 15] [000000041529014] +20:06:59 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:06:59 [ 49] [ 3] [418] +20:06:59 [ 52] [ 16] [DC9D97543C45EABB] +20:06:59 ============================================================================ +20:06:59 + + +waiting on router queue for slot.... +20:06:59 Sending to : +20:06:59 ============================================================================ +20:06:59 Sending to : +20:06:59 ============================================================================ +20:06:59 ============================================================================ +20:06:59 Slot Id : <10> +20:06:59 Transaction Type : REQUEST +20:06:59 Received From : +20:06:59 ============================================================================ +20:06:59 FNo. Len. Field Value +20:06:59 ============================================================================ +20:06:59 [ 1] [ 4] [0200] +20:06:59 [ 2] [ 16] [6213541000672033] +20:06:59 [ 3] [ 6] [011000] +20:06:59 [ 4] [ 12] [000100000000] +20:06:59 [ 7] [ 10] [0320200719] +20:06:59 [ 11] [ 6] [211815] +20:06:59 [ 12] [ 6] [195523] +20:06:59 [ 13] [ 4] [0320] +20:06:59 [ 14] [ 4] [4912] +20:06:59 [ 15] [ 4] [0320] +20:06:59 [ 18] [ 4] [6011] +20:06:59 [ 19] [ 3] [418] +20:06:59 [ 22] [ 3] [021] +20:06:59 [ 25] [ 2] [01] +20:06:59 [ 28] [ 9] [D00002000] +20:06:59 [ 32] [ 6] [198901] +20:06:59 [ 35] [ 32] [6213541000672033=491212017203169] +20:06:59 [ 37] [ 12] [507920211815] +20:06:59 [ 41] [ 8] [01529014] +20:06:59 [ 42] [ 15] [000000041529014] +20:06:59 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:06:59 [ 49] [ 3] [418] +20:06:59 [ 52] [ 16] [DC9D97543C45EABB] +20:06:59 ============================================================================ +20:06:59 + + +waiting on router queue for slot.... +20:06:59 Sending to : +20:06:59 ============================================================================ +20:06:59 ============================================================================ +20:06:59 Slot Id : <10> +20:06:59 Transaction Type : REQUEST +20:06:59 Received From : +20:06:59 ============================================================================ +20:06:59 FNo. Len. Field Value +20:06:59 ============================================================================ +20:06:59 [ 1] [ 4] [0200] +20:06:59 [ 2] [ 16] [6213541000672033] +20:06:59 [ 3] [ 6] [011000] +20:06:59 [ 4] [ 12] [000100000000] +20:06:59 [ 7] [ 10] [0320200719] +20:06:59 [ 11] [ 6] [211815] +20:06:59 [ 12] [ 6] [195523] +20:06:59 [ 13] [ 4] [0320] +20:06:59 [ 14] [ 4] [4912] +20:06:59 [ 15] [ 4] [0320] +20:06:59 [ 18] [ 4] [6011] +20:06:59 [ 19] [ 3] [418] +20:06:59 [ 22] [ 3] [021] +20:06:59 [ 25] [ 2] [01] +20:06:59 [ 28] [ 9] [D00002000] +20:06:59 [ 32] [ 6] [198901] +20:06:59 [ 35] [ 32] [6213541000672033=491212017203169] +20:06:59 [ 37] [ 12] [507920211815] +20:06:59 [ 41] [ 8] [01529014] +20:06:59 [ 42] [ 15] [000000041529014] +20:06:59 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:06:59 [ 49] [ 3] [418] +20:06:59 [ 52] [ 16] [3D520585CA77A566] +20:06:59 ============================================================================ +20:06:59 + + +waiting on router queue for slot.... +20:06:59 Sending to : <0> +20:06:59 ============================================================================ +20:06:59 ============================================================================ +20:06:59 Slot Id : <10> +20:06:59 Transaction Type : RESPONSE +20:06:59 Received From : +20:06:59 ============================================================================ +20:06:59 FNo. Len. Field Value +20:06:59 ============================================================================ +20:06:59 [ 1] [ 4] [0210] +20:06:59 [ 2] [ 16] [6213541000672033] +20:06:59 [ 3] [ 6] [011000] +20:06:59 [ 4] [ 12] [000100000000] +20:06:59 [ 7] [ 10] [0320200719] +20:06:59 [ 11] [ 6] [211815] +20:06:59 [ 12] [ 6] [195523] +20:06:59 [ 13] [ 4] [0320] +20:06:59 [ 15] [ 4] [0320] +20:06:59 [ 18] [ 4] [6011] +20:06:59 [ 19] [ 3] [418] +20:06:59 [ 32] [ 6] [198901] +20:06:59 [ 35] [ 32] [6213541000672033=491212017203169] +20:06:59 [ 37] [ 12] [507920211815] +20:06:59 [ 38] [ 6] [154357] +20:06:59 [ 39] [ 2] [00] +20:06:59 [ 41] [ 8] [01529014] +20:06:59 [ 49] [ 3] [418] +20:06:59 [ 54] [ 40] [1001418C0012139648471002418C000913364847] +20:06:59 ============================================================================ +20:06:59 Sending to : +20:06:59 ============================================================================ +20:06:59 + + +waiting on router queue for slot.... +20:07:01 ============================================================================ +20:07:01 Slot Id : <10> +20:07:01 Transaction Type : RESPONSE +20:07:01 Received From : +20:07:01 ============================================================================ +20:07:01 FNo. Len. Field Value +20:07:01 ============================================================================ +20:07:01 [ 1] [ 4] [0210] +20:07:01 [ 2] [ 16] [6213541000672033] +20:07:01 [ 3] [ 6] [011000] +20:07:01 [ 4] [ 12] [000100000000] +20:07:01 [ 7] [ 10] [0320200719] +20:07:01 [ 11] [ 6] [211815] +20:07:01 [ 12] [ 6] [195523] +20:07:01 [ 13] [ 4] [0320] +20:07:01 [ 15] [ 4] [0320] +20:07:01 [ 18] [ 4] [6011] +20:07:01 [ 19] [ 3] [418] +20:07:01 [ 32] [ 6] [198901] +20:07:01 [ 35] [ 32] [6213541000672033=491212017203169] +20:07:01 [ 37] [ 12] [507920211815] +20:07:01 [ 38] [ 6] [154357] +20:07:01 [ 39] [ 2] [00] +20:07:01 [ 41] [ 8] [01529014] +20:07:01 [ 49] [ 3] [418] +20:07:01 [ 54] [ 40] [1001418C0012139648471002418C000913364847] +20:07:01 ============================================================================ +20:07:01 Calculate Source COMM Id = 5 +20:07:01 ============================================================================ +20:07:01 + + +waiting on router queue for slot.... +20:07:07 ============================================================================ +20:07:07 Slot Id : <23> +20:07:07 Transaction Type : REQUEST +20:07:07 Received From : +20:07:07 ============================================================================ +20:07:07 FNo. Len. Field Value +20:07:07 ============================================================================ +20:07:07 [ 1] [ 4] [0800] +20:07:07 [ 7] [ 10] [0320010614] +20:07:07 [ 11] [ 6] [158122] +20:07:07 [ 70] [ 3] [301] +20:07:07 ============================================================================ +20:07:07 + + +waiting on router queue for slot.... +20:07:07 Sending to : +20:07:07 ============================================================================ +20:07:07 ============================================================================ +20:07:07 Slot Id : <23> +20:07:07 Transaction Type : RESPONSE +20:07:07 Received From : +20:07:07 ============================================================================ +20:07:07 FNo. Len. Field Value +20:07:07 ============================================================================ +20:07:07 [ 1] [ 4] [0810] +20:07:07 [ 7] [ 10] [0320010614] +20:07:07 [ 11] [ 6] [158122] +20:07:07 [ 39] [ 2] [00] +20:07:07 [ 70] [ 3] [301] +20:07:07 ============================================================================ +20:07:07 Calculate Source COMM Id = 2 +20:07:07 ============================================================================ +20:07:07 + + +waiting on router queue for slot.... +20:07:18 ============================================================================ +20:07:18 Slot Id : <499> +20:07:18 Transaction Type : REQUEST +20:07:18 Received From : +20:07:18 ============================================================================ +20:07:18 FNo. Len. Field Value +20:07:18 ============================================================================ +20:07:18 [ 1] [ 4] [0800] +20:07:18 [ 7] [ 10] [0320010625] +20:07:18 [ 11] [ 6] [158123] +20:07:18 [ 70] [ 3] [301] +20:07:18 ============================================================================ +20:07:18 + + +waiting on router queue for slot.... +20:07:18 Sending to : +20:07:18 ============================================================================ +20:07:18 ============================================================================ +20:07:18 Slot Id : <499> +20:07:18 Transaction Type : RESPONSE +20:07:18 Received From : +20:07:18 ============================================================================ +20:07:18 FNo. Len. Field Value +20:07:18 ============================================================================ +20:07:18 [ 1] [ 4] [0810] +20:07:18 [ 7] [ 10] [0320010625] +20:07:18 [ 11] [ 6] [158123] +20:07:18 [ 39] [ 2] [00] +20:07:18 [ 70] [ 3] [301] +20:07:18 ============================================================================ +20:07:18 Calculate Source COMM Id = 2 +20:07:18 ============================================================================ +20:07:18 + + +waiting on router queue for slot.... +20:07:23 ============================================================================ +20:07:23 Slot Id : <481> +20:07:23 Transaction Type : REQUEST +20:07:23 Received From : +20:07:23 ============================================================================ +20:07:23 FNo. Len. Field Value +20:07:23 ============================================================================ +20:07:23 [ 1] [ 4] [0200] +20:07:23 [ 2] [ 16] [6213541000672033] +20:07:23 [ 3] [ 6] [011000] +20:07:23 [ 4] [ 12] [000100000000] +20:07:23 [ 7] [ 10] [0320200743] +20:07:23 [ 11] [ 6] [211822] +20:07:23 [ 12] [ 6] [195547] +20:07:23 [ 13] [ 4] [0320] +20:07:23 [ 14] [ 4] [4912] +20:07:23 [ 15] [ 4] [0320] +20:07:23 [ 18] [ 4] [6011] +20:07:23 [ 19] [ 3] [418] +20:07:23 [ 22] [ 3] [021] +20:07:23 [ 25] [ 2] [01] +20:07:23 [ 28] [ 9] [D00002000] +20:07:23 [ 32] [ 6] [198901] +20:07:23 [ 35] [ 32] [6213541000672033=491212017203169] +20:07:23 [ 37] [ 12] [507920211822] +20:07:23 [ 41] [ 8] [01529014] +20:07:23 [ 42] [ 15] [000000041529014] +20:07:23 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:07:23 [ 49] [ 3] [418] +20:07:23 [ 52] [ 16] [DC9D97543C45EABB] +20:07:23 ============================================================================ +20:07:23 + + +waiting on router queue for slot.... +20:07:23 Sending to : +20:07:23 ============================================================================ +20:07:23 Sending to : +20:07:23 ============================================================================ +20:07:24 ============================================================================ +20:07:24 Slot Id : <481> +20:07:24 Transaction Type : REQUEST +20:07:24 Received From : +20:07:24 ============================================================================ +20:07:24 FNo. Len. Field Value +20:07:24 ============================================================================ +20:07:24 [ 1] [ 4] [0200] +20:07:24 [ 2] [ 16] [6213541000672033] +20:07:24 [ 3] [ 6] [011000] +20:07:24 [ 4] [ 12] [000100000000] +20:07:24 [ 7] [ 10] [0320200743] +20:07:24 [ 11] [ 6] [211822] +20:07:24 [ 12] [ 6] [195547] +20:07:24 [ 13] [ 4] [0320] +20:07:24 [ 14] [ 4] [4912] +20:07:24 [ 15] [ 4] [0320] +20:07:24 [ 18] [ 4] [6011] +20:07:24 [ 19] [ 3] [418] +20:07:24 [ 22] [ 3] [021] +20:07:24 [ 25] [ 2] [01] +20:07:24 [ 28] [ 9] [D00002000] +20:07:24 [ 32] [ 6] [198901] +20:07:24 [ 35] [ 32] [6213541000672033=491212017203169] +20:07:24 [ 37] [ 12] [507920211822] +20:07:24 [ 41] [ 8] [01529014] +20:07:24 [ 42] [ 15] [000000041529014] +20:07:24 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:07:24 [ 49] [ 3] [418] +20:07:24 [ 52] [ 16] [DC9D97543C45EABB] +20:07:24 ============================================================================ +20:07:24 + + +waiting on router queue for slot.... +20:07:24 Sending to : +20:07:24 ============================================================================ +20:07:24 ============================================================================ +20:07:24 Slot Id : <481> +20:07:24 Transaction Type : REQUEST +20:07:24 Received From : +20:07:24 ============================================================================ +20:07:24 FNo. Len. Field Value +20:07:24 ============================================================================ +20:07:24 [ 1] [ 4] [0200] +20:07:24 [ 2] [ 16] [6213541000672033] +20:07:24 [ 3] [ 6] [011000] +20:07:24 [ 4] [ 12] [000100000000] +20:07:24 [ 7] [ 10] [0320200743] +20:07:24 [ 11] [ 6] [211822] +20:07:24 [ 12] [ 6] [195547] +20:07:24 [ 13] [ 4] [0320] +20:07:24 [ 14] [ 4] [4912] +20:07:24 [ 15] [ 4] [0320] +20:07:24 [ 18] [ 4] [6011] +20:07:24 [ 19] [ 3] [418] +20:07:24 [ 22] [ 3] [021] +20:07:24 [ 25] [ 2] [01] +20:07:24 [ 28] [ 9] [D00002000] +20:07:24 [ 32] [ 6] [198901] +20:07:24 [ 35] [ 32] [6213541000672033=491212017203169] +20:07:24 [ 37] [ 12] [507920211822] +20:07:24 [ 41] [ 8] [01529014] +20:07:24 [ 42] [ 15] [000000041529014] +20:07:24 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:07:24 [ 49] [ 3] [418] +20:07:24 [ 52] [ 16] [3D520585CA77A566] +20:07:24 ============================================================================ +20:07:24 + + +waiting on router queue for slot.... +20:07:24 Sending to : <0> +20:07:24 ============================================================================ +20:07:24 ============================================================================ +20:07:24 Slot Id : <481> +20:07:24 Transaction Type : RESPONSE +20:07:24 Received From : +20:07:24 ============================================================================ +20:07:24 FNo. Len. Field Value +20:07:24 ============================================================================ +20:07:24 [ 1] [ 4] [0210] +20:07:24 [ 2] [ 16] [6213541000672033] +20:07:24 [ 3] [ 6] [011000] +20:07:24 [ 4] [ 12] [000100000000] +20:07:24 [ 7] [ 10] [0320200743] +20:07:24 [ 11] [ 6] [211822] +20:07:24 [ 12] [ 6] [195547] +20:07:24 [ 13] [ 4] [0320] +20:07:24 [ 15] [ 4] [0320] +20:07:24 [ 18] [ 4] [6011] +20:07:24 [ 19] [ 3] [418] +20:07:24 [ 22] [ 3] [021] +20:07:24 [ 32] [ 6] [198901] +20:07:24 [ 35] [ 32] [6213541000672033=491212017203169] +20:07:24 [ 37] [ 12] [507920211822] +20:07:24 [ 38] [ 6] [200718] +20:07:24 [ 39] [ 2] [12] +20:07:24 [ 41] [ 8] [01529014] +20:07:24 [ 49] [ 3] [418] +20:07:24 ============================================================================ +20:07:24 Sending to : +20:07:24 ============================================================================ +20:07:24 + + +waiting on router queue for slot.... +20:07:25 ============================================================================ +20:07:25 Slot Id : <481> +20:07:25 Transaction Type : RESPONSE +20:07:25 Received From : +20:07:25 ============================================================================ +20:07:25 FNo. Len. Field Value +20:07:25 ============================================================================ +20:07:25 [ 1] [ 4] [0210] +20:07:25 [ 2] [ 16] [6213541000672033] +20:07:25 [ 3] [ 6] [011000] +20:07:25 [ 4] [ 12] [000100000000] +20:07:25 [ 7] [ 10] [0320200743] +20:07:25 [ 11] [ 6] [211822] +20:07:25 [ 12] [ 6] [195547] +20:07:25 [ 13] [ 4] [0320] +20:07:25 [ 15] [ 4] [0320] +20:07:25 [ 18] [ 4] [6011] +20:07:25 [ 19] [ 3] [418] +20:07:25 [ 22] [ 3] [021] +20:07:25 [ 32] [ 6] [198901] +20:07:25 [ 35] [ 32] [6213541000672033=491212017203169] +20:07:25 [ 37] [ 12] [507920211822] +20:07:25 [ 38] [ 6] [200718] +20:07:25 [ 39] [ 2] [12] +20:07:25 [ 41] [ 8] [01529014] +20:07:25 [ 49] [ 3] [418] +20:07:25 ============================================================================ +20:07:25 Calculate Source COMM Id = 5 +20:07:25 ============================================================================ +20:07:25 + + +waiting on router queue for slot.... +20:07:31 ============================================================================ +20:07:31 Slot Id : <31> +20:07:31 Transaction Type : REQUEST +20:07:31 Received From : +20:07:31 ============================================================================ +20:07:31 FNo. Len. Field Value +20:07:31 ============================================================================ +20:07:31 [ 1] [ 4] [0800] +20:07:31 [ 7] [ 10] [0320010638] +20:07:31 [ 11] [ 6] [158124] +20:07:31 [ 70] [ 3] [301] +20:07:31 ============================================================================ +20:07:31 + + +waiting on router queue for slot.... +20:07:31 Sending to : +20:07:31 ============================================================================ +20:07:31 ============================================================================ +20:07:31 Slot Id : <31> +20:07:31 Transaction Type : RESPONSE +20:07:31 Received From : +20:07:31 ============================================================================ +20:07:31 FNo. Len. Field Value +20:07:31 ============================================================================ +20:07:31 [ 1] [ 4] [0810] +20:07:31 [ 7] [ 10] [0320010638] +20:07:31 [ 11] [ 6] [158124] +20:07:31 [ 39] [ 2] [00] +20:07:31 [ 70] [ 3] [301] +20:07:31 ============================================================================ +20:07:31 Calculate Source COMM Id = 2 +20:07:31 ============================================================================ +20:07:31 + + +waiting on router queue for slot.... +20:07:35 ============================================================================ +20:07:35 Slot Id : <35> +20:07:35 Transaction Type : REQUEST +20:07:35 Received From : +20:07:35 ============================================================================ +20:07:35 FNo. Len. Field Value +20:07:35 ============================================================================ +20:07:35 [ 1] [ 4] [0800] +20:07:35 [ 2] [ 5] [02531] +20:07:35 [ 3] [ 6] [579208] +20:07:35 [ 7] [ 10] [0320130735] +20:07:35 [ 11] [ 6] [807580] +20:07:35 [ 15] [ 10] [0320130735] +20:07:35 [ 37] [ 11] [57920807580] +20:07:35 [ 70] [ 3] [001] +20:07:35 ============================================================================ +20:07:35 + + +waiting on router queue for slot.... +20:07:35 ============================================================================ +20:07:35 Slot Id : <35> +20:07:35 Transaction Type : RESPONSE +20:07:35 Received From : +20:07:35 ============================================================================ +20:07:35 FNo. Len. Field Value +20:07:35 ============================================================================ +20:07:35 [ 1] [ 4] [0810] +20:07:35 [ 7] [ 10] [0320130735] +20:07:35 [ 11] [ 6] [807580] +20:07:35 [ 15] [ 4] [0320] +20:07:35 [ 37] [ 12] [57920807580] +20:07:35 [ 39] [ 2] [00] +20:07:35 [ 70] [ 3] [001] +20:07:35 ============================================================================ +20:07:35 Sending to : +20:07:35 ============================================================================ +20:07:35 + + +waiting on router queue for slot.... +20:07:37 ============================================================================ +20:07:37 Slot Id : <3> +20:07:37 Transaction Type : REQUEST +20:07:37 Received From : +20:07:37 ============================================================================ +20:07:37 FNo. Len. Field Value +20:07:37 ============================================================================ +20:07:37 [ 1] [ 4] [0200] +20:07:37 [ 2] [ 16] [6213541000672033] +20:07:37 [ 3] [ 6] [011000] +20:07:37 [ 4] [ 12] [000100000000] +20:07:37 [ 7] [ 10] [0320200757] +20:07:37 [ 11] [ 6] [211828] +20:07:37 [ 12] [ 6] [195602] +20:07:37 [ 13] [ 4] [0320] +20:07:37 [ 14] [ 4] [4912] +20:07:37 [ 15] [ 4] [0320] +20:07:37 [ 18] [ 4] [6011] +20:07:37 [ 19] [ 3] [418] +20:07:37 [ 22] [ 3] [021] +20:07:37 [ 25] [ 2] [01] +20:07:37 [ 28] [ 9] [D00002000] +20:07:37 [ 32] [ 6] [198901] +20:07:37 [ 35] [ 32] [6213541000672033=491212017203169] +20:07:37 [ 37] [ 12] [507920211828] +20:07:37 [ 41] [ 8] [01529014] +20:07:37 [ 42] [ 15] [000000041529014] +20:07:37 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:07:37 [ 49] [ 3] [418] +20:07:37 [ 52] [ 16] [DC9D97543C45EABB] +20:07:37 ============================================================================ +20:07:37 + + +waiting on router queue for slot.... +20:07:37 Sending to : +20:07:37 ============================================================================ +20:07:37 Sending to : +20:07:37 ============================================================================ +20:07:38 ============================================================================ +20:07:38 Slot Id : <3> +20:07:38 Transaction Type : REQUEST +20:07:38 Received From : +20:07:38 ============================================================================ +20:07:38 FNo. Len. Field Value +20:07:38 ============================================================================ +20:07:38 [ 1] [ 4] [0200] +20:07:38 [ 2] [ 16] [6213541000672033] +20:07:38 [ 3] [ 6] [011000] +20:07:38 [ 4] [ 12] [000100000000] +20:07:38 [ 7] [ 10] [0320200757] +20:07:38 [ 11] [ 6] [211828] +20:07:38 [ 12] [ 6] [195602] +20:07:38 [ 13] [ 4] [0320] +20:07:38 [ 14] [ 4] [4912] +20:07:38 [ 15] [ 4] [0320] +20:07:38 [ 18] [ 4] [6011] +20:07:38 [ 19] [ 3] [418] +20:07:38 [ 22] [ 3] [021] +20:07:38 [ 25] [ 2] [01] +20:07:38 [ 28] [ 9] [D00002000] +20:07:38 [ 32] [ 6] [198901] +20:07:38 [ 35] [ 32] [6213541000672033=491212017203169] +20:07:38 [ 37] [ 12] [507920211828] +20:07:38 [ 41] [ 8] [01529014] +20:07:38 [ 42] [ 15] [000000041529014] +20:07:38 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:07:38 [ 49] [ 3] [418] +20:07:38 [ 52] [ 16] [DC9D97543C45EABB] +20:07:38 ============================================================================ +20:07:38 + + +waiting on router queue for slot.... +20:07:38 Sending to : +20:07:38 ============================================================================ +20:07:38 ============================================================================ +20:07:38 Slot Id : <3> +20:07:38 Transaction Type : REQUEST +20:07:38 Received From : +20:07:38 ============================================================================ +20:07:38 FNo. Len. Field Value +20:07:38 ============================================================================ +20:07:38 [ 1] [ 4] [0200] +20:07:38 [ 2] [ 16] [6213541000672033] +20:07:38 [ 3] [ 6] [011000] +20:07:38 [ 4] [ 12] [000100000000] +20:07:38 [ 7] [ 10] [0320200757] +20:07:38 [ 11] [ 6] [211828] +20:07:38 [ 12] [ 6] [195602] +20:07:38 [ 13] [ 4] [0320] +20:07:38 [ 14] [ 4] [4912] +20:07:38 [ 15] [ 4] [0320] +20:07:38 [ 18] [ 4] [6011] +20:07:38 [ 19] [ 3] [418] +20:07:38 [ 22] [ 3] [021] +20:07:38 [ 25] [ 2] [01] +20:07:38 [ 28] [ 9] [D00002000] +20:07:38 [ 32] [ 6] [198901] +20:07:38 [ 35] [ 32] [6213541000672033=491212017203169] +20:07:38 [ 37] [ 12] [507920211828] +20:07:38 [ 41] [ 8] [01529014] +20:07:38 [ 42] [ 15] [000000041529014] +20:07:38 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:07:38 [ 49] [ 3] [418] +20:07:38 [ 52] [ 16] [3D520585CA77A566] +20:07:38 ============================================================================ +20:07:38 + + +waiting on router queue for slot.... +20:07:38 Sending to : <0> +20:07:38 ============================================================================ +20:07:38 ============================================================================ +20:07:38 Slot Id : <3> +20:07:38 Transaction Type : RESPONSE +20:07:38 Received From : +20:07:38 ============================================================================ +20:07:38 FNo. Len. Field Value +20:07:38 ============================================================================ +20:07:38 [ 1] [ 4] [0210] +20:07:38 [ 2] [ 16] [6213541000672033] +20:07:38 [ 3] [ 6] [011000] +20:07:38 [ 4] [ 12] [000100000000] +20:07:38 [ 7] [ 10] [0320200757] +20:07:38 [ 11] [ 6] [211828] +20:07:38 [ 12] [ 6] [195602] +20:07:38 [ 13] [ 4] [0320] +20:07:38 [ 15] [ 4] [0320] +20:07:38 [ 18] [ 4] [6011] +20:07:38 [ 19] [ 3] [418] +20:07:38 [ 32] [ 6] [198901] +20:07:38 [ 35] [ 32] [6213541000672033=491212017203169] +20:07:38 [ 37] [ 12] [507920211828] +20:07:38 [ 38] [ 6] [915441] +20:07:38 [ 39] [ 2] [00] +20:07:38 [ 41] [ 8] [01529014] +20:07:38 [ 49] [ 3] [418] +20:07:38 [ 54] [ 40] [1001418C0012139648471002418C000813164847] +20:07:38 ============================================================================ +20:07:38 Sending to : +20:07:38 ============================================================================ +20:07:38 + + +waiting on router queue for slot.... +20:07:40 ============================================================================ +20:07:40 Slot Id : <3> +20:07:40 Transaction Type : RESPONSE +20:07:40 Received From : +20:07:40 ============================================================================ +20:07:40 FNo. Len. Field Value +20:07:40 ============================================================================ +20:07:40 [ 1] [ 4] [0210] +20:07:40 [ 2] [ 16] [6213541000672033] +20:07:40 [ 3] [ 6] [011000] +20:07:40 [ 4] [ 12] [000100000000] +20:07:40 [ 7] [ 10] [0320200757] +20:07:40 [ 11] [ 6] [211828] +20:07:40 [ 12] [ 6] [195602] +20:07:40 [ 13] [ 4] [0320] +20:07:40 [ 15] [ 4] [0320] +20:07:40 [ 18] [ 4] [6011] +20:07:40 [ 19] [ 3] [418] +20:07:40 [ 32] [ 6] [198901] +20:07:40 [ 35] [ 32] [6213541000672033=491212017203169] +20:07:40 [ 37] [ 12] [507920211828] +20:07:40 [ 38] [ 6] [915441] +20:07:40 [ 39] [ 2] [00] +20:07:40 [ 41] [ 8] [01529014] +20:07:40 [ 49] [ 3] [418] +20:07:40 [ 54] [ 40] [1001418C0012139648471002418C000813164847] +20:07:40 ============================================================================ +20:07:40 Calculate Source COMM Id = 5 +20:07:40 ============================================================================ +20:07:40 + + +waiting on router queue for slot.... +20:07:46 ============================================================================ +20:07:46 Slot Id : <33> +20:07:46 Transaction Type : REQUEST +20:07:46 Received From : +20:07:46 ============================================================================ +20:07:46 FNo. Len. Field Value +20:07:46 ============================================================================ +20:07:46 [ 1] [ 4] [0800] +20:07:46 [ 7] [ 10] [0320010652] +20:07:46 [ 11] [ 6] [158125] +20:07:46 [ 70] [ 3] [301] +20:07:46 ============================================================================ +20:07:46 + + +waiting on router queue for slot.... +20:07:46 Sending to : +20:07:46 ============================================================================ +20:07:46 ============================================================================ +20:07:46 Slot Id : <33> +20:07:46 Transaction Type : RESPONSE +20:07:46 Received From : +20:07:46 ============================================================================ +20:07:46 FNo. Len. Field Value +20:07:46 ============================================================================ +20:07:46 [ 1] [ 4] [0810] +20:07:46 [ 7] [ 10] [0320010652] +20:07:46 [ 11] [ 6] [158125] +20:07:46 [ 39] [ 2] [00] +20:07:46 [ 70] [ 3] [301] +20:07:46 ============================================================================ +20:07:46 Calculate Source COMM Id = 2 +20:07:46 ============================================================================ +20:07:46 + + +waiting on router queue for slot.... +20:07:56 ============================================================================ +20:07:56 Slot Id : <496> +20:07:56 Transaction Type : REQUEST +20:07:56 Received From : +20:07:56 ============================================================================ +20:07:56 FNo. Len. Field Value +20:07:56 ============================================================================ +20:07:56 [ 1] [ 4] [0800] +20:07:56 [ 7] [ 10] [0320010703] +20:07:56 [ 11] [ 6] [158126] +20:07:56 [ 70] [ 3] [301] +20:07:56 ============================================================================ +20:07:56 + + +waiting on router queue for slot.... +20:07:56 Sending to : +20:07:56 ============================================================================ +20:07:56 ============================================================================ +20:07:56 Slot Id : <496> +20:07:56 Transaction Type : RESPONSE +20:07:56 Received From : +20:07:56 ============================================================================ +20:07:56 FNo. Len. Field Value +20:07:56 ============================================================================ +20:07:56 [ 1] [ 4] [0810] +20:07:56 [ 7] [ 10] [0320010703] +20:07:56 [ 11] [ 6] [158126] +20:07:56 [ 39] [ 2] [00] +20:07:56 [ 70] [ 3] [301] +20:07:56 ============================================================================ +20:07:56 Calculate Source COMM Id = 2 +20:07:56 ============================================================================ +20:07:56 + + +waiting on router queue for slot.... +20:07:57 ============================================================================ +20:07:57 Slot Id : <21> +20:07:57 Transaction Type : REQUEST +20:07:57 Received From : +20:07:57 ============================================================================ +20:07:57 FNo. Len. Field Value +20:07:57 ============================================================================ +20:07:57 [ 1] [ 4] [0800] +20:07:57 [ 7] [ 10] [0321031946] +20:07:57 [ 11] [ 6] [201946] +20:07:57 [ 37] [ 12] [57920201946] +20:07:57 [ 70] [ 3] [301] +20:07:57 ============================================================================ +20:07:57 + + +waiting on router queue for slot.... +20:07:57 Sending to : +20:07:57 ============================================================================ +20:07:57 ============================================================================ +20:07:57 Slot Id : <21> +20:07:57 Transaction Type : RESPONSE +20:07:57 Received From : +20:07:57 ============================================================================ +20:07:57 FNo. Len. Field Value +20:07:57 ============================================================================ +20:07:57 [ 1] [ 4] [0810] +20:07:57 [ 7] [ 10] [0321031946] +20:07:57 [ 11] [ 6] [201946] +20:07:57 [ 37] [ 12] [579202019460] +20:07:57 [ 39] [ 2] [00] +20:07:57 [ 70] [ 3] [810] +20:07:57 ============================================================================ +20:07:57 Calculate Source COMM Id = 6 +20:07:57 ============================================================================ +20:07:57 + + +waiting on router queue for slot.... +20:08:02 ============================================================================ +20:08:02 Slot Id : <11> +20:08:02 Transaction Type : REQUEST +20:08:02 Received From : +20:08:02 ============================================================================ +20:08:02 FNo. Len. Field Value +20:08:02 ============================================================================ +20:08:02 [ 1] [ 4] [0200] +20:08:02 [ 2] [ 16] [6213541000672033] +20:08:02 [ 3] [ 6] [011000] +20:08:02 [ 4] [ 12] [000100000000] +20:08:02 [ 7] [ 10] [0320200822] +20:08:02 [ 11] [ 6] [211830] +20:08:02 [ 12] [ 6] [195626] +20:08:02 [ 13] [ 4] [0320] +20:08:02 [ 14] [ 4] [4912] +20:08:02 [ 15] [ 4] [0320] +20:08:02 [ 18] [ 4] [6011] +20:08:02 [ 19] [ 3] [418] +20:08:02 [ 22] [ 3] [021] +20:08:02 [ 25] [ 2] [01] +20:08:02 [ 28] [ 9] [D00002000] +20:08:02 [ 32] [ 6] [198901] +20:08:02 [ 35] [ 32] [6213541000672033=491212017203169] +20:08:02 [ 37] [ 12] [507920211830] +20:08:02 [ 41] [ 8] [01529014] +20:08:02 [ 42] [ 15] [000000041529014] +20:08:02 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:08:02 [ 49] [ 3] [418] +20:08:02 [ 52] [ 16] [DC9D97543C45EABB] +20:08:02 ============================================================================ +20:08:02 + + +waiting on router queue for slot.... +20:08:02 Sending to : +20:08:02 ============================================================================ +20:08:02 Sending to : +20:08:02 ============================================================================ +20:08:03 ============================================================================ +20:08:03 Slot Id : <11> +20:08:03 Transaction Type : REQUEST +20:08:03 Received From : +20:08:03 ============================================================================ +20:08:03 FNo. Len. Field Value +20:08:03 ============================================================================ +20:08:03 [ 1] [ 4] [0200] +20:08:03 [ 2] [ 16] [6213541000672033] +20:08:03 [ 3] [ 6] [011000] +20:08:03 [ 4] [ 12] [000100000000] +20:08:03 [ 7] [ 10] [0320200822] +20:08:03 [ 11] [ 6] [211830] +20:08:03 [ 12] [ 6] [195626] +20:08:03 [ 13] [ 4] [0320] +20:08:03 [ 14] [ 4] [4912] +20:08:03 [ 15] [ 4] [0320] +20:08:03 [ 18] [ 4] [6011] +20:08:03 [ 19] [ 3] [418] +20:08:03 [ 22] [ 3] [021] +20:08:03 [ 25] [ 2] [01] +20:08:03 [ 28] [ 9] [D00002000] +20:08:03 [ 32] [ 6] [198901] +20:08:03 [ 35] [ 32] [6213541000672033=491212017203169] +20:08:03 [ 37] [ 12] [507920211830] +20:08:03 [ 41] [ 8] [01529014] +20:08:03 [ 42] [ 15] [000000041529014] +20:08:03 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:08:03 [ 49] [ 3] [418] +20:08:03 [ 52] [ 16] [DC9D97543C45EABB] +20:08:03 ============================================================================ +20:08:03 + + +waiting on router queue for slot.... +20:08:03 Sending to : +20:08:03 ============================================================================ +20:08:03 ============================================================================ +20:08:03 Slot Id : <11> +20:08:03 Transaction Type : REQUEST +20:08:03 Received From : +20:08:03 ============================================================================ +20:08:03 FNo. Len. Field Value +20:08:03 ============================================================================ +20:08:03 [ 1] [ 4] [0200] +20:08:03 [ 2] [ 16] [6213541000672033] +20:08:03 [ 3] [ 6] [011000] +20:08:03 [ 4] [ 12] [000100000000] +20:08:03 [ 7] [ 10] [0320200822] +20:08:03 [ 11] [ 6] [211830] +20:08:03 [ 12] [ 6] [195626] +20:08:03 [ 13] [ 4] [0320] +20:08:03 [ 14] [ 4] [4912] +20:08:03 [ 15] [ 4] [0320] +20:08:03 [ 18] [ 4] [6011] +20:08:03 [ 19] [ 3] [418] +20:08:03 [ 22] [ 3] [021] +20:08:03 [ 25] [ 2] [01] +20:08:03 [ 28] [ 9] [D00002000] +20:08:03 [ 32] [ 6] [198901] +20:08:03 [ 35] [ 32] [6213541000672033=491212017203169] +20:08:03 [ 37] [ 12] [507920211830] +20:08:03 [ 41] [ 8] [01529014] +20:08:03 [ 42] [ 15] [000000041529014] +20:08:03 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:08:03 [ 49] [ 3] [418] +20:08:03 [ 52] [ 16] [3D520585CA77A566] +20:08:03 ============================================================================ +20:08:03 + + +waiting on router queue for slot.... +20:08:03 Sending to : <0> +20:08:03 ============================================================================ +20:08:03 ============================================================================ +20:08:03 Slot Id : <11> +20:08:03 Transaction Type : RESPONSE +20:08:03 Received From : +20:08:03 ============================================================================ +20:08:03 FNo. Len. Field Value +20:08:03 ============================================================================ +20:08:03 [ 1] [ 4] [0210] +20:08:03 [ 2] [ 16] [6213541000672033] +20:08:03 [ 3] [ 6] [011000] +20:08:03 [ 4] [ 12] [000100000000] +20:08:03 [ 7] [ 10] [0320200822] +20:08:03 [ 11] [ 6] [211830] +20:08:03 [ 12] [ 6] [195626] +20:08:03 [ 13] [ 4] [0320] +20:08:03 [ 15] [ 4] [0320] +20:08:03 [ 18] [ 4] [6011] +20:08:03 [ 19] [ 3] [418] +20:08:03 [ 32] [ 6] [198901] +20:08:03 [ 35] [ 32] [6213541000672033=491212017203169] +20:08:03 [ 37] [ 12] [507920211830] +20:08:03 [ 38] [ 6] [741809] +20:08:03 [ 39] [ 2] [00] +20:08:03 [ 41] [ 8] [01529014] +20:08:03 [ 49] [ 3] [418] +20:08:03 [ 54] [ 40] [1001418C0012139648471002418C000712964847] +20:08:03 ============================================================================ +20:08:03 Sending to : +20:08:03 ============================================================================ +20:08:03 + + +waiting on router queue for slot.... +20:08:05 ============================================================================ +20:08:05 Slot Id : <11> +20:08:05 Transaction Type : RESPONSE +20:08:05 Received From : +20:08:05 ============================================================================ +20:08:05 FNo. Len. Field Value +20:08:05 ============================================================================ +20:08:05 [ 1] [ 4] [0210] +20:08:05 [ 2] [ 16] [6213541000672033] +20:08:05 [ 3] [ 6] [011000] +20:08:05 [ 4] [ 12] [000100000000] +20:08:05 [ 7] [ 10] [0320200822] +20:08:05 [ 11] [ 6] [211830] +20:08:05 [ 12] [ 6] [195626] +20:08:05 [ 13] [ 4] [0320] +20:08:05 [ 15] [ 4] [0320] +20:08:05 [ 18] [ 4] [6011] +20:08:05 [ 19] [ 3] [418] +20:08:05 [ 32] [ 6] [198901] +20:08:05 [ 35] [ 32] [6213541000672033=491212017203169] +20:08:05 [ 37] [ 12] [507920211830] +20:08:05 [ 38] [ 6] [741809] +20:08:05 [ 39] [ 2] [00] +20:08:05 [ 41] [ 8] [01529014] +20:08:05 [ 49] [ 3] [418] +20:08:05 [ 54] [ 40] [1001418C0012139648471002418C000712964847] +20:08:05 ============================================================================ +20:08:05 Calculate Source COMM Id = 5 +20:08:05 ============================================================================ +20:08:05 + + +waiting on router queue for slot.... +20:08:07 ============================================================================ +20:08:07 Slot Id : <9> +20:08:07 Transaction Type : REQUEST +20:08:07 Received From : +20:08:07 ============================================================================ +20:08:07 FNo. Len. Field Value +20:08:07 ============================================================================ +20:08:07 [ 1] [ 4] [0800] +20:08:07 [ 7] [ 10] [0320010713] +20:08:07 [ 11] [ 6] [158127] +20:08:07 [ 70] [ 3] [301] +20:08:07 ============================================================================ +20:08:07 + + +waiting on router queue for slot.... +20:08:07 Sending to : +20:08:07 ============================================================================ +20:08:07 ============================================================================ +20:08:07 Slot Id : <9> +20:08:07 Transaction Type : RESPONSE +20:08:07 Received From : +20:08:07 ============================================================================ +20:08:07 FNo. Len. Field Value +20:08:07 ============================================================================ +20:08:07 [ 1] [ 4] [0810] +20:08:07 [ 7] [ 10] [0320010713] +20:08:07 [ 11] [ 6] [158127] +20:08:07 [ 39] [ 2] [00] +20:08:07 [ 70] [ 3] [301] +20:08:07 ============================================================================ +20:08:07 Calculate Source COMM Id = 2 +20:08:07 ============================================================================ +20:08:07 + + +waiting on router queue for slot.... +20:08:22 ============================================================================ +20:08:22 Slot Id : <30> +20:08:22 Transaction Type : REQUEST +20:08:22 Received From : +20:08:22 ============================================================================ +20:08:22 FNo. Len. Field Value +20:08:22 ============================================================================ +20:08:22 [ 1] [ 4] [0800] +20:08:22 [ 7] [ 10] [0320010729] +20:08:22 [ 11] [ 6] [158128] +20:08:22 [ 70] [ 3] [301] +20:08:22 ============================================================================ +20:08:22 + + +waiting on router queue for slot.... +20:08:22 Sending to : +20:08:22 ============================================================================ +20:08:22 ============================================================================ +20:08:22 Slot Id : <30> +20:08:22 Transaction Type : RESPONSE +20:08:22 Received From : +20:08:22 ============================================================================ +20:08:22 FNo. Len. Field Value +20:08:22 ============================================================================ +20:08:22 [ 1] [ 4] [0810] +20:08:22 [ 7] [ 10] [0320010729] +20:08:22 [ 11] [ 6] [158128] +20:08:22 [ 39] [ 2] [00] +20:08:22 [ 70] [ 3] [301] +20:08:22 ============================================================================ +20:08:22 Calculate Source COMM Id = 2 +20:08:22 ============================================================================ +20:08:22 + + +waiting on router queue for slot.... +20:08:25 ============================================================================ +20:08:25 Slot Id : <461> +20:08:25 Transaction Type : REQUEST +20:08:25 Received From : +20:08:25 ============================================================================ +20:08:25 FNo. Len. Field Value +20:08:25 ============================================================================ +20:08:25 [ 1] [ 4] [0800] +20:08:25 [ 7] [ 10] [0320130820] +20:08:25 [ 11] [ 6] [026514] +20:08:25 [ 37] [ 12] [507920026514] +20:08:25 [ 70] [ 3] [001] +20:08:25 ============================================================================ +20:08:25 + + +waiting on router queue for slot.... +20:08:25 Sending to : +20:08:25 ============================================================================ +20:08:25 ============================================================================ +20:08:25 Slot Id : <461> +20:08:25 Transaction Type : RESPONSE +20:08:25 Received From : +20:08:25 ============================================================================ +20:08:25 FNo. Len. Field Value +20:08:25 ============================================================================ +20:08:25 [ 1] [ 4] [0810] +20:08:25 [ 7] [ 10] [0320130820] +20:08:25 [ 11] [ 6] [026514] +20:08:25 [ 37] [ 12] [507920026514] +20:08:25 [ 39] [ 2] [00] +20:08:25 [ 70] [ 3] [001] +20:08:25 ============================================================================ +20:08:25 Calculate Source COMM Id = 0 +20:08:25 ============================================================================ +20:08:25 + + +waiting on router queue for slot.... +20:08:27 ============================================================================ +20:08:27 Slot Id : <45> +20:08:27 Transaction Type : REQUEST +20:08:27 Received From : +20:08:27 ============================================================================ +20:08:27 FNo. Len. Field Value +20:08:27 ============================================================================ +20:08:27 [ 1] [ 4] [0200] +20:08:27 [ 2] [ 16] [6213541000672033] +20:08:27 [ 3] [ 6] [011000] +20:08:27 [ 4] [ 12] [000100000000] +20:08:27 [ 7] [ 10] [0320200847] +20:08:27 [ 11] [ 6] [211837] +20:08:27 [ 12] [ 6] [195651] +20:08:27 [ 13] [ 4] [0320] +20:08:27 [ 14] [ 4] [4912] +20:08:27 [ 15] [ 4] [0320] +20:08:27 [ 18] [ 4] [6011] +20:08:27 [ 19] [ 3] [418] +20:08:27 [ 22] [ 3] [021] +20:08:27 [ 25] [ 2] [01] +20:08:27 [ 28] [ 9] [D00002000] +20:08:27 [ 32] [ 6] [198901] +20:08:27 [ 35] [ 32] [6213541000672033=491212017203169] +20:08:27 [ 37] [ 12] [507920211837] +20:08:27 [ 41] [ 8] [01529014] +20:08:27 [ 42] [ 15] [000000041529014] +20:08:27 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:08:27 [ 49] [ 3] [418] +20:08:27 [ 52] [ 16] [DC9D97543C45EABB] +20:08:27 ============================================================================ +20:08:27 + + +waiting on router queue for slot.... +20:08:27 Sending to : +20:08:27 ============================================================================ +20:08:27 Sending to : +20:08:27 ============================================================================ +20:08:27 ============================================================================ +20:08:27 Slot Id : <45> +20:08:27 Transaction Type : REQUEST +20:08:27 Received From : +20:08:27 ============================================================================ +20:08:27 FNo. Len. Field Value +20:08:27 ============================================================================ +20:08:27 [ 1] [ 4] [0200] +20:08:27 [ 2] [ 16] [6213541000672033] +20:08:27 [ 3] [ 6] [011000] +20:08:27 [ 4] [ 12] [000100000000] +20:08:27 [ 7] [ 10] [0320200847] +20:08:27 [ 11] [ 6] [211837] +20:08:27 [ 12] [ 6] [195651] +20:08:27 [ 13] [ 4] [0320] +20:08:27 [ 14] [ 4] [4912] +20:08:27 [ 15] [ 4] [0320] +20:08:27 [ 18] [ 4] [6011] +20:08:27 [ 19] [ 3] [418] +20:08:27 [ 22] [ 3] [021] +20:08:27 [ 25] [ 2] [01] +20:08:27 [ 28] [ 9] [D00002000] +20:08:27 [ 32] [ 6] [198901] +20:08:27 [ 35] [ 32] [6213541000672033=491212017203169] +20:08:27 [ 37] [ 12] [507920211837] +20:08:27 [ 41] [ 8] [01529014] +20:08:27 [ 42] [ 15] [000000041529014] +20:08:27 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:08:27 [ 49] [ 3] [418] +20:08:27 [ 52] [ 16] [DC9D97543C45EABB] +20:08:27 ============================================================================ +20:08:27 + + +waiting on router queue for slot.... +20:08:27 Sending to : +20:08:27 ============================================================================ +20:08:27 ============================================================================ +20:08:27 Slot Id : <45> +20:08:27 Transaction Type : REQUEST +20:08:27 Received From : +20:08:27 ============================================================================ +20:08:27 FNo. Len. Field Value +20:08:27 ============================================================================ +20:08:27 [ 1] [ 4] [0200] +20:08:27 [ 2] [ 16] [6213541000672033] +20:08:27 [ 3] [ 6] [011000] +20:08:27 [ 4] [ 12] [000100000000] +20:08:27 [ 7] [ 10] [0320200847] +20:08:27 [ 11] [ 6] [211837] +20:08:27 [ 12] [ 6] [195651] +20:08:27 [ 13] [ 4] [0320] +20:08:27 [ 14] [ 4] [4912] +20:08:27 [ 15] [ 4] [0320] +20:08:27 [ 18] [ 4] [6011] +20:08:27 [ 19] [ 3] [418] +20:08:27 [ 22] [ 3] [021] +20:08:27 [ 25] [ 2] [01] +20:08:27 [ 28] [ 9] [D00002000] +20:08:27 [ 32] [ 6] [198901] +20:08:27 [ 35] [ 32] [6213541000672033=491212017203169] +20:08:27 [ 37] [ 12] [507920211837] +20:08:27 [ 41] [ 8] [01529014] +20:08:27 [ 42] [ 15] [000000041529014] +20:08:27 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:08:27 [ 49] [ 3] [418] +20:08:27 [ 52] [ 16] [3D520585CA77A566] +20:08:27 ============================================================================ +20:08:27 + + +waiting on router queue for slot.... +20:08:27 Sending to : <0> +20:08:27 ============================================================================ +20:08:28 ============================================================================ +20:08:28 Slot Id : <45> +20:08:28 Transaction Type : RESPONSE +20:08:28 Received From : +20:08:28 ============================================================================ +20:08:28 FNo. Len. Field Value +20:08:28 ============================================================================ +20:08:28 [ 1] [ 4] [0210] +20:08:28 [ 2] [ 16] [6213541000672033] +20:08:28 [ 3] [ 6] [011000] +20:08:28 [ 4] [ 12] [000100000000] +20:08:28 [ 7] [ 10] [0320200847] +20:08:28 [ 11] [ 6] [211837] +20:08:28 [ 12] [ 6] [195651] +20:08:28 [ 13] [ 4] [0320] +20:08:28 [ 15] [ 4] [0320] +20:08:28 [ 18] [ 4] [6011] +20:08:28 [ 19] [ 3] [418] +20:08:28 [ 32] [ 6] [198901] +20:08:28 [ 35] [ 32] [6213541000672033=491212017203169] +20:08:28 [ 37] [ 12] [507920211837] +20:08:28 [ 38] [ 6] [529773] +20:08:28 [ 39] [ 2] [00] +20:08:28 [ 41] [ 8] [01529014] +20:08:28 [ 49] [ 3] [418] +20:08:28 [ 54] [ 40] [1001418C0012139648471002418C000612764847] +20:08:28 ============================================================================ +20:08:28 Sending to : +20:08:28 ============================================================================ +20:08:28 + + +waiting on router queue for slot.... +20:08:29 ============================================================================ +20:08:29 Slot Id : <45> +20:08:29 Transaction Type : RESPONSE +20:08:29 Received From : +20:08:29 ============================================================================ +20:08:29 FNo. Len. Field Value +20:08:29 ============================================================================ +20:08:29 [ 1] [ 4] [0210] +20:08:29 [ 2] [ 16] [6213541000672033] +20:08:29 [ 3] [ 6] [011000] +20:08:29 [ 4] [ 12] [000100000000] +20:08:29 [ 7] [ 10] [0320200847] +20:08:29 [ 11] [ 6] [211837] +20:08:29 [ 12] [ 6] [195651] +20:08:29 [ 13] [ 4] [0320] +20:08:29 [ 15] [ 4] [0320] +20:08:29 [ 18] [ 4] [6011] +20:08:29 [ 19] [ 3] [418] +20:08:29 [ 32] [ 6] [198901] +20:08:29 [ 35] [ 32] [6213541000672033=491212017203169] +20:08:29 [ 37] [ 12] [507920211837] +20:08:29 [ 38] [ 6] [529773] +20:08:29 [ 39] [ 2] [00] +20:08:29 [ 41] [ 8] [01529014] +20:08:29 [ 49] [ 3] [418] +20:08:29 [ 54] [ 40] [1001418C0012139648471002418C000612764847] +20:08:29 ============================================================================ +20:08:29 Calculate Source COMM Id = 5 +20:08:29 ============================================================================ +20:08:29 + + +waiting on router queue for slot.... +20:08:33 ============================================================================ +20:08:33 Slot Id : <37> +20:08:33 Transaction Type : REQUEST +20:08:33 Received From : +20:08:33 ============================================================================ +20:08:33 FNo. Len. Field Value +20:08:33 ============================================================================ +20:08:33 [ 1] [ 4] [0800] +20:08:33 [ 7] [ 10] [0320010740] +20:08:33 [ 11] [ 6] [158129] +20:08:33 [ 70] [ 3] [301] +20:08:33 ============================================================================ +20:08:33 + + +waiting on router queue for slot.... +20:08:33 Sending to : +20:08:33 ============================================================================ +20:08:33 ============================================================================ +20:08:33 Slot Id : <37> +20:08:33 Transaction Type : RESPONSE +20:08:33 Received From : +20:08:33 ============================================================================ +20:08:33 FNo. Len. Field Value +20:08:33 ============================================================================ +20:08:33 [ 1] [ 4] [0810] +20:08:33 [ 7] [ 10] [0320010740] +20:08:33 [ 11] [ 6] [158129] +20:08:33 [ 39] [ 2] [00] +20:08:33 [ 70] [ 3] [301] +20:08:33 ============================================================================ +20:08:33 Calculate Source COMM Id = 2 +20:08:33 ============================================================================ +20:08:33 + + +waiting on router queue for slot.... +20:08:37 ============================================================================ +20:08:37 Slot Id : <36> +20:08:37 Transaction Type : REQUEST +20:08:37 Received From : +20:08:37 ============================================================================ +20:08:37 FNo. Len. Field Value +20:08:37 ============================================================================ +20:08:37 [ 1] [ 4] [0800] +20:08:37 [ 2] [ 5] [02531] +20:08:37 [ 3] [ 6] [579208] +20:08:37 [ 7] [ 10] [0320130837] +20:08:37 [ 11] [ 6] [807581] +20:08:37 [ 15] [ 10] [0320130837] +20:08:37 [ 37] [ 11] [57920807581] +20:08:37 [ 70] [ 3] [001] +20:08:37 ============================================================================ +20:08:37 + + +waiting on router queue for slot.... +20:08:37 ============================================================================ +20:08:37 Slot Id : <36> +20:08:37 Transaction Type : RESPONSE +20:08:37 Received From : +20:08:37 ============================================================================ +20:08:37 FNo. Len. Field Value +20:08:37 ============================================================================ +20:08:37 [ 1] [ 4] [0810] +20:08:37 [ 7] [ 10] [0320130837] +20:08:37 [ 11] [ 6] [807581] +20:08:37 [ 15] [ 4] [0320] +20:08:37 [ 37] [ 12] [57920807581] +20:08:37 [ 39] [ 2] [00] +20:08:37 [ 70] [ 3] [001] +20:08:37 ============================================================================ +20:08:37 Sending to : +20:08:37 ============================================================================ +20:08:37 + + +waiting on router queue for slot.... +20:08:43 ============================================================================ +20:08:43 Slot Id : <18> +20:08:43 Transaction Type : REQUEST +20:08:43 Received From : +20:08:43 ============================================================================ +20:08:43 FNo. Len. Field Value +20:08:43 ============================================================================ +20:08:43 [ 1] [ 4] [0800] +20:08:43 [ 7] [ 10] [0320010750] +20:08:43 [ 11] [ 6] [158130] +20:08:43 [ 70] [ 3] [301] +20:08:43 ============================================================================ +20:08:43 + + +waiting on router queue for slot.... +20:08:43 Sending to : +20:08:43 ============================================================================ +20:08:43 ============================================================================ +20:08:43 Slot Id : <18> +20:08:43 Transaction Type : RESPONSE +20:08:43 Received From : +20:08:43 ============================================================================ +20:08:43 FNo. Len. Field Value +20:08:43 ============================================================================ +20:08:43 [ 1] [ 4] [0810] +20:08:43 [ 7] [ 10] [0320010750] +20:08:43 [ 11] [ 6] [158130] +20:08:43 [ 39] [ 2] [00] +20:08:43 [ 70] [ 3] [301] +20:08:43 ============================================================================ +20:08:43 Calculate Source COMM Id = 2 +20:08:43 ============================================================================ +20:08:43 + + +waiting on router queue for slot.... +20:08:54 ============================================================================ +20:08:54 Slot Id : <40> +20:08:54 Transaction Type : REQUEST +20:08:54 Received From : +20:08:54 ============================================================================ +20:08:54 FNo. Len. Field Value +20:08:54 ============================================================================ +20:08:54 [ 1] [ 4] [0800] +20:08:54 [ 7] [ 10] [0320010801] +20:08:54 [ 11] [ 6] [158131] +20:08:54 [ 70] [ 3] [301] +20:08:54 ============================================================================ +20:08:54 + + +waiting on router queue for slot.... +20:08:54 Sending to : +20:08:54 ============================================================================ +20:08:54 ============================================================================ +20:08:54 Slot Id : <40> +20:08:54 Transaction Type : RESPONSE +20:08:54 Received From : +20:08:54 ============================================================================ +20:08:54 FNo. Len. Field Value +20:08:54 ============================================================================ +20:08:54 [ 1] [ 4] [0810] +20:08:54 [ 7] [ 10] [0320010801] +20:08:54 [ 11] [ 6] [158131] +20:08:54 [ 39] [ 2] [00] +20:08:54 [ 70] [ 3] [301] +20:08:54 ============================================================================ +20:08:54 Calculate Source COMM Id = 2 +20:08:54 ============================================================================ +20:08:54 + + +waiting on router queue for slot.... +20:09:04 ============================================================================ +20:09:04 Slot Id : <43> +20:09:04 Transaction Type : REQUEST +20:09:04 Received From : +20:09:04 ============================================================================ +20:09:04 FNo. Len. Field Value +20:09:04 ============================================================================ +20:09:04 [ 1] [ 4] [0800] +20:09:04 [ 7] [ 10] [0320010811] +20:09:04 [ 11] [ 6] [158132] +20:09:04 [ 70] [ 3] [301] +20:09:04 ============================================================================ +20:09:04 + + +waiting on router queue for slot.... +20:09:04 Sending to : +20:09:04 ============================================================================ +20:09:04 ============================================================================ +20:09:04 Slot Id : <43> +20:09:04 Transaction Type : RESPONSE +20:09:04 Received From : +20:09:04 ============================================================================ +20:09:04 FNo. Len. Field Value +20:09:04 ============================================================================ +20:09:04 [ 1] [ 4] [0810] +20:09:04 [ 7] [ 10] [0320010811] +20:09:04 [ 11] [ 6] [158132] +20:09:04 [ 39] [ 2] [00] +20:09:04 [ 70] [ 3] [301] +20:09:04 ============================================================================ +20:09:04 Calculate Source COMM Id = 2 +20:09:04 ============================================================================ +20:09:04 + + +waiting on router queue for slot.... +20:09:14 ============================================================================ +20:09:14 Slot Id : <28> +20:09:14 Transaction Type : REQUEST +20:09:14 Received From : +20:09:14 ============================================================================ +20:09:14 FNo. Len. Field Value +20:09:14 ============================================================================ +20:09:14 [ 1] [ 4] [0800] +20:09:14 [ 7] [ 10] [0320010821] +20:09:14 [ 11] [ 6] [158133] +20:09:14 [ 70] [ 3] [301] +20:09:14 ============================================================================ +20:09:14 + + +waiting on router queue for slot.... +20:09:14 Sending to : +20:09:14 ============================================================================ +20:09:14 ============================================================================ +20:09:14 Slot Id : <28> +20:09:14 Transaction Type : RESPONSE +20:09:14 Received From : +20:09:14 ============================================================================ +20:09:14 FNo. Len. Field Value +20:09:14 ============================================================================ +20:09:14 [ 1] [ 4] [0810] +20:09:14 [ 7] [ 10] [0320010821] +20:09:14 [ 11] [ 6] [158133] +20:09:14 [ 39] [ 2] [00] +20:09:14 [ 70] [ 3] [301] +20:09:14 ============================================================================ +20:09:14 Calculate Source COMM Id = 2 +20:09:14 ============================================================================ +20:09:14 + + +waiting on router queue for slot.... +20:09:16 ============================================================================ +20:09:16 Slot Id : <497> +20:09:16 Transaction Type : REQUEST +20:09:16 Received From : +20:09:16 ============================================================================ +20:09:16 FNo. Len. Field Value +20:09:16 ============================================================================ +20:09:16 [ 1] [ 4] [0200] +20:09:16 [ 2] [ 16] [1808930600033625] +20:09:16 [ 3] [ 6] [011000] +20:09:16 [ 4] [ 12] [000050000000] +20:09:16 [ 7] [ 10] [0320200911] +20:09:16 [ 11] [ 6] [840851] +20:09:16 [ 12] [ 6] [200911] +20:09:16 [ 13] [ 4] [0320] +20:09:16 [ 15] [ 4] [0320] +20:09:16 [ 18] [ 4] [6011] +20:09:16 [ 22] [ 3] [900] +20:09:16 [ 25] [ 2] [02] +20:09:16 [ 28] [ 9] [D00002000] +20:09:16 [ 32] [ 6] [621354] +20:09:16 [ 35] [ 27] [1808930600033625=1803500063] +20:09:16 [ 37] [ 12] [507905150638] +20:09:16 [ 41] [ 8] [09001900] +20:09:16 [ 42] [ 15] [NATIVE ] +20:09:16 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +20:09:16 [ 49] [ 3] [418] +20:09:16 [ 52] [ 16] [E008B7D80E93EE1F] +20:09:16 ============================================================================ +20:09:16 + + +waiting on router queue for slot.... +20:09:16 Sending to : +20:09:16 ============================================================================ +20:09:16 Sending to : +20:09:16 ============================================================================ +20:09:16 ============================================================================ +20:09:16 Slot Id : <497> +20:09:16 Transaction Type : REQUEST +20:09:16 Received From : +20:09:16 ============================================================================ +20:09:16 FNo. Len. Field Value +20:09:16 ============================================================================ +20:09:16 [ 1] [ 4] [0200] +20:09:16 [ 2] [ 16] [1808930600033625] +20:09:16 [ 3] [ 6] [011000] +20:09:16 [ 4] [ 12] [000050000000] +20:09:16 [ 7] [ 10] [0320200911] +20:09:16 [ 11] [ 6] [840851] +20:09:16 [ 12] [ 6] [200911] +20:09:16 [ 13] [ 4] [0320] +20:09:16 [ 15] [ 4] [0320] +20:09:16 [ 18] [ 4] [6011] +20:09:16 [ 22] [ 3] [900] +20:09:16 [ 25] [ 2] [02] +20:09:16 [ 28] [ 9] [D00002000] +20:09:16 [ 32] [ 6] [621354] +20:09:16 [ 35] [ 27] [1808930600033625=1803500063] +20:09:16 [ 37] [ 12] [507905150638] +20:09:16 [ 41] [ 8] [09001900] +20:09:16 [ 42] [ 15] [NATIVE ] +20:09:16 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +20:09:16 [ 49] [ 3] [418] +20:09:16 [ 52] [ 16] [E008B7D80E93EE1F] +20:09:16 ============================================================================ +20:09:16 + + +waiting on router queue for slot.... +20:09:16 Sending to : +20:09:16 ============================================================================ +20:09:16 ============================================================================ +20:09:16 Slot Id : <497> +20:09:16 Transaction Type : REQUEST +20:09:16 Received From : +20:09:16 ============================================================================ +20:09:16 FNo. Len. Field Value +20:09:16 ============================================================================ +20:09:16 [ 1] [ 4] [0200] +20:09:16 [ 2] [ 16] [1808930600033625] +20:09:16 [ 3] [ 6] [011000] +20:09:16 [ 4] [ 12] [000050000000] +20:09:16 [ 7] [ 10] [0320200911] +20:09:16 [ 11] [ 6] [840851] +20:09:16 [ 12] [ 6] [200911] +20:09:16 [ 13] [ 4] [0320] +20:09:16 [ 15] [ 4] [0320] +20:09:16 [ 18] [ 4] [6011] +20:09:16 [ 22] [ 3] [900] +20:09:16 [ 25] [ 2] [02] +20:09:16 [ 28] [ 9] [D00002000] +20:09:16 [ 32] [ 6] [621354] +20:09:16 [ 35] [ 27] [1808930600033625=1803500063] +20:09:16 [ 37] [ 12] [507905150638] +20:09:16 [ 41] [ 8] [09001900] +20:09:16 [ 42] [ 15] [NATIVE ] +20:09:16 [ 43] [ 40] [Chomephet unit2 Vientiane LAO] +20:09:16 [ 49] [ 3] [418] +20:09:16 [ 52] [ 16] [7E97A1F310A8AA64] +20:09:16 ============================================================================ +20:09:16 + + +waiting on router queue for slot.... +20:09:16 Sending to : <2> +20:09:16 ============================================================================ +20:09:17 ============================================================================ +20:09:17 Slot Id : <497> +20:09:17 Transaction Type : RESPONSE +20:09:17 Received From : +20:09:17 ============================================================================ +20:09:17 FNo. Len. Field Value +20:09:17 ============================================================================ +20:09:17 [ 1] [ 4] [0210] +20:09:17 [ 2] [ 16] [1808930600033625] +20:09:17 [ 3] [ 6] [011000] +20:09:17 [ 4] [ 12] [000050000000] +20:09:17 [ 6] [ 12] [000050000000] +20:09:17 [ 7] [ 10] [0320200911] +20:09:17 [ 11] [ 6] [840851] +20:09:17 [ 12] [ 6] [200911] +20:09:17 [ 13] [ 4] [0320] +20:09:17 [ 18] [ 4] [6011] +20:09:17 [ 19] [ 3] [418] +20:09:17 [ 22] [ 3] [021] +20:09:17 [ 28] [ 9] [D00002000] +20:09:17 [ 32] [ 6] [621354] +20:09:17 [ 35] [ 27] [1808930600033625=1803500063] +20:09:17 [ 37] [ 12] [507905150638] +20:09:17 [ 39] [ 2] [75] +20:09:17 [ 41] [ 8] [09001900] +20:09:17 [ 49] [ 3] [418] +20:09:17 [ 51] [ 3] [418] +20:09:17 [ 52] [ 16] [7E97A1F310A8AA64] +20:09:17 ============================================================================ +20:09:17 Sending to : +20:09:17 ============================================================================ +20:09:17 + + +waiting on router queue for slot.... +20:09:18 ============================================================================ +20:09:18 Slot Id : <497> +20:09:18 Transaction Type : RESPONSE +20:09:18 Received From : +20:09:18 ============================================================================ +20:09:18 FNo. Len. Field Value +20:09:18 ============================================================================ +20:09:18 [ 1] [ 4] [0210] +20:09:18 [ 2] [ 16] [1808930600033625] +20:09:18 [ 3] [ 6] [011000] +20:09:18 [ 4] [ 12] [000050000000] +20:09:18 [ 6] [ 12] [000050000000] +20:09:18 [ 7] [ 10] [0320200911] +20:09:18 [ 11] [ 6] [840851] +20:09:18 [ 12] [ 6] [200911] +20:09:18 [ 13] [ 4] [0320] +20:09:18 [ 18] [ 4] [6011] +20:09:18 [ 19] [ 3] [418] +20:09:18 [ 22] [ 3] [021] +20:09:18 [ 28] [ 9] [D00002000] +20:09:18 [ 32] [ 6] [621354] +20:09:18 [ 35] [ 27] [1808930600033625=1803500063] +20:09:18 [ 37] [ 12] [507905150638] +20:09:18 [ 39] [ 2] [75] +20:09:18 [ 41] [ 8] [09001900] +20:09:18 [ 49] [ 3] [418] +20:09:18 [ 51] [ 3] [418] +20:09:18 [ 52] [ 16] [7E97A1F310A8AA64] +20:09:18 ============================================================================ +20:09:18 Calculate Source COMM Id = 0 +20:09:18 ============================================================================ +20:09:18 + + +waiting on router queue for slot.... +20:09:27 ============================================================================ +20:09:27 Slot Id : <8> +20:09:27 Transaction Type : REQUEST +20:09:27 Received From : +20:09:27 ============================================================================ +20:09:27 FNo. Len. Field Value +20:09:27 ============================================================================ +20:09:27 [ 1] [ 4] [0200] +20:09:27 [ 2] [ 16] [6213545001113574] +20:09:27 [ 3] [ 6] [010000] +20:09:27 [ 4] [ 12] [000010000000] +20:09:27 [ 7] [ 10] [0320200716] +20:09:27 [ 11] [ 6] [956902] +20:09:27 [ 12] [ 6] [200716] +20:09:27 [ 13] [ 4] [0320] +20:09:27 [ 15] [ 4] [0320] +20:09:27 [ 18] [ 4] [6011] +20:09:27 [ 19] [ 3] [418] +20:09:27 [ 22] [ 3] [021] +20:09:27 [ 25] [ 2] [01] +20:09:27 [ 28] [ 9] [D00002000] +20:09:27 [ 32] [ 6] [668899] +20:09:27 [ 35] [ 32] [6213545001113574=491212011357193] +20:09:27 [ 37] [ 12] [507900845030] +20:09:27 [ 41] [ 8] [03015003] +20:09:27 [ 42] [ 15] [APT ] +20:09:27 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +20:09:27 [ 49] [ 3] [418] +20:09:27 [ 52] [ 16] [9B6078E53EB56202] +20:09:27 ============================================================================ +20:09:27 + + +waiting on router queue for slot.... +20:09:27 Sending to : +20:09:27 ============================================================================ +20:09:27 Sending to : +20:09:27 ============================================================================ +20:09:27 ============================================================================ +20:09:27 Slot Id : <8> +20:09:27 Transaction Type : REQUEST +20:09:27 Received From : +20:09:27 ============================================================================ +20:09:27 FNo. Len. Field Value +20:09:27 ============================================================================ +20:09:27 [ 1] [ 4] [0200] +20:09:27 [ 2] [ 16] [6213545001113574] +20:09:27 [ 3] [ 6] [010000] +20:09:27 [ 4] [ 12] [000010000000] +20:09:27 [ 7] [ 10] [0320200716] +20:09:27 [ 11] [ 6] [956902] +20:09:27 [ 12] [ 6] [200716] +20:09:27 [ 13] [ 4] [0320] +20:09:27 [ 15] [ 4] [0320] +20:09:27 [ 18] [ 4] [6011] +20:09:27 [ 19] [ 3] [418] +20:09:27 [ 22] [ 3] [021] +20:09:27 [ 25] [ 2] [01] +20:09:27 [ 28] [ 9] [D00002000] +20:09:27 [ 32] [ 6] [668899] +20:09:27 [ 35] [ 32] [6213545001113574=491212011357193] +20:09:27 [ 37] [ 12] [507900845030] +20:09:27 [ 41] [ 8] [03015003] +20:09:27 [ 42] [ 15] [APT ] +20:09:27 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +20:09:27 [ 49] [ 3] [418] +20:09:27 [ 52] [ 16] [9B6078E53EB56202] +20:09:27 ============================================================================ +20:09:27 + + +waiting on router queue for slot.... +20:09:27 Sending to : +20:09:27 ============================================================================ +20:09:27 ============================================================================ +20:09:27 Slot Id : <8> +20:09:27 Transaction Type : REQUEST +20:09:27 Received From : +20:09:27 ============================================================================ +20:09:27 FNo. Len. Field Value +20:09:27 ============================================================================ +20:09:27 [ 1] [ 4] [0200] +20:09:27 [ 2] [ 16] [6213545001113574] +20:09:27 [ 3] [ 6] [010000] +20:09:27 [ 4] [ 12] [000010000000] +20:09:27 [ 7] [ 10] [0320200716] +20:09:27 [ 11] [ 6] [956902] +20:09:27 [ 12] [ 6] [200716] +20:09:27 [ 13] [ 4] [0320] +20:09:27 [ 15] [ 4] [0320] +20:09:27 [ 18] [ 4] [6011] +20:09:27 [ 19] [ 3] [418] +20:09:27 [ 22] [ 3] [021] +20:09:27 [ 25] [ 2] [01] +20:09:27 [ 28] [ 9] [D00002000] +20:09:27 [ 32] [ 6] [668899] +20:09:27 [ 35] [ 32] [6213545001113574=491212011357193] +20:09:27 [ 37] [ 12] [507900845030] +20:09:27 [ 41] [ 8] [03015003] +20:09:27 [ 42] [ 15] [APT ] +20:09:27 [ 43] [ 40] [ TANGCHALEUN MARKET PAKSE ] +20:09:27 [ 49] [ 3] [418] +20:09:27 [ 52] [ 16] [10326BAD51385500] +20:09:27 ============================================================================ +20:09:27 + + +waiting on router queue for slot.... +20:09:27 Sending to : <0> +20:09:27 ============================================================================ +20:09:28 ============================================================================ +20:09:28 Slot Id : <8> +20:09:28 Transaction Type : RESPONSE +20:09:28 Received From : +20:09:28 ============================================================================ +20:09:28 FNo. Len. Field Value +20:09:28 ============================================================================ +20:09:28 [ 1] [ 4] [0210] +20:09:28 [ 2] [ 16] [6213545001113574] +20:09:28 [ 3] [ 6] [010000] +20:09:28 [ 4] [ 12] [000010000000] +20:09:28 [ 7] [ 10] [0320200716] +20:09:28 [ 11] [ 6] [956902] +20:09:28 [ 12] [ 6] [200716] +20:09:28 [ 13] [ 4] [0320] +20:09:28 [ 15] [ 4] [0320] +20:09:28 [ 18] [ 4] [6011] +20:09:28 [ 19] [ 3] [418] +20:09:28 [ 32] [ 6] [668899] +20:09:28 [ 35] [ 32] [6213545001113574=491212011357193] +20:09:28 [ 37] [ 12] [507900845030] +20:09:28 [ 38] [ 6] [228640] +20:09:28 [ 39] [ 2] [00] +20:09:28 [ 41] [ 8] [03015003] +20:09:28 [ 49] [ 3] [418] +20:09:28 [ 54] [ 40] [0001418C0002423540530002418C000242354053] +20:09:28 ============================================================================ +20:09:28 Sending to : +20:09:28 ============================================================================ +20:09:28 + + +waiting on router queue for slot.... +20:09:29 ============================================================================ +20:09:29 Slot Id : <8> +20:09:29 Transaction Type : RESPONSE +20:09:29 Received From : +20:09:29 ============================================================================ +20:09:29 FNo. Len. Field Value +20:09:29 ============================================================================ +20:09:29 [ 1] [ 4] [0210] +20:09:29 [ 2] [ 16] [6213545001113574] +20:09:29 [ 3] [ 6] [010000] +20:09:29 [ 4] [ 12] [000010000000] +20:09:29 [ 7] [ 10] [0320200716] +20:09:29 [ 11] [ 6] [956902] +20:09:29 [ 12] [ 6] [200716] +20:09:29 [ 13] [ 4] [0320] +20:09:29 [ 15] [ 4] [0320] +20:09:29 [ 18] [ 4] [6011] +20:09:29 [ 19] [ 3] [418] +20:09:29 [ 32] [ 6] [668899] +20:09:29 [ 35] [ 32] [6213545001113574=491212011357193] +20:09:29 [ 37] [ 12] [507900845030] +20:09:29 [ 38] [ 6] [228640] +20:09:29 [ 39] [ 2] [00] +20:09:29 [ 41] [ 8] [03015003] +20:09:29 [ 49] [ 3] [418] +20:09:29 [ 54] [ 40] [0001418C0002423540530002418C000242354053] +20:09:29 ============================================================================ +20:09:29 Calculate Source COMM Id = 4 +20:09:29 ============================================================================ +20:09:29 + + +waiting on router queue for slot.... +20:09:30 ============================================================================ +20:09:30 Slot Id : <55> +20:09:30 Transaction Type : REQUEST +20:09:30 Received From : +20:09:30 ============================================================================ +20:09:30 FNo. Len. Field Value +20:09:30 ============================================================================ +20:09:30 [ 1] [ 4] [0800] +20:09:30 [ 7] [ 10] [0320010837] +20:09:30 [ 11] [ 6] [158134] +20:09:30 [ 70] [ 3] [301] +20:09:30 ============================================================================ +20:09:30 + + +waiting on router queue for slot.... +20:09:30 Sending to : +20:09:30 ============================================================================ +20:09:30 ============================================================================ +20:09:30 Slot Id : <55> +20:09:30 Transaction Type : RESPONSE +20:09:30 Received From : +20:09:30 ============================================================================ +20:09:30 FNo. Len. Field Value +20:09:30 ============================================================================ +20:09:30 [ 1] [ 4] [0810] +20:09:30 [ 7] [ 10] [0320010837] +20:09:30 [ 11] [ 6] [158134] +20:09:30 [ 39] [ 2] [00] +20:09:30 [ 70] [ 3] [301] +20:09:30 ============================================================================ +20:09:30 Calculate Source COMM Id = 2 +20:09:30 ============================================================================ +20:09:30 + + +waiting on router queue for slot.... +20:09:39 ============================================================================ +20:09:39 Slot Id : <7> +20:09:39 Transaction Type : REQUEST +20:09:39 Received From : +20:09:39 ============================================================================ +20:09:39 FNo. Len. Field Value +20:09:39 ============================================================================ +20:09:39 [ 1] [ 4] [0800] +20:09:39 [ 2] [ 5] [02531] +20:09:39 [ 3] [ 6] [579208] +20:09:39 [ 7] [ 10] [0320130939] +20:09:39 [ 11] [ 6] [807582] +20:09:39 [ 15] [ 10] [0320130939] +20:09:39 [ 37] [ 11] [57920807582] +20:09:39 [ 70] [ 3] [001] +20:09:39 ============================================================================ +20:09:39 + + +waiting on router queue for slot.... +20:09:39 ============================================================================ +20:09:39 Slot Id : <7> +20:09:39 Transaction Type : RESPONSE +20:09:39 Received From : +20:09:39 ============================================================================ +20:09:39 FNo. Len. Field Value +20:09:39 ============================================================================ +20:09:39 [ 1] [ 4] [0810] +20:09:39 [ 7] [ 10] [0320130939] +20:09:39 [ 11] [ 6] [807582] +20:09:39 [ 15] [ 4] [0320] +20:09:39 [ 37] [ 12] [57920807582] +20:09:39 [ 39] [ 2] [00] +20:09:39 [ 70] [ 3] [001] +20:09:39 ============================================================================ +20:09:39 Sending to : +20:09:39 ============================================================================ +20:09:39 + + +waiting on router queue for slot.... +20:09:41 ============================================================================ +20:09:41 Slot Id : <467> +20:09:41 Transaction Type : REQUEST +20:09:41 Received From : +20:09:41 ============================================================================ +20:09:41 FNo. Len. Field Value +20:09:41 ============================================================================ +20:09:41 [ 1] [ 4] [0800] +20:09:41 [ 7] [ 10] [0320010847] +20:09:41 [ 11] [ 6] [158135] +20:09:41 [ 70] [ 3] [301] +20:09:41 ============================================================================ +20:09:41 + + +waiting on router queue for slot.... +20:09:41 Sending to : +20:09:41 ============================================================================ +20:09:41 ============================================================================ +20:09:41 Slot Id : <467> +20:09:41 Transaction Type : RESPONSE +20:09:41 Received From : +20:09:41 ============================================================================ +20:09:41 FNo. Len. Field Value +20:09:41 ============================================================================ +20:09:41 [ 1] [ 4] [0810] +20:09:41 [ 7] [ 10] [0320010847] +20:09:41 [ 11] [ 6] [158135] +20:09:41 [ 39] [ 2] [00] +20:09:41 [ 70] [ 3] [301] +20:09:41 ============================================================================ +20:09:41 Calculate Source COMM Id = 2 +20:09:41 ============================================================================ +20:09:41 + + +waiting on router queue for slot.... +20:09:53 ============================================================================ +20:09:53 Slot Id : <52> +20:09:53 Transaction Type : REQUEST +20:09:53 Received From : +20:09:53 ============================================================================ +20:09:53 FNo. Len. Field Value +20:09:53 ============================================================================ +20:09:53 [ 1] [ 4] [0800] +20:09:53 [ 7] [ 10] [0320010900] +20:09:53 [ 11] [ 6] [158136] +20:09:53 [ 70] [ 3] [301] +20:09:53 ============================================================================ +20:09:53 + + +waiting on router queue for slot.... +20:09:53 Sending to : +20:09:53 ============================================================================ +20:09:53 ============================================================================ +20:09:53 Slot Id : <52> +20:09:53 Transaction Type : RESPONSE +20:09:53 Received From : +20:09:53 ============================================================================ +20:09:53 FNo. Len. Field Value +20:09:53 ============================================================================ +20:09:53 [ 1] [ 4] [0810] +20:09:53 [ 7] [ 10] [0320010900] +20:09:53 [ 11] [ 6] [158136] +20:09:53 [ 39] [ 2] [00] +20:09:53 [ 70] [ 3] [301] +20:09:53 ============================================================================ +20:09:53 Calculate Source COMM Id = 2 +20:09:53 ============================================================================ +20:09:53 + + +waiting on router queue for slot.... +20:09:57 ============================================================================ +20:09:57 Slot Id : <61> +20:09:57 Transaction Type : REQUEST +20:09:57 Received From : +20:09:57 ============================================================================ +20:09:57 FNo. Len. Field Value +20:09:57 ============================================================================ +20:09:57 [ 1] [ 4] [0800] +20:09:57 [ 7] [ 10] [0320131742] +20:09:57 [ 11] [ 6] [026471] +20:09:57 [ 37] [ 12] [57920026471] +20:09:57 [ 70] [ 3] [301] +20:09:57 ============================================================================ +20:09:57 + + +waiting on router queue for slot.... +20:09:57 Sending to : +20:09:57 ============================================================================ +20:09:57 ============================================================================ +20:09:57 Slot Id : <61> +20:09:57 Transaction Type : RESPONSE +20:09:57 Received From : +20:09:57 ============================================================================ +20:09:57 FNo. Len. Field Value +20:09:57 ============================================================================ +20:09:57 [ 1] [ 4] [0810] +20:09:57 [ 7] [ 10] [0320131742] +20:09:57 [ 11] [ 6] [026471] +20:09:57 [ 37] [ 12] [579200264710] +20:09:57 [ 39] [ 2] [00] +20:09:57 [ 70] [ 3] [810] +20:09:57 ============================================================================ +20:09:57 Calculate Source COMM Id = 1 +20:09:57 ============================================================================ +20:09:57 + + +waiting on router queue for slot.... +20:10:04 ============================================================================ +20:10:04 Slot Id : <44> +20:10:04 Transaction Type : REQUEST +20:10:04 Received From : +20:10:04 ============================================================================ +20:10:04 FNo. Len. Field Value +20:10:04 ============================================================================ +20:10:04 [ 1] [ 4] [0200] +20:10:04 [ 2] [ 16] [6213541000672033] +20:10:04 [ 3] [ 6] [301000] +20:10:04 [ 4] [ 12] [000000000000] +20:10:04 [ 7] [ 10] [0320201024] +20:10:04 [ 11] [ 6] [211863] +20:10:04 [ 12] [ 6] [195828] +20:10:04 [ 13] [ 4] [0320] +20:10:04 [ 14] [ 4] [4912] +20:10:04 [ 15] [ 4] [0320] +20:10:04 [ 18] [ 4] [6011] +20:10:04 [ 19] [ 3] [418] +20:10:04 [ 22] [ 3] [021] +20:10:04 [ 25] [ 2] [01] +20:10:04 [ 28] [ 9] [D00000000] +20:10:04 [ 32] [ 6] [198901] +20:10:04 [ 35] [ 32] [6213541000672033=491212017203169] +20:10:04 [ 37] [ 12] [507920211863] +20:10:04 [ 41] [ 8] [01529014] +20:10:04 [ 42] [ 15] [000000041529014] +20:10:04 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:10:04 [ 49] [ 3] [418] +20:10:04 [ 52] [ 16] [DC9D97543C45EABB] +20:10:04 ============================================================================ +20:10:04 + + +waiting on router queue for slot.... +20:10:04 Sending to : +20:10:04 ============================================================================ +20:10:04 Sending to : +20:10:04 ============================================================================ +20:10:04 ============================================================================ +20:10:04 Slot Id : <50> +20:10:04 Transaction Type : REQUEST +20:10:04 Received From : +20:10:04 ============================================================================ +20:10:04 FNo. Len. Field Value +20:10:04 ============================================================================ +20:10:04 [ 1] [ 4] [0800] +20:10:04 [ 7] [ 10] [0320010911] +20:10:04 [ 11] [ 6] [158137] +20:10:04 [ 70] [ 3] [301] +20:10:04 ============================================================================ +20:10:04 + + +waiting on router queue for slot.... +20:10:04 Sending to : +20:10:04 ============================================================================ +20:10:04 ============================================================================ +20:10:04 Slot Id : <50> +20:10:04 Transaction Type : RESPONSE +20:10:04 Received From : +20:10:04 ============================================================================ +20:10:04 FNo. Len. Field Value +20:10:04 ============================================================================ +20:10:04 [ 1] [ 4] [0810] +20:10:04 [ 7] [ 10] [0320010911] +20:10:04 [ 11] [ 6] [158137] +20:10:04 [ 39] [ 2] [00] +20:10:04 [ 70] [ 3] [301] +20:10:04 ============================================================================ +20:10:04 Calculate Source COMM Id = 2 +20:10:04 ============================================================================ +20:10:04 + + +waiting on router queue for slot.... +20:10:04 ============================================================================ +20:10:04 Slot Id : <44> +20:10:04 Transaction Type : REQUEST +20:10:04 Received From : +20:10:04 ============================================================================ +20:10:04 FNo. Len. Field Value +20:10:04 ============================================================================ +20:10:04 [ 1] [ 4] [0200] +20:10:04 [ 2] [ 16] [6213541000672033] +20:10:04 [ 3] [ 6] [301000] +20:10:04 [ 4] [ 12] [000000000000] +20:10:04 [ 7] [ 10] [0320201024] +20:10:04 [ 11] [ 6] [211863] +20:10:04 [ 12] [ 6] [195828] +20:10:04 [ 13] [ 4] [0320] +20:10:04 [ 14] [ 4] [4912] +20:10:04 [ 15] [ 4] [0320] +20:10:04 [ 18] [ 4] [6011] +20:10:04 [ 19] [ 3] [418] +20:10:04 [ 22] [ 3] [021] +20:10:04 [ 25] [ 2] [01] +20:10:04 [ 28] [ 9] [D00000000] +20:10:04 [ 32] [ 6] [198901] +20:10:04 [ 35] [ 32] [6213541000672033=491212017203169] +20:10:04 [ 37] [ 12] [507920211863] +20:10:04 [ 41] [ 8] [01529014] +20:10:04 [ 42] [ 15] [000000041529014] +20:10:04 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:10:04 [ 49] [ 3] [418] +20:10:04 [ 52] [ 16] [DC9D97543C45EABB] +20:10:04 ============================================================================ +20:10:04 + + +waiting on router queue for slot.... +20:10:04 Sending to : +20:10:04 ============================================================================ +20:10:04 ============================================================================ +20:10:04 Slot Id : <44> +20:10:04 Transaction Type : REQUEST +20:10:04 Received From : +20:10:04 ============================================================================ +20:10:04 FNo. Len. Field Value +20:10:04 ============================================================================ +20:10:04 [ 1] [ 4] [0200] +20:10:04 [ 2] [ 16] [6213541000672033] +20:10:04 [ 3] [ 6] [301000] +20:10:04 [ 4] [ 12] [000000000000] +20:10:04 [ 7] [ 10] [0320201024] +20:10:04 [ 11] [ 6] [211863] +20:10:04 [ 12] [ 6] [195828] +20:10:04 [ 13] [ 4] [0320] +20:10:04 [ 14] [ 4] [4912] +20:10:04 [ 15] [ 4] [0320] +20:10:04 [ 18] [ 4] [6011] +20:10:04 [ 19] [ 3] [418] +20:10:04 [ 22] [ 3] [021] +20:10:04 [ 25] [ 2] [01] +20:10:04 [ 28] [ 9] [D00000000] +20:10:04 [ 32] [ 6] [198901] +20:10:04 [ 35] [ 32] [6213541000672033=491212017203169] +20:10:04 [ 37] [ 12] [507920211863] +20:10:04 [ 41] [ 8] [01529014] +20:10:04 [ 42] [ 15] [000000041529014] +20:10:04 [ 43] [ 40] [JDB ATM TOA COMPANY VN ] +20:10:04 [ 49] [ 3] [418] +20:10:04 [ 52] [ 16] [3D520585CA77A566] +20:10:04 ============================================================================ +20:10:04 + + +waiting on router queue for slot.... +20:10:04 Sending to : <0> +20:10:04 ============================================================================ +20:10:05 ============================================================================ +20:10:05 Slot Id : <44> +20:10:05 Transaction Type : RESPONSE +20:10:05 Received From : +20:10:05 ============================================================================ +20:10:05 FNo. Len. Field Value +20:10:05 ============================================================================ +20:10:05 [ 1] [ 4] [0210] +20:10:05 [ 2] [ 16] [6213541000672033] +20:10:05 [ 3] [ 6] [301000] +20:10:05 [ 4] [ 12] [000000000000] +20:10:05 [ 7] [ 10] [0320201024] +20:10:05 [ 11] [ 6] [211863] +20:10:05 [ 12] [ 6] [195828] +20:10:05 [ 13] [ 4] [0320] +20:10:05 [ 15] [ 4] [0320] +20:10:05 [ 18] [ 4] [6011] +20:10:05 [ 19] [ 3] [418] +20:10:05 [ 32] [ 6] [198901] +20:10:05 [ 35] [ 32] [6213541000672033=491212017203169] +20:10:05 [ 37] [ 12] [507920211863] +20:10:05 [ 38] [ 6] [551583] +20:10:05 [ 39] [ 2] [00] +20:10:05 [ 41] [ 8] [01529014] +20:10:05 [ 49] [ 3] [418] +20:10:05 [ 54] [ 40] [1001418C0012139648471002418C000612764847] +20:10:05 ============================================================================ +20:10:05 Sending to : +20:10:05 ============================================================================ +20:10:05 + + +waiting on router queue for slot.... +20:10:06 ============================================================================ +20:10:06 Slot Id : <44> +20:10:06 Transaction Type : RESPONSE +20:10:06 Received From : +20:10:06 ============================================================================ +20:10:06 FNo. Len. Field Value +20:10:06 ============================================================================ +20:10:06 [ 1] [ 4] [0210] +20:10:06 [ 2] [ 16] [6213541000672033] +20:10:06 [ 3] [ 6] [301000] +20:10:06 [ 4] [ 12] [000000000000] +20:10:06 [ 7] [ 10] [0320201024] +20:10:06 [ 11] [ 6] [211863] +20:10:06 [ 12] [ 6] [195828] +20:10:06 [ 13] [ 4] [0320] +20:10:06 [ 15] [ 4] [0320] +20:10:06 [ 18] [ 4] [6011] +20:10:06 [ 19] [ 3] [418] +20:10:06 [ 32] [ 6] [198901] +20:10:06 [ 35] [ 32] [6213541000672033=491212017203169] +20:10:06 [ 37] [ 12] [507920211863] +20:10:06 [ 38] [ 6] [551583] +20:10:06 [ 39] [ 2] [00] +20:10:06 [ 41] [ 8] [01529014] +20:10:06 [ 49] [ 3] [418] +20:10:06 [ 54] [ 40] [1001418C0012139648471002418C000612764847] +20:10:06 ============================================================================ +20:10:06 Calculate Source COMM Id = 5 +20:10:06 ============================================================================ +20:10:06 + + +waiting on router queue for slot.... +20:10:15 ============================================================================ +20:10:15 Slot Id : <25> +20:10:15 Transaction Type : REQUEST +20:10:15 Received From : +20:10:15 ============================================================================ +20:10:15 FNo. Len. Field Value +20:10:15 ============================================================================ +20:10:15 [ 1] [ 4] [0800] +20:10:15 [ 7] [ 10] [0320010922] +20:10:15 [ 11] [ 6] [158138] +20:10:15 [ 70] [ 3] [301] +20:10:15 ============================================================================ +20:10:15 + + +waiting on router queue for slot.... +20:10:15 Sending to : +20:10:15 ============================================================================ +20:10:15 ============================================================================ +20:10:15 Slot Id : <25> +20:10:15 Transaction Type : RESPONSE +20:10:15 Received From : +20:10:15 ============================================================================ +20:10:15 FNo. Len. Field Value +20:10:15 ============================================================================ +20:10:15 [ 1] [ 4] [0810] +20:10:15 [ 7] [ 10] [0320010922] +20:10:15 [ 11] [ 6] [158138] +20:10:15 [ 39] [ 2] [00] +20:10:15 [ 70] [ 3] [301] +20:10:15 ============================================================================ +20:10:15 Calculate Source COMM Id = 2 +20:10:15 ============================================================================ +20:10:15 + + +waiting on router queue for slot.... +20:10:26 ============================================================================ +20:10:26 Slot Id : <15> +20:10:26 Transaction Type : REQUEST +20:10:26 Received From : +20:10:26 ============================================================================ +20:10:26 FNo. Len. Field Value +20:10:26 ============================================================================ +20:10:26 [ 1] [ 4] [0800] +20:10:26 [ 7] [ 10] [0320010933] +20:10:26 [ 11] [ 6] [158139] +20:10:26 [ 70] [ 3] [301] +20:10:26 ============================================================================ +20:10:26 + + +waiting on router queue for slot.... +20:10:26 Sending to : +20:10:26 ============================================================================ +20:10:26 ============================================================================ +20:10:26 Slot Id : <15> +20:10:26 Transaction Type : RESPONSE +20:10:26 Received From : +20:10:26 ============================================================================ +20:10:26 FNo. Len. Field Value +20:10:26 ============================================================================ +20:10:26 [ 1] [ 4] [0810] +20:10:26 [ 7] [ 10] [0320010933] +20:10:26 [ 11] [ 6] [158139] +20:10:26 [ 39] [ 2] [00] +20:10:26 [ 70] [ 3] [301] +20:10:26 ============================================================================ +20:10:26 Calculate Source COMM Id = 2 +20:10:26 ============================================================================ +20:10:26 + + +waiting on router queue for slot.... +20:10:37 ============================================================================ +20:10:37 Slot Id : <60> +20:10:37 Transaction Type : REQUEST +20:10:37 Received From : +20:10:37 ============================================================================ +20:10:37 FNo. Len. Field Value +20:10:37 ============================================================================ +20:10:37 [ 1] [ 4] [0800] +20:10:37 [ 7] [ 10] [0320010945] +20:10:37 [ 11] [ 6] [158140] +20:10:37 [ 70] [ 3] [301] +20:10:37 ============================================================================ +20:10:37 + + +waiting on router queue for slot.... +20:10:37 Sending to : +20:10:37 ============================================================================ +20:10:37 ============================================================================ +20:10:37 Slot Id : <60> +20:10:37 Transaction Type : RESPONSE +20:10:37 Received From : +20:10:37 ============================================================================ +20:10:37 FNo. Len. Field Value +20:10:37 ============================================================================ +20:10:37 [ 1] [ 4] [0810] +20:10:37 [ 7] [ 10] [0320010945] +20:10:37 [ 11] [ 6] [158140] +20:10:37 [ 39] [ 2] [00] +20:10:37 [ 70] [ 3] [301] +20:10:37 ============================================================================ +20:10:37 Calculate Source COMM Id = 2 +20:10:37 ============================================================================ +20:10:37 + + +waiting on router queue for slot.... +20:10:41 ============================================================================ +20:10:41 Slot Id : <478> +20:10:41 Transaction Type : REQUEST +20:10:41 Received From : +20:10:41 ============================================================================ +20:10:41 FNo. Len. Field Value +20:10:41 ============================================================================ +20:10:41 [ 1] [ 4] [0800] +20:10:41 [ 2] [ 5] [02531] +20:10:41 [ 3] [ 6] [579208] +20:10:41 [ 7] [ 10] [0320131041] +20:10:41 [ 11] [ 6] [807583] +20:10:41 [ 15] [ 10] [0320131041] +20:10:41 [ 37] [ 11] [57920807583] +20:10:41 [ 70] [ 3] [001] +20:10:41 ============================================================================ +20:10:41 + + +waiting on router queue for slot.... +20:10:41 ============================================================================ +20:10:41 Slot Id : <478> +20:10:41 Transaction Type : RESPONSE +20:10:41 Received From : +20:10:41 ============================================================================ +20:10:41 FNo. Len. Field Value +20:10:41 ============================================================================ +20:10:41 [ 1] [ 4] [0810] +20:10:41 [ 7] [ 10] [0320131041] +20:10:41 [ 11] [ 6] [807583] +20:10:41 [ 15] [ 4] [0320] +20:10:41 [ 37] [ 12] [57920807583] +20:10:41 [ 39] [ 2] [00] +20:10:41 [ 70] [ 3] [001] +20:10:41 ============================================================================ +20:10:41 Sending to : +20:10:41 ============================================================================ +20:10:41 + + +waiting on router queue for slot.... +20:10:47 ============================================================================ +20:10:47 Slot Id : <63> +20:10:47 Transaction Type : REQUEST +20:10:47 Received From : +20:10:47 ============================================================================ +20:10:47 FNo. Len. Field Value +20:10:47 ============================================================================ +20:10:47 [ 1] [ 4] [0800] +20:10:47 [ 7] [ 10] [0320010956] +20:10:47 [ 11] [ 6] [158141] +20:10:47 [ 70] [ 3] [301] +20:10:47 ============================================================================ +20:10:47 + + +waiting on router queue for slot.... +20:10:47 Sending to : +20:10:47 ============================================================================ +20:10:47 ============================================================================ +20:10:47 Slot Id : <63> +20:10:47 Transaction Type : RESPONSE +20:10:47 Received From : +20:10:47 ============================================================================ +20:10:47 FNo. Len. Field Value +20:10:47 ============================================================================ +20:10:47 [ 1] [ 4] [0810] +20:10:47 [ 7] [ 10] [0320010956] +20:10:47 [ 11] [ 6] [158141] +20:10:47 [ 39] [ 2] [00] +20:10:47 [ 70] [ 3] [301] +20:10:47 ============================================================================ +20:10:47 Calculate Source COMM Id = 2 +20:10:47 ============================================================================ +20:10:47 + + +waiting on router queue for slot.... +20:10:52 ============================================================================ +20:10:52 Slot Id : <73> +20:10:52 Transaction Type : REQUEST +20:10:52 Received From : +20:10:52 ============================================================================ +20:10:52 FNo. Len. Field Value +20:10:52 ============================================================================ +20:10:52 [ 1] [ 4] [0200] +20:10:52 [ 2] [ 16] [6213544001849766] +20:10:52 [ 3] [ 6] [010000] +20:10:52 [ 4] [ 12] [000010000000] +20:10:52 [ 7] [ 10] [0320130959] +20:10:52 [ 11] [ 6] [271556] +20:10:52 [ 12] [ 6] [200959] +20:10:52 [ 13] [ 4] [0320] +20:10:52 [ 14] [ 4] [4912] +20:10:52 [ 15] [ 4] [0320] +20:10:52 [ 18] [ 4] [6011] +20:10:52 [ 19] [ 3] [418] +20:10:52 [ 22] [ 3] [021] +20:10:52 [ 25] [ 2] [01] +20:10:52 [ 28] [ 9] [D00002000] +20:10:52 [ 32] [ 6] [180893] +20:10:52 [ 35] [ 32] [6213544001849766=491212014976278] +20:10:52 [ 37] [ 12] [507913271556] +20:10:52 [ 41] [ 8] [0461BKPO] +20:10:52 [ 42] [ 15] [999999 ] +20:10:52 [ 43] [ 40] [ATM BORKEO PAROY, Hauysay, Lao People ] +20:10:52 [ 49] [ 3] [418] +20:10:52 [ 52] [ 16] [3EBCF5A194586C33] +20:10:52 ============================================================================ +20:10:52 + + +waiting on router queue for slot.... +20:10:52 Sending to : +20:10:52 ============================================================================ +20:10:52 Sending to : +20:10:52 ============================================================================ +20:10:52 ============================================================================ +20:10:52 Slot Id : <73> +20:10:52 Transaction Type : REQUEST +20:10:52 Received From : +20:10:52 ============================================================================ +20:10:52 FNo. Len. Field Value +20:10:52 ============================================================================ +20:10:52 [ 1] [ 4] [0200] +20:10:52 [ 2] [ 16] [6213544001849766] +20:10:52 [ 3] [ 6] [010000] +20:10:52 [ 4] [ 12] [000010000000] +20:10:52 [ 7] [ 10] [0320130959] +20:10:52 [ 11] [ 6] [271556] +20:10:52 [ 12] [ 6] [200959] +20:10:52 [ 13] [ 4] [0320] +20:10:52 [ 14] [ 4] [4912] +20:10:52 [ 15] [ 4] [0320] +20:10:52 [ 18] [ 4] [6011] +20:10:52 [ 19] [ 3] [418] +20:10:52 [ 22] [ 3] [021] +20:10:52 [ 25] [ 2] [01] +20:10:52 [ 28] [ 9] [D00002000] +20:10:52 [ 32] [ 6] [180893] +20:10:52 [ 35] [ 32] [6213544001849766=491212014976278] +20:10:52 [ 37] [ 12] [507913271556] +20:10:52 [ 41] [ 8] [0461BKPO] +20:10:52 [ 42] [ 15] [999999 ] +20:10:52 [ 43] [ 40] [ATM BORKEO PAROY, Hauysay, Lao People ] +20:10:52 [ 49] [ 3] [418] +20:10:52 [ 52] [ 16] [3EBCF5A194586C33] +20:10:52 ============================================================================ +20:10:52 + + +waiting on router queue for slot.... +20:10:52 Sending to : +20:10:52 ============================================================================ +20:10:52 ============================================================================ +20:10:52 Slot Id : <73> +20:10:52 Transaction Type : REQUEST +20:10:52 Received From : +20:10:52 ============================================================================ +20:10:52 FNo. Len. Field Value +20:10:52 ============================================================================ +20:10:52 [ 1] [ 4] [0200] +20:10:52 [ 2] [ 16] [6213544001849766] +20:10:52 [ 3] [ 6] [010000] +20:10:52 [ 4] [ 12] [000010000000] +20:10:52 [ 7] [ 10] [0320130959] +20:10:52 [ 11] [ 6] [271556] +20:10:52 [ 12] [ 6] [200959] +20:10:52 [ 13] [ 4] [0320] +20:10:52 [ 14] [ 4] [4912] +20:10:52 [ 15] [ 4] [0320] +20:10:52 [ 18] [ 4] [6011] +20:10:52 [ 19] [ 3] [418] +20:10:52 [ 22] [ 3] [021] +20:10:52 [ 25] [ 2] [01] +20:10:52 [ 28] [ 9] [D00002000] +20:10:52 [ 32] [ 6] [180893] +20:10:52 [ 35] [ 32] [6213544001849766=491212014976278] +20:10:52 [ 37] [ 12] [507913271556] +20:10:52 [ 41] [ 8] [0461BKPO] +20:10:52 [ 42] [ 15] [999999 ] +20:10:52 [ 43] [ 40] [ATM BORKEO PAROY, Hauysay, Lao People ] +20:10:52 [ 49] [ 3] [418] +20:10:52 [ 52] [ 16] [7D4CACA4A94912A5] +20:10:52 ============================================================================ +20:10:52 + + +waiting on router queue for slot.... +20:10:52 Sending to : <0> +20:10:52 ============================================================================ +20:10:52 ============================================================================ +20:10:52 Slot Id : <73> +20:10:52 Transaction Type : RESPONSE +20:10:52 Received From : +20:10:52 ============================================================================ +20:10:52 FNo. Len. Field Value +20:10:52 ============================================================================ +20:10:52 [ 1] [ 4] [0210] +20:10:52 [ 2] [ 16] [6213544001849766] +20:10:52 [ 3] [ 6] [010000] +20:10:52 [ 4] [ 12] [000010000000] +20:10:52 [ 7] [ 10] [0320130959] +20:10:52 [ 11] [ 6] [271556] +20:10:52 [ 12] [ 6] [200959] +20:10:52 [ 13] [ 4] [0320] +20:10:52 [ 15] [ 4] [0320] +20:10:52 [ 18] [ 4] [6011] +20:10:52 [ 19] [ 3] [418] +20:10:52 [ 32] [ 6] [180893] +20:10:52 [ 35] [ 32] [6213544001849766=491212014976278] +20:10:52 [ 37] [ 12] [507913271556] +20:10:52 [ 38] [ 6] [929805] +20:10:52 [ 39] [ 2] [00] +20:10:52 [ 41] [ 8] [0461BKPO] +20:10:52 [ 49] [ 3] [418] +20:10:52 [ 54] [ 40] [0001418C0001289801180002418C000118780118] +20:10:52 ============================================================================ +20:10:52 Sending to : +20:10:52 ============================================================================ +20:10:52 + + +waiting on router queue for slot.... +20:10:54 ============================================================================ +20:10:54 Slot Id : <73> +20:10:54 Transaction Type : RESPONSE +20:10:54 Received From : +20:10:54 ============================================================================ +20:10:54 FNo. Len. Field Value +20:10:54 ============================================================================ +20:10:54 [ 1] [ 4] [0210] +20:10:54 [ 2] [ 16] [6213544001849766] +20:10:54 [ 3] [ 6] [010000] +20:10:54 [ 4] [ 12] [000010000000] +20:10:54 [ 7] [ 10] [0320130959] +20:10:54 [ 11] [ 6] [271556] +20:10:54 [ 12] [ 6] [200959] +20:10:54 [ 13] [ 4] [0320] +20:10:54 [ 15] [ 4] [0320] +20:10:54 [ 18] [ 4] [6011] +20:10:54 [ 19] [ 3] [418] +20:10:54 [ 32] [ 6] [180893] +20:10:54 [ 35] [ 32] [6213544001849766=491212014976278] +20:10:54 [ 37] [ 12] [507913271556] +20:10:54 [ 38] [ 6] [929805] +20:10:54 [ 39] [ 2] [00] +20:10:54 [ 41] [ 8] [0461BKPO] +20:10:54 [ 49] [ 3] [418] +20:10:54 [ 54] [ 40] [0001418C0001289801180002418C000118780118] +20:10:54 ============================================================================ +20:10:54 Calculate Source COMM Id = 2 +20:10:54 ============================================================================ +20:10:54 + + +waiting on router queue for slot.... +20:11:09 ============================================================================ +20:11:09 Slot Id : <68> +20:11:09 Transaction Type : REQUEST +20:11:09 Received From : +20:11:09 ============================================================================ +20:11:09 FNo. Len. Field Value +20:11:09 ============================================================================ +20:11:09 [ 1] [ 4] [0800] +20:11:09 [ 7] [ 10] [0320011017] +20:11:09 [ 11] [ 6] [158142] +20:11:09 [ 70] [ 3] [301] +20:11:09 ============================================================================ +20:11:09 + + +waiting on router queue for slot.... +20:11:09 Sending to : +20:11:09 ============================================================================ +20:11:09 ============================================================================ +20:11:09 Slot Id : <68> +20:11:09 Transaction Type : RESPONSE +20:11:09 Received From : +20:11:09 ============================================================================ +20:11:09 FNo. Len. Field Value +20:11:09 ============================================================================ +20:11:09 [ 1] [ 4] [0810] +20:11:09 [ 7] [ 10] [0320011017] +20:11:09 [ 11] [ 6] [158142] +20:11:09 [ 39] [ 2] [00] +20:11:09 [ 70] [ 3] [301] +20:11:09 ============================================================================ +20:11:09 Calculate Source COMM Id = 2 +20:11:09 ============================================================================ +20:11:09 + + +waiting on router queue for slot.... +20:11:20 ============================================================================ +20:11:20 Slot Id : <38> +20:11:20 Transaction Type : REQUEST +20:11:20 Received From : +20:11:20 ============================================================================ +20:11:20 FNo. Len. Field Value +20:11:20 ============================================================================ +20:11:20 [ 1] [ 4] [0800] +20:11:20 [ 7] [ 10] [0320011028] +20:11:20 [ 11] [ 6] [158143] +20:11:20 [ 70] [ 3] [301] +20:11:20 ============================================================================ +20:11:20 + + +waiting on router queue for slot.... +20:11:20 Sending to : +20:11:20 ============================================================================ +20:11:20 ============================================================================ +20:11:20 Slot Id : <38> +20:11:20 Transaction Type : RESPONSE +20:11:20 Received From : +20:11:20 ============================================================================ +20:11:20 FNo. Len. Field Value +20:11:20 ============================================================================ +20:11:20 [ 1] [ 4] [0810] +20:11:20 [ 7] [ 10] [0320011028] +20:11:20 [ 11] [ 6] [158143] +20:11:20 [ 39] [ 2] [00] +20:11:20 [ 70] [ 3] [301] +20:11:20 ============================================================================ +20:11:20 Calculate Source COMM Id = 2 +20:11:20 ============================================================================ +20:11:20 + + +waiting on router queue for slot.... +20:11:20 ============================================================================ +20:11:20 Slot Id : <32> +20:11:20 Transaction Type : REQUEST +20:11:20 Received From : +20:11:20 ============================================================================ +20:11:20 FNo. Len. Field Value +20:11:20 ============================================================================ +20:11:20 [ 1] [ 4] [0800] +20:11:20 [ 7] [ 10] [0320130912] +20:11:20 [ 11] [ 6] [071760] +20:11:20 [ 37] [ 12] [57920071760] +20:11:20 [ 70] [ 3] [301] +20:11:20 ============================================================================ +20:11:20 + + +waiting on router queue for slot.... +20:11:20 Sending to : +20:11:20 ============================================================================ +20:11:20 ============================================================================ +20:11:20 Slot Id : <32> +20:11:20 Transaction Type : RESPONSE +20:11:20 Received From : +20:11:20 ============================================================================ +20:11:20 FNo. Len. Field Value +20:11:20 ============================================================================ +20:11:20 [ 1] [ 4] [0810] +20:11:20 [ 7] [ 10] [0320130912] +20:11:20 [ 11] [ 6] [071760] +20:11:20 [ 37] [ 12] [579200717600] +20:11:20 [ 39] [ 2] [00] +20:11:20 [ 70] [ 3] [810] +20:11:20 ============================================================================ +20:11:20 Calculate Source COMM Id = 4 +20:11:20 ============================================================================ +20:11:20 + + +waiting on router queue for slot.... +20:11:35 ============================================================================ +20:11:35 Slot Id : <26> +20:11:35 Transaction Type : REQUEST +20:11:35 Received From : +20:11:35 ============================================================================ +20:11:35 FNo. Len. Field Value +20:11:35 ============================================================================ +20:11:35 [ 1] [ 4] [0800] +20:11:35 [ 7] [ 10] [0320011044] +20:11:35 [ 11] [ 6] [158144] +20:11:35 [ 70] [ 3] [301] +20:11:35 ============================================================================ +20:11:35 + + +waiting on router queue for slot.... +20:11:35 Sending to : +20:11:35 ============================================================================ +20:11:35 ============================================================================ +20:11:35 Slot Id : <26> +20:11:35 Transaction Type : RESPONSE +20:11:35 Received From : +20:11:35 ============================================================================ +20:11:35 FNo. Len. Field Value +20:11:35 ============================================================================ +20:11:35 [ 1] [ 4] [0810] +20:11:35 [ 7] [ 10] [0320011044] +20:11:35 [ 11] [ 6] [158144] +20:11:35 [ 39] [ 2] [00] +20:11:35 [ 70] [ 3] [301] +20:11:35 ============================================================================ +20:11:35 Calculate Source COMM Id = 2 +20:11:35 ============================================================================ +20:11:35 + + +waiting on router queue for slot.... +20:11:43 ============================================================================ +20:11:43 Slot Id : <487> +20:11:43 Transaction Type : REQUEST +20:11:43 Received From : +20:11:43 ============================================================================ +20:11:43 FNo. Len. Field Value +20:11:43 ============================================================================ +20:11:43 [ 1] [ 4] [0800] +20:11:43 [ 2] [ 5] [02531] +20:11:43 [ 3] [ 6] [579208] +20:11:43 [ 7] [ 10] [0320131143] +20:11:43 [ 11] [ 6] [807584] +20:11:43 [ 15] [ 10] [0320131143] +20:11:43 [ 37] [ 11] [57920807584] +20:11:43 [ 70] [ 3] [001] +20:11:43 ============================================================================ +20:11:43 + + +waiting on router queue for slot.... +20:11:43 ============================================================================ +20:11:43 Slot Id : <487> +20:11:43 Transaction Type : RESPONSE +20:11:43 Received From : +20:11:43 ============================================================================ +20:11:43 FNo. Len. Field Value +20:11:43 ============================================================================ +20:11:43 [ 1] [ 4] [0810] +20:11:43 [ 7] [ 10] [0320131143] +20:11:43 [ 11] [ 6] [807584] +20:11:43 [ 15] [ 4] [0320] +20:11:43 [ 37] [ 12] [57920807584] +20:11:43 [ 39] [ 2] [00] +20:11:43 [ 70] [ 3] [001] +20:11:43 ============================================================================ +20:11:43 Sending to : +20:11:43 ============================================================================ +20:11:43 + + +waiting on router queue for slot.... +20:11:47 ============================================================================ +20:11:47 Slot Id : <41> +20:11:47 Transaction Type : REQUEST +20:11:47 Received From : +20:11:47 ============================================================================ +20:11:47 FNo. Len. Field Value +20:11:47 ============================================================================ +20:11:47 [ 1] [ 4] [0800] +20:11:47 [ 7] [ 10] [0320011055] +20:11:47 [ 11] [ 6] [158145] +20:11:47 [ 70] [ 3] [301] +20:11:47 ============================================================================ +20:11:47 + + +waiting on router queue for slot.... +20:11:47 Sending to : +20:11:47 ============================================================================ +20:11:47 ============================================================================ +20:11:47 Slot Id : <41> +20:11:47 Transaction Type : RESPONSE +20:11:47 Received From : +20:11:47 ============================================================================ +20:11:47 FNo. Len. Field Value +20:11:47 ============================================================================ +20:11:47 [ 1] [ 4] [0810] +20:11:47 [ 7] [ 10] [0320011055] +20:11:47 [ 11] [ 6] [158145] +20:11:47 [ 39] [ 2] [00] +20:11:47 [ 70] [ 3] [301] +20:11:47 ============================================================================ +20:11:47 Calculate Source COMM Id = 2 +20:11:47 ============================================================================ +20:11:47 + + +waiting on router queue for slot.... +20:12:03 ============================================================================ +20:12:03 Slot Id : <20> +20:12:03 Transaction Type : REQUEST +20:12:03 Received From : +20:12:03 ============================================================================ +20:12:03 FNo. Len. Field Value +20:12:03 ============================================================================ +20:12:03 [ 1] [ 4] [0800] +20:12:03 [ 7] [ 10] [0320011111] +20:12:03 [ 11] [ 6] [158146] +20:12:03 [ 70] [ 3] [301] +20:12:03 ============================================================================ +20:12:03 + + +waiting on router queue for slot.... +20:12:03 Sending to : +20:12:03 ============================================================================ +20:12:03 ============================================================================ +20:12:03 Slot Id : <20> +20:12:03 Transaction Type : RESPONSE +20:12:03 Received From : +20:12:03 ============================================================================ +20:12:03 FNo. Len. Field Value +20:12:03 ============================================================================ +20:12:03 [ 1] [ 4] [0810] +20:12:03 [ 7] [ 10] [0320011111] +20:12:03 [ 11] [ 6] [158146] +20:12:03 [ 39] [ 2] [00] +20:12:03 [ 70] [ 3] [301] +20:12:03 ============================================================================ +20:12:03 Calculate Source COMM Id = 2 +20:12:03 ============================================================================ +20:12:03 + + +waiting on router queue for slot.... +20:12:13 ============================================================================ +20:12:13 Slot Id : <464> +20:12:13 Transaction Type : REQUEST +20:12:13 Received From : +20:12:13 ============================================================================ +20:12:13 FNo. Len. Field Value +20:12:13 ============================================================================ +20:12:13 [ 1] [ 4] [0800] +20:12:13 [ 7] [ 10] [0320011121] +20:12:13 [ 11] [ 6] [158147] +20:12:13 [ 70] [ 3] [301] +20:12:13 ============================================================================ +20:12:13 + + +waiting on router queue for slot.... +20:12:13 Sending to : +20:12:13 ============================================================================ +20:12:13 ============================================================================ +20:12:13 Slot Id : <464> +20:12:13 Transaction Type : RESPONSE +20:12:13 Received From : +20:12:13 ============================================================================ +20:12:13 FNo. Len. Field Value +20:12:13 ============================================================================ +20:12:13 [ 1] [ 4] [0810] +20:12:13 [ 7] [ 10] [0320011121] +20:12:13 [ 11] [ 6] [158147] +20:12:13 [ 39] [ 2] [00] +20:12:13 [ 70] [ 3] [301] +20:12:13 ============================================================================ +20:12:13 Calculate Source COMM Id = 2 +20:12:13 ============================================================================ +20:12:13 + + +waiting on router queue for slot.... +20:12:24 ============================================================================ +20:12:24 Slot Id : <48> +20:12:24 Transaction Type : REQUEST +20:12:24 Received From : +20:12:24 ============================================================================ +20:12:24 FNo. Len. Field Value +20:12:24 ============================================================================ +20:12:24 [ 1] [ 4] [0800] +20:12:24 [ 7] [ 10] [0320011132] +20:12:24 [ 11] [ 6] [158148] +20:12:24 [ 70] [ 3] [301] +20:12:24 ============================================================================ +20:12:24 + + +waiting on router queue for slot.... +20:12:24 Sending to : +20:12:24 ============================================================================ +20:12:24 ============================================================================ +20:12:24 Slot Id : <48> +20:12:24 Transaction Type : RESPONSE +20:12:24 Received From : +20:12:24 ============================================================================ +20:12:24 FNo. Len. Field Value +20:12:24 ============================================================================ +20:12:24 [ 1] [ 4] [0810] +20:12:24 [ 7] [ 10] [0320011132] +20:12:24 [ 11] [ 6] [158148] +20:12:24 [ 39] [ 2] [00] +20:12:24 [ 70] [ 3] [301] +20:12:24 ============================================================================ +20:12:24 Calculate Source COMM Id = 2 +20:12:24 ============================================================================ +20:12:24 + + +waiting on router queue for slot.... +20:12:34 ============================================================================ +20:12:34 Slot Id : <46> +20:12:34 Transaction Type : REQUEST +20:12:34 Received From : +20:12:34 ============================================================================ +20:12:34 FNo. Len. Field Value +20:12:34 ============================================================================ +20:12:34 [ 1] [ 4] [0800] +20:12:34 [ 7] [ 10] [0320011143] +20:12:34 [ 11] [ 6] [158149] +20:12:34 [ 70] [ 3] [301] +20:12:34 ============================================================================ +20:12:34 + + +waiting on router queue for slot.... +20:12:34 Sending to : +20:12:34 ============================================================================ +20:12:34 ============================================================================ +20:12:34 Slot Id : <46> +20:12:34 Transaction Type : RESPONSE +20:12:34 Received From : +20:12:34 ============================================================================ +20:12:34 FNo. Len. Field Value +20:12:34 ============================================================================ +20:12:34 [ 1] [ 4] [0810] +20:12:34 [ 7] [ 10] [0320011143] +20:12:34 [ 11] [ 6] [158149] +20:12:34 [ 39] [ 2] [00] +20:12:34 [ 70] [ 3] [301] +20:12:34 ============================================================================ +20:12:34 Calculate Source COMM Id = 2 +20:12:34 ============================================================================ +20:12:34 + + +waiting on router queue for slot.... +20:12:45 ============================================================================ +20:12:45 Slot Id : <69> +20:12:45 Transaction Type : REQUEST +20:12:45 Received From : +20:12:45 ============================================================================ +20:12:45 FNo. Len. Field Value +20:12:45 ============================================================================ +20:12:45 [ 1] [ 4] [0800] +20:12:45 [ 2] [ 5] [02531] +20:12:45 [ 3] [ 6] [579208] +20:12:45 [ 7] [ 10] [0320131245] +20:12:45 [ 11] [ 6] [807585] +20:12:45 [ 15] [ 10] [0320131245] +20:12:45 [ 37] [ 11] [57920807585] +20:12:45 [ 70] [ 3] [001] +20:12:45 ============================================================================ +20:12:45 + + +waiting on router queue for slot.... +20:12:45 ============================================================================ +20:12:45 Slot Id : <69> +20:12:45 Transaction Type : RESPONSE +20:12:45 Received From : +20:12:45 ============================================================================ +20:12:45 FNo. Len. Field Value +20:12:45 ============================================================================ +20:12:45 [ 1] [ 4] [0810] +20:12:45 [ 7] [ 10] [0320131245] +20:12:45 [ 11] [ 6] [807585] +20:12:45 [ 15] [ 4] [0320] +20:12:45 [ 37] [ 12] [57920807585] +20:12:45 [ 39] [ 2] [00] +20:12:45 [ 70] [ 3] [001] +20:12:45 ============================================================================ +20:12:45 Sending to : +20:12:45 ============================================================================ +20:12:45 + + +waiting on router queue for slot.... +20:12:46 ============================================================================ +20:12:46 Slot Id : <27> +20:12:46 Transaction Type : REQUEST +20:12:46 Received From : +20:12:46 ============================================================================ +20:12:46 FNo. Len. Field Value +20:12:46 ============================================================================ +20:12:46 [ 1] [ 4] [0800] +20:12:46 [ 7] [ 10] [0320011155] +20:12:46 [ 11] [ 6] [158150] +20:12:46 [ 70] [ 3] [301] +20:12:46 ============================================================================ +20:12:46 + + +waiting on router queue for slot.... +20:12:46 Sending to : +20:12:46 ============================================================================ +20:12:46 ============================================================================ +20:12:46 Slot Id : <27> +20:12:46 Transaction Type : RESPONSE +20:12:46 Received From : +20:12:46 ============================================================================ +20:12:46 FNo. Len. Field Value +20:12:46 ============================================================================ +20:12:46 [ 1] [ 4] [0810] +20:12:46 [ 7] [ 10] [0320011155] +20:12:46 [ 11] [ 6] [158150] +20:12:46 [ 39] [ 2] [00] +20:12:46 [ 70] [ 3] [301] +20:12:46 ============================================================================ +20:12:46 Calculate Source COMM Id = 2 +20:12:46 ============================================================================ +20:12:46 + + +waiting on router queue for slot.... +20:12:57 ============================================================================ +20:12:57 Slot Id : <19> +20:12:57 Transaction Type : REQUEST +20:12:57 Received From : +20:12:57 ============================================================================ +20:12:57 FNo. Len. Field Value +20:12:57 ============================================================================ +20:12:57 [ 1] [ 4] [0800] +20:12:57 [ 7] [ 10] [0320011206] +20:12:57 [ 11] [ 6] [158151] +20:12:57 [ 70] [ 3] [301] +20:12:57 ============================================================================ +20:12:57 + + +waiting on router queue for slot.... +20:12:57 Sending to : +20:12:57 ============================================================================ +20:12:57 ============================================================================ +20:12:57 Slot Id : <19> +20:12:57 Transaction Type : RESPONSE +20:12:57 Received From : +20:12:57 ============================================================================ +20:12:57 FNo. Len. Field Value +20:12:57 ============================================================================ +20:12:57 [ 1] [ 4] [0810] +20:12:57 [ 7] [ 10] [0320011206] +20:12:57 [ 11] [ 6] [158151] +20:12:57 [ 39] [ 2] [00] +20:12:57 [ 70] [ 3] [301] +20:12:57 ============================================================================ +20:12:57 Calculate Source COMM Id = 2 +20:12:57 ============================================================================ +20:12:57 + + +waiting on router queue for slot.... +20:12:57 ============================================================================ +20:12:57 Slot Id : <78> +20:12:57 Transaction Type : REQUEST +20:12:57 Received From : +20:12:57 ============================================================================ +20:12:57 FNo. Len. Field Value +20:12:57 ============================================================================ +20:12:57 [ 1] [ 4] [0200] +20:12:57 [ 2] [ 16] [2206990000117184] +20:12:57 [ 3] [ 6] [010000] +20:12:57 [ 4] [ 12] [000010000000] +20:12:57 [ 7] [ 10] [0320131205] +20:12:57 [ 11] [ 6] [271564] +20:12:57 [ 12] [ 6] [201205] +20:12:57 [ 13] [ 4] [0320] +20:12:57 [ 14] [ 4] [9802] +20:12:57 [ 15] [ 4] [0320] +20:12:57 [ 18] [ 4] [6011] +20:12:57 [ 19] [ 3] [418] +20:12:57 [ 22] [ 3] [021] +20:12:57 [ 25] [ 2] [01] +20:12:57 [ 28] [ 9] [D00002000] +20:12:57 [ 32] [ 6] [180893] +20:12:57 [ 35] [ 32] [2206990000117184=980212615234188] +20:12:57 [ 37] [ 12] [507913271564] +20:12:57 [ 41] [ 8] [0115LPBR] +20:12:57 [ 42] [ 15] [999999 ] +20:12:57 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +20:12:57 [ 49] [ 3] [418] +20:12:57 [ 52] [ 16] [F46333270CDB962D] +20:12:57 ============================================================================ +20:12:57 + + +waiting on router queue for slot.... +20:12:57 Sending to : +20:12:57 ============================================================================ +20:12:57 Sending to : +20:12:57 ============================================================================ +20:12:58 ============================================================================ +20:12:58 Slot Id : <78> +20:12:58 Transaction Type : REQUEST +20:12:58 Received From : +20:12:58 ============================================================================ +20:12:58 FNo. Len. Field Value +20:12:58 ============================================================================ +20:12:58 [ 1] [ 4] [0200] +20:12:58 [ 2] [ 16] [2206990000117184] +20:12:58 [ 3] [ 6] [010000] +20:12:58 [ 4] [ 12] [000010000000] +20:12:58 [ 7] [ 10] [0320131205] +20:12:58 [ 11] [ 6] [271564] +20:12:58 [ 12] [ 6] [201205] +20:12:58 [ 13] [ 4] [0320] +20:12:58 [ 14] [ 4] [9802] +20:12:58 [ 15] [ 4] [0320] +20:12:58 [ 18] [ 4] [6011] +20:12:58 [ 19] [ 3] [418] +20:12:58 [ 22] [ 3] [021] +20:12:58 [ 25] [ 2] [01] +20:12:58 [ 28] [ 9] [D00002000] +20:12:58 [ 32] [ 6] [180893] +20:12:58 [ 35] [ 32] [2206990000117184=980212615234188] +20:12:58 [ 37] [ 12] [507913271564] +20:12:58 [ 41] [ 8] [0115LPBR] +20:12:58 [ 42] [ 15] [999999 ] +20:12:58 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +20:12:58 [ 49] [ 3] [418] +20:12:58 [ 52] [ 16] [F46333270CDB962D] +20:12:58 ============================================================================ +20:12:58 + + +waiting on router queue for slot.... +20:12:58 Sending to : +20:12:58 ============================================================================ +20:12:58 ============================================================================ +20:12:58 Slot Id : <78> +20:12:58 Transaction Type : REQUEST +20:12:58 Received From : +20:12:58 ============================================================================ +20:12:58 FNo. Len. Field Value +20:12:58 ============================================================================ +20:12:58 [ 1] [ 4] [0200] +20:12:58 [ 2] [ 16] [2206990000117184] +20:12:58 [ 3] [ 6] [010000] +20:12:58 [ 4] [ 12] [000010000000] +20:12:58 [ 7] [ 10] [0320131205] +20:12:58 [ 11] [ 6] [271564] +20:12:58 [ 12] [ 6] [201205] +20:12:58 [ 13] [ 4] [0320] +20:12:58 [ 14] [ 4] [9802] +20:12:58 [ 15] [ 4] [0320] +20:12:58 [ 18] [ 4] [6011] +20:12:58 [ 19] [ 3] [418] +20:12:58 [ 22] [ 3] [021] +20:12:58 [ 25] [ 2] [01] +20:12:58 [ 28] [ 9] [D00002000] +20:12:58 [ 32] [ 6] [180893] +20:12:58 [ 35] [ 32] [2206990000117184=980212615234188] +20:12:58 [ 37] [ 12] [507913271564] +20:12:58 [ 41] [ 8] [0115LPBR] +20:12:58 [ 42] [ 15] [999999 ] +20:12:58 [ 43] [ 40] [ATM LUANGPRABANG BRANCH LOCATION, Luangp] +20:12:58 [ 49] [ 3] [418] +20:12:58 [ 52] [ 16] [B5D70CA2BF51480A] +20:12:58 ============================================================================ +20:12:58 + + +waiting on router queue for slot.... +20:12:58 Sending to : <1> +20:12:58 ============================================================================ +20:13:00 ============================================================================ +20:13:00 Slot Id : <78> +20:13:00 Transaction Type : RESPONSE +20:13:00 Received From : +20:13:00 ============================================================================ +20:13:00 FNo. Len. Field Value +20:13:00 ============================================================================ +20:13:00 [ 1] [ 4] [0210] +20:13:00 [ 2] [ 16] [2206990000117184] +20:13:00 [ 3] [ 6] [010000] +20:13:00 [ 4] [ 12] [000010000000] +20:13:00 [ 7] [ 10] [0320131205] +20:13:00 [ 11] [ 6] [271564] +20:13:00 [ 12] [ 6] [201205] +20:13:00 [ 13] [ 4] [0320] +20:13:00 [ 15] [ 4] [0320] +20:13:00 [ 18] [ 4] [6011] +20:13:00 [ 32] [ 6] [180893] +20:13:00 [ 35] [ 32] [2206990000117184=980212615234188] +20:13:00 [ 37] [ 12] [507913271564] +20:13:00 [ 38] [ 6] [176372] +20:13:00 [ 39] [ 2] [00] +20:13:00 [ 41] [ 8] [0115LPBR] +20:13:00 [ 49] [ 3] [418] +20:13:00 [ 54] [ 40] [0001418C0000500549270002418C000050054927] +20:13:00 ============================================================================ +20:13:00 Sending to : +20:13:00 ============================================================================ +20:13:00 + + +waiting on router queue for slot.... +20:13:01 ============================================================================ +20:13:01 Slot Id : <54> +20:13:01 Transaction Type : REQUEST +20:13:01 Received From : +20:13:01 ============================================================================ +20:13:01 FNo. Len. Field Value +20:13:01 ============================================================================ +20:13:01 [ 1] [ 4] [0800] +20:13:01 [ 7] [ 10] [0320201249] +20:13:01 [ 11] [ 6] [022483] +20:13:01 [ 37] [ 12] [507920022483] +20:13:01 [ 70] [ 3] [ ] +20:13:01 ============================================================================ +20:13:01 + + +waiting on router queue for slot.... +20:13:01 Sending to : +20:13:01 ============================================================================ +20:13:01 ============================================================================ +20:13:01 Slot Id : <54> +20:13:01 Transaction Type : RESPONSE +20:13:01 Received From : +20:13:01 ============================================================================ +20:13:01 FNo. Len. Field Value +20:13:01 ============================================================================ +20:13:01 [ 1] [ 4] [0810] +20:13:01 [ 7] [ 10] [0320201249] +20:13:01 [ 11] [ 6] [022483] +20:13:01 [ 37] [ 12] [507920022483] +20:13:01 [ 39] [ 2] [91] +20:13:01 [ 70] [ 3] [ ] +20:13:01 ============================================================================ +20:13:01 Calculate Source COMM Id = 3 +20:13:01 ============================================================================ +20:13:01 + + +waiting on router queue for slot.... +20:13:02 ============================================================================ +20:13:02 Slot Id : <78> +20:13:02 Transaction Type : RESPONSE +20:13:02 Received From : +20:13:02 ============================================================================ +20:13:02 FNo. Len. Field Value +20:13:02 ============================================================================ +20:13:02 [ 1] [ 4] [0210] +20:13:02 [ 2] [ 16] [2206990000117184] +20:13:02 [ 3] [ 6] [010000] +20:13:02 [ 4] [ 12] [000010000000] +20:13:02 [ 7] [ 10] [0320131205] +20:13:02 [ 11] [ 6] [271564] +20:13:02 [ 12] [ 6] [201205] +20:13:02 [ 13] [ 4] [0320] +20:13:02 [ 15] [ 4] [0320] +20:13:02 [ 18] [ 4] [6011] +20:13:02 [ 32] [ 6] [180893] +20:13:02 [ 35] [ 32] [2206990000117184=980212615234188] +20:13:02 [ 37] [ 12] [507913271564] +20:13:02 [ 38] [ 6] [176372] +20:13:02 [ 39] [ 2] [00] +20:13:02 [ 41] [ 8] [0115LPBR] +20:13:02 [ 49] [ 3] [418] +20:13:02 [ 54] [ 40] [0001418C0000500549270002418C000050054927] +20:13:02 ============================================================================ +20:13:02 Calculate Source COMM Id = 2 +20:13:02 ============================================================================ +20:13:02 + + +waiting on router queue for slot.... +20:13:14 ============================================================================ +20:13:14 Slot Id : <47> +20:13:14 Transaction Type : REQUEST +20:13:14 Received From : +20:13:14 ============================================================================ +20:13:14 FNo. Len. Field Value +20:13:14 ============================================================================ +20:13:14 [ 1] [ 4] [0800] +20:13:14 [ 7] [ 10] [0320011222] +20:13:14 [ 11] [ 6] [158152] +20:13:14 [ 70] [ 3] [301] +20:13:14 ============================================================================ +20:13:14 + + +waiting on router queue for slot.... +20:13:14 Sending to : +20:13:14 ============================================================================ +20:13:14 ============================================================================ +20:13:14 Slot Id : <47> +20:13:14 Transaction Type : RESPONSE +20:13:14 Received From : +20:13:14 ============================================================================ +20:13:14 FNo. Len. Field Value +20:13:14 ============================================================================ +20:13:14 [ 1] [ 4] [0810] +20:13:14 [ 7] [ 10] [0320011222] +20:13:14 [ 11] [ 6] [158152] +20:13:14 [ 39] [ 2] [00] +20:13:14 [ 70] [ 3] [301] +20:13:14 ============================================================================ +20:13:14 Calculate Source COMM Id = 2 +20:13:14 ============================================================================ +20:13:14 + + +waiting on router queue for slot.... +20:13:28 ============================================================================ +20:13:28 Slot Id : <57> +20:13:28 Transaction Type : REQUEST +20:13:28 Received From : +20:13:28 ============================================================================ +20:13:28 FNo. Len. Field Value +20:13:28 ============================================================================ +20:13:28 [ 1] [ 4] [0800] +20:13:28 [ 7] [ 10] [0321032519] +20:13:28 [ 11] [ 6] [202519] +20:13:28 [ 37] [ 12] [57920202519] +20:13:28 [ 70] [ 3] [301] +20:13:28 ============================================================================ +20:13:28 + + +waiting on router queue for slot.... +20:13:28 Sending to : +20:13:28 ============================================================================ +20:13:28 ============================================================================ +20:13:28 Slot Id : <57> +20:13:28 Transaction Type : RESPONSE +20:13:28 Received From : +20:13:28 ============================================================================ +20:13:28 FNo. Len. Field Value +20:13:28 ============================================================================ +20:13:28 [ 1] [ 4] [0810] +20:13:28 [ 7] [ 10] [0321032519] +20:13:28 [ 11] [ 6] [202519] +20:13:28 [ 37] [ 12] [579202025190] +20:13:28 [ 39] [ 2] [00] +20:13:28 [ 70] [ 3] [810] +20:13:28 ============================================================================ +20:13:28 Calculate Source COMM Id = 6 +20:13:28 ============================================================================ +20:13:28 + + +waiting on router queue for slot.... +20:13:29 ============================================================================ +20:13:29 Slot Id : <24> +20:13:29 Transaction Type : REQUEST +20:13:29 Received From : +20:13:29 ============================================================================ +20:13:29 FNo. Len. Field Value +20:13:29 ============================================================================ +20:13:29 [ 1] [ 4] [0800] +20:13:29 [ 7] [ 10] [0320011237] +20:13:29 [ 11] [ 6] [158153] +20:13:29 [ 70] [ 3] [301] +20:13:29 ============================================================================ +20:13:29 + + +waiting on router queue for slot.... +20:13:29 Sending to : +20:13:29 ============================================================================ +20:13:29 ============================================================================ +20:13:29 Slot Id : <24> +20:13:29 Transaction Type : RESPONSE +20:13:29 Received From : +20:13:29 ============================================================================ +20:13:29 FNo. Len. Field Value +20:13:29 ============================================================================ +20:13:29 [ 1] [ 4] [0810] +20:13:29 [ 7] [ 10] [0320011237] +20:13:29 [ 11] [ 6] [158153] +20:13:29 [ 39] [ 2] [00] +20:13:29 [ 70] [ 3] [301] +20:13:29 ============================================================================ +20:13:29 Calculate Source COMM Id = 2 +20:13:29 ============================================================================ +20:13:29 + + +waiting on router queue for slot.... +20:13:40 ============================================================================ +20:13:40 Slot Id : <34> +20:13:40 Transaction Type : REQUEST +20:13:40 Received From : +20:13:40 ============================================================================ +20:13:40 FNo. Len. Field Value +20:13:40 ============================================================================ +20:13:40 [ 1] [ 4] [0800] +20:13:40 [ 7] [ 10] [0320011248] +20:13:40 [ 11] [ 6] [158154] +20:13:40 [ 70] [ 3] [301] +20:13:40 ============================================================================ +20:13:40 + + +waiting on router queue for slot.... +20:13:40 Sending to : +20:13:40 ============================================================================ +20:13:40 ============================================================================ +20:13:40 Slot Id : <34> +20:13:40 Transaction Type : RESPONSE +20:13:40 Received From : +20:13:40 ============================================================================ +20:13:40 FNo. Len. Field Value +20:13:40 ============================================================================ +20:13:40 [ 1] [ 4] [0810] +20:13:40 [ 7] [ 10] [0320011248] +20:13:40 [ 11] [ 6] [158154] +20:13:40 [ 39] [ 2] [00] +20:13:40 [ 70] [ 3] [301] +20:13:40 ============================================================================ +20:13:40 Calculate Source COMM Id = 2 +20:13:40 ============================================================================ +20:13:40 + + +waiting on router queue for slot.... +20:13:47 ============================================================================ +20:13:47 Slot Id : <49> +20:13:47 Transaction Type : REQUEST +20:13:47 Received From : +20:13:47 ============================================================================ +20:13:47 FNo. Len. Field Value +20:13:47 ============================================================================ +20:13:47 [ 1] [ 4] [0800] +20:13:47 [ 2] [ 5] [02531] +20:13:47 [ 3] [ 6] [579208] +20:13:47 [ 7] [ 10] [0320131347] +20:13:47 [ 11] [ 6] [807586] +20:13:47 [ 15] [ 10] [0320131347] +20:13:47 [ 37] [ 11] [57920807586] +20:13:47 [ 70] [ 3] [001] +20:13:47 ============================================================================ +20:13:47 + + +waiting on router queue for slot.... +20:13:47 ============================================================================ +20:13:47 Slot Id : <49> +20:13:47 Transaction Type : RESPONSE +20:13:47 Received From : +20:13:47 ============================================================================ +20:13:47 FNo. Len. Field Value +20:13:47 ============================================================================ +20:13:47 [ 1] [ 4] [0810] +20:13:47 [ 7] [ 10] [0320131347] +20:13:47 [ 11] [ 6] [807586] +20:13:47 [ 15] [ 4] [0320] +20:13:47 [ 37] [ 12] [57920807586] +20:13:47 [ 39] [ 2] [00] +20:13:47 [ 70] [ 3] [001] +20:13:47 ============================================================================ +20:13:47 Sending to : +20:13:47 ============================================================================ +20:13:47 + + +waiting on router queue for slot.... +20:13:52 ============================================================================ +20:13:52 Slot Id : <81> +20:13:52 Transaction Type : REQUEST +20:13:52 Received From : +20:13:52 ============================================================================ +20:13:52 FNo. Len. Field Value +20:13:52 ============================================================================ +20:13:52 [ 1] [ 4] [0800] +20:13:52 [ 7] [ 10] [0320011259] +20:13:52 [ 11] [ 6] [158155] +20:13:52 [ 70] [ 3] [301] +20:13:52 ============================================================================ +20:13:52 + + +waiting on router queue for slot.... +20:13:52 Sending to : +20:13:52 ============================================================================ +20:13:52 ============================================================================ +20:13:52 Slot Id : <81> +20:13:52 Transaction Type : RESPONSE +20:13:52 Received From : +20:13:52 ============================================================================ +20:13:52 FNo. Len. Field Value +20:13:52 ============================================================================ +20:13:52 [ 1] [ 4] [0810] +20:13:52 [ 7] [ 10] [0320011259] +20:13:52 [ 11] [ 6] [158155] +20:13:52 [ 39] [ 2] [00] +20:13:52 [ 70] [ 3] [301] +20:13:52 ============================================================================ +20:13:52 Calculate Source COMM Id = 2 +20:13:52 ============================================================================ +20:13:52 + + +waiting on router queue for slot.... +20:14:06 ============================================================================ +20:14:06 Slot Id : <42> +20:14:06 Transaction Type : REQUEST +20:14:06 Received From : +20:14:06 ============================================================================ +20:14:06 FNo. Len. Field Value +20:14:06 ============================================================================ +20:14:06 [ 1] [ 4] [0800] +20:14:06 [ 7] [ 10] [0320011315] +20:14:06 [ 11] [ 6] [158156] +20:14:06 [ 70] [ 3] [301] +20:14:06 ============================================================================ +20:14:06 + + +waiting on router queue for slot.... +20:14:06 Sending to : +20:14:06 ============================================================================ +20:14:06 ============================================================================ +20:14:06 Slot Id : <42> +20:14:06 Transaction Type : RESPONSE +20:14:06 Received From : +20:14:06 ============================================================================ +20:14:06 FNo. Len. Field Value +20:14:06 ============================================================================ +20:14:06 [ 1] [ 4] [0810] +20:14:06 [ 7] [ 10] [0320011315] +20:14:06 [ 11] [ 6] [158156] +20:14:06 [ 39] [ 2] [00] +20:14:06 [ 70] [ 3] [301] +20:14:06 ============================================================================ +20:14:06 Calculate Source COMM Id = 2 +20:14:06 ============================================================================ +20:14:06 + + +waiting on router queue for slot.... +20:14:16 ============================================================================ +20:14:16 Slot Id : <88> +20:14:16 Transaction Type : REQUEST +20:14:16 Received From : +20:14:16 ============================================================================ +20:14:16 FNo. Len. Field Value +20:14:16 ============================================================================ +20:14:16 [ 1] [ 4] [0200] +20:14:16 [ 2] [ 16] [6213541000259906] +20:14:16 [ 3] [ 6] [010000] +20:14:16 [ 4] [ 12] [000200000000] +20:14:16 [ 7] [ 10] [0320131323] +20:14:16 [ 11] [ 6] [271569] +20:14:16 [ 12] [ 6] [201323] +20:14:16 [ 13] [ 4] [0320] +20:14:16 [ 14] [ 4] [4912] +20:14:16 [ 15] [ 4] [0320] +20:14:16 [ 18] [ 4] [6011] +20:14:16 [ 19] [ 3] [418] +20:14:16 [ 22] [ 3] [021] +20:14:16 [ 25] [ 2] [01] +20:14:16 [ 28] [ 9] [D00002000] +20:14:16 [ 32] [ 6] [180893] +20:14:16 [ 35] [ 32] [6213541000259906=491212015990382] +20:14:16 [ 37] [ 12] [507913271569] +20:14:16 [ 41] [ 8] [0118UDBR] +20:14:16 [ 42] [ 15] [999999 ] +20:14:16 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +20:14:16 [ 49] [ 3] [418] +20:14:16 [ 52] [ 16] [9BEE315B3537F6E0] +20:14:16 ============================================================================ +20:14:16 + + +waiting on router queue for slot.... +20:14:16 Sending to : +20:14:16 ============================================================================ +20:14:16 Sending to : +20:14:16 ============================================================================ +20:14:16 ============================================================================ +20:14:16 Slot Id : <86> +20:14:16 Transaction Type : REQUEST +20:14:16 Received From : +20:14:16 ============================================================================ +20:14:16 FNo. Len. Field Value +20:14:16 ============================================================================ +20:14:16 [ 1] [ 4] [0200] +20:14:16 [ 2] [ 16] [6213544000824141] +20:14:16 [ 3] [ 6] [301000] +20:14:16 [ 7] [ 10] [0320131324] +20:14:16 [ 11] [ 6] [271570] +20:14:16 [ 12] [ 6] [201324] +20:14:16 [ 13] [ 4] [0320] +20:14:16 [ 14] [ 4] [4912] +20:14:16 [ 15] [ 4] [0320] +20:14:16 [ 18] [ 4] [6011] +20:14:16 [ 19] [ 3] [418] +20:14:16 [ 22] [ 3] [021] +20:14:16 [ 25] [ 2] [01] +20:14:16 [ 32] [ 6] [180893] +20:14:16 [ 35] [ 32] [6213544000824141=491212012414572] +20:14:16 [ 37] [ 12] [507913271570] +20:14:16 [ 41] [ 8] [0102SAPA] +20:14:16 [ 42] [ 15] [999999 ] +20:14:16 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +20:14:16 [ 49] [ 3] [418] +20:14:16 [ 52] [ 16] [6F180B5159395088] +20:14:16 ============================================================================ +20:14:16 + + +waiting on router queue for slot.... +20:14:16 Sending to : +20:14:16 ============================================================================ +20:14:16 Sending to : +20:14:16 ============================================================================ +20:14:16 ============================================================================ +20:14:16 Slot Id : <88> +20:14:16 Transaction Type : REQUEST +20:14:16 Received From : +20:14:16 ============================================================================ +20:14:16 FNo. Len. Field Value +20:14:16 ============================================================================ +20:14:16 [ 1] [ 4] [0200] +20:14:16 [ 2] [ 16] [6213541000259906] +20:14:16 [ 3] [ 6] [010000] +20:14:16 [ 4] [ 12] [000200000000] +20:14:16 [ 7] [ 10] [0320131323] +20:14:16 [ 11] [ 6] [271569] +20:14:16 [ 12] [ 6] [201323] +20:14:16 [ 13] [ 4] [0320] +20:14:16 [ 14] [ 4] [4912] +20:14:16 [ 15] [ 4] [0320] +20:14:16 [ 18] [ 4] [6011] +20:14:16 [ 19] [ 3] [418] +20:14:16 [ 22] [ 3] [021] +20:14:16 [ 25] [ 2] [01] +20:14:16 [ 28] [ 9] [D00002000] +20:14:16 [ 32] [ 6] [180893] +20:14:16 [ 35] [ 32] [6213541000259906=491212015990382] +20:14:16 [ 37] [ 12] [507913271569] +20:14:16 [ 41] [ 8] [0118UDBR] +20:14:16 [ 42] [ 15] [999999 ] +20:14:16 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +20:14:16 [ 49] [ 3] [418] +20:14:16 [ 52] [ 16] [9BEE315B3537F6E0] +20:14:16 ============================================================================ +20:14:16 + + +waiting on router queue for slot.... +20:14:16 Sending to : +20:14:16 ============================================================================ +20:14:16 ============================================================================ +20:14:16 Slot Id : <88> +20:14:16 Transaction Type : REQUEST +20:14:16 Received From : +20:14:16 ============================================================================ +20:14:16 FNo. Len. Field Value +20:14:16 ============================================================================ +20:14:16 [ 1] [ 4] [0200] +20:14:16 [ 2] [ 16] [6213541000259906] +20:14:16 [ 3] [ 6] [010000] +20:14:16 [ 4] [ 12] [000200000000] +20:14:16 [ 7] [ 10] [0320131323] +20:14:16 [ 11] [ 6] [271569] +20:14:16 [ 12] [ 6] [201323] +20:14:16 [ 13] [ 4] [0320] +20:14:16 [ 14] [ 4] [4912] +20:14:16 [ 15] [ 4] [0320] +20:14:16 [ 18] [ 4] [6011] +20:14:16 [ 19] [ 3] [418] +20:14:16 [ 22] [ 3] [021] +20:14:16 [ 25] [ 2] [01] +20:14:16 [ 28] [ 9] [D00002000] +20:14:16 [ 32] [ 6] [180893] +20:14:16 [ 35] [ 32] [6213541000259906=491212015990382] +20:14:16 [ 37] [ 12] [507913271569] +20:14:16 [ 41] [ 8] [0118UDBR] +20:14:16 [ 42] [ 15] [999999 ] +20:14:16 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +20:14:16 [ 49] [ 3] [418] +20:14:16 [ 52] [ 16] [3361BB21B50252A7] +20:14:16 ============================================================================ +20:14:16 + + +waiting on router queue for slot.... +20:14:16 Sending to : <0> +20:14:16 ============================================================================ +20:14:16 ============================================================================ +20:14:16 Slot Id : <86> +20:14:16 Transaction Type : REQUEST +20:14:16 Received From : +20:14:16 ============================================================================ +20:14:16 FNo. Len. Field Value +20:14:16 ============================================================================ +20:14:16 [ 1] [ 4] [0200] +20:14:16 [ 2] [ 16] [6213544000824141] +20:14:16 [ 3] [ 6] [301000] +20:14:16 [ 7] [ 10] [0320131324] +20:14:16 [ 11] [ 6] [271570] +20:14:16 [ 12] [ 6] [201324] +20:14:16 [ 13] [ 4] [0320] +20:14:16 [ 14] [ 4] [4912] +20:14:16 [ 15] [ 4] [0320] +20:14:16 [ 18] [ 4] [6011] +20:14:16 [ 19] [ 3] [418] +20:14:16 [ 22] [ 3] [021] +20:14:16 [ 25] [ 2] [01] +20:14:16 [ 32] [ 6] [180893] +20:14:16 [ 35] [ 32] [6213544000824141=491212012414572] +20:14:16 [ 37] [ 12] [507913271570] +20:14:16 [ 41] [ 8] [0102SAPA] +20:14:16 [ 42] [ 15] [999999 ] +20:14:16 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +20:14:16 [ 49] [ 3] [418] +20:14:16 [ 52] [ 16] [6F180B5159395088] +20:14:16 ============================================================================ +20:14:16 + + +waiting on router queue for slot.... +20:14:16 Sending to : +20:14:16 ============================================================================ +20:14:16 ============================================================================ +20:14:16 Slot Id : <86> +20:14:16 Transaction Type : REQUEST +20:14:16 Received From : +20:14:16 ============================================================================ +20:14:16 FNo. Len. Field Value +20:14:16 ============================================================================ +20:14:16 [ 1] [ 4] [0200] +20:14:16 [ 2] [ 16] [6213544000824141] +20:14:16 [ 3] [ 6] [301000] +20:14:16 [ 7] [ 10] [0320131324] +20:14:16 [ 11] [ 6] [271570] +20:14:16 [ 12] [ 6] [201324] +20:14:16 [ 13] [ 4] [0320] +20:14:16 [ 14] [ 4] [4912] +20:14:16 [ 15] [ 4] [0320] +20:14:16 [ 18] [ 4] [6011] +20:14:16 [ 19] [ 3] [418] +20:14:16 [ 22] [ 3] [021] +20:14:16 [ 25] [ 2] [01] +20:14:16 [ 32] [ 6] [180893] +20:14:16 [ 35] [ 32] [6213544000824141=491212012414572] +20:14:16 [ 37] [ 12] [507913271570] +20:14:16 [ 41] [ 8] [0102SAPA] +20:14:16 [ 42] [ 15] [999999 ] +20:14:16 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +20:14:16 [ 49] [ 3] [418] +20:14:16 [ 52] [ 16] [6D8C9C67F54CA0CA] +20:14:16 ============================================================================ +20:14:16 + + +waiting on router queue for slot.... +20:14:16 Sending to : <0> +20:14:16 ============================================================================ +20:14:16 ============================================================================ +20:14:16 Slot Id : <88> +20:14:16 Transaction Type : RESPONSE +20:14:16 Received From : +20:14:16 ============================================================================ +20:14:16 FNo. Len. Field Value +20:14:16 ============================================================================ +20:14:16 [ 1] [ 4] [0210] +20:14:16 [ 2] [ 16] [6213541000259906] +20:14:16 [ 3] [ 6] [010000] +20:14:16 [ 4] [ 12] [000200000000] +20:14:16 [ 7] [ 10] [0320131323] +20:14:16 [ 11] [ 6] [271569] +20:14:16 [ 12] [ 6] [201323] +20:14:16 [ 13] [ 4] [0320] +20:14:16 [ 15] [ 4] [0320] +20:14:16 [ 18] [ 4] [6011] +20:14:16 [ 19] [ 3] [418] +20:14:16 [ 22] [ 3] [021] +20:14:16 [ 32] [ 6] [180893] +20:14:16 [ 35] [ 32] [6213541000259906=491212015990382] +20:14:16 [ 37] [ 12] [507913271569] +20:14:16 [ 39] [ 2] [61] +20:14:16 [ 41] [ 8] [0118UDBR] +20:14:16 [ 49] [ 3] [418] +20:14:16 ============================================================================ +20:14:16 Sending to : +20:14:16 ============================================================================ +20:14:16 + + +waiting on router queue for slot.... +20:14:16 ============================================================================ +20:14:16 Slot Id : <86> +20:14:16 Transaction Type : RESPONSE +20:14:16 Received From : +20:14:16 ============================================================================ +20:14:16 FNo. Len. Field Value +20:14:16 ============================================================================ +20:14:16 [ 1] [ 4] [0210] +20:14:16 [ 2] [ 16] [6213544000824141] +20:14:16 [ 3] [ 6] [301000] +20:14:16 [ 4] [ 12] [000000000000] +20:14:16 [ 7] [ 10] [0320131324] +20:14:16 [ 11] [ 6] [271570] +20:14:16 [ 12] [ 6] [201324] +20:14:16 [ 13] [ 4] [0320] +20:14:16 [ 15] [ 4] [0320] +20:14:16 [ 18] [ 4] [6011] +20:14:16 [ 19] [ 3] [418] +20:14:16 [ 32] [ 6] [180893] +20:14:16 [ 35] [ 32] [6213544000824141=491212012414572] +20:14:16 [ 37] [ 12] [507913271570] +20:14:16 [ 38] [ 6] [147556] +20:14:16 [ 39] [ 2] [00] +20:14:16 [ 41] [ 8] [0102SAPA] +20:14:16 [ 49] [ 3] [418] +20:14:16 [ 54] [ 40] [1001418C0000091411111002418C000009141111] +20:14:16 ============================================================================ +20:14:16 Sending to : +20:14:16 ============================================================================ +20:14:16 + + +waiting on router queue for slot.... +20:14:17 ============================================================================ +20:14:17 Slot Id : <88> +20:14:17 Transaction Type : RESPONSE +20:14:17 Received From : +20:14:17 ============================================================================ +20:14:17 FNo. Len. Field Value +20:14:17 ============================================================================ +20:14:17 [ 1] [ 4] [0210] +20:14:17 [ 2] [ 16] [6213541000259906] +20:14:17 [ 3] [ 6] [010000] +20:14:17 [ 4] [ 12] [000200000000] +20:14:17 [ 7] [ 10] [0320131323] +20:14:17 [ 11] [ 6] [271569] +20:14:17 [ 12] [ 6] [201323] +20:14:17 [ 13] [ 4] [0320] +20:14:17 [ 15] [ 4] [0320] +20:14:17 [ 18] [ 4] [6011] +20:14:17 [ 19] [ 3] [418] +20:14:17 [ 22] [ 3] [021] +20:14:17 [ 32] [ 6] [180893] +20:14:17 [ 35] [ 32] [6213541000259906=491212015990382] +20:14:17 [ 37] [ 12] [507913271569] +20:14:17 [ 39] [ 2] [61] +20:14:17 [ 41] [ 8] [0118UDBR] +20:14:17 [ 49] [ 3] [418] +20:14:17 ============================================================================ +20:14:17 Calculate Source COMM Id = 2 +20:14:17 ============================================================================ +20:14:17 + + +waiting on router queue for slot.... +20:14:19 ============================================================================ +20:14:19 Slot Id : <86> +20:14:19 Transaction Type : RESPONSE +20:14:19 Received From : +20:14:19 ============================================================================ +20:14:19 FNo. Len. Field Value +20:14:19 ============================================================================ +20:14:19 [ 1] [ 4] [0210] +20:14:19 [ 2] [ 16] [6213544000824141] +20:14:19 [ 3] [ 6] [301000] +20:14:19 [ 4] [ 12] [000000000000] +20:14:19 [ 7] [ 10] [0320131324] +20:14:19 [ 11] [ 6] [271570] +20:14:19 [ 12] [ 6] [201324] +20:14:19 [ 13] [ 4] [0320] +20:14:19 [ 15] [ 4] [0320] +20:14:19 [ 18] [ 4] [6011] +20:14:19 [ 19] [ 3] [418] +20:14:19 [ 32] [ 6] [180893] +20:14:19 [ 35] [ 32] [6213544000824141=491212012414572] +20:14:19 [ 37] [ 12] [507913271570] +20:14:19 [ 38] [ 6] [147556] +20:14:19 [ 39] [ 2] [00] +20:14:19 [ 41] [ 8] [0102SAPA] +20:14:19 [ 49] [ 3] [418] +20:14:19 [ 54] [ 40] [1001418C0000091411111002418C000009141111] +20:14:19 ============================================================================ +20:14:19 Calculate Source COMM Id = 2 +20:14:19 ============================================================================ +20:14:19 + + +waiting on router queue for slot.... +20:14:32 ============================================================================ +20:14:32 Slot Id : <89> +20:14:32 Transaction Type : REQUEST +20:14:32 Received From : +20:14:32 ============================================================================ +20:14:32 FNo. Len. Field Value +20:14:32 ============================================================================ +20:14:32 [ 1] [ 4] [0800] +20:14:32 [ 7] [ 10] [0320011340] +20:14:32 [ 11] [ 6] [158157] +20:14:32 [ 70] [ 3] [301] +20:14:32 ============================================================================ +20:14:32 + + +waiting on router queue for slot.... +20:14:32 Sending to : +20:14:32 ============================================================================ +20:14:32 ============================================================================ +20:14:32 Slot Id : <89> +20:14:32 Transaction Type : RESPONSE +20:14:32 Received From : +20:14:32 ============================================================================ +20:14:32 FNo. Len. Field Value +20:14:32 ============================================================================ +20:14:32 [ 1] [ 4] [0810] +20:14:32 [ 7] [ 10] [0320011340] +20:14:32 [ 11] [ 6] [158157] +20:14:32 [ 39] [ 2] [00] +20:14:32 [ 70] [ 3] [301] +20:14:32 ============================================================================ +20:14:32 Calculate Source COMM Id = 2 +20:14:32 ============================================================================ +20:14:32 + + +waiting on router queue for slot.... +20:14:33 ============================================================================ +20:14:33 Slot Id : <79> +20:14:33 Transaction Type : REQUEST +20:14:33 Received From : +20:14:33 ============================================================================ +20:14:33 FNo. Len. Field Value +20:14:33 ============================================================================ +20:14:33 [ 1] [ 4] [0800] +20:14:33 [ 7] [ 10] [0321032624] +20:14:33 [ 11] [ 6] [202624] +20:14:33 [ 37] [ 12] [57920202624] +20:14:33 [ 70] [ 3] [301] +20:14:33 ============================================================================ +20:14:33 + + +waiting on router queue for slot.... +20:14:33 Sending to : +20:14:33 ============================================================================ +20:14:33 ============================================================================ +20:14:33 Slot Id : <79> +20:14:33 Transaction Type : RESPONSE +20:14:33 Received From : +20:14:33 ============================================================================ +20:14:33 FNo. Len. Field Value +20:14:33 ============================================================================ +20:14:33 [ 1] [ 4] [0810] +20:14:33 [ 7] [ 10] [0321032624] +20:14:33 [ 11] [ 6] [202624] +20:14:33 [ 37] [ 12] [579202026240] +20:14:33 [ 39] [ 2] [00] +20:14:33 [ 70] [ 3] [810] +20:14:33 ============================================================================ +20:14:33 Calculate Source COMM Id = 6 +20:14:33 ============================================================================ +20:14:33 + + +waiting on router queue for slot.... +20:14:42 ============================================================================ +20:14:42 Slot Id : <59> +20:14:42 Transaction Type : REQUEST +20:14:42 Received From : +20:14:42 ============================================================================ +20:14:42 FNo. Len. Field Value +20:14:42 ============================================================================ +20:14:42 [ 1] [ 4] [0800] +20:14:42 [ 7] [ 10] [0320011350] +20:14:42 [ 11] [ 6] [158158] +20:14:42 [ 70] [ 3] [301] +20:14:42 ============================================================================ +20:14:42 + + +waiting on router queue for slot.... +20:14:42 Sending to : +20:14:42 ============================================================================ +20:14:42 ============================================================================ +20:14:42 Slot Id : <59> +20:14:42 Transaction Type : RESPONSE +20:14:42 Received From : +20:14:42 ============================================================================ +20:14:42 FNo. Len. Field Value +20:14:42 ============================================================================ +20:14:42 [ 1] [ 4] [0810] +20:14:42 [ 7] [ 10] [0320011350] +20:14:42 [ 11] [ 6] [158158] +20:14:42 [ 39] [ 2] [00] +20:14:42 [ 70] [ 3] [301] +20:14:42 ============================================================================ +20:14:42 Calculate Source COMM Id = 2 +20:14:42 ============================================================================ +20:14:42 + + +waiting on router queue for slot.... +20:14:49 ============================================================================ +20:14:49 Slot Id : <58> +20:14:49 Transaction Type : REQUEST +20:14:49 Received From : +20:14:49 ============================================================================ +20:14:49 FNo. Len. Field Value +20:14:49 ============================================================================ +20:14:49 [ 1] [ 4] [0800] +20:14:49 [ 2] [ 5] [02531] +20:14:49 [ 3] [ 6] [579208] +20:14:49 [ 7] [ 10] [0320131449] +20:14:49 [ 11] [ 6] [807587] +20:14:49 [ 15] [ 10] [0320131449] +20:14:49 [ 37] [ 11] [57920807587] +20:14:49 [ 70] [ 3] [001] +20:14:49 ============================================================================ +20:14:49 + + +waiting on router queue for slot.... +20:14:49 ============================================================================ +20:14:49 Slot Id : <58> +20:14:49 Transaction Type : RESPONSE +20:14:49 Received From : +20:14:49 ============================================================================ +20:14:49 FNo. Len. Field Value +20:14:49 ============================================================================ +20:14:49 [ 1] [ 4] [0810] +20:14:49 [ 7] [ 10] [0320131449] +20:14:49 [ 11] [ 6] [807587] +20:14:49 [ 15] [ 4] [0320] +20:14:49 [ 37] [ 12] [57920807587] +20:14:49 [ 39] [ 2] [00] +20:14:49 [ 70] [ 3] [001] +20:14:49 ============================================================================ +20:14:49 Sending to : +20:14:49 ============================================================================ +20:14:49 + + +waiting on router queue for slot.... +20:14:52 ============================================================================ +20:14:52 Slot Id : <84> +20:14:52 Transaction Type : REQUEST +20:14:52 Received From : +20:14:52 ============================================================================ +20:14:52 FNo. Len. Field Value +20:14:52 ============================================================================ +20:14:52 [ 1] [ 4] [0800] +20:14:52 [ 7] [ 10] [0320011401] +20:14:52 [ 11] [ 6] [158159] +20:14:52 [ 70] [ 3] [301] +20:14:52 ============================================================================ +20:14:52 + + +waiting on router queue for slot.... +20:14:52 Sending to : +20:14:52 ============================================================================ +20:14:52 ============================================================================ +20:14:52 Slot Id : <84> +20:14:52 Transaction Type : RESPONSE +20:14:52 Received From : +20:14:52 ============================================================================ +20:14:52 FNo. Len. Field Value +20:14:52 ============================================================================ +20:14:52 [ 1] [ 4] [0810] +20:14:52 [ 7] [ 10] [0320011401] +20:14:52 [ 11] [ 6] [158159] +20:14:52 [ 39] [ 2] [00] +20:14:52 [ 70] [ 3] [301] +20:14:52 ============================================================================ +20:14:52 Calculate Source COMM Id = 2 +20:14:52 ============================================================================ +20:14:52 + + +waiting on router queue for slot.... +20:14:55 ============================================================================ +20:14:55 Slot Id : <5> +20:14:55 Transaction Type : REQUEST +20:14:55 Received From : +20:14:55 ============================================================================ +20:14:55 FNo. Len. Field Value +20:14:55 ============================================================================ +20:14:55 [ 1] [ 4] [0800] +20:14:55 [ 7] [ 10] [0320132242] +20:14:55 [ 11] [ 6] [032686] +20:14:55 [ 37] [ 12] [57920032686] +20:14:55 [ 70] [ 3] [301] +20:14:55 ============================================================================ +20:14:55 + + +waiting on router queue for slot.... +20:14:55 Sending to : +20:14:55 ============================================================================ +20:14:55 ============================================================================ +20:14:55 Slot Id : <5> +20:14:55 Transaction Type : RESPONSE +20:14:55 Received From : +20:14:55 ============================================================================ +20:14:55 FNo. Len. Field Value +20:14:55 ============================================================================ +20:14:55 [ 1] [ 4] [0810] +20:14:55 [ 7] [ 10] [0320132242] +20:14:55 [ 11] [ 6] [032686] +20:14:55 [ 37] [ 12] [579200326860] +20:14:55 [ 39] [ 2] [00] +20:14:55 [ 70] [ 3] [810] +20:14:55 ============================================================================ +20:14:55 Calculate Source COMM Id = 1 +20:14:55 ============================================================================ +20:14:55 + + +waiting on router queue for slot.... +20:14:57 ============================================================================ +20:14:57 Slot Id : <67> +20:14:57 Transaction Type : REQUEST +20:14:57 Received From : +20:14:57 ============================================================================ +20:14:57 FNo. Len. Field Value +20:14:57 ============================================================================ +20:14:57 [ 1] [ 4] [0200] +20:14:57 [ 2] [ 16] [6213541000259906] +20:14:57 [ 3] [ 6] [010000] +20:14:57 [ 4] [ 12] [000100000000] +20:14:57 [ 7] [ 10] [0320131404] +20:14:57 [ 11] [ 6] [271572] +20:14:57 [ 12] [ 6] [201404] +20:14:57 [ 13] [ 4] [0320] +20:14:57 [ 14] [ 4] [4912] +20:14:57 [ 15] [ 4] [0320] +20:14:57 [ 18] [ 4] [6011] +20:14:57 [ 19] [ 3] [418] +20:14:57 [ 22] [ 3] [021] +20:14:57 [ 25] [ 2] [01] +20:14:57 [ 28] [ 9] [D00002000] +20:14:57 [ 32] [ 6] [180893] +20:14:57 [ 35] [ 32] [6213541000259906=491212015990382] +20:14:57 [ 37] [ 12] [507913271572] +20:14:57 [ 41] [ 8] [0118UDBR] +20:14:57 [ 42] [ 15] [999999 ] +20:14:57 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +20:14:57 [ 49] [ 3] [418] +20:14:57 [ 52] [ 16] [9BEE315B3537F6E0] +20:14:57 ============================================================================ +20:14:57 + + +waiting on router queue for slot.... +20:14:57 Sending to : +20:14:57 ============================================================================ +20:14:57 Sending to : +20:14:57 ============================================================================ +20:14:57 ============================================================================ +20:14:57 Slot Id : <67> +20:14:57 Transaction Type : REQUEST +20:14:57 Received From : +20:14:57 ============================================================================ +20:14:57 FNo. Len. Field Value +20:14:57 ============================================================================ +20:14:57 [ 1] [ 4] [0200] +20:14:57 [ 2] [ 16] [6213541000259906] +20:14:57 [ 3] [ 6] [010000] +20:14:57 [ 4] [ 12] [000100000000] +20:14:57 [ 7] [ 10] [0320131404] +20:14:57 [ 11] [ 6] [271572] +20:14:57 [ 12] [ 6] [201404] +20:14:57 [ 13] [ 4] [0320] +20:14:57 [ 14] [ 4] [4912] +20:14:57 [ 15] [ 4] [0320] +20:14:57 [ 18] [ 4] [6011] +20:14:57 [ 19] [ 3] [418] +20:14:57 [ 22] [ 3] [021] +20:14:57 [ 25] [ 2] [01] +20:14:57 [ 28] [ 9] [D00002000] +20:14:57 [ 32] [ 6] [180893] +20:14:57 [ 35] [ 32] [6213541000259906=491212015990382] +20:14:57 [ 37] [ 12] [507913271572] +20:14:57 [ 41] [ 8] [0118UDBR] +20:14:57 [ 42] [ 15] [999999 ] +20:14:57 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +20:14:57 [ 49] [ 3] [418] +20:14:57 [ 52] [ 16] [9BEE315B3537F6E0] +20:14:57 ============================================================================ +20:14:57 + + +waiting on router queue for slot.... +20:14:57 Sending to : +20:14:57 ============================================================================ +20:14:57 ============================================================================ +20:14:57 Slot Id : <67> +20:14:57 Transaction Type : REQUEST +20:14:57 Received From : +20:14:57 ============================================================================ +20:14:57 FNo. Len. Field Value +20:14:57 ============================================================================ +20:14:57 [ 1] [ 4] [0200] +20:14:57 [ 2] [ 16] [6213541000259906] +20:14:57 [ 3] [ 6] [010000] +20:14:57 [ 4] [ 12] [000100000000] +20:14:57 [ 7] [ 10] [0320131404] +20:14:57 [ 11] [ 6] [271572] +20:14:57 [ 12] [ 6] [201404] +20:14:57 [ 13] [ 4] [0320] +20:14:57 [ 14] [ 4] [4912] +20:14:57 [ 15] [ 4] [0320] +20:14:57 [ 18] [ 4] [6011] +20:14:57 [ 19] [ 3] [418] +20:14:57 [ 22] [ 3] [021] +20:14:57 [ 25] [ 2] [01] +20:14:57 [ 28] [ 9] [D00002000] +20:14:57 [ 32] [ 6] [180893] +20:14:57 [ 35] [ 32] [6213541000259906=491212015990382] +20:14:57 [ 37] [ 12] [507913271572] +20:14:57 [ 41] [ 8] [0118UDBR] +20:14:57 [ 42] [ 15] [999999 ] +20:14:57 [ 43] [ 40] [ATM OUDOMXAY BRANCH LOCATION, Xay, Lao P] +20:14:57 [ 49] [ 3] [418] +20:14:57 [ 52] [ 16] [3361BB21B50252A7] +20:14:57 ============================================================================ +20:14:57 + + +waiting on router queue for slot.... +20:14:57 Sending to : <0> +20:14:57 ============================================================================ +20:14:58 ============================================================================ +20:14:58 Slot Id : <67> +20:14:58 Transaction Type : RESPONSE +20:14:58 Received From : +20:14:58 ============================================================================ +20:14:58 FNo. Len. Field Value +20:14:58 ============================================================================ +20:14:58 [ 1] [ 4] [0210] +20:14:58 [ 2] [ 16] [6213541000259906] +20:14:58 [ 3] [ 6] [010000] +20:14:58 [ 4] [ 12] [000100000000] +20:14:58 [ 7] [ 10] [0320131404] +20:14:58 [ 11] [ 6] [271572] +20:14:58 [ 12] [ 6] [201404] +20:14:58 [ 13] [ 4] [0320] +20:14:58 [ 15] [ 4] [0320] +20:14:58 [ 18] [ 4] [6011] +20:14:58 [ 19] [ 3] [418] +20:14:58 [ 32] [ 6] [180893] +20:14:58 [ 35] [ 32] [6213541000259906=491212015990382] +20:14:58 [ 37] [ 12] [507913271572] +20:14:58 [ 38] [ 6] [271572] +20:14:58 [ 39] [ 2] [51] +20:14:58 [ 41] [ 8] [0118UDBR] +20:14:58 [ 49] [ 3] [418] +20:14:58 [ 54] [ 40] [0001764C0000001821320002764C000000182132] +20:14:58 ============================================================================ +20:14:58 Sending to : +20:14:58 ============================================================================ +20:14:58 + + +waiting on router queue for slot.... +20:14:59 ============================================================================ +20:14:59 Slot Id : <67> +20:14:59 Transaction Type : RESPONSE +20:14:59 Received From : +20:14:59 ============================================================================ +20:14:59 FNo. Len. Field Value +20:14:59 ============================================================================ +20:14:59 [ 1] [ 4] [0210] +20:14:59 [ 2] [ 16] [6213541000259906] +20:14:59 [ 3] [ 6] [010000] +20:14:59 [ 4] [ 12] [000100000000] +20:14:59 [ 7] [ 10] [0320131404] +20:14:59 [ 11] [ 6] [271572] +20:14:59 [ 12] [ 6] [201404] +20:14:59 [ 13] [ 4] [0320] +20:14:59 [ 15] [ 4] [0320] +20:14:59 [ 18] [ 4] [6011] +20:14:59 [ 19] [ 3] [418] +20:14:59 [ 32] [ 6] [180893] +20:14:59 [ 35] [ 32] [6213541000259906=491212015990382] +20:14:59 [ 37] [ 12] [507913271572] +20:14:59 [ 38] [ 6] [271572] +20:14:59 [ 39] [ 2] [51] +20:14:59 [ 41] [ 8] [0118UDBR] +20:14:59 [ 49] [ 3] [418] +20:14:59 [ 54] [ 40] [0001764C0000001821320002764C000000182132] +20:14:59 ============================================================================ +20:14:59 Calculate Source COMM Id = 2 +20:14:59 ============================================================================ +20:14:59 + + +waiting on router queue for slot.... +20:15:14 ============================================================================ +20:15:14 Slot Id : <93> +20:15:14 Transaction Type : REQUEST +20:15:14 Received From : +20:15:14 ============================================================================ +20:15:14 FNo. Len. Field Value +20:15:14 ============================================================================ +20:15:14 [ 1] [ 4] [0800] +20:15:14 [ 7] [ 10] [0320011422] +20:15:14 [ 11] [ 6] [158160] +20:15:14 [ 70] [ 3] [301] +20:15:14 ============================================================================ +20:15:14 + + +waiting on router queue for slot.... +20:15:14 Sending to : +20:15:14 ============================================================================ +20:15:14 ============================================================================ +20:15:14 Slot Id : <93> +20:15:14 Transaction Type : RESPONSE +20:15:14 Received From : +20:15:14 ============================================================================ +20:15:14 FNo. Len. Field Value +20:15:14 ============================================================================ +20:15:14 [ 1] [ 4] [0810] +20:15:14 [ 7] [ 10] [0320011422] +20:15:14 [ 11] [ 6] [158160] +20:15:14 [ 39] [ 2] [00] +20:15:14 [ 70] [ 3] [301] +20:15:14 ============================================================================ +20:15:14 Calculate Source COMM Id = 2 +20:15:14 ============================================================================ +20:15:14 + + +waiting on router queue for slot.... +20:15:18 ============================================================================ +20:15:18 Slot Id : <62> +20:15:18 Transaction Type : REQUEST +20:15:18 Received From : +20:15:18 ============================================================================ +20:15:18 FNo. Len. Field Value +20:15:18 ============================================================================ +20:15:18 [ 1] [ 4] [0200] +20:15:18 [ 2] [ 16] [6688990040074823] +20:15:18 [ 3] [ 6] [012000] +20:15:18 [ 4] [ 12] [000130000000] +20:15:18 [ 7] [ 10] [0320131426] +20:15:18 [ 11] [ 6] [271574] +20:15:18 [ 12] [ 6] [201426] +20:15:18 [ 13] [ 4] [0320] +20:15:18 [ 14] [ 4] [9801] +20:15:18 [ 15] [ 4] [0320] +20:15:18 [ 18] [ 4] [6011] +20:15:18 [ 19] [ 3] [418] +20:15:18 [ 22] [ 3] [021] +20:15:18 [ 25] [ 2] [01] +20:15:18 [ 28] [ 9] [D00002000] +20:15:18 [ 32] [ 6] [180893] +20:15:18 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:15:18 [ 37] [ 12] [507913271574] +20:15:18 [ 41] [ 8] [0466PSLB] +20:15:18 [ 42] [ 15] [999999 ] +20:15:18 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:15:18 [ 49] [ 3] [418] +20:15:18 [ 52] [ 16] [CA0D64AEDD245F2B] +20:15:18 ============================================================================ +20:15:18 + + +waiting on router queue for slot.... +20:15:18 Sending to : +20:15:18 ============================================================================ +20:15:18 Sending to : +20:15:18 ============================================================================ +20:15:19 ============================================================================ +20:15:19 Slot Id : <62> +20:15:19 Transaction Type : REQUEST +20:15:19 Received From : +20:15:19 ============================================================================ +20:15:19 FNo. Len. Field Value +20:15:19 ============================================================================ +20:15:19 [ 1] [ 4] [0200] +20:15:19 [ 2] [ 16] [6688990040074823] +20:15:19 [ 3] [ 6] [012000] +20:15:19 [ 4] [ 12] [000130000000] +20:15:19 [ 7] [ 10] [0320131426] +20:15:19 [ 11] [ 6] [271574] +20:15:19 [ 12] [ 6] [201426] +20:15:19 [ 13] [ 4] [0320] +20:15:19 [ 14] [ 4] [9801] +20:15:19 [ 15] [ 4] [0320] +20:15:19 [ 18] [ 4] [6011] +20:15:19 [ 19] [ 3] [418] +20:15:19 [ 22] [ 3] [021] +20:15:19 [ 25] [ 2] [01] +20:15:19 [ 28] [ 9] [D00002000] +20:15:19 [ 32] [ 6] [180893] +20:15:19 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:15:19 [ 37] [ 12] [507913271574] +20:15:19 [ 41] [ 8] [0466PSLB] +20:15:19 [ 42] [ 15] [999999 ] +20:15:19 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:15:19 [ 49] [ 3] [418] +20:15:19 [ 52] [ 16] [CA0D64AEDD245F2B] +20:15:19 ============================================================================ +20:15:19 + + +waiting on router queue for slot.... +20:15:19 Sending to : +20:15:19 ============================================================================ +20:15:19 ============================================================================ +20:15:19 Slot Id : <62> +20:15:19 Transaction Type : REQUEST +20:15:19 Received From : +20:15:19 ============================================================================ +20:15:19 FNo. Len. Field Value +20:15:19 ============================================================================ +20:15:19 [ 1] [ 4] [0200] +20:15:19 [ 2] [ 16] [6688990040074823] +20:15:19 [ 3] [ 6] [012000] +20:15:19 [ 4] [ 12] [000130000000] +20:15:19 [ 7] [ 10] [0320131426] +20:15:19 [ 11] [ 6] [271574] +20:15:19 [ 12] [ 6] [201426] +20:15:19 [ 13] [ 4] [0320] +20:15:19 [ 14] [ 4] [9801] +20:15:19 [ 15] [ 4] [0320] +20:15:19 [ 18] [ 4] [6011] +20:15:19 [ 19] [ 3] [418] +20:15:19 [ 22] [ 3] [021] +20:15:19 [ 25] [ 2] [01] +20:15:19 [ 28] [ 9] [D00002000] +20:15:19 [ 32] [ 6] [180893] +20:15:19 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:15:19 [ 37] [ 12] [507913271574] +20:15:19 [ 41] [ 8] [0466PSLB] +20:15:19 [ 42] [ 15] [999999 ] +20:15:19 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:15:19 [ 49] [ 3] [418] +20:15:19 [ 52] [ 16] [31FCE1D065256607] +20:15:19 ============================================================================ +20:15:19 + + +waiting on router queue for slot.... +20:15:19 Sending to : <0> +20:15:19 ============================================================================ +20:15:19 ============================================================================ +20:15:19 Slot Id : <62> +20:15:19 Transaction Type : RESPONSE +20:15:19 Received From : +20:15:19 ============================================================================ +20:15:19 FNo. Len. Field Value +20:15:19 ============================================================================ +20:15:19 [ 1] [ 4] [0210] +20:15:19 [ 2] [ 16] [6688990040074823] +20:15:19 [ 3] [ 6] [012000] +20:15:19 [ 4] [ 12] [000130000000] +20:15:19 [ 7] [ 10] [0320131426] +20:15:19 [ 11] [ 6] [271574] +20:15:19 [ 12] [ 6] [201426] +20:15:19 [ 13] [ 4] [0320] +20:15:19 [ 15] [ 4] [0320] +20:15:19 [ 18] [ 4] [6011] +20:15:19 [ 19] [ 3] [418] +20:15:19 [ 22] [ 3] [021] +20:15:19 [ 32] [ 6] [180893] +20:15:19 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:15:19 [ 37] [ 12] [507913271574] +20:15:19 [ 39] [ 2] [61] +20:15:19 [ 41] [ 8] [0466PSLB] +20:15:19 [ 49] [ 3] [418] +20:15:19 ============================================================================ +20:15:19 Sending to : +20:15:19 ============================================================================ +20:15:19 + + +waiting on router queue for slot.... +20:15:20 ============================================================================ +20:15:20 Slot Id : <62> +20:15:20 Transaction Type : RESPONSE +20:15:20 Received From : +20:15:20 ============================================================================ +20:15:20 FNo. Len. Field Value +20:15:20 ============================================================================ +20:15:20 [ 1] [ 4] [0210] +20:15:20 [ 2] [ 16] [6688990040074823] +20:15:20 [ 3] [ 6] [012000] +20:15:20 [ 4] [ 12] [000130000000] +20:15:20 [ 7] [ 10] [0320131426] +20:15:20 [ 11] [ 6] [271574] +20:15:20 [ 12] [ 6] [201426] +20:15:20 [ 13] [ 4] [0320] +20:15:20 [ 15] [ 4] [0320] +20:15:20 [ 18] [ 4] [6011] +20:15:20 [ 19] [ 3] [418] +20:15:20 [ 22] [ 3] [021] +20:15:20 [ 32] [ 6] [180893] +20:15:20 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:15:20 [ 37] [ 12] [507913271574] +20:15:20 [ 39] [ 2] [61] +20:15:20 [ 41] [ 8] [0466PSLB] +20:15:20 [ 49] [ 3] [418] +20:15:20 ============================================================================ +20:15:20 Calculate Source COMM Id = 2 +20:15:20 ============================================================================ +20:15:20 + + +waiting on router queue for slot.... +20:15:34 ============================================================================ +20:15:34 Slot Id : <39> +20:15:34 Transaction Type : REQUEST +20:15:34 Received From : +20:15:34 ============================================================================ +20:15:34 FNo. Len. Field Value +20:15:34 ============================================================================ +20:15:34 [ 1] [ 4] [0800] +20:15:34 [ 7] [ 10] [0320011443] +20:15:34 [ 11] [ 6] [158161] +20:15:34 [ 70] [ 3] [301] +20:15:34 ============================================================================ +20:15:34 + + +waiting on router queue for slot.... +20:15:34 Sending to : +20:15:34 ============================================================================ +20:15:34 ============================================================================ +20:15:34 Slot Id : <39> +20:15:34 Transaction Type : RESPONSE +20:15:34 Received From : +20:15:34 ============================================================================ +20:15:34 FNo. Len. Field Value +20:15:34 ============================================================================ +20:15:34 [ 1] [ 4] [0810] +20:15:34 [ 7] [ 10] [0320011443] +20:15:34 [ 11] [ 6] [158161] +20:15:34 [ 39] [ 2] [00] +20:15:34 [ 70] [ 3] [301] +20:15:34 ============================================================================ +20:15:34 Calculate Source COMM Id = 2 +20:15:34 ============================================================================ +20:15:34 + + +waiting on router queue for slot.... +20:15:38 ============================================================================ +20:15:38 Slot Id : <56> +20:15:38 Transaction Type : REQUEST +20:15:38 Received From : +20:15:38 ============================================================================ +20:15:38 FNo. Len. Field Value +20:15:38 ============================================================================ +20:15:38 [ 1] [ 4] [0800] +20:15:38 [ 7] [ 10] [0321032729] +20:15:38 [ 11] [ 6] [202729] +20:15:38 [ 37] [ 12] [57920202729] +20:15:38 [ 70] [ 3] [301] +20:15:38 ============================================================================ +20:15:38 + + +waiting on router queue for slot.... +20:15:38 Sending to : +20:15:38 ============================================================================ +20:15:38 ============================================================================ +20:15:38 Slot Id : <56> +20:15:38 Transaction Type : RESPONSE +20:15:38 Received From : +20:15:38 ============================================================================ +20:15:38 FNo. Len. Field Value +20:15:38 ============================================================================ +20:15:38 [ 1] [ 4] [0810] +20:15:38 [ 7] [ 10] [0321032729] +20:15:38 [ 11] [ 6] [202729] +20:15:38 [ 37] [ 12] [579202027290] +20:15:38 [ 39] [ 2] [00] +20:15:38 [ 70] [ 3] [810] +20:15:38 ============================================================================ +20:15:38 Calculate Source COMM Id = 6 +20:15:38 ============================================================================ +20:15:38 + + +waiting on router queue for slot.... +20:15:46 ============================================================================ +20:15:46 Slot Id : <82> +20:15:46 Transaction Type : REQUEST +20:15:46 Received From : +20:15:46 ============================================================================ +20:15:46 FNo. Len. Field Value +20:15:46 ============================================================================ +20:15:46 [ 1] [ 4] [0800] +20:15:46 [ 7] [ 10] [0320011454] +20:15:46 [ 11] [ 6] [158162] +20:15:46 [ 70] [ 3] [301] +20:15:46 ============================================================================ +20:15:46 + + +waiting on router queue for slot.... +20:15:46 Sending to : +20:15:46 ============================================================================ +20:15:46 ============================================================================ +20:15:46 Slot Id : <82> +20:15:46 Transaction Type : RESPONSE +20:15:46 Received From : +20:15:46 ============================================================================ +20:15:46 FNo. Len. Field Value +20:15:46 ============================================================================ +20:15:46 [ 1] [ 4] [0810] +20:15:46 [ 7] [ 10] [0320011454] +20:15:46 [ 11] [ 6] [158162] +20:15:46 [ 39] [ 2] [00] +20:15:46 [ 70] [ 3] [301] +20:15:46 ============================================================================ +20:15:46 Calculate Source COMM Id = 2 +20:15:46 ============================================================================ +20:15:46 + + +waiting on router queue for slot.... +20:15:51 ============================================================================ +20:15:51 Slot Id : <51> +20:15:51 Transaction Type : REQUEST +20:15:51 Received From : +20:15:51 ============================================================================ +20:15:51 FNo. Len. Field Value +20:15:51 ============================================================================ +20:15:51 [ 1] [ 4] [0800] +20:15:51 [ 2] [ 5] [02531] +20:15:51 [ 3] [ 6] [579208] +20:15:51 [ 7] [ 10] [0320131551] +20:15:51 [ 11] [ 6] [807588] +20:15:51 [ 15] [ 10] [0320131551] +20:15:51 [ 37] [ 11] [57920807588] +20:15:51 [ 70] [ 3] [001] +20:15:51 ============================================================================ +20:15:51 + + +waiting on router queue for slot.... +20:15:51 ============================================================================ +20:15:51 Slot Id : <51> +20:15:51 Transaction Type : RESPONSE +20:15:51 Received From : +20:15:51 ============================================================================ +20:15:51 FNo. Len. Field Value +20:15:51 ============================================================================ +20:15:51 [ 1] [ 4] [0810] +20:15:51 [ 7] [ 10] [0320131551] +20:15:51 [ 11] [ 6] [807588] +20:15:51 [ 15] [ 4] [0320] +20:15:51 [ 37] [ 12] [57920807588] +20:15:51 [ 39] [ 2] [00] +20:15:51 [ 70] [ 3] [001] +20:15:51 ============================================================================ +20:15:51 Sending to : +20:15:51 ============================================================================ +20:15:51 + + +waiting on router queue for slot.... +20:15:56 ============================================================================ +20:15:56 Slot Id : <64> +20:15:56 Transaction Type : REQUEST +20:15:56 Received From : +20:15:56 ============================================================================ +20:15:56 FNo. Len. Field Value +20:15:56 ============================================================================ +20:15:56 [ 1] [ 4] [0800] +20:15:56 [ 7] [ 10] [0320011505] +20:15:56 [ 11] [ 6] [158163] +20:15:56 [ 70] [ 3] [301] +20:15:56 ============================================================================ +20:15:56 + + +waiting on router queue for slot.... +20:15:56 Sending to : +20:15:56 ============================================================================ +20:15:56 ============================================================================ +20:15:56 Slot Id : <64> +20:15:56 Transaction Type : RESPONSE +20:15:56 Received From : +20:15:56 ============================================================================ +20:15:56 FNo. Len. Field Value +20:15:56 ============================================================================ +20:15:56 [ 1] [ 4] [0810] +20:15:56 [ 7] [ 10] [0320011505] +20:15:56 [ 11] [ 6] [158163] +20:15:56 [ 39] [ 2] [00] +20:15:56 [ 70] [ 3] [301] +20:15:56 ============================================================================ +20:15:56 Calculate Source COMM Id = 2 +20:15:56 ============================================================================ +20:15:56 + + +waiting on router queue for slot.... +20:16:08 ============================================================================ +20:16:08 Slot Id : <100> +20:16:08 Transaction Type : REQUEST +20:16:08 Received From : +20:16:08 ============================================================================ +20:16:08 FNo. Len. Field Value +20:16:08 ============================================================================ +20:16:08 [ 1] [ 4] [0800] +20:16:08 [ 7] [ 10] [0320011517] +20:16:08 [ 11] [ 6] [158164] +20:16:08 [ 70] [ 3] [301] +20:16:08 ============================================================================ +20:16:08 + + +waiting on router queue for slot.... +20:16:08 Sending to : +20:16:08 ============================================================================ +20:16:08 ============================================================================ +20:16:08 Slot Id : <100> +20:16:08 Transaction Type : RESPONSE +20:16:08 Received From : +20:16:08 ============================================================================ +20:16:08 FNo. Len. Field Value +20:16:08 ============================================================================ +20:16:08 [ 1] [ 4] [0810] +20:16:08 [ 7] [ 10] [0320011517] +20:16:08 [ 11] [ 6] [158164] +20:16:08 [ 39] [ 2] [00] +20:16:08 [ 70] [ 3] [301] +20:16:08 ============================================================================ +20:16:08 Calculate Source COMM Id = 2 +20:16:08 ============================================================================ +20:16:08 + + +waiting on router queue for slot.... +20:16:20 ============================================================================ +20:16:20 Slot Id : <65> +20:16:20 Transaction Type : REQUEST +20:16:20 Received From : +20:16:20 ============================================================================ +20:16:20 FNo. Len. Field Value +20:16:20 ============================================================================ +20:16:20 [ 1] [ 4] [0800] +20:16:20 [ 7] [ 10] [0320131412] +20:16:20 [ 11] [ 6] [077882] +20:16:20 [ 37] [ 12] [57920077882] +20:16:20 [ 70] [ 3] [301] +20:16:20 ============================================================================ +20:16:20 + + +waiting on router queue for slot.... +20:16:20 Sending to : +20:16:20 ============================================================================ +20:16:20 ============================================================================ +20:16:20 Slot Id : <65> +20:16:20 Transaction Type : RESPONSE +20:16:20 Received From : +20:16:20 ============================================================================ +20:16:20 FNo. Len. Field Value +20:16:20 ============================================================================ +20:16:20 [ 1] [ 4] [0810] +20:16:20 [ 7] [ 10] [0320131412] +20:16:20 [ 11] [ 6] [077882] +20:16:20 [ 37] [ 12] [579200778820] +20:16:20 [ 39] [ 2] [00] +20:16:20 [ 70] [ 3] [810] +20:16:20 ============================================================================ +20:16:20 Calculate Source COMM Id = 4 +20:16:20 ============================================================================ +20:16:20 + + +waiting on router queue for slot.... +20:16:24 ============================================================================ +20:16:24 Slot Id : <91> +20:16:24 Transaction Type : REQUEST +20:16:24 Received From : +20:16:24 ============================================================================ +20:16:24 FNo. Len. Field Value +20:16:24 ============================================================================ +20:16:24 [ 1] [ 4] [0800] +20:16:24 [ 7] [ 10] [0320011532] +20:16:24 [ 11] [ 6] [158165] +20:16:24 [ 70] [ 3] [301] +20:16:24 ============================================================================ +20:16:24 + + +waiting on router queue for slot.... +20:16:24 Sending to : +20:16:24 ============================================================================ +20:16:24 ============================================================================ +20:16:24 Slot Id : <91> +20:16:24 Transaction Type : RESPONSE +20:16:24 Received From : +20:16:24 ============================================================================ +20:16:24 FNo. Len. Field Value +20:16:24 ============================================================================ +20:16:24 [ 1] [ 4] [0810] +20:16:24 [ 7] [ 10] [0320011532] +20:16:24 [ 11] [ 6] [158165] +20:16:24 [ 39] [ 2] [00] +20:16:24 [ 70] [ 3] [301] +20:16:24 ============================================================================ +20:16:24 Calculate Source COMM Id = 2 +20:16:24 ============================================================================ +20:16:24 + + +waiting on router queue for slot.... +20:16:29 ============================================================================ +20:16:29 Slot Id : <72> +20:16:29 Transaction Type : REQUEST +20:16:29 Received From : +20:16:29 ============================================================================ +20:16:29 FNo. Len. Field Value +20:16:29 ============================================================================ +20:16:29 [ 1] [ 4] [0200] +20:16:29 [ 2] [ 16] [6688990700279308] +20:16:29 [ 3] [ 6] [010000] +20:16:29 [ 4] [ 12] [000030000000] +20:16:29 [ 7] [ 10] [0320201626] +20:16:29 [ 11] [ 6] [841377] +20:16:29 [ 12] [ 6] [201626] +20:16:29 [ 13] [ 4] [0320] +20:16:29 [ 15] [ 4] [0320] +20:16:29 [ 18] [ 4] [6011] +20:16:29 [ 22] [ 3] [900] +20:16:29 [ 25] [ 2] [02] +20:16:29 [ 28] [ 9] [D00002000] +20:16:29 [ 32] [ 6] [621354] +20:16:29 [ 35] [ 37] [6688990700279308=44010071930832300000] +20:16:29 [ 37] [ 12] [507904707920] +20:16:29 [ 41] [ 8] [18000900] +20:16:29 [ 42] [ 15] [NATIVE ] +20:16:29 [ 43] [ 40] [Bounneau District Bounneua LAO] +20:16:29 [ 49] [ 3] [418] +20:16:29 [ 52] [ 16] [87DDF44699268CAB] +20:16:29 ============================================================================ +20:16:29 + + +waiting on router queue for slot.... +20:16:29 Sending to : +20:16:29 ============================================================================ +20:16:29 Sending to : +20:16:29 ============================================================================ +20:16:30 ============================================================================ +20:16:30 Slot Id : <72> +20:16:30 Transaction Type : REQUEST +20:16:30 Received From : +20:16:30 ============================================================================ +20:16:30 FNo. Len. Field Value +20:16:30 ============================================================================ +20:16:30 [ 1] [ 4] [0200] +20:16:30 [ 2] [ 16] [6688990700279308] +20:16:30 [ 3] [ 6] [010000] +20:16:30 [ 4] [ 12] [000030000000] +20:16:30 [ 7] [ 10] [0320201626] +20:16:30 [ 11] [ 6] [841377] +20:16:30 [ 12] [ 6] [201626] +20:16:30 [ 13] [ 4] [0320] +20:16:30 [ 15] [ 4] [0320] +20:16:30 [ 18] [ 4] [6011] +20:16:30 [ 22] [ 3] [900] +20:16:30 [ 25] [ 2] [02] +20:16:30 [ 28] [ 9] [D00002000] +20:16:30 [ 32] [ 6] [621354] +20:16:30 [ 35] [ 37] [6688990700279308=44010071930832300000] +20:16:30 [ 37] [ 12] [507904707920] +20:16:30 [ 41] [ 8] [18000900] +20:16:30 [ 42] [ 15] [NATIVE ] +20:16:30 [ 43] [ 40] [Bounneau District Bounneua LAO] +20:16:30 [ 49] [ 3] [418] +20:16:30 [ 52] [ 16] [87DDF44699268CAB] +20:16:30 ============================================================================ +20:16:30 + + +waiting on router queue for slot.... +20:16:30 Sending to : +20:16:30 ============================================================================ +20:16:30 ============================================================================ +20:16:30 Slot Id : <72> +20:16:30 Transaction Type : REQUEST +20:16:30 Received From : +20:16:30 ============================================================================ +20:16:30 FNo. Len. Field Value +20:16:30 ============================================================================ +20:16:30 [ 1] [ 4] [0200] +20:16:30 [ 2] [ 16] [6688990700279308] +20:16:30 [ 3] [ 6] [010000] +20:16:30 [ 4] [ 12] [000030000000] +20:16:30 [ 7] [ 10] [0320201626] +20:16:30 [ 11] [ 6] [841377] +20:16:30 [ 12] [ 6] [201626] +20:16:30 [ 13] [ 4] [0320] +20:16:30 [ 15] [ 4] [0320] +20:16:30 [ 18] [ 4] [6011] +20:16:30 [ 22] [ 3] [900] +20:16:30 [ 25] [ 2] [02] +20:16:30 [ 28] [ 9] [D00002000] +20:16:30 [ 32] [ 6] [621354] +20:16:30 [ 35] [ 37] [6688990700279308=44010071930832300000] +20:16:30 [ 37] [ 12] [507904707920] +20:16:30 [ 41] [ 8] [18000900] +20:16:30 [ 42] [ 15] [NATIVE ] +20:16:30 [ 43] [ 40] [Bounneau District Bounneua LAO] +20:16:30 [ 49] [ 3] [418] +20:16:30 [ 52] [ 16] [632CAF5F2D23B1F6] +20:16:30 ============================================================================ +20:16:30 + + +waiting on router queue for slot.... +20:16:30 Sending to : <4> +20:16:30 ============================================================================ +20:16:31 ============================================================================ +20:16:31 Slot Id : <76> +20:16:31 Transaction Type : REQUEST +20:16:31 Received From : +20:16:31 ============================================================================ +20:16:31 FNo. Len. Field Value +20:16:31 ============================================================================ +20:16:31 [ 1] [ 4] [0200] +20:16:31 [ 2] [ 16] [6688990040074823] +20:16:31 [ 3] [ 6] [011000] +20:16:31 [ 4] [ 12] [000120000000] +20:16:31 [ 7] [ 10] [0320131539] +20:16:31 [ 11] [ 6] [271576] +20:16:31 [ 12] [ 6] [201539] +20:16:31 [ 13] [ 4] [0320] +20:16:31 [ 14] [ 4] [9801] +20:16:31 [ 15] [ 4] [0320] +20:16:31 [ 18] [ 4] [6011] +20:16:31 [ 19] [ 3] [418] +20:16:31 [ 22] [ 3] [021] +20:16:31 [ 25] [ 2] [01] +20:16:31 [ 28] [ 9] [D00002000] +20:16:31 [ 32] [ 6] [180893] +20:16:31 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:16:31 [ 37] [ 12] [507913271576] +20:16:31 [ 41] [ 8] [0466PSLB] +20:16:31 [ 42] [ 15] [999999 ] +20:16:31 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:16:31 [ 49] [ 3] [418] +20:16:31 [ 52] [ 16] [CA0D64AEDD245F2B] +20:16:31 ============================================================================ +20:16:31 + + +waiting on router queue for slot.... +20:16:31 Sending to : +20:16:31 ============================================================================ +20:16:31 Sending to : +20:16:31 ============================================================================ +20:16:31 ============================================================================ +20:16:31 Slot Id : <72> +20:16:31 Transaction Type : RESPONSE +20:16:31 Received From : +20:16:31 ============================================================================ +20:16:31 FNo. Len. Field Value +20:16:31 ============================================================================ +20:16:31 [ 1] [ 4] [0210] +20:16:31 [ 2] [ 16] [6688990700279308] +20:16:31 [ 3] [ 6] [010000] +20:16:31 [ 4] [ 12] [000030000000] +20:16:31 [ 11] [ 6] [841377] +20:16:31 [ 12] [ 6] [201626] +20:16:31 [ 15] [ 4] [0320] +20:16:31 [ 18] [ 4] [6011] +20:16:31 [ 32] [ 6] [621354] +20:16:31 [ 35] [ 37] [6688990700279308=44010071930832300000] +20:16:31 [ 37] [ 12] [507904707920] +20:16:31 [ 38] [ 6] [430938] +20:16:31 [ 39] [ 2] [00] +20:16:31 [ 41] [ 8] [18000900] +20:16:31 [ 49] [ 3] [418] +20:16:31 [ 54] [ 20] [0002418C000180288326] +20:16:31 ============================================================================ +20:16:31 Sending to : +20:16:31 ============================================================================ +20:16:31 + + +waiting on router queue for slot.... +20:16:31 ============================================================================ +20:16:31 Slot Id : <76> +20:16:31 Transaction Type : REQUEST +20:16:31 Received From : +20:16:31 ============================================================================ +20:16:31 FNo. Len. Field Value +20:16:31 ============================================================================ +20:16:31 [ 1] [ 4] [0200] +20:16:31 [ 2] [ 16] [6688990040074823] +20:16:31 [ 3] [ 6] [011000] +20:16:31 [ 4] [ 12] [000120000000] +20:16:31 [ 7] [ 10] [0320131539] +20:16:31 [ 11] [ 6] [271576] +20:16:31 [ 12] [ 6] [201539] +20:16:31 [ 13] [ 4] [0320] +20:16:31 [ 14] [ 4] [9801] +20:16:31 [ 15] [ 4] [0320] +20:16:31 [ 18] [ 4] [6011] +20:16:31 [ 19] [ 3] [418] +20:16:31 [ 22] [ 3] [021] +20:16:31 [ 25] [ 2] [01] +20:16:31 [ 28] [ 9] [D00002000] +20:16:31 [ 32] [ 6] [180893] +20:16:31 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:16:31 [ 37] [ 12] [507913271576] +20:16:31 [ 41] [ 8] [0466PSLB] +20:16:31 [ 42] [ 15] [999999 ] +20:16:31 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:16:31 [ 49] [ 3] [418] +20:16:31 [ 52] [ 16] [CA0D64AEDD245F2B] +20:16:31 ============================================================================ +20:16:31 + + +waiting on router queue for slot.... +20:16:31 Sending to : +20:16:31 ============================================================================ +20:16:31 ============================================================================ +20:16:31 Slot Id : <76> +20:16:31 Transaction Type : REQUEST +20:16:31 Received From : +20:16:31 ============================================================================ +20:16:31 FNo. Len. Field Value +20:16:31 ============================================================================ +20:16:31 [ 1] [ 4] [0200] +20:16:31 [ 2] [ 16] [6688990040074823] +20:16:31 [ 3] [ 6] [011000] +20:16:31 [ 4] [ 12] [000120000000] +20:16:31 [ 7] [ 10] [0320131539] +20:16:31 [ 11] [ 6] [271576] +20:16:31 [ 12] [ 6] [201539] +20:16:31 [ 13] [ 4] [0320] +20:16:31 [ 14] [ 4] [9801] +20:16:31 [ 15] [ 4] [0320] +20:16:31 [ 18] [ 4] [6011] +20:16:31 [ 19] [ 3] [418] +20:16:31 [ 22] [ 3] [021] +20:16:31 [ 25] [ 2] [01] +20:16:31 [ 28] [ 9] [D00002000] +20:16:31 [ 32] [ 6] [180893] +20:16:31 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:16:31 [ 37] [ 12] [507913271576] +20:16:31 [ 41] [ 8] [0466PSLB] +20:16:31 [ 42] [ 15] [999999 ] +20:16:31 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:16:31 [ 49] [ 3] [418] +20:16:31 [ 52] [ 16] [31FCE1D065256607] +20:16:31 ============================================================================ +20:16:31 + + +waiting on router queue for slot.... +20:16:31 Sending to : <0> +20:16:31 ============================================================================ +20:16:31 ============================================================================ +20:16:31 Slot Id : <76> +20:16:31 Transaction Type : RESPONSE +20:16:31 Received From : +20:16:31 ============================================================================ +20:16:31 FNo. Len. Field Value +20:16:31 ============================================================================ +20:16:31 [ 1] [ 4] [0210] +20:16:31 [ 2] [ 16] [6688990040074823] +20:16:31 [ 3] [ 6] [011000] +20:16:31 [ 4] [ 12] [000120000000] +20:16:31 [ 7] [ 10] [0320131539] +20:16:31 [ 11] [ 6] [271576] +20:16:31 [ 12] [ 6] [201539] +20:16:31 [ 13] [ 4] [0320] +20:16:31 [ 15] [ 4] [0320] +20:16:31 [ 18] [ 4] [6011] +20:16:31 [ 19] [ 3] [418] +20:16:31 [ 22] [ 3] [021] +20:16:31 [ 32] [ 6] [180893] +20:16:31 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:16:31 [ 37] [ 12] [507913271576] +20:16:31 [ 39] [ 2] [61] +20:16:31 [ 41] [ 8] [0466PSLB] +20:16:31 [ 49] [ 3] [418] +20:16:31 ============================================================================ +20:16:31 Sending to : +20:16:31 ============================================================================ +20:16:31 + + +waiting on router queue for slot.... +20:16:32 ============================================================================ +20:16:32 Slot Id : <72> +20:16:32 Transaction Type : RESPONSE +20:16:32 Received From : +20:16:32 ============================================================================ +20:16:32 FNo. Len. Field Value +20:16:32 ============================================================================ +20:16:32 [ 1] [ 4] [0210] +20:16:32 [ 2] [ 16] [6688990700279308] +20:16:32 [ 3] [ 6] [010000] +20:16:32 [ 4] [ 12] [000030000000] +20:16:32 [ 11] [ 6] [841377] +20:16:32 [ 12] [ 6] [201626] +20:16:32 [ 15] [ 4] [0320] +20:16:32 [ 18] [ 4] [6011] +20:16:32 [ 32] [ 6] [621354] +20:16:32 [ 35] [ 37] [6688990700279308=44010071930832300000] +20:16:32 [ 37] [ 12] [507904707920] +20:16:32 [ 38] [ 6] [430938] +20:16:32 [ 39] [ 2] [00] +20:16:32 [ 41] [ 8] [18000900] +20:16:32 [ 49] [ 3] [418] +20:16:32 [ 54] [ 20] [0002418C000180288326] +20:16:32 ============================================================================ +20:16:32 Calculate Source COMM Id = 0 +20:16:32 ============================================================================ +20:16:32 + + +waiting on router queue for slot.... +20:16:34 ============================================================================ +20:16:34 Slot Id : <76> +20:16:34 Transaction Type : RESPONSE +20:16:34 Received From : +20:16:34 ============================================================================ +20:16:34 FNo. Len. Field Value +20:16:34 ============================================================================ +20:16:34 [ 1] [ 4] [0210] +20:16:34 [ 2] [ 16] [6688990040074823] +20:16:34 [ 3] [ 6] [011000] +20:16:34 [ 4] [ 12] [000120000000] +20:16:34 [ 7] [ 10] [0320131539] +20:16:34 [ 11] [ 6] [271576] +20:16:34 [ 12] [ 6] [201539] +20:16:34 [ 13] [ 4] [0320] +20:16:34 [ 15] [ 4] [0320] +20:16:34 [ 18] [ 4] [6011] +20:16:34 [ 19] [ 3] [418] +20:16:34 [ 22] [ 3] [021] +20:16:34 [ 32] [ 6] [180893] +20:16:34 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:16:34 [ 37] [ 12] [507913271576] +20:16:34 [ 39] [ 2] [61] +20:16:34 [ 41] [ 8] [0466PSLB] +20:16:34 [ 49] [ 3] [418] +20:16:34 ============================================================================ +20:16:34 Calculate Source COMM Id = 2 +20:16:34 ============================================================================ +20:16:34 + + +waiting on router queue for slot.... +20:16:43 ============================================================================ +20:16:43 Slot Id : <90> +20:16:43 Transaction Type : REQUEST +20:16:43 Received From : +20:16:43 ============================================================================ +20:16:43 FNo. Len. Field Value +20:16:43 ============================================================================ +20:16:43 [ 1] [ 4] [0800] +20:16:43 [ 7] [ 10] [0321032835] +20:16:43 [ 11] [ 6] [202835] +20:16:43 [ 37] [ 12] [57920202835] +20:16:43 [ 70] [ 3] [301] +20:16:43 ============================================================================ +20:16:43 + + +waiting on router queue for slot.... +20:16:43 Sending to : +20:16:43 ============================================================================ +20:16:43 ============================================================================ +20:16:43 Slot Id : <90> +20:16:43 Transaction Type : RESPONSE +20:16:43 Received From : +20:16:43 ============================================================================ +20:16:43 FNo. Len. Field Value +20:16:43 ============================================================================ +20:16:43 [ 1] [ 4] [0810] +20:16:43 [ 7] [ 10] [0321032835] +20:16:43 [ 11] [ 6] [202835] +20:16:43 [ 37] [ 12] [579202028350] +20:16:43 [ 39] [ 2] [00] +20:16:43 [ 70] [ 3] [810] +20:16:43 ============================================================================ +20:16:43 Calculate Source COMM Id = 6 +20:16:43 ============================================================================ +20:16:43 + + +waiting on router queue for slot.... +20:16:46 ============================================================================ +20:16:46 Slot Id : <114> +20:16:46 Transaction Type : REQUEST +20:16:46 Received From : +20:16:46 ============================================================================ +20:16:46 FNo. Len. Field Value +20:16:46 ============================================================================ +20:16:46 [ 1] [ 4] [0800] +20:16:46 [ 7] [ 10] [0320011554] +20:16:46 [ 11] [ 6] [158166] +20:16:46 [ 70] [ 3] [301] +20:16:46 ============================================================================ +20:16:46 + + +waiting on router queue for slot.... +20:16:46 Sending to : +20:16:46 ============================================================================ +20:16:46 ============================================================================ +20:16:46 Slot Id : <114> +20:16:46 Transaction Type : RESPONSE +20:16:46 Received From : +20:16:46 ============================================================================ +20:16:46 FNo. Len. Field Value +20:16:46 ============================================================================ +20:16:46 [ 1] [ 4] [0810] +20:16:46 [ 7] [ 10] [0320011554] +20:16:46 [ 11] [ 6] [158166] +20:16:46 [ 39] [ 2] [00] +20:16:46 [ 70] [ 3] [301] +20:16:46 ============================================================================ +20:16:46 Calculate Source COMM Id = 2 +20:16:46 ============================================================================ +20:16:46 + + +waiting on router queue for slot.... +20:16:53 ============================================================================ +20:16:53 Slot Id : <106> +20:16:53 Transaction Type : REQUEST +20:16:53 Received From : +20:16:53 ============================================================================ +20:16:53 FNo. Len. Field Value +20:16:53 ============================================================================ +20:16:53 [ 1] [ 4] [0800] +20:16:53 [ 2] [ 5] [02531] +20:16:53 [ 3] [ 6] [579208] +20:16:53 [ 7] [ 10] [0320131653] +20:16:53 [ 11] [ 6] [807589] +20:16:53 [ 15] [ 10] [0320131653] +20:16:53 [ 37] [ 11] [57920807589] +20:16:53 [ 70] [ 3] [001] +20:16:53 ============================================================================ +20:16:53 + + +waiting on router queue for slot.... +20:16:53 ============================================================================ +20:16:53 Slot Id : <106> +20:16:53 Transaction Type : RESPONSE +20:16:53 Received From : +20:16:53 ============================================================================ +20:16:53 FNo. Len. Field Value +20:16:53 ============================================================================ +20:16:53 [ 1] [ 4] [0810] +20:16:53 [ 7] [ 10] [0320131653] +20:16:53 [ 11] [ 6] [807589] +20:16:53 [ 15] [ 4] [0320] +20:16:53 [ 37] [ 12] [57920807589] +20:16:53 [ 39] [ 2] [00] +20:16:53 [ 70] [ 3] [001] +20:16:53 ============================================================================ +20:16:53 Sending to : +20:16:53 ============================================================================ +20:16:53 + + +waiting on router queue for slot.... +20:16:56 ============================================================================ +20:16:56 Slot Id : <83> +20:16:56 Transaction Type : REQUEST +20:16:56 Received From : +20:16:56 ============================================================================ +20:16:56 FNo. Len. Field Value +20:16:56 ============================================================================ +20:16:56 [ 1] [ 4] [0800] +20:16:56 [ 7] [ 10] [0320011605] +20:16:56 [ 11] [ 6] [158167] +20:16:56 [ 70] [ 3] [301] +20:16:56 ============================================================================ +20:16:56 + + +waiting on router queue for slot.... +20:16:56 Sending to : +20:16:56 ============================================================================ +20:16:56 ============================================================================ +20:16:56 Slot Id : <83> +20:16:56 Transaction Type : RESPONSE +20:16:56 Received From : +20:16:56 ============================================================================ +20:16:56 FNo. Len. Field Value +20:16:56 ============================================================================ +20:16:56 [ 1] [ 4] [0810] +20:16:56 [ 7] [ 10] [0320011605] +20:16:56 [ 11] [ 6] [158167] +20:16:56 [ 39] [ 2] [00] +20:16:56 [ 70] [ 3] [301] +20:16:56 ============================================================================ +20:16:56 Calculate Source COMM Id = 2 +20:16:56 ============================================================================ +20:16:56 + + +waiting on router queue for slot.... +20:17:10 ============================================================================ +20:17:10 Slot Id : <99> +20:17:10 Transaction Type : REQUEST +20:17:10 Received From : +20:17:10 ============================================================================ +20:17:10 FNo. Len. Field Value +20:17:10 ============================================================================ +20:17:10 [ 1] [ 4] [0200] +20:17:10 [ 2] [ 16] [1888880000096321] +20:17:10 [ 3] [ 6] [011000] +20:17:10 [ 4] [ 12] [000010000000] +20:17:10 [ 7] [ 10] [0320202457] +20:17:10 [ 11] [ 6] [002002] +20:17:10 [ 12] [ 6] [202457] +20:17:10 [ 13] [ 4] [0320] +20:17:10 [ 14] [ 4] [0000] +20:17:10 [ 15] [ 4] [0320] +20:17:10 [ 18] [ 4] [6011] +20:17:10 [ 22] [ 3] [900] +20:17:10 [ 25] [ 2] [02] +20:17:10 [ 28] [ 9] [D00002000] +20:17:10 [ 32] [ 6] [220699] +20:17:10 [ 35] [ 32] [1888880000096321=000010100000645] +20:17:10 [ 37] [ 12] [507900296975] +20:17:10 [ 41] [ 8] [01001600] +20:17:10 [ 42] [ 15] [APTRA ] +20:17:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:17:10 [ 49] [ 3] [418] +20:17:10 [ 52] [ 16] [AB744B4F1A2E7E59] +20:17:10 ============================================================================ +20:17:10 + + +waiting on router queue for slot.... +20:17:10 Sending to : +20:17:10 ============================================================================ +20:17:10 Sending to : +20:17:10 ============================================================================ +20:17:11 ============================================================================ +20:17:11 Slot Id : <99> +20:17:11 Transaction Type : REQUEST +20:17:11 Received From : +20:17:11 ============================================================================ +20:17:11 FNo. Len. Field Value +20:17:11 ============================================================================ +20:17:11 [ 1] [ 4] [0200] +20:17:11 [ 2] [ 16] [1888880000096321] +20:17:11 [ 3] [ 6] [011000] +20:17:11 [ 4] [ 12] [000010000000] +20:17:11 [ 7] [ 10] [0320202457] +20:17:11 [ 11] [ 6] [002002] +20:17:11 [ 12] [ 6] [202457] +20:17:11 [ 13] [ 4] [0320] +20:17:11 [ 14] [ 4] [0000] +20:17:11 [ 15] [ 4] [0320] +20:17:11 [ 18] [ 4] [6011] +20:17:11 [ 22] [ 3] [900] +20:17:11 [ 25] [ 2] [02] +20:17:11 [ 28] [ 9] [D00002000] +20:17:11 [ 32] [ 6] [220699] +20:17:11 [ 35] [ 32] [1888880000096321=000010100000645] +20:17:11 [ 37] [ 12] [507900296975] +20:17:11 [ 41] [ 8] [01001600] +20:17:11 [ 42] [ 15] [APTRA ] +20:17:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:17:11 [ 49] [ 3] [418] +20:17:11 [ 52] [ 16] [AB744B4F1A2E7E59] +20:17:11 ============================================================================ +20:17:11 + + +waiting on router queue for slot.... +20:17:11 Sending to : +20:17:11 ============================================================================ +20:17:11 ============================================================================ +20:17:11 Slot Id : <99> +20:17:11 Transaction Type : REQUEST +20:17:11 Received From : +20:17:11 ============================================================================ +20:17:11 FNo. Len. Field Value +20:17:11 ============================================================================ +20:17:11 [ 1] [ 4] [0200] +20:17:11 [ 2] [ 16] [1888880000096321] +20:17:11 [ 3] [ 6] [011000] +20:17:11 [ 4] [ 12] [000010000000] +20:17:11 [ 7] [ 10] [0320202457] +20:17:11 [ 11] [ 6] [002002] +20:17:11 [ 12] [ 6] [202457] +20:17:11 [ 13] [ 4] [0320] +20:17:11 [ 14] [ 4] [0000] +20:17:11 [ 15] [ 4] [0320] +20:17:11 [ 18] [ 4] [6011] +20:17:11 [ 22] [ 3] [900] +20:17:11 [ 25] [ 2] [02] +20:17:11 [ 28] [ 9] [D00002000] +20:17:11 [ 32] [ 6] [220699] +20:17:11 [ 35] [ 32] [1888880000096321=000010100000645] +20:17:11 [ 37] [ 12] [507900296975] +20:17:11 [ 41] [ 8] [01001600] +20:17:11 [ 42] [ 15] [APTRA ] +20:17:11 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:17:11 [ 49] [ 3] [418] +20:17:11 [ 52] [ 16] [5F0CAE325A98E6E9] +20:17:11 ============================================================================ +20:17:11 + + +waiting on router queue for slot.... +20:17:11 Sending to : <5> +20:17:11 ============================================================================ +20:17:11 ============================================================================ +20:17:11 Slot Id : <99> +20:17:11 Transaction Type : RESPONSE +20:17:11 Received From : +20:17:11 ============================================================================ +20:17:11 FNo. Len. Field Value +20:17:11 ============================================================================ +20:17:11 [ 1] [ 4] [0210] +20:17:11 [ 2] [ 16] [1888880000096321] +20:17:11 [ 3] [ 6] [011000] +20:17:11 [ 4] [ 12] [000010000000] +20:17:11 [ 7] [ 10] [0320202457] +20:17:11 [ 11] [ 6] [002002] +20:17:11 [ 12] [ 6] [202457] +20:17:11 [ 13] [ 4] [0320] +20:17:11 [ 15] [ 4] [0320] +20:17:11 [ 18] [ 4] [6011] +20:17:11 [ 19] [ 3] [418] +20:17:11 [ 32] [ 6] [220699] +20:17:11 [ 37] [ 12] [507900296975] +20:17:11 [ 38] [ 6] [000000] +20:17:11 [ 39] [ 2] [55] +20:17:11 [ 41] [ 8] [01001600] +20:17:11 [ 49] [ 3] [418] +20:17:11 ============================================================================ +20:17:11 Sending to : +20:17:11 ============================================================================ +20:17:11 + + +waiting on router queue for slot.... +20:17:12 ============================================================================ +20:17:12 Slot Id : <99> +20:17:12 Transaction Type : RESPONSE +20:17:12 Received From : +20:17:12 ============================================================================ +20:17:12 FNo. Len. Field Value +20:17:12 ============================================================================ +20:17:12 [ 1] [ 4] [0210] +20:17:12 [ 2] [ 16] [1888880000096321] +20:17:12 [ 3] [ 6] [011000] +20:17:12 [ 4] [ 12] [000010000000] +20:17:12 [ 7] [ 10] [0320202457] +20:17:12 [ 11] [ 6] [002002] +20:17:12 [ 12] [ 6] [202457] +20:17:12 [ 13] [ 4] [0320] +20:17:12 [ 15] [ 4] [0320] +20:17:12 [ 18] [ 4] [6011] +20:17:12 [ 19] [ 3] [418] +20:17:12 [ 32] [ 6] [220699] +20:17:12 [ 37] [ 12] [507900296975] +20:17:12 [ 38] [ 6] [000000] +20:17:12 [ 39] [ 2] [55] +20:17:12 [ 41] [ 8] [01001600] +20:17:12 [ 49] [ 3] [418] +20:17:12 ============================================================================ +20:17:12 Calculate Source COMM Id = 1 +20:17:12 ============================================================================ +20:17:12 + + +waiting on router queue for slot.... +20:17:14 ============================================================================ +20:17:14 Slot Id : <66> +20:17:14 Transaction Type : REQUEST +20:17:14 Received From : +20:17:14 ============================================================================ +20:17:14 FNo. Len. Field Value +20:17:14 ============================================================================ +20:17:14 [ 1] [ 4] [0800] +20:17:14 [ 7] [ 10] [0320011621] +20:17:14 [ 11] [ 6] [158168] +20:17:14 [ 70] [ 3] [301] +20:17:14 ============================================================================ +20:17:14 + + +waiting on router queue for slot.... +20:17:14 Sending to : +20:17:14 ============================================================================ +20:17:14 ============================================================================ +20:17:14 Slot Id : <66> +20:17:14 Transaction Type : RESPONSE +20:17:14 Received From : +20:17:14 ============================================================================ +20:17:14 FNo. Len. Field Value +20:17:14 ============================================================================ +20:17:14 [ 1] [ 4] [0810] +20:17:14 [ 7] [ 10] [0320011621] +20:17:14 [ 11] [ 6] [158168] +20:17:14 [ 39] [ 2] [00] +20:17:14 [ 70] [ 3] [301] +20:17:14 ============================================================================ +20:17:14 Calculate Source COMM Id = 2 +20:17:14 ============================================================================ +20:17:14 + + +waiting on router queue for slot.... +20:17:23 ============================================================================ +20:17:23 Slot Id : <118> +20:17:23 Transaction Type : REQUEST +20:17:23 Received From : +20:17:23 ============================================================================ +20:17:23 FNo. Len. Field Value +20:17:23 ============================================================================ +20:17:23 [ 1] [ 4] [0200] +20:17:23 [ 2] [ 16] [6213544001981973] +20:17:23 [ 3] [ 6] [011000] +20:17:23 [ 4] [ 12] [000010000000] +20:17:23 [ 7] [ 10] [0320202510] +20:17:23 [ 11] [ 6] [254911] +20:17:23 [ 12] [ 6] [202510] +20:17:23 [ 13] [ 4] [0320] +20:17:23 [ 14] [ 4] [4912] +20:17:23 [ 15] [ 4] [0320] +20:17:23 [ 18] [ 4] [6011] +20:17:23 [ 22] [ 3] [900] +20:17:23 [ 25] [ 2] [02] +20:17:23 [ 28] [ 9] [D00002000] +20:17:23 [ 32] [ 6] [220699] +20:17:23 [ 35] [ 32] [6213544001981973=491212018197219] +20:17:23 [ 37] [ 12] [507900094457] +20:17:23 [ 41] [ 8] [01000900] +20:17:23 [ 42] [ 15] [APTRA ] +20:17:23 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:17:23 [ 49] [ 3] [418] +20:17:23 [ 52] [ 16] [8E0B7DF4B0428833] +20:17:23 ============================================================================ +20:17:23 + + +waiting on router queue for slot.... +20:17:23 Sending to : +20:17:23 ============================================================================ +20:17:23 Sending to : +20:17:23 ============================================================================ +20:17:24 ============================================================================ +20:17:24 Slot Id : <118> +20:17:24 Transaction Type : REQUEST +20:17:24 Received From : +20:17:24 ============================================================================ +20:17:24 FNo. Len. Field Value +20:17:24 ============================================================================ +20:17:24 [ 1] [ 4] [0200] +20:17:24 [ 2] [ 16] [6213544001981973] +20:17:24 [ 3] [ 6] [011000] +20:17:24 [ 4] [ 12] [000010000000] +20:17:24 [ 7] [ 10] [0320202510] +20:17:24 [ 11] [ 6] [254911] +20:17:24 [ 12] [ 6] [202510] +20:17:24 [ 13] [ 4] [0320] +20:17:24 [ 14] [ 4] [4912] +20:17:24 [ 15] [ 4] [0320] +20:17:24 [ 18] [ 4] [6011] +20:17:24 [ 22] [ 3] [900] +20:17:24 [ 25] [ 2] [02] +20:17:24 [ 28] [ 9] [D00002000] +20:17:24 [ 32] [ 6] [220699] +20:17:24 [ 35] [ 32] [6213544001981973=491212018197219] +20:17:24 [ 37] [ 12] [507900094457] +20:17:24 [ 41] [ 8] [01000900] +20:17:24 [ 42] [ 15] [APTRA ] +20:17:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:17:24 [ 49] [ 3] [418] +20:17:24 [ 52] [ 16] [8E0B7DF4B0428833] +20:17:24 ============================================================================ +20:17:24 + + +waiting on router queue for slot.... +20:17:24 Sending to : +20:17:24 ============================================================================ +20:17:24 ============================================================================ +20:17:24 Slot Id : <118> +20:17:24 Transaction Type : REQUEST +20:17:24 Received From : +20:17:24 ============================================================================ +20:17:24 FNo. Len. Field Value +20:17:24 ============================================================================ +20:17:24 [ 1] [ 4] [0200] +20:17:24 [ 2] [ 16] [6213544001981973] +20:17:24 [ 3] [ 6] [011000] +20:17:24 [ 4] [ 12] [000010000000] +20:17:24 [ 7] [ 10] [0320202510] +20:17:24 [ 11] [ 6] [254911] +20:17:24 [ 12] [ 6] [202510] +20:17:24 [ 13] [ 4] [0320] +20:17:24 [ 14] [ 4] [4912] +20:17:24 [ 15] [ 4] [0320] +20:17:24 [ 18] [ 4] [6011] +20:17:24 [ 22] [ 3] [900] +20:17:24 [ 25] [ 2] [02] +20:17:24 [ 28] [ 9] [D00002000] +20:17:24 [ 32] [ 6] [220699] +20:17:24 [ 35] [ 32] [6213544001981973=491212018197219] +20:17:24 [ 37] [ 12] [507900094457] +20:17:24 [ 41] [ 8] [01000900] +20:17:24 [ 42] [ 15] [APTRA ] +20:17:24 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:17:24 [ 49] [ 3] [418] +20:17:24 [ 52] [ 16] [35F7676FF279FD89] +20:17:24 ============================================================================ +20:17:24 + + +waiting on router queue for slot.... +20:17:24 Sending to : <0> +20:17:24 ============================================================================ +20:17:24 ============================================================================ +20:17:24 Slot Id : <118> +20:17:24 Transaction Type : RESPONSE +20:17:24 Received From : +20:17:24 ============================================================================ +20:17:24 FNo. Len. Field Value +20:17:24 ============================================================================ +20:17:24 [ 1] [ 4] [0210] +20:17:24 [ 2] [ 16] [6213544001981973] +20:17:24 [ 3] [ 6] [011000] +20:17:24 [ 4] [ 12] [000010000000] +20:17:24 [ 7] [ 10] [0320202510] +20:17:24 [ 11] [ 6] [254911] +20:17:24 [ 12] [ 6] [202510] +20:17:24 [ 13] [ 4] [0320] +20:17:24 [ 15] [ 4] [0320] +20:17:24 [ 18] [ 4] [6011] +20:17:24 [ 32] [ 6] [220699] +20:17:24 [ 35] [ 32] [6213544001981973=491212018197219] +20:17:24 [ 37] [ 12] [507900094457] +20:17:24 [ 38] [ 6] [795737] +20:17:24 [ 39] [ 2] [00] +20:17:24 [ 41] [ 8] [01000900] +20:17:24 [ 49] [ 3] [418] +20:17:24 [ 54] [ 40] [1001418C0000252819441002418C000015081944] +20:17:24 ============================================================================ +20:17:24 Sending to : +20:17:24 ============================================================================ +20:17:24 + + +waiting on router queue for slot.... +20:17:26 ============================================================================ +20:17:26 Slot Id : <118> +20:17:26 Transaction Type : RESPONSE +20:17:26 Received From : +20:17:26 ============================================================================ +20:17:26 FNo. Len. Field Value +20:17:26 ============================================================================ +20:17:26 [ 1] [ 4] [0210] +20:17:26 [ 2] [ 16] [6213544001981973] +20:17:26 [ 3] [ 6] [011000] +20:17:26 [ 4] [ 12] [000010000000] +20:17:26 [ 7] [ 10] [0320202510] +20:17:26 [ 11] [ 6] [254911] +20:17:26 [ 12] [ 6] [202510] +20:17:26 [ 13] [ 4] [0320] +20:17:26 [ 15] [ 4] [0320] +20:17:26 [ 18] [ 4] [6011] +20:17:26 [ 32] [ 6] [220699] +20:17:26 [ 35] [ 32] [6213544001981973=491212018197219] +20:17:26 [ 37] [ 12] [507900094457] +20:17:26 [ 38] [ 6] [795737] +20:17:26 [ 39] [ 2] [00] +20:17:26 [ 41] [ 8] [01000900] +20:17:26 [ 49] [ 3] [418] +20:17:26 [ 54] [ 40] [1001418C0000252819441002418C000015081944] +20:17:26 ============================================================================ +20:17:26 Calculate Source COMM Id = 1 +20:17:26 ============================================================================ +20:17:26 + + +waiting on router queue for slot.... +20:17:28 ============================================================================ +20:17:28 Slot Id : <107> +20:17:28 Transaction Type : REQUEST +20:17:28 Received From : +20:17:28 ============================================================================ +20:17:28 FNo. Len. Field Value +20:17:28 ============================================================================ +20:17:28 [ 1] [ 4] [0800] +20:17:28 [ 7] [ 10] [0320011637] +20:17:28 [ 11] [ 6] [158169] +20:17:28 [ 70] [ 3] [301] +20:17:28 ============================================================================ +20:17:28 + + +waiting on router queue for slot.... +20:17:28 Sending to : +20:17:28 ============================================================================ +20:17:28 ============================================================================ +20:17:28 Slot Id : <107> +20:17:28 Transaction Type : RESPONSE +20:17:28 Received From : +20:17:28 ============================================================================ +20:17:28 FNo. Len. Field Value +20:17:28 ============================================================================ +20:17:28 [ 1] [ 4] [0810] +20:17:28 [ 7] [ 10] [0320011637] +20:17:28 [ 11] [ 6] [158169] +20:17:28 [ 39] [ 2] [00] +20:17:28 [ 70] [ 3] [301] +20:17:28 ============================================================================ +20:17:28 Calculate Source COMM Id = 2 +20:17:28 ============================================================================ +20:17:28 + + +waiting on router queue for slot.... +20:17:33 ============================================================================ +20:17:33 Slot Id : <121> +20:17:33 Transaction Type : REQUEST +20:17:33 Received From : +20:17:33 ============================================================================ +20:17:33 FNo. Len. Field Value +20:17:33 ============================================================================ +20:17:33 [ 1] [ 4] [0200] +20:17:33 [ 2] [ 16] [6213545001040512] +20:17:33 [ 3] [ 6] [010000] +20:17:33 [ 4] [ 12] [000030000000] +20:17:33 [ 7] [ 10] [0320201524] +20:17:33 [ 11] [ 6] [957018] +20:17:33 [ 12] [ 6] [201524] +20:17:33 [ 13] [ 4] [0320] +20:17:33 [ 15] [ 4] [0320] +20:17:33 [ 18] [ 4] [6011] +20:17:33 [ 19] [ 3] [418] +20:17:33 [ 22] [ 3] [021] +20:17:33 [ 25] [ 2] [01] +20:17:33 [ 28] [ 9] [D00002000] +20:17:33 [ 32] [ 6] [668899] +20:17:33 [ 35] [ 32] [6213545001040512=491212014051021] +20:17:33 [ 37] [ 12] [507901614599] +20:17:33 [ 41] [ 8] [03001007] +20:17:33 [ 42] [ 15] [APT ] +20:17:33 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +20:17:33 [ 49] [ 3] [418] +20:17:33 [ 52] [ 16] [E617BC174F4BEEBB] +20:17:33 ============================================================================ +20:17:33 + + +waiting on router queue for slot.... +20:17:33 Sending to : +20:17:33 ============================================================================ +20:17:33 Sending to : +20:17:33 ============================================================================ +20:17:33 ============================================================================ +20:17:33 Slot Id : <121> +20:17:33 Transaction Type : REQUEST +20:17:33 Received From : +20:17:33 ============================================================================ +20:17:33 FNo. Len. Field Value +20:17:33 ============================================================================ +20:17:33 [ 1] [ 4] [0200] +20:17:33 [ 2] [ 16] [6213545001040512] +20:17:33 [ 3] [ 6] [010000] +20:17:33 [ 4] [ 12] [000030000000] +20:17:33 [ 7] [ 10] [0320201524] +20:17:33 [ 11] [ 6] [957018] +20:17:33 [ 12] [ 6] [201524] +20:17:33 [ 13] [ 4] [0320] +20:17:33 [ 15] [ 4] [0320] +20:17:33 [ 18] [ 4] [6011] +20:17:33 [ 19] [ 3] [418] +20:17:33 [ 22] [ 3] [021] +20:17:33 [ 25] [ 2] [01] +20:17:33 [ 28] [ 9] [D00002000] +20:17:33 [ 32] [ 6] [668899] +20:17:33 [ 35] [ 32] [6213545001040512=491212014051021] +20:17:33 [ 37] [ 12] [507901614599] +20:17:33 [ 41] [ 8] [03001007] +20:17:33 [ 42] [ 15] [APT ] +20:17:33 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +20:17:33 [ 49] [ 3] [418] +20:17:33 [ 52] [ 16] [E617BC174F4BEEBB] +20:17:33 ============================================================================ +20:17:33 + + +waiting on router queue for slot.... +20:17:33 Sending to : +20:17:33 ============================================================================ +20:17:33 ============================================================================ +20:17:33 Slot Id : <121> +20:17:33 Transaction Type : REQUEST +20:17:33 Received From : +20:17:33 ============================================================================ +20:17:33 FNo. Len. Field Value +20:17:33 ============================================================================ +20:17:33 [ 1] [ 4] [0200] +20:17:33 [ 2] [ 16] [6213545001040512] +20:17:33 [ 3] [ 6] [010000] +20:17:33 [ 4] [ 12] [000030000000] +20:17:33 [ 7] [ 10] [0320201524] +20:17:33 [ 11] [ 6] [957018] +20:17:33 [ 12] [ 6] [201524] +20:17:33 [ 13] [ 4] [0320] +20:17:33 [ 15] [ 4] [0320] +20:17:33 [ 18] [ 4] [6011] +20:17:33 [ 19] [ 3] [418] +20:17:33 [ 22] [ 3] [021] +20:17:33 [ 25] [ 2] [01] +20:17:33 [ 28] [ 9] [D00002000] +20:17:33 [ 32] [ 6] [668899] +20:17:33 [ 35] [ 32] [6213545001040512=491212014051021] +20:17:33 [ 37] [ 12] [507901614599] +20:17:33 [ 41] [ 8] [03001007] +20:17:33 [ 42] [ 15] [APT ] +20:17:33 [ 43] [ 40] [ KAULIEU VIENTIANE LAO] +20:17:33 [ 49] [ 3] [418] +20:17:33 [ 52] [ 16] [5A1A6B8668C3E86A] +20:17:33 ============================================================================ +20:17:33 + + +waiting on router queue for slot.... +20:17:33 Sending to : <0> +20:17:33 ============================================================================ +20:17:34 ============================================================================ +20:17:34 Slot Id : <121> +20:17:34 Transaction Type : RESPONSE +20:17:34 Received From : +20:17:34 ============================================================================ +20:17:34 FNo. Len. Field Value +20:17:34 ============================================================================ +20:17:34 [ 1] [ 4] [0210] +20:17:34 [ 2] [ 16] [6213545001040512] +20:17:34 [ 3] [ 6] [010000] +20:17:34 [ 4] [ 12] [000030000000] +20:17:34 [ 7] [ 10] [0320201524] +20:17:34 [ 11] [ 6] [957018] +20:17:34 [ 12] [ 6] [201524] +20:17:34 [ 13] [ 4] [0320] +20:17:34 [ 15] [ 4] [0320] +20:17:34 [ 18] [ 4] [6011] +20:17:34 [ 19] [ 3] [418] +20:17:34 [ 32] [ 6] [668899] +20:17:34 [ 35] [ 32] [6213545001040512=491212014051021] +20:17:34 [ 37] [ 12] [507901614599] +20:17:34 [ 38] [ 6] [210423] +20:17:34 [ 39] [ 2] [00] +20:17:34 [ 41] [ 8] [03001007] +20:17:34 [ 49] [ 3] [418] +20:17:34 [ 54] [ 40] [0001418C0001580041360002418C000127804136] +20:17:34 ============================================================================ +20:17:34 Sending to : +20:17:34 ============================================================================ +20:17:34 + + +waiting on router queue for slot.... +20:17:35 ============================================================================ +20:17:35 Slot Id : <121> +20:17:35 Transaction Type : RESPONSE +20:17:35 Received From : +20:17:35 ============================================================================ +20:17:35 FNo. Len. Field Value +20:17:35 ============================================================================ +20:17:35 [ 1] [ 4] [0210] +20:17:35 [ 2] [ 16] [6213545001040512] +20:17:35 [ 3] [ 6] [010000] +20:17:35 [ 4] [ 12] [000030000000] +20:17:35 [ 7] [ 10] [0320201524] +20:17:35 [ 11] [ 6] [957018] +20:17:35 [ 12] [ 6] [201524] +20:17:35 [ 13] [ 4] [0320] +20:17:35 [ 15] [ 4] [0320] +20:17:35 [ 18] [ 4] [6011] +20:17:35 [ 19] [ 3] [418] +20:17:35 [ 32] [ 6] [668899] +20:17:35 [ 35] [ 32] [6213545001040512=491212014051021] +20:17:35 [ 37] [ 12] [507901614599] +20:17:35 [ 38] [ 6] [210423] +20:17:35 [ 39] [ 2] [00] +20:17:35 [ 41] [ 8] [03001007] +20:17:35 [ 49] [ 3] [418] +20:17:35 [ 54] [ 40] [0001418C0001580041360002418C000127804136] +20:17:35 ============================================================================ +20:17:35 Calculate Source COMM Id = 4 +20:17:35 ============================================================================ +20:17:35 + + +waiting on router queue for slot.... +20:17:44 ============================================================================ +20:17:44 Slot Id : <115> +20:17:44 Transaction Type : REQUEST +20:17:44 Received From : +20:17:44 ============================================================================ +20:17:44 FNo. Len. Field Value +20:17:44 ============================================================================ +20:17:44 [ 1] [ 4] [0800] +20:17:44 [ 7] [ 10] [0320011652] +20:17:44 [ 11] [ 6] [158170] +20:17:44 [ 70] [ 3] [301] +20:17:44 ============================================================================ +20:17:44 + + +waiting on router queue for slot.... +20:17:44 Sending to : +20:17:44 ============================================================================ +20:17:44 ============================================================================ +20:17:44 Slot Id : <115> +20:17:44 Transaction Type : RESPONSE +20:17:44 Received From : +20:17:44 ============================================================================ +20:17:44 FNo. Len. Field Value +20:17:44 ============================================================================ +20:17:44 [ 1] [ 4] [0810] +20:17:44 [ 7] [ 10] [0320011652] +20:17:44 [ 11] [ 6] [158170] +20:17:44 [ 39] [ 2] [00] +20:17:44 [ 70] [ 3] [301] +20:17:44 ============================================================================ +20:17:44 Calculate Source COMM Id = 2 +20:17:44 ============================================================================ +20:17:44 + + +waiting on router queue for slot.... +20:17:45 ============================================================================ +20:17:45 Slot Id : <74> +20:17:45 Transaction Type : REQUEST +20:17:45 Received From : +20:17:45 ============================================================================ +20:17:45 FNo. Len. Field Value +20:17:45 ============================================================================ +20:17:45 [ 1] [ 4] [0200] +20:17:45 [ 2] [ 16] [1888880000096321] +20:17:45 [ 3] [ 6] [011000] +20:17:45 [ 4] [ 12] [000010000000] +20:17:45 [ 7] [ 10] [0320202532] +20:17:45 [ 11] [ 6] [002005] +20:17:45 [ 12] [ 6] [202532] +20:17:45 [ 13] [ 4] [0320] +20:17:45 [ 14] [ 4] [0000] +20:17:45 [ 15] [ 4] [0320] +20:17:45 [ 18] [ 4] [6011] +20:17:45 [ 22] [ 3] [900] +20:17:45 [ 25] [ 2] [02] +20:17:45 [ 28] [ 9] [D00002000] +20:17:45 [ 32] [ 6] [220699] +20:17:45 [ 35] [ 32] [1888880000096321=000010100000645] +20:17:45 [ 37] [ 12] [507900296977] +20:17:45 [ 41] [ 8] [01001600] +20:17:45 [ 42] [ 15] [APTRA ] +20:17:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:17:45 [ 49] [ 3] [418] +20:17:45 [ 52] [ 16] [FA494661ED9A9840] +20:17:45 ============================================================================ +20:17:45 + + +waiting on router queue for slot.... +20:17:45 Sending to : +20:17:45 ============================================================================ +20:17:45 Sending to : +20:17:45 ============================================================================ +20:17:45 ============================================================================ +20:17:45 Slot Id : <74> +20:17:45 Transaction Type : REQUEST +20:17:45 Received From : +20:17:45 ============================================================================ +20:17:45 FNo. Len. Field Value +20:17:45 ============================================================================ +20:17:45 [ 1] [ 4] [0200] +20:17:45 [ 2] [ 16] [1888880000096321] +20:17:45 [ 3] [ 6] [011000] +20:17:45 [ 4] [ 12] [000010000000] +20:17:45 [ 7] [ 10] [0320202532] +20:17:45 [ 11] [ 6] [002005] +20:17:45 [ 12] [ 6] [202532] +20:17:45 [ 13] [ 4] [0320] +20:17:45 [ 14] [ 4] [0000] +20:17:45 [ 15] [ 4] [0320] +20:17:45 [ 18] [ 4] [6011] +20:17:45 [ 22] [ 3] [900] +20:17:45 [ 25] [ 2] [02] +20:17:45 [ 28] [ 9] [D00002000] +20:17:45 [ 32] [ 6] [220699] +20:17:45 [ 35] [ 32] [1888880000096321=000010100000645] +20:17:45 [ 37] [ 12] [507900296977] +20:17:45 [ 41] [ 8] [01001600] +20:17:45 [ 42] [ 15] [APTRA ] +20:17:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:17:45 [ 49] [ 3] [418] +20:17:45 [ 52] [ 16] [FA494661ED9A9840] +20:17:45 ============================================================================ +20:17:45 + + +waiting on router queue for slot.... +20:17:45 Sending to : +20:17:45 ============================================================================ +20:17:45 ============================================================================ +20:17:45 Slot Id : <74> +20:17:45 Transaction Type : REQUEST +20:17:45 Received From : +20:17:45 ============================================================================ +20:17:45 FNo. Len. Field Value +20:17:45 ============================================================================ +20:17:45 [ 1] [ 4] [0200] +20:17:45 [ 2] [ 16] [1888880000096321] +20:17:45 [ 3] [ 6] [011000] +20:17:45 [ 4] [ 12] [000010000000] +20:17:45 [ 7] [ 10] [0320202532] +20:17:45 [ 11] [ 6] [002005] +20:17:45 [ 12] [ 6] [202532] +20:17:45 [ 13] [ 4] [0320] +20:17:45 [ 14] [ 4] [0000] +20:17:45 [ 15] [ 4] [0320] +20:17:45 [ 18] [ 4] [6011] +20:17:45 [ 22] [ 3] [900] +20:17:45 [ 25] [ 2] [02] +20:17:45 [ 28] [ 9] [D00002000] +20:17:45 [ 32] [ 6] [220699] +20:17:45 [ 35] [ 32] [1888880000096321=000010100000645] +20:17:45 [ 37] [ 12] [507900296977] +20:17:45 [ 41] [ 8] [01001600] +20:17:45 [ 42] [ 15] [APTRA ] +20:17:45 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:17:45 [ 49] [ 3] [418] +20:17:45 [ 52] [ 16] [DC08AB49F285D966] +20:17:45 ============================================================================ +20:17:45 + + +waiting on router queue for slot.... +20:17:45 Sending to : <5> +20:17:45 ============================================================================ +20:17:49 ============================================================================ +20:17:49 Slot Id : <92> +20:17:49 Transaction Type : REQUEST +20:17:49 Received From : +20:17:49 ============================================================================ +20:17:49 FNo. Len. Field Value +20:17:49 ============================================================================ +20:17:49 [ 1] [ 4] [0800] +20:17:49 [ 7] [ 10] [0321032940] +20:17:49 [ 11] [ 6] [202940] +20:17:49 [ 37] [ 12] [57920202940] +20:17:49 [ 70] [ 3] [301] +20:17:49 ============================================================================ +20:17:49 + + +waiting on router queue for slot.... +20:17:49 Sending to : +20:17:49 ============================================================================ +20:17:49 ============================================================================ +20:17:49 Slot Id : <92> +20:17:49 Transaction Type : RESPONSE +20:17:49 Received From : +20:17:49 ============================================================================ +20:17:49 FNo. Len. Field Value +20:17:49 ============================================================================ +20:17:49 [ 1] [ 4] [0810] +20:17:49 [ 7] [ 10] [0321032940] +20:17:49 [ 11] [ 6] [202940] +20:17:49 [ 37] [ 12] [579202029400] +20:17:49 [ 39] [ 2] [00] +20:17:49 [ 70] [ 3] [810] +20:17:49 ============================================================================ +20:17:49 Calculate Source COMM Id = 6 +20:17:49 ============================================================================ +20:17:49 + + +waiting on router queue for slot.... +20:17:51 ============================================================================ +20:17:51 Slot Id : <74> +20:17:51 Transaction Type : RESPONSE +20:17:51 Received From : +20:17:51 ============================================================================ +20:17:51 FNo. Len. Field Value +20:17:51 ============================================================================ +20:17:51 [ 1] [ 4] [0210] +20:17:51 [ 2] [ 16] [1888880000096321] +20:17:51 [ 3] [ 6] [011000] +20:17:51 [ 4] [ 12] [000010000000] +20:17:51 [ 7] [ 10] [0320202532] +20:17:51 [ 11] [ 6] [002005] +20:17:51 [ 12] [ 6] [202532] +20:17:51 [ 13] [ 4] [0320] +20:17:51 [ 15] [ 4] [0320] +20:17:51 [ 18] [ 4] [6011] +20:17:51 [ 19] [ 3] [418] +20:17:51 [ 32] [ 6] [220699] +20:17:51 [ 37] [ 12] [507900296977] +20:17:51 [ 38] [ 6] [196853] +20:17:51 [ 39] [ 2] [00] +20:17:51 [ 41] [ 8] [01001600] +20:17:51 [ 49] [ 3] [418] +20:17:51 [ 54] [ 0] [] +20:17:51 ============================================================================ +20:17:51 Sending to : +20:17:51 ============================================================================ +20:17:51 + + +waiting on router queue for slot.... +20:17:52 ============================================================================ +20:17:52 Slot Id : <74> +20:17:52 Transaction Type : RESPONSE +20:17:52 Received From : +20:17:52 ============================================================================ +20:17:52 FNo. Len. Field Value +20:17:52 ============================================================================ +20:17:52 [ 1] [ 4] [0210] +20:17:52 [ 2] [ 16] [1888880000096321] +20:17:52 [ 3] [ 6] [011000] +20:17:52 [ 4] [ 12] [000010000000] +20:17:52 [ 7] [ 10] [0320202532] +20:17:52 [ 11] [ 6] [002005] +20:17:52 [ 12] [ 6] [202532] +20:17:52 [ 13] [ 4] [0320] +20:17:52 [ 15] [ 4] [0320] +20:17:52 [ 18] [ 4] [6011] +20:17:52 [ 19] [ 3] [418] +20:17:52 [ 32] [ 6] [220699] +20:17:52 [ 37] [ 12] [507900296977] +20:17:52 [ 38] [ 6] [196853] +20:17:52 [ 39] [ 2] [00] +20:17:52 [ 41] [ 8] [01001600] +20:17:52 [ 49] [ 3] [418] +20:17:52 [ 54] [ 0] [] +20:17:52 ============================================================================ +20:17:52 Calculate Source COMM Id = 1 +20:17:52 ============================================================================ +20:17:52 + + +waiting on router queue for slot.... +20:17:54 ============================================================================ +20:17:54 Slot Id : <113> +20:17:54 Transaction Type : REQUEST +20:17:54 Received From : +20:17:54 ============================================================================ +20:17:54 FNo. Len. Field Value +20:17:54 ============================================================================ +20:17:54 [ 1] [ 4] [0800] +20:17:54 [ 7] [ 10] [0320011703] +20:17:54 [ 11] [ 6] [158171] +20:17:54 [ 70] [ 3] [301] +20:17:54 ============================================================================ +20:17:54 + + +waiting on router queue for slot.... +20:17:54 Sending to : +20:17:54 ============================================================================ +20:17:54 ============================================================================ +20:17:54 Slot Id : <113> +20:17:54 Transaction Type : RESPONSE +20:17:54 Received From : +20:17:54 ============================================================================ +20:17:54 FNo. Len. Field Value +20:17:54 ============================================================================ +20:17:54 [ 1] [ 4] [0810] +20:17:54 [ 7] [ 10] [0320011703] +20:17:54 [ 11] [ 6] [158171] +20:17:54 [ 39] [ 2] [00] +20:17:54 [ 70] [ 3] [301] +20:17:54 ============================================================================ +20:17:54 Calculate Source COMM Id = 2 +20:17:54 ============================================================================ +20:17:54 + + +waiting on router queue for slot.... +20:17:55 ============================================================================ +20:17:55 Slot Id : <108> +20:17:55 Transaction Type : REQUEST +20:17:55 Received From : +20:17:55 ============================================================================ +20:17:55 FNo. Len. Field Value +20:17:55 ============================================================================ +20:17:55 [ 1] [ 4] [0200] +20:17:55 [ 2] [ 16] [6688990700279308] +20:17:55 [ 3] [ 6] [010000] +20:17:55 [ 4] [ 12] [000030000000] +20:17:55 [ 7] [ 10] [0320201752] +20:17:55 [ 11] [ 6] [841528] +20:17:55 [ 12] [ 6] [201752] +20:17:55 [ 13] [ 4] [0320] +20:17:55 [ 15] [ 4] [0320] +20:17:55 [ 18] [ 4] [6011] +20:17:55 [ 22] [ 3] [900] +20:17:55 [ 25] [ 2] [02] +20:17:55 [ 28] [ 9] [D00002000] +20:17:55 [ 32] [ 6] [621354] +20:17:55 [ 35] [ 37] [6688990700279308=44010071930832300000] +20:17:55 [ 37] [ 12] [507904707922] +20:17:55 [ 41] [ 8] [18000900] +20:17:55 [ 42] [ 15] [NATIVE ] +20:17:55 [ 43] [ 40] [Bounneau District Bounneua LAO] +20:17:55 [ 49] [ 3] [418] +20:17:55 [ 52] [ 16] [87DDF44699268CAB] +20:17:55 ============================================================================ +20:17:55 + + +waiting on router queue for slot.... +20:17:55 Sending to : +20:17:55 ============================================================================ +20:17:55 Sending to : +20:17:55 ============================================================================ +20:17:55 ============================================================================ +20:17:55 Slot Id : <98> +20:17:55 Transaction Type : REQUEST +20:17:55 Received From : +20:17:55 ============================================================================ +20:17:55 FNo. Len. Field Value +20:17:55 ============================================================================ +20:17:55 [ 1] [ 4] [0800] +20:17:55 [ 2] [ 5] [02531] +20:17:55 [ 3] [ 6] [579208] +20:17:55 [ 7] [ 10] [0320131755] +20:17:55 [ 11] [ 6] [807590] +20:17:55 [ 15] [ 10] [0320131755] +20:17:55 [ 37] [ 11] [57920807590] +20:17:55 [ 70] [ 3] [001] +20:17:55 ============================================================================ +20:17:55 + + +waiting on router queue for slot.... +20:17:55 ============================================================================ +20:17:55 Slot Id : <98> +20:17:55 Transaction Type : RESPONSE +20:17:55 Received From : +20:17:55 ============================================================================ +20:17:55 FNo. Len. Field Value +20:17:55 ============================================================================ +20:17:55 [ 1] [ 4] [0810] +20:17:55 [ 7] [ 10] [0320131755] +20:17:55 [ 11] [ 6] [807590] +20:17:55 [ 15] [ 4] [0320] +20:17:55 [ 37] [ 12] [57920807590] +20:17:55 [ 39] [ 2] [00] +20:17:55 [ 70] [ 3] [001] +20:17:55 ============================================================================ +20:17:55 Sending to : +20:17:55 ============================================================================ +20:17:55 + + +waiting on router queue for slot.... +20:17:56 ============================================================================ +20:17:56 Slot Id : <108> +20:17:56 Transaction Type : REQUEST +20:17:56 Received From : +20:17:56 ============================================================================ +20:17:56 FNo. Len. Field Value +20:17:56 ============================================================================ +20:17:56 [ 1] [ 4] [0200] +20:17:56 [ 2] [ 16] [6688990700279308] +20:17:56 [ 3] [ 6] [010000] +20:17:56 [ 4] [ 12] [000030000000] +20:17:56 [ 7] [ 10] [0320201752] +20:17:56 [ 11] [ 6] [841528] +20:17:56 [ 12] [ 6] [201752] +20:17:56 [ 13] [ 4] [0320] +20:17:56 [ 15] [ 4] [0320] +20:17:56 [ 18] [ 4] [6011] +20:17:56 [ 22] [ 3] [900] +20:17:56 [ 25] [ 2] [02] +20:17:56 [ 28] [ 9] [D00002000] +20:17:56 [ 32] [ 6] [621354] +20:17:56 [ 35] [ 37] [6688990700279308=44010071930832300000] +20:17:56 [ 37] [ 12] [507904707922] +20:17:56 [ 41] [ 8] [18000900] +20:17:56 [ 42] [ 15] [NATIVE ] +20:17:56 [ 43] [ 40] [Bounneau District Bounneua LAO] +20:17:56 [ 49] [ 3] [418] +20:17:56 [ 52] [ 16] [87DDF44699268CAB] +20:17:56 ============================================================================ +20:17:56 + + +waiting on router queue for slot.... +20:17:56 Sending to : +20:17:56 ============================================================================ +20:17:56 ============================================================================ +20:17:56 Slot Id : <108> +20:17:56 Transaction Type : REQUEST +20:17:56 Received From : +20:17:56 ============================================================================ +20:17:56 FNo. Len. Field Value +20:17:56 ============================================================================ +20:17:56 [ 1] [ 4] [0200] +20:17:56 [ 2] [ 16] [6688990700279308] +20:17:56 [ 3] [ 6] [010000] +20:17:56 [ 4] [ 12] [000030000000] +20:17:56 [ 7] [ 10] [0320201752] +20:17:56 [ 11] [ 6] [841528] +20:17:56 [ 12] [ 6] [201752] +20:17:56 [ 13] [ 4] [0320] +20:17:56 [ 15] [ 4] [0320] +20:17:56 [ 18] [ 4] [6011] +20:17:56 [ 22] [ 3] [900] +20:17:56 [ 25] [ 2] [02] +20:17:56 [ 28] [ 9] [D00002000] +20:17:56 [ 32] [ 6] [621354] +20:17:56 [ 35] [ 37] [6688990700279308=44010071930832300000] +20:17:56 [ 37] [ 12] [507904707922] +20:17:56 [ 41] [ 8] [18000900] +20:17:56 [ 42] [ 15] [NATIVE ] +20:17:56 [ 43] [ 40] [Bounneau District Bounneua LAO] +20:17:56 [ 49] [ 3] [418] +20:17:56 [ 52] [ 16] [632CAF5F2D23B1F6] +20:17:56 ============================================================================ +20:17:56 + + +waiting on router queue for slot.... +20:17:56 Sending to : <4> +20:17:56 ============================================================================ +20:17:57 ============================================================================ +20:17:57 Slot Id : <108> +20:17:57 Transaction Type : RESPONSE +20:17:57 Received From : +20:17:57 ============================================================================ +20:17:57 FNo. Len. Field Value +20:17:57 ============================================================================ +20:17:57 [ 1] [ 4] [0210] +20:17:57 [ 2] [ 16] [6688990700279308] +20:17:57 [ 3] [ 6] [010000] +20:17:57 [ 4] [ 12] [000030000000] +20:17:57 [ 11] [ 6] [841528] +20:17:57 [ 12] [ 6] [201752] +20:17:57 [ 15] [ 4] [0320] +20:17:57 [ 18] [ 4] [6011] +20:17:57 [ 32] [ 6] [621354] +20:17:57 [ 35] [ 37] [6688990700279308=44010071930832300000] +20:17:57 [ 37] [ 12] [507904707922] +20:17:57 [ 38] [ 6] [432922] +20:17:57 [ 39] [ 2] [00] +20:17:57 [ 41] [ 8] [18000900] +20:17:57 [ 49] [ 3] [418] +20:17:57 [ 54] [ 20] [0002418C000150088326] +20:17:57 ============================================================================ +20:17:57 Sending to : +20:17:57 ============================================================================ +20:17:57 + + +waiting on router queue for slot.... +20:17:58 ============================================================================ +20:17:58 Slot Id : <108> +20:17:58 Transaction Type : RESPONSE +20:17:58 Received From : +20:17:58 ============================================================================ +20:17:58 FNo. Len. Field Value +20:17:58 ============================================================================ +20:17:58 [ 1] [ 4] [0210] +20:17:58 [ 2] [ 16] [6688990700279308] +20:17:58 [ 3] [ 6] [010000] +20:17:58 [ 4] [ 12] [000030000000] +20:17:58 [ 11] [ 6] [841528] +20:17:58 [ 12] [ 6] [201752] +20:17:58 [ 15] [ 4] [0320] +20:17:58 [ 18] [ 4] [6011] +20:17:58 [ 32] [ 6] [621354] +20:17:58 [ 35] [ 37] [6688990700279308=44010071930832300000] +20:17:58 [ 37] [ 12] [507904707922] +20:17:58 [ 38] [ 6] [432922] +20:17:58 [ 39] [ 2] [00] +20:17:58 [ 41] [ 8] [18000900] +20:17:58 [ 49] [ 3] [418] +20:17:58 [ 54] [ 20] [0002418C000150088326] +20:17:58 ============================================================================ +20:17:58 Calculate Source COMM Id = 0 +20:17:58 ============================================================================ +20:17:58 + + +waiting on router queue for slot.... +20:18:05 ============================================================================ +20:18:05 Slot Id : <75> +20:18:05 Transaction Type : REQUEST +20:18:05 Received From : +20:18:05 ============================================================================ +20:18:05 FNo. Len. Field Value +20:18:05 ============================================================================ +20:18:05 [ 1] [ 4] [0800] +20:18:05 [ 7] [ 10] [0320011714] +20:18:05 [ 11] [ 6] [158172] +20:18:05 [ 70] [ 3] [301] +20:18:05 ============================================================================ +20:18:05 + + +waiting on router queue for slot.... +20:18:05 Sending to : +20:18:05 ============================================================================ +20:18:05 ============================================================================ +20:18:05 Slot Id : <75> +20:18:05 Transaction Type : RESPONSE +20:18:05 Received From : +20:18:05 ============================================================================ +20:18:05 FNo. Len. Field Value +20:18:05 ============================================================================ +20:18:05 [ 1] [ 4] [0810] +20:18:05 [ 7] [ 10] [0320011714] +20:18:05 [ 11] [ 6] [158172] +20:18:05 [ 39] [ 2] [00] +20:18:05 [ 70] [ 3] [301] +20:18:05 ============================================================================ +20:18:05 Calculate Source COMM Id = 2 +20:18:05 ============================================================================ +20:18:05 + + +waiting on router queue for slot.... +20:18:16 ============================================================================ +20:18:16 Slot Id : <94> +20:18:16 Transaction Type : REQUEST +20:18:16 Received From : +20:18:16 ============================================================================ +20:18:16 FNo. Len. Field Value +20:18:16 ============================================================================ +20:18:16 [ 1] [ 4] [0800] +20:18:16 [ 7] [ 10] [0320011724] +20:18:16 [ 11] [ 6] [158173] +20:18:16 [ 70] [ 3] [301] +20:18:16 ============================================================================ +20:18:16 + + +waiting on router queue for slot.... +20:18:16 Sending to : +20:18:16 ============================================================================ +20:18:16 ============================================================================ +20:18:16 Slot Id : <94> +20:18:16 Transaction Type : RESPONSE +20:18:16 Received From : +20:18:16 ============================================================================ +20:18:16 FNo. Len. Field Value +20:18:16 ============================================================================ +20:18:16 [ 1] [ 4] [0810] +20:18:16 [ 7] [ 10] [0320011724] +20:18:16 [ 11] [ 6] [158173] +20:18:16 [ 39] [ 2] [00] +20:18:16 [ 70] [ 3] [301] +20:18:16 ============================================================================ +20:18:16 Calculate Source COMM Id = 2 +20:18:16 ============================================================================ +20:18:16 + + +waiting on router queue for slot.... +20:18:28 ============================================================================ +20:18:28 Slot Id : <127> +20:18:28 Transaction Type : REQUEST +20:18:28 Received From : +20:18:28 ============================================================================ +20:18:28 FNo. Len. Field Value +20:18:28 ============================================================================ +20:18:28 [ 1] [ 4] [0800] +20:18:28 [ 7] [ 10] [0320011736] +20:18:28 [ 11] [ 6] [158174] +20:18:28 [ 70] [ 3] [301] +20:18:28 ============================================================================ +20:18:28 + + +waiting on router queue for slot.... +20:18:28 Sending to : +20:18:28 ============================================================================ +20:18:28 ============================================================================ +20:18:28 Slot Id : <127> +20:18:28 Transaction Type : RESPONSE +20:18:28 Received From : +20:18:28 ============================================================================ +20:18:28 FNo. Len. Field Value +20:18:28 ============================================================================ +20:18:28 [ 1] [ 4] [0810] +20:18:28 [ 7] [ 10] [0320011736] +20:18:28 [ 11] [ 6] [158174] +20:18:28 [ 39] [ 2] [00] +20:18:28 [ 70] [ 3] [301] +20:18:28 ============================================================================ +20:18:28 Calculate Source COMM Id = 2 +20:18:28 ============================================================================ +20:18:28 + + +waiting on router queue for slot.... +20:18:43 ============================================================================ +20:18:43 Slot Id : <95> +20:18:43 Transaction Type : REQUEST +20:18:43 Received From : +20:18:43 ============================================================================ +20:18:43 FNo. Len. Field Value +20:18:43 ============================================================================ +20:18:43 [ 1] [ 4] [0800] +20:18:43 [ 7] [ 10] [0320011752] +20:18:43 [ 11] [ 6] [158175] +20:18:43 [ 70] [ 3] [301] +20:18:43 ============================================================================ +20:18:43 + + +waiting on router queue for slot.... +20:18:43 Sending to : +20:18:43 ============================================================================ +20:18:43 ============================================================================ +20:18:43 Slot Id : <95> +20:18:43 Transaction Type : RESPONSE +20:18:43 Received From : +20:18:43 ============================================================================ +20:18:43 FNo. Len. Field Value +20:18:43 ============================================================================ +20:18:43 [ 1] [ 4] [0810] +20:18:43 [ 7] [ 10] [0320011752] +20:18:43 [ 11] [ 6] [158175] +20:18:43 [ 39] [ 2] [00] +20:18:43 [ 70] [ 3] [301] +20:18:43 ============================================================================ +20:18:43 Calculate Source COMM Id = 2 +20:18:43 ============================================================================ +20:18:43 + + +waiting on router queue for slot.... +20:18:54 ============================================================================ +20:18:54 Slot Id : <53> +20:18:54 Transaction Type : REQUEST +20:18:54 Received From : +20:18:54 ============================================================================ +20:18:54 FNo. Len. Field Value +20:18:54 ============================================================================ +20:18:54 [ 1] [ 4] [0800] +20:18:54 [ 7] [ 10] [0321033045] +20:18:54 [ 11] [ 6] [203045] +20:18:54 [ 37] [ 12] [57920203045] +20:18:54 [ 70] [ 3] [301] +20:18:54 ============================================================================ +20:18:54 + + +waiting on router queue for slot.... +20:18:54 Sending to : +20:18:54 ============================================================================ +20:18:54 ============================================================================ +20:18:54 Slot Id : <53> +20:18:54 Transaction Type : RESPONSE +20:18:54 Received From : +20:18:54 ============================================================================ +20:18:54 FNo. Len. Field Value +20:18:54 ============================================================================ +20:18:54 [ 1] [ 4] [0810] +20:18:54 [ 7] [ 10] [0321033045] +20:18:54 [ 11] [ 6] [203045] +20:18:54 [ 37] [ 12] [579202030450] +20:18:54 [ 39] [ 2] [00] +20:18:54 [ 70] [ 3] [810] +20:18:54 ============================================================================ +20:18:54 Calculate Source COMM Id = 6 +20:18:54 ============================================================================ +20:18:54 + + +waiting on router queue for slot.... +20:18:54 ============================================================================ +20:18:54 Slot Id : <134> +20:18:54 Transaction Type : REQUEST +20:18:54 Received From : +20:18:54 ============================================================================ +20:18:54 FNo. Len. Field Value +20:18:54 ============================================================================ +20:18:54 [ 1] [ 4] [0800] +20:18:54 [ 7] [ 10] [0320011802] +20:18:54 [ 11] [ 6] [158176] +20:18:54 [ 70] [ 3] [301] +20:18:54 ============================================================================ +20:18:54 + + +waiting on router queue for slot.... +20:18:54 Sending to : +20:18:54 ============================================================================ +20:18:54 ============================================================================ +20:18:54 Slot Id : <134> +20:18:54 Transaction Type : RESPONSE +20:18:54 Received From : +20:18:54 ============================================================================ +20:18:54 FNo. Len. Field Value +20:18:54 ============================================================================ +20:18:54 [ 1] [ 4] [0810] +20:18:54 [ 7] [ 10] [0320011802] +20:18:54 [ 11] [ 6] [158176] +20:18:54 [ 39] [ 2] [00] +20:18:54 [ 70] [ 3] [301] +20:18:54 ============================================================================ +20:18:54 Calculate Source COMM Id = 2 +20:18:54 ============================================================================ +20:18:54 + + +waiting on router queue for slot.... +20:18:57 ============================================================================ +20:18:57 Slot Id : <103> +20:18:57 Transaction Type : REQUEST +20:18:57 Received From : +20:18:57 ============================================================================ +20:18:57 FNo. Len. Field Value +20:18:57 ============================================================================ +20:18:57 [ 1] [ 4] [0800] +20:18:57 [ 2] [ 5] [02531] +20:18:57 [ 3] [ 6] [579208] +20:18:57 [ 7] [ 10] [0320131857] +20:18:57 [ 11] [ 6] [807591] +20:18:57 [ 15] [ 10] [0320131857] +20:18:57 [ 37] [ 11] [57920807591] +20:18:57 [ 70] [ 3] [001] +20:18:57 ============================================================================ +20:18:57 + + +waiting on router queue for slot.... +20:18:57 ============================================================================ +20:18:57 Slot Id : <103> +20:18:57 Transaction Type : RESPONSE +20:18:57 Received From : +20:18:57 ============================================================================ +20:18:57 FNo. Len. Field Value +20:18:57 ============================================================================ +20:18:57 [ 1] [ 4] [0810] +20:18:57 [ 7] [ 10] [0320131857] +20:18:57 [ 11] [ 6] [807591] +20:18:57 [ 15] [ 4] [0320] +20:18:57 [ 37] [ 12] [57920807591] +20:18:57 [ 39] [ 2] [00] +20:18:57 [ 70] [ 3] [001] +20:18:57 ============================================================================ +20:18:57 Sending to : +20:18:57 ============================================================================ +20:18:57 + + +waiting on router queue for slot.... +20:18:58 ============================================================================ +20:18:58 Slot Id : <96> +20:18:58 Transaction Type : REQUEST +20:18:58 Received From : +20:18:58 ============================================================================ +20:18:58 FNo. Len. Field Value +20:18:58 ============================================================================ +20:18:58 [ 1] [ 4] [0200] +20:18:58 [ 2] [ 16] [1888880000096321] +20:18:58 [ 3] [ 6] [011000] +20:18:58 [ 4] [ 12] [000010000000] +20:18:58 [ 7] [ 10] [0320202645] +20:18:58 [ 11] [ 6] [002008] +20:18:58 [ 12] [ 6] [202645] +20:18:58 [ 13] [ 4] [0320] +20:18:58 [ 14] [ 4] [0000] +20:18:58 [ 15] [ 4] [0320] +20:18:58 [ 18] [ 4] [6011] +20:18:58 [ 22] [ 3] [900] +20:18:58 [ 25] [ 2] [02] +20:18:58 [ 28] [ 9] [D00002000] +20:18:58 [ 32] [ 6] [220699] +20:18:58 [ 35] [ 32] [1888880000096321=000010100000645] +20:18:58 [ 37] [ 12] [507900296979] +20:18:58 [ 41] [ 8] [01001600] +20:18:58 [ 42] [ 15] [APTRA ] +20:18:58 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:18:58 [ 49] [ 3] [418] +20:18:58 [ 52] [ 16] [FA494661ED9A9840] +20:18:58 ============================================================================ +20:18:58 + + +waiting on router queue for slot.... +20:18:58 Sending to : +20:18:58 ============================================================================ +20:18:58 Sending to : +20:18:58 ============================================================================ +20:18:58 ============================================================================ +20:18:58 Slot Id : <96> +20:18:58 Transaction Type : REQUEST +20:18:58 Received From : +20:18:58 ============================================================================ +20:18:58 FNo. Len. Field Value +20:18:58 ============================================================================ +20:18:58 [ 1] [ 4] [0200] +20:18:58 [ 2] [ 16] [1888880000096321] +20:18:58 [ 3] [ 6] [011000] +20:18:58 [ 4] [ 12] [000010000000] +20:18:58 [ 7] [ 10] [0320202645] +20:18:58 [ 11] [ 6] [002008] +20:18:58 [ 12] [ 6] [202645] +20:18:58 [ 13] [ 4] [0320] +20:18:58 [ 14] [ 4] [0000] +20:18:58 [ 15] [ 4] [0320] +20:18:58 [ 18] [ 4] [6011] +20:18:58 [ 22] [ 3] [900] +20:18:58 [ 25] [ 2] [02] +20:18:58 [ 28] [ 9] [D00002000] +20:18:58 [ 32] [ 6] [220699] +20:18:58 [ 35] [ 32] [1888880000096321=000010100000645] +20:18:58 [ 37] [ 12] [507900296979] +20:18:58 [ 41] [ 8] [01001600] +20:18:58 [ 42] [ 15] [APTRA ] +20:18:58 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:18:58 [ 49] [ 3] [418] +20:18:58 [ 52] [ 16] [FA494661ED9A9840] +20:18:58 ============================================================================ +20:18:58 + + +waiting on router queue for slot.... +20:18:58 Sending to : +20:18:58 ============================================================================ +20:18:58 ============================================================================ +20:18:58 Slot Id : <96> +20:18:58 Transaction Type : REQUEST +20:18:58 Received From : +20:18:58 ============================================================================ +20:18:58 FNo. Len. Field Value +20:18:58 ============================================================================ +20:18:58 [ 1] [ 4] [0200] +20:18:58 [ 2] [ 16] [1888880000096321] +20:18:58 [ 3] [ 6] [011000] +20:18:58 [ 4] [ 12] [000010000000] +20:18:58 [ 7] [ 10] [0320202645] +20:18:58 [ 11] [ 6] [002008] +20:18:58 [ 12] [ 6] [202645] +20:18:58 [ 13] [ 4] [0320] +20:18:58 [ 14] [ 4] [0000] +20:18:58 [ 15] [ 4] [0320] +20:18:58 [ 18] [ 4] [6011] +20:18:58 [ 22] [ 3] [900] +20:18:58 [ 25] [ 2] [02] +20:18:58 [ 28] [ 9] [D00002000] +20:18:58 [ 32] [ 6] [220699] +20:18:58 [ 35] [ 32] [1888880000096321=000010100000645] +20:18:58 [ 37] [ 12] [507900296979] +20:18:58 [ 41] [ 8] [01001600] +20:18:58 [ 42] [ 15] [APTRA ] +20:18:58 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:18:58 [ 49] [ 3] [418] +20:18:58 [ 52] [ 16] [DC08AB49F285D966] +20:18:58 ============================================================================ +20:18:58 + + +waiting on router queue for slot.... +20:18:58 Sending to : <5> +20:18:58 ============================================================================ +20:19:01 ============================================================================ +20:19:01 Slot Id : <96> +20:19:01 Transaction Type : RESPONSE +20:19:01 Received From : +20:19:01 ============================================================================ +20:19:01 FNo. Len. Field Value +20:19:01 ============================================================================ +20:19:01 [ 1] [ 4] [0210] +20:19:01 [ 2] [ 16] [1888880000096321] +20:19:01 [ 3] [ 6] [011000] +20:19:01 [ 4] [ 12] [000010000000] +20:19:01 [ 7] [ 10] [0320202645] +20:19:01 [ 11] [ 6] [002008] +20:19:01 [ 12] [ 6] [202645] +20:19:01 [ 13] [ 4] [0320] +20:19:01 [ 15] [ 4] [0320] +20:19:01 [ 18] [ 4] [6011] +20:19:01 [ 19] [ 3] [418] +20:19:01 [ 32] [ 6] [220699] +20:19:01 [ 37] [ 12] [507900296979] +20:19:01 [ 38] [ 6] [696911] +20:19:01 [ 39] [ 2] [00] +20:19:01 [ 41] [ 8] [01001600] +20:19:01 [ 49] [ 3] [418] +20:19:01 [ 54] [ 0] [] +20:19:01 ============================================================================ +20:19:01 Sending to : +20:19:01 ============================================================================ +20:19:01 + + +waiting on router queue for slot.... +20:19:03 ============================================================================ +20:19:03 Slot Id : <96> +20:19:03 Transaction Type : RESPONSE +20:19:03 Received From : +20:19:03 ============================================================================ +20:19:03 FNo. Len. Field Value +20:19:03 ============================================================================ +20:19:03 [ 1] [ 4] [0210] +20:19:03 [ 2] [ 16] [1888880000096321] +20:19:03 [ 3] [ 6] [011000] +20:19:03 [ 4] [ 12] [000010000000] +20:19:03 [ 7] [ 10] [0320202645] +20:19:03 [ 11] [ 6] [002008] +20:19:03 [ 12] [ 6] [202645] +20:19:03 [ 13] [ 4] [0320] +20:19:03 [ 15] [ 4] [0320] +20:19:03 [ 18] [ 4] [6011] +20:19:03 [ 19] [ 3] [418] +20:19:03 [ 32] [ 6] [220699] +20:19:03 [ 37] [ 12] [507900296979] +20:19:03 [ 38] [ 6] [696911] +20:19:03 [ 39] [ 2] [00] +20:19:03 [ 41] [ 8] [01001600] +20:19:03 [ 49] [ 3] [418] +20:19:03 [ 54] [ 0] [] +20:19:03 ============================================================================ +20:19:03 Calculate Source COMM Id = 1 +20:19:03 ============================================================================ +20:19:03 + + +waiting on router queue for slot.... +20:19:10 ============================================================================ +20:19:10 Slot Id : <125> +20:19:10 Transaction Type : REQUEST +20:19:10 Received From : +20:19:10 ============================================================================ +20:19:10 FNo. Len. Field Value +20:19:10 ============================================================================ +20:19:10 [ 1] [ 4] [0800] +20:19:10 [ 7] [ 10] [0320011818] +20:19:10 [ 11] [ 6] [158177] +20:19:10 [ 70] [ 3] [301] +20:19:10 ============================================================================ +20:19:10 + + +waiting on router queue for slot.... +20:19:10 Sending to : +20:19:10 ============================================================================ +20:19:10 ============================================================================ +20:19:10 Slot Id : <125> +20:19:10 Transaction Type : RESPONSE +20:19:10 Received From : +20:19:10 ============================================================================ +20:19:10 FNo. Len. Field Value +20:19:10 ============================================================================ +20:19:10 [ 1] [ 4] [0810] +20:19:10 [ 7] [ 10] [0320011818] +20:19:10 [ 11] [ 6] [158177] +20:19:10 [ 39] [ 2] [00] +20:19:10 [ 70] [ 3] [301] +20:19:10 ============================================================================ +20:19:10 Calculate Source COMM Id = 2 +20:19:10 ============================================================================ +20:19:10 + + +waiting on router queue for slot.... +20:19:25 ============================================================================ +20:19:25 Slot Id : <101> +20:19:25 Transaction Type : REQUEST +20:19:25 Received From : +20:19:25 ============================================================================ +20:19:25 FNo. Len. Field Value +20:19:25 ============================================================================ +20:19:25 [ 1] [ 4] [0800] +20:19:25 [ 7] [ 10] [0320011833] +20:19:25 [ 11] [ 6] [158178] +20:19:25 [ 70] [ 3] [301] +20:19:25 ============================================================================ +20:19:25 + + +waiting on router queue for slot.... +20:19:25 Sending to : +20:19:25 ============================================================================ +20:19:25 ============================================================================ +20:19:25 Slot Id : <101> +20:19:25 Transaction Type : RESPONSE +20:19:25 Received From : +20:19:25 ============================================================================ +20:19:25 FNo. Len. Field Value +20:19:25 ============================================================================ +20:19:25 [ 1] [ 4] [0810] +20:19:25 [ 7] [ 10] [0320011833] +20:19:25 [ 11] [ 6] [158178] +20:19:25 [ 39] [ 2] [00] +20:19:25 [ 70] [ 3] [301] +20:19:25 ============================================================================ +20:19:25 Calculate Source COMM Id = 2 +20:19:25 ============================================================================ +20:19:25 + + +waiting on router queue for slot.... +20:19:36 ============================================================================ +20:19:36 Slot Id : <70> +20:19:36 Transaction Type : REQUEST +20:19:36 Received From : +20:19:36 ============================================================================ +20:19:36 FNo. Len. Field Value +20:19:36 ============================================================================ +20:19:36 [ 1] [ 4] [0800] +20:19:36 [ 7] [ 10] [0320011844] +20:19:36 [ 11] [ 6] [158179] +20:19:36 [ 70] [ 3] [301] +20:19:36 ============================================================================ +20:19:36 + + +waiting on router queue for slot.... +20:19:36 Sending to : +20:19:36 ============================================================================ +20:19:36 ============================================================================ +20:19:36 Slot Id : <70> +20:19:36 Transaction Type : RESPONSE +20:19:36 Received From : +20:19:36 ============================================================================ +20:19:36 FNo. Len. Field Value +20:19:36 ============================================================================ +20:19:36 [ 1] [ 4] [0810] +20:19:36 [ 7] [ 10] [0320011844] +20:19:36 [ 11] [ 6] [158179] +20:19:36 [ 39] [ 2] [00] +20:19:36 [ 70] [ 3] [301] +20:19:36 ============================================================================ +20:19:36 Calculate Source COMM Id = 2 +20:19:36 ============================================================================ +20:19:36 + + +waiting on router queue for slot.... +20:19:47 ============================================================================ +20:19:47 Slot Id : <77> +20:19:47 Transaction Type : REQUEST +20:19:47 Received From : +20:19:47 ============================================================================ +20:19:47 FNo. Len. Field Value +20:19:47 ============================================================================ +20:19:47 [ 1] [ 4] [0800] +20:19:47 [ 7] [ 10] [0320011855] +20:19:47 [ 11] [ 6] [158180] +20:19:47 [ 70] [ 3] [301] +20:19:47 ============================================================================ +20:19:47 + + +waiting on router queue for slot.... +20:19:47 Sending to : +20:19:47 ============================================================================ +20:19:47 ============================================================================ +20:19:47 Slot Id : <77> +20:19:47 Transaction Type : RESPONSE +20:19:47 Received From : +20:19:47 ============================================================================ +20:19:47 FNo. Len. Field Value +20:19:47 ============================================================================ +20:19:47 [ 1] [ 4] [0810] +20:19:47 [ 7] [ 10] [0320011855] +20:19:47 [ 11] [ 6] [158180] +20:19:47 [ 39] [ 2] [00] +20:19:47 [ 70] [ 3] [301] +20:19:47 ============================================================================ +20:19:47 Calculate Source COMM Id = 2 +20:19:47 ============================================================================ +20:19:47 + + +waiting on router queue for slot.... +20:19:55 ============================================================================ +20:19:55 Slot Id : <102> +20:19:55 Transaction Type : REQUEST +20:19:55 Received From : +20:19:55 ============================================================================ +20:19:55 FNo. Len. Field Value +20:19:55 ============================================================================ +20:19:55 [ 1] [ 4] [0800] +20:19:55 [ 7] [ 10] [0320132742] +20:19:55 [ 11] [ 6] [090835] +20:19:55 [ 37] [ 12] [57920090835] +20:19:55 [ 70] [ 3] [301] +20:19:55 ============================================================================ +20:19:55 + + +waiting on router queue for slot.... +20:19:55 Sending to : +20:19:55 ============================================================================ +20:19:55 ============================================================================ +20:19:55 Slot Id : <102> +20:19:55 Transaction Type : RESPONSE +20:19:55 Received From : +20:19:55 ============================================================================ +20:19:55 FNo. Len. Field Value +20:19:55 ============================================================================ +20:19:55 [ 1] [ 4] [0810] +20:19:55 [ 7] [ 10] [0320132742] +20:19:55 [ 11] [ 6] [090835] +20:19:55 [ 37] [ 12] [579200908350] +20:19:55 [ 39] [ 2] [00] +20:19:55 [ 70] [ 3] [810] +20:19:55 ============================================================================ +20:19:55 Calculate Source COMM Id = 1 +20:19:55 ============================================================================ +20:19:55 + + +waiting on router queue for slot.... +20:19:59 ============================================================================ +20:19:59 Slot Id : <109> +20:19:59 Transaction Type : REQUEST +20:19:59 Received From : +20:19:59 ============================================================================ +20:19:59 FNo. Len. Field Value +20:19:59 ============================================================================ +20:19:59 [ 1] [ 4] [0800] +20:19:59 [ 7] [ 10] [0321033150] +20:19:59 [ 11] [ 6] [203150] +20:19:59 [ 37] [ 12] [57920203150] +20:19:59 [ 70] [ 3] [301] +20:19:59 ============================================================================ +20:19:59 + + +waiting on router queue for slot.... +20:19:59 Sending to : +20:19:59 ============================================================================ +20:19:59 ============================================================================ +20:19:59 Slot Id : <109> +20:19:59 Transaction Type : RESPONSE +20:19:59 Received From : +20:19:59 ============================================================================ +20:19:59 FNo. Len. Field Value +20:19:59 ============================================================================ +20:19:59 [ 1] [ 4] [0810] +20:19:59 [ 7] [ 10] [0321033150] +20:19:59 [ 11] [ 6] [203150] +20:19:59 [ 37] [ 12] [579202031500] +20:19:59 [ 39] [ 2] [00] +20:19:59 [ 70] [ 3] [810] +20:19:59 ============================================================================ +20:19:59 Calculate Source COMM Id = 6 +20:19:59 ============================================================================ +20:19:59 + + +waiting on router queue for slot.... +20:19:59 ============================================================================ +20:19:59 Slot Id : <85> +20:19:59 Transaction Type : REQUEST +20:19:59 Received From : +20:19:59 ============================================================================ +20:19:59 FNo. Len. Field Value +20:19:59 ============================================================================ +20:19:59 [ 1] [ 4] [0800] +20:19:59 [ 2] [ 5] [02531] +20:19:59 [ 3] [ 6] [579208] +20:19:59 [ 7] [ 10] [0320131959] +20:19:59 [ 11] [ 6] [807592] +20:19:59 [ 15] [ 10] [0320131959] +20:19:59 [ 37] [ 11] [57920807592] +20:19:59 [ 70] [ 3] [001] +20:19:59 ============================================================================ +20:19:59 + + +waiting on router queue for slot.... +20:19:59 ============================================================================ +20:19:59 Slot Id : <85> +20:19:59 Transaction Type : RESPONSE +20:19:59 Received From : +20:19:59 ============================================================================ +20:19:59 FNo. Len. Field Value +20:19:59 ============================================================================ +20:19:59 [ 1] [ 4] [0810] +20:19:59 [ 7] [ 10] [0320131959] +20:19:59 [ 11] [ 6] [807592] +20:19:59 [ 15] [ 4] [0320] +20:19:59 [ 37] [ 12] [57920807592] +20:19:59 [ 39] [ 2] [00] +20:19:59 [ 70] [ 3] [001] +20:19:59 ============================================================================ +20:19:59 Sending to : +20:19:59 ============================================================================ +20:19:59 + + +waiting on router queue for slot.... +20:20:04 ============================================================================ +20:20:04 Slot Id : <71> +20:20:04 Transaction Type : REQUEST +20:20:04 Received From : +20:20:04 ============================================================================ +20:20:04 FNo. Len. Field Value +20:20:04 ============================================================================ +20:20:04 [ 1] [ 4] [0800] +20:20:04 [ 7] [ 10] [0320011911] +20:20:04 [ 11] [ 6] [158181] +20:20:04 [ 70] [ 3] [301] +20:20:04 ============================================================================ +20:20:04 + + +waiting on router queue for slot.... +20:20:04 Sending to : +20:20:04 ============================================================================ +20:20:04 ============================================================================ +20:20:04 Slot Id : <71> +20:20:04 Transaction Type : RESPONSE +20:20:04 Received From : +20:20:04 ============================================================================ +20:20:04 FNo. Len. Field Value +20:20:04 ============================================================================ +20:20:04 [ 1] [ 4] [0810] +20:20:04 [ 7] [ 10] [0320011911] +20:20:04 [ 11] [ 6] [158181] +20:20:04 [ 39] [ 2] [00] +20:20:04 [ 70] [ 3] [301] +20:20:04 ============================================================================ +20:20:04 Calculate Source COMM Id = 2 +20:20:04 ============================================================================ +20:20:04 + + +waiting on router queue for slot.... +20:20:13 ============================================================================ +20:20:13 Slot Id : <136> +20:20:13 Transaction Type : REQUEST +20:20:13 Received From : +20:20:13 ============================================================================ +20:20:13 FNo. Len. Field Value +20:20:13 ============================================================================ +20:20:13 [ 1] [ 4] [0200] +20:20:13 [ 2] [ 16] [6213548000547149] +20:20:13 [ 3] [ 6] [010000] +20:20:13 [ 4] [ 12] [000004000000] +20:20:13 [ 7] [ 10] [0320201805] +20:20:13 [ 11] [ 6] [957053] +20:20:13 [ 12] [ 6] [201805] +20:20:13 [ 13] [ 4] [0320] +20:20:13 [ 15] [ 4] [0320] +20:20:13 [ 18] [ 4] [6011] +20:20:13 [ 19] [ 3] [418] +20:20:13 [ 22] [ 3] [021] +20:20:13 [ 25] [ 2] [01] +20:20:13 [ 28] [ 9] [D00002000] +20:20:13 [ 32] [ 6] [668899] +20:20:13 [ 35] [ 32] [6213548000547149=190112014714845] +20:20:13 [ 37] [ 12] [507900858460] +20:20:13 [ 41] [ 8] [03015004] +20:20:13 [ 42] [ 15] [APT ] +20:20:13 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +20:20:13 [ 49] [ 3] [418] +20:20:13 [ 52] [ 16] [A7F2C5B3E0C9F73C] +20:20:13 ============================================================================ +20:20:13 + + +waiting on router queue for slot.... +20:20:13 Sending to : +20:20:13 ============================================================================ +20:20:13 Sending to : +20:20:13 ============================================================================ +20:20:14 ============================================================================ +20:20:14 Slot Id : <136> +20:20:14 Transaction Type : REQUEST +20:20:14 Received From : +20:20:14 ============================================================================ +20:20:14 FNo. Len. Field Value +20:20:14 ============================================================================ +20:20:14 [ 1] [ 4] [0200] +20:20:14 [ 2] [ 16] [6213548000547149] +20:20:14 [ 3] [ 6] [010000] +20:20:14 [ 4] [ 12] [000004000000] +20:20:14 [ 7] [ 10] [0320201805] +20:20:14 [ 11] [ 6] [957053] +20:20:14 [ 12] [ 6] [201805] +20:20:14 [ 13] [ 4] [0320] +20:20:14 [ 15] [ 4] [0320] +20:20:14 [ 18] [ 4] [6011] +20:20:14 [ 19] [ 3] [418] +20:20:14 [ 22] [ 3] [021] +20:20:14 [ 25] [ 2] [01] +20:20:14 [ 28] [ 9] [D00002000] +20:20:14 [ 32] [ 6] [668899] +20:20:14 [ 35] [ 32] [6213548000547149=190112014714845] +20:20:14 [ 37] [ 12] [507900858460] +20:20:14 [ 41] [ 8] [03015004] +20:20:14 [ 42] [ 15] [APT ] +20:20:14 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +20:20:14 [ 49] [ 3] [418] +20:20:14 [ 52] [ 16] [A7F2C5B3E0C9F73C] +20:20:14 ============================================================================ +20:20:14 + + +waiting on router queue for slot.... +20:20:14 Sending to : +20:20:14 ============================================================================ +20:20:14 ============================================================================ +20:20:14 Slot Id : <136> +20:20:14 Transaction Type : REQUEST +20:20:14 Received From : +20:20:14 ============================================================================ +20:20:14 FNo. Len. Field Value +20:20:14 ============================================================================ +20:20:14 [ 1] [ 4] [0200] +20:20:14 [ 2] [ 16] [6213548000547149] +20:20:14 [ 3] [ 6] [010000] +20:20:14 [ 4] [ 12] [000004000000] +20:20:14 [ 7] [ 10] [0320201805] +20:20:14 [ 11] [ 6] [957053] +20:20:14 [ 12] [ 6] [201805] +20:20:14 [ 13] [ 4] [0320] +20:20:14 [ 15] [ 4] [0320] +20:20:14 [ 18] [ 4] [6011] +20:20:14 [ 19] [ 3] [418] +20:20:14 [ 22] [ 3] [021] +20:20:14 [ 25] [ 2] [01] +20:20:14 [ 28] [ 9] [D00002000] +20:20:14 [ 32] [ 6] [668899] +20:20:14 [ 35] [ 32] [6213548000547149=190112014714845] +20:20:14 [ 37] [ 12] [507900858460] +20:20:14 [ 41] [ 8] [03015004] +20:20:14 [ 42] [ 15] [APT ] +20:20:14 [ 43] [ 40] [ APB OFFICE PAKSE LAO] +20:20:14 [ 49] [ 3] [418] +20:20:14 [ 52] [ 16] [7263B207175C9922] +20:20:14 ============================================================================ +20:20:14 + + +waiting on router queue for slot.... +20:20:14 Sending to : <0> +20:20:14 ============================================================================ +20:20:14 ============================================================================ +20:20:14 Slot Id : <136> +20:20:14 Transaction Type : RESPONSE +20:20:14 Received From : +20:20:14 ============================================================================ +20:20:14 FNo. Len. Field Value +20:20:14 ============================================================================ +20:20:14 [ 1] [ 4] [0210] +20:20:14 [ 2] [ 16] [6213548000547149] +20:20:14 [ 3] [ 6] [010000] +20:20:14 [ 4] [ 12] [000004000000] +20:20:14 [ 7] [ 10] [0320201805] +20:20:14 [ 11] [ 6] [957053] +20:20:14 [ 12] [ 6] [201805] +20:20:14 [ 13] [ 4] [0320] +20:20:14 [ 15] [ 4] [0320] +20:20:14 [ 18] [ 4] [6011] +20:20:14 [ 19] [ 3] [418] +20:20:14 [ 32] [ 6] [668899] +20:20:14 [ 35] [ 32] [6213548000547149=190112014714845] +20:20:14 [ 37] [ 12] [507900858460] +20:20:14 [ 38] [ 6] [684309] +20:20:14 [ 39] [ 2] [00] +20:20:14 [ 41] [ 8] [03015004] +20:20:14 [ 49] [ 3] [418] +20:20:14 [ 54] [ 40] [0001418C0000096000000002418C000005400000] +20:20:14 ============================================================================ +20:20:14 Sending to : +20:20:14 ============================================================================ +20:20:14 + + +waiting on router queue for slot.... +20:20:16 ============================================================================ +20:20:16 Slot Id : <136> +20:20:16 Transaction Type : RESPONSE +20:20:16 Received From : +20:20:16 ============================================================================ +20:20:16 FNo. Len. Field Value +20:20:16 ============================================================================ +20:20:16 [ 1] [ 4] [0210] +20:20:16 [ 2] [ 16] [6213548000547149] +20:20:16 [ 3] [ 6] [010000] +20:20:16 [ 4] [ 12] [000004000000] +20:20:16 [ 7] [ 10] [0320201805] +20:20:16 [ 11] [ 6] [957053] +20:20:16 [ 12] [ 6] [201805] +20:20:16 [ 13] [ 4] [0320] +20:20:16 [ 15] [ 4] [0320] +20:20:16 [ 18] [ 4] [6011] +20:20:16 [ 19] [ 3] [418] +20:20:16 [ 32] [ 6] [668899] +20:20:16 [ 35] [ 32] [6213548000547149=190112014714845] +20:20:16 [ 37] [ 12] [507900858460] +20:20:16 [ 38] [ 6] [684309] +20:20:16 [ 39] [ 2] [00] +20:20:16 [ 41] [ 8] [03015004] +20:20:16 [ 49] [ 3] [418] +20:20:16 [ 54] [ 40] [0001418C0000096000000002418C000005400000] +20:20:16 ============================================================================ +20:20:16 Calculate Source COMM Id = 4 +20:20:16 ============================================================================ +20:20:16 + + +waiting on router queue for slot.... +20:20:18 ============================================================================ +20:20:18 Slot Id : <105> +20:20:18 Transaction Type : REQUEST +20:20:18 Received From : +20:20:18 ============================================================================ +20:20:18 FNo. Len. Field Value +20:20:18 ============================================================================ +20:20:18 [ 1] [ 4] [0800] +20:20:18 [ 7] [ 10] [0320011927] +20:20:18 [ 11] [ 6] [158182] +20:20:18 [ 70] [ 3] [301] +20:20:18 ============================================================================ +20:20:18 + + +waiting on router queue for slot.... +20:20:18 Sending to : +20:20:18 ============================================================================ +20:20:18 ============================================================================ +20:20:18 Slot Id : <105> +20:20:18 Transaction Type : RESPONSE +20:20:18 Received From : +20:20:18 ============================================================================ +20:20:18 FNo. Len. Field Value +20:20:18 ============================================================================ +20:20:18 [ 1] [ 4] [0810] +20:20:18 [ 7] [ 10] [0320011927] +20:20:18 [ 11] [ 6] [158182] +20:20:18 [ 39] [ 2] [00] +20:20:18 [ 70] [ 3] [301] +20:20:18 ============================================================================ +20:20:18 Calculate Source COMM Id = 2 +20:20:18 ============================================================================ +20:20:18 + + +waiting on router queue for slot.... +20:20:29 ============================================================================ +20:20:29 Slot Id : <129> +20:20:29 Transaction Type : REQUEST +20:20:29 Received From : +20:20:29 ============================================================================ +20:20:29 FNo. Len. Field Value +20:20:29 ============================================================================ +20:20:29 [ 1] [ 4] [0800] +20:20:29 [ 7] [ 10] [0320011938] +20:20:29 [ 11] [ 6] [158183] +20:20:29 [ 70] [ 3] [301] +20:20:29 ============================================================================ +20:20:29 + + +waiting on router queue for slot.... +20:20:29 Sending to : +20:20:29 ============================================================================ +20:20:29 ============================================================================ +20:20:29 Slot Id : <129> +20:20:29 Transaction Type : RESPONSE +20:20:29 Received From : +20:20:29 ============================================================================ +20:20:29 FNo. Len. Field Value +20:20:29 ============================================================================ +20:20:29 [ 1] [ 4] [0810] +20:20:29 [ 7] [ 10] [0320011938] +20:20:29 [ 11] [ 6] [158183] +20:20:29 [ 39] [ 2] [00] +20:20:29 [ 70] [ 3] [301] +20:20:29 ============================================================================ +20:20:29 Calculate Source COMM Id = 2 +20:20:29 ============================================================================ +20:20:29 + + +waiting on router queue for slot.... +20:20:40 ============================================================================ +20:20:40 Slot Id : <116> +20:20:40 Transaction Type : REQUEST +20:20:40 Received From : +20:20:40 ============================================================================ +20:20:40 FNo. Len. Field Value +20:20:40 ============================================================================ +20:20:40 [ 1] [ 4] [0800] +20:20:40 [ 7] [ 10] [0320011948] +20:20:40 [ 11] [ 6] [158184] +20:20:40 [ 70] [ 3] [301] +20:20:40 ============================================================================ +20:20:40 + + +waiting on router queue for slot.... +20:20:40 Sending to : +20:20:40 ============================================================================ +20:20:40 ============================================================================ +20:20:40 Slot Id : <116> +20:20:40 Transaction Type : RESPONSE +20:20:40 Received From : +20:20:40 ============================================================================ +20:20:40 FNo. Len. Field Value +20:20:40 ============================================================================ +20:20:40 [ 1] [ 4] [0810] +20:20:40 [ 7] [ 10] [0320011948] +20:20:40 [ 11] [ 6] [158184] +20:20:40 [ 39] [ 2] [00] +20:20:40 [ 70] [ 3] [301] +20:20:40 ============================================================================ +20:20:40 Calculate Source COMM Id = 2 +20:20:40 ============================================================================ +20:20:40 + + +waiting on router queue for slot.... +20:20:51 ============================================================================ +20:20:51 Slot Id : <131> +20:20:51 Transaction Type : REQUEST +20:20:51 Received From : +20:20:51 ============================================================================ +20:20:51 FNo. Len. Field Value +20:20:51 ============================================================================ +20:20:51 [ 1] [ 4] [0800] +20:20:51 [ 7] [ 10] [0320011959] +20:20:51 [ 11] [ 6] [158185] +20:20:51 [ 70] [ 3] [301] +20:20:51 ============================================================================ +20:20:51 + + +waiting on router queue for slot.... +20:20:51 Sending to : +20:20:51 ============================================================================ +20:20:51 ============================================================================ +20:20:51 Slot Id : <131> +20:20:51 Transaction Type : RESPONSE +20:20:51 Received From : +20:20:51 ============================================================================ +20:20:51 FNo. Len. Field Value +20:20:51 ============================================================================ +20:20:51 [ 1] [ 4] [0810] +20:20:51 [ 7] [ 10] [0320011959] +20:20:51 [ 11] [ 6] [158185] +20:20:51 [ 39] [ 2] [00] +20:20:51 [ 70] [ 3] [301] +20:20:51 ============================================================================ +20:20:51 Calculate Source COMM Id = 2 +20:20:51 ============================================================================ +20:20:51 + + +waiting on router queue for slot.... +20:21:01 ============================================================================ +20:21:01 Slot Id : <138> +20:21:01 Transaction Type : REQUEST +20:21:01 Received From : +20:21:01 ============================================================================ +20:21:01 FNo. Len. Field Value +20:21:01 ============================================================================ +20:21:01 [ 1] [ 4] [0800] +20:21:01 [ 2] [ 5] [02531] +20:21:01 [ 3] [ 6] [579208] +20:21:01 [ 7] [ 10] [0320132101] +20:21:01 [ 11] [ 6] [807593] +20:21:01 [ 15] [ 10] [0320132101] +20:21:01 [ 37] [ 11] [57920807593] +20:21:01 [ 70] [ 3] [001] +20:21:01 ============================================================================ +20:21:01 + + +waiting on router queue for slot.... +20:21:01 ============================================================================ +20:21:01 Slot Id : <138> +20:21:01 Transaction Type : RESPONSE +20:21:01 Received From : +20:21:01 ============================================================================ +20:21:01 FNo. Len. Field Value +20:21:01 ============================================================================ +20:21:01 [ 1] [ 4] [0810] +20:21:01 [ 7] [ 10] [0320132101] +20:21:01 [ 11] [ 6] [807593] +20:21:01 [ 15] [ 4] [0320] +20:21:01 [ 37] [ 12] [57920807593] +20:21:01 [ 39] [ 2] [00] +20:21:01 [ 70] [ 3] [001] +20:21:01 ============================================================================ +20:21:01 Sending to : +20:21:01 ============================================================================ +20:21:01 + + +waiting on router queue for slot.... +20:21:02 ============================================================================ +20:21:02 Slot Id : <104> +20:21:02 Transaction Type : REQUEST +20:21:02 Received From : +20:21:02 ============================================================================ +20:21:02 FNo. Len. Field Value +20:21:02 ============================================================================ +20:21:02 [ 1] [ 4] [0800] +20:21:02 [ 7] [ 10] [0320012010] +20:21:02 [ 11] [ 6] [158186] +20:21:02 [ 70] [ 3] [301] +20:21:02 ============================================================================ +20:21:02 + + +waiting on router queue for slot.... +20:21:02 Sending to : +20:21:02 ============================================================================ +20:21:02 ============================================================================ +20:21:02 Slot Id : <104> +20:21:02 Transaction Type : RESPONSE +20:21:02 Received From : +20:21:02 ============================================================================ +20:21:02 FNo. Len. Field Value +20:21:02 ============================================================================ +20:21:02 [ 1] [ 4] [0810] +20:21:02 [ 7] [ 10] [0320012010] +20:21:02 [ 11] [ 6] [158186] +20:21:02 [ 39] [ 2] [00] +20:21:02 [ 70] [ 3] [301] +20:21:02 ============================================================================ +20:21:02 Calculate Source COMM Id = 2 +20:21:02 ============================================================================ +20:21:02 + + +waiting on router queue for slot.... +20:21:05 ============================================================================ +20:21:05 Slot Id : <97> +20:21:05 Transaction Type : REQUEST +20:21:05 Received From : +20:21:05 ============================================================================ +20:21:05 FNo. Len. Field Value +20:21:05 ============================================================================ +20:21:05 [ 1] [ 4] [0800] +20:21:05 [ 7] [ 10] [0321033255] +20:21:05 [ 11] [ 6] [203255] +20:21:05 [ 37] [ 12] [57920203255] +20:21:05 [ 70] [ 3] [301] +20:21:05 ============================================================================ +20:21:05 + + +waiting on router queue for slot.... +20:21:05 Sending to : +20:21:05 ============================================================================ +20:21:05 ============================================================================ +20:21:05 Slot Id : <97> +20:21:05 Transaction Type : RESPONSE +20:21:05 Received From : +20:21:05 ============================================================================ +20:21:05 FNo. Len. Field Value +20:21:05 ============================================================================ +20:21:05 [ 1] [ 4] [0810] +20:21:05 [ 7] [ 10] [0321033255] +20:21:05 [ 11] [ 6] [203255] +20:21:05 [ 37] [ 12] [579202032550] +20:21:05 [ 39] [ 2] [00] +20:21:05 [ 70] [ 3] [810] +20:21:05 ============================================================================ +20:21:05 Calculate Source COMM Id = 6 +20:21:05 ============================================================================ +20:21:05 + + +waiting on router queue for slot.... +20:21:13 ============================================================================ +20:21:13 Slot Id : <112> +20:21:13 Transaction Type : REQUEST +20:21:13 Received From : +20:21:13 ============================================================================ +20:21:13 FNo. Len. Field Value +20:21:13 ============================================================================ +20:21:13 [ 1] [ 4] [0800] +20:21:13 [ 7] [ 10] [0320012021] +20:21:13 [ 11] [ 6] [158187] +20:21:13 [ 70] [ 3] [301] +20:21:13 ============================================================================ +20:21:13 + + +waiting on router queue for slot.... +20:21:13 Sending to : +20:21:13 ============================================================================ +20:21:13 ============================================================================ +20:21:13 Slot Id : <112> +20:21:13 Transaction Type : RESPONSE +20:21:13 Received From : +20:21:13 ============================================================================ +20:21:13 FNo. Len. Field Value +20:21:13 ============================================================================ +20:21:13 [ 1] [ 4] [0810] +20:21:13 [ 7] [ 10] [0320012021] +20:21:13 [ 11] [ 6] [158187] +20:21:13 [ 39] [ 2] [00] +20:21:13 [ 70] [ 3] [301] +20:21:13 ============================================================================ +20:21:13 Calculate Source COMM Id = 2 +20:21:13 ============================================================================ +20:21:13 + + +waiting on router queue for slot.... +20:21:20 ============================================================================ +20:21:20 Slot Id : <124> +20:21:20 Transaction Type : REQUEST +20:21:20 Received From : +20:21:20 ============================================================================ +20:21:20 FNo. Len. Field Value +20:21:20 ============================================================================ +20:21:20 [ 1] [ 4] [0800] +20:21:20 [ 7] [ 10] [0320131912] +20:21:20 [ 11] [ 6] [098168] +20:21:20 [ 37] [ 12] [57920098168] +20:21:20 [ 70] [ 3] [301] +20:21:20 ============================================================================ +20:21:20 + + +waiting on router queue for slot.... +20:21:20 Sending to : +20:21:20 ============================================================================ +20:21:20 ============================================================================ +20:21:20 Slot Id : <124> +20:21:20 Transaction Type : RESPONSE +20:21:20 Received From : +20:21:20 ============================================================================ +20:21:20 FNo. Len. Field Value +20:21:20 ============================================================================ +20:21:20 [ 1] [ 4] [0810] +20:21:20 [ 7] [ 10] [0320131912] +20:21:20 [ 11] [ 6] [098168] +20:21:20 [ 37] [ 12] [579200981680] +20:21:20 [ 39] [ 2] [00] +20:21:20 [ 70] [ 3] [810] +20:21:20 ============================================================================ +20:21:20 Calculate Source COMM Id = 4 +20:21:20 ============================================================================ +20:21:20 + + +waiting on router queue for slot.... +20:21:26 ============================================================================ +20:21:26 Slot Id : <111> +20:21:26 Transaction Type : REQUEST +20:21:26 Received From : +20:21:26 ============================================================================ +20:21:26 FNo. Len. Field Value +20:21:26 ============================================================================ +20:21:26 [ 1] [ 4] [0200] +20:21:26 [ 2] [ 16] [1808930300016771] +20:21:26 [ 3] [ 6] [011000] +20:21:26 [ 4] [ 12] [000100000000] +20:21:26 [ 7] [ 10] [0320202123] +20:21:26 [ 11] [ 6] [841839] +20:21:26 [ 12] [ 6] [202123] +20:21:26 [ 13] [ 4] [0320] +20:21:26 [ 15] [ 4] [0320] +20:21:26 [ 18] [ 4] [6011] +20:21:26 [ 22] [ 3] [900] +20:21:26 [ 25] [ 2] [02] +20:21:26 [ 28] [ 9] [D00002000] +20:21:26 [ 32] [ 6] [621354] +20:21:26 [ 35] [ 27] [1808930300016771=1803500009] +20:21:26 [ 37] [ 12] [507903640596] +20:21:26 [ 41] [ 8] [16001700] +20:21:26 [ 42] [ 15] [NATIVE ] +20:21:26 [ 43] [ 40] [NOUL Unit Xaythany LAO] +20:21:26 [ 49] [ 3] [418] +20:21:26 [ 52] [ 16] [F9806CF426B6E76A] +20:21:26 ============================================================================ +20:21:26 + + +waiting on router queue for slot.... +20:21:26 Sending to : +20:21:26 ============================================================================ +20:21:26 Sending to : +20:21:26 ============================================================================ +20:21:27 ============================================================================ +20:21:27 Slot Id : <111> +20:21:27 Transaction Type : REQUEST +20:21:27 Received From : +20:21:27 ============================================================================ +20:21:27 FNo. Len. Field Value +20:21:27 ============================================================================ +20:21:27 [ 1] [ 4] [0200] +20:21:27 [ 2] [ 16] [1808930300016771] +20:21:27 [ 3] [ 6] [011000] +20:21:27 [ 4] [ 12] [000100000000] +20:21:27 [ 7] [ 10] [0320202123] +20:21:27 [ 11] [ 6] [841839] +20:21:27 [ 12] [ 6] [202123] +20:21:27 [ 13] [ 4] [0320] +20:21:27 [ 15] [ 4] [0320] +20:21:27 [ 18] [ 4] [6011] +20:21:27 [ 22] [ 3] [900] +20:21:27 [ 25] [ 2] [02] +20:21:27 [ 28] [ 9] [D00002000] +20:21:27 [ 32] [ 6] [621354] +20:21:27 [ 35] [ 27] [1808930300016771=1803500009] +20:21:27 [ 37] [ 12] [507903640596] +20:21:27 [ 41] [ 8] [16001700] +20:21:27 [ 42] [ 15] [NATIVE ] +20:21:27 [ 43] [ 40] [NOUL Unit Xaythany LAO] +20:21:27 [ 49] [ 3] [418] +20:21:27 [ 52] [ 16] [F9806CF426B6E76A] +20:21:27 ============================================================================ +20:21:27 + + +waiting on router queue for slot.... +20:21:27 Sending to : +20:21:27 ============================================================================ +20:21:27 ============================================================================ +20:21:27 Slot Id : <111> +20:21:27 Transaction Type : REQUEST +20:21:27 Received From : +20:21:27 ============================================================================ +20:21:27 FNo. Len. Field Value +20:21:27 ============================================================================ +20:21:27 [ 1] [ 4] [0200] +20:21:27 [ 2] [ 16] [1808930300016771] +20:21:27 [ 3] [ 6] [011000] +20:21:27 [ 4] [ 12] [000100000000] +20:21:27 [ 7] [ 10] [0320202123] +20:21:27 [ 11] [ 6] [841839] +20:21:27 [ 12] [ 6] [202123] +20:21:27 [ 13] [ 4] [0320] +20:21:27 [ 15] [ 4] [0320] +20:21:27 [ 18] [ 4] [6011] +20:21:27 [ 22] [ 3] [900] +20:21:27 [ 25] [ 2] [02] +20:21:27 [ 28] [ 9] [D00002000] +20:21:27 [ 32] [ 6] [621354] +20:21:27 [ 35] [ 27] [1808930300016771=1803500009] +20:21:27 [ 37] [ 12] [507903640596] +20:21:27 [ 41] [ 8] [16001700] +20:21:27 [ 42] [ 15] [NATIVE ] +20:21:27 [ 43] [ 40] [NOUL Unit Xaythany LAO] +20:21:27 [ 49] [ 3] [418] +20:21:27 [ 52] [ 16] [955F6946A82D0EDD] +20:21:27 ============================================================================ +20:21:27 + + +waiting on router queue for slot.... +20:21:27 Sending to : <2> +20:21:27 ============================================================================ +20:21:31 ============================================================================ +20:21:31 Slot Id : <111> +20:21:31 Transaction Type : RESPONSE +20:21:31 Received From : +20:21:31 ============================================================================ +20:21:31 FNo. Len. Field Value +20:21:31 ============================================================================ +20:21:31 [ 1] [ 4] [0210] +20:21:31 [ 2] [ 16] [1808930300016771] +20:21:31 [ 3] [ 6] [011000] +20:21:31 [ 4] [ 12] [000100000000] +20:21:31 [ 6] [ 12] [000100000000] +20:21:31 [ 7] [ 10] [0320202123] +20:21:31 [ 11] [ 6] [841839] +20:21:31 [ 12] [ 6] [202123] +20:21:31 [ 13] [ 4] [0320] +20:21:31 [ 18] [ 4] [6011] +20:21:31 [ 19] [ 3] [418] +20:21:31 [ 22] [ 3] [021] +20:21:31 [ 32] [ 6] [621354] +20:21:31 [ 35] [ 27] [1808930300016771=1803500009] +20:21:31 [ 37] [ 12] [507903640596] +20:21:31 [ 38] [ 6] [841839] +20:21:31 [ 39] [ 2] [00] +20:21:31 [ 41] [ 8] [16001700] +20:21:31 [ 49] [ 3] [418] +20:21:31 [ 52] [ 16] [955F6946A82D0EDD] +20:21:31 [ 54] [ 20] [1001418C000617468700] +20:21:31 ============================================================================ +20:21:31 Sending to : +20:21:31 ============================================================================ +20:21:31 + + +waiting on router queue for slot.... +20:21:33 ============================================================================ +20:21:33 Slot Id : <111> +20:21:33 Transaction Type : RESPONSE +20:21:33 Received From : +20:21:33 ============================================================================ +20:21:33 FNo. Len. Field Value +20:21:33 ============================================================================ +20:21:33 [ 1] [ 4] [0210] +20:21:33 [ 2] [ 16] [1808930300016771] +20:21:33 [ 3] [ 6] [011000] +20:21:33 [ 4] [ 12] [000100000000] +20:21:33 [ 6] [ 12] [000100000000] +20:21:33 [ 7] [ 10] [0320202123] +20:21:33 [ 11] [ 6] [841839] +20:21:33 [ 12] [ 6] [202123] +20:21:33 [ 13] [ 4] [0320] +20:21:33 [ 18] [ 4] [6011] +20:21:33 [ 19] [ 3] [418] +20:21:33 [ 22] [ 3] [021] +20:21:33 [ 32] [ 6] [621354] +20:21:33 [ 35] [ 27] [1808930300016771=1803500009] +20:21:33 [ 37] [ 12] [507903640596] +20:21:33 [ 38] [ 6] [841839] +20:21:33 [ 39] [ 2] [00] +20:21:33 [ 41] [ 8] [16001700] +20:21:33 [ 49] [ 3] [418] +20:21:33 [ 52] [ 16] [955F6946A82D0EDD] +20:21:33 [ 54] [ 20] [1001418C000617468700] +20:21:33 ============================================================================ +20:21:33 Calculate Source COMM Id = 0 +20:21:33 ============================================================================ +20:21:33 + + +waiting on router queue for slot.... +20:21:38 ============================================================================ +20:21:38 Slot Id : <80> +20:21:38 Transaction Type : REQUEST +20:21:38 Received From : +20:21:38 ============================================================================ +20:21:38 FNo. Len. Field Value +20:21:38 ============================================================================ +20:21:38 [ 1] [ 4] [0800] +20:21:38 [ 7] [ 10] [0320012046] +20:21:38 [ 11] [ 6] [158188] +20:21:38 [ 70] [ 3] [301] +20:21:38 ============================================================================ +20:21:38 + + +waiting on router queue for slot.... +20:21:38 Sending to : +20:21:38 ============================================================================ +20:21:38 ============================================================================ +20:21:38 Slot Id : <80> +20:21:38 Transaction Type : RESPONSE +20:21:38 Received From : +20:21:38 ============================================================================ +20:21:38 FNo. Len. Field Value +20:21:38 ============================================================================ +20:21:38 [ 1] [ 4] [0810] +20:21:38 [ 7] [ 10] [0320012046] +20:21:38 [ 11] [ 6] [158188] +20:21:38 [ 39] [ 2] [00] +20:21:38 [ 70] [ 3] [301] +20:21:38 ============================================================================ +20:21:38 Calculate Source COMM Id = 2 +20:21:38 ============================================================================ +20:21:38 + + +waiting on router queue for slot.... +20:21:54 ============================================================================ +20:21:54 Slot Id : <140> +20:21:54 Transaction Type : REQUEST +20:21:54 Received From : +20:21:54 ============================================================================ +20:21:54 FNo. Len. Field Value +20:21:54 ============================================================================ +20:21:54 [ 1] [ 4] [0800] +20:21:54 [ 7] [ 10] [0320012103] +20:21:54 [ 11] [ 6] [158189] +20:21:54 [ 70] [ 3] [301] +20:21:54 ============================================================================ +20:21:54 + + +waiting on router queue for slot.... +20:21:54 Sending to : +20:21:54 ============================================================================ +20:21:54 ============================================================================ +20:21:54 Slot Id : <140> +20:21:54 Transaction Type : RESPONSE +20:21:54 Received From : +20:21:54 ============================================================================ +20:21:54 FNo. Len. Field Value +20:21:54 ============================================================================ +20:21:54 [ 1] [ 4] [0810] +20:21:54 [ 7] [ 10] [0320012103] +20:21:54 [ 11] [ 6] [158189] +20:21:54 [ 39] [ 2] [00] +20:21:54 [ 70] [ 3] [301] +20:21:54 ============================================================================ +20:21:54 Calculate Source COMM Id = 2 +20:21:54 ============================================================================ +20:21:54 + + +waiting on router queue for slot.... +20:22:03 ============================================================================ +20:22:03 Slot Id : <147> +20:22:03 Transaction Type : REQUEST +20:22:03 Received From : +20:22:03 ============================================================================ +20:22:03 FNo. Len. Field Value +20:22:03 ============================================================================ +20:22:03 [ 1] [ 4] [0800] +20:22:03 [ 2] [ 5] [02531] +20:22:03 [ 3] [ 6] [579208] +20:22:03 [ 7] [ 10] [0320132203] +20:22:03 [ 11] [ 6] [807594] +20:22:03 [ 15] [ 10] [0320132203] +20:22:03 [ 37] [ 11] [57920807594] +20:22:03 [ 70] [ 3] [001] +20:22:03 ============================================================================ +20:22:03 + + +waiting on router queue for slot.... +20:22:03 ============================================================================ +20:22:03 Slot Id : <147> +20:22:03 Transaction Type : RESPONSE +20:22:03 Received From : +20:22:03 ============================================================================ +20:22:03 FNo. Len. Field Value +20:22:03 ============================================================================ +20:22:03 [ 1] [ 4] [0810] +20:22:03 [ 7] [ 10] [0320132203] +20:22:03 [ 11] [ 6] [807594] +20:22:03 [ 15] [ 4] [0320] +20:22:03 [ 37] [ 12] [57920807594] +20:22:03 [ 39] [ 2] [00] +20:22:03 [ 70] [ 3] [001] +20:22:03 ============================================================================ +20:22:03 Sending to : +20:22:03 ============================================================================ +20:22:03 + + +waiting on router queue for slot.... +20:22:05 ============================================================================ +20:22:05 Slot Id : <123> +20:22:05 Transaction Type : REQUEST +20:22:05 Received From : +20:22:05 ============================================================================ +20:22:05 FNo. Len. Field Value +20:22:05 ============================================================================ +20:22:05 [ 1] [ 4] [0800] +20:22:05 [ 7] [ 10] [0320012114] +20:22:05 [ 11] [ 6] [158190] +20:22:05 [ 70] [ 3] [301] +20:22:05 ============================================================================ +20:22:05 + + +waiting on router queue for slot.... +20:22:05 Sending to : +20:22:05 ============================================================================ +20:22:05 ============================================================================ +20:22:05 Slot Id : <123> +20:22:05 Transaction Type : RESPONSE +20:22:05 Received From : +20:22:05 ============================================================================ +20:22:05 FNo. Len. Field Value +20:22:05 ============================================================================ +20:22:05 [ 1] [ 4] [0810] +20:22:05 [ 7] [ 10] [0320012114] +20:22:05 [ 11] [ 6] [158190] +20:22:05 [ 39] [ 2] [00] +20:22:05 [ 70] [ 3] [301] +20:22:05 ============================================================================ +20:22:05 Calculate Source COMM Id = 2 +20:22:05 ============================================================================ +20:22:05 + + +waiting on router queue for slot.... +20:22:11 ============================================================================ +20:22:11 Slot Id : <117> +20:22:11 Transaction Type : REQUEST +20:22:11 Received From : +20:22:11 ============================================================================ +20:22:11 FNo. Len. Field Value +20:22:11 ============================================================================ +20:22:11 [ 1] [ 4] [0800] +20:22:11 [ 7] [ 10] [0321033400] +20:22:11 [ 11] [ 6] [203400] +20:22:11 [ 37] [ 12] [57920203400] +20:22:11 [ 70] [ 3] [301] +20:22:11 ============================================================================ +20:22:11 + + +waiting on router queue for slot.... +20:22:11 Sending to : +20:22:11 ============================================================================ +20:22:11 ============================================================================ +20:22:11 Slot Id : <117> +20:22:11 Transaction Type : RESPONSE +20:22:11 Received From : +20:22:11 ============================================================================ +20:22:11 FNo. Len. Field Value +20:22:11 ============================================================================ +20:22:11 [ 1] [ 4] [0810] +20:22:11 [ 7] [ 10] [0321033400] +20:22:11 [ 11] [ 6] [203400] +20:22:11 [ 37] [ 12] [579202034000] +20:22:11 [ 39] [ 2] [00] +20:22:11 [ 70] [ 3] [810] +20:22:11 ============================================================================ +20:22:11 Calculate Source COMM Id = 6 +20:22:11 ============================================================================ +20:22:11 + + +waiting on router queue for slot.... +20:22:22 ============================================================================ +20:22:22 Slot Id : <132> +20:22:22 Transaction Type : REQUEST +20:22:22 Received From : +20:22:22 ============================================================================ +20:22:22 FNo. Len. Field Value +20:22:22 ============================================================================ +20:22:22 [ 1] [ 4] [0800] +20:22:22 [ 7] [ 10] [0320012130] +20:22:22 [ 11] [ 6] [158191] +20:22:22 [ 70] [ 3] [301] +20:22:22 ============================================================================ +20:22:22 + + +waiting on router queue for slot.... +20:22:22 Sending to : +20:22:22 ============================================================================ +20:22:22 ============================================================================ +20:22:22 Slot Id : <132> +20:22:22 Transaction Type : RESPONSE +20:22:22 Received From : +20:22:22 ============================================================================ +20:22:22 FNo. Len. Field Value +20:22:22 ============================================================================ +20:22:22 [ 1] [ 4] [0810] +20:22:22 [ 7] [ 10] [0320012130] +20:22:22 [ 11] [ 6] [158191] +20:22:22 [ 39] [ 2] [00] +20:22:22 [ 70] [ 3] [301] +20:22:22 ============================================================================ +20:22:22 Calculate Source COMM Id = 2 +20:22:22 ============================================================================ +20:22:22 + + +waiting on router queue for slot.... +20:22:33 ============================================================================ +20:22:33 Slot Id : <161> +20:22:33 Transaction Type : REQUEST +20:22:33 Received From : +20:22:33 ============================================================================ +20:22:33 FNo. Len. Field Value +20:22:33 ============================================================================ +20:22:33 [ 1] [ 4] [0800] +20:22:33 [ 7] [ 10] [0320012141] +20:22:33 [ 11] [ 6] [158192] +20:22:33 [ 70] [ 3] [301] +20:22:33 ============================================================================ +20:22:33 + + +waiting on router queue for slot.... +20:22:33 Sending to : +20:22:33 ============================================================================ +20:22:33 ============================================================================ +20:22:33 Slot Id : <161> +20:22:33 Transaction Type : RESPONSE +20:22:33 Received From : +20:22:33 ============================================================================ +20:22:33 FNo. Len. Field Value +20:22:33 ============================================================================ +20:22:33 [ 1] [ 4] [0810] +20:22:33 [ 7] [ 10] [0320012141] +20:22:33 [ 11] [ 6] [158192] +20:22:33 [ 39] [ 2] [00] +20:22:33 [ 70] [ 3] [301] +20:22:33 ============================================================================ +20:22:33 Calculate Source COMM Id = 2 +20:22:33 ============================================================================ +20:22:33 + + +waiting on router queue for slot.... +20:22:42 ============================================================================ +20:22:42 Slot Id : <122> +20:22:42 Transaction Type : REQUEST +20:22:42 Received From : +20:22:42 ============================================================================ +20:22:42 FNo. Len. Field Value +20:22:42 ============================================================================ +20:22:42 [ 1] [ 4] [0200] +20:22:42 [ 2] [ 16] [1808930100004407] +20:22:42 [ 3] [ 6] [012000] +20:22:42 [ 4] [ 12] [000010000000] +20:22:42 [ 7] [ 10] [0320202239] +20:22:42 [ 11] [ 6] [841967] +20:22:42 [ 12] [ 6] [202239] +20:22:42 [ 13] [ 4] [0320] +20:22:42 [ 15] [ 4] [0320] +20:22:42 [ 18] [ 4] [6011] +20:22:42 [ 22] [ 3] [900] +20:22:42 [ 25] [ 2] [02] +20:22:42 [ 28] [ 9] [D00002000] +20:22:42 [ 32] [ 6] [621354] +20:22:42 [ 35] [ 27] [1808930100004407=1803500553] +20:22:42 [ 37] [ 12] [507903613605] +20:22:42 [ 41] [ 8] [16001400] +20:22:42 [ 42] [ 15] [NATIVE ] +20:22:42 [ 43] [ 40] [NOUL Xaythany LAO] +20:22:42 [ 49] [ 3] [418] +20:22:42 [ 52] [ 16] [A0585B80C7A04112] +20:22:42 ============================================================================ +20:22:42 + + +waiting on router queue for slot.... +20:22:42 Sending to : +20:22:42 ============================================================================ +20:22:42 Sending to : +20:22:42 ============================================================================ +20:22:42 ============================================================================ +20:22:42 Slot Id : <122> +20:22:42 Transaction Type : REQUEST +20:22:42 Received From : +20:22:42 ============================================================================ +20:22:42 FNo. Len. Field Value +20:22:42 ============================================================================ +20:22:42 [ 1] [ 4] [0200] +20:22:42 [ 2] [ 16] [1808930100004407] +20:22:42 [ 3] [ 6] [012000] +20:22:42 [ 4] [ 12] [000010000000] +20:22:42 [ 7] [ 10] [0320202239] +20:22:42 [ 11] [ 6] [841967] +20:22:42 [ 12] [ 6] [202239] +20:22:42 [ 13] [ 4] [0320] +20:22:42 [ 15] [ 4] [0320] +20:22:42 [ 18] [ 4] [6011] +20:22:42 [ 22] [ 3] [900] +20:22:42 [ 25] [ 2] [02] +20:22:42 [ 28] [ 9] [D00002000] +20:22:42 [ 32] [ 6] [621354] +20:22:42 [ 35] [ 27] [1808930100004407=1803500553] +20:22:42 [ 37] [ 12] [507903613605] +20:22:42 [ 41] [ 8] [16001400] +20:22:42 [ 42] [ 15] [NATIVE ] +20:22:42 [ 43] [ 40] [NOUL Xaythany LAO] +20:22:42 [ 49] [ 3] [418] +20:22:42 [ 52] [ 16] [A0585B80C7A04112] +20:22:42 ============================================================================ +20:22:42 + + +waiting on router queue for slot.... +20:22:42 Sending to : +20:22:42 ============================================================================ +20:22:42 ============================================================================ +20:22:42 Slot Id : <122> +20:22:42 Transaction Type : REQUEST +20:22:42 Received From : +20:22:42 ============================================================================ +20:22:42 FNo. Len. Field Value +20:22:42 ============================================================================ +20:22:42 [ 1] [ 4] [0200] +20:22:42 [ 2] [ 16] [1808930100004407] +20:22:42 [ 3] [ 6] [012000] +20:22:42 [ 4] [ 12] [000010000000] +20:22:42 [ 7] [ 10] [0320202239] +20:22:42 [ 11] [ 6] [841967] +20:22:42 [ 12] [ 6] [202239] +20:22:42 [ 13] [ 4] [0320] +20:22:42 [ 15] [ 4] [0320] +20:22:42 [ 18] [ 4] [6011] +20:22:42 [ 22] [ 3] [900] +20:22:42 [ 25] [ 2] [02] +20:22:42 [ 28] [ 9] [D00002000] +20:22:42 [ 32] [ 6] [621354] +20:22:42 [ 35] [ 27] [1808930100004407=1803500553] +20:22:42 [ 37] [ 12] [507903613605] +20:22:42 [ 41] [ 8] [16001400] +20:22:42 [ 42] [ 15] [NATIVE ] +20:22:42 [ 43] [ 40] [NOUL Xaythany LAO] +20:22:42 [ 49] [ 3] [418] +20:22:42 [ 52] [ 16] [7F8B3A0E771285B8] +20:22:42 ============================================================================ +20:22:42 + + +waiting on router queue for slot.... +20:22:42 Sending to : <2> +20:22:42 ============================================================================ +20:22:43 ============================================================================ +20:22:43 Slot Id : <122> +20:22:43 Transaction Type : RESPONSE +20:22:43 Received From : +20:22:43 ============================================================================ +20:22:43 FNo. Len. Field Value +20:22:43 ============================================================================ +20:22:43 [ 1] [ 4] [0210] +20:22:43 [ 2] [ 16] [1808930100004407] +20:22:43 [ 3] [ 6] [012000] +20:22:43 [ 4] [ 12] [000010000000] +20:22:43 [ 7] [ 10] [0320202239] +20:22:43 [ 11] [ 6] [841967] +20:22:43 [ 12] [ 6] [202239] +20:22:43 [ 13] [ 4] [0320] +20:22:43 [ 18] [ 4] [6011] +20:22:43 [ 19] [ 3] [418] +20:22:43 [ 22] [ 3] [021] +20:22:43 [ 28] [ 9] [D00002000] +20:22:43 [ 32] [ 6] [621354] +20:22:43 [ 35] [ 27] [1808930100004407=1803500553] +20:22:43 [ 37] [ 12] [507903613605] +20:22:43 [ 39] [ 2] [42] +20:22:43 [ 41] [ 8] [16001400] +20:22:43 [ 49] [ 3] [418] +20:22:43 [ 52] [ 16] [7F8B3A0E771285B8] +20:22:43 ============================================================================ +20:22:43 Sending to : +20:22:43 ============================================================================ +20:22:43 + + +waiting on router queue for slot.... +20:22:45 ============================================================================ +20:22:45 Slot Id : <122> +20:22:45 Transaction Type : RESPONSE +20:22:45 Received From : +20:22:45 ============================================================================ +20:22:45 FNo. Len. Field Value +20:22:45 ============================================================================ +20:22:45 [ 1] [ 4] [0210] +20:22:45 [ 2] [ 16] [1808930100004407] +20:22:45 [ 3] [ 6] [012000] +20:22:45 [ 4] [ 12] [000010000000] +20:22:45 [ 7] [ 10] [0320202239] +20:22:45 [ 11] [ 6] [841967] +20:22:45 [ 12] [ 6] [202239] +20:22:45 [ 13] [ 4] [0320] +20:22:45 [ 18] [ 4] [6011] +20:22:45 [ 19] [ 3] [418] +20:22:45 [ 22] [ 3] [021] +20:22:45 [ 28] [ 9] [D00002000] +20:22:45 [ 32] [ 6] [621354] +20:22:45 [ 35] [ 27] [1808930100004407=1803500553] +20:22:45 [ 37] [ 12] [507903613605] +20:22:45 [ 39] [ 2] [42] +20:22:45 [ 41] [ 8] [16001400] +20:22:45 [ 49] [ 3] [418] +20:22:45 [ 52] [ 16] [7F8B3A0E771285B8] +20:22:45 ============================================================================ +20:22:45 Calculate Source COMM Id = 0 +20:22:45 ============================================================================ +20:22:45 + + +waiting on router queue for slot.... +20:22:55 ============================================================================ +20:22:55 Slot Id : <162> +20:22:55 Transaction Type : REQUEST +20:22:55 Received From : +20:22:55 ============================================================================ +20:22:55 FNo. Len. Field Value +20:22:55 ============================================================================ +20:22:55 [ 1] [ 4] [0800] +20:22:55 [ 7] [ 10] [0320012203] +20:22:55 [ 11] [ 6] [158193] +20:22:55 [ 70] [ 3] [301] +20:22:55 ============================================================================ +20:22:55 + + +waiting on router queue for slot.... +20:22:55 Sending to : +20:22:55 ============================================================================ +20:22:55 ============================================================================ +20:22:55 Slot Id : <162> +20:22:55 Transaction Type : RESPONSE +20:22:55 Received From : +20:22:55 ============================================================================ +20:22:55 FNo. Len. Field Value +20:22:55 ============================================================================ +20:22:55 [ 1] [ 4] [0810] +20:22:55 [ 7] [ 10] [0320012203] +20:22:55 [ 11] [ 6] [158193] +20:22:55 [ 39] [ 2] [00] +20:22:55 [ 70] [ 3] [301] +20:22:55 ============================================================================ +20:22:55 Calculate Source COMM Id = 2 +20:22:55 ============================================================================ +20:22:55 + + +waiting on router queue for slot.... +20:23:05 ============================================================================ +20:23:05 Slot Id : <166> +20:23:05 Transaction Type : REQUEST +20:23:05 Received From : +20:23:05 ============================================================================ +20:23:05 FNo. Len. Field Value +20:23:05 ============================================================================ +20:23:05 [ 1] [ 4] [0800] +20:23:05 [ 2] [ 5] [02531] +20:23:05 [ 3] [ 6] [579208] +20:23:05 [ 7] [ 10] [0320132305] +20:23:05 [ 11] [ 6] [807595] +20:23:05 [ 15] [ 10] [0320132305] +20:23:05 [ 37] [ 11] [57920807595] +20:23:05 [ 70] [ 3] [001] +20:23:05 ============================================================================ +20:23:05 + + +waiting on router queue for slot.... +20:23:05 ============================================================================ +20:23:05 Slot Id : <166> +20:23:05 Transaction Type : RESPONSE +20:23:05 Received From : +20:23:05 ============================================================================ +20:23:05 FNo. Len. Field Value +20:23:05 ============================================================================ +20:23:05 [ 1] [ 4] [0810] +20:23:05 [ 7] [ 10] [0320132305] +20:23:05 [ 11] [ 6] [807595] +20:23:05 [ 15] [ 4] [0320] +20:23:05 [ 37] [ 12] [57920807595] +20:23:05 [ 39] [ 2] [00] +20:23:05 [ 70] [ 3] [001] +20:23:05 ============================================================================ +20:23:05 Sending to : +20:23:05 ============================================================================ +20:23:05 + + +waiting on router queue for slot.... +20:23:06 ============================================================================ +20:23:06 Slot Id : <143> +20:23:06 Transaction Type : REQUEST +20:23:06 Received From : +20:23:06 ============================================================================ +20:23:06 FNo. Len. Field Value +20:23:06 ============================================================================ +20:23:06 [ 1] [ 4] [0800] +20:23:06 [ 7] [ 10] [0320012214] +20:23:06 [ 11] [ 6] [158194] +20:23:06 [ 70] [ 3] [301] +20:23:06 ============================================================================ +20:23:06 + + +waiting on router queue for slot.... +20:23:06 Sending to : +20:23:06 ============================================================================ +20:23:06 ============================================================================ +20:23:06 Slot Id : <143> +20:23:06 Transaction Type : RESPONSE +20:23:06 Received From : +20:23:06 ============================================================================ +20:23:06 FNo. Len. Field Value +20:23:06 ============================================================================ +20:23:06 [ 1] [ 4] [0810] +20:23:06 [ 7] [ 10] [0320012214] +20:23:06 [ 11] [ 6] [158194] +20:23:06 [ 39] [ 2] [00] +20:23:06 [ 70] [ 3] [301] +20:23:06 ============================================================================ +20:23:06 Calculate Source COMM Id = 2 +20:23:06 ============================================================================ +20:23:06 + + +waiting on router queue for slot.... +20:23:16 ============================================================================ +20:23:16 Slot Id : <154> +20:23:16 Transaction Type : REQUEST +20:23:16 Received From : +20:23:16 ============================================================================ +20:23:16 FNo. Len. Field Value +20:23:16 ============================================================================ +20:23:16 [ 1] [ 4] [0800] +20:23:16 [ 7] [ 10] [0321033505] +20:23:16 [ 11] [ 6] [203505] +20:23:16 [ 37] [ 12] [57920203505] +20:23:16 [ 70] [ 3] [301] +20:23:16 ============================================================================ +20:23:16 + + +waiting on router queue for slot.... +20:23:16 Sending to : +20:23:16 ============================================================================ +20:23:16 ============================================================================ +20:23:16 Slot Id : <154> +20:23:16 Transaction Type : RESPONSE +20:23:16 Received From : +20:23:16 ============================================================================ +20:23:16 FNo. Len. Field Value +20:23:16 ============================================================================ +20:23:16 [ 1] [ 4] [0810] +20:23:16 [ 7] [ 10] [0321033505] +20:23:16 [ 11] [ 6] [203505] +20:23:16 [ 37] [ 12] [579202035050] +20:23:16 [ 39] [ 2] [00] +20:23:16 [ 70] [ 3] [810] +20:23:16 ============================================================================ +20:23:16 Calculate Source COMM Id = 6 +20:23:16 ============================================================================ +20:23:16 + + +waiting on router queue for slot.... +20:23:16 ============================================================================ +20:23:16 Slot Id : <145> +20:23:16 Transaction Type : REQUEST +20:23:16 Received From : +20:23:16 ============================================================================ +20:23:16 FNo. Len. Field Value +20:23:16 ============================================================================ +20:23:16 [ 1] [ 4] [0800] +20:23:16 [ 7] [ 10] [0320012225] +20:23:16 [ 11] [ 6] [158195] +20:23:16 [ 70] [ 3] [301] +20:23:16 ============================================================================ +20:23:16 + + +waiting on router queue for slot.... +20:23:16 Sending to : +20:23:16 ============================================================================ +20:23:16 ============================================================================ +20:23:16 Slot Id : <145> +20:23:16 Transaction Type : RESPONSE +20:23:16 Received From : +20:23:16 ============================================================================ +20:23:16 FNo. Len. Field Value +20:23:16 ============================================================================ +20:23:16 [ 1] [ 4] [0810] +20:23:16 [ 7] [ 10] [0320012225] +20:23:16 [ 11] [ 6] [158195] +20:23:16 [ 39] [ 2] [00] +20:23:16 [ 70] [ 3] [301] +20:23:16 ============================================================================ +20:23:16 Calculate Source COMM Id = 2 +20:23:16 ============================================================================ +20:23:16 + + +waiting on router queue for slot.... +20:23:27 ============================================================================ +20:23:27 Slot Id : <153> +20:23:27 Transaction Type : REQUEST +20:23:27 Received From : +20:23:27 ============================================================================ +20:23:27 FNo. Len. Field Value +20:23:27 ============================================================================ +20:23:27 [ 1] [ 4] [0800] +20:23:27 [ 7] [ 10] [0320012236] +20:23:27 [ 11] [ 6] [158196] +20:23:27 [ 70] [ 3] [301] +20:23:27 ============================================================================ +20:23:27 + + +waiting on router queue for slot.... +20:23:27 Sending to : +20:23:27 ============================================================================ +20:23:27 ============================================================================ +20:23:27 Slot Id : <153> +20:23:27 Transaction Type : RESPONSE +20:23:27 Received From : +20:23:27 ============================================================================ +20:23:27 FNo. Len. Field Value +20:23:27 ============================================================================ +20:23:27 [ 1] [ 4] [0810] +20:23:27 [ 7] [ 10] [0320012236] +20:23:27 [ 11] [ 6] [158196] +20:23:27 [ 39] [ 2] [00] +20:23:27 [ 70] [ 3] [301] +20:23:27 ============================================================================ +20:23:27 Calculate Source COMM Id = 2 +20:23:27 ============================================================================ +20:23:27 + + +waiting on router queue for slot.... +20:23:38 ============================================================================ +20:23:38 Slot Id : <120> +20:23:38 Transaction Type : REQUEST +20:23:38 Received From : +20:23:38 ============================================================================ +20:23:38 FNo. Len. Field Value +20:23:38 ============================================================================ +20:23:38 [ 1] [ 4] [0800] +20:23:38 [ 7] [ 10] [0320012247] +20:23:38 [ 11] [ 6] [158197] +20:23:38 [ 70] [ 3] [301] +20:23:38 ============================================================================ +20:23:38 + + +waiting on router queue for slot.... +20:23:38 Sending to : +20:23:38 ============================================================================ +20:23:38 ============================================================================ +20:23:38 Slot Id : <120> +20:23:38 Transaction Type : RESPONSE +20:23:38 Received From : +20:23:38 ============================================================================ +20:23:38 FNo. Len. Field Value +20:23:38 ============================================================================ +20:23:38 [ 1] [ 4] [0810] +20:23:38 [ 7] [ 10] [0320012247] +20:23:38 [ 11] [ 6] [158197] +20:23:38 [ 39] [ 2] [00] +20:23:38 [ 70] [ 3] [301] +20:23:38 ============================================================================ +20:23:38 Calculate Source COMM Id = 2 +20:23:38 ============================================================================ +20:23:38 + + +waiting on router queue for slot.... +20:23:39 ============================================================================ +20:23:39 Slot Id : <150> +20:23:39 Transaction Type : REQUEST +20:23:39 Received From : +20:23:39 ============================================================================ +20:23:39 FNo. Len. Field Value +20:23:39 ============================================================================ +20:23:39 [ 1] [ 4] [0200] +20:23:39 [ 2] [ 16] [1808930100004407] +20:23:39 [ 3] [ 6] [011000] +20:23:39 [ 4] [ 12] [000010000000] +20:23:39 [ 7] [ 10] [0320202335] +20:23:39 [ 11] [ 6] [842049] +20:23:39 [ 12] [ 6] [202335] +20:23:39 [ 13] [ 4] [0320] +20:23:39 [ 15] [ 4] [0320] +20:23:39 [ 18] [ 4] [6011] +20:23:39 [ 22] [ 3] [900] +20:23:39 [ 25] [ 2] [02] +20:23:39 [ 28] [ 9] [D00002000] +20:23:39 [ 32] [ 6] [621354] +20:23:39 [ 35] [ 27] [1808930100004407=1803500553] +20:23:39 [ 37] [ 12] [507903613607] +20:23:39 [ 41] [ 8] [16001400] +20:23:39 [ 42] [ 15] [NATIVE ] +20:23:39 [ 43] [ 40] [NOUL Xaythany LAO] +20:23:39 [ 49] [ 3] [418] +20:23:39 [ 52] [ 16] [5B68F1EEE6EF53A9] +20:23:39 ============================================================================ +20:23:39 + + +waiting on router queue for slot.... +20:23:39 Sending to : +20:23:39 ============================================================================ +20:23:39 Sending to : +20:23:39 ============================================================================ +20:23:39 ============================================================================ +20:23:39 Slot Id : <150> +20:23:39 Transaction Type : REQUEST +20:23:39 Received From : +20:23:39 ============================================================================ +20:23:39 FNo. Len. Field Value +20:23:39 ============================================================================ +20:23:39 [ 1] [ 4] [0200] +20:23:39 [ 2] [ 16] [1808930100004407] +20:23:39 [ 3] [ 6] [011000] +20:23:39 [ 4] [ 12] [000010000000] +20:23:39 [ 7] [ 10] [0320202335] +20:23:39 [ 11] [ 6] [842049] +20:23:39 [ 12] [ 6] [202335] +20:23:39 [ 13] [ 4] [0320] +20:23:39 [ 15] [ 4] [0320] +20:23:39 [ 18] [ 4] [6011] +20:23:39 [ 22] [ 3] [900] +20:23:39 [ 25] [ 2] [02] +20:23:39 [ 28] [ 9] [D00002000] +20:23:39 [ 32] [ 6] [621354] +20:23:39 [ 35] [ 27] [1808930100004407=1803500553] +20:23:39 [ 37] [ 12] [507903613607] +20:23:39 [ 41] [ 8] [16001400] +20:23:39 [ 42] [ 15] [NATIVE ] +20:23:39 [ 43] [ 40] [NOUL Xaythany LAO] +20:23:39 [ 49] [ 3] [418] +20:23:39 [ 52] [ 16] [5B68F1EEE6EF53A9] +20:23:39 ============================================================================ +20:23:39 + + +waiting on router queue for slot.... +20:23:39 Sending to : +20:23:39 ============================================================================ +20:23:39 ============================================================================ +20:23:39 Slot Id : <150> +20:23:39 Transaction Type : REQUEST +20:23:39 Received From : +20:23:39 ============================================================================ +20:23:39 FNo. Len. Field Value +20:23:39 ============================================================================ +20:23:39 [ 1] [ 4] [0200] +20:23:39 [ 2] [ 16] [1808930100004407] +20:23:39 [ 3] [ 6] [011000] +20:23:39 [ 4] [ 12] [000010000000] +20:23:39 [ 7] [ 10] [0320202335] +20:23:39 [ 11] [ 6] [842049] +20:23:39 [ 12] [ 6] [202335] +20:23:39 [ 13] [ 4] [0320] +20:23:39 [ 15] [ 4] [0320] +20:23:39 [ 18] [ 4] [6011] +20:23:39 [ 22] [ 3] [900] +20:23:39 [ 25] [ 2] [02] +20:23:39 [ 28] [ 9] [D00002000] +20:23:39 [ 32] [ 6] [621354] +20:23:39 [ 35] [ 27] [1808930100004407=1803500553] +20:23:39 [ 37] [ 12] [507903613607] +20:23:39 [ 41] [ 8] [16001400] +20:23:39 [ 42] [ 15] [NATIVE ] +20:23:39 [ 43] [ 40] [NOUL Xaythany LAO] +20:23:39 [ 49] [ 3] [418] +20:23:39 [ 52] [ 16] [DD6B2CC9454E9586] +20:23:39 ============================================================================ +20:23:39 + + +waiting on router queue for slot.... +20:23:39 Sending to : <2> +20:23:39 ============================================================================ +20:23:42 ============================================================================ +20:23:42 Slot Id : <150> +20:23:42 Transaction Type : RESPONSE +20:23:42 Received From : +20:23:42 ============================================================================ +20:23:42 FNo. Len. Field Value +20:23:42 ============================================================================ +20:23:42 [ 1] [ 4] [0210] +20:23:42 [ 2] [ 16] [1808930100004407] +20:23:42 [ 3] [ 6] [011000] +20:23:42 [ 4] [ 12] [000010000000] +20:23:42 [ 6] [ 12] [000010000000] +20:23:42 [ 7] [ 10] [0320202335] +20:23:42 [ 11] [ 6] [842049] +20:23:42 [ 12] [ 6] [202335] +20:23:42 [ 13] [ 4] [0320] +20:23:42 [ 18] [ 4] [6011] +20:23:42 [ 19] [ 3] [418] +20:23:42 [ 22] [ 3] [021] +20:23:42 [ 28] [ 9] [D00002000] +20:23:42 [ 32] [ 6] [621354] +20:23:42 [ 35] [ 27] [1808930100004407=1803500553] +20:23:42 [ 37] [ 12] [507903613607] +20:23:42 [ 39] [ 2] [55] +20:23:42 [ 41] [ 8] [16001400] +20:23:42 [ 49] [ 3] [418] +20:23:42 [ 51] [ 3] [418] +20:23:42 [ 52] [ 16] [DD6B2CC9454E9586] +20:23:42 ============================================================================ +20:23:42 Sending to : +20:23:42 ============================================================================ +20:23:42 + + +waiting on router queue for slot.... +20:23:43 ============================================================================ +20:23:43 Slot Id : <150> +20:23:43 Transaction Type : RESPONSE +20:23:43 Received From : +20:23:43 ============================================================================ +20:23:43 FNo. Len. Field Value +20:23:43 ============================================================================ +20:23:43 [ 1] [ 4] [0210] +20:23:43 [ 2] [ 16] [1808930100004407] +20:23:43 [ 3] [ 6] [011000] +20:23:43 [ 4] [ 12] [000010000000] +20:23:43 [ 6] [ 12] [000010000000] +20:23:43 [ 7] [ 10] [0320202335] +20:23:43 [ 11] [ 6] [842049] +20:23:43 [ 12] [ 6] [202335] +20:23:43 [ 13] [ 4] [0320] +20:23:43 [ 18] [ 4] [6011] +20:23:43 [ 19] [ 3] [418] +20:23:43 [ 22] [ 3] [021] +20:23:43 [ 28] [ 9] [D00002000] +20:23:43 [ 32] [ 6] [621354] +20:23:43 [ 35] [ 27] [1808930100004407=1803500553] +20:23:43 [ 37] [ 12] [507903613607] +20:23:43 [ 39] [ 2] [55] +20:23:43 [ 41] [ 8] [16001400] +20:23:43 [ 49] [ 3] [418] +20:23:43 [ 51] [ 3] [418] +20:23:43 [ 52] [ 16] [DD6B2CC9454E9586] +20:23:43 ============================================================================ +20:23:43 Calculate Source COMM Id = 0 +20:23:43 ============================================================================ +20:23:43 + + +waiting on router queue for slot.... +20:23:47 ============================================================================ +20:23:47 Slot Id : <110> +20:23:47 Transaction Type : REQUEST +20:23:47 Received From : +20:23:47 ============================================================================ +20:23:47 FNo. Len. Field Value +20:23:47 ============================================================================ +20:23:47 [ 1] [ 4] [0800] +20:23:47 [ 7] [ 10] [0320202334] +20:23:47 [ 11] [ 6] [038040] +20:23:47 [ 37] [ 12] [507920038040] +20:23:47 [ 70] [ 3] [ ] +20:23:47 ============================================================================ +20:23:47 + + +waiting on router queue for slot.... +20:23:47 Sending to : +20:23:47 ============================================================================ +20:23:47 ============================================================================ +20:23:47 Slot Id : <110> +20:23:47 Transaction Type : RESPONSE +20:23:47 Received From : +20:23:47 ============================================================================ +20:23:47 FNo. Len. Field Value +20:23:47 ============================================================================ +20:23:47 [ 1] [ 4] [0810] +20:23:47 [ 7] [ 10] [0320202334] +20:23:47 [ 11] [ 6] [038040] +20:23:47 [ 37] [ 12] [507920038040] +20:23:47 [ 39] [ 2] [91] +20:23:47 [ 70] [ 3] [ ] +20:23:47 ============================================================================ +20:23:47 Calculate Source COMM Id = 3 +20:23:47 ============================================================================ +20:23:47 + + +waiting on router queue for slot.... +20:23:53 ============================================================================ +20:23:53 Slot Id : <133> +20:23:53 Transaction Type : REQUEST +20:23:53 Received From : +20:23:53 ============================================================================ +20:23:53 FNo. Len. Field Value +20:23:53 ============================================================================ +20:23:53 [ 1] [ 4] [0800] +20:23:53 [ 7] [ 10] [0320012302] +20:23:53 [ 11] [ 6] [158198] +20:23:53 [ 70] [ 3] [301] +20:23:53 ============================================================================ +20:23:53 + + +waiting on router queue for slot.... +20:23:53 Sending to : +20:23:53 ============================================================================ +20:23:53 ============================================================================ +20:23:53 Slot Id : <133> +20:23:53 Transaction Type : RESPONSE +20:23:53 Received From : +20:23:53 ============================================================================ +20:23:53 FNo. Len. Field Value +20:23:53 ============================================================================ +20:23:53 [ 1] [ 4] [0810] +20:23:53 [ 7] [ 10] [0320012302] +20:23:53 [ 11] [ 6] [158198] +20:23:53 [ 39] [ 2] [00] +20:23:53 [ 70] [ 3] [301] +20:23:53 ============================================================================ +20:23:53 Calculate Source COMM Id = 2 +20:23:53 ============================================================================ +20:23:53 + + +waiting on router queue for slot.... +20:23:59 ============================================================================ +20:23:59 Slot Id : <159> +20:23:59 Transaction Type : REQUEST +20:23:59 Received From : +20:23:59 ============================================================================ +20:23:59 FNo. Len. Field Value +20:23:59 ============================================================================ +20:23:59 [ 1] [ 4] [0200] +20:23:59 [ 2] [ 16] [1808930100004407] +20:23:59 [ 3] [ 6] [011000] +20:23:59 [ 4] [ 12] [000010000000] +20:23:59 [ 7] [ 10] [0320202356] +20:23:59 [ 11] [ 6] [842084] +20:23:59 [ 12] [ 6] [202356] +20:23:59 [ 13] [ 4] [0320] +20:23:59 [ 15] [ 4] [0320] +20:23:59 [ 18] [ 4] [6011] +20:23:59 [ 22] [ 3] [900] +20:23:59 [ 25] [ 2] [02] +20:23:59 [ 28] [ 9] [D00002000] +20:23:59 [ 32] [ 6] [621354] +20:23:59 [ 35] [ 27] [1808930100004407=1803500553] +20:23:59 [ 37] [ 12] [507903613609] +20:23:59 [ 41] [ 8] [16001400] +20:23:59 [ 42] [ 15] [NATIVE ] +20:23:59 [ 43] [ 40] [NOUL Xaythany LAO] +20:23:59 [ 49] [ 3] [418] +20:23:59 [ 52] [ 16] [A0585B80C7A04112] +20:23:59 ============================================================================ +20:23:59 + + +waiting on router queue for slot.... +20:23:59 Sending to : +20:23:59 ============================================================================ +20:23:59 Sending to : +20:23:59 ============================================================================ +20:24:00 ============================================================================ +20:24:00 Slot Id : <159> +20:24:00 Transaction Type : REQUEST +20:24:00 Received From : +20:24:00 ============================================================================ +20:24:00 FNo. Len. Field Value +20:24:00 ============================================================================ +20:24:00 [ 1] [ 4] [0200] +20:24:00 [ 2] [ 16] [1808930100004407] +20:24:00 [ 3] [ 6] [011000] +20:24:00 [ 4] [ 12] [000010000000] +20:24:00 [ 7] [ 10] [0320202356] +20:24:00 [ 11] [ 6] [842084] +20:24:00 [ 12] [ 6] [202356] +20:24:00 [ 13] [ 4] [0320] +20:24:00 [ 15] [ 4] [0320] +20:24:00 [ 18] [ 4] [6011] +20:24:00 [ 22] [ 3] [900] +20:24:00 [ 25] [ 2] [02] +20:24:00 [ 28] [ 9] [D00002000] +20:24:00 [ 32] [ 6] [621354] +20:24:00 [ 35] [ 27] [1808930100004407=1803500553] +20:24:00 [ 37] [ 12] [507903613609] +20:24:00 [ 41] [ 8] [16001400] +20:24:00 [ 42] [ 15] [NATIVE ] +20:24:00 [ 43] [ 40] [NOUL Xaythany LAO] +20:24:00 [ 49] [ 3] [418] +20:24:00 [ 52] [ 16] [A0585B80C7A04112] +20:24:00 ============================================================================ +20:24:00 + + +waiting on router queue for slot.... +20:24:00 Sending to : +20:24:00 ============================================================================ +20:24:00 ============================================================================ +20:24:00 Slot Id : <159> +20:24:00 Transaction Type : REQUEST +20:24:00 Received From : +20:24:00 ============================================================================ +20:24:00 FNo. Len. Field Value +20:24:00 ============================================================================ +20:24:00 [ 1] [ 4] [0200] +20:24:00 [ 2] [ 16] [1808930100004407] +20:24:00 [ 3] [ 6] [011000] +20:24:00 [ 4] [ 12] [000010000000] +20:24:00 [ 7] [ 10] [0320202356] +20:24:00 [ 11] [ 6] [842084] +20:24:00 [ 12] [ 6] [202356] +20:24:00 [ 13] [ 4] [0320] +20:24:00 [ 15] [ 4] [0320] +20:24:00 [ 18] [ 4] [6011] +20:24:00 [ 22] [ 3] [900] +20:24:00 [ 25] [ 2] [02] +20:24:00 [ 28] [ 9] [D00002000] +20:24:00 [ 32] [ 6] [621354] +20:24:00 [ 35] [ 27] [1808930100004407=1803500553] +20:24:00 [ 37] [ 12] [507903613609] +20:24:00 [ 41] [ 8] [16001400] +20:24:00 [ 42] [ 15] [NATIVE ] +20:24:00 [ 43] [ 40] [NOUL Xaythany LAO] +20:24:00 [ 49] [ 3] [418] +20:24:00 [ 52] [ 16] [7F8B3A0E771285B8] +20:24:00 ============================================================================ +20:24:00 + + +waiting on router queue for slot.... +20:24:00 Sending to : <2> +20:24:00 ============================================================================ +20:24:05 ============================================================================ +20:24:05 Slot Id : <142> +20:24:05 Transaction Type : REQUEST +20:24:05 Received From : +20:24:05 ============================================================================ +20:24:05 FNo. Len. Field Value +20:24:05 ============================================================================ +20:24:05 [ 1] [ 4] [0200] +20:24:05 [ 2] [ 16] [6688990040074823] +20:24:05 [ 3] [ 6] [010000] +20:24:05 [ 4] [ 12] [000050000000] +20:24:05 [ 7] [ 10] [0320132312] +20:24:05 [ 11] [ 6] [271583] +20:24:05 [ 12] [ 6] [202312] +20:24:05 [ 13] [ 4] [0320] +20:24:05 [ 14] [ 4] [9801] +20:24:05 [ 15] [ 4] [0320] +20:24:05 [ 18] [ 4] [6011] +20:24:05 [ 19] [ 3] [418] +20:24:05 [ 22] [ 3] [021] +20:24:05 [ 25] [ 2] [01] +20:24:05 [ 28] [ 9] [D00002000] +20:24:05 [ 32] [ 6] [180893] +20:24:05 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:24:05 [ 37] [ 12] [507913271583] +20:24:05 [ 41] [ 8] [0466PSLB] +20:24:05 [ 42] [ 15] [999999 ] +20:24:05 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:24:05 [ 49] [ 3] [418] +20:24:05 [ 52] [ 16] [CA0D64AEDD245F2B] +20:24:05 ============================================================================ +20:24:05 + + +waiting on router queue for slot.... +20:24:05 Sending to : +20:24:05 ============================================================================ +20:24:05 Sending to : +20:24:05 ============================================================================ +20:24:05 ============================================================================ +20:24:05 Slot Id : <159> +20:24:05 Transaction Type : RESPONSE +20:24:05 Received From : +20:24:05 ============================================================================ +20:24:05 FNo. Len. Field Value +20:24:05 ============================================================================ +20:24:05 [ 1] [ 4] [0210] +20:24:05 [ 2] [ 16] [1808930100004407] +20:24:05 [ 3] [ 6] [011000] +20:24:05 [ 4] [ 12] [000010000000] +20:24:05 [ 6] [ 12] [000010000000] +20:24:05 [ 7] [ 10] [0320202356] +20:24:05 [ 11] [ 6] [842084] +20:24:05 [ 12] [ 6] [202356] +20:24:05 [ 13] [ 4] [0320] +20:24:05 [ 18] [ 4] [6011] +20:24:05 [ 19] [ 3] [418] +20:24:05 [ 22] [ 3] [021] +20:24:05 [ 32] [ 6] [621354] +20:24:05 [ 35] [ 27] [1808930100004407=1803500553] +20:24:05 [ 37] [ 12] [507903613609] +20:24:05 [ 38] [ 6] [842084] +20:24:05 [ 39] [ 2] [00] +20:24:05 [ 41] [ 8] [16001400] +20:24:05 [ 49] [ 3] [418] +20:24:05 [ 52] [ 16] [7F8B3A0E771285B8] +20:24:05 [ 54] [ 20] [1001418C000038960600] +20:24:05 ============================================================================ +20:24:05 Sending to : +20:24:05 ============================================================================ +20:24:05 + + +waiting on router queue for slot.... +20:24:05 ============================================================================ +20:24:05 Slot Id : <142> +20:24:05 Transaction Type : REQUEST +20:24:05 Received From : +20:24:05 ============================================================================ +20:24:05 FNo. Len. Field Value +20:24:05 ============================================================================ +20:24:05 [ 1] [ 4] [0200] +20:24:05 [ 2] [ 16] [6688990040074823] +20:24:05 [ 3] [ 6] [010000] +20:24:05 [ 4] [ 12] [000050000000] +20:24:05 [ 7] [ 10] [0320132312] +20:24:05 [ 11] [ 6] [271583] +20:24:05 [ 12] [ 6] [202312] +20:24:05 [ 13] [ 4] [0320] +20:24:05 [ 14] [ 4] [9801] +20:24:05 [ 15] [ 4] [0320] +20:24:05 [ 18] [ 4] [6011] +20:24:05 [ 19] [ 3] [418] +20:24:05 [ 22] [ 3] [021] +20:24:05 [ 25] [ 2] [01] +20:24:05 [ 28] [ 9] [D00002000] +20:24:05 [ 32] [ 6] [180893] +20:24:05 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:24:05 [ 37] [ 12] [507913271583] +20:24:05 [ 41] [ 8] [0466PSLB] +20:24:05 [ 42] [ 15] [999999 ] +20:24:05 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:24:05 [ 49] [ 3] [418] +20:24:05 [ 52] [ 16] [CA0D64AEDD245F2B] +20:24:05 ============================================================================ +20:24:05 + + +waiting on router queue for slot.... +20:24:05 Sending to : +20:24:05 ============================================================================ +20:24:05 ============================================================================ +20:24:05 Slot Id : <142> +20:24:05 Transaction Type : REQUEST +20:24:05 Received From : +20:24:05 ============================================================================ +20:24:05 FNo. Len. Field Value +20:24:05 ============================================================================ +20:24:05 [ 1] [ 4] [0200] +20:24:05 [ 2] [ 16] [6688990040074823] +20:24:05 [ 3] [ 6] [010000] +20:24:05 [ 4] [ 12] [000050000000] +20:24:05 [ 7] [ 10] [0320132312] +20:24:05 [ 11] [ 6] [271583] +20:24:05 [ 12] [ 6] [202312] +20:24:05 [ 13] [ 4] [0320] +20:24:05 [ 14] [ 4] [9801] +20:24:05 [ 15] [ 4] [0320] +20:24:05 [ 18] [ 4] [6011] +20:24:05 [ 19] [ 3] [418] +20:24:05 [ 22] [ 3] [021] +20:24:05 [ 25] [ 2] [01] +20:24:05 [ 28] [ 9] [D00002000] +20:24:05 [ 32] [ 6] [180893] +20:24:05 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:24:05 [ 37] [ 12] [507913271583] +20:24:05 [ 41] [ 8] [0466PSLB] +20:24:05 [ 42] [ 15] [999999 ] +20:24:05 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:24:05 [ 49] [ 3] [418] +20:24:05 [ 52] [ 16] [31FCE1D065256607] +20:24:05 ============================================================================ +20:24:05 + + +waiting on router queue for slot.... +20:24:05 Sending to : <0> +20:24:05 ============================================================================ +20:24:05 ============================================================================ +20:24:05 Slot Id : <142> +20:24:05 Transaction Type : RESPONSE +20:24:05 Received From : +20:24:05 ============================================================================ +20:24:05 FNo. Len. Field Value +20:24:05 ============================================================================ +20:24:05 [ 1] [ 4] [0210] +20:24:05 [ 2] [ 16] [6688990040074823] +20:24:05 [ 3] [ 6] [010000] +20:24:05 [ 4] [ 12] [000050000000] +20:24:05 [ 7] [ 10] [0320132312] +20:24:05 [ 11] [ 6] [271583] +20:24:05 [ 12] [ 6] [202312] +20:24:05 [ 13] [ 4] [0320] +20:24:05 [ 15] [ 4] [0320] +20:24:05 [ 18] [ 4] [6011] +20:24:05 [ 19] [ 3] [418] +20:24:05 [ 22] [ 3] [021] +20:24:05 [ 32] [ 6] [180893] +20:24:05 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:24:05 [ 37] [ 12] [507913271583] +20:24:05 [ 39] [ 2] [14] +20:24:05 [ 41] [ 8] [0466PSLB] +20:24:05 [ 49] [ 3] [418] +20:24:05 ============================================================================ +20:24:05 Sending to : +20:24:05 ============================================================================ +20:24:05 + + +waiting on router queue for slot.... +20:24:06 ============================================================================ +20:24:06 Slot Id : <159> +20:24:06 Transaction Type : RESPONSE +20:24:06 Received From : +20:24:06 ============================================================================ +20:24:06 FNo. Len. Field Value +20:24:06 ============================================================================ +20:24:06 [ 1] [ 4] [0210] +20:24:06 [ 2] [ 16] [1808930100004407] +20:24:06 [ 3] [ 6] [011000] +20:24:06 [ 4] [ 12] [000010000000] +20:24:06 [ 6] [ 12] [000010000000] +20:24:06 [ 7] [ 10] [0320202356] +20:24:06 [ 11] [ 6] [842084] +20:24:06 [ 12] [ 6] [202356] +20:24:06 [ 13] [ 4] [0320] +20:24:06 [ 18] [ 4] [6011] +20:24:06 [ 19] [ 3] [418] +20:24:06 [ 22] [ 3] [021] +20:24:06 [ 32] [ 6] [621354] +20:24:06 [ 35] [ 27] [1808930100004407=1803500553] +20:24:06 [ 37] [ 12] [507903613609] +20:24:06 [ 38] [ 6] [842084] +20:24:06 [ 39] [ 2] [00] +20:24:06 [ 41] [ 8] [16001400] +20:24:06 [ 49] [ 3] [418] +20:24:06 [ 52] [ 16] [7F8B3A0E771285B8] +20:24:06 [ 54] [ 20] [1001418C000038960600] +20:24:06 ============================================================================ +20:24:06 Calculate Source COMM Id = 0 +20:24:06 ============================================================================ +20:24:06 + + +waiting on router queue for slot.... +20:24:07 ============================================================================ +20:24:07 Slot Id : <142> +20:24:07 Transaction Type : RESPONSE +20:24:07 Received From : +20:24:07 ============================================================================ +20:24:07 FNo. Len. Field Value +20:24:07 ============================================================================ +20:24:07 [ 1] [ 4] [0210] +20:24:07 [ 2] [ 16] [6688990040074823] +20:24:07 [ 3] [ 6] [010000] +20:24:07 [ 4] [ 12] [000050000000] +20:24:07 [ 7] [ 10] [0320132312] +20:24:07 [ 11] [ 6] [271583] +20:24:07 [ 12] [ 6] [202312] +20:24:07 [ 13] [ 4] [0320] +20:24:07 [ 15] [ 4] [0320] +20:24:07 [ 18] [ 4] [6011] +20:24:07 [ 19] [ 3] [418] +20:24:07 [ 22] [ 3] [021] +20:24:07 [ 32] [ 6] [180893] +20:24:07 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:24:07 [ 37] [ 12] [507913271583] +20:24:07 [ 39] [ 2] [14] +20:24:07 [ 41] [ 8] [0466PSLB] +20:24:07 [ 49] [ 3] [418] +20:24:07 ============================================================================ +20:24:07 Calculate Source COMM Id = 2 +20:24:07 ============================================================================ +20:24:07 + + +waiting on router queue for slot.... +20:24:07 ============================================================================ +20:24:07 Slot Id : <146> +20:24:07 Transaction Type : REQUEST +20:24:07 Received From : +20:24:07 ============================================================================ +20:24:07 FNo. Len. Field Value +20:24:07 ============================================================================ +20:24:07 [ 1] [ 4] [0800] +20:24:07 [ 2] [ 5] [02531] +20:24:07 [ 3] [ 6] [579208] +20:24:07 [ 7] [ 10] [0320132407] +20:24:07 [ 11] [ 6] [807596] +20:24:07 [ 15] [ 10] [0320132407] +20:24:07 [ 37] [ 11] [57920807596] +20:24:07 [ 70] [ 3] [001] +20:24:07 ============================================================================ +20:24:07 + + +waiting on router queue for slot.... +20:24:07 ============================================================================ +20:24:07 Slot Id : <146> +20:24:07 Transaction Type : RESPONSE +20:24:07 Received From : +20:24:07 ============================================================================ +20:24:07 FNo. Len. Field Value +20:24:07 ============================================================================ +20:24:07 [ 1] [ 4] [0810] +20:24:07 [ 7] [ 10] [0320132407] +20:24:07 [ 11] [ 6] [807596] +20:24:07 [ 15] [ 4] [0320] +20:24:07 [ 37] [ 12] [57920807596] +20:24:07 [ 39] [ 2] [00] +20:24:07 [ 70] [ 3] [001] +20:24:07 ============================================================================ +20:24:07 Sending to : +20:24:07 ============================================================================ +20:24:07 + + +waiting on router queue for slot.... +20:24:20 ============================================================================ +20:24:20 Slot Id : <158> +20:24:20 Transaction Type : REQUEST +20:24:20 Received From : +20:24:20 ============================================================================ +20:24:20 FNo. Len. Field Value +20:24:20 ============================================================================ +20:24:20 [ 1] [ 4] [0800] +20:24:20 [ 7] [ 10] [0320012328] +20:24:20 [ 11] [ 6] [158199] +20:24:20 [ 70] [ 3] [301] +20:24:20 ============================================================================ +20:24:20 + + +waiting on router queue for slot.... +20:24:20 Sending to : +20:24:20 ============================================================================ +20:24:20 ============================================================================ +20:24:20 Slot Id : <158> +20:24:20 Transaction Type : RESPONSE +20:24:20 Received From : +20:24:20 ============================================================================ +20:24:20 FNo. Len. Field Value +20:24:20 ============================================================================ +20:24:20 [ 1] [ 4] [0810] +20:24:20 [ 7] [ 10] [0320012328] +20:24:20 [ 11] [ 6] [158199] +20:24:20 [ 39] [ 2] [00] +20:24:20 [ 70] [ 3] [301] +20:24:20 ============================================================================ +20:24:20 Calculate Source COMM Id = 2 +20:24:20 ============================================================================ +20:24:20 + + +waiting on router queue for slot.... +20:24:20 ============================================================================ +20:24:20 Slot Id : <167> +20:24:20 Transaction Type : REQUEST +20:24:20 Received From : +20:24:20 ============================================================================ +20:24:20 FNo. Len. Field Value +20:24:20 ============================================================================ +20:24:20 [ 1] [ 4] [0200] +20:24:20 [ 2] [ 16] [6688990108145002] +20:24:20 [ 3] [ 6] [010000] +20:24:20 [ 4] [ 12] [000100000000] +20:24:20 [ 7] [ 10] [0320132328] +20:24:20 [ 11] [ 6] [271586] +20:24:20 [ 12] [ 6] [202328] +20:24:20 [ 13] [ 4] [0320] +20:24:20 [ 14] [ 4] [4405] +20:24:20 [ 15] [ 4] [0320] +20:24:20 [ 18] [ 4] [6011] +20:24:20 [ 19] [ 3] [418] +20:24:20 [ 22] [ 3] [021] +20:24:20 [ 25] [ 2] [01] +20:24:20 [ 28] [ 9] [D00002000] +20:24:20 [ 32] [ 6] [180893] +20:24:20 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:24:20 [ 37] [ 12] [507913271586] +20:24:20 [ 41] [ 8] [0108THNG] +20:24:20 [ 42] [ 15] [999999 ] +20:24:20 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +20:24:20 [ 49] [ 3] [418] +20:24:20 [ 52] [ 16] [F9DE44EAE149DF3A] +20:24:20 ============================================================================ +20:24:20 + + +waiting on router queue for slot.... +20:24:20 Sending to : +20:24:20 ============================================================================ +20:24:20 Sending to : +20:24:20 ============================================================================ +20:24:20 ============================================================================ +20:24:20 Slot Id : <167> +20:24:20 Transaction Type : REQUEST +20:24:20 Received From : +20:24:20 ============================================================================ +20:24:20 FNo. Len. Field Value +20:24:20 ============================================================================ +20:24:20 [ 1] [ 4] [0200] +20:24:20 [ 2] [ 16] [6688990108145002] +20:24:20 [ 3] [ 6] [010000] +20:24:20 [ 4] [ 12] [000100000000] +20:24:20 [ 7] [ 10] [0320132328] +20:24:20 [ 11] [ 6] [271586] +20:24:20 [ 12] [ 6] [202328] +20:24:20 [ 13] [ 4] [0320] +20:24:20 [ 14] [ 4] [4405] +20:24:20 [ 15] [ 4] [0320] +20:24:20 [ 18] [ 4] [6011] +20:24:20 [ 19] [ 3] [418] +20:24:20 [ 22] [ 3] [021] +20:24:20 [ 25] [ 2] [01] +20:24:20 [ 28] [ 9] [D00002000] +20:24:20 [ 32] [ 6] [180893] +20:24:20 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:24:20 [ 37] [ 12] [507913271586] +20:24:20 [ 41] [ 8] [0108THNG] +20:24:20 [ 42] [ 15] [999999 ] +20:24:20 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +20:24:20 [ 49] [ 3] [418] +20:24:20 [ 52] [ 16] [F9DE44EAE149DF3A] +20:24:20 ============================================================================ +20:24:20 + + +waiting on router queue for slot.... +20:24:20 Sending to : +20:24:20 ============================================================================ +20:24:20 ============================================================================ +20:24:20 Slot Id : <167> +20:24:20 Transaction Type : REQUEST +20:24:20 Received From : +20:24:20 ============================================================================ +20:24:20 FNo. Len. Field Value +20:24:20 ============================================================================ +20:24:20 [ 1] [ 4] [0200] +20:24:20 [ 2] [ 16] [6688990108145002] +20:24:20 [ 3] [ 6] [010000] +20:24:20 [ 4] [ 12] [000100000000] +20:24:20 [ 7] [ 10] [0320132328] +20:24:20 [ 11] [ 6] [271586] +20:24:20 [ 12] [ 6] [202328] +20:24:20 [ 13] [ 4] [0320] +20:24:20 [ 14] [ 4] [4405] +20:24:20 [ 15] [ 4] [0320] +20:24:20 [ 18] [ 4] [6011] +20:24:20 [ 19] [ 3] [418] +20:24:20 [ 22] [ 3] [021] +20:24:20 [ 25] [ 2] [01] +20:24:20 [ 28] [ 9] [D00002000] +20:24:20 [ 32] [ 6] [180893] +20:24:20 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:24:20 [ 37] [ 12] [507913271586] +20:24:20 [ 41] [ 8] [0108THNG] +20:24:20 [ 42] [ 15] [999999 ] +20:24:20 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +20:24:20 [ 49] [ 3] [418] +20:24:20 [ 52] [ 16] [1B747A615E2FEA5C] +20:24:20 ============================================================================ +20:24:20 + + +waiting on router queue for slot.... +20:24:20 Sending to : <0> +20:24:20 ============================================================================ +20:24:20 ============================================================================ +20:24:20 Slot Id : <167> +20:24:20 Transaction Type : RESPONSE +20:24:20 Received From : +20:24:20 ============================================================================ +20:24:20 FNo. Len. Field Value +20:24:20 ============================================================================ +20:24:20 [ 1] [ 4] [0210] +20:24:20 [ 2] [ 16] [6688990108145002] +20:24:20 [ 3] [ 6] [010000] +20:24:20 [ 4] [ 12] [000100000000] +20:24:20 [ 7] [ 10] [0320132328] +20:24:20 [ 11] [ 6] [271586] +20:24:20 [ 12] [ 6] [202328] +20:24:20 [ 13] [ 4] [0320] +20:24:20 [ 15] [ 4] [0320] +20:24:20 [ 18] [ 4] [6011] +20:24:20 [ 19] [ 3] [418] +20:24:20 [ 22] [ 3] [021] +20:24:20 [ 32] [ 6] [180893] +20:24:20 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:24:20 [ 37] [ 12] [507913271586] +20:24:20 [ 39] [ 2] [14] +20:24:20 [ 41] [ 8] [0108THNG] +20:24:20 [ 49] [ 3] [418] +20:24:20 ============================================================================ +20:24:20 Sending to : +20:24:20 ============================================================================ +20:24:20 + + +waiting on router queue for slot.... +20:24:21 ============================================================================ +20:24:21 Slot Id : <87> +20:24:21 Transaction Type : REQUEST +20:24:21 Received From : +20:24:21 ============================================================================ +20:24:21 FNo. Len. Field Value +20:24:21 ============================================================================ +20:24:21 [ 1] [ 4] [0800] +20:24:21 [ 7] [ 10] [0321033610] +20:24:21 [ 11] [ 6] [203610] +20:24:21 [ 37] [ 12] [57920203610] +20:24:21 [ 70] [ 3] [301] +20:24:21 ============================================================================ +20:24:21 + + +waiting on router queue for slot.... +20:24:21 Sending to : +20:24:21 ============================================================================ +20:24:21 ============================================================================ +20:24:21 Slot Id : <87> +20:24:21 Transaction Type : RESPONSE +20:24:21 Received From : +20:24:21 ============================================================================ +20:24:21 FNo. Len. Field Value +20:24:21 ============================================================================ +20:24:21 [ 1] [ 4] [0810] +20:24:21 [ 7] [ 10] [0321033610] +20:24:21 [ 11] [ 6] [203610] +20:24:21 [ 37] [ 12] [579202036100] +20:24:21 [ 39] [ 2] [00] +20:24:21 [ 70] [ 3] [810] +20:24:21 ============================================================================ +20:24:21 Calculate Source COMM Id = 6 +20:24:21 ============================================================================ +20:24:21 + + +waiting on router queue for slot.... +20:24:21 ============================================================================ +20:24:21 Slot Id : <167> +20:24:21 Transaction Type : RESPONSE +20:24:21 Received From : +20:24:21 ============================================================================ +20:24:21 FNo. Len. Field Value +20:24:21 ============================================================================ +20:24:21 [ 1] [ 4] [0210] +20:24:21 [ 2] [ 16] [6688990108145002] +20:24:21 [ 3] [ 6] [010000] +20:24:21 [ 4] [ 12] [000100000000] +20:24:21 [ 7] [ 10] [0320132328] +20:24:21 [ 11] [ 6] [271586] +20:24:21 [ 12] [ 6] [202328] +20:24:21 [ 13] [ 4] [0320] +20:24:21 [ 15] [ 4] [0320] +20:24:21 [ 18] [ 4] [6011] +20:24:21 [ 19] [ 3] [418] +20:24:21 [ 22] [ 3] [021] +20:24:21 [ 32] [ 6] [180893] +20:24:21 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:24:21 [ 37] [ 12] [507913271586] +20:24:21 [ 39] [ 2] [14] +20:24:21 [ 41] [ 8] [0108THNG] +20:24:21 [ 49] [ 3] [418] +20:24:21 ============================================================================ +20:24:21 Calculate Source COMM Id = 2 +20:24:21 ============================================================================ +20:24:21 + + +waiting on router queue for slot.... +20:24:24 ============================================================================ +20:24:24 Slot Id : <137> +20:24:24 Transaction Type : REQUEST +20:24:24 Received From : +20:24:24 ============================================================================ +20:24:24 FNo. Len. Field Value +20:24:24 ============================================================================ +20:24:24 [ 1] [ 4] [0200] +20:24:24 [ 2] [ 16] [6213545000153605] +20:24:24 [ 3] [ 6] [302000] +20:24:24 [ 4] [ 12] [000000000000] +20:24:24 [ 7] [ 10] [0320202215] +20:24:24 [ 11] [ 6] [957105] +20:24:24 [ 12] [ 6] [202215] +20:24:24 [ 13] [ 4] [0320] +20:24:24 [ 15] [ 4] [0320] +20:24:24 [ 18] [ 4] [6011] +20:24:24 [ 19] [ 3] [418] +20:24:24 [ 22] [ 3] [021] +20:24:24 [ 25] [ 2] [01] +20:24:24 [ 28] [ 9] [D00000000] +20:24:24 [ 32] [ 6] [668899] +20:24:24 [ 35] [ 32] [6213545000153605=491212015360131] +20:24:24 [ 37] [ 12] [507901262082] +20:24:24 [ 41] [ 8] [03206001] +20:24:24 [ 42] [ 15] [APT ] +20:24:24 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +20:24:24 [ 49] [ 3] [418] +20:24:24 [ 52] [ 16] [3C0BA7BCE46B6B33] +20:24:24 ============================================================================ +20:24:24 + + +waiting on router queue for slot.... +20:24:24 Sending to : +20:24:24 ============================================================================ +20:24:24 Sending to : +20:24:24 ============================================================================ +20:24:24 ============================================================================ +20:24:24 Slot Id : <137> +20:24:24 Transaction Type : REQUEST +20:24:24 Received From : +20:24:24 ============================================================================ +20:24:24 FNo. Len. Field Value +20:24:24 ============================================================================ +20:24:24 [ 1] [ 4] [0200] +20:24:24 [ 2] [ 16] [6213545000153605] +20:24:24 [ 3] [ 6] [302000] +20:24:24 [ 4] [ 12] [000000000000] +20:24:24 [ 7] [ 10] [0320202215] +20:24:24 [ 11] [ 6] [957105] +20:24:24 [ 12] [ 6] [202215] +20:24:24 [ 13] [ 4] [0320] +20:24:24 [ 15] [ 4] [0320] +20:24:24 [ 18] [ 4] [6011] +20:24:24 [ 19] [ 3] [418] +20:24:24 [ 22] [ 3] [021] +20:24:24 [ 25] [ 2] [01] +20:24:24 [ 28] [ 9] [D00000000] +20:24:24 [ 32] [ 6] [668899] +20:24:24 [ 35] [ 32] [6213545000153605=491212015360131] +20:24:24 [ 37] [ 12] [507901262082] +20:24:24 [ 41] [ 8] [03206001] +20:24:24 [ 42] [ 15] [APT ] +20:24:24 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +20:24:24 [ 49] [ 3] [418] +20:24:24 [ 52] [ 16] [3C0BA7BCE46B6B33] +20:24:24 ============================================================================ +20:24:24 + + +waiting on router queue for slot.... +20:24:24 Sending to : +20:24:24 ============================================================================ +20:24:24 ============================================================================ +20:24:24 Slot Id : <137> +20:24:24 Transaction Type : REQUEST +20:24:24 Received From : +20:24:24 ============================================================================ +20:24:24 FNo. Len. Field Value +20:24:24 ============================================================================ +20:24:24 [ 1] [ 4] [0200] +20:24:24 [ 2] [ 16] [6213545000153605] +20:24:24 [ 3] [ 6] [302000] +20:24:24 [ 4] [ 12] [000000000000] +20:24:24 [ 7] [ 10] [0320202215] +20:24:24 [ 11] [ 6] [957105] +20:24:24 [ 12] [ 6] [202215] +20:24:24 [ 13] [ 4] [0320] +20:24:24 [ 15] [ 4] [0320] +20:24:24 [ 18] [ 4] [6011] +20:24:24 [ 19] [ 3] [418] +20:24:24 [ 22] [ 3] [021] +20:24:24 [ 25] [ 2] [01] +20:24:24 [ 28] [ 9] [D00000000] +20:24:24 [ 32] [ 6] [668899] +20:24:24 [ 35] [ 32] [6213545000153605=491212015360131] +20:24:24 [ 37] [ 12] [507901262082] +20:24:24 [ 41] [ 8] [03206001] +20:24:24 [ 42] [ 15] [APT ] +20:24:24 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +20:24:24 [ 49] [ 3] [418] +20:24:24 [ 52] [ 16] [0867C5927DDCE68D] +20:24:24 ============================================================================ +20:24:24 + + +waiting on router queue for slot.... +20:24:24 Sending to : <0> +20:24:24 ============================================================================ +20:24:25 ============================================================================ +20:24:25 Slot Id : <137> +20:24:25 Transaction Type : RESPONSE +20:24:25 Received From : +20:24:25 ============================================================================ +20:24:25 FNo. Len. Field Value +20:24:25 ============================================================================ +20:24:25 [ 1] [ 4] [0210] +20:24:25 [ 2] [ 16] [6213545000153605] +20:24:25 [ 3] [ 6] [302000] +20:24:25 [ 4] [ 12] [000000000000] +20:24:25 [ 7] [ 10] [0320202215] +20:24:25 [ 11] [ 6] [957105] +20:24:25 [ 12] [ 6] [202215] +20:24:25 [ 13] [ 4] [0320] +20:24:25 [ 15] [ 4] [0320] +20:24:25 [ 18] [ 4] [6011] +20:24:25 [ 19] [ 3] [418] +20:24:25 [ 32] [ 6] [668899] +20:24:25 [ 35] [ 32] [6213545000153605=491212015360131] +20:24:25 [ 37] [ 12] [507901262082] +20:24:25 [ 38] [ 6] [109968] +20:24:25 [ 39] [ 2] [00] +20:24:25 [ 41] [ 8] [03206001] +20:24:25 [ 49] [ 3] [418] +20:24:25 [ 54] [ 40] [2001418C0014880787662002418C001488078766] +20:24:25 ============================================================================ +20:24:25 Sending to : +20:24:25 ============================================================================ +20:24:25 + + +waiting on router queue for slot.... +20:24:26 ============================================================================ +20:24:26 Slot Id : <137> +20:24:26 Transaction Type : RESPONSE +20:24:26 Received From : +20:24:26 ============================================================================ +20:24:26 FNo. Len. Field Value +20:24:26 ============================================================================ +20:24:26 [ 1] [ 4] [0210] +20:24:26 [ 2] [ 16] [6213545000153605] +20:24:26 [ 3] [ 6] [302000] +20:24:26 [ 4] [ 12] [000000000000] +20:24:26 [ 7] [ 10] [0320202215] +20:24:26 [ 11] [ 6] [957105] +20:24:26 [ 12] [ 6] [202215] +20:24:26 [ 13] [ 4] [0320] +20:24:26 [ 15] [ 4] [0320] +20:24:26 [ 18] [ 4] [6011] +20:24:26 [ 19] [ 3] [418] +20:24:26 [ 32] [ 6] [668899] +20:24:26 [ 35] [ 32] [6213545000153605=491212015360131] +20:24:26 [ 37] [ 12] [507901262082] +20:24:26 [ 38] [ 6] [109968] +20:24:26 [ 39] [ 2] [00] +20:24:26 [ 41] [ 8] [03206001] +20:24:26 [ 49] [ 3] [418] +20:24:26 [ 54] [ 40] [2001418C0014880787662002418C001488078766] +20:24:26 ============================================================================ +20:24:26 Calculate Source COMM Id = 4 +20:24:26 ============================================================================ +20:24:26 + + +waiting on router queue for slot.... +20:24:33 ============================================================================ +20:24:33 Slot Id : <130> +20:24:33 Transaction Type : REQUEST +20:24:33 Received From : +20:24:33 ============================================================================ +20:24:33 FNo. Len. Field Value +20:24:33 ============================================================================ +20:24:33 [ 1] [ 4] [0200] +20:24:33 [ 2] [ 16] [1808931000001386] +20:24:33 [ 3] [ 6] [010000] +20:24:33 [ 4] [ 12] [000020000000] +20:24:33 [ 7] [ 10] [0320202224] +20:24:33 [ 11] [ 6] [957106] +20:24:33 [ 12] [ 6] [202224] +20:24:33 [ 13] [ 4] [0320] +20:24:33 [ 15] [ 4] [0320] +20:24:33 [ 18] [ 4] [6011] +20:24:33 [ 19] [ 3] [418] +20:24:33 [ 22] [ 3] [021] +20:24:33 [ 25] [ 2] [01] +20:24:33 [ 28] [ 9] [D00002000] +20:24:33 [ 32] [ 6] [668899] +20:24:33 [ 35] [ 27] [1808931000001386=1803500382] +20:24:33 [ 37] [ 12] [507901803598] +20:24:33 [ 41] [ 8] [03004004] +20:24:33 [ 42] [ 15] [APT ] +20:24:33 [ 43] [ 40] [ PAK-HAO MARKET HUIXAY ] +20:24:33 [ 49] [ 3] [418] +20:24:33 [ 52] [ 16] [CDA165728DE19AB2] +20:24:33 ============================================================================ +20:24:33 + + +waiting on router queue for slot.... +20:24:33 Sending to : +20:24:33 ============================================================================ +20:24:33 Sending to : +20:24:33 ============================================================================ +20:24:33 ============================================================================ +20:24:33 Slot Id : <130> +20:24:33 Transaction Type : REQUEST +20:24:33 Received From : +20:24:33 ============================================================================ +20:24:33 FNo. Len. Field Value +20:24:33 ============================================================================ +20:24:33 [ 1] [ 4] [0200] +20:24:33 [ 2] [ 16] [1808931000001386] +20:24:33 [ 3] [ 6] [010000] +20:24:33 [ 4] [ 12] [000020000000] +20:24:33 [ 7] [ 10] [0320202224] +20:24:33 [ 11] [ 6] [957106] +20:24:33 [ 12] [ 6] [202224] +20:24:33 [ 13] [ 4] [0320] +20:24:33 [ 15] [ 4] [0320] +20:24:33 [ 18] [ 4] [6011] +20:24:33 [ 19] [ 3] [418] +20:24:33 [ 22] [ 3] [021] +20:24:33 [ 25] [ 2] [01] +20:24:33 [ 28] [ 9] [D00002000] +20:24:33 [ 32] [ 6] [668899] +20:24:33 [ 35] [ 27] [1808931000001386=1803500382] +20:24:33 [ 37] [ 12] [507901803598] +20:24:33 [ 41] [ 8] [03004004] +20:24:33 [ 42] [ 15] [APT ] +20:24:33 [ 43] [ 40] [ PAK-HAO MARKET HUIXAY ] +20:24:33 [ 49] [ 3] [418] +20:24:33 [ 52] [ 16] [CDA165728DE19AB2] +20:24:33 ============================================================================ +20:24:33 + + +waiting on router queue for slot.... +20:24:33 Sending to : +20:24:33 ============================================================================ +20:24:33 ============================================================================ +20:24:33 Slot Id : <130> +20:24:33 Transaction Type : REQUEST +20:24:33 Received From : +20:24:33 ============================================================================ +20:24:33 FNo. Len. Field Value +20:24:33 ============================================================================ +20:24:33 [ 1] [ 4] [0200] +20:24:33 [ 2] [ 16] [1808931000001386] +20:24:33 [ 3] [ 6] [010000] +20:24:33 [ 4] [ 12] [000020000000] +20:24:33 [ 7] [ 10] [0320202224] +20:24:33 [ 11] [ 6] [957106] +20:24:33 [ 12] [ 6] [202224] +20:24:33 [ 13] [ 4] [0320] +20:24:33 [ 15] [ 4] [0320] +20:24:33 [ 18] [ 4] [6011] +20:24:33 [ 19] [ 3] [418] +20:24:33 [ 22] [ 3] [021] +20:24:33 [ 25] [ 2] [01] +20:24:33 [ 28] [ 9] [D00002000] +20:24:33 [ 32] [ 6] [668899] +20:24:33 [ 35] [ 27] [1808931000001386=1803500382] +20:24:33 [ 37] [ 12] [507901803598] +20:24:33 [ 41] [ 8] [03004004] +20:24:33 [ 42] [ 15] [APT ] +20:24:33 [ 43] [ 40] [ PAK-HAO MARKET HUIXAY ] +20:24:33 [ 49] [ 3] [418] +20:24:33 [ 52] [ 16] [1EF6316226748926] +20:24:33 ============================================================================ +20:24:33 + + +waiting on router queue for slot.... +20:24:33 Sending to : <2> +20:24:33 ============================================================================ +20:24:40 ============================================================================ +20:24:40 Slot Id : <130> +20:24:40 Transaction Type : RESPONSE +20:24:40 Received From : +20:24:40 ============================================================================ +20:24:40 FNo. Len. Field Value +20:24:40 ============================================================================ +20:24:40 [ 1] [ 4] [0210] +20:24:40 [ 2] [ 16] [1808931000001386] +20:24:40 [ 3] [ 6] [010000] +20:24:40 [ 4] [ 12] [000020000000] +20:24:40 [ 6] [ 12] [000020000000] +20:24:40 [ 7] [ 10] [0320202224] +20:24:40 [ 11] [ 6] [957106] +20:24:40 [ 12] [ 6] [202224] +20:24:40 [ 13] [ 4] [0320] +20:24:40 [ 18] [ 4] [6011] +20:24:40 [ 19] [ 3] [418] +20:24:40 [ 22] [ 3] [021] +20:24:40 [ 32] [ 6] [668899] +20:24:40 [ 35] [ 27] [1808931000001386=1803500382] +20:24:40 [ 37] [ 12] [507901803598] +20:24:40 [ 38] [ 6] [957106] +20:24:40 [ 39] [ 2] [00] +20:24:40 [ 41] [ 8] [03004004] +20:24:40 [ 49] [ 3] [418] +20:24:40 [ 52] [ 16] [1EF6316226748926] +20:24:40 [ 54] [ 20] [1001418C000017536300] +20:24:40 ============================================================================ +20:24:40 Sending to : +20:24:40 ============================================================================ +20:24:40 + + +waiting on router queue for slot.... +20:24:41 ============================================================================ +20:24:41 Slot Id : <130> +20:24:41 Transaction Type : RESPONSE +20:24:41 Received From : +20:24:41 ============================================================================ +20:24:41 FNo. Len. Field Value +20:24:41 ============================================================================ +20:24:41 [ 1] [ 4] [0210] +20:24:41 [ 2] [ 16] [1808931000001386] +20:24:41 [ 3] [ 6] [010000] +20:24:41 [ 4] [ 12] [000020000000] +20:24:41 [ 6] [ 12] [000020000000] +20:24:41 [ 7] [ 10] [0320202224] +20:24:41 [ 11] [ 6] [957106] +20:24:41 [ 12] [ 6] [202224] +20:24:41 [ 13] [ 4] [0320] +20:24:41 [ 18] [ 4] [6011] +20:24:41 [ 19] [ 3] [418] +20:24:41 [ 22] [ 3] [021] +20:24:41 [ 32] [ 6] [668899] +20:24:41 [ 35] [ 27] [1808931000001386=1803500382] +20:24:41 [ 37] [ 12] [507901803598] +20:24:41 [ 38] [ 6] [957106] +20:24:41 [ 39] [ 2] [00] +20:24:41 [ 41] [ 8] [03004004] +20:24:41 [ 49] [ 3] [418] +20:24:41 [ 52] [ 16] [1EF6316226748926] +20:24:41 [ 54] [ 20] [1001418C000017536300] +20:24:41 ============================================================================ +20:24:41 Calculate Source COMM Id = 4 +20:24:41 ============================================================================ +20:24:41 + + +waiting on router queue for slot.... +20:24:46 ============================================================================ +20:24:46 Slot Id : <128> +20:24:46 Transaction Type : REQUEST +20:24:46 Received From : +20:24:46 ============================================================================ +20:24:46 FNo. Len. Field Value +20:24:46 ============================================================================ +20:24:46 [ 1] [ 4] [0800] +20:24:46 [ 7] [ 10] [0320012354] +20:24:46 [ 11] [ 6] [158200] +20:24:46 [ 70] [ 3] [301] +20:24:46 ============================================================================ +20:24:46 + + +waiting on router queue for slot.... +20:24:46 Sending to : +20:24:46 ============================================================================ +20:24:46 ============================================================================ +20:24:46 Slot Id : <128> +20:24:46 Transaction Type : RESPONSE +20:24:46 Received From : +20:24:46 ============================================================================ +20:24:46 FNo. Len. Field Value +20:24:46 ============================================================================ +20:24:46 [ 1] [ 4] [0810] +20:24:46 [ 7] [ 10] [0320012354] +20:24:46 [ 11] [ 6] [158200] +20:24:46 [ 39] [ 2] [00] +20:24:46 [ 70] [ 3] [301] +20:24:46 ============================================================================ +20:24:46 Calculate Source COMM Id = 2 +20:24:46 ============================================================================ +20:24:46 + + +waiting on router queue for slot.... +20:24:55 ============================================================================ +20:24:55 Slot Id : <157> +20:24:55 Transaction Type : REQUEST +20:24:55 Received From : +20:24:55 ============================================================================ +20:24:55 FNo. Len. Field Value +20:24:55 ============================================================================ +20:24:55 [ 1] [ 4] [0800] +20:24:55 [ 7] [ 10] [0320133242] +20:24:55 [ 11] [ 6] [025386] +20:24:55 [ 37] [ 12] [57920025386] +20:24:55 [ 70] [ 3] [301] +20:24:55 ============================================================================ +20:24:55 + + +waiting on router queue for slot.... +20:24:55 Sending to : +20:24:55 ============================================================================ +20:24:55 ============================================================================ +20:24:55 Slot Id : <157> +20:24:55 Transaction Type : RESPONSE +20:24:55 Received From : +20:24:55 ============================================================================ +20:24:55 FNo. Len. Field Value +20:24:55 ============================================================================ +20:24:55 [ 1] [ 4] [0810] +20:24:55 [ 7] [ 10] [0320133242] +20:24:55 [ 11] [ 6] [025386] +20:24:55 [ 37] [ 12] [579200253860] +20:24:55 [ 39] [ 2] [00] +20:24:55 [ 70] [ 3] [810] +20:24:55 ============================================================================ +20:24:55 Calculate Source COMM Id = 1 +20:24:55 ============================================================================ +20:24:55 + + +waiting on router queue for slot.... +20:25:01 ============================================================================ +20:25:01 Slot Id : <175> +20:25:01 Transaction Type : REQUEST +20:25:01 Received From : +20:25:01 ============================================================================ +20:25:01 FNo. Len. Field Value +20:25:01 ============================================================================ +20:25:01 [ 1] [ 4] [0800] +20:25:01 [ 7] [ 10] [0320012410] +20:25:01 [ 11] [ 6] [158201] +20:25:01 [ 70] [ 3] [301] +20:25:01 ============================================================================ +20:25:01 + + +waiting on router queue for slot.... +20:25:01 Sending to : +20:25:01 ============================================================================ +20:25:01 ============================================================================ +20:25:01 Slot Id : <175> +20:25:01 Transaction Type : RESPONSE +20:25:01 Received From : +20:25:01 ============================================================================ +20:25:01 FNo. Len. Field Value +20:25:01 ============================================================================ +20:25:01 [ 1] [ 4] [0810] +20:25:01 [ 7] [ 10] [0320012410] +20:25:01 [ 11] [ 6] [158201] +20:25:01 [ 39] [ 2] [00] +20:25:01 [ 70] [ 3] [301] +20:25:01 ============================================================================ +20:25:01 Calculate Source COMM Id = 2 +20:25:01 ============================================================================ +20:25:01 + + +waiting on router queue for slot.... +20:25:05 ============================================================================ +20:25:05 Slot Id : <141> +20:25:05 Transaction Type : REQUEST +20:25:05 Received From : +20:25:05 ============================================================================ +20:25:05 FNo. Len. Field Value +20:25:05 ============================================================================ +20:25:05 [ 1] [ 4] [0800] +20:25:05 [ 7] [ 10] [0320132502] +20:25:05 [ 11] [ 6] [012670] +20:25:05 [ 37] [ 12] [507920012670] +20:25:05 [ 70] [ 3] [001] +20:25:05 ============================================================================ +20:25:05 + + +waiting on router queue for slot.... +20:25:05 Sending to : +20:25:05 ============================================================================ +20:25:05 ============================================================================ +20:25:05 Slot Id : <141> +20:25:05 Transaction Type : RESPONSE +20:25:05 Received From : +20:25:05 ============================================================================ +20:25:05 FNo. Len. Field Value +20:25:05 ============================================================================ +20:25:05 [ 1] [ 4] [0810] +20:25:05 [ 7] [ 10] [0320132502] +20:25:05 [ 11] [ 6] [012670] +20:25:05 [ 37] [ 12] [507920012670] +20:25:05 [ 39] [ 2] [00] +20:25:05 [ 70] [ 3] [001] +20:25:05 ============================================================================ +20:25:05 Calculate Source COMM Id = 0 +20:25:05 ============================================================================ +20:25:05 + + +waiting on router queue for slot.... +20:25:09 ============================================================================ +20:25:09 Slot Id : <151> +20:25:09 Transaction Type : REQUEST +20:25:09 Received From : +20:25:09 ============================================================================ +20:25:09 FNo. Len. Field Value +20:25:09 ============================================================================ +20:25:09 [ 1] [ 4] [0800] +20:25:09 [ 2] [ 5] [02531] +20:25:09 [ 3] [ 6] [579208] +20:25:09 [ 7] [ 10] [0320132509] +20:25:09 [ 11] [ 6] [807597] +20:25:09 [ 15] [ 10] [0320132509] +20:25:09 [ 37] [ 11] [57920807597] +20:25:09 [ 70] [ 3] [001] +20:25:09 ============================================================================ +20:25:09 + + +waiting on router queue for slot.... +20:25:09 ============================================================================ +20:25:09 Slot Id : <151> +20:25:09 Transaction Type : RESPONSE +20:25:09 Received From : +20:25:09 ============================================================================ +20:25:09 FNo. Len. Field Value +20:25:09 ============================================================================ +20:25:09 [ 1] [ 4] [0810] +20:25:09 [ 7] [ 10] [0320132509] +20:25:09 [ 11] [ 6] [807597] +20:25:09 [ 15] [ 4] [0320] +20:25:09 [ 37] [ 12] [57920807597] +20:25:09 [ 39] [ 2] [00] +20:25:09 [ 70] [ 3] [001] +20:25:09 ============================================================================ +20:25:09 Sending to : +20:25:09 ============================================================================ +20:25:09 + + +waiting on router queue for slot.... +20:25:12 ============================================================================ +20:25:12 Slot Id : <170> +20:25:12 Transaction Type : REQUEST +20:25:12 Received From : +20:25:12 ============================================================================ +20:25:12 FNo. Len. Field Value +20:25:12 ============================================================================ +20:25:12 [ 1] [ 4] [0800] +20:25:12 [ 7] [ 10] [0320012420] +20:25:12 [ 11] [ 6] [158202] +20:25:12 [ 70] [ 3] [301] +20:25:12 ============================================================================ +20:25:12 + + +waiting on router queue for slot.... +20:25:12 Sending to : +20:25:12 ============================================================================ +20:25:12 ============================================================================ +20:25:12 Slot Id : <170> +20:25:12 Transaction Type : RESPONSE +20:25:12 Received From : +20:25:12 ============================================================================ +20:25:12 FNo. Len. Field Value +20:25:12 ============================================================================ +20:25:12 [ 1] [ 4] [0810] +20:25:12 [ 7] [ 10] [0320012420] +20:25:12 [ 11] [ 6] [158202] +20:25:12 [ 39] [ 2] [00] +20:25:12 [ 70] [ 3] [301] +20:25:12 ============================================================================ +20:25:12 Calculate Source COMM Id = 2 +20:25:12 ============================================================================ +20:25:12 + + +waiting on router queue for slot.... +20:25:18 ============================================================================ +20:25:18 Slot Id : <172> +20:25:18 Transaction Type : REQUEST +20:25:18 Received From : +20:25:18 ============================================================================ +20:25:18 FNo. Len. Field Value +20:25:18 ============================================================================ +20:25:18 [ 1] [ 4] [0200] +20:25:18 [ 2] [ 16] [6688990108145002] +20:25:18 [ 3] [ 6] [010000] +20:25:18 [ 4] [ 12] [000100000000] +20:25:18 [ 7] [ 10] [0320132426] +20:25:18 [ 11] [ 6] [271589] +20:25:18 [ 12] [ 6] [202426] +20:25:18 [ 13] [ 4] [0320] +20:25:18 [ 14] [ 4] [4405] +20:25:18 [ 15] [ 4] [0320] +20:25:18 [ 18] [ 4] [6011] +20:25:18 [ 19] [ 3] [418] +20:25:18 [ 22] [ 3] [021] +20:25:18 [ 25] [ 2] [01] +20:25:18 [ 28] [ 9] [D00002000] +20:25:18 [ 32] [ 6] [180893] +20:25:18 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:25:18 [ 37] [ 12] [507913271589] +20:25:18 [ 41] [ 8] [0108THNG] +20:25:18 [ 42] [ 15] [999999 ] +20:25:18 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +20:25:18 [ 49] [ 3] [418] +20:25:18 [ 52] [ 16] [4815B88BAC102E3D] +20:25:18 ============================================================================ +20:25:18 + + +waiting on router queue for slot.... +20:25:18 Sending to : +20:25:18 ============================================================================ +20:25:18 Sending to : +20:25:18 ============================================================================ +20:25:19 ============================================================================ +20:25:19 Slot Id : <172> +20:25:19 Transaction Type : REQUEST +20:25:19 Received From : +20:25:19 ============================================================================ +20:25:19 FNo. Len. Field Value +20:25:19 ============================================================================ +20:25:19 [ 1] [ 4] [0200] +20:25:19 [ 2] [ 16] [6688990108145002] +20:25:19 [ 3] [ 6] [010000] +20:25:19 [ 4] [ 12] [000100000000] +20:25:19 [ 7] [ 10] [0320132426] +20:25:19 [ 11] [ 6] [271589] +20:25:19 [ 12] [ 6] [202426] +20:25:19 [ 13] [ 4] [0320] +20:25:19 [ 14] [ 4] [4405] +20:25:19 [ 15] [ 4] [0320] +20:25:19 [ 18] [ 4] [6011] +20:25:19 [ 19] [ 3] [418] +20:25:19 [ 22] [ 3] [021] +20:25:19 [ 25] [ 2] [01] +20:25:19 [ 28] [ 9] [D00002000] +20:25:19 [ 32] [ 6] [180893] +20:25:19 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:25:19 [ 37] [ 12] [507913271589] +20:25:19 [ 41] [ 8] [0108THNG] +20:25:19 [ 42] [ 15] [999999 ] +20:25:19 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +20:25:19 [ 49] [ 3] [418] +20:25:19 [ 52] [ 16] [4815B88BAC102E3D] +20:25:19 ============================================================================ +20:25:19 + + +waiting on router queue for slot.... +20:25:19 Sending to : +20:25:19 ============================================================================ +20:25:19 ============================================================================ +20:25:19 Slot Id : <172> +20:25:19 Transaction Type : REQUEST +20:25:19 Received From : +20:25:19 ============================================================================ +20:25:19 FNo. Len. Field Value +20:25:19 ============================================================================ +20:25:19 [ 1] [ 4] [0200] +20:25:19 [ 2] [ 16] [6688990108145002] +20:25:19 [ 3] [ 6] [010000] +20:25:19 [ 4] [ 12] [000100000000] +20:25:19 [ 7] [ 10] [0320132426] +20:25:19 [ 11] [ 6] [271589] +20:25:19 [ 12] [ 6] [202426] +20:25:19 [ 13] [ 4] [0320] +20:25:19 [ 14] [ 4] [4405] +20:25:19 [ 15] [ 4] [0320] +20:25:19 [ 18] [ 4] [6011] +20:25:19 [ 19] [ 3] [418] +20:25:19 [ 22] [ 3] [021] +20:25:19 [ 25] [ 2] [01] +20:25:19 [ 28] [ 9] [D00002000] +20:25:19 [ 32] [ 6] [180893] +20:25:19 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:25:19 [ 37] [ 12] [507913271589] +20:25:19 [ 41] [ 8] [0108THNG] +20:25:19 [ 42] [ 15] [999999 ] +20:25:19 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +20:25:19 [ 49] [ 3] [418] +20:25:19 [ 52] [ 16] [46E03D63FB4FCB3A] +20:25:19 ============================================================================ +20:25:19 + + +waiting on router queue for slot.... +20:25:19 Sending to : <0> +20:25:19 ============================================================================ +20:25:19 ============================================================================ +20:25:19 Slot Id : <172> +20:25:19 Transaction Type : RESPONSE +20:25:19 Received From : +20:25:19 ============================================================================ +20:25:19 FNo. Len. Field Value +20:25:19 ============================================================================ +20:25:19 [ 1] [ 4] [0210] +20:25:19 [ 2] [ 16] [6688990108145002] +20:25:19 [ 3] [ 6] [010000] +20:25:19 [ 4] [ 12] [000100000000] +20:25:19 [ 7] [ 10] [0320132426] +20:25:19 [ 11] [ 6] [271589] +20:25:19 [ 12] [ 6] [202426] +20:25:19 [ 13] [ 4] [0320] +20:25:19 [ 15] [ 4] [0320] +20:25:19 [ 18] [ 4] [6011] +20:25:19 [ 19] [ 3] [418] +20:25:19 [ 22] [ 3] [021] +20:25:19 [ 32] [ 6] [180893] +20:25:19 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:25:19 [ 37] [ 12] [507913271589] +20:25:19 [ 39] [ 2] [14] +20:25:19 [ 41] [ 8] [0108THNG] +20:25:19 [ 49] [ 3] [418] +20:25:19 ============================================================================ +20:25:19 Sending to : +20:25:19 ============================================================================ +20:25:19 + + +waiting on router queue for slot.... +20:25:20 ============================================================================ +20:25:20 Slot Id : <172> +20:25:20 Transaction Type : RESPONSE +20:25:20 Received From : +20:25:20 ============================================================================ +20:25:20 FNo. Len. Field Value +20:25:20 ============================================================================ +20:25:20 [ 1] [ 4] [0210] +20:25:20 [ 2] [ 16] [6688990108145002] +20:25:20 [ 3] [ 6] [010000] +20:25:20 [ 4] [ 12] [000100000000] +20:25:20 [ 7] [ 10] [0320132426] +20:25:20 [ 11] [ 6] [271589] +20:25:20 [ 12] [ 6] [202426] +20:25:20 [ 13] [ 4] [0320] +20:25:20 [ 15] [ 4] [0320] +20:25:20 [ 18] [ 4] [6011] +20:25:20 [ 19] [ 3] [418] +20:25:20 [ 22] [ 3] [021] +20:25:20 [ 32] [ 6] [180893] +20:25:20 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:25:20 [ 37] [ 12] [507913271589] +20:25:20 [ 39] [ 2] [14] +20:25:20 [ 41] [ 8] [0108THNG] +20:25:20 [ 49] [ 3] [418] +20:25:20 ============================================================================ +20:25:20 Calculate Source COMM Id = 2 +20:25:20 ============================================================================ +20:25:20 + + +waiting on router queue for slot.... +20:25:26 ============================================================================ +20:25:26 Slot Id : <171> +20:25:26 Transaction Type : REQUEST +20:25:26 Received From : +20:25:26 ============================================================================ +20:25:26 FNo. Len. Field Value +20:25:26 ============================================================================ +20:25:26 [ 1] [ 4] [0800] +20:25:26 [ 7] [ 10] [0321033715] +20:25:26 [ 11] [ 6] [203715] +20:25:26 [ 37] [ 12] [57920203715] +20:25:26 [ 70] [ 3] [301] +20:25:26 ============================================================================ +20:25:26 + + +waiting on router queue for slot.... +20:25:26 Sending to : +20:25:26 ============================================================================ +20:25:26 ============================================================================ +20:25:26 Slot Id : <171> +20:25:26 Transaction Type : RESPONSE +20:25:26 Received From : +20:25:26 ============================================================================ +20:25:26 FNo. Len. Field Value +20:25:26 ============================================================================ +20:25:26 [ 1] [ 4] [0810] +20:25:26 [ 7] [ 10] [0321033715] +20:25:26 [ 11] [ 6] [203715] +20:25:26 [ 37] [ 12] [579202037150] +20:25:26 [ 39] [ 2] [00] +20:25:26 [ 70] [ 3] [810] +20:25:26 ============================================================================ +20:25:26 Calculate Source COMM Id = 6 +20:25:26 ============================================================================ +20:25:26 + + +waiting on router queue for slot.... +20:25:33 ============================================================================ +20:25:33 Slot Id : <164> +20:25:33 Transaction Type : REQUEST +20:25:33 Received From : +20:25:33 ============================================================================ +20:25:33 FNo. Len. Field Value +20:25:33 ============================================================================ +20:25:33 [ 1] [ 4] [0800] +20:25:33 [ 7] [ 10] [0320012441] +20:25:33 [ 11] [ 6] [158203] +20:25:33 [ 70] [ 3] [301] +20:25:33 ============================================================================ +20:25:33 + + +waiting on router queue for slot.... +20:25:33 Sending to : +20:25:33 ============================================================================ +20:25:33 ============================================================================ +20:25:33 Slot Id : <164> +20:25:33 Transaction Type : RESPONSE +20:25:33 Received From : +20:25:33 ============================================================================ +20:25:33 FNo. Len. Field Value +20:25:33 ============================================================================ +20:25:33 [ 1] [ 4] [0810] +20:25:33 [ 7] [ 10] [0320012441] +20:25:33 [ 11] [ 6] [158203] +20:25:33 [ 39] [ 2] [00] +20:25:33 [ 70] [ 3] [301] +20:25:33 ============================================================================ +20:25:33 Calculate Source COMM Id = 2 +20:25:33 ============================================================================ +20:25:33 + + +waiting on router queue for slot.... +20:25:38 ============================================================================ +20:25:38 Slot Id : <186> +20:25:38 Transaction Type : REQUEST +20:25:38 Received From : +20:25:38 ============================================================================ +20:25:38 FNo. Len. Field Value +20:25:38 ============================================================================ +20:25:38 [ 1] [ 4] [0200] +20:25:38 [ 2] [ 16] [6213545000153605] +20:25:38 [ 3] [ 6] [010000] +20:25:38 [ 4] [ 12] [000030000000] +20:25:38 [ 7] [ 10] [0320202329] +20:25:38 [ 11] [ 6] [957119] +20:25:38 [ 12] [ 6] [202329] +20:25:38 [ 13] [ 4] [0320] +20:25:38 [ 15] [ 4] [0320] +20:25:38 [ 18] [ 4] [6011] +20:25:38 [ 19] [ 3] [418] +20:25:38 [ 22] [ 3] [021] +20:25:38 [ 25] [ 2] [01] +20:25:38 [ 28] [ 9] [D00002000] +20:25:38 [ 32] [ 6] [668899] +20:25:38 [ 35] [ 32] [6213545000153605=491212015360131] +20:25:38 [ 37] [ 12] [507901262084] +20:25:38 [ 41] [ 8] [03206001] +20:25:38 [ 42] [ 15] [APT ] +20:25:38 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +20:25:38 [ 49] [ 3] [418] +20:25:38 [ 52] [ 16] [3C0BA7BCE46B6B33] +20:25:38 ============================================================================ +20:25:38 + + +waiting on router queue for slot.... +20:25:38 Sending to : +20:25:38 ============================================================================ +20:25:38 Sending to : +20:25:38 ============================================================================ +20:25:38 ============================================================================ +20:25:38 Slot Id : <186> +20:25:38 Transaction Type : REQUEST +20:25:38 Received From : +20:25:38 ============================================================================ +20:25:38 FNo. Len. Field Value +20:25:38 ============================================================================ +20:25:38 [ 1] [ 4] [0200] +20:25:38 [ 2] [ 16] [6213545000153605] +20:25:38 [ 3] [ 6] [010000] +20:25:38 [ 4] [ 12] [000030000000] +20:25:38 [ 7] [ 10] [0320202329] +20:25:38 [ 11] [ 6] [957119] +20:25:38 [ 12] [ 6] [202329] +20:25:38 [ 13] [ 4] [0320] +20:25:38 [ 15] [ 4] [0320] +20:25:38 [ 18] [ 4] [6011] +20:25:38 [ 19] [ 3] [418] +20:25:38 [ 22] [ 3] [021] +20:25:38 [ 25] [ 2] [01] +20:25:38 [ 28] [ 9] [D00002000] +20:25:38 [ 32] [ 6] [668899] +20:25:38 [ 35] [ 32] [6213545000153605=491212015360131] +20:25:38 [ 37] [ 12] [507901262084] +20:25:38 [ 41] [ 8] [03206001] +20:25:38 [ 42] [ 15] [APT ] +20:25:38 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +20:25:38 [ 49] [ 3] [418] +20:25:38 [ 52] [ 16] [3C0BA7BCE46B6B33] +20:25:38 ============================================================================ +20:25:38 + + +waiting on router queue for slot.... +20:25:38 Sending to : +20:25:38 ============================================================================ +20:25:38 ============================================================================ +20:25:38 Slot Id : <186> +20:25:38 Transaction Type : REQUEST +20:25:38 Received From : +20:25:38 ============================================================================ +20:25:38 FNo. Len. Field Value +20:25:38 ============================================================================ +20:25:38 [ 1] [ 4] [0200] +20:25:38 [ 2] [ 16] [6213545000153605] +20:25:38 [ 3] [ 6] [010000] +20:25:38 [ 4] [ 12] [000030000000] +20:25:38 [ 7] [ 10] [0320202329] +20:25:38 [ 11] [ 6] [957119] +20:25:38 [ 12] [ 6] [202329] +20:25:38 [ 13] [ 4] [0320] +20:25:38 [ 15] [ 4] [0320] +20:25:38 [ 18] [ 4] [6011] +20:25:38 [ 19] [ 3] [418] +20:25:38 [ 22] [ 3] [021] +20:25:38 [ 25] [ 2] [01] +20:25:38 [ 28] [ 9] [D00002000] +20:25:38 [ 32] [ 6] [668899] +20:25:38 [ 35] [ 32] [6213545000153605=491212015360131] +20:25:38 [ 37] [ 12] [507901262084] +20:25:38 [ 41] [ 8] [03206001] +20:25:38 [ 42] [ 15] [APT ] +20:25:38 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +20:25:38 [ 49] [ 3] [418] +20:25:38 [ 52] [ 16] [0867C5927DDCE68D] +20:25:38 ============================================================================ +20:25:38 + + +waiting on router queue for slot.... +20:25:38 Sending to : <0> +20:25:38 ============================================================================ +20:25:39 ============================================================================ +20:25:39 Slot Id : <186> +20:25:39 Transaction Type : RESPONSE +20:25:39 Received From : +20:25:39 ============================================================================ +20:25:39 FNo. Len. Field Value +20:25:39 ============================================================================ +20:25:39 [ 1] [ 4] [0210] +20:25:39 [ 2] [ 16] [6213545000153605] +20:25:39 [ 3] [ 6] [010000] +20:25:39 [ 4] [ 12] [000030000000] +20:25:39 [ 7] [ 10] [0320202329] +20:25:39 [ 11] [ 6] [957119] +20:25:39 [ 12] [ 6] [202329] +20:25:39 [ 13] [ 4] [0320] +20:25:39 [ 15] [ 4] [0320] +20:25:39 [ 18] [ 4] [6011] +20:25:39 [ 19] [ 3] [418] +20:25:39 [ 32] [ 6] [668899] +20:25:39 [ 35] [ 32] [6213545000153605=491212015360131] +20:25:39 [ 37] [ 12] [507901262084] +20:25:39 [ 38] [ 6] [237918] +20:25:39 [ 39] [ 2] [00] +20:25:39 [ 41] [ 8] [03206001] +20:25:39 [ 49] [ 3] [418] +20:25:39 [ 54] [ 40] [0001418C0014880787660002418C001457878766] +20:25:39 ============================================================================ +20:25:39 Sending to : +20:25:39 ============================================================================ +20:25:39 + + +waiting on router queue for slot.... +20:25:40 ============================================================================ +20:25:40 Slot Id : <186> +20:25:40 Transaction Type : RESPONSE +20:25:40 Received From : +20:25:40 ============================================================================ +20:25:40 FNo. Len. Field Value +20:25:40 ============================================================================ +20:25:40 [ 1] [ 4] [0210] +20:25:40 [ 2] [ 16] [6213545000153605] +20:25:40 [ 3] [ 6] [010000] +20:25:40 [ 4] [ 12] [000030000000] +20:25:40 [ 7] [ 10] [0320202329] +20:25:40 [ 11] [ 6] [957119] +20:25:40 [ 12] [ 6] [202329] +20:25:40 [ 13] [ 4] [0320] +20:25:40 [ 15] [ 4] [0320] +20:25:40 [ 18] [ 4] [6011] +20:25:40 [ 19] [ 3] [418] +20:25:40 [ 32] [ 6] [668899] +20:25:40 [ 35] [ 32] [6213545000153605=491212015360131] +20:25:40 [ 37] [ 12] [507901262084] +20:25:40 [ 38] [ 6] [237918] +20:25:40 [ 39] [ 2] [00] +20:25:40 [ 41] [ 8] [03206001] +20:25:40 [ 49] [ 3] [418] +20:25:40 [ 54] [ 40] [0001418C0014880787660002418C001457878766] +20:25:40 ============================================================================ +20:25:40 Calculate Source COMM Id = 4 +20:25:40 ============================================================================ +20:25:40 + + +waiting on router queue for slot.... +20:25:43 ============================================================================ +20:25:43 Slot Id : <126> +20:25:43 Transaction Type : REQUEST +20:25:43 Received From : +20:25:43 ============================================================================ +20:25:43 FNo. Len. Field Value +20:25:43 ============================================================================ +20:25:43 [ 1] [ 4] [0800] +20:25:43 [ 7] [ 10] [0320012452] +20:25:43 [ 11] [ 6] [158204] +20:25:43 [ 70] [ 3] [301] +20:25:43 ============================================================================ +20:25:43 + + +waiting on router queue for slot.... +20:25:43 Sending to : +20:25:43 ============================================================================ +20:25:43 ============================================================================ +20:25:43 Slot Id : <126> +20:25:43 Transaction Type : RESPONSE +20:25:43 Received From : +20:25:43 ============================================================================ +20:25:43 FNo. Len. Field Value +20:25:43 ============================================================================ +20:25:43 [ 1] [ 4] [0810] +20:25:43 [ 7] [ 10] [0320012452] +20:25:43 [ 11] [ 6] [158204] +20:25:43 [ 39] [ 2] [00] +20:25:43 [ 70] [ 3] [301] +20:25:43 ============================================================================ +20:25:43 Calculate Source COMM Id = 2 +20:25:43 ============================================================================ +20:25:43 + + +waiting on router queue for slot.... +20:25:54 ============================================================================ +20:25:54 Slot Id : <139> +20:25:54 Transaction Type : REQUEST +20:25:54 Received From : +20:25:54 ============================================================================ +20:25:54 FNo. Len. Field Value +20:25:54 ============================================================================ +20:25:54 [ 1] [ 4] [0800] +20:25:54 [ 7] [ 10] [0320012502] +20:25:54 [ 11] [ 6] [158205] +20:25:54 [ 70] [ 3] [301] +20:25:54 ============================================================================ +20:25:54 + + +waiting on router queue for slot.... +20:25:54 Sending to : +20:25:54 ============================================================================ +20:25:54 ============================================================================ +20:25:54 Slot Id : <139> +20:25:54 Transaction Type : RESPONSE +20:25:54 Received From : +20:25:54 ============================================================================ +20:25:54 FNo. Len. Field Value +20:25:54 ============================================================================ +20:25:54 [ 1] [ 4] [0810] +20:25:54 [ 7] [ 10] [0320012502] +20:25:54 [ 11] [ 6] [158205] +20:25:54 [ 39] [ 2] [00] +20:25:54 [ 70] [ 3] [301] +20:25:54 ============================================================================ +20:25:54 Calculate Source COMM Id = 2 +20:25:54 ============================================================================ +20:25:54 + + +waiting on router queue for slot.... +20:25:58 ============================================================================ +20:25:58 Slot Id : <202> +20:25:58 Transaction Type : REQUEST +20:25:58 Received From : +20:25:58 ============================================================================ +20:25:58 FNo. Len. Field Value +20:25:58 ============================================================================ +20:25:58 [ 1] [ 4] [0200] +20:25:58 [ 2] [ 16] [6688990040074823] +20:25:58 [ 3] [ 6] [301000] +20:25:58 [ 7] [ 10] [0320132505] +20:25:58 [ 11] [ 6] [271590] +20:25:58 [ 12] [ 6] [202505] +20:25:58 [ 13] [ 4] [0320] +20:25:58 [ 14] [ 4] [9801] +20:25:58 [ 15] [ 4] [0320] +20:25:58 [ 18] [ 4] [6011] +20:25:58 [ 19] [ 3] [418] +20:25:58 [ 22] [ 3] [021] +20:25:58 [ 25] [ 2] [01] +20:25:58 [ 32] [ 6] [180893] +20:25:58 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:25:58 [ 37] [ 12] [507913271590] +20:25:58 [ 41] [ 8] [0466PSLB] +20:25:58 [ 42] [ 15] [999999 ] +20:25:58 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:25:58 [ 49] [ 3] [418] +20:25:58 [ 52] [ 16] [CA0D64AEDD245F2B] +20:25:58 ============================================================================ +20:25:58 + + +waiting on router queue for slot.... +20:25:58 Sending to : +20:25:58 ============================================================================ +20:25:58 Sending to : +20:25:58 ============================================================================ +20:25:58 ============================================================================ +20:25:58 Slot Id : <202> +20:25:58 Transaction Type : REQUEST +20:25:58 Received From : +20:25:58 ============================================================================ +20:25:58 FNo. Len. Field Value +20:25:58 ============================================================================ +20:25:58 [ 1] [ 4] [0200] +20:25:58 [ 2] [ 16] [6688990040074823] +20:25:58 [ 3] [ 6] [301000] +20:25:58 [ 7] [ 10] [0320132505] +20:25:58 [ 11] [ 6] [271590] +20:25:58 [ 12] [ 6] [202505] +20:25:58 [ 13] [ 4] [0320] +20:25:58 [ 14] [ 4] [9801] +20:25:58 [ 15] [ 4] [0320] +20:25:58 [ 18] [ 4] [6011] +20:25:58 [ 19] [ 3] [418] +20:25:58 [ 22] [ 3] [021] +20:25:58 [ 25] [ 2] [01] +20:25:58 [ 32] [ 6] [180893] +20:25:58 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:25:58 [ 37] [ 12] [507913271590] +20:25:58 [ 41] [ 8] [0466PSLB] +20:25:58 [ 42] [ 15] [999999 ] +20:25:58 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:25:58 [ 49] [ 3] [418] +20:25:58 [ 52] [ 16] [CA0D64AEDD245F2B] +20:25:58 ============================================================================ +20:25:58 + + +waiting on router queue for slot.... +20:25:58 Sending to : +20:25:58 ============================================================================ +20:25:58 ============================================================================ +20:25:58 Slot Id : <202> +20:25:58 Transaction Type : REQUEST +20:25:58 Received From : +20:25:58 ============================================================================ +20:25:58 FNo. Len. Field Value +20:25:58 ============================================================================ +20:25:58 [ 1] [ 4] [0200] +20:25:58 [ 2] [ 16] [6688990040074823] +20:25:58 [ 3] [ 6] [301000] +20:25:58 [ 7] [ 10] [0320132505] +20:25:58 [ 11] [ 6] [271590] +20:25:58 [ 12] [ 6] [202505] +20:25:58 [ 13] [ 4] [0320] +20:25:58 [ 14] [ 4] [9801] +20:25:58 [ 15] [ 4] [0320] +20:25:58 [ 18] [ 4] [6011] +20:25:58 [ 19] [ 3] [418] +20:25:58 [ 22] [ 3] [021] +20:25:58 [ 25] [ 2] [01] +20:25:58 [ 32] [ 6] [180893] +20:25:58 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:25:58 [ 37] [ 12] [507913271590] +20:25:58 [ 41] [ 8] [0466PSLB] +20:25:58 [ 42] [ 15] [999999 ] +20:25:58 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:25:58 [ 49] [ 3] [418] +20:25:58 [ 52] [ 16] [31FCE1D065256607] +20:25:58 ============================================================================ +20:25:58 + + +waiting on router queue for slot.... +20:25:58 Sending to : <0> +20:25:58 ============================================================================ +20:25:58 ============================================================================ +20:25:58 Slot Id : <202> +20:25:58 Transaction Type : RESPONSE +20:25:58 Received From : +20:25:58 ============================================================================ +20:25:58 FNo. Len. Field Value +20:25:58 ============================================================================ +20:25:58 [ 1] [ 4] [0210] +20:25:58 [ 2] [ 16] [6688990040074823] +20:25:58 [ 3] [ 6] [301000] +20:25:58 [ 4] [ 12] [000000000000] +20:25:58 [ 7] [ 10] [0320132505] +20:25:58 [ 11] [ 6] [271590] +20:25:58 [ 12] [ 6] [202505] +20:25:58 [ 13] [ 4] [0320] +20:25:58 [ 15] [ 4] [0320] +20:25:58 [ 18] [ 4] [6011] +20:25:58 [ 19] [ 3] [418] +20:25:58 [ 22] [ 3] [021] +20:25:58 [ 32] [ 6] [180893] +20:25:58 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:25:58 [ 37] [ 12] [507913271590] +20:25:58 [ 39] [ 2] [14] +20:25:58 [ 41] [ 8] [0466PSLB] +20:25:58 [ 49] [ 3] [418] +20:25:58 ============================================================================ +20:25:58 Sending to : +20:25:58 ============================================================================ +20:25:58 + + +waiting on router queue for slot.... +20:25:59 ============================================================================ +20:25:59 Slot Id : <202> +20:25:59 Transaction Type : RESPONSE +20:25:59 Received From : +20:25:59 ============================================================================ +20:25:59 FNo. Len. Field Value +20:25:59 ============================================================================ +20:25:59 [ 1] [ 4] [0210] +20:25:59 [ 2] [ 16] [6688990040074823] +20:25:59 [ 3] [ 6] [301000] +20:25:59 [ 4] [ 12] [000000000000] +20:25:59 [ 7] [ 10] [0320132505] +20:25:59 [ 11] [ 6] [271590] +20:25:59 [ 12] [ 6] [202505] +20:25:59 [ 13] [ 4] [0320] +20:25:59 [ 15] [ 4] [0320] +20:25:59 [ 18] [ 4] [6011] +20:25:59 [ 19] [ 3] [418] +20:25:59 [ 22] [ 3] [021] +20:25:59 [ 32] [ 6] [180893] +20:25:59 [ 35] [ 37] [6688990040074823=98011261783605600000] +20:25:59 [ 37] [ 12] [507913271590] +20:25:59 [ 39] [ 2] [14] +20:25:59 [ 41] [ 8] [0466PSLB] +20:25:59 [ 49] [ 3] [418] +20:25:59 ============================================================================ +20:25:59 Calculate Source COMM Id = 2 +20:25:59 ============================================================================ +20:25:59 + + +waiting on router queue for slot.... +20:26:10 ============================================================================ +20:26:10 Slot Id : <148> +20:26:10 Transaction Type : REQUEST +20:26:10 Received From : +20:26:10 ============================================================================ +20:26:10 FNo. Len. Field Value +20:26:10 ============================================================================ +20:26:10 [ 1] [ 4] [0800] +20:26:10 [ 7] [ 10] [0320012519] +20:26:10 [ 11] [ 6] [158206] +20:26:10 [ 70] [ 3] [301] +20:26:10 ============================================================================ +20:26:10 + + +waiting on router queue for slot.... +20:26:10 Sending to : +20:26:10 ============================================================================ +20:26:10 ============================================================================ +20:26:10 Slot Id : <148> +20:26:10 Transaction Type : RESPONSE +20:26:10 Received From : +20:26:10 ============================================================================ +20:26:10 FNo. Len. Field Value +20:26:10 ============================================================================ +20:26:10 [ 1] [ 4] [0810] +20:26:10 [ 7] [ 10] [0320012519] +20:26:10 [ 11] [ 6] [158206] +20:26:10 [ 39] [ 2] [00] +20:26:10 [ 70] [ 3] [301] +20:26:10 ============================================================================ +20:26:10 Calculate Source COMM Id = 2 +20:26:10 ============================================================================ +20:26:10 + + +waiting on router queue for slot.... +20:26:11 ============================================================================ +20:26:11 Slot Id : <119> +20:26:11 Transaction Type : REQUEST +20:26:11 Received From : +20:26:11 ============================================================================ +20:26:11 FNo. Len. Field Value +20:26:11 ============================================================================ +20:26:11 [ 1] [ 4] [0800] +20:26:11 [ 2] [ 5] [02531] +20:26:11 [ 3] [ 6] [579208] +20:26:11 [ 7] [ 10] [0320132611] +20:26:11 [ 11] [ 6] [807598] +20:26:11 [ 15] [ 10] [0320132611] +20:26:11 [ 37] [ 11] [57920807598] +20:26:11 [ 70] [ 3] [001] +20:26:11 ============================================================================ +20:26:11 + + +waiting on router queue for slot.... +20:26:11 ============================================================================ +20:26:11 Slot Id : <119> +20:26:11 Transaction Type : RESPONSE +20:26:11 Received From : +20:26:11 ============================================================================ +20:26:11 FNo. Len. Field Value +20:26:11 ============================================================================ +20:26:11 [ 1] [ 4] [0810] +20:26:11 [ 7] [ 10] [0320132611] +20:26:11 [ 11] [ 6] [807598] +20:26:11 [ 15] [ 4] [0320] +20:26:11 [ 37] [ 12] [57920807598] +20:26:11 [ 39] [ 2] [00] +20:26:11 [ 70] [ 3] [001] +20:26:11 ============================================================================ +20:26:11 Sending to : +20:26:11 ============================================================================ +20:26:11 + + +waiting on router queue for slot.... +20:26:21 ============================================================================ +20:26:21 Slot Id : <176> +20:26:21 Transaction Type : REQUEST +20:26:21 Received From : +20:26:21 ============================================================================ +20:26:21 FNo. Len. Field Value +20:26:21 ============================================================================ +20:26:21 [ 1] [ 4] [0800] +20:26:21 [ 7] [ 10] [0320132412] +20:26:21 [ 11] [ 6] [075017] +20:26:21 [ 37] [ 12] [57920075017] +20:26:21 [ 70] [ 3] [301] +20:26:21 ============================================================================ +20:26:21 + + +waiting on router queue for slot.... +20:26:21 Sending to : +20:26:21 ============================================================================ +20:26:21 ============================================================================ +20:26:21 Slot Id : <176> +20:26:21 Transaction Type : RESPONSE +20:26:21 Received From : +20:26:21 ============================================================================ +20:26:21 FNo. Len. Field Value +20:26:21 ============================================================================ +20:26:21 [ 1] [ 4] [0810] +20:26:21 [ 7] [ 10] [0320132412] +20:26:21 [ 11] [ 6] [075017] +20:26:21 [ 37] [ 12] [579200750170] +20:26:21 [ 39] [ 2] [00] +20:26:21 [ 70] [ 3] [810] +20:26:21 ============================================================================ +20:26:21 Calculate Source COMM Id = 4 +20:26:21 ============================================================================ +20:26:21 + + +waiting on router queue for slot.... +20:26:21 ============================================================================ +20:26:21 Slot Id : <144> +20:26:21 Transaction Type : REQUEST +20:26:21 Received From : +20:26:21 ============================================================================ +20:26:21 FNo. Len. Field Value +20:26:21 ============================================================================ +20:26:21 [ 1] [ 4] [0800] +20:26:21 [ 7] [ 10] [0320012530] +20:26:21 [ 11] [ 6] [158207] +20:26:21 [ 70] [ 3] [301] +20:26:21 ============================================================================ +20:26:21 + + +waiting on router queue for slot.... +20:26:21 Sending to : +20:26:21 ============================================================================ +20:26:21 ============================================================================ +20:26:21 Slot Id : <144> +20:26:21 Transaction Type : RESPONSE +20:26:21 Received From : +20:26:21 ============================================================================ +20:26:21 FNo. Len. Field Value +20:26:21 ============================================================================ +20:26:21 [ 1] [ 4] [0810] +20:26:21 [ 7] [ 10] [0320012530] +20:26:21 [ 11] [ 6] [158207] +20:26:21 [ 39] [ 2] [00] +20:26:21 [ 70] [ 3] [301] +20:26:21 ============================================================================ +20:26:21 Calculate Source COMM Id = 2 +20:26:21 ============================================================================ +20:26:21 + + +waiting on router queue for slot.... +20:26:29 ============================================================================ +20:26:29 Slot Id : <187> +20:26:29 Transaction Type : REQUEST +20:26:29 Received From : +20:26:29 ============================================================================ +20:26:29 FNo. Len. Field Value +20:26:29 ============================================================================ +20:26:29 [ 1] [ 4] [0200] +20:26:29 [ 2] [ 16] [1808930200026193] +20:26:29 [ 3] [ 6] [010000] +20:26:29 [ 4] [ 12] [000010000000] +20:26:29 [ 7] [ 10] [0320202421] +20:26:29 [ 11] [ 6] [957127] +20:26:29 [ 12] [ 6] [202421] +20:26:29 [ 13] [ 4] [0320] +20:26:29 [ 15] [ 4] [0320] +20:26:29 [ 18] [ 4] [6011] +20:26:29 [ 19] [ 3] [418] +20:26:29 [ 22] [ 3] [021] +20:26:29 [ 25] [ 2] [01] +20:26:29 [ 28] [ 9] [D00002000] +20:26:29 [ 32] [ 6] [668899] +20:26:29 [ 35] [ 27] [1808930200026193=1803500269] +20:26:29 [ 37] [ 12] [507902148148] +20:26:29 [ 41] [ 8] [03020024] +20:26:29 [ 42] [ 15] [APT ] +20:26:29 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +20:26:29 [ 49] [ 3] [418] +20:26:29 [ 52] [ 16] [8FBD7891AC42BAE2] +20:26:29 ============================================================================ +20:26:29 + + +waiting on router queue for slot.... +20:26:29 Sending to : +20:26:29 ============================================================================ +20:26:29 Sending to : +20:26:29 ============================================================================ +20:26:30 ============================================================================ +20:26:30 Slot Id : <187> +20:26:30 Transaction Type : REQUEST +20:26:30 Received From : +20:26:30 ============================================================================ +20:26:30 FNo. Len. Field Value +20:26:30 ============================================================================ +20:26:30 [ 1] [ 4] [0200] +20:26:30 [ 2] [ 16] [1808930200026193] +20:26:30 [ 3] [ 6] [010000] +20:26:30 [ 4] [ 12] [000010000000] +20:26:30 [ 7] [ 10] [0320202421] +20:26:30 [ 11] [ 6] [957127] +20:26:30 [ 12] [ 6] [202421] +20:26:30 [ 13] [ 4] [0320] +20:26:30 [ 15] [ 4] [0320] +20:26:30 [ 18] [ 4] [6011] +20:26:30 [ 19] [ 3] [418] +20:26:30 [ 22] [ 3] [021] +20:26:30 [ 25] [ 2] [01] +20:26:30 [ 28] [ 9] [D00002000] +20:26:30 [ 32] [ 6] [668899] +20:26:30 [ 35] [ 27] [1808930200026193=1803500269] +20:26:30 [ 37] [ 12] [507902148148] +20:26:30 [ 41] [ 8] [03020024] +20:26:30 [ 42] [ 15] [APT ] +20:26:30 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +20:26:30 [ 49] [ 3] [418] +20:26:30 [ 52] [ 16] [8FBD7891AC42BAE2] +20:26:30 ============================================================================ +20:26:30 + + +waiting on router queue for slot.... +20:26:30 Sending to : +20:26:30 ============================================================================ +20:26:30 ============================================================================ +20:26:30 Slot Id : <187> +20:26:30 Transaction Type : REQUEST +20:26:30 Received From : +20:26:30 ============================================================================ +20:26:30 FNo. Len. Field Value +20:26:30 ============================================================================ +20:26:30 [ 1] [ 4] [0200] +20:26:30 [ 2] [ 16] [1808930200026193] +20:26:30 [ 3] [ 6] [010000] +20:26:30 [ 4] [ 12] [000010000000] +20:26:30 [ 7] [ 10] [0320202421] +20:26:30 [ 11] [ 6] [957127] +20:26:30 [ 12] [ 6] [202421] +20:26:30 [ 13] [ 4] [0320] +20:26:30 [ 15] [ 4] [0320] +20:26:30 [ 18] [ 4] [6011] +20:26:30 [ 19] [ 3] [418] +20:26:30 [ 22] [ 3] [021] +20:26:30 [ 25] [ 2] [01] +20:26:30 [ 28] [ 9] [D00002000] +20:26:30 [ 32] [ 6] [668899] +20:26:30 [ 35] [ 27] [1808930200026193=1803500269] +20:26:30 [ 37] [ 12] [507902148148] +20:26:30 [ 41] [ 8] [03020024] +20:26:30 [ 42] [ 15] [APT ] +20:26:30 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +20:26:30 [ 49] [ 3] [418] +20:26:30 [ 52] [ 16] [0A4235735D976585] +20:26:30 ============================================================================ +20:26:30 + + +waiting on router queue for slot.... +20:26:30 Sending to : <2> +20:26:30 ============================================================================ +20:26:31 ============================================================================ +20:26:31 Slot Id : <182> +20:26:31 Transaction Type : REQUEST +20:26:31 Received From : +20:26:31 ============================================================================ +20:26:31 FNo. Len. Field Value +20:26:31 ============================================================================ +20:26:31 [ 1] [ 4] [0800] +20:26:31 [ 7] [ 10] [0321033820] +20:26:31 [ 11] [ 6] [203820] +20:26:31 [ 37] [ 12] [57920203820] +20:26:31 [ 70] [ 3] [301] +20:26:31 ============================================================================ +20:26:31 + + +waiting on router queue for slot.... +20:26:31 Sending to : +20:26:31 ============================================================================ +20:26:31 ============================================================================ +20:26:31 Slot Id : <182> +20:26:31 Transaction Type : RESPONSE +20:26:31 Received From : +20:26:31 ============================================================================ +20:26:31 FNo. Len. Field Value +20:26:31 ============================================================================ +20:26:31 [ 1] [ 4] [0810] +20:26:31 [ 7] [ 10] [0321033820] +20:26:31 [ 11] [ 6] [203820] +20:26:31 [ 37] [ 12] [579202038200] +20:26:31 [ 39] [ 2] [00] +20:26:31 [ 70] [ 3] [810] +20:26:31 ============================================================================ +20:26:31 Calculate Source COMM Id = 6 +20:26:31 ============================================================================ +20:26:31 + + +waiting on router queue for slot.... +20:26:33 ============================================================================ +20:26:33 Slot Id : <187> +20:26:33 Transaction Type : RESPONSE +20:26:33 Received From : +20:26:33 ============================================================================ +20:26:33 FNo. Len. Field Value +20:26:33 ============================================================================ +20:26:33 [ 1] [ 4] [0210] +20:26:33 [ 2] [ 16] [1808930200026193] +20:26:33 [ 3] [ 6] [010000] +20:26:33 [ 4] [ 12] [000010000000] +20:26:33 [ 6] [ 12] [000010000000] +20:26:33 [ 7] [ 10] [0320202421] +20:26:33 [ 11] [ 6] [957127] +20:26:33 [ 12] [ 6] [202421] +20:26:33 [ 13] [ 4] [0320] +20:26:33 [ 18] [ 4] [6011] +20:26:33 [ 19] [ 3] [418] +20:26:33 [ 22] [ 3] [021] +20:26:33 [ 32] [ 6] [668899] +20:26:33 [ 35] [ 27] [1808930200026193=1803500269] +20:26:33 [ 37] [ 12] [507902148148] +20:26:33 [ 38] [ 6] [957127] +20:26:33 [ 39] [ 2] [51] +20:26:33 [ 41] [ 8] [03020024] +20:26:33 [ 49] [ 3] [418] +20:26:33 [ 52] [ 16] [0A4235735D976585] +20:26:33 ============================================================================ +20:26:33 Sending to : +20:26:33 ============================================================================ +20:26:33 + + +waiting on router queue for slot.... +20:26:34 ============================================================================ +20:26:34 Slot Id : <187> +20:26:34 Transaction Type : RESPONSE +20:26:34 Received From : +20:26:34 ============================================================================ +20:26:34 FNo. Len. Field Value +20:26:34 ============================================================================ +20:26:34 [ 1] [ 4] [0210] +20:26:34 [ 2] [ 16] [1808930200026193] +20:26:34 [ 3] [ 6] [010000] +20:26:34 [ 4] [ 12] [000010000000] +20:26:34 [ 6] [ 12] [000010000000] +20:26:34 [ 7] [ 10] [0320202421] +20:26:34 [ 11] [ 6] [957127] +20:26:34 [ 12] [ 6] [202421] +20:26:34 [ 13] [ 4] [0320] +20:26:34 [ 18] [ 4] [6011] +20:26:34 [ 19] [ 3] [418] +20:26:34 [ 22] [ 3] [021] +20:26:34 [ 32] [ 6] [668899] +20:26:34 [ 35] [ 27] [1808930200026193=1803500269] +20:26:34 [ 37] [ 12] [507902148148] +20:26:34 [ 38] [ 6] [957127] +20:26:34 [ 39] [ 2] [51] +20:26:34 [ 41] [ 8] [03020024] +20:26:34 [ 49] [ 3] [418] +20:26:34 [ 52] [ 16] [0A4235735D976585] +20:26:34 ============================================================================ +20:26:34 Calculate Source COMM Id = 4 +20:26:34 ============================================================================ +20:26:34 + + +waiting on router queue for slot.... +20:26:43 ============================================================================ +20:26:43 Slot Id : <160> +20:26:43 Transaction Type : REQUEST +20:26:43 Received From : +20:26:43 ============================================================================ +20:26:43 FNo. Len. Field Value +20:26:43 ============================================================================ +20:26:43 [ 1] [ 4] [0800] +20:26:43 [ 7] [ 10] [0320012551] +20:26:43 [ 11] [ 6] [158208] +20:26:43 [ 70] [ 3] [301] +20:26:43 ============================================================================ +20:26:43 + + +waiting on router queue for slot.... +20:26:43 Sending to : +20:26:43 ============================================================================ +20:26:43 ============================================================================ +20:26:43 Slot Id : <160> +20:26:43 Transaction Type : RESPONSE +20:26:43 Received From : +20:26:43 ============================================================================ +20:26:43 FNo. Len. Field Value +20:26:43 ============================================================================ +20:26:43 [ 1] [ 4] [0810] +20:26:43 [ 7] [ 10] [0320012551] +20:26:43 [ 11] [ 6] [158208] +20:26:43 [ 39] [ 2] [00] +20:26:43 [ 70] [ 3] [301] +20:26:43 ============================================================================ +20:26:43 Calculate Source COMM Id = 2 +20:26:43 ============================================================================ +20:26:43 + + +waiting on router queue for slot.... +20:26:53 ============================================================================ +20:26:53 Slot Id : <163> +20:26:53 Transaction Type : REQUEST +20:26:53 Received From : +20:26:53 ============================================================================ +20:26:53 FNo. Len. Field Value +20:26:53 ============================================================================ +20:26:53 [ 1] [ 4] [0800] +20:26:53 [ 7] [ 10] [0320012602] +20:26:53 [ 11] [ 6] [158209] +20:26:53 [ 70] [ 3] [301] +20:26:53 ============================================================================ +20:26:53 + + +waiting on router queue for slot.... +20:26:53 Sending to : +20:26:53 ============================================================================ +20:26:53 ============================================================================ +20:26:53 Slot Id : <163> +20:26:53 Transaction Type : RESPONSE +20:26:53 Received From : +20:26:53 ============================================================================ +20:26:53 FNo. Len. Field Value +20:26:53 ============================================================================ +20:26:53 [ 1] [ 4] [0810] +20:26:53 [ 7] [ 10] [0320012602] +20:26:53 [ 11] [ 6] [158209] +20:26:53 [ 39] [ 2] [00] +20:26:53 [ 70] [ 3] [301] +20:26:53 ============================================================================ +20:26:53 Calculate Source COMM Id = 2 +20:26:53 ============================================================================ +20:26:53 + + +waiting on router queue for slot.... +20:27:03 ============================================================================ +20:27:03 Slot Id : <204> +20:27:03 Transaction Type : REQUEST +20:27:03 Received From : +20:27:03 ============================================================================ +20:27:03 FNo. Len. Field Value +20:27:03 ============================================================================ +20:27:03 [ 1] [ 4] [0200] +20:27:03 [ 2] [ 16] [6213545001064199] +20:27:03 [ 3] [ 6] [010000] +20:27:03 [ 4] [ 12] [000010000000] +20:27:03 [ 7] [ 10] [0320202455] +20:27:03 [ 11] [ 6] [957134] +20:27:03 [ 12] [ 6] [202455] +20:27:03 [ 13] [ 4] [0320] +20:27:03 [ 15] [ 4] [0320] +20:27:03 [ 18] [ 4] [6011] +20:27:03 [ 19] [ 3] [418] +20:27:03 [ 22] [ 3] [021] +20:27:03 [ 25] [ 2] [01] +20:27:03 [ 28] [ 9] [D00002000] +20:27:03 [ 32] [ 6] [668899] +20:27:03 [ 35] [ 32] [6213545001064199=491212016419183] +20:27:03 [ 37] [ 12] [507902148150] +20:27:03 [ 41] [ 8] [03020024] +20:27:03 [ 42] [ 15] [APT ] +20:27:03 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +20:27:03 [ 49] [ 3] [418] +20:27:03 [ 52] [ 16] [28711B19E7AB2274] +20:27:03 ============================================================================ +20:27:03 + + +waiting on router queue for slot.... +20:27:03 Sending to : +20:27:03 ============================================================================ +20:27:03 Sending to : +20:27:03 ============================================================================ +20:27:04 ============================================================================ +20:27:04 Slot Id : <203> +20:27:04 Transaction Type : REQUEST +20:27:04 Received From : +20:27:04 ============================================================================ +20:27:04 FNo. Len. Field Value +20:27:04 ============================================================================ +20:27:04 [ 1] [ 4] [0800] +20:27:04 [ 7] [ 10] [0320012612] +20:27:04 [ 11] [ 6] [158210] +20:27:04 [ 70] [ 3] [301] +20:27:04 ============================================================================ +20:27:04 + + +waiting on router queue for slot.... +20:27:04 Sending to : +20:27:04 ============================================================================ +20:27:04 ============================================================================ +20:27:04 Slot Id : <203> +20:27:04 Transaction Type : RESPONSE +20:27:04 Received From : +20:27:04 ============================================================================ +20:27:04 FNo. Len. Field Value +20:27:04 ============================================================================ +20:27:04 [ 1] [ 4] [0810] +20:27:04 [ 7] [ 10] [0320012612] +20:27:04 [ 11] [ 6] [158210] +20:27:04 [ 39] [ 2] [00] +20:27:04 [ 70] [ 3] [301] +20:27:04 ============================================================================ +20:27:04 Calculate Source COMM Id = 2 +20:27:04 ============================================================================ +20:27:04 + + +waiting on router queue for slot.... +20:27:04 ============================================================================ +20:27:04 Slot Id : <204> +20:27:04 Transaction Type : REQUEST +20:27:04 Received From : +20:27:04 ============================================================================ +20:27:04 FNo. Len. Field Value +20:27:04 ============================================================================ +20:27:04 [ 1] [ 4] [0200] +20:27:04 [ 2] [ 16] [6213545001064199] +20:27:04 [ 3] [ 6] [010000] +20:27:04 [ 4] [ 12] [000010000000] +20:27:04 [ 7] [ 10] [0320202455] +20:27:04 [ 11] [ 6] [957134] +20:27:04 [ 12] [ 6] [202455] +20:27:04 [ 13] [ 4] [0320] +20:27:04 [ 15] [ 4] [0320] +20:27:04 [ 18] [ 4] [6011] +20:27:04 [ 19] [ 3] [418] +20:27:04 [ 22] [ 3] [021] +20:27:04 [ 25] [ 2] [01] +20:27:04 [ 28] [ 9] [D00002000] +20:27:04 [ 32] [ 6] [668899] +20:27:04 [ 35] [ 32] [6213545001064199=491212016419183] +20:27:04 [ 37] [ 12] [507902148150] +20:27:04 [ 41] [ 8] [03020024] +20:27:04 [ 42] [ 15] [APT ] +20:27:04 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +20:27:04 [ 49] [ 3] [418] +20:27:04 [ 52] [ 16] [28711B19E7AB2274] +20:27:04 ============================================================================ +20:27:04 + + +waiting on router queue for slot.... +20:27:04 Sending to : +20:27:04 ============================================================================ +20:27:04 ============================================================================ +20:27:04 Slot Id : <204> +20:27:04 Transaction Type : REQUEST +20:27:04 Received From : +20:27:04 ============================================================================ +20:27:04 FNo. Len. Field Value +20:27:04 ============================================================================ +20:27:04 [ 1] [ 4] [0200] +20:27:04 [ 2] [ 16] [6213545001064199] +20:27:04 [ 3] [ 6] [010000] +20:27:04 [ 4] [ 12] [000010000000] +20:27:04 [ 7] [ 10] [0320202455] +20:27:04 [ 11] [ 6] [957134] +20:27:04 [ 12] [ 6] [202455] +20:27:04 [ 13] [ 4] [0320] +20:27:04 [ 15] [ 4] [0320] +20:27:04 [ 18] [ 4] [6011] +20:27:04 [ 19] [ 3] [418] +20:27:04 [ 22] [ 3] [021] +20:27:04 [ 25] [ 2] [01] +20:27:04 [ 28] [ 9] [D00002000] +20:27:04 [ 32] [ 6] [668899] +20:27:04 [ 35] [ 32] [6213545001064199=491212016419183] +20:27:04 [ 37] [ 12] [507902148150] +20:27:04 [ 41] [ 8] [03020024] +20:27:04 [ 42] [ 15] [APT ] +20:27:04 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +20:27:04 [ 49] [ 3] [418] +20:27:04 [ 52] [ 16] [CFB89EF08004C884] +20:27:04 ============================================================================ +20:27:04 + + +waiting on router queue for slot.... +20:27:04 Sending to : <0> +20:27:04 ============================================================================ +20:27:04 ============================================================================ +20:27:04 Slot Id : <204> +20:27:04 Transaction Type : RESPONSE +20:27:04 Received From : +20:27:04 ============================================================================ +20:27:04 FNo. Len. Field Value +20:27:04 ============================================================================ +20:27:04 [ 1] [ 4] [0210] +20:27:04 [ 2] [ 16] [6213545001064199] +20:27:04 [ 3] [ 6] [010000] +20:27:04 [ 4] [ 12] [000010000000] +20:27:04 [ 7] [ 10] [0320202455] +20:27:04 [ 11] [ 6] [957134] +20:27:04 [ 12] [ 6] [202455] +20:27:04 [ 13] [ 4] [0320] +20:27:04 [ 15] [ 4] [0320] +20:27:04 [ 18] [ 4] [6011] +20:27:04 [ 19] [ 3] [418] +20:27:04 [ 32] [ 6] [668899] +20:27:04 [ 35] [ 32] [6213545001064199=491212016419183] +20:27:04 [ 37] [ 12] [507902148150] +20:27:04 [ 38] [ 6] [756601] +20:27:04 [ 39] [ 2] [00] +20:27:04 [ 41] [ 8] [03020024] +20:27:04 [ 49] [ 3] [418] +20:27:04 [ 54] [ 40] [0001418C0000963298710002418C000086129871] +20:27:04 ============================================================================ +20:27:04 Sending to : +20:27:04 ============================================================================ +20:27:04 + + +waiting on router queue for slot.... +20:27:05 ============================================================================ +20:27:05 Slot Id : <179> +20:27:05 Transaction Type : REQUEST +20:27:05 Received From : +20:27:05 ============================================================================ +20:27:05 FNo. Len. Field Value +20:27:05 ============================================================================ +20:27:05 [ 1] [ 4] [0200] +20:27:05 [ 2] [ 16] [6213544000678901] +20:27:05 [ 3] [ 6] [010000] +20:27:05 [ 4] [ 12] [000020000000] +20:27:05 [ 7] [ 10] [0320202456] +20:27:05 [ 11] [ 6] [957135] +20:27:05 [ 12] [ 6] [202456] +20:27:05 [ 13] [ 4] [0320] +20:27:05 [ 15] [ 4] [0320] +20:27:05 [ 18] [ 4] [6011] +20:27:05 [ 19] [ 3] [418] +20:27:05 [ 22] [ 3] [021] +20:27:05 [ 25] [ 2] [01] +20:27:05 [ 28] [ 9] [D00002000] +20:27:05 [ 32] [ 6] [668899] +20:27:05 [ 35] [ 32] [6213544000678901=491212017890455] +20:27:05 [ 37] [ 12] [507901955729] +20:27:05 [ 41] [ 8] [03020018] +20:27:05 [ 42] [ 15] [APT ] +20:27:05 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:27:05 [ 49] [ 3] [418] +20:27:05 [ 52] [ 16] [BFEDE2A4BDA298FC] +20:27:05 ============================================================================ +20:27:05 + + +waiting on router queue for slot.... +20:27:05 Sending to : +20:27:05 ============================================================================ +20:27:05 Sending to : +20:27:05 ============================================================================ +20:27:05 ============================================================================ +20:27:05 Slot Id : <179> +20:27:05 Transaction Type : REQUEST +20:27:05 Received From : +20:27:05 ============================================================================ +20:27:05 FNo. Len. Field Value +20:27:05 ============================================================================ +20:27:05 [ 1] [ 4] [0200] +20:27:05 [ 2] [ 16] [6213544000678901] +20:27:05 [ 3] [ 6] [010000] +20:27:05 [ 4] [ 12] [000020000000] +20:27:05 [ 7] [ 10] [0320202456] +20:27:05 [ 11] [ 6] [957135] +20:27:05 [ 12] [ 6] [202456] +20:27:05 [ 13] [ 4] [0320] +20:27:05 [ 15] [ 4] [0320] +20:27:05 [ 18] [ 4] [6011] +20:27:05 [ 19] [ 3] [418] +20:27:05 [ 22] [ 3] [021] +20:27:05 [ 25] [ 2] [01] +20:27:05 [ 28] [ 9] [D00002000] +20:27:05 [ 32] [ 6] [668899] +20:27:05 [ 35] [ 32] [6213544000678901=491212017890455] +20:27:05 [ 37] [ 12] [507901955729] +20:27:05 [ 41] [ 8] [03020018] +20:27:05 [ 42] [ 15] [APT ] +20:27:05 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:27:05 [ 49] [ 3] [418] +20:27:05 [ 52] [ 16] [BFEDE2A4BDA298FC] +20:27:05 ============================================================================ +20:27:05 + + +waiting on router queue for slot.... +20:27:05 Sending to : +20:27:05 ============================================================================ +20:27:05 ============================================================================ +20:27:05 Slot Id : <179> +20:27:05 Transaction Type : REQUEST +20:27:05 Received From : +20:27:05 ============================================================================ +20:27:05 FNo. Len. Field Value +20:27:05 ============================================================================ +20:27:05 [ 1] [ 4] [0200] +20:27:05 [ 2] [ 16] [6213544000678901] +20:27:05 [ 3] [ 6] [010000] +20:27:05 [ 4] [ 12] [000020000000] +20:27:05 [ 7] [ 10] [0320202456] +20:27:05 [ 11] [ 6] [957135] +20:27:05 [ 12] [ 6] [202456] +20:27:05 [ 13] [ 4] [0320] +20:27:05 [ 15] [ 4] [0320] +20:27:05 [ 18] [ 4] [6011] +20:27:05 [ 19] [ 3] [418] +20:27:05 [ 22] [ 3] [021] +20:27:05 [ 25] [ 2] [01] +20:27:05 [ 28] [ 9] [D00002000] +20:27:05 [ 32] [ 6] [668899] +20:27:05 [ 35] [ 32] [6213544000678901=491212017890455] +20:27:05 [ 37] [ 12] [507901955729] +20:27:05 [ 41] [ 8] [03020018] +20:27:05 [ 42] [ 15] [APT ] +20:27:05 [ 43] [ 40] [ SHOW ROOM WANGSAI CHANTHA] +20:27:05 [ 49] [ 3] [418] +20:27:05 [ 52] [ 16] [2464ACBCDA5E258C] +20:27:05 ============================================================================ +20:27:05 + + +waiting on router queue for slot.... +20:27:05 Sending to : <0> +20:27:05 ============================================================================ +20:27:06 ============================================================================ +20:27:06 Slot Id : <204> +20:27:06 Transaction Type : RESPONSE +20:27:06 Received From : +20:27:06 ============================================================================ +20:27:06 FNo. Len. Field Value +20:27:06 ============================================================================ +20:27:06 [ 1] [ 4] [0210] +20:27:06 [ 2] [ 16] [6213545001064199] +20:27:06 [ 3] [ 6] [010000] +20:27:06 [ 4] [ 12] [000010000000] +20:27:06 [ 7] [ 10] [0320202455] +20:27:06 [ 11] [ 6] [957134] +20:27:06 [ 12] [ 6] [202455] +20:27:06 [ 13] [ 4] [0320] +20:27:06 [ 15] [ 4] [0320] +20:27:06 [ 18] [ 4] [6011] +20:27:06 [ 19] [ 3] [418] +20:27:06 [ 32] [ 6] [668899] +20:27:06 [ 35] [ 32] [6213545001064199=491212016419183] +20:27:06 [ 37] [ 12] [507902148150] +20:27:06 [ 38] [ 6] [756601] +20:27:06 [ 39] [ 2] [00] +20:27:06 [ 41] [ 8] [03020024] +20:27:06 [ 49] [ 3] [418] +20:27:06 [ 54] [ 40] [0001418C0000963298710002418C000086129871] +20:27:06 ============================================================================ +20:27:06 Calculate Source COMM Id = 4 +20:27:06 ============================================================================ +20:27:06 + + +waiting on router queue for slot.... +20:27:06 ============================================================================ +20:27:06 Slot Id : <179> +20:27:06 Transaction Type : RESPONSE +20:27:06 Received From : +20:27:06 ============================================================================ +20:27:06 FNo. Len. Field Value +20:27:06 ============================================================================ +20:27:06 [ 1] [ 4] [0210] +20:27:06 [ 2] [ 16] [6213544000678901] +20:27:06 [ 3] [ 6] [010000] +20:27:06 [ 4] [ 12] [000020000000] +20:27:06 [ 7] [ 10] [0320202456] +20:27:06 [ 11] [ 6] [957135] +20:27:06 [ 12] [ 6] [202456] +20:27:06 [ 13] [ 4] [0320] +20:27:06 [ 15] [ 4] [0320] +20:27:06 [ 18] [ 4] [6011] +20:27:06 [ 19] [ 3] [418] +20:27:06 [ 32] [ 6] [668899] +20:27:06 [ 35] [ 32] [6213544000678901=491212017890455] +20:27:06 [ 37] [ 12] [507901955729] +20:27:06 [ 38] [ 6] [443549] +20:27:06 [ 39] [ 2] [00] +20:27:06 [ 41] [ 8] [03020018] +20:27:06 [ 49] [ 3] [418] +20:27:06 [ 54] [ 40] [0001418C0000471436020002418C000026943602] +20:27:06 ============================================================================ +20:27:06 Sending to : +20:27:06 ============================================================================ +20:27:06 + + +waiting on router queue for slot.... +20:27:08 ============================================================================ +20:27:08 Slot Id : <179> +20:27:08 Transaction Type : RESPONSE +20:27:08 Received From : +20:27:08 ============================================================================ +20:27:08 FNo. Len. Field Value +20:27:08 ============================================================================ +20:27:08 [ 1] [ 4] [0210] +20:27:08 [ 2] [ 16] [6213544000678901] +20:27:08 [ 3] [ 6] [010000] +20:27:08 [ 4] [ 12] [000020000000] +20:27:08 [ 7] [ 10] [0320202456] +20:27:08 [ 11] [ 6] [957135] +20:27:08 [ 12] [ 6] [202456] +20:27:08 [ 13] [ 4] [0320] +20:27:08 [ 15] [ 4] [0320] +20:27:08 [ 18] [ 4] [6011] +20:27:08 [ 19] [ 3] [418] +20:27:08 [ 32] [ 6] [668899] +20:27:08 [ 35] [ 32] [6213544000678901=491212017890455] +20:27:08 [ 37] [ 12] [507901955729] +20:27:08 [ 38] [ 6] [443549] +20:27:08 [ 39] [ 2] [00] +20:27:08 [ 41] [ 8] [03020018] +20:27:08 [ 49] [ 3] [418] +20:27:08 [ 54] [ 40] [0001418C0000471436020002418C000026943602] +20:27:08 ============================================================================ +20:27:08 Calculate Source COMM Id = 4 +20:27:08 ============================================================================ +20:27:08 + + +waiting on router queue for slot.... +20:27:13 ============================================================================ +20:27:13 Slot Id : <191> +20:27:13 Transaction Type : REQUEST +20:27:13 Received From : +20:27:13 ============================================================================ +20:27:13 FNo. Len. Field Value +20:27:13 ============================================================================ +20:27:13 [ 1] [ 4] [0800] +20:27:13 [ 2] [ 5] [02531] +20:27:13 [ 3] [ 6] [579208] +20:27:13 [ 7] [ 10] [0320132713] +20:27:13 [ 11] [ 6] [807599] +20:27:13 [ 15] [ 10] [0320132713] +20:27:13 [ 37] [ 11] [57920807599] +20:27:13 [ 70] [ 3] [001] +20:27:13 ============================================================================ +20:27:13 + + +waiting on router queue for slot.... +20:27:13 ============================================================================ +20:27:13 Slot Id : <191> +20:27:13 Transaction Type : RESPONSE +20:27:13 Received From : +20:27:13 ============================================================================ +20:27:13 FNo. Len. Field Value +20:27:13 ============================================================================ +20:27:13 [ 1] [ 4] [0810] +20:27:13 [ 7] [ 10] [0320132713] +20:27:13 [ 11] [ 6] [807599] +20:27:13 [ 15] [ 4] [0320] +20:27:13 [ 37] [ 12] [57920807599] +20:27:13 [ 39] [ 2] [00] +20:27:13 [ 70] [ 3] [001] +20:27:13 ============================================================================ +20:27:13 Sending to : +20:27:13 ============================================================================ +20:27:13 + + +waiting on router queue for slot.... +20:27:20 ============================================================================ +20:27:20 Slot Id : <192> +20:27:20 Transaction Type : REQUEST +20:27:20 Received From : +20:27:20 ============================================================================ +20:27:20 FNo. Len. Field Value +20:27:20 ============================================================================ +20:27:20 [ 1] [ 4] [0800] +20:27:20 [ 7] [ 10] [0320012629] +20:27:20 [ 11] [ 6] [158211] +20:27:20 [ 70] [ 3] [301] +20:27:20 ============================================================================ +20:27:20 + + +waiting on router queue for slot.... +20:27:20 Sending to : +20:27:20 ============================================================================ +20:27:20 ============================================================================ +20:27:20 Slot Id : <192> +20:27:20 Transaction Type : RESPONSE +20:27:20 Received From : +20:27:20 ============================================================================ +20:27:20 FNo. Len. Field Value +20:27:20 ============================================================================ +20:27:20 [ 1] [ 4] [0810] +20:27:20 [ 7] [ 10] [0320012629] +20:27:20 [ 11] [ 6] [158211] +20:27:20 [ 39] [ 2] [00] +20:27:20 [ 70] [ 3] [301] +20:27:20 ============================================================================ +20:27:20 Calculate Source COMM Id = 2 +20:27:20 ============================================================================ +20:27:20 + + +waiting on router queue for slot.... +20:27:35 ============================================================================ +20:27:35 Slot Id : <135> +20:27:35 Transaction Type : REQUEST +20:27:35 Received From : +20:27:35 ============================================================================ +20:27:35 FNo. Len. Field Value +20:27:35 ============================================================================ +20:27:35 [ 1] [ 4] [0800] +20:27:35 [ 7] [ 10] [0320012644] +20:27:35 [ 11] [ 6] [158212] +20:27:35 [ 70] [ 3] [301] +20:27:35 ============================================================================ +20:27:35 + + +waiting on router queue for slot.... +20:27:35 Sending to : +20:27:35 ============================================================================ +20:27:35 ============================================================================ +20:27:35 Slot Id : <135> +20:27:35 Transaction Type : RESPONSE +20:27:35 Received From : +20:27:35 ============================================================================ +20:27:35 FNo. Len. Field Value +20:27:35 ============================================================================ +20:27:35 [ 1] [ 4] [0810] +20:27:35 [ 7] [ 10] [0320012644] +20:27:35 [ 11] [ 6] [158212] +20:27:35 [ 39] [ 2] [00] +20:27:35 [ 70] [ 3] [301] +20:27:35 ============================================================================ +20:27:35 Calculate Source COMM Id = 2 +20:27:35 ============================================================================ +20:27:35 + + +waiting on router queue for slot.... +20:27:36 ============================================================================ +20:27:36 Slot Id : <156> +20:27:36 Transaction Type : REQUEST +20:27:36 Received From : +20:27:36 ============================================================================ +20:27:36 FNo. Len. Field Value +20:27:36 ============================================================================ +20:27:36 [ 1] [ 4] [0800] +20:27:36 [ 7] [ 10] [0321033925] +20:27:36 [ 11] [ 6] [203925] +20:27:36 [ 37] [ 12] [57920203925] +20:27:36 [ 70] [ 3] [301] +20:27:36 ============================================================================ +20:27:36 + + +waiting on router queue for slot.... +20:27:36 Sending to : +20:27:36 ============================================================================ +20:27:36 ============================================================================ +20:27:36 Slot Id : <156> +20:27:36 Transaction Type : RESPONSE +20:27:36 Received From : +20:27:36 ============================================================================ +20:27:36 FNo. Len. Field Value +20:27:36 ============================================================================ +20:27:36 [ 1] [ 4] [0810] +20:27:36 [ 7] [ 10] [0321033925] +20:27:36 [ 11] [ 6] [203925] +20:27:36 [ 37] [ 12] [579202039250] +20:27:36 [ 39] [ 2] [00] +20:27:36 [ 70] [ 3] [810] +20:27:36 ============================================================================ +20:27:36 Calculate Source COMM Id = 6 +20:27:36 ============================================================================ +20:27:36 + + +waiting on router queue for slot.... +20:27:52 ============================================================================ +20:27:52 Slot Id : <190> +20:27:52 Transaction Type : REQUEST +20:27:52 Received From : +20:27:52 ============================================================================ +20:27:52 FNo. Len. Field Value +20:27:52 ============================================================================ +20:27:52 [ 1] [ 4] [0800] +20:27:52 [ 7] [ 10] [0320012700] +20:27:52 [ 11] [ 6] [158213] +20:27:52 [ 70] [ 3] [301] +20:27:52 ============================================================================ +20:27:52 + + +waiting on router queue for slot.... +20:27:52 Sending to : +20:27:52 ============================================================================ +20:27:52 ============================================================================ +20:27:52 Slot Id : <190> +20:27:52 Transaction Type : RESPONSE +20:27:52 Received From : +20:27:52 ============================================================================ +20:27:52 FNo. Len. Field Value +20:27:52 ============================================================================ +20:27:52 [ 1] [ 4] [0810] +20:27:52 [ 7] [ 10] [0320012700] +20:27:52 [ 11] [ 6] [158213] +20:27:52 [ 39] [ 2] [00] +20:27:52 [ 70] [ 3] [301] +20:27:52 ============================================================================ +20:27:52 Calculate Source COMM Id = 2 +20:27:52 ============================================================================ +20:27:52 + + +waiting on router queue for slot.... +20:27:54 ============================================================================ +20:27:54 Slot Id : <152> +20:27:54 Transaction Type : REQUEST +20:27:54 Received From : +20:27:54 ============================================================================ +20:27:54 FNo. Len. Field Value +20:27:54 ============================================================================ +20:27:54 [ 1] [ 4] [0200] +20:27:54 [ 2] [ 16] [6688990040063586] +20:27:54 [ 3] [ 6] [011000] +20:27:54 [ 4] [ 12] [000030000000] +20:27:54 [ 7] [ 10] [0320132702] +20:27:54 [ 11] [ 6] [271597] +20:27:54 [ 12] [ 6] [202702] +20:27:54 [ 13] [ 4] [0320] +20:27:54 [ 14] [ 4] [9801] +20:27:54 [ 15] [ 4] [0320] +20:27:54 [ 18] [ 4] [6011] +20:27:54 [ 19] [ 3] [418] +20:27:54 [ 22] [ 3] [021] +20:27:54 [ 25] [ 2] [01] +20:27:54 [ 28] [ 9] [D00002000] +20:27:54 [ 32] [ 6] [180893] +20:27:54 [ 35] [ 37] [6688990040063586=98011261301957700000] +20:27:54 [ 37] [ 12] [507913271597] +20:27:54 [ 41] [ 8] [0543VLSC] +20:27:54 [ 42] [ 15] [999999 ] +20:27:54 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +20:27:54 [ 49] [ 3] [418] +20:27:54 [ 52] [ 16] [EFADF9A0DF30B669] +20:27:54 ============================================================================ +20:27:54 + + +waiting on router queue for slot.... +20:27:54 Sending to : +20:27:54 ============================================================================ +20:27:54 Sending to : +20:27:54 ============================================================================ +20:27:54 ============================================================================ +20:27:54 Slot Id : <152> +20:27:54 Transaction Type : REQUEST +20:27:54 Received From : +20:27:54 ============================================================================ +20:27:54 FNo. Len. Field Value +20:27:54 ============================================================================ +20:27:54 [ 1] [ 4] [0200] +20:27:54 [ 2] [ 16] [6688990040063586] +20:27:54 [ 3] [ 6] [011000] +20:27:54 [ 4] [ 12] [000030000000] +20:27:54 [ 7] [ 10] [0320132702] +20:27:54 [ 11] [ 6] [271597] +20:27:54 [ 12] [ 6] [202702] +20:27:54 [ 13] [ 4] [0320] +20:27:54 [ 14] [ 4] [9801] +20:27:54 [ 15] [ 4] [0320] +20:27:54 [ 18] [ 4] [6011] +20:27:54 [ 19] [ 3] [418] +20:27:54 [ 22] [ 3] [021] +20:27:54 [ 25] [ 2] [01] +20:27:54 [ 28] [ 9] [D00002000] +20:27:54 [ 32] [ 6] [180893] +20:27:54 [ 35] [ 37] [6688990040063586=98011261301957700000] +20:27:54 [ 37] [ 12] [507913271597] +20:27:54 [ 41] [ 8] [0543VLSC] +20:27:54 [ 42] [ 15] [999999 ] +20:27:54 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +20:27:54 [ 49] [ 3] [418] +20:27:54 [ 52] [ 16] [EFADF9A0DF30B669] +20:27:54 ============================================================================ +20:27:54 + + +waiting on router queue for slot.... +20:27:54 Sending to : +20:27:54 ============================================================================ +20:27:54 ============================================================================ +20:27:54 Slot Id : <152> +20:27:54 Transaction Type : REQUEST +20:27:54 Received From : +20:27:54 ============================================================================ +20:27:54 FNo. Len. Field Value +20:27:54 ============================================================================ +20:27:54 [ 1] [ 4] [0200] +20:27:54 [ 2] [ 16] [6688990040063586] +20:27:54 [ 3] [ 6] [011000] +20:27:54 [ 4] [ 12] [000030000000] +20:27:54 [ 7] [ 10] [0320132702] +20:27:54 [ 11] [ 6] [271597] +20:27:54 [ 12] [ 6] [202702] +20:27:54 [ 13] [ 4] [0320] +20:27:54 [ 14] [ 4] [9801] +20:27:54 [ 15] [ 4] [0320] +20:27:54 [ 18] [ 4] [6011] +20:27:54 [ 19] [ 3] [418] +20:27:54 [ 22] [ 3] [021] +20:27:54 [ 25] [ 2] [01] +20:27:54 [ 28] [ 9] [D00002000] +20:27:54 [ 32] [ 6] [180893] +20:27:54 [ 35] [ 37] [6688990040063586=98011261301957700000] +20:27:54 [ 37] [ 12] [507913271597] +20:27:54 [ 41] [ 8] [0543VLSC] +20:27:54 [ 42] [ 15] [999999 ] +20:27:54 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +20:27:54 [ 49] [ 3] [418] +20:27:54 [ 52] [ 16] [9CE4B178ECA64202] +20:27:54 ============================================================================ +20:27:54 + + +waiting on router queue for slot.... +20:27:54 Sending to : <0> +20:27:54 ============================================================================ +20:27:54 ============================================================================ +20:27:54 Slot Id : <152> +20:27:54 Transaction Type : RESPONSE +20:27:54 Received From : +20:27:54 ============================================================================ +20:27:54 FNo. Len. Field Value +20:27:54 ============================================================================ +20:27:54 [ 1] [ 4] [0210] +20:27:54 [ 2] [ 16] [6688990040063586] +20:27:54 [ 3] [ 6] [011000] +20:27:54 [ 4] [ 12] [000030000000] +20:27:54 [ 7] [ 10] [0320132702] +20:27:54 [ 11] [ 6] [271597] +20:27:54 [ 12] [ 6] [202702] +20:27:54 [ 13] [ 4] [0320] +20:27:54 [ 15] [ 4] [0320] +20:27:54 [ 18] [ 4] [6011] +20:27:54 [ 19] [ 3] [418] +20:27:54 [ 22] [ 3] [021] +20:27:54 [ 32] [ 6] [180893] +20:27:54 [ 35] [ 37] [6688990040063586=98011261301957700000] +20:27:54 [ 37] [ 12] [507913271597] +20:27:54 [ 39] [ 2] [14] +20:27:54 [ 41] [ 8] [0543VLSC] +20:27:54 [ 49] [ 3] [418] +20:27:54 ============================================================================ +20:27:54 Sending to : +20:27:54 ============================================================================ +20:27:54 + + +waiting on router queue for slot.... +20:27:55 ============================================================================ +20:27:55 Slot Id : <152> +20:27:55 Transaction Type : RESPONSE +20:27:55 Received From : +20:27:55 ============================================================================ +20:27:55 FNo. Len. Field Value +20:27:55 ============================================================================ +20:27:55 [ 1] [ 4] [0210] +20:27:55 [ 2] [ 16] [6688990040063586] +20:27:55 [ 3] [ 6] [011000] +20:27:55 [ 4] [ 12] [000030000000] +20:27:55 [ 7] [ 10] [0320132702] +20:27:55 [ 11] [ 6] [271597] +20:27:55 [ 12] [ 6] [202702] +20:27:55 [ 13] [ 4] [0320] +20:27:55 [ 15] [ 4] [0320] +20:27:55 [ 18] [ 4] [6011] +20:27:55 [ 19] [ 3] [418] +20:27:55 [ 22] [ 3] [021] +20:27:55 [ 32] [ 6] [180893] +20:27:55 [ 35] [ 37] [6688990040063586=98011261301957700000] +20:27:55 [ 37] [ 12] [507913271597] +20:27:55 [ 39] [ 2] [14] +20:27:55 [ 41] [ 8] [0543VLSC] +20:27:55 [ 49] [ 3] [418] +20:27:55 ============================================================================ +20:27:55 Calculate Source COMM Id = 2 +20:27:55 ============================================================================ +20:27:55 + + +waiting on router queue for slot.... +20:28:08 ============================================================================ +20:28:08 Slot Id : <198> +20:28:08 Transaction Type : REQUEST +20:28:08 Received From : +20:28:08 ============================================================================ +20:28:08 FNo. Len. Field Value +20:28:08 ============================================================================ +20:28:08 [ 1] [ 4] [0800] +20:28:08 [ 7] [ 10] [0320012716] +20:28:08 [ 11] [ 6] [158214] +20:28:08 [ 70] [ 3] [301] +20:28:08 ============================================================================ +20:28:08 + + +waiting on router queue for slot.... +20:28:08 Sending to : +20:28:08 ============================================================================ +20:28:08 ============================================================================ +20:28:08 Slot Id : <198> +20:28:08 Transaction Type : RESPONSE +20:28:08 Received From : +20:28:08 ============================================================================ +20:28:08 FNo. Len. Field Value +20:28:08 ============================================================================ +20:28:08 [ 1] [ 4] [0810] +20:28:08 [ 7] [ 10] [0320012716] +20:28:08 [ 11] [ 6] [158214] +20:28:08 [ 39] [ 2] [00] +20:28:08 [ 70] [ 3] [301] +20:28:08 ============================================================================ +20:28:08 Calculate Source COMM Id = 2 +20:28:08 ============================================================================ +20:28:08 + + +waiting on router queue for slot.... +20:28:15 ============================================================================ +20:28:15 Slot Id : <196> +20:28:15 Transaction Type : REQUEST +20:28:15 Received From : +20:28:15 ============================================================================ +20:28:15 FNo. Len. Field Value +20:28:15 ============================================================================ +20:28:15 [ 1] [ 4] [0800] +20:28:15 [ 2] [ 5] [02531] +20:28:15 [ 3] [ 6] [579208] +20:28:15 [ 7] [ 10] [0320132815] +20:28:15 [ 11] [ 6] [807600] +20:28:15 [ 15] [ 10] [0320132815] +20:28:15 [ 37] [ 11] [57920807600] +20:28:15 [ 70] [ 3] [001] +20:28:15 ============================================================================ +20:28:15 + + +waiting on router queue for slot.... +20:28:15 ============================================================================ +20:28:15 Slot Id : <196> +20:28:15 Transaction Type : RESPONSE +20:28:15 Received From : +20:28:15 ============================================================================ +20:28:15 FNo. Len. Field Value +20:28:15 ============================================================================ +20:28:15 [ 1] [ 4] [0810] +20:28:15 [ 7] [ 10] [0320132815] +20:28:15 [ 11] [ 6] [807600] +20:28:15 [ 15] [ 4] [0320] +20:28:15 [ 37] [ 12] [57920807600] +20:28:15 [ 39] [ 2] [00] +20:28:15 [ 70] [ 3] [001] +20:28:15 ============================================================================ +20:28:15 Sending to : +20:28:15 ============================================================================ +20:28:15 + + +waiting on router queue for slot.... +20:28:20 ============================================================================ +20:28:20 Slot Id : <155> +20:28:20 Transaction Type : REQUEST +20:28:20 Received From : +20:28:20 ============================================================================ +20:28:20 FNo. Len. Field Value +20:28:20 ============================================================================ +20:28:20 [ 1] [ 4] [0800] +20:28:20 [ 7] [ 10] [0320012727] +20:28:20 [ 11] [ 6] [158215] +20:28:20 [ 70] [ 3] [301] +20:28:20 ============================================================================ +20:28:20 + + +waiting on router queue for slot.... +20:28:20 Sending to : +20:28:20 ============================================================================ +20:28:20 ============================================================================ +20:28:20 Slot Id : <155> +20:28:20 Transaction Type : RESPONSE +20:28:20 Received From : +20:28:20 ============================================================================ +20:28:20 FNo. Len. Field Value +20:28:20 ============================================================================ +20:28:20 [ 1] [ 4] [0810] +20:28:20 [ 7] [ 10] [0320012727] +20:28:20 [ 11] [ 6] [158215] +20:28:20 [ 39] [ 2] [00] +20:28:20 [ 70] [ 3] [301] +20:28:20 ============================================================================ +20:28:20 Calculate Source COMM Id = 2 +20:28:20 ============================================================================ +20:28:20 + + +waiting on router queue for slot.... +20:28:35 ============================================================================ +20:28:35 Slot Id : <181> +20:28:35 Transaction Type : REQUEST +20:28:35 Received From : +20:28:35 ============================================================================ +20:28:35 FNo. Len. Field Value +20:28:35 ============================================================================ +20:28:35 [ 1] [ 4] [0200] +20:28:35 [ 2] [ 16] [6688990040063586] +20:28:35 [ 3] [ 6] [010000] +20:28:35 [ 4] [ 12] [000050000000] +20:28:35 [ 7] [ 10] [0320132739] +20:28:35 [ 11] [ 6] [271599] +20:28:35 [ 12] [ 6] [202739] +20:28:35 [ 13] [ 4] [0320] +20:28:35 [ 14] [ 4] [9801] +20:28:35 [ 15] [ 4] [0320] +20:28:35 [ 18] [ 4] [6011] +20:28:35 [ 19] [ 3] [418] +20:28:35 [ 22] [ 3] [021] +20:28:35 [ 25] [ 2] [01] +20:28:35 [ 28] [ 9] [D00002000] +20:28:35 [ 32] [ 6] [180893] +20:28:35 [ 35] [ 37] [6688990040063586=98011261301957700000] +20:28:35 [ 37] [ 12] [507913271599] +20:28:35 [ 41] [ 8] [0543VLSC] +20:28:35 [ 42] [ 15] [999999 ] +20:28:35 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +20:28:35 [ 49] [ 3] [418] +20:28:35 [ 52] [ 16] [EFADF9A0DF30B669] +20:28:35 ============================================================================ +20:28:35 + + +waiting on router queue for slot.... +20:28:35 Sending to : +20:28:35 ============================================================================ +20:28:35 Sending to : +20:28:35 ============================================================================ +20:28:35 ============================================================================ +20:28:35 Slot Id : <214> +20:28:35 Transaction Type : REQUEST +20:28:35 Received From : +20:28:35 ============================================================================ +20:28:35 FNo. Len. Field Value +20:28:35 ============================================================================ +20:28:35 [ 1] [ 4] [0800] +20:28:35 [ 7] [ 10] [0320012743] +20:28:35 [ 11] [ 6] [158216] +20:28:35 [ 70] [ 3] [301] +20:28:35 ============================================================================ +20:28:35 + + +waiting on router queue for slot.... +20:28:35 Sending to : +20:28:35 ============================================================================ +20:28:35 ============================================================================ +20:28:35 Slot Id : <214> +20:28:35 Transaction Type : RESPONSE +20:28:35 Received From : +20:28:35 ============================================================================ +20:28:35 FNo. Len. Field Value +20:28:35 ============================================================================ +20:28:35 [ 1] [ 4] [0810] +20:28:35 [ 7] [ 10] [0320012743] +20:28:35 [ 11] [ 6] [158216] +20:28:35 [ 39] [ 2] [00] +20:28:35 [ 70] [ 3] [301] +20:28:35 ============================================================================ +20:28:35 Calculate Source COMM Id = 2 +20:28:35 ============================================================================ +20:28:35 + + +waiting on router queue for slot.... +20:28:35 ============================================================================ +20:28:35 Slot Id : <181> +20:28:35 Transaction Type : REQUEST +20:28:35 Received From : +20:28:35 ============================================================================ +20:28:35 FNo. Len. Field Value +20:28:35 ============================================================================ +20:28:35 [ 1] [ 4] [0200] +20:28:35 [ 2] [ 16] [6688990040063586] +20:28:35 [ 3] [ 6] [010000] +20:28:35 [ 4] [ 12] [000050000000] +20:28:35 [ 7] [ 10] [0320132739] +20:28:35 [ 11] [ 6] [271599] +20:28:35 [ 12] [ 6] [202739] +20:28:35 [ 13] [ 4] [0320] +20:28:35 [ 14] [ 4] [9801] +20:28:35 [ 15] [ 4] [0320] +20:28:35 [ 18] [ 4] [6011] +20:28:35 [ 19] [ 3] [418] +20:28:35 [ 22] [ 3] [021] +20:28:35 [ 25] [ 2] [01] +20:28:35 [ 28] [ 9] [D00002000] +20:28:35 [ 32] [ 6] [180893] +20:28:35 [ 35] [ 37] [6688990040063586=98011261301957700000] +20:28:35 [ 37] [ 12] [507913271599] +20:28:35 [ 41] [ 8] [0543VLSC] +20:28:35 [ 42] [ 15] [999999 ] +20:28:35 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +20:28:35 [ 49] [ 3] [418] +20:28:35 [ 52] [ 16] [EFADF9A0DF30B669] +20:28:35 ============================================================================ +20:28:35 + + +waiting on router queue for slot.... +20:28:35 Sending to : +20:28:35 ============================================================================ +20:28:35 ============================================================================ +20:28:35 Slot Id : <181> +20:28:35 Transaction Type : REQUEST +20:28:35 Received From : +20:28:35 ============================================================================ +20:28:35 FNo. Len. Field Value +20:28:35 ============================================================================ +20:28:35 [ 1] [ 4] [0200] +20:28:35 [ 2] [ 16] [6688990040063586] +20:28:35 [ 3] [ 6] [010000] +20:28:35 [ 4] [ 12] [000050000000] +20:28:35 [ 7] [ 10] [0320132739] +20:28:35 [ 11] [ 6] [271599] +20:28:35 [ 12] [ 6] [202739] +20:28:35 [ 13] [ 4] [0320] +20:28:35 [ 14] [ 4] [9801] +20:28:35 [ 15] [ 4] [0320] +20:28:35 [ 18] [ 4] [6011] +20:28:35 [ 19] [ 3] [418] +20:28:35 [ 22] [ 3] [021] +20:28:35 [ 25] [ 2] [01] +20:28:35 [ 28] [ 9] [D00002000] +20:28:35 [ 32] [ 6] [180893] +20:28:35 [ 35] [ 37] [6688990040063586=98011261301957700000] +20:28:35 [ 37] [ 12] [507913271599] +20:28:35 [ 41] [ 8] [0543VLSC] +20:28:35 [ 42] [ 15] [999999 ] +20:28:35 [ 43] [ 40] [ATM LAOS SECURITY COMPANY VIENTIANE CAP,] +20:28:35 [ 49] [ 3] [418] +20:28:35 [ 52] [ 16] [9CE4B178ECA64202] +20:28:35 ============================================================================ +20:28:35 + + +waiting on router queue for slot.... +20:28:35 Sending to : <0> +20:28:35 ============================================================================ +20:28:35 ============================================================================ +20:28:35 Slot Id : <181> +20:28:35 Transaction Type : RESPONSE +20:28:35 Received From : +20:28:35 ============================================================================ +20:28:35 FNo. Len. Field Value +20:28:35 ============================================================================ +20:28:35 [ 1] [ 4] [0210] +20:28:35 [ 2] [ 16] [6688990040063586] +20:28:35 [ 3] [ 6] [010000] +20:28:35 [ 4] [ 12] [000050000000] +20:28:35 [ 7] [ 10] [0320132739] +20:28:35 [ 11] [ 6] [271599] +20:28:35 [ 12] [ 6] [202739] +20:28:35 [ 13] [ 4] [0320] +20:28:35 [ 15] [ 4] [0320] +20:28:35 [ 18] [ 4] [6011] +20:28:35 [ 19] [ 3] [418] +20:28:35 [ 22] [ 3] [021] +20:28:35 [ 32] [ 6] [180893] +20:28:35 [ 35] [ 37] [6688990040063586=98011261301957700000] +20:28:35 [ 37] [ 12] [507913271599] +20:28:35 [ 39] [ 2] [14] +20:28:35 [ 41] [ 8] [0543VLSC] +20:28:35 [ 49] [ 3] [418] +20:28:35 ============================================================================ +20:28:35 Sending to : +20:28:35 ============================================================================ +20:28:35 + + +waiting on router queue for slot.... +20:28:36 ============================================================================ +20:28:36 Slot Id : <181> +20:28:36 Transaction Type : RESPONSE +20:28:36 Received From : +20:28:36 ============================================================================ +20:28:36 FNo. Len. Field Value +20:28:36 ============================================================================ +20:28:36 [ 1] [ 4] [0210] +20:28:36 [ 2] [ 16] [6688990040063586] +20:28:36 [ 3] [ 6] [010000] +20:28:36 [ 4] [ 12] [000050000000] +20:28:36 [ 7] [ 10] [0320132739] +20:28:36 [ 11] [ 6] [271599] +20:28:36 [ 12] [ 6] [202739] +20:28:36 [ 13] [ 4] [0320] +20:28:36 [ 15] [ 4] [0320] +20:28:36 [ 18] [ 4] [6011] +20:28:36 [ 19] [ 3] [418] +20:28:36 [ 22] [ 3] [021] +20:28:36 [ 32] [ 6] [180893] +20:28:36 [ 35] [ 37] [6688990040063586=98011261301957700000] +20:28:36 [ 37] [ 12] [507913271599] +20:28:36 [ 39] [ 2] [14] +20:28:36 [ 41] [ 8] [0543VLSC] +20:28:36 [ 49] [ 3] [418] +20:28:36 ============================================================================ +20:28:36 Calculate Source COMM Id = 2 +20:28:36 ============================================================================ +20:28:36 + + +waiting on router queue for slot.... +20:28:41 ============================================================================ +20:28:41 Slot Id : <165> +20:28:41 Transaction Type : REQUEST +20:28:41 Received From : +20:28:41 ============================================================================ +20:28:41 FNo. Len. Field Value +20:28:41 ============================================================================ +20:28:41 [ 1] [ 4] [0800] +20:28:41 [ 7] [ 10] [0321034030] +20:28:41 [ 11] [ 6] [204030] +20:28:41 [ 37] [ 12] [57920204030] +20:28:41 [ 70] [ 3] [301] +20:28:41 ============================================================================ +20:28:41 + + +waiting on router queue for slot.... +20:28:41 Sending to : +20:28:41 ============================================================================ +20:28:41 ============================================================================ +20:28:41 Slot Id : <165> +20:28:41 Transaction Type : RESPONSE +20:28:41 Received From : +20:28:41 ============================================================================ +20:28:41 FNo. Len. Field Value +20:28:41 ============================================================================ +20:28:41 [ 1] [ 4] [0810] +20:28:41 [ 7] [ 10] [0321034030] +20:28:41 [ 11] [ 6] [204030] +20:28:41 [ 37] [ 12] [579202040300] +20:28:41 [ 39] [ 2] [00] +20:28:41 [ 70] [ 3] [810] +20:28:41 ============================================================================ +20:28:41 Calculate Source COMM Id = 6 +20:28:41 ============================================================================ +20:28:41 + + +waiting on router queue for slot.... +20:28:50 ============================================================================ +20:28:50 Slot Id : <201> +20:28:50 Transaction Type : REQUEST +20:28:50 Received From : +20:28:50 ============================================================================ +20:28:50 FNo. Len. Field Value +20:28:50 ============================================================================ +20:28:50 [ 1] [ 4] [0800] +20:28:50 [ 7] [ 10] [0320012759] +20:28:50 [ 11] [ 6] [158217] +20:28:50 [ 70] [ 3] [301] +20:28:50 ============================================================================ +20:28:50 + + +waiting on router queue for slot.... +20:28:50 Sending to : +20:28:50 ============================================================================ +20:28:50 ============================================================================ +20:28:50 Slot Id : <201> +20:28:50 Transaction Type : RESPONSE +20:28:50 Received From : +20:28:50 ============================================================================ +20:28:50 FNo. Len. Field Value +20:28:50 ============================================================================ +20:28:50 [ 1] [ 4] [0810] +20:28:50 [ 7] [ 10] [0320012759] +20:28:50 [ 11] [ 6] [158217] +20:28:50 [ 39] [ 2] [00] +20:28:50 [ 70] [ 3] [301] +20:28:50 ============================================================================ +20:28:50 Calculate Source COMM Id = 2 +20:28:50 ============================================================================ +20:28:50 + + +waiting on router queue for slot.... +20:29:01 ============================================================================ +20:29:01 Slot Id : <195> +20:29:01 Transaction Type : REQUEST +20:29:01 Received From : +20:29:01 ============================================================================ +20:29:01 FNo. Len. Field Value +20:29:01 ============================================================================ +20:29:01 [ 1] [ 4] [0800] +20:29:01 [ 7] [ 10] [0320012810] +20:29:01 [ 11] [ 6] [158218] +20:29:01 [ 70] [ 3] [301] +20:29:01 ============================================================================ +20:29:01 + + +waiting on router queue for slot.... +20:29:01 Sending to : +20:29:01 ============================================================================ +20:29:01 ============================================================================ +20:29:01 Slot Id : <195> +20:29:01 Transaction Type : RESPONSE +20:29:01 Received From : +20:29:01 ============================================================================ +20:29:01 FNo. Len. Field Value +20:29:01 ============================================================================ +20:29:01 [ 1] [ 4] [0810] +20:29:01 [ 7] [ 10] [0320012810] +20:29:01 [ 11] [ 6] [158218] +20:29:01 [ 39] [ 2] [00] +20:29:01 [ 70] [ 3] [301] +20:29:01 ============================================================================ +20:29:01 Calculate Source COMM Id = 2 +20:29:01 ============================================================================ +20:29:01 + + +waiting on router queue for slot.... +20:29:13 ============================================================================ +20:29:13 Slot Id : <194> +20:29:13 Transaction Type : REQUEST +20:29:13 Received From : +20:29:13 ============================================================================ +20:29:13 FNo. Len. Field Value +20:29:13 ============================================================================ +20:29:13 [ 1] [ 4] [0800] +20:29:13 [ 7] [ 10] [0320012821] +20:29:13 [ 11] [ 6] [158219] +20:29:13 [ 70] [ 3] [301] +20:29:13 ============================================================================ +20:29:13 + + +waiting on router queue for slot.... +20:29:13 Sending to : +20:29:13 ============================================================================ +20:29:13 ============================================================================ +20:29:13 Slot Id : <194> +20:29:13 Transaction Type : RESPONSE +20:29:13 Received From : +20:29:13 ============================================================================ +20:29:13 FNo. Len. Field Value +20:29:13 ============================================================================ +20:29:13 [ 1] [ 4] [0810] +20:29:13 [ 7] [ 10] [0320012821] +20:29:13 [ 11] [ 6] [158219] +20:29:13 [ 39] [ 2] [00] +20:29:13 [ 70] [ 3] [301] +20:29:13 ============================================================================ +20:29:13 Calculate Source COMM Id = 2 +20:29:13 ============================================================================ +20:29:13 + + +waiting on router queue for slot.... +20:29:17 ============================================================================ +20:29:17 Slot Id : <178> +20:29:17 Transaction Type : REQUEST +20:29:17 Received From : +20:29:17 ============================================================================ +20:29:17 FNo. Len. Field Value +20:29:17 ============================================================================ +20:29:17 [ 1] [ 4] [0800] +20:29:17 [ 2] [ 5] [02531] +20:29:17 [ 3] [ 6] [579208] +20:29:17 [ 7] [ 10] [0320132917] +20:29:17 [ 11] [ 6] [807601] +20:29:17 [ 15] [ 10] [0320132917] +20:29:17 [ 37] [ 11] [57920807601] +20:29:17 [ 70] [ 3] [001] +20:29:17 ============================================================================ +20:29:17 + + +waiting on router queue for slot.... +20:29:17 ============================================================================ +20:29:17 Slot Id : <178> +20:29:17 Transaction Type : RESPONSE +20:29:17 Received From : +20:29:17 ============================================================================ +20:29:17 FNo. Len. Field Value +20:29:17 ============================================================================ +20:29:17 [ 1] [ 4] [0810] +20:29:17 [ 7] [ 10] [0320132917] +20:29:17 [ 11] [ 6] [807601] +20:29:17 [ 15] [ 4] [0320] +20:29:17 [ 37] [ 12] [57920807601] +20:29:17 [ 39] [ 2] [00] +20:29:17 [ 70] [ 3] [001] +20:29:17 ============================================================================ +20:29:17 Sending to : +20:29:17 ============================================================================ +20:29:17 + + +waiting on router queue for slot.... +20:29:24 ============================================================================ +20:29:24 Slot Id : <209> +20:29:24 Transaction Type : REQUEST +20:29:24 Received From : +20:29:24 ============================================================================ +20:29:24 FNo. Len. Field Value +20:29:24 ============================================================================ +20:29:24 [ 1] [ 4] [0800] +20:29:24 [ 7] [ 10] [0320012832] +20:29:24 [ 11] [ 6] [158220] +20:29:24 [ 70] [ 3] [301] +20:29:24 ============================================================================ +20:29:24 + + +waiting on router queue for slot.... +20:29:24 Sending to : +20:29:24 ============================================================================ +20:29:24 ============================================================================ +20:29:24 Slot Id : <209> +20:29:24 Transaction Type : RESPONSE +20:29:24 Received From : +20:29:24 ============================================================================ +20:29:24 FNo. Len. Field Value +20:29:24 ============================================================================ +20:29:24 [ 1] [ 4] [0810] +20:29:24 [ 7] [ 10] [0320012832] +20:29:24 [ 11] [ 6] [158220] +20:29:24 [ 39] [ 2] [00] +20:29:24 [ 70] [ 3] [301] +20:29:24 ============================================================================ +20:29:24 Calculate Source COMM Id = 2 +20:29:24 ============================================================================ +20:29:24 + + +waiting on router queue for slot.... +20:29:35 ============================================================================ +20:29:35 Slot Id : <193> +20:29:35 Transaction Type : REQUEST +20:29:35 Received From : +20:29:35 ============================================================================ +20:29:35 FNo. Len. Field Value +20:29:35 ============================================================================ +20:29:35 [ 1] [ 4] [0800] +20:29:35 [ 7] [ 10] [0320012843] +20:29:35 [ 11] [ 6] [158221] +20:29:35 [ 70] [ 3] [301] +20:29:35 ============================================================================ +20:29:35 + + +waiting on router queue for slot.... +20:29:35 Sending to : +20:29:35 ============================================================================ +20:29:35 ============================================================================ +20:29:35 Slot Id : <193> +20:29:35 Transaction Type : RESPONSE +20:29:35 Received From : +20:29:35 ============================================================================ +20:29:35 FNo. Len. Field Value +20:29:35 ============================================================================ +20:29:35 [ 1] [ 4] [0810] +20:29:35 [ 7] [ 10] [0320012843] +20:29:35 [ 11] [ 6] [158221] +20:29:35 [ 39] [ 2] [00] +20:29:35 [ 70] [ 3] [301] +20:29:35 ============================================================================ +20:29:35 Calculate Source COMM Id = 2 +20:29:35 ============================================================================ +20:29:35 + + +waiting on router queue for slot.... +20:29:46 ============================================================================ +20:29:46 Slot Id : <206> +20:29:46 Transaction Type : REQUEST +20:29:46 Received From : +20:29:46 ============================================================================ +20:29:46 FNo. Len. Field Value +20:29:46 ============================================================================ +20:29:46 [ 1] [ 4] [0800] +20:29:46 [ 7] [ 10] [0321034135] +20:29:46 [ 11] [ 6] [204135] +20:29:46 [ 37] [ 12] [57920204135] +20:29:46 [ 70] [ 3] [301] +20:29:46 ============================================================================ +20:29:46 + + +waiting on router queue for slot.... +20:29:46 Sending to : +20:29:46 ============================================================================ +20:29:46 ============================================================================ +20:29:46 Slot Id : <206> +20:29:46 Transaction Type : RESPONSE +20:29:46 Received From : +20:29:46 ============================================================================ +20:29:46 FNo. Len. Field Value +20:29:46 ============================================================================ +20:29:46 [ 1] [ 4] [0810] +20:29:46 [ 7] [ 10] [0321034135] +20:29:46 [ 11] [ 6] [204135] +20:29:46 [ 37] [ 12] [579202041350] +20:29:46 [ 39] [ 2] [00] +20:29:46 [ 70] [ 3] [810] +20:29:46 ============================================================================ +20:29:46 Calculate Source COMM Id = 6 +20:29:46 ============================================================================ +20:29:46 + + +waiting on router queue for slot.... +20:29:47 ============================================================================ +20:29:47 Slot Id : <184> +20:29:47 Transaction Type : REQUEST +20:29:47 Received From : +20:29:47 ============================================================================ +20:29:47 FNo. Len. Field Value +20:29:47 ============================================================================ +20:29:47 [ 1] [ 4] [0200] +20:29:47 [ 2] [ 16] [2206990000071522] +20:29:47 [ 3] [ 6] [301000] +20:29:47 [ 4] [ 12] [000000000000] +20:29:47 [ 7] [ 10] [0320202944] +20:29:47 [ 11] [ 6] [842672] +20:29:47 [ 12] [ 6] [202944] +20:29:47 [ 13] [ 4] [0320] +20:29:47 [ 15] [ 4] [0320] +20:29:47 [ 18] [ 4] [6011] +20:29:47 [ 22] [ 3] [900] +20:29:47 [ 25] [ 2] [02] +20:29:47 [ 28] [ 9] [D00000000] +20:29:47 [ 32] [ 6] [621354] +20:29:47 [ 35] [ 32] [2206990000071522=970812617444917] +20:29:47 [ 37] [ 12] [507903040675] +20:29:47 [ 41] [ 8] [01008400] +20:29:47 [ 42] [ 15] [NATIVE ] +20:29:47 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +20:29:47 [ 49] [ 3] [418] +20:29:47 [ 52] [ 16] [61F927494B6FCC52] +20:29:47 ============================================================================ +20:29:47 + + +waiting on router queue for slot.... +20:29:47 Sending to : +20:29:47 ============================================================================ +20:29:47 Sending to : +20:29:47 ============================================================================ +20:29:48 ============================================================================ +20:29:48 Slot Id : <184> +20:29:48 Transaction Type : REQUEST +20:29:48 Received From : +20:29:48 ============================================================================ +20:29:48 FNo. Len. Field Value +20:29:48 ============================================================================ +20:29:48 [ 1] [ 4] [0200] +20:29:48 [ 2] [ 16] [2206990000071522] +20:29:48 [ 3] [ 6] [301000] +20:29:48 [ 4] [ 12] [000000000000] +20:29:48 [ 7] [ 10] [0320202944] +20:29:48 [ 11] [ 6] [842672] +20:29:48 [ 12] [ 6] [202944] +20:29:48 [ 13] [ 4] [0320] +20:29:48 [ 15] [ 4] [0320] +20:29:48 [ 18] [ 4] [6011] +20:29:48 [ 22] [ 3] [900] +20:29:48 [ 25] [ 2] [02] +20:29:48 [ 28] [ 9] [D00000000] +20:29:48 [ 32] [ 6] [621354] +20:29:48 [ 35] [ 32] [2206990000071522=970812617444917] +20:29:48 [ 37] [ 12] [507903040675] +20:29:48 [ 41] [ 8] [01008400] +20:29:48 [ 42] [ 15] [NATIVE ] +20:29:48 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +20:29:48 [ 49] [ 3] [418] +20:29:48 [ 52] [ 16] [61F927494B6FCC52] +20:29:48 ============================================================================ +20:29:48 + + +waiting on router queue for slot.... +20:29:48 Sending to : +20:29:48 ============================================================================ +20:29:48 ============================================================================ +20:29:48 Slot Id : <184> +20:29:48 Transaction Type : REQUEST +20:29:48 Received From : +20:29:48 ============================================================================ +20:29:48 FNo. Len. Field Value +20:29:48 ============================================================================ +20:29:48 [ 1] [ 4] [0200] +20:29:48 [ 2] [ 16] [2206990000071522] +20:29:48 [ 3] [ 6] [301000] +20:29:48 [ 4] [ 12] [000000000000] +20:29:48 [ 7] [ 10] [0320202944] +20:29:48 [ 11] [ 6] [842672] +20:29:48 [ 12] [ 6] [202944] +20:29:48 [ 13] [ 4] [0320] +20:29:48 [ 15] [ 4] [0320] +20:29:48 [ 18] [ 4] [6011] +20:29:48 [ 22] [ 3] [900] +20:29:48 [ 25] [ 2] [02] +20:29:48 [ 28] [ 9] [D00000000] +20:29:48 [ 32] [ 6] [621354] +20:29:48 [ 35] [ 32] [2206990000071522=970812617444917] +20:29:48 [ 37] [ 12] [507903040675] +20:29:48 [ 41] [ 8] [01008400] +20:29:48 [ 42] [ 15] [NATIVE ] +20:29:48 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +20:29:48 [ 49] [ 3] [418] +20:29:48 [ 52] [ 16] [FE09BB3309DD79EC] +20:29:48 ============================================================================ +20:29:48 + + +waiting on router queue for slot.... +20:29:48 Sending to : <1> +20:29:48 ============================================================================ +20:29:49 ============================================================================ +20:29:49 Slot Id : <184> +20:29:49 Transaction Type : RESPONSE +20:29:49 Received From : +20:29:49 ============================================================================ +20:29:49 FNo. Len. Field Value +20:29:49 ============================================================================ +20:29:49 [ 1] [ 4] [0210] +20:29:49 [ 2] [ 16] [2206990000071522] +20:29:49 [ 3] [ 6] [301000] +20:29:49 [ 4] [ 12] [000000000000] +20:29:49 [ 7] [ 10] [0320202944] +20:29:49 [ 11] [ 6] [842672] +20:29:49 [ 12] [ 6] [202944] +20:29:49 [ 13] [ 4] [0320] +20:29:49 [ 15] [ 4] [0320] +20:29:49 [ 18] [ 4] [6011] +20:29:49 [ 32] [ 6] [621354] +20:29:49 [ 35] [ 32] [2206990000071522=970812617444917] +20:29:49 [ 37] [ 12] [507903040675] +20:29:49 [ 38] [ 6] [032137] +20:29:49 [ 39] [ 2] [00] +20:29:49 [ 41] [ 8] [01008400] +20:29:49 [ 49] [ 3] [418] +20:29:49 [ 54] [ 40] [1001418C0000196204001002418C000019620400] +20:29:49 ============================================================================ +20:29:49 Sending to : +20:29:49 ============================================================================ +20:29:49 + + +waiting on router queue for slot.... +20:29:50 ============================================================================ +20:29:50 Slot Id : <212> +20:29:50 Transaction Type : REQUEST +20:29:50 Received From : +20:29:50 ============================================================================ +20:29:50 FNo. Len. Field Value +20:29:50 ============================================================================ +20:29:50 [ 1] [ 4] [0800] +20:29:50 [ 7] [ 10] [0320012858] +20:29:50 [ 11] [ 6] [158222] +20:29:50 [ 70] [ 3] [301] +20:29:50 ============================================================================ +20:29:50 + + +waiting on router queue for slot.... +20:29:50 Sending to : +20:29:50 ============================================================================ +20:29:50 ============================================================================ +20:29:50 Slot Id : <212> +20:29:50 Transaction Type : RESPONSE +20:29:50 Received From : +20:29:50 ============================================================================ +20:29:50 FNo. Len. Field Value +20:29:50 ============================================================================ +20:29:50 [ 1] [ 4] [0810] +20:29:50 [ 7] [ 10] [0320012858] +20:29:50 [ 11] [ 6] [158222] +20:29:50 [ 39] [ 2] [00] +20:29:50 [ 70] [ 3] [301] +20:29:50 ============================================================================ +20:29:50 Calculate Source COMM Id = 2 +20:29:50 ============================================================================ +20:29:50 + + +waiting on router queue for slot.... +20:29:50 ============================================================================ +20:29:50 Slot Id : <184> +20:29:50 Transaction Type : RESPONSE +20:29:50 Received From : +20:29:50 ============================================================================ +20:29:50 FNo. Len. Field Value +20:29:50 ============================================================================ +20:29:50 [ 1] [ 4] [0210] +20:29:50 [ 2] [ 16] [2206990000071522] +20:29:50 [ 3] [ 6] [301000] +20:29:50 [ 4] [ 12] [000000000000] +20:29:50 [ 7] [ 10] [0320202944] +20:29:50 [ 11] [ 6] [842672] +20:29:50 [ 12] [ 6] [202944] +20:29:50 [ 13] [ 4] [0320] +20:29:50 [ 15] [ 4] [0320] +20:29:50 [ 18] [ 4] [6011] +20:29:50 [ 32] [ 6] [621354] +20:29:50 [ 35] [ 32] [2206990000071522=970812617444917] +20:29:50 [ 37] [ 12] [507903040675] +20:29:50 [ 38] [ 6] [032137] +20:29:50 [ 39] [ 2] [00] +20:29:50 [ 41] [ 8] [01008400] +20:29:50 [ 49] [ 3] [418] +20:29:50 [ 54] [ 40] [1001418C0000196204001002418C000019620400] +20:29:50 ============================================================================ +20:29:50 Calculate Source COMM Id = 0 +20:29:50 ============================================================================ +20:29:50 + + +waiting on router queue for slot.... +20:29:55 ============================================================================ +20:29:55 Slot Id : <230> +20:29:55 Transaction Type : REQUEST +20:29:55 Received From : +20:29:55 ============================================================================ +20:29:55 FNo. Len. Field Value +20:29:55 ============================================================================ +20:29:55 [ 1] [ 4] [0800] +20:29:55 [ 7] [ 10] [0320133742] +20:29:55 [ 11] [ 6] [096757] +20:29:55 [ 37] [ 12] [57920096757] +20:29:55 [ 70] [ 3] [301] +20:29:55 ============================================================================ +20:29:55 + + +waiting on router queue for slot.... +20:29:55 Sending to : +20:29:55 ============================================================================ +20:29:55 ============================================================================ +20:29:55 Slot Id : <230> +20:29:55 Transaction Type : RESPONSE +20:29:55 Received From : +20:29:55 ============================================================================ +20:29:55 FNo. Len. Field Value +20:29:55 ============================================================================ +20:29:55 [ 1] [ 4] [0810] +20:29:55 [ 7] [ 10] [0320133742] +20:29:55 [ 11] [ 6] [096757] +20:29:55 [ 37] [ 12] [579200967570] +20:29:55 [ 39] [ 2] [00] +20:29:55 [ 70] [ 3] [810] +20:29:55 ============================================================================ +20:29:55 Calculate Source COMM Id = 1 +20:29:55 ============================================================================ +20:29:55 + + +waiting on router queue for slot.... +20:30:06 ============================================================================ +20:30:06 Slot Id : <183> +20:30:06 Transaction Type : REQUEST +20:30:06 Received From : +20:30:06 ============================================================================ +20:30:06 FNo. Len. Field Value +20:30:06 ============================================================================ +20:30:06 [ 1] [ 4] [0800] +20:30:06 [ 7] [ 10] [0320012914] +20:30:06 [ 11] [ 6] [158223] +20:30:06 [ 70] [ 3] [301] +20:30:06 ============================================================================ +20:30:06 + + +waiting on router queue for slot.... +20:30:06 Sending to : +20:30:06 ============================================================================ +20:30:06 ============================================================================ +20:30:06 Slot Id : <183> +20:30:06 Transaction Type : RESPONSE +20:30:06 Received From : +20:30:06 ============================================================================ +20:30:06 FNo. Len. Field Value +20:30:06 ============================================================================ +20:30:06 [ 1] [ 4] [0810] +20:30:06 [ 7] [ 10] [0320012914] +20:30:06 [ 11] [ 6] [158223] +20:30:06 [ 39] [ 2] [00] +20:30:06 [ 70] [ 3] [301] +20:30:06 ============================================================================ +20:30:06 Calculate Source COMM Id = 2 +20:30:06 ============================================================================ +20:30:06 + + +waiting on router queue for slot.... +20:30:09 ============================================================================ +20:30:09 Slot Id : <221> +20:30:09 Transaction Type : REQUEST +20:30:09 Received From : +20:30:09 ============================================================================ +20:30:09 FNo. Len. Field Value +20:30:09 ============================================================================ +20:30:09 [ 1] [ 4] [0200] +20:30:09 [ 2] [ 16] [6688990108145002] +20:30:09 [ 3] [ 6] [011000] +20:30:09 [ 4] [ 12] [000100000000] +20:30:09 [ 7] [ 10] [0320203006] +20:30:09 [ 11] [ 6] [842700] +20:30:09 [ 12] [ 6] [203006] +20:30:09 [ 13] [ 4] [0320] +20:30:09 [ 15] [ 4] [0320] +20:30:09 [ 18] [ 4] [6011] +20:30:09 [ 22] [ 3] [900] +20:30:09 [ 25] [ 2] [02] +20:30:09 [ 28] [ 9] [D00002000] +20:30:09 [ 32] [ 6] [621354] +20:30:09 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:30:09 [ 37] [ 12] [507904995023] +20:30:09 [ 41] [ 8] [16002100] +20:30:09 [ 42] [ 15] [NATIVE ] +20:30:09 [ 43] [ 40] [Thangone Unit Thangone LAO] +20:30:09 [ 49] [ 3] [418] +20:30:09 [ 52] [ 16] [46E03D63FB4FCB3A] +20:30:09 ============================================================================ +20:30:09 + + +waiting on router queue for slot.... +20:30:09 Sending to : +20:30:09 ============================================================================ +20:30:09 Sending to : +20:30:09 ============================================================================ +20:30:10 ============================================================================ +20:30:10 Slot Id : <221> +20:30:10 Transaction Type : REQUEST +20:30:10 Received From : +20:30:10 ============================================================================ +20:30:10 FNo. Len. Field Value +20:30:10 ============================================================================ +20:30:10 [ 1] [ 4] [0200] +20:30:10 [ 2] [ 16] [6688990108145002] +20:30:10 [ 3] [ 6] [011000] +20:30:10 [ 4] [ 12] [000100000000] +20:30:10 [ 7] [ 10] [0320203006] +20:30:10 [ 11] [ 6] [842700] +20:30:10 [ 12] [ 6] [203006] +20:30:10 [ 13] [ 4] [0320] +20:30:10 [ 15] [ 4] [0320] +20:30:10 [ 18] [ 4] [6011] +20:30:10 [ 22] [ 3] [900] +20:30:10 [ 25] [ 2] [02] +20:30:10 [ 28] [ 9] [D00002000] +20:30:10 [ 32] [ 6] [621354] +20:30:10 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:30:10 [ 37] [ 12] [507904995023] +20:30:10 [ 41] [ 8] [16002100] +20:30:10 [ 42] [ 15] [NATIVE ] +20:30:10 [ 43] [ 40] [Thangone Unit Thangone LAO] +20:30:10 [ 49] [ 3] [418] +20:30:10 [ 52] [ 16] [46E03D63FB4FCB3A] +20:30:10 ============================================================================ +20:30:10 + + +waiting on router queue for slot.... +20:30:10 Sending to : +20:30:10 ============================================================================ +20:30:10 ============================================================================ +20:30:10 Slot Id : <221> +20:30:10 Transaction Type : REQUEST +20:30:10 Received From : +20:30:10 ============================================================================ +20:30:10 FNo. Len. Field Value +20:30:10 ============================================================================ +20:30:10 [ 1] [ 4] [0200] +20:30:10 [ 2] [ 16] [6688990108145002] +20:30:10 [ 3] [ 6] [011000] +20:30:10 [ 4] [ 12] [000100000000] +20:30:10 [ 7] [ 10] [0320203006] +20:30:10 [ 11] [ 6] [842700] +20:30:10 [ 12] [ 6] [203006] +20:30:10 [ 13] [ 4] [0320] +20:30:10 [ 15] [ 4] [0320] +20:30:10 [ 18] [ 4] [6011] +20:30:10 [ 22] [ 3] [900] +20:30:10 [ 25] [ 2] [02] +20:30:10 [ 28] [ 9] [D00002000] +20:30:10 [ 32] [ 6] [621354] +20:30:10 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:30:10 [ 37] [ 12] [507904995023] +20:30:10 [ 41] [ 8] [16002100] +20:30:10 [ 42] [ 15] [NATIVE ] +20:30:10 [ 43] [ 40] [Thangone Unit Thangone LAO] +20:30:10 [ 49] [ 3] [418] +20:30:10 [ 52] [ 16] [C7EC05629EE95366] +20:30:10 ============================================================================ +20:30:10 + + +waiting on router queue for slot.... +20:30:10 Sending to : <4> +20:30:10 ============================================================================ +20:30:11 ============================================================================ +20:30:11 Slot Id : <221> +20:30:11 Transaction Type : RESPONSE +20:30:11 Received From : +20:30:11 ============================================================================ +20:30:11 FNo. Len. Field Value +20:30:11 ============================================================================ +20:30:11 [ 1] [ 4] [0210] +20:30:11 [ 2] [ 16] [6688990108145002] +20:30:11 [ 3] [ 6] [011000] +20:30:11 [ 4] [ 12] [000100000000] +20:30:11 [ 11] [ 6] [842700] +20:30:11 [ 12] [ 6] [203006] +20:30:11 [ 15] [ 4] [0320] +20:30:11 [ 18] [ 4] [6011] +20:30:11 [ 32] [ 6] [621354] +20:30:11 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:30:11 [ 37] [ 12] [507904995023] +20:30:11 [ 38] [ 6] [423647] +20:30:11 [ 39] [ 2] [00] +20:30:11 [ 41] [ 8] [16002100] +20:30:11 [ 49] [ 3] [418] +20:30:11 [ 54] [ 20] [1002418C000048803004] +20:30:11 ============================================================================ +20:30:11 Sending to : +20:30:11 ============================================================================ +20:30:11 + + +waiting on router queue for slot.... +20:30:12 ============================================================================ +20:30:12 Slot Id : <221> +20:30:12 Transaction Type : RESPONSE +20:30:12 Received From : +20:30:12 ============================================================================ +20:30:12 FNo. Len. Field Value +20:30:12 ============================================================================ +20:30:12 [ 1] [ 4] [0210] +20:30:12 [ 2] [ 16] [6688990108145002] +20:30:12 [ 3] [ 6] [011000] +20:30:12 [ 4] [ 12] [000100000000] +20:30:12 [ 11] [ 6] [842700] +20:30:12 [ 12] [ 6] [203006] +20:30:12 [ 15] [ 4] [0320] +20:30:12 [ 18] [ 4] [6011] +20:30:12 [ 32] [ 6] [621354] +20:30:12 [ 35] [ 37] [6688990108145002=44051231500270500000] +20:30:12 [ 37] [ 12] [507904995023] +20:30:12 [ 38] [ 6] [423647] +20:30:12 [ 39] [ 2] [00] +20:30:12 [ 41] [ 8] [16002100] +20:30:12 [ 49] [ 3] [418] +20:30:12 [ 54] [ 20] [1002418C000048803004] +20:30:12 ============================================================================ +20:30:12 Calculate Source COMM Id = 0 +20:30:12 ============================================================================ +20:30:12 + + +waiting on router queue for slot.... +20:30:17 ============================================================================ +20:30:17 Slot Id : <207> +20:30:17 Transaction Type : REQUEST +20:30:17 Received From : +20:30:17 ============================================================================ +20:30:17 FNo. Len. Field Value +20:30:17 ============================================================================ +20:30:17 [ 1] [ 4] [0800] +20:30:17 [ 7] [ 10] [0320012925] +20:30:17 [ 11] [ 6] [158224] +20:30:17 [ 70] [ 3] [301] +20:30:17 ============================================================================ +20:30:17 + + +waiting on router queue for slot.... +20:30:17 Sending to : +20:30:17 ============================================================================ +20:30:17 ============================================================================ +20:30:17 Slot Id : <207> +20:30:17 Transaction Type : RESPONSE +20:30:17 Received From : +20:30:17 ============================================================================ +20:30:17 FNo. Len. Field Value +20:30:17 ============================================================================ +20:30:17 [ 1] [ 4] [0810] +20:30:17 [ 7] [ 10] [0320012925] +20:30:17 [ 11] [ 6] [158224] +20:30:17 [ 39] [ 2] [00] +20:30:17 [ 70] [ 3] [301] +20:30:17 ============================================================================ +20:30:17 Calculate Source COMM Id = 2 +20:30:17 ============================================================================ +20:30:17 + + +waiting on router queue for slot.... +20:30:19 ============================================================================ +20:30:19 Slot Id : <213> +20:30:19 Transaction Type : REQUEST +20:30:19 Received From : +20:30:19 ============================================================================ +20:30:19 FNo. Len. Field Value +20:30:19 ============================================================================ +20:30:19 [ 1] [ 4] [0800] +20:30:19 [ 2] [ 5] [02531] +20:30:19 [ 3] [ 6] [579208] +20:30:19 [ 7] [ 10] [0320133019] +20:30:19 [ 11] [ 6] [807602] +20:30:19 [ 15] [ 10] [0320133019] +20:30:19 [ 37] [ 11] [57920807602] +20:30:19 [ 70] [ 3] [001] +20:30:19 ============================================================================ +20:30:19 + + +waiting on router queue for slot.... +20:30:19 ============================================================================ +20:30:19 Slot Id : <213> +20:30:19 Transaction Type : RESPONSE +20:30:19 Received From : +20:30:19 ============================================================================ +20:30:19 FNo. Len. Field Value +20:30:19 ============================================================================ +20:30:19 [ 1] [ 4] [0810] +20:30:19 [ 7] [ 10] [0320133019] +20:30:19 [ 11] [ 6] [807602] +20:30:19 [ 15] [ 4] [0320] +20:30:19 [ 37] [ 12] [57920807602] +20:30:19 [ 39] [ 2] [00] +20:30:19 [ 70] [ 3] [001] +20:30:19 ============================================================================ +20:30:19 Sending to : +20:30:19 ============================================================================ +20:30:19 + + +waiting on router queue for slot.... +20:30:28 ============================================================================ +20:30:28 Slot Id : <169> +20:30:28 Transaction Type : REQUEST +20:30:28 Received From : +20:30:28 ============================================================================ +20:30:28 FNo. Len. Field Value +20:30:28 ============================================================================ +20:30:28 [ 1] [ 4] [0800] +20:30:28 [ 7] [ 10] [0320012936] +20:30:28 [ 11] [ 6] [158225] +20:30:28 [ 70] [ 3] [301] +20:30:28 ============================================================================ +20:30:28 + + +waiting on router queue for slot.... +20:30:28 Sending to : +20:30:28 ============================================================================ +20:30:28 ============================================================================ +20:30:28 Slot Id : <169> +20:30:28 Transaction Type : RESPONSE +20:30:28 Received From : +20:30:28 ============================================================================ +20:30:28 FNo. Len. Field Value +20:30:28 ============================================================================ +20:30:28 [ 1] [ 4] [0810] +20:30:28 [ 7] [ 10] [0320012936] +20:30:28 [ 11] [ 6] [158225] +20:30:28 [ 39] [ 2] [00] +20:30:28 [ 70] [ 3] [301] +20:30:28 ============================================================================ +20:30:28 Calculate Source COMM Id = 2 +20:30:28 ============================================================================ +20:30:28 + + +waiting on router queue for slot.... +20:30:44 ============================================================================ +20:30:44 Slot Id : <205> +20:30:44 Transaction Type : REQUEST +20:30:44 Received From : +20:30:44 ============================================================================ +20:30:44 FNo. Len. Field Value +20:30:44 ============================================================================ +20:30:44 [ 1] [ 4] [0800] +20:30:44 [ 7] [ 10] [0320012953] +20:30:44 [ 11] [ 6] [158226] +20:30:44 [ 70] [ 3] [301] +20:30:44 ============================================================================ +20:30:44 + + +waiting on router queue for slot.... +20:30:44 Sending to : +20:30:44 ============================================================================ +20:30:44 ============================================================================ +20:30:44 Slot Id : <205> +20:30:44 Transaction Type : RESPONSE +20:30:44 Received From : +20:30:44 ============================================================================ +20:30:44 FNo. Len. Field Value +20:30:44 ============================================================================ +20:30:44 [ 1] [ 4] [0810] +20:30:44 [ 7] [ 10] [0320012953] +20:30:44 [ 11] [ 6] [158226] +20:30:44 [ 39] [ 2] [00] +20:30:44 [ 70] [ 3] [301] +20:30:44 ============================================================================ +20:30:44 Calculate Source COMM Id = 2 +20:30:44 ============================================================================ +20:30:44 + + +waiting on router queue for slot.... +20:30:51 ============================================================================ +20:30:51 Slot Id : <185> +20:30:51 Transaction Type : REQUEST +20:30:51 Received From : +20:30:51 ============================================================================ +20:30:51 FNo. Len. Field Value +20:30:51 ============================================================================ +20:30:51 [ 1] [ 4] [0800] +20:30:51 [ 7] [ 10] [0321034240] +20:30:51 [ 11] [ 6] [204240] +20:30:51 [ 37] [ 12] [57920204240] +20:30:51 [ 70] [ 3] [301] +20:30:51 ============================================================================ +20:30:51 + + +waiting on router queue for slot.... +20:30:51 Sending to : +20:30:51 ============================================================================ +20:30:51 ============================================================================ +20:30:51 Slot Id : <185> +20:30:51 Transaction Type : RESPONSE +20:30:51 Received From : +20:30:51 ============================================================================ +20:30:51 FNo. Len. Field Value +20:30:51 ============================================================================ +20:30:51 [ 1] [ 4] [0810] +20:30:51 [ 7] [ 10] [0321034240] +20:30:51 [ 11] [ 6] [204240] +20:30:51 [ 37] [ 12] [579202042400] +20:30:51 [ 39] [ 2] [00] +20:30:51 [ 70] [ 3] [810] +20:30:51 ============================================================================ +20:30:51 Calculate Source COMM Id = 6 +20:30:51 ============================================================================ +20:30:51 + + +waiting on router queue for slot.... +20:30:55 ============================================================================ +20:30:55 Slot Id : <149> +20:30:55 Transaction Type : REQUEST +20:30:55 Received From : +20:30:55 ============================================================================ +20:30:55 FNo. Len. Field Value +20:30:55 ============================================================================ +20:30:55 [ 1] [ 4] [0800] +20:30:55 [ 7] [ 10] [0320013004] +20:30:55 [ 11] [ 6] [158227] +20:30:55 [ 70] [ 3] [301] +20:30:55 ============================================================================ +20:30:55 + + +waiting on router queue for slot.... +20:30:55 Sending to : +20:30:55 ============================================================================ +20:30:55 ============================================================================ +20:30:55 Slot Id : <149> +20:30:55 Transaction Type : RESPONSE +20:30:55 Received From : +20:30:55 ============================================================================ +20:30:55 FNo. Len. Field Value +20:30:55 ============================================================================ +20:30:55 [ 1] [ 4] [0810] +20:30:55 [ 7] [ 10] [0320013004] +20:30:55 [ 11] [ 6] [158227] +20:30:55 [ 39] [ 2] [00] +20:30:55 [ 70] [ 3] [301] +20:30:55 ============================================================================ +20:30:55 Calculate Source COMM Id = 2 +20:30:55 ============================================================================ +20:30:55 + + +waiting on router queue for slot.... +20:31:06 ============================================================================ +20:31:06 Slot Id : <232> +20:31:06 Transaction Type : REQUEST +20:31:06 Received From : +20:31:06 ============================================================================ +20:31:06 FNo. Len. Field Value +20:31:06 ============================================================================ +20:31:06 [ 1] [ 4] [0800] +20:31:06 [ 7] [ 10] [0320013014] +20:31:06 [ 11] [ 6] [158228] +20:31:06 [ 70] [ 3] [301] +20:31:06 ============================================================================ +20:31:06 + + +waiting on router queue for slot.... +20:31:06 Sending to : +20:31:06 ============================================================================ +20:31:06 ============================================================================ +20:31:06 Slot Id : <232> +20:31:06 Transaction Type : RESPONSE +20:31:06 Received From : +20:31:06 ============================================================================ +20:31:06 FNo. Len. Field Value +20:31:06 ============================================================================ +20:31:06 [ 1] [ 4] [0810] +20:31:06 [ 7] [ 10] [0320013014] +20:31:06 [ 11] [ 6] [158228] +20:31:06 [ 39] [ 2] [00] +20:31:06 [ 70] [ 3] [301] +20:31:06 ============================================================================ +20:31:06 Calculate Source COMM Id = 2 +20:31:06 ============================================================================ +20:31:06 + + +waiting on router queue for slot.... +20:31:21 ============================================================================ +20:31:21 Slot Id : <180> +20:31:21 Transaction Type : REQUEST +20:31:21 Received From : +20:31:21 ============================================================================ +20:31:21 FNo. Len. Field Value +20:31:21 ============================================================================ +20:31:21 [ 1] [ 4] [0800] +20:31:21 [ 7] [ 10] [0320132912] +20:31:21 [ 11] [ 6] [031264] +20:31:21 [ 37] [ 12] [57920031264] +20:31:21 [ 70] [ 3] [301] +20:31:21 ============================================================================ +20:31:21 + + +waiting on router queue for slot.... +20:31:21 Sending to : +20:31:21 ============================================================================ +20:31:21 ============================================================================ +20:31:21 Slot Id : <180> +20:31:21 Transaction Type : RESPONSE +20:31:21 Received From : +20:31:21 ============================================================================ +20:31:21 FNo. Len. Field Value +20:31:21 ============================================================================ +20:31:21 [ 1] [ 4] [0810] +20:31:21 [ 7] [ 10] [0320132912] +20:31:21 [ 11] [ 6] [031264] +20:31:21 [ 37] [ 12] [579200312640] +20:31:21 [ 39] [ 2] [00] +20:31:21 [ 70] [ 3] [810] +20:31:21 ============================================================================ +20:31:21 Calculate Source COMM Id = 4 +20:31:21 ============================================================================ +20:31:21 + + +waiting on router queue for slot.... +20:31:21 ============================================================================ +20:31:21 Slot Id : <222> +20:31:21 Transaction Type : REQUEST +20:31:21 Received From : +20:31:21 ============================================================================ +20:31:21 FNo. Len. Field Value +20:31:21 ============================================================================ +20:31:21 [ 1] [ 4] [0800] +20:31:21 [ 7] [ 10] [0320013030] +20:31:21 [ 11] [ 6] [158229] +20:31:21 [ 70] [ 3] [301] +20:31:21 ============================================================================ +20:31:21 + + +waiting on router queue for slot.... +20:31:21 Sending to : +20:31:21 ============================================================================ +20:31:21 ============================================================================ +20:31:21 Slot Id : <222> +20:31:21 Transaction Type : RESPONSE +20:31:21 Received From : +20:31:21 ============================================================================ +20:31:21 FNo. Len. Field Value +20:31:21 ============================================================================ +20:31:21 [ 1] [ 4] [0810] +20:31:21 [ 7] [ 10] [0320013030] +20:31:21 [ 11] [ 6] [158229] +20:31:21 [ 39] [ 2] [00] +20:31:21 [ 70] [ 3] [301] +20:31:21 ============================================================================ +20:31:21 Calculate Source COMM Id = 2 +20:31:21 ============================================================================ +20:31:21 + + +waiting on router queue for slot.... +20:31:21 ============================================================================ +20:31:21 Slot Id : <211> +20:31:21 Transaction Type : REQUEST +20:31:21 Received From : +20:31:21 ============================================================================ +20:31:21 FNo. Len. Field Value +20:31:21 ============================================================================ +20:31:21 [ 1] [ 4] [0800] +20:31:21 [ 2] [ 5] [02531] +20:31:21 [ 3] [ 6] [579208] +20:31:21 [ 7] [ 10] [0320133121] +20:31:21 [ 11] [ 6] [807603] +20:31:21 [ 15] [ 10] [0320133121] +20:31:21 [ 37] [ 11] [57920807603] +20:31:21 [ 70] [ 3] [001] +20:31:21 ============================================================================ +20:31:21 + + +waiting on router queue for slot.... +20:31:21 ============================================================================ +20:31:21 Slot Id : <211> +20:31:21 Transaction Type : RESPONSE +20:31:21 Received From : +20:31:21 ============================================================================ +20:31:21 FNo. Len. Field Value +20:31:21 ============================================================================ +20:31:21 [ 1] [ 4] [0810] +20:31:21 [ 7] [ 10] [0320133121] +20:31:21 [ 11] [ 6] [807603] +20:31:21 [ 15] [ 4] [0320] +20:31:21 [ 37] [ 12] [57920807603] +20:31:21 [ 39] [ 2] [00] +20:31:21 [ 70] [ 3] [001] +20:31:21 ============================================================================ +20:31:21 Sending to : +20:31:21 ============================================================================ +20:31:21 + + +waiting on router queue for slot.... +20:31:32 ============================================================================ +20:31:32 Slot Id : <208> +20:31:32 Transaction Type : REQUEST +20:31:32 Received From : +20:31:32 ============================================================================ +20:31:32 FNo. Len. Field Value +20:31:32 ============================================================================ +20:31:32 [ 1] [ 4] [0800] +20:31:32 [ 7] [ 10] [0320013041] +20:31:32 [ 11] [ 6] [158230] +20:31:32 [ 70] [ 3] [301] +20:31:32 ============================================================================ +20:31:32 + + +waiting on router queue for slot.... +20:31:32 Sending to : +20:31:32 ============================================================================ +20:31:32 ============================================================================ +20:31:32 Slot Id : <208> +20:31:32 Transaction Type : RESPONSE +20:31:32 Received From : +20:31:32 ============================================================================ +20:31:32 FNo. Len. Field Value +20:31:32 ============================================================================ +20:31:32 [ 1] [ 4] [0810] +20:31:32 [ 7] [ 10] [0320013041] +20:31:32 [ 11] [ 6] [158230] +20:31:32 [ 39] [ 2] [00] +20:31:32 [ 70] [ 3] [301] +20:31:32 ============================================================================ +20:31:32 Calculate Source COMM Id = 2 +20:31:32 ============================================================================ +20:31:32 + + +waiting on router queue for slot.... +20:31:34 ============================================================================ +20:31:34 Slot Id : <189> +20:31:34 Transaction Type : REQUEST +20:31:34 Received From : +20:31:34 ============================================================================ +20:31:34 FNo. Len. Field Value +20:31:34 ============================================================================ +20:31:34 [ 1] [ 4] [0200] +20:31:34 [ 2] [ 16] [1808930900011917] +20:31:34 [ 3] [ 6] [011000] +20:31:34 [ 4] [ 12] [000005000000] +20:31:34 [ 7] [ 10] [0320203131] +20:31:34 [ 11] [ 6] [842822] +20:31:34 [ 12] [ 6] [203131] +20:31:34 [ 13] [ 4] [0320] +20:31:34 [ 15] [ 4] [0320] +20:31:34 [ 18] [ 4] [6011] +20:31:34 [ 22] [ 3] [900] +20:31:34 [ 25] [ 2] [02] +20:31:34 [ 28] [ 9] [D00002000] +20:31:34 [ 32] [ 6] [621354] +20:31:34 [ 35] [ 27] [1808930900011917=1803500910] +20:31:34 [ 37] [ 12] [507902430166] +20:31:34 [ 41] [ 8] [05002700] +20:31:34 [ 42] [ 15] [NATIVE ] +20:31:34 [ 43] [ 40] [Sangkhong Unit LuangprabangLAO] +20:31:34 [ 49] [ 3] [418] +20:31:34 [ 52] [ 16] [ADF3BEB92FE7ED99] +20:31:34 ============================================================================ +20:31:34 + + +waiting on router queue for slot.... +20:31:34 Sending to : +20:31:34 ============================================================================ +20:31:34 Sending to : +20:31:34 ============================================================================ +20:31:35 ============================================================================ +20:31:35 Slot Id : <189> +20:31:35 Transaction Type : REQUEST +20:31:35 Received From : +20:31:35 ============================================================================ +20:31:35 FNo. Len. Field Value +20:31:35 ============================================================================ +20:31:35 [ 1] [ 4] [0200] +20:31:35 [ 2] [ 16] [1808930900011917] +20:31:35 [ 3] [ 6] [011000] +20:31:35 [ 4] [ 12] [000005000000] +20:31:35 [ 7] [ 10] [0320203131] +20:31:35 [ 11] [ 6] [842822] +20:31:35 [ 12] [ 6] [203131] +20:31:35 [ 13] [ 4] [0320] +20:31:35 [ 15] [ 4] [0320] +20:31:35 [ 18] [ 4] [6011] +20:31:35 [ 22] [ 3] [900] +20:31:35 [ 25] [ 2] [02] +20:31:35 [ 28] [ 9] [D00002000] +20:31:35 [ 32] [ 6] [621354] +20:31:35 [ 35] [ 27] [1808930900011917=1803500910] +20:31:35 [ 37] [ 12] [507902430166] +20:31:35 [ 41] [ 8] [05002700] +20:31:35 [ 42] [ 15] [NATIVE ] +20:31:35 [ 43] [ 40] [Sangkhong Unit LuangprabangLAO] +20:31:35 [ 49] [ 3] [418] +20:31:35 [ 52] [ 16] [ADF3BEB92FE7ED99] +20:31:35 ============================================================================ +20:31:35 + + +waiting on router queue for slot.... +20:31:35 Sending to : +20:31:35 ============================================================================ +20:31:35 ============================================================================ +20:31:35 Slot Id : <189> +20:31:35 Transaction Type : REQUEST +20:31:35 Received From : +20:31:35 ============================================================================ +20:31:35 FNo. Len. Field Value +20:31:35 ============================================================================ +20:31:35 [ 1] [ 4] [0200] +20:31:35 [ 2] [ 16] [1808930900011917] +20:31:35 [ 3] [ 6] [011000] +20:31:35 [ 4] [ 12] [000005000000] +20:31:35 [ 7] [ 10] [0320203131] +20:31:35 [ 11] [ 6] [842822] +20:31:35 [ 12] [ 6] [203131] +20:31:35 [ 13] [ 4] [0320] +20:31:35 [ 15] [ 4] [0320] +20:31:35 [ 18] [ 4] [6011] +20:31:35 [ 22] [ 3] [900] +20:31:35 [ 25] [ 2] [02] +20:31:35 [ 28] [ 9] [D00002000] +20:31:35 [ 32] [ 6] [621354] +20:31:35 [ 35] [ 27] [1808930900011917=1803500910] +20:31:35 [ 37] [ 12] [507902430166] +20:31:35 [ 41] [ 8] [05002700] +20:31:35 [ 42] [ 15] [NATIVE ] +20:31:35 [ 43] [ 40] [Sangkhong Unit LuangprabangLAO] +20:31:35 [ 49] [ 3] [418] +20:31:35 [ 52] [ 16] [83E968B8F4D7A629] +20:31:35 ============================================================================ +20:31:35 + + +waiting on router queue for slot.... +20:31:35 Sending to : <2> +20:31:35 ============================================================================ +20:31:40 ============================================================================ +20:31:40 Slot Id : <189> +20:31:40 Transaction Type : RESPONSE +20:31:40 Received From : +20:31:40 ============================================================================ +20:31:40 FNo. Len. Field Value +20:31:40 ============================================================================ +20:31:40 [ 1] [ 4] [0210] +20:31:40 [ 2] [ 16] [1808930900011917] +20:31:40 [ 3] [ 6] [011000] +20:31:40 [ 4] [ 12] [000005000000] +20:31:40 [ 6] [ 12] [000005000000] +20:31:40 [ 7] [ 10] [0320203131] +20:31:40 [ 11] [ 6] [842822] +20:31:40 [ 12] [ 6] [203131] +20:31:40 [ 13] [ 4] [0320] +20:31:40 [ 18] [ 4] [6011] +20:31:40 [ 19] [ 3] [418] +20:31:40 [ 22] [ 3] [021] +20:31:40 [ 32] [ 6] [621354] +20:31:40 [ 35] [ 27] [1808930900011917=1803500910] +20:31:40 [ 37] [ 12] [507902430166] +20:31:40 [ 38] [ 6] [842822] +20:31:40 [ 39] [ 2] [00] +20:31:40 [ 41] [ 8] [05002700] +20:31:40 [ 49] [ 3] [418] +20:31:40 [ 52] [ 16] [83E968B8F4D7A629] +20:31:40 [ 54] [ 20] [1001418C000002460800] +20:31:40 ============================================================================ +20:31:40 Sending to : +20:31:40 ============================================================================ +20:31:40 + + +waiting on router queue for slot.... +20:31:42 ============================================================================ +20:31:42 Slot Id : <189> +20:31:42 Transaction Type : RESPONSE +20:31:42 Received From : +20:31:42 ============================================================================ +20:31:42 FNo. Len. Field Value +20:31:42 ============================================================================ +20:31:42 [ 1] [ 4] [0210] +20:31:42 [ 2] [ 16] [1808930900011917] +20:31:42 [ 3] [ 6] [011000] +20:31:42 [ 4] [ 12] [000005000000] +20:31:42 [ 6] [ 12] [000005000000] +20:31:42 [ 7] [ 10] [0320203131] +20:31:42 [ 11] [ 6] [842822] +20:31:42 [ 12] [ 6] [203131] +20:31:42 [ 13] [ 4] [0320] +20:31:42 [ 18] [ 4] [6011] +20:31:42 [ 19] [ 3] [418] +20:31:42 [ 22] [ 3] [021] +20:31:42 [ 32] [ 6] [621354] +20:31:42 [ 35] [ 27] [1808930900011917=1803500910] +20:31:42 [ 37] [ 12] [507902430166] +20:31:42 [ 38] [ 6] [842822] +20:31:42 [ 39] [ 2] [00] +20:31:42 [ 41] [ 8] [05002700] +20:31:42 [ 49] [ 3] [418] +20:31:42 [ 52] [ 16] [83E968B8F4D7A629] +20:31:42 [ 54] [ 20] [1001418C000002460800] +20:31:42 ============================================================================ +20:31:42 Calculate Source COMM Id = 0 +20:31:42 ============================================================================ +20:31:42 + + +waiting on router queue for slot.... +20:31:47 ============================================================================ +20:31:47 Slot Id : <168> +20:31:47 Transaction Type : REQUEST +20:31:47 Received From : +20:31:47 ============================================================================ +20:31:47 FNo. Len. Field Value +20:31:47 ============================================================================ +20:31:47 [ 1] [ 4] [0800] +20:31:47 [ 7] [ 10] [0320013056] +20:31:47 [ 11] [ 6] [158231] +20:31:47 [ 70] [ 3] [301] +20:31:47 ============================================================================ +20:31:47 + + +waiting on router queue for slot.... +20:31:47 Sending to : +20:31:47 ============================================================================ +20:31:47 ============================================================================ +20:31:47 Slot Id : <168> +20:31:47 Transaction Type : RESPONSE +20:31:47 Received From : +20:31:47 ============================================================================ +20:31:47 FNo. Len. Field Value +20:31:47 ============================================================================ +20:31:47 [ 1] [ 4] [0810] +20:31:47 [ 7] [ 10] [0320013056] +20:31:47 [ 11] [ 6] [158231] +20:31:47 [ 39] [ 2] [00] +20:31:47 [ 70] [ 3] [301] +20:31:47 ============================================================================ +20:31:47 Calculate Source COMM Id = 2 +20:31:47 ============================================================================ +20:31:47 + + +waiting on router queue for slot.... +20:31:56 ============================================================================ +20:31:56 Slot Id : <229> +20:31:56 Transaction Type : REQUEST +20:31:56 Received From : +20:31:56 ============================================================================ +20:31:56 FNo. Len. Field Value +20:31:56 ============================================================================ +20:31:56 [ 1] [ 4] [0800] +20:31:56 [ 7] [ 10] [0321034345] +20:31:56 [ 11] [ 6] [204345] +20:31:56 [ 37] [ 12] [57920204345] +20:31:56 [ 70] [ 3] [301] +20:31:56 ============================================================================ +20:31:56 + + +waiting on router queue for slot.... +20:31:56 Sending to : +20:31:56 ============================================================================ +20:31:56 ============================================================================ +20:31:56 Slot Id : <229> +20:31:56 Transaction Type : RESPONSE +20:31:56 Received From : +20:31:56 ============================================================================ +20:31:56 FNo. Len. Field Value +20:31:56 ============================================================================ +20:31:56 [ 1] [ 4] [0810] +20:31:56 [ 7] [ 10] [0321034345] +20:31:56 [ 11] [ 6] [204345] +20:31:56 [ 37] [ 12] [579202043450] +20:31:56 [ 39] [ 2] [00] +20:31:56 [ 70] [ 3] [810] +20:31:56 ============================================================================ +20:31:56 Calculate Source COMM Id = 6 +20:31:56 ============================================================================ +20:31:56 + + +waiting on router queue for slot.... +20:31:58 ============================================================================ +20:31:58 Slot Id : <173> +20:31:58 Transaction Type : REQUEST +20:31:58 Received From : +20:31:58 ============================================================================ +20:31:58 FNo. Len. Field Value +20:31:58 ============================================================================ +20:31:58 [ 1] [ 4] [0800] +20:31:58 [ 7] [ 10] [0320013106] +20:31:58 [ 11] [ 6] [158232] +20:31:58 [ 70] [ 3] [301] +20:31:58 ============================================================================ +20:31:58 + + +waiting on router queue for slot.... +20:31:58 Sending to : +20:31:58 ============================================================================ +20:31:58 ============================================================================ +20:31:58 Slot Id : <173> +20:31:58 Transaction Type : RESPONSE +20:31:58 Received From : +20:31:58 ============================================================================ +20:31:58 FNo. Len. Field Value +20:31:58 ============================================================================ +20:31:58 [ 1] [ 4] [0810] +20:31:58 [ 7] [ 10] [0320013106] +20:31:58 [ 11] [ 6] [158232] +20:31:58 [ 39] [ 2] [00] +20:31:58 [ 70] [ 3] [301] +20:31:58 ============================================================================ +20:31:58 Calculate Source COMM Id = 2 +20:31:58 ============================================================================ +20:31:58 + + +waiting on router queue for slot.... +20:32:08 ============================================================================ +20:32:08 Slot Id : <174> +20:32:08 Transaction Type : REQUEST +20:32:08 Received From : +20:32:08 ============================================================================ +20:32:08 FNo. Len. Field Value +20:32:08 ============================================================================ +20:32:08 [ 1] [ 4] [0800] +20:32:08 [ 7] [ 10] [0320013117] +20:32:08 [ 11] [ 6] [158233] +20:32:08 [ 70] [ 3] [301] +20:32:08 ============================================================================ +20:32:08 + + +waiting on router queue for slot.... +20:32:08 Sending to : +20:32:08 ============================================================================ +20:32:08 ============================================================================ +20:32:08 Slot Id : <174> +20:32:08 Transaction Type : RESPONSE +20:32:08 Received From : +20:32:08 ============================================================================ +20:32:08 FNo. Len. Field Value +20:32:08 ============================================================================ +20:32:08 [ 1] [ 4] [0810] +20:32:08 [ 7] [ 10] [0320013117] +20:32:08 [ 11] [ 6] [158233] +20:32:08 [ 39] [ 2] [00] +20:32:08 [ 70] [ 3] [301] +20:32:08 ============================================================================ +20:32:08 Calculate Source COMM Id = 2 +20:32:08 ============================================================================ +20:32:08 + + +waiting on router queue for slot.... +20:32:19 ============================================================================ +20:32:19 Slot Id : <246> +20:32:19 Transaction Type : REQUEST +20:32:19 Received From : +20:32:19 ============================================================================ +20:32:19 FNo. Len. Field Value +20:32:19 ============================================================================ +20:32:19 [ 1] [ 4] [0800] +20:32:19 [ 7] [ 10] [0320013128] +20:32:19 [ 11] [ 6] [158234] +20:32:19 [ 70] [ 3] [301] +20:32:19 ============================================================================ +20:32:19 + + +waiting on router queue for slot.... +20:32:19 Sending to : +20:32:19 ============================================================================ +20:32:19 ============================================================================ +20:32:19 Slot Id : <246> +20:32:19 Transaction Type : RESPONSE +20:32:19 Received From : +20:32:19 ============================================================================ +20:32:19 FNo. Len. Field Value +20:32:19 ============================================================================ +20:32:19 [ 1] [ 4] [0810] +20:32:19 [ 7] [ 10] [0320013128] +20:32:19 [ 11] [ 6] [158234] +20:32:19 [ 39] [ 2] [00] +20:32:19 [ 70] [ 3] [301] +20:32:19 ============================================================================ +20:32:19 Calculate Source COMM Id = 2 +20:32:19 ============================================================================ +20:32:19 + + +waiting on router queue for slot.... +20:32:23 ============================================================================ +20:32:23 Slot Id : <188> +20:32:23 Transaction Type : REQUEST +20:32:23 Received From : +20:32:23 ============================================================================ +20:32:23 FNo. Len. Field Value +20:32:23 ============================================================================ +20:32:23 [ 1] [ 4] [0800] +20:32:23 [ 2] [ 5] [02531] +20:32:23 [ 3] [ 6] [579208] +20:32:23 [ 7] [ 10] [0320133223] +20:32:23 [ 11] [ 6] [807604] +20:32:23 [ 15] [ 10] [0320133223] +20:32:23 [ 37] [ 11] [57920807604] +20:32:23 [ 70] [ 3] [001] +20:32:23 ============================================================================ +20:32:23 + + +waiting on router queue for slot.... +20:32:23 ============================================================================ +20:32:23 Slot Id : <188> +20:32:23 Transaction Type : RESPONSE +20:32:23 Received From : +20:32:23 ============================================================================ +20:32:23 FNo. Len. Field Value +20:32:23 ============================================================================ +20:32:23 [ 1] [ 4] [0810] +20:32:23 [ 7] [ 10] [0320133223] +20:32:23 [ 11] [ 6] [807604] +20:32:23 [ 15] [ 4] [0320] +20:32:23 [ 37] [ 12] [57920807604] +20:32:23 [ 39] [ 2] [00] +20:32:23 [ 70] [ 3] [001] +20:32:23 ============================================================================ +20:32:23 Sending to : +20:32:23 ============================================================================ +20:32:23 + + +waiting on router queue for slot.... +20:32:30 ============================================================================ +20:32:30 Slot Id : <223> +20:32:30 Transaction Type : REQUEST +20:32:30 Received From : +20:32:30 ============================================================================ +20:32:30 FNo. Len. Field Value +20:32:30 ============================================================================ +20:32:30 [ 1] [ 4] [0200] +20:32:30 [ 2] [ 16] [6213543000114933] +20:32:30 [ 3] [ 6] [011000] +20:32:30 [ 4] [ 12] [000010000000] +20:32:30 [ 7] [ 10] [0320203251] +20:32:30 [ 11] [ 6] [212156] +20:32:30 [ 12] [ 6] [202702] +20:32:30 [ 13] [ 4] [0320] +20:32:30 [ 14] [ 4] [4912] +20:32:30 [ 15] [ 4] [0320] +20:32:30 [ 18] [ 4] [6011] +20:32:30 [ 19] [ 3] [418] +20:32:30 [ 22] [ 3] [021] +20:32:30 [ 25] [ 2] [01] +20:32:30 [ 28] [ 9] [D00002000] +20:32:30 [ 32] [ 6] [198901] +20:32:30 [ 35] [ 32] [6213543000114933=491212011493198] +20:32:30 [ 37] [ 12] [507920212156] +20:32:30 [ 41] [ 8] [01529018] +20:32:30 [ 42] [ 15] [000000041529018] +20:32:30 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +20:32:30 [ 49] [ 3] [418] +20:32:30 [ 52] [ 16] [ED3479375274D6DA] +20:32:30 ============================================================================ +20:32:30 + + +waiting on router queue for slot.... +20:32:30 Sending to : +20:32:30 ============================================================================ +20:32:30 Sending to : +20:32:30 ============================================================================ +20:32:30 ============================================================================ +20:32:30 Slot Id : <223> +20:32:30 Transaction Type : REQUEST +20:32:30 Received From : +20:32:30 ============================================================================ +20:32:30 FNo. Len. Field Value +20:32:30 ============================================================================ +20:32:30 [ 1] [ 4] [0200] +20:32:30 [ 2] [ 16] [6213543000114933] +20:32:30 [ 3] [ 6] [011000] +20:32:30 [ 4] [ 12] [000010000000] +20:32:30 [ 7] [ 10] [0320203251] +20:32:30 [ 11] [ 6] [212156] +20:32:30 [ 12] [ 6] [202702] +20:32:30 [ 13] [ 4] [0320] +20:32:30 [ 14] [ 4] [4912] +20:32:30 [ 15] [ 4] [0320] +20:32:30 [ 18] [ 4] [6011] +20:32:30 [ 19] [ 3] [418] +20:32:30 [ 22] [ 3] [021] +20:32:30 [ 25] [ 2] [01] +20:32:30 [ 28] [ 9] [D00002000] +20:32:30 [ 32] [ 6] [198901] +20:32:30 [ 35] [ 32] [6213543000114933=491212011493198] +20:32:30 [ 37] [ 12] [507920212156] +20:32:30 [ 41] [ 8] [01529018] +20:32:30 [ 42] [ 15] [000000041529018] +20:32:30 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +20:32:30 [ 49] [ 3] [418] +20:32:30 [ 52] [ 16] [ED3479375274D6DA] +20:32:30 ============================================================================ +20:32:30 + + +waiting on router queue for slot.... +20:32:30 Sending to : +20:32:30 ============================================================================ +20:32:30 ============================================================================ +20:32:30 Slot Id : <223> +20:32:30 Transaction Type : REQUEST +20:32:30 Received From : +20:32:30 ============================================================================ +20:32:30 FNo. Len. Field Value +20:32:30 ============================================================================ +20:32:30 [ 1] [ 4] [0200] +20:32:30 [ 2] [ 16] [6213543000114933] +20:32:30 [ 3] [ 6] [011000] +20:32:30 [ 4] [ 12] [000010000000] +20:32:30 [ 7] [ 10] [0320203251] +20:32:30 [ 11] [ 6] [212156] +20:32:30 [ 12] [ 6] [202702] +20:32:30 [ 13] [ 4] [0320] +20:32:30 [ 14] [ 4] [4912] +20:32:30 [ 15] [ 4] [0320] +20:32:30 [ 18] [ 4] [6011] +20:32:30 [ 19] [ 3] [418] +20:32:30 [ 22] [ 3] [021] +20:32:30 [ 25] [ 2] [01] +20:32:30 [ 28] [ 9] [D00002000] +20:32:30 [ 32] [ 6] [198901] +20:32:30 [ 35] [ 32] [6213543000114933=491212011493198] +20:32:30 [ 37] [ 12] [507920212156] +20:32:30 [ 41] [ 8] [01529018] +20:32:30 [ 42] [ 15] [000000041529018] +20:32:30 [ 43] [ 40] [JDB ATM SOUKSAVAT COLL VN ] +20:32:30 [ 49] [ 3] [418] +20:32:30 [ 52] [ 16] [EBAE9BBBCC5C3EFD] +20:32:30 ============================================================================ +20:32:30 + + +waiting on router queue for slot.... +20:32:30 Sending to : <0> +20:32:30 ============================================================================ +20:32:30 ============================================================================ +20:32:30 Slot Id : <235> +20:32:30 Transaction Type : REQUEST +20:32:30 Received From : +20:32:30 ============================================================================ +20:32:30 FNo. Len. Field Value +20:32:30 ============================================================================ +20:32:30 [ 1] [ 4] [0800] +20:32:30 [ 7] [ 10] [0320013138] +20:32:30 [ 11] [ 6] [158235] +20:32:30 [ 70] [ 3] [301] +20:32:30 ============================================================================ +20:32:30 + + +waiting on router queue for slot.... +20:32:30 Sending to : +20:32:30 ============================================================================ +20:32:30 ============================================================================ +20:32:30 Slot Id : <235> +20:32:30 Transaction Type : RESPONSE +20:32:30 Received From : +20:32:30 ============================================================================ +20:32:30 FNo. Len. Field Value +20:32:30 ============================================================================ +20:32:30 [ 1] [ 4] [0810] +20:32:30 [ 7] [ 10] [0320013138] +20:32:30 [ 11] [ 6] [158235] +20:32:30 [ 39] [ 2] [00] +20:32:30 [ 70] [ 3] [301] +20:32:30 ============================================================================ +20:32:30 Calculate Source COMM Id = 2 +20:32:30 ============================================================================ +20:32:30 + + +waiting on router queue for slot.... +20:32:31 ============================================================================ +20:32:31 Slot Id : <223> +20:32:31 Transaction Type : RESPONSE +20:32:31 Received From : +20:32:31 ============================================================================ +20:32:31 FNo. Len. Field Value +20:32:31 ============================================================================ +20:32:31 [ 1] [ 4] [0210] +20:32:31 [ 2] [ 16] [6213543000114933] +20:32:31 [ 3] [ 6] [011000] +20:32:31 [ 4] [ 12] [000010000000] +20:32:31 [ 7] [ 10] [0320203251] +20:32:31 [ 11] [ 6] [212156] +20:32:31 [ 12] [ 6] [202702] +20:32:31 [ 13] [ 4] [0320] +20:32:31 [ 15] [ 4] [0320] +20:32:31 [ 18] [ 4] [6011] +20:32:31 [ 19] [ 3] [418] +20:32:31 [ 32] [ 6] [198901] +20:32:31 [ 35] [ 32] [6213543000114933=491212011493198] +20:32:31 [ 37] [ 12] [507920212156] +20:32:31 [ 38] [ 6] [978468] +20:32:31 [ 39] [ 2] [00] +20:32:31 [ 41] [ 8] [01529018] +20:32:31 [ 49] [ 3] [418] +20:32:31 [ 54] [ 40] [1001418C0001384533291002418C000128253329] +20:32:31 ============================================================================ +20:32:31 Sending to : +20:32:31 ============================================================================ +20:32:31 + + +waiting on router queue for slot.... +20:32:32 ============================================================================ +20:32:32 Slot Id : <223> +20:32:32 Transaction Type : RESPONSE +20:32:32 Received From : +20:32:32 ============================================================================ +20:32:32 FNo. Len. Field Value +20:32:32 ============================================================================ +20:32:32 [ 1] [ 4] [0210] +20:32:32 [ 2] [ 16] [6213543000114933] +20:32:32 [ 3] [ 6] [011000] +20:32:32 [ 4] [ 12] [000010000000] +20:32:32 [ 7] [ 10] [0320203251] +20:32:32 [ 11] [ 6] [212156] +20:32:32 [ 12] [ 6] [202702] +20:32:32 [ 13] [ 4] [0320] +20:32:32 [ 15] [ 4] [0320] +20:32:32 [ 18] [ 4] [6011] +20:32:32 [ 19] [ 3] [418] +20:32:32 [ 32] [ 6] [198901] +20:32:32 [ 35] [ 32] [6213543000114933=491212011493198] +20:32:32 [ 37] [ 12] [507920212156] +20:32:32 [ 38] [ 6] [978468] +20:32:32 [ 39] [ 2] [00] +20:32:32 [ 41] [ 8] [01529018] +20:32:32 [ 49] [ 3] [418] +20:32:32 [ 54] [ 40] [1001418C0001384533291002418C000128253329] +20:32:32 ============================================================================ +20:32:32 Calculate Source COMM Id = 5 +20:32:32 ============================================================================ +20:32:32 + + +waiting on router queue for slot.... +20:32:46 ============================================================================ +20:32:46 Slot Id : <227> +20:32:46 Transaction Type : REQUEST +20:32:46 Received From : +20:32:46 ============================================================================ +20:32:46 FNo. Len. Field Value +20:32:46 ============================================================================ +20:32:46 [ 1] [ 4] [0800] +20:32:46 [ 7] [ 10] [0320013154] +20:32:46 [ 11] [ 6] [158236] +20:32:46 [ 70] [ 3] [301] +20:32:46 ============================================================================ +20:32:46 + + +waiting on router queue for slot.... +20:32:46 Sending to : +20:32:46 ============================================================================ +20:32:46 ============================================================================ +20:32:46 Slot Id : <227> +20:32:46 Transaction Type : RESPONSE +20:32:46 Received From : +20:32:46 ============================================================================ +20:32:46 FNo. Len. Field Value +20:32:46 ============================================================================ +20:32:46 [ 1] [ 4] [0810] +20:32:46 [ 7] [ 10] [0320013154] +20:32:46 [ 11] [ 6] [158236] +20:32:46 [ 39] [ 2] [00] +20:32:46 [ 70] [ 3] [301] +20:32:46 ============================================================================ +20:32:46 Calculate Source COMM Id = 2 +20:32:46 ============================================================================ +20:32:46 + + +waiting on router queue for slot.... +20:32:58 ============================================================================ +20:32:58 Slot Id : <244> +20:32:58 Transaction Type : REQUEST +20:32:58 Received From : +20:32:58 ============================================================================ +20:32:58 FNo. Len. Field Value +20:32:58 ============================================================================ +20:32:58 [ 1] [ 4] [0800] +20:32:58 [ 7] [ 10] [0320013206] +20:32:58 [ 11] [ 6] [158237] +20:32:58 [ 70] [ 3] [301] +20:32:58 ============================================================================ +20:32:58 + + +waiting on router queue for slot.... +20:32:58 Sending to : +20:32:58 ============================================================================ +20:32:58 ============================================================================ +20:32:58 Slot Id : <244> +20:32:58 Transaction Type : RESPONSE +20:32:58 Received From : +20:32:58 ============================================================================ +20:32:58 FNo. Len. Field Value +20:32:58 ============================================================================ +20:32:58 [ 1] [ 4] [0810] +20:32:58 [ 7] [ 10] [0320013206] +20:32:58 [ 11] [ 6] [158237] +20:32:58 [ 39] [ 2] [00] +20:32:58 [ 70] [ 3] [301] +20:32:58 ============================================================================ +20:32:58 Calculate Source COMM Id = 2 +20:32:58 ============================================================================ +20:32:58 + + +waiting on router queue for slot.... +20:33:01 ============================================================================ +20:33:01 Slot Id : <215> +20:33:01 Transaction Type : REQUEST +20:33:01 Received From : +20:33:01 ============================================================================ +20:33:01 FNo. Len. Field Value +20:33:01 ============================================================================ +20:33:01 [ 1] [ 4] [0800] +20:33:01 [ 7] [ 10] [0321034450] +20:33:01 [ 11] [ 6] [204450] +20:33:01 [ 37] [ 12] [57920204450] +20:33:01 [ 70] [ 3] [301] +20:33:01 ============================================================================ +20:33:01 + + +waiting on router queue for slot.... +20:33:01 Sending to : +20:33:01 ============================================================================ +20:33:01 ============================================================================ +20:33:01 Slot Id : <215> +20:33:01 Transaction Type : RESPONSE +20:33:01 Received From : +20:33:01 ============================================================================ +20:33:01 FNo. Len. Field Value +20:33:01 ============================================================================ +20:33:01 [ 1] [ 4] [0810] +20:33:01 [ 7] [ 10] [0321034450] +20:33:01 [ 11] [ 6] [204450] +20:33:01 [ 37] [ 12] [579202044500] +20:33:01 [ 39] [ 2] [00] +20:33:01 [ 70] [ 3] [810] +20:33:01 ============================================================================ +20:33:01 Calculate Source COMM Id = 6 +20:33:01 ============================================================================ +20:33:01 + + +waiting on router queue for slot.... +20:33:13 ============================================================================ +20:33:13 Slot Id : <251> +20:33:13 Transaction Type : REQUEST +20:33:13 Received From : +20:33:13 ============================================================================ +20:33:13 FNo. Len. Field Value +20:33:13 ============================================================================ +20:33:13 [ 1] [ 4] [0800] +20:33:13 [ 7] [ 10] [0320013222] +20:33:13 [ 11] [ 6] [158238] +20:33:13 [ 70] [ 3] [301] +20:33:13 ============================================================================ +20:33:13 + + +waiting on router queue for slot.... +20:33:13 Sending to : +20:33:13 ============================================================================ +20:33:13 ============================================================================ +20:33:13 Slot Id : <251> +20:33:13 Transaction Type : RESPONSE +20:33:13 Received From : +20:33:13 ============================================================================ +20:33:13 FNo. Len. Field Value +20:33:13 ============================================================================ +20:33:13 [ 1] [ 4] [0810] +20:33:13 [ 7] [ 10] [0320013222] +20:33:13 [ 11] [ 6] [158238] +20:33:13 [ 39] [ 2] [00] +20:33:13 [ 70] [ 3] [301] +20:33:13 ============================================================================ +20:33:13 Calculate Source COMM Id = 2 +20:33:13 ============================================================================ +20:33:13 + + +waiting on router queue for slot.... +20:33:23 ============================================================================ +20:33:23 Slot Id : <248> +20:33:23 Transaction Type : REQUEST +20:33:23 Received From : +20:33:23 ============================================================================ +20:33:23 FNo. Len. Field Value +20:33:23 ============================================================================ +20:33:23 [ 1] [ 4] [0800] +20:33:23 [ 7] [ 10] [0320013232] +20:33:23 [ 11] [ 6] [158239] +20:33:23 [ 70] [ 3] [301] +20:33:23 ============================================================================ +20:33:23 + + +waiting on router queue for slot.... +20:33:24 Sending to : +20:33:24 ============================================================================ +20:33:24 ============================================================================ +20:33:24 Slot Id : <248> +20:33:24 Transaction Type : RESPONSE +20:33:24 Received From : +20:33:24 ============================================================================ +20:33:24 FNo. Len. Field Value +20:33:24 ============================================================================ +20:33:24 [ 1] [ 4] [0810] +20:33:24 [ 7] [ 10] [0320013232] +20:33:24 [ 11] [ 6] [158239] +20:33:24 [ 39] [ 2] [00] +20:33:24 [ 70] [ 3] [301] +20:33:24 ============================================================================ +20:33:24 Calculate Source COMM Id = 2 +20:33:24 ============================================================================ +20:33:24 + + +waiting on router queue for slot.... +20:33:25 ============================================================================ +20:33:25 Slot Id : <255> +20:33:25 Transaction Type : REQUEST +20:33:25 Received From : +20:33:25 ============================================================================ +20:33:25 FNo. Len. Field Value +20:33:25 ============================================================================ +20:33:25 [ 1] [ 4] [0800] +20:33:25 [ 2] [ 5] [02531] +20:33:25 [ 3] [ 6] [579208] +20:33:25 [ 7] [ 10] [0320133325] +20:33:25 [ 11] [ 6] [807605] +20:33:25 [ 15] [ 10] [0320133325] +20:33:25 [ 37] [ 11] [57920807605] +20:33:25 [ 70] [ 3] [001] +20:33:25 ============================================================================ +20:33:25 + + +waiting on router queue for slot.... +20:33:26 ============================================================================ +20:33:26 Slot Id : <255> +20:33:26 Transaction Type : RESPONSE +20:33:26 Received From : +20:33:26 ============================================================================ +20:33:26 FNo. Len. Field Value +20:33:26 ============================================================================ +20:33:26 [ 1] [ 4] [0810] +20:33:26 [ 7] [ 10] [0320133325] +20:33:26 [ 11] [ 6] [807605] +20:33:26 [ 15] [ 4] [0320] +20:33:26 [ 37] [ 12] [57920807605] +20:33:26 [ 39] [ 2] [00] +20:33:26 [ 70] [ 3] [001] +20:33:26 ============================================================================ +20:33:26 Sending to : +20:33:26 ============================================================================ +20:33:26 + + +waiting on router queue for slot.... +20:33:34 ============================================================================ +20:33:34 Slot Id : <243> +20:33:34 Transaction Type : REQUEST +20:33:34 Received From : +20:33:34 ============================================================================ +20:33:34 FNo. Len. Field Value +20:33:34 ============================================================================ +20:33:34 [ 1] [ 4] [0800] +20:33:34 [ 7] [ 10] [0320013242] +20:33:34 [ 11] [ 6] [158240] +20:33:34 [ 70] [ 3] [301] +20:33:34 ============================================================================ +20:33:34 + + +waiting on router queue for slot.... +20:33:34 Sending to : +20:33:34 ============================================================================ +20:33:34 ============================================================================ +20:33:34 Slot Id : <243> +20:33:34 Transaction Type : RESPONSE +20:33:34 Received From : +20:33:34 ============================================================================ +20:33:34 FNo. Len. Field Value +20:33:34 ============================================================================ +20:33:34 [ 1] [ 4] [0810] +20:33:34 [ 7] [ 10] [0320013242] +20:33:34 [ 11] [ 6] [158240] +20:33:34 [ 39] [ 2] [00] +20:33:34 [ 70] [ 3] [301] +20:33:34 ============================================================================ +20:33:34 Calculate Source COMM Id = 2 +20:33:34 ============================================================================ +20:33:34 + + +waiting on router queue for slot.... +20:33:36 ============================================================================ +20:33:36 Slot Id : <242> +20:33:36 Transaction Type : REQUEST +20:33:36 Received From : +20:33:36 ============================================================================ +20:33:36 FNo. Len. Field Value +20:33:36 ============================================================================ +20:33:36 [ 1] [ 4] [0200] +20:33:36 [ 2] [ 16] [6213544000548906] +20:33:36 [ 3] [ 6] [311000] +20:33:36 [ 4] [ 12] [000000000000] +20:33:36 [ 7] [ 10] [0320204123] +20:33:36 [ 11] [ 6] [021213] +20:33:36 [ 12] [ 6] [204123] +20:33:36 [ 13] [ 4] [0320] +20:33:36 [ 14] [ 4] [4912] +20:33:36 [ 15] [ 4] [0320] +20:33:36 [ 18] [ 4] [6011] +20:33:36 [ 22] [ 3] [900] +20:33:36 [ 25] [ 2] [02] +20:33:36 [ 28] [ 9] [000000000] +20:33:36 [ 32] [ 6] [220699] +20:33:36 [ 35] [ 32] [6213544000548906=491212014890433] +20:33:36 [ 37] [ 12] [507900263148] +20:33:36 [ 41] [ 8] [01001400] +20:33:36 [ 42] [ 15] [APTRA ] +20:33:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:33:36 [ 49] [ 3] [418] +20:33:36 [ 52] [ 16] [71E88A7D1721AD20] +20:33:36 ============================================================================ +20:33:36 + + +waiting on router queue for slot.... +20:33:36 Sending to : +20:33:36 ============================================================================ +20:33:36 Sending to : +20:33:36 ============================================================================ +20:33:36 ============================================================================ +20:33:36 Slot Id : <242> +20:33:36 Transaction Type : REQUEST +20:33:36 Received From : +20:33:36 ============================================================================ +20:33:36 FNo. Len. Field Value +20:33:36 ============================================================================ +20:33:36 [ 1] [ 4] [0200] +20:33:36 [ 2] [ 16] [6213544000548906] +20:33:36 [ 3] [ 6] [311000] +20:33:36 [ 4] [ 12] [000000000000] +20:33:36 [ 7] [ 10] [0320204123] +20:33:36 [ 11] [ 6] [021213] +20:33:36 [ 12] [ 6] [204123] +20:33:36 [ 13] [ 4] [0320] +20:33:36 [ 14] [ 4] [4912] +20:33:36 [ 15] [ 4] [0320] +20:33:36 [ 18] [ 4] [6011] +20:33:36 [ 22] [ 3] [900] +20:33:36 [ 25] [ 2] [02] +20:33:36 [ 28] [ 9] [000000000] +20:33:36 [ 32] [ 6] [220699] +20:33:36 [ 35] [ 32] [6213544000548906=491212014890433] +20:33:36 [ 37] [ 12] [507900263148] +20:33:36 [ 41] [ 8] [01001400] +20:33:36 [ 42] [ 15] [APTRA ] +20:33:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:33:36 [ 49] [ 3] [418] +20:33:36 [ 52] [ 16] [71E88A7D1721AD20] +20:33:36 ============================================================================ +20:33:36 + + +waiting on router queue for slot.... +20:33:36 Sending to : +20:33:36 ============================================================================ +20:33:36 ============================================================================ +20:33:36 Slot Id : <242> +20:33:36 Transaction Type : REQUEST +20:33:36 Received From : +20:33:36 ============================================================================ +20:33:36 FNo. Len. Field Value +20:33:36 ============================================================================ +20:33:36 [ 1] [ 4] [0200] +20:33:36 [ 2] [ 16] [6213544000548906] +20:33:36 [ 3] [ 6] [311000] +20:33:36 [ 4] [ 12] [000000000000] +20:33:36 [ 7] [ 10] [0320204123] +20:33:36 [ 11] [ 6] [021213] +20:33:36 [ 12] [ 6] [204123] +20:33:36 [ 13] [ 4] [0320] +20:33:36 [ 14] [ 4] [4912] +20:33:36 [ 15] [ 4] [0320] +20:33:36 [ 18] [ 4] [6011] +20:33:36 [ 22] [ 3] [900] +20:33:36 [ 25] [ 2] [02] +20:33:36 [ 28] [ 9] [000000000] +20:33:36 [ 32] [ 6] [220699] +20:33:36 [ 35] [ 32] [6213544000548906=491212014890433] +20:33:36 [ 37] [ 12] [507900263148] +20:33:36 [ 41] [ 8] [01001400] +20:33:36 [ 42] [ 15] [APTRA ] +20:33:36 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:33:36 [ 49] [ 3] [418] +20:33:36 [ 52] [ 16] [F6A753509B2DA79B] +20:33:36 ============================================================================ +20:33:36 + + +waiting on router queue for slot.... +20:33:36 Sending to : <0> +20:33:36 ============================================================================ +20:33:36 ============================================================================ +20:33:36 Slot Id : <242> +20:33:36 Transaction Type : RESPONSE +20:33:36 Received From : +20:33:36 ============================================================================ +20:33:36 FNo. Len. Field Value +20:33:36 ============================================================================ +20:33:36 [ 1] [ 4] [0210] +20:33:36 [ 2] [ 16] [6213544000548906] +20:33:36 [ 3] [ 6] [311000] +20:33:36 [ 4] [ 12] [000000000000] +20:33:36 [ 7] [ 10] [0320204123] +20:33:36 [ 11] [ 6] [021213] +20:33:36 [ 12] [ 6] [204123] +20:33:36 [ 13] [ 4] [0320] +20:33:36 [ 15] [ 4] [0320] +20:33:36 [ 18] [ 4] [6011] +20:33:36 [ 22] [ 3] [900] +20:33:36 [ 32] [ 6] [220699] +20:33:36 [ 35] [ 32] [6213544000548906=491212014890433] +20:33:36 [ 37] [ 12] [507900263148] +20:33:36 [ 38] [ 6] [203333] +20:33:36 [ 39] [ 2] [55] +20:33:36 [ 41] [ 8] [01001400] +20:33:36 [ 49] [ 3] [418] +20:33:36 ============================================================================ +20:33:36 Sending to : +20:33:36 ============================================================================ +20:33:36 + + +waiting on router queue for slot.... +20:33:37 ============================================================================ +20:33:37 Slot Id : <242> +20:33:37 Transaction Type : RESPONSE +20:33:37 Received From : +20:33:37 ============================================================================ +20:33:37 FNo. Len. Field Value +20:33:37 ============================================================================ +20:33:37 [ 1] [ 4] [0210] +20:33:37 [ 2] [ 16] [6213544000548906] +20:33:37 [ 3] [ 6] [311000] +20:33:37 [ 4] [ 12] [000000000000] +20:33:37 [ 7] [ 10] [0320204123] +20:33:37 [ 11] [ 6] [021213] +20:33:37 [ 12] [ 6] [204123] +20:33:37 [ 13] [ 4] [0320] +20:33:37 [ 15] [ 4] [0320] +20:33:37 [ 18] [ 4] [6011] +20:33:37 [ 22] [ 3] [900] +20:33:37 [ 32] [ 6] [220699] +20:33:37 [ 35] [ 32] [6213544000548906=491212014890433] +20:33:37 [ 37] [ 12] [507900263148] +20:33:37 [ 38] [ 6] [203333] +20:33:37 [ 39] [ 2] [55] +20:33:37 [ 41] [ 8] [01001400] +20:33:37 [ 49] [ 3] [418] +20:33:37 ============================================================================ +20:33:37 Calculate Source COMM Id = 1 +20:33:37 ============================================================================ +20:33:37 + + +waiting on router queue for slot.... +20:33:47 ============================================================================ +20:33:47 Slot Id : <250> +20:33:47 Transaction Type : REQUEST +20:33:47 Received From : +20:33:47 ============================================================================ +20:33:47 FNo. Len. Field Value +20:33:47 ============================================================================ +20:33:47 [ 1] [ 4] [0800] +20:33:47 [ 7] [ 10] [0320013255] +20:33:47 [ 11] [ 6] [158241] +20:33:47 [ 70] [ 3] [301] +20:33:47 ============================================================================ +20:33:47 + + +waiting on router queue for slot.... +20:33:47 Sending to : +20:33:47 ============================================================================ +20:33:47 ============================================================================ +20:33:47 Slot Id : <250> +20:33:47 Transaction Type : RESPONSE +20:33:47 Received From : +20:33:47 ============================================================================ +20:33:47 FNo. Len. Field Value +20:33:47 ============================================================================ +20:33:47 [ 1] [ 4] [0810] +20:33:47 [ 7] [ 10] [0320013255] +20:33:47 [ 11] [ 6] [158241] +20:33:47 [ 39] [ 2] [00] +20:33:47 [ 70] [ 3] [301] +20:33:47 ============================================================================ +20:33:47 Calculate Source COMM Id = 2 +20:33:47 ============================================================================ +20:33:47 + + +waiting on router queue for slot.... +20:34:02 ============================================================================ +20:34:02 Slot Id : <226> +20:34:02 Transaction Type : REQUEST +20:34:02 Received From : +20:34:02 ============================================================================ +20:34:02 FNo. Len. Field Value +20:34:02 ============================================================================ +20:34:02 [ 1] [ 4] [0800] +20:34:02 [ 7] [ 10] [0320013311] +20:34:02 [ 11] [ 6] [158242] +20:34:02 [ 70] [ 3] [301] +20:34:02 ============================================================================ +20:34:02 + + +waiting on router queue for slot.... +20:34:02 Sending to : +20:34:02 ============================================================================ +20:34:02 ============================================================================ +20:34:02 Slot Id : <226> +20:34:02 Transaction Type : RESPONSE +20:34:02 Received From : +20:34:02 ============================================================================ +20:34:02 FNo. Len. Field Value +20:34:02 ============================================================================ +20:34:02 [ 1] [ 4] [0810] +20:34:02 [ 7] [ 10] [0320013311] +20:34:02 [ 11] [ 6] [158242] +20:34:02 [ 39] [ 2] [00] +20:34:02 [ 70] [ 3] [301] +20:34:02 ============================================================================ +20:34:02 Calculate Source COMM Id = 2 +20:34:02 ============================================================================ +20:34:02 + + +waiting on router queue for slot.... +20:34:06 ============================================================================ +20:34:06 Slot Id : <177> +20:34:06 Transaction Type : REQUEST +20:34:06 Received From : +20:34:06 ============================================================================ +20:34:06 FNo. Len. Field Value +20:34:06 ============================================================================ +20:34:06 [ 1] [ 4] [0800] +20:34:06 [ 7] [ 10] [0321034555] +20:34:06 [ 11] [ 6] [204555] +20:34:06 [ 37] [ 12] [57920204555] +20:34:06 [ 70] [ 3] [301] +20:34:06 ============================================================================ +20:34:06 + + +waiting on router queue for slot.... +20:34:06 Sending to : +20:34:06 ============================================================================ +20:34:06 ============================================================================ +20:34:06 Slot Id : <177> +20:34:06 Transaction Type : RESPONSE +20:34:06 Received From : +20:34:06 ============================================================================ +20:34:06 FNo. Len. Field Value +20:34:06 ============================================================================ +20:34:06 [ 1] [ 4] [0810] +20:34:06 [ 7] [ 10] [0321034555] +20:34:06 [ 11] [ 6] [204555] +20:34:06 [ 37] [ 12] [579202045550] +20:34:06 [ 39] [ 2] [00] +20:34:06 [ 70] [ 3] [810] +20:34:06 ============================================================================ +20:34:06 Calculate Source COMM Id = 6 +20:34:06 ============================================================================ +20:34:06 + + +waiting on router queue for slot.... +20:34:09 ============================================================================ +20:34:09 Slot Id : <237> +20:34:09 Transaction Type : REQUEST +20:34:09 Received From : +20:34:09 ============================================================================ +20:34:09 FNo. Len. Field Value +20:34:09 ============================================================================ +20:34:09 [ 1] [ 4] [0200] +20:34:09 [ 2] [ 16] [6213544000548906] +20:34:09 [ 3] [ 6] [010000] +20:34:09 [ 4] [ 12] [000070000000] +20:34:09 [ 7] [ 10] [0320204156] +20:34:09 [ 11] [ 6] [021216] +20:34:09 [ 12] [ 6] [204156] +20:34:09 [ 13] [ 4] [0320] +20:34:09 [ 14] [ 4] [4912] +20:34:09 [ 15] [ 4] [0320] +20:34:09 [ 18] [ 4] [6011] +20:34:09 [ 22] [ 3] [900] +20:34:09 [ 25] [ 2] [02] +20:34:09 [ 28] [ 9] [D00002000] +20:34:09 [ 32] [ 6] [220699] +20:34:09 [ 35] [ 32] [6213544000548906=491212014890433] +20:34:09 [ 37] [ 12] [507900263150] +20:34:09 [ 41] [ 8] [01001400] +20:34:09 [ 42] [ 15] [APTRA ] +20:34:09 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:34:09 [ 49] [ 3] [418] +20:34:09 [ 52] [ 16] [2B30032B0B0DB3E5] +20:34:09 ============================================================================ +20:34:09 + + +waiting on router queue for slot.... +20:34:09 Sending to : +20:34:09 ============================================================================ +20:34:09 Sending to : +20:34:09 ============================================================================ +20:34:10 ============================================================================ +20:34:10 Slot Id : <237> +20:34:10 Transaction Type : REQUEST +20:34:10 Received From : +20:34:10 ============================================================================ +20:34:10 FNo. Len. Field Value +20:34:10 ============================================================================ +20:34:10 [ 1] [ 4] [0200] +20:34:10 [ 2] [ 16] [6213544000548906] +20:34:10 [ 3] [ 6] [010000] +20:34:10 [ 4] [ 12] [000070000000] +20:34:10 [ 7] [ 10] [0320204156] +20:34:10 [ 11] [ 6] [021216] +20:34:10 [ 12] [ 6] [204156] +20:34:10 [ 13] [ 4] [0320] +20:34:10 [ 14] [ 4] [4912] +20:34:10 [ 15] [ 4] [0320] +20:34:10 [ 18] [ 4] [6011] +20:34:10 [ 22] [ 3] [900] +20:34:10 [ 25] [ 2] [02] +20:34:10 [ 28] [ 9] [D00002000] +20:34:10 [ 32] [ 6] [220699] +20:34:10 [ 35] [ 32] [6213544000548906=491212014890433] +20:34:10 [ 37] [ 12] [507900263150] +20:34:10 [ 41] [ 8] [01001400] +20:34:10 [ 42] [ 15] [APTRA ] +20:34:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:34:10 [ 49] [ 3] [418] +20:34:10 [ 52] [ 16] [2B30032B0B0DB3E5] +20:34:10 ============================================================================ +20:34:10 + + +waiting on router queue for slot.... +20:34:10 Sending to : +20:34:10 ============================================================================ +20:34:10 ============================================================================ +20:34:10 Slot Id : <237> +20:34:10 Transaction Type : REQUEST +20:34:10 Received From : +20:34:10 ============================================================================ +20:34:10 FNo. Len. Field Value +20:34:10 ============================================================================ +20:34:10 [ 1] [ 4] [0200] +20:34:10 [ 2] [ 16] [6213544000548906] +20:34:10 [ 3] [ 6] [010000] +20:34:10 [ 4] [ 12] [000070000000] +20:34:10 [ 7] [ 10] [0320204156] +20:34:10 [ 11] [ 6] [021216] +20:34:10 [ 12] [ 6] [204156] +20:34:10 [ 13] [ 4] [0320] +20:34:10 [ 14] [ 4] [4912] +20:34:10 [ 15] [ 4] [0320] +20:34:10 [ 18] [ 4] [6011] +20:34:10 [ 22] [ 3] [900] +20:34:10 [ 25] [ 2] [02] +20:34:10 [ 28] [ 9] [D00002000] +20:34:10 [ 32] [ 6] [220699] +20:34:10 [ 35] [ 32] [6213544000548906=491212014890433] +20:34:10 [ 37] [ 12] [507900263150] +20:34:10 [ 41] [ 8] [01001400] +20:34:10 [ 42] [ 15] [APTRA ] +20:34:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:34:10 [ 49] [ 3] [418] +20:34:10 [ 52] [ 16] [CA9B7794731E383D] +20:34:10 ============================================================================ +20:34:10 + + +waiting on router queue for slot.... +20:34:10 Sending to : <0> +20:34:10 ============================================================================ +20:34:10 ============================================================================ +20:34:10 Slot Id : <237> +20:34:10 Transaction Type : RESPONSE +20:34:10 Received From : +20:34:10 ============================================================================ +20:34:10 FNo. Len. Field Value +20:34:10 ============================================================================ +20:34:10 [ 1] [ 4] [0210] +20:34:10 [ 2] [ 16] [6213544000548906] +20:34:10 [ 3] [ 6] [010000] +20:34:10 [ 4] [ 12] [000070000000] +20:34:10 [ 7] [ 10] [0320204156] +20:34:10 [ 11] [ 6] [021216] +20:34:10 [ 12] [ 6] [204156] +20:34:10 [ 13] [ 4] [0320] +20:34:10 [ 15] [ 4] [0320] +20:34:10 [ 18] [ 4] [6011] +20:34:10 [ 32] [ 6] [220699] +20:34:10 [ 35] [ 32] [6213544000548906=491212014890433] +20:34:10 [ 37] [ 12] [507900263150] +20:34:10 [ 38] [ 6] [628771] +20:34:10 [ 39] [ 2] [00] +20:34:10 [ 41] [ 8] [01001400] +20:34:10 [ 49] [ 3] [418] +20:34:10 [ 54] [ 40] [0001418C0036695358160002418C003599335816] +20:34:10 ============================================================================ +20:34:10 Sending to : +20:34:10 ============================================================================ +20:34:10 + + +waiting on router queue for slot.... +20:34:12 ============================================================================ +20:34:12 Slot Id : <237> +20:34:12 Transaction Type : RESPONSE +20:34:12 Received From : +20:34:12 ============================================================================ +20:34:12 FNo. Len. Field Value +20:34:12 ============================================================================ +20:34:12 [ 1] [ 4] [0210] +20:34:12 [ 2] [ 16] [6213544000548906] +20:34:12 [ 3] [ 6] [010000] +20:34:12 [ 4] [ 12] [000070000000] +20:34:12 [ 7] [ 10] [0320204156] +20:34:12 [ 11] [ 6] [021216] +20:34:12 [ 12] [ 6] [204156] +20:34:12 [ 13] [ 4] [0320] +20:34:12 [ 15] [ 4] [0320] +20:34:12 [ 18] [ 4] [6011] +20:34:12 [ 32] [ 6] [220699] +20:34:12 [ 35] [ 32] [6213544000548906=491212014890433] +20:34:12 [ 37] [ 12] [507900263150] +20:34:12 [ 38] [ 6] [628771] +20:34:12 [ 39] [ 2] [00] +20:34:12 [ 41] [ 8] [01001400] +20:34:12 [ 49] [ 3] [418] +20:34:12 [ 54] [ 40] [0001418C0036695358160002418C003599335816] +20:34:12 ============================================================================ +20:34:12 Calculate Source COMM Id = 1 +20:34:12 ============================================================================ +20:34:12 + + +waiting on router queue for slot.... +20:34:13 ============================================================================ +20:34:13 Slot Id : <233> +20:34:13 Transaction Type : REQUEST +20:34:13 Received From : +20:34:13 ============================================================================ +20:34:13 FNo. Len. Field Value +20:34:13 ============================================================================ +20:34:13 [ 1] [ 4] [0800] +20:34:13 [ 7] [ 10] [0320013322] +20:34:13 [ 11] [ 6] [158243] +20:34:13 [ 70] [ 3] [301] +20:34:13 ============================================================================ +20:34:13 + + +waiting on router queue for slot.... +20:34:13 Sending to : +20:34:13 ============================================================================ +20:34:13 ============================================================================ +20:34:13 Slot Id : <233> +20:34:13 Transaction Type : RESPONSE +20:34:13 Received From : +20:34:13 ============================================================================ +20:34:13 FNo. Len. Field Value +20:34:13 ============================================================================ +20:34:13 [ 1] [ 4] [0810] +20:34:13 [ 7] [ 10] [0320013322] +20:34:13 [ 11] [ 6] [158243] +20:34:13 [ 39] [ 2] [00] +20:34:13 [ 70] [ 3] [301] +20:34:13 ============================================================================ +20:34:13 Calculate Source COMM Id = 2 +20:34:13 ============================================================================ +20:34:13 + + +waiting on router queue for slot.... +20:34:27 ============================================================================ +20:34:27 Slot Id : <260> +20:34:27 Transaction Type : REQUEST +20:34:27 Received From : +20:34:27 ============================================================================ +20:34:27 FNo. Len. Field Value +20:34:27 ============================================================================ +20:34:27 [ 1] [ 4] [0800] +20:34:27 [ 2] [ 5] [02531] +20:34:27 [ 3] [ 6] [579208] +20:34:27 [ 7] [ 10] [0320133427] +20:34:27 [ 11] [ 6] [807606] +20:34:27 [ 15] [ 10] [0320133427] +20:34:27 [ 37] [ 11] [57920807606] +20:34:27 [ 70] [ 3] [001] +20:34:27 ============================================================================ +20:34:27 + + +waiting on router queue for slot.... +20:34:28 ============================================================================ +20:34:28 Slot Id : <260> +20:34:28 Transaction Type : RESPONSE +20:34:28 Received From : +20:34:28 ============================================================================ +20:34:28 FNo. Len. Field Value +20:34:28 ============================================================================ +20:34:28 [ 1] [ 4] [0810] +20:34:28 [ 7] [ 10] [0320133427] +20:34:28 [ 11] [ 6] [807606] +20:34:28 [ 15] [ 4] [0320] +20:34:28 [ 37] [ 12] [57920807606] +20:34:28 [ 39] [ 2] [00] +20:34:28 [ 70] [ 3] [001] +20:34:28 ============================================================================ +20:34:28 Sending to : +20:34:28 ============================================================================ +20:34:28 + + +waiting on router queue for slot.... +20:34:29 ============================================================================ +20:34:29 Slot Id : <253> +20:34:29 Transaction Type : REQUEST +20:34:29 Received From : +20:34:29 ============================================================================ +20:34:29 FNo. Len. Field Value +20:34:29 ============================================================================ +20:34:29 [ 1] [ 4] [0800] +20:34:29 [ 7] [ 10] [0320013337] +20:34:29 [ 11] [ 6] [158244] +20:34:29 [ 70] [ 3] [301] +20:34:29 ============================================================================ +20:34:29 + + +waiting on router queue for slot.... +20:34:29 Sending to : +20:34:29 ============================================================================ +20:34:29 ============================================================================ +20:34:29 Slot Id : <253> +20:34:29 Transaction Type : RESPONSE +20:34:29 Received From : +20:34:29 ============================================================================ +20:34:29 FNo. Len. Field Value +20:34:29 ============================================================================ +20:34:29 [ 1] [ 4] [0810] +20:34:29 [ 7] [ 10] [0320013337] +20:34:29 [ 11] [ 6] [158244] +20:34:29 [ 39] [ 2] [00] +20:34:29 [ 70] [ 3] [301] +20:34:29 ============================================================================ +20:34:29 Calculate Source COMM Id = 2 +20:34:29 ============================================================================ +20:34:29 + + +waiting on router queue for slot.... +20:34:33 ============================================================================ +20:34:33 Slot Id : <234> +20:34:33 Transaction Type : REQUEST +20:34:33 Received From : +20:34:33 ============================================================================ +20:34:33 FNo. Len. Field Value +20:34:33 ============================================================================ +20:34:33 [ 1] [ 4] [0800] +20:34:33 [ 7] [ 10] [0320203420] +20:34:33 [ 11] [ 6] [052741] +20:34:33 [ 37] [ 12] [507920052741] +20:34:33 [ 70] [ 3] [ ] +20:34:33 ============================================================================ +20:34:33 + + +waiting on router queue for slot.... +20:34:33 Sending to : +20:34:33 ============================================================================ +20:34:33 ============================================================================ +20:34:33 Slot Id : <234> +20:34:33 Transaction Type : RESPONSE +20:34:33 Received From : +20:34:33 ============================================================================ +20:34:33 FNo. Len. Field Value +20:34:33 ============================================================================ +20:34:33 [ 1] [ 4] [0810] +20:34:33 [ 7] [ 10] [0320203420] +20:34:33 [ 11] [ 6] [052741] +20:34:33 [ 37] [ 12] [507920052741] +20:34:33 [ 39] [ 2] [91] +20:34:33 [ 70] [ 3] [ ] +20:34:33 ============================================================================ +20:34:33 Calculate Source COMM Id = 3 +20:34:33 ============================================================================ +20:34:33 + + +waiting on router queue for slot.... +20:34:34 ============================================================================ +20:34:34 Slot Id : <238> +20:34:34 Transaction Type : REQUEST +20:34:34 Received From : +20:34:34 ============================================================================ +20:34:34 FNo. Len. Field Value +20:34:34 ============================================================================ +20:34:34 [ 1] [ 4] [0200] +20:34:34 [ 2] [ 16] [6688990700095209] +20:34:34 [ 3] [ 6] [010000] +20:34:34 [ 4] [ 12] [000100000000] +20:34:34 [ 7] [ 10] [0320133342] +20:34:34 [ 11] [ 6] [271606] +20:34:34 [ 12] [ 6] [203342] +20:34:34 [ 13] [ 4] [0320] +20:34:34 [ 14] [ 4] [4207] +20:34:34 [ 15] [ 4] [0320] +20:34:34 [ 18] [ 4] [6011] +20:34:34 [ 19] [ 3] [418] +20:34:34 [ 22] [ 3] [021] +20:34:34 [ 25] [ 2] [01] +20:34:34 [ 28] [ 9] [D00002000] +20:34:34 [ 32] [ 6] [180893] +20:34:34 [ 35] [ 37] [6688990700095209=42070071520912000000] +20:34:34 [ 37] [ 12] [507913271606] +20:34:34 [ 41] [ 8] [0466PSLB] +20:34:34 [ 42] [ 15] [999999 ] +20:34:34 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:34:34 [ 49] [ 3] [418] +20:34:34 [ 52] [ 16] [0F49EAD5C7B2409D] +20:34:34 ============================================================================ +20:34:34 + + +waiting on router queue for slot.... +20:34:34 Sending to : +20:34:34 ============================================================================ +20:34:34 Sending to : +20:34:34 ============================================================================ +20:34:34 ============================================================================ +20:34:34 Slot Id : <238> +20:34:34 Transaction Type : REQUEST +20:34:34 Received From : +20:34:34 ============================================================================ +20:34:34 FNo. Len. Field Value +20:34:34 ============================================================================ +20:34:34 [ 1] [ 4] [0200] +20:34:34 [ 2] [ 16] [6688990700095209] +20:34:34 [ 3] [ 6] [010000] +20:34:34 [ 4] [ 12] [000100000000] +20:34:34 [ 7] [ 10] [0320133342] +20:34:34 [ 11] [ 6] [271606] +20:34:34 [ 12] [ 6] [203342] +20:34:34 [ 13] [ 4] [0320] +20:34:34 [ 14] [ 4] [4207] +20:34:34 [ 15] [ 4] [0320] +20:34:34 [ 18] [ 4] [6011] +20:34:34 [ 19] [ 3] [418] +20:34:34 [ 22] [ 3] [021] +20:34:34 [ 25] [ 2] [01] +20:34:34 [ 28] [ 9] [D00002000] +20:34:34 [ 32] [ 6] [180893] +20:34:34 [ 35] [ 37] [6688990700095209=42070071520912000000] +20:34:34 [ 37] [ 12] [507913271606] +20:34:34 [ 41] [ 8] [0466PSLB] +20:34:34 [ 42] [ 15] [999999 ] +20:34:34 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:34:34 [ 49] [ 3] [418] +20:34:34 [ 52] [ 16] [0F49EAD5C7B2409D] +20:34:34 ============================================================================ +20:34:34 + + +waiting on router queue for slot.... +20:34:34 Sending to : +20:34:34 ============================================================================ +20:34:35 ============================================================================ +20:34:35 Slot Id : <238> +20:34:35 Transaction Type : REQUEST +20:34:35 Received From : +20:34:35 ============================================================================ +20:34:35 FNo. Len. Field Value +20:34:35 ============================================================================ +20:34:35 [ 1] [ 4] [0200] +20:34:35 [ 2] [ 16] [6688990700095209] +20:34:35 [ 3] [ 6] [010000] +20:34:35 [ 4] [ 12] [000100000000] +20:34:35 [ 7] [ 10] [0320133342] +20:34:35 [ 11] [ 6] [271606] +20:34:35 [ 12] [ 6] [203342] +20:34:35 [ 13] [ 4] [0320] +20:34:35 [ 14] [ 4] [4207] +20:34:35 [ 15] [ 4] [0320] +20:34:35 [ 18] [ 4] [6011] +20:34:35 [ 19] [ 3] [418] +20:34:35 [ 22] [ 3] [021] +20:34:35 [ 25] [ 2] [01] +20:34:35 [ 28] [ 9] [D00002000] +20:34:35 [ 32] [ 6] [180893] +20:34:35 [ 35] [ 37] [6688990700095209=42070071520912000000] +20:34:35 [ 37] [ 12] [507913271606] +20:34:35 [ 41] [ 8] [0466PSLB] +20:34:35 [ 42] [ 15] [999999 ] +20:34:35 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:34:35 [ 49] [ 3] [418] +20:34:35 [ 52] [ 16] [85C5ECE2BD9ECC59] +20:34:35 ============================================================================ +20:34:35 + + +waiting on router queue for slot.... +20:34:35 Sending to : <0> +20:34:35 ============================================================================ +20:34:35 ============================================================================ +20:34:35 Slot Id : <238> +20:34:35 Transaction Type : RESPONSE +20:34:35 Received From : +20:34:35 ============================================================================ +20:34:35 FNo. Len. Field Value +20:34:35 ============================================================================ +20:34:35 [ 1] [ 4] [0210] +20:34:35 [ 2] [ 16] [6688990700095209] +20:34:35 [ 3] [ 6] [010000] +20:34:35 [ 4] [ 12] [000100000000] +20:34:35 [ 7] [ 10] [0320133342] +20:34:35 [ 11] [ 6] [271606] +20:34:35 [ 12] [ 6] [203342] +20:34:35 [ 13] [ 4] [0320] +20:34:35 [ 15] [ 4] [0320] +20:34:35 [ 18] [ 4] [6011] +20:34:35 [ 19] [ 3] [418] +20:34:35 [ 22] [ 3] [021] +20:34:35 [ 32] [ 6] [180893] +20:34:35 [ 35] [ 37] [6688990700095209=42070071520912000000] +20:34:35 [ 37] [ 12] [507913271606] +20:34:35 [ 39] [ 2] [14] +20:34:35 [ 41] [ 8] [0466PSLB] +20:34:35 [ 49] [ 3] [418] +20:34:35 ============================================================================ +20:34:35 Sending to : +20:34:35 ============================================================================ +20:34:35 + + +waiting on router queue for slot.... +20:34:36 ============================================================================ +20:34:36 Slot Id : <238> +20:34:36 Transaction Type : RESPONSE +20:34:36 Received From : +20:34:36 ============================================================================ +20:34:36 FNo. Len. Field Value +20:34:36 ============================================================================ +20:34:36 [ 1] [ 4] [0210] +20:34:36 [ 2] [ 16] [6688990700095209] +20:34:36 [ 3] [ 6] [010000] +20:34:36 [ 4] [ 12] [000100000000] +20:34:36 [ 7] [ 10] [0320133342] +20:34:36 [ 11] [ 6] [271606] +20:34:36 [ 12] [ 6] [203342] +20:34:36 [ 13] [ 4] [0320] +20:34:36 [ 15] [ 4] [0320] +20:34:36 [ 18] [ 4] [6011] +20:34:36 [ 19] [ 3] [418] +20:34:36 [ 22] [ 3] [021] +20:34:36 [ 32] [ 6] [180893] +20:34:36 [ 35] [ 37] [6688990700095209=42070071520912000000] +20:34:36 [ 37] [ 12] [507913271606] +20:34:36 [ 39] [ 2] [14] +20:34:36 [ 41] [ 8] [0466PSLB] +20:34:36 [ 49] [ 3] [418] +20:34:36 ============================================================================ +20:34:36 Calculate Source COMM Id = 2 +20:34:36 ============================================================================ +20:34:36 + + +waiting on router queue for slot.... +20:34:50 ============================================================================ +20:34:50 Slot Id : <200> +20:34:50 Transaction Type : REQUEST +20:34:50 Received From : +20:34:50 ============================================================================ +20:34:50 FNo. Len. Field Value +20:34:50 ============================================================================ +20:34:50 [ 1] [ 4] [0800] +20:34:50 [ 7] [ 10] [0320013359] +20:34:50 [ 11] [ 6] [158245] +20:34:50 [ 70] [ 3] [301] +20:34:50 ============================================================================ +20:34:50 + + +waiting on router queue for slot.... +20:34:50 Sending to : +20:34:50 ============================================================================ +20:34:50 ============================================================================ +20:34:50 Slot Id : <200> +20:34:50 Transaction Type : RESPONSE +20:34:50 Received From : +20:34:50 ============================================================================ +20:34:50 FNo. Len. Field Value +20:34:50 ============================================================================ +20:34:50 [ 1] [ 4] [0810] +20:34:50 [ 7] [ 10] [0320013359] +20:34:50 [ 11] [ 6] [158245] +20:34:50 [ 39] [ 2] [00] +20:34:50 [ 70] [ 3] [301] +20:34:50 ============================================================================ +20:34:50 Calculate Source COMM Id = 2 +20:34:50 ============================================================================ +20:34:50 + + +waiting on router queue for slot.... +20:34:55 ============================================================================ +20:34:55 Slot Id : <216> +20:34:55 Transaction Type : REQUEST +20:34:55 Received From : +20:34:55 ============================================================================ +20:34:55 FNo. Len. Field Value +20:34:55 ============================================================================ +20:34:55 [ 1] [ 4] [0800] +20:34:55 [ 7] [ 10] [0320134242] +20:34:55 [ 11] [ 6] [075643] +20:34:55 [ 37] [ 12] [57920075643] +20:34:55 [ 70] [ 3] [301] +20:34:55 ============================================================================ +20:34:55 + + +waiting on router queue for slot.... +20:34:55 Sending to : +20:34:55 ============================================================================ +20:34:55 ============================================================================ +20:34:55 Slot Id : <216> +20:34:55 Transaction Type : RESPONSE +20:34:55 Received From : +20:34:55 ============================================================================ +20:34:55 FNo. Len. Field Value +20:34:55 ============================================================================ +20:34:55 [ 1] [ 4] [0810] +20:34:55 [ 7] [ 10] [0320134242] +20:34:55 [ 11] [ 6] [075643] +20:34:55 [ 37] [ 12] [579200756430] +20:34:55 [ 39] [ 2] [00] +20:34:55 [ 70] [ 3] [810] +20:34:55 ============================================================================ +20:34:55 Calculate Source COMM Id = 1 +20:34:55 ============================================================================ +20:34:55 + + +waiting on router queue for slot.... +20:35:01 ============================================================================ +20:35:01 Slot Id : <259> +20:35:01 Transaction Type : REQUEST +20:35:01 Received From : +20:35:01 ============================================================================ +20:35:01 FNo. Len. Field Value +20:35:01 ============================================================================ +20:35:01 [ 1] [ 4] [0800] +20:35:01 [ 7] [ 10] [0320013409] +20:35:01 [ 11] [ 6] [158246] +20:35:01 [ 70] [ 3] [301] +20:35:01 ============================================================================ +20:35:01 + + +waiting on router queue for slot.... +20:35:01 Sending to : +20:35:01 ============================================================================ +20:35:01 ============================================================================ +20:35:01 Slot Id : <259> +20:35:01 Transaction Type : RESPONSE +20:35:01 Received From : +20:35:01 ============================================================================ +20:35:01 FNo. Len. Field Value +20:35:01 ============================================================================ +20:35:01 [ 1] [ 4] [0810] +20:35:01 [ 7] [ 10] [0320013409] +20:35:01 [ 11] [ 6] [158246] +20:35:01 [ 39] [ 2] [00] +20:35:01 [ 70] [ 3] [301] +20:35:01 ============================================================================ +20:35:01 Calculate Source COMM Id = 2 +20:35:01 ============================================================================ +20:35:01 + + +waiting on router queue for slot.... +20:35:11 ============================================================================ +20:35:11 Slot Id : <249> +20:35:11 Transaction Type : REQUEST +20:35:11 Received From : +20:35:11 ============================================================================ +20:35:11 FNo. Len. Field Value +20:35:11 ============================================================================ +20:35:11 [ 1] [ 4] [0800] +20:35:11 [ 7] [ 10] [0321034700] +20:35:11 [ 11] [ 6] [204700] +20:35:11 [ 37] [ 12] [57920204700] +20:35:11 [ 70] [ 3] [301] +20:35:11 ============================================================================ +20:35:11 + + +waiting on router queue for slot.... +20:35:11 Sending to : +20:35:11 ============================================================================ +20:35:11 ============================================================================ +20:35:11 Slot Id : <249> +20:35:11 Transaction Type : RESPONSE +20:35:11 Received From : +20:35:11 ============================================================================ +20:35:11 FNo. Len. Field Value +20:35:11 ============================================================================ +20:35:11 [ 1] [ 4] [0810] +20:35:11 [ 7] [ 10] [0321034700] +20:35:11 [ 11] [ 6] [204700] +20:35:11 [ 37] [ 12] [579202047000] +20:35:11 [ 39] [ 2] [00] +20:35:11 [ 70] [ 3] [810] +20:35:11 ============================================================================ +20:35:11 Calculate Source COMM Id = 6 +20:35:11 ============================================================================ +20:35:11 + + +waiting on router queue for slot.... +20:35:19 ============================================================================ +20:35:19 Slot Id : <210> +20:35:19 Transaction Type : REQUEST +20:35:19 Received From : +20:35:19 ============================================================================ +20:35:19 FNo. Len. Field Value +20:35:19 ============================================================================ +20:35:19 [ 1] [ 4] [0800] +20:35:19 [ 7] [ 10] [0320013425] +20:35:19 [ 11] [ 6] [158247] +20:35:19 [ 70] [ 3] [301] +20:35:19 ============================================================================ +20:35:19 + + +waiting on router queue for slot.... +20:35:19 Sending to : +20:35:19 ============================================================================ +20:35:19 ============================================================================ +20:35:19 Slot Id : <210> +20:35:19 Transaction Type : RESPONSE +20:35:19 Received From : +20:35:19 ============================================================================ +20:35:19 FNo. Len. Field Value +20:35:19 ============================================================================ +20:35:19 [ 1] [ 4] [0810] +20:35:19 [ 7] [ 10] [0320013425] +20:35:19 [ 11] [ 6] [158247] +20:35:19 [ 39] [ 2] [00] +20:35:19 [ 70] [ 3] [301] +20:35:19 ============================================================================ +20:35:19 Calculate Source COMM Id = 2 +20:35:19 ============================================================================ +20:35:19 + + +waiting on router queue for slot.... +20:35:29 ============================================================================ +20:35:29 Slot Id : <263> +20:35:29 Transaction Type : REQUEST +20:35:29 Received From : +20:35:29 ============================================================================ +20:35:29 FNo. Len. Field Value +20:35:29 ============================================================================ +20:35:29 [ 1] [ 4] [0800] +20:35:29 [ 2] [ 5] [02531] +20:35:29 [ 3] [ 6] [579208] +20:35:29 [ 7] [ 10] [0320133529] +20:35:29 [ 11] [ 6] [807607] +20:35:29 [ 15] [ 10] [0320133529] +20:35:29 [ 37] [ 11] [57920807607] +20:35:29 [ 70] [ 3] [001] +20:35:29 ============================================================================ +20:35:29 + + +waiting on router queue for slot.... +20:35:30 ============================================================================ +20:35:30 Slot Id : <263> +20:35:30 Transaction Type : RESPONSE +20:35:30 Received From : +20:35:30 ============================================================================ +20:35:30 FNo. Len. Field Value +20:35:30 ============================================================================ +20:35:30 [ 1] [ 4] [0810] +20:35:30 [ 7] [ 10] [0320133529] +20:35:30 [ 11] [ 6] [807607] +20:35:30 [ 15] [ 4] [0320] +20:35:30 [ 37] [ 12] [57920807607] +20:35:30 [ 39] [ 2] [00] +20:35:30 [ 70] [ 3] [001] +20:35:30 ============================================================================ +20:35:30 Sending to : +20:35:30 ============================================================================ +20:35:30 + + +waiting on router queue for slot.... +20:35:33 ============================================================================ +20:35:33 Slot Id : <261> +20:35:33 Transaction Type : REQUEST +20:35:33 Received From : +20:35:33 ============================================================================ +20:35:33 FNo. Len. Field Value +20:35:33 ============================================================================ +20:35:33 [ 1] [ 4] [0800] +20:35:33 [ 7] [ 10] [0320013441] +20:35:33 [ 11] [ 6] [158248] +20:35:33 [ 70] [ 3] [301] +20:35:33 ============================================================================ +20:35:33 + + +waiting on router queue for slot.... +20:35:33 Sending to : +20:35:33 ============================================================================ +20:35:33 ============================================================================ +20:35:33 Slot Id : <261> +20:35:33 Transaction Type : RESPONSE +20:35:33 Received From : +20:35:33 ============================================================================ +20:35:33 FNo. Len. Field Value +20:35:33 ============================================================================ +20:35:33 [ 1] [ 4] [0810] +20:35:33 [ 7] [ 10] [0320013441] +20:35:33 [ 11] [ 6] [158248] +20:35:33 [ 39] [ 2] [00] +20:35:33 [ 70] [ 3] [301] +20:35:33 ============================================================================ +20:35:33 Calculate Source COMM Id = 2 +20:35:33 ============================================================================ +20:35:33 + + +waiting on router queue for slot.... +20:35:48 ============================================================================ +20:35:48 Slot Id : <269> +20:35:48 Transaction Type : REQUEST +20:35:48 Received From : +20:35:48 ============================================================================ +20:35:48 FNo. Len. Field Value +20:35:48 ============================================================================ +20:35:48 [ 1] [ 4] [0200] +20:35:48 [ 2] [ 16] [1888880000076703] +20:35:48 [ 3] [ 6] [011000] +20:35:48 [ 4] [ 12] [000010000000] +20:35:48 [ 7] [ 10] [0320203545] +20:35:48 [ 11] [ 6] [843130] +20:35:48 [ 12] [ 6] [203545] +20:35:48 [ 13] [ 4] [0320] +20:35:48 [ 15] [ 4] [0320] +20:35:48 [ 18] [ 4] [6011] +20:35:48 [ 22] [ 3] [900] +20:35:48 [ 25] [ 2] [02] +20:35:48 [ 28] [ 9] [D00002000] +20:35:48 [ 32] [ 6] [621354] +20:35:48 [ 35] [ 32] [1888880000076703=000010100000667] +20:35:48 [ 37] [ 12] [507903838013] +20:35:48 [ 41] [ 8] [01009900] +20:35:48 [ 42] [ 15] [NATIVE ] +20:35:48 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +20:35:48 [ 49] [ 3] [418] +20:35:48 [ 52] [ 16] [31F78CDCCC1575AA] +20:35:48 ============================================================================ +20:35:48 + + +waiting on router queue for slot.... +20:35:48 Sending to : +20:35:48 ============================================================================ +20:35:48 Sending to : +20:35:48 ============================================================================ +20:35:48 ============================================================================ +20:35:48 Slot Id : <225> +20:35:48 Transaction Type : REQUEST +20:35:48 Received From : +20:35:48 ============================================================================ +20:35:48 FNo. Len. Field Value +20:35:48 ============================================================================ +20:35:48 [ 1] [ 4] [0800] +20:35:48 [ 7] [ 10] [0320013457] +20:35:48 [ 11] [ 6] [158249] +20:35:48 [ 70] [ 3] [301] +20:35:48 ============================================================================ +20:35:48 + + +waiting on router queue for slot.... +20:35:48 Sending to : +20:35:48 ============================================================================ +20:35:48 ============================================================================ +20:35:48 Slot Id : <225> +20:35:48 Transaction Type : RESPONSE +20:35:48 Received From : +20:35:48 ============================================================================ +20:35:48 FNo. Len. Field Value +20:35:48 ============================================================================ +20:35:48 [ 1] [ 4] [0810] +20:35:48 [ 7] [ 10] [0320013457] +20:35:48 [ 11] [ 6] [158249] +20:35:48 [ 39] [ 2] [00] +20:35:48 [ 70] [ 3] [301] +20:35:48 ============================================================================ +20:35:48 Calculate Source COMM Id = 2 +20:35:48 ============================================================================ +20:35:48 + + +waiting on router queue for slot.... +20:35:49 ============================================================================ +20:35:49 Slot Id : <269> +20:35:49 Transaction Type : REQUEST +20:35:49 Received From : +20:35:49 ============================================================================ +20:35:49 FNo. Len. Field Value +20:35:49 ============================================================================ +20:35:49 [ 1] [ 4] [0200] +20:35:49 [ 2] [ 16] [1888880000076703] +20:35:49 [ 3] [ 6] [011000] +20:35:49 [ 4] [ 12] [000010000000] +20:35:49 [ 7] [ 10] [0320203545] +20:35:49 [ 11] [ 6] [843130] +20:35:49 [ 12] [ 6] [203545] +20:35:49 [ 13] [ 4] [0320] +20:35:49 [ 15] [ 4] [0320] +20:35:49 [ 18] [ 4] [6011] +20:35:49 [ 22] [ 3] [900] +20:35:49 [ 25] [ 2] [02] +20:35:49 [ 28] [ 9] [D00002000] +20:35:49 [ 32] [ 6] [621354] +20:35:49 [ 35] [ 32] [1888880000076703=000010100000667] +20:35:49 [ 37] [ 12] [507903838013] +20:35:49 [ 41] [ 8] [01009900] +20:35:49 [ 42] [ 15] [NATIVE ] +20:35:49 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +20:35:49 [ 49] [ 3] [418] +20:35:49 [ 52] [ 16] [31F78CDCCC1575AA] +20:35:49 ============================================================================ +20:35:49 + + +waiting on router queue for slot.... +20:35:49 Sending to : +20:35:49 ============================================================================ +20:35:49 ============================================================================ +20:35:49 Slot Id : <269> +20:35:49 Transaction Type : REQUEST +20:35:49 Received From : +20:35:49 ============================================================================ +20:35:49 FNo. Len. Field Value +20:35:49 ============================================================================ +20:35:49 [ 1] [ 4] [0200] +20:35:49 [ 2] [ 16] [1888880000076703] +20:35:49 [ 3] [ 6] [011000] +20:35:49 [ 4] [ 12] [000010000000] +20:35:49 [ 7] [ 10] [0320203545] +20:35:49 [ 11] [ 6] [843130] +20:35:49 [ 12] [ 6] [203545] +20:35:49 [ 13] [ 4] [0320] +20:35:49 [ 15] [ 4] [0320] +20:35:49 [ 18] [ 4] [6011] +20:35:49 [ 22] [ 3] [900] +20:35:49 [ 25] [ 2] [02] +20:35:49 [ 28] [ 9] [D00002000] +20:35:49 [ 32] [ 6] [621354] +20:35:49 [ 35] [ 32] [1888880000076703=000010100000667] +20:35:49 [ 37] [ 12] [507903838013] +20:35:49 [ 41] [ 8] [01009900] +20:35:49 [ 42] [ 15] [NATIVE ] +20:35:49 [ 43] [ 40] [Setha Hospital Sisattanak LAO] +20:35:49 [ 49] [ 3] [418] +20:35:49 [ 52] [ 16] [909807ECD108F765] +20:35:49 ============================================================================ +20:35:49 + + +waiting on router queue for slot.... +20:35:49 Sending to : <5> +20:35:49 ============================================================================ +20:35:53 ============================================================================ +20:35:53 Slot Id : <269> +20:35:53 Transaction Type : RESPONSE +20:35:53 Received From : +20:35:53 ============================================================================ +20:35:53 FNo. Len. Field Value +20:35:53 ============================================================================ +20:35:53 [ 1] [ 4] [0210] +20:35:53 [ 2] [ 16] [1888880000076703] +20:35:53 [ 3] [ 6] [011000] +20:35:53 [ 4] [ 12] [000010000000] +20:35:53 [ 7] [ 10] [0320203545] +20:35:53 [ 11] [ 6] [843130] +20:35:53 [ 12] [ 6] [203545] +20:35:53 [ 13] [ 4] [0320] +20:35:53 [ 15] [ 4] [0320] +20:35:53 [ 18] [ 4] [6011] +20:35:53 [ 19] [ 3] [418] +20:35:53 [ 32] [ 6] [621354] +20:35:53 [ 37] [ 12] [507903838013] +20:35:53 [ 38] [ 6] [000000] +20:35:53 [ 39] [ 2] [51] +20:35:53 [ 41] [ 8] [01009900] +20:35:53 [ 49] [ 3] [418] +20:35:53 ============================================================================ +20:35:53 Sending to : +20:35:53 ============================================================================ +20:35:53 + + +waiting on router queue for slot.... +20:35:54 ============================================================================ +20:35:54 Slot Id : <269> +20:35:54 Transaction Type : RESPONSE +20:35:54 Received From : +20:35:54 ============================================================================ +20:35:54 FNo. Len. Field Value +20:35:54 ============================================================================ +20:35:54 [ 1] [ 4] [0210] +20:35:54 [ 2] [ 16] [1888880000076703] +20:35:54 [ 3] [ 6] [011000] +20:35:54 [ 4] [ 12] [000010000000] +20:35:54 [ 7] [ 10] [0320203545] +20:35:54 [ 11] [ 6] [843130] +20:35:54 [ 12] [ 6] [203545] +20:35:54 [ 13] [ 4] [0320] +20:35:54 [ 15] [ 4] [0320] +20:35:54 [ 18] [ 4] [6011] +20:35:54 [ 19] [ 3] [418] +20:35:54 [ 32] [ 6] [621354] +20:35:54 [ 37] [ 12] [507903838013] +20:35:54 [ 38] [ 6] [000000] +20:35:54 [ 39] [ 2] [51] +20:35:54 [ 41] [ 8] [01009900] +20:35:54 [ 49] [ 3] [418] +20:35:54 ============================================================================ +20:35:54 Calculate Source COMM Id = 0 +20:35:54 ============================================================================ +20:35:54 + + +waiting on router queue for slot.... +20:35:59 ============================================================================ +20:35:59 Slot Id : <199> +20:35:59 Transaction Type : REQUEST +20:35:59 Received From : +20:35:59 ============================================================================ +20:35:59 FNo. Len. Field Value +20:35:59 ============================================================================ +20:35:59 [ 1] [ 4] [0800] +20:35:59 [ 7] [ 10] [0320013507] +20:35:59 [ 11] [ 6] [158250] +20:35:59 [ 70] [ 3] [301] +20:35:59 ============================================================================ +20:35:59 + + +waiting on router queue for slot.... +20:35:59 Sending to : +20:35:59 ============================================================================ +20:35:59 ============================================================================ +20:35:59 Slot Id : <199> +20:35:59 Transaction Type : RESPONSE +20:35:59 Received From : +20:35:59 ============================================================================ +20:35:59 FNo. Len. Field Value +20:35:59 ============================================================================ +20:35:59 [ 1] [ 4] [0810] +20:35:59 [ 7] [ 10] [0320013507] +20:35:59 [ 11] [ 6] [158250] +20:35:59 [ 39] [ 2] [00] +20:35:59 [ 70] [ 3] [301] +20:35:59 ============================================================================ +20:35:59 Calculate Source COMM Id = 2 +20:35:59 ============================================================================ +20:35:59 + + +waiting on router queue for slot.... +20:36:12 ============================================================================ +20:36:12 Slot Id : <270> +20:36:12 Transaction Type : REQUEST +20:36:12 Received From : +20:36:12 ============================================================================ +20:36:12 FNo. Len. Field Value +20:36:12 ============================================================================ +20:36:12 [ 1] [ 4] [0200] +20:36:12 [ 2] [ 16] [6688990700095209] +20:36:12 [ 3] [ 6] [010000] +20:36:12 [ 4] [ 12] [000050000000] +20:36:12 [ 7] [ 10] [0320133519] +20:36:12 [ 11] [ 6] [271611] +20:36:12 [ 12] [ 6] [203519] +20:36:12 [ 13] [ 4] [0320] +20:36:12 [ 14] [ 4] [4207] +20:36:12 [ 15] [ 4] [0320] +20:36:12 [ 18] [ 4] [6011] +20:36:12 [ 19] [ 3] [418] +20:36:12 [ 22] [ 3] [021] +20:36:12 [ 25] [ 2] [01] +20:36:12 [ 28] [ 9] [D00002000] +20:36:12 [ 32] [ 6] [180893] +20:36:12 [ 35] [ 37] [6688990700095209=42070071520912000000] +20:36:12 [ 37] [ 12] [507913271611] +20:36:12 [ 41] [ 8] [0466PSLB] +20:36:12 [ 42] [ 15] [999999 ] +20:36:12 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:36:12 [ 49] [ 3] [418] +20:36:12 [ 52] [ 16] [0F49EAD5C7B2409D] +20:36:12 ============================================================================ +20:36:12 + + +waiting on router queue for slot.... +20:36:12 Sending to : +20:36:12 ============================================================================ +20:36:12 Sending to : +20:36:12 ============================================================================ +20:36:12 ============================================================================ +20:36:12 Slot Id : <270> +20:36:12 Transaction Type : REQUEST +20:36:12 Received From : +20:36:12 ============================================================================ +20:36:12 FNo. Len. Field Value +20:36:12 ============================================================================ +20:36:12 [ 1] [ 4] [0200] +20:36:12 [ 2] [ 16] [6688990700095209] +20:36:12 [ 3] [ 6] [010000] +20:36:12 [ 4] [ 12] [000050000000] +20:36:12 [ 7] [ 10] [0320133519] +20:36:12 [ 11] [ 6] [271611] +20:36:12 [ 12] [ 6] [203519] +20:36:12 [ 13] [ 4] [0320] +20:36:12 [ 14] [ 4] [4207] +20:36:12 [ 15] [ 4] [0320] +20:36:12 [ 18] [ 4] [6011] +20:36:12 [ 19] [ 3] [418] +20:36:12 [ 22] [ 3] [021] +20:36:12 [ 25] [ 2] [01] +20:36:12 [ 28] [ 9] [D00002000] +20:36:12 [ 32] [ 6] [180893] +20:36:12 [ 35] [ 37] [6688990700095209=42070071520912000000] +20:36:12 [ 37] [ 12] [507913271611] +20:36:12 [ 41] [ 8] [0466PSLB] +20:36:12 [ 42] [ 15] [999999 ] +20:36:12 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:36:12 [ 49] [ 3] [418] +20:36:12 [ 52] [ 16] [0F49EAD5C7B2409D] +20:36:12 ============================================================================ +20:36:12 + + +waiting on router queue for slot.... +20:36:12 Sending to : +20:36:12 ============================================================================ +20:36:12 ============================================================================ +20:36:12 Slot Id : <270> +20:36:12 Transaction Type : REQUEST +20:36:12 Received From : +20:36:12 ============================================================================ +20:36:12 FNo. Len. Field Value +20:36:12 ============================================================================ +20:36:12 [ 1] [ 4] [0200] +20:36:12 [ 2] [ 16] [6688990700095209] +20:36:12 [ 3] [ 6] [010000] +20:36:12 [ 4] [ 12] [000050000000] +20:36:12 [ 7] [ 10] [0320133519] +20:36:12 [ 11] [ 6] [271611] +20:36:12 [ 12] [ 6] [203519] +20:36:12 [ 13] [ 4] [0320] +20:36:12 [ 14] [ 4] [4207] +20:36:12 [ 15] [ 4] [0320] +20:36:12 [ 18] [ 4] [6011] +20:36:12 [ 19] [ 3] [418] +20:36:12 [ 22] [ 3] [021] +20:36:12 [ 25] [ 2] [01] +20:36:12 [ 28] [ 9] [D00002000] +20:36:12 [ 32] [ 6] [180893] +20:36:12 [ 35] [ 37] [6688990700095209=42070071520912000000] +20:36:12 [ 37] [ 12] [507913271611] +20:36:12 [ 41] [ 8] [0466PSLB] +20:36:12 [ 42] [ 15] [999999 ] +20:36:12 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:36:12 [ 49] [ 3] [418] +20:36:12 [ 52] [ 16] [85C5ECE2BD9ECC59] +20:36:12 ============================================================================ +20:36:12 + + +waiting on router queue for slot.... +20:36:12 Sending to : <0> +20:36:12 ============================================================================ +20:36:12 ============================================================================ +20:36:12 Slot Id : <270> +20:36:12 Transaction Type : RESPONSE +20:36:12 Received From : +20:36:12 ============================================================================ +20:36:12 FNo. Len. Field Value +20:36:12 ============================================================================ +20:36:12 [ 1] [ 4] [0210] +20:36:12 [ 2] [ 16] [6688990700095209] +20:36:12 [ 3] [ 6] [010000] +20:36:12 [ 4] [ 12] [000050000000] +20:36:12 [ 7] [ 10] [0320133519] +20:36:12 [ 11] [ 6] [271611] +20:36:12 [ 12] [ 6] [203519] +20:36:12 [ 13] [ 4] [0320] +20:36:12 [ 15] [ 4] [0320] +20:36:12 [ 18] [ 4] [6011] +20:36:12 [ 19] [ 3] [418] +20:36:12 [ 22] [ 3] [021] +20:36:12 [ 32] [ 6] [180893] +20:36:12 [ 35] [ 37] [6688990700095209=42070071520912000000] +20:36:12 [ 37] [ 12] [507913271611] +20:36:12 [ 39] [ 2] [14] +20:36:12 [ 41] [ 8] [0466PSLB] +20:36:12 [ 49] [ 3] [418] +20:36:12 ============================================================================ +20:36:12 Sending to : +20:36:12 ============================================================================ +20:36:12 + + +waiting on router queue for slot.... +20:36:13 ============================================================================ +20:36:13 Slot Id : <270> +20:36:13 Transaction Type : RESPONSE +20:36:13 Received From : +20:36:13 ============================================================================ +20:36:13 FNo. Len. Field Value +20:36:13 ============================================================================ +20:36:13 [ 1] [ 4] [0210] +20:36:13 [ 2] [ 16] [6688990700095209] +20:36:13 [ 3] [ 6] [010000] +20:36:13 [ 4] [ 12] [000050000000] +20:36:13 [ 7] [ 10] [0320133519] +20:36:13 [ 11] [ 6] [271611] +20:36:13 [ 12] [ 6] [203519] +20:36:13 [ 13] [ 4] [0320] +20:36:13 [ 15] [ 4] [0320] +20:36:13 [ 18] [ 4] [6011] +20:36:13 [ 19] [ 3] [418] +20:36:13 [ 22] [ 3] [021] +20:36:13 [ 32] [ 6] [180893] +20:36:13 [ 35] [ 37] [6688990700095209=42070071520912000000] +20:36:13 [ 37] [ 12] [507913271611] +20:36:13 [ 39] [ 2] [14] +20:36:13 [ 41] [ 8] [0466PSLB] +20:36:13 [ 49] [ 3] [418] +20:36:13 ============================================================================ +20:36:13 Calculate Source COMM Id = 2 +20:36:13 ============================================================================ +20:36:13 + + +waiting on router queue for slot.... +20:36:14 ============================================================================ +20:36:14 Slot Id : <275> +20:36:14 Transaction Type : REQUEST +20:36:14 Received From : +20:36:14 ============================================================================ +20:36:14 FNo. Len. Field Value +20:36:14 ============================================================================ +20:36:14 [ 1] [ 4] [0200] +20:36:14 [ 2] [ 16] [6213543000234772] +20:36:14 [ 3] [ 6] [300000] +20:36:14 [ 4] [ 12] [000000000000] +20:36:14 [ 7] [ 10] [0320203405] +20:36:14 [ 11] [ 6] [957256] +20:36:14 [ 12] [ 6] [203405] +20:36:14 [ 13] [ 4] [0320] +20:36:14 [ 15] [ 4] [0320] +20:36:14 [ 18] [ 4] [6011] +20:36:14 [ 19] [ 3] [418] +20:36:14 [ 22] [ 3] [021] +20:36:14 [ 25] [ 2] [01] +20:36:14 [ 28] [ 9] [D00000000] +20:36:14 [ 32] [ 6] [668899] +20:36:14 [ 35] [ 32] [6213543000234772=491212013477330] +20:36:14 [ 37] [ 12] [507901691161] +20:36:14 [ 41] [ 8] [03002003] +20:36:14 [ 42] [ 15] [APT ] +20:36:14 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +20:36:14 [ 49] [ 3] [418] +20:36:14 [ 52] [ 16] [D7FF90DD61A0AB6F] +20:36:14 ============================================================================ +20:36:14 + + +waiting on router queue for slot.... +20:36:14 Sending to : +20:36:14 ============================================================================ +20:36:14 Sending to : +20:36:14 ============================================================================ +20:36:14 ============================================================================ +20:36:14 Slot Id : <275> +20:36:14 Transaction Type : REQUEST +20:36:14 Received From : +20:36:14 ============================================================================ +20:36:14 FNo. Len. Field Value +20:36:14 ============================================================================ +20:36:14 [ 1] [ 4] [0200] +20:36:14 [ 2] [ 16] [6213543000234772] +20:36:14 [ 3] [ 6] [300000] +20:36:14 [ 4] [ 12] [000000000000] +20:36:14 [ 7] [ 10] [0320203405] +20:36:14 [ 11] [ 6] [957256] +20:36:14 [ 12] [ 6] [203405] +20:36:14 [ 13] [ 4] [0320] +20:36:14 [ 15] [ 4] [0320] +20:36:14 [ 18] [ 4] [6011] +20:36:14 [ 19] [ 3] [418] +20:36:14 [ 22] [ 3] [021] +20:36:14 [ 25] [ 2] [01] +20:36:14 [ 28] [ 9] [D00000000] +20:36:14 [ 32] [ 6] [668899] +20:36:14 [ 35] [ 32] [6213543000234772=491212013477330] +20:36:14 [ 37] [ 12] [507901691161] +20:36:14 [ 41] [ 8] [03002003] +20:36:14 [ 42] [ 15] [APT ] +20:36:14 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +20:36:14 [ 49] [ 3] [418] +20:36:14 [ 52] [ 16] [D7FF90DD61A0AB6F] +20:36:14 ============================================================================ +20:36:14 + + +waiting on router queue for slot.... +20:36:14 Sending to : +20:36:14 ============================================================================ +20:36:14 ============================================================================ +20:36:14 Slot Id : <275> +20:36:14 Transaction Type : REQUEST +20:36:14 Received From : +20:36:14 ============================================================================ +20:36:14 FNo. Len. Field Value +20:36:14 ============================================================================ +20:36:14 [ 1] [ 4] [0200] +20:36:14 [ 2] [ 16] [6213543000234772] +20:36:14 [ 3] [ 6] [300000] +20:36:14 [ 4] [ 12] [000000000000] +20:36:14 [ 7] [ 10] [0320203405] +20:36:14 [ 11] [ 6] [957256] +20:36:14 [ 12] [ 6] [203405] +20:36:14 [ 13] [ 4] [0320] +20:36:14 [ 15] [ 4] [0320] +20:36:14 [ 18] [ 4] [6011] +20:36:14 [ 19] [ 3] [418] +20:36:14 [ 22] [ 3] [021] +20:36:14 [ 25] [ 2] [01] +20:36:14 [ 28] [ 9] [D00000000] +20:36:14 [ 32] [ 6] [668899] +20:36:14 [ 35] [ 32] [6213543000234772=491212013477330] +20:36:14 [ 37] [ 12] [507901691161] +20:36:14 [ 41] [ 8] [03002003] +20:36:14 [ 42] [ 15] [APT ] +20:36:14 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +20:36:14 [ 49] [ 3] [418] +20:36:14 [ 52] [ 16] [DF9C89049DA822DB] +20:36:14 ============================================================================ +20:36:14 + + +waiting on router queue for slot.... +20:36:14 Sending to : <0> +20:36:14 ============================================================================ +20:36:15 ============================================================================ +20:36:15 Slot Id : <275> +20:36:15 Transaction Type : RESPONSE +20:36:15 Received From : +20:36:15 ============================================================================ +20:36:15 FNo. Len. Field Value +20:36:15 ============================================================================ +20:36:15 [ 1] [ 4] [0210] +20:36:15 [ 2] [ 16] [6213543000234772] +20:36:15 [ 3] [ 6] [300000] +20:36:15 [ 4] [ 12] [000000000000] +20:36:15 [ 7] [ 10] [0320203405] +20:36:15 [ 11] [ 6] [957256] +20:36:15 [ 12] [ 6] [203405] +20:36:15 [ 13] [ 4] [0320] +20:36:15 [ 15] [ 4] [0320] +20:36:15 [ 18] [ 4] [6011] +20:36:15 [ 19] [ 3] [418] +20:36:15 [ 32] [ 6] [668899] +20:36:15 [ 35] [ 32] [6213543000234772=491212013477330] +20:36:15 [ 37] [ 12] [507901691161] +20:36:15 [ 38] [ 6] [393777] +20:36:15 [ 39] [ 2] [00] +20:36:15 [ 41] [ 8] [03002003] +20:36:15 [ 49] [ 3] [418] +20:36:15 [ 54] [ 40] [0001418C0000338000000002418C000033800000] +20:36:15 ============================================================================ +20:36:15 Sending to : +20:36:15 ============================================================================ +20:36:15 + + +waiting on router queue for slot.... +20:36:16 ============================================================================ +20:36:16 Slot Id : <275> +20:36:16 Transaction Type : RESPONSE +20:36:16 Received From : +20:36:16 ============================================================================ +20:36:16 FNo. Len. Field Value +20:36:16 ============================================================================ +20:36:16 [ 1] [ 4] [0210] +20:36:16 [ 2] [ 16] [6213543000234772] +20:36:16 [ 3] [ 6] [300000] +20:36:16 [ 4] [ 12] [000000000000] +20:36:16 [ 7] [ 10] [0320203405] +20:36:16 [ 11] [ 6] [957256] +20:36:16 [ 12] [ 6] [203405] +20:36:16 [ 13] [ 4] [0320] +20:36:16 [ 15] [ 4] [0320] +20:36:16 [ 18] [ 4] [6011] +20:36:16 [ 19] [ 3] [418] +20:36:16 [ 32] [ 6] [668899] +20:36:16 [ 35] [ 32] [6213543000234772=491212013477330] +20:36:16 [ 37] [ 12] [507901691161] +20:36:16 [ 38] [ 6] [393777] +20:36:16 [ 39] [ 2] [00] +20:36:16 [ 41] [ 8] [03002003] +20:36:16 [ 49] [ 3] [418] +20:36:16 [ 54] [ 40] [0001418C0000338000000002418C000033800000] +20:36:16 ============================================================================ +20:36:16 Calculate Source COMM Id = 4 +20:36:16 ============================================================================ +20:36:16 + + +waiting on router queue for slot.... +20:36:16 ============================================================================ +20:36:16 Slot Id : <240> +20:36:16 Transaction Type : REQUEST +20:36:16 Received From : +20:36:16 ============================================================================ +20:36:16 FNo. Len. Field Value +20:36:16 ============================================================================ +20:36:16 [ 1] [ 4] [0800] +20:36:16 [ 7] [ 10] [0321034805] +20:36:16 [ 11] [ 6] [204805] +20:36:16 [ 37] [ 12] [57920204805] +20:36:16 [ 70] [ 3] [301] +20:36:16 ============================================================================ +20:36:16 + + +waiting on router queue for slot.... +20:36:16 Sending to : +20:36:16 ============================================================================ +20:36:16 ============================================================================ +20:36:16 Slot Id : <240> +20:36:16 Transaction Type : RESPONSE +20:36:16 Received From : +20:36:16 ============================================================================ +20:36:16 FNo. Len. Field Value +20:36:16 ============================================================================ +20:36:16 [ 1] [ 4] [0810] +20:36:16 [ 7] [ 10] [0321034805] +20:36:16 [ 11] [ 6] [204805] +20:36:16 [ 37] [ 12] [579202048050] +20:36:16 [ 39] [ 2] [00] +20:36:16 [ 70] [ 3] [810] +20:36:16 ============================================================================ +20:36:16 Calculate Source COMM Id = 6 +20:36:16 ============================================================================ +20:36:16 + + +waiting on router queue for slot.... +20:36:21 ============================================================================ +20:36:21 Slot Id : <197> +20:36:21 Transaction Type : REQUEST +20:36:21 Received From : +20:36:21 ============================================================================ +20:36:21 FNo. Len. Field Value +20:36:21 ============================================================================ +20:36:21 [ 1] [ 4] [0800] +20:36:21 [ 7] [ 10] [0320133412] +20:36:21 [ 11] [ 6] [082185] +20:36:21 [ 37] [ 12] [57920082185] +20:36:21 [ 70] [ 3] [301] +20:36:21 ============================================================================ +20:36:21 + + +waiting on router queue for slot.... +20:36:21 Sending to : +20:36:21 ============================================================================ +20:36:21 ============================================================================ +20:36:21 Slot Id : <197> +20:36:21 Transaction Type : RESPONSE +20:36:21 Received From : +20:36:21 ============================================================================ +20:36:21 FNo. Len. Field Value +20:36:21 ============================================================================ +20:36:21 [ 1] [ 4] [0810] +20:36:21 [ 7] [ 10] [0320133412] +20:36:21 [ 11] [ 6] [082185] +20:36:21 [ 37] [ 12] [579200821850] +20:36:21 [ 39] [ 2] [00] +20:36:21 [ 70] [ 3] [810] +20:36:21 ============================================================================ +20:36:21 Calculate Source COMM Id = 4 +20:36:21 ============================================================================ +20:36:21 + + +waiting on router queue for slot.... +20:36:25 ============================================================================ +20:36:25 Slot Id : <265> +20:36:25 Transaction Type : REQUEST +20:36:25 Received From : +20:36:25 ============================================================================ +20:36:25 FNo. Len. Field Value +20:36:25 ============================================================================ +20:36:25 [ 1] [ 4] [0800] +20:36:25 [ 7] [ 10] [0320013534] +20:36:25 [ 11] [ 6] [158251] +20:36:25 [ 70] [ 3] [301] +20:36:25 ============================================================================ +20:36:25 + + +waiting on router queue for slot.... +20:36:25 Sending to : +20:36:25 ============================================================================ +20:36:25 ============================================================================ +20:36:25 Slot Id : <265> +20:36:25 Transaction Type : RESPONSE +20:36:25 Received From : +20:36:25 ============================================================================ +20:36:25 FNo. Len. Field Value +20:36:25 ============================================================================ +20:36:25 [ 1] [ 4] [0810] +20:36:25 [ 7] [ 10] [0320013534] +20:36:25 [ 11] [ 6] [158251] +20:36:25 [ 39] [ 2] [00] +20:36:25 [ 70] [ 3] [301] +20:36:25 ============================================================================ +20:36:25 Calculate Source COMM Id = 2 +20:36:25 ============================================================================ +20:36:25 + + +waiting on router queue for slot.... +20:36:31 ============================================================================ +20:36:31 Slot Id : <218> +20:36:31 Transaction Type : REQUEST +20:36:31 Received From : +20:36:31 ============================================================================ +20:36:31 FNo. Len. Field Value +20:36:31 ============================================================================ +20:36:31 [ 1] [ 4] [0800] +20:36:31 [ 2] [ 5] [02531] +20:36:31 [ 3] [ 6] [579208] +20:36:31 [ 7] [ 10] [0320133631] +20:36:31 [ 11] [ 6] [807608] +20:36:31 [ 15] [ 10] [0320133631] +20:36:31 [ 37] [ 11] [57920807608] +20:36:31 [ 70] [ 3] [001] +20:36:31 ============================================================================ +20:36:31 + + +waiting on router queue for slot.... +20:36:32 ============================================================================ +20:36:32 Slot Id : <218> +20:36:32 Transaction Type : RESPONSE +20:36:32 Received From : +20:36:32 ============================================================================ +20:36:32 FNo. Len. Field Value +20:36:32 ============================================================================ +20:36:32 [ 1] [ 4] [0810] +20:36:32 [ 7] [ 10] [0320133631] +20:36:32 [ 11] [ 6] [807608] +20:36:32 [ 15] [ 4] [0320] +20:36:32 [ 37] [ 12] [57920807608] +20:36:32 [ 39] [ 2] [00] +20:36:32 [ 70] [ 3] [001] +20:36:32 ============================================================================ +20:36:32 Sending to : +20:36:32 ============================================================================ +20:36:32 + + +waiting on router queue for slot.... +20:36:36 ============================================================================ +20:36:36 Slot Id : <247> +20:36:36 Transaction Type : REQUEST +20:36:36 Received From : +20:36:36 ============================================================================ +20:36:36 FNo. Len. Field Value +20:36:36 ============================================================================ +20:36:36 [ 1] [ 4] [0800] +20:36:36 [ 7] [ 10] [0320013545] +20:36:36 [ 11] [ 6] [158252] +20:36:36 [ 70] [ 3] [301] +20:36:36 ============================================================================ +20:36:36 + + +waiting on router queue for slot.... +20:36:36 Sending to : +20:36:36 ============================================================================ +20:36:36 ============================================================================ +20:36:36 Slot Id : <247> +20:36:36 Transaction Type : RESPONSE +20:36:36 Received From : +20:36:36 ============================================================================ +20:36:36 FNo. Len. Field Value +20:36:36 ============================================================================ +20:36:36 [ 1] [ 4] [0810] +20:36:36 [ 7] [ 10] [0320013545] +20:36:36 [ 11] [ 6] [158252] +20:36:36 [ 39] [ 2] [00] +20:36:36 [ 70] [ 3] [301] +20:36:36 ============================================================================ +20:36:36 Calculate Source COMM Id = 2 +20:36:36 ============================================================================ +20:36:36 + + +waiting on router queue for slot.... +20:36:47 ============================================================================ +20:36:47 Slot Id : <256> +20:36:47 Transaction Type : REQUEST +20:36:47 Received From : +20:36:47 ============================================================================ +20:36:47 FNo. Len. Field Value +20:36:47 ============================================================================ +20:36:47 [ 1] [ 4] [0800] +20:36:47 [ 7] [ 10] [0320013556] +20:36:47 [ 11] [ 6] [158253] +20:36:47 [ 70] [ 3] [301] +20:36:47 ============================================================================ +20:36:47 + + +waiting on router queue for slot.... +20:36:47 Sending to : +20:36:47 ============================================================================ +20:36:47 ============================================================================ +20:36:47 Slot Id : <256> +20:36:47 Transaction Type : RESPONSE +20:36:47 Received From : +20:36:47 ============================================================================ +20:36:47 FNo. Len. Field Value +20:36:47 ============================================================================ +20:36:47 [ 1] [ 4] [0810] +20:36:47 [ 7] [ 10] [0320013556] +20:36:47 [ 11] [ 6] [158253] +20:36:47 [ 39] [ 2] [00] +20:36:47 [ 70] [ 3] [301] +20:36:47 ============================================================================ +20:36:47 Calculate Source COMM Id = 2 +20:36:47 ============================================================================ +20:36:47 + + +waiting on router queue for slot.... +20:37:00 ============================================================================ +20:37:00 Slot Id : <274> +20:37:00 Transaction Type : REQUEST +20:37:00 Received From : +20:37:00 ============================================================================ +20:37:00 FNo. Len. Field Value +20:37:00 ============================================================================ +20:37:00 [ 1] [ 4] [0800] +20:37:00 [ 7] [ 10] [0320013608] +20:37:00 [ 11] [ 6] [158254] +20:37:00 [ 70] [ 3] [301] +20:37:00 ============================================================================ +20:37:00 + + +waiting on router queue for slot.... +20:37:00 Sending to : +20:37:00 ============================================================================ +20:37:00 ============================================================================ +20:37:00 Slot Id : <274> +20:37:00 Transaction Type : RESPONSE +20:37:00 Received From : +20:37:00 ============================================================================ +20:37:00 FNo. Len. Field Value +20:37:00 ============================================================================ +20:37:00 [ 1] [ 4] [0810] +20:37:00 [ 7] [ 10] [0320013608] +20:37:00 [ 11] [ 6] [158254] +20:37:00 [ 39] [ 2] [00] +20:37:00 [ 70] [ 3] [301] +20:37:00 ============================================================================ +20:37:00 Calculate Source COMM Id = 2 +20:37:00 ============================================================================ +20:37:00 + + +waiting on router queue for slot.... +20:37:16 ============================================================================ +20:37:16 Slot Id : <228> +20:37:16 Transaction Type : REQUEST +20:37:16 Received From : +20:37:16 ============================================================================ +20:37:16 FNo. Len. Field Value +20:37:16 ============================================================================ +20:37:16 [ 1] [ 4] [0800] +20:37:16 [ 7] [ 10] [0320013624] +20:37:16 [ 11] [ 6] [158255] +20:37:16 [ 70] [ 3] [301] +20:37:16 ============================================================================ +20:37:16 + + +waiting on router queue for slot.... +20:37:16 Sending to : +20:37:16 ============================================================================ +20:37:16 ============================================================================ +20:37:16 Slot Id : <228> +20:37:16 Transaction Type : RESPONSE +20:37:16 Received From : +20:37:16 ============================================================================ +20:37:16 FNo. Len. Field Value +20:37:16 ============================================================================ +20:37:16 [ 1] [ 4] [0810] +20:37:16 [ 7] [ 10] [0320013624] +20:37:16 [ 11] [ 6] [158255] +20:37:16 [ 39] [ 2] [00] +20:37:16 [ 70] [ 3] [301] +20:37:16 ============================================================================ +20:37:16 Calculate Source COMM Id = 2 +20:37:16 ============================================================================ +20:37:16 + + +waiting on router queue for slot.... +20:37:20 ============================================================================ +20:37:20 Slot Id : <264> +20:37:20 Transaction Type : REQUEST +20:37:20 Received From : +20:37:20 ============================================================================ +20:37:20 FNo. Len. Field Value +20:37:20 ============================================================================ +20:37:20 [ 1] [ 4] [0200] +20:37:20 [ 2] [ 16] [6213541000340219] +20:37:20 [ 3] [ 6] [302000] +20:37:20 [ 4] [ 12] [000000000000] +20:37:20 [ 7] [ 10] [0320203511] +20:37:20 [ 11] [ 6] [957269] +20:37:20 [ 12] [ 6] [203511] +20:37:20 [ 13] [ 4] [0320] +20:37:20 [ 15] [ 4] [0320] +20:37:20 [ 18] [ 4] [6011] +20:37:20 [ 19] [ 3] [418] +20:37:20 [ 22] [ 3] [021] +20:37:20 [ 25] [ 2] [01] +20:37:20 [ 28] [ 9] [D00000000] +20:37:20 [ 32] [ 6] [668899] +20:37:20 [ 35] [ 32] [6213541000340219=491212014021582] +20:37:20 [ 37] [ 12] [507900513258] +20:37:20 [ 41] [ 8] [03012001] +20:37:20 [ 42] [ 15] [APT ] +20:37:20 [ 43] [ 40] [ LAK20 BR OFFICE LAK20 ] +20:37:20 [ 49] [ 3] [418] +20:37:20 [ 52] [ 16] [A394FB63FAF947E7] +20:37:20 ============================================================================ +20:37:20 + + +waiting on router queue for slot.... +20:37:20 Sending to : +20:37:20 ============================================================================ +20:37:20 Sending to : +20:37:20 ============================================================================ +20:37:20 ============================================================================ +20:37:20 Slot Id : <264> +20:37:20 Transaction Type : REQUEST +20:37:20 Received From : +20:37:20 ============================================================================ +20:37:20 FNo. Len. Field Value +20:37:20 ============================================================================ +20:37:20 [ 1] [ 4] [0200] +20:37:20 [ 2] [ 16] [6213541000340219] +20:37:20 [ 3] [ 6] [302000] +20:37:20 [ 4] [ 12] [000000000000] +20:37:20 [ 7] [ 10] [0320203511] +20:37:20 [ 11] [ 6] [957269] +20:37:20 [ 12] [ 6] [203511] +20:37:20 [ 13] [ 4] [0320] +20:37:20 [ 15] [ 4] [0320] +20:37:20 [ 18] [ 4] [6011] +20:37:20 [ 19] [ 3] [418] +20:37:20 [ 22] [ 3] [021] +20:37:20 [ 25] [ 2] [01] +20:37:20 [ 28] [ 9] [D00000000] +20:37:20 [ 32] [ 6] [668899] +20:37:20 [ 35] [ 32] [6213541000340219=491212014021582] +20:37:20 [ 37] [ 12] [507900513258] +20:37:20 [ 41] [ 8] [03012001] +20:37:20 [ 42] [ 15] [APT ] +20:37:20 [ 43] [ 40] [ LAK20 BR OFFICE LAK20 ] +20:37:20 [ 49] [ 3] [418] +20:37:20 [ 52] [ 16] [A394FB63FAF947E7] +20:37:20 ============================================================================ +20:37:20 + + +waiting on router queue for slot.... +20:37:20 Sending to : +20:37:20 ============================================================================ +20:37:20 ============================================================================ +20:37:20 Slot Id : <264> +20:37:20 Transaction Type : REQUEST +20:37:20 Received From : +20:37:20 ============================================================================ +20:37:20 FNo. Len. Field Value +20:37:20 ============================================================================ +20:37:20 [ 1] [ 4] [0200] +20:37:20 [ 2] [ 16] [6213541000340219] +20:37:20 [ 3] [ 6] [302000] +20:37:20 [ 4] [ 12] [000000000000] +20:37:20 [ 7] [ 10] [0320203511] +20:37:20 [ 11] [ 6] [957269] +20:37:20 [ 12] [ 6] [203511] +20:37:20 [ 13] [ 4] [0320] +20:37:20 [ 15] [ 4] [0320] +20:37:20 [ 18] [ 4] [6011] +20:37:20 [ 19] [ 3] [418] +20:37:20 [ 22] [ 3] [021] +20:37:20 [ 25] [ 2] [01] +20:37:20 [ 28] [ 9] [D00000000] +20:37:20 [ 32] [ 6] [668899] +20:37:20 [ 35] [ 32] [6213541000340219=491212014021582] +20:37:20 [ 37] [ 12] [507900513258] +20:37:20 [ 41] [ 8] [03012001] +20:37:20 [ 42] [ 15] [APT ] +20:37:20 [ 43] [ 40] [ LAK20 BR OFFICE LAK20 ] +20:37:20 [ 49] [ 3] [418] +20:37:20 [ 52] [ 16] [33FF0C0E271A0050] +20:37:20 ============================================================================ +20:37:20 + + +waiting on router queue for slot.... +20:37:20 Sending to : <0> +20:37:20 ============================================================================ +20:37:21 ============================================================================ +20:37:21 Slot Id : <264> +20:37:21 Transaction Type : RESPONSE +20:37:21 Received From : +20:37:21 ============================================================================ +20:37:21 FNo. Len. Field Value +20:37:21 ============================================================================ +20:37:21 [ 1] [ 4] [0210] +20:37:21 [ 2] [ 16] [6213541000340219] +20:37:21 [ 3] [ 6] [302000] +20:37:21 [ 4] [ 12] [000000000000] +20:37:21 [ 7] [ 10] [0320203511] +20:37:21 [ 11] [ 6] [957269] +20:37:21 [ 12] [ 6] [203511] +20:37:21 [ 13] [ 4] [0320] +20:37:21 [ 15] [ 4] [0320] +20:37:21 [ 18] [ 4] [6011] +20:37:21 [ 19] [ 3] [418] +20:37:21 [ 32] [ 6] [668899] +20:37:21 [ 35] [ 32] [6213541000340219=491212014021582] +20:37:21 [ 37] [ 12] [507900513258] +20:37:21 [ 38] [ 6] [376765] +20:37:21 [ 39] [ 2] [00] +20:37:21 [ 41] [ 8] [03012001] +20:37:21 [ 49] [ 3] [418] +20:37:21 [ 54] [ 40] [2001418C0001368110952002418C000136811095] +20:37:21 ============================================================================ +20:37:21 Sending to : +20:37:21 ============================================================================ +20:37:21 + + +waiting on router queue for slot.... +20:37:21 ============================================================================ +20:37:21 Slot Id : <231> +20:37:21 Transaction Type : REQUEST +20:37:21 Received From : +20:37:21 ============================================================================ +20:37:21 FNo. Len. Field Value +20:37:21 ============================================================================ +20:37:21 [ 1] [ 4] [0800] +20:37:21 [ 7] [ 10] [0321034910] +20:37:21 [ 11] [ 6] [204910] +20:37:21 [ 37] [ 12] [57920204910] +20:37:21 [ 70] [ 3] [301] +20:37:21 ============================================================================ +20:37:21 + + +waiting on router queue for slot.... +20:37:21 Sending to : +20:37:21 ============================================================================ +20:37:21 ============================================================================ +20:37:21 Slot Id : <231> +20:37:21 Transaction Type : RESPONSE +20:37:21 Received From : +20:37:21 ============================================================================ +20:37:21 FNo. Len. Field Value +20:37:21 ============================================================================ +20:37:21 [ 1] [ 4] [0810] +20:37:21 [ 7] [ 10] [0321034910] +20:37:21 [ 11] [ 6] [204910] +20:37:21 [ 37] [ 12] [579202049100] +20:37:21 [ 39] [ 2] [00] +20:37:21 [ 70] [ 3] [810] +20:37:21 ============================================================================ +20:37:21 Calculate Source COMM Id = 6 +20:37:21 ============================================================================ +20:37:21 + + +waiting on router queue for slot.... +20:37:22 ============================================================================ +20:37:22 Slot Id : <264> +20:37:22 Transaction Type : RESPONSE +20:37:22 Received From : +20:37:22 ============================================================================ +20:37:22 FNo. Len. Field Value +20:37:22 ============================================================================ +20:37:22 [ 1] [ 4] [0210] +20:37:22 [ 2] [ 16] [6213541000340219] +20:37:22 [ 3] [ 6] [302000] +20:37:22 [ 4] [ 12] [000000000000] +20:37:22 [ 7] [ 10] [0320203511] +20:37:22 [ 11] [ 6] [957269] +20:37:22 [ 12] [ 6] [203511] +20:37:22 [ 13] [ 4] [0320] +20:37:22 [ 15] [ 4] [0320] +20:37:22 [ 18] [ 4] [6011] +20:37:22 [ 19] [ 3] [418] +20:37:22 [ 32] [ 6] [668899] +20:37:22 [ 35] [ 32] [6213541000340219=491212014021582] +20:37:22 [ 37] [ 12] [507900513258] +20:37:22 [ 38] [ 6] [376765] +20:37:22 [ 39] [ 2] [00] +20:37:22 [ 41] [ 8] [03012001] +20:37:22 [ 49] [ 3] [418] +20:37:22 [ 54] [ 40] [2001418C0001368110952002418C000136811095] +20:37:22 ============================================================================ +20:37:22 Calculate Source COMM Id = 4 +20:37:22 ============================================================================ +20:37:22 + + +waiting on router queue for slot.... +20:37:27 ============================================================================ +20:37:27 Slot Id : <220> +20:37:27 Transaction Type : REQUEST +20:37:27 Received From : +20:37:27 ============================================================================ +20:37:27 FNo. Len. Field Value +20:37:27 ============================================================================ +20:37:27 [ 1] [ 4] [0800] +20:37:27 [ 7] [ 10] [0320013635] +20:37:27 [ 11] [ 6] [158256] +20:37:27 [ 70] [ 3] [301] +20:37:27 ============================================================================ +20:37:27 + + +waiting on router queue for slot.... +20:37:27 Sending to : +20:37:27 ============================================================================ +20:37:27 ============================================================================ +20:37:27 Slot Id : <220> +20:37:27 Transaction Type : RESPONSE +20:37:27 Received From : +20:37:27 ============================================================================ +20:37:27 FNo. Len. Field Value +20:37:27 ============================================================================ +20:37:27 [ 1] [ 4] [0810] +20:37:27 [ 7] [ 10] [0320013635] +20:37:27 [ 11] [ 6] [158256] +20:37:27 [ 39] [ 2] [00] +20:37:27 [ 70] [ 3] [301] +20:37:27 ============================================================================ +20:37:27 Calculate Source COMM Id = 2 +20:37:27 ============================================================================ +20:37:27 + + +waiting on router queue for slot.... +20:37:30 ============================================================================ +20:37:30 Slot Id : <273> +20:37:30 Transaction Type : REQUEST +20:37:30 Received From : +20:37:30 ============================================================================ +20:37:30 FNo. Len. Field Value +20:37:30 ============================================================================ +20:37:30 [ 1] [ 4] [0200] +20:37:30 [ 2] [ 16] [6213541000131287] +20:37:30 [ 3] [ 6] [010000] +20:37:30 [ 4] [ 12] [000030000000] +20:37:30 [ 7] [ 10] [0320203521] +20:37:30 [ 11] [ 6] [957272] +20:37:30 [ 12] [ 6] [203521] +20:37:30 [ 13] [ 4] [0320] +20:37:30 [ 15] [ 4] [0320] +20:37:30 [ 18] [ 4] [6011] +20:37:30 [ 19] [ 3] [418] +20:37:30 [ 22] [ 3] [021] +20:37:30 [ 25] [ 2] [01] +20:37:30 [ 28] [ 9] [D00002000] +20:37:30 [ 32] [ 6] [668899] +20:37:30 [ 35] [ 32] [6213541000131287=491212013128411] +20:37:30 [ 37] [ 12] [507900560178] +20:37:30 [ 41] [ 8] [03014004] +20:37:30 [ 42] [ 15] [APT ] +20:37:30 [ 43] [ 40] [ TEACHER COLLEGE KH7 SAVAN] +20:37:30 [ 49] [ 3] [418] +20:37:30 [ 52] [ 16] [BA71E8F5BB35A01A] +20:37:30 ============================================================================ +20:37:30 + + +waiting on router queue for slot.... +20:37:30 Sending to : +20:37:30 ============================================================================ +20:37:30 Sending to : +20:37:30 ============================================================================ +20:37:31 ============================================================================ +20:37:31 Slot Id : <273> +20:37:31 Transaction Type : REQUEST +20:37:31 Received From : +20:37:31 ============================================================================ +20:37:31 FNo. Len. Field Value +20:37:31 ============================================================================ +20:37:31 [ 1] [ 4] [0200] +20:37:31 [ 2] [ 16] [6213541000131287] +20:37:31 [ 3] [ 6] [010000] +20:37:31 [ 4] [ 12] [000030000000] +20:37:31 [ 7] [ 10] [0320203521] +20:37:31 [ 11] [ 6] [957272] +20:37:31 [ 12] [ 6] [203521] +20:37:31 [ 13] [ 4] [0320] +20:37:31 [ 15] [ 4] [0320] +20:37:31 [ 18] [ 4] [6011] +20:37:31 [ 19] [ 3] [418] +20:37:31 [ 22] [ 3] [021] +20:37:31 [ 25] [ 2] [01] +20:37:31 [ 28] [ 9] [D00002000] +20:37:31 [ 32] [ 6] [668899] +20:37:31 [ 35] [ 32] [6213541000131287=491212013128411] +20:37:31 [ 37] [ 12] [507900560178] +20:37:31 [ 41] [ 8] [03014004] +20:37:31 [ 42] [ 15] [APT ] +20:37:31 [ 43] [ 40] [ TEACHER COLLEGE KH7 SAVAN] +20:37:31 [ 49] [ 3] [418] +20:37:31 [ 52] [ 16] [BA71E8F5BB35A01A] +20:37:31 ============================================================================ +20:37:31 + + +waiting on router queue for slot.... +20:37:31 Sending to : +20:37:31 ============================================================================ +20:37:31 ============================================================================ +20:37:31 Slot Id : <273> +20:37:31 Transaction Type : REQUEST +20:37:31 Received From : +20:37:31 ============================================================================ +20:37:31 FNo. Len. Field Value +20:37:31 ============================================================================ +20:37:31 [ 1] [ 4] [0200] +20:37:31 [ 2] [ 16] [6213541000131287] +20:37:31 [ 3] [ 6] [010000] +20:37:31 [ 4] [ 12] [000030000000] +20:37:31 [ 7] [ 10] [0320203521] +20:37:31 [ 11] [ 6] [957272] +20:37:31 [ 12] [ 6] [203521] +20:37:31 [ 13] [ 4] [0320] +20:37:31 [ 15] [ 4] [0320] +20:37:31 [ 18] [ 4] [6011] +20:37:31 [ 19] [ 3] [418] +20:37:31 [ 22] [ 3] [021] +20:37:31 [ 25] [ 2] [01] +20:37:31 [ 28] [ 9] [D00002000] +20:37:31 [ 32] [ 6] [668899] +20:37:31 [ 35] [ 32] [6213541000131287=491212013128411] +20:37:31 [ 37] [ 12] [507900560178] +20:37:31 [ 41] [ 8] [03014004] +20:37:31 [ 42] [ 15] [APT ] +20:37:31 [ 43] [ 40] [ TEACHER COLLEGE KH7 SAVAN] +20:37:31 [ 49] [ 3] [418] +20:37:31 [ 52] [ 16] [932FE77857802C66] +20:37:31 ============================================================================ +20:37:31 + + +waiting on router queue for slot.... +20:37:31 Sending to : <0> +20:37:31 ============================================================================ +20:37:31 ============================================================================ +20:37:31 Slot Id : <273> +20:37:31 Transaction Type : RESPONSE +20:37:31 Received From : +20:37:31 ============================================================================ +20:37:31 FNo. Len. Field Value +20:37:31 ============================================================================ +20:37:31 [ 1] [ 4] [0210] +20:37:31 [ 2] [ 16] [6213541000131287] +20:37:31 [ 3] [ 6] [010000] +20:37:31 [ 4] [ 12] [000030000000] +20:37:31 [ 7] [ 10] [0320203521] +20:37:31 [ 11] [ 6] [957272] +20:37:31 [ 12] [ 6] [203521] +20:37:31 [ 13] [ 4] [0320] +20:37:31 [ 15] [ 4] [0320] +20:37:31 [ 18] [ 4] [6011] +20:37:31 [ 19] [ 3] [418] +20:37:31 [ 32] [ 6] [668899] +20:37:31 [ 35] [ 32] [6213541000131287=491212013128411] +20:37:31 [ 37] [ 12] [507900560178] +20:37:31 [ 38] [ 6] [655611] +20:37:31 [ 39] [ 2] [00] +20:37:31 [ 41] [ 8] [03014004] +20:37:31 [ 49] [ 3] [418] +20:37:31 [ 54] [ 40] [0001418C0001188625010002418C000088662501] +20:37:31 ============================================================================ +20:37:31 Sending to : +20:37:31 ============================================================================ +20:37:31 + + +waiting on router queue for slot.... +20:37:33 ============================================================================ +20:37:33 Slot Id : <273> +20:37:33 Transaction Type : RESPONSE +20:37:33 Received From : +20:37:33 ============================================================================ +20:37:33 FNo. Len. Field Value +20:37:33 ============================================================================ +20:37:33 [ 1] [ 4] [0210] +20:37:33 [ 2] [ 16] [6213541000131287] +20:37:33 [ 3] [ 6] [010000] +20:37:33 [ 4] [ 12] [000030000000] +20:37:33 [ 7] [ 10] [0320203521] +20:37:33 [ 11] [ 6] [957272] +20:37:33 [ 12] [ 6] [203521] +20:37:33 [ 13] [ 4] [0320] +20:37:33 [ 15] [ 4] [0320] +20:37:33 [ 18] [ 4] [6011] +20:37:33 [ 19] [ 3] [418] +20:37:33 [ 32] [ 6] [668899] +20:37:33 [ 35] [ 32] [6213541000131287=491212013128411] +20:37:33 [ 37] [ 12] [507900560178] +20:37:33 [ 38] [ 6] [655611] +20:37:33 [ 39] [ 2] [00] +20:37:33 [ 41] [ 8] [03014004] +20:37:33 [ 49] [ 3] [418] +20:37:33 [ 54] [ 40] [0001418C0001188625010002418C000088662501] +20:37:33 ============================================================================ +20:37:33 Calculate Source COMM Id = 4 +20:37:33 ============================================================================ +20:37:33 + + +waiting on router queue for slot.... +20:37:33 ============================================================================ +20:37:33 Slot Id : <279> +20:37:33 Transaction Type : REQUEST +20:37:33 Received From : +20:37:33 ============================================================================ +20:37:33 FNo. Len. Field Value +20:37:33 ============================================================================ +20:37:33 [ 1] [ 4] [0800] +20:37:33 [ 2] [ 5] [02531] +20:37:33 [ 3] [ 6] [579208] +20:37:33 [ 7] [ 10] [0320133733] +20:37:33 [ 11] [ 6] [807609] +20:37:33 [ 15] [ 10] [0320133733] +20:37:33 [ 37] [ 11] [57920807609] +20:37:33 [ 70] [ 3] [001] +20:37:33 ============================================================================ +20:37:33 + + +waiting on router queue for slot.... +20:37:34 ============================================================================ +20:37:34 Slot Id : <279> +20:37:34 Transaction Type : RESPONSE +20:37:34 Received From : +20:37:34 ============================================================================ +20:37:34 FNo. Len. Field Value +20:37:34 ============================================================================ +20:37:34 [ 1] [ 4] [0810] +20:37:34 [ 7] [ 10] [0320133733] +20:37:34 [ 11] [ 6] [807609] +20:37:34 [ 15] [ 4] [0320] +20:37:34 [ 37] [ 12] [57920807609] +20:37:34 [ 39] [ 2] [00] +20:37:34 [ 70] [ 3] [001] +20:37:34 ============================================================================ +20:37:34 Sending to : +20:37:34 ============================================================================ +20:37:34 + + +waiting on router queue for slot.... +20:37:39 ============================================================================ +20:37:39 Slot Id : <239> +20:37:39 Transaction Type : REQUEST +20:37:39 Received From : +20:37:39 ============================================================================ +20:37:39 FNo. Len. Field Value +20:37:39 ============================================================================ +20:37:39 [ 1] [ 4] [0800] +20:37:39 [ 7] [ 10] [0320013648] +20:37:39 [ 11] [ 6] [158257] +20:37:39 [ 70] [ 3] [301] +20:37:39 ============================================================================ +20:37:39 + + +waiting on router queue for slot.... +20:37:39 Sending to : +20:37:39 ============================================================================ +20:37:39 ============================================================================ +20:37:39 Slot Id : <239> +20:37:39 Transaction Type : RESPONSE +20:37:39 Received From : +20:37:39 ============================================================================ +20:37:39 FNo. Len. Field Value +20:37:39 ============================================================================ +20:37:39 [ 1] [ 4] [0810] +20:37:39 [ 7] [ 10] [0320013648] +20:37:39 [ 11] [ 6] [158257] +20:37:39 [ 39] [ 2] [00] +20:37:39 [ 70] [ 3] [301] +20:37:39 ============================================================================ +20:37:39 Calculate Source COMM Id = 2 +20:37:39 ============================================================================ +20:37:39 + + +waiting on router queue for slot.... +20:37:46 ============================================================================ +20:37:46 Slot Id : <272> +20:37:46 Transaction Type : REQUEST +20:37:46 Received From : +20:37:46 ============================================================================ +20:37:46 FNo. Len. Field Value +20:37:46 ============================================================================ +20:37:46 [ 1] [ 4] [0200] +20:37:46 [ 2] [ 16] [6213541000340219] +20:37:46 [ 3] [ 6] [010000] +20:37:46 [ 4] [ 12] [000030000000] +20:37:46 [ 7] [ 10] [0320203537] +20:37:46 [ 11] [ 6] [957277] +20:37:46 [ 12] [ 6] [203537] +20:37:46 [ 13] [ 4] [0320] +20:37:46 [ 15] [ 4] [0320] +20:37:46 [ 18] [ 4] [6011] +20:37:46 [ 19] [ 3] [418] +20:37:46 [ 22] [ 3] [021] +20:37:46 [ 25] [ 2] [01] +20:37:46 [ 28] [ 9] [D00002000] +20:37:46 [ 32] [ 6] [668899] +20:37:46 [ 35] [ 32] [6213541000340219=491212014021582] +20:37:46 [ 37] [ 12] [507900513259] +20:37:46 [ 41] [ 8] [03012001] +20:37:46 [ 42] [ 15] [APT ] +20:37:46 [ 43] [ 40] [ LAK20 BR OFFICE LAK20 ] +20:37:46 [ 49] [ 3] [418] +20:37:46 [ 52] [ 16] [A394FB63FAF947E7] +20:37:46 ============================================================================ +20:37:46 + + +waiting on router queue for slot.... +20:37:46 Sending to : +20:37:46 ============================================================================ +20:37:46 Sending to : +20:37:46 ============================================================================ +20:37:46 ============================================================================ +20:37:46 Slot Id : <272> +20:37:46 Transaction Type : REQUEST +20:37:46 Received From : +20:37:46 ============================================================================ +20:37:46 FNo. Len. Field Value +20:37:46 ============================================================================ +20:37:46 [ 1] [ 4] [0200] +20:37:46 [ 2] [ 16] [6213541000340219] +20:37:46 [ 3] [ 6] [010000] +20:37:46 [ 4] [ 12] [000030000000] +20:37:46 [ 7] [ 10] [0320203537] +20:37:46 [ 11] [ 6] [957277] +20:37:46 [ 12] [ 6] [203537] +20:37:46 [ 13] [ 4] [0320] +20:37:46 [ 15] [ 4] [0320] +20:37:46 [ 18] [ 4] [6011] +20:37:46 [ 19] [ 3] [418] +20:37:46 [ 22] [ 3] [021] +20:37:46 [ 25] [ 2] [01] +20:37:46 [ 28] [ 9] [D00002000] +20:37:46 [ 32] [ 6] [668899] +20:37:46 [ 35] [ 32] [6213541000340219=491212014021582] +20:37:46 [ 37] [ 12] [507900513259] +20:37:46 [ 41] [ 8] [03012001] +20:37:46 [ 42] [ 15] [APT ] +20:37:46 [ 43] [ 40] [ LAK20 BR OFFICE LAK20 ] +20:37:46 [ 49] [ 3] [418] +20:37:46 [ 52] [ 16] [A394FB63FAF947E7] +20:37:46 ============================================================================ +20:37:46 + + +waiting on router queue for slot.... +20:37:46 Sending to : +20:37:46 ============================================================================ +20:37:46 ============================================================================ +20:37:46 Slot Id : <272> +20:37:46 Transaction Type : REQUEST +20:37:46 Received From : +20:37:46 ============================================================================ +20:37:46 FNo. Len. Field Value +20:37:46 ============================================================================ +20:37:46 [ 1] [ 4] [0200] +20:37:46 [ 2] [ 16] [6213541000340219] +20:37:46 [ 3] [ 6] [010000] +20:37:46 [ 4] [ 12] [000030000000] +20:37:46 [ 7] [ 10] [0320203537] +20:37:46 [ 11] [ 6] [957277] +20:37:46 [ 12] [ 6] [203537] +20:37:46 [ 13] [ 4] [0320] +20:37:46 [ 15] [ 4] [0320] +20:37:46 [ 18] [ 4] [6011] +20:37:46 [ 19] [ 3] [418] +20:37:46 [ 22] [ 3] [021] +20:37:46 [ 25] [ 2] [01] +20:37:46 [ 28] [ 9] [D00002000] +20:37:46 [ 32] [ 6] [668899] +20:37:46 [ 35] [ 32] [6213541000340219=491212014021582] +20:37:46 [ 37] [ 12] [507900513259] +20:37:46 [ 41] [ 8] [03012001] +20:37:46 [ 42] [ 15] [APT ] +20:37:46 [ 43] [ 40] [ LAK20 BR OFFICE LAK20 ] +20:37:46 [ 49] [ 3] [418] +20:37:46 [ 52] [ 16] [33FF0C0E271A0050] +20:37:46 ============================================================================ +20:37:46 + + +waiting on router queue for slot.... +20:37:46 Sending to : <0> +20:37:46 ============================================================================ +20:37:47 ============================================================================ +20:37:47 Slot Id : <272> +20:37:47 Transaction Type : RESPONSE +20:37:47 Received From : +20:37:47 ============================================================================ +20:37:47 FNo. Len. Field Value +20:37:47 ============================================================================ +20:37:47 [ 1] [ 4] [0210] +20:37:47 [ 2] [ 16] [6213541000340219] +20:37:47 [ 3] [ 6] [010000] +20:37:47 [ 4] [ 12] [000030000000] +20:37:47 [ 7] [ 10] [0320203537] +20:37:47 [ 11] [ 6] [957277] +20:37:47 [ 12] [ 6] [203537] +20:37:47 [ 13] [ 4] [0320] +20:37:47 [ 15] [ 4] [0320] +20:37:47 [ 18] [ 4] [6011] +20:37:47 [ 19] [ 3] [418] +20:37:47 [ 32] [ 6] [668899] +20:37:47 [ 35] [ 32] [6213541000340219=491212014021582] +20:37:47 [ 37] [ 12] [507900513259] +20:37:47 [ 38] [ 6] [199043] +20:37:47 [ 39] [ 2] [00] +20:37:47 [ 41] [ 8] [03012001] +20:37:47 [ 49] [ 3] [418] +20:37:47 [ 54] [ 40] [0001418C0001368110950002418C000106611095] +20:37:47 ============================================================================ +20:37:47 Sending to : +20:37:47 ============================================================================ +20:37:47 + + +waiting on router queue for slot.... +20:37:48 ============================================================================ +20:37:48 Slot Id : <272> +20:37:48 Transaction Type : RESPONSE +20:37:48 Received From : +20:37:48 ============================================================================ +20:37:48 FNo. Len. Field Value +20:37:48 ============================================================================ +20:37:48 [ 1] [ 4] [0210] +20:37:48 [ 2] [ 16] [6213541000340219] +20:37:48 [ 3] [ 6] [010000] +20:37:48 [ 4] [ 12] [000030000000] +20:37:48 [ 7] [ 10] [0320203537] +20:37:48 [ 11] [ 6] [957277] +20:37:48 [ 12] [ 6] [203537] +20:37:48 [ 13] [ 4] [0320] +20:37:48 [ 15] [ 4] [0320] +20:37:48 [ 18] [ 4] [6011] +20:37:48 [ 19] [ 3] [418] +20:37:48 [ 32] [ 6] [668899] +20:37:48 [ 35] [ 32] [6213541000340219=491212014021582] +20:37:48 [ 37] [ 12] [507900513259] +20:37:48 [ 38] [ 6] [199043] +20:37:48 [ 39] [ 2] [00] +20:37:48 [ 41] [ 8] [03012001] +20:37:48 [ 49] [ 3] [418] +20:37:48 [ 54] [ 40] [0001418C0001368110950002418C000106611095] +20:37:48 ============================================================================ +20:37:48 Calculate Source COMM Id = 4 +20:37:48 ============================================================================ +20:37:48 + + +waiting on router queue for slot.... +20:37:50 ============================================================================ +20:37:50 Slot Id : <252> +20:37:50 Transaction Type : REQUEST +20:37:50 Received From : +20:37:50 ============================================================================ +20:37:50 FNo. Len. Field Value +20:37:50 ============================================================================ +20:37:50 [ 1] [ 4] [0800] +20:37:50 [ 7] [ 10] [0320013658] +20:37:50 [ 11] [ 6] [158258] +20:37:50 [ 70] [ 3] [301] +20:37:50 ============================================================================ +20:37:50 + + +waiting on router queue for slot.... +20:37:50 Sending to : +20:37:50 ============================================================================ +20:37:50 ============================================================================ +20:37:50 Slot Id : <252> +20:37:50 Transaction Type : RESPONSE +20:37:50 Received From : +20:37:50 ============================================================================ +20:37:50 FNo. Len. Field Value +20:37:50 ============================================================================ +20:37:50 [ 1] [ 4] [0810] +20:37:50 [ 7] [ 10] [0320013658] +20:37:50 [ 11] [ 6] [158258] +20:37:50 [ 39] [ 2] [00] +20:37:50 [ 70] [ 3] [301] +20:37:50 ============================================================================ +20:37:50 Calculate Source COMM Id = 2 +20:37:50 ============================================================================ +20:37:50 + + +waiting on router queue for slot.... +20:38:00 ============================================================================ +20:38:00 Slot Id : <282> +20:38:00 Transaction Type : REQUEST +20:38:00 Received From : +20:38:00 ============================================================================ +20:38:00 FNo. Len. Field Value +20:38:00 ============================================================================ +20:38:00 [ 1] [ 4] [0800] +20:38:00 [ 7] [ 10] [0320013708] +20:38:00 [ 11] [ 6] [158259] +20:38:00 [ 70] [ 3] [301] +20:38:00 ============================================================================ +20:38:00 + + +waiting on router queue for slot.... +20:38:00 Sending to : +20:38:00 ============================================================================ +20:38:00 ============================================================================ +20:38:00 Slot Id : <282> +20:38:00 Transaction Type : RESPONSE +20:38:00 Received From : +20:38:00 ============================================================================ +20:38:00 FNo. Len. Field Value +20:38:00 ============================================================================ +20:38:00 [ 1] [ 4] [0810] +20:38:00 [ 7] [ 10] [0320013708] +20:38:00 [ 11] [ 6] [158259] +20:38:00 [ 39] [ 2] [00] +20:38:00 [ 70] [ 3] [301] +20:38:00 ============================================================================ +20:38:00 Calculate Source COMM Id = 2 +20:38:00 ============================================================================ +20:38:00 + + +waiting on router queue for slot.... +20:38:11 ============================================================================ +20:38:11 Slot Id : <254> +20:38:11 Transaction Type : REQUEST +20:38:11 Received From : +20:38:11 ============================================================================ +20:38:11 FNo. Len. Field Value +20:38:11 ============================================================================ +20:38:11 [ 1] [ 4] [0800] +20:38:11 [ 7] [ 10] [0320013719] +20:38:11 [ 11] [ 6] [158260] +20:38:11 [ 70] [ 3] [301] +20:38:11 ============================================================================ +20:38:11 + + +waiting on router queue for slot.... +20:38:11 Sending to : +20:38:11 ============================================================================ +20:38:11 ============================================================================ +20:38:11 Slot Id : <254> +20:38:11 Transaction Type : RESPONSE +20:38:11 Received From : +20:38:11 ============================================================================ +20:38:11 FNo. Len. Field Value +20:38:11 ============================================================================ +20:38:11 [ 1] [ 4] [0810] +20:38:11 [ 7] [ 10] [0320013719] +20:38:11 [ 11] [ 6] [158260] +20:38:11 [ 39] [ 2] [00] +20:38:11 [ 70] [ 3] [301] +20:38:11 ============================================================================ +20:38:11 Calculate Source COMM Id = 2 +20:38:11 ============================================================================ +20:38:11 + + +waiting on router queue for slot.... +20:38:22 ============================================================================ +20:38:22 Slot Id : <241> +20:38:22 Transaction Type : REQUEST +20:38:22 Received From : +20:38:22 ============================================================================ +20:38:22 FNo. Len. Field Value +20:38:22 ============================================================================ +20:38:22 [ 1] [ 4] [0800] +20:38:22 [ 7] [ 10] [0320013730] +20:38:22 [ 11] [ 6] [158261] +20:38:22 [ 70] [ 3] [301] +20:38:22 ============================================================================ +20:38:22 + + +waiting on router queue for slot.... +20:38:22 Sending to : +20:38:22 ============================================================================ +20:38:22 ============================================================================ +20:38:22 Slot Id : <241> +20:38:22 Transaction Type : RESPONSE +20:38:22 Received From : +20:38:22 ============================================================================ +20:38:22 FNo. Len. Field Value +20:38:22 ============================================================================ +20:38:22 [ 1] [ 4] [0810] +20:38:22 [ 7] [ 10] [0320013730] +20:38:22 [ 11] [ 6] [158261] +20:38:22 [ 39] [ 2] [00] +20:38:22 [ 70] [ 3] [301] +20:38:22 ============================================================================ +20:38:22 Calculate Source COMM Id = 2 +20:38:22 ============================================================================ +20:38:22 + + +waiting on router queue for slot.... +20:38:26 ============================================================================ +20:38:26 Slot Id : <266> +20:38:26 Transaction Type : REQUEST +20:38:26 Received From : +20:38:26 ============================================================================ +20:38:26 FNo. Len. Field Value +20:38:26 ============================================================================ +20:38:26 [ 1] [ 4] [0800] +20:38:26 [ 7] [ 10] [0321035015] +20:38:26 [ 11] [ 6] [205015] +20:38:26 [ 37] [ 12] [57920205015] +20:38:26 [ 70] [ 3] [301] +20:38:26 ============================================================================ +20:38:26 + + +waiting on router queue for slot.... +20:38:26 Sending to : +20:38:26 ============================================================================ +20:38:26 ============================================================================ +20:38:26 Slot Id : <266> +20:38:26 Transaction Type : RESPONSE +20:38:26 Received From : +20:38:26 ============================================================================ +20:38:26 FNo. Len. Field Value +20:38:26 ============================================================================ +20:38:26 [ 1] [ 4] [0810] +20:38:26 [ 7] [ 10] [0321035015] +20:38:26 [ 11] [ 6] [205015] +20:38:26 [ 37] [ 12] [579202050150] +20:38:26 [ 39] [ 2] [00] +20:38:26 [ 70] [ 3] [810] +20:38:26 ============================================================================ +20:38:26 Calculate Source COMM Id = 6 +20:38:26 ============================================================================ +20:38:26 + + +waiting on router queue for slot.... +20:38:33 ============================================================================ +20:38:33 Slot Id : <224> +20:38:33 Transaction Type : REQUEST +20:38:33 Received From : +20:38:33 ============================================================================ +20:38:33 FNo. Len. Field Value +20:38:33 ============================================================================ +20:38:33 [ 1] [ 4] [0800] +20:38:33 [ 7] [ 10] [0320013741] +20:38:33 [ 11] [ 6] [158262] +20:38:33 [ 70] [ 3] [301] +20:38:33 ============================================================================ +20:38:33 + + +waiting on router queue for slot.... +20:38:33 Sending to : +20:38:33 ============================================================================ +20:38:33 ============================================================================ +20:38:33 Slot Id : <224> +20:38:33 Transaction Type : RESPONSE +20:38:33 Received From : +20:38:33 ============================================================================ +20:38:33 FNo. Len. Field Value +20:38:33 ============================================================================ +20:38:33 [ 1] [ 4] [0810] +20:38:33 [ 7] [ 10] [0320013741] +20:38:33 [ 11] [ 6] [158262] +20:38:33 [ 39] [ 2] [00] +20:38:33 [ 70] [ 3] [301] +20:38:33 ============================================================================ +20:38:33 Calculate Source COMM Id = 2 +20:38:33 ============================================================================ +20:38:33 + + +waiting on router queue for slot.... +20:38:36 ============================================================================ +20:38:36 Slot Id : <280> +20:38:36 Transaction Type : REQUEST +20:38:36 Received From : +20:38:36 ============================================================================ +20:38:36 FNo. Len. Field Value +20:38:36 ============================================================================ +20:38:36 [ 1] [ 4] [0800] +20:38:36 [ 2] [ 5] [02531] +20:38:36 [ 3] [ 6] [579208] +20:38:36 [ 7] [ 10] [0320133835] +20:38:36 [ 11] [ 6] [807610] +20:38:36 [ 15] [ 10] [0320133835] +20:38:36 [ 37] [ 11] [57920807610] +20:38:36 [ 70] [ 3] [001] +20:38:36 ============================================================================ +20:38:36 + + +waiting on router queue for slot.... +20:38:36 ============================================================================ +20:38:36 Slot Id : <280> +20:38:36 Transaction Type : RESPONSE +20:38:36 Received From : +20:38:36 ============================================================================ +20:38:36 FNo. Len. Field Value +20:38:36 ============================================================================ +20:38:36 [ 1] [ 4] [0810] +20:38:36 [ 7] [ 10] [0320133835] +20:38:36 [ 11] [ 6] [807610] +20:38:36 [ 15] [ 4] [0320] +20:38:36 [ 37] [ 12] [57920807610] +20:38:36 [ 39] [ 2] [00] +20:38:36 [ 70] [ 3] [001] +20:38:36 ============================================================================ +20:38:36 Sending to : +20:38:36 ============================================================================ +20:38:36 + + +waiting on router queue for slot.... +20:38:48 ============================================================================ +20:38:48 Slot Id : <276> +20:38:48 Transaction Type : REQUEST +20:38:48 Received From : +20:38:48 ============================================================================ +20:38:48 FNo. Len. Field Value +20:38:48 ============================================================================ +20:38:48 [ 1] [ 4] [0800] +20:38:48 [ 7] [ 10] [0320013756] +20:38:48 [ 11] [ 6] [158263] +20:38:48 [ 70] [ 3] [301] +20:38:48 ============================================================================ +20:38:48 + + +waiting on router queue for slot.... +20:38:48 Sending to : +20:38:48 ============================================================================ +20:38:48 ============================================================================ +20:38:48 Slot Id : <276> +20:38:48 Transaction Type : RESPONSE +20:38:48 Received From : +20:38:48 ============================================================================ +20:38:48 FNo. Len. Field Value +20:38:48 ============================================================================ +20:38:48 [ 1] [ 4] [0810] +20:38:48 [ 7] [ 10] [0320013756] +20:38:48 [ 11] [ 6] [158263] +20:38:48 [ 39] [ 2] [00] +20:38:48 [ 70] [ 3] [301] +20:38:48 ============================================================================ +20:38:48 Calculate Source COMM Id = 2 +20:38:48 ============================================================================ +20:38:48 + + +waiting on router queue for slot.... +20:39:03 ============================================================================ +20:39:03 Slot Id : <219> +20:39:03 Transaction Type : REQUEST +20:39:03 Received From : +20:39:03 ============================================================================ +20:39:03 FNo. Len. Field Value +20:39:03 ============================================================================ +20:39:03 [ 1] [ 4] [0800] +20:39:03 [ 7] [ 10] [0320013812] +20:39:03 [ 11] [ 6] [158264] +20:39:03 [ 70] [ 3] [301] +20:39:03 ============================================================================ +20:39:03 + + +waiting on router queue for slot.... +20:39:03 Sending to : +20:39:03 ============================================================================ +20:39:03 ============================================================================ +20:39:03 Slot Id : <219> +20:39:03 Transaction Type : RESPONSE +20:39:03 Received From : +20:39:03 ============================================================================ +20:39:03 FNo. Len. Field Value +20:39:03 ============================================================================ +20:39:03 [ 1] [ 4] [0810] +20:39:03 [ 7] [ 10] [0320013812] +20:39:03 [ 11] [ 6] [158264] +20:39:03 [ 39] [ 2] [00] +20:39:03 [ 70] [ 3] [301] +20:39:03 ============================================================================ +20:39:03 Calculate Source COMM Id = 2 +20:39:03 ============================================================================ +20:39:03 + + +waiting on router queue for slot.... +20:39:19 ============================================================================ +20:39:19 Slot Id : <258> +20:39:19 Transaction Type : REQUEST +20:39:19 Received From : +20:39:19 ============================================================================ +20:39:19 FNo. Len. Field Value +20:39:19 ============================================================================ +20:39:19 [ 1] [ 4] [0800] +20:39:19 [ 7] [ 10] [0320013827] +20:39:19 [ 11] [ 6] [158265] +20:39:19 [ 70] [ 3] [301] +20:39:19 ============================================================================ +20:39:19 + + +waiting on router queue for slot.... +20:39:19 Sending to : +20:39:19 ============================================================================ +20:39:19 ============================================================================ +20:39:19 Slot Id : <258> +20:39:19 Transaction Type : RESPONSE +20:39:19 Received From : +20:39:19 ============================================================================ +20:39:19 FNo. Len. Field Value +20:39:19 ============================================================================ +20:39:19 [ 1] [ 4] [0810] +20:39:19 [ 7] [ 10] [0320013827] +20:39:19 [ 11] [ 6] [158265] +20:39:19 [ 39] [ 2] [00] +20:39:19 [ 70] [ 3] [301] +20:39:19 ============================================================================ +20:39:19 Calculate Source COMM Id = 2 +20:39:19 ============================================================================ +20:39:19 + + +waiting on router queue for slot.... +20:39:31 ============================================================================ +20:39:31 Slot Id : <290> +20:39:31 Transaction Type : REQUEST +20:39:31 Received From : +20:39:31 ============================================================================ +20:39:31 FNo. Len. Field Value +20:39:31 ============================================================================ +20:39:31 [ 1] [ 4] [0800] +20:39:31 [ 7] [ 10] [0321035120] +20:39:31 [ 11] [ 6] [205120] +20:39:31 [ 37] [ 12] [57920205120] +20:39:31 [ 70] [ 3] [301] +20:39:31 ============================================================================ +20:39:31 + + +waiting on router queue for slot.... +20:39:31 Sending to : +20:39:31 ============================================================================ +20:39:31 ============================================================================ +20:39:31 Slot Id : <290> +20:39:31 Transaction Type : RESPONSE +20:39:31 Received From : +20:39:31 ============================================================================ +20:39:31 FNo. Len. Field Value +20:39:31 ============================================================================ +20:39:31 [ 1] [ 4] [0810] +20:39:31 [ 7] [ 10] [0321035120] +20:39:31 [ 11] [ 6] [205120] +20:39:31 [ 37] [ 12] [579202051200] +20:39:31 [ 39] [ 2] [00] +20:39:31 [ 70] [ 3] [810] +20:39:31 ============================================================================ +20:39:31 Calculate Source COMM Id = 6 +20:39:31 ============================================================================ +20:39:31 + + +waiting on router queue for slot.... +20:39:34 ============================================================================ +20:39:34 Slot Id : <287> +20:39:34 Transaction Type : REQUEST +20:39:34 Received From : +20:39:34 ============================================================================ +20:39:34 FNo. Len. Field Value +20:39:34 ============================================================================ +20:39:34 [ 1] [ 4] [0800] +20:39:34 [ 7] [ 10] [0320013842] +20:39:34 [ 11] [ 6] [158266] +20:39:34 [ 70] [ 3] [301] +20:39:34 ============================================================================ +20:39:34 + + +waiting on router queue for slot.... +20:39:34 Sending to : +20:39:34 ============================================================================ +20:39:34 ============================================================================ +20:39:34 Slot Id : <287> +20:39:34 Transaction Type : RESPONSE +20:39:34 Received From : +20:39:34 ============================================================================ +20:39:34 FNo. Len. Field Value +20:39:34 ============================================================================ +20:39:34 [ 1] [ 4] [0810] +20:39:34 [ 7] [ 10] [0320013842] +20:39:34 [ 11] [ 6] [158266] +20:39:34 [ 39] [ 2] [00] +20:39:34 [ 70] [ 3] [301] +20:39:34 ============================================================================ +20:39:34 Calculate Source COMM Id = 2 +20:39:34 ============================================================================ +20:39:34 + + +waiting on router queue for slot.... +20:39:38 ============================================================================ +20:39:38 Slot Id : <277> +20:39:38 Transaction Type : REQUEST +20:39:38 Received From : +20:39:38 ============================================================================ +20:39:38 FNo. Len. Field Value +20:39:38 ============================================================================ +20:39:38 [ 1] [ 4] [0800] +20:39:38 [ 2] [ 5] [02531] +20:39:38 [ 3] [ 6] [579208] +20:39:38 [ 7] [ 10] [0320133938] +20:39:38 [ 11] [ 6] [807611] +20:39:38 [ 15] [ 10] [0320133938] +20:39:38 [ 37] [ 11] [57920807611] +20:39:38 [ 70] [ 3] [001] +20:39:38 ============================================================================ +20:39:38 + + +waiting on router queue for slot.... +20:39:38 ============================================================================ +20:39:38 Slot Id : <277> +20:39:38 Transaction Type : RESPONSE +20:39:38 Received From : +20:39:38 ============================================================================ +20:39:38 FNo. Len. Field Value +20:39:38 ============================================================================ +20:39:38 [ 1] [ 4] [0810] +20:39:38 [ 7] [ 10] [0320133938] +20:39:38 [ 11] [ 6] [807611] +20:39:38 [ 15] [ 4] [0320] +20:39:38 [ 37] [ 12] [57920807611] +20:39:38 [ 39] [ 2] [00] +20:39:38 [ 70] [ 3] [001] +20:39:38 ============================================================================ +20:39:38 Sending to : +20:39:38 ============================================================================ +20:39:38 + + +waiting on router queue for slot.... +20:39:46 ============================================================================ +20:39:46 Slot Id : <284> +20:39:46 Transaction Type : REQUEST +20:39:46 Received From : +20:39:46 ============================================================================ +20:39:46 FNo. Len. Field Value +20:39:46 ============================================================================ +20:39:46 [ 1] [ 4] [0800] +20:39:46 [ 7] [ 10] [0320013854] +20:39:46 [ 11] [ 6] [158267] +20:39:46 [ 70] [ 3] [301] +20:39:46 ============================================================================ +20:39:46 + + +waiting on router queue for slot.... +20:39:46 Sending to : +20:39:46 ============================================================================ +20:39:46 ============================================================================ +20:39:46 Slot Id : <284> +20:39:46 Transaction Type : RESPONSE +20:39:46 Received From : +20:39:46 ============================================================================ +20:39:46 FNo. Len. Field Value +20:39:46 ============================================================================ +20:39:46 [ 1] [ 4] [0810] +20:39:46 [ 7] [ 10] [0320013854] +20:39:46 [ 11] [ 6] [158267] +20:39:46 [ 39] [ 2] [00] +20:39:46 [ 70] [ 3] [301] +20:39:46 ============================================================================ +20:39:46 Calculate Source COMM Id = 2 +20:39:46 ============================================================================ +20:39:46 + + +waiting on router queue for slot.... +20:39:55 ============================================================================ +20:39:55 Slot Id : <267> +20:39:55 Transaction Type : REQUEST +20:39:55 Received From : +20:39:55 ============================================================================ +20:39:55 FNo. Len. Field Value +20:39:55 ============================================================================ +20:39:55 [ 1] [ 4] [0800] +20:39:55 [ 7] [ 10] [0320134742] +20:39:55 [ 11] [ 6] [020369] +20:39:55 [ 37] [ 12] [57920020369] +20:39:55 [ 70] [ 3] [301] +20:39:55 ============================================================================ +20:39:55 + + +waiting on router queue for slot.... +20:39:55 Sending to : +20:39:55 ============================================================================ +20:39:55 ============================================================================ +20:39:55 Slot Id : <267> +20:39:55 Transaction Type : RESPONSE +20:39:55 Received From : +20:39:55 ============================================================================ +20:39:55 FNo. Len. Field Value +20:39:55 ============================================================================ +20:39:55 [ 1] [ 4] [0810] +20:39:55 [ 7] [ 10] [0320134742] +20:39:55 [ 11] [ 6] [020369] +20:39:55 [ 37] [ 12] [579200203690] +20:39:55 [ 39] [ 2] [00] +20:39:55 [ 70] [ 3] [810] +20:39:55 ============================================================================ +20:39:55 Calculate Source COMM Id = 1 +20:39:55 ============================================================================ +20:39:55 + + +waiting on router queue for slot.... +20:39:56 ============================================================================ +20:39:56 Slot Id : <271> +20:39:56 Transaction Type : REQUEST +20:39:56 Received From : +20:39:56 ============================================================================ +20:39:56 FNo. Len. Field Value +20:39:56 ============================================================================ +20:39:56 [ 1] [ 4] [0800] +20:39:56 [ 7] [ 10] [0320013904] +20:39:56 [ 11] [ 6] [158268] +20:39:56 [ 70] [ 3] [301] +20:39:56 ============================================================================ +20:39:56 + + +waiting on router queue for slot.... +20:39:56 Sending to : +20:39:56 ============================================================================ +20:39:56 ============================================================================ +20:39:56 Slot Id : <271> +20:39:56 Transaction Type : RESPONSE +20:39:56 Received From : +20:39:56 ============================================================================ +20:39:56 FNo. Len. Field Value +20:39:56 ============================================================================ +20:39:56 [ 1] [ 4] [0810] +20:39:56 [ 7] [ 10] [0320013904] +20:39:56 [ 11] [ 6] [158268] +20:39:56 [ 39] [ 2] [00] +20:39:56 [ 70] [ 3] [301] +20:39:56 ============================================================================ +20:39:56 Calculate Source COMM Id = 2 +20:39:56 ============================================================================ +20:39:56 + + +waiting on router queue for slot.... +20:40:06 ============================================================================ +20:40:06 Slot Id : <245> +20:40:06 Transaction Type : REQUEST +20:40:06 Received From : +20:40:06 ============================================================================ +20:40:06 FNo. Len. Field Value +20:40:06 ============================================================================ +20:40:06 [ 1] [ 4] [0200] +20:40:06 [ 2] [ 16] [6213541000695174] +20:40:06 [ 3] [ 6] [011000] +20:40:06 [ 4] [ 12] [000050000000] +20:40:06 [ 7] [ 10] [0320204028] +20:40:06 [ 11] [ 6] [212256] +20:40:06 [ 12] [ 6] [203311] +20:40:06 [ 13] [ 4] [0320] +20:40:06 [ 14] [ 4] [4912] +20:40:06 [ 15] [ 4] [0320] +20:40:06 [ 18] [ 4] [6011] +20:40:06 [ 19] [ 3] [418] +20:40:06 [ 22] [ 3] [021] +20:40:06 [ 25] [ 2] [01] +20:40:06 [ 28] [ 9] [D00002000] +20:40:06 [ 32] [ 6] [198901] +20:40:06 [ 35] [ 32] [6213541000695174=491212019517219] +20:40:06 [ 37] [ 12] [507920212256] +20:40:06 [ 41] [ 8] [01652905] +20:40:06 [ 42] [ 15] [000000041652905] +20:40:06 [ 43] [ 40] [JDB ATM LPB UNIT VN ] +20:40:06 [ 49] [ 3] [418] +20:40:06 [ 52] [ 16] [7AAF73E18348ABDE] +20:40:06 ============================================================================ +20:40:06 + + +waiting on router queue for slot.... +20:40:06 Sending to : +20:40:06 ============================================================================ +20:40:06 Sending to : +20:40:06 ============================================================================ +20:40:06 ============================================================================ +20:40:06 Slot Id : <245> +20:40:06 Transaction Type : REQUEST +20:40:06 Received From : +20:40:06 ============================================================================ +20:40:06 FNo. Len. Field Value +20:40:06 ============================================================================ +20:40:06 [ 1] [ 4] [0200] +20:40:06 [ 2] [ 16] [6213541000695174] +20:40:06 [ 3] [ 6] [011000] +20:40:06 [ 4] [ 12] [000050000000] +20:40:06 [ 7] [ 10] [0320204028] +20:40:06 [ 11] [ 6] [212256] +20:40:06 [ 12] [ 6] [203311] +20:40:06 [ 13] [ 4] [0320] +20:40:06 [ 14] [ 4] [4912] +20:40:06 [ 15] [ 4] [0320] +20:40:06 [ 18] [ 4] [6011] +20:40:06 [ 19] [ 3] [418] +20:40:06 [ 22] [ 3] [021] +20:40:06 [ 25] [ 2] [01] +20:40:06 [ 28] [ 9] [D00002000] +20:40:06 [ 32] [ 6] [198901] +20:40:06 [ 35] [ 32] [6213541000695174=491212019517219] +20:40:06 [ 37] [ 12] [507920212256] +20:40:06 [ 41] [ 8] [01652905] +20:40:06 [ 42] [ 15] [000000041652905] +20:40:06 [ 43] [ 40] [JDB ATM LPB UNIT VN ] +20:40:06 [ 49] [ 3] [418] +20:40:06 [ 52] [ 16] [7AAF73E18348ABDE] +20:40:06 ============================================================================ +20:40:06 + + +waiting on router queue for slot.... +20:40:06 Sending to : +20:40:06 ============================================================================ +20:40:06 ============================================================================ +20:40:06 Slot Id : <245> +20:40:06 Transaction Type : REQUEST +20:40:06 Received From : +20:40:06 ============================================================================ +20:40:06 FNo. Len. Field Value +20:40:06 ============================================================================ +20:40:06 [ 1] [ 4] [0200] +20:40:06 [ 2] [ 16] [6213541000695174] +20:40:06 [ 3] [ 6] [011000] +20:40:06 [ 4] [ 12] [000050000000] +20:40:06 [ 7] [ 10] [0320204028] +20:40:06 [ 11] [ 6] [212256] +20:40:06 [ 12] [ 6] [203311] +20:40:06 [ 13] [ 4] [0320] +20:40:06 [ 14] [ 4] [4912] +20:40:06 [ 15] [ 4] [0320] +20:40:06 [ 18] [ 4] [6011] +20:40:06 [ 19] [ 3] [418] +20:40:06 [ 22] [ 3] [021] +20:40:06 [ 25] [ 2] [01] +20:40:06 [ 28] [ 9] [D00002000] +20:40:06 [ 32] [ 6] [198901] +20:40:06 [ 35] [ 32] [6213541000695174=491212019517219] +20:40:06 [ 37] [ 12] [507920212256] +20:40:06 [ 41] [ 8] [01652905] +20:40:06 [ 42] [ 15] [000000041652905] +20:40:06 [ 43] [ 40] [JDB ATM LPB UNIT VN ] +20:40:06 [ 49] [ 3] [418] +20:40:06 [ 52] [ 16] [987740930FB3E8B1] +20:40:06 ============================================================================ +20:40:06 + + +waiting on router queue for slot.... +20:40:06 Sending to : <0> +20:40:06 ============================================================================ +20:40:07 ============================================================================ +20:40:07 Slot Id : <236> +20:40:07 Transaction Type : REQUEST +20:40:07 Received From : +20:40:07 ============================================================================ +20:40:07 FNo. Len. Field Value +20:40:07 ============================================================================ +20:40:07 [ 1] [ 4] [0800] +20:40:07 [ 7] [ 10] [0320013915] +20:40:07 [ 11] [ 6] [158269] +20:40:07 [ 70] [ 3] [301] +20:40:07 ============================================================================ +20:40:07 + + +waiting on router queue for slot.... +20:40:07 Sending to : +20:40:07 ============================================================================ +20:40:07 ============================================================================ +20:40:07 Slot Id : <236> +20:40:07 Transaction Type : RESPONSE +20:40:07 Received From : +20:40:07 ============================================================================ +20:40:07 FNo. Len. Field Value +20:40:07 ============================================================================ +20:40:07 [ 1] [ 4] [0810] +20:40:07 [ 7] [ 10] [0320013915] +20:40:07 [ 11] [ 6] [158269] +20:40:07 [ 39] [ 2] [00] +20:40:07 [ 70] [ 3] [301] +20:40:07 ============================================================================ +20:40:07 Calculate Source COMM Id = 2 +20:40:07 ============================================================================ +20:40:07 + + +waiting on router queue for slot.... +20:40:11 ============================================================================ +20:40:11 Slot Id : <245> +20:40:11 Transaction Type : RESPONSE +20:40:11 Received From : +20:40:11 ============================================================================ +20:40:11 FNo. Len. Field Value +20:40:11 ============================================================================ +20:40:11 [ 1] [ 4] [0210] +20:40:11 [ 2] [ 16] [6213541000695174] +20:40:11 [ 3] [ 6] [011000] +20:40:11 [ 4] [ 12] [000050000000] +20:40:11 [ 7] [ 10] [0320204028] +20:40:11 [ 11] [ 6] [212256] +20:40:11 [ 12] [ 6] [203311] +20:40:11 [ 13] [ 4] [0320] +20:40:11 [ 15] [ 4] [0320] +20:40:11 [ 18] [ 4] [6011] +20:40:11 [ 19] [ 3] [418] +20:40:11 [ 32] [ 6] [198901] +20:40:11 [ 35] [ 32] [6213541000695174=491212019517219] +20:40:11 [ 37] [ 12] [507920212256] +20:40:11 [ 38] [ 6] [235856] +20:40:11 [ 39] [ 2] [00] +20:40:11 [ 41] [ 8] [01652905] +20:40:11 [ 49] [ 3] [418] +20:40:11 [ 54] [ 40] [1001840C0000005672191002840C000000561022] +20:40:11 ============================================================================ +20:40:11 Sending to : +20:40:11 ============================================================================ +20:40:11 + + +waiting on router queue for slot.... +20:40:13 ============================================================================ +20:40:13 Slot Id : <245> +20:40:13 Transaction Type : RESPONSE +20:40:13 Received From : +20:40:13 ============================================================================ +20:40:13 FNo. Len. Field Value +20:40:13 ============================================================================ +20:40:13 [ 1] [ 4] [0210] +20:40:13 [ 2] [ 16] [6213541000695174] +20:40:13 [ 3] [ 6] [011000] +20:40:13 [ 4] [ 12] [000050000000] +20:40:13 [ 7] [ 10] [0320204028] +20:40:13 [ 11] [ 6] [212256] +20:40:13 [ 12] [ 6] [203311] +20:40:13 [ 13] [ 4] [0320] +20:40:13 [ 15] [ 4] [0320] +20:40:13 [ 18] [ 4] [6011] +20:40:13 [ 19] [ 3] [418] +20:40:13 [ 32] [ 6] [198901] +20:40:13 [ 35] [ 32] [6213541000695174=491212019517219] +20:40:13 [ 37] [ 12] [507920212256] +20:40:13 [ 38] [ 6] [235856] +20:40:13 [ 39] [ 2] [00] +20:40:13 [ 41] [ 8] [01652905] +20:40:13 [ 49] [ 3] [418] +20:40:13 [ 54] [ 40] [1001840C0000005672191002840C000000561022] +20:40:13 ============================================================================ +20:40:13 Calculate Source COMM Id = 5 +20:40:13 ============================================================================ +20:40:13 + + +waiting on router queue for slot.... +20:40:18 ============================================================================ +20:40:18 Slot Id : <303> +20:40:18 Transaction Type : REQUEST +20:40:18 Received From : +20:40:18 ============================================================================ +20:40:18 FNo. Len. Field Value +20:40:18 ============================================================================ +20:40:18 [ 1] [ 4] [0800] +20:40:18 [ 7] [ 10] [0320013926] +20:40:18 [ 11] [ 6] [158270] +20:40:18 [ 70] [ 3] [301] +20:40:18 ============================================================================ +20:40:18 + + +waiting on router queue for slot.... +20:40:18 Sending to : +20:40:18 ============================================================================ +20:40:18 ============================================================================ +20:40:18 Slot Id : <303> +20:40:18 Transaction Type : RESPONSE +20:40:18 Received From : +20:40:18 ============================================================================ +20:40:18 FNo. Len. Field Value +20:40:18 ============================================================================ +20:40:18 [ 1] [ 4] [0810] +20:40:18 [ 7] [ 10] [0320013926] +20:40:18 [ 11] [ 6] [158270] +20:40:18 [ 39] [ 2] [00] +20:40:18 [ 70] [ 3] [301] +20:40:18 ============================================================================ +20:40:18 Calculate Source COMM Id = 2 +20:40:18 ============================================================================ +20:40:18 + + +waiting on router queue for slot.... +20:40:28 ============================================================================ +20:40:28 Slot Id : <294> +20:40:28 Transaction Type : REQUEST +20:40:28 Received From : +20:40:28 ============================================================================ +20:40:28 FNo. Len. Field Value +20:40:28 ============================================================================ +20:40:28 [ 1] [ 4] [0800] +20:40:28 [ 7] [ 10] [0320013937] +20:40:28 [ 11] [ 6] [158271] +20:40:28 [ 70] [ 3] [301] +20:40:28 ============================================================================ +20:40:28 + + +waiting on router queue for slot.... +20:40:28 Sending to : +20:40:28 ============================================================================ +20:40:28 ============================================================================ +20:40:28 Slot Id : <294> +20:40:28 Transaction Type : RESPONSE +20:40:28 Received From : +20:40:28 ============================================================================ +20:40:28 FNo. Len. Field Value +20:40:28 ============================================================================ +20:40:28 [ 1] [ 4] [0810] +20:40:28 [ 7] [ 10] [0320013937] +20:40:28 [ 11] [ 6] [158271] +20:40:28 [ 39] [ 2] [00] +20:40:28 [ 70] [ 3] [301] +20:40:28 ============================================================================ +20:40:28 Calculate Source COMM Id = 2 +20:40:28 ============================================================================ +20:40:28 + + +waiting on router queue for slot.... +20:40:36 ============================================================================ +20:40:36 Slot Id : <217> +20:40:36 Transaction Type : REQUEST +20:40:36 Received From : +20:40:36 ============================================================================ +20:40:36 FNo. Len. Field Value +20:40:36 ============================================================================ +20:40:36 [ 1] [ 4] [0800] +20:40:36 [ 7] [ 10] [0321035225] +20:40:36 [ 11] [ 6] [205225] +20:40:36 [ 37] [ 12] [57920205225] +20:40:36 [ 70] [ 3] [301] +20:40:36 ============================================================================ +20:40:36 + + +waiting on router queue for slot.... +20:40:36 Sending to : +20:40:36 ============================================================================ +20:40:36 ============================================================================ +20:40:36 Slot Id : <217> +20:40:36 Transaction Type : RESPONSE +20:40:36 Received From : +20:40:36 ============================================================================ +20:40:36 FNo. Len. Field Value +20:40:36 ============================================================================ +20:40:36 [ 1] [ 4] [0810] +20:40:36 [ 7] [ 10] [0321035225] +20:40:36 [ 11] [ 6] [205225] +20:40:36 [ 37] [ 12] [579202052250] +20:40:36 [ 39] [ 2] [00] +20:40:36 [ 70] [ 3] [810] +20:40:36 ============================================================================ +20:40:36 Calculate Source COMM Id = 6 +20:40:36 ============================================================================ +20:40:36 + + +waiting on router queue for slot.... +20:40:37 ============================================================================ +20:40:37 Slot Id : <298> +20:40:37 Transaction Type : REQUEST +20:40:37 Received From : +20:40:37 ============================================================================ +20:40:37 FNo. Len. Field Value +20:40:37 ============================================================================ +20:40:37 [ 1] [ 4] [0200] +20:40:37 [ 2] [ 16] [6213541000695174] +20:40:37 [ 3] [ 6] [301000] +20:40:37 [ 4] [ 12] [000000000000] +20:40:37 [ 7] [ 10] [0320204059] +20:40:37 [ 11] [ 6] [212265] +20:40:37 [ 12] [ 6] [203342] +20:40:37 [ 13] [ 4] [0320] +20:40:37 [ 14] [ 4] [4912] +20:40:37 [ 15] [ 4] [0320] +20:40:37 [ 18] [ 4] [6011] +20:40:37 [ 19] [ 3] [418] +20:40:37 [ 22] [ 3] [021] +20:40:37 [ 25] [ 2] [01] +20:40:37 [ 28] [ 9] [D00000000] +20:40:37 [ 32] [ 6] [198901] +20:40:37 [ 35] [ 32] [6213541000695174=491212019517219] +20:40:37 [ 37] [ 12] [507920212265] +20:40:37 [ 41] [ 8] [01652905] +20:40:37 [ 42] [ 15] [000000041652905] +20:40:37 [ 43] [ 40] [JDB ATM LPB UNIT VN ] +20:40:37 [ 49] [ 3] [418] +20:40:37 [ 52] [ 16] [7AAF73E18348ABDE] +20:40:37 ============================================================================ +20:40:37 + + +waiting on router queue for slot.... +20:40:37 Sending to : +20:40:37 ============================================================================ +20:40:37 Sending to : +20:40:37 ============================================================================ +20:40:37 ============================================================================ +20:40:37 Slot Id : <298> +20:40:37 Transaction Type : REQUEST +20:40:37 Received From : +20:40:37 ============================================================================ +20:40:37 FNo. Len. Field Value +20:40:37 ============================================================================ +20:40:37 [ 1] [ 4] [0200] +20:40:37 [ 2] [ 16] [6213541000695174] +20:40:37 [ 3] [ 6] [301000] +20:40:37 [ 4] [ 12] [000000000000] +20:40:37 [ 7] [ 10] [0320204059] +20:40:37 [ 11] [ 6] [212265] +20:40:37 [ 12] [ 6] [203342] +20:40:37 [ 13] [ 4] [0320] +20:40:37 [ 14] [ 4] [4912] +20:40:37 [ 15] [ 4] [0320] +20:40:37 [ 18] [ 4] [6011] +20:40:37 [ 19] [ 3] [418] +20:40:37 [ 22] [ 3] [021] +20:40:37 [ 25] [ 2] [01] +20:40:37 [ 28] [ 9] [D00000000] +20:40:37 [ 32] [ 6] [198901] +20:40:37 [ 35] [ 32] [6213541000695174=491212019517219] +20:40:37 [ 37] [ 12] [507920212265] +20:40:37 [ 41] [ 8] [01652905] +20:40:37 [ 42] [ 15] [000000041652905] +20:40:37 [ 43] [ 40] [JDB ATM LPB UNIT VN ] +20:40:37 [ 49] [ 3] [418] +20:40:37 [ 52] [ 16] [7AAF73E18348ABDE] +20:40:37 ============================================================================ +20:40:37 + + +waiting on router queue for slot.... +20:40:37 Sending to : +20:40:37 ============================================================================ +20:40:37 ============================================================================ +20:40:37 Slot Id : <298> +20:40:37 Transaction Type : REQUEST +20:40:37 Received From : +20:40:37 ============================================================================ +20:40:37 FNo. Len. Field Value +20:40:37 ============================================================================ +20:40:37 [ 1] [ 4] [0200] +20:40:37 [ 2] [ 16] [6213541000695174] +20:40:37 [ 3] [ 6] [301000] +20:40:37 [ 4] [ 12] [000000000000] +20:40:37 [ 7] [ 10] [0320204059] +20:40:37 [ 11] [ 6] [212265] +20:40:37 [ 12] [ 6] [203342] +20:40:37 [ 13] [ 4] [0320] +20:40:37 [ 14] [ 4] [4912] +20:40:37 [ 15] [ 4] [0320] +20:40:37 [ 18] [ 4] [6011] +20:40:37 [ 19] [ 3] [418] +20:40:37 [ 22] [ 3] [021] +20:40:37 [ 25] [ 2] [01] +20:40:37 [ 28] [ 9] [D00000000] +20:40:37 [ 32] [ 6] [198901] +20:40:37 [ 35] [ 32] [6213541000695174=491212019517219] +20:40:37 [ 37] [ 12] [507920212265] +20:40:37 [ 41] [ 8] [01652905] +20:40:37 [ 42] [ 15] [000000041652905] +20:40:37 [ 43] [ 40] [JDB ATM LPB UNIT VN ] +20:40:37 [ 49] [ 3] [418] +20:40:37 [ 52] [ 16] [987740930FB3E8B1] +20:40:37 ============================================================================ +20:40:37 + + +waiting on router queue for slot.... +20:40:37 Sending to : <0> +20:40:37 ============================================================================ +20:40:37 ============================================================================ +20:40:37 Slot Id : <298> +20:40:37 Transaction Type : RESPONSE +20:40:37 Received From : +20:40:37 ============================================================================ +20:40:37 FNo. Len. Field Value +20:40:37 ============================================================================ +20:40:37 [ 1] [ 4] [0210] +20:40:37 [ 2] [ 16] [6213541000695174] +20:40:37 [ 3] [ 6] [301000] +20:40:37 [ 4] [ 12] [000000000000] +20:40:37 [ 7] [ 10] [0320204059] +20:40:37 [ 11] [ 6] [212265] +20:40:37 [ 12] [ 6] [203342] +20:40:37 [ 13] [ 4] [0320] +20:40:37 [ 15] [ 4] [0320] +20:40:37 [ 18] [ 4] [6011] +20:40:37 [ 19] [ 3] [418] +20:40:37 [ 32] [ 6] [198901] +20:40:37 [ 35] [ 32] [6213541000695174=491212019517219] +20:40:37 [ 37] [ 12] [507920212265] +20:40:37 [ 38] [ 6] [033948] +20:40:37 [ 39] [ 2] [00] +20:40:37 [ 41] [ 8] [01652905] +20:40:37 [ 49] [ 3] [418] +20:40:37 [ 54] [ 40] [1001840C0000005672191002840C000000561022] +20:40:37 ============================================================================ +20:40:37 Sending to : +20:40:37 ============================================================================ +20:40:37 + + +waiting on router queue for slot.... +20:40:39 ============================================================================ +20:40:39 Slot Id : <298> +20:40:39 Transaction Type : RESPONSE +20:40:39 Received From : +20:40:39 ============================================================================ +20:40:39 FNo. Len. Field Value +20:40:39 ============================================================================ +20:40:39 [ 1] [ 4] [0210] +20:40:39 [ 2] [ 16] [6213541000695174] +20:40:39 [ 3] [ 6] [301000] +20:40:39 [ 4] [ 12] [000000000000] +20:40:39 [ 7] [ 10] [0320204059] +20:40:39 [ 11] [ 6] [212265] +20:40:39 [ 12] [ 6] [203342] +20:40:39 [ 13] [ 4] [0320] +20:40:39 [ 15] [ 4] [0320] +20:40:39 [ 18] [ 4] [6011] +20:40:39 [ 19] [ 3] [418] +20:40:39 [ 32] [ 6] [198901] +20:40:39 [ 35] [ 32] [6213541000695174=491212019517219] +20:40:39 [ 37] [ 12] [507920212265] +20:40:39 [ 38] [ 6] [033948] +20:40:39 [ 39] [ 2] [00] +20:40:39 [ 41] [ 8] [01652905] +20:40:39 [ 49] [ 3] [418] +20:40:39 [ 54] [ 40] [1001840C0000005672191002840C000000561022] +20:40:39 ============================================================================ +20:40:39 Calculate Source COMM Id = 5 +20:40:39 ============================================================================ +20:40:39 + + +waiting on router queue for slot.... +20:40:39 ============================================================================ +20:40:39 Slot Id : <293> +20:40:39 Transaction Type : REQUEST +20:40:39 Received From : +20:40:39 ============================================================================ +20:40:39 FNo. Len. Field Value +20:40:39 ============================================================================ +20:40:39 [ 1] [ 4] [0800] +20:40:39 [ 7] [ 10] [0320013948] +20:40:39 [ 11] [ 6] [158272] +20:40:39 [ 70] [ 3] [301] +20:40:39 ============================================================================ +20:40:39 + + +waiting on router queue for slot.... +20:40:39 Sending to : +20:40:39 ============================================================================ +20:40:39 ============================================================================ +20:40:39 Slot Id : <293> +20:40:39 Transaction Type : RESPONSE +20:40:39 Received From : +20:40:39 ============================================================================ +20:40:39 FNo. Len. Field Value +20:40:39 ============================================================================ +20:40:39 [ 1] [ 4] [0810] +20:40:39 [ 7] [ 10] [0320013948] +20:40:39 [ 11] [ 6] [158272] +20:40:39 [ 39] [ 2] [00] +20:40:39 [ 70] [ 3] [301] +20:40:39 ============================================================================ +20:40:39 Calculate Source COMM Id = 2 +20:40:39 ============================================================================ +20:40:39 + + +waiting on router queue for slot.... +20:40:40 ============================================================================ +20:40:40 Slot Id : <300> +20:40:40 Transaction Type : REQUEST +20:40:40 Received From : +20:40:40 ============================================================================ +20:40:40 FNo. Len. Field Value +20:40:40 ============================================================================ +20:40:40 [ 1] [ 4] [0800] +20:40:40 [ 2] [ 5] [02531] +20:40:40 [ 3] [ 6] [579208] +20:40:40 [ 7] [ 10] [0320134040] +20:40:40 [ 11] [ 6] [807612] +20:40:40 [ 15] [ 10] [0320134040] +20:40:40 [ 37] [ 11] [57920807612] +20:40:40 [ 70] [ 3] [001] +20:40:40 ============================================================================ +20:40:40 + + +waiting on router queue for slot.... +20:40:40 ============================================================================ +20:40:40 Slot Id : <300> +20:40:40 Transaction Type : RESPONSE +20:40:40 Received From : +20:40:40 ============================================================================ +20:40:40 FNo. Len. Field Value +20:40:40 ============================================================================ +20:40:40 [ 1] [ 4] [0810] +20:40:40 [ 7] [ 10] [0320134040] +20:40:40 [ 11] [ 6] [807612] +20:40:40 [ 15] [ 4] [0320] +20:40:40 [ 37] [ 12] [57920807612] +20:40:40 [ 39] [ 2] [00] +20:40:40 [ 70] [ 3] [001] +20:40:40 ============================================================================ +20:40:40 Sending to : +20:40:40 ============================================================================ +20:40:40 + + +waiting on router queue for slot.... +20:40:50 ============================================================================ +20:40:50 Slot Id : <278> +20:40:50 Transaction Type : REQUEST +20:40:50 Received From : +20:40:50 ============================================================================ +20:40:50 FNo. Len. Field Value +20:40:50 ============================================================================ +20:40:50 [ 1] [ 4] [0800] +20:40:50 [ 7] [ 10] [0320013959] +20:40:50 [ 11] [ 6] [158273] +20:40:50 [ 70] [ 3] [301] +20:40:50 ============================================================================ +20:40:50 + + +waiting on router queue for slot.... +20:40:50 Sending to : +20:40:50 ============================================================================ +20:40:50 ============================================================================ +20:40:50 Slot Id : <278> +20:40:50 Transaction Type : RESPONSE +20:40:50 Received From : +20:40:50 ============================================================================ +20:40:50 FNo. Len. Field Value +20:40:50 ============================================================================ +20:40:50 [ 1] [ 4] [0810] +20:40:50 [ 7] [ 10] [0320013959] +20:40:50 [ 11] [ 6] [158273] +20:40:50 [ 39] [ 2] [00] +20:40:50 [ 70] [ 3] [301] +20:40:50 ============================================================================ +20:40:50 Calculate Source COMM Id = 2 +20:40:50 ============================================================================ +20:40:50 + + +waiting on router queue for slot.... +20:41:06 ============================================================================ +20:41:06 Slot Id : <281> +20:41:06 Transaction Type : REQUEST +20:41:06 Received From : +20:41:06 ============================================================================ +20:41:06 FNo. Len. Field Value +20:41:06 ============================================================================ +20:41:06 [ 1] [ 4] [0800] +20:41:06 [ 7] [ 10] [0320014014] +20:41:06 [ 11] [ 6] [158274] +20:41:06 [ 70] [ 3] [301] +20:41:06 ============================================================================ +20:41:06 + + +waiting on router queue for slot.... +20:41:06 Sending to : +20:41:06 ============================================================================ +20:41:06 ============================================================================ +20:41:06 Slot Id : <281> +20:41:06 Transaction Type : RESPONSE +20:41:06 Received From : +20:41:06 ============================================================================ +20:41:06 FNo. Len. Field Value +20:41:06 ============================================================================ +20:41:06 [ 1] [ 4] [0810] +20:41:06 [ 7] [ 10] [0320014014] +20:41:06 [ 11] [ 6] [158274] +20:41:06 [ 39] [ 2] [00] +20:41:06 [ 70] [ 3] [301] +20:41:06 ============================================================================ +20:41:06 Calculate Source COMM Id = 2 +20:41:06 ============================================================================ +20:41:06 + + +waiting on router queue for slot.... +20:41:17 ============================================================================ +20:41:17 Slot Id : <299> +20:41:17 Transaction Type : REQUEST +20:41:17 Received From : +20:41:17 ============================================================================ +20:41:17 FNo. Len. Field Value +20:41:17 ============================================================================ +20:41:17 [ 1] [ 4] [0800] +20:41:17 [ 7] [ 10] [0320014025] +20:41:17 [ 11] [ 6] [158275] +20:41:17 [ 70] [ 3] [301] +20:41:17 ============================================================================ +20:41:17 + + +waiting on router queue for slot.... +20:41:17 Sending to : +20:41:17 ============================================================================ +20:41:17 ============================================================================ +20:41:17 Slot Id : <299> +20:41:17 Transaction Type : RESPONSE +20:41:17 Received From : +20:41:17 ============================================================================ +20:41:17 FNo. Len. Field Value +20:41:17 ============================================================================ +20:41:17 [ 1] [ 4] [0810] +20:41:17 [ 7] [ 10] [0320014025] +20:41:17 [ 11] [ 6] [158275] +20:41:17 [ 39] [ 2] [00] +20:41:17 [ 70] [ 3] [301] +20:41:17 ============================================================================ +20:41:17 Calculate Source COMM Id = 2 +20:41:17 ============================================================================ +20:41:17 + + +waiting on router queue for slot.... +20:41:21 ============================================================================ +20:41:21 Slot Id : <257> +20:41:21 Transaction Type : REQUEST +20:41:21 Received From : +20:41:21 ============================================================================ +20:41:21 FNo. Len. Field Value +20:41:21 ============================================================================ +20:41:21 [ 1] [ 4] [0800] +20:41:21 [ 7] [ 10] [0320133912] +20:41:21 [ 11] [ 6] [036798] +20:41:21 [ 37] [ 12] [57920036798] +20:41:21 [ 70] [ 3] [301] +20:41:21 ============================================================================ +20:41:21 + + +waiting on router queue for slot.... +20:41:21 Sending to : +20:41:21 ============================================================================ +20:41:21 ============================================================================ +20:41:21 Slot Id : <257> +20:41:21 Transaction Type : RESPONSE +20:41:21 Received From : +20:41:21 ============================================================================ +20:41:21 FNo. Len. Field Value +20:41:21 ============================================================================ +20:41:21 [ 1] [ 4] [0810] +20:41:21 [ 7] [ 10] [0320133912] +20:41:21 [ 11] [ 6] [036798] +20:41:21 [ 37] [ 12] [579200367980] +20:41:21 [ 39] [ 2] [00] +20:41:21 [ 70] [ 3] [810] +20:41:21 ============================================================================ +20:41:21 Calculate Source COMM Id = 4 +20:41:21 ============================================================================ +20:41:21 + + +waiting on router queue for slot.... +20:41:29 ============================================================================ +20:41:29 Slot Id : <308> +20:41:29 Transaction Type : REQUEST +20:41:29 Received From : +20:41:29 ============================================================================ +20:41:29 FNo. Len. Field Value +20:41:29 ============================================================================ +20:41:29 [ 1] [ 4] [0800] +20:41:29 [ 7] [ 10] [0320014036] +20:41:29 [ 11] [ 6] [158276] +20:41:29 [ 70] [ 3] [301] +20:41:29 ============================================================================ +20:41:29 + + +waiting on router queue for slot.... +20:41:29 Sending to : +20:41:29 ============================================================================ +20:41:29 ============================================================================ +20:41:29 Slot Id : <308> +20:41:29 Transaction Type : RESPONSE +20:41:29 Received From : +20:41:29 ============================================================================ +20:41:29 FNo. Len. Field Value +20:41:29 ============================================================================ +20:41:29 [ 1] [ 4] [0810] +20:41:29 [ 7] [ 10] [0320014036] +20:41:29 [ 11] [ 6] [158276] +20:41:29 [ 39] [ 2] [00] +20:41:29 [ 70] [ 3] [301] +20:41:29 ============================================================================ +20:41:29 Calculate Source COMM Id = 2 +20:41:29 ============================================================================ +20:41:29 + + +waiting on router queue for slot.... +20:41:37 ============================================================================ +20:41:37 Slot Id : <286> +20:41:37 Transaction Type : REQUEST +20:41:37 Received From : +20:41:37 ============================================================================ +20:41:37 FNo. Len. Field Value +20:41:37 ============================================================================ +20:41:37 [ 1] [ 4] [0200] +20:41:37 [ 2] [ 16] [6213544002246855] +20:41:37 [ 3] [ 6] [010000] +20:41:37 [ 4] [ 12] [000010000000] +20:41:37 [ 7] [ 10] [0320203929] +20:41:37 [ 11] [ 6] [957323] +20:41:37 [ 12] [ 6] [203929] +20:41:37 [ 13] [ 4] [0320] +20:41:37 [ 15] [ 4] [0320] +20:41:37 [ 18] [ 4] [6011] +20:41:37 [ 19] [ 3] [418] +20:41:37 [ 22] [ 3] [021] +20:41:37 [ 25] [ 2] [01] +20:41:37 [ 28] [ 9] [D00002000] +20:41:37 [ 32] [ 6] [668899] +20:41:37 [ 35] [ 32] [6213544002246855=491212014685256] +20:41:37 [ 37] [ 12] [507902488705] +20:41:37 [ 41] [ 8] [03001013] +20:41:37 [ 42] [ 15] [APT ] +20:41:37 [ 43] [ 40] [ VAT CHAN VAT CHAN LAO] +20:41:37 [ 49] [ 3] [418] +20:41:37 [ 52] [ 16] [8544C5F74F5A8EBF] +20:41:37 ============================================================================ +20:41:37 + + +waiting on router queue for slot.... +20:41:37 Sending to : +20:41:37 ============================================================================ +20:41:37 Sending to : +20:41:37 ============================================================================ +20:41:38 ============================================================================ +20:41:38 Slot Id : <286> +20:41:38 Transaction Type : REQUEST +20:41:38 Received From : +20:41:38 ============================================================================ +20:41:38 FNo. Len. Field Value +20:41:38 ============================================================================ +20:41:38 [ 1] [ 4] [0200] +20:41:38 [ 2] [ 16] [6213544002246855] +20:41:38 [ 3] [ 6] [010000] +20:41:38 [ 4] [ 12] [000010000000] +20:41:38 [ 7] [ 10] [0320203929] +20:41:38 [ 11] [ 6] [957323] +20:41:38 [ 12] [ 6] [203929] +20:41:38 [ 13] [ 4] [0320] +20:41:38 [ 15] [ 4] [0320] +20:41:38 [ 18] [ 4] [6011] +20:41:38 [ 19] [ 3] [418] +20:41:38 [ 22] [ 3] [021] +20:41:38 [ 25] [ 2] [01] +20:41:38 [ 28] [ 9] [D00002000] +20:41:38 [ 32] [ 6] [668899] +20:41:38 [ 35] [ 32] [6213544002246855=491212014685256] +20:41:38 [ 37] [ 12] [507902488705] +20:41:38 [ 41] [ 8] [03001013] +20:41:38 [ 42] [ 15] [APT ] +20:41:38 [ 43] [ 40] [ VAT CHAN VAT CHAN LAO] +20:41:38 [ 49] [ 3] [418] +20:41:38 [ 52] [ 16] [8544C5F74F5A8EBF] +20:41:38 ============================================================================ +20:41:38 + + +waiting on router queue for slot.... +20:41:38 Sending to : +20:41:38 ============================================================================ +20:41:38 ============================================================================ +20:41:38 Slot Id : <286> +20:41:38 Transaction Type : REQUEST +20:41:38 Received From : +20:41:38 ============================================================================ +20:41:38 FNo. Len. Field Value +20:41:38 ============================================================================ +20:41:38 [ 1] [ 4] [0200] +20:41:38 [ 2] [ 16] [6213544002246855] +20:41:38 [ 3] [ 6] [010000] +20:41:38 [ 4] [ 12] [000010000000] +20:41:38 [ 7] [ 10] [0320203929] +20:41:38 [ 11] [ 6] [957323] +20:41:38 [ 12] [ 6] [203929] +20:41:38 [ 13] [ 4] [0320] +20:41:38 [ 15] [ 4] [0320] +20:41:38 [ 18] [ 4] [6011] +20:41:38 [ 19] [ 3] [418] +20:41:38 [ 22] [ 3] [021] +20:41:38 [ 25] [ 2] [01] +20:41:38 [ 28] [ 9] [D00002000] +20:41:38 [ 32] [ 6] [668899] +20:41:38 [ 35] [ 32] [6213544002246855=491212014685256] +20:41:38 [ 37] [ 12] [507902488705] +20:41:38 [ 41] [ 8] [03001013] +20:41:38 [ 42] [ 15] [APT ] +20:41:38 [ 43] [ 40] [ VAT CHAN VAT CHAN LAO] +20:41:38 [ 49] [ 3] [418] +20:41:38 [ 52] [ 16] [09760E9291AD86DC] +20:41:38 ============================================================================ +20:41:38 + + +waiting on router queue for slot.... +20:41:38 Sending to : <0> +20:41:38 ============================================================================ +20:41:38 ============================================================================ +20:41:38 Slot Id : <286> +20:41:38 Transaction Type : RESPONSE +20:41:38 Received From : +20:41:38 ============================================================================ +20:41:38 FNo. Len. Field Value +20:41:38 ============================================================================ +20:41:38 [ 1] [ 4] [0210] +20:41:38 [ 2] [ 16] [6213544002246855] +20:41:38 [ 3] [ 6] [010000] +20:41:38 [ 4] [ 12] [000010000000] +20:41:38 [ 7] [ 10] [0320203929] +20:41:38 [ 11] [ 6] [957323] +20:41:38 [ 12] [ 6] [203929] +20:41:38 [ 13] [ 4] [0320] +20:41:38 [ 15] [ 4] [0320] +20:41:38 [ 18] [ 4] [6011] +20:41:38 [ 19] [ 3] [418] +20:41:38 [ 32] [ 6] [668899] +20:41:38 [ 35] [ 32] [6213544002246855=491212014685256] +20:41:38 [ 37] [ 12] [507902488705] +20:41:38 [ 38] [ 6] [786589] +20:41:38 [ 39] [ 2] [00] +20:41:38 [ 41] [ 8] [03001013] +20:41:38 [ 49] [ 3] [418] +20:41:38 [ 54] [ 40] [0001418C0000198000000002418C000009600000] +20:41:38 ============================================================================ +20:41:38 Sending to : +20:41:38 ============================================================================ +20:41:38 + + +waiting on router queue for slot.... +20:41:40 ============================================================================ +20:41:40 Slot Id : <286> +20:41:40 Transaction Type : RESPONSE +20:41:40 Received From : +20:41:40 ============================================================================ +20:41:40 FNo. Len. Field Value +20:41:40 ============================================================================ +20:41:40 [ 1] [ 4] [0210] +20:41:40 [ 2] [ 16] [6213544002246855] +20:41:40 [ 3] [ 6] [010000] +20:41:40 [ 4] [ 12] [000010000000] +20:41:40 [ 7] [ 10] [0320203929] +20:41:40 [ 11] [ 6] [957323] +20:41:40 [ 12] [ 6] [203929] +20:41:40 [ 13] [ 4] [0320] +20:41:40 [ 15] [ 4] [0320] +20:41:40 [ 18] [ 4] [6011] +20:41:40 [ 19] [ 3] [418] +20:41:40 [ 32] [ 6] [668899] +20:41:40 [ 35] [ 32] [6213544002246855=491212014685256] +20:41:40 [ 37] [ 12] [507902488705] +20:41:40 [ 38] [ 6] [786589] +20:41:40 [ 39] [ 2] [00] +20:41:40 [ 41] [ 8] [03001013] +20:41:40 [ 49] [ 3] [418] +20:41:40 [ 54] [ 40] [0001418C0000198000000002418C000009600000] +20:41:40 ============================================================================ +20:41:40 Calculate Source COMM Id = 4 +20:41:40 ============================================================================ +20:41:40 + + +waiting on router queue for slot.... +20:41:41 ============================================================================ +20:41:41 Slot Id : <295> +20:41:41 Transaction Type : REQUEST +20:41:41 Received From : +20:41:41 ============================================================================ +20:41:41 FNo. Len. Field Value +20:41:41 ============================================================================ +20:41:41 [ 1] [ 4] [0800] +20:41:41 [ 7] [ 10] [0321035330] +20:41:41 [ 11] [ 6] [205330] +20:41:41 [ 37] [ 12] [57920205330] +20:41:41 [ 70] [ 3] [301] +20:41:41 ============================================================================ +20:41:41 + + +waiting on router queue for slot.... +20:41:41 Sending to : +20:41:41 ============================================================================ +20:41:41 ============================================================================ +20:41:41 Slot Id : <295> +20:41:41 Transaction Type : RESPONSE +20:41:41 Received From : +20:41:41 ============================================================================ +20:41:41 FNo. Len. Field Value +20:41:41 ============================================================================ +20:41:41 [ 1] [ 4] [0810] +20:41:41 [ 7] [ 10] [0321035330] +20:41:41 [ 11] [ 6] [205330] +20:41:41 [ 37] [ 12] [579202053300] +20:41:41 [ 39] [ 2] [00] +20:41:41 [ 70] [ 3] [810] +20:41:41 ============================================================================ +20:41:41 Calculate Source COMM Id = 6 +20:41:41 ============================================================================ +20:41:41 + + +waiting on router queue for slot.... +20:41:42 ============================================================================ +20:41:42 Slot Id : <296> +20:41:42 Transaction Type : REQUEST +20:41:42 Received From : +20:41:42 ============================================================================ +20:41:42 FNo. Len. Field Value +20:41:42 ============================================================================ +20:41:42 [ 1] [ 4] [0800] +20:41:42 [ 2] [ 5] [02531] +20:41:42 [ 3] [ 6] [579208] +20:41:42 [ 7] [ 10] [0320134142] +20:41:42 [ 11] [ 6] [807613] +20:41:42 [ 15] [ 10] [0320134142] +20:41:42 [ 37] [ 11] [57920807613] +20:41:42 [ 70] [ 3] [001] +20:41:42 ============================================================================ +20:41:42 + + +waiting on router queue for slot.... +20:41:42 ============================================================================ +20:41:42 Slot Id : <296> +20:41:42 Transaction Type : RESPONSE +20:41:42 Received From : +20:41:42 ============================================================================ +20:41:42 FNo. Len. Field Value +20:41:42 ============================================================================ +20:41:42 [ 1] [ 4] [0810] +20:41:42 [ 7] [ 10] [0320134142] +20:41:42 [ 11] [ 6] [807613] +20:41:42 [ 15] [ 4] [0320] +20:41:42 [ 37] [ 12] [57920807613] +20:41:42 [ 39] [ 2] [00] +20:41:42 [ 70] [ 3] [001] +20:41:42 ============================================================================ +20:41:42 Sending to : +20:41:42 ============================================================================ +20:41:42 + + +waiting on router queue for slot.... +20:41:45 ============================================================================ +20:41:45 Slot Id : <283> +20:41:45 Transaction Type : REQUEST +20:41:45 Received From : +20:41:45 ============================================================================ +20:41:45 FNo. Len. Field Value +20:41:45 ============================================================================ +20:41:45 [ 1] [ 4] [0800] +20:41:45 [ 7] [ 10] [0320014054] +20:41:45 [ 11] [ 6] [158277] +20:41:45 [ 70] [ 3] [301] +20:41:45 ============================================================================ +20:41:45 + + +waiting on router queue for slot.... +20:41:45 Sending to : +20:41:45 ============================================================================ +20:41:45 ============================================================================ +20:41:45 Slot Id : <283> +20:41:45 Transaction Type : RESPONSE +20:41:45 Received From : +20:41:45 ============================================================================ +20:41:45 FNo. Len. Field Value +20:41:45 ============================================================================ +20:41:45 [ 1] [ 4] [0810] +20:41:45 [ 7] [ 10] [0320014054] +20:41:45 [ 11] [ 6] [158277] +20:41:45 [ 39] [ 2] [00] +20:41:45 [ 70] [ 3] [301] +20:41:45 ============================================================================ +20:41:45 Calculate Source COMM Id = 2 +20:41:45 ============================================================================ +20:41:45 + + +waiting on router queue for slot.... +20:41:47 ============================================================================ +20:41:47 Slot Id : <306> +20:41:47 Transaction Type : REQUEST +20:41:47 Received From : +20:41:47 ============================================================================ +20:41:47 FNo. Len. Field Value +20:41:47 ============================================================================ +20:41:47 [ 1] [ 4] [0800] +20:41:47 [ 7] [ 10] [0320134144] +20:41:47 [ 11] [ 6] [069992] +20:41:47 [ 37] [ 12] [507920069992] +20:41:47 [ 70] [ 3] [001] +20:41:47 ============================================================================ +20:41:47 + + +waiting on router queue for slot.... +20:41:47 Sending to : +20:41:47 ============================================================================ +20:41:47 ============================================================================ +20:41:47 Slot Id : <306> +20:41:47 Transaction Type : RESPONSE +20:41:47 Received From : +20:41:47 ============================================================================ +20:41:47 FNo. Len. Field Value +20:41:47 ============================================================================ +20:41:47 [ 1] [ 4] [0810] +20:41:47 [ 7] [ 10] [0320134144] +20:41:47 [ 11] [ 6] [069992] +20:41:47 [ 37] [ 12] [507920069992] +20:41:47 [ 39] [ 2] [00] +20:41:47 [ 70] [ 3] [001] +20:41:47 ============================================================================ +20:41:47 Calculate Source COMM Id = 0 +20:41:47 ============================================================================ +20:41:47 + + +waiting on router queue for slot.... +20:41:56 ============================================================================ +20:41:56 Slot Id : <311> +20:41:56 Transaction Type : REQUEST +20:41:56 Received From : +20:41:56 ============================================================================ +20:41:56 FNo. Len. Field Value +20:41:56 ============================================================================ +20:41:56 [ 1] [ 4] [0800] +20:41:56 [ 7] [ 10] [0320014105] +20:41:56 [ 11] [ 6] [158278] +20:41:56 [ 70] [ 3] [301] +20:41:56 ============================================================================ +20:41:56 + + +waiting on router queue for slot.... +20:41:56 Sending to : +20:41:56 ============================================================================ +20:41:56 ============================================================================ +20:41:56 Slot Id : <311> +20:41:56 Transaction Type : RESPONSE +20:41:56 Received From : +20:41:56 ============================================================================ +20:41:56 FNo. Len. Field Value +20:41:56 ============================================================================ +20:41:56 [ 1] [ 4] [0810] +20:41:56 [ 7] [ 10] [0320014105] +20:41:56 [ 11] [ 6] [158278] +20:41:56 [ 39] [ 2] [00] +20:41:56 [ 70] [ 3] [301] +20:41:56 ============================================================================ +20:41:56 Calculate Source COMM Id = 2 +20:41:56 ============================================================================ +20:41:56 + + +waiting on router queue for slot.... +20:42:07 ============================================================================ +20:42:07 Slot Id : <312> +20:42:07 Transaction Type : REQUEST +20:42:07 Received From : +20:42:07 ============================================================================ +20:42:07 FNo. Len. Field Value +20:42:07 ============================================================================ +20:42:07 [ 1] [ 4] [0800] +20:42:07 [ 7] [ 10] [0320014115] +20:42:07 [ 11] [ 6] [158279] +20:42:07 [ 70] [ 3] [301] +20:42:07 ============================================================================ +20:42:07 + + +waiting on router queue for slot.... +20:42:07 Sending to : +20:42:07 ============================================================================ +20:42:07 ============================================================================ +20:42:07 Slot Id : <312> +20:42:07 Transaction Type : RESPONSE +20:42:07 Received From : +20:42:07 ============================================================================ +20:42:07 FNo. Len. Field Value +20:42:07 ============================================================================ +20:42:07 [ 1] [ 4] [0810] +20:42:07 [ 7] [ 10] [0320014115] +20:42:07 [ 11] [ 6] [158279] +20:42:07 [ 39] [ 2] [00] +20:42:07 [ 70] [ 3] [301] +20:42:07 ============================================================================ +20:42:07 Calculate Source COMM Id = 2 +20:42:07 ============================================================================ +20:42:07 + + +waiting on router queue for slot.... +20:42:12 ============================================================================ +20:42:12 Slot Id : <307> +20:42:12 Transaction Type : REQUEST +20:42:12 Received From : +20:42:12 ============================================================================ +20:42:12 FNo. Len. Field Value +20:42:12 ============================================================================ +20:42:12 [ 1] [ 4] [0200] +20:42:12 [ 2] [ 16] [6213545000947683] +20:42:12 [ 3] [ 6] [301000] +20:42:12 [ 7] [ 10] [0320134118] +20:42:12 [ 11] [ 6] [271618] +20:42:12 [ 12] [ 6] [204118] +20:42:12 [ 13] [ 4] [0320] +20:42:12 [ 14] [ 4] [4912] +20:42:12 [ 15] [ 4] [0320] +20:42:12 [ 18] [ 4] [6011] +20:42:12 [ 19] [ 3] [418] +20:42:12 [ 22] [ 3] [021] +20:42:12 [ 25] [ 2] [01] +20:42:12 [ 32] [ 6] [180893] +20:42:12 [ 35] [ 32] [6213545000947683=491212014768242] +20:42:12 [ 37] [ 12] [507913271618] +20:42:12 [ 41] [ 8] [0466PSLB] +20:42:12 [ 42] [ 15] [999999 ] +20:42:12 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:42:12 [ 49] [ 3] [418] +20:42:12 [ 52] [ 16] [298B48315B3C9419] +20:42:12 ============================================================================ +20:42:12 + + +waiting on router queue for slot.... +20:42:12 Sending to : +20:42:12 ============================================================================ +20:42:12 Sending to : +20:42:12 ============================================================================ +20:42:12 ============================================================================ +20:42:12 Slot Id : <307> +20:42:12 Transaction Type : REQUEST +20:42:12 Received From : +20:42:12 ============================================================================ +20:42:12 FNo. Len. Field Value +20:42:12 ============================================================================ +20:42:12 [ 1] [ 4] [0200] +20:42:12 [ 2] [ 16] [6213545000947683] +20:42:12 [ 3] [ 6] [301000] +20:42:12 [ 7] [ 10] [0320134118] +20:42:12 [ 11] [ 6] [271618] +20:42:12 [ 12] [ 6] [204118] +20:42:12 [ 13] [ 4] [0320] +20:42:12 [ 14] [ 4] [4912] +20:42:12 [ 15] [ 4] [0320] +20:42:12 [ 18] [ 4] [6011] +20:42:12 [ 19] [ 3] [418] +20:42:12 [ 22] [ 3] [021] +20:42:12 [ 25] [ 2] [01] +20:42:12 [ 32] [ 6] [180893] +20:42:12 [ 35] [ 32] [6213545000947683=491212014768242] +20:42:12 [ 37] [ 12] [507913271618] +20:42:12 [ 41] [ 8] [0466PSLB] +20:42:12 [ 42] [ 15] [999999 ] +20:42:12 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:42:12 [ 49] [ 3] [418] +20:42:12 [ 52] [ 16] [298B48315B3C9419] +20:42:12 ============================================================================ +20:42:12 + + +waiting on router queue for slot.... +20:42:12 Sending to : +20:42:12 ============================================================================ +20:42:12 ============================================================================ +20:42:12 Slot Id : <307> +20:42:12 Transaction Type : REQUEST +20:42:12 Received From : +20:42:12 ============================================================================ +20:42:12 FNo. Len. Field Value +20:42:12 ============================================================================ +20:42:12 [ 1] [ 4] [0200] +20:42:12 [ 2] [ 16] [6213545000947683] +20:42:12 [ 3] [ 6] [301000] +20:42:12 [ 7] [ 10] [0320134118] +20:42:12 [ 11] [ 6] [271618] +20:42:12 [ 12] [ 6] [204118] +20:42:12 [ 13] [ 4] [0320] +20:42:12 [ 14] [ 4] [4912] +20:42:12 [ 15] [ 4] [0320] +20:42:12 [ 18] [ 4] [6011] +20:42:12 [ 19] [ 3] [418] +20:42:12 [ 22] [ 3] [021] +20:42:12 [ 25] [ 2] [01] +20:42:12 [ 32] [ 6] [180893] +20:42:12 [ 35] [ 32] [6213545000947683=491212014768242] +20:42:12 [ 37] [ 12] [507913271618] +20:42:12 [ 41] [ 8] [0466PSLB] +20:42:12 [ 42] [ 15] [999999 ] +20:42:12 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:42:12 [ 49] [ 3] [418] +20:42:12 [ 52] [ 16] [A0DD8DCAEEE20CFA] +20:42:12 ============================================================================ +20:42:12 + + +waiting on router queue for slot.... +20:42:12 Sending to : <0> +20:42:12 ============================================================================ +20:42:13 ============================================================================ +20:42:13 Slot Id : <307> +20:42:13 Transaction Type : RESPONSE +20:42:13 Received From : +20:42:13 ============================================================================ +20:42:13 FNo. Len. Field Value +20:42:13 ============================================================================ +20:42:13 [ 1] [ 4] [0210] +20:42:13 [ 2] [ 16] [6213545000947683] +20:42:13 [ 3] [ 6] [301000] +20:42:13 [ 4] [ 12] [000000000000] +20:42:13 [ 7] [ 10] [0320134118] +20:42:13 [ 11] [ 6] [271618] +20:42:13 [ 12] [ 6] [204118] +20:42:13 [ 13] [ 4] [0320] +20:42:13 [ 15] [ 4] [0320] +20:42:13 [ 18] [ 4] [6011] +20:42:13 [ 19] [ 3] [418] +20:42:13 [ 32] [ 6] [180893] +20:42:13 [ 35] [ 32] [6213545000947683=491212014768242] +20:42:13 [ 37] [ 12] [507913271618] +20:42:13 [ 38] [ 6] [410900] +20:42:13 [ 39] [ 2] [00] +20:42:13 [ 41] [ 8] [0466PSLB] +20:42:13 [ 49] [ 3] [418] +20:42:13 [ 54] [ 40] [1001418C0000104036951002418C000010403695] +20:42:13 ============================================================================ +20:42:13 Sending to : +20:42:13 ============================================================================ +20:42:13 + + +waiting on router queue for slot.... +20:42:14 ============================================================================ +20:42:14 Slot Id : <307> +20:42:14 Transaction Type : RESPONSE +20:42:14 Received From : +20:42:14 ============================================================================ +20:42:14 FNo. Len. Field Value +20:42:14 ============================================================================ +20:42:14 [ 1] [ 4] [0210] +20:42:14 [ 2] [ 16] [6213545000947683] +20:42:14 [ 3] [ 6] [301000] +20:42:14 [ 4] [ 12] [000000000000] +20:42:14 [ 7] [ 10] [0320134118] +20:42:14 [ 11] [ 6] [271618] +20:42:14 [ 12] [ 6] [204118] +20:42:14 [ 13] [ 4] [0320] +20:42:14 [ 15] [ 4] [0320] +20:42:14 [ 18] [ 4] [6011] +20:42:14 [ 19] [ 3] [418] +20:42:14 [ 32] [ 6] [180893] +20:42:14 [ 35] [ 32] [6213545000947683=491212014768242] +20:42:14 [ 37] [ 12] [507913271618] +20:42:14 [ 38] [ 6] [410900] +20:42:14 [ 39] [ 2] [00] +20:42:14 [ 41] [ 8] [0466PSLB] +20:42:14 [ 49] [ 3] [418] +20:42:14 [ 54] [ 40] [1001418C0000104036951002418C000010403695] +20:42:14 ============================================================================ +20:42:14 Calculate Source COMM Id = 2 +20:42:14 ============================================================================ +20:42:14 + + +waiting on router queue for slot.... +20:42:27 ============================================================================ +20:42:27 Slot Id : <288> +20:42:27 Transaction Type : REQUEST +20:42:27 Received From : +20:42:27 ============================================================================ +20:42:27 FNo. Len. Field Value +20:42:27 ============================================================================ +20:42:27 [ 1] [ 4] [0800] +20:42:27 [ 7] [ 10] [0320014136] +20:42:27 [ 11] [ 6] [158280] +20:42:27 [ 70] [ 3] [301] +20:42:27 ============================================================================ +20:42:27 + + +waiting on router queue for slot.... +20:42:27 Sending to : +20:42:27 ============================================================================ +20:42:27 ============================================================================ +20:42:27 Slot Id : <288> +20:42:27 Transaction Type : RESPONSE +20:42:27 Received From : +20:42:27 ============================================================================ +20:42:27 FNo. Len. Field Value +20:42:27 ============================================================================ +20:42:27 [ 1] [ 4] [0810] +20:42:27 [ 7] [ 10] [0320014136] +20:42:27 [ 11] [ 6] [158280] +20:42:27 [ 39] [ 2] [00] +20:42:27 [ 70] [ 3] [301] +20:42:27 ============================================================================ +20:42:27 Calculate Source COMM Id = 2 +20:42:27 ============================================================================ +20:42:27 + + +waiting on router queue for slot.... +20:42:36 ============================================================================ +20:42:36 Slot Id : <316> +20:42:36 Transaction Type : REQUEST +20:42:36 Received From : +20:42:36 ============================================================================ +20:42:36 FNo. Len. Field Value +20:42:36 ============================================================================ +20:42:36 [ 1] [ 4] [0200] +20:42:36 [ 2] [ 16] [6688990040050211] +20:42:36 [ 3] [ 6] [010000] +20:42:36 [ 4] [ 12] [000010000000] +20:42:36 [ 7] [ 10] [0320204233] +20:42:36 [ 11] [ 6] [843694] +20:42:36 [ 12] [ 6] [204233] +20:42:36 [ 13] [ 4] [0320] +20:42:36 [ 15] [ 4] [0320] +20:42:36 [ 18] [ 4] [6011] +20:42:36 [ 22] [ 3] [900] +20:42:36 [ 25] [ 2] [02] +20:42:36 [ 28] [ 9] [D00002000] +20:42:36 [ 32] [ 6] [621354] +20:42:36 [ 35] [ 37] [6688990040050211=97121261349280000000] +20:42:36 [ 37] [ 12] [507904229654] +20:42:36 [ 41] [ 8] [05004600] +20:42:36 [ 42] [ 15] [NATIVE ] +20:42:36 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +20:42:36 [ 49] [ 3] [418] +20:42:36 [ 52] [ 16] [2CCC661443B9934F] +20:42:36 ============================================================================ +20:42:36 + + +waiting on router queue for slot.... +20:42:36 Sending to : +20:42:36 ============================================================================ +20:42:36 Sending to : +20:42:36 ============================================================================ +20:42:37 ============================================================================ +20:42:37 Slot Id : <316> +20:42:37 Transaction Type : REQUEST +20:42:37 Received From : +20:42:37 ============================================================================ +20:42:37 FNo. Len. Field Value +20:42:37 ============================================================================ +20:42:37 [ 1] [ 4] [0200] +20:42:37 [ 2] [ 16] [6688990040050211] +20:42:37 [ 3] [ 6] [010000] +20:42:37 [ 4] [ 12] [000010000000] +20:42:37 [ 7] [ 10] [0320204233] +20:42:37 [ 11] [ 6] [843694] +20:42:37 [ 12] [ 6] [204233] +20:42:37 [ 13] [ 4] [0320] +20:42:37 [ 15] [ 4] [0320] +20:42:37 [ 18] [ 4] [6011] +20:42:37 [ 22] [ 3] [900] +20:42:37 [ 25] [ 2] [02] +20:42:37 [ 28] [ 9] [D00002000] +20:42:37 [ 32] [ 6] [621354] +20:42:37 [ 35] [ 37] [6688990040050211=97121261349280000000] +20:42:37 [ 37] [ 12] [507904229654] +20:42:37 [ 41] [ 8] [05004600] +20:42:37 [ 42] [ 15] [NATIVE ] +20:42:37 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +20:42:37 [ 49] [ 3] [418] +20:42:37 [ 52] [ 16] [2CCC661443B9934F] +20:42:37 ============================================================================ +20:42:37 + + +waiting on router queue for slot.... +20:42:37 Sending to : +20:42:37 ============================================================================ +20:42:37 ============================================================================ +20:42:37 Slot Id : <316> +20:42:37 Transaction Type : REQUEST +20:42:37 Received From : +20:42:37 ============================================================================ +20:42:37 FNo. Len. Field Value +20:42:37 ============================================================================ +20:42:37 [ 1] [ 4] [0200] +20:42:37 [ 2] [ 16] [6688990040050211] +20:42:37 [ 3] [ 6] [010000] +20:42:37 [ 4] [ 12] [000010000000] +20:42:37 [ 7] [ 10] [0320204233] +20:42:37 [ 11] [ 6] [843694] +20:42:37 [ 12] [ 6] [204233] +20:42:37 [ 13] [ 4] [0320] +20:42:37 [ 15] [ 4] [0320] +20:42:37 [ 18] [ 4] [6011] +20:42:37 [ 22] [ 3] [900] +20:42:37 [ 25] [ 2] [02] +20:42:37 [ 28] [ 9] [D00002000] +20:42:37 [ 32] [ 6] [621354] +20:42:37 [ 35] [ 37] [6688990040050211=97121261349280000000] +20:42:37 [ 37] [ 12] [507904229654] +20:42:37 [ 41] [ 8] [05004600] +20:42:37 [ 42] [ 15] [NATIVE ] +20:42:37 [ 43] [ 40] [LPB Teacher College LuangprabangLAO] +20:42:37 [ 49] [ 3] [418] +20:42:37 [ 52] [ 16] [11FDDE5F3063144E] +20:42:37 ============================================================================ +20:42:37 + + +waiting on router queue for slot.... +20:42:37 Sending to : <4> +20:42:37 ============================================================================ +20:42:38 ============================================================================ +20:42:38 Slot Id : <316> +20:42:38 Transaction Type : RESPONSE +20:42:38 Received From : +20:42:38 ============================================================================ +20:42:38 FNo. Len. Field Value +20:42:38 ============================================================================ +20:42:38 [ 1] [ 4] [0210] +20:42:38 [ 2] [ 16] [6688990040050211] +20:42:38 [ 3] [ 6] [010000] +20:42:38 [ 4] [ 12] [000010000000] +20:42:38 [ 11] [ 6] [843694] +20:42:38 [ 12] [ 6] [204233] +20:42:38 [ 15] [ 4] [0320] +20:42:38 [ 18] [ 4] [6011] +20:42:38 [ 32] [ 6] [621354] +20:42:38 [ 35] [ 37] [6688990040050211=97121261349280000000] +20:42:38 [ 37] [ 12] [507904229654] +20:42:38 [ 38] [ 6] [473825] +20:42:38 [ 39] [ 2] [00] +20:42:38 [ 41] [ 8] [05004600] +20:42:38 [ 49] [ 3] [418] +20:42:38 [ 54] [ 20] [0002418C000033103396] +20:42:38 ============================================================================ +20:42:38 Sending to : +20:42:38 ============================================================================ +20:42:38 + + +waiting on router queue for slot.... +20:42:38 ============================================================================ +20:42:38 Slot Id : <310> +20:42:38 Transaction Type : REQUEST +20:42:38 Received From : +20:42:38 ============================================================================ +20:42:38 FNo. Len. Field Value +20:42:38 ============================================================================ +20:42:38 [ 1] [ 4] [0800] +20:42:38 [ 7] [ 10] [0320014146] +20:42:38 [ 11] [ 6] [158281] +20:42:38 [ 70] [ 3] [301] +20:42:38 ============================================================================ +20:42:38 + + +waiting on router queue for slot.... +20:42:38 Sending to : +20:42:38 ============================================================================ +20:42:38 ============================================================================ +20:42:38 Slot Id : <310> +20:42:38 Transaction Type : RESPONSE +20:42:38 Received From : +20:42:38 ============================================================================ +20:42:38 FNo. Len. Field Value +20:42:38 ============================================================================ +20:42:38 [ 1] [ 4] [0810] +20:42:38 [ 7] [ 10] [0320014146] +20:42:38 [ 11] [ 6] [158281] +20:42:38 [ 39] [ 2] [00] +20:42:38 [ 70] [ 3] [301] +20:42:38 ============================================================================ +20:42:38 Calculate Source COMM Id = 2 +20:42:38 ============================================================================ +20:42:38 + + +waiting on router queue for slot.... +20:42:39 ============================================================================ +20:42:39 Slot Id : <316> +20:42:39 Transaction Type : RESPONSE +20:42:39 Received From : +20:42:39 ============================================================================ +20:42:39 FNo. Len. Field Value +20:42:39 ============================================================================ +20:42:39 [ 1] [ 4] [0210] +20:42:39 [ 2] [ 16] [6688990040050211] +20:42:39 [ 3] [ 6] [010000] +20:42:39 [ 4] [ 12] [000010000000] +20:42:39 [ 11] [ 6] [843694] +20:42:39 [ 12] [ 6] [204233] +20:42:39 [ 15] [ 4] [0320] +20:42:39 [ 18] [ 4] [6011] +20:42:39 [ 32] [ 6] [621354] +20:42:39 [ 35] [ 37] [6688990040050211=97121261349280000000] +20:42:39 [ 37] [ 12] [507904229654] +20:42:39 [ 38] [ 6] [473825] +20:42:39 [ 39] [ 2] [00] +20:42:39 [ 41] [ 8] [05004600] +20:42:39 [ 49] [ 3] [418] +20:42:39 [ 54] [ 20] [0002418C000033103396] +20:42:39 ============================================================================ +20:42:39 Calculate Source COMM Id = 0 +20:42:39 ============================================================================ +20:42:39 + + +waiting on router queue for slot.... +20:42:44 ============================================================================ +20:42:44 Slot Id : <317> +20:42:44 Transaction Type : REQUEST +20:42:44 Received From : +20:42:44 ============================================================================ +20:42:44 FNo. Len. Field Value +20:42:44 ============================================================================ +20:42:44 [ 1] [ 4] [0800] +20:42:44 [ 2] [ 5] [02531] +20:42:44 [ 3] [ 6] [579208] +20:42:44 [ 7] [ 10] [0320134244] +20:42:44 [ 11] [ 6] [807614] +20:42:44 [ 15] [ 10] [0320134244] +20:42:44 [ 37] [ 11] [57920807614] +20:42:44 [ 70] [ 3] [001] +20:42:44 ============================================================================ +20:42:44 + + +waiting on router queue for slot.... +20:42:44 ============================================================================ +20:42:44 Slot Id : <317> +20:42:44 Transaction Type : RESPONSE +20:42:44 Received From : +20:42:44 ============================================================================ +20:42:44 FNo. Len. Field Value +20:42:44 ============================================================================ +20:42:44 [ 1] [ 4] [0810] +20:42:44 [ 7] [ 10] [0320134244] +20:42:44 [ 11] [ 6] [807614] +20:42:44 [ 15] [ 4] [0320] +20:42:44 [ 37] [ 12] [57920807614] +20:42:44 [ 39] [ 2] [00] +20:42:44 [ 70] [ 3] [001] +20:42:44 ============================================================================ +20:42:44 Sending to : +20:42:44 ============================================================================ +20:42:44 + + +waiting on router queue for slot.... +20:42:46 ============================================================================ +20:42:46 Slot Id : <325> +20:42:46 Transaction Type : REQUEST +20:42:46 Received From : +20:42:46 ============================================================================ +20:42:46 FNo. Len. Field Value +20:42:46 ============================================================================ +20:42:46 [ 1] [ 4] [0800] +20:42:46 [ 7] [ 10] [0321035435] +20:42:46 [ 11] [ 6] [205435] +20:42:46 [ 37] [ 12] [57920205435] +20:42:46 [ 70] [ 3] [301] +20:42:46 ============================================================================ +20:42:46 + + +waiting on router queue for slot.... +20:42:46 Sending to : +20:42:46 ============================================================================ +20:42:46 ============================================================================ +20:42:46 Slot Id : <325> +20:42:46 Transaction Type : RESPONSE +20:42:46 Received From : +20:42:46 ============================================================================ +20:42:46 FNo. Len. Field Value +20:42:46 ============================================================================ +20:42:46 [ 1] [ 4] [0810] +20:42:46 [ 7] [ 10] [0321035435] +20:42:46 [ 11] [ 6] [205435] +20:42:46 [ 37] [ 12] [579202054350] +20:42:46 [ 39] [ 2] [00] +20:42:46 [ 70] [ 3] [810] +20:42:46 ============================================================================ +20:42:46 Calculate Source COMM Id = 6 +20:42:46 ============================================================================ +20:42:46 + + +waiting on router queue for slot.... +20:42:50 ============================================================================ +20:42:50 Slot Id : <318> +20:42:50 Transaction Type : REQUEST +20:42:50 Received From : +20:42:50 ============================================================================ +20:42:50 FNo. Len. Field Value +20:42:50 ============================================================================ +20:42:50 [ 1] [ 4] [0800] +20:42:50 [ 7] [ 10] [0320014157] +20:42:50 [ 11] [ 6] [158282] +20:42:50 [ 70] [ 3] [301] +20:42:50 ============================================================================ +20:42:50 + + +waiting on router queue for slot.... +20:42:50 Sending to : +20:42:50 ============================================================================ +20:42:50 ============================================================================ +20:42:50 Slot Id : <318> +20:42:50 Transaction Type : RESPONSE +20:42:50 Received From : +20:42:50 ============================================================================ +20:42:50 FNo. Len. Field Value +20:42:50 ============================================================================ +20:42:50 [ 1] [ 4] [0810] +20:42:50 [ 7] [ 10] [0320014157] +20:42:50 [ 11] [ 6] [158282] +20:42:50 [ 39] [ 2] [00] +20:42:50 [ 70] [ 3] [301] +20:42:50 ============================================================================ +20:42:50 Calculate Source COMM Id = 2 +20:42:50 ============================================================================ +20:42:50 + + +waiting on router queue for slot.... +20:43:06 ============================================================================ +20:43:06 Slot Id : <322> +20:43:06 Transaction Type : REQUEST +20:43:06 Received From : +20:43:06 ============================================================================ +20:43:06 FNo. Len. Field Value +20:43:06 ============================================================================ +20:43:06 [ 1] [ 4] [0800] +20:43:06 [ 7] [ 10] [0320014215] +20:43:06 [ 11] [ 6] [158283] +20:43:06 [ 70] [ 3] [301] +20:43:06 ============================================================================ +20:43:06 + + +waiting on router queue for slot.... +20:43:06 Sending to : +20:43:06 ============================================================================ +20:43:06 ============================================================================ +20:43:06 Slot Id : <322> +20:43:06 Transaction Type : RESPONSE +20:43:06 Received From : +20:43:06 ============================================================================ +20:43:06 FNo. Len. Field Value +20:43:06 ============================================================================ +20:43:06 [ 1] [ 4] [0810] +20:43:06 [ 7] [ 10] [0320014215] +20:43:06 [ 11] [ 6] [158283] +20:43:06 [ 39] [ 2] [00] +20:43:06 [ 70] [ 3] [301] +20:43:06 ============================================================================ +20:43:06 Calculate Source COMM Id = 2 +20:43:06 ============================================================================ +20:43:06 + + +waiting on router queue for slot.... +20:43:21 ============================================================================ +20:43:21 Slot Id : <315> +20:43:21 Transaction Type : REQUEST +20:43:21 Received From : +20:43:21 ============================================================================ +20:43:21 FNo. Len. Field Value +20:43:21 ============================================================================ +20:43:21 [ 1] [ 4] [0200] +20:43:21 [ 2] [ 16] [6213548000158111] +20:43:21 [ 3] [ 6] [010000] +20:43:21 [ 4] [ 12] [000010000000] +20:43:21 [ 7] [ 10] [0320204112] +20:43:21 [ 11] [ 6] [957338] +20:43:21 [ 12] [ 6] [204112] +20:43:21 [ 13] [ 4] [0320] +20:43:21 [ 15] [ 4] [0320] +20:43:21 [ 18] [ 4] [6011] +20:43:21 [ 19] [ 3] [418] +20:43:21 [ 22] [ 3] [021] +20:43:21 [ 25] [ 2] [01] +20:43:21 [ 28] [ 9] [D00002000] +20:43:21 [ 32] [ 6] [668899] +20:43:21 [ 35] [ 32] [6213548000158111=131112015811078] +20:43:21 [ 37] [ 12] [507902209981] +20:43:21 [ 41] [ 8] [03006009] +20:43:21 [ 42] [ 15] [APT ] +20:43:21 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +20:43:21 [ 49] [ 3] [418] +20:43:21 [ 52] [ 16] [594CCA75FFDFC3DC] +20:43:21 ============================================================================ +20:43:21 + + +waiting on router queue for slot.... +20:43:21 Sending to : +20:43:21 ============================================================================ +20:43:21 Sending to : +20:43:21 ============================================================================ +20:43:21 ============================================================================ +20:43:21 Slot Id : <315> +20:43:21 Transaction Type : REQUEST +20:43:21 Received From : +20:43:21 ============================================================================ +20:43:21 FNo. Len. Field Value +20:43:21 ============================================================================ +20:43:21 [ 1] [ 4] [0200] +20:43:21 [ 2] [ 16] [6213548000158111] +20:43:21 [ 3] [ 6] [010000] +20:43:21 [ 4] [ 12] [000010000000] +20:43:21 [ 7] [ 10] [0320204112] +20:43:21 [ 11] [ 6] [957338] +20:43:21 [ 12] [ 6] [204112] +20:43:21 [ 13] [ 4] [0320] +20:43:21 [ 15] [ 4] [0320] +20:43:21 [ 18] [ 4] [6011] +20:43:21 [ 19] [ 3] [418] +20:43:21 [ 22] [ 3] [021] +20:43:21 [ 25] [ 2] [01] +20:43:21 [ 28] [ 9] [D00002000] +20:43:21 [ 32] [ 6] [668899] +20:43:21 [ 35] [ 32] [6213548000158111=131112015811078] +20:43:21 [ 37] [ 12] [507902209981] +20:43:21 [ 41] [ 8] [03006009] +20:43:21 [ 42] [ 15] [APT ] +20:43:21 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +20:43:21 [ 49] [ 3] [418] +20:43:21 [ 52] [ 16] [594CCA75FFDFC3DC] +20:43:21 ============================================================================ +20:43:21 + + +waiting on router queue for slot.... +20:43:21 Sending to : +20:43:21 ============================================================================ +20:43:21 ============================================================================ +20:43:21 Slot Id : <315> +20:43:21 Transaction Type : REQUEST +20:43:21 Received From : +20:43:21 ============================================================================ +20:43:21 FNo. Len. Field Value +20:43:21 ============================================================================ +20:43:21 [ 1] [ 4] [0200] +20:43:21 [ 2] [ 16] [6213548000158111] +20:43:21 [ 3] [ 6] [010000] +20:43:21 [ 4] [ 12] [000010000000] +20:43:21 [ 7] [ 10] [0320204112] +20:43:21 [ 11] [ 6] [957338] +20:43:21 [ 12] [ 6] [204112] +20:43:21 [ 13] [ 4] [0320] +20:43:21 [ 15] [ 4] [0320] +20:43:21 [ 18] [ 4] [6011] +20:43:21 [ 19] [ 3] [418] +20:43:21 [ 22] [ 3] [021] +20:43:21 [ 25] [ 2] [01] +20:43:21 [ 28] [ 9] [D00002000] +20:43:21 [ 32] [ 6] [668899] +20:43:21 [ 35] [ 32] [6213548000158111=131112015811078] +20:43:21 [ 37] [ 12] [507902209981] +20:43:21 [ 41] [ 8] [03006009] +20:43:21 [ 42] [ 15] [APT ] +20:43:21 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +20:43:21 [ 49] [ 3] [418] +20:43:21 [ 52] [ 16] [D367C671A42F4008] +20:43:21 ============================================================================ +20:43:21 + + +waiting on router queue for slot.... +20:43:21 Sending to : <0> +20:43:21 ============================================================================ +20:43:22 ============================================================================ +20:43:22 Slot Id : <315> +20:43:22 Transaction Type : RESPONSE +20:43:22 Received From : +20:43:22 ============================================================================ +20:43:22 FNo. Len. Field Value +20:43:22 ============================================================================ +20:43:22 [ 1] [ 4] [0210] +20:43:22 [ 2] [ 16] [6213548000158111] +20:43:22 [ 3] [ 6] [010000] +20:43:22 [ 4] [ 12] [000010000000] +20:43:22 [ 7] [ 10] [0320204112] +20:43:22 [ 11] [ 6] [957338] +20:43:22 [ 12] [ 6] [204112] +20:43:22 [ 13] [ 4] [0320] +20:43:22 [ 15] [ 4] [0320] +20:43:22 [ 18] [ 4] [6011] +20:43:22 [ 19] [ 3] [418] +20:43:22 [ 32] [ 6] [668899] +20:43:22 [ 35] [ 32] [6213548000158111=131112015811078] +20:43:22 [ 37] [ 12] [507902209981] +20:43:22 [ 38] [ 6] [957338] +20:43:22 [ 39] [ 2] [51] +20:43:22 [ 41] [ 8] [03006009] +20:43:22 [ 49] [ 3] [418] +20:43:22 [ 54] [ 40] [0001418C0000050389330002418C000005038933] +20:43:22 ============================================================================ +20:43:22 Sending to : +20:43:22 ============================================================================ +20:43:22 + + +waiting on router queue for slot.... +20:43:23 ============================================================================ +20:43:23 Slot Id : <315> +20:43:23 Transaction Type : RESPONSE +20:43:23 Received From : +20:43:23 ============================================================================ +20:43:23 FNo. Len. Field Value +20:43:23 ============================================================================ +20:43:23 [ 1] [ 4] [0210] +20:43:23 [ 2] [ 16] [6213548000158111] +20:43:23 [ 3] [ 6] [010000] +20:43:23 [ 4] [ 12] [000010000000] +20:43:23 [ 7] [ 10] [0320204112] +20:43:23 [ 11] [ 6] [957338] +20:43:23 [ 12] [ 6] [204112] +20:43:23 [ 13] [ 4] [0320] +20:43:23 [ 15] [ 4] [0320] +20:43:23 [ 18] [ 4] [6011] +20:43:23 [ 19] [ 3] [418] +20:43:23 [ 32] [ 6] [668899] +20:43:23 [ 35] [ 32] [6213548000158111=131112015811078] +20:43:23 [ 37] [ 12] [507902209981] +20:43:23 [ 38] [ 6] [957338] +20:43:23 [ 39] [ 2] [51] +20:43:23 [ 41] [ 8] [03006009] +20:43:23 [ 49] [ 3] [418] +20:43:23 [ 54] [ 40] [0001418C0000050389330002418C000005038933] +20:43:23 ============================================================================ +20:43:23 Calculate Source COMM Id = 4 +20:43:23 ============================================================================ +20:43:23 + + +waiting on router queue for slot.... +20:43:24 ============================================================================ +20:43:24 Slot Id : <297> +20:43:24 Transaction Type : REQUEST +20:43:24 Received From : +20:43:24 ============================================================================ +20:43:24 FNo. Len. Field Value +20:43:24 ============================================================================ +20:43:24 [ 1] [ 4] [0800] +20:43:24 [ 7] [ 10] [0320014230] +20:43:24 [ 11] [ 6] [158284] +20:43:24 [ 70] [ 3] [301] +20:43:24 ============================================================================ +20:43:24 + + +waiting on router queue for slot.... +20:43:24 Sending to : +20:43:24 ============================================================================ +20:43:24 ============================================================================ +20:43:24 Slot Id : <297> +20:43:24 Transaction Type : RESPONSE +20:43:24 Received From : +20:43:24 ============================================================================ +20:43:24 FNo. Len. Field Value +20:43:24 ============================================================================ +20:43:24 [ 1] [ 4] [0810] +20:43:24 [ 7] [ 10] [0320014230] +20:43:24 [ 11] [ 6] [158284] +20:43:24 [ 39] [ 2] [00] +20:43:24 [ 70] [ 3] [301] +20:43:24 ============================================================================ +20:43:24 Calculate Source COMM Id = 2 +20:43:24 ============================================================================ +20:43:24 + + +waiting on router queue for slot.... +20:43:33 ============================================================================ +20:43:33 Slot Id : <289> +20:43:33 Transaction Type : REQUEST +20:43:33 Received From : +20:43:33 ============================================================================ +20:43:33 FNo. Len. Field Value +20:43:33 ============================================================================ +20:43:33 [ 1] [ 4] [0200] +20:43:33 [ 2] [ 16] [6213545000947683] +20:43:33 [ 3] [ 6] [011000] +20:43:33 [ 4] [ 12] [000005000000] +20:43:33 [ 7] [ 10] [0320134240] +20:43:33 [ 11] [ 6] [271622] +20:43:33 [ 12] [ 6] [204240] +20:43:33 [ 13] [ 4] [0320] +20:43:33 [ 14] [ 4] [4912] +20:43:33 [ 15] [ 4] [0320] +20:43:33 [ 18] [ 4] [6011] +20:43:33 [ 19] [ 3] [418] +20:43:33 [ 22] [ 3] [021] +20:43:33 [ 25] [ 2] [01] +20:43:33 [ 28] [ 9] [D00002000] +20:43:33 [ 32] [ 6] [180893] +20:43:33 [ 35] [ 32] [6213545000947683=491212014768242] +20:43:33 [ 37] [ 12] [507913271622] +20:43:33 [ 41] [ 8] [0466PSLB] +20:43:33 [ 42] [ 15] [999999 ] +20:43:33 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:43:33 [ 49] [ 3] [418] +20:43:33 [ 52] [ 16] [298B48315B3C9419] +20:43:33 ============================================================================ +20:43:33 + + +waiting on router queue for slot.... +20:43:33 Sending to : +20:43:33 ============================================================================ +20:43:33 Sending to : +20:43:33 ============================================================================ +20:43:33 ============================================================================ +20:43:33 Slot Id : <289> +20:43:33 Transaction Type : REQUEST +20:43:33 Received From : +20:43:33 ============================================================================ +20:43:33 FNo. Len. Field Value +20:43:33 ============================================================================ +20:43:33 [ 1] [ 4] [0200] +20:43:33 [ 2] [ 16] [6213545000947683] +20:43:33 [ 3] [ 6] [011000] +20:43:33 [ 4] [ 12] [000005000000] +20:43:33 [ 7] [ 10] [0320134240] +20:43:33 [ 11] [ 6] [271622] +20:43:33 [ 12] [ 6] [204240] +20:43:33 [ 13] [ 4] [0320] +20:43:33 [ 14] [ 4] [4912] +20:43:33 [ 15] [ 4] [0320] +20:43:33 [ 18] [ 4] [6011] +20:43:33 [ 19] [ 3] [418] +20:43:33 [ 22] [ 3] [021] +20:43:33 [ 25] [ 2] [01] +20:43:33 [ 28] [ 9] [D00002000] +20:43:33 [ 32] [ 6] [180893] +20:43:33 [ 35] [ 32] [6213545000947683=491212014768242] +20:43:33 [ 37] [ 12] [507913271622] +20:43:33 [ 41] [ 8] [0466PSLB] +20:43:33 [ 42] [ 15] [999999 ] +20:43:33 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:43:33 [ 49] [ 3] [418] +20:43:33 [ 52] [ 16] [298B48315B3C9419] +20:43:33 ============================================================================ +20:43:33 + + +waiting on router queue for slot.... +20:43:33 Sending to : +20:43:33 ============================================================================ +20:43:33 ============================================================================ +20:43:33 Slot Id : <289> +20:43:33 Transaction Type : REQUEST +20:43:33 Received From : +20:43:33 ============================================================================ +20:43:33 FNo. Len. Field Value +20:43:33 ============================================================================ +20:43:33 [ 1] [ 4] [0200] +20:43:33 [ 2] [ 16] [6213545000947683] +20:43:33 [ 3] [ 6] [011000] +20:43:33 [ 4] [ 12] [000005000000] +20:43:33 [ 7] [ 10] [0320134240] +20:43:33 [ 11] [ 6] [271622] +20:43:33 [ 12] [ 6] [204240] +20:43:33 [ 13] [ 4] [0320] +20:43:33 [ 14] [ 4] [4912] +20:43:33 [ 15] [ 4] [0320] +20:43:33 [ 18] [ 4] [6011] +20:43:33 [ 19] [ 3] [418] +20:43:33 [ 22] [ 3] [021] +20:43:33 [ 25] [ 2] [01] +20:43:33 [ 28] [ 9] [D00002000] +20:43:33 [ 32] [ 6] [180893] +20:43:33 [ 35] [ 32] [6213545000947683=491212014768242] +20:43:33 [ 37] [ 12] [507913271622] +20:43:33 [ 41] [ 8] [0466PSLB] +20:43:33 [ 42] [ 15] [999999 ] +20:43:33 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:43:33 [ 49] [ 3] [418] +20:43:33 [ 52] [ 16] [A0DD8DCAEEE20CFA] +20:43:33 ============================================================================ +20:43:33 + + +waiting on router queue for slot.... +20:43:33 Sending to : <0> +20:43:33 ============================================================================ +20:43:34 ============================================================================ +20:43:34 Slot Id : <289> +20:43:34 Transaction Type : RESPONSE +20:43:34 Received From : +20:43:34 ============================================================================ +20:43:34 FNo. Len. Field Value +20:43:34 ============================================================================ +20:43:34 [ 1] [ 4] [0210] +20:43:34 [ 2] [ 16] [6213545000947683] +20:43:34 [ 3] [ 6] [011000] +20:43:34 [ 4] [ 12] [000005000000] +20:43:34 [ 7] [ 10] [0320134240] +20:43:34 [ 11] [ 6] [271622] +20:43:34 [ 12] [ 6] [204240] +20:43:34 [ 13] [ 4] [0320] +20:43:34 [ 15] [ 4] [0320] +20:43:34 [ 18] [ 4] [6011] +20:43:34 [ 19] [ 3] [418] +20:43:34 [ 32] [ 6] [180893] +20:43:34 [ 35] [ 32] [6213545000947683=491212014768242] +20:43:34 [ 37] [ 12] [507913271622] +20:43:34 [ 38] [ 6] [985059] +20:43:34 [ 39] [ 2] [00] +20:43:34 [ 41] [ 8] [0466PSLB] +20:43:34 [ 49] [ 3] [418] +20:43:34 [ 54] [ 40] [1001418C0000104036951002418C000005203695] +20:43:34 ============================================================================ +20:43:34 Sending to : +20:43:34 ============================================================================ +20:43:34 + + +waiting on router queue for slot.... +20:43:35 ============================================================================ +20:43:35 Slot Id : <289> +20:43:35 Transaction Type : RESPONSE +20:43:35 Received From : +20:43:35 ============================================================================ +20:43:35 FNo. Len. Field Value +20:43:35 ============================================================================ +20:43:35 [ 1] [ 4] [0210] +20:43:35 [ 2] [ 16] [6213545000947683] +20:43:35 [ 3] [ 6] [011000] +20:43:35 [ 4] [ 12] [000005000000] +20:43:35 [ 7] [ 10] [0320134240] +20:43:35 [ 11] [ 6] [271622] +20:43:35 [ 12] [ 6] [204240] +20:43:35 [ 13] [ 4] [0320] +20:43:35 [ 15] [ 4] [0320] +20:43:35 [ 18] [ 4] [6011] +20:43:35 [ 19] [ 3] [418] +20:43:35 [ 32] [ 6] [180893] +20:43:35 [ 35] [ 32] [6213545000947683=491212014768242] +20:43:35 [ 37] [ 12] [507913271622] +20:43:35 [ 38] [ 6] [985059] +20:43:35 [ 39] [ 2] [00] +20:43:35 [ 41] [ 8] [0466PSLB] +20:43:35 [ 49] [ 3] [418] +20:43:35 [ 54] [ 40] [1001418C0000104036951002418C000005203695] +20:43:35 ============================================================================ +20:43:35 Calculate Source COMM Id = 2 +20:43:35 ============================================================================ +20:43:35 + + +waiting on router queue for slot.... +20:43:46 ============================================================================ +20:43:46 Slot Id : <304> +20:43:46 Transaction Type : REQUEST +20:43:46 Received From : +20:43:46 ============================================================================ +20:43:46 FNo. Len. Field Value +20:43:46 ============================================================================ +20:43:46 [ 1] [ 4] [0800] +20:43:46 [ 2] [ 5] [02531] +20:43:46 [ 3] [ 6] [579208] +20:43:46 [ 7] [ 10] [0320134346] +20:43:46 [ 11] [ 6] [807615] +20:43:46 [ 15] [ 10] [0320134346] +20:43:46 [ 37] [ 11] [57920807615] +20:43:46 [ 70] [ 3] [001] +20:43:46 ============================================================================ +20:43:46 + + +waiting on router queue for slot.... +20:43:46 ============================================================================ +20:43:46 Slot Id : <304> +20:43:46 Transaction Type : RESPONSE +20:43:46 Received From : +20:43:46 ============================================================================ +20:43:46 FNo. Len. Field Value +20:43:46 ============================================================================ +20:43:46 [ 1] [ 4] [0810] +20:43:46 [ 7] [ 10] [0320134346] +20:43:46 [ 11] [ 6] [807615] +20:43:46 [ 15] [ 4] [0320] +20:43:46 [ 37] [ 12] [57920807615] +20:43:46 [ 39] [ 2] [00] +20:43:46 [ 70] [ 3] [001] +20:43:46 ============================================================================ +20:43:46 Sending to : +20:43:46 ============================================================================ +20:43:46 + + +waiting on router queue for slot.... +20:43:49 ============================================================================ +20:43:49 Slot Id : <326> +20:43:49 Transaction Type : REQUEST +20:43:49 Received From : +20:43:49 ============================================================================ +20:43:49 FNo. Len. Field Value +20:43:49 ============================================================================ +20:43:49 [ 1] [ 4] [0800] +20:43:49 [ 7] [ 10] [0320014257] +20:43:49 [ 11] [ 6] [158285] +20:43:49 [ 70] [ 3] [301] +20:43:49 ============================================================================ +20:43:49 + + +waiting on router queue for slot.... +20:43:49 Sending to : +20:43:49 ============================================================================ +20:43:49 ============================================================================ +20:43:49 Slot Id : <326> +20:43:49 Transaction Type : RESPONSE +20:43:49 Received From : +20:43:49 ============================================================================ +20:43:49 FNo. Len. Field Value +20:43:49 ============================================================================ +20:43:49 [ 1] [ 4] [0810] +20:43:49 [ 7] [ 10] [0320014257] +20:43:49 [ 11] [ 6] [158285] +20:43:49 [ 39] [ 2] [00] +20:43:49 [ 70] [ 3] [301] +20:43:49 ============================================================================ +20:43:49 Calculate Source COMM Id = 2 +20:43:49 ============================================================================ +20:43:49 + + +waiting on router queue for slot.... +20:43:51 ============================================================================ +20:43:51 Slot Id : <291> +20:43:51 Transaction Type : REQUEST +20:43:51 Received From : +20:43:51 ============================================================================ +20:43:51 FNo. Len. Field Value +20:43:51 ============================================================================ +20:43:51 [ 1] [ 4] [0800] +20:43:51 [ 7] [ 10] [0321035541] +20:43:51 [ 11] [ 6] [205541] +20:43:51 [ 37] [ 12] [57920205541] +20:43:51 [ 70] [ 3] [301] +20:43:51 ============================================================================ +20:43:51 + + +waiting on router queue for slot.... +20:43:51 Sending to : +20:43:51 ============================================================================ +20:43:51 ============================================================================ +20:43:51 Slot Id : <291> +20:43:51 Transaction Type : RESPONSE +20:43:51 Received From : +20:43:51 ============================================================================ +20:43:51 FNo. Len. Field Value +20:43:51 ============================================================================ +20:43:51 [ 1] [ 4] [0810] +20:43:51 [ 7] [ 10] [0321035541] +20:43:51 [ 11] [ 6] [205541] +20:43:51 [ 37] [ 12] [579202055410] +20:43:51 [ 39] [ 2] [00] +20:43:51 [ 70] [ 3] [810] +20:43:51 ============================================================================ +20:43:51 Calculate Source COMM Id = 6 +20:43:51 ============================================================================ +20:43:51 + + +waiting on router queue for slot.... +20:43:59 ============================================================================ +20:43:59 Slot Id : <327> +20:43:59 Transaction Type : REQUEST +20:43:59 Received From : +20:43:59 ============================================================================ +20:43:59 FNo. Len. Field Value +20:43:59 ============================================================================ +20:43:59 [ 1] [ 4] [0800] +20:43:59 [ 7] [ 10] [0320014307] +20:43:59 [ 11] [ 6] [158286] +20:43:59 [ 70] [ 3] [301] +20:43:59 ============================================================================ +20:43:59 + + +waiting on router queue for slot.... +20:43:59 Sending to : +20:43:59 ============================================================================ +20:43:59 ============================================================================ +20:43:59 Slot Id : <327> +20:43:59 Transaction Type : RESPONSE +20:43:59 Received From : +20:43:59 ============================================================================ +20:43:59 FNo. Len. Field Value +20:43:59 ============================================================================ +20:43:59 [ 1] [ 4] [0810] +20:43:59 [ 7] [ 10] [0320014307] +20:43:59 [ 11] [ 6] [158286] +20:43:59 [ 39] [ 2] [00] +20:43:59 [ 70] [ 3] [301] +20:43:59 ============================================================================ +20:43:59 Calculate Source COMM Id = 2 +20:43:59 ============================================================================ +20:43:59 + + +waiting on router queue for slot.... +20:44:10 ============================================================================ +20:44:10 Slot Id : <285> +20:44:10 Transaction Type : REQUEST +20:44:10 Received From : +20:44:10 ============================================================================ +20:44:10 FNo. Len. Field Value +20:44:10 ============================================================================ +20:44:10 [ 1] [ 4] [0800] +20:44:10 [ 7] [ 10] [0320014318] +20:44:10 [ 11] [ 6] [158287] +20:44:10 [ 70] [ 3] [301] +20:44:10 ============================================================================ +20:44:10 + + +waiting on router queue for slot.... +20:44:10 Sending to : +20:44:10 ============================================================================ +20:44:10 ============================================================================ +20:44:10 Slot Id : <285> +20:44:10 Transaction Type : RESPONSE +20:44:10 Received From : +20:44:10 ============================================================================ +20:44:10 FNo. Len. Field Value +20:44:10 ============================================================================ +20:44:10 [ 1] [ 4] [0810] +20:44:10 [ 7] [ 10] [0320014318] +20:44:10 [ 11] [ 6] [158287] +20:44:10 [ 39] [ 2] [00] +20:44:10 [ 70] [ 3] [301] +20:44:10 ============================================================================ +20:44:10 Calculate Source COMM Id = 2 +20:44:10 ============================================================================ +20:44:10 + + +waiting on router queue for slot.... +20:44:20 ============================================================================ +20:44:20 Slot Id : <331> +20:44:20 Transaction Type : REQUEST +20:44:20 Received From : +20:44:20 ============================================================================ +20:44:20 FNo. Len. Field Value +20:44:20 ============================================================================ +20:44:20 [ 1] [ 4] [0800] +20:44:20 [ 7] [ 10] [0320014329] +20:44:20 [ 11] [ 6] [158288] +20:44:20 [ 70] [ 3] [301] +20:44:20 ============================================================================ +20:44:20 + + +waiting on router queue for slot.... +20:44:20 Sending to : +20:44:20 ============================================================================ +20:44:20 ============================================================================ +20:44:20 Slot Id : <331> +20:44:20 Transaction Type : RESPONSE +20:44:20 Received From : +20:44:20 ============================================================================ +20:44:20 FNo. Len. Field Value +20:44:20 ============================================================================ +20:44:20 [ 1] [ 4] [0810] +20:44:20 [ 7] [ 10] [0320014329] +20:44:20 [ 11] [ 6] [158288] +20:44:20 [ 39] [ 2] [00] +20:44:20 [ 70] [ 3] [301] +20:44:20 ============================================================================ +20:44:20 Calculate Source COMM Id = 2 +20:44:20 ============================================================================ +20:44:20 + + +waiting on router queue for slot.... +20:44:32 ============================================================================ +20:44:32 Slot Id : <301> +20:44:32 Transaction Type : REQUEST +20:44:32 Received From : +20:44:32 ============================================================================ +20:44:32 FNo. Len. Field Value +20:44:32 ============================================================================ +20:44:32 [ 1] [ 4] [0800] +20:44:32 [ 7] [ 10] [0320014340] +20:44:32 [ 11] [ 6] [158289] +20:44:32 [ 70] [ 3] [301] +20:44:32 ============================================================================ +20:44:32 + + +waiting on router queue for slot.... +20:44:32 Sending to : +20:44:32 ============================================================================ +20:44:32 ============================================================================ +20:44:32 Slot Id : <301> +20:44:32 Transaction Type : RESPONSE +20:44:32 Received From : +20:44:32 ============================================================================ +20:44:32 FNo. Len. Field Value +20:44:32 ============================================================================ +20:44:32 [ 1] [ 4] [0810] +20:44:32 [ 7] [ 10] [0320014340] +20:44:32 [ 11] [ 6] [158289] +20:44:32 [ 39] [ 2] [00] +20:44:32 [ 70] [ 3] [301] +20:44:32 ============================================================================ +20:44:32 Calculate Source COMM Id = 2 +20:44:32 ============================================================================ +20:44:32 + + +waiting on router queue for slot.... +20:44:42 ============================================================================ +20:44:42 Slot Id : <305> +20:44:42 Transaction Type : REQUEST +20:44:42 Received From : +20:44:42 ============================================================================ +20:44:42 FNo. Len. Field Value +20:44:42 ============================================================================ +20:44:42 [ 1] [ 4] [0800] +20:44:42 [ 7] [ 10] [0320014351] +20:44:42 [ 11] [ 6] [158290] +20:44:42 [ 70] [ 3] [301] +20:44:42 ============================================================================ +20:44:42 + + +waiting on router queue for slot.... +20:44:42 Sending to : +20:44:42 ============================================================================ +20:44:42 ============================================================================ +20:44:42 Slot Id : <305> +20:44:42 Transaction Type : RESPONSE +20:44:42 Received From : +20:44:42 ============================================================================ +20:44:42 FNo. Len. Field Value +20:44:42 ============================================================================ +20:44:42 [ 1] [ 4] [0810] +20:44:42 [ 7] [ 10] [0320014351] +20:44:42 [ 11] [ 6] [158290] +20:44:42 [ 39] [ 2] [00] +20:44:42 [ 70] [ 3] [301] +20:44:42 ============================================================================ +20:44:42 Calculate Source COMM Id = 2 +20:44:42 ============================================================================ +20:44:42 + + +waiting on router queue for slot.... +20:44:48 ============================================================================ +20:44:48 Slot Id : <314> +20:44:48 Transaction Type : REQUEST +20:44:48 Received From : +20:44:48 ============================================================================ +20:44:48 FNo. Len. Field Value +20:44:48 ============================================================================ +20:44:48 [ 1] [ 4] [0800] +20:44:48 [ 2] [ 5] [02531] +20:44:48 [ 3] [ 6] [579208] +20:44:48 [ 7] [ 10] [0320134448] +20:44:48 [ 11] [ 6] [807616] +20:44:48 [ 15] [ 10] [0320134448] +20:44:48 [ 37] [ 11] [57920807616] +20:44:48 [ 70] [ 3] [001] +20:44:48 ============================================================================ +20:44:48 + + +waiting on router queue for slot.... +20:44:48 ============================================================================ +20:44:48 Slot Id : <314> +20:44:48 Transaction Type : RESPONSE +20:44:48 Received From : +20:44:48 ============================================================================ +20:44:48 FNo. Len. Field Value +20:44:48 ============================================================================ +20:44:48 [ 1] [ 4] [0810] +20:44:48 [ 7] [ 10] [0320134448] +20:44:48 [ 11] [ 6] [807616] +20:44:48 [ 15] [ 4] [0320] +20:44:48 [ 37] [ 12] [57920807616] +20:44:48 [ 39] [ 2] [00] +20:44:48 [ 70] [ 3] [001] +20:44:48 ============================================================================ +20:44:48 Sending to : +20:44:48 ============================================================================ +20:44:48 + + +waiting on router queue for slot.... +20:44:55 ============================================================================ +20:44:55 Slot Id : <302> +20:44:55 Transaction Type : REQUEST +20:44:55 Received From : +20:44:55 ============================================================================ +20:44:55 FNo. Len. Field Value +20:44:55 ============================================================================ +20:44:55 [ 1] [ 4] [0800] +20:44:55 [ 7] [ 10] [0320135242] +20:44:55 [ 11] [ 6] [037885] +20:44:55 [ 37] [ 12] [57920037885] +20:44:55 [ 70] [ 3] [301] +20:44:55 ============================================================================ +20:44:55 + + +waiting on router queue for slot.... +20:44:55 Sending to : +20:44:55 ============================================================================ +20:44:55 ============================================================================ +20:44:55 Slot Id : <302> +20:44:55 Transaction Type : RESPONSE +20:44:55 Received From : +20:44:55 ============================================================================ +20:44:55 FNo. Len. Field Value +20:44:55 ============================================================================ +20:44:55 [ 1] [ 4] [0810] +20:44:55 [ 7] [ 10] [0320135242] +20:44:55 [ 11] [ 6] [037885] +20:44:55 [ 37] [ 12] [579200378850] +20:44:55 [ 39] [ 2] [00] +20:44:55 [ 70] [ 3] [810] +20:44:55 ============================================================================ +20:44:55 Calculate Source COMM Id = 1 +20:44:55 ============================================================================ +20:44:55 + + +waiting on router queue for slot.... +20:44:56 ============================================================================ +20:44:56 Slot Id : <292> +20:44:56 Transaction Type : REQUEST +20:44:56 Received From : +20:44:56 ============================================================================ +20:44:56 FNo. Len. Field Value +20:44:56 ============================================================================ +20:44:56 [ 1] [ 4] [0800] +20:44:56 [ 7] [ 10] [0321035646] +20:44:56 [ 11] [ 6] [205646] +20:44:56 [ 37] [ 12] [57920205646] +20:44:56 [ 70] [ 3] [301] +20:44:56 ============================================================================ +20:44:56 + + +waiting on router queue for slot.... +20:44:56 Sending to : +20:44:56 ============================================================================ +20:44:56 ============================================================================ +20:44:56 Slot Id : <292> +20:44:56 Transaction Type : RESPONSE +20:44:56 Received From : +20:44:56 ============================================================================ +20:44:56 FNo. Len. Field Value +20:44:56 ============================================================================ +20:44:56 [ 1] [ 4] [0810] +20:44:56 [ 7] [ 10] [0321035646] +20:44:56 [ 11] [ 6] [205646] +20:44:56 [ 37] [ 12] [579202056460] +20:44:56 [ 39] [ 2] [00] +20:44:56 [ 70] [ 3] [810] +20:44:56 ============================================================================ +20:44:56 Calculate Source COMM Id = 6 +20:44:56 ============================================================================ +20:44:56 + + +waiting on router queue for slot.... +20:44:58 ============================================================================ +20:44:58 Slot Id : <335> +20:44:58 Transaction Type : REQUEST +20:44:58 Received From : +20:44:58 ============================================================================ +20:44:58 FNo. Len. Field Value +20:44:58 ============================================================================ +20:44:58 [ 1] [ 4] [0800] +20:44:58 [ 7] [ 10] [0320014407] +20:44:58 [ 11] [ 6] [158291] +20:44:58 [ 70] [ 3] [301] +20:44:58 ============================================================================ +20:44:58 + + +waiting on router queue for slot.... +20:44:58 Sending to : +20:44:58 ============================================================================ +20:44:58 ============================================================================ +20:44:58 Slot Id : <335> +20:44:58 Transaction Type : RESPONSE +20:44:58 Received From : +20:44:58 ============================================================================ +20:44:58 FNo. Len. Field Value +20:44:58 ============================================================================ +20:44:58 [ 1] [ 4] [0810] +20:44:58 [ 7] [ 10] [0320014407] +20:44:58 [ 11] [ 6] [158291] +20:44:58 [ 39] [ 2] [00] +20:44:58 [ 70] [ 3] [301] +20:44:58 ============================================================================ +20:44:58 Calculate Source COMM Id = 2 +20:44:58 ============================================================================ +20:44:58 + + +waiting on router queue for slot.... +20:45:14 ============================================================================ +20:45:14 Slot Id : <333> +20:45:14 Transaction Type : REQUEST +20:45:14 Received From : +20:45:14 ============================================================================ +20:45:14 FNo. Len. Field Value +20:45:14 ============================================================================ +20:45:14 [ 1] [ 4] [0800] +20:45:14 [ 7] [ 10] [0320014422] +20:45:14 [ 11] [ 6] [158292] +20:45:14 [ 70] [ 3] [301] +20:45:14 ============================================================================ +20:45:14 + + +waiting on router queue for slot.... +20:45:14 Sending to : +20:45:14 ============================================================================ +20:45:14 ============================================================================ +20:45:14 Slot Id : <333> +20:45:14 Transaction Type : RESPONSE +20:45:14 Received From : +20:45:14 ============================================================================ +20:45:14 FNo. Len. Field Value +20:45:14 ============================================================================ +20:45:14 [ 1] [ 4] [0810] +20:45:14 [ 7] [ 10] [0320014422] +20:45:14 [ 11] [ 6] [158292] +20:45:14 [ 39] [ 2] [00] +20:45:14 [ 70] [ 3] [301] +20:45:14 ============================================================================ +20:45:14 Calculate Source COMM Id = 2 +20:45:14 ============================================================================ +20:45:14 + + +waiting on router queue for slot.... +20:45:18 ============================================================================ +20:45:18 Slot Id : <262> +20:45:18 Transaction Type : REQUEST +20:45:18 Received From : +20:45:18 ============================================================================ +20:45:18 FNo. Len. Field Value +20:45:18 ============================================================================ +20:45:18 [ 1] [ 4] [0800] +20:45:18 [ 7] [ 10] [0320204506] +20:45:18 [ 11] [ 6] [066383] +20:45:18 [ 37] [ 12] [507920066383] +20:45:18 [ 70] [ 3] [ ] +20:45:18 ============================================================================ +20:45:18 + + +waiting on router queue for slot.... +20:45:18 Sending to : +20:45:18 ============================================================================ +20:45:18 ============================================================================ +20:45:18 Slot Id : <262> +20:45:18 Transaction Type : RESPONSE +20:45:18 Received From : +20:45:18 ============================================================================ +20:45:18 FNo. Len. Field Value +20:45:18 ============================================================================ +20:45:18 [ 1] [ 4] [0810] +20:45:18 [ 7] [ 10] [0320204506] +20:45:18 [ 11] [ 6] [066383] +20:45:18 [ 37] [ 12] [507920066383] +20:45:18 [ 39] [ 2] [91] +20:45:18 [ 70] [ 3] [ ] +20:45:18 ============================================================================ +20:45:18 Calculate Source COMM Id = 3 +20:45:18 ============================================================================ +20:45:18 + + +waiting on router queue for slot.... +20:45:24 ============================================================================ +20:45:24 Slot Id : <334> +20:45:24 Transaction Type : REQUEST +20:45:24 Received From : +20:45:24 ============================================================================ +20:45:24 FNo. Len. Field Value +20:45:24 ============================================================================ +20:45:24 [ 1] [ 4] [0800] +20:45:24 [ 7] [ 10] [0320014433] +20:45:24 [ 11] [ 6] [158293] +20:45:24 [ 70] [ 3] [301] +20:45:24 ============================================================================ +20:45:24 + + +waiting on router queue for slot.... +20:45:24 Sending to : +20:45:24 ============================================================================ +20:45:24 ============================================================================ +20:45:24 Slot Id : <334> +20:45:24 Transaction Type : RESPONSE +20:45:24 Received From : +20:45:24 ============================================================================ +20:45:24 FNo. Len. Field Value +20:45:24 ============================================================================ +20:45:24 [ 1] [ 4] [0810] +20:45:24 [ 7] [ 10] [0320014433] +20:45:24 [ 11] [ 6] [158293] +20:45:24 [ 39] [ 2] [00] +20:45:24 [ 70] [ 3] [301] +20:45:24 ============================================================================ +20:45:24 Calculate Source COMM Id = 2 +20:45:24 ============================================================================ +20:45:24 + + +waiting on router queue for slot.... +20:45:35 ============================================================================ +20:45:35 Slot Id : <336> +20:45:35 Transaction Type : REQUEST +20:45:35 Received From : +20:45:35 ============================================================================ +20:45:35 FNo. Len. Field Value +20:45:35 ============================================================================ +20:45:35 [ 1] [ 4] [0800] +20:45:35 [ 7] [ 10] [0320014444] +20:45:35 [ 11] [ 6] [158294] +20:45:35 [ 70] [ 3] [301] +20:45:35 ============================================================================ +20:45:35 + + +waiting on router queue for slot.... +20:45:35 Sending to : +20:45:35 ============================================================================ +20:45:35 ============================================================================ +20:45:35 Slot Id : <336> +20:45:35 Transaction Type : RESPONSE +20:45:35 Received From : +20:45:35 ============================================================================ +20:45:35 FNo. Len. Field Value +20:45:35 ============================================================================ +20:45:35 [ 1] [ 4] [0810] +20:45:35 [ 7] [ 10] [0320014444] +20:45:35 [ 11] [ 6] [158294] +20:45:35 [ 39] [ 2] [00] +20:45:35 [ 70] [ 3] [301] +20:45:35 ============================================================================ +20:45:35 Calculate Source COMM Id = 2 +20:45:35 ============================================================================ +20:45:35 + + +waiting on router queue for slot.... +20:45:46 ============================================================================ +20:45:46 Slot Id : <320> +20:45:46 Transaction Type : REQUEST +20:45:46 Received From : +20:45:46 ============================================================================ +20:45:46 FNo. Len. Field Value +20:45:46 ============================================================================ +20:45:46 [ 1] [ 4] [0800] +20:45:46 [ 7] [ 10] [0320014455] +20:45:46 [ 11] [ 6] [158295] +20:45:46 [ 70] [ 3] [301] +20:45:46 ============================================================================ +20:45:46 + + +waiting on router queue for slot.... +20:45:46 Sending to : +20:45:46 ============================================================================ +20:45:46 ============================================================================ +20:45:46 Slot Id : <320> +20:45:46 Transaction Type : RESPONSE +20:45:46 Received From : +20:45:46 ============================================================================ +20:45:46 FNo. Len. Field Value +20:45:46 ============================================================================ +20:45:46 [ 1] [ 4] [0810] +20:45:46 [ 7] [ 10] [0320014455] +20:45:46 [ 11] [ 6] [158295] +20:45:46 [ 39] [ 2] [00] +20:45:46 [ 70] [ 3] [301] +20:45:46 ============================================================================ +20:45:46 Calculate Source COMM Id = 2 +20:45:46 ============================================================================ +20:45:46 + + +waiting on router queue for slot.... +20:45:50 ============================================================================ +20:45:50 Slot Id : <321> +20:45:50 Transaction Type : REQUEST +20:45:50 Received From : +20:45:50 ============================================================================ +20:45:50 FNo. Len. Field Value +20:45:50 ============================================================================ +20:45:50 [ 1] [ 4] [0800] +20:45:50 [ 2] [ 5] [02531] +20:45:50 [ 3] [ 6] [579208] +20:45:50 [ 7] [ 10] [0320134550] +20:45:50 [ 11] [ 6] [807617] +20:45:50 [ 15] [ 10] [0320134550] +20:45:50 [ 37] [ 11] [57920807617] +20:45:50 [ 70] [ 3] [001] +20:45:50 ============================================================================ +20:45:50 + + +waiting on router queue for slot.... +20:45:50 ============================================================================ +20:45:50 Slot Id : <321> +20:45:50 Transaction Type : RESPONSE +20:45:50 Received From : +20:45:50 ============================================================================ +20:45:50 FNo. Len. Field Value +20:45:50 ============================================================================ +20:45:50 [ 1] [ 4] [0810] +20:45:50 [ 7] [ 10] [0320134550] +20:45:50 [ 11] [ 6] [807617] +20:45:50 [ 15] [ 4] [0320] +20:45:50 [ 37] [ 12] [57920807617] +20:45:50 [ 39] [ 2] [00] +20:45:50 [ 70] [ 3] [001] +20:45:50 ============================================================================ +20:45:50 Sending to : +20:45:50 ============================================================================ +20:45:50 + + +waiting on router queue for slot.... +20:45:57 ============================================================================ +20:45:57 Slot Id : <323> +20:45:57 Transaction Type : REQUEST +20:45:57 Received From : +20:45:57 ============================================================================ +20:45:57 FNo. Len. Field Value +20:45:57 ============================================================================ +20:45:57 [ 1] [ 4] [0800] +20:45:57 [ 7] [ 10] [0320014506] +20:45:57 [ 11] [ 6] [158296] +20:45:57 [ 70] [ 3] [301] +20:45:57 ============================================================================ +20:45:57 + + +waiting on router queue for slot.... +20:45:57 Sending to : +20:45:57 ============================================================================ +20:45:57 ============================================================================ +20:45:57 Slot Id : <323> +20:45:57 Transaction Type : RESPONSE +20:45:57 Received From : +20:45:57 ============================================================================ +20:45:57 FNo. Len. Field Value +20:45:57 ============================================================================ +20:45:57 [ 1] [ 4] [0810] +20:45:57 [ 7] [ 10] [0320014506] +20:45:57 [ 11] [ 6] [158296] +20:45:57 [ 39] [ 2] [00] +20:45:57 [ 70] [ 3] [301] +20:45:57 ============================================================================ +20:45:57 Calculate Source COMM Id = 2 +20:45:57 ============================================================================ +20:45:57 + + +waiting on router queue for slot.... +20:46:01 ============================================================================ +20:46:01 Slot Id : <342> +20:46:01 Transaction Type : REQUEST +20:46:01 Received From : +20:46:01 ============================================================================ +20:46:01 FNo. Len. Field Value +20:46:01 ============================================================================ +20:46:01 [ 1] [ 4] [0800] +20:46:01 [ 7] [ 10] [0321035751] +20:46:01 [ 11] [ 6] [205751] +20:46:01 [ 37] [ 12] [57920205751] +20:46:01 [ 70] [ 3] [301] +20:46:01 ============================================================================ +20:46:01 + + +waiting on router queue for slot.... +20:46:01 Sending to : +20:46:01 ============================================================================ +20:46:01 ============================================================================ +20:46:01 Slot Id : <342> +20:46:01 Transaction Type : RESPONSE +20:46:01 Received From : +20:46:01 ============================================================================ +20:46:01 FNo. Len. Field Value +20:46:01 ============================================================================ +20:46:01 [ 1] [ 4] [0810] +20:46:01 [ 7] [ 10] [0321035751] +20:46:01 [ 11] [ 6] [205751] +20:46:01 [ 37] [ 12] [579202057510] +20:46:01 [ 39] [ 2] [00] +20:46:01 [ 70] [ 3] [810] +20:46:01 ============================================================================ +20:46:01 Calculate Source COMM Id = 6 +20:46:01 ============================================================================ +20:46:01 + + +waiting on router queue for slot.... +20:46:08 ============================================================================ +20:46:08 Slot Id : <341> +20:46:08 Transaction Type : REQUEST +20:46:08 Received From : +20:46:08 ============================================================================ +20:46:08 FNo. Len. Field Value +20:46:08 ============================================================================ +20:46:08 [ 1] [ 4] [0800] +20:46:08 [ 7] [ 10] [0320014516] +20:46:08 [ 11] [ 6] [158297] +20:46:08 [ 70] [ 3] [301] +20:46:08 ============================================================================ +20:46:08 + + +waiting on router queue for slot.... +20:46:08 Sending to : +20:46:08 ============================================================================ +20:46:08 ============================================================================ +20:46:08 Slot Id : <341> +20:46:08 Transaction Type : RESPONSE +20:46:08 Received From : +20:46:08 ============================================================================ +20:46:08 FNo. Len. Field Value +20:46:08 ============================================================================ +20:46:08 [ 1] [ 4] [0810] +20:46:08 [ 7] [ 10] [0320014516] +20:46:08 [ 11] [ 6] [158297] +20:46:08 [ 39] [ 2] [00] +20:46:08 [ 70] [ 3] [301] +20:46:08 ============================================================================ +20:46:08 Calculate Source COMM Id = 2 +20:46:08 ============================================================================ +20:46:08 + + +waiting on router queue for slot.... +20:46:20 ============================================================================ +20:46:20 Slot Id : <268> +20:46:20 Transaction Type : REQUEST +20:46:20 Received From : +20:46:20 ============================================================================ +20:46:20 FNo. Len. Field Value +20:46:20 ============================================================================ +20:46:20 [ 1] [ 4] [0800] +20:46:20 [ 7] [ 10] [0320014528] +20:46:20 [ 11] [ 6] [158298] +20:46:20 [ 70] [ 3] [301] +20:46:20 ============================================================================ +20:46:20 + + +waiting on router queue for slot.... +20:46:20 Sending to : +20:46:20 ============================================================================ +20:46:20 ============================================================================ +20:46:20 Slot Id : <268> +20:46:20 Transaction Type : RESPONSE +20:46:20 Received From : +20:46:20 ============================================================================ +20:46:20 FNo. Len. Field Value +20:46:20 ============================================================================ +20:46:20 [ 1] [ 4] [0810] +20:46:20 [ 7] [ 10] [0320014528] +20:46:20 [ 11] [ 6] [158298] +20:46:20 [ 39] [ 2] [00] +20:46:20 [ 70] [ 3] [301] +20:46:20 ============================================================================ +20:46:20 Calculate Source COMM Id = 2 +20:46:20 ============================================================================ +20:46:20 + + +waiting on router queue for slot.... +20:46:21 ============================================================================ +20:46:21 Slot Id : <352> +20:46:21 Transaction Type : REQUEST +20:46:21 Received From : +20:46:21 ============================================================================ +20:46:21 FNo. Len. Field Value +20:46:21 ============================================================================ +20:46:21 [ 1] [ 4] [0800] +20:46:21 [ 7] [ 10] [0320134412] +20:46:21 [ 11] [ 6] [051526] +20:46:21 [ 37] [ 12] [57920051526] +20:46:21 [ 70] [ 3] [301] +20:46:21 ============================================================================ +20:46:21 + + +waiting on router queue for slot.... +20:46:21 Sending to : +20:46:21 ============================================================================ +20:46:21 ============================================================================ +20:46:21 Slot Id : <352> +20:46:21 Transaction Type : RESPONSE +20:46:21 Received From : +20:46:21 ============================================================================ +20:46:21 FNo. Len. Field Value +20:46:21 ============================================================================ +20:46:21 [ 1] [ 4] [0810] +20:46:21 [ 7] [ 10] [0320134412] +20:46:21 [ 11] [ 6] [051526] +20:46:21 [ 37] [ 12] [579200515260] +20:46:21 [ 39] [ 2] [00] +20:46:21 [ 70] [ 3] [810] +20:46:21 ============================================================================ +20:46:21 Calculate Source COMM Id = 4 +20:46:21 ============================================================================ +20:46:21 + + +waiting on router queue for slot.... +20:46:35 ============================================================================ +20:46:35 Slot Id : <339> +20:46:35 Transaction Type : REQUEST +20:46:35 Received From : +20:46:35 ============================================================================ +20:46:35 FNo. Len. Field Value +20:46:35 ============================================================================ +20:46:35 [ 1] [ 4] [0800] +20:46:35 [ 7] [ 10] [0320014543] +20:46:35 [ 11] [ 6] [158299] +20:46:35 [ 70] [ 3] [301] +20:46:35 ============================================================================ +20:46:35 + + +waiting on router queue for slot.... +20:46:35 Sending to : +20:46:35 ============================================================================ +20:46:35 ============================================================================ +20:46:35 Slot Id : <339> +20:46:35 Transaction Type : RESPONSE +20:46:35 Received From : +20:46:35 ============================================================================ +20:46:35 FNo. Len. Field Value +20:46:35 ============================================================================ +20:46:35 [ 1] [ 4] [0810] +20:46:35 [ 7] [ 10] [0320014543] +20:46:35 [ 11] [ 6] [158299] +20:46:35 [ 39] [ 2] [00] +20:46:35 [ 70] [ 3] [301] +20:46:35 ============================================================================ +20:46:35 Calculate Source COMM Id = 2 +20:46:35 ============================================================================ +20:46:35 + + +waiting on router queue for slot.... +20:46:51 ============================================================================ +20:46:51 Slot Id : <347> +20:46:51 Transaction Type : REQUEST +20:46:51 Received From : +20:46:51 ============================================================================ +20:46:51 FNo. Len. Field Value +20:46:51 ============================================================================ +20:46:51 [ 1] [ 4] [0800] +20:46:51 [ 7] [ 10] [0320014559] +20:46:51 [ 11] [ 6] [158300] +20:46:51 [ 70] [ 3] [301] +20:46:51 ============================================================================ +20:46:51 + + +waiting on router queue for slot.... +20:46:51 Sending to : +20:46:51 ============================================================================ +20:46:51 ============================================================================ +20:46:51 Slot Id : <347> +20:46:51 Transaction Type : RESPONSE +20:46:51 Received From : +20:46:51 ============================================================================ +20:46:51 FNo. Len. Field Value +20:46:51 ============================================================================ +20:46:51 [ 1] [ 4] [0810] +20:46:51 [ 7] [ 10] [0320014559] +20:46:51 [ 11] [ 6] [158300] +20:46:51 [ 39] [ 2] [00] +20:46:51 [ 70] [ 3] [301] +20:46:51 ============================================================================ +20:46:51 Calculate Source COMM Id = 2 +20:46:51 ============================================================================ +20:46:51 + + +waiting on router queue for slot.... +20:46:52 ============================================================================ +20:46:52 Slot Id : <309> +20:46:52 Transaction Type : REQUEST +20:46:52 Received From : +20:46:52 ============================================================================ +20:46:52 FNo. Len. Field Value +20:46:52 ============================================================================ +20:46:52 [ 1] [ 4] [0800] +20:46:52 [ 2] [ 5] [02531] +20:46:52 [ 3] [ 6] [579208] +20:46:52 [ 7] [ 10] [0320134652] +20:46:52 [ 11] [ 6] [807618] +20:46:52 [ 15] [ 10] [0320134652] +20:46:52 [ 37] [ 11] [57920807618] +20:46:52 [ 70] [ 3] [001] +20:46:52 ============================================================================ +20:46:52 + + +waiting on router queue for slot.... +20:46:52 ============================================================================ +20:46:52 Slot Id : <309> +20:46:52 Transaction Type : RESPONSE +20:46:52 Received From : +20:46:52 ============================================================================ +20:46:52 FNo. Len. Field Value +20:46:52 ============================================================================ +20:46:52 [ 1] [ 4] [0810] +20:46:52 [ 7] [ 10] [0320134652] +20:46:52 [ 11] [ 6] [807618] +20:46:52 [ 15] [ 4] [0320] +20:46:52 [ 37] [ 12] [57920807618] +20:46:52 [ 39] [ 2] [00] +20:46:52 [ 70] [ 3] [001] +20:46:52 ============================================================================ +20:46:52 Sending to : +20:46:52 ============================================================================ +20:46:52 + + +waiting on router queue for slot.... +20:47:02 ============================================================================ +20:47:02 Slot Id : <348> +20:47:02 Transaction Type : REQUEST +20:47:02 Received From : +20:47:02 ============================================================================ +20:47:02 FNo. Len. Field Value +20:47:02 ============================================================================ +20:47:02 [ 1] [ 4] [0800] +20:47:02 [ 7] [ 10] [0320014610] +20:47:02 [ 11] [ 6] [158301] +20:47:02 [ 70] [ 3] [301] +20:47:02 ============================================================================ +20:47:02 + + +waiting on router queue for slot.... +20:47:02 Sending to : +20:47:02 ============================================================================ +20:47:02 ============================================================================ +20:47:02 Slot Id : <348> +20:47:02 Transaction Type : RESPONSE +20:47:02 Received From : +20:47:02 ============================================================================ +20:47:02 FNo. Len. Field Value +20:47:02 ============================================================================ +20:47:02 [ 1] [ 4] [0810] +20:47:02 [ 7] [ 10] [0320014610] +20:47:02 [ 11] [ 6] [158301] +20:47:02 [ 39] [ 2] [00] +20:47:02 [ 70] [ 3] [301] +20:47:02 ============================================================================ +20:47:02 Calculate Source COMM Id = 2 +20:47:02 ============================================================================ +20:47:02 + + +waiting on router queue for slot.... +20:47:06 ============================================================================ +20:47:06 Slot Id : <329> +20:47:06 Transaction Type : REQUEST +20:47:06 Received From : +20:47:06 ============================================================================ +20:47:06 FNo. Len. Field Value +20:47:06 ============================================================================ +20:47:06 [ 1] [ 4] [0800] +20:47:06 [ 7] [ 10] [0321035856] +20:47:06 [ 11] [ 6] [205856] +20:47:06 [ 37] [ 12] [57920205856] +20:47:06 [ 70] [ 3] [301] +20:47:06 ============================================================================ +20:47:06 + + +waiting on router queue for slot.... +20:47:06 Sending to : +20:47:06 ============================================================================ +20:47:06 ============================================================================ +20:47:06 Slot Id : <329> +20:47:06 Transaction Type : RESPONSE +20:47:06 Received From : +20:47:06 ============================================================================ +20:47:06 FNo. Len. Field Value +20:47:06 ============================================================================ +20:47:06 [ 1] [ 4] [0810] +20:47:06 [ 7] [ 10] [0321035856] +20:47:06 [ 11] [ 6] [205856] +20:47:06 [ 37] [ 12] [579202058560] +20:47:06 [ 39] [ 2] [00] +20:47:06 [ 70] [ 3] [810] +20:47:06 ============================================================================ +20:47:06 Calculate Source COMM Id = 6 +20:47:06 ============================================================================ +20:47:06 + + +waiting on router queue for slot.... +20:47:13 ============================================================================ +20:47:13 Slot Id : <337> +20:47:13 Transaction Type : REQUEST +20:47:13 Received From : +20:47:13 ============================================================================ +20:47:13 FNo. Len. Field Value +20:47:13 ============================================================================ +20:47:13 [ 1] [ 4] [0800] +20:47:13 [ 7] [ 10] [0320014621] +20:47:13 [ 11] [ 6] [158302] +20:47:13 [ 70] [ 3] [301] +20:47:13 ============================================================================ +20:47:13 + + +waiting on router queue for slot.... +20:47:13 Sending to : +20:47:13 ============================================================================ +20:47:13 ============================================================================ +20:47:13 Slot Id : <337> +20:47:13 Transaction Type : RESPONSE +20:47:13 Received From : +20:47:13 ============================================================================ +20:47:13 FNo. Len. Field Value +20:47:13 ============================================================================ +20:47:13 [ 1] [ 4] [0810] +20:47:13 [ 7] [ 10] [0320014621] +20:47:13 [ 11] [ 6] [158302] +20:47:13 [ 39] [ 2] [00] +20:47:13 [ 70] [ 3] [301] +20:47:13 ============================================================================ +20:47:13 Calculate Source COMM Id = 2 +20:47:13 ============================================================================ +20:47:13 + + +waiting on router queue for slot.... +20:47:23 ============================================================================ +20:47:23 Slot Id : <350> +20:47:23 Transaction Type : REQUEST +20:47:23 Received From : +20:47:23 ============================================================================ +20:47:23 FNo. Len. Field Value +20:47:23 ============================================================================ +20:47:23 [ 1] [ 4] [0800] +20:47:23 [ 7] [ 10] [0320014631] +20:47:23 [ 11] [ 6] [158303] +20:47:23 [ 70] [ 3] [301] +20:47:23 ============================================================================ +20:47:23 + + +waiting on router queue for slot.... +20:47:23 Sending to : +20:47:23 ============================================================================ +20:47:23 ============================================================================ +20:47:23 Slot Id : <350> +20:47:23 Transaction Type : RESPONSE +20:47:23 Received From : +20:47:23 ============================================================================ +20:47:23 FNo. Len. Field Value +20:47:23 ============================================================================ +20:47:23 [ 1] [ 4] [0810] +20:47:23 [ 7] [ 10] [0320014631] +20:47:23 [ 11] [ 6] [158303] +20:47:23 [ 39] [ 2] [00] +20:47:23 [ 70] [ 3] [301] +20:47:23 ============================================================================ +20:47:23 Calculate Source COMM Id = 2 +20:47:23 ============================================================================ +20:47:23 + + +waiting on router queue for slot.... +20:47:30 ============================================================================ +20:47:30 Slot Id : <346> +20:47:30 Transaction Type : REQUEST +20:47:30 Received From : +20:47:30 ============================================================================ +20:47:30 FNo. Len. Field Value +20:47:30 ============================================================================ +20:47:30 [ 1] [ 4] [0200] +20:47:30 [ 2] [ 16] [6213541000574874] +20:47:30 [ 3] [ 6] [010000] +20:47:30 [ 4] [ 12] [000050000000] +20:47:30 [ 7] [ 10] [0320205517] +20:47:30 [ 11] [ 6] [021219] +20:47:30 [ 12] [ 6] [205517] +20:47:30 [ 13] [ 4] [0320] +20:47:30 [ 14] [ 4] [4912] +20:47:30 [ 15] [ 4] [0320] +20:47:30 [ 18] [ 4] [6011] +20:47:30 [ 22] [ 3] [900] +20:47:30 [ 25] [ 2] [02] +20:47:30 [ 28] [ 9] [D00002000] +20:47:30 [ 32] [ 6] [220699] +20:47:30 [ 35] [ 32] [6213541000574874=491212017487893] +20:47:30 [ 37] [ 12] [507900263152] +20:47:30 [ 41] [ 8] [01001400] +20:47:30 [ 42] [ 15] [APTRA ] +20:47:30 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:47:30 [ 49] [ 3] [418] +20:47:30 [ 52] [ 16] [E623E8357EC7D720] +20:47:30 ============================================================================ +20:47:30 + + +waiting on router queue for slot.... +20:47:30 Sending to : +20:47:30 ============================================================================ +20:47:30 Sending to : +20:47:30 ============================================================================ +20:47:30 ============================================================================ +20:47:30 Slot Id : <346> +20:47:30 Transaction Type : REQUEST +20:47:30 Received From : +20:47:30 ============================================================================ +20:47:30 FNo. Len. Field Value +20:47:30 ============================================================================ +20:47:30 [ 1] [ 4] [0200] +20:47:30 [ 2] [ 16] [6213541000574874] +20:47:30 [ 3] [ 6] [010000] +20:47:30 [ 4] [ 12] [000050000000] +20:47:30 [ 7] [ 10] [0320205517] +20:47:30 [ 11] [ 6] [021219] +20:47:30 [ 12] [ 6] [205517] +20:47:30 [ 13] [ 4] [0320] +20:47:30 [ 14] [ 4] [4912] +20:47:30 [ 15] [ 4] [0320] +20:47:30 [ 18] [ 4] [6011] +20:47:30 [ 22] [ 3] [900] +20:47:30 [ 25] [ 2] [02] +20:47:30 [ 28] [ 9] [D00002000] +20:47:30 [ 32] [ 6] [220699] +20:47:30 [ 35] [ 32] [6213541000574874=491212017487893] +20:47:30 [ 37] [ 12] [507900263152] +20:47:30 [ 41] [ 8] [01001400] +20:47:30 [ 42] [ 15] [APTRA ] +20:47:30 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:47:30 [ 49] [ 3] [418] +20:47:30 [ 52] [ 16] [E623E8357EC7D720] +20:47:30 ============================================================================ +20:47:30 + + +waiting on router queue for slot.... +20:47:30 Sending to : +20:47:30 ============================================================================ +20:47:30 ============================================================================ +20:47:30 Slot Id : <346> +20:47:30 Transaction Type : REQUEST +20:47:30 Received From : +20:47:30 ============================================================================ +20:47:30 FNo. Len. Field Value +20:47:30 ============================================================================ +20:47:30 [ 1] [ 4] [0200] +20:47:30 [ 2] [ 16] [6213541000574874] +20:47:30 [ 3] [ 6] [010000] +20:47:30 [ 4] [ 12] [000050000000] +20:47:30 [ 7] [ 10] [0320205517] +20:47:30 [ 11] [ 6] [021219] +20:47:30 [ 12] [ 6] [205517] +20:47:30 [ 13] [ 4] [0320] +20:47:30 [ 14] [ 4] [4912] +20:47:30 [ 15] [ 4] [0320] +20:47:30 [ 18] [ 4] [6011] +20:47:30 [ 22] [ 3] [900] +20:47:30 [ 25] [ 2] [02] +20:47:30 [ 28] [ 9] [D00002000] +20:47:30 [ 32] [ 6] [220699] +20:47:30 [ 35] [ 32] [6213541000574874=491212017487893] +20:47:30 [ 37] [ 12] [507900263152] +20:47:30 [ 41] [ 8] [01001400] +20:47:30 [ 42] [ 15] [APTRA ] +20:47:30 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +20:47:30 [ 49] [ 3] [418] +20:47:30 [ 52] [ 16] [3CF527C9C2D322F6] +20:47:30 ============================================================================ +20:47:30 + + +waiting on router queue for slot.... +20:47:30 Sending to : <0> +20:47:30 ============================================================================ +20:47:31 ============================================================================ +20:47:31 Slot Id : <346> +20:47:31 Transaction Type : RESPONSE +20:47:31 Received From : +20:47:31 ============================================================================ +20:47:31 FNo. Len. Field Value +20:47:31 ============================================================================ +20:47:31 [ 1] [ 4] [0210] +20:47:31 [ 2] [ 16] [6213541000574874] +20:47:31 [ 3] [ 6] [010000] +20:47:31 [ 4] [ 12] [000050000000] +20:47:31 [ 7] [ 10] [0320205517] +20:47:31 [ 11] [ 6] [021219] +20:47:31 [ 12] [ 6] [205517] +20:47:31 [ 13] [ 4] [0320] +20:47:31 [ 15] [ 4] [0320] +20:47:31 [ 18] [ 4] [6011] +20:47:31 [ 32] [ 6] [220699] +20:47:31 [ 35] [ 32] [6213541000574874=491212017487893] +20:47:31 [ 37] [ 12] [507900263152] +20:47:31 [ 38] [ 6] [308773] +20:47:31 [ 39] [ 2] [00] +20:47:31 [ 41] [ 8] [01001400] +20:47:31 [ 49] [ 3] [418] +20:47:31 [ 54] [ 40] [0001418C0002700453990002418C000219845399] +20:47:31 ============================================================================ +20:47:31 Sending to : +20:47:31 ============================================================================ +20:47:31 + + +waiting on router queue for slot.... +20:47:33 ============================================================================ +20:47:33 Slot Id : <346> +20:47:33 Transaction Type : RESPONSE +20:47:33 Received From : +20:47:33 ============================================================================ +20:47:33 FNo. Len. Field Value +20:47:33 ============================================================================ +20:47:33 [ 1] [ 4] [0210] +20:47:33 [ 2] [ 16] [6213541000574874] +20:47:33 [ 3] [ 6] [010000] +20:47:33 [ 4] [ 12] [000050000000] +20:47:33 [ 7] [ 10] [0320205517] +20:47:33 [ 11] [ 6] [021219] +20:47:33 [ 12] [ 6] [205517] +20:47:33 [ 13] [ 4] [0320] +20:47:33 [ 15] [ 4] [0320] +20:47:33 [ 18] [ 4] [6011] +20:47:33 [ 32] [ 6] [220699] +20:47:33 [ 35] [ 32] [6213541000574874=491212017487893] +20:47:33 [ 37] [ 12] [507900263152] +20:47:33 [ 38] [ 6] [308773] +20:47:33 [ 39] [ 2] [00] +20:47:33 [ 41] [ 8] [01001400] +20:47:33 [ 49] [ 3] [418] +20:47:33 [ 54] [ 40] [0001418C0002700453990002418C000219845399] +20:47:33 ============================================================================ +20:47:33 Calculate Source COMM Id = 1 +20:47:33 ============================================================================ +20:47:33 + + +waiting on router queue for slot.... +20:47:38 ============================================================================ +20:47:38 Slot Id : <328> +20:47:38 Transaction Type : REQUEST +20:47:38 Received From : +20:47:38 ============================================================================ +20:47:38 FNo. Len. Field Value +20:47:38 ============================================================================ +20:47:38 [ 1] [ 4] [0800] +20:47:38 [ 7] [ 10] [0320014647] +20:47:38 [ 11] [ 6] [158304] +20:47:38 [ 70] [ 3] [301] +20:47:38 ============================================================================ +20:47:38 + + +waiting on router queue for slot.... +20:47:38 Sending to : +20:47:38 ============================================================================ +20:47:38 ============================================================================ +20:47:38 Slot Id : <328> +20:47:38 Transaction Type : RESPONSE +20:47:38 Received From : +20:47:38 ============================================================================ +20:47:38 FNo. Len. Field Value +20:47:38 ============================================================================ +20:47:38 [ 1] [ 4] [0810] +20:47:38 [ 7] [ 10] [0320014647] +20:47:38 [ 11] [ 6] [158304] +20:47:38 [ 39] [ 2] [00] +20:47:38 [ 70] [ 3] [301] +20:47:38 ============================================================================ +20:47:38 Calculate Source COMM Id = 2 +20:47:38 ============================================================================ +20:47:38 + + +waiting on router queue for slot.... +20:47:43 ============================================================================ +20:47:43 Slot Id : <357> +20:47:43 Transaction Type : REQUEST +20:47:43 Received From : +20:47:43 ============================================================================ +20:47:43 FNo. Len. Field Value +20:47:43 ============================================================================ +20:47:43 [ 1] [ 4] [0200] +20:47:43 [ 2] [ 16] [6213543000234772] +20:47:43 [ 3] [ 6] [010000] +20:47:43 [ 4] [ 12] [000010000000] +20:47:43 [ 7] [ 10] [0320134649] +20:47:43 [ 11] [ 6] [271631] +20:47:43 [ 12] [ 6] [204649] +20:47:43 [ 13] [ 4] [0320] +20:47:43 [ 14] [ 4] [4912] +20:47:43 [ 15] [ 4] [0320] +20:47:43 [ 18] [ 4] [6011] +20:47:43 [ 19] [ 3] [418] +20:47:43 [ 22] [ 3] [021] +20:47:43 [ 25] [ 2] [01] +20:47:43 [ 28] [ 9] [D00002000] +20:47:43 [ 32] [ 6] [180893] +20:47:43 [ 35] [ 32] [6213543000234772=491212013477330] +20:47:43 [ 37] [ 12] [507913271631] +20:47:43 [ 41] [ 8] [0466PSLB] +20:47:43 [ 42] [ 15] [999999 ] +20:47:43 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:47:43 [ 49] [ 3] [418] +20:47:43 [ 52] [ 16] [42BD6836A2162ABA] +20:47:43 ============================================================================ +20:47:43 + + +waiting on router queue for slot.... +20:47:43 Sending to : +20:47:43 ============================================================================ +20:47:43 Sending to : +20:47:43 ============================================================================ +20:47:43 ============================================================================ +20:47:43 Slot Id : <357> +20:47:43 Transaction Type : REQUEST +20:47:43 Received From : +20:47:43 ============================================================================ +20:47:43 FNo. Len. Field Value +20:47:43 ============================================================================ +20:47:43 [ 1] [ 4] [0200] +20:47:43 [ 2] [ 16] [6213543000234772] +20:47:43 [ 3] [ 6] [010000] +20:47:43 [ 4] [ 12] [000010000000] +20:47:43 [ 7] [ 10] [0320134649] +20:47:43 [ 11] [ 6] [271631] +20:47:43 [ 12] [ 6] [204649] +20:47:43 [ 13] [ 4] [0320] +20:47:43 [ 14] [ 4] [4912] +20:47:43 [ 15] [ 4] [0320] +20:47:43 [ 18] [ 4] [6011] +20:47:43 [ 19] [ 3] [418] +20:47:43 [ 22] [ 3] [021] +20:47:43 [ 25] [ 2] [01] +20:47:43 [ 28] [ 9] [D00002000] +20:47:43 [ 32] [ 6] [180893] +20:47:43 [ 35] [ 32] [6213543000234772=491212013477330] +20:47:43 [ 37] [ 12] [507913271631] +20:47:43 [ 41] [ 8] [0466PSLB] +20:47:43 [ 42] [ 15] [999999 ] +20:47:43 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:47:43 [ 49] [ 3] [418] +20:47:43 [ 52] [ 16] [42BD6836A2162ABA] +20:47:43 ============================================================================ +20:47:43 + + +waiting on router queue for slot.... +20:47:43 Sending to : +20:47:43 ============================================================================ +20:47:43 ============================================================================ +20:47:43 Slot Id : <357> +20:47:43 Transaction Type : REQUEST +20:47:43 Received From : +20:47:43 ============================================================================ +20:47:43 FNo. Len. Field Value +20:47:43 ============================================================================ +20:47:43 [ 1] [ 4] [0200] +20:47:43 [ 2] [ 16] [6213543000234772] +20:47:43 [ 3] [ 6] [010000] +20:47:43 [ 4] [ 12] [000010000000] +20:47:43 [ 7] [ 10] [0320134649] +20:47:43 [ 11] [ 6] [271631] +20:47:43 [ 12] [ 6] [204649] +20:47:43 [ 13] [ 4] [0320] +20:47:43 [ 14] [ 4] [4912] +20:47:43 [ 15] [ 4] [0320] +20:47:43 [ 18] [ 4] [6011] +20:47:43 [ 19] [ 3] [418] +20:47:43 [ 22] [ 3] [021] +20:47:43 [ 25] [ 2] [01] +20:47:43 [ 28] [ 9] [D00002000] +20:47:43 [ 32] [ 6] [180893] +20:47:43 [ 35] [ 32] [6213543000234772=491212013477330] +20:47:43 [ 37] [ 12] [507913271631] +20:47:43 [ 41] [ 8] [0466PSLB] +20:47:43 [ 42] [ 15] [999999 ] +20:47:43 [ 43] [ 40] [ATM BOUNTAI PHONGSALY, Bountai, Lao Peop] +20:47:43 [ 49] [ 3] [418] +20:47:43 [ 52] [ 16] [DF9C89049DA822DB] +20:47:43 ============================================================================ +20:47:43 + + +waiting on router queue for slot.... +20:47:43 Sending to : <0> +20:47:43 ============================================================================ +20:47:44 ============================================================================ +20:47:44 Slot Id : <357> +20:47:44 Transaction Type : RESPONSE +20:47:44 Received From : +20:47:44 ============================================================================ +20:47:44 FNo. Len. Field Value +20:47:44 ============================================================================ +20:47:44 [ 1] [ 4] [0210] +20:47:44 [ 2] [ 16] [6213543000234772] +20:47:44 [ 3] [ 6] [010000] +20:47:44 [ 4] [ 12] [000010000000] +20:47:44 [ 7] [ 10] [0320134649] +20:47:44 [ 11] [ 6] [271631] +20:47:44 [ 12] [ 6] [204649] +20:47:44 [ 13] [ 4] [0320] +20:47:44 [ 15] [ 4] [0320] +20:47:44 [ 18] [ 4] [6011] +20:47:44 [ 19] [ 3] [418] +20:47:44 [ 32] [ 6] [180893] +20:47:44 [ 35] [ 32] [6213543000234772=491212013477330] +20:47:44 [ 37] [ 12] [507913271631] +20:47:44 [ 38] [ 6] [297868] +20:47:44 [ 39] [ 2] [00] +20:47:44 [ 41] [ 8] [0466PSLB] +20:47:44 [ 49] [ 3] [418] +20:47:44 [ 54] [ 40] [0001418C0000338000000002418C000023600000] +20:47:44 ============================================================================ +20:47:44 Sending to : +20:47:44 ============================================================================ +20:47:44 + + +waiting on router queue for slot.... +20:47:45 ============================================================================ +20:47:45 Slot Id : <357> +20:47:45 Transaction Type : RESPONSE +20:47:45 Received From : +20:47:45 ============================================================================ +20:47:45 FNo. Len. Field Value +20:47:45 ============================================================================ +20:47:45 [ 1] [ 4] [0210] +20:47:45 [ 2] [ 16] [6213543000234772] +20:47:45 [ 3] [ 6] [010000] +20:47:45 [ 4] [ 12] [000010000000] +20:47:45 [ 7] [ 10] [0320134649] +20:47:45 [ 11] [ 6] [271631] +20:47:45 [ 12] [ 6] [204649] +20:47:45 [ 13] [ 4] [0320] +20:47:45 [ 15] [ 4] [0320] +20:47:45 [ 18] [ 4] [6011] +20:47:45 [ 19] [ 3] [418] +20:47:45 [ 32] [ 6] [180893] +20:47:45 [ 35] [ 32] [6213543000234772=491212013477330] +20:47:45 [ 37] [ 12] [507913271631] +20:47:45 [ 38] [ 6] [297868] +20:47:45 [ 39] [ 2] [00] +20:47:45 [ 41] [ 8] [0466PSLB] +20:47:45 [ 49] [ 3] [418] +20:47:45 [ 54] [ 40] [0001418C0000338000000002418C000023600000] +20:47:45 ============================================================================ +20:47:45 Calculate Source COMM Id = 2 +20:47:45 ============================================================================ +20:47:45 + + +waiting on router queue for slot.... +20:47:54 ============================================================================ +20:47:54 Slot Id : <332> +20:47:54 Transaction Type : REQUEST +20:47:54 Received From : +20:47:54 ============================================================================ +20:47:54 FNo. Len. Field Value +20:47:54 ============================================================================ +20:47:54 [ 1] [ 4] [0800] +20:47:54 [ 2] [ 5] [02531] +20:47:54 [ 3] [ 6] [579208] +20:47:54 [ 7] [ 10] [0320134754] +20:47:54 [ 11] [ 6] [807619] +20:47:54 [ 15] [ 10] [0320134754] +20:47:54 [ 37] [ 11] [57920807619] +20:47:54 [ 70] [ 3] [001] +20:47:54 ============================================================================ +20:47:54 + + +waiting on router queue for slot.... +20:47:54 ============================================================================ +20:47:54 Slot Id : <332> +20:47:54 Transaction Type : RESPONSE +20:47:54 Received From : +20:47:54 ============================================================================ +20:47:54 FNo. Len. Field Value +20:47:54 ============================================================================ +20:47:54 [ 1] [ 4] [0810] +20:47:54 [ 7] [ 10] [0320134754] +20:47:54 [ 11] [ 6] [807619] +20:47:54 [ 15] [ 4] [0320] +20:47:54 [ 37] [ 12] [57920807619] +20:47:54 [ 39] [ 2] [00] +20:47:54 [ 70] [ 3] [001] +20:47:54 ============================================================================ +20:47:54 Sending to : +20:47:54 ============================================================================ +20:47:54 + + +waiting on router queue for slot.... +20:47:59 ============================================================================ +20:47:59 Slot Id : <319> +20:47:59 Transaction Type : REQUEST +20:47:59 Received From : +20:47:59 ============================================================================ +20:47:59 FNo. Len. Field Value +20:47:59 ============================================================================ +20:47:59 [ 1] [ 4] [0800] +20:47:59 [ 7] [ 10] [0320014707] +20:47:59 [ 11] [ 6] [158305] +20:47:59 [ 70] [ 3] [301] +20:47:59 ============================================================================ +20:47:59 + + +waiting on router queue for slot.... +20:47:59 Sending to : +20:47:59 ============================================================================ +20:47:59 ============================================================================ +20:47:59 Slot Id : <319> +20:47:59 Transaction Type : RESPONSE +20:47:59 Received From : +20:47:59 ============================================================================ +20:47:59 FNo. Len. Field Value +20:47:59 ============================================================================ +20:47:59 [ 1] [ 4] [0810] +20:47:59 [ 7] [ 10] [0320014707] +20:47:59 [ 11] [ 6] [158305] +20:47:59 [ 39] [ 2] [00] +20:47:59 [ 70] [ 3] [301] +20:47:59 ============================================================================ +20:47:59 Calculate Source COMM Id = 2 +20:47:59 ============================================================================ +20:47:59 + + +waiting on router queue for slot.... +20:48:09 ============================================================================ +20:48:09 Slot Id : <365> +20:48:09 Transaction Type : REQUEST +20:48:09 Received From : +20:48:09 ============================================================================ +20:48:09 FNo. Len. Field Value +20:48:09 ============================================================================ +20:48:09 [ 1] [ 4] [0200] +20:48:09 [ 2] [ 16] [6213544002191226] +20:48:09 [ 3] [ 6] [301000] +20:48:09 [ 4] [ 12] [000000000000] +20:48:09 [ 7] [ 10] [0320204601] +20:48:09 [ 11] [ 6] [957392] +20:48:09 [ 12] [ 6] [204601] +20:48:09 [ 13] [ 4] [0320] +20:48:09 [ 15] [ 4] [0320] +20:48:09 [ 18] [ 4] [6011] +20:48:09 [ 19] [ 3] [418] +20:48:09 [ 22] [ 3] [021] +20:48:09 [ 25] [ 2] [01] +20:48:09 [ 28] [ 9] [D00000000] +20:48:09 [ 32] [ 6] [668899] +20:48:09 [ 35] [ 32] [6213544002191226=491212019122762] +20:48:09 [ 37] [ 12] [507900158538] +20:48:09 [ 41] [ 8] [03020006] +20:48:09 [ 42] [ 15] [APT ] +20:48:09 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:48:09 [ 49] [ 3] [418] +20:48:09 [ 52] [ 16] [58C376394028158B] +20:48:09 ============================================================================ +20:48:09 + + +waiting on router queue for slot.... +20:48:09 Sending to : +20:48:09 ============================================================================ +20:48:09 Sending to : +20:48:09 ============================================================================ +20:48:10 ============================================================================ +20:48:10 Slot Id : <365> +20:48:10 Transaction Type : REQUEST +20:48:10 Received From : +20:48:10 ============================================================================ +20:48:10 FNo. Len. Field Value +20:48:10 ============================================================================ +20:48:10 [ 1] [ 4] [0200] +20:48:10 [ 2] [ 16] [6213544002191226] +20:48:10 [ 3] [ 6] [301000] +20:48:10 [ 4] [ 12] [000000000000] +20:48:10 [ 7] [ 10] [0320204601] +20:48:10 [ 11] [ 6] [957392] +20:48:10 [ 12] [ 6] [204601] +20:48:10 [ 13] [ 4] [0320] +20:48:10 [ 15] [ 4] [0320] +20:48:10 [ 18] [ 4] [6011] +20:48:10 [ 19] [ 3] [418] +20:48:10 [ 22] [ 3] [021] +20:48:10 [ 25] [ 2] [01] +20:48:10 [ 28] [ 9] [D00000000] +20:48:10 [ 32] [ 6] [668899] +20:48:10 [ 35] [ 32] [6213544002191226=491212019122762] +20:48:10 [ 37] [ 12] [507900158538] +20:48:10 [ 41] [ 8] [03020006] +20:48:10 [ 42] [ 15] [APT ] +20:48:10 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:48:10 [ 49] [ 3] [418] +20:48:10 [ 52] [ 16] [58C376394028158B] +20:48:10 ============================================================================ +20:48:10 + + +waiting on router queue for slot.... +20:48:10 Sending to : +20:48:10 ============================================================================ +20:48:10 ============================================================================ +20:48:10 Slot Id : <365> +20:48:10 Transaction Type : REQUEST +20:48:10 Received From : +20:48:10 ============================================================================ +20:48:10 FNo. Len. Field Value +20:48:10 ============================================================================ +20:48:10 [ 1] [ 4] [0200] +20:48:10 [ 2] [ 16] [6213544002191226] +20:48:10 [ 3] [ 6] [301000] +20:48:10 [ 4] [ 12] [000000000000] +20:48:10 [ 7] [ 10] [0320204601] +20:48:10 [ 11] [ 6] [957392] +20:48:10 [ 12] [ 6] [204601] +20:48:10 [ 13] [ 4] [0320] +20:48:10 [ 15] [ 4] [0320] +20:48:10 [ 18] [ 4] [6011] +20:48:10 [ 19] [ 3] [418] +20:48:10 [ 22] [ 3] [021] +20:48:10 [ 25] [ 2] [01] +20:48:10 [ 28] [ 9] [D00000000] +20:48:10 [ 32] [ 6] [668899] +20:48:10 [ 35] [ 32] [6213544002191226=491212019122762] +20:48:10 [ 37] [ 12] [507900158538] +20:48:10 [ 41] [ 8] [03020006] +20:48:10 [ 42] [ 15] [APT ] +20:48:10 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:48:10 [ 49] [ 3] [418] +20:48:10 [ 52] [ 16] [71F94CDC88836AD5] +20:48:10 ============================================================================ +20:48:10 + + +waiting on router queue for slot.... +20:48:10 Sending to : <0> +20:48:10 ============================================================================ +20:48:10 ============================================================================ +20:48:10 Slot Id : <365> +20:48:10 Transaction Type : RESPONSE +20:48:10 Received From : +20:48:10 ============================================================================ +20:48:10 FNo. Len. Field Value +20:48:10 ============================================================================ +20:48:10 [ 1] [ 4] [0210] +20:48:10 [ 2] [ 16] [6213544002191226] +20:48:10 [ 3] [ 6] [301000] +20:48:10 [ 4] [ 12] [000000000000] +20:48:10 [ 7] [ 10] [0320204601] +20:48:10 [ 11] [ 6] [957392] +20:48:10 [ 12] [ 6] [204601] +20:48:10 [ 13] [ 4] [0320] +20:48:10 [ 15] [ 4] [0320] +20:48:10 [ 18] [ 4] [6011] +20:48:10 [ 19] [ 3] [418] +20:48:10 [ 22] [ 3] [021] +20:48:10 [ 32] [ 6] [668899] +20:48:10 [ 35] [ 32] [6213544002191226=491212019122762] +20:48:10 [ 37] [ 12] [507900158538] +20:48:10 [ 38] [ 6] [204807] +20:48:10 [ 39] [ 2] [55] +20:48:10 [ 41] [ 8] [03020006] +20:48:10 [ 49] [ 3] [418] +20:48:10 ============================================================================ +20:48:10 Sending to : +20:48:10 ============================================================================ +20:48:10 + + +waiting on router queue for slot.... +20:48:11 ============================================================================ +20:48:11 Slot Id : <356> +20:48:11 Transaction Type : REQUEST +20:48:11 Received From : +20:48:11 ============================================================================ +20:48:11 FNo. Len. Field Value +20:48:11 ============================================================================ +20:48:11 [ 1] [ 4] [0800] +20:48:11 [ 7] [ 10] [0321040001] +20:48:11 [ 11] [ 6] [210001] +20:48:11 [ 37] [ 12] [57921210001] +20:48:11 [ 70] [ 3] [301] +20:48:11 ============================================================================ +20:48:11 + + +waiting on router queue for slot.... +20:48:11 Sending to : +20:48:11 ============================================================================ +20:48:11 ============================================================================ +20:48:11 Slot Id : <356> +20:48:11 Transaction Type : RESPONSE +20:48:11 Received From : +20:48:11 ============================================================================ +20:48:11 FNo. Len. Field Value +20:48:11 ============================================================================ +20:48:11 [ 1] [ 4] [0810] +20:48:11 [ 7] [ 10] [0321040001] +20:48:11 [ 11] [ 6] [210001] +20:48:11 [ 37] [ 12] [579212100010] +20:48:11 [ 39] [ 2] [00] +20:48:11 [ 70] [ 3] [810] +20:48:11 ============================================================================ +20:48:11 Calculate Source COMM Id = 6 +20:48:11 ============================================================================ +20:48:11 + + +waiting on router queue for slot.... +20:48:11 ============================================================================ +20:48:11 Slot Id : <365> +20:48:11 Transaction Type : RESPONSE +20:48:11 Received From : +20:48:11 ============================================================================ +20:48:11 FNo. Len. Field Value +20:48:11 ============================================================================ +20:48:11 [ 1] [ 4] [0210] +20:48:11 [ 2] [ 16] [6213544002191226] +20:48:11 [ 3] [ 6] [301000] +20:48:11 [ 4] [ 12] [000000000000] +20:48:11 [ 7] [ 10] [0320204601] +20:48:11 [ 11] [ 6] [957392] +20:48:11 [ 12] [ 6] [204601] +20:48:11 [ 13] [ 4] [0320] +20:48:11 [ 15] [ 4] [0320] +20:48:11 [ 18] [ 4] [6011] +20:48:11 [ 19] [ 3] [418] +20:48:11 [ 22] [ 3] [021] +20:48:11 [ 32] [ 6] [668899] +20:48:11 [ 35] [ 32] [6213544002191226=491212019122762] +20:48:11 [ 37] [ 12] [507900158538] +20:48:11 [ 38] [ 6] [204807] +20:48:11 [ 39] [ 2] [55] +20:48:11 [ 41] [ 8] [03020006] +20:48:11 [ 49] [ 3] [418] +20:48:11 ============================================================================ +20:48:11 Calculate Source COMM Id = 4 +20:48:11 ============================================================================ +20:48:11 + + +waiting on router queue for slot.... +20:48:14 ============================================================================ +20:48:14 Slot Id : <330> +20:48:14 Transaction Type : REQUEST +20:48:14 Received From : +20:48:14 ============================================================================ +20:48:14 FNo. Len. Field Value +20:48:14 ============================================================================ +20:48:14 [ 1] [ 4] [0800] +20:48:14 [ 7] [ 10] [0320014722] +20:48:14 [ 11] [ 6] [158306] +20:48:14 [ 70] [ 3] [301] +20:48:14 ============================================================================ +20:48:14 + + +waiting on router queue for slot.... +20:48:14 Sending to : +20:48:14 ============================================================================ +20:48:14 ============================================================================ +20:48:14 Slot Id : <330> +20:48:14 Transaction Type : RESPONSE +20:48:14 Received From : +20:48:14 ============================================================================ +20:48:14 FNo. Len. Field Value +20:48:14 ============================================================================ +20:48:14 [ 1] [ 4] [0810] +20:48:14 [ 7] [ 10] [0320014722] +20:48:14 [ 11] [ 6] [158306] +20:48:14 [ 39] [ 2] [00] +20:48:14 [ 70] [ 3] [301] +20:48:14 ============================================================================ +20:48:14 Calculate Source COMM Id = 2 +20:48:14 ============================================================================ +20:48:14 + + +waiting on router queue for slot.... +20:48:24 ============================================================================ +20:48:24 Slot Id : <371> +20:48:24 Transaction Type : REQUEST +20:48:24 Received From : +20:48:24 ============================================================================ +20:48:24 FNo. Len. Field Value +20:48:24 ============================================================================ +20:48:24 [ 1] [ 4] [0800] +20:48:24 [ 7] [ 10] [0320014732] +20:48:24 [ 11] [ 6] [158307] +20:48:24 [ 70] [ 3] [301] +20:48:24 ============================================================================ +20:48:24 + + +waiting on router queue for slot.... +20:48:24 Sending to : +20:48:24 ============================================================================ +20:48:24 ============================================================================ +20:48:24 Slot Id : <371> +20:48:24 Transaction Type : RESPONSE +20:48:24 Received From : +20:48:24 ============================================================================ +20:48:24 FNo. Len. Field Value +20:48:24 ============================================================================ +20:48:24 [ 1] [ 4] [0810] +20:48:24 [ 7] [ 10] [0320014732] +20:48:24 [ 11] [ 6] [158307] +20:48:24 [ 39] [ 2] [00] +20:48:24 [ 70] [ 3] [301] +20:48:24 ============================================================================ +20:48:24 Calculate Source COMM Id = 2 +20:48:24 ============================================================================ +20:48:24 + + +waiting on router queue for slot.... +20:48:35 ============================================================================ +20:48:35 Slot Id : <378> +20:48:35 Transaction Type : REQUEST +20:48:35 Received From : +20:48:35 ============================================================================ +20:48:35 FNo. Len. Field Value +20:48:35 ============================================================================ +20:48:35 [ 1] [ 4] [0800] +20:48:35 [ 7] [ 10] [0320014743] +20:48:35 [ 11] [ 6] [158308] +20:48:35 [ 70] [ 3] [301] +20:48:35 ============================================================================ +20:48:35 + + +waiting on router queue for slot.... +20:48:35 Sending to : +20:48:35 ============================================================================ +20:48:35 ============================================================================ +20:48:35 Slot Id : <378> +20:48:35 Transaction Type : RESPONSE +20:48:35 Received From : +20:48:35 ============================================================================ +20:48:35 FNo. Len. Field Value +20:48:35 ============================================================================ +20:48:35 [ 1] [ 4] [0810] +20:48:35 [ 7] [ 10] [0320014743] +20:48:35 [ 11] [ 6] [158308] +20:48:35 [ 39] [ 2] [00] +20:48:35 [ 70] [ 3] [301] +20:48:35 ============================================================================ +20:48:35 Calculate Source COMM Id = 2 +20:48:35 ============================================================================ +20:48:35 + + +waiting on router queue for slot.... +20:48:45 ============================================================================ +20:48:45 Slot Id : <366> +20:48:45 Transaction Type : REQUEST +20:48:45 Received From : +20:48:45 ============================================================================ +20:48:45 FNo. Len. Field Value +20:48:45 ============================================================================ +20:48:45 [ 1] [ 4] [0800] +20:48:45 [ 7] [ 10] [0320014754] +20:48:45 [ 11] [ 6] [158309] +20:48:45 [ 70] [ 3] [301] +20:48:45 ============================================================================ +20:48:45 + + +waiting on router queue for slot.... +20:48:45 Sending to : +20:48:45 ============================================================================ +20:48:45 ============================================================================ +20:48:45 Slot Id : <366> +20:48:45 Transaction Type : RESPONSE +20:48:45 Received From : +20:48:45 ============================================================================ +20:48:45 FNo. Len. Field Value +20:48:45 ============================================================================ +20:48:45 [ 1] [ 4] [0810] +20:48:45 [ 7] [ 10] [0320014754] +20:48:45 [ 11] [ 6] [158309] +20:48:45 [ 39] [ 2] [00] +20:48:45 [ 70] [ 3] [301] +20:48:45 ============================================================================ +20:48:45 Calculate Source COMM Id = 2 +20:48:45 ============================================================================ +20:48:45 + + +waiting on router queue for slot.... +20:48:53 ============================================================================ +20:48:53 Slot Id : <313> +20:48:53 Transaction Type : REQUEST +20:48:53 Received From : +20:48:53 ============================================================================ +20:48:53 FNo. Len. Field Value +20:48:53 ============================================================================ +20:48:53 [ 1] [ 4] [0200] +20:48:53 [ 2] [ 16] [1808930200048601] +20:48:53 [ 3] [ 6] [011000] +20:48:53 [ 4] [ 12] [000010000000] +20:48:53 [ 7] [ 10] [0320204849] +20:48:53 [ 11] [ 6] [844227] +20:48:53 [ 12] [ 6] [204849] +20:48:53 [ 13] [ 4] [0320] +20:48:53 [ 15] [ 4] [0320] +20:48:53 [ 18] [ 4] [6011] +20:48:53 [ 22] [ 3] [900] +20:48:53 [ 25] [ 2] [02] +20:48:53 [ 28] [ 9] [D00002000] +20:48:53 [ 32] [ 6] [621354] +20:48:53 [ 35] [ 27] [1808930200048601=1803500489] +20:48:53 [ 37] [ 12] [507903919806] +20:48:53 [ 41] [ 8] [01010700] +20:48:53 [ 42] [ 15] [NATIVE ] +20:48:53 [ 43] [ 40] [Unitel Xaysetha LAO] +20:48:53 [ 49] [ 3] [418] +20:48:53 [ 52] [ 16] [6C288637B857F27F] +20:48:53 ============================================================================ +20:48:53 + + +waiting on router queue for slot.... +20:48:53 Sending to : +20:48:53 ============================================================================ +20:48:53 Sending to : +20:48:53 ============================================================================ +20:48:53 ============================================================================ +20:48:53 Slot Id : <313> +20:48:53 Transaction Type : REQUEST +20:48:53 Received From : +20:48:53 ============================================================================ +20:48:53 FNo. Len. Field Value +20:48:53 ============================================================================ +20:48:53 [ 1] [ 4] [0200] +20:48:53 [ 2] [ 16] [1808930200048601] +20:48:53 [ 3] [ 6] [011000] +20:48:53 [ 4] [ 12] [000010000000] +20:48:53 [ 7] [ 10] [0320204849] +20:48:53 [ 11] [ 6] [844227] +20:48:53 [ 12] [ 6] [204849] +20:48:53 [ 13] [ 4] [0320] +20:48:53 [ 15] [ 4] [0320] +20:48:53 [ 18] [ 4] [6011] +20:48:53 [ 22] [ 3] [900] +20:48:53 [ 25] [ 2] [02] +20:48:53 [ 28] [ 9] [D00002000] +20:48:53 [ 32] [ 6] [621354] +20:48:53 [ 35] [ 27] [1808930200048601=1803500489] +20:48:53 [ 37] [ 12] [507903919806] +20:48:53 [ 41] [ 8] [01010700] +20:48:53 [ 42] [ 15] [NATIVE ] +20:48:53 [ 43] [ 40] [Unitel Xaysetha LAO] +20:48:53 [ 49] [ 3] [418] +20:48:53 [ 52] [ 16] [6C288637B857F27F] +20:48:53 ============================================================================ +20:48:53 + + +waiting on router queue for slot.... +20:48:53 Sending to : +20:48:53 ============================================================================ +20:48:53 ============================================================================ +20:48:53 Slot Id : <313> +20:48:53 Transaction Type : REQUEST +20:48:53 Received From : +20:48:53 ============================================================================ +20:48:53 FNo. Len. Field Value +20:48:53 ============================================================================ +20:48:53 [ 1] [ 4] [0200] +20:48:53 [ 2] [ 16] [1808930200048601] +20:48:53 [ 3] [ 6] [011000] +20:48:53 [ 4] [ 12] [000010000000] +20:48:53 [ 7] [ 10] [0320204849] +20:48:53 [ 11] [ 6] [844227] +20:48:53 [ 12] [ 6] [204849] +20:48:53 [ 13] [ 4] [0320] +20:48:53 [ 15] [ 4] [0320] +20:48:53 [ 18] [ 4] [6011] +20:48:53 [ 22] [ 3] [900] +20:48:53 [ 25] [ 2] [02] +20:48:53 [ 28] [ 9] [D00002000] +20:48:53 [ 32] [ 6] [621354] +20:48:53 [ 35] [ 27] [1808930200048601=1803500489] +20:48:53 [ 37] [ 12] [507903919806] +20:48:53 [ 41] [ 8] [01010700] +20:48:53 [ 42] [ 15] [NATIVE ] +20:48:53 [ 43] [ 40] [Unitel Xaysetha LAO] +20:48:53 [ 49] [ 3] [418] +20:48:53 [ 52] [ 16] [8A14C6C445E8C978] +20:48:53 ============================================================================ +20:48:53 + + +waiting on router queue for slot.... +20:48:53 Sending to : <2> +20:48:53 ============================================================================ +20:48:56 ============================================================================ +20:48:56 Slot Id : <343> +20:48:56 Transaction Type : REQUEST +20:48:56 Received From : +20:48:56 ============================================================================ +20:48:56 FNo. Len. Field Value +20:48:56 ============================================================================ +20:48:56 [ 1] [ 4] [0800] +20:48:56 [ 2] [ 5] [02531] +20:48:56 [ 3] [ 6] [579208] +20:48:56 [ 7] [ 10] [0320134856] +20:48:56 [ 11] [ 6] [807620] +20:48:56 [ 15] [ 10] [0320134856] +20:48:56 [ 37] [ 11] [57920807620] +20:48:56 [ 70] [ 3] [001] +20:48:56 ============================================================================ +20:48:56 + + +waiting on router queue for slot.... +20:48:56 ============================================================================ +20:48:56 Slot Id : <343> +20:48:56 Transaction Type : RESPONSE +20:48:56 Received From : +20:48:56 ============================================================================ +20:48:56 FNo. Len. Field Value +20:48:56 ============================================================================ +20:48:56 [ 1] [ 4] [0810] +20:48:56 [ 7] [ 10] [0320134856] +20:48:56 [ 11] [ 6] [807620] +20:48:56 [ 15] [ 4] [0320] +20:48:56 [ 37] [ 12] [57920807620] +20:48:56 [ 39] [ 2] [00] +20:48:56 [ 70] [ 3] [001] +20:48:56 ============================================================================ +20:48:56 Sending to : +20:48:56 ============================================================================ +20:48:56 + + +waiting on router queue for slot.... +20:49:00 ============================================================================ +20:49:00 Slot Id : <313> +20:49:00 Transaction Type : RESPONSE +20:49:00 Received From : +20:49:00 ============================================================================ +20:49:00 FNo. Len. Field Value +20:49:00 ============================================================================ +20:49:00 [ 1] [ 4] [0210] +20:49:00 [ 2] [ 16] [1808930200048601] +20:49:00 [ 3] [ 6] [011000] +20:49:00 [ 4] [ 12] [000010000000] +20:49:00 [ 6] [ 12] [000010000000] +20:49:00 [ 7] [ 10] [0320204849] +20:49:00 [ 11] [ 6] [844227] +20:49:00 [ 12] [ 6] [204849] +20:49:00 [ 13] [ 4] [0320] +20:49:00 [ 18] [ 4] [6011] +20:49:00 [ 19] [ 3] [418] +20:49:00 [ 22] [ 3] [021] +20:49:00 [ 32] [ 6] [621354] +20:49:00 [ 35] [ 27] [1808930200048601=1803500489] +20:49:00 [ 37] [ 12] [507903919806] +20:49:00 [ 38] [ 6] [844227] +20:49:00 [ 39] [ 2] [00] +20:49:00 [ 41] [ 8] [01010700] +20:49:00 [ 49] [ 3] [418] +20:49:00 [ 52] [ 16] [8A14C6C445E8C978] +20:49:00 [ 54] [ 20] [1001418C000030435700] +20:49:00 ============================================================================ +20:49:00 Sending to : +20:49:00 ============================================================================ +20:49:00 + + +waiting on router queue for slot.... +20:49:02 ============================================================================ +20:49:02 Slot Id : <313> +20:49:02 Transaction Type : RESPONSE +20:49:02 Received From : +20:49:02 ============================================================================ +20:49:02 FNo. Len. Field Value +20:49:02 ============================================================================ +20:49:02 [ 1] [ 4] [0210] +20:49:02 [ 2] [ 16] [1808930200048601] +20:49:02 [ 3] [ 6] [011000] +20:49:02 [ 4] [ 12] [000010000000] +20:49:02 [ 6] [ 12] [000010000000] +20:49:02 [ 7] [ 10] [0320204849] +20:49:02 [ 11] [ 6] [844227] +20:49:02 [ 12] [ 6] [204849] +20:49:02 [ 13] [ 4] [0320] +20:49:02 [ 18] [ 4] [6011] +20:49:02 [ 19] [ 3] [418] +20:49:02 [ 22] [ 3] [021] +20:49:02 [ 32] [ 6] [621354] +20:49:02 [ 35] [ 27] [1808930200048601=1803500489] +20:49:02 [ 37] [ 12] [507903919806] +20:49:02 [ 38] [ 6] [844227] +20:49:02 [ 39] [ 2] [00] +20:49:02 [ 41] [ 8] [01010700] +20:49:02 [ 49] [ 3] [418] +20:49:02 [ 52] [ 16] [8A14C6C445E8C978] +20:49:02 [ 54] [ 20] [1001418C000030435700] +20:49:02 ============================================================================ +20:49:02 Calculate Source COMM Id = 0 +20:49:02 ============================================================================ +20:49:02 + + +waiting on router queue for slot.... +20:49:07 ============================================================================ +20:49:07 Slot Id : <340> +20:49:07 Transaction Type : REQUEST +20:49:07 Received From : +20:49:07 ============================================================================ +20:49:07 FNo. Len. Field Value +20:49:07 ============================================================================ +20:49:07 [ 1] [ 4] [0800] +20:49:07 [ 7] [ 10] [0320014816] +20:49:07 [ 11] [ 6] [158310] +20:49:07 [ 70] [ 3] [301] +20:49:07 ============================================================================ +20:49:07 + + +waiting on router queue for slot.... +20:49:07 Sending to : +20:49:07 ============================================================================ +20:49:07 ============================================================================ +20:49:07 Slot Id : <340> +20:49:07 Transaction Type : RESPONSE +20:49:07 Received From : +20:49:07 ============================================================================ +20:49:07 FNo. Len. Field Value +20:49:07 ============================================================================ +20:49:07 [ 1] [ 4] [0810] +20:49:07 [ 7] [ 10] [0320014816] +20:49:07 [ 11] [ 6] [158310] +20:49:07 [ 39] [ 2] [00] +20:49:07 [ 70] [ 3] [301] +20:49:07 ============================================================================ +20:49:07 Calculate Source COMM Id = 2 +20:49:07 ============================================================================ +20:49:07 + + +waiting on router queue for slot.... +20:49:16 ============================================================================ +20:49:16 Slot Id : <373> +20:49:16 Transaction Type : REQUEST +20:49:16 Received From : +20:49:16 ============================================================================ +20:49:16 FNo. Len. Field Value +20:49:16 ============================================================================ +20:49:16 [ 1] [ 4] [0800] +20:49:16 [ 7] [ 10] [0321040106] +20:49:16 [ 11] [ 6] [210106] +20:49:16 [ 37] [ 12] [57921210106] +20:49:16 [ 70] [ 3] [301] +20:49:16 ============================================================================ +20:49:16 + + +waiting on router queue for slot.... +20:49:16 Sending to : +20:49:16 ============================================================================ +20:49:16 ============================================================================ +20:49:16 Slot Id : <373> +20:49:16 Transaction Type : RESPONSE +20:49:16 Received From : +20:49:16 ============================================================================ +20:49:16 FNo. Len. Field Value +20:49:16 ============================================================================ +20:49:16 [ 1] [ 4] [0810] +20:49:16 [ 7] [ 10] [0321040106] +20:49:16 [ 11] [ 6] [210106] +20:49:16 [ 37] [ 12] [579212101060] +20:49:16 [ 39] [ 2] [00] +20:49:16 [ 70] [ 3] [810] +20:49:16 ============================================================================ +20:49:16 Calculate Source COMM Id = 6 +20:49:16 ============================================================================ +20:49:16 + + +waiting on router queue for slot.... +20:49:20 ============================================================================ +20:49:20 Slot Id : <345> +20:49:20 Transaction Type : REQUEST +20:49:20 Received From : +20:49:20 ============================================================================ +20:49:20 FNo. Len. Field Value +20:49:20 ============================================================================ +20:49:20 [ 1] [ 4] [0800] +20:49:20 [ 7] [ 10] [0320014828] +20:49:20 [ 11] [ 6] [158311] +20:49:20 [ 70] [ 3] [301] +20:49:20 ============================================================================ +20:49:20 + + +waiting on router queue for slot.... +20:49:20 Sending to : +20:49:20 ============================================================================ +20:49:20 ============================================================================ +20:49:20 Slot Id : <345> +20:49:20 Transaction Type : RESPONSE +20:49:20 Received From : +20:49:20 ============================================================================ +20:49:20 FNo. Len. Field Value +20:49:20 ============================================================================ +20:49:20 [ 1] [ 4] [0810] +20:49:20 [ 7] [ 10] [0320014828] +20:49:20 [ 11] [ 6] [158311] +20:49:20 [ 39] [ 2] [00] +20:49:20 [ 70] [ 3] [301] +20:49:20 ============================================================================ +20:49:20 Calculate Source COMM Id = 2 +20:49:20 ============================================================================ +20:49:20 + + +waiting on router queue for slot.... +20:49:32 ============================================================================ +20:49:32 Slot Id : <324> +20:49:32 Transaction Type : REQUEST +20:49:32 Received From : +20:49:32 ============================================================================ +20:49:32 FNo. Len. Field Value +20:49:32 ============================================================================ +20:49:32 [ 1] [ 4] [0800] +20:49:32 [ 7] [ 10] [0320014840] +20:49:32 [ 11] [ 6] [158312] +20:49:32 [ 70] [ 3] [301] +20:49:32 ============================================================================ +20:49:32 + + +waiting on router queue for slot.... +20:49:32 Sending to : +20:49:32 ============================================================================ +20:49:32 ============================================================================ +20:49:32 Slot Id : <324> +20:49:32 Transaction Type : RESPONSE +20:49:32 Received From : +20:49:32 ============================================================================ +20:49:32 FNo. Len. Field Value +20:49:32 ============================================================================ +20:49:32 [ 1] [ 4] [0810] +20:49:32 [ 7] [ 10] [0320014840] +20:49:32 [ 11] [ 6] [158312] +20:49:32 [ 39] [ 2] [00] +20:49:32 [ 70] [ 3] [301] +20:49:32 ============================================================================ +20:49:32 Calculate Source COMM Id = 2 +20:49:32 ============================================================================ +20:49:32 + + +waiting on router queue for slot.... +20:49:35 ============================================================================ +20:49:35 Slot Id : <353> +20:49:35 Transaction Type : REQUEST +20:49:35 Received From : +20:49:35 ============================================================================ +20:49:35 FNo. Len. Field Value +20:49:35 ============================================================================ +20:49:35 [ 1] [ 4] [0200] +20:49:35 [ 2] [ 16] [6213543000172154] +20:49:35 [ 3] [ 6] [010000] +20:49:35 [ 4] [ 12] [000200000000] +20:49:35 [ 7] [ 10] [0320134843] +20:49:35 [ 11] [ 6] [271638] +20:49:35 [ 12] [ 6] [204843] +20:49:35 [ 13] [ 4] [0320] +20:49:35 [ 14] [ 4] [4912] +20:49:35 [ 15] [ 4] [0320] +20:49:35 [ 18] [ 4] [6011] +20:49:35 [ 19] [ 3] [418] +20:49:35 [ 22] [ 3] [021] +20:49:35 [ 25] [ 2] [01] +20:49:35 [ 28] [ 9] [D00002000] +20:49:35 [ 32] [ 6] [180893] +20:49:35 [ 35] [ 32] [6213543000172154=491212017215719] +20:49:35 [ 37] [ 12] [507913271638] +20:49:35 [ 41] [ 8] [0243VTKS] +20:49:35 [ 42] [ 15] [999999 ] +20:49:35 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +20:49:35 [ 49] [ 3] [418] +20:49:35 [ 52] [ 16] [4D8C22C1D435D5A8] +20:49:35 ============================================================================ +20:49:35 + + +waiting on router queue for slot.... +20:49:35 Sending to : +20:49:35 ============================================================================ +20:49:35 Sending to : +20:49:35 ============================================================================ +20:49:36 ============================================================================ +20:49:36 Slot Id : <353> +20:49:36 Transaction Type : REQUEST +20:49:36 Received From : +20:49:36 ============================================================================ +20:49:36 FNo. Len. Field Value +20:49:36 ============================================================================ +20:49:36 [ 1] [ 4] [0200] +20:49:36 [ 2] [ 16] [6213543000172154] +20:49:36 [ 3] [ 6] [010000] +20:49:36 [ 4] [ 12] [000200000000] +20:49:36 [ 7] [ 10] [0320134843] +20:49:36 [ 11] [ 6] [271638] +20:49:36 [ 12] [ 6] [204843] +20:49:36 [ 13] [ 4] [0320] +20:49:36 [ 14] [ 4] [4912] +20:49:36 [ 15] [ 4] [0320] +20:49:36 [ 18] [ 4] [6011] +20:49:36 [ 19] [ 3] [418] +20:49:36 [ 22] [ 3] [021] +20:49:36 [ 25] [ 2] [01] +20:49:36 [ 28] [ 9] [D00002000] +20:49:36 [ 32] [ 6] [180893] +20:49:36 [ 35] [ 32] [6213543000172154=491212017215719] +20:49:36 [ 37] [ 12] [507913271638] +20:49:36 [ 41] [ 8] [0243VTKS] +20:49:36 [ 42] [ 15] [999999 ] +20:49:36 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +20:49:36 [ 49] [ 3] [418] +20:49:36 [ 52] [ 16] [4D8C22C1D435D5A8] +20:49:36 ============================================================================ +20:49:36 + + +waiting on router queue for slot.... +20:49:36 Sending to : +20:49:36 ============================================================================ +20:49:36 ============================================================================ +20:49:36 Slot Id : <353> +20:49:36 Transaction Type : REQUEST +20:49:36 Received From : +20:49:36 ============================================================================ +20:49:36 FNo. Len. Field Value +20:49:36 ============================================================================ +20:49:36 [ 1] [ 4] [0200] +20:49:36 [ 2] [ 16] [6213543000172154] +20:49:36 [ 3] [ 6] [010000] +20:49:36 [ 4] [ 12] [000200000000] +20:49:36 [ 7] [ 10] [0320134843] +20:49:36 [ 11] [ 6] [271638] +20:49:36 [ 12] [ 6] [204843] +20:49:36 [ 13] [ 4] [0320] +20:49:36 [ 14] [ 4] [4912] +20:49:36 [ 15] [ 4] [0320] +20:49:36 [ 18] [ 4] [6011] +20:49:36 [ 19] [ 3] [418] +20:49:36 [ 22] [ 3] [021] +20:49:36 [ 25] [ 2] [01] +20:49:36 [ 28] [ 9] [D00002000] +20:49:36 [ 32] [ 6] [180893] +20:49:36 [ 35] [ 32] [6213543000172154=491212017215719] +20:49:36 [ 37] [ 12] [507913271638] +20:49:36 [ 41] [ 8] [0243VTKS] +20:49:36 [ 42] [ 15] [999999 ] +20:49:36 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +20:49:36 [ 49] [ 3] [418] +20:49:36 [ 52] [ 16] [F3B47DB0569B06D3] +20:49:36 ============================================================================ +20:49:36 + + +waiting on router queue for slot.... +20:49:36 Sending to : <0> +20:49:36 ============================================================================ +20:49:36 ============================================================================ +20:49:36 Slot Id : <353> +20:49:36 Transaction Type : RESPONSE +20:49:36 Received From : +20:49:36 ============================================================================ +20:49:36 FNo. Len. Field Value +20:49:36 ============================================================================ +20:49:36 [ 1] [ 4] [0210] +20:49:36 [ 2] [ 16] [6213543000172154] +20:49:36 [ 3] [ 6] [010000] +20:49:36 [ 4] [ 12] [000200000000] +20:49:36 [ 7] [ 10] [0320134843] +20:49:36 [ 11] [ 6] [271638] +20:49:36 [ 12] [ 6] [204843] +20:49:36 [ 13] [ 4] [0320] +20:49:36 [ 15] [ 4] [0320] +20:49:36 [ 18] [ 4] [6011] +20:49:36 [ 19] [ 3] [418] +20:49:36 [ 22] [ 3] [021] +20:49:36 [ 32] [ 6] [180893] +20:49:36 [ 35] [ 32] [6213543000172154=491212017215719] +20:49:36 [ 37] [ 12] [507913271638] +20:49:36 [ 39] [ 2] [61] +20:49:36 [ 41] [ 8] [0243VTKS] +20:49:36 [ 49] [ 3] [418] +20:49:36 ============================================================================ +20:49:36 Sending to : +20:49:36 ============================================================================ +20:49:36 + + +waiting on router queue for slot.... +20:49:37 ============================================================================ +20:49:37 Slot Id : <353> +20:49:37 Transaction Type : RESPONSE +20:49:37 Received From : +20:49:37 ============================================================================ +20:49:37 FNo. Len. Field Value +20:49:37 ============================================================================ +20:49:37 [ 1] [ 4] [0210] +20:49:37 [ 2] [ 16] [6213543000172154] +20:49:37 [ 3] [ 6] [010000] +20:49:37 [ 4] [ 12] [000200000000] +20:49:37 [ 7] [ 10] [0320134843] +20:49:37 [ 11] [ 6] [271638] +20:49:37 [ 12] [ 6] [204843] +20:49:37 [ 13] [ 4] [0320] +20:49:37 [ 15] [ 4] [0320] +20:49:37 [ 18] [ 4] [6011] +20:49:37 [ 19] [ 3] [418] +20:49:37 [ 22] [ 3] [021] +20:49:37 [ 32] [ 6] [180893] +20:49:37 [ 35] [ 32] [6213543000172154=491212017215719] +20:49:37 [ 37] [ 12] [507913271638] +20:49:37 [ 39] [ 2] [61] +20:49:37 [ 41] [ 8] [0243VTKS] +20:49:37 [ 49] [ 3] [418] +20:49:37 ============================================================================ +20:49:37 Calculate Source COMM Id = 2 +20:49:37 ============================================================================ +20:49:37 + + +waiting on router queue for slot.... +20:49:48 ============================================================================ +20:49:48 Slot Id : <382> +20:49:48 Transaction Type : REQUEST +20:49:48 Received From : +20:49:48 ============================================================================ +20:49:48 FNo. Len. Field Value +20:49:48 ============================================================================ +20:49:48 [ 1] [ 4] [0800] +20:49:48 [ 7] [ 10] [0320014856] +20:49:48 [ 11] [ 6] [158313] +20:49:48 [ 70] [ 3] [301] +20:49:48 ============================================================================ +20:49:48 + + +waiting on router queue for slot.... +20:49:48 Sending to : +20:49:48 ============================================================================ +20:49:48 ============================================================================ +20:49:48 Slot Id : <382> +20:49:48 Transaction Type : RESPONSE +20:49:48 Received From : +20:49:48 ============================================================================ +20:49:48 FNo. Len. Field Value +20:49:48 ============================================================================ +20:49:48 [ 1] [ 4] [0810] +20:49:48 [ 7] [ 10] [0320014856] +20:49:48 [ 11] [ 6] [158313] +20:49:48 [ 39] [ 2] [00] +20:49:48 [ 70] [ 3] [301] +20:49:48 ============================================================================ +20:49:48 Calculate Source COMM Id = 2 +20:49:48 ============================================================================ +20:49:48 + + +waiting on router queue for slot.... +20:49:54 ============================================================================ +20:49:54 Slot Id : <363> +20:49:54 Transaction Type : REQUEST +20:49:54 Received From : +20:49:54 ============================================================================ +20:49:54 FNo. Len. Field Value +20:49:54 ============================================================================ +20:49:54 [ 1] [ 4] [0200] +20:49:54 [ 2] [ 16] [1808930200048601] +20:49:54 [ 3] [ 6] [301000] +20:49:54 [ 4] [ 12] [000000000000] +20:49:54 [ 7] [ 10] [0320204950] +20:49:54 [ 11] [ 6] [844291] +20:49:54 [ 12] [ 6] [204950] +20:49:54 [ 13] [ 4] [0320] +20:49:54 [ 15] [ 4] [0320] +20:49:54 [ 18] [ 4] [6011] +20:49:54 [ 22] [ 3] [900] +20:49:54 [ 25] [ 2] [02] +20:49:54 [ 28] [ 9] [D00000000] +20:49:54 [ 32] [ 6] [621354] +20:49:54 [ 35] [ 27] [1808930200048601=1803500489] +20:49:54 [ 37] [ 12] [507903919807] +20:49:54 [ 41] [ 8] [01010700] +20:49:54 [ 42] [ 15] [NATIVE ] +20:49:54 [ 43] [ 40] [Unitel Xaysetha LAO] +20:49:54 [ 49] [ 3] [418] +20:49:54 [ 52] [ 16] [6C288637B857F27F] +20:49:54 ============================================================================ +20:49:54 + + +waiting on router queue for slot.... +20:49:54 Sending to : +20:49:54 ============================================================================ +20:49:54 Sending to : +20:49:54 ============================================================================ +20:49:54 ============================================================================ +20:49:54 Slot Id : <363> +20:49:54 Transaction Type : REQUEST +20:49:54 Received From : +20:49:54 ============================================================================ +20:49:54 FNo. Len. Field Value +20:49:54 ============================================================================ +20:49:54 [ 1] [ 4] [0200] +20:49:54 [ 2] [ 16] [1808930200048601] +20:49:54 [ 3] [ 6] [301000] +20:49:54 [ 4] [ 12] [000000000000] +20:49:54 [ 7] [ 10] [0320204950] +20:49:54 [ 11] [ 6] [844291] +20:49:54 [ 12] [ 6] [204950] +20:49:54 [ 13] [ 4] [0320] +20:49:54 [ 15] [ 4] [0320] +20:49:54 [ 18] [ 4] [6011] +20:49:54 [ 22] [ 3] [900] +20:49:54 [ 25] [ 2] [02] +20:49:54 [ 28] [ 9] [D00000000] +20:49:54 [ 32] [ 6] [621354] +20:49:54 [ 35] [ 27] [1808930200048601=1803500489] +20:49:54 [ 37] [ 12] [507903919807] +20:49:54 [ 41] [ 8] [01010700] +20:49:54 [ 42] [ 15] [NATIVE ] +20:49:54 [ 43] [ 40] [Unitel Xaysetha LAO] +20:49:54 [ 49] [ 3] [418] +20:49:54 [ 52] [ 16] [6C288637B857F27F] +20:49:54 ============================================================================ +20:49:54 + + +waiting on router queue for slot.... +20:49:54 Sending to : +20:49:54 ============================================================================ +20:49:54 ============================================================================ +20:49:54 Slot Id : <363> +20:49:54 Transaction Type : REQUEST +20:49:54 Received From : +20:49:54 ============================================================================ +20:49:54 FNo. Len. Field Value +20:49:54 ============================================================================ +20:49:54 [ 1] [ 4] [0200] +20:49:54 [ 2] [ 16] [1808930200048601] +20:49:54 [ 3] [ 6] [301000] +20:49:54 [ 4] [ 12] [000000000000] +20:49:54 [ 7] [ 10] [0320204950] +20:49:54 [ 11] [ 6] [844291] +20:49:54 [ 12] [ 6] [204950] +20:49:54 [ 13] [ 4] [0320] +20:49:54 [ 15] [ 4] [0320] +20:49:54 [ 18] [ 4] [6011] +20:49:54 [ 22] [ 3] [900] +20:49:54 [ 25] [ 2] [02] +20:49:54 [ 28] [ 9] [D00000000] +20:49:54 [ 32] [ 6] [621354] +20:49:54 [ 35] [ 27] [1808930200048601=1803500489] +20:49:54 [ 37] [ 12] [507903919807] +20:49:54 [ 41] [ 8] [01010700] +20:49:54 [ 42] [ 15] [NATIVE ] +20:49:54 [ 43] [ 40] [Unitel Xaysetha LAO] +20:49:54 [ 49] [ 3] [418] +20:49:54 [ 52] [ 16] [8A14C6C445E8C978] +20:49:54 ============================================================================ +20:49:54 + + +waiting on router queue for slot.... +20:49:54 Sending to : <2> +20:49:54 ============================================================================ +20:49:55 ============================================================================ +20:49:55 Slot Id : <344> +20:49:55 Transaction Type : REQUEST +20:49:55 Received From : +20:49:55 ============================================================================ +20:49:55 FNo. Len. Field Value +20:49:55 ============================================================================ +20:49:55 [ 1] [ 4] [0800] +20:49:55 [ 7] [ 10] [0320135742] +20:49:55 [ 11] [ 6] [063078] +20:49:55 [ 37] [ 12] [57920063078] +20:49:55 [ 70] [ 3] [301] +20:49:55 ============================================================================ +20:49:55 + + +waiting on router queue for slot.... +20:49:55 Sending to : +20:49:55 ============================================================================ +20:49:55 ============================================================================ +20:49:55 Slot Id : <344> +20:49:55 Transaction Type : RESPONSE +20:49:55 Received From : +20:49:55 ============================================================================ +20:49:55 FNo. Len. Field Value +20:49:55 ============================================================================ +20:49:55 [ 1] [ 4] [0810] +20:49:55 [ 7] [ 10] [0320135742] +20:49:55 [ 11] [ 6] [063078] +20:49:55 [ 37] [ 12] [579200630780] +20:49:55 [ 39] [ 2] [00] +20:49:55 [ 70] [ 3] [810] +20:49:55 ============================================================================ +20:49:55 Calculate Source COMM Id = 1 +20:49:55 ============================================================================ +20:49:55 + + +waiting on router queue for slot.... +20:49:58 ============================================================================ +20:49:58 Slot Id : <355> +20:49:58 Transaction Type : REQUEST +20:49:58 Received From : +20:49:58 ============================================================================ +20:49:58 FNo. Len. Field Value +20:49:58 ============================================================================ +20:49:58 [ 1] [ 4] [0800] +20:49:58 [ 2] [ 5] [02531] +20:49:58 [ 3] [ 6] [579208] +20:49:58 [ 7] [ 10] [0320134958] +20:49:58 [ 11] [ 6] [807621] +20:49:58 [ 15] [ 10] [0320134958] +20:49:58 [ 37] [ 11] [57920807621] +20:49:58 [ 70] [ 3] [001] +20:49:58 ============================================================================ +20:49:58 + + +waiting on router queue for slot.... +20:49:58 ============================================================================ +20:49:58 Slot Id : <355> +20:49:58 Transaction Type : RESPONSE +20:49:58 Received From : +20:49:58 ============================================================================ +20:49:58 FNo. Len. Field Value +20:49:58 ============================================================================ +20:49:58 [ 1] [ 4] [0810] +20:49:58 [ 7] [ 10] [0320134958] +20:49:58 [ 11] [ 6] [807621] +20:49:58 [ 15] [ 4] [0320] +20:49:58 [ 37] [ 12] [57920807621] +20:49:58 [ 39] [ 2] [00] +20:49:58 [ 70] [ 3] [001] +20:49:58 ============================================================================ +20:49:58 Sending to : +20:49:58 ============================================================================ +20:49:58 + + +waiting on router queue for slot.... +20:50:00 ============================================================================ +20:50:00 Slot Id : <363> +20:50:00 Transaction Type : RESPONSE +20:50:00 Received From : +20:50:00 ============================================================================ +20:50:00 FNo. Len. Field Value +20:50:00 ============================================================================ +20:50:00 [ 1] [ 4] [0210] +20:50:00 [ 2] [ 16] [1808930200048601] +20:50:00 [ 3] [ 6] [301000] +20:50:00 [ 7] [ 10] [0320204950] +20:50:00 [ 11] [ 6] [844291] +20:50:00 [ 12] [ 6] [204950] +20:50:00 [ 13] [ 4] [0320] +20:50:00 [ 14] [ 4] [1803] +20:50:00 [ 19] [ 3] [418] +20:50:00 [ 32] [ 6] [621354] +20:50:00 [ 37] [ 12] [507903919807] +20:50:00 [ 38] [ 6] [844291] +20:50:00 [ 39] [ 2] [00] +20:50:00 [ 41] [ 8] [01010700] +20:50:00 [ 49] [ 3] [418] +20:50:00 [ 52] [ 16] [8A14C6C445E8C978] +20:50:00 [ 54] [ 20] [1002418C000030435700] +20:50:00 ============================================================================ +20:50:00 Sending to : +20:50:00 ============================================================================ +20:50:00 + + +waiting on router queue for slot.... +20:50:01 ============================================================================ +20:50:01 Slot Id : <363> +20:50:01 Transaction Type : RESPONSE +20:50:01 Received From : +20:50:01 ============================================================================ +20:50:01 FNo. Len. Field Value +20:50:01 ============================================================================ +20:50:01 [ 1] [ 4] [0210] +20:50:01 [ 2] [ 16] [1808930200048601] +20:50:01 [ 3] [ 6] [301000] +20:50:01 [ 7] [ 10] [0320204950] +20:50:01 [ 11] [ 6] [844291] +20:50:01 [ 12] [ 6] [204950] +20:50:01 [ 13] [ 4] [0320] +20:50:01 [ 14] [ 4] [1803] +20:50:01 [ 19] [ 3] [418] +20:50:01 [ 32] [ 6] [621354] +20:50:01 [ 37] [ 12] [507903919807] +20:50:01 [ 38] [ 6] [844291] +20:50:01 [ 39] [ 2] [00] +20:50:01 [ 41] [ 8] [01010700] +20:50:01 [ 49] [ 3] [418] +20:50:01 [ 52] [ 16] [8A14C6C445E8C978] +20:50:01 [ 54] [ 20] [1002418C000030435700] +20:50:01 ============================================================================ +20:50:01 Calculate Source COMM Id = 0 +20:50:01 ============================================================================ +20:50:01 + + +waiting on router queue for slot.... +20:50:05 ============================================================================ +20:50:05 Slot Id : <370> +20:50:05 Transaction Type : REQUEST +20:50:05 Received From : +20:50:05 ============================================================================ +20:50:05 FNo. Len. Field Value +20:50:05 ============================================================================ +20:50:05 [ 1] [ 4] [0800] +20:50:05 [ 7] [ 10] [0320014913] +20:50:05 [ 11] [ 6] [158314] +20:50:05 [ 70] [ 3] [301] +20:50:05 ============================================================================ +20:50:05 + + +waiting on router queue for slot.... +20:50:05 Sending to : +20:50:05 ============================================================================ +20:50:05 ============================================================================ +20:50:05 Slot Id : <370> +20:50:05 Transaction Type : RESPONSE +20:50:05 Received From : +20:50:05 ============================================================================ +20:50:05 FNo. Len. Field Value +20:50:05 ============================================================================ +20:50:05 [ 1] [ 4] [0810] +20:50:05 [ 7] [ 10] [0320014913] +20:50:05 [ 11] [ 6] [158314] +20:50:05 [ 39] [ 2] [00] +20:50:05 [ 70] [ 3] [301] +20:50:05 ============================================================================ +20:50:05 Calculate Source COMM Id = 2 +20:50:05 ============================================================================ +20:50:05 + + +waiting on router queue for slot.... +20:50:15 ============================================================================ +20:50:15 Slot Id : <358> +20:50:15 Transaction Type : REQUEST +20:50:15 Received From : +20:50:15 ============================================================================ +20:50:15 FNo. Len. Field Value +20:50:15 ============================================================================ +20:50:15 [ 1] [ 4] [0800] +20:50:15 [ 7] [ 10] [0320014923] +20:50:15 [ 11] [ 6] [158315] +20:50:15 [ 70] [ 3] [301] +20:50:15 ============================================================================ +20:50:15 + + +waiting on router queue for slot.... +20:50:15 Sending to : +20:50:15 ============================================================================ +20:50:15 ============================================================================ +20:50:15 Slot Id : <358> +20:50:15 Transaction Type : RESPONSE +20:50:15 Received From : +20:50:15 ============================================================================ +20:50:15 FNo. Len. Field Value +20:50:15 ============================================================================ +20:50:15 [ 1] [ 4] [0810] +20:50:15 [ 7] [ 10] [0320014923] +20:50:15 [ 11] [ 6] [158315] +20:50:15 [ 39] [ 2] [00] +20:50:15 [ 70] [ 3] [301] +20:50:15 ============================================================================ +20:50:15 Calculate Source COMM Id = 2 +20:50:15 ============================================================================ +20:50:15 + + +waiting on router queue for slot.... +20:50:21 ============================================================================ +20:50:21 Slot Id : <379> +20:50:21 Transaction Type : REQUEST +20:50:21 Received From : +20:50:21 ============================================================================ +20:50:21 FNo. Len. Field Value +20:50:21 ============================================================================ +20:50:21 [ 1] [ 4] [0800] +20:50:21 [ 7] [ 10] [0321040211] +20:50:21 [ 11] [ 6] [210211] +20:50:21 [ 37] [ 12] [57921210211] +20:50:21 [ 70] [ 3] [301] +20:50:21 ============================================================================ +20:50:21 + + +waiting on router queue for slot.... +20:50:21 Sending to : +20:50:21 ============================================================================ +20:50:21 ============================================================================ +20:50:21 Slot Id : <379> +20:50:21 Transaction Type : RESPONSE +20:50:21 Received From : +20:50:21 ============================================================================ +20:50:21 FNo. Len. Field Value +20:50:21 ============================================================================ +20:50:21 [ 1] [ 4] [0810] +20:50:21 [ 7] [ 10] [0321040211] +20:50:21 [ 11] [ 6] [210211] +20:50:21 [ 37] [ 12] [579212102110] +20:50:21 [ 39] [ 2] [00] +20:50:21 [ 70] [ 3] [810] +20:50:21 ============================================================================ +20:50:21 Calculate Source COMM Id = 6 +20:50:21 ============================================================================ +20:50:21 + + +waiting on router queue for slot.... +20:50:25 ============================================================================ +20:50:25 Slot Id : <369> +20:50:25 Transaction Type : REQUEST +20:50:25 Received From : +20:50:25 ============================================================================ +20:50:25 FNo. Len. Field Value +20:50:25 ============================================================================ +20:50:25 [ 1] [ 4] [0800] +20:50:25 [ 7] [ 10] [0320014933] +20:50:25 [ 11] [ 6] [158316] +20:50:25 [ 70] [ 3] [301] +20:50:25 ============================================================================ +20:50:25 + + +waiting on router queue for slot.... +20:50:25 Sending to : +20:50:25 ============================================================================ +20:50:25 ============================================================================ +20:50:25 Slot Id : <369> +20:50:25 Transaction Type : RESPONSE +20:50:25 Received From : +20:50:25 ============================================================================ +20:50:25 FNo. Len. Field Value +20:50:25 ============================================================================ +20:50:25 [ 1] [ 4] [0810] +20:50:25 [ 7] [ 10] [0320014933] +20:50:25 [ 11] [ 6] [158316] +20:50:25 [ 39] [ 2] [00] +20:50:25 [ 70] [ 3] [301] +20:50:25 ============================================================================ +20:50:25 Calculate Source COMM Id = 2 +20:50:25 ============================================================================ +20:50:25 + + +waiting on router queue for slot.... +20:50:34 ============================================================================ +20:50:34 Slot Id : <360> +20:50:34 Transaction Type : REQUEST +20:50:34 Received From : +20:50:34 ============================================================================ +20:50:34 FNo. Len. Field Value +20:50:34 ============================================================================ +20:50:34 [ 1] [ 4] [0200] +20:50:34 [ 2] [ 16] [6213543000172154] +20:50:34 [ 3] [ 6] [010000] +20:50:34 [ 4] [ 12] [000100000000] +20:50:34 [ 7] [ 10] [0320134941] +20:50:34 [ 11] [ 6] [271641] +20:50:34 [ 12] [ 6] [204941] +20:50:34 [ 13] [ 4] [0320] +20:50:34 [ 14] [ 4] [4912] +20:50:34 [ 15] [ 4] [0320] +20:50:34 [ 18] [ 4] [6011] +20:50:34 [ 19] [ 3] [418] +20:50:34 [ 22] [ 3] [021] +20:50:34 [ 25] [ 2] [01] +20:50:34 [ 28] [ 9] [D00002000] +20:50:34 [ 32] [ 6] [180893] +20:50:34 [ 35] [ 32] [6213543000172154=491212017215719] +20:50:34 [ 37] [ 12] [507913271641] +20:50:34 [ 41] [ 8] [0243VTKS] +20:50:34 [ 42] [ 15] [999999 ] +20:50:34 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +20:50:34 [ 49] [ 3] [418] +20:50:34 [ 52] [ 16] [4D8C22C1D435D5A8] +20:50:34 ============================================================================ +20:50:34 + + +waiting on router queue for slot.... +20:50:34 Sending to : +20:50:34 ============================================================================ +20:50:34 Sending to : +20:50:34 ============================================================================ +20:50:34 ============================================================================ +20:50:34 Slot Id : <360> +20:50:34 Transaction Type : REQUEST +20:50:34 Received From : +20:50:34 ============================================================================ +20:50:34 FNo. Len. Field Value +20:50:34 ============================================================================ +20:50:34 [ 1] [ 4] [0200] +20:50:34 [ 2] [ 16] [6213543000172154] +20:50:34 [ 3] [ 6] [010000] +20:50:34 [ 4] [ 12] [000100000000] +20:50:34 [ 7] [ 10] [0320134941] +20:50:34 [ 11] [ 6] [271641] +20:50:34 [ 12] [ 6] [204941] +20:50:34 [ 13] [ 4] [0320] +20:50:34 [ 14] [ 4] [4912] +20:50:34 [ 15] [ 4] [0320] +20:50:34 [ 18] [ 4] [6011] +20:50:34 [ 19] [ 3] [418] +20:50:34 [ 22] [ 3] [021] +20:50:34 [ 25] [ 2] [01] +20:50:34 [ 28] [ 9] [D00002000] +20:50:34 [ 32] [ 6] [180893] +20:50:34 [ 35] [ 32] [6213543000172154=491212017215719] +20:50:34 [ 37] [ 12] [507913271641] +20:50:34 [ 41] [ 8] [0243VTKS] +20:50:34 [ 42] [ 15] [999999 ] +20:50:34 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +20:50:34 [ 49] [ 3] [418] +20:50:34 [ 52] [ 16] [4D8C22C1D435D5A8] +20:50:34 ============================================================================ +20:50:34 + + +waiting on router queue for slot.... +20:50:34 Sending to : +20:50:34 ============================================================================ +20:50:34 ============================================================================ +20:50:34 Slot Id : <360> +20:50:34 Transaction Type : REQUEST +20:50:34 Received From : +20:50:34 ============================================================================ +20:50:34 FNo. Len. Field Value +20:50:34 ============================================================================ +20:50:34 [ 1] [ 4] [0200] +20:50:34 [ 2] [ 16] [6213543000172154] +20:50:34 [ 3] [ 6] [010000] +20:50:34 [ 4] [ 12] [000100000000] +20:50:34 [ 7] [ 10] [0320134941] +20:50:34 [ 11] [ 6] [271641] +20:50:34 [ 12] [ 6] [204941] +20:50:34 [ 13] [ 4] [0320] +20:50:34 [ 14] [ 4] [4912] +20:50:34 [ 15] [ 4] [0320] +20:50:34 [ 18] [ 4] [6011] +20:50:34 [ 19] [ 3] [418] +20:50:34 [ 22] [ 3] [021] +20:50:34 [ 25] [ 2] [01] +20:50:34 [ 28] [ 9] [D00002000] +20:50:34 [ 32] [ 6] [180893] +20:50:34 [ 35] [ 32] [6213543000172154=491212017215719] +20:50:34 [ 37] [ 12] [507913271641] +20:50:34 [ 41] [ 8] [0243VTKS] +20:50:34 [ 42] [ 15] [999999 ] +20:50:34 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +20:50:34 [ 49] [ 3] [418] +20:50:34 [ 52] [ 16] [F3B47DB0569B06D3] +20:50:34 ============================================================================ +20:50:34 + + +waiting on router queue for slot.... +20:50:34 Sending to : <0> +20:50:34 ============================================================================ +20:50:35 ============================================================================ +20:50:35 Slot Id : <360> +20:50:35 Transaction Type : RESPONSE +20:50:35 Received From : +20:50:35 ============================================================================ +20:50:35 FNo. Len. Field Value +20:50:35 ============================================================================ +20:50:35 [ 1] [ 4] [0210] +20:50:35 [ 2] [ 16] [6213543000172154] +20:50:35 [ 3] [ 6] [010000] +20:50:35 [ 4] [ 12] [000100000000] +20:50:35 [ 7] [ 10] [0320134941] +20:50:35 [ 11] [ 6] [271641] +20:50:35 [ 12] [ 6] [204941] +20:50:35 [ 13] [ 4] [0320] +20:50:35 [ 15] [ 4] [0320] +20:50:35 [ 18] [ 4] [6011] +20:50:35 [ 19] [ 3] [418] +20:50:35 [ 32] [ 6] [180893] +20:50:35 [ 35] [ 32] [6213543000172154=491212017215719] +20:50:35 [ 37] [ 12] [507913271641] +20:50:35 [ 38] [ 6] [197889] +20:50:35 [ 39] [ 2] [00] +20:50:35 [ 41] [ 8] [0243VTKS] +20:50:35 [ 49] [ 3] [418] +20:50:35 [ 54] [ 40] [0001418C0002973588540002418C000197158854] +20:50:35 ============================================================================ +20:50:35 Sending to : +20:50:35 ============================================================================ +20:50:35 + + +waiting on router queue for slot.... +20:50:36 ============================================================================ +20:50:36 Slot Id : <360> +20:50:36 Transaction Type : RESPONSE +20:50:36 Received From : +20:50:36 ============================================================================ +20:50:36 FNo. Len. Field Value +20:50:36 ============================================================================ +20:50:36 [ 1] [ 4] [0210] +20:50:36 [ 2] [ 16] [6213543000172154] +20:50:36 [ 3] [ 6] [010000] +20:50:36 [ 4] [ 12] [000100000000] +20:50:36 [ 7] [ 10] [0320134941] +20:50:36 [ 11] [ 6] [271641] +20:50:36 [ 12] [ 6] [204941] +20:50:36 [ 13] [ 4] [0320] +20:50:36 [ 15] [ 4] [0320] +20:50:36 [ 18] [ 4] [6011] +20:50:36 [ 19] [ 3] [418] +20:50:36 [ 32] [ 6] [180893] +20:50:36 [ 35] [ 32] [6213543000172154=491212017215719] +20:50:36 [ 37] [ 12] [507913271641] +20:50:36 [ 38] [ 6] [197889] +20:50:36 [ 39] [ 2] [00] +20:50:36 [ 41] [ 8] [0243VTKS] +20:50:36 [ 49] [ 3] [418] +20:50:36 [ 54] [ 40] [0001418C0002973588540002418C000197158854] +20:50:36 ============================================================================ +20:50:36 Calculate Source COMM Id = 2 +20:50:36 ============================================================================ +20:50:36 + + +waiting on router queue for slot.... +20:50:40 ============================================================================ +20:50:40 Slot Id : <354> +20:50:40 Transaction Type : REQUEST +20:50:40 Received From : +20:50:40 ============================================================================ +20:50:40 FNo. Len. Field Value +20:50:40 ============================================================================ +20:50:40 [ 1] [ 4] [0200] +20:50:40 [ 2] [ 16] [6213544002191226] +20:50:40 [ 3] [ 6] [300000] +20:50:40 [ 4] [ 12] [000000000000] +20:50:40 [ 7] [ 10] [0320204831] +20:50:40 [ 11] [ 6] [957415] +20:50:40 [ 12] [ 6] [204831] +20:50:40 [ 13] [ 4] [0320] +20:50:40 [ 15] [ 4] [0320] +20:50:40 [ 18] [ 4] [6011] +20:50:40 [ 19] [ 3] [418] +20:50:40 [ 22] [ 3] [021] +20:50:40 [ 25] [ 2] [01] +20:50:40 [ 28] [ 9] [D00000000] +20:50:40 [ 32] [ 6] [668899] +20:50:40 [ 35] [ 32] [6213544002191226=491212019122762] +20:50:40 [ 37] [ 12] [507900158541] +20:50:40 [ 41] [ 8] [03020006] +20:50:40 [ 42] [ 15] [APT ] +20:50:40 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:50:40 [ 49] [ 3] [418] +20:50:40 [ 52] [ 16] [26B9426609BEA37B] +20:50:40 ============================================================================ +20:50:40 + + +waiting on router queue for slot.... +20:50:40 Sending to : +20:50:40 ============================================================================ +20:50:40 Sending to : +20:50:40 ============================================================================ +20:50:40 ============================================================================ +20:50:40 Slot Id : <354> +20:50:40 Transaction Type : REQUEST +20:50:40 Received From : +20:50:40 ============================================================================ +20:50:40 FNo. Len. Field Value +20:50:40 ============================================================================ +20:50:40 [ 1] [ 4] [0200] +20:50:40 [ 2] [ 16] [6213544002191226] +20:50:40 [ 3] [ 6] [300000] +20:50:40 [ 4] [ 12] [000000000000] +20:50:40 [ 7] [ 10] [0320204831] +20:50:40 [ 11] [ 6] [957415] +20:50:40 [ 12] [ 6] [204831] +20:50:40 [ 13] [ 4] [0320] +20:50:40 [ 15] [ 4] [0320] +20:50:40 [ 18] [ 4] [6011] +20:50:40 [ 19] [ 3] [418] +20:50:40 [ 22] [ 3] [021] +20:50:40 [ 25] [ 2] [01] +20:50:40 [ 28] [ 9] [D00000000] +20:50:40 [ 32] [ 6] [668899] +20:50:40 [ 35] [ 32] [6213544002191226=491212019122762] +20:50:40 [ 37] [ 12] [507900158541] +20:50:40 [ 41] [ 8] [03020006] +20:50:40 [ 42] [ 15] [APT ] +20:50:40 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:50:40 [ 49] [ 3] [418] +20:50:40 [ 52] [ 16] [26B9426609BEA37B] +20:50:40 ============================================================================ +20:50:40 + + +waiting on router queue for slot.... +20:50:40 Sending to : +20:50:40 ============================================================================ +20:50:40 ============================================================================ +20:50:40 Slot Id : <354> +20:50:40 Transaction Type : REQUEST +20:50:40 Received From : +20:50:40 ============================================================================ +20:50:40 FNo. Len. Field Value +20:50:40 ============================================================================ +20:50:40 [ 1] [ 4] [0200] +20:50:40 [ 2] [ 16] [6213544002191226] +20:50:40 [ 3] [ 6] [300000] +20:50:40 [ 4] [ 12] [000000000000] +20:50:40 [ 7] [ 10] [0320204831] +20:50:40 [ 11] [ 6] [957415] +20:50:40 [ 12] [ 6] [204831] +20:50:40 [ 13] [ 4] [0320] +20:50:40 [ 15] [ 4] [0320] +20:50:40 [ 18] [ 4] [6011] +20:50:40 [ 19] [ 3] [418] +20:50:40 [ 22] [ 3] [021] +20:50:40 [ 25] [ 2] [01] +20:50:40 [ 28] [ 9] [D00000000] +20:50:40 [ 32] [ 6] [668899] +20:50:40 [ 35] [ 32] [6213544002191226=491212019122762] +20:50:40 [ 37] [ 12] [507900158541] +20:50:40 [ 41] [ 8] [03020006] +20:50:40 [ 42] [ 15] [APT ] +20:50:40 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:50:40 [ 49] [ 3] [418] +20:50:40 [ 52] [ 16] [17E29E153248503B] +20:50:40 ============================================================================ +20:50:40 + + +waiting on router queue for slot.... +20:50:40 Sending to : <0> +20:50:40 ============================================================================ +20:50:40 ============================================================================ +20:50:40 Slot Id : <354> +20:50:40 Transaction Type : RESPONSE +20:50:40 Received From : +20:50:40 ============================================================================ +20:50:40 FNo. Len. Field Value +20:50:40 ============================================================================ +20:50:40 [ 1] [ 4] [0210] +20:50:40 [ 2] [ 16] [6213544002191226] +20:50:40 [ 3] [ 6] [300000] +20:50:40 [ 4] [ 12] [000000000000] +20:50:40 [ 7] [ 10] [0320204831] +20:50:40 [ 11] [ 6] [957415] +20:50:40 [ 12] [ 6] [204831] +20:50:40 [ 13] [ 4] [0320] +20:50:40 [ 15] [ 4] [0320] +20:50:40 [ 18] [ 4] [6011] +20:50:40 [ 19] [ 3] [418] +20:50:40 [ 22] [ 3] [021] +20:50:40 [ 32] [ 6] [668899] +20:50:40 [ 35] [ 32] [6213544002191226=491212019122762] +20:50:40 [ 37] [ 12] [507900158541] +20:50:40 [ 38] [ 6] [205037] +20:50:40 [ 39] [ 2] [55] +20:50:40 [ 41] [ 8] [03020006] +20:50:40 [ 49] [ 3] [418] +20:50:40 ============================================================================ +20:50:40 Sending to : +20:50:40 ============================================================================ +20:50:40 + + +waiting on router queue for slot.... +20:50:41 ============================================================================ +20:50:41 Slot Id : <354> +20:50:41 Transaction Type : RESPONSE +20:50:41 Received From : +20:50:41 ============================================================================ +20:50:41 FNo. Len. Field Value +20:50:41 ============================================================================ +20:50:41 [ 1] [ 4] [0210] +20:50:41 [ 2] [ 16] [6213544002191226] +20:50:41 [ 3] [ 6] [300000] +20:50:41 [ 4] [ 12] [000000000000] +20:50:41 [ 7] [ 10] [0320204831] +20:50:41 [ 11] [ 6] [957415] +20:50:41 [ 12] [ 6] [204831] +20:50:41 [ 13] [ 4] [0320] +20:50:41 [ 15] [ 4] [0320] +20:50:41 [ 18] [ 4] [6011] +20:50:41 [ 19] [ 3] [418] +20:50:41 [ 22] [ 3] [021] +20:50:41 [ 32] [ 6] [668899] +20:50:41 [ 35] [ 32] [6213544002191226=491212019122762] +20:50:41 [ 37] [ 12] [507900158541] +20:50:41 [ 38] [ 6] [205037] +20:50:41 [ 39] [ 2] [55] +20:50:41 [ 41] [ 8] [03020006] +20:50:41 [ 49] [ 3] [418] +20:50:41 ============================================================================ +20:50:41 Calculate Source COMM Id = 4 +20:50:41 ============================================================================ +20:50:41 + + +waiting on router queue for slot.... +20:50:51 ============================================================================ +20:50:51 Slot Id : <338> +20:50:51 Transaction Type : REQUEST +20:50:51 Received From : +20:50:51 ============================================================================ +20:50:51 FNo. Len. Field Value +20:50:51 ============================================================================ +20:50:51 [ 1] [ 4] [0800] +20:50:51 [ 7] [ 10] [0320015000] +20:50:51 [ 11] [ 6] [158317] +20:50:51 [ 70] [ 3] [301] +20:50:51 ============================================================================ +20:50:51 + + +waiting on router queue for slot.... +20:50:51 Sending to : +20:50:51 ============================================================================ +20:50:51 ============================================================================ +20:50:51 Slot Id : <338> +20:50:51 Transaction Type : RESPONSE +20:50:51 Received From : +20:50:51 ============================================================================ +20:50:51 FNo. Len. Field Value +20:50:51 ============================================================================ +20:50:51 [ 1] [ 4] [0810] +20:50:51 [ 7] [ 10] [0320015000] +20:50:51 [ 11] [ 6] [158317] +20:50:51 [ 39] [ 2] [00] +20:50:51 [ 70] [ 3] [301] +20:50:51 ============================================================================ +20:50:51 Calculate Source COMM Id = 2 +20:50:51 ============================================================================ +20:50:51 + + +waiting on router queue for slot.... +20:51:00 ============================================================================ +20:51:00 Slot Id : <396> +20:51:00 Transaction Type : REQUEST +20:51:00 Received From : +20:51:00 ============================================================================ +20:51:00 FNo. Len. Field Value +20:51:00 ============================================================================ +20:51:00 [ 1] [ 4] [0800] +20:51:00 [ 2] [ 5] [02531] +20:51:00 [ 3] [ 6] [579208] +20:51:00 [ 7] [ 10] [0320135100] +20:51:00 [ 11] [ 6] [807622] +20:51:00 [ 15] [ 10] [0320135100] +20:51:00 [ 37] [ 11] [57920807622] +20:51:00 [ 70] [ 3] [001] +20:51:00 ============================================================================ +20:51:00 + + +waiting on router queue for slot.... +20:51:00 ============================================================================ +20:51:00 Slot Id : <396> +20:51:00 Transaction Type : RESPONSE +20:51:00 Received From : +20:51:00 ============================================================================ +20:51:00 FNo. Len. Field Value +20:51:00 ============================================================================ +20:51:00 [ 1] [ 4] [0810] +20:51:00 [ 7] [ 10] [0320135100] +20:51:00 [ 11] [ 6] [807622] +20:51:00 [ 15] [ 4] [0320] +20:51:00 [ 37] [ 12] [57920807622] +20:51:00 [ 39] [ 2] [00] +20:51:00 [ 70] [ 3] [001] +20:51:00 ============================================================================ +20:51:00 Sending to : +20:51:00 ============================================================================ +20:51:00 + + +waiting on router queue for slot.... +20:51:02 ============================================================================ +20:51:02 Slot Id : <390> +20:51:02 Transaction Type : REQUEST +20:51:02 Received From : +20:51:02 ============================================================================ +20:51:02 FNo. Len. Field Value +20:51:02 ============================================================================ +20:51:02 [ 1] [ 4] [0800] +20:51:02 [ 7] [ 10] [0320015011] +20:51:02 [ 11] [ 6] [158318] +20:51:02 [ 70] [ 3] [301] +20:51:02 ============================================================================ +20:51:02 + + +waiting on router queue for slot.... +20:51:02 Sending to : +20:51:02 ============================================================================ +20:51:02 ============================================================================ +20:51:02 Slot Id : <390> +20:51:02 Transaction Type : RESPONSE +20:51:02 Received From : +20:51:02 ============================================================================ +20:51:02 FNo. Len. Field Value +20:51:02 ============================================================================ +20:51:02 [ 1] [ 4] [0810] +20:51:02 [ 7] [ 10] [0320015011] +20:51:02 [ 11] [ 6] [158318] +20:51:02 [ 39] [ 2] [00] +20:51:02 [ 70] [ 3] [301] +20:51:02 ============================================================================ +20:51:02 Calculate Source COMM Id = 2 +20:51:02 ============================================================================ +20:51:02 + + +waiting on router queue for slot.... +20:51:19 ============================================================================ +20:51:19 Slot Id : <374> +20:51:19 Transaction Type : REQUEST +20:51:19 Received From : +20:51:19 ============================================================================ +20:51:19 FNo. Len. Field Value +20:51:19 ============================================================================ +20:51:19 [ 1] [ 4] [0800] +20:51:19 [ 7] [ 10] [0320015027] +20:51:19 [ 11] [ 6] [158319] +20:51:19 [ 70] [ 3] [301] +20:51:19 ============================================================================ +20:51:19 + + +waiting on router queue for slot.... +20:51:19 Sending to : +20:51:19 ============================================================================ +20:51:19 ============================================================================ +20:51:19 Slot Id : <374> +20:51:19 Transaction Type : RESPONSE +20:51:19 Received From : +20:51:19 ============================================================================ +20:51:19 FNo. Len. Field Value +20:51:19 ============================================================================ +20:51:19 [ 1] [ 4] [0810] +20:51:19 [ 7] [ 10] [0320015027] +20:51:19 [ 11] [ 6] [158319] +20:51:19 [ 39] [ 2] [00] +20:51:19 [ 70] [ 3] [301] +20:51:19 ============================================================================ +20:51:19 Calculate Source COMM Id = 2 +20:51:19 ============================================================================ +20:51:19 + + +waiting on router queue for slot.... +20:51:21 ============================================================================ +20:51:21 Slot Id : <361> +20:51:21 Transaction Type : REQUEST +20:51:21 Received From : +20:51:21 ============================================================================ +20:51:21 FNo. Len. Field Value +20:51:21 ============================================================================ +20:51:21 [ 1] [ 4] [0800] +20:51:21 [ 7] [ 10] [0320134912] +20:51:21 [ 11] [ 6] [010737] +20:51:21 [ 37] [ 12] [57920010737] +20:51:21 [ 70] [ 3] [301] +20:51:21 ============================================================================ +20:51:21 + + +waiting on router queue for slot.... +20:51:21 Sending to : +20:51:21 ============================================================================ +20:51:21 ============================================================================ +20:51:21 Slot Id : <361> +20:51:21 Transaction Type : RESPONSE +20:51:21 Received From : +20:51:21 ============================================================================ +20:51:21 FNo. Len. Field Value +20:51:21 ============================================================================ +20:51:21 [ 1] [ 4] [0810] +20:51:21 [ 7] [ 10] [0320134912] +20:51:21 [ 11] [ 6] [010737] +20:51:21 [ 37] [ 12] [579200107370] +20:51:21 [ 39] [ 2] [00] +20:51:21 [ 70] [ 3] [810] +20:51:21 ============================================================================ +20:51:21 Calculate Source COMM Id = 4 +20:51:21 ============================================================================ +20:51:21 + + +waiting on router queue for slot.... +20:51:26 ============================================================================ +20:51:26 Slot Id : <389> +20:51:26 Transaction Type : REQUEST +20:51:26 Received From : +20:51:26 ============================================================================ +20:51:26 FNo. Len. Field Value +20:51:26 ============================================================================ +20:51:26 [ 1] [ 4] [0800] +20:51:26 [ 7] [ 10] [0321040316] +20:51:26 [ 11] [ 6] [210316] +20:51:26 [ 37] [ 12] [57921210316] +20:51:26 [ 70] [ 3] [301] +20:51:26 ============================================================================ +20:51:26 + + +waiting on router queue for slot.... +20:51:26 Sending to : +20:51:26 ============================================================================ +20:51:26 ============================================================================ +20:51:26 Slot Id : <389> +20:51:26 Transaction Type : RESPONSE +20:51:26 Received From : +20:51:26 ============================================================================ +20:51:26 FNo. Len. Field Value +20:51:26 ============================================================================ +20:51:26 [ 1] [ 4] [0810] +20:51:26 [ 7] [ 10] [0321040316] +20:51:26 [ 11] [ 6] [210316] +20:51:26 [ 37] [ 12] [579212103160] +20:51:26 [ 39] [ 2] [00] +20:51:26 [ 70] [ 3] [810] +20:51:26 ============================================================================ +20:51:26 Calculate Source COMM Id = 6 +20:51:26 ============================================================================ +20:51:26 + + +waiting on router queue for slot.... +20:51:34 ============================================================================ +20:51:34 Slot Id : <351> +20:51:34 Transaction Type : REQUEST +20:51:34 Received From : +20:51:34 ============================================================================ +20:51:34 FNo. Len. Field Value +20:51:34 ============================================================================ +20:51:34 [ 1] [ 4] [0800] +20:51:34 [ 7] [ 10] [0320015042] +20:51:34 [ 11] [ 6] [158320] +20:51:34 [ 70] [ 3] [301] +20:51:34 ============================================================================ +20:51:34 + + +waiting on router queue for slot.... +20:51:34 Sending to : +20:51:34 ============================================================================ +20:51:34 ============================================================================ +20:51:34 Slot Id : <351> +20:51:34 Transaction Type : RESPONSE +20:51:34 Received From : +20:51:34 ============================================================================ +20:51:34 FNo. Len. Field Value +20:51:34 ============================================================================ +20:51:34 [ 1] [ 4] [0810] +20:51:34 [ 7] [ 10] [0320015042] +20:51:34 [ 11] [ 6] [158320] +20:51:34 [ 39] [ 2] [00] +20:51:34 [ 70] [ 3] [301] +20:51:34 ============================================================================ +20:51:34 Calculate Source COMM Id = 2 +20:51:34 ============================================================================ +20:51:34 + + +waiting on router queue for slot.... +20:51:34 ============================================================================ +20:51:34 Slot Id : <410> +20:51:34 Transaction Type : REQUEST +20:51:34 Received From : +20:51:34 ============================================================================ +20:51:34 FNo. Len. Field Value +20:51:34 ============================================================================ +20:51:34 [ 1] [ 4] [0200] +20:51:34 [ 2] [ 16] [6213544002191226] +20:51:34 [ 3] [ 6] [302000] +20:51:34 [ 4] [ 12] [000000000000] +20:51:34 [ 7] [ 10] [0320204925] +20:51:34 [ 11] [ 6] [957427] +20:51:34 [ 12] [ 6] [204925] +20:51:34 [ 13] [ 4] [0320] +20:51:34 [ 15] [ 4] [0320] +20:51:34 [ 18] [ 4] [6011] +20:51:34 [ 19] [ 3] [418] +20:51:34 [ 22] [ 3] [021] +20:51:34 [ 25] [ 2] [01] +20:51:34 [ 28] [ 9] [D00000000] +20:51:34 [ 32] [ 6] [668899] +20:51:34 [ 35] [ 32] [6213544002191226=491212019122762] +20:51:34 [ 37] [ 12] [507900158543] +20:51:34 [ 41] [ 8] [03020006] +20:51:34 [ 42] [ 15] [APT ] +20:51:34 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:51:34 [ 49] [ 3] [418] +20:51:34 [ 52] [ 16] [26B9426609BEA37B] +20:51:34 ============================================================================ +20:51:34 + + +waiting on router queue for slot.... +20:51:34 Sending to : +20:51:34 ============================================================================ +20:51:34 Sending to : +20:51:34 ============================================================================ +20:51:34 ============================================================================ +20:51:34 Slot Id : <410> +20:51:34 Transaction Type : REQUEST +20:51:34 Received From : +20:51:34 ============================================================================ +20:51:34 FNo. Len. Field Value +20:51:34 ============================================================================ +20:51:34 [ 1] [ 4] [0200] +20:51:34 [ 2] [ 16] [6213544002191226] +20:51:34 [ 3] [ 6] [302000] +20:51:34 [ 4] [ 12] [000000000000] +20:51:34 [ 7] [ 10] [0320204925] +20:51:34 [ 11] [ 6] [957427] +20:51:34 [ 12] [ 6] [204925] +20:51:34 [ 13] [ 4] [0320] +20:51:34 [ 15] [ 4] [0320] +20:51:34 [ 18] [ 4] [6011] +20:51:34 [ 19] [ 3] [418] +20:51:34 [ 22] [ 3] [021] +20:51:34 [ 25] [ 2] [01] +20:51:34 [ 28] [ 9] [D00000000] +20:51:34 [ 32] [ 6] [668899] +20:51:34 [ 35] [ 32] [6213544002191226=491212019122762] +20:51:34 [ 37] [ 12] [507900158543] +20:51:34 [ 41] [ 8] [03020006] +20:51:34 [ 42] [ 15] [APT ] +20:51:34 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:51:34 [ 49] [ 3] [418] +20:51:34 [ 52] [ 16] [26B9426609BEA37B] +20:51:34 ============================================================================ +20:51:34 + + +waiting on router queue for slot.... +20:51:34 Sending to : +20:51:34 ============================================================================ +20:51:34 ============================================================================ +20:51:34 Slot Id : <410> +20:51:34 Transaction Type : REQUEST +20:51:34 Received From : +20:51:34 ============================================================================ +20:51:34 FNo. Len. Field Value +20:51:34 ============================================================================ +20:51:34 [ 1] [ 4] [0200] +20:51:34 [ 2] [ 16] [6213544002191226] +20:51:34 [ 3] [ 6] [302000] +20:51:34 [ 4] [ 12] [000000000000] +20:51:34 [ 7] [ 10] [0320204925] +20:51:34 [ 11] [ 6] [957427] +20:51:34 [ 12] [ 6] [204925] +20:51:34 [ 13] [ 4] [0320] +20:51:34 [ 15] [ 4] [0320] +20:51:34 [ 18] [ 4] [6011] +20:51:34 [ 19] [ 3] [418] +20:51:34 [ 22] [ 3] [021] +20:51:34 [ 25] [ 2] [01] +20:51:34 [ 28] [ 9] [D00000000] +20:51:34 [ 32] [ 6] [668899] +20:51:34 [ 35] [ 32] [6213544002191226=491212019122762] +20:51:34 [ 37] [ 12] [507900158543] +20:51:34 [ 41] [ 8] [03020006] +20:51:34 [ 42] [ 15] [APT ] +20:51:34 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:51:34 [ 49] [ 3] [418] +20:51:34 [ 52] [ 16] [17E29E153248503B] +20:51:34 ============================================================================ +20:51:34 + + +waiting on router queue for slot.... +20:51:34 Sending to : <0> +20:51:34 ============================================================================ +20:51:34 ============================================================================ +20:51:34 Slot Id : <410> +20:51:34 Transaction Type : RESPONSE +20:51:34 Received From : +20:51:34 ============================================================================ +20:51:34 FNo. Len. Field Value +20:51:34 ============================================================================ +20:51:34 [ 1] [ 4] [0210] +20:51:34 [ 2] [ 16] [6213544002191226] +20:51:34 [ 3] [ 6] [302000] +20:51:34 [ 4] [ 12] [000000000000] +20:51:34 [ 7] [ 10] [0320204925] +20:51:34 [ 11] [ 6] [957427] +20:51:34 [ 12] [ 6] [204925] +20:51:34 [ 13] [ 4] [0320] +20:51:34 [ 15] [ 4] [0320] +20:51:34 [ 18] [ 4] [6011] +20:51:34 [ 19] [ 3] [418] +20:51:34 [ 22] [ 3] [021] +20:51:34 [ 32] [ 6] [668899] +20:51:34 [ 35] [ 32] [6213544002191226=491212019122762] +20:51:34 [ 37] [ 12] [507900158543] +20:51:34 [ 38] [ 6] [205131] +20:51:34 [ 39] [ 2] [75] +20:51:34 [ 41] [ 8] [03020006] +20:51:34 [ 49] [ 3] [418] +20:51:34 ============================================================================ +20:51:34 Sending to : +20:51:34 ============================================================================ +20:51:34 + + +waiting on router queue for slot.... +20:51:35 ============================================================================ +20:51:35 Slot Id : <410> +20:51:35 Transaction Type : RESPONSE +20:51:35 Received From : +20:51:35 ============================================================================ +20:51:35 FNo. Len. Field Value +20:51:35 ============================================================================ +20:51:35 [ 1] [ 4] [0210] +20:51:35 [ 2] [ 16] [6213544002191226] +20:51:35 [ 3] [ 6] [302000] +20:51:35 [ 4] [ 12] [000000000000] +20:51:35 [ 7] [ 10] [0320204925] +20:51:35 [ 11] [ 6] [957427] +20:51:35 [ 12] [ 6] [204925] +20:51:35 [ 13] [ 4] [0320] +20:51:35 [ 15] [ 4] [0320] +20:51:35 [ 18] [ 4] [6011] +20:51:35 [ 19] [ 3] [418] +20:51:35 [ 22] [ 3] [021] +20:51:35 [ 32] [ 6] [668899] +20:51:35 [ 35] [ 32] [6213544002191226=491212019122762] +20:51:35 [ 37] [ 12] [507900158543] +20:51:35 [ 38] [ 6] [205131] +20:51:35 [ 39] [ 2] [75] +20:51:35 [ 41] [ 8] [03020006] +20:51:35 [ 49] [ 3] [418] +20:51:35 ============================================================================ +20:51:35 Calculate Source COMM Id = 4 +20:51:35 ============================================================================ +20:51:35 + + +waiting on router queue for slot.... +20:51:45 ============================================================================ +20:51:45 Slot Id : <376> +20:51:45 Transaction Type : REQUEST +20:51:45 Received From : +20:51:45 ============================================================================ +20:51:45 FNo. Len. Field Value +20:51:45 ============================================================================ +20:51:45 [ 1] [ 4] [0200] +20:51:45 [ 2] [ 16] [6213543000172154] +20:51:45 [ 3] [ 6] [010000] +20:51:45 [ 4] [ 12] [000100000000] +20:51:45 [ 7] [ 10] [0320135053] +20:51:45 [ 11] [ 6] [271645] +20:51:45 [ 12] [ 6] [205053] +20:51:45 [ 13] [ 4] [0320] +20:51:45 [ 14] [ 4] [4912] +20:51:45 [ 15] [ 4] [0320] +20:51:45 [ 18] [ 4] [6011] +20:51:45 [ 19] [ 3] [418] +20:51:45 [ 22] [ 3] [021] +20:51:45 [ 25] [ 2] [01] +20:51:45 [ 28] [ 9] [D00002000] +20:51:45 [ 32] [ 6] [180893] +20:51:45 [ 35] [ 32] [6213543000172154=491212017215719] +20:51:45 [ 37] [ 12] [507913271645] +20:51:45 [ 41] [ 8] [0243VTKS] +20:51:45 [ 42] [ 15] [999999 ] +20:51:45 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +20:51:45 [ 49] [ 3] [418] +20:51:45 [ 52] [ 16] [4D8C22C1D435D5A8] +20:51:45 ============================================================================ +20:51:45 + + +waiting on router queue for slot.... +20:51:45 Sending to : +20:51:45 ============================================================================ +20:51:45 Sending to : +20:51:45 ============================================================================ +20:51:45 ============================================================================ +20:51:45 Slot Id : <376> +20:51:45 Transaction Type : REQUEST +20:51:45 Received From : +20:51:45 ============================================================================ +20:51:45 FNo. Len. Field Value +20:51:45 ============================================================================ +20:51:45 [ 1] [ 4] [0200] +20:51:45 [ 2] [ 16] [6213543000172154] +20:51:45 [ 3] [ 6] [010000] +20:51:45 [ 4] [ 12] [000100000000] +20:51:45 [ 7] [ 10] [0320135053] +20:51:45 [ 11] [ 6] [271645] +20:51:45 [ 12] [ 6] [205053] +20:51:45 [ 13] [ 4] [0320] +20:51:45 [ 14] [ 4] [4912] +20:51:45 [ 15] [ 4] [0320] +20:51:45 [ 18] [ 4] [6011] +20:51:45 [ 19] [ 3] [418] +20:51:45 [ 22] [ 3] [021] +20:51:45 [ 25] [ 2] [01] +20:51:45 [ 28] [ 9] [D00002000] +20:51:45 [ 32] [ 6] [180893] +20:51:45 [ 35] [ 32] [6213543000172154=491212017215719] +20:51:45 [ 37] [ 12] [507913271645] +20:51:45 [ 41] [ 8] [0243VTKS] +20:51:45 [ 42] [ 15] [999999 ] +20:51:45 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +20:51:45 [ 49] [ 3] [418] +20:51:45 [ 52] [ 16] [4D8C22C1D435D5A8] +20:51:45 ============================================================================ +20:51:45 + + +waiting on router queue for slot.... +20:51:45 Sending to : +20:51:45 ============================================================================ +20:51:45 ============================================================================ +20:51:45 Slot Id : <376> +20:51:45 Transaction Type : REQUEST +20:51:45 Received From : +20:51:45 ============================================================================ +20:51:45 FNo. Len. Field Value +20:51:45 ============================================================================ +20:51:45 [ 1] [ 4] [0200] +20:51:45 [ 2] [ 16] [6213543000172154] +20:51:45 [ 3] [ 6] [010000] +20:51:45 [ 4] [ 12] [000100000000] +20:51:45 [ 7] [ 10] [0320135053] +20:51:45 [ 11] [ 6] [271645] +20:51:45 [ 12] [ 6] [205053] +20:51:45 [ 13] [ 4] [0320] +20:51:45 [ 14] [ 4] [4912] +20:51:45 [ 15] [ 4] [0320] +20:51:45 [ 18] [ 4] [6011] +20:51:45 [ 19] [ 3] [418] +20:51:45 [ 22] [ 3] [021] +20:51:45 [ 25] [ 2] [01] +20:51:45 [ 28] [ 9] [D00002000] +20:51:45 [ 32] [ 6] [180893] +20:51:45 [ 35] [ 32] [6213543000172154=491212017215719] +20:51:45 [ 37] [ 12] [507913271645] +20:51:45 [ 41] [ 8] [0243VTKS] +20:51:45 [ 42] [ 15] [999999 ] +20:51:45 [ 43] [ 40] [ATM VTP KASY SERVICE UNIT LOCATION, Kasy] +20:51:45 [ 49] [ 3] [418] +20:51:45 [ 52] [ 16] [F3B47DB0569B06D3] +20:51:45 ============================================================================ +20:51:45 + + +waiting on router queue for slot.... +20:51:45 Sending to : <0> +20:51:45 ============================================================================ +20:51:46 ============================================================================ +20:51:46 Slot Id : <376> +20:51:46 Transaction Type : RESPONSE +20:51:46 Received From : +20:51:46 ============================================================================ +20:51:46 FNo. Len. Field Value +20:51:46 ============================================================================ +20:51:46 [ 1] [ 4] [0210] +20:51:46 [ 2] [ 16] [6213543000172154] +20:51:46 [ 3] [ 6] [010000] +20:51:46 [ 4] [ 12] [000100000000] +20:51:46 [ 7] [ 10] [0320135053] +20:51:46 [ 11] [ 6] [271645] +20:51:46 [ 12] [ 6] [205053] +20:51:46 [ 13] [ 4] [0320] +20:51:46 [ 15] [ 4] [0320] +20:51:46 [ 18] [ 4] [6011] +20:51:46 [ 19] [ 3] [418] +20:51:46 [ 32] [ 6] [180893] +20:51:46 [ 35] [ 32] [6213543000172154=491212017215719] +20:51:46 [ 37] [ 12] [507913271645] +20:51:46 [ 38] [ 6] [061986] +20:51:46 [ 39] [ 2] [00] +20:51:46 [ 41] [ 8] [0243VTKS] +20:51:46 [ 49] [ 3] [418] +20:51:46 [ 54] [ 40] [0001418C0002973588540002418C000096958854] +20:51:46 ============================================================================ +20:51:46 Sending to : +20:51:46 ============================================================================ +20:51:46 + + +waiting on router queue for slot.... +20:51:47 ============================================================================ +20:51:47 Slot Id : <376> +20:51:47 Transaction Type : RESPONSE +20:51:47 Received From : +20:51:47 ============================================================================ +20:51:47 FNo. Len. Field Value +20:51:47 ============================================================================ +20:51:47 [ 1] [ 4] [0210] +20:51:47 [ 2] [ 16] [6213543000172154] +20:51:47 [ 3] [ 6] [010000] +20:51:47 [ 4] [ 12] [000100000000] +20:51:47 [ 7] [ 10] [0320135053] +20:51:47 [ 11] [ 6] [271645] +20:51:47 [ 12] [ 6] [205053] +20:51:47 [ 13] [ 4] [0320] +20:51:47 [ 15] [ 4] [0320] +20:51:47 [ 18] [ 4] [6011] +20:51:47 [ 19] [ 3] [418] +20:51:47 [ 32] [ 6] [180893] +20:51:47 [ 35] [ 32] [6213543000172154=491212017215719] +20:51:47 [ 37] [ 12] [507913271645] +20:51:47 [ 38] [ 6] [061986] +20:51:47 [ 39] [ 2] [00] +20:51:47 [ 41] [ 8] [0243VTKS] +20:51:47 [ 49] [ 3] [418] +20:51:47 [ 54] [ 40] [0001418C0002973588540002418C000096958854] +20:51:47 ============================================================================ +20:51:47 Calculate Source COMM Id = 2 +20:51:47 ============================================================================ +20:51:47 + + +waiting on router queue for slot.... +20:51:56 ============================================================================ +20:51:56 Slot Id : <359> +20:51:56 Transaction Type : REQUEST +20:51:56 Received From : +20:51:56 ============================================================================ +20:51:56 FNo. Len. Field Value +20:51:56 ============================================================================ +20:51:56 [ 1] [ 4] [0200] +20:51:56 [ 2] [ 16] [1808930300007887] +20:51:56 [ 3] [ 6] [010000] +20:51:56 [ 4] [ 12] [000030000000] +20:51:56 [ 7] [ 10] [0320205153] +20:51:56 [ 11] [ 6] [844408] +20:51:56 [ 12] [ 6] [205153] +20:51:56 [ 13] [ 4] [0320] +20:51:56 [ 15] [ 4] [0320] +20:51:56 [ 18] [ 4] [6011] +20:51:56 [ 22] [ 3] [900] +20:51:56 [ 25] [ 2] [02] +20:51:56 [ 28] [ 9] [D00002000] +20:51:56 [ 32] [ 6] [621354] +20:51:56 [ 35] [ 27] [1808930300007887=1803500857] +20:51:56 [ 37] [ 12] [507903281068] +20:51:56 [ 41] [ 8] [14001000] +20:51:56 [ 42] [ 15] [NATIVE ] +20:51:56 [ 43] [ 40] [Viengchan province MEUANG FEUANLAO] +20:51:56 [ 49] [ 3] [418] +20:51:56 [ 52] [ 16] [5DFDF6BC02A4F1AE] +20:51:56 ============================================================================ +20:51:56 + + +waiting on router queue for slot.... +20:51:56 Sending to : +20:51:56 ============================================================================ +20:51:56 Sending to : +20:51:56 ============================================================================ +20:51:57 ============================================================================ +20:51:57 Slot Id : <359> +20:51:57 Transaction Type : REQUEST +20:51:57 Received From : +20:51:57 ============================================================================ +20:51:57 FNo. Len. Field Value +20:51:57 ============================================================================ +20:51:57 [ 1] [ 4] [0200] +20:51:57 [ 2] [ 16] [1808930300007887] +20:51:57 [ 3] [ 6] [010000] +20:51:57 [ 4] [ 12] [000030000000] +20:51:57 [ 7] [ 10] [0320205153] +20:51:57 [ 11] [ 6] [844408] +20:51:57 [ 12] [ 6] [205153] +20:51:57 [ 13] [ 4] [0320] +20:51:57 [ 15] [ 4] [0320] +20:51:57 [ 18] [ 4] [6011] +20:51:57 [ 22] [ 3] [900] +20:51:57 [ 25] [ 2] [02] +20:51:57 [ 28] [ 9] [D00002000] +20:51:57 [ 32] [ 6] [621354] +20:51:57 [ 35] [ 27] [1808930300007887=1803500857] +20:51:57 [ 37] [ 12] [507903281068] +20:51:57 [ 41] [ 8] [14001000] +20:51:57 [ 42] [ 15] [NATIVE ] +20:51:57 [ 43] [ 40] [Viengchan province MEUANG FEUANLAO] +20:51:57 [ 49] [ 3] [418] +20:51:57 [ 52] [ 16] [5DFDF6BC02A4F1AE] +20:51:57 ============================================================================ +20:51:57 + + +waiting on router queue for slot.... +20:51:57 Sending to : +20:51:57 ============================================================================ +20:51:57 ============================================================================ +20:51:57 Slot Id : <359> +20:51:57 Transaction Type : REQUEST +20:51:57 Received From : +20:51:57 ============================================================================ +20:51:57 FNo. Len. Field Value +20:51:57 ============================================================================ +20:51:57 [ 1] [ 4] [0200] +20:51:57 [ 2] [ 16] [1808930300007887] +20:51:57 [ 3] [ 6] [010000] +20:51:57 [ 4] [ 12] [000030000000] +20:51:57 [ 7] [ 10] [0320205153] +20:51:57 [ 11] [ 6] [844408] +20:51:57 [ 12] [ 6] [205153] +20:51:57 [ 13] [ 4] [0320] +20:51:57 [ 15] [ 4] [0320] +20:51:57 [ 18] [ 4] [6011] +20:51:57 [ 22] [ 3] [900] +20:51:57 [ 25] [ 2] [02] +20:51:57 [ 28] [ 9] [D00002000] +20:51:57 [ 32] [ 6] [621354] +20:51:57 [ 35] [ 27] [1808930300007887=1803500857] +20:51:57 [ 37] [ 12] [507903281068] +20:51:57 [ 41] [ 8] [14001000] +20:51:57 [ 42] [ 15] [NATIVE ] +20:51:57 [ 43] [ 40] [Viengchan province MEUANG FEUANLAO] +20:51:57 [ 49] [ 3] [418] +20:51:57 [ 52] [ 16] [B07684F3A5B3BA32] +20:51:57 ============================================================================ +20:51:57 + + +waiting on router queue for slot.... +20:51:57 Sending to : <2> +20:51:57 ============================================================================ +20:51:57 ============================================================================ +20:51:57 Slot Id : <383> +20:51:57 Transaction Type : REQUEST +20:51:57 Received From : +20:51:57 ============================================================================ +20:51:57 FNo. Len. Field Value +20:51:57 ============================================================================ +20:51:57 [ 1] [ 4] [0200] +20:51:57 [ 2] [ 16] [6213545000045058] +20:51:57 [ 3] [ 6] [010000] +20:51:57 [ 4] [ 12] [000100000000] +20:51:57 [ 7] [ 10] [0320135105] +20:51:57 [ 11] [ 6] [271647] +20:51:57 [ 12] [ 6] [205105] +20:51:57 [ 13] [ 4] [0320] +20:51:57 [ 14] [ 4] [4912] +20:51:57 [ 15] [ 4] [0320] +20:51:57 [ 18] [ 4] [6011] +20:51:57 [ 19] [ 3] [418] +20:51:57 [ 22] [ 3] [021] +20:51:57 [ 25] [ 2] [01] +20:51:57 [ 28] [ 9] [D00002000] +20:51:57 [ 32] [ 6] [180893] +20:51:57 [ 35] [ 32] [6213545000045058=491212014505907] +20:51:57 [ 37] [ 12] [507913271647] +20:51:57 [ 41] [ 8] [0112CPBR] +20:51:57 [ 42] [ 15] [999999 ] +20:51:57 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +20:51:57 [ 49] [ 3] [418] +20:51:57 [ 52] [ 16] [A20E24A848808977] +20:51:57 ============================================================================ +20:51:57 + + +waiting on router queue for slot.... +20:51:57 Sending to : +20:51:57 ============================================================================ +20:51:57 Sending to : +20:51:57 ============================================================================ +20:51:58 ============================================================================ +20:51:58 Slot Id : <383> +20:51:58 Transaction Type : REQUEST +20:51:58 Received From : +20:51:58 ============================================================================ +20:51:58 FNo. Len. Field Value +20:51:58 ============================================================================ +20:51:58 [ 1] [ 4] [0200] +20:51:58 [ 2] [ 16] [6213545000045058] +20:51:58 [ 3] [ 6] [010000] +20:51:58 [ 4] [ 12] [000100000000] +20:51:58 [ 7] [ 10] [0320135105] +20:51:58 [ 11] [ 6] [271647] +20:51:58 [ 12] [ 6] [205105] +20:51:58 [ 13] [ 4] [0320] +20:51:58 [ 14] [ 4] [4912] +20:51:58 [ 15] [ 4] [0320] +20:51:58 [ 18] [ 4] [6011] +20:51:58 [ 19] [ 3] [418] +20:51:58 [ 22] [ 3] [021] +20:51:58 [ 25] [ 2] [01] +20:51:58 [ 28] [ 9] [D00002000] +20:51:58 [ 32] [ 6] [180893] +20:51:58 [ 35] [ 32] [6213545000045058=491212014505907] +20:51:58 [ 37] [ 12] [507913271647] +20:51:58 [ 41] [ 8] [0112CPBR] +20:51:58 [ 42] [ 15] [999999 ] +20:51:58 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +20:51:58 [ 49] [ 3] [418] +20:51:58 [ 52] [ 16] [A20E24A848808977] +20:51:58 ============================================================================ +20:51:58 + + +waiting on router queue for slot.... +20:51:58 Sending to : +20:51:58 ============================================================================ +20:51:58 ============================================================================ +20:51:58 Slot Id : <383> +20:51:58 Transaction Type : REQUEST +20:51:58 Received From : +20:51:58 ============================================================================ +20:51:58 FNo. Len. Field Value +20:51:58 ============================================================================ +20:51:58 [ 1] [ 4] [0200] +20:51:58 [ 2] [ 16] [6213545000045058] +20:51:58 [ 3] [ 6] [010000] +20:51:58 [ 4] [ 12] [000100000000] +20:51:58 [ 7] [ 10] [0320135105] +20:51:58 [ 11] [ 6] [271647] +20:51:58 [ 12] [ 6] [205105] +20:51:58 [ 13] [ 4] [0320] +20:51:58 [ 14] [ 4] [4912] +20:51:58 [ 15] [ 4] [0320] +20:51:58 [ 18] [ 4] [6011] +20:51:58 [ 19] [ 3] [418] +20:51:58 [ 22] [ 3] [021] +20:51:58 [ 25] [ 2] [01] +20:51:58 [ 28] [ 9] [D00002000] +20:51:58 [ 32] [ 6] [180893] +20:51:58 [ 35] [ 32] [6213545000045058=491212014505907] +20:51:58 [ 37] [ 12] [507913271647] +20:51:58 [ 41] [ 8] [0112CPBR] +20:51:58 [ 42] [ 15] [999999 ] +20:51:58 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +20:51:58 [ 49] [ 3] [418] +20:51:58 [ 52] [ 16] [419B1E979D319BA0] +20:51:58 ============================================================================ +20:51:58 + + +waiting on router queue for slot.... +20:51:58 Sending to : <0> +20:51:58 ============================================================================ +20:51:58 ============================================================================ +20:51:58 Slot Id : <383> +20:51:58 Transaction Type : RESPONSE +20:51:58 Received From : +20:51:58 ============================================================================ +20:51:58 FNo. Len. Field Value +20:51:58 ============================================================================ +20:51:58 [ 1] [ 4] [0210] +20:51:58 [ 2] [ 16] [6213545000045058] +20:51:58 [ 3] [ 6] [010000] +20:51:58 [ 4] [ 12] [000100000000] +20:51:58 [ 7] [ 10] [0320135105] +20:51:58 [ 11] [ 6] [271647] +20:51:58 [ 12] [ 6] [205105] +20:51:58 [ 13] [ 4] [0320] +20:51:58 [ 15] [ 4] [0320] +20:51:58 [ 18] [ 4] [6011] +20:51:58 [ 19] [ 3] [418] +20:51:58 [ 32] [ 6] [180893] +20:51:58 [ 35] [ 32] [6213545000045058=491212014505907] +20:51:58 [ 37] [ 12] [507913271647] +20:51:58 [ 38] [ 6] [659144] +20:51:58 [ 39] [ 2] [00] +20:51:58 [ 41] [ 8] [0112CPBR] +20:51:58 [ 49] [ 3] [418] +20:51:58 [ 54] [ 40] [0001418C0001960391280002418C000095839128] +20:51:58 ============================================================================ +20:51:58 Sending to : +20:51:58 ============================================================================ +20:51:58 + + +waiting on router queue for slot.... +20:52:00 ============================================================================ +20:52:00 Slot Id : <383> +20:52:00 Transaction Type : RESPONSE +20:52:00 Received From : +20:52:00 ============================================================================ +20:52:00 FNo. Len. Field Value +20:52:00 ============================================================================ +20:52:00 [ 1] [ 4] [0210] +20:52:00 [ 2] [ 16] [6213545000045058] +20:52:00 [ 3] [ 6] [010000] +20:52:00 [ 4] [ 12] [000100000000] +20:52:00 [ 7] [ 10] [0320135105] +20:52:00 [ 11] [ 6] [271647] +20:52:00 [ 12] [ 6] [205105] +20:52:00 [ 13] [ 4] [0320] +20:52:00 [ 15] [ 4] [0320] +20:52:00 [ 18] [ 4] [6011] +20:52:00 [ 19] [ 3] [418] +20:52:00 [ 32] [ 6] [180893] +20:52:00 [ 35] [ 32] [6213545000045058=491212014505907] +20:52:00 [ 37] [ 12] [507913271647] +20:52:00 [ 38] [ 6] [659144] +20:52:00 [ 39] [ 2] [00] +20:52:00 [ 41] [ 8] [0112CPBR] +20:52:00 [ 49] [ 3] [418] +20:52:00 [ 54] [ 40] [0001418C0001960391280002418C000095839128] +20:52:00 ============================================================================ +20:52:00 Calculate Source COMM Id = 2 +20:52:00 ============================================================================ +20:52:00 + + +waiting on router queue for slot.... +20:52:01 ============================================================================ +20:52:01 Slot Id : <359> +20:52:01 Transaction Type : RESPONSE +20:52:01 Received From : +20:52:01 ============================================================================ +20:52:01 FNo. Len. Field Value +20:52:01 ============================================================================ +20:52:01 [ 1] [ 4] [0210] +20:52:01 [ 2] [ 16] [1808930300007887] +20:52:01 [ 3] [ 6] [010000] +20:52:01 [ 4] [ 12] [000030000000] +20:52:01 [ 6] [ 12] [000030000000] +20:52:01 [ 7] [ 10] [0320205153] +20:52:01 [ 11] [ 6] [844408] +20:52:01 [ 12] [ 6] [205153] +20:52:01 [ 13] [ 4] [0320] +20:52:01 [ 18] [ 4] [6011] +20:52:01 [ 19] [ 3] [418] +20:52:01 [ 22] [ 3] [021] +20:52:01 [ 32] [ 6] [621354] +20:52:01 [ 35] [ 27] [1808930300007887=1803500857] +20:52:01 [ 37] [ 12] [507903281068] +20:52:01 [ 38] [ 6] [844408] +20:52:01 [ 39] [ 2] [00] +20:52:01 [ 41] [ 8] [14001000] +20:52:01 [ 49] [ 3] [418] +20:52:01 [ 52] [ 16] [B07684F3A5B3BA32] +20:52:01 [ 54] [ 20] [1001418C000010906600] +20:52:01 ============================================================================ +20:52:01 Sending to : +20:52:01 ============================================================================ +20:52:01 + + +waiting on router queue for slot.... +20:52:02 ============================================================================ +20:52:02 Slot Id : <395> +20:52:02 Transaction Type : REQUEST +20:52:02 Received From : +20:52:02 ============================================================================ +20:52:02 FNo. Len. Field Value +20:52:02 ============================================================================ +20:52:02 [ 1] [ 4] [0800] +20:52:02 [ 2] [ 5] [02531] +20:52:02 [ 3] [ 6] [579208] +20:52:02 [ 7] [ 10] [0320135202] +20:52:02 [ 11] [ 6] [807623] +20:52:02 [ 15] [ 10] [0320135202] +20:52:02 [ 37] [ 11] [57920807623] +20:52:02 [ 70] [ 3] [001] +20:52:02 ============================================================================ +20:52:02 + + +waiting on router queue for slot.... +20:52:02 ============================================================================ +20:52:02 Slot Id : <395> +20:52:02 Transaction Type : RESPONSE +20:52:02 Received From : +20:52:02 ============================================================================ +20:52:02 FNo. Len. Field Value +20:52:02 ============================================================================ +20:52:02 [ 1] [ 4] [0810] +20:52:02 [ 7] [ 10] [0320135202] +20:52:02 [ 11] [ 6] [807623] +20:52:02 [ 15] [ 4] [0320] +20:52:02 [ 37] [ 12] [57920807623] +20:52:02 [ 39] [ 2] [00] +20:52:02 [ 70] [ 3] [001] +20:52:02 ============================================================================ +20:52:02 Sending to : +20:52:02 ============================================================================ +20:52:02 + + +waiting on router queue for slot.... +20:52:02 ============================================================================ +20:52:02 Slot Id : <359> +20:52:02 Transaction Type : RESPONSE +20:52:02 Received From : +20:52:02 ============================================================================ +20:52:02 FNo. Len. Field Value +20:52:02 ============================================================================ +20:52:02 [ 1] [ 4] [0210] +20:52:02 [ 2] [ 16] [1808930300007887] +20:52:02 [ 3] [ 6] [010000] +20:52:02 [ 4] [ 12] [000030000000] +20:52:02 [ 6] [ 12] [000030000000] +20:52:02 [ 7] [ 10] [0320205153] +20:52:02 [ 11] [ 6] [844408] +20:52:02 [ 12] [ 6] [205153] +20:52:02 [ 13] [ 4] [0320] +20:52:02 [ 18] [ 4] [6011] +20:52:02 [ 19] [ 3] [418] +20:52:02 [ 22] [ 3] [021] +20:52:02 [ 32] [ 6] [621354] +20:52:02 [ 35] [ 27] [1808930300007887=1803500857] +20:52:02 [ 37] [ 12] [507903281068] +20:52:02 [ 38] [ 6] [844408] +20:52:02 [ 39] [ 2] [00] +20:52:02 [ 41] [ 8] [14001000] +20:52:02 [ 49] [ 3] [418] +20:52:02 [ 52] [ 16] [B07684F3A5B3BA32] +20:52:02 [ 54] [ 20] [1001418C000010906600] +20:52:02 ============================================================================ +20:52:02 Calculate Source COMM Id = 0 +20:52:02 ============================================================================ +20:52:02 + + +waiting on router queue for slot.... +20:52:11 ============================================================================ +20:52:11 Slot Id : <400> +20:52:11 Transaction Type : REQUEST +20:52:11 Received From : +20:52:11 ============================================================================ +20:52:11 FNo. Len. Field Value +20:52:11 ============================================================================ +20:52:11 [ 1] [ 4] [0800] +20:52:11 [ 7] [ 10] [0320015119] +20:52:11 [ 11] [ 6] [158321] +20:52:11 [ 70] [ 3] [301] +20:52:11 ============================================================================ +20:52:11 + + +waiting on router queue for slot.... +20:52:11 Sending to : +20:52:11 ============================================================================ +20:52:11 ============================================================================ +20:52:11 Slot Id : <400> +20:52:11 Transaction Type : RESPONSE +20:52:11 Received From : +20:52:11 ============================================================================ +20:52:11 FNo. Len. Field Value +20:52:11 ============================================================================ +20:52:11 [ 1] [ 4] [0810] +20:52:11 [ 7] [ 10] [0320015119] +20:52:11 [ 11] [ 6] [158321] +20:52:11 [ 39] [ 2] [00] +20:52:11 [ 70] [ 3] [301] +20:52:11 ============================================================================ +20:52:11 Calculate Source COMM Id = 2 +20:52:11 ============================================================================ +20:52:11 + + +waiting on router queue for slot.... +20:52:21 ============================================================================ +20:52:21 Slot Id : <393> +20:52:21 Transaction Type : REQUEST +20:52:21 Received From : +20:52:21 ============================================================================ +20:52:21 FNo. Len. Field Value +20:52:21 ============================================================================ +20:52:21 [ 1] [ 4] [0800] +20:52:21 [ 7] [ 10] [0320015130] +20:52:21 [ 11] [ 6] [158322] +20:52:21 [ 70] [ 3] [301] +20:52:21 ============================================================================ +20:52:21 + + +waiting on router queue for slot.... +20:52:21 Sending to : +20:52:21 ============================================================================ +20:52:21 ============================================================================ +20:52:21 Slot Id : <393> +20:52:21 Transaction Type : RESPONSE +20:52:21 Received From : +20:52:21 ============================================================================ +20:52:21 FNo. Len. Field Value +20:52:21 ============================================================================ +20:52:21 [ 1] [ 4] [0810] +20:52:21 [ 7] [ 10] [0320015130] +20:52:21 [ 11] [ 6] [158322] +20:52:21 [ 39] [ 2] [00] +20:52:21 [ 70] [ 3] [301] +20:52:21 ============================================================================ +20:52:21 Calculate Source COMM Id = 2 +20:52:21 ============================================================================ +20:52:21 + + +waiting on router queue for slot.... +20:52:31 ============================================================================ +20:52:31 Slot Id : <414> +20:52:31 Transaction Type : REQUEST +20:52:31 Received From : +20:52:31 ============================================================================ +20:52:31 FNo. Len. Field Value +20:52:31 ============================================================================ +20:52:31 [ 1] [ 4] [0800] +20:52:31 [ 7] [ 10] [0321040421] +20:52:31 [ 11] [ 6] [210421] +20:52:31 [ 37] [ 12] [57921210421] +20:52:31 [ 70] [ 3] [301] +20:52:31 ============================================================================ +20:52:31 + + +waiting on router queue for slot.... +20:52:31 Sending to : +20:52:31 ============================================================================ +20:52:31 ============================================================================ +20:52:31 Slot Id : <414> +20:52:31 Transaction Type : RESPONSE +20:52:31 Received From : +20:52:31 ============================================================================ +20:52:31 FNo. Len. Field Value +20:52:31 ============================================================================ +20:52:31 [ 1] [ 4] [0810] +20:52:31 [ 7] [ 10] [0321040421] +20:52:31 [ 11] [ 6] [210421] +20:52:31 [ 37] [ 12] [579212104210] +20:52:31 [ 39] [ 2] [00] +20:52:31 [ 70] [ 3] [810] +20:52:31 ============================================================================ +20:52:31 Calculate Source COMM Id = 6 +20:52:31 ============================================================================ +20:52:31 + + +waiting on router queue for slot.... +20:52:34 ============================================================================ +20:52:34 Slot Id : <349> +20:52:34 Transaction Type : REQUEST +20:52:34 Received From : +20:52:34 ============================================================================ +20:52:34 FNo. Len. Field Value +20:52:34 ============================================================================ +20:52:34 [ 1] [ 4] [0800] +20:52:34 [ 7] [ 10] [0320015141] +20:52:34 [ 11] [ 6] [158323] +20:52:34 [ 70] [ 3] [301] +20:52:34 ============================================================================ +20:52:34 + + +waiting on router queue for slot.... +20:52:34 Sending to : +20:52:34 ============================================================================ +20:52:34 ============================================================================ +20:52:34 Slot Id : <349> +20:52:34 Transaction Type : RESPONSE +20:52:34 Received From : +20:52:34 ============================================================================ +20:52:34 FNo. Len. Field Value +20:52:34 ============================================================================ +20:52:34 [ 1] [ 4] [0810] +20:52:34 [ 7] [ 10] [0320015141] +20:52:34 [ 11] [ 6] [158323] +20:52:34 [ 39] [ 2] [00] +20:52:34 [ 70] [ 3] [301] +20:52:34 ============================================================================ +20:52:34 Calculate Source COMM Id = 2 +20:52:34 ============================================================================ +20:52:34 + + +waiting on router queue for slot.... +20:52:49 ============================================================================ +20:52:49 Slot Id : <413> +20:52:49 Transaction Type : REQUEST +20:52:49 Received From : +20:52:49 ============================================================================ +20:52:49 FNo. Len. Field Value +20:52:49 ============================================================================ +20:52:49 [ 1] [ 4] [0800] +20:52:49 [ 7] [ 10] [0320015157] +20:52:49 [ 11] [ 6] [158324] +20:52:49 [ 70] [ 3] [301] +20:52:49 ============================================================================ +20:52:49 + + +waiting on router queue for slot.... +20:52:49 Sending to : +20:52:49 ============================================================================ +20:52:49 ============================================================================ +20:52:49 Slot Id : <413> +20:52:49 Transaction Type : RESPONSE +20:52:49 Received From : +20:52:49 ============================================================================ +20:52:49 FNo. Len. Field Value +20:52:49 ============================================================================ +20:52:49 [ 1] [ 4] [0810] +20:52:49 [ 7] [ 10] [0320015157] +20:52:49 [ 11] [ 6] [158324] +20:52:49 [ 39] [ 2] [00] +20:52:49 [ 70] [ 3] [301] +20:52:49 ============================================================================ +20:52:49 Calculate Source COMM Id = 2 +20:52:49 ============================================================================ +20:52:49 + + +waiting on router queue for slot.... +20:53:04 ============================================================================ +20:53:04 Slot Id : <394> +20:53:04 Transaction Type : REQUEST +20:53:04 Received From : +20:53:04 ============================================================================ +20:53:04 FNo. Len. Field Value +20:53:04 ============================================================================ +20:53:04 [ 1] [ 4] [0800] +20:53:04 [ 2] [ 5] [02531] +20:53:04 [ 3] [ 6] [579208] +20:53:04 [ 7] [ 10] [0320135304] +20:53:04 [ 11] [ 6] [807624] +20:53:04 [ 15] [ 10] [0320135304] +20:53:04 [ 37] [ 11] [57920807624] +20:53:04 [ 70] [ 3] [001] +20:53:04 ============================================================================ +20:53:04 + + +waiting on router queue for slot.... +20:53:04 ============================================================================ +20:53:04 Slot Id : <394> +20:53:04 Transaction Type : RESPONSE +20:53:04 Received From : +20:53:04 ============================================================================ +20:53:04 FNo. Len. Field Value +20:53:04 ============================================================================ +20:53:04 [ 1] [ 4] [0810] +20:53:04 [ 7] [ 10] [0320135304] +20:53:04 [ 11] [ 6] [807624] +20:53:04 [ 15] [ 4] [0320] +20:53:04 [ 37] [ 12] [57920807624] +20:53:04 [ 39] [ 2] [00] +20:53:04 [ 70] [ 3] [001] +20:53:04 ============================================================================ +20:53:04 Sending to : +20:53:04 ============================================================================ +20:53:04 + + +waiting on router queue for slot.... +20:53:04 ============================================================================ +20:53:04 Slot Id : <397> +20:53:04 Transaction Type : REQUEST +20:53:04 Received From : +20:53:04 ============================================================================ +20:53:04 FNo. Len. Field Value +20:53:04 ============================================================================ +20:53:04 [ 1] [ 4] [0800] +20:53:04 [ 7] [ 10] [0320015212] +20:53:04 [ 11] [ 6] [158325] +20:53:04 [ 70] [ 3] [301] +20:53:04 ============================================================================ +20:53:04 + + +waiting on router queue for slot.... +20:53:04 Sending to : +20:53:04 ============================================================================ +20:53:04 ============================================================================ +20:53:04 Slot Id : <397> +20:53:04 Transaction Type : RESPONSE +20:53:04 Received From : +20:53:04 ============================================================================ +20:53:04 FNo. Len. Field Value +20:53:04 ============================================================================ +20:53:04 [ 1] [ 4] [0810] +20:53:04 [ 7] [ 10] [0320015212] +20:53:04 [ 11] [ 6] [158325] +20:53:04 [ 39] [ 2] [00] +20:53:04 [ 70] [ 3] [301] +20:53:04 ============================================================================ +20:53:04 Calculate Source COMM Id = 2 +20:53:04 ============================================================================ +20:53:04 + + +waiting on router queue for slot.... +20:53:04 ============================================================================ +20:53:04 Slot Id : <387> +20:53:04 Transaction Type : REQUEST +20:53:04 Received From : +20:53:04 ============================================================================ +20:53:04 FNo. Len. Field Value +20:53:04 ============================================================================ +20:53:04 [ 1] [ 4] [0200] +20:53:04 [ 2] [ 16] [6213543000241314] +20:53:04 [ 3] [ 6] [010000] +20:53:04 [ 4] [ 12] [000050000000] +20:53:04 [ 7] [ 10] [0320205055] +20:53:04 [ 11] [ 6] [957445] +20:53:04 [ 12] [ 6] [205055] +20:53:04 [ 13] [ 4] [0320] +20:53:04 [ 15] [ 4] [0320] +20:53:04 [ 18] [ 4] [6011] +20:53:04 [ 19] [ 3] [418] +20:53:04 [ 22] [ 3] [021] +20:53:04 [ 25] [ 2] [01] +20:53:04 [ 28] [ 9] [D00002000] +20:53:04 [ 32] [ 6] [668899] +20:53:04 [ 35] [ 32] [6213543000241314=491212014131950] +20:53:04 [ 37] [ 12] [507901161683] +20:53:04 [ 41] [ 8] [03217001] +20:53:04 [ 42] [ 15] [APT ] +20:53:04 [ 43] [ 40] [ THATENG UNIT XEKONG L] +20:53:04 [ 49] [ 3] [418] +20:53:04 [ 52] [ 16] [0F80A7CB485048C3] +20:53:04 ============================================================================ +20:53:04 + + +waiting on router queue for slot.... +20:53:04 Sending to : +20:53:04 ============================================================================ +20:53:04 Sending to : +20:53:04 ============================================================================ +20:53:04 ============================================================================ +20:53:04 Slot Id : <387> +20:53:04 Transaction Type : REQUEST +20:53:04 Received From : +20:53:04 ============================================================================ +20:53:04 FNo. Len. Field Value +20:53:04 ============================================================================ +20:53:04 [ 1] [ 4] [0200] +20:53:04 [ 2] [ 16] [6213543000241314] +20:53:04 [ 3] [ 6] [010000] +20:53:04 [ 4] [ 12] [000050000000] +20:53:04 [ 7] [ 10] [0320205055] +20:53:04 [ 11] [ 6] [957445] +20:53:04 [ 12] [ 6] [205055] +20:53:04 [ 13] [ 4] [0320] +20:53:04 [ 15] [ 4] [0320] +20:53:04 [ 18] [ 4] [6011] +20:53:04 [ 19] [ 3] [418] +20:53:04 [ 22] [ 3] [021] +20:53:04 [ 25] [ 2] [01] +20:53:04 [ 28] [ 9] [D00002000] +20:53:04 [ 32] [ 6] [668899] +20:53:04 [ 35] [ 32] [6213543000241314=491212014131950] +20:53:04 [ 37] [ 12] [507901161683] +20:53:04 [ 41] [ 8] [03217001] +20:53:04 [ 42] [ 15] [APT ] +20:53:04 [ 43] [ 40] [ THATENG UNIT XEKONG L] +20:53:04 [ 49] [ 3] [418] +20:53:04 [ 52] [ 16] [0F80A7CB485048C3] +20:53:04 ============================================================================ +20:53:04 + + +waiting on router queue for slot.... +20:53:04 Sending to : +20:53:04 ============================================================================ +20:53:04 ============================================================================ +20:53:04 Slot Id : <387> +20:53:04 Transaction Type : REQUEST +20:53:04 Received From : +20:53:04 ============================================================================ +20:53:04 FNo. Len. Field Value +20:53:04 ============================================================================ +20:53:04 [ 1] [ 4] [0200] +20:53:04 [ 2] [ 16] [6213543000241314] +20:53:04 [ 3] [ 6] [010000] +20:53:04 [ 4] [ 12] [000050000000] +20:53:04 [ 7] [ 10] [0320205055] +20:53:04 [ 11] [ 6] [957445] +20:53:04 [ 12] [ 6] [205055] +20:53:04 [ 13] [ 4] [0320] +20:53:04 [ 15] [ 4] [0320] +20:53:04 [ 18] [ 4] [6011] +20:53:04 [ 19] [ 3] [418] +20:53:04 [ 22] [ 3] [021] +20:53:04 [ 25] [ 2] [01] +20:53:04 [ 28] [ 9] [D00002000] +20:53:04 [ 32] [ 6] [668899] +20:53:04 [ 35] [ 32] [6213543000241314=491212014131950] +20:53:04 [ 37] [ 12] [507901161683] +20:53:04 [ 41] [ 8] [03217001] +20:53:04 [ 42] [ 15] [APT ] +20:53:04 [ 43] [ 40] [ THATENG UNIT XEKONG L] +20:53:04 [ 49] [ 3] [418] +20:53:04 [ 52] [ 16] [2884D6A50CA1F15E] +20:53:04 ============================================================================ +20:53:04 + + +waiting on router queue for slot.... +20:53:04 Sending to : <0> +20:53:04 ============================================================================ +20:53:05 ============================================================================ +20:53:05 Slot Id : <387> +20:53:05 Transaction Type : RESPONSE +20:53:05 Received From : +20:53:05 ============================================================================ +20:53:05 FNo. Len. Field Value +20:53:05 ============================================================================ +20:53:05 [ 1] [ 4] [0210] +20:53:05 [ 2] [ 16] [6213543000241314] +20:53:05 [ 3] [ 6] [010000] +20:53:05 [ 4] [ 12] [000050000000] +20:53:05 [ 7] [ 10] [0320205055] +20:53:05 [ 11] [ 6] [957445] +20:53:05 [ 12] [ 6] [205055] +20:53:05 [ 13] [ 4] [0320] +20:53:05 [ 15] [ 4] [0320] +20:53:05 [ 18] [ 4] [6011] +20:53:05 [ 19] [ 3] [418] +20:53:05 [ 32] [ 6] [668899] +20:53:05 [ 35] [ 32] [6213543000241314=491212014131950] +20:53:05 [ 37] [ 12] [507901161683] +20:53:05 [ 38] [ 6] [485680] +20:53:05 [ 39] [ 2] [00] +20:53:05 [ 41] [ 8] [03217001] +20:53:05 [ 49] [ 3] [418] +20:53:05 [ 54] [ 40] [0001418C0000860000000002418C000035800000] +20:53:05 ============================================================================ +20:53:05 Sending to : +20:53:05 ============================================================================ +20:53:05 + + +waiting on router queue for slot.... +20:53:05 ============================================================================ +20:53:05 Slot Id : <418> +20:53:05 Transaction Type : REQUEST +20:53:05 Received From : +20:53:05 ============================================================================ +20:53:05 FNo. Len. Field Value +20:53:05 ============================================================================ +20:53:05 [ 1] [ 4] [0200] +20:53:05 [ 2] [ 16] [6213545000045058] +20:53:05 [ 3] [ 6] [011000] +20:53:05 [ 4] [ 12] [000090000000] +20:53:05 [ 7] [ 10] [0320135213] +20:53:05 [ 11] [ 6] [271652] +20:53:05 [ 12] [ 6] [205213] +20:53:05 [ 13] [ 4] [0320] +20:53:05 [ 14] [ 4] [4912] +20:53:05 [ 15] [ 4] [0320] +20:53:05 [ 18] [ 4] [6011] +20:53:05 [ 19] [ 3] [418] +20:53:05 [ 22] [ 3] [021] +20:53:05 [ 25] [ 2] [01] +20:53:05 [ 28] [ 9] [D00002000] +20:53:05 [ 32] [ 6] [180893] +20:53:05 [ 35] [ 32] [6213545000045058=491212014505907] +20:53:05 [ 37] [ 12] [507913271652] +20:53:05 [ 41] [ 8] [0112CPBR] +20:53:05 [ 42] [ 15] [999999 ] +20:53:05 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +20:53:05 [ 49] [ 3] [418] +20:53:05 [ 52] [ 16] [A20E24A848808977] +20:53:05 ============================================================================ +20:53:05 + + +waiting on router queue for slot.... +20:53:05 Sending to : +20:53:05 ============================================================================ +20:53:05 Sending to : +20:53:05 ============================================================================ +20:53:06 ============================================================================ +20:53:06 Slot Id : <418> +20:53:06 Transaction Type : REQUEST +20:53:06 Received From : +20:53:06 ============================================================================ +20:53:06 FNo. Len. Field Value +20:53:06 ============================================================================ +20:53:06 [ 1] [ 4] [0200] +20:53:06 [ 2] [ 16] [6213545000045058] +20:53:06 [ 3] [ 6] [011000] +20:53:06 [ 4] [ 12] [000090000000] +20:53:06 [ 7] [ 10] [0320135213] +20:53:06 [ 11] [ 6] [271652] +20:53:06 [ 12] [ 6] [205213] +20:53:06 [ 13] [ 4] [0320] +20:53:06 [ 14] [ 4] [4912] +20:53:06 [ 15] [ 4] [0320] +20:53:06 [ 18] [ 4] [6011] +20:53:06 [ 19] [ 3] [418] +20:53:06 [ 22] [ 3] [021] +20:53:06 [ 25] [ 2] [01] +20:53:06 [ 28] [ 9] [D00002000] +20:53:06 [ 32] [ 6] [180893] +20:53:06 [ 35] [ 32] [6213545000045058=491212014505907] +20:53:06 [ 37] [ 12] [507913271652] +20:53:06 [ 41] [ 8] [0112CPBR] +20:53:06 [ 42] [ 15] [999999 ] +20:53:06 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +20:53:06 [ 49] [ 3] [418] +20:53:06 [ 52] [ 16] [A20E24A848808977] +20:53:06 ============================================================================ +20:53:06 + + +waiting on router queue for slot.... +20:53:06 Sending to : +20:53:06 ============================================================================ +20:53:06 ============================================================================ +20:53:06 Slot Id : <418> +20:53:06 Transaction Type : REQUEST +20:53:06 Received From : +20:53:06 ============================================================================ +20:53:06 FNo. Len. Field Value +20:53:06 ============================================================================ +20:53:06 [ 1] [ 4] [0200] +20:53:06 [ 2] [ 16] [6213545000045058] +20:53:06 [ 3] [ 6] [011000] +20:53:06 [ 4] [ 12] [000090000000] +20:53:06 [ 7] [ 10] [0320135213] +20:53:06 [ 11] [ 6] [271652] +20:53:06 [ 12] [ 6] [205213] +20:53:06 [ 13] [ 4] [0320] +20:53:06 [ 14] [ 4] [4912] +20:53:06 [ 15] [ 4] [0320] +20:53:06 [ 18] [ 4] [6011] +20:53:06 [ 19] [ 3] [418] +20:53:06 [ 22] [ 3] [021] +20:53:06 [ 25] [ 2] [01] +20:53:06 [ 28] [ 9] [D00002000] +20:53:06 [ 32] [ 6] [180893] +20:53:06 [ 35] [ 32] [6213545000045058=491212014505907] +20:53:06 [ 37] [ 12] [507913271652] +20:53:06 [ 41] [ 8] [0112CPBR] +20:53:06 [ 42] [ 15] [999999 ] +20:53:06 [ 43] [ 40] [ATM CHAMPASAK BRANCH LOCATION, Pakse, La] +20:53:06 [ 49] [ 3] [418] +20:53:06 [ 52] [ 16] [419B1E979D319BA0] +20:53:06 ============================================================================ +20:53:06 + + +waiting on router queue for slot.... +20:53:06 Sending to : <0> +20:53:06 ============================================================================ +20:53:06 ============================================================================ +20:53:06 Slot Id : <418> +20:53:06 Transaction Type : RESPONSE +20:53:06 Received From : +20:53:06 ============================================================================ +20:53:06 FNo. Len. Field Value +20:53:06 ============================================================================ +20:53:06 [ 1] [ 4] [0210] +20:53:06 [ 2] [ 16] [6213545000045058] +20:53:06 [ 3] [ 6] [011000] +20:53:06 [ 4] [ 12] [000090000000] +20:53:06 [ 7] [ 10] [0320135213] +20:53:06 [ 11] [ 6] [271652] +20:53:06 [ 12] [ 6] [205213] +20:53:06 [ 13] [ 4] [0320] +20:53:06 [ 15] [ 4] [0320] +20:53:06 [ 18] [ 4] [6011] +20:53:06 [ 19] [ 3] [418] +20:53:06 [ 32] [ 6] [180893] +20:53:06 [ 35] [ 32] [6213545000045058=491212014505907] +20:53:06 [ 37] [ 12] [507913271652] +20:53:06 [ 38] [ 6] [790354] +20:53:06 [ 39] [ 2] [00] +20:53:06 [ 41] [ 8] [0112CPBR] +20:53:06 [ 49] [ 3] [418] +20:53:06 [ 54] [ 40] [1001418C0001960391281002418C000005639128] +20:53:06 ============================================================================ +20:53:06 Sending to : +20:53:06 ============================================================================ +20:53:06 + + +waiting on router queue for slot.... +20:53:06 ============================================================================ +20:53:06 Slot Id : <387> +20:53:06 Transaction Type : RESPONSE +20:53:06 Received From : +20:53:06 ============================================================================ +20:53:06 FNo. Len. Field Value +20:53:06 ============================================================================ +20:53:06 [ 1] [ 4] [0210] +20:53:06 [ 2] [ 16] [6213543000241314] +20:53:06 [ 3] [ 6] [010000] +20:53:06 [ 4] [ 12] [000050000000] +20:53:06 [ 7] [ 10] [0320205055] +20:53:06 [ 11] [ 6] [957445] +20:53:06 [ 12] [ 6] [205055] +20:53:06 [ 13] [ 4] [0320] +20:53:06 [ 15] [ 4] [0320] +20:53:06 [ 18] [ 4] [6011] +20:53:06 [ 19] [ 3] [418] +20:53:06 [ 32] [ 6] [668899] +20:53:06 [ 35] [ 32] [6213543000241314=491212014131950] +20:53:06 [ 37] [ 12] [507901161683] +20:53:06 [ 38] [ 6] [485680] +20:53:06 [ 39] [ 2] [00] +20:53:06 [ 41] [ 8] [03217001] +20:53:06 [ 49] [ 3] [418] +20:53:06 [ 54] [ 40] [0001418C0000860000000002418C000035800000] +20:53:06 ============================================================================ +20:53:06 Calculate Source COMM Id = 4 +20:53:06 ============================================================================ +20:53:06 + + +waiting on router queue for slot.... +20:53:08 ============================================================================ +20:53:08 Slot Id : <418> +20:53:08 Transaction Type : RESPONSE +20:53:08 Received From : +20:53:08 ============================================================================ +20:53:08 FNo. Len. Field Value +20:53:08 ============================================================================ +20:53:08 [ 1] [ 4] [0210] +20:53:08 [ 2] [ 16] [6213545000045058] +20:53:08 [ 3] [ 6] [011000] +20:53:08 [ 4] [ 12] [000090000000] +20:53:08 [ 7] [ 10] [0320135213] +20:53:08 [ 11] [ 6] [271652] +20:53:08 [ 12] [ 6] [205213] +20:53:08 [ 13] [ 4] [0320] +20:53:08 [ 15] [ 4] [0320] +20:53:08 [ 18] [ 4] [6011] +20:53:08 [ 19] [ 3] [418] +20:53:08 [ 32] [ 6] [180893] +20:53:08 [ 35] [ 32] [6213545000045058=491212014505907] +20:53:08 [ 37] [ 12] [507913271652] +20:53:08 [ 38] [ 6] [790354] +20:53:08 [ 39] [ 2] [00] +20:53:08 [ 41] [ 8] [0112CPBR] +20:53:08 [ 49] [ 3] [418] +20:53:08 [ 54] [ 40] [1001418C0001960391281002418C000005639128] +20:53:08 ============================================================================ +20:53:08 Calculate Source COMM Id = 2 +20:53:08 ============================================================================ +20:53:08 + + +waiting on router queue for slot.... +20:53:19 ============================================================================ +20:53:19 Slot Id : <399> +20:53:19 Transaction Type : REQUEST +20:53:19 Received From : +20:53:19 ============================================================================ +20:53:19 FNo. Len. Field Value +20:53:19 ============================================================================ +20:53:19 [ 1] [ 4] [0800] +20:53:19 [ 7] [ 10] [0320015228] +20:53:19 [ 11] [ 6] [158326] +20:53:19 [ 70] [ 3] [301] +20:53:19 ============================================================================ +20:53:19 + + +waiting on router queue for slot.... +20:53:19 Sending to : +20:53:19 ============================================================================ +20:53:19 ============================================================================ +20:53:19 Slot Id : <399> +20:53:19 Transaction Type : RESPONSE +20:53:19 Received From : +20:53:19 ============================================================================ +20:53:19 FNo. Len. Field Value +20:53:19 ============================================================================ +20:53:19 [ 1] [ 4] [0810] +20:53:19 [ 7] [ 10] [0320015228] +20:53:19 [ 11] [ 6] [158326] +20:53:19 [ 39] [ 2] [00] +20:53:19 [ 70] [ 3] [301] +20:53:19 ============================================================================ +20:53:19 Calculate Source COMM Id = 2 +20:53:19 ============================================================================ +20:53:19 + + +waiting on router queue for slot.... +20:53:30 ============================================================================ +20:53:30 Slot Id : <372> +20:53:30 Transaction Type : REQUEST +20:53:30 Received From : +20:53:30 ============================================================================ +20:53:30 FNo. Len. Field Value +20:53:30 ============================================================================ +20:53:30 [ 1] [ 4] [0800] +20:53:30 [ 7] [ 10] [0320015238] +20:53:30 [ 11] [ 6] [158327] +20:53:30 [ 70] [ 3] [301] +20:53:30 ============================================================================ +20:53:30 + + +waiting on router queue for slot.... +20:53:30 Sending to : +20:53:30 ============================================================================ +20:53:30 ============================================================================ +20:53:30 Slot Id : <372> +20:53:30 Transaction Type : RESPONSE +20:53:30 Received From : +20:53:30 ============================================================================ +20:53:30 FNo. Len. Field Value +20:53:30 ============================================================================ +20:53:30 [ 1] [ 4] [0810] +20:53:30 [ 7] [ 10] [0320015238] +20:53:30 [ 11] [ 6] [158327] +20:53:30 [ 39] [ 2] [00] +20:53:30 [ 70] [ 3] [301] +20:53:30 ============================================================================ +20:53:30 Calculate Source COMM Id = 2 +20:53:30 ============================================================================ +20:53:30 + + +waiting on router queue for slot.... +20:53:36 ============================================================================ +20:53:36 Slot Id : <406> +20:53:36 Transaction Type : REQUEST +20:53:36 Received From : +20:53:36 ============================================================================ +20:53:36 FNo. Len. Field Value +20:53:36 ============================================================================ +20:53:36 [ 1] [ 4] [0800] +20:53:36 [ 7] [ 10] [0321040526] +20:53:36 [ 11] [ 6] [210526] +20:53:36 [ 37] [ 12] [57921210526] +20:53:36 [ 70] [ 3] [301] +20:53:36 ============================================================================ +20:53:36 + + +waiting on router queue for slot.... +20:53:36 Sending to : +20:53:36 ============================================================================ +20:53:36 ============================================================================ +20:53:36 Slot Id : <406> +20:53:36 Transaction Type : RESPONSE +20:53:36 Received From : +20:53:36 ============================================================================ +20:53:36 FNo. Len. Field Value +20:53:36 ============================================================================ +20:53:36 [ 1] [ 4] [0810] +20:53:36 [ 7] [ 10] [0321040526] +20:53:36 [ 11] [ 6] [210526] +20:53:36 [ 37] [ 12] [579212105260] +20:53:36 [ 39] [ 2] [00] +20:53:36 [ 70] [ 3] [810] +20:53:36 ============================================================================ +20:53:36 Calculate Source COMM Id = 6 +20:53:36 ============================================================================ +20:53:36 + + +waiting on router queue for slot.... +20:53:41 ============================================================================ +20:53:41 Slot Id : <368> +20:53:41 Transaction Type : REQUEST +20:53:41 Received From : +20:53:41 ============================================================================ +20:53:41 FNo. Len. Field Value +20:53:41 ============================================================================ +20:53:41 [ 1] [ 4] [0800] +20:53:41 [ 7] [ 10] [0320015249] +20:53:41 [ 11] [ 6] [158328] +20:53:41 [ 70] [ 3] [301] +20:53:41 ============================================================================ +20:53:41 + + +waiting on router queue for slot.... +20:53:41 Sending to : +20:53:41 ============================================================================ +20:53:41 ============================================================================ +20:53:41 Slot Id : <368> +20:53:41 Transaction Type : RESPONSE +20:53:41 Received From : +20:53:41 ============================================================================ +20:53:41 FNo. Len. Field Value +20:53:41 ============================================================================ +20:53:41 [ 1] [ 4] [0810] +20:53:41 [ 7] [ 10] [0320015249] +20:53:41 [ 11] [ 6] [158328] +20:53:41 [ 39] [ 2] [00] +20:53:41 [ 70] [ 3] [301] +20:53:41 ============================================================================ +20:53:41 Calculate Source COMM Id = 2 +20:53:41 ============================================================================ +20:53:41 + + +waiting on router queue for slot.... +20:53:58 ============================================================================ +20:53:58 Slot Id : <407> +20:53:58 Transaction Type : REQUEST +20:53:58 Received From : +20:53:58 ============================================================================ +20:53:58 FNo. Len. Field Value +20:53:58 ============================================================================ +20:53:58 [ 1] [ 4] [0800] +20:53:58 [ 7] [ 10] [0320015306] +20:53:58 [ 11] [ 6] [158329] +20:53:58 [ 70] [ 3] [301] +20:53:58 ============================================================================ +20:53:58 + + +waiting on router queue for slot.... +20:53:58 Sending to : +20:53:58 ============================================================================ +20:53:58 ============================================================================ +20:53:58 Slot Id : <407> +20:53:58 Transaction Type : RESPONSE +20:53:58 Received From : +20:53:58 ============================================================================ +20:53:58 FNo. Len. Field Value +20:53:58 ============================================================================ +20:53:58 [ 1] [ 4] [0810] +20:53:58 [ 7] [ 10] [0320015306] +20:53:58 [ 11] [ 6] [158329] +20:53:58 [ 39] [ 2] [00] +20:53:58 [ 70] [ 3] [301] +20:53:58 ============================================================================ +20:53:58 Calculate Source COMM Id = 2 +20:53:58 ============================================================================ +20:53:58 + + +waiting on router queue for slot.... +20:54:06 ============================================================================ +20:54:06 Slot Id : <419> +20:54:06 Transaction Type : REQUEST +20:54:06 Received From : +20:54:06 ============================================================================ +20:54:06 FNo. Len. Field Value +20:54:06 ============================================================================ +20:54:06 [ 1] [ 4] [0800] +20:54:06 [ 2] [ 5] [02531] +20:54:06 [ 3] [ 6] [579208] +20:54:06 [ 7] [ 10] [0320135406] +20:54:06 [ 11] [ 6] [807625] +20:54:06 [ 15] [ 10] [0320135406] +20:54:06 [ 37] [ 11] [57920807625] +20:54:06 [ 70] [ 3] [001] +20:54:06 ============================================================================ +20:54:06 + + +waiting on router queue for slot.... +20:54:06 ============================================================================ +20:54:06 Slot Id : <419> +20:54:06 Transaction Type : RESPONSE +20:54:06 Received From : +20:54:06 ============================================================================ +20:54:06 FNo. Len. Field Value +20:54:06 ============================================================================ +20:54:06 [ 1] [ 4] [0810] +20:54:06 [ 7] [ 10] [0320135406] +20:54:06 [ 11] [ 6] [807625] +20:54:06 [ 15] [ 4] [0320] +20:54:06 [ 37] [ 12] [57920807625] +20:54:06 [ 39] [ 2] [00] +20:54:06 [ 70] [ 3] [001] +20:54:06 ============================================================================ +20:54:06 Sending to : +20:54:06 ============================================================================ +20:54:06 + + +waiting on router queue for slot.... +20:54:08 ============================================================================ +20:54:08 Slot Id : <411> +20:54:08 Transaction Type : REQUEST +20:54:08 Received From : +20:54:08 ============================================================================ +20:54:08 FNo. Len. Field Value +20:54:08 ============================================================================ +20:54:08 [ 1] [ 4] [0800] +20:54:08 [ 7] [ 10] [0320015316] +20:54:08 [ 11] [ 6] [158330] +20:54:08 [ 70] [ 3] [301] +20:54:08 ============================================================================ +20:54:08 + + +waiting on router queue for slot.... +20:54:08 Sending to : +20:54:08 ============================================================================ +20:54:08 ============================================================================ +20:54:08 Slot Id : <411> +20:54:08 Transaction Type : RESPONSE +20:54:08 Received From : +20:54:08 ============================================================================ +20:54:08 FNo. Len. Field Value +20:54:08 ============================================================================ +20:54:08 [ 1] [ 4] [0810] +20:54:08 [ 7] [ 10] [0320015316] +20:54:08 [ 11] [ 6] [158330] +20:54:08 [ 39] [ 2] [00] +20:54:08 [ 70] [ 3] [301] +20:54:08 ============================================================================ +20:54:08 Calculate Source COMM Id = 2 +20:54:08 ============================================================================ +20:54:08 + + +waiting on router queue for slot.... +20:54:18 ============================================================================ +20:54:18 Slot Id : <380> +20:54:18 Transaction Type : REQUEST +20:54:18 Received From : +20:54:18 ============================================================================ +20:54:18 FNo. Len. Field Value +20:54:18 ============================================================================ +20:54:18 [ 1] [ 4] [0800] +20:54:18 [ 7] [ 10] [0320015327] +20:54:18 [ 11] [ 6] [158331] +20:54:18 [ 70] [ 3] [301] +20:54:18 ============================================================================ +20:54:18 + + +waiting on router queue for slot.... +20:54:18 Sending to : +20:54:18 ============================================================================ +20:54:18 ============================================================================ +20:54:18 Slot Id : <380> +20:54:18 Transaction Type : RESPONSE +20:54:18 Received From : +20:54:18 ============================================================================ +20:54:18 FNo. Len. Field Value +20:54:18 ============================================================================ +20:54:18 [ 1] [ 4] [0810] +20:54:18 [ 7] [ 10] [0320015327] +20:54:18 [ 11] [ 6] [158331] +20:54:18 [ 39] [ 2] [00] +20:54:18 [ 70] [ 3] [301] +20:54:18 ============================================================================ +20:54:18 Calculate Source COMM Id = 2 +20:54:18 ============================================================================ +20:54:18 + + +waiting on router queue for slot.... +20:54:34 ============================================================================ +20:54:34 Slot Id : <384> +20:54:34 Transaction Type : REQUEST +20:54:34 Received From : +20:54:34 ============================================================================ +20:54:34 FNo. Len. Field Value +20:54:34 ============================================================================ +20:54:34 [ 1] [ 4] [0800] +20:54:34 [ 7] [ 10] [0320015342] +20:54:34 [ 11] [ 6] [158332] +20:54:34 [ 70] [ 3] [301] +20:54:34 ============================================================================ +20:54:34 + + +waiting on router queue for slot.... +20:54:34 Sending to : +20:54:34 ============================================================================ +20:54:34 ============================================================================ +20:54:34 Slot Id : <384> +20:54:34 Transaction Type : RESPONSE +20:54:34 Received From : +20:54:34 ============================================================================ +20:54:34 FNo. Len. Field Value +20:54:34 ============================================================================ +20:54:34 [ 1] [ 4] [0810] +20:54:34 [ 7] [ 10] [0320015342] +20:54:34 [ 11] [ 6] [158332] +20:54:34 [ 39] [ 2] [00] +20:54:34 [ 70] [ 3] [301] +20:54:34 ============================================================================ +20:54:34 Calculate Source COMM Id = 2 +20:54:34 ============================================================================ +20:54:34 + + +waiting on router queue for slot.... +20:54:41 ============================================================================ +20:54:41 Slot Id : <401> +20:54:41 Transaction Type : REQUEST +20:54:41 Received From : +20:54:41 ============================================================================ +20:54:41 FNo. Len. Field Value +20:54:41 ============================================================================ +20:54:41 [ 1] [ 4] [0800] +20:54:41 [ 7] [ 10] [0321040631] +20:54:41 [ 11] [ 6] [210631] +20:54:41 [ 37] [ 12] [57921210631] +20:54:41 [ 70] [ 3] [301] +20:54:41 ============================================================================ +20:54:41 + + +waiting on router queue for slot.... +20:54:41 Sending to : +20:54:41 ============================================================================ +20:54:41 ============================================================================ +20:54:41 Slot Id : <401> +20:54:41 Transaction Type : RESPONSE +20:54:41 Received From : +20:54:41 ============================================================================ +20:54:41 FNo. Len. Field Value +20:54:41 ============================================================================ +20:54:41 [ 1] [ 4] [0810] +20:54:41 [ 7] [ 10] [0321040631] +20:54:41 [ 11] [ 6] [210631] +20:54:41 [ 37] [ 12] [579212106310] +20:54:41 [ 39] [ 2] [00] +20:54:41 [ 70] [ 3] [810] +20:54:41 ============================================================================ +20:54:41 Calculate Source COMM Id = 6 +20:54:41 ============================================================================ +20:54:41 + + +waiting on router queue for slot.... +20:54:45 ============================================================================ +20:54:45 Slot Id : <416> +20:54:45 Transaction Type : REQUEST +20:54:45 Received From : +20:54:45 ============================================================================ +20:54:45 FNo. Len. Field Value +20:54:45 ============================================================================ +20:54:45 [ 1] [ 4] [0200] +20:54:45 [ 2] [ 16] [6213544002191226] +20:54:45 [ 3] [ 6] [010000] +20:54:45 [ 4] [ 12] [000005000000] +20:54:45 [ 7] [ 10] [0320205236] +20:54:45 [ 11] [ 6] [957459] +20:54:45 [ 12] [ 6] [205236] +20:54:45 [ 13] [ 4] [0320] +20:54:45 [ 15] [ 4] [0320] +20:54:45 [ 18] [ 4] [6011] +20:54:45 [ 19] [ 3] [418] +20:54:45 [ 22] [ 3] [021] +20:54:45 [ 25] [ 2] [01] +20:54:45 [ 28] [ 9] [D00002000] +20:54:45 [ 32] [ 6] [668899] +20:54:45 [ 35] [ 32] [6213544002191226=491212019122762] +20:54:45 [ 37] [ 12] [507900158546] +20:54:45 [ 41] [ 8] [03020006] +20:54:45 [ 42] [ 15] [APT ] +20:54:45 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:54:45 [ 49] [ 3] [418] +20:54:45 [ 52] [ 16] [26B9426609BEA37B] +20:54:45 ============================================================================ +20:54:45 + + +waiting on router queue for slot.... +20:54:45 Sending to : +20:54:45 ============================================================================ +20:54:45 Sending to : +20:54:45 ============================================================================ +20:54:45 ============================================================================ +20:54:45 Slot Id : <416> +20:54:45 Transaction Type : REQUEST +20:54:45 Received From : +20:54:45 ============================================================================ +20:54:45 FNo. Len. Field Value +20:54:45 ============================================================================ +20:54:45 [ 1] [ 4] [0200] +20:54:45 [ 2] [ 16] [6213544002191226] +20:54:45 [ 3] [ 6] [010000] +20:54:45 [ 4] [ 12] [000005000000] +20:54:45 [ 7] [ 10] [0320205236] +20:54:45 [ 11] [ 6] [957459] +20:54:45 [ 12] [ 6] [205236] +20:54:45 [ 13] [ 4] [0320] +20:54:45 [ 15] [ 4] [0320] +20:54:45 [ 18] [ 4] [6011] +20:54:45 [ 19] [ 3] [418] +20:54:45 [ 22] [ 3] [021] +20:54:45 [ 25] [ 2] [01] +20:54:45 [ 28] [ 9] [D00002000] +20:54:45 [ 32] [ 6] [668899] +20:54:45 [ 35] [ 32] [6213544002191226=491212019122762] +20:54:45 [ 37] [ 12] [507900158546] +20:54:45 [ 41] [ 8] [03020006] +20:54:45 [ 42] [ 15] [APT ] +20:54:45 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:54:45 [ 49] [ 3] [418] +20:54:45 [ 52] [ 16] [26B9426609BEA37B] +20:54:45 ============================================================================ +20:54:45 + + +waiting on router queue for slot.... +20:54:45 Sending to : +20:54:45 ============================================================================ +20:54:45 ============================================================================ +20:54:45 Slot Id : <416> +20:54:45 Transaction Type : REQUEST +20:54:45 Received From : +20:54:45 ============================================================================ +20:54:45 FNo. Len. Field Value +20:54:45 ============================================================================ +20:54:45 [ 1] [ 4] [0200] +20:54:45 [ 2] [ 16] [6213544002191226] +20:54:45 [ 3] [ 6] [010000] +20:54:45 [ 4] [ 12] [000005000000] +20:54:45 [ 7] [ 10] [0320205236] +20:54:45 [ 11] [ 6] [957459] +20:54:45 [ 12] [ 6] [205236] +20:54:45 [ 13] [ 4] [0320] +20:54:45 [ 15] [ 4] [0320] +20:54:45 [ 18] [ 4] [6011] +20:54:45 [ 19] [ 3] [418] +20:54:45 [ 22] [ 3] [021] +20:54:45 [ 25] [ 2] [01] +20:54:45 [ 28] [ 9] [D00002000] +20:54:45 [ 32] [ 6] [668899] +20:54:45 [ 35] [ 32] [6213544002191226=491212019122762] +20:54:45 [ 37] [ 12] [507900158546] +20:54:45 [ 41] [ 8] [03020006] +20:54:45 [ 42] [ 15] [APT ] +20:54:45 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:54:45 [ 49] [ 3] [418] +20:54:45 [ 52] [ 16] [17E29E153248503B] +20:54:45 ============================================================================ +20:54:45 + + +waiting on router queue for slot.... +20:54:45 Sending to : <0> +20:54:45 ============================================================================ +20:54:45 ============================================================================ +20:54:45 Slot Id : <416> +20:54:45 Transaction Type : RESPONSE +20:54:45 Received From : +20:54:45 ============================================================================ +20:54:45 FNo. Len. Field Value +20:54:45 ============================================================================ +20:54:45 [ 1] [ 4] [0210] +20:54:45 [ 2] [ 16] [6213544002191226] +20:54:45 [ 3] [ 6] [010000] +20:54:45 [ 4] [ 12] [000005000000] +20:54:45 [ 7] [ 10] [0320205236] +20:54:45 [ 11] [ 6] [957459] +20:54:45 [ 12] [ 6] [205236] +20:54:45 [ 13] [ 4] [0320] +20:54:45 [ 15] [ 4] [0320] +20:54:45 [ 18] [ 4] [6011] +20:54:45 [ 19] [ 3] [418] +20:54:45 [ 22] [ 3] [021] +20:54:45 [ 32] [ 6] [668899] +20:54:45 [ 35] [ 32] [6213544002191226=491212019122762] +20:54:45 [ 37] [ 12] [507900158546] +20:54:45 [ 38] [ 6] [205442] +20:54:45 [ 39] [ 2] [75] +20:54:45 [ 41] [ 8] [03020006] +20:54:45 [ 49] [ 3] [418] +20:54:45 ============================================================================ +20:54:45 Sending to : +20:54:45 ============================================================================ +20:54:45 + + +waiting on router queue for slot.... +20:54:46 ============================================================================ +20:54:46 Slot Id : <416> +20:54:46 Transaction Type : RESPONSE +20:54:46 Received From : +20:54:46 ============================================================================ +20:54:46 FNo. Len. Field Value +20:54:46 ============================================================================ +20:54:46 [ 1] [ 4] [0210] +20:54:46 [ 2] [ 16] [6213544002191226] +20:54:46 [ 3] [ 6] [010000] +20:54:46 [ 4] [ 12] [000005000000] +20:54:46 [ 7] [ 10] [0320205236] +20:54:46 [ 11] [ 6] [957459] +20:54:46 [ 12] [ 6] [205236] +20:54:46 [ 13] [ 4] [0320] +20:54:46 [ 15] [ 4] [0320] +20:54:46 [ 18] [ 4] [6011] +20:54:46 [ 19] [ 3] [418] +20:54:46 [ 22] [ 3] [021] +20:54:46 [ 32] [ 6] [668899] +20:54:46 [ 35] [ 32] [6213544002191226=491212019122762] +20:54:46 [ 37] [ 12] [507900158546] +20:54:46 [ 38] [ 6] [205442] +20:54:46 [ 39] [ 2] [75] +20:54:46 [ 41] [ 8] [03020006] +20:54:46 [ 49] [ 3] [418] +20:54:46 ============================================================================ +20:54:46 Calculate Source COMM Id = 4 +20:54:46 ============================================================================ +20:54:46 + + +waiting on router queue for slot.... +20:54:49 ============================================================================ +20:54:49 Slot Id : <433> +20:54:49 Transaction Type : REQUEST +20:54:49 Received From : +20:54:49 ============================================================================ +20:54:49 FNo. Len. Field Value +20:54:49 ============================================================================ +20:54:49 [ 1] [ 4] [0800] +20:54:49 [ 7] [ 10] [0320015358] +20:54:49 [ 11] [ 6] [158333] +20:54:49 [ 70] [ 3] [301] +20:54:49 ============================================================================ +20:54:49 + + +waiting on router queue for slot.... +20:54:49 Sending to : +20:54:49 ============================================================================ +20:54:49 ============================================================================ +20:54:49 Slot Id : <433> +20:54:49 Transaction Type : RESPONSE +20:54:49 Received From : +20:54:49 ============================================================================ +20:54:49 FNo. Len. Field Value +20:54:49 ============================================================================ +20:54:49 [ 1] [ 4] [0810] +20:54:49 [ 7] [ 10] [0320015358] +20:54:49 [ 11] [ 6] [158333] +20:54:49 [ 39] [ 2] [00] +20:54:49 [ 70] [ 3] [301] +20:54:49 ============================================================================ +20:54:49 Calculate Source COMM Id = 2 +20:54:49 ============================================================================ +20:54:49 + + +waiting on router queue for slot.... +20:54:55 ============================================================================ +20:54:55 Slot Id : <420> +20:54:55 Transaction Type : REQUEST +20:54:55 Received From : +20:54:55 ============================================================================ +20:54:55 FNo. Len. Field Value +20:54:55 ============================================================================ +20:54:55 [ 1] [ 4] [0800] +20:54:55 [ 7] [ 10] [0320140242] +20:54:55 [ 11] [ 6] [018721] +20:54:55 [ 37] [ 12] [57921018721] +20:54:55 [ 70] [ 3] [301] +20:54:55 ============================================================================ +20:54:55 + + +waiting on router queue for slot.... +20:54:55 Sending to : +20:54:55 ============================================================================ +20:54:55 ============================================================================ +20:54:55 Slot Id : <420> +20:54:55 Transaction Type : RESPONSE +20:54:55 Received From : +20:54:55 ============================================================================ +20:54:55 FNo. Len. Field Value +20:54:55 ============================================================================ +20:54:55 [ 1] [ 4] [0810] +20:54:55 [ 7] [ 10] [0320140242] +20:54:55 [ 11] [ 6] [018721] +20:54:55 [ 37] [ 12] [579210187210] +20:54:55 [ 39] [ 2] [00] +20:54:55 [ 70] [ 3] [810] +20:54:55 ============================================================================ +20:54:55 Calculate Source COMM Id = 1 +20:54:55 ============================================================================ +20:54:55 + + +waiting on router queue for slot.... +20:55:00 ============================================================================ +20:55:00 Slot Id : <381> +20:55:00 Transaction Type : REQUEST +20:55:00 Received From : +20:55:00 ============================================================================ +20:55:00 FNo. Len. Field Value +20:55:00 ============================================================================ +20:55:00 [ 1] [ 4] [0800] +20:55:00 [ 7] [ 10] [0320015408] +20:55:00 [ 11] [ 6] [158334] +20:55:00 [ 70] [ 3] [301] +20:55:00 ============================================================================ +20:55:00 + + +waiting on router queue for slot.... +20:55:00 Sending to : +20:55:00 ============================================================================ +20:55:00 ============================================================================ +20:55:00 Slot Id : <381> +20:55:00 Transaction Type : RESPONSE +20:55:00 Received From : +20:55:00 ============================================================================ +20:55:00 FNo. Len. Field Value +20:55:00 ============================================================================ +20:55:00 [ 1] [ 4] [0810] +20:55:00 [ 7] [ 10] [0320015408] +20:55:00 [ 11] [ 6] [158334] +20:55:00 [ 39] [ 2] [00] +20:55:00 [ 70] [ 3] [301] +20:55:00 ============================================================================ +20:55:00 Calculate Source COMM Id = 2 +20:55:00 ============================================================================ +20:55:00 + + +waiting on router queue for slot.... +20:55:08 ============================================================================ +20:55:08 Slot Id : <398> +20:55:08 Transaction Type : REQUEST +20:55:08 Received From : +20:55:08 ============================================================================ +20:55:08 FNo. Len. Field Value +20:55:08 ============================================================================ +20:55:08 [ 1] [ 4] [0800] +20:55:08 [ 2] [ 5] [02531] +20:55:08 [ 3] [ 6] [579208] +20:55:08 [ 7] [ 10] [0320135508] +20:55:08 [ 11] [ 6] [807626] +20:55:08 [ 15] [ 10] [0320135508] +20:55:08 [ 37] [ 11] [57920807626] +20:55:08 [ 70] [ 3] [001] +20:55:08 ============================================================================ +20:55:08 + + +waiting on router queue for slot.... +20:55:08 ============================================================================ +20:55:08 Slot Id : <398> +20:55:08 Transaction Type : RESPONSE +20:55:08 Received From : +20:55:08 ============================================================================ +20:55:08 FNo. Len. Field Value +20:55:08 ============================================================================ +20:55:08 [ 1] [ 4] [0810] +20:55:08 [ 7] [ 10] [0320135508] +20:55:08 [ 11] [ 6] [807626] +20:55:08 [ 15] [ 4] [0320] +20:55:08 [ 37] [ 12] [57920807626] +20:55:08 [ 39] [ 2] [00] +20:55:08 [ 70] [ 3] [001] +20:55:08 ============================================================================ +20:55:08 Sending to : +20:55:08 ============================================================================ +20:55:08 + + +waiting on router queue for slot.... +20:55:17 ============================================================================ +20:55:17 Slot Id : <425> +20:55:17 Transaction Type : REQUEST +20:55:17 Received From : +20:55:17 ============================================================================ +20:55:17 FNo. Len. Field Value +20:55:17 ============================================================================ +20:55:17 [ 1] [ 4] [0800] +20:55:17 [ 7] [ 10] [0320015425] +20:55:17 [ 11] [ 6] [158335] +20:55:17 [ 70] [ 3] [301] +20:55:17 ============================================================================ +20:55:17 + + +waiting on router queue for slot.... +20:55:17 Sending to : +20:55:17 ============================================================================ +20:55:17 ============================================================================ +20:55:17 Slot Id : <425> +20:55:17 Transaction Type : RESPONSE +20:55:17 Received From : +20:55:17 ============================================================================ +20:55:17 FNo. Len. Field Value +20:55:17 ============================================================================ +20:55:17 [ 1] [ 4] [0810] +20:55:17 [ 7] [ 10] [0320015425] +20:55:17 [ 11] [ 6] [158335] +20:55:17 [ 39] [ 2] [00] +20:55:17 [ 70] [ 3] [301] +20:55:17 ============================================================================ +20:55:17 Calculate Source COMM Id = 2 +20:55:17 ============================================================================ +20:55:17 + + +waiting on router queue for slot.... +20:55:28 ============================================================================ +20:55:28 Slot Id : <415> +20:55:28 Transaction Type : REQUEST +20:55:28 Received From : +20:55:28 ============================================================================ +20:55:28 FNo. Len. Field Value +20:55:28 ============================================================================ +20:55:28 [ 1] [ 4] [0800] +20:55:28 [ 7] [ 10] [0320015436] +20:55:28 [ 11] [ 6] [158336] +20:55:28 [ 70] [ 3] [301] +20:55:28 ============================================================================ +20:55:28 + + +waiting on router queue for slot.... +20:55:28 Sending to : +20:55:28 ============================================================================ +20:55:28 ============================================================================ +20:55:28 Slot Id : <415> +20:55:28 Transaction Type : RESPONSE +20:55:28 Received From : +20:55:28 ============================================================================ +20:55:28 FNo. Len. Field Value +20:55:28 ============================================================================ +20:55:28 [ 1] [ 4] [0810] +20:55:28 [ 7] [ 10] [0320015436] +20:55:28 [ 11] [ 6] [158336] +20:55:28 [ 39] [ 2] [00] +20:55:28 [ 70] [ 3] [301] +20:55:28 ============================================================================ +20:55:28 Calculate Source COMM Id = 2 +20:55:28 ============================================================================ +20:55:28 + + +waiting on router queue for slot.... +20:55:38 ============================================================================ +20:55:38 Slot Id : <409> +20:55:38 Transaction Type : REQUEST +20:55:38 Received From : +20:55:38 ============================================================================ +20:55:38 FNo. Len. Field Value +20:55:38 ============================================================================ +20:55:38 [ 1] [ 4] [0800] +20:55:38 [ 7] [ 10] [0320015447] +20:55:38 [ 11] [ 6] [158337] +20:55:38 [ 70] [ 3] [301] +20:55:38 ============================================================================ +20:55:38 + + +waiting on router queue for slot.... +20:55:38 Sending to : +20:55:38 ============================================================================ +20:55:38 ============================================================================ +20:55:38 Slot Id : <409> +20:55:38 Transaction Type : RESPONSE +20:55:38 Received From : +20:55:38 ============================================================================ +20:55:38 FNo. Len. Field Value +20:55:38 ============================================================================ +20:55:38 [ 1] [ 4] [0810] +20:55:38 [ 7] [ 10] [0320015447] +20:55:38 [ 11] [ 6] [158337] +20:55:38 [ 39] [ 2] [00] +20:55:38 [ 70] [ 3] [301] +20:55:38 ============================================================================ +20:55:38 Calculate Source COMM Id = 2 +20:55:38 ============================================================================ +20:55:38 + + +waiting on router queue for slot.... +20:55:46 ============================================================================ +20:55:46 Slot Id : <364> +20:55:46 Transaction Type : REQUEST +20:55:46 Received From : +20:55:46 ============================================================================ +20:55:46 FNo. Len. Field Value +20:55:46 ============================================================================ +20:55:46 [ 1] [ 4] [0800] +20:55:46 [ 7] [ 10] [0321040736] +20:55:46 [ 11] [ 6] [210736] +20:55:46 [ 37] [ 12] [57921210736] +20:55:46 [ 70] [ 3] [301] +20:55:46 ============================================================================ +20:55:46 + + +waiting on router queue for slot.... +20:55:46 Sending to : +20:55:46 ============================================================================ +20:55:46 ============================================================================ +20:55:46 Slot Id : <364> +20:55:46 Transaction Type : RESPONSE +20:55:46 Received From : +20:55:46 ============================================================================ +20:55:46 FNo. Len. Field Value +20:55:46 ============================================================================ +20:55:46 [ 1] [ 4] [0810] +20:55:46 [ 7] [ 10] [0321040736] +20:55:46 [ 11] [ 6] [210736] +20:55:46 [ 37] [ 12] [579212107360] +20:55:46 [ 39] [ 2] [00] +20:55:46 [ 70] [ 3] [810] +20:55:46 ============================================================================ +20:55:46 Calculate Source COMM Id = 6 +20:55:46 ============================================================================ +20:55:46 + + +waiting on router queue for slot.... +20:55:51 ============================================================================ +20:55:51 Slot Id : <388> +20:55:51 Transaction Type : REQUEST +20:55:51 Received From : +20:55:51 ============================================================================ +20:55:51 FNo. Len. Field Value +20:55:51 ============================================================================ +20:55:51 [ 1] [ 4] [0200] +20:55:51 [ 2] [ 16] [6213544002191226] +20:55:51 [ 3] [ 6] [300000] +20:55:51 [ 4] [ 12] [000000000000] +20:55:51 [ 7] [ 10] [0320205342] +20:55:51 [ 11] [ 6] [957474] +20:55:51 [ 12] [ 6] [205342] +20:55:51 [ 13] [ 4] [0320] +20:55:51 [ 15] [ 4] [0320] +20:55:51 [ 18] [ 4] [6011] +20:55:51 [ 19] [ 3] [418] +20:55:51 [ 22] [ 3] [021] +20:55:51 [ 25] [ 2] [01] +20:55:51 [ 28] [ 9] [D00000000] +20:55:51 [ 32] [ 6] [668899] +20:55:51 [ 35] [ 32] [6213544002191226=491212019122762] +20:55:51 [ 37] [ 12] [507900158548] +20:55:51 [ 41] [ 8] [03020006] +20:55:51 [ 42] [ 15] [APT ] +20:55:51 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:55:51 [ 49] [ 3] [418] +20:55:51 [ 52] [ 16] [26B9426609BEA37B] +20:55:51 ============================================================================ +20:55:51 + + +waiting on router queue for slot.... +20:55:51 Sending to : +20:55:51 ============================================================================ +20:55:51 Sending to : +20:55:51 ============================================================================ +20:55:51 ============================================================================ +20:55:51 Slot Id : <388> +20:55:51 Transaction Type : REQUEST +20:55:51 Received From : +20:55:51 ============================================================================ +20:55:51 FNo. Len. Field Value +20:55:51 ============================================================================ +20:55:51 [ 1] [ 4] [0200] +20:55:51 [ 2] [ 16] [6213544002191226] +20:55:51 [ 3] [ 6] [300000] +20:55:51 [ 4] [ 12] [000000000000] +20:55:51 [ 7] [ 10] [0320205342] +20:55:51 [ 11] [ 6] [957474] +20:55:51 [ 12] [ 6] [205342] +20:55:51 [ 13] [ 4] [0320] +20:55:51 [ 15] [ 4] [0320] +20:55:51 [ 18] [ 4] [6011] +20:55:51 [ 19] [ 3] [418] +20:55:51 [ 22] [ 3] [021] +20:55:51 [ 25] [ 2] [01] +20:55:51 [ 28] [ 9] [D00000000] +20:55:51 [ 32] [ 6] [668899] +20:55:51 [ 35] [ 32] [6213544002191226=491212019122762] +20:55:51 [ 37] [ 12] [507900158548] +20:55:51 [ 41] [ 8] [03020006] +20:55:51 [ 42] [ 15] [APT ] +20:55:51 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:55:51 [ 49] [ 3] [418] +20:55:51 [ 52] [ 16] [26B9426609BEA37B] +20:55:51 ============================================================================ +20:55:51 + + +waiting on router queue for slot.... +20:55:51 Sending to : +20:55:51 ============================================================================ +20:55:51 ============================================================================ +20:55:51 Slot Id : <388> +20:55:51 Transaction Type : REQUEST +20:55:51 Received From : +20:55:51 ============================================================================ +20:55:51 FNo. Len. Field Value +20:55:51 ============================================================================ +20:55:51 [ 1] [ 4] [0200] +20:55:51 [ 2] [ 16] [6213544002191226] +20:55:51 [ 3] [ 6] [300000] +20:55:51 [ 4] [ 12] [000000000000] +20:55:51 [ 7] [ 10] [0320205342] +20:55:51 [ 11] [ 6] [957474] +20:55:51 [ 12] [ 6] [205342] +20:55:51 [ 13] [ 4] [0320] +20:55:51 [ 15] [ 4] [0320] +20:55:51 [ 18] [ 4] [6011] +20:55:51 [ 19] [ 3] [418] +20:55:51 [ 22] [ 3] [021] +20:55:51 [ 25] [ 2] [01] +20:55:51 [ 28] [ 9] [D00000000] +20:55:51 [ 32] [ 6] [668899] +20:55:51 [ 35] [ 32] [6213544002191226=491212019122762] +20:55:51 [ 37] [ 12] [507900158548] +20:55:51 [ 41] [ 8] [03020006] +20:55:51 [ 42] [ 15] [APT ] +20:55:51 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:55:51 [ 49] [ 3] [418] +20:55:51 [ 52] [ 16] [17E29E153248503B] +20:55:51 ============================================================================ +20:55:51 + + +waiting on router queue for slot.... +20:55:51 Sending to : <0> +20:55:51 ============================================================================ +20:55:51 ============================================================================ +20:55:51 Slot Id : <388> +20:55:51 Transaction Type : RESPONSE +20:55:51 Received From : +20:55:51 ============================================================================ +20:55:51 FNo. Len. Field Value +20:55:51 ============================================================================ +20:55:51 [ 1] [ 4] [0210] +20:55:51 [ 2] [ 16] [6213544002191226] +20:55:51 [ 3] [ 6] [300000] +20:55:51 [ 4] [ 12] [000000000000] +20:55:51 [ 7] [ 10] [0320205342] +20:55:51 [ 11] [ 6] [957474] +20:55:51 [ 12] [ 6] [205342] +20:55:51 [ 13] [ 4] [0320] +20:55:51 [ 15] [ 4] [0320] +20:55:51 [ 18] [ 4] [6011] +20:55:51 [ 19] [ 3] [418] +20:55:51 [ 22] [ 3] [021] +20:55:51 [ 32] [ 6] [668899] +20:55:51 [ 35] [ 32] [6213544002191226=491212019122762] +20:55:51 [ 37] [ 12] [507900158548] +20:55:51 [ 38] [ 6] [205548] +20:55:51 [ 39] [ 2] [75] +20:55:51 [ 41] [ 8] [03020006] +20:55:51 [ 49] [ 3] [418] +20:55:51 ============================================================================ +20:55:51 Sending to : +20:55:51 ============================================================================ +20:55:51 + + +waiting on router queue for slot.... +20:55:52 ============================================================================ +20:55:52 Slot Id : <388> +20:55:52 Transaction Type : RESPONSE +20:55:52 Received From : +20:55:52 ============================================================================ +20:55:52 FNo. Len. Field Value +20:55:52 ============================================================================ +20:55:52 [ 1] [ 4] [0210] +20:55:52 [ 2] [ 16] [6213544002191226] +20:55:52 [ 3] [ 6] [300000] +20:55:52 [ 4] [ 12] [000000000000] +20:55:52 [ 7] [ 10] [0320205342] +20:55:52 [ 11] [ 6] [957474] +20:55:52 [ 12] [ 6] [205342] +20:55:52 [ 13] [ 4] [0320] +20:55:52 [ 15] [ 4] [0320] +20:55:52 [ 18] [ 4] [6011] +20:55:52 [ 19] [ 3] [418] +20:55:52 [ 22] [ 3] [021] +20:55:52 [ 32] [ 6] [668899] +20:55:52 [ 35] [ 32] [6213544002191226=491212019122762] +20:55:52 [ 37] [ 12] [507900158548] +20:55:52 [ 38] [ 6] [205548] +20:55:52 [ 39] [ 2] [75] +20:55:52 [ 41] [ 8] [03020006] +20:55:52 [ 49] [ 3] [418] +20:55:52 ============================================================================ +20:55:52 Calculate Source COMM Id = 4 +20:55:52 ============================================================================ +20:55:52 + + +waiting on router queue for slot.... +20:55:54 ============================================================================ +20:55:54 Slot Id : <430> +20:55:54 Transaction Type : REQUEST +20:55:54 Received From : +20:55:54 ============================================================================ +20:55:54 FNo. Len. Field Value +20:55:54 ============================================================================ +20:55:54 [ 1] [ 4] [0800] +20:55:54 [ 7] [ 10] [0320015502] +20:55:54 [ 11] [ 6] [158338] +20:55:54 [ 70] [ 3] [301] +20:55:54 ============================================================================ +20:55:54 + + +waiting on router queue for slot.... +20:55:54 Sending to : +20:55:54 ============================================================================ +20:55:54 ============================================================================ +20:55:54 Slot Id : <430> +20:55:54 Transaction Type : RESPONSE +20:55:54 Received From : +20:55:54 ============================================================================ +20:55:54 FNo. Len. Field Value +20:55:54 ============================================================================ +20:55:54 [ 1] [ 4] [0810] +20:55:54 [ 7] [ 10] [0320015502] +20:55:54 [ 11] [ 6] [158338] +20:55:54 [ 39] [ 2] [00] +20:55:54 [ 70] [ 3] [301] +20:55:54 ============================================================================ +20:55:54 Calculate Source COMM Id = 2 +20:55:54 ============================================================================ +20:55:54 + + +waiting on router queue for slot.... +20:56:04 ============================================================================ +20:56:04 Slot Id : <367> +20:56:04 Transaction Type : REQUEST +20:56:04 Received From : +20:56:04 ============================================================================ +20:56:04 FNo. Len. Field Value +20:56:04 ============================================================================ +20:56:04 [ 1] [ 4] [0800] +20:56:04 [ 7] [ 10] [0320205552] +20:56:04 [ 11] [ 6] [078020] +20:56:04 [ 37] [ 12] [507920078020] +20:56:04 [ 70] [ 3] [ ] +20:56:04 ============================================================================ +20:56:04 + + +waiting on router queue for slot.... +20:56:04 Sending to : +20:56:04 ============================================================================ +20:56:04 ============================================================================ +20:56:04 Slot Id : <367> +20:56:04 Transaction Type : RESPONSE +20:56:04 Received From : +20:56:04 ============================================================================ +20:56:04 FNo. Len. Field Value +20:56:04 ============================================================================ +20:56:04 [ 1] [ 4] [0810] +20:56:04 [ 7] [ 10] [0320205552] +20:56:04 [ 11] [ 6] [078020] +20:56:04 [ 37] [ 12] [507920078020] +20:56:04 [ 39] [ 2] [91] +20:56:04 [ 70] [ 3] [ ] +20:56:04 ============================================================================ +20:56:04 Calculate Source COMM Id = 3 +20:56:04 ============================================================================ +20:56:04 + + +waiting on router queue for slot.... +20:56:10 ============================================================================ +20:56:10 Slot Id : <441> +20:56:10 Transaction Type : REQUEST +20:56:10 Received From : +20:56:10 ============================================================================ +20:56:10 FNo. Len. Field Value +20:56:10 ============================================================================ +20:56:10 [ 1] [ 4] [0800] +20:56:10 [ 2] [ 5] [02531] +20:56:10 [ 3] [ 6] [579208] +20:56:10 [ 7] [ 10] [0320135610] +20:56:10 [ 11] [ 6] [807627] +20:56:10 [ 15] [ 10] [0320135610] +20:56:10 [ 37] [ 11] [57920807627] +20:56:10 [ 70] [ 3] [001] +20:56:10 ============================================================================ +20:56:10 + + +waiting on router queue for slot.... +20:56:10 ============================================================================ +20:56:10 Slot Id : <441> +20:56:10 Transaction Type : RESPONSE +20:56:10 Received From : +20:56:10 ============================================================================ +20:56:10 FNo. Len. Field Value +20:56:10 ============================================================================ +20:56:10 [ 1] [ 4] [0810] +20:56:10 [ 7] [ 10] [0320135610] +20:56:10 [ 11] [ 6] [807627] +20:56:10 [ 15] [ 4] [0320] +20:56:10 [ 37] [ 12] [57920807627] +20:56:10 [ 39] [ 2] [00] +20:56:10 [ 70] [ 3] [001] +20:56:10 ============================================================================ +20:56:10 Sending to : +20:56:10 ============================================================================ +20:56:10 + + +waiting on router queue for slot.... +20:56:11 ============================================================================ +20:56:11 Slot Id : <403> +20:56:11 Transaction Type : REQUEST +20:56:11 Received From : +20:56:11 ============================================================================ +20:56:11 FNo. Len. Field Value +20:56:11 ============================================================================ +20:56:11 [ 1] [ 4] [0800] +20:56:11 [ 7] [ 10] [0320015517] +20:56:11 [ 11] [ 6] [158339] +20:56:11 [ 70] [ 3] [301] +20:56:11 ============================================================================ +20:56:11 + + +waiting on router queue for slot.... +20:56:11 Sending to : +20:56:11 ============================================================================ +20:56:11 ============================================================================ +20:56:11 Slot Id : <403> +20:56:11 Transaction Type : RESPONSE +20:56:11 Received From : +20:56:11 ============================================================================ +20:56:11 FNo. Len. Field Value +20:56:11 ============================================================================ +20:56:11 [ 1] [ 4] [0810] +20:56:11 [ 7] [ 10] [0320015517] +20:56:11 [ 11] [ 6] [158339] +20:56:11 [ 39] [ 2] [00] +20:56:11 [ 70] [ 3] [301] +20:56:11 ============================================================================ +20:56:11 Calculate Source COMM Id = 2 +20:56:11 ============================================================================ +20:56:11 + + +waiting on router queue for slot.... +20:56:21 ============================================================================ +20:56:21 Slot Id : <437> +20:56:21 Transaction Type : REQUEST +20:56:21 Received From : +20:56:21 ============================================================================ +20:56:21 FNo. Len. Field Value +20:56:21 ============================================================================ +20:56:21 [ 1] [ 4] [0800] +20:56:21 [ 7] [ 10] [0320135412] +20:56:21 [ 11] [ 6] [000092] +20:56:21 [ 37] [ 12] [57920000092] +20:56:21 [ 70] [ 3] [301] +20:56:21 ============================================================================ +20:56:21 + + +waiting on router queue for slot.... +20:56:21 Sending to : +20:56:21 ============================================================================ +20:56:21 ============================================================================ +20:56:21 Slot Id : <437> +20:56:21 Transaction Type : RESPONSE +20:56:21 Received From : +20:56:21 ============================================================================ +20:56:21 FNo. Len. Field Value +20:56:21 ============================================================================ +20:56:21 [ 1] [ 4] [0810] +20:56:21 [ 7] [ 10] [0320135412] +20:56:21 [ 11] [ 6] [000092] +20:56:21 [ 37] [ 12] [579200000920] +20:56:21 [ 39] [ 2] [00] +20:56:21 [ 70] [ 3] [810] +20:56:21 ============================================================================ +20:56:21 Calculate Source COMM Id = 4 +20:56:21 ============================================================================ +20:56:21 + + +waiting on router queue for slot.... +20:56:26 ============================================================================ +20:56:26 Slot Id : <402> +20:56:26 Transaction Type : REQUEST +20:56:26 Received From : +20:56:26 ============================================================================ +20:56:26 FNo. Len. Field Value +20:56:26 ============================================================================ +20:56:26 [ 1] [ 4] [0800] +20:56:26 [ 7] [ 10] [0320015533] +20:56:26 [ 11] [ 6] [158340] +20:56:26 [ 70] [ 3] [301] +20:56:26 ============================================================================ +20:56:26 + + +waiting on router queue for slot.... +20:56:26 Sending to : +20:56:26 ============================================================================ +20:56:26 ============================================================================ +20:56:26 Slot Id : <402> +20:56:26 Transaction Type : RESPONSE +20:56:26 Received From : +20:56:26 ============================================================================ +20:56:26 FNo. Len. Field Value +20:56:26 ============================================================================ +20:56:26 [ 1] [ 4] [0810] +20:56:26 [ 7] [ 10] [0320015533] +20:56:26 [ 11] [ 6] [158340] +20:56:26 [ 39] [ 2] [00] +20:56:26 [ 70] [ 3] [301] +20:56:26 ============================================================================ +20:56:26 Calculate Source COMM Id = 2 +20:56:26 ============================================================================ +20:56:26 + + +waiting on router queue for slot.... +20:56:39 ============================================================================ +20:56:39 Slot Id : <385> +20:56:39 Transaction Type : REQUEST +20:56:39 Received From : +20:56:39 ============================================================================ +20:56:39 FNo. Len. Field Value +20:56:39 ============================================================================ +20:56:39 [ 1] [ 4] [0800] +20:56:39 [ 7] [ 10] [0320015544] +20:56:39 [ 11] [ 6] [158341] +20:56:39 [ 70] [ 3] [301] +20:56:39 ============================================================================ +20:56:39 + + +waiting on router queue for slot.... +20:56:39 Sending to : +20:56:39 ============================================================================ +20:56:39 ============================================================================ +20:56:39 Slot Id : <385> +20:56:39 Transaction Type : RESPONSE +20:56:39 Received From : +20:56:39 ============================================================================ +20:56:39 FNo. Len. Field Value +20:56:39 ============================================================================ +20:56:39 [ 1] [ 4] [0810] +20:56:39 [ 7] [ 10] [0320015544] +20:56:39 [ 11] [ 6] [158341] +20:56:39 [ 39] [ 2] [00] +20:56:39 [ 70] [ 3] [301] +20:56:39 ============================================================================ +20:56:39 Calculate Source COMM Id = 2 +20:56:39 ============================================================================ +20:56:39 + + +waiting on router queue for slot.... +20:56:51 ============================================================================ +20:56:51 Slot Id : <362> +20:56:51 Transaction Type : REQUEST +20:56:51 Received From : +20:56:51 ============================================================================ +20:56:51 FNo. Len. Field Value +20:56:51 ============================================================================ +20:56:51 [ 1] [ 4] [0800] +20:56:51 [ 7] [ 10] [0321040841] +20:56:51 [ 11] [ 6] [210841] +20:56:51 [ 37] [ 12] [57921210841] +20:56:51 [ 70] [ 3] [301] +20:56:51 ============================================================================ +20:56:51 + + +waiting on router queue for slot.... +20:56:51 Sending to : +20:56:51 ============================================================================ +20:56:51 ============================================================================ +20:56:51 Slot Id : <362> +20:56:51 Transaction Type : RESPONSE +20:56:51 Received From : +20:56:51 ============================================================================ +20:56:51 FNo. Len. Field Value +20:56:51 ============================================================================ +20:56:51 [ 1] [ 4] [0810] +20:56:51 [ 7] [ 10] [0321040841] +20:56:51 [ 11] [ 6] [210841] +20:56:51 [ 37] [ 12] [579212108410] +20:56:51 [ 39] [ 2] [00] +20:56:51 [ 70] [ 3] [810] +20:56:51 ============================================================================ +20:56:51 Calculate Source COMM Id = 6 +20:56:51 ============================================================================ +20:56:51 + + +waiting on router queue for slot.... +20:56:52 ============================================================================ +20:56:52 Slot Id : <375> +20:56:52 Transaction Type : REQUEST +20:56:52 Received From : +20:56:52 ============================================================================ +20:56:52 FNo. Len. Field Value +20:56:52 ============================================================================ +20:56:52 [ 1] [ 4] [0800] +20:56:52 [ 7] [ 10] [0320015600] +20:56:52 [ 11] [ 6] [158342] +20:56:52 [ 70] [ 3] [301] +20:56:52 ============================================================================ +20:56:52 + + +waiting on router queue for slot.... +20:56:52 Sending to : +20:56:52 ============================================================================ +20:56:52 ============================================================================ +20:56:52 Slot Id : <375> +20:56:52 Transaction Type : RESPONSE +20:56:52 Received From : +20:56:52 ============================================================================ +20:56:52 FNo. Len. Field Value +20:56:52 ============================================================================ +20:56:52 [ 1] [ 4] [0810] +20:56:52 [ 7] [ 10] [0320015600] +20:56:52 [ 11] [ 6] [158342] +20:56:52 [ 39] [ 2] [00] +20:56:52 [ 70] [ 3] [301] +20:56:52 ============================================================================ +20:56:52 Calculate Source COMM Id = 2 +20:56:52 ============================================================================ +20:56:52 + + +waiting on router queue for slot.... +20:57:06 ============================================================================ +20:57:06 Slot Id : <408> +20:57:06 Transaction Type : REQUEST +20:57:06 Received From : +20:57:06 ============================================================================ +20:57:06 FNo. Len. Field Value +20:57:06 ============================================================================ +20:57:06 [ 1] [ 4] [0200] +20:57:06 [ 2] [ 16] [6213544002191226] +20:57:06 [ 3] [ 6] [010000] +20:57:06 [ 4] [ 12] [000005000000] +20:57:06 [ 7] [ 10] [0320205457] +20:57:06 [ 11] [ 6] [957498] +20:57:06 [ 12] [ 6] [205457] +20:57:06 [ 13] [ 4] [0320] +20:57:06 [ 15] [ 4] [0320] +20:57:06 [ 18] [ 4] [6011] +20:57:06 [ 19] [ 3] [418] +20:57:06 [ 22] [ 3] [021] +20:57:06 [ 25] [ 2] [01] +20:57:06 [ 28] [ 9] [D00002000] +20:57:06 [ 32] [ 6] [668899] +20:57:06 [ 35] [ 32] [6213544002191226=491212019122762] +20:57:06 [ 37] [ 12] [507900158550] +20:57:06 [ 41] [ 8] [03020006] +20:57:06 [ 42] [ 15] [APT ] +20:57:06 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:57:06 [ 49] [ 3] [418] +20:57:06 [ 52] [ 16] [26B9426609BEA37B] +20:57:06 ============================================================================ +20:57:06 + + +waiting on router queue for slot.... +20:57:06 Sending to : +20:57:06 ============================================================================ +20:57:06 Sending to : +20:57:06 ============================================================================ +20:57:06 ============================================================================ +20:57:06 Slot Id : <408> +20:57:06 Transaction Type : REQUEST +20:57:06 Received From : +20:57:06 ============================================================================ +20:57:06 FNo. Len. Field Value +20:57:06 ============================================================================ +20:57:06 [ 1] [ 4] [0200] +20:57:06 [ 2] [ 16] [6213544002191226] +20:57:06 [ 3] [ 6] [010000] +20:57:06 [ 4] [ 12] [000005000000] +20:57:06 [ 7] [ 10] [0320205457] +20:57:06 [ 11] [ 6] [957498] +20:57:06 [ 12] [ 6] [205457] +20:57:06 [ 13] [ 4] [0320] +20:57:06 [ 15] [ 4] [0320] +20:57:06 [ 18] [ 4] [6011] +20:57:06 [ 19] [ 3] [418] +20:57:06 [ 22] [ 3] [021] +20:57:06 [ 25] [ 2] [01] +20:57:06 [ 28] [ 9] [D00002000] +20:57:06 [ 32] [ 6] [668899] +20:57:06 [ 35] [ 32] [6213544002191226=491212019122762] +20:57:06 [ 37] [ 12] [507900158550] +20:57:06 [ 41] [ 8] [03020006] +20:57:06 [ 42] [ 15] [APT ] +20:57:06 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:57:06 [ 49] [ 3] [418] +20:57:06 [ 52] [ 16] [26B9426609BEA37B] +20:57:06 ============================================================================ +20:57:06 + + +waiting on router queue for slot.... +20:57:06 Sending to : +20:57:06 ============================================================================ +20:57:06 ============================================================================ +20:57:06 Slot Id : <408> +20:57:06 Transaction Type : REQUEST +20:57:06 Received From : +20:57:06 ============================================================================ +20:57:06 FNo. Len. Field Value +20:57:06 ============================================================================ +20:57:06 [ 1] [ 4] [0200] +20:57:06 [ 2] [ 16] [6213544002191226] +20:57:06 [ 3] [ 6] [010000] +20:57:06 [ 4] [ 12] [000005000000] +20:57:06 [ 7] [ 10] [0320205457] +20:57:06 [ 11] [ 6] [957498] +20:57:06 [ 12] [ 6] [205457] +20:57:06 [ 13] [ 4] [0320] +20:57:06 [ 15] [ 4] [0320] +20:57:06 [ 18] [ 4] [6011] +20:57:06 [ 19] [ 3] [418] +20:57:06 [ 22] [ 3] [021] +20:57:06 [ 25] [ 2] [01] +20:57:06 [ 28] [ 9] [D00002000] +20:57:06 [ 32] [ 6] [668899] +20:57:06 [ 35] [ 32] [6213544002191226=491212019122762] +20:57:06 [ 37] [ 12] [507900158550] +20:57:06 [ 41] [ 8] [03020006] +20:57:06 [ 42] [ 15] [APT ] +20:57:06 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:57:06 [ 49] [ 3] [418] +20:57:06 [ 52] [ 16] [17E29E153248503B] +20:57:06 ============================================================================ +20:57:06 + + +waiting on router queue for slot.... +20:57:06 Sending to : <0> +20:57:06 ============================================================================ +20:57:06 ============================================================================ +20:57:06 Slot Id : <408> +20:57:06 Transaction Type : RESPONSE +20:57:06 Received From : +20:57:06 ============================================================================ +20:57:06 FNo. Len. Field Value +20:57:06 ============================================================================ +20:57:06 [ 1] [ 4] [0210] +20:57:06 [ 2] [ 16] [6213544002191226] +20:57:06 [ 3] [ 6] [010000] +20:57:06 [ 4] [ 12] [000005000000] +20:57:06 [ 7] [ 10] [0320205457] +20:57:06 [ 11] [ 6] [957498] +20:57:06 [ 12] [ 6] [205457] +20:57:06 [ 13] [ 4] [0320] +20:57:06 [ 15] [ 4] [0320] +20:57:06 [ 18] [ 4] [6011] +20:57:06 [ 19] [ 3] [418] +20:57:06 [ 22] [ 3] [021] +20:57:06 [ 32] [ 6] [668899] +20:57:06 [ 35] [ 32] [6213544002191226=491212019122762] +20:57:06 [ 37] [ 12] [507900158550] +20:57:06 [ 38] [ 6] [205703] +20:57:06 [ 39] [ 2] [75] +20:57:06 [ 41] [ 8] [03020006] +20:57:06 [ 49] [ 3] [418] +20:57:06 ============================================================================ +20:57:06 Sending to : +20:57:06 ============================================================================ +20:57:06 + + +waiting on router queue for slot.... +20:57:07 ============================================================================ +20:57:07 Slot Id : <450> +20:57:07 Transaction Type : REQUEST +20:57:07 Received From : +20:57:07 ============================================================================ +20:57:07 FNo. Len. Field Value +20:57:07 ============================================================================ +20:57:07 [ 1] [ 4] [0800] +20:57:07 [ 7] [ 10] [0320015615] +20:57:07 [ 11] [ 6] [158343] +20:57:07 [ 70] [ 3] [301] +20:57:07 ============================================================================ +20:57:07 + + +waiting on router queue for slot.... +20:57:07 Sending to : +20:57:07 ============================================================================ +20:57:07 ============================================================================ +20:57:07 Slot Id : <450> +20:57:07 Transaction Type : RESPONSE +20:57:07 Received From : +20:57:07 ============================================================================ +20:57:07 FNo. Len. Field Value +20:57:07 ============================================================================ +20:57:07 [ 1] [ 4] [0810] +20:57:07 [ 7] [ 10] [0320015615] +20:57:07 [ 11] [ 6] [158343] +20:57:07 [ 39] [ 2] [00] +20:57:07 [ 70] [ 3] [301] +20:57:07 ============================================================================ +20:57:07 Calculate Source COMM Id = 2 +20:57:07 ============================================================================ +20:57:07 + + +waiting on router queue for slot.... +20:57:08 ============================================================================ +20:57:08 Slot Id : <408> +20:57:08 Transaction Type : RESPONSE +20:57:08 Received From : +20:57:08 ============================================================================ +20:57:08 FNo. Len. Field Value +20:57:08 ============================================================================ +20:57:08 [ 1] [ 4] [0210] +20:57:08 [ 2] [ 16] [6213544002191226] +20:57:08 [ 3] [ 6] [010000] +20:57:08 [ 4] [ 12] [000005000000] +20:57:08 [ 7] [ 10] [0320205457] +20:57:08 [ 11] [ 6] [957498] +20:57:08 [ 12] [ 6] [205457] +20:57:08 [ 13] [ 4] [0320] +20:57:08 [ 15] [ 4] [0320] +20:57:08 [ 18] [ 4] [6011] +20:57:08 [ 19] [ 3] [418] +20:57:08 [ 22] [ 3] [021] +20:57:08 [ 32] [ 6] [668899] +20:57:08 [ 35] [ 32] [6213544002191226=491212019122762] +20:57:08 [ 37] [ 12] [507900158550] +20:57:08 [ 38] [ 6] [205703] +20:57:08 [ 39] [ 2] [75] +20:57:08 [ 41] [ 8] [03020006] +20:57:08 [ 49] [ 3] [418] +20:57:08 ============================================================================ +20:57:08 Calculate Source COMM Id = 4 +20:57:08 ============================================================================ +20:57:08 + + +waiting on router queue for slot.... +20:57:12 ============================================================================ +20:57:12 Slot Id : <417> +20:57:12 Transaction Type : REQUEST +20:57:12 Received From : +20:57:12 ============================================================================ +20:57:12 FNo. Len. Field Value +20:57:12 ============================================================================ +20:57:12 [ 1] [ 4] [0800] +20:57:12 [ 2] [ 5] [02531] +20:57:12 [ 3] [ 6] [579208] +20:57:12 [ 7] [ 10] [0320135712] +20:57:12 [ 11] [ 6] [807628] +20:57:12 [ 15] [ 10] [0320135712] +20:57:12 [ 37] [ 11] [57920807628] +20:57:12 [ 70] [ 3] [001] +20:57:12 ============================================================================ +20:57:12 + + +waiting on router queue for slot.... +20:57:12 ============================================================================ +20:57:12 Slot Id : <417> +20:57:12 Transaction Type : RESPONSE +20:57:12 Received From : +20:57:12 ============================================================================ +20:57:12 FNo. Len. Field Value +20:57:12 ============================================================================ +20:57:12 [ 1] [ 4] [0810] +20:57:12 [ 7] [ 10] [0320135712] +20:57:12 [ 11] [ 6] [807628] +20:57:12 [ 15] [ 4] [0320] +20:57:12 [ 37] [ 12] [57920807628] +20:57:12 [ 39] [ 2] [00] +20:57:12 [ 70] [ 3] [001] +20:57:12 ============================================================================ +20:57:12 Sending to : +20:57:12 ============================================================================ +20:57:12 + + +waiting on router queue for slot.... +20:57:22 ============================================================================ +20:57:22 Slot Id : <392> +20:57:22 Transaction Type : REQUEST +20:57:22 Received From : +20:57:22 ============================================================================ +20:57:22 FNo. Len. Field Value +20:57:22 ============================================================================ +20:57:22 [ 1] [ 4] [0800] +20:57:22 [ 7] [ 10] [0320015630] +20:57:22 [ 11] [ 6] [158344] +20:57:22 [ 70] [ 3] [301] +20:57:22 ============================================================================ +20:57:22 + + +waiting on router queue for slot.... +20:57:22 Sending to : +20:57:22 ============================================================================ +20:57:22 ============================================================================ +20:57:22 Slot Id : <392> +20:57:22 Transaction Type : RESPONSE +20:57:22 Received From : +20:57:22 ============================================================================ +20:57:22 FNo. Len. Field Value +20:57:22 ============================================================================ +20:57:22 [ 1] [ 4] [0810] +20:57:22 [ 7] [ 10] [0320015630] +20:57:22 [ 11] [ 6] [158344] +20:57:22 [ 39] [ 2] [00] +20:57:22 [ 70] [ 3] [301] +20:57:22 ============================================================================ +20:57:22 Calculate Source COMM Id = 2 +20:57:22 ============================================================================ +20:57:22 + + +waiting on router queue for slot.... +20:57:32 ============================================================================ +20:57:32 Slot Id : <391> +20:57:32 Transaction Type : REQUEST +20:57:32 Received From : +20:57:32 ============================================================================ +20:57:32 FNo. Len. Field Value +20:57:32 ============================================================================ +20:57:32 [ 1] [ 4] [0800] +20:57:32 [ 7] [ 10] [0320015640] +20:57:32 [ 11] [ 6] [158345] +20:57:32 [ 70] [ 3] [301] +20:57:32 ============================================================================ +20:57:32 + + +waiting on router queue for slot.... +20:57:32 Sending to : +20:57:32 ============================================================================ +20:57:32 ============================================================================ +20:57:32 Slot Id : <391> +20:57:32 Transaction Type : RESPONSE +20:57:32 Received From : +20:57:32 ============================================================================ +20:57:32 FNo. Len. Field Value +20:57:32 ============================================================================ +20:57:32 [ 1] [ 4] [0810] +20:57:32 [ 7] [ 10] [0320015640] +20:57:32 [ 11] [ 6] [158345] +20:57:32 [ 39] [ 2] [00] +20:57:32 [ 70] [ 3] [301] +20:57:32 ============================================================================ +20:57:32 Calculate Source COMM Id = 2 +20:57:32 ============================================================================ +20:57:32 + + +waiting on router queue for slot.... +20:57:43 ============================================================================ +20:57:43 Slot Id : <412> +20:57:43 Transaction Type : REQUEST +20:57:43 Received From : +20:57:43 ============================================================================ +20:57:43 FNo. Len. Field Value +20:57:43 ============================================================================ +20:57:43 [ 1] [ 4] [0800] +20:57:43 [ 7] [ 10] [0320015651] +20:57:43 [ 11] [ 6] [158346] +20:57:43 [ 70] [ 3] [301] +20:57:43 ============================================================================ +20:57:43 + + +waiting on router queue for slot.... +20:57:43 Sending to : +20:57:43 ============================================================================ +20:57:43 ============================================================================ +20:57:43 Slot Id : <412> +20:57:43 Transaction Type : RESPONSE +20:57:43 Received From : +20:57:43 ============================================================================ +20:57:43 FNo. Len. Field Value +20:57:43 ============================================================================ +20:57:43 [ 1] [ 4] [0810] +20:57:43 [ 7] [ 10] [0320015651] +20:57:43 [ 11] [ 6] [158346] +20:57:43 [ 39] [ 2] [00] +20:57:43 [ 70] [ 3] [301] +20:57:43 ============================================================================ +20:57:43 Calculate Source COMM Id = 2 +20:57:43 ============================================================================ +20:57:43 + + +waiting on router queue for slot.... +20:57:56 ============================================================================ +20:57:56 Slot Id : <447> +20:57:56 Transaction Type : REQUEST +20:57:56 Received From : +20:57:56 ============================================================================ +20:57:56 FNo. Len. Field Value +20:57:56 ============================================================================ +20:57:56 [ 1] [ 4] [0800] +20:57:56 [ 7] [ 10] [0321040946] +20:57:56 [ 11] [ 6] [210946] +20:57:56 [ 37] [ 12] [57921210946] +20:57:56 [ 70] [ 3] [301] +20:57:56 ============================================================================ +20:57:56 + + +waiting on router queue for slot.... +20:57:56 Sending to : +20:57:56 ============================================================================ +20:57:56 ============================================================================ +20:57:56 Slot Id : <447> +20:57:56 Transaction Type : RESPONSE +20:57:56 Received From : +20:57:56 ============================================================================ +20:57:56 FNo. Len. Field Value +20:57:56 ============================================================================ +20:57:56 [ 1] [ 4] [0810] +20:57:56 [ 7] [ 10] [0321040946] +20:57:56 [ 11] [ 6] [210946] +20:57:56 [ 37] [ 12] [579212109460] +20:57:56 [ 39] [ 2] [00] +20:57:56 [ 70] [ 3] [810] +20:57:56 ============================================================================ +20:57:56 Calculate Source COMM Id = 6 +20:57:56 ============================================================================ +20:57:56 + + +waiting on router queue for slot.... +20:57:59 ============================================================================ +20:57:59 Slot Id : <405> +20:57:59 Transaction Type : REQUEST +20:57:59 Received From : +20:57:59 ============================================================================ +20:57:59 FNo. Len. Field Value +20:57:59 ============================================================================ +20:57:59 [ 1] [ 4] [0800] +20:57:59 [ 7] [ 10] [0320015708] +20:57:59 [ 11] [ 6] [158347] +20:57:59 [ 70] [ 3] [301] +20:57:59 ============================================================================ +20:57:59 + + +waiting on router queue for slot.... +20:57:59 Sending to : +20:57:59 ============================================================================ +20:57:59 ============================================================================ +20:57:59 Slot Id : <405> +20:57:59 Transaction Type : RESPONSE +20:57:59 Received From : +20:57:59 ============================================================================ +20:57:59 FNo. Len. Field Value +20:57:59 ============================================================================ +20:57:59 [ 1] [ 4] [0810] +20:57:59 [ 7] [ 10] [0320015708] +20:57:59 [ 11] [ 6] [158347] +20:57:59 [ 39] [ 2] [00] +20:57:59 [ 70] [ 3] [301] +20:57:59 ============================================================================ +20:57:59 Calculate Source COMM Id = 2 +20:57:59 ============================================================================ +20:57:59 + + +waiting on router queue for slot.... +20:58:14 ============================================================================ +20:58:14 Slot Id : <443> +20:58:14 Transaction Type : REQUEST +20:58:14 Received From : +20:58:14 ============================================================================ +20:58:14 FNo. Len. Field Value +20:58:14 ============================================================================ +20:58:14 [ 1] [ 4] [0800] +20:58:14 [ 2] [ 5] [02531] +20:58:14 [ 3] [ 6] [579208] +20:58:14 [ 7] [ 10] [0320135814] +20:58:14 [ 11] [ 6] [807629] +20:58:14 [ 15] [ 10] [0320135814] +20:58:14 [ 37] [ 11] [57920807629] +20:58:14 [ 70] [ 3] [001] +20:58:14 ============================================================================ +20:58:14 + + +waiting on router queue for slot.... +20:58:14 ============================================================================ +20:58:14 Slot Id : <443> +20:58:14 Transaction Type : RESPONSE +20:58:14 Received From : +20:58:14 ============================================================================ +20:58:14 FNo. Len. Field Value +20:58:14 ============================================================================ +20:58:14 [ 1] [ 4] [0810] +20:58:14 [ 7] [ 10] [0320135814] +20:58:14 [ 11] [ 6] [807629] +20:58:14 [ 15] [ 4] [0320] +20:58:14 [ 37] [ 12] [57920807629] +20:58:14 [ 39] [ 2] [00] +20:58:14 [ 70] [ 3] [001] +20:58:14 ============================================================================ +20:58:14 Sending to : +20:58:14 ============================================================================ +20:58:14 + + +waiting on router queue for slot.... +20:58:15 ============================================================================ +20:58:15 Slot Id : <429> +20:58:15 Transaction Type : REQUEST +20:58:15 Received From : +20:58:15 ============================================================================ +20:58:15 FNo. Len. Field Value +20:58:15 ============================================================================ +20:58:15 [ 1] [ 4] [0800] +20:58:15 [ 7] [ 10] [0320015723] +20:58:15 [ 11] [ 6] [158348] +20:58:15 [ 70] [ 3] [301] +20:58:15 ============================================================================ +20:58:15 + + +waiting on router queue for slot.... +20:58:15 Sending to : +20:58:15 ============================================================================ +20:58:15 ============================================================================ +20:58:15 Slot Id : <429> +20:58:15 Transaction Type : RESPONSE +20:58:15 Received From : +20:58:15 ============================================================================ +20:58:15 FNo. Len. Field Value +20:58:15 ============================================================================ +20:58:15 [ 1] [ 4] [0810] +20:58:15 [ 7] [ 10] [0320015723] +20:58:15 [ 11] [ 6] [158348] +20:58:15 [ 39] [ 2] [00] +20:58:15 [ 70] [ 3] [301] +20:58:15 ============================================================================ +20:58:15 Calculate Source COMM Id = 2 +20:58:15 ============================================================================ +20:58:15 + + +waiting on router queue for slot.... +20:58:21 ============================================================================ +20:58:21 Slot Id : <386> +20:58:21 Transaction Type : REQUEST +20:58:21 Received From : +20:58:21 ============================================================================ +20:58:21 FNo. Len. Field Value +20:58:21 ============================================================================ +20:58:21 [ 1] [ 4] [0200] +20:58:21 [ 2] [ 16] [6213541000005002] +20:58:21 [ 3] [ 6] [010000] +20:58:21 [ 4] [ 12] [000200000000] +20:58:21 [ 7] [ 10] [0320135728] +20:58:21 [ 11] [ 6] [271661] +20:58:21 [ 12] [ 6] [205728] +20:58:21 [ 13] [ 4] [0320] +20:58:21 [ 14] [ 4] [4912] +20:58:21 [ 15] [ 4] [0320] +20:58:21 [ 18] [ 4] [6011] +20:58:21 [ 19] [ 3] [418] +20:58:21 [ 22] [ 3] [021] +20:58:21 [ 25] [ 2] [01] +20:58:21 [ 28] [ 9] [D00002000] +20:58:21 [ 32] [ 6] [180893] +20:58:21 [ 35] [ 32] [6213541000005002=491212010500990] +20:58:21 [ 37] [ 12] [507913271661] +20:58:21 [ 41] [ 8] [0441VT52] +20:58:21 [ 42] [ 15] [999999 ] +20:58:21 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +20:58:21 [ 49] [ 3] [418] +20:58:21 [ 52] [ 16] [F9C39F7359BEBF20] +20:58:21 ============================================================================ +20:58:21 + + +waiting on router queue for slot.... +20:58:21 Sending to : +20:58:21 ============================================================================ +20:58:21 Sending to : +20:58:21 ============================================================================ +20:58:22 ============================================================================ +20:58:22 Slot Id : <386> +20:58:22 Transaction Type : REQUEST +20:58:22 Received From : +20:58:22 ============================================================================ +20:58:22 FNo. Len. Field Value +20:58:22 ============================================================================ +20:58:22 [ 1] [ 4] [0200] +20:58:22 [ 2] [ 16] [6213541000005002] +20:58:22 [ 3] [ 6] [010000] +20:58:22 [ 4] [ 12] [000200000000] +20:58:22 [ 7] [ 10] [0320135728] +20:58:22 [ 11] [ 6] [271661] +20:58:22 [ 12] [ 6] [205728] +20:58:22 [ 13] [ 4] [0320] +20:58:22 [ 14] [ 4] [4912] +20:58:22 [ 15] [ 4] [0320] +20:58:22 [ 18] [ 4] [6011] +20:58:22 [ 19] [ 3] [418] +20:58:22 [ 22] [ 3] [021] +20:58:22 [ 25] [ 2] [01] +20:58:22 [ 28] [ 9] [D00002000] +20:58:22 [ 32] [ 6] [180893] +20:58:22 [ 35] [ 32] [6213541000005002=491212010500990] +20:58:22 [ 37] [ 12] [507913271661] +20:58:22 [ 41] [ 8] [0441VT52] +20:58:22 [ 42] [ 15] [999999 ] +20:58:22 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +20:58:22 [ 49] [ 3] [418] +20:58:22 [ 52] [ 16] [F9C39F7359BEBF20] +20:58:22 ============================================================================ +20:58:22 + + +waiting on router queue for slot.... +20:58:22 Sending to : +20:58:22 ============================================================================ +20:58:22 ============================================================================ +20:58:22 Slot Id : <386> +20:58:22 Transaction Type : REQUEST +20:58:22 Received From : +20:58:22 ============================================================================ +20:58:22 FNo. Len. Field Value +20:58:22 ============================================================================ +20:58:22 [ 1] [ 4] [0200] +20:58:22 [ 2] [ 16] [6213541000005002] +20:58:22 [ 3] [ 6] [010000] +20:58:22 [ 4] [ 12] [000200000000] +20:58:22 [ 7] [ 10] [0320135728] +20:58:22 [ 11] [ 6] [271661] +20:58:22 [ 12] [ 6] [205728] +20:58:22 [ 13] [ 4] [0320] +20:58:22 [ 14] [ 4] [4912] +20:58:22 [ 15] [ 4] [0320] +20:58:22 [ 18] [ 4] [6011] +20:58:22 [ 19] [ 3] [418] +20:58:22 [ 22] [ 3] [021] +20:58:22 [ 25] [ 2] [01] +20:58:22 [ 28] [ 9] [D00002000] +20:58:22 [ 32] [ 6] [180893] +20:58:22 [ 35] [ 32] [6213541000005002=491212010500990] +20:58:22 [ 37] [ 12] [507913271661] +20:58:22 [ 41] [ 8] [0441VT52] +20:58:22 [ 42] [ 15] [999999 ] +20:58:22 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +20:58:22 [ 49] [ 3] [418] +20:58:22 [ 52] [ 16] [15730E58389F2AC8] +20:58:22 ============================================================================ +20:58:22 + + +waiting on router queue for slot.... +20:58:22 Sending to : <0> +20:58:22 ============================================================================ +20:58:22 ============================================================================ +20:58:22 Slot Id : <386> +20:58:22 Transaction Type : RESPONSE +20:58:22 Received From : +20:58:22 ============================================================================ +20:58:22 FNo. Len. Field Value +20:58:22 ============================================================================ +20:58:22 [ 1] [ 4] [0210] +20:58:22 [ 2] [ 16] [6213541000005002] +20:58:22 [ 3] [ 6] [010000] +20:58:22 [ 4] [ 12] [000200000000] +20:58:22 [ 7] [ 10] [0320135728] +20:58:22 [ 11] [ 6] [271661] +20:58:22 [ 12] [ 6] [205728] +20:58:22 [ 13] [ 4] [0320] +20:58:22 [ 15] [ 4] [0320] +20:58:22 [ 18] [ 4] [6011] +20:58:22 [ 19] [ 3] [418] +20:58:22 [ 22] [ 3] [021] +20:58:22 [ 32] [ 6] [180893] +20:58:22 [ 35] [ 32] [6213541000005002=491212010500990] +20:58:22 [ 37] [ 12] [507913271661] +20:58:22 [ 39] [ 2] [61] +20:58:22 [ 41] [ 8] [0441VT52] +20:58:22 [ 49] [ 3] [418] +20:58:22 ============================================================================ +20:58:22 Sending to : +20:58:22 ============================================================================ +20:58:22 + + +waiting on router queue for slot.... +20:58:23 ============================================================================ +20:58:23 Slot Id : <386> +20:58:23 Transaction Type : RESPONSE +20:58:23 Received From : +20:58:23 ============================================================================ +20:58:23 FNo. Len. Field Value +20:58:23 ============================================================================ +20:58:23 [ 1] [ 4] [0210] +20:58:23 [ 2] [ 16] [6213541000005002] +20:58:23 [ 3] [ 6] [010000] +20:58:23 [ 4] [ 12] [000200000000] +20:58:23 [ 7] [ 10] [0320135728] +20:58:23 [ 11] [ 6] [271661] +20:58:23 [ 12] [ 6] [205728] +20:58:23 [ 13] [ 4] [0320] +20:58:23 [ 15] [ 4] [0320] +20:58:23 [ 18] [ 4] [6011] +20:58:23 [ 19] [ 3] [418] +20:58:23 [ 22] [ 3] [021] +20:58:23 [ 32] [ 6] [180893] +20:58:23 [ 35] [ 32] [6213541000005002=491212010500990] +20:58:23 [ 37] [ 12] [507913271661] +20:58:23 [ 39] [ 2] [61] +20:58:23 [ 41] [ 8] [0441VT52] +20:58:23 [ 49] [ 3] [418] +20:58:23 ============================================================================ +20:58:23 Calculate Source COMM Id = 2 +20:58:23 ============================================================================ +20:58:23 + + +waiting on router queue for slot.... +20:58:29 ============================================================================ +20:58:29 Slot Id : <377> +20:58:29 Transaction Type : REQUEST +20:58:29 Received From : +20:58:29 ============================================================================ +20:58:29 FNo. Len. Field Value +20:58:29 ============================================================================ +20:58:29 [ 1] [ 4] [0800] +20:58:29 [ 7] [ 10] [0320135826] +20:58:29 [ 11] [ 6] [079208] +20:58:29 [ 37] [ 12] [507920079208] +20:58:29 [ 70] [ 3] [001] +20:58:29 ============================================================================ +20:58:29 + + +waiting on router queue for slot.... +20:58:29 Sending to : +20:58:29 ============================================================================ +20:58:29 ============================================================================ +20:58:29 Slot Id : <377> +20:58:29 Transaction Type : RESPONSE +20:58:29 Received From : +20:58:29 ============================================================================ +20:58:29 FNo. Len. Field Value +20:58:29 ============================================================================ +20:58:29 [ 1] [ 4] [0810] +20:58:29 [ 7] [ 10] [0320135826] +20:58:29 [ 11] [ 6] [079208] +20:58:29 [ 37] [ 12] [507920079208] +20:58:29 [ 39] [ 2] [00] +20:58:29 [ 70] [ 3] [001] +20:58:29 ============================================================================ +20:58:29 Calculate Source COMM Id = 0 +20:58:29 ============================================================================ +20:58:29 + + +waiting on router queue for slot.... +20:58:35 ============================================================================ +20:58:35 Slot Id : <446> +20:58:35 Transaction Type : REQUEST +20:58:35 Received From : +20:58:35 ============================================================================ +20:58:35 FNo. Len. Field Value +20:58:35 ============================================================================ +20:58:35 [ 1] [ 4] [0800] +20:58:35 [ 7] [ 10] [0320015743] +20:58:35 [ 11] [ 6] [158349] +20:58:35 [ 70] [ 3] [301] +20:58:35 ============================================================================ +20:58:35 + + +waiting on router queue for slot.... +20:58:35 Sending to : +20:58:35 ============================================================================ +20:58:35 ============================================================================ +20:58:35 Slot Id : <446> +20:58:35 Transaction Type : RESPONSE +20:58:35 Received From : +20:58:35 ============================================================================ +20:58:35 FNo. Len. Field Value +20:58:35 ============================================================================ +20:58:35 [ 1] [ 4] [0810] +20:58:35 [ 7] [ 10] [0320015743] +20:58:35 [ 11] [ 6] [158349] +20:58:35 [ 39] [ 2] [00] +20:58:35 [ 70] [ 3] [301] +20:58:35 ============================================================================ +20:58:35 Calculate Source COMM Id = 2 +20:58:35 ============================================================================ +20:58:35 + + +waiting on router queue for slot.... +20:58:48 ============================================================================ +20:58:48 Slot Id : <456> +20:58:48 Transaction Type : REQUEST +20:58:48 Received From : +20:58:48 ============================================================================ +20:58:48 FNo. Len. Field Value +20:58:48 ============================================================================ +20:58:48 [ 1] [ 4] [0200] +20:58:48 [ 2] [ 16] [6213544002191226] +20:58:48 [ 3] [ 6] [010000] +20:58:48 [ 4] [ 12] [000005000000] +20:58:48 [ 7] [ 10] [0320205640] +20:58:48 [ 11] [ 6] [957524] +20:58:48 [ 12] [ 6] [205640] +20:58:48 [ 13] [ 4] [0320] +20:58:48 [ 15] [ 4] [0320] +20:58:48 [ 18] [ 4] [6011] +20:58:48 [ 19] [ 3] [418] +20:58:48 [ 22] [ 3] [021] +20:58:48 [ 25] [ 2] [01] +20:58:48 [ 28] [ 9] [D00002000] +20:58:48 [ 32] [ 6] [668899] +20:58:48 [ 35] [ 32] [6213544002191226=491212019122762] +20:58:48 [ 37] [ 12] [507900158552] +20:58:48 [ 41] [ 8] [03020006] +20:58:48 [ 42] [ 15] [APT ] +20:58:48 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:58:48 [ 49] [ 3] [418] +20:58:48 [ 52] [ 16] [26B9426609BEA37B] +20:58:48 ============================================================================ +20:58:48 + + +waiting on router queue for slot.... +20:58:48 Sending to : +20:58:48 ============================================================================ +20:58:48 Sending to : +20:58:48 ============================================================================ +20:58:49 ============================================================================ +20:58:49 Slot Id : <456> +20:58:49 Transaction Type : REQUEST +20:58:49 Received From : +20:58:49 ============================================================================ +20:58:49 FNo. Len. Field Value +20:58:49 ============================================================================ +20:58:49 [ 1] [ 4] [0200] +20:58:49 [ 2] [ 16] [6213544002191226] +20:58:49 [ 3] [ 6] [010000] +20:58:49 [ 4] [ 12] [000005000000] +20:58:49 [ 7] [ 10] [0320205640] +20:58:49 [ 11] [ 6] [957524] +20:58:49 [ 12] [ 6] [205640] +20:58:49 [ 13] [ 4] [0320] +20:58:49 [ 15] [ 4] [0320] +20:58:49 [ 18] [ 4] [6011] +20:58:49 [ 19] [ 3] [418] +20:58:49 [ 22] [ 3] [021] +20:58:49 [ 25] [ 2] [01] +20:58:49 [ 28] [ 9] [D00002000] +20:58:49 [ 32] [ 6] [668899] +20:58:49 [ 35] [ 32] [6213544002191226=491212019122762] +20:58:49 [ 37] [ 12] [507900158552] +20:58:49 [ 41] [ 8] [03020006] +20:58:49 [ 42] [ 15] [APT ] +20:58:49 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:58:49 [ 49] [ 3] [418] +20:58:49 [ 52] [ 16] [26B9426609BEA37B] +20:58:49 ============================================================================ +20:58:49 + + +waiting on router queue for slot.... +20:58:49 Sending to : +20:58:49 ============================================================================ +20:58:49 ============================================================================ +20:58:49 Slot Id : <456> +20:58:49 Transaction Type : REQUEST +20:58:49 Received From : +20:58:49 ============================================================================ +20:58:49 FNo. Len. Field Value +20:58:49 ============================================================================ +20:58:49 [ 1] [ 4] [0200] +20:58:49 [ 2] [ 16] [6213544002191226] +20:58:49 [ 3] [ 6] [010000] +20:58:49 [ 4] [ 12] [000005000000] +20:58:49 [ 7] [ 10] [0320205640] +20:58:49 [ 11] [ 6] [957524] +20:58:49 [ 12] [ 6] [205640] +20:58:49 [ 13] [ 4] [0320] +20:58:49 [ 15] [ 4] [0320] +20:58:49 [ 18] [ 4] [6011] +20:58:49 [ 19] [ 3] [418] +20:58:49 [ 22] [ 3] [021] +20:58:49 [ 25] [ 2] [01] +20:58:49 [ 28] [ 9] [D00002000] +20:58:49 [ 32] [ 6] [668899] +20:58:49 [ 35] [ 32] [6213544002191226=491212019122762] +20:58:49 [ 37] [ 12] [507900158552] +20:58:49 [ 41] [ 8] [03020006] +20:58:49 [ 42] [ 15] [APT ] +20:58:49 [ 43] [ 40] [ SETTHATHILATH HOSPITAL HA] +20:58:49 [ 49] [ 3] [418] +20:58:49 [ 52] [ 16] [17E29E153248503B] +20:58:49 ============================================================================ +20:58:49 + + +waiting on router queue for slot.... +20:58:49 Sending to : <0> +20:58:49 ============================================================================ +20:58:49 ============================================================================ +20:58:49 Slot Id : <456> +20:58:49 Transaction Type : RESPONSE +20:58:49 Received From : +20:58:49 ============================================================================ +20:58:49 FNo. Len. Field Value +20:58:49 ============================================================================ +20:58:49 [ 1] [ 4] [0210] +20:58:49 [ 2] [ 16] [6213544002191226] +20:58:49 [ 3] [ 6] [010000] +20:58:49 [ 4] [ 12] [000005000000] +20:58:49 [ 7] [ 10] [0320205640] +20:58:49 [ 11] [ 6] [957524] +20:58:49 [ 12] [ 6] [205640] +20:58:49 [ 13] [ 4] [0320] +20:58:49 [ 15] [ 4] [0320] +20:58:49 [ 18] [ 4] [6011] +20:58:49 [ 19] [ 3] [418] +20:58:49 [ 22] [ 3] [021] +20:58:49 [ 32] [ 6] [668899] +20:58:49 [ 35] [ 32] [6213544002191226=491212019122762] +20:58:49 [ 37] [ 12] [507900158552] +20:58:49 [ 38] [ 6] [205846] +20:58:49 [ 39] [ 2] [75] +20:58:49 [ 41] [ 8] [03020006] +20:58:49 [ 49] [ 3] [418] +20:58:49 ============================================================================ +20:58:49 Sending to : +20:58:49 ============================================================================ +20:58:49 + + +waiting on router queue for slot.... +20:58:50 ============================================================================ +20:58:50 Slot Id : <456> +20:58:50 Transaction Type : RESPONSE +20:58:50 Received From : +20:58:50 ============================================================================ +20:58:50 FNo. Len. Field Value +20:58:50 ============================================================================ +20:58:50 [ 1] [ 4] [0210] +20:58:50 [ 2] [ 16] [6213544002191226] +20:58:50 [ 3] [ 6] [010000] +20:58:50 [ 4] [ 12] [000005000000] +20:58:50 [ 7] [ 10] [0320205640] +20:58:50 [ 11] [ 6] [957524] +20:58:50 [ 12] [ 6] [205640] +20:58:50 [ 13] [ 4] [0320] +20:58:50 [ 15] [ 4] [0320] +20:58:50 [ 18] [ 4] [6011] +20:58:50 [ 19] [ 3] [418] +20:58:50 [ 22] [ 3] [021] +20:58:50 [ 32] [ 6] [668899] +20:58:50 [ 35] [ 32] [6213544002191226=491212019122762] +20:58:50 [ 37] [ 12] [507900158552] +20:58:50 [ 38] [ 6] [205846] +20:58:50 [ 39] [ 2] [75] +20:58:50 [ 41] [ 8] [03020006] +20:58:50 [ 49] [ 3] [418] +20:58:50 ============================================================================ +20:58:50 Calculate Source COMM Id = 4 +20:58:50 ============================================================================ +20:58:50 + + +waiting on router queue for slot.... +20:58:50 ============================================================================ +20:58:50 Slot Id : <404> +20:58:50 Transaction Type : REQUEST +20:58:50 Received From : +20:58:50 ============================================================================ +20:58:50 FNo. Len. Field Value +20:58:50 ============================================================================ +20:58:50 [ 1] [ 4] [0800] +20:58:50 [ 7] [ 10] [0320015759] +20:58:50 [ 11] [ 6] [158350] +20:58:50 [ 70] [ 3] [301] +20:58:50 ============================================================================ +20:58:50 + + +waiting on router queue for slot.... +20:58:50 Sending to : +20:58:50 ============================================================================ +20:58:50 ============================================================================ +20:58:50 Slot Id : <404> +20:58:50 Transaction Type : RESPONSE +20:58:50 Received From : +20:58:50 ============================================================================ +20:58:50 FNo. Len. Field Value +20:58:50 ============================================================================ +20:58:50 [ 1] [ 4] [0810] +20:58:50 [ 7] [ 10] [0320015759] +20:58:50 [ 11] [ 6] [158350] +20:58:50 [ 39] [ 2] [00] +20:58:50 [ 70] [ 3] [301] +20:58:50 ============================================================================ +20:58:50 Calculate Source COMM Id = 2 +20:58:50 ============================================================================ +20:58:50 + + +waiting on router queue for slot.... +20:58:53 ============================================================================ +20:58:53 Slot Id : <424> +20:58:53 Transaction Type : REQUEST +20:58:53 Received From : +20:58:53 ============================================================================ +20:58:53 FNo. Len. Field Value +20:58:53 ============================================================================ +20:58:53 [ 1] [ 4] [0200] +20:58:53 [ 2] [ 16] [6213541000005002] +20:58:53 [ 3] [ 6] [010000] +20:58:53 [ 4] [ 12] [000010000000] +20:58:53 [ 7] [ 10] [0320135759] +20:58:53 [ 11] [ 6] [271663] +20:58:53 [ 12] [ 6] [205759] +20:58:53 [ 13] [ 4] [0320] +20:58:53 [ 14] [ 4] [4912] +20:58:53 [ 15] [ 4] [0320] +20:58:53 [ 18] [ 4] [6011] +20:58:53 [ 19] [ 3] [418] +20:58:53 [ 22] [ 3] [021] +20:58:53 [ 25] [ 2] [01] +20:58:53 [ 28] [ 9] [D00002000] +20:58:53 [ 32] [ 6] [180893] +20:58:53 [ 35] [ 32] [6213541000005002=491212010500990] +20:58:53 [ 37] [ 12] [507913271663] +20:58:53 [ 41] [ 8] [0441VT52] +20:58:53 [ 42] [ 15] [999999 ] +20:58:53 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +20:58:53 [ 49] [ 3] [418] +20:58:53 [ 52] [ 16] [F9C39F7359BEBF20] +20:58:53 ============================================================================ +20:58:53 + + +waiting on router queue for slot.... +20:58:53 Sending to : +20:58:53 ============================================================================ +20:58:53 Sending to : +20:58:53 ============================================================================ +20:58:53 ============================================================================ +20:58:53 Slot Id : <424> +20:58:53 Transaction Type : REQUEST +20:58:53 Received From : +20:58:53 ============================================================================ +20:58:53 FNo. Len. Field Value +20:58:53 ============================================================================ +20:58:53 [ 1] [ 4] [0200] +20:58:53 [ 2] [ 16] [6213541000005002] +20:58:53 [ 3] [ 6] [010000] +20:58:53 [ 4] [ 12] [000010000000] +20:58:53 [ 7] [ 10] [0320135759] +20:58:53 [ 11] [ 6] [271663] +20:58:53 [ 12] [ 6] [205759] +20:58:53 [ 13] [ 4] [0320] +20:58:53 [ 14] [ 4] [4912] +20:58:53 [ 15] [ 4] [0320] +20:58:53 [ 18] [ 4] [6011] +20:58:53 [ 19] [ 3] [418] +20:58:53 [ 22] [ 3] [021] +20:58:53 [ 25] [ 2] [01] +20:58:53 [ 28] [ 9] [D00002000] +20:58:53 [ 32] [ 6] [180893] +20:58:53 [ 35] [ 32] [6213541000005002=491212010500990] +20:58:53 [ 37] [ 12] [507913271663] +20:58:53 [ 41] [ 8] [0441VT52] +20:58:53 [ 42] [ 15] [999999 ] +20:58:53 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +20:58:53 [ 49] [ 3] [418] +20:58:53 [ 52] [ 16] [F9C39F7359BEBF20] +20:58:53 ============================================================================ +20:58:53 + + +waiting on router queue for slot.... +20:58:53 Sending to : +20:58:53 ============================================================================ +20:58:53 ============================================================================ +20:58:53 Slot Id : <424> +20:58:53 Transaction Type : REQUEST +20:58:53 Received From : +20:58:53 ============================================================================ +20:58:53 FNo. Len. Field Value +20:58:53 ============================================================================ +20:58:53 [ 1] [ 4] [0200] +20:58:53 [ 2] [ 16] [6213541000005002] +20:58:53 [ 3] [ 6] [010000] +20:58:53 [ 4] [ 12] [000010000000] +20:58:53 [ 7] [ 10] [0320135759] +20:58:53 [ 11] [ 6] [271663] +20:58:53 [ 12] [ 6] [205759] +20:58:53 [ 13] [ 4] [0320] +20:58:53 [ 14] [ 4] [4912] +20:58:53 [ 15] [ 4] [0320] +20:58:53 [ 18] [ 4] [6011] +20:58:53 [ 19] [ 3] [418] +20:58:53 [ 22] [ 3] [021] +20:58:53 [ 25] [ 2] [01] +20:58:53 [ 28] [ 9] [D00002000] +20:58:53 [ 32] [ 6] [180893] +20:58:53 [ 35] [ 32] [6213541000005002=491212010500990] +20:58:53 [ 37] [ 12] [507913271663] +20:58:53 [ 41] [ 8] [0441VT52] +20:58:53 [ 42] [ 15] [999999 ] +20:58:53 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +20:58:53 [ 49] [ 3] [418] +20:58:53 [ 52] [ 16] [15730E58389F2AC8] +20:58:53 ============================================================================ +20:58:53 + + +waiting on router queue for slot.... +20:58:53 Sending to : <0> +20:58:53 ============================================================================ +20:58:54 ============================================================================ +20:58:54 Slot Id : <424> +20:58:54 Transaction Type : RESPONSE +20:58:54 Received From : +20:58:54 ============================================================================ +20:58:54 FNo. Len. Field Value +20:58:54 ============================================================================ +20:58:54 [ 1] [ 4] [0210] +20:58:54 [ 2] [ 16] [6213541000005002] +20:58:54 [ 3] [ 6] [010000] +20:58:54 [ 4] [ 12] [000010000000] +20:58:54 [ 7] [ 10] [0320135759] +20:58:54 [ 11] [ 6] [271663] +20:58:54 [ 12] [ 6] [205759] +20:58:54 [ 13] [ 4] [0320] +20:58:54 [ 15] [ 4] [0320] +20:58:54 [ 18] [ 4] [6011] +20:58:54 [ 19] [ 3] [418] +20:58:54 [ 32] [ 6] [180893] +20:58:54 [ 35] [ 32] [6213541000005002=491212010500990] +20:58:54 [ 37] [ 12] [507913271663] +20:58:54 [ 38] [ 6] [082663] +20:58:54 [ 39] [ 2] [00] +20:58:54 [ 41] [ 8] [0441VT52] +20:58:54 [ 49] [ 3] [418] +20:58:54 [ 54] [ 40] [0001418C0000445556190002418C000034355619] +20:58:54 ============================================================================ +20:58:54 Sending to : +20:58:54 ============================================================================ +20:58:54 + + +waiting on router queue for slot.... +20:58:55 ============================================================================ +20:58:55 Slot Id : <424> +20:58:55 Transaction Type : RESPONSE +20:58:55 Received From : +20:58:55 ============================================================================ +20:58:55 FNo. Len. Field Value +20:58:55 ============================================================================ +20:58:55 [ 1] [ 4] [0210] +20:58:55 [ 2] [ 16] [6213541000005002] +20:58:55 [ 3] [ 6] [010000] +20:58:55 [ 4] [ 12] [000010000000] +20:58:55 [ 7] [ 10] [0320135759] +20:58:55 [ 11] [ 6] [271663] +20:58:55 [ 12] [ 6] [205759] +20:58:55 [ 13] [ 4] [0320] +20:58:55 [ 15] [ 4] [0320] +20:58:55 [ 18] [ 4] [6011] +20:58:55 [ 19] [ 3] [418] +20:58:55 [ 32] [ 6] [180893] +20:58:55 [ 35] [ 32] [6213541000005002=491212010500990] +20:58:55 [ 37] [ 12] [507913271663] +20:58:55 [ 38] [ 6] [082663] +20:58:55 [ 39] [ 2] [00] +20:58:55 [ 41] [ 8] [0441VT52] +20:58:55 [ 49] [ 3] [418] +20:58:55 [ 54] [ 40] [0001418C0000445556190002418C000034355619] +20:58:55 ============================================================================ +20:58:55 Calculate Source COMM Id = 2 +20:58:55 ============================================================================ +20:58:55 + + +waiting on router queue for slot.... +20:59:01 ============================================================================ +20:59:01 Slot Id : <434> +20:59:01 Transaction Type : REQUEST +20:59:01 Received From : +20:59:01 ============================================================================ +20:59:01 FNo. Len. Field Value +20:59:01 ============================================================================ +20:59:01 [ 1] [ 4] [0800] +20:59:01 [ 7] [ 10] [0321041051] +20:59:01 [ 11] [ 6] [211051] +20:59:01 [ 37] [ 12] [57921211051] +20:59:01 [ 70] [ 3] [301] +20:59:01 ============================================================================ +20:59:01 + + +waiting on router queue for slot.... +20:59:01 Sending to : +20:59:01 ============================================================================ +20:59:01 ============================================================================ +20:59:01 Slot Id : <434> +20:59:01 Transaction Type : RESPONSE +20:59:01 Received From : +20:59:01 ============================================================================ +20:59:01 FNo. Len. Field Value +20:59:01 ============================================================================ +20:59:01 [ 1] [ 4] [0810] +20:59:01 [ 7] [ 10] [0321041051] +20:59:01 [ 11] [ 6] [211051] +20:59:01 [ 37] [ 12] [579212110510] +20:59:01 [ 39] [ 2] [00] +20:59:01 [ 70] [ 3] [810] +20:59:01 ============================================================================ +20:59:01 Calculate Source COMM Id = 6 +20:59:01 ============================================================================ +20:59:01 + + +waiting on router queue for slot.... +20:59:05 ============================================================================ +20:59:05 Slot Id : <445> +20:59:05 Transaction Type : REQUEST +20:59:05 Received From : +20:59:05 ============================================================================ +20:59:05 FNo. Len. Field Value +20:59:05 ============================================================================ +20:59:05 [ 1] [ 4] [0800] +20:59:05 [ 7] [ 10] [0320015814] +20:59:05 [ 11] [ 6] [158351] +20:59:05 [ 70] [ 3] [301] +20:59:05 ============================================================================ +20:59:05 + + +waiting on router queue for slot.... +20:59:05 Sending to : +20:59:05 ============================================================================ +20:59:05 ============================================================================ +20:59:05 Slot Id : <445> +20:59:05 Transaction Type : RESPONSE +20:59:05 Received From : +20:59:05 ============================================================================ +20:59:05 FNo. Len. Field Value +20:59:05 ============================================================================ +20:59:05 [ 1] [ 4] [0810] +20:59:05 [ 7] [ 10] [0320015814] +20:59:05 [ 11] [ 6] [158351] +20:59:05 [ 39] [ 2] [00] +20:59:05 [ 70] [ 3] [301] +20:59:05 ============================================================================ +20:59:05 Calculate Source COMM Id = 2 +20:59:05 ============================================================================ +20:59:05 + + +waiting on router queue for slot.... +20:59:16 ============================================================================ +20:59:16 Slot Id : <442> +20:59:16 Transaction Type : REQUEST +20:59:16 Received From : +20:59:16 ============================================================================ +20:59:16 FNo. Len. Field Value +20:59:16 ============================================================================ +20:59:16 [ 1] [ 4] [0800] +20:59:16 [ 2] [ 5] [02531] +20:59:16 [ 3] [ 6] [579208] +20:59:16 [ 7] [ 10] [0320135916] +20:59:16 [ 11] [ 6] [807630] +20:59:16 [ 15] [ 10] [0320135916] +20:59:16 [ 37] [ 11] [57920807630] +20:59:16 [ 70] [ 3] [001] +20:59:16 ============================================================================ +20:59:16 + + +waiting on router queue for slot.... +20:59:16 ============================================================================ +20:59:16 Slot Id : <442> +20:59:16 Transaction Type : RESPONSE +20:59:16 Received From : +20:59:16 ============================================================================ +20:59:16 FNo. Len. Field Value +20:59:16 ============================================================================ +20:59:16 [ 1] [ 4] [0810] +20:59:16 [ 7] [ 10] [0320135916] +20:59:16 [ 11] [ 6] [807630] +20:59:16 [ 15] [ 4] [0320] +20:59:16 [ 37] [ 12] [57920807630] +20:59:16 [ 39] [ 2] [00] +20:59:16 [ 70] [ 3] [001] +20:59:16 ============================================================================ +20:59:16 Sending to : +20:59:16 ============================================================================ +20:59:16 + + +waiting on router queue for slot.... +20:59:16 ============================================================================ +20:59:16 Slot Id : <438> +20:59:16 Transaction Type : REQUEST +20:59:16 Received From : +20:59:16 ============================================================================ +20:59:16 FNo. Len. Field Value +20:59:16 ============================================================================ +20:59:16 [ 1] [ 4] [0800] +20:59:16 [ 7] [ 10] [0320015825] +20:59:16 [ 11] [ 6] [158352] +20:59:16 [ 70] [ 3] [301] +20:59:16 ============================================================================ +20:59:16 + + +waiting on router queue for slot.... +20:59:16 Sending to : +20:59:16 ============================================================================ +20:59:16 ============================================================================ +20:59:16 Slot Id : <438> +20:59:16 Transaction Type : RESPONSE +20:59:16 Received From : +20:59:16 ============================================================================ +20:59:16 FNo. Len. Field Value +20:59:16 ============================================================================ +20:59:16 [ 1] [ 4] [0810] +20:59:16 [ 7] [ 10] [0320015825] +20:59:16 [ 11] [ 6] [158352] +20:59:16 [ 39] [ 2] [00] +20:59:16 [ 70] [ 3] [301] +20:59:16 ============================================================================ +20:59:16 Calculate Source COMM Id = 2 +20:59:16 ============================================================================ +20:59:16 + + +waiting on router queue for slot.... +20:59:27 ============================================================================ +20:59:27 Slot Id : <435> +20:59:27 Transaction Type : REQUEST +20:59:27 Received From : +20:59:27 ============================================================================ +20:59:27 FNo. Len. Field Value +20:59:27 ============================================================================ +20:59:27 [ 1] [ 4] [0800] +20:59:27 [ 7] [ 10] [0320015835] +20:59:27 [ 11] [ 6] [158353] +20:59:27 [ 70] [ 3] [301] +20:59:27 ============================================================================ +20:59:27 + + +waiting on router queue for slot.... +20:59:27 Sending to : +20:59:27 ============================================================================ +20:59:27 ============================================================================ +20:59:27 Slot Id : <435> +20:59:27 Transaction Type : RESPONSE +20:59:27 Received From : +20:59:27 ============================================================================ +20:59:27 FNo. Len. Field Value +20:59:27 ============================================================================ +20:59:27 [ 1] [ 4] [0810] +20:59:27 [ 7] [ 10] [0320015835] +20:59:27 [ 11] [ 6] [158353] +20:59:27 [ 39] [ 2] [00] +20:59:27 [ 70] [ 3] [301] +20:59:27 ============================================================================ +20:59:27 Calculate Source COMM Id = 2 +20:59:27 ============================================================================ +20:59:27 + + +waiting on router queue for slot.... +20:59:28 ============================================================================ +20:59:28 Slot Id : <431> +20:59:28 Transaction Type : REQUEST +20:59:28 Received From : +20:59:28 ============================================================================ +20:59:28 FNo. Len. Field Value +20:59:28 ============================================================================ +20:59:28 [ 1] [ 4] [0200] +20:59:28 [ 2] [ 16] [6213544002128681] +20:59:28 [ 3] [ 6] [010000] +20:59:28 [ 4] [ 12] [000005000000] +20:59:28 [ 7] [ 10] [0320205720] +20:59:28 [ 11] [ 6] [957541] +20:59:28 [ 12] [ 6] [205720] +20:59:28 [ 13] [ 4] [0320] +20:59:28 [ 15] [ 4] [0320] +20:59:28 [ 18] [ 4] [6011] +20:59:28 [ 19] [ 3] [418] +20:59:28 [ 22] [ 3] [021] +20:59:28 [ 25] [ 2] [01] +20:59:28 [ 28] [ 9] [D00002000] +20:59:28 [ 32] [ 6] [668899] +20:59:28 [ 35] [ 32] [6213544002128681=491212012868353] +20:59:28 [ 37] [ 12] [507901726999] +20:59:28 [ 41] [ 8] [03316002] +20:59:28 [ 42] [ 15] [APT ] +20:59:28 [ 43] [ 40] [ LAKORNPHENG UNIT LAKORNPH] +20:59:28 [ 49] [ 3] [418] +20:59:28 [ 52] [ 16] [9B2DA70950DD5674] +20:59:28 ============================================================================ +20:59:28 + + +waiting on router queue for slot.... +20:59:28 Sending to : +20:59:28 ============================================================================ +20:59:28 Sending to : +20:59:28 ============================================================================ +20:59:29 ============================================================================ +20:59:29 Slot Id : <431> +20:59:29 Transaction Type : REQUEST +20:59:29 Received From : +20:59:29 ============================================================================ +20:59:29 FNo. Len. Field Value +20:59:29 ============================================================================ +20:59:29 [ 1] [ 4] [0200] +20:59:29 [ 2] [ 16] [6213544002128681] +20:59:29 [ 3] [ 6] [010000] +20:59:29 [ 4] [ 12] [000005000000] +20:59:29 [ 7] [ 10] [0320205720] +20:59:29 [ 11] [ 6] [957541] +20:59:29 [ 12] [ 6] [205720] +20:59:29 [ 13] [ 4] [0320] +20:59:29 [ 15] [ 4] [0320] +20:59:29 [ 18] [ 4] [6011] +20:59:29 [ 19] [ 3] [418] +20:59:29 [ 22] [ 3] [021] +20:59:29 [ 25] [ 2] [01] +20:59:29 [ 28] [ 9] [D00002000] +20:59:29 [ 32] [ 6] [668899] +20:59:29 [ 35] [ 32] [6213544002128681=491212012868353] +20:59:29 [ 37] [ 12] [507901726999] +20:59:29 [ 41] [ 8] [03316002] +20:59:29 [ 42] [ 15] [APT ] +20:59:29 [ 43] [ 40] [ LAKORNPHENG UNIT LAKORNPH] +20:59:29 [ 49] [ 3] [418] +20:59:29 [ 52] [ 16] [9B2DA70950DD5674] +20:59:29 ============================================================================ +20:59:29 + + +waiting on router queue for slot.... +20:59:29 Sending to : +20:59:29 ============================================================================ +20:59:29 ============================================================================ +20:59:29 Slot Id : <431> +20:59:29 Transaction Type : REQUEST +20:59:29 Received From : +20:59:29 ============================================================================ +20:59:29 FNo. Len. Field Value +20:59:29 ============================================================================ +20:59:29 [ 1] [ 4] [0200] +20:59:29 [ 2] [ 16] [6213544002128681] +20:59:29 [ 3] [ 6] [010000] +20:59:29 [ 4] [ 12] [000005000000] +20:59:29 [ 7] [ 10] [0320205720] +20:59:29 [ 11] [ 6] [957541] +20:59:29 [ 12] [ 6] [205720] +20:59:29 [ 13] [ 4] [0320] +20:59:29 [ 15] [ 4] [0320] +20:59:29 [ 18] [ 4] [6011] +20:59:29 [ 19] [ 3] [418] +20:59:29 [ 22] [ 3] [021] +20:59:29 [ 25] [ 2] [01] +20:59:29 [ 28] [ 9] [D00002000] +20:59:29 [ 32] [ 6] [668899] +20:59:29 [ 35] [ 32] [6213544002128681=491212012868353] +20:59:29 [ 37] [ 12] [507901726999] +20:59:29 [ 41] [ 8] [03316002] +20:59:29 [ 42] [ 15] [APT ] +20:59:29 [ 43] [ 40] [ LAKORNPHENG UNIT LAKORNPH] +20:59:29 [ 49] [ 3] [418] +20:59:29 [ 52] [ 16] [152CFE218AB9C652] +20:59:29 ============================================================================ +20:59:29 + + +waiting on router queue for slot.... +20:59:29 Sending to : <0> +20:59:29 ============================================================================ +20:59:29 ============================================================================ +20:59:29 Slot Id : <431> +20:59:29 Transaction Type : RESPONSE +20:59:29 Received From : +20:59:29 ============================================================================ +20:59:29 FNo. Len. Field Value +20:59:29 ============================================================================ +20:59:29 [ 1] [ 4] [0210] +20:59:29 [ 2] [ 16] [6213544002128681] +20:59:29 [ 3] [ 6] [010000] +20:59:29 [ 4] [ 12] [000005000000] +20:59:29 [ 7] [ 10] [0320205720] +20:59:29 [ 11] [ 6] [957541] +20:59:29 [ 12] [ 6] [205720] +20:59:29 [ 13] [ 4] [0320] +20:59:29 [ 15] [ 4] [0320] +20:59:29 [ 18] [ 4] [6011] +20:59:29 [ 19] [ 3] [418] +20:59:29 [ 32] [ 6] [668899] +20:59:29 [ 35] [ 32] [6213544002128681=491212012868353] +20:59:29 [ 37] [ 12] [507901726999] +20:59:29 [ 38] [ 6] [957541] +20:59:29 [ 39] [ 2] [51] +20:59:29 [ 41] [ 8] [03316002] +20:59:29 [ 49] [ 3] [418] +20:59:29 [ 54] [ 40] [0001418C0000096320630002418C000009632063] +20:59:29 ============================================================================ +20:59:29 Sending to : +20:59:29 ============================================================================ +20:59:29 + + +waiting on router queue for slot.... +20:59:30 ============================================================================ +20:59:30 Slot Id : <431> +20:59:30 Transaction Type : RESPONSE +20:59:30 Received From : +20:59:30 ============================================================================ +20:59:30 FNo. Len. Field Value +20:59:30 ============================================================================ +20:59:30 [ 1] [ 4] [0210] +20:59:30 [ 2] [ 16] [6213544002128681] +20:59:30 [ 3] [ 6] [010000] +20:59:30 [ 4] [ 12] [000005000000] +20:59:30 [ 7] [ 10] [0320205720] +20:59:30 [ 11] [ 6] [957541] +20:59:30 [ 12] [ 6] [205720] +20:59:30 [ 13] [ 4] [0320] +20:59:30 [ 15] [ 4] [0320] +20:59:30 [ 18] [ 4] [6011] +20:59:30 [ 19] [ 3] [418] +20:59:30 [ 32] [ 6] [668899] +20:59:30 [ 35] [ 32] [6213544002128681=491212012868353] +20:59:30 [ 37] [ 12] [507901726999] +20:59:30 [ 38] [ 6] [957541] +20:59:30 [ 39] [ 2] [51] +20:59:30 [ 41] [ 8] [03316002] +20:59:30 [ 49] [ 3] [418] +20:59:30 [ 54] [ 40] [0001418C0000096320630002418C000009632063] +20:59:30 ============================================================================ +20:59:30 Calculate Source COMM Id = 4 +20:59:30 ============================================================================ +20:59:30 + + +waiting on router queue for slot.... +20:59:37 ============================================================================ +20:59:37 Slot Id : <462> +20:59:37 Transaction Type : REQUEST +20:59:37 Received From : +20:59:37 ============================================================================ +20:59:37 FNo. Len. Field Value +20:59:37 ============================================================================ +20:59:37 [ 1] [ 4] [0800] +20:59:37 [ 7] [ 10] [0320015845] +20:59:37 [ 11] [ 6] [158354] +20:59:37 [ 70] [ 3] [301] +20:59:37 ============================================================================ +20:59:37 + + +waiting on router queue for slot.... +20:59:37 Sending to : +20:59:37 ============================================================================ +20:59:37 ============================================================================ +20:59:37 Slot Id : <462> +20:59:37 Transaction Type : RESPONSE +20:59:37 Received From : +20:59:37 ============================================================================ +20:59:37 FNo. Len. Field Value +20:59:37 ============================================================================ +20:59:37 [ 1] [ 4] [0810] +20:59:37 [ 7] [ 10] [0320015845] +20:59:37 [ 11] [ 6] [158354] +20:59:37 [ 39] [ 2] [00] +20:59:37 [ 70] [ 3] [301] +20:59:37 ============================================================================ +20:59:37 Calculate Source COMM Id = 2 +20:59:37 ============================================================================ +20:59:37 + + +waiting on router queue for slot.... +20:59:41 ============================================================================ +20:59:41 Slot Id : <427> +20:59:41 Transaction Type : REQUEST +20:59:41 Received From : +20:59:41 ============================================================================ +20:59:41 FNo. Len. Field Value +20:59:41 ============================================================================ +20:59:41 [ 1] [ 4] [0200] +20:59:41 [ 2] [ 16] [6688990106678707] +20:59:41 [ 3] [ 6] [010000] +20:59:41 [ 4] [ 12] [000100000000] +20:59:41 [ 7] [ 10] [0320205938] +20:59:41 [ 11] [ 6] [844817] +20:59:41 [ 12] [ 6] [205938] +20:59:41 [ 13] [ 4] [0320] +20:59:41 [ 15] [ 4] [0320] +20:59:41 [ 18] [ 4] [6011] +20:59:41 [ 22] [ 3] [900] +20:59:41 [ 25] [ 2] [02] +20:59:41 [ 28] [ 9] [D00002000] +20:59:41 [ 32] [ 6] [621354] +20:59:41 [ 35] [ 37] [6688990106678707=44011231870739600000] +20:59:41 [ 37] [ 12] [507902827883] +20:59:41 [ 41] [ 8] [01007600] +20:59:41 [ 42] [ 15] [NATIVE ] +20:59:41 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +20:59:41 [ 49] [ 3] [418] +20:59:41 [ 52] [ 16] [B91CA22BA8D80A44] +20:59:41 ============================================================================ +20:59:41 + + +waiting on router queue for slot.... +20:59:41 Sending to : +20:59:41 ============================================================================ +20:59:41 Sending to : +20:59:41 ============================================================================ +20:59:42 ============================================================================ +20:59:42 Slot Id : <427> +20:59:42 Transaction Type : REQUEST +20:59:42 Received From : +20:59:42 ============================================================================ +20:59:42 FNo. Len. Field Value +20:59:42 ============================================================================ +20:59:42 [ 1] [ 4] [0200] +20:59:42 [ 2] [ 16] [6688990106678707] +20:59:42 [ 3] [ 6] [010000] +20:59:42 [ 4] [ 12] [000100000000] +20:59:42 [ 7] [ 10] [0320205938] +20:59:42 [ 11] [ 6] [844817] +20:59:42 [ 12] [ 6] [205938] +20:59:42 [ 13] [ 4] [0320] +20:59:42 [ 15] [ 4] [0320] +20:59:42 [ 18] [ 4] [6011] +20:59:42 [ 22] [ 3] [900] +20:59:42 [ 25] [ 2] [02] +20:59:42 [ 28] [ 9] [D00002000] +20:59:42 [ 32] [ 6] [621354] +20:59:42 [ 35] [ 37] [6688990106678707=44011231870739600000] +20:59:42 [ 37] [ 12] [507902827883] +20:59:42 [ 41] [ 8] [01007600] +20:59:42 [ 42] [ 15] [NATIVE ] +20:59:42 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +20:59:42 [ 49] [ 3] [418] +20:59:42 [ 52] [ 16] [B91CA22BA8D80A44] +20:59:42 ============================================================================ +20:59:42 + + +waiting on router queue for slot.... +20:59:42 Sending to : +20:59:42 ============================================================================ +20:59:42 ============================================================================ +20:59:42 Slot Id : <427> +20:59:42 Transaction Type : REQUEST +20:59:42 Received From : +20:59:42 ============================================================================ +20:59:42 FNo. Len. Field Value +20:59:42 ============================================================================ +20:59:42 [ 1] [ 4] [0200] +20:59:42 [ 2] [ 16] [6688990106678707] +20:59:42 [ 3] [ 6] [010000] +20:59:42 [ 4] [ 12] [000100000000] +20:59:42 [ 7] [ 10] [0320205938] +20:59:42 [ 11] [ 6] [844817] +20:59:42 [ 12] [ 6] [205938] +20:59:42 [ 13] [ 4] [0320] +20:59:42 [ 15] [ 4] [0320] +20:59:42 [ 18] [ 4] [6011] +20:59:42 [ 22] [ 3] [900] +20:59:42 [ 25] [ 2] [02] +20:59:42 [ 28] [ 9] [D00002000] +20:59:42 [ 32] [ 6] [621354] +20:59:42 [ 35] [ 37] [6688990106678707=44011231870739600000] +20:59:42 [ 37] [ 12] [507902827883] +20:59:42 [ 41] [ 8] [01007600] +20:59:42 [ 42] [ 15] [NATIVE ] +20:59:42 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +20:59:42 [ 49] [ 3] [418] +20:59:42 [ 52] [ 16] [69A9A2D1148744C3] +20:59:42 ============================================================================ +20:59:42 + + +waiting on router queue for slot.... +20:59:42 Sending to : <4> +20:59:42 ============================================================================ +20:59:43 ============================================================================ +20:59:43 Slot Id : <427> +20:59:43 Transaction Type : RESPONSE +20:59:43 Received From : +20:59:43 ============================================================================ +20:59:43 FNo. Len. Field Value +20:59:43 ============================================================================ +20:59:43 [ 1] [ 4] [0210] +20:59:43 [ 2] [ 16] [6688990106678707] +20:59:43 [ 3] [ 6] [010000] +20:59:43 [ 4] [ 12] [000100000000] +20:59:43 [ 11] [ 6] [844817] +20:59:43 [ 12] [ 6] [205938] +20:59:43 [ 15] [ 4] [0320] +20:59:43 [ 18] [ 4] [6011] +20:59:43 [ 32] [ 6] [621354] +20:59:43 [ 35] [ 37] [6688990106678707=44011231870739600000] +20:59:43 [ 37] [ 12] [507902827883] +20:59:43 [ 38] [ 6] [188811] +20:59:43 [ 39] [ 2] [00] +20:59:43 [ 41] [ 8] [01007600] +20:59:43 [ 49] [ 3] [418] +20:59:43 [ 54] [ 20] [0002418C000172634245] +20:59:43 ============================================================================ +20:59:43 Sending to : +20:59:43 ============================================================================ +20:59:43 + + +waiting on router queue for slot.... +20:59:44 ============================================================================ +20:59:44 Slot Id : <427> +20:59:44 Transaction Type : RESPONSE +20:59:44 Received From : +20:59:44 ============================================================================ +20:59:44 FNo. Len. Field Value +20:59:44 ============================================================================ +20:59:44 [ 1] [ 4] [0210] +20:59:44 [ 2] [ 16] [6688990106678707] +20:59:44 [ 3] [ 6] [010000] +20:59:44 [ 4] [ 12] [000100000000] +20:59:44 [ 11] [ 6] [844817] +20:59:44 [ 12] [ 6] [205938] +20:59:44 [ 15] [ 4] [0320] +20:59:44 [ 18] [ 4] [6011] +20:59:44 [ 32] [ 6] [621354] +20:59:44 [ 35] [ 37] [6688990106678707=44011231870739600000] +20:59:44 [ 37] [ 12] [507902827883] +20:59:44 [ 38] [ 6] [188811] +20:59:44 [ 39] [ 2] [00] +20:59:44 [ 41] [ 8] [01007600] +20:59:44 [ 49] [ 3] [418] +20:59:44 [ 54] [ 20] [0002418C000172634245] +20:59:44 ============================================================================ +20:59:44 Calculate Source COMM Id = 0 +20:59:44 ============================================================================ +20:59:44 + + +waiting on router queue for slot.... +20:59:49 ============================================================================ +20:59:49 Slot Id : <421> +20:59:49 Transaction Type : REQUEST +20:59:49 Received From : +20:59:49 ============================================================================ +20:59:49 FNo. Len. Field Value +20:59:49 ============================================================================ +20:59:49 [ 1] [ 4] [0800] +20:59:49 [ 7] [ 10] [0320015858] +20:59:49 [ 11] [ 6] [158355] +20:59:49 [ 70] [ 3] [301] +20:59:49 ============================================================================ +20:59:49 + + +waiting on router queue for slot.... +20:59:49 Sending to : +20:59:49 ============================================================================ +20:59:49 ============================================================================ +20:59:49 Slot Id : <421> +20:59:49 Transaction Type : RESPONSE +20:59:49 Received From : +20:59:49 ============================================================================ +20:59:49 FNo. Len. Field Value +20:59:49 ============================================================================ +20:59:49 [ 1] [ 4] [0810] +20:59:49 [ 7] [ 10] [0320015858] +20:59:49 [ 11] [ 6] [158355] +20:59:49 [ 39] [ 2] [00] +20:59:49 [ 70] [ 3] [301] +20:59:49 ============================================================================ +20:59:49 Calculate Source COMM Id = 2 +20:59:49 ============================================================================ +20:59:49 + + +waiting on router queue for slot.... +20:59:55 ============================================================================ +20:59:55 Slot Id : <428> +20:59:55 Transaction Type : REQUEST +20:59:55 Received From : +20:59:55 ============================================================================ +20:59:55 FNo. Len. Field Value +20:59:55 ============================================================================ +20:59:55 [ 1] [ 4] [0800] +20:59:55 [ 7] [ 10] [0320140742] +20:59:55 [ 11] [ 6] [016229] +20:59:55 [ 37] [ 12] [57921016229] +20:59:55 [ 70] [ 3] [301] +20:59:55 ============================================================================ +20:59:55 + + +waiting on router queue for slot.... +20:59:55 Sending to : +20:59:55 ============================================================================ +20:59:55 ============================================================================ +20:59:55 Slot Id : <428> +20:59:55 Transaction Type : RESPONSE +20:59:55 Received From : +20:59:55 ============================================================================ +20:59:55 FNo. Len. Field Value +20:59:55 ============================================================================ +20:59:55 [ 1] [ 4] [0810] +20:59:55 [ 7] [ 10] [0320140742] +20:59:55 [ 11] [ 6] [016229] +20:59:55 [ 37] [ 12] [579210162290] +20:59:55 [ 39] [ 2] [00] +20:59:55 [ 70] [ 3] [810] +20:59:55 ============================================================================ +20:59:55 Calculate Source COMM Id = 1 +20:59:55 ============================================================================ +20:59:55 + + +waiting on router queue for slot.... +21:00:03 ============================================================================ +21:00:03 Slot Id : <422> +21:00:03 Transaction Type : REQUEST +21:00:03 Received From : +21:00:03 ============================================================================ +21:00:03 FNo. Len. Field Value +21:00:03 ============================================================================ +21:00:03 [ 1] [ 4] [0200] +21:00:03 [ 2] [ 16] [6213544002128681] +21:00:03 [ 3] [ 6] [010000] +21:00:03 [ 4] [ 12] [000004000000] +21:00:03 [ 7] [ 10] [0320205754] +21:00:03 [ 11] [ 6] [957547] +21:00:03 [ 12] [ 6] [205754] +21:00:03 [ 13] [ 4] [0320] +21:00:03 [ 15] [ 4] [0320] +21:00:03 [ 18] [ 4] [6011] +21:00:03 [ 19] [ 3] [418] +21:00:03 [ 22] [ 3] [021] +21:00:03 [ 25] [ 2] [01] +21:00:03 [ 28] [ 9] [D00002000] +21:00:03 [ 32] [ 6] [668899] +21:00:03 [ 35] [ 32] [6213544002128681=491212012868353] +21:00:03 [ 37] [ 12] [507901727000] +21:00:03 [ 41] [ 8] [03316002] +21:00:03 [ 42] [ 15] [APT ] +21:00:03 [ 43] [ 40] [ LAKORNPHENG UNIT LAKORNPH] +21:00:03 [ 49] [ 3] [418] +21:00:03 [ 52] [ 16] [9B2DA70950DD5674] +21:00:03 ============================================================================ +21:00:03 + + +waiting on router queue for slot.... +21:00:03 Sending to : +21:00:03 ============================================================================ +21:00:03 Sending to : +21:00:03 ============================================================================ +21:00:03 ============================================================================ +21:00:03 Slot Id : <451> +21:00:03 Transaction Type : REQUEST +21:00:03 Received From : +21:00:03 ============================================================================ +21:00:03 FNo. Len. Field Value +21:00:03 ============================================================================ +21:00:03 [ 1] [ 4] [0800] +21:00:03 [ 7] [ 10] [0320015912] +21:00:03 [ 11] [ 6] [158356] +21:00:03 [ 70] [ 3] [301] +21:00:03 ============================================================================ +21:00:03 + + +waiting on router queue for slot.... +21:00:03 Sending to : +21:00:03 ============================================================================ +21:00:03 ============================================================================ +21:00:03 Slot Id : <451> +21:00:03 Transaction Type : RESPONSE +21:00:03 Received From : +21:00:03 ============================================================================ +21:00:03 FNo. Len. Field Value +21:00:03 ============================================================================ +21:00:03 [ 1] [ 4] [0810] +21:00:03 [ 7] [ 10] [0320015912] +21:00:03 [ 11] [ 6] [158356] +21:00:03 [ 39] [ 2] [00] +21:00:03 [ 70] [ 3] [301] +21:00:03 ============================================================================ +21:00:03 Calculate Source COMM Id = 2 +21:00:03 ============================================================================ +21:00:03 + + +waiting on router queue for slot.... +21:00:03 ============================================================================ +21:00:03 Slot Id : <422> +21:00:03 Transaction Type : REQUEST +21:00:03 Received From : +21:00:03 ============================================================================ +21:00:03 FNo. Len. Field Value +21:00:03 ============================================================================ +21:00:03 [ 1] [ 4] [0200] +21:00:03 [ 2] [ 16] [6213544002128681] +21:00:03 [ 3] [ 6] [010000] +21:00:03 [ 4] [ 12] [000004000000] +21:00:03 [ 7] [ 10] [0320205754] +21:00:03 [ 11] [ 6] [957547] +21:00:03 [ 12] [ 6] [205754] +21:00:03 [ 13] [ 4] [0320] +21:00:03 [ 15] [ 4] [0320] +21:00:03 [ 18] [ 4] [6011] +21:00:03 [ 19] [ 3] [418] +21:00:03 [ 22] [ 3] [021] +21:00:03 [ 25] [ 2] [01] +21:00:03 [ 28] [ 9] [D00002000] +21:00:03 [ 32] [ 6] [668899] +21:00:03 [ 35] [ 32] [6213544002128681=491212012868353] +21:00:03 [ 37] [ 12] [507901727000] +21:00:03 [ 41] [ 8] [03316002] +21:00:03 [ 42] [ 15] [APT ] +21:00:03 [ 43] [ 40] [ LAKORNPHENG UNIT LAKORNPH] +21:00:03 [ 49] [ 3] [418] +21:00:03 [ 52] [ 16] [9B2DA70950DD5674] +21:00:03 ============================================================================ +21:00:03 + + +waiting on router queue for slot.... +21:00:03 Sending to : +21:00:03 ============================================================================ +21:00:03 ============================================================================ +21:00:03 Slot Id : <422> +21:00:03 Transaction Type : REQUEST +21:00:03 Received From : +21:00:03 ============================================================================ +21:00:03 FNo. Len. Field Value +21:00:03 ============================================================================ +21:00:03 [ 1] [ 4] [0200] +21:00:03 [ 2] [ 16] [6213544002128681] +21:00:03 [ 3] [ 6] [010000] +21:00:03 [ 4] [ 12] [000004000000] +21:00:03 [ 7] [ 10] [0320205754] +21:00:03 [ 11] [ 6] [957547] +21:00:03 [ 12] [ 6] [205754] +21:00:03 [ 13] [ 4] [0320] +21:00:03 [ 15] [ 4] [0320] +21:00:03 [ 18] [ 4] [6011] +21:00:03 [ 19] [ 3] [418] +21:00:03 [ 22] [ 3] [021] +21:00:03 [ 25] [ 2] [01] +21:00:03 [ 28] [ 9] [D00002000] +21:00:03 [ 32] [ 6] [668899] +21:00:03 [ 35] [ 32] [6213544002128681=491212012868353] +21:00:03 [ 37] [ 12] [507901727000] +21:00:03 [ 41] [ 8] [03316002] +21:00:03 [ 42] [ 15] [APT ] +21:00:03 [ 43] [ 40] [ LAKORNPHENG UNIT LAKORNPH] +21:00:03 [ 49] [ 3] [418] +21:00:03 [ 52] [ 16] [152CFE218AB9C652] +21:00:03 ============================================================================ +21:00:03 + + +waiting on router queue for slot.... +21:00:03 Sending to : <0> +21:00:03 ============================================================================ +21:00:04 ============================================================================ +21:00:04 Slot Id : <422> +21:00:04 Transaction Type : RESPONSE +21:00:04 Received From : +21:00:04 ============================================================================ +21:00:04 FNo. Len. Field Value +21:00:04 ============================================================================ +21:00:04 [ 1] [ 4] [0210] +21:00:04 [ 2] [ 16] [6213544002128681] +21:00:04 [ 3] [ 6] [010000] +21:00:04 [ 4] [ 12] [000004000000] +21:00:04 [ 7] [ 10] [0320205754] +21:00:04 [ 11] [ 6] [957547] +21:00:04 [ 12] [ 6] [205754] +21:00:04 [ 13] [ 4] [0320] +21:00:04 [ 15] [ 4] [0320] +21:00:04 [ 18] [ 4] [6011] +21:00:04 [ 19] [ 3] [418] +21:00:04 [ 32] [ 6] [668899] +21:00:04 [ 35] [ 32] [6213544002128681=491212012868353] +21:00:04 [ 37] [ 12] [507901727000] +21:00:04 [ 38] [ 6] [436178] +21:00:04 [ 39] [ 2] [00] +21:00:04 [ 41] [ 8] [03316002] +21:00:04 [ 49] [ 3] [418] +21:00:04 [ 54] [ 40] [0001418C0000096320630002418C000005432063] +21:00:04 ============================================================================ +21:00:04 Sending to : +21:00:04 ============================================================================ +21:00:04 + + +waiting on router queue for slot.... +21:00:06 ============================================================================ +21:00:06 Slot Id : <422> +21:00:06 Transaction Type : RESPONSE +21:00:06 Received From : +21:00:06 ============================================================================ +21:00:06 FNo. Len. Field Value +21:00:06 ============================================================================ +21:00:06 [ 1] [ 4] [0210] +21:00:06 [ 2] [ 16] [6213544002128681] +21:00:06 [ 3] [ 6] [010000] +21:00:06 [ 4] [ 12] [000004000000] +21:00:06 [ 7] [ 10] [0320205754] +21:00:06 [ 11] [ 6] [957547] +21:00:06 [ 12] [ 6] [205754] +21:00:06 [ 13] [ 4] [0320] +21:00:06 [ 15] [ 4] [0320] +21:00:06 [ 18] [ 4] [6011] +21:00:06 [ 19] [ 3] [418] +21:00:06 [ 32] [ 6] [668899] +21:00:06 [ 35] [ 32] [6213544002128681=491212012868353] +21:00:06 [ 37] [ 12] [507901727000] +21:00:06 [ 38] [ 6] [436178] +21:00:06 [ 39] [ 2] [00] +21:00:06 [ 41] [ 8] [03316002] +21:00:06 [ 49] [ 3] [418] +21:00:06 [ 54] [ 40] [0001418C0000096320630002418C000005432063] +21:00:06 ============================================================================ +21:00:06 Calculate Source COMM Id = 4 +21:00:06 ============================================================================ +21:00:06 + + +waiting on router queue for slot.... +21:00:06 ============================================================================ +21:00:06 Slot Id : <457> +21:00:06 Transaction Type : REQUEST +21:00:06 Received From : +21:00:06 ============================================================================ +21:00:06 FNo. Len. Field Value +21:00:06 ============================================================================ +21:00:06 [ 1] [ 4] [0800] +21:00:06 [ 7] [ 10] [0321041156] +21:00:06 [ 11] [ 6] [211156] +21:00:06 [ 37] [ 12] [57921211156] +21:00:06 [ 70] [ 3] [301] +21:00:06 ============================================================================ +21:00:06 + + +waiting on router queue for slot.... +21:00:06 Sending to : +21:00:06 ============================================================================ +21:00:06 ============================================================================ +21:00:06 Slot Id : <457> +21:00:06 Transaction Type : RESPONSE +21:00:06 Received From : +21:00:06 ============================================================================ +21:00:06 FNo. Len. Field Value +21:00:06 ============================================================================ +21:00:06 [ 1] [ 4] [0810] +21:00:06 [ 7] [ 10] [0321041156] +21:00:06 [ 11] [ 6] [211156] +21:00:06 [ 37] [ 12] [579212111560] +21:00:06 [ 39] [ 2] [00] +21:00:06 [ 70] [ 3] [810] +21:00:06 ============================================================================ +21:00:06 Calculate Source COMM Id = 6 +21:00:06 ============================================================================ +21:00:06 + + +waiting on router queue for slot.... +21:00:14 ============================================================================ +21:00:14 Slot Id : <465> +21:00:14 Transaction Type : REQUEST +21:00:14 Received From : +21:00:14 ============================================================================ +21:00:14 FNo. Len. Field Value +21:00:14 ============================================================================ +21:00:14 [ 1] [ 4] [0800] +21:00:14 [ 7] [ 10] [0320015923] +21:00:14 [ 11] [ 6] [158357] +21:00:14 [ 70] [ 3] [301] +21:00:14 ============================================================================ +21:00:14 + + +waiting on router queue for slot.... +21:00:14 Sending to : +21:00:14 ============================================================================ +21:00:14 ============================================================================ +21:00:14 Slot Id : <465> +21:00:14 Transaction Type : RESPONSE +21:00:14 Received From : +21:00:14 ============================================================================ +21:00:14 FNo. Len. Field Value +21:00:14 ============================================================================ +21:00:14 [ 1] [ 4] [0810] +21:00:14 [ 7] [ 10] [0320015923] +21:00:14 [ 11] [ 6] [158357] +21:00:14 [ 39] [ 2] [00] +21:00:14 [ 70] [ 3] [301] +21:00:14 ============================================================================ +21:00:14 Calculate Source COMM Id = 2 +21:00:14 ============================================================================ +21:00:14 + + +waiting on router queue for slot.... +21:00:18 ============================================================================ +21:00:18 Slot Id : <426> +21:00:18 Transaction Type : REQUEST +21:00:18 Received From : +21:00:18 ============================================================================ +21:00:18 FNo. Len. Field Value +21:00:18 ============================================================================ +21:00:18 [ 1] [ 4] [0800] +21:00:18 [ 2] [ 5] [02531] +21:00:18 [ 3] [ 6] [579218] +21:00:18 [ 7] [ 10] [0320140018] +21:00:18 [ 11] [ 6] [807631] +21:00:18 [ 15] [ 10] [0320140018] +21:00:18 [ 37] [ 11] [57921807631] +21:00:18 [ 70] [ 3] [001] +21:00:18 ============================================================================ +21:00:18 + + +waiting on router queue for slot.... +21:00:18 ============================================================================ +21:00:18 Slot Id : <426> +21:00:18 Transaction Type : RESPONSE +21:00:18 Received From : +21:00:18 ============================================================================ +21:00:18 FNo. Len. Field Value +21:00:18 ============================================================================ +21:00:18 [ 1] [ 4] [0810] +21:00:18 [ 7] [ 10] [0320140018] +21:00:18 [ 11] [ 6] [807631] +21:00:18 [ 15] [ 4] [0320] +21:00:18 [ 37] [ 12] [57921807631] +21:00:18 [ 39] [ 2] [00] +21:00:18 [ 70] [ 3] [001] +21:00:18 ============================================================================ +21:00:18 Sending to : +21:00:18 ============================================================================ +21:00:18 + + +waiting on router queue for slot.... +21:00:30 ============================================================================ +21:00:30 Slot Id : <436> +21:00:30 Transaction Type : REQUEST +21:00:30 Received From : +21:00:30 ============================================================================ +21:00:30 FNo. Len. Field Value +21:00:30 ============================================================================ +21:00:30 [ 1] [ 4] [0800] +21:00:30 [ 7] [ 10] [0320015938] +21:00:30 [ 11] [ 6] [158358] +21:00:30 [ 70] [ 3] [301] +21:00:30 ============================================================================ +21:00:30 + + +waiting on router queue for slot.... +21:00:30 Sending to : +21:00:30 ============================================================================ +21:00:30 ============================================================================ +21:00:30 Slot Id : <436> +21:00:30 Transaction Type : RESPONSE +21:00:30 Received From : +21:00:30 ============================================================================ +21:00:30 FNo. Len. Field Value +21:00:30 ============================================================================ +21:00:30 [ 1] [ 4] [0810] +21:00:30 [ 7] [ 10] [0320015938] +21:00:30 [ 11] [ 6] [158358] +21:00:30 [ 39] [ 2] [00] +21:00:30 [ 70] [ 3] [301] +21:00:30 ============================================================================ +21:00:30 Calculate Source COMM Id = 2 +21:00:30 ============================================================================ +21:00:30 + + +waiting on router queue for slot.... +21:00:40 ============================================================================ +21:00:40 Slot Id : <444> +21:00:40 Transaction Type : REQUEST +21:00:40 Received From : +21:00:40 ============================================================================ +21:00:40 FNo. Len. Field Value +21:00:40 ============================================================================ +21:00:40 [ 1] [ 4] [0800] +21:00:40 [ 7] [ 10] [0320015948] +21:00:40 [ 11] [ 6] [158359] +21:00:40 [ 70] [ 3] [301] +21:00:40 ============================================================================ +21:00:40 + + +waiting on router queue for slot.... +21:00:40 Sending to : +21:00:40 ============================================================================ +21:00:40 ============================================================================ +21:00:40 Slot Id : <444> +21:00:40 Transaction Type : RESPONSE +21:00:40 Received From : +21:00:40 ============================================================================ +21:00:40 FNo. Len. Field Value +21:00:40 ============================================================================ +21:00:40 [ 1] [ 4] [0810] +21:00:40 [ 7] [ 10] [0320015948] +21:00:40 [ 11] [ 6] [158359] +21:00:40 [ 39] [ 2] [00] +21:00:40 [ 70] [ 3] [301] +21:00:40 ============================================================================ +21:00:40 Calculate Source COMM Id = 2 +21:00:40 ============================================================================ +21:00:40 + + +waiting on router queue for slot.... +21:00:49 ============================================================================ +21:00:49 Slot Id : <423> +21:00:49 Transaction Type : REQUEST +21:00:49 Received From : +21:00:49 ============================================================================ +21:00:49 FNo. Len. Field Value +21:00:49 ============================================================================ +21:00:49 [ 1] [ 4] [0200] +21:00:49 [ 2] [ 16] [6688990106678707] +21:00:49 [ 3] [ 6] [011000] +21:00:49 [ 4] [ 12] [000100000000] +21:00:49 [ 7] [ 10] [0320210045] +21:00:49 [ 11] [ 6] [844867] +21:00:49 [ 12] [ 6] [210045] +21:00:49 [ 13] [ 4] [0320] +21:00:49 [ 15] [ 4] [0320] +21:00:49 [ 18] [ 4] [6011] +21:00:49 [ 22] [ 3] [900] +21:00:49 [ 25] [ 2] [02] +21:00:49 [ 28] [ 9] [D00002000] +21:00:49 [ 32] [ 6] [621354] +21:00:49 [ 35] [ 37] [6688990106678707=44011231870739600000] +21:00:49 [ 37] [ 12] [507902827885] +21:00:49 [ 41] [ 8] [01007600] +21:00:49 [ 42] [ 15] [NATIVE ] +21:00:49 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +21:00:49 [ 49] [ 3] [418] +21:00:49 [ 52] [ 16] [B91CA22BA8D80A44] +21:00:49 ============================================================================ +21:00:49 + + +waiting on router queue for slot.... +21:00:49 Sending to : +21:00:49 ============================================================================ +21:00:49 Sending to : +21:00:49 ============================================================================ +21:00:49 ============================================================================ +21:00:49 Slot Id : <423> +21:00:49 Transaction Type : REQUEST +21:00:49 Received From : +21:00:49 ============================================================================ +21:00:49 FNo. Len. Field Value +21:00:49 ============================================================================ +21:00:49 [ 1] [ 4] [0200] +21:00:49 [ 2] [ 16] [6688990106678707] +21:00:49 [ 3] [ 6] [011000] +21:00:49 [ 4] [ 12] [000100000000] +21:00:49 [ 7] [ 10] [0320210045] +21:00:49 [ 11] [ 6] [844867] +21:00:49 [ 12] [ 6] [210045] +21:00:49 [ 13] [ 4] [0320] +21:00:49 [ 15] [ 4] [0320] +21:00:49 [ 18] [ 4] [6011] +21:00:49 [ 22] [ 3] [900] +21:00:49 [ 25] [ 2] [02] +21:00:49 [ 28] [ 9] [D00002000] +21:00:49 [ 32] [ 6] [621354] +21:00:49 [ 35] [ 37] [6688990106678707=44011231870739600000] +21:00:49 [ 37] [ 12] [507902827885] +21:00:49 [ 41] [ 8] [01007600] +21:00:49 [ 42] [ 15] [NATIVE ] +21:00:49 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +21:00:49 [ 49] [ 3] [418] +21:00:49 [ 52] [ 16] [B91CA22BA8D80A44] +21:00:49 ============================================================================ +21:00:49 + + +waiting on router queue for slot.... +21:00:49 Sending to : +21:00:49 ============================================================================ +21:00:49 ============================================================================ +21:00:49 Slot Id : <423> +21:00:49 Transaction Type : REQUEST +21:00:49 Received From : +21:00:49 ============================================================================ +21:00:49 FNo. Len. Field Value +21:00:49 ============================================================================ +21:00:49 [ 1] [ 4] [0200] +21:00:49 [ 2] [ 16] [6688990106678707] +21:00:49 [ 3] [ 6] [011000] +21:00:49 [ 4] [ 12] [000100000000] +21:00:49 [ 7] [ 10] [0320210045] +21:00:49 [ 11] [ 6] [844867] +21:00:49 [ 12] [ 6] [210045] +21:00:49 [ 13] [ 4] [0320] +21:00:49 [ 15] [ 4] [0320] +21:00:49 [ 18] [ 4] [6011] +21:00:49 [ 22] [ 3] [900] +21:00:49 [ 25] [ 2] [02] +21:00:49 [ 28] [ 9] [D00002000] +21:00:49 [ 32] [ 6] [621354] +21:00:49 [ 35] [ 37] [6688990106678707=44011231870739600000] +21:00:49 [ 37] [ 12] [507902827885] +21:00:49 [ 41] [ 8] [01007600] +21:00:49 [ 42] [ 15] [NATIVE ] +21:00:49 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +21:00:49 [ 49] [ 3] [418] +21:00:49 [ 52] [ 16] [69A9A2D1148744C3] +21:00:49 ============================================================================ +21:00:49 + + +waiting on router queue for slot.... +21:00:49 Sending to : <4> +21:00:49 ============================================================================ +21:00:50 ============================================================================ +21:00:50 Slot Id : <423> +21:00:50 Transaction Type : RESPONSE +21:00:50 Received From : +21:00:50 ============================================================================ +21:00:50 FNo. Len. Field Value +21:00:50 ============================================================================ +21:00:50 [ 1] [ 4] [0210] +21:00:50 [ 2] [ 16] [6688990106678707] +21:00:50 [ 3] [ 6] [011000] +21:00:50 [ 4] [ 12] [000100000000] +21:00:50 [ 11] [ 6] [844867] +21:00:50 [ 12] [ 6] [210045] +21:00:50 [ 15] [ 4] [0320] +21:00:50 [ 18] [ 4] [6011] +21:00:50 [ 32] [ 6] [621354] +21:00:50 [ 35] [ 37] [6688990106678707=44011231870739600000] +21:00:50 [ 37] [ 12] [507902827885] +21:00:50 [ 38] [ 6] [608375] +21:00:50 [ 39] [ 2] [00] +21:00:50 [ 41] [ 8] [01007600] +21:00:50 [ 49] [ 3] [418] +21:00:50 [ 54] [ 20] [1002418C000072434245] +21:00:50 ============================================================================ +21:00:50 Sending to : +21:00:50 ============================================================================ +21:00:50 + + +waiting on router queue for slot.... +21:00:51 ============================================================================ +21:00:51 Slot Id : <458> +21:00:51 Transaction Type : REQUEST +21:00:51 Received From : +21:00:51 ============================================================================ +21:00:51 FNo. Len. Field Value +21:00:51 ============================================================================ +21:00:51 [ 1] [ 4] [0800] +21:00:51 [ 7] [ 10] [0320015958] +21:00:51 [ 11] [ 6] [158360] +21:00:51 [ 70] [ 3] [301] +21:00:51 ============================================================================ +21:00:51 + + +waiting on router queue for slot.... +21:00:51 Sending to : +21:00:51 ============================================================================ +21:00:51 ============================================================================ +21:00:51 Slot Id : <458> +21:00:51 Transaction Type : RESPONSE +21:00:51 Received From : +21:00:51 ============================================================================ +21:00:51 FNo. Len. Field Value +21:00:51 ============================================================================ +21:00:51 [ 1] [ 4] [0810] +21:00:51 [ 7] [ 10] [0320015958] +21:00:51 [ 11] [ 6] [158360] +21:00:51 [ 39] [ 2] [00] +21:00:51 [ 70] [ 3] [301] +21:00:51 ============================================================================ +21:00:51 Calculate Source COMM Id = 2 +21:00:51 ============================================================================ +21:00:51 + + +waiting on router queue for slot.... +21:00:51 ============================================================================ +21:00:51 Slot Id : <423> +21:00:51 Transaction Type : RESPONSE +21:00:51 Received From : +21:00:51 ============================================================================ +21:00:51 FNo. Len. Field Value +21:00:51 ============================================================================ +21:00:51 [ 1] [ 4] [0210] +21:00:51 [ 2] [ 16] [6688990106678707] +21:00:51 [ 3] [ 6] [011000] +21:00:51 [ 4] [ 12] [000100000000] +21:00:51 [ 11] [ 6] [844867] +21:00:51 [ 12] [ 6] [210045] +21:00:51 [ 15] [ 4] [0320] +21:00:51 [ 18] [ 4] [6011] +21:00:51 [ 32] [ 6] [621354] +21:00:51 [ 35] [ 37] [6688990106678707=44011231870739600000] +21:00:51 [ 37] [ 12] [507902827885] +21:00:51 [ 38] [ 6] [608375] +21:00:51 [ 39] [ 2] [00] +21:00:51 [ 41] [ 8] [01007600] +21:00:51 [ 49] [ 3] [418] +21:00:51 [ 54] [ 20] [1002418C000072434245] +21:00:51 ============================================================================ +21:00:51 Calculate Source COMM Id = 0 +21:00:51 ============================================================================ +21:00:51 + + +waiting on router queue for slot.... +21:01:05 ============================================================================ +21:01:05 Slot Id : <452> +21:01:05 Transaction Type : REQUEST +21:01:05 Received From : +21:01:05 ============================================================================ +21:01:05 FNo. Len. Field Value +21:01:05 ============================================================================ +21:01:05 [ 1] [ 4] [0800] +21:01:05 [ 7] [ 10] [0320020014] +21:01:05 [ 11] [ 6] [158361] +21:01:05 [ 70] [ 3] [301] +21:01:05 ============================================================================ +21:01:05 + + +waiting on router queue for slot.... +21:01:05 Sending to : +21:01:05 ============================================================================ +21:01:05 ============================================================================ +21:01:05 Slot Id : <452> +21:01:05 Transaction Type : RESPONSE +21:01:05 Received From : +21:01:05 ============================================================================ +21:01:05 FNo. Len. Field Value +21:01:05 ============================================================================ +21:01:05 [ 1] [ 4] [0810] +21:01:05 [ 7] [ 10] [0320020014] +21:01:05 [ 11] [ 6] [158361] +21:01:05 [ 39] [ 2] [00] +21:01:05 [ 70] [ 3] [301] +21:01:05 ============================================================================ +21:01:05 Calculate Source COMM Id = 2 +21:01:05 ============================================================================ +21:01:05 + + +waiting on router queue for slot.... +21:01:09 ============================================================================ +21:01:09 Slot Id : <459> +21:01:09 Transaction Type : REQUEST +21:01:09 Received From : +21:01:09 ============================================================================ +21:01:09 FNo. Len. Field Value +21:01:09 ============================================================================ +21:01:09 [ 1] [ 4] [0200] +21:01:09 [ 2] [ 16] [6213545000491989] +21:01:09 [ 3] [ 6] [011000] +21:01:09 [ 4] [ 12] [000030000000] +21:01:09 [ 7] [ 10] [0320210856] +21:01:09 [ 11] [ 6] [009801] +21:01:09 [ 12] [ 6] [210856] +21:01:09 [ 13] [ 4] [0320] +21:01:09 [ 14] [ 4] [4912] +21:01:09 [ 15] [ 4] [0320] +21:01:09 [ 18] [ 4] [6011] +21:01:09 [ 22] [ 3] [900] +21:01:09 [ 25] [ 2] [02] +21:01:09 [ 28] [ 9] [D00002000] +21:01:09 [ 32] [ 6] [220699] +21:01:09 [ 35] [ 32] [6213545000491989=491212019198012] +21:01:09 [ 37] [ 12] [507900270568] +21:01:09 [ 41] [ 8] [01001500] +21:01:09 [ 42] [ 15] [APTRA ] +21:01:09 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:01:09 [ 49] [ 3] [418] +21:01:09 [ 52] [ 16] [3A14A64F18741079] +21:01:09 ============================================================================ +21:01:09 + + +waiting on router queue for slot.... +21:01:09 Sending to : +21:01:09 ============================================================================ +21:01:09 Sending to : +21:01:09 ============================================================================ +21:01:10 ============================================================================ +21:01:10 Slot Id : <459> +21:01:10 Transaction Type : REQUEST +21:01:10 Received From : +21:01:10 ============================================================================ +21:01:10 FNo. Len. Field Value +21:01:10 ============================================================================ +21:01:10 [ 1] [ 4] [0200] +21:01:10 [ 2] [ 16] [6213545000491989] +21:01:10 [ 3] [ 6] [011000] +21:01:10 [ 4] [ 12] [000030000000] +21:01:10 [ 7] [ 10] [0320210856] +21:01:10 [ 11] [ 6] [009801] +21:01:10 [ 12] [ 6] [210856] +21:01:10 [ 13] [ 4] [0320] +21:01:10 [ 14] [ 4] [4912] +21:01:10 [ 15] [ 4] [0320] +21:01:10 [ 18] [ 4] [6011] +21:01:10 [ 22] [ 3] [900] +21:01:10 [ 25] [ 2] [02] +21:01:10 [ 28] [ 9] [D00002000] +21:01:10 [ 32] [ 6] [220699] +21:01:10 [ 35] [ 32] [6213545000491989=491212019198012] +21:01:10 [ 37] [ 12] [507900270568] +21:01:10 [ 41] [ 8] [01001500] +21:01:10 [ 42] [ 15] [APTRA ] +21:01:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:01:10 [ 49] [ 3] [418] +21:01:10 [ 52] [ 16] [3A14A64F18741079] +21:01:10 ============================================================================ +21:01:10 + + +waiting on router queue for slot.... +21:01:10 Sending to : +21:01:10 ============================================================================ +21:01:10 ============================================================================ +21:01:10 Slot Id : <459> +21:01:10 Transaction Type : REQUEST +21:01:10 Received From : +21:01:10 ============================================================================ +21:01:10 FNo. Len. Field Value +21:01:10 ============================================================================ +21:01:10 [ 1] [ 4] [0200] +21:01:10 [ 2] [ 16] [6213545000491989] +21:01:10 [ 3] [ 6] [011000] +21:01:10 [ 4] [ 12] [000030000000] +21:01:10 [ 7] [ 10] [0320210856] +21:01:10 [ 11] [ 6] [009801] +21:01:10 [ 12] [ 6] [210856] +21:01:10 [ 13] [ 4] [0320] +21:01:10 [ 14] [ 4] [4912] +21:01:10 [ 15] [ 4] [0320] +21:01:10 [ 18] [ 4] [6011] +21:01:10 [ 22] [ 3] [900] +21:01:10 [ 25] [ 2] [02] +21:01:10 [ 28] [ 9] [D00002000] +21:01:10 [ 32] [ 6] [220699] +21:01:10 [ 35] [ 32] [6213545000491989=491212019198012] +21:01:10 [ 37] [ 12] [507900270568] +21:01:10 [ 41] [ 8] [01001500] +21:01:10 [ 42] [ 15] [APTRA ] +21:01:10 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:01:10 [ 49] [ 3] [418] +21:01:10 [ 52] [ 16] [93C968DE8EF64045] +21:01:10 ============================================================================ +21:01:10 + + +waiting on router queue for slot.... +21:01:10 Sending to : <0> +21:01:10 ============================================================================ +21:01:10 ============================================================================ +21:01:10 Slot Id : <459> +21:01:10 Transaction Type : RESPONSE +21:01:10 Received From : +21:01:10 ============================================================================ +21:01:10 FNo. Len. Field Value +21:01:10 ============================================================================ +21:01:10 [ 1] [ 4] [0210] +21:01:10 [ 2] [ 16] [6213545000491989] +21:01:10 [ 3] [ 6] [011000] +21:01:10 [ 4] [ 12] [000030000000] +21:01:10 [ 7] [ 10] [0320210856] +21:01:10 [ 11] [ 6] [009801] +21:01:10 [ 12] [ 6] [210856] +21:01:10 [ 13] [ 4] [0320] +21:01:10 [ 15] [ 4] [0320] +21:01:10 [ 18] [ 4] [6011] +21:01:10 [ 32] [ 6] [220699] +21:01:10 [ 35] [ 32] [6213545000491989=491212019198012] +21:01:10 [ 37] [ 12] [507900270568] +21:01:10 [ 38] [ 6] [557197] +21:01:10 [ 39] [ 2] [00] +21:01:10 [ 41] [ 8] [01001500] +21:01:10 [ 49] [ 3] [418] +21:01:10 [ 54] [ 40] [1001418C0000733566081002418C000043156608] +21:01:10 ============================================================================ +21:01:10 Sending to : +21:01:10 ============================================================================ +21:01:10 + + +waiting on router queue for slot.... +21:01:11 ============================================================================ +21:01:11 Slot Id : <439> +21:01:11 Transaction Type : REQUEST +21:01:11 Received From : +21:01:11 ============================================================================ +21:01:11 FNo. Len. Field Value +21:01:11 ============================================================================ +21:01:11 [ 1] [ 4] [0800] +21:01:11 [ 7] [ 10] [0321041301] +21:01:11 [ 11] [ 6] [211301] +21:01:11 [ 37] [ 12] [57921211301] +21:01:11 [ 70] [ 3] [301] +21:01:11 ============================================================================ +21:01:11 + + +waiting on router queue for slot.... +21:01:11 Sending to : +21:01:11 ============================================================================ +21:01:11 ============================================================================ +21:01:11 Slot Id : <439> +21:01:11 Transaction Type : RESPONSE +21:01:11 Received From : +21:01:11 ============================================================================ +21:01:11 FNo. Len. Field Value +21:01:11 ============================================================================ +21:01:11 [ 1] [ 4] [0810] +21:01:11 [ 7] [ 10] [0321041301] +21:01:11 [ 11] [ 6] [211301] +21:01:11 [ 37] [ 12] [579212113010] +21:01:11 [ 39] [ 2] [00] +21:01:11 [ 70] [ 3] [810] +21:01:11 ============================================================================ +21:01:11 Calculate Source COMM Id = 6 +21:01:11 ============================================================================ +21:01:11 + + +waiting on router queue for slot.... +21:01:12 ============================================================================ +21:01:12 Slot Id : <459> +21:01:12 Transaction Type : RESPONSE +21:01:12 Received From : +21:01:12 ============================================================================ +21:01:12 FNo. Len. Field Value +21:01:12 ============================================================================ +21:01:12 [ 1] [ 4] [0210] +21:01:12 [ 2] [ 16] [6213545000491989] +21:01:12 [ 3] [ 6] [011000] +21:01:12 [ 4] [ 12] [000030000000] +21:01:12 [ 7] [ 10] [0320210856] +21:01:12 [ 11] [ 6] [009801] +21:01:12 [ 12] [ 6] [210856] +21:01:12 [ 13] [ 4] [0320] +21:01:12 [ 15] [ 4] [0320] +21:01:12 [ 18] [ 4] [6011] +21:01:12 [ 32] [ 6] [220699] +21:01:12 [ 35] [ 32] [6213545000491989=491212019198012] +21:01:12 [ 37] [ 12] [507900270568] +21:01:12 [ 38] [ 6] [557197] +21:01:12 [ 39] [ 2] [00] +21:01:12 [ 41] [ 8] [01001500] +21:01:12 [ 49] [ 3] [418] +21:01:12 [ 54] [ 40] [1001418C0000733566081002418C000043156608] +21:01:12 ============================================================================ +21:01:12 Calculate Source COMM Id = 1 +21:01:12 ============================================================================ +21:01:12 + + +waiting on router queue for slot.... +21:01:16 ============================================================================ +21:01:16 Slot Id : <466> +21:01:16 Transaction Type : REQUEST +21:01:16 Received From : +21:01:16 ============================================================================ +21:01:16 FNo. Len. Field Value +21:01:16 ============================================================================ +21:01:16 [ 1] [ 4] [0800] +21:01:16 [ 7] [ 10] [0320020024] +21:01:16 [ 11] [ 6] [158362] +21:01:16 [ 70] [ 3] [301] +21:01:16 ============================================================================ +21:01:16 + + +waiting on router queue for slot.... +21:01:16 Sending to : +21:01:16 ============================================================================ +21:01:16 ============================================================================ +21:01:16 Slot Id : <466> +21:01:16 Transaction Type : RESPONSE +21:01:16 Received From : +21:01:16 ============================================================================ +21:01:16 FNo. Len. Field Value +21:01:16 ============================================================================ +21:01:16 [ 1] [ 4] [0810] +21:01:16 [ 7] [ 10] [0320020024] +21:01:16 [ 11] [ 6] [158362] +21:01:16 [ 39] [ 2] [00] +21:01:16 [ 70] [ 3] [301] +21:01:16 ============================================================================ +21:01:16 Calculate Source COMM Id = 2 +21:01:16 ============================================================================ +21:01:16 + + +waiting on router queue for slot.... +21:01:20 ============================================================================ +21:01:20 Slot Id : <468> +21:01:20 Transaction Type : REQUEST +21:01:20 Received From : +21:01:20 ============================================================================ +21:01:20 FNo. Len. Field Value +21:01:20 ============================================================================ +21:01:20 [ 1] [ 4] [0800] +21:01:20 [ 2] [ 5] [02531] +21:01:20 [ 3] [ 6] [579218] +21:01:20 [ 7] [ 10] [0320140120] +21:01:20 [ 11] [ 6] [807632] +21:01:20 [ 15] [ 10] [0320140120] +21:01:20 [ 37] [ 11] [57921807632] +21:01:20 [ 70] [ 3] [001] +21:01:20 ============================================================================ +21:01:20 + + +waiting on router queue for slot.... +21:01:20 ============================================================================ +21:01:20 Slot Id : <468> +21:01:20 Transaction Type : RESPONSE +21:01:20 Received From : +21:01:20 ============================================================================ +21:01:20 FNo. Len. Field Value +21:01:20 ============================================================================ +21:01:20 [ 1] [ 4] [0810] +21:01:20 [ 7] [ 10] [0320140120] +21:01:20 [ 11] [ 6] [807632] +21:01:20 [ 15] [ 4] [0320] +21:01:20 [ 37] [ 12] [57921807632] +21:01:20 [ 39] [ 2] [00] +21:01:20 [ 70] [ 3] [001] +21:01:20 ============================================================================ +21:01:20 Sending to : +21:01:20 ============================================================================ +21:01:20 + + +waiting on router queue for slot.... +21:01:21 ============================================================================ +21:01:21 Slot Id : <455> +21:01:21 Transaction Type : REQUEST +21:01:21 Received From : +21:01:21 ============================================================================ +21:01:21 FNo. Len. Field Value +21:01:21 ============================================================================ +21:01:21 [ 1] [ 4] [0800] +21:01:21 [ 7] [ 10] [0320135912] +21:01:21 [ 11] [ 6] [059762] +21:01:21 [ 37] [ 12] [57920059762] +21:01:21 [ 70] [ 3] [301] +21:01:21 ============================================================================ +21:01:21 + + +waiting on router queue for slot.... +21:01:21 Sending to : +21:01:21 ============================================================================ +21:01:21 ============================================================================ +21:01:21 Slot Id : <455> +21:01:21 Transaction Type : RESPONSE +21:01:21 Received From : +21:01:21 ============================================================================ +21:01:21 FNo. Len. Field Value +21:01:21 ============================================================================ +21:01:21 [ 1] [ 4] [0810] +21:01:21 [ 7] [ 10] [0320135912] +21:01:21 [ 11] [ 6] [059762] +21:01:21 [ 37] [ 12] [579200597620] +21:01:21 [ 39] [ 2] [00] +21:01:21 [ 70] [ 3] [810] +21:01:21 ============================================================================ +21:01:21 Calculate Source COMM Id = 4 +21:01:21 ============================================================================ +21:01:21 + + +waiting on router queue for slot.... +21:01:27 ============================================================================ +21:01:27 Slot Id : <475> +21:01:27 Transaction Type : REQUEST +21:01:27 Received From : +21:01:27 ============================================================================ +21:01:27 FNo. Len. Field Value +21:01:27 ============================================================================ +21:01:27 [ 1] [ 4] [0800] +21:01:27 [ 7] [ 10] [0320020035] +21:01:27 [ 11] [ 6] [158363] +21:01:27 [ 70] [ 3] [301] +21:01:27 ============================================================================ +21:01:27 + + +waiting on router queue for slot.... +21:01:27 Sending to : +21:01:27 ============================================================================ +21:01:27 ============================================================================ +21:01:27 Slot Id : <475> +21:01:27 Transaction Type : RESPONSE +21:01:27 Received From : +21:01:27 ============================================================================ +21:01:27 FNo. Len. Field Value +21:01:27 ============================================================================ +21:01:27 [ 1] [ 4] [0810] +21:01:27 [ 7] [ 10] [0320020035] +21:01:27 [ 11] [ 6] [158363] +21:01:27 [ 39] [ 2] [00] +21:01:27 [ 70] [ 3] [301] +21:01:27 ============================================================================ +21:01:27 Calculate Source COMM Id = 2 +21:01:27 ============================================================================ +21:01:27 + + +waiting on router queue for slot.... +21:01:38 ============================================================================ +21:01:38 Slot Id : <460> +21:01:38 Transaction Type : REQUEST +21:01:38 Received From : +21:01:38 ============================================================================ +21:01:38 FNo. Len. Field Value +21:01:38 ============================================================================ +21:01:38 [ 1] [ 4] [0800] +21:01:38 [ 7] [ 10] [0320020046] +21:01:38 [ 11] [ 6] [158364] +21:01:38 [ 70] [ 3] [301] +21:01:38 ============================================================================ +21:01:38 + + +waiting on router queue for slot.... +21:01:38 Sending to : +21:01:38 ============================================================================ +21:01:38 ============================================================================ +21:01:38 Slot Id : <460> +21:01:38 Transaction Type : RESPONSE +21:01:38 Received From : +21:01:38 ============================================================================ +21:01:38 FNo. Len. Field Value +21:01:38 ============================================================================ +21:01:38 [ 1] [ 4] [0810] +21:01:38 [ 7] [ 10] [0320020046] +21:01:38 [ 11] [ 6] [158364] +21:01:38 [ 39] [ 2] [00] +21:01:38 [ 70] [ 3] [301] +21:01:38 ============================================================================ +21:01:38 Calculate Source COMM Id = 2 +21:01:38 ============================================================================ +21:01:38 + + +waiting on router queue for slot.... +21:01:53 ============================================================================ +21:01:53 Slot Id : <495> +21:01:53 Transaction Type : REQUEST +21:01:53 Received From : +21:01:53 ============================================================================ +21:01:53 FNo. Len. Field Value +21:01:53 ============================================================================ +21:01:53 [ 1] [ 4] [0800] +21:01:53 [ 7] [ 10] [0320020101] +21:01:53 [ 11] [ 6] [158365] +21:01:53 [ 70] [ 3] [301] +21:01:53 ============================================================================ +21:01:53 + + +waiting on router queue for slot.... +21:01:53 Sending to : +21:01:53 ============================================================================ +21:01:53 ============================================================================ +21:01:53 Slot Id : <495> +21:01:53 Transaction Type : RESPONSE +21:01:53 Received From : +21:01:53 ============================================================================ +21:01:53 FNo. Len. Field Value +21:01:53 ============================================================================ +21:01:53 [ 1] [ 4] [0810] +21:01:53 [ 7] [ 10] [0320020101] +21:01:53 [ 11] [ 6] [158365] +21:01:53 [ 39] [ 2] [00] +21:01:53 [ 70] [ 3] [301] +21:01:53 ============================================================================ +21:01:53 Calculate Source COMM Id = 2 +21:01:53 ============================================================================ +21:01:53 + + +waiting on router queue for slot.... +21:02:04 ============================================================================ +21:02:04 Slot Id : <449> +21:02:04 Transaction Type : REQUEST +21:02:04 Received From : +21:02:04 ============================================================================ +21:02:04 FNo. Len. Field Value +21:02:04 ============================================================================ +21:02:04 [ 1] [ 4] [0800] +21:02:04 [ 7] [ 10] [0320020112] +21:02:04 [ 11] [ 6] [158366] +21:02:04 [ 70] [ 3] [301] +21:02:04 ============================================================================ +21:02:04 + + +waiting on router queue for slot.... +21:02:04 Sending to : +21:02:04 ============================================================================ +21:02:04 ============================================================================ +21:02:04 Slot Id : <449> +21:02:04 Transaction Type : RESPONSE +21:02:04 Received From : +21:02:04 ============================================================================ +21:02:04 FNo. Len. Field Value +21:02:04 ============================================================================ +21:02:04 [ 1] [ 4] [0810] +21:02:04 [ 7] [ 10] [0320020112] +21:02:04 [ 11] [ 6] [158366] +21:02:04 [ 39] [ 2] [00] +21:02:04 [ 70] [ 3] [301] +21:02:04 ============================================================================ +21:02:04 Calculate Source COMM Id = 2 +21:02:04 ============================================================================ +21:02:04 + + +waiting on router queue for slot.... +21:02:16 ============================================================================ +21:02:16 Slot Id : <440> +21:02:16 Transaction Type : REQUEST +21:02:16 Received From : +21:02:16 ============================================================================ +21:02:16 FNo. Len. Field Value +21:02:16 ============================================================================ +21:02:16 [ 1] [ 4] [0800] +21:02:16 [ 7] [ 10] [0320020123] +21:02:16 [ 11] [ 6] [158367] +21:02:16 [ 70] [ 3] [301] +21:02:16 ============================================================================ +21:02:16 + + +waiting on router queue for slot.... +21:02:16 Sending to : +21:02:16 ============================================================================ +21:02:16 ============================================================================ +21:02:16 Slot Id : <440> +21:02:16 Transaction Type : RESPONSE +21:02:16 Received From : +21:02:16 ============================================================================ +21:02:16 FNo. Len. Field Value +21:02:16 ============================================================================ +21:02:16 [ 1] [ 4] [0810] +21:02:16 [ 7] [ 10] [0320020123] +21:02:16 [ 11] [ 6] [158367] +21:02:16 [ 39] [ 2] [00] +21:02:16 [ 70] [ 3] [301] +21:02:16 ============================================================================ +21:02:16 Calculate Source COMM Id = 2 +21:02:16 ============================================================================ +21:02:16 + + +waiting on router queue for slot.... +21:02:16 ============================================================================ +21:02:16 Slot Id : <482> +21:02:16 Transaction Type : REQUEST +21:02:16 Received From : +21:02:16 ============================================================================ +21:02:16 FNo. Len. Field Value +21:02:16 ============================================================================ +21:02:16 [ 1] [ 4] [0800] +21:02:16 [ 7] [ 10] [0321041406] +21:02:16 [ 11] [ 6] [211406] +21:02:16 [ 37] [ 12] [57921211406] +21:02:16 [ 70] [ 3] [301] +21:02:16 ============================================================================ +21:02:16 + + +waiting on router queue for slot.... +21:02:16 Sending to : +21:02:16 ============================================================================ +21:02:16 ============================================================================ +21:02:16 Slot Id : <482> +21:02:16 Transaction Type : RESPONSE +21:02:16 Received From : +21:02:16 ============================================================================ +21:02:16 FNo. Len. Field Value +21:02:16 ============================================================================ +21:02:16 [ 1] [ 4] [0810] +21:02:16 [ 7] [ 10] [0321041406] +21:02:16 [ 11] [ 6] [211406] +21:02:16 [ 37] [ 12] [579212114060] +21:02:16 [ 39] [ 2] [00] +21:02:16 [ 70] [ 3] [810] +21:02:16 ============================================================================ +21:02:16 Calculate Source COMM Id = 6 +21:02:16 ============================================================================ +21:02:16 + + +waiting on router queue for slot.... +21:02:22 ============================================================================ +21:02:22 Slot Id : <432> +21:02:22 Transaction Type : REQUEST +21:02:22 Received From : +21:02:22 ============================================================================ +21:02:22 FNo. Len. Field Value +21:02:22 ============================================================================ +21:02:22 [ 1] [ 4] [0800] +21:02:22 [ 2] [ 5] [02531] +21:02:22 [ 3] [ 6] [579218] +21:02:22 [ 7] [ 10] [0320140222] +21:02:22 [ 11] [ 6] [807633] +21:02:22 [ 15] [ 10] [0320140222] +21:02:22 [ 37] [ 11] [57921807633] +21:02:22 [ 70] [ 3] [001] +21:02:22 ============================================================================ +21:02:22 + + +waiting on router queue for slot.... +21:02:22 ============================================================================ +21:02:22 Slot Id : <432> +21:02:22 Transaction Type : RESPONSE +21:02:22 Received From : +21:02:22 ============================================================================ +21:02:22 FNo. Len. Field Value +21:02:22 ============================================================================ +21:02:22 [ 1] [ 4] [0810] +21:02:22 [ 7] [ 10] [0320140222] +21:02:22 [ 11] [ 6] [807633] +21:02:22 [ 15] [ 4] [0320] +21:02:22 [ 37] [ 12] [57921807633] +21:02:22 [ 39] [ 2] [00] +21:02:22 [ 70] [ 3] [001] +21:02:22 ============================================================================ +21:02:22 Sending to : +21:02:22 ============================================================================ +21:02:22 + + +waiting on router queue for slot.... +21:02:29 ============================================================================ +21:02:29 Slot Id : <453> +21:02:29 Transaction Type : REQUEST +21:02:29 Received From : +21:02:29 ============================================================================ +21:02:29 FNo. Len. Field Value +21:02:29 ============================================================================ +21:02:29 [ 1] [ 4] [0200] +21:02:29 [ 2] [ 16] [1808931400007876] +21:02:29 [ 3] [ 6] [300000] +21:02:29 [ 4] [ 12] [000000000000] +21:02:29 [ 7] [ 10] [0320210020] +21:02:29 [ 11] [ 6] [957579] +21:02:29 [ 12] [ 6] [210020] +21:02:29 [ 13] [ 4] [0320] +21:02:29 [ 15] [ 4] [0320] +21:02:29 [ 18] [ 4] [6011] +21:02:29 [ 19] [ 3] [418] +21:02:29 [ 22] [ 3] [021] +21:02:29 [ 25] [ 2] [01] +21:02:29 [ 28] [ 9] [D00000000] +21:02:29 [ 32] [ 6] [668899] +21:02:29 [ 35] [ 27] [1808931400007876=1803500441] +21:02:29 [ 37] [ 12] [507901604410] +21:02:29 [ 41] [ 8] [03202001] +21:02:29 [ 42] [ 15] [APT ] +21:02:29 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +21:02:29 [ 49] [ 3] [418] +21:02:29 [ 52] [ 16] [DE2440AC0FAEA61F] +21:02:29 ============================================================================ +21:02:29 + + +waiting on router queue for slot.... +21:02:29 Sending to : +21:02:29 ============================================================================ +21:02:29 Sending to : +21:02:29 ============================================================================ +21:02:29 ============================================================================ +21:02:29 Slot Id : <453> +21:02:29 Transaction Type : REQUEST +21:02:29 Received From : +21:02:29 ============================================================================ +21:02:29 FNo. Len. Field Value +21:02:29 ============================================================================ +21:02:29 [ 1] [ 4] [0200] +21:02:29 [ 2] [ 16] [1808931400007876] +21:02:29 [ 3] [ 6] [300000] +21:02:29 [ 4] [ 12] [000000000000] +21:02:29 [ 7] [ 10] [0320210020] +21:02:29 [ 11] [ 6] [957579] +21:02:29 [ 12] [ 6] [210020] +21:02:29 [ 13] [ 4] [0320] +21:02:29 [ 15] [ 4] [0320] +21:02:29 [ 18] [ 4] [6011] +21:02:29 [ 19] [ 3] [418] +21:02:29 [ 22] [ 3] [021] +21:02:29 [ 25] [ 2] [01] +21:02:29 [ 28] [ 9] [D00000000] +21:02:29 [ 32] [ 6] [668899] +21:02:29 [ 35] [ 27] [1808931400007876=1803500441] +21:02:29 [ 37] [ 12] [507901604410] +21:02:29 [ 41] [ 8] [03202001] +21:02:29 [ 42] [ 15] [APT ] +21:02:29 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +21:02:29 [ 49] [ 3] [418] +21:02:29 [ 52] [ 16] [DE2440AC0FAEA61F] +21:02:29 ============================================================================ +21:02:29 + + +waiting on router queue for slot.... +21:02:29 Sending to : +21:02:29 ============================================================================ +21:02:29 ============================================================================ +21:02:29 Slot Id : <453> +21:02:29 Transaction Type : REQUEST +21:02:29 Received From : +21:02:29 ============================================================================ +21:02:29 FNo. Len. Field Value +21:02:29 ============================================================================ +21:02:29 [ 1] [ 4] [0200] +21:02:29 [ 2] [ 16] [1808931400007876] +21:02:29 [ 3] [ 6] [300000] +21:02:29 [ 4] [ 12] [000000000000] +21:02:29 [ 7] [ 10] [0320210020] +21:02:29 [ 11] [ 6] [957579] +21:02:29 [ 12] [ 6] [210020] +21:02:29 [ 13] [ 4] [0320] +21:02:29 [ 15] [ 4] [0320] +21:02:29 [ 18] [ 4] [6011] +21:02:29 [ 19] [ 3] [418] +21:02:29 [ 22] [ 3] [021] +21:02:29 [ 25] [ 2] [01] +21:02:29 [ 28] [ 9] [D00000000] +21:02:29 [ 32] [ 6] [668899] +21:02:29 [ 35] [ 27] [1808931400007876=1803500441] +21:02:29 [ 37] [ 12] [507901604410] +21:02:29 [ 41] [ 8] [03202001] +21:02:29 [ 42] [ 15] [APT ] +21:02:29 [ 43] [ 40] [ MUEANG KUA UNIT PHONGSALY] +21:02:29 [ 49] [ 3] [418] +21:02:29 [ 52] [ 16] [6F9551E5ABC3B683] +21:02:29 ============================================================================ +21:02:29 + + +waiting on router queue for slot.... +21:02:29 Sending to : <2> +21:02:29 ============================================================================ +21:02:32 ============================================================================ +21:02:32 Slot Id : <453> +21:02:32 Transaction Type : RESPONSE +21:02:32 Received From : +21:02:32 ============================================================================ +21:02:32 FNo. Len. Field Value +21:02:32 ============================================================================ +21:02:32 [ 1] [ 4] [0210] +21:02:32 [ 2] [ 16] [1808931400007876] +21:02:32 [ 3] [ 6] [300000] +21:02:32 [ 7] [ 10] [0320210020] +21:02:32 [ 11] [ 6] [957579] +21:02:32 [ 12] [ 6] [210020] +21:02:32 [ 13] [ 4] [0320] +21:02:32 [ 14] [ 4] [1803] +21:02:32 [ 19] [ 3] [418] +21:02:32 [ 32] [ 6] [668899] +21:02:32 [ 37] [ 12] [507901604410] +21:02:32 [ 38] [ 6] [957579] +21:02:32 [ 39] [ 2] [00] +21:02:32 [ 41] [ 8] [03202001] +21:02:32 [ 49] [ 3] [418] +21:02:32 [ 52] [ 16] [6F9551E5ABC3B683] +21:02:32 [ 54] [ 20] [0002418C000003033500] +21:02:32 ============================================================================ +21:02:32 Sending to : +21:02:32 ============================================================================ +21:02:32 + + +waiting on router queue for slot.... +21:02:34 ============================================================================ +21:02:34 Slot Id : <453> +21:02:34 Transaction Type : RESPONSE +21:02:34 Received From : +21:02:34 ============================================================================ +21:02:34 FNo. Len. Field Value +21:02:34 ============================================================================ +21:02:34 [ 1] [ 4] [0210] +21:02:34 [ 2] [ 16] [1808931400007876] +21:02:34 [ 3] [ 6] [300000] +21:02:34 [ 7] [ 10] [0320210020] +21:02:34 [ 11] [ 6] [957579] +21:02:34 [ 12] [ 6] [210020] +21:02:34 [ 13] [ 4] [0320] +21:02:34 [ 14] [ 4] [1803] +21:02:34 [ 19] [ 3] [418] +21:02:34 [ 32] [ 6] [668899] +21:02:34 [ 37] [ 12] [507901604410] +21:02:34 [ 38] [ 6] [957579] +21:02:34 [ 39] [ 2] [00] +21:02:34 [ 41] [ 8] [03202001] +21:02:34 [ 49] [ 3] [418] +21:02:34 [ 52] [ 16] [6F9551E5ABC3B683] +21:02:34 [ 54] [ 20] [0002418C000003033500] +21:02:34 ============================================================================ +21:02:34 Calculate Source COMM Id = 4 +21:02:34 ============================================================================ +21:02:34 + + +waiting on router queue for slot.... +21:02:40 ============================================================================ +21:02:40 Slot Id : <484> +21:02:40 Transaction Type : REQUEST +21:02:40 Received From : +21:02:40 ============================================================================ +21:02:40 FNo. Len. Field Value +21:02:40 ============================================================================ +21:02:40 [ 1] [ 4] [0800] +21:02:40 [ 7] [ 10] [0320020148] +21:02:40 [ 11] [ 6] [158368] +21:02:40 [ 70] [ 3] [301] +21:02:40 ============================================================================ +21:02:40 + + +waiting on router queue for slot.... +21:02:40 Sending to : +21:02:40 ============================================================================ +21:02:40 ============================================================================ +21:02:40 Slot Id : <484> +21:02:40 Transaction Type : RESPONSE +21:02:40 Received From : +21:02:40 ============================================================================ +21:02:40 FNo. Len. Field Value +21:02:40 ============================================================================ +21:02:40 [ 1] [ 4] [0810] +21:02:40 [ 7] [ 10] [0320020148] +21:02:40 [ 11] [ 6] [158368] +21:02:40 [ 39] [ 2] [00] +21:02:40 [ 70] [ 3] [301] +21:02:40 ============================================================================ +21:02:40 Calculate Source COMM Id = 2 +21:02:40 ============================================================================ +21:02:40 + + +waiting on router queue for slot.... +21:02:51 ============================================================================ +21:02:51 Slot Id : <488> +21:02:51 Transaction Type : REQUEST +21:02:51 Received From : +21:02:51 ============================================================================ +21:02:51 FNo. Len. Field Value +21:02:51 ============================================================================ +21:02:51 [ 1] [ 4] [0800] +21:02:51 [ 7] [ 10] [0320020159] +21:02:51 [ 11] [ 6] [158369] +21:02:51 [ 70] [ 3] [301] +21:02:51 ============================================================================ +21:02:51 + + +waiting on router queue for slot.... +21:02:51 Sending to : +21:02:51 ============================================================================ +21:02:51 ============================================================================ +21:02:51 Slot Id : <488> +21:02:51 Transaction Type : RESPONSE +21:02:51 Received From : +21:02:51 ============================================================================ +21:02:51 FNo. Len. Field Value +21:02:51 ============================================================================ +21:02:51 [ 1] [ 4] [0810] +21:02:51 [ 7] [ 10] [0320020159] +21:02:51 [ 11] [ 6] [158369] +21:02:51 [ 39] [ 2] [00] +21:02:51 [ 70] [ 3] [301] +21:02:51 ============================================================================ +21:02:51 Calculate Source COMM Id = 2 +21:02:51 ============================================================================ +21:02:51 + + +waiting on router queue for slot.... +21:03:07 ============================================================================ +21:03:07 Slot Id : <480> +21:03:07 Transaction Type : REQUEST +21:03:07 Received From : +21:03:07 ============================================================================ +21:03:07 FNo. Len. Field Value +21:03:07 ============================================================================ +21:03:07 [ 1] [ 4] [0800] +21:03:07 [ 7] [ 10] [0320020215] +21:03:07 [ 11] [ 6] [158370] +21:03:07 [ 70] [ 3] [301] +21:03:07 ============================================================================ +21:03:07 + + +waiting on router queue for slot.... +21:03:07 Sending to : +21:03:07 ============================================================================ +21:03:07 ============================================================================ +21:03:07 Slot Id : <480> +21:03:07 Transaction Type : RESPONSE +21:03:07 Received From : +21:03:07 ============================================================================ +21:03:07 FNo. Len. Field Value +21:03:07 ============================================================================ +21:03:07 [ 1] [ 4] [0810] +21:03:07 [ 7] [ 10] [0320020215] +21:03:07 [ 11] [ 6] [158370] +21:03:07 [ 39] [ 2] [00] +21:03:07 [ 70] [ 3] [301] +21:03:07 ============================================================================ +21:03:07 Calculate Source COMM Id = 2 +21:03:07 ============================================================================ +21:03:07 + + +waiting on router queue for slot.... +21:03:18 ============================================================================ +21:03:18 Slot Id : <470> +21:03:18 Transaction Type : REQUEST +21:03:18 Received From : +21:03:18 ============================================================================ +21:03:18 FNo. Len. Field Value +21:03:18 ============================================================================ +21:03:18 [ 1] [ 4] [0800] +21:03:18 [ 7] [ 10] [0320020226] +21:03:18 [ 11] [ 6] [158371] +21:03:18 [ 70] [ 3] [301] +21:03:18 ============================================================================ +21:03:18 + + +waiting on router queue for slot.... +21:03:18 Sending to : +21:03:18 ============================================================================ +21:03:18 ============================================================================ +21:03:18 Slot Id : <470> +21:03:18 Transaction Type : RESPONSE +21:03:18 Received From : +21:03:18 ============================================================================ +21:03:18 FNo. Len. Field Value +21:03:18 ============================================================================ +21:03:18 [ 1] [ 4] [0810] +21:03:18 [ 7] [ 10] [0320020226] +21:03:18 [ 11] [ 6] [158371] +21:03:18 [ 39] [ 2] [00] +21:03:18 [ 70] [ 3] [301] +21:03:18 ============================================================================ +21:03:18 Calculate Source COMM Id = 2 +21:03:18 ============================================================================ +21:03:18 + + +waiting on router queue for slot.... +21:03:21 ============================================================================ +21:03:21 Slot Id : <471> +21:03:21 Transaction Type : REQUEST +21:03:21 Received From : +21:03:21 ============================================================================ +21:03:21 FNo. Len. Field Value +21:03:21 ============================================================================ +21:03:21 [ 1] [ 4] [0800] +21:03:21 [ 7] [ 10] [0321041511] +21:03:21 [ 11] [ 6] [211511] +21:03:21 [ 37] [ 12] [57921211511] +21:03:21 [ 70] [ 3] [301] +21:03:21 ============================================================================ +21:03:21 + + +waiting on router queue for slot.... +21:03:21 Sending to : +21:03:21 ============================================================================ +21:03:21 ============================================================================ +21:03:21 Slot Id : <471> +21:03:21 Transaction Type : RESPONSE +21:03:21 Received From : +21:03:21 ============================================================================ +21:03:21 FNo. Len. Field Value +21:03:21 ============================================================================ +21:03:21 [ 1] [ 4] [0810] +21:03:21 [ 7] [ 10] [0321041511] +21:03:21 [ 11] [ 6] [211511] +21:03:21 [ 37] [ 12] [579212115110] +21:03:21 [ 39] [ 2] [00] +21:03:21 [ 70] [ 3] [810] +21:03:21 ============================================================================ +21:03:21 Calculate Source COMM Id = 6 +21:03:21 ============================================================================ +21:03:21 + + +waiting on router queue for slot.... +21:03:24 ============================================================================ +21:03:24 Slot Id : <490> +21:03:24 Transaction Type : REQUEST +21:03:24 Received From : +21:03:24 ============================================================================ +21:03:24 FNo. Len. Field Value +21:03:24 ============================================================================ +21:03:24 [ 1] [ 4] [0800] +21:03:24 [ 2] [ 5] [02531] +21:03:24 [ 3] [ 6] [579218] +21:03:24 [ 7] [ 10] [0320140324] +21:03:24 [ 11] [ 6] [807634] +21:03:24 [ 15] [ 10] [0320140324] +21:03:24 [ 37] [ 11] [57921807634] +21:03:24 [ 70] [ 3] [001] +21:03:24 ============================================================================ +21:03:24 + + +waiting on router queue for slot.... +21:03:24 ============================================================================ +21:03:24 Slot Id : <490> +21:03:24 Transaction Type : RESPONSE +21:03:24 Received From : +21:03:24 ============================================================================ +21:03:24 FNo. Len. Field Value +21:03:24 ============================================================================ +21:03:24 [ 1] [ 4] [0810] +21:03:24 [ 7] [ 10] [0320140324] +21:03:24 [ 11] [ 6] [807634] +21:03:24 [ 15] [ 4] [0320] +21:03:24 [ 37] [ 12] [57921807634] +21:03:24 [ 39] [ 2] [00] +21:03:24 [ 70] [ 3] [001] +21:03:24 ============================================================================ +21:03:24 Sending to : +21:03:24 ============================================================================ +21:03:24 + + +waiting on router queue for slot.... +21:03:33 ============================================================================ +21:03:33 Slot Id : <463> +21:03:33 Transaction Type : REQUEST +21:03:33 Received From : +21:03:33 ============================================================================ +21:03:33 FNo. Len. Field Value +21:03:33 ============================================================================ +21:03:33 [ 1] [ 4] [0200] +21:03:33 [ 2] [ 16] [6688990104797806] +21:03:33 [ 3] [ 6] [301000] +21:03:33 [ 4] [ 12] [000000000000] +21:03:33 [ 7] [ 10] [0320210329] +21:03:33 [ 11] [ 6] [845036] +21:03:33 [ 12] [ 6] [210329] +21:03:33 [ 13] [ 4] [0320] +21:03:33 [ 15] [ 4] [0320] +21:03:33 [ 18] [ 4] [6011] +21:03:33 [ 22] [ 3] [900] +21:03:33 [ 25] [ 2] [02] +21:03:33 [ 28] [ 9] [D00000000] +21:03:33 [ 32] [ 6] [621354] +21:03:33 [ 35] [ 37] [6688990104797806=43051231780677300000] +21:03:33 [ 37] [ 12] [507903640693] +21:03:33 [ 41] [ 8] [16001700] +21:03:33 [ 42] [ 15] [NATIVE ] +21:03:33 [ 43] [ 40] [NOUL Unit Xaythany LAO] +21:03:33 [ 49] [ 3] [418] +21:03:33 [ 52] [ 16] [7D93E0D4F1D88FD3] +21:03:33 ============================================================================ +21:03:33 + + +waiting on router queue for slot.... +21:03:33 Sending to : +21:03:33 ============================================================================ +21:03:33 Sending to : +21:03:33 ============================================================================ +21:03:33 ============================================================================ +21:03:33 Slot Id : <463> +21:03:33 Transaction Type : REQUEST +21:03:33 Received From : +21:03:33 ============================================================================ +21:03:33 FNo. Len. Field Value +21:03:33 ============================================================================ +21:03:33 [ 1] [ 4] [0200] +21:03:33 [ 2] [ 16] [6688990104797806] +21:03:33 [ 3] [ 6] [301000] +21:03:33 [ 4] [ 12] [000000000000] +21:03:33 [ 7] [ 10] [0320210329] +21:03:33 [ 11] [ 6] [845036] +21:03:33 [ 12] [ 6] [210329] +21:03:33 [ 13] [ 4] [0320] +21:03:33 [ 15] [ 4] [0320] +21:03:33 [ 18] [ 4] [6011] +21:03:33 [ 22] [ 3] [900] +21:03:33 [ 25] [ 2] [02] +21:03:33 [ 28] [ 9] [D00000000] +21:03:33 [ 32] [ 6] [621354] +21:03:33 [ 35] [ 37] [6688990104797806=43051231780677300000] +21:03:33 [ 37] [ 12] [507903640693] +21:03:33 [ 41] [ 8] [16001700] +21:03:33 [ 42] [ 15] [NATIVE ] +21:03:33 [ 43] [ 40] [NOUL Unit Xaythany LAO] +21:03:33 [ 49] [ 3] [418] +21:03:33 [ 52] [ 16] [7D93E0D4F1D88FD3] +21:03:33 ============================================================================ +21:03:33 + + +waiting on router queue for slot.... +21:03:33 Sending to : +21:03:33 ============================================================================ +21:03:33 ============================================================================ +21:03:33 Slot Id : <448> +21:03:33 Transaction Type : REQUEST +21:03:33 Received From : +21:03:33 ============================================================================ +21:03:33 FNo. Len. Field Value +21:03:33 ============================================================================ +21:03:33 [ 1] [ 4] [0800] +21:03:33 [ 7] [ 10] [0320020241] +21:03:33 [ 11] [ 6] [158372] +21:03:33 [ 70] [ 3] [301] +21:03:33 ============================================================================ +21:03:33 + + +waiting on router queue for slot.... +21:03:33 Sending to : +21:03:33 ============================================================================ +21:03:33 ============================================================================ +21:03:33 Slot Id : <448> +21:03:33 Transaction Type : RESPONSE +21:03:33 Received From : +21:03:33 ============================================================================ +21:03:33 FNo. Len. Field Value +21:03:33 ============================================================================ +21:03:33 [ 1] [ 4] [0810] +21:03:33 [ 7] [ 10] [0320020241] +21:03:33 [ 11] [ 6] [158372] +21:03:33 [ 39] [ 2] [00] +21:03:33 [ 70] [ 3] [301] +21:03:33 ============================================================================ +21:03:33 Calculate Source COMM Id = 2 +21:03:33 ============================================================================ +21:03:33 + + +waiting on router queue for slot.... +21:03:33 ============================================================================ +21:03:33 Slot Id : <463> +21:03:33 Transaction Type : REQUEST +21:03:33 Received From : +21:03:33 ============================================================================ +21:03:33 FNo. Len. Field Value +21:03:33 ============================================================================ +21:03:33 [ 1] [ 4] [0200] +21:03:33 [ 2] [ 16] [6688990104797806] +21:03:33 [ 3] [ 6] [301000] +21:03:33 [ 4] [ 12] [000000000000] +21:03:33 [ 7] [ 10] [0320210329] +21:03:33 [ 11] [ 6] [845036] +21:03:33 [ 12] [ 6] [210329] +21:03:33 [ 13] [ 4] [0320] +21:03:33 [ 15] [ 4] [0320] +21:03:33 [ 18] [ 4] [6011] +21:03:33 [ 22] [ 3] [900] +21:03:33 [ 25] [ 2] [02] +21:03:33 [ 28] [ 9] [D00000000] +21:03:33 [ 32] [ 6] [621354] +21:03:33 [ 35] [ 37] [6688990104797806=43051231780677300000] +21:03:33 [ 37] [ 12] [507903640693] +21:03:33 [ 41] [ 8] [16001700] +21:03:33 [ 42] [ 15] [NATIVE ] +21:03:33 [ 43] [ 40] [NOUL Unit Xaythany LAO] +21:03:33 [ 49] [ 3] [418] +21:03:33 [ 52] [ 16] [850E043CEE768BE1] +21:03:33 ============================================================================ +21:03:33 + + +waiting on router queue for slot.... +21:03:33 Sending to : <4> +21:03:33 ============================================================================ +21:03:34 ============================================================================ +21:03:34 Slot Id : <463> +21:03:34 Transaction Type : RESPONSE +21:03:34 Received From : +21:03:34 ============================================================================ +21:03:34 FNo. Len. Field Value +21:03:34 ============================================================================ +21:03:34 [ 1] [ 4] [0210] +21:03:34 [ 2] [ 16] [6688990104797806] +21:03:34 [ 3] [ 6] [301000] +21:03:34 [ 4] [ 12] [000000000000] +21:03:34 [ 11] [ 6] [845036] +21:03:34 [ 12] [ 6] [210329] +21:03:34 [ 15] [ 4] [0320] +21:03:34 [ 18] [ 4] [6011] +21:03:34 [ 32] [ 6] [621354] +21:03:34 [ 35] [ 37] [6688990104797806=43051231780677300000] +21:03:34 [ 37] [ 12] [507903640693] +21:03:34 [ 38] [ 6] [654850] +21:03:34 [ 39] [ 2] [00] +21:03:34 [ 41] [ 8] [16001700] +21:03:34 [ 49] [ 3] [418] +21:03:34 [ 54] [ 20] [1002418C000162775828] +21:03:34 ============================================================================ +21:03:34 Sending to : +21:03:34 ============================================================================ +21:03:34 + + +waiting on router queue for slot.... +21:03:35 ============================================================================ +21:03:35 Slot Id : <463> +21:03:35 Transaction Type : RESPONSE +21:03:35 Received From : +21:03:35 ============================================================================ +21:03:35 FNo. Len. Field Value +21:03:35 ============================================================================ +21:03:35 [ 1] [ 4] [0210] +21:03:35 [ 2] [ 16] [6688990104797806] +21:03:35 [ 3] [ 6] [301000] +21:03:35 [ 4] [ 12] [000000000000] +21:03:35 [ 11] [ 6] [845036] +21:03:35 [ 12] [ 6] [210329] +21:03:35 [ 15] [ 4] [0320] +21:03:35 [ 18] [ 4] [6011] +21:03:35 [ 32] [ 6] [621354] +21:03:35 [ 35] [ 37] [6688990104797806=43051231780677300000] +21:03:35 [ 37] [ 12] [507903640693] +21:03:35 [ 38] [ 6] [654850] +21:03:35 [ 39] [ 2] [00] +21:03:35 [ 41] [ 8] [16001700] +21:03:35 [ 49] [ 3] [418] +21:03:35 [ 54] [ 20] [1002418C000162775828] +21:03:35 ============================================================================ +21:03:35 Calculate Source COMM Id = 0 +21:03:35 ============================================================================ +21:03:35 + + +waiting on router queue for slot.... +21:03:42 ============================================================================ +21:03:42 Slot Id : <479> +21:03:42 Transaction Type : REQUEST +21:03:42 Received From : +21:03:42 ============================================================================ +21:03:42 FNo. Len. Field Value +21:03:42 ============================================================================ +21:03:42 [ 1] [ 4] [0200] +21:03:42 [ 2] [ 16] [6213541000602873] +21:03:42 [ 3] [ 6] [011000] +21:03:42 [ 4] [ 12] [000030000000] +21:03:42 [ 7] [ 10] [0320211129] +21:03:42 [ 11] [ 6] [009804] +21:03:42 [ 12] [ 6] [211129] +21:03:42 [ 13] [ 4] [0320] +21:03:42 [ 14] [ 4] [4912] +21:03:42 [ 15] [ 4] [0320] +21:03:42 [ 18] [ 4] [6011] +21:03:42 [ 22] [ 3] [900] +21:03:42 [ 25] [ 2] [02] +21:03:42 [ 28] [ 9] [D00002000] +21:03:42 [ 32] [ 6] [220699] +21:03:42 [ 35] [ 32] [6213541000602873=491212010287145] +21:03:42 [ 37] [ 12] [507900270570] +21:03:42 [ 41] [ 8] [01001500] +21:03:42 [ 42] [ 15] [APTRA ] +21:03:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:03:42 [ 49] [ 3] [418] +21:03:42 [ 52] [ 16] [D0F6466EA6F27AE4] +21:03:42 ============================================================================ +21:03:42 + + +waiting on router queue for slot.... +21:03:42 Sending to : +21:03:42 ============================================================================ +21:03:42 Sending to : +21:03:42 ============================================================================ +21:03:42 ============================================================================ +21:03:42 Slot Id : <479> +21:03:42 Transaction Type : REQUEST +21:03:42 Received From : +21:03:42 ============================================================================ +21:03:42 FNo. Len. Field Value +21:03:42 ============================================================================ +21:03:42 [ 1] [ 4] [0200] +21:03:42 [ 2] [ 16] [6213541000602873] +21:03:42 [ 3] [ 6] [011000] +21:03:42 [ 4] [ 12] [000030000000] +21:03:42 [ 7] [ 10] [0320211129] +21:03:42 [ 11] [ 6] [009804] +21:03:42 [ 12] [ 6] [211129] +21:03:42 [ 13] [ 4] [0320] +21:03:42 [ 14] [ 4] [4912] +21:03:42 [ 15] [ 4] [0320] +21:03:42 [ 18] [ 4] [6011] +21:03:42 [ 22] [ 3] [900] +21:03:42 [ 25] [ 2] [02] +21:03:42 [ 28] [ 9] [D00002000] +21:03:42 [ 32] [ 6] [220699] +21:03:42 [ 35] [ 32] [6213541000602873=491212010287145] +21:03:42 [ 37] [ 12] [507900270570] +21:03:42 [ 41] [ 8] [01001500] +21:03:42 [ 42] [ 15] [APTRA ] +21:03:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:03:42 [ 49] [ 3] [418] +21:03:42 [ 52] [ 16] [D0F6466EA6F27AE4] +21:03:42 ============================================================================ +21:03:42 + + +waiting on router queue for slot.... +21:03:42 Sending to : +21:03:42 ============================================================================ +21:03:42 ============================================================================ +21:03:42 Slot Id : <479> +21:03:42 Transaction Type : REQUEST +21:03:42 Received From : +21:03:42 ============================================================================ +21:03:42 FNo. Len. Field Value +21:03:42 ============================================================================ +21:03:42 [ 1] [ 4] [0200] +21:03:42 [ 2] [ 16] [6213541000602873] +21:03:42 [ 3] [ 6] [011000] +21:03:42 [ 4] [ 12] [000030000000] +21:03:42 [ 7] [ 10] [0320211129] +21:03:42 [ 11] [ 6] [009804] +21:03:42 [ 12] [ 6] [211129] +21:03:42 [ 13] [ 4] [0320] +21:03:42 [ 14] [ 4] [4912] +21:03:42 [ 15] [ 4] [0320] +21:03:42 [ 18] [ 4] [6011] +21:03:42 [ 22] [ 3] [900] +21:03:42 [ 25] [ 2] [02] +21:03:42 [ 28] [ 9] [D00002000] +21:03:42 [ 32] [ 6] [220699] +21:03:42 [ 35] [ 32] [6213541000602873=491212010287145] +21:03:42 [ 37] [ 12] [507900270570] +21:03:42 [ 41] [ 8] [01001500] +21:03:42 [ 42] [ 15] [APTRA ] +21:03:42 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:03:42 [ 49] [ 3] [418] +21:03:42 [ 52] [ 16] [F5A8E1B5F0F7BAAF] +21:03:42 ============================================================================ +21:03:42 + + +waiting on router queue for slot.... +21:03:42 Sending to : <0> +21:03:42 ============================================================================ +21:03:43 ============================================================================ +21:03:43 Slot Id : <479> +21:03:43 Transaction Type : RESPONSE +21:03:43 Received From : +21:03:43 ============================================================================ +21:03:43 FNo. Len. Field Value +21:03:43 ============================================================================ +21:03:43 [ 1] [ 4] [0210] +21:03:43 [ 2] [ 16] [6213541000602873] +21:03:43 [ 3] [ 6] [011000] +21:03:43 [ 4] [ 12] [000030000000] +21:03:43 [ 7] [ 10] [0320211129] +21:03:43 [ 11] [ 6] [009804] +21:03:43 [ 12] [ 6] [211129] +21:03:43 [ 13] [ 4] [0320] +21:03:43 [ 15] [ 4] [0320] +21:03:43 [ 18] [ 4] [6011] +21:03:43 [ 32] [ 6] [220699] +21:03:43 [ 35] [ 32] [6213541000602873=491212010287145] +21:03:43 [ 37] [ 12] [507900270570] +21:03:43 [ 38] [ 6] [308463] +21:03:43 [ 39] [ 2] [00] +21:03:43 [ 41] [ 8] [01001500] +21:03:43 [ 49] [ 3] [418] +21:03:43 [ 54] [ 40] [1001418C0101067618131002418C010076561813] +21:03:43 ============================================================================ +21:03:43 Sending to : +21:03:43 ============================================================================ +21:03:43 + + +waiting on router queue for slot.... +21:03:44 ============================================================================ +21:03:44 Slot Id : <0> +21:03:44 Transaction Type : REQUEST +21:03:44 Received From : +21:03:44 ============================================================================ +21:03:44 FNo. Len. Field Value +21:03:44 ============================================================================ +21:03:44 [ 1] [ 4] [0800] +21:03:44 [ 7] [ 10] [0320020252] +21:03:44 [ 11] [ 6] [158373] +21:03:44 [ 70] [ 3] [301] +21:03:44 ============================================================================ +21:03:44 + + +waiting on router queue for slot.... +21:03:44 Sending to : +21:03:44 ============================================================================ +21:03:44 ============================================================================ +21:03:44 Slot Id : <0> +21:03:44 Transaction Type : RESPONSE +21:03:44 Received From : +21:03:44 ============================================================================ +21:03:44 FNo. Len. Field Value +21:03:44 ============================================================================ +21:03:44 [ 1] [ 4] [0810] +21:03:44 [ 7] [ 10] [0320020252] +21:03:44 [ 11] [ 6] [158373] +21:03:44 [ 39] [ 2] [00] +21:03:44 [ 70] [ 3] [301] +21:03:44 ============================================================================ +21:03:44 Calculate Source COMM Id = 2 +21:03:44 ============================================================================ +21:03:44 + + +waiting on router queue for slot.... +21:03:44 ============================================================================ +21:03:44 Slot Id : <479> +21:03:44 Transaction Type : RESPONSE +21:03:44 Received From : +21:03:44 ============================================================================ +21:03:44 FNo. Len. Field Value +21:03:44 ============================================================================ +21:03:44 [ 1] [ 4] [0210] +21:03:44 [ 2] [ 16] [6213541000602873] +21:03:44 [ 3] [ 6] [011000] +21:03:44 [ 4] [ 12] [000030000000] +21:03:44 [ 7] [ 10] [0320211129] +21:03:44 [ 11] [ 6] [009804] +21:03:44 [ 12] [ 6] [211129] +21:03:44 [ 13] [ 4] [0320] +21:03:44 [ 15] [ 4] [0320] +21:03:44 [ 18] [ 4] [6011] +21:03:44 [ 32] [ 6] [220699] +21:03:44 [ 35] [ 32] [6213541000602873=491212010287145] +21:03:44 [ 37] [ 12] [507900270570] +21:03:44 [ 38] [ 6] [308463] +21:03:44 [ 39] [ 2] [00] +21:03:44 [ 41] [ 8] [01001500] +21:03:44 [ 49] [ 3] [418] +21:03:44 [ 54] [ 40] [1001418C0101067618131002418C010076561813] +21:03:44 ============================================================================ +21:03:44 Calculate Source COMM Id = 1 +21:03:44 ============================================================================ +21:03:44 + + +waiting on router queue for slot.... +21:03:54 ============================================================================ +21:03:54 Slot Id : <2> +21:03:54 Transaction Type : REQUEST +21:03:54 Received From : +21:03:54 ============================================================================ +21:03:54 FNo. Len. Field Value +21:03:54 ============================================================================ +21:03:54 [ 1] [ 4] [0800] +21:03:54 [ 7] [ 10] [0320020302] +21:03:54 [ 11] [ 6] [158374] +21:03:54 [ 70] [ 3] [301] +21:03:54 ============================================================================ +21:03:54 + + +waiting on router queue for slot.... +21:03:54 Sending to : +21:03:54 ============================================================================ +21:03:54 ============================================================================ +21:03:54 Slot Id : <2> +21:03:54 Transaction Type : RESPONSE +21:03:54 Received From : +21:03:54 ============================================================================ +21:03:54 FNo. Len. Field Value +21:03:54 ============================================================================ +21:03:54 [ 1] [ 4] [0810] +21:03:54 [ 7] [ 10] [0320020302] +21:03:54 [ 11] [ 6] [158374] +21:03:54 [ 39] [ 2] [00] +21:03:54 [ 70] [ 3] [301] +21:03:54 ============================================================================ +21:03:54 Calculate Source COMM Id = 2 +21:03:54 ============================================================================ +21:03:54 + + +waiting on router queue for slot.... +21:04:04 ============================================================================ +21:04:04 Slot Id : <4> +21:04:04 Transaction Type : REQUEST +21:04:04 Received From : +21:04:04 ============================================================================ +21:04:04 FNo. Len. Field Value +21:04:04 ============================================================================ +21:04:04 [ 1] [ 4] [0800] +21:04:04 [ 7] [ 10] [0320020313] +21:04:04 [ 11] [ 6] [158375] +21:04:04 [ 70] [ 3] [301] +21:04:04 ============================================================================ +21:04:04 + + +waiting on router queue for slot.... +21:04:04 Sending to : +21:04:04 ============================================================================ +21:04:04 ============================================================================ +21:04:04 Slot Id : <4> +21:04:04 Transaction Type : RESPONSE +21:04:04 Received From : +21:04:04 ============================================================================ +21:04:04 FNo. Len. Field Value +21:04:04 ============================================================================ +21:04:04 [ 1] [ 4] [0810] +21:04:04 [ 7] [ 10] [0320020313] +21:04:04 [ 11] [ 6] [158375] +21:04:04 [ 39] [ 2] [00] +21:04:04 [ 70] [ 3] [301] +21:04:04 ============================================================================ +21:04:04 Calculate Source COMM Id = 2 +21:04:04 ============================================================================ +21:04:04 + + +waiting on router queue for slot.... +21:04:15 ============================================================================ +21:04:15 Slot Id : <493> +21:04:15 Transaction Type : REQUEST +21:04:15 Received From : +21:04:15 ============================================================================ +21:04:15 FNo. Len. Field Value +21:04:15 ============================================================================ +21:04:15 [ 1] [ 4] [0800] +21:04:15 [ 7] [ 10] [0320020324] +21:04:15 [ 11] [ 6] [158376] +21:04:15 [ 70] [ 3] [301] +21:04:15 ============================================================================ +21:04:15 + + +waiting on router queue for slot.... +21:04:15 Sending to : +21:04:15 ============================================================================ +21:04:15 ============================================================================ +21:04:15 Slot Id : <493> +21:04:15 Transaction Type : RESPONSE +21:04:15 Received From : +21:04:15 ============================================================================ +21:04:15 FNo. Len. Field Value +21:04:15 ============================================================================ +21:04:15 [ 1] [ 4] [0810] +21:04:15 [ 7] [ 10] [0320020324] +21:04:15 [ 11] [ 6] [158376] +21:04:15 [ 39] [ 2] [00] +21:04:15 [ 70] [ 3] [301] +21:04:15 ============================================================================ +21:04:15 Calculate Source COMM Id = 2 +21:04:15 ============================================================================ +21:04:15 + + +waiting on router queue for slot.... +21:04:26 ============================================================================ +21:04:26 Slot Id : <473> +21:04:26 Transaction Type : REQUEST +21:04:26 Received From : +21:04:26 ============================================================================ +21:04:26 FNo. Len. Field Value +21:04:26 ============================================================================ +21:04:26 [ 1] [ 4] [0800] +21:04:26 [ 2] [ 5] [02531] +21:04:26 [ 3] [ 6] [579218] +21:04:26 [ 7] [ 10] [0320140426] +21:04:26 [ 11] [ 6] [807635] +21:04:26 [ 15] [ 10] [0320140426] +21:04:26 [ 37] [ 11] [57921807635] +21:04:26 [ 70] [ 3] [001] +21:04:26 ============================================================================ +21:04:26 + + +waiting on router queue for slot.... +21:04:26 ============================================================================ +21:04:26 Slot Id : <473> +21:04:26 Transaction Type : RESPONSE +21:04:26 Received From : +21:04:26 ============================================================================ +21:04:26 FNo. Len. Field Value +21:04:26 ============================================================================ +21:04:26 [ 1] [ 4] [0810] +21:04:26 [ 7] [ 10] [0320140426] +21:04:26 [ 11] [ 6] [807635] +21:04:26 [ 15] [ 4] [0320] +21:04:26 [ 37] [ 12] [57921807635] +21:04:26 [ 39] [ 2] [00] +21:04:26 [ 70] [ 3] [001] +21:04:26 ============================================================================ +21:04:26 Sending to : +21:04:26 ============================================================================ +21:04:26 + + +waiting on router queue for slot.... +21:04:26 ============================================================================ +21:04:26 Slot Id : <498> +21:04:26 Transaction Type : REQUEST +21:04:26 Received From : +21:04:26 ============================================================================ +21:04:26 FNo. Len. Field Value +21:04:26 ============================================================================ +21:04:26 [ 1] [ 4] [0800] +21:04:26 [ 7] [ 10] [0321041616] +21:04:26 [ 11] [ 6] [211616] +21:04:26 [ 37] [ 12] [57921211616] +21:04:26 [ 70] [ 3] [301] +21:04:26 ============================================================================ +21:04:26 + + +waiting on router queue for slot.... +21:04:26 Sending to : +21:04:26 ============================================================================ +21:04:26 ============================================================================ +21:04:26 Slot Id : <498> +21:04:26 Transaction Type : RESPONSE +21:04:26 Received From : +21:04:26 ============================================================================ +21:04:26 FNo. Len. Field Value +21:04:26 ============================================================================ +21:04:26 [ 1] [ 4] [0810] +21:04:26 [ 7] [ 10] [0321041616] +21:04:26 [ 11] [ 6] [211616] +21:04:26 [ 37] [ 12] [579212116160] +21:04:26 [ 39] [ 2] [00] +21:04:26 [ 70] [ 3] [810] +21:04:26 ============================================================================ +21:04:26 Calculate Source COMM Id = 6 +21:04:26 ============================================================================ +21:04:26 + + +waiting on router queue for slot.... +21:04:26 ============================================================================ +21:04:26 Slot Id : <489> +21:04:26 Transaction Type : REQUEST +21:04:26 Received From : +21:04:26 ============================================================================ +21:04:26 FNo. Len. Field Value +21:04:26 ============================================================================ +21:04:26 [ 1] [ 4] [0800] +21:04:26 [ 7] [ 10] [0320020334] +21:04:26 [ 11] [ 6] [158377] +21:04:26 [ 70] [ 3] [301] +21:04:26 ============================================================================ +21:04:26 + + +waiting on router queue for slot.... +21:04:26 Sending to : +21:04:26 ============================================================================ +21:04:26 ============================================================================ +21:04:26 Slot Id : <489> +21:04:26 Transaction Type : RESPONSE +21:04:26 Received From : +21:04:26 ============================================================================ +21:04:26 FNo. Len. Field Value +21:04:26 ============================================================================ +21:04:26 [ 1] [ 4] [0810] +21:04:26 [ 7] [ 10] [0320020334] +21:04:26 [ 11] [ 6] [158377] +21:04:26 [ 39] [ 2] [00] +21:04:26 [ 70] [ 3] [301] +21:04:26 ============================================================================ +21:04:26 Calculate Source COMM Id = 2 +21:04:26 ============================================================================ +21:04:26 + + +waiting on router queue for slot.... +21:04:42 ============================================================================ +21:04:42 Slot Id : <1> +21:04:42 Transaction Type : REQUEST +21:04:42 Received From : +21:04:42 ============================================================================ +21:04:42 FNo. Len. Field Value +21:04:42 ============================================================================ +21:04:42 [ 1] [ 4] [0800] +21:04:42 [ 7] [ 10] [0320020350] +21:04:42 [ 11] [ 6] [158378] +21:04:42 [ 70] [ 3] [301] +21:04:42 ============================================================================ +21:04:42 + + +waiting on router queue for slot.... +21:04:42 Sending to : +21:04:42 ============================================================================ +21:04:42 ============================================================================ +21:04:42 Slot Id : <1> +21:04:42 Transaction Type : RESPONSE +21:04:42 Received From : +21:04:42 ============================================================================ +21:04:42 FNo. Len. Field Value +21:04:42 ============================================================================ +21:04:42 [ 1] [ 4] [0810] +21:04:42 [ 7] [ 10] [0320020350] +21:04:42 [ 11] [ 6] [158378] +21:04:42 [ 39] [ 2] [00] +21:04:42 [ 70] [ 3] [301] +21:04:42 ============================================================================ +21:04:42 Calculate Source COMM Id = 2 +21:04:42 ============================================================================ +21:04:42 + + +waiting on router queue for slot.... +21:04:52 ============================================================================ +21:04:52 Slot Id : <476> +21:04:52 Transaction Type : REQUEST +21:04:52 Received From : +21:04:52 ============================================================================ +21:04:52 FNo. Len. Field Value +21:04:52 ============================================================================ +21:04:52 [ 1] [ 4] [0800] +21:04:52 [ 7] [ 10] [0320020400] +21:04:52 [ 11] [ 6] [158379] +21:04:52 [ 70] [ 3] [301] +21:04:52 ============================================================================ +21:04:52 + + +waiting on router queue for slot.... +21:04:52 Sending to : +21:04:52 ============================================================================ +21:04:52 ============================================================================ +21:04:52 Slot Id : <476> +21:04:52 Transaction Type : RESPONSE +21:04:52 Received From : +21:04:52 ============================================================================ +21:04:52 FNo. Len. Field Value +21:04:52 ============================================================================ +21:04:52 [ 1] [ 4] [0810] +21:04:52 [ 7] [ 10] [0320020400] +21:04:52 [ 11] [ 6] [158379] +21:04:52 [ 39] [ 2] [00] +21:04:52 [ 70] [ 3] [301] +21:04:52 ============================================================================ +21:04:52 Calculate Source COMM Id = 2 +21:04:52 ============================================================================ +21:04:52 + + +waiting on router queue for slot.... +21:04:55 ============================================================================ +21:04:55 Slot Id : <477> +21:04:55 Transaction Type : REQUEST +21:04:55 Received From : +21:04:55 ============================================================================ +21:04:55 FNo. Len. Field Value +21:04:55 ============================================================================ +21:04:55 [ 1] [ 4] [0200] +21:04:55 [ 2] [ 16] [1808930200031920] +21:04:55 [ 3] [ 6] [011000] +21:04:55 [ 4] [ 12] [000002000000] +21:04:55 [ 7] [ 10] [0320210451] +21:04:55 [ 11] [ 6] [845131] +21:04:55 [ 12] [ 6] [210451] +21:04:55 [ 13] [ 4] [0320] +21:04:55 [ 15] [ 4] [0320] +21:04:55 [ 18] [ 4] [6011] +21:04:55 [ 22] [ 3] [900] +21:04:55 [ 25] [ 2] [02] +21:04:55 [ 28] [ 9] [D00002000] +21:04:55 [ 32] [ 6] [621354] +21:04:55 [ 35] [ 27] [1808930200031920=1803500845] +21:04:55 [ 37] [ 12] [507903939343] +21:04:55 [ 41] [ 8] [01010900] +21:04:55 [ 42] [ 15] [NATIVE ] +21:04:55 [ 43] [ 40] [Bank KM9 Xatthany LAO] +21:04:55 [ 49] [ 3] [418] +21:04:55 [ 52] [ 16] [0DECFB06BEA9FE15] +21:04:55 ============================================================================ +21:04:55 + + +waiting on router queue for slot.... +21:04:55 Sending to : +21:04:55 ============================================================================ +21:04:55 Sending to : +21:04:55 ============================================================================ +21:04:55 ============================================================================ +21:04:55 Slot Id : <477> +21:04:55 Transaction Type : REQUEST +21:04:55 Received From : +21:04:55 ============================================================================ +21:04:55 FNo. Len. Field Value +21:04:55 ============================================================================ +21:04:55 [ 1] [ 4] [0200] +21:04:55 [ 2] [ 16] [1808930200031920] +21:04:55 [ 3] [ 6] [011000] +21:04:55 [ 4] [ 12] [000002000000] +21:04:55 [ 7] [ 10] [0320210451] +21:04:55 [ 11] [ 6] [845131] +21:04:55 [ 12] [ 6] [210451] +21:04:55 [ 13] [ 4] [0320] +21:04:55 [ 15] [ 4] [0320] +21:04:55 [ 18] [ 4] [6011] +21:04:55 [ 22] [ 3] [900] +21:04:55 [ 25] [ 2] [02] +21:04:55 [ 28] [ 9] [D00002000] +21:04:55 [ 32] [ 6] [621354] +21:04:55 [ 35] [ 27] [1808930200031920=1803500845] +21:04:55 [ 37] [ 12] [507903939343] +21:04:55 [ 41] [ 8] [01010900] +21:04:55 [ 42] [ 15] [NATIVE ] +21:04:55 [ 43] [ 40] [Bank KM9 Xatthany LAO] +21:04:55 [ 49] [ 3] [418] +21:04:55 [ 52] [ 16] [0DECFB06BEA9FE15] +21:04:55 ============================================================================ +21:04:55 + + +waiting on router queue for slot.... +21:04:55 Sending to : +21:04:55 ============================================================================ +21:04:55 ============================================================================ +21:04:55 Slot Id : <477> +21:04:55 Transaction Type : REQUEST +21:04:55 Received From : +21:04:55 ============================================================================ +21:04:55 FNo. Len. Field Value +21:04:55 ============================================================================ +21:04:55 [ 1] [ 4] [0200] +21:04:55 [ 2] [ 16] [1808930200031920] +21:04:55 [ 3] [ 6] [011000] +21:04:55 [ 4] [ 12] [000002000000] +21:04:55 [ 7] [ 10] [0320210451] +21:04:55 [ 11] [ 6] [845131] +21:04:55 [ 12] [ 6] [210451] +21:04:55 [ 13] [ 4] [0320] +21:04:55 [ 15] [ 4] [0320] +21:04:55 [ 18] [ 4] [6011] +21:04:55 [ 22] [ 3] [900] +21:04:55 [ 25] [ 2] [02] +21:04:55 [ 28] [ 9] [D00002000] +21:04:55 [ 32] [ 6] [621354] +21:04:55 [ 35] [ 27] [1808930200031920=1803500845] +21:04:55 [ 37] [ 12] [507903939343] +21:04:55 [ 41] [ 8] [01010900] +21:04:55 [ 42] [ 15] [NATIVE ] +21:04:55 [ 43] [ 40] [Bank KM9 Xatthany LAO] +21:04:55 [ 49] [ 3] [418] +21:04:55 [ 52] [ 16] [E8F6E582D89E1259] +21:04:55 ============================================================================ +21:04:55 + + +waiting on router queue for slot.... +21:04:55 Sending to : <2> +21:04:55 ============================================================================ +21:04:55 ============================================================================ +21:04:55 Slot Id : <485> +21:04:55 Transaction Type : REQUEST +21:04:55 Received From : +21:04:55 ============================================================================ +21:04:55 FNo. Len. Field Value +21:04:55 ============================================================================ +21:04:55 [ 1] [ 4] [0800] +21:04:55 [ 7] [ 10] [0320141242] +21:04:55 [ 11] [ 6] [011024] +21:04:55 [ 37] [ 12] [57921011024] +21:04:55 [ 70] [ 3] [301] +21:04:55 ============================================================================ +21:04:55 + + +waiting on router queue for slot.... +21:04:55 Sending to : +21:04:55 ============================================================================ +21:04:55 ============================================================================ +21:04:55 Slot Id : <485> +21:04:55 Transaction Type : RESPONSE +21:04:55 Received From : +21:04:55 ============================================================================ +21:04:55 FNo. Len. Field Value +21:04:55 ============================================================================ +21:04:55 [ 1] [ 4] [0810] +21:04:55 [ 7] [ 10] [0320141242] +21:04:55 [ 11] [ 6] [011024] +21:04:55 [ 37] [ 12] [579210110240] +21:04:55 [ 39] [ 2] [00] +21:04:55 [ 70] [ 3] [810] +21:04:55 ============================================================================ +21:04:55 Calculate Source COMM Id = 1 +21:04:55 ============================================================================ +21:04:55 + + +waiting on router queue for slot.... +21:05:01 ============================================================================ +21:05:01 Slot Id : <477> +21:05:01 Transaction Type : RESPONSE +21:05:01 Received From : +21:05:01 ============================================================================ +21:05:01 FNo. Len. Field Value +21:05:01 ============================================================================ +21:05:01 [ 1] [ 4] [0210] +21:05:01 [ 2] [ 16] [1808930200031920] +21:05:01 [ 3] [ 6] [011000] +21:05:01 [ 4] [ 12] [000002000000] +21:05:01 [ 6] [ 12] [000002000000] +21:05:01 [ 7] [ 10] [0320210451] +21:05:01 [ 11] [ 6] [845131] +21:05:01 [ 12] [ 6] [210451] +21:05:01 [ 13] [ 4] [0320] +21:05:01 [ 18] [ 4] [6011] +21:05:01 [ 19] [ 3] [418] +21:05:01 [ 22] [ 3] [021] +21:05:01 [ 32] [ 6] [621354] +21:05:01 [ 35] [ 27] [1808930200031920=1803500845] +21:05:01 [ 37] [ 12] [507903939343] +21:05:01 [ 38] [ 6] [845131] +21:05:01 [ 39] [ 2] [00] +21:05:01 [ 41] [ 8] [01010900] +21:05:01 [ 49] [ 3] [418] +21:05:01 [ 52] [ 16] [E8F6E582D89E1259] +21:05:01 [ 54] [ 20] [1001418C000007167600] +21:05:01 ============================================================================ +21:05:01 Sending to : +21:05:01 ============================================================================ +21:05:01 + + +waiting on router queue for slot.... +21:05:02 ============================================================================ +21:05:02 Slot Id : <477> +21:05:02 Transaction Type : RESPONSE +21:05:02 Received From : +21:05:02 ============================================================================ +21:05:02 FNo. Len. Field Value +21:05:02 ============================================================================ +21:05:02 [ 1] [ 4] [0210] +21:05:02 [ 2] [ 16] [1808930200031920] +21:05:02 [ 3] [ 6] [011000] +21:05:02 [ 4] [ 12] [000002000000] +21:05:02 [ 6] [ 12] [000002000000] +21:05:02 [ 7] [ 10] [0320210451] +21:05:02 [ 11] [ 6] [845131] +21:05:02 [ 12] [ 6] [210451] +21:05:02 [ 13] [ 4] [0320] +21:05:02 [ 18] [ 4] [6011] +21:05:02 [ 19] [ 3] [418] +21:05:02 [ 22] [ 3] [021] +21:05:02 [ 32] [ 6] [621354] +21:05:02 [ 35] [ 27] [1808930200031920=1803500845] +21:05:02 [ 37] [ 12] [507903939343] +21:05:02 [ 38] [ 6] [845131] +21:05:02 [ 39] [ 2] [00] +21:05:02 [ 41] [ 8] [01010900] +21:05:02 [ 49] [ 3] [418] +21:05:02 [ 52] [ 16] [E8F6E582D89E1259] +21:05:02 [ 54] [ 20] [1001418C000007167600] +21:05:02 ============================================================================ +21:05:02 Calculate Source COMM Id = 0 +21:05:02 ============================================================================ +21:05:02 + + +waiting on router queue for slot.... +21:05:07 ============================================================================ +21:05:07 Slot Id : <14> +21:05:07 Transaction Type : REQUEST +21:05:07 Received From : +21:05:07 ============================================================================ +21:05:07 FNo. Len. Field Value +21:05:07 ============================================================================ +21:05:07 [ 1] [ 4] [0800] +21:05:07 [ 7] [ 10] [0320020415] +21:05:07 [ 11] [ 6] [158380] +21:05:07 [ 70] [ 3] [301] +21:05:07 ============================================================================ +21:05:07 + + +waiting on router queue for slot.... +21:05:07 Sending to : +21:05:07 ============================================================================ +21:05:07 ============================================================================ +21:05:07 Slot Id : <14> +21:05:07 Transaction Type : RESPONSE +21:05:07 Received From : +21:05:07 ============================================================================ +21:05:07 FNo. Len. Field Value +21:05:07 ============================================================================ +21:05:07 [ 1] [ 4] [0810] +21:05:07 [ 7] [ 10] [0320020415] +21:05:07 [ 11] [ 6] [158380] +21:05:07 [ 39] [ 2] [00] +21:05:07 [ 70] [ 3] [301] +21:05:07 ============================================================================ +21:05:07 Calculate Source COMM Id = 2 +21:05:07 ============================================================================ +21:05:07 + + +waiting on router queue for slot.... +21:05:17 ============================================================================ +21:05:17 Slot Id : <483> +21:05:17 Transaction Type : REQUEST +21:05:17 Received From : +21:05:17 ============================================================================ +21:05:17 FNo. Len. Field Value +21:05:17 ============================================================================ +21:05:17 [ 1] [ 4] [0800] +21:05:17 [ 7] [ 10] [0320020425] +21:05:17 [ 11] [ 6] [158381] +21:05:17 [ 70] [ 3] [301] +21:05:17 ============================================================================ +21:05:17 + + +waiting on router queue for slot.... +21:05:17 Sending to : +21:05:17 ============================================================================ +21:05:17 ============================================================================ +21:05:17 Slot Id : <483> +21:05:17 Transaction Type : RESPONSE +21:05:17 Received From : +21:05:17 ============================================================================ +21:05:17 FNo. Len. Field Value +21:05:17 ============================================================================ +21:05:17 [ 1] [ 4] [0810] +21:05:17 [ 7] [ 10] [0320020425] +21:05:17 [ 11] [ 6] [158381] +21:05:17 [ 39] [ 2] [00] +21:05:17 [ 70] [ 3] [301] +21:05:17 ============================================================================ +21:05:17 Calculate Source COMM Id = 2 +21:05:17 ============================================================================ +21:05:17 + + +waiting on router queue for slot.... +21:05:28 ============================================================================ +21:05:28 Slot Id : <474> +21:05:28 Transaction Type : REQUEST +21:05:28 Received From : +21:05:28 ============================================================================ +21:05:28 FNo. Len. Field Value +21:05:28 ============================================================================ +21:05:28 [ 1] [ 4] [0800] +21:05:28 [ 2] [ 5] [02531] +21:05:28 [ 3] [ 6] [579218] +21:05:28 [ 7] [ 10] [0320140528] +21:05:28 [ 11] [ 6] [807636] +21:05:28 [ 15] [ 10] [0320140528] +21:05:28 [ 37] [ 11] [57921807636] +21:05:28 [ 70] [ 3] [001] +21:05:28 ============================================================================ +21:05:28 + + +waiting on router queue for slot.... +21:05:28 ============================================================================ +21:05:28 Slot Id : <474> +21:05:28 Transaction Type : RESPONSE +21:05:28 Received From : +21:05:28 ============================================================================ +21:05:28 FNo. Len. Field Value +21:05:28 ============================================================================ +21:05:28 [ 1] [ 4] [0810] +21:05:28 [ 7] [ 10] [0320140528] +21:05:28 [ 11] [ 6] [807636] +21:05:28 [ 15] [ 4] [0320] +21:05:28 [ 37] [ 12] [57921807636] +21:05:28 [ 39] [ 2] [00] +21:05:28 [ 70] [ 3] [001] +21:05:28 ============================================================================ +21:05:28 Sending to : +21:05:28 ============================================================================ +21:05:28 + + +waiting on router queue for slot.... +21:05:31 ============================================================================ +21:05:31 Slot Id : <6> +21:05:31 Transaction Type : REQUEST +21:05:31 Received From : +21:05:31 ============================================================================ +21:05:31 FNo. Len. Field Value +21:05:31 ============================================================================ +21:05:31 [ 1] [ 4] [0800] +21:05:31 [ 7] [ 10] [0321041721] +21:05:31 [ 11] [ 6] [211721] +21:05:31 [ 37] [ 12] [57921211721] +21:05:31 [ 70] [ 3] [301] +21:05:31 ============================================================================ +21:05:31 + + +waiting on router queue for slot.... +21:05:31 Sending to : +21:05:31 ============================================================================ +21:05:31 ============================================================================ +21:05:31 Slot Id : <6> +21:05:31 Transaction Type : RESPONSE +21:05:31 Received From : +21:05:31 ============================================================================ +21:05:31 FNo. Len. Field Value +21:05:31 ============================================================================ +21:05:31 [ 1] [ 4] [0810] +21:05:31 [ 7] [ 10] [0321041721] +21:05:31 [ 11] [ 6] [211721] +21:05:31 [ 37] [ 12] [579212117210] +21:05:31 [ 39] [ 2] [00] +21:05:31 [ 70] [ 3] [810] +21:05:31 ============================================================================ +21:05:31 Calculate Source COMM Id = 6 +21:05:31 ============================================================================ +21:05:31 + + +waiting on router queue for slot.... +21:05:32 ============================================================================ +21:05:32 Slot Id : <472> +21:05:32 Transaction Type : REQUEST +21:05:32 Received From : +21:05:32 ============================================================================ +21:05:32 FNo. Len. Field Value +21:05:32 ============================================================================ +21:05:32 [ 1] [ 4] [0800] +21:05:32 [ 7] [ 10] [0320020440] +21:05:32 [ 11] [ 6] [158382] +21:05:32 [ 70] [ 3] [301] +21:05:32 ============================================================================ +21:05:32 + + +waiting on router queue for slot.... +21:05:32 Sending to : +21:05:32 ============================================================================ +21:05:32 ============================================================================ +21:05:32 Slot Id : <472> +21:05:32 Transaction Type : RESPONSE +21:05:32 Received From : +21:05:32 ============================================================================ +21:05:32 FNo. Len. Field Value +21:05:32 ============================================================================ +21:05:32 [ 1] [ 4] [0810] +21:05:32 [ 7] [ 10] [0320020440] +21:05:32 [ 11] [ 6] [158382] +21:05:32 [ 39] [ 2] [00] +21:05:32 [ 70] [ 3] [301] +21:05:32 ============================================================================ +21:05:32 Calculate Source COMM Id = 2 +21:05:32 ============================================================================ +21:05:32 + + +waiting on router queue for slot.... +21:05:48 ============================================================================ +21:05:48 Slot Id : <486> +21:05:48 Transaction Type : REQUEST +21:05:48 Received From : +21:05:48 ============================================================================ +21:05:48 FNo. Len. Field Value +21:05:48 ============================================================================ +21:05:48 [ 1] [ 4] [0800] +21:05:48 [ 7] [ 10] [0320020456] +21:05:48 [ 11] [ 6] [158383] +21:05:48 [ 70] [ 3] [301] +21:05:48 ============================================================================ +21:05:48 + + +waiting on router queue for slot.... +21:05:48 Sending to : +21:05:48 ============================================================================ +21:05:48 ============================================================================ +21:05:48 Slot Id : <486> +21:05:48 Transaction Type : RESPONSE +21:05:48 Received From : +21:05:48 ============================================================================ +21:05:48 FNo. Len. Field Value +21:05:48 ============================================================================ +21:05:48 [ 1] [ 4] [0810] +21:05:48 [ 7] [ 10] [0320020456] +21:05:48 [ 11] [ 6] [158383] +21:05:48 [ 39] [ 2] [00] +21:05:48 [ 70] [ 3] [301] +21:05:48 ============================================================================ +21:05:48 Calculate Source COMM Id = 2 +21:05:48 ============================================================================ +21:05:48 + + +waiting on router queue for slot.... +21:05:58 ============================================================================ +21:05:58 Slot Id : <492> +21:05:58 Transaction Type : REQUEST +21:05:58 Received From : +21:05:58 ============================================================================ +21:05:58 FNo. Len. Field Value +21:05:58 ============================================================================ +21:05:58 [ 1] [ 4] [0800] +21:05:58 [ 7] [ 10] [0320020506] +21:05:58 [ 11] [ 6] [158384] +21:05:58 [ 70] [ 3] [301] +21:05:58 ============================================================================ +21:05:58 + + +waiting on router queue for slot.... +21:05:58 Sending to : +21:05:58 ============================================================================ +21:05:58 ============================================================================ +21:05:58 Slot Id : <492> +21:05:58 Transaction Type : RESPONSE +21:05:58 Received From : +21:05:58 ============================================================================ +21:05:58 FNo. Len. Field Value +21:05:58 ============================================================================ +21:05:58 [ 1] [ 4] [0810] +21:05:58 [ 7] [ 10] [0320020506] +21:05:58 [ 11] [ 6] [158384] +21:05:58 [ 39] [ 2] [00] +21:05:58 [ 70] [ 3] [301] +21:05:58 ============================================================================ +21:05:58 Calculate Source COMM Id = 2 +21:05:58 ============================================================================ +21:05:58 + + +waiting on router queue for slot.... +21:06:13 ============================================================================ +21:06:13 Slot Id : <16> +21:06:13 Transaction Type : REQUEST +21:06:13 Received From : +21:06:13 ============================================================================ +21:06:13 FNo. Len. Field Value +21:06:13 ============================================================================ +21:06:13 [ 1] [ 4] [0800] +21:06:13 [ 7] [ 10] [0320020521] +21:06:13 [ 11] [ 6] [158385] +21:06:13 [ 70] [ 3] [301] +21:06:13 ============================================================================ +21:06:13 + + +waiting on router queue for slot.... +21:06:13 Sending to : +21:06:13 ============================================================================ +21:06:13 ============================================================================ +21:06:13 Slot Id : <16> +21:06:13 Transaction Type : RESPONSE +21:06:13 Received From : +21:06:13 ============================================================================ +21:06:13 FNo. Len. Field Value +21:06:13 ============================================================================ +21:06:13 [ 1] [ 4] [0810] +21:06:13 [ 7] [ 10] [0320020521] +21:06:13 [ 11] [ 6] [158385] +21:06:13 [ 39] [ 2] [00] +21:06:13 [ 70] [ 3] [301] +21:06:13 ============================================================================ +21:06:13 Calculate Source COMM Id = 2 +21:06:13 ============================================================================ +21:06:13 + + +waiting on router queue for slot.... +21:06:20 ============================================================================ +21:06:20 Slot Id : <13> +21:06:20 Transaction Type : REQUEST +21:06:20 Received From : +21:06:20 ============================================================================ +21:06:20 FNo. Len. Field Value +21:06:20 ============================================================================ +21:06:20 [ 1] [ 4] [0800] +21:06:20 [ 7] [ 10] [0320140412] +21:06:20 [ 11] [ 6] [013891] +21:06:20 [ 37] [ 12] [57921013891] +21:06:20 [ 70] [ 3] [301] +21:06:20 ============================================================================ +21:06:20 + + +waiting on router queue for slot.... +21:06:20 Sending to : +21:06:20 ============================================================================ +21:06:20 ============================================================================ +21:06:20 Slot Id : <13> +21:06:20 Transaction Type : RESPONSE +21:06:20 Received From : +21:06:20 ============================================================================ +21:06:20 FNo. Len. Field Value +21:06:20 ============================================================================ +21:06:20 [ 1] [ 4] [0810] +21:06:20 [ 7] [ 10] [0320140412] +21:06:20 [ 11] [ 6] [013891] +21:06:20 [ 37] [ 12] [579210138910] +21:06:20 [ 39] [ 2] [00] +21:06:20 [ 70] [ 3] [810] +21:06:20 ============================================================================ +21:06:20 Calculate Source COMM Id = 4 +21:06:20 ============================================================================ +21:06:20 + + +waiting on router queue for slot.... +21:06:28 ============================================================================ +21:06:28 Slot Id : <454> +21:06:28 Transaction Type : REQUEST +21:06:28 Received From : +21:06:28 ============================================================================ +21:06:28 FNo. Len. Field Value +21:06:28 ============================================================================ +21:06:28 [ 1] [ 4] [0800] +21:06:28 [ 7] [ 10] [0320020536] +21:06:28 [ 11] [ 6] [158386] +21:06:28 [ 70] [ 3] [301] +21:06:28 ============================================================================ +21:06:28 + + +waiting on router queue for slot.... +21:06:28 Sending to : +21:06:28 ============================================================================ +21:06:28 ============================================================================ +21:06:28 Slot Id : <454> +21:06:28 Transaction Type : RESPONSE +21:06:28 Received From : +21:06:28 ============================================================================ +21:06:28 FNo. Len. Field Value +21:06:28 ============================================================================ +21:06:28 [ 1] [ 4] [0810] +21:06:28 [ 7] [ 10] [0320020536] +21:06:28 [ 11] [ 6] [158386] +21:06:28 [ 39] [ 2] [00] +21:06:28 [ 70] [ 3] [301] +21:06:28 ============================================================================ +21:06:28 Calculate Source COMM Id = 2 +21:06:28 ============================================================================ +21:06:28 + + +waiting on router queue for slot.... +21:06:30 ============================================================================ +21:06:30 Slot Id : <469> +21:06:30 Transaction Type : REQUEST +21:06:30 Received From : +21:06:30 ============================================================================ +21:06:30 FNo. Len. Field Value +21:06:30 ============================================================================ +21:06:30 [ 1] [ 4] [0800] +21:06:30 [ 2] [ 5] [02531] +21:06:30 [ 3] [ 6] [579218] +21:06:30 [ 7] [ 10] [0320140630] +21:06:30 [ 11] [ 6] [807637] +21:06:30 [ 15] [ 10] [0320140630] +21:06:30 [ 37] [ 11] [57921807637] +21:06:30 [ 70] [ 3] [001] +21:06:30 ============================================================================ +21:06:30 + + +waiting on router queue for slot.... +21:06:30 ============================================================================ +21:06:30 Slot Id : <469> +21:06:30 Transaction Type : RESPONSE +21:06:30 Received From : +21:06:30 ============================================================================ +21:06:30 FNo. Len. Field Value +21:06:30 ============================================================================ +21:06:30 [ 1] [ 4] [0810] +21:06:30 [ 7] [ 10] [0320140630] +21:06:30 [ 11] [ 6] [807637] +21:06:30 [ 15] [ 4] [0320] +21:06:30 [ 37] [ 12] [57921807637] +21:06:30 [ 39] [ 2] [00] +21:06:30 [ 70] [ 3] [001] +21:06:30 ============================================================================ +21:06:30 Sending to : +21:06:30 ============================================================================ +21:06:30 + + +waiting on router queue for slot.... +21:06:34 ============================================================================ +21:06:34 Slot Id : <12> +21:06:34 Transaction Type : REQUEST +21:06:34 Received From : +21:06:34 ============================================================================ +21:06:34 FNo. Len. Field Value +21:06:34 ============================================================================ +21:06:34 [ 1] [ 4] [0200] +21:06:34 [ 2] [ 16] [6688990040158345] +21:06:34 [ 3] [ 6] [011000] +21:06:34 [ 4] [ 12] [000007000000] +21:06:34 [ 7] [ 10] [0320210630] +21:06:34 [ 11] [ 6] [845225] +21:06:34 [ 12] [ 6] [210630] +21:06:34 [ 13] [ 4] [0320] +21:06:34 [ 15] [ 4] [0320] +21:06:34 [ 18] [ 4] [6011] +21:06:34 [ 22] [ 3] [900] +21:06:34 [ 25] [ 2] [02] +21:06:34 [ 28] [ 9] [D00002000] +21:06:34 [ 32] [ 6] [621354] +21:06:34 [ 35] [ 37] [6688990040158345=98051261601160500000] +21:06:34 [ 37] [ 12] [507903863879] +21:06:34 [ 41] [ 8] [01010200] +21:06:34 [ 42] [ 15] [NATIVE ] +21:06:34 [ 43] [ 40] [Thangone Market Xaythany LAO] +21:06:34 [ 49] [ 3] [418] +21:06:34 [ 52] [ 16] [7E34E2CC0FF17F43] +21:06:34 ============================================================================ +21:06:34 + + +waiting on router queue for slot.... +21:06:34 Sending to : +21:06:34 ============================================================================ +21:06:34 Sending to : +21:06:34 ============================================================================ +21:06:34 ============================================================================ +21:06:34 Slot Id : <12> +21:06:34 Transaction Type : REQUEST +21:06:34 Received From : +21:06:34 ============================================================================ +21:06:34 FNo. Len. Field Value +21:06:34 ============================================================================ +21:06:34 [ 1] [ 4] [0200] +21:06:34 [ 2] [ 16] [6688990040158345] +21:06:34 [ 3] [ 6] [011000] +21:06:34 [ 4] [ 12] [000007000000] +21:06:34 [ 7] [ 10] [0320210630] +21:06:34 [ 11] [ 6] [845225] +21:06:34 [ 12] [ 6] [210630] +21:06:34 [ 13] [ 4] [0320] +21:06:34 [ 15] [ 4] [0320] +21:06:34 [ 18] [ 4] [6011] +21:06:34 [ 22] [ 3] [900] +21:06:34 [ 25] [ 2] [02] +21:06:34 [ 28] [ 9] [D00002000] +21:06:34 [ 32] [ 6] [621354] +21:06:34 [ 35] [ 37] [6688990040158345=98051261601160500000] +21:06:34 [ 37] [ 12] [507903863879] +21:06:34 [ 41] [ 8] [01010200] +21:06:34 [ 42] [ 15] [NATIVE ] +21:06:34 [ 43] [ 40] [Thangone Market Xaythany LAO] +21:06:34 [ 49] [ 3] [418] +21:06:34 [ 52] [ 16] [7E34E2CC0FF17F43] +21:06:34 ============================================================================ +21:06:34 + + +waiting on router queue for slot.... +21:06:34 Sending to : +21:06:34 ============================================================================ +21:06:34 ============================================================================ +21:06:34 Slot Id : <12> +21:06:34 Transaction Type : REQUEST +21:06:34 Received From : +21:06:34 ============================================================================ +21:06:34 FNo. Len. Field Value +21:06:34 ============================================================================ +21:06:34 [ 1] [ 4] [0200] +21:06:34 [ 2] [ 16] [6688990040158345] +21:06:34 [ 3] [ 6] [011000] +21:06:34 [ 4] [ 12] [000007000000] +21:06:34 [ 7] [ 10] [0320210630] +21:06:34 [ 11] [ 6] [845225] +21:06:34 [ 12] [ 6] [210630] +21:06:34 [ 13] [ 4] [0320] +21:06:34 [ 15] [ 4] [0320] +21:06:34 [ 18] [ 4] [6011] +21:06:34 [ 22] [ 3] [900] +21:06:34 [ 25] [ 2] [02] +21:06:34 [ 28] [ 9] [D00002000] +21:06:34 [ 32] [ 6] [621354] +21:06:34 [ 35] [ 37] [6688990040158345=98051261601160500000] +21:06:34 [ 37] [ 12] [507903863879] +21:06:34 [ 41] [ 8] [01010200] +21:06:34 [ 42] [ 15] [NATIVE ] +21:06:34 [ 43] [ 40] [Thangone Market Xaythany LAO] +21:06:34 [ 49] [ 3] [418] +21:06:34 [ 52] [ 16] [63CC3ABEC0539BDB] +21:06:34 ============================================================================ +21:06:34 + + +waiting on router queue for slot.... +21:06:34 Sending to : <4> +21:06:34 ============================================================================ +21:06:35 ============================================================================ +21:06:35 Slot Id : <12> +21:06:35 Transaction Type : RESPONSE +21:06:35 Received From : +21:06:35 ============================================================================ +21:06:35 FNo. Len. Field Value +21:06:35 ============================================================================ +21:06:35 [ 1] [ 4] [0210] +21:06:35 [ 2] [ 16] [6688990040158345] +21:06:35 [ 3] [ 6] [011000] +21:06:35 [ 4] [ 12] [000007000000] +21:06:35 [ 11] [ 6] [845225] +21:06:35 [ 12] [ 6] [210630] +21:06:35 [ 15] [ 4] [0320] +21:06:35 [ 18] [ 4] [6011] +21:06:35 [ 32] [ 6] [621354] +21:06:35 [ 35] [ 37] [6688990040158345=98051261601160500000] +21:06:35 [ 37] [ 12] [507903863879] +21:06:35 [ 38] [ 6] [752659] +21:06:35 [ 39] [ 2] [00] +21:06:35 [ 41] [ 8] [01010200] +21:06:35 [ 49] [ 3] [418] +21:06:35 [ 54] [ 20] [1002418C000016800000] +21:06:35 ============================================================================ +21:06:35 Sending to : +21:06:35 ============================================================================ +21:06:35 + + +waiting on router queue for slot.... +21:06:36 ============================================================================ +21:06:36 Slot Id : <494> +21:06:36 Transaction Type : REQUEST +21:06:36 Received From : +21:06:36 ============================================================================ +21:06:36 FNo. Len. Field Value +21:06:36 ============================================================================ +21:06:36 [ 1] [ 4] [0800] +21:06:36 [ 7] [ 10] [0321041826] +21:06:36 [ 11] [ 6] [211826] +21:06:36 [ 37] [ 12] [57921211826] +21:06:36 [ 70] [ 3] [301] +21:06:36 ============================================================================ +21:06:36 + + +waiting on router queue for slot.... +21:06:36 Sending to : +21:06:36 ============================================================================ +21:06:36 ============================================================================ +21:06:36 Slot Id : <494> +21:06:36 Transaction Type : RESPONSE +21:06:36 Received From : +21:06:36 ============================================================================ +21:06:36 FNo. Len. Field Value +21:06:36 ============================================================================ +21:06:36 [ 1] [ 4] [0810] +21:06:36 [ 7] [ 10] [0321041826] +21:06:36 [ 11] [ 6] [211826] +21:06:36 [ 37] [ 12] [579212118260] +21:06:36 [ 39] [ 2] [00] +21:06:36 [ 70] [ 3] [810] +21:06:36 ============================================================================ +21:06:36 Calculate Source COMM Id = 6 +21:06:36 ============================================================================ +21:06:36 + + +waiting on router queue for slot.... +21:06:37 ============================================================================ +21:06:37 Slot Id : <12> +21:06:37 Transaction Type : RESPONSE +21:06:37 Received From : +21:06:37 ============================================================================ +21:06:37 FNo. Len. Field Value +21:06:37 ============================================================================ +21:06:37 [ 1] [ 4] [0210] +21:06:37 [ 2] [ 16] [6688990040158345] +21:06:37 [ 3] [ 6] [011000] +21:06:37 [ 4] [ 12] [000007000000] +21:06:37 [ 11] [ 6] [845225] +21:06:37 [ 12] [ 6] [210630] +21:06:37 [ 15] [ 4] [0320] +21:06:37 [ 18] [ 4] [6011] +21:06:37 [ 32] [ 6] [621354] +21:06:37 [ 35] [ 37] [6688990040158345=98051261601160500000] +21:06:37 [ 37] [ 12] [507903863879] +21:06:37 [ 38] [ 6] [752659] +21:06:37 [ 39] [ 2] [00] +21:06:37 [ 41] [ 8] [01010200] +21:06:37 [ 49] [ 3] [418] +21:06:37 [ 54] [ 20] [1002418C000016800000] +21:06:37 ============================================================================ +21:06:37 Calculate Source COMM Id = 0 +21:06:37 ============================================================================ +21:06:37 + + +waiting on router queue for slot.... +21:06:43 ============================================================================ +21:06:43 Slot Id : <491> +21:06:43 Transaction Type : REQUEST +21:06:43 Received From : +21:06:43 ============================================================================ +21:06:43 FNo. Len. Field Value +21:06:43 ============================================================================ +21:06:43 [ 1] [ 4] [0800] +21:06:43 [ 7] [ 10] [0320020551] +21:06:43 [ 11] [ 6] [158387] +21:06:43 [ 70] [ 3] [301] +21:06:43 ============================================================================ +21:06:43 + + +waiting on router queue for slot.... +21:06:43 Sending to : +21:06:43 ============================================================================ +21:06:43 ============================================================================ +21:06:43 Slot Id : <491> +21:06:43 Transaction Type : RESPONSE +21:06:43 Received From : +21:06:43 ============================================================================ +21:06:43 FNo. Len. Field Value +21:06:43 ============================================================================ +21:06:43 [ 1] [ 4] [0810] +21:06:43 [ 7] [ 10] [0320020551] +21:06:43 [ 11] [ 6] [158387] +21:06:43 [ 39] [ 2] [00] +21:06:43 [ 70] [ 3] [301] +21:06:43 ============================================================================ +21:06:43 Calculate Source COMM Id = 2 +21:06:43 ============================================================================ +21:06:43 + + +waiting on router queue for slot.... +21:06:50 ============================================================================ +21:06:50 Slot Id : <22> +21:06:50 Transaction Type : REQUEST +21:06:50 Received From : +21:06:50 ============================================================================ +21:06:50 FNo. Len. Field Value +21:06:50 ============================================================================ +21:06:50 [ 1] [ 4] [0800] +21:06:50 [ 7] [ 10] [0320210638] +21:06:50 [ 11] [ 6] [088789] +21:06:50 [ 37] [ 12] [507921088789] +21:06:50 [ 70] [ 3] [ ] +21:06:50 ============================================================================ +21:06:50 + + +waiting on router queue for slot.... +21:06:50 Sending to : +21:06:50 ============================================================================ +21:06:50 ============================================================================ +21:06:50 Slot Id : <22> +21:06:50 Transaction Type : RESPONSE +21:06:50 Received From : +21:06:50 ============================================================================ +21:06:50 FNo. Len. Field Value +21:06:50 ============================================================================ +21:06:50 [ 1] [ 4] [0810] +21:06:50 [ 7] [ 10] [0320210638] +21:06:50 [ 11] [ 6] [088789] +21:06:50 [ 37] [ 12] [507921088789] +21:06:50 [ 39] [ 2] [91] +21:06:50 [ 70] [ 3] [ ] +21:06:50 ============================================================================ +21:06:50 Calculate Source COMM Id = 3 +21:06:50 ============================================================================ +21:06:50 + + +waiting on router queue for slot.... +21:06:58 ============================================================================ +21:06:58 Slot Id : <17> +21:06:58 Transaction Type : REQUEST +21:06:58 Received From : +21:06:58 ============================================================================ +21:06:58 FNo. Len. Field Value +21:06:58 ============================================================================ +21:06:58 [ 1] [ 4] [0800] +21:06:58 [ 7] [ 10] [0320020606] +21:06:58 [ 11] [ 6] [158388] +21:06:58 [ 70] [ 3] [301] +21:06:58 ============================================================================ +21:06:58 + + +waiting on router queue for slot.... +21:06:58 Sending to : +21:06:58 ============================================================================ +21:06:58 ============================================================================ +21:06:58 Slot Id : <17> +21:06:58 Transaction Type : RESPONSE +21:06:58 Received From : +21:06:58 ============================================================================ +21:06:58 FNo. Len. Field Value +21:06:58 ============================================================================ +21:06:58 [ 1] [ 4] [0810] +21:06:58 [ 7] [ 10] [0320020606] +21:06:58 [ 11] [ 6] [158388] +21:06:58 [ 39] [ 2] [00] +21:06:58 [ 70] [ 3] [301] +21:06:58 ============================================================================ +21:06:58 Calculate Source COMM Id = 2 +21:06:58 ============================================================================ +21:06:58 + + +waiting on router queue for slot.... +21:07:08 ============================================================================ +21:07:08 Slot Id : <29> +21:07:08 Transaction Type : REQUEST +21:07:08 Received From : +21:07:08 ============================================================================ +21:07:08 FNo. Len. Field Value +21:07:08 ============================================================================ +21:07:08 [ 1] [ 4] [0800] +21:07:08 [ 7] [ 10] [0320020616] +21:07:08 [ 11] [ 6] [158389] +21:07:08 [ 70] [ 3] [301] +21:07:08 ============================================================================ +21:07:08 + + +waiting on router queue for slot.... +21:07:08 Sending to : +21:07:08 ============================================================================ +21:07:08 ============================================================================ +21:07:08 Slot Id : <29> +21:07:08 Transaction Type : RESPONSE +21:07:08 Received From : +21:07:08 ============================================================================ +21:07:08 FNo. Len. Field Value +21:07:08 ============================================================================ +21:07:08 [ 1] [ 4] [0810] +21:07:08 [ 7] [ 10] [0320020616] +21:07:08 [ 11] [ 6] [158389] +21:07:08 [ 39] [ 2] [00] +21:07:08 [ 70] [ 3] [301] +21:07:08 ============================================================================ +21:07:08 Calculate Source COMM Id = 2 +21:07:08 ============================================================================ +21:07:08 + + +waiting on router queue for slot.... +21:07:19 ============================================================================ +21:07:19 Slot Id : <10> +21:07:19 Transaction Type : REQUEST +21:07:19 Received From : +21:07:19 ============================================================================ +21:07:19 FNo. Len. Field Value +21:07:19 ============================================================================ +21:07:19 [ 1] [ 4] [0800] +21:07:19 [ 7] [ 10] [0320020627] +21:07:19 [ 11] [ 6] [158390] +21:07:19 [ 70] [ 3] [301] +21:07:19 ============================================================================ +21:07:19 + + +waiting on router queue for slot.... +21:07:19 Sending to : +21:07:19 ============================================================================ +21:07:19 ============================================================================ +21:07:19 Slot Id : <10> +21:07:19 Transaction Type : RESPONSE +21:07:19 Received From : +21:07:19 ============================================================================ +21:07:19 FNo. Len. Field Value +21:07:19 ============================================================================ +21:07:19 [ 1] [ 4] [0810] +21:07:19 [ 7] [ 10] [0320020627] +21:07:19 [ 11] [ 6] [158390] +21:07:19 [ 39] [ 2] [00] +21:07:19 [ 70] [ 3] [301] +21:07:19 ============================================================================ +21:07:19 Calculate Source COMM Id = 2 +21:07:19 ============================================================================ +21:07:19 + + +waiting on router queue for slot.... +21:07:32 ============================================================================ +21:07:32 Slot Id : <23> +21:07:32 Transaction Type : REQUEST +21:07:32 Received From : +21:07:32 ============================================================================ +21:07:32 FNo. Len. Field Value +21:07:32 ============================================================================ +21:07:32 [ 1] [ 4] [0800] +21:07:32 [ 2] [ 5] [02531] +21:07:32 [ 3] [ 6] [579218] +21:07:32 [ 7] [ 10] [0320140732] +21:07:32 [ 11] [ 6] [807638] +21:07:32 [ 15] [ 10] [0320140732] +21:07:32 [ 37] [ 11] [57921807638] +21:07:32 [ 70] [ 3] [001] +21:07:32 ============================================================================ +21:07:32 + + +waiting on router queue for slot.... +21:07:32 ============================================================================ +21:07:32 Slot Id : <23> +21:07:32 Transaction Type : RESPONSE +21:07:32 Received From : +21:07:32 ============================================================================ +21:07:32 FNo. Len. Field Value +21:07:32 ============================================================================ +21:07:32 [ 1] [ 4] [0810] +21:07:32 [ 7] [ 10] [0320140732] +21:07:32 [ 11] [ 6] [807638] +21:07:32 [ 15] [ 4] [0320] +21:07:32 [ 37] [ 12] [57921807638] +21:07:32 [ 39] [ 2] [00] +21:07:32 [ 70] [ 3] [001] +21:07:32 ============================================================================ +21:07:32 Sending to : +21:07:32 ============================================================================ +21:07:32 + + +waiting on router queue for slot.... +21:07:35 ============================================================================ +21:07:35 Slot Id : <499> +21:07:35 Transaction Type : REQUEST +21:07:35 Received From : +21:07:35 ============================================================================ +21:07:35 FNo. Len. Field Value +21:07:35 ============================================================================ +21:07:35 [ 1] [ 4] [0800] +21:07:35 [ 7] [ 10] [0320020644] +21:07:35 [ 11] [ 6] [158391] +21:07:35 [ 70] [ 3] [301] +21:07:35 ============================================================================ +21:07:35 + + +waiting on router queue for slot.... +21:07:35 Sending to : +21:07:35 ============================================================================ +21:07:35 ============================================================================ +21:07:35 Slot Id : <499> +21:07:35 Transaction Type : RESPONSE +21:07:35 Received From : +21:07:35 ============================================================================ +21:07:35 FNo. Len. Field Value +21:07:35 ============================================================================ +21:07:35 [ 1] [ 4] [0810] +21:07:35 [ 7] [ 10] [0320020644] +21:07:35 [ 11] [ 6] [158391] +21:07:35 [ 39] [ 2] [00] +21:07:35 [ 70] [ 3] [301] +21:07:35 ============================================================================ +21:07:35 Calculate Source COMM Id = 2 +21:07:35 ============================================================================ +21:07:35 + + +waiting on router queue for slot.... +21:07:41 ============================================================================ +21:07:41 Slot Id : <481> +21:07:41 Transaction Type : REQUEST +21:07:41 Received From : +21:07:41 ============================================================================ +21:07:41 FNo. Len. Field Value +21:07:41 ============================================================================ +21:07:41 [ 1] [ 4] [0800] +21:07:41 [ 7] [ 10] [0321041931] +21:07:41 [ 11] [ 6] [211931] +21:07:41 [ 37] [ 12] [57921211931] +21:07:41 [ 70] [ 3] [301] +21:07:41 ============================================================================ +21:07:41 + + +waiting on router queue for slot.... +21:07:41 Sending to : +21:07:41 ============================================================================ +21:07:41 ============================================================================ +21:07:41 Slot Id : <481> +21:07:41 Transaction Type : RESPONSE +21:07:41 Received From : +21:07:41 ============================================================================ +21:07:41 FNo. Len. Field Value +21:07:41 ============================================================================ +21:07:41 [ 1] [ 4] [0810] +21:07:41 [ 7] [ 10] [0321041931] +21:07:41 [ 11] [ 6] [211931] +21:07:41 [ 37] [ 12] [579212119310] +21:07:41 [ 39] [ 2] [00] +21:07:41 [ 70] [ 3] [810] +21:07:41 ============================================================================ +21:07:41 Calculate Source COMM Id = 6 +21:07:41 ============================================================================ +21:07:41 + + +waiting on router queue for slot.... +21:07:51 ============================================================================ +21:07:51 Slot Id : <31> +21:07:51 Transaction Type : REQUEST +21:07:51 Received From : +21:07:51 ============================================================================ +21:07:51 FNo. Len. Field Value +21:07:51 ============================================================================ +21:07:51 [ 1] [ 4] [0800] +21:07:51 [ 7] [ 10] [0320020659] +21:07:51 [ 11] [ 6] [158392] +21:07:51 [ 70] [ 3] [301] +21:07:51 ============================================================================ +21:07:51 + + +waiting on router queue for slot.... +21:07:51 Sending to : +21:07:51 ============================================================================ +21:07:51 ============================================================================ +21:07:51 Slot Id : <31> +21:07:51 Transaction Type : RESPONSE +21:07:51 Received From : +21:07:51 ============================================================================ +21:07:51 FNo. Len. Field Value +21:07:51 ============================================================================ +21:07:51 [ 1] [ 4] [0810] +21:07:51 [ 7] [ 10] [0320020659] +21:07:51 [ 11] [ 6] [158392] +21:07:51 [ 39] [ 2] [00] +21:07:51 [ 70] [ 3] [301] +21:07:51 ============================================================================ +21:07:51 Calculate Source COMM Id = 2 +21:07:51 ============================================================================ +21:07:51 + + +waiting on router queue for slot.... +21:08:02 ============================================================================ +21:08:02 Slot Id : <35> +21:08:02 Transaction Type : REQUEST +21:08:02 Received From : +21:08:02 ============================================================================ +21:08:02 FNo. Len. Field Value +21:08:02 ============================================================================ +21:08:02 [ 1] [ 4] [0800] +21:08:02 [ 7] [ 10] [0320020710] +21:08:02 [ 11] [ 6] [158393] +21:08:02 [ 70] [ 3] [301] +21:08:02 ============================================================================ +21:08:02 + + +waiting on router queue for slot.... +21:08:02 Sending to : +21:08:02 ============================================================================ +21:08:02 ============================================================================ +21:08:02 Slot Id : <35> +21:08:02 Transaction Type : RESPONSE +21:08:02 Received From : +21:08:02 ============================================================================ +21:08:02 FNo. Len. Field Value +21:08:02 ============================================================================ +21:08:02 [ 1] [ 4] [0810] +21:08:02 [ 7] [ 10] [0320020710] +21:08:02 [ 11] [ 6] [158393] +21:08:02 [ 39] [ 2] [00] +21:08:02 [ 70] [ 3] [301] +21:08:02 ============================================================================ +21:08:02 Calculate Source COMM Id = 2 +21:08:02 ============================================================================ +21:08:02 + + +waiting on router queue for slot.... +21:08:13 ============================================================================ +21:08:13 Slot Id : <3> +21:08:13 Transaction Type : REQUEST +21:08:13 Received From : +21:08:13 ============================================================================ +21:08:13 FNo. Len. Field Value +21:08:13 ============================================================================ +21:08:13 [ 1] [ 4] [0800] +21:08:13 [ 7] [ 10] [0320020721] +21:08:13 [ 11] [ 6] [158394] +21:08:13 [ 70] [ 3] [301] +21:08:13 ============================================================================ +21:08:13 + + +waiting on router queue for slot.... +21:08:13 Sending to : +21:08:13 ============================================================================ +21:08:13 ============================================================================ +21:08:13 Slot Id : <3> +21:08:13 Transaction Type : RESPONSE +21:08:13 Received From : +21:08:13 ============================================================================ +21:08:13 FNo. Len. Field Value +21:08:13 ============================================================================ +21:08:13 [ 1] [ 4] [0810] +21:08:13 [ 7] [ 10] [0320020721] +21:08:13 [ 11] [ 6] [158394] +21:08:13 [ 39] [ 2] [00] +21:08:13 [ 70] [ 3] [301] +21:08:13 ============================================================================ +21:08:13 Calculate Source COMM Id = 2 +21:08:13 ============================================================================ +21:08:13 + + +waiting on router queue for slot.... +21:08:24 ============================================================================ +21:08:24 Slot Id : <33> +21:08:24 Transaction Type : REQUEST +21:08:24 Received From : +21:08:24 ============================================================================ +21:08:24 FNo. Len. Field Value +21:08:24 ============================================================================ +21:08:24 [ 1] [ 4] [0800] +21:08:24 [ 7] [ 10] [0320020732] +21:08:24 [ 11] [ 6] [158395] +21:08:24 [ 70] [ 3] [301] +21:08:24 ============================================================================ +21:08:24 + + +waiting on router queue for slot.... +21:08:24 Sending to : +21:08:24 ============================================================================ +21:08:24 ============================================================================ +21:08:24 Slot Id : <33> +21:08:24 Transaction Type : RESPONSE +21:08:24 Received From : +21:08:24 ============================================================================ +21:08:24 FNo. Len. Field Value +21:08:24 ============================================================================ +21:08:24 [ 1] [ 4] [0810] +21:08:24 [ 7] [ 10] [0320020732] +21:08:24 [ 11] [ 6] [158395] +21:08:24 [ 39] [ 2] [00] +21:08:24 [ 70] [ 3] [301] +21:08:24 ============================================================================ +21:08:24 Calculate Source COMM Id = 2 +21:08:24 ============================================================================ +21:08:24 + + +waiting on router queue for slot.... +21:08:34 ============================================================================ +21:08:34 Slot Id : <496> +21:08:34 Transaction Type : REQUEST +21:08:34 Received From : +21:08:34 ============================================================================ +21:08:34 FNo. Len. Field Value +21:08:34 ============================================================================ +21:08:34 [ 1] [ 4] [0800] +21:08:34 [ 2] [ 5] [02531] +21:08:34 [ 3] [ 6] [579218] +21:08:34 [ 7] [ 10] [0320140834] +21:08:34 [ 11] [ 6] [807639] +21:08:34 [ 15] [ 10] [0320140834] +21:08:34 [ 37] [ 11] [57921807639] +21:08:34 [ 70] [ 3] [001] +21:08:34 ============================================================================ +21:08:34 + + +waiting on router queue for slot.... +21:08:34 ============================================================================ +21:08:34 Slot Id : <496> +21:08:34 Transaction Type : RESPONSE +21:08:34 Received From : +21:08:34 ============================================================================ +21:08:34 FNo. Len. Field Value +21:08:34 ============================================================================ +21:08:34 [ 1] [ 4] [0810] +21:08:34 [ 7] [ 10] [0320140834] +21:08:34 [ 11] [ 6] [807639] +21:08:34 [ 15] [ 4] [0320] +21:08:34 [ 37] [ 12] [57921807639] +21:08:34 [ 39] [ 2] [00] +21:08:34 [ 70] [ 3] [001] +21:08:34 ============================================================================ +21:08:34 Sending to : +21:08:34 ============================================================================ +21:08:34 + + +waiting on router queue for slot.... +21:08:35 ============================================================================ +21:08:35 Slot Id : <21> +21:08:35 Transaction Type : REQUEST +21:08:35 Received From : +21:08:35 ============================================================================ +21:08:35 FNo. Len. Field Value +21:08:35 ============================================================================ +21:08:35 [ 1] [ 4] [0800] +21:08:35 [ 7] [ 10] [0320020743] +21:08:35 [ 11] [ 6] [158396] +21:08:35 [ 70] [ 3] [301] +21:08:35 ============================================================================ +21:08:35 + + +waiting on router queue for slot.... +21:08:35 Sending to : +21:08:35 ============================================================================ +21:08:35 ============================================================================ +21:08:35 Slot Id : <21> +21:08:35 Transaction Type : RESPONSE +21:08:35 Received From : +21:08:35 ============================================================================ +21:08:35 FNo. Len. Field Value +21:08:35 ============================================================================ +21:08:35 [ 1] [ 4] [0810] +21:08:35 [ 7] [ 10] [0320020743] +21:08:35 [ 11] [ 6] [158396] +21:08:35 [ 39] [ 2] [00] +21:08:35 [ 70] [ 3] [301] +21:08:35 ============================================================================ +21:08:35 Calculate Source COMM Id = 2 +21:08:35 ============================================================================ +21:08:35 + + +waiting on router queue for slot.... +21:08:45 ============================================================================ +21:08:45 Slot Id : <11> +21:08:45 Transaction Type : REQUEST +21:08:45 Received From : +21:08:45 ============================================================================ +21:08:45 FNo. Len. Field Value +21:08:45 ============================================================================ +21:08:45 [ 1] [ 4] [0800] +21:08:45 [ 7] [ 10] [0320020753] +21:08:45 [ 11] [ 6] [158397] +21:08:45 [ 70] [ 3] [301] +21:08:45 ============================================================================ +21:08:45 + + +waiting on router queue for slot.... +21:08:45 Sending to : +21:08:45 ============================================================================ +21:08:45 ============================================================================ +21:08:45 Slot Id : <11> +21:08:45 Transaction Type : RESPONSE +21:08:45 Received From : +21:08:45 ============================================================================ +21:08:45 FNo. Len. Field Value +21:08:45 ============================================================================ +21:08:45 [ 1] [ 4] [0810] +21:08:45 [ 7] [ 10] [0320020753] +21:08:45 [ 11] [ 6] [158397] +21:08:45 [ 39] [ 2] [00] +21:08:45 [ 70] [ 3] [301] +21:08:45 ============================================================================ +21:08:45 Calculate Source COMM Id = 2 +21:08:45 ============================================================================ +21:08:45 + + +waiting on router queue for slot.... +21:08:46 ============================================================================ +21:08:46 Slot Id : <9> +21:08:46 Transaction Type : REQUEST +21:08:46 Received From : +21:08:46 ============================================================================ +21:08:46 FNo. Len. Field Value +21:08:46 ============================================================================ +21:08:46 [ 1] [ 4] [0800] +21:08:46 [ 7] [ 10] [0321042037] +21:08:46 [ 11] [ 6] [212037] +21:08:46 [ 37] [ 12] [57921212037] +21:08:46 [ 70] [ 3] [301] +21:08:46 ============================================================================ +21:08:46 + + +waiting on router queue for slot.... +21:08:46 Sending to : +21:08:46 ============================================================================ +21:08:46 ============================================================================ +21:08:46 Slot Id : <9> +21:08:46 Transaction Type : RESPONSE +21:08:46 Received From : +21:08:46 ============================================================================ +21:08:46 FNo. Len. Field Value +21:08:46 ============================================================================ +21:08:46 [ 1] [ 4] [0810] +21:08:46 [ 7] [ 10] [0321042037] +21:08:46 [ 11] [ 6] [212037] +21:08:46 [ 37] [ 12] [579212120370] +21:08:46 [ 39] [ 2] [00] +21:08:46 [ 70] [ 3] [810] +21:08:46 ============================================================================ +21:08:46 Calculate Source COMM Id = 6 +21:08:46 ============================================================================ +21:08:46 + + +waiting on router queue for slot.... +21:08:55 ============================================================================ +21:08:55 Slot Id : <30> +21:08:55 Transaction Type : REQUEST +21:08:55 Received From : +21:08:55 ============================================================================ +21:08:55 FNo. Len. Field Value +21:08:55 ============================================================================ +21:08:55 [ 1] [ 4] [0800] +21:08:55 [ 7] [ 10] [0320020804] +21:08:55 [ 11] [ 6] [158398] +21:08:55 [ 70] [ 3] [301] +21:08:55 ============================================================================ +21:08:55 + + +waiting on router queue for slot.... +21:08:55 Sending to : +21:08:55 ============================================================================ +21:08:55 ============================================================================ +21:08:55 Slot Id : <30> +21:08:55 Transaction Type : RESPONSE +21:08:55 Received From : +21:08:55 ============================================================================ +21:08:55 FNo. Len. Field Value +21:08:55 ============================================================================ +21:08:55 [ 1] [ 4] [0810] +21:08:55 [ 7] [ 10] [0320020804] +21:08:55 [ 11] [ 6] [158398] +21:08:55 [ 39] [ 2] [00] +21:08:55 [ 70] [ 3] [301] +21:08:55 ============================================================================ +21:08:55 Calculate Source COMM Id = 2 +21:08:55 ============================================================================ +21:08:55 + + +waiting on router queue for slot.... +21:09:06 ============================================================================ +21:09:06 Slot Id : <461> +21:09:06 Transaction Type : REQUEST +21:09:06 Received From : +21:09:06 ============================================================================ +21:09:06 FNo. Len. Field Value +21:09:06 ============================================================================ +21:09:06 [ 1] [ 4] [0800] +21:09:06 [ 7] [ 10] [0320020815] +21:09:06 [ 11] [ 6] [158399] +21:09:06 [ 70] [ 3] [301] +21:09:06 ============================================================================ +21:09:06 + + +waiting on router queue for slot.... +21:09:06 Sending to : +21:09:06 ============================================================================ +21:09:06 ============================================================================ +21:09:06 Slot Id : <461> +21:09:06 Transaction Type : RESPONSE +21:09:06 Received From : +21:09:06 ============================================================================ +21:09:06 FNo. Len. Field Value +21:09:06 ============================================================================ +21:09:06 [ 1] [ 4] [0810] +21:09:06 [ 7] [ 10] [0320020815] +21:09:06 [ 11] [ 6] [158399] +21:09:06 [ 39] [ 2] [00] +21:09:06 [ 70] [ 3] [301] +21:09:06 ============================================================================ +21:09:06 Calculate Source COMM Id = 2 +21:09:06 ============================================================================ +21:09:06 + + +waiting on router queue for slot.... +21:09:17 ============================================================================ +21:09:17 Slot Id : <45> +21:09:17 Transaction Type : REQUEST +21:09:17 Received From : +21:09:17 ============================================================================ +21:09:17 FNo. Len. Field Value +21:09:17 ============================================================================ +21:09:17 [ 1] [ 4] [0800] +21:09:17 [ 7] [ 10] [0320020826] +21:09:17 [ 11] [ 6] [158400] +21:09:17 [ 70] [ 3] [301] +21:09:17 ============================================================================ +21:09:17 + + +waiting on router queue for slot.... +21:09:17 Sending to : +21:09:17 ============================================================================ +21:09:17 ============================================================================ +21:09:17 Slot Id : <45> +21:09:17 Transaction Type : RESPONSE +21:09:17 Received From : +21:09:17 ============================================================================ +21:09:17 FNo. Len. Field Value +21:09:17 ============================================================================ +21:09:17 [ 1] [ 4] [0810] +21:09:17 [ 7] [ 10] [0320020826] +21:09:17 [ 11] [ 6] [158400] +21:09:17 [ 39] [ 2] [00] +21:09:17 [ 70] [ 3] [301] +21:09:17 ============================================================================ +21:09:17 Calculate Source COMM Id = 2 +21:09:17 ============================================================================ +21:09:17 + + +waiting on router queue for slot.... +21:09:27 ============================================================================ +21:09:27 Slot Id : <37> +21:09:27 Transaction Type : REQUEST +21:09:27 Received From : +21:09:27 ============================================================================ +21:09:27 FNo. Len. Field Value +21:09:27 ============================================================================ +21:09:27 [ 1] [ 4] [0800] +21:09:27 [ 7] [ 10] [0320020836] +21:09:27 [ 11] [ 6] [158401] +21:09:27 [ 70] [ 3] [301] +21:09:27 ============================================================================ +21:09:27 + + +waiting on router queue for slot.... +21:09:27 Sending to : +21:09:27 ============================================================================ +21:09:27 ============================================================================ +21:09:27 Slot Id : <37> +21:09:27 Transaction Type : RESPONSE +21:09:27 Received From : +21:09:27 ============================================================================ +21:09:27 FNo. Len. Field Value +21:09:27 ============================================================================ +21:09:27 [ 1] [ 4] [0810] +21:09:27 [ 7] [ 10] [0320020836] +21:09:27 [ 11] [ 6] [158401] +21:09:27 [ 39] [ 2] [00] +21:09:27 [ 70] [ 3] [301] +21:09:27 ============================================================================ +21:09:27 Calculate Source COMM Id = 2 +21:09:27 ============================================================================ +21:09:27 + + +waiting on router queue for slot.... +21:09:35 ============================================================================ +21:09:35 Slot Id : <36> +21:09:35 Transaction Type : REQUEST +21:09:35 Received From : +21:09:35 ============================================================================ +21:09:35 FNo. Len. Field Value +21:09:35 ============================================================================ +21:09:35 [ 1] [ 4] [0200] +21:09:35 [ 2] [ 16] [1808931300014477] +21:09:35 [ 3] [ 6] [010000] +21:09:35 [ 4] [ 12] [000004000000] +21:09:35 [ 7] [ 10] [0320210931] +21:09:35 [ 11] [ 6] [845390] +21:09:35 [ 12] [ 6] [210931] +21:09:35 [ 13] [ 4] [0320] +21:09:35 [ 15] [ 4] [0320] +21:09:35 [ 18] [ 4] [6011] +21:09:35 [ 22] [ 3] [900] +21:09:35 [ 25] [ 2] [02] +21:09:35 [ 28] [ 9] [D00002000] +21:09:35 [ 32] [ 6] [621354] +21:09:35 [ 35] [ 27] [1808931300014477=1803500839] +21:09:35 [ 37] [ 12] [507903455574] +21:09:35 [ 41] [ 8] [06001800] +21:09:35 [ 42] [ 15] [NATIVE ] +21:09:35 [ 43] [ 40] [Na Mor Unit Namore LAO] +21:09:35 [ 49] [ 3] [418] +21:09:35 [ 52] [ 16] [832C6D2416AFA269] +21:09:35 ============================================================================ +21:09:35 + + +waiting on router queue for slot.... +21:09:35 Sending to : +21:09:35 ============================================================================ +21:09:35 Sending to : +21:09:35 ============================================================================ +21:09:35 ============================================================================ +21:09:35 Slot Id : <36> +21:09:35 Transaction Type : REQUEST +21:09:35 Received From : +21:09:35 ============================================================================ +21:09:35 FNo. Len. Field Value +21:09:35 ============================================================================ +21:09:35 [ 1] [ 4] [0200] +21:09:35 [ 2] [ 16] [1808931300014477] +21:09:35 [ 3] [ 6] [010000] +21:09:35 [ 4] [ 12] [000004000000] +21:09:35 [ 7] [ 10] [0320210931] +21:09:35 [ 11] [ 6] [845390] +21:09:35 [ 12] [ 6] [210931] +21:09:35 [ 13] [ 4] [0320] +21:09:35 [ 15] [ 4] [0320] +21:09:35 [ 18] [ 4] [6011] +21:09:35 [ 22] [ 3] [900] +21:09:35 [ 25] [ 2] [02] +21:09:35 [ 28] [ 9] [D00002000] +21:09:35 [ 32] [ 6] [621354] +21:09:35 [ 35] [ 27] [1808931300014477=1803500839] +21:09:35 [ 37] [ 12] [507903455574] +21:09:35 [ 41] [ 8] [06001800] +21:09:35 [ 42] [ 15] [NATIVE ] +21:09:35 [ 43] [ 40] [Na Mor Unit Namore LAO] +21:09:35 [ 49] [ 3] [418] +21:09:35 [ 52] [ 16] [832C6D2416AFA269] +21:09:35 ============================================================================ +21:09:35 + + +waiting on router queue for slot.... +21:09:35 Sending to : +21:09:35 ============================================================================ +21:09:35 ============================================================================ +21:09:35 Slot Id : <36> +21:09:35 Transaction Type : REQUEST +21:09:35 Received From : +21:09:35 ============================================================================ +21:09:35 FNo. Len. Field Value +21:09:35 ============================================================================ +21:09:35 [ 1] [ 4] [0200] +21:09:35 [ 2] [ 16] [1808931300014477] +21:09:35 [ 3] [ 6] [010000] +21:09:35 [ 4] [ 12] [000004000000] +21:09:35 [ 7] [ 10] [0320210931] +21:09:35 [ 11] [ 6] [845390] +21:09:35 [ 12] [ 6] [210931] +21:09:35 [ 13] [ 4] [0320] +21:09:35 [ 15] [ 4] [0320] +21:09:35 [ 18] [ 4] [6011] +21:09:35 [ 22] [ 3] [900] +21:09:35 [ 25] [ 2] [02] +21:09:35 [ 28] [ 9] [D00002000] +21:09:35 [ 32] [ 6] [621354] +21:09:35 [ 35] [ 27] [1808931300014477=1803500839] +21:09:35 [ 37] [ 12] [507903455574] +21:09:35 [ 41] [ 8] [06001800] +21:09:35 [ 42] [ 15] [NATIVE ] +21:09:35 [ 43] [ 40] [Na Mor Unit Namore LAO] +21:09:35 [ 49] [ 3] [418] +21:09:35 [ 52] [ 16] [7467318C6EAB8A94] +21:09:35 ============================================================================ +21:09:35 + + +waiting on router queue for slot.... +21:09:35 Sending to : <2> +21:09:35 ============================================================================ +21:09:36 ============================================================================ +21:09:36 Slot Id : <18> +21:09:36 Transaction Type : REQUEST +21:09:36 Received From : +21:09:36 ============================================================================ +21:09:36 FNo. Len. Field Value +21:09:36 ============================================================================ +21:09:36 [ 1] [ 4] [0800] +21:09:36 [ 2] [ 5] [02531] +21:09:36 [ 3] [ 6] [579218] +21:09:36 [ 7] [ 10] [0320140936] +21:09:36 [ 11] [ 6] [807640] +21:09:36 [ 15] [ 10] [0320140936] +21:09:36 [ 37] [ 11] [57921807640] +21:09:36 [ 70] [ 3] [001] +21:09:36 ============================================================================ +21:09:36 + + +waiting on router queue for slot.... +21:09:36 ============================================================================ +21:09:36 Slot Id : <18> +21:09:36 Transaction Type : RESPONSE +21:09:36 Received From : +21:09:36 ============================================================================ +21:09:36 FNo. Len. Field Value +21:09:36 ============================================================================ +21:09:36 [ 1] [ 4] [0810] +21:09:36 [ 7] [ 10] [0320140936] +21:09:36 [ 11] [ 6] [807640] +21:09:36 [ 15] [ 4] [0320] +21:09:36 [ 37] [ 12] [57921807640] +21:09:36 [ 39] [ 2] [00] +21:09:36 [ 70] [ 3] [001] +21:09:36 ============================================================================ +21:09:36 Sending to : +21:09:36 ============================================================================ +21:09:36 + + +waiting on router queue for slot.... +21:09:39 ============================================================================ +21:09:39 Slot Id : <36> +21:09:39 Transaction Type : RESPONSE +21:09:39 Received From : +21:09:39 ============================================================================ +21:09:39 FNo. Len. Field Value +21:09:39 ============================================================================ +21:09:39 [ 1] [ 4] [0210] +21:09:39 [ 2] [ 16] [1808931300014477] +21:09:39 [ 3] [ 6] [010000] +21:09:39 [ 4] [ 12] [000004000000] +21:09:39 [ 6] [ 12] [000004000000] +21:09:39 [ 7] [ 10] [0320210931] +21:09:39 [ 11] [ 6] [845390] +21:09:39 [ 12] [ 6] [210931] +21:09:39 [ 13] [ 4] [0320] +21:09:39 [ 18] [ 4] [6011] +21:09:39 [ 19] [ 3] [418] +21:09:39 [ 22] [ 3] [021] +21:09:39 [ 32] [ 6] [621354] +21:09:39 [ 35] [ 27] [1808931300014477=1803500839] +21:09:39 [ 37] [ 12] [507903455574] +21:09:39 [ 38] [ 6] [845390] +21:09:39 [ 39] [ 2] [00] +21:09:39 [ 41] [ 8] [06001800] +21:09:39 [ 49] [ 3] [418] +21:09:39 [ 52] [ 16] [7467318C6EAB8A94] +21:09:39 [ 54] [ 20] [1001418C000035068000] +21:09:39 ============================================================================ +21:09:39 Sending to : +21:09:39 ============================================================================ +21:09:39 + + +waiting on router queue for slot.... +21:09:41 ============================================================================ +21:09:41 Slot Id : <36> +21:09:41 Transaction Type : RESPONSE +21:09:41 Received From : +21:09:41 ============================================================================ +21:09:41 FNo. Len. Field Value +21:09:41 ============================================================================ +21:09:41 [ 1] [ 4] [0210] +21:09:41 [ 2] [ 16] [1808931300014477] +21:09:41 [ 3] [ 6] [010000] +21:09:41 [ 4] [ 12] [000004000000] +21:09:41 [ 6] [ 12] [000004000000] +21:09:41 [ 7] [ 10] [0320210931] +21:09:41 [ 11] [ 6] [845390] +21:09:41 [ 12] [ 6] [210931] +21:09:41 [ 13] [ 4] [0320] +21:09:41 [ 18] [ 4] [6011] +21:09:41 [ 19] [ 3] [418] +21:09:41 [ 22] [ 3] [021] +21:09:41 [ 32] [ 6] [621354] +21:09:41 [ 35] [ 27] [1808931300014477=1803500839] +21:09:41 [ 37] [ 12] [507903455574] +21:09:41 [ 38] [ 6] [845390] +21:09:41 [ 39] [ 2] [00] +21:09:41 [ 41] [ 8] [06001800] +21:09:41 [ 49] [ 3] [418] +21:09:41 [ 52] [ 16] [7467318C6EAB8A94] +21:09:41 [ 54] [ 20] [1001418C000035068000] +21:09:41 ============================================================================ +21:09:41 Calculate Source COMM Id = 0 +21:09:41 ============================================================================ +21:09:41 + + +waiting on router queue for slot.... +21:09:49 ============================================================================ +21:09:49 Slot Id : <40> +21:09:49 Transaction Type : REQUEST +21:09:49 Received From : +21:09:49 ============================================================================ +21:09:49 FNo. Len. Field Value +21:09:49 ============================================================================ +21:09:49 [ 1] [ 4] [0800] +21:09:49 [ 7] [ 10] [0320020857] +21:09:49 [ 11] [ 6] [158402] +21:09:49 [ 70] [ 3] [301] +21:09:49 ============================================================================ +21:09:49 + + +waiting on router queue for slot.... +21:09:49 Sending to : +21:09:49 ============================================================================ +21:09:49 ============================================================================ +21:09:49 Slot Id : <40> +21:09:49 Transaction Type : RESPONSE +21:09:49 Received From : +21:09:49 ============================================================================ +21:09:49 FNo. Len. Field Value +21:09:49 ============================================================================ +21:09:49 [ 1] [ 4] [0810] +21:09:49 [ 7] [ 10] [0320020857] +21:09:49 [ 11] [ 6] [158402] +21:09:49 [ 39] [ 2] [00] +21:09:49 [ 70] [ 3] [301] +21:09:49 ============================================================================ +21:09:49 Calculate Source COMM Id = 2 +21:09:49 ============================================================================ +21:09:49 + + +waiting on router queue for slot.... +21:09:51 ============================================================================ +21:09:51 Slot Id : <43> +21:09:51 Transaction Type : REQUEST +21:09:51 Received From : +21:09:51 ============================================================================ +21:09:51 FNo. Len. Field Value +21:09:51 ============================================================================ +21:09:51 [ 1] [ 4] [0800] +21:09:51 [ 7] [ 10] [0321042142] +21:09:51 [ 11] [ 6] [212142] +21:09:51 [ 37] [ 12] [57921212142] +21:09:51 [ 70] [ 3] [301] +21:09:51 ============================================================================ +21:09:51 + + +waiting on router queue for slot.... +21:09:51 Sending to : +21:09:51 ============================================================================ +21:09:51 ============================================================================ +21:09:51 Slot Id : <43> +21:09:51 Transaction Type : RESPONSE +21:09:51 Received From : +21:09:51 ============================================================================ +21:09:51 FNo. Len. Field Value +21:09:51 ============================================================================ +21:09:51 [ 1] [ 4] [0810] +21:09:51 [ 7] [ 10] [0321042142] +21:09:51 [ 11] [ 6] [212142] +21:09:51 [ 37] [ 12] [579212121420] +21:09:51 [ 39] [ 2] [00] +21:09:51 [ 70] [ 3] [810] +21:09:51 ============================================================================ +21:09:51 Calculate Source COMM Id = 6 +21:09:51 ============================================================================ +21:09:51 + + +waiting on router queue for slot.... +21:09:55 ============================================================================ +21:09:55 Slot Id : <28> +21:09:55 Transaction Type : REQUEST +21:09:55 Received From : +21:09:55 ============================================================================ +21:09:55 FNo. Len. Field Value +21:09:55 ============================================================================ +21:09:55 [ 1] [ 4] [0800] +21:09:55 [ 7] [ 10] [0320141742] +21:09:55 [ 11] [ 6] [076518] +21:09:55 [ 37] [ 12] [57921076518] +21:09:55 [ 70] [ 3] [301] +21:09:55 ============================================================================ +21:09:55 + + +waiting on router queue for slot.... +21:09:55 Sending to : +21:09:55 ============================================================================ +21:09:55 ============================================================================ +21:09:55 Slot Id : <28> +21:09:55 Transaction Type : RESPONSE +21:09:55 Received From : +21:09:55 ============================================================================ +21:09:55 FNo. Len. Field Value +21:09:55 ============================================================================ +21:09:55 [ 1] [ 4] [0810] +21:09:55 [ 7] [ 10] [0320141742] +21:09:55 [ 11] [ 6] [076518] +21:09:55 [ 37] [ 12] [579210765180] +21:09:55 [ 39] [ 2] [00] +21:09:55 [ 70] [ 3] [810] +21:09:55 ============================================================================ +21:09:55 Calculate Source COMM Id = 1 +21:09:55 ============================================================================ +21:09:55 + + +waiting on router queue for slot.... +21:10:00 ============================================================================ +21:10:00 Slot Id : <497> +21:10:00 Transaction Type : REQUEST +21:10:00 Received From : +21:10:00 ============================================================================ +21:10:00 FNo. Len. Field Value +21:10:00 ============================================================================ +21:10:00 [ 1] [ 4] [0800] +21:10:00 [ 7] [ 10] [0320020909] +21:10:00 [ 11] [ 6] [158403] +21:10:00 [ 70] [ 3] [301] +21:10:00 ============================================================================ +21:10:00 + + +waiting on router queue for slot.... +21:10:00 Sending to : +21:10:00 ============================================================================ +21:10:00 ============================================================================ +21:10:00 Slot Id : <497> +21:10:00 Transaction Type : RESPONSE +21:10:00 Received From : +21:10:00 ============================================================================ +21:10:00 FNo. Len. Field Value +21:10:00 ============================================================================ +21:10:00 [ 1] [ 4] [0810] +21:10:00 [ 7] [ 10] [0320020909] +21:10:00 [ 11] [ 6] [158403] +21:10:00 [ 39] [ 2] [00] +21:10:00 [ 70] [ 3] [301] +21:10:00 ============================================================================ +21:10:00 Calculate Source COMM Id = 2 +21:10:00 ============================================================================ +21:10:00 + + +waiting on router queue for slot.... +21:10:12 ============================================================================ +21:10:12 Slot Id : <55> +21:10:12 Transaction Type : REQUEST +21:10:12 Received From : +21:10:12 ============================================================================ +21:10:12 FNo. Len. Field Value +21:10:12 ============================================================================ +21:10:12 [ 1] [ 4] [0800] +21:10:12 [ 7] [ 10] [0320020919] +21:10:12 [ 11] [ 6] [158404] +21:10:12 [ 70] [ 3] [301] +21:10:12 ============================================================================ +21:10:12 + + +waiting on router queue for slot.... +21:10:12 Sending to : +21:10:12 ============================================================================ +21:10:12 ============================================================================ +21:10:12 Slot Id : <55> +21:10:12 Transaction Type : RESPONSE +21:10:12 Received From : +21:10:12 ============================================================================ +21:10:12 FNo. Len. Field Value +21:10:12 ============================================================================ +21:10:12 [ 1] [ 4] [0810] +21:10:12 [ 7] [ 10] [0320020919] +21:10:12 [ 11] [ 6] [158404] +21:10:12 [ 39] [ 2] [00] +21:10:12 [ 70] [ 3] [301] +21:10:12 ============================================================================ +21:10:12 Calculate Source COMM Id = 2 +21:10:12 ============================================================================ +21:10:12 + + +waiting on router queue for slot.... +21:10:26 ============================================================================ +21:10:26 Slot Id : <8> +21:10:26 Transaction Type : REQUEST +21:10:26 Received From : +21:10:26 ============================================================================ +21:10:26 FNo. Len. Field Value +21:10:26 ============================================================================ +21:10:26 [ 1] [ 4] [0800] +21:10:26 [ 7] [ 10] [0320020935] +21:10:26 [ 11] [ 6] [158405] +21:10:26 [ 70] [ 3] [301] +21:10:26 ============================================================================ +21:10:26 + + +waiting on router queue for slot.... +21:10:26 Sending to : +21:10:26 ============================================================================ +21:10:26 ============================================================================ +21:10:26 Slot Id : <8> +21:10:26 Transaction Type : RESPONSE +21:10:26 Received From : +21:10:26 ============================================================================ +21:10:26 FNo. Len. Field Value +21:10:26 ============================================================================ +21:10:26 [ 1] [ 4] [0810] +21:10:26 [ 7] [ 10] [0320020935] +21:10:26 [ 11] [ 6] [158405] +21:10:26 [ 39] [ 2] [00] +21:10:26 [ 70] [ 3] [301] +21:10:26 ============================================================================ +21:10:26 Calculate Source COMM Id = 2 +21:10:26 ============================================================================ +21:10:26 + + +waiting on router queue for slot.... +21:10:38 ============================================================================ +21:10:38 Slot Id : <467> +21:10:38 Transaction Type : REQUEST +21:10:38 Received From : +21:10:38 ============================================================================ +21:10:38 FNo. Len. Field Value +21:10:38 ============================================================================ +21:10:38 [ 1] [ 4] [0800] +21:10:38 [ 2] [ 5] [02531] +21:10:38 [ 3] [ 6] [579218] +21:10:38 [ 7] [ 10] [0320141038] +21:10:38 [ 11] [ 6] [807641] +21:10:38 [ 15] [ 10] [0320141038] +21:10:38 [ 37] [ 11] [57921807641] +21:10:38 [ 70] [ 3] [001] +21:10:38 ============================================================================ +21:10:38 + + +waiting on router queue for slot.... +21:10:38 ============================================================================ +21:10:38 Slot Id : <467> +21:10:38 Transaction Type : RESPONSE +21:10:38 Received From : +21:10:38 ============================================================================ +21:10:38 FNo. Len. Field Value +21:10:38 ============================================================================ +21:10:38 [ 1] [ 4] [0810] +21:10:38 [ 7] [ 10] [0320141038] +21:10:38 [ 11] [ 6] [807641] +21:10:38 [ 15] [ 4] [0320] +21:10:38 [ 37] [ 12] [57921807641] +21:10:38 [ 39] [ 2] [00] +21:10:38 [ 70] [ 3] [001] +21:10:38 ============================================================================ +21:10:38 Sending to : +21:10:38 ============================================================================ +21:10:38 + + +waiting on router queue for slot.... +21:10:42 ============================================================================ +21:10:42 Slot Id : <7> +21:10:42 Transaction Type : REQUEST +21:10:42 Received From : +21:10:42 ============================================================================ +21:10:42 FNo. Len. Field Value +21:10:42 ============================================================================ +21:10:42 [ 1] [ 4] [0800] +21:10:42 [ 7] [ 10] [0320020951] +21:10:42 [ 11] [ 6] [158406] +21:10:42 [ 70] [ 3] [301] +21:10:42 ============================================================================ +21:10:42 + + +waiting on router queue for slot.... +21:10:42 Sending to : +21:10:42 ============================================================================ +21:10:42 ============================================================================ +21:10:42 Slot Id : <7> +21:10:42 Transaction Type : RESPONSE +21:10:42 Received From : +21:10:42 ============================================================================ +21:10:42 FNo. Len. Field Value +21:10:42 ============================================================================ +21:10:42 [ 1] [ 4] [0810] +21:10:42 [ 7] [ 10] [0320020951] +21:10:42 [ 11] [ 6] [158406] +21:10:42 [ 39] [ 2] [00] +21:10:42 [ 70] [ 3] [301] +21:10:42 ============================================================================ +21:10:42 Calculate Source COMM Id = 2 +21:10:42 ============================================================================ +21:10:42 + + +waiting on router queue for slot.... +21:10:56 ============================================================================ +21:10:56 Slot Id : <52> +21:10:56 Transaction Type : REQUEST +21:10:56 Received From : +21:10:56 ============================================================================ +21:10:56 FNo. Len. Field Value +21:10:56 ============================================================================ +21:10:56 [ 1] [ 4] [0800] +21:10:56 [ 7] [ 10] [0321042247] +21:10:56 [ 11] [ 6] [212247] +21:10:56 [ 37] [ 12] [57921212247] +21:10:56 [ 70] [ 3] [301] +21:10:56 ============================================================================ +21:10:56 + + +waiting on router queue for slot.... +21:10:56 Sending to : +21:10:56 ============================================================================ +21:10:56 ============================================================================ +21:10:56 Slot Id : <52> +21:10:56 Transaction Type : RESPONSE +21:10:56 Received From : +21:10:56 ============================================================================ +21:10:56 FNo. Len. Field Value +21:10:56 ============================================================================ +21:10:56 [ 1] [ 4] [0810] +21:10:56 [ 7] [ 10] [0321042247] +21:10:56 [ 11] [ 6] [212247] +21:10:56 [ 37] [ 12] [579212122470] +21:10:56 [ 39] [ 2] [00] +21:10:56 [ 70] [ 3] [810] +21:10:56 ============================================================================ +21:10:56 Calculate Source COMM Id = 6 +21:10:56 ============================================================================ +21:10:56 + + +waiting on router queue for slot.... +21:10:57 ============================================================================ +21:10:57 Slot Id : <61> +21:10:57 Transaction Type : REQUEST +21:10:57 Received From : +21:10:57 ============================================================================ +21:10:57 FNo. Len. Field Value +21:10:57 ============================================================================ +21:10:57 [ 1] [ 4] [0800] +21:10:57 [ 7] [ 10] [0320021006] +21:10:57 [ 11] [ 6] [158407] +21:10:57 [ 70] [ 3] [301] +21:10:57 ============================================================================ +21:10:57 + + +waiting on router queue for slot.... +21:10:57 Sending to : +21:10:57 ============================================================================ +21:10:57 ============================================================================ +21:10:57 Slot Id : <61> +21:10:57 Transaction Type : RESPONSE +21:10:57 Received From : +21:10:57 ============================================================================ +21:10:57 FNo. Len. Field Value +21:10:57 ============================================================================ +21:10:57 [ 1] [ 4] [0810] +21:10:57 [ 7] [ 10] [0320021006] +21:10:57 [ 11] [ 6] [158407] +21:10:57 [ 39] [ 2] [00] +21:10:57 [ 70] [ 3] [301] +21:10:57 ============================================================================ +21:10:57 Calculate Source COMM Id = 2 +21:10:57 ============================================================================ +21:10:57 + + +waiting on router queue for slot.... +21:11:08 ============================================================================ +21:11:08 Slot Id : <50> +21:11:08 Transaction Type : REQUEST +21:11:08 Received From : +21:11:08 ============================================================================ +21:11:08 FNo. Len. Field Value +21:11:08 ============================================================================ +21:11:08 [ 1] [ 4] [0800] +21:11:08 [ 7] [ 10] [0320021016] +21:11:08 [ 11] [ 6] [158408] +21:11:08 [ 70] [ 3] [301] +21:11:08 ============================================================================ +21:11:08 + + +waiting on router queue for slot.... +21:11:08 Sending to : +21:11:08 ============================================================================ +21:11:08 ============================================================================ +21:11:08 Slot Id : <50> +21:11:08 Transaction Type : RESPONSE +21:11:08 Received From : +21:11:08 ============================================================================ +21:11:08 FNo. Len. Field Value +21:11:08 ============================================================================ +21:11:08 [ 1] [ 4] [0810] +21:11:08 [ 7] [ 10] [0320021016] +21:11:08 [ 11] [ 6] [158408] +21:11:08 [ 39] [ 2] [00] +21:11:08 [ 70] [ 3] [301] +21:11:08 ============================================================================ +21:11:08 Calculate Source COMM Id = 2 +21:11:08 ============================================================================ +21:11:08 + + +waiting on router queue for slot.... +21:11:18 ============================================================================ +21:11:18 Slot Id : <44> +21:11:18 Transaction Type : REQUEST +21:11:18 Received From : +21:11:18 ============================================================================ +21:11:18 FNo. Len. Field Value +21:11:18 ============================================================================ +21:11:18 [ 1] [ 4] [0800] +21:11:18 [ 7] [ 10] [0320021027] +21:11:18 [ 11] [ 6] [158409] +21:11:18 [ 70] [ 3] [301] +21:11:18 ============================================================================ +21:11:18 + + +waiting on router queue for slot.... +21:11:19 Sending to : +21:11:19 ============================================================================ +21:11:19 ============================================================================ +21:11:19 Slot Id : <44> +21:11:19 Transaction Type : RESPONSE +21:11:19 Received From : +21:11:19 ============================================================================ +21:11:19 FNo. Len. Field Value +21:11:19 ============================================================================ +21:11:19 [ 1] [ 4] [0810] +21:11:19 [ 7] [ 10] [0320021027] +21:11:19 [ 11] [ 6] [158409] +21:11:19 [ 39] [ 2] [00] +21:11:19 [ 70] [ 3] [301] +21:11:19 ============================================================================ +21:11:19 Calculate Source COMM Id = 2 +21:11:19 ============================================================================ +21:11:19 + + +waiting on router queue for slot.... +21:11:20 ============================================================================ +21:11:20 Slot Id : <25> +21:11:20 Transaction Type : REQUEST +21:11:20 Received From : +21:11:20 ============================================================================ +21:11:20 FNo. Len. Field Value +21:11:20 ============================================================================ +21:11:20 [ 1] [ 4] [0800] +21:11:20 [ 7] [ 10] [0320140912] +21:11:20 [ 11] [ 6] [026514] +21:11:20 [ 37] [ 12] [57921026514] +21:11:20 [ 70] [ 3] [301] +21:11:20 ============================================================================ +21:11:20 + + +waiting on router queue for slot.... +21:11:20 Sending to : +21:11:20 ============================================================================ +21:11:20 ============================================================================ +21:11:20 Slot Id : <25> +21:11:20 Transaction Type : RESPONSE +21:11:20 Received From : +21:11:20 ============================================================================ +21:11:20 FNo. Len. Field Value +21:11:20 ============================================================================ +21:11:20 [ 1] [ 4] [0810] +21:11:20 [ 7] [ 10] [0320140912] +21:11:20 [ 11] [ 6] [026514] +21:11:20 [ 37] [ 12] [579210265140] +21:11:20 [ 39] [ 2] [00] +21:11:20 [ 70] [ 3] [810] +21:11:20 ============================================================================ +21:11:20 Calculate Source COMM Id = 4 +21:11:20 ============================================================================ +21:11:20 + + +waiting on router queue for slot.... +21:11:33 ============================================================================ +21:11:33 Slot Id : <15> +21:11:33 Transaction Type : REQUEST +21:11:33 Received From : +21:11:33 ============================================================================ +21:11:33 FNo. Len. Field Value +21:11:33 ============================================================================ +21:11:33 [ 1] [ 4] [0800] +21:11:33 [ 7] [ 10] [0320021041] +21:11:33 [ 11] [ 6] [158410] +21:11:33 [ 70] [ 3] [301] +21:11:33 ============================================================================ +21:11:33 + + +waiting on router queue for slot.... +21:11:33 Sending to : +21:11:33 ============================================================================ +21:11:33 ============================================================================ +21:11:33 Slot Id : <15> +21:11:33 Transaction Type : RESPONSE +21:11:33 Received From : +21:11:33 ============================================================================ +21:11:33 FNo. Len. Field Value +21:11:33 ============================================================================ +21:11:33 [ 1] [ 4] [0810] +21:11:33 [ 7] [ 10] [0320021041] +21:11:33 [ 11] [ 6] [158410] +21:11:33 [ 39] [ 2] [00] +21:11:33 [ 70] [ 3] [301] +21:11:33 ============================================================================ +21:11:33 Calculate Source COMM Id = 2 +21:11:33 ============================================================================ +21:11:33 + + +waiting on router queue for slot.... +21:11:40 ============================================================================ +21:11:40 Slot Id : <60> +21:11:40 Transaction Type : REQUEST +21:11:40 Received From : +21:11:40 ============================================================================ +21:11:40 FNo. Len. Field Value +21:11:40 ============================================================================ +21:11:40 [ 1] [ 4] [0800] +21:11:40 [ 2] [ 5] [02531] +21:11:40 [ 3] [ 6] [579218] +21:11:40 [ 7] [ 10] [0320141140] +21:11:40 [ 11] [ 6] [807642] +21:11:40 [ 15] [ 10] [0320141140] +21:11:40 [ 37] [ 11] [57921807642] +21:11:40 [ 70] [ 3] [001] +21:11:40 ============================================================================ +21:11:40 + + +waiting on router queue for slot.... +21:11:40 ============================================================================ +21:11:40 Slot Id : <60> +21:11:40 Transaction Type : RESPONSE +21:11:40 Received From : +21:11:40 ============================================================================ +21:11:40 FNo. Len. Field Value +21:11:40 ============================================================================ +21:11:40 [ 1] [ 4] [0810] +21:11:40 [ 7] [ 10] [0320141140] +21:11:40 [ 11] [ 6] [807642] +21:11:40 [ 15] [ 4] [0320] +21:11:40 [ 37] [ 12] [57921807642] +21:11:40 [ 39] [ 2] [00] +21:11:40 [ 70] [ 3] [001] +21:11:40 ============================================================================ +21:11:40 Sending to : +21:11:40 ============================================================================ +21:11:40 + + +waiting on router queue for slot.... +21:11:46 ============================================================================ +21:11:46 Slot Id : <478> +21:11:46 Transaction Type : REQUEST +21:11:46 Received From : +21:11:46 ============================================================================ +21:11:46 FNo. Len. Field Value +21:11:46 ============================================================================ +21:11:46 [ 1] [ 4] [0800] +21:11:46 [ 7] [ 10] [0320021054] +21:11:46 [ 11] [ 6] [158411] +21:11:46 [ 70] [ 3] [301] +21:11:46 ============================================================================ +21:11:46 + + +waiting on router queue for slot.... +21:11:46 Sending to : +21:11:46 ============================================================================ +21:11:46 ============================================================================ +21:11:46 Slot Id : <478> +21:11:46 Transaction Type : RESPONSE +21:11:46 Received From : +21:11:46 ============================================================================ +21:11:46 FNo. Len. Field Value +21:11:46 ============================================================================ +21:11:46 [ 1] [ 4] [0810] +21:11:46 [ 7] [ 10] [0320021054] +21:11:46 [ 11] [ 6] [158411] +21:11:46 [ 39] [ 2] [00] +21:11:46 [ 70] [ 3] [301] +21:11:46 ============================================================================ +21:11:46 Calculate Source COMM Id = 2 +21:11:46 ============================================================================ +21:11:46 + + +waiting on router queue for slot.... +21:12:01 ============================================================================ +21:12:01 Slot Id : <63> +21:12:01 Transaction Type : REQUEST +21:12:01 Received From : +21:12:01 ============================================================================ +21:12:01 FNo. Len. Field Value +21:12:01 ============================================================================ +21:12:01 [ 1] [ 4] [0800] +21:12:01 [ 7] [ 10] [0320021109] +21:12:01 [ 11] [ 6] [158412] +21:12:01 [ 70] [ 3] [301] +21:12:01 ============================================================================ +21:12:01 + + +waiting on router queue for slot.... +21:12:01 Sending to : +21:12:01 ============================================================================ +21:12:01 ============================================================================ +21:12:01 Slot Id : <63> +21:12:01 Transaction Type : RESPONSE +21:12:01 Received From : +21:12:01 ============================================================================ +21:12:01 FNo. Len. Field Value +21:12:01 ============================================================================ +21:12:01 [ 1] [ 4] [0810] +21:12:01 [ 7] [ 10] [0320021109] +21:12:01 [ 11] [ 6] [158412] +21:12:01 [ 39] [ 2] [00] +21:12:01 [ 70] [ 3] [301] +21:12:01 ============================================================================ +21:12:01 Calculate Source COMM Id = 2 +21:12:01 ============================================================================ +21:12:01 + + +waiting on router queue for slot.... +21:12:01 ============================================================================ +21:12:01 Slot Id : <73> +21:12:01 Transaction Type : REQUEST +21:12:01 Received From : +21:12:01 ============================================================================ +21:12:01 FNo. Len. Field Value +21:12:01 ============================================================================ +21:12:01 [ 1] [ 4] [0800] +21:12:01 [ 7] [ 10] [0321042352] +21:12:01 [ 11] [ 6] [212352] +21:12:01 [ 37] [ 12] [57921212352] +21:12:01 [ 70] [ 3] [301] +21:12:01 ============================================================================ +21:12:01 + + +waiting on router queue for slot.... +21:12:01 Sending to : +21:12:01 ============================================================================ +21:12:01 ============================================================================ +21:12:01 Slot Id : <73> +21:12:01 Transaction Type : RESPONSE +21:12:01 Received From : +21:12:01 ============================================================================ +21:12:01 FNo. Len. Field Value +21:12:01 ============================================================================ +21:12:01 [ 1] [ 4] [0810] +21:12:01 [ 7] [ 10] [0321042352] +21:12:01 [ 11] [ 6] [212352] +21:12:01 [ 37] [ 12] [579212123520] +21:12:01 [ 39] [ 2] [00] +21:12:01 [ 70] [ 3] [810] +21:12:01 ============================================================================ +21:12:01 Calculate Source COMM Id = 6 +21:12:01 ============================================================================ +21:12:01 + + +waiting on router queue for slot.... +21:12:11 ============================================================================ +21:12:11 Slot Id : <68> +21:12:11 Transaction Type : REQUEST +21:12:11 Received From : +21:12:11 ============================================================================ +21:12:11 FNo. Len. Field Value +21:12:11 ============================================================================ +21:12:11 [ 1] [ 4] [0200] +21:12:11 [ 2] [ 16] [6213544002037452] +21:12:11 [ 3] [ 6] [010000] +21:12:11 [ 4] [ 12] [000010000000] +21:12:11 [ 7] [ 10] [0320211002] +21:12:11 [ 11] [ 6] [957645] +21:12:11 [ 12] [ 6] [211002] +21:12:11 [ 13] [ 4] [0320] +21:12:11 [ 15] [ 4] [0320] +21:12:11 [ 18] [ 4] [6011] +21:12:11 [ 19] [ 3] [418] +21:12:11 [ 22] [ 3] [021] +21:12:11 [ 25] [ 2] [01] +21:12:11 [ 28] [ 9] [D00002000] +21:12:11 [ 32] [ 6] [668899] +21:12:11 [ 35] [ 32] [6213544002037452=491212013745467] +21:12:11 [ 37] [ 12] [507902209994] +21:12:11 [ 41] [ 8] [03006009] +21:12:11 [ 42] [ 15] [APT ] +21:12:11 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +21:12:11 [ 49] [ 3] [418] +21:12:11 [ 52] [ 16] [89FAB5AA2C50630E] +21:12:11 ============================================================================ +21:12:11 + + +waiting on router queue for slot.... +21:12:11 Sending to : +21:12:11 ============================================================================ +21:12:11 Sending to : +21:12:11 ============================================================================ +21:12:11 ============================================================================ +21:12:11 Slot Id : <68> +21:12:11 Transaction Type : REQUEST +21:12:11 Received From : +21:12:11 ============================================================================ +21:12:11 FNo. Len. Field Value +21:12:11 ============================================================================ +21:12:11 [ 1] [ 4] [0200] +21:12:11 [ 2] [ 16] [6213544002037452] +21:12:11 [ 3] [ 6] [010000] +21:12:11 [ 4] [ 12] [000010000000] +21:12:11 [ 7] [ 10] [0320211002] +21:12:11 [ 11] [ 6] [957645] +21:12:11 [ 12] [ 6] [211002] +21:12:11 [ 13] [ 4] [0320] +21:12:11 [ 15] [ 4] [0320] +21:12:11 [ 18] [ 4] [6011] +21:12:11 [ 19] [ 3] [418] +21:12:11 [ 22] [ 3] [021] +21:12:11 [ 25] [ 2] [01] +21:12:11 [ 28] [ 9] [D00002000] +21:12:11 [ 32] [ 6] [668899] +21:12:11 [ 35] [ 32] [6213544002037452=491212013745467] +21:12:11 [ 37] [ 12] [507902209994] +21:12:11 [ 41] [ 8] [03006009] +21:12:11 [ 42] [ 15] [APT ] +21:12:11 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +21:12:11 [ 49] [ 3] [418] +21:12:11 [ 52] [ 16] [89FAB5AA2C50630E] +21:12:11 ============================================================================ +21:12:11 + + +waiting on router queue for slot.... +21:12:11 Sending to : +21:12:11 ============================================================================ +21:12:11 ============================================================================ +21:12:11 Slot Id : <68> +21:12:11 Transaction Type : REQUEST +21:12:11 Received From : +21:12:11 ============================================================================ +21:12:11 FNo. Len. Field Value +21:12:11 ============================================================================ +21:12:11 [ 1] [ 4] [0200] +21:12:11 [ 2] [ 16] [6213544002037452] +21:12:11 [ 3] [ 6] [010000] +21:12:11 [ 4] [ 12] [000010000000] +21:12:11 [ 7] [ 10] [0320211002] +21:12:11 [ 11] [ 6] [957645] +21:12:11 [ 12] [ 6] [211002] +21:12:11 [ 13] [ 4] [0320] +21:12:11 [ 15] [ 4] [0320] +21:12:11 [ 18] [ 4] [6011] +21:12:11 [ 19] [ 3] [418] +21:12:11 [ 22] [ 3] [021] +21:12:11 [ 25] [ 2] [01] +21:12:11 [ 28] [ 9] [D00002000] +21:12:11 [ 32] [ 6] [668899] +21:12:11 [ 35] [ 32] [6213544002037452=491212013745467] +21:12:11 [ 37] [ 12] [507902209994] +21:12:11 [ 41] [ 8] [03006009] +21:12:11 [ 42] [ 15] [APT ] +21:12:11 [ 43] [ 40] [ TEACHER COLLEGE LUANGPRAB] +21:12:11 [ 49] [ 3] [418] +21:12:11 [ 52] [ 16] [134C2CFC7F73FD78] +21:12:11 ============================================================================ +21:12:11 + + +waiting on router queue for slot.... +21:12:11 Sending to : <0> +21:12:11 ============================================================================ +21:12:12 ============================================================================ +21:12:12 Slot Id : <68> +21:12:12 Transaction Type : RESPONSE +21:12:12 Received From : +21:12:12 ============================================================================ +21:12:12 FNo. Len. Field Value +21:12:12 ============================================================================ +21:12:12 [ 1] [ 4] [0210] +21:12:12 [ 2] [ 16] [6213544002037452] +21:12:12 [ 3] [ 6] [010000] +21:12:12 [ 4] [ 12] [000010000000] +21:12:12 [ 7] [ 10] [0320211002] +21:12:12 [ 11] [ 6] [957645] +21:12:12 [ 12] [ 6] [211002] +21:12:12 [ 13] [ 4] [0320] +21:12:12 [ 15] [ 4] [0320] +21:12:12 [ 18] [ 4] [6011] +21:12:12 [ 19] [ 3] [418] +21:12:12 [ 32] [ 6] [668899] +21:12:12 [ 35] [ 32] [6213544002037452=491212013745467] +21:12:12 [ 37] [ 12] [507902209994] +21:12:12 [ 38] [ 6] [994401] +21:12:12 [ 39] [ 2] [00] +21:12:12 [ 41] [ 8] [03006009] +21:12:12 [ 49] [ 3] [418] +21:12:12 [ 54] [ 40] [0001418C0000157683670002418C000005568367] +21:12:12 ============================================================================ +21:12:12 Sending to : +21:12:12 ============================================================================ +21:12:12 + + +waiting on router queue for slot.... +21:12:13 ============================================================================ +21:12:13 Slot Id : <68> +21:12:13 Transaction Type : RESPONSE +21:12:13 Received From : +21:12:13 ============================================================================ +21:12:13 FNo. Len. Field Value +21:12:13 ============================================================================ +21:12:13 [ 1] [ 4] [0210] +21:12:13 [ 2] [ 16] [6213544002037452] +21:12:13 [ 3] [ 6] [010000] +21:12:13 [ 4] [ 12] [000010000000] +21:12:13 [ 7] [ 10] [0320211002] +21:12:13 [ 11] [ 6] [957645] +21:12:13 [ 12] [ 6] [211002] +21:12:13 [ 13] [ 4] [0320] +21:12:13 [ 15] [ 4] [0320] +21:12:13 [ 18] [ 4] [6011] +21:12:13 [ 19] [ 3] [418] +21:12:13 [ 32] [ 6] [668899] +21:12:13 [ 35] [ 32] [6213544002037452=491212013745467] +21:12:13 [ 37] [ 12] [507902209994] +21:12:13 [ 38] [ 6] [994401] +21:12:13 [ 39] [ 2] [00] +21:12:13 [ 41] [ 8] [03006009] +21:12:13 [ 49] [ 3] [418] +21:12:13 [ 54] [ 40] [0001418C0000157683670002418C000005568367] +21:12:13 ============================================================================ +21:12:13 Calculate Source COMM Id = 4 +21:12:13 ============================================================================ +21:12:13 + + +waiting on router queue for slot.... +21:12:13 ============================================================================ +21:12:13 Slot Id : <38> +21:12:13 Transaction Type : REQUEST +21:12:13 Received From : +21:12:13 ============================================================================ +21:12:13 FNo. Len. Field Value +21:12:13 ============================================================================ +21:12:13 [ 1] [ 4] [0800] +21:12:13 [ 7] [ 10] [0320021121] +21:12:13 [ 11] [ 6] [158413] +21:12:13 [ 70] [ 3] [301] +21:12:13 ============================================================================ +21:12:13 + + +waiting on router queue for slot.... +21:12:13 Sending to : +21:12:13 ============================================================================ +21:12:13 ============================================================================ +21:12:13 Slot Id : <38> +21:12:13 Transaction Type : RESPONSE +21:12:13 Received From : +21:12:13 ============================================================================ +21:12:13 FNo. Len. Field Value +21:12:13 ============================================================================ +21:12:13 [ 1] [ 4] [0810] +21:12:13 [ 7] [ 10] [0320021121] +21:12:13 [ 11] [ 6] [158413] +21:12:13 [ 39] [ 2] [00] +21:12:13 [ 70] [ 3] [301] +21:12:13 ============================================================================ +21:12:13 Calculate Source COMM Id = 2 +21:12:13 ============================================================================ +21:12:13 + + +waiting on router queue for slot.... +21:12:29 ============================================================================ +21:12:29 Slot Id : <32> +21:12:29 Transaction Type : REQUEST +21:12:29 Received From : +21:12:29 ============================================================================ +21:12:29 FNo. Len. Field Value +21:12:29 ============================================================================ +21:12:29 [ 1] [ 4] [0800] +21:12:29 [ 7] [ 10] [0320021137] +21:12:29 [ 11] [ 6] [158414] +21:12:29 [ 70] [ 3] [301] +21:12:29 ============================================================================ +21:12:29 + + +waiting on router queue for slot.... +21:12:29 Sending to : +21:12:29 ============================================================================ +21:12:29 ============================================================================ +21:12:29 Slot Id : <32> +21:12:29 Transaction Type : RESPONSE +21:12:29 Received From : +21:12:29 ============================================================================ +21:12:29 FNo. Len. Field Value +21:12:29 ============================================================================ +21:12:29 [ 1] [ 4] [0810] +21:12:29 [ 7] [ 10] [0320021137] +21:12:29 [ 11] [ 6] [158414] +21:12:29 [ 39] [ 2] [00] +21:12:29 [ 70] [ 3] [301] +21:12:29 ============================================================================ +21:12:29 Calculate Source COMM Id = 2 +21:12:29 ============================================================================ +21:12:29 + + +waiting on router queue for slot.... +21:12:39 ============================================================================ +21:12:39 Slot Id : <26> +21:12:39 Transaction Type : REQUEST +21:12:39 Received From : +21:12:39 ============================================================================ +21:12:39 FNo. Len. Field Value +21:12:39 ============================================================================ +21:12:39 [ 1] [ 4] [0800] +21:12:39 [ 7] [ 10] [0320021147] +21:12:39 [ 11] [ 6] [158415] +21:12:39 [ 70] [ 3] [301] +21:12:39 ============================================================================ +21:12:39 + + +waiting on router queue for slot.... +21:12:39 Sending to : +21:12:39 ============================================================================ +21:12:39 ============================================================================ +21:12:39 Slot Id : <26> +21:12:39 Transaction Type : RESPONSE +21:12:39 Received From : +21:12:39 ============================================================================ +21:12:39 FNo. Len. Field Value +21:12:39 ============================================================================ +21:12:39 [ 1] [ 4] [0810] +21:12:39 [ 7] [ 10] [0320021147] +21:12:39 [ 11] [ 6] [158415] +21:12:39 [ 39] [ 2] [00] +21:12:39 [ 70] [ 3] [301] +21:12:39 ============================================================================ +21:12:39 Calculate Source COMM Id = 2 +21:12:39 ============================================================================ +21:12:39 + + +waiting on router queue for slot.... +21:12:42 ============================================================================ +21:12:42 Slot Id : <487> +21:12:42 Transaction Type : REQUEST +21:12:42 Received From : +21:12:42 ============================================================================ +21:12:42 FNo. Len. Field Value +21:12:42 ============================================================================ +21:12:42 [ 1] [ 4] [0800] +21:12:42 [ 2] [ 5] [02531] +21:12:42 [ 3] [ 6] [579218] +21:12:42 [ 7] [ 10] [0320141242] +21:12:42 [ 11] [ 6] [807643] +21:12:42 [ 15] [ 10] [0320141242] +21:12:42 [ 37] [ 11] [57921807643] +21:12:42 [ 70] [ 3] [001] +21:12:42 ============================================================================ +21:12:42 + + +waiting on router queue for slot.... +21:12:42 ============================================================================ +21:12:42 Slot Id : <487> +21:12:42 Transaction Type : RESPONSE +21:12:42 Received From : +21:12:42 ============================================================================ +21:12:42 FNo. Len. Field Value +21:12:42 ============================================================================ +21:12:42 [ 1] [ 4] [0810] +21:12:42 [ 7] [ 10] [0320141242] +21:12:42 [ 11] [ 6] [807643] +21:12:42 [ 15] [ 4] [0320] +21:12:42 [ 37] [ 12] [57921807643] +21:12:42 [ 39] [ 2] [00] +21:12:42 [ 70] [ 3] [001] +21:12:42 ============================================================================ +21:12:42 Sending to : +21:12:42 ============================================================================ +21:12:42 + + +waiting on router queue for slot.... +21:12:55 ============================================================================ +21:12:55 Slot Id : <41> +21:12:55 Transaction Type : REQUEST +21:12:55 Received From : +21:12:55 ============================================================================ +21:12:55 FNo. Len. Field Value +21:12:55 ============================================================================ +21:12:55 [ 1] [ 4] [0800] +21:12:55 [ 7] [ 10] [0320021203] +21:12:55 [ 11] [ 6] [158416] +21:12:55 [ 70] [ 3] [301] +21:12:55 ============================================================================ +21:12:55 + + +waiting on router queue for slot.... +21:12:55 Sending to : +21:12:55 ============================================================================ +21:12:55 ============================================================================ +21:12:55 Slot Id : <41> +21:12:55 Transaction Type : RESPONSE +21:12:55 Received From : +21:12:55 ============================================================================ +21:12:55 FNo. Len. Field Value +21:12:55 ============================================================================ +21:12:55 [ 1] [ 4] [0810] +21:12:55 [ 7] [ 10] [0320021203] +21:12:55 [ 11] [ 6] [158416] +21:12:55 [ 39] [ 2] [00] +21:12:55 [ 70] [ 3] [301] +21:12:55 ============================================================================ +21:12:55 Calculate Source COMM Id = 2 +21:12:55 ============================================================================ +21:12:55 + + +waiting on router queue for slot.... +21:13:06 ============================================================================ +21:13:06 Slot Id : <20> +21:13:06 Transaction Type : REQUEST +21:13:06 Received From : +21:13:06 ============================================================================ +21:13:06 FNo. Len. Field Value +21:13:06 ============================================================================ +21:13:06 [ 1] [ 4] [0800] +21:13:06 [ 7] [ 10] [0321042457] +21:13:06 [ 11] [ 6] [212457] +21:13:06 [ 37] [ 12] [57921212457] +21:13:06 [ 70] [ 3] [301] +21:13:06 ============================================================================ +21:13:06 + + +waiting on router queue for slot.... +21:13:06 Sending to : +21:13:06 ============================================================================ +21:13:06 ============================================================================ +21:13:06 Slot Id : <20> +21:13:06 Transaction Type : RESPONSE +21:13:06 Received From : +21:13:06 ============================================================================ +21:13:06 FNo. Len. Field Value +21:13:06 ============================================================================ +21:13:06 [ 1] [ 4] [0810] +21:13:06 [ 7] [ 10] [0321042457] +21:13:06 [ 11] [ 6] [212457] +21:13:06 [ 37] [ 12] [579212124570] +21:13:06 [ 39] [ 2] [00] +21:13:06 [ 70] [ 3] [810] +21:13:06 ============================================================================ +21:13:06 Calculate Source COMM Id = 6 +21:13:06 ============================================================================ +21:13:06 + + +waiting on router queue for slot.... +21:13:10 ============================================================================ +21:13:10 Slot Id : <464> +21:13:10 Transaction Type : REQUEST +21:13:10 Received From : +21:13:10 ============================================================================ +21:13:10 FNo. Len. Field Value +21:13:10 ============================================================================ +21:13:10 [ 1] [ 4] [0800] +21:13:10 [ 7] [ 10] [0320021218] +21:13:10 [ 11] [ 6] [158417] +21:13:10 [ 70] [ 3] [301] +21:13:10 ============================================================================ +21:13:10 + + +waiting on router queue for slot.... +21:13:10 Sending to : +21:13:10 ============================================================================ +21:13:10 ============================================================================ +21:13:10 Slot Id : <464> +21:13:10 Transaction Type : RESPONSE +21:13:10 Received From : +21:13:10 ============================================================================ +21:13:10 FNo. Len. Field Value +21:13:10 ============================================================================ +21:13:10 [ 1] [ 4] [0810] +21:13:10 [ 7] [ 10] [0320021218] +21:13:10 [ 11] [ 6] [158417] +21:13:10 [ 39] [ 2] [00] +21:13:10 [ 70] [ 3] [301] +21:13:10 ============================================================================ +21:13:10 Calculate Source COMM Id = 2 +21:13:10 ============================================================================ +21:13:10 + + +waiting on router queue for slot.... +21:13:25 ============================================================================ +21:13:25 Slot Id : <48> +21:13:25 Transaction Type : REQUEST +21:13:25 Received From : +21:13:25 ============================================================================ +21:13:25 FNo. Len. Field Value +21:13:25 ============================================================================ +21:13:25 [ 1] [ 4] [0800] +21:13:25 [ 7] [ 10] [0320021233] +21:13:25 [ 11] [ 6] [158418] +21:13:25 [ 70] [ 3] [301] +21:13:25 ============================================================================ +21:13:25 + + +waiting on router queue for slot.... +21:13:25 Sending to : +21:13:25 ============================================================================ +21:13:25 ============================================================================ +21:13:25 Slot Id : <48> +21:13:25 Transaction Type : RESPONSE +21:13:25 Received From : +21:13:25 ============================================================================ +21:13:25 FNo. Len. Field Value +21:13:25 ============================================================================ +21:13:25 [ 1] [ 4] [0810] +21:13:25 [ 7] [ 10] [0320021233] +21:13:25 [ 11] [ 6] [158418] +21:13:25 [ 39] [ 2] [00] +21:13:25 [ 70] [ 3] [301] +21:13:25 ============================================================================ +21:13:25 Calculate Source COMM Id = 2 +21:13:25 ============================================================================ +21:13:25 + + +waiting on router queue for slot.... +21:13:40 ============================================================================ +21:13:40 Slot Id : <46> +21:13:40 Transaction Type : REQUEST +21:13:40 Received From : +21:13:40 ============================================================================ +21:13:40 FNo. Len. Field Value +21:13:40 ============================================================================ +21:13:40 [ 1] [ 4] [0800] +21:13:40 [ 7] [ 10] [0320021248] +21:13:40 [ 11] [ 6] [158419] +21:13:40 [ 70] [ 3] [301] +21:13:40 ============================================================================ +21:13:40 + + +waiting on router queue for slot.... +21:13:40 Sending to : +21:13:40 ============================================================================ +21:13:40 ============================================================================ +21:13:40 Slot Id : <46> +21:13:40 Transaction Type : RESPONSE +21:13:40 Received From : +21:13:40 ============================================================================ +21:13:40 FNo. Len. Field Value +21:13:40 ============================================================================ +21:13:40 [ 1] [ 4] [0810] +21:13:40 [ 7] [ 10] [0320021248] +21:13:40 [ 11] [ 6] [158419] +21:13:40 [ 39] [ 2] [00] +21:13:40 [ 70] [ 3] [301] +21:13:40 ============================================================================ +21:13:40 Calculate Source COMM Id = 2 +21:13:40 ============================================================================ +21:13:40 + + +waiting on router queue for slot.... +21:13:44 ============================================================================ +21:13:44 Slot Id : <27> +21:13:44 Transaction Type : REQUEST +21:13:44 Received From : +21:13:44 ============================================================================ +21:13:44 FNo. Len. Field Value +21:13:44 ============================================================================ +21:13:44 [ 1] [ 4] [0800] +21:13:44 [ 2] [ 5] [02531] +21:13:44 [ 3] [ 6] [579218] +21:13:44 [ 7] [ 10] [0320141344] +21:13:44 [ 11] [ 6] [807644] +21:13:44 [ 15] [ 10] [0320141344] +21:13:44 [ 37] [ 11] [57921807644] +21:13:44 [ 70] [ 3] [001] +21:13:44 ============================================================================ +21:13:44 + + +waiting on router queue for slot.... +21:13:44 ============================================================================ +21:13:44 Slot Id : <27> +21:13:44 Transaction Type : RESPONSE +21:13:44 Received From : +21:13:44 ============================================================================ +21:13:44 FNo. Len. Field Value +21:13:44 ============================================================================ +21:13:44 [ 1] [ 4] [0810] +21:13:44 [ 7] [ 10] [0320141344] +21:13:44 [ 11] [ 6] [807644] +21:13:44 [ 15] [ 4] [0320] +21:13:44 [ 37] [ 12] [57921807644] +21:13:44 [ 39] [ 2] [00] +21:13:44 [ 70] [ 3] [001] +21:13:44 ============================================================================ +21:13:44 Sending to : +21:13:44 ============================================================================ +21:13:44 + + +waiting on router queue for slot.... +21:13:51 ============================================================================ +21:13:51 Slot Id : <69> +21:13:51 Transaction Type : REQUEST +21:13:51 Received From : +21:13:51 ============================================================================ +21:13:51 FNo. Len. Field Value +21:13:51 ============================================================================ +21:13:51 [ 1] [ 4] [0800] +21:13:51 [ 7] [ 10] [0320021259] +21:13:51 [ 11] [ 6] [158420] +21:13:51 [ 70] [ 3] [301] +21:13:51 ============================================================================ +21:13:51 + + +waiting on router queue for slot.... +21:13:51 Sending to : +21:13:51 ============================================================================ +21:13:51 ============================================================================ +21:13:51 Slot Id : <69> +21:13:51 Transaction Type : RESPONSE +21:13:51 Received From : +21:13:51 ============================================================================ +21:13:51 FNo. Len. Field Value +21:13:51 ============================================================================ +21:13:51 [ 1] [ 4] [0810] +21:13:51 [ 7] [ 10] [0320021259] +21:13:51 [ 11] [ 6] [158420] +21:13:51 [ 39] [ 2] [00] +21:13:51 [ 70] [ 3] [301] +21:13:51 ============================================================================ +21:13:51 Calculate Source COMM Id = 2 +21:13:51 ============================================================================ +21:13:51 + + +waiting on router queue for slot.... +21:14:07 ============================================================================ +21:14:07 Slot Id : <19> +21:14:07 Transaction Type : REQUEST +21:14:07 Received From : +21:14:07 ============================================================================ +21:14:07 FNo. Len. Field Value +21:14:07 ============================================================================ +21:14:07 [ 1] [ 4] [0800] +21:14:07 [ 7] [ 10] [0320021315] +21:14:07 [ 11] [ 6] [158421] +21:14:07 [ 70] [ 3] [301] +21:14:07 ============================================================================ +21:14:07 + + +waiting on router queue for slot.... +21:14:07 Sending to : +21:14:07 ============================================================================ +21:14:07 ============================================================================ +21:14:07 Slot Id : <19> +21:14:07 Transaction Type : RESPONSE +21:14:07 Received From : +21:14:07 ============================================================================ +21:14:07 FNo. Len. Field Value +21:14:07 ============================================================================ +21:14:07 [ 1] [ 4] [0810] +21:14:07 [ 7] [ 10] [0320021315] +21:14:07 [ 11] [ 6] [158421] +21:14:07 [ 39] [ 2] [00] +21:14:07 [ 70] [ 3] [301] +21:14:07 ============================================================================ +21:14:07 Calculate Source COMM Id = 2 +21:14:07 ============================================================================ +21:14:07 + + +waiting on router queue for slot.... +21:14:11 ============================================================================ +21:14:11 Slot Id : <54> +21:14:11 Transaction Type : REQUEST +21:14:11 Received From : +21:14:11 ============================================================================ +21:14:11 FNo. Len. Field Value +21:14:11 ============================================================================ +21:14:11 [ 1] [ 4] [0800] +21:14:11 [ 7] [ 10] [0321042602] +21:14:11 [ 11] [ 6] [212602] +21:14:11 [ 37] [ 12] [57921212602] +21:14:11 [ 70] [ 3] [301] +21:14:11 ============================================================================ +21:14:11 + + +waiting on router queue for slot.... +21:14:11 Sending to : +21:14:11 ============================================================================ +21:14:11 ============================================================================ +21:14:11 Slot Id : <54> +21:14:11 Transaction Type : RESPONSE +21:14:11 Received From : +21:14:11 ============================================================================ +21:14:11 FNo. Len. Field Value +21:14:11 ============================================================================ +21:14:11 [ 1] [ 4] [0810] +21:14:11 [ 7] [ 10] [0321042602] +21:14:11 [ 11] [ 6] [212602] +21:14:11 [ 37] [ 12] [579212126020] +21:14:11 [ 39] [ 2] [00] +21:14:11 [ 70] [ 3] [810] +21:14:11 ============================================================================ +21:14:11 Calculate Source COMM Id = 6 +21:14:11 ============================================================================ +21:14:11 + + +waiting on router queue for slot.... +21:14:18 ============================================================================ +21:14:18 Slot Id : <78> +21:14:18 Transaction Type : REQUEST +21:14:18 Received From : +21:14:18 ============================================================================ +21:14:18 FNo. Len. Field Value +21:14:18 ============================================================================ +21:14:18 [ 1] [ 4] [0800] +21:14:18 [ 7] [ 10] [0320021326] +21:14:18 [ 11] [ 6] [158422] +21:14:18 [ 70] [ 3] [301] +21:14:18 ============================================================================ +21:14:18 + + +waiting on router queue for slot.... +21:14:18 Sending to : +21:14:18 ============================================================================ +21:14:18 ============================================================================ +21:14:18 Slot Id : <78> +21:14:18 Transaction Type : RESPONSE +21:14:18 Received From : +21:14:18 ============================================================================ +21:14:18 FNo. Len. Field Value +21:14:18 ============================================================================ +21:14:18 [ 1] [ 4] [0810] +21:14:18 [ 7] [ 10] [0320021326] +21:14:18 [ 11] [ 6] [158422] +21:14:18 [ 39] [ 2] [00] +21:14:18 [ 70] [ 3] [301] +21:14:18 ============================================================================ +21:14:18 Calculate Source COMM Id = 2 +21:14:18 ============================================================================ +21:14:18 + + +waiting on router queue for slot.... +21:14:28 ============================================================================ +21:14:28 Slot Id : <47> +21:14:28 Transaction Type : REQUEST +21:14:28 Received From : +21:14:28 ============================================================================ +21:14:28 FNo. Len. Field Value +21:14:28 ============================================================================ +21:14:28 [ 1] [ 4] [0800] +21:14:28 [ 7] [ 10] [0320021336] +21:14:28 [ 11] [ 6] [158423] +21:14:28 [ 70] [ 3] [301] +21:14:28 ============================================================================ +21:14:28 + + +waiting on router queue for slot.... +21:14:28 Sending to : +21:14:28 ============================================================================ +21:14:28 ============================================================================ +21:14:28 Slot Id : <47> +21:14:28 Transaction Type : RESPONSE +21:14:28 Received From : +21:14:28 ============================================================================ +21:14:28 FNo. Len. Field Value +21:14:28 ============================================================================ +21:14:28 [ 1] [ 4] [0810] +21:14:28 [ 7] [ 10] [0320021336] +21:14:28 [ 11] [ 6] [158423] +21:14:28 [ 39] [ 2] [00] +21:14:28 [ 70] [ 3] [301] +21:14:28 ============================================================================ +21:14:28 Calculate Source COMM Id = 2 +21:14:28 ============================================================================ +21:14:28 + + +waiting on router queue for slot.... +21:14:39 ============================================================================ +21:14:39 Slot Id : <57> +21:14:39 Transaction Type : REQUEST +21:14:39 Received From : +21:14:39 ============================================================================ +21:14:39 FNo. Len. Field Value +21:14:39 ============================================================================ +21:14:39 [ 1] [ 4] [0800] +21:14:39 [ 7] [ 10] [0320021347] +21:14:39 [ 11] [ 6] [158424] +21:14:39 [ 70] [ 3] [301] +21:14:39 ============================================================================ +21:14:39 + + +waiting on router queue for slot.... +21:14:39 Sending to : +21:14:39 ============================================================================ +21:14:39 ============================================================================ +21:14:39 Slot Id : <57> +21:14:39 Transaction Type : RESPONSE +21:14:39 Received From : +21:14:39 ============================================================================ +21:14:39 FNo. Len. Field Value +21:14:39 ============================================================================ +21:14:39 [ 1] [ 4] [0810] +21:14:39 [ 7] [ 10] [0320021347] +21:14:39 [ 11] [ 6] [158424] +21:14:39 [ 39] [ 2] [00] +21:14:39 [ 70] [ 3] [301] +21:14:39 ============================================================================ +21:14:39 Calculate Source COMM Id = 2 +21:14:39 ============================================================================ +21:14:39 + + +waiting on router queue for slot.... +21:14:46 ============================================================================ +21:14:46 Slot Id : <24> +21:14:46 Transaction Type : REQUEST +21:14:46 Received From : +21:14:46 ============================================================================ +21:14:46 FNo. Len. Field Value +21:14:46 ============================================================================ +21:14:46 [ 1] [ 4] [0800] +21:14:46 [ 2] [ 5] [02531] +21:14:46 [ 3] [ 6] [579218] +21:14:46 [ 7] [ 10] [0320141446] +21:14:46 [ 11] [ 6] [807645] +21:14:46 [ 15] [ 10] [0320141446] +21:14:46 [ 37] [ 11] [57921807645] +21:14:46 [ 70] [ 3] [001] +21:14:46 ============================================================================ +21:14:46 + + +waiting on router queue for slot.... +21:14:46 ============================================================================ +21:14:46 Slot Id : <24> +21:14:46 Transaction Type : RESPONSE +21:14:46 Received From : +21:14:46 ============================================================================ +21:14:46 FNo. Len. Field Value +21:14:46 ============================================================================ +21:14:46 [ 1] [ 4] [0810] +21:14:46 [ 7] [ 10] [0320141446] +21:14:46 [ 11] [ 6] [807645] +21:14:46 [ 15] [ 4] [0320] +21:14:46 [ 37] [ 12] [57921807645] +21:14:46 [ 39] [ 2] [00] +21:14:46 [ 70] [ 3] [001] +21:14:46 ============================================================================ +21:14:46 Sending to : +21:14:46 ============================================================================ +21:14:46 + + +waiting on router queue for slot.... +21:14:50 ============================================================================ +21:14:50 Slot Id : <34> +21:14:50 Transaction Type : REQUEST +21:14:50 Received From : +21:14:50 ============================================================================ +21:14:50 FNo. Len. Field Value +21:14:50 ============================================================================ +21:14:50 [ 1] [ 4] [0800] +21:14:50 [ 7] [ 10] [0320021358] +21:14:50 [ 11] [ 6] [158425] +21:14:50 [ 70] [ 3] [301] +21:14:50 ============================================================================ +21:14:50 + + +waiting on router queue for slot.... +21:14:50 Sending to : +21:14:50 ============================================================================ +21:14:50 ============================================================================ +21:14:50 Slot Id : <34> +21:14:50 Transaction Type : RESPONSE +21:14:50 Received From : +21:14:50 ============================================================================ +21:14:50 FNo. Len. Field Value +21:14:50 ============================================================================ +21:14:50 [ 1] [ 4] [0810] +21:14:50 [ 7] [ 10] [0320021358] +21:14:50 [ 11] [ 6] [158425] +21:14:50 [ 39] [ 2] [00] +21:14:50 [ 70] [ 3] [301] +21:14:50 ============================================================================ +21:14:50 Calculate Source COMM Id = 2 +21:14:50 ============================================================================ +21:14:50 + + +waiting on router queue for slot.... +21:14:55 ============================================================================ +21:14:55 Slot Id : <49> +21:14:55 Transaction Type : REQUEST +21:14:55 Received From : +21:14:55 ============================================================================ +21:14:55 FNo. Len. Field Value +21:14:55 ============================================================================ +21:14:55 [ 1] [ 4] [0800] +21:14:55 [ 7] [ 10] [0320142242] +21:14:55 [ 11] [ 6] [018444] +21:14:55 [ 37] [ 12] [57921018444] +21:14:55 [ 70] [ 3] [301] +21:14:55 ============================================================================ +21:14:55 + + +waiting on router queue for slot.... +21:14:55 Sending to : +21:14:55 ============================================================================ +21:14:55 ============================================================================ +21:14:55 Slot Id : <49> +21:14:55 Transaction Type : RESPONSE +21:14:55 Received From : +21:14:55 ============================================================================ +21:14:55 FNo. Len. Field Value +21:14:55 ============================================================================ +21:14:55 [ 1] [ 4] [0810] +21:14:55 [ 7] [ 10] [0320142242] +21:14:55 [ 11] [ 6] [018444] +21:14:55 [ 37] [ 12] [579210184440] +21:14:55 [ 39] [ 2] [00] +21:14:55 [ 70] [ 3] [810] +21:14:55 ============================================================================ +21:14:55 Calculate Source COMM Id = 1 +21:14:55 ============================================================================ +21:14:55 + + +waiting on router queue for slot.... +21:15:02 ============================================================================ +21:15:02 Slot Id : <81> +21:15:02 Transaction Type : REQUEST +21:15:02 Received From : +21:15:02 ============================================================================ +21:15:02 FNo. Len. Field Value +21:15:02 ============================================================================ +21:15:02 [ 1] [ 4] [0800] +21:15:02 [ 7] [ 10] [0320021411] +21:15:02 [ 11] [ 6] [158426] +21:15:02 [ 70] [ 3] [301] +21:15:02 ============================================================================ +21:15:02 + + +waiting on router queue for slot.... +21:15:02 Sending to : +21:15:02 ============================================================================ +21:15:02 ============================================================================ +21:15:02 Slot Id : <81> +21:15:02 Transaction Type : RESPONSE +21:15:02 Received From : +21:15:02 ============================================================================ +21:15:02 FNo. Len. Field Value +21:15:02 ============================================================================ +21:15:02 [ 1] [ 4] [0810] +21:15:02 [ 7] [ 10] [0320021411] +21:15:02 [ 11] [ 6] [158426] +21:15:02 [ 39] [ 2] [00] +21:15:02 [ 70] [ 3] [301] +21:15:02 ============================================================================ +21:15:02 Calculate Source COMM Id = 2 +21:15:02 ============================================================================ +21:15:02 + + +waiting on router queue for slot.... +21:15:11 ============================================================================ +21:15:11 Slot Id : <42> +21:15:11 Transaction Type : REQUEST +21:15:11 Received From : +21:15:11 ============================================================================ +21:15:11 FNo. Len. Field Value +21:15:11 ============================================================================ +21:15:11 [ 1] [ 4] [0800] +21:15:11 [ 7] [ 10] [0320141508] +21:15:11 [ 11] [ 6] [082547] +21:15:11 [ 37] [ 12] [507921082547] +21:15:11 [ 70] [ 3] [001] +21:15:11 ============================================================================ +21:15:11 + + +waiting on router queue for slot.... +21:15:11 Sending to : +21:15:11 ============================================================================ +21:15:11 ============================================================================ +21:15:11 Slot Id : <42> +21:15:11 Transaction Type : RESPONSE +21:15:11 Received From : +21:15:11 ============================================================================ +21:15:11 FNo. Len. Field Value +21:15:11 ============================================================================ +21:15:11 [ 1] [ 4] [0810] +21:15:11 [ 7] [ 10] [0320141508] +21:15:11 [ 11] [ 6] [082547] +21:15:11 [ 37] [ 12] [507921082547] +21:15:11 [ 39] [ 2] [00] +21:15:11 [ 70] [ 3] [001] +21:15:11 ============================================================================ +21:15:11 Calculate Source COMM Id = 0 +21:15:11 ============================================================================ +21:15:11 + + +waiting on router queue for slot.... +21:15:13 ============================================================================ +21:15:13 Slot Id : <88> +21:15:13 Transaction Type : REQUEST +21:15:13 Received From : +21:15:13 ============================================================================ +21:15:13 FNo. Len. Field Value +21:15:13 ============================================================================ +21:15:13 [ 1] [ 4] [0800] +21:15:13 [ 7] [ 10] [0320021421] +21:15:13 [ 11] [ 6] [158427] +21:15:13 [ 70] [ 3] [301] +21:15:13 ============================================================================ +21:15:13 + + +waiting on router queue for slot.... +21:15:13 Sending to : +21:15:13 ============================================================================ +21:15:13 ============================================================================ +21:15:13 Slot Id : <88> +21:15:13 Transaction Type : RESPONSE +21:15:13 Received From : +21:15:13 ============================================================================ +21:15:13 FNo. Len. Field Value +21:15:13 ============================================================================ +21:15:13 [ 1] [ 4] [0810] +21:15:13 [ 7] [ 10] [0320021421] +21:15:13 [ 11] [ 6] [158427] +21:15:13 [ 39] [ 2] [00] +21:15:13 [ 70] [ 3] [301] +21:15:13 ============================================================================ +21:15:13 Calculate Source COMM Id = 2 +21:15:13 ============================================================================ +21:15:13 + + +waiting on router queue for slot.... +21:15:16 ============================================================================ +21:15:16 Slot Id : <86> +21:15:16 Transaction Type : REQUEST +21:15:16 Received From : +21:15:16 ============================================================================ +21:15:16 FNo. Len. Field Value +21:15:16 ============================================================================ +21:15:16 [ 1] [ 4] [0800] +21:15:16 [ 7] [ 10] [0321042707] +21:15:16 [ 11] [ 6] [212707] +21:15:16 [ 37] [ 12] [57921212707] +21:15:16 [ 70] [ 3] [301] +21:15:16 ============================================================================ +21:15:16 + + +waiting on router queue for slot.... +21:15:16 Sending to : +21:15:16 ============================================================================ +21:15:16 ============================================================================ +21:15:16 Slot Id : <86> +21:15:16 Transaction Type : RESPONSE +21:15:16 Received From : +21:15:16 ============================================================================ +21:15:16 FNo. Len. Field Value +21:15:16 ============================================================================ +21:15:16 [ 1] [ 4] [0810] +21:15:16 [ 7] [ 10] [0321042707] +21:15:16 [ 11] [ 6] [212707] +21:15:16 [ 37] [ 12] [579212127070] +21:15:16 [ 39] [ 2] [00] +21:15:16 [ 70] [ 3] [810] +21:15:16 ============================================================================ +21:15:16 Calculate Source COMM Id = 6 +21:15:16 ============================================================================ +21:15:16 + + +waiting on router queue for slot.... +21:15:24 ============================================================================ +21:15:24 Slot Id : <89> +21:15:24 Transaction Type : REQUEST +21:15:24 Received From : +21:15:24 ============================================================================ +21:15:24 FNo. Len. Field Value +21:15:24 ============================================================================ +21:15:24 [ 1] [ 4] [0800] +21:15:24 [ 7] [ 10] [0320021432] +21:15:24 [ 11] [ 6] [158428] +21:15:24 [ 70] [ 3] [301] +21:15:24 ============================================================================ +21:15:24 + + +waiting on router queue for slot.... +21:15:24 Sending to : +21:15:24 ============================================================================ +21:15:24 ============================================================================ +21:15:24 Slot Id : <89> +21:15:24 Transaction Type : RESPONSE +21:15:24 Received From : +21:15:24 ============================================================================ +21:15:24 FNo. Len. Field Value +21:15:24 ============================================================================ +21:15:24 [ 1] [ 4] [0810] +21:15:24 [ 7] [ 10] [0320021432] +21:15:24 [ 11] [ 6] [158428] +21:15:24 [ 39] [ 2] [00] +21:15:24 [ 70] [ 3] [301] +21:15:24 ============================================================================ +21:15:24 Calculate Source COMM Id = 2 +21:15:24 ============================================================================ +21:15:24 + + +waiting on router queue for slot.... +21:15:36 ============================================================================ +21:15:36 Slot Id : <79> +21:15:36 Transaction Type : REQUEST +21:15:36 Received From : +21:15:36 ============================================================================ +21:15:36 FNo. Len. Field Value +21:15:36 ============================================================================ +21:15:36 [ 1] [ 4] [0800] +21:15:36 [ 7] [ 10] [0320021444] +21:15:36 [ 11] [ 6] [158429] +21:15:36 [ 70] [ 3] [301] +21:15:36 ============================================================================ +21:15:36 + + +waiting on router queue for slot.... +21:15:36 Sending to : +21:15:36 ============================================================================ +21:15:36 ============================================================================ +21:15:36 Slot Id : <79> +21:15:36 Transaction Type : RESPONSE +21:15:36 Received From : +21:15:36 ============================================================================ +21:15:36 FNo. Len. Field Value +21:15:36 ============================================================================ +21:15:36 [ 1] [ 4] [0810] +21:15:36 [ 7] [ 10] [0320021444] +21:15:36 [ 11] [ 6] [158429] +21:15:36 [ 39] [ 2] [00] +21:15:36 [ 70] [ 3] [301] +21:15:36 ============================================================================ +21:15:36 Calculate Source COMM Id = 2 +21:15:36 ============================================================================ +21:15:36 + + +waiting on router queue for slot.... +21:15:46 ============================================================================ +21:15:46 Slot Id : <59> +21:15:46 Transaction Type : REQUEST +21:15:46 Received From : +21:15:46 ============================================================================ +21:15:46 FNo. Len. Field Value +21:15:46 ============================================================================ +21:15:46 [ 1] [ 4] [0800] +21:15:46 [ 7] [ 10] [0320021455] +21:15:46 [ 11] [ 6] [158430] +21:15:46 [ 70] [ 3] [301] +21:15:46 ============================================================================ +21:15:46 + + +waiting on router queue for slot.... +21:15:46 Sending to : +21:15:46 ============================================================================ +21:15:46 ============================================================================ +21:15:46 Slot Id : <59> +21:15:46 Transaction Type : RESPONSE +21:15:46 Received From : +21:15:46 ============================================================================ +21:15:46 FNo. Len. Field Value +21:15:46 ============================================================================ +21:15:46 [ 1] [ 4] [0810] +21:15:46 [ 7] [ 10] [0320021455] +21:15:46 [ 11] [ 6] [158430] +21:15:46 [ 39] [ 2] [00] +21:15:46 [ 70] [ 3] [301] +21:15:46 ============================================================================ +21:15:46 Calculate Source COMM Id = 2 +21:15:46 ============================================================================ +21:15:46 + + +waiting on router queue for slot.... +21:15:48 ============================================================================ +21:15:48 Slot Id : <58> +21:15:48 Transaction Type : REQUEST +21:15:48 Received From : +21:15:48 ============================================================================ +21:15:48 FNo. Len. Field Value +21:15:48 ============================================================================ +21:15:48 [ 1] [ 4] [0800] +21:15:48 [ 2] [ 5] [02531] +21:15:48 [ 3] [ 6] [579218] +21:15:48 [ 7] [ 10] [0320141548] +21:15:48 [ 11] [ 6] [807646] +21:15:48 [ 15] [ 10] [0320141548] +21:15:48 [ 37] [ 11] [57921807646] +21:15:48 [ 70] [ 3] [001] +21:15:48 ============================================================================ +21:15:48 + + +waiting on router queue for slot.... +21:15:48 ============================================================================ +21:15:48 Slot Id : <58> +21:15:48 Transaction Type : RESPONSE +21:15:48 Received From : +21:15:48 ============================================================================ +21:15:48 FNo. Len. Field Value +21:15:48 ============================================================================ +21:15:48 [ 1] [ 4] [0810] +21:15:48 [ 7] [ 10] [0320141548] +21:15:48 [ 11] [ 6] [807646] +21:15:48 [ 15] [ 4] [0320] +21:15:48 [ 37] [ 12] [57921807646] +21:15:48 [ 39] [ 2] [00] +21:15:48 [ 70] [ 3] [001] +21:15:48 ============================================================================ +21:15:48 Sending to : +21:15:48 ============================================================================ +21:15:48 + + +waiting on router queue for slot.... +21:15:57 ============================================================================ +21:15:57 Slot Id : <84> +21:15:57 Transaction Type : REQUEST +21:15:57 Received From : +21:15:57 ============================================================================ +21:15:57 FNo. Len. Field Value +21:15:57 ============================================================================ +21:15:57 [ 1] [ 4] [0800] +21:15:57 [ 7] [ 10] [0320021505] +21:15:57 [ 11] [ 6] [158431] +21:15:57 [ 70] [ 3] [301] +21:15:57 ============================================================================ +21:15:57 + + +waiting on router queue for slot.... +21:15:57 Sending to : +21:15:57 ============================================================================ +21:15:57 ============================================================================ +21:15:57 Slot Id : <84> +21:15:57 Transaction Type : RESPONSE +21:15:57 Received From : +21:15:57 ============================================================================ +21:15:57 FNo. Len. Field Value +21:15:57 ============================================================================ +21:15:57 [ 1] [ 4] [0810] +21:15:57 [ 7] [ 10] [0320021505] +21:15:57 [ 11] [ 6] [158431] +21:15:57 [ 39] [ 2] [00] +21:15:57 [ 70] [ 3] [301] +21:15:57 ============================================================================ +21:15:57 Calculate Source COMM Id = 2 +21:15:57 ============================================================================ +21:15:57 + + +waiting on router queue for slot.... +21:16:08 ============================================================================ +21:16:08 Slot Id : <5> +21:16:08 Transaction Type : REQUEST +21:16:08 Received From : +21:16:08 ============================================================================ +21:16:08 FNo. Len. Field Value +21:16:08 ============================================================================ +21:16:08 [ 1] [ 4] [0800] +21:16:08 [ 7] [ 10] [0320021516] +21:16:08 [ 11] [ 6] [158432] +21:16:08 [ 70] [ 3] [301] +21:16:08 ============================================================================ +21:16:08 + + +waiting on router queue for slot.... +21:16:08 Sending to : +21:16:08 ============================================================================ +21:16:08 ============================================================================ +21:16:08 Slot Id : <5> +21:16:08 Transaction Type : RESPONSE +21:16:08 Received From : +21:16:08 ============================================================================ +21:16:08 FNo. Len. Field Value +21:16:08 ============================================================================ +21:16:08 [ 1] [ 4] [0810] +21:16:08 [ 7] [ 10] [0320021516] +21:16:08 [ 11] [ 6] [158432] +21:16:08 [ 39] [ 2] [00] +21:16:08 [ 70] [ 3] [301] +21:16:08 ============================================================================ +21:16:08 Calculate Source COMM Id = 2 +21:16:08 ============================================================================ +21:16:08 + + +waiting on router queue for slot.... +21:16:18 ============================================================================ +21:16:18 Slot Id : <67> +21:16:18 Transaction Type : REQUEST +21:16:18 Received From : +21:16:18 ============================================================================ +21:16:18 FNo. Len. Field Value +21:16:18 ============================================================================ +21:16:18 [ 1] [ 4] [0800] +21:16:18 [ 7] [ 10] [0320021527] +21:16:18 [ 11] [ 6] [158433] +21:16:18 [ 70] [ 3] [301] +21:16:18 ============================================================================ +21:16:18 + + +waiting on router queue for slot.... +21:16:18 Sending to : +21:16:18 ============================================================================ +21:16:18 ============================================================================ +21:16:18 Slot Id : <67> +21:16:18 Transaction Type : RESPONSE +21:16:18 Received From : +21:16:18 ============================================================================ +21:16:18 FNo. Len. Field Value +21:16:18 ============================================================================ +21:16:18 [ 1] [ 4] [0810] +21:16:18 [ 7] [ 10] [0320021527] +21:16:18 [ 11] [ 6] [158433] +21:16:18 [ 39] [ 2] [00] +21:16:18 [ 70] [ 3] [301] +21:16:18 ============================================================================ +21:16:18 Calculate Source COMM Id = 2 +21:16:18 ============================================================================ +21:16:18 + + +waiting on router queue for slot.... +21:16:20 ============================================================================ +21:16:20 Slot Id : <93> +21:16:20 Transaction Type : REQUEST +21:16:20 Received From : +21:16:20 ============================================================================ +21:16:20 FNo. Len. Field Value +21:16:20 ============================================================================ +21:16:20 [ 1] [ 4] [0800] +21:16:20 [ 7] [ 10] [0320141412] +21:16:20 [ 11] [ 6] [012670] +21:16:20 [ 37] [ 12] [57921012670] +21:16:20 [ 70] [ 3] [301] +21:16:20 ============================================================================ +21:16:21 + + +waiting on router queue for slot.... +21:16:21 Sending to : +21:16:21 ============================================================================ +21:16:21 ============================================================================ +21:16:21 Slot Id : <93> +21:16:21 Transaction Type : RESPONSE +21:16:21 Received From : +21:16:21 ============================================================================ +21:16:21 FNo. Len. Field Value +21:16:21 ============================================================================ +21:16:21 [ 1] [ 4] [0810] +21:16:21 [ 7] [ 10] [0320141412] +21:16:21 [ 11] [ 6] [012670] +21:16:21 [ 37] [ 12] [579210126700] +21:16:21 [ 39] [ 2] [00] +21:16:21 [ 70] [ 3] [810] +21:16:21 ============================================================================ +21:16:21 Calculate Source COMM Id = 4 +21:16:21 ============================================================================ +21:16:21 + + +waiting on router queue for slot.... +21:16:21 ============================================================================ +21:16:21 Slot Id : <62> +21:16:21 Transaction Type : REQUEST +21:16:21 Received From : +21:16:21 ============================================================================ +21:16:21 FNo. Len. Field Value +21:16:21 ============================================================================ +21:16:21 [ 1] [ 4] [0800] +21:16:21 [ 7] [ 10] [0321042812] +21:16:21 [ 11] [ 6] [212812] +21:16:21 [ 37] [ 12] [57921212812] +21:16:21 [ 70] [ 3] [301] +21:16:21 ============================================================================ +21:16:21 + + +waiting on router queue for slot.... +21:16:21 Sending to : +21:16:21 ============================================================================ +21:16:21 ============================================================================ +21:16:21 Slot Id : <62> +21:16:21 Transaction Type : RESPONSE +21:16:21 Received From : +21:16:21 ============================================================================ +21:16:21 FNo. Len. Field Value +21:16:21 ============================================================================ +21:16:21 [ 1] [ 4] [0810] +21:16:21 [ 7] [ 10] [0321042812] +21:16:21 [ 11] [ 6] [212812] +21:16:21 [ 37] [ 12] [579212128120] +21:16:21 [ 39] [ 2] [00] +21:16:21 [ 70] [ 3] [810] +21:16:21 ============================================================================ +21:16:21 Calculate Source COMM Id = 6 +21:16:21 ============================================================================ +21:16:21 + + +waiting on router queue for slot.... +21:16:29 ============================================================================ +21:16:29 Slot Id : <39> +21:16:29 Transaction Type : REQUEST +21:16:29 Received From : +21:16:29 ============================================================================ +21:16:29 FNo. Len. Field Value +21:16:29 ============================================================================ +21:16:29 [ 1] [ 4] [0800] +21:16:29 [ 7] [ 10] [0320021537] +21:16:29 [ 11] [ 6] [158434] +21:16:29 [ 70] [ 3] [301] +21:16:29 ============================================================================ +21:16:29 + + +waiting on router queue for slot.... +21:16:29 Sending to : +21:16:29 ============================================================================ +21:16:29 ============================================================================ +21:16:29 Slot Id : <39> +21:16:29 Transaction Type : RESPONSE +21:16:29 Received From : +21:16:29 ============================================================================ +21:16:29 FNo. Len. Field Value +21:16:29 ============================================================================ +21:16:29 [ 1] [ 4] [0810] +21:16:29 [ 7] [ 10] [0320021537] +21:16:29 [ 11] [ 6] [158434] +21:16:29 [ 39] [ 2] [00] +21:16:29 [ 70] [ 3] [301] +21:16:29 ============================================================================ +21:16:29 Calculate Source COMM Id = 2 +21:16:29 ============================================================================ +21:16:29 + + +waiting on router queue for slot.... +21:16:41 ============================================================================ +21:16:41 Slot Id : <56> +21:16:41 Transaction Type : REQUEST +21:16:41 Received From : +21:16:41 ============================================================================ +21:16:41 FNo. Len. Field Value +21:16:41 ============================================================================ +21:16:41 [ 1] [ 4] [0200] +21:16:41 [ 2] [ 16] [6213543000203652] +21:16:41 [ 3] [ 6] [010000] +21:16:41 [ 4] [ 12] [000010000000] +21:16:41 [ 7] [ 10] [0320141549] +21:16:41 [ 11] [ 6] [271676] +21:16:41 [ 12] [ 6] [211549] +21:16:41 [ 13] [ 4] [0320] +21:16:41 [ 14] [ 4] [4912] +21:16:41 [ 15] [ 4] [0320] +21:16:41 [ 18] [ 4] [6011] +21:16:41 [ 19] [ 3] [418] +21:16:41 [ 22] [ 3] [021] +21:16:41 [ 25] [ 2] [01] +21:16:41 [ 28] [ 9] [D00002000] +21:16:41 [ 32] [ 6] [180893] +21:16:41 [ 35] [ 32] [6213543000203652=491212010365119] +21:16:41 [ 37] [ 12] [507914271676] +21:16:41 [ 41] [ 8] [0528LPBP] +21:16:41 [ 42] [ 15] [999999 ] +21:16:41 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +21:16:41 [ 49] [ 3] [418] +21:16:41 [ 52] [ 16] [32DB447E3E2B673E] +21:16:41 ============================================================================ +21:16:41 + + +waiting on router queue for slot.... +21:16:41 Sending to : +21:16:41 ============================================================================ +21:16:41 Sending to : +21:16:41 ============================================================================ +21:16:41 ============================================================================ +21:16:41 Slot Id : <56> +21:16:41 Transaction Type : REQUEST +21:16:41 Received From : +21:16:41 ============================================================================ +21:16:41 FNo. Len. Field Value +21:16:41 ============================================================================ +21:16:41 [ 1] [ 4] [0200] +21:16:41 [ 2] [ 16] [6213543000203652] +21:16:41 [ 3] [ 6] [010000] +21:16:41 [ 4] [ 12] [000010000000] +21:16:41 [ 7] [ 10] [0320141549] +21:16:41 [ 11] [ 6] [271676] +21:16:41 [ 12] [ 6] [211549] +21:16:41 [ 13] [ 4] [0320] +21:16:41 [ 14] [ 4] [4912] +21:16:41 [ 15] [ 4] [0320] +21:16:41 [ 18] [ 4] [6011] +21:16:41 [ 19] [ 3] [418] +21:16:41 [ 22] [ 3] [021] +21:16:41 [ 25] [ 2] [01] +21:16:41 [ 28] [ 9] [D00002000] +21:16:41 [ 32] [ 6] [180893] +21:16:41 [ 35] [ 32] [6213543000203652=491212010365119] +21:16:41 [ 37] [ 12] [507914271676] +21:16:41 [ 41] [ 8] [0528LPBP] +21:16:41 [ 42] [ 15] [999999 ] +21:16:41 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +21:16:41 [ 49] [ 3] [418] +21:16:41 [ 52] [ 16] [32DB447E3E2B673E] +21:16:41 ============================================================================ +21:16:41 + + +waiting on router queue for slot.... +21:16:41 Sending to : +21:16:41 ============================================================================ +21:16:41 ============================================================================ +21:16:41 Slot Id : <56> +21:16:41 Transaction Type : REQUEST +21:16:41 Received From : +21:16:41 ============================================================================ +21:16:41 FNo. Len. Field Value +21:16:41 ============================================================================ +21:16:41 [ 1] [ 4] [0200] +21:16:41 [ 2] [ 16] [6213543000203652] +21:16:41 [ 3] [ 6] [010000] +21:16:41 [ 4] [ 12] [000010000000] +21:16:41 [ 7] [ 10] [0320141549] +21:16:41 [ 11] [ 6] [271676] +21:16:41 [ 12] [ 6] [211549] +21:16:41 [ 13] [ 4] [0320] +21:16:41 [ 14] [ 4] [4912] +21:16:41 [ 15] [ 4] [0320] +21:16:41 [ 18] [ 4] [6011] +21:16:41 [ 19] [ 3] [418] +21:16:41 [ 22] [ 3] [021] +21:16:41 [ 25] [ 2] [01] +21:16:41 [ 28] [ 9] [D00002000] +21:16:41 [ 32] [ 6] [180893] +21:16:41 [ 35] [ 32] [6213543000203652=491212010365119] +21:16:41 [ 37] [ 12] [507914271676] +21:16:41 [ 41] [ 8] [0528LPBP] +21:16:41 [ 42] [ 15] [999999 ] +21:16:41 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +21:16:41 [ 49] [ 3] [418] +21:16:41 [ 52] [ 16] [FD14DDC6EE9BDE7F] +21:16:41 ============================================================================ +21:16:41 + + +waiting on router queue for slot.... +21:16:41 Sending to : <0> +21:16:41 ============================================================================ +21:16:42 ============================================================================ +21:16:42 Slot Id : <56> +21:16:42 Transaction Type : RESPONSE +21:16:42 Received From : +21:16:42 ============================================================================ +21:16:42 FNo. Len. Field Value +21:16:42 ============================================================================ +21:16:42 [ 1] [ 4] [0210] +21:16:42 [ 2] [ 16] [6213543000203652] +21:16:42 [ 3] [ 6] [010000] +21:16:42 [ 4] [ 12] [000010000000] +21:16:42 [ 7] [ 10] [0320141549] +21:16:42 [ 11] [ 6] [271676] +21:16:42 [ 12] [ 6] [211549] +21:16:42 [ 13] [ 4] [0320] +21:16:42 [ 15] [ 4] [0320] +21:16:42 [ 18] [ 4] [6011] +21:16:42 [ 19] [ 3] [418] +21:16:42 [ 32] [ 6] [180893] +21:16:42 [ 35] [ 32] [6213543000203652=491212010365119] +21:16:42 [ 37] [ 12] [507914271676] +21:16:42 [ 38] [ 6] [049870] +21:16:42 [ 39] [ 2] [00] +21:16:42 [ 41] [ 8] [0528LPBP] +21:16:42 [ 49] [ 3] [418] +21:16:42 [ 54] [ 40] [0001418C0000313926320002418C000021192632] +21:16:42 ============================================================================ +21:16:42 Sending to : +21:16:42 ============================================================================ +21:16:42 + + +waiting on router queue for slot.... +21:16:43 ============================================================================ +21:16:43 Slot Id : <56> +21:16:43 Transaction Type : RESPONSE +21:16:43 Received From : +21:16:43 ============================================================================ +21:16:43 FNo. Len. Field Value +21:16:43 ============================================================================ +21:16:43 [ 1] [ 4] [0210] +21:16:43 [ 2] [ 16] [6213543000203652] +21:16:43 [ 3] [ 6] [010000] +21:16:43 [ 4] [ 12] [000010000000] +21:16:43 [ 7] [ 10] [0320141549] +21:16:43 [ 11] [ 6] [271676] +21:16:43 [ 12] [ 6] [211549] +21:16:43 [ 13] [ 4] [0320] +21:16:43 [ 15] [ 4] [0320] +21:16:43 [ 18] [ 4] [6011] +21:16:43 [ 19] [ 3] [418] +21:16:43 [ 32] [ 6] [180893] +21:16:43 [ 35] [ 32] [6213543000203652=491212010365119] +21:16:43 [ 37] [ 12] [507914271676] +21:16:43 [ 38] [ 6] [049870] +21:16:43 [ 39] [ 2] [00] +21:16:43 [ 41] [ 8] [0528LPBP] +21:16:43 [ 49] [ 3] [418] +21:16:43 [ 54] [ 40] [0001418C0000313926320002418C000021192632] +21:16:43 ============================================================================ +21:16:43 Calculate Source COMM Id = 2 +21:16:43 ============================================================================ +21:16:43 + + +waiting on router queue for slot.... +21:16:50 ============================================================================ +21:16:50 Slot Id : <82> +21:16:50 Transaction Type : REQUEST +21:16:50 Received From : +21:16:50 ============================================================================ +21:16:50 FNo. Len. Field Value +21:16:50 ============================================================================ +21:16:50 [ 1] [ 4] [0800] +21:16:50 [ 2] [ 5] [02531] +21:16:50 [ 3] [ 6] [579218] +21:16:50 [ 7] [ 10] [0320141650] +21:16:50 [ 11] [ 6] [807647] +21:16:50 [ 15] [ 10] [0320141650] +21:16:50 [ 37] [ 11] [57921807647] +21:16:50 [ 70] [ 3] [001] +21:16:50 ============================================================================ +21:16:50 + + +waiting on router queue for slot.... +21:16:50 ============================================================================ +21:16:50 Slot Id : <82> +21:16:50 Transaction Type : RESPONSE +21:16:50 Received From : +21:16:50 ============================================================================ +21:16:50 FNo. Len. Field Value +21:16:50 ============================================================================ +21:16:50 [ 1] [ 4] [0810] +21:16:50 [ 7] [ 10] [0320141650] +21:16:50 [ 11] [ 6] [807647] +21:16:50 [ 15] [ 4] [0320] +21:16:50 [ 37] [ 12] [57921807647] +21:16:50 [ 39] [ 2] [00] +21:16:50 [ 70] [ 3] [001] +21:16:50 ============================================================================ +21:16:50 Sending to : +21:16:50 ============================================================================ +21:16:50 + + +waiting on router queue for slot.... +21:16:55 ============================================================================ +21:16:55 Slot Id : <51> +21:16:55 Transaction Type : REQUEST +21:16:55 Received From : +21:16:55 ============================================================================ +21:16:55 FNo. Len. Field Value +21:16:55 ============================================================================ +21:16:55 [ 1] [ 4] [0800] +21:16:55 [ 7] [ 10] [0320021603] +21:16:55 [ 11] [ 6] [158435] +21:16:55 [ 70] [ 3] [301] +21:16:55 ============================================================================ +21:16:55 + + +waiting on router queue for slot.... +21:16:55 Sending to : +21:16:55 ============================================================================ +21:16:55 ============================================================================ +21:16:55 Slot Id : <51> +21:16:55 Transaction Type : RESPONSE +21:16:55 Received From : +21:16:55 ============================================================================ +21:16:55 FNo. Len. Field Value +21:16:55 ============================================================================ +21:16:55 [ 1] [ 4] [0810] +21:16:55 [ 7] [ 10] [0320021603] +21:16:55 [ 11] [ 6] [158435] +21:16:55 [ 39] [ 2] [00] +21:16:55 [ 70] [ 3] [301] +21:16:55 ============================================================================ +21:16:55 Calculate Source COMM Id = 2 +21:16:55 ============================================================================ +21:16:55 + + +waiting on router queue for slot.... +21:17:11 ============================================================================ +21:17:11 Slot Id : <64> +21:17:11 Transaction Type : REQUEST +21:17:11 Received From : +21:17:11 ============================================================================ +21:17:11 FNo. Len. Field Value +21:17:11 ============================================================================ +21:17:11 [ 1] [ 4] [0800] +21:17:11 [ 7] [ 10] [0320021620] +21:17:11 [ 11] [ 6] [158436] +21:17:11 [ 70] [ 3] [301] +21:17:11 ============================================================================ +21:17:11 + + +waiting on router queue for slot.... +21:17:11 Sending to : +21:17:11 ============================================================================ +21:17:11 ============================================================================ +21:17:11 Slot Id : <64> +21:17:11 Transaction Type : RESPONSE +21:17:11 Received From : +21:17:11 ============================================================================ +21:17:11 FNo. Len. Field Value +21:17:11 ============================================================================ +21:17:11 [ 1] [ 4] [0810] +21:17:11 [ 7] [ 10] [0320021620] +21:17:11 [ 11] [ 6] [158436] +21:17:11 [ 39] [ 2] [00] +21:17:11 [ 70] [ 3] [301] +21:17:11 ============================================================================ +21:17:11 Calculate Source COMM Id = 2 +21:17:11 ============================================================================ +21:17:11 + + +waiting on router queue for slot.... +21:17:26 ============================================================================ +21:17:26 Slot Id : <100> +21:17:26 Transaction Type : REQUEST +21:17:26 Received From : +21:17:26 ============================================================================ +21:17:26 FNo. Len. Field Value +21:17:26 ============================================================================ +21:17:26 [ 1] [ 4] [0800] +21:17:26 [ 7] [ 10] [0320021634] +21:17:26 [ 11] [ 6] [158437] +21:17:26 [ 70] [ 3] [301] +21:17:26 ============================================================================ +21:17:26 + + +waiting on router queue for slot.... +21:17:26 Sending to : +21:17:26 ============================================================================ +21:17:26 ============================================================================ +21:17:26 Slot Id : <100> +21:17:26 Transaction Type : RESPONSE +21:17:26 Received From : +21:17:26 ============================================================================ +21:17:26 FNo. Len. Field Value +21:17:26 ============================================================================ +21:17:26 [ 1] [ 4] [0810] +21:17:26 [ 7] [ 10] [0320021634] +21:17:26 [ 11] [ 6] [158437] +21:17:26 [ 39] [ 2] [00] +21:17:26 [ 70] [ 3] [301] +21:17:26 ============================================================================ +21:17:26 Calculate Source COMM Id = 2 +21:17:26 ============================================================================ +21:17:26 + + +waiting on router queue for slot.... +21:17:26 ============================================================================ +21:17:26 Slot Id : <65> +21:17:26 Transaction Type : REQUEST +21:17:26 Received From : +21:17:26 ============================================================================ +21:17:26 FNo. Len. Field Value +21:17:26 ============================================================================ +21:17:26 [ 1] [ 4] [0800] +21:17:26 [ 7] [ 10] [0321042917] +21:17:26 [ 11] [ 6] [212917] +21:17:26 [ 37] [ 12] [57921212917] +21:17:26 [ 70] [ 3] [301] +21:17:26 ============================================================================ +21:17:26 + + +waiting on router queue for slot.... +21:17:26 Sending to : +21:17:26 ============================================================================ +21:17:26 ============================================================================ +21:17:26 Slot Id : <65> +21:17:26 Transaction Type : RESPONSE +21:17:26 Received From : +21:17:26 ============================================================================ +21:17:26 FNo. Len. Field Value +21:17:26 ============================================================================ +21:17:26 [ 1] [ 4] [0810] +21:17:26 [ 7] [ 10] [0321042917] +21:17:26 [ 11] [ 6] [212917] +21:17:26 [ 37] [ 12] [579212129170] +21:17:26 [ 39] [ 2] [00] +21:17:26 [ 70] [ 3] [810] +21:17:26 ============================================================================ +21:17:26 Calculate Source COMM Id = 6 +21:17:26 ============================================================================ +21:17:26 + + +waiting on router queue for slot.... +21:17:31 ============================================================================ +21:17:31 Slot Id : <91> +21:17:31 Transaction Type : REQUEST +21:17:31 Received From : +21:17:31 ============================================================================ +21:17:31 FNo. Len. Field Value +21:17:31 ============================================================================ +21:17:31 [ 1] [ 4] [0200] +21:17:31 [ 2] [ 16] [6213543000203652] +21:17:31 [ 3] [ 6] [010000] +21:17:31 [ 4] [ 12] [000010000000] +21:17:31 [ 7] [ 10] [0320141638] +21:17:31 [ 11] [ 6] [271679] +21:17:31 [ 12] [ 6] [211638] +21:17:31 [ 13] [ 4] [0320] +21:17:31 [ 14] [ 4] [4912] +21:17:31 [ 15] [ 4] [0320] +21:17:31 [ 18] [ 4] [6011] +21:17:31 [ 19] [ 3] [418] +21:17:31 [ 22] [ 3] [021] +21:17:31 [ 25] [ 2] [01] +21:17:31 [ 28] [ 9] [D00002000] +21:17:31 [ 32] [ 6] [180893] +21:17:31 [ 35] [ 32] [6213543000203652=491212010365119] +21:17:31 [ 37] [ 12] [507914271679] +21:17:31 [ 41] [ 8] [0528LPBP] +21:17:31 [ 42] [ 15] [999999 ] +21:17:31 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +21:17:31 [ 49] [ 3] [418] +21:17:31 [ 52] [ 16] [32DB447E3E2B673E] +21:17:31 ============================================================================ +21:17:31 + + +waiting on router queue for slot.... +21:17:31 Sending to : +21:17:31 ============================================================================ +21:17:31 Sending to : +21:17:31 ============================================================================ +21:17:31 ============================================================================ +21:17:31 Slot Id : <91> +21:17:31 Transaction Type : REQUEST +21:17:31 Received From : +21:17:31 ============================================================================ +21:17:31 FNo. Len. Field Value +21:17:31 ============================================================================ +21:17:31 [ 1] [ 4] [0200] +21:17:31 [ 2] [ 16] [6213543000203652] +21:17:31 [ 3] [ 6] [010000] +21:17:31 [ 4] [ 12] [000010000000] +21:17:31 [ 7] [ 10] [0320141638] +21:17:31 [ 11] [ 6] [271679] +21:17:31 [ 12] [ 6] [211638] +21:17:31 [ 13] [ 4] [0320] +21:17:31 [ 14] [ 4] [4912] +21:17:31 [ 15] [ 4] [0320] +21:17:31 [ 18] [ 4] [6011] +21:17:31 [ 19] [ 3] [418] +21:17:31 [ 22] [ 3] [021] +21:17:31 [ 25] [ 2] [01] +21:17:31 [ 28] [ 9] [D00002000] +21:17:31 [ 32] [ 6] [180893] +21:17:31 [ 35] [ 32] [6213543000203652=491212010365119] +21:17:31 [ 37] [ 12] [507914271679] +21:17:31 [ 41] [ 8] [0528LPBP] +21:17:31 [ 42] [ 15] [999999 ] +21:17:31 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +21:17:31 [ 49] [ 3] [418] +21:17:31 [ 52] [ 16] [32DB447E3E2B673E] +21:17:31 ============================================================================ +21:17:31 + + +waiting on router queue for slot.... +21:17:31 Sending to : +21:17:31 ============================================================================ +21:17:31 ============================================================================ +21:17:31 Slot Id : <91> +21:17:31 Transaction Type : REQUEST +21:17:31 Received From : +21:17:31 ============================================================================ +21:17:31 FNo. Len. Field Value +21:17:31 ============================================================================ +21:17:31 [ 1] [ 4] [0200] +21:17:31 [ 2] [ 16] [6213543000203652] +21:17:31 [ 3] [ 6] [010000] +21:17:31 [ 4] [ 12] [000010000000] +21:17:31 [ 7] [ 10] [0320141638] +21:17:31 [ 11] [ 6] [271679] +21:17:31 [ 12] [ 6] [211638] +21:17:31 [ 13] [ 4] [0320] +21:17:31 [ 14] [ 4] [4912] +21:17:31 [ 15] [ 4] [0320] +21:17:31 [ 18] [ 4] [6011] +21:17:31 [ 19] [ 3] [418] +21:17:31 [ 22] [ 3] [021] +21:17:31 [ 25] [ 2] [01] +21:17:31 [ 28] [ 9] [D00002000] +21:17:31 [ 32] [ 6] [180893] +21:17:31 [ 35] [ 32] [6213543000203652=491212010365119] +21:17:31 [ 37] [ 12] [507914271679] +21:17:31 [ 41] [ 8] [0528LPBP] +21:17:31 [ 42] [ 15] [999999 ] +21:17:31 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +21:17:31 [ 49] [ 3] [418] +21:17:31 [ 52] [ 16] [FD14DDC6EE9BDE7F] +21:17:31 ============================================================================ +21:17:31 + + +waiting on router queue for slot.... +21:17:31 Sending to : <0> +21:17:31 ============================================================================ +21:17:32 ============================================================================ +21:17:32 Slot Id : <91> +21:17:32 Transaction Type : RESPONSE +21:17:32 Received From : +21:17:32 ============================================================================ +21:17:32 FNo. Len. Field Value +21:17:32 ============================================================================ +21:17:32 [ 1] [ 4] [0210] +21:17:32 [ 2] [ 16] [6213543000203652] +21:17:32 [ 3] [ 6] [010000] +21:17:32 [ 4] [ 12] [000010000000] +21:17:32 [ 7] [ 10] [0320141638] +21:17:32 [ 11] [ 6] [271679] +21:17:32 [ 12] [ 6] [211638] +21:17:32 [ 13] [ 4] [0320] +21:17:32 [ 15] [ 4] [0320] +21:17:32 [ 18] [ 4] [6011] +21:17:32 [ 19] [ 3] [418] +21:17:32 [ 32] [ 6] [180893] +21:17:32 [ 35] [ 32] [6213543000203652=491212010365119] +21:17:32 [ 37] [ 12] [507914271679] +21:17:32 [ 38] [ 6] [438678] +21:17:32 [ 39] [ 2] [00] +21:17:32 [ 41] [ 8] [0528LPBP] +21:17:32 [ 49] [ 3] [418] +21:17:32 [ 54] [ 40] [0001418C0000313926320002418C000010992632] +21:17:32 ============================================================================ +21:17:32 Sending to : +21:17:32 ============================================================================ +21:17:32 + + +waiting on router queue for slot.... +21:17:33 ============================================================================ +21:17:33 Slot Id : <91> +21:17:33 Transaction Type : RESPONSE +21:17:33 Received From : +21:17:33 ============================================================================ +21:17:33 FNo. Len. Field Value +21:17:33 ============================================================================ +21:17:33 [ 1] [ 4] [0210] +21:17:33 [ 2] [ 16] [6213543000203652] +21:17:33 [ 3] [ 6] [010000] +21:17:33 [ 4] [ 12] [000010000000] +21:17:33 [ 7] [ 10] [0320141638] +21:17:33 [ 11] [ 6] [271679] +21:17:33 [ 12] [ 6] [211638] +21:17:33 [ 13] [ 4] [0320] +21:17:33 [ 15] [ 4] [0320] +21:17:33 [ 18] [ 4] [6011] +21:17:33 [ 19] [ 3] [418] +21:17:33 [ 32] [ 6] [180893] +21:17:33 [ 35] [ 32] [6213543000203652=491212010365119] +21:17:33 [ 37] [ 12] [507914271679] +21:17:33 [ 38] [ 6] [438678] +21:17:33 [ 39] [ 2] [00] +21:17:33 [ 41] [ 8] [0528LPBP] +21:17:33 [ 49] [ 3] [418] +21:17:33 [ 54] [ 40] [0001418C0000313926320002418C000010992632] +21:17:33 ============================================================================ +21:17:33 Calculate Source COMM Id = 2 +21:17:33 ============================================================================ +21:17:33 + + +waiting on router queue for slot.... +21:17:36 ============================================================================ +21:17:36 Slot Id : <72> +21:17:36 Transaction Type : REQUEST +21:17:36 Received From : +21:17:36 ============================================================================ +21:17:36 FNo. Len. Field Value +21:17:36 ============================================================================ +21:17:36 [ 1] [ 4] [0800] +21:17:36 [ 7] [ 10] [0320211724] +21:17:36 [ 11] [ 6] [098870] +21:17:36 [ 37] [ 12] [507921098870] +21:17:36 [ 70] [ 3] [ ] +21:17:36 ============================================================================ +21:17:36 + + +waiting on router queue for slot.... +21:17:36 Sending to : +21:17:36 ============================================================================ +21:17:36 ============================================================================ +21:17:36 Slot Id : <72> +21:17:36 Transaction Type : RESPONSE +21:17:36 Received From : +21:17:36 ============================================================================ +21:17:36 FNo. Len. Field Value +21:17:36 ============================================================================ +21:17:36 [ 1] [ 4] [0810] +21:17:36 [ 7] [ 10] [0320211724] +21:17:36 [ 11] [ 6] [098870] +21:17:36 [ 37] [ 12] [507921098870] +21:17:36 [ 39] [ 2] [91] +21:17:36 [ 70] [ 3] [ ] +21:17:36 ============================================================================ +21:17:36 Calculate Source COMM Id = 3 +21:17:36 ============================================================================ +21:17:36 + + +waiting on router queue for slot.... +21:17:47 ============================================================================ +21:17:47 Slot Id : <76> +21:17:47 Transaction Type : REQUEST +21:17:47 Received From : +21:17:47 ============================================================================ +21:17:47 FNo. Len. Field Value +21:17:47 ============================================================================ +21:17:47 [ 1] [ 4] [0800] +21:17:47 [ 7] [ 10] [0320021656] +21:17:47 [ 11] [ 6] [158438] +21:17:47 [ 70] [ 3] [301] +21:17:47 ============================================================================ +21:17:47 + + +waiting on router queue for slot.... +21:17:47 Sending to : +21:17:47 ============================================================================ +21:17:47 ============================================================================ +21:17:47 Slot Id : <76> +21:17:47 Transaction Type : RESPONSE +21:17:47 Received From : +21:17:47 ============================================================================ +21:17:47 FNo. Len. Field Value +21:17:47 ============================================================================ +21:17:47 [ 1] [ 4] [0810] +21:17:47 [ 7] [ 10] [0320021656] +21:17:47 [ 11] [ 6] [158438] +21:17:47 [ 39] [ 2] [00] +21:17:47 [ 70] [ 3] [301] +21:17:47 ============================================================================ +21:17:47 Calculate Source COMM Id = 2 +21:17:47 ============================================================================ +21:17:47 + + +waiting on router queue for slot.... +21:17:52 ============================================================================ +21:17:52 Slot Id : <90> +21:17:52 Transaction Type : REQUEST +21:17:52 Received From : +21:17:52 ============================================================================ +21:17:52 FNo. Len. Field Value +21:17:52 ============================================================================ +21:17:52 [ 1] [ 4] [0800] +21:17:52 [ 2] [ 5] [02531] +21:17:52 [ 3] [ 6] [579218] +21:17:52 [ 7] [ 10] [0320141752] +21:17:52 [ 11] [ 6] [807648] +21:17:52 [ 15] [ 10] [0320141752] +21:17:52 [ 37] [ 11] [57921807648] +21:17:52 [ 70] [ 3] [001] +21:17:52 ============================================================================ +21:17:52 + + +waiting on router queue for slot.... +21:17:52 ============================================================================ +21:17:52 Slot Id : <90> +21:17:52 Transaction Type : RESPONSE +21:17:52 Received From : +21:17:52 ============================================================================ +21:17:52 FNo. Len. Field Value +21:17:52 ============================================================================ +21:17:52 [ 1] [ 4] [0810] +21:17:52 [ 7] [ 10] [0320141752] +21:17:52 [ 11] [ 6] [807648] +21:17:52 [ 15] [ 4] [0320] +21:17:52 [ 37] [ 12] [57921807648] +21:17:52 [ 39] [ 2] [00] +21:17:52 [ 70] [ 3] [001] +21:17:52 ============================================================================ +21:17:52 Sending to : +21:17:52 ============================================================================ +21:17:52 + + +waiting on router queue for slot.... +21:17:58 ============================================================================ +21:17:58 Slot Id : <114> +21:17:58 Transaction Type : REQUEST +21:17:58 Received From : +21:17:58 ============================================================================ +21:17:58 FNo. Len. Field Value +21:17:58 ============================================================================ +21:17:58 [ 1] [ 4] [0800] +21:17:58 [ 7] [ 10] [0320021707] +21:17:58 [ 11] [ 6] [158439] +21:17:58 [ 70] [ 3] [301] +21:17:58 ============================================================================ +21:17:58 + + +waiting on router queue for slot.... +21:17:58 Sending to : +21:17:58 ============================================================================ +21:17:58 ============================================================================ +21:17:58 Slot Id : <114> +21:17:58 Transaction Type : RESPONSE +21:17:58 Received From : +21:17:58 ============================================================================ +21:17:58 FNo. Len. Field Value +21:17:58 ============================================================================ +21:17:58 [ 1] [ 4] [0810] +21:17:58 [ 7] [ 10] [0320021707] +21:17:58 [ 11] [ 6] [158439] +21:17:58 [ 39] [ 2] [00] +21:17:58 [ 70] [ 3] [301] +21:17:58 ============================================================================ +21:17:58 Calculate Source COMM Id = 2 +21:17:58 ============================================================================ +21:17:58 + + +waiting on router queue for slot.... +21:18:09 ============================================================================ +21:18:09 Slot Id : <106> +21:18:09 Transaction Type : REQUEST +21:18:09 Received From : +21:18:09 ============================================================================ +21:18:09 FNo. Len. Field Value +21:18:09 ============================================================================ +21:18:09 [ 1] [ 4] [0800] +21:18:09 [ 7] [ 10] [0320021718] +21:18:09 [ 11] [ 6] [158440] +21:18:09 [ 70] [ 3] [301] +21:18:09 ============================================================================ +21:18:09 + + +waiting on router queue for slot.... +21:18:09 Sending to : +21:18:09 ============================================================================ +21:18:09 ============================================================================ +21:18:09 Slot Id : <106> +21:18:09 Transaction Type : RESPONSE +21:18:09 Received From : +21:18:09 ============================================================================ +21:18:09 FNo. Len. Field Value +21:18:09 ============================================================================ +21:18:09 [ 1] [ 4] [0810] +21:18:09 [ 7] [ 10] [0320021718] +21:18:09 [ 11] [ 6] [158440] +21:18:09 [ 39] [ 2] [00] +21:18:09 [ 70] [ 3] [301] +21:18:09 ============================================================================ +21:18:09 Calculate Source COMM Id = 2 +21:18:09 ============================================================================ +21:18:09 + + +waiting on router queue for slot.... +21:18:14 ============================================================================ +21:18:14 Slot Id : <83> +21:18:14 Transaction Type : REQUEST +21:18:14 Received From : +21:18:14 ============================================================================ +21:18:14 FNo. Len. Field Value +21:18:14 ============================================================================ +21:18:14 [ 1] [ 4] [0200] +21:18:14 [ 2] [ 16] [6213543000203652] +21:18:14 [ 3] [ 6] [010000] +21:18:14 [ 4] [ 12] [000010000000] +21:18:14 [ 7] [ 10] [0320141721] +21:18:14 [ 11] [ 6] [271682] +21:18:14 [ 12] [ 6] [211721] +21:18:14 [ 13] [ 4] [0320] +21:18:14 [ 14] [ 4] [4912] +21:18:14 [ 15] [ 4] [0320] +21:18:14 [ 18] [ 4] [6011] +21:18:14 [ 19] [ 3] [418] +21:18:14 [ 22] [ 3] [021] +21:18:14 [ 25] [ 2] [01] +21:18:14 [ 28] [ 9] [D00002000] +21:18:14 [ 32] [ 6] [180893] +21:18:14 [ 35] [ 32] [6213543000203652=491212010365119] +21:18:14 [ 37] [ 12] [507914271682] +21:18:14 [ 41] [ 8] [0528LPBP] +21:18:14 [ 42] [ 15] [999999 ] +21:18:14 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +21:18:14 [ 49] [ 3] [418] +21:18:14 [ 52] [ 16] [32DB447E3E2B673E] +21:18:14 ============================================================================ +21:18:14 + + +waiting on router queue for slot.... +21:18:14 Sending to : +21:18:14 ============================================================================ +21:18:14 Sending to : +21:18:14 ============================================================================ +21:18:14 ============================================================================ +21:18:14 Slot Id : <83> +21:18:14 Transaction Type : REQUEST +21:18:14 Received From : +21:18:14 ============================================================================ +21:18:14 FNo. Len. Field Value +21:18:14 ============================================================================ +21:18:14 [ 1] [ 4] [0200] +21:18:14 [ 2] [ 16] [6213543000203652] +21:18:14 [ 3] [ 6] [010000] +21:18:14 [ 4] [ 12] [000010000000] +21:18:14 [ 7] [ 10] [0320141721] +21:18:14 [ 11] [ 6] [271682] +21:18:14 [ 12] [ 6] [211721] +21:18:14 [ 13] [ 4] [0320] +21:18:14 [ 14] [ 4] [4912] +21:18:14 [ 15] [ 4] [0320] +21:18:14 [ 18] [ 4] [6011] +21:18:14 [ 19] [ 3] [418] +21:18:14 [ 22] [ 3] [021] +21:18:14 [ 25] [ 2] [01] +21:18:14 [ 28] [ 9] [D00002000] +21:18:14 [ 32] [ 6] [180893] +21:18:14 [ 35] [ 32] [6213543000203652=491212010365119] +21:18:14 [ 37] [ 12] [507914271682] +21:18:14 [ 41] [ 8] [0528LPBP] +21:18:14 [ 42] [ 15] [999999 ] +21:18:14 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +21:18:14 [ 49] [ 3] [418] +21:18:14 [ 52] [ 16] [32DB447E3E2B673E] +21:18:14 ============================================================================ +21:18:14 + + +waiting on router queue for slot.... +21:18:14 Sending to : +21:18:14 ============================================================================ +21:18:14 ============================================================================ +21:18:14 Slot Id : <83> +21:18:14 Transaction Type : REQUEST +21:18:14 Received From : +21:18:14 ============================================================================ +21:18:14 FNo. Len. Field Value +21:18:14 ============================================================================ +21:18:14 [ 1] [ 4] [0200] +21:18:14 [ 2] [ 16] [6213543000203652] +21:18:14 [ 3] [ 6] [010000] +21:18:14 [ 4] [ 12] [000010000000] +21:18:14 [ 7] [ 10] [0320141721] +21:18:14 [ 11] [ 6] [271682] +21:18:14 [ 12] [ 6] [211721] +21:18:14 [ 13] [ 4] [0320] +21:18:14 [ 14] [ 4] [4912] +21:18:14 [ 15] [ 4] [0320] +21:18:14 [ 18] [ 4] [6011] +21:18:14 [ 19] [ 3] [418] +21:18:14 [ 22] [ 3] [021] +21:18:14 [ 25] [ 2] [01] +21:18:14 [ 28] [ 9] [D00002000] +21:18:14 [ 32] [ 6] [180893] +21:18:14 [ 35] [ 32] [6213543000203652=491212010365119] +21:18:14 [ 37] [ 12] [507914271682] +21:18:14 [ 41] [ 8] [0528LPBP] +21:18:14 [ 42] [ 15] [999999 ] +21:18:14 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +21:18:14 [ 49] [ 3] [418] +21:18:14 [ 52] [ 16] [FD14DDC6EE9BDE7F] +21:18:14 ============================================================================ +21:18:14 + + +waiting on router queue for slot.... +21:18:14 Sending to : <0> +21:18:14 ============================================================================ +21:18:15 ============================================================================ +21:18:15 Slot Id : <83> +21:18:15 Transaction Type : RESPONSE +21:18:15 Received From : +21:18:15 ============================================================================ +21:18:15 FNo. Len. Field Value +21:18:15 ============================================================================ +21:18:15 [ 1] [ 4] [0210] +21:18:15 [ 2] [ 16] [6213543000203652] +21:18:15 [ 3] [ 6] [010000] +21:18:15 [ 4] [ 12] [000010000000] +21:18:15 [ 7] [ 10] [0320141721] +21:18:15 [ 11] [ 6] [271682] +21:18:15 [ 12] [ 6] [211721] +21:18:15 [ 13] [ 4] [0320] +21:18:15 [ 15] [ 4] [0320] +21:18:15 [ 18] [ 4] [6011] +21:18:15 [ 19] [ 3] [418] +21:18:15 [ 32] [ 6] [180893] +21:18:15 [ 35] [ 32] [6213543000203652=491212010365119] +21:18:15 [ 37] [ 12] [507914271682] +21:18:15 [ 38] [ 6] [271682] +21:18:15 [ 39] [ 2] [51] +21:18:15 [ 41] [ 8] [0528LPBP] +21:18:15 [ 49] [ 3] [418] +21:18:15 [ 54] [ 40] [0001418C0000313926320002418C000010992632] +21:18:15 ============================================================================ +21:18:15 Sending to : +21:18:15 ============================================================================ +21:18:15 + + +waiting on router queue for slot.... +21:18:16 ============================================================================ +21:18:16 Slot Id : <83> +21:18:16 Transaction Type : RESPONSE +21:18:16 Received From : +21:18:16 ============================================================================ +21:18:16 FNo. Len. Field Value +21:18:16 ============================================================================ +21:18:16 [ 1] [ 4] [0210] +21:18:16 [ 2] [ 16] [6213543000203652] +21:18:16 [ 3] [ 6] [010000] +21:18:16 [ 4] [ 12] [000010000000] +21:18:16 [ 7] [ 10] [0320141721] +21:18:16 [ 11] [ 6] [271682] +21:18:16 [ 12] [ 6] [211721] +21:18:16 [ 13] [ 4] [0320] +21:18:16 [ 15] [ 4] [0320] +21:18:16 [ 18] [ 4] [6011] +21:18:16 [ 19] [ 3] [418] +21:18:16 [ 32] [ 6] [180893] +21:18:16 [ 35] [ 32] [6213543000203652=491212010365119] +21:18:16 [ 37] [ 12] [507914271682] +21:18:16 [ 38] [ 6] [271682] +21:18:16 [ 39] [ 2] [51] +21:18:16 [ 41] [ 8] [0528LPBP] +21:18:16 [ 49] [ 3] [418] +21:18:16 [ 54] [ 40] [0001418C0000313926320002418C000010992632] +21:18:16 ============================================================================ +21:18:16 Calculate Source COMM Id = 2 +21:18:16 ============================================================================ +21:18:16 + + +waiting on router queue for slot.... +21:18:29 ============================================================================ +21:18:29 Slot Id : <66> +21:18:29 Transaction Type : REQUEST +21:18:29 Received From : +21:18:29 ============================================================================ +21:18:29 FNo. Len. Field Value +21:18:29 ============================================================================ +21:18:29 [ 1] [ 4] [0800] +21:18:29 [ 7] [ 10] [0320021737] +21:18:29 [ 11] [ 6] [158441] +21:18:29 [ 70] [ 3] [301] +21:18:29 ============================================================================ +21:18:29 + + +waiting on router queue for slot.... +21:18:29 Sending to : +21:18:29 ============================================================================ +21:18:29 ============================================================================ +21:18:29 Slot Id : <66> +21:18:29 Transaction Type : RESPONSE +21:18:29 Received From : +21:18:29 ============================================================================ +21:18:29 FNo. Len. Field Value +21:18:29 ============================================================================ +21:18:29 [ 1] [ 4] [0810] +21:18:29 [ 7] [ 10] [0320021737] +21:18:29 [ 11] [ 6] [158441] +21:18:29 [ 39] [ 2] [00] +21:18:29 [ 70] [ 3] [301] +21:18:29 ============================================================================ +21:18:29 Calculate Source COMM Id = 2 +21:18:29 ============================================================================ +21:18:29 + + +waiting on router queue for slot.... +21:18:31 ============================================================================ +21:18:31 Slot Id : <99> +21:18:31 Transaction Type : REQUEST +21:18:31 Received From : +21:18:31 ============================================================================ +21:18:31 FNo. Len. Field Value +21:18:31 ============================================================================ +21:18:31 [ 1] [ 4] [0800] +21:18:31 [ 7] [ 10] [0321043022] +21:18:31 [ 11] [ 6] [213022] +21:18:31 [ 37] [ 12] [57921213022] +21:18:31 [ 70] [ 3] [301] +21:18:31 ============================================================================ +21:18:31 + + +waiting on router queue for slot.... +21:18:31 Sending to : +21:18:31 ============================================================================ +21:18:31 ============================================================================ +21:18:31 Slot Id : <99> +21:18:31 Transaction Type : RESPONSE +21:18:31 Received From : +21:18:31 ============================================================================ +21:18:31 FNo. Len. Field Value +21:18:31 ============================================================================ +21:18:31 [ 1] [ 4] [0810] +21:18:31 [ 7] [ 10] [0321043022] +21:18:31 [ 11] [ 6] [213022] +21:18:31 [ 37] [ 12] [579212130220] +21:18:31 [ 39] [ 2] [00] +21:18:31 [ 70] [ 3] [810] +21:18:31 ============================================================================ +21:18:31 Calculate Source COMM Id = 6 +21:18:31 ============================================================================ +21:18:31 + + +waiting on router queue for slot.... +21:18:40 ============================================================================ +21:18:40 Slot Id : <107> +21:18:40 Transaction Type : REQUEST +21:18:40 Received From : +21:18:40 ============================================================================ +21:18:40 FNo. Len. Field Value +21:18:40 ============================================================================ +21:18:40 [ 1] [ 4] [0800] +21:18:40 [ 7] [ 10] [0320021747] +21:18:40 [ 11] [ 6] [158442] +21:18:40 [ 70] [ 3] [301] +21:18:40 ============================================================================ +21:18:40 + + +waiting on router queue for slot.... +21:18:40 Sending to : +21:18:40 ============================================================================ +21:18:40 ============================================================================ +21:18:40 Slot Id : <107> +21:18:40 Transaction Type : RESPONSE +21:18:40 Received From : +21:18:40 ============================================================================ +21:18:40 FNo. Len. Field Value +21:18:40 ============================================================================ +21:18:40 [ 1] [ 4] [0810] +21:18:40 [ 7] [ 10] [0320021747] +21:18:40 [ 11] [ 6] [158442] +21:18:40 [ 39] [ 2] [00] +21:18:40 [ 70] [ 3] [301] +21:18:40 ============================================================================ +21:18:40 Calculate Source COMM Id = 2 +21:18:40 ============================================================================ +21:18:40 + + +waiting on router queue for slot.... +21:18:54 ============================================================================ +21:18:54 Slot Id : <118> +21:18:54 Transaction Type : REQUEST +21:18:54 Received From : +21:18:54 ============================================================================ +21:18:54 FNo. Len. Field Value +21:18:54 ============================================================================ +21:18:54 [ 1] [ 4] [0800] +21:18:54 [ 2] [ 5] [02531] +21:18:54 [ 3] [ 6] [579218] +21:18:54 [ 7] [ 10] [0320141854] +21:18:54 [ 11] [ 6] [807649] +21:18:54 [ 15] [ 10] [0320141854] +21:18:54 [ 37] [ 11] [57921807649] +21:18:54 [ 70] [ 3] [001] +21:18:54 ============================================================================ +21:18:54 + + +waiting on router queue for slot.... +21:18:54 ============================================================================ +21:18:54 Slot Id : <118> +21:18:54 Transaction Type : RESPONSE +21:18:54 Received From : +21:18:54 ============================================================================ +21:18:54 FNo. Len. Field Value +21:18:54 ============================================================================ +21:18:54 [ 1] [ 4] [0810] +21:18:54 [ 7] [ 10] [0320141854] +21:18:54 [ 11] [ 6] [807649] +21:18:54 [ 15] [ 4] [0320] +21:18:54 [ 37] [ 12] [57921807649] +21:18:54 [ 39] [ 2] [00] +21:18:54 [ 70] [ 3] [001] +21:18:54 ============================================================================ +21:18:54 Sending to : +21:18:54 ============================================================================ +21:18:54 + + +waiting on router queue for slot.... +21:18:55 ============================================================================ +21:18:55 Slot Id : <121> +21:18:55 Transaction Type : REQUEST +21:18:55 Received From : +21:18:55 ============================================================================ +21:18:55 FNo. Len. Field Value +21:18:55 ============================================================================ +21:18:55 [ 1] [ 4] [0800] +21:18:55 [ 7] [ 10] [0320021804] +21:18:55 [ 11] [ 6] [158443] +21:18:55 [ 70] [ 3] [301] +21:18:55 ============================================================================ +21:18:55 + + +waiting on router queue for slot.... +21:18:55 Sending to : +21:18:55 ============================================================================ +21:18:55 ============================================================================ +21:18:55 Slot Id : <121> +21:18:55 Transaction Type : RESPONSE +21:18:55 Received From : +21:18:55 ============================================================================ +21:18:55 FNo. Len. Field Value +21:18:55 ============================================================================ +21:18:55 [ 1] [ 4] [0810] +21:18:55 [ 7] [ 10] [0320021804] +21:18:55 [ 11] [ 6] [158443] +21:18:55 [ 39] [ 2] [00] +21:18:55 [ 70] [ 3] [301] +21:18:55 ============================================================================ +21:18:55 Calculate Source COMM Id = 2 +21:18:55 ============================================================================ +21:18:55 + + +waiting on router queue for slot.... +21:18:58 ============================================================================ +21:18:58 Slot Id : <115> +21:18:58 Transaction Type : REQUEST +21:18:58 Received From : +21:18:58 ============================================================================ +21:18:58 FNo. Len. Field Value +21:18:58 ============================================================================ +21:18:58 [ 1] [ 4] [0200] +21:18:58 [ 2] [ 16] [6213545001003825] +21:18:58 [ 3] [ 6] [011000] +21:18:58 [ 4] [ 12] [000020000000] +21:18:58 [ 7] [ 10] [0320141807] +21:18:58 [ 11] [ 6] [271684] +21:18:58 [ 12] [ 6] [211807] +21:18:58 [ 13] [ 4] [0320] +21:18:58 [ 14] [ 4] [4912] +21:18:58 [ 15] [ 4] [0320] +21:18:58 [ 18] [ 4] [6011] +21:18:58 [ 19] [ 3] [418] +21:18:58 [ 22] [ 3] [021] +21:18:58 [ 25] [ 2] [01] +21:18:58 [ 28] [ 9] [D00002000] +21:18:58 [ 32] [ 6] [180893] +21:18:58 [ 35] [ 32] [6213545001003825=491212010382535] +21:18:58 [ 37] [ 12] [507914271684] +21:18:58 [ 41] [ 8] [0441VT52] +21:18:58 [ 42] [ 15] [999999 ] +21:18:58 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +21:18:58 [ 49] [ 3] [418] +21:18:58 [ 52] [ 16] [7B3448BB18618C53] +21:18:58 ============================================================================ +21:18:58 + + +waiting on router queue for slot.... +21:18:58 Sending to : +21:18:58 ============================================================================ +21:18:58 Sending to : +21:18:58 ============================================================================ +21:18:59 ============================================================================ +21:18:59 Slot Id : <115> +21:18:59 Transaction Type : REQUEST +21:18:59 Received From : +21:18:59 ============================================================================ +21:18:59 FNo. Len. Field Value +21:18:59 ============================================================================ +21:18:59 [ 1] [ 4] [0200] +21:18:59 [ 2] [ 16] [6213545001003825] +21:18:59 [ 3] [ 6] [011000] +21:18:59 [ 4] [ 12] [000020000000] +21:18:59 [ 7] [ 10] [0320141807] +21:18:59 [ 11] [ 6] [271684] +21:18:59 [ 12] [ 6] [211807] +21:18:59 [ 13] [ 4] [0320] +21:18:59 [ 14] [ 4] [4912] +21:18:59 [ 15] [ 4] [0320] +21:18:59 [ 18] [ 4] [6011] +21:18:59 [ 19] [ 3] [418] +21:18:59 [ 22] [ 3] [021] +21:18:59 [ 25] [ 2] [01] +21:18:59 [ 28] [ 9] [D00002000] +21:18:59 [ 32] [ 6] [180893] +21:18:59 [ 35] [ 32] [6213545001003825=491212010382535] +21:18:59 [ 37] [ 12] [507914271684] +21:18:59 [ 41] [ 8] [0441VT52] +21:18:59 [ 42] [ 15] [999999 ] +21:18:59 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +21:18:59 [ 49] [ 3] [418] +21:18:59 [ 52] [ 16] [7B3448BB18618C53] +21:18:59 ============================================================================ +21:18:59 + + +waiting on router queue for slot.... +21:18:59 Sending to : +21:18:59 ============================================================================ +21:18:59 ============================================================================ +21:18:59 Slot Id : <115> +21:18:59 Transaction Type : REQUEST +21:18:59 Received From : +21:18:59 ============================================================================ +21:18:59 FNo. Len. Field Value +21:18:59 ============================================================================ +21:18:59 [ 1] [ 4] [0200] +21:18:59 [ 2] [ 16] [6213545001003825] +21:18:59 [ 3] [ 6] [011000] +21:18:59 [ 4] [ 12] [000020000000] +21:18:59 [ 7] [ 10] [0320141807] +21:18:59 [ 11] [ 6] [271684] +21:18:59 [ 12] [ 6] [211807] +21:18:59 [ 13] [ 4] [0320] +21:18:59 [ 14] [ 4] [4912] +21:18:59 [ 15] [ 4] [0320] +21:18:59 [ 18] [ 4] [6011] +21:18:59 [ 19] [ 3] [418] +21:18:59 [ 22] [ 3] [021] +21:18:59 [ 25] [ 2] [01] +21:18:59 [ 28] [ 9] [D00002000] +21:18:59 [ 32] [ 6] [180893] +21:18:59 [ 35] [ 32] [6213545001003825=491212010382535] +21:18:59 [ 37] [ 12] [507914271684] +21:18:59 [ 41] [ 8] [0441VT52] +21:18:59 [ 42] [ 15] [999999 ] +21:18:59 [ 43] [ 40] [ATM KM52 VIENTIANE LOCATION, Phonhong, L] +21:18:59 [ 49] [ 3] [418] +21:18:59 [ 52] [ 16] [3EFB13EA6AA7C233] +21:18:59 ============================================================================ +21:18:59 + + +waiting on router queue for slot.... +21:18:59 Sending to : <0> +21:18:59 ============================================================================ +21:18:59 ============================================================================ +21:18:59 Slot Id : <115> +21:18:59 Transaction Type : RESPONSE +21:18:59 Received From : +21:18:59 ============================================================================ +21:18:59 FNo. Len. Field Value +21:18:59 ============================================================================ +21:18:59 [ 1] [ 4] [0210] +21:18:59 [ 2] [ 16] [6213545001003825] +21:18:59 [ 3] [ 6] [011000] +21:18:59 [ 4] [ 12] [000020000000] +21:18:59 [ 7] [ 10] [0320141807] +21:18:59 [ 11] [ 6] [271684] +21:18:59 [ 12] [ 6] [211807] +21:18:59 [ 13] [ 4] [0320] +21:18:59 [ 15] [ 4] [0320] +21:18:59 [ 18] [ 4] [6011] +21:18:59 [ 19] [ 3] [418] +21:18:59 [ 32] [ 6] [180893] +21:18:59 [ 35] [ 32] [6213545001003825=491212010382535] +21:18:59 [ 37] [ 12] [507914271684] +21:18:59 [ 38] [ 6] [789251] +21:18:59 [ 39] [ 2] [00] +21:18:59 [ 41] [ 8] [0441VT52] +21:18:59 [ 49] [ 3] [418] +21:18:59 [ 54] [ 40] [1001418C0000939933231002418C000073793323] +21:18:59 ============================================================================ +21:18:59 Sending to : +21:18:59 ============================================================================ +21:18:59 + + +waiting on router queue for slot.... +21:19:01 ============================================================================ +21:19:01 Slot Id : <115> +21:19:01 Transaction Type : RESPONSE +21:19:01 Received From : +21:19:01 ============================================================================ +21:19:01 FNo. Len. Field Value +21:19:01 ============================================================================ +21:19:01 [ 1] [ 4] [0210] +21:19:01 [ 2] [ 16] [6213545001003825] +21:19:01 [ 3] [ 6] [011000] +21:19:01 [ 4] [ 12] [000020000000] +21:19:01 [ 7] [ 10] [0320141807] +21:19:01 [ 11] [ 6] [271684] +21:19:01 [ 12] [ 6] [211807] +21:19:01 [ 13] [ 4] [0320] +21:19:01 [ 15] [ 4] [0320] +21:19:01 [ 18] [ 4] [6011] +21:19:01 [ 19] [ 3] [418] +21:19:01 [ 32] [ 6] [180893] +21:19:01 [ 35] [ 32] [6213545001003825=491212010382535] +21:19:01 [ 37] [ 12] [507914271684] +21:19:01 [ 38] [ 6] [789251] +21:19:01 [ 39] [ 2] [00] +21:19:01 [ 41] [ 8] [0441VT52] +21:19:01 [ 49] [ 3] [418] +21:19:01 [ 54] [ 40] [1001418C0000939933231002418C000073793323] +21:19:01 ============================================================================ +21:19:01 Calculate Source COMM Id = 2 +21:19:01 ============================================================================ +21:19:01 + + +waiting on router queue for slot.... +21:19:12 ============================================================================ +21:19:12 Slot Id : <92> +21:19:12 Transaction Type : REQUEST +21:19:12 Received From : +21:19:12 ============================================================================ +21:19:12 FNo. Len. Field Value +21:19:12 ============================================================================ +21:19:12 [ 1] [ 4] [0800] +21:19:12 [ 7] [ 10] [0320021820] +21:19:12 [ 11] [ 6] [158444] +21:19:12 [ 70] [ 3] [301] +21:19:12 ============================================================================ +21:19:12 + + +waiting on router queue for slot.... +21:19:12 Sending to : +21:19:12 ============================================================================ +21:19:12 ============================================================================ +21:19:12 Slot Id : <92> +21:19:12 Transaction Type : RESPONSE +21:19:12 Received From : +21:19:12 ============================================================================ +21:19:12 FNo. Len. Field Value +21:19:12 ============================================================================ +21:19:12 [ 1] [ 4] [0810] +21:19:12 [ 7] [ 10] [0320021820] +21:19:12 [ 11] [ 6] [158444] +21:19:12 [ 39] [ 2] [00] +21:19:12 [ 70] [ 3] [301] +21:19:12 ============================================================================ +21:19:12 Calculate Source COMM Id = 2 +21:19:12 ============================================================================ +21:19:12 + + +waiting on router queue for slot.... +21:19:22 ============================================================================ +21:19:22 Slot Id : <113> +21:19:22 Transaction Type : REQUEST +21:19:22 Received From : +21:19:22 ============================================================================ +21:19:22 FNo. Len. Field Value +21:19:22 ============================================================================ +21:19:22 [ 1] [ 4] [0800] +21:19:22 [ 7] [ 10] [0320021830] +21:19:22 [ 11] [ 6] [158445] +21:19:22 [ 70] [ 3] [301] +21:19:22 ============================================================================ +21:19:22 + + +waiting on router queue for slot.... +21:19:22 Sending to : +21:19:22 ============================================================================ +21:19:22 ============================================================================ +21:19:22 Slot Id : <113> +21:19:22 Transaction Type : RESPONSE +21:19:22 Received From : +21:19:22 ============================================================================ +21:19:22 FNo. Len. Field Value +21:19:22 ============================================================================ +21:19:22 [ 1] [ 4] [0810] +21:19:22 [ 7] [ 10] [0320021830] +21:19:22 [ 11] [ 6] [158445] +21:19:22 [ 39] [ 2] [00] +21:19:22 [ 70] [ 3] [301] +21:19:22 ============================================================================ +21:19:22 Calculate Source COMM Id = 2 +21:19:22 ============================================================================ +21:19:22 + + +waiting on router queue for slot.... +21:19:32 ============================================================================ +21:19:32 Slot Id : <74> +21:19:32 Transaction Type : REQUEST +21:19:32 Received From : +21:19:32 ============================================================================ +21:19:32 FNo. Len. Field Value +21:19:32 ============================================================================ +21:19:32 [ 1] [ 4] [0200] +21:19:32 [ 2] [ 16] [6688990602561506] +21:19:32 [ 3] [ 6] [011000] +21:19:32 [ 4] [ 12] [000010000000] +21:19:32 [ 7] [ 10] [0320211929] +21:19:32 [ 11] [ 6] [846029] +21:19:32 [ 12] [ 6] [211929] +21:19:32 [ 13] [ 4] [0320] +21:19:32 [ 15] [ 4] [0320] +21:19:32 [ 18] [ 4] [6011] +21:19:32 [ 22] [ 3] [900] +21:19:32 [ 25] [ 2] [02] +21:19:32 [ 28] [ 9] [D00002000] +21:19:32 [ 32] [ 6] [621354] +21:19:32 [ 35] [ 37] [6688990602561506=43080061150692100000] +21:19:32 [ 37] [ 12] [507903161639] +21:19:32 [ 41] [ 8] [04002600] +21:19:32 [ 42] [ 15] [NATIVE ] +21:19:32 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +21:19:32 [ 49] [ 3] [418] +21:19:32 [ 52] [ 16] [8A10019AA04ECE6B] +21:19:32 ============================================================================ +21:19:32 + + +waiting on router queue for slot.... +21:19:32 Sending to : +21:19:32 ============================================================================ +21:19:32 Sending to : +21:19:32 ============================================================================ +21:19:32 ============================================================================ +21:19:32 Slot Id : <98> +21:19:32 Transaction Type : REQUEST +21:19:32 Received From : +21:19:32 ============================================================================ +21:19:32 FNo. Len. Field Value +21:19:32 ============================================================================ +21:19:32 [ 1] [ 4] [0800] +21:19:32 [ 7] [ 10] [0320021841] +21:19:32 [ 11] [ 6] [158446] +21:19:32 [ 70] [ 3] [301] +21:19:32 ============================================================================ +21:19:32 + + +waiting on router queue for slot.... +21:19:32 Sending to : +21:19:32 ============================================================================ +21:19:32 ============================================================================ +21:19:32 Slot Id : <98> +21:19:32 Transaction Type : RESPONSE +21:19:32 Received From : +21:19:32 ============================================================================ +21:19:32 FNo. Len. Field Value +21:19:32 ============================================================================ +21:19:32 [ 1] [ 4] [0810] +21:19:32 [ 7] [ 10] [0320021841] +21:19:32 [ 11] [ 6] [158446] +21:19:32 [ 39] [ 2] [00] +21:19:32 [ 70] [ 3] [301] +21:19:32 ============================================================================ +21:19:32 Calculate Source COMM Id = 2 +21:19:32 ============================================================================ +21:19:32 + + +waiting on router queue for slot.... +21:19:33 ============================================================================ +21:19:33 Slot Id : <74> +21:19:33 Transaction Type : REQUEST +21:19:33 Received From : +21:19:33 ============================================================================ +21:19:33 FNo. Len. Field Value +21:19:33 ============================================================================ +21:19:33 [ 1] [ 4] [0200] +21:19:33 [ 2] [ 16] [6688990602561506] +21:19:33 [ 3] [ 6] [011000] +21:19:33 [ 4] [ 12] [000010000000] +21:19:33 [ 7] [ 10] [0320211929] +21:19:33 [ 11] [ 6] [846029] +21:19:33 [ 12] [ 6] [211929] +21:19:33 [ 13] [ 4] [0320] +21:19:33 [ 15] [ 4] [0320] +21:19:33 [ 18] [ 4] [6011] +21:19:33 [ 22] [ 3] [900] +21:19:33 [ 25] [ 2] [02] +21:19:33 [ 28] [ 9] [D00002000] +21:19:33 [ 32] [ 6] [621354] +21:19:33 [ 35] [ 37] [6688990602561506=43080061150692100000] +21:19:33 [ 37] [ 12] [507903161639] +21:19:33 [ 41] [ 8] [04002600] +21:19:33 [ 42] [ 15] [NATIVE ] +21:19:33 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +21:19:33 [ 49] [ 3] [418] +21:19:33 [ 52] [ 16] [8A10019AA04ECE6B] +21:19:33 ============================================================================ +21:19:33 + + +waiting on router queue for slot.... +21:19:33 Sending to : +21:19:33 ============================================================================ +21:19:33 ============================================================================ +21:19:33 Slot Id : <74> +21:19:33 Transaction Type : REQUEST +21:19:33 Received From : +21:19:33 ============================================================================ +21:19:33 FNo. Len. Field Value +21:19:33 ============================================================================ +21:19:33 [ 1] [ 4] [0200] +21:19:33 [ 2] [ 16] [6688990602561506] +21:19:33 [ 3] [ 6] [011000] +21:19:33 [ 4] [ 12] [000010000000] +21:19:33 [ 7] [ 10] [0320211929] +21:19:33 [ 11] [ 6] [846029] +21:19:33 [ 12] [ 6] [211929] +21:19:33 [ 13] [ 4] [0320] +21:19:33 [ 15] [ 4] [0320] +21:19:33 [ 18] [ 4] [6011] +21:19:33 [ 22] [ 3] [900] +21:19:33 [ 25] [ 2] [02] +21:19:33 [ 28] [ 9] [D00002000] +21:19:33 [ 32] [ 6] [621354] +21:19:33 [ 35] [ 37] [6688990602561506=43080061150692100000] +21:19:33 [ 37] [ 12] [507903161639] +21:19:33 [ 41] [ 8] [04002600] +21:19:33 [ 42] [ 15] [NATIVE ] +21:19:33 [ 43] [ 40] [PAKSE KM 3 Pakse LAO] +21:19:33 [ 49] [ 3] [418] +21:19:33 [ 52] [ 16] [73A4DD169CC94A15] +21:19:33 ============================================================================ +21:19:33 + + +waiting on router queue for slot.... +21:19:33 Sending to : <4> +21:19:33 ============================================================================ +21:19:34 ============================================================================ +21:19:34 Slot Id : <74> +21:19:34 Transaction Type : RESPONSE +21:19:34 Received From : +21:19:34 ============================================================================ +21:19:34 FNo. Len. Field Value +21:19:34 ============================================================================ +21:19:34 [ 1] [ 4] [0210] +21:19:34 [ 2] [ 16] [6688990602561506] +21:19:34 [ 3] [ 6] [011000] +21:19:34 [ 4] [ 12] [000010000000] +21:19:34 [ 11] [ 6] [846029] +21:19:34 [ 12] [ 6] [211929] +21:19:34 [ 15] [ 4] [0320] +21:19:34 [ 18] [ 4] [6011] +21:19:34 [ 32] [ 6] [621354] +21:19:34 [ 35] [ 37] [6688990602561506=43080061150692100000] +21:19:34 [ 37] [ 12] [507903161639] +21:19:34 [ 38] [ 6] [175455] +21:19:34 [ 39] [ 2] [00] +21:19:34 [ 41] [ 8] [04002600] +21:19:34 [ 49] [ 3] [418] +21:19:34 [ 54] [ 20] [1002418C000012749262] +21:19:34 ============================================================================ +21:19:34 Sending to : +21:19:34 ============================================================================ +21:19:34 + + +waiting on router queue for slot.... +21:19:35 ============================================================================ +21:19:35 Slot Id : <74> +21:19:35 Transaction Type : RESPONSE +21:19:35 Received From : +21:19:35 ============================================================================ +21:19:35 FNo. Len. Field Value +21:19:35 ============================================================================ +21:19:35 [ 1] [ 4] [0210] +21:19:35 [ 2] [ 16] [6688990602561506] +21:19:35 [ 3] [ 6] [011000] +21:19:35 [ 4] [ 12] [000010000000] +21:19:35 [ 11] [ 6] [846029] +21:19:35 [ 12] [ 6] [211929] +21:19:35 [ 15] [ 4] [0320] +21:19:35 [ 18] [ 4] [6011] +21:19:35 [ 32] [ 6] [621354] +21:19:35 [ 35] [ 37] [6688990602561506=43080061150692100000] +21:19:35 [ 37] [ 12] [507903161639] +21:19:35 [ 38] [ 6] [175455] +21:19:35 [ 39] [ 2] [00] +21:19:35 [ 41] [ 8] [04002600] +21:19:35 [ 49] [ 3] [418] +21:19:35 [ 54] [ 20] [1002418C000012749262] +21:19:35 ============================================================================ +21:19:35 Calculate Source COMM Id = 0 +21:19:35 ============================================================================ +21:19:35 + + +waiting on router queue for slot.... +21:19:36 ============================================================================ +21:19:36 Slot Id : <108> +21:19:36 Transaction Type : REQUEST +21:19:36 Received From : +21:19:36 ============================================================================ +21:19:36 FNo. Len. Field Value +21:19:36 ============================================================================ +21:19:36 [ 1] [ 4] [0800] +21:19:36 [ 7] [ 10] [0321043127] +21:19:36 [ 11] [ 6] [213127] +21:19:36 [ 37] [ 12] [57921213127] +21:19:36 [ 70] [ 3] [301] +21:19:36 ============================================================================ +21:19:36 + + +waiting on router queue for slot.... +21:19:36 Sending to : +21:19:36 ============================================================================ +21:19:36 ============================================================================ +21:19:36 Slot Id : <108> +21:19:36 Transaction Type : RESPONSE +21:19:36 Received From : +21:19:36 ============================================================================ +21:19:36 FNo. Len. Field Value +21:19:36 ============================================================================ +21:19:36 [ 1] [ 4] [0810] +21:19:36 [ 7] [ 10] [0321043127] +21:19:36 [ 11] [ 6] [213127] +21:19:36 [ 37] [ 12] [579212131270] +21:19:36 [ 39] [ 2] [00] +21:19:36 [ 70] [ 3] [810] +21:19:36 ============================================================================ +21:19:36 Calculate Source COMM Id = 6 +21:19:36 ============================================================================ +21:19:36 + + +waiting on router queue for slot.... +21:19:43 ============================================================================ +21:19:43 Slot Id : <75> +21:19:43 Transaction Type : REQUEST +21:19:43 Received From : +21:19:43 ============================================================================ +21:19:43 FNo. Len. Field Value +21:19:43 ============================================================================ +21:19:43 [ 1] [ 4] [0800] +21:19:43 [ 7] [ 10] [0320021851] +21:19:43 [ 11] [ 6] [158447] +21:19:43 [ 70] [ 3] [301] +21:19:43 ============================================================================ +21:19:43 + + +waiting on router queue for slot.... +21:19:43 Sending to : +21:19:43 ============================================================================ +21:19:43 ============================================================================ +21:19:43 Slot Id : <75> +21:19:43 Transaction Type : RESPONSE +21:19:43 Received From : +21:19:43 ============================================================================ +21:19:43 FNo. Len. Field Value +21:19:43 ============================================================================ +21:19:43 [ 1] [ 4] [0810] +21:19:43 [ 7] [ 10] [0320021851] +21:19:43 [ 11] [ 6] [158447] +21:19:43 [ 39] [ 2] [00] +21:19:43 [ 70] [ 3] [301] +21:19:43 ============================================================================ +21:19:43 Calculate Source COMM Id = 2 +21:19:43 ============================================================================ +21:19:43 + + +waiting on router queue for slot.... +21:19:55 ============================================================================ +21:19:55 Slot Id : <94> +21:19:55 Transaction Type : REQUEST +21:19:55 Received From : +21:19:55 ============================================================================ +21:19:55 FNo. Len. Field Value +21:19:55 ============================================================================ +21:19:55 [ 1] [ 4] [0800] +21:19:55 [ 7] [ 10] [0320142742] +21:19:55 [ 11] [ 6] [040945] +21:19:55 [ 37] [ 12] [57921040945] +21:19:55 [ 70] [ 3] [301] +21:19:55 ============================================================================ +21:19:55 + + +waiting on router queue for slot.... +21:19:55 Sending to : +21:19:55 ============================================================================ +21:19:55 ============================================================================ +21:19:55 Slot Id : <94> +21:19:55 Transaction Type : RESPONSE +21:19:55 Received From : +21:19:55 ============================================================================ +21:19:55 FNo. Len. Field Value +21:19:55 ============================================================================ +21:19:55 [ 1] [ 4] [0810] +21:19:55 [ 7] [ 10] [0320142742] +21:19:55 [ 11] [ 6] [040945] +21:19:55 [ 37] [ 12] [579210409450] +21:19:55 [ 39] [ 2] [00] +21:19:55 [ 70] [ 3] [810] +21:19:55 ============================================================================ +21:19:55 Calculate Source COMM Id = 1 +21:19:55 ============================================================================ +21:19:55 + + +waiting on router queue for slot.... +21:19:56 ============================================================================ +21:19:56 Slot Id : <127> +21:19:56 Transaction Type : REQUEST +21:19:56 Received From : +21:19:56 ============================================================================ +21:19:56 FNo. Len. Field Value +21:19:56 ============================================================================ +21:19:56 [ 1] [ 4] [0800] +21:19:56 [ 2] [ 5] [02531] +21:19:56 [ 3] [ 6] [579218] +21:19:56 [ 7] [ 10] [0320141956] +21:19:56 [ 11] [ 6] [807650] +21:19:56 [ 15] [ 10] [0320141956] +21:19:56 [ 37] [ 11] [57921807650] +21:19:56 [ 70] [ 3] [001] +21:19:56 ============================================================================ +21:19:56 + + +waiting on router queue for slot.... +21:19:56 ============================================================================ +21:19:56 Slot Id : <127> +21:19:56 Transaction Type : RESPONSE +21:19:56 Received From : +21:19:56 ============================================================================ +21:19:56 FNo. Len. Field Value +21:19:56 ============================================================================ +21:19:56 [ 1] [ 4] [0810] +21:19:56 [ 7] [ 10] [0320141956] +21:19:56 [ 11] [ 6] [807650] +21:19:56 [ 15] [ 4] [0320] +21:19:56 [ 37] [ 12] [57921807650] +21:19:56 [ 39] [ 2] [00] +21:19:56 [ 70] [ 3] [001] +21:19:56 ============================================================================ +21:19:56 Sending to : +21:19:56 ============================================================================ +21:19:56 + + +waiting on router queue for slot.... +21:19:59 ============================================================================ +21:19:59 Slot Id : <95> +21:19:59 Transaction Type : REQUEST +21:19:59 Received From : +21:19:59 ============================================================================ +21:19:59 FNo. Len. Field Value +21:19:59 ============================================================================ +21:19:59 [ 1] [ 4] [0800] +21:19:59 [ 7] [ 10] [0320021907] +21:19:59 [ 11] [ 6] [158448] +21:19:59 [ 70] [ 3] [301] +21:19:59 ============================================================================ +21:19:59 + + +waiting on router queue for slot.... +21:19:59 Sending to : +21:19:59 ============================================================================ +21:19:59 ============================================================================ +21:19:59 Slot Id : <95> +21:19:59 Transaction Type : RESPONSE +21:19:59 Received From : +21:19:59 ============================================================================ +21:19:59 FNo. Len. Field Value +21:19:59 ============================================================================ +21:19:59 [ 1] [ 4] [0810] +21:19:59 [ 7] [ 10] [0320021907] +21:19:59 [ 11] [ 6] [158448] +21:19:59 [ 39] [ 2] [00] +21:19:59 [ 70] [ 3] [301] +21:19:59 ============================================================================ +21:19:59 Calculate Source COMM Id = 2 +21:19:59 ============================================================================ +21:19:59 + + +waiting on router queue for slot.... +21:20:15 ============================================================================ +21:20:15 Slot Id : <53> +21:20:15 Transaction Type : REQUEST +21:20:15 Received From : +21:20:15 ============================================================================ +21:20:15 FNo. Len. Field Value +21:20:15 ============================================================================ +21:20:15 [ 1] [ 4] [0800] +21:20:15 [ 7] [ 10] [0320021923] +21:20:15 [ 11] [ 6] [158449] +21:20:15 [ 70] [ 3] [301] +21:20:15 ============================================================================ +21:20:15 + + +waiting on router queue for slot.... +21:20:15 Sending to : +21:20:15 ============================================================================ +21:20:15 ============================================================================ +21:20:15 Slot Id : <53> +21:20:15 Transaction Type : RESPONSE +21:20:15 Received From : +21:20:15 ============================================================================ +21:20:15 FNo. Len. Field Value +21:20:15 ============================================================================ +21:20:15 [ 1] [ 4] [0810] +21:20:15 [ 7] [ 10] [0320021923] +21:20:15 [ 11] [ 6] [158449] +21:20:15 [ 39] [ 2] [00] +21:20:15 [ 70] [ 3] [301] +21:20:15 ============================================================================ +21:20:15 Calculate Source COMM Id = 2 +21:20:15 ============================================================================ +21:20:15 + + +waiting on router queue for slot.... +21:20:30 ============================================================================ +21:20:30 Slot Id : <134> +21:20:30 Transaction Type : REQUEST +21:20:30 Received From : +21:20:30 ============================================================================ +21:20:30 FNo. Len. Field Value +21:20:30 ============================================================================ +21:20:30 [ 1] [ 4] [0800] +21:20:30 [ 7] [ 10] [0320021939] +21:20:30 [ 11] [ 6] [158450] +21:20:30 [ 70] [ 3] [301] +21:20:30 ============================================================================ +21:20:30 + + +waiting on router queue for slot.... +21:20:30 Sending to : +21:20:30 ============================================================================ +21:20:30 ============================================================================ +21:20:30 Slot Id : <134> +21:20:30 Transaction Type : RESPONSE +21:20:30 Received From : +21:20:30 ============================================================================ +21:20:30 FNo. Len. Field Value +21:20:30 ============================================================================ +21:20:30 [ 1] [ 4] [0810] +21:20:30 [ 7] [ 10] [0320021939] +21:20:30 [ 11] [ 6] [158450] +21:20:30 [ 39] [ 2] [00] +21:20:30 [ 70] [ 3] [301] +21:20:30 ============================================================================ +21:20:30 Calculate Source COMM Id = 2 +21:20:30 ============================================================================ +21:20:30 + + +waiting on router queue for slot.... +21:20:41 ============================================================================ +21:20:41 Slot Id : <103> +21:20:41 Transaction Type : REQUEST +21:20:41 Received From : +21:20:41 ============================================================================ +21:20:41 FNo. Len. Field Value +21:20:41 ============================================================================ +21:20:41 [ 1] [ 4] [0800] +21:20:41 [ 7] [ 10] [0321043232] +21:20:41 [ 11] [ 6] [213232] +21:20:41 [ 37] [ 12] [57921213232] +21:20:41 [ 70] [ 3] [301] +21:20:41 ============================================================================ +21:20:41 + + +waiting on router queue for slot.... +21:20:41 Sending to : +21:20:41 ============================================================================ +21:20:41 ============================================================================ +21:20:41 Slot Id : <103> +21:20:41 Transaction Type : RESPONSE +21:20:41 Received From : +21:20:41 ============================================================================ +21:20:41 FNo. Len. Field Value +21:20:41 ============================================================================ +21:20:41 [ 1] [ 4] [0810] +21:20:41 [ 7] [ 10] [0321043232] +21:20:41 [ 11] [ 6] [213232] +21:20:41 [ 37] [ 12] [579212132320] +21:20:41 [ 39] [ 2] [00] +21:20:41 [ 70] [ 3] [810] +21:20:41 ============================================================================ +21:20:41 Calculate Source COMM Id = 6 +21:20:41 ============================================================================ +21:20:41 + + +waiting on router queue for slot.... +21:20:46 ============================================================================ +21:20:46 Slot Id : <96> +21:20:46 Transaction Type : REQUEST +21:20:46 Received From : +21:20:46 ============================================================================ +21:20:46 FNo. Len. Field Value +21:20:46 ============================================================================ +21:20:46 [ 1] [ 4] [0800] +21:20:46 [ 7] [ 10] [0320021954] +21:20:46 [ 11] [ 6] [158451] +21:20:46 [ 70] [ 3] [301] +21:20:46 ============================================================================ +21:20:46 + + +waiting on router queue for slot.... +21:20:46 Sending to : +21:20:46 ============================================================================ +21:20:46 ============================================================================ +21:20:46 Slot Id : <96> +21:20:46 Transaction Type : RESPONSE +21:20:46 Received From : +21:20:46 ============================================================================ +21:20:46 FNo. Len. Field Value +21:20:46 ============================================================================ +21:20:46 [ 1] [ 4] [0810] +21:20:46 [ 7] [ 10] [0320021954] +21:20:46 [ 11] [ 6] [158451] +21:20:46 [ 39] [ 2] [00] +21:20:46 [ 70] [ 3] [301] +21:20:46 ============================================================================ +21:20:46 Calculate Source COMM Id = 2 +21:20:46 ============================================================================ +21:20:46 + + +waiting on router queue for slot.... +21:20:56 ============================================================================ +21:20:56 Slot Id : <125> +21:20:56 Transaction Type : REQUEST +21:20:56 Received From : +21:20:56 ============================================================================ +21:20:56 FNo. Len. Field Value +21:20:56 ============================================================================ +21:20:56 [ 1] [ 4] [0200] +21:20:56 [ 2] [ 16] [1808931500008477] +21:20:56 [ 3] [ 6] [010000] +21:20:56 [ 4] [ 12] [000010000000] +21:20:56 [ 7] [ 10] [0320211848] +21:20:56 [ 11] [ 6] [957700] +21:20:56 [ 12] [ 6] [211848] +21:20:56 [ 13] [ 4] [0320] +21:20:56 [ 15] [ 4] [0320] +21:20:56 [ 18] [ 4] [6011] +21:20:56 [ 19] [ 3] [418] +21:20:56 [ 22] [ 3] [021] +21:20:56 [ 25] [ 2] [01] +21:20:56 [ 28] [ 9] [D00002000] +21:20:56 [ 32] [ 6] [668899] +21:20:56 [ 35] [ 27] [1808931500008477=1803500499] +21:20:56 [ 37] [ 12] [507901215147] +21:20:56 [ 41] [ 8] [03020013] +21:20:56 [ 42] [ 15] [APT ] +21:20:56 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +21:20:56 [ 49] [ 3] [418] +21:20:56 [ 52] [ 16] [AD22E36307060BFB] +21:20:56 ============================================================================ +21:20:56 + + +waiting on router queue for slot.... +21:20:56 Sending to : +21:20:56 ============================================================================ +21:20:56 Sending to : +21:20:56 ============================================================================ +21:20:57 ============================================================================ +21:20:57 Slot Id : <125> +21:20:57 Transaction Type : REQUEST +21:20:57 Received From : +21:20:57 ============================================================================ +21:20:57 FNo. Len. Field Value +21:20:57 ============================================================================ +21:20:57 [ 1] [ 4] [0200] +21:20:57 [ 2] [ 16] [1808931500008477] +21:20:57 [ 3] [ 6] [010000] +21:20:57 [ 4] [ 12] [000010000000] +21:20:57 [ 7] [ 10] [0320211848] +21:20:57 [ 11] [ 6] [957700] +21:20:57 [ 12] [ 6] [211848] +21:20:57 [ 13] [ 4] [0320] +21:20:57 [ 15] [ 4] [0320] +21:20:57 [ 18] [ 4] [6011] +21:20:57 [ 19] [ 3] [418] +21:20:57 [ 22] [ 3] [021] +21:20:57 [ 25] [ 2] [01] +21:20:57 [ 28] [ 9] [D00002000] +21:20:57 [ 32] [ 6] [668899] +21:20:57 [ 35] [ 27] [1808931500008477=1803500499] +21:20:57 [ 37] [ 12] [507901215147] +21:20:57 [ 41] [ 8] [03020013] +21:20:57 [ 42] [ 15] [APT ] +21:20:57 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +21:20:57 [ 49] [ 3] [418] +21:20:57 [ 52] [ 16] [AD22E36307060BFB] +21:20:57 ============================================================================ +21:20:57 + + +waiting on router queue for slot.... +21:20:57 Sending to : +21:20:57 ============================================================================ +21:20:57 ============================================================================ +21:20:57 Slot Id : <125> +21:20:57 Transaction Type : REQUEST +21:20:57 Received From : +21:20:57 ============================================================================ +21:20:57 FNo. Len. Field Value +21:20:57 ============================================================================ +21:20:57 [ 1] [ 4] [0200] +21:20:57 [ 2] [ 16] [1808931500008477] +21:20:57 [ 3] [ 6] [010000] +21:20:57 [ 4] [ 12] [000010000000] +21:20:57 [ 7] [ 10] [0320211848] +21:20:57 [ 11] [ 6] [957700] +21:20:57 [ 12] [ 6] [211848] +21:20:57 [ 13] [ 4] [0320] +21:20:57 [ 15] [ 4] [0320] +21:20:57 [ 18] [ 4] [6011] +21:20:57 [ 19] [ 3] [418] +21:20:57 [ 22] [ 3] [021] +21:20:57 [ 25] [ 2] [01] +21:20:57 [ 28] [ 9] [D00002000] +21:20:57 [ 32] [ 6] [668899] +21:20:57 [ 35] [ 27] [1808931500008477=1803500499] +21:20:57 [ 37] [ 12] [507901215147] +21:20:57 [ 41] [ 8] [03020013] +21:20:57 [ 42] [ 15] [APT ] +21:20:57 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +21:20:57 [ 49] [ 3] [418] +21:20:57 [ 52] [ 16] [9AEDB0D91D573B31] +21:20:57 ============================================================================ +21:20:57 + + +waiting on router queue for slot.... +21:20:57 Sending to : <2> +21:20:57 ============================================================================ +21:20:58 ============================================================================ +21:20:58 Slot Id : <101> +21:20:58 Transaction Type : REQUEST +21:20:58 Received From : +21:20:58 ============================================================================ +21:20:58 FNo. Len. Field Value +21:20:58 ============================================================================ +21:20:58 [ 1] [ 4] [0800] +21:20:58 [ 2] [ 5] [02531] +21:20:58 [ 3] [ 6] [579218] +21:20:58 [ 7] [ 10] [0320142058] +21:20:58 [ 11] [ 6] [807651] +21:20:58 [ 15] [ 10] [0320142058] +21:20:58 [ 37] [ 11] [57921807651] +21:20:58 [ 70] [ 3] [001] +21:20:58 ============================================================================ +21:20:58 + + +waiting on router queue for slot.... +21:20:58 ============================================================================ +21:20:58 Slot Id : <101> +21:20:58 Transaction Type : RESPONSE +21:20:58 Received From : +21:20:58 ============================================================================ +21:20:58 FNo. Len. Field Value +21:20:58 ============================================================================ +21:20:58 [ 1] [ 4] [0810] +21:20:58 [ 7] [ 10] [0320142058] +21:20:58 [ 11] [ 6] [807651] +21:20:58 [ 15] [ 4] [0320] +21:20:58 [ 37] [ 12] [57921807651] +21:20:58 [ 39] [ 2] [00] +21:20:58 [ 70] [ 3] [001] +21:20:58 ============================================================================ +21:20:58 Sending to : +21:20:58 ============================================================================ +21:20:58 + + +waiting on router queue for slot.... +21:21:00 ============================================================================ +21:21:00 Slot Id : <125> +21:21:00 Transaction Type : RESPONSE +21:21:00 Received From : +21:21:00 ============================================================================ +21:21:00 FNo. Len. Field Value +21:21:00 ============================================================================ +21:21:00 [ 1] [ 4] [0210] +21:21:00 [ 2] [ 16] [1808931500008477] +21:21:00 [ 3] [ 6] [010000] +21:21:00 [ 4] [ 12] [000010000000] +21:21:00 [ 6] [ 12] [000010000000] +21:21:00 [ 7] [ 10] [0320211848] +21:21:00 [ 11] [ 6] [957700] +21:21:00 [ 12] [ 6] [211848] +21:21:00 [ 13] [ 4] [0320] +21:21:00 [ 18] [ 4] [6011] +21:21:00 [ 19] [ 3] [418] +21:21:00 [ 22] [ 3] [021] +21:21:00 [ 32] [ 6] [668899] +21:21:00 [ 35] [ 27] [1808931500008477=1803500499] +21:21:00 [ 37] [ 12] [507901215147] +21:21:00 [ 38] [ 6] [957700] +21:21:00 [ 39] [ 2] [00] +21:21:00 [ 41] [ 8] [03020013] +21:21:00 [ 49] [ 3] [418] +21:21:00 [ 52] [ 16] [9AEDB0D91D573B31] +21:21:00 [ 54] [ 20] [1001418C000042160700] +21:21:00 ============================================================================ +21:21:00 Sending to : +21:21:00 ============================================================================ +21:21:00 + + +waiting on router queue for slot.... +21:21:01 ============================================================================ +21:21:01 Slot Id : <125> +21:21:01 Transaction Type : RESPONSE +21:21:01 Received From : +21:21:01 ============================================================================ +21:21:01 FNo. Len. Field Value +21:21:01 ============================================================================ +21:21:01 [ 1] [ 4] [0210] +21:21:01 [ 2] [ 16] [1808931500008477] +21:21:01 [ 3] [ 6] [010000] +21:21:01 [ 4] [ 12] [000010000000] +21:21:01 [ 6] [ 12] [000010000000] +21:21:01 [ 7] [ 10] [0320211848] +21:21:01 [ 11] [ 6] [957700] +21:21:01 [ 12] [ 6] [211848] +21:21:01 [ 13] [ 4] [0320] +21:21:01 [ 18] [ 4] [6011] +21:21:01 [ 19] [ 3] [418] +21:21:01 [ 22] [ 3] [021] +21:21:01 [ 32] [ 6] [668899] +21:21:01 [ 35] [ 27] [1808931500008477=1803500499] +21:21:01 [ 37] [ 12] [507901215147] +21:21:01 [ 38] [ 6] [957700] +21:21:01 [ 39] [ 2] [00] +21:21:01 [ 41] [ 8] [03020013] +21:21:01 [ 49] [ 3] [418] +21:21:01 [ 52] [ 16] [9AEDB0D91D573B31] +21:21:01 [ 54] [ 20] [1001418C000042160700] +21:21:01 ============================================================================ +21:21:01 Calculate Source COMM Id = 4 +21:21:01 ============================================================================ +21:21:01 + + +waiting on router queue for slot.... +21:21:13 ============================================================================ +21:21:13 Slot Id : <70> +21:21:13 Transaction Type : REQUEST +21:21:13 Received From : +21:21:13 ============================================================================ +21:21:13 FNo. Len. Field Value +21:21:13 ============================================================================ +21:21:13 [ 1] [ 4] [0800] +21:21:13 [ 7] [ 10] [0320022022] +21:21:13 [ 11] [ 6] [158452] +21:21:13 [ 70] [ 3] [301] +21:21:13 ============================================================================ +21:21:13 + + +waiting on router queue for slot.... +21:21:13 Sending to : +21:21:13 ============================================================================ +21:21:13 ============================================================================ +21:21:13 Slot Id : <70> +21:21:13 Transaction Type : RESPONSE +21:21:13 Received From : +21:21:13 ============================================================================ +21:21:13 FNo. Len. Field Value +21:21:13 ============================================================================ +21:21:13 [ 1] [ 4] [0810] +21:21:13 [ 7] [ 10] [0320022022] +21:21:13 [ 11] [ 6] [158452] +21:21:13 [ 39] [ 2] [00] +21:21:13 [ 70] [ 3] [301] +21:21:13 ============================================================================ +21:21:13 Calculate Source COMM Id = 2 +21:21:13 ============================================================================ +21:21:13 + + +waiting on router queue for slot.... +21:21:21 ============================================================================ +21:21:21 Slot Id : <77> +21:21:21 Transaction Type : REQUEST +21:21:21 Received From : +21:21:21 ============================================================================ +21:21:21 FNo. Len. Field Value +21:21:21 ============================================================================ +21:21:21 [ 1] [ 4] [0800] +21:21:21 [ 7] [ 10] [0320141912] +21:21:21 [ 11] [ 6] [069992] +21:21:21 [ 37] [ 12] [57921069992] +21:21:21 [ 70] [ 3] [301] +21:21:21 ============================================================================ +21:21:21 + + +waiting on router queue for slot.... +21:21:21 Sending to : +21:21:21 ============================================================================ +21:21:21 ============================================================================ +21:21:21 Slot Id : <77> +21:21:21 Transaction Type : RESPONSE +21:21:21 Received From : +21:21:21 ============================================================================ +21:21:21 FNo. Len. Field Value +21:21:21 ============================================================================ +21:21:21 [ 1] [ 4] [0810] +21:21:21 [ 7] [ 10] [0320141912] +21:21:21 [ 11] [ 6] [069992] +21:21:21 [ 37] [ 12] [579210699920] +21:21:21 [ 39] [ 2] [00] +21:21:21 [ 70] [ 3] [810] +21:21:21 ============================================================================ +21:21:21 Calculate Source COMM Id = 4 +21:21:21 ============================================================================ +21:21:21 + + +waiting on router queue for slot.... +21:21:29 ============================================================================ +21:21:29 Slot Id : <102> +21:21:29 Transaction Type : REQUEST +21:21:29 Received From : +21:21:29 ============================================================================ +21:21:29 FNo. Len. Field Value +21:21:29 ============================================================================ +21:21:29 [ 1] [ 4] [0800] +21:21:29 [ 7] [ 10] [0320022038] +21:21:29 [ 11] [ 6] [158453] +21:21:29 [ 70] [ 3] [301] +21:21:29 ============================================================================ +21:21:29 + + +waiting on router queue for slot.... +21:21:29 Sending to : +21:21:29 ============================================================================ +21:21:29 ============================================================================ +21:21:29 Slot Id : <102> +21:21:29 Transaction Type : RESPONSE +21:21:29 Received From : +21:21:29 ============================================================================ +21:21:29 FNo. Len. Field Value +21:21:29 ============================================================================ +21:21:29 [ 1] [ 4] [0810] +21:21:29 [ 7] [ 10] [0320022038] +21:21:29 [ 11] [ 6] [158453] +21:21:29 [ 39] [ 2] [00] +21:21:29 [ 70] [ 3] [301] +21:21:29 ============================================================================ +21:21:29 Calculate Source COMM Id = 2 +21:21:29 ============================================================================ +21:21:29 + + +waiting on router queue for slot.... +21:21:46 ============================================================================ +21:21:46 Slot Id : <109> +21:21:46 Transaction Type : REQUEST +21:21:46 Received From : +21:21:46 ============================================================================ +21:21:46 FNo. Len. Field Value +21:21:46 ============================================================================ +21:21:46 [ 1] [ 4] [0800] +21:21:46 [ 7] [ 10] [0320022054] +21:21:46 [ 11] [ 6] [158454] +21:21:46 [ 70] [ 3] [301] +21:21:46 ============================================================================ +21:21:46 + + +waiting on router queue for slot.... +21:21:46 Sending to : +21:21:46 ============================================================================ +21:21:46 ============================================================================ +21:21:46 Slot Id : <109> +21:21:46 Transaction Type : RESPONSE +21:21:46 Received From : +21:21:46 ============================================================================ +21:21:46 FNo. Len. Field Value +21:21:46 ============================================================================ +21:21:46 [ 1] [ 4] [0810] +21:21:46 [ 7] [ 10] [0320022054] +21:21:46 [ 11] [ 6] [158454] +21:21:46 [ 39] [ 2] [00] +21:21:46 [ 70] [ 3] [301] +21:21:46 ============================================================================ +21:21:46 Calculate Source COMM Id = 2 +21:21:46 ============================================================================ +21:21:46 + + +waiting on router queue for slot.... +21:21:46 ============================================================================ +21:21:46 Slot Id : <85> +21:21:46 Transaction Type : REQUEST +21:21:46 Received From : +21:21:46 ============================================================================ +21:21:46 FNo. Len. Field Value +21:21:46 ============================================================================ +21:21:46 [ 1] [ 4] [0800] +21:21:46 [ 7] [ 10] [0321043337] +21:21:46 [ 11] [ 6] [213337] +21:21:46 [ 37] [ 12] [57921213337] +21:21:46 [ 70] [ 3] [301] +21:21:46 ============================================================================ +21:21:46 + + +waiting on router queue for slot.... +21:21:46 Sending to : +21:21:46 ============================================================================ +21:21:46 ============================================================================ +21:21:46 Slot Id : <85> +21:21:46 Transaction Type : RESPONSE +21:21:46 Received From : +21:21:46 ============================================================================ +21:21:46 FNo. Len. Field Value +21:21:46 ============================================================================ +21:21:46 [ 1] [ 4] [0810] +21:21:46 [ 7] [ 10] [0321043337] +21:21:46 [ 11] [ 6] [213337] +21:21:46 [ 37] [ 12] [579212133370] +21:21:46 [ 39] [ 2] [00] +21:21:46 [ 70] [ 3] [810] +21:21:46 ============================================================================ +21:21:46 Calculate Source COMM Id = 6 +21:21:46 ============================================================================ +21:21:46 + + +waiting on router queue for slot.... +21:21:56 ============================================================================ +21:21:56 Slot Id : <71> +21:21:56 Transaction Type : REQUEST +21:21:56 Received From : +21:21:56 ============================================================================ +21:21:56 FNo. Len. Field Value +21:21:56 ============================================================================ +21:21:56 [ 1] [ 4] [0800] +21:21:56 [ 7] [ 10] [0320022105] +21:21:56 [ 11] [ 6] [158455] +21:21:56 [ 70] [ 3] [301] +21:21:56 ============================================================================ +21:21:56 + + +waiting on router queue for slot.... +21:21:56 Sending to : +21:21:56 ============================================================================ +21:21:56 ============================================================================ +21:21:56 Slot Id : <71> +21:21:56 Transaction Type : RESPONSE +21:21:56 Received From : +21:21:56 ============================================================================ +21:21:56 FNo. Len. Field Value +21:21:56 ============================================================================ +21:21:56 [ 1] [ 4] [0810] +21:21:56 [ 7] [ 10] [0320022105] +21:21:56 [ 11] [ 6] [158455] +21:21:56 [ 39] [ 2] [00] +21:21:56 [ 70] [ 3] [301] +21:21:56 ============================================================================ +21:21:56 Calculate Source COMM Id = 2 +21:21:56 ============================================================================ +21:21:56 + + +waiting on router queue for slot.... +21:22:00 ============================================================================ +21:22:00 Slot Id : <136> +21:22:00 Transaction Type : REQUEST +21:22:00 Received From : +21:22:00 ============================================================================ +21:22:00 FNo. Len. Field Value +21:22:00 ============================================================================ +21:22:00 [ 1] [ 4] [0800] +21:22:00 [ 2] [ 5] [02531] +21:22:00 [ 3] [ 6] [579218] +21:22:00 [ 7] [ 10] [0320142200] +21:22:00 [ 11] [ 6] [807652] +21:22:00 [ 15] [ 10] [0320142200] +21:22:00 [ 37] [ 11] [57921807652] +21:22:00 [ 70] [ 3] [001] +21:22:00 ============================================================================ +21:22:00 + + +waiting on router queue for slot.... +21:22:00 ============================================================================ +21:22:00 Slot Id : <136> +21:22:00 Transaction Type : RESPONSE +21:22:00 Received From : +21:22:00 ============================================================================ +21:22:00 FNo. Len. Field Value +21:22:00 ============================================================================ +21:22:00 [ 1] [ 4] [0810] +21:22:00 [ 7] [ 10] [0320142200] +21:22:00 [ 11] [ 6] [807652] +21:22:00 [ 15] [ 4] [0320] +21:22:00 [ 37] [ 12] [57921807652] +21:22:00 [ 39] [ 2] [00] +21:22:00 [ 70] [ 3] [001] +21:22:00 ============================================================================ +21:22:00 Sending to : +21:22:00 ============================================================================ +21:22:00 + + +waiting on router queue for slot.... +21:22:01 ============================================================================ +21:22:01 Slot Id : <105> +21:22:01 Transaction Type : REQUEST +21:22:01 Received From : +21:22:01 ============================================================================ +21:22:01 FNo. Len. Field Value +21:22:01 ============================================================================ +21:22:01 [ 1] [ 4] [0200] +21:22:01 [ 2] [ 16] [1808931500008477] +21:22:01 [ 3] [ 6] [010000] +21:22:01 [ 4] [ 12] [000010000000] +21:22:01 [ 7] [ 10] [0320211952] +21:22:01 [ 11] [ 6] [957713] +21:22:01 [ 12] [ 6] [211952] +21:22:01 [ 13] [ 4] [0320] +21:22:01 [ 15] [ 4] [0320] +21:22:01 [ 18] [ 4] [6011] +21:22:01 [ 19] [ 3] [418] +21:22:01 [ 22] [ 3] [021] +21:22:01 [ 25] [ 2] [01] +21:22:01 [ 28] [ 9] [D00002000] +21:22:01 [ 32] [ 6] [668899] +21:22:01 [ 35] [ 27] [1808931500008477=1803500499] +21:22:01 [ 37] [ 12] [507901215149] +21:22:01 [ 41] [ 8] [03020013] +21:22:01 [ 42] [ 15] [APT ] +21:22:01 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +21:22:01 [ 49] [ 3] [418] +21:22:01 [ 52] [ 16] [AD22E36307060BFB] +21:22:01 ============================================================================ +21:22:01 + + +waiting on router queue for slot.... +21:22:01 Sending to : +21:22:01 ============================================================================ +21:22:01 Sending to : +21:22:01 ============================================================================ +21:22:01 ============================================================================ +21:22:01 Slot Id : <105> +21:22:01 Transaction Type : REQUEST +21:22:01 Received From : +21:22:01 ============================================================================ +21:22:01 FNo. Len. Field Value +21:22:01 ============================================================================ +21:22:01 [ 1] [ 4] [0200] +21:22:01 [ 2] [ 16] [1808931500008477] +21:22:01 [ 3] [ 6] [010000] +21:22:01 [ 4] [ 12] [000010000000] +21:22:01 [ 7] [ 10] [0320211952] +21:22:01 [ 11] [ 6] [957713] +21:22:01 [ 12] [ 6] [211952] +21:22:01 [ 13] [ 4] [0320] +21:22:01 [ 15] [ 4] [0320] +21:22:01 [ 18] [ 4] [6011] +21:22:01 [ 19] [ 3] [418] +21:22:01 [ 22] [ 3] [021] +21:22:01 [ 25] [ 2] [01] +21:22:01 [ 28] [ 9] [D00002000] +21:22:01 [ 32] [ 6] [668899] +21:22:01 [ 35] [ 27] [1808931500008477=1803500499] +21:22:01 [ 37] [ 12] [507901215149] +21:22:01 [ 41] [ 8] [03020013] +21:22:01 [ 42] [ 15] [APT ] +21:22:01 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +21:22:01 [ 49] [ 3] [418] +21:22:01 [ 52] [ 16] [AD22E36307060BFB] +21:22:01 ============================================================================ +21:22:01 + + +waiting on router queue for slot.... +21:22:01 Sending to : +21:22:01 ============================================================================ +21:22:01 ============================================================================ +21:22:01 Slot Id : <105> +21:22:01 Transaction Type : REQUEST +21:22:01 Received From : +21:22:01 ============================================================================ +21:22:01 FNo. Len. Field Value +21:22:01 ============================================================================ +21:22:01 [ 1] [ 4] [0200] +21:22:01 [ 2] [ 16] [1808931500008477] +21:22:01 [ 3] [ 6] [010000] +21:22:01 [ 4] [ 12] [000010000000] +21:22:01 [ 7] [ 10] [0320211952] +21:22:01 [ 11] [ 6] [957713] +21:22:01 [ 12] [ 6] [211952] +21:22:01 [ 13] [ 4] [0320] +21:22:01 [ 15] [ 4] [0320] +21:22:01 [ 18] [ 4] [6011] +21:22:01 [ 19] [ 3] [418] +21:22:01 [ 22] [ 3] [021] +21:22:01 [ 25] [ 2] [01] +21:22:01 [ 28] [ 9] [D00002000] +21:22:01 [ 32] [ 6] [668899] +21:22:01 [ 35] [ 27] [1808931500008477=1803500499] +21:22:01 [ 37] [ 12] [507901215149] +21:22:01 [ 41] [ 8] [03020013] +21:22:01 [ 42] [ 15] [APT ] +21:22:01 [ 43] [ 40] [ SRIKAI MARKET CHANTHABOUS] +21:22:01 [ 49] [ 3] [418] +21:22:01 [ 52] [ 16] [9AEDB0D91D573B31] +21:22:01 ============================================================================ +21:22:01 + + +waiting on router queue for slot.... +21:22:01 Sending to : <2> +21:22:01 ============================================================================ +21:22:05 ============================================================================ +21:22:05 Slot Id : <105> +21:22:05 Transaction Type : RESPONSE +21:22:05 Received From : +21:22:05 ============================================================================ +21:22:05 FNo. Len. Field Value +21:22:05 ============================================================================ +21:22:05 [ 1] [ 4] [0210] +21:22:05 [ 2] [ 16] [1808931500008477] +21:22:05 [ 3] [ 6] [010000] +21:22:05 [ 4] [ 12] [000010000000] +21:22:05 [ 6] [ 12] [000010000000] +21:22:05 [ 7] [ 10] [0320211952] +21:22:05 [ 11] [ 6] [957713] +21:22:05 [ 12] [ 6] [211952] +21:22:05 [ 13] [ 4] [0320] +21:22:05 [ 18] [ 4] [6011] +21:22:05 [ 19] [ 3] [418] +21:22:05 [ 22] [ 3] [021] +21:22:05 [ 32] [ 6] [668899] +21:22:05 [ 35] [ 27] [1808931500008477=1803500499] +21:22:05 [ 37] [ 12] [507901215149] +21:22:05 [ 38] [ 6] [957713] +21:22:05 [ 39] [ 2] [00] +21:22:05 [ 41] [ 8] [03020013] +21:22:05 [ 49] [ 3] [418] +21:22:05 [ 52] [ 16] [9AEDB0D91D573B31] +21:22:05 [ 54] [ 20] [1001418C000031960700] +21:22:05 ============================================================================ +21:22:05 Sending to : +21:22:05 ============================================================================ +21:22:05 + + +waiting on router queue for slot.... +21:22:06 ============================================================================ +21:22:06 Slot Id : <105> +21:22:06 Transaction Type : RESPONSE +21:22:06 Received From : +21:22:06 ============================================================================ +21:22:06 FNo. Len. Field Value +21:22:06 ============================================================================ +21:22:06 [ 1] [ 4] [0210] +21:22:06 [ 2] [ 16] [1808931500008477] +21:22:06 [ 3] [ 6] [010000] +21:22:06 [ 4] [ 12] [000010000000] +21:22:06 [ 6] [ 12] [000010000000] +21:22:06 [ 7] [ 10] [0320211952] +21:22:06 [ 11] [ 6] [957713] +21:22:06 [ 12] [ 6] [211952] +21:22:06 [ 13] [ 4] [0320] +21:22:06 [ 18] [ 4] [6011] +21:22:06 [ 19] [ 3] [418] +21:22:06 [ 22] [ 3] [021] +21:22:06 [ 32] [ 6] [668899] +21:22:06 [ 35] [ 27] [1808931500008477=1803500499] +21:22:06 [ 37] [ 12] [507901215149] +21:22:06 [ 38] [ 6] [957713] +21:22:06 [ 39] [ 2] [00] +21:22:06 [ 41] [ 8] [03020013] +21:22:06 [ 49] [ 3] [418] +21:22:06 [ 52] [ 16] [9AEDB0D91D573B31] +21:22:06 [ 54] [ 20] [1001418C000031960700] +21:22:06 ============================================================================ +21:22:06 Calculate Source COMM Id = 4 +21:22:06 ============================================================================ +21:22:06 + + +waiting on router queue for slot.... +21:22:12 ============================================================================ +21:22:12 Slot Id : <129> +21:22:12 Transaction Type : REQUEST +21:22:12 Received From : +21:22:12 ============================================================================ +21:22:12 FNo. Len. Field Value +21:22:12 ============================================================================ +21:22:12 [ 1] [ 4] [0800] +21:22:12 [ 7] [ 10] [0320022120] +21:22:12 [ 11] [ 6] [158456] +21:22:12 [ 70] [ 3] [301] +21:22:12 ============================================================================ +21:22:12 + + +waiting on router queue for slot.... +21:22:12 Sending to : +21:22:12 ============================================================================ +21:22:12 ============================================================================ +21:22:12 Slot Id : <129> +21:22:12 Transaction Type : RESPONSE +21:22:12 Received From : +21:22:12 ============================================================================ +21:22:12 FNo. Len. Field Value +21:22:12 ============================================================================ +21:22:12 [ 1] [ 4] [0810] +21:22:12 [ 7] [ 10] [0320022120] +21:22:12 [ 11] [ 6] [158456] +21:22:12 [ 39] [ 2] [00] +21:22:12 [ 70] [ 3] [301] +21:22:12 ============================================================================ +21:22:12 Calculate Source COMM Id = 2 +21:22:12 ============================================================================ +21:22:12 + + +waiting on router queue for slot.... +21:22:27 ============================================================================ +21:22:27 Slot Id : <116> +21:22:27 Transaction Type : REQUEST +21:22:27 Received From : +21:22:27 ============================================================================ +21:22:27 FNo. Len. Field Value +21:22:27 ============================================================================ +21:22:27 [ 1] [ 4] [0800] +21:22:27 [ 7] [ 10] [0320022135] +21:22:27 [ 11] [ 6] [158457] +21:22:27 [ 70] [ 3] [301] +21:22:27 ============================================================================ +21:22:27 + + +waiting on router queue for slot.... +21:22:27 Sending to : +21:22:27 ============================================================================ +21:22:27 ============================================================================ +21:22:27 Slot Id : <116> +21:22:27 Transaction Type : RESPONSE +21:22:27 Received From : +21:22:27 ============================================================================ +21:22:27 FNo. Len. Field Value +21:22:27 ============================================================================ +21:22:27 [ 1] [ 4] [0810] +21:22:27 [ 7] [ 10] [0320022135] +21:22:27 [ 11] [ 6] [158457] +21:22:27 [ 39] [ 2] [00] +21:22:27 [ 70] [ 3] [301] +21:22:27 ============================================================================ +21:22:27 Calculate Source COMM Id = 2 +21:22:27 ============================================================================ +21:22:27 + + +waiting on router queue for slot.... +21:22:43 ============================================================================ +21:22:43 Slot Id : <131> +21:22:43 Transaction Type : REQUEST +21:22:43 Received From : +21:22:43 ============================================================================ +21:22:43 FNo. Len. Field Value +21:22:43 ============================================================================ +21:22:43 [ 1] [ 4] [0800] +21:22:43 [ 7] [ 10] [0320022151] +21:22:43 [ 11] [ 6] [158458] +21:22:43 [ 70] [ 3] [301] +21:22:43 ============================================================================ +21:22:43 + + +waiting on router queue for slot.... +21:22:43 Sending to : +21:22:43 ============================================================================ +21:22:43 ============================================================================ +21:22:43 Slot Id : <131> +21:22:43 Transaction Type : RESPONSE +21:22:43 Received From : +21:22:43 ============================================================================ +21:22:43 FNo. Len. Field Value +21:22:43 ============================================================================ +21:22:43 [ 1] [ 4] [0810] +21:22:43 [ 7] [ 10] [0320022151] +21:22:43 [ 11] [ 6] [158458] +21:22:43 [ 39] [ 2] [00] +21:22:43 [ 70] [ 3] [301] +21:22:43 ============================================================================ +21:22:43 Calculate Source COMM Id = 2 +21:22:43 ============================================================================ +21:22:43 + + +waiting on router queue for slot.... +21:22:51 ============================================================================ +21:22:51 Slot Id : <104> +21:22:51 Transaction Type : REQUEST +21:22:51 Received From : +21:22:51 ============================================================================ +21:22:51 FNo. Len. Field Value +21:22:51 ============================================================================ +21:22:51 [ 1] [ 4] [0800] +21:22:51 [ 7] [ 10] [0321043442] +21:22:51 [ 11] [ 6] [213442] +21:22:51 [ 37] [ 12] [57921213442] +21:22:51 [ 70] [ 3] [301] +21:22:51 ============================================================================ +21:22:51 + + +waiting on router queue for slot.... +21:22:51 Sending to : +21:22:51 ============================================================================ +21:22:51 ============================================================================ +21:22:51 Slot Id : <104> +21:22:51 Transaction Type : RESPONSE +21:22:51 Received From : +21:22:51 ============================================================================ +21:22:51 FNo. Len. Field Value +21:22:51 ============================================================================ +21:22:51 [ 1] [ 4] [0810] +21:22:51 [ 7] [ 10] [0321043442] +21:22:51 [ 11] [ 6] [213442] +21:22:51 [ 37] [ 12] [579212134420] +21:22:51 [ 39] [ 2] [00] +21:22:51 [ 70] [ 3] [810] +21:22:51 ============================================================================ +21:22:51 Calculate Source COMM Id = 6 +21:22:51 ============================================================================ +21:22:51 + + +waiting on router queue for slot.... +21:22:54 ============================================================================ +21:22:54 Slot Id : <138> +21:22:54 Transaction Type : REQUEST +21:22:54 Received From : +21:22:54 ============================================================================ +21:22:54 FNo. Len. Field Value +21:22:54 ============================================================================ +21:22:54 [ 1] [ 4] [0800] +21:22:54 [ 7] [ 10] [0320022202] +21:22:54 [ 11] [ 6] [158459] +21:22:54 [ 70] [ 3] [301] +21:22:54 ============================================================================ +21:22:54 + + +waiting on router queue for slot.... +21:22:54 Sending to : +21:22:54 ============================================================================ +21:22:54 ============================================================================ +21:22:54 Slot Id : <138> +21:22:54 Transaction Type : RESPONSE +21:22:54 Received From : +21:22:54 ============================================================================ +21:22:54 FNo. Len. Field Value +21:22:54 ============================================================================ +21:22:54 [ 1] [ 4] [0810] +21:22:54 [ 7] [ 10] [0320022202] +21:22:54 [ 11] [ 6] [158459] +21:22:54 [ 39] [ 2] [00] +21:22:54 [ 70] [ 3] [301] +21:22:54 ============================================================================ +21:22:54 Calculate Source COMM Id = 2 +21:22:54 ============================================================================ +21:22:54 + + +waiting on router queue for slot.... +21:23:02 ============================================================================ +21:23:02 Slot Id : <97> +21:23:02 Transaction Type : REQUEST +21:23:02 Received From : +21:23:02 ============================================================================ +21:23:02 FNo. Len. Field Value +21:23:02 ============================================================================ +21:23:02 [ 1] [ 4] [0800] +21:23:02 [ 2] [ 5] [02531] +21:23:02 [ 3] [ 6] [579218] +21:23:02 [ 7] [ 10] [0320142302] +21:23:02 [ 11] [ 6] [807653] +21:23:02 [ 15] [ 10] [0320142302] +21:23:02 [ 37] [ 11] [57921807653] +21:23:02 [ 70] [ 3] [001] +21:23:02 ============================================================================ +21:23:02 + + +waiting on router queue for slot.... +21:23:02 ============================================================================ +21:23:02 Slot Id : <97> +21:23:02 Transaction Type : RESPONSE +21:23:02 Received From : +21:23:02 ============================================================================ +21:23:02 FNo. Len. Field Value +21:23:02 ============================================================================ +21:23:02 [ 1] [ 4] [0810] +21:23:02 [ 7] [ 10] [0320142302] +21:23:02 [ 11] [ 6] [807653] +21:23:02 [ 15] [ 4] [0320] +21:23:02 [ 37] [ 12] [57921807653] +21:23:02 [ 39] [ 2] [00] +21:23:02 [ 70] [ 3] [001] +21:23:02 ============================================================================ +21:23:02 Sending to : +21:23:02 ============================================================================ +21:23:02 + + +waiting on router queue for slot.... +21:23:05 ============================================================================ +21:23:05 Slot Id : <112> +21:23:05 Transaction Type : REQUEST +21:23:05 Received From : +21:23:05 ============================================================================ +21:23:05 FNo. Len. Field Value +21:23:05 ============================================================================ +21:23:05 [ 1] [ 4] [0800] +21:23:05 [ 7] [ 10] [0320022213] +21:23:05 [ 11] [ 6] [158460] +21:23:05 [ 70] [ 3] [301] +21:23:05 ============================================================================ +21:23:05 + + +waiting on router queue for slot.... +21:23:05 Sending to : +21:23:05 ============================================================================ +21:23:05 ============================================================================ +21:23:05 Slot Id : <112> +21:23:05 Transaction Type : RESPONSE +21:23:05 Received From : +21:23:05 ============================================================================ +21:23:05 FNo. Len. Field Value +21:23:05 ============================================================================ +21:23:05 [ 1] [ 4] [0810] +21:23:05 [ 7] [ 10] [0320022213] +21:23:05 [ 11] [ 6] [158460] +21:23:05 [ 39] [ 2] [00] +21:23:05 [ 70] [ 3] [301] +21:23:05 ============================================================================ +21:23:05 Calculate Source COMM Id = 2 +21:23:05 ============================================================================ +21:23:05 + + +waiting on router queue for slot.... +21:23:17 ============================================================================ +21:23:17 Slot Id : <124> +21:23:17 Transaction Type : REQUEST +21:23:17 Received From : +21:23:17 ============================================================================ +21:23:17 FNo. Len. Field Value +21:23:17 ============================================================================ +21:23:17 [ 1] [ 4] [0800] +21:23:17 [ 7] [ 10] [0320022225] +21:23:17 [ 11] [ 6] [158461] +21:23:17 [ 70] [ 3] [301] +21:23:17 ============================================================================ +21:23:17 + + +waiting on router queue for slot.... +21:23:17 Sending to : +21:23:17 ============================================================================ +21:23:17 ============================================================================ +21:23:17 Slot Id : <124> +21:23:17 Transaction Type : RESPONSE +21:23:17 Received From : +21:23:17 ============================================================================ +21:23:17 FNo. Len. Field Value +21:23:17 ============================================================================ +21:23:17 [ 1] [ 4] [0810] +21:23:17 [ 7] [ 10] [0320022225] +21:23:17 [ 11] [ 6] [158461] +21:23:17 [ 39] [ 2] [00] +21:23:17 [ 70] [ 3] [301] +21:23:17 ============================================================================ +21:23:17 Calculate Source COMM Id = 2 +21:23:17 ============================================================================ +21:23:17 + + +waiting on router queue for slot.... +21:23:32 ============================================================================ +21:23:32 Slot Id : <111> +21:23:32 Transaction Type : REQUEST +21:23:32 Received From : +21:23:32 ============================================================================ +21:23:32 FNo. Len. Field Value +21:23:32 ============================================================================ +21:23:32 [ 1] [ 4] [0800] +21:23:32 [ 7] [ 10] [0320022240] +21:23:32 [ 11] [ 6] [158462] +21:23:32 [ 70] [ 3] [301] +21:23:32 ============================================================================ +21:23:32 + + +waiting on router queue for slot.... +21:23:32 Sending to : +21:23:32 ============================================================================ +21:23:32 ============================================================================ +21:23:32 Slot Id : <111> +21:23:32 Transaction Type : RESPONSE +21:23:32 Received From : +21:23:32 ============================================================================ +21:23:32 FNo. Len. Field Value +21:23:32 ============================================================================ +21:23:32 [ 1] [ 4] [0810] +21:23:32 [ 7] [ 10] [0320022240] +21:23:32 [ 11] [ 6] [158462] +21:23:32 [ 39] [ 2] [00] +21:23:32 [ 70] [ 3] [301] +21:23:32 ============================================================================ +21:23:32 Calculate Source COMM Id = 2 +21:23:32 ============================================================================ +21:23:32 + + +waiting on router queue for slot.... +21:23:43 ============================================================================ +21:23:43 Slot Id : <80> +21:23:43 Transaction Type : REQUEST +21:23:43 Received From : +21:23:43 ============================================================================ +21:23:43 FNo. Len. Field Value +21:23:43 ============================================================================ +21:23:43 [ 1] [ 4] [0800] +21:23:43 [ 7] [ 10] [0320022251] +21:23:43 [ 11] [ 6] [158463] +21:23:43 [ 70] [ 3] [301] +21:23:43 ============================================================================ +21:23:43 + + +waiting on router queue for slot.... +21:23:43 Sending to : +21:23:43 ============================================================================ +21:23:43 ============================================================================ +21:23:43 Slot Id : <80> +21:23:43 Transaction Type : RESPONSE +21:23:43 Received From : +21:23:43 ============================================================================ +21:23:43 FNo. Len. Field Value +21:23:43 ============================================================================ +21:23:43 [ 1] [ 4] [0810] +21:23:43 [ 7] [ 10] [0320022251] +21:23:43 [ 11] [ 6] [158463] +21:23:43 [ 39] [ 2] [00] +21:23:43 [ 70] [ 3] [301] +21:23:43 ============================================================================ +21:23:43 Calculate Source COMM Id = 2 +21:23:43 ============================================================================ +21:23:43 + + +waiting on router queue for slot.... +21:23:57 ============================================================================ +21:23:57 Slot Id : <140> +21:23:57 Transaction Type : REQUEST +21:23:57 Received From : +21:23:57 ============================================================================ +21:23:57 FNo. Len. Field Value +21:23:57 ============================================================================ +21:23:57 [ 1] [ 4] [0800] +21:23:57 [ 7] [ 10] [0321043547] +21:23:57 [ 11] [ 6] [213547] +21:23:57 [ 37] [ 12] [57921213547] +21:23:57 [ 70] [ 3] [301] +21:23:57 ============================================================================ +21:23:57 + + +waiting on router queue for slot.... +21:23:57 Sending to : +21:23:57 ============================================================================ +21:23:57 ============================================================================ +21:23:57 Slot Id : <140> +21:23:57 Transaction Type : RESPONSE +21:23:57 Received From : +21:23:57 ============================================================================ +21:23:57 FNo. Len. Field Value +21:23:57 ============================================================================ +21:23:57 [ 1] [ 4] [0810] +21:23:57 [ 7] [ 10] [0321043547] +21:23:57 [ 11] [ 6] [213547] +21:23:57 [ 37] [ 12] [579212135470] +21:23:57 [ 39] [ 2] [00] +21:23:57 [ 70] [ 3] [810] +21:23:57 ============================================================================ +21:23:57 Calculate Source COMM Id = 6 +21:23:57 ============================================================================ +21:23:57 + + +waiting on router queue for slot.... +21:23:58 ============================================================================ +21:23:58 Slot Id : <123> +21:23:58 Transaction Type : REQUEST +21:23:58 Received From : +21:23:58 ============================================================================ +21:23:58 FNo. Len. Field Value +21:23:58 ============================================================================ +21:23:58 [ 1] [ 4] [0800] +21:23:58 [ 7] [ 10] [0320022306] +21:23:58 [ 11] [ 6] [158464] +21:23:58 [ 70] [ 3] [301] +21:23:58 ============================================================================ +21:23:58 + + +waiting on router queue for slot.... +21:23:58 Sending to : +21:23:58 ============================================================================ +21:23:58 ============================================================================ +21:23:58 Slot Id : <123> +21:23:58 Transaction Type : RESPONSE +21:23:58 Received From : +21:23:58 ============================================================================ +21:23:58 FNo. Len. Field Value +21:23:58 ============================================================================ +21:23:58 [ 1] [ 4] [0810] +21:23:58 [ 7] [ 10] [0320022306] +21:23:58 [ 11] [ 6] [158464] +21:23:58 [ 39] [ 2] [00] +21:23:58 [ 70] [ 3] [301] +21:23:58 ============================================================================ +21:23:58 Calculate Source COMM Id = 2 +21:23:58 ============================================================================ +21:23:58 + + +waiting on router queue for slot.... +21:24:04 ============================================================================ +21:24:04 Slot Id : <147> +21:24:04 Transaction Type : REQUEST +21:24:04 Received From : +21:24:04 ============================================================================ +21:24:04 FNo. Len. Field Value +21:24:04 ============================================================================ +21:24:04 [ 1] [ 4] [0800] +21:24:04 [ 2] [ 5] [02531] +21:24:04 [ 3] [ 6] [579218] +21:24:04 [ 7] [ 10] [0320142404] +21:24:04 [ 11] [ 6] [807654] +21:24:04 [ 15] [ 10] [0320142404] +21:24:04 [ 37] [ 11] [57921807654] +21:24:04 [ 70] [ 3] [001] +21:24:04 ============================================================================ +21:24:04 + + +waiting on router queue for slot.... +21:24:04 ============================================================================ +21:24:04 Slot Id : <147> +21:24:04 Transaction Type : RESPONSE +21:24:04 Received From : +21:24:04 ============================================================================ +21:24:04 FNo. Len. Field Value +21:24:04 ============================================================================ +21:24:04 [ 1] [ 4] [0810] +21:24:04 [ 7] [ 10] [0320142404] +21:24:04 [ 11] [ 6] [807654] +21:24:04 [ 15] [ 4] [0320] +21:24:04 [ 37] [ 12] [57921807654] +21:24:04 [ 39] [ 2] [00] +21:24:04 [ 70] [ 3] [001] +21:24:04 ============================================================================ +21:24:04 Sending to : +21:24:04 ============================================================================ +21:24:04 + + +waiting on router queue for slot.... +21:24:08 ============================================================================ +21:24:08 Slot Id : <117> +21:24:08 Transaction Type : REQUEST +21:24:08 Received From : +21:24:08 ============================================================================ +21:24:08 FNo. Len. Field Value +21:24:08 ============================================================================ +21:24:08 [ 1] [ 4] [0800] +21:24:08 [ 7] [ 10] [0320022316] +21:24:08 [ 11] [ 6] [158465] +21:24:08 [ 70] [ 3] [301] +21:24:08 ============================================================================ +21:24:08 + + +waiting on router queue for slot.... +21:24:08 Sending to : +21:24:08 ============================================================================ +21:24:08 ============================================================================ +21:24:08 Slot Id : <117> +21:24:08 Transaction Type : RESPONSE +21:24:08 Received From : +21:24:08 ============================================================================ +21:24:08 FNo. Len. Field Value +21:24:08 ============================================================================ +21:24:08 [ 1] [ 4] [0810] +21:24:08 [ 7] [ 10] [0320022316] +21:24:08 [ 11] [ 6] [158465] +21:24:08 [ 39] [ 2] [00] +21:24:08 [ 70] [ 3] [301] +21:24:08 ============================================================================ +21:24:08 Calculate Source COMM Id = 2 +21:24:08 ============================================================================ +21:24:08 + + +waiting on router queue for slot.... +21:24:23 ============================================================================ +21:24:23 Slot Id : <132> +21:24:23 Transaction Type : REQUEST +21:24:23 Received From : +21:24:23 ============================================================================ +21:24:23 FNo. Len. Field Value +21:24:23 ============================================================================ +21:24:23 [ 1] [ 4] [0800] +21:24:23 [ 7] [ 10] [0320022332] +21:24:23 [ 11] [ 6] [158466] +21:24:23 [ 70] [ 3] [301] +21:24:23 ============================================================================ +21:24:23 + + +waiting on router queue for slot.... +21:24:23 Sending to : +21:24:23 ============================================================================ +21:24:23 ============================================================================ +21:24:23 Slot Id : <132> +21:24:23 Transaction Type : RESPONSE +21:24:23 Received From : +21:24:23 ============================================================================ +21:24:23 FNo. Len. Field Value +21:24:23 ============================================================================ +21:24:23 [ 1] [ 4] [0810] +21:24:23 [ 7] [ 10] [0320022332] +21:24:23 [ 11] [ 6] [158466] +21:24:23 [ 39] [ 2] [00] +21:24:23 [ 70] [ 3] [301] +21:24:23 ============================================================================ +21:24:23 Calculate Source COMM Id = 2 +21:24:23 ============================================================================ +21:24:23 + + +waiting on router queue for slot.... +21:24:35 ============================================================================ +21:24:35 Slot Id : <161> +21:24:35 Transaction Type : REQUEST +21:24:35 Received From : +21:24:35 ============================================================================ +21:24:35 FNo. Len. Field Value +21:24:35 ============================================================================ +21:24:35 [ 1] [ 4] [0800] +21:24:35 [ 7] [ 10] [0320022342] +21:24:35 [ 11] [ 6] [158467] +21:24:35 [ 70] [ 3] [301] +21:24:35 ============================================================================ +21:24:35 + + +waiting on router queue for slot.... +21:24:35 Sending to : +21:24:35 ============================================================================ +21:24:35 ============================================================================ +21:24:35 Slot Id : <161> +21:24:35 Transaction Type : RESPONSE +21:24:35 Received From : +21:24:35 ============================================================================ +21:24:35 FNo. Len. Field Value +21:24:35 ============================================================================ +21:24:35 [ 1] [ 4] [0810] +21:24:35 [ 7] [ 10] [0320022342] +21:24:35 [ 11] [ 6] [158467] +21:24:35 [ 39] [ 2] [00] +21:24:35 [ 70] [ 3] [301] +21:24:35 ============================================================================ +21:24:35 Calculate Source COMM Id = 2 +21:24:35 ============================================================================ +21:24:35 + + +waiting on router queue for slot.... +21:24:50 ============================================================================ +21:24:50 Slot Id : <122> +21:24:50 Transaction Type : REQUEST +21:24:50 Received From : +21:24:50 ============================================================================ +21:24:50 FNo. Len. Field Value +21:24:50 ============================================================================ +21:24:50 [ 1] [ 4] [0800] +21:24:50 [ 7] [ 10] [0320022358] +21:24:50 [ 11] [ 6] [158468] +21:24:50 [ 70] [ 3] [301] +21:24:50 ============================================================================ +21:24:50 + + +waiting on router queue for slot.... +21:24:50 Sending to : +21:24:50 ============================================================================ +21:24:50 ============================================================================ +21:24:50 Slot Id : <122> +21:24:50 Transaction Type : RESPONSE +21:24:50 Received From : +21:24:50 ============================================================================ +21:24:50 FNo. Len. Field Value +21:24:50 ============================================================================ +21:24:50 [ 1] [ 4] [0810] +21:24:50 [ 7] [ 10] [0320022358] +21:24:50 [ 11] [ 6] [158468] +21:24:50 [ 39] [ 2] [00] +21:24:50 [ 70] [ 3] [301] +21:24:50 ============================================================================ +21:24:50 Calculate Source COMM Id = 2 +21:24:50 ============================================================================ +21:24:50 + + +waiting on router queue for slot.... +21:24:55 ============================================================================ +21:24:55 Slot Id : <162> +21:24:55 Transaction Type : REQUEST +21:24:55 Received From : +21:24:55 ============================================================================ +21:24:55 FNo. Len. Field Value +21:24:55 ============================================================================ +21:24:55 [ 1] [ 4] [0800] +21:24:55 [ 7] [ 10] [0320143242] +21:24:55 [ 11] [ 6] [079508] +21:24:55 [ 37] [ 12] [57921079508] +21:24:55 [ 70] [ 3] [301] +21:24:55 ============================================================================ +21:24:55 + + +waiting on router queue for slot.... +21:24:55 Sending to : +21:24:55 ============================================================================ +21:24:55 ============================================================================ +21:24:55 Slot Id : <162> +21:24:55 Transaction Type : RESPONSE +21:24:55 Received From : +21:24:55 ============================================================================ +21:24:55 FNo. Len. Field Value +21:24:55 ============================================================================ +21:24:55 [ 1] [ 4] [0810] +21:24:55 [ 7] [ 10] [0320143242] +21:24:55 [ 11] [ 6] [079508] +21:24:55 [ 37] [ 12] [579210795080] +21:24:55 [ 39] [ 2] [00] +21:24:55 [ 70] [ 3] [810] +21:24:55 ============================================================================ +21:24:55 Calculate Source COMM Id = 1 +21:24:55 ============================================================================ +21:24:55 + + +waiting on router queue for slot.... +21:25:02 ============================================================================ +21:25:02 Slot Id : <143> +21:25:02 Transaction Type : REQUEST +21:25:02 Received From : +21:25:02 ============================================================================ +21:25:02 FNo. Len. Field Value +21:25:02 ============================================================================ +21:25:02 [ 1] [ 4] [0800] +21:25:02 [ 7] [ 10] [0321043652] +21:25:02 [ 11] [ 6] [213652] +21:25:02 [ 37] [ 12] [57921213652] +21:25:02 [ 70] [ 3] [301] +21:25:02 ============================================================================ +21:25:02 + + +waiting on router queue for slot.... +21:25:02 Sending to : +21:25:02 ============================================================================ +21:25:02 ============================================================================ +21:25:02 Slot Id : <143> +21:25:02 Transaction Type : RESPONSE +21:25:02 Received From : +21:25:02 ============================================================================ +21:25:02 FNo. Len. Field Value +21:25:02 ============================================================================ +21:25:02 [ 1] [ 4] [0810] +21:25:02 [ 7] [ 10] [0321043652] +21:25:02 [ 11] [ 6] [213652] +21:25:02 [ 37] [ 12] [579212136520] +21:25:02 [ 39] [ 2] [00] +21:25:02 [ 70] [ 3] [810] +21:25:02 ============================================================================ +21:25:02 Calculate Source COMM Id = 6 +21:25:02 ============================================================================ +21:25:02 + + +waiting on router queue for slot.... +21:25:02 ============================================================================ +21:25:02 Slot Id : <166> +21:25:02 Transaction Type : REQUEST +21:25:02 Received From : +21:25:02 ============================================================================ +21:25:02 FNo. Len. Field Value +21:25:02 ============================================================================ +21:25:02 [ 1] [ 4] [0800] +21:25:02 [ 7] [ 10] [0320022409] +21:25:02 [ 11] [ 6] [158469] +21:25:02 [ 70] [ 3] [301] +21:25:02 ============================================================================ +21:25:02 + + +waiting on router queue for slot.... +21:25:02 Sending to : +21:25:02 ============================================================================ +21:25:02 ============================================================================ +21:25:02 Slot Id : <166> +21:25:02 Transaction Type : RESPONSE +21:25:02 Received From : +21:25:02 ============================================================================ +21:25:02 FNo. Len. Field Value +21:25:02 ============================================================================ +21:25:02 [ 1] [ 4] [0810] +21:25:02 [ 7] [ 10] [0320022409] +21:25:02 [ 11] [ 6] [158469] +21:25:02 [ 39] [ 2] [00] +21:25:02 [ 70] [ 3] [301] +21:25:02 ============================================================================ +21:25:02 Calculate Source COMM Id = 2 +21:25:02 ============================================================================ +21:25:02 + + +waiting on router queue for slot.... +21:25:06 ============================================================================ +21:25:06 Slot Id : <154> +21:25:06 Transaction Type : REQUEST +21:25:06 Received From : +21:25:06 ============================================================================ +21:25:06 FNo. Len. Field Value +21:25:06 ============================================================================ +21:25:06 [ 1] [ 4] [0800] +21:25:06 [ 2] [ 5] [02531] +21:25:06 [ 3] [ 6] [579218] +21:25:06 [ 7] [ 10] [0320142506] +21:25:06 [ 11] [ 6] [807655] +21:25:06 [ 15] [ 10] [0320142506] +21:25:06 [ 37] [ 11] [57921807655] +21:25:06 [ 70] [ 3] [001] +21:25:06 ============================================================================ +21:25:06 + + +waiting on router queue for slot.... +21:25:06 ============================================================================ +21:25:06 Slot Id : <154> +21:25:06 Transaction Type : RESPONSE +21:25:06 Received From : +21:25:06 ============================================================================ +21:25:06 FNo. Len. Field Value +21:25:06 ============================================================================ +21:25:06 [ 1] [ 4] [0810] +21:25:06 [ 7] [ 10] [0320142506] +21:25:06 [ 11] [ 6] [807655] +21:25:06 [ 15] [ 4] [0320] +21:25:06 [ 37] [ 12] [57921807655] +21:25:06 [ 39] [ 2] [00] +21:25:06 [ 70] [ 3] [001] +21:25:06 ============================================================================ +21:25:06 Sending to : +21:25:06 ============================================================================ +21:25:06 + + +waiting on router queue for slot.... +21:25:17 ============================================================================ +21:25:17 Slot Id : <145> +21:25:17 Transaction Type : REQUEST +21:25:17 Received From : +21:25:17 ============================================================================ +21:25:17 FNo. Len. Field Value +21:25:17 ============================================================================ +21:25:17 [ 1] [ 4] [0800] +21:25:17 [ 7] [ 10] [0320022425] +21:25:17 [ 11] [ 6] [158470] +21:25:17 [ 70] [ 3] [301] +21:25:17 ============================================================================ +21:25:17 + + +waiting on router queue for slot.... +21:25:17 Sending to : +21:25:17 ============================================================================ +21:25:17 ============================================================================ +21:25:17 Slot Id : <145> +21:25:17 Transaction Type : RESPONSE +21:25:17 Received From : +21:25:17 ============================================================================ +21:25:17 FNo. Len. Field Value +21:25:17 ============================================================================ +21:25:17 [ 1] [ 4] [0810] +21:25:17 [ 7] [ 10] [0320022425] +21:25:17 [ 11] [ 6] [158470] +21:25:17 [ 39] [ 2] [00] +21:25:17 [ 70] [ 3] [301] +21:25:17 ============================================================================ +21:25:17 Calculate Source COMM Id = 2 +21:25:17 ============================================================================ +21:25:17 + + +waiting on router queue for slot.... +21:25:28 ============================================================================ +21:25:28 Slot Id : <153> +21:25:28 Transaction Type : REQUEST +21:25:28 Received From : +21:25:28 ============================================================================ +21:25:28 FNo. Len. Field Value +21:25:28 ============================================================================ +21:25:28 [ 1] [ 4] [0800] +21:25:28 [ 7] [ 10] [0320022436] +21:25:28 [ 11] [ 6] [158471] +21:25:28 [ 70] [ 3] [301] +21:25:28 ============================================================================ +21:25:28 + + +waiting on router queue for slot.... +21:25:28 Sending to : +21:25:28 ============================================================================ +21:25:28 ============================================================================ +21:25:28 Slot Id : <153> +21:25:28 Transaction Type : RESPONSE +21:25:28 Received From : +21:25:28 ============================================================================ +21:25:28 FNo. Len. Field Value +21:25:28 ============================================================================ +21:25:28 [ 1] [ 4] [0810] +21:25:28 [ 7] [ 10] [0320022436] +21:25:28 [ 11] [ 6] [158471] +21:25:28 [ 39] [ 2] [00] +21:25:28 [ 70] [ 3] [301] +21:25:28 ============================================================================ +21:25:28 Calculate Source COMM Id = 2 +21:25:28 ============================================================================ +21:25:28 + + +waiting on router queue for slot.... +21:25:39 ============================================================================ +21:25:39 Slot Id : <120> +21:25:39 Transaction Type : REQUEST +21:25:39 Received From : +21:25:39 ============================================================================ +21:25:39 FNo. Len. Field Value +21:25:39 ============================================================================ +21:25:39 [ 1] [ 4] [0800] +21:25:39 [ 7] [ 10] [0320022447] +21:25:39 [ 11] [ 6] [158472] +21:25:39 [ 70] [ 3] [301] +21:25:39 ============================================================================ +21:25:39 + + +waiting on router queue for slot.... +21:25:39 Sending to : +21:25:39 ============================================================================ +21:25:39 ============================================================================ +21:25:39 Slot Id : <120> +21:25:39 Transaction Type : RESPONSE +21:25:39 Received From : +21:25:39 ============================================================================ +21:25:39 FNo. Len. Field Value +21:25:39 ============================================================================ +21:25:39 [ 1] [ 4] [0810] +21:25:39 [ 7] [ 10] [0320022447] +21:25:39 [ 11] [ 6] [158472] +21:25:39 [ 39] [ 2] [00] +21:25:39 [ 70] [ 3] [301] +21:25:39 ============================================================================ +21:25:39 Calculate Source COMM Id = 2 +21:25:39 ============================================================================ +21:25:39 + + +waiting on router queue for slot.... +21:25:45 ============================================================================ +21:25:45 Slot Id : <150> +21:25:45 Transaction Type : REQUEST +21:25:45 Received From : +21:25:45 ============================================================================ +21:25:45 FNo. Len. Field Value +21:25:45 ============================================================================ +21:25:45 [ 1] [ 4] [0200] +21:25:45 [ 2] [ 16] [6213544001376901] +21:25:45 [ 3] [ 6] [012000] +21:25:45 [ 4] [ 12] [000020000000] +21:25:45 [ 7] [ 10] [0320142452] +21:25:45 [ 11] [ 6] [271687] +21:25:45 [ 12] [ 6] [212452] +21:25:45 [ 13] [ 4] [0320] +21:25:45 [ 14] [ 4] [4912] +21:25:45 [ 15] [ 4] [0320] +21:25:45 [ 18] [ 4] [6011] +21:25:45 [ 19] [ 3] [418] +21:25:45 [ 22] [ 3] [021] +21:25:45 [ 25] [ 2] [01] +21:25:45 [ 28] [ 9] [D00002000] +21:25:45 [ 32] [ 6] [180893] +21:25:45 [ 35] [ 32] [6213544001376901=491212017690071] +21:25:45 [ 37] [ 12] [507914271687] +21:25:45 [ 41] [ 8] [0528LPBP] +21:25:45 [ 42] [ 15] [999999 ] +21:25:45 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +21:25:45 [ 49] [ 3] [418] +21:25:45 [ 52] [ 16] [4D06B5EB0CB6F3DE] +21:25:45 ============================================================================ +21:25:45 + + +waiting on router queue for slot.... +21:25:45 Sending to : +21:25:45 ============================================================================ +21:25:45 Sending to : +21:25:45 ============================================================================ +21:25:45 ============================================================================ +21:25:45 Slot Id : <150> +21:25:45 Transaction Type : REQUEST +21:25:45 Received From : +21:25:45 ============================================================================ +21:25:45 FNo. Len. Field Value +21:25:45 ============================================================================ +21:25:45 [ 1] [ 4] [0200] +21:25:45 [ 2] [ 16] [6213544001376901] +21:25:45 [ 3] [ 6] [012000] +21:25:45 [ 4] [ 12] [000020000000] +21:25:45 [ 7] [ 10] [0320142452] +21:25:45 [ 11] [ 6] [271687] +21:25:45 [ 12] [ 6] [212452] +21:25:45 [ 13] [ 4] [0320] +21:25:45 [ 14] [ 4] [4912] +21:25:45 [ 15] [ 4] [0320] +21:25:45 [ 18] [ 4] [6011] +21:25:45 [ 19] [ 3] [418] +21:25:45 [ 22] [ 3] [021] +21:25:45 [ 25] [ 2] [01] +21:25:45 [ 28] [ 9] [D00002000] +21:25:45 [ 32] [ 6] [180893] +21:25:45 [ 35] [ 32] [6213544001376901=491212017690071] +21:25:45 [ 37] [ 12] [507914271687] +21:25:45 [ 41] [ 8] [0528LPBP] +21:25:45 [ 42] [ 15] [999999 ] +21:25:45 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +21:25:45 [ 49] [ 3] [418] +21:25:45 [ 52] [ 16] [4D06B5EB0CB6F3DE] +21:25:45 ============================================================================ +21:25:45 + + +waiting on router queue for slot.... +21:25:45 Sending to : +21:25:45 ============================================================================ +21:25:45 ============================================================================ +21:25:45 Slot Id : <150> +21:25:45 Transaction Type : REQUEST +21:25:45 Received From : +21:25:45 ============================================================================ +21:25:45 FNo. Len. Field Value +21:25:45 ============================================================================ +21:25:45 [ 1] [ 4] [0200] +21:25:45 [ 2] [ 16] [6213544001376901] +21:25:45 [ 3] [ 6] [012000] +21:25:45 [ 4] [ 12] [000020000000] +21:25:45 [ 7] [ 10] [0320142452] +21:25:45 [ 11] [ 6] [271687] +21:25:45 [ 12] [ 6] [212452] +21:25:45 [ 13] [ 4] [0320] +21:25:45 [ 14] [ 4] [4912] +21:25:45 [ 15] [ 4] [0320] +21:25:45 [ 18] [ 4] [6011] +21:25:45 [ 19] [ 3] [418] +21:25:45 [ 22] [ 3] [021] +21:25:45 [ 25] [ 2] [01] +21:25:45 [ 28] [ 9] [D00002000] +21:25:45 [ 32] [ 6] [180893] +21:25:45 [ 35] [ 32] [6213544001376901=491212017690071] +21:25:45 [ 37] [ 12] [507914271687] +21:25:45 [ 41] [ 8] [0528LPBP] +21:25:45 [ 42] [ 15] [999999 ] +21:25:45 [ 43] [ 40] [ATM PHOSY MARKET LOCATION, Luangprabang,] +21:25:45 [ 49] [ 3] [418] +21:25:45 [ 52] [ 16] [960DB8B6599A7C6B] +21:25:45 ============================================================================ +21:25:45 + + +waiting on router queue for slot.... +21:25:45 Sending to : <0> +21:25:45 ============================================================================ +21:25:46 ============================================================================ +21:25:46 Slot Id : <150> +21:25:46 Transaction Type : RESPONSE +21:25:46 Received From : +21:25:46 ============================================================================ +21:25:46 FNo. Len. Field Value +21:25:46 ============================================================================ +21:25:46 [ 1] [ 4] [0210] +21:25:46 [ 2] [ 16] [6213544001376901] +21:25:46 [ 3] [ 6] [012000] +21:25:46 [ 4] [ 12] [000020000000] +21:25:46 [ 7] [ 10] [0320142452] +21:25:46 [ 11] [ 6] [271687] +21:25:46 [ 12] [ 6] [212452] +21:25:46 [ 13] [ 4] [0320] +21:25:46 [ 15] [ 4] [0320] +21:25:46 [ 18] [ 4] [6011] +21:25:46 [ 19] [ 3] [418] +21:25:46 [ 32] [ 6] [180893] +21:25:46 [ 35] [ 32] [6213544001376901=491212017690071] +21:25:46 [ 37] [ 12] [507914271687] +21:25:46 [ 38] [ 6] [957773] +21:25:46 [ 39] [ 2] [00] +21:25:46 [ 41] [ 8] [0528LPBP] +21:25:46 [ 49] [ 3] [418] +21:25:46 [ 54] [ 40] [2001418C0000383189442002418C000018118944] +21:25:46 ============================================================================ +21:25:46 Sending to : +21:25:46 ============================================================================ +21:25:46 + + +waiting on router queue for slot.... +21:25:47 ============================================================================ +21:25:47 Slot Id : <150> +21:25:47 Transaction Type : RESPONSE +21:25:47 Received From : +21:25:47 ============================================================================ +21:25:47 FNo. Len. Field Value +21:25:47 ============================================================================ +21:25:47 [ 1] [ 4] [0210] +21:25:47 [ 2] [ 16] [6213544001376901] +21:25:47 [ 3] [ 6] [012000] +21:25:47 [ 4] [ 12] [000020000000] +21:25:47 [ 7] [ 10] [0320142452] +21:25:47 [ 11] [ 6] [271687] +21:25:47 [ 12] [ 6] [212452] +21:25:47 [ 13] [ 4] [0320] +21:25:47 [ 15] [ 4] [0320] +21:25:47 [ 18] [ 4] [6011] +21:25:47 [ 19] [ 3] [418] +21:25:47 [ 32] [ 6] [180893] +21:25:47 [ 35] [ 32] [6213544001376901=491212017690071] +21:25:47 [ 37] [ 12] [507914271687] +21:25:47 [ 38] [ 6] [957773] +21:25:47 [ 39] [ 2] [00] +21:25:47 [ 41] [ 8] [0528LPBP] +21:25:47 [ 49] [ 3] [418] +21:25:47 [ 54] [ 40] [2001418C0000383189442002418C000018118944] +21:25:47 ============================================================================ +21:25:47 Calculate Source COMM Id = 2 +21:25:47 ============================================================================ +21:25:47 + + +waiting on router queue for slot.... +21:26:01 ============================================================================ +21:26:01 Slot Id : <110> +21:26:01 Transaction Type : REQUEST +21:26:01 Received From : +21:26:01 ============================================================================ +21:26:01 FNo. Len. Field Value +21:26:01 ============================================================================ +21:26:01 [ 1] [ 4] [0800] +21:26:01 [ 7] [ 10] [0320022509] +21:26:01 [ 11] [ 6] [158473] +21:26:01 [ 70] [ 3] [301] +21:26:01 ============================================================================ +21:26:01 + + +waiting on router queue for slot.... +21:26:01 Sending to : +21:26:01 ============================================================================ +21:26:01 ============================================================================ +21:26:01 Slot Id : <110> +21:26:01 Transaction Type : RESPONSE +21:26:01 Received From : +21:26:01 ============================================================================ +21:26:01 FNo. Len. Field Value +21:26:01 ============================================================================ +21:26:01 [ 1] [ 4] [0810] +21:26:01 [ 7] [ 10] [0320022509] +21:26:01 [ 11] [ 6] [158473] +21:26:01 [ 39] [ 2] [00] +21:26:01 [ 70] [ 3] [301] +21:26:01 ============================================================================ +21:26:01 Calculate Source COMM Id = 2 +21:26:01 ============================================================================ +21:26:01 + + +waiting on router queue for slot.... +21:26:07 ============================================================================ +21:26:07 Slot Id : <133> +21:26:07 Transaction Type : REQUEST +21:26:07 Received From : +21:26:07 ============================================================================ +21:26:07 FNo. Len. Field Value +21:26:07 ============================================================================ +21:26:07 [ 1] [ 4] [0800] +21:26:07 [ 7] [ 10] [0321043757] +21:26:07 [ 11] [ 6] [213757] +21:26:07 [ 37] [ 12] [57921213757] +21:26:07 [ 70] [ 3] [301] +21:26:07 ============================================================================ +21:26:07 + + +waiting on router queue for slot.... +21:26:07 Sending to : +21:26:07 ============================================================================ +21:26:07 ============================================================================ +21:26:07 Slot Id : <133> +21:26:07 Transaction Type : RESPONSE +21:26:07 Received From : +21:26:07 ============================================================================ +21:26:07 FNo. Len. Field Value +21:26:07 ============================================================================ +21:26:07 [ 1] [ 4] [0810] +21:26:07 [ 7] [ 10] [0321043757] +21:26:07 [ 11] [ 6] [213757] +21:26:07 [ 37] [ 12] [579212137570] +21:26:07 [ 39] [ 2] [00] +21:26:07 [ 70] [ 3] [810] +21:26:07 ============================================================================ +21:26:07 Calculate Source COMM Id = 6 +21:26:07 ============================================================================ +21:26:07 + + +waiting on router queue for slot.... +21:26:08 ============================================================================ +21:26:08 Slot Id : <159> +21:26:08 Transaction Type : REQUEST +21:26:08 Received From : +21:26:08 ============================================================================ +21:26:08 FNo. Len. Field Value +21:26:08 ============================================================================ +21:26:08 [ 1] [ 4] [0800] +21:26:08 [ 2] [ 5] [02531] +21:26:08 [ 3] [ 6] [579218] +21:26:08 [ 7] [ 10] [0320142608] +21:26:08 [ 11] [ 6] [807656] +21:26:08 [ 15] [ 10] [0320142608] +21:26:08 [ 37] [ 11] [57921807656] +21:26:08 [ 70] [ 3] [001] +21:26:08 ============================================================================ +21:26:08 + + +waiting on router queue for slot.... +21:26:08 ============================================================================ +21:26:08 Slot Id : <159> +21:26:08 Transaction Type : RESPONSE +21:26:08 Received From : +21:26:08 ============================================================================ +21:26:08 FNo. Len. Field Value +21:26:08 ============================================================================ +21:26:08 [ 1] [ 4] [0810] +21:26:08 [ 7] [ 10] [0320142608] +21:26:08 [ 11] [ 6] [807656] +21:26:08 [ 15] [ 4] [0320] +21:26:08 [ 37] [ 12] [57921807656] +21:26:08 [ 39] [ 2] [00] +21:26:08 [ 70] [ 3] [001] +21:26:08 ============================================================================ +21:26:08 Sending to : +21:26:08 ============================================================================ +21:26:08 + + +waiting on router queue for slot.... +21:26:13 ============================================================================ +21:26:13 Slot Id : <146> +21:26:13 Transaction Type : REQUEST +21:26:13 Received From : +21:26:13 ============================================================================ +21:26:13 FNo. Len. Field Value +21:26:13 ============================================================================ +21:26:13 [ 1] [ 4] [0800] +21:26:13 [ 7] [ 10] [0320022522] +21:26:13 [ 11] [ 6] [158474] +21:26:13 [ 70] [ 3] [301] +21:26:13 ============================================================================ +21:26:13 + + +waiting on router queue for slot.... +21:26:13 Sending to : +21:26:13 ============================================================================ +21:26:13 ============================================================================ +21:26:13 Slot Id : <146> +21:26:13 Transaction Type : RESPONSE +21:26:13 Received From : +21:26:13 ============================================================================ +21:26:13 FNo. Len. Field Value +21:26:13 ============================================================================ +21:26:13 [ 1] [ 4] [0810] +21:26:13 [ 7] [ 10] [0320022522] +21:26:13 [ 11] [ 6] [158474] +21:26:13 [ 39] [ 2] [00] +21:26:13 [ 70] [ 3] [301] +21:26:13 ============================================================================ +21:26:13 Calculate Source COMM Id = 2 +21:26:13 ============================================================================ +21:26:13 + + +waiting on router queue for slot.... +21:26:21 ============================================================================ +21:26:21 Slot Id : <142> +21:26:21 Transaction Type : REQUEST +21:26:21 Received From : +21:26:21 ============================================================================ +21:26:21 FNo. Len. Field Value +21:26:21 ============================================================================ +21:26:21 [ 1] [ 4] [0800] +21:26:21 [ 7] [ 10] [0320142412] +21:26:21 [ 11] [ 6] [079208] +21:26:21 [ 37] [ 12] [57921079208] +21:26:21 [ 70] [ 3] [301] +21:26:21 ============================================================================ +21:26:21 + + +waiting on router queue for slot.... +21:26:21 Sending to : +21:26:21 ============================================================================ +21:26:21 ============================================================================ +21:26:21 Slot Id : <142> +21:26:21 Transaction Type : RESPONSE +21:26:21 Received From : +21:26:21 ============================================================================ +21:26:21 FNo. Len. Field Value +21:26:21 ============================================================================ +21:26:21 [ 1] [ 4] [0810] +21:26:21 [ 7] [ 10] [0320142412] +21:26:21 [ 11] [ 6] [079208] +21:26:21 [ 37] [ 12] [579210792080] +21:26:21 [ 39] [ 2] [00] +21:26:21 [ 70] [ 3] [810] +21:26:21 ============================================================================ +21:26:21 Calculate Source COMM Id = 4 +21:26:21 ============================================================================ +21:26:21 + + +waiting on router queue for slot.... +21:26:24 ============================================================================ +21:26:24 Slot Id : <158> +21:26:24 Transaction Type : REQUEST +21:26:24 Received From : +21:26:24 ============================================================================ +21:26:24 FNo. Len. Field Value +21:26:24 ============================================================================ +21:26:24 [ 1] [ 4] [0800] +21:26:24 [ 7] [ 10] [0320022533] +21:26:24 [ 11] [ 6] [158475] +21:26:24 [ 70] [ 3] [301] +21:26:24 ============================================================================ +21:26:24 + + +waiting on router queue for slot.... +21:26:24 Sending to : +21:26:24 ============================================================================ +21:26:24 ============================================================================ +21:26:24 Slot Id : <158> +21:26:24 Transaction Type : RESPONSE +21:26:24 Received From : +21:26:24 ============================================================================ +21:26:24 FNo. Len. Field Value +21:26:24 ============================================================================ +21:26:24 [ 1] [ 4] [0810] +21:26:24 [ 7] [ 10] [0320022533] +21:26:24 [ 11] [ 6] [158475] +21:26:24 [ 39] [ 2] [00] +21:26:24 [ 70] [ 3] [301] +21:26:24 ============================================================================ +21:26:24 Calculate Source COMM Id = 2 +21:26:24 ============================================================================ +21:26:24 + + +waiting on router queue for slot.... +21:26:41 ============================================================================ +21:26:41 Slot Id : <87> +21:26:41 Transaction Type : REQUEST +21:26:41 Received From : +21:26:41 ============================================================================ +21:26:41 FNo. Len. Field Value +21:26:41 ============================================================================ +21:26:41 [ 1] [ 4] [0800] +21:26:41 [ 7] [ 10] [0320022548] +21:26:41 [ 11] [ 6] [158476] +21:26:41 [ 70] [ 3] [301] +21:26:41 ============================================================================ +21:26:41 + + +waiting on router queue for slot.... +21:26:41 Sending to : +21:26:41 ============================================================================ +21:26:41 ============================================================================ +21:26:41 Slot Id : <87> +21:26:41 Transaction Type : RESPONSE +21:26:41 Received From : +21:26:41 ============================================================================ +21:26:41 FNo. Len. Field Value +21:26:41 ============================================================================ +21:26:41 [ 1] [ 4] [0810] +21:26:41 [ 7] [ 10] [0320022548] +21:26:41 [ 11] [ 6] [158476] +21:26:41 [ 39] [ 2] [00] +21:26:41 [ 70] [ 3] [301] +21:26:41 ============================================================================ +21:26:41 Calculate Source COMM Id = 2 +21:26:41 ============================================================================ +21:26:41 + + +waiting on router queue for slot.... +21:26:55 ============================================================================ +21:26:55 Slot Id : <167> +21:26:55 Transaction Type : REQUEST +21:26:55 Received From : +21:26:55 ============================================================================ +21:26:55 FNo. Len. Field Value +21:26:55 ============================================================================ +21:26:55 [ 1] [ 4] [0800] +21:26:55 [ 7] [ 10] [0320022603] +21:26:55 [ 11] [ 6] [158477] +21:26:55 [ 70] [ 3] [301] +21:26:55 ============================================================================ +21:26:55 + + +waiting on router queue for slot.... +21:26:55 Sending to : +21:26:55 ============================================================================ +21:26:55 ============================================================================ +21:26:55 Slot Id : <167> +21:26:55 Transaction Type : RESPONSE +21:26:55 Received From : +21:26:55 ============================================================================ +21:26:55 FNo. Len. Field Value +21:26:55 ============================================================================ +21:26:55 [ 1] [ 4] [0810] +21:26:55 [ 7] [ 10] [0320022603] +21:26:55 [ 11] [ 6] [158477] +21:26:55 [ 39] [ 2] [00] +21:26:55 [ 70] [ 3] [301] +21:26:55 ============================================================================ +21:26:55 Calculate Source COMM Id = 2 +21:26:55 ============================================================================ +21:26:55 + + +waiting on router queue for slot.... +21:27:06 ============================================================================ +21:27:06 Slot Id : <137> +21:27:06 Transaction Type : REQUEST +21:27:06 Received From : +21:27:06 ============================================================================ +21:27:06 FNo. Len. Field Value +21:27:06 ============================================================================ +21:27:06 [ 1] [ 4] [0800] +21:27:06 [ 7] [ 10] [0320022614] +21:27:06 [ 11] [ 6] [158478] +21:27:06 [ 70] [ 3] [301] +21:27:06 ============================================================================ +21:27:06 + + +waiting on router queue for slot.... +21:27:06 Sending to : +21:27:06 ============================================================================ +21:27:06 ============================================================================ +21:27:06 Slot Id : <137> +21:27:06 Transaction Type : RESPONSE +21:27:06 Received From : +21:27:06 ============================================================================ +21:27:06 FNo. Len. Field Value +21:27:06 ============================================================================ +21:27:06 [ 1] [ 4] [0810] +21:27:06 [ 7] [ 10] [0320022614] +21:27:06 [ 11] [ 6] [158478] +21:27:06 [ 39] [ 2] [00] +21:27:06 [ 70] [ 3] [301] +21:27:06 ============================================================================ +21:27:06 Calculate Source COMM Id = 2 +21:27:06 ============================================================================ +21:27:06 + + +waiting on router queue for slot.... +21:27:10 ============================================================================ +21:27:10 Slot Id : <130> +21:27:10 Transaction Type : REQUEST +21:27:10 Received From : +21:27:10 ============================================================================ +21:27:10 FNo. Len. Field Value +21:27:10 ============================================================================ +21:27:10 [ 1] [ 4] [0800] +21:27:10 [ 2] [ 5] [02531] +21:27:10 [ 3] [ 6] [579218] +21:27:10 [ 7] [ 10] [0320142710] +21:27:10 [ 11] [ 6] [807657] +21:27:10 [ 15] [ 10] [0320142710] +21:27:10 [ 37] [ 11] [57921807657] +21:27:10 [ 70] [ 3] [001] +21:27:10 ============================================================================ +21:27:10 + + +waiting on router queue for slot.... +21:27:10 ============================================================================ +21:27:10 Slot Id : <130> +21:27:10 Transaction Type : RESPONSE +21:27:10 Received From : +21:27:10 ============================================================================ +21:27:10 FNo. Len. Field Value +21:27:10 ============================================================================ +21:27:10 [ 1] [ 4] [0810] +21:27:10 [ 7] [ 10] [0320142710] +21:27:10 [ 11] [ 6] [807657] +21:27:10 [ 15] [ 4] [0320] +21:27:10 [ 37] [ 12] [57921807657] +21:27:10 [ 39] [ 2] [00] +21:27:10 [ 70] [ 3] [001] +21:27:10 ============================================================================ +21:27:10 Sending to : +21:27:10 ============================================================================ +21:27:10 + + +waiting on router queue for slot.... +21:27:12 ============================================================================ +21:27:12 Slot Id : <128> +21:27:12 Transaction Type : REQUEST +21:27:12 Received From : +21:27:12 ============================================================================ +21:27:12 FNo. Len. Field Value +21:27:12 ============================================================================ +21:27:12 [ 1] [ 4] [0800] +21:27:12 [ 7] [ 10] [0321043902] +21:27:12 [ 11] [ 6] [213902] +21:27:12 [ 37] [ 12] [57921213902] +21:27:12 [ 70] [ 3] [301] +21:27:12 ============================================================================ +21:27:12 + + +waiting on router queue for slot.... +21:27:12 Sending to : +21:27:12 ============================================================================ +21:27:12 ============================================================================ +21:27:12 Slot Id : <128> +21:27:12 Transaction Type : RESPONSE +21:27:12 Received From : +21:27:12 ============================================================================ +21:27:12 FNo. Len. Field Value +21:27:12 ============================================================================ +21:27:12 [ 1] [ 4] [0810] +21:27:12 [ 7] [ 10] [0321043902] +21:27:12 [ 11] [ 6] [213902] +21:27:12 [ 37] [ 12] [579212139020] +21:27:12 [ 39] [ 2] [00] +21:27:12 [ 70] [ 3] [810] +21:27:12 ============================================================================ +21:27:12 Calculate Source COMM Id = 6 +21:27:12 ============================================================================ +21:27:12 + + +waiting on router queue for slot.... +21:27:21 ============================================================================ +21:27:21 Slot Id : <157> +21:27:21 Transaction Type : REQUEST +21:27:21 Received From : +21:27:21 ============================================================================ +21:27:21 FNo. Len. Field Value +21:27:21 ============================================================================ +21:27:21 [ 1] [ 4] [0800] +21:27:21 [ 7] [ 10] [0320022629] +21:27:21 [ 11] [ 6] [158479] +21:27:21 [ 70] [ 3] [301] +21:27:21 ============================================================================ +21:27:21 + + +waiting on router queue for slot.... +21:27:21 Sending to : +21:27:21 ============================================================================ +21:27:21 ============================================================================ +21:27:21 Slot Id : <157> +21:27:21 Transaction Type : RESPONSE +21:27:21 Received From : +21:27:21 ============================================================================ +21:27:21 FNo. Len. Field Value +21:27:21 ============================================================================ +21:27:21 [ 1] [ 4] [0810] +21:27:21 [ 7] [ 10] [0320022629] +21:27:21 [ 11] [ 6] [158479] +21:27:21 [ 39] [ 2] [00] +21:27:21 [ 70] [ 3] [301] +21:27:21 ============================================================================ +21:27:21 Calculate Source COMM Id = 2 +21:27:21 ============================================================================ +21:27:21 + + +waiting on router queue for slot.... +21:27:36 ============================================================================ +21:27:36 Slot Id : <175> +21:27:36 Transaction Type : REQUEST +21:27:36 Received From : +21:27:36 ============================================================================ +21:27:36 FNo. Len. Field Value +21:27:36 ============================================================================ +21:27:36 [ 1] [ 4] [0800] +21:27:36 [ 7] [ 10] [0320022645] +21:27:36 [ 11] [ 6] [158480] +21:27:36 [ 70] [ 3] [301] +21:27:36 ============================================================================ +21:27:36 + + +waiting on router queue for slot.... +21:27:36 Sending to : +21:27:36 ============================================================================ +21:27:36 ============================================================================ +21:27:36 Slot Id : <175> +21:27:36 Transaction Type : RESPONSE +21:27:36 Received From : +21:27:36 ============================================================================ +21:27:36 FNo. Len. Field Value +21:27:36 ============================================================================ +21:27:36 [ 1] [ 4] [0810] +21:27:36 [ 7] [ 10] [0320022645] +21:27:36 [ 11] [ 6] [158480] +21:27:36 [ 39] [ 2] [00] +21:27:36 [ 70] [ 3] [301] +21:27:36 ============================================================================ +21:27:36 Calculate Source COMM Id = 2 +21:27:36 ============================================================================ +21:27:36 + + +waiting on router queue for slot.... +21:27:51 ============================================================================ +21:27:51 Slot Id : <141> +21:27:51 Transaction Type : REQUEST +21:27:51 Received From : +21:27:51 ============================================================================ +21:27:51 FNo. Len. Field Value +21:27:51 ============================================================================ +21:27:51 [ 1] [ 4] [0800] +21:27:51 [ 7] [ 10] [0320022700] +21:27:51 [ 11] [ 6] [158481] +21:27:51 [ 70] [ 3] [301] +21:27:51 ============================================================================ +21:27:51 + + +waiting on router queue for slot.... +21:27:51 Sending to : +21:27:51 ============================================================================ +21:27:51 ============================================================================ +21:27:51 Slot Id : <141> +21:27:51 Transaction Type : RESPONSE +21:27:51 Received From : +21:27:51 ============================================================================ +21:27:51 FNo. Len. Field Value +21:27:51 ============================================================================ +21:27:51 [ 1] [ 4] [0810] +21:27:51 [ 7] [ 10] [0320022700] +21:27:51 [ 11] [ 6] [158481] +21:27:51 [ 39] [ 2] [00] +21:27:51 [ 70] [ 3] [301] +21:27:51 ============================================================================ +21:27:51 Calculate Source COMM Id = 2 +21:27:51 ============================================================================ +21:27:51 + + +waiting on router queue for slot.... +21:28:06 ============================================================================ +21:28:06 Slot Id : <151> +21:28:06 Transaction Type : REQUEST +21:28:06 Received From : +21:28:06 ============================================================================ +21:28:06 FNo. Len. Field Value +21:28:06 ============================================================================ +21:28:06 [ 1] [ 4] [0800] +21:28:06 [ 7] [ 10] [0320022715] +21:28:06 [ 11] [ 6] [158482] +21:28:06 [ 70] [ 3] [301] +21:28:06 ============================================================================ +21:28:06 + + +waiting on router queue for slot.... +21:28:06 Sending to : +21:28:06 ============================================================================ +21:28:06 ============================================================================ +21:28:06 Slot Id : <151> +21:28:06 Transaction Type : RESPONSE +21:28:06 Received From : +21:28:06 ============================================================================ +21:28:06 FNo. Len. Field Value +21:28:06 ============================================================================ +21:28:06 [ 1] [ 4] [0810] +21:28:06 [ 7] [ 10] [0320022715] +21:28:06 [ 11] [ 6] [158482] +21:28:06 [ 39] [ 2] [00] +21:28:06 [ 70] [ 3] [301] +21:28:06 ============================================================================ +21:28:06 Calculate Source COMM Id = 2 +21:28:06 ============================================================================ +21:28:06 + + +waiting on router queue for slot.... +21:28:12 ============================================================================ +21:28:12 Slot Id : <170> +21:28:12 Transaction Type : REQUEST +21:28:12 Received From : +21:28:12 ============================================================================ +21:28:12 FNo. Len. Field Value +21:28:12 ============================================================================ +21:28:12 [ 1] [ 4] [0800] +21:28:12 [ 2] [ 5] [02531] +21:28:12 [ 3] [ 6] [579218] +21:28:12 [ 7] [ 10] [0320142812] +21:28:12 [ 11] [ 6] [807658] +21:28:12 [ 15] [ 10] [0320142812] +21:28:12 [ 37] [ 11] [57921807658] +21:28:12 [ 70] [ 3] [001] +21:28:12 ============================================================================ +21:28:12 + + +waiting on router queue for slot.... +21:28:12 ============================================================================ +21:28:12 Slot Id : <170> +21:28:12 Transaction Type : RESPONSE +21:28:12 Received From : +21:28:12 ============================================================================ +21:28:12 FNo. Len. Field Value +21:28:12 ============================================================================ +21:28:12 [ 1] [ 4] [0810] +21:28:12 [ 7] [ 10] [0320142812] +21:28:12 [ 11] [ 6] [807658] +21:28:12 [ 15] [ 4] [0320] +21:28:12 [ 37] [ 12] [57921807658] +21:28:12 [ 39] [ 2] [00] +21:28:12 [ 70] [ 3] [001] +21:28:12 ============================================================================ +21:28:12 Sending to : +21:28:12 ============================================================================ +21:28:12 + + +waiting on router queue for slot.... +21:28:17 ============================================================================ +21:28:17 Slot Id : <172> +21:28:17 Transaction Type : REQUEST +21:28:17 Received From : +21:28:17 ============================================================================ +21:28:17 FNo. Len. Field Value +21:28:17 ============================================================================ +21:28:17 [ 1] [ 4] [0800] +21:28:17 [ 7] [ 10] [0321044007] +21:28:17 [ 11] [ 6] [214007] +21:28:17 [ 37] [ 12] [57921214007] +21:28:17 [ 70] [ 3] [301] +21:28:17 ============================================================================ +21:28:17 + + +waiting on router queue for slot.... +21:28:17 Sending to : +21:28:17 ============================================================================ +21:28:17 ============================================================================ +21:28:17 Slot Id : <172> +21:28:17 Transaction Type : RESPONSE +21:28:17 Received From : +21:28:17 ============================================================================ +21:28:17 FNo. Len. Field Value +21:28:17 ============================================================================ +21:28:17 [ 1] [ 4] [0810] +21:28:17 [ 7] [ 10] [0321044007] +21:28:17 [ 11] [ 6] [214007] +21:28:17 [ 37] [ 12] [579212140070] +21:28:17 [ 39] [ 2] [00] +21:28:17 [ 70] [ 3] [810] +21:28:17 ============================================================================ +21:28:17 Calculate Source COMM Id = 6 +21:28:17 ============================================================================ +21:28:17 + + +waiting on router queue for slot.... +21:28:21 ============================================================================ +21:28:21 Slot Id : <171> +21:28:21 Transaction Type : REQUEST +21:28:21 Received From : +21:28:21 ============================================================================ +21:28:21 FNo. Len. Field Value +21:28:21 ============================================================================ +21:28:21 [ 1] [ 4] [0800] +21:28:21 [ 7] [ 10] [0320022730] +21:28:21 [ 11] [ 6] [158483] +21:28:21 [ 70] [ 3] [301] +21:28:21 ============================================================================ +21:28:21 + + +waiting on router queue for slot.... +21:28:21 Sending to : +21:28:21 ============================================================================ +21:28:21 ============================================================================ +21:28:21 Slot Id : <171> +21:28:21 Transaction Type : RESPONSE +21:28:21 Received From : +21:28:21 ============================================================================ +21:28:21 FNo. Len. Field Value +21:28:21 ============================================================================ +21:28:21 [ 1] [ 4] [0810] +21:28:21 [ 7] [ 10] [0320022730] +21:28:21 [ 11] [ 6] [158483] +21:28:21 [ 39] [ 2] [00] +21:28:21 [ 70] [ 3] [301] +21:28:21 ============================================================================ +21:28:21 Calculate Source COMM Id = 2 +21:28:21 ============================================================================ +21:28:21 + + +waiting on router queue for slot.... +21:28:22 ============================================================================ +21:28:22 Slot Id : <164> +21:28:22 Transaction Type : REQUEST +21:28:22 Received From : +21:28:22 ============================================================================ +21:28:22 FNo. Len. Field Value +21:28:22 ============================================================================ +21:28:22 [ 1] [ 4] [0800] +21:28:22 [ 7] [ 10] [0320212810] +21:28:22 [ 11] [ 6] [007401] +21:28:22 [ 37] [ 12] [507921007401] +21:28:22 [ 70] [ 3] [ ] +21:28:22 ============================================================================ +21:28:22 + + +waiting on router queue for slot.... +21:28:22 Sending to : +21:28:22 ============================================================================ +21:28:22 ============================================================================ +21:28:22 Slot Id : <164> +21:28:22 Transaction Type : RESPONSE +21:28:22 Received From : +21:28:22 ============================================================================ +21:28:22 FNo. Len. Field Value +21:28:22 ============================================================================ +21:28:22 [ 1] [ 4] [0810] +21:28:22 [ 7] [ 10] [0320212810] +21:28:22 [ 11] [ 6] [007401] +21:28:22 [ 37] [ 12] [507921007401] +21:28:22 [ 39] [ 2] [91] +21:28:22 [ 70] [ 3] [ ] +21:28:22 ============================================================================ +21:28:22 Calculate Source COMM Id = 3 +21:28:22 ============================================================================ +21:28:22 + + +waiting on router queue for slot.... +21:28:29 ============================================================================ +21:28:29 Slot Id : <186> +21:28:29 Transaction Type : REQUEST +21:28:29 Received From : +21:28:29 ============================================================================ +21:28:29 FNo. Len. Field Value +21:28:29 ============================================================================ +21:28:29 [ 1] [ 4] [0200] +21:28:29 [ 2] [ 16] [6213543000219476] +21:28:29 [ 3] [ 6] [010000] +21:28:29 [ 4] [ 12] [000030000000] +21:28:29 [ 7] [ 10] [0320213616] +21:28:29 [ 11] [ 6] [021222] +21:28:29 [ 12] [ 6] [213616] +21:28:29 [ 13] [ 4] [0320] +21:28:29 [ 14] [ 4] [4912] +21:28:29 [ 15] [ 4] [0320] +21:28:29 [ 18] [ 4] [6011] +21:28:29 [ 22] [ 3] [900] +21:28:29 [ 25] [ 2] [02] +21:28:29 [ 28] [ 9] [D00002000] +21:28:29 [ 32] [ 6] [220699] +21:28:29 [ 35] [ 32] [6213543000219476=491212011947045] +21:28:29 [ 37] [ 12] [507900263154] +21:28:29 [ 41] [ 8] [01001400] +21:28:29 [ 42] [ 15] [APTRA ] +21:28:29 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:28:29 [ 49] [ 3] [418] +21:28:29 [ 52] [ 16] [A51F56F85AC5B7DB] +21:28:29 ============================================================================ +21:28:29 + + +waiting on router queue for slot.... +21:28:29 Sending to : +21:28:29 ============================================================================ +21:28:29 Sending to : +21:28:29 ============================================================================ +21:28:30 ============================================================================ +21:28:30 Slot Id : <186> +21:28:30 Transaction Type : REQUEST +21:28:30 Received From : +21:28:30 ============================================================================ +21:28:30 FNo. Len. Field Value +21:28:30 ============================================================================ +21:28:30 [ 1] [ 4] [0200] +21:28:30 [ 2] [ 16] [6213543000219476] +21:28:30 [ 3] [ 6] [010000] +21:28:30 [ 4] [ 12] [000030000000] +21:28:30 [ 7] [ 10] [0320213616] +21:28:30 [ 11] [ 6] [021222] +21:28:30 [ 12] [ 6] [213616] +21:28:30 [ 13] [ 4] [0320] +21:28:30 [ 14] [ 4] [4912] +21:28:30 [ 15] [ 4] [0320] +21:28:30 [ 18] [ 4] [6011] +21:28:30 [ 22] [ 3] [900] +21:28:30 [ 25] [ 2] [02] +21:28:30 [ 28] [ 9] [D00002000] +21:28:30 [ 32] [ 6] [220699] +21:28:30 [ 35] [ 32] [6213543000219476=491212011947045] +21:28:30 [ 37] [ 12] [507900263154] +21:28:30 [ 41] [ 8] [01001400] +21:28:30 [ 42] [ 15] [APTRA ] +21:28:30 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:28:30 [ 49] [ 3] [418] +21:28:30 [ 52] [ 16] [A51F56F85AC5B7DB] +21:28:30 ============================================================================ +21:28:30 + + +waiting on router queue for slot.... +21:28:30 Sending to : +21:28:30 ============================================================================ +21:28:30 ============================================================================ +21:28:30 Slot Id : <186> +21:28:30 Transaction Type : REQUEST +21:28:30 Received From : +21:28:30 ============================================================================ +21:28:30 FNo. Len. Field Value +21:28:30 ============================================================================ +21:28:30 [ 1] [ 4] [0200] +21:28:30 [ 2] [ 16] [6213543000219476] +21:28:30 [ 3] [ 6] [010000] +21:28:30 [ 4] [ 12] [000030000000] +21:28:30 [ 7] [ 10] [0320213616] +21:28:30 [ 11] [ 6] [021222] +21:28:30 [ 12] [ 6] [213616] +21:28:30 [ 13] [ 4] [0320] +21:28:30 [ 14] [ 4] [4912] +21:28:30 [ 15] [ 4] [0320] +21:28:30 [ 18] [ 4] [6011] +21:28:30 [ 22] [ 3] [900] +21:28:30 [ 25] [ 2] [02] +21:28:30 [ 28] [ 9] [D00002000] +21:28:30 [ 32] [ 6] [220699] +21:28:30 [ 35] [ 32] [6213543000219476=491212011947045] +21:28:30 [ 37] [ 12] [507900263154] +21:28:30 [ 41] [ 8] [01001400] +21:28:30 [ 42] [ 15] [APTRA ] +21:28:30 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:28:30 [ 49] [ 3] [418] +21:28:30 [ 52] [ 16] [25D83708D077EE8A] +21:28:30 ============================================================================ +21:28:30 + + +waiting on router queue for slot.... +21:28:30 Sending to : <0> +21:28:30 ============================================================================ +21:28:30 ============================================================================ +21:28:30 Slot Id : <186> +21:28:30 Transaction Type : RESPONSE +21:28:30 Received From : +21:28:30 ============================================================================ +21:28:30 FNo. Len. Field Value +21:28:30 ============================================================================ +21:28:30 [ 1] [ 4] [0210] +21:28:30 [ 2] [ 16] [6213543000219476] +21:28:30 [ 3] [ 6] [010000] +21:28:30 [ 4] [ 12] [000030000000] +21:28:30 [ 7] [ 10] [0320213616] +21:28:30 [ 11] [ 6] [021222] +21:28:30 [ 12] [ 6] [213616] +21:28:30 [ 13] [ 4] [0320] +21:28:30 [ 15] [ 4] [0320] +21:28:30 [ 18] [ 4] [6011] +21:28:30 [ 32] [ 6] [220699] +21:28:30 [ 35] [ 32] [6213543000219476=491212011947045] +21:28:30 [ 37] [ 12] [507900263154] +21:28:30 [ 38] [ 6] [603160] +21:28:30 [ 39] [ 2] [00] +21:28:30 [ 41] [ 8] [01001400] +21:28:30 [ 49] [ 3] [418] +21:28:30 [ 54] [ 40] [0001418C0000929491900002418C000062749190] +21:28:30 ============================================================================ +21:28:30 Sending to : +21:28:30 ============================================================================ +21:28:30 + + +waiting on router queue for slot.... +21:28:31 ============================================================================ +21:28:31 Slot Id : <126> +21:28:31 Transaction Type : REQUEST +21:28:31 Received From : +21:28:31 ============================================================================ +21:28:31 FNo. Len. Field Value +21:28:31 ============================================================================ +21:28:31 [ 1] [ 4] [0800] +21:28:31 [ 7] [ 10] [0320022740] +21:28:31 [ 11] [ 6] [158484] +21:28:31 [ 70] [ 3] [301] +21:28:31 ============================================================================ +21:28:31 + + +waiting on router queue for slot.... +21:28:31 Sending to : +21:28:31 ============================================================================ +21:28:31 ============================================================================ +21:28:31 Slot Id : <126> +21:28:31 Transaction Type : RESPONSE +21:28:31 Received From : +21:28:31 ============================================================================ +21:28:31 FNo. Len. Field Value +21:28:31 ============================================================================ +21:28:31 [ 1] [ 4] [0810] +21:28:31 [ 7] [ 10] [0320022740] +21:28:31 [ 11] [ 6] [158484] +21:28:31 [ 39] [ 2] [00] +21:28:31 [ 70] [ 3] [301] +21:28:31 ============================================================================ +21:28:31 Calculate Source COMM Id = 2 +21:28:31 ============================================================================ +21:28:31 + + +waiting on router queue for slot.... +21:28:32 ============================================================================ +21:28:32 Slot Id : <186> +21:28:32 Transaction Type : RESPONSE +21:28:32 Received From : +21:28:32 ============================================================================ +21:28:32 FNo. Len. Field Value +21:28:32 ============================================================================ +21:28:32 [ 1] [ 4] [0210] +21:28:32 [ 2] [ 16] [6213543000219476] +21:28:32 [ 3] [ 6] [010000] +21:28:32 [ 4] [ 12] [000030000000] +21:28:32 [ 7] [ 10] [0320213616] +21:28:32 [ 11] [ 6] [021222] +21:28:32 [ 12] [ 6] [213616] +21:28:32 [ 13] [ 4] [0320] +21:28:32 [ 15] [ 4] [0320] +21:28:32 [ 18] [ 4] [6011] +21:28:32 [ 32] [ 6] [220699] +21:28:32 [ 35] [ 32] [6213543000219476=491212011947045] +21:28:32 [ 37] [ 12] [507900263154] +21:28:32 [ 38] [ 6] [603160] +21:28:32 [ 39] [ 2] [00] +21:28:32 [ 41] [ 8] [01001400] +21:28:32 [ 49] [ 3] [418] +21:28:32 [ 54] [ 40] [0001418C0000929491900002418C000062749190] +21:28:32 ============================================================================ +21:28:32 Calculate Source COMM Id = 1 +21:28:32 ============================================================================ +21:28:32 + + +waiting on router queue for slot.... +21:28:46 ============================================================================ +21:28:46 Slot Id : <139> +21:28:46 Transaction Type : REQUEST +21:28:46 Received From : +21:28:46 ============================================================================ +21:28:46 FNo. Len. Field Value +21:28:46 ============================================================================ +21:28:46 [ 1] [ 4] [0800] +21:28:46 [ 7] [ 10] [0320022755] +21:28:46 [ 11] [ 6] [158485] +21:28:46 [ 70] [ 3] [301] +21:28:46 ============================================================================ +21:28:46 + + +waiting on router queue for slot.... +21:28:46 Sending to : +21:28:46 ============================================================================ +21:28:46 ============================================================================ +21:28:46 Slot Id : <139> +21:28:46 Transaction Type : RESPONSE +21:28:46 Received From : +21:28:46 ============================================================================ +21:28:46 FNo. Len. Field Value +21:28:46 ============================================================================ +21:28:46 [ 1] [ 4] [0810] +21:28:46 [ 7] [ 10] [0320022755] +21:28:46 [ 11] [ 6] [158485] +21:28:46 [ 39] [ 2] [00] +21:28:46 [ 70] [ 3] [301] +21:28:46 ============================================================================ +21:28:46 Calculate Source COMM Id = 2 +21:28:46 ============================================================================ +21:28:46 + + +waiting on router queue for slot.... +21:29:02 ============================================================================ +21:29:02 Slot Id : <202> +21:29:02 Transaction Type : REQUEST +21:29:02 Received From : +21:29:02 ============================================================================ +21:29:02 FNo. Len. Field Value +21:29:02 ============================================================================ +21:29:02 [ 1] [ 4] [0800] +21:29:02 [ 7] [ 10] [0320022810] +21:29:02 [ 11] [ 6] [158486] +21:29:02 [ 70] [ 3] [301] +21:29:02 ============================================================================ +21:29:02 + + +waiting on router queue for slot.... +21:29:02 Sending to : +21:29:02 ============================================================================ +21:29:02 ============================================================================ +21:29:02 Slot Id : <202> +21:29:02 Transaction Type : RESPONSE +21:29:02 Received From : +21:29:02 ============================================================================ +21:29:02 FNo. Len. Field Value +21:29:02 ============================================================================ +21:29:02 [ 1] [ 4] [0810] +21:29:02 [ 7] [ 10] [0320022810] +21:29:02 [ 11] [ 6] [158486] +21:29:02 [ 39] [ 2] [00] +21:29:02 [ 70] [ 3] [301] +21:29:02 ============================================================================ +21:29:02 Calculate Source COMM Id = 2 +21:29:02 ============================================================================ +21:29:02 + + +waiting on router queue for slot.... +21:29:03 ============================================================================ +21:29:03 Slot Id : <148> +21:29:03 Transaction Type : REQUEST +21:29:03 Received From : +21:29:03 ============================================================================ +21:29:03 FNo. Len. Field Value +21:29:03 ============================================================================ +21:29:03 [ 1] [ 4] [0200] +21:29:03 [ 2] [ 16] [6213544002119193] +21:29:03 [ 3] [ 6] [300000] +21:29:03 [ 4] [ 12] [000000000000] +21:29:03 [ 7] [ 10] [0320212654] +21:29:03 [ 11] [ 6] [957741] +21:29:03 [ 12] [ 6] [212654] +21:29:03 [ 13] [ 4] [0320] +21:29:03 [ 15] [ 4] [0320] +21:29:03 [ 18] [ 4] [6011] +21:29:03 [ 19] [ 3] [418] +21:29:03 [ 22] [ 3] [021] +21:29:03 [ 25] [ 2] [01] +21:29:03 [ 28] [ 9] [D00000000] +21:29:03 [ 32] [ 6] [668899] +21:29:03 [ 35] [ 32] [6213544002119193=491212011919607] +21:29:03 [ 37] [ 12] [507900705349] +21:29:03 [ 41] [ 8] [03003002] +21:29:03 [ 42] [ 15] [APT ] +21:29:03 [ 43] [ 40] [ NAMTHA BUS STATION LUANGN] +21:29:03 [ 49] [ 3] [418] +21:29:03 [ 52] [ 16] [E9E8371E49A603E7] +21:29:03 ============================================================================ +21:29:03 + + +waiting on router queue for slot.... +21:29:03 Sending to : +21:29:03 ============================================================================ +21:29:03 Sending to : +21:29:03 ============================================================================ +21:29:04 ============================================================================ +21:29:04 Slot Id : <148> +21:29:04 Transaction Type : REQUEST +21:29:04 Received From : +21:29:04 ============================================================================ +21:29:04 FNo. Len. Field Value +21:29:04 ============================================================================ +21:29:04 [ 1] [ 4] [0200] +21:29:04 [ 2] [ 16] [6213544002119193] +21:29:04 [ 3] [ 6] [300000] +21:29:04 [ 4] [ 12] [000000000000] +21:29:04 [ 7] [ 10] [0320212654] +21:29:04 [ 11] [ 6] [957741] +21:29:04 [ 12] [ 6] [212654] +21:29:04 [ 13] [ 4] [0320] +21:29:04 [ 15] [ 4] [0320] +21:29:04 [ 18] [ 4] [6011] +21:29:04 [ 19] [ 3] [418] +21:29:04 [ 22] [ 3] [021] +21:29:04 [ 25] [ 2] [01] +21:29:04 [ 28] [ 9] [D00000000] +21:29:04 [ 32] [ 6] [668899] +21:29:04 [ 35] [ 32] [6213544002119193=491212011919607] +21:29:04 [ 37] [ 12] [507900705349] +21:29:04 [ 41] [ 8] [03003002] +21:29:04 [ 42] [ 15] [APT ] +21:29:04 [ 43] [ 40] [ NAMTHA BUS STATION LUANGN] +21:29:04 [ 49] [ 3] [418] +21:29:04 [ 52] [ 16] [E9E8371E49A603E7] +21:29:04 ============================================================================ +21:29:04 + + +waiting on router queue for slot.... +21:29:04 Sending to : +21:29:04 ============================================================================ +21:29:04 ============================================================================ +21:29:04 Slot Id : <148> +21:29:04 Transaction Type : REQUEST +21:29:04 Received From : +21:29:04 ============================================================================ +21:29:04 FNo. Len. Field Value +21:29:04 ============================================================================ +21:29:04 [ 1] [ 4] [0200] +21:29:04 [ 2] [ 16] [6213544002119193] +21:29:04 [ 3] [ 6] [300000] +21:29:04 [ 4] [ 12] [000000000000] +21:29:04 [ 7] [ 10] [0320212654] +21:29:04 [ 11] [ 6] [957741] +21:29:04 [ 12] [ 6] [212654] +21:29:04 [ 13] [ 4] [0320] +21:29:04 [ 15] [ 4] [0320] +21:29:04 [ 18] [ 4] [6011] +21:29:04 [ 19] [ 3] [418] +21:29:04 [ 22] [ 3] [021] +21:29:04 [ 25] [ 2] [01] +21:29:04 [ 28] [ 9] [D00000000] +21:29:04 [ 32] [ 6] [668899] +21:29:04 [ 35] [ 32] [6213544002119193=491212011919607] +21:29:04 [ 37] [ 12] [507900705349] +21:29:04 [ 41] [ 8] [03003002] +21:29:04 [ 42] [ 15] [APT ] +21:29:04 [ 43] [ 40] [ NAMTHA BUS STATION LUANGN] +21:29:04 [ 49] [ 3] [418] +21:29:04 [ 52] [ 16] [2EA00BF1485DD47F] +21:29:04 ============================================================================ +21:29:04 + + +waiting on router queue for slot.... +21:29:04 Sending to : <0> +21:29:04 ============================================================================ +21:29:04 ============================================================================ +21:29:04 Slot Id : <148> +21:29:04 Transaction Type : RESPONSE +21:29:04 Received From : +21:29:04 ============================================================================ +21:29:04 FNo. Len. Field Value +21:29:04 ============================================================================ +21:29:04 [ 1] [ 4] [0210] +21:29:04 [ 2] [ 16] [6213544002119193] +21:29:04 [ 3] [ 6] [300000] +21:29:04 [ 4] [ 12] [000000000000] +21:29:04 [ 7] [ 10] [0320212654] +21:29:04 [ 11] [ 6] [957741] +21:29:04 [ 12] [ 6] [212654] +21:29:04 [ 13] [ 4] [0320] +21:29:04 [ 15] [ 4] [0320] +21:29:04 [ 18] [ 4] [6011] +21:29:04 [ 19] [ 3] [418] +21:29:04 [ 32] [ 6] [668899] +21:29:04 [ 35] [ 32] [6213544002119193=491212011919607] +21:29:04 [ 37] [ 12] [507900705349] +21:29:04 [ 38] [ 6] [538649] +21:29:04 [ 39] [ 2] [00] +21:29:04 [ 41] [ 8] [03003002] +21:29:04 [ 49] [ 3] [418] +21:29:04 [ 54] [ 40] [0001418C0000061784110002418C000006178411] +21:29:04 ============================================================================ +21:29:04 Sending to : +21:29:04 ============================================================================ +21:29:04 + + +waiting on router queue for slot.... +21:29:05 ============================================================================ +21:29:05 Slot Id : <148> +21:29:05 Transaction Type : RESPONSE +21:29:05 Received From : +21:29:05 ============================================================================ +21:29:05 FNo. Len. Field Value +21:29:05 ============================================================================ +21:29:05 [ 1] [ 4] [0210] +21:29:05 [ 2] [ 16] [6213544002119193] +21:29:05 [ 3] [ 6] [300000] +21:29:05 [ 4] [ 12] [000000000000] +21:29:05 [ 7] [ 10] [0320212654] +21:29:05 [ 11] [ 6] [957741] +21:29:05 [ 12] [ 6] [212654] +21:29:05 [ 13] [ 4] [0320] +21:29:05 [ 15] [ 4] [0320] +21:29:05 [ 18] [ 4] [6011] +21:29:05 [ 19] [ 3] [418] +21:29:05 [ 32] [ 6] [668899] +21:29:05 [ 35] [ 32] [6213544002119193=491212011919607] +21:29:05 [ 37] [ 12] [507900705349] +21:29:05 [ 38] [ 6] [538649] +21:29:05 [ 39] [ 2] [00] +21:29:05 [ 41] [ 8] [03003002] +21:29:05 [ 49] [ 3] [418] +21:29:05 [ 54] [ 40] [0001418C0000061784110002418C000006178411] +21:29:05 ============================================================================ +21:29:05 Calculate Source COMM Id = 4 +21:29:05 ============================================================================ +21:29:05 + + +waiting on router queue for slot.... +21:29:12 ============================================================================ +21:29:12 Slot Id : <119> +21:29:12 Transaction Type : REQUEST +21:29:12 Received From : +21:29:12 ============================================================================ +21:29:12 FNo. Len. Field Value +21:29:12 ============================================================================ +21:29:12 [ 1] [ 4] [0800] +21:29:12 [ 7] [ 10] [0320022821] +21:29:12 [ 11] [ 6] [158487] +21:29:12 [ 70] [ 3] [301] +21:29:12 ============================================================================ +21:29:12 + + +waiting on router queue for slot.... +21:29:12 Sending to : +21:29:12 ============================================================================ +21:29:12 ============================================================================ +21:29:12 Slot Id : <119> +21:29:12 Transaction Type : RESPONSE +21:29:12 Received From : +21:29:12 ============================================================================ +21:29:12 FNo. Len. Field Value +21:29:12 ============================================================================ +21:29:12 [ 1] [ 4] [0810] +21:29:12 [ 7] [ 10] [0320022821] +21:29:12 [ 11] [ 6] [158487] +21:29:12 [ 39] [ 2] [00] +21:29:12 [ 70] [ 3] [301] +21:29:12 ============================================================================ +21:29:12 Calculate Source COMM Id = 2 +21:29:12 ============================================================================ +21:29:12 + + +waiting on router queue for slot.... +21:29:14 ============================================================================ +21:29:14 Slot Id : <176> +21:29:14 Transaction Type : REQUEST +21:29:14 Received From : +21:29:14 ============================================================================ +21:29:14 FNo. Len. Field Value +21:29:14 ============================================================================ +21:29:14 [ 1] [ 4] [0800] +21:29:14 [ 2] [ 5] [02531] +21:29:14 [ 3] [ 6] [579218] +21:29:14 [ 7] [ 10] [0320142914] +21:29:14 [ 11] [ 6] [807659] +21:29:14 [ 15] [ 10] [0320142914] +21:29:14 [ 37] [ 11] [57921807659] +21:29:14 [ 70] [ 3] [001] +21:29:14 ============================================================================ +21:29:14 + + +waiting on router queue for slot.... +21:29:14 ============================================================================ +21:29:14 Slot Id : <176> +21:29:14 Transaction Type : RESPONSE +21:29:14 Received From : +21:29:14 ============================================================================ +21:29:14 FNo. Len. Field Value +21:29:14 ============================================================================ +21:29:14 [ 1] [ 4] [0810] +21:29:14 [ 7] [ 10] [0320142914] +21:29:14 [ 11] [ 6] [807659] +21:29:14 [ 15] [ 4] [0320] +21:29:14 [ 37] [ 12] [57921807659] +21:29:14 [ 39] [ 2] [00] +21:29:14 [ 70] [ 3] [001] +21:29:14 ============================================================================ +21:29:14 Sending to : +21:29:14 ============================================================================ +21:29:14 + + +waiting on router queue for slot.... +21:29:22 ============================================================================ +21:29:22 Slot Id : <144> +21:29:22 Transaction Type : REQUEST +21:29:22 Received From : +21:29:22 ============================================================================ +21:29:22 FNo. Len. Field Value +21:29:22 ============================================================================ +21:29:22 [ 1] [ 4] [0800] +21:29:22 [ 7] [ 10] [0321044112] +21:29:22 [ 11] [ 6] [214112] +21:29:22 [ 37] [ 12] [57921214112] +21:29:22 [ 70] [ 3] [301] +21:29:22 ============================================================================ +21:29:22 + + +waiting on router queue for slot.... +21:29:22 Sending to : +21:29:22 ============================================================================ +21:29:22 ============================================================================ +21:29:22 Slot Id : <144> +21:29:22 Transaction Type : RESPONSE +21:29:22 Received From : +21:29:22 ============================================================================ +21:29:22 FNo. Len. Field Value +21:29:22 ============================================================================ +21:29:22 [ 1] [ 4] [0810] +21:29:22 [ 7] [ 10] [0321044112] +21:29:22 [ 11] [ 6] [214112] +21:29:22 [ 37] [ 12] [579212141120] +21:29:22 [ 39] [ 2] [00] +21:29:22 [ 70] [ 3] [810] +21:29:22 ============================================================================ +21:29:22 Calculate Source COMM Id = 6 +21:29:22 ============================================================================ +21:29:22 + + +waiting on router queue for slot.... +21:29:25 ============================================================================ +21:29:25 Slot Id : <182> +21:29:25 Transaction Type : REQUEST +21:29:25 Received From : +21:29:25 ============================================================================ +21:29:25 FNo. Len. Field Value +21:29:25 ============================================================================ +21:29:25 [ 1] [ 4] [0800] +21:29:25 [ 7] [ 10] [0320022833] +21:29:25 [ 11] [ 6] [158488] +21:29:25 [ 70] [ 3] [301] +21:29:25 ============================================================================ +21:29:25 + + +waiting on router queue for slot.... +21:29:25 Sending to : +21:29:25 ============================================================================ +21:29:25 ============================================================================ +21:29:25 Slot Id : <182> +21:29:25 Transaction Type : RESPONSE +21:29:25 Received From : +21:29:25 ============================================================================ +21:29:25 FNo. Len. Field Value +21:29:25 ============================================================================ +21:29:25 [ 1] [ 4] [0810] +21:29:25 [ 7] [ 10] [0320022833] +21:29:25 [ 11] [ 6] [158488] +21:29:25 [ 39] [ 2] [00] +21:29:25 [ 70] [ 3] [301] +21:29:25 ============================================================================ +21:29:25 Calculate Source COMM Id = 2 +21:29:25 ============================================================================ +21:29:25 + + +waiting on router queue for slot.... +21:29:42 ============================================================================ +21:29:42 Slot Id : <187> +21:29:42 Transaction Type : REQUEST +21:29:42 Received From : +21:29:42 ============================================================================ +21:29:42 FNo. Len. Field Value +21:29:42 ============================================================================ +21:29:42 [ 1] [ 4] [0800] +21:29:42 [ 7] [ 10] [0320022849] +21:29:42 [ 11] [ 6] [158489] +21:29:42 [ 70] [ 3] [301] +21:29:42 ============================================================================ +21:29:42 + + +waiting on router queue for slot.... +21:29:42 Sending to : +21:29:42 ============================================================================ +21:29:42 ============================================================================ +21:29:42 Slot Id : <187> +21:29:42 Transaction Type : RESPONSE +21:29:42 Received From : +21:29:42 ============================================================================ +21:29:42 FNo. Len. Field Value +21:29:42 ============================================================================ +21:29:42 [ 1] [ 4] [0810] +21:29:42 [ 7] [ 10] [0320022849] +21:29:42 [ 11] [ 6] [158489] +21:29:42 [ 39] [ 2] [00] +21:29:42 [ 70] [ 3] [301] +21:29:42 ============================================================================ +21:29:42 Calculate Source COMM Id = 2 +21:29:42 ============================================================================ +21:29:42 + + +waiting on router queue for slot.... +21:29:45 ============================================================================ +21:29:45 Slot Id : <160> +21:29:45 Transaction Type : REQUEST +21:29:45 Received From : +21:29:45 ============================================================================ +21:29:45 FNo. Len. Field Value +21:29:45 ============================================================================ +21:29:45 [ 1] [ 4] [0200] +21:29:45 [ 2] [ 16] [6213544002119193] +21:29:45 [ 3] [ 6] [010000] +21:29:45 [ 4] [ 12] [000010000000] +21:29:45 [ 7] [ 10] [0320212736] +21:29:45 [ 11] [ 6] [957743] +21:29:45 [ 12] [ 6] [212736] +21:29:45 [ 13] [ 4] [0320] +21:29:45 [ 15] [ 4] [0320] +21:29:45 [ 18] [ 4] [6011] +21:29:45 [ 19] [ 3] [418] +21:29:45 [ 22] [ 3] [021] +21:29:45 [ 25] [ 2] [01] +21:29:45 [ 28] [ 9] [D00002000] +21:29:45 [ 32] [ 6] [668899] +21:29:45 [ 35] [ 32] [6213544002119193=491212011919607] +21:29:45 [ 37] [ 12] [507900705350] +21:29:45 [ 41] [ 8] [03003002] +21:29:45 [ 42] [ 15] [APT ] +21:29:45 [ 43] [ 40] [ NAMTHA BUS STATION LUANGN] +21:29:45 [ 49] [ 3] [418] +21:29:45 [ 52] [ 16] [E9E8371E49A603E7] +21:29:45 ============================================================================ +21:29:45 + + +waiting on router queue for slot.... +21:29:45 Sending to : +21:29:45 ============================================================================ +21:29:45 Sending to : +21:29:45 ============================================================================ +21:29:45 ============================================================================ +21:29:45 Slot Id : <160> +21:29:45 Transaction Type : REQUEST +21:29:45 Received From : +21:29:45 ============================================================================ +21:29:45 FNo. Len. Field Value +21:29:45 ============================================================================ +21:29:45 [ 1] [ 4] [0200] +21:29:45 [ 2] [ 16] [6213544002119193] +21:29:45 [ 3] [ 6] [010000] +21:29:45 [ 4] [ 12] [000010000000] +21:29:45 [ 7] [ 10] [0320212736] +21:29:45 [ 11] [ 6] [957743] +21:29:45 [ 12] [ 6] [212736] +21:29:45 [ 13] [ 4] [0320] +21:29:45 [ 15] [ 4] [0320] +21:29:45 [ 18] [ 4] [6011] +21:29:45 [ 19] [ 3] [418] +21:29:45 [ 22] [ 3] [021] +21:29:45 [ 25] [ 2] [01] +21:29:45 [ 28] [ 9] [D00002000] +21:29:45 [ 32] [ 6] [668899] +21:29:45 [ 35] [ 32] [6213544002119193=491212011919607] +21:29:45 [ 37] [ 12] [507900705350] +21:29:45 [ 41] [ 8] [03003002] +21:29:45 [ 42] [ 15] [APT ] +21:29:45 [ 43] [ 40] [ NAMTHA BUS STATION LUANGN] +21:29:45 [ 49] [ 3] [418] +21:29:45 [ 52] [ 16] [E9E8371E49A603E7] +21:29:45 ============================================================================ +21:29:45 + + +waiting on router queue for slot.... +21:29:45 Sending to : +21:29:45 ============================================================================ +21:29:45 ============================================================================ +21:29:45 Slot Id : <160> +21:29:45 Transaction Type : REQUEST +21:29:45 Received From : +21:29:45 ============================================================================ +21:29:45 FNo. Len. Field Value +21:29:45 ============================================================================ +21:29:45 [ 1] [ 4] [0200] +21:29:45 [ 2] [ 16] [6213544002119193] +21:29:45 [ 3] [ 6] [010000] +21:29:45 [ 4] [ 12] [000010000000] +21:29:45 [ 7] [ 10] [0320212736] +21:29:45 [ 11] [ 6] [957743] +21:29:45 [ 12] [ 6] [212736] +21:29:45 [ 13] [ 4] [0320] +21:29:45 [ 15] [ 4] [0320] +21:29:45 [ 18] [ 4] [6011] +21:29:45 [ 19] [ 3] [418] +21:29:45 [ 22] [ 3] [021] +21:29:45 [ 25] [ 2] [01] +21:29:45 [ 28] [ 9] [D00002000] +21:29:45 [ 32] [ 6] [668899] +21:29:45 [ 35] [ 32] [6213544002119193=491212011919607] +21:29:45 [ 37] [ 12] [507900705350] +21:29:45 [ 41] [ 8] [03003002] +21:29:45 [ 42] [ 15] [APT ] +21:29:45 [ 43] [ 40] [ NAMTHA BUS STATION LUANGN] +21:29:45 [ 49] [ 3] [418] +21:29:45 [ 52] [ 16] [2EA00BF1485DD47F] +21:29:45 ============================================================================ +21:29:45 + + +waiting on router queue for slot.... +21:29:45 Sending to : <0> +21:29:45 ============================================================================ +21:29:45 ============================================================================ +21:29:45 Slot Id : <160> +21:29:45 Transaction Type : RESPONSE +21:29:45 Received From : +21:29:45 ============================================================================ +21:29:45 FNo. Len. Field Value +21:29:45 ============================================================================ +21:29:45 [ 1] [ 4] [0210] +21:29:45 [ 2] [ 16] [6213544002119193] +21:29:45 [ 3] [ 6] [010000] +21:29:45 [ 4] [ 12] [000010000000] +21:29:45 [ 7] [ 10] [0320212736] +21:29:45 [ 11] [ 6] [957743] +21:29:45 [ 12] [ 6] [212736] +21:29:45 [ 13] [ 4] [0320] +21:29:45 [ 15] [ 4] [0320] +21:29:45 [ 18] [ 4] [6011] +21:29:45 [ 19] [ 3] [418] +21:29:45 [ 32] [ 6] [668899] +21:29:45 [ 35] [ 32] [6213544002119193=491212011919607] +21:29:45 [ 37] [ 12] [507900705350] +21:29:45 [ 38] [ 6] [957743] +21:29:45 [ 39] [ 2] [51] +21:29:45 [ 41] [ 8] [03003002] +21:29:45 [ 49] [ 3] [418] +21:29:45 [ 54] [ 40] [0001418C0000061784110002418C000006178411] +21:29:45 ============================================================================ +21:29:45 Sending to : +21:29:45 ============================================================================ +21:29:45 + + +waiting on router queue for slot.... +21:29:46 ============================================================================ +21:29:46 Slot Id : <160> +21:29:46 Transaction Type : RESPONSE +21:29:46 Received From : +21:29:46 ============================================================================ +21:29:46 FNo. Len. Field Value +21:29:46 ============================================================================ +21:29:46 [ 1] [ 4] [0210] +21:29:46 [ 2] [ 16] [6213544002119193] +21:29:46 [ 3] [ 6] [010000] +21:29:46 [ 4] [ 12] [000010000000] +21:29:46 [ 7] [ 10] [0320212736] +21:29:46 [ 11] [ 6] [957743] +21:29:46 [ 12] [ 6] [212736] +21:29:46 [ 13] [ 4] [0320] +21:29:46 [ 15] [ 4] [0320] +21:29:46 [ 18] [ 4] [6011] +21:29:46 [ 19] [ 3] [418] +21:29:46 [ 32] [ 6] [668899] +21:29:46 [ 35] [ 32] [6213544002119193=491212011919607] +21:29:46 [ 37] [ 12] [507900705350] +21:29:46 [ 38] [ 6] [957743] +21:29:46 [ 39] [ 2] [51] +21:29:46 [ 41] [ 8] [03003002] +21:29:46 [ 49] [ 3] [418] +21:29:46 [ 54] [ 40] [0001418C0000061784110002418C000006178411] +21:29:46 ============================================================================ +21:29:46 Calculate Source COMM Id = 4 +21:29:46 ============================================================================ +21:29:46 + + +waiting on router queue for slot.... +21:29:55 ============================================================================ +21:29:55 Slot Id : <163> +21:29:55 Transaction Type : REQUEST +21:29:55 Received From : +21:29:55 ============================================================================ +21:29:55 FNo. Len. Field Value +21:29:55 ============================================================================ +21:29:55 [ 1] [ 4] [0800] +21:29:55 [ 7] [ 10] [0320143742] +21:29:55 [ 11] [ 6] [022717] +21:29:55 [ 37] [ 12] [57921022717] +21:29:55 [ 70] [ 3] [301] +21:29:55 ============================================================================ +21:29:55 + + +waiting on router queue for slot.... +21:29:55 Sending to : +21:29:55 ============================================================================ +21:29:55 ============================================================================ +21:29:55 Slot Id : <163> +21:29:55 Transaction Type : RESPONSE +21:29:55 Received From : +21:29:55 ============================================================================ +21:29:55 FNo. Len. Field Value +21:29:55 ============================================================================ +21:29:55 [ 1] [ 4] [0810] +21:29:55 [ 7] [ 10] [0320143742] +21:29:55 [ 11] [ 6] [022717] +21:29:55 [ 37] [ 12] [579210227170] +21:29:55 [ 39] [ 2] [00] +21:29:55 [ 70] [ 3] [810] +21:29:55 ============================================================================ +21:29:55 Calculate Source COMM Id = 1 +21:29:55 ============================================================================ +21:29:55 + + +waiting on router queue for slot.... +21:29:56 ============================================================================ +21:29:56 Slot Id : <203> +21:29:56 Transaction Type : REQUEST +21:29:56 Received From : +21:29:56 ============================================================================ +21:29:56 FNo. Len. Field Value +21:29:56 ============================================================================ +21:29:56 [ 1] [ 4] [0800] +21:29:56 [ 7] [ 10] [0320022904] +21:29:56 [ 11] [ 6] [158490] +21:29:56 [ 70] [ 3] [301] +21:29:56 ============================================================================ +21:29:56 + + +waiting on router queue for slot.... +21:29:56 Sending to : +21:29:56 ============================================================================ +21:29:56 ============================================================================ +21:29:56 Slot Id : <203> +21:29:56 Transaction Type : RESPONSE +21:29:56 Received From : +21:29:56 ============================================================================ +21:29:56 FNo. Len. Field Value +21:29:56 ============================================================================ +21:29:56 [ 1] [ 4] [0810] +21:29:56 [ 7] [ 10] [0320022904] +21:29:56 [ 11] [ 6] [158490] +21:29:56 [ 39] [ 2] [00] +21:29:56 [ 70] [ 3] [301] +21:29:56 ============================================================================ +21:29:56 Calculate Source COMM Id = 2 +21:29:56 ============================================================================ +21:29:56 + + +waiting on router queue for slot.... +21:30:12 ============================================================================ +21:30:12 Slot Id : <204> +21:30:12 Transaction Type : REQUEST +21:30:12 Received From : +21:30:12 ============================================================================ +21:30:12 FNo. Len. Field Value +21:30:12 ============================================================================ +21:30:12 [ 1] [ 4] [0800] +21:30:12 [ 7] [ 10] [0320022920] +21:30:12 [ 11] [ 6] [158491] +21:30:12 [ 70] [ 3] [301] +21:30:12 ============================================================================ +21:30:12 + + +waiting on router queue for slot.... +21:30:12 Sending to : +21:30:12 ============================================================================ +21:30:12 ============================================================================ +21:30:12 Slot Id : <204> +21:30:12 Transaction Type : RESPONSE +21:30:12 Received From : +21:30:12 ============================================================================ +21:30:12 FNo. Len. Field Value +21:30:12 ============================================================================ +21:30:12 [ 1] [ 4] [0810] +21:30:12 [ 7] [ 10] [0320022920] +21:30:12 [ 11] [ 6] [158491] +21:30:12 [ 39] [ 2] [00] +21:30:12 [ 70] [ 3] [301] +21:30:12 ============================================================================ +21:30:12 Calculate Source COMM Id = 2 +21:30:12 ============================================================================ +21:30:12 + + +waiting on router queue for slot.... +21:30:16 ============================================================================ +21:30:16 Slot Id : <179> +21:30:16 Transaction Type : REQUEST +21:30:16 Received From : +21:30:16 ============================================================================ +21:30:16 FNo. Len. Field Value +21:30:16 ============================================================================ +21:30:16 [ 1] [ 4] [0800] +21:30:16 [ 2] [ 5] [02531] +21:30:16 [ 3] [ 6] [579218] +21:30:16 [ 7] [ 10] [0320143016] +21:30:16 [ 11] [ 6] [807660] +21:30:16 [ 15] [ 10] [0320143016] +21:30:16 [ 37] [ 11] [57921807660] +21:30:16 [ 70] [ 3] [001] +21:30:16 ============================================================================ +21:30:16 + + +waiting on router queue for slot.... +21:30:16 ============================================================================ +21:30:16 Slot Id : <179> +21:30:16 Transaction Type : RESPONSE +21:30:16 Received From : +21:30:16 ============================================================================ +21:30:16 FNo. Len. Field Value +21:30:16 ============================================================================ +21:30:16 [ 1] [ 4] [0810] +21:30:16 [ 7] [ 10] [0320143016] +21:30:16 [ 11] [ 6] [807660] +21:30:16 [ 15] [ 4] [0320] +21:30:16 [ 37] [ 12] [57921807660] +21:30:16 [ 39] [ 2] [00] +21:30:16 [ 70] [ 3] [001] +21:30:16 ============================================================================ +21:30:16 Sending to : +21:30:16 ============================================================================ +21:30:16 + + +waiting on router queue for slot.... +21:30:23 ============================================================================ +21:30:23 Slot Id : <191> +21:30:23 Transaction Type : REQUEST +21:30:23 Received From : +21:30:23 ============================================================================ +21:30:23 FNo. Len. Field Value +21:30:23 ============================================================================ +21:30:23 [ 1] [ 4] [0800] +21:30:23 [ 7] [ 10] [0320022931] +21:30:23 [ 11] [ 6] [158492] +21:30:23 [ 70] [ 3] [301] +21:30:23 ============================================================================ +21:30:23 + + +waiting on router queue for slot.... +21:30:23 Sending to : +21:30:23 ============================================================================ +21:30:23 ============================================================================ +21:30:23 Slot Id : <191> +21:30:23 Transaction Type : RESPONSE +21:30:23 Received From : +21:30:23 ============================================================================ +21:30:23 FNo. Len. Field Value +21:30:23 ============================================================================ +21:30:23 [ 1] [ 4] [0810] +21:30:23 [ 7] [ 10] [0320022931] +21:30:23 [ 11] [ 6] [158492] +21:30:23 [ 39] [ 2] [00] +21:30:23 [ 70] [ 3] [301] +21:30:23 ============================================================================ +21:30:23 Calculate Source COMM Id = 2 +21:30:23 ============================================================================ +21:30:23 + + +waiting on router queue for slot.... +21:30:27 ============================================================================ +21:30:27 Slot Id : <192> +21:30:27 Transaction Type : REQUEST +21:30:27 Received From : +21:30:27 ============================================================================ +21:30:27 FNo. Len. Field Value +21:30:27 ============================================================================ +21:30:27 [ 1] [ 4] [0800] +21:30:27 [ 7] [ 10] [0321044217] +21:30:27 [ 11] [ 6] [214217] +21:30:27 [ 37] [ 12] [57921214217] +21:30:27 [ 70] [ 3] [301] +21:30:27 ============================================================================ +21:30:27 + + +waiting on router queue for slot.... +21:30:27 Sending to : +21:30:27 ============================================================================ +21:30:27 ============================================================================ +21:30:27 Slot Id : <192> +21:30:27 Transaction Type : RESPONSE +21:30:27 Received From : +21:30:27 ============================================================================ +21:30:27 FNo. Len. Field Value +21:30:27 ============================================================================ +21:30:27 [ 1] [ 4] [0810] +21:30:27 [ 7] [ 10] [0321044217] +21:30:27 [ 11] [ 6] [214217] +21:30:27 [ 37] [ 12] [579212142170] +21:30:27 [ 39] [ 2] [00] +21:30:27 [ 70] [ 3] [810] +21:30:27 ============================================================================ +21:30:27 Calculate Source COMM Id = 6 +21:30:27 ============================================================================ +21:30:27 + + +waiting on router queue for slot.... +21:30:38 ============================================================================ +21:30:38 Slot Id : <135> +21:30:38 Transaction Type : REQUEST +21:30:38 Received From : +21:30:38 ============================================================================ +21:30:38 FNo. Len. Field Value +21:30:38 ============================================================================ +21:30:38 [ 1] [ 4] [0800] +21:30:38 [ 7] [ 10] [0320022947] +21:30:38 [ 11] [ 6] [158493] +21:30:38 [ 70] [ 3] [301] +21:30:38 ============================================================================ +21:30:38 + + +waiting on router queue for slot.... +21:30:38 Sending to : +21:30:38 ============================================================================ +21:30:38 ============================================================================ +21:30:38 Slot Id : <135> +21:30:38 Transaction Type : RESPONSE +21:30:38 Received From : +21:30:38 ============================================================================ +21:30:38 FNo. Len. Field Value +21:30:38 ============================================================================ +21:30:38 [ 1] [ 4] [0810] +21:30:38 [ 7] [ 10] [0320022947] +21:30:38 [ 11] [ 6] [158493] +21:30:38 [ 39] [ 2] [00] +21:30:38 [ 70] [ 3] [301] +21:30:38 ============================================================================ +21:30:38 Calculate Source COMM Id = 2 +21:30:38 ============================================================================ +21:30:38 + + +waiting on router queue for slot.... +21:30:49 ============================================================================ +21:30:49 Slot Id : <156> +21:30:49 Transaction Type : REQUEST +21:30:49 Received From : +21:30:49 ============================================================================ +21:30:49 FNo. Len. Field Value +21:30:49 ============================================================================ +21:30:49 [ 1] [ 4] [0800] +21:30:49 [ 7] [ 10] [0320022958] +21:30:49 [ 11] [ 6] [158494] +21:30:49 [ 70] [ 3] [301] +21:30:49 ============================================================================ +21:30:49 + + +waiting on router queue for slot.... +21:30:49 Sending to : +21:30:49 ============================================================================ +21:30:49 ============================================================================ +21:30:49 Slot Id : <156> +21:30:49 Transaction Type : RESPONSE +21:30:49 Received From : +21:30:49 ============================================================================ +21:30:49 FNo. Len. Field Value +21:30:49 ============================================================================ +21:30:49 [ 1] [ 4] [0810] +21:30:49 [ 7] [ 10] [0320022958] +21:30:49 [ 11] [ 6] [158494] +21:30:49 [ 39] [ 2] [00] +21:30:49 [ 70] [ 3] [301] +21:30:49 ============================================================================ +21:30:49 Calculate Source COMM Id = 2 +21:30:49 ============================================================================ +21:30:49 + + +waiting on router queue for slot.... +21:31:06 ============================================================================ +21:31:06 Slot Id : <190> +21:31:06 Transaction Type : REQUEST +21:31:06 Received From : +21:31:06 ============================================================================ +21:31:06 FNo. Len. Field Value +21:31:06 ============================================================================ +21:31:06 [ 1] [ 4] [0800] +21:31:06 [ 7] [ 10] [0320023014] +21:31:06 [ 11] [ 6] [158495] +21:31:06 [ 70] [ 3] [301] +21:31:06 ============================================================================ +21:31:06 + + +waiting on router queue for slot.... +21:31:06 Sending to : +21:31:06 ============================================================================ +21:31:06 ============================================================================ +21:31:06 Slot Id : <190> +21:31:06 Transaction Type : RESPONSE +21:31:06 Received From : +21:31:06 ============================================================================ +21:31:06 FNo. Len. Field Value +21:31:06 ============================================================================ +21:31:06 [ 1] [ 4] [0810] +21:31:06 [ 7] [ 10] [0320023014] +21:31:06 [ 11] [ 6] [158495] +21:31:06 [ 39] [ 2] [00] +21:31:06 [ 70] [ 3] [301] +21:31:06 ============================================================================ +21:31:06 Calculate Source COMM Id = 2 +21:31:06 ============================================================================ +21:31:06 + + +waiting on router queue for slot.... +21:31:16 ============================================================================ +21:31:16 Slot Id : <152> +21:31:16 Transaction Type : REQUEST +21:31:16 Received From : +21:31:16 ============================================================================ +21:31:16 FNo. Len. Field Value +21:31:16 ============================================================================ +21:31:16 [ 1] [ 4] [0800] +21:31:16 [ 7] [ 10] [0320023024] +21:31:16 [ 11] [ 6] [158496] +21:31:16 [ 70] [ 3] [301] +21:31:16 ============================================================================ +21:31:16 + + +waiting on router queue for slot.... +21:31:16 Sending to : +21:31:16 ============================================================================ +21:31:16 ============================================================================ +21:31:16 Slot Id : <152> +21:31:16 Transaction Type : RESPONSE +21:31:16 Received From : +21:31:16 ============================================================================ +21:31:16 FNo. Len. Field Value +21:31:16 ============================================================================ +21:31:16 [ 1] [ 4] [0810] +21:31:16 [ 7] [ 10] [0320023024] +21:31:16 [ 11] [ 6] [158496] +21:31:16 [ 39] [ 2] [00] +21:31:16 [ 70] [ 3] [301] +21:31:16 ============================================================================ +21:31:16 Calculate Source COMM Id = 2 +21:31:16 ============================================================================ +21:31:16 + + +waiting on router queue for slot.... +21:31:18 ============================================================================ +21:31:18 Slot Id : <198> +21:31:18 Transaction Type : REQUEST +21:31:18 Received From : +21:31:18 ============================================================================ +21:31:18 FNo. Len. Field Value +21:31:18 ============================================================================ +21:31:18 [ 1] [ 4] [0800] +21:31:18 [ 2] [ 5] [02531] +21:31:18 [ 3] [ 6] [579218] +21:31:18 [ 7] [ 10] [0320143118] +21:31:18 [ 11] [ 6] [807661] +21:31:18 [ 15] [ 10] [0320143118] +21:31:18 [ 37] [ 11] [57921807661] +21:31:18 [ 70] [ 3] [001] +21:31:18 ============================================================================ +21:31:18 + + +waiting on router queue for slot.... +21:31:18 ============================================================================ +21:31:18 Slot Id : <198> +21:31:18 Transaction Type : RESPONSE +21:31:18 Received From : +21:31:18 ============================================================================ +21:31:18 FNo. Len. Field Value +21:31:18 ============================================================================ +21:31:18 [ 1] [ 4] [0810] +21:31:18 [ 7] [ 10] [0320143118] +21:31:18 [ 11] [ 6] [807661] +21:31:18 [ 15] [ 4] [0320] +21:31:18 [ 37] [ 12] [57921807661] +21:31:18 [ 39] [ 2] [00] +21:31:18 [ 70] [ 3] [001] +21:31:18 ============================================================================ +21:31:18 Sending to : +21:31:18 ============================================================================ +21:31:18 + + +waiting on router queue for slot.... +21:31:21 ============================================================================ +21:31:21 Slot Id : <196> +21:31:21 Transaction Type : REQUEST +21:31:21 Received From : +21:31:21 ============================================================================ +21:31:21 FNo. Len. Field Value +21:31:21 ============================================================================ +21:31:21 [ 1] [ 4] [0800] +21:31:21 [ 7] [ 10] [0320142912] +21:31:21 [ 11] [ 6] [082547] +21:31:21 [ 37] [ 12] [57921082547] +21:31:21 [ 70] [ 3] [301] +21:31:21 ============================================================================ +21:31:21 + + +waiting on router queue for slot.... +21:31:21 Sending to : +21:31:21 ============================================================================ +21:31:21 ============================================================================ +21:31:21 Slot Id : <196> +21:31:21 Transaction Type : RESPONSE +21:31:21 Received From : +21:31:21 ============================================================================ +21:31:21 FNo. Len. Field Value +21:31:21 ============================================================================ +21:31:21 [ 1] [ 4] [0810] +21:31:21 [ 7] [ 10] [0320142912] +21:31:21 [ 11] [ 6] [082547] +21:31:21 [ 37] [ 12] [579210825470] +21:31:21 [ 39] [ 2] [00] +21:31:21 [ 70] [ 3] [810] +21:31:21 ============================================================================ +21:31:21 Calculate Source COMM Id = 4 +21:31:21 ============================================================================ +21:31:21 + + +waiting on router queue for slot.... +21:31:26 ============================================================================ +21:31:26 Slot Id : <155> +21:31:26 Transaction Type : REQUEST +21:31:26 Received From : +21:31:26 ============================================================================ +21:31:26 FNo. Len. Field Value +21:31:26 ============================================================================ +21:31:26 [ 1] [ 4] [0800] +21:31:26 [ 7] [ 10] [0320023035] +21:31:26 [ 11] [ 6] [158497] +21:31:26 [ 70] [ 3] [301] +21:31:26 ============================================================================ +21:31:26 + + +waiting on router queue for slot.... +21:31:26 Sending to : +21:31:26 ============================================================================ +21:31:26 ============================================================================ +21:31:26 Slot Id : <155> +21:31:26 Transaction Type : RESPONSE +21:31:26 Received From : +21:31:26 ============================================================================ +21:31:26 FNo. Len. Field Value +21:31:26 ============================================================================ +21:31:26 [ 1] [ 4] [0810] +21:31:26 [ 7] [ 10] [0320023035] +21:31:26 [ 11] [ 6] [158497] +21:31:26 [ 39] [ 2] [00] +21:31:26 [ 70] [ 3] [301] +21:31:26 ============================================================================ +21:31:26 Calculate Source COMM Id = 2 +21:31:26 ============================================================================ +21:31:26 + + +waiting on router queue for slot.... +21:31:32 ============================================================================ +21:31:32 Slot Id : <214> +21:31:32 Transaction Type : REQUEST +21:31:32 Received From : +21:31:32 ============================================================================ +21:31:32 FNo. Len. Field Value +21:31:32 ============================================================================ +21:31:32 [ 1] [ 4] [0800] +21:31:32 [ 7] [ 10] [0321044322] +21:31:32 [ 11] [ 6] [214322] +21:31:32 [ 37] [ 12] [57921214322] +21:31:32 [ 70] [ 3] [301] +21:31:32 ============================================================================ +21:31:32 + + +waiting on router queue for slot.... +21:31:32 Sending to : +21:31:32 ============================================================================ +21:31:32 ============================================================================ +21:31:32 Slot Id : <214> +21:31:32 Transaction Type : RESPONSE +21:31:32 Received From : +21:31:32 ============================================================================ +21:31:32 FNo. Len. Field Value +21:31:32 ============================================================================ +21:31:32 [ 1] [ 4] [0810] +21:31:32 [ 7] [ 10] [0321044322] +21:31:32 [ 11] [ 6] [214322] +21:31:32 [ 37] [ 12] [579212143220] +21:31:32 [ 39] [ 2] [00] +21:31:32 [ 70] [ 3] [810] +21:31:32 ============================================================================ +21:31:32 Calculate Source COMM Id = 6 +21:31:32 ============================================================================ +21:31:32 + + +waiting on router queue for slot.... +21:31:37 ============================================================================ +21:31:37 Slot Id : <181> +21:31:37 Transaction Type : REQUEST +21:31:37 Received From : +21:31:37 ============================================================================ +21:31:37 FNo. Len. Field Value +21:31:37 ============================================================================ +21:31:37 [ 1] [ 4] [0800] +21:31:37 [ 7] [ 10] [0320023045] +21:31:37 [ 11] [ 6] [158498] +21:31:37 [ 70] [ 3] [301] +21:31:37 ============================================================================ +21:31:37 + + +waiting on router queue for slot.... +21:31:37 Sending to : +21:31:37 ============================================================================ +21:31:37 ============================================================================ +21:31:37 Slot Id : <181> +21:31:37 Transaction Type : RESPONSE +21:31:37 Received From : +21:31:37 ============================================================================ +21:31:37 FNo. Len. Field Value +21:31:37 ============================================================================ +21:31:37 [ 1] [ 4] [0810] +21:31:37 [ 7] [ 10] [0320023045] +21:31:37 [ 11] [ 6] [158498] +21:31:37 [ 39] [ 2] [00] +21:31:37 [ 70] [ 3] [301] +21:31:37 ============================================================================ +21:31:37 Calculate Source COMM Id = 2 +21:31:37 ============================================================================ +21:31:37 + + +waiting on router queue for slot.... +21:31:52 ============================================================================ +21:31:52 Slot Id : <165> +21:31:52 Transaction Type : REQUEST +21:31:52 Received From : +21:31:52 ============================================================================ +21:31:52 FNo. Len. Field Value +21:31:52 ============================================================================ +21:31:52 [ 1] [ 4] [0800] +21:31:52 [ 7] [ 10] [0320023101] +21:31:52 [ 11] [ 6] [158499] +21:31:52 [ 70] [ 3] [301] +21:31:52 ============================================================================ +21:31:52 + + +waiting on router queue for slot.... +21:31:52 Sending to : +21:31:52 ============================================================================ +21:31:52 ============================================================================ +21:31:52 Slot Id : <165> +21:31:52 Transaction Type : RESPONSE +21:31:52 Received From : +21:31:52 ============================================================================ +21:31:52 FNo. Len. Field Value +21:31:52 ============================================================================ +21:31:52 [ 1] [ 4] [0810] +21:31:52 [ 7] [ 10] [0320023101] +21:31:52 [ 11] [ 6] [158499] +21:31:52 [ 39] [ 2] [00] +21:31:52 [ 70] [ 3] [301] +21:31:52 ============================================================================ +21:31:52 Calculate Source COMM Id = 2 +21:31:52 ============================================================================ +21:31:52 + + +waiting on router queue for slot.... +21:31:54 ============================================================================ +21:31:54 Slot Id : <201> +21:31:54 Transaction Type : REQUEST +21:31:54 Received From : +21:31:54 ============================================================================ +21:31:54 FNo. Len. Field Value +21:31:54 ============================================================================ +21:31:54 [ 1] [ 4] [0800] +21:31:54 [ 7] [ 10] [0320143150] +21:31:54 [ 11] [ 6] [048373] +21:31:54 [ 37] [ 12] [507921048373] +21:31:54 [ 70] [ 3] [001] +21:31:54 ============================================================================ +21:31:54 + + +waiting on router queue for slot.... +21:31:54 Sending to : +21:31:54 ============================================================================ +21:31:54 ============================================================================ +21:31:54 Slot Id : <201> +21:31:54 Transaction Type : RESPONSE +21:31:54 Received From : +21:31:54 ============================================================================ +21:31:54 FNo. Len. Field Value +21:31:54 ============================================================================ +21:31:54 [ 1] [ 4] [0810] +21:31:54 [ 7] [ 10] [0320143150] +21:31:54 [ 11] [ 6] [048373] +21:31:54 [ 37] [ 12] [507921048373] +21:31:54 [ 39] [ 2] [00] +21:31:54 [ 70] [ 3] [001] +21:31:54 ============================================================================ +21:31:54 Calculate Source COMM Id = 0 +21:31:54 ============================================================================ +21:31:54 + + +waiting on router queue for slot.... +21:32:05 ============================================================================ +21:32:05 Slot Id : <195> +21:32:05 Transaction Type : REQUEST +21:32:05 Received From : +21:32:05 ============================================================================ +21:32:05 FNo. Len. Field Value +21:32:05 ============================================================================ +21:32:05 [ 1] [ 4] [0800] +21:32:05 [ 7] [ 10] [0320023111] +21:32:05 [ 11] [ 6] [158500] +21:32:05 [ 70] [ 3] [301] +21:32:05 ============================================================================ +21:32:05 + + +waiting on router queue for slot.... +21:32:05 Sending to : +21:32:05 ============================================================================ +21:32:05 ============================================================================ +21:32:05 Slot Id : <195> +21:32:05 Transaction Type : RESPONSE +21:32:05 Received From : +21:32:05 ============================================================================ +21:32:05 FNo. Len. Field Value +21:32:05 ============================================================================ +21:32:05 [ 1] [ 4] [0810] +21:32:05 [ 7] [ 10] [0320023111] +21:32:05 [ 11] [ 6] [158500] +21:32:05 [ 39] [ 2] [00] +21:32:05 [ 70] [ 3] [301] +21:32:05 ============================================================================ +21:32:05 Calculate Source COMM Id = 2 +21:32:05 ============================================================================ +21:32:05 + + +waiting on router queue for slot.... +21:32:20 ============================================================================ +21:32:20 Slot Id : <194> +21:32:20 Transaction Type : REQUEST +21:32:20 Received From : +21:32:20 ============================================================================ +21:32:20 FNo. Len. Field Value +21:32:20 ============================================================================ +21:32:20 [ 1] [ 4] [0800] +21:32:20 [ 7] [ 10] [0320023128] +21:32:20 [ 11] [ 6] [158501] +21:32:20 [ 70] [ 3] [301] +21:32:20 ============================================================================ +21:32:20 + + +waiting on router queue for slot.... +21:32:20 Sending to : +21:32:20 ============================================================================ +21:32:20 ============================================================================ +21:32:20 Slot Id : <194> +21:32:20 Transaction Type : RESPONSE +21:32:20 Received From : +21:32:20 ============================================================================ +21:32:20 FNo. Len. Field Value +21:32:20 ============================================================================ +21:32:20 [ 1] [ 4] [0810] +21:32:20 [ 7] [ 10] [0320023128] +21:32:20 [ 11] [ 6] [158501] +21:32:20 [ 39] [ 2] [00] +21:32:20 [ 70] [ 3] [301] +21:32:20 ============================================================================ +21:32:20 Calculate Source COMM Id = 2 +21:32:20 ============================================================================ +21:32:20 + + +waiting on router queue for slot.... +21:32:20 ============================================================================ +21:32:20 Slot Id : <178> +21:32:20 Transaction Type : REQUEST +21:32:20 Received From : +21:32:20 ============================================================================ +21:32:20 FNo. Len. Field Value +21:32:20 ============================================================================ +21:32:20 [ 1] [ 4] [0800] +21:32:20 [ 2] [ 5] [02531] +21:32:20 [ 3] [ 6] [579218] +21:32:20 [ 7] [ 10] [0320143220] +21:32:20 [ 11] [ 6] [807662] +21:32:20 [ 15] [ 10] [0320143220] +21:32:20 [ 37] [ 11] [57921807662] +21:32:20 [ 70] [ 3] [001] +21:32:20 ============================================================================ +21:32:20 + + +waiting on router queue for slot.... +21:32:20 ============================================================================ +21:32:20 Slot Id : <178> +21:32:20 Transaction Type : RESPONSE +21:32:20 Received From : +21:32:20 ============================================================================ +21:32:20 FNo. Len. Field Value +21:32:20 ============================================================================ +21:32:20 [ 1] [ 4] [0810] +21:32:20 [ 7] [ 10] [0320143220] +21:32:20 [ 11] [ 6] [807662] +21:32:20 [ 15] [ 4] [0320] +21:32:20 [ 37] [ 12] [57921807662] +21:32:20 [ 39] [ 2] [00] +21:32:20 [ 70] [ 3] [001] +21:32:20 ============================================================================ +21:32:20 Sending to : +21:32:20 ============================================================================ +21:32:20 + + +waiting on router queue for slot.... +21:32:30 ============================================================================ +21:32:30 Slot Id : <209> +21:32:30 Transaction Type : REQUEST +21:32:30 Received From : +21:32:30 ============================================================================ +21:32:30 FNo. Len. Field Value +21:32:30 ============================================================================ +21:32:30 [ 1] [ 4] [0800] +21:32:30 [ 7] [ 10] [0320023138] +21:32:30 [ 11] [ 6] [158502] +21:32:30 [ 70] [ 3] [301] +21:32:30 ============================================================================ +21:32:30 + + +waiting on router queue for slot.... +21:32:30 Sending to : +21:32:30 ============================================================================ +21:32:30 ============================================================================ +21:32:30 Slot Id : <209> +21:32:30 Transaction Type : RESPONSE +21:32:30 Received From : +21:32:30 ============================================================================ +21:32:30 FNo. Len. Field Value +21:32:30 ============================================================================ +21:32:30 [ 1] [ 4] [0810] +21:32:30 [ 7] [ 10] [0320023138] +21:32:30 [ 11] [ 6] [158502] +21:32:30 [ 39] [ 2] [00] +21:32:30 [ 70] [ 3] [301] +21:32:30 ============================================================================ +21:32:30 Calculate Source COMM Id = 2 +21:32:30 ============================================================================ +21:32:30 + + +waiting on router queue for slot.... +21:32:37 ============================================================================ +21:32:37 Slot Id : <193> +21:32:37 Transaction Type : REQUEST +21:32:37 Received From : +21:32:37 ============================================================================ +21:32:37 FNo. Len. Field Value +21:32:37 ============================================================================ +21:32:37 [ 1] [ 4] [0800] +21:32:37 [ 7] [ 10] [0321044427] +21:32:37 [ 11] [ 6] [214427] +21:32:37 [ 37] [ 12] [57921214427] +21:32:37 [ 70] [ 3] [301] +21:32:37 ============================================================================ +21:32:37 + + +waiting on router queue for slot.... +21:32:37 Sending to : +21:32:37 ============================================================================ +21:32:37 ============================================================================ +21:32:37 Slot Id : <193> +21:32:37 Transaction Type : RESPONSE +21:32:37 Received From : +21:32:37 ============================================================================ +21:32:37 FNo. Len. Field Value +21:32:37 ============================================================================ +21:32:37 [ 1] [ 4] [0810] +21:32:37 [ 7] [ 10] [0321044427] +21:32:37 [ 11] [ 6] [214427] +21:32:37 [ 37] [ 12] [579212144270] +21:32:37 [ 39] [ 2] [00] +21:32:37 [ 70] [ 3] [810] +21:32:37 ============================================================================ +21:32:37 Calculate Source COMM Id = 6 +21:32:37 ============================================================================ +21:32:37 + + +waiting on router queue for slot.... +21:32:46 ============================================================================ +21:32:46 Slot Id : <206> +21:32:46 Transaction Type : REQUEST +21:32:46 Received From : +21:32:46 ============================================================================ +21:32:46 FNo. Len. Field Value +21:32:46 ============================================================================ +21:32:46 [ 1] [ 4] [0800] +21:32:46 [ 7] [ 10] [0320023154] +21:32:46 [ 11] [ 6] [158503] +21:32:46 [ 70] [ 3] [301] +21:32:46 ============================================================================ +21:32:46 + + +waiting on router queue for slot.... +21:32:46 Sending to : +21:32:46 ============================================================================ +21:32:46 ============================================================================ +21:32:46 Slot Id : <206> +21:32:46 Transaction Type : RESPONSE +21:32:46 Received From : +21:32:46 ============================================================================ +21:32:46 FNo. Len. Field Value +21:32:46 ============================================================================ +21:32:46 [ 1] [ 4] [0810] +21:32:46 [ 7] [ 10] [0320023154] +21:32:46 [ 11] [ 6] [158503] +21:32:46 [ 39] [ 2] [00] +21:32:46 [ 70] [ 3] [301] +21:32:46 ============================================================================ +21:32:46 Calculate Source COMM Id = 2 +21:32:46 ============================================================================ +21:32:46 + + +waiting on router queue for slot.... +21:32:57 ============================================================================ +21:32:57 Slot Id : <212> +21:32:57 Transaction Type : REQUEST +21:32:57 Received From : +21:32:57 ============================================================================ +21:32:57 FNo. Len. Field Value +21:32:57 ============================================================================ +21:32:57 [ 1] [ 4] [0800] +21:32:57 [ 7] [ 10] [0320023205] +21:32:57 [ 11] [ 6] [158504] +21:32:57 [ 70] [ 3] [301] +21:32:57 ============================================================================ +21:32:57 + + +waiting on router queue for slot.... +21:32:57 Sending to : +21:32:57 ============================================================================ +21:32:57 ============================================================================ +21:32:57 Slot Id : <212> +21:32:57 Transaction Type : RESPONSE +21:32:57 Received From : +21:32:57 ============================================================================ +21:32:57 FNo. Len. Field Value +21:32:57 ============================================================================ +21:32:57 [ 1] [ 4] [0810] +21:32:57 [ 7] [ 10] [0320023205] +21:32:57 [ 11] [ 6] [158504] +21:32:57 [ 39] [ 2] [00] +21:32:57 [ 70] [ 3] [301] +21:32:57 ============================================================================ +21:32:57 Calculate Source COMM Id = 2 +21:32:57 ============================================================================ +21:32:57 + + +waiting on router queue for slot.... +21:33:12 ============================================================================ +21:33:12 Slot Id : <184> +21:33:12 Transaction Type : REQUEST +21:33:12 Received From : +21:33:12 ============================================================================ +21:33:12 FNo. Len. Field Value +21:33:12 ============================================================================ +21:33:12 [ 1] [ 4] [0800] +21:33:12 [ 7] [ 10] [0320023220] +21:33:12 [ 11] [ 6] [158505] +21:33:12 [ 70] [ 3] [301] +21:33:12 ============================================================================ +21:33:12 + + +waiting on router queue for slot.... +21:33:12 Sending to : +21:33:12 ============================================================================ +21:33:12 ============================================================================ +21:33:12 Slot Id : <184> +21:33:12 Transaction Type : RESPONSE +21:33:12 Received From : +21:33:12 ============================================================================ +21:33:12 FNo. Len. Field Value +21:33:12 ============================================================================ +21:33:12 [ 1] [ 4] [0810] +21:33:12 [ 7] [ 10] [0320023220] +21:33:12 [ 11] [ 6] [158505] +21:33:12 [ 39] [ 2] [00] +21:33:12 [ 70] [ 3] [301] +21:33:12 ============================================================================ +21:33:12 Calculate Source COMM Id = 2 +21:33:12 ============================================================================ +21:33:12 + + +waiting on router queue for slot.... +21:33:22 ============================================================================ +21:33:22 Slot Id : <230> +21:33:22 Transaction Type : REQUEST +21:33:22 Received From : +21:33:22 ============================================================================ +21:33:22 FNo. Len. Field Value +21:33:22 ============================================================================ +21:33:22 [ 1] [ 4] [0800] +21:33:22 [ 2] [ 5] [02531] +21:33:22 [ 3] [ 6] [579218] +21:33:22 [ 7] [ 10] [0320143322] +21:33:22 [ 11] [ 6] [807663] +21:33:22 [ 15] [ 10] [0320143322] +21:33:22 [ 37] [ 11] [57921807663] +21:33:22 [ 70] [ 3] [001] +21:33:22 ============================================================================ +21:33:22 + + +waiting on router queue for slot.... +21:33:22 ============================================================================ +21:33:22 Slot Id : <230> +21:33:22 Transaction Type : RESPONSE +21:33:22 Received From : +21:33:22 ============================================================================ +21:33:22 FNo. Len. Field Value +21:33:22 ============================================================================ +21:33:22 [ 1] [ 4] [0810] +21:33:22 [ 7] [ 10] [0320143322] +21:33:22 [ 11] [ 6] [807663] +21:33:22 [ 15] [ 4] [0320] +21:33:22 [ 37] [ 12] [57921807663] +21:33:22 [ 39] [ 2] [00] +21:33:22 [ 70] [ 3] [001] +21:33:22 ============================================================================ +21:33:22 Sending to : +21:33:22 ============================================================================ +21:33:22 + + +waiting on router queue for slot.... +21:33:24 ============================================================================ +21:33:24 Slot Id : <183> +21:33:24 Transaction Type : REQUEST +21:33:24 Received From : +21:33:24 ============================================================================ +21:33:24 FNo. Len. Field Value +21:33:24 ============================================================================ +21:33:24 [ 1] [ 4] [0800] +21:33:24 [ 7] [ 10] [0320023231] +21:33:24 [ 11] [ 6] [158506] +21:33:24 [ 70] [ 3] [301] +21:33:24 ============================================================================ +21:33:24 + + +waiting on router queue for slot.... +21:33:24 Sending to : +21:33:24 ============================================================================ +21:33:24 ============================================================================ +21:33:24 Slot Id : <183> +21:33:24 Transaction Type : RESPONSE +21:33:24 Received From : +21:33:24 ============================================================================ +21:33:24 FNo. Len. Field Value +21:33:24 ============================================================================ +21:33:24 [ 1] [ 4] [0810] +21:33:24 [ 7] [ 10] [0320023231] +21:33:24 [ 11] [ 6] [158506] +21:33:24 [ 39] [ 2] [00] +21:33:24 [ 70] [ 3] [301] +21:33:24 ============================================================================ +21:33:24 Calculate Source COMM Id = 2 +21:33:24 ============================================================================ +21:33:24 + + +waiting on router queue for slot.... +21:33:39 ============================================================================ +21:33:39 Slot Id : <221> +21:33:39 Transaction Type : REQUEST +21:33:39 Received From : +21:33:39 ============================================================================ +21:33:39 FNo. Len. Field Value +21:33:39 ============================================================================ +21:33:39 [ 1] [ 4] [0800] +21:33:39 [ 7] [ 10] [0320023248] +21:33:39 [ 11] [ 6] [158507] +21:33:39 [ 70] [ 3] [301] +21:33:39 ============================================================================ +21:33:39 + + +waiting on router queue for slot.... +21:33:39 Sending to : +21:33:39 ============================================================================ +21:33:39 ============================================================================ +21:33:39 Slot Id : <221> +21:33:39 Transaction Type : RESPONSE +21:33:39 Received From : +21:33:39 ============================================================================ +21:33:39 FNo. Len. Field Value +21:33:39 ============================================================================ +21:33:39 [ 1] [ 4] [0810] +21:33:39 [ 7] [ 10] [0320023248] +21:33:39 [ 11] [ 6] [158507] +21:33:39 [ 39] [ 2] [00] +21:33:39 [ 70] [ 3] [301] +21:33:39 ============================================================================ +21:33:39 Calculate Source COMM Id = 2 +21:33:39 ============================================================================ +21:33:39 + + +waiting on router queue for slot.... +21:33:42 ============================================================================ +21:33:42 Slot Id : <207> +21:33:42 Transaction Type : REQUEST +21:33:42 Received From : +21:33:42 ============================================================================ +21:33:42 FNo. Len. Field Value +21:33:42 ============================================================================ +21:33:42 [ 1] [ 4] [0800] +21:33:42 [ 7] [ 10] [0321044532] +21:33:42 [ 11] [ 6] [214532] +21:33:42 [ 37] [ 12] [57921214532] +21:33:42 [ 70] [ 3] [301] +21:33:42 ============================================================================ +21:33:42 + + +waiting on router queue for slot.... +21:33:42 Sending to : +21:33:42 ============================================================================ +21:33:42 ============================================================================ +21:33:42 Slot Id : <207> +21:33:42 Transaction Type : RESPONSE +21:33:42 Received From : +21:33:42 ============================================================================ +21:33:42 FNo. Len. Field Value +21:33:42 ============================================================================ +21:33:42 [ 1] [ 4] [0810] +21:33:42 [ 7] [ 10] [0321044532] +21:33:42 [ 11] [ 6] [214532] +21:33:42 [ 37] [ 12] [579212145320] +21:33:42 [ 39] [ 2] [00] +21:33:42 [ 70] [ 3] [810] +21:33:42 ============================================================================ +21:33:42 Calculate Source COMM Id = 6 +21:33:42 ============================================================================ +21:33:42 + + +waiting on router queue for slot.... +21:33:50 ============================================================================ +21:33:50 Slot Id : <213> +21:33:50 Transaction Type : REQUEST +21:33:50 Received From : +21:33:50 ============================================================================ +21:33:50 FNo. Len. Field Value +21:33:50 ============================================================================ +21:33:50 [ 1] [ 4] [0800] +21:33:50 [ 7] [ 10] [0320023258] +21:33:50 [ 11] [ 6] [158508] +21:33:50 [ 70] [ 3] [301] +21:33:50 ============================================================================ +21:33:50 + + +waiting on router queue for slot.... +21:33:50 Sending to : +21:33:50 ============================================================================ +21:33:50 ============================================================================ +21:33:50 Slot Id : <213> +21:33:50 Transaction Type : RESPONSE +21:33:50 Received From : +21:33:50 ============================================================================ +21:33:50 FNo. Len. Field Value +21:33:50 ============================================================================ +21:33:50 [ 1] [ 4] [0810] +21:33:50 [ 7] [ 10] [0320023258] +21:33:50 [ 11] [ 6] [158508] +21:33:50 [ 39] [ 2] [00] +21:33:50 [ 70] [ 3] [301] +21:33:50 ============================================================================ +21:33:50 Calculate Source COMM Id = 2 +21:33:50 ============================================================================ +21:33:50 + + +waiting on router queue for slot.... +21:34:01 ============================================================================ +21:34:01 Slot Id : <169> +21:34:01 Transaction Type : REQUEST +21:34:01 Received From : +21:34:01 ============================================================================ +21:34:01 FNo. Len. Field Value +21:34:01 ============================================================================ +21:34:01 [ 1] [ 4] [0800] +21:34:01 [ 7] [ 10] [0320023309] +21:34:01 [ 11] [ 6] [158509] +21:34:01 [ 70] [ 3] [301] +21:34:01 ============================================================================ +21:34:01 + + +waiting on router queue for slot.... +21:34:01 Sending to : +21:34:01 ============================================================================ +21:34:01 ============================================================================ +21:34:01 Slot Id : <169> +21:34:01 Transaction Type : RESPONSE +21:34:01 Received From : +21:34:01 ============================================================================ +21:34:01 FNo. Len. Field Value +21:34:01 ============================================================================ +21:34:01 [ 1] [ 4] [0810] +21:34:01 [ 7] [ 10] [0320023309] +21:34:01 [ 11] [ 6] [158509] +21:34:01 [ 39] [ 2] [00] +21:34:01 [ 70] [ 3] [301] +21:34:01 ============================================================================ +21:34:01 Calculate Source COMM Id = 2 +21:34:01 ============================================================================ +21:34:01 + + +waiting on router queue for slot.... +21:34:12 ============================================================================ +21:34:12 Slot Id : <205> +21:34:12 Transaction Type : REQUEST +21:34:12 Received From : +21:34:12 ============================================================================ +21:34:12 FNo. Len. Field Value +21:34:12 ============================================================================ +21:34:12 [ 1] [ 4] [0800] +21:34:12 [ 7] [ 10] [0320023320] +21:34:12 [ 11] [ 6] [158510] +21:34:12 [ 70] [ 3] [301] +21:34:12 ============================================================================ +21:34:12 + + +waiting on router queue for slot.... +21:34:12 Sending to : +21:34:12 ============================================================================ +21:34:12 ============================================================================ +21:34:12 Slot Id : <205> +21:34:12 Transaction Type : RESPONSE +21:34:12 Received From : +21:34:12 ============================================================================ +21:34:12 FNo. Len. Field Value +21:34:12 ============================================================================ +21:34:12 [ 1] [ 4] [0810] +21:34:12 [ 7] [ 10] [0320023320] +21:34:12 [ 11] [ 6] [158510] +21:34:12 [ 39] [ 2] [00] +21:34:12 [ 70] [ 3] [301] +21:34:12 ============================================================================ +21:34:12 Calculate Source COMM Id = 2 +21:34:12 ============================================================================ +21:34:12 + + +waiting on router queue for slot.... +21:34:22 ============================================================================ +21:34:22 Slot Id : <185> +21:34:22 Transaction Type : REQUEST +21:34:22 Received From : +21:34:22 ============================================================================ +21:34:22 FNo. Len. Field Value +21:34:22 ============================================================================ +21:34:22 [ 1] [ 4] [0800] +21:34:22 [ 7] [ 10] [0320023330] +21:34:22 [ 11] [ 6] [158511] +21:34:22 [ 70] [ 3] [301] +21:34:22 ============================================================================ +21:34:22 + + +waiting on router queue for slot.... +21:34:22 Sending to : +21:34:22 ============================================================================ +21:34:22 ============================================================================ +21:34:22 Slot Id : <185> +21:34:22 Transaction Type : RESPONSE +21:34:22 Received From : +21:34:22 ============================================================================ +21:34:22 FNo. Len. Field Value +21:34:22 ============================================================================ +21:34:22 [ 1] [ 4] [0810] +21:34:22 [ 7] [ 10] [0320023330] +21:34:22 [ 11] [ 6] [158511] +21:34:22 [ 39] [ 2] [00] +21:34:22 [ 70] [ 3] [301] +21:34:22 ============================================================================ +21:34:22 Calculate Source COMM Id = 2 +21:34:22 ============================================================================ +21:34:22 + + +waiting on router queue for slot.... +21:34:24 ============================================================================ +21:34:24 Slot Id : <149> +21:34:24 Transaction Type : REQUEST +21:34:24 Received From : +21:34:24 ============================================================================ +21:34:24 FNo. Len. Field Value +21:34:24 ============================================================================ +21:34:24 [ 1] [ 4] [0800] +21:34:24 [ 2] [ 5] [02531] +21:34:24 [ 3] [ 6] [579218] +21:34:24 [ 7] [ 10] [0320143424] +21:34:24 [ 11] [ 6] [807664] +21:34:24 [ 15] [ 10] [0320143424] +21:34:24 [ 37] [ 11] [57921807664] +21:34:24 [ 70] [ 3] [001] +21:34:24 ============================================================================ +21:34:24 + + +waiting on router queue for slot.... +21:34:24 ============================================================================ +21:34:24 Slot Id : <149> +21:34:24 Transaction Type : RESPONSE +21:34:24 Received From : +21:34:24 ============================================================================ +21:34:24 FNo. Len. Field Value +21:34:24 ============================================================================ +21:34:24 [ 1] [ 4] [0810] +21:34:24 [ 7] [ 10] [0320143424] +21:34:24 [ 11] [ 6] [807664] +21:34:24 [ 15] [ 4] [0320] +21:34:24 [ 37] [ 12] [57921807664] +21:34:24 [ 39] [ 2] [00] +21:34:24 [ 70] [ 3] [001] +21:34:24 ============================================================================ +21:34:24 Sending to : +21:34:24 ============================================================================ +21:34:24 + + +waiting on router queue for slot.... +21:34:38 ============================================================================ +21:34:38 Slot Id : <232> +21:34:38 Transaction Type : REQUEST +21:34:38 Received From : +21:34:38 ============================================================================ +21:34:38 FNo. Len. Field Value +21:34:38 ============================================================================ +21:34:38 [ 1] [ 4] [0800] +21:34:38 [ 7] [ 10] [0320023346] +21:34:38 [ 11] [ 6] [158512] +21:34:38 [ 70] [ 3] [301] +21:34:38 ============================================================================ +21:34:38 + + +waiting on router queue for slot.... +21:34:38 Sending to : +21:34:38 ============================================================================ +21:34:38 ============================================================================ +21:34:38 Slot Id : <232> +21:34:38 Transaction Type : RESPONSE +21:34:38 Received From : +21:34:38 ============================================================================ +21:34:38 FNo. Len. Field Value +21:34:38 ============================================================================ +21:34:38 [ 1] [ 4] [0810] +21:34:38 [ 7] [ 10] [0320023346] +21:34:38 [ 11] [ 6] [158512] +21:34:38 [ 39] [ 2] [00] +21:34:38 [ 70] [ 3] [301] +21:34:38 ============================================================================ +21:34:38 Calculate Source COMM Id = 2 +21:34:38 ============================================================================ +21:34:38 + + +waiting on router queue for slot.... +21:34:40 ============================================================================ +21:34:40 Slot Id : <180> +21:34:40 Transaction Type : REQUEST +21:34:40 Received From : +21:34:40 ============================================================================ +21:34:40 FNo. Len. Field Value +21:34:40 ============================================================================ +21:34:40 [ 1] [ 4] [0200] +21:34:40 [ 2] [ 16] [6213548000340768] +21:34:40 [ 3] [ 6] [300000] +21:34:40 [ 4] [ 12] [000000000000] +21:34:40 [ 7] [ 10] [0320213231] +21:34:40 [ 11] [ 6] [957770] +21:34:40 [ 12] [ 6] [213231] +21:34:40 [ 13] [ 4] [0320] +21:34:40 [ 15] [ 4] [0320] +21:34:40 [ 18] [ 4] [6011] +21:34:40 [ 19] [ 3] [418] +21:34:40 [ 22] [ 3] [021] +21:34:40 [ 25] [ 2] [01] +21:34:40 [ 28] [ 9] [D00000000] +21:34:40 [ 32] [ 6] [668899] +21:34:40 [ 35] [ 32] [6213548000340768=180412014076204] +21:34:40 [ 37] [ 12] [507900603279] +21:34:40 [ 41] [ 8] [03006003] +21:34:40 [ 42] [ 15] [APT ] +21:34:40 [ 43] [ 40] [ LDB QUESTHOUSE LUANGPRABA] +21:34:40 [ 49] [ 3] [418] +21:34:40 [ 52] [ 16] [5B47DBBD242951EA] +21:34:40 ============================================================================ +21:34:40 + + +waiting on router queue for slot.... +21:34:40 Sending to : +21:34:40 ============================================================================ +21:34:40 Sending to : +21:34:40 ============================================================================ +21:34:40 ============================================================================ +21:34:40 Slot Id : <180> +21:34:40 Transaction Type : REQUEST +21:34:40 Received From : +21:34:40 ============================================================================ +21:34:40 FNo. Len. Field Value +21:34:40 ============================================================================ +21:34:40 [ 1] [ 4] [0200] +21:34:40 [ 2] [ 16] [6213548000340768] +21:34:40 [ 3] [ 6] [300000] +21:34:40 [ 4] [ 12] [000000000000] +21:34:40 [ 7] [ 10] [0320213231] +21:34:40 [ 11] [ 6] [957770] +21:34:40 [ 12] [ 6] [213231] +21:34:40 [ 13] [ 4] [0320] +21:34:40 [ 15] [ 4] [0320] +21:34:40 [ 18] [ 4] [6011] +21:34:40 [ 19] [ 3] [418] +21:34:40 [ 22] [ 3] [021] +21:34:40 [ 25] [ 2] [01] +21:34:40 [ 28] [ 9] [D00000000] +21:34:40 [ 32] [ 6] [668899] +21:34:40 [ 35] [ 32] [6213548000340768=180412014076204] +21:34:40 [ 37] [ 12] [507900603279] +21:34:40 [ 41] [ 8] [03006003] +21:34:40 [ 42] [ 15] [APT ] +21:34:40 [ 43] [ 40] [ LDB QUESTHOUSE LUANGPRABA] +21:34:40 [ 49] [ 3] [418] +21:34:40 [ 52] [ 16] [5B47DBBD242951EA] +21:34:40 ============================================================================ +21:34:40 + + +waiting on router queue for slot.... +21:34:40 Sending to : +21:34:40 ============================================================================ +21:34:40 ============================================================================ +21:34:40 Slot Id : <180> +21:34:40 Transaction Type : REQUEST +21:34:40 Received From : +21:34:40 ============================================================================ +21:34:40 FNo. Len. Field Value +21:34:40 ============================================================================ +21:34:40 [ 1] [ 4] [0200] +21:34:40 [ 2] [ 16] [6213548000340768] +21:34:40 [ 3] [ 6] [300000] +21:34:40 [ 4] [ 12] [000000000000] +21:34:40 [ 7] [ 10] [0320213231] +21:34:40 [ 11] [ 6] [957770] +21:34:40 [ 12] [ 6] [213231] +21:34:40 [ 13] [ 4] [0320] +21:34:40 [ 15] [ 4] [0320] +21:34:40 [ 18] [ 4] [6011] +21:34:40 [ 19] [ 3] [418] +21:34:40 [ 22] [ 3] [021] +21:34:40 [ 25] [ 2] [01] +21:34:40 [ 28] [ 9] [D00000000] +21:34:40 [ 32] [ 6] [668899] +21:34:40 [ 35] [ 32] [6213548000340768=180412014076204] +21:34:40 [ 37] [ 12] [507900603279] +21:34:40 [ 41] [ 8] [03006003] +21:34:40 [ 42] [ 15] [APT ] +21:34:40 [ 43] [ 40] [ LDB QUESTHOUSE LUANGPRABA] +21:34:40 [ 49] [ 3] [418] +21:34:40 [ 52] [ 16] [ABF789767B4FED9A] +21:34:40 ============================================================================ +21:34:40 + + +waiting on router queue for slot.... +21:34:40 Sending to : <0> +21:34:40 ============================================================================ +21:34:41 ============================================================================ +21:34:41 Slot Id : <180> +21:34:41 Transaction Type : RESPONSE +21:34:41 Received From : +21:34:41 ============================================================================ +21:34:41 FNo. Len. Field Value +21:34:41 ============================================================================ +21:34:41 [ 1] [ 4] [0210] +21:34:41 [ 2] [ 16] [6213548000340768] +21:34:41 [ 3] [ 6] [300000] +21:34:41 [ 4] [ 12] [000000000000] +21:34:41 [ 7] [ 10] [0320213231] +21:34:41 [ 11] [ 6] [957770] +21:34:41 [ 12] [ 6] [213231] +21:34:41 [ 13] [ 4] [0320] +21:34:41 [ 15] [ 4] [0320] +21:34:41 [ 18] [ 4] [6011] +21:34:41 [ 19] [ 3] [418] +21:34:41 [ 32] [ 6] [668899] +21:34:41 [ 35] [ 32] [6213548000340768=180412014076204] +21:34:41 [ 37] [ 12] [507900603279] +21:34:41 [ 38] [ 6] [276865] +21:34:41 [ 39] [ 2] [00] +21:34:41 [ 41] [ 8] [03006003] +21:34:41 [ 49] [ 3] [418] +21:34:41 [ 54] [ 40] [0001418C0000465635570002418C000046563557] +21:34:41 ============================================================================ +21:34:41 Sending to : +21:34:41 ============================================================================ +21:34:41 + + +waiting on router queue for slot.... +21:34:41 ============================================================================ +21:34:41 Slot Id : <222> +21:34:41 Transaction Type : REQUEST +21:34:41 Received From : +21:34:41 ============================================================================ +21:34:41 FNo. Len. Field Value +21:34:41 ============================================================================ +21:34:41 [ 1] [ 4] [0200] +21:34:41 [ 2] [ 16] [2206991200049599] +21:34:41 [ 3] [ 6] [301000] +21:34:41 [ 7] [ 10] [0320143349] +21:34:41 [ 11] [ 6] [271700] +21:34:41 [ 12] [ 6] [213349] +21:34:41 [ 13] [ 4] [0320] +21:34:41 [ 14] [ 4] [1304] +21:34:41 [ 15] [ 4] [0320] +21:34:41 [ 18] [ 4] [6011] +21:34:41 [ 19] [ 3] [418] +21:34:41 [ 22] [ 3] [021] +21:34:41 [ 25] [ 2] [01] +21:34:41 [ 32] [ 6] [180893] +21:34:41 [ 35] [ 32] [2206991200049599=130400014959000] +21:34:41 [ 37] [ 12] [507914271700] +21:34:41 [ 41] [ 8] [0141HQBR] +21:34:41 [ 42] [ 15] [999999 ] +21:34:41 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +21:34:41 [ 49] [ 3] [418] +21:34:41 [ 52] [ 16] [AC5577F78D905CB8] +21:34:41 ============================================================================ +21:34:41 + + +waiting on router queue for slot.... +21:34:41 Sending to : +21:34:41 ============================================================================ +21:34:41 Sending to : +21:34:41 ============================================================================ +21:34:42 ============================================================================ +21:34:42 Slot Id : <222> +21:34:42 Transaction Type : REQUEST +21:34:42 Received From : +21:34:42 ============================================================================ +21:34:42 FNo. Len. Field Value +21:34:42 ============================================================================ +21:34:42 [ 1] [ 4] [0200] +21:34:42 [ 2] [ 16] [2206991200049599] +21:34:42 [ 3] [ 6] [301000] +21:34:42 [ 7] [ 10] [0320143349] +21:34:42 [ 11] [ 6] [271700] +21:34:42 [ 12] [ 6] [213349] +21:34:42 [ 13] [ 4] [0320] +21:34:42 [ 14] [ 4] [1304] +21:34:42 [ 15] [ 4] [0320] +21:34:42 [ 18] [ 4] [6011] +21:34:42 [ 19] [ 3] [418] +21:34:42 [ 22] [ 3] [021] +21:34:42 [ 25] [ 2] [01] +21:34:42 [ 32] [ 6] [180893] +21:34:42 [ 35] [ 32] [2206991200049599=130400014959000] +21:34:42 [ 37] [ 12] [507914271700] +21:34:42 [ 41] [ 8] [0141HQBR] +21:34:42 [ 42] [ 15] [999999 ] +21:34:42 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +21:34:42 [ 49] [ 3] [418] +21:34:42 [ 52] [ 16] [AC5577F78D905CB8] +21:34:42 ============================================================================ +21:34:42 + + +waiting on router queue for slot.... +21:34:42 Sending to : +21:34:42 ============================================================================ +21:34:42 ============================================================================ +21:34:42 Slot Id : <222> +21:34:42 Transaction Type : REQUEST +21:34:42 Received From : +21:34:42 ============================================================================ +21:34:42 FNo. Len. Field Value +21:34:42 ============================================================================ +21:34:42 [ 1] [ 4] [0200] +21:34:42 [ 2] [ 16] [2206991200049599] +21:34:42 [ 3] [ 6] [301000] +21:34:42 [ 7] [ 10] [0320143349] +21:34:42 [ 11] [ 6] [271700] +21:34:42 [ 12] [ 6] [213349] +21:34:42 [ 13] [ 4] [0320] +21:34:42 [ 14] [ 4] [1304] +21:34:42 [ 15] [ 4] [0320] +21:34:42 [ 18] [ 4] [6011] +21:34:42 [ 19] [ 3] [418] +21:34:42 [ 22] [ 3] [021] +21:34:42 [ 25] [ 2] [01] +21:34:42 [ 32] [ 6] [180893] +21:34:42 [ 35] [ 32] [2206991200049599=130400014959000] +21:34:42 [ 37] [ 12] [507914271700] +21:34:42 [ 41] [ 8] [0141HQBR] +21:34:42 [ 42] [ 15] [999999 ] +21:34:42 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +21:34:42 [ 49] [ 3] [418] +21:34:42 [ 52] [ 16] [FA929A9DFD1D72F9] +21:34:42 ============================================================================ +21:34:42 + + +waiting on router queue for slot.... +21:34:42 Sending to : <1> +21:34:42 ============================================================================ +21:34:42 ============================================================================ +21:34:42 Slot Id : <180> +21:34:42 Transaction Type : RESPONSE +21:34:42 Received From : +21:34:42 ============================================================================ +21:34:42 FNo. Len. Field Value +21:34:42 ============================================================================ +21:34:42 [ 1] [ 4] [0210] +21:34:42 [ 2] [ 16] [6213548000340768] +21:34:42 [ 3] [ 6] [300000] +21:34:42 [ 4] [ 12] [000000000000] +21:34:42 [ 7] [ 10] [0320213231] +21:34:42 [ 11] [ 6] [957770] +21:34:42 [ 12] [ 6] [213231] +21:34:42 [ 13] [ 4] [0320] +21:34:42 [ 15] [ 4] [0320] +21:34:42 [ 18] [ 4] [6011] +21:34:42 [ 19] [ 3] [418] +21:34:42 [ 32] [ 6] [668899] +21:34:42 [ 35] [ 32] [6213548000340768=180412014076204] +21:34:42 [ 37] [ 12] [507900603279] +21:34:42 [ 38] [ 6] [276865] +21:34:42 [ 39] [ 2] [00] +21:34:42 [ 41] [ 8] [03006003] +21:34:42 [ 49] [ 3] [418] +21:34:42 [ 54] [ 40] [0001418C0000465635570002418C000046563557] +21:34:42 ============================================================================ +21:34:42 Calculate Source COMM Id = 4 +21:34:42 ============================================================================ +21:34:42 + + +waiting on router queue for slot.... +21:34:43 ============================================================================ +21:34:43 Slot Id : <222> +21:34:43 Transaction Type : RESPONSE +21:34:43 Received From : +21:34:43 ============================================================================ +21:34:43 FNo. Len. Field Value +21:34:43 ============================================================================ +21:34:43 [ 1] [ 4] [0210] +21:34:43 [ 2] [ 16] [2206991200049599] +21:34:43 [ 3] [ 6] [301000] +21:34:43 [ 4] [ 12] [000000000000] +21:34:43 [ 7] [ 10] [0320143349] +21:34:43 [ 11] [ 6] [271700] +21:34:43 [ 12] [ 6] [213349] +21:34:43 [ 13] [ 4] [0320] +21:34:43 [ 15] [ 4] [0320] +21:34:43 [ 18] [ 4] [6011] +21:34:43 [ 32] [ 6] [180893] +21:34:43 [ 35] [ 32] [2206991200049599=130400014959000] +21:34:43 [ 37] [ 12] [507914271700] +21:34:43 [ 38] [ 6] [164867] +21:34:43 [ 39] [ 2] [00] +21:34:43 [ 41] [ 8] [0141HQBR] +21:34:43 [ 49] [ 3] [418] +21:34:43 [ 54] [ 40] [1001418C0000051384001002418C000005138400] +21:34:43 ============================================================================ +21:34:43 Sending to : +21:34:43 ============================================================================ +21:34:43 + + +waiting on router queue for slot.... +21:34:45 ============================================================================ +21:34:45 Slot Id : <222> +21:34:45 Transaction Type : RESPONSE +21:34:45 Received From : +21:34:45 ============================================================================ +21:34:45 FNo. Len. Field Value +21:34:45 ============================================================================ +21:34:45 [ 1] [ 4] [0210] +21:34:45 [ 2] [ 16] [2206991200049599] +21:34:45 [ 3] [ 6] [301000] +21:34:45 [ 4] [ 12] [000000000000] +21:34:45 [ 7] [ 10] [0320143349] +21:34:45 [ 11] [ 6] [271700] +21:34:45 [ 12] [ 6] [213349] +21:34:45 [ 13] [ 4] [0320] +21:34:45 [ 15] [ 4] [0320] +21:34:45 [ 18] [ 4] [6011] +21:34:45 [ 32] [ 6] [180893] +21:34:45 [ 35] [ 32] [2206991200049599=130400014959000] +21:34:45 [ 37] [ 12] [507914271700] +21:34:45 [ 38] [ 6] [164867] +21:34:45 [ 39] [ 2] [00] +21:34:45 [ 41] [ 8] [0141HQBR] +21:34:45 [ 49] [ 3] [418] +21:34:45 [ 54] [ 40] [1001418C0000051384001002418C000005138400] +21:34:45 ============================================================================ +21:34:45 Calculate Source COMM Id = 2 +21:34:45 ============================================================================ +21:34:45 + + +waiting on router queue for slot.... +21:34:47 ============================================================================ +21:34:47 Slot Id : <211> +21:34:47 Transaction Type : REQUEST +21:34:47 Received From : +21:34:47 ============================================================================ +21:34:47 FNo. Len. Field Value +21:34:47 ============================================================================ +21:34:47 [ 1] [ 4] [0800] +21:34:47 [ 7] [ 10] [0321044638] +21:34:47 [ 11] [ 6] [214638] +21:34:47 [ 37] [ 12] [57921214638] +21:34:47 [ 70] [ 3] [301] +21:34:47 ============================================================================ +21:34:47 + + +waiting on router queue for slot.... +21:34:47 Sending to : +21:34:47 ============================================================================ +21:34:47 ============================================================================ +21:34:47 Slot Id : <211> +21:34:47 Transaction Type : RESPONSE +21:34:47 Received From : +21:34:47 ============================================================================ +21:34:47 FNo. Len. Field Value +21:34:47 ============================================================================ +21:34:47 [ 1] [ 4] [0810] +21:34:47 [ 7] [ 10] [0321044638] +21:34:47 [ 11] [ 6] [214638] +21:34:47 [ 37] [ 12] [579212146380] +21:34:47 [ 39] [ 2] [00] +21:34:47 [ 70] [ 3] [810] +21:34:47 ============================================================================ +21:34:47 Calculate Source COMM Id = 6 +21:34:47 ============================================================================ +21:34:47 + + +waiting on router queue for slot.... +21:34:55 ============================================================================ +21:34:55 Slot Id : <208> +21:34:55 Transaction Type : REQUEST +21:34:55 Received From : +21:34:55 ============================================================================ +21:34:55 FNo. Len. Field Value +21:34:55 ============================================================================ +21:34:55 [ 1] [ 4] [0800] +21:34:55 [ 7] [ 10] [0320144242] +21:34:55 [ 11] [ 6] [050642] +21:34:55 [ 37] [ 12] [57921050642] +21:34:55 [ 70] [ 3] [301] +21:34:55 ============================================================================ +21:34:55 + + +waiting on router queue for slot.... +21:34:55 Sending to : +21:34:55 ============================================================================ +21:34:55 ============================================================================ +21:34:55 Slot Id : <208> +21:34:55 Transaction Type : RESPONSE +21:34:55 Received From : +21:34:55 ============================================================================ +21:34:55 FNo. Len. Field Value +21:34:55 ============================================================================ +21:34:55 [ 1] [ 4] [0810] +21:34:55 [ 7] [ 10] [0320144242] +21:34:55 [ 11] [ 6] [050642] +21:34:55 [ 37] [ 12] [579210506420] +21:34:55 [ 39] [ 2] [00] +21:34:55 [ 70] [ 3] [810] +21:34:55 ============================================================================ +21:34:55 Calculate Source COMM Id = 1 +21:34:55 ============================================================================ +21:34:55 + + +waiting on router queue for slot.... +21:34:58 ============================================================================ +21:34:58 Slot Id : <189> +21:34:58 Transaction Type : REQUEST +21:34:58 Received From : +21:34:58 ============================================================================ +21:34:58 FNo. Len. Field Value +21:34:58 ============================================================================ +21:34:58 [ 1] [ 4] [0800] +21:34:58 [ 7] [ 10] [0320023406] +21:34:58 [ 11] [ 6] [158513] +21:34:58 [ 70] [ 3] [301] +21:34:58 ============================================================================ +21:34:58 + + +waiting on router queue for slot.... +21:34:58 Sending to : +21:34:58 ============================================================================ +21:34:58 ============================================================================ +21:34:58 Slot Id : <189> +21:34:58 Transaction Type : RESPONSE +21:34:58 Received From : +21:34:58 ============================================================================ +21:34:58 FNo. Len. Field Value +21:34:58 ============================================================================ +21:34:58 [ 1] [ 4] [0810] +21:34:58 [ 7] [ 10] [0320023406] +21:34:58 [ 11] [ 6] [158513] +21:34:58 [ 39] [ 2] [00] +21:34:58 [ 70] [ 3] [301] +21:34:58 ============================================================================ +21:34:58 Calculate Source COMM Id = 2 +21:34:58 ============================================================================ +21:34:58 + + +waiting on router queue for slot.... +21:35:14 ============================================================================ +21:35:14 Slot Id : <168> +21:35:14 Transaction Type : REQUEST +21:35:14 Received From : +21:35:14 ============================================================================ +21:35:14 FNo. Len. Field Value +21:35:14 ============================================================================ +21:35:14 [ 1] [ 4] [0800] +21:35:14 [ 7] [ 10] [0320023422] +21:35:14 [ 11] [ 6] [158514] +21:35:14 [ 70] [ 3] [301] +21:35:14 ============================================================================ +21:35:14 + + +waiting on router queue for slot.... +21:35:14 Sending to : +21:35:14 ============================================================================ +21:35:14 ============================================================================ +21:35:14 Slot Id : <168> +21:35:14 Transaction Type : RESPONSE +21:35:14 Received From : +21:35:14 ============================================================================ +21:35:14 FNo. Len. Field Value +21:35:14 ============================================================================ +21:35:14 [ 1] [ 4] [0810] +21:35:14 [ 7] [ 10] [0320023422] +21:35:14 [ 11] [ 6] [158514] +21:35:14 [ 39] [ 2] [00] +21:35:14 [ 70] [ 3] [301] +21:35:14 ============================================================================ +21:35:14 Calculate Source COMM Id = 2 +21:35:14 ============================================================================ +21:35:14 + + +waiting on router queue for slot.... +21:35:23 ============================================================================ +21:35:23 Slot Id : <229> +21:35:23 Transaction Type : REQUEST +21:35:23 Received From : +21:35:23 ============================================================================ +21:35:23 FNo. Len. Field Value +21:35:23 ============================================================================ +21:35:23 [ 1] [ 4] [0200] +21:35:23 [ 2] [ 16] [6213541000393713] +21:35:23 [ 3] [ 6] [301000] +21:35:23 [ 7] [ 10] [0320143430] +21:35:23 [ 11] [ 6] [271701] +21:35:23 [ 12] [ 6] [213430] +21:35:23 [ 13] [ 4] [0320] +21:35:23 [ 14] [ 4] [4912] +21:35:23 [ 15] [ 4] [0320] +21:35:23 [ 18] [ 4] [6011] +21:35:23 [ 19] [ 3] [418] +21:35:23 [ 22] [ 3] [021] +21:35:23 [ 25] [ 2] [01] +21:35:23 [ 32] [ 6] [180893] +21:35:23 [ 35] [ 32] [6213541000393713=491212019371271] +21:35:23 [ 37] [ 12] [507914271701] +21:35:23 [ 41] [ 8] [0141HQBR] +21:35:23 [ 42] [ 15] [999999 ] +21:35:23 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +21:35:23 [ 49] [ 3] [418] +21:35:23 [ 52] [ 16] [770CFAC6A05CBBBE] +21:35:23 ============================================================================ +21:35:23 + + +waiting on router queue for slot.... +21:35:23 Sending to : +21:35:23 ============================================================================ +21:35:23 Sending to : +21:35:23 ============================================================================ +21:35:23 ============================================================================ +21:35:23 Slot Id : <229> +21:35:23 Transaction Type : REQUEST +21:35:23 Received From : +21:35:23 ============================================================================ +21:35:23 FNo. Len. Field Value +21:35:23 ============================================================================ +21:35:23 [ 1] [ 4] [0200] +21:35:23 [ 2] [ 16] [6213541000393713] +21:35:23 [ 3] [ 6] [301000] +21:35:23 [ 7] [ 10] [0320143430] +21:35:23 [ 11] [ 6] [271701] +21:35:23 [ 12] [ 6] [213430] +21:35:23 [ 13] [ 4] [0320] +21:35:23 [ 14] [ 4] [4912] +21:35:23 [ 15] [ 4] [0320] +21:35:23 [ 18] [ 4] [6011] +21:35:23 [ 19] [ 3] [418] +21:35:23 [ 22] [ 3] [021] +21:35:23 [ 25] [ 2] [01] +21:35:23 [ 32] [ 6] [180893] +21:35:23 [ 35] [ 32] [6213541000393713=491212019371271] +21:35:23 [ 37] [ 12] [507914271701] +21:35:23 [ 41] [ 8] [0141HQBR] +21:35:23 [ 42] [ 15] [999999 ] +21:35:23 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +21:35:23 [ 49] [ 3] [418] +21:35:23 [ 52] [ 16] [770CFAC6A05CBBBE] +21:35:23 ============================================================================ +21:35:23 + + +waiting on router queue for slot.... +21:35:23 Sending to : +21:35:23 ============================================================================ +21:35:23 ============================================================================ +21:35:23 Slot Id : <229> +21:35:23 Transaction Type : REQUEST +21:35:23 Received From : +21:35:23 ============================================================================ +21:35:23 FNo. Len. Field Value +21:35:23 ============================================================================ +21:35:23 [ 1] [ 4] [0200] +21:35:23 [ 2] [ 16] [6213541000393713] +21:35:23 [ 3] [ 6] [301000] +21:35:23 [ 7] [ 10] [0320143430] +21:35:23 [ 11] [ 6] [271701] +21:35:23 [ 12] [ 6] [213430] +21:35:23 [ 13] [ 4] [0320] +21:35:23 [ 14] [ 4] [4912] +21:35:23 [ 15] [ 4] [0320] +21:35:23 [ 18] [ 4] [6011] +21:35:23 [ 19] [ 3] [418] +21:35:23 [ 22] [ 3] [021] +21:35:23 [ 25] [ 2] [01] +21:35:23 [ 32] [ 6] [180893] +21:35:23 [ 35] [ 32] [6213541000393713=491212019371271] +21:35:23 [ 37] [ 12] [507914271701] +21:35:23 [ 41] [ 8] [0141HQBR] +21:35:23 [ 42] [ 15] [999999 ] +21:35:23 [ 43] [ 40] [ATM HEAD QUARTER LOCATION, Xaythany, Lao] +21:35:23 [ 49] [ 3] [418] +21:35:23 [ 52] [ 16] [C77394115B68156F] +21:35:23 ============================================================================ +21:35:23 + + +waiting on router queue for slot.... +21:35:23 Sending to : <0> +21:35:23 ============================================================================ +21:35:23 ============================================================================ +21:35:23 Slot Id : <229> +21:35:23 Transaction Type : RESPONSE +21:35:23 Received From : +21:35:23 ============================================================================ +21:35:23 FNo. Len. Field Value +21:35:23 ============================================================================ +21:35:23 [ 1] [ 4] [0210] +21:35:23 [ 2] [ 16] [6213541000393713] +21:35:23 [ 3] [ 6] [301000] +21:35:23 [ 4] [ 12] [000000000000] +21:35:23 [ 7] [ 10] [0320143430] +21:35:23 [ 11] [ 6] [271701] +21:35:23 [ 12] [ 6] [213430] +21:35:23 [ 13] [ 4] [0320] +21:35:23 [ 15] [ 4] [0320] +21:35:23 [ 18] [ 4] [6011] +21:35:23 [ 19] [ 3] [418] +21:35:23 [ 32] [ 6] [180893] +21:35:23 [ 35] [ 32] [6213541000393713=491212019371271] +21:35:23 [ 37] [ 12] [507914271701] +21:35:23 [ 38] [ 6] [797523] +21:35:23 [ 39] [ 2] [00] +21:35:23 [ 41] [ 8] [0141HQBR] +21:35:23 [ 49] [ 3] [418] +21:35:23 [ 54] [ 40] [1001418C0000057128801002418C000005712880] +21:35:23 ============================================================================ +21:35:23 Sending to : +21:35:23 ============================================================================ +21:35:23 + + +waiting on router queue for slot.... +21:35:25 ============================================================================ +21:35:25 Slot Id : <229> +21:35:25 Transaction Type : RESPONSE +21:35:25 Received From : +21:35:25 ============================================================================ +21:35:25 FNo. Len. Field Value +21:35:25 ============================================================================ +21:35:25 [ 1] [ 4] [0210] +21:35:25 [ 2] [ 16] [6213541000393713] +21:35:25 [ 3] [ 6] [301000] +21:35:25 [ 4] [ 12] [000000000000] +21:35:25 [ 7] [ 10] [0320143430] +21:35:25 [ 11] [ 6] [271701] +21:35:25 [ 12] [ 6] [213430] +21:35:25 [ 13] [ 4] [0320] +21:35:25 [ 15] [ 4] [0320] +21:35:25 [ 18] [ 4] [6011] +21:35:25 [ 19] [ 3] [418] +21:35:25 [ 32] [ 6] [180893] +21:35:25 [ 35] [ 32] [6213541000393713=491212019371271] +21:35:25 [ 37] [ 12] [507914271701] +21:35:25 [ 38] [ 6] [797523] +21:35:25 [ 39] [ 2] [00] +21:35:25 [ 41] [ 8] [0141HQBR] +21:35:25 [ 49] [ 3] [418] +21:35:25 [ 54] [ 40] [1001418C0000057128801002418C000005712880] +21:35:25 ============================================================================ +21:35:25 Calculate Source COMM Id = 2 +21:35:25 ============================================================================ +21:35:25 + + +waiting on router queue for slot.... +21:35:26 ============================================================================ +21:35:26 Slot Id : <173> +21:35:26 Transaction Type : REQUEST +21:35:26 Received From : +21:35:26 ============================================================================ +21:35:26 FNo. Len. Field Value +21:35:26 ============================================================================ +21:35:26 [ 1] [ 4] [0800] +21:35:26 [ 2] [ 5] [02531] +21:35:26 [ 3] [ 6] [579218] +21:35:26 [ 7] [ 10] [0320143526] +21:35:26 [ 11] [ 6] [807665] +21:35:26 [ 15] [ 10] [0320143526] +21:35:26 [ 37] [ 11] [57921807665] +21:35:26 [ 70] [ 3] [001] +21:35:26 ============================================================================ +21:35:26 + + +waiting on router queue for slot.... +21:35:26 ============================================================================ +21:35:26 Slot Id : <173> +21:35:26 Transaction Type : RESPONSE +21:35:26 Received From : +21:35:26 ============================================================================ +21:35:26 FNo. Len. Field Value +21:35:26 ============================================================================ +21:35:26 [ 1] [ 4] [0810] +21:35:26 [ 7] [ 10] [0320143526] +21:35:26 [ 11] [ 6] [807665] +21:35:26 [ 15] [ 4] [0320] +21:35:26 [ 37] [ 12] [57921807665] +21:35:26 [ 39] [ 2] [00] +21:35:26 [ 70] [ 3] [001] +21:35:26 ============================================================================ +21:35:26 Sending to : +21:35:26 ============================================================================ +21:35:26 + + +waiting on router queue for slot.... +21:35:26 ============================================================================ +21:35:26 Slot Id : <174> +21:35:26 Transaction Type : REQUEST +21:35:26 Received From : +21:35:26 ============================================================================ +21:35:26 FNo. Len. Field Value +21:35:26 ============================================================================ +21:35:26 [ 1] [ 4] [0800] +21:35:26 [ 7] [ 10] [0320023433] +21:35:26 [ 11] [ 6] [158515] +21:35:26 [ 70] [ 3] [301] +21:35:26 ============================================================================ +21:35:26 + + +waiting on router queue for slot.... +21:35:26 Sending to : +21:35:26 ============================================================================ +21:35:26 ============================================================================ +21:35:26 Slot Id : <174> +21:35:26 Transaction Type : RESPONSE +21:35:26 Received From : +21:35:26 ============================================================================ +21:35:26 FNo. Len. Field Value +21:35:26 ============================================================================ +21:35:26 [ 1] [ 4] [0810] +21:35:26 [ 7] [ 10] [0320023433] +21:35:26 [ 11] [ 6] [158515] +21:35:26 [ 39] [ 2] [00] +21:35:26 [ 70] [ 3] [301] +21:35:26 ============================================================================ +21:35:26 Calculate Source COMM Id = 2 +21:35:26 ============================================================================ +21:35:26 + + +waiting on router queue for slot.... +21:35:41 ============================================================================ +21:35:41 Slot Id : <246> +21:35:41 Transaction Type : REQUEST +21:35:41 Received From : +21:35:41 ============================================================================ +21:35:41 FNo. Len. Field Value +21:35:41 ============================================================================ +21:35:41 [ 1] [ 4] [0800] +21:35:41 [ 7] [ 10] [0320023449] +21:35:41 [ 11] [ 6] [158516] +21:35:41 [ 70] [ 3] [301] +21:35:41 ============================================================================ +21:35:41 + + +waiting on router queue for slot.... +21:35:41 Sending to : +21:35:41 ============================================================================ +21:35:41 ============================================================================ +21:35:41 Slot Id : <246> +21:35:41 Transaction Type : RESPONSE +21:35:41 Received From : +21:35:41 ============================================================================ +21:35:41 FNo. Len. Field Value +21:35:41 ============================================================================ +21:35:41 [ 1] [ 4] [0810] +21:35:41 [ 7] [ 10] [0320023449] +21:35:41 [ 11] [ 6] [158516] +21:35:41 [ 39] [ 2] [00] +21:35:41 [ 70] [ 3] [301] +21:35:41 ============================================================================ +21:35:41 Calculate Source COMM Id = 2 +21:35:41 ============================================================================ +21:35:41 + + +waiting on router queue for slot.... +21:35:52 ============================================================================ +21:35:52 Slot Id : <188> +21:35:52 Transaction Type : REQUEST +21:35:52 Received From : +21:35:52 ============================================================================ +21:35:52 FNo. Len. Field Value +21:35:52 ============================================================================ +21:35:52 [ 1] [ 4] [0800] +21:35:52 [ 7] [ 10] [0321044743] +21:35:52 [ 11] [ 6] [214743] +21:35:52 [ 37] [ 12] [57921214743] +21:35:52 [ 70] [ 3] [301] +21:35:52 ============================================================================ +21:35:52 + + +waiting on router queue for slot.... +21:35:52 Sending to : +21:35:52 ============================================================================ +21:35:52 ============================================================================ +21:35:52 Slot Id : <188> +21:35:52 Transaction Type : RESPONSE +21:35:52 Received From : +21:35:52 ============================================================================ +21:35:52 FNo. Len. Field Value +21:35:52 ============================================================================ +21:35:52 [ 1] [ 4] [0810] +21:35:52 [ 7] [ 10] [0321044743] +21:35:52 [ 11] [ 6] [214743] +21:35:52 [ 37] [ 12] [579212147430] +21:35:52 [ 39] [ 2] [00] +21:35:52 [ 70] [ 3] [810] +21:35:52 ============================================================================ +21:35:52 Calculate Source COMM Id = 6 +21:35:52 ============================================================================ +21:35:52 + + +waiting on router queue for slot.... +21:35:53 ============================================================================ +21:35:53 Slot Id : <235> +21:35:53 Transaction Type : REQUEST +21:35:53 Received From : +21:35:53 ============================================================================ +21:35:53 FNo. Len. Field Value +21:35:53 ============================================================================ +21:35:53 [ 1] [ 4] [0200] +21:35:53 [ 2] [ 16] [6688990040145458] +21:35:53 [ 3] [ 6] [011000] +21:35:53 [ 4] [ 12] [000005000000] +21:35:53 [ 7] [ 10] [0320213549] +21:35:53 [ 11] [ 6] [846849] +21:35:53 [ 12] [ 6] [213549] +21:35:53 [ 13] [ 4] [0320] +21:35:53 [ 15] [ 4] [0320] +21:35:53 [ 18] [ 4] [6011] +21:35:53 [ 22] [ 3] [900] +21:35:53 [ 25] [ 2] [02] +21:35:53 [ 28] [ 9] [D00002000] +21:35:53 [ 32] [ 6] [621354] +21:35:53 [ 35] [ 37] [6688990040145458=98041261652882100000] +21:35:53 [ 37] [ 12] [507905335298] +21:35:53 [ 41] [ 8] [05004700] +21:35:53 [ 42] [ 15] [NATIVE ] +21:35:53 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +21:35:53 [ 49] [ 3] [418] +21:35:53 [ 52] [ 16] [1E029173EB0D4DAB] +21:35:53 ============================================================================ +21:35:53 + + +waiting on router queue for slot.... +21:35:53 Sending to : +21:35:53 ============================================================================ +21:35:53 Sending to : +21:35:53 ============================================================================ +21:35:53 ============================================================================ +21:35:53 Slot Id : <235> +21:35:53 Transaction Type : REQUEST +21:35:53 Received From : +21:35:53 ============================================================================ +21:35:53 FNo. Len. Field Value +21:35:53 ============================================================================ +21:35:53 [ 1] [ 4] [0200] +21:35:53 [ 2] [ 16] [6688990040145458] +21:35:53 [ 3] [ 6] [011000] +21:35:53 [ 4] [ 12] [000005000000] +21:35:53 [ 7] [ 10] [0320213549] +21:35:53 [ 11] [ 6] [846849] +21:35:53 [ 12] [ 6] [213549] +21:35:53 [ 13] [ 4] [0320] +21:35:53 [ 15] [ 4] [0320] +21:35:53 [ 18] [ 4] [6011] +21:35:53 [ 22] [ 3] [900] +21:35:53 [ 25] [ 2] [02] +21:35:53 [ 28] [ 9] [D00002000] +21:35:53 [ 32] [ 6] [621354] +21:35:53 [ 35] [ 37] [6688990040145458=98041261652882100000] +21:35:53 [ 37] [ 12] [507905335298] +21:35:53 [ 41] [ 8] [05004700] +21:35:53 [ 42] [ 15] [NATIVE ] +21:35:53 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +21:35:53 [ 49] [ 3] [418] +21:35:53 [ 52] [ 16] [1E029173EB0D4DAB] +21:35:53 ============================================================================ +21:35:53 + + +waiting on router queue for slot.... +21:35:53 Sending to : +21:35:53 ============================================================================ +21:35:54 ============================================================================ +21:35:54 Slot Id : <235> +21:35:54 Transaction Type : REQUEST +21:35:54 Received From : +21:35:54 ============================================================================ +21:35:54 FNo. Len. Field Value +21:35:54 ============================================================================ +21:35:54 [ 1] [ 4] [0200] +21:35:54 [ 2] [ 16] [6688990040145458] +21:35:54 [ 3] [ 6] [011000] +21:35:54 [ 4] [ 12] [000005000000] +21:35:54 [ 7] [ 10] [0320213549] +21:35:54 [ 11] [ 6] [846849] +21:35:54 [ 12] [ 6] [213549] +21:35:54 [ 13] [ 4] [0320] +21:35:54 [ 15] [ 4] [0320] +21:35:54 [ 18] [ 4] [6011] +21:35:54 [ 22] [ 3] [900] +21:35:54 [ 25] [ 2] [02] +21:35:54 [ 28] [ 9] [D00002000] +21:35:54 [ 32] [ 6] [621354] +21:35:54 [ 35] [ 37] [6688990040145458=98041261652882100000] +21:35:54 [ 37] [ 12] [507905335298] +21:35:54 [ 41] [ 8] [05004700] +21:35:54 [ 42] [ 15] [NATIVE ] +21:35:54 [ 43] [ 40] [Numthuam Service Unit LuangphabangLAO] +21:35:54 [ 49] [ 3] [418] +21:35:54 [ 52] [ 16] [13ABA4E621531890] +21:35:54 ============================================================================ +21:35:54 + + +waiting on router queue for slot.... +21:35:54 Sending to : <4> +21:35:54 ============================================================================ +21:35:55 ============================================================================ +21:35:55 Slot Id : <235> +21:35:55 Transaction Type : RESPONSE +21:35:55 Received From : +21:35:55 ============================================================================ +21:35:55 FNo. Len. Field Value +21:35:55 ============================================================================ +21:35:55 [ 1] [ 4] [0210] +21:35:55 [ 2] [ 16] [6688990040145458] +21:35:55 [ 3] [ 6] [011000] +21:35:55 [ 4] [ 12] [000005000000] +21:35:55 [ 11] [ 6] [846849] +21:35:55 [ 12] [ 6] [213549] +21:35:55 [ 15] [ 4] [0320] +21:35:55 [ 18] [ 4] [6011] +21:35:55 [ 32] [ 6] [621354] +21:35:55 [ 35] [ 37] [6688990040145458=98041261652882100000] +21:35:55 [ 37] [ 12] [507905335298] +21:35:55 [ 38] [ 6] [635533] +21:35:55 [ 39] [ 2] [00] +21:35:55 [ 41] [ 8] [05004700] +21:35:55 [ 49] [ 3] [418] +21:35:55 [ 54] [ 20] [1002418C000003400000] +21:35:55 ============================================================================ +21:35:55 Sending to : +21:35:55 ============================================================================ +21:35:55 + + +waiting on router queue for slot.... +21:35:56 ============================================================================ +21:35:56 Slot Id : <223> +21:35:56 Transaction Type : REQUEST +21:35:56 Received From : +21:35:56 ============================================================================ +21:35:56 FNo. Len. Field Value +21:35:56 ============================================================================ +21:35:56 [ 1] [ 4] [0800] +21:35:56 [ 7] [ 10] [0320023504] +21:35:56 [ 11] [ 6] [158517] +21:35:56 [ 70] [ 3] [301] +21:35:56 ============================================================================ +21:35:56 + + +waiting on router queue for slot.... +21:35:56 Sending to : +21:35:56 ============================================================================ +21:35:56 ============================================================================ +21:35:56 Slot Id : <223> +21:35:56 Transaction Type : RESPONSE +21:35:56 Received From : +21:35:56 ============================================================================ +21:35:56 FNo. Len. Field Value +21:35:56 ============================================================================ +21:35:56 [ 1] [ 4] [0810] +21:35:56 [ 7] [ 10] [0320023504] +21:35:56 [ 11] [ 6] [158517] +21:35:56 [ 39] [ 2] [00] +21:35:56 [ 70] [ 3] [301] +21:35:56 ============================================================================ +21:35:56 Calculate Source COMM Id = 2 +21:35:56 ============================================================================ +21:35:56 + + +waiting on router queue for slot.... +21:35:57 ============================================================================ +21:35:57 Slot Id : <235> +21:35:57 Transaction Type : RESPONSE +21:35:57 Received From : +21:35:57 ============================================================================ +21:35:57 FNo. Len. Field Value +21:35:57 ============================================================================ +21:35:57 [ 1] [ 4] [0210] +21:35:57 [ 2] [ 16] [6688990040145458] +21:35:57 [ 3] [ 6] [011000] +21:35:57 [ 4] [ 12] [000005000000] +21:35:57 [ 11] [ 6] [846849] +21:35:57 [ 12] [ 6] [213549] +21:35:57 [ 15] [ 4] [0320] +21:35:57 [ 18] [ 4] [6011] +21:35:57 [ 32] [ 6] [621354] +21:35:57 [ 35] [ 37] [6688990040145458=98041261652882100000] +21:35:57 [ 37] [ 12] [507905335298] +21:35:57 [ 38] [ 6] [635533] +21:35:57 [ 39] [ 2] [00] +21:35:57 [ 41] [ 8] [05004700] +21:35:57 [ 49] [ 3] [418] +21:35:57 [ 54] [ 20] [1002418C000003400000] +21:35:57 ============================================================================ +21:35:57 Calculate Source COMM Id = 0 +21:35:57 ============================================================================ +21:35:57 + + +waiting on router queue for slot.... +21:36:07 ============================================================================ +21:36:07 Slot Id : <227> +21:36:07 Transaction Type : REQUEST +21:36:07 Received From : +21:36:07 ============================================================================ +21:36:07 FNo. Len. Field Value +21:36:07 ============================================================================ +21:36:07 [ 1] [ 4] [0800] +21:36:07 [ 7] [ 10] [0320023515] +21:36:07 [ 11] [ 6] [158518] +21:36:07 [ 70] [ 3] [301] +21:36:07 ============================================================================ +21:36:07 + + +waiting on router queue for slot.... +21:36:07 Sending to : +21:36:07 ============================================================================ +21:36:07 ============================================================================ +21:36:07 Slot Id : <227> +21:36:07 Transaction Type : RESPONSE +21:36:07 Received From : +21:36:07 ============================================================================ +21:36:07 FNo. Len. Field Value +21:36:07 ============================================================================ +21:36:07 [ 1] [ 4] [0810] +21:36:07 [ 7] [ 10] [0320023515] +21:36:07 [ 11] [ 6] [158518] +21:36:07 [ 39] [ 2] [00] +21:36:07 [ 70] [ 3] [301] +21:36:07 ============================================================================ +21:36:07 Calculate Source COMM Id = 2 +21:36:07 ============================================================================ +21:36:07 + + +waiting on router queue for slot.... +21:36:18 ============================================================================ +21:36:18 Slot Id : <244> +21:36:18 Transaction Type : REQUEST +21:36:18 Received From : +21:36:18 ============================================================================ +21:36:18 FNo. Len. Field Value +21:36:18 ============================================================================ +21:36:18 [ 1] [ 4] [0800] +21:36:18 [ 7] [ 10] [0320023526] +21:36:18 [ 11] [ 6] [158519] +21:36:18 [ 70] [ 3] [301] +21:36:18 ============================================================================ +21:36:18 + + +waiting on router queue for slot.... +21:36:18 Sending to : +21:36:18 ============================================================================ +21:36:18 ============================================================================ +21:36:18 Slot Id : <244> +21:36:18 Transaction Type : RESPONSE +21:36:18 Received From : +21:36:18 ============================================================================ +21:36:18 FNo. Len. Field Value +21:36:18 ============================================================================ +21:36:18 [ 1] [ 4] [0810] +21:36:18 [ 7] [ 10] [0320023526] +21:36:18 [ 11] [ 6] [158519] +21:36:18 [ 39] [ 2] [00] +21:36:18 [ 70] [ 3] [301] +21:36:18 ============================================================================ +21:36:18 Calculate Source COMM Id = 2 +21:36:18 ============================================================================ +21:36:18 + + +waiting on router queue for slot.... +21:36:21 ============================================================================ +21:36:21 Slot Id : <215> +21:36:21 Transaction Type : REQUEST +21:36:21 Received From : +21:36:21 ============================================================================ +21:36:21 FNo. Len. Field Value +21:36:21 ============================================================================ +21:36:21 [ 1] [ 4] [0800] +21:36:21 [ 7] [ 10] [0320143412] +21:36:21 [ 11] [ 6] [048373] +21:36:21 [ 37] [ 12] [57921048373] +21:36:21 [ 70] [ 3] [301] +21:36:21 ============================================================================ +21:36:21 + + +waiting on router queue for slot.... +21:36:21 Sending to : +21:36:21 ============================================================================ +21:36:21 ============================================================================ +21:36:21 Slot Id : <215> +21:36:21 Transaction Type : RESPONSE +21:36:21 Received From : +21:36:21 ============================================================================ +21:36:21 FNo. Len. Field Value +21:36:21 ============================================================================ +21:36:21 [ 1] [ 4] [0810] +21:36:21 [ 7] [ 10] [0320143412] +21:36:21 [ 11] [ 6] [048373] +21:36:21 [ 37] [ 12] [579210483730] +21:36:21 [ 39] [ 2] [00] +21:36:21 [ 70] [ 3] [810] +21:36:21 ============================================================================ +21:36:21 Calculate Source COMM Id = 4 +21:36:21 ============================================================================ +21:36:21 + + +waiting on router queue for slot.... +21:36:28 ============================================================================ +21:36:28 Slot Id : <251> +21:36:28 Transaction Type : REQUEST +21:36:28 Received From : +21:36:28 ============================================================================ +21:36:28 FNo. Len. Field Value +21:36:28 ============================================================================ +21:36:28 [ 1] [ 4] [0800] +21:36:28 [ 2] [ 5] [02531] +21:36:28 [ 3] [ 6] [579218] +21:36:28 [ 7] [ 10] [0320143628] +21:36:28 [ 11] [ 6] [807666] +21:36:28 [ 15] [ 10] [0320143628] +21:36:28 [ 37] [ 11] [57921807666] +21:36:28 [ 70] [ 3] [001] +21:36:28 ============================================================================ +21:36:28 + + +waiting on router queue for slot.... +21:36:28 ============================================================================ +21:36:28 Slot Id : <251> +21:36:28 Transaction Type : RESPONSE +21:36:28 Received From : +21:36:28 ============================================================================ +21:36:28 FNo. Len. Field Value +21:36:28 ============================================================================ +21:36:28 [ 1] [ 4] [0810] +21:36:28 [ 7] [ 10] [0320143628] +21:36:28 [ 11] [ 6] [807666] +21:36:28 [ 15] [ 4] [0320] +21:36:28 [ 37] [ 12] [57921807666] +21:36:28 [ 39] [ 2] [00] +21:36:28 [ 70] [ 3] [001] +21:36:28 ============================================================================ +21:36:28 Sending to : +21:36:28 ============================================================================ +21:36:28 + + +waiting on router queue for slot.... +21:36:29 ============================================================================ +21:36:29 Slot Id : <248> +21:36:29 Transaction Type : REQUEST +21:36:29 Received From : +21:36:29 ============================================================================ +21:36:29 FNo. Len. Field Value +21:36:29 ============================================================================ +21:36:29 [ 1] [ 4] [0800] +21:36:29 [ 7] [ 10] [0320023537] +21:36:29 [ 11] [ 6] [158520] +21:36:29 [ 70] [ 3] [301] +21:36:29 ============================================================================ +21:36:29 + + +waiting on router queue for slot.... +21:36:29 Sending to : +21:36:29 ============================================================================ +21:36:29 ============================================================================ +21:36:29 Slot Id : <248> +21:36:29 Transaction Type : RESPONSE +21:36:29 Received From : +21:36:29 ============================================================================ +21:36:29 FNo. Len. Field Value +21:36:29 ============================================================================ +21:36:29 [ 1] [ 4] [0810] +21:36:29 [ 7] [ 10] [0320023537] +21:36:29 [ 11] [ 6] [158520] +21:36:29 [ 39] [ 2] [00] +21:36:29 [ 70] [ 3] [301] +21:36:29 ============================================================================ +21:36:29 Calculate Source COMM Id = 2 +21:36:29 ============================================================================ +21:36:29 + + +waiting on router queue for slot.... +21:36:40 ============================================================================ +21:36:40 Slot Id : <255> +21:36:40 Transaction Type : REQUEST +21:36:40 Received From : +21:36:40 ============================================================================ +21:36:40 FNo. Len. Field Value +21:36:40 ============================================================================ +21:36:40 [ 1] [ 4] [0800] +21:36:40 [ 7] [ 10] [0320023548] +21:36:40 [ 11] [ 6] [158521] +21:36:40 [ 70] [ 3] [301] +21:36:40 ============================================================================ +21:36:40 + + +waiting on router queue for slot.... +21:36:40 Sending to : +21:36:40 ============================================================================ +21:36:40 ============================================================================ +21:36:40 Slot Id : <255> +21:36:40 Transaction Type : RESPONSE +21:36:40 Received From : +21:36:40 ============================================================================ +21:36:40 FNo. Len. Field Value +21:36:40 ============================================================================ +21:36:40 [ 1] [ 4] [0810] +21:36:40 [ 7] [ 10] [0320023548] +21:36:40 [ 11] [ 6] [158521] +21:36:40 [ 39] [ 2] [00] +21:36:40 [ 70] [ 3] [301] +21:36:40 ============================================================================ +21:36:40 Calculate Source COMM Id = 2 +21:36:40 ============================================================================ +21:36:40 + + +waiting on router queue for slot.... +21:36:55 ============================================================================ +21:36:55 Slot Id : <243> +21:36:55 Transaction Type : REQUEST +21:36:55 Received From : +21:36:55 ============================================================================ +21:36:55 FNo. Len. Field Value +21:36:55 ============================================================================ +21:36:55 [ 1] [ 4] [0200] +21:36:55 [ 2] [ 16] [6213544001408936] +21:36:55 [ 3] [ 6] [311000] +21:36:55 [ 4] [ 12] [000000000000] +21:36:55 [ 7] [ 10] [0320214442] +21:36:55 [ 11] [ 6] [167801] +21:36:55 [ 12] [ 6] [214442] +21:36:55 [ 13] [ 4] [0320] +21:36:55 [ 14] [ 4] [4912] +21:36:55 [ 15] [ 4] [0320] +21:36:55 [ 18] [ 4] [6011] +21:36:55 [ 22] [ 3] [900] +21:36:55 [ 25] [ 2] [02] +21:36:55 [ 28] [ 9] [000000000] +21:36:55 [ 32] [ 6] [220699] +21:36:55 [ 35] [ 32] [6213544001408936=491212010893879] +21:36:55 [ 37] [ 12] [507900175103] +21:36:55 [ 41] [ 8] [07000100] +21:36:55 [ 42] [ 15] [APTRA ] +21:36:55 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:36:55 [ 49] [ 3] [418] +21:36:55 [ 52] [ 16] [B63E4A101EC9B11E] +21:36:55 ============================================================================ +21:36:55 + + +waiting on router queue for slot.... +21:36:55 Sending to : +21:36:55 ============================================================================ +21:36:55 Sending to : +21:36:55 ============================================================================ +21:36:56 ============================================================================ +21:36:56 Slot Id : <243> +21:36:56 Transaction Type : REQUEST +21:36:56 Received From : +21:36:56 ============================================================================ +21:36:56 FNo. Len. Field Value +21:36:56 ============================================================================ +21:36:56 [ 1] [ 4] [0200] +21:36:56 [ 2] [ 16] [6213544001408936] +21:36:56 [ 3] [ 6] [311000] +21:36:56 [ 4] [ 12] [000000000000] +21:36:56 [ 7] [ 10] [0320214442] +21:36:56 [ 11] [ 6] [167801] +21:36:56 [ 12] [ 6] [214442] +21:36:56 [ 13] [ 4] [0320] +21:36:56 [ 14] [ 4] [4912] +21:36:56 [ 15] [ 4] [0320] +21:36:56 [ 18] [ 4] [6011] +21:36:56 [ 22] [ 3] [900] +21:36:56 [ 25] [ 2] [02] +21:36:56 [ 28] [ 9] [000000000] +21:36:56 [ 32] [ 6] [220699] +21:36:56 [ 35] [ 32] [6213544001408936=491212010893879] +21:36:56 [ 37] [ 12] [507900175103] +21:36:56 [ 41] [ 8] [07000100] +21:36:56 [ 42] [ 15] [APTRA ] +21:36:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:36:56 [ 49] [ 3] [418] +21:36:56 [ 52] [ 16] [B63E4A101EC9B11E] +21:36:56 ============================================================================ +21:36:56 + + +waiting on router queue for slot.... +21:36:56 Sending to : +21:36:56 ============================================================================ +21:36:56 ============================================================================ +21:36:56 Slot Id : <243> +21:36:56 Transaction Type : REQUEST +21:36:56 Received From : +21:36:56 ============================================================================ +21:36:56 FNo. Len. Field Value +21:36:56 ============================================================================ +21:36:56 [ 1] [ 4] [0200] +21:36:56 [ 2] [ 16] [6213544001408936] +21:36:56 [ 3] [ 6] [311000] +21:36:56 [ 4] [ 12] [000000000000] +21:36:56 [ 7] [ 10] [0320214442] +21:36:56 [ 11] [ 6] [167801] +21:36:56 [ 12] [ 6] [214442] +21:36:56 [ 13] [ 4] [0320] +21:36:56 [ 14] [ 4] [4912] +21:36:56 [ 15] [ 4] [0320] +21:36:56 [ 18] [ 4] [6011] +21:36:56 [ 22] [ 3] [900] +21:36:56 [ 25] [ 2] [02] +21:36:56 [ 28] [ 9] [000000000] +21:36:56 [ 32] [ 6] [220699] +21:36:56 [ 35] [ 32] [6213544001408936=491212010893879] +21:36:56 [ 37] [ 12] [507900175103] +21:36:56 [ 41] [ 8] [07000100] +21:36:56 [ 42] [ 15] [APTRA ] +21:36:56 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:36:56 [ 49] [ 3] [418] +21:36:56 [ 52] [ 16] [D76BEA7AC620C760] +21:36:56 ============================================================================ +21:36:56 + + +waiting on router queue for slot.... +21:36:56 Sending to : <0> +21:36:56 ============================================================================ +21:36:56 ============================================================================ +21:36:56 Slot Id : <243> +21:36:56 Transaction Type : RESPONSE +21:36:56 Received From : +21:36:56 ============================================================================ +21:36:56 FNo. Len. Field Value +21:36:56 ============================================================================ +21:36:56 [ 1] [ 4] [0210] +21:36:56 [ 2] [ 16] [6213544001408936] +21:36:56 [ 3] [ 6] [311000] +21:36:56 [ 4] [ 12] [000000000000] +21:36:56 [ 7] [ 10] [0320214442] +21:36:56 [ 11] [ 6] [167801] +21:36:56 [ 12] [ 6] [214442] +21:36:56 [ 13] [ 4] [0320] +21:36:56 [ 15] [ 4] [0320] +21:36:56 [ 18] [ 4] [6011] +21:36:56 [ 32] [ 6] [220699] +21:36:56 [ 35] [ 32] [6213544001408936=491212010893879] +21:36:56 [ 37] [ 12] [507900175103] +21:36:56 [ 38] [ 6] [642720] +21:36:56 [ 39] [ 2] [00] +21:36:56 [ 41] [ 8] [07000100] +21:36:56 [ 49] [ 3] [418] +21:36:56 [ 54] [ 40] [1001418C0000840196551002418C000084019655] +21:36:56 ============================================================================ +21:36:56 Sending to : +21:36:56 ============================================================================ +21:36:56 + + +waiting on router queue for slot.... +21:36:56 ============================================================================ +21:36:56 Slot Id : <242> +21:36:56 Transaction Type : REQUEST +21:36:56 Received From : +21:36:56 ============================================================================ +21:36:56 FNo. Len. Field Value +21:36:56 ============================================================================ +21:36:56 [ 1] [ 4] [0800] +21:36:56 [ 7] [ 10] [0320023604] +21:36:56 [ 11] [ 6] [158522] +21:36:56 [ 70] [ 3] [301] +21:36:56 ============================================================================ +21:36:56 + + +waiting on router queue for slot.... +21:36:56 Sending to : +21:36:56 ============================================================================ +21:36:56 ============================================================================ +21:36:56 Slot Id : <242> +21:36:56 Transaction Type : RESPONSE +21:36:56 Received From : +21:36:56 ============================================================================ +21:36:56 FNo. Len. Field Value +21:36:56 ============================================================================ +21:36:56 [ 1] [ 4] [0810] +21:36:56 [ 7] [ 10] [0320023604] +21:36:56 [ 11] [ 6] [158522] +21:36:56 [ 39] [ 2] [00] +21:36:56 [ 70] [ 3] [301] +21:36:56 ============================================================================ +21:36:56 Calculate Source COMM Id = 2 +21:36:56 ============================================================================ +21:36:56 + + +waiting on router queue for slot.... +21:36:57 ============================================================================ +21:36:57 Slot Id : <250> +21:36:57 Transaction Type : REQUEST +21:36:57 Received From : +21:36:57 ============================================================================ +21:36:57 FNo. Len. Field Value +21:36:57 ============================================================================ +21:36:57 [ 1] [ 4] [0800] +21:36:57 [ 7] [ 10] [0321044848] +21:36:57 [ 11] [ 6] [214848] +21:36:57 [ 37] [ 12] [57921214848] +21:36:57 [ 70] [ 3] [301] +21:36:57 ============================================================================ +21:36:57 + + +waiting on router queue for slot.... +21:36:57 Sending to : +21:36:57 ============================================================================ +21:36:57 ============================================================================ +21:36:57 Slot Id : <250> +21:36:57 Transaction Type : RESPONSE +21:36:57 Received From : +21:36:57 ============================================================================ +21:36:57 FNo. Len. Field Value +21:36:57 ============================================================================ +21:36:57 [ 1] [ 4] [0810] +21:36:57 [ 7] [ 10] [0321044848] +21:36:57 [ 11] [ 6] [214848] +21:36:57 [ 37] [ 12] [579212148480] +21:36:57 [ 39] [ 2] [00] +21:36:57 [ 70] [ 3] [810] +21:36:57 ============================================================================ +21:36:57 Calculate Source COMM Id = 6 +21:36:57 ============================================================================ +21:36:57 + + +waiting on router queue for slot.... +21:36:57 ============================================================================ +21:36:57 Slot Id : <243> +21:36:57 Transaction Type : RESPONSE +21:36:57 Received From : +21:36:57 ============================================================================ +21:36:57 FNo. Len. Field Value +21:36:57 ============================================================================ +21:36:57 [ 1] [ 4] [0210] +21:36:57 [ 2] [ 16] [6213544001408936] +21:36:57 [ 3] [ 6] [311000] +21:36:57 [ 4] [ 12] [000000000000] +21:36:57 [ 7] [ 10] [0320214442] +21:36:57 [ 11] [ 6] [167801] +21:36:57 [ 12] [ 6] [214442] +21:36:57 [ 13] [ 4] [0320] +21:36:57 [ 15] [ 4] [0320] +21:36:57 [ 18] [ 4] [6011] +21:36:57 [ 32] [ 6] [220699] +21:36:57 [ 35] [ 32] [6213544001408936=491212010893879] +21:36:57 [ 37] [ 12] [507900175103] +21:36:57 [ 38] [ 6] [642720] +21:36:57 [ 39] [ 2] [00] +21:36:57 [ 41] [ 8] [07000100] +21:36:57 [ 49] [ 3] [418] +21:36:57 [ 54] [ 40] [1001418C0000840196551002418C000084019655] +21:36:57 ============================================================================ +21:36:57 Calculate Source COMM Id = 1 +21:36:57 ============================================================================ +21:36:57 + + +waiting on router queue for slot.... +21:37:06 ============================================================================ +21:37:06 Slot Id : <226> +21:37:06 Transaction Type : REQUEST +21:37:06 Received From : +21:37:06 ============================================================================ +21:37:06 FNo. Len. Field Value +21:37:06 ============================================================================ +21:37:06 [ 1] [ 4] [0800] +21:37:06 [ 7] [ 10] [0320023615] +21:37:06 [ 11] [ 6] [158523] +21:37:06 [ 70] [ 3] [301] +21:37:06 ============================================================================ +21:37:06 + + +waiting on router queue for slot.... +21:37:06 Sending to : +21:37:06 ============================================================================ +21:37:06 ============================================================================ +21:37:06 Slot Id : <226> +21:37:06 Transaction Type : RESPONSE +21:37:06 Received From : +21:37:06 ============================================================================ +21:37:06 FNo. Len. Field Value +21:37:06 ============================================================================ +21:37:06 [ 1] [ 4] [0810] +21:37:06 [ 7] [ 10] [0320023615] +21:37:06 [ 11] [ 6] [158523] +21:37:06 [ 39] [ 2] [00] +21:37:06 [ 70] [ 3] [301] +21:37:06 ============================================================================ +21:37:06 Calculate Source COMM Id = 2 +21:37:06 ============================================================================ +21:37:06 + + +waiting on router queue for slot.... +21:37:17 ============================================================================ +21:37:17 Slot Id : <177> +21:37:17 Transaction Type : REQUEST +21:37:17 Received From : +21:37:17 ============================================================================ +21:37:17 FNo. Len. Field Value +21:37:17 ============================================================================ +21:37:17 [ 1] [ 4] [0800] +21:37:17 [ 7] [ 10] [0320023625] +21:37:17 [ 11] [ 6] [158524] +21:37:17 [ 70] [ 3] [301] +21:37:17 ============================================================================ +21:37:17 + + +waiting on router queue for slot.... +21:37:17 Sending to : +21:37:17 ============================================================================ +21:37:17 ============================================================================ +21:37:17 Slot Id : <177> +21:37:17 Transaction Type : RESPONSE +21:37:17 Received From : +21:37:17 ============================================================================ +21:37:17 FNo. Len. Field Value +21:37:17 ============================================================================ +21:37:17 [ 1] [ 4] [0810] +21:37:17 [ 7] [ 10] [0320023625] +21:37:17 [ 11] [ 6] [158524] +21:37:17 [ 39] [ 2] [00] +21:37:17 [ 70] [ 3] [301] +21:37:17 ============================================================================ +21:37:17 Calculate Source COMM Id = 2 +21:37:17 ============================================================================ +21:37:17 + + +waiting on router queue for slot.... +21:37:27 ============================================================================ +21:37:27 Slot Id : <233> +21:37:27 Transaction Type : REQUEST +21:37:27 Received From : +21:37:27 ============================================================================ +21:37:27 FNo. Len. Field Value +21:37:27 ============================================================================ +21:37:27 [ 1] [ 4] [0800] +21:37:27 [ 7] [ 10] [0320023636] +21:37:27 [ 11] [ 6] [158525] +21:37:27 [ 70] [ 3] [301] +21:37:27 ============================================================================ +21:37:27 + + +waiting on router queue for slot.... +21:37:27 Sending to : +21:37:27 ============================================================================ +21:37:27 ============================================================================ +21:37:27 Slot Id : <233> +21:37:27 Transaction Type : RESPONSE +21:37:27 Received From : +21:37:27 ============================================================================ +21:37:27 FNo. Len. Field Value +21:37:27 ============================================================================ +21:37:27 [ 1] [ 4] [0810] +21:37:27 [ 7] [ 10] [0320023636] +21:37:27 [ 11] [ 6] [158525] +21:37:27 [ 39] [ 2] [00] +21:37:27 [ 70] [ 3] [301] +21:37:27 ============================================================================ +21:37:27 Calculate Source COMM Id = 2 +21:37:27 ============================================================================ +21:37:27 + + +waiting on router queue for slot.... +21:37:30 ============================================================================ +21:37:30 Slot Id : <237> +21:37:30 Transaction Type : REQUEST +21:37:30 Received From : +21:37:30 ============================================================================ +21:37:30 FNo. Len. Field Value +21:37:30 ============================================================================ +21:37:30 [ 1] [ 4] [0800] +21:37:30 [ 2] [ 5] [02531] +21:37:30 [ 3] [ 6] [579218] +21:37:30 [ 7] [ 10] [0320143730] +21:37:30 [ 11] [ 6] [807667] +21:37:30 [ 15] [ 10] [0320143730] +21:37:30 [ 37] [ 11] [57921807667] +21:37:30 [ 70] [ 3] [001] +21:37:30 ============================================================================ +21:37:30 + + +waiting on router queue for slot.... +21:37:30 ============================================================================ +21:37:30 Slot Id : <237> +21:37:30 Transaction Type : RESPONSE +21:37:30 Received From : +21:37:30 ============================================================================ +21:37:30 FNo. Len. Field Value +21:37:30 ============================================================================ +21:37:30 [ 1] [ 4] [0810] +21:37:30 [ 7] [ 10] [0320143730] +21:37:30 [ 11] [ 6] [807667] +21:37:30 [ 15] [ 4] [0320] +21:37:30 [ 37] [ 12] [57921807667] +21:37:30 [ 39] [ 2] [00] +21:37:30 [ 70] [ 3] [001] +21:37:30 ============================================================================ +21:37:30 Sending to : +21:37:30 ============================================================================ +21:37:30 + + +waiting on router queue for slot.... +21:37:37 ============================================================================ +21:37:37 Slot Id : <253> +21:37:37 Transaction Type : REQUEST +21:37:37 Received From : +21:37:37 ============================================================================ +21:37:37 FNo. Len. Field Value +21:37:37 ============================================================================ +21:37:37 [ 1] [ 4] [0200] +21:37:37 [ 2] [ 16] [6213544001408936] +21:37:37 [ 3] [ 6] [011000] +21:37:37 [ 4] [ 12] [000030000000] +21:37:37 [ 7] [ 10] [0320214524] +21:37:37 [ 11] [ 6] [167802] +21:37:37 [ 12] [ 6] [214524] +21:37:37 [ 13] [ 4] [0320] +21:37:37 [ 14] [ 4] [4912] +21:37:37 [ 15] [ 4] [0320] +21:37:37 [ 18] [ 4] [6011] +21:37:37 [ 22] [ 3] [900] +21:37:37 [ 25] [ 2] [02] +21:37:37 [ 28] [ 9] [D00002000] +21:37:37 [ 32] [ 6] [220699] +21:37:37 [ 35] [ 32] [6213544001408936=491212010893879] +21:37:37 [ 37] [ 12] [507900175104] +21:37:37 [ 41] [ 8] [07000100] +21:37:37 [ 42] [ 15] [APTRA ] +21:37:37 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:37:37 [ 49] [ 3] [418] +21:37:37 [ 52] [ 16] [B63E4A101EC9B11E] +21:37:37 ============================================================================ +21:37:37 + + +waiting on router queue for slot.... +21:37:37 Sending to : +21:37:37 ============================================================================ +21:37:37 Sending to : +21:37:37 ============================================================================ +21:37:38 ============================================================================ +21:37:38 Slot Id : <253> +21:37:38 Transaction Type : REQUEST +21:37:38 Received From : +21:37:38 ============================================================================ +21:37:38 FNo. Len. Field Value +21:37:38 ============================================================================ +21:37:38 [ 1] [ 4] [0200] +21:37:38 [ 2] [ 16] [6213544001408936] +21:37:38 [ 3] [ 6] [011000] +21:37:38 [ 4] [ 12] [000030000000] +21:37:38 [ 7] [ 10] [0320214524] +21:37:38 [ 11] [ 6] [167802] +21:37:38 [ 12] [ 6] [214524] +21:37:38 [ 13] [ 4] [0320] +21:37:38 [ 14] [ 4] [4912] +21:37:38 [ 15] [ 4] [0320] +21:37:38 [ 18] [ 4] [6011] +21:37:38 [ 22] [ 3] [900] +21:37:38 [ 25] [ 2] [02] +21:37:38 [ 28] [ 9] [D00002000] +21:37:38 [ 32] [ 6] [220699] +21:37:38 [ 35] [ 32] [6213544001408936=491212010893879] +21:37:38 [ 37] [ 12] [507900175104] +21:37:38 [ 41] [ 8] [07000100] +21:37:38 [ 42] [ 15] [APTRA ] +21:37:38 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:37:38 [ 49] [ 3] [418] +21:37:38 [ 52] [ 16] [B63E4A101EC9B11E] +21:37:38 ============================================================================ +21:37:38 + + +waiting on router queue for slot.... +21:37:38 Sending to : +21:37:38 ============================================================================ +21:37:38 ============================================================================ +21:37:38 Slot Id : <253> +21:37:38 Transaction Type : REQUEST +21:37:38 Received From : +21:37:38 ============================================================================ +21:37:38 FNo. Len. Field Value +21:37:38 ============================================================================ +21:37:38 [ 1] [ 4] [0200] +21:37:38 [ 2] [ 16] [6213544001408936] +21:37:38 [ 3] [ 6] [011000] +21:37:38 [ 4] [ 12] [000030000000] +21:37:38 [ 7] [ 10] [0320214524] +21:37:38 [ 11] [ 6] [167802] +21:37:38 [ 12] [ 6] [214524] +21:37:38 [ 13] [ 4] [0320] +21:37:38 [ 14] [ 4] [4912] +21:37:38 [ 15] [ 4] [0320] +21:37:38 [ 18] [ 4] [6011] +21:37:38 [ 22] [ 3] [900] +21:37:38 [ 25] [ 2] [02] +21:37:38 [ 28] [ 9] [D00002000] +21:37:38 [ 32] [ 6] [220699] +21:37:38 [ 35] [ 32] [6213544001408936=491212010893879] +21:37:38 [ 37] [ 12] [507900175104] +21:37:38 [ 41] [ 8] [07000100] +21:37:38 [ 42] [ 15] [APTRA ] +21:37:38 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +21:37:38 [ 49] [ 3] [418] +21:37:38 [ 52] [ 16] [D76BEA7AC620C760] +21:37:38 ============================================================================ +21:37:38 + + +waiting on router queue for slot.... +21:37:38 Sending to : <0> +21:37:38 ============================================================================ +21:37:38 ============================================================================ +21:37:38 Slot Id : <260> +21:37:38 Transaction Type : REQUEST +21:37:38 Received From : +21:37:38 ============================================================================ +21:37:38 FNo. Len. Field Value +21:37:38 ============================================================================ +21:37:38 [ 1] [ 4] [0800] +21:37:38 [ 7] [ 10] [0320023646] +21:37:38 [ 11] [ 6] [158526] +21:37:38 [ 70] [ 3] [301] +21:37:38 ============================================================================ +21:37:38 + + +waiting on router queue for slot.... +21:37:38 Sending to : +21:37:38 ============================================================================ +21:37:38 ============================================================================ +21:37:38 Slot Id : <260> +21:37:38 Transaction Type : RESPONSE +21:37:38 Received From : +21:37:38 ============================================================================ +21:37:38 FNo. Len. Field Value +21:37:38 ============================================================================ +21:37:38 [ 1] [ 4] [0810] +21:37:38 [ 7] [ 10] [0320023646] +21:37:38 [ 11] [ 6] [158526] +21:37:38 [ 39] [ 2] [00] +21:37:38 [ 70] [ 3] [301] +21:37:38 ============================================================================ +21:37:38 Calculate Source COMM Id = 2 +21:37:38 ============================================================================ +21:37:38 + + +waiting on router queue for slot.... +21:37:38 ============================================================================ +21:37:38 Slot Id : <253> +21:37:38 Transaction Type : RESPONSE +21:37:38 Received From : +21:37:38 ============================================================================ +21:37:38 FNo. Len. Field Value +21:37:38 ============================================================================ +21:37:38 [ 1] [ 4] [0210] +21:37:38 [ 2] [ 16] [6213544001408936] +21:37:38 [ 3] [ 6] [011000] +21:37:38 [ 4] [ 12] [000030000000] +21:37:38 [ 7] [ 10] [0320214524] +21:37:38 [ 11] [ 6] [167802] +21:37:38 [ 12] [ 6] [214524] +21:37:38 [ 13] [ 4] [0320] +21:37:38 [ 15] [ 4] [0320] +21:37:38 [ 18] [ 4] [6011] +21:37:38 [ 32] [ 6] [220699] +21:37:38 [ 35] [ 32] [6213544001408936=491212010893879] +21:37:38 [ 37] [ 12] [507900175104] +21:37:38 [ 38] [ 6] [466764] +21:37:38 [ 39] [ 2] [00] +21:37:38 [ 41] [ 8] [07000100] +21:37:38 [ 49] [ 3] [418] +21:37:38 [ 54] [ 40] [1001418C0000840196551002418C000053819655] +21:37:38 ============================================================================ +21:37:38 Sending to : +21:37:38 ============================================================================ +21:37:38 + + +waiting on router queue for slot.... +21:37:40 ============================================================================ +21:37:40 Slot Id : <253> +21:37:40 Transaction Type : RESPONSE +21:37:40 Received From : +21:37:40 ============================================================================ +21:37:40 FNo. Len. Field Value +21:37:40 ============================================================================ +21:37:40 [ 1] [ 4] [0210] +21:37:40 [ 2] [ 16] [6213544001408936] +21:37:40 [ 3] [ 6] [011000] +21:37:40 [ 4] [ 12] [000030000000] +21:37:40 [ 7] [ 10] [0320214524] +21:37:40 [ 11] [ 6] [167802] +21:37:40 [ 12] [ 6] [214524] +21:37:40 [ 13] [ 4] [0320] +21:37:40 [ 15] [ 4] [0320] +21:37:40 [ 18] [ 4] [6011] +21:37:40 [ 32] [ 6] [220699] +21:37:40 [ 35] [ 32] [6213544001408936=491212010893879] +21:37:40 [ 37] [ 12] [507900175104] +21:37:40 [ 38] [ 6] [466764] +21:37:40 [ 39] [ 2] [00] +21:37:40 [ 41] [ 8] [07000100] +21:37:40 [ 49] [ 3] [418] +21:37:40 [ 54] [ 40] [1001418C0000840196551002418C000053819655] +21:37:40 ============================================================================ +21:37:40 Calculate Source COMM Id = 1 +21:37:40 ============================================================================ +21:37:40 + + +waiting on router queue for slot.... +21:37:49 ============================================================================ +21:37:49 Slot Id : <234> +21:37:49 Transaction Type : REQUEST +21:37:49 Received From : +21:37:49 ============================================================================ +21:37:49 FNo. Len. Field Value +21:37:49 ============================================================================ +21:37:49 [ 1] [ 4] [0800] +21:37:49 [ 7] [ 10] [0320023657] +21:37:49 [ 11] [ 6] [158527] +21:37:49 [ 70] [ 3] [301] +21:37:49 ============================================================================ +21:37:49 + + +waiting on router queue for slot.... +21:37:49 Sending to : +21:37:49 ============================================================================ +21:37:49 ============================================================================ +21:37:49 Slot Id : <234> +21:37:49 Transaction Type : RESPONSE +21:37:49 Received From : +21:37:49 ============================================================================ +21:37:49 FNo. Len. Field Value +21:37:49 ============================================================================ +21:37:49 [ 1] [ 4] [0810] +21:37:49 [ 7] [ 10] [0320023657] +21:37:49 [ 11] [ 6] [158527] +21:37:49 [ 39] [ 2] [00] +21:37:49 [ 70] [ 3] [301] +21:37:49 ============================================================================ +21:37:49 Calculate Source COMM Id = 2 +21:37:49 ============================================================================ +21:37:49 + + +waiting on router queue for slot.... +21:38:00 ============================================================================ +21:38:00 Slot Id : <238> +21:38:00 Transaction Type : REQUEST +21:38:00 Received From : +21:38:00 ============================================================================ +21:38:00 FNo. Len. Field Value +21:38:00 ============================================================================ +21:38:00 [ 1] [ 4] [0800] +21:38:00 [ 7] [ 10] [0320023708] +21:38:00 [ 11] [ 6] [158528] +21:38:00 [ 70] [ 3] [301] +21:38:00 ============================================================================ +21:38:00 + + +waiting on router queue for slot.... +21:38:00 Sending to : +21:38:00 ============================================================================ +21:38:00 ============================================================================ +21:38:00 Slot Id : <238> +21:38:00 Transaction Type : RESPONSE +21:38:00 Received From : +21:38:00 ============================================================================ +21:38:00 FNo. Len. Field Value +21:38:00 ============================================================================ +21:38:00 [ 1] [ 4] [0810] +21:38:00 [ 7] [ 10] [0320023708] +21:38:00 [ 11] [ 6] [158528] +21:38:00 [ 39] [ 2] [00] +21:38:00 [ 70] [ 3] [301] +21:38:00 ============================================================================ +21:38:00 Calculate Source COMM Id = 2 +21:38:00 ============================================================================ +21:38:00 + + +waiting on router queue for slot.... +21:38:02 ============================================================================ +21:38:02 Slot Id : <200> +21:38:02 Transaction Type : REQUEST +21:38:02 Received From : +21:38:02 ============================================================================ +21:38:02 FNo. Len. Field Value +21:38:02 ============================================================================ +21:38:02 [ 1] [ 4] [0800] +21:38:02 [ 7] [ 10] [0321044953] +21:38:02 [ 11] [ 6] [214953] +21:38:02 [ 37] [ 12] [57921214953] +21:38:02 [ 70] [ 3] [301] +21:38:02 ============================================================================ +21:38:02 + + +waiting on router queue for slot.... +21:38:02 Sending to : +21:38:02 ============================================================================ +21:38:02 ============================================================================ +21:38:02 Slot Id : <200> +21:38:02 Transaction Type : RESPONSE +21:38:02 Received From : +21:38:02 ============================================================================ +21:38:02 FNo. Len. Field Value +21:38:02 ============================================================================ +21:38:02 [ 1] [ 4] [0810] +21:38:02 [ 7] [ 10] [0321044953] +21:38:02 [ 11] [ 6] [214953] +21:38:02 [ 37] [ 12] [579212149530] +21:38:02 [ 39] [ 2] [00] +21:38:02 [ 70] [ 3] [810] +21:38:02 ============================================================================ +21:38:02 Calculate Source COMM Id = 6 +21:38:02 ============================================================================ +21:38:02 + + +waiting on router queue for slot.... +21:38:10 ============================================================================ +21:38:10 Slot Id : <216> +21:38:10 Transaction Type : REQUEST +21:38:10 Received From : +21:38:10 ============================================================================ +21:38:10 FNo. Len. Field Value +21:38:10 ============================================================================ +21:38:10 [ 1] [ 4] [0800] +21:38:10 [ 7] [ 10] [0320023719] +21:38:10 [ 11] [ 6] [158529] +21:38:10 [ 70] [ 3] [301] +21:38:10 ============================================================================ +21:38:10 + + +waiting on router queue for slot.... +21:38:10 Sending to : +21:38:10 ============================================================================ +21:38:10 ============================================================================ +21:38:10 Slot Id : <216> +21:38:10 Transaction Type : RESPONSE +21:38:10 Received From : +21:38:10 ============================================================================ +21:38:10 FNo. Len. Field Value +21:38:10 ============================================================================ +21:38:10 [ 1] [ 4] [0810] +21:38:10 [ 7] [ 10] [0320023719] +21:38:10 [ 11] [ 6] [158529] +21:38:10 [ 39] [ 2] [00] +21:38:10 [ 70] [ 3] [301] +21:38:10 ============================================================================ +21:38:10 Calculate Source COMM Id = 2 +21:38:10 ============================================================================ +21:38:10 + + +waiting on router queue for slot.... +21:38:21 ============================================================================ +21:38:21 Slot Id : <259> +21:38:21 Transaction Type : REQUEST +21:38:21 Received From : +21:38:21 ============================================================================ +21:38:21 FNo. Len. Field Value +21:38:21 ============================================================================ +21:38:21 [ 1] [ 4] [0800] +21:38:21 [ 7] [ 10] [0320023730] +21:38:21 [ 11] [ 6] [158530] +21:38:21 [ 70] [ 3] [301] +21:38:21 ============================================================================ +21:38:21 + + +waiting on router queue for slot.... +21:38:21 Sending to : +21:38:21 ============================================================================ +21:38:21 ============================================================================ +21:38:21 Slot Id : <259> +21:38:21 Transaction Type : RESPONSE +21:38:21 Received From : +21:38:21 ============================================================================ +21:38:21 FNo. Len. Field Value +21:38:21 ============================================================================ +21:38:21 [ 1] [ 4] [0810] +21:38:21 [ 7] [ 10] [0320023730] +21:38:21 [ 11] [ 6] [158530] +21:38:21 [ 39] [ 2] [00] +21:38:21 [ 70] [ 3] [301] +21:38:21 ============================================================================ +21:38:21 Calculate Source COMM Id = 2 +21:38:21 ============================================================================ +21:38:21 + + +waiting on router queue for slot.... +21:38:32 ============================================================================ +21:38:32 Slot Id : <249> +21:38:32 Transaction Type : REQUEST +21:38:32 Received From : +21:38:32 ============================================================================ +21:38:32 FNo. Len. Field Value +21:38:32 ============================================================================ +21:38:32 [ 1] [ 4] [0800] +21:38:32 [ 2] [ 5] [02531] +21:38:32 [ 3] [ 6] [579218] +21:38:32 [ 7] [ 10] [0320143832] +21:38:32 [ 11] [ 6] [807668] +21:38:32 [ 15] [ 10] [0320143832] +21:38:32 [ 37] [ 11] [57921807668] +21:38:32 [ 70] [ 3] [001] +21:38:32 ============================================================================ +21:38:32 + + +waiting on router queue for slot.... +21:38:32 ============================================================================ +21:38:32 Slot Id : <249> +21:38:32 Transaction Type : RESPONSE +21:38:32 Received From : +21:38:32 ============================================================================ +21:38:32 FNo. Len. Field Value +21:38:32 ============================================================================ +21:38:32 [ 1] [ 4] [0810] +21:38:32 [ 7] [ 10] [0320143832] +21:38:32 [ 11] [ 6] [807668] +21:38:32 [ 15] [ 4] [0320] +21:38:32 [ 37] [ 12] [57921807668] +21:38:32 [ 39] [ 2] [00] +21:38:32 [ 70] [ 3] [001] +21:38:32 ============================================================================ +21:38:32 Sending to : +21:38:32 ============================================================================ +21:38:32 + + +waiting on router queue for slot.... +21:38:32 ============================================================================ +21:38:32 Slot Id : <210> +21:38:32 Transaction Type : REQUEST +21:38:32 Received From : +21:38:32 ============================================================================ +21:38:32 FNo. Len. Field Value +21:38:32 ============================================================================ +21:38:32 [ 1] [ 4] [0800] +21:38:32 [ 7] [ 10] [0320023740] +21:38:32 [ 11] [ 6] [158531] +21:38:32 [ 70] [ 3] [301] +21:38:32 ============================================================================ +21:38:32 + + +waiting on router queue for slot.... +21:38:32 Sending to : +21:38:32 ============================================================================ +21:38:32 ============================================================================ +21:38:32 Slot Id : <210> +21:38:32 Transaction Type : RESPONSE +21:38:32 Received From : +21:38:32 ============================================================================ +21:38:32 FNo. Len. Field Value +21:38:32 ============================================================================ +21:38:32 [ 1] [ 4] [0810] +21:38:32 [ 7] [ 10] [0320023740] +21:38:32 [ 11] [ 6] [158531] +21:38:32 [ 39] [ 2] [00] +21:38:32 [ 70] [ 3] [301] +21:38:32 ============================================================================ +21:38:32 Calculate Source COMM Id = 2 +21:38:32 ============================================================================ +21:38:32 + + +waiting on router queue for slot.... +21:38:43 ============================================================================ +21:38:43 Slot Id : <263> +21:38:43 Transaction Type : REQUEST +21:38:43 Received From : +21:38:43 ============================================================================ +21:38:43 FNo. Len. Field Value +21:38:43 ============================================================================ +21:38:43 [ 1] [ 4] [0800] +21:38:43 [ 7] [ 10] [0320023751] +21:38:43 [ 11] [ 6] [158532] +21:38:43 [ 70] [ 3] [301] +21:38:43 ============================================================================ +21:38:43 + + +waiting on router queue for slot.... +21:38:43 Sending to : +21:38:43 ============================================================================ +21:38:43 ============================================================================ +21:38:43 Slot Id : <263> +21:38:43 Transaction Type : RESPONSE +21:38:43 Received From : +21:38:43 ============================================================================ +21:38:43 FNo. Len. Field Value +21:38:43 ============================================================================ +21:38:43 [ 1] [ 4] [0810] +21:38:43 [ 7] [ 10] [0320023751] +21:38:43 [ 11] [ 6] [158532] +21:38:43 [ 39] [ 2] [00] +21:38:43 [ 70] [ 3] [301] +21:38:43 ============================================================================ +21:38:43 Calculate Source COMM Id = 2 +21:38:43 ============================================================================ +21:38:43 + + +waiting on router queue for slot.... +21:38:58 ============================================================================ +21:38:58 Slot Id : <261> +21:38:58 Transaction Type : REQUEST +21:38:58 Received From : +21:38:58 ============================================================================ +21:38:58 FNo. Len. Field Value +21:38:58 ============================================================================ +21:38:58 [ 1] [ 4] [0800] +21:38:58 [ 7] [ 10] [0320023806] +21:38:58 [ 11] [ 6] [158533] +21:38:58 [ 70] [ 3] [301] +21:38:58 ============================================================================ +21:38:58 + + +waiting on router queue for slot.... +21:38:58 Sending to : +21:38:58 ============================================================================ +21:38:58 ============================================================================ +21:38:58 Slot Id : <261> +21:38:58 Transaction Type : RESPONSE +21:38:58 Received From : +21:38:58 ============================================================================ +21:38:58 FNo. Len. Field Value +21:38:58 ============================================================================ +21:38:58 [ 1] [ 4] [0810] +21:38:58 [ 7] [ 10] [0320023806] +21:38:58 [ 11] [ 6] [158533] +21:38:58 [ 39] [ 2] [00] +21:38:58 [ 70] [ 3] [301] +21:38:58 ============================================================================ +21:38:58 Calculate Source COMM Id = 2 +21:38:58 ============================================================================ +21:38:58 + + +waiting on router queue for slot.... +21:39:07 ============================================================================ +21:39:07 Slot Id : <225> +21:39:07 Transaction Type : REQUEST +21:39:07 Received From : +21:39:07 ============================================================================ +21:39:07 FNo. Len. Field Value +21:39:07 ============================================================================ +21:39:07 [ 1] [ 4] [0800] +21:39:07 [ 7] [ 10] [0321045058] +21:39:07 [ 11] [ 6] [215058] +21:39:07 [ 37] [ 12] [57921215058] +21:39:07 [ 70] [ 3] [301] +21:39:07 ============================================================================ +21:39:07 + + +waiting on router queue for slot.... +21:39:07 Sending to : +21:39:07 ============================================================================ +21:39:07 ============================================================================ +21:39:07 Slot Id : <225> +21:39:07 Transaction Type : RESPONSE +21:39:07 Received From : +21:39:07 ============================================================================ +21:39:07 FNo. Len. Field Value +21:39:07 ============================================================================ +21:39:07 [ 1] [ 4] [0810] +21:39:07 [ 7] [ 10] [0321045058] +21:39:07 [ 11] [ 6] [215058] +21:39:07 [ 37] [ 12] [579212150580] +21:39:07 [ 39] [ 2] [00] +21:39:07 [ 70] [ 3] [810] +21:39:07 ============================================================================ +21:39:07 Calculate Source COMM Id = 6 +21:39:07 ============================================================================ +21:39:07 + + +waiting on router queue for slot.... +21:39:08 ============================================================================ +21:39:08 Slot Id : <269> +21:39:08 Transaction Type : REQUEST +21:39:08 Received From : +21:39:08 ============================================================================ +21:39:08 FNo. Len. Field Value +21:39:08 ============================================================================ +21:39:08 [ 1] [ 4] [0800] +21:39:08 [ 7] [ 10] [0320213856] +21:39:08 [ 11] [ 6] [014846] +21:39:08 [ 37] [ 12] [507921014846] +21:39:08 [ 70] [ 3] [ ] +21:39:08 ============================================================================ +21:39:08 + + +waiting on router queue for slot.... +21:39:08 Sending to : +21:39:08 ============================================================================ +21:39:08 ============================================================================ +21:39:08 Slot Id : <269> +21:39:08 Transaction Type : RESPONSE +21:39:08 Received From : +21:39:08 ============================================================================ +21:39:08 FNo. Len. Field Value +21:39:08 ============================================================================ +21:39:08 [ 1] [ 4] [0810] +21:39:08 [ 7] [ 10] [0320213856] +21:39:08 [ 11] [ 6] [014846] +21:39:08 [ 37] [ 12] [507921014846] +21:39:08 [ 39] [ 2] [91] +21:39:08 [ 70] [ 3] [ ] +21:39:08 ============================================================================ +21:39:08 Calculate Source COMM Id = 3 +21:39:08 ============================================================================ +21:39:08 + + +waiting on router queue for slot.... +21:39:09 ============================================================================ +21:39:09 Slot Id : <199> +21:39:09 Transaction Type : REQUEST +21:39:09 Received From : +21:39:09 ============================================================================ +21:39:09 FNo. Len. Field Value +21:39:09 ============================================================================ +21:39:09 [ 1] [ 4] [0800] +21:39:09 [ 7] [ 10] [0320023817] +21:39:09 [ 11] [ 6] [158534] +21:39:09 [ 70] [ 3] [301] +21:39:09 ============================================================================ +21:39:09 + + +waiting on router queue for slot.... +21:39:09 Sending to : +21:39:09 ============================================================================ +21:39:09 ============================================================================ +21:39:09 Slot Id : <199> +21:39:09 Transaction Type : RESPONSE +21:39:09 Received From : +21:39:09 ============================================================================ +21:39:09 FNo. Len. Field Value +21:39:09 ============================================================================ +21:39:09 [ 1] [ 4] [0810] +21:39:09 [ 7] [ 10] [0320023817] +21:39:09 [ 11] [ 6] [158534] +21:39:09 [ 39] [ 2] [00] +21:39:09 [ 70] [ 3] [301] +21:39:09 ============================================================================ +21:39:09 Calculate Source COMM Id = 2 +21:39:09 ============================================================================ +21:39:09 + + +waiting on router queue for slot.... +21:39:19 ============================================================================ +21:39:19 Slot Id : <240> +21:39:19 Transaction Type : REQUEST +21:39:19 Received From : +21:39:19 ============================================================================ +21:39:19 FNo. Len. Field Value +21:39:19 ============================================================================ +21:39:19 [ 1] [ 4] [0800] +21:39:19 [ 7] [ 10] [0320023828] +21:39:19 [ 11] [ 6] [158535] +21:39:19 [ 70] [ 3] [301] +21:39:19 ============================================================================ +21:39:19 + + +waiting on router queue for slot.... +21:39:19 Sending to : +21:39:19 ============================================================================ +21:39:19 ============================================================================ +21:39:19 Slot Id : <240> +21:39:19 Transaction Type : RESPONSE +21:39:19 Received From : +21:39:19 ============================================================================ +21:39:19 FNo. Len. Field Value +21:39:19 ============================================================================ +21:39:19 [ 1] [ 4] [0810] +21:39:19 [ 7] [ 10] [0320023828] +21:39:19 [ 11] [ 6] [158535] +21:39:19 [ 39] [ 2] [00] +21:39:19 [ 70] [ 3] [301] +21:39:19 ============================================================================ +21:39:19 Calculate Source COMM Id = 2 +21:39:19 ============================================================================ +21:39:19 + + +waiting on router queue for slot.... +21:39:30 ============================================================================ +21:39:30 Slot Id : <270> +21:39:30 Transaction Type : REQUEST +21:39:30 Received From : +21:39:30 ============================================================================ +21:39:30 FNo. Len. Field Value +21:39:30 ============================================================================ +21:39:30 [ 1] [ 4] [0800] +21:39:30 [ 7] [ 10] [0320023839] +21:39:30 [ 11] [ 6] [158536] +21:39:30 [ 70] [ 3] [301] +21:39:30 ============================================================================ +21:39:30 + + +waiting on router queue for slot.... +21:39:30 Sending to : +21:39:30 ============================================================================ +21:39:30 ============================================================================ +21:39:30 Slot Id : <270> +21:39:30 Transaction Type : RESPONSE +21:39:30 Received From : +21:39:30 ============================================================================ +21:39:30 FNo. Len. Field Value +21:39:30 ============================================================================ +21:39:30 [ 1] [ 4] [0810] +21:39:30 [ 7] [ 10] [0320023839] +21:39:30 [ 11] [ 6] [158536] +21:39:30 [ 39] [ 2] [00] +21:39:30 [ 70] [ 3] [301] +21:39:30 ============================================================================ +21:39:30 Calculate Source COMM Id = 2 +21:39:30 ============================================================================ +21:39:30 + + +waiting on router queue for slot.... +21:39:34 ============================================================================ +21:39:34 Slot Id : <275> +21:39:34 Transaction Type : REQUEST +21:39:34 Received From : +21:39:34 ============================================================================ +21:39:34 FNo. Len. Field Value +21:39:34 ============================================================================ +21:39:34 [ 1] [ 4] [0800] +21:39:34 [ 2] [ 5] [02531] +21:39:34 [ 3] [ 6] [579218] +21:39:34 [ 7] [ 10] [0320143934] +21:39:34 [ 11] [ 6] [807669] +21:39:34 [ 15] [ 10] [0320143934] +21:39:34 [ 37] [ 11] [57921807669] +21:39:34 [ 70] [ 3] [001] +21:39:34 ============================================================================ +21:39:34 + + +waiting on router queue for slot.... +21:39:34 ============================================================================ +21:39:34 Slot Id : <275> +21:39:34 Transaction Type : RESPONSE +21:39:34 Received From : +21:39:34 ============================================================================ +21:39:34 FNo. Len. Field Value +21:39:34 ============================================================================ +21:39:34 [ 1] [ 4] [0810] +21:39:34 [ 7] [ 10] [0320143934] +21:39:34 [ 11] [ 6] [807669] +21:39:34 [ 15] [ 4] [0320] +21:39:34 [ 37] [ 12] [57921807669] +21:39:34 [ 39] [ 2] [00] +21:39:34 [ 70] [ 3] [001] +21:39:34 ============================================================================ +21:39:34 Sending to : +21:39:34 ============================================================================ +21:39:34 + + +waiting on router queue for slot.... +21:39:41 ============================================================================ +21:39:41 Slot Id : <197> +21:39:41 Transaction Type : REQUEST +21:39:41 Received From : +21:39:41 ============================================================================ +21:39:41 FNo. Len. Field Value +21:39:41 ============================================================================ +21:39:41 [ 1] [ 4] [0800] +21:39:41 [ 7] [ 10] [0320023850] +21:39:41 [ 11] [ 6] [158537] +21:39:41 [ 70] [ 3] [301] +21:39:41 ============================================================================ +21:39:41 + + +waiting on router queue for slot.... +21:39:41 Sending to : +21:39:41 ============================================================================ +21:39:41 ============================================================================ +21:39:41 Slot Id : <197> +21:39:41 Transaction Type : RESPONSE +21:39:41 Received From : +21:39:41 ============================================================================ +21:39:41 FNo. Len. Field Value +21:39:41 ============================================================================ +21:39:41 [ 1] [ 4] [0810] +21:39:41 [ 7] [ 10] [0320023850] +21:39:41 [ 11] [ 6] [158537] +21:39:41 [ 39] [ 2] [00] +21:39:41 [ 70] [ 3] [301] +21:39:41 ============================================================================ +21:39:41 Calculate Source COMM Id = 2 +21:39:41 ============================================================================ +21:39:41 + + +waiting on router queue for slot.... +21:39:55 ============================================================================ +21:39:55 Slot Id : <265> +21:39:55 Transaction Type : REQUEST +21:39:55 Received From : +21:39:55 ============================================================================ +21:39:55 FNo. Len. Field Value +21:39:55 ============================================================================ +21:39:55 [ 1] [ 4] [0800] +21:39:55 [ 7] [ 10] [0320144742] +21:39:55 [ 11] [ 6] [086201] +21:39:55 [ 37] [ 12] [57921086201] +21:39:55 [ 70] [ 3] [301] +21:39:55 ============================================================================ +21:39:55 + + +waiting on router queue for slot.... +21:39:55 Sending to : +21:39:55 ============================================================================ +21:39:55 ============================================================================ +21:39:55 Slot Id : <265> +21:39:55 Transaction Type : RESPONSE +21:39:55 Received From : +21:39:55 ============================================================================ +21:39:55 FNo. Len. Field Value +21:39:55 ============================================================================ +21:39:55 [ 1] [ 4] [0810] +21:39:55 [ 7] [ 10] [0320144742] +21:39:55 [ 11] [ 6] [086201] +21:39:55 [ 37] [ 12] [579210862010] +21:39:55 [ 39] [ 2] [00] +21:39:55 [ 70] [ 3] [810] +21:39:55 ============================================================================ +21:39:55 Calculate Source COMM Id = 1 +21:39:55 ============================================================================ +21:39:55 + + +waiting on router queue for slot.... +21:39:57 ============================================================================ +21:39:57 Slot Id : <218> +21:39:57 Transaction Type : REQUEST +21:39:57 Received From : +21:39:57 ============================================================================ +21:39:57 FNo. Len. Field Value +21:39:57 ============================================================================ +21:39:57 [ 1] [ 4] [0800] +21:39:57 [ 7] [ 10] [0320023906] +21:39:57 [ 11] [ 6] [158538] +21:39:57 [ 70] [ 3] [301] +21:39:57 ============================================================================ +21:39:57 + + +waiting on router queue for slot.... +21:39:57 Sending to : +21:39:57 ============================================================================ +21:39:57 ============================================================================ +21:39:57 Slot Id : <218> +21:39:57 Transaction Type : RESPONSE +21:39:57 Received From : +21:39:57 ============================================================================ +21:39:57 FNo. Len. Field Value +21:39:57 ============================================================================ +21:39:57 [ 1] [ 4] [0810] +21:39:57 [ 7] [ 10] [0320023906] +21:39:57 [ 11] [ 6] [158538] +21:39:57 [ 39] [ 2] [00] +21:39:57 [ 70] [ 3] [301] +21:39:57 ============================================================================ +21:39:57 Calculate Source COMM Id = 2 +21:39:57 ============================================================================ +21:39:57 + + +waiting on router queue for slot.... +21:40:09 ============================================================================ +21:40:09 Slot Id : <247> +21:40:09 Transaction Type : REQUEST +21:40:09 Received From : +21:40:09 ============================================================================ +21:40:09 FNo. Len. Field Value +21:40:09 ============================================================================ +21:40:09 [ 1] [ 4] [0800] +21:40:09 [ 7] [ 10] [0320023918] +21:40:09 [ 11] [ 6] [158539] +21:40:09 [ 70] [ 3] [301] +21:40:09 ============================================================================ +21:40:09 + + +waiting on router queue for slot.... +21:40:09 Sending to : +21:40:09 ============================================================================ +21:40:09 ============================================================================ +21:40:09 Slot Id : <247> +21:40:09 Transaction Type : RESPONSE +21:40:09 Received From : +21:40:09 ============================================================================ +21:40:09 FNo. Len. Field Value +21:40:09 ============================================================================ +21:40:09 [ 1] [ 4] [0810] +21:40:09 [ 7] [ 10] [0320023918] +21:40:09 [ 11] [ 6] [158539] +21:40:09 [ 39] [ 2] [00] +21:40:09 [ 70] [ 3] [301] +21:40:09 ============================================================================ +21:40:09 Calculate Source COMM Id = 2 +21:40:09 ============================================================================ +21:40:09 + + +waiting on router queue for slot.... +21:40:12 ============================================================================ +21:40:12 Slot Id : <256> +21:40:12 Transaction Type : REQUEST +21:40:12 Received From : +21:40:12 ============================================================================ +21:40:12 FNo. Len. Field Value +21:40:12 ============================================================================ +21:40:12 [ 1] [ 4] [0800] +21:40:12 [ 7] [ 10] [0321045203] +21:40:12 [ 11] [ 6] [215203] +21:40:12 [ 37] [ 12] [57921215203] +21:40:12 [ 70] [ 3] [301] +21:40:12 ============================================================================ +21:40:12 + + +waiting on router queue for slot.... +21:40:12 Sending to : +21:40:12 ============================================================================ +21:40:12 ============================================================================ +21:40:12 Slot Id : <256> +21:40:12 Transaction Type : RESPONSE +21:40:12 Received From : +21:40:12 ============================================================================ +21:40:12 FNo. Len. Field Value +21:40:12 ============================================================================ +21:40:12 [ 1] [ 4] [0810] +21:40:12 [ 7] [ 10] [0321045203] +21:40:12 [ 11] [ 6] [215203] +21:40:12 [ 37] [ 12] [579212152030] +21:40:12 [ 39] [ 2] [00] +21:40:12 [ 70] [ 3] [810] +21:40:12 ============================================================================ +21:40:12 Calculate Source COMM Id = 6 +21:40:12 ============================================================================ +21:40:12 + + +waiting on router queue for slot.... +21:40:24 ============================================================================ +21:40:24 Slot Id : <274> +21:40:24 Transaction Type : REQUEST +21:40:24 Received From : +21:40:24 ============================================================================ +21:40:24 FNo. Len. Field Value +21:40:24 ============================================================================ +21:40:24 [ 1] [ 4] [0800] +21:40:24 [ 7] [ 10] [0320023933] +21:40:24 [ 11] [ 6] [158540] +21:40:24 [ 70] [ 3] [301] +21:40:24 ============================================================================ +21:40:24 + + +waiting on router queue for slot.... +21:40:24 Sending to : +21:40:24 ============================================================================ +21:40:24 ============================================================================ +21:40:24 Slot Id : <274> +21:40:24 Transaction Type : RESPONSE +21:40:24 Received From : +21:40:24 ============================================================================ +21:40:24 FNo. Len. Field Value +21:40:24 ============================================================================ +21:40:24 [ 1] [ 4] [0810] +21:40:24 [ 7] [ 10] [0320023933] +21:40:24 [ 11] [ 6] [158540] +21:40:24 [ 39] [ 2] [00] +21:40:24 [ 70] [ 3] [301] +21:40:24 ============================================================================ +21:40:24 Calculate Source COMM Id = 2 +21:40:24 ============================================================================ +21:40:24 + + +waiting on router queue for slot.... +21:40:32 ============================================================================ +21:40:32 Slot Id : <228> +21:40:32 Transaction Type : REQUEST +21:40:32 Received From : +21:40:32 ============================================================================ +21:40:32 FNo. Len. Field Value +21:40:32 ============================================================================ +21:40:32 [ 1] [ 4] [0200] +21:40:32 [ 2] [ 16] [2206990000121806] +21:40:32 [ 3] [ 6] [301000] +21:40:32 [ 4] [ 12] [000000000000] +21:40:32 [ 7] [ 10] [0320214028] +21:40:32 [ 11] [ 6] [847086] +21:40:32 [ 12] [ 6] [214028] +21:40:32 [ 13] [ 4] [0320] +21:40:32 [ 15] [ 4] [0320] +21:40:32 [ 18] [ 4] [6011] +21:40:32 [ 22] [ 3] [900] +21:40:32 [ 25] [ 2] [02] +21:40:32 [ 28] [ 9] [D00000000] +21:40:32 [ 32] [ 6] [621354] +21:40:32 [ 35] [ 32] [2206990000121806=980212616271761] +21:40:32 [ 37] [ 12] [507903919845] +21:40:32 [ 41] [ 8] [01010700] +21:40:32 [ 42] [ 15] [NATIVE ] +21:40:32 [ 43] [ 40] [Unitel Xaysetha LAO] +21:40:32 [ 49] [ 3] [418] +21:40:32 [ 52] [ 16] [FB27D973BBBE5A13] +21:40:32 ============================================================================ +21:40:32 + + +waiting on router queue for slot.... +21:40:32 Sending to : +21:40:32 ============================================================================ +21:40:32 Sending to : +21:40:32 ============================================================================ +21:40:32 ============================================================================ +21:40:32 Slot Id : <228> +21:40:32 Transaction Type : REQUEST +21:40:32 Received From : +21:40:32 ============================================================================ +21:40:32 FNo. Len. Field Value +21:40:32 ============================================================================ +21:40:32 [ 1] [ 4] [0200] +21:40:32 [ 2] [ 16] [2206990000121806] +21:40:32 [ 3] [ 6] [301000] +21:40:32 [ 4] [ 12] [000000000000] +21:40:32 [ 7] [ 10] [0320214028] +21:40:32 [ 11] [ 6] [847086] +21:40:32 [ 12] [ 6] [214028] +21:40:32 [ 13] [ 4] [0320] +21:40:32 [ 15] [ 4] [0320] +21:40:32 [ 18] [ 4] [6011] +21:40:32 [ 22] [ 3] [900] +21:40:32 [ 25] [ 2] [02] +21:40:32 [ 28] [ 9] [D00000000] +21:40:32 [ 32] [ 6] [621354] +21:40:32 [ 35] [ 32] [2206990000121806=980212616271761] +21:40:32 [ 37] [ 12] [507903919845] +21:40:32 [ 41] [ 8] [01010700] +21:40:32 [ 42] [ 15] [NATIVE ] +21:40:32 [ 43] [ 40] [Unitel Xaysetha LAO] +21:40:32 [ 49] [ 3] [418] +21:40:32 [ 52] [ 16] [FB27D973BBBE5A13] +21:40:32 ============================================================================ +21:40:32 + + +waiting on router queue for slot.... +21:40:32 Sending to : +21:40:32 ============================================================================ +21:40:32 ============================================================================ +21:40:32 Slot Id : <228> +21:40:32 Transaction Type : REQUEST +21:40:32 Received From : +21:40:32 ============================================================================ +21:40:32 FNo. Len. Field Value +21:40:32 ============================================================================ +21:40:32 [ 1] [ 4] [0200] +21:40:32 [ 2] [ 16] [2206990000121806] +21:40:32 [ 3] [ 6] [301000] +21:40:32 [ 4] [ 12] [000000000000] +21:40:32 [ 7] [ 10] [0320214028] +21:40:32 [ 11] [ 6] [847086] +21:40:32 [ 12] [ 6] [214028] +21:40:32 [ 13] [ 4] [0320] +21:40:32 [ 15] [ 4] [0320] +21:40:32 [ 18] [ 4] [6011] +21:40:32 [ 22] [ 3] [900] +21:40:32 [ 25] [ 2] [02] +21:40:32 [ 28] [ 9] [D00000000] +21:40:32 [ 32] [ 6] [621354] +21:40:32 [ 35] [ 32] [2206990000121806=980212616271761] +21:40:32 [ 37] [ 12] [507903919845] +21:40:32 [ 41] [ 8] [01010700] +21:40:32 [ 42] [ 15] [NATIVE ] +21:40:32 [ 43] [ 40] [Unitel Xaysetha LAO] +21:40:32 [ 49] [ 3] [418] +21:40:32 [ 52] [ 16] [B609E4F9D315FCFF] +21:40:32 ============================================================================ +21:40:32 + + +waiting on router queue for slot.... +21:40:32 Sending to : <1> +21:40:32 ============================================================================ +21:40:33 ============================================================================ +21:40:33 Slot Id : <228> +21:40:33 Transaction Type : RESPONSE +21:40:33 Received From : +21:40:33 ============================================================================ +21:40:33 FNo. Len. Field Value +21:40:33 ============================================================================ +21:40:33 [ 1] [ 4] [0210] +21:40:33 [ 2] [ 16] [2206990000121806] +21:40:33 [ 3] [ 6] [301000] +21:40:33 [ 4] [ 12] [000000000000] +21:40:33 [ 7] [ 10] [0320214028] +21:40:33 [ 11] [ 6] [847086] +21:40:33 [ 12] [ 6] [214028] +21:40:33 [ 13] [ 4] [0320] +21:40:33 [ 15] [ 4] [0320] +21:40:33 [ 18] [ 4] [6011] +21:40:33 [ 32] [ 6] [621354] +21:40:33 [ 35] [ 32] [2206990000121806=980212616271761] +21:40:33 [ 37] [ 12] [507903919845] +21:40:33 [ 38] [ 6] [571576] +21:40:33 [ 39] [ 2] [00] +21:40:33 [ 41] [ 8] [01010700] +21:40:33 [ 49] [ 3] [418] +21:40:33 [ 54] [ 40] [1001418C0000058130001002418C000005813000] +21:40:33 ============================================================================ +21:40:33 Sending to : +21:40:33 ============================================================================ +21:40:33 + + +waiting on router queue for slot.... +21:40:35 ============================================================================ +21:40:35 Slot Id : <228> +21:40:35 Transaction Type : RESPONSE +21:40:35 Received From : +21:40:35 ============================================================================ +21:40:35 FNo. Len. Field Value +21:40:35 ============================================================================ +21:40:35 [ 1] [ 4] [0210] +21:40:35 [ 2] [ 16] [2206990000121806] +21:40:35 [ 3] [ 6] [301000] +21:40:35 [ 4] [ 12] [000000000000] +21:40:35 [ 7] [ 10] [0320214028] +21:40:35 [ 11] [ 6] [847086] +21:40:35 [ 12] [ 6] [214028] +21:40:35 [ 13] [ 4] [0320] +21:40:35 [ 15] [ 4] [0320] +21:40:35 [ 18] [ 4] [6011] +21:40:35 [ 32] [ 6] [621354] +21:40:35 [ 35] [ 32] [2206990000121806=980212616271761] +21:40:35 [ 37] [ 12] [507903919845] +21:40:35 [ 38] [ 6] [571576] +21:40:35 [ 39] [ 2] [00] +21:40:35 [ 41] [ 8] [01010700] +21:40:35 [ 49] [ 3] [418] +21:40:35 [ 54] [ 40] [1001418C0000058130001002418C000005813000] +21:40:35 ============================================================================ +21:40:35 Calculate Source COMM Id = 0 +21:40:35 ============================================================================ +21:40:35 + + +waiting on router queue for slot.... +21:40:36 ============================================================================ +21:40:36 Slot Id : <231> +21:40:36 Transaction Type : REQUEST +21:40:36 Received From : +21:40:36 ============================================================================ +21:40:36 FNo. Len. Field Value +21:40:36 ============================================================================ +21:40:36 [ 1] [ 4] [0800] +21:40:36 [ 2] [ 5] [02531] +21:40:36 [ 3] [ 6] [579218] +21:40:36 [ 7] [ 10] [0320144036] +21:40:36 [ 11] [ 6] [807670] +21:40:36 [ 15] [ 10] [0320144036] +21:40:36 [ 37] [ 11] [57921807670] +21:40:36 [ 70] [ 3] [001] +21:40:36 ============================================================================ +21:40:36 + + +waiting on router queue for slot.... +21:40:36 ============================================================================ +21:40:36 Slot Id : <231> +21:40:36 Transaction Type : RESPONSE +21:40:36 Received From : +21:40:36 ============================================================================ +21:40:36 FNo. Len. Field Value +21:40:36 ============================================================================ +21:40:36 [ 1] [ 4] [0810] +21:40:36 [ 7] [ 10] [0320144036] +21:40:36 [ 11] [ 6] [807670] +21:40:36 [ 15] [ 4] [0320] +21:40:36 [ 37] [ 12] [57921807670] +21:40:36 [ 39] [ 2] [00] +21:40:36 [ 70] [ 3] [001] +21:40:36 ============================================================================ +21:40:36 Sending to : +21:40:36 ============================================================================ +21:40:36 + + +waiting on router queue for slot.... +21:40:36 ============================================================================ +21:40:36 Slot Id : <264> +21:40:36 Transaction Type : REQUEST +21:40:36 Received From : +21:40:36 ============================================================================ +21:40:36 FNo. Len. Field Value +21:40:36 ============================================================================ +21:40:36 [ 1] [ 4] [0800] +21:40:36 [ 7] [ 10] [0320023943] +21:40:36 [ 11] [ 6] [158541] +21:40:36 [ 70] [ 3] [301] +21:40:36 ============================================================================ +21:40:36 + + +waiting on router queue for slot.... +21:40:36 Sending to : +21:40:36 ============================================================================ +21:40:36 ============================================================================ +21:40:36 Slot Id : <264> +21:40:36 Transaction Type : RESPONSE +21:40:36 Received From : +21:40:36 ============================================================================ +21:40:36 FNo. Len. Field Value +21:40:36 ============================================================================ +21:40:36 [ 1] [ 4] [0810] +21:40:36 [ 7] [ 10] [0320023943] +21:40:36 [ 11] [ 6] [158541] +21:40:36 [ 39] [ 2] [00] +21:40:36 [ 70] [ 3] [301] +21:40:36 ============================================================================ +21:40:36 Calculate Source COMM Id = 2 +21:40:36 ============================================================================ +21:40:36 + + +waiting on router queue for slot.... +21:40:52 ============================================================================ +21:40:52 Slot Id : <220> +21:40:52 Transaction Type : REQUEST +21:40:52 Received From : +21:40:52 ============================================================================ +21:40:52 FNo. Len. Field Value +21:40:52 ============================================================================ +21:40:52 [ 1] [ 4] [0800] +21:40:52 [ 7] [ 10] [0320023959] +21:40:52 [ 11] [ 6] [158542] +21:40:52 [ 70] [ 3] [301] +21:40:52 ============================================================================ +21:40:52 + + +waiting on router queue for slot.... +21:40:52 Sending to : +21:40:52 ============================================================================ +21:40:52 ============================================================================ +21:40:52 Slot Id : <220> +21:40:52 Transaction Type : RESPONSE +21:40:52 Received From : +21:40:52 ============================================================================ +21:40:52 FNo. Len. Field Value +21:40:52 ============================================================================ +21:40:52 [ 1] [ 4] [0810] +21:40:52 [ 7] [ 10] [0320023959] +21:40:52 [ 11] [ 6] [158542] +21:40:52 [ 39] [ 2] [00] +21:40:52 [ 70] [ 3] [301] +21:40:52 ============================================================================ +21:40:52 Calculate Source COMM Id = 2 +21:40:52 ============================================================================ +21:40:52 + + +waiting on router queue for slot.... +21:40:52 ============================================================================ +21:40:52 Slot Id : <273> +21:40:52 Transaction Type : REQUEST +21:40:52 Received From : +21:40:52 ============================================================================ +21:40:52 FNo. Len. Field Value +21:40:52 ============================================================================ +21:40:52 [ 1] [ 4] [0200] +21:40:52 [ 2] [ 16] [6213544001477469] +21:40:52 [ 3] [ 6] [010000] +21:40:52 [ 4] [ 12] [000200000000] +21:40:52 [ 7] [ 10] [0320144000] +21:40:52 [ 11] [ 6] [271710] +21:40:52 [ 12] [ 6] [214000] +21:40:52 [ 13] [ 4] [0320] +21:40:52 [ 14] [ 4] [4912] +21:40:52 [ 15] [ 4] [0320] +21:40:52 [ 18] [ 4] [6011] +21:40:52 [ 19] [ 3] [418] +21:40:52 [ 22] [ 3] [021] +21:40:52 [ 25] [ 2] [01] +21:40:52 [ 28] [ 9] [D00002000] +21:40:52 [ 32] [ 6] [180893] +21:40:52 [ 35] [ 32] [6213544001477469=491212017746865] +21:40:52 [ 37] [ 12] [507914271710] +21:40:52 [ 41] [ 8] [0108THNG] +21:40:52 [ 42] [ 15] [999999 ] +21:40:52 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +21:40:52 [ 49] [ 3] [418] +21:40:52 [ 52] [ 16] [570BA4BB5A390C45] +21:40:52 ============================================================================ +21:40:52 + + +waiting on router queue for slot.... +21:40:52 Sending to : +21:40:52 ============================================================================ +21:40:52 Sending to : +21:40:52 ============================================================================ +21:40:52 ============================================================================ +21:40:52 Slot Id : <273> +21:40:52 Transaction Type : REQUEST +21:40:52 Received From : +21:40:52 ============================================================================ +21:40:52 FNo. Len. Field Value +21:40:52 ============================================================================ +21:40:52 [ 1] [ 4] [0200] +21:40:52 [ 2] [ 16] [6213544001477469] +21:40:52 [ 3] [ 6] [010000] +21:40:52 [ 4] [ 12] [000200000000] +21:40:52 [ 7] [ 10] [0320144000] +21:40:52 [ 11] [ 6] [271710] +21:40:52 [ 12] [ 6] [214000] +21:40:52 [ 13] [ 4] [0320] +21:40:52 [ 14] [ 4] [4912] +21:40:52 [ 15] [ 4] [0320] +21:40:52 [ 18] [ 4] [6011] +21:40:52 [ 19] [ 3] [418] +21:40:52 [ 22] [ 3] [021] +21:40:52 [ 25] [ 2] [01] +21:40:52 [ 28] [ 9] [D00002000] +21:40:52 [ 32] [ 6] [180893] +21:40:52 [ 35] [ 32] [6213544001477469=491212017746865] +21:40:52 [ 37] [ 12] [507914271710] +21:40:52 [ 41] [ 8] [0108THNG] +21:40:52 [ 42] [ 15] [999999 ] +21:40:52 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +21:40:52 [ 49] [ 3] [418] +21:40:52 [ 52] [ 16] [570BA4BB5A390C45] +21:40:52 ============================================================================ +21:40:52 + + +waiting on router queue for slot.... +21:40:52 Sending to : +21:40:52 ============================================================================ +21:40:52 ============================================================================ +21:40:52 Slot Id : <273> +21:40:52 Transaction Type : REQUEST +21:40:52 Received From : +21:40:52 ============================================================================ +21:40:52 FNo. Len. Field Value +21:40:52 ============================================================================ +21:40:52 [ 1] [ 4] [0200] +21:40:52 [ 2] [ 16] [6213544001477469] +21:40:52 [ 3] [ 6] [010000] +21:40:52 [ 4] [ 12] [000200000000] +21:40:52 [ 7] [ 10] [0320144000] +21:40:52 [ 11] [ 6] [271710] +21:40:52 [ 12] [ 6] [214000] +21:40:52 [ 13] [ 4] [0320] +21:40:52 [ 14] [ 4] [4912] +21:40:52 [ 15] [ 4] [0320] +21:40:52 [ 18] [ 4] [6011] +21:40:52 [ 19] [ 3] [418] +21:40:52 [ 22] [ 3] [021] +21:40:52 [ 25] [ 2] [01] +21:40:52 [ 28] [ 9] [D00002000] +21:40:52 [ 32] [ 6] [180893] +21:40:52 [ 35] [ 32] [6213544001477469=491212017746865] +21:40:52 [ 37] [ 12] [507914271710] +21:40:52 [ 41] [ 8] [0108THNG] +21:40:52 [ 42] [ 15] [999999 ] +21:40:52 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +21:40:52 [ 49] [ 3] [418] +21:40:52 [ 52] [ 16] [08E6A6878265F61B] +21:40:52 ============================================================================ +21:40:52 + + +waiting on router queue for slot.... +21:40:52 Sending to : <0> +21:40:52 ============================================================================ +21:40:52 ============================================================================ +21:40:52 Slot Id : <273> +21:40:52 Transaction Type : RESPONSE +21:40:52 Received From : +21:40:52 ============================================================================ +21:40:52 FNo. Len. Field Value +21:40:52 ============================================================================ +21:40:52 [ 1] [ 4] [0210] +21:40:52 [ 2] [ 16] [6213544001477469] +21:40:52 [ 3] [ 6] [010000] +21:40:52 [ 4] [ 12] [000200000000] +21:40:52 [ 7] [ 10] [0320144000] +21:40:52 [ 11] [ 6] [271710] +21:40:52 [ 12] [ 6] [214000] +21:40:52 [ 13] [ 4] [0320] +21:40:52 [ 15] [ 4] [0320] +21:40:52 [ 18] [ 4] [6011] +21:40:52 [ 19] [ 3] [418] +21:40:52 [ 22] [ 3] [021] +21:40:52 [ 32] [ 6] [180893] +21:40:52 [ 35] [ 32] [6213544001477469=491212017746865] +21:40:52 [ 37] [ 12] [507914271710] +21:40:52 [ 39] [ 2] [61] +21:40:52 [ 41] [ 8] [0108THNG] +21:40:52 [ 49] [ 3] [418] +21:40:52 ============================================================================ +21:40:52 Sending to : +21:40:52 ============================================================================ +21:40:52 + + +waiting on router queue for slot.... +21:40:53 ============================================================================ +21:40:53 Slot Id : <273> +21:40:53 Transaction Type : RESPONSE +21:40:53 Received From : +21:40:53 ============================================================================ +21:40:53 FNo. Len. Field Value +21:40:53 ============================================================================ +21:40:53 [ 1] [ 4] [0210] +21:40:53 [ 2] [ 16] [6213544001477469] +21:40:53 [ 3] [ 6] [010000] +21:40:53 [ 4] [ 12] [000200000000] +21:40:53 [ 7] [ 10] [0320144000] +21:40:53 [ 11] [ 6] [271710] +21:40:53 [ 12] [ 6] [214000] +21:40:53 [ 13] [ 4] [0320] +21:40:53 [ 15] [ 4] [0320] +21:40:53 [ 18] [ 4] [6011] +21:40:53 [ 19] [ 3] [418] +21:40:53 [ 22] [ 3] [021] +21:40:53 [ 32] [ 6] [180893] +21:40:53 [ 35] [ 32] [6213544001477469=491212017746865] +21:40:53 [ 37] [ 12] [507914271710] +21:40:53 [ 39] [ 2] [61] +21:40:53 [ 41] [ 8] [0108THNG] +21:40:53 [ 49] [ 3] [418] +21:40:53 ============================================================================ +21:40:53 Calculate Source COMM Id = 2 +21:40:53 ============================================================================ +21:40:53 + + +waiting on router queue for slot.... +21:41:10 ============================================================================ +21:41:10 Slot Id : <279> +21:41:10 Transaction Type : REQUEST +21:41:10 Received From : +21:41:10 ============================================================================ +21:41:10 FNo. Len. Field Value +21:41:10 ============================================================================ +21:41:10 [ 1] [ 4] [0800] +21:41:10 [ 7] [ 10] [0320024015] +21:41:10 [ 11] [ 6] [158543] +21:41:10 [ 70] [ 3] [301] +21:41:10 ============================================================================ +21:41:10 + + +waiting on router queue for slot.... +21:41:10 Sending to : +21:41:10 ============================================================================ +21:41:10 ============================================================================ +21:41:10 Slot Id : <279> +21:41:10 Transaction Type : RESPONSE +21:41:10 Received From : +21:41:10 ============================================================================ +21:41:10 FNo. Len. Field Value +21:41:10 ============================================================================ +21:41:10 [ 1] [ 4] [0810] +21:41:10 [ 7] [ 10] [0320024015] +21:41:10 [ 11] [ 6] [158543] +21:41:10 [ 39] [ 2] [00] +21:41:10 [ 70] [ 3] [301] +21:41:10 ============================================================================ +21:41:10 Calculate Source COMM Id = 2 +21:41:10 ============================================================================ +21:41:10 + + +waiting on router queue for slot.... +21:41:10 ============================================================================ +21:41:10 Slot Id : <239> +21:41:10 Transaction Type : REQUEST +21:41:10 Received From : +21:41:10 ============================================================================ +21:41:10 FNo. Len. Field Value +21:41:10 ============================================================================ +21:41:10 [ 1] [ 4] [0200] +21:41:10 [ 2] [ 16] [6688990102698006] +21:41:10 [ 3] [ 6] [010000] +21:41:10 [ 4] [ 12] [000010000000] +21:41:10 [ 7] [ 10] [0320214107] +21:41:10 [ 11] [ 6] [847110] +21:41:10 [ 12] [ 6] [214107] +21:41:10 [ 13] [ 4] [0320] +21:41:10 [ 15] [ 4] [0320] +21:41:10 [ 18] [ 4] [6011] +21:41:10 [ 22] [ 3] [900] +21:41:10 [ 25] [ 2] [02] +21:41:10 [ 28] [ 9] [D00002000] +21:41:10 [ 32] [ 6] [621354] +21:41:10 [ 35] [ 37] [6688990102698006=42101231800617500000] +21:41:10 [ 37] [ 12] [507903625942] +21:41:10 [ 41] [ 8] [16001500] +21:41:10 [ 42] [ 15] [NATIVE ] +21:41:10 [ 43] [ 40] [Sea game Village Xaythany LAO] +21:41:10 [ 49] [ 3] [418] +21:41:10 [ 52] [ 16] [3F408C43468F7B7D] +21:41:10 ============================================================================ +21:41:10 + + +waiting on router queue for slot.... +21:41:10 Sending to : +21:41:10 ============================================================================ +21:41:10 Sending to : +21:41:10 ============================================================================ +21:41:11 ============================================================================ +21:41:11 Slot Id : <239> +21:41:11 Transaction Type : REQUEST +21:41:11 Received From : +21:41:11 ============================================================================ +21:41:11 FNo. Len. Field Value +21:41:11 ============================================================================ +21:41:11 [ 1] [ 4] [0200] +21:41:11 [ 2] [ 16] [6688990102698006] +21:41:11 [ 3] [ 6] [010000] +21:41:11 [ 4] [ 12] [000010000000] +21:41:11 [ 7] [ 10] [0320214107] +21:41:11 [ 11] [ 6] [847110] +21:41:11 [ 12] [ 6] [214107] +21:41:11 [ 13] [ 4] [0320] +21:41:11 [ 15] [ 4] [0320] +21:41:11 [ 18] [ 4] [6011] +21:41:11 [ 22] [ 3] [900] +21:41:11 [ 25] [ 2] [02] +21:41:11 [ 28] [ 9] [D00002000] +21:41:11 [ 32] [ 6] [621354] +21:41:11 [ 35] [ 37] [6688990102698006=42101231800617500000] +21:41:11 [ 37] [ 12] [507903625942] +21:41:11 [ 41] [ 8] [16001500] +21:41:11 [ 42] [ 15] [NATIVE ] +21:41:11 [ 43] [ 40] [Sea game Village Xaythany LAO] +21:41:11 [ 49] [ 3] [418] +21:41:11 [ 52] [ 16] [3F408C43468F7B7D] +21:41:11 ============================================================================ +21:41:11 + + +waiting on router queue for slot.... +21:41:11 Sending to : +21:41:11 ============================================================================ +21:41:11 ============================================================================ +21:41:11 Slot Id : <239> +21:41:11 Transaction Type : REQUEST +21:41:11 Received From : +21:41:11 ============================================================================ +21:41:11 FNo. Len. Field Value +21:41:11 ============================================================================ +21:41:11 [ 1] [ 4] [0200] +21:41:11 [ 2] [ 16] [6688990102698006] +21:41:11 [ 3] [ 6] [010000] +21:41:11 [ 4] [ 12] [000010000000] +21:41:11 [ 7] [ 10] [0320214107] +21:41:11 [ 11] [ 6] [847110] +21:41:11 [ 12] [ 6] [214107] +21:41:11 [ 13] [ 4] [0320] +21:41:11 [ 15] [ 4] [0320] +21:41:11 [ 18] [ 4] [6011] +21:41:11 [ 22] [ 3] [900] +21:41:11 [ 25] [ 2] [02] +21:41:11 [ 28] [ 9] [D00002000] +21:41:11 [ 32] [ 6] [621354] +21:41:11 [ 35] [ 37] [6688990102698006=42101231800617500000] +21:41:11 [ 37] [ 12] [507903625942] +21:41:11 [ 41] [ 8] [16001500] +21:41:11 [ 42] [ 15] [NATIVE ] +21:41:11 [ 43] [ 40] [Sea game Village Xaythany LAO] +21:41:11 [ 49] [ 3] [418] +21:41:11 [ 52] [ 16] [9B1387D4DAAF0E89] +21:41:11 ============================================================================ +21:41:11 + + +waiting on router queue for slot.... +21:41:11 Sending to : <4> +21:41:11 ============================================================================ +21:41:12 ============================================================================ +21:41:12 Slot Id : <239> +21:41:12 Transaction Type : RESPONSE +21:41:12 Received From : +21:41:12 ============================================================================ +21:41:12 FNo. Len. Field Value +21:41:12 ============================================================================ +21:41:12 [ 1] [ 4] [0210] +21:41:12 [ 2] [ 16] [6688990102698006] +21:41:12 [ 3] [ 6] [010000] +21:41:12 [ 4] [ 12] [000010000000] +21:41:12 [ 11] [ 6] [847110] +21:41:12 [ 12] [ 6] [214107] +21:41:12 [ 15] [ 4] [0320] +21:41:12 [ 18] [ 4] [6011] +21:41:12 [ 32] [ 6] [621354] +21:41:12 [ 35] [ 37] [6688990102698006=42101231800617500000] +21:41:12 [ 37] [ 12] [507903625942] +21:41:12 [ 38] [ 6] [232153] +21:41:12 [ 39] [ 2] [00] +21:41:12 [ 41] [ 8] [16001500] +21:41:12 [ 49] [ 3] [418] +21:41:12 [ 54] [ 20] [0002418C000111564524] +21:41:12 ============================================================================ +21:41:12 Sending to : +21:41:12 ============================================================================ +21:41:12 + + +waiting on router queue for slot.... +21:41:13 ============================================================================ +21:41:13 Slot Id : <239> +21:41:13 Transaction Type : RESPONSE +21:41:13 Received From : +21:41:13 ============================================================================ +21:41:13 FNo. Len. Field Value +21:41:13 ============================================================================ +21:41:13 [ 1] [ 4] [0210] +21:41:13 [ 2] [ 16] [6688990102698006] +21:41:13 [ 3] [ 6] [010000] +21:41:13 [ 4] [ 12] [000010000000] +21:41:13 [ 11] [ 6] [847110] +21:41:13 [ 12] [ 6] [214107] +21:41:13 [ 15] [ 4] [0320] +21:41:13 [ 18] [ 4] [6011] +21:41:13 [ 32] [ 6] [621354] +21:41:13 [ 35] [ 37] [6688990102698006=42101231800617500000] +21:41:13 [ 37] [ 12] [507903625942] +21:41:13 [ 38] [ 6] [232153] +21:41:13 [ 39] [ 2] [00] +21:41:13 [ 41] [ 8] [16001500] +21:41:13 [ 49] [ 3] [418] +21:41:13 [ 54] [ 20] [0002418C000111564524] +21:41:13 ============================================================================ +21:41:13 Calculate Source COMM Id = 0 +21:41:13 ============================================================================ +21:41:13 + + +waiting on router queue for slot.... +21:41:17 ============================================================================ +21:41:17 Slot Id : <252> +21:41:17 Transaction Type : REQUEST +21:41:17 Received From : +21:41:17 ============================================================================ +21:41:17 FNo. Len. Field Value +21:41:17 ============================================================================ +21:41:17 [ 1] [ 4] [0800] +21:41:17 [ 7] [ 10] [0321045308] +21:41:17 [ 11] [ 6] [215308] +21:41:17 [ 37] [ 12] [57921215308] +21:41:17 [ 70] [ 3] [301] +21:41:17 ============================================================================ +21:41:17 + + +waiting on router queue for slot.... +21:41:17 Sending to : +21:41:17 ============================================================================ +21:41:17 ============================================================================ +21:41:17 Slot Id : <252> +21:41:17 Transaction Type : RESPONSE +21:41:17 Received From : +21:41:17 ============================================================================ +21:41:17 FNo. Len. Field Value +21:41:17 ============================================================================ +21:41:17 [ 1] [ 4] [0810] +21:41:17 [ 7] [ 10] [0321045308] +21:41:17 [ 11] [ 6] [215308] +21:41:17 [ 37] [ 12] [579212153080] +21:41:17 [ 39] [ 2] [00] +21:41:17 [ 70] [ 3] [810] +21:41:17 ============================================================================ +21:41:17 Calculate Source COMM Id = 6 +21:41:17 ============================================================================ +21:41:17 + + +waiting on router queue for slot.... +21:41:21 ============================================================================ +21:41:21 Slot Id : <272> +21:41:21 Transaction Type : REQUEST +21:41:21 Received From : +21:41:21 ============================================================================ +21:41:21 FNo. Len. Field Value +21:41:21 ============================================================================ +21:41:21 [ 1] [ 4] [0800] +21:41:21 [ 7] [ 10] [0320143912] +21:41:21 [ 11] [ 6] [063308] +21:41:21 [ 37] [ 12] [57921063308] +21:41:21 [ 70] [ 3] [301] +21:41:21 ============================================================================ +21:41:21 + + +waiting on router queue for slot.... +21:41:21 Sending to : +21:41:21 ============================================================================ +21:41:21 ============================================================================ +21:41:21 Slot Id : <272> +21:41:21 Transaction Type : RESPONSE +21:41:21 Received From : +21:41:21 ============================================================================ +21:41:21 FNo. Len. Field Value +21:41:21 ============================================================================ +21:41:21 [ 1] [ 4] [0810] +21:41:21 [ 7] [ 10] [0320143912] +21:41:21 [ 11] [ 6] [063308] +21:41:21 [ 37] [ 12] [579210633080] +21:41:21 [ 39] [ 2] [00] +21:41:21 [ 70] [ 3] [810] +21:41:21 ============================================================================ +21:41:21 Calculate Source COMM Id = 4 +21:41:21 ============================================================================ +21:41:21 + + +waiting on router queue for slot.... +21:41:24 ============================================================================ +21:41:24 Slot Id : <282> +21:41:24 Transaction Type : REQUEST +21:41:24 Received From : +21:41:24 ============================================================================ +21:41:24 FNo. Len. Field Value +21:41:24 ============================================================================ +21:41:24 [ 1] [ 4] [0800] +21:41:24 [ 7] [ 10] [0320024033] +21:41:24 [ 11] [ 6] [158544] +21:41:24 [ 70] [ 3] [301] +21:41:24 ============================================================================ +21:41:24 + + +waiting on router queue for slot.... +21:41:24 Sending to : +21:41:24 ============================================================================ +21:41:24 ============================================================================ +21:41:24 Slot Id : <282> +21:41:24 Transaction Type : RESPONSE +21:41:24 Received From : +21:41:24 ============================================================================ +21:41:24 FNo. Len. Field Value +21:41:24 ============================================================================ +21:41:24 [ 1] [ 4] [0810] +21:41:24 [ 7] [ 10] [0320024033] +21:41:24 [ 11] [ 6] [158544] +21:41:24 [ 39] [ 2] [00] +21:41:24 [ 70] [ 3] [301] +21:41:24 ============================================================================ +21:41:24 Calculate Source COMM Id = 2 +21:41:24 ============================================================================ +21:41:24 + + +waiting on router queue for slot.... +21:41:34 ============================================================================ +21:41:34 Slot Id : <254> +21:41:34 Transaction Type : REQUEST +21:41:34 Received From : +21:41:34 ============================================================================ +21:41:34 FNo. Len. Field Value +21:41:34 ============================================================================ +21:41:34 [ 1] [ 4] [0800] +21:41:34 [ 7] [ 10] [0320024043] +21:41:34 [ 11] [ 6] [158545] +21:41:34 [ 70] [ 3] [301] +21:41:34 ============================================================================ +21:41:34 + + +waiting on router queue for slot.... +21:41:34 Sending to : +21:41:34 ============================================================================ +21:41:34 ============================================================================ +21:41:34 Slot Id : <254> +21:41:34 Transaction Type : RESPONSE +21:41:34 Received From : +21:41:34 ============================================================================ +21:41:34 FNo. Len. Field Value +21:41:34 ============================================================================ +21:41:34 [ 1] [ 4] [0810] +21:41:34 [ 7] [ 10] [0320024043] +21:41:34 [ 11] [ 6] [158545] +21:41:34 [ 39] [ 2] [00] +21:41:34 [ 70] [ 3] [301] +21:41:34 ============================================================================ +21:41:34 Calculate Source COMM Id = 2 +21:41:34 ============================================================================ +21:41:34 + + +waiting on router queue for slot.... +21:41:38 ============================================================================ +21:41:38 Slot Id : <241> +21:41:38 Transaction Type : REQUEST +21:41:38 Received From : +21:41:38 ============================================================================ +21:41:38 FNo. Len. Field Value +21:41:38 ============================================================================ +21:41:38 [ 1] [ 4] [0800] +21:41:38 [ 2] [ 5] [02531] +21:41:38 [ 3] [ 6] [579218] +21:41:38 [ 7] [ 10] [0320144138] +21:41:38 [ 11] [ 6] [807671] +21:41:38 [ 15] [ 10] [0320144138] +21:41:38 [ 37] [ 11] [57921807671] +21:41:38 [ 70] [ 3] [001] +21:41:38 ============================================================================ +21:41:38 + + +waiting on router queue for slot.... +21:41:38 ============================================================================ +21:41:38 Slot Id : <241> +21:41:38 Transaction Type : RESPONSE +21:41:38 Received From : +21:41:38 ============================================================================ +21:41:38 FNo. Len. Field Value +21:41:38 ============================================================================ +21:41:38 [ 1] [ 4] [0810] +21:41:38 [ 7] [ 10] [0320144138] +21:41:38 [ 11] [ 6] [807671] +21:41:38 [ 15] [ 4] [0320] +21:41:38 [ 37] [ 12] [57921807671] +21:41:38 [ 39] [ 2] [00] +21:41:38 [ 70] [ 3] [001] +21:41:38 ============================================================================ +21:41:38 Sending to : +21:41:38 ============================================================================ +21:41:38 + + +waiting on router queue for slot.... +21:41:45 ============================================================================ +21:41:45 Slot Id : <266> +21:41:45 Transaction Type : REQUEST +21:41:45 Received From : +21:41:45 ============================================================================ +21:41:45 FNo. Len. Field Value +21:41:45 ============================================================================ +21:41:45 [ 1] [ 4] [0800] +21:41:45 [ 7] [ 10] [0320024053] +21:41:45 [ 11] [ 6] [158546] +21:41:45 [ 70] [ 3] [301] +21:41:45 ============================================================================ +21:41:45 + + +waiting on router queue for slot.... +21:41:45 Sending to : +21:41:45 ============================================================================ +21:41:45 ============================================================================ +21:41:45 Slot Id : <266> +21:41:45 Transaction Type : RESPONSE +21:41:45 Received From : +21:41:45 ============================================================================ +21:41:45 FNo. Len. Field Value +21:41:45 ============================================================================ +21:41:45 [ 1] [ 4] [0810] +21:41:45 [ 7] [ 10] [0320024053] +21:41:45 [ 11] [ 6] [158546] +21:41:45 [ 39] [ 2] [00] +21:41:45 [ 70] [ 3] [301] +21:41:45 ============================================================================ +21:41:45 Calculate Source COMM Id = 2 +21:41:45 ============================================================================ +21:41:45 + + +waiting on router queue for slot.... +21:41:57 ============================================================================ +21:41:57 Slot Id : <224> +21:41:57 Transaction Type : REQUEST +21:41:57 Received From : +21:41:57 ============================================================================ +21:41:57 FNo. Len. Field Value +21:41:57 ============================================================================ +21:41:57 [ 1] [ 4] [0200] +21:41:57 [ 2] [ 16] [6213545001044548] +21:41:57 [ 3] [ 6] [010000] +21:41:57 [ 4] [ 12] [000070000000] +21:41:57 [ 7] [ 10] [0320213948] +21:41:57 [ 11] [ 6] [957796] +21:41:57 [ 12] [ 6] [213948] +21:41:57 [ 13] [ 4] [0320] +21:41:57 [ 15] [ 4] [0320] +21:41:57 [ 18] [ 4] [6011] +21:41:57 [ 19] [ 3] [418] +21:41:57 [ 22] [ 3] [021] +21:41:57 [ 25] [ 2] [01] +21:41:57 [ 28] [ 9] [D00002000] +21:41:57 [ 32] [ 6] [668899] +21:41:57 [ 35] [ 32] [6213545001044548=491212014454611] +21:41:57 [ 37] [ 12] [507900789229] +21:41:57 [ 41] [ 8] [03005002] +21:41:57 [ 42] [ 15] [APT ] +21:41:57 [ 43] [ 40] [ KEOSEUMXAY QUESTHOUSE OUD] +21:41:57 [ 49] [ 3] [418] +21:41:57 [ 52] [ 16] [32A3990B9F21B6EB] +21:41:57 ============================================================================ +21:41:57 + + +waiting on router queue for slot.... +21:41:57 Sending to : +21:41:57 ============================================================================ +21:41:57 Sending to : +21:41:57 ============================================================================ +21:41:57 ============================================================================ +21:41:57 Slot Id : <224> +21:41:57 Transaction Type : REQUEST +21:41:57 Received From : +21:41:57 ============================================================================ +21:41:57 FNo. Len. Field Value +21:41:57 ============================================================================ +21:41:57 [ 1] [ 4] [0200] +21:41:57 [ 2] [ 16] [6213545001044548] +21:41:57 [ 3] [ 6] [010000] +21:41:57 [ 4] [ 12] [000070000000] +21:41:57 [ 7] [ 10] [0320213948] +21:41:57 [ 11] [ 6] [957796] +21:41:57 [ 12] [ 6] [213948] +21:41:57 [ 13] [ 4] [0320] +21:41:57 [ 15] [ 4] [0320] +21:41:57 [ 18] [ 4] [6011] +21:41:57 [ 19] [ 3] [418] +21:41:57 [ 22] [ 3] [021] +21:41:57 [ 25] [ 2] [01] +21:41:57 [ 28] [ 9] [D00002000] +21:41:57 [ 32] [ 6] [668899] +21:41:57 [ 35] [ 32] [6213545001044548=491212014454611] +21:41:57 [ 37] [ 12] [507900789229] +21:41:57 [ 41] [ 8] [03005002] +21:41:57 [ 42] [ 15] [APT ] +21:41:57 [ 43] [ 40] [ KEOSEUMXAY QUESTHOUSE OUD] +21:41:57 [ 49] [ 3] [418] +21:41:57 [ 52] [ 16] [32A3990B9F21B6EB] +21:41:57 ============================================================================ +21:41:57 + + +waiting on router queue for slot.... +21:41:57 Sending to : +21:41:57 ============================================================================ +21:41:57 ============================================================================ +21:41:57 Slot Id : <224> +21:41:57 Transaction Type : REQUEST +21:41:57 Received From : +21:41:57 ============================================================================ +21:41:57 FNo. Len. Field Value +21:41:57 ============================================================================ +21:41:57 [ 1] [ 4] [0200] +21:41:57 [ 2] [ 16] [6213545001044548] +21:41:57 [ 3] [ 6] [010000] +21:41:57 [ 4] [ 12] [000070000000] +21:41:57 [ 7] [ 10] [0320213948] +21:41:57 [ 11] [ 6] [957796] +21:41:57 [ 12] [ 6] [213948] +21:41:57 [ 13] [ 4] [0320] +21:41:57 [ 15] [ 4] [0320] +21:41:57 [ 18] [ 4] [6011] +21:41:57 [ 19] [ 3] [418] +21:41:57 [ 22] [ 3] [021] +21:41:57 [ 25] [ 2] [01] +21:41:57 [ 28] [ 9] [D00002000] +21:41:57 [ 32] [ 6] [668899] +21:41:57 [ 35] [ 32] [6213545001044548=491212014454611] +21:41:57 [ 37] [ 12] [507900789229] +21:41:57 [ 41] [ 8] [03005002] +21:41:57 [ 42] [ 15] [APT ] +21:41:57 [ 43] [ 40] [ KEOSEUMXAY QUESTHOUSE OUD] +21:41:57 [ 49] [ 3] [418] +21:41:57 [ 52] [ 16] [B9ACE6C6B3D18B7B] +21:41:57 ============================================================================ +21:41:57 + + +waiting on router queue for slot.... +21:41:57 Sending to : <0> +21:41:57 ============================================================================ +21:41:58 ============================================================================ +21:41:58 Slot Id : <224> +21:41:58 Transaction Type : RESPONSE +21:41:58 Received From : +21:41:58 ============================================================================ +21:41:58 FNo. Len. Field Value +21:41:58 ============================================================================ +21:41:58 [ 1] [ 4] [0210] +21:41:58 [ 2] [ 16] [6213545001044548] +21:41:58 [ 3] [ 6] [010000] +21:41:58 [ 4] [ 12] [000070000000] +21:41:58 [ 7] [ 10] [0320213948] +21:41:58 [ 11] [ 6] [957796] +21:41:58 [ 12] [ 6] [213948] +21:41:58 [ 13] [ 4] [0320] +21:41:58 [ 15] [ 4] [0320] +21:41:58 [ 18] [ 4] [6011] +21:41:58 [ 19] [ 3] [418] +21:41:58 [ 32] [ 6] [668899] +21:41:58 [ 35] [ 32] [6213545001044548=491212014454611] +21:41:58 [ 37] [ 12] [507900789229] +21:41:58 [ 38] [ 6] [048402] +21:41:58 [ 39] [ 2] [00] +21:41:58 [ 41] [ 8] [03005002] +21:41:58 [ 49] [ 3] [418] +21:41:58 [ 54] [ 40] [0001418C0001855435160002418C000115343516] +21:41:58 ============================================================================ +21:41:58 Sending to : +21:41:58 ============================================================================ +21:41:58 + + +waiting on router queue for slot.... +21:41:59 ============================================================================ +21:41:59 Slot Id : <224> +21:41:59 Transaction Type : RESPONSE +21:41:59 Received From : +21:41:59 ============================================================================ +21:41:59 FNo. Len. Field Value +21:41:59 ============================================================================ +21:41:59 [ 1] [ 4] [0210] +21:41:59 [ 2] [ 16] [6213545001044548] +21:41:59 [ 3] [ 6] [010000] +21:41:59 [ 4] [ 12] [000070000000] +21:41:59 [ 7] [ 10] [0320213948] +21:41:59 [ 11] [ 6] [957796] +21:41:59 [ 12] [ 6] [213948] +21:41:59 [ 13] [ 4] [0320] +21:41:59 [ 15] [ 4] [0320] +21:41:59 [ 18] [ 4] [6011] +21:41:59 [ 19] [ 3] [418] +21:41:59 [ 32] [ 6] [668899] +21:41:59 [ 35] [ 32] [6213545001044548=491212014454611] +21:41:59 [ 37] [ 12] [507900789229] +21:41:59 [ 38] [ 6] [048402] +21:41:59 [ 39] [ 2] [00] +21:41:59 [ 41] [ 8] [03005002] +21:41:59 [ 49] [ 3] [418] +21:41:59 [ 54] [ 40] [0001418C0001855435160002418C000115343516] +21:41:59 ============================================================================ +21:41:59 Calculate Source COMM Id = 4 +21:41:59 ============================================================================ +21:41:59 + + +waiting on router queue for slot.... +21:42:00 ============================================================================ +21:42:00 Slot Id : <280> +21:42:00 Transaction Type : REQUEST +21:42:00 Received From : +21:42:00 ============================================================================ +21:42:00 FNo. Len. Field Value +21:42:00 ============================================================================ +21:42:00 [ 1] [ 4] [0800] +21:42:00 [ 7] [ 10] [0320024109] +21:42:00 [ 11] [ 6] [158547] +21:42:00 [ 70] [ 3] [301] +21:42:00 ============================================================================ +21:42:00 + + +waiting on router queue for slot.... +21:42:00 Sending to : +21:42:00 ============================================================================ +21:42:00 ============================================================================ +21:42:00 Slot Id : <280> +21:42:00 Transaction Type : RESPONSE +21:42:00 Received From : +21:42:00 ============================================================================ +21:42:00 FNo. Len. Field Value +21:42:00 ============================================================================ +21:42:00 [ 1] [ 4] [0810] +21:42:00 [ 7] [ 10] [0320024109] +21:42:00 [ 11] [ 6] [158547] +21:42:00 [ 39] [ 2] [00] +21:42:00 [ 70] [ 3] [301] +21:42:00 ============================================================================ +21:42:00 Calculate Source COMM Id = 2 +21:42:00 ============================================================================ +21:42:00 + + +waiting on router queue for slot.... +21:42:11 ============================================================================ +21:42:11 Slot Id : <276> +21:42:11 Transaction Type : REQUEST +21:42:11 Received From : +21:42:11 ============================================================================ +21:42:11 FNo. Len. Field Value +21:42:11 ============================================================================ +21:42:11 [ 1] [ 4] [0800] +21:42:11 [ 7] [ 10] [0320024119] +21:42:11 [ 11] [ 6] [158548] +21:42:11 [ 70] [ 3] [301] +21:42:11 ============================================================================ +21:42:11 + + +waiting on router queue for slot.... +21:42:11 Sending to : +21:42:11 ============================================================================ +21:42:11 ============================================================================ +21:42:11 Slot Id : <276> +21:42:11 Transaction Type : RESPONSE +21:42:11 Received From : +21:42:11 ============================================================================ +21:42:11 FNo. Len. Field Value +21:42:11 ============================================================================ +21:42:11 [ 1] [ 4] [0810] +21:42:11 [ 7] [ 10] [0320024119] +21:42:11 [ 11] [ 6] [158548] +21:42:11 [ 39] [ 2] [00] +21:42:11 [ 70] [ 3] [301] +21:42:11 ============================================================================ +21:42:11 Calculate Source COMM Id = 2 +21:42:11 ============================================================================ +21:42:11 + + +waiting on router queue for slot.... +21:42:22 ============================================================================ +21:42:22 Slot Id : <219> +21:42:22 Transaction Type : REQUEST +21:42:22 Received From : +21:42:22 ============================================================================ +21:42:22 FNo. Len. Field Value +21:42:22 ============================================================================ +21:42:22 [ 1] [ 4] [0800] +21:42:22 [ 7] [ 10] [0321045413] +21:42:22 [ 11] [ 6] [215413] +21:42:22 [ 37] [ 12] [57921215413] +21:42:22 [ 70] [ 3] [301] +21:42:22 ============================================================================ +21:42:22 + + +waiting on router queue for slot.... +21:42:22 Sending to : +21:42:22 ============================================================================ +21:42:22 ============================================================================ +21:42:22 Slot Id : <219> +21:42:22 Transaction Type : RESPONSE +21:42:22 Received From : +21:42:22 ============================================================================ +21:42:22 FNo. Len. Field Value +21:42:22 ============================================================================ +21:42:22 [ 1] [ 4] [0810] +21:42:22 [ 7] [ 10] [0321045413] +21:42:22 [ 11] [ 6] [215413] +21:42:22 [ 37] [ 12] [579212154130] +21:42:22 [ 39] [ 2] [00] +21:42:22 [ 70] [ 3] [810] +21:42:22 ============================================================================ +21:42:22 Calculate Source COMM Id = 6 +21:42:22 ============================================================================ +21:42:22 + + +waiting on router queue for slot.... +21:42:27 ============================================================================ +21:42:27 Slot Id : <258> +21:42:27 Transaction Type : REQUEST +21:42:27 Received From : +21:42:27 ============================================================================ +21:42:27 FNo. Len. Field Value +21:42:27 ============================================================================ +21:42:27 [ 1] [ 4] [0800] +21:42:27 [ 7] [ 10] [0320024135] +21:42:27 [ 11] [ 6] [158549] +21:42:27 [ 70] [ 3] [301] +21:42:27 ============================================================================ +21:42:27 + + +waiting on router queue for slot.... +21:42:27 Sending to : +21:42:27 ============================================================================ +21:42:27 ============================================================================ +21:42:27 Slot Id : <258> +21:42:27 Transaction Type : RESPONSE +21:42:27 Received From : +21:42:27 ============================================================================ +21:42:27 FNo. Len. Field Value +21:42:27 ============================================================================ +21:42:27 [ 1] [ 4] [0810] +21:42:27 [ 7] [ 10] [0320024135] +21:42:27 [ 11] [ 6] [158549] +21:42:27 [ 39] [ 2] [00] +21:42:27 [ 70] [ 3] [301] +21:42:27 ============================================================================ +21:42:27 Calculate Source COMM Id = 2 +21:42:27 ============================================================================ +21:42:27 + + +waiting on router queue for slot.... +21:42:40 ============================================================================ +21:42:40 Slot Id : <290> +21:42:40 Transaction Type : REQUEST +21:42:40 Received From : +21:42:40 ============================================================================ +21:42:40 FNo. Len. Field Value +21:42:40 ============================================================================ +21:42:40 [ 1] [ 4] [0800] +21:42:40 [ 2] [ 5] [02531] +21:42:40 [ 3] [ 6] [579218] +21:42:40 [ 7] [ 10] [0320144240] +21:42:40 [ 11] [ 6] [807672] +21:42:40 [ 15] [ 10] [0320144240] +21:42:40 [ 37] [ 11] [57921807672] +21:42:40 [ 70] [ 3] [001] +21:42:40 ============================================================================ +21:42:40 + + +waiting on router queue for slot.... +21:42:40 ============================================================================ +21:42:40 Slot Id : <290> +21:42:40 Transaction Type : RESPONSE +21:42:40 Received From : +21:42:40 ============================================================================ +21:42:40 FNo. Len. Field Value +21:42:40 ============================================================================ +21:42:40 [ 1] [ 4] [0810] +21:42:40 [ 7] [ 10] [0320144240] +21:42:40 [ 11] [ 6] [807672] +21:42:40 [ 15] [ 4] [0320] +21:42:40 [ 37] [ 12] [57921807672] +21:42:40 [ 39] [ 2] [00] +21:42:40 [ 70] [ 3] [001] +21:42:40 ============================================================================ +21:42:40 Sending to : +21:42:40 ============================================================================ +21:42:40 + + +waiting on router queue for slot.... +21:42:42 ============================================================================ +21:42:42 Slot Id : <287> +21:42:42 Transaction Type : REQUEST +21:42:42 Received From : +21:42:42 ============================================================================ +21:42:42 FNo. Len. Field Value +21:42:42 ============================================================================ +21:42:42 [ 1] [ 4] [0800] +21:42:42 [ 7] [ 10] [0320024150] +21:42:42 [ 11] [ 6] [158550] +21:42:42 [ 70] [ 3] [301] +21:42:42 ============================================================================ +21:42:42 + + +waiting on router queue for slot.... +21:42:42 Sending to : +21:42:42 ============================================================================ +21:42:42 ============================================================================ +21:42:42 Slot Id : <287> +21:42:42 Transaction Type : RESPONSE +21:42:42 Received From : +21:42:42 ============================================================================ +21:42:42 FNo. Len. Field Value +21:42:42 ============================================================================ +21:42:42 [ 1] [ 4] [0810] +21:42:42 [ 7] [ 10] [0320024150] +21:42:42 [ 11] [ 6] [158550] +21:42:42 [ 39] [ 2] [00] +21:42:42 [ 70] [ 3] [301] +21:42:42 ============================================================================ +21:42:42 Calculate Source COMM Id = 2 +21:42:42 ============================================================================ +21:42:42 + + +waiting on router queue for slot.... +21:42:53 ============================================================================ +21:42:53 Slot Id : <277> +21:42:53 Transaction Type : REQUEST +21:42:53 Received From : +21:42:53 ============================================================================ +21:42:53 FNo. Len. Field Value +21:42:53 ============================================================================ +21:42:53 [ 1] [ 4] [0800] +21:42:53 [ 7] [ 10] [0320024201] +21:42:53 [ 11] [ 6] [158551] +21:42:53 [ 70] [ 3] [301] +21:42:53 ============================================================================ +21:42:53 + + +waiting on router queue for slot.... +21:42:53 Sending to : +21:42:53 ============================================================================ +21:42:53 ============================================================================ +21:42:53 Slot Id : <277> +21:42:53 Transaction Type : RESPONSE +21:42:53 Received From : +21:42:53 ============================================================================ +21:42:53 FNo. Len. Field Value +21:42:53 ============================================================================ +21:42:53 [ 1] [ 4] [0810] +21:42:53 [ 7] [ 10] [0320024201] +21:42:53 [ 11] [ 6] [158551] +21:42:53 [ 39] [ 2] [00] +21:42:53 [ 70] [ 3] [301] +21:42:53 ============================================================================ +21:42:53 Calculate Source COMM Id = 2 +21:42:53 ============================================================================ +21:42:53 + + +waiting on router queue for slot.... +21:43:09 ============================================================================ +21:43:09 Slot Id : <284> +21:43:09 Transaction Type : REQUEST +21:43:09 Received From : +21:43:09 ============================================================================ +21:43:09 FNo. Len. Field Value +21:43:09 ============================================================================ +21:43:09 [ 1] [ 4] [0800] +21:43:09 [ 7] [ 10] [0320024217] +21:43:09 [ 11] [ 6] [158552] +21:43:09 [ 70] [ 3] [301] +21:43:09 ============================================================================ +21:43:09 + + +waiting on router queue for slot.... +21:43:09 Sending to : +21:43:09 ============================================================================ +21:43:09 ============================================================================ +21:43:09 Slot Id : <284> +21:43:09 Transaction Type : RESPONSE +21:43:09 Received From : +21:43:09 ============================================================================ +21:43:09 FNo. Len. Field Value +21:43:09 ============================================================================ +21:43:09 [ 1] [ 4] [0810] +21:43:09 [ 7] [ 10] [0320024217] +21:43:09 [ 11] [ 6] [158552] +21:43:09 [ 39] [ 2] [00] +21:43:09 [ 70] [ 3] [301] +21:43:09 ============================================================================ +21:43:09 Calculate Source COMM Id = 2 +21:43:09 ============================================================================ +21:43:09 + + +waiting on router queue for slot.... +21:43:20 ============================================================================ +21:43:20 Slot Id : <267> +21:43:20 Transaction Type : REQUEST +21:43:20 Received From : +21:43:20 ============================================================================ +21:43:20 FNo. Len. Field Value +21:43:20 ============================================================================ +21:43:20 [ 1] [ 4] [0800] +21:43:20 [ 7] [ 10] [0320024228] +21:43:20 [ 11] [ 6] [158553] +21:43:20 [ 70] [ 3] [301] +21:43:20 ============================================================================ +21:43:20 + + +waiting on router queue for slot.... +21:43:20 Sending to : +21:43:20 ============================================================================ +21:43:20 ============================================================================ +21:43:20 Slot Id : <267> +21:43:20 Transaction Type : RESPONSE +21:43:20 Received From : +21:43:20 ============================================================================ +21:43:20 FNo. Len. Field Value +21:43:20 ============================================================================ +21:43:20 [ 1] [ 4] [0810] +21:43:20 [ 7] [ 10] [0320024228] +21:43:20 [ 11] [ 6] [158553] +21:43:20 [ 39] [ 2] [00] +21:43:20 [ 70] [ 3] [301] +21:43:20 ============================================================================ +21:43:20 Calculate Source COMM Id = 2 +21:43:20 ============================================================================ +21:43:20 + + +waiting on router queue for slot.... +21:43:28 ============================================================================ +21:43:28 Slot Id : <271> +21:43:28 Transaction Type : REQUEST +21:43:28 Received From : +21:43:28 ============================================================================ +21:43:28 FNo. Len. Field Value +21:43:28 ============================================================================ +21:43:28 [ 1] [ 4] [0800] +21:43:28 [ 7] [ 10] [0321045518] +21:43:28 [ 11] [ 6] [215518] +21:43:28 [ 37] [ 12] [57921215518] +21:43:28 [ 70] [ 3] [301] +21:43:28 ============================================================================ +21:43:28 + + +waiting on router queue for slot.... +21:43:28 Sending to : +21:43:28 ============================================================================ +21:43:28 ============================================================================ +21:43:28 Slot Id : <271> +21:43:28 Transaction Type : RESPONSE +21:43:28 Received From : +21:43:28 ============================================================================ +21:43:28 FNo. Len. Field Value +21:43:28 ============================================================================ +21:43:28 [ 1] [ 4] [0810] +21:43:28 [ 7] [ 10] [0321045518] +21:43:28 [ 11] [ 6] [215518] +21:43:28 [ 37] [ 12] [579212155180] +21:43:28 [ 39] [ 2] [00] +21:43:28 [ 70] [ 3] [810] +21:43:28 ============================================================================ +21:43:28 Calculate Source COMM Id = 6 +21:43:28 ============================================================================ +21:43:28 + + +waiting on router queue for slot.... +21:43:35 ============================================================================ +21:43:35 Slot Id : <236> +21:43:35 Transaction Type : REQUEST +21:43:35 Received From : +21:43:35 ============================================================================ +21:43:35 FNo. Len. Field Value +21:43:35 ============================================================================ +21:43:35 [ 1] [ 4] [0800] +21:43:35 [ 7] [ 10] [0320024244] +21:43:35 [ 11] [ 6] [158554] +21:43:35 [ 70] [ 3] [301] +21:43:35 ============================================================================ +21:43:35 + + +waiting on router queue for slot.... +21:43:35 Sending to : +21:43:35 ============================================================================ +21:43:35 ============================================================================ +21:43:35 Slot Id : <236> +21:43:35 Transaction Type : RESPONSE +21:43:35 Received From : +21:43:35 ============================================================================ +21:43:35 FNo. Len. Field Value +21:43:35 ============================================================================ +21:43:35 [ 1] [ 4] [0810] +21:43:35 [ 7] [ 10] [0320024244] +21:43:35 [ 11] [ 6] [158554] +21:43:35 [ 39] [ 2] [00] +21:43:35 [ 70] [ 3] [301] +21:43:35 ============================================================================ +21:43:35 Calculate Source COMM Id = 2 +21:43:35 ============================================================================ +21:43:35 + + +waiting on router queue for slot.... +21:43:42 ============================================================================ +21:43:42 Slot Id : <245> +21:43:42 Transaction Type : REQUEST +21:43:42 Received From : +21:43:42 ============================================================================ +21:43:42 FNo. Len. Field Value +21:43:42 ============================================================================ +21:43:42 [ 1] [ 4] [0800] +21:43:42 [ 2] [ 5] [02531] +21:43:42 [ 3] [ 6] [579218] +21:43:42 [ 7] [ 10] [0320144342] +21:43:42 [ 11] [ 6] [807673] +21:43:42 [ 15] [ 10] [0320144342] +21:43:42 [ 37] [ 11] [57921807673] +21:43:42 [ 70] [ 3] [001] +21:43:42 ============================================================================ +21:43:42 + + +waiting on router queue for slot.... +21:43:42 ============================================================================ +21:43:42 Slot Id : <245> +21:43:42 Transaction Type : RESPONSE +21:43:42 Received From : +21:43:42 ============================================================================ +21:43:42 FNo. Len. Field Value +21:43:42 ============================================================================ +21:43:42 [ 1] [ 4] [0810] +21:43:42 [ 7] [ 10] [0320144342] +21:43:42 [ 11] [ 6] [807673] +21:43:42 [ 15] [ 4] [0320] +21:43:42 [ 37] [ 12] [57921807673] +21:43:42 [ 39] [ 2] [00] +21:43:42 [ 70] [ 3] [001] +21:43:42 ============================================================================ +21:43:42 Sending to : +21:43:42 ============================================================================ +21:43:42 + + +waiting on router queue for slot.... +21:43:47 ============================================================================ +21:43:47 Slot Id : <303> +21:43:47 Transaction Type : REQUEST +21:43:47 Received From : +21:43:47 ============================================================================ +21:43:47 FNo. Len. Field Value +21:43:47 ============================================================================ +21:43:47 [ 1] [ 4] [0800] +21:43:47 [ 7] [ 10] [0320024255] +21:43:47 [ 11] [ 6] [158555] +21:43:47 [ 70] [ 3] [301] +21:43:47 ============================================================================ +21:43:47 + + +waiting on router queue for slot.... +21:43:47 Sending to : +21:43:47 ============================================================================ +21:43:47 ============================================================================ +21:43:47 Slot Id : <303> +21:43:47 Transaction Type : RESPONSE +21:43:47 Received From : +21:43:47 ============================================================================ +21:43:47 FNo. Len. Field Value +21:43:47 ============================================================================ +21:43:47 [ 1] [ 4] [0810] +21:43:47 [ 7] [ 10] [0320024255] +21:43:47 [ 11] [ 6] [158555] +21:43:47 [ 39] [ 2] [00] +21:43:47 [ 70] [ 3] [301] +21:43:47 ============================================================================ +21:43:47 Calculate Source COMM Id = 2 +21:43:47 ============================================================================ +21:43:47 + + +waiting on router queue for slot.... +21:44:02 ============================================================================ +21:44:02 Slot Id : <294> +21:44:02 Transaction Type : REQUEST +21:44:02 Received From : +21:44:02 ============================================================================ +21:44:02 FNo. Len. Field Value +21:44:02 ============================================================================ +21:44:02 [ 1] [ 4] [0800] +21:44:02 [ 7] [ 10] [0320024310] +21:44:02 [ 11] [ 6] [158556] +21:44:02 [ 70] [ 3] [301] +21:44:02 ============================================================================ +21:44:02 + + +waiting on router queue for slot.... +21:44:02 Sending to : +21:44:02 ============================================================================ +21:44:02 ============================================================================ +21:44:02 Slot Id : <294> +21:44:02 Transaction Type : RESPONSE +21:44:02 Received From : +21:44:02 ============================================================================ +21:44:02 FNo. Len. Field Value +21:44:02 ============================================================================ +21:44:02 [ 1] [ 4] [0810] +21:44:02 [ 7] [ 10] [0320024310] +21:44:02 [ 11] [ 6] [158556] +21:44:02 [ 39] [ 2] [00] +21:44:02 [ 70] [ 3] [301] +21:44:02 ============================================================================ +21:44:02 Calculate Source COMM Id = 2 +21:44:02 ============================================================================ +21:44:02 + + +waiting on router queue for slot.... +21:44:11 ============================================================================ +21:44:11 Slot Id : <217> +21:44:11 Transaction Type : REQUEST +21:44:11 Received From : +21:44:11 ============================================================================ +21:44:11 FNo. Len. Field Value +21:44:11 ============================================================================ +21:44:11 [ 1] [ 4] [0200] +21:44:11 [ 2] [ 16] [1808931300006432] +21:44:11 [ 3] [ 6] [011000] +21:44:11 [ 4] [ 12] [000010000000] +21:44:11 [ 7] [ 10] [0320214407] +21:44:11 [ 11] [ 6] [847242] +21:44:11 [ 12] [ 6] [214407] +21:44:11 [ 13] [ 4] [0320] +21:44:11 [ 15] [ 4] [0320] +21:44:11 [ 18] [ 4] [6011] +21:44:11 [ 22] [ 3] [900] +21:44:11 [ 25] [ 2] [02] +21:44:11 [ 28] [ 9] [D00002000] +21:44:11 [ 32] [ 6] [621354] +21:44:11 [ 35] [ 27] [1808931300006432=1803500116] +21:44:11 [ 37] [ 12] [507903640728] +21:44:11 [ 41] [ 8] [16001700] +21:44:11 [ 42] [ 15] [NATIVE ] +21:44:11 [ 43] [ 40] [NOUL Unit Xaythany LAO] +21:44:11 [ 49] [ 3] [418] +21:44:11 [ 52] [ 16] [6CC9B12D5BE555AC] +21:44:11 ============================================================================ +21:44:11 + + +waiting on router queue for slot.... +21:44:11 Sending to : +21:44:11 ============================================================================ +21:44:11 Sending to : +21:44:11 ============================================================================ +21:44:11 ============================================================================ +21:44:11 Slot Id : <217> +21:44:11 Transaction Type : REQUEST +21:44:11 Received From : +21:44:11 ============================================================================ +21:44:11 FNo. Len. Field Value +21:44:11 ============================================================================ +21:44:11 [ 1] [ 4] [0200] +21:44:11 [ 2] [ 16] [1808931300006432] +21:44:11 [ 3] [ 6] [011000] +21:44:11 [ 4] [ 12] [000010000000] +21:44:11 [ 7] [ 10] [0320214407] +21:44:11 [ 11] [ 6] [847242] +21:44:11 [ 12] [ 6] [214407] +21:44:11 [ 13] [ 4] [0320] +21:44:11 [ 15] [ 4] [0320] +21:44:11 [ 18] [ 4] [6011] +21:44:11 [ 22] [ 3] [900] +21:44:11 [ 25] [ 2] [02] +21:44:11 [ 28] [ 9] [D00002000] +21:44:11 [ 32] [ 6] [621354] +21:44:11 [ 35] [ 27] [1808931300006432=1803500116] +21:44:11 [ 37] [ 12] [507903640728] +21:44:11 [ 41] [ 8] [16001700] +21:44:11 [ 42] [ 15] [NATIVE ] +21:44:11 [ 43] [ 40] [NOUL Unit Xaythany LAO] +21:44:11 [ 49] [ 3] [418] +21:44:11 [ 52] [ 16] [6CC9B12D5BE555AC] +21:44:11 ============================================================================ +21:44:11 + + +waiting on router queue for slot.... +21:44:11 Sending to : +21:44:11 ============================================================================ +21:44:11 ============================================================================ +21:44:11 Slot Id : <217> +21:44:11 Transaction Type : REQUEST +21:44:11 Received From : +21:44:11 ============================================================================ +21:44:11 FNo. Len. Field Value +21:44:11 ============================================================================ +21:44:11 [ 1] [ 4] [0200] +21:44:11 [ 2] [ 16] [1808931300006432] +21:44:11 [ 3] [ 6] [011000] +21:44:11 [ 4] [ 12] [000010000000] +21:44:11 [ 7] [ 10] [0320214407] +21:44:11 [ 11] [ 6] [847242] +21:44:11 [ 12] [ 6] [214407] +21:44:11 [ 13] [ 4] [0320] +21:44:11 [ 15] [ 4] [0320] +21:44:11 [ 18] [ 4] [6011] +21:44:11 [ 22] [ 3] [900] +21:44:11 [ 25] [ 2] [02] +21:44:11 [ 28] [ 9] [D00002000] +21:44:11 [ 32] [ 6] [621354] +21:44:11 [ 35] [ 27] [1808931300006432=1803500116] +21:44:11 [ 37] [ 12] [507903640728] +21:44:11 [ 41] [ 8] [16001700] +21:44:11 [ 42] [ 15] [NATIVE ] +21:44:11 [ 43] [ 40] [NOUL Unit Xaythany LAO] +21:44:11 [ 49] [ 3] [418] +21:44:11 [ 52] [ 16] [2B822072DFFE15F1] +21:44:11 ============================================================================ +21:44:11 + + +waiting on router queue for slot.... +21:44:11 Sending to : <2> +21:44:11 ============================================================================ +21:44:20 ============================================================================ +21:44:20 Slot Id : <217> +21:44:20 Transaction Type : RESPONSE +21:44:20 Received From : +21:44:20 ============================================================================ +21:44:20 FNo. Len. Field Value +21:44:20 ============================================================================ +21:44:20 [ 1] [ 4] [0210] +21:44:20 [ 2] [ 16] [1808931300006432] +21:44:20 [ 3] [ 6] [011000] +21:44:20 [ 4] [ 12] [000010000000] +21:44:20 [ 6] [ 12] [000010000000] +21:44:20 [ 7] [ 10] [0320214407] +21:44:20 [ 11] [ 6] [847242] +21:44:20 [ 12] [ 6] [214407] +21:44:20 [ 13] [ 4] [0320] +21:44:20 [ 18] [ 4] [6011] +21:44:20 [ 19] [ 3] [418] +21:44:20 [ 22] [ 3] [021] +21:44:20 [ 32] [ 6] [621354] +21:44:20 [ 35] [ 27] [1808931300006432=1803500116] +21:44:20 [ 37] [ 12] [507903640728] +21:44:20 [ 38] [ 6] [847242] +21:44:20 [ 39] [ 2] [00] +21:44:20 [ 41] [ 8] [16001700] +21:44:20 [ 49] [ 3] [418] +21:44:20 [ 52] [ 16] [2B822072DFFE15F1] +21:44:20 [ 54] [ 20] [1001418C000043375200] +21:44:20 ============================================================================ +21:44:20 Sending to : +21:44:20 ============================================================================ +21:44:20 + + +waiting on router queue for slot.... +21:44:22 ============================================================================ +21:44:22 Slot Id : <217> +21:44:22 Transaction Type : RESPONSE +21:44:22 Received From : +21:44:22 ============================================================================ +21:44:22 FNo. Len. Field Value +21:44:22 ============================================================================ +21:44:22 [ 1] [ 4] [0210] +21:44:22 [ 2] [ 16] [1808931300006432] +21:44:22 [ 3] [ 6] [011000] +21:44:22 [ 4] [ 12] [000010000000] +21:44:22 [ 6] [ 12] [000010000000] +21:44:22 [ 7] [ 10] [0320214407] +21:44:22 [ 11] [ 6] [847242] +21:44:22 [ 12] [ 6] [214407] +21:44:22 [ 13] [ 4] [0320] +21:44:22 [ 18] [ 4] [6011] +21:44:22 [ 19] [ 3] [418] +21:44:22 [ 22] [ 3] [021] +21:44:22 [ 32] [ 6] [621354] +21:44:22 [ 35] [ 27] [1808931300006432=1803500116] +21:44:22 [ 37] [ 12] [507903640728] +21:44:22 [ 38] [ 6] [847242] +21:44:22 [ 39] [ 2] [00] +21:44:22 [ 41] [ 8] [16001700] +21:44:22 [ 49] [ 3] [418] +21:44:22 [ 52] [ 16] [2B822072DFFE15F1] +21:44:22 [ 54] [ 20] [1001418C000043375200] +21:44:22 ============================================================================ +21:44:22 Calculate Source COMM Id = 0 +21:44:22 ============================================================================ +21:44:22 + + +waiting on router queue for slot.... +21:44:22 ============================================================================ +21:44:22 Slot Id : <293> +21:44:22 Transaction Type : REQUEST +21:44:22 Received From : +21:44:22 ============================================================================ +21:44:22 FNo. Len. Field Value +21:44:22 ============================================================================ +21:44:22 [ 1] [ 4] [0800] +21:44:22 [ 7] [ 10] [0320024331] +21:44:22 [ 11] [ 6] [158557] +21:44:22 [ 70] [ 3] [301] +21:44:22 ============================================================================ +21:44:22 + + +waiting on router queue for slot.... +21:44:22 Sending to : +21:44:22 ============================================================================ +21:44:22 ============================================================================ +21:44:22 Slot Id : <293> +21:44:22 Transaction Type : RESPONSE +21:44:22 Received From : +21:44:22 ============================================================================ +21:44:22 FNo. Len. Field Value +21:44:22 ============================================================================ +21:44:22 [ 1] [ 4] [0810] +21:44:22 [ 7] [ 10] [0320024331] +21:44:22 [ 11] [ 6] [158557] +21:44:22 [ 39] [ 2] [00] +21:44:22 [ 70] [ 3] [301] +21:44:22 ============================================================================ +21:44:22 Calculate Source COMM Id = 2 +21:44:22 ============================================================================ +21:44:22 + + +waiting on router queue for slot.... +21:44:33 ============================================================================ +21:44:33 Slot Id : <298> +21:44:33 Transaction Type : REQUEST +21:44:33 Received From : +21:44:33 ============================================================================ +21:44:33 FNo. Len. Field Value +21:44:33 ============================================================================ +21:44:33 [ 1] [ 4] [0800] +21:44:33 [ 7] [ 10] [0320024341] +21:44:33 [ 11] [ 6] [158558] +21:44:33 [ 70] [ 3] [301] +21:44:33 ============================================================================ +21:44:33 + + +waiting on router queue for slot.... +21:44:33 Sending to : +21:44:33 ============================================================================ +21:44:33 ============================================================================ +21:44:33 Slot Id : <298> +21:44:33 Transaction Type : RESPONSE +21:44:33 Received From : +21:44:33 ============================================================================ +21:44:33 FNo. Len. Field Value +21:44:33 ============================================================================ +21:44:33 [ 1] [ 4] [0810] +21:44:33 [ 7] [ 10] [0320024341] +21:44:33 [ 11] [ 6] [158558] +21:44:33 [ 39] [ 2] [00] +21:44:33 [ 70] [ 3] [301] +21:44:33 ============================================================================ +21:44:33 Calculate Source COMM Id = 2 +21:44:33 ============================================================================ +21:44:33 + + +waiting on router queue for slot.... +21:44:34 ============================================================================ +21:44:34 Slot Id : <300> +21:44:34 Transaction Type : REQUEST +21:44:34 Received From : +21:44:34 ============================================================================ +21:44:34 FNo. Len. Field Value +21:44:34 ============================================================================ +21:44:34 [ 1] [ 4] [0800] +21:44:34 [ 7] [ 10] [0321045623] +21:44:34 [ 11] [ 6] [215623] +21:44:34 [ 37] [ 12] [57921215623] +21:44:34 [ 70] [ 3] [301] +21:44:34 ============================================================================ +21:44:34 + + +waiting on router queue for slot.... +21:44:34 Sending to : +21:44:34 ============================================================================ +21:44:34 ============================================================================ +21:44:34 Slot Id : <300> +21:44:34 Transaction Type : RESPONSE +21:44:34 Received From : +21:44:34 ============================================================================ +21:44:34 FNo. Len. Field Value +21:44:34 ============================================================================ +21:44:34 [ 1] [ 4] [0810] +21:44:34 [ 7] [ 10] [0321045623] +21:44:34 [ 11] [ 6] [215623] +21:44:34 [ 37] [ 12] [579212156230] +21:44:34 [ 39] [ 2] [00] +21:44:34 [ 70] [ 3] [810] +21:44:34 ============================================================================ +21:44:34 Calculate Source COMM Id = 6 +21:44:34 ============================================================================ +21:44:34 + + +waiting on router queue for slot.... +21:44:41 ============================================================================ +21:44:41 Slot Id : <278> +21:44:41 Transaction Type : REQUEST +21:44:41 Received From : +21:44:41 ============================================================================ +21:44:41 FNo. Len. Field Value +21:44:41 ============================================================================ +21:44:41 [ 1] [ 4] [0200] +21:44:41 [ 2] [ 16] [6213544001477469] +21:44:41 [ 3] [ 6] [010000] +21:44:41 [ 4] [ 12] [000010000000] +21:44:41 [ 7] [ 10] [0320144349] +21:44:41 [ 11] [ 6] [271715] +21:44:41 [ 12] [ 6] [214349] +21:44:41 [ 13] [ 4] [0320] +21:44:41 [ 14] [ 4] [4912] +21:44:41 [ 15] [ 4] [0320] +21:44:41 [ 18] [ 4] [6011] +21:44:41 [ 19] [ 3] [418] +21:44:41 [ 22] [ 3] [021] +21:44:41 [ 25] [ 2] [01] +21:44:41 [ 28] [ 9] [D00002000] +21:44:41 [ 32] [ 6] [180893] +21:44:41 [ 35] [ 32] [6213544001477469=491212017746865] +21:44:41 [ 37] [ 12] [507914271715] +21:44:41 [ 41] [ 8] [0108THNG] +21:44:41 [ 42] [ 15] [999999 ] +21:44:41 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +21:44:41 [ 49] [ 3] [418] +21:44:41 [ 52] [ 16] [570BA4BB5A390C45] +21:44:41 ============================================================================ +21:44:41 + + +waiting on router queue for slot.... +21:44:41 Sending to : +21:44:41 ============================================================================ +21:44:41 Sending to : +21:44:41 ============================================================================ +21:44:41 ============================================================================ +21:44:41 Slot Id : <278> +21:44:41 Transaction Type : REQUEST +21:44:41 Received From : +21:44:41 ============================================================================ +21:44:41 FNo. Len. Field Value +21:44:41 ============================================================================ +21:44:41 [ 1] [ 4] [0200] +21:44:41 [ 2] [ 16] [6213544001477469] +21:44:41 [ 3] [ 6] [010000] +21:44:41 [ 4] [ 12] [000010000000] +21:44:41 [ 7] [ 10] [0320144349] +21:44:41 [ 11] [ 6] [271715] +21:44:41 [ 12] [ 6] [214349] +21:44:41 [ 13] [ 4] [0320] +21:44:41 [ 14] [ 4] [4912] +21:44:41 [ 15] [ 4] [0320] +21:44:41 [ 18] [ 4] [6011] +21:44:41 [ 19] [ 3] [418] +21:44:41 [ 22] [ 3] [021] +21:44:41 [ 25] [ 2] [01] +21:44:41 [ 28] [ 9] [D00002000] +21:44:41 [ 32] [ 6] [180893] +21:44:41 [ 35] [ 32] [6213544001477469=491212017746865] +21:44:41 [ 37] [ 12] [507914271715] +21:44:41 [ 41] [ 8] [0108THNG] +21:44:41 [ 42] [ 15] [999999 ] +21:44:41 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +21:44:41 [ 49] [ 3] [418] +21:44:41 [ 52] [ 16] [570BA4BB5A390C45] +21:44:41 ============================================================================ +21:44:41 + + +waiting on router queue for slot.... +21:44:41 Sending to : +21:44:41 ============================================================================ +21:44:41 ============================================================================ +21:44:41 Slot Id : <278> +21:44:41 Transaction Type : REQUEST +21:44:41 Received From : +21:44:41 ============================================================================ +21:44:41 FNo. Len. Field Value +21:44:41 ============================================================================ +21:44:41 [ 1] [ 4] [0200] +21:44:41 [ 2] [ 16] [6213544001477469] +21:44:41 [ 3] [ 6] [010000] +21:44:41 [ 4] [ 12] [000010000000] +21:44:41 [ 7] [ 10] [0320144349] +21:44:41 [ 11] [ 6] [271715] +21:44:41 [ 12] [ 6] [214349] +21:44:41 [ 13] [ 4] [0320] +21:44:41 [ 14] [ 4] [4912] +21:44:41 [ 15] [ 4] [0320] +21:44:41 [ 18] [ 4] [6011] +21:44:41 [ 19] [ 3] [418] +21:44:41 [ 22] [ 3] [021] +21:44:41 [ 25] [ 2] [01] +21:44:41 [ 28] [ 9] [D00002000] +21:44:41 [ 32] [ 6] [180893] +21:44:41 [ 35] [ 32] [6213544001477469=491212017746865] +21:44:41 [ 37] [ 12] [507914271715] +21:44:41 [ 41] [ 8] [0108THNG] +21:44:41 [ 42] [ 15] [999999 ] +21:44:41 [ 43] [ 40] [ATM THANGON MARKET LOCATION, Xaythany, L] +21:44:41 [ 49] [ 3] [418] +21:44:41 [ 52] [ 16] [08E6A6878265F61B] +21:44:41 ============================================================================ +21:44:41 + + +waiting on router queue for slot.... +21:44:41 Sending to : <0> +21:44:41 ============================================================================ +21:44:41 ============================================================================ +21:44:41 Slot Id : <278> +21:44:41 Transaction Type : RESPONSE +21:44:41 Received From : +21:44:41 ============================================================================ +21:44:41 FNo. Len. Field Value +21:44:41 ============================================================================ +21:44:41 [ 1] [ 4] [0210] +21:44:41 [ 2] [ 16] [6213544001477469] +21:44:41 [ 3] [ 6] [010000] +21:44:41 [ 4] [ 12] [000010000000] +21:44:41 [ 7] [ 10] [0320144349] +21:44:41 [ 11] [ 6] [271715] +21:44:41 [ 12] [ 6] [214349] +21:44:41 [ 13] [ 4] [0320] +21:44:41 [ 15] [ 4] [0320] +21:44:41 [ 18] [ 4] [6011] +21:44:41 [ 19] [ 3] [418] +21:44:41 [ 22] [ 3] [021] +21:44:41 [ 32] [ 6] [180893] +21:44:41 [ 35] [ 32] [6213544001477469=491212017746865] +21:44:41 [ 37] [ 12] [507914271715] +21:44:41 [ 38] [ 6] [214438] +21:44:41 [ 39] [ 2] [55] +21:44:41 [ 41] [ 8] [0108THNG] +21:44:41 [ 49] [ 3] [418] +21:44:41 ============================================================================ +21:44:41 Sending to : +21:44:41 ============================================================================ +21:44:41 + + +waiting on router queue for slot.... +21:44:42 ============================================================================ +21:44:42 Slot Id : <278> +21:44:42 Transaction Type : RESPONSE +21:44:42 Received From : +21:44:42 ============================================================================ +21:44:42 FNo. Len. Field Value +21:44:42 ============================================================================ +21:44:42 [ 1] [ 4] [0210] +21:44:42 [ 2] [ 16] [6213544001477469] +21:44:42 [ 3] [ 6] [010000] +21:44:42 [ 4] [ 12] [000010000000] +21:44:42 [ 7] [ 10] [0320144349] +21:44:42 [ 11] [ 6] [271715] +21:44:42 [ 12] [ 6] [214349] +21:44:42 [ 13] [ 4] [0320] +21:44:42 [ 15] [ 4] [0320] +21:44:42 [ 18] [ 4] [6011] +21:44:42 [ 19] [ 3] [418] +21:44:42 [ 22] [ 3] [021] +21:44:42 [ 32] [ 6] [180893] +21:44:42 [ 35] [ 32] [6213544001477469=491212017746865] +21:44:42 [ 37] [ 12] [507914271715] +21:44:42 [ 38] [ 6] [214438] +21:44:42 [ 39] [ 2] [55] +21:44:42 [ 41] [ 8] [0108THNG] +21:44:42 [ 49] [ 3] [418] +21:44:42 ============================================================================ +21:44:42 Calculate Source COMM Id = 2 +21:44:42 ============================================================================ +21:44:42 + + +waiting on router queue for slot.... +21:44:43 ============================================================================ +21:44:43 Slot Id : <281> +21:44:43 Transaction Type : REQUEST +21:44:43 Received From : +21:44:43 ============================================================================ +21:44:43 FNo. Len. Field Value +21:44:43 ============================================================================ +21:44:43 [ 1] [ 4] [0800] +21:44:43 [ 7] [ 10] [0320024351] +21:44:43 [ 11] [ 6] [158559] +21:44:43 [ 70] [ 3] [301] +21:44:43 ============================================================================ +21:44:43 + + +waiting on router queue for slot.... +21:44:43 Sending to : +21:44:43 ============================================================================ +21:44:43 ============================================================================ +21:44:43 Slot Id : <281> +21:44:43 Transaction Type : RESPONSE +21:44:43 Received From : +21:44:43 ============================================================================ +21:44:43 FNo. Len. Field Value +21:44:43 ============================================================================ +21:44:43 [ 1] [ 4] [0810] +21:44:43 [ 7] [ 10] [0320024351] +21:44:43 [ 11] [ 6] [158559] +21:44:43 [ 39] [ 2] [00] +21:44:43 [ 70] [ 3] [301] +21:44:43 ============================================================================ +21:44:43 Calculate Source COMM Id = 2 +21:44:43 ============================================================================ +21:44:43 + + +waiting on router queue for slot.... +21:44:44 ============================================================================ +21:44:44 Slot Id : <299> +21:44:44 Transaction Type : REQUEST +21:44:44 Received From : +21:44:44 ============================================================================ +21:44:44 FNo. Len. Field Value +21:44:44 ============================================================================ +21:44:44 [ 1] [ 4] [0800] +21:44:44 [ 2] [ 5] [02531] +21:44:44 [ 3] [ 6] [579218] +21:44:44 [ 7] [ 10] [0320144444] +21:44:44 [ 11] [ 6] [807674] +21:44:44 [ 15] [ 10] [0320144444] +21:44:44 [ 37] [ 11] [57921807674] +21:44:44 [ 70] [ 3] [001] +21:44:44 ============================================================================ +21:44:44 + + +waiting on router queue for slot.... +21:44:44 ============================================================================ +21:44:44 Slot Id : <299> +21:44:44 Transaction Type : RESPONSE +21:44:44 Received From : +21:44:44 ============================================================================ +21:44:44 FNo. Len. Field Value +21:44:44 ============================================================================ +21:44:44 [ 1] [ 4] [0810] +21:44:44 [ 7] [ 10] [0320144444] +21:44:44 [ 11] [ 6] [807674] +21:44:44 [ 15] [ 4] [0320] +21:44:44 [ 37] [ 12] [57921807674] +21:44:44 [ 39] [ 2] [00] +21:44:44 [ 70] [ 3] [001] +21:44:44 ============================================================================ +21:44:44 Sending to : +21:44:44 ============================================================================ +21:44:44 + + +waiting on router queue for slot.... +21:44:54 ============================================================================ +21:44:54 Slot Id : <257> +21:44:54 Transaction Type : REQUEST +21:44:54 Received From : +21:44:54 ============================================================================ +21:44:54 FNo. Len. Field Value +21:44:54 ============================================================================ +21:44:54 [ 1] [ 4] [0800] +21:44:54 [ 7] [ 10] [0320024402] +21:44:54 [ 11] [ 6] [158560] +21:44:54 [ 70] [ 3] [301] +21:44:54 ============================================================================ +21:44:54 + + +waiting on router queue for slot.... +21:44:54 Sending to : +21:44:54 ============================================================================ +21:44:54 ============================================================================ +21:44:54 Slot Id : <257> +21:44:54 Transaction Type : RESPONSE +21:44:54 Received From : +21:44:54 ============================================================================ +21:44:54 FNo. Len. Field Value +21:44:54 ============================================================================ +21:44:54 [ 1] [ 4] [0810] +21:44:54 [ 7] [ 10] [0320024402] +21:44:54 [ 11] [ 6] [158560] +21:44:54 [ 39] [ 2] [00] +21:44:54 [ 70] [ 3] [301] +21:44:54 ============================================================================ +21:44:54 Calculate Source COMM Id = 2 +21:44:54 ============================================================================ +21:44:54 + + +waiting on router queue for slot.... +21:44:55 ============================================================================ +21:44:55 Slot Id : <308> +21:44:55 Transaction Type : REQUEST +21:44:55 Received From : +21:44:55 ============================================================================ +21:44:55 FNo. Len. Field Value +21:44:55 ============================================================================ +21:44:55 [ 1] [ 4] [0800] +21:44:55 [ 7] [ 10] [0320145242] +21:44:55 [ 11] [ 6] [094613] +21:44:55 [ 37] [ 12] [57921094613] +21:44:55 [ 70] [ 3] [301] +21:44:55 ============================================================================ +21:44:55 + + +waiting on router queue for slot.... +21:44:55 Sending to : +21:44:55 ============================================================================ +21:44:55 ============================================================================ +21:44:55 Slot Id : <308> +21:44:55 Transaction Type : RESPONSE +21:44:55 Received From : +21:44:55 ============================================================================ +21:44:55 FNo. Len. Field Value +21:44:55 ============================================================================ +21:44:55 [ 1] [ 4] [0810] +21:44:55 [ 7] [ 10] [0320145242] +21:44:55 [ 11] [ 6] [094613] +21:44:55 [ 37] [ 12] [579210946130] +21:44:55 [ 39] [ 2] [00] +21:44:55 [ 70] [ 3] [810] +21:44:55 ============================================================================ +21:44:55 Calculate Source COMM Id = 1 +21:44:55 ============================================================================ +21:44:55 + + +waiting on router queue for slot.... +21:45:09 ============================================================================ +21:45:09 Slot Id : <295> +21:45:09 Transaction Type : REQUEST +21:45:09 Received From : +21:45:09 ============================================================================ +21:45:09 FNo. Len. Field Value +21:45:09 ============================================================================ +21:45:09 [ 1] [ 4] [0800] +21:45:09 [ 7] [ 10] [0320024417] +21:45:09 [ 11] [ 6] [158561] +21:45:09 [ 70] [ 3] [301] +21:45:09 ============================================================================ +21:45:09 + + +waiting on router queue for slot.... +21:45:09 Sending to : +21:45:09 ============================================================================ +21:45:09 ============================================================================ +21:45:09 Slot Id : <295> +21:45:09 Transaction Type : RESPONSE +21:45:09 Received From : +21:45:09 ============================================================================ +21:45:09 FNo. Len. Field Value +21:45:09 ============================================================================ +21:45:09 [ 1] [ 4] [0810] +21:45:09 [ 7] [ 10] [0320024417] +21:45:09 [ 11] [ 6] [158561] +21:45:09 [ 39] [ 2] [00] +21:45:09 [ 70] [ 3] [301] +21:45:09 ============================================================================ +21:45:09 Calculate Source COMM Id = 2 +21:45:09 ============================================================================ +21:45:09 + + +waiting on router queue for slot.... +21:45:24 ============================================================================ +21:45:24 Slot Id : <286> +21:45:24 Transaction Type : REQUEST +21:45:24 Received From : +21:45:24 ============================================================================ +21:45:24 FNo. Len. Field Value +21:45:24 ============================================================================ +21:45:24 [ 1] [ 4] [0800] +21:45:24 [ 7] [ 10] [0320024432] +21:45:24 [ 11] [ 6] [158562] +21:45:24 [ 70] [ 3] [301] +21:45:24 ============================================================================ +21:45:24 + + +waiting on router queue for slot.... +21:45:24 Sending to : +21:45:24 ============================================================================ +21:45:24 ============================================================================ +21:45:24 Slot Id : <286> +21:45:24 Transaction Type : RESPONSE +21:45:24 Received From : +21:45:24 ============================================================================ +21:45:24 FNo. Len. Field Value +21:45:24 ============================================================================ +21:45:24 [ 1] [ 4] [0810] +21:45:24 [ 7] [ 10] [0320024432] +21:45:24 [ 11] [ 6] [158562] +21:45:24 [ 39] [ 2] [00] +21:45:24 [ 70] [ 3] [301] +21:45:24 ============================================================================ +21:45:24 Calculate Source COMM Id = 2 +21:45:24 ============================================================================ +21:45:24 + + +waiting on router queue for slot.... +21:45:39 ============================================================================ +21:45:39 Slot Id : <296> +21:45:39 Transaction Type : REQUEST +21:45:39 Received From : +21:45:39 ============================================================================ +21:45:39 FNo. Len. Field Value +21:45:39 ============================================================================ +21:45:39 [ 1] [ 4] [0800] +21:45:39 [ 7] [ 10] [0321045728] +21:45:39 [ 11] [ 6] [215728] +21:45:39 [ 37] [ 12] [57921215728] +21:45:39 [ 70] [ 3] [301] +21:45:39 ============================================================================ +21:45:39 + + +waiting on router queue for slot.... +21:45:39 Sending to : +21:45:39 ============================================================================ +21:45:39 ============================================================================ +21:45:39 Slot Id : <296> +21:45:39 Transaction Type : RESPONSE +21:45:39 Received From : +21:45:39 ============================================================================ +21:45:39 FNo. Len. Field Value +21:45:39 ============================================================================ +21:45:39 [ 1] [ 4] [0810] +21:45:39 [ 7] [ 10] [0321045728] +21:45:39 [ 11] [ 6] [215728] +21:45:39 [ 37] [ 12] [579212157280] +21:45:39 [ 39] [ 2] [00] +21:45:39 [ 70] [ 3] [810] +21:45:39 ============================================================================ +21:45:39 Calculate Source COMM Id = 6 +21:45:39 ============================================================================ +21:45:39 + + +waiting on router queue for slot.... +21:45:40 ============================================================================ +21:45:40 Slot Id : <283> +21:45:40 Transaction Type : REQUEST +21:45:40 Received From : +21:45:40 ============================================================================ +21:45:40 FNo. Len. Field Value +21:45:40 ============================================================================ +21:45:40 [ 1] [ 4] [0800] +21:45:40 [ 7] [ 10] [0320024448] +21:45:40 [ 11] [ 6] [158563] +21:45:40 [ 70] [ 3] [301] +21:45:40 ============================================================================ +21:45:40 + + +waiting on router queue for slot.... +21:45:40 Sending to : +21:45:40 ============================================================================ +21:45:40 ============================================================================ +21:45:40 Slot Id : <283> +21:45:40 Transaction Type : RESPONSE +21:45:40 Received From : +21:45:40 ============================================================================ +21:45:40 FNo. Len. Field Value +21:45:40 ============================================================================ +21:45:40 [ 1] [ 4] [0810] +21:45:40 [ 7] [ 10] [0320024448] +21:45:40 [ 11] [ 6] [158563] +21:45:40 [ 39] [ 2] [00] +21:45:40 [ 70] [ 3] [301] +21:45:40 ============================================================================ +21:45:40 Calculate Source COMM Id = 2 +21:45:40 ============================================================================ +21:45:40 + + +waiting on router queue for slot.... +21:45:46 ============================================================================ +21:45:46 Slot Id : <306> +21:45:46 Transaction Type : REQUEST +21:45:46 Received From : +21:45:46 ============================================================================ +21:45:46 FNo. Len. Field Value +21:45:46 ============================================================================ +21:45:46 [ 1] [ 4] [0800] +21:45:46 [ 2] [ 5] [02531] +21:45:46 [ 3] [ 6] [579218] +21:45:46 [ 7] [ 10] [0320144546] +21:45:46 [ 11] [ 6] [807675] +21:45:46 [ 15] [ 10] [0320144546] +21:45:46 [ 37] [ 11] [57921807675] +21:45:46 [ 70] [ 3] [001] +21:45:46 ============================================================================ +21:45:46 + + +waiting on router queue for slot.... +21:45:46 ============================================================================ +21:45:46 Slot Id : <306> +21:45:46 Transaction Type : RESPONSE +21:45:46 Received From : +21:45:46 ============================================================================ +21:45:46 FNo. Len. Field Value +21:45:46 ============================================================================ +21:45:46 [ 1] [ 4] [0810] +21:45:46 [ 7] [ 10] [0320144546] +21:45:46 [ 11] [ 6] [807675] +21:45:46 [ 15] [ 4] [0320] +21:45:46 [ 37] [ 12] [57921807675] +21:45:46 [ 39] [ 2] [00] +21:45:46 [ 70] [ 3] [001] +21:45:46 ============================================================================ +21:45:46 Sending to : +21:45:46 ============================================================================ +21:45:46 + + +waiting on router queue for slot.... +21:45:51 ============================================================================ +21:45:51 Slot Id : <311> +21:45:51 Transaction Type : REQUEST +21:45:51 Received From : +21:45:51 ============================================================================ +21:45:51 FNo. Len. Field Value +21:45:51 ============================================================================ +21:45:51 [ 1] [ 4] [0800] +21:45:51 [ 7] [ 10] [0320024459] +21:45:51 [ 11] [ 6] [158564] +21:45:51 [ 70] [ 3] [301] +21:45:51 ============================================================================ +21:45:51 + + +waiting on router queue for slot.... +21:45:51 Sending to : +21:45:51 ============================================================================ +21:45:51 ============================================================================ +21:45:51 Slot Id : <311> +21:45:51 Transaction Type : RESPONSE +21:45:51 Received From : +21:45:51 ============================================================================ +21:45:51 FNo. Len. Field Value +21:45:51 ============================================================================ +21:45:51 [ 1] [ 4] [0810] +21:45:51 [ 7] [ 10] [0320024459] +21:45:51 [ 11] [ 6] [158564] +21:45:51 [ 39] [ 2] [00] +21:45:51 [ 70] [ 3] [301] +21:45:51 ============================================================================ +21:45:51 Calculate Source COMM Id = 2 +21:45:51 ============================================================================ +21:45:51 + + +waiting on router queue for slot.... +21:46:06 ============================================================================ +21:46:06 Slot Id : <312> +21:46:06 Transaction Type : REQUEST +21:46:06 Received From : +21:46:06 ============================================================================ +21:46:06 FNo. Len. Field Value +21:46:06 ============================================================================ +21:46:06 [ 1] [ 4] [0800] +21:46:06 [ 7] [ 10] [0320024514] +21:46:06 [ 11] [ 6] [158565] +21:46:06 [ 70] [ 3] [301] +21:46:06 ============================================================================ +21:46:06 + + +waiting on router queue for slot.... +21:46:06 Sending to : +21:46:06 ============================================================================ +21:46:06 ============================================================================ +21:46:06 Slot Id : <312> +21:46:06 Transaction Type : RESPONSE +21:46:06 Received From : +21:46:06 ============================================================================ +21:46:06 FNo. Len. Field Value +21:46:06 ============================================================================ +21:46:06 [ 1] [ 4] [0810] +21:46:06 [ 7] [ 10] [0320024514] +21:46:06 [ 11] [ 6] [158565] +21:46:06 [ 39] [ 2] [00] +21:46:06 [ 70] [ 3] [301] +21:46:06 ============================================================================ +21:46:06 Calculate Source COMM Id = 2 +21:46:06 ============================================================================ +21:46:06 + + +waiting on router queue for slot.... +21:46:18 ============================================================================ +21:46:18 Slot Id : <307> +21:46:18 Transaction Type : REQUEST +21:46:18 Received From : +21:46:18 ============================================================================ +21:46:18 FNo. Len. Field Value +21:46:18 ============================================================================ +21:46:18 [ 1] [ 4] [0800] +21:46:18 [ 7] [ 10] [0320024525] +21:46:18 [ 11] [ 6] [158566] +21:46:18 [ 70] [ 3] [301] +21:46:18 ============================================================================ +21:46:18 + + +waiting on router queue for slot.... +21:46:18 Sending to : +21:46:18 ============================================================================ +21:46:18 ============================================================================ +21:46:18 Slot Id : <307> +21:46:18 Transaction Type : RESPONSE +21:46:18 Received From : +21:46:18 ============================================================================ +21:46:18 FNo. Len. Field Value +21:46:18 ============================================================================ +21:46:18 [ 1] [ 4] [0810] +21:46:18 [ 7] [ 10] [0320024525] +21:46:18 [ 11] [ 6] [158566] +21:46:18 [ 39] [ 2] [00] +21:46:18 [ 70] [ 3] [301] +21:46:18 ============================================================================ +21:46:18 Calculate Source COMM Id = 2 +21:46:18 ============================================================================ +21:46:18 + + +waiting on router queue for slot.... +21:46:21 ============================================================================ +21:46:21 Slot Id : <288> +21:46:21 Transaction Type : REQUEST +21:46:21 Received From : +21:46:21 ============================================================================ +21:46:21 FNo. Len. Field Value +21:46:21 ============================================================================ +21:46:21 [ 1] [ 4] [0800] +21:46:21 [ 7] [ 10] [0320144412] +21:46:21 [ 11] [ 6] [067289] +21:46:21 [ 37] [ 12] [57921067289] +21:46:21 [ 70] [ 3] [301] +21:46:21 ============================================================================ +21:46:21 + + +waiting on router queue for slot.... +21:46:21 Sending to : +21:46:21 ============================================================================ +21:46:21 ============================================================================ +21:46:21 Slot Id : <288> +21:46:21 Transaction Type : RESPONSE +21:46:21 Received From : +21:46:21 ============================================================================ +21:46:21 FNo. Len. Field Value +21:46:21 ============================================================================ +21:46:21 [ 1] [ 4] [0810] +21:46:21 [ 7] [ 10] [0320144412] +21:46:21 [ 11] [ 6] [067289] +21:46:21 [ 37] [ 12] [579210672890] +21:46:21 [ 39] [ 2] [00] +21:46:21 [ 70] [ 3] [810] +21:46:21 ============================================================================ +21:46:21 Calculate Source COMM Id = 4 +21:46:21 ============================================================================ +21:46:21 + + +waiting on router queue for slot.... +21:46:32 ============================================================================ +21:46:32 Slot Id : <310> +21:46:32 Transaction Type : REQUEST +21:46:32 Received From : +21:46:32 ============================================================================ +21:46:32 FNo. Len. Field Value +21:46:32 ============================================================================ +21:46:32 [ 1] [ 4] [0800] +21:46:32 [ 7] [ 10] [0320024541] +21:46:32 [ 11] [ 6] [158567] +21:46:32 [ 70] [ 3] [301] +21:46:32 ============================================================================ +21:46:32 + + +waiting on router queue for slot.... +21:46:32 Sending to : +21:46:32 ============================================================================ +21:46:32 ============================================================================ +21:46:32 Slot Id : <310> +21:46:32 Transaction Type : RESPONSE +21:46:32 Received From : +21:46:32 ============================================================================ +21:46:32 FNo. Len. Field Value +21:46:32 ============================================================================ +21:46:32 [ 1] [ 4] [0810] +21:46:32 [ 7] [ 10] [0320024541] +21:46:32 [ 11] [ 6] [158567] +21:46:32 [ 39] [ 2] [00] +21:46:32 [ 70] [ 3] [301] +21:46:32 ============================================================================ +21:46:32 Calculate Source COMM Id = 2 +21:46:32 ============================================================================ +21:46:32 + + +waiting on router queue for slot.... +21:46:43 ============================================================================ +21:46:43 Slot Id : <316> +21:46:43 Transaction Type : REQUEST +21:46:43 Received From : +21:46:43 ============================================================================ +21:46:43 FNo. Len. Field Value +21:46:43 ============================================================================ +21:46:43 [ 1] [ 4] [0800] +21:46:43 [ 7] [ 10] [0320024551] +21:46:43 [ 11] [ 6] [158568] +21:46:43 [ 70] [ 3] [301] +21:46:43 ============================================================================ +21:46:43 + + +waiting on router queue for slot.... +21:46:43 Sending to : +21:46:43 ============================================================================ +21:46:43 ============================================================================ +21:46:43 Slot Id : <316> +21:46:43 Transaction Type : RESPONSE +21:46:43 Received From : +21:46:43 ============================================================================ +21:46:43 FNo. Len. Field Value +21:46:43 ============================================================================ +21:46:43 [ 1] [ 4] [0810] +21:46:43 [ 7] [ 10] [0320024551] +21:46:43 [ 11] [ 6] [158568] +21:46:43 [ 39] [ 2] [00] +21:46:43 [ 70] [ 3] [301] +21:46:43 ============================================================================ +21:46:43 Calculate Source COMM Id = 2 +21:46:43 ============================================================================ +21:46:43 + + +waiting on router queue for slot.... +21:46:44 ============================================================================ +21:46:44 Slot Id : <317> +21:46:44 Transaction Type : REQUEST +21:46:44 Received From : +21:46:44 ============================================================================ +21:46:44 FNo. Len. Field Value +21:46:44 ============================================================================ +21:46:44 [ 1] [ 4] [0800] +21:46:44 [ 7] [ 10] [0321045833] +21:46:44 [ 11] [ 6] [215833] +21:46:44 [ 37] [ 12] [57921215833] +21:46:44 [ 70] [ 3] [301] +21:46:44 ============================================================================ +21:46:44 + + +waiting on router queue for slot.... +21:46:44 Sending to : +21:46:44 ============================================================================ +21:46:44 ============================================================================ +21:46:44 Slot Id : <317> +21:46:44 Transaction Type : RESPONSE +21:46:44 Received From : +21:46:44 ============================================================================ +21:46:44 FNo. Len. Field Value +21:46:44 ============================================================================ +21:46:44 [ 1] [ 4] [0810] +21:46:44 [ 7] [ 10] [0321045833] +21:46:44 [ 11] [ 6] [215833] +21:46:44 [ 37] [ 12] [579212158330] +21:46:44 [ 39] [ 2] [00] +21:46:44 [ 70] [ 3] [810] +21:46:44 ============================================================================ +21:46:44 Calculate Source COMM Id = 6 +21:46:44 ============================================================================ +21:46:44 + + +waiting on router queue for slot.... +21:46:48 ============================================================================ +21:46:48 Slot Id : <325> +21:46:48 Transaction Type : REQUEST +21:46:48 Received From : +21:46:48 ============================================================================ +21:46:48 FNo. Len. Field Value +21:46:48 ============================================================================ +21:46:48 [ 1] [ 4] [0800] +21:46:48 [ 2] [ 5] [02531] +21:46:48 [ 3] [ 6] [579218] +21:46:48 [ 7] [ 10] [0320144648] +21:46:48 [ 11] [ 6] [807676] +21:46:48 [ 15] [ 10] [0320144648] +21:46:48 [ 37] [ 11] [57921807676] +21:46:48 [ 70] [ 3] [001] +21:46:48 ============================================================================ +21:46:48 + + +waiting on router queue for slot.... +21:46:48 ============================================================================ +21:46:48 Slot Id : <325> +21:46:48 Transaction Type : RESPONSE +21:46:48 Received From : +21:46:48 ============================================================================ +21:46:48 FNo. Len. Field Value +21:46:48 ============================================================================ +21:46:48 [ 1] [ 4] [0810] +21:46:48 [ 7] [ 10] [0320144648] +21:46:48 [ 11] [ 6] [807676] +21:46:48 [ 15] [ 4] [0320] +21:46:48 [ 37] [ 12] [57921807676] +21:46:48 [ 39] [ 2] [00] +21:46:48 [ 70] [ 3] [001] +21:46:48 ============================================================================ +21:46:48 Sending to : +21:46:48 ============================================================================ +21:46:48 + + +waiting on router queue for slot.... +21:46:59 ============================================================================ +21:46:59 Slot Id : <318> +21:46:59 Transaction Type : REQUEST +21:46:59 Received From : +21:46:59 ============================================================================ +21:46:59 FNo. Len. Field Value +21:46:59 ============================================================================ +21:46:59 [ 1] [ 4] [0800] +21:46:59 [ 7] [ 10] [0320024607] +21:46:59 [ 11] [ 6] [158569] +21:46:59 [ 70] [ 3] [301] +21:46:59 ============================================================================ +21:46:59 + + +waiting on router queue for slot.... +21:46:59 Sending to : +21:46:59 ============================================================================ +21:46:59 ============================================================================ +21:46:59 Slot Id : <318> +21:46:59 Transaction Type : RESPONSE +21:46:59 Received From : +21:46:59 ============================================================================ +21:46:59 FNo. Len. Field Value +21:46:59 ============================================================================ +21:46:59 [ 1] [ 4] [0810] +21:46:59 [ 7] [ 10] [0320024607] +21:46:59 [ 11] [ 6] [158569] +21:46:59 [ 39] [ 2] [00] +21:46:59 [ 70] [ 3] [301] +21:46:59 ============================================================================ +21:46:59 Calculate Source COMM Id = 2 +21:46:59 ============================================================================ +21:46:59 + + +waiting on router queue for slot.... +21:47:10 ============================================================================ +21:47:10 Slot Id : <322> +21:47:10 Transaction Type : REQUEST +21:47:10 Received From : +21:47:10 ============================================================================ +21:47:10 FNo. Len. Field Value +21:47:10 ============================================================================ +21:47:10 [ 1] [ 4] [0800] +21:47:10 [ 7] [ 10] [0320024618] +21:47:10 [ 11] [ 6] [158570] +21:47:10 [ 70] [ 3] [301] +21:47:10 ============================================================================ +21:47:10 + + +waiting on router queue for slot.... +21:47:10 Sending to : +21:47:10 ============================================================================ +21:47:10 ============================================================================ +21:47:10 Slot Id : <322> +21:47:10 Transaction Type : RESPONSE +21:47:10 Received From : +21:47:10 ============================================================================ +21:47:10 FNo. Len. Field Value +21:47:10 ============================================================================ +21:47:10 [ 1] [ 4] [0810] +21:47:10 [ 7] [ 10] [0320024618] +21:47:10 [ 11] [ 6] [158570] +21:47:10 [ 39] [ 2] [00] +21:47:10 [ 70] [ 3] [301] +21:47:10 ============================================================================ +21:47:10 Calculate Source COMM Id = 2 +21:47:10 ============================================================================ +21:47:10 + + +waiting on router queue for slot.... +21:47:14 ============================================================================ +21:47:14 Slot Id : <297> +21:47:14 Transaction Type : REQUEST +21:47:14 Received From : +21:47:14 ============================================================================ +21:47:14 FNo. Len. Field Value +21:47:14 ============================================================================ +21:47:14 [ 1] [ 4] [0200] +21:47:14 [ 2] [ 16] [2206990000128066] +21:47:14 [ 3] [ 6] [301000] +21:47:14 [ 4] [ 12] [000000000000] +21:47:14 [ 7] [ 10] [0320214505] +21:47:14 [ 11] [ 6] [957827] +21:47:14 [ 12] [ 6] [214505] +21:47:14 [ 13] [ 4] [0320] +21:47:14 [ 15] [ 4] [0320] +21:47:14 [ 18] [ 4] [6011] +21:47:14 [ 19] [ 3] [418] +21:47:14 [ 22] [ 3] [021] +21:47:14 [ 25] [ 2] [01] +21:47:14 [ 28] [ 9] [D00000000] +21:47:14 [ 32] [ 6] [668899] +21:47:14 [ 35] [ 32] [2206990000128066=980412619520269] +21:47:14 [ 37] [ 12] [507902224543] +21:47:14 [ 41] [ 8] [03008005] +21:47:14 [ 42] [ 15] [APT ] +21:47:14 [ 43] [ 40] [ SAMTAI UNIT SAMNEAU LA] +21:47:14 [ 49] [ 3] [418] +21:47:14 [ 52] [ 16] [D90F086AFA5D5D49] +21:47:14 ============================================================================ +21:47:14 + + +waiting on router queue for slot.... +21:47:14 Sending to : +21:47:14 ============================================================================ +21:47:14 Sending to : +21:47:14 ============================================================================ +21:47:14 ============================================================================ +21:47:14 Slot Id : <297> +21:47:14 Transaction Type : REQUEST +21:47:14 Received From : +21:47:14 ============================================================================ +21:47:14 FNo. Len. Field Value +21:47:14 ============================================================================ +21:47:14 [ 1] [ 4] [0200] +21:47:14 [ 2] [ 16] [2206990000128066] +21:47:14 [ 3] [ 6] [301000] +21:47:14 [ 4] [ 12] [000000000000] +21:47:14 [ 7] [ 10] [0320214505] +21:47:14 [ 11] [ 6] [957827] +21:47:14 [ 12] [ 6] [214505] +21:47:14 [ 13] [ 4] [0320] +21:47:14 [ 15] [ 4] [0320] +21:47:14 [ 18] [ 4] [6011] +21:47:14 [ 19] [ 3] [418] +21:47:14 [ 22] [ 3] [021] +21:47:14 [ 25] [ 2] [01] +21:47:14 [ 28] [ 9] [D00000000] +21:47:14 [ 32] [ 6] [668899] +21:47:14 [ 35] [ 32] [2206990000128066=980412619520269] +21:47:14 [ 37] [ 12] [507902224543] +21:47:14 [ 41] [ 8] [03008005] +21:47:14 [ 42] [ 15] [APT ] +21:47:14 [ 43] [ 40] [ SAMTAI UNIT SAMNEAU LA] +21:47:14 [ 49] [ 3] [418] +21:47:14 [ 52] [ 16] [D90F086AFA5D5D49] +21:47:14 ============================================================================ +21:47:14 + + +waiting on router queue for slot.... +21:47:14 Sending to : +21:47:14 ============================================================================ +21:47:14 ============================================================================ +21:47:14 Slot Id : <297> +21:47:14 Transaction Type : REQUEST +21:47:14 Received From : +21:47:14 ============================================================================ +21:47:14 FNo. Len. Field Value +21:47:14 ============================================================================ +21:47:14 [ 1] [ 4] [0200] +21:47:14 [ 2] [ 16] [2206990000128066] +21:47:14 [ 3] [ 6] [301000] +21:47:14 [ 4] [ 12] [000000000000] +21:47:14 [ 7] [ 10] [0320214505] +21:47:14 [ 11] [ 6] [957827] +21:47:14 [ 12] [ 6] [214505] +21:47:14 [ 13] [ 4] [0320] +21:47:14 [ 15] [ 4] [0320] +21:47:14 [ 18] [ 4] [6011] +21:47:14 [ 19] [ 3] [418] +21:47:14 [ 22] [ 3] [021] +21:47:14 [ 25] [ 2] [01] +21:47:14 [ 28] [ 9] [D00000000] +21:47:14 [ 32] [ 6] [668899] +21:47:14 [ 35] [ 32] [2206990000128066=980412619520269] +21:47:14 [ 37] [ 12] [507902224543] +21:47:14 [ 41] [ 8] [03008005] +21:47:14 [ 42] [ 15] [APT ] +21:47:14 [ 43] [ 40] [ SAMTAI UNIT SAMNEAU LA] +21:47:14 [ 49] [ 3] [418] +21:47:14 [ 52] [ 16] [1F6C27E6485111E5] +21:47:14 ============================================================================ +21:47:14 + + +waiting on router queue for slot.... +21:47:14 Sending to : <1> +21:47:14 ============================================================================ +21:47:15 ============================================================================ +21:47:15 Slot Id : <315> +21:47:15 Transaction Type : REQUEST +21:47:15 Received From : +21:47:15 ============================================================================ +21:47:15 FNo. Len. Field Value +21:47:15 ============================================================================ +21:47:15 [ 1] [ 4] [0200] +21:47:15 [ 2] [ 16] [6688990102949102] +21:47:15 [ 3] [ 6] [010000] +21:47:15 [ 4] [ 12] [000020000000] +21:47:15 [ 7] [ 10] [0320214712] +21:47:15 [ 11] [ 6] [847359] +21:47:15 [ 12] [ 6] [214712] +21:47:15 [ 13] [ 4] [0320] +21:47:15 [ 15] [ 4] [0320] +21:47:15 [ 18] [ 4] [6011] +21:47:15 [ 22] [ 3] [900] +21:47:15 [ 25] [ 2] [02] +21:47:15 [ 28] [ 9] [D00002000] +21:47:15 [ 32] [ 6] [621354] +21:47:15 [ 35] [ 37] [6688990102949102=42111231910283100000] +21:47:15 [ 37] [ 12] [507903625950] +21:47:15 [ 41] [ 8] [16001500] +21:47:15 [ 42] [ 15] [NATIVE ] +21:47:15 [ 43] [ 40] [Sea game Village Xaythany LAO] +21:47:15 [ 49] [ 3] [418] +21:47:15 [ 52] [ 16] [CA1F58A3AB499C64] +21:47:15 ============================================================================ +21:47:15 + + +waiting on router queue for slot.... +21:47:15 Sending to : +21:47:15 ============================================================================ +21:47:15 Sending to : +21:47:15 ============================================================================ +21:47:16 ============================================================================ +21:47:16 Slot Id : <315> +21:47:16 Transaction Type : REQUEST +21:47:16 Received From : +21:47:16 ============================================================================ +21:47:16 FNo. Len. Field Value +21:47:16 ============================================================================ +21:47:16 [ 1] [ 4] [0200] +21:47:16 [ 2] [ 16] [6688990102949102] +21:47:16 [ 3] [ 6] [010000] +21:47:16 [ 4] [ 12] [000020000000] +21:47:16 [ 7] [ 10] [0320214712] +21:47:16 [ 11] [ 6] [847359] +21:47:16 [ 12] [ 6] [214712] +21:47:16 [ 13] [ 4] [0320] +21:47:16 [ 15] [ 4] [0320] +21:47:16 [ 18] [ 4] [6011] +21:47:16 [ 22] [ 3] [900] +21:47:16 [ 25] [ 2] [02] +21:47:16 [ 28] [ 9] [D00002000] +21:47:16 [ 32] [ 6] [621354] +21:47:16 [ 35] [ 37] [6688990102949102=42111231910283100000] +21:47:16 [ 37] [ 12] [507903625950] +21:47:16 [ 41] [ 8] [16001500] +21:47:16 [ 42] [ 15] [NATIVE ] +21:47:16 [ 43] [ 40] [Sea game Village Xaythany LAO] +21:47:16 [ 49] [ 3] [418] +21:47:16 [ 52] [ 16] [CA1F58A3AB499C64] +21:47:16 ============================================================================ +21:47:16 + + +waiting on router queue for slot.... +21:47:16 Sending to : +21:47:16 ============================================================================ +21:47:16 ============================================================================ +21:47:16 Slot Id : <315> +21:47:16 Transaction Type : REQUEST +21:47:16 Received From : +21:47:16 ============================================================================ +21:47:16 FNo. Len. Field Value +21:47:16 ============================================================================ +21:47:16 [ 1] [ 4] [0200] +21:47:16 [ 2] [ 16] [6688990102949102] +21:47:16 [ 3] [ 6] [010000] +21:47:16 [ 4] [ 12] [000020000000] +21:47:16 [ 7] [ 10] [0320214712] +21:47:16 [ 11] [ 6] [847359] +21:47:16 [ 12] [ 6] [214712] +21:47:16 [ 13] [ 4] [0320] +21:47:16 [ 15] [ 4] [0320] +21:47:16 [ 18] [ 4] [6011] +21:47:16 [ 22] [ 3] [900] +21:47:16 [ 25] [ 2] [02] +21:47:16 [ 28] [ 9] [D00002000] +21:47:16 [ 32] [ 6] [621354] +21:47:16 [ 35] [ 37] [6688990102949102=42111231910283100000] +21:47:16 [ 37] [ 12] [507903625950] +21:47:16 [ 41] [ 8] [16001500] +21:47:16 [ 42] [ 15] [NATIVE ] +21:47:16 [ 43] [ 40] [Sea game Village Xaythany LAO] +21:47:16 [ 49] [ 3] [418] +21:47:16 [ 52] [ 16] [8227D830112BDD34] +21:47:16 ============================================================================ +21:47:16 + + +waiting on router queue for slot.... +21:47:16 Sending to : <4> +21:47:16 ============================================================================ +21:47:16 ============================================================================ +21:47:16 Slot Id : <297> +21:47:16 Transaction Type : RESPONSE +21:47:16 Received From : +21:47:16 ============================================================================ +21:47:16 FNo. Len. Field Value +21:47:16 ============================================================================ +21:47:16 [ 1] [ 4] [0210] +21:47:16 [ 2] [ 16] [2206990000128066] +21:47:16 [ 3] [ 6] [301000] +21:47:16 [ 4] [ 12] [000000000000] +21:47:16 [ 7] [ 10] [0320214505] +21:47:16 [ 11] [ 6] [957827] +21:47:16 [ 12] [ 6] [214505] +21:47:16 [ 13] [ 4] [0320] +21:47:16 [ 15] [ 4] [0320] +21:47:16 [ 18] [ 4] [6011] +21:47:16 [ 32] [ 6] [668899] +21:47:16 [ 35] [ 32] [2206990000128066=980412619520269] +21:47:16 [ 37] [ 12] [507902224543] +21:47:16 [ 38] [ 6] [807003] +21:47:16 [ 39] [ 2] [00] +21:47:16 [ 41] [ 8] [03008005] +21:47:16 [ 49] [ 3] [418] +21:47:16 [ 54] [ 40] [1001418C0000083333001002418C000008333300] +21:47:16 ============================================================================ +21:47:16 Sending to : +21:47:16 ============================================================================ +21:47:16 + + +waiting on router queue for slot.... +21:47:17 ============================================================================ +21:47:17 Slot Id : <315> +21:47:17 Transaction Type : RESPONSE +21:47:17 Received From : +21:47:17 ============================================================================ +21:47:17 FNo. Len. Field Value +21:47:17 ============================================================================ +21:47:17 [ 1] [ 4] [0210] +21:47:17 [ 2] [ 16] [6688990102949102] +21:47:17 [ 3] [ 6] [010000] +21:47:17 [ 4] [ 12] [000020000000] +21:47:17 [ 11] [ 6] [847359] +21:47:17 [ 12] [ 6] [214712] +21:47:17 [ 15] [ 4] [0320] +21:47:17 [ 18] [ 4] [6011] +21:47:17 [ 32] [ 6] [621354] +21:47:17 [ 35] [ 37] [6688990102949102=42111231910283100000] +21:47:17 [ 37] [ 12] [507903625950] +21:47:17 [ 38] [ 6] [224711] +21:47:17 [ 39] [ 2] [00] +21:47:17 [ 41] [ 8] [16001500] +21:47:17 [ 49] [ 3] [418] +21:47:17 [ 54] [ 20] [0002418C000002101577] +21:47:17 ============================================================================ +21:47:17 Sending to : +21:47:17 ============================================================================ +21:47:17 + + +waiting on router queue for slot.... +21:47:17 ============================================================================ +21:47:17 Slot Id : <297> +21:47:17 Transaction Type : RESPONSE +21:47:17 Received From : +21:47:17 ============================================================================ +21:47:17 FNo. Len. Field Value +21:47:17 ============================================================================ +21:47:17 [ 1] [ 4] [0210] +21:47:17 [ 2] [ 16] [2206990000128066] +21:47:17 [ 3] [ 6] [301000] +21:47:17 [ 4] [ 12] [000000000000] +21:47:17 [ 7] [ 10] [0320214505] +21:47:17 [ 11] [ 6] [957827] +21:47:17 [ 12] [ 6] [214505] +21:47:17 [ 13] [ 4] [0320] +21:47:17 [ 15] [ 4] [0320] +21:47:17 [ 18] [ 4] [6011] +21:47:17 [ 32] [ 6] [668899] +21:47:17 [ 35] [ 32] [2206990000128066=980412619520269] +21:47:17 [ 37] [ 12] [507902224543] +21:47:17 [ 38] [ 6] [807003] +21:47:17 [ 39] [ 2] [00] +21:47:17 [ 41] [ 8] [03008005] +21:47:17 [ 49] [ 3] [418] +21:47:17 [ 54] [ 40] [1001418C0000083333001002418C000008333300] +21:47:17 ============================================================================ +21:47:17 Calculate Source COMM Id = 4 +21:47:17 ============================================================================ +21:47:17 + + +waiting on router queue for slot.... +21:47:19 ============================================================================ +21:47:19 Slot Id : <315> +21:47:19 Transaction Type : RESPONSE +21:47:19 Received From : +21:47:19 ============================================================================ +21:47:19 FNo. Len. Field Value +21:47:19 ============================================================================ +21:47:19 [ 1] [ 4] [0210] +21:47:19 [ 2] [ 16] [6688990102949102] +21:47:19 [ 3] [ 6] [010000] +21:47:19 [ 4] [ 12] [000020000000] +21:47:19 [ 11] [ 6] [847359] +21:47:19 [ 12] [ 6] [214712] +21:47:19 [ 15] [ 4] [0320] +21:47:19 [ 18] [ 4] [6011] +21:47:19 [ 32] [ 6] [621354] +21:47:19 [ 35] [ 37] [6688990102949102=42111231910283100000] +21:47:19 [ 37] [ 12] [507903625950] +21:47:19 [ 38] [ 6] [224711] +21:47:19 [ 39] [ 2] [00] +21:47:19 [ 41] [ 8] [16001500] +21:47:19 [ 49] [ 3] [418] +21:47:19 [ 54] [ 20] [0002418C000002101577] +21:47:19 ============================================================================ +21:47:19 Calculate Source COMM Id = 0 +21:47:19 ============================================================================ +21:47:19 + + +waiting on router queue for slot.... +21:47:20 ============================================================================ +21:47:20 Slot Id : <289> +21:47:20 Transaction Type : REQUEST +21:47:20 Received From : +21:47:20 ============================================================================ +21:47:20 FNo. Len. Field Value +21:47:20 ============================================================================ +21:47:20 [ 1] [ 4] [0800] +21:47:20 [ 7] [ 10] [0320024629] +21:47:20 [ 11] [ 6] [158571] +21:47:20 [ 70] [ 3] [301] +21:47:20 ============================================================================ +21:47:20 + + +waiting on router queue for slot.... +21:47:20 Sending to : +21:47:20 ============================================================================ +21:47:20 ============================================================================ +21:47:20 Slot Id : <289> +21:47:20 Transaction Type : RESPONSE +21:47:20 Received From : +21:47:20 ============================================================================ +21:47:20 FNo. Len. Field Value +21:47:20 ============================================================================ +21:47:20 [ 1] [ 4] [0810] +21:47:20 [ 7] [ 10] [0320024629] +21:47:20 [ 11] [ 6] [158571] +21:47:20 [ 39] [ 2] [00] +21:47:20 [ 70] [ 3] [301] +21:47:20 ============================================================================ +21:47:20 Calculate Source COMM Id = 2 +21:47:20 ============================================================================ +21:47:20 + + +waiting on router queue for slot.... +21:47:21 ============================================================================ +21:47:21 Slot Id : <304> +21:47:21 Transaction Type : REQUEST +21:47:21 Received From : +21:47:21 ============================================================================ +21:47:21 FNo. Len. Field Value +21:47:21 ============================================================================ +21:47:21 [ 1] [ 4] [0200] +21:47:21 [ 2] [ 16] [6213544001963500] +21:47:21 [ 3] [ 6] [300000] +21:47:21 [ 4] [ 12] [000000000000] +21:47:21 [ 7] [ 10] [0320214512] +21:47:21 [ 11] [ 6] [957830] +21:47:21 [ 12] [ 6] [214512] +21:47:21 [ 13] [ 4] [0320] +21:47:21 [ 15] [ 4] [0320] +21:47:21 [ 18] [ 4] [6011] +21:47:21 [ 19] [ 3] [418] +21:47:21 [ 22] [ 3] [021] +21:47:21 [ 25] [ 2] [01] +21:47:21 [ 28] [ 9] [D00000000] +21:47:21 [ 32] [ 6] [668899] +21:47:21 [ 35] [ 32] [6213544001963500=491212016350088] +21:47:21 [ 37] [ 12] [507902088538] +21:47:21 [ 41] [ 8] [03006008] +21:47:21 [ 42] [ 15] [APT ] +21:47:21 [ 43] [ 40] [ TECHNICAL SCHOOL BAN PHOU] +21:47:21 [ 49] [ 3] [418] +21:47:21 [ 52] [ 16] [07D22EAA7A53F70D] +21:47:21 ============================================================================ +21:47:21 + + +waiting on router queue for slot.... +21:47:21 Sending to : +21:47:21 ============================================================================ +21:47:21 Sending to : +21:47:21 ============================================================================ +21:47:22 ============================================================================ +21:47:22 Slot Id : <304> +21:47:22 Transaction Type : REQUEST +21:47:22 Received From : +21:47:22 ============================================================================ +21:47:22 FNo. Len. Field Value +21:47:22 ============================================================================ +21:47:22 [ 1] [ 4] [0200] +21:47:22 [ 2] [ 16] [6213544001963500] +21:47:22 [ 3] [ 6] [300000] +21:47:22 [ 4] [ 12] [000000000000] +21:47:22 [ 7] [ 10] [0320214512] +21:47:22 [ 11] [ 6] [957830] +21:47:22 [ 12] [ 6] [214512] +21:47:22 [ 13] [ 4] [0320] +21:47:22 [ 15] [ 4] [0320] +21:47:22 [ 18] [ 4] [6011] +21:47:22 [ 19] [ 3] [418] +21:47:22 [ 22] [ 3] [021] +21:47:22 [ 25] [ 2] [01] +21:47:22 [ 28] [ 9] [D00000000] +21:47:22 [ 32] [ 6] [668899] +21:47:22 [ 35] [ 32] [6213544001963500=491212016350088] +21:47:22 [ 37] [ 12] [507902088538] +21:47:22 [ 41] [ 8] [03006008] +21:47:22 [ 42] [ 15] [APT ] +21:47:22 [ 43] [ 40] [ TECHNICAL SCHOOL BAN PHOU] +21:47:22 [ 49] [ 3] [418] +21:47:22 [ 52] [ 16] [07D22EAA7A53F70D] +21:47:22 ============================================================================ +21:47:22 + + +waiting on router queue for slot.... +21:47:22 Sending to : +21:47:22 ============================================================================ +21:47:22 ============================================================================ +21:47:22 Slot Id : <304> +21:47:22 Transaction Type : REQUEST +21:47:22 Received From : +21:47:22 ============================================================================ +21:47:22 FNo. Len. Field Value +21:47:22 ============================================================================ +21:47:22 [ 1] [ 4] [0200] +21:47:22 [ 2] [ 16] [6213544001963500] +21:47:22 [ 3] [ 6] [300000] +21:47:22 [ 4] [ 12] [000000000000] +21:47:22 [ 7] [ 10] [0320214512] +21:47:22 [ 11] [ 6] [957830] +21:47:22 [ 12] [ 6] [214512] +21:47:22 [ 13] [ 4] [0320] +21:47:22 [ 15] [ 4] [0320] +21:47:22 [ 18] [ 4] [6011] +21:47:22 [ 19] [ 3] [418] +21:47:22 [ 22] [ 3] [021] +21:47:22 [ 25] [ 2] [01] +21:47:22 [ 28] [ 9] [D00000000] +21:47:22 [ 32] [ 6] [668899] +21:47:22 [ 35] [ 32] [6213544001963500=491212016350088] +21:47:22 [ 37] [ 12] [507902088538] +21:47:22 [ 41] [ 8] [03006008] +21:47:22 [ 42] [ 15] [APT ] +21:47:22 [ 43] [ 40] [ TECHNICAL SCHOOL BAN PHOU] +21:47:22 [ 49] [ 3] [418] +21:47:22 [ 52] [ 16] [BC4B35F6E1C698F9] +21:47:22 ============================================================================ +21:47:22 + + +waiting on router queue for slot.... +21:47:22 Sending to : <0> +21:47:22 ============================================================================ +21:47:22 ============================================================================ +21:47:22 Slot Id : <304> +21:47:22 Transaction Type : RESPONSE +21:47:22 Received From : +21:47:22 ============================================================================ +21:47:22 FNo. Len. Field Value +21:47:22 ============================================================================ +21:47:22 [ 1] [ 4] [0210] +21:47:22 [ 2] [ 16] [6213544001963500] +21:47:22 [ 3] [ 6] [300000] +21:47:22 [ 4] [ 12] [000000000000] +21:47:22 [ 7] [ 10] [0320214512] +21:47:22 [ 11] [ 6] [957830] +21:47:22 [ 12] [ 6] [214512] +21:47:22 [ 13] [ 4] [0320] +21:47:22 [ 15] [ 4] [0320] +21:47:22 [ 18] [ 4] [6011] +21:47:22 [ 19] [ 3] [418] +21:47:22 [ 32] [ 6] [668899] +21:47:22 [ 35] [ 32] [6213544001963500=491212016350088] +21:47:22 [ 37] [ 12] [507902088538] +21:47:22 [ 38] [ 6] [488067] +21:47:22 [ 39] [ 2] [00] +21:47:22 [ 41] [ 8] [03006008] +21:47:22 [ 49] [ 3] [418] +21:47:22 [ 54] [ 40] [0001418C0000055960150002418C000005596015] +21:47:22 ============================================================================ +21:47:22 Sending to : +21:47:22 ============================================================================ +21:47:22 + + +waiting on router queue for slot.... +21:47:23 ============================================================================ +21:47:23 Slot Id : <304> +21:47:23 Transaction Type : RESPONSE +21:47:23 Received From : +21:47:23 ============================================================================ +21:47:23 FNo. Len. Field Value +21:47:23 ============================================================================ +21:47:23 [ 1] [ 4] [0210] +21:47:23 [ 2] [ 16] [6213544001963500] +21:47:23 [ 3] [ 6] [300000] +21:47:23 [ 4] [ 12] [000000000000] +21:47:23 [ 7] [ 10] [0320214512] +21:47:23 [ 11] [ 6] [957830] +21:47:23 [ 12] [ 6] [214512] +21:47:23 [ 13] [ 4] [0320] +21:47:23 [ 15] [ 4] [0320] +21:47:23 [ 18] [ 4] [6011] +21:47:23 [ 19] [ 3] [418] +21:47:23 [ 32] [ 6] [668899] +21:47:23 [ 35] [ 32] [6213544001963500=491212016350088] +21:47:23 [ 37] [ 12] [507902088538] +21:47:23 [ 38] [ 6] [488067] +21:47:23 [ 39] [ 2] [00] +21:47:23 [ 41] [ 8] [03006008] +21:47:23 [ 49] [ 3] [418] +21:47:23 [ 54] [ 40] [0001418C0000055960150002418C000005596015] +21:47:23 ============================================================================ +21:47:23 Calculate Source COMM Id = 4 +21:47:23 ============================================================================ +21:47:23 + + +waiting on router queue for slot.... +21:47:31 ============================================================================ +21:47:31 Slot Id : <326> +21:47:31 Transaction Type : REQUEST +21:47:31 Received From : +21:47:31 ============================================================================ +21:47:31 FNo. Len. Field Value +21:47:31 ============================================================================ +21:47:31 [ 1] [ 4] [0800] +21:47:31 [ 7] [ 10] [0320024640] +21:47:31 [ 11] [ 6] [158572] +21:47:31 [ 70] [ 3] [301] +21:47:31 ============================================================================ +21:47:31 + + +waiting on router queue for slot.... +21:47:31 Sending to : +21:47:31 ============================================================================ +21:47:31 ============================================================================ +21:47:31 Slot Id : <326> +21:47:31 Transaction Type : RESPONSE +21:47:31 Received From : +21:47:31 ============================================================================ +21:47:31 FNo. Len. Field Value +21:47:31 ============================================================================ +21:47:31 [ 1] [ 4] [0810] +21:47:31 [ 7] [ 10] [0320024640] +21:47:31 [ 11] [ 6] [158572] +21:47:31 [ 39] [ 2] [00] +21:47:31 [ 70] [ 3] [301] +21:47:31 ============================================================================ +21:47:31 Calculate Source COMM Id = 2 +21:47:31 ============================================================================ +21:47:31 + + +waiting on router queue for slot.... +21:47:42 ============================================================================ +21:47:42 Slot Id : <291> +21:47:42 Transaction Type : REQUEST +21:47:42 Received From : +21:47:42 ============================================================================ +21:47:42 FNo. Len. Field Value +21:47:42 ============================================================================ +21:47:42 [ 1] [ 4] [0800] +21:47:42 [ 7] [ 10] [0320024650] +21:47:42 [ 11] [ 6] [158573] +21:47:42 [ 70] [ 3] [301] +21:47:42 ============================================================================ +21:47:42 + + +waiting on router queue for slot.... +21:47:42 Sending to : +21:47:42 ============================================================================ +21:47:42 ============================================================================ +21:47:42 Slot Id : <291> +21:47:42 Transaction Type : RESPONSE +21:47:42 Received From : +21:47:42 ============================================================================ +21:47:42 FNo. Len. Field Value +21:47:42 ============================================================================ +21:47:42 [ 1] [ 4] [0810] +21:47:42 [ 7] [ 10] [0320024650] +21:47:42 [ 11] [ 6] [158573] +21:47:42 [ 39] [ 2] [00] +21:47:42 [ 70] [ 3] [301] +21:47:42 ============================================================================ +21:47:42 Calculate Source COMM Id = 2 +21:47:42 ============================================================================ +21:47:42 + + +waiting on router queue for slot.... +21:47:49 ============================================================================ +21:47:49 Slot Id : <327> +21:47:49 Transaction Type : REQUEST +21:47:49 Received From : +21:47:49 ============================================================================ +21:47:49 FNo. Len. Field Value +21:47:49 ============================================================================ +21:47:49 [ 1] [ 4] [0800] +21:47:49 [ 7] [ 10] [0321045938] +21:47:49 [ 11] [ 6] [215938] +21:47:49 [ 37] [ 12] [57921215938] +21:47:49 [ 70] [ 3] [301] +21:47:49 ============================================================================ +21:47:49 + + +waiting on router queue for slot.... +21:47:49 Sending to : +21:47:49 ============================================================================ +21:47:49 ============================================================================ +21:47:49 Slot Id : <327> +21:47:49 Transaction Type : RESPONSE +21:47:49 Received From : +21:47:49 ============================================================================ +21:47:49 FNo. Len. Field Value +21:47:49 ============================================================================ +21:47:49 [ 1] [ 4] [0810] +21:47:49 [ 7] [ 10] [0321045938] +21:47:49 [ 11] [ 6] [215938] +21:47:49 [ 37] [ 12] [579212159380] +21:47:49 [ 39] [ 2] [00] +21:47:49 [ 70] [ 3] [810] +21:47:49 ============================================================================ +21:47:49 Calculate Source COMM Id = 6 +21:47:49 ============================================================================ +21:47:49 + + +waiting on router queue for slot.... +21:47:50 ============================================================================ +21:47:50 Slot Id : <285> +21:47:50 Transaction Type : REQUEST +21:47:50 Received From : +21:47:50 ============================================================================ +21:47:50 FNo. Len. Field Value +21:47:50 ============================================================================ +21:47:50 [ 1] [ 4] [0800] +21:47:50 [ 2] [ 5] [02531] +21:47:50 [ 3] [ 6] [579218] +21:47:50 [ 7] [ 10] [0320144750] +21:47:50 [ 11] [ 6] [807677] +21:47:50 [ 15] [ 10] [0320144750] +21:47:50 [ 37] [ 11] [57921807677] +21:47:50 [ 70] [ 3] [001] +21:47:50 ============================================================================ +21:47:50 + + +waiting on router queue for slot.... +21:47:50 ============================================================================ +21:47:50 Slot Id : <285> +21:47:50 Transaction Type : RESPONSE +21:47:50 Received From : +21:47:50 ============================================================================ +21:47:50 FNo. Len. Field Value +21:47:50 ============================================================================ +21:47:50 [ 1] [ 4] [0810] +21:47:50 [ 7] [ 10] [0320144750] +21:47:50 [ 11] [ 6] [807677] +21:47:50 [ 15] [ 4] [0320] +21:47:50 [ 37] [ 12] [57921807677] +21:47:50 [ 39] [ 2] [00] +21:47:50 [ 70] [ 3] [001] +21:47:50 ============================================================================ +21:47:50 Sending to : +21:47:50 ============================================================================ +21:47:50 + + +waiting on router queue for slot.... +21:47:53 ============================================================================ +21:47:53 Slot Id : <331> +21:47:53 Transaction Type : REQUEST +21:47:53 Received From : +21:47:53 ============================================================================ +21:47:53 FNo. Len. Field Value +21:47:53 ============================================================================ +21:47:53 [ 1] [ 4] [0800] +21:47:53 [ 7] [ 10] [0320024701] +21:47:53 [ 11] [ 6] [158574] +21:47:53 [ 70] [ 3] [301] +21:47:53 ============================================================================ +21:47:53 + + +waiting on router queue for slot.... +21:47:53 Sending to : +21:47:53 ============================================================================ +21:47:53 ============================================================================ +21:47:53 Slot Id : <331> +21:47:53 Transaction Type : RESPONSE +21:47:53 Received From : +21:47:53 ============================================================================ +21:47:53 FNo. Len. Field Value +21:47:53 ============================================================================ +21:47:53 [ 1] [ 4] [0810] +21:47:53 [ 7] [ 10] [0320024701] +21:47:53 [ 11] [ 6] [158574] +21:47:53 [ 39] [ 2] [00] +21:47:53 [ 70] [ 3] [301] +21:47:53 ============================================================================ +21:47:53 Calculate Source COMM Id = 2 +21:47:53 ============================================================================ +21:47:53 + + +waiting on router queue for slot.... +21:48:08 ============================================================================ +21:48:08 Slot Id : <301> +21:48:08 Transaction Type : REQUEST +21:48:08 Received From : +21:48:08 ============================================================================ +21:48:08 FNo. Len. Field Value +21:48:08 ============================================================================ +21:48:08 [ 1] [ 4] [0800] +21:48:08 [ 7] [ 10] [0320024717] +21:48:08 [ 11] [ 6] [158575] +21:48:08 [ 70] [ 3] [301] +21:48:08 ============================================================================ +21:48:08 + + +waiting on router queue for slot.... +21:48:08 Sending to : +21:48:08 ============================================================================ +21:48:08 ============================================================================ +21:48:08 Slot Id : <301> +21:48:08 Transaction Type : RESPONSE +21:48:08 Received From : +21:48:08 ============================================================================ +21:48:08 FNo. Len. Field Value +21:48:08 ============================================================================ +21:48:08 [ 1] [ 4] [0810] +21:48:08 [ 7] [ 10] [0320024717] +21:48:08 [ 11] [ 6] [158575] +21:48:08 [ 39] [ 2] [00] +21:48:08 [ 70] [ 3] [301] +21:48:08 ============================================================================ +21:48:08 Calculate Source COMM Id = 2 +21:48:08 ============================================================================ +21:48:08 + + +waiting on router queue for slot.... +21:48:19 ============================================================================ +21:48:19 Slot Id : <305> +21:48:19 Transaction Type : REQUEST +21:48:19 Received From : +21:48:19 ============================================================================ +21:48:19 FNo. Len. Field Value +21:48:19 ============================================================================ +21:48:19 [ 1] [ 4] [0800] +21:48:19 [ 7] [ 10] [0320024728] +21:48:19 [ 11] [ 6] [158576] +21:48:19 [ 70] [ 3] [301] +21:48:19 ============================================================================ +21:48:19 + + +waiting on router queue for slot.... +21:48:19 Sending to : +21:48:19 ============================================================================ +21:48:19 ============================================================================ +21:48:19 Slot Id : <305> +21:48:19 Transaction Type : RESPONSE +21:48:19 Received From : +21:48:19 ============================================================================ +21:48:19 FNo. Len. Field Value +21:48:19 ============================================================================ +21:48:19 [ 1] [ 4] [0810] +21:48:19 [ 7] [ 10] [0320024728] +21:48:19 [ 11] [ 6] [158576] +21:48:19 [ 39] [ 2] [00] +21:48:19 [ 70] [ 3] [301] +21:48:19 ============================================================================ +21:48:19 Calculate Source COMM Id = 2 +21:48:19 ============================================================================ +21:48:19 + + +waiting on router queue for slot.... +21:48:31 ============================================================================ +21:48:31 Slot Id : <314> +21:48:31 Transaction Type : REQUEST +21:48:31 Received From : +21:48:31 ============================================================================ +21:48:31 FNo. Len. Field Value +21:48:31 ============================================================================ +21:48:31 [ 1] [ 4] [0800] +21:48:31 [ 7] [ 10] [0320024739] +21:48:31 [ 11] [ 6] [158577] +21:48:31 [ 70] [ 3] [301] +21:48:31 ============================================================================ +21:48:31 + + +waiting on router queue for slot.... +21:48:31 Sending to : +21:48:31 ============================================================================ +21:48:31 ============================================================================ +21:48:31 Slot Id : <314> +21:48:31 Transaction Type : RESPONSE +21:48:31 Received From : +21:48:31 ============================================================================ +21:48:31 FNo. Len. Field Value +21:48:31 ============================================================================ +21:48:31 [ 1] [ 4] [0810] +21:48:31 [ 7] [ 10] [0320024739] +21:48:31 [ 11] [ 6] [158577] +21:48:31 [ 39] [ 2] [00] +21:48:31 [ 70] [ 3] [301] +21:48:31 ============================================================================ +21:48:31 Calculate Source COMM Id = 2 +21:48:31 ============================================================================ +21:48:31 + + +waiting on router queue for slot.... +21:48:36 ============================================================================ +21:48:36 Slot Id : <302> +21:48:36 Transaction Type : REQUEST +21:48:36 Received From : +21:48:36 ============================================================================ +21:48:36 FNo. Len. Field Value +21:48:36 ============================================================================ +21:48:36 [ 1] [ 4] [0800] +21:48:36 [ 7] [ 10] [0320144832] +21:48:36 [ 11] [ 6] [063308] +21:48:36 [ 37] [ 12] [507921063308] +21:48:36 [ 70] [ 3] [001] +21:48:36 ============================================================================ +21:48:36 + + +waiting on router queue for slot.... +21:48:36 Sending to : +21:48:36 ============================================================================ +21:48:36 ============================================================================ +21:48:36 Slot Id : <302> +21:48:36 Transaction Type : RESPONSE +21:48:36 Received From : +21:48:36 ============================================================================ +21:48:36 FNo. Len. Field Value +21:48:36 ============================================================================ +21:48:36 [ 1] [ 4] [0810] +21:48:36 [ 7] [ 10] [0320144832] +21:48:36 [ 11] [ 6] [063308] +21:48:36 [ 37] [ 12] [507921063308] +21:48:36 [ 39] [ 2] [00] +21:48:36 [ 70] [ 3] [001] +21:48:36 ============================================================================ +21:48:36 Calculate Source COMM Id = 0 +21:48:36 ============================================================================ +21:48:36 + + +waiting on router queue for slot.... +21:48:42 ============================================================================ +21:48:42 Slot Id : <292> +21:48:42 Transaction Type : REQUEST +21:48:42 Received From : +21:48:42 ============================================================================ +21:48:42 FNo. Len. Field Value +21:48:42 ============================================================================ +21:48:42 [ 1] [ 4] [0800] +21:48:42 [ 7] [ 10] [0320024751] +21:48:42 [ 11] [ 6] [158578] +21:48:42 [ 70] [ 3] [301] +21:48:42 ============================================================================ +21:48:42 + + +waiting on router queue for slot.... +21:48:42 Sending to : +21:48:42 ============================================================================ +21:48:42 ============================================================================ +21:48:42 Slot Id : <292> +21:48:42 Transaction Type : RESPONSE +21:48:42 Received From : +21:48:42 ============================================================================ +21:48:42 FNo. Len. Field Value +21:48:42 ============================================================================ +21:48:42 [ 1] [ 4] [0810] +21:48:42 [ 7] [ 10] [0320024751] +21:48:42 [ 11] [ 6] [158578] +21:48:42 [ 39] [ 2] [00] +21:48:42 [ 70] [ 3] [301] +21:48:42 ============================================================================ +21:48:42 Calculate Source COMM Id = 2 +21:48:42 ============================================================================ +21:48:42 + + +waiting on router queue for slot.... +21:48:52 ============================================================================ +21:48:52 Slot Id : <335> +21:48:52 Transaction Type : REQUEST +21:48:52 Received From : +21:48:52 ============================================================================ +21:48:52 FNo. Len. Field Value +21:48:52 ============================================================================ +21:48:52 [ 1] [ 4] [0800] +21:48:52 [ 2] [ 5] [02531] +21:48:52 [ 3] [ 6] [579218] +21:48:52 [ 7] [ 10] [0320144852] +21:48:52 [ 11] [ 6] [807678] +21:48:52 [ 15] [ 10] [0320144852] +21:48:52 [ 37] [ 11] [57921807678] +21:48:52 [ 70] [ 3] [001] +21:48:52 ============================================================================ +21:48:52 + + +waiting on router queue for slot.... +21:48:52 ============================================================================ +21:48:52 Slot Id : <335> +21:48:52 Transaction Type : RESPONSE +21:48:52 Received From : +21:48:52 ============================================================================ +21:48:52 FNo. Len. Field Value +21:48:52 ============================================================================ +21:48:52 [ 1] [ 4] [0810] +21:48:52 [ 7] [ 10] [0320144852] +21:48:52 [ 11] [ 6] [807678] +21:48:52 [ 15] [ 4] [0320] +21:48:52 [ 37] [ 12] [57921807678] +21:48:52 [ 39] [ 2] [00] +21:48:52 [ 70] [ 3] [001] +21:48:52 ============================================================================ +21:48:52 Sending to : +21:48:52 ============================================================================ +21:48:52 + + +waiting on router queue for slot.... +21:48:53 ============================================================================ +21:48:53 Slot Id : <333> +21:48:53 Transaction Type : REQUEST +21:48:53 Received From : +21:48:53 ============================================================================ +21:48:53 FNo. Len. Field Value +21:48:53 ============================================================================ +21:48:53 [ 1] [ 4] [0800] +21:48:53 [ 7] [ 10] [0320024801] +21:48:53 [ 11] [ 6] [158579] +21:48:53 [ 70] [ 3] [301] +21:48:53 ============================================================================ +21:48:53 + + +waiting on router queue for slot.... +21:48:53 Sending to : +21:48:53 ============================================================================ +21:48:53 ============================================================================ +21:48:53 Slot Id : <333> +21:48:53 Transaction Type : RESPONSE +21:48:53 Received From : +21:48:53 ============================================================================ +21:48:53 FNo. Len. Field Value +21:48:53 ============================================================================ +21:48:53 [ 1] [ 4] [0810] +21:48:53 [ 7] [ 10] [0320024801] +21:48:53 [ 11] [ 6] [158579] +21:48:53 [ 39] [ 2] [00] +21:48:53 [ 70] [ 3] [301] +21:48:53 ============================================================================ +21:48:53 Calculate Source COMM Id = 2 +21:48:53 ============================================================================ +21:48:53 + + +waiting on router queue for slot.... +21:48:54 ============================================================================ +21:48:54 Slot Id : <262> +21:48:54 Transaction Type : REQUEST +21:48:54 Received From : +21:48:54 ============================================================================ +21:48:54 FNo. Len. Field Value +21:48:54 ============================================================================ +21:48:54 [ 1] [ 4] [0800] +21:48:54 [ 7] [ 10] [0321050043] +21:48:54 [ 11] [ 6] [220043] +21:48:54 [ 37] [ 12] [57922220043] +21:48:54 [ 70] [ 3] [301] +21:48:54 ============================================================================ +21:48:54 + + +waiting on router queue for slot.... +21:48:54 Sending to : +21:48:54 ============================================================================ +21:48:54 ============================================================================ +21:48:54 Slot Id : <262> +21:48:54 Transaction Type : RESPONSE +21:48:54 Received From : +21:48:54 ============================================================================ +21:48:54 FNo. Len. Field Value +21:48:54 ============================================================================ +21:48:54 [ 1] [ 4] [0810] +21:48:54 [ 7] [ 10] [0321050043] +21:48:54 [ 11] [ 6] [220043] +21:48:54 [ 37] [ 12] [579222200430] +21:48:54 [ 39] [ 2] [00] +21:48:54 [ 70] [ 3] [810] +21:48:54 ============================================================================ +21:48:54 Calculate Source COMM Id = 6 +21:48:54 ============================================================================ +21:48:54 + + +waiting on router queue for slot.... +21:49:09 ============================================================================ +21:49:09 Slot Id : <334> +21:49:09 Transaction Type : REQUEST +21:49:09 Received From : +21:49:09 ============================================================================ +21:49:09 FNo. Len. Field Value +21:49:09 ============================================================================ +21:49:09 [ 1] [ 4] [0800] +21:49:09 [ 7] [ 10] [0320024817] +21:49:09 [ 11] [ 6] [158580] +21:49:09 [ 70] [ 3] [301] +21:49:09 ============================================================================ +21:49:09 + + +waiting on router queue for slot.... +21:49:09 Sending to : +21:49:09 ============================================================================ +21:49:09 ============================================================================ +21:49:09 Slot Id : <334> +21:49:09 Transaction Type : RESPONSE +21:49:09 Received From : +21:49:09 ============================================================================ +21:49:09 FNo. Len. Field Value +21:49:09 ============================================================================ +21:49:09 [ 1] [ 4] [0810] +21:49:09 [ 7] [ 10] [0320024817] +21:49:09 [ 11] [ 6] [158580] +21:49:09 [ 39] [ 2] [00] +21:49:09 [ 70] [ 3] [301] +21:49:09 ============================================================================ +21:49:09 Calculate Source COMM Id = 2 +21:49:09 ============================================================================ +21:49:09 + + +waiting on router queue for slot.... +21:49:19 ============================================================================ +21:49:19 Slot Id : <336> +21:49:19 Transaction Type : REQUEST +21:49:19 Received From : +21:49:19 ============================================================================ +21:49:19 FNo. Len. Field Value +21:49:19 ============================================================================ +21:49:19 [ 1] [ 4] [0800] +21:49:19 [ 7] [ 10] [0320024827] +21:49:19 [ 11] [ 6] [158581] +21:49:19 [ 70] [ 3] [301] +21:49:19 ============================================================================ +21:49:19 + + +waiting on router queue for slot.... +21:49:19 Sending to : +21:49:19 ============================================================================ +21:49:19 ============================================================================ +21:49:19 Slot Id : <336> +21:49:19 Transaction Type : RESPONSE +21:49:19 Received From : +21:49:19 ============================================================================ +21:49:19 FNo. Len. Field Value +21:49:19 ============================================================================ +21:49:19 [ 1] [ 4] [0810] +21:49:19 [ 7] [ 10] [0320024827] +21:49:19 [ 11] [ 6] [158581] +21:49:19 [ 39] [ 2] [00] +21:49:19 [ 70] [ 3] [301] +21:49:19 ============================================================================ +21:49:19 Calculate Source COMM Id = 2 +21:49:19 ============================================================================ +21:49:19 + + +waiting on router queue for slot.... +21:49:30 ============================================================================ +21:49:30 Slot Id : <320> +21:49:30 Transaction Type : REQUEST +21:49:30 Received From : +21:49:30 ============================================================================ +21:49:30 FNo. Len. Field Value +21:49:30 ============================================================================ +21:49:30 [ 1] [ 4] [0800] +21:49:30 [ 7] [ 10] [0320024838] +21:49:30 [ 11] [ 6] [158582] +21:49:30 [ 70] [ 3] [301] +21:49:30 ============================================================================ +21:49:30 + + +waiting on router queue for slot.... +21:49:30 Sending to : +21:49:30 ============================================================================ +21:49:30 ============================================================================ +21:49:30 Slot Id : <320> +21:49:30 Transaction Type : RESPONSE +21:49:30 Received From : +21:49:30 ============================================================================ +21:49:30 FNo. Len. Field Value +21:49:30 ============================================================================ +21:49:30 [ 1] [ 4] [0810] +21:49:30 [ 7] [ 10] [0320024838] +21:49:30 [ 11] [ 6] [158582] +21:49:30 [ 39] [ 2] [00] +21:49:30 [ 70] [ 3] [301] +21:49:30 ============================================================================ +21:49:30 Calculate Source COMM Id = 2 +21:49:30 ============================================================================ +21:49:30 + + +waiting on router queue for slot.... +21:49:40 ============================================================================ +21:49:40 Slot Id : <321> +21:49:40 Transaction Type : REQUEST +21:49:40 Received From : +21:49:40 ============================================================================ +21:49:40 FNo. Len. Field Value +21:49:40 ============================================================================ +21:49:40 [ 1] [ 4] [0800] +21:49:40 [ 7] [ 10] [0320024848] +21:49:40 [ 11] [ 6] [158583] +21:49:40 [ 70] [ 3] [301] +21:49:40 ============================================================================ +21:49:40 + + +waiting on router queue for slot.... +21:49:40 Sending to : +21:49:40 ============================================================================ +21:49:40 ============================================================================ +21:49:40 Slot Id : <321> +21:49:40 Transaction Type : RESPONSE +21:49:40 Received From : +21:49:40 ============================================================================ +21:49:40 FNo. Len. Field Value +21:49:40 ============================================================================ +21:49:40 [ 1] [ 4] [0810] +21:49:40 [ 7] [ 10] [0320024848] +21:49:40 [ 11] [ 6] [158583] +21:49:40 [ 39] [ 2] [00] +21:49:40 [ 70] [ 3] [301] +21:49:40 ============================================================================ +21:49:40 Calculate Source COMM Id = 2 +21:49:40 ============================================================================ +21:49:40 + + +waiting on router queue for slot.... +21:49:54 ============================================================================ +21:49:54 Slot Id : <323> +21:49:54 Transaction Type : REQUEST +21:49:54 Received From : +21:49:54 ============================================================================ +21:49:54 FNo. Len. Field Value +21:49:54 ============================================================================ +21:49:54 [ 1] [ 4] [0800] +21:49:54 [ 2] [ 5] [02531] +21:49:54 [ 3] [ 6] [579218] +21:49:54 [ 7] [ 10] [0320144954] +21:49:54 [ 11] [ 6] [807679] +21:49:54 [ 15] [ 10] [0320144954] +21:49:54 [ 37] [ 11] [57921807679] +21:49:54 [ 70] [ 3] [001] +21:49:54 ============================================================================ +21:49:54 + + +waiting on router queue for slot.... +21:49:54 ============================================================================ +21:49:54 Slot Id : <323> +21:49:54 Transaction Type : RESPONSE +21:49:54 Received From : +21:49:54 ============================================================================ +21:49:54 FNo. Len. Field Value +21:49:54 ============================================================================ +21:49:54 [ 1] [ 4] [0810] +21:49:54 [ 7] [ 10] [0320144954] +21:49:54 [ 11] [ 6] [807679] +21:49:54 [ 15] [ 4] [0320] +21:49:54 [ 37] [ 12] [57921807679] +21:49:54 [ 39] [ 2] [00] +21:49:54 [ 70] [ 3] [001] +21:49:54 ============================================================================ +21:49:54 Sending to : +21:49:54 ============================================================================ +21:49:54 + + +waiting on router queue for slot.... +21:49:54 ============================================================================ +21:49:54 Slot Id : <342> +21:49:54 Transaction Type : REQUEST +21:49:54 Received From : +21:49:54 ============================================================================ +21:49:54 FNo. Len. Field Value +21:49:54 ============================================================================ +21:49:54 [ 1] [ 4] [0800] +21:49:54 [ 7] [ 10] [0320214942] +21:49:54 [ 11] [ 6] [021516] +21:49:54 [ 37] [ 12] [507921021516] +21:49:54 [ 70] [ 3] [ ] +21:49:54 ============================================================================ +21:49:54 + + +waiting on router queue for slot.... +21:49:54 Sending to : +21:49:54 ============================================================================ +21:49:54 ============================================================================ +21:49:54 Slot Id : <342> +21:49:54 Transaction Type : RESPONSE +21:49:54 Received From : +21:49:54 ============================================================================ +21:49:54 FNo. Len. Field Value +21:49:54 ============================================================================ +21:49:54 [ 1] [ 4] [0810] +21:49:54 [ 7] [ 10] [0320214942] +21:49:54 [ 11] [ 6] [021516] +21:49:54 [ 37] [ 12] [507921021516] +21:49:54 [ 39] [ 2] [91] +21:49:54 [ 70] [ 3] [ ] +21:49:54 ============================================================================ +21:49:54 Calculate Source COMM Id = 3 +21:49:54 ============================================================================ +21:49:54 + + +waiting on router queue for slot.... +21:49:55 ============================================================================ +21:49:55 Slot Id : <341> +21:49:55 Transaction Type : REQUEST +21:49:55 Received From : +21:49:55 ============================================================================ +21:49:55 FNo. Len. Field Value +21:49:55 ============================================================================ +21:49:55 [ 1] [ 4] [0800] +21:49:55 [ 7] [ 10] [0320145742] +21:49:55 [ 11] [ 6] [004876] +21:49:55 [ 37] [ 12] [57921004876] +21:49:55 [ 70] [ 3] [301] +21:49:55 ============================================================================ +21:49:55 + + +waiting on router queue for slot.... +21:49:55 Sending to : +21:49:55 ============================================================================ +21:49:55 ============================================================================ +21:49:55 Slot Id : <341> +21:49:55 Transaction Type : RESPONSE +21:49:55 Received From : +21:49:55 ============================================================================ +21:49:55 FNo. Len. Field Value +21:49:55 ============================================================================ +21:49:55 [ 1] [ 4] [0810] +21:49:55 [ 7] [ 10] [0320145742] +21:49:55 [ 11] [ 6] [004876] +21:49:55 [ 37] [ 12] [579210048760] +21:49:55 [ 39] [ 2] [00] +21:49:55 [ 70] [ 3] [810] +21:49:55 ============================================================================ +21:49:55 Calculate Source COMM Id = 1 +21:49:55 ============================================================================ +21:49:55 + + +waiting on router queue for slot.... +21:49:56 ============================================================================ +21:49:56 Slot Id : <268> +21:49:56 Transaction Type : REQUEST +21:49:56 Received From : +21:49:56 ============================================================================ +21:49:56 FNo. Len. Field Value +21:49:56 ============================================================================ +21:49:56 [ 1] [ 4] [0800] +21:49:56 [ 7] [ 10] [0320024904] +21:49:56 [ 11] [ 6] [158584] +21:49:56 [ 70] [ 3] [301] +21:49:56 ============================================================================ +21:49:56 + + +waiting on router queue for slot.... +21:49:56 Sending to : +21:49:56 ============================================================================ +21:49:56 ============================================================================ +21:49:56 Slot Id : <268> +21:49:56 Transaction Type : RESPONSE +21:49:56 Received From : +21:49:56 ============================================================================ +21:49:56 FNo. Len. Field Value +21:49:56 ============================================================================ +21:49:56 [ 1] [ 4] [0810] +21:49:56 [ 7] [ 10] [0320024904] +21:49:56 [ 11] [ 6] [158584] +21:49:56 [ 39] [ 2] [00] +21:49:56 [ 70] [ 3] [301] +21:49:56 ============================================================================ +21:49:56 Calculate Source COMM Id = 2 +21:49:56 ============================================================================ +21:49:56 + + +waiting on router queue for slot.... +21:49:59 ============================================================================ +21:49:59 Slot Id : <352> +21:49:59 Transaction Type : REQUEST +21:49:59 Received From : +21:49:59 ============================================================================ +21:49:59 FNo. Len. Field Value +21:49:59 ============================================================================ +21:49:59 [ 1] [ 4] [0800] +21:49:59 [ 7] [ 10] [0321050148] +21:49:59 [ 11] [ 6] [220148] +21:49:59 [ 37] [ 12] [57922220148] +21:49:59 [ 70] [ 3] [301] +21:49:59 ============================================================================ +21:49:59 + + +waiting on router queue for slot.... +21:49:59 Sending to : +21:49:59 ============================================================================ +21:49:59 ============================================================================ +21:49:59 Slot Id : <352> +21:49:59 Transaction Type : RESPONSE +21:49:59 Received From : +21:49:59 ============================================================================ +21:49:59 FNo. Len. Field Value +21:49:59 ============================================================================ +21:49:59 [ 1] [ 4] [0810] +21:49:59 [ 7] [ 10] [0321050148] +21:49:59 [ 11] [ 6] [220148] +21:49:59 [ 37] [ 12] [579222201480] +21:49:59 [ 39] [ 2] [00] +21:49:59 [ 70] [ 3] [810] +21:49:59 ============================================================================ +21:49:59 Calculate Source COMM Id = 6 +21:49:59 ============================================================================ +21:49:59 + + +waiting on router queue for slot.... +21:50:07 ============================================================================ +21:50:07 Slot Id : <339> +21:50:07 Transaction Type : REQUEST +21:50:07 Received From : +21:50:07 ============================================================================ +21:50:07 FNo. Len. Field Value +21:50:07 ============================================================================ +21:50:07 [ 1] [ 4] [0800] +21:50:07 [ 7] [ 10] [0320024915] +21:50:07 [ 11] [ 6] [158585] +21:50:07 [ 70] [ 3] [301] +21:50:07 ============================================================================ +21:50:07 + + +waiting on router queue for slot.... +21:50:07 Sending to : +21:50:07 ============================================================================ +21:50:07 ============================================================================ +21:50:07 Slot Id : <339> +21:50:07 Transaction Type : RESPONSE +21:50:07 Received From : +21:50:07 ============================================================================ +21:50:07 FNo. Len. Field Value +21:50:07 ============================================================================ +21:50:07 [ 1] [ 4] [0810] +21:50:07 [ 7] [ 10] [0320024915] +21:50:07 [ 11] [ 6] [158585] +21:50:07 [ 39] [ 2] [00] +21:50:07 [ 70] [ 3] [301] +21:50:07 ============================================================================ +21:50:07 Calculate Source COMM Id = 2 +21:50:07 ============================================================================ +21:50:07 + + +waiting on router queue for slot.... +21:50:17 ============================================================================ +21:50:17 Slot Id : <347> +21:50:17 Transaction Type : REQUEST +21:50:17 Received From : +21:50:17 ============================================================================ +21:50:17 FNo. Len. Field Value +21:50:17 ============================================================================ +21:50:17 [ 1] [ 4] [0800] +21:50:17 [ 7] [ 10] [0320024925] +21:50:17 [ 11] [ 6] [158586] +21:50:17 [ 70] [ 3] [301] +21:50:17 ============================================================================ +21:50:17 + + +waiting on router queue for slot.... +21:50:17 Sending to : +21:50:17 ============================================================================ +21:50:17 ============================================================================ +21:50:17 Slot Id : <347> +21:50:17 Transaction Type : RESPONSE +21:50:17 Received From : +21:50:17 ============================================================================ +21:50:17 FNo. Len. Field Value +21:50:17 ============================================================================ +21:50:17 [ 1] [ 4] [0810] +21:50:17 [ 7] [ 10] [0320024925] +21:50:17 [ 11] [ 6] [158586] +21:50:17 [ 39] [ 2] [00] +21:50:17 [ 70] [ 3] [301] +21:50:17 ============================================================================ +21:50:17 Calculate Source COMM Id = 2 +21:50:17 ============================================================================ +21:50:17 + + +waiting on router queue for slot.... +21:50:27 ============================================================================ +21:50:27 Slot Id : <309> +21:50:27 Transaction Type : REQUEST +21:50:27 Received From : +21:50:27 ============================================================================ +21:50:27 FNo. Len. Field Value +21:50:27 ============================================================================ +21:50:27 [ 1] [ 4] [0800] +21:50:27 [ 7] [ 10] [0320024935] +21:50:27 [ 11] [ 6] [158587] +21:50:27 [ 70] [ 3] [301] +21:50:27 ============================================================================ +21:50:27 + + +waiting on router queue for slot.... +21:50:27 Sending to : +21:50:27 ============================================================================ +21:50:27 ============================================================================ +21:50:27 Slot Id : <309> +21:50:27 Transaction Type : RESPONSE +21:50:27 Received From : +21:50:27 ============================================================================ +21:50:27 FNo. Len. Field Value +21:50:27 ============================================================================ +21:50:27 [ 1] [ 4] [0810] +21:50:27 [ 7] [ 10] [0320024935] +21:50:27 [ 11] [ 6] [158587] +21:50:27 [ 39] [ 2] [00] +21:50:27 [ 70] [ 3] [301] +21:50:27 ============================================================================ +21:50:27 Calculate Source COMM Id = 2 +21:50:27 ============================================================================ +21:50:27 + + +waiting on router queue for slot.... +21:50:37 ============================================================================ +21:50:37 Slot Id : <348> +21:50:37 Transaction Type : REQUEST +21:50:37 Received From : +21:50:37 ============================================================================ +21:50:37 FNo. Len. Field Value +21:50:37 ============================================================================ +21:50:37 [ 1] [ 4] [0800] +21:50:37 [ 7] [ 10] [0320024946] +21:50:37 [ 11] [ 6] [158588] +21:50:37 [ 70] [ 3] [301] +21:50:37 ============================================================================ +21:50:37 + + +waiting on router queue for slot.... +21:50:37 Sending to : +21:50:37 ============================================================================ +21:50:37 ============================================================================ +21:50:37 Slot Id : <348> +21:50:37 Transaction Type : RESPONSE +21:50:37 Received From : +21:50:37 ============================================================================ +21:50:37 FNo. Len. Field Value +21:50:37 ============================================================================ +21:50:37 [ 1] [ 4] [0810] +21:50:37 [ 7] [ 10] [0320024946] +21:50:37 [ 11] [ 6] [158588] +21:50:37 [ 39] [ 2] [00] +21:50:37 [ 70] [ 3] [301] +21:50:37 ============================================================================ +21:50:37 Calculate Source COMM Id = 2 +21:50:37 ============================================================================ +21:50:37 + + +waiting on router queue for slot.... +21:50:53 ============================================================================ +21:50:53 Slot Id : <329> +21:50:53 Transaction Type : REQUEST +21:50:53 Received From : +21:50:53 ============================================================================ +21:50:53 FNo. Len. Field Value +21:50:53 ============================================================================ +21:50:53 [ 1] [ 4] [0800] +21:50:53 [ 7] [ 10] [0320025001] +21:50:53 [ 11] [ 6] [158589] +21:50:53 [ 70] [ 3] [301] +21:50:53 ============================================================================ +21:50:53 + + +waiting on router queue for slot.... +21:50:53 Sending to : +21:50:53 ============================================================================ +21:50:53 ============================================================================ +21:50:53 Slot Id : <329> +21:50:53 Transaction Type : RESPONSE +21:50:53 Received From : +21:50:53 ============================================================================ +21:50:53 FNo. Len. Field Value +21:50:53 ============================================================================ +21:50:53 [ 1] [ 4] [0810] +21:50:53 [ 7] [ 10] [0320025001] +21:50:53 [ 11] [ 6] [158589] +21:50:53 [ 39] [ 2] [00] +21:50:53 [ 70] [ 3] [301] +21:50:53 ============================================================================ +21:50:53 Calculate Source COMM Id = 2 +21:50:53 ============================================================================ +21:50:53 + + +waiting on router queue for slot.... +21:50:56 ============================================================================ +21:50:56 Slot Id : <337> +21:50:56 Transaction Type : REQUEST +21:50:56 Received From : +21:50:56 ============================================================================ +21:50:56 FNo. Len. Field Value +21:50:56 ============================================================================ +21:50:56 [ 1] [ 4] [0800] +21:50:56 [ 2] [ 5] [02531] +21:50:56 [ 3] [ 6] [579218] +21:50:56 [ 7] [ 10] [0320145056] +21:50:56 [ 11] [ 6] [807680] +21:50:56 [ 15] [ 10] [0320145056] +21:50:56 [ 37] [ 11] [57921807680] +21:50:56 [ 70] [ 3] [001] +21:50:56 ============================================================================ +21:50:56 + + +waiting on router queue for slot.... +21:50:56 ============================================================================ +21:50:56 Slot Id : <337> +21:50:56 Transaction Type : RESPONSE +21:50:56 Received From : +21:50:56 ============================================================================ +21:50:56 FNo. Len. Field Value +21:50:56 ============================================================================ +21:50:56 [ 1] [ 4] [0810] +21:50:56 [ 7] [ 10] [0320145056] +21:50:56 [ 11] [ 6] [807680] +21:50:56 [ 15] [ 4] [0320] +21:50:56 [ 37] [ 12] [57921807680] +21:50:56 [ 39] [ 2] [00] +21:50:56 [ 70] [ 3] [001] +21:50:56 ============================================================================ +21:50:56 Sending to : +21:50:56 ============================================================================ +21:50:56 + + +waiting on router queue for slot.... +21:51:04 ============================================================================ +21:51:04 Slot Id : <350> +21:51:04 Transaction Type : REQUEST +21:51:04 Received From : +21:51:04 ============================================================================ +21:51:04 FNo. Len. Field Value +21:51:04 ============================================================================ +21:51:04 [ 1] [ 4] [0800] +21:51:04 [ 7] [ 10] [0321050253] +21:51:04 [ 11] [ 6] [220253] +21:51:04 [ 37] [ 12] [57922220253] +21:51:04 [ 70] [ 3] [301] +21:51:04 ============================================================================ +21:51:04 + + +waiting on router queue for slot.... +21:51:04 Sending to : +21:51:04 ============================================================================ +21:51:04 ============================================================================ +21:51:04 Slot Id : <350> +21:51:04 Transaction Type : RESPONSE +21:51:04 Received From : +21:51:04 ============================================================================ +21:51:04 FNo. Len. Field Value +21:51:04 ============================================================================ +21:51:04 [ 1] [ 4] [0810] +21:51:04 [ 7] [ 10] [0321050253] +21:51:04 [ 11] [ 6] [220253] +21:51:04 [ 37] [ 12] [579222202530] +21:51:04 [ 39] [ 2] [00] +21:51:04 [ 70] [ 3] [810] +21:51:04 ============================================================================ +21:51:04 Calculate Source COMM Id = 6 +21:51:04 ============================================================================ +21:51:04 + + +waiting on router queue for slot.... +21:51:09 ============================================================================ +21:51:09 Slot Id : <346> +21:51:09 Transaction Type : REQUEST +21:51:09 Received From : +21:51:09 ============================================================================ +21:51:09 FNo. Len. Field Value +21:51:09 ============================================================================ +21:51:09 [ 1] [ 4] [0800] +21:51:09 [ 7] [ 10] [0320025017] +21:51:09 [ 11] [ 6] [158590] +21:51:09 [ 70] [ 3] [301] +21:51:09 ============================================================================ +21:51:09 + + +waiting on router queue for slot.... +21:51:09 Sending to : +21:51:09 ============================================================================ +21:51:09 ============================================================================ +21:51:09 Slot Id : <346> +21:51:09 Transaction Type : RESPONSE +21:51:09 Received From : +21:51:09 ============================================================================ +21:51:09 FNo. Len. Field Value +21:51:09 ============================================================================ +21:51:09 [ 1] [ 4] [0810] +21:51:09 [ 7] [ 10] [0320025017] +21:51:09 [ 11] [ 6] [158590] +21:51:09 [ 39] [ 2] [00] +21:51:09 [ 70] [ 3] [301] +21:51:09 ============================================================================ +21:51:09 Calculate Source COMM Id = 2 +21:51:09 ============================================================================ +21:51:09 + + +waiting on router queue for slot.... +21:51:21 ============================================================================ +21:51:21 Slot Id : <328> +21:51:21 Transaction Type : REQUEST +21:51:21 Received From : +21:51:21 ============================================================================ +21:51:21 FNo. Len. Field Value +21:51:21 ============================================================================ +21:51:21 [ 1] [ 4] [0800] +21:51:21 [ 7] [ 10] [0320144912] +21:51:21 [ 11] [ 6] [024269] +21:51:21 [ 37] [ 12] [57921024269] +21:51:21 [ 70] [ 3] [301] +21:51:21 ============================================================================ +21:51:21 + + +waiting on router queue for slot.... +21:51:21 Sending to : +21:51:21 ============================================================================ +21:51:21 ============================================================================ +21:51:21 Slot Id : <328> +21:51:21 Transaction Type : RESPONSE +21:51:21 Received From : +21:51:21 ============================================================================ +21:51:21 FNo. Len. Field Value +21:51:21 ============================================================================ +21:51:21 [ 1] [ 4] [0810] +21:51:21 [ 7] [ 10] [0320144912] +21:51:21 [ 11] [ 6] [024269] +21:51:21 [ 37] [ 12] [579210242690] +21:51:21 [ 39] [ 2] [00] +21:51:21 [ 70] [ 3] [810] +21:51:21 ============================================================================ +21:51:21 Calculate Source COMM Id = 4 +21:51:21 ============================================================================ +21:51:21 + + +waiting on router queue for slot.... +21:51:24 ============================================================================ +21:51:24 Slot Id : <357> +21:51:24 Transaction Type : REQUEST +21:51:24 Received From : +21:51:24 ============================================================================ +21:51:24 FNo. Len. Field Value +21:51:24 ============================================================================ +21:51:24 [ 1] [ 4] [0800] +21:51:24 [ 7] [ 10] [0320025032] +21:51:24 [ 11] [ 6] [158591] +21:51:24 [ 70] [ 3] [301] +21:51:24 ============================================================================ +21:51:24 + + +waiting on router queue for slot.... +21:51:24 Sending to : +21:51:24 ============================================================================ +21:51:24 ============================================================================ +21:51:24 Slot Id : <357> +21:51:24 Transaction Type : RESPONSE +21:51:24 Received From : +21:51:24 ============================================================================ +21:51:24 FNo. Len. Field Value +21:51:24 ============================================================================ +21:51:24 [ 1] [ 4] [0810] +21:51:24 [ 7] [ 10] [0320025032] +21:51:24 [ 11] [ 6] [158591] +21:51:24 [ 39] [ 2] [00] +21:51:24 [ 70] [ 3] [301] +21:51:24 ============================================================================ +21:51:24 Calculate Source COMM Id = 2 +21:51:24 ============================================================================ +21:51:24 + + +waiting on router queue for slot.... +21:51:35 ============================================================================ +21:51:35 Slot Id : <332> +21:51:35 Transaction Type : REQUEST +21:51:35 Received From : +21:51:35 ============================================================================ +21:51:35 FNo. Len. Field Value +21:51:35 ============================================================================ +21:51:35 [ 1] [ 4] [0800] +21:51:35 [ 7] [ 10] [0320025043] +21:51:35 [ 11] [ 6] [158592] +21:51:35 [ 70] [ 3] [301] +21:51:35 ============================================================================ +21:51:35 + + +waiting on router queue for slot.... +21:51:35 Sending to : +21:51:35 ============================================================================ +21:51:35 ============================================================================ +21:51:35 Slot Id : <332> +21:51:35 Transaction Type : RESPONSE +21:51:35 Received From : +21:51:35 ============================================================================ +21:51:35 FNo. Len. Field Value +21:51:35 ============================================================================ +21:51:35 [ 1] [ 4] [0810] +21:51:35 [ 7] [ 10] [0320025043] +21:51:35 [ 11] [ 6] [158592] +21:51:35 [ 39] [ 2] [00] +21:51:35 [ 70] [ 3] [301] +21:51:35 ============================================================================ +21:51:35 Calculate Source COMM Id = 2 +21:51:35 ============================================================================ +21:51:35 + + +waiting on router queue for slot.... +21:51:42 ============================================================================ +21:51:42 Slot Id : <319> +21:51:42 Transaction Type : REQUEST +21:51:42 Received From : +21:51:42 ============================================================================ +21:51:42 FNo. Len. Field Value +21:51:42 ============================================================================ +21:51:42 [ 1] [ 4] [0200] +21:51:42 [ 2] [ 16] [6213545000842470] +21:51:42 [ 3] [ 6] [011000] +21:51:42 [ 4] [ 12] [000030000000] +21:51:42 [ 7] [ 10] [0320145049] +21:51:42 [ 11] [ 6] [271723] +21:51:42 [ 12] [ 6] [215049] +21:51:42 [ 13] [ 4] [0320] +21:51:42 [ 14] [ 4] [4912] +21:51:42 [ 15] [ 4] [0320] +21:51:42 [ 18] [ 4] [6011] +21:51:42 [ 19] [ 3] [418] +21:51:42 [ 22] [ 3] [021] +21:51:42 [ 25] [ 2] [01] +21:51:42 [ 28] [ 9] [D00002000] +21:51:42 [ 32] [ 6] [180893] +21:51:42 [ 35] [ 32] [6213545000842470=491212014247078] +21:51:42 [ 37] [ 12] [507914271723] +21:51:42 [ 41] [ 8] [0401XSBR] +21:51:42 [ 42] [ 15] [999999 ] +21:51:42 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +21:51:42 [ 49] [ 3] [418] +21:51:42 [ 52] [ 16] [815C65F33E1F1CB6] +21:51:42 ============================================================================ +21:51:42 + + +waiting on router queue for slot.... +21:51:42 Sending to : +21:51:42 ============================================================================ +21:51:42 Sending to : +21:51:42 ============================================================================ +21:51:42 ============================================================================ +21:51:42 Slot Id : <319> +21:51:42 Transaction Type : REQUEST +21:51:42 Received From : +21:51:42 ============================================================================ +21:51:42 FNo. Len. Field Value +21:51:42 ============================================================================ +21:51:42 [ 1] [ 4] [0200] +21:51:42 [ 2] [ 16] [6213545000842470] +21:51:42 [ 3] [ 6] [011000] +21:51:42 [ 4] [ 12] [000030000000] +21:51:42 [ 7] [ 10] [0320145049] +21:51:42 [ 11] [ 6] [271723] +21:51:42 [ 12] [ 6] [215049] +21:51:42 [ 13] [ 4] [0320] +21:51:42 [ 14] [ 4] [4912] +21:51:42 [ 15] [ 4] [0320] +21:51:42 [ 18] [ 4] [6011] +21:51:42 [ 19] [ 3] [418] +21:51:42 [ 22] [ 3] [021] +21:51:42 [ 25] [ 2] [01] +21:51:42 [ 28] [ 9] [D00002000] +21:51:42 [ 32] [ 6] [180893] +21:51:42 [ 35] [ 32] [6213545000842470=491212014247078] +21:51:42 [ 37] [ 12] [507914271723] +21:51:42 [ 41] [ 8] [0401XSBR] +21:51:42 [ 42] [ 15] [999999 ] +21:51:42 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +21:51:42 [ 49] [ 3] [418] +21:51:42 [ 52] [ 16] [815C65F33E1F1CB6] +21:51:42 ============================================================================ +21:51:42 + + +waiting on router queue for slot.... +21:51:42 Sending to : +21:51:42 ============================================================================ +21:51:42 ============================================================================ +21:51:42 Slot Id : <319> +21:51:42 Transaction Type : REQUEST +21:51:42 Received From : +21:51:42 ============================================================================ +21:51:42 FNo. Len. Field Value +21:51:42 ============================================================================ +21:51:42 [ 1] [ 4] [0200] +21:51:42 [ 2] [ 16] [6213545000842470] +21:51:42 [ 3] [ 6] [011000] +21:51:42 [ 4] [ 12] [000030000000] +21:51:42 [ 7] [ 10] [0320145049] +21:51:42 [ 11] [ 6] [271723] +21:51:42 [ 12] [ 6] [215049] +21:51:42 [ 13] [ 4] [0320] +21:51:42 [ 14] [ 4] [4912] +21:51:42 [ 15] [ 4] [0320] +21:51:42 [ 18] [ 4] [6011] +21:51:42 [ 19] [ 3] [418] +21:51:42 [ 22] [ 3] [021] +21:51:42 [ 25] [ 2] [01] +21:51:42 [ 28] [ 9] [D00002000] +21:51:42 [ 32] [ 6] [180893] +21:51:42 [ 35] [ 32] [6213545000842470=491212014247078] +21:51:42 [ 37] [ 12] [507914271723] +21:51:42 [ 41] [ 8] [0401XSBR] +21:51:42 [ 42] [ 15] [999999 ] +21:51:42 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +21:51:42 [ 49] [ 3] [418] +21:51:42 [ 52] [ 16] [8C66E36B7A6EE88E] +21:51:42 ============================================================================ +21:51:42 + + +waiting on router queue for slot.... +21:51:42 Sending to : <0> +21:51:42 ============================================================================ +21:51:43 ============================================================================ +21:51:43 Slot Id : <319> +21:51:43 Transaction Type : RESPONSE +21:51:43 Received From : +21:51:43 ============================================================================ +21:51:43 FNo. Len. Field Value +21:51:43 ============================================================================ +21:51:43 [ 1] [ 4] [0210] +21:51:43 [ 2] [ 16] [6213545000842470] +21:51:43 [ 3] [ 6] [011000] +21:51:43 [ 4] [ 12] [000030000000] +21:51:43 [ 7] [ 10] [0320145049] +21:51:43 [ 11] [ 6] [271723] +21:51:43 [ 12] [ 6] [215049] +21:51:43 [ 13] [ 4] [0320] +21:51:43 [ 15] [ 4] [0320] +21:51:43 [ 18] [ 4] [6011] +21:51:43 [ 19] [ 3] [418] +21:51:43 [ 32] [ 6] [180893] +21:51:43 [ 35] [ 32] [6213545000842470=491212014247078] +21:51:43 [ 37] [ 12] [507914271723] +21:51:43 [ 38] [ 6] [762157] +21:51:43 [ 39] [ 2] [00] +21:51:43 [ 41] [ 8] [0401XSBR] +21:51:43 [ 49] [ 3] [418] +21:51:43 [ 54] [ 40] [1001418C0001047799021002418C000074579902] +21:51:43 ============================================================================ +21:51:43 Sending to : +21:51:43 ============================================================================ +21:51:43 + + +waiting on router queue for slot.... +21:51:44 ============================================================================ +21:51:44 Slot Id : <319> +21:51:44 Transaction Type : RESPONSE +21:51:44 Received From : +21:51:44 ============================================================================ +21:51:44 FNo. Len. Field Value +21:51:44 ============================================================================ +21:51:44 [ 1] [ 4] [0210] +21:51:44 [ 2] [ 16] [6213545000842470] +21:51:44 [ 3] [ 6] [011000] +21:51:44 [ 4] [ 12] [000030000000] +21:51:44 [ 7] [ 10] [0320145049] +21:51:44 [ 11] [ 6] [271723] +21:51:44 [ 12] [ 6] [215049] +21:51:44 [ 13] [ 4] [0320] +21:51:44 [ 15] [ 4] [0320] +21:51:44 [ 18] [ 4] [6011] +21:51:44 [ 19] [ 3] [418] +21:51:44 [ 32] [ 6] [180893] +21:51:44 [ 35] [ 32] [6213545000842470=491212014247078] +21:51:44 [ 37] [ 12] [507914271723] +21:51:44 [ 38] [ 6] [762157] +21:51:44 [ 39] [ 2] [00] +21:51:44 [ 41] [ 8] [0401XSBR] +21:51:44 [ 49] [ 3] [418] +21:51:44 [ 54] [ 40] [1001418C0001047799021002418C000074579902] +21:51:44 ============================================================================ +21:51:44 Calculate Source COMM Id = 2 +21:51:44 ============================================================================ +21:51:44 + + +waiting on router queue for slot.... +21:51:56 ============================================================================ +21:51:56 Slot Id : <356> +21:51:56 Transaction Type : REQUEST +21:51:56 Received From : +21:51:56 ============================================================================ +21:51:56 FNo. Len. Field Value +21:51:56 ============================================================================ +21:51:56 [ 1] [ 4] [0800] +21:51:56 [ 7] [ 10] [0320025104] +21:51:56 [ 11] [ 6] [158593] +21:51:56 [ 70] [ 3] [301] +21:51:56 ============================================================================ +21:51:56 + + +waiting on router queue for slot.... +21:51:56 Sending to : +21:51:56 ============================================================================ +21:51:56 ============================================================================ +21:51:56 Slot Id : <356> +21:51:56 Transaction Type : RESPONSE +21:51:56 Received From : +21:51:56 ============================================================================ +21:51:56 FNo. Len. Field Value +21:51:56 ============================================================================ +21:51:56 [ 1] [ 4] [0810] +21:51:56 [ 7] [ 10] [0320025104] +21:51:56 [ 11] [ 6] [158593] +21:51:56 [ 39] [ 2] [00] +21:51:56 [ 70] [ 3] [301] +21:51:56 ============================================================================ +21:51:56 Calculate Source COMM Id = 2 +21:51:56 ============================================================================ +21:51:56 + + +waiting on router queue for slot.... +21:51:58 ============================================================================ +21:51:58 Slot Id : <365> +21:51:58 Transaction Type : REQUEST +21:51:58 Received From : +21:51:58 ============================================================================ +21:51:58 FNo. Len. Field Value +21:51:58 ============================================================================ +21:51:58 [ 1] [ 4] [0800] +21:51:58 [ 2] [ 5] [02531] +21:51:58 [ 3] [ 6] [579218] +21:51:58 [ 7] [ 10] [0320145158] +21:51:58 [ 11] [ 6] [807681] +21:51:58 [ 15] [ 10] [0320145158] +21:51:58 [ 37] [ 11] [57921807681] +21:51:58 [ 70] [ 3] [001] +21:51:58 ============================================================================ +21:51:58 + + +waiting on router queue for slot.... +21:51:58 ============================================================================ +21:51:58 Slot Id : <365> +21:51:58 Transaction Type : RESPONSE +21:51:58 Received From : +21:51:58 ============================================================================ +21:51:58 FNo. Len. Field Value +21:51:58 ============================================================================ +21:51:58 [ 1] [ 4] [0810] +21:51:58 [ 7] [ 10] [0320145158] +21:51:58 [ 11] [ 6] [807681] +21:51:58 [ 15] [ 4] [0320] +21:51:58 [ 37] [ 12] [57921807681] +21:51:58 [ 39] [ 2] [00] +21:51:58 [ 70] [ 3] [001] +21:51:58 ============================================================================ +21:51:58 Sending to : +21:51:58 ============================================================================ +21:51:58 + + +waiting on router queue for slot.... +21:52:07 ============================================================================ +21:52:07 Slot Id : <330> +21:52:07 Transaction Type : REQUEST +21:52:07 Received From : +21:52:07 ============================================================================ +21:52:07 FNo. Len. Field Value +21:52:07 ============================================================================ +21:52:07 [ 1] [ 4] [0800] +21:52:07 [ 7] [ 10] [0320025115] +21:52:07 [ 11] [ 6] [158594] +21:52:07 [ 70] [ 3] [301] +21:52:07 ============================================================================ +21:52:07 + + +waiting on router queue for slot.... +21:52:07 Sending to : +21:52:07 ============================================================================ +21:52:07 ============================================================================ +21:52:07 Slot Id : <330> +21:52:07 Transaction Type : RESPONSE +21:52:07 Received From : +21:52:07 ============================================================================ +21:52:07 FNo. Len. Field Value +21:52:07 ============================================================================ +21:52:07 [ 1] [ 4] [0810] +21:52:07 [ 7] [ 10] [0320025115] +21:52:07 [ 11] [ 6] [158594] +21:52:07 [ 39] [ 2] [00] +21:52:07 [ 70] [ 3] [301] +21:52:07 ============================================================================ +21:52:07 Calculate Source COMM Id = 2 +21:52:07 ============================================================================ +21:52:07 + + +waiting on router queue for slot.... +21:52:09 ============================================================================ +21:52:09 Slot Id : <371> +21:52:09 Transaction Type : REQUEST +21:52:09 Received From : +21:52:09 ============================================================================ +21:52:09 FNo. Len. Field Value +21:52:09 ============================================================================ +21:52:09 [ 1] [ 4] [0800] +21:52:09 [ 7] [ 10] [0321050358] +21:52:09 [ 11] [ 6] [220358] +21:52:09 [ 37] [ 12] [57922220358] +21:52:09 [ 70] [ 3] [301] +21:52:09 ============================================================================ +21:52:09 + + +waiting on router queue for slot.... +21:52:09 Sending to : +21:52:09 ============================================================================ +21:52:09 ============================================================================ +21:52:09 Slot Id : <371> +21:52:09 Transaction Type : RESPONSE +21:52:09 Received From : +21:52:09 ============================================================================ +21:52:09 FNo. Len. Field Value +21:52:09 ============================================================================ +21:52:09 [ 1] [ 4] [0810] +21:52:09 [ 7] [ 10] [0321050358] +21:52:09 [ 11] [ 6] [220358] +21:52:09 [ 37] [ 12] [579222203580] +21:52:09 [ 39] [ 2] [00] +21:52:09 [ 70] [ 3] [810] +21:52:09 ============================================================================ +21:52:09 Calculate Source COMM Id = 6 +21:52:09 ============================================================================ +21:52:09 + + +waiting on router queue for slot.... +21:52:17 ============================================================================ +21:52:17 Slot Id : <378> +21:52:17 Transaction Type : REQUEST +21:52:17 Received From : +21:52:17 ============================================================================ +21:52:17 FNo. Len. Field Value +21:52:17 ============================================================================ +21:52:17 [ 1] [ 4] [0800] +21:52:17 [ 7] [ 10] [0320025126] +21:52:17 [ 11] [ 6] [158595] +21:52:17 [ 70] [ 3] [301] +21:52:17 ============================================================================ +21:52:17 + + +waiting on router queue for slot.... +21:52:17 Sending to : +21:52:17 ============================================================================ +21:52:17 ============================================================================ +21:52:17 Slot Id : <378> +21:52:17 Transaction Type : RESPONSE +21:52:17 Received From : +21:52:17 ============================================================================ +21:52:17 FNo. Len. Field Value +21:52:17 ============================================================================ +21:52:17 [ 1] [ 4] [0810] +21:52:17 [ 7] [ 10] [0320025126] +21:52:17 [ 11] [ 6] [158595] +21:52:17 [ 39] [ 2] [00] +21:52:17 [ 70] [ 3] [301] +21:52:17 ============================================================================ +21:52:17 Calculate Source COMM Id = 2 +21:52:17 ============================================================================ +21:52:17 + + +waiting on router queue for slot.... +21:52:28 ============================================================================ +21:52:28 Slot Id : <366> +21:52:28 Transaction Type : REQUEST +21:52:28 Received From : +21:52:28 ============================================================================ +21:52:28 FNo. Len. Field Value +21:52:28 ============================================================================ +21:52:28 [ 1] [ 4] [0800] +21:52:28 [ 7] [ 10] [0320025136] +21:52:28 [ 11] [ 6] [158596] +21:52:28 [ 70] [ 3] [301] +21:52:28 ============================================================================ +21:52:28 + + +waiting on router queue for slot.... +21:52:28 Sending to : +21:52:28 ============================================================================ +21:52:28 ============================================================================ +21:52:28 Slot Id : <366> +21:52:28 Transaction Type : RESPONSE +21:52:28 Received From : +21:52:28 ============================================================================ +21:52:28 FNo. Len. Field Value +21:52:28 ============================================================================ +21:52:28 [ 1] [ 4] [0810] +21:52:28 [ 7] [ 10] [0320025136] +21:52:28 [ 11] [ 6] [158596] +21:52:28 [ 39] [ 2] [00] +21:52:28 [ 70] [ 3] [301] +21:52:28 ============================================================================ +21:52:28 Calculate Source COMM Id = 2 +21:52:28 ============================================================================ +21:52:28 + + +waiting on router queue for slot.... +21:52:30 ============================================================================ +21:52:30 Slot Id : <343> +21:52:30 Transaction Type : REQUEST +21:52:30 Received From : +21:52:30 ============================================================================ +21:52:30 FNo. Len. Field Value +21:52:30 ============================================================================ +21:52:30 [ 1] [ 4] [0200] +21:52:30 [ 2] [ 16] [6213544001861779] +21:52:30 [ 3] [ 6] [300000] +21:52:30 [ 4] [ 12] [000000000000] +21:52:30 [ 7] [ 10] [0320215021] +21:52:30 [ 11] [ 6] [957843] +21:52:30 [ 12] [ 6] [215021] +21:52:30 [ 13] [ 4] [0320] +21:52:30 [ 15] [ 4] [0320] +21:52:30 [ 18] [ 4] [6011] +21:52:30 [ 19] [ 3] [418] +21:52:30 [ 22] [ 3] [021] +21:52:30 [ 25] [ 2] [01] +21:52:30 [ 28] [ 9] [D00000000] +21:52:30 [ 32] [ 6] [668899] +21:52:30 [ 35] [ 32] [6213544001861779=491212016177692] +21:52:30 [ 37] [ 12] [507901262096] +21:52:30 [ 41] [ 8] [03206001] +21:52:30 [ 42] [ 15] [APT ] +21:52:30 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +21:52:30 [ 49] [ 3] [418] +21:52:30 [ 52] [ 16] [091F80E8E4EE520F] +21:52:30 ============================================================================ +21:52:30 + + +waiting on router queue for slot.... +21:52:30 Sending to : +21:52:30 ============================================================================ +21:52:30 Sending to : +21:52:30 ============================================================================ +21:52:31 ============================================================================ +21:52:31 Slot Id : <343> +21:52:31 Transaction Type : REQUEST +21:52:31 Received From : +21:52:31 ============================================================================ +21:52:31 FNo. Len. Field Value +21:52:31 ============================================================================ +21:52:31 [ 1] [ 4] [0200] +21:52:31 [ 2] [ 16] [6213544001861779] +21:52:31 [ 3] [ 6] [300000] +21:52:31 [ 4] [ 12] [000000000000] +21:52:31 [ 7] [ 10] [0320215021] +21:52:31 [ 11] [ 6] [957843] +21:52:31 [ 12] [ 6] [215021] +21:52:31 [ 13] [ 4] [0320] +21:52:31 [ 15] [ 4] [0320] +21:52:31 [ 18] [ 4] [6011] +21:52:31 [ 19] [ 3] [418] +21:52:31 [ 22] [ 3] [021] +21:52:31 [ 25] [ 2] [01] +21:52:31 [ 28] [ 9] [D00000000] +21:52:31 [ 32] [ 6] [668899] +21:52:31 [ 35] [ 32] [6213544001861779=491212016177692] +21:52:31 [ 37] [ 12] [507901262096] +21:52:31 [ 41] [ 8] [03206001] +21:52:31 [ 42] [ 15] [APT ] +21:52:31 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +21:52:31 [ 49] [ 3] [418] +21:52:31 [ 52] [ 16] [091F80E8E4EE520F] +21:52:31 ============================================================================ +21:52:31 + + +waiting on router queue for slot.... +21:52:31 Sending to : +21:52:31 ============================================================================ +21:52:31 ============================================================================ +21:52:31 Slot Id : <343> +21:52:31 Transaction Type : REQUEST +21:52:31 Received From : +21:52:31 ============================================================================ +21:52:31 FNo. Len. Field Value +21:52:31 ============================================================================ +21:52:31 [ 1] [ 4] [0200] +21:52:31 [ 2] [ 16] [6213544001861779] +21:52:31 [ 3] [ 6] [300000] +21:52:31 [ 4] [ 12] [000000000000] +21:52:31 [ 7] [ 10] [0320215021] +21:52:31 [ 11] [ 6] [957843] +21:52:31 [ 12] [ 6] [215021] +21:52:31 [ 13] [ 4] [0320] +21:52:31 [ 15] [ 4] [0320] +21:52:31 [ 18] [ 4] [6011] +21:52:31 [ 19] [ 3] [418] +21:52:31 [ 22] [ 3] [021] +21:52:31 [ 25] [ 2] [01] +21:52:31 [ 28] [ 9] [D00000000] +21:52:31 [ 32] [ 6] [668899] +21:52:31 [ 35] [ 32] [6213544001861779=491212016177692] +21:52:31 [ 37] [ 12] [507901262096] +21:52:31 [ 41] [ 8] [03206001] +21:52:31 [ 42] [ 15] [APT ] +21:52:31 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +21:52:31 [ 49] [ 3] [418] +21:52:31 [ 52] [ 16] [54EE177891B84712] +21:52:31 ============================================================================ +21:52:31 + + +waiting on router queue for slot.... +21:52:31 Sending to : <0> +21:52:31 ============================================================================ +21:52:31 ============================================================================ +21:52:31 Slot Id : <343> +21:52:31 Transaction Type : RESPONSE +21:52:31 Received From : +21:52:31 ============================================================================ +21:52:31 FNo. Len. Field Value +21:52:31 ============================================================================ +21:52:31 [ 1] [ 4] [0210] +21:52:31 [ 2] [ 16] [6213544001861779] +21:52:31 [ 3] [ 6] [300000] +21:52:31 [ 4] [ 12] [000000000000] +21:52:31 [ 7] [ 10] [0320215021] +21:52:31 [ 11] [ 6] [957843] +21:52:31 [ 12] [ 6] [215021] +21:52:31 [ 13] [ 4] [0320] +21:52:31 [ 15] [ 4] [0320] +21:52:31 [ 18] [ 4] [6011] +21:52:31 [ 19] [ 3] [418] +21:52:31 [ 32] [ 6] [668899] +21:52:31 [ 35] [ 32] [6213544001861779=491212016177692] +21:52:31 [ 37] [ 12] [507901262096] +21:52:31 [ 38] [ 6] [545136] +21:52:31 [ 39] [ 2] [00] +21:52:31 [ 41] [ 8] [03206001] +21:52:31 [ 49] [ 3] [418] +21:52:31 [ 54] [ 40] [0001418C0003032124360002418C000303212436] +21:52:31 ============================================================================ +21:52:31 Sending to : +21:52:31 ============================================================================ +21:52:31 + + +waiting on router queue for slot.... +21:52:32 ============================================================================ +21:52:32 Slot Id : <343> +21:52:32 Transaction Type : RESPONSE +21:52:32 Received From : +21:52:32 ============================================================================ +21:52:32 FNo. Len. Field Value +21:52:32 ============================================================================ +21:52:32 [ 1] [ 4] [0210] +21:52:32 [ 2] [ 16] [6213544001861779] +21:52:32 [ 3] [ 6] [300000] +21:52:32 [ 4] [ 12] [000000000000] +21:52:32 [ 7] [ 10] [0320215021] +21:52:32 [ 11] [ 6] [957843] +21:52:32 [ 12] [ 6] [215021] +21:52:32 [ 13] [ 4] [0320] +21:52:32 [ 15] [ 4] [0320] +21:52:32 [ 18] [ 4] [6011] +21:52:32 [ 19] [ 3] [418] +21:52:32 [ 32] [ 6] [668899] +21:52:32 [ 35] [ 32] [6213544001861779=491212016177692] +21:52:32 [ 37] [ 12] [507901262096] +21:52:32 [ 38] [ 6] [545136] +21:52:32 [ 39] [ 2] [00] +21:52:32 [ 41] [ 8] [03206001] +21:52:32 [ 49] [ 3] [418] +21:52:32 [ 54] [ 40] [0001418C0003032124360002418C000303212436] +21:52:32 ============================================================================ +21:52:32 Calculate Source COMM Id = 4 +21:52:32 ============================================================================ +21:52:32 + + +waiting on router queue for slot.... +21:52:39 ============================================================================ +21:52:39 Slot Id : <313> +21:52:39 Transaction Type : REQUEST +21:52:39 Received From : +21:52:39 ============================================================================ +21:52:39 FNo. Len. Field Value +21:52:39 ============================================================================ +21:52:39 [ 1] [ 4] [0800] +21:52:39 [ 7] [ 10] [0320025147] +21:52:39 [ 11] [ 6] [158597] +21:52:39 [ 70] [ 3] [301] +21:52:39 ============================================================================ +21:52:39 + + +waiting on router queue for slot.... +21:52:39 Sending to : +21:52:39 ============================================================================ +21:52:39 ============================================================================ +21:52:39 Slot Id : <313> +21:52:39 Transaction Type : RESPONSE +21:52:39 Received From : +21:52:39 ============================================================================ +21:52:39 FNo. Len. Field Value +21:52:39 ============================================================================ +21:52:39 [ 1] [ 4] [0810] +21:52:39 [ 7] [ 10] [0320025147] +21:52:39 [ 11] [ 6] [158597] +21:52:39 [ 39] [ 2] [00] +21:52:39 [ 70] [ 3] [301] +21:52:39 ============================================================================ +21:52:39 Calculate Source COMM Id = 2 +21:52:39 ============================================================================ +21:52:39 + + +waiting on router queue for slot.... +21:52:52 ============================================================================ +21:52:52 Slot Id : <340> +21:52:52 Transaction Type : REQUEST +21:52:52 Received From : +21:52:52 ============================================================================ +21:52:52 FNo. Len. Field Value +21:52:52 ============================================================================ +21:52:52 [ 1] [ 4] [0200] +21:52:52 [ 2] [ 16] [6213544001861779] +21:52:52 [ 3] [ 6] [300000] +21:52:52 [ 4] [ 12] [000000000000] +21:52:52 [ 7] [ 10] [0320215043] +21:52:52 [ 11] [ 6] [957845] +21:52:52 [ 12] [ 6] [215043] +21:52:52 [ 13] [ 4] [0320] +21:52:52 [ 15] [ 4] [0320] +21:52:52 [ 18] [ 4] [6011] +21:52:52 [ 19] [ 3] [418] +21:52:52 [ 22] [ 3] [021] +21:52:52 [ 25] [ 2] [01] +21:52:52 [ 28] [ 9] [D00000000] +21:52:52 [ 32] [ 6] [668899] +21:52:52 [ 35] [ 32] [6213544001861779=491212016177692] +21:52:52 [ 37] [ 12] [507901262097] +21:52:52 [ 41] [ 8] [03206001] +21:52:52 [ 42] [ 15] [APT ] +21:52:52 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +21:52:52 [ 49] [ 3] [418] +21:52:52 [ 52] [ 16] [091F80E8E4EE520F] +21:52:52 ============================================================================ +21:52:52 + + +waiting on router queue for slot.... +21:52:52 Sending to : +21:52:52 ============================================================================ +21:52:52 Sending to : +21:52:52 ============================================================================ +21:52:52 ============================================================================ +21:52:52 Slot Id : <340> +21:52:52 Transaction Type : REQUEST +21:52:52 Received From : +21:52:52 ============================================================================ +21:52:52 FNo. Len. Field Value +21:52:52 ============================================================================ +21:52:52 [ 1] [ 4] [0200] +21:52:52 [ 2] [ 16] [6213544001861779] +21:52:52 [ 3] [ 6] [300000] +21:52:52 [ 4] [ 12] [000000000000] +21:52:52 [ 7] [ 10] [0320215043] +21:52:52 [ 11] [ 6] [957845] +21:52:52 [ 12] [ 6] [215043] +21:52:52 [ 13] [ 4] [0320] +21:52:52 [ 15] [ 4] [0320] +21:52:52 [ 18] [ 4] [6011] +21:52:52 [ 19] [ 3] [418] +21:52:52 [ 22] [ 3] [021] +21:52:52 [ 25] [ 2] [01] +21:52:52 [ 28] [ 9] [D00000000] +21:52:52 [ 32] [ 6] [668899] +21:52:52 [ 35] [ 32] [6213544001861779=491212016177692] +21:52:52 [ 37] [ 12] [507901262097] +21:52:52 [ 41] [ 8] [03206001] +21:52:52 [ 42] [ 15] [APT ] +21:52:52 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +21:52:52 [ 49] [ 3] [418] +21:52:52 [ 52] [ 16] [091F80E8E4EE520F] +21:52:52 ============================================================================ +21:52:52 + + +waiting on router queue for slot.... +21:52:52 Sending to : +21:52:52 ============================================================================ +21:52:52 ============================================================================ +21:52:52 Slot Id : <340> +21:52:52 Transaction Type : REQUEST +21:52:52 Received From : +21:52:52 ============================================================================ +21:52:52 FNo. Len. Field Value +21:52:52 ============================================================================ +21:52:52 [ 1] [ 4] [0200] +21:52:52 [ 2] [ 16] [6213544001861779] +21:52:52 [ 3] [ 6] [300000] +21:52:52 [ 4] [ 12] [000000000000] +21:52:52 [ 7] [ 10] [0320215043] +21:52:52 [ 11] [ 6] [957845] +21:52:52 [ 12] [ 6] [215043] +21:52:52 [ 13] [ 4] [0320] +21:52:52 [ 15] [ 4] [0320] +21:52:52 [ 18] [ 4] [6011] +21:52:52 [ 19] [ 3] [418] +21:52:52 [ 22] [ 3] [021] +21:52:52 [ 25] [ 2] [01] +21:52:52 [ 28] [ 9] [D00000000] +21:52:52 [ 32] [ 6] [668899] +21:52:52 [ 35] [ 32] [6213544001861779=491212016177692] +21:52:52 [ 37] [ 12] [507901262097] +21:52:52 [ 41] [ 8] [03206001] +21:52:52 [ 42] [ 15] [APT ] +21:52:52 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +21:52:52 [ 49] [ 3] [418] +21:52:52 [ 52] [ 16] [54EE177891B84712] +21:52:52 ============================================================================ +21:52:52 + + +waiting on router queue for slot.... +21:52:52 Sending to : <0> +21:52:52 ============================================================================ +21:52:53 ============================================================================ +21:52:53 Slot Id : <340> +21:52:53 Transaction Type : RESPONSE +21:52:53 Received From : +21:52:53 ============================================================================ +21:52:53 FNo. Len. Field Value +21:52:53 ============================================================================ +21:52:53 [ 1] [ 4] [0210] +21:52:53 [ 2] [ 16] [6213544001861779] +21:52:53 [ 3] [ 6] [300000] +21:52:53 [ 4] [ 12] [000000000000] +21:52:53 [ 7] [ 10] [0320215043] +21:52:53 [ 11] [ 6] [957845] +21:52:53 [ 12] [ 6] [215043] +21:52:53 [ 13] [ 4] [0320] +21:52:53 [ 15] [ 4] [0320] +21:52:53 [ 18] [ 4] [6011] +21:52:53 [ 19] [ 3] [418] +21:52:53 [ 32] [ 6] [668899] +21:52:53 [ 35] [ 32] [6213544001861779=491212016177692] +21:52:53 [ 37] [ 12] [507901262097] +21:52:53 [ 38] [ 6] [279155] +21:52:53 [ 39] [ 2] [00] +21:52:53 [ 41] [ 8] [03206001] +21:52:53 [ 49] [ 3] [418] +21:52:53 [ 54] [ 40] [0001418C0003032124360002418C000303212436] +21:52:53 ============================================================================ +21:52:53 Sending to : +21:52:53 ============================================================================ +21:52:53 + + +waiting on router queue for slot.... +21:52:54 ============================================================================ +21:52:54 Slot Id : <340> +21:52:54 Transaction Type : RESPONSE +21:52:54 Received From : +21:52:54 ============================================================================ +21:52:54 FNo. Len. Field Value +21:52:54 ============================================================================ +21:52:54 [ 1] [ 4] [0210] +21:52:54 [ 2] [ 16] [6213544001861779] +21:52:54 [ 3] [ 6] [300000] +21:52:54 [ 4] [ 12] [000000000000] +21:52:54 [ 7] [ 10] [0320215043] +21:52:54 [ 11] [ 6] [957845] +21:52:54 [ 12] [ 6] [215043] +21:52:54 [ 13] [ 4] [0320] +21:52:54 [ 15] [ 4] [0320] +21:52:54 [ 18] [ 4] [6011] +21:52:54 [ 19] [ 3] [418] +21:52:54 [ 32] [ 6] [668899] +21:52:54 [ 35] [ 32] [6213544001861779=491212016177692] +21:52:54 [ 37] [ 12] [507901262097] +21:52:54 [ 38] [ 6] [279155] +21:52:54 [ 39] [ 2] [00] +21:52:54 [ 41] [ 8] [03206001] +21:52:54 [ 49] [ 3] [418] +21:52:54 [ 54] [ 40] [0001418C0003032124360002418C000303212436] +21:52:54 ============================================================================ +21:52:54 Calculate Source COMM Id = 4 +21:52:54 ============================================================================ +21:52:54 + + +waiting on router queue for slot.... +21:52:56 ============================================================================ +21:52:56 Slot Id : <373> +21:52:56 Transaction Type : REQUEST +21:52:56 Received From : +21:52:56 ============================================================================ +21:52:56 FNo. Len. Field Value +21:52:56 ============================================================================ +21:52:56 [ 1] [ 4] [0800] +21:52:56 [ 7] [ 10] [0320025204] +21:52:56 [ 11] [ 6] [158598] +21:52:56 [ 70] [ 3] [301] +21:52:56 ============================================================================ +21:52:56 + + +waiting on router queue for slot.... +21:52:56 Sending to : +21:52:56 ============================================================================ +21:52:56 ============================================================================ +21:52:56 Slot Id : <373> +21:52:56 Transaction Type : RESPONSE +21:52:56 Received From : +21:52:56 ============================================================================ +21:52:56 FNo. Len. Field Value +21:52:56 ============================================================================ +21:52:56 [ 1] [ 4] [0810] +21:52:56 [ 7] [ 10] [0320025204] +21:52:56 [ 11] [ 6] [158598] +21:52:56 [ 39] [ 2] [00] +21:52:56 [ 70] [ 3] [301] +21:52:56 ============================================================================ +21:52:56 Calculate Source COMM Id = 2 +21:52:56 ============================================================================ +21:52:56 + + +waiting on router queue for slot.... +21:53:00 ============================================================================ +21:53:00 Slot Id : <345> +21:53:00 Transaction Type : REQUEST +21:53:00 Received From : +21:53:00 ============================================================================ +21:53:00 FNo. Len. Field Value +21:53:00 ============================================================================ +21:53:00 [ 1] [ 4] [0800] +21:53:00 [ 2] [ 5] [02531] +21:53:00 [ 3] [ 6] [579218] +21:53:00 [ 7] [ 10] [0320145300] +21:53:00 [ 11] [ 6] [807682] +21:53:00 [ 15] [ 10] [0320145300] +21:53:00 [ 37] [ 11] [57921807682] +21:53:00 [ 70] [ 3] [001] +21:53:00 ============================================================================ +21:53:00 + + +waiting on router queue for slot.... +21:53:00 ============================================================================ +21:53:00 Slot Id : <345> +21:53:00 Transaction Type : RESPONSE +21:53:00 Received From : +21:53:00 ============================================================================ +21:53:00 FNo. Len. Field Value +21:53:00 ============================================================================ +21:53:00 [ 1] [ 4] [0810] +21:53:00 [ 7] [ 10] [0320145300] +21:53:00 [ 11] [ 6] [807682] +21:53:00 [ 15] [ 4] [0320] +21:53:00 [ 37] [ 12] [57921807682] +21:53:00 [ 39] [ 2] [00] +21:53:00 [ 70] [ 3] [001] +21:53:00 ============================================================================ +21:53:00 Sending to : +21:53:00 ============================================================================ +21:53:00 + + +waiting on router queue for slot.... +21:53:02 ============================================================================ +21:53:02 Slot Id : <324> +21:53:02 Transaction Type : REQUEST +21:53:02 Received From : +21:53:02 ============================================================================ +21:53:02 FNo. Len. Field Value +21:53:02 ============================================================================ +21:53:02 [ 1] [ 4] [0200] +21:53:02 [ 2] [ 16] [2206990000109611] +21:53:02 [ 3] [ 6] [302000] +21:53:02 [ 7] [ 10] [0320145210] +21:53:02 [ 11] [ 6] [271726] +21:53:02 [ 12] [ 6] [215210] +21:53:02 [ 13] [ 4] [0320] +21:53:02 [ 14] [ 4] [9712] +21:53:02 [ 15] [ 4] [0320] +21:53:02 [ 18] [ 4] [6011] +21:53:02 [ 19] [ 3] [418] +21:53:02 [ 22] [ 3] [021] +21:53:02 [ 25] [ 2] [01] +21:53:02 [ 32] [ 6] [180893] +21:53:02 [ 35] [ 32] [2206990000109611=971212613796322] +21:53:02 [ 37] [ 12] [507914271726] +21:53:02 [ 41] [ 8] [0104NUOL] +21:53:02 [ 42] [ 15] [999999 ] +21:53:02 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +21:53:02 [ 49] [ 3] [418] +21:53:02 [ 52] [ 16] [BB1C7ADCCB9B9BA4] +21:53:02 ============================================================================ +21:53:02 + + +waiting on router queue for slot.... +21:53:02 Sending to : +21:53:02 ============================================================================ +21:53:02 Sending to : +21:53:02 ============================================================================ +21:53:03 ============================================================================ +21:53:03 Slot Id : <324> +21:53:03 Transaction Type : REQUEST +21:53:03 Received From : +21:53:03 ============================================================================ +21:53:03 FNo. Len. Field Value +21:53:03 ============================================================================ +21:53:03 [ 1] [ 4] [0200] +21:53:03 [ 2] [ 16] [2206990000109611] +21:53:03 [ 3] [ 6] [302000] +21:53:03 [ 7] [ 10] [0320145210] +21:53:03 [ 11] [ 6] [271726] +21:53:03 [ 12] [ 6] [215210] +21:53:03 [ 13] [ 4] [0320] +21:53:03 [ 14] [ 4] [9712] +21:53:03 [ 15] [ 4] [0320] +21:53:03 [ 18] [ 4] [6011] +21:53:03 [ 19] [ 3] [418] +21:53:03 [ 22] [ 3] [021] +21:53:03 [ 25] [ 2] [01] +21:53:03 [ 32] [ 6] [180893] +21:53:03 [ 35] [ 32] [2206990000109611=971212613796322] +21:53:03 [ 37] [ 12] [507914271726] +21:53:03 [ 41] [ 8] [0104NUOL] +21:53:03 [ 42] [ 15] [999999 ] +21:53:03 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +21:53:03 [ 49] [ 3] [418] +21:53:03 [ 52] [ 16] [BB1C7ADCCB9B9BA4] +21:53:03 ============================================================================ +21:53:03 + + +waiting on router queue for slot.... +21:53:03 Sending to : +21:53:03 ============================================================================ +21:53:03 ============================================================================ +21:53:03 Slot Id : <324> +21:53:03 Transaction Type : REQUEST +21:53:03 Received From : +21:53:03 ============================================================================ +21:53:03 FNo. Len. Field Value +21:53:03 ============================================================================ +21:53:03 [ 1] [ 4] [0200] +21:53:03 [ 2] [ 16] [2206990000109611] +21:53:03 [ 3] [ 6] [302000] +21:53:03 [ 7] [ 10] [0320145210] +21:53:03 [ 11] [ 6] [271726] +21:53:03 [ 12] [ 6] [215210] +21:53:03 [ 13] [ 4] [0320] +21:53:03 [ 14] [ 4] [9712] +21:53:03 [ 15] [ 4] [0320] +21:53:03 [ 18] [ 4] [6011] +21:53:03 [ 19] [ 3] [418] +21:53:03 [ 22] [ 3] [021] +21:53:03 [ 25] [ 2] [01] +21:53:03 [ 32] [ 6] [180893] +21:53:03 [ 35] [ 32] [2206990000109611=971212613796322] +21:53:03 [ 37] [ 12] [507914271726] +21:53:03 [ 41] [ 8] [0104NUOL] +21:53:03 [ 42] [ 15] [999999 ] +21:53:03 [ 43] [ 40] [ATM DONGDOK LOCATION, Xaythany, Lao Peop] +21:53:03 [ 49] [ 3] [418] +21:53:03 [ 52] [ 16] [A2996FD6E24335D7] +21:53:03 ============================================================================ +21:53:03 + + +waiting on router queue for slot.... +21:53:03 Sending to : <1> +21:53:03 ============================================================================ +21:53:06 ============================================================================ +21:53:06 Slot Id : <324> +21:53:06 Transaction Type : RESPONSE +21:53:06 Received From : +21:53:06 ============================================================================ +21:53:06 FNo. Len. Field Value +21:53:06 ============================================================================ +21:53:06 [ 1] [ 4] [0210] +21:53:06 [ 2] [ 16] [2206990000109611] +21:53:06 [ 3] [ 6] [302000] +21:53:06 [ 4] [ 12] [000000000000] +21:53:06 [ 7] [ 10] [0320145210] +21:53:06 [ 11] [ 6] [271726] +21:53:06 [ 12] [ 6] [215210] +21:53:06 [ 13] [ 4] [0320] +21:53:06 [ 15] [ 4] [0320] +21:53:06 [ 18] [ 4] [6011] +21:53:06 [ 32] [ 6] [180893] +21:53:06 [ 35] [ 32] [2206990000109611=971212613796322] +21:53:06 [ 37] [ 12] [507914271726] +21:53:06 [ 38] [ 6] [891859] +21:53:06 [ 39] [ 2] [00] +21:53:06 [ 41] [ 8] [0104NUOL] +21:53:06 [ 49] [ 3] [418] +21:53:06 [ 54] [ 40] [2001418C0003460354002002418C000346035400] +21:53:06 ============================================================================ +21:53:06 Sending to : +21:53:06 ============================================================================ +21:53:06 + + +waiting on router queue for slot.... +21:53:06 ============================================================================ +21:53:06 Slot Id : <353> +21:53:06 Transaction Type : REQUEST +21:53:06 Received From : +21:53:06 ============================================================================ +21:53:06 FNo. Len. Field Value +21:53:06 ============================================================================ +21:53:06 [ 1] [ 4] [0800] +21:53:06 [ 7] [ 10] [0320025215] +21:53:06 [ 11] [ 6] [158599] +21:53:06 [ 70] [ 3] [301] +21:53:06 ============================================================================ +21:53:06 + + +waiting on router queue for slot.... +21:53:06 Sending to : +21:53:06 ============================================================================ +21:53:06 ============================================================================ +21:53:06 Slot Id : <353> +21:53:06 Transaction Type : RESPONSE +21:53:06 Received From : +21:53:06 ============================================================================ +21:53:06 FNo. Len. Field Value +21:53:06 ============================================================================ +21:53:06 [ 1] [ 4] [0810] +21:53:06 [ 7] [ 10] [0320025215] +21:53:06 [ 11] [ 6] [158599] +21:53:06 [ 39] [ 2] [00] +21:53:06 [ 70] [ 3] [301] +21:53:06 ============================================================================ +21:53:06 Calculate Source COMM Id = 2 +21:53:06 ============================================================================ +21:53:06 + + +waiting on router queue for slot.... +21:53:07 ============================================================================ +21:53:07 Slot Id : <324> +21:53:07 Transaction Type : RESPONSE +21:53:07 Received From : +21:53:07 ============================================================================ +21:53:07 FNo. Len. Field Value +21:53:07 ============================================================================ +21:53:07 [ 1] [ 4] [0210] +21:53:07 [ 2] [ 16] [2206990000109611] +21:53:07 [ 3] [ 6] [302000] +21:53:07 [ 4] [ 12] [000000000000] +21:53:07 [ 7] [ 10] [0320145210] +21:53:07 [ 11] [ 6] [271726] +21:53:07 [ 12] [ 6] [215210] +21:53:07 [ 13] [ 4] [0320] +21:53:07 [ 15] [ 4] [0320] +21:53:07 [ 18] [ 4] [6011] +21:53:07 [ 32] [ 6] [180893] +21:53:07 [ 35] [ 32] [2206990000109611=971212613796322] +21:53:07 [ 37] [ 12] [507914271726] +21:53:07 [ 38] [ 6] [891859] +21:53:07 [ 39] [ 2] [00] +21:53:07 [ 41] [ 8] [0104NUOL] +21:53:07 [ 49] [ 3] [418] +21:53:07 [ 54] [ 40] [2001418C0003460354002002418C000346035400] +21:53:07 ============================================================================ +21:53:07 Calculate Source COMM Id = 2 +21:53:07 ============================================================================ +21:53:07 + + +waiting on router queue for slot.... +21:53:14 ============================================================================ +21:53:14 Slot Id : <382> +21:53:14 Transaction Type : REQUEST +21:53:14 Received From : +21:53:14 ============================================================================ +21:53:14 FNo. Len. Field Value +21:53:14 ============================================================================ +21:53:14 [ 1] [ 4] [0800] +21:53:14 [ 7] [ 10] [0321050503] +21:53:14 [ 11] [ 6] [220503] +21:53:14 [ 37] [ 12] [57922220503] +21:53:14 [ 70] [ 3] [301] +21:53:14 ============================================================================ +21:53:14 + + +waiting on router queue for slot.... +21:53:14 Sending to : +21:53:14 ============================================================================ +21:53:14 ============================================================================ +21:53:14 Slot Id : <382> +21:53:14 Transaction Type : RESPONSE +21:53:14 Received From : +21:53:14 ============================================================================ +21:53:14 FNo. Len. Field Value +21:53:14 ============================================================================ +21:53:14 [ 1] [ 4] [0810] +21:53:14 [ 7] [ 10] [0321050503] +21:53:14 [ 11] [ 6] [220503] +21:53:14 [ 37] [ 12] [579222205030] +21:53:14 [ 39] [ 2] [00] +21:53:14 [ 70] [ 3] [810] +21:53:14 ============================================================================ +21:53:14 Calculate Source COMM Id = 6 +21:53:14 ============================================================================ +21:53:14 + + +waiting on router queue for slot.... +21:53:21 ============================================================================ +21:53:21 Slot Id : <344> +21:53:21 Transaction Type : REQUEST +21:53:21 Received From : +21:53:21 ============================================================================ +21:53:21 FNo. Len. Field Value +21:53:21 ============================================================================ +21:53:21 [ 1] [ 4] [0200] +21:53:21 [ 2] [ 16] [6213544001861779] +21:53:21 [ 3] [ 6] [300000] +21:53:21 [ 4] [ 12] [000000000000] +21:53:21 [ 7] [ 10] [0320215112] +21:53:21 [ 11] [ 6] [957848] +21:53:21 [ 12] [ 6] [215112] +21:53:21 [ 13] [ 4] [0320] +21:53:21 [ 15] [ 4] [0320] +21:53:21 [ 18] [ 4] [6011] +21:53:21 [ 19] [ 3] [418] +21:53:21 [ 22] [ 3] [021] +21:53:21 [ 25] [ 2] [01] +21:53:21 [ 28] [ 9] [D00000000] +21:53:21 [ 32] [ 6] [668899] +21:53:21 [ 35] [ 32] [6213544001861779=491212016177692] +21:53:21 [ 37] [ 12] [507901262098] +21:53:21 [ 41] [ 8] [03206001] +21:53:21 [ 42] [ 15] [APT ] +21:53:21 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +21:53:21 [ 49] [ 3] [418] +21:53:21 [ 52] [ 16] [091F80E8E4EE520F] +21:53:21 ============================================================================ +21:53:21 + + +waiting on router queue for slot.... +21:53:21 Sending to : +21:53:21 ============================================================================ +21:53:21 Sending to : +21:53:21 ============================================================================ +21:53:22 ============================================================================ +21:53:22 Slot Id : <344> +21:53:22 Transaction Type : REQUEST +21:53:22 Received From : +21:53:22 ============================================================================ +21:53:22 FNo. Len. Field Value +21:53:22 ============================================================================ +21:53:22 [ 1] [ 4] [0200] +21:53:22 [ 2] [ 16] [6213544001861779] +21:53:22 [ 3] [ 6] [300000] +21:53:22 [ 4] [ 12] [000000000000] +21:53:22 [ 7] [ 10] [0320215112] +21:53:22 [ 11] [ 6] [957848] +21:53:22 [ 12] [ 6] [215112] +21:53:22 [ 13] [ 4] [0320] +21:53:22 [ 15] [ 4] [0320] +21:53:22 [ 18] [ 4] [6011] +21:53:22 [ 19] [ 3] [418] +21:53:22 [ 22] [ 3] [021] +21:53:22 [ 25] [ 2] [01] +21:53:22 [ 28] [ 9] [D00000000] +21:53:22 [ 32] [ 6] [668899] +21:53:22 [ 35] [ 32] [6213544001861779=491212016177692] +21:53:22 [ 37] [ 12] [507901262098] +21:53:22 [ 41] [ 8] [03206001] +21:53:22 [ 42] [ 15] [APT ] +21:53:22 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +21:53:22 [ 49] [ 3] [418] +21:53:22 [ 52] [ 16] [091F80E8E4EE520F] +21:53:22 ============================================================================ +21:53:22 + + +waiting on router queue for slot.... +21:53:22 Sending to : +21:53:22 ============================================================================ +21:53:22 ============================================================================ +21:53:22 Slot Id : <344> +21:53:22 Transaction Type : REQUEST +21:53:22 Received From : +21:53:22 ============================================================================ +21:53:22 FNo. Len. Field Value +21:53:22 ============================================================================ +21:53:22 [ 1] [ 4] [0200] +21:53:22 [ 2] [ 16] [6213544001861779] +21:53:22 [ 3] [ 6] [300000] +21:53:22 [ 4] [ 12] [000000000000] +21:53:22 [ 7] [ 10] [0320215112] +21:53:22 [ 11] [ 6] [957848] +21:53:22 [ 12] [ 6] [215112] +21:53:22 [ 13] [ 4] [0320] +21:53:22 [ 15] [ 4] [0320] +21:53:22 [ 18] [ 4] [6011] +21:53:22 [ 19] [ 3] [418] +21:53:22 [ 22] [ 3] [021] +21:53:22 [ 25] [ 2] [01] +21:53:22 [ 28] [ 9] [D00000000] +21:53:22 [ 32] [ 6] [668899] +21:53:22 [ 35] [ 32] [6213544001861779=491212016177692] +21:53:22 [ 37] [ 12] [507901262098] +21:53:22 [ 41] [ 8] [03206001] +21:53:22 [ 42] [ 15] [APT ] +21:53:22 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +21:53:22 [ 49] [ 3] [418] +21:53:22 [ 52] [ 16] [54EE177891B84712] +21:53:22 ============================================================================ +21:53:22 + + +waiting on router queue for slot.... +21:53:22 Sending to : <0> +21:53:22 ============================================================================ +21:53:22 ============================================================================ +21:53:22 Slot Id : <344> +21:53:22 Transaction Type : RESPONSE +21:53:22 Received From : +21:53:22 ============================================================================ +21:53:22 FNo. Len. Field Value +21:53:22 ============================================================================ +21:53:22 [ 1] [ 4] [0210] +21:53:22 [ 2] [ 16] [6213544001861779] +21:53:22 [ 3] [ 6] [300000] +21:53:22 [ 4] [ 12] [000000000000] +21:53:22 [ 7] [ 10] [0320215112] +21:53:22 [ 11] [ 6] [957848] +21:53:22 [ 12] [ 6] [215112] +21:53:22 [ 13] [ 4] [0320] +21:53:22 [ 15] [ 4] [0320] +21:53:22 [ 18] [ 4] [6011] +21:53:22 [ 19] [ 3] [418] +21:53:22 [ 32] [ 6] [668899] +21:53:22 [ 35] [ 32] [6213544001861779=491212016177692] +21:53:22 [ 37] [ 12] [507901262098] +21:53:22 [ 38] [ 6] [496783] +21:53:22 [ 39] [ 2] [00] +21:53:22 [ 41] [ 8] [03206001] +21:53:22 [ 49] [ 3] [418] +21:53:22 [ 54] [ 40] [0001418C0003032124360002418C000303212436] +21:53:22 ============================================================================ +21:53:22 Sending to : +21:53:22 ============================================================================ +21:53:22 + + +waiting on router queue for slot.... +21:53:23 ============================================================================ +21:53:23 Slot Id : <355> +21:53:23 Transaction Type : REQUEST +21:53:23 Received From : +21:53:23 ============================================================================ +21:53:23 FNo. Len. Field Value +21:53:23 ============================================================================ +21:53:23 [ 1] [ 4] [0800] +21:53:23 [ 7] [ 10] [0320025231] +21:53:23 [ 11] [ 6] [158600] +21:53:23 [ 70] [ 3] [301] +21:53:23 ============================================================================ +21:53:23 + + +waiting on router queue for slot.... +21:53:23 Sending to : +21:53:23 ============================================================================ +21:53:23 ============================================================================ +21:53:23 Slot Id : <355> +21:53:23 Transaction Type : RESPONSE +21:53:23 Received From : +21:53:23 ============================================================================ +21:53:23 FNo. Len. Field Value +21:53:23 ============================================================================ +21:53:23 [ 1] [ 4] [0810] +21:53:23 [ 7] [ 10] [0320025231] +21:53:23 [ 11] [ 6] [158600] +21:53:23 [ 39] [ 2] [00] +21:53:23 [ 70] [ 3] [301] +21:53:23 ============================================================================ +21:53:23 Calculate Source COMM Id = 2 +21:53:23 ============================================================================ +21:53:23 + + +waiting on router queue for slot.... +21:53:23 ============================================================================ +21:53:23 Slot Id : <344> +21:53:23 Transaction Type : RESPONSE +21:53:23 Received From : +21:53:23 ============================================================================ +21:53:23 FNo. Len. Field Value +21:53:23 ============================================================================ +21:53:23 [ 1] [ 4] [0210] +21:53:23 [ 2] [ 16] [6213544001861779] +21:53:23 [ 3] [ 6] [300000] +21:53:23 [ 4] [ 12] [000000000000] +21:53:23 [ 7] [ 10] [0320215112] +21:53:23 [ 11] [ 6] [957848] +21:53:23 [ 12] [ 6] [215112] +21:53:23 [ 13] [ 4] [0320] +21:53:23 [ 15] [ 4] [0320] +21:53:23 [ 18] [ 4] [6011] +21:53:23 [ 19] [ 3] [418] +21:53:23 [ 32] [ 6] [668899] +21:53:23 [ 35] [ 32] [6213544001861779=491212016177692] +21:53:23 [ 37] [ 12] [507901262098] +21:53:23 [ 38] [ 6] [496783] +21:53:23 [ 39] [ 2] [00] +21:53:23 [ 41] [ 8] [03206001] +21:53:23 [ 49] [ 3] [418] +21:53:23 [ 54] [ 40] [0001418C0003032124360002418C000303212436] +21:53:23 ============================================================================ +21:53:23 Calculate Source COMM Id = 4 +21:53:23 ============================================================================ +21:53:23 + + +waiting on router queue for slot.... +21:53:38 ============================================================================ +21:53:38 Slot Id : <363> +21:53:38 Transaction Type : REQUEST +21:53:38 Received From : +21:53:38 ============================================================================ +21:53:38 FNo. Len. Field Value +21:53:38 ============================================================================ +21:53:38 [ 1] [ 4] [0800] +21:53:38 [ 7] [ 10] [0320025246] +21:53:38 [ 11] [ 6] [158601] +21:53:38 [ 70] [ 3] [301] +21:53:38 ============================================================================ +21:53:38 + + +waiting on router queue for slot.... +21:53:38 Sending to : +21:53:38 ============================================================================ +21:53:38 ============================================================================ +21:53:38 Slot Id : <363> +21:53:38 Transaction Type : RESPONSE +21:53:38 Received From : +21:53:38 ============================================================================ +21:53:38 FNo. Len. Field Value +21:53:38 ============================================================================ +21:53:38 [ 1] [ 4] [0810] +21:53:38 [ 7] [ 10] [0320025246] +21:53:38 [ 11] [ 6] [158601] +21:53:38 [ 39] [ 2] [00] +21:53:38 [ 70] [ 3] [301] +21:53:38 ============================================================================ +21:53:38 Calculate Source COMM Id = 2 +21:53:38 ============================================================================ +21:53:38 + + +waiting on router queue for slot.... +21:53:49 ============================================================================ +21:53:49 Slot Id : <370> +21:53:49 Transaction Type : REQUEST +21:53:49 Received From : +21:53:49 ============================================================================ +21:53:49 FNo. Len. Field Value +21:53:49 ============================================================================ +21:53:49 [ 1] [ 4] [0800] +21:53:49 [ 7] [ 10] [0320025256] +21:53:49 [ 11] [ 6] [158602] +21:53:49 [ 70] [ 3] [301] +21:53:49 ============================================================================ +21:53:49 + + +waiting on router queue for slot.... +21:53:49 Sending to : +21:53:49 ============================================================================ +21:53:49 ============================================================================ +21:53:49 Slot Id : <370> +21:53:49 Transaction Type : RESPONSE +21:53:49 Received From : +21:53:49 ============================================================================ +21:53:49 FNo. Len. Field Value +21:53:49 ============================================================================ +21:53:49 [ 1] [ 4] [0810] +21:53:49 [ 7] [ 10] [0320025256] +21:53:49 [ 11] [ 6] [158602] +21:53:49 [ 39] [ 2] [00] +21:53:49 [ 70] [ 3] [301] +21:53:49 ============================================================================ +21:53:49 Calculate Source COMM Id = 2 +21:53:49 ============================================================================ +21:53:49 + + +waiting on router queue for slot.... +21:53:52 ============================================================================ +21:53:52 Slot Id : <358> +21:53:52 Transaction Type : REQUEST +21:53:52 Received From : +21:53:52 ============================================================================ +21:53:52 FNo. Len. Field Value +21:53:52 ============================================================================ +21:53:52 [ 1] [ 4] [0200] +21:53:52 [ 2] [ 16] [6213544001861779] +21:53:52 [ 3] [ 6] [010000] +21:53:52 [ 4] [ 12] [000050000000] +21:53:52 [ 7] [ 10] [0320215143] +21:53:52 [ 11] [ 6] [957851] +21:53:52 [ 12] [ 6] [215143] +21:53:52 [ 13] [ 4] [0320] +21:53:52 [ 15] [ 4] [0320] +21:53:52 [ 18] [ 4] [6011] +21:53:52 [ 19] [ 3] [418] +21:53:52 [ 22] [ 3] [021] +21:53:52 [ 25] [ 2] [01] +21:53:52 [ 28] [ 9] [D00002000] +21:53:52 [ 32] [ 6] [668899] +21:53:52 [ 35] [ 32] [6213544001861779=491212016177692] +21:53:52 [ 37] [ 12] [507901262099] +21:53:52 [ 41] [ 8] [03206001] +21:53:52 [ 42] [ 15] [APT ] +21:53:52 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +21:53:52 [ 49] [ 3] [418] +21:53:52 [ 52] [ 16] [091F80E8E4EE520F] +21:53:52 ============================================================================ +21:53:52 + + +waiting on router queue for slot.... +21:53:52 Sending to : +21:53:52 ============================================================================ +21:53:52 Sending to : +21:53:52 ============================================================================ +21:53:52 ============================================================================ +21:53:52 Slot Id : <358> +21:53:52 Transaction Type : REQUEST +21:53:52 Received From : +21:53:52 ============================================================================ +21:53:52 FNo. Len. Field Value +21:53:52 ============================================================================ +21:53:52 [ 1] [ 4] [0200] +21:53:52 [ 2] [ 16] [6213544001861779] +21:53:52 [ 3] [ 6] [010000] +21:53:52 [ 4] [ 12] [000050000000] +21:53:52 [ 7] [ 10] [0320215143] +21:53:52 [ 11] [ 6] [957851] +21:53:52 [ 12] [ 6] [215143] +21:53:52 [ 13] [ 4] [0320] +21:53:52 [ 15] [ 4] [0320] +21:53:52 [ 18] [ 4] [6011] +21:53:52 [ 19] [ 3] [418] +21:53:52 [ 22] [ 3] [021] +21:53:52 [ 25] [ 2] [01] +21:53:52 [ 28] [ 9] [D00002000] +21:53:52 [ 32] [ 6] [668899] +21:53:52 [ 35] [ 32] [6213544001861779=491212016177692] +21:53:52 [ 37] [ 12] [507901262099] +21:53:52 [ 41] [ 8] [03206001] +21:53:52 [ 42] [ 15] [APT ] +21:53:52 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +21:53:52 [ 49] [ 3] [418] +21:53:52 [ 52] [ 16] [091F80E8E4EE520F] +21:53:52 ============================================================================ +21:53:52 + + +waiting on router queue for slot.... +21:53:52 Sending to : +21:53:52 ============================================================================ +21:53:52 ============================================================================ +21:53:52 Slot Id : <358> +21:53:52 Transaction Type : REQUEST +21:53:52 Received From : +21:53:52 ============================================================================ +21:53:52 FNo. Len. Field Value +21:53:52 ============================================================================ +21:53:52 [ 1] [ 4] [0200] +21:53:52 [ 2] [ 16] [6213544001861779] +21:53:52 [ 3] [ 6] [010000] +21:53:52 [ 4] [ 12] [000050000000] +21:53:52 [ 7] [ 10] [0320215143] +21:53:52 [ 11] [ 6] [957851] +21:53:52 [ 12] [ 6] [215143] +21:53:52 [ 13] [ 4] [0320] +21:53:52 [ 15] [ 4] [0320] +21:53:52 [ 18] [ 4] [6011] +21:53:52 [ 19] [ 3] [418] +21:53:52 [ 22] [ 3] [021] +21:53:52 [ 25] [ 2] [01] +21:53:52 [ 28] [ 9] [D00002000] +21:53:52 [ 32] [ 6] [668899] +21:53:52 [ 35] [ 32] [6213544001861779=491212016177692] +21:53:52 [ 37] [ 12] [507901262099] +21:53:52 [ 41] [ 8] [03206001] +21:53:52 [ 42] [ 15] [APT ] +21:53:52 [ 43] [ 40] [ PHOSY MARKET LUANGPRABAPH] +21:53:52 [ 49] [ 3] [418] +21:53:52 [ 52] [ 16] [54EE177891B84712] +21:53:52 ============================================================================ +21:53:52 + + +waiting on router queue for slot.... +21:53:52 Sending to : <0> +21:53:52 ============================================================================ +21:53:53 ============================================================================ +21:53:53 Slot Id : <358> +21:53:53 Transaction Type : RESPONSE +21:53:53 Received From : +21:53:53 ============================================================================ +21:53:53 FNo. Len. Field Value +21:53:53 ============================================================================ +21:53:53 [ 1] [ 4] [0210] +21:53:53 [ 2] [ 16] [6213544001861779] +21:53:53 [ 3] [ 6] [010000] +21:53:53 [ 4] [ 12] [000050000000] +21:53:53 [ 7] [ 10] [0320215143] +21:53:53 [ 11] [ 6] [957851] +21:53:53 [ 12] [ 6] [215143] +21:53:53 [ 13] [ 4] [0320] +21:53:53 [ 15] [ 4] [0320] +21:53:53 [ 18] [ 4] [6011] +21:53:53 [ 19] [ 3] [418] +21:53:53 [ 32] [ 6] [668899] +21:53:53 [ 35] [ 32] [6213544001861779=491212016177692] +21:53:53 [ 37] [ 12] [507901262099] +21:53:53 [ 38] [ 6] [299915] +21:53:53 [ 39] [ 2] [00] +21:53:53 [ 41] [ 8] [03206001] +21:53:53 [ 49] [ 3] [418] +21:53:53 [ 54] [ 40] [0001418C0003032124360002418C000253012436] +21:53:53 ============================================================================ +21:53:53 Sending to : +21:53:53 ============================================================================ +21:53:53 + + +waiting on router queue for slot.... +21:53:54 ============================================================================ +21:53:54 Slot Id : <358> +21:53:54 Transaction Type : RESPONSE +21:53:54 Received From : +21:53:54 ============================================================================ +21:53:54 FNo. Len. Field Value +21:53:54 ============================================================================ +21:53:54 [ 1] [ 4] [0210] +21:53:54 [ 2] [ 16] [6213544001861779] +21:53:54 [ 3] [ 6] [010000] +21:53:54 [ 4] [ 12] [000050000000] +21:53:54 [ 7] [ 10] [0320215143] +21:53:54 [ 11] [ 6] [957851] +21:53:54 [ 12] [ 6] [215143] +21:53:54 [ 13] [ 4] [0320] +21:53:54 [ 15] [ 4] [0320] +21:53:54 [ 18] [ 4] [6011] +21:53:54 [ 19] [ 3] [418] +21:53:54 [ 32] [ 6] [668899] +21:53:54 [ 35] [ 32] [6213544001861779=491212016177692] +21:53:54 [ 37] [ 12] [507901262099] +21:53:54 [ 38] [ 6] [299915] +21:53:54 [ 39] [ 2] [00] +21:53:54 [ 41] [ 8] [03206001] +21:53:54 [ 49] [ 3] [418] +21:53:54 [ 54] [ 40] [0001418C0003032124360002418C000253012436] +21:53:54 ============================================================================ +21:53:54 Calculate Source COMM Id = 4 +21:53:54 ============================================================================ +21:53:54 + + +waiting on router queue for slot.... +21:54:02 ============================================================================ +21:54:02 Slot Id : <379> +21:54:02 Transaction Type : REQUEST +21:54:02 Received From : +21:54:02 ============================================================================ +21:54:02 FNo. Len. Field Value +21:54:02 ============================================================================ +21:54:02 [ 1] [ 4] [0800] +21:54:02 [ 2] [ 5] [02531] +21:54:02 [ 3] [ 6] [579218] +21:54:02 [ 7] [ 10] [0320145402] +21:54:02 [ 11] [ 6] [807683] +21:54:02 [ 15] [ 10] [0320145402] +21:54:02 [ 37] [ 11] [57921807683] +21:54:02 [ 70] [ 3] [001] +21:54:02 ============================================================================ +21:54:02 + + +waiting on router queue for slot.... +21:54:02 ============================================================================ +21:54:02 Slot Id : <379> +21:54:02 Transaction Type : RESPONSE +21:54:02 Received From : +21:54:02 ============================================================================ +21:54:02 FNo. Len. Field Value +21:54:02 ============================================================================ +21:54:02 [ 1] [ 4] [0810] +21:54:02 [ 7] [ 10] [0320145402] +21:54:02 [ 11] [ 6] [807683] +21:54:02 [ 15] [ 4] [0320] +21:54:02 [ 37] [ 12] [57921807683] +21:54:02 [ 39] [ 2] [00] +21:54:02 [ 70] [ 3] [001] +21:54:02 ============================================================================ +21:54:02 Sending to : +21:54:02 ============================================================================ +21:54:02 + + +waiting on router queue for slot.... +21:54:04 ============================================================================ +21:54:04 Slot Id : <369> +21:54:04 Transaction Type : REQUEST +21:54:04 Received From : +21:54:04 ============================================================================ +21:54:04 FNo. Len. Field Value +21:54:04 ============================================================================ +21:54:04 [ 1] [ 4] [0800] +21:54:04 [ 7] [ 10] [0320025312] +21:54:04 [ 11] [ 6] [158603] +21:54:04 [ 70] [ 3] [301] +21:54:04 ============================================================================ +21:54:04 + + +waiting on router queue for slot.... +21:54:04 Sending to : +21:54:04 ============================================================================ +21:54:04 ============================================================================ +21:54:04 Slot Id : <369> +21:54:04 Transaction Type : RESPONSE +21:54:04 Received From : +21:54:04 ============================================================================ +21:54:04 FNo. Len. Field Value +21:54:04 ============================================================================ +21:54:04 [ 1] [ 4] [0810] +21:54:04 [ 7] [ 10] [0320025312] +21:54:04 [ 11] [ 6] [158603] +21:54:04 [ 39] [ 2] [00] +21:54:04 [ 70] [ 3] [301] +21:54:04 ============================================================================ +21:54:04 Calculate Source COMM Id = 2 +21:54:04 ============================================================================ +21:54:04 + + +waiting on router queue for slot.... +21:54:19 ============================================================================ +21:54:19 Slot Id : <360> +21:54:19 Transaction Type : REQUEST +21:54:19 Received From : +21:54:19 ============================================================================ +21:54:19 FNo. Len. Field Value +21:54:19 ============================================================================ +21:54:19 [ 1] [ 4] [0800] +21:54:19 [ 7] [ 10] [0321050608] +21:54:19 [ 11] [ 6] [220608] +21:54:19 [ 37] [ 12] [57922220608] +21:54:19 [ 70] [ 3] [301] +21:54:19 ============================================================================ +21:54:19 + + +waiting on router queue for slot.... +21:54:19 Sending to : +21:54:19 ============================================================================ +21:54:19 ============================================================================ +21:54:19 Slot Id : <360> +21:54:19 Transaction Type : RESPONSE +21:54:19 Received From : +21:54:19 ============================================================================ +21:54:19 FNo. Len. Field Value +21:54:19 ============================================================================ +21:54:19 [ 1] [ 4] [0810] +21:54:19 [ 7] [ 10] [0321050608] +21:54:19 [ 11] [ 6] [220608] +21:54:19 [ 37] [ 12] [579222206080] +21:54:19 [ 39] [ 2] [00] +21:54:19 [ 70] [ 3] [810] +21:54:19 ============================================================================ +21:54:19 Calculate Source COMM Id = 6 +21:54:19 ============================================================================ +21:54:19 + + +waiting on router queue for slot.... +21:54:19 ============================================================================ +21:54:19 Slot Id : <354> +21:54:19 Transaction Type : REQUEST +21:54:19 Received From : +21:54:19 ============================================================================ +21:54:19 FNo. Len. Field Value +21:54:19 ============================================================================ +21:54:19 [ 1] [ 4] [0800] +21:54:19 [ 7] [ 10] [0320025328] +21:54:19 [ 11] [ 6] [158604] +21:54:19 [ 70] [ 3] [301] +21:54:19 ============================================================================ +21:54:19 + + +waiting on router queue for slot.... +21:54:19 Sending to : +21:54:19 ============================================================================ +21:54:19 ============================================================================ +21:54:19 Slot Id : <354> +21:54:19 Transaction Type : RESPONSE +21:54:19 Received From : +21:54:19 ============================================================================ +21:54:19 FNo. Len. Field Value +21:54:19 ============================================================================ +21:54:19 [ 1] [ 4] [0810] +21:54:19 [ 7] [ 10] [0320025328] +21:54:19 [ 11] [ 6] [158604] +21:54:19 [ 39] [ 2] [00] +21:54:19 [ 70] [ 3] [301] +21:54:19 ============================================================================ +21:54:19 Calculate Source COMM Id = 2 +21:54:19 ============================================================================ +21:54:19 + + +waiting on router queue for slot.... +21:54:30 ============================================================================ +21:54:30 Slot Id : <338> +21:54:30 Transaction Type : REQUEST +21:54:30 Received From : +21:54:30 ============================================================================ +21:54:30 FNo. Len. Field Value +21:54:30 ============================================================================ +21:54:30 [ 1] [ 4] [0800] +21:54:30 [ 7] [ 10] [0320025339] +21:54:30 [ 11] [ 6] [158605] +21:54:30 [ 70] [ 3] [301] +21:54:30 ============================================================================ +21:54:30 + + +waiting on router queue for slot.... +21:54:30 Sending to : +21:54:30 ============================================================================ +21:54:30 ============================================================================ +21:54:30 Slot Id : <338> +21:54:30 Transaction Type : RESPONSE +21:54:30 Received From : +21:54:30 ============================================================================ +21:54:30 FNo. Len. Field Value +21:54:30 ============================================================================ +21:54:30 [ 1] [ 4] [0810] +21:54:30 [ 7] [ 10] [0320025339] +21:54:30 [ 11] [ 6] [158605] +21:54:30 [ 39] [ 2] [00] +21:54:30 [ 70] [ 3] [301] +21:54:30 ============================================================================ +21:54:30 Calculate Source COMM Id = 2 +21:54:30 ============================================================================ +21:54:30 + + +waiting on router queue for slot.... +21:54:41 ============================================================================ +21:54:41 Slot Id : <396> +21:54:41 Transaction Type : REQUEST +21:54:41 Received From : +21:54:41 ============================================================================ +21:54:41 FNo. Len. Field Value +21:54:41 ============================================================================ +21:54:41 [ 1] [ 4] [0800] +21:54:41 [ 7] [ 10] [0320025350] +21:54:41 [ 11] [ 6] [158606] +21:54:41 [ 70] [ 3] [301] +21:54:41 ============================================================================ +21:54:41 + + +waiting on router queue for slot.... +21:54:41 Sending to : +21:54:41 ============================================================================ +21:54:41 ============================================================================ +21:54:41 Slot Id : <396> +21:54:41 Transaction Type : RESPONSE +21:54:41 Received From : +21:54:41 ============================================================================ +21:54:41 FNo. Len. Field Value +21:54:41 ============================================================================ +21:54:41 [ 1] [ 4] [0810] +21:54:41 [ 7] [ 10] [0320025350] +21:54:41 [ 11] [ 6] [158606] +21:54:41 [ 39] [ 2] [00] +21:54:41 [ 70] [ 3] [301] +21:54:41 ============================================================================ +21:54:41 Calculate Source COMM Id = 2 +21:54:41 ============================================================================ +21:54:41 + + +waiting on router queue for slot.... +21:54:52 ============================================================================ +21:54:52 Slot Id : <390> +21:54:52 Transaction Type : REQUEST +21:54:52 Received From : +21:54:52 ============================================================================ +21:54:52 FNo. Len. Field Value +21:54:52 ============================================================================ +21:54:52 [ 1] [ 4] [0800] +21:54:52 [ 7] [ 10] [0320025400] +21:54:52 [ 11] [ 6] [158607] +21:54:52 [ 70] [ 3] [301] +21:54:52 ============================================================================ +21:54:52 + + +waiting on router queue for slot.... +21:54:52 Sending to : +21:54:52 ============================================================================ +21:54:52 ============================================================================ +21:54:52 Slot Id : <390> +21:54:52 Transaction Type : RESPONSE +21:54:52 Received From : +21:54:52 ============================================================================ +21:54:52 FNo. Len. Field Value +21:54:52 ============================================================================ +21:54:52 [ 1] [ 4] [0810] +21:54:52 [ 7] [ 10] [0320025400] +21:54:52 [ 11] [ 6] [158607] +21:54:52 [ 39] [ 2] [00] +21:54:52 [ 70] [ 3] [301] +21:54:52 ============================================================================ +21:54:52 Calculate Source COMM Id = 2 +21:54:52 ============================================================================ +21:54:52 + + +waiting on router queue for slot.... +21:54:55 ============================================================================ +21:54:55 Slot Id : <374> +21:54:55 Transaction Type : REQUEST +21:54:55 Received From : +21:54:55 ============================================================================ +21:54:55 FNo. Len. Field Value +21:54:55 ============================================================================ +21:54:55 [ 1] [ 4] [0800] +21:54:55 [ 7] [ 10] [0320150242] +21:54:55 [ 11] [ 6] [055250] +21:54:55 [ 37] [ 12] [57922055250] +21:54:55 [ 70] [ 3] [301] +21:54:55 ============================================================================ +21:54:55 + + +waiting on router queue for slot.... +21:54:55 Sending to : +21:54:55 ============================================================================ +21:54:55 ============================================================================ +21:54:55 Slot Id : <374> +21:54:55 Transaction Type : RESPONSE +21:54:55 Received From : +21:54:55 ============================================================================ +21:54:55 FNo. Len. Field Value +21:54:55 ============================================================================ +21:54:55 [ 1] [ 4] [0810] +21:54:55 [ 7] [ 10] [0320150242] +21:54:55 [ 11] [ 6] [055250] +21:54:55 [ 37] [ 12] [579220552500] +21:54:55 [ 39] [ 2] [00] +21:54:55 [ 70] [ 3] [810] +21:54:55 ============================================================================ +21:54:55 Calculate Source COMM Id = 1 +21:54:55 ============================================================================ +21:54:55 + + +waiting on router queue for slot.... +21:55:03 ============================================================================ +21:55:03 Slot Id : <361> +21:55:03 Transaction Type : REQUEST +21:55:03 Received From : +21:55:03 ============================================================================ +21:55:03 FNo. Len. Field Value +21:55:03 ============================================================================ +21:55:03 [ 1] [ 4] [0800] +21:55:03 [ 7] [ 10] [0320025411] +21:55:03 [ 11] [ 6] [158608] +21:55:03 [ 70] [ 3] [301] +21:55:03 ============================================================================ +21:55:03 + + +waiting on router queue for slot.... +21:55:03 Sending to : +21:55:03 ============================================================================ +21:55:03 ============================================================================ +21:55:03 Slot Id : <361> +21:55:03 Transaction Type : RESPONSE +21:55:03 Received From : +21:55:03 ============================================================================ +21:55:03 FNo. Len. Field Value +21:55:03 ============================================================================ +21:55:03 [ 1] [ 4] [0810] +21:55:03 [ 7] [ 10] [0320025411] +21:55:03 [ 11] [ 6] [158608] +21:55:03 [ 39] [ 2] [00] +21:55:03 [ 70] [ 3] [301] +21:55:03 ============================================================================ +21:55:03 Calculate Source COMM Id = 2 +21:55:03 ============================================================================ +21:55:03 + + +waiting on router queue for slot.... +21:55:04 ============================================================================ +21:55:04 Slot Id : <389> +21:55:04 Transaction Type : REQUEST +21:55:04 Received From : +21:55:04 ============================================================================ +21:55:04 FNo. Len. Field Value +21:55:04 ============================================================================ +21:55:04 [ 1] [ 4] [0800] +21:55:04 [ 2] [ 5] [02531] +21:55:04 [ 3] [ 6] [579218] +21:55:04 [ 7] [ 10] [0320145504] +21:55:04 [ 11] [ 6] [807684] +21:55:04 [ 15] [ 10] [0320145504] +21:55:04 [ 37] [ 11] [57921807684] +21:55:04 [ 70] [ 3] [001] +21:55:04 ============================================================================ +21:55:04 + + +waiting on router queue for slot.... +21:55:04 ============================================================================ +21:55:04 Slot Id : <389> +21:55:04 Transaction Type : RESPONSE +21:55:04 Received From : +21:55:04 ============================================================================ +21:55:04 FNo. Len. Field Value +21:55:04 ============================================================================ +21:55:04 [ 1] [ 4] [0810] +21:55:04 [ 7] [ 10] [0320145504] +21:55:04 [ 11] [ 6] [807684] +21:55:04 [ 15] [ 4] [0320] +21:55:04 [ 37] [ 12] [57921807684] +21:55:04 [ 39] [ 2] [00] +21:55:04 [ 70] [ 3] [001] +21:55:04 ============================================================================ +21:55:04 Sending to : +21:55:04 ============================================================================ +21:55:04 + + +waiting on router queue for slot.... +21:55:04 ============================================================================ +21:55:04 Slot Id : <351> +21:55:04 Transaction Type : REQUEST +21:55:04 Received From : +21:55:04 ============================================================================ +21:55:04 FNo. Len. Field Value +21:55:04 ============================================================================ +21:55:04 [ 1] [ 4] [0200] +21:55:04 [ 2] [ 16] [6213544001261152] +21:55:04 [ 3] [ 6] [010000] +21:55:04 [ 4] [ 12] [000010000000] +21:55:04 [ 7] [ 10] [0320215255] +21:55:04 [ 11] [ 6] [957861] +21:55:04 [ 12] [ 6] [215255] +21:55:04 [ 13] [ 4] [0320] +21:55:04 [ 15] [ 4] [0320] +21:55:04 [ 18] [ 4] [6011] +21:55:04 [ 19] [ 3] [418] +21:55:04 [ 22] [ 3] [021] +21:55:04 [ 25] [ 2] [01] +21:55:04 [ 28] [ 9] [D00002000] +21:55:04 [ 32] [ 6] [668899] +21:55:04 [ 35] [ 32] [6213544001261152=491212016115414] +21:55:04 [ 37] [ 12] [507902093503] +21:55:04 [ 41] [ 8] [03020021] +21:55:04 [ 42] [ 15] [APT ] +21:55:04 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +21:55:04 [ 49] [ 3] [418] +21:55:04 [ 52] [ 16] [F5AD0CDA64DDAF6E] +21:55:04 ============================================================================ +21:55:04 + + +waiting on router queue for slot.... +21:55:04 Sending to : +21:55:04 ============================================================================ +21:55:04 Sending to : +21:55:04 ============================================================================ +21:55:04 ============================================================================ +21:55:04 Slot Id : <351> +21:55:04 Transaction Type : REQUEST +21:55:04 Received From : +21:55:04 ============================================================================ +21:55:04 FNo. Len. Field Value +21:55:04 ============================================================================ +21:55:04 [ 1] [ 4] [0200] +21:55:04 [ 2] [ 16] [6213544001261152] +21:55:04 [ 3] [ 6] [010000] +21:55:04 [ 4] [ 12] [000010000000] +21:55:04 [ 7] [ 10] [0320215255] +21:55:04 [ 11] [ 6] [957861] +21:55:04 [ 12] [ 6] [215255] +21:55:04 [ 13] [ 4] [0320] +21:55:04 [ 15] [ 4] [0320] +21:55:04 [ 18] [ 4] [6011] +21:55:04 [ 19] [ 3] [418] +21:55:04 [ 22] [ 3] [021] +21:55:04 [ 25] [ 2] [01] +21:55:04 [ 28] [ 9] [D00002000] +21:55:04 [ 32] [ 6] [668899] +21:55:04 [ 35] [ 32] [6213544001261152=491212016115414] +21:55:04 [ 37] [ 12] [507902093503] +21:55:04 [ 41] [ 8] [03020021] +21:55:04 [ 42] [ 15] [APT ] +21:55:04 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +21:55:04 [ 49] [ 3] [418] +21:55:04 [ 52] [ 16] [F5AD0CDA64DDAF6E] +21:55:04 ============================================================================ +21:55:04 + + +waiting on router queue for slot.... +21:55:04 Sending to : +21:55:04 ============================================================================ +21:55:04 ============================================================================ +21:55:04 Slot Id : <351> +21:55:04 Transaction Type : REQUEST +21:55:04 Received From : +21:55:04 ============================================================================ +21:55:04 FNo. Len. Field Value +21:55:04 ============================================================================ +21:55:04 [ 1] [ 4] [0200] +21:55:04 [ 2] [ 16] [6213544001261152] +21:55:04 [ 3] [ 6] [010000] +21:55:04 [ 4] [ 12] [000010000000] +21:55:04 [ 7] [ 10] [0320215255] +21:55:04 [ 11] [ 6] [957861] +21:55:04 [ 12] [ 6] [215255] +21:55:04 [ 13] [ 4] [0320] +21:55:04 [ 15] [ 4] [0320] +21:55:04 [ 18] [ 4] [6011] +21:55:04 [ 19] [ 3] [418] +21:55:04 [ 22] [ 3] [021] +21:55:04 [ 25] [ 2] [01] +21:55:04 [ 28] [ 9] [D00002000] +21:55:04 [ 32] [ 6] [668899] +21:55:04 [ 35] [ 32] [6213544001261152=491212016115414] +21:55:04 [ 37] [ 12] [507902093503] +21:55:04 [ 41] [ 8] [03020021] +21:55:04 [ 42] [ 15] [APT ] +21:55:04 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +21:55:04 [ 49] [ 3] [418] +21:55:04 [ 52] [ 16] [F9B9B4B091000EFF] +21:55:04 ============================================================================ +21:55:04 + + +waiting on router queue for slot.... +21:55:04 Sending to : <0> +21:55:04 ============================================================================ +21:55:05 ============================================================================ +21:55:05 Slot Id : <351> +21:55:05 Transaction Type : RESPONSE +21:55:05 Received From : +21:55:05 ============================================================================ +21:55:05 FNo. Len. Field Value +21:55:05 ============================================================================ +21:55:05 [ 1] [ 4] [0210] +21:55:05 [ 2] [ 16] [6213544001261152] +21:55:05 [ 3] [ 6] [010000] +21:55:05 [ 4] [ 12] [000010000000] +21:55:05 [ 7] [ 10] [0320215255] +21:55:05 [ 11] [ 6] [957861] +21:55:05 [ 12] [ 6] [215255] +21:55:05 [ 13] [ 4] [0320] +21:55:05 [ 15] [ 4] [0320] +21:55:05 [ 18] [ 4] [6011] +21:55:05 [ 19] [ 3] [418] +21:55:05 [ 32] [ 6] [668899] +21:55:05 [ 35] [ 32] [6213544001261152=491212016115414] +21:55:05 [ 37] [ 12] [507902093503] +21:55:05 [ 38] [ 6] [957861] +21:55:05 [ 39] [ 2] [51] +21:55:05 [ 41] [ 8] [03020021] +21:55:05 [ 49] [ 3] [418] +21:55:05 [ 54] [ 40] [0001418C0000086952030002418C000008695203] +21:55:05 ============================================================================ +21:55:05 Sending to : +21:55:05 ============================================================================ +21:55:05 + + +waiting on router queue for slot.... +21:55:06 ============================================================================ +21:55:06 Slot Id : <351> +21:55:06 Transaction Type : RESPONSE +21:55:06 Received From : +21:55:06 ============================================================================ +21:55:06 FNo. Len. Field Value +21:55:06 ============================================================================ +21:55:06 [ 1] [ 4] [0210] +21:55:06 [ 2] [ 16] [6213544001261152] +21:55:06 [ 3] [ 6] [010000] +21:55:06 [ 4] [ 12] [000010000000] +21:55:06 [ 7] [ 10] [0320215255] +21:55:06 [ 11] [ 6] [957861] +21:55:06 [ 12] [ 6] [215255] +21:55:06 [ 13] [ 4] [0320] +21:55:06 [ 15] [ 4] [0320] +21:55:06 [ 18] [ 4] [6011] +21:55:06 [ 19] [ 3] [418] +21:55:06 [ 32] [ 6] [668899] +21:55:06 [ 35] [ 32] [6213544001261152=491212016115414] +21:55:06 [ 37] [ 12] [507902093503] +21:55:06 [ 38] [ 6] [957861] +21:55:06 [ 39] [ 2] [51] +21:55:06 [ 41] [ 8] [03020021] +21:55:06 [ 49] [ 3] [418] +21:55:06 [ 54] [ 40] [0001418C0000086952030002418C000008695203] +21:55:06 ============================================================================ +21:55:06 Calculate Source COMM Id = 4 +21:55:06 ============================================================================ +21:55:06 + + +waiting on router queue for slot.... +21:55:14 ============================================================================ +21:55:14 Slot Id : <410> +21:55:14 Transaction Type : REQUEST +21:55:14 Received From : +21:55:14 ============================================================================ +21:55:14 FNo. Len. Field Value +21:55:14 ============================================================================ +21:55:14 [ 1] [ 4] [0800] +21:55:14 [ 7] [ 10] [0320025422] +21:55:14 [ 11] [ 6] [158609] +21:55:14 [ 70] [ 3] [301] +21:55:14 ============================================================================ +21:55:14 + + +waiting on router queue for slot.... +21:55:14 Sending to : +21:55:14 ============================================================================ +21:55:14 ============================================================================ +21:55:14 Slot Id : <410> +21:55:14 Transaction Type : RESPONSE +21:55:14 Received From : +21:55:14 ============================================================================ +21:55:14 FNo. Len. Field Value +21:55:14 ============================================================================ +21:55:14 [ 1] [ 4] [0810] +21:55:14 [ 7] [ 10] [0320025422] +21:55:14 [ 11] [ 6] [158609] +21:55:14 [ 39] [ 2] [00] +21:55:14 [ 70] [ 3] [301] +21:55:14 ============================================================================ +21:55:14 Calculate Source COMM Id = 2 +21:55:14 ============================================================================ +21:55:14 + + +waiting on router queue for slot.... +21:55:24 ============================================================================ +21:55:24 Slot Id : <376> +21:55:24 Transaction Type : REQUEST +21:55:24 Received From : +21:55:24 ============================================================================ +21:55:24 FNo. Len. Field Value +21:55:24 ============================================================================ +21:55:24 [ 1] [ 4] [0800] +21:55:24 [ 7] [ 10] [0321050713] +21:55:24 [ 11] [ 6] [220713] +21:55:24 [ 37] [ 12] [57922220713] +21:55:24 [ 70] [ 3] [301] +21:55:24 ============================================================================ +21:55:24 + + +waiting on router queue for slot.... +21:55:24 Sending to : +21:55:24 ============================================================================ +21:55:24 ============================================================================ +21:55:24 Slot Id : <376> +21:55:24 Transaction Type : RESPONSE +21:55:24 Received From : +21:55:24 ============================================================================ +21:55:24 FNo. Len. Field Value +21:55:24 ============================================================================ +21:55:24 [ 1] [ 4] [0810] +21:55:24 [ 7] [ 10] [0321050713] +21:55:24 [ 11] [ 6] [220713] +21:55:24 [ 37] [ 12] [579222207130] +21:55:24 [ 39] [ 2] [00] +21:55:24 [ 70] [ 3] [810] +21:55:24 ============================================================================ +21:55:24 Calculate Source COMM Id = 6 +21:55:24 ============================================================================ +21:55:24 + + +waiting on router queue for slot.... +21:55:25 ============================================================================ +21:55:25 Slot Id : <383> +21:55:25 Transaction Type : REQUEST +21:55:25 Received From : +21:55:25 ============================================================================ +21:55:25 FNo. Len. Field Value +21:55:25 ============================================================================ +21:55:25 [ 1] [ 4] [0800] +21:55:25 [ 7] [ 10] [0320025433] +21:55:25 [ 11] [ 6] [158610] +21:55:25 [ 70] [ 3] [301] +21:55:25 ============================================================================ +21:55:25 + + +waiting on router queue for slot.... +21:55:25 Sending to : +21:55:25 ============================================================================ +21:55:25 ============================================================================ +21:55:25 Slot Id : <383> +21:55:25 Transaction Type : RESPONSE +21:55:25 Received From : +21:55:25 ============================================================================ +21:55:25 FNo. Len. Field Value +21:55:25 ============================================================================ +21:55:25 [ 1] [ 4] [0810] +21:55:25 [ 7] [ 10] [0320025433] +21:55:25 [ 11] [ 6] [158610] +21:55:25 [ 39] [ 2] [00] +21:55:25 [ 70] [ 3] [301] +21:55:25 ============================================================================ +21:55:25 Calculate Source COMM Id = 2 +21:55:25 ============================================================================ +21:55:25 + + +waiting on router queue for slot.... +21:55:40 ============================================================================ +21:55:40 Slot Id : <395> +21:55:40 Transaction Type : REQUEST +21:55:40 Received From : +21:55:40 ============================================================================ +21:55:40 FNo. Len. Field Value +21:55:40 ============================================================================ +21:55:40 [ 1] [ 4] [0200] +21:55:40 [ 2] [ 16] [6213544000147022] +21:55:40 [ 3] [ 6] [010000] +21:55:40 [ 4] [ 12] [000050000000] +21:55:40 [ 7] [ 10] [0320215331] +21:55:40 [ 11] [ 6] [957868] +21:55:40 [ 12] [ 6] [215331] +21:55:40 [ 13] [ 4] [0320] +21:55:40 [ 15] [ 4] [0320] +21:55:40 [ 18] [ 4] [6011] +21:55:40 [ 19] [ 3] [418] +21:55:40 [ 22] [ 3] [021] +21:55:40 [ 25] [ 2] [01] +21:55:40 [ 28] [ 9] [D00002000] +21:55:40 [ 32] [ 6] [668899] +21:55:40 [ 35] [ 32] [6213544000147022=491212014702146] +21:55:40 [ 37] [ 12] [507901783284] +21:55:40 [ 41] [ 8] [03303003] +21:55:40 [ 42] [ 15] [APT ] +21:55:40 [ 43] [ 40] [ MEAUNGLONG UNIT MEAUNG-LO] +21:55:40 [ 49] [ 3] [418] +21:55:40 [ 52] [ 16] [5B83A7B800676802] +21:55:40 ============================================================================ +21:55:40 + + +waiting on router queue for slot.... +21:55:40 Sending to : +21:55:40 ============================================================================ +21:55:40 Sending to : +21:55:40 ============================================================================ +21:55:40 ============================================================================ +21:55:40 Slot Id : <359> +21:55:40 Transaction Type : REQUEST +21:55:40 Received From : +21:55:40 ============================================================================ +21:55:40 FNo. Len. Field Value +21:55:40 ============================================================================ +21:55:40 [ 1] [ 4] [0800] +21:55:40 [ 7] [ 10] [0320025448] +21:55:40 [ 11] [ 6] [158611] +21:55:40 [ 70] [ 3] [301] +21:55:40 ============================================================================ +21:55:40 + + +waiting on router queue for slot.... +21:55:40 Sending to : +21:55:40 ============================================================================ +21:55:40 ============================================================================ +21:55:40 Slot Id : <359> +21:55:40 Transaction Type : RESPONSE +21:55:40 Received From : +21:55:40 ============================================================================ +21:55:40 FNo. Len. Field Value +21:55:40 ============================================================================ +21:55:40 [ 1] [ 4] [0810] +21:55:40 [ 7] [ 10] [0320025448] +21:55:40 [ 11] [ 6] [158611] +21:55:40 [ 39] [ 2] [00] +21:55:40 [ 70] [ 3] [301] +21:55:40 ============================================================================ +21:55:40 Calculate Source COMM Id = 2 +21:55:40 ============================================================================ +21:55:40 + + +waiting on router queue for slot.... +21:55:40 ============================================================================ +21:55:40 Slot Id : <395> +21:55:40 Transaction Type : REQUEST +21:55:40 Received From : +21:55:40 ============================================================================ +21:55:40 FNo. Len. Field Value +21:55:40 ============================================================================ +21:55:40 [ 1] [ 4] [0200] +21:55:40 [ 2] [ 16] [6213544000147022] +21:55:40 [ 3] [ 6] [010000] +21:55:40 [ 4] [ 12] [000050000000] +21:55:40 [ 7] [ 10] [0320215331] +21:55:40 [ 11] [ 6] [957868] +21:55:40 [ 12] [ 6] [215331] +21:55:40 [ 13] [ 4] [0320] +21:55:40 [ 15] [ 4] [0320] +21:55:40 [ 18] [ 4] [6011] +21:55:40 [ 19] [ 3] [418] +21:55:40 [ 22] [ 3] [021] +21:55:40 [ 25] [ 2] [01] +21:55:40 [ 28] [ 9] [D00002000] +21:55:40 [ 32] [ 6] [668899] +21:55:40 [ 35] [ 32] [6213544000147022=491212014702146] +21:55:40 [ 37] [ 12] [507901783284] +21:55:40 [ 41] [ 8] [03303003] +21:55:40 [ 42] [ 15] [APT ] +21:55:40 [ 43] [ 40] [ MEAUNGLONG UNIT MEAUNG-LO] +21:55:40 [ 49] [ 3] [418] +21:55:40 [ 52] [ 16] [5B83A7B800676802] +21:55:40 ============================================================================ +21:55:40 + + +waiting on router queue for slot.... +21:55:40 Sending to : +21:55:40 ============================================================================ +21:55:40 ============================================================================ +21:55:40 Slot Id : <395> +21:55:40 Transaction Type : REQUEST +21:55:40 Received From : +21:55:40 ============================================================================ +21:55:40 FNo. Len. Field Value +21:55:40 ============================================================================ +21:55:40 [ 1] [ 4] [0200] +21:55:40 [ 2] [ 16] [6213544000147022] +21:55:40 [ 3] [ 6] [010000] +21:55:40 [ 4] [ 12] [000050000000] +21:55:40 [ 7] [ 10] [0320215331] +21:55:40 [ 11] [ 6] [957868] +21:55:40 [ 12] [ 6] [215331] +21:55:40 [ 13] [ 4] [0320] +21:55:40 [ 15] [ 4] [0320] +21:55:40 [ 18] [ 4] [6011] +21:55:40 [ 19] [ 3] [418] +21:55:40 [ 22] [ 3] [021] +21:55:40 [ 25] [ 2] [01] +21:55:40 [ 28] [ 9] [D00002000] +21:55:40 [ 32] [ 6] [668899] +21:55:40 [ 35] [ 32] [6213544000147022=491212014702146] +21:55:40 [ 37] [ 12] [507901783284] +21:55:40 [ 41] [ 8] [03303003] +21:55:40 [ 42] [ 15] [APT ] +21:55:40 [ 43] [ 40] [ MEAUNGLONG UNIT MEAUNG-LO] +21:55:40 [ 49] [ 3] [418] +21:55:40 [ 52] [ 16] [A0C32FAD2668FE7F] +21:55:40 ============================================================================ +21:55:40 + + +waiting on router queue for slot.... +21:55:40 Sending to : <0> +21:55:40 ============================================================================ +21:55:41 ============================================================================ +21:55:41 Slot Id : <395> +21:55:41 Transaction Type : RESPONSE +21:55:41 Received From : +21:55:41 ============================================================================ +21:55:41 FNo. Len. Field Value +21:55:41 ============================================================================ +21:55:41 [ 1] [ 4] [0210] +21:55:41 [ 2] [ 16] [6213544000147022] +21:55:41 [ 3] [ 6] [010000] +21:55:41 [ 4] [ 12] [000050000000] +21:55:41 [ 7] [ 10] [0320215331] +21:55:41 [ 11] [ 6] [957868] +21:55:41 [ 12] [ 6] [215331] +21:55:41 [ 13] [ 4] [0320] +21:55:41 [ 15] [ 4] [0320] +21:55:41 [ 18] [ 4] [6011] +21:55:41 [ 19] [ 3] [418] +21:55:41 [ 32] [ 6] [668899] +21:55:41 [ 35] [ 32] [6213544000147022=491212014702146] +21:55:41 [ 37] [ 12] [507901783284] +21:55:41 [ 38] [ 6] [126599] +21:55:41 [ 39] [ 2] [00] +21:55:41 [ 41] [ 8] [03303003] +21:55:41 [ 49] [ 3] [418] +21:55:41 [ 54] [ 40] [0001418C0006383807770002418C000588180777] +21:55:41 ============================================================================ +21:55:41 Sending to : +21:55:41 ============================================================================ +21:55:41 + + +waiting on router queue for slot.... +21:55:42 ============================================================================ +21:55:42 Slot Id : <395> +21:55:42 Transaction Type : RESPONSE +21:55:42 Received From : +21:55:42 ============================================================================ +21:55:42 FNo. Len. Field Value +21:55:42 ============================================================================ +21:55:42 [ 1] [ 4] [0210] +21:55:42 [ 2] [ 16] [6213544000147022] +21:55:42 [ 3] [ 6] [010000] +21:55:42 [ 4] [ 12] [000050000000] +21:55:42 [ 7] [ 10] [0320215331] +21:55:42 [ 11] [ 6] [957868] +21:55:42 [ 12] [ 6] [215331] +21:55:42 [ 13] [ 4] [0320] +21:55:42 [ 15] [ 4] [0320] +21:55:42 [ 18] [ 4] [6011] +21:55:42 [ 19] [ 3] [418] +21:55:42 [ 32] [ 6] [668899] +21:55:42 [ 35] [ 32] [6213544000147022=491212014702146] +21:55:42 [ 37] [ 12] [507901783284] +21:55:42 [ 38] [ 6] [126599] +21:55:42 [ 39] [ 2] [00] +21:55:42 [ 41] [ 8] [03303003] +21:55:42 [ 49] [ 3] [418] +21:55:42 [ 54] [ 40] [0001418C0006383807770002418C000588180777] +21:55:42 ============================================================================ +21:55:42 Calculate Source COMM Id = 4 +21:55:42 ============================================================================ +21:55:42 + + +waiting on router queue for slot.... +21:55:51 ============================================================================ +21:55:51 Slot Id : <400> +21:55:51 Transaction Type : REQUEST +21:55:51 Received From : +21:55:51 ============================================================================ +21:55:51 FNo. Len. Field Value +21:55:51 ============================================================================ +21:55:51 [ 1] [ 4] [0800] +21:55:51 [ 7] [ 10] [0320025500] +21:55:51 [ 11] [ 6] [158612] +21:55:51 [ 70] [ 3] [301] +21:55:51 ============================================================================ +21:55:51 + + +waiting on router queue for slot.... +21:55:51 Sending to : +21:55:51 ============================================================================ +21:55:51 ============================================================================ +21:55:51 Slot Id : <400> +21:55:51 Transaction Type : RESPONSE +21:55:51 Received From : +21:55:51 ============================================================================ +21:55:51 FNo. Len. Field Value +21:55:51 ============================================================================ +21:55:51 [ 1] [ 4] [0810] +21:55:51 [ 7] [ 10] [0320025500] +21:55:51 [ 11] [ 6] [158612] +21:55:51 [ 39] [ 2] [00] +21:55:51 [ 70] [ 3] [301] +21:55:51 ============================================================================ +21:55:51 Calculate Source COMM Id = 2 +21:55:51 ============================================================================ +21:55:51 + + +waiting on router queue for slot.... +21:56:02 ============================================================================ +21:56:02 Slot Id : <393> +21:56:02 Transaction Type : REQUEST +21:56:02 Received From : +21:56:02 ============================================================================ +21:56:02 FNo. Len. Field Value +21:56:02 ============================================================================ +21:56:02 [ 1] [ 4] [0800] +21:56:02 [ 7] [ 10] [0320025510] +21:56:02 [ 11] [ 6] [158613] +21:56:02 [ 70] [ 3] [301] +21:56:02 ============================================================================ +21:56:02 + + +waiting on router queue for slot.... +21:56:02 Sending to : +21:56:02 ============================================================================ +21:56:02 ============================================================================ +21:56:02 Slot Id : <393> +21:56:02 Transaction Type : RESPONSE +21:56:02 Received From : +21:56:02 ============================================================================ +21:56:02 FNo. Len. Field Value +21:56:02 ============================================================================ +21:56:02 [ 1] [ 4] [0810] +21:56:02 [ 7] [ 10] [0320025510] +21:56:02 [ 11] [ 6] [158613] +21:56:02 [ 39] [ 2] [00] +21:56:02 [ 70] [ 3] [301] +21:56:02 ============================================================================ +21:56:02 Calculate Source COMM Id = 2 +21:56:02 ============================================================================ +21:56:02 + + +waiting on router queue for slot.... +21:56:06 ============================================================================ +21:56:06 Slot Id : <414> +21:56:06 Transaction Type : REQUEST +21:56:06 Received From : +21:56:06 ============================================================================ +21:56:06 FNo. Len. Field Value +21:56:06 ============================================================================ +21:56:06 [ 1] [ 4] [0800] +21:56:06 [ 2] [ 5] [02531] +21:56:06 [ 3] [ 6] [579218] +21:56:06 [ 7] [ 10] [0320145606] +21:56:06 [ 11] [ 6] [807685] +21:56:06 [ 15] [ 10] [0320145606] +21:56:06 [ 37] [ 11] [57921807685] +21:56:06 [ 70] [ 3] [001] +21:56:06 ============================================================================ +21:56:06 + + +waiting on router queue for slot.... +21:56:06 ============================================================================ +21:56:06 Slot Id : <414> +21:56:06 Transaction Type : RESPONSE +21:56:06 Received From : +21:56:06 ============================================================================ +21:56:06 FNo. Len. Field Value +21:56:06 ============================================================================ +21:56:06 [ 1] [ 4] [0810] +21:56:06 [ 7] [ 10] [0320145606] +21:56:06 [ 11] [ 6] [807685] +21:56:06 [ 15] [ 4] [0320] +21:56:06 [ 37] [ 12] [57921807685] +21:56:06 [ 39] [ 2] [00] +21:56:06 [ 70] [ 3] [001] +21:56:06 ============================================================================ +21:56:06 Sending to : +21:56:06 ============================================================================ +21:56:06 + + +waiting on router queue for slot.... +21:56:13 ============================================================================ +21:56:13 Slot Id : <349> +21:56:13 Transaction Type : REQUEST +21:56:13 Received From : +21:56:13 ============================================================================ +21:56:13 FNo. Len. Field Value +21:56:13 ============================================================================ +21:56:13 [ 1] [ 4] [0800] +21:56:13 [ 7] [ 10] [0320025522] +21:56:13 [ 11] [ 6] [158614] +21:56:13 [ 70] [ 3] [301] +21:56:13 ============================================================================ +21:56:13 + + +waiting on router queue for slot.... +21:56:13 Sending to : +21:56:13 ============================================================================ +21:56:13 ============================================================================ +21:56:13 Slot Id : <349> +21:56:13 Transaction Type : RESPONSE +21:56:13 Received From : +21:56:13 ============================================================================ +21:56:13 FNo. Len. Field Value +21:56:13 ============================================================================ +21:56:13 [ 1] [ 4] [0810] +21:56:13 [ 7] [ 10] [0320025522] +21:56:13 [ 11] [ 6] [158614] +21:56:13 [ 39] [ 2] [00] +21:56:13 [ 70] [ 3] [301] +21:56:13 ============================================================================ +21:56:13 Calculate Source COMM Id = 2 +21:56:13 ============================================================================ +21:56:13 + + +waiting on router queue for slot.... +21:56:21 ============================================================================ +21:56:21 Slot Id : <413> +21:56:21 Transaction Type : REQUEST +21:56:21 Received From : +21:56:21 ============================================================================ +21:56:21 FNo. Len. Field Value +21:56:21 ============================================================================ +21:56:21 [ 1] [ 4] [0800] +21:56:21 [ 7] [ 10] [0320145412] +21:56:21 [ 11] [ 6] [068865] +21:56:21 [ 37] [ 12] [57921068865] +21:56:21 [ 70] [ 3] [301] +21:56:21 ============================================================================ +21:56:21 + + +waiting on router queue for slot.... +21:56:21 Sending to : +21:56:21 ============================================================================ +21:56:21 ============================================================================ +21:56:21 Slot Id : <413> +21:56:21 Transaction Type : RESPONSE +21:56:21 Received From : +21:56:21 ============================================================================ +21:56:21 FNo. Len. Field Value +21:56:21 ============================================================================ +21:56:21 [ 1] [ 4] [0810] +21:56:21 [ 7] [ 10] [0320145412] +21:56:21 [ 11] [ 6] [068865] +21:56:21 [ 37] [ 12] [579210688650] +21:56:21 [ 39] [ 2] [00] +21:56:21 [ 70] [ 3] [810] +21:56:21 ============================================================================ +21:56:21 Calculate Source COMM Id = 4 +21:56:21 ============================================================================ +21:56:21 + + +waiting on router queue for slot.... +21:56:28 ============================================================================ +21:56:28 Slot Id : <397> +21:56:28 Transaction Type : REQUEST +21:56:28 Received From : +21:56:28 ============================================================================ +21:56:28 FNo. Len. Field Value +21:56:28 ============================================================================ +21:56:28 [ 1] [ 4] [0800] +21:56:28 [ 7] [ 10] [0320025537] +21:56:28 [ 11] [ 6] [158615] +21:56:28 [ 70] [ 3] [301] +21:56:28 ============================================================================ +21:56:28 + + +waiting on router queue for slot.... +21:56:28 Sending to : +21:56:28 ============================================================================ +21:56:28 ============================================================================ +21:56:28 Slot Id : <397> +21:56:28 Transaction Type : RESPONSE +21:56:28 Received From : +21:56:28 ============================================================================ +21:56:28 FNo. Len. Field Value +21:56:28 ============================================================================ +21:56:28 [ 1] [ 4] [0810] +21:56:28 [ 7] [ 10] [0320025537] +21:56:28 [ 11] [ 6] [158615] +21:56:28 [ 39] [ 2] [00] +21:56:28 [ 70] [ 3] [301] +21:56:28 ============================================================================ +21:56:28 Calculate Source COMM Id = 2 +21:56:28 ============================================================================ +21:56:28 + + +waiting on router queue for slot.... +21:56:29 ============================================================================ +21:56:29 Slot Id : <394> +21:56:29 Transaction Type : REQUEST +21:56:29 Received From : +21:56:29 ============================================================================ +21:56:29 FNo. Len. Field Value +21:56:29 ============================================================================ +21:56:29 [ 1] [ 4] [0800] +21:56:29 [ 7] [ 10] [0321050818] +21:56:29 [ 11] [ 6] [220818] +21:56:29 [ 37] [ 12] [57922220818] +21:56:29 [ 70] [ 3] [301] +21:56:29 ============================================================================ +21:56:29 + + +waiting on router queue for slot.... +21:56:29 Sending to : +21:56:29 ============================================================================ +21:56:29 ============================================================================ +21:56:29 Slot Id : <394> +21:56:29 Transaction Type : RESPONSE +21:56:29 Received From : +21:56:29 ============================================================================ +21:56:29 FNo. Len. Field Value +21:56:29 ============================================================================ +21:56:29 [ 1] [ 4] [0810] +21:56:29 [ 7] [ 10] [0321050818] +21:56:29 [ 11] [ 6] [220818] +21:56:29 [ 37] [ 12] [579222208180] +21:56:29 [ 39] [ 2] [00] +21:56:29 [ 70] [ 3] [810] +21:56:29 ============================================================================ +21:56:29 Calculate Source COMM Id = 6 +21:56:29 ============================================================================ +21:56:29 + + +waiting on router queue for slot.... +21:56:38 ============================================================================ +21:56:38 Slot Id : <387> +21:56:38 Transaction Type : REQUEST +21:56:38 Received From : +21:56:38 ============================================================================ +21:56:38 FNo. Len. Field Value +21:56:38 ============================================================================ +21:56:38 [ 1] [ 4] [0800] +21:56:38 [ 7] [ 10] [0320025547] +21:56:38 [ 11] [ 6] [158616] +21:56:38 [ 70] [ 3] [301] +21:56:38 ============================================================================ +21:56:38 + + +waiting on router queue for slot.... +21:56:38 Sending to : +21:56:38 ============================================================================ +21:56:38 ============================================================================ +21:56:38 Slot Id : <387> +21:56:38 Transaction Type : RESPONSE +21:56:38 Received From : +21:56:38 ============================================================================ +21:56:38 FNo. Len. Field Value +21:56:38 ============================================================================ +21:56:38 [ 1] [ 4] [0810] +21:56:38 [ 7] [ 10] [0320025547] +21:56:38 [ 11] [ 6] [158616] +21:56:38 [ 39] [ 2] [00] +21:56:38 [ 70] [ 3] [301] +21:56:38 ============================================================================ +21:56:38 Calculate Source COMM Id = 2 +21:56:38 ============================================================================ +21:56:38 + + +waiting on router queue for slot.... +21:56:48 ============================================================================ +21:56:48 Slot Id : <418> +21:56:48 Transaction Type : REQUEST +21:56:48 Received From : +21:56:48 ============================================================================ +21:56:48 FNo. Len. Field Value +21:56:48 ============================================================================ +21:56:48 [ 1] [ 4] [0200] +21:56:48 [ 2] [ 16] [6213545001114275] +21:56:48 [ 3] [ 6] [010000] +21:56:48 [ 4] [ 12] [000050000000] +21:56:48 [ 7] [ 10] [0320145556] +21:56:48 [ 11] [ 6] [271731] +21:56:48 [ 12] [ 6] [215556] +21:56:48 [ 13] [ 4] [0320] +21:56:48 [ 14] [ 4] [4912] +21:56:48 [ 15] [ 4] [0320] +21:56:48 [ 18] [ 4] [6011] +21:56:48 [ 19] [ 3] [418] +21:56:48 [ 22] [ 3] [021] +21:56:48 [ 25] [ 2] [01] +21:56:48 [ 28] [ 9] [D00002000] +21:56:48 [ 32] [ 6] [180893] +21:56:48 [ 35] [ 32] [6213545001114275=491212011427214] +21:56:48 [ 37] [ 12] [507914271731] +21:56:48 [ 41] [ 8] [0401XSBR] +21:56:48 [ 42] [ 15] [999999 ] +21:56:48 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +21:56:48 [ 49] [ 3] [418] +21:56:48 [ 52] [ 16] [462A8EDF71B33400] +21:56:48 ============================================================================ +21:56:48 + + +waiting on router queue for slot.... +21:56:48 Sending to : +21:56:48 ============================================================================ +21:56:48 Sending to : +21:56:48 ============================================================================ +21:56:49 ============================================================================ +21:56:49 Slot Id : <418> +21:56:49 Transaction Type : REQUEST +21:56:49 Received From : +21:56:49 ============================================================================ +21:56:49 FNo. Len. Field Value +21:56:49 ============================================================================ +21:56:49 [ 1] [ 4] [0200] +21:56:49 [ 2] [ 16] [6213545001114275] +21:56:49 [ 3] [ 6] [010000] +21:56:49 [ 4] [ 12] [000050000000] +21:56:49 [ 7] [ 10] [0320145556] +21:56:49 [ 11] [ 6] [271731] +21:56:49 [ 12] [ 6] [215556] +21:56:49 [ 13] [ 4] [0320] +21:56:49 [ 14] [ 4] [4912] +21:56:49 [ 15] [ 4] [0320] +21:56:49 [ 18] [ 4] [6011] +21:56:49 [ 19] [ 3] [418] +21:56:49 [ 22] [ 3] [021] +21:56:49 [ 25] [ 2] [01] +21:56:49 [ 28] [ 9] [D00002000] +21:56:49 [ 32] [ 6] [180893] +21:56:49 [ 35] [ 32] [6213545001114275=491212011427214] +21:56:49 [ 37] [ 12] [507914271731] +21:56:49 [ 41] [ 8] [0401XSBR] +21:56:49 [ 42] [ 15] [999999 ] +21:56:49 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +21:56:49 [ 49] [ 3] [418] +21:56:49 [ 52] [ 16] [462A8EDF71B33400] +21:56:49 ============================================================================ +21:56:49 + + +waiting on router queue for slot.... +21:56:49 Sending to : +21:56:49 ============================================================================ +21:56:49 ============================================================================ +21:56:49 Slot Id : <418> +21:56:49 Transaction Type : REQUEST +21:56:49 Received From : +21:56:49 ============================================================================ +21:56:49 FNo. Len. Field Value +21:56:49 ============================================================================ +21:56:49 [ 1] [ 4] [0200] +21:56:49 [ 2] [ 16] [6213545001114275] +21:56:49 [ 3] [ 6] [010000] +21:56:49 [ 4] [ 12] [000050000000] +21:56:49 [ 7] [ 10] [0320145556] +21:56:49 [ 11] [ 6] [271731] +21:56:49 [ 12] [ 6] [215556] +21:56:49 [ 13] [ 4] [0320] +21:56:49 [ 14] [ 4] [4912] +21:56:49 [ 15] [ 4] [0320] +21:56:49 [ 18] [ 4] [6011] +21:56:49 [ 19] [ 3] [418] +21:56:49 [ 22] [ 3] [021] +21:56:49 [ 25] [ 2] [01] +21:56:49 [ 28] [ 9] [D00002000] +21:56:49 [ 32] [ 6] [180893] +21:56:49 [ 35] [ 32] [6213545001114275=491212011427214] +21:56:49 [ 37] [ 12] [507914271731] +21:56:49 [ 41] [ 8] [0401XSBR] +21:56:49 [ 42] [ 15] [999999 ] +21:56:49 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +21:56:49 [ 49] [ 3] [418] +21:56:49 [ 52] [ 16] [35F8E817C189F0DB] +21:56:49 ============================================================================ +21:56:49 + + +waiting on router queue for slot.... +21:56:49 Sending to : <0> +21:56:49 ============================================================================ +21:56:49 ============================================================================ +21:56:49 Slot Id : <399> +21:56:49 Transaction Type : REQUEST +21:56:49 Received From : +21:56:49 ============================================================================ +21:56:49 FNo. Len. Field Value +21:56:49 ============================================================================ +21:56:49 [ 1] [ 4] [0800] +21:56:49 [ 7] [ 10] [0320025557] +21:56:49 [ 11] [ 6] [158617] +21:56:49 [ 70] [ 3] [301] +21:56:49 ============================================================================ +21:56:49 + + +waiting on router queue for slot.... +21:56:49 Sending to : +21:56:49 ============================================================================ +21:56:49 ============================================================================ +21:56:49 Slot Id : <399> +21:56:49 Transaction Type : RESPONSE +21:56:49 Received From : +21:56:49 ============================================================================ +21:56:49 FNo. Len. Field Value +21:56:49 ============================================================================ +21:56:49 [ 1] [ 4] [0810] +21:56:49 [ 7] [ 10] [0320025557] +21:56:49 [ 11] [ 6] [158617] +21:56:49 [ 39] [ 2] [00] +21:56:49 [ 70] [ 3] [301] +21:56:49 ============================================================================ +21:56:49 Calculate Source COMM Id = 2 +21:56:49 ============================================================================ +21:56:49 + + +waiting on router queue for slot.... +21:56:49 ============================================================================ +21:56:49 Slot Id : <418> +21:56:49 Transaction Type : RESPONSE +21:56:49 Received From : +21:56:49 ============================================================================ +21:56:49 FNo. Len. Field Value +21:56:49 ============================================================================ +21:56:49 [ 1] [ 4] [0210] +21:56:49 [ 2] [ 16] [6213545001114275] +21:56:49 [ 3] [ 6] [010000] +21:56:49 [ 4] [ 12] [000050000000] +21:56:49 [ 7] [ 10] [0320145556] +21:56:49 [ 11] [ 6] [271731] +21:56:49 [ 12] [ 6] [215556] +21:56:49 [ 13] [ 4] [0320] +21:56:49 [ 15] [ 4] [0320] +21:56:49 [ 18] [ 4] [6011] +21:56:49 [ 19] [ 3] [418] +21:56:49 [ 32] [ 6] [180893] +21:56:49 [ 35] [ 32] [6213545001114275=491212011427214] +21:56:49 [ 37] [ 12] [507914271731] +21:56:49 [ 38] [ 6] [624704] +21:56:49 [ 39] [ 2] [00] +21:56:49 [ 41] [ 8] [0401XSBR] +21:56:49 [ 49] [ 3] [418] +21:56:49 [ 54] [ 40] [0001418C0001549841620002418C000104784162] +21:56:49 ============================================================================ +21:56:49 Sending to : +21:56:49 ============================================================================ +21:56:49 + + +waiting on router queue for slot.... +21:56:51 ============================================================================ +21:56:51 Slot Id : <418> +21:56:51 Transaction Type : RESPONSE +21:56:51 Received From : +21:56:51 ============================================================================ +21:56:51 FNo. Len. Field Value +21:56:51 ============================================================================ +21:56:51 [ 1] [ 4] [0210] +21:56:51 [ 2] [ 16] [6213545001114275] +21:56:51 [ 3] [ 6] [010000] +21:56:51 [ 4] [ 12] [000050000000] +21:56:51 [ 7] [ 10] [0320145556] +21:56:51 [ 11] [ 6] [271731] +21:56:51 [ 12] [ 6] [215556] +21:56:51 [ 13] [ 4] [0320] +21:56:51 [ 15] [ 4] [0320] +21:56:51 [ 18] [ 4] [6011] +21:56:51 [ 19] [ 3] [418] +21:56:51 [ 32] [ 6] [180893] +21:56:51 [ 35] [ 32] [6213545001114275=491212011427214] +21:56:51 [ 37] [ 12] [507914271731] +21:56:51 [ 38] [ 6] [624704] +21:56:51 [ 39] [ 2] [00] +21:56:51 [ 41] [ 8] [0401XSBR] +21:56:51 [ 49] [ 3] [418] +21:56:51 [ 54] [ 40] [0001418C0001549841620002418C000104784162] +21:56:51 ============================================================================ +21:56:51 Calculate Source COMM Id = 2 +21:56:51 ============================================================================ +21:56:51 + + +waiting on router queue for slot.... +21:57:05 ============================================================================ +21:57:05 Slot Id : <372> +21:57:05 Transaction Type : REQUEST +21:57:05 Received From : +21:57:05 ============================================================================ +21:57:05 FNo. Len. Field Value +21:57:05 ============================================================================ +21:57:05 [ 1] [ 4] [0800] +21:57:05 [ 7] [ 10] [0320025613] +21:57:05 [ 11] [ 6] [158618] +21:57:05 [ 70] [ 3] [301] +21:57:05 ============================================================================ +21:57:05 + + +waiting on router queue for slot.... +21:57:05 Sending to : +21:57:05 ============================================================================ +21:57:05 ============================================================================ +21:57:05 Slot Id : <372> +21:57:05 Transaction Type : RESPONSE +21:57:05 Received From : +21:57:05 ============================================================================ +21:57:05 FNo. Len. Field Value +21:57:05 ============================================================================ +21:57:05 [ 1] [ 4] [0810] +21:57:05 [ 7] [ 10] [0320025613] +21:57:05 [ 11] [ 6] [158618] +21:57:05 [ 39] [ 2] [00] +21:57:05 [ 70] [ 3] [301] +21:57:05 ============================================================================ +21:57:05 Calculate Source COMM Id = 2 +21:57:05 ============================================================================ +21:57:05 + + +waiting on router queue for slot.... +21:57:08 ============================================================================ +21:57:08 Slot Id : <406> +21:57:08 Transaction Type : REQUEST +21:57:08 Received From : +21:57:08 ============================================================================ +21:57:08 FNo. Len. Field Value +21:57:08 ============================================================================ +21:57:08 [ 1] [ 4] [0800] +21:57:08 [ 2] [ 5] [02531] +21:57:08 [ 3] [ 6] [579218] +21:57:08 [ 7] [ 10] [0320145708] +21:57:08 [ 11] [ 6] [807686] +21:57:08 [ 15] [ 10] [0320145708] +21:57:08 [ 37] [ 11] [57921807686] +21:57:08 [ 70] [ 3] [001] +21:57:08 ============================================================================ +21:57:08 + + +waiting on router queue for slot.... +21:57:08 ============================================================================ +21:57:08 Slot Id : <406> +21:57:08 Transaction Type : RESPONSE +21:57:08 Received From : +21:57:08 ============================================================================ +21:57:08 FNo. Len. Field Value +21:57:08 ============================================================================ +21:57:08 [ 1] [ 4] [0810] +21:57:08 [ 7] [ 10] [0320145708] +21:57:08 [ 11] [ 6] [807686] +21:57:08 [ 15] [ 4] [0320] +21:57:08 [ 37] [ 12] [57921807686] +21:57:08 [ 39] [ 2] [00] +21:57:08 [ 70] [ 3] [001] +21:57:08 ============================================================================ +21:57:08 Sending to : +21:57:08 ============================================================================ +21:57:08 + + +waiting on router queue for slot.... +21:57:15 ============================================================================ +21:57:15 Slot Id : <368> +21:57:15 Transaction Type : REQUEST +21:57:15 Received From : +21:57:15 ============================================================================ +21:57:15 FNo. Len. Field Value +21:57:15 ============================================================================ +21:57:15 [ 1] [ 4] [0800] +21:57:15 [ 7] [ 10] [0320025624] +21:57:15 [ 11] [ 6] [158619] +21:57:15 [ 70] [ 3] [301] +21:57:15 ============================================================================ +21:57:15 + + +waiting on router queue for slot.... +21:57:15 Sending to : +21:57:15 ============================================================================ +21:57:15 ============================================================================ +21:57:15 Slot Id : <368> +21:57:15 Transaction Type : RESPONSE +21:57:15 Received From : +21:57:15 ============================================================================ +21:57:15 FNo. Len. Field Value +21:57:15 ============================================================================ +21:57:15 [ 1] [ 4] [0810] +21:57:15 [ 7] [ 10] [0320025624] +21:57:15 [ 11] [ 6] [158619] +21:57:15 [ 39] [ 2] [00] +21:57:15 [ 70] [ 3] [301] +21:57:15 ============================================================================ +21:57:15 Calculate Source COMM Id = 2 +21:57:15 ============================================================================ +21:57:15 + + +waiting on router queue for slot.... +21:57:21 ============================================================================ +21:57:21 Slot Id : <407> +21:57:21 Transaction Type : REQUEST +21:57:21 Received From : +21:57:21 ============================================================================ +21:57:21 FNo. Len. Field Value +21:57:21 ============================================================================ +21:57:21 [ 1] [ 4] [0200] +21:57:21 [ 2] [ 16] [6688990040045377] +21:57:21 [ 3] [ 6] [011000] +21:57:21 [ 4] [ 12] [000020000000] +21:57:21 [ 7] [ 10] [0320215717] +21:57:21 [ 11] [ 6] [847687] +21:57:21 [ 12] [ 6] [215717] +21:57:21 [ 13] [ 4] [0320] +21:57:21 [ 15] [ 4] [0320] +21:57:21 [ 18] [ 4] [6011] +21:57:21 [ 22] [ 3] [900] +21:57:21 [ 25] [ 2] [02] +21:57:21 [ 28] [ 9] [D00002000] +21:57:21 [ 32] [ 6] [621354] +21:57:21 [ 35] [ 37] [6688990040045377=97121261225891100000] +21:57:21 [ 37] [ 12] [507902635162] +21:57:21 [ 41] [ 8] [14000200] +21:57:21 [ 42] [ 15] [NATIVE ] +21:57:21 [ 43] [ 40] [Vangvieng 02 Vangvieng LAO] +21:57:21 [ 49] [ 3] [418] +21:57:21 [ 52] [ 16] [564514B3BC6DAD7F] +21:57:21 ============================================================================ +21:57:21 + + +waiting on router queue for slot.... +21:57:21 Sending to : +21:57:21 ============================================================================ +21:57:21 Sending to : +21:57:21 ============================================================================ +21:57:21 ============================================================================ +21:57:21 Slot Id : <407> +21:57:21 Transaction Type : REQUEST +21:57:21 Received From : +21:57:21 ============================================================================ +21:57:21 FNo. Len. Field Value +21:57:21 ============================================================================ +21:57:21 [ 1] [ 4] [0200] +21:57:21 [ 2] [ 16] [6688990040045377] +21:57:21 [ 3] [ 6] [011000] +21:57:21 [ 4] [ 12] [000020000000] +21:57:21 [ 7] [ 10] [0320215717] +21:57:21 [ 11] [ 6] [847687] +21:57:21 [ 12] [ 6] [215717] +21:57:21 [ 13] [ 4] [0320] +21:57:21 [ 15] [ 4] [0320] +21:57:21 [ 18] [ 4] [6011] +21:57:21 [ 22] [ 3] [900] +21:57:21 [ 25] [ 2] [02] +21:57:21 [ 28] [ 9] [D00002000] +21:57:21 [ 32] [ 6] [621354] +21:57:21 [ 35] [ 37] [6688990040045377=97121261225891100000] +21:57:21 [ 37] [ 12] [507902635162] +21:57:21 [ 41] [ 8] [14000200] +21:57:21 [ 42] [ 15] [NATIVE ] +21:57:21 [ 43] [ 40] [Vangvieng 02 Vangvieng LAO] +21:57:21 [ 49] [ 3] [418] +21:57:21 [ 52] [ 16] [564514B3BC6DAD7F] +21:57:21 ============================================================================ +21:57:21 + + +waiting on router queue for slot.... +21:57:21 Sending to : +21:57:21 ============================================================================ +21:57:21 ============================================================================ +21:57:21 Slot Id : <407> +21:57:21 Transaction Type : REQUEST +21:57:21 Received From : +21:57:21 ============================================================================ +21:57:21 FNo. Len. Field Value +21:57:21 ============================================================================ +21:57:21 [ 1] [ 4] [0200] +21:57:21 [ 2] [ 16] [6688990040045377] +21:57:21 [ 3] [ 6] [011000] +21:57:21 [ 4] [ 12] [000020000000] +21:57:21 [ 7] [ 10] [0320215717] +21:57:21 [ 11] [ 6] [847687] +21:57:21 [ 12] [ 6] [215717] +21:57:21 [ 13] [ 4] [0320] +21:57:21 [ 15] [ 4] [0320] +21:57:21 [ 18] [ 4] [6011] +21:57:21 [ 22] [ 3] [900] +21:57:21 [ 25] [ 2] [02] +21:57:21 [ 28] [ 9] [D00002000] +21:57:21 [ 32] [ 6] [621354] +21:57:21 [ 35] [ 37] [6688990040045377=97121261225891100000] +21:57:21 [ 37] [ 12] [507902635162] +21:57:21 [ 41] [ 8] [14000200] +21:57:21 [ 42] [ 15] [NATIVE ] +21:57:21 [ 43] [ 40] [Vangvieng 02 Vangvieng LAO] +21:57:21 [ 49] [ 3] [418] +21:57:21 [ 52] [ 16] [3B17AEBCA8236699] +21:57:21 ============================================================================ +21:57:21 + + +waiting on router queue for slot.... +21:57:21 Sending to : <4> +21:57:21 ============================================================================ +21:57:23 ============================================================================ +21:57:23 Slot Id : <407> +21:57:23 Transaction Type : RESPONSE +21:57:23 Received From : +21:57:23 ============================================================================ +21:57:23 FNo. Len. Field Value +21:57:23 ============================================================================ +21:57:23 [ 1] [ 4] [0210] +21:57:23 [ 2] [ 16] [6688990040045377] +21:57:23 [ 3] [ 6] [011000] +21:57:23 [ 4] [ 12] [000020000000] +21:57:23 [ 11] [ 6] [847687] +21:57:23 [ 12] [ 6] [215717] +21:57:23 [ 15] [ 4] [0320] +21:57:23 [ 18] [ 4] [6011] +21:57:23 [ 32] [ 6] [621354] +21:57:23 [ 35] [ 37] [6688990040045377=97121261225891100000] +21:57:23 [ 37] [ 12] [507902635162] +21:57:23 [ 38] [ 6] [871878] +21:57:23 [ 39] [ 2] [00] +21:57:23 [ 41] [ 8] [14000200] +21:57:23 [ 49] [ 3] [418] +21:57:23 [ 54] [ 20] [1002418C000040450108] +21:57:23 ============================================================================ +21:57:23 Sending to : +21:57:23 ============================================================================ +21:57:23 + + +waiting on router queue for slot.... +21:57:23 ============================================================================ +21:57:23 Slot Id : <419> +21:57:23 Transaction Type : REQUEST +21:57:23 Received From : +21:57:23 ============================================================================ +21:57:23 FNo. Len. Field Value +21:57:23 ============================================================================ +21:57:23 [ 1] [ 4] [0200] +21:57:23 [ 2] [ 16] [6213544001833059] +21:57:23 [ 3] [ 6] [010000] +21:57:23 [ 4] [ 12] [000010000000] +21:57:23 [ 7] [ 10] [0320215514] +21:57:23 [ 11] [ 6] [957878] +21:57:23 [ 12] [ 6] [215514] +21:57:23 [ 13] [ 4] [0320] +21:57:23 [ 15] [ 4] [0320] +21:57:23 [ 18] [ 4] [6011] +21:57:23 [ 19] [ 3] [418] +21:57:23 [ 22] [ 3] [021] +21:57:23 [ 25] [ 2] [01] +21:57:23 [ 28] [ 9] [D00002000] +21:57:23 [ 32] [ 6] [668899] +21:57:23 [ 35] [ 32] [6213544001833059=491212013305045] +21:57:23 [ 37] [ 12] [507902148153] +21:57:23 [ 41] [ 8] [03020024] +21:57:23 [ 42] [ 15] [APT ] +21:57:23 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +21:57:23 [ 49] [ 3] [418] +21:57:23 [ 52] [ 16] [EB648811E3C6E488] +21:57:23 ============================================================================ +21:57:23 + + +waiting on router queue for slot.... +21:57:23 Sending to : +21:57:23 ============================================================================ +21:57:23 Sending to : +21:57:23 ============================================================================ +21:57:24 ============================================================================ +21:57:24 Slot Id : <419> +21:57:24 Transaction Type : REQUEST +21:57:24 Received From : +21:57:24 ============================================================================ +21:57:24 FNo. Len. Field Value +21:57:24 ============================================================================ +21:57:24 [ 1] [ 4] [0200] +21:57:24 [ 2] [ 16] [6213544001833059] +21:57:24 [ 3] [ 6] [010000] +21:57:24 [ 4] [ 12] [000010000000] +21:57:24 [ 7] [ 10] [0320215514] +21:57:24 [ 11] [ 6] [957878] +21:57:24 [ 12] [ 6] [215514] +21:57:24 [ 13] [ 4] [0320] +21:57:24 [ 15] [ 4] [0320] +21:57:24 [ 18] [ 4] [6011] +21:57:24 [ 19] [ 3] [418] +21:57:24 [ 22] [ 3] [021] +21:57:24 [ 25] [ 2] [01] +21:57:24 [ 28] [ 9] [D00002000] +21:57:24 [ 32] [ 6] [668899] +21:57:24 [ 35] [ 32] [6213544001833059=491212013305045] +21:57:24 [ 37] [ 12] [507902148153] +21:57:24 [ 41] [ 8] [03020024] +21:57:24 [ 42] [ 15] [APT ] +21:57:24 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +21:57:24 [ 49] [ 3] [418] +21:57:24 [ 52] [ 16] [EB648811E3C6E488] +21:57:24 ============================================================================ +21:57:24 + + +waiting on router queue for slot.... +21:57:24 Sending to : +21:57:24 ============================================================================ +21:57:24 ============================================================================ +21:57:24 Slot Id : <419> +21:57:24 Transaction Type : REQUEST +21:57:24 Received From : +21:57:24 ============================================================================ +21:57:24 FNo. Len. Field Value +21:57:24 ============================================================================ +21:57:24 [ 1] [ 4] [0200] +21:57:24 [ 2] [ 16] [6213544001833059] +21:57:24 [ 3] [ 6] [010000] +21:57:24 [ 4] [ 12] [000010000000] +21:57:24 [ 7] [ 10] [0320215514] +21:57:24 [ 11] [ 6] [957878] +21:57:24 [ 12] [ 6] [215514] +21:57:24 [ 13] [ 4] [0320] +21:57:24 [ 15] [ 4] [0320] +21:57:24 [ 18] [ 4] [6011] +21:57:24 [ 19] [ 3] [418] +21:57:24 [ 22] [ 3] [021] +21:57:24 [ 25] [ 2] [01] +21:57:24 [ 28] [ 9] [D00002000] +21:57:24 [ 32] [ 6] [668899] +21:57:24 [ 35] [ 32] [6213544001833059=491212013305045] +21:57:24 [ 37] [ 12] [507902148153] +21:57:24 [ 41] [ 8] [03020024] +21:57:24 [ 42] [ 15] [APT ] +21:57:24 [ 43] [ 40] [ LOGOS SCHOOL DONGPALAN L] +21:57:24 [ 49] [ 3] [418] +21:57:24 [ 52] [ 16] [DA69922109619E29] +21:57:24 ============================================================================ +21:57:24 + + +waiting on router queue for slot.... +21:57:24 Sending to : <0> +21:57:24 ============================================================================ +21:57:24 ============================================================================ +21:57:24 Slot Id : <419> +21:57:24 Transaction Type : RESPONSE +21:57:24 Received From : +21:57:24 ============================================================================ +21:57:24 FNo. Len. Field Value +21:57:24 ============================================================================ +21:57:24 [ 1] [ 4] [0210] +21:57:24 [ 2] [ 16] [6213544001833059] +21:57:24 [ 3] [ 6] [010000] +21:57:24 [ 4] [ 12] [000010000000] +21:57:24 [ 7] [ 10] [0320215514] +21:57:24 [ 11] [ 6] [957878] +21:57:24 [ 12] [ 6] [215514] +21:57:24 [ 13] [ 4] [0320] +21:57:24 [ 15] [ 4] [0320] +21:57:24 [ 18] [ 4] [6011] +21:57:24 [ 19] [ 3] [418] +21:57:24 [ 32] [ 6] [668899] +21:57:24 [ 35] [ 32] [6213544001833059=491212013305045] +21:57:24 [ 37] [ 12] [507902148153] +21:57:24 [ 38] [ 6] [405634] +21:57:24 [ 39] [ 2] [00] +21:57:24 [ 41] [ 8] [03020024] +21:57:24 [ 49] [ 3] [418] +21:57:24 [ 54] [ 40] [0001418C0001566980960002418C000146498096] +21:57:24 ============================================================================ +21:57:24 Sending to : +21:57:24 ============================================================================ +21:57:24 + + +waiting on router queue for slot.... +21:57:24 ============================================================================ +21:57:24 Slot Id : <407> +21:57:24 Transaction Type : RESPONSE +21:57:24 Received From : +21:57:24 ============================================================================ +21:57:24 FNo. Len. Field Value +21:57:24 ============================================================================ +21:57:24 [ 1] [ 4] [0210] +21:57:24 [ 2] [ 16] [6688990040045377] +21:57:24 [ 3] [ 6] [011000] +21:57:24 [ 4] [ 12] [000020000000] +21:57:24 [ 11] [ 6] [847687] +21:57:24 [ 12] [ 6] [215717] +21:57:24 [ 15] [ 4] [0320] +21:57:24 [ 18] [ 4] [6011] +21:57:24 [ 32] [ 6] [621354] +21:57:24 [ 35] [ 37] [6688990040045377=97121261225891100000] +21:57:24 [ 37] [ 12] [507902635162] +21:57:24 [ 38] [ 6] [871878] +21:57:24 [ 39] [ 2] [00] +21:57:24 [ 41] [ 8] [14000200] +21:57:24 [ 49] [ 3] [418] +21:57:24 [ 54] [ 20] [1002418C000040450108] +21:57:24 ============================================================================ +21:57:24 Calculate Source COMM Id = 0 +21:57:24 ============================================================================ +21:57:24 + + +waiting on router queue for slot.... +21:57:26 ============================================================================ +21:57:26 Slot Id : <419> +21:57:26 Transaction Type : RESPONSE +21:57:26 Received From : +21:57:26 ============================================================================ +21:57:26 FNo. Len. Field Value +21:57:26 ============================================================================ +21:57:26 [ 1] [ 4] [0210] +21:57:26 [ 2] [ 16] [6213544001833059] +21:57:26 [ 3] [ 6] [010000] +21:57:26 [ 4] [ 12] [000010000000] +21:57:26 [ 7] [ 10] [0320215514] +21:57:26 [ 11] [ 6] [957878] +21:57:26 [ 12] [ 6] [215514] +21:57:26 [ 13] [ 4] [0320] +21:57:26 [ 15] [ 4] [0320] +21:57:26 [ 18] [ 4] [6011] +21:57:26 [ 19] [ 3] [418] +21:57:26 [ 32] [ 6] [668899] +21:57:26 [ 35] [ 32] [6213544001833059=491212013305045] +21:57:26 [ 37] [ 12] [507902148153] +21:57:26 [ 38] [ 6] [405634] +21:57:26 [ 39] [ 2] [00] +21:57:26 [ 41] [ 8] [03020024] +21:57:26 [ 49] [ 3] [418] +21:57:26 [ 54] [ 40] [0001418C0001566980960002418C000146498096] +21:57:26 ============================================================================ +21:57:26 Calculate Source COMM Id = 4 +21:57:26 ============================================================================ +21:57:26 + + +waiting on router queue for slot.... +21:57:26 ============================================================================ +21:57:26 Slot Id : <411> +21:57:26 Transaction Type : REQUEST +21:57:26 Received From : +21:57:26 ============================================================================ +21:57:26 FNo. Len. Field Value +21:57:26 ============================================================================ +21:57:26 [ 1] [ 4] [0800] +21:57:26 [ 7] [ 10] [0320025634] +21:57:26 [ 11] [ 6] [158620] +21:57:26 [ 70] [ 3] [301] +21:57:26 ============================================================================ +21:57:26 + + +waiting on router queue for slot.... +21:57:26 Sending to : +21:57:26 ============================================================================ +21:57:26 ============================================================================ +21:57:26 Slot Id : <411> +21:57:26 Transaction Type : RESPONSE +21:57:26 Received From : +21:57:26 ============================================================================ +21:57:26 FNo. Len. Field Value +21:57:26 ============================================================================ +21:57:26 [ 1] [ 4] [0810] +21:57:26 [ 7] [ 10] [0320025634] +21:57:26 [ 11] [ 6] [158620] +21:57:26 [ 39] [ 2] [00] +21:57:26 [ 70] [ 3] [301] +21:57:26 ============================================================================ +21:57:26 Calculate Source COMM Id = 2 +21:57:26 ============================================================================ +21:57:26 + + +waiting on router queue for slot.... +21:57:34 ============================================================================ +21:57:34 Slot Id : <380> +21:57:34 Transaction Type : REQUEST +21:57:34 Received From : +21:57:34 ============================================================================ +21:57:34 FNo. Len. Field Value +21:57:34 ============================================================================ +21:57:34 [ 1] [ 4] [0800] +21:57:34 [ 7] [ 10] [0321050923] +21:57:34 [ 11] [ 6] [220923] +21:57:34 [ 37] [ 12] [57922220923] +21:57:34 [ 70] [ 3] [301] +21:57:34 ============================================================================ +21:57:34 + + +waiting on router queue for slot.... +21:57:34 Sending to : +21:57:34 ============================================================================ +21:57:34 ============================================================================ +21:57:34 Slot Id : <380> +21:57:34 Transaction Type : RESPONSE +21:57:34 Received From : +21:57:34 ============================================================================ +21:57:34 FNo. Len. Field Value +21:57:34 ============================================================================ +21:57:34 [ 1] [ 4] [0810] +21:57:34 [ 7] [ 10] [0321050923] +21:57:34 [ 11] [ 6] [220923] +21:57:34 [ 37] [ 12] [579222209230] +21:57:34 [ 39] [ 2] [00] +21:57:34 [ 70] [ 3] [810] +21:57:34 ============================================================================ +21:57:34 Calculate Source COMM Id = 6 +21:57:34 ============================================================================ +21:57:34 + + +waiting on router queue for slot.... +21:57:37 ============================================================================ +21:57:37 Slot Id : <384> +21:57:37 Transaction Type : REQUEST +21:57:37 Received From : +21:57:37 ============================================================================ +21:57:37 FNo. Len. Field Value +21:57:37 ============================================================================ +21:57:37 [ 1] [ 4] [0800] +21:57:37 [ 7] [ 10] [0320025645] +21:57:37 [ 11] [ 6] [158621] +21:57:37 [ 70] [ 3] [301] +21:57:37 ============================================================================ +21:57:37 + + +waiting on router queue for slot.... +21:57:37 Sending to : +21:57:37 ============================================================================ +21:57:37 ============================================================================ +21:57:37 Slot Id : <384> +21:57:37 Transaction Type : RESPONSE +21:57:37 Received From : +21:57:37 ============================================================================ +21:57:37 FNo. Len. Field Value +21:57:37 ============================================================================ +21:57:37 [ 1] [ 4] [0810] +21:57:37 [ 7] [ 10] [0320025645] +21:57:37 [ 11] [ 6] [158621] +21:57:37 [ 39] [ 2] [00] +21:57:37 [ 70] [ 3] [301] +21:57:37 ============================================================================ +21:57:37 Calculate Source COMM Id = 2 +21:57:37 ============================================================================ +21:57:37 + + +waiting on router queue for slot.... +21:57:48 ============================================================================ +21:57:48 Slot Id : <401> +21:57:48 Transaction Type : REQUEST +21:57:48 Received From : +21:57:48 ============================================================================ +21:57:48 FNo. Len. Field Value +21:57:48 ============================================================================ +21:57:48 [ 1] [ 4] [0800] +21:57:48 [ 7] [ 10] [0320025656] +21:57:48 [ 11] [ 6] [158622] +21:57:48 [ 70] [ 3] [301] +21:57:48 ============================================================================ +21:57:48 + + +waiting on router queue for slot.... +21:57:48 Sending to : +21:57:48 ============================================================================ +21:57:48 ============================================================================ +21:57:48 Slot Id : <401> +21:57:48 Transaction Type : RESPONSE +21:57:48 Received From : +21:57:48 ============================================================================ +21:57:48 FNo. Len. Field Value +21:57:48 ============================================================================ +21:57:48 [ 1] [ 4] [0810] +21:57:48 [ 7] [ 10] [0320025656] +21:57:48 [ 11] [ 6] [158622] +21:57:48 [ 39] [ 2] [00] +21:57:48 [ 70] [ 3] [301] +21:57:48 ============================================================================ +21:57:48 Calculate Source COMM Id = 2 +21:57:48 ============================================================================ +21:57:48 + + +waiting on router queue for slot.... +21:58:03 ============================================================================ +21:58:03 Slot Id : <416> +21:58:03 Transaction Type : REQUEST +21:58:03 Received From : +21:58:03 ============================================================================ +21:58:03 FNo. Len. Field Value +21:58:03 ============================================================================ +21:58:03 [ 1] [ 4] [0800] +21:58:03 [ 7] [ 10] [0320025711] +21:58:03 [ 11] [ 6] [158623] +21:58:03 [ 70] [ 3] [301] +21:58:03 ============================================================================ +21:58:03 + + +waiting on router queue for slot.... +21:58:03 Sending to : +21:58:03 ============================================================================ +21:58:03 ============================================================================ +21:58:03 Slot Id : <416> +21:58:03 Transaction Type : RESPONSE +21:58:03 Received From : +21:58:03 ============================================================================ +21:58:03 FNo. Len. Field Value +21:58:03 ============================================================================ +21:58:03 [ 1] [ 4] [0810] +21:58:03 [ 7] [ 10] [0320025711] +21:58:03 [ 11] [ 6] [158623] +21:58:03 [ 39] [ 2] [00] +21:58:03 [ 70] [ 3] [301] +21:58:03 ============================================================================ +21:58:03 Calculate Source COMM Id = 2 +21:58:03 ============================================================================ +21:58:03 + + +waiting on router queue for slot.... +21:58:10 ============================================================================ +21:58:10 Slot Id : <433> +21:58:10 Transaction Type : REQUEST +21:58:10 Received From : +21:58:10 ============================================================================ +21:58:10 FNo. Len. Field Value +21:58:10 ============================================================================ +21:58:10 [ 1] [ 4] [0800] +21:58:10 [ 2] [ 5] [02531] +21:58:10 [ 3] [ 6] [579218] +21:58:10 [ 7] [ 10] [0320145810] +21:58:10 [ 11] [ 6] [807687] +21:58:10 [ 15] [ 10] [0320145810] +21:58:10 [ 37] [ 11] [57921807687] +21:58:10 [ 70] [ 3] [001] +21:58:10 ============================================================================ +21:58:10 + + +waiting on router queue for slot.... +21:58:10 ============================================================================ +21:58:10 Slot Id : <433> +21:58:10 Transaction Type : RESPONSE +21:58:10 Received From : +21:58:10 ============================================================================ +21:58:10 FNo. Len. Field Value +21:58:10 ============================================================================ +21:58:10 [ 1] [ 4] [0810] +21:58:10 [ 7] [ 10] [0320145810] +21:58:10 [ 11] [ 6] [807687] +21:58:10 [ 15] [ 4] [0320] +21:58:10 [ 37] [ 12] [57921807687] +21:58:10 [ 39] [ 2] [00] +21:58:10 [ 70] [ 3] [001] +21:58:10 ============================================================================ +21:58:10 Sending to : +21:58:10 ============================================================================ +21:58:10 + + +waiting on router queue for slot.... +21:58:14 ============================================================================ +21:58:14 Slot Id : <420> +21:58:14 Transaction Type : REQUEST +21:58:14 Received From : +21:58:14 ============================================================================ +21:58:14 FNo. Len. Field Value +21:58:14 ============================================================================ +21:58:14 [ 1] [ 4] [0800] +21:58:14 [ 7] [ 10] [0320025722] +21:58:14 [ 11] [ 6] [158624] +21:58:14 [ 70] [ 3] [301] +21:58:14 ============================================================================ +21:58:14 + + +waiting on router queue for slot.... +21:58:14 Sending to : +21:58:14 ============================================================================ +21:58:14 ============================================================================ +21:58:14 Slot Id : <420> +21:58:14 Transaction Type : RESPONSE +21:58:14 Received From : +21:58:14 ============================================================================ +21:58:14 FNo. Len. Field Value +21:58:14 ============================================================================ +21:58:14 [ 1] [ 4] [0810] +21:58:14 [ 7] [ 10] [0320025722] +21:58:14 [ 11] [ 6] [158624] +21:58:14 [ 39] [ 2] [00] +21:58:14 [ 70] [ 3] [301] +21:58:14 ============================================================================ +21:58:14 Calculate Source COMM Id = 2 +21:58:14 ============================================================================ +21:58:14 + + +waiting on router queue for slot.... +21:58:24 ============================================================================ +21:58:24 Slot Id : <381> +21:58:24 Transaction Type : REQUEST +21:58:24 Received From : +21:58:24 ============================================================================ +21:58:24 FNo. Len. Field Value +21:58:24 ============================================================================ +21:58:24 [ 1] [ 4] [0200] +21:58:24 [ 2] [ 16] [6213544001261152] +21:58:24 [ 3] [ 6] [010000] +21:58:24 [ 4] [ 12] [000010000000] +21:58:24 [ 7] [ 10] [0320215615] +21:58:24 [ 11] [ 6] [957884] +21:58:24 [ 12] [ 6] [215615] +21:58:24 [ 13] [ 4] [0320] +21:58:24 [ 15] [ 4] [0320] +21:58:24 [ 18] [ 4] [6011] +21:58:24 [ 19] [ 3] [418] +21:58:24 [ 22] [ 3] [021] +21:58:24 [ 25] [ 2] [01] +21:58:24 [ 28] [ 9] [D00002000] +21:58:24 [ 32] [ 6] [668899] +21:58:24 [ 35] [ 32] [6213544001261152=491212016115414] +21:58:24 [ 37] [ 12] [507902093505] +21:58:24 [ 41] [ 8] [03020021] +21:58:24 [ 42] [ 15] [APT ] +21:58:24 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +21:58:24 [ 49] [ 3] [418] +21:58:24 [ 52] [ 16] [F5AD0CDA64DDAF6E] +21:58:24 ============================================================================ +21:58:24 + + +waiting on router queue for slot.... +21:58:24 Sending to : +21:58:24 ============================================================================ +21:58:24 Sending to : +21:58:24 ============================================================================ +21:58:24 ============================================================================ +21:58:24 Slot Id : <381> +21:58:24 Transaction Type : REQUEST +21:58:24 Received From : +21:58:24 ============================================================================ +21:58:24 FNo. Len. Field Value +21:58:24 ============================================================================ +21:58:24 [ 1] [ 4] [0200] +21:58:24 [ 2] [ 16] [6213544001261152] +21:58:24 [ 3] [ 6] [010000] +21:58:24 [ 4] [ 12] [000010000000] +21:58:24 [ 7] [ 10] [0320215615] +21:58:24 [ 11] [ 6] [957884] +21:58:24 [ 12] [ 6] [215615] +21:58:24 [ 13] [ 4] [0320] +21:58:24 [ 15] [ 4] [0320] +21:58:24 [ 18] [ 4] [6011] +21:58:24 [ 19] [ 3] [418] +21:58:24 [ 22] [ 3] [021] +21:58:24 [ 25] [ 2] [01] +21:58:24 [ 28] [ 9] [D00002000] +21:58:24 [ 32] [ 6] [668899] +21:58:24 [ 35] [ 32] [6213544001261152=491212016115414] +21:58:24 [ 37] [ 12] [507902093505] +21:58:24 [ 41] [ 8] [03020021] +21:58:24 [ 42] [ 15] [APT ] +21:58:24 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +21:58:24 [ 49] [ 3] [418] +21:58:24 [ 52] [ 16] [F5AD0CDA64DDAF6E] +21:58:24 ============================================================================ +21:58:24 + + +waiting on router queue for slot.... +21:58:24 Sending to : +21:58:24 ============================================================================ +21:58:24 ============================================================================ +21:58:24 Slot Id : <381> +21:58:24 Transaction Type : REQUEST +21:58:24 Received From : +21:58:24 ============================================================================ +21:58:24 FNo. Len. Field Value +21:58:24 ============================================================================ +21:58:24 [ 1] [ 4] [0200] +21:58:24 [ 2] [ 16] [6213544001261152] +21:58:24 [ 3] [ 6] [010000] +21:58:24 [ 4] [ 12] [000010000000] +21:58:24 [ 7] [ 10] [0320215615] +21:58:24 [ 11] [ 6] [957884] +21:58:24 [ 12] [ 6] [215615] +21:58:24 [ 13] [ 4] [0320] +21:58:24 [ 15] [ 4] [0320] +21:58:24 [ 18] [ 4] [6011] +21:58:24 [ 19] [ 3] [418] +21:58:24 [ 22] [ 3] [021] +21:58:24 [ 25] [ 2] [01] +21:58:24 [ 28] [ 9] [D00002000] +21:58:24 [ 32] [ 6] [668899] +21:58:24 [ 35] [ 32] [6213544001261152=491212016115414] +21:58:24 [ 37] [ 12] [507902093505] +21:58:24 [ 41] [ 8] [03020021] +21:58:24 [ 42] [ 15] [APT ] +21:58:24 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +21:58:24 [ 49] [ 3] [418] +21:58:24 [ 52] [ 16] [F9B9B4B091000EFF] +21:58:24 ============================================================================ +21:58:24 + + +waiting on router queue for slot.... +21:58:24 Sending to : <0> +21:58:24 ============================================================================ +21:58:25 ============================================================================ +21:58:25 Slot Id : <398> +21:58:25 Transaction Type : REQUEST +21:58:25 Received From : +21:58:25 ============================================================================ +21:58:25 FNo. Len. Field Value +21:58:25 ============================================================================ +21:58:25 [ 1] [ 4] [0800] +21:58:25 [ 7] [ 10] [0320025733] +21:58:25 [ 11] [ 6] [158625] +21:58:25 [ 70] [ 3] [301] +21:58:25 ============================================================================ +21:58:25 + + +waiting on router queue for slot.... +21:58:25 Sending to : +21:58:25 ============================================================================ +21:58:25 ============================================================================ +21:58:25 Slot Id : <398> +21:58:25 Transaction Type : RESPONSE +21:58:25 Received From : +21:58:25 ============================================================================ +21:58:25 FNo. Len. Field Value +21:58:25 ============================================================================ +21:58:25 [ 1] [ 4] [0810] +21:58:25 [ 7] [ 10] [0320025733] +21:58:25 [ 11] [ 6] [158625] +21:58:25 [ 39] [ 2] [00] +21:58:25 [ 70] [ 3] [301] +21:58:25 ============================================================================ +21:58:25 Calculate Source COMM Id = 2 +21:58:25 ============================================================================ +21:58:25 + + +waiting on router queue for slot.... +21:58:25 ============================================================================ +21:58:25 Slot Id : <381> +21:58:25 Transaction Type : RESPONSE +21:58:25 Received From : +21:58:25 ============================================================================ +21:58:25 FNo. Len. Field Value +21:58:25 ============================================================================ +21:58:25 [ 1] [ 4] [0210] +21:58:25 [ 2] [ 16] [6213544001261152] +21:58:25 [ 3] [ 6] [010000] +21:58:25 [ 4] [ 12] [000010000000] +21:58:25 [ 7] [ 10] [0320215615] +21:58:25 [ 11] [ 6] [957884] +21:58:25 [ 12] [ 6] [215615] +21:58:25 [ 13] [ 4] [0320] +21:58:25 [ 15] [ 4] [0320] +21:58:25 [ 18] [ 4] [6011] +21:58:25 [ 19] [ 3] [418] +21:58:25 [ 32] [ 6] [668899] +21:58:25 [ 35] [ 32] [6213544001261152=491212016115414] +21:58:25 [ 37] [ 12] [507902093505] +21:58:25 [ 38] [ 6] [057766] +21:58:25 [ 39] [ 2] [00] +21:58:25 [ 41] [ 8] [03020021] +21:58:25 [ 49] [ 3] [418] +21:58:25 [ 54] [ 40] [0001418C0000086952030002418C000008495203] +21:58:25 ============================================================================ +21:58:25 Sending to : +21:58:25 ============================================================================ +21:58:25 + + +waiting on router queue for slot.... +21:58:26 ============================================================================ +21:58:26 Slot Id : <381> +21:58:26 Transaction Type : RESPONSE +21:58:26 Received From : +21:58:26 ============================================================================ +21:58:26 FNo. Len. Field Value +21:58:26 ============================================================================ +21:58:26 [ 1] [ 4] [0210] +21:58:26 [ 2] [ 16] [6213544001261152] +21:58:26 [ 3] [ 6] [010000] +21:58:26 [ 4] [ 12] [000010000000] +21:58:26 [ 7] [ 10] [0320215615] +21:58:26 [ 11] [ 6] [957884] +21:58:26 [ 12] [ 6] [215615] +21:58:26 [ 13] [ 4] [0320] +21:58:26 [ 15] [ 4] [0320] +21:58:26 [ 18] [ 4] [6011] +21:58:26 [ 19] [ 3] [418] +21:58:26 [ 32] [ 6] [668899] +21:58:26 [ 35] [ 32] [6213544001261152=491212016115414] +21:58:26 [ 37] [ 12] [507902093505] +21:58:26 [ 38] [ 6] [057766] +21:58:26 [ 39] [ 2] [00] +21:58:26 [ 41] [ 8] [03020021] +21:58:26 [ 49] [ 3] [418] +21:58:26 [ 54] [ 40] [0001418C0000086952030002418C000008495203] +21:58:26 ============================================================================ +21:58:26 Calculate Source COMM Id = 4 +21:58:26 ============================================================================ +21:58:26 + + +waiting on router queue for slot.... +21:58:39 ============================================================================ +21:58:39 Slot Id : <425> +21:58:39 Transaction Type : REQUEST +21:58:39 Received From : +21:58:39 ============================================================================ +21:58:39 FNo. Len. Field Value +21:58:39 ============================================================================ +21:58:39 [ 1] [ 4] [0800] +21:58:39 [ 7] [ 10] [0321051028] +21:58:39 [ 11] [ 6] [221028] +21:58:39 [ 37] [ 12] [57922221028] +21:58:39 [ 70] [ 3] [301] +21:58:39 ============================================================================ +21:58:39 + + +waiting on router queue for slot.... +21:58:39 Sending to : +21:58:39 ============================================================================ +21:58:39 ============================================================================ +21:58:39 Slot Id : <425> +21:58:39 Transaction Type : RESPONSE +21:58:39 Received From : +21:58:39 ============================================================================ +21:58:39 FNo. Len. Field Value +21:58:39 ============================================================================ +21:58:39 [ 1] [ 4] [0810] +21:58:39 [ 7] [ 10] [0321051028] +21:58:39 [ 11] [ 6] [221028] +21:58:39 [ 37] [ 12] [579222210280] +21:58:39 [ 39] [ 2] [00] +21:58:39 [ 70] [ 3] [810] +21:58:39 ============================================================================ +21:58:39 Calculate Source COMM Id = 6 +21:58:39 ============================================================================ +21:58:39 + + +waiting on router queue for slot.... +21:58:40 ============================================================================ +21:58:40 Slot Id : <415> +21:58:40 Transaction Type : REQUEST +21:58:40 Received From : +21:58:40 ============================================================================ +21:58:40 FNo. Len. Field Value +21:58:40 ============================================================================ +21:58:40 [ 1] [ 4] [0800] +21:58:40 [ 7] [ 10] [0320025749] +21:58:40 [ 11] [ 6] [158626] +21:58:40 [ 70] [ 3] [301] +21:58:40 ============================================================================ +21:58:40 + + +waiting on router queue for slot.... +21:58:40 Sending to : +21:58:40 ============================================================================ +21:58:40 ============================================================================ +21:58:40 Slot Id : <415> +21:58:40 Transaction Type : RESPONSE +21:58:40 Received From : +21:58:40 ============================================================================ +21:58:40 FNo. Len. Field Value +21:58:40 ============================================================================ +21:58:40 [ 1] [ 4] [0810] +21:58:40 [ 7] [ 10] [0320025749] +21:58:40 [ 11] [ 6] [158626] +21:58:40 [ 39] [ 2] [00] +21:58:40 [ 70] [ 3] [301] +21:58:40 ============================================================================ +21:58:40 Calculate Source COMM Id = 2 +21:58:40 ============================================================================ +21:58:40 + + +waiting on router queue for slot.... +21:58:51 ============================================================================ +21:58:51 Slot Id : <409> +21:58:51 Transaction Type : REQUEST +21:58:51 Received From : +21:58:51 ============================================================================ +21:58:51 FNo. Len. Field Value +21:58:51 ============================================================================ +21:58:51 [ 1] [ 4] [0800] +21:58:51 [ 7] [ 10] [0320025800] +21:58:51 [ 11] [ 6] [158627] +21:58:51 [ 70] [ 3] [301] +21:58:51 ============================================================================ +21:58:51 + + +waiting on router queue for slot.... +21:58:51 Sending to : +21:58:51 ============================================================================ +21:58:51 ============================================================================ +21:58:51 Slot Id : <409> +21:58:51 Transaction Type : RESPONSE +21:58:51 Received From : +21:58:51 ============================================================================ +21:58:51 FNo. Len. Field Value +21:58:51 ============================================================================ +21:58:51 [ 1] [ 4] [0810] +21:58:51 [ 7] [ 10] [0320025800] +21:58:51 [ 11] [ 6] [158627] +21:58:51 [ 39] [ 2] [00] +21:58:51 [ 70] [ 3] [301] +21:58:51 ============================================================================ +21:58:51 Calculate Source COMM Id = 2 +21:58:51 ============================================================================ +21:58:51 + + +waiting on router queue for slot.... +21:59:08 ============================================================================ +21:59:08 Slot Id : <364> +21:59:08 Transaction Type : REQUEST +21:59:08 Received From : +21:59:08 ============================================================================ +21:59:08 FNo. Len. Field Value +21:59:08 ============================================================================ +21:59:08 [ 1] [ 4] [0800] +21:59:08 [ 7] [ 10] [0320025816] +21:59:08 [ 11] [ 6] [158628] +21:59:08 [ 70] [ 3] [301] +21:59:08 ============================================================================ +21:59:08 + + +waiting on router queue for slot.... +21:59:08 Sending to : +21:59:08 ============================================================================ +21:59:08 ============================================================================ +21:59:08 Slot Id : <364> +21:59:08 Transaction Type : RESPONSE +21:59:08 Received From : +21:59:08 ============================================================================ +21:59:08 FNo. Len. Field Value +21:59:08 ============================================================================ +21:59:08 [ 1] [ 4] [0810] +21:59:08 [ 7] [ 10] [0320025816] +21:59:08 [ 11] [ 6] [158628] +21:59:08 [ 39] [ 2] [00] +21:59:08 [ 70] [ 3] [301] +21:59:08 ============================================================================ +21:59:08 Calculate Source COMM Id = 2 +21:59:08 ============================================================================ +21:59:08 + + +waiting on router queue for slot.... +21:59:12 ============================================================================ +21:59:12 Slot Id : <430> +21:59:12 Transaction Type : REQUEST +21:59:12 Received From : +21:59:12 ============================================================================ +21:59:12 FNo. Len. Field Value +21:59:12 ============================================================================ +21:59:12 [ 1] [ 4] [0800] +21:59:12 [ 2] [ 5] [02531] +21:59:12 [ 3] [ 6] [579218] +21:59:12 [ 7] [ 10] [0320145912] +21:59:12 [ 11] [ 6] [807688] +21:59:12 [ 15] [ 10] [0320145912] +21:59:12 [ 37] [ 11] [57921807688] +21:59:12 [ 70] [ 3] [001] +21:59:12 ============================================================================ +21:59:12 + + +waiting on router queue for slot.... +21:59:12 ============================================================================ +21:59:12 Slot Id : <430> +21:59:12 Transaction Type : RESPONSE +21:59:12 Received From : +21:59:12 ============================================================================ +21:59:12 FNo. Len. Field Value +21:59:12 ============================================================================ +21:59:12 [ 1] [ 4] [0810] +21:59:12 [ 7] [ 10] [0320145912] +21:59:12 [ 11] [ 6] [807688] +21:59:12 [ 15] [ 4] [0320] +21:59:12 [ 37] [ 12] [57921807688] +21:59:12 [ 39] [ 2] [00] +21:59:12 [ 70] [ 3] [001] +21:59:12 ============================================================================ +21:59:12 Sending to : +21:59:12 ============================================================================ +21:59:12 + + +waiting on router queue for slot.... +21:59:19 ============================================================================ +21:59:19 Slot Id : <388> +21:59:19 Transaction Type : REQUEST +21:59:19 Received From : +21:59:19 ============================================================================ +21:59:19 FNo. Len. Field Value +21:59:19 ============================================================================ +21:59:19 [ 1] [ 4] [0800] +21:59:19 [ 7] [ 10] [0320025827] +21:59:19 [ 11] [ 6] [158629] +21:59:19 [ 70] [ 3] [301] +21:59:19 ============================================================================ +21:59:19 + + +waiting on router queue for slot.... +21:59:19 Sending to : +21:59:19 ============================================================================ +21:59:19 ============================================================================ +21:59:19 Slot Id : <388> +21:59:19 Transaction Type : RESPONSE +21:59:19 Received From : +21:59:19 ============================================================================ +21:59:19 FNo. Len. Field Value +21:59:19 ============================================================================ +21:59:19 [ 1] [ 4] [0810] +21:59:19 [ 7] [ 10] [0320025827] +21:59:19 [ 11] [ 6] [158629] +21:59:19 [ 39] [ 2] [00] +21:59:19 [ 70] [ 3] [301] +21:59:19 ============================================================================ +21:59:19 Calculate Source COMM Id = 2 +21:59:19 ============================================================================ +21:59:19 + + +waiting on router queue for slot.... +21:59:34 ============================================================================ +21:59:34 Slot Id : <367> +21:59:34 Transaction Type : REQUEST +21:59:34 Received From : +21:59:34 ============================================================================ +21:59:34 FNo. Len. Field Value +21:59:34 ============================================================================ +21:59:34 [ 1] [ 4] [0800] +21:59:34 [ 7] [ 10] [0320025842] +21:59:34 [ 11] [ 6] [158630] +21:59:34 [ 70] [ 3] [301] +21:59:34 ============================================================================ +21:59:34 + + +waiting on router queue for slot.... +21:59:34 Sending to : +21:59:34 ============================================================================ +21:59:34 ============================================================================ +21:59:34 Slot Id : <367> +21:59:34 Transaction Type : RESPONSE +21:59:34 Received From : +21:59:34 ============================================================================ +21:59:34 FNo. Len. Field Value +21:59:34 ============================================================================ +21:59:34 [ 1] [ 4] [0810] +21:59:34 [ 7] [ 10] [0320025842] +21:59:34 [ 11] [ 6] [158630] +21:59:34 [ 39] [ 2] [00] +21:59:34 [ 70] [ 3] [301] +21:59:34 ============================================================================ +21:59:34 Calculate Source COMM Id = 2 +21:59:34 ============================================================================ +21:59:34 + + +waiting on router queue for slot.... +21:59:44 ============================================================================ +21:59:44 Slot Id : <403> +21:59:44 Transaction Type : REQUEST +21:59:44 Received From : +21:59:44 ============================================================================ +21:59:44 FNo. Len. Field Value +21:59:44 ============================================================================ +21:59:44 [ 1] [ 4] [0800] +21:59:44 [ 7] [ 10] [0321051133] +21:59:44 [ 11] [ 6] [221133] +21:59:44 [ 37] [ 12] [57922221133] +21:59:44 [ 70] [ 3] [301] +21:59:44 ============================================================================ +21:59:44 + + +waiting on router queue for slot.... +21:59:44 Sending to : +21:59:44 ============================================================================ +21:59:44 ============================================================================ +21:59:44 Slot Id : <403> +21:59:44 Transaction Type : RESPONSE +21:59:44 Received From : +21:59:44 ============================================================================ +21:59:44 FNo. Len. Field Value +21:59:44 ============================================================================ +21:59:44 [ 1] [ 4] [0810] +21:59:44 [ 7] [ 10] [0321051133] +21:59:44 [ 11] [ 6] [221133] +21:59:44 [ 37] [ 12] [579222211330] +21:59:44 [ 39] [ 2] [00] +21:59:44 [ 70] [ 3] [810] +21:59:44 ============================================================================ +21:59:44 Calculate Source COMM Id = 6 +21:59:44 ============================================================================ +21:59:44 + + +waiting on router queue for slot.... +21:59:45 ============================================================================ +21:59:45 Slot Id : <441> +21:59:45 Transaction Type : REQUEST +21:59:45 Received From : +21:59:45 ============================================================================ +21:59:45 FNo. Len. Field Value +21:59:45 ============================================================================ +21:59:45 [ 1] [ 4] [0800] +21:59:45 [ 7] [ 10] [0320025853] +21:59:45 [ 11] [ 6] [158631] +21:59:45 [ 70] [ 3] [301] +21:59:45 ============================================================================ +21:59:45 + + +waiting on router queue for slot.... +21:59:45 Sending to : +21:59:45 ============================================================================ +21:59:45 ============================================================================ +21:59:45 Slot Id : <441> +21:59:45 Transaction Type : RESPONSE +21:59:45 Received From : +21:59:45 ============================================================================ +21:59:45 FNo. Len. Field Value +21:59:45 ============================================================================ +21:59:45 [ 1] [ 4] [0810] +21:59:45 [ 7] [ 10] [0320025853] +21:59:45 [ 11] [ 6] [158631] +21:59:45 [ 39] [ 2] [00] +21:59:45 [ 70] [ 3] [301] +21:59:45 ============================================================================ +21:59:45 Calculate Source COMM Id = 2 +21:59:45 ============================================================================ +21:59:45 + + +waiting on router queue for slot.... +21:59:55 ============================================================================ +21:59:55 Slot Id : <437> +21:59:55 Transaction Type : REQUEST +21:59:55 Received From : +21:59:55 ============================================================================ +21:59:55 FNo. Len. Field Value +21:59:55 ============================================================================ +21:59:55 [ 1] [ 4] [0800] +21:59:55 [ 7] [ 10] [0320150742] +21:59:55 [ 11] [ 6] [071661] +21:59:55 [ 37] [ 12] [57922071661] +21:59:55 [ 70] [ 3] [301] +21:59:55 ============================================================================ +21:59:55 + + +waiting on router queue for slot.... +21:59:55 Sending to : +21:59:55 ============================================================================ +21:59:55 ============================================================================ +21:59:55 Slot Id : <437> +21:59:55 Transaction Type : RESPONSE +21:59:55 Received From : +21:59:55 ============================================================================ +21:59:55 FNo. Len. Field Value +21:59:55 ============================================================================ +21:59:55 [ 1] [ 4] [0810] +21:59:55 [ 7] [ 10] [0320150742] +21:59:55 [ 11] [ 6] [071661] +21:59:55 [ 37] [ 12] [579220716610] +21:59:55 [ 39] [ 2] [00] +21:59:55 [ 70] [ 3] [810] +21:59:55 ============================================================================ +21:59:55 Calculate Source COMM Id = 1 +21:59:55 ============================================================================ +21:59:55 + + +waiting on router queue for slot.... +21:59:56 ============================================================================ +21:59:56 Slot Id : <402> +21:59:56 Transaction Type : REQUEST +21:59:56 Received From : +21:59:56 ============================================================================ +21:59:56 FNo. Len. Field Value +21:59:56 ============================================================================ +21:59:56 [ 1] [ 4] [0800] +21:59:56 [ 7] [ 10] [0320025904] +21:59:56 [ 11] [ 6] [158632] +21:59:56 [ 70] [ 3] [301] +21:59:56 ============================================================================ +21:59:56 + + +waiting on router queue for slot.... +21:59:56 Sending to : +21:59:56 ============================================================================ +21:59:56 ============================================================================ +21:59:56 Slot Id : <402> +21:59:56 Transaction Type : RESPONSE +21:59:56 Received From : +21:59:56 ============================================================================ +21:59:56 FNo. Len. Field Value +21:59:56 ============================================================================ +21:59:56 [ 1] [ 4] [0810] +21:59:56 [ 7] [ 10] [0320025904] +21:59:56 [ 11] [ 6] [158632] +21:59:56 [ 39] [ 2] [00] +21:59:56 [ 70] [ 3] [301] +21:59:56 ============================================================================ +21:59:56 Calculate Source COMM Id = 2 +21:59:56 ============================================================================ +21:59:56 + + +waiting on router queue for slot.... +22:00:11 ============================================================================ +22:00:11 Slot Id : <385> +22:00:11 Transaction Type : REQUEST +22:00:11 Received From : +22:00:11 ============================================================================ +22:00:11 FNo. Len. Field Value +22:00:11 ============================================================================ +22:00:11 [ 1] [ 4] [0800] +22:00:11 [ 7] [ 10] [0320025919] +22:00:11 [ 11] [ 6] [158633] +22:00:11 [ 70] [ 3] [301] +22:00:11 ============================================================================ +22:00:11 + + +waiting on router queue for slot.... +22:00:11 Sending to : +22:00:11 ============================================================================ +22:00:11 ============================================================================ +22:00:11 Slot Id : <385> +22:00:11 Transaction Type : RESPONSE +22:00:11 Received From : +22:00:11 ============================================================================ +22:00:11 FNo. Len. Field Value +22:00:11 ============================================================================ +22:00:11 [ 1] [ 4] [0810] +22:00:11 [ 7] [ 10] [0320025919] +22:00:11 [ 11] [ 6] [158633] +22:00:11 [ 39] [ 2] [00] +22:00:11 [ 70] [ 3] [301] +22:00:11 ============================================================================ +22:00:11 Calculate Source COMM Id = 2 +22:00:11 ============================================================================ +22:00:11 + + +waiting on router queue for slot.... +22:00:14 ============================================================================ +22:00:14 Slot Id : <362> +22:00:14 Transaction Type : REQUEST +22:00:14 Received From : +22:00:14 ============================================================================ +22:00:14 FNo. Len. Field Value +22:00:14 ============================================================================ +22:00:14 [ 1] [ 4] [0800] +22:00:14 [ 2] [ 5] [02531] +22:00:14 [ 3] [ 6] [579228] +22:00:14 [ 7] [ 10] [0320150014] +22:00:14 [ 11] [ 6] [807689] +22:00:14 [ 15] [ 10] [0320150014] +22:00:14 [ 37] [ 11] [57922807689] +22:00:14 [ 70] [ 3] [001] +22:00:14 ============================================================================ +22:00:14 + + +waiting on router queue for slot.... +22:00:14 ============================================================================ +22:00:14 Slot Id : <362> +22:00:14 Transaction Type : RESPONSE +22:00:14 Received From : +22:00:14 ============================================================================ +22:00:14 FNo. Len. Field Value +22:00:14 ============================================================================ +22:00:14 [ 1] [ 4] [0810] +22:00:14 [ 7] [ 10] [0320150014] +22:00:14 [ 11] [ 6] [807689] +22:00:14 [ 15] [ 4] [0320] +22:00:14 [ 37] [ 12] [57922807689] +22:00:14 [ 39] [ 2] [00] +22:00:14 [ 70] [ 3] [001] +22:00:14 ============================================================================ +22:00:14 Sending to : +22:00:14 ============================================================================ +22:00:14 + + +waiting on router queue for slot.... +22:00:16 ============================================================================ +22:00:16 Slot Id : <375> +22:00:16 Transaction Type : REQUEST +22:00:16 Received From : +22:00:16 ============================================================================ +22:00:16 FNo. Len. Field Value +22:00:16 ============================================================================ +22:00:16 [ 1] [ 4] [0200] +22:00:16 [ 2] [ 16] [6213544002118971] +22:00:16 [ 3] [ 6] [011000] +22:00:16 [ 4] [ 12] [000050000000] +22:00:16 [ 7] [ 10] [0320220037] +22:00:16 [ 11] [ 6] [213284] +22:00:16 [ 12] [ 6] [215615] +22:00:16 [ 13] [ 4] [0320] +22:00:16 [ 14] [ 4] [4912] +22:00:16 [ 15] [ 4] [0320] +22:00:16 [ 18] [ 4] [6011] +22:00:16 [ 19] [ 3] [418] +22:00:16 [ 22] [ 3] [021] +22:00:16 [ 25] [ 2] [01] +22:00:16 [ 28] [ 9] [D00002000] +22:00:16 [ 32] [ 6] [198901] +22:00:16 [ 35] [ 32] [6213544002118971=491212011897520] +22:00:16 [ 37] [ 12] [507922213284] +22:00:16 [ 41] [ 8] [01652910] +22:00:16 [ 42] [ 15] [000000041652910] +22:00:16 [ 43] [ 40] [JDB ATM LPB 5 VN ] +22:00:16 [ 49] [ 3] [418] +22:00:16 [ 52] [ 16] [F519C3B41B75387F] +22:00:16 ============================================================================ +22:00:16 + + +waiting on router queue for slot.... +22:00:16 Sending to : +22:00:16 ============================================================================ +22:00:16 Sending to : +22:00:16 ============================================================================ +22:00:16 ============================================================================ +22:00:16 Slot Id : <375> +22:00:16 Transaction Type : REQUEST +22:00:16 Received From : +22:00:16 ============================================================================ +22:00:16 FNo. Len. Field Value +22:00:16 ============================================================================ +22:00:16 [ 1] [ 4] [0200] +22:00:16 [ 2] [ 16] [6213544002118971] +22:00:16 [ 3] [ 6] [011000] +22:00:16 [ 4] [ 12] [000050000000] +22:00:16 [ 7] [ 10] [0320220037] +22:00:16 [ 11] [ 6] [213284] +22:00:16 [ 12] [ 6] [215615] +22:00:16 [ 13] [ 4] [0320] +22:00:16 [ 14] [ 4] [4912] +22:00:16 [ 15] [ 4] [0320] +22:00:16 [ 18] [ 4] [6011] +22:00:16 [ 19] [ 3] [418] +22:00:16 [ 22] [ 3] [021] +22:00:16 [ 25] [ 2] [01] +22:00:16 [ 28] [ 9] [D00002000] +22:00:16 [ 32] [ 6] [198901] +22:00:16 [ 35] [ 32] [6213544002118971=491212011897520] +22:00:16 [ 37] [ 12] [507922213284] +22:00:16 [ 41] [ 8] [01652910] +22:00:16 [ 42] [ 15] [000000041652910] +22:00:16 [ 43] [ 40] [JDB ATM LPB 5 VN ] +22:00:16 [ 49] [ 3] [418] +22:00:16 [ 52] [ 16] [F519C3B41B75387F] +22:00:16 ============================================================================ +22:00:16 + + +waiting on router queue for slot.... +22:00:16 Sending to : +22:00:16 ============================================================================ +22:00:16 ============================================================================ +22:00:16 Slot Id : <375> +22:00:16 Transaction Type : REQUEST +22:00:16 Received From : +22:00:16 ============================================================================ +22:00:16 FNo. Len. Field Value +22:00:16 ============================================================================ +22:00:16 [ 1] [ 4] [0200] +22:00:16 [ 2] [ 16] [6213544002118971] +22:00:16 [ 3] [ 6] [011000] +22:00:16 [ 4] [ 12] [000050000000] +22:00:16 [ 7] [ 10] [0320220037] +22:00:16 [ 11] [ 6] [213284] +22:00:16 [ 12] [ 6] [215615] +22:00:16 [ 13] [ 4] [0320] +22:00:16 [ 14] [ 4] [4912] +22:00:16 [ 15] [ 4] [0320] +22:00:16 [ 18] [ 4] [6011] +22:00:16 [ 19] [ 3] [418] +22:00:16 [ 22] [ 3] [021] +22:00:16 [ 25] [ 2] [01] +22:00:16 [ 28] [ 9] [D00002000] +22:00:16 [ 32] [ 6] [198901] +22:00:16 [ 35] [ 32] [6213544002118971=491212011897520] +22:00:16 [ 37] [ 12] [507922213284] +22:00:16 [ 41] [ 8] [01652910] +22:00:16 [ 42] [ 15] [000000041652910] +22:00:16 [ 43] [ 40] [JDB ATM LPB 5 VN ] +22:00:16 [ 49] [ 3] [418] +22:00:16 [ 52] [ 16] [C82CDB5F41957999] +22:00:16 ============================================================================ +22:00:16 + + +waiting on router queue for slot.... +22:00:16 Sending to : <0> +22:00:16 ============================================================================ +22:00:16 ============================================================================ +22:00:16 Slot Id : <375> +22:00:16 Transaction Type : RESPONSE +22:00:16 Received From : +22:00:16 ============================================================================ +22:00:16 FNo. Len. Field Value +22:00:16 ============================================================================ +22:00:16 [ 1] [ 4] [0210] +22:00:16 [ 2] [ 16] [6213544002118971] +22:00:16 [ 3] [ 6] [011000] +22:00:16 [ 4] [ 12] [000050000000] +22:00:16 [ 7] [ 10] [0320220037] +22:00:16 [ 11] [ 6] [213284] +22:00:16 [ 12] [ 6] [215615] +22:00:16 [ 13] [ 4] [0320] +22:00:16 [ 15] [ 4] [0320] +22:00:16 [ 18] [ 4] [6011] +22:00:16 [ 19] [ 3] [418] +22:00:16 [ 32] [ 6] [198901] +22:00:16 [ 35] [ 32] [6213544002118971=491212011897520] +22:00:16 [ 37] [ 12] [507922213284] +22:00:16 [ 38] [ 6] [213284] +22:00:16 [ 39] [ 2] [51] +22:00:16 [ 41] [ 8] [01652910] +22:00:16 [ 49] [ 3] [418] +22:00:16 [ 54] [ 40] [1001840C0000000064951002840C000000006495] +22:00:16 ============================================================================ +22:00:16 Sending to : +22:00:16 ============================================================================ +22:00:16 + + +waiting on router queue for slot.... +22:00:17 ============================================================================ +22:00:17 Slot Id : <375> +22:00:17 Transaction Type : RESPONSE +22:00:17 Received From : +22:00:17 ============================================================================ +22:00:17 FNo. Len. Field Value +22:00:17 ============================================================================ +22:00:17 [ 1] [ 4] [0210] +22:00:17 [ 2] [ 16] [6213544002118971] +22:00:17 [ 3] [ 6] [011000] +22:00:17 [ 4] [ 12] [000050000000] +22:00:17 [ 7] [ 10] [0320220037] +22:00:17 [ 11] [ 6] [213284] +22:00:17 [ 12] [ 6] [215615] +22:00:17 [ 13] [ 4] [0320] +22:00:17 [ 15] [ 4] [0320] +22:00:17 [ 18] [ 4] [6011] +22:00:17 [ 19] [ 3] [418] +22:00:17 [ 32] [ 6] [198901] +22:00:17 [ 35] [ 32] [6213544002118971=491212011897520] +22:00:17 [ 37] [ 12] [507922213284] +22:00:17 [ 38] [ 6] [213284] +22:00:17 [ 39] [ 2] [51] +22:00:17 [ 41] [ 8] [01652910] +22:00:17 [ 49] [ 3] [418] +22:00:17 [ 54] [ 40] [1001840C0000000064951002840C000000006495] +22:00:17 ============================================================================ +22:00:17 Calculate Source COMM Id = 5 +22:00:17 ============================================================================ +22:00:17 + + +waiting on router queue for slot.... +22:00:22 ============================================================================ +22:00:22 Slot Id : <450> +22:00:22 Transaction Type : REQUEST +22:00:22 Received From : +22:00:22 ============================================================================ +22:00:22 FNo. Len. Field Value +22:00:22 ============================================================================ +22:00:22 [ 1] [ 4] [0800] +22:00:22 [ 7] [ 10] [0320025930] +22:00:22 [ 11] [ 6] [158634] +22:00:22 [ 70] [ 3] [301] +22:00:22 ============================================================================ +22:00:22 + + +waiting on router queue for slot.... +22:00:22 Sending to : +22:00:22 ============================================================================ +22:00:22 ============================================================================ +22:00:22 Slot Id : <450> +22:00:22 Transaction Type : RESPONSE +22:00:22 Received From : +22:00:22 ============================================================================ +22:00:22 FNo. Len. Field Value +22:00:22 ============================================================================ +22:00:22 [ 1] [ 4] [0810] +22:00:22 [ 7] [ 10] [0320025930] +22:00:22 [ 11] [ 6] [158634] +22:00:22 [ 39] [ 2] [00] +22:00:22 [ 70] [ 3] [301] +22:00:22 ============================================================================ +22:00:22 Calculate Source COMM Id = 2 +22:00:22 ============================================================================ +22:00:22 + + +waiting on router queue for slot.... +22:00:33 ============================================================================ +22:00:33 Slot Id : <408> +22:00:33 Transaction Type : REQUEST +22:00:33 Received From : +22:00:33 ============================================================================ +22:00:33 FNo. Len. Field Value +22:00:33 ============================================================================ +22:00:33 [ 1] [ 4] [0800] +22:00:33 [ 7] [ 10] [0320025941] +22:00:33 [ 11] [ 6] [158635] +22:00:33 [ 70] [ 3] [301] +22:00:33 ============================================================================ +22:00:33 + + +waiting on router queue for slot.... +22:00:33 Sending to : +22:00:33 ============================================================================ +22:00:33 ============================================================================ +22:00:33 Slot Id : <408> +22:00:33 Transaction Type : RESPONSE +22:00:33 Received From : +22:00:33 ============================================================================ +22:00:33 FNo. Len. Field Value +22:00:33 ============================================================================ +22:00:33 [ 1] [ 4] [0810] +22:00:33 [ 7] [ 10] [0320025941] +22:00:33 [ 11] [ 6] [158635] +22:00:33 [ 39] [ 2] [00] +22:00:33 [ 70] [ 3] [301] +22:00:33 ============================================================================ +22:00:33 Calculate Source COMM Id = 2 +22:00:33 ============================================================================ +22:00:33 + + +waiting on router queue for slot.... +22:00:40 ============================================================================ +22:00:40 Slot Id : <417> +22:00:40 Transaction Type : REQUEST +22:00:40 Received From : +22:00:40 ============================================================================ +22:00:40 FNo. Len. Field Value +22:00:40 ============================================================================ +22:00:40 [ 1] [ 4] [0800] +22:00:40 [ 7] [ 10] [0320220028] +22:00:40 [ 11] [ 6] [027973] +22:00:40 [ 37] [ 12] [507922027973] +22:00:40 [ 70] [ 3] [ ] +22:00:40 ============================================================================ +22:00:40 + + +waiting on router queue for slot.... +22:00:40 Sending to : +22:00:40 ============================================================================ +22:00:40 ============================================================================ +22:00:40 Slot Id : <417> +22:00:40 Transaction Type : RESPONSE +22:00:40 Received From : +22:00:40 ============================================================================ +22:00:40 FNo. Len. Field Value +22:00:40 ============================================================================ +22:00:40 [ 1] [ 4] [0810] +22:00:40 [ 7] [ 10] [0320220028] +22:00:40 [ 11] [ 6] [027973] +22:00:40 [ 37] [ 12] [507922027973] +22:00:40 [ 39] [ 2] [91] +22:00:40 [ 70] [ 3] [ ] +22:00:40 ============================================================================ +22:00:40 Calculate Source COMM Id = 3 +22:00:40 ============================================================================ +22:00:40 + + +waiting on router queue for slot.... +22:00:40 ============================================================================ +22:00:40 Slot Id : <392> +22:00:40 Transaction Type : REQUEST +22:00:40 Received From : +22:00:40 ============================================================================ +22:00:40 FNo. Len. Field Value +22:00:40 ============================================================================ +22:00:40 [ 1] [ 4] [0200] +22:00:40 [ 2] [ 16] [6213544002118971] +22:00:40 [ 3] [ 6] [011000] +22:00:40 [ 4] [ 12] [000040000000] +22:00:40 [ 7] [ 10] [0320220102] +22:00:40 [ 11] [ 6] [213290] +22:00:40 [ 12] [ 6] [215640] +22:00:40 [ 13] [ 4] [0320] +22:00:40 [ 14] [ 4] [4912] +22:00:40 [ 15] [ 4] [0320] +22:00:40 [ 18] [ 4] [6011] +22:00:40 [ 19] [ 3] [418] +22:00:40 [ 22] [ 3] [021] +22:00:40 [ 25] [ 2] [01] +22:00:40 [ 28] [ 9] [D00002000] +22:00:40 [ 32] [ 6] [198901] +22:00:40 [ 35] [ 32] [6213544002118971=491212011897520] +22:00:40 [ 37] [ 12] [507922213290] +22:00:40 [ 41] [ 8] [01652910] +22:00:40 [ 42] [ 15] [000000041652910] +22:00:40 [ 43] [ 40] [JDB ATM LPB 5 VN ] +22:00:40 [ 49] [ 3] [418] +22:00:40 [ 52] [ 16] [F519C3B41B75387F] +22:00:40 ============================================================================ +22:00:40 + + +waiting on router queue for slot.... +22:00:40 Sending to : +22:00:40 ============================================================================ +22:00:40 Sending to : +22:00:40 ============================================================================ +22:00:41 ============================================================================ +22:00:41 Slot Id : <392> +22:00:41 Transaction Type : REQUEST +22:00:41 Received From : +22:00:41 ============================================================================ +22:00:41 FNo. Len. Field Value +22:00:41 ============================================================================ +22:00:41 [ 1] [ 4] [0200] +22:00:41 [ 2] [ 16] [6213544002118971] +22:00:41 [ 3] [ 6] [011000] +22:00:41 [ 4] [ 12] [000040000000] +22:00:41 [ 7] [ 10] [0320220102] +22:00:41 [ 11] [ 6] [213290] +22:00:41 [ 12] [ 6] [215640] +22:00:41 [ 13] [ 4] [0320] +22:00:41 [ 14] [ 4] [4912] +22:00:41 [ 15] [ 4] [0320] +22:00:41 [ 18] [ 4] [6011] +22:00:41 [ 19] [ 3] [418] +22:00:41 [ 22] [ 3] [021] +22:00:41 [ 25] [ 2] [01] +22:00:41 [ 28] [ 9] [D00002000] +22:00:41 [ 32] [ 6] [198901] +22:00:41 [ 35] [ 32] [6213544002118971=491212011897520] +22:00:41 [ 37] [ 12] [507922213290] +22:00:41 [ 41] [ 8] [01652910] +22:00:41 [ 42] [ 15] [000000041652910] +22:00:41 [ 43] [ 40] [JDB ATM LPB 5 VN ] +22:00:41 [ 49] [ 3] [418] +22:00:41 [ 52] [ 16] [F519C3B41B75387F] +22:00:41 ============================================================================ +22:00:41 + + +waiting on router queue for slot.... +22:00:41 Sending to : +22:00:41 ============================================================================ +22:00:41 ============================================================================ +22:00:41 Slot Id : <392> +22:00:41 Transaction Type : REQUEST +22:00:41 Received From : +22:00:41 ============================================================================ +22:00:41 FNo. Len. Field Value +22:00:41 ============================================================================ +22:00:41 [ 1] [ 4] [0200] +22:00:41 [ 2] [ 16] [6213544002118971] +22:00:41 [ 3] [ 6] [011000] +22:00:41 [ 4] [ 12] [000040000000] +22:00:41 [ 7] [ 10] [0320220102] +22:00:41 [ 11] [ 6] [213290] +22:00:41 [ 12] [ 6] [215640] +22:00:41 [ 13] [ 4] [0320] +22:00:41 [ 14] [ 4] [4912] +22:00:41 [ 15] [ 4] [0320] +22:00:41 [ 18] [ 4] [6011] +22:00:41 [ 19] [ 3] [418] +22:00:41 [ 22] [ 3] [021] +22:00:41 [ 25] [ 2] [01] +22:00:41 [ 28] [ 9] [D00002000] +22:00:41 [ 32] [ 6] [198901] +22:00:41 [ 35] [ 32] [6213544002118971=491212011897520] +22:00:41 [ 37] [ 12] [507922213290] +22:00:41 [ 41] [ 8] [01652910] +22:00:41 [ 42] [ 15] [000000041652910] +22:00:41 [ 43] [ 40] [JDB ATM LPB 5 VN ] +22:00:41 [ 49] [ 3] [418] +22:00:41 [ 52] [ 16] [C82CDB5F41957999] +22:00:41 ============================================================================ +22:00:41 + + +waiting on router queue for slot.... +22:00:41 Sending to : <0> +22:00:41 ============================================================================ +22:00:42 ============================================================================ +22:00:42 Slot Id : <392> +22:00:42 Transaction Type : RESPONSE +22:00:42 Received From : +22:00:42 ============================================================================ +22:00:42 FNo. Len. Field Value +22:00:42 ============================================================================ +22:00:42 [ 1] [ 4] [0210] +22:00:42 [ 2] [ 16] [6213544002118971] +22:00:42 [ 3] [ 6] [011000] +22:00:42 [ 4] [ 12] [000040000000] +22:00:42 [ 7] [ 10] [0320220102] +22:00:42 [ 11] [ 6] [213290] +22:00:42 [ 12] [ 6] [215640] +22:00:42 [ 13] [ 4] [0320] +22:00:42 [ 15] [ 4] [0320] +22:00:42 [ 18] [ 4] [6011] +22:00:42 [ 19] [ 3] [418] +22:00:42 [ 32] [ 6] [198901] +22:00:42 [ 35] [ 32] [6213544002118971=491212011897520] +22:00:42 [ 37] [ 12] [507922213290] +22:00:42 [ 38] [ 6] [669371] +22:00:42 [ 39] [ 2] [00] +22:00:42 [ 41] [ 8] [01652910] +22:00:42 [ 49] [ 3] [418] +22:00:42 [ 54] [ 40] [1001840C0000000064951002840C000000001533] +22:00:42 ============================================================================ +22:00:42 Sending to : +22:00:42 ============================================================================ +22:00:42 + + +waiting on router queue for slot.... +22:00:43 ============================================================================ +22:00:43 Slot Id : <392> +22:00:43 Transaction Type : RESPONSE +22:00:43 Received From : +22:00:43 ============================================================================ +22:00:43 FNo. Len. Field Value +22:00:43 ============================================================================ +22:00:43 [ 1] [ 4] [0210] +22:00:43 [ 2] [ 16] [6213544002118971] +22:00:43 [ 3] [ 6] [011000] +22:00:43 [ 4] [ 12] [000040000000] +22:00:43 [ 7] [ 10] [0320220102] +22:00:43 [ 11] [ 6] [213290] +22:00:43 [ 12] [ 6] [215640] +22:00:43 [ 13] [ 4] [0320] +22:00:43 [ 15] [ 4] [0320] +22:00:43 [ 18] [ 4] [6011] +22:00:43 [ 19] [ 3] [418] +22:00:43 [ 32] [ 6] [198901] +22:00:43 [ 35] [ 32] [6213544002118971=491212011897520] +22:00:43 [ 37] [ 12] [507922213290] +22:00:43 [ 38] [ 6] [669371] +22:00:43 [ 39] [ 2] [00] +22:00:43 [ 41] [ 8] [01652910] +22:00:43 [ 49] [ 3] [418] +22:00:43 [ 54] [ 40] [1001840C0000000064951002840C000000001533] +22:00:43 ============================================================================ +22:00:43 Calculate Source COMM Id = 5 +22:00:43 ============================================================================ +22:00:43 + + +waiting on router queue for slot.... +22:00:43 ============================================================================ +22:00:43 Slot Id : <391> +22:00:43 Transaction Type : REQUEST +22:00:43 Received From : +22:00:43 ============================================================================ +22:00:43 FNo. Len. Field Value +22:00:43 ============================================================================ +22:00:43 [ 1] [ 4] [0800] +22:00:43 [ 7] [ 10] [0320025952] +22:00:43 [ 11] [ 6] [158636] +22:00:43 [ 70] [ 3] [301] +22:00:43 ============================================================================ +22:00:43 + + +waiting on router queue for slot.... +22:00:43 Sending to : +22:00:43 ============================================================================ +22:00:43 ============================================================================ +22:00:43 Slot Id : <391> +22:00:43 Transaction Type : RESPONSE +22:00:43 Received From : +22:00:43 ============================================================================ +22:00:43 FNo. Len. Field Value +22:00:43 ============================================================================ +22:00:43 [ 1] [ 4] [0810] +22:00:43 [ 7] [ 10] [0320025952] +22:00:43 [ 11] [ 6] [158636] +22:00:43 [ 39] [ 2] [00] +22:00:43 [ 70] [ 3] [301] +22:00:43 ============================================================================ +22:00:43 Calculate Source COMM Id = 2 +22:00:43 ============================================================================ +22:00:43 + + +waiting on router queue for slot.... +22:00:49 ============================================================================ +22:00:49 Slot Id : <412> +22:00:49 Transaction Type : REQUEST +22:00:49 Received From : +22:00:49 ============================================================================ +22:00:49 FNo. Len. Field Value +22:00:49 ============================================================================ +22:00:49 [ 1] [ 4] [0800] +22:00:49 [ 7] [ 10] [0321051238] +22:00:49 [ 11] [ 6] [221238] +22:00:49 [ 37] [ 12] [57922221238] +22:00:49 [ 70] [ 3] [301] +22:00:49 ============================================================================ +22:00:49 + + +waiting on router queue for slot.... +22:00:49 Sending to : +22:00:49 ============================================================================ +22:00:49 ============================================================================ +22:00:49 Slot Id : <412> +22:00:49 Transaction Type : RESPONSE +22:00:49 Received From : +22:00:49 ============================================================================ +22:00:49 FNo. Len. Field Value +22:00:49 ============================================================================ +22:00:49 [ 1] [ 4] [0810] +22:00:49 [ 7] [ 10] [0321051238] +22:00:49 [ 11] [ 6] [221238] +22:00:49 [ 37] [ 12] [579222212380] +22:00:49 [ 39] [ 2] [00] +22:00:49 [ 70] [ 3] [810] +22:00:49 ============================================================================ +22:00:49 Calculate Source COMM Id = 6 +22:00:49 ============================================================================ +22:00:49 + + +waiting on router queue for slot.... +22:00:55 ============================================================================ +22:00:55 Slot Id : <447> +22:00:55 Transaction Type : REQUEST +22:00:55 Received From : +22:00:55 ============================================================================ +22:00:55 FNo. Len. Field Value +22:00:55 ============================================================================ +22:00:55 [ 1] [ 4] [0800] +22:00:55 [ 7] [ 10] [0320030003] +22:00:55 [ 11] [ 6] [158637] +22:00:55 [ 70] [ 3] [301] +22:00:55 ============================================================================ +22:00:55 + + +waiting on router queue for slot.... +22:00:55 Sending to : +22:00:55 ============================================================================ +22:00:55 ============================================================================ +22:00:55 Slot Id : <447> +22:00:55 Transaction Type : RESPONSE +22:00:55 Received From : +22:00:55 ============================================================================ +22:00:55 FNo. Len. Field Value +22:00:55 ============================================================================ +22:00:55 [ 1] [ 4] [0810] +22:00:55 [ 7] [ 10] [0320030003] +22:00:55 [ 11] [ 6] [158637] +22:00:55 [ 39] [ 2] [00] +22:00:55 [ 70] [ 3] [301] +22:00:55 ============================================================================ +22:00:55 Calculate Source COMM Id = 2 +22:00:55 ============================================================================ +22:00:55 + + +waiting on router queue for slot.... +22:00:56 ============================================================================ +22:00:56 Slot Id : <405> +22:00:56 Transaction Type : REQUEST +22:00:56 Received From : +22:00:56 ============================================================================ +22:00:56 FNo. Len. Field Value +22:00:56 ============================================================================ +22:00:56 [ 1] [ 4] [0200] +22:00:56 [ 2] [ 16] [1808930200052074] +22:00:56 [ 3] [ 6] [012000] +22:00:56 [ 4] [ 12] [000050000000] +22:00:56 [ 7] [ 10] [0320220053] +22:00:56 [ 11] [ 6] [847776] +22:00:56 [ 12] [ 6] [220053] +22:00:56 [ 13] [ 4] [0320] +22:00:56 [ 15] [ 4] [0320] +22:00:56 [ 18] [ 4] [6011] +22:00:56 [ 22] [ 3] [900] +22:00:56 [ 25] [ 2] [02] +22:00:56 [ 28] [ 9] [D00002000] +22:00:56 [ 32] [ 6] [621354] +22:00:56 [ 35] [ 27] [1808930200052074=1803500047] +22:00:56 [ 37] [ 12] [507905251999] +22:00:56 [ 41] [ 8] [02002800] +22:00:56 [ 42] [ 15] [NATIVE ] +22:00:56 [ 43] [ 40] [Porkorsor Nongbok Dist Nongbok LAO] +22:00:56 [ 49] [ 3] [418] +22:00:56 [ 52] [ 16] [E8E3803D465DDDDE] +22:00:56 ============================================================================ +22:00:56 + + +waiting on router queue for slot.... +22:00:56 Sending to : +22:00:56 ============================================================================ +22:00:56 Sending to : +22:00:56 ============================================================================ +22:00:57 ============================================================================ +22:00:57 Slot Id : <405> +22:00:57 Transaction Type : REQUEST +22:00:57 Received From : +22:00:57 ============================================================================ +22:00:57 FNo. Len. Field Value +22:00:57 ============================================================================ +22:00:57 [ 1] [ 4] [0200] +22:00:57 [ 2] [ 16] [1808930200052074] +22:00:57 [ 3] [ 6] [012000] +22:00:57 [ 4] [ 12] [000050000000] +22:00:57 [ 7] [ 10] [0320220053] +22:00:57 [ 11] [ 6] [847776] +22:00:57 [ 12] [ 6] [220053] +22:00:57 [ 13] [ 4] [0320] +22:00:57 [ 15] [ 4] [0320] +22:00:57 [ 18] [ 4] [6011] +22:00:57 [ 22] [ 3] [900] +22:00:57 [ 25] [ 2] [02] +22:00:57 [ 28] [ 9] [D00002000] +22:00:57 [ 32] [ 6] [621354] +22:00:57 [ 35] [ 27] [1808930200052074=1803500047] +22:00:57 [ 37] [ 12] [507905251999] +22:00:57 [ 41] [ 8] [02002800] +22:00:57 [ 42] [ 15] [NATIVE ] +22:00:57 [ 43] [ 40] [Porkorsor Nongbok Dist Nongbok LAO] +22:00:57 [ 49] [ 3] [418] +22:00:57 [ 52] [ 16] [E8E3803D465DDDDE] +22:00:57 ============================================================================ +22:00:57 + + +waiting on router queue for slot.... +22:00:57 Sending to : +22:00:57 ============================================================================ +22:00:57 ============================================================================ +22:00:57 Slot Id : <405> +22:00:57 Transaction Type : REQUEST +22:00:57 Received From : +22:00:57 ============================================================================ +22:00:57 FNo. Len. Field Value +22:00:57 ============================================================================ +22:00:57 [ 1] [ 4] [0200] +22:00:57 [ 2] [ 16] [1808930200052074] +22:00:57 [ 3] [ 6] [012000] +22:00:57 [ 4] [ 12] [000050000000] +22:00:57 [ 7] [ 10] [0320220053] +22:00:57 [ 11] [ 6] [847776] +22:00:57 [ 12] [ 6] [220053] +22:00:57 [ 13] [ 4] [0320] +22:00:57 [ 15] [ 4] [0320] +22:00:57 [ 18] [ 4] [6011] +22:00:57 [ 22] [ 3] [900] +22:00:57 [ 25] [ 2] [02] +22:00:57 [ 28] [ 9] [D00002000] +22:00:57 [ 32] [ 6] [621354] +22:00:57 [ 35] [ 27] [1808930200052074=1803500047] +22:00:57 [ 37] [ 12] [507905251999] +22:00:57 [ 41] [ 8] [02002800] +22:00:57 [ 42] [ 15] [NATIVE ] +22:00:57 [ 43] [ 40] [Porkorsor Nongbok Dist Nongbok LAO] +22:00:57 [ 49] [ 3] [418] +22:00:57 [ 52] [ 16] [1628A526CDD1C99C] +22:00:57 ============================================================================ +22:00:57 + + +waiting on router queue for slot.... +22:00:57 Sending to : <2> +22:00:57 ============================================================================ +22:01:01 ============================================================================ +22:01:01 Slot Id : <405> +22:01:01 Transaction Type : RESPONSE +22:01:01 Received From : +22:01:01 ============================================================================ +22:01:01 FNo. Len. Field Value +22:01:01 ============================================================================ +22:01:01 [ 1] [ 4] [0210] +22:01:01 [ 2] [ 16] [1808930200052074] +22:01:01 [ 3] [ 6] [012000] +22:01:01 [ 4] [ 12] [000050000000] +22:01:01 [ 7] [ 10] [0320220053] +22:01:01 [ 11] [ 6] [847776] +22:01:01 [ 12] [ 6] [220053] +22:01:01 [ 13] [ 4] [0320] +22:01:01 [ 18] [ 4] [6011] +22:01:01 [ 19] [ 3] [418] +22:01:01 [ 22] [ 3] [021] +22:01:01 [ 28] [ 9] [D00002000] +22:01:01 [ 32] [ 6] [621354] +22:01:01 [ 35] [ 27] [1808930200052074=1803500047] +22:01:01 [ 37] [ 12] [507905251999] +22:01:01 [ 39] [ 2] [42] +22:01:01 [ 41] [ 8] [02002800] +22:01:01 [ 49] [ 3] [418] +22:01:01 [ 52] [ 16] [1628A526CDD1C99C] +22:01:01 ============================================================================ +22:01:01 Sending to : +22:01:01 ============================================================================ +22:01:01 + + +waiting on router queue for slot.... +22:01:02 ============================================================================ +22:01:02 Slot Id : <405> +22:01:02 Transaction Type : RESPONSE +22:01:02 Received From : +22:01:02 ============================================================================ +22:01:02 FNo. Len. Field Value +22:01:02 ============================================================================ +22:01:02 [ 1] [ 4] [0210] +22:01:02 [ 2] [ 16] [1808930200052074] +22:01:02 [ 3] [ 6] [012000] +22:01:02 [ 4] [ 12] [000050000000] +22:01:02 [ 7] [ 10] [0320220053] +22:01:02 [ 11] [ 6] [847776] +22:01:02 [ 12] [ 6] [220053] +22:01:02 [ 13] [ 4] [0320] +22:01:02 [ 18] [ 4] [6011] +22:01:02 [ 19] [ 3] [418] +22:01:02 [ 22] [ 3] [021] +22:01:02 [ 28] [ 9] [D00002000] +22:01:02 [ 32] [ 6] [621354] +22:01:02 [ 35] [ 27] [1808930200052074=1803500047] +22:01:02 [ 37] [ 12] [507905251999] +22:01:02 [ 39] [ 2] [42] +22:01:02 [ 41] [ 8] [02002800] +22:01:02 [ 49] [ 3] [418] +22:01:02 [ 52] [ 16] [1628A526CDD1C99C] +22:01:02 ============================================================================ +22:01:02 Calculate Source COMM Id = 0 +22:01:02 ============================================================================ +22:01:02 + + +waiting on router queue for slot.... +22:01:12 ============================================================================ +22:01:12 Slot Id : <429> +22:01:12 Transaction Type : REQUEST +22:01:12 Received From : +22:01:12 ============================================================================ +22:01:12 FNo. Len. Field Value +22:01:12 ============================================================================ +22:01:12 [ 1] [ 4] [0800] +22:01:12 [ 7] [ 10] [0320030018] +22:01:12 [ 11] [ 6] [158638] +22:01:12 [ 70] [ 3] [301] +22:01:12 ============================================================================ +22:01:12 + + +waiting on router queue for slot.... +22:01:12 Sending to : +22:01:12 ============================================================================ +22:01:12 ============================================================================ +22:01:12 Slot Id : <429> +22:01:12 Transaction Type : RESPONSE +22:01:12 Received From : +22:01:12 ============================================================================ +22:01:12 FNo. Len. Field Value +22:01:12 ============================================================================ +22:01:12 [ 1] [ 4] [0810] +22:01:12 [ 7] [ 10] [0320030018] +22:01:12 [ 11] [ 6] [158638] +22:01:12 [ 39] [ 2] [00] +22:01:12 [ 70] [ 3] [301] +22:01:12 ============================================================================ +22:01:12 Calculate Source COMM Id = 2 +22:01:12 ============================================================================ +22:01:12 + + +waiting on router queue for slot.... +22:01:16 ============================================================================ +22:01:16 Slot Id : <443> +22:01:16 Transaction Type : REQUEST +22:01:16 Received From : +22:01:16 ============================================================================ +22:01:16 FNo. Len. Field Value +22:01:16 ============================================================================ +22:01:16 [ 1] [ 4] [0800] +22:01:16 [ 2] [ 5] [02531] +22:01:16 [ 3] [ 6] [579228] +22:01:16 [ 7] [ 10] [0320150116] +22:01:16 [ 11] [ 6] [807690] +22:01:16 [ 15] [ 10] [0320150116] +22:01:16 [ 37] [ 11] [57922807690] +22:01:16 [ 70] [ 3] [001] +22:01:16 ============================================================================ +22:01:16 + + +waiting on router queue for slot.... +22:01:16 ============================================================================ +22:01:16 Slot Id : <443> +22:01:16 Transaction Type : RESPONSE +22:01:16 Received From : +22:01:16 ============================================================================ +22:01:16 FNo. Len. Field Value +22:01:16 ============================================================================ +22:01:16 [ 1] [ 4] [0810] +22:01:16 [ 7] [ 10] [0320150116] +22:01:16 [ 11] [ 6] [807690] +22:01:16 [ 15] [ 4] [0320] +22:01:16 [ 37] [ 12] [57922807690] +22:01:16 [ 39] [ 2] [00] +22:01:16 [ 70] [ 3] [001] +22:01:16 ============================================================================ +22:01:16 Sending to : +22:01:16 ============================================================================ +22:01:16 + + +waiting on router queue for slot.... +22:01:21 ============================================================================ +22:01:21 Slot Id : <386> +22:01:21 Transaction Type : REQUEST +22:01:21 Received From : +22:01:21 ============================================================================ +22:01:21 FNo. Len. Field Value +22:01:21 ============================================================================ +22:01:21 [ 1] [ 4] [0800] +22:01:21 [ 7] [ 10] [0320145912] +22:01:21 [ 11] [ 6] [063818] +22:01:21 [ 37] [ 12] [57921063818] +22:01:21 [ 70] [ 3] [301] +22:01:21 ============================================================================ +22:01:21 + + +waiting on router queue for slot.... +22:01:21 Sending to : +22:01:21 ============================================================================ +22:01:21 ============================================================================ +22:01:21 Slot Id : <386> +22:01:21 Transaction Type : RESPONSE +22:01:21 Received From : +22:01:21 ============================================================================ +22:01:21 FNo. Len. Field Value +22:01:21 ============================================================================ +22:01:21 [ 1] [ 4] [0810] +22:01:21 [ 7] [ 10] [0320145912] +22:01:21 [ 11] [ 6] [063818] +22:01:21 [ 37] [ 12] [579210638180] +22:01:21 [ 39] [ 2] [00] +22:01:21 [ 70] [ 3] [810] +22:01:21 ============================================================================ +22:01:21 Calculate Source COMM Id = 4 +22:01:21 ============================================================================ +22:01:21 + + +waiting on router queue for slot.... +22:01:28 ============================================================================ +22:01:28 Slot Id : <377> +22:01:28 Transaction Type : REQUEST +22:01:28 Received From : +22:01:28 ============================================================================ +22:01:28 FNo. Len. Field Value +22:01:28 ============================================================================ +22:01:28 [ 1] [ 4] [0800] +22:01:28 [ 7] [ 10] [0320030036] +22:01:28 [ 11] [ 6] [158639] +22:01:28 [ 70] [ 3] [301] +22:01:28 ============================================================================ +22:01:28 + + +waiting on router queue for slot.... +22:01:28 Sending to : +22:01:28 ============================================================================ +22:01:28 ============================================================================ +22:01:28 Slot Id : <377> +22:01:28 Transaction Type : RESPONSE +22:01:28 Received From : +22:01:28 ============================================================================ +22:01:28 FNo. Len. Field Value +22:01:28 ============================================================================ +22:01:28 [ 1] [ 4] [0810] +22:01:28 [ 7] [ 10] [0320030036] +22:01:28 [ 11] [ 6] [158639] +22:01:28 [ 39] [ 2] [00] +22:01:28 [ 70] [ 3] [301] +22:01:28 ============================================================================ +22:01:28 Calculate Source COMM Id = 2 +22:01:28 ============================================================================ +22:01:28 + + +waiting on router queue for slot.... +22:01:42 ============================================================================ +22:01:42 Slot Id : <446> +22:01:42 Transaction Type : REQUEST +22:01:42 Received From : +22:01:42 ============================================================================ +22:01:42 FNo. Len. Field Value +22:01:42 ============================================================================ +22:01:42 [ 1] [ 4] [0800] +22:01:42 [ 7] [ 10] [0320030049] +22:01:42 [ 11] [ 6] [158640] +22:01:42 [ 70] [ 3] [301] +22:01:42 ============================================================================ +22:01:42 + + +waiting on router queue for slot.... +22:01:42 Sending to : +22:01:42 ============================================================================ +22:01:42 ============================================================================ +22:01:42 Slot Id : <446> +22:01:42 Transaction Type : RESPONSE +22:01:42 Received From : +22:01:42 ============================================================================ +22:01:42 FNo. Len. Field Value +22:01:42 ============================================================================ +22:01:42 [ 1] [ 4] [0810] +22:01:42 [ 7] [ 10] [0320030049] +22:01:42 [ 11] [ 6] [158640] +22:01:42 [ 39] [ 2] [00] +22:01:42 [ 70] [ 3] [301] +22:01:42 ============================================================================ +22:01:42 Calculate Source COMM Id = 2 +22:01:42 ============================================================================ +22:01:42 + + +waiting on router queue for slot.... +22:01:54 ============================================================================ +22:01:54 Slot Id : <404> +22:01:54 Transaction Type : REQUEST +22:01:54 Received From : +22:01:54 ============================================================================ +22:01:54 FNo. Len. Field Value +22:01:54 ============================================================================ +22:01:54 [ 1] [ 4] [0800] +22:01:54 [ 7] [ 10] [0321051344] +22:01:54 [ 11] [ 6] [221344] +22:01:54 [ 37] [ 12] [57922221344] +22:01:54 [ 70] [ 3] [301] +22:01:54 ============================================================================ +22:01:54 + + +waiting on router queue for slot.... +22:01:54 Sending to : +22:01:54 ============================================================================ +22:01:54 ============================================================================ +22:01:54 Slot Id : <404> +22:01:54 Transaction Type : RESPONSE +22:01:54 Received From : +22:01:54 ============================================================================ +22:01:54 FNo. Len. Field Value +22:01:54 ============================================================================ +22:01:54 [ 1] [ 4] [0810] +22:01:54 [ 7] [ 10] [0321051344] +22:01:54 [ 11] [ 6] [221344] +22:01:54 [ 37] [ 12] [579222213440] +22:01:54 [ 39] [ 2] [00] +22:01:54 [ 70] [ 3] [810] +22:01:54 ============================================================================ +22:01:54 Calculate Source COMM Id = 6 +22:01:54 ============================================================================ +22:01:54 + + +waiting on router queue for slot.... +22:01:59 ============================================================================ +22:01:59 Slot Id : <456> +22:01:59 Transaction Type : REQUEST +22:01:59 Received From : +22:01:59 ============================================================================ +22:01:59 FNo. Len. Field Value +22:01:59 ============================================================================ +22:01:59 [ 1] [ 4] [0800] +22:01:59 [ 7] [ 10] [0320030106] +22:01:59 [ 11] [ 6] [158641] +22:01:59 [ 70] [ 3] [301] +22:01:59 ============================================================================ +22:01:59 + + +waiting on router queue for slot.... +22:01:59 Sending to : +22:01:59 ============================================================================ +22:01:59 ============================================================================ +22:01:59 Slot Id : <456> +22:01:59 Transaction Type : RESPONSE +22:01:59 Received From : +22:01:59 ============================================================================ +22:01:59 FNo. Len. Field Value +22:01:59 ============================================================================ +22:01:59 [ 1] [ 4] [0810] +22:01:59 [ 7] [ 10] [0320030106] +22:01:59 [ 11] [ 6] [158641] +22:01:59 [ 39] [ 2] [00] +22:01:59 [ 70] [ 3] [301] +22:01:59 ============================================================================ +22:01:59 Calculate Source COMM Id = 2 +22:01:59 ============================================================================ +22:01:59 + + +waiting on router queue for slot.... +22:02:11 ============================================================================ +22:02:11 Slot Id : <424> +22:02:11 Transaction Type : REQUEST +22:02:11 Received From : +22:02:11 ============================================================================ +22:02:11 FNo. Len. Field Value +22:02:11 ============================================================================ +22:02:11 [ 1] [ 4] [0800] +22:02:11 [ 7] [ 10] [0320030118] +22:02:11 [ 11] [ 6] [158642] +22:02:11 [ 70] [ 3] [301] +22:02:11 ============================================================================ +22:02:11 + + +waiting on router queue for slot.... +22:02:11 Sending to : +22:02:11 ============================================================================ +22:02:11 ============================================================================ +22:02:11 Slot Id : <424> +22:02:11 Transaction Type : RESPONSE +22:02:11 Received From : +22:02:11 ============================================================================ +22:02:11 FNo. Len. Field Value +22:02:11 ============================================================================ +22:02:11 [ 1] [ 4] [0810] +22:02:11 [ 7] [ 10] [0320030118] +22:02:11 [ 11] [ 6] [158642] +22:02:11 [ 39] [ 2] [00] +22:02:11 [ 70] [ 3] [301] +22:02:11 ============================================================================ +22:02:11 Calculate Source COMM Id = 2 +22:02:11 ============================================================================ +22:02:11 + + +waiting on router queue for slot.... +22:02:18 ============================================================================ +22:02:18 Slot Id : <434> +22:02:18 Transaction Type : REQUEST +22:02:18 Received From : +22:02:18 ============================================================================ +22:02:18 FNo. Len. Field Value +22:02:18 ============================================================================ +22:02:18 [ 1] [ 4] [0800] +22:02:18 [ 2] [ 5] [02531] +22:02:18 [ 3] [ 6] [579228] +22:02:18 [ 7] [ 10] [0320150218] +22:02:18 [ 11] [ 6] [807691] +22:02:18 [ 15] [ 10] [0320150218] +22:02:18 [ 37] [ 11] [57922807691] +22:02:18 [ 70] [ 3] [001] +22:02:18 ============================================================================ +22:02:18 + + +waiting on router queue for slot.... +22:02:18 ============================================================================ +22:02:18 Slot Id : <434> +22:02:18 Transaction Type : RESPONSE +22:02:18 Received From : +22:02:18 ============================================================================ +22:02:18 FNo. Len. Field Value +22:02:18 ============================================================================ +22:02:18 [ 1] [ 4] [0810] +22:02:18 [ 7] [ 10] [0320150218] +22:02:18 [ 11] [ 6] [807691] +22:02:18 [ 15] [ 4] [0320] +22:02:18 [ 37] [ 12] [57922807691] +22:02:18 [ 39] [ 2] [00] +22:02:18 [ 70] [ 3] [001] +22:02:18 ============================================================================ +22:02:18 Sending to : +22:02:18 ============================================================================ +22:02:18 + + +waiting on router queue for slot.... +22:02:27 ============================================================================ +22:02:27 Slot Id : <445> +22:02:27 Transaction Type : REQUEST +22:02:27 Received From : +22:02:27 ============================================================================ +22:02:27 FNo. Len. Field Value +22:02:27 ============================================================================ +22:02:27 [ 1] [ 4] [0800] +22:02:27 [ 7] [ 10] [0320030135] +22:02:27 [ 11] [ 6] [158643] +22:02:27 [ 70] [ 3] [301] +22:02:27 ============================================================================ +22:02:27 + + +waiting on router queue for slot.... +22:02:27 Sending to : +22:02:27 ============================================================================ +22:02:27 ============================================================================ +22:02:27 Slot Id : <445> +22:02:27 Transaction Type : RESPONSE +22:02:27 Received From : +22:02:27 ============================================================================ +22:02:27 FNo. Len. Field Value +22:02:27 ============================================================================ +22:02:27 [ 1] [ 4] [0810] +22:02:27 [ 7] [ 10] [0320030135] +22:02:27 [ 11] [ 6] [158643] +22:02:27 [ 39] [ 2] [00] +22:02:27 [ 70] [ 3] [301] +22:02:27 ============================================================================ +22:02:27 Calculate Source COMM Id = 2 +22:02:27 ============================================================================ +22:02:27 + + +waiting on router queue for slot.... +22:02:45 ============================================================================ +22:02:45 Slot Id : <438> +22:02:45 Transaction Type : REQUEST +22:02:45 Received From : +22:02:45 ============================================================================ +22:02:45 FNo. Len. Field Value +22:02:45 ============================================================================ +22:02:45 [ 1] [ 4] [0800] +22:02:45 [ 7] [ 10] [0320030152] +22:02:45 [ 11] [ 6] [158644] +22:02:45 [ 70] [ 3] [301] +22:02:45 ============================================================================ +22:02:45 + + +waiting on router queue for slot.... +22:02:45 Sending to : +22:02:45 ============================================================================ +22:02:45 ============================================================================ +22:02:45 Slot Id : <438> +22:02:45 Transaction Type : RESPONSE +22:02:45 Received From : +22:02:45 ============================================================================ +22:02:45 FNo. Len. Field Value +22:02:45 ============================================================================ +22:02:45 [ 1] [ 4] [0810] +22:02:45 [ 7] [ 10] [0320030152] +22:02:45 [ 11] [ 6] [158644] +22:02:45 [ 39] [ 2] [00] +22:02:45 [ 70] [ 3] [301] +22:02:45 ============================================================================ +22:02:45 Calculate Source COMM Id = 2 +22:02:45 ============================================================================ +22:02:45 + + +waiting on router queue for slot.... +22:02:57 ============================================================================ +22:02:57 Slot Id : <442> +22:02:57 Transaction Type : REQUEST +22:02:57 Received From : +22:02:57 ============================================================================ +22:02:57 FNo. Len. Field Value +22:02:57 ============================================================================ +22:02:57 [ 1] [ 4] [0800] +22:02:57 [ 7] [ 10] [0320030205] +22:02:57 [ 11] [ 6] [158645] +22:02:57 [ 70] [ 3] [301] +22:02:57 ============================================================================ +22:02:57 + + +waiting on router queue for slot.... +22:02:57 Sending to : +22:02:57 ============================================================================ +22:02:57 ============================================================================ +22:02:57 Slot Id : <442> +22:02:57 Transaction Type : RESPONSE +22:02:57 Received From : +22:02:57 ============================================================================ +22:02:57 FNo. Len. Field Value +22:02:57 ============================================================================ +22:02:57 [ 1] [ 4] [0810] +22:02:57 [ 7] [ 10] [0320030205] +22:02:57 [ 11] [ 6] [158645] +22:02:57 [ 39] [ 2] [00] +22:02:57 [ 70] [ 3] [301] +22:02:57 ============================================================================ +22:02:57 Calculate Source COMM Id = 2 +22:02:57 ============================================================================ +22:02:57 + + +waiting on router queue for slot.... +22:02:59 ============================================================================ +22:02:59 Slot Id : <435> +22:02:59 Transaction Type : REQUEST +22:02:59 Received From : +22:02:59 ============================================================================ +22:02:59 FNo. Len. Field Value +22:02:59 ============================================================================ +22:02:59 [ 1] [ 4] [0800] +22:02:59 [ 7] [ 10] [0321051449] +22:02:59 [ 11] [ 6] [221449] +22:02:59 [ 37] [ 12] [57922221449] +22:02:59 [ 70] [ 3] [301] +22:02:59 ============================================================================ +22:02:59 + + +waiting on router queue for slot.... +22:02:59 Sending to : +22:02:59 ============================================================================ +22:02:59 ============================================================================ +22:02:59 Slot Id : <435> +22:02:59 Transaction Type : RESPONSE +22:02:59 Received From : +22:02:59 ============================================================================ +22:02:59 FNo. Len. Field Value +22:02:59 ============================================================================ +22:02:59 [ 1] [ 4] [0810] +22:02:59 [ 7] [ 10] [0321051449] +22:02:59 [ 11] [ 6] [221449] +22:02:59 [ 37] [ 12] [579222214490] +22:02:59 [ 39] [ 2] [00] +22:02:59 [ 70] [ 3] [810] +22:02:59 ============================================================================ +22:02:59 Calculate Source COMM Id = 6 +22:02:59 ============================================================================ +22:02:59 + + +waiting on router queue for slot.... +22:03:08 ============================================================================ +22:03:08 Slot Id : <431> +22:03:08 Transaction Type : REQUEST +22:03:08 Received From : +22:03:08 ============================================================================ +22:03:08 FNo. Len. Field Value +22:03:08 ============================================================================ +22:03:08 [ 1] [ 4] [0200] +22:03:08 [ 2] [ 16] [1808930200049096] +22:03:08 [ 3] [ 6] [010000] +22:03:08 [ 4] [ 12] [000030000000] +22:03:08 [ 7] [ 10] [0320220304] +22:03:08 [ 11] [ 6] [847834] +22:03:08 [ 12] [ 6] [220304] +22:03:08 [ 13] [ 4] [0320] +22:03:08 [ 15] [ 4] [0320] +22:03:08 [ 18] [ 4] [6011] +22:03:08 [ 22] [ 3] [900] +22:03:08 [ 25] [ 2] [02] +22:03:08 [ 28] [ 9] [D00002000] +22:03:08 [ 32] [ 6] [621354] +22:03:08 [ 35] [ 27] [1808930200049096=1803500459] +22:03:08 [ 37] [ 12] [507905247210] +22:03:08 [ 41] [ 8] [01013300] +22:03:08 [ 42] [ 15] [NATIVE ] +22:03:08 [ 43] [ 40] [Dongnaxoktai Distric Vientiane LAO] +22:03:08 [ 49] [ 3] [418] +22:03:08 [ 52] [ 16] [EA56915F233FD817] +22:03:08 ============================================================================ +22:03:08 + + +waiting on router queue for slot.... +22:03:08 Sending to : +22:03:08 ============================================================================ +22:03:08 Sending to : +22:03:08 ============================================================================ +22:03:08 ============================================================================ +22:03:08 Slot Id : <431> +22:03:08 Transaction Type : REQUEST +22:03:08 Received From : +22:03:08 ============================================================================ +22:03:08 FNo. Len. Field Value +22:03:08 ============================================================================ +22:03:08 [ 1] [ 4] [0200] +22:03:08 [ 2] [ 16] [1808930200049096] +22:03:08 [ 3] [ 6] [010000] +22:03:08 [ 4] [ 12] [000030000000] +22:03:08 [ 7] [ 10] [0320220304] +22:03:08 [ 11] [ 6] [847834] +22:03:08 [ 12] [ 6] [220304] +22:03:08 [ 13] [ 4] [0320] +22:03:08 [ 15] [ 4] [0320] +22:03:08 [ 18] [ 4] [6011] +22:03:08 [ 22] [ 3] [900] +22:03:08 [ 25] [ 2] [02] +22:03:08 [ 28] [ 9] [D00002000] +22:03:08 [ 32] [ 6] [621354] +22:03:08 [ 35] [ 27] [1808930200049096=1803500459] +22:03:08 [ 37] [ 12] [507905247210] +22:03:08 [ 41] [ 8] [01013300] +22:03:08 [ 42] [ 15] [NATIVE ] +22:03:08 [ 43] [ 40] [Dongnaxoktai Distric Vientiane LAO] +22:03:08 [ 49] [ 3] [418] +22:03:08 [ 52] [ 16] [EA56915F233FD817] +22:03:08 ============================================================================ +22:03:08 + + +waiting on router queue for slot.... +22:03:08 Sending to : +22:03:08 ============================================================================ +22:03:08 ============================================================================ +22:03:08 Slot Id : <431> +22:03:08 Transaction Type : REQUEST +22:03:08 Received From : +22:03:08 ============================================================================ +22:03:08 FNo. Len. Field Value +22:03:08 ============================================================================ +22:03:08 [ 1] [ 4] [0200] +22:03:08 [ 2] [ 16] [1808930200049096] +22:03:08 [ 3] [ 6] [010000] +22:03:08 [ 4] [ 12] [000030000000] +22:03:08 [ 7] [ 10] [0320220304] +22:03:08 [ 11] [ 6] [847834] +22:03:08 [ 12] [ 6] [220304] +22:03:08 [ 13] [ 4] [0320] +22:03:08 [ 15] [ 4] [0320] +22:03:08 [ 18] [ 4] [6011] +22:03:08 [ 22] [ 3] [900] +22:03:08 [ 25] [ 2] [02] +22:03:08 [ 28] [ 9] [D00002000] +22:03:08 [ 32] [ 6] [621354] +22:03:08 [ 35] [ 27] [1808930200049096=1803500459] +22:03:08 [ 37] [ 12] [507905247210] +22:03:08 [ 41] [ 8] [01013300] +22:03:08 [ 42] [ 15] [NATIVE ] +22:03:08 [ 43] [ 40] [Dongnaxoktai Distric Vientiane LAO] +22:03:08 [ 49] [ 3] [418] +22:03:08 [ 52] [ 16] [547DF2BF073D285C] +22:03:08 ============================================================================ +22:03:08 + + +waiting on router queue for slot.... +22:03:08 Sending to : <2> +22:03:08 ============================================================================ +22:03:15 ============================================================================ +22:03:15 Slot Id : <431> +22:03:15 Transaction Type : RESPONSE +22:03:15 Received From : +22:03:15 ============================================================================ +22:03:15 FNo. Len. Field Value +22:03:15 ============================================================================ +22:03:15 [ 1] [ 4] [0210] +22:03:15 [ 2] [ 16] [1808930200049096] +22:03:15 [ 3] [ 6] [010000] +22:03:15 [ 4] [ 12] [000030000000] +22:03:15 [ 6] [ 12] [000030000000] +22:03:15 [ 7] [ 10] [0320220304] +22:03:15 [ 11] [ 6] [847834] +22:03:15 [ 12] [ 6] [220304] +22:03:15 [ 13] [ 4] [0320] +22:03:15 [ 18] [ 4] [6011] +22:03:15 [ 19] [ 3] [418] +22:03:15 [ 22] [ 3] [021] +22:03:15 [ 32] [ 6] [621354] +22:03:15 [ 35] [ 27] [1808930200049096=1803500459] +22:03:15 [ 37] [ 12] [507905247210] +22:03:15 [ 38] [ 6] [847834] +22:03:15 [ 39] [ 2] [00] +22:03:15 [ 41] [ 8] [01013300] +22:03:15 [ 49] [ 3] [418] +22:03:15 [ 52] [ 16] [547DF2BF073D285C] +22:03:15 [ 54] [ 20] [1001418C000076821800] +22:03:15 ============================================================================ +22:03:15 Sending to : +22:03:15 ============================================================================ +22:03:15 + + +waiting on router queue for slot.... +22:03:15 ============================================================================ +22:03:15 Slot Id : <462> +22:03:15 Transaction Type : REQUEST +22:03:15 Received From : +22:03:15 ============================================================================ +22:03:15 FNo. Len. Field Value +22:03:15 ============================================================================ +22:03:15 [ 1] [ 4] [0200] +22:03:15 [ 2] [ 16] [1808930200052074] +22:03:15 [ 3] [ 6] [011000] +22:03:15 [ 4] [ 12] [000100000000] +22:03:15 [ 7] [ 10] [0320220312] +22:03:15 [ 11] [ 6] [847841] +22:03:15 [ 12] [ 6] [220312] +22:03:15 [ 13] [ 4] [0320] +22:03:15 [ 15] [ 4] [0320] +22:03:15 [ 18] [ 4] [6011] +22:03:15 [ 22] [ 3] [900] +22:03:15 [ 25] [ 2] [02] +22:03:15 [ 28] [ 9] [D00002000] +22:03:15 [ 32] [ 6] [621354] +22:03:15 [ 35] [ 27] [1808930200052074=1803500047] +22:03:15 [ 37] [ 12] [507905252002] +22:03:15 [ 41] [ 8] [02002800] +22:03:15 [ 42] [ 15] [NATIVE ] +22:03:15 [ 43] [ 40] [Porkorsor Nongbok Dist Nongbok LAO] +22:03:15 [ 49] [ 3] [418] +22:03:15 [ 52] [ 16] [E8E3803D465DDDDE] +22:03:15 ============================================================================ +22:03:15 + + +waiting on router queue for slot.... +22:03:15 Sending to : +22:03:15 ============================================================================ +22:03:15 Sending to : +22:03:15 ============================================================================ +22:03:15 ============================================================================ +22:03:15 Slot Id : <462> +22:03:15 Transaction Type : REQUEST +22:03:15 Received From : +22:03:15 ============================================================================ +22:03:15 FNo. Len. Field Value +22:03:15 ============================================================================ +22:03:15 [ 1] [ 4] [0200] +22:03:15 [ 2] [ 16] [1808930200052074] +22:03:15 [ 3] [ 6] [011000] +22:03:15 [ 4] [ 12] [000100000000] +22:03:15 [ 7] [ 10] [0320220312] +22:03:15 [ 11] [ 6] [847841] +22:03:15 [ 12] [ 6] [220312] +22:03:15 [ 13] [ 4] [0320] +22:03:15 [ 15] [ 4] [0320] +22:03:15 [ 18] [ 4] [6011] +22:03:15 [ 22] [ 3] [900] +22:03:15 [ 25] [ 2] [02] +22:03:15 [ 28] [ 9] [D00002000] +22:03:15 [ 32] [ 6] [621354] +22:03:15 [ 35] [ 27] [1808930200052074=1803500047] +22:03:15 [ 37] [ 12] [507905252002] +22:03:15 [ 41] [ 8] [02002800] +22:03:15 [ 42] [ 15] [NATIVE ] +22:03:15 [ 43] [ 40] [Porkorsor Nongbok Dist Nongbok LAO] +22:03:15 [ 49] [ 3] [418] +22:03:15 [ 52] [ 16] [E8E3803D465DDDDE] +22:03:15 ============================================================================ +22:03:15 + + +waiting on router queue for slot.... +22:03:15 Sending to : +22:03:15 ============================================================================ +22:03:15 ============================================================================ +22:03:15 Slot Id : <462> +22:03:15 Transaction Type : REQUEST +22:03:15 Received From : +22:03:15 ============================================================================ +22:03:15 FNo. Len. Field Value +22:03:15 ============================================================================ +22:03:15 [ 1] [ 4] [0200] +22:03:15 [ 2] [ 16] [1808930200052074] +22:03:15 [ 3] [ 6] [011000] +22:03:15 [ 4] [ 12] [000100000000] +22:03:15 [ 7] [ 10] [0320220312] +22:03:15 [ 11] [ 6] [847841] +22:03:15 [ 12] [ 6] [220312] +22:03:15 [ 13] [ 4] [0320] +22:03:15 [ 15] [ 4] [0320] +22:03:15 [ 18] [ 4] [6011] +22:03:15 [ 22] [ 3] [900] +22:03:15 [ 25] [ 2] [02] +22:03:15 [ 28] [ 9] [D00002000] +22:03:15 [ 32] [ 6] [621354] +22:03:15 [ 35] [ 27] [1808930200052074=1803500047] +22:03:15 [ 37] [ 12] [507905252002] +22:03:15 [ 41] [ 8] [02002800] +22:03:15 [ 42] [ 15] [NATIVE ] +22:03:15 [ 43] [ 40] [Porkorsor Nongbok Dist Nongbok LAO] +22:03:15 [ 49] [ 3] [418] +22:03:15 [ 52] [ 16] [1628A526CDD1C99C] +22:03:15 ============================================================================ +22:03:15 + + +waiting on router queue for slot.... +22:03:15 Sending to : <2> +22:03:15 ============================================================================ +22:03:16 ============================================================================ +22:03:16 Slot Id : <431> +22:03:16 Transaction Type : RESPONSE +22:03:16 Received From : +22:03:16 ============================================================================ +22:03:16 FNo. Len. Field Value +22:03:16 ============================================================================ +22:03:16 [ 1] [ 4] [0210] +22:03:16 [ 2] [ 16] [1808930200049096] +22:03:16 [ 3] [ 6] [010000] +22:03:16 [ 4] [ 12] [000030000000] +22:03:16 [ 6] [ 12] [000030000000] +22:03:16 [ 7] [ 10] [0320220304] +22:03:16 [ 11] [ 6] [847834] +22:03:16 [ 12] [ 6] [220304] +22:03:16 [ 13] [ 4] [0320] +22:03:16 [ 18] [ 4] [6011] +22:03:16 [ 19] [ 3] [418] +22:03:16 [ 22] [ 3] [021] +22:03:16 [ 32] [ 6] [621354] +22:03:16 [ 35] [ 27] [1808930200049096=1803500459] +22:03:16 [ 37] [ 12] [507905247210] +22:03:16 [ 38] [ 6] [847834] +22:03:16 [ 39] [ 2] [00] +22:03:16 [ 41] [ 8] [01013300] +22:03:16 [ 49] [ 3] [418] +22:03:16 [ 52] [ 16] [547DF2BF073D285C] +22:03:16 [ 54] [ 20] [1001418C000076821800] +22:03:16 ============================================================================ +22:03:16 Calculate Source COMM Id = 0 +22:03:16 ============================================================================ +22:03:16 + + +waiting on router queue for slot.... +22:03:19 ============================================================================ +22:03:19 Slot Id : <462> +22:03:19 Transaction Type : RESPONSE +22:03:19 Received From : +22:03:19 ============================================================================ +22:03:19 FNo. Len. Field Value +22:03:19 ============================================================================ +22:03:19 [ 1] [ 4] [0210] +22:03:19 [ 2] [ 16] [1808930200052074] +22:03:19 [ 3] [ 6] [011000] +22:03:19 [ 4] [ 12] [000100000000] +22:03:19 [ 6] [ 12] [000100000000] +22:03:19 [ 7] [ 10] [0320220312] +22:03:19 [ 11] [ 6] [847841] +22:03:19 [ 12] [ 6] [220312] +22:03:19 [ 13] [ 4] [0320] +22:03:19 [ 18] [ 4] [6011] +22:03:19 [ 19] [ 3] [418] +22:03:19 [ 22] [ 3] [021] +22:03:19 [ 32] [ 6] [621354] +22:03:19 [ 35] [ 27] [1808930200052074=1803500047] +22:03:19 [ 37] [ 12] [507905252002] +22:03:19 [ 38] [ 6] [847841] +22:03:19 [ 39] [ 2] [00] +22:03:19 [ 41] [ 8] [02002800] +22:03:19 [ 49] [ 3] [418] +22:03:19 [ 52] [ 16] [1628A526CDD1C99C] +22:03:19 [ 54] [ 20] [1001418C001209919000] +22:03:19 ============================================================================ +22:03:19 Sending to : +22:03:19 ============================================================================ +22:03:19 + + +waiting on router queue for slot.... +22:03:20 ============================================================================ +22:03:20 Slot Id : <427> +22:03:20 Transaction Type : REQUEST +22:03:20 Received From : +22:03:20 ============================================================================ +22:03:20 FNo. Len. Field Value +22:03:20 ============================================================================ +22:03:20 [ 1] [ 4] [0800] +22:03:20 [ 2] [ 5] [02531] +22:03:20 [ 3] [ 6] [579228] +22:03:20 [ 7] [ 10] [0320150320] +22:03:20 [ 11] [ 6] [807692] +22:03:20 [ 15] [ 10] [0320150320] +22:03:20 [ 37] [ 11] [57922807692] +22:03:20 [ 70] [ 3] [001] +22:03:20 ============================================================================ +22:03:20 + + +waiting on router queue for slot.... +22:03:20 ============================================================================ +22:03:20 Slot Id : <427> +22:03:20 Transaction Type : RESPONSE +22:03:20 Received From : +22:03:20 ============================================================================ +22:03:20 FNo. Len. Field Value +22:03:20 ============================================================================ +22:03:20 [ 1] [ 4] [0810] +22:03:20 [ 7] [ 10] [0320150320] +22:03:20 [ 11] [ 6] [807692] +22:03:20 [ 15] [ 4] [0320] +22:03:20 [ 37] [ 12] [57922807692] +22:03:20 [ 39] [ 2] [00] +22:03:20 [ 70] [ 3] [001] +22:03:20 ============================================================================ +22:03:20 Sending to : +22:03:20 ============================================================================ +22:03:20 + + +waiting on router queue for slot.... +22:03:21 ============================================================================ +22:03:21 Slot Id : <462> +22:03:21 Transaction Type : RESPONSE +22:03:21 Received From : +22:03:21 ============================================================================ +22:03:21 FNo. Len. Field Value +22:03:21 ============================================================================ +22:03:21 [ 1] [ 4] [0210] +22:03:21 [ 2] [ 16] [1808930200052074] +22:03:21 [ 3] [ 6] [011000] +22:03:21 [ 4] [ 12] [000100000000] +22:03:21 [ 6] [ 12] [000100000000] +22:03:21 [ 7] [ 10] [0320220312] +22:03:21 [ 11] [ 6] [847841] +22:03:21 [ 12] [ 6] [220312] +22:03:21 [ 13] [ 4] [0320] +22:03:21 [ 18] [ 4] [6011] +22:03:21 [ 19] [ 3] [418] +22:03:21 [ 22] [ 3] [021] +22:03:21 [ 32] [ 6] [621354] +22:03:21 [ 35] [ 27] [1808930200052074=1803500047] +22:03:21 [ 37] [ 12] [507905252002] +22:03:21 [ 38] [ 6] [847841] +22:03:21 [ 39] [ 2] [00] +22:03:21 [ 41] [ 8] [02002800] +22:03:21 [ 49] [ 3] [418] +22:03:21 [ 52] [ 16] [1628A526CDD1C99C] +22:03:21 [ 54] [ 20] [1001418C001209919000] +22:03:21 ============================================================================ +22:03:21 Calculate Source COMM Id = 0 +22:03:21 ============================================================================ +22:03:21 + + +waiting on router queue for slot.... +22:03:30 ============================================================================ +22:03:30 Slot Id : <421> +22:03:30 Transaction Type : REQUEST +22:03:30 Received From : +22:03:30 ============================================================================ +22:03:30 FNo. Len. Field Value +22:03:30 ============================================================================ +22:03:30 [ 1] [ 4] [0800] +22:03:30 [ 7] [ 10] [0320030238] +22:03:30 [ 11] [ 6] [158646] +22:03:30 [ 70] [ 3] [301] +22:03:30 ============================================================================ +22:03:30 + + +waiting on router queue for slot.... +22:03:30 Sending to : +22:03:30 ============================================================================ +22:03:30 ============================================================================ +22:03:30 Slot Id : <421> +22:03:30 Transaction Type : RESPONSE +22:03:30 Received From : +22:03:30 ============================================================================ +22:03:30 FNo. Len. Field Value +22:03:30 ============================================================================ +22:03:30 [ 1] [ 4] [0810] +22:03:30 [ 7] [ 10] [0320030238] +22:03:30 [ 11] [ 6] [158646] +22:03:30 [ 39] [ 2] [00] +22:03:30 [ 70] [ 3] [301] +22:03:30 ============================================================================ +22:03:30 Calculate Source COMM Id = 2 +22:03:30 ============================================================================ +22:03:30 + + +waiting on router queue for slot.... +22:03:46 ============================================================================ +22:03:46 Slot Id : <428> +22:03:46 Transaction Type : REQUEST +22:03:46 Received From : +22:03:46 ============================================================================ +22:03:46 FNo. Len. Field Value +22:03:46 ============================================================================ +22:03:46 [ 1] [ 4] [0800] +22:03:46 [ 7] [ 10] [0320030254] +22:03:46 [ 11] [ 6] [158647] +22:03:46 [ 70] [ 3] [301] +22:03:46 ============================================================================ +22:03:46 + + +waiting on router queue for slot.... +22:03:46 Sending to : +22:03:46 ============================================================================ +22:03:46 ============================================================================ +22:03:46 Slot Id : <428> +22:03:46 Transaction Type : RESPONSE +22:03:46 Received From : +22:03:46 ============================================================================ +22:03:46 FNo. Len. Field Value +22:03:46 ============================================================================ +22:03:46 [ 1] [ 4] [0810] +22:03:46 [ 7] [ 10] [0320030254] +22:03:46 [ 11] [ 6] [158647] +22:03:46 [ 39] [ 2] [00] +22:03:46 [ 70] [ 3] [301] +22:03:46 ============================================================================ +22:03:46 Calculate Source COMM Id = 2 +22:03:46 ============================================================================ +22:03:46 + + +waiting on router queue for slot.... +22:03:57 ============================================================================ +22:03:57 Slot Id : <451> +22:03:57 Transaction Type : REQUEST +22:03:57 Received From : +22:03:57 ============================================================================ +22:03:57 FNo. Len. Field Value +22:03:57 ============================================================================ +22:03:57 [ 1] [ 4] [0800] +22:03:57 [ 7] [ 10] [0320030305] +22:03:57 [ 11] [ 6] [158648] +22:03:57 [ 70] [ 3] [301] +22:03:57 ============================================================================ +22:03:57 + + +waiting on router queue for slot.... +22:03:57 Sending to : +22:03:57 ============================================================================ +22:03:57 ============================================================================ +22:03:57 Slot Id : <451> +22:03:57 Transaction Type : RESPONSE +22:03:57 Received From : +22:03:57 ============================================================================ +22:03:57 FNo. Len. Field Value +22:03:57 ============================================================================ +22:03:57 [ 1] [ 4] [0810] +22:03:57 [ 7] [ 10] [0320030305] +22:03:57 [ 11] [ 6] [158648] +22:03:57 [ 39] [ 2] [00] +22:03:57 [ 70] [ 3] [301] +22:03:57 ============================================================================ +22:03:57 Calculate Source COMM Id = 2 +22:03:57 ============================================================================ +22:03:57 + + +waiting on router queue for slot.... +22:04:04 ============================================================================ +22:04:04 Slot Id : <457> +22:04:04 Transaction Type : REQUEST +22:04:04 Received From : +22:04:04 ============================================================================ +22:04:04 FNo. Len. Field Value +22:04:04 ============================================================================ +22:04:04 [ 1] [ 4] [0800] +22:04:04 [ 7] [ 10] [0321051554] +22:04:04 [ 11] [ 6] [221554] +22:04:04 [ 37] [ 12] [57922221554] +22:04:04 [ 70] [ 3] [301] +22:04:04 ============================================================================ +22:04:04 + + +waiting on router queue for slot.... +22:04:04 Sending to : +22:04:04 ============================================================================ +22:04:04 ============================================================================ +22:04:04 Slot Id : <457> +22:04:04 Transaction Type : RESPONSE +22:04:04 Received From : +22:04:04 ============================================================================ +22:04:04 FNo. Len. Field Value +22:04:04 ============================================================================ +22:04:04 [ 1] [ 4] [0810] +22:04:04 [ 7] [ 10] [0321051554] +22:04:04 [ 11] [ 6] [221554] +22:04:04 [ 37] [ 12] [579222215540] +22:04:04 [ 39] [ 2] [00] +22:04:04 [ 70] [ 3] [810] +22:04:04 ============================================================================ +22:04:04 Calculate Source COMM Id = 6 +22:04:04 ============================================================================ +22:04:04 + + +waiting on router queue for slot.... +22:04:09 ============================================================================ +22:04:09 Slot Id : <422> +22:04:09 Transaction Type : REQUEST +22:04:09 Received From : +22:04:09 ============================================================================ +22:04:09 FNo. Len. Field Value +22:04:09 ============================================================================ +22:04:09 [ 1] [ 4] [0800] +22:04:09 [ 7] [ 10] [0320030316] +22:04:09 [ 11] [ 6] [158649] +22:04:09 [ 70] [ 3] [301] +22:04:09 ============================================================================ +22:04:09 + + +waiting on router queue for slot.... +22:04:09 Sending to : +22:04:09 ============================================================================ +22:04:09 ============================================================================ +22:04:09 Slot Id : <422> +22:04:09 Transaction Type : RESPONSE +22:04:09 Received From : +22:04:09 ============================================================================ +22:04:09 FNo. Len. Field Value +22:04:09 ============================================================================ +22:04:09 [ 1] [ 4] [0810] +22:04:09 [ 7] [ 10] [0320030316] +22:04:09 [ 11] [ 6] [158649] +22:04:09 [ 39] [ 2] [00] +22:04:09 [ 70] [ 3] [301] +22:04:09 ============================================================================ +22:04:09 Calculate Source COMM Id = 2 +22:04:09 ============================================================================ +22:04:09 + + +waiting on router queue for slot.... +22:04:12 ============================================================================ +22:04:12 Slot Id : <465> +22:04:12 Transaction Type : REQUEST +22:04:12 Received From : +22:04:12 ============================================================================ +22:04:12 FNo. Len. Field Value +22:04:12 ============================================================================ +22:04:12 [ 1] [ 4] [0200] +22:04:12 [ 2] [ 16] [1808930200049096] +22:04:12 [ 3] [ 6] [301000] +22:04:12 [ 4] [ 12] [000000000000] +22:04:12 [ 7] [ 10] [0320220408] +22:04:12 [ 11] [ 6] [847859] +22:04:12 [ 12] [ 6] [220408] +22:04:12 [ 13] [ 4] [0320] +22:04:12 [ 15] [ 4] [0320] +22:04:12 [ 18] [ 4] [6011] +22:04:12 [ 22] [ 3] [900] +22:04:12 [ 25] [ 2] [02] +22:04:12 [ 28] [ 9] [D00000000] +22:04:12 [ 32] [ 6] [621354] +22:04:12 [ 35] [ 27] [1808930200049096=1803500459] +22:04:12 [ 37] [ 12] [507905247211] +22:04:12 [ 41] [ 8] [01013300] +22:04:12 [ 42] [ 15] [NATIVE ] +22:04:12 [ 43] [ 40] [Dongnaxoktai Distric Vientiane LAO] +22:04:12 [ 49] [ 3] [418] +22:04:12 [ 52] [ 16] [EA56915F233FD817] +22:04:12 ============================================================================ +22:04:12 + + +waiting on router queue for slot.... +22:04:12 Sending to : +22:04:12 ============================================================================ +22:04:12 Sending to : +22:04:12 ============================================================================ +22:04:12 ============================================================================ +22:04:12 Slot Id : <465> +22:04:12 Transaction Type : REQUEST +22:04:12 Received From : +22:04:12 ============================================================================ +22:04:12 FNo. Len. Field Value +22:04:12 ============================================================================ +22:04:12 [ 1] [ 4] [0200] +22:04:12 [ 2] [ 16] [1808930200049096] +22:04:12 [ 3] [ 6] [301000] +22:04:12 [ 4] [ 12] [000000000000] +22:04:12 [ 7] [ 10] [0320220408] +22:04:12 [ 11] [ 6] [847859] +22:04:12 [ 12] [ 6] [220408] +22:04:12 [ 13] [ 4] [0320] +22:04:12 [ 15] [ 4] [0320] +22:04:12 [ 18] [ 4] [6011] +22:04:12 [ 22] [ 3] [900] +22:04:12 [ 25] [ 2] [02] +22:04:12 [ 28] [ 9] [D00000000] +22:04:12 [ 32] [ 6] [621354] +22:04:12 [ 35] [ 27] [1808930200049096=1803500459] +22:04:12 [ 37] [ 12] [507905247211] +22:04:12 [ 41] [ 8] [01013300] +22:04:12 [ 42] [ 15] [NATIVE ] +22:04:12 [ 43] [ 40] [Dongnaxoktai Distric Vientiane LAO] +22:04:12 [ 49] [ 3] [418] +22:04:12 [ 52] [ 16] [EA56915F233FD817] +22:04:12 ============================================================================ +22:04:12 + + +waiting on router queue for slot.... +22:04:12 Sending to : +22:04:12 ============================================================================ +22:04:12 ============================================================================ +22:04:12 Slot Id : <465> +22:04:12 Transaction Type : REQUEST +22:04:12 Received From : +22:04:12 ============================================================================ +22:04:12 FNo. Len. Field Value +22:04:12 ============================================================================ +22:04:12 [ 1] [ 4] [0200] +22:04:12 [ 2] [ 16] [1808930200049096] +22:04:12 [ 3] [ 6] [301000] +22:04:12 [ 4] [ 12] [000000000000] +22:04:12 [ 7] [ 10] [0320220408] +22:04:12 [ 11] [ 6] [847859] +22:04:12 [ 12] [ 6] [220408] +22:04:12 [ 13] [ 4] [0320] +22:04:12 [ 15] [ 4] [0320] +22:04:12 [ 18] [ 4] [6011] +22:04:12 [ 22] [ 3] [900] +22:04:12 [ 25] [ 2] [02] +22:04:12 [ 28] [ 9] [D00000000] +22:04:12 [ 32] [ 6] [621354] +22:04:12 [ 35] [ 27] [1808930200049096=1803500459] +22:04:12 [ 37] [ 12] [507905247211] +22:04:12 [ 41] [ 8] [01013300] +22:04:12 [ 42] [ 15] [NATIVE ] +22:04:12 [ 43] [ 40] [Dongnaxoktai Distric Vientiane LAO] +22:04:12 [ 49] [ 3] [418] +22:04:12 [ 52] [ 16] [547DF2BF073D285C] +22:04:12 ============================================================================ +22:04:12 + + +waiting on router queue for slot.... +22:04:12 Sending to : <2> +22:04:12 ============================================================================ +22:04:17 ============================================================================ +22:04:17 Slot Id : <465> +22:04:17 Transaction Type : RESPONSE +22:04:17 Received From : +22:04:17 ============================================================================ +22:04:17 FNo. Len. Field Value +22:04:17 ============================================================================ +22:04:17 [ 1] [ 4] [0210] +22:04:17 [ 2] [ 16] [1808930200049096] +22:04:17 [ 3] [ 6] [301000] +22:04:17 [ 7] [ 10] [0320220408] +22:04:17 [ 11] [ 6] [847859] +22:04:17 [ 12] [ 6] [220408] +22:04:17 [ 13] [ 4] [0320] +22:04:17 [ 14] [ 4] [1803] +22:04:17 [ 19] [ 3] [418] +22:04:17 [ 32] [ 6] [621354] +22:04:17 [ 37] [ 12] [507905247211] +22:04:17 [ 38] [ 6] [847859] +22:04:17 [ 39] [ 2] [00] +22:04:17 [ 41] [ 8] [01013300] +22:04:17 [ 49] [ 3] [418] +22:04:17 [ 52] [ 16] [547DF2BF073D285C] +22:04:17 [ 54] [ 20] [1002418C000076821800] +22:04:17 ============================================================================ +22:04:17 Sending to : +22:04:17 ============================================================================ +22:04:17 + + +waiting on router queue for slot.... +22:04:18 ============================================================================ +22:04:18 Slot Id : <465> +22:04:18 Transaction Type : RESPONSE +22:04:18 Received From : +22:04:18 ============================================================================ +22:04:18 FNo. Len. Field Value +22:04:18 ============================================================================ +22:04:18 [ 1] [ 4] [0210] +22:04:18 [ 2] [ 16] [1808930200049096] +22:04:18 [ 3] [ 6] [301000] +22:04:18 [ 7] [ 10] [0320220408] +22:04:18 [ 11] [ 6] [847859] +22:04:18 [ 12] [ 6] [220408] +22:04:18 [ 13] [ 4] [0320] +22:04:18 [ 14] [ 4] [1803] +22:04:18 [ 19] [ 3] [418] +22:04:18 [ 32] [ 6] [621354] +22:04:18 [ 37] [ 12] [507905247211] +22:04:18 [ 38] [ 6] [847859] +22:04:18 [ 39] [ 2] [00] +22:04:18 [ 41] [ 8] [01013300] +22:04:18 [ 49] [ 3] [418] +22:04:18 [ 52] [ 16] [547DF2BF073D285C] +22:04:18 [ 54] [ 20] [1002418C000076821800] +22:04:18 ============================================================================ +22:04:18 Calculate Source COMM Id = 0 +22:04:18 ============================================================================ +22:04:18 + + +waiting on router queue for slot.... +22:04:22 ============================================================================ +22:04:22 Slot Id : <426> +22:04:22 Transaction Type : REQUEST +22:04:22 Received From : +22:04:22 ============================================================================ +22:04:22 FNo. Len. Field Value +22:04:22 ============================================================================ +22:04:22 [ 1] [ 4] [0800] +22:04:22 [ 2] [ 5] [02531] +22:04:22 [ 3] [ 6] [579228] +22:04:22 [ 7] [ 10] [0320150422] +22:04:22 [ 11] [ 6] [807693] +22:04:22 [ 15] [ 10] [0320150422] +22:04:22 [ 37] [ 11] [57922807693] +22:04:22 [ 70] [ 3] [001] +22:04:22 ============================================================================ +22:04:22 + + +waiting on router queue for slot.... +22:04:22 ============================================================================ +22:04:22 Slot Id : <426> +22:04:22 Transaction Type : RESPONSE +22:04:22 Received From : +22:04:22 ============================================================================ +22:04:22 FNo. Len. Field Value +22:04:22 ============================================================================ +22:04:22 [ 1] [ 4] [0810] +22:04:22 [ 7] [ 10] [0320150422] +22:04:22 [ 11] [ 6] [807693] +22:04:22 [ 15] [ 4] [0320] +22:04:22 [ 37] [ 12] [57922807693] +22:04:22 [ 39] [ 2] [00] +22:04:22 [ 70] [ 3] [001] +22:04:22 ============================================================================ +22:04:22 Sending to : +22:04:22 ============================================================================ +22:04:22 + + +waiting on router queue for slot.... +22:04:24 ============================================================================ +22:04:24 Slot Id : <436> +22:04:24 Transaction Type : REQUEST +22:04:24 Received From : +22:04:24 ============================================================================ +22:04:24 FNo. Len. Field Value +22:04:24 ============================================================================ +22:04:24 [ 1] [ 4] [0800] +22:04:24 [ 7] [ 10] [0320030332] +22:04:24 [ 11] [ 6] [158650] +22:04:24 [ 70] [ 3] [301] +22:04:24 ============================================================================ +22:04:24 + + +waiting on router queue for slot.... +22:04:24 Sending to : +22:04:24 ============================================================================ +22:04:24 ============================================================================ +22:04:24 Slot Id : <436> +22:04:24 Transaction Type : RESPONSE +22:04:24 Received From : +22:04:24 ============================================================================ +22:04:24 FNo. Len. Field Value +22:04:24 ============================================================================ +22:04:24 [ 1] [ 4] [0810] +22:04:24 [ 7] [ 10] [0320030332] +22:04:24 [ 11] [ 6] [158650] +22:04:24 [ 39] [ 2] [00] +22:04:24 [ 70] [ 3] [301] +22:04:24 ============================================================================ +22:04:24 Calculate Source COMM Id = 2 +22:04:24 ============================================================================ +22:04:24 + + +waiting on router queue for slot.... +22:04:35 ============================================================================ +22:04:35 Slot Id : <444> +22:04:35 Transaction Type : REQUEST +22:04:35 Received From : +22:04:35 ============================================================================ +22:04:35 FNo. Len. Field Value +22:04:35 ============================================================================ +22:04:35 [ 1] [ 4] [0800] +22:04:35 [ 7] [ 10] [0320030343] +22:04:35 [ 11] [ 6] [158651] +22:04:35 [ 70] [ 3] [301] +22:04:35 ============================================================================ +22:04:35 + + +waiting on router queue for slot.... +22:04:35 Sending to : +22:04:35 ============================================================================ +22:04:35 ============================================================================ +22:04:35 Slot Id : <444> +22:04:35 Transaction Type : RESPONSE +22:04:35 Received From : +22:04:35 ============================================================================ +22:04:35 FNo. Len. Field Value +22:04:35 ============================================================================ +22:04:35 [ 1] [ 4] [0810] +22:04:35 [ 7] [ 10] [0320030343] +22:04:35 [ 11] [ 6] [158651] +22:04:35 [ 39] [ 2] [00] +22:04:35 [ 70] [ 3] [301] +22:04:35 ============================================================================ +22:04:35 Calculate Source COMM Id = 2 +22:04:35 ============================================================================ +22:04:35 + + +waiting on router queue for slot.... +22:04:43 ============================================================================ +22:04:43 Slot Id : <458> +22:04:43 Transaction Type : REQUEST +22:04:43 Received From : +22:04:43 ============================================================================ +22:04:43 FNo. Len. Field Value +22:04:43 ============================================================================ +22:04:43 [ 1] [ 4] [0200] +22:04:43 [ 2] [ 16] [6213541000411804] +22:04:43 [ 3] [ 6] [301000] +22:04:43 [ 7] [ 10] [0320150351] +22:04:43 [ 11] [ 6] [271740] +22:04:43 [ 12] [ 6] [220351] +22:04:43 [ 13] [ 4] [0320] +22:04:43 [ 14] [ 4] [4912] +22:04:43 [ 15] [ 4] [0320] +22:04:43 [ 18] [ 4] [6011] +22:04:43 [ 19] [ 3] [418] +22:04:43 [ 22] [ 3] [021] +22:04:43 [ 25] [ 2] [01] +22:04:43 [ 32] [ 6] [180893] +22:04:43 [ 35] [ 32] [6213541000411804=491212011180171] +22:04:43 [ 37] [ 12] [507915271740] +22:04:43 [ 41] [ 8] [0344SVKV] +22:04:43 [ 42] [ 15] [999999 ] +22:04:43 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +22:04:43 [ 49] [ 3] [418] +22:04:43 [ 52] [ 16] [DD10A9D876ADD8F8] +22:04:43 ============================================================================ +22:04:43 + + +waiting on router queue for slot.... +22:04:43 Sending to : +22:04:43 ============================================================================ +22:04:43 Sending to : +22:04:43 ============================================================================ +22:04:44 ============================================================================ +22:04:44 Slot Id : <458> +22:04:44 Transaction Type : REQUEST +22:04:44 Received From : +22:04:44 ============================================================================ +22:04:44 FNo. Len. Field Value +22:04:44 ============================================================================ +22:04:44 [ 1] [ 4] [0200] +22:04:44 [ 2] [ 16] [6213541000411804] +22:04:44 [ 3] [ 6] [301000] +22:04:44 [ 7] [ 10] [0320150351] +22:04:44 [ 11] [ 6] [271740] +22:04:44 [ 12] [ 6] [220351] +22:04:44 [ 13] [ 4] [0320] +22:04:44 [ 14] [ 4] [4912] +22:04:44 [ 15] [ 4] [0320] +22:04:44 [ 18] [ 4] [6011] +22:04:44 [ 19] [ 3] [418] +22:04:44 [ 22] [ 3] [021] +22:04:44 [ 25] [ 2] [01] +22:04:44 [ 32] [ 6] [180893] +22:04:44 [ 35] [ 32] [6213541000411804=491212011180171] +22:04:44 [ 37] [ 12] [507915271740] +22:04:44 [ 41] [ 8] [0344SVKV] +22:04:44 [ 42] [ 15] [999999 ] +22:04:44 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +22:04:44 [ 49] [ 3] [418] +22:04:44 [ 52] [ 16] [DD10A9D876ADD8F8] +22:04:44 ============================================================================ +22:04:44 + + +waiting on router queue for slot.... +22:04:44 Sending to : +22:04:44 ============================================================================ +22:04:44 ============================================================================ +22:04:44 Slot Id : <458> +22:04:44 Transaction Type : REQUEST +22:04:44 Received From : +22:04:44 ============================================================================ +22:04:44 FNo. Len. Field Value +22:04:44 ============================================================================ +22:04:44 [ 1] [ 4] [0200] +22:04:44 [ 2] [ 16] [6213541000411804] +22:04:44 [ 3] [ 6] [301000] +22:04:44 [ 7] [ 10] [0320150351] +22:04:44 [ 11] [ 6] [271740] +22:04:44 [ 12] [ 6] [220351] +22:04:44 [ 13] [ 4] [0320] +22:04:44 [ 14] [ 4] [4912] +22:04:44 [ 15] [ 4] [0320] +22:04:44 [ 18] [ 4] [6011] +22:04:44 [ 19] [ 3] [418] +22:04:44 [ 22] [ 3] [021] +22:04:44 [ 25] [ 2] [01] +22:04:44 [ 32] [ 6] [180893] +22:04:44 [ 35] [ 32] [6213541000411804=491212011180171] +22:04:44 [ 37] [ 12] [507915271740] +22:04:44 [ 41] [ 8] [0344SVKV] +22:04:44 [ 42] [ 15] [999999 ] +22:04:44 [ 43] [ 40] [ATM SAVANNAKHET VIRABOULY LOCATION, Vila] +22:04:44 [ 49] [ 3] [418] +22:04:44 [ 52] [ 16] [D77185F79A0A0C03] +22:04:44 ============================================================================ +22:04:44 + + +waiting on router queue for slot.... +22:04:44 Sending to : <0> +22:04:44 ============================================================================ +22:04:44 ============================================================================ +22:04:44 Slot Id : <458> +22:04:44 Transaction Type : RESPONSE +22:04:44 Received From : +22:04:44 ============================================================================ +22:04:44 FNo. Len. Field Value +22:04:44 ============================================================================ +22:04:44 [ 1] [ 4] [0210] +22:04:44 [ 2] [ 16] [6213541000411804] +22:04:44 [ 3] [ 6] [301000] +22:04:44 [ 4] [ 12] [000000000000] +22:04:44 [ 7] [ 10] [0320150351] +22:04:44 [ 11] [ 6] [271740] +22:04:44 [ 12] [ 6] [220351] +22:04:44 [ 13] [ 4] [0320] +22:04:44 [ 15] [ 4] [0320] +22:04:44 [ 18] [ 4] [6011] +22:04:44 [ 19] [ 3] [418] +22:04:44 [ 22] [ 3] [021] +22:04:44 [ 32] [ 6] [180893] +22:04:44 [ 35] [ 32] [6213541000411804=491212011180171] +22:04:44 [ 37] [ 12] [507915271740] +22:04:44 [ 38] [ 6] [220440] +22:04:44 [ 39] [ 2] [55] +22:04:44 [ 41] [ 8] [0344SVKV] +22:04:44 [ 49] [ 3] [418] +22:04:44 ============================================================================ +22:04:44 Sending to : +22:04:44 ============================================================================ +22:04:44 + + +waiting on router queue for slot.... +22:04:45 ============================================================================ +22:04:45 Slot Id : <423> +22:04:45 Transaction Type : REQUEST +22:04:45 Received From : +22:04:45 ============================================================================ +22:04:45 FNo. Len. Field Value +22:04:45 ============================================================================ +22:04:45 [ 1] [ 4] [0800] +22:04:45 [ 7] [ 10] [0320030353] +22:04:45 [ 11] [ 6] [158652] +22:04:45 [ 70] [ 3] [301] +22:04:45 ============================================================================ +22:04:45 + + +waiting on router queue for slot.... +22:04:45 Sending to : +22:04:45 ============================================================================ +22:04:45 ============================================================================ +22:04:45 Slot Id : <423> +22:04:45 Transaction Type : RESPONSE +22:04:45 Received From : +22:04:45 ============================================================================ +22:04:45 FNo. Len. Field Value +22:04:45 ============================================================================ +22:04:45 [ 1] [ 4] [0810] +22:04:45 [ 7] [ 10] [0320030353] +22:04:45 [ 11] [ 6] [158652] +22:04:45 [ 39] [ 2] [00] +22:04:45 [ 70] [ 3] [301] +22:04:45 ============================================================================ +22:04:45 Calculate Source COMM Id = 2 +22:04:45 ============================================================================ +22:04:45 + + +waiting on router queue for slot.... +22:04:45 ============================================================================ +22:04:45 Slot Id : <458> +22:04:45 Transaction Type : RESPONSE +22:04:45 Received From : +22:04:45 ============================================================================ +22:04:45 FNo. Len. Field Value +22:04:45 ============================================================================ +22:04:45 [ 1] [ 4] [0210] +22:04:45 [ 2] [ 16] [6213541000411804] +22:04:45 [ 3] [ 6] [301000] +22:04:45 [ 4] [ 12] [000000000000] +22:04:45 [ 7] [ 10] [0320150351] +22:04:45 [ 11] [ 6] [271740] +22:04:45 [ 12] [ 6] [220351] +22:04:45 [ 13] [ 4] [0320] +22:04:45 [ 15] [ 4] [0320] +22:04:45 [ 18] [ 4] [6011] +22:04:45 [ 19] [ 3] [418] +22:04:45 [ 22] [ 3] [021] +22:04:45 [ 32] [ 6] [180893] +22:04:45 [ 35] [ 32] [6213541000411804=491212011180171] +22:04:45 [ 37] [ 12] [507915271740] +22:04:45 [ 38] [ 6] [220440] +22:04:45 [ 39] [ 2] [55] +22:04:45 [ 41] [ 8] [0344SVKV] +22:04:45 [ 49] [ 3] [418] +22:04:45 ============================================================================ +22:04:45 Calculate Source COMM Id = 2 +22:04:45 ============================================================================ +22:04:45 + + +waiting on router queue for slot.... +22:04:55 ============================================================================ +22:04:55 Slot Id : <452> +22:04:55 Transaction Type : REQUEST +22:04:55 Received From : +22:04:55 ============================================================================ +22:04:55 FNo. Len. Field Value +22:04:55 ============================================================================ +22:04:55 [ 1] [ 4] [0800] +22:04:55 [ 7] [ 10] [0320151242] +22:04:55 [ 11] [ 6] [017140] +22:04:55 [ 37] [ 12] [57922017140] +22:04:55 [ 70] [ 3] [301] +22:04:55 ============================================================================ +22:04:55 + + +waiting on router queue for slot.... +22:04:55 Sending to : +22:04:55 ============================================================================ +22:04:55 ============================================================================ +22:04:55 Slot Id : <452> +22:04:55 Transaction Type : RESPONSE +22:04:55 Received From : +22:04:55 ============================================================================ +22:04:55 FNo. Len. Field Value +22:04:55 ============================================================================ +22:04:55 [ 1] [ 4] [0810] +22:04:55 [ 7] [ 10] [0320151242] +22:04:55 [ 11] [ 6] [017140] +22:04:55 [ 37] [ 12] [579220171400] +22:04:55 [ 39] [ 2] [00] +22:04:55 [ 70] [ 3] [810] +22:04:55 ============================================================================ +22:04:55 Calculate Source COMM Id = 1 +22:04:55 ============================================================================ +22:04:55 + + +waiting on router queue for slot.... +22:04:56 ============================================================================ +22:04:56 Slot Id : <439> +22:04:56 Transaction Type : REQUEST +22:04:56 Received From : +22:04:56 ============================================================================ +22:04:56 FNo. Len. Field Value +22:04:56 ============================================================================ +22:04:56 [ 1] [ 4] [0200] +22:04:56 [ 2] [ 16] [1808930200052074] +22:04:56 [ 3] [ 6] [011000] +22:04:56 [ 4] [ 12] [000100000000] +22:04:56 [ 7] [ 10] [0320220452] +22:04:56 [ 11] [ 6] [847889] +22:04:56 [ 12] [ 6] [220452] +22:04:56 [ 13] [ 4] [0320] +22:04:56 [ 15] [ 4] [0320] +22:04:56 [ 18] [ 4] [6011] +22:04:56 [ 22] [ 3] [900] +22:04:56 [ 25] [ 2] [02] +22:04:56 [ 28] [ 9] [D00002000] +22:04:56 [ 32] [ 6] [621354] +22:04:56 [ 35] [ 27] [1808930200052074=1803500047] +22:04:56 [ 37] [ 12] [507905252004] +22:04:56 [ 41] [ 8] [02002800] +22:04:56 [ 42] [ 15] [NATIVE ] +22:04:56 [ 43] [ 40] [Porkorsor Nongbok Dist Nongbok LAO] +22:04:56 [ 49] [ 3] [418] +22:04:56 [ 52] [ 16] [E8E3803D465DDDDE] +22:04:56 ============================================================================ +22:04:56 + + +waiting on router queue for slot.... +22:04:56 Sending to : +22:04:56 ============================================================================ +22:04:56 Sending to : +22:04:56 ============================================================================ +22:05:00 ============================================================================ +22:05:00 Slot Id : <459> +22:05:00 Transaction Type : REQUEST +22:05:00 Received From : +22:05:00 ============================================================================ +22:05:00 FNo. Len. Field Value +22:05:00 ============================================================================ +22:05:00 [ 1] [ 4] [0800] +22:05:00 [ 7] [ 10] [0320030409] +22:05:00 [ 11] [ 6] [158653] +22:05:00 [ 70] [ 3] [301] +22:05:00 ============================================================================ +22:05:00 + + +waiting on router queue for slot.... +22:05:00 Sending to : +22:05:00 ============================================================================ +22:05:00 ============================================================================ +22:05:00 Slot Id : <459> +22:05:00 Transaction Type : RESPONSE +22:05:00 Received From : +22:05:00 ============================================================================ +22:05:00 FNo. Len. Field Value +22:05:00 ============================================================================ +22:05:00 [ 1] [ 4] [0810] +22:05:00 [ 7] [ 10] [0320030409] +22:05:00 [ 11] [ 6] [158653] +22:05:00 [ 39] [ 2] [00] +22:05:00 [ 70] [ 3] [301] +22:05:00 ============================================================================ +22:05:00 Calculate Source COMM Id = 2 +22:05:00 ============================================================================ +22:05:00 + + +waiting on router queue for slot.... +22:05:01 ============================================================================ +22:05:01 Slot Id : <439> +22:05:01 Transaction Type : REQUEST +22:05:01 Received From : +22:05:01 ============================================================================ +22:05:01 FNo. Len. Field Value +22:05:01 ============================================================================ +22:05:01 [ 1] [ 4] [0200] +22:05:01 [ 2] [ 16] [1808930200052074] +22:05:01 [ 3] [ 6] [011000] +22:05:01 [ 4] [ 12] [000100000000] +22:05:01 [ 7] [ 10] [0320220452] +22:05:01 [ 11] [ 6] [847889] +22:05:01 [ 12] [ 6] [220452] +22:05:01 [ 13] [ 4] [0320] +22:05:01 [ 15] [ 4] [0320] +22:05:01 [ 18] [ 4] [6011] +22:05:01 [ 22] [ 3] [900] +22:05:01 [ 25] [ 2] [02] +22:05:01 [ 28] [ 9] [D00002000] +22:05:01 [ 32] [ 6] [621354] +22:05:01 [ 35] [ 27] [1808930200052074=1803500047] +22:05:01 [ 37] [ 12] [507905252004] +22:05:01 [ 41] [ 8] [02002800] +22:05:01 [ 42] [ 15] [NATIVE ] +22:05:01 [ 43] [ 40] [Porkorsor Nongbok Dist Nongbok LAO] +22:05:01 [ 49] [ 3] [418] +22:05:01 [ 52] [ 16] [E8E3803D465DDDDE] +22:05:01 ============================================================================ +22:05:01 + + +waiting on router queue for slot.... +22:05:01 Sending to : +22:05:01 ============================================================================ +22:05:01 ============================================================================ +22:05:01 Slot Id : <439> +22:05:01 Transaction Type : REQUEST +22:05:01 Received From : +22:05:01 ============================================================================ +22:05:01 FNo. Len. Field Value +22:05:01 ============================================================================ +22:05:01 [ 1] [ 4] [0200] +22:05:01 [ 2] [ 16] [1808930200052074] +22:05:01 [ 3] [ 6] [011000] +22:05:01 [ 4] [ 12] [000100000000] +22:05:01 [ 7] [ 10] [0320220452] +22:05:01 [ 11] [ 6] [847889] +22:05:01 [ 12] [ 6] [220452] +22:05:01 [ 13] [ 4] [0320] +22:05:01 [ 15] [ 4] [0320] +22:05:01 [ 18] [ 4] [6011] +22:05:01 [ 22] [ 3] [900] +22:05:01 [ 25] [ 2] [02] +22:05:01 [ 28] [ 9] [D00002000] +22:05:01 [ 32] [ 6] [621354] +22:05:01 [ 35] [ 27] [1808930200052074=1803500047] +22:05:01 [ 37] [ 12] [507905252004] +22:05:01 [ 41] [ 8] [02002800] +22:05:01 [ 42] [ 15] [NATIVE ] +22:05:01 [ 43] [ 40] [Porkorsor Nongbok Dist Nongbok LAO] +22:05:01 [ 49] [ 3] [418] +22:05:01 [ 52] [ 16] [1628A526CDD1C99C] +22:05:01 ============================================================================ +22:05:01 + + +waiting on router queue for slot.... +22:05:01 Sending to : <2> +22:05:01 ============================================================================ +22:05:06 ============================================================================ +22:05:06 Slot Id : <439> +22:05:06 Transaction Type : RESPONSE +22:05:06 Received From : +22:05:06 ============================================================================ +22:05:06 FNo. Len. Field Value +22:05:06 ============================================================================ +22:05:06 [ 1] [ 4] [0210] +22:05:06 [ 2] [ 16] [1808930200052074] +22:05:06 [ 3] [ 6] [011000] +22:05:06 [ 4] [ 12] [000100000000] +22:05:06 [ 6] [ 12] [000100000000] +22:05:06 [ 7] [ 10] [0320220452] +22:05:06 [ 11] [ 6] [847889] +22:05:06 [ 12] [ 6] [220452] +22:05:06 [ 13] [ 4] [0320] +22:05:06 [ 18] [ 4] [6011] +22:05:06 [ 19] [ 3] [418] +22:05:06 [ 22] [ 3] [021] +22:05:06 [ 32] [ 6] [621354] +22:05:06 [ 35] [ 27] [1808930200052074=1803500047] +22:05:06 [ 37] [ 12] [507905252004] +22:05:06 [ 38] [ 6] [847889] +22:05:06 [ 39] [ 2] [00] +22:05:06 [ 41] [ 8] [02002800] +22:05:06 [ 49] [ 3] [418] +22:05:06 [ 52] [ 16] [1628A526CDD1C99C] +22:05:06 [ 54] [ 20] [1001418C001109719000] +22:05:06 ============================================================================ +22:05:06 Sending to : +22:05:06 ============================================================================ +22:05:06 + + +waiting on router queue for slot.... +22:05:08 ============================================================================ +22:05:08 Slot Id : <439> +22:05:08 Transaction Type : RESPONSE +22:05:08 Received From : +22:05:08 ============================================================================ +22:05:08 FNo. Len. Field Value +22:05:08 ============================================================================ +22:05:08 [ 1] [ 4] [0210] +22:05:08 [ 2] [ 16] [1808930200052074] +22:05:08 [ 3] [ 6] [011000] +22:05:08 [ 4] [ 12] [000100000000] +22:05:08 [ 6] [ 12] [000100000000] +22:05:08 [ 7] [ 10] [0320220452] +22:05:08 [ 11] [ 6] [847889] +22:05:08 [ 12] [ 6] [220452] +22:05:08 [ 13] [ 4] [0320] +22:05:08 [ 18] [ 4] [6011] +22:05:08 [ 19] [ 3] [418] +22:05:08 [ 22] [ 3] [021] +22:05:08 [ 32] [ 6] [621354] +22:05:08 [ 35] [ 27] [1808930200052074=1803500047] +22:05:08 [ 37] [ 12] [507905252004] +22:05:08 [ 38] [ 6] [847889] +22:05:08 [ 39] [ 2] [00] +22:05:08 [ 41] [ 8] [02002800] +22:05:08 [ 49] [ 3] [418] +22:05:08 [ 52] [ 16] [1628A526CDD1C99C] +22:05:08 [ 54] [ 20] [1001418C001109719000] +22:05:08 ============================================================================ +22:05:08 Calculate Source COMM Id = 0 +22:05:08 ============================================================================ +22:05:08 + + +waiting on router queue for slot.... +22:05:09 ============================================================================ +22:05:09 Slot Id : <466> +22:05:09 Transaction Type : REQUEST +22:05:09 Received From : +22:05:09 ============================================================================ +22:05:09 FNo. Len. Field Value +22:05:09 ============================================================================ +22:05:09 [ 1] [ 4] [0800] +22:05:09 [ 7] [ 10] [0321051659] +22:05:09 [ 11] [ 6] [221659] +22:05:09 [ 37] [ 12] [57922221659] +22:05:09 [ 70] [ 3] [301] +22:05:09 ============================================================================ +22:05:09 + + +waiting on router queue for slot.... +22:05:09 Sending to : +22:05:09 ============================================================================ +22:05:09 ============================================================================ +22:05:09 Slot Id : <466> +22:05:09 Transaction Type : RESPONSE +22:05:09 Received From : +22:05:09 ============================================================================ +22:05:09 FNo. Len. Field Value +22:05:09 ============================================================================ +22:05:09 [ 1] [ 4] [0810] +22:05:09 [ 7] [ 10] [0321051659] +22:05:09 [ 11] [ 6] [221659] +22:05:09 [ 37] [ 12] [579222216590] +22:05:09 [ 39] [ 2] [00] +22:05:09 [ 70] [ 3] [810] +22:05:09 ============================================================================ +22:05:09 Calculate Source COMM Id = 6 +22:05:09 ============================================================================ +22:05:09 + + +waiting on router queue for slot.... +22:05:18 ============================================================================ +22:05:18 Slot Id : <455> +22:05:18 Transaction Type : REQUEST +22:05:18 Received From : +22:05:18 ============================================================================ +22:05:18 FNo. Len. Field Value +22:05:18 ============================================================================ +22:05:18 [ 1] [ 4] [0800] +22:05:18 [ 7] [ 10] [0320150514] +22:05:18 [ 11] [ 6] [067289] +22:05:18 [ 37] [ 12] [507922067289] +22:05:18 [ 70] [ 3] [001] +22:05:18 ============================================================================ +22:05:18 + + +waiting on router queue for slot.... +22:05:18 Sending to : +22:05:18 ============================================================================ +22:05:18 ============================================================================ +22:05:18 Slot Id : <455> +22:05:18 Transaction Type : RESPONSE +22:05:18 Received From : +22:05:18 ============================================================================ +22:05:18 FNo. Len. Field Value +22:05:18 ============================================================================ +22:05:18 [ 1] [ 4] [0810] +22:05:18 [ 7] [ 10] [0320150514] +22:05:18 [ 11] [ 6] [067289] +22:05:18 [ 37] [ 12] [507922067289] +22:05:18 [ 39] [ 2] [00] +22:05:18 [ 70] [ 3] [001] +22:05:18 ============================================================================ +22:05:18 Calculate Source COMM Id = 0 +22:05:18 ============================================================================ +22:05:18 + + +waiting on router queue for slot.... +22:05:18 ============================================================================ +22:05:18 Slot Id : <468> +22:05:18 Transaction Type : REQUEST +22:05:18 Received From : +22:05:18 ============================================================================ +22:05:18 FNo. Len. Field Value +22:05:18 ============================================================================ +22:05:18 [ 1] [ 4] [0800] +22:05:18 [ 7] [ 10] [0320030425] +22:05:18 [ 11] [ 6] [158654] +22:05:18 [ 70] [ 3] [301] +22:05:18 ============================================================================ +22:05:18 + + +waiting on router queue for slot.... +22:05:18 Sending to : +22:05:18 ============================================================================ +22:05:18 ============================================================================ +22:05:18 Slot Id : <468> +22:05:18 Transaction Type : RESPONSE +22:05:18 Received From : +22:05:18 ============================================================================ +22:05:18 FNo. Len. Field Value +22:05:18 ============================================================================ +22:05:18 [ 1] [ 4] [0810] +22:05:18 [ 7] [ 10] [0320030425] +22:05:18 [ 11] [ 6] [158654] +22:05:18 [ 39] [ 2] [00] +22:05:18 [ 70] [ 3] [301] +22:05:18 ============================================================================ +22:05:18 Calculate Source COMM Id = 2 +22:05:18 ============================================================================ +22:05:18 + + +waiting on router queue for slot.... +22:05:24 ============================================================================ +22:05:24 Slot Id : <475> +22:05:24 Transaction Type : REQUEST +22:05:24 Received From : +22:05:24 ============================================================================ +22:05:24 FNo. Len. Field Value +22:05:24 ============================================================================ +22:05:24 [ 1] [ 4] [0800] +22:05:24 [ 2] [ 5] [02531] +22:05:24 [ 3] [ 6] [579228] +22:05:24 [ 7] [ 10] [0320150524] +22:05:24 [ 11] [ 6] [807694] +22:05:24 [ 15] [ 10] [0320150524] +22:05:24 [ 37] [ 11] [57922807694] +22:05:24 [ 70] [ 3] [001] +22:05:24 ============================================================================ +22:05:24 + + +waiting on router queue for slot.... +22:05:24 ============================================================================ +22:05:24 Slot Id : <475> +22:05:24 Transaction Type : RESPONSE +22:05:24 Received From : +22:05:24 ============================================================================ +22:05:24 FNo. Len. Field Value +22:05:24 ============================================================================ +22:05:24 [ 1] [ 4] [0810] +22:05:24 [ 7] [ 10] [0320150524] +22:05:24 [ 11] [ 6] [807694] +22:05:24 [ 15] [ 4] [0320] +22:05:24 [ 37] [ 12] [57922807694] +22:05:24 [ 39] [ 2] [00] +22:05:24 [ 70] [ 3] [001] +22:05:24 ============================================================================ +22:05:24 Sending to : +22:05:24 ============================================================================ +22:05:24 + + +waiting on router queue for slot.... +22:05:33 ============================================================================ +22:05:33 Slot Id : <460> +22:05:33 Transaction Type : REQUEST +22:05:33 Received From : +22:05:33 ============================================================================ +22:05:33 FNo. Len. Field Value +22:05:33 ============================================================================ +22:05:33 [ 1] [ 4] [0800] +22:05:33 [ 7] [ 10] [0320030441] +22:05:33 [ 11] [ 6] [158655] +22:05:33 [ 70] [ 3] [301] +22:05:33 ============================================================================ +22:05:33 + + +waiting on router queue for slot.... +22:05:33 Sending to : +22:05:33 ============================================================================ +22:05:33 ============================================================================ +22:05:33 Slot Id : <460> +22:05:33 Transaction Type : RESPONSE +22:05:33 Received From : +22:05:33 ============================================================================ +22:05:33 FNo. Len. Field Value +22:05:33 ============================================================================ +22:05:33 [ 1] [ 4] [0810] +22:05:33 [ 7] [ 10] [0320030441] +22:05:33 [ 11] [ 6] [158655] +22:05:33 [ 39] [ 2] [00] +22:05:33 [ 70] [ 3] [301] +22:05:33 ============================================================================ +22:05:33 Calculate Source COMM Id = 2 +22:05:33 ============================================================================ +22:05:33 + + +waiting on router queue for slot.... +22:05:44 ============================================================================ +22:05:44 Slot Id : <495> +22:05:44 Transaction Type : REQUEST +22:05:44 Received From : +22:05:44 ============================================================================ +22:05:44 FNo. Len. Field Value +22:05:44 ============================================================================ +22:05:44 [ 1] [ 4] [0800] +22:05:44 [ 7] [ 10] [0320030452] +22:05:44 [ 11] [ 6] [158656] +22:05:44 [ 70] [ 3] [301] +22:05:44 ============================================================================ +22:05:44 + + +waiting on router queue for slot.... +22:05:44 Sending to : +22:05:44 ============================================================================ +22:05:44 ============================================================================ +22:05:44 Slot Id : <495> +22:05:44 Transaction Type : RESPONSE +22:05:44 Received From : +22:05:44 ============================================================================ +22:05:44 FNo. Len. Field Value +22:05:44 ============================================================================ +22:05:44 [ 1] [ 4] [0810] +22:05:44 [ 7] [ 10] [0320030452] +22:05:44 [ 11] [ 6] [158656] +22:05:44 [ 39] [ 2] [00] +22:05:44 [ 70] [ 3] [301] +22:05:44 ============================================================================ +22:05:44 Calculate Source COMM Id = 2 +22:05:44 ============================================================================ +22:05:44 + + +waiting on router queue for slot.... +22:06:00 ============================================================================ +22:06:00 Slot Id : <449> +22:06:00 Transaction Type : REQUEST +22:06:00 Received From : +22:06:00 ============================================================================ +22:06:00 FNo. Len. Field Value +22:06:00 ============================================================================ +22:06:00 [ 1] [ 4] [0800] +22:06:00 [ 7] [ 10] [0320030509] +22:06:00 [ 11] [ 6] [158657] +22:06:00 [ 70] [ 3] [301] +22:06:00 ============================================================================ +22:06:00 + + +waiting on router queue for slot.... +22:06:00 Sending to : +22:06:00 ============================================================================ +22:06:00 ============================================================================ +22:06:00 Slot Id : <449> +22:06:00 Transaction Type : RESPONSE +22:06:00 Received From : +22:06:00 ============================================================================ +22:06:00 FNo. Len. Field Value +22:06:00 ============================================================================ +22:06:00 [ 1] [ 4] [0810] +22:06:00 [ 7] [ 10] [0320030509] +22:06:00 [ 11] [ 6] [158657] +22:06:00 [ 39] [ 2] [00] +22:06:00 [ 70] [ 3] [301] +22:06:00 ============================================================================ +22:06:00 Calculate Source COMM Id = 2 +22:06:00 ============================================================================ +22:06:00 + + +waiting on router queue for slot.... +22:06:11 ============================================================================ +22:06:11 Slot Id : <440> +22:06:11 Transaction Type : REQUEST +22:06:11 Received From : +22:06:11 ============================================================================ +22:06:11 FNo. Len. Field Value +22:06:11 ============================================================================ +22:06:11 [ 1] [ 4] [0800] +22:06:11 [ 7] [ 10] [0320030520] +22:06:11 [ 11] [ 6] [158658] +22:06:11 [ 70] [ 3] [301] +22:06:11 ============================================================================ +22:06:11 + + +waiting on router queue for slot.... +22:06:11 Sending to : +22:06:11 ============================================================================ +22:06:11 ============================================================================ +22:06:11 Slot Id : <440> +22:06:11 Transaction Type : RESPONSE +22:06:11 Received From : +22:06:11 ============================================================================ +22:06:11 FNo. Len. Field Value +22:06:11 ============================================================================ +22:06:11 [ 1] [ 4] [0810] +22:06:11 [ 7] [ 10] [0320030520] +22:06:11 [ 11] [ 6] [158658] +22:06:11 [ 39] [ 2] [00] +22:06:11 [ 70] [ 3] [301] +22:06:11 ============================================================================ +22:06:11 Calculate Source COMM Id = 2 +22:06:11 ============================================================================ +22:06:11 + + +waiting on router queue for slot.... +22:06:14 ============================================================================ +22:06:14 Slot Id : <482> +22:06:14 Transaction Type : REQUEST +22:06:14 Received From : +22:06:14 ============================================================================ +22:06:14 FNo. Len. Field Value +22:06:14 ============================================================================ +22:06:14 [ 1] [ 4] [0800] +22:06:14 [ 7] [ 10] [0321051804] +22:06:14 [ 11] [ 6] [221804] +22:06:14 [ 37] [ 12] [57922221804] +22:06:14 [ 70] [ 3] [301] +22:06:14 ============================================================================ +22:06:14 + + +waiting on router queue for slot.... +22:06:14 Sending to : +22:06:14 ============================================================================ +22:06:14 ============================================================================ +22:06:14 Slot Id : <482> +22:06:14 Transaction Type : RESPONSE +22:06:14 Received From : +22:06:14 ============================================================================ +22:06:14 FNo. Len. Field Value +22:06:14 ============================================================================ +22:06:14 [ 1] [ 4] [0810] +22:06:14 [ 7] [ 10] [0321051804] +22:06:14 [ 11] [ 6] [221804] +22:06:14 [ 37] [ 12] [579222218040] +22:06:14 [ 39] [ 2] [00] +22:06:14 [ 70] [ 3] [810] +22:06:14 ============================================================================ +22:06:14 Calculate Source COMM Id = 6 +22:06:14 ============================================================================ +22:06:14 + + +waiting on router queue for slot.... +22:06:21 ============================================================================ +22:06:21 Slot Id : <432> +22:06:21 Transaction Type : REQUEST +22:06:21 Received From : +22:06:21 ============================================================================ +22:06:21 FNo. Len. Field Value +22:06:21 ============================================================================ +22:06:21 [ 1] [ 4] [0800] +22:06:21 [ 7] [ 10] [0320150412] +22:06:21 [ 11] [ 6] [049812] +22:06:21 [ 37] [ 12] [57922049812] +22:06:21 [ 70] [ 3] [301] +22:06:21 ============================================================================ +22:06:21 + + +waiting on router queue for slot.... +22:06:21 Sending to : +22:06:21 ============================================================================ +22:06:21 ============================================================================ +22:06:21 Slot Id : <432> +22:06:21 Transaction Type : RESPONSE +22:06:21 Received From : +22:06:21 ============================================================================ +22:06:21 FNo. Len. Field Value +22:06:21 ============================================================================ +22:06:21 [ 1] [ 4] [0810] +22:06:21 [ 7] [ 10] [0320150412] +22:06:21 [ 11] [ 6] [049812] +22:06:21 [ 37] [ 12] [579220498120] +22:06:21 [ 39] [ 2] [00] +22:06:21 [ 70] [ 3] [810] +22:06:21 ============================================================================ +22:06:21 Calculate Source COMM Id = 4 +22:06:21 ============================================================================ +22:06:21 + + +waiting on router queue for slot.... +22:06:22 ============================================================================ +22:06:22 Slot Id : <453> +22:06:22 Transaction Type : REQUEST +22:06:22 Received From : +22:06:22 ============================================================================ +22:06:22 FNo. Len. Field Value +22:06:22 ============================================================================ +22:06:22 [ 1] [ 4] [0800] +22:06:22 [ 7] [ 10] [0320030530] +22:06:22 [ 11] [ 6] [158659] +22:06:22 [ 70] [ 3] [301] +22:06:22 ============================================================================ +22:06:22 + + +waiting on router queue for slot.... +22:06:22 Sending to : +22:06:22 ============================================================================ +22:06:22 ============================================================================ +22:06:22 Slot Id : <453> +22:06:22 Transaction Type : RESPONSE +22:06:22 Received From : +22:06:22 ============================================================================ +22:06:22 FNo. Len. Field Value +22:06:22 ============================================================================ +22:06:22 [ 1] [ 4] [0810] +22:06:22 [ 7] [ 10] [0320030530] +22:06:22 [ 11] [ 6] [158659] +22:06:22 [ 39] [ 2] [00] +22:06:22 [ 70] [ 3] [301] +22:06:22 ============================================================================ +22:06:22 Calculate Source COMM Id = 2 +22:06:22 ============================================================================ +22:06:22 + + +waiting on router queue for slot.... +22:06:26 ============================================================================ +22:06:26 Slot Id : <484> +22:06:26 Transaction Type : REQUEST +22:06:26 Received From : +22:06:26 ============================================================================ +22:06:26 FNo. Len. Field Value +22:06:26 ============================================================================ +22:06:26 [ 1] [ 4] [0800] +22:06:26 [ 2] [ 5] [02531] +22:06:26 [ 3] [ 6] [579228] +22:06:26 [ 7] [ 10] [0320150626] +22:06:26 [ 11] [ 6] [807695] +22:06:26 [ 15] [ 10] [0320150626] +22:06:26 [ 37] [ 11] [57922807695] +22:06:26 [ 70] [ 3] [001] +22:06:26 ============================================================================ +22:06:26 + + +waiting on router queue for slot.... +22:06:26 ============================================================================ +22:06:26 Slot Id : <484> +22:06:26 Transaction Type : RESPONSE +22:06:26 Received From : +22:06:26 ============================================================================ +22:06:26 FNo. Len. Field Value +22:06:26 ============================================================================ +22:06:26 [ 1] [ 4] [0810] +22:06:26 [ 7] [ 10] [0320150626] +22:06:26 [ 11] [ 6] [807695] +22:06:26 [ 15] [ 4] [0320] +22:06:26 [ 37] [ 12] [57922807695] +22:06:26 [ 39] [ 2] [00] +22:06:26 [ 70] [ 3] [001] +22:06:26 ============================================================================ +22:06:26 Sending to : +22:06:26 ============================================================================ +22:06:26 + + +waiting on router queue for slot.... +22:06:38 ============================================================================ +22:06:38 Slot Id : <488> +22:06:38 Transaction Type : REQUEST +22:06:38 Received From : +22:06:38 ============================================================================ +22:06:38 FNo. Len. Field Value +22:06:38 ============================================================================ +22:06:38 [ 1] [ 4] [0800] +22:06:38 [ 7] [ 10] [0320030546] +22:06:38 [ 11] [ 6] [158660] +22:06:38 [ 70] [ 3] [301] +22:06:38 ============================================================================ +22:06:38 + + +waiting on router queue for slot.... +22:06:38 Sending to : +22:06:38 ============================================================================ +22:06:38 ============================================================================ +22:06:38 Slot Id : <488> +22:06:38 Transaction Type : RESPONSE +22:06:38 Received From : +22:06:38 ============================================================================ +22:06:38 FNo. Len. Field Value +22:06:38 ============================================================================ +22:06:38 [ 1] [ 4] [0810] +22:06:38 [ 7] [ 10] [0320030546] +22:06:38 [ 11] [ 6] [158660] +22:06:38 [ 39] [ 2] [00] +22:06:38 [ 70] [ 3] [301] +22:06:38 ============================================================================ +22:06:38 Calculate Source COMM Id = 2 +22:06:38 ============================================================================ +22:06:38 + + +waiting on router queue for slot.... +22:06:49 ============================================================================ +22:06:49 Slot Id : <480> +22:06:49 Transaction Type : REQUEST +22:06:49 Received From : +22:06:49 ============================================================================ +22:06:49 FNo. Len. Field Value +22:06:49 ============================================================================ +22:06:49 [ 1] [ 4] [0800] +22:06:49 [ 7] [ 10] [0320030557] +22:06:49 [ 11] [ 6] [158661] +22:06:49 [ 70] [ 3] [301] +22:06:49 ============================================================================ +22:06:49 + + +waiting on router queue for slot.... +22:06:49 Sending to : +22:06:49 ============================================================================ +22:06:49 ============================================================================ +22:06:49 Slot Id : <480> +22:06:49 Transaction Type : RESPONSE +22:06:49 Received From : +22:06:49 ============================================================================ +22:06:49 FNo. Len. Field Value +22:06:49 ============================================================================ +22:06:49 [ 1] [ 4] [0810] +22:06:49 [ 7] [ 10] [0320030557] +22:06:49 [ 11] [ 6] [158661] +22:06:49 [ 39] [ 2] [00] +22:06:49 [ 70] [ 3] [301] +22:06:49 ============================================================================ +22:06:49 Calculate Source COMM Id = 2 +22:06:49 ============================================================================ +22:06:49 + + +waiting on router queue for slot.... +22:06:59 ============================================================================ +22:06:59 Slot Id : <470> +22:06:59 Transaction Type : REQUEST +22:06:59 Received From : +22:06:59 ============================================================================ +22:06:59 FNo. Len. Field Value +22:06:59 ============================================================================ +22:06:59 [ 1] [ 4] [0800] +22:06:59 [ 7] [ 10] [0320030608] +22:06:59 [ 11] [ 6] [158662] +22:06:59 [ 70] [ 3] [301] +22:06:59 ============================================================================ +22:06:59 + + +waiting on router queue for slot.... +22:06:59 Sending to : +22:06:59 ============================================================================ +22:06:59 ============================================================================ +22:06:59 Slot Id : <470> +22:06:59 Transaction Type : RESPONSE +22:06:59 Received From : +22:06:59 ============================================================================ +22:06:59 FNo. Len. Field Value +22:06:59 ============================================================================ +22:06:59 [ 1] [ 4] [0810] +22:06:59 [ 7] [ 10] [0320030608] +22:06:59 [ 11] [ 6] [158662] +22:06:59 [ 39] [ 2] [00] +22:06:59 [ 70] [ 3] [301] +22:06:59 ============================================================================ +22:06:59 Calculate Source COMM Id = 2 +22:06:59 ============================================================================ +22:06:59 + + +waiting on router queue for slot.... +22:07:10 ============================================================================ +22:07:10 Slot Id : <471> +22:07:10 Transaction Type : REQUEST +22:07:10 Received From : +22:07:10 ============================================================================ +22:07:10 FNo. Len. Field Value +22:07:10 ============================================================================ +22:07:10 [ 1] [ 4] [0800] +22:07:10 [ 7] [ 10] [0320030619] +22:07:10 [ 11] [ 6] [158663] +22:07:10 [ 70] [ 3] [301] +22:07:10 ============================================================================ +22:07:10 + + +waiting on router queue for slot.... +22:07:10 Sending to : +22:07:10 ============================================================================ +22:07:10 ============================================================================ +22:07:10 Slot Id : <471> +22:07:10 Transaction Type : RESPONSE +22:07:10 Received From : +22:07:10 ============================================================================ +22:07:10 FNo. Len. Field Value +22:07:10 ============================================================================ +22:07:10 [ 1] [ 4] [0810] +22:07:10 [ 7] [ 10] [0320030619] +22:07:10 [ 11] [ 6] [158663] +22:07:10 [ 39] [ 2] [00] +22:07:10 [ 70] [ 3] [301] +22:07:10 ============================================================================ +22:07:10 Calculate Source COMM Id = 2 +22:07:10 ============================================================================ +22:07:10 + + +waiting on router queue for slot.... +22:07:19 ============================================================================ +22:07:19 Slot Id : <490> +22:07:19 Transaction Type : REQUEST +22:07:19 Received From : +22:07:19 ============================================================================ +22:07:19 FNo. Len. Field Value +22:07:19 ============================================================================ +22:07:19 [ 1] [ 4] [0800] +22:07:19 [ 7] [ 10] [0321051909] +22:07:19 [ 11] [ 6] [221909] +22:07:19 [ 37] [ 12] [57922221909] +22:07:19 [ 70] [ 3] [301] +22:07:19 ============================================================================ +22:07:19 + + +waiting on router queue for slot.... +22:07:19 Sending to : +22:07:19 ============================================================================ +22:07:19 ============================================================================ +22:07:19 Slot Id : <490> +22:07:19 Transaction Type : RESPONSE +22:07:19 Received From : +22:07:19 ============================================================================ +22:07:19 FNo. Len. Field Value +22:07:19 ============================================================================ +22:07:19 [ 1] [ 4] [0810] +22:07:19 [ 7] [ 10] [0321051909] +22:07:19 [ 11] [ 6] [221909] +22:07:19 [ 37] [ 12] [579222219090] +22:07:19 [ 39] [ 2] [00] +22:07:19 [ 70] [ 3] [810] +22:07:19 ============================================================================ +22:07:19 Calculate Source COMM Id = 6 +22:07:19 ============================================================================ +22:07:19 + + +waiting on router queue for slot.... +22:07:21 ============================================================================ +22:07:21 Slot Id : <448> +22:07:21 Transaction Type : REQUEST +22:07:21 Received From : +22:07:21 ============================================================================ +22:07:21 FNo. Len. Field Value +22:07:21 ============================================================================ +22:07:21 [ 1] [ 4] [0800] +22:07:21 [ 7] [ 10] [0320030630] +22:07:21 [ 11] [ 6] [158664] +22:07:21 [ 70] [ 3] [301] +22:07:21 ============================================================================ +22:07:21 + + +waiting on router queue for slot.... +22:07:21 Sending to : +22:07:21 ============================================================================ +22:07:21 ============================================================================ +22:07:21 Slot Id : <448> +22:07:21 Transaction Type : RESPONSE +22:07:21 Received From : +22:07:21 ============================================================================ +22:07:21 FNo. Len. Field Value +22:07:21 ============================================================================ +22:07:21 [ 1] [ 4] [0810] +22:07:21 [ 7] [ 10] [0320030630] +22:07:21 [ 11] [ 6] [158664] +22:07:21 [ 39] [ 2] [00] +22:07:21 [ 70] [ 3] [301] +22:07:21 ============================================================================ +22:07:21 Calculate Source COMM Id = 2 +22:07:21 ============================================================================ +22:07:21 + + +waiting on router queue for slot.... +22:07:28 ============================================================================ +22:07:28 Slot Id : <463> +22:07:28 Transaction Type : REQUEST +22:07:28 Received From : +22:07:28 ============================================================================ +22:07:28 FNo. Len. Field Value +22:07:28 ============================================================================ +22:07:28 [ 1] [ 4] [0800] +22:07:28 [ 2] [ 5] [02531] +22:07:28 [ 3] [ 6] [579228] +22:07:28 [ 7] [ 10] [0320150728] +22:07:28 [ 11] [ 6] [807696] +22:07:28 [ 15] [ 10] [0320150728] +22:07:28 [ 37] [ 11] [57922807696] +22:07:28 [ 70] [ 3] [001] +22:07:28 ============================================================================ +22:07:28 + + +waiting on router queue for slot.... +22:07:28 ============================================================================ +22:07:28 Slot Id : <463> +22:07:28 Transaction Type : RESPONSE +22:07:28 Received From : +22:07:28 ============================================================================ +22:07:28 FNo. Len. Field Value +22:07:28 ============================================================================ +22:07:28 [ 1] [ 4] [0810] +22:07:28 [ 7] [ 10] [0320150728] +22:07:28 [ 11] [ 6] [807696] +22:07:28 [ 15] [ 4] [0320] +22:07:28 [ 37] [ 12] [57922807696] +22:07:28 [ 39] [ 2] [00] +22:07:28 [ 70] [ 3] [001] +22:07:28 ============================================================================ +22:07:28 Sending to : +22:07:28 ============================================================================ +22:07:28 + + +waiting on router queue for slot.... +22:07:37 ============================================================================ +22:07:37 Slot Id : <0> +22:07:37 Transaction Type : REQUEST +22:07:37 Received From : +22:07:37 ============================================================================ +22:07:37 FNo. Len. Field Value +22:07:37 ============================================================================ +22:07:37 [ 1] [ 4] [0800] +22:07:37 [ 7] [ 10] [0320030645] +22:07:37 [ 11] [ 6] [158665] +22:07:37 [ 70] [ 3] [301] +22:07:37 ============================================================================ +22:07:37 + + +waiting on router queue for slot.... +22:07:37 Sending to : +22:07:37 ============================================================================ +22:07:37 ============================================================================ +22:07:37 Slot Id : <0> +22:07:37 Transaction Type : RESPONSE +22:07:37 Received From : +22:07:37 ============================================================================ +22:07:37 FNo. Len. Field Value +22:07:37 ============================================================================ +22:07:37 [ 1] [ 4] [0810] +22:07:37 [ 7] [ 10] [0320030645] +22:07:37 [ 11] [ 6] [158665] +22:07:37 [ 39] [ 2] [00] +22:07:37 [ 70] [ 3] [301] +22:07:37 ============================================================================ +22:07:37 Calculate Source COMM Id = 2 +22:07:37 ============================================================================ +22:07:37 + + +waiting on router queue for slot.... +22:07:52 ============================================================================ +22:07:52 Slot Id : <479> +22:07:52 Transaction Type : REQUEST +22:07:52 Received From : +22:07:52 ============================================================================ +22:07:52 FNo. Len. Field Value +22:07:52 ============================================================================ +22:07:52 [ 1] [ 4] [0800] +22:07:52 [ 7] [ 10] [0320030700] +22:07:52 [ 11] [ 6] [158666] +22:07:52 [ 70] [ 3] [301] +22:07:52 ============================================================================ +22:07:52 + + +waiting on router queue for slot.... +22:07:52 Sending to : +22:07:52 ============================================================================ +22:07:52 ============================================================================ +22:07:52 Slot Id : <479> +22:07:52 Transaction Type : RESPONSE +22:07:52 Received From : +22:07:52 ============================================================================ +22:07:52 FNo. Len. Field Value +22:07:52 ============================================================================ +22:07:52 [ 1] [ 4] [0810] +22:07:52 [ 7] [ 10] [0320030700] +22:07:52 [ 11] [ 6] [158666] +22:07:52 [ 39] [ 2] [00] +22:07:52 [ 70] [ 3] [301] +22:07:52 ============================================================================ +22:07:52 Calculate Source COMM Id = 2 +22:07:52 ============================================================================ +22:07:52 + + +waiting on router queue for slot.... +22:08:04 ============================================================================ +22:08:04 Slot Id : <2> +22:08:04 Transaction Type : REQUEST +22:08:04 Received From : +22:08:04 ============================================================================ +22:08:04 FNo. Len. Field Value +22:08:04 ============================================================================ +22:08:04 [ 1] [ 4] [0420] +22:08:04 [ 2] [ 16] [6688990103042907] +22:08:04 [ 3] [ 6] [013000] +22:08:04 [ 4] [ 12] [000020000000] +22:08:04 [ 7] [ 10] [0320190256] +22:08:04 [ 11] [ 6] [833276] +22:08:04 [ 12] [ 6] [190256] +22:08:04 [ 13] [ 4] [0320] +22:08:04 [ 15] [ 4] [0320] +22:08:04 [ 18] [ 4] [6011] +22:08:04 [ 22] [ 3] [900] +22:08:04 [ 25] [ 2] [02] +22:08:04 [ 28] [ 9] [C00002000] +22:08:04 [ 32] [ 6] [621354] +22:08:04 [ 35] [ 37] [6688990103042907=42111231290725900000] +22:08:04 [ 37] [ 12] [507905382554] +22:08:04 [ 39] [ 2] [00] +22:08:04 [ 41] [ 8] [12003400] +22:08:04 [ 42] [ 15] [NATIVE ] +22:08:04 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +22:08:04 [ 49] [ 3] [418] +22:08:04 [ 90] [ 42] [020083327603201902560000062135400000000000] +22:08:04 ============================================================================ +22:08:04 + + +waiting on router queue for slot.... +22:08:04 Sending to : +22:08:04 ============================================================================ +22:08:07 ============================================================================ +22:08:07 Slot Id : <4> +22:08:07 Transaction Type : REQUEST +22:08:07 Received From : +22:08:07 ============================================================================ +22:08:07 FNo. Len. Field Value +22:08:07 ============================================================================ +22:08:07 [ 1] [ 4] [0800] +22:08:07 [ 7] [ 10] [0320030716] +22:08:07 [ 11] [ 6] [158667] +22:08:07 [ 70] [ 3] [301] +22:08:07 ============================================================================ +22:08:07 + + +waiting on router queue for slot.... +22:08:07 Sending to : +22:08:07 ============================================================================ +22:08:07 ============================================================================ +22:08:07 Slot Id : <4> +22:08:07 Transaction Type : RESPONSE +22:08:07 Received From : +22:08:07 ============================================================================ +22:08:07 FNo. Len. Field Value +22:08:07 ============================================================================ +22:08:07 [ 1] [ 4] [0810] +22:08:07 [ 7] [ 10] [0320030716] +22:08:07 [ 11] [ 6] [158667] +22:08:07 [ 39] [ 2] [00] +22:08:07 [ 70] [ 3] [301] +22:08:07 ============================================================================ +22:08:07 Calculate Source COMM Id = 2 +22:08:07 ============================================================================ +22:08:07 + + +waiting on router queue for slot.... +22:08:08 ============================================================================ +22:08:08 Slot Id : <2> +22:08:08 Transaction Type : RESPONSE +22:08:08 Received From : +22:08:08 ============================================================================ +22:08:08 FNo. Len. Field Value +22:08:08 ============================================================================ +22:08:08 [ 1] [ 4] [0430] +22:08:08 [ 2] [ 16] [6688990103042907] +22:08:08 [ 3] [ 6] [013000] +22:08:08 [ 4] [ 12] [000020000000] +22:08:08 [ 7] [ 10] [0320190256] +22:08:08 [ 11] [ 6] [833276] +22:08:08 [ 12] [ 6] [190256] +22:08:08 [ 13] [ 4] [0320] +22:08:08 [ 15] [ 4] [0320] +22:08:08 [ 18] [ 4] [6011] +22:08:08 [ 22] [ 3] [900] +22:08:08 [ 25] [ 2] [02] +22:08:08 [ 28] [ 9] [C00002000] +22:08:08 [ 32] [ 6] [621354] +22:08:08 [ 35] [ 37] [6688990103042907=42111231290725900000] +22:08:08 [ 37] [ 12] [507905382554] +22:08:08 [ 39] [ 2] [00] +22:08:08 [ 41] [ 8] [12003400] +22:08:08 [ 42] [ 15] [NATIVE ] +22:08:08 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +22:08:08 [ 49] [ 3] [418] +22:08:08 [ 90] [ 42] [020083327603201902560000062135400000000000] +22:08:08 ============================================================================ +22:08:08 Calculate Source COMM Id = 0 +22:08:08 ============================================================================ +22:08:08 + + +waiting on router queue for slot.... +22:08:18 ============================================================================ +22:08:18 Slot Id : <493> +22:08:18 Transaction Type : REQUEST +22:08:18 Received From : +22:08:18 ============================================================================ +22:08:18 FNo. Len. Field Value +22:08:18 ============================================================================ +22:08:18 [ 1] [ 4] [0800] +22:08:18 [ 7] [ 10] [0320030726] +22:08:18 [ 11] [ 6] [158668] +22:08:18 [ 70] [ 3] [301] +22:08:18 ============================================================================ +22:08:18 + + +waiting on router queue for slot.... +22:08:18 Sending to : +22:08:18 ============================================================================ +22:08:18 ============================================================================ +22:08:18 Slot Id : <493> +22:08:18 Transaction Type : RESPONSE +22:08:18 Received From : +22:08:18 ============================================================================ +22:08:18 FNo. Len. Field Value +22:08:18 ============================================================================ +22:08:18 [ 1] [ 4] [0810] +22:08:18 [ 7] [ 10] [0320030726] +22:08:18 [ 11] [ 6] [158668] +22:08:18 [ 39] [ 2] [00] +22:08:18 [ 70] [ 3] [301] +22:08:18 ============================================================================ +22:08:18 Calculate Source COMM Id = 2 +22:08:18 ============================================================================ +22:08:18 + + +waiting on router queue for slot.... +22:08:24 ============================================================================ +22:08:24 Slot Id : <498> +22:08:24 Transaction Type : REQUEST +22:08:24 Received From : +22:08:24 ============================================================================ +22:08:24 FNo. Len. Field Value +22:08:24 ============================================================================ +22:08:24 [ 1] [ 4] [0800] +22:08:24 [ 7] [ 10] [0321052014] +22:08:24 [ 11] [ 6] [222014] +22:08:24 [ 37] [ 12] [57922222014] +22:08:24 [ 70] [ 3] [301] +22:08:24 ============================================================================ +22:08:24 + + +waiting on router queue for slot.... +22:08:24 Sending to : +22:08:24 ============================================================================ +22:08:24 ============================================================================ +22:08:24 Slot Id : <498> +22:08:24 Transaction Type : RESPONSE +22:08:24 Received From : +22:08:24 ============================================================================ +22:08:24 FNo. Len. Field Value +22:08:24 ============================================================================ +22:08:24 [ 1] [ 4] [0810] +22:08:24 [ 7] [ 10] [0321052014] +22:08:24 [ 11] [ 6] [222014] +22:08:24 [ 37] [ 12] [579222220140] +22:08:24 [ 39] [ 2] [00] +22:08:24 [ 70] [ 3] [810] +22:08:24 ============================================================================ +22:08:24 Calculate Source COMM Id = 6 +22:08:24 ============================================================================ +22:08:24 + + +waiting on router queue for slot.... +22:08:28 ============================================================================ +22:08:28 Slot Id : <489> +22:08:28 Transaction Type : REQUEST +22:08:28 Received From : +22:08:28 ============================================================================ +22:08:28 FNo. Len. Field Value +22:08:28 ============================================================================ +22:08:28 [ 1] [ 4] [0800] +22:08:28 [ 7] [ 10] [0320030737] +22:08:28 [ 11] [ 6] [158669] +22:08:28 [ 70] [ 3] [301] +22:08:28 ============================================================================ +22:08:28 + + +waiting on router queue for slot.... +22:08:28 Sending to : +22:08:28 ============================================================================ +22:08:29 ============================================================================ +22:08:29 Slot Id : <489> +22:08:29 Transaction Type : RESPONSE +22:08:29 Received From : +22:08:29 ============================================================================ +22:08:29 FNo. Len. Field Value +22:08:29 ============================================================================ +22:08:29 [ 1] [ 4] [0810] +22:08:29 [ 7] [ 10] [0320030737] +22:08:29 [ 11] [ 6] [158669] +22:08:29 [ 39] [ 2] [00] +22:08:29 [ 70] [ 3] [301] +22:08:29 ============================================================================ +22:08:29 Calculate Source COMM Id = 2 +22:08:29 ============================================================================ +22:08:29 + + +waiting on router queue for slot.... +22:08:30 ============================================================================ +22:08:30 Slot Id : <473> +22:08:30 Transaction Type : REQUEST +22:08:30 Received From : +22:08:30 ============================================================================ +22:08:30 FNo. Len. Field Value +22:08:30 ============================================================================ +22:08:30 [ 1] [ 4] [0800] +22:08:30 [ 2] [ 5] [02531] +22:08:30 [ 3] [ 6] [579228] +22:08:30 [ 7] [ 10] [0320150830] +22:08:30 [ 11] [ 6] [807697] +22:08:30 [ 15] [ 10] [0320150830] +22:08:30 [ 37] [ 11] [57922807697] +22:08:30 [ 70] [ 3] [001] +22:08:30 ============================================================================ +22:08:30 + + +waiting on router queue for slot.... +22:08:30 ============================================================================ +22:08:30 Slot Id : <473> +22:08:30 Transaction Type : RESPONSE +22:08:30 Received From : +22:08:30 ============================================================================ +22:08:30 FNo. Len. Field Value +22:08:30 ============================================================================ +22:08:30 [ 1] [ 4] [0810] +22:08:30 [ 7] [ 10] [0320150830] +22:08:30 [ 11] [ 6] [807697] +22:08:30 [ 15] [ 4] [0320] +22:08:30 [ 37] [ 12] [57922807697] +22:08:30 [ 39] [ 2] [00] +22:08:30 [ 70] [ 3] [001] +22:08:30 ============================================================================ +22:08:30 Sending to : +22:08:30 ============================================================================ +22:08:30 + + +waiting on router queue for slot.... +22:08:39 ============================================================================ +22:08:39 Slot Id : <1> +22:08:39 Transaction Type : REQUEST +22:08:39 Received From : +22:08:39 ============================================================================ +22:08:39 FNo. Len. Field Value +22:08:39 ============================================================================ +22:08:39 [ 1] [ 4] [0800] +22:08:39 [ 7] [ 10] [0320030747] +22:08:39 [ 11] [ 6] [158670] +22:08:39 [ 70] [ 3] [301] +22:08:39 ============================================================================ +22:08:39 + + +waiting on router queue for slot.... +22:08:39 Sending to : +22:08:39 ============================================================================ +22:08:39 ============================================================================ +22:08:39 Slot Id : <1> +22:08:39 Transaction Type : RESPONSE +22:08:39 Received From : +22:08:39 ============================================================================ +22:08:39 FNo. Len. Field Value +22:08:39 ============================================================================ +22:08:39 [ 1] [ 4] [0810] +22:08:39 [ 7] [ 10] [0320030747] +22:08:39 [ 11] [ 6] [158670] +22:08:39 [ 39] [ 2] [00] +22:08:39 [ 70] [ 3] [301] +22:08:39 ============================================================================ +22:08:39 Calculate Source COMM Id = 2 +22:08:39 ============================================================================ +22:08:39 + + +waiting on router queue for slot.... +22:08:49 ============================================================================ +22:08:49 Slot Id : <476> +22:08:49 Transaction Type : REQUEST +22:08:49 Received From : +22:08:49 ============================================================================ +22:08:49 FNo. Len. Field Value +22:08:49 ============================================================================ +22:08:49 [ 1] [ 4] [0800] +22:08:49 [ 7] [ 10] [0320030757] +22:08:49 [ 11] [ 6] [158671] +22:08:49 [ 70] [ 3] [301] +22:08:49 ============================================================================ +22:08:49 + + +waiting on router queue for slot.... +22:08:49 Sending to : +22:08:49 ============================================================================ +22:08:49 ============================================================================ +22:08:49 Slot Id : <476> +22:08:49 Transaction Type : RESPONSE +22:08:49 Received From : +22:08:49 ============================================================================ +22:08:49 FNo. Len. Field Value +22:08:49 ============================================================================ +22:08:49 [ 1] [ 4] [0810] +22:08:49 [ 7] [ 10] [0320030757] +22:08:49 [ 11] [ 6] [158671] +22:08:49 [ 39] [ 2] [00] +22:08:49 [ 70] [ 3] [301] +22:08:49 ============================================================================ +22:08:49 Calculate Source COMM Id = 2 +22:08:49 ============================================================================ +22:08:49 + + +waiting on router queue for slot.... +22:09:00 ============================================================================ +22:09:00 Slot Id : <485> +22:09:00 Transaction Type : REQUEST +22:09:00 Received From : +22:09:00 ============================================================================ +22:09:00 FNo. Len. Field Value +22:09:00 ============================================================================ +22:09:00 [ 1] [ 4] [0800] +22:09:00 [ 7] [ 10] [0320030808] +22:09:00 [ 11] [ 6] [158672] +22:09:00 [ 70] [ 3] [301] +22:09:00 ============================================================================ +22:09:00 + + +waiting on router queue for slot.... +22:09:00 Sending to : +22:09:00 ============================================================================ +22:09:00 ============================================================================ +22:09:00 Slot Id : <485> +22:09:00 Transaction Type : RESPONSE +22:09:00 Received From : +22:09:00 ============================================================================ +22:09:00 FNo. Len. Field Value +22:09:00 ============================================================================ +22:09:00 [ 1] [ 4] [0810] +22:09:00 [ 7] [ 10] [0320030808] +22:09:00 [ 11] [ 6] [158672] +22:09:00 [ 39] [ 2] [00] +22:09:00 [ 70] [ 3] [301] +22:09:00 ============================================================================ +22:09:00 Calculate Source COMM Id = 2 +22:09:00 ============================================================================ +22:09:00 + + +waiting on router queue for slot.... +22:09:10 ============================================================================ +22:09:10 Slot Id : <477> +22:09:10 Transaction Type : REQUEST +22:09:10 Received From : +22:09:10 ============================================================================ +22:09:10 FNo. Len. Field Value +22:09:10 ============================================================================ +22:09:10 [ 1] [ 4] [0800] +22:09:10 [ 7] [ 10] [0320030819] +22:09:10 [ 11] [ 6] [158673] +22:09:10 [ 70] [ 3] [301] +22:09:10 ============================================================================ +22:09:10 + + +waiting on router queue for slot.... +22:09:10 Sending to : +22:09:10 ============================================================================ +22:09:10 ============================================================================ +22:09:10 Slot Id : <477> +22:09:10 Transaction Type : RESPONSE +22:09:10 Received From : +22:09:10 ============================================================================ +22:09:10 FNo. Len. Field Value +22:09:10 ============================================================================ +22:09:10 [ 1] [ 4] [0810] +22:09:10 [ 7] [ 10] [0320030819] +22:09:10 [ 11] [ 6] [158673] +22:09:10 [ 39] [ 2] [00] +22:09:10 [ 70] [ 3] [301] +22:09:10 ============================================================================ +22:09:10 Calculate Source COMM Id = 2 +22:09:10 ============================================================================ +22:09:10 + + +waiting on router queue for slot.... +22:09:20 ============================================================================ +22:09:20 Slot Id : <14> +22:09:20 Transaction Type : REQUEST +22:09:20 Received From : +22:09:20 ============================================================================ +22:09:20 FNo. Len. Field Value +22:09:20 ============================================================================ +22:09:20 [ 0] [ 4] [0420] +22:09:20 [ 1] [ 4] [0420] +22:09:20 [ 2] [ 16] [6688990103042907] +22:09:20 [ 3] [ 6] [013000] +22:09:20 [ 4] [ 12] [000020000000] +22:09:20 [ 6] [ 12] [000020000000] +22:09:20 [ 7] [ 10] [0320190256] +22:09:20 [ 11] [ 6] [833276] +22:09:20 [ 12] [ 6] [190256] +22:09:20 [ 13] [ 4] [0320] +22:09:20 [ 15] [ 4] [0320] +22:09:20 [ 18] [ 4] [6011] +22:09:20 [ 22] [ 3] [900] +22:09:20 [ 25] [ 2] [02] +22:09:20 [ 28] [ 9] [D00002000] +22:09:20 [ 32] [ 6] [621354] +22:09:20 [ 35] [ 37] [6688990103042907=42111231290725900000] +22:09:20 [ 37] [ 12] [507905382554] +22:09:20 [ 39] [ 2] [00] +22:09:20 [ 41] [ 8] [12003400] +22:09:20 [ 42] [ 15] [NATIVE ] +22:09:20 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +22:09:20 [ 49] [ 3] [418] +22:09:20 [ 52] [ 16] [C82A7307B598500F] +22:09:20 ============================================================================ +22:09:20 + + +waiting on router queue for slot.... +22:09:20 ============================================================================ +22:09:20 Slot Id : <14> +22:09:20 Transaction Type : RESPONSE +22:09:20 Received From : +22:09:20 ============================================================================ +22:09:20 FNo. Len. Field Value +22:09:20 ============================================================================ +22:09:20 [ 1] [ 4] [0430] +22:09:20 [ 2] [ 16] [6688990103042907] +22:09:20 [ 3] [ 6] [013000] +22:09:20 [ 4] [ 12] [000020000000] +22:09:20 [ 7] [ 10] [0320190256] +22:09:20 [ 11] [ 6] [833276] +22:09:20 [ 32] [ 6] [621354] +22:09:20 [ 35] [ 37] [6688990103042907=42111231290725900000] +22:09:20 [ 37] [ 12] [507905382554] +22:09:20 [ 39] [ 2] [00] +22:09:20 [ 41] [ 8] [12003400] +22:09:20 [ 43] [ 40] [Hongsa Unit03 Xayyabouly LAO] +22:09:20 [ 49] [ 3] [418] +22:09:20 [ 90] [ 42] [020083327603201902560000062135400000000000] +22:09:20 ============================================================================ +22:09:20 Successfully send the slot [14] To REVERSAL Process +22:09:20 + + +waiting on router queue for slot.... +22:09:21 ============================================================================ +22:09:21 Slot Id : <483> +22:09:21 Transaction Type : REQUEST +22:09:21 Received From : +22:09:21 ============================================================================ +22:09:21 FNo. Len. Field Value +22:09:21 ============================================================================ +22:09:21 [ 1] [ 4] [0800] +22:09:21 [ 7] [ 10] [0320030829] +22:09:21 [ 11] [ 6] [158674] +22:09:21 [ 70] [ 3] [301] +22:09:21 ============================================================================ +22:09:21 + + +waiting on router queue for slot.... +22:09:21 Sending to : +22:09:21 ============================================================================ +22:09:21 ============================================================================ +22:09:21 Slot Id : <483> +22:09:21 Transaction Type : RESPONSE +22:09:21 Received From : +22:09:21 ============================================================================ +22:09:21 FNo. Len. Field Value +22:09:21 ============================================================================ +22:09:21 [ 1] [ 4] [0810] +22:09:21 [ 7] [ 10] [0320030829] +22:09:21 [ 11] [ 6] [158674] +22:09:21 [ 39] [ 2] [00] +22:09:21 [ 70] [ 3] [301] +22:09:21 ============================================================================ +22:09:21 Calculate Source COMM Id = 2 +22:09:21 ============================================================================ +22:09:21 + + +waiting on router queue for slot.... +22:09:29 ============================================================================ +22:09:29 Slot Id : <474> +22:09:29 Transaction Type : REQUEST +22:09:29 Received From : +22:09:29 ============================================================================ +22:09:29 FNo. Len. Field Value +22:09:29 ============================================================================ +22:09:29 [ 1] [ 4] [0800] +22:09:29 [ 7] [ 10] [0321052119] +22:09:29 [ 11] [ 6] [222119] +22:09:29 [ 37] [ 12] [57922222119] +22:09:29 [ 70] [ 3] [301] +22:09:29 ============================================================================ +22:09:29 + + +waiting on router queue for slot.... +22:09:29 Sending to : +22:09:29 ============================================================================ +22:09:29 ============================================================================ +22:09:29 Slot Id : <474> +22:09:29 Transaction Type : RESPONSE +22:09:29 Received From : +22:09:29 ============================================================================ +22:09:29 FNo. Len. Field Value +22:09:29 ============================================================================ +22:09:29 [ 1] [ 4] [0810] +22:09:29 [ 7] [ 10] [0321052119] +22:09:29 [ 11] [ 6] [222119] +22:09:29 [ 37] [ 12] [579222221190] +22:09:29 [ 39] [ 2] [00] +22:09:29 [ 70] [ 3] [810] +22:09:29 ============================================================================ +22:09:29 Calculate Source COMM Id = 6 +22:09:29 ============================================================================ +22:09:29 + + +waiting on router queue for slot.... +22:09:32 ============================================================================ +22:09:32 Slot Id : <6> +22:09:32 Transaction Type : REQUEST +22:09:32 Received From : +22:09:32 ============================================================================ +22:09:32 FNo. Len. Field Value +22:09:32 ============================================================================ +22:09:32 [ 1] [ 4] [0800] +22:09:32 [ 7] [ 10] [0320030840] +22:09:32 [ 11] [ 6] [158675] +22:09:32 [ 70] [ 3] [301] +22:09:32 ============================================================================ +22:09:32 + + +waiting on router queue for slot.... +22:09:32 Sending to : +22:09:32 ============================================================================ +22:09:32 ============================================================================ +22:09:32 Slot Id : <6> +22:09:32 Transaction Type : RESPONSE +22:09:32 Received From : +22:09:32 ============================================================================ +22:09:32 FNo. Len. Field Value +22:09:32 ============================================================================ +22:09:32 [ 1] [ 4] [0810] +22:09:32 [ 7] [ 10] [0320030840] +22:09:32 [ 11] [ 6] [158675] +22:09:32 [ 39] [ 2] [00] +22:09:32 [ 70] [ 3] [301] +22:09:32 ============================================================================ +22:09:32 Calculate Source COMM Id = 2 +22:09:32 ============================================================================ +22:09:32 + + +waiting on router queue for slot.... +22:09:32 ============================================================================ +22:09:32 Slot Id : <472> +22:09:32 Transaction Type : REQUEST +22:09:32 Received From : +22:09:32 ============================================================================ +22:09:32 FNo. Len. Field Value +22:09:32 ============================================================================ +22:09:32 [ 1] [ 4] [0800] +22:09:32 [ 2] [ 5] [02531] +22:09:32 [ 3] [ 6] [579228] +22:09:32 [ 7] [ 10] [0320150932] +22:09:32 [ 11] [ 6] [807698] +22:09:32 [ 15] [ 10] [0320150932] +22:09:32 [ 37] [ 11] [57922807698] +22:09:32 [ 70] [ 3] [001] +22:09:32 ============================================================================ +22:09:32 + + +waiting on router queue for slot.... +22:09:32 ============================================================================ +22:09:32 Slot Id : <472> +22:09:32 Transaction Type : RESPONSE +22:09:32 Received From : +22:09:32 ============================================================================ +22:09:32 FNo. Len. Field Value +22:09:32 ============================================================================ +22:09:32 [ 1] [ 4] [0810] +22:09:32 [ 7] [ 10] [0320150932] +22:09:32 [ 11] [ 6] [807698] +22:09:32 [ 15] [ 4] [0320] +22:09:32 [ 37] [ 12] [57922807698] +22:09:32 [ 39] [ 2] [00] +22:09:32 [ 70] [ 3] [001] +22:09:32 ============================================================================ +22:09:32 Sending to : +22:09:32 ============================================================================ +22:09:32 + + +waiting on router queue for slot.... +22:09:43 ============================================================================ +22:09:43 Slot Id : <486> +22:09:43 Transaction Type : REQUEST +22:09:43 Received From : +22:09:43 ============================================================================ +22:09:43 FNo. Len. Field Value +22:09:43 ============================================================================ +22:09:43 [ 1] [ 4] [0800] +22:09:43 [ 7] [ 10] [0320030851] +22:09:43 [ 11] [ 6] [158676] +22:09:43 [ 70] [ 3] [301] +22:09:43 ============================================================================ +22:09:43 + + +waiting on router queue for slot.... +22:09:43 Sending to : +22:09:43 ============================================================================ +22:09:43 ============================================================================ +22:09:43 Slot Id : <486> +22:09:43 Transaction Type : RESPONSE +22:09:43 Received From : +22:09:43 ============================================================================ +22:09:43 FNo. Len. Field Value +22:09:43 ============================================================================ +22:09:43 [ 1] [ 4] [0810] +22:09:43 [ 7] [ 10] [0320030851] +22:09:43 [ 11] [ 6] [158676] +22:09:43 [ 39] [ 2] [00] +22:09:43 [ 70] [ 3] [301] +22:09:43 ============================================================================ +22:09:43 Calculate Source COMM Id = 2 +22:09:43 ============================================================================ +22:09:43 + + +waiting on router queue for slot.... +22:09:55 ============================================================================ +22:09:55 Slot Id : <492> +22:09:55 Transaction Type : REQUEST +22:09:55 Received From : +22:09:55 ============================================================================ +22:09:55 FNo. Len. Field Value +22:09:55 ============================================================================ +22:09:55 [ 1] [ 4] [0800] +22:09:55 [ 7] [ 10] [0320151742] +22:09:55 [ 11] [ 6] [005879] +22:09:55 [ 37] [ 12] [57922005879] +22:09:55 [ 70] [ 3] [301] +22:09:55 ============================================================================ +22:09:55 + + +waiting on router queue for slot.... +22:09:55 Sending to : +22:09:55 ============================================================================ +22:09:55 ============================================================================ +22:09:55 Slot Id : <492> +22:09:55 Transaction Type : RESPONSE +22:09:55 Received From : +22:09:55 ============================================================================ +22:09:55 FNo. Len. Field Value +22:09:55 ============================================================================ +22:09:55 [ 1] [ 4] [0810] +22:09:55 [ 7] [ 10] [0320151742] +22:09:55 [ 11] [ 6] [005879] +22:09:55 [ 37] [ 12] [579220058790] +22:09:55 [ 39] [ 2] [00] +22:09:55 [ 70] [ 3] [810] +22:09:55 ============================================================================ +22:09:55 Calculate Source COMM Id = 1 +22:09:55 ============================================================================ +22:09:55 + + +waiting on router queue for slot.... +22:09:59 ============================================================================ +22:09:59 Slot Id : <16> +22:09:59 Transaction Type : REQUEST +22:09:59 Received From : +22:09:59 ============================================================================ +22:09:59 FNo. Len. Field Value +22:09:59 ============================================================================ +22:09:59 [ 1] [ 4] [0800] +22:09:59 [ 7] [ 10] [0320030907] +22:09:59 [ 11] [ 6] [158677] +22:09:59 [ 70] [ 3] [301] +22:09:59 ============================================================================ +22:09:59 + + +waiting on router queue for slot.... +22:09:59 Sending to : +22:09:59 ============================================================================ +22:09:59 ============================================================================ +22:09:59 Slot Id : <16> +22:09:59 Transaction Type : RESPONSE +22:09:59 Received From : +22:09:59 ============================================================================ +22:09:59 FNo. Len. Field Value +22:09:59 ============================================================================ +22:09:59 [ 1] [ 4] [0810] +22:09:59 [ 7] [ 10] [0320030907] +22:09:59 [ 11] [ 6] [158677] +22:09:59 [ 39] [ 2] [00] +22:09:59 [ 70] [ 3] [301] +22:09:59 ============================================================================ +22:09:59 Calculate Source COMM Id = 2 +22:09:59 ============================================================================ +22:09:59 + + +waiting on router queue for slot.... +22:10:10 ============================================================================ +22:10:10 Slot Id : <13> +22:10:10 Transaction Type : REQUEST +22:10:10 Received From : +22:10:10 ============================================================================ +22:10:10 FNo. Len. Field Value +22:10:10 ============================================================================ +22:10:10 [ 1] [ 4] [0800] +22:10:10 [ 7] [ 10] [0320030918] +22:10:10 [ 11] [ 6] [158678] +22:10:10 [ 70] [ 3] [301] +22:10:10 ============================================================================ +22:10:10 + + +waiting on router queue for slot.... +22:10:10 Sending to : +22:10:10 ============================================================================ +22:10:10 ============================================================================ +22:10:10 Slot Id : <13> +22:10:10 Transaction Type : RESPONSE +22:10:10 Received From : +22:10:10 ============================================================================ +22:10:10 FNo. Len. Field Value +22:10:10 ============================================================================ +22:10:10 [ 1] [ 4] [0810] +22:10:10 [ 7] [ 10] [0320030918] +22:10:10 [ 11] [ 6] [158678] +22:10:10 [ 39] [ 2] [00] +22:10:10 [ 70] [ 3] [301] +22:10:10 ============================================================================ +22:10:10 Calculate Source COMM Id = 2 +22:10:10 ============================================================================ +22:10:10 + + +waiting on router queue for slot.... +22:10:20 ============================================================================ +22:10:20 Slot Id : <454> +22:10:20 Transaction Type : REQUEST +22:10:20 Received From : +22:10:20 ============================================================================ +22:10:20 FNo. Len. Field Value +22:10:20 ============================================================================ +22:10:20 [ 1] [ 4] [0800] +22:10:20 [ 7] [ 10] [0320030928] +22:10:20 [ 11] [ 6] [158679] +22:10:20 [ 70] [ 3] [301] +22:10:20 ============================================================================ +22:10:20 + + +waiting on router queue for slot.... +22:10:20 Sending to : +22:10:20 ============================================================================ +22:10:20 ============================================================================ +22:10:20 Slot Id : <454> +22:10:20 Transaction Type : RESPONSE +22:10:20 Received From : +22:10:20 ============================================================================ +22:10:20 FNo. Len. Field Value +22:10:20 ============================================================================ +22:10:20 [ 1] [ 4] [0810] +22:10:20 [ 7] [ 10] [0320030928] +22:10:20 [ 11] [ 6] [158679] +22:10:20 [ 39] [ 2] [00] +22:10:20 [ 70] [ 3] [301] +22:10:20 ============================================================================ +22:10:20 Calculate Source COMM Id = 2 +22:10:20 ============================================================================ +22:10:20 + + +waiting on router queue for slot.... +22:10:31 ============================================================================ +22:10:31 Slot Id : <469> +22:10:31 Transaction Type : REQUEST +22:10:31 Received From : +22:10:31 ============================================================================ +22:10:31 FNo. Len. Field Value +22:10:31 ============================================================================ +22:10:31 [ 1] [ 4] [0800] +22:10:31 [ 7] [ 10] [0320030939] +22:10:31 [ 11] [ 6] [158680] +22:10:31 [ 70] [ 3] [301] +22:10:31 ============================================================================ +22:10:31 + + +waiting on router queue for slot.... +22:10:31 Sending to : +22:10:31 ============================================================================ +22:10:31 ============================================================================ +22:10:31 Slot Id : <469> +22:10:31 Transaction Type : RESPONSE +22:10:31 Received From : +22:10:31 ============================================================================ +22:10:31 FNo. Len. Field Value +22:10:31 ============================================================================ +22:10:31 [ 1] [ 4] [0810] +22:10:31 [ 7] [ 10] [0320030939] +22:10:31 [ 11] [ 6] [158680] +22:10:31 [ 39] [ 2] [00] +22:10:31 [ 70] [ 3] [301] +22:10:31 ============================================================================ +22:10:31 Calculate Source COMM Id = 2 +22:10:31 ============================================================================ +22:10:31 + + +waiting on router queue for slot.... +22:10:34 ============================================================================ +22:10:34 Slot Id : <494> +22:10:34 Transaction Type : REQUEST +22:10:34 Received From : +22:10:34 ============================================================================ +22:10:34 FNo. Len. Field Value +22:10:34 ============================================================================ +22:10:34 [ 1] [ 4] [0800] +22:10:34 [ 2] [ 5] [02531] +22:10:34 [ 3] [ 6] [579228] +22:10:34 [ 7] [ 10] [0320151034] +22:10:34 [ 11] [ 6] [807699] +22:10:34 [ 15] [ 10] [0320151034] +22:10:34 [ 37] [ 11] [57922807699] +22:10:34 [ 70] [ 3] [001] +22:10:34 ============================================================================ +22:10:34 + + +waiting on router queue for slot.... +22:10:34 ============================================================================ +22:10:34 Slot Id : <494> +22:10:34 Transaction Type : RESPONSE +22:10:34 Received From : +22:10:34 ============================================================================ +22:10:34 FNo. Len. Field Value +22:10:34 ============================================================================ +22:10:34 [ 1] [ 4] [0810] +22:10:34 [ 7] [ 10] [0320151034] +22:10:34 [ 11] [ 6] [807699] +22:10:34 [ 15] [ 4] [0320] +22:10:34 [ 37] [ 12] [57922807699] +22:10:34 [ 39] [ 2] [00] +22:10:34 [ 70] [ 3] [001] +22:10:34 ============================================================================ +22:10:34 Sending to : +22:10:34 ============================================================================ +22:10:34 + + +waiting on router queue for slot.... +22:10:34 ============================================================================ +22:10:34 Slot Id : <12> +22:10:34 Transaction Type : REQUEST +22:10:34 Received From : +22:10:34 ============================================================================ +22:10:34 FNo. Len. Field Value +22:10:34 ============================================================================ +22:10:34 [ 1] [ 4] [0800] +22:10:34 [ 7] [ 10] [0321052224] +22:10:34 [ 11] [ 6] [222224] +22:10:34 [ 37] [ 12] [57922222224] +22:10:34 [ 70] [ 3] [301] +22:10:34 ============================================================================ +22:10:34 + + +waiting on router queue for slot.... +22:10:34 Sending to : +22:10:34 ============================================================================ +22:10:34 ============================================================================ +22:10:34 Slot Id : <12> +22:10:34 Transaction Type : RESPONSE +22:10:34 Received From : +22:10:34 ============================================================================ +22:10:34 FNo. Len. Field Value +22:10:34 ============================================================================ +22:10:34 [ 1] [ 4] [0810] +22:10:34 [ 7] [ 10] [0321052224] +22:10:34 [ 11] [ 6] [222224] +22:10:34 [ 37] [ 12] [579222222240] +22:10:34 [ 39] [ 2] [00] +22:10:34 [ 70] [ 3] [810] +22:10:34 ============================================================================ +22:10:34 Calculate Source COMM Id = 6 +22:10:34 ============================================================================ +22:10:34 + + +waiting on router queue for slot.... +22:10:41 ============================================================================ +22:10:41 Slot Id : <491> +22:10:41 Transaction Type : REQUEST +22:10:41 Received From : +22:10:41 ============================================================================ +22:10:41 FNo. Len. Field Value +22:10:41 ============================================================================ +22:10:41 [ 1] [ 4] [0800] +22:10:41 [ 7] [ 10] [0320030950] +22:10:41 [ 11] [ 6] [158681] +22:10:41 [ 70] [ 3] [301] +22:10:41 ============================================================================ +22:10:41 + + +waiting on router queue for slot.... +22:10:41 Sending to : +22:10:41 ============================================================================ +22:10:41 ============================================================================ +22:10:41 Slot Id : <491> +22:10:41 Transaction Type : RESPONSE +22:10:41 Received From : +22:10:41 ============================================================================ +22:10:41 FNo. Len. Field Value +22:10:41 ============================================================================ +22:10:41 [ 1] [ 4] [0810] +22:10:41 [ 7] [ 10] [0320030950] +22:10:41 [ 11] [ 6] [158681] +22:10:41 [ 39] [ 2] [00] +22:10:41 [ 70] [ 3] [301] +22:10:41 ============================================================================ +22:10:41 Calculate Source COMM Id = 2 +22:10:41 ============================================================================ +22:10:41 + + +waiting on router queue for slot.... +22:10:44 ============================================================================ +22:10:44 Slot Id : <22> +22:10:44 Transaction Type : REQUEST +22:10:44 Received From : +22:10:44 ============================================================================ +22:10:44 FNo. Len. Field Value +22:10:44 ============================================================================ +22:10:44 [ 1] [ 4] [0200] +22:10:44 [ 2] [ 16] [6688990106677204] +22:10:44 [ 3] [ 6] [300000] +22:10:44 [ 4] [ 12] [000000000000] +22:10:44 [ 7] [ 10] [0320221040] +22:10:44 [ 11] [ 6] [848069] +22:10:44 [ 12] [ 6] [221040] +22:10:44 [ 13] [ 4] [0320] +22:10:44 [ 15] [ 4] [0320] +22:10:44 [ 18] [ 4] [6011] +22:10:44 [ 22] [ 3] [900] +22:10:44 [ 25] [ 2] [02] +22:10:44 [ 28] [ 9] [D00000000] +22:10:44 [ 32] [ 6] [621354] +22:10:44 [ 35] [ 37] [6688990106677204=44011231720492200000] +22:10:44 [ 37] [ 12] [507904559879] +22:10:44 [ 41] [ 8] [02001800] +22:10:44 [ 42] [ 15] [NATIVE ] +22:10:44 [ 43] [ 40] [Bus Station Khm Thakek LAO] +22:10:44 [ 49] [ 3] [418] +22:10:44 [ 52] [ 16] [50C9B74144C4BBF0] +22:10:44 ============================================================================ +22:10:44 + + +waiting on router queue for slot.... +22:10:44 Sending to : +22:10:44 ============================================================================ +22:10:44 Sending to : +22:10:44 ============================================================================ +22:10:44 ============================================================================ +22:10:44 Slot Id : <22> +22:10:44 Transaction Type : REQUEST +22:10:44 Received From : +22:10:44 ============================================================================ +22:10:44 FNo. Len. Field Value +22:10:44 ============================================================================ +22:10:44 [ 1] [ 4] [0200] +22:10:44 [ 2] [ 16] [6688990106677204] +22:10:44 [ 3] [ 6] [300000] +22:10:44 [ 4] [ 12] [000000000000] +22:10:44 [ 7] [ 10] [0320221040] +22:10:44 [ 11] [ 6] [848069] +22:10:44 [ 12] [ 6] [221040] +22:10:44 [ 13] [ 4] [0320] +22:10:44 [ 15] [ 4] [0320] +22:10:44 [ 18] [ 4] [6011] +22:10:44 [ 22] [ 3] [900] +22:10:44 [ 25] [ 2] [02] +22:10:44 [ 28] [ 9] [D00000000] +22:10:44 [ 32] [ 6] [621354] +22:10:44 [ 35] [ 37] [6688990106677204=44011231720492200000] +22:10:44 [ 37] [ 12] [507904559879] +22:10:44 [ 41] [ 8] [02001800] +22:10:44 [ 42] [ 15] [NATIVE ] +22:10:44 [ 43] [ 40] [Bus Station Khm Thakek LAO] +22:10:44 [ 49] [ 3] [418] +22:10:44 [ 52] [ 16] [50C9B74144C4BBF0] +22:10:44 ============================================================================ +22:10:44 + + +waiting on router queue for slot.... +22:10:44 Sending to : +22:10:44 ============================================================================ +22:10:44 ============================================================================ +22:10:44 Slot Id : <22> +22:10:44 Transaction Type : REQUEST +22:10:44 Received From : +22:10:44 ============================================================================ +22:10:44 FNo. Len. Field Value +22:10:44 ============================================================================ +22:10:44 [ 1] [ 4] [0200] +22:10:44 [ 2] [ 16] [6688990106677204] +22:10:44 [ 3] [ 6] [300000] +22:10:44 [ 4] [ 12] [000000000000] +22:10:44 [ 7] [ 10] [0320221040] +22:10:44 [ 11] [ 6] [848069] +22:10:44 [ 12] [ 6] [221040] +22:10:44 [ 13] [ 4] [0320] +22:10:44 [ 15] [ 4] [0320] +22:10:44 [ 18] [ 4] [6011] +22:10:44 [ 22] [ 3] [900] +22:10:44 [ 25] [ 2] [02] +22:10:44 [ 28] [ 9] [D00000000] +22:10:44 [ 32] [ 6] [621354] +22:10:44 [ 35] [ 37] [6688990106677204=44011231720492200000] +22:10:44 [ 37] [ 12] [507904559879] +22:10:44 [ 41] [ 8] [02001800] +22:10:44 [ 42] [ 15] [NATIVE ] +22:10:44 [ 43] [ 40] [Bus Station Khm Thakek LAO] +22:10:44 [ 49] [ 3] [418] +22:10:44 [ 52] [ 16] [BA3A4FB958986A22] +22:10:44 ============================================================================ +22:10:44 + + +waiting on router queue for slot.... +22:10:44 Sending to : <4> +22:10:44 ============================================================================ +22:10:45 ============================================================================ +22:10:45 Slot Id : <22> +22:10:45 Transaction Type : RESPONSE +22:10:45 Received From : +22:10:45 ============================================================================ +22:10:45 FNo. Len. Field Value +22:10:45 ============================================================================ +22:10:45 [ 1] [ 4] [0210] +22:10:45 [ 2] [ 16] [6688990106677204] +22:10:45 [ 3] [ 6] [300000] +22:10:45 [ 4] [ 12] [000000000000] +22:10:45 [ 11] [ 6] [848069] +22:10:45 [ 12] [ 6] [221040] +22:10:45 [ 15] [ 4] [0320] +22:10:45 [ 18] [ 4] [6011] +22:10:45 [ 32] [ 6] [621354] +22:10:45 [ 35] [ 37] [6688990106677204=44011231720492200000] +22:10:45 [ 37] [ 12] [507904559879] +22:10:45 [ 38] [ 6] [785694] +22:10:45 [ 39] [ 2] [00] +22:10:45 [ 41] [ 8] [02001800] +22:10:45 [ 49] [ 3] [418] +22:10:45 [ 54] [ 20] [0002418C000032132896] +22:10:45 ============================================================================ +22:10:45 Sending to : +22:10:45 ============================================================================ +22:10:45 + + +waiting on router queue for slot.... +22:10:47 ============================================================================ +22:10:47 Slot Id : <22> +22:10:47 Transaction Type : RESPONSE +22:10:47 Received From : +22:10:47 ============================================================================ +22:10:47 FNo. Len. Field Value +22:10:47 ============================================================================ +22:10:47 [ 1] [ 4] [0210] +22:10:47 [ 2] [ 16] [6688990106677204] +22:10:47 [ 3] [ 6] [300000] +22:10:47 [ 4] [ 12] [000000000000] +22:10:47 [ 11] [ 6] [848069] +22:10:47 [ 12] [ 6] [221040] +22:10:47 [ 15] [ 4] [0320] +22:10:47 [ 18] [ 4] [6011] +22:10:47 [ 32] [ 6] [621354] +22:10:47 [ 35] [ 37] [6688990106677204=44011231720492200000] +22:10:47 [ 37] [ 12] [507904559879] +22:10:47 [ 38] [ 6] [785694] +22:10:47 [ 39] [ 2] [00] +22:10:47 [ 41] [ 8] [02001800] +22:10:47 [ 49] [ 3] [418] +22:10:47 [ 54] [ 20] [0002418C000032132896] +22:10:47 ============================================================================ +22:10:47 Calculate Source COMM Id = 0 +22:10:47 ============================================================================ +22:10:47 + + +waiting on router queue for slot.... +22:10:52 ============================================================================ +22:10:52 Slot Id : <17> +22:10:52 Transaction Type : REQUEST +22:10:52 Received From : +22:10:52 ============================================================================ +22:10:52 FNo. Len. Field Value +22:10:52 ============================================================================ +22:10:52 [ 1] [ 4] [0800] +22:10:52 [ 7] [ 10] [0320031000] +22:10:52 [ 11] [ 6] [158682] +22:10:52 [ 70] [ 3] [301] +22:10:52 ============================================================================ +22:10:52 + + +waiting on router queue for slot.... +22:10:52 Sending to : +22:10:52 ============================================================================ +22:10:52 ============================================================================ +22:10:52 Slot Id : <17> +22:10:52 Transaction Type : RESPONSE +22:10:52 Received From : +22:10:52 ============================================================================ +22:10:52 FNo. Len. Field Value +22:10:52 ============================================================================ +22:10:52 [ 1] [ 4] [0810] +22:10:52 [ 7] [ 10] [0320031000] +22:10:52 [ 11] [ 6] [158682] +22:10:52 [ 39] [ 2] [00] +22:10:52 [ 70] [ 3] [301] +22:10:52 ============================================================================ +22:10:52 Calculate Source COMM Id = 2 +22:10:52 ============================================================================ +22:10:52 + + +waiting on router queue for slot.... +22:11:08 ============================================================================ +22:11:08 Slot Id : <29> +22:11:08 Transaction Type : REQUEST +22:11:08 Received From : +22:11:08 ============================================================================ +22:11:08 FNo. Len. Field Value +22:11:08 ============================================================================ +22:11:08 [ 1] [ 4] [0800] +22:11:08 [ 7] [ 10] [0320031016] +22:11:08 [ 11] [ 6] [158683] +22:11:08 [ 70] [ 3] [301] +22:11:08 ============================================================================ +22:11:08 + + +waiting on router queue for slot.... +22:11:08 Sending to : +22:11:08 ============================================================================ +22:11:08 ============================================================================ +22:11:08 Slot Id : <29> +22:11:08 Transaction Type : RESPONSE +22:11:08 Received From : +22:11:08 ============================================================================ +22:11:08 FNo. Len. Field Value +22:11:08 ============================================================================ +22:11:08 [ 1] [ 4] [0810] +22:11:08 [ 7] [ 10] [0320031016] +22:11:08 [ 11] [ 6] [158683] +22:11:08 [ 39] [ 2] [00] +22:11:08 [ 70] [ 3] [301] +22:11:08 ============================================================================ +22:11:08 Calculate Source COMM Id = 2 +22:11:08 ============================================================================ +22:11:08 + + +waiting on router queue for slot.... +22:11:19 ============================================================================ +22:11:19 Slot Id : <10> +22:11:19 Transaction Type : REQUEST +22:11:19 Received From : +22:11:19 ============================================================================ +22:11:19 FNo. Len. Field Value +22:11:19 ============================================================================ +22:11:19 [ 1] [ 4] [0800] +22:11:19 [ 7] [ 10] [0320031027] +22:11:19 [ 11] [ 6] [158684] +22:11:19 [ 70] [ 3] [301] +22:11:19 ============================================================================ +22:11:19 + + +waiting on router queue for slot.... +22:11:19 Sending to : +22:11:19 ============================================================================ +22:11:19 ============================================================================ +22:11:19 Slot Id : <10> +22:11:19 Transaction Type : RESPONSE +22:11:19 Received From : +22:11:19 ============================================================================ +22:11:19 FNo. Len. Field Value +22:11:19 ============================================================================ +22:11:19 [ 1] [ 4] [0810] +22:11:19 [ 7] [ 10] [0320031027] +22:11:19 [ 11] [ 6] [158684] +22:11:19 [ 39] [ 2] [00] +22:11:19 [ 70] [ 3] [301] +22:11:19 ============================================================================ +22:11:19 Calculate Source COMM Id = 2 +22:11:19 ============================================================================ +22:11:19 + + +waiting on router queue for slot.... +22:11:21 ============================================================================ +22:11:21 Slot Id : <23> +22:11:21 Transaction Type : REQUEST +22:11:21 Received From : +22:11:21 ============================================================================ +22:11:21 FNo. Len. Field Value +22:11:21 ============================================================================ +22:11:21 [ 1] [ 4] [0800] +22:11:21 [ 7] [ 10] [0320150912] +22:11:21 [ 11] [ 6] [054992] +22:11:21 [ 37] [ 12] [57922054992] +22:11:21 [ 70] [ 3] [301] +22:11:21 ============================================================================ +22:11:21 + + +waiting on router queue for slot.... +22:11:21 Sending to : +22:11:21 ============================================================================ +22:11:21 ============================================================================ +22:11:21 Slot Id : <23> +22:11:21 Transaction Type : RESPONSE +22:11:21 Received From : +22:11:21 ============================================================================ +22:11:21 FNo. Len. Field Value +22:11:21 ============================================================================ +22:11:21 [ 1] [ 4] [0810] +22:11:21 [ 7] [ 10] [0320150912] +22:11:21 [ 11] [ 6] [054992] +22:11:21 [ 37] [ 12] [579220549920] +22:11:21 [ 39] [ 2] [00] +22:11:21 [ 70] [ 3] [810] +22:11:21 ============================================================================ +22:11:21 Calculate Source COMM Id = 4 +22:11:21 ============================================================================ +22:11:21 + + +waiting on router queue for slot.... +22:11:26 ============================================================================ +22:11:26 Slot Id : <499> +22:11:26 Transaction Type : REQUEST +22:11:26 Received From : +22:11:26 ============================================================================ +22:11:26 FNo. Len. Field Value +22:11:26 ============================================================================ +22:11:26 [ 1] [ 4] [0800] +22:11:26 [ 7] [ 10] [0320221113] +22:11:26 [ 11] [ 6] [033651] +22:11:26 [ 37] [ 12] [507922033651] +22:11:26 [ 70] [ 3] [ ] +22:11:26 ============================================================================ +22:11:26 + + +waiting on router queue for slot.... +22:11:26 Sending to : +22:11:26 ============================================================================ +22:11:26 ============================================================================ +22:11:26 Slot Id : <499> +22:11:26 Transaction Type : RESPONSE +22:11:26 Received From : +22:11:26 ============================================================================ +22:11:26 FNo. Len. Field Value +22:11:26 ============================================================================ +22:11:26 [ 1] [ 4] [0810] +22:11:26 [ 7] [ 10] [0320221113] +22:11:26 [ 11] [ 6] [033651] +22:11:26 [ 37] [ 12] [507922033651] +22:11:26 [ 39] [ 2] [91] +22:11:26 [ 70] [ 3] [ ] +22:11:26 ============================================================================ +22:11:26 Calculate Source COMM Id = 3 +22:11:26 ============================================================================ +22:11:26 + + +waiting on router queue for slot.... +22:11:30 ============================================================================ +22:11:30 Slot Id : <481> +22:11:30 Transaction Type : REQUEST +22:11:30 Received From : +22:11:30 ============================================================================ +22:11:30 FNo. Len. Field Value +22:11:30 ============================================================================ +22:11:30 [ 1] [ 4] [0800] +22:11:30 [ 7] [ 10] [0320031038] +22:11:30 [ 11] [ 6] [158685] +22:11:30 [ 70] [ 3] [301] +22:11:30 ============================================================================ +22:11:30 + + +waiting on router queue for slot.... +22:11:30 Sending to : +22:11:30 ============================================================================ +22:11:30 ============================================================================ +22:11:30 Slot Id : <481> +22:11:30 Transaction Type : RESPONSE +22:11:30 Received From : +22:11:30 ============================================================================ +22:11:30 FNo. Len. Field Value +22:11:30 ============================================================================ +22:11:30 [ 1] [ 4] [0810] +22:11:30 [ 7] [ 10] [0320031038] +22:11:30 [ 11] [ 6] [158685] +22:11:30 [ 39] [ 2] [00] +22:11:30 [ 70] [ 3] [301] +22:11:30 ============================================================================ +22:11:30 Calculate Source COMM Id = 2 +22:11:30 ============================================================================ +22:11:30 + + +waiting on router queue for slot.... +22:11:36 ============================================================================ +22:11:36 Slot Id : <31> +22:11:36 Transaction Type : REQUEST +22:11:36 Received From : +22:11:36 ============================================================================ +22:11:36 FNo. Len. Field Value +22:11:36 ============================================================================ +22:11:36 [ 1] [ 4] [0800] +22:11:36 [ 2] [ 5] [02531] +22:11:36 [ 3] [ 6] [579228] +22:11:36 [ 7] [ 10] [0320151136] +22:11:36 [ 11] [ 6] [807700] +22:11:36 [ 15] [ 10] [0320151136] +22:11:36 [ 37] [ 11] [57922807700] +22:11:36 [ 70] [ 3] [001] +22:11:36 ============================================================================ +22:11:36 + + +waiting on router queue for slot.... +22:11:36 ============================================================================ +22:11:36 Slot Id : <31> +22:11:36 Transaction Type : RESPONSE +22:11:36 Received From : +22:11:36 ============================================================================ +22:11:36 FNo. Len. Field Value +22:11:36 ============================================================================ +22:11:36 [ 1] [ 4] [0810] +22:11:36 [ 7] [ 10] [0320151136] +22:11:36 [ 11] [ 6] [807700] +22:11:36 [ 15] [ 4] [0320] +22:11:36 [ 37] [ 12] [57922807700] +22:11:36 [ 39] [ 2] [00] +22:11:36 [ 70] [ 3] [001] +22:11:36 ============================================================================ +22:11:36 Sending to : +22:11:36 ============================================================================ +22:11:36 + + +waiting on router queue for slot.... +22:11:39 ============================================================================ +22:11:39 Slot Id : <35> +22:11:39 Transaction Type : REQUEST +22:11:39 Received From : +22:11:39 ============================================================================ +22:11:39 FNo. Len. Field Value +22:11:39 ============================================================================ +22:11:39 [ 1] [ 4] [0800] +22:11:39 [ 7] [ 10] [0321052329] +22:11:39 [ 11] [ 6] [222329] +22:11:39 [ 37] [ 12] [57922222329] +22:11:39 [ 70] [ 3] [301] +22:11:39 ============================================================================ +22:11:39 + + +waiting on router queue for slot.... +22:11:39 Sending to : +22:11:39 ============================================================================ +22:11:39 ============================================================================ +22:11:39 Slot Id : <35> +22:11:39 Transaction Type : RESPONSE +22:11:39 Received From : +22:11:39 ============================================================================ +22:11:39 FNo. Len. Field Value +22:11:39 ============================================================================ +22:11:39 [ 1] [ 4] [0810] +22:11:39 [ 7] [ 10] [0321052329] +22:11:39 [ 11] [ 6] [222329] +22:11:39 [ 37] [ 12] [579222223290] +22:11:39 [ 39] [ 2] [00] +22:11:39 [ 70] [ 3] [810] +22:11:39 ============================================================================ +22:11:39 Calculate Source COMM Id = 6 +22:11:39 ============================================================================ +22:11:39 + + +waiting on router queue for slot.... +22:11:46 ============================================================================ +22:11:46 Slot Id : <3> +22:11:46 Transaction Type : REQUEST +22:11:46 Received From : +22:11:46 ============================================================================ +22:11:46 FNo. Len. Field Value +22:11:46 ============================================================================ +22:11:46 [ 1] [ 4] [0800] +22:11:46 [ 7] [ 10] [0320031055] +22:11:46 [ 11] [ 6] [158686] +22:11:46 [ 70] [ 3] [301] +22:11:46 ============================================================================ +22:11:46 + + +waiting on router queue for slot.... +22:11:46 Sending to : +22:11:46 ============================================================================ +22:11:46 ============================================================================ +22:11:46 Slot Id : <3> +22:11:46 Transaction Type : RESPONSE +22:11:46 Received From : +22:11:46 ============================================================================ +22:11:46 FNo. Len. Field Value +22:11:46 ============================================================================ +22:11:46 [ 1] [ 4] [0810] +22:11:46 [ 7] [ 10] [0320031055] +22:11:46 [ 11] [ 6] [158686] +22:11:46 [ 39] [ 2] [00] +22:11:46 [ 70] [ 3] [301] +22:11:46 ============================================================================ +22:11:46 Calculate Source COMM Id = 2 +22:11:46 ============================================================================ +22:11:46 + + +waiting on router queue for slot.... +22:11:57 ============================================================================ +22:11:57 Slot Id : <33> +22:11:57 Transaction Type : REQUEST +22:11:57 Received From : +22:11:57 ============================================================================ +22:11:57 FNo. Len. Field Value +22:11:57 ============================================================================ +22:11:57 [ 1] [ 4] [0800] +22:11:57 [ 7] [ 10] [0320031105] +22:11:57 [ 11] [ 6] [158687] +22:11:57 [ 70] [ 3] [301] +22:11:57 ============================================================================ +22:11:57 + + +waiting on router queue for slot.... +22:11:57 Sending to : +22:11:57 ============================================================================ +22:11:57 ============================================================================ +22:11:57 Slot Id : <33> +22:11:57 Transaction Type : RESPONSE +22:11:57 Received From : +22:11:57 ============================================================================ +22:11:57 FNo. Len. Field Value +22:11:57 ============================================================================ +22:11:57 [ 1] [ 4] [0810] +22:11:57 [ 7] [ 10] [0320031105] +22:11:57 [ 11] [ 6] [158687] +22:11:57 [ 39] [ 2] [00] +22:11:57 [ 70] [ 3] [301] +22:11:57 ============================================================================ +22:11:57 Calculate Source COMM Id = 2 +22:11:57 ============================================================================ +22:11:57 + + +waiting on router queue for slot.... +22:12:14 ============================================================================ +22:12:14 Slot Id : <21> +22:12:14 Transaction Type : REQUEST +22:12:14 Received From : +22:12:14 ============================================================================ +22:12:14 FNo. Len. Field Value +22:12:14 ============================================================================ +22:12:14 [ 1] [ 4] [0800] +22:12:14 [ 7] [ 10] [0320031122] +22:12:14 [ 11] [ 6] [158688] +22:12:14 [ 70] [ 3] [301] +22:12:14 ============================================================================ +22:12:14 + + +waiting on router queue for slot.... +22:12:14 Sending to : +22:12:14 ============================================================================ +22:12:14 ============================================================================ +22:12:14 Slot Id : <21> +22:12:14 Transaction Type : RESPONSE +22:12:14 Received From : +22:12:14 ============================================================================ +22:12:14 FNo. Len. Field Value +22:12:14 ============================================================================ +22:12:14 [ 1] [ 4] [0810] +22:12:14 [ 7] [ 10] [0320031122] +22:12:14 [ 11] [ 6] [158688] +22:12:14 [ 39] [ 2] [00] +22:12:14 [ 70] [ 3] [301] +22:12:14 ============================================================================ +22:12:14 Calculate Source COMM Id = 2 +22:12:14 ============================================================================ +22:12:14 + + +waiting on router queue for slot.... +22:12:25 ============================================================================ +22:12:25 Slot Id : <496> +22:12:25 Transaction Type : REQUEST +22:12:25 Received From : +22:12:25 ============================================================================ +22:12:25 FNo. Len. Field Value +22:12:25 ============================================================================ +22:12:25 [ 1] [ 4] [0800] +22:12:25 [ 7] [ 10] [0320031133] +22:12:25 [ 11] [ 6] [158689] +22:12:25 [ 70] [ 3] [301] +22:12:25 ============================================================================ +22:12:25 + + +waiting on router queue for slot.... +22:12:25 Sending to : +22:12:25 ============================================================================ +22:12:25 ============================================================================ +22:12:25 Slot Id : <496> +22:12:25 Transaction Type : RESPONSE +22:12:25 Received From : +22:12:25 ============================================================================ +22:12:25 FNo. Len. Field Value +22:12:25 ============================================================================ +22:12:25 [ 1] [ 4] [0810] +22:12:25 [ 7] [ 10] [0320031133] +22:12:25 [ 11] [ 6] [158689] +22:12:25 [ 39] [ 2] [00] +22:12:25 [ 70] [ 3] [301] +22:12:25 ============================================================================ +22:12:25 Calculate Source COMM Id = 2 +22:12:25 ============================================================================ +22:12:25 + + +waiting on router queue for slot.... +22:12:36 ============================================================================ +22:12:36 Slot Id : <11> +22:12:36 Transaction Type : REQUEST +22:12:36 Received From : +22:12:36 ============================================================================ +22:12:36 FNo. Len. Field Value +22:12:36 ============================================================================ +22:12:36 [ 1] [ 4] [0200] +22:12:36 [ 2] [ 16] [1808930600026686] +22:12:36 [ 3] [ 6] [010000] +22:12:36 [ 4] [ 12] [000010000000] +22:12:36 [ 7] [ 10] [0320221233] +22:12:36 [ 11] [ 6] [848123] +22:12:36 [ 12] [ 6] [221233] +22:12:36 [ 13] [ 4] [0320] +22:12:36 [ 15] [ 4] [0320] +22:12:36 [ 18] [ 4] [6011] +22:12:36 [ 22] [ 3] [900] +22:12:36 [ 25] [ 2] [02] +22:12:36 [ 28] [ 9] [D00002000] +22:12:36 [ 32] [ 6] [621354] +22:12:36 [ 35] [ 27] [1808930600026686=1803500180] +22:12:36 [ 37] [ 12] [507904424396] +22:12:36 [ 41] [ 8] [03004100] +22:12:36 [ 42] [ 15] [NATIVE ] +22:12:36 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +22:12:36 [ 49] [ 3] [418] +22:12:36 [ 52] [ 16] [BBC12F63A70BB934] +22:12:36 ============================================================================ +22:12:36 + + +waiting on router queue for slot.... +22:12:36 Sending to : +22:12:36 ============================================================================ +22:12:36 Sending to : +22:12:36 ============================================================================ +22:12:37 ============================================================================ +22:12:37 Slot Id : <11> +22:12:37 Transaction Type : REQUEST +22:12:37 Received From : +22:12:37 ============================================================================ +22:12:37 FNo. Len. Field Value +22:12:37 ============================================================================ +22:12:37 [ 1] [ 4] [0200] +22:12:37 [ 2] [ 16] [1808930600026686] +22:12:37 [ 3] [ 6] [010000] +22:12:37 [ 4] [ 12] [000010000000] +22:12:37 [ 7] [ 10] [0320221233] +22:12:37 [ 11] [ 6] [848123] +22:12:37 [ 12] [ 6] [221233] +22:12:37 [ 13] [ 4] [0320] +22:12:37 [ 15] [ 4] [0320] +22:12:37 [ 18] [ 4] [6011] +22:12:37 [ 22] [ 3] [900] +22:12:37 [ 25] [ 2] [02] +22:12:37 [ 28] [ 9] [D00002000] +22:12:37 [ 32] [ 6] [621354] +22:12:37 [ 35] [ 27] [1808930600026686=1803500180] +22:12:37 [ 37] [ 12] [507904424396] +22:12:37 [ 41] [ 8] [03004100] +22:12:37 [ 42] [ 15] [NATIVE ] +22:12:37 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +22:12:37 [ 49] [ 3] [418] +22:12:37 [ 52] [ 16] [BBC12F63A70BB934] +22:12:37 ============================================================================ +22:12:37 + + +waiting on router queue for slot.... +22:12:37 Sending to : +22:12:37 ============================================================================ +22:12:37 ============================================================================ +22:12:37 Slot Id : <11> +22:12:37 Transaction Type : REQUEST +22:12:37 Received From : +22:12:37 ============================================================================ +22:12:37 FNo. Len. Field Value +22:12:37 ============================================================================ +22:12:37 [ 1] [ 4] [0200] +22:12:37 [ 2] [ 16] [1808930600026686] +22:12:37 [ 3] [ 6] [010000] +22:12:37 [ 4] [ 12] [000010000000] +22:12:37 [ 7] [ 10] [0320221233] +22:12:37 [ 11] [ 6] [848123] +22:12:37 [ 12] [ 6] [221233] +22:12:37 [ 13] [ 4] [0320] +22:12:37 [ 15] [ 4] [0320] +22:12:37 [ 18] [ 4] [6011] +22:12:37 [ 22] [ 3] [900] +22:12:37 [ 25] [ 2] [02] +22:12:37 [ 28] [ 9] [D00002000] +22:12:37 [ 32] [ 6] [621354] +22:12:37 [ 35] [ 27] [1808930600026686=1803500180] +22:12:37 [ 37] [ 12] [507904424396] +22:12:37 [ 41] [ 8] [03004100] +22:12:37 [ 42] [ 15] [NATIVE ] +22:12:37 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +22:12:37 [ 49] [ 3] [418] +22:12:37 [ 52] [ 16] [DAB7087911E9A786] +22:12:37 ============================================================================ +22:12:37 + + +waiting on router queue for slot.... +22:12:37 Sending to : <2> +22:12:37 ============================================================================ +22:12:38 ============================================================================ +22:12:38 Slot Id : <9> +22:12:38 Transaction Type : REQUEST +22:12:38 Received From : +22:12:38 ============================================================================ +22:12:38 FNo. Len. Field Value +22:12:38 ============================================================================ +22:12:38 [ 1] [ 4] [0800] +22:12:38 [ 2] [ 5] [02531] +22:12:38 [ 3] [ 6] [579228] +22:12:38 [ 7] [ 10] [0320151238] +22:12:38 [ 11] [ 6] [807701] +22:12:38 [ 15] [ 10] [0320151238] +22:12:38 [ 37] [ 11] [57922807701] +22:12:38 [ 70] [ 3] [001] +22:12:38 ============================================================================ +22:12:38 + + +waiting on router queue for slot.... +22:12:38 ============================================================================ +22:12:38 Slot Id : <9> +22:12:38 Transaction Type : RESPONSE +22:12:38 Received From : +22:12:38 ============================================================================ +22:12:38 FNo. Len. Field Value +22:12:38 ============================================================================ +22:12:38 [ 1] [ 4] [0810] +22:12:38 [ 7] [ 10] [0320151238] +22:12:38 [ 11] [ 6] [807701] +22:12:38 [ 15] [ 4] [0320] +22:12:38 [ 37] [ 12] [57922807701] +22:12:38 [ 39] [ 2] [00] +22:12:38 [ 70] [ 3] [001] +22:12:38 ============================================================================ +22:12:38 Sending to : +22:12:38 ============================================================================ +22:12:38 + + +waiting on router queue for slot.... +22:12:42 ============================================================================ +22:12:42 Slot Id : <11> +22:12:42 Transaction Type : RESPONSE +22:12:42 Received From : +22:12:42 ============================================================================ +22:12:42 FNo. Len. Field Value +22:12:42 ============================================================================ +22:12:42 [ 1] [ 4] [0210] +22:12:42 [ 2] [ 16] [1808930600026686] +22:12:42 [ 3] [ 6] [010000] +22:12:42 [ 4] [ 12] [000010000000] +22:12:42 [ 6] [ 12] [000010000000] +22:12:42 [ 7] [ 10] [0320221233] +22:12:42 [ 11] [ 6] [848123] +22:12:42 [ 12] [ 6] [221233] +22:12:42 [ 13] [ 4] [0320] +22:12:42 [ 18] [ 4] [6011] +22:12:42 [ 19] [ 3] [418] +22:12:42 [ 22] [ 3] [021] +22:12:42 [ 32] [ 6] [621354] +22:12:42 [ 35] [ 27] [1808930600026686=1803500180] +22:12:42 [ 37] [ 12] [507904424396] +22:12:42 [ 38] [ 6] [848123] +22:12:42 [ 39] [ 2] [00] +22:12:42 [ 41] [ 8] [03004100] +22:12:42 [ 49] [ 3] [418] +22:12:42 [ 52] [ 16] [DAB7087911E9A786] +22:12:42 [ 54] [ 20] [1001418C000831615000] +22:12:42 ============================================================================ +22:12:42 Sending to : +22:12:42 ============================================================================ +22:12:42 + + +waiting on router queue for slot.... +22:12:43 ============================================================================ +22:12:43 Slot Id : <11> +22:12:43 Transaction Type : RESPONSE +22:12:43 Received From : +22:12:43 ============================================================================ +22:12:43 FNo. Len. Field Value +22:12:43 ============================================================================ +22:12:43 [ 1] [ 4] [0210] +22:12:43 [ 2] [ 16] [1808930600026686] +22:12:43 [ 3] [ 6] [010000] +22:12:43 [ 4] [ 12] [000010000000] +22:12:43 [ 6] [ 12] [000010000000] +22:12:43 [ 7] [ 10] [0320221233] +22:12:43 [ 11] [ 6] [848123] +22:12:43 [ 12] [ 6] [221233] +22:12:43 [ 13] [ 4] [0320] +22:12:43 [ 18] [ 4] [6011] +22:12:43 [ 19] [ 3] [418] +22:12:43 [ 22] [ 3] [021] +22:12:43 [ 32] [ 6] [621354] +22:12:43 [ 35] [ 27] [1808930600026686=1803500180] +22:12:43 [ 37] [ 12] [507904424396] +22:12:43 [ 38] [ 6] [848123] +22:12:43 [ 39] [ 2] [00] +22:12:43 [ 41] [ 8] [03004100] +22:12:43 [ 49] [ 3] [418] +22:12:43 [ 52] [ 16] [DAB7087911E9A786] +22:12:43 [ 54] [ 20] [1001418C000831615000] +22:12:43 ============================================================================ +22:12:43 Calculate Source COMM Id = 0 +22:12:43 ============================================================================ +22:12:43 + + +waiting on router queue for slot.... +22:12:44 ============================================================================ +22:12:44 Slot Id : <30> +22:12:44 Transaction Type : REQUEST +22:12:44 Received From : +22:12:44 ============================================================================ +22:12:44 FNo. Len. Field Value +22:12:44 ============================================================================ +22:12:44 [ 1] [ 4] [0800] +22:12:44 [ 7] [ 10] [0321052434] +22:12:44 [ 11] [ 6] [222434] +22:12:44 [ 37] [ 12] [57922222434] +22:12:44 [ 70] [ 3] [301] +22:12:44 ============================================================================ +22:12:44 + + +waiting on router queue for slot.... +22:12:44 Sending to : +22:12:44 ============================================================================ +22:12:44 ============================================================================ +22:12:44 Slot Id : <30> +22:12:44 Transaction Type : RESPONSE +22:12:44 Received From : +22:12:44 ============================================================================ +22:12:44 FNo. Len. Field Value +22:12:44 ============================================================================ +22:12:44 [ 1] [ 4] [0810] +22:12:44 [ 7] [ 10] [0321052434] +22:12:44 [ 11] [ 6] [222434] +22:12:44 [ 37] [ 12] [579222224340] +22:12:44 [ 39] [ 2] [00] +22:12:44 [ 70] [ 3] [810] +22:12:44 ============================================================================ +22:12:44 Calculate Source COMM Id = 6 +22:12:44 ============================================================================ +22:12:44 + + +waiting on router queue for slot.... +22:12:52 ============================================================================ +22:12:52 Slot Id : <461> +22:12:52 Transaction Type : REQUEST +22:12:52 Received From : +22:12:52 ============================================================================ +22:12:52 FNo. Len. Field Value +22:12:52 ============================================================================ +22:12:52 [ 1] [ 4] [0800] +22:12:52 [ 7] [ 10] [0320031200] +22:12:52 [ 11] [ 6] [158690] +22:12:52 [ 70] [ 3] [301] +22:12:52 ============================================================================ +22:12:52 + + +waiting on router queue for slot.... +22:12:52 Sending to : +22:12:52 ============================================================================ +22:12:52 ============================================================================ +22:12:52 Slot Id : <461> +22:12:52 Transaction Type : RESPONSE +22:12:52 Received From : +22:12:52 ============================================================================ +22:12:52 FNo. Len. Field Value +22:12:52 ============================================================================ +22:12:52 [ 1] [ 4] [0810] +22:12:52 [ 7] [ 10] [0320031200] +22:12:52 [ 11] [ 6] [158690] +22:12:52 [ 39] [ 2] [00] +22:12:52 [ 70] [ 3] [301] +22:12:52 ============================================================================ +22:12:52 Calculate Source COMM Id = 2 +22:12:52 ============================================================================ +22:12:52 + + +waiting on router queue for slot.... +22:13:03 ============================================================================ +22:13:03 Slot Id : <45> +22:13:03 Transaction Type : REQUEST +22:13:03 Received From : +22:13:03 ============================================================================ +22:13:03 FNo. Len. Field Value +22:13:03 ============================================================================ +22:13:03 [ 1] [ 4] [0800] +22:13:03 [ 7] [ 10] [0320031211] +22:13:03 [ 11] [ 6] [158691] +22:13:03 [ 70] [ 3] [301] +22:13:03 ============================================================================ +22:13:03 + + +waiting on router queue for slot.... +22:13:03 Sending to : +22:13:03 ============================================================================ +22:13:03 ============================================================================ +22:13:03 Slot Id : <45> +22:13:03 Transaction Type : RESPONSE +22:13:03 Received From : +22:13:03 ============================================================================ +22:13:03 FNo. Len. Field Value +22:13:03 ============================================================================ +22:13:03 [ 1] [ 4] [0810] +22:13:03 [ 7] [ 10] [0320031211] +22:13:03 [ 11] [ 6] [158691] +22:13:03 [ 39] [ 2] [00] +22:13:03 [ 70] [ 3] [301] +22:13:03 ============================================================================ +22:13:03 Calculate Source COMM Id = 2 +22:13:03 ============================================================================ +22:13:03 + + +waiting on router queue for slot.... +22:13:14 ============================================================================ +22:13:14 Slot Id : <37> +22:13:14 Transaction Type : REQUEST +22:13:14 Received From : +22:13:14 ============================================================================ +22:13:14 FNo. Len. Field Value +22:13:14 ============================================================================ +22:13:14 [ 1] [ 4] [0800] +22:13:14 [ 7] [ 10] [0320031222] +22:13:14 [ 11] [ 6] [158692] +22:13:14 [ 70] [ 3] [301] +22:13:14 ============================================================================ +22:13:14 + + +waiting on router queue for slot.... +22:13:14 Sending to : +22:13:14 ============================================================================ +22:13:14 ============================================================================ +22:13:14 Slot Id : <37> +22:13:14 Transaction Type : RESPONSE +22:13:14 Received From : +22:13:14 ============================================================================ +22:13:14 FNo. Len. Field Value +22:13:14 ============================================================================ +22:13:14 [ 1] [ 4] [0810] +22:13:14 [ 7] [ 10] [0320031222] +22:13:14 [ 11] [ 6] [158692] +22:13:14 [ 39] [ 2] [00] +22:13:14 [ 70] [ 3] [301] +22:13:14 ============================================================================ +22:13:14 Calculate Source COMM Id = 2 +22:13:14 ============================================================================ +22:13:14 + + +waiting on router queue for slot.... +22:13:25 ============================================================================ +22:13:25 Slot Id : <18> +22:13:25 Transaction Type : REQUEST +22:13:25 Received From : +22:13:25 ============================================================================ +22:13:25 FNo. Len. Field Value +22:13:25 ============================================================================ +22:13:25 [ 1] [ 4] [0800] +22:13:25 [ 7] [ 10] [0320031233] +22:13:25 [ 11] [ 6] [158693] +22:13:25 [ 70] [ 3] [301] +22:13:25 ============================================================================ +22:13:25 + + +waiting on router queue for slot.... +22:13:25 Sending to : +22:13:25 ============================================================================ +22:13:25 ============================================================================ +22:13:25 Slot Id : <18> +22:13:25 Transaction Type : RESPONSE +22:13:25 Received From : +22:13:25 ============================================================================ +22:13:25 FNo. Len. Field Value +22:13:25 ============================================================================ +22:13:25 [ 1] [ 4] [0810] +22:13:25 [ 7] [ 10] [0320031233] +22:13:25 [ 11] [ 6] [158693] +22:13:25 [ 39] [ 2] [00] +22:13:25 [ 70] [ 3] [301] +22:13:25 ============================================================================ +22:13:25 Calculate Source COMM Id = 2 +22:13:25 ============================================================================ +22:13:25 + + +waiting on router queue for slot.... +22:13:36 ============================================================================ +22:13:36 Slot Id : <36> +22:13:36 Transaction Type : REQUEST +22:13:36 Received From : +22:13:36 ============================================================================ +22:13:36 FNo. Len. Field Value +22:13:36 ============================================================================ +22:13:36 [ 1] [ 4] [0800] +22:13:36 [ 7] [ 10] [0320031244] +22:13:36 [ 11] [ 6] [158694] +22:13:36 [ 70] [ 3] [301] +22:13:36 ============================================================================ +22:13:36 + + +waiting on router queue for slot.... +22:13:36 Sending to : +22:13:36 ============================================================================ +22:13:36 ============================================================================ +22:13:36 Slot Id : <36> +22:13:36 Transaction Type : RESPONSE +22:13:36 Received From : +22:13:36 ============================================================================ +22:13:36 FNo. Len. Field Value +22:13:36 ============================================================================ +22:13:36 [ 1] [ 4] [0810] +22:13:36 [ 7] [ 10] [0320031244] +22:13:36 [ 11] [ 6] [158694] +22:13:36 [ 39] [ 2] [00] +22:13:36 [ 70] [ 3] [301] +22:13:36 ============================================================================ +22:13:36 Calculate Source COMM Id = 2 +22:13:36 ============================================================================ +22:13:36 + + +waiting on router queue for slot.... +22:13:40 ============================================================================ +22:13:40 Slot Id : <40> +22:13:40 Transaction Type : REQUEST +22:13:40 Received From : +22:13:40 ============================================================================ +22:13:40 FNo. Len. Field Value +22:13:40 ============================================================================ +22:13:40 [ 1] [ 4] [0800] +22:13:40 [ 2] [ 5] [02531] +22:13:40 [ 3] [ 6] [579228] +22:13:40 [ 7] [ 10] [0320151340] +22:13:40 [ 11] [ 6] [807702] +22:13:40 [ 15] [ 10] [0320151340] +22:13:40 [ 37] [ 11] [57922807702] +22:13:40 [ 70] [ 3] [001] +22:13:40 ============================================================================ +22:13:40 + + +waiting on router queue for slot.... +22:13:40 ============================================================================ +22:13:40 Slot Id : <40> +22:13:40 Transaction Type : RESPONSE +22:13:40 Received From : +22:13:40 ============================================================================ +22:13:40 FNo. Len. Field Value +22:13:40 ============================================================================ +22:13:40 [ 1] [ 4] [0810] +22:13:40 [ 7] [ 10] [0320151340] +22:13:40 [ 11] [ 6] [807702] +22:13:40 [ 15] [ 4] [0320] +22:13:40 [ 37] [ 12] [57922807702] +22:13:40 [ 39] [ 2] [00] +22:13:40 [ 70] [ 3] [001] +22:13:40 ============================================================================ +22:13:40 Sending to : +22:13:40 ============================================================================ +22:13:40 + + +waiting on router queue for slot.... +22:13:47 ============================================================================ +22:13:47 Slot Id : <43> +22:13:47 Transaction Type : REQUEST +22:13:47 Received From : +22:13:47 ============================================================================ +22:13:47 FNo. Len. Field Value +22:13:47 ============================================================================ +22:13:47 [ 1] [ 4] [0800] +22:13:47 [ 7] [ 10] [0320031255] +22:13:47 [ 11] [ 6] [158695] +22:13:47 [ 70] [ 3] [301] +22:13:47 ============================================================================ +22:13:47 + + +waiting on router queue for slot.... +22:13:47 Sending to : +22:13:47 ============================================================================ +22:13:47 ============================================================================ +22:13:47 Slot Id : <43> +22:13:47 Transaction Type : RESPONSE +22:13:47 Received From : +22:13:47 ============================================================================ +22:13:47 FNo. Len. Field Value +22:13:47 ============================================================================ +22:13:47 [ 1] [ 4] [0810] +22:13:47 [ 7] [ 10] [0320031255] +22:13:47 [ 11] [ 6] [158695] +22:13:47 [ 39] [ 2] [00] +22:13:47 [ 70] [ 3] [301] +22:13:47 ============================================================================ +22:13:47 Calculate Source COMM Id = 2 +22:13:47 ============================================================================ +22:13:47 + + +waiting on router queue for slot.... +22:13:49 ============================================================================ +22:13:49 Slot Id : <28> +22:13:49 Transaction Type : REQUEST +22:13:49 Received From : +22:13:49 ============================================================================ +22:13:49 FNo. Len. Field Value +22:13:49 ============================================================================ +22:13:49 [ 1] [ 4] [0800] +22:13:49 [ 7] [ 10] [0321052539] +22:13:49 [ 11] [ 6] [222539] +22:13:49 [ 37] [ 12] [57922222539] +22:13:49 [ 70] [ 3] [301] +22:13:49 ============================================================================ +22:13:49 + + +waiting on router queue for slot.... +22:13:49 Sending to : +22:13:49 ============================================================================ +22:13:49 ============================================================================ +22:13:49 Slot Id : <28> +22:13:49 Transaction Type : RESPONSE +22:13:49 Received From : +22:13:49 ============================================================================ +22:13:49 FNo. Len. Field Value +22:13:49 ============================================================================ +22:13:49 [ 1] [ 4] [0810] +22:13:49 [ 7] [ 10] [0321052539] +22:13:49 [ 11] [ 6] [222539] +22:13:49 [ 37] [ 12] [579222225390] +22:13:49 [ 39] [ 2] [00] +22:13:49 [ 70] [ 3] [810] +22:13:49 ============================================================================ +22:13:49 Calculate Source COMM Id = 6 +22:13:49 ============================================================================ +22:13:49 + + +waiting on router queue for slot.... +22:13:57 ============================================================================ +22:13:57 Slot Id : <497> +22:13:57 Transaction Type : REQUEST +22:13:57 Received From : +22:13:57 ============================================================================ +22:13:57 FNo. Len. Field Value +22:13:57 ============================================================================ +22:13:57 [ 1] [ 4] [0800] +22:13:57 [ 7] [ 10] [0320031305] +22:13:57 [ 11] [ 6] [158696] +22:13:57 [ 70] [ 3] [301] +22:13:57 ============================================================================ +22:13:57 + + +waiting on router queue for slot.... +22:13:57 Sending to : +22:13:57 ============================================================================ +22:13:57 ============================================================================ +22:13:57 Slot Id : <497> +22:13:57 Transaction Type : RESPONSE +22:13:57 Received From : +22:13:57 ============================================================================ +22:13:57 FNo. Len. Field Value +22:13:57 ============================================================================ +22:13:57 [ 1] [ 4] [0810] +22:13:57 [ 7] [ 10] [0320031305] +22:13:57 [ 11] [ 6] [158696] +22:13:57 [ 39] [ 2] [00] +22:13:57 [ 70] [ 3] [301] +22:13:57 ============================================================================ +22:13:57 Calculate Source COMM Id = 2 +22:13:57 ============================================================================ +22:13:57 + + +waiting on router queue for slot.... +22:14:05 ============================================================================ +22:14:05 Slot Id : <55> +22:14:05 Transaction Type : REQUEST +22:14:05 Received From : +22:14:05 ============================================================================ +22:14:05 FNo. Len. Field Value +22:14:05 ============================================================================ +22:14:05 [ 1] [ 4] [0200] +22:14:05 [ 2] [ 16] [6688990700160904] +22:14:05 [ 3] [ 6] [011000] +22:14:05 [ 4] [ 12] [000100000000] +22:14:05 [ 7] [ 10] [0320221401] +22:14:05 [ 11] [ 6] [848163] +22:14:05 [ 12] [ 6] [221401] +22:14:05 [ 13] [ 4] [0320] +22:14:05 [ 15] [ 4] [0320] +22:14:05 [ 18] [ 4] [6011] +22:14:05 [ 22] [ 3] [900] +22:14:05 [ 25] [ 2] [02] +22:14:05 [ 28] [ 9] [D00002000] +22:14:05 [ 32] [ 6] [621354] +22:14:05 [ 35] [ 37] [6688990700160904=43030071090465100000] +22:14:05 [ 37] [ 12] [507903997581] +22:14:05 [ 41] [ 8] [01011500] +22:14:05 [ 42] [ 15] [NATIVE ] +22:14:05 [ 43] [ 40] [Phonhong Market Phonhong LAO] +22:14:05 [ 49] [ 3] [418] +22:14:05 [ 52] [ 16] [294593E16FDF1B65] +22:14:05 ============================================================================ +22:14:05 + + +waiting on router queue for slot.... +22:14:05 Sending to : +22:14:05 ============================================================================ +22:14:05 Sending to : +22:14:05 ============================================================================ +22:14:05 ============================================================================ +22:14:05 Slot Id : <55> +22:14:05 Transaction Type : REQUEST +22:14:05 Received From : +22:14:05 ============================================================================ +22:14:05 FNo. Len. Field Value +22:14:05 ============================================================================ +22:14:05 [ 1] [ 4] [0200] +22:14:05 [ 2] [ 16] [6688990700160904] +22:14:05 [ 3] [ 6] [011000] +22:14:05 [ 4] [ 12] [000100000000] +22:14:05 [ 7] [ 10] [0320221401] +22:14:05 [ 11] [ 6] [848163] +22:14:05 [ 12] [ 6] [221401] +22:14:05 [ 13] [ 4] [0320] +22:14:05 [ 15] [ 4] [0320] +22:14:05 [ 18] [ 4] [6011] +22:14:05 [ 22] [ 3] [900] +22:14:05 [ 25] [ 2] [02] +22:14:05 [ 28] [ 9] [D00002000] +22:14:05 [ 32] [ 6] [621354] +22:14:05 [ 35] [ 37] [6688990700160904=43030071090465100000] +22:14:05 [ 37] [ 12] [507903997581] +22:14:05 [ 41] [ 8] [01011500] +22:14:05 [ 42] [ 15] [NATIVE ] +22:14:05 [ 43] [ 40] [Phonhong Market Phonhong LAO] +22:14:05 [ 49] [ 3] [418] +22:14:05 [ 52] [ 16] [294593E16FDF1B65] +22:14:05 ============================================================================ +22:14:05 + + +waiting on router queue for slot.... +22:14:05 Sending to : +22:14:05 ============================================================================ +22:14:05 ============================================================================ +22:14:05 Slot Id : <55> +22:14:05 Transaction Type : REQUEST +22:14:05 Received From : +22:14:05 ============================================================================ +22:14:05 FNo. Len. Field Value +22:14:05 ============================================================================ +22:14:05 [ 1] [ 4] [0200] +22:14:05 [ 2] [ 16] [6688990700160904] +22:14:05 [ 3] [ 6] [011000] +22:14:05 [ 4] [ 12] [000100000000] +22:14:05 [ 7] [ 10] [0320221401] +22:14:05 [ 11] [ 6] [848163] +22:14:05 [ 12] [ 6] [221401] +22:14:05 [ 13] [ 4] [0320] +22:14:05 [ 15] [ 4] [0320] +22:14:05 [ 18] [ 4] [6011] +22:14:05 [ 22] [ 3] [900] +22:14:05 [ 25] [ 2] [02] +22:14:05 [ 28] [ 9] [D00002000] +22:14:05 [ 32] [ 6] [621354] +22:14:05 [ 35] [ 37] [6688990700160904=43030071090465100000] +22:14:05 [ 37] [ 12] [507903997581] +22:14:05 [ 41] [ 8] [01011500] +22:14:05 [ 42] [ 15] [NATIVE ] +22:14:05 [ 43] [ 40] [Phonhong Market Phonhong LAO] +22:14:05 [ 49] [ 3] [418] +22:14:05 [ 52] [ 16] [6B3E0BEDD13CD59F] +22:14:05 ============================================================================ +22:14:05 + + +waiting on router queue for slot.... +22:14:05 Sending to : <4> +22:14:05 ============================================================================ +22:14:06 ============================================================================ +22:14:06 Slot Id : <55> +22:14:06 Transaction Type : RESPONSE +22:14:06 Received From : +22:14:06 ============================================================================ +22:14:06 FNo. Len. Field Value +22:14:06 ============================================================================ +22:14:06 [ 1] [ 4] [0210] +22:14:06 [ 2] [ 16] [6688990700160904] +22:14:06 [ 3] [ 6] [011000] +22:14:06 [ 4] [ 12] [000100000000] +22:14:06 [ 11] [ 6] [848163] +22:14:06 [ 12] [ 6] [221401] +22:14:06 [ 15] [ 4] [0320] +22:14:06 [ 18] [ 4] [6011] +22:14:06 [ 32] [ 6] [621354] +22:14:06 [ 35] [ 37] [6688990700160904=43030071090465100000] +22:14:06 [ 37] [ 12] [507903997581] +22:14:06 [ 38] [ 6] [655065] +22:14:06 [ 39] [ 2] [00] +22:14:06 [ 41] [ 8] [01011500] +22:14:06 [ 49] [ 3] [418] +22:14:06 [ 54] [ 20] [1002418C002362537898] +22:14:06 ============================================================================ +22:14:06 Sending to : +22:14:06 ============================================================================ +22:14:06 + + +waiting on router queue for slot.... +22:14:08 ============================================================================ +22:14:08 Slot Id : <8> +22:14:08 Transaction Type : REQUEST +22:14:08 Received From : +22:14:08 ============================================================================ +22:14:08 FNo. Len. Field Value +22:14:08 ============================================================================ +22:14:08 [ 1] [ 4] [0800] +22:14:08 [ 7] [ 10] [0320031316] +22:14:08 [ 11] [ 6] [158697] +22:14:08 [ 70] [ 3] [301] +22:14:08 ============================================================================ +22:14:08 + + +waiting on router queue for slot.... +22:14:08 Sending to : +22:14:08 ============================================================================ +22:14:08 ============================================================================ +22:14:08 Slot Id : <8> +22:14:08 Transaction Type : RESPONSE +22:14:08 Received From : +22:14:08 ============================================================================ +22:14:08 FNo. Len. Field Value +22:14:08 ============================================================================ +22:14:08 [ 1] [ 4] [0810] +22:14:08 [ 7] [ 10] [0320031316] +22:14:08 [ 11] [ 6] [158697] +22:14:08 [ 39] [ 2] [00] +22:14:08 [ 70] [ 3] [301] +22:14:08 ============================================================================ +22:14:08 Calculate Source COMM Id = 2 +22:14:08 ============================================================================ +22:14:08 + + +waiting on router queue for slot.... +22:14:08 ============================================================================ +22:14:08 Slot Id : <55> +22:14:08 Transaction Type : RESPONSE +22:14:08 Received From : +22:14:08 ============================================================================ +22:14:08 FNo. Len. Field Value +22:14:08 ============================================================================ +22:14:08 [ 1] [ 4] [0210] +22:14:08 [ 2] [ 16] [6688990700160904] +22:14:08 [ 3] [ 6] [011000] +22:14:08 [ 4] [ 12] [000100000000] +22:14:08 [ 11] [ 6] [848163] +22:14:08 [ 12] [ 6] [221401] +22:14:08 [ 15] [ 4] [0320] +22:14:08 [ 18] [ 4] [6011] +22:14:08 [ 32] [ 6] [621354] +22:14:08 [ 35] [ 37] [6688990700160904=43030071090465100000] +22:14:08 [ 37] [ 12] [507903997581] +22:14:08 [ 38] [ 6] [655065] +22:14:08 [ 39] [ 2] [00] +22:14:08 [ 41] [ 8] [01011500] +22:14:08 [ 49] [ 3] [418] +22:14:08 [ 54] [ 20] [1002418C002362537898] +22:14:08 ============================================================================ +22:14:08 Calculate Source COMM Id = 0 +22:14:08 ============================================================================ +22:14:08 + + +waiting on router queue for slot.... +22:14:24 ============================================================================ +22:14:24 Slot Id : <467> +22:14:24 Transaction Type : REQUEST +22:14:24 Received From : +22:14:24 ============================================================================ +22:14:24 FNo. Len. Field Value +22:14:24 ============================================================================ +22:14:24 [ 1] [ 4] [0800] +22:14:24 [ 7] [ 10] [0320031332] +22:14:24 [ 11] [ 6] [158698] +22:14:24 [ 70] [ 3] [301] +22:14:24 ============================================================================ +22:14:24 + + +waiting on router queue for slot.... +22:14:24 Sending to : +22:14:24 ============================================================================ +22:14:24 ============================================================================ +22:14:24 Slot Id : <467> +22:14:24 Transaction Type : RESPONSE +22:14:24 Received From : +22:14:24 ============================================================================ +22:14:24 FNo. Len. Field Value +22:14:24 ============================================================================ +22:14:24 [ 1] [ 4] [0810] +22:14:24 [ 7] [ 10] [0320031332] +22:14:24 [ 11] [ 6] [158698] +22:14:24 [ 39] [ 2] [00] +22:14:24 [ 70] [ 3] [301] +22:14:24 ============================================================================ +22:14:24 Calculate Source COMM Id = 2 +22:14:24 ============================================================================ +22:14:24 + + +waiting on router queue for slot.... +22:14:35 ============================================================================ +22:14:35 Slot Id : <7> +22:14:35 Transaction Type : REQUEST +22:14:35 Received From : +22:14:35 ============================================================================ +22:14:35 FNo. Len. Field Value +22:14:35 ============================================================================ +22:14:35 [ 1] [ 4] [0800] +22:14:35 [ 7] [ 10] [0320031343] +22:14:35 [ 11] [ 6] [158699] +22:14:35 [ 70] [ 3] [301] +22:14:35 ============================================================================ +22:14:35 + + +waiting on router queue for slot.... +22:14:35 Sending to : +22:14:35 ============================================================================ +22:14:35 ============================================================================ +22:14:35 Slot Id : <7> +22:14:35 Transaction Type : RESPONSE +22:14:35 Received From : +22:14:35 ============================================================================ +22:14:35 FNo. Len. Field Value +22:14:35 ============================================================================ +22:14:35 [ 1] [ 4] [0810] +22:14:35 [ 7] [ 10] [0320031343] +22:14:35 [ 11] [ 6] [158699] +22:14:35 [ 39] [ 2] [00] +22:14:35 [ 70] [ 3] [301] +22:14:35 ============================================================================ +22:14:35 Calculate Source COMM Id = 2 +22:14:35 ============================================================================ +22:14:35 + + +waiting on router queue for slot.... +22:14:42 ============================================================================ +22:14:42 Slot Id : <52> +22:14:42 Transaction Type : REQUEST +22:14:42 Received From : +22:14:42 ============================================================================ +22:14:42 FNo. Len. Field Value +22:14:42 ============================================================================ +22:14:42 [ 1] [ 4] [0800] +22:14:42 [ 2] [ 5] [02531] +22:14:42 [ 3] [ 6] [579228] +22:14:42 [ 7] [ 10] [0320151442] +22:14:42 [ 11] [ 6] [807703] +22:14:42 [ 15] [ 10] [0320151442] +22:14:42 [ 37] [ 11] [57922807703] +22:14:42 [ 70] [ 3] [001] +22:14:42 ============================================================================ +22:14:42 + + +waiting on router queue for slot.... +22:14:42 ============================================================================ +22:14:42 Slot Id : <52> +22:14:42 Transaction Type : RESPONSE +22:14:42 Received From : +22:14:42 ============================================================================ +22:14:42 FNo. Len. Field Value +22:14:42 ============================================================================ +22:14:42 [ 1] [ 4] [0810] +22:14:42 [ 7] [ 10] [0320151442] +22:14:42 [ 11] [ 6] [807703] +22:14:42 [ 15] [ 4] [0320] +22:14:42 [ 37] [ 12] [57922807703] +22:14:42 [ 39] [ 2] [00] +22:14:42 [ 70] [ 3] [001] +22:14:42 ============================================================================ +22:14:42 Sending to : +22:14:42 ============================================================================ +22:14:42 + + +waiting on router queue for slot.... +22:14:45 ============================================================================ +22:14:45 Slot Id : <61> +22:14:45 Transaction Type : REQUEST +22:14:45 Received From : +22:14:45 ============================================================================ +22:14:45 FNo. Len. Field Value +22:14:45 ============================================================================ +22:14:45 [ 1] [ 4] [0800] +22:14:45 [ 7] [ 10] [0320031353] +22:14:45 [ 11] [ 6] [158700] +22:14:45 [ 70] [ 3] [301] +22:14:45 ============================================================================ +22:14:45 + + +waiting on router queue for slot.... +22:14:45 Sending to : +22:14:45 ============================================================================ +22:14:45 ============================================================================ +22:14:45 Slot Id : <61> +22:14:45 Transaction Type : RESPONSE +22:14:45 Received From : +22:14:45 ============================================================================ +22:14:45 FNo. Len. Field Value +22:14:45 ============================================================================ +22:14:45 [ 1] [ 4] [0810] +22:14:45 [ 7] [ 10] [0320031353] +22:14:45 [ 11] [ 6] [158700] +22:14:45 [ 39] [ 2] [00] +22:14:45 [ 70] [ 3] [301] +22:14:45 ============================================================================ +22:14:45 Calculate Source COMM Id = 2 +22:14:45 ============================================================================ +22:14:45 + + +waiting on router queue for slot.... +22:14:54 ============================================================================ +22:14:54 Slot Id : <50> +22:14:54 Transaction Type : REQUEST +22:14:54 Received From : +22:14:54 ============================================================================ +22:14:54 FNo. Len. Field Value +22:14:54 ============================================================================ +22:14:54 [ 1] [ 4] [0800] +22:14:54 [ 7] [ 10] [0321052644] +22:14:54 [ 11] [ 6] [222644] +22:14:54 [ 37] [ 12] [57922222644] +22:14:54 [ 70] [ 3] [301] +22:14:54 ============================================================================ +22:14:54 + + +waiting on router queue for slot.... +22:14:54 Sending to : +22:14:54 ============================================================================ +22:14:54 ============================================================================ +22:14:54 Slot Id : <50> +22:14:54 Transaction Type : RESPONSE +22:14:54 Received From : +22:14:54 ============================================================================ +22:14:54 FNo. Len. Field Value +22:14:54 ============================================================================ +22:14:54 [ 1] [ 4] [0810] +22:14:54 [ 7] [ 10] [0321052644] +22:14:54 [ 11] [ 6] [222644] +22:14:54 [ 37] [ 12] [579222226440] +22:14:54 [ 39] [ 2] [00] +22:14:54 [ 70] [ 3] [810] +22:14:54 ============================================================================ +22:14:54 Calculate Source COMM Id = 6 +22:14:54 ============================================================================ +22:14:54 + + +waiting on router queue for slot.... +22:14:55 ============================================================================ +22:14:55 Slot Id : <44> +22:14:55 Transaction Type : REQUEST +22:14:55 Received From : +22:14:55 ============================================================================ +22:14:55 FNo. Len. Field Value +22:14:55 ============================================================================ +22:14:55 [ 1] [ 4] [0800] +22:14:55 [ 7] [ 10] [0320152242] +22:14:55 [ 11] [ 6] [016938] +22:14:55 [ 37] [ 12] [57922016938] +22:14:55 [ 70] [ 3] [301] +22:14:55 ============================================================================ +22:14:55 + + +waiting on router queue for slot.... +22:14:55 Sending to : +22:14:55 ============================================================================ +22:14:55 ============================================================================ +22:14:55 Slot Id : <44> +22:14:55 Transaction Type : RESPONSE +22:14:55 Received From : +22:14:55 ============================================================================ +22:14:55 FNo. Len. Field Value +22:14:55 ============================================================================ +22:14:55 [ 1] [ 4] [0810] +22:14:55 [ 7] [ 10] [0320152242] +22:14:55 [ 11] [ 6] [016938] +22:14:55 [ 37] [ 12] [579220169380] +22:14:55 [ 39] [ 2] [00] +22:14:55 [ 70] [ 3] [810] +22:14:55 ============================================================================ +22:14:55 Calculate Source COMM Id = 1 +22:14:55 ============================================================================ +22:14:55 + + +waiting on router queue for slot.... +22:14:56 ============================================================================ +22:14:56 Slot Id : <25> +22:14:56 Transaction Type : REQUEST +22:14:56 Received From : +22:14:56 ============================================================================ +22:14:56 FNo. Len. Field Value +22:14:56 ============================================================================ +22:14:56 [ 1] [ 4] [0800] +22:14:56 [ 7] [ 10] [0320031404] +22:14:56 [ 11] [ 6] [158701] +22:14:56 [ 70] [ 3] [301] +22:14:56 ============================================================================ +22:14:56 + + +waiting on router queue for slot.... +22:14:56 Sending to : +22:14:56 ============================================================================ +22:14:56 ============================================================================ +22:14:56 Slot Id : <25> +22:14:56 Transaction Type : RESPONSE +22:14:56 Received From : +22:14:56 ============================================================================ +22:14:56 FNo. Len. Field Value +22:14:56 ============================================================================ +22:14:56 [ 1] [ 4] [0810] +22:14:56 [ 7] [ 10] [0320031404] +22:14:56 [ 11] [ 6] [158701] +22:14:56 [ 39] [ 2] [00] +22:14:56 [ 70] [ 3] [301] +22:14:56 ============================================================================ +22:14:56 Calculate Source COMM Id = 2 +22:14:56 ============================================================================ +22:14:56 + + +waiting on router queue for slot.... +22:15:12 ============================================================================ +22:15:12 Slot Id : <15> +22:15:12 Transaction Type : REQUEST +22:15:12 Received From : +22:15:12 ============================================================================ +22:15:12 FNo. Len. Field Value +22:15:12 ============================================================================ +22:15:12 [ 1] [ 4] [0800] +22:15:12 [ 7] [ 10] [0320031420] +22:15:12 [ 11] [ 6] [158702] +22:15:12 [ 70] [ 3] [301] +22:15:12 ============================================================================ +22:15:12 + + +waiting on router queue for slot.... +22:15:12 Sending to : +22:15:12 ============================================================================ +22:15:12 ============================================================================ +22:15:12 Slot Id : <15> +22:15:12 Transaction Type : RESPONSE +22:15:12 Received From : +22:15:12 ============================================================================ +22:15:12 FNo. Len. Field Value +22:15:12 ============================================================================ +22:15:12 [ 1] [ 4] [0810] +22:15:12 [ 7] [ 10] [0320031420] +22:15:12 [ 11] [ 6] [158702] +22:15:12 [ 39] [ 2] [00] +22:15:12 [ 70] [ 3] [301] +22:15:12 ============================================================================ +22:15:12 Calculate Source COMM Id = 2 +22:15:12 ============================================================================ +22:15:12 + + +waiting on router queue for slot.... +22:15:25 ============================================================================ +22:15:25 Slot Id : <60> +22:15:25 Transaction Type : REQUEST +22:15:25 Received From : +22:15:25 ============================================================================ +22:15:25 FNo. Len. Field Value +22:15:25 ============================================================================ +22:15:25 [ 1] [ 4] [0800] +22:15:25 [ 7] [ 10] [0320031432] +22:15:25 [ 11] [ 6] [158703] +22:15:25 [ 70] [ 3] [301] +22:15:25 ============================================================================ +22:15:25 + + +waiting on router queue for slot.... +22:15:25 Sending to : +22:15:25 ============================================================================ +22:15:25 ============================================================================ +22:15:25 Slot Id : <60> +22:15:25 Transaction Type : RESPONSE +22:15:25 Received From : +22:15:25 ============================================================================ +22:15:25 FNo. Len. Field Value +22:15:25 ============================================================================ +22:15:25 [ 1] [ 4] [0810] +22:15:25 [ 7] [ 10] [0320031432] +22:15:25 [ 11] [ 6] [158703] +22:15:25 [ 39] [ 2] [00] +22:15:25 [ 70] [ 3] [301] +22:15:25 ============================================================================ +22:15:25 Calculate Source COMM Id = 2 +22:15:25 ============================================================================ +22:15:25 + + +waiting on router queue for slot.... +22:15:39 ============================================================================ +22:15:39 Slot Id : <478> +22:15:39 Transaction Type : REQUEST +22:15:39 Received From : +22:15:39 ============================================================================ +22:15:39 FNo. Len. Field Value +22:15:39 ============================================================================ +22:15:39 [ 1] [ 4] [0800] +22:15:39 [ 7] [ 10] [0320031447] +22:15:39 [ 11] [ 6] [158704] +22:15:39 [ 70] [ 3] [301] +22:15:39 ============================================================================ +22:15:39 + + +waiting on router queue for slot.... +22:15:39 Sending to : +22:15:39 ============================================================================ +22:15:39 ============================================================================ +22:15:39 Slot Id : <478> +22:15:39 Transaction Type : RESPONSE +22:15:39 Received From : +22:15:39 ============================================================================ +22:15:39 FNo. Len. Field Value +22:15:39 ============================================================================ +22:15:39 [ 1] [ 4] [0810] +22:15:39 [ 7] [ 10] [0320031447] +22:15:39 [ 11] [ 6] [158704] +22:15:39 [ 39] [ 2] [00] +22:15:39 [ 70] [ 3] [301] +22:15:39 ============================================================================ +22:15:39 Calculate Source COMM Id = 2 +22:15:39 ============================================================================ +22:15:39 + + +waiting on router queue for slot.... +22:15:44 ============================================================================ +22:15:44 Slot Id : <63> +22:15:44 Transaction Type : REQUEST +22:15:44 Received From : +22:15:44 ============================================================================ +22:15:44 FNo. Len. Field Value +22:15:44 ============================================================================ +22:15:44 [ 1] [ 4] [0800] +22:15:44 [ 2] [ 5] [02531] +22:15:44 [ 3] [ 6] [579228] +22:15:44 [ 7] [ 10] [0320151544] +22:15:44 [ 11] [ 6] [807704] +22:15:44 [ 15] [ 10] [0320151544] +22:15:44 [ 37] [ 11] [57922807704] +22:15:44 [ 70] [ 3] [001] +22:15:44 ============================================================================ +22:15:44 + + +waiting on router queue for slot.... +22:15:44 ============================================================================ +22:15:44 Slot Id : <63> +22:15:44 Transaction Type : RESPONSE +22:15:44 Received From : +22:15:44 ============================================================================ +22:15:44 FNo. Len. Field Value +22:15:44 ============================================================================ +22:15:44 [ 1] [ 4] [0810] +22:15:44 [ 7] [ 10] [0320151544] +22:15:44 [ 11] [ 6] [807704] +22:15:44 [ 15] [ 4] [0320] +22:15:44 [ 37] [ 12] [57922807704] +22:15:44 [ 39] [ 2] [00] +22:15:44 [ 70] [ 3] [001] +22:15:44 ============================================================================ +22:15:44 Sending to : +22:15:44 ============================================================================ +22:15:44 + + +waiting on router queue for slot.... +22:15:51 ============================================================================ +22:15:51 Slot Id : <73> +22:15:51 Transaction Type : REQUEST +22:15:51 Received From : +22:15:51 ============================================================================ +22:15:51 FNo. Len. Field Value +22:15:51 ============================================================================ +22:15:51 [ 1] [ 4] [0800] +22:15:51 [ 7] [ 10] [0320031458] +22:15:51 [ 11] [ 6] [158705] +22:15:51 [ 70] [ 3] [301] +22:15:51 ============================================================================ +22:15:51 + + +waiting on router queue for slot.... +22:15:51 Sending to : +22:15:51 ============================================================================ +22:15:51 ============================================================================ +22:15:51 Slot Id : <73> +22:15:51 Transaction Type : RESPONSE +22:15:51 Received From : +22:15:51 ============================================================================ +22:15:51 FNo. Len. Field Value +22:15:51 ============================================================================ +22:15:51 [ 1] [ 4] [0810] +22:15:51 [ 7] [ 10] [0320031458] +22:15:51 [ 11] [ 6] [158705] +22:15:51 [ 39] [ 2] [00] +22:15:51 [ 70] [ 3] [301] +22:15:51 ============================================================================ +22:15:51 Calculate Source COMM Id = 2 +22:15:51 ============================================================================ +22:15:51 + + +waiting on router queue for slot.... +22:15:59 ============================================================================ +22:15:59 Slot Id : <38> +22:15:59 Transaction Type : REQUEST +22:15:59 Received From : +22:15:59 ============================================================================ +22:15:59 FNo. Len. Field Value +22:15:59 ============================================================================ +22:15:59 [ 1] [ 4] [0800] +22:15:59 [ 7] [ 10] [0321052749] +22:15:59 [ 11] [ 6] [222749] +22:15:59 [ 37] [ 12] [57922222749] +22:15:59 [ 70] [ 3] [301] +22:15:59 ============================================================================ +22:15:59 + + +waiting on router queue for slot.... +22:15:59 Sending to : +22:15:59 ============================================================================ +22:15:59 ============================================================================ +22:15:59 Slot Id : <38> +22:15:59 Transaction Type : RESPONSE +22:15:59 Received From : +22:15:59 ============================================================================ +22:15:59 FNo. Len. Field Value +22:15:59 ============================================================================ +22:15:59 [ 1] [ 4] [0810] +22:15:59 [ 7] [ 10] [0321052749] +22:15:59 [ 11] [ 6] [222749] +22:15:59 [ 37] [ 12] [579222227490] +22:15:59 [ 39] [ 2] [00] +22:15:59 [ 70] [ 3] [810] +22:15:59 ============================================================================ +22:15:59 Calculate Source COMM Id = 6 +22:15:59 ============================================================================ +22:15:59 + + +waiting on router queue for slot.... +22:16:05 ============================================================================ +22:16:05 Slot Id : <68> +22:16:05 Transaction Type : REQUEST +22:16:05 Received From : +22:16:05 ============================================================================ +22:16:05 FNo. Len. Field Value +22:16:05 ============================================================================ +22:16:05 [ 1] [ 4] [0800] +22:16:05 [ 7] [ 10] [0320031514] +22:16:05 [ 11] [ 6] [158706] +22:16:05 [ 70] [ 3] [301] +22:16:05 ============================================================================ +22:16:05 + + +waiting on router queue for slot.... +22:16:05 Sending to : +22:16:05 ============================================================================ +22:16:05 ============================================================================ +22:16:05 Slot Id : <68> +22:16:05 Transaction Type : RESPONSE +22:16:05 Received From : +22:16:05 ============================================================================ +22:16:05 FNo. Len. Field Value +22:16:05 ============================================================================ +22:16:05 [ 1] [ 4] [0810] +22:16:05 [ 7] [ 10] [0320031514] +22:16:05 [ 11] [ 6] [158706] +22:16:05 [ 39] [ 2] [00] +22:16:05 [ 70] [ 3] [301] +22:16:05 ============================================================================ +22:16:05 Calculate Source COMM Id = 2 +22:16:05 ============================================================================ +22:16:05 + + +waiting on router queue for slot.... +22:16:16 ============================================================================ +22:16:16 Slot Id : <32> +22:16:16 Transaction Type : REQUEST +22:16:16 Received From : +22:16:16 ============================================================================ +22:16:16 FNo. Len. Field Value +22:16:16 ============================================================================ +22:16:16 [ 1] [ 4] [0800] +22:16:16 [ 7] [ 10] [0320031524] +22:16:16 [ 11] [ 6] [158707] +22:16:16 [ 70] [ 3] [301] +22:16:16 ============================================================================ +22:16:16 + + +waiting on router queue for slot.... +22:16:16 Sending to : +22:16:16 ============================================================================ +22:16:16 ============================================================================ +22:16:16 Slot Id : <32> +22:16:16 Transaction Type : RESPONSE +22:16:16 Received From : +22:16:16 ============================================================================ +22:16:16 FNo. Len. Field Value +22:16:16 ============================================================================ +22:16:16 [ 1] [ 4] [0810] +22:16:16 [ 7] [ 10] [0320031524] +22:16:16 [ 11] [ 6] [158707] +22:16:16 [ 39] [ 2] [00] +22:16:16 [ 70] [ 3] [301] +22:16:16 ============================================================================ +22:16:16 Calculate Source COMM Id = 2 +22:16:16 ============================================================================ +22:16:16 + + +waiting on router queue for slot.... +22:16:21 ============================================================================ +22:16:21 Slot Id : <26> +22:16:21 Transaction Type : REQUEST +22:16:21 Received From : +22:16:21 ============================================================================ +22:16:21 FNo. Len. Field Value +22:16:21 ============================================================================ +22:16:21 [ 1] [ 4] [0800] +22:16:21 [ 7] [ 10] [0320151412] +22:16:21 [ 11] [ 6] [054751] +22:16:21 [ 37] [ 12] [57922054751] +22:16:21 [ 70] [ 3] [301] +22:16:21 ============================================================================ +22:16:21 + + +waiting on router queue for slot.... +22:16:21 Sending to : +22:16:21 ============================================================================ +22:16:21 ============================================================================ +22:16:21 Slot Id : <26> +22:16:21 Transaction Type : RESPONSE +22:16:21 Received From : +22:16:21 ============================================================================ +22:16:21 FNo. Len. Field Value +22:16:21 ============================================================================ +22:16:21 [ 1] [ 4] [0810] +22:16:21 [ 7] [ 10] [0320151412] +22:16:21 [ 11] [ 6] [054751] +22:16:21 [ 37] [ 12] [579220547510] +22:16:21 [ 39] [ 2] [00] +22:16:21 [ 70] [ 3] [810] +22:16:21 ============================================================================ +22:16:21 Calculate Source COMM Id = 4 +22:16:21 ============================================================================ +22:16:21 + + +waiting on router queue for slot.... +22:16:27 ============================================================================ +22:16:27 Slot Id : <487> +22:16:27 Transaction Type : REQUEST +22:16:27 Received From : +22:16:27 ============================================================================ +22:16:27 FNo. Len. Field Value +22:16:27 ============================================================================ +22:16:27 [ 1] [ 4] [0800] +22:16:27 [ 7] [ 10] [0320031535] +22:16:27 [ 11] [ 6] [158708] +22:16:27 [ 70] [ 3] [301] +22:16:27 ============================================================================ +22:16:27 + + +waiting on router queue for slot.... +22:16:27 Sending to : +22:16:27 ============================================================================ +22:16:27 ============================================================================ +22:16:27 Slot Id : <487> +22:16:27 Transaction Type : RESPONSE +22:16:27 Received From : +22:16:27 ============================================================================ +22:16:27 FNo. Len. Field Value +22:16:27 ============================================================================ +22:16:27 [ 1] [ 4] [0810] +22:16:27 [ 7] [ 10] [0320031535] +22:16:27 [ 11] [ 6] [158708] +22:16:27 [ 39] [ 2] [00] +22:16:27 [ 70] [ 3] [301] +22:16:27 ============================================================================ +22:16:27 Calculate Source COMM Id = 2 +22:16:27 ============================================================================ +22:16:27 + + +waiting on router queue for slot.... +22:16:39 ============================================================================ +22:16:39 Slot Id : <41> +22:16:39 Transaction Type : REQUEST +22:16:39 Received From : +22:16:39 ============================================================================ +22:16:39 FNo. Len. Field Value +22:16:39 ============================================================================ +22:16:39 [ 1] [ 4] [0800] +22:16:39 [ 7] [ 10] [0320031547] +22:16:39 [ 11] [ 6] [158709] +22:16:39 [ 70] [ 3] [301] +22:16:39 ============================================================================ +22:16:39 + + +waiting on router queue for slot.... +22:16:39 Sending to : +22:16:39 ============================================================================ +22:16:39 ============================================================================ +22:16:39 Slot Id : <41> +22:16:39 Transaction Type : RESPONSE +22:16:39 Received From : +22:16:39 ============================================================================ +22:16:39 FNo. Len. Field Value +22:16:39 ============================================================================ +22:16:39 [ 1] [ 4] [0810] +22:16:39 [ 7] [ 10] [0320031547] +22:16:39 [ 11] [ 6] [158709] +22:16:39 [ 39] [ 2] [00] +22:16:39 [ 70] [ 3] [301] +22:16:39 ============================================================================ +22:16:39 Calculate Source COMM Id = 2 +22:16:39 ============================================================================ +22:16:39 + + +waiting on router queue for slot.... +22:16:46 ============================================================================ +22:16:46 Slot Id : <20> +22:16:46 Transaction Type : REQUEST +22:16:46 Received From : +22:16:46 ============================================================================ +22:16:46 FNo. Len. Field Value +22:16:46 ============================================================================ +22:16:46 [ 1] [ 4] [0800] +22:16:46 [ 2] [ 5] [02531] +22:16:46 [ 3] [ 6] [579228] +22:16:46 [ 7] [ 10] [0320151646] +22:16:46 [ 11] [ 6] [807705] +22:16:46 [ 15] [ 10] [0320151646] +22:16:46 [ 37] [ 11] [57922807705] +22:16:46 [ 70] [ 3] [001] +22:16:46 ============================================================================ +22:16:46 + + +waiting on router queue for slot.... +22:16:46 ============================================================================ +22:16:46 Slot Id : <20> +22:16:46 Transaction Type : RESPONSE +22:16:46 Received From : +22:16:46 ============================================================================ +22:16:46 FNo. Len. Field Value +22:16:46 ============================================================================ +22:16:46 [ 1] [ 4] [0810] +22:16:46 [ 7] [ 10] [0320151646] +22:16:46 [ 11] [ 6] [807705] +22:16:46 [ 15] [ 4] [0320] +22:16:46 [ 37] [ 12] [57922807705] +22:16:46 [ 39] [ 2] [00] +22:16:46 [ 70] [ 3] [001] +22:16:46 ============================================================================ +22:16:46 Sending to : +22:16:46 ============================================================================ +22:16:46 + + +waiting on router queue for slot.... +22:16:49 ============================================================================ +22:16:49 Slot Id : <464> +22:16:49 Transaction Type : REQUEST +22:16:49 Received From : +22:16:49 ============================================================================ +22:16:49 FNo. Len. Field Value +22:16:49 ============================================================================ +22:16:49 [ 1] [ 4] [0800] +22:16:49 [ 7] [ 10] [0320031558] +22:16:49 [ 11] [ 6] [158710] +22:16:49 [ 70] [ 3] [301] +22:16:49 ============================================================================ +22:16:49 + + +waiting on router queue for slot.... +22:16:49 Sending to : +22:16:49 ============================================================================ +22:16:49 ============================================================================ +22:16:49 Slot Id : <464> +22:16:49 Transaction Type : RESPONSE +22:16:49 Received From : +22:16:49 ============================================================================ +22:16:49 FNo. Len. Field Value +22:16:49 ============================================================================ +22:16:49 [ 1] [ 4] [0810] +22:16:49 [ 7] [ 10] [0320031558] +22:16:49 [ 11] [ 6] [158710] +22:16:49 [ 39] [ 2] [00] +22:16:49 [ 70] [ 3] [301] +22:16:49 ============================================================================ +22:16:49 Calculate Source COMM Id = 2 +22:16:49 ============================================================================ +22:16:49 + + +waiting on router queue for slot.... +22:17:01 ============================================================================ +22:17:01 Slot Id : <48> +22:17:01 Transaction Type : REQUEST +22:17:01 Received From : +22:17:01 ============================================================================ +22:17:01 FNo. Len. Field Value +22:17:01 ============================================================================ +22:17:01 [ 1] [ 4] [0800] +22:17:01 [ 7] [ 10] [0320031608] +22:17:01 [ 11] [ 6] [158711] +22:17:01 [ 70] [ 3] [301] +22:17:01 ============================================================================ +22:17:01 + + +waiting on router queue for slot.... +22:17:01 Sending to : +22:17:01 ============================================================================ +22:17:01 ============================================================================ +22:17:01 Slot Id : <48> +22:17:01 Transaction Type : RESPONSE +22:17:01 Received From : +22:17:01 ============================================================================ +22:17:01 FNo. Len. Field Value +22:17:01 ============================================================================ +22:17:01 [ 1] [ 4] [0810] +22:17:01 [ 7] [ 10] [0320031608] +22:17:01 [ 11] [ 6] [158711] +22:17:01 [ 39] [ 2] [00] +22:17:01 [ 70] [ 3] [301] +22:17:01 ============================================================================ +22:17:01 Calculate Source COMM Id = 2 +22:17:01 ============================================================================ +22:17:01 + + +waiting on router queue for slot.... +22:17:04 ============================================================================ +22:17:04 Slot Id : <46> +22:17:04 Transaction Type : REQUEST +22:17:04 Received From : +22:17:04 ============================================================================ +22:17:04 FNo. Len. Field Value +22:17:04 ============================================================================ +22:17:04 [ 1] [ 4] [0800] +22:17:04 [ 7] [ 10] [0321052854] +22:17:04 [ 11] [ 6] [222854] +22:17:04 [ 37] [ 12] [57922222854] +22:17:04 [ 70] [ 3] [301] +22:17:04 ============================================================================ +22:17:04 + + +waiting on router queue for slot.... +22:17:04 Sending to : +22:17:04 ============================================================================ +22:17:04 ============================================================================ +22:17:04 Slot Id : <46> +22:17:04 Transaction Type : RESPONSE +22:17:04 Received From : +22:17:04 ============================================================================ +22:17:04 FNo. Len. Field Value +22:17:04 ============================================================================ +22:17:04 [ 1] [ 4] [0810] +22:17:04 [ 7] [ 10] [0321052854] +22:17:04 [ 11] [ 6] [222854] +22:17:04 [ 37] [ 12] [579222228540] +22:17:04 [ 39] [ 2] [00] +22:17:04 [ 70] [ 3] [810] +22:17:04 ============================================================================ +22:17:04 Calculate Source COMM Id = 6 +22:17:04 ============================================================================ +22:17:04 + + +waiting on router queue for slot.... +22:17:16 ============================================================================ +22:17:16 Slot Id : <27> +22:17:16 Transaction Type : REQUEST +22:17:16 Received From : +22:17:16 ============================================================================ +22:17:16 FNo. Len. Field Value +22:17:16 ============================================================================ +22:17:16 [ 1] [ 4] [0800] +22:17:16 [ 7] [ 10] [0320031625] +22:17:16 [ 11] [ 6] [158712] +22:17:16 [ 70] [ 3] [301] +22:17:16 ============================================================================ +22:17:16 + + +waiting on router queue for slot.... +22:17:16 Sending to : +22:17:16 ============================================================================ +22:17:16 ============================================================================ +22:17:16 Slot Id : <27> +22:17:16 Transaction Type : RESPONSE +22:17:16 Received From : +22:17:16 ============================================================================ +22:17:16 FNo. Len. Field Value +22:17:16 ============================================================================ +22:17:16 [ 1] [ 4] [0810] +22:17:16 [ 7] [ 10] [0320031625] +22:17:16 [ 11] [ 6] [158712] +22:17:16 [ 39] [ 2] [00] +22:17:16 [ 70] [ 3] [301] +22:17:16 ============================================================================ +22:17:16 Calculate Source COMM Id = 2 +22:17:16 ============================================================================ +22:17:16 + + +waiting on router queue for slot.... +22:17:27 ============================================================================ +22:17:27 Slot Id : <69> +22:17:27 Transaction Type : REQUEST +22:17:27 Received From : +22:17:27 ============================================================================ +22:17:27 FNo. Len. Field Value +22:17:27 ============================================================================ +22:17:27 [ 1] [ 4] [0800] +22:17:27 [ 7] [ 10] [0320031635] +22:17:27 [ 11] [ 6] [158713] +22:17:27 [ 70] [ 3] [301] +22:17:27 ============================================================================ +22:17:27 + + +waiting on router queue for slot.... +22:17:27 Sending to : +22:17:27 ============================================================================ +22:17:27 ============================================================================ +22:17:27 Slot Id : <69> +22:17:27 Transaction Type : RESPONSE +22:17:27 Received From : +22:17:27 ============================================================================ +22:17:27 FNo. Len. Field Value +22:17:27 ============================================================================ +22:17:27 [ 1] [ 4] [0810] +22:17:27 [ 7] [ 10] [0320031635] +22:17:27 [ 11] [ 6] [158713] +22:17:27 [ 39] [ 2] [00] +22:17:27 [ 70] [ 3] [301] +22:17:27 ============================================================================ +22:17:27 Calculate Source COMM Id = 2 +22:17:27 ============================================================================ +22:17:27 + + +waiting on router queue for slot.... +22:17:38 ============================================================================ +22:17:38 Slot Id : <19> +22:17:38 Transaction Type : REQUEST +22:17:38 Received From : +22:17:38 ============================================================================ +22:17:38 FNo. Len. Field Value +22:17:38 ============================================================================ +22:17:38 [ 1] [ 4] [0800] +22:17:38 [ 7] [ 10] [0320031646] +22:17:38 [ 11] [ 6] [158714] +22:17:38 [ 70] [ 3] [301] +22:17:38 ============================================================================ +22:17:38 + + +waiting on router queue for slot.... +22:17:38 Sending to : +22:17:38 ============================================================================ +22:17:38 ============================================================================ +22:17:38 Slot Id : <19> +22:17:38 Transaction Type : RESPONSE +22:17:38 Received From : +22:17:38 ============================================================================ +22:17:38 FNo. Len. Field Value +22:17:38 ============================================================================ +22:17:38 [ 1] [ 4] [0810] +22:17:38 [ 7] [ 10] [0320031646] +22:17:38 [ 11] [ 6] [158714] +22:17:38 [ 39] [ 2] [00] +22:17:38 [ 70] [ 3] [301] +22:17:38 ============================================================================ +22:17:38 Calculate Source COMM Id = 2 +22:17:38 ============================================================================ +22:17:38 + + +waiting on router queue for slot.... +22:17:48 ============================================================================ +22:17:48 Slot Id : <54> +22:17:48 Transaction Type : REQUEST +22:17:48 Received From : +22:17:48 ============================================================================ +22:17:48 FNo. Len. Field Value +22:17:48 ============================================================================ +22:17:48 [ 1] [ 4] [0800] +22:17:48 [ 2] [ 5] [02531] +22:17:48 [ 3] [ 6] [579228] +22:17:48 [ 7] [ 10] [0320151748] +22:17:48 [ 11] [ 6] [807706] +22:17:48 [ 15] [ 10] [0320151748] +22:17:48 [ 37] [ 11] [57922807706] +22:17:48 [ 70] [ 3] [001] +22:17:48 ============================================================================ +22:17:48 + + +waiting on router queue for slot.... +22:17:48 ============================================================================ +22:17:48 Slot Id : <54> +22:17:48 Transaction Type : RESPONSE +22:17:48 Received From : +22:17:48 ============================================================================ +22:17:48 FNo. Len. Field Value +22:17:48 ============================================================================ +22:17:48 [ 1] [ 4] [0810] +22:17:48 [ 7] [ 10] [0320151748] +22:17:48 [ 11] [ 6] [807706] +22:17:48 [ 15] [ 4] [0320] +22:17:48 [ 37] [ 12] [57922807706] +22:17:48 [ 39] [ 2] [00] +22:17:48 [ 70] [ 3] [001] +22:17:48 ============================================================================ +22:17:48 Sending to : +22:17:48 ============================================================================ +22:17:48 + + +waiting on router queue for slot.... +22:17:48 ============================================================================ +22:17:48 Slot Id : <78> +22:17:48 Transaction Type : REQUEST +22:17:48 Received From : +22:17:48 ============================================================================ +22:17:48 FNo. Len. Field Value +22:17:48 ============================================================================ +22:17:48 [ 1] [ 4] [0800] +22:17:48 [ 7] [ 10] [0320031657] +22:17:48 [ 11] [ 6] [158715] +22:17:48 [ 70] [ 3] [301] +22:17:48 ============================================================================ +22:17:48 + + +waiting on router queue for slot.... +22:17:48 Sending to : +22:17:48 ============================================================================ +22:17:48 ============================================================================ +22:17:48 Slot Id : <78> +22:17:48 Transaction Type : RESPONSE +22:17:48 Received From : +22:17:48 ============================================================================ +22:17:48 FNo. Len. Field Value +22:17:48 ============================================================================ +22:17:48 [ 1] [ 4] [0810] +22:17:48 [ 7] [ 10] [0320031657] +22:17:48 [ 11] [ 6] [158715] +22:17:48 [ 39] [ 2] [00] +22:17:48 [ 70] [ 3] [301] +22:17:48 ============================================================================ +22:17:48 Calculate Source COMM Id = 2 +22:17:48 ============================================================================ +22:17:48 + + +waiting on router queue for slot.... +22:17:59 ============================================================================ +22:17:59 Slot Id : <47> +22:17:59 Transaction Type : REQUEST +22:17:59 Received From : +22:17:59 ============================================================================ +22:17:59 FNo. Len. Field Value +22:17:59 ============================================================================ +22:17:59 [ 1] [ 4] [0800] +22:17:59 [ 7] [ 10] [0320031707] +22:17:59 [ 11] [ 6] [158716] +22:17:59 [ 70] [ 3] [301] +22:17:59 ============================================================================ +22:17:59 + + +waiting on router queue for slot.... +22:17:59 Sending to : +22:17:59 ============================================================================ +22:17:59 ============================================================================ +22:17:59 Slot Id : <47> +22:17:59 Transaction Type : RESPONSE +22:17:59 Received From : +22:17:59 ============================================================================ +22:17:59 FNo. Len. Field Value +22:17:59 ============================================================================ +22:17:59 [ 1] [ 4] [0810] +22:17:59 [ 7] [ 10] [0320031707] +22:17:59 [ 11] [ 6] [158716] +22:17:59 [ 39] [ 2] [00] +22:17:59 [ 70] [ 3] [301] +22:17:59 ============================================================================ +22:17:59 Calculate Source COMM Id = 2 +22:17:59 ============================================================================ +22:17:59 + + +waiting on router queue for slot.... +22:18:09 ============================================================================ +22:18:09 Slot Id : <57> +22:18:09 Transaction Type : REQUEST +22:18:09 Received From : +22:18:09 ============================================================================ +22:18:09 FNo. Len. Field Value +22:18:09 ============================================================================ +22:18:09 [ 1] [ 4] [0800] +22:18:09 [ 7] [ 10] [0321052959] +22:18:09 [ 11] [ 6] [222959] +22:18:09 [ 37] [ 12] [57922222959] +22:18:09 [ 70] [ 3] [301] +22:18:09 ============================================================================ +22:18:09 + + +waiting on router queue for slot.... +22:18:09 Sending to : +22:18:09 ============================================================================ +22:18:09 ============================================================================ +22:18:09 Slot Id : <57> +22:18:09 Transaction Type : RESPONSE +22:18:09 Received From : +22:18:09 ============================================================================ +22:18:09 FNo. Len. Field Value +22:18:09 ============================================================================ +22:18:09 [ 1] [ 4] [0810] +22:18:09 [ 7] [ 10] [0321052959] +22:18:09 [ 11] [ 6] [222959] +22:18:09 [ 37] [ 12] [579222229590] +22:18:09 [ 39] [ 2] [00] +22:18:09 [ 70] [ 3] [810] +22:18:09 ============================================================================ +22:18:09 Calculate Source COMM Id = 6 +22:18:09 ============================================================================ +22:18:09 + + +waiting on router queue for slot.... +22:18:09 ============================================================================ +22:18:09 Slot Id : <24> +22:18:09 Transaction Type : REQUEST +22:18:09 Received From : +22:18:09 ============================================================================ +22:18:09 FNo. Len. Field Value +22:18:09 ============================================================================ +22:18:09 [ 1] [ 4] [0800] +22:18:09 [ 7] [ 10] [0320031718] +22:18:09 [ 11] [ 6] [158717] +22:18:09 [ 70] [ 3] [301] +22:18:09 ============================================================================ +22:18:09 + + +waiting on router queue for slot.... +22:18:09 Sending to : +22:18:09 ============================================================================ +22:18:09 ============================================================================ +22:18:09 Slot Id : <24> +22:18:09 Transaction Type : RESPONSE +22:18:09 Received From : +22:18:09 ============================================================================ +22:18:09 FNo. Len. Field Value +22:18:09 ============================================================================ +22:18:09 [ 1] [ 4] [0810] +22:18:09 [ 7] [ 10] [0320031718] +22:18:09 [ 11] [ 6] [158717] +22:18:09 [ 39] [ 2] [00] +22:18:09 [ 70] [ 3] [301] +22:18:09 ============================================================================ +22:18:09 Calculate Source COMM Id = 2 +22:18:09 ============================================================================ +22:18:09 + + +waiting on router queue for slot.... +22:18:20 ============================================================================ +22:18:20 Slot Id : <34> +22:18:20 Transaction Type : REQUEST +22:18:20 Received From : +22:18:20 ============================================================================ +22:18:20 FNo. Len. Field Value +22:18:20 ============================================================================ +22:18:20 [ 1] [ 4] [0800] +22:18:20 [ 7] [ 10] [0320031728] +22:18:20 [ 11] [ 6] [158718] +22:18:20 [ 70] [ 3] [301] +22:18:20 ============================================================================ +22:18:20 + + +waiting on router queue for slot.... +22:18:20 Sending to : +22:18:20 ============================================================================ +22:18:20 ============================================================================ +22:18:20 Slot Id : <34> +22:18:20 Transaction Type : RESPONSE +22:18:20 Received From : +22:18:20 ============================================================================ +22:18:20 FNo. Len. Field Value +22:18:20 ============================================================================ +22:18:20 [ 1] [ 4] [0810] +22:18:20 [ 7] [ 10] [0320031728] +22:18:20 [ 11] [ 6] [158718] +22:18:20 [ 39] [ 2] [00] +22:18:20 [ 70] [ 3] [301] +22:18:20 ============================================================================ +22:18:20 Calculate Source COMM Id = 2 +22:18:20 ============================================================================ +22:18:20 + + +waiting on router queue for slot.... +22:18:31 ============================================================================ +22:18:31 Slot Id : <49> +22:18:31 Transaction Type : REQUEST +22:18:31 Received From : +22:18:31 ============================================================================ +22:18:31 FNo. Len. Field Value +22:18:31 ============================================================================ +22:18:31 [ 1] [ 4] [0800] +22:18:31 [ 7] [ 10] [0320031739] +22:18:31 [ 11] [ 6] [158719] +22:18:31 [ 70] [ 3] [301] +22:18:31 ============================================================================ +22:18:31 + + +waiting on router queue for slot.... +22:18:31 Sending to : +22:18:31 ============================================================================ +22:18:31 ============================================================================ +22:18:31 Slot Id : <49> +22:18:31 Transaction Type : RESPONSE +22:18:31 Received From : +22:18:31 ============================================================================ +22:18:31 FNo. Len. Field Value +22:18:31 ============================================================================ +22:18:31 [ 1] [ 4] [0810] +22:18:31 [ 7] [ 10] [0320031739] +22:18:31 [ 11] [ 6] [158719] +22:18:31 [ 39] [ 2] [00] +22:18:31 [ 70] [ 3] [301] +22:18:31 ============================================================================ +22:18:31 Calculate Source COMM Id = 2 +22:18:31 ============================================================================ +22:18:31 + + +waiting on router queue for slot.... +22:18:42 ============================================================================ +22:18:42 Slot Id : <81> +22:18:42 Transaction Type : REQUEST +22:18:42 Received From : +22:18:42 ============================================================================ +22:18:42 FNo. Len. Field Value +22:18:42 ============================================================================ +22:18:42 [ 1] [ 4] [0800] +22:18:42 [ 7] [ 10] [0320031750] +22:18:42 [ 11] [ 6] [158720] +22:18:42 [ 70] [ 3] [301] +22:18:42 ============================================================================ +22:18:42 + + +waiting on router queue for slot.... +22:18:42 Sending to : +22:18:42 ============================================================================ +22:18:42 ============================================================================ +22:18:42 Slot Id : <81> +22:18:42 Transaction Type : RESPONSE +22:18:42 Received From : +22:18:42 ============================================================================ +22:18:42 FNo. Len. Field Value +22:18:42 ============================================================================ +22:18:42 [ 1] [ 4] [0810] +22:18:42 [ 7] [ 10] [0320031750] +22:18:42 [ 11] [ 6] [158720] +22:18:42 [ 39] [ 2] [00] +22:18:42 [ 70] [ 3] [301] +22:18:42 ============================================================================ +22:18:42 Calculate Source COMM Id = 2 +22:18:42 ============================================================================ +22:18:42 + + +waiting on router queue for slot.... +22:18:50 ============================================================================ +22:18:50 Slot Id : <42> +22:18:50 Transaction Type : REQUEST +22:18:50 Received From : +22:18:50 ============================================================================ +22:18:50 FNo. Len. Field Value +22:18:50 ============================================================================ +22:18:50 [ 1] [ 4] [0800] +22:18:50 [ 2] [ 5] [02531] +22:18:50 [ 3] [ 6] [579228] +22:18:50 [ 7] [ 10] [0320151850] +22:18:50 [ 11] [ 6] [807707] +22:18:50 [ 15] [ 10] [0320151850] +22:18:50 [ 37] [ 11] [57922807707] +22:18:50 [ 70] [ 3] [001] +22:18:50 ============================================================================ +22:18:50 + + +waiting on router queue for slot.... +22:18:50 ============================================================================ +22:18:50 Slot Id : <42> +22:18:50 Transaction Type : RESPONSE +22:18:50 Received From : +22:18:50 ============================================================================ +22:18:50 FNo. Len. Field Value +22:18:50 ============================================================================ +22:18:50 [ 1] [ 4] [0810] +22:18:50 [ 7] [ 10] [0320151850] +22:18:50 [ 11] [ 6] [807707] +22:18:50 [ 15] [ 4] [0320] +22:18:50 [ 37] [ 12] [57922807707] +22:18:50 [ 39] [ 2] [00] +22:18:50 [ 70] [ 3] [001] +22:18:50 ============================================================================ +22:18:50 Sending to : +22:18:50 ============================================================================ +22:18:50 + + +waiting on router queue for slot.... +22:18:54 ============================================================================ +22:18:54 Slot Id : <88> +22:18:54 Transaction Type : REQUEST +22:18:54 Received From : +22:18:54 ============================================================================ +22:18:54 FNo. Len. Field Value +22:18:54 ============================================================================ +22:18:54 [ 1] [ 4] [0800] +22:18:54 [ 7] [ 10] [0320031801] +22:18:54 [ 11] [ 6] [158721] +22:18:54 [ 70] [ 3] [301] +22:18:54 ============================================================================ +22:18:54 + + +waiting on router queue for slot.... +22:18:54 Sending to : +22:18:54 ============================================================================ +22:18:54 ============================================================================ +22:18:54 Slot Id : <88> +22:18:54 Transaction Type : RESPONSE +22:18:54 Received From : +22:18:54 ============================================================================ +22:18:54 FNo. Len. Field Value +22:18:54 ============================================================================ +22:18:54 [ 1] [ 4] [0810] +22:18:54 [ 7] [ 10] [0320031801] +22:18:54 [ 11] [ 6] [158721] +22:18:54 [ 39] [ 2] [00] +22:18:54 [ 70] [ 3] [301] +22:18:54 ============================================================================ +22:18:54 Calculate Source COMM Id = 2 +22:18:54 ============================================================================ +22:18:54 + + +waiting on router queue for slot.... +22:19:04 ============================================================================ +22:19:04 Slot Id : <86> +22:19:04 Transaction Type : REQUEST +22:19:04 Received From : +22:19:04 ============================================================================ +22:19:04 FNo. Len. Field Value +22:19:04 ============================================================================ +22:19:04 [ 1] [ 4] [0800] +22:19:04 [ 7] [ 10] [0320031812] +22:19:04 [ 11] [ 6] [158722] +22:19:04 [ 70] [ 3] [301] +22:19:04 ============================================================================ +22:19:04 + + +waiting on router queue for slot.... +22:19:04 Sending to : +22:19:04 ============================================================================ +22:19:04 ============================================================================ +22:19:04 Slot Id : <86> +22:19:04 Transaction Type : RESPONSE +22:19:04 Received From : +22:19:04 ============================================================================ +22:19:04 FNo. Len. Field Value +22:19:04 ============================================================================ +22:19:04 [ 1] [ 4] [0810] +22:19:04 [ 7] [ 10] [0320031812] +22:19:04 [ 11] [ 6] [158722] +22:19:04 [ 39] [ 2] [00] +22:19:04 [ 70] [ 3] [301] +22:19:04 ============================================================================ +22:19:04 Calculate Source COMM Id = 2 +22:19:04 ============================================================================ +22:19:04 + + +waiting on router queue for slot.... +22:19:14 ============================================================================ +22:19:14 Slot Id : <89> +22:19:14 Transaction Type : REQUEST +22:19:14 Received From : +22:19:14 ============================================================================ +22:19:14 FNo. Len. Field Value +22:19:14 ============================================================================ +22:19:14 [ 1] [ 4] [0800] +22:19:14 [ 7] [ 10] [0321053104] +22:19:14 [ 11] [ 6] [223104] +22:19:14 [ 37] [ 12] [57922223104] +22:19:14 [ 70] [ 3] [301] +22:19:14 ============================================================================ +22:19:14 + + +waiting on router queue for slot.... +22:19:14 Sending to : +22:19:14 ============================================================================ +22:19:14 ============================================================================ +22:19:14 Slot Id : <89> +22:19:14 Transaction Type : RESPONSE +22:19:14 Received From : +22:19:14 ============================================================================ +22:19:14 FNo. Len. Field Value +22:19:14 ============================================================================ +22:19:14 [ 1] [ 4] [0810] +22:19:14 [ 7] [ 10] [0321053104] +22:19:14 [ 11] [ 6] [223104] +22:19:14 [ 37] [ 12] [579222231040] +22:19:14 [ 39] [ 2] [00] +22:19:14 [ 70] [ 3] [810] +22:19:14 ============================================================================ +22:19:14 Calculate Source COMM Id = 6 +22:19:14 ============================================================================ +22:19:14 + + +waiting on router queue for slot.... +22:19:15 ============================================================================ +22:19:15 Slot Id : <79> +22:19:15 Transaction Type : REQUEST +22:19:15 Received From : +22:19:15 ============================================================================ +22:19:15 FNo. Len. Field Value +22:19:15 ============================================================================ +22:19:15 [ 1] [ 4] [0800] +22:19:15 [ 7] [ 10] [0320031823] +22:19:15 [ 11] [ 6] [158723] +22:19:15 [ 70] [ 3] [301] +22:19:15 ============================================================================ +22:19:15 + + +waiting on router queue for slot.... +22:19:15 Sending to : +22:19:15 ============================================================================ +22:19:15 ============================================================================ +22:19:15 Slot Id : <79> +22:19:15 Transaction Type : RESPONSE +22:19:15 Received From : +22:19:15 ============================================================================ +22:19:15 FNo. Len. Field Value +22:19:15 ============================================================================ +22:19:15 [ 1] [ 4] [0810] +22:19:15 [ 7] [ 10] [0320031823] +22:19:15 [ 11] [ 6] [158723] +22:19:15 [ 39] [ 2] [00] +22:19:15 [ 70] [ 3] [301] +22:19:15 ============================================================================ +22:19:15 Calculate Source COMM Id = 2 +22:19:15 ============================================================================ +22:19:15 + + +waiting on router queue for slot.... +22:19:27 ============================================================================ +22:19:27 Slot Id : <59> +22:19:27 Transaction Type : REQUEST +22:19:27 Received From : +22:19:27 ============================================================================ +22:19:27 FNo. Len. Field Value +22:19:27 ============================================================================ +22:19:27 [ 1] [ 4] [0800] +22:19:27 [ 7] [ 10] [0320031835] +22:19:27 [ 11] [ 6] [158724] +22:19:27 [ 70] [ 3] [301] +22:19:27 ============================================================================ +22:19:27 + + +waiting on router queue for slot.... +22:19:27 Sending to : +22:19:27 ============================================================================ +22:19:27 ============================================================================ +22:19:27 Slot Id : <59> +22:19:27 Transaction Type : RESPONSE +22:19:27 Received From : +22:19:27 ============================================================================ +22:19:27 FNo. Len. Field Value +22:19:27 ============================================================================ +22:19:27 [ 1] [ 4] [0810] +22:19:27 [ 7] [ 10] [0320031835] +22:19:27 [ 11] [ 6] [158724] +22:19:27 [ 39] [ 2] [00] +22:19:27 [ 70] [ 3] [301] +22:19:27 ============================================================================ +22:19:27 Calculate Source COMM Id = 2 +22:19:27 ============================================================================ +22:19:27 + + +waiting on router queue for slot.... +22:19:38 ============================================================================ +22:19:38 Slot Id : <58> +22:19:38 Transaction Type : REQUEST +22:19:38 Received From : +22:19:38 ============================================================================ +22:19:38 FNo. Len. Field Value +22:19:38 ============================================================================ +22:19:38 [ 1] [ 4] [0800] +22:19:38 [ 7] [ 10] [0320031846] +22:19:38 [ 11] [ 6] [158725] +22:19:38 [ 70] [ 3] [301] +22:19:38 ============================================================================ +22:19:38 + + +waiting on router queue for slot.... +22:19:38 Sending to : +22:19:38 ============================================================================ +22:19:38 ============================================================================ +22:19:38 Slot Id : <58> +22:19:38 Transaction Type : RESPONSE +22:19:38 Received From : +22:19:38 ============================================================================ +22:19:38 FNo. Len. Field Value +22:19:38 ============================================================================ +22:19:38 [ 1] [ 4] [0810] +22:19:38 [ 7] [ 10] [0320031846] +22:19:38 [ 11] [ 6] [158725] +22:19:38 [ 39] [ 2] [00] +22:19:38 [ 70] [ 3] [301] +22:19:38 ============================================================================ +22:19:38 Calculate Source COMM Id = 2 +22:19:38 ============================================================================ +22:19:38 + + +waiting on router queue for slot.... +22:19:52 ============================================================================ +22:19:52 Slot Id : <84> +22:19:52 Transaction Type : REQUEST +22:19:52 Received From : +22:19:52 ============================================================================ +22:19:52 FNo. Len. Field Value +22:19:52 ============================================================================ +22:19:52 [ 1] [ 4] [0800] +22:19:52 [ 2] [ 5] [02531] +22:19:52 [ 3] [ 6] [579228] +22:19:52 [ 7] [ 10] [0320151952] +22:19:52 [ 11] [ 6] [807708] +22:19:52 [ 15] [ 10] [0320151952] +22:19:52 [ 37] [ 11] [57922807708] +22:19:52 [ 70] [ 3] [001] +22:19:52 ============================================================================ +22:19:52 + + +waiting on router queue for slot.... +22:19:52 ============================================================================ +22:19:52 Slot Id : <84> +22:19:52 Transaction Type : RESPONSE +22:19:52 Received From : +22:19:52 ============================================================================ +22:19:52 FNo. Len. Field Value +22:19:52 ============================================================================ +22:19:52 [ 1] [ 4] [0810] +22:19:52 [ 7] [ 10] [0320151952] +22:19:52 [ 11] [ 6] [807708] +22:19:52 [ 15] [ 4] [0320] +22:19:52 [ 37] [ 12] [57922807708] +22:19:52 [ 39] [ 2] [00] +22:19:52 [ 70] [ 3] [001] +22:19:52 ============================================================================ +22:19:52 Sending to : +22:19:52 ============================================================================ +22:19:52 + + +waiting on router queue for slot.... +22:19:54 ============================================================================ +22:19:54 Slot Id : <5> +22:19:54 Transaction Type : REQUEST +22:19:54 Received From : +22:19:54 ============================================================================ +22:19:54 FNo. Len. Field Value +22:19:54 ============================================================================ +22:19:54 [ 1] [ 4] [0800] +22:19:54 [ 7] [ 10] [0320031902] +22:19:54 [ 11] [ 6] [158726] +22:19:54 [ 70] [ 3] [301] +22:19:54 ============================================================================ +22:19:54 + + +waiting on router queue for slot.... +22:19:54 Sending to : +22:19:54 ============================================================================ +22:19:54 ============================================================================ +22:19:54 Slot Id : <5> +22:19:54 Transaction Type : RESPONSE +22:19:54 Received From : +22:19:54 ============================================================================ +22:19:54 FNo. Len. Field Value +22:19:54 ============================================================================ +22:19:54 [ 1] [ 4] [0810] +22:19:54 [ 7] [ 10] [0320031902] +22:19:54 [ 11] [ 6] [158726] +22:19:54 [ 39] [ 2] [00] +22:19:54 [ 70] [ 3] [301] +22:19:54 ============================================================================ +22:19:54 Calculate Source COMM Id = 2 +22:19:54 ============================================================================ +22:19:54 + + +waiting on router queue for slot.... +22:19:55 ============================================================================ +22:19:55 Slot Id : <67> +22:19:55 Transaction Type : REQUEST +22:19:55 Received From : +22:19:55 ============================================================================ +22:19:55 FNo. Len. Field Value +22:19:55 ============================================================================ +22:19:55 [ 1] [ 4] [0800] +22:19:55 [ 7] [ 10] [0320152742] +22:19:55 [ 11] [ 6] [091292] +22:19:55 [ 37] [ 12] [57922091292] +22:19:55 [ 70] [ 3] [301] +22:19:55 ============================================================================ +22:19:55 + + +waiting on router queue for slot.... +22:19:55 Sending to : +22:19:55 ============================================================================ +22:19:55 ============================================================================ +22:19:55 Slot Id : <67> +22:19:55 Transaction Type : RESPONSE +22:19:55 Received From : +22:19:55 ============================================================================ +22:19:55 FNo. Len. Field Value +22:19:55 ============================================================================ +22:19:55 [ 1] [ 4] [0810] +22:19:55 [ 7] [ 10] [0320152742] +22:19:55 [ 11] [ 6] [091292] +22:19:55 [ 37] [ 12] [579220912920] +22:19:55 [ 39] [ 2] [00] +22:19:55 [ 70] [ 3] [810] +22:19:55 ============================================================================ +22:19:55 Calculate Source COMM Id = 1 +22:19:55 ============================================================================ +22:19:55 + + +waiting on router queue for slot.... +22:20:05 ============================================================================ +22:20:05 Slot Id : <93> +22:20:05 Transaction Type : REQUEST +22:20:05 Received From : +22:20:05 ============================================================================ +22:20:05 FNo. Len. Field Value +22:20:05 ============================================================================ +22:20:05 [ 1] [ 4] [0800] +22:20:05 [ 7] [ 10] [0320031913] +22:20:05 [ 11] [ 6] [158727] +22:20:05 [ 70] [ 3] [301] +22:20:05 ============================================================================ +22:20:05 + + +waiting on router queue for slot.... +22:20:05 Sending to : +22:20:05 ============================================================================ +22:20:05 ============================================================================ +22:20:05 Slot Id : <93> +22:20:05 Transaction Type : RESPONSE +22:20:05 Received From : +22:20:05 ============================================================================ +22:20:05 FNo. Len. Field Value +22:20:05 ============================================================================ +22:20:05 [ 1] [ 4] [0810] +22:20:05 [ 7] [ 10] [0320031913] +22:20:05 [ 11] [ 6] [158727] +22:20:05 [ 39] [ 2] [00] +22:20:05 [ 70] [ 3] [301] +22:20:05 ============================================================================ +22:20:05 Calculate Source COMM Id = 2 +22:20:05 ============================================================================ +22:20:05 + + +waiting on router queue for slot.... +22:20:19 ============================================================================ +22:20:19 Slot Id : <62> +22:20:19 Transaction Type : REQUEST +22:20:19 Received From : +22:20:19 ============================================================================ +22:20:19 FNo. Len. Field Value +22:20:19 ============================================================================ +22:20:19 [ 1] [ 4] [0800] +22:20:19 [ 7] [ 10] [0321053209] +22:20:19 [ 11] [ 6] [223209] +22:20:19 [ 37] [ 12] [57922223209] +22:20:19 [ 70] [ 3] [301] +22:20:19 ============================================================================ +22:20:19 + + +waiting on router queue for slot.... +22:20:19 Sending to : +22:20:19 ============================================================================ +22:20:19 ============================================================================ +22:20:19 Slot Id : <62> +22:20:19 Transaction Type : RESPONSE +22:20:19 Received From : +22:20:19 ============================================================================ +22:20:19 FNo. Len. Field Value +22:20:19 ============================================================================ +22:20:19 [ 1] [ 4] [0810] +22:20:19 [ 7] [ 10] [0321053209] +22:20:19 [ 11] [ 6] [223209] +22:20:19 [ 37] [ 12] [579222232090] +22:20:19 [ 39] [ 2] [00] +22:20:19 [ 70] [ 3] [810] +22:20:19 ============================================================================ +22:20:19 Calculate Source COMM Id = 6 +22:20:19 ============================================================================ +22:20:19 + + +waiting on router queue for slot.... +22:20:21 ============================================================================ +22:20:21 Slot Id : <39> +22:20:21 Transaction Type : REQUEST +22:20:21 Received From : +22:20:21 ============================================================================ +22:20:21 FNo. Len. Field Value +22:20:21 ============================================================================ +22:20:21 [ 1] [ 4] [0800] +22:20:21 [ 7] [ 10] [0320031929] +22:20:21 [ 11] [ 6] [158728] +22:20:21 [ 70] [ 3] [301] +22:20:21 ============================================================================ +22:20:21 + + +waiting on router queue for slot.... +22:20:21 Sending to : +22:20:21 ============================================================================ +22:20:21 ============================================================================ +22:20:21 Slot Id : <39> +22:20:21 Transaction Type : RESPONSE +22:20:21 Received From : +22:20:21 ============================================================================ +22:20:21 FNo. Len. Field Value +22:20:21 ============================================================================ +22:20:21 [ 1] [ 4] [0810] +22:20:21 [ 7] [ 10] [0320031929] +22:20:21 [ 11] [ 6] [158728] +22:20:21 [ 39] [ 2] [00] +22:20:21 [ 70] [ 3] [301] +22:20:21 ============================================================================ +22:20:21 Calculate Source COMM Id = 2 +22:20:21 ============================================================================ +22:20:21 + + +waiting on router queue for slot.... +22:20:33 ============================================================================ +22:20:33 Slot Id : <56> +22:20:33 Transaction Type : REQUEST +22:20:33 Received From : +22:20:33 ============================================================================ +22:20:33 FNo. Len. Field Value +22:20:33 ============================================================================ +22:20:33 [ 1] [ 4] [0800] +22:20:33 [ 7] [ 10] [0320031941] +22:20:33 [ 11] [ 6] [158729] +22:20:33 [ 70] [ 3] [301] +22:20:33 ============================================================================ +22:20:33 + + +waiting on router queue for slot.... +22:20:33 Sending to : +22:20:33 ============================================================================ +22:20:33 ============================================================================ +22:20:33 Slot Id : <56> +22:20:33 Transaction Type : RESPONSE +22:20:33 Received From : +22:20:33 ============================================================================ +22:20:33 FNo. Len. Field Value +22:20:33 ============================================================================ +22:20:33 [ 1] [ 4] [0810] +22:20:33 [ 7] [ 10] [0320031941] +22:20:33 [ 11] [ 6] [158729] +22:20:33 [ 39] [ 2] [00] +22:20:33 [ 70] [ 3] [301] +22:20:33 ============================================================================ +22:20:33 Calculate Source COMM Id = 2 +22:20:33 ============================================================================ +22:20:33 + + +waiting on router queue for slot.... +22:20:48 ============================================================================ +22:20:48 Slot Id : <82> +22:20:48 Transaction Type : REQUEST +22:20:48 Received From : +22:20:48 ============================================================================ +22:20:48 FNo. Len. Field Value +22:20:48 ============================================================================ +22:20:48 [ 1] [ 4] [0800] +22:20:48 [ 7] [ 10] [0320031957] +22:20:48 [ 11] [ 6] [158730] +22:20:48 [ 70] [ 3] [301] +22:20:48 ============================================================================ +22:20:48 + + +waiting on router queue for slot.... +22:20:48 Sending to : +22:20:48 ============================================================================ +22:20:48 ============================================================================ +22:20:48 Slot Id : <82> +22:20:48 Transaction Type : RESPONSE +22:20:48 Received From : +22:20:48 ============================================================================ +22:20:48 FNo. Len. Field Value +22:20:48 ============================================================================ +22:20:48 [ 1] [ 4] [0810] +22:20:48 [ 7] [ 10] [0320031957] +22:20:48 [ 11] [ 6] [158730] +22:20:48 [ 39] [ 2] [00] +22:20:48 [ 70] [ 3] [301] +22:20:48 ============================================================================ +22:20:48 Calculate Source COMM Id = 2 +22:20:48 ============================================================================ +22:20:48 + + +waiting on router queue for slot.... +22:20:54 ============================================================================ +22:20:54 Slot Id : <51> +22:20:54 Transaction Type : REQUEST +22:20:54 Received From : +22:20:54 ============================================================================ +22:20:54 FNo. Len. Field Value +22:20:54 ============================================================================ +22:20:54 [ 1] [ 4] [0800] +22:20:54 [ 2] [ 5] [02531] +22:20:54 [ 3] [ 6] [579228] +22:20:54 [ 7] [ 10] [0320152054] +22:20:54 [ 11] [ 6] [807709] +22:20:54 [ 15] [ 10] [0320152054] +22:20:54 [ 37] [ 11] [57922807709] +22:20:54 [ 70] [ 3] [001] +22:20:54 ============================================================================ +22:20:54 + + +waiting on router queue for slot.... +22:20:54 ============================================================================ +22:20:54 Slot Id : <51> +22:20:54 Transaction Type : RESPONSE +22:20:54 Received From : +22:20:54 ============================================================================ +22:20:54 FNo. Len. Field Value +22:20:54 ============================================================================ +22:20:54 [ 1] [ 4] [0810] +22:20:54 [ 7] [ 10] [0320152054] +22:20:54 [ 11] [ 6] [807709] +22:20:54 [ 15] [ 4] [0320] +22:20:54 [ 37] [ 12] [57922807709] +22:20:54 [ 39] [ 2] [00] +22:20:54 [ 70] [ 3] [001] +22:20:54 ============================================================================ +22:20:54 Sending to : +22:20:54 ============================================================================ +22:20:54 + + +waiting on router queue for slot.... +22:21:04 ============================================================================ +22:21:04 Slot Id : <64> +22:21:04 Transaction Type : REQUEST +22:21:04 Received From : +22:21:04 ============================================================================ +22:21:04 FNo. Len. Field Value +22:21:04 ============================================================================ +22:21:04 [ 1] [ 4] [0800] +22:21:04 [ 7] [ 10] [0320032012] +22:21:04 [ 11] [ 6] [158731] +22:21:04 [ 70] [ 3] [301] +22:21:04 ============================================================================ +22:21:04 + + +waiting on router queue for slot.... +22:21:04 Sending to : +22:21:04 ============================================================================ +22:21:04 ============================================================================ +22:21:04 Slot Id : <64> +22:21:04 Transaction Type : RESPONSE +22:21:04 Received From : +22:21:04 ============================================================================ +22:21:04 FNo. Len. Field Value +22:21:04 ============================================================================ +22:21:04 [ 1] [ 4] [0810] +22:21:04 [ 7] [ 10] [0320032012] +22:21:04 [ 11] [ 6] [158731] +22:21:04 [ 39] [ 2] [00] +22:21:04 [ 70] [ 3] [301] +22:21:04 ============================================================================ +22:21:04 Calculate Source COMM Id = 2 +22:21:04 ============================================================================ +22:21:04 + + +waiting on router queue for slot.... +22:21:19 ============================================================================ +22:21:19 Slot Id : <100> +22:21:19 Transaction Type : REQUEST +22:21:19 Received From : +22:21:19 ============================================================================ +22:21:19 FNo. Len. Field Value +22:21:19 ============================================================================ +22:21:19 [ 1] [ 4] [0800] +22:21:19 [ 7] [ 10] [0320032027] +22:21:19 [ 11] [ 6] [158732] +22:21:19 [ 70] [ 3] [301] +22:21:19 ============================================================================ +22:21:19 + + +waiting on router queue for slot.... +22:21:19 Sending to : +22:21:19 ============================================================================ +22:21:19 ============================================================================ +22:21:19 Slot Id : <100> +22:21:19 Transaction Type : RESPONSE +22:21:19 Received From : +22:21:19 ============================================================================ +22:21:19 FNo. Len. Field Value +22:21:19 ============================================================================ +22:21:19 [ 1] [ 4] [0810] +22:21:19 [ 7] [ 10] [0320032027] +22:21:19 [ 11] [ 6] [158732] +22:21:19 [ 39] [ 2] [00] +22:21:19 [ 70] [ 3] [301] +22:21:19 ============================================================================ +22:21:19 Calculate Source COMM Id = 2 +22:21:19 ============================================================================ +22:21:19 + + +waiting on router queue for slot.... +22:21:21 ============================================================================ +22:21:21 Slot Id : <65> +22:21:21 Transaction Type : REQUEST +22:21:21 Received From : +22:21:21 ============================================================================ +22:21:21 FNo. Len. Field Value +22:21:21 ============================================================================ +22:21:21 [ 1] [ 4] [0800] +22:21:21 [ 7] [ 10] [0320151912] +22:21:21 [ 11] [ 6] [062924] +22:21:21 [ 37] [ 12] [57922062924] +22:21:21 [ 70] [ 3] [301] +22:21:21 ============================================================================ +22:21:21 + + +waiting on router queue for slot.... +22:21:21 Sending to : +22:21:21 ============================================================================ +22:21:21 ============================================================================ +22:21:21 Slot Id : <65> +22:21:21 Transaction Type : RESPONSE +22:21:21 Received From : +22:21:21 ============================================================================ +22:21:21 FNo. Len. Field Value +22:21:21 ============================================================================ +22:21:21 [ 1] [ 4] [0810] +22:21:21 [ 7] [ 10] [0320151912] +22:21:21 [ 11] [ 6] [062924] +22:21:21 [ 37] [ 12] [579220629240] +22:21:21 [ 39] [ 2] [00] +22:21:21 [ 70] [ 3] [810] +22:21:21 ============================================================================ +22:21:21 Calculate Source COMM Id = 4 +22:21:21 ============================================================================ +22:21:21 + + +waiting on router queue for slot.... +22:21:24 ============================================================================ +22:21:24 Slot Id : <91> +22:21:24 Transaction Type : REQUEST +22:21:24 Received From : +22:21:24 ============================================================================ +22:21:24 FNo. Len. Field Value +22:21:24 ============================================================================ +22:21:24 [ 1] [ 4] [0800] +22:21:24 [ 7] [ 10] [0321053314] +22:21:24 [ 11] [ 6] [223314] +22:21:24 [ 37] [ 12] [57922223314] +22:21:24 [ 70] [ 3] [301] +22:21:24 ============================================================================ +22:21:24 + + +waiting on router queue for slot.... +22:21:24 Sending to : +22:21:24 ============================================================================ +22:21:24 ============================================================================ +22:21:24 Slot Id : <91> +22:21:24 Transaction Type : RESPONSE +22:21:24 Received From : +22:21:24 ============================================================================ +22:21:24 FNo. Len. Field Value +22:21:24 ============================================================================ +22:21:24 [ 1] [ 4] [0810] +22:21:24 [ 7] [ 10] [0321053314] +22:21:24 [ 11] [ 6] [223314] +22:21:24 [ 37] [ 12] [579222233140] +22:21:24 [ 39] [ 2] [00] +22:21:24 [ 70] [ 3] [810] +22:21:24 ============================================================================ +22:21:24 Calculate Source COMM Id = 6 +22:21:24 ============================================================================ +22:21:24 + + +waiting on router queue for slot.... +22:21:29 ============================================================================ +22:21:29 Slot Id : <72> +22:21:29 Transaction Type : REQUEST +22:21:29 Received From : +22:21:29 ============================================================================ +22:21:29 FNo. Len. Field Value +22:21:29 ============================================================================ +22:21:29 [ 1] [ 4] [0800] +22:21:29 [ 7] [ 10] [0320032037] +22:21:29 [ 11] [ 6] [158733] +22:21:29 [ 70] [ 3] [301] +22:21:29 ============================================================================ +22:21:29 + + +waiting on router queue for slot.... +22:21:29 Sending to : +22:21:29 ============================================================================ +22:21:29 ============================================================================ +22:21:29 Slot Id : <72> +22:21:29 Transaction Type : RESPONSE +22:21:29 Received From : +22:21:29 ============================================================================ +22:21:29 FNo. Len. Field Value +22:21:29 ============================================================================ +22:21:29 [ 1] [ 4] [0810] +22:21:29 [ 7] [ 10] [0320032037] +22:21:29 [ 11] [ 6] [158733] +22:21:29 [ 39] [ 2] [00] +22:21:29 [ 70] [ 3] [301] +22:21:29 ============================================================================ +22:21:29 Calculate Source COMM Id = 2 +22:21:29 ============================================================================ +22:21:29 + + +waiting on router queue for slot.... +22:21:40 ============================================================================ +22:21:40 Slot Id : <76> +22:21:40 Transaction Type : REQUEST +22:21:40 Received From : +22:21:40 ============================================================================ +22:21:40 FNo. Len. Field Value +22:21:40 ============================================================================ +22:21:40 [ 1] [ 4] [0800] +22:21:40 [ 7] [ 10] [0320032048] +22:21:40 [ 11] [ 6] [158734] +22:21:40 [ 70] [ 3] [301] +22:21:40 ============================================================================ +22:21:40 + + +waiting on router queue for slot.... +22:21:40 Sending to : +22:21:40 ============================================================================ +22:21:40 ============================================================================ +22:21:40 Slot Id : <76> +22:21:40 Transaction Type : RESPONSE +22:21:40 Received From : +22:21:40 ============================================================================ +22:21:40 FNo. Len. Field Value +22:21:40 ============================================================================ +22:21:40 [ 1] [ 4] [0810] +22:21:40 [ 7] [ 10] [0320032048] +22:21:40 [ 11] [ 6] [158734] +22:21:40 [ 39] [ 2] [00] +22:21:40 [ 70] [ 3] [301] +22:21:40 ============================================================================ +22:21:40 Calculate Source COMM Id = 2 +22:21:40 ============================================================================ +22:21:40 + + +waiting on router queue for slot.... +22:21:51 ============================================================================ +22:21:51 Slot Id : <90> +22:21:51 Transaction Type : REQUEST +22:21:51 Received From : +22:21:51 ============================================================================ +22:21:51 FNo. Len. Field Value +22:21:51 ============================================================================ +22:21:51 [ 1] [ 4] [0800] +22:21:51 [ 7] [ 10] [0320032059] +22:21:51 [ 11] [ 6] [158735] +22:21:51 [ 70] [ 3] [301] +22:21:51 ============================================================================ +22:21:51 + + +waiting on router queue for slot.... +22:21:51 Sending to : +22:21:51 ============================================================================ +22:21:51 ============================================================================ +22:21:51 Slot Id : <90> +22:21:51 Transaction Type : RESPONSE +22:21:51 Received From : +22:21:51 ============================================================================ +22:21:51 FNo. Len. Field Value +22:21:51 ============================================================================ +22:21:51 [ 1] [ 4] [0810] +22:21:51 [ 7] [ 10] [0320032059] +22:21:51 [ 11] [ 6] [158735] +22:21:51 [ 39] [ 2] [00] +22:21:51 [ 70] [ 3] [301] +22:21:51 ============================================================================ +22:21:51 Calculate Source COMM Id = 2 +22:21:51 ============================================================================ +22:21:51 + + +waiting on router queue for slot.... +22:21:56 ============================================================================ +22:21:56 Slot Id : <114> +22:21:56 Transaction Type : REQUEST +22:21:56 Received From : +22:21:56 ============================================================================ +22:21:56 FNo. Len. Field Value +22:21:56 ============================================================================ +22:21:56 [ 1] [ 4] [0800] +22:21:56 [ 2] [ 5] [02531] +22:21:56 [ 3] [ 6] [579228] +22:21:56 [ 7] [ 10] [0320152156] +22:21:56 [ 11] [ 6] [807710] +22:21:56 [ 15] [ 10] [0320152156] +22:21:56 [ 37] [ 11] [57922807710] +22:21:56 [ 70] [ 3] [001] +22:21:56 ============================================================================ +22:21:56 + + +waiting on router queue for slot.... +22:21:56 ============================================================================ +22:21:56 Slot Id : <114> +22:21:56 Transaction Type : RESPONSE +22:21:56 Received From : +22:21:56 ============================================================================ +22:21:56 FNo. Len. Field Value +22:21:56 ============================================================================ +22:21:56 [ 1] [ 4] [0810] +22:21:56 [ 7] [ 10] [0320152156] +22:21:56 [ 11] [ 6] [807710] +22:21:56 [ 15] [ 4] [0320] +22:21:56 [ 37] [ 12] [57922807710] +22:21:56 [ 39] [ 2] [00] +22:21:56 [ 70] [ 3] [001] +22:21:56 ============================================================================ +22:21:56 Sending to : +22:21:56 ============================================================================ +22:21:56 + + +waiting on router queue for slot.... +22:22:00 ============================================================================ +22:22:00 Slot Id : <106> +22:22:00 Transaction Type : REQUEST +22:22:00 Received From : +22:22:00 ============================================================================ +22:22:00 FNo. Len. Field Value +22:22:00 ============================================================================ +22:22:00 [ 1] [ 4] [0800] +22:22:00 [ 7] [ 10] [0320152156] +22:22:00 [ 11] [ 6] [024269] +22:22:00 [ 37] [ 12] [507922024269] +22:22:00 [ 70] [ 3] [001] +22:22:00 ============================================================================ +22:22:00 + + +waiting on router queue for slot.... +22:22:00 Sending to : +22:22:00 ============================================================================ +22:22:00 ============================================================================ +22:22:00 Slot Id : <106> +22:22:00 Transaction Type : RESPONSE +22:22:00 Received From : +22:22:00 ============================================================================ +22:22:00 FNo. Len. Field Value +22:22:00 ============================================================================ +22:22:00 [ 1] [ 4] [0810] +22:22:00 [ 7] [ 10] [0320152156] +22:22:00 [ 11] [ 6] [024269] +22:22:00 [ 37] [ 12] [507922024269] +22:22:00 [ 39] [ 2] [00] +22:22:00 [ 70] [ 3] [001] +22:22:00 ============================================================================ +22:22:00 Calculate Source COMM Id = 0 +22:22:00 ============================================================================ +22:22:00 + + +waiting on router queue for slot.... +22:22:01 ============================================================================ +22:22:01 Slot Id : <83> +22:22:01 Transaction Type : REQUEST +22:22:01 Received From : +22:22:01 ============================================================================ +22:22:01 FNo. Len. Field Value +22:22:01 ============================================================================ +22:22:01 [ 1] [ 4] [0800] +22:22:01 [ 7] [ 10] [0320032109] +22:22:01 [ 11] [ 6] [158736] +22:22:01 [ 70] [ 3] [301] +22:22:01 ============================================================================ +22:22:01 + + +waiting on router queue for slot.... +22:22:01 Sending to : +22:22:01 ============================================================================ +22:22:01 ============================================================================ +22:22:01 Slot Id : <83> +22:22:01 Transaction Type : RESPONSE +22:22:01 Received From : +22:22:01 ============================================================================ +22:22:01 FNo. Len. Field Value +22:22:01 ============================================================================ +22:22:01 [ 1] [ 4] [0810] +22:22:01 [ 7] [ 10] [0320032109] +22:22:01 [ 11] [ 6] [158736] +22:22:01 [ 39] [ 2] [00] +22:22:01 [ 70] [ 3] [301] +22:22:01 ============================================================================ +22:22:01 Calculate Source COMM Id = 2 +22:22:01 ============================================================================ +22:22:01 + + +waiting on router queue for slot.... +22:22:12 ============================================================================ +22:22:12 Slot Id : <66> +22:22:12 Transaction Type : REQUEST +22:22:12 Received From : +22:22:12 ============================================================================ +22:22:12 FNo. Len. Field Value +22:22:12 ============================================================================ +22:22:12 [ 1] [ 4] [0800] +22:22:12 [ 7] [ 10] [0320222159] +22:22:12 [ 11] [ 6] [038738] +22:22:12 [ 37] [ 12] [507922038738] +22:22:12 [ 70] [ 3] [ ] +22:22:12 ============================================================================ +22:22:12 + + +waiting on router queue for slot.... +22:22:12 Sending to : +22:22:12 ============================================================================ +22:22:12 ============================================================================ +22:22:12 Slot Id : <66> +22:22:12 Transaction Type : RESPONSE +22:22:12 Received From : +22:22:12 ============================================================================ +22:22:12 FNo. Len. Field Value +22:22:12 ============================================================================ +22:22:12 [ 1] [ 4] [0810] +22:22:12 [ 7] [ 10] [0320222159] +22:22:12 [ 11] [ 6] [038738] +22:22:12 [ 37] [ 12] [507922038738] +22:22:12 [ 39] [ 2] [91] +22:22:12 [ 70] [ 3] [ ] +22:22:12 ============================================================================ +22:22:12 Calculate Source COMM Id = 3 +22:22:12 ============================================================================ +22:22:12 + + +waiting on router queue for slot.... +22:22:12 ============================================================================ +22:22:12 Slot Id : <99> +22:22:12 Transaction Type : REQUEST +22:22:12 Received From : +22:22:12 ============================================================================ +22:22:12 FNo. Len. Field Value +22:22:12 ============================================================================ +22:22:12 [ 1] [ 4] [0800] +22:22:12 [ 7] [ 10] [0320032120] +22:22:12 [ 11] [ 6] [158737] +22:22:12 [ 70] [ 3] [301] +22:22:12 ============================================================================ +22:22:12 + + +waiting on router queue for slot.... +22:22:12 Sending to : +22:22:12 ============================================================================ +22:22:12 ============================================================================ +22:22:12 Slot Id : <99> +22:22:12 Transaction Type : RESPONSE +22:22:12 Received From : +22:22:12 ============================================================================ +22:22:12 FNo. Len. Field Value +22:22:12 ============================================================================ +22:22:12 [ 1] [ 4] [0810] +22:22:12 [ 7] [ 10] [0320032120] +22:22:12 [ 11] [ 6] [158737] +22:22:12 [ 39] [ 2] [00] +22:22:12 [ 70] [ 3] [301] +22:22:12 ============================================================================ +22:22:12 Calculate Source COMM Id = 2 +22:22:12 ============================================================================ +22:22:12 + + +waiting on router queue for slot.... +22:22:28 ============================================================================ +22:22:28 Slot Id : <107> +22:22:28 Transaction Type : REQUEST +22:22:28 Received From : +22:22:28 ============================================================================ +22:22:28 FNo. Len. Field Value +22:22:28 ============================================================================ +22:22:28 [ 1] [ 4] [0800] +22:22:28 [ 7] [ 10] [0320032136] +22:22:28 [ 11] [ 6] [158738] +22:22:28 [ 70] [ 3] [301] +22:22:28 ============================================================================ +22:22:28 + + +waiting on router queue for slot.... +22:22:28 Sending to : +22:22:28 ============================================================================ +22:22:28 ============================================================================ +22:22:28 Slot Id : <107> +22:22:28 Transaction Type : RESPONSE +22:22:28 Received From : +22:22:28 ============================================================================ +22:22:28 FNo. Len. Field Value +22:22:28 ============================================================================ +22:22:28 [ 1] [ 4] [0810] +22:22:28 [ 7] [ 10] [0320032136] +22:22:28 [ 11] [ 6] [158738] +22:22:28 [ 39] [ 2] [00] +22:22:28 [ 70] [ 3] [301] +22:22:28 ============================================================================ +22:22:28 Calculate Source COMM Id = 2 +22:22:28 ============================================================================ +22:22:28 + + +waiting on router queue for slot.... +22:22:29 ============================================================================ +22:22:29 Slot Id : <121> +22:22:29 Transaction Type : REQUEST +22:22:29 Received From : +22:22:29 ============================================================================ +22:22:29 FNo. Len. Field Value +22:22:29 ============================================================================ +22:22:29 [ 1] [ 4] [0800] +22:22:29 [ 7] [ 10] [0321053419] +22:22:29 [ 11] [ 6] [223419] +22:22:29 [ 37] [ 12] [57922223419] +22:22:29 [ 70] [ 3] [301] +22:22:29 ============================================================================ +22:22:29 + + +waiting on router queue for slot.... +22:22:29 Sending to : +22:22:29 ============================================================================ +22:22:29 ============================================================================ +22:22:29 Slot Id : <121> +22:22:29 Transaction Type : RESPONSE +22:22:29 Received From : +22:22:29 ============================================================================ +22:22:29 FNo. Len. Field Value +22:22:29 ============================================================================ +22:22:29 [ 1] [ 4] [0810] +22:22:29 [ 7] [ 10] [0321053419] +22:22:29 [ 11] [ 6] [223419] +22:22:29 [ 37] [ 12] [579222234190] +22:22:29 [ 39] [ 2] [00] +22:22:29 [ 70] [ 3] [810] +22:22:29 ============================================================================ +22:22:29 Calculate Source COMM Id = 6 +22:22:29 ============================================================================ +22:22:29 + + +waiting on router queue for slot.... +22:22:39 ============================================================================ +22:22:39 Slot Id : <118> +22:22:39 Transaction Type : REQUEST +22:22:39 Received From : +22:22:39 ============================================================================ +22:22:39 FNo. Len. Field Value +22:22:39 ============================================================================ +22:22:39 [ 1] [ 4] [0800] +22:22:39 [ 7] [ 10] [0320032147] +22:22:39 [ 11] [ 6] [158739] +22:22:39 [ 70] [ 3] [301] +22:22:39 ============================================================================ +22:22:39 + + +waiting on router queue for slot.... +22:22:39 Sending to : +22:22:39 ============================================================================ +22:22:39 ============================================================================ +22:22:39 Slot Id : <118> +22:22:39 Transaction Type : RESPONSE +22:22:39 Received From : +22:22:39 ============================================================================ +22:22:39 FNo. Len. Field Value +22:22:39 ============================================================================ +22:22:39 [ 1] [ 4] [0810] +22:22:39 [ 7] [ 10] [0320032147] +22:22:39 [ 11] [ 6] [158739] +22:22:39 [ 39] [ 2] [00] +22:22:39 [ 70] [ 3] [301] +22:22:39 ============================================================================ +22:22:39 Calculate Source COMM Id = 2 +22:22:39 ============================================================================ +22:22:39 + + +waiting on router queue for slot.... +22:22:50 ============================================================================ +22:22:50 Slot Id : <115> +22:22:50 Transaction Type : REQUEST +22:22:50 Received From : +22:22:50 ============================================================================ +22:22:50 FNo. Len. Field Value +22:22:50 ============================================================================ +22:22:50 [ 1] [ 4] [0800] +22:22:50 [ 7] [ 10] [0320032158] +22:22:50 [ 11] [ 6] [158740] +22:22:50 [ 70] [ 3] [301] +22:22:50 ============================================================================ +22:22:50 + + +waiting on router queue for slot.... +22:22:50 Sending to : +22:22:50 ============================================================================ +22:22:50 ============================================================================ +22:22:50 Slot Id : <115> +22:22:50 Transaction Type : RESPONSE +22:22:50 Received From : +22:22:50 ============================================================================ +22:22:50 FNo. Len. Field Value +22:22:50 ============================================================================ +22:22:50 [ 1] [ 4] [0810] +22:22:50 [ 7] [ 10] [0320032158] +22:22:50 [ 11] [ 6] [158740] +22:22:50 [ 39] [ 2] [00] +22:22:50 [ 70] [ 3] [301] +22:22:50 ============================================================================ +22:22:50 Calculate Source COMM Id = 2 +22:22:50 ============================================================================ +22:22:50 + + +waiting on router queue for slot.... +22:22:58 ============================================================================ +22:22:58 Slot Id : <92> +22:22:58 Transaction Type : REQUEST +22:22:58 Received From : +22:22:58 ============================================================================ +22:22:58 FNo. Len. Field Value +22:22:58 ============================================================================ +22:22:58 [ 1] [ 4] [0800] +22:22:58 [ 2] [ 5] [02531] +22:22:58 [ 3] [ 6] [579228] +22:22:58 [ 7] [ 10] [0320152258] +22:22:58 [ 11] [ 6] [807711] +22:22:58 [ 15] [ 10] [0320152258] +22:22:58 [ 37] [ 11] [57922807711] +22:22:58 [ 70] [ 3] [001] +22:22:58 ============================================================================ +22:22:58 + + +waiting on router queue for slot.... +22:22:58 ============================================================================ +22:22:58 Slot Id : <92> +22:22:58 Transaction Type : RESPONSE +22:22:58 Received From : +22:22:58 ============================================================================ +22:22:58 FNo. Len. Field Value +22:22:58 ============================================================================ +22:22:58 [ 1] [ 4] [0810] +22:22:58 [ 7] [ 10] [0320152258] +22:22:58 [ 11] [ 6] [807711] +22:22:58 [ 15] [ 4] [0320] +22:22:58 [ 37] [ 12] [57922807711] +22:22:58 [ 39] [ 2] [00] +22:22:58 [ 70] [ 3] [001] +22:22:58 ============================================================================ +22:22:58 Sending to : +22:22:58 ============================================================================ +22:22:58 + + +waiting on router queue for slot.... +22:23:02 ============================================================================ +22:23:02 Slot Id : <113> +22:23:02 Transaction Type : REQUEST +22:23:02 Received From : +22:23:02 ============================================================================ +22:23:02 FNo. Len. Field Value +22:23:02 ============================================================================ +22:23:02 [ 1] [ 4] [0800] +22:23:02 [ 7] [ 10] [0320032209] +22:23:02 [ 11] [ 6] [158741] +22:23:02 [ 70] [ 3] [301] +22:23:02 ============================================================================ +22:23:02 + + +waiting on router queue for slot.... +22:23:02 Sending to : +22:23:02 ============================================================================ +22:23:02 ============================================================================ +22:23:02 Slot Id : <113> +22:23:02 Transaction Type : RESPONSE +22:23:02 Received From : +22:23:02 ============================================================================ +22:23:02 FNo. Len. Field Value +22:23:02 ============================================================================ +22:23:02 [ 1] [ 4] [0810] +22:23:02 [ 7] [ 10] [0320032209] +22:23:02 [ 11] [ 6] [158741] +22:23:02 [ 39] [ 2] [00] +22:23:02 [ 70] [ 3] [301] +22:23:02 ============================================================================ +22:23:02 Calculate Source COMM Id = 2 +22:23:02 ============================================================================ +22:23:02 + + +waiting on router queue for slot.... +22:23:17 ============================================================================ +22:23:17 Slot Id : <98> +22:23:17 Transaction Type : REQUEST +22:23:17 Received From : +22:23:17 ============================================================================ +22:23:17 FNo. Len. Field Value +22:23:17 ============================================================================ +22:23:17 [ 1] [ 4] [0800] +22:23:17 [ 7] [ 10] [0320032225] +22:23:17 [ 11] [ 6] [158742] +22:23:17 [ 70] [ 3] [301] +22:23:17 ============================================================================ +22:23:17 + + +waiting on router queue for slot.... +22:23:17 Sending to : +22:23:17 ============================================================================ +22:23:17 ============================================================================ +22:23:17 Slot Id : <98> +22:23:17 Transaction Type : RESPONSE +22:23:17 Received From : +22:23:17 ============================================================================ +22:23:17 FNo. Len. Field Value +22:23:17 ============================================================================ +22:23:17 [ 1] [ 4] [0810] +22:23:17 [ 7] [ 10] [0320032225] +22:23:17 [ 11] [ 6] [158742] +22:23:17 [ 39] [ 2] [00] +22:23:17 [ 70] [ 3] [301] +22:23:17 ============================================================================ +22:23:17 Calculate Source COMM Id = 2 +22:23:17 ============================================================================ +22:23:17 + + +waiting on router queue for slot.... +22:23:30 ============================================================================ +22:23:30 Slot Id : <108> +22:23:30 Transaction Type : REQUEST +22:23:30 Received From : +22:23:30 ============================================================================ +22:23:30 FNo. Len. Field Value +22:23:30 ============================================================================ +22:23:30 [ 1] [ 4] [0200] +22:23:30 [ 2] [ 16] [2206991200061596] +22:23:30 [ 3] [ 6] [010000] +22:23:30 [ 4] [ 12] [000030000000] +22:23:30 [ 7] [ 10] [0320222326] +22:23:30 [ 11] [ 6] [848429] +22:23:30 [ 12] [ 6] [222326] +22:23:30 [ 13] [ 4] [0320] +22:23:30 [ 15] [ 4] [0320] +22:23:30 [ 18] [ 4] [6011] +22:23:30 [ 22] [ 3] [900] +22:23:30 [ 25] [ 2] [02] +22:23:30 [ 28] [ 9] [D00002000] +22:23:30 [ 32] [ 6] [621354] +22:23:30 [ 35] [ 32] [2206991200061596=140600016159000] +22:23:30 [ 37] [ 12] [507902827929] +22:23:30 [ 41] [ 8] [01007600] +22:23:30 [ 42] [ 15] [NATIVE ] +22:23:30 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +22:23:30 [ 49] [ 3] [418] +22:23:30 [ 52] [ 16] [7CB9105DD87D7EF5] +22:23:30 ============================================================================ +22:23:30 + + +waiting on router queue for slot.... +22:23:30 Sending to : +22:23:30 ============================================================================ +22:23:30 Sending to : +22:23:30 ============================================================================ +22:23:30 ============================================================================ +22:23:30 Slot Id : <108> +22:23:30 Transaction Type : REQUEST +22:23:30 Received From : +22:23:30 ============================================================================ +22:23:30 FNo. Len. Field Value +22:23:30 ============================================================================ +22:23:30 [ 1] [ 4] [0200] +22:23:30 [ 2] [ 16] [2206991200061596] +22:23:30 [ 3] [ 6] [010000] +22:23:30 [ 4] [ 12] [000030000000] +22:23:30 [ 7] [ 10] [0320222326] +22:23:30 [ 11] [ 6] [848429] +22:23:30 [ 12] [ 6] [222326] +22:23:30 [ 13] [ 4] [0320] +22:23:30 [ 15] [ 4] [0320] +22:23:30 [ 18] [ 4] [6011] +22:23:30 [ 22] [ 3] [900] +22:23:30 [ 25] [ 2] [02] +22:23:30 [ 28] [ 9] [D00002000] +22:23:30 [ 32] [ 6] [621354] +22:23:30 [ 35] [ 32] [2206991200061596=140600016159000] +22:23:30 [ 37] [ 12] [507902827929] +22:23:30 [ 41] [ 8] [01007600] +22:23:30 [ 42] [ 15] [NATIVE ] +22:23:30 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +22:23:30 [ 49] [ 3] [418] +22:23:30 [ 52] [ 16] [7CB9105DD87D7EF5] +22:23:30 ============================================================================ +22:23:30 + + +waiting on router queue for slot.... +22:23:30 Sending to : +22:23:30 ============================================================================ +22:23:30 ============================================================================ +22:23:30 Slot Id : <108> +22:23:30 Transaction Type : REQUEST +22:23:30 Received From : +22:23:30 ============================================================================ +22:23:30 FNo. Len. Field Value +22:23:30 ============================================================================ +22:23:30 [ 1] [ 4] [0200] +22:23:30 [ 2] [ 16] [2206991200061596] +22:23:30 [ 3] [ 6] [010000] +22:23:30 [ 4] [ 12] [000030000000] +22:23:30 [ 7] [ 10] [0320222326] +22:23:30 [ 11] [ 6] [848429] +22:23:30 [ 12] [ 6] [222326] +22:23:30 [ 13] [ 4] [0320] +22:23:30 [ 15] [ 4] [0320] +22:23:30 [ 18] [ 4] [6011] +22:23:30 [ 22] [ 3] [900] +22:23:30 [ 25] [ 2] [02] +22:23:30 [ 28] [ 9] [D00002000] +22:23:30 [ 32] [ 6] [621354] +22:23:30 [ 35] [ 32] [2206991200061596=140600016159000] +22:23:30 [ 37] [ 12] [507902827929] +22:23:30 [ 41] [ 8] [01007600] +22:23:30 [ 42] [ 15] [NATIVE ] +22:23:30 [ 43] [ 40] [Sibounheuang school Xaysetha LAO] +22:23:30 [ 49] [ 3] [418] +22:23:30 [ 52] [ 16] [F1416B954FD4EF89] +22:23:30 ============================================================================ +22:23:30 + + +waiting on router queue for slot.... +22:23:30 Sending to : <1> +22:23:30 ============================================================================ +22:23:31 ============================================================================ +22:23:31 Slot Id : <74> +22:23:31 Transaction Type : REQUEST +22:23:31 Received From : +22:23:31 ============================================================================ +22:23:31 FNo. Len. Field Value +22:23:31 ============================================================================ +22:23:31 [ 1] [ 4] [0800] +22:23:31 [ 7] [ 10] [0320032240] +22:23:31 [ 11] [ 6] [158743] +22:23:31 [ 70] [ 3] [301] +22:23:31 ============================================================================ +22:23:31 + + +waiting on router queue for slot.... +22:23:31 Sending to : +22:23:31 ============================================================================ +22:23:31 ============================================================================ +22:23:31 Slot Id : <74> +22:23:31 Transaction Type : RESPONSE +22:23:31 Received From : +22:23:31 ============================================================================ +22:23:31 FNo. Len. Field Value +22:23:31 ============================================================================ +22:23:31 [ 1] [ 4] [0810] +22:23:31 [ 7] [ 10] [0320032240] +22:23:31 [ 11] [ 6] [158743] +22:23:31 [ 39] [ 2] [00] +22:23:31 [ 70] [ 3] [301] +22:23:31 ============================================================================ +22:23:31 Calculate Source COMM Id = 2 +22:23:31 ============================================================================ +22:23:31 + + +waiting on router queue for slot.... +22:23:34 ============================================================================ +22:23:34 Slot Id : <75> +22:23:34 Transaction Type : REQUEST +22:23:34 Received From : +22:23:34 ============================================================================ +22:23:34 FNo. Len. Field Value +22:23:34 ============================================================================ +22:23:34 [ 1] [ 4] [0800] +22:23:34 [ 7] [ 10] [0321053524] +22:23:34 [ 11] [ 6] [223524] +22:23:34 [ 37] [ 12] [57922223524] +22:23:34 [ 70] [ 3] [301] +22:23:34 ============================================================================ +22:23:34 + + +waiting on router queue for slot.... +22:23:34 Sending to : +22:23:34 ============================================================================ +22:23:34 ============================================================================ +22:23:34 Slot Id : <75> +22:23:34 Transaction Type : RESPONSE +22:23:34 Received From : +22:23:34 ============================================================================ +22:23:34 FNo. Len. Field Value +22:23:34 ============================================================================ +22:23:34 [ 1] [ 4] [0810] +22:23:34 [ 7] [ 10] [0321053524] +22:23:34 [ 11] [ 6] [223524] +22:23:34 [ 37] [ 12] [579222235240] +22:23:34 [ 39] [ 2] [00] +22:23:34 [ 70] [ 3] [810] +22:23:34 ============================================================================ +22:23:34 Calculate Source COMM Id = 6 +22:23:34 ============================================================================ +22:23:34 + + +waiting on router queue for slot.... +22:23:35 ============================================================================ +22:23:35 Slot Id : <108> +22:23:35 Transaction Type : RESPONSE +22:23:35 Received From : +22:23:35 ============================================================================ +22:23:35 FNo. Len. Field Value +22:23:35 ============================================================================ +22:23:35 [ 1] [ 4] [0210] +22:23:35 [ 2] [ 16] [2206991200061596] +22:23:35 [ 3] [ 6] [010000] +22:23:35 [ 4] [ 12] [000030000000] +22:23:35 [ 7] [ 10] [0320222326] +22:23:35 [ 11] [ 6] [848429] +22:23:35 [ 12] [ 6] [222326] +22:23:35 [ 13] [ 4] [0320] +22:23:35 [ 15] [ 4] [0320] +22:23:35 [ 18] [ 4] [6011] +22:23:35 [ 32] [ 6] [621354] +22:23:35 [ 35] [ 32] [2206991200061596=140600016159000] +22:23:35 [ 37] [ 12] [507902827929] +22:23:35 [ 38] [ 6] [783582] +22:23:35 [ 39] [ 2] [00] +22:23:35 [ 41] [ 8] [01007600] +22:23:35 [ 49] [ 3] [418] +22:23:35 [ 54] [ 40] [0001418C0000111410000002418C000011141000] +22:23:35 ============================================================================ +22:23:35 Sending to : +22:23:35 ============================================================================ +22:23:35 + + +waiting on router queue for slot.... +22:23:37 ============================================================================ +22:23:37 Slot Id : <108> +22:23:37 Transaction Type : RESPONSE +22:23:37 Received From : +22:23:37 ============================================================================ +22:23:37 FNo. Len. Field Value +22:23:37 ============================================================================ +22:23:37 [ 1] [ 4] [0210] +22:23:37 [ 2] [ 16] [2206991200061596] +22:23:37 [ 3] [ 6] [010000] +22:23:37 [ 4] [ 12] [000030000000] +22:23:37 [ 7] [ 10] [0320222326] +22:23:37 [ 11] [ 6] [848429] +22:23:37 [ 12] [ 6] [222326] +22:23:37 [ 13] [ 4] [0320] +22:23:37 [ 15] [ 4] [0320] +22:23:37 [ 18] [ 4] [6011] +22:23:37 [ 32] [ 6] [621354] +22:23:37 [ 35] [ 32] [2206991200061596=140600016159000] +22:23:37 [ 37] [ 12] [507902827929] +22:23:37 [ 38] [ 6] [783582] +22:23:37 [ 39] [ 2] [00] +22:23:37 [ 41] [ 8] [01007600] +22:23:37 [ 49] [ 3] [418] +22:23:37 [ 54] [ 40] [0001418C0000111410000002418C000011141000] +22:23:37 ============================================================================ +22:23:37 Calculate Source COMM Id = 0 +22:23:37 ============================================================================ +22:23:37 + + +waiting on router queue for slot.... +22:23:43 ============================================================================ +22:23:43 Slot Id : <94> +22:23:43 Transaction Type : REQUEST +22:23:43 Received From : +22:23:43 ============================================================================ +22:23:43 FNo. Len. Field Value +22:23:43 ============================================================================ +22:23:43 [ 1] [ 4] [0800] +22:23:43 [ 7] [ 10] [0320032252] +22:23:43 [ 11] [ 6] [158744] +22:23:43 [ 70] [ 3] [301] +22:23:43 ============================================================================ +22:23:43 + + +waiting on router queue for slot.... +22:23:43 Sending to : +22:23:43 ============================================================================ +22:23:43 ============================================================================ +22:23:43 Slot Id : <94> +22:23:43 Transaction Type : RESPONSE +22:23:43 Received From : +22:23:43 ============================================================================ +22:23:43 FNo. Len. Field Value +22:23:43 ============================================================================ +22:23:43 [ 1] [ 4] [0810] +22:23:43 [ 7] [ 10] [0320032252] +22:23:43 [ 11] [ 6] [158744] +22:23:43 [ 39] [ 2] [00] +22:23:43 [ 70] [ 3] [301] +22:23:43 ============================================================================ +22:23:43 Calculate Source COMM Id = 2 +22:23:43 ============================================================================ +22:23:43 + + +waiting on router queue for slot.... +22:23:54 ============================================================================ +22:23:54 Slot Id : <127> +22:23:54 Transaction Type : REQUEST +22:23:54 Received From : +22:23:54 ============================================================================ +22:23:54 FNo. Len. Field Value +22:23:54 ============================================================================ +22:23:54 [ 1] [ 4] [0800] +22:23:54 [ 7] [ 10] [0320032302] +22:23:54 [ 11] [ 6] [158745] +22:23:54 [ 70] [ 3] [301] +22:23:54 ============================================================================ +22:23:54 + + +waiting on router queue for slot.... +22:23:54 Sending to : +22:23:54 ============================================================================ +22:23:54 ============================================================================ +22:23:54 Slot Id : <127> +22:23:54 Transaction Type : RESPONSE +22:23:54 Received From : +22:23:54 ============================================================================ +22:23:54 FNo. Len. Field Value +22:23:54 ============================================================================ +22:23:54 [ 1] [ 4] [0810] +22:23:54 [ 7] [ 10] [0320032302] +22:23:54 [ 11] [ 6] [158745] +22:23:54 [ 39] [ 2] [00] +22:23:54 [ 70] [ 3] [301] +22:23:54 ============================================================================ +22:23:54 Calculate Source COMM Id = 2 +22:23:54 ============================================================================ +22:23:54 + + +waiting on router queue for slot.... +22:24:00 ============================================================================ +22:24:00 Slot Id : <95> +22:24:00 Transaction Type : REQUEST +22:24:00 Received From : +22:24:00 ============================================================================ +22:24:00 FNo. Len. Field Value +22:24:00 ============================================================================ +22:24:00 [ 1] [ 4] [0800] +22:24:00 [ 2] [ 5] [02531] +22:24:00 [ 3] [ 6] [579228] +22:24:00 [ 7] [ 10] [0320152400] +22:24:00 [ 11] [ 6] [807712] +22:24:00 [ 15] [ 10] [0320152400] +22:24:00 [ 37] [ 11] [57922807712] +22:24:00 [ 70] [ 3] [001] +22:24:00 ============================================================================ +22:24:00 + + +waiting on router queue for slot.... +22:24:00 ============================================================================ +22:24:00 Slot Id : <95> +22:24:00 Transaction Type : RESPONSE +22:24:00 Received From : +22:24:00 ============================================================================ +22:24:00 FNo. Len. Field Value +22:24:00 ============================================================================ +22:24:00 [ 1] [ 4] [0810] +22:24:00 [ 7] [ 10] [0320152400] +22:24:00 [ 11] [ 6] [807712] +22:24:00 [ 15] [ 4] [0320] +22:24:00 [ 37] [ 12] [57922807712] +22:24:00 [ 39] [ 2] [00] +22:24:00 [ 70] [ 3] [001] +22:24:00 ============================================================================ +22:24:00 Sending to : +22:24:00 ============================================================================ +22:24:00 + + +waiting on router queue for slot.... +22:24:05 ============================================================================ +22:24:05 Slot Id : <53> +22:24:05 Transaction Type : REQUEST +22:24:05 Received From : +22:24:05 ============================================================================ +22:24:05 FNo. Len. Field Value +22:24:05 ============================================================================ +22:24:05 [ 1] [ 4] [0800] +22:24:05 [ 7] [ 10] [0320032313] +22:24:05 [ 11] [ 6] [158746] +22:24:05 [ 70] [ 3] [301] +22:24:05 ============================================================================ +22:24:05 + + +waiting on router queue for slot.... +22:24:05 Sending to : +22:24:05 ============================================================================ +22:24:05 ============================================================================ +22:24:05 Slot Id : <53> +22:24:05 Transaction Type : RESPONSE +22:24:05 Received From : +22:24:05 ============================================================================ +22:24:05 FNo. Len. Field Value +22:24:05 ============================================================================ +22:24:05 [ 1] [ 4] [0810] +22:24:05 [ 7] [ 10] [0320032313] +22:24:05 [ 11] [ 6] [158746] +22:24:05 [ 39] [ 2] [00] +22:24:05 [ 70] [ 3] [301] +22:24:05 ============================================================================ +22:24:05 Calculate Source COMM Id = 2 +22:24:05 ============================================================================ +22:24:05 + + +waiting on router queue for slot.... +22:24:16 ============================================================================ +22:24:16 Slot Id : <134> +22:24:16 Transaction Type : REQUEST +22:24:16 Received From : +22:24:16 ============================================================================ +22:24:16 FNo. Len. Field Value +22:24:16 ============================================================================ +22:24:16 [ 1] [ 4] [0800] +22:24:16 [ 7] [ 10] [0320032324] +22:24:16 [ 11] [ 6] [158747] +22:24:16 [ 70] [ 3] [301] +22:24:16 ============================================================================ +22:24:16 + + +waiting on router queue for slot.... +22:24:16 Sending to : +22:24:16 ============================================================================ +22:24:16 ============================================================================ +22:24:16 Slot Id : <134> +22:24:16 Transaction Type : RESPONSE +22:24:16 Received From : +22:24:16 ============================================================================ +22:24:16 FNo. Len. Field Value +22:24:16 ============================================================================ +22:24:16 [ 1] [ 4] [0810] +22:24:16 [ 7] [ 10] [0320032324] +22:24:16 [ 11] [ 6] [158747] +22:24:16 [ 39] [ 2] [00] +22:24:16 [ 70] [ 3] [301] +22:24:16 ============================================================================ +22:24:16 Calculate Source COMM Id = 2 +22:24:16 ============================================================================ +22:24:16 + + +waiting on router queue for slot.... +22:24:27 ============================================================================ +22:24:27 Slot Id : <103> +22:24:27 Transaction Type : REQUEST +22:24:27 Received From : +22:24:27 ============================================================================ +22:24:27 FNo. Len. Field Value +22:24:27 ============================================================================ +22:24:27 [ 1] [ 4] [0800] +22:24:27 [ 7] [ 10] [0320032335] +22:24:27 [ 11] [ 6] [158748] +22:24:27 [ 70] [ 3] [301] +22:24:27 ============================================================================ +22:24:27 + + +waiting on router queue for slot.... +22:24:27 Sending to : +22:24:27 ============================================================================ +22:24:27 ============================================================================ +22:24:27 Slot Id : <103> +22:24:27 Transaction Type : RESPONSE +22:24:27 Received From : +22:24:27 ============================================================================ +22:24:27 FNo. Len. Field Value +22:24:27 ============================================================================ +22:24:27 [ 1] [ 4] [0810] +22:24:27 [ 7] [ 10] [0320032335] +22:24:27 [ 11] [ 6] [158748] +22:24:27 [ 39] [ 2] [00] +22:24:27 [ 70] [ 3] [301] +22:24:27 ============================================================================ +22:24:27 Calculate Source COMM Id = 2 +22:24:27 ============================================================================ +22:24:27 + + +waiting on router queue for slot.... +22:24:38 ============================================================================ +22:24:38 Slot Id : <96> +22:24:38 Transaction Type : REQUEST +22:24:38 Received From : +22:24:38 ============================================================================ +22:24:38 FNo. Len. Field Value +22:24:38 ============================================================================ +22:24:38 [ 1] [ 4] [0800] +22:24:38 [ 7] [ 10] [0320032346] +22:24:38 [ 11] [ 6] [158749] +22:24:38 [ 70] [ 3] [301] +22:24:38 ============================================================================ +22:24:38 + + +waiting on router queue for slot.... +22:24:38 Sending to : +22:24:38 ============================================================================ +22:24:38 ============================================================================ +22:24:38 Slot Id : <96> +22:24:38 Transaction Type : RESPONSE +22:24:38 Received From : +22:24:38 ============================================================================ +22:24:38 FNo. Len. Field Value +22:24:38 ============================================================================ +22:24:38 [ 1] [ 4] [0810] +22:24:38 [ 7] [ 10] [0320032346] +22:24:38 [ 11] [ 6] [158749] +22:24:38 [ 39] [ 2] [00] +22:24:38 [ 70] [ 3] [301] +22:24:38 ============================================================================ +22:24:38 Calculate Source COMM Id = 2 +22:24:38 ============================================================================ +22:24:38 + + +waiting on router queue for slot.... +22:24:39 ============================================================================ +22:24:39 Slot Id : <101> +22:24:39 Transaction Type : REQUEST +22:24:39 Received From : +22:24:39 ============================================================================ +22:24:39 FNo. Len. Field Value +22:24:39 ============================================================================ +22:24:39 [ 1] [ 4] [0800] +22:24:39 [ 7] [ 10] [0321053629] +22:24:39 [ 11] [ 6] [223629] +22:24:39 [ 37] [ 12] [57922223629] +22:24:39 [ 70] [ 3] [301] +22:24:39 ============================================================================ +22:24:39 + + +waiting on router queue for slot.... +22:24:39 Sending to : +22:24:39 ============================================================================ +22:24:39 ============================================================================ +22:24:39 Slot Id : <101> +22:24:39 Transaction Type : RESPONSE +22:24:39 Received From : +22:24:39 ============================================================================ +22:24:39 FNo. Len. Field Value +22:24:39 ============================================================================ +22:24:39 [ 1] [ 4] [0810] +22:24:39 [ 7] [ 10] [0321053629] +22:24:39 [ 11] [ 6] [223629] +22:24:39 [ 37] [ 12] [579222236290] +22:24:39 [ 39] [ 2] [00] +22:24:39 [ 70] [ 3] [810] +22:24:39 ============================================================================ +22:24:39 Calculate Source COMM Id = 6 +22:24:39 ============================================================================ +22:24:39 + + +waiting on router queue for slot.... +22:24:53 ============================================================================ +22:24:53 Slot Id : <125> +22:24:53 Transaction Type : REQUEST +22:24:53 Received From : +22:24:53 ============================================================================ +22:24:53 FNo. Len. Field Value +22:24:53 ============================================================================ +22:24:53 [ 1] [ 4] [0800] +22:24:53 [ 7] [ 10] [0320032401] +22:24:53 [ 11] [ 6] [158750] +22:24:53 [ 70] [ 3] [301] +22:24:53 ============================================================================ +22:24:53 + + +waiting on router queue for slot.... +22:24:53 Sending to : +22:24:53 ============================================================================ +22:24:53 ============================================================================ +22:24:53 Slot Id : <125> +22:24:53 Transaction Type : RESPONSE +22:24:53 Received From : +22:24:53 ============================================================================ +22:24:53 FNo. Len. Field Value +22:24:53 ============================================================================ +22:24:53 [ 1] [ 4] [0810] +22:24:53 [ 7] [ 10] [0320032401] +22:24:53 [ 11] [ 6] [158750] +22:24:53 [ 39] [ 2] [00] +22:24:53 [ 70] [ 3] [301] +22:24:53 ============================================================================ +22:24:53 Calculate Source COMM Id = 2 +22:24:53 ============================================================================ +22:24:53 + + +waiting on router queue for slot.... +22:24:55 ============================================================================ +22:24:55 Slot Id : <70> +22:24:55 Transaction Type : REQUEST +22:24:55 Received From : +22:24:55 ============================================================================ +22:24:55 FNo. Len. Field Value +22:24:55 ============================================================================ +22:24:55 [ 1] [ 4] [0800] +22:24:55 [ 7] [ 10] [0320153242] +22:24:55 [ 11] [ 6] [076031] +22:24:55 [ 37] [ 12] [57922076031] +22:24:55 [ 70] [ 3] [301] +22:24:55 ============================================================================ +22:24:55 + + +waiting on router queue for slot.... +22:24:55 Sending to : +22:24:55 ============================================================================ +22:24:55 ============================================================================ +22:24:55 Slot Id : <70> +22:24:55 Transaction Type : RESPONSE +22:24:55 Received From : +22:24:55 ============================================================================ +22:24:55 FNo. Len. Field Value +22:24:55 ============================================================================ +22:24:55 [ 1] [ 4] [0810] +22:24:55 [ 7] [ 10] [0320153242] +22:24:55 [ 11] [ 6] [076031] +22:24:55 [ 37] [ 12] [579220760310] +22:24:55 [ 39] [ 2] [00] +22:24:55 [ 70] [ 3] [810] +22:24:55 ============================================================================ +22:24:55 Calculate Source COMM Id = 1 +22:24:55 ============================================================================ +22:24:55 + + +waiting on router queue for slot.... +22:25:02 ============================================================================ +22:25:02 Slot Id : <77> +22:25:02 Transaction Type : REQUEST +22:25:02 Received From : +22:25:02 ============================================================================ +22:25:02 FNo. Len. Field Value +22:25:02 ============================================================================ +22:25:02 [ 1] [ 4] [0800] +22:25:02 [ 2] [ 5] [02531] +22:25:02 [ 3] [ 6] [579228] +22:25:02 [ 7] [ 10] [0320152502] +22:25:02 [ 11] [ 6] [807713] +22:25:02 [ 15] [ 10] [0320152502] +22:25:02 [ 37] [ 11] [57922807713] +22:25:02 [ 70] [ 3] [001] +22:25:02 ============================================================================ +22:25:02 + + +waiting on router queue for slot.... +22:25:02 ============================================================================ +22:25:02 Slot Id : <77> +22:25:02 Transaction Type : RESPONSE +22:25:02 Received From : +22:25:02 ============================================================================ +22:25:02 FNo. Len. Field Value +22:25:02 ============================================================================ +22:25:02 [ 1] [ 4] [0810] +22:25:02 [ 7] [ 10] [0320152502] +22:25:02 [ 11] [ 6] [807713] +22:25:02 [ 15] [ 4] [0320] +22:25:02 [ 37] [ 12] [57922807713] +22:25:02 [ 39] [ 2] [00] +22:25:02 [ 70] [ 3] [001] +22:25:02 ============================================================================ +22:25:02 Sending to : +22:25:02 ============================================================================ +22:25:02 + + +waiting on router queue for slot.... +22:25:05 ============================================================================ +22:25:05 Slot Id : <102> +22:25:05 Transaction Type : REQUEST +22:25:05 Received From : +22:25:05 ============================================================================ +22:25:05 FNo. Len. Field Value +22:25:05 ============================================================================ +22:25:05 [ 1] [ 4] [0800] +22:25:05 [ 7] [ 10] [0320032412] +22:25:05 [ 11] [ 6] [158751] +22:25:05 [ 70] [ 3] [301] +22:25:05 ============================================================================ +22:25:05 + + +waiting on router queue for slot.... +22:25:05 Sending to : +22:25:05 ============================================================================ +22:25:05 ============================================================================ +22:25:05 Slot Id : <102> +22:25:05 Transaction Type : RESPONSE +22:25:05 Received From : +22:25:05 ============================================================================ +22:25:05 FNo. Len. Field Value +22:25:05 ============================================================================ +22:25:05 [ 1] [ 4] [0810] +22:25:05 [ 7] [ 10] [0320032412] +22:25:05 [ 11] [ 6] [158751] +22:25:05 [ 39] [ 2] [00] +22:25:05 [ 70] [ 3] [301] +22:25:05 ============================================================================ +22:25:05 Calculate Source COMM Id = 2 +22:25:05 ============================================================================ +22:25:05 + + +waiting on router queue for slot.... +22:25:21 ============================================================================ +22:25:21 Slot Id : <109> +22:25:21 Transaction Type : REQUEST +22:25:21 Received From : +22:25:21 ============================================================================ +22:25:21 FNo. Len. Field Value +22:25:21 ============================================================================ +22:25:21 [ 1] [ 4] [0800] +22:25:21 [ 7] [ 10] [0320032429] +22:25:21 [ 11] [ 6] [158752] +22:25:21 [ 70] [ 3] [301] +22:25:21 ============================================================================ +22:25:21 + + +waiting on router queue for slot.... +22:25:21 Sending to : +22:25:21 ============================================================================ +22:25:21 ============================================================================ +22:25:21 Slot Id : <109> +22:25:21 Transaction Type : RESPONSE +22:25:21 Received From : +22:25:21 ============================================================================ +22:25:21 FNo. Len. Field Value +22:25:21 ============================================================================ +22:25:21 [ 1] [ 4] [0810] +22:25:21 [ 7] [ 10] [0320032429] +22:25:21 [ 11] [ 6] [158752] +22:25:21 [ 39] [ 2] [00] +22:25:21 [ 70] [ 3] [301] +22:25:21 ============================================================================ +22:25:21 Calculate Source COMM Id = 2 +22:25:21 ============================================================================ +22:25:21 + + +waiting on router queue for slot.... +22:25:36 ============================================================================ +22:25:36 Slot Id : <85> +22:25:36 Transaction Type : REQUEST +22:25:36 Received From : +22:25:36 ============================================================================ +22:25:36 FNo. Len. Field Value +22:25:36 ============================================================================ +22:25:36 [ 1] [ 4] [0800] +22:25:36 [ 7] [ 10] [0320032444] +22:25:36 [ 11] [ 6] [158753] +22:25:36 [ 70] [ 3] [301] +22:25:36 ============================================================================ +22:25:36 + + +waiting on router queue for slot.... +22:25:36 Sending to : +22:25:36 ============================================================================ +22:25:36 ============================================================================ +22:25:36 Slot Id : <85> +22:25:36 Transaction Type : RESPONSE +22:25:36 Received From : +22:25:36 ============================================================================ +22:25:36 FNo. Len. Field Value +22:25:36 ============================================================================ +22:25:36 [ 1] [ 4] [0810] +22:25:36 [ 7] [ 10] [0320032444] +22:25:36 [ 11] [ 6] [158753] +22:25:36 [ 39] [ 2] [00] +22:25:36 [ 70] [ 3] [301] +22:25:36 ============================================================================ +22:25:36 Calculate Source COMM Id = 2 +22:25:36 ============================================================================ +22:25:36 + + +waiting on router queue for slot.... +22:25:44 ============================================================================ +22:25:44 Slot Id : <71> +22:25:44 Transaction Type : REQUEST +22:25:44 Received From : +22:25:44 ============================================================================ +22:25:44 FNo. Len. Field Value +22:25:44 ============================================================================ +22:25:44 [ 1] [ 4] [0800] +22:25:44 [ 7] [ 10] [0321053734] +22:25:44 [ 11] [ 6] [223734] +22:25:44 [ 37] [ 12] [57922223734] +22:25:44 [ 70] [ 3] [301] +22:25:44 ============================================================================ +22:25:44 + + +waiting on router queue for slot.... +22:25:44 Sending to : +22:25:44 ============================================================================ +22:25:44 ============================================================================ +22:25:44 Slot Id : <71> +22:25:44 Transaction Type : RESPONSE +22:25:44 Received From : +22:25:44 ============================================================================ +22:25:44 FNo. Len. Field Value +22:25:44 ============================================================================ +22:25:44 [ 1] [ 4] [0810] +22:25:44 [ 7] [ 10] [0321053734] +22:25:44 [ 11] [ 6] [223734] +22:25:44 [ 37] [ 12] [579222237340] +22:25:44 [ 39] [ 2] [00] +22:25:44 [ 70] [ 3] [810] +22:25:44 ============================================================================ +22:25:44 Calculate Source COMM Id = 6 +22:25:44 ============================================================================ +22:25:44 + + +waiting on router queue for slot.... +22:25:48 ============================================================================ +22:25:48 Slot Id : <136> +22:25:48 Transaction Type : REQUEST +22:25:48 Received From : +22:25:48 ============================================================================ +22:25:48 FNo. Len. Field Value +22:25:48 ============================================================================ +22:25:48 [ 1] [ 4] [0800] +22:25:48 [ 7] [ 10] [0320032455] +22:25:48 [ 11] [ 6] [158754] +22:25:48 [ 70] [ 3] [301] +22:25:48 ============================================================================ +22:25:48 + + +waiting on router queue for slot.... +22:25:48 Sending to : +22:25:48 ============================================================================ +22:25:48 ============================================================================ +22:25:48 Slot Id : <136> +22:25:48 Transaction Type : RESPONSE +22:25:48 Received From : +22:25:48 ============================================================================ +22:25:48 FNo. Len. Field Value +22:25:48 ============================================================================ +22:25:48 [ 1] [ 4] [0810] +22:25:48 [ 7] [ 10] [0320032455] +22:25:48 [ 11] [ 6] [158754] +22:25:48 [ 39] [ 2] [00] +22:25:48 [ 70] [ 3] [301] +22:25:48 ============================================================================ +22:25:48 Calculate Source COMM Id = 2 +22:25:48 ============================================================================ +22:25:48 + + +waiting on router queue for slot.... +22:26:03 ============================================================================ +22:26:03 Slot Id : <105> +22:26:03 Transaction Type : REQUEST +22:26:03 Received From : +22:26:03 ============================================================================ +22:26:03 FNo. Len. Field Value +22:26:03 ============================================================================ +22:26:03 [ 1] [ 4] [0800] +22:26:03 [ 7] [ 10] [0320032511] +22:26:03 [ 11] [ 6] [158755] +22:26:03 [ 70] [ 3] [301] +22:26:03 ============================================================================ +22:26:03 + + +waiting on router queue for slot.... +22:26:03 Sending to : +22:26:03 ============================================================================ +22:26:03 ============================================================================ +22:26:03 Slot Id : <105> +22:26:03 Transaction Type : RESPONSE +22:26:03 Received From : +22:26:03 ============================================================================ +22:26:03 FNo. Len. Field Value +22:26:03 ============================================================================ +22:26:03 [ 1] [ 4] [0810] +22:26:03 [ 7] [ 10] [0320032511] +22:26:03 [ 11] [ 6] [158755] +22:26:03 [ 39] [ 2] [00] +22:26:03 [ 70] [ 3] [301] +22:26:03 ============================================================================ +22:26:03 Calculate Source COMM Id = 2 +22:26:03 ============================================================================ +22:26:03 + + +waiting on router queue for slot.... +22:26:04 ============================================================================ +22:26:04 Slot Id : <129> +22:26:04 Transaction Type : REQUEST +22:26:04 Received From : +22:26:04 ============================================================================ +22:26:04 FNo. Len. Field Value +22:26:04 ============================================================================ +22:26:04 [ 1] [ 4] [0800] +22:26:04 [ 2] [ 5] [02531] +22:26:04 [ 3] [ 6] [579228] +22:26:04 [ 7] [ 10] [0320152604] +22:26:04 [ 11] [ 6] [807714] +22:26:04 [ 15] [ 10] [0320152604] +22:26:04 [ 37] [ 11] [57922807714] +22:26:04 [ 70] [ 3] [001] +22:26:04 ============================================================================ +22:26:04 + + +waiting on router queue for slot.... +22:26:04 ============================================================================ +22:26:04 Slot Id : <129> +22:26:04 Transaction Type : RESPONSE +22:26:04 Received From : +22:26:04 ============================================================================ +22:26:04 FNo. Len. Field Value +22:26:04 ============================================================================ +22:26:04 [ 1] [ 4] [0810] +22:26:04 [ 7] [ 10] [0320152604] +22:26:04 [ 11] [ 6] [807714] +22:26:04 [ 15] [ 4] [0320] +22:26:04 [ 37] [ 12] [57922807714] +22:26:04 [ 39] [ 2] [00] +22:26:04 [ 70] [ 3] [001] +22:26:04 ============================================================================ +22:26:04 Sending to : +22:26:04 ============================================================================ +22:26:04 + + +waiting on router queue for slot.... +22:26:14 ============================================================================ +22:26:14 Slot Id : <116> +22:26:14 Transaction Type : REQUEST +22:26:14 Received From : +22:26:14 ============================================================================ +22:26:14 FNo. Len. Field Value +22:26:14 ============================================================================ +22:26:14 [ 1] [ 4] [0800] +22:26:14 [ 7] [ 10] [0320032522] +22:26:14 [ 11] [ 6] [158756] +22:26:14 [ 70] [ 3] [301] +22:26:14 ============================================================================ +22:26:14 + + +waiting on router queue for slot.... +22:26:14 Sending to : +22:26:14 ============================================================================ +22:26:14 ============================================================================ +22:26:14 Slot Id : <116> +22:26:14 Transaction Type : RESPONSE +22:26:14 Received From : +22:26:14 ============================================================================ +22:26:14 FNo. Len. Field Value +22:26:14 ============================================================================ +22:26:14 [ 1] [ 4] [0810] +22:26:14 [ 7] [ 10] [0320032522] +22:26:14 [ 11] [ 6] [158756] +22:26:14 [ 39] [ 2] [00] +22:26:14 [ 70] [ 3] [301] +22:26:14 ============================================================================ +22:26:14 Calculate Source COMM Id = 2 +22:26:14 ============================================================================ +22:26:14 + + +waiting on router queue for slot.... +22:26:21 ============================================================================ +22:26:21 Slot Id : <131> +22:26:21 Transaction Type : REQUEST +22:26:21 Received From : +22:26:21 ============================================================================ +22:26:21 FNo. Len. Field Value +22:26:21 ============================================================================ +22:26:21 [ 1] [ 4] [0800] +22:26:21 [ 7] [ 10] [0320152412] +22:26:21 [ 11] [ 6] [006401] +22:26:21 [ 37] [ 12] [57922006401] +22:26:21 [ 70] [ 3] [301] +22:26:21 ============================================================================ +22:26:21 + + +waiting on router queue for slot.... +22:26:21 Sending to : +22:26:21 ============================================================================ +22:26:21 ============================================================================ +22:26:21 Slot Id : <131> +22:26:21 Transaction Type : RESPONSE +22:26:21 Received From : +22:26:21 ============================================================================ +22:26:21 FNo. Len. Field Value +22:26:21 ============================================================================ +22:26:21 [ 1] [ 4] [0810] +22:26:21 [ 7] [ 10] [0320152412] +22:26:21 [ 11] [ 6] [006401] +22:26:21 [ 37] [ 12] [579220064010] +22:26:21 [ 39] [ 2] [00] +22:26:21 [ 70] [ 3] [810] +22:26:21 ============================================================================ +22:26:21 Calculate Source COMM Id = 4 +22:26:21 ============================================================================ +22:26:21 + + +waiting on router queue for slot.... +22:26:25 ============================================================================ +22:26:25 Slot Id : <104> +22:26:25 Transaction Type : REQUEST +22:26:25 Received From : +22:26:25 ============================================================================ +22:26:25 FNo. Len. Field Value +22:26:25 ============================================================================ +22:26:25 [ 1] [ 4] [0800] +22:26:25 [ 7] [ 10] [0320032533] +22:26:25 [ 11] [ 6] [158757] +22:26:25 [ 70] [ 3] [301] +22:26:25 ============================================================================ +22:26:25 + + +waiting on router queue for slot.... +22:26:25 Sending to : +22:26:25 ============================================================================ +22:26:25 ============================================================================ +22:26:25 Slot Id : <104> +22:26:25 Transaction Type : RESPONSE +22:26:25 Received From : +22:26:25 ============================================================================ +22:26:25 FNo. Len. Field Value +22:26:25 ============================================================================ +22:26:25 [ 1] [ 4] [0810] +22:26:25 [ 7] [ 10] [0320032533] +22:26:25 [ 11] [ 6] [158757] +22:26:25 [ 39] [ 2] [00] +22:26:25 [ 70] [ 3] [301] +22:26:25 ============================================================================ +22:26:25 Calculate Source COMM Id = 2 +22:26:25 ============================================================================ +22:26:25 + + +waiting on router queue for slot.... +22:26:36 ============================================================================ +22:26:36 Slot Id : <138> +22:26:36 Transaction Type : REQUEST +22:26:36 Received From : +22:26:36 ============================================================================ +22:26:36 FNo. Len. Field Value +22:26:36 ============================================================================ +22:26:36 [ 1] [ 4] [0800] +22:26:36 [ 7] [ 10] [0320032544] +22:26:36 [ 11] [ 6] [158758] +22:26:36 [ 70] [ 3] [301] +22:26:36 ============================================================================ +22:26:36 + + +waiting on router queue for slot.... +22:26:36 Sending to : +22:26:36 ============================================================================ +22:26:36 ============================================================================ +22:26:36 Slot Id : <138> +22:26:36 Transaction Type : RESPONSE +22:26:36 Received From : +22:26:36 ============================================================================ +22:26:36 FNo. Len. Field Value +22:26:36 ============================================================================ +22:26:36 [ 1] [ 4] [0810] +22:26:36 [ 7] [ 10] [0320032544] +22:26:36 [ 11] [ 6] [158758] +22:26:36 [ 39] [ 2] [00] +22:26:36 [ 70] [ 3] [301] +22:26:36 ============================================================================ +22:26:36 Calculate Source COMM Id = 2 +22:26:36 ============================================================================ +22:26:36 + + +waiting on router queue for slot.... +22:26:46 ============================================================================ +22:26:46 Slot Id : <97> +22:26:46 Transaction Type : REQUEST +22:26:46 Received From : +22:26:46 ============================================================================ +22:26:46 FNo. Len. Field Value +22:26:46 ============================================================================ +22:26:46 [ 1] [ 4] [0800] +22:26:46 [ 7] [ 10] [0320032554] +22:26:46 [ 11] [ 6] [158759] +22:26:46 [ 70] [ 3] [301] +22:26:46 ============================================================================ +22:26:46 + + +waiting on router queue for slot.... +22:26:46 Sending to : +22:26:46 ============================================================================ +22:26:46 ============================================================================ +22:26:46 Slot Id : <97> +22:26:46 Transaction Type : RESPONSE +22:26:46 Received From : +22:26:46 ============================================================================ +22:26:46 FNo. Len. Field Value +22:26:46 ============================================================================ +22:26:46 [ 1] [ 4] [0810] +22:26:46 [ 7] [ 10] [0320032554] +22:26:46 [ 11] [ 6] [158759] +22:26:46 [ 39] [ 2] [00] +22:26:46 [ 70] [ 3] [301] +22:26:46 ============================================================================ +22:26:46 Calculate Source COMM Id = 2 +22:26:46 ============================================================================ +22:26:46 + + +waiting on router queue for slot.... +22:26:49 ============================================================================ +22:26:49 Slot Id : <112> +22:26:49 Transaction Type : REQUEST +22:26:49 Received From : +22:26:49 ============================================================================ +22:26:49 FNo. Len. Field Value +22:26:49 ============================================================================ +22:26:49 [ 1] [ 4] [0800] +22:26:49 [ 7] [ 10] [0321053839] +22:26:49 [ 11] [ 6] [223839] +22:26:49 [ 37] [ 12] [57922223839] +22:26:49 [ 70] [ 3] [301] +22:26:49 ============================================================================ +22:26:49 + + +waiting on router queue for slot.... +22:26:49 Sending to : +22:26:49 ============================================================================ +22:26:49 ============================================================================ +22:26:49 Slot Id : <112> +22:26:49 Transaction Type : RESPONSE +22:26:49 Received From : +22:26:49 ============================================================================ +22:26:49 FNo. Len. Field Value +22:26:49 ============================================================================ +22:26:49 [ 1] [ 4] [0810] +22:26:49 [ 7] [ 10] [0321053839] +22:26:49 [ 11] [ 6] [223839] +22:26:49 [ 37] [ 12] [579222238390] +22:26:49 [ 39] [ 2] [00] +22:26:49 [ 70] [ 3] [810] +22:26:49 ============================================================================ +22:26:49 Calculate Source COMM Id = 6 +22:26:49 ============================================================================ +22:26:49 + + +waiting on router queue for slot.... +22:26:57 ============================================================================ +22:26:57 Slot Id : <124> +22:26:57 Transaction Type : REQUEST +22:26:57 Received From : +22:26:57 ============================================================================ +22:26:57 FNo. Len. Field Value +22:26:57 ============================================================================ +22:26:57 [ 1] [ 4] [0800] +22:26:57 [ 7] [ 10] [0320032605] +22:26:57 [ 11] [ 6] [158760] +22:26:57 [ 70] [ 3] [301] +22:26:57 ============================================================================ +22:26:57 + + +waiting on router queue for slot.... +22:26:57 Sending to : +22:26:57 ============================================================================ +22:26:57 ============================================================================ +22:26:57 Slot Id : <124> +22:26:57 Transaction Type : RESPONSE +22:26:57 Received From : +22:26:57 ============================================================================ +22:26:57 FNo. Len. Field Value +22:26:57 ============================================================================ +22:26:57 [ 1] [ 4] [0810] +22:26:57 [ 7] [ 10] [0320032605] +22:26:57 [ 11] [ 6] [158760] +22:26:57 [ 39] [ 2] [00] +22:26:57 [ 70] [ 3] [301] +22:26:57 ============================================================================ +22:26:57 Calculate Source COMM Id = 2 +22:26:57 ============================================================================ +22:26:57 + + +waiting on router queue for slot.... +22:27:06 ============================================================================ +22:27:06 Slot Id : <111> +22:27:06 Transaction Type : REQUEST +22:27:06 Received From : +22:27:06 ============================================================================ +22:27:06 FNo. Len. Field Value +22:27:06 ============================================================================ +22:27:06 [ 1] [ 4] [0800] +22:27:06 [ 2] [ 5] [02531] +22:27:06 [ 3] [ 6] [579228] +22:27:06 [ 7] [ 10] [0320152706] +22:27:06 [ 11] [ 6] [807715] +22:27:06 [ 15] [ 10] [0320152706] +22:27:06 [ 37] [ 11] [57922807715] +22:27:06 [ 70] [ 3] [001] +22:27:06 ============================================================================ +22:27:06 + + +waiting on router queue for slot.... +22:27:06 ============================================================================ +22:27:06 Slot Id : <111> +22:27:06 Transaction Type : RESPONSE +22:27:06 Received From : +22:27:06 ============================================================================ +22:27:06 FNo. Len. Field Value +22:27:06 ============================================================================ +22:27:06 [ 1] [ 4] [0810] +22:27:06 [ 7] [ 10] [0320152706] +22:27:06 [ 11] [ 6] [807715] +22:27:06 [ 15] [ 4] [0320] +22:27:06 [ 37] [ 12] [57922807715] +22:27:06 [ 39] [ 2] [00] +22:27:06 [ 70] [ 3] [001] +22:27:06 ============================================================================ +22:27:06 Sending to : +22:27:06 ============================================================================ +22:27:06 + + +waiting on router queue for slot.... +22:27:09 ============================================================================ +22:27:09 Slot Id : <80> +22:27:09 Transaction Type : REQUEST +22:27:09 Received From : +22:27:09 ============================================================================ +22:27:09 FNo. Len. Field Value +22:27:09 ============================================================================ +22:27:09 [ 1] [ 4] [0800] +22:27:09 [ 7] [ 10] [0320032616] +22:27:09 [ 11] [ 6] [158761] +22:27:09 [ 70] [ 3] [301] +22:27:09 ============================================================================ +22:27:09 + + +waiting on router queue for slot.... +22:27:09 Sending to : +22:27:09 ============================================================================ +22:27:09 ============================================================================ +22:27:09 Slot Id : <80> +22:27:09 Transaction Type : RESPONSE +22:27:09 Received From : +22:27:09 ============================================================================ +22:27:09 FNo. Len. Field Value +22:27:09 ============================================================================ +22:27:09 [ 1] [ 4] [0810] +22:27:09 [ 7] [ 10] [0320032616] +22:27:09 [ 11] [ 6] [158761] +22:27:09 [ 39] [ 2] [00] +22:27:09 [ 70] [ 3] [301] +22:27:09 ============================================================================ +22:27:09 Calculate Source COMM Id = 2 +22:27:09 ============================================================================ +22:27:09 + + +waiting on router queue for slot.... +22:27:23 ============================================================================ +22:27:23 Slot Id : <140> +22:27:23 Transaction Type : REQUEST +22:27:23 Received From : +22:27:23 ============================================================================ +22:27:23 FNo. Len. Field Value +22:27:23 ============================================================================ +22:27:23 [ 1] [ 4] [0800] +22:27:23 [ 7] [ 10] [0320032632] +22:27:23 [ 11] [ 6] [158762] +22:27:23 [ 70] [ 3] [301] +22:27:23 ============================================================================ +22:27:23 + + +waiting on router queue for slot.... +22:27:23 Sending to : +22:27:23 ============================================================================ +22:27:23 ============================================================================ +22:27:23 Slot Id : <140> +22:27:23 Transaction Type : RESPONSE +22:27:23 Received From : +22:27:23 ============================================================================ +22:27:23 FNo. Len. Field Value +22:27:23 ============================================================================ +22:27:23 [ 1] [ 4] [0810] +22:27:23 [ 7] [ 10] [0320032632] +22:27:23 [ 11] [ 6] [158762] +22:27:23 [ 39] [ 2] [00] +22:27:23 [ 70] [ 3] [301] +22:27:23 ============================================================================ +22:27:23 Calculate Source COMM Id = 2 +22:27:23 ============================================================================ +22:27:23 + + +waiting on router queue for slot.... +22:27:33 ============================================================================ +22:27:33 Slot Id : <123> +22:27:33 Transaction Type : REQUEST +22:27:33 Received From : +22:27:33 ============================================================================ +22:27:33 FNo. Len. Field Value +22:27:33 ============================================================================ +22:27:33 [ 1] [ 4] [0800] +22:27:33 [ 7] [ 10] [0320032642] +22:27:33 [ 11] [ 6] [158763] +22:27:33 [ 70] [ 3] [301] +22:27:33 ============================================================================ +22:27:33 + + +waiting on router queue for slot.... +22:27:33 Sending to : +22:27:33 ============================================================================ +22:27:33 ============================================================================ +22:27:33 Slot Id : <123> +22:27:33 Transaction Type : RESPONSE +22:27:33 Received From : +22:27:33 ============================================================================ +22:27:33 FNo. Len. Field Value +22:27:33 ============================================================================ +22:27:33 [ 1] [ 4] [0810] +22:27:33 [ 7] [ 10] [0320032642] +22:27:33 [ 11] [ 6] [158763] +22:27:33 [ 39] [ 2] [00] +22:27:33 [ 70] [ 3] [301] +22:27:33 ============================================================================ +22:27:33 Calculate Source COMM Id = 2 +22:27:33 ============================================================================ +22:27:33 + + +waiting on router queue for slot.... +22:27:44 ============================================================================ +22:27:44 Slot Id : <147> +22:27:44 Transaction Type : REQUEST +22:27:44 Received From : +22:27:44 ============================================================================ +22:27:44 FNo. Len. Field Value +22:27:44 ============================================================================ +22:27:44 [ 1] [ 4] [0800] +22:27:44 [ 7] [ 10] [0320032652] +22:27:44 [ 11] [ 6] [158764] +22:27:44 [ 70] [ 3] [301] +22:27:44 ============================================================================ +22:27:44 + + +waiting on router queue for slot.... +22:27:44 Sending to : +22:27:44 ============================================================================ +22:27:44 ============================================================================ +22:27:44 Slot Id : <147> +22:27:44 Transaction Type : RESPONSE +22:27:44 Received From : +22:27:44 ============================================================================ +22:27:44 FNo. Len. Field Value +22:27:44 ============================================================================ +22:27:44 [ 1] [ 4] [0810] +22:27:44 [ 7] [ 10] [0320032652] +22:27:44 [ 11] [ 6] [158764] +22:27:44 [ 39] [ 2] [00] +22:27:44 [ 70] [ 3] [301] +22:27:44 ============================================================================ +22:27:44 Calculate Source COMM Id = 2 +22:27:44 ============================================================================ +22:27:44 + + +waiting on router queue for slot.... +22:27:54 ============================================================================ +22:27:54 Slot Id : <117> +22:27:54 Transaction Type : REQUEST +22:27:54 Received From : +22:27:54 ============================================================================ +22:27:54 FNo. Len. Field Value +22:27:54 ============================================================================ +22:27:54 [ 1] [ 4] [0800] +22:27:54 [ 7] [ 10] [0321053944] +22:27:54 [ 11] [ 6] [223944] +22:27:54 [ 37] [ 12] [57922223944] +22:27:54 [ 70] [ 3] [301] +22:27:54 ============================================================================ +22:27:54 + + +waiting on router queue for slot.... +22:27:54 Sending to : +22:27:54 ============================================================================ +22:27:54 ============================================================================ +22:27:54 Slot Id : <117> +22:27:54 Transaction Type : RESPONSE +22:27:54 Received From : +22:27:54 ============================================================================ +22:27:54 FNo. Len. Field Value +22:27:54 ============================================================================ +22:27:54 [ 1] [ 4] [0810] +22:27:54 [ 7] [ 10] [0321053944] +22:27:54 [ 11] [ 6] [223944] +22:27:54 [ 37] [ 12] [579222239440] +22:27:54 [ 39] [ 2] [00] +22:27:54 [ 70] [ 3] [810] +22:27:54 ============================================================================ +22:27:54 Calculate Source COMM Id = 6 +22:27:54 ============================================================================ +22:27:54 + + +waiting on router queue for slot.... +22:28:00 ============================================================================ +22:28:00 Slot Id : <132> +22:28:00 Transaction Type : REQUEST +22:28:00 Received From : +22:28:00 ============================================================================ +22:28:00 FNo. Len. Field Value +22:28:00 ============================================================================ +22:28:00 [ 1] [ 4] [0800] +22:28:00 [ 7] [ 10] [0320032708] +22:28:00 [ 11] [ 6] [158765] +22:28:00 [ 70] [ 3] [301] +22:28:00 ============================================================================ +22:28:00 + + +waiting on router queue for slot.... +22:28:00 Sending to : +22:28:00 ============================================================================ +22:28:00 ============================================================================ +22:28:00 Slot Id : <132> +22:28:00 Transaction Type : RESPONSE +22:28:00 Received From : +22:28:00 ============================================================================ +22:28:00 FNo. Len. Field Value +22:28:00 ============================================================================ +22:28:00 [ 1] [ 4] [0810] +22:28:00 [ 7] [ 10] [0320032708] +22:28:00 [ 11] [ 6] [158765] +22:28:00 [ 39] [ 2] [00] +22:28:00 [ 70] [ 3] [301] +22:28:00 ============================================================================ +22:28:00 Calculate Source COMM Id = 2 +22:28:00 ============================================================================ +22:28:00 + + +waiting on router queue for slot.... +22:28:08 ============================================================================ +22:28:08 Slot Id : <161> +22:28:08 Transaction Type : REQUEST +22:28:08 Received From : +22:28:08 ============================================================================ +22:28:08 FNo. Len. Field Value +22:28:08 ============================================================================ +22:28:08 [ 1] [ 4] [0800] +22:28:08 [ 2] [ 5] [02531] +22:28:08 [ 3] [ 6] [579228] +22:28:08 [ 7] [ 10] [0320152808] +22:28:08 [ 11] [ 6] [807716] +22:28:08 [ 15] [ 10] [0320152808] +22:28:08 [ 37] [ 11] [57922807716] +22:28:08 [ 70] [ 3] [001] +22:28:08 ============================================================================ +22:28:08 + + +waiting on router queue for slot.... +22:28:08 ============================================================================ +22:28:08 Slot Id : <161> +22:28:08 Transaction Type : RESPONSE +22:28:08 Received From : +22:28:08 ============================================================================ +22:28:08 FNo. Len. Field Value +22:28:08 ============================================================================ +22:28:08 [ 1] [ 4] [0810] +22:28:08 [ 7] [ 10] [0320152808] +22:28:08 [ 11] [ 6] [807716] +22:28:08 [ 15] [ 4] [0320] +22:28:08 [ 37] [ 12] [57922807716] +22:28:08 [ 39] [ 2] [00] +22:28:08 [ 70] [ 3] [001] +22:28:08 ============================================================================ +22:28:08 Sending to : +22:28:08 ============================================================================ +22:28:08 + + +waiting on router queue for slot.... +22:28:11 ============================================================================ +22:28:11 Slot Id : <122> +22:28:11 Transaction Type : REQUEST +22:28:11 Received From : +22:28:11 ============================================================================ +22:28:11 FNo. Len. Field Value +22:28:11 ============================================================================ +22:28:11 [ 1] [ 4] [0800] +22:28:11 [ 7] [ 10] [0320032719] +22:28:11 [ 11] [ 6] [158766] +22:28:11 [ 70] [ 3] [301] +22:28:11 ============================================================================ +22:28:11 + + +waiting on router queue for slot.... +22:28:11 Sending to : +22:28:11 ============================================================================ +22:28:11 ============================================================================ +22:28:11 Slot Id : <122> +22:28:11 Transaction Type : RESPONSE +22:28:11 Received From : +22:28:11 ============================================================================ +22:28:11 FNo. Len. Field Value +22:28:11 ============================================================================ +22:28:11 [ 1] [ 4] [0810] +22:28:11 [ 7] [ 10] [0320032719] +22:28:11 [ 11] [ 6] [158766] +22:28:11 [ 39] [ 2] [00] +22:28:11 [ 70] [ 3] [301] +22:28:11 ============================================================================ +22:28:11 Calculate Source COMM Id = 2 +22:28:11 ============================================================================ +22:28:11 + + +waiting on router queue for slot.... +22:28:22 ============================================================================ +22:28:22 Slot Id : <162> +22:28:22 Transaction Type : REQUEST +22:28:22 Received From : +22:28:22 ============================================================================ +22:28:22 FNo. Len. Field Value +22:28:22 ============================================================================ +22:28:22 [ 1] [ 4] [0800] +22:28:22 [ 7] [ 10] [0320032730] +22:28:22 [ 11] [ 6] [158767] +22:28:22 [ 70] [ 3] [301] +22:28:22 ============================================================================ +22:28:22 + + +waiting on router queue for slot.... +22:28:22 Sending to : +22:28:22 ============================================================================ +22:28:22 ============================================================================ +22:28:22 Slot Id : <162> +22:28:22 Transaction Type : RESPONSE +22:28:22 Received From : +22:28:22 ============================================================================ +22:28:22 FNo. Len. Field Value +22:28:22 ============================================================================ +22:28:22 [ 1] [ 4] [0810] +22:28:22 [ 7] [ 10] [0320032730] +22:28:22 [ 11] [ 6] [158767] +22:28:22 [ 39] [ 2] [00] +22:28:22 [ 70] [ 3] [301] +22:28:22 ============================================================================ +22:28:22 Calculate Source COMM Id = 2 +22:28:22 ============================================================================ +22:28:22 + + +waiting on router queue for slot.... +22:28:30 ============================================================================ +22:28:30 Slot Id : <143> +22:28:30 Transaction Type : REQUEST +22:28:30 Received From : +22:28:30 ============================================================================ +22:28:30 FNo. Len. Field Value +22:28:30 ============================================================================ +22:28:30 [ 1] [ 4] [0200] +22:28:30 [ 2] [ 16] [6688990040137604] +22:28:30 [ 3] [ 6] [010000] +22:28:30 [ 4] [ 12] [000015000000] +22:28:30 [ 7] [ 10] [0320222826] +22:28:30 [ 11] [ 6] [848545] +22:28:30 [ 12] [ 6] [222826] +22:28:30 [ 13] [ 4] [0320] +22:28:30 [ 15] [ 4] [0320] +22:28:30 [ 18] [ 4] [6011] +22:28:30 [ 22] [ 3] [900] +22:28:30 [ 25] [ 2] [02] +22:28:30 [ 28] [ 9] [D00002000] +22:28:30 [ 32] [ 6] [621354] +22:28:30 [ 35] [ 37] [6688990040137604=98041261049050200000] +22:28:30 [ 37] [ 12] [507905230368] +22:28:30 [ 41] [ 8] [01013200] +22:28:30 [ 42] [ 15] [NATIVE ] +22:28:30 [ 43] [ 40] [Khoksivilay Distric Vientiane LAO] +22:28:30 [ 49] [ 3] [418] +22:28:30 [ 52] [ 16] [11432C57B220A2C3] +22:28:30 ============================================================================ +22:28:30 + + +waiting on router queue for slot.... +22:28:30 Sending to : +22:28:30 ============================================================================ +22:28:30 Sending to : +22:28:30 ============================================================================ +22:28:30 ============================================================================ +22:28:30 Slot Id : <143> +22:28:30 Transaction Type : REQUEST +22:28:30 Received From : +22:28:30 ============================================================================ +22:28:30 FNo. Len. Field Value +22:28:30 ============================================================================ +22:28:30 [ 1] [ 4] [0200] +22:28:30 [ 2] [ 16] [6688990040137604] +22:28:30 [ 3] [ 6] [010000] +22:28:30 [ 4] [ 12] [000015000000] +22:28:30 [ 7] [ 10] [0320222826] +22:28:30 [ 11] [ 6] [848545] +22:28:30 [ 12] [ 6] [222826] +22:28:30 [ 13] [ 4] [0320] +22:28:30 [ 15] [ 4] [0320] +22:28:30 [ 18] [ 4] [6011] +22:28:30 [ 22] [ 3] [900] +22:28:30 [ 25] [ 2] [02] +22:28:30 [ 28] [ 9] [D00002000] +22:28:30 [ 32] [ 6] [621354] +22:28:30 [ 35] [ 37] [6688990040137604=98041261049050200000] +22:28:30 [ 37] [ 12] [507905230368] +22:28:30 [ 41] [ 8] [01013200] +22:28:30 [ 42] [ 15] [NATIVE ] +22:28:30 [ 43] [ 40] [Khoksivilay Distric Vientiane LAO] +22:28:30 [ 49] [ 3] [418] +22:28:30 [ 52] [ 16] [11432C57B220A2C3] +22:28:30 ============================================================================ +22:28:30 + + +waiting on router queue for slot.... +22:28:30 Sending to : +22:28:30 ============================================================================ +22:28:31 ============================================================================ +22:28:31 Slot Id : <143> +22:28:31 Transaction Type : REQUEST +22:28:31 Received From : +22:28:31 ============================================================================ +22:28:31 FNo. Len. Field Value +22:28:31 ============================================================================ +22:28:31 [ 1] [ 4] [0200] +22:28:31 [ 2] [ 16] [6688990040137604] +22:28:31 [ 3] [ 6] [010000] +22:28:31 [ 4] [ 12] [000015000000] +22:28:31 [ 7] [ 10] [0320222826] +22:28:31 [ 11] [ 6] [848545] +22:28:31 [ 12] [ 6] [222826] +22:28:31 [ 13] [ 4] [0320] +22:28:31 [ 15] [ 4] [0320] +22:28:31 [ 18] [ 4] [6011] +22:28:31 [ 22] [ 3] [900] +22:28:31 [ 25] [ 2] [02] +22:28:31 [ 28] [ 9] [D00002000] +22:28:31 [ 32] [ 6] [621354] +22:28:31 [ 35] [ 37] [6688990040137604=98041261049050200000] +22:28:31 [ 37] [ 12] [507905230368] +22:28:31 [ 41] [ 8] [01013200] +22:28:31 [ 42] [ 15] [NATIVE ] +22:28:31 [ 43] [ 40] [Khoksivilay Distric Vientiane LAO] +22:28:31 [ 49] [ 3] [418] +22:28:31 [ 52] [ 16] [8A26080AAC9B4188] +22:28:31 ============================================================================ +22:28:31 + + +waiting on router queue for slot.... +22:28:31 Sending to : <4> +22:28:31 ============================================================================ +22:28:32 ============================================================================ +22:28:32 Slot Id : <166> +22:28:32 Transaction Type : REQUEST +22:28:32 Received From : +22:28:32 ============================================================================ +22:28:32 FNo. Len. Field Value +22:28:32 ============================================================================ +22:28:32 [ 1] [ 4] [0800] +22:28:32 [ 7] [ 10] [0320032741] +22:28:32 [ 11] [ 6] [158768] +22:28:32 [ 70] [ 3] [301] +22:28:32 ============================================================================ +22:28:32 + + +waiting on router queue for slot.... +22:28:32 Sending to : +22:28:32 ============================================================================ +22:28:32 ============================================================================ +22:28:32 Slot Id : <166> +22:28:32 Transaction Type : RESPONSE +22:28:32 Received From : +22:28:32 ============================================================================ +22:28:32 FNo. Len. Field Value +22:28:32 ============================================================================ +22:28:32 [ 1] [ 4] [0810] +22:28:32 [ 7] [ 10] [0320032741] +22:28:32 [ 11] [ 6] [158768] +22:28:32 [ 39] [ 2] [00] +22:28:32 [ 70] [ 3] [301] +22:28:32 ============================================================================ +22:28:32 Calculate Source COMM Id = 2 +22:28:32 ============================================================================ +22:28:32 + + +waiting on router queue for slot.... +22:28:33 ============================================================================ +22:28:33 Slot Id : <143> +22:28:33 Transaction Type : RESPONSE +22:28:33 Received From : +22:28:33 ============================================================================ +22:28:33 FNo. Len. Field Value +22:28:33 ============================================================================ +22:28:33 [ 1] [ 4] [0210] +22:28:33 [ 2] [ 16] [6688990040137604] +22:28:33 [ 3] [ 6] [010000] +22:28:33 [ 4] [ 12] [000015000000] +22:28:33 [ 11] [ 6] [848545] +22:28:33 [ 12] [ 6] [222826] +22:28:33 [ 15] [ 4] [0320] +22:28:33 [ 18] [ 4] [6011] +22:28:33 [ 32] [ 6] [621354] +22:28:33 [ 35] [ 37] [6688990040137604=98041261049050200000] +22:28:33 [ 37] [ 12] [507905230368] +22:28:33 [ 38] [ 6] [869556] +22:28:33 [ 39] [ 2] [00] +22:28:33 [ 41] [ 8] [01013200] +22:28:33 [ 49] [ 3] [418] +22:28:33 [ 54] [ 20] [0002418C000007519395] +22:28:33 ============================================================================ +22:28:33 Sending to : +22:28:33 ============================================================================ +22:28:33 + + +waiting on router queue for slot.... +22:28:34 ============================================================================ +22:28:34 Slot Id : <143> +22:28:34 Transaction Type : RESPONSE +22:28:34 Received From : +22:28:34 ============================================================================ +22:28:34 FNo. Len. Field Value +22:28:34 ============================================================================ +22:28:34 [ 1] [ 4] [0210] +22:28:34 [ 2] [ 16] [6688990040137604] +22:28:34 [ 3] [ 6] [010000] +22:28:34 [ 4] [ 12] [000015000000] +22:28:34 [ 11] [ 6] [848545] +22:28:34 [ 12] [ 6] [222826] +22:28:34 [ 15] [ 4] [0320] +22:28:34 [ 18] [ 4] [6011] +22:28:34 [ 32] [ 6] [621354] +22:28:34 [ 35] [ 37] [6688990040137604=98041261049050200000] +22:28:34 [ 37] [ 12] [507905230368] +22:28:34 [ 38] [ 6] [869556] +22:28:34 [ 39] [ 2] [00] +22:28:34 [ 41] [ 8] [01013200] +22:28:34 [ 49] [ 3] [418] +22:28:34 [ 54] [ 20] [0002418C000007519395] +22:28:34 ============================================================================ +22:28:34 Calculate Source COMM Id = 0 +22:28:34 ============================================================================ +22:28:34 + + +waiting on router queue for slot.... +22:28:35 ============================================================================ +22:28:35 Slot Id : <154> +22:28:35 Transaction Type : REQUEST +22:28:35 Received From : +22:28:35 ============================================================================ +22:28:35 FNo. Len. Field Value +22:28:35 ============================================================================ +22:28:35 [ 1] [ 4] [0200] +22:28:35 [ 2] [ 16] [1888880000087411] +22:28:35 [ 3] [ 6] [010000] +22:28:35 [ 4] [ 12] [000010000000] +22:28:35 [ 7] [ 10] [0320222626] +22:28:35 [ 11] [ 6] [957980] +22:28:35 [ 12] [ 6] [222626] +22:28:35 [ 13] [ 4] [0320] +22:28:35 [ 15] [ 4] [0320] +22:28:35 [ 18] [ 4] [6011] +22:28:35 [ 19] [ 3] [418] +22:28:35 [ 22] [ 3] [021] +22:28:35 [ 25] [ 2] [01] +22:28:35 [ 28] [ 9] [D00002000] +22:28:35 [ 32] [ 6] [668899] +22:28:35 [ 35] [ 32] [1888880000087411=000010100000362] +22:28:35 [ 37] [ 12] [507900771520] +22:28:35 [ 41] [ 8] [03005001] +22:28:35 [ 42] [ 15] [APT ] +22:28:35 [ 43] [ 40] [ OUDOMSAY BRANCH OFFICE OU] +22:28:35 [ 49] [ 3] [418] +22:28:35 [ 52] [ 16] [9AE4300AC72CE6F2] +22:28:35 ============================================================================ +22:28:35 + + +waiting on router queue for slot.... +22:28:35 Sending to : +22:28:35 ============================================================================ +22:28:35 Sending to : +22:28:35 ============================================================================ +22:28:36 ============================================================================ +22:28:36 Slot Id : <154> +22:28:36 Transaction Type : REQUEST +22:28:36 Received From : +22:28:36 ============================================================================ +22:28:36 FNo. Len. Field Value +22:28:36 ============================================================================ +22:28:36 [ 1] [ 4] [0200] +22:28:36 [ 2] [ 16] [1888880000087411] +22:28:36 [ 3] [ 6] [010000] +22:28:36 [ 4] [ 12] [000010000000] +22:28:36 [ 7] [ 10] [0320222626] +22:28:36 [ 11] [ 6] [957980] +22:28:36 [ 12] [ 6] [222626] +22:28:36 [ 13] [ 4] [0320] +22:28:36 [ 15] [ 4] [0320] +22:28:36 [ 18] [ 4] [6011] +22:28:36 [ 19] [ 3] [418] +22:28:36 [ 22] [ 3] [021] +22:28:36 [ 25] [ 2] [01] +22:28:36 [ 28] [ 9] [D00002000] +22:28:36 [ 32] [ 6] [668899] +22:28:36 [ 35] [ 32] [1888880000087411=000010100000362] +22:28:36 [ 37] [ 12] [507900771520] +22:28:36 [ 41] [ 8] [03005001] +22:28:36 [ 42] [ 15] [APT ] +22:28:36 [ 43] [ 40] [ OUDOMSAY BRANCH OFFICE OU] +22:28:36 [ 49] [ 3] [418] +22:28:36 [ 52] [ 16] [9AE4300AC72CE6F2] +22:28:36 ============================================================================ +22:28:36 + + +waiting on router queue for slot.... +22:28:36 Sending to : +22:28:36 ============================================================================ +22:28:36 ============================================================================ +22:28:36 Slot Id : <154> +22:28:36 Transaction Type : REQUEST +22:28:36 Received From : +22:28:36 ============================================================================ +22:28:36 FNo. Len. Field Value +22:28:36 ============================================================================ +22:28:36 [ 1] [ 4] [0200] +22:28:36 [ 2] [ 16] [1888880000087411] +22:28:36 [ 3] [ 6] [010000] +22:28:36 [ 4] [ 12] [000010000000] +22:28:36 [ 7] [ 10] [0320222626] +22:28:36 [ 11] [ 6] [957980] +22:28:36 [ 12] [ 6] [222626] +22:28:36 [ 13] [ 4] [0320] +22:28:36 [ 15] [ 4] [0320] +22:28:36 [ 18] [ 4] [6011] +22:28:36 [ 19] [ 3] [418] +22:28:36 [ 22] [ 3] [021] +22:28:36 [ 25] [ 2] [01] +22:28:36 [ 28] [ 9] [D00002000] +22:28:36 [ 32] [ 6] [668899] +22:28:36 [ 35] [ 32] [1888880000087411=000010100000362] +22:28:36 [ 37] [ 12] [507900771520] +22:28:36 [ 41] [ 8] [03005001] +22:28:36 [ 42] [ 15] [APT ] +22:28:36 [ 43] [ 40] [ OUDOMSAY BRANCH OFFICE OU] +22:28:36 [ 49] [ 3] [418] +22:28:36 [ 52] [ 16] [01FC6CED7309FEFB] +22:28:36 ============================================================================ +22:28:36 + + +waiting on router queue for slot.... +22:28:36 Sending to : <5> +22:28:36 ============================================================================ +22:28:43 ============================================================================ +22:28:43 Slot Id : <145> +22:28:43 Transaction Type : REQUEST +22:28:43 Received From : +22:28:43 ============================================================================ +22:28:43 FNo. Len. Field Value +22:28:43 ============================================================================ +22:28:43 [ 1] [ 4] [0800] +22:28:43 [ 7] [ 10] [0320032752] +22:28:43 [ 11] [ 6] [158769] +22:28:43 [ 70] [ 3] [301] +22:28:43 ============================================================================ +22:28:43 + + +waiting on router queue for slot.... +22:28:43 Sending to : +22:28:43 ============================================================================ +22:28:43 ============================================================================ +22:28:43 Slot Id : <145> +22:28:43 Transaction Type : RESPONSE +22:28:43 Received From : +22:28:43 ============================================================================ +22:28:43 FNo. Len. Field Value +22:28:43 ============================================================================ +22:28:43 [ 1] [ 4] [0810] +22:28:43 [ 7] [ 10] [0320032752] +22:28:43 [ 11] [ 6] [158769] +22:28:43 [ 39] [ 2] [00] +22:28:43 [ 70] [ 3] [301] +22:28:43 ============================================================================ +22:28:43 Calculate Source COMM Id = 2 +22:28:43 ============================================================================ +22:28:43 + + +waiting on router queue for slot.... +22:28:44 ============================================================================ +22:28:44 Slot Id : <154> +22:28:44 Transaction Type : RESPONSE +22:28:44 Received From : +22:28:44 ============================================================================ +22:28:44 FNo. Len. Field Value +22:28:44 ============================================================================ +22:28:44 [ 1] [ 4] [0210] +22:28:44 [ 2] [ 16] [1888880000087411] +22:28:44 [ 3] [ 6] [010000] +22:28:44 [ 4] [ 12] [000010000000] +22:28:44 [ 7] [ 10] [0320222626] +22:28:44 [ 11] [ 6] [957980] +22:28:44 [ 12] [ 6] [222626] +22:28:44 [ 13] [ 4] [0320] +22:28:44 [ 15] [ 4] [0320] +22:28:44 [ 18] [ 4] [6011] +22:28:44 [ 19] [ 3] [418] +22:28:44 [ 32] [ 6] [668899] +22:28:44 [ 37] [ 12] [507900771520] +22:28:44 [ 38] [ 6] [402250] +22:28:44 [ 39] [ 2] [00] +22:28:44 [ 41] [ 8] [03005001] +22:28:44 [ 49] [ 3] [418] +22:28:44 [ 54] [ 0] [] +22:28:44 ============================================================================ +22:28:44 Sending to : +22:28:44 ============================================================================ +22:28:44 + + +waiting on router queue for slot.... +22:28:45 ============================================================================ +22:28:45 Slot Id : <154> +22:28:45 Transaction Type : RESPONSE +22:28:45 Received From : +22:28:45 ============================================================================ +22:28:45 FNo. Len. Field Value +22:28:45 ============================================================================ +22:28:45 [ 1] [ 4] [0210] +22:28:45 [ 2] [ 16] [1888880000087411] +22:28:45 [ 3] [ 6] [010000] +22:28:45 [ 4] [ 12] [000010000000] +22:28:45 [ 7] [ 10] [0320222626] +22:28:45 [ 11] [ 6] [957980] +22:28:45 [ 12] [ 6] [222626] +22:28:45 [ 13] [ 4] [0320] +22:28:45 [ 15] [ 4] [0320] +22:28:45 [ 18] [ 4] [6011] +22:28:45 [ 19] [ 3] [418] +22:28:45 [ 32] [ 6] [668899] +22:28:45 [ 37] [ 12] [507900771520] +22:28:45 [ 38] [ 6] [402250] +22:28:45 [ 39] [ 2] [00] +22:28:45 [ 41] [ 8] [03005001] +22:28:45 [ 49] [ 3] [418] +22:28:45 [ 54] [ 0] [] +22:28:45 ============================================================================ +22:28:45 Calculate Source COMM Id = 4 +22:28:45 ============================================================================ +22:28:45 + + +waiting on router queue for slot.... +22:28:54 ============================================================================ +22:28:54 Slot Id : <153> +22:28:54 Transaction Type : REQUEST +22:28:54 Received From : +22:28:54 ============================================================================ +22:28:54 FNo. Len. Field Value +22:28:54 ============================================================================ +22:28:54 [ 1] [ 4] [0800] +22:28:54 [ 7] [ 10] [0320032802] +22:28:54 [ 11] [ 6] [158770] +22:28:54 [ 70] [ 3] [301] +22:28:54 ============================================================================ +22:28:54 + + +waiting on router queue for slot.... +22:28:54 Sending to : +22:28:54 ============================================================================ +22:28:54 ============================================================================ +22:28:54 Slot Id : <153> +22:28:54 Transaction Type : RESPONSE +22:28:54 Received From : +22:28:54 ============================================================================ +22:28:54 FNo. Len. Field Value +22:28:54 ============================================================================ +22:28:54 [ 1] [ 4] [0810] +22:28:54 [ 7] [ 10] [0320032802] +22:28:54 [ 11] [ 6] [158770] +22:28:54 [ 39] [ 2] [00] +22:28:54 [ 70] [ 3] [301] +22:28:54 ============================================================================ +22:28:54 Calculate Source COMM Id = 2 +22:28:54 ============================================================================ +22:28:54 + + +waiting on router queue for slot.... +22:28:59 ============================================================================ +22:28:59 Slot Id : <120> +22:28:59 Transaction Type : REQUEST +22:28:59 Received From : +22:28:59 ============================================================================ +22:28:59 FNo. Len. Field Value +22:28:59 ============================================================================ +22:28:59 [ 1] [ 4] [0800] +22:28:59 [ 7] [ 10] [0321054050] +22:28:59 [ 11] [ 6] [224050] +22:28:59 [ 37] [ 12] [57922224050] +22:28:59 [ 70] [ 3] [301] +22:28:59 ============================================================================ +22:28:59 + + +waiting on router queue for slot.... +22:28:59 Sending to : +22:28:59 ============================================================================ +22:28:59 ============================================================================ +22:28:59 Slot Id : <120> +22:28:59 Transaction Type : RESPONSE +22:28:59 Received From : +22:28:59 ============================================================================ +22:28:59 FNo. Len. Field Value +22:28:59 ============================================================================ +22:28:59 [ 1] [ 4] [0810] +22:28:59 [ 7] [ 10] [0321054050] +22:28:59 [ 11] [ 6] [224050] +22:28:59 [ 37] [ 12] [579222240500] +22:28:59 [ 39] [ 2] [00] +22:28:59 [ 70] [ 3] [810] +22:28:59 ============================================================================ +22:28:59 Calculate Source COMM Id = 6 +22:28:59 ============================================================================ +22:28:59 + + +waiting on router queue for slot.... +22:29:04 ============================================================================ +22:29:04 Slot Id : <150> +22:29:04 Transaction Type : REQUEST +22:29:04 Received From : +22:29:04 ============================================================================ +22:29:04 FNo. Len. Field Value +22:29:04 ============================================================================ +22:29:04 [ 1] [ 4] [0800] +22:29:04 [ 7] [ 10] [0320032812] +22:29:04 [ 11] [ 6] [158771] +22:29:04 [ 70] [ 3] [301] +22:29:04 ============================================================================ +22:29:04 + + +waiting on router queue for slot.... +22:29:04 Sending to : +22:29:04 ============================================================================ +22:29:04 ============================================================================ +22:29:04 Slot Id : <150> +22:29:04 Transaction Type : RESPONSE +22:29:04 Received From : +22:29:04 ============================================================================ +22:29:04 FNo. Len. Field Value +22:29:04 ============================================================================ +22:29:04 [ 1] [ 4] [0810] +22:29:04 [ 7] [ 10] [0320032812] +22:29:04 [ 11] [ 6] [158771] +22:29:04 [ 39] [ 2] [00] +22:29:04 [ 70] [ 3] [301] +22:29:04 ============================================================================ +22:29:04 Calculate Source COMM Id = 2 +22:29:04 ============================================================================ +22:29:04 + + +waiting on router queue for slot.... +22:29:10 ============================================================================ +22:29:10 Slot Id : <110> +22:29:10 Transaction Type : REQUEST +22:29:10 Received From : +22:29:10 ============================================================================ +22:29:10 FNo. Len. Field Value +22:29:10 ============================================================================ +22:29:10 [ 1] [ 4] [0800] +22:29:10 [ 2] [ 5] [02531] +22:29:10 [ 3] [ 6] [579228] +22:29:10 [ 7] [ 10] [0320152910] +22:29:10 [ 11] [ 6] [807717] +22:29:10 [ 15] [ 10] [0320152910] +22:29:10 [ 37] [ 11] [57922807717] +22:29:10 [ 70] [ 3] [001] +22:29:10 ============================================================================ +22:29:10 + + +waiting on router queue for slot.... +22:29:10 ============================================================================ +22:29:10 Slot Id : <110> +22:29:10 Transaction Type : RESPONSE +22:29:10 Received From : +22:29:10 ============================================================================ +22:29:10 FNo. Len. Field Value +22:29:10 ============================================================================ +22:29:10 [ 1] [ 4] [0810] +22:29:10 [ 7] [ 10] [0320152910] +22:29:10 [ 11] [ 6] [807717] +22:29:10 [ 15] [ 4] [0320] +22:29:10 [ 37] [ 12] [57922807717] +22:29:10 [ 39] [ 2] [00] +22:29:10 [ 70] [ 3] [001] +22:29:10 ============================================================================ +22:29:10 Sending to : +22:29:10 ============================================================================ +22:29:10 + + +waiting on router queue for slot.... +22:29:15 ============================================================================ +22:29:15 Slot Id : <133> +22:29:15 Transaction Type : REQUEST +22:29:15 Received From : +22:29:15 ============================================================================ +22:29:15 FNo. Len. Field Value +22:29:15 ============================================================================ +22:29:15 [ 1] [ 4] [0800] +22:29:15 [ 7] [ 10] [0320032823] +22:29:15 [ 11] [ 6] [158772] +22:29:15 [ 70] [ 3] [301] +22:29:15 ============================================================================ +22:29:15 + + +waiting on router queue for slot.... +22:29:15 Sending to : +22:29:15 ============================================================================ +22:29:15 ============================================================================ +22:29:15 Slot Id : <133> +22:29:15 Transaction Type : RESPONSE +22:29:15 Received From : +22:29:15 ============================================================================ +22:29:15 FNo. Len. Field Value +22:29:15 ============================================================================ +22:29:15 [ 1] [ 4] [0810] +22:29:15 [ 7] [ 10] [0320032823] +22:29:15 [ 11] [ 6] [158772] +22:29:15 [ 39] [ 2] [00] +22:29:15 [ 70] [ 3] [301] +22:29:15 ============================================================================ +22:29:15 Calculate Source COMM Id = 2 +22:29:15 ============================================================================ +22:29:15 + + +waiting on router queue for slot.... +22:29:26 ============================================================================ +22:29:26 Slot Id : <159> +22:29:26 Transaction Type : REQUEST +22:29:26 Received From : +22:29:26 ============================================================================ +22:29:26 FNo. Len. Field Value +22:29:26 ============================================================================ +22:29:26 [ 1] [ 4] [0800] +22:29:26 [ 7] [ 10] [0320032834] +22:29:26 [ 11] [ 6] [158773] +22:29:26 [ 70] [ 3] [301] +22:29:26 ============================================================================ +22:29:26 + + +waiting on router queue for slot.... +22:29:26 Sending to : +22:29:26 ============================================================================ +22:29:26 ============================================================================ +22:29:26 Slot Id : <159> +22:29:26 Transaction Type : RESPONSE +22:29:26 Received From : +22:29:26 ============================================================================ +22:29:26 FNo. Len. Field Value +22:29:26 ============================================================================ +22:29:26 [ 1] [ 4] [0810] +22:29:26 [ 7] [ 10] [0320032834] +22:29:26 [ 11] [ 6] [158773] +22:29:26 [ 39] [ 2] [00] +22:29:26 [ 70] [ 3] [301] +22:29:26 ============================================================================ +22:29:26 Calculate Source COMM Id = 2 +22:29:26 ============================================================================ +22:29:26 + + +waiting on router queue for slot.... +22:29:37 ============================================================================ +22:29:37 Slot Id : <146> +22:29:37 Transaction Type : REQUEST +22:29:37 Received From : +22:29:37 ============================================================================ +22:29:37 FNo. Len. Field Value +22:29:37 ============================================================================ +22:29:37 [ 1] [ 4] [0800] +22:29:37 [ 7] [ 10] [0320032845] +22:29:37 [ 11] [ 6] [158774] +22:29:37 [ 70] [ 3] [301] +22:29:37 ============================================================================ +22:29:37 + + +waiting on router queue for slot.... +22:29:37 Sending to : +22:29:37 ============================================================================ +22:29:37 ============================================================================ +22:29:37 Slot Id : <146> +22:29:37 Transaction Type : RESPONSE +22:29:37 Received From : +22:29:37 ============================================================================ +22:29:37 FNo. Len. Field Value +22:29:37 ============================================================================ +22:29:37 [ 1] [ 4] [0810] +22:29:37 [ 7] [ 10] [0320032845] +22:29:37 [ 11] [ 6] [158774] +22:29:37 [ 39] [ 2] [00] +22:29:37 [ 70] [ 3] [301] +22:29:37 ============================================================================ +22:29:37 Calculate Source COMM Id = 2 +22:29:37 ============================================================================ +22:29:37 + + +waiting on router queue for slot.... +22:29:48 ============================================================================ +22:29:48 Slot Id : <142> +22:29:48 Transaction Type : REQUEST +22:29:48 Received From : +22:29:48 ============================================================================ +22:29:48 FNo. Len. Field Value +22:29:48 ============================================================================ +22:29:48 [ 1] [ 4] [0800] +22:29:48 [ 7] [ 10] [0320032856] +22:29:48 [ 11] [ 6] [158775] +22:29:48 [ 70] [ 3] [301] +22:29:48 ============================================================================ +22:29:48 + + +waiting on router queue for slot.... +22:29:48 Sending to : +22:29:48 ============================================================================ +22:29:48 ============================================================================ +22:29:48 Slot Id : <142> +22:29:48 Transaction Type : RESPONSE +22:29:48 Received From : +22:29:48 ============================================================================ +22:29:48 FNo. Len. Field Value +22:29:48 ============================================================================ +22:29:48 [ 1] [ 4] [0810] +22:29:48 [ 7] [ 10] [0320032856] +22:29:48 [ 11] [ 6] [158775] +22:29:48 [ 39] [ 2] [00] +22:29:48 [ 70] [ 3] [301] +22:29:48 ============================================================================ +22:29:48 Calculate Source COMM Id = 2 +22:29:48 ============================================================================ +22:29:48 + + +waiting on router queue for slot.... +22:29:55 ============================================================================ +22:29:55 Slot Id : <158> +22:29:55 Transaction Type : REQUEST +22:29:55 Received From : +22:29:55 ============================================================================ +22:29:55 FNo. Len. Field Value +22:29:55 ============================================================================ +22:29:55 [ 1] [ 4] [0800] +22:29:55 [ 7] [ 10] [0320153742] +22:29:55 [ 11] [ 6] [041479] +22:29:55 [ 37] [ 12] [57922041479] +22:29:55 [ 70] [ 3] [301] +22:29:55 ============================================================================ +22:29:55 + + +waiting on router queue for slot.... +22:29:55 Sending to : +22:29:55 ============================================================================ +22:29:55 ============================================================================ +22:29:55 Slot Id : <158> +22:29:55 Transaction Type : RESPONSE +22:29:55 Received From : +22:29:55 ============================================================================ +22:29:55 FNo. Len. Field Value +22:29:55 ============================================================================ +22:29:55 [ 1] [ 4] [0810] +22:29:55 [ 7] [ 10] [0320153742] +22:29:55 [ 11] [ 6] [041479] +22:29:55 [ 37] [ 12] [579220414790] +22:29:55 [ 39] [ 2] [00] +22:29:55 [ 70] [ 3] [810] +22:29:55 ============================================================================ +22:29:55 Calculate Source COMM Id = 1 +22:29:55 ============================================================================ +22:29:55 + + +waiting on router queue for slot.... +22:29:59 ============================================================================ +22:29:59 Slot Id : <87> +22:29:59 Transaction Type : REQUEST +22:29:59 Received From : +22:29:59 ============================================================================ +22:29:59 FNo. Len. Field Value +22:29:59 ============================================================================ +22:29:59 [ 1] [ 4] [0800] +22:29:59 [ 7] [ 10] [0320032907] +22:29:59 [ 11] [ 6] [158776] +22:29:59 [ 70] [ 3] [301] +22:29:59 ============================================================================ +22:29:59 + + +waiting on router queue for slot.... +22:29:59 Sending to : +22:29:59 ============================================================================ +22:29:59 ============================================================================ +22:29:59 Slot Id : <87> +22:29:59 Transaction Type : RESPONSE +22:29:59 Received From : +22:29:59 ============================================================================ +22:29:59 FNo. Len. Field Value +22:29:59 ============================================================================ +22:29:59 [ 1] [ 4] [0810] +22:29:59 [ 7] [ 10] [0320032907] +22:29:59 [ 11] [ 6] [158776] +22:29:59 [ 39] [ 2] [00] +22:29:59 [ 70] [ 3] [301] +22:29:59 ============================================================================ +22:29:59 Calculate Source COMM Id = 2 +22:29:59 ============================================================================ +22:29:59 + + +waiting on router queue for slot.... +22:30:04 ============================================================================ +22:30:04 Slot Id : <167> +22:30:04 Transaction Type : REQUEST +22:30:04 Received From : +22:30:04 ============================================================================ +22:30:04 FNo. Len. Field Value +22:30:04 ============================================================================ +22:30:04 [ 1] [ 4] [0800] +22:30:04 [ 7] [ 10] [0321054155] +22:30:04 [ 11] [ 6] [224155] +22:30:04 [ 37] [ 12] [57922224155] +22:30:04 [ 70] [ 3] [301] +22:30:04 ============================================================================ +22:30:04 + + +waiting on router queue for slot.... +22:30:04 Sending to : +22:30:04 ============================================================================ +22:30:04 ============================================================================ +22:30:04 Slot Id : <167> +22:30:04 Transaction Type : RESPONSE +22:30:04 Received From : +22:30:04 ============================================================================ +22:30:04 FNo. Len. Field Value +22:30:04 ============================================================================ +22:30:04 [ 1] [ 4] [0810] +22:30:04 [ 7] [ 10] [0321054155] +22:30:04 [ 11] [ 6] [224155] +22:30:04 [ 37] [ 12] [579222241550] +22:30:04 [ 39] [ 2] [00] +22:30:04 [ 70] [ 3] [810] +22:30:04 ============================================================================ +22:30:04 Calculate Source COMM Id = 6 +22:30:04 ============================================================================ +22:30:04 + + +waiting on router queue for slot.... +22:30:10 ============================================================================ +22:30:10 Slot Id : <137> +22:30:10 Transaction Type : REQUEST +22:30:10 Received From : +22:30:10 ============================================================================ +22:30:10 FNo. Len. Field Value +22:30:10 ============================================================================ +22:30:10 [ 1] [ 4] [0800] +22:30:10 [ 7] [ 10] [0320032918] +22:30:10 [ 11] [ 6] [158777] +22:30:10 [ 70] [ 3] [301] +22:30:10 ============================================================================ +22:30:10 + + +waiting on router queue for slot.... +22:30:10 Sending to : +22:30:10 ============================================================================ +22:30:10 ============================================================================ +22:30:10 Slot Id : <137> +22:30:10 Transaction Type : RESPONSE +22:30:10 Received From : +22:30:10 ============================================================================ +22:30:10 FNo. Len. Field Value +22:30:10 ============================================================================ +22:30:10 [ 1] [ 4] [0810] +22:30:10 [ 7] [ 10] [0320032918] +22:30:10 [ 11] [ 6] [158777] +22:30:10 [ 39] [ 2] [00] +22:30:10 [ 70] [ 3] [301] +22:30:10 ============================================================================ +22:30:10 Calculate Source COMM Id = 2 +22:30:10 ============================================================================ +22:30:10 + + +waiting on router queue for slot.... +22:30:12 ============================================================================ +22:30:12 Slot Id : <128> +22:30:12 Transaction Type : REQUEST +22:30:12 Received From : +22:30:12 ============================================================================ +22:30:12 FNo. Len. Field Value +22:30:12 ============================================================================ +22:30:12 [ 1] [ 4] [0800] +22:30:12 [ 2] [ 5] [02531] +22:30:12 [ 3] [ 6] [579228] +22:30:12 [ 7] [ 10] [0320153012] +22:30:12 [ 11] [ 6] [807718] +22:30:12 [ 15] [ 10] [0320153012] +22:30:12 [ 37] [ 11] [57922807718] +22:30:12 [ 70] [ 3] [001] +22:30:12 ============================================================================ +22:30:12 + + +waiting on router queue for slot.... +22:30:12 ============================================================================ +22:30:12 Slot Id : <128> +22:30:12 Transaction Type : RESPONSE +22:30:12 Received From : +22:30:12 ============================================================================ +22:30:12 FNo. Len. Field Value +22:30:12 ============================================================================ +22:30:12 [ 1] [ 4] [0810] +22:30:12 [ 7] [ 10] [0320153012] +22:30:12 [ 11] [ 6] [807718] +22:30:12 [ 15] [ 4] [0320] +22:30:12 [ 37] [ 12] [57922807718] +22:30:12 [ 39] [ 2] [00] +22:30:12 [ 70] [ 3] [001] +22:30:12 ============================================================================ +22:30:12 Sending to : +22:30:12 ============================================================================ +22:30:12 + + +waiting on router queue for slot.... +22:30:22 ============================================================================ +22:30:22 Slot Id : <130> +22:30:22 Transaction Type : REQUEST +22:30:22 Received From : +22:30:22 ============================================================================ +22:30:22 FNo. Len. Field Value +22:30:22 ============================================================================ +22:30:22 [ 1] [ 4] [0800] +22:30:22 [ 7] [ 10] [0320032930] +22:30:22 [ 11] [ 6] [158778] +22:30:22 [ 70] [ 3] [301] +22:30:22 ============================================================================ +22:30:22 + + +waiting on router queue for slot.... +22:30:22 Sending to : +22:30:22 ============================================================================ +22:30:22 ============================================================================ +22:30:22 Slot Id : <130> +22:30:22 Transaction Type : RESPONSE +22:30:22 Received From : +22:30:22 ============================================================================ +22:30:22 FNo. Len. Field Value +22:30:22 ============================================================================ +22:30:22 [ 1] [ 4] [0810] +22:30:22 [ 7] [ 10] [0320032930] +22:30:22 [ 11] [ 6] [158778] +22:30:22 [ 39] [ 2] [00] +22:30:22 [ 70] [ 3] [301] +22:30:22 ============================================================================ +22:30:22 Calculate Source COMM Id = 2 +22:30:22 ============================================================================ +22:30:22 + + +waiting on router queue for slot.... +22:30:37 ============================================================================ +22:30:37 Slot Id : <157> +22:30:37 Transaction Type : REQUEST +22:30:37 Received From : +22:30:37 ============================================================================ +22:30:37 FNo. Len. Field Value +22:30:37 ============================================================================ +22:30:37 [ 1] [ 4] [0800] +22:30:37 [ 7] [ 10] [0320032945] +22:30:37 [ 11] [ 6] [158779] +22:30:37 [ 70] [ 3] [301] +22:30:37 ============================================================================ +22:30:37 + + +waiting on router queue for slot.... +22:30:37 Sending to : +22:30:37 ============================================================================ +22:30:37 ============================================================================ +22:30:37 Slot Id : <157> +22:30:37 Transaction Type : RESPONSE +22:30:37 Received From : +22:30:37 ============================================================================ +22:30:37 FNo. Len. Field Value +22:30:37 ============================================================================ +22:30:37 [ 1] [ 4] [0810] +22:30:37 [ 7] [ 10] [0320032945] +22:30:37 [ 11] [ 6] [158779] +22:30:37 [ 39] [ 2] [00] +22:30:37 [ 70] [ 3] [301] +22:30:37 ============================================================================ +22:30:37 Calculate Source COMM Id = 2 +22:30:37 ============================================================================ +22:30:37 + + +waiting on router queue for slot.... +22:30:47 ============================================================================ +22:30:47 Slot Id : <175> +22:30:47 Transaction Type : REQUEST +22:30:47 Received From : +22:30:47 ============================================================================ +22:30:47 FNo. Len. Field Value +22:30:47 ============================================================================ +22:30:47 [ 1] [ 4] [0800] +22:30:47 [ 7] [ 10] [0320032955] +22:30:47 [ 11] [ 6] [158780] +22:30:47 [ 70] [ 3] [301] +22:30:47 ============================================================================ +22:30:47 + + +waiting on router queue for slot.... +22:30:47 Sending to : +22:30:47 ============================================================================ +22:30:47 ============================================================================ +22:30:47 Slot Id : <175> +22:30:47 Transaction Type : RESPONSE +22:30:47 Received From : +22:30:47 ============================================================================ +22:30:47 FNo. Len. Field Value +22:30:47 ============================================================================ +22:30:47 [ 1] [ 4] [0810] +22:30:47 [ 7] [ 10] [0320032955] +22:30:47 [ 11] [ 6] [158780] +22:30:47 [ 39] [ 2] [00] +22:30:47 [ 70] [ 3] [301] +22:30:47 ============================================================================ +22:30:47 Calculate Source COMM Id = 2 +22:30:47 ============================================================================ +22:30:47 + + +waiting on router queue for slot.... +22:30:58 ============================================================================ +22:30:58 Slot Id : <141> +22:30:58 Transaction Type : REQUEST +22:30:58 Received From : +22:30:58 ============================================================================ +22:30:58 FNo. Len. Field Value +22:30:58 ============================================================================ +22:30:58 [ 1] [ 4] [0800] +22:30:58 [ 7] [ 10] [0320033006] +22:30:58 [ 11] [ 6] [158781] +22:30:58 [ 70] [ 3] [301] +22:30:58 ============================================================================ +22:30:58 + + +waiting on router queue for slot.... +22:30:58 Sending to : +22:30:58 ============================================================================ +22:30:58 ============================================================================ +22:30:58 Slot Id : <141> +22:30:58 Transaction Type : RESPONSE +22:30:58 Received From : +22:30:58 ============================================================================ +22:30:58 FNo. Len. Field Value +22:30:58 ============================================================================ +22:30:58 [ 1] [ 4] [0810] +22:30:58 [ 7] [ 10] [0320033006] +22:30:58 [ 11] [ 6] [158781] +22:30:58 [ 39] [ 2] [00] +22:30:58 [ 70] [ 3] [301] +22:30:58 ============================================================================ +22:30:58 Calculate Source COMM Id = 2 +22:30:58 ============================================================================ +22:30:58 + + +waiting on router queue for slot.... +22:31:09 ============================================================================ +22:31:09 Slot Id : <151> +22:31:09 Transaction Type : REQUEST +22:31:09 Received From : +22:31:09 ============================================================================ +22:31:09 FNo. Len. Field Value +22:31:09 ============================================================================ +22:31:09 [ 1] [ 4] [0800] +22:31:09 [ 7] [ 10] [0320033017] +22:31:09 [ 11] [ 6] [158782] +22:31:09 [ 70] [ 3] [301] +22:31:09 ============================================================================ +22:31:09 + + +waiting on router queue for slot.... +22:31:09 Sending to : +22:31:09 ============================================================================ +22:31:09 ============================================================================ +22:31:09 Slot Id : <151> +22:31:09 Transaction Type : RESPONSE +22:31:09 Received From : +22:31:09 ============================================================================ +22:31:09 FNo. Len. Field Value +22:31:09 ============================================================================ +22:31:09 [ 1] [ 4] [0810] +22:31:09 [ 7] [ 10] [0320033017] +22:31:09 [ 11] [ 6] [158782] +22:31:09 [ 39] [ 2] [00] +22:31:09 [ 70] [ 3] [301] +22:31:09 ============================================================================ +22:31:09 Calculate Source COMM Id = 2 +22:31:09 ============================================================================ +22:31:09 + + +waiting on router queue for slot.... +22:31:09 ============================================================================ +22:31:09 Slot Id : <170> +22:31:09 Transaction Type : REQUEST +22:31:09 Received From : +22:31:09 ============================================================================ +22:31:09 FNo. Len. Field Value +22:31:09 ============================================================================ +22:31:09 [ 1] [ 4] [0800] +22:31:09 [ 7] [ 10] [0321054300] +22:31:09 [ 11] [ 6] [224300] +22:31:09 [ 37] [ 12] [57922224300] +22:31:09 [ 70] [ 3] [301] +22:31:09 ============================================================================ +22:31:09 + + +waiting on router queue for slot.... +22:31:09 Sending to : +22:31:09 ============================================================================ +22:31:09 ============================================================================ +22:31:09 Slot Id : <170> +22:31:09 Transaction Type : RESPONSE +22:31:09 Received From : +22:31:09 ============================================================================ +22:31:09 FNo. Len. Field Value +22:31:09 ============================================================================ +22:31:09 [ 1] [ 4] [0810] +22:31:09 [ 7] [ 10] [0321054300] +22:31:09 [ 11] [ 6] [224300] +22:31:09 [ 37] [ 12] [579222243000] +22:31:09 [ 39] [ 2] [00] +22:31:09 [ 70] [ 3] [810] +22:31:09 ============================================================================ +22:31:09 Calculate Source COMM Id = 6 +22:31:09 ============================================================================ +22:31:09 + + +waiting on router queue for slot.... +22:31:14 ============================================================================ +22:31:14 Slot Id : <172> +22:31:14 Transaction Type : REQUEST +22:31:14 Received From : +22:31:14 ============================================================================ +22:31:14 FNo. Len. Field Value +22:31:14 ============================================================================ +22:31:14 [ 1] [ 4] [0800] +22:31:14 [ 2] [ 5] [02531] +22:31:14 [ 3] [ 6] [579228] +22:31:14 [ 7] [ 10] [0320153114] +22:31:14 [ 11] [ 6] [807719] +22:31:14 [ 15] [ 10] [0320153114] +22:31:14 [ 37] [ 11] [57922807719] +22:31:14 [ 70] [ 3] [001] +22:31:14 ============================================================================ +22:31:14 + + +waiting on router queue for slot.... +22:31:14 ============================================================================ +22:31:14 Slot Id : <172> +22:31:14 Transaction Type : RESPONSE +22:31:14 Received From : +22:31:14 ============================================================================ +22:31:14 FNo. Len. Field Value +22:31:14 ============================================================================ +22:31:14 [ 1] [ 4] [0810] +22:31:14 [ 7] [ 10] [0320153114] +22:31:14 [ 11] [ 6] [807719] +22:31:14 [ 15] [ 4] [0320] +22:31:14 [ 37] [ 12] [57922807719] +22:31:14 [ 39] [ 2] [00] +22:31:14 [ 70] [ 3] [001] +22:31:14 ============================================================================ +22:31:14 Sending to : +22:31:14 ============================================================================ +22:31:14 + + +waiting on router queue for slot.... +22:31:19 ============================================================================ +22:31:19 Slot Id : <171> +22:31:19 Transaction Type : REQUEST +22:31:19 Received From : +22:31:19 ============================================================================ +22:31:19 FNo. Len. Field Value +22:31:19 ============================================================================ +22:31:19 [ 1] [ 4] [0800] +22:31:19 [ 7] [ 10] [0320033027] +22:31:19 [ 11] [ 6] [158783] +22:31:19 [ 70] [ 3] [301] +22:31:19 ============================================================================ +22:31:19 + + +waiting on router queue for slot.... +22:31:19 Sending to : +22:31:19 ============================================================================ +22:31:19 ============================================================================ +22:31:19 Slot Id : <171> +22:31:19 Transaction Type : RESPONSE +22:31:19 Received From : +22:31:19 ============================================================================ +22:31:19 FNo. Len. Field Value +22:31:19 ============================================================================ +22:31:19 [ 1] [ 4] [0810] +22:31:19 [ 7] [ 10] [0320033027] +22:31:19 [ 11] [ 6] [158783] +22:31:19 [ 39] [ 2] [00] +22:31:19 [ 70] [ 3] [301] +22:31:19 ============================================================================ +22:31:19 Calculate Source COMM Id = 2 +22:31:19 ============================================================================ +22:31:19 + + +waiting on router queue for slot.... +22:31:21 ============================================================================ +22:31:21 Slot Id : <164> +22:31:21 Transaction Type : REQUEST +22:31:21 Received From : +22:31:21 ============================================================================ +22:31:21 FNo. Len. Field Value +22:31:21 ============================================================================ +22:31:21 [ 1] [ 4] [0800] +22:31:21 [ 7] [ 10] [0320152912] +22:31:21 [ 11] [ 6] [070462] +22:31:21 [ 37] [ 12] [57922070462] +22:31:21 [ 70] [ 3] [301] +22:31:21 ============================================================================ +22:31:21 + + +waiting on router queue for slot.... +22:31:21 Sending to : +22:31:21 ============================================================================ +22:31:21 ============================================================================ +22:31:21 Slot Id : <164> +22:31:21 Transaction Type : RESPONSE +22:31:21 Received From : +22:31:21 ============================================================================ +22:31:21 FNo. Len. Field Value +22:31:21 ============================================================================ +22:31:21 [ 1] [ 4] [0810] +22:31:21 [ 7] [ 10] [0320152912] +22:31:21 [ 11] [ 6] [070462] +22:31:21 [ 37] [ 12] [579220704620] +22:31:21 [ 39] [ 2] [00] +22:31:21 [ 70] [ 3] [810] +22:31:21 ============================================================================ +22:31:21 Calculate Source COMM Id = 4 +22:31:21 ============================================================================ +22:31:21 + + +waiting on router queue for slot.... +22:31:30 ============================================================================ +22:31:30 Slot Id : <126> +22:31:30 Transaction Type : REQUEST +22:31:30 Received From : +22:31:30 ============================================================================ +22:31:30 FNo. Len. Field Value +22:31:30 ============================================================================ +22:31:30 [ 1] [ 4] [0800] +22:31:30 [ 7] [ 10] [0320033038] +22:31:30 [ 11] [ 6] [158784] +22:31:30 [ 70] [ 3] [301] +22:31:30 ============================================================================ +22:31:30 + + +waiting on router queue for slot.... +22:31:30 Sending to : +22:31:30 ============================================================================ +22:31:30 ============================================================================ +22:31:30 Slot Id : <126> +22:31:30 Transaction Type : RESPONSE +22:31:30 Received From : +22:31:30 ============================================================================ +22:31:30 FNo. Len. Field Value +22:31:30 ============================================================================ +22:31:30 [ 1] [ 4] [0810] +22:31:30 [ 7] [ 10] [0320033038] +22:31:30 [ 11] [ 6] [158784] +22:31:30 [ 39] [ 2] [00] +22:31:30 [ 70] [ 3] [301] +22:31:30 ============================================================================ +22:31:30 Calculate Source COMM Id = 2 +22:31:30 ============================================================================ +22:31:30 + + +waiting on router queue for slot.... +22:31:41 ============================================================================ +22:31:41 Slot Id : <186> +22:31:41 Transaction Type : REQUEST +22:31:41 Received From : +22:31:41 ============================================================================ +22:31:41 FNo. Len. Field Value +22:31:41 ============================================================================ +22:31:41 [ 1] [ 4] [0800] +22:31:41 [ 7] [ 10] [0320033049] +22:31:41 [ 11] [ 6] [158785] +22:31:41 [ 70] [ 3] [301] +22:31:41 ============================================================================ +22:31:41 + + +waiting on router queue for slot.... +22:31:41 Sending to : +22:31:41 ============================================================================ +22:31:41 ============================================================================ +22:31:41 Slot Id : <186> +22:31:41 Transaction Type : RESPONSE +22:31:41 Received From : +22:31:41 ============================================================================ +22:31:41 FNo. Len. Field Value +22:31:41 ============================================================================ +22:31:41 [ 1] [ 4] [0810] +22:31:41 [ 7] [ 10] [0320033049] +22:31:41 [ 11] [ 6] [158785] +22:31:41 [ 39] [ 2] [00] +22:31:41 [ 70] [ 3] [301] +22:31:41 ============================================================================ +22:31:41 Calculate Source COMM Id = 2 +22:31:41 ============================================================================ +22:31:41 + + +waiting on router queue for slot.... +22:31:52 ============================================================================ +22:31:52 Slot Id : <139> +22:31:52 Transaction Type : REQUEST +22:31:52 Received From : +22:31:52 ============================================================================ +22:31:52 FNo. Len. Field Value +22:31:52 ============================================================================ +22:31:52 [ 1] [ 4] [0800] +22:31:52 [ 7] [ 10] [0320033100] +22:31:52 [ 11] [ 6] [158786] +22:31:52 [ 70] [ 3] [301] +22:31:52 ============================================================================ +22:31:52 + + +waiting on router queue for slot.... +22:31:52 Sending to : +22:31:52 ============================================================================ +22:31:52 ============================================================================ +22:31:52 Slot Id : <139> +22:31:52 Transaction Type : RESPONSE +22:31:52 Received From : +22:31:52 ============================================================================ +22:31:52 FNo. Len. Field Value +22:31:52 ============================================================================ +22:31:52 [ 1] [ 4] [0810] +22:31:52 [ 7] [ 10] [0320033100] +22:31:52 [ 11] [ 6] [158786] +22:31:52 [ 39] [ 2] [00] +22:31:52 [ 70] [ 3] [301] +22:31:52 ============================================================================ +22:31:52 Calculate Source COMM Id = 2 +22:31:52 ============================================================================ +22:31:52 + + +waiting on router queue for slot.... +22:32:02 ============================================================================ +22:32:02 Slot Id : <202> +22:32:02 Transaction Type : REQUEST +22:32:02 Received From : +22:32:02 ============================================================================ +22:32:02 FNo. Len. Field Value +22:32:02 ============================================================================ +22:32:02 [ 1] [ 4] [0800] +22:32:02 [ 7] [ 10] [0320033111] +22:32:02 [ 11] [ 6] [158787] +22:32:02 [ 70] [ 3] [301] +22:32:02 ============================================================================ +22:32:02 + + +waiting on router queue for slot.... +22:32:02 Sending to : +22:32:02 ============================================================================ +22:32:02 ============================================================================ +22:32:02 Slot Id : <202> +22:32:02 Transaction Type : RESPONSE +22:32:02 Received From : +22:32:02 ============================================================================ +22:32:02 FNo. Len. Field Value +22:32:02 ============================================================================ +22:32:02 [ 1] [ 4] [0810] +22:32:02 [ 7] [ 10] [0320033111] +22:32:02 [ 11] [ 6] [158787] +22:32:02 [ 39] [ 2] [00] +22:32:02 [ 70] [ 3] [301] +22:32:02 ============================================================================ +22:32:02 Calculate Source COMM Id = 2 +22:32:02 ============================================================================ +22:32:02 + + +waiting on router queue for slot.... +22:32:13 ============================================================================ +22:32:13 Slot Id : <148> +22:32:13 Transaction Type : REQUEST +22:32:13 Received From : +22:32:13 ============================================================================ +22:32:13 FNo. Len. Field Value +22:32:13 ============================================================================ +22:32:13 [ 1] [ 4] [0800] +22:32:13 [ 7] [ 10] [0320033121] +22:32:13 [ 11] [ 6] [158788] +22:32:13 [ 70] [ 3] [301] +22:32:13 ============================================================================ +22:32:13 + + +waiting on router queue for slot.... +22:32:13 Sending to : +22:32:13 ============================================================================ +22:32:13 ============================================================================ +22:32:13 Slot Id : <148> +22:32:13 Transaction Type : RESPONSE +22:32:13 Received From : +22:32:13 ============================================================================ +22:32:13 FNo. Len. Field Value +22:32:13 ============================================================================ +22:32:13 [ 1] [ 4] [0810] +22:32:13 [ 7] [ 10] [0320033121] +22:32:13 [ 11] [ 6] [158788] +22:32:13 [ 39] [ 2] [00] +22:32:13 [ 70] [ 3] [301] +22:32:13 ============================================================================ +22:32:13 Calculate Source COMM Id = 2 +22:32:13 ============================================================================ +22:32:13 + + +waiting on router queue for slot.... +22:32:14 ============================================================================ +22:32:14 Slot Id : <119> +22:32:14 Transaction Type : REQUEST +22:32:14 Received From : +22:32:14 ============================================================================ +22:32:14 FNo. Len. Field Value +22:32:14 ============================================================================ +22:32:14 [ 1] [ 4] [0800] +22:32:14 [ 7] [ 10] [0321054405] +22:32:14 [ 11] [ 6] [224405] +22:32:14 [ 37] [ 12] [57922224405] +22:32:14 [ 70] [ 3] [301] +22:32:14 ============================================================================ +22:32:14 + + +waiting on router queue for slot.... +22:32:14 Sending to : +22:32:14 ============================================================================ +22:32:14 ============================================================================ +22:32:14 Slot Id : <119> +22:32:14 Transaction Type : RESPONSE +22:32:14 Received From : +22:32:14 ============================================================================ +22:32:14 FNo. Len. Field Value +22:32:14 ============================================================================ +22:32:14 [ 1] [ 4] [0810] +22:32:14 [ 7] [ 10] [0321054405] +22:32:14 [ 11] [ 6] [224405] +22:32:14 [ 37] [ 12] [579222244050] +22:32:14 [ 39] [ 2] [00] +22:32:14 [ 70] [ 3] [810] +22:32:14 ============================================================================ +22:32:14 Calculate Source COMM Id = 6 +22:32:14 ============================================================================ +22:32:14 + + +waiting on router queue for slot.... +22:32:16 ============================================================================ +22:32:16 Slot Id : <176> +22:32:16 Transaction Type : REQUEST +22:32:16 Received From : +22:32:16 ============================================================================ +22:32:16 FNo. Len. Field Value +22:32:16 ============================================================================ +22:32:16 [ 1] [ 4] [0800] +22:32:16 [ 2] [ 5] [02531] +22:32:16 [ 3] [ 6] [579228] +22:32:16 [ 7] [ 10] [0320153216] +22:32:16 [ 11] [ 6] [807720] +22:32:16 [ 15] [ 10] [0320153216] +22:32:16 [ 37] [ 11] [57922807720] +22:32:16 [ 70] [ 3] [001] +22:32:16 ============================================================================ +22:32:16 + + +waiting on router queue for slot.... +22:32:16 ============================================================================ +22:32:16 Slot Id : <176> +22:32:16 Transaction Type : RESPONSE +22:32:16 Received From : +22:32:16 ============================================================================ +22:32:16 FNo. Len. Field Value +22:32:16 ============================================================================ +22:32:16 [ 1] [ 4] [0810] +22:32:16 [ 7] [ 10] [0320153216] +22:32:16 [ 11] [ 6] [807720] +22:32:16 [ 15] [ 4] [0320] +22:32:16 [ 37] [ 12] [57922807720] +22:32:16 [ 39] [ 2] [00] +22:32:16 [ 70] [ 3] [001] +22:32:16 ============================================================================ +22:32:16 Sending to : +22:32:16 ============================================================================ +22:32:16 + + +waiting on router queue for slot.... +22:32:23 ============================================================================ +22:32:23 Slot Id : <144> +22:32:23 Transaction Type : REQUEST +22:32:23 Received From : +22:32:23 ============================================================================ +22:32:23 FNo. Len. Field Value +22:32:23 ============================================================================ +22:32:23 [ 1] [ 4] [0800] +22:32:23 [ 7] [ 10] [0320033131] +22:32:23 [ 11] [ 6] [158789] +22:32:23 [ 70] [ 3] [301] +22:32:23 ============================================================================ +22:32:23 + + +waiting on router queue for slot.... +22:32:23 Sending to : +22:32:23 ============================================================================ +22:32:23 ============================================================================ +22:32:23 Slot Id : <144> +22:32:23 Transaction Type : RESPONSE +22:32:23 Received From : +22:32:23 ============================================================================ +22:32:23 FNo. Len. Field Value +22:32:23 ============================================================================ +22:32:23 [ 1] [ 4] [0810] +22:32:23 [ 7] [ 10] [0320033131] +22:32:23 [ 11] [ 6] [158789] +22:32:23 [ 39] [ 2] [00] +22:32:23 [ 70] [ 3] [301] +22:32:23 ============================================================================ +22:32:23 Calculate Source COMM Id = 2 +22:32:23 ============================================================================ +22:32:23 + + +waiting on router queue for slot.... +22:32:36 ============================================================================ +22:32:36 Slot Id : <182> +22:32:36 Transaction Type : REQUEST +22:32:36 Received From : +22:32:36 ============================================================================ +22:32:36 FNo. Len. Field Value +22:32:36 ============================================================================ +22:32:36 [ 1] [ 4] [0800] +22:32:36 [ 7] [ 10] [0320033144] +22:32:36 [ 11] [ 6] [158790] +22:32:36 [ 70] [ 3] [301] +22:32:36 ============================================================================ +22:32:36 + + +waiting on router queue for slot.... +22:32:36 Sending to : +22:32:36 ============================================================================ +22:32:36 ============================================================================ +22:32:36 Slot Id : <182> +22:32:36 Transaction Type : RESPONSE +22:32:36 Received From : +22:32:36 ============================================================================ +22:32:36 FNo. Len. Field Value +22:32:36 ============================================================================ +22:32:36 [ 1] [ 4] [0810] +22:32:36 [ 7] [ 10] [0320033144] +22:32:36 [ 11] [ 6] [158790] +22:32:36 [ 39] [ 2] [00] +22:32:36 [ 70] [ 3] [301] +22:32:36 ============================================================================ +22:32:36 Calculate Source COMM Id = 2 +22:32:36 ============================================================================ +22:32:36 + + +waiting on router queue for slot.... +22:32:46 ============================================================================ +22:32:46 Slot Id : <187> +22:32:46 Transaction Type : REQUEST +22:32:46 Received From : +22:32:46 ============================================================================ +22:32:46 FNo. Len. Field Value +22:32:46 ============================================================================ +22:32:46 [ 1] [ 4] [0800] +22:32:46 [ 7] [ 10] [0320033154] +22:32:46 [ 11] [ 6] [158791] +22:32:46 [ 70] [ 3] [301] +22:32:46 ============================================================================ +22:32:46 + + +waiting on router queue for slot.... +22:32:46 Sending to : +22:32:46 ============================================================================ +22:32:46 ============================================================================ +22:32:46 Slot Id : <187> +22:32:46 Transaction Type : RESPONSE +22:32:46 Received From : +22:32:46 ============================================================================ +22:32:46 FNo. Len. Field Value +22:32:46 ============================================================================ +22:32:46 [ 1] [ 4] [0810] +22:32:46 [ 7] [ 10] [0320033154] +22:32:46 [ 11] [ 6] [158791] +22:32:46 [ 39] [ 2] [00] +22:32:46 [ 70] [ 3] [301] +22:32:46 ============================================================================ +22:32:46 Calculate Source COMM Id = 2 +22:32:46 ============================================================================ +22:32:46 + + +waiting on router queue for slot.... +22:32:56 ============================================================================ +22:32:56 Slot Id : <160> +22:32:56 Transaction Type : REQUEST +22:32:56 Received From : +22:32:56 ============================================================================ +22:32:56 FNo. Len. Field Value +22:32:56 ============================================================================ +22:32:56 [ 1] [ 4] [0800] +22:32:56 [ 7] [ 10] [0320033204] +22:32:56 [ 11] [ 6] [158792] +22:32:56 [ 70] [ 3] [301] +22:32:56 ============================================================================ +22:32:56 + + +waiting on router queue for slot.... +22:32:56 Sending to : +22:32:56 ============================================================================ +22:32:56 ============================================================================ +22:32:56 Slot Id : <160> +22:32:56 Transaction Type : RESPONSE +22:32:56 Received From : +22:32:56 ============================================================================ +22:32:56 FNo. Len. Field Value +22:32:56 ============================================================================ +22:32:56 [ 1] [ 4] [0810] +22:32:56 [ 7] [ 10] [0320033204] +22:32:56 [ 11] [ 6] [158792] +22:32:56 [ 39] [ 2] [00] +22:32:56 [ 70] [ 3] [301] +22:32:56 ============================================================================ +22:32:56 Calculate Source COMM Id = 2 +22:32:56 ============================================================================ +22:32:56 + + +waiting on router queue for slot.... +22:32:58 ============================================================================ +22:32:58 Slot Id : <163> +22:32:58 Transaction Type : REQUEST +22:32:58 Received From : +22:32:58 ============================================================================ +22:32:58 FNo. Len. Field Value +22:32:58 ============================================================================ +22:32:58 [ 1] [ 4] [0800] +22:32:58 [ 7] [ 10] [0320223245] +22:32:58 [ 11] [ 6] [043643] +22:32:58 [ 37] [ 12] [507922043643] +22:32:58 [ 70] [ 3] [ ] +22:32:58 ============================================================================ +22:32:58 + + +waiting on router queue for slot.... +22:32:58 Sending to : +22:32:58 ============================================================================ +22:32:58 ============================================================================ +22:32:58 Slot Id : <163> +22:32:58 Transaction Type : RESPONSE +22:32:58 Received From : +22:32:58 ============================================================================ +22:32:58 FNo. Len. Field Value +22:32:58 ============================================================================ +22:32:58 [ 1] [ 4] [0810] +22:32:58 [ 7] [ 10] [0320223245] +22:32:58 [ 11] [ 6] [043643] +22:32:58 [ 37] [ 12] [507922043643] +22:32:58 [ 39] [ 2] [91] +22:32:58 [ 70] [ 3] [ ] +22:32:58 ============================================================================ +22:32:58 Calculate Source COMM Id = 3 +22:32:58 ============================================================================ +22:32:58 + + +waiting on router queue for slot.... +22:33:07 ============================================================================ +22:33:07 Slot Id : <203> +22:33:07 Transaction Type : REQUEST +22:33:07 Received From : +22:33:07 ============================================================================ +22:33:07 FNo. Len. Field Value +22:33:07 ============================================================================ +22:33:07 [ 1] [ 4] [0800] +22:33:07 [ 7] [ 10] [0320033215] +22:33:07 [ 11] [ 6] [158793] +22:33:07 [ 70] [ 3] [301] +22:33:07 ============================================================================ +22:33:07 + + +waiting on router queue for slot.... +22:33:07 Sending to : +22:33:07 ============================================================================ +22:33:07 ============================================================================ +22:33:07 Slot Id : <203> +22:33:07 Transaction Type : RESPONSE +22:33:07 Received From : +22:33:07 ============================================================================ +22:33:07 FNo. Len. Field Value +22:33:07 ============================================================================ +22:33:07 [ 1] [ 4] [0810] +22:33:07 [ 7] [ 10] [0320033215] +22:33:07 [ 11] [ 6] [158793] +22:33:07 [ 39] [ 2] [00] +22:33:07 [ 70] [ 3] [301] +22:33:07 ============================================================================ +22:33:07 Calculate Source COMM Id = 2 +22:33:07 ============================================================================ +22:33:07 + + +waiting on router queue for slot.... +22:33:18 ============================================================================ +22:33:18 Slot Id : <204> +22:33:18 Transaction Type : REQUEST +22:33:18 Received From : +22:33:18 ============================================================================ +22:33:18 FNo. Len. Field Value +22:33:18 ============================================================================ +22:33:18 [ 1] [ 4] [0800] +22:33:18 [ 2] [ 5] [02531] +22:33:18 [ 3] [ 6] [579228] +22:33:18 [ 7] [ 10] [0320153318] +22:33:18 [ 11] [ 6] [807721] +22:33:18 [ 15] [ 10] [0320153318] +22:33:18 [ 37] [ 11] [57922807721] +22:33:18 [ 70] [ 3] [001] +22:33:18 ============================================================================ +22:33:18 + + +waiting on router queue for slot.... +22:33:18 ============================================================================ +22:33:18 Slot Id : <204> +22:33:18 Transaction Type : RESPONSE +22:33:18 Received From : +22:33:18 ============================================================================ +22:33:18 FNo. Len. Field Value +22:33:18 ============================================================================ +22:33:18 [ 1] [ 4] [0810] +22:33:18 [ 7] [ 10] [0320153318] +22:33:18 [ 11] [ 6] [807721] +22:33:18 [ 15] [ 4] [0320] +22:33:18 [ 37] [ 12] [57922807721] +22:33:18 [ 39] [ 2] [00] +22:33:18 [ 70] [ 3] [001] +22:33:18 ============================================================================ +22:33:18 Sending to : +22:33:18 ============================================================================ +22:33:18 + + +waiting on router queue for slot.... +22:33:19 ============================================================================ +22:33:19 Slot Id : <179> +22:33:19 Transaction Type : REQUEST +22:33:19 Received From : +22:33:19 ============================================================================ +22:33:19 FNo. Len. Field Value +22:33:19 ============================================================================ +22:33:19 [ 1] [ 4] [0800] +22:33:19 [ 7] [ 10] [0321054510] +22:33:19 [ 11] [ 6] [224510] +22:33:19 [ 37] [ 12] [57922224510] +22:33:19 [ 70] [ 3] [301] +22:33:19 ============================================================================ +22:33:19 + + +waiting on router queue for slot.... +22:33:19 Sending to : +22:33:19 ============================================================================ +22:33:19 ============================================================================ +22:33:19 Slot Id : <179> +22:33:19 Transaction Type : RESPONSE +22:33:19 Received From : +22:33:19 ============================================================================ +22:33:19 FNo. Len. Field Value +22:33:19 ============================================================================ +22:33:19 [ 1] [ 4] [0810] +22:33:19 [ 7] [ 10] [0321054510] +22:33:19 [ 11] [ 6] [224510] +22:33:19 [ 37] [ 12] [579222245100] +22:33:19 [ 39] [ 2] [00] +22:33:19 [ 70] [ 3] [810] +22:33:19 ============================================================================ +22:33:19 Calculate Source COMM Id = 6 +22:33:19 ============================================================================ +22:33:19 + + +waiting on router queue for slot.... +22:33:22 ============================================================================ +22:33:22 Slot Id : <191> +22:33:22 Transaction Type : REQUEST +22:33:22 Received From : +22:33:22 ============================================================================ +22:33:22 FNo. Len. Field Value +22:33:22 ============================================================================ +22:33:22 [ 1] [ 4] [0800] +22:33:22 [ 7] [ 10] [0320033231] +22:33:22 [ 11] [ 6] [158794] +22:33:22 [ 70] [ 3] [301] +22:33:22 ============================================================================ +22:33:22 + + +waiting on router queue for slot.... +22:33:22 Sending to : +22:33:22 ============================================================================ +22:33:22 ============================================================================ +22:33:22 Slot Id : <191> +22:33:22 Transaction Type : RESPONSE +22:33:22 Received From : +22:33:22 ============================================================================ +22:33:22 FNo. Len. Field Value +22:33:22 ============================================================================ +22:33:22 [ 1] [ 4] [0810] +22:33:22 [ 7] [ 10] [0320033231] +22:33:22 [ 11] [ 6] [158794] +22:33:22 [ 39] [ 2] [00] +22:33:22 [ 70] [ 3] [301] +22:33:22 ============================================================================ +22:33:22 Calculate Source COMM Id = 2 +22:33:22 ============================================================================ +22:33:22 + + +waiting on router queue for slot.... +22:33:33 ============================================================================ +22:33:33 Slot Id : <192> +22:33:33 Transaction Type : REQUEST +22:33:33 Received From : +22:33:33 ============================================================================ +22:33:33 FNo. Len. Field Value +22:33:33 ============================================================================ +22:33:33 [ 1] [ 4] [0800] +22:33:33 [ 7] [ 10] [0320033241] +22:33:33 [ 11] [ 6] [158795] +22:33:33 [ 70] [ 3] [301] +22:33:33 ============================================================================ +22:33:33 + + +waiting on router queue for slot.... +22:33:33 Sending to : +22:33:33 ============================================================================ +22:33:33 ============================================================================ +22:33:33 Slot Id : <192> +22:33:33 Transaction Type : RESPONSE +22:33:33 Received From : +22:33:33 ============================================================================ +22:33:33 FNo. Len. Field Value +22:33:33 ============================================================================ +22:33:33 [ 1] [ 4] [0810] +22:33:33 [ 7] [ 10] [0320033241] +22:33:33 [ 11] [ 6] [158795] +22:33:33 [ 39] [ 2] [00] +22:33:33 [ 70] [ 3] [301] +22:33:33 ============================================================================ +22:33:33 Calculate Source COMM Id = 2 +22:33:33 ============================================================================ +22:33:33 + + +waiting on router queue for slot.... +22:33:43 ============================================================================ +22:33:43 Slot Id : <135> +22:33:43 Transaction Type : REQUEST +22:33:43 Received From : +22:33:43 ============================================================================ +22:33:43 FNo. Len. Field Value +22:33:43 ============================================================================ +22:33:43 [ 1] [ 4] [0800] +22:33:43 [ 7] [ 10] [0320033251] +22:33:43 [ 11] [ 6] [158796] +22:33:43 [ 70] [ 3] [301] +22:33:43 ============================================================================ +22:33:43 + + +waiting on router queue for slot.... +22:33:43 Sending to : +22:33:43 ============================================================================ +22:33:43 ============================================================================ +22:33:43 Slot Id : <135> +22:33:43 Transaction Type : RESPONSE +22:33:43 Received From : +22:33:43 ============================================================================ +22:33:43 FNo. Len. Field Value +22:33:43 ============================================================================ +22:33:43 [ 1] [ 4] [0810] +22:33:43 [ 7] [ 10] [0320033251] +22:33:43 [ 11] [ 6] [158796] +22:33:43 [ 39] [ 2] [00] +22:33:43 [ 70] [ 3] [301] +22:33:43 ============================================================================ +22:33:43 Calculate Source COMM Id = 2 +22:33:43 ============================================================================ +22:33:43 + + +waiting on router queue for slot.... +22:33:53 ============================================================================ +22:33:53 Slot Id : <156> +22:33:53 Transaction Type : REQUEST +22:33:53 Received From : +22:33:53 ============================================================================ +22:33:53 FNo. Len. Field Value +22:33:53 ============================================================================ +22:33:53 [ 1] [ 4] [0800] +22:33:53 [ 7] [ 10] [0320033301] +22:33:53 [ 11] [ 6] [158797] +22:33:53 [ 70] [ 3] [301] +22:33:53 ============================================================================ +22:33:53 + + +waiting on router queue for slot.... +22:33:53 Sending to : +22:33:53 ============================================================================ +22:33:53 ============================================================================ +22:33:53 Slot Id : <156> +22:33:53 Transaction Type : RESPONSE +22:33:53 Received From : +22:33:53 ============================================================================ +22:33:53 FNo. Len. Field Value +22:33:53 ============================================================================ +22:33:53 [ 1] [ 4] [0810] +22:33:53 [ 7] [ 10] [0320033301] +22:33:53 [ 11] [ 6] [158797] +22:33:53 [ 39] [ 2] [00] +22:33:53 [ 70] [ 3] [301] +22:33:53 ============================================================================ +22:33:53 Calculate Source COMM Id = 2 +22:33:53 ============================================================================ +22:33:53 + + +waiting on router queue for slot.... +22:34:09 ============================================================================ +22:34:09 Slot Id : <190> +22:34:09 Transaction Type : REQUEST +22:34:09 Received From : +22:34:09 ============================================================================ +22:34:09 FNo. Len. Field Value +22:34:09 ============================================================================ +22:34:09 [ 1] [ 4] [0800] +22:34:09 [ 7] [ 10] [0320033317] +22:34:09 [ 11] [ 6] [158798] +22:34:09 [ 70] [ 3] [301] +22:34:09 ============================================================================ +22:34:09 + + +waiting on router queue for slot.... +22:34:09 Sending to : +22:34:09 ============================================================================ +22:34:09 ============================================================================ +22:34:09 Slot Id : <190> +22:34:09 Transaction Type : RESPONSE +22:34:09 Received From : +22:34:09 ============================================================================ +22:34:09 FNo. Len. Field Value +22:34:09 ============================================================================ +22:34:09 [ 1] [ 4] [0810] +22:34:09 [ 7] [ 10] [0320033317] +22:34:09 [ 11] [ 6] [158798] +22:34:09 [ 39] [ 2] [00] +22:34:09 [ 70] [ 3] [301] +22:34:09 ============================================================================ +22:34:09 Calculate Source COMM Id = 2 +22:34:09 ============================================================================ +22:34:09 + + +waiting on router queue for slot.... +22:34:20 ============================================================================ +22:34:20 Slot Id : <152> +22:34:20 Transaction Type : REQUEST +22:34:20 Received From : +22:34:20 ============================================================================ +22:34:20 FNo. Len. Field Value +22:34:20 ============================================================================ +22:34:20 [ 1] [ 4] [0800] +22:34:20 [ 7] [ 10] [0320033328] +22:34:20 [ 11] [ 6] [158799] +22:34:20 [ 70] [ 3] [301] +22:34:20 ============================================================================ +22:34:20 + + +waiting on router queue for slot.... +22:34:20 Sending to : +22:34:20 ============================================================================ +22:34:20 ============================================================================ +22:34:20 Slot Id : <152> +22:34:20 Transaction Type : RESPONSE +22:34:20 Received From : +22:34:20 ============================================================================ +22:34:20 FNo. Len. Field Value +22:34:20 ============================================================================ +22:34:20 [ 1] [ 4] [0810] +22:34:20 [ 7] [ 10] [0320033328] +22:34:20 [ 11] [ 6] [158799] +22:34:20 [ 39] [ 2] [00] +22:34:20 [ 70] [ 3] [301] +22:34:20 ============================================================================ +22:34:20 Calculate Source COMM Id = 2 +22:34:20 ============================================================================ +22:34:20 + + +waiting on router queue for slot.... +22:34:20 ============================================================================ +22:34:20 Slot Id : <198> +22:34:20 Transaction Type : REQUEST +22:34:20 Received From : +22:34:20 ============================================================================ +22:34:20 FNo. Len. Field Value +22:34:20 ============================================================================ +22:34:20 [ 1] [ 4] [0800] +22:34:20 [ 2] [ 5] [02531] +22:34:20 [ 3] [ 6] [579228] +22:34:20 [ 7] [ 10] [0320153420] +22:34:20 [ 11] [ 6] [807722] +22:34:20 [ 15] [ 10] [0320153420] +22:34:20 [ 37] [ 11] [57922807722] +22:34:20 [ 70] [ 3] [001] +22:34:20 ============================================================================ +22:34:20 + + +waiting on router queue for slot.... +22:34:20 ============================================================================ +22:34:20 Slot Id : <198> +22:34:20 Transaction Type : RESPONSE +22:34:20 Received From : +22:34:20 ============================================================================ +22:34:20 FNo. Len. Field Value +22:34:20 ============================================================================ +22:34:20 [ 1] [ 4] [0810] +22:34:20 [ 7] [ 10] [0320153420] +22:34:20 [ 11] [ 6] [807722] +22:34:20 [ 15] [ 4] [0320] +22:34:20 [ 37] [ 12] [57922807722] +22:34:20 [ 39] [ 2] [00] +22:34:20 [ 70] [ 3] [001] +22:34:20 ============================================================================ +22:34:20 Sending to : +22:34:20 ============================================================================ +22:34:20 + + +waiting on router queue for slot.... +22:34:25 ============================================================================ +22:34:25 Slot Id : <196> +22:34:25 Transaction Type : REQUEST +22:34:25 Received From : +22:34:25 ============================================================================ +22:34:25 FNo. Len. Field Value +22:34:25 ============================================================================ +22:34:25 [ 1] [ 4] [0800] +22:34:25 [ 7] [ 10] [0321054615] +22:34:25 [ 11] [ 6] [224615] +22:34:25 [ 37] [ 12] [57922224615] +22:34:25 [ 70] [ 3] [301] +22:34:25 ============================================================================ +22:34:25 + + +waiting on router queue for slot.... +22:34:25 Sending to : +22:34:25 ============================================================================ +22:34:25 ============================================================================ +22:34:25 Slot Id : <196> +22:34:25 Transaction Type : RESPONSE +22:34:25 Received From : +22:34:25 ============================================================================ +22:34:25 FNo. Len. Field Value +22:34:25 ============================================================================ +22:34:25 [ 1] [ 4] [0810] +22:34:25 [ 7] [ 10] [0321054615] +22:34:25 [ 11] [ 6] [224615] +22:34:25 [ 37] [ 12] [579222246150] +22:34:25 [ 39] [ 2] [00] +22:34:25 [ 70] [ 3] [810] +22:34:25 ============================================================================ +22:34:25 Calculate Source COMM Id = 6 +22:34:25 ============================================================================ +22:34:25 + + +waiting on router queue for slot.... +22:34:31 ============================================================================ +22:34:31 Slot Id : <155> +22:34:31 Transaction Type : REQUEST +22:34:31 Received From : +22:34:31 ============================================================================ +22:34:31 FNo. Len. Field Value +22:34:31 ============================================================================ +22:34:31 [ 1] [ 4] [0800] +22:34:31 [ 7] [ 10] [0320033339] +22:34:31 [ 11] [ 6] [158800] +22:34:31 [ 70] [ 3] [301] +22:34:31 ============================================================================ +22:34:31 + + +waiting on router queue for slot.... +22:34:31 Sending to : +22:34:31 ============================================================================ +22:34:31 ============================================================================ +22:34:31 Slot Id : <155> +22:34:31 Transaction Type : RESPONSE +22:34:31 Received From : +22:34:31 ============================================================================ +22:34:31 FNo. Len. Field Value +22:34:31 ============================================================================ +22:34:31 [ 1] [ 4] [0810] +22:34:31 [ 7] [ 10] [0320033339] +22:34:31 [ 11] [ 6] [158800] +22:34:31 [ 39] [ 2] [00] +22:34:31 [ 70] [ 3] [301] +22:34:31 ============================================================================ +22:34:31 Calculate Source COMM Id = 2 +22:34:31 ============================================================================ +22:34:31 + + +waiting on router queue for slot.... +22:34:46 ============================================================================ +22:34:46 Slot Id : <214> +22:34:46 Transaction Type : REQUEST +22:34:46 Received From : +22:34:46 ============================================================================ +22:34:46 FNo. Len. Field Value +22:34:46 ============================================================================ +22:34:46 [ 1] [ 4] [0800] +22:34:46 [ 7] [ 10] [0320033354] +22:34:46 [ 11] [ 6] [158801] +22:34:46 [ 70] [ 3] [301] +22:34:46 ============================================================================ +22:34:46 + + +waiting on router queue for slot.... +22:34:46 Sending to : +22:34:46 ============================================================================ +22:34:46 ============================================================================ +22:34:46 Slot Id : <214> +22:34:46 Transaction Type : RESPONSE +22:34:46 Received From : +22:34:46 ============================================================================ +22:34:46 FNo. Len. Field Value +22:34:46 ============================================================================ +22:34:46 [ 1] [ 4] [0810] +22:34:46 [ 7] [ 10] [0320033354] +22:34:46 [ 11] [ 6] [158801] +22:34:46 [ 39] [ 2] [00] +22:34:46 [ 70] [ 3] [301] +22:34:46 ============================================================================ +22:34:46 Calculate Source COMM Id = 2 +22:34:46 ============================================================================ +22:34:46 + + +waiting on router queue for slot.... +22:34:55 ============================================================================ +22:34:55 Slot Id : <181> +22:34:55 Transaction Type : REQUEST +22:34:55 Received From : +22:34:55 ============================================================================ +22:34:55 FNo. Len. Field Value +22:34:55 ============================================================================ +22:34:55 [ 1] [ 4] [0800] +22:34:55 [ 7] [ 10] [0320154242] +22:34:55 [ 11] [ 6] [044837] +22:34:55 [ 37] [ 12] [57922044837] +22:34:55 [ 70] [ 3] [301] +22:34:55 ============================================================================ +22:34:55 + + +waiting on router queue for slot.... +22:34:55 Sending to : +22:34:55 ============================================================================ +22:34:55 ============================================================================ +22:34:55 Slot Id : <181> +22:34:55 Transaction Type : RESPONSE +22:34:55 Received From : +22:34:55 ============================================================================ +22:34:55 FNo. Len. Field Value +22:34:55 ============================================================================ +22:34:55 [ 1] [ 4] [0810] +22:34:55 [ 7] [ 10] [0320154242] +22:34:55 [ 11] [ 6] [044837] +22:34:55 [ 37] [ 12] [579220448370] +22:34:55 [ 39] [ 2] [00] +22:34:55 [ 70] [ 3] [810] +22:34:55 ============================================================================ +22:34:55 Calculate Source COMM Id = 1 +22:34:55 ============================================================================ +22:34:55 + + +waiting on router queue for slot.... +22:34:57 ============================================================================ +22:34:57 Slot Id : <165> +22:34:57 Transaction Type : REQUEST +22:34:57 Received From : +22:34:57 ============================================================================ +22:34:57 FNo. Len. Field Value +22:34:57 ============================================================================ +22:34:57 [ 1] [ 4] [0800] +22:34:57 [ 7] [ 10] [0320033405] +22:34:57 [ 11] [ 6] [158802] +22:34:57 [ 70] [ 3] [301] +22:34:57 ============================================================================ +22:34:57 + + +waiting on router queue for slot.... +22:34:57 Sending to : +22:34:57 ============================================================================ +22:34:57 ============================================================================ +22:34:57 Slot Id : <165> +22:34:57 Transaction Type : RESPONSE +22:34:57 Received From : +22:34:57 ============================================================================ +22:34:57 FNo. Len. Field Value +22:34:57 ============================================================================ +22:34:57 [ 1] [ 4] [0810] +22:34:57 [ 7] [ 10] [0320033405] +22:34:57 [ 11] [ 6] [158802] +22:34:57 [ 39] [ 2] [00] +22:34:57 [ 70] [ 3] [301] +22:34:57 ============================================================================ +22:34:57 Calculate Source COMM Id = 2 +22:34:57 ============================================================================ +22:34:57 + + +waiting on router queue for slot.... +22:35:08 ============================================================================ +22:35:08 Slot Id : <201> +22:35:08 Transaction Type : REQUEST +22:35:08 Received From : +22:35:08 ============================================================================ +22:35:08 FNo. Len. Field Value +22:35:08 ============================================================================ +22:35:08 [ 1] [ 4] [0800] +22:35:08 [ 7] [ 10] [0320033416] +22:35:08 [ 11] [ 6] [158803] +22:35:08 [ 70] [ 3] [301] +22:35:08 ============================================================================ +22:35:08 + + +waiting on router queue for slot.... +22:35:08 Sending to : +22:35:08 ============================================================================ +22:35:08 ============================================================================ +22:35:08 Slot Id : <201> +22:35:08 Transaction Type : RESPONSE +22:35:08 Received From : +22:35:08 ============================================================================ +22:35:08 FNo. Len. Field Value +22:35:08 ============================================================================ +22:35:08 [ 1] [ 4] [0810] +22:35:08 [ 7] [ 10] [0320033416] +22:35:08 [ 11] [ 6] [158803] +22:35:08 [ 39] [ 2] [00] +22:35:08 [ 70] [ 3] [301] +22:35:08 ============================================================================ +22:35:08 Calculate Source COMM Id = 2 +22:35:08 ============================================================================ +22:35:08 + + +waiting on router queue for slot.... +22:35:18 ============================================================================ +22:35:18 Slot Id : <195> +22:35:18 Transaction Type : REQUEST +22:35:18 Received From : +22:35:18 ============================================================================ +22:35:18 FNo. Len. Field Value +22:35:18 ============================================================================ +22:35:18 [ 1] [ 4] [0800] +22:35:18 [ 7] [ 10] [0320033426] +22:35:18 [ 11] [ 6] [158804] +22:35:18 [ 70] [ 3] [301] +22:35:18 ============================================================================ +22:35:18 + + +waiting on router queue for slot.... +22:35:18 Sending to : +22:35:18 ============================================================================ +22:35:18 ============================================================================ +22:35:18 Slot Id : <195> +22:35:18 Transaction Type : RESPONSE +22:35:18 Received From : +22:35:18 ============================================================================ +22:35:18 FNo. Len. Field Value +22:35:18 ============================================================================ +22:35:18 [ 1] [ 4] [0810] +22:35:18 [ 7] [ 10] [0320033426] +22:35:18 [ 11] [ 6] [158804] +22:35:18 [ 39] [ 2] [00] +22:35:18 [ 70] [ 3] [301] +22:35:18 ============================================================================ +22:35:18 Calculate Source COMM Id = 2 +22:35:18 ============================================================================ +22:35:18 + + +waiting on router queue for slot.... +22:35:22 ============================================================================ +22:35:22 Slot Id : <194> +22:35:22 Transaction Type : REQUEST +22:35:22 Received From : +22:35:22 ============================================================================ +22:35:22 FNo. Len. Field Value +22:35:22 ============================================================================ +22:35:22 [ 1] [ 4] [0800] +22:35:22 [ 2] [ 5] [02531] +22:35:22 [ 3] [ 6] [579228] +22:35:22 [ 7] [ 10] [0320153522] +22:35:22 [ 11] [ 6] [807723] +22:35:22 [ 15] [ 10] [0320153522] +22:35:22 [ 37] [ 11] [57922807723] +22:35:22 [ 70] [ 3] [001] +22:35:22 ============================================================================ +22:35:22 + + +waiting on router queue for slot.... +22:35:22 ============================================================================ +22:35:22 Slot Id : <194> +22:35:22 Transaction Type : RESPONSE +22:35:22 Received From : +22:35:22 ============================================================================ +22:35:22 FNo. Len. Field Value +22:35:22 ============================================================================ +22:35:22 [ 1] [ 4] [0810] +22:35:22 [ 7] [ 10] [0320153522] +22:35:22 [ 11] [ 6] [807723] +22:35:22 [ 15] [ 4] [0320] +22:35:22 [ 37] [ 12] [57922807723] +22:35:22 [ 39] [ 2] [00] +22:35:22 [ 70] [ 3] [001] +22:35:22 ============================================================================ +22:35:22 Sending to : +22:35:22 ============================================================================ +22:35:22 + + +waiting on router queue for slot.... +22:35:28 ============================================================================ +22:35:28 Slot Id : <178> +22:35:28 Transaction Type : REQUEST +22:35:28 Received From : +22:35:28 ============================================================================ +22:35:28 FNo. Len. Field Value +22:35:28 ============================================================================ +22:35:28 [ 1] [ 4] [0800] +22:35:28 [ 7] [ 10] [0320033437] +22:35:28 [ 11] [ 6] [158805] +22:35:28 [ 70] [ 3] [301] +22:35:28 ============================================================================ +22:35:28 + + +waiting on router queue for slot.... +22:35:28 Sending to : +22:35:28 ============================================================================ +22:35:28 ============================================================================ +22:35:28 Slot Id : <178> +22:35:28 Transaction Type : RESPONSE +22:35:28 Received From : +22:35:28 ============================================================================ +22:35:28 FNo. Len. Field Value +22:35:28 ============================================================================ +22:35:28 [ 1] [ 4] [0810] +22:35:28 [ 7] [ 10] [0320033437] +22:35:28 [ 11] [ 6] [158805] +22:35:28 [ 39] [ 2] [00] +22:35:28 [ 70] [ 3] [301] +22:35:28 ============================================================================ +22:35:28 Calculate Source COMM Id = 2 +22:35:28 ============================================================================ +22:35:28 + + +waiting on router queue for slot.... +22:35:30 ============================================================================ +22:35:30 Slot Id : <209> +22:35:30 Transaction Type : REQUEST +22:35:30 Received From : +22:35:30 ============================================================================ +22:35:30 FNo. Len. Field Value +22:35:30 ============================================================================ +22:35:30 [ 1] [ 4] [0800] +22:35:30 [ 7] [ 10] [0321054720] +22:35:30 [ 11] [ 6] [224720] +22:35:30 [ 37] [ 12] [57922224720] +22:35:30 [ 70] [ 3] [301] +22:35:30 ============================================================================ +22:35:30 + + +waiting on router queue for slot.... +22:35:30 Sending to : +22:35:30 ============================================================================ +22:35:30 ============================================================================ +22:35:30 Slot Id : <209> +22:35:30 Transaction Type : RESPONSE +22:35:30 Received From : +22:35:30 ============================================================================ +22:35:30 FNo. Len. Field Value +22:35:30 ============================================================================ +22:35:30 [ 1] [ 4] [0810] +22:35:30 [ 7] [ 10] [0321054720] +22:35:30 [ 11] [ 6] [224720] +22:35:30 [ 37] [ 12] [579222247200] +22:35:30 [ 39] [ 2] [00] +22:35:30 [ 70] [ 3] [810] +22:35:30 ============================================================================ +22:35:30 Calculate Source COMM Id = 6 +22:35:30 ============================================================================ +22:35:30 + + +waiting on router queue for slot.... +22:35:39 ============================================================================ +22:35:39 Slot Id : <193> +22:35:39 Transaction Type : REQUEST +22:35:39 Received From : +22:35:39 ============================================================================ +22:35:39 FNo. Len. Field Value +22:35:39 ============================================================================ +22:35:39 [ 1] [ 4] [0800] +22:35:39 [ 7] [ 10] [0320033447] +22:35:39 [ 11] [ 6] [158806] +22:35:39 [ 70] [ 3] [301] +22:35:39 ============================================================================ +22:35:39 + + +waiting on router queue for slot.... +22:35:39 Sending to : +22:35:39 ============================================================================ +22:35:39 ============================================================================ +22:35:39 Slot Id : <193> +22:35:39 Transaction Type : RESPONSE +22:35:39 Received From : +22:35:39 ============================================================================ +22:35:39 FNo. Len. Field Value +22:35:39 ============================================================================ +22:35:39 [ 1] [ 4] [0810] +22:35:39 [ 7] [ 10] [0320033447] +22:35:39 [ 11] [ 6] [158806] +22:35:39 [ 39] [ 2] [00] +22:35:39 [ 70] [ 3] [301] +22:35:39 ============================================================================ +22:35:39 Calculate Source COMM Id = 2 +22:35:39 ============================================================================ +22:35:39 + + +waiting on router queue for slot.... +22:35:49 ============================================================================ +22:35:49 Slot Id : <206> +22:35:49 Transaction Type : REQUEST +22:35:49 Received From : +22:35:49 ============================================================================ +22:35:49 FNo. Len. Field Value +22:35:49 ============================================================================ +22:35:49 [ 1] [ 4] [0800] +22:35:49 [ 7] [ 10] [0320033457] +22:35:49 [ 11] [ 6] [158807] +22:35:49 [ 70] [ 3] [301] +22:35:49 ============================================================================ +22:35:49 + + +waiting on router queue for slot.... +22:35:49 Sending to : +22:35:49 ============================================================================ +22:35:49 ============================================================================ +22:35:49 Slot Id : <206> +22:35:49 Transaction Type : RESPONSE +22:35:49 Received From : +22:35:49 ============================================================================ +22:35:49 FNo. Len. Field Value +22:35:49 ============================================================================ +22:35:49 [ 1] [ 4] [0810] +22:35:49 [ 7] [ 10] [0320033457] +22:35:49 [ 11] [ 6] [158807] +22:35:49 [ 39] [ 2] [00] +22:35:49 [ 70] [ 3] [301] +22:35:49 ============================================================================ +22:35:49 Calculate Source COMM Id = 2 +22:35:49 ============================================================================ +22:35:49 + + +waiting on router queue for slot.... +22:36:00 ============================================================================ +22:36:00 Slot Id : <212> +22:36:00 Transaction Type : REQUEST +22:36:00 Received From : +22:36:00 ============================================================================ +22:36:00 FNo. Len. Field Value +22:36:00 ============================================================================ +22:36:00 [ 1] [ 4] [0800] +22:36:00 [ 7] [ 10] [0320033508] +22:36:00 [ 11] [ 6] [158808] +22:36:00 [ 70] [ 3] [301] +22:36:00 ============================================================================ +22:36:00 + + +waiting on router queue for slot.... +22:36:00 Sending to : +22:36:00 ============================================================================ +22:36:00 ============================================================================ +22:36:00 Slot Id : <212> +22:36:00 Transaction Type : RESPONSE +22:36:00 Received From : +22:36:00 ============================================================================ +22:36:00 FNo. Len. Field Value +22:36:00 ============================================================================ +22:36:00 [ 1] [ 4] [0810] +22:36:00 [ 7] [ 10] [0320033508] +22:36:00 [ 11] [ 6] [158808] +22:36:00 [ 39] [ 2] [00] +22:36:00 [ 70] [ 3] [301] +22:36:00 ============================================================================ +22:36:00 Calculate Source COMM Id = 2 +22:36:00 ============================================================================ +22:36:00 + + +waiting on router queue for slot.... +22:36:11 ============================================================================ +22:36:11 Slot Id : <184> +22:36:11 Transaction Type : REQUEST +22:36:11 Received From : +22:36:11 ============================================================================ +22:36:11 FNo. Len. Field Value +22:36:11 ============================================================================ +22:36:11 [ 1] [ 4] [0800] +22:36:11 [ 7] [ 10] [0320033519] +22:36:11 [ 11] [ 6] [158809] +22:36:11 [ 70] [ 3] [301] +22:36:11 ============================================================================ +22:36:11 + + +waiting on router queue for slot.... +22:36:11 Sending to : +22:36:11 ============================================================================ +22:36:11 ============================================================================ +22:36:11 Slot Id : <184> +22:36:11 Transaction Type : RESPONSE +22:36:11 Received From : +22:36:11 ============================================================================ +22:36:11 FNo. Len. Field Value +22:36:11 ============================================================================ +22:36:11 [ 1] [ 4] [0810] +22:36:11 [ 7] [ 10] [0320033519] +22:36:11 [ 11] [ 6] [158809] +22:36:11 [ 39] [ 2] [00] +22:36:11 [ 70] [ 3] [301] +22:36:11 ============================================================================ +22:36:11 Calculate Source COMM Id = 2 +22:36:11 ============================================================================ +22:36:11 + + +waiting on router queue for slot.... +22:36:21 ============================================================================ +22:36:21 Slot Id : <230> +22:36:21 Transaction Type : REQUEST +22:36:21 Received From : +22:36:21 ============================================================================ +22:36:21 FNo. Len. Field Value +22:36:21 ============================================================================ +22:36:21 [ 1] [ 4] [0800] +22:36:21 [ 7] [ 10] [0320153412] +22:36:21 [ 11] [ 6] [010125] +22:36:21 [ 37] [ 12] [57922010125] +22:36:21 [ 70] [ 3] [301] +22:36:21 ============================================================================ +22:36:21 + + +waiting on router queue for slot.... +22:36:21 Sending to : +22:36:21 ============================================================================ +22:36:21 ============================================================================ +22:36:21 Slot Id : <230> +22:36:21 Transaction Type : RESPONSE +22:36:21 Received From : +22:36:21 ============================================================================ +22:36:21 FNo. Len. Field Value +22:36:21 ============================================================================ +22:36:21 [ 1] [ 4] [0810] +22:36:21 [ 7] [ 10] [0320153412] +22:36:21 [ 11] [ 6] [010125] +22:36:21 [ 37] [ 12] [579220101250] +22:36:21 [ 39] [ 2] [00] +22:36:21 [ 70] [ 3] [810] +22:36:21 ============================================================================ +22:36:21 Calculate Source COMM Id = 4 +22:36:21 ============================================================================ +22:36:21 + + +waiting on router queue for slot.... +22:36:22 ============================================================================ +22:36:22 Slot Id : <183> +22:36:22 Transaction Type : REQUEST +22:36:22 Received From : +22:36:22 ============================================================================ +22:36:22 FNo. Len. Field Value +22:36:22 ============================================================================ +22:36:22 [ 1] [ 4] [0800] +22:36:22 [ 7] [ 10] [0320033530] +22:36:22 [ 11] [ 6] [158810] +22:36:22 [ 70] [ 3] [301] +22:36:22 ============================================================================ +22:36:22 + + +waiting on router queue for slot.... +22:36:22 Sending to : +22:36:22 ============================================================================ +22:36:22 ============================================================================ +22:36:22 Slot Id : <183> +22:36:22 Transaction Type : RESPONSE +22:36:22 Received From : +22:36:22 ============================================================================ +22:36:22 FNo. Len. Field Value +22:36:22 ============================================================================ +22:36:22 [ 1] [ 4] [0810] +22:36:22 [ 7] [ 10] [0320033530] +22:36:22 [ 11] [ 6] [158810] +22:36:22 [ 39] [ 2] [00] +22:36:22 [ 70] [ 3] [301] +22:36:22 ============================================================================ +22:36:22 Calculate Source COMM Id = 2 +22:36:22 ============================================================================ +22:36:22 + + +waiting on router queue for slot.... +22:36:22 ============================================================================ +22:36:22 Slot Id : <221> +22:36:22 Transaction Type : REQUEST +22:36:22 Received From : +22:36:22 ============================================================================ +22:36:22 FNo. Len. Field Value +22:36:22 ============================================================================ +22:36:22 [ 1] [ 4] [0200] +22:36:22 [ 2] [ 16] [2206990000102673] +22:36:22 [ 3] [ 6] [301000] +22:36:22 [ 4] [ 12] [000000000000] +22:36:22 [ 7] [ 10] [0320223618] +22:36:22 [ 11] [ 6] [848700] +22:36:22 [ 12] [ 6] [223618] +22:36:22 [ 13] [ 4] [0320] +22:36:22 [ 15] [ 4] [0320] +22:36:22 [ 18] [ 4] [6011] +22:36:22 [ 22] [ 3] [900] +22:36:22 [ 25] [ 2] [02] +22:36:22 [ 28] [ 9] [D00000000] +22:36:22 [ 32] [ 6] [621354] +22:36:22 [ 35] [ 32] [2206990000102673=971112612240979] +22:36:22 [ 37] [ 12] [507903790495] +22:36:22 [ 41] [ 8] [01009500] +22:36:22 [ 42] [ 15] [NATIVE ] +22:36:22 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +22:36:22 [ 49] [ 3] [418] +22:36:22 [ 52] [ 16] [77E1866CF29845E4] +22:36:22 ============================================================================ +22:36:22 + + +waiting on router queue for slot.... +22:36:22 Sending to : +22:36:22 ============================================================================ +22:36:22 Sending to : +22:36:22 ============================================================================ +22:36:22 ============================================================================ +22:36:22 Slot Id : <221> +22:36:22 Transaction Type : REQUEST +22:36:22 Received From : +22:36:22 ============================================================================ +22:36:22 FNo. Len. Field Value +22:36:22 ============================================================================ +22:36:22 [ 1] [ 4] [0200] +22:36:22 [ 2] [ 16] [2206990000102673] +22:36:22 [ 3] [ 6] [301000] +22:36:22 [ 4] [ 12] [000000000000] +22:36:22 [ 7] [ 10] [0320223618] +22:36:22 [ 11] [ 6] [848700] +22:36:22 [ 12] [ 6] [223618] +22:36:22 [ 13] [ 4] [0320] +22:36:22 [ 15] [ 4] [0320] +22:36:22 [ 18] [ 4] [6011] +22:36:22 [ 22] [ 3] [900] +22:36:22 [ 25] [ 2] [02] +22:36:22 [ 28] [ 9] [D00000000] +22:36:22 [ 32] [ 6] [621354] +22:36:22 [ 35] [ 32] [2206990000102673=971112612240979] +22:36:22 [ 37] [ 12] [507903790495] +22:36:22 [ 41] [ 8] [01009500] +22:36:22 [ 42] [ 15] [NATIVE ] +22:36:22 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +22:36:22 [ 49] [ 3] [418] +22:36:22 [ 52] [ 16] [77E1866CF29845E4] +22:36:22 ============================================================================ +22:36:22 + + +waiting on router queue for slot.... +22:36:22 Sending to : +22:36:22 ============================================================================ +22:36:22 ============================================================================ +22:36:22 Slot Id : <221> +22:36:22 Transaction Type : REQUEST +22:36:22 Received From : +22:36:22 ============================================================================ +22:36:22 FNo. Len. Field Value +22:36:22 ============================================================================ +22:36:22 [ 1] [ 4] [0200] +22:36:22 [ 2] [ 16] [2206990000102673] +22:36:22 [ 3] [ 6] [301000] +22:36:22 [ 4] [ 12] [000000000000] +22:36:22 [ 7] [ 10] [0320223618] +22:36:22 [ 11] [ 6] [848700] +22:36:22 [ 12] [ 6] [223618] +22:36:22 [ 13] [ 4] [0320] +22:36:22 [ 15] [ 4] [0320] +22:36:22 [ 18] [ 4] [6011] +22:36:22 [ 22] [ 3] [900] +22:36:22 [ 25] [ 2] [02] +22:36:22 [ 28] [ 9] [D00000000] +22:36:22 [ 32] [ 6] [621354] +22:36:22 [ 35] [ 32] [2206990000102673=971112612240979] +22:36:22 [ 37] [ 12] [507903790495] +22:36:22 [ 41] [ 8] [01009500] +22:36:22 [ 42] [ 15] [NATIVE ] +22:36:22 [ 43] [ 40] [Supphasunsong Sisattanak LAO] +22:36:22 [ 49] [ 3] [418] +22:36:22 [ 52] [ 16] [36F00FBB98935D03] +22:36:22 ============================================================================ +22:36:22 + + +waiting on router queue for slot.... +22:36:22 Sending to : <1> +22:36:22 ============================================================================ +22:36:24 ============================================================================ +22:36:24 Slot Id : <207> +22:36:24 Transaction Type : REQUEST +22:36:24 Received From : +22:36:24 ============================================================================ +22:36:24 FNo. Len. Field Value +22:36:24 ============================================================================ +22:36:24 [ 1] [ 4] [0800] +22:36:24 [ 2] [ 5] [02531] +22:36:24 [ 3] [ 6] [579228] +22:36:24 [ 7] [ 10] [0320153624] +22:36:24 [ 11] [ 6] [807724] +22:36:24 [ 15] [ 10] [0320153624] +22:36:24 [ 37] [ 11] [57922807724] +22:36:24 [ 70] [ 3] [001] +22:36:24 ============================================================================ +22:36:24 + + +waiting on router queue for slot.... +22:36:24 ============================================================================ +22:36:24 Slot Id : <221> +22:36:24 Transaction Type : RESPONSE +22:36:24 Received From : +22:36:24 ============================================================================ +22:36:24 FNo. Len. Field Value +22:36:24 ============================================================================ +22:36:24 [ 1] [ 4] [0210] +22:36:24 [ 2] [ 16] [2206990000102673] +22:36:24 [ 3] [ 6] [301000] +22:36:24 [ 4] [ 12] [000000000000] +22:36:24 [ 7] [ 10] [0320223618] +22:36:24 [ 11] [ 6] [848700] +22:36:24 [ 12] [ 6] [223618] +22:36:24 [ 13] [ 4] [0320] +22:36:24 [ 15] [ 4] [0320] +22:36:24 [ 18] [ 4] [6011] +22:36:24 [ 32] [ 6] [621354] +22:36:24 [ 35] [ 32] [2206990000102673=971112612240979] +22:36:24 [ 37] [ 12] [507903790495] +22:36:24 [ 38] [ 6] [670854] +22:36:24 [ 39] [ 2] [00] +22:36:24 [ 41] [ 8] [01009500] +22:36:24 [ 49] [ 3] [418] +22:36:24 [ 54] [ 40] [1001418C0000017000001002418C000001700000] +22:36:24 ============================================================================ +22:36:24 Sending to : +22:36:24 ============================================================================ +22:36:24 + + +waiting on router queue for slot.... +22:36:24 ============================================================================ +22:36:24 Slot Id : <207> +22:36:24 Transaction Type : RESPONSE +22:36:24 Received From : +22:36:24 ============================================================================ +22:36:24 FNo. Len. Field Value +22:36:24 ============================================================================ +22:36:24 [ 1] [ 4] [0810] +22:36:24 [ 7] [ 10] [0320153624] +22:36:24 [ 11] [ 6] [807724] +22:36:24 [ 15] [ 4] [0320] +22:36:24 [ 37] [ 12] [57922807724] +22:36:24 [ 39] [ 2] [00] +22:36:24 [ 70] [ 3] [001] +22:36:24 ============================================================================ +22:36:24 Sending to : +22:36:24 ============================================================================ +22:36:24 + + +waiting on router queue for slot.... +22:36:26 ============================================================================ +22:36:26 Slot Id : <221> +22:36:26 Transaction Type : RESPONSE +22:36:26 Received From : +22:36:26 ============================================================================ +22:36:26 FNo. Len. Field Value +22:36:26 ============================================================================ +22:36:26 [ 1] [ 4] [0210] +22:36:26 [ 2] [ 16] [2206990000102673] +22:36:26 [ 3] [ 6] [301000] +22:36:26 [ 4] [ 12] [000000000000] +22:36:26 [ 7] [ 10] [0320223618] +22:36:26 [ 11] [ 6] [848700] +22:36:26 [ 12] [ 6] [223618] +22:36:26 [ 13] [ 4] [0320] +22:36:26 [ 15] [ 4] [0320] +22:36:26 [ 18] [ 4] [6011] +22:36:26 [ 32] [ 6] [621354] +22:36:26 [ 35] [ 32] [2206990000102673=971112612240979] +22:36:26 [ 37] [ 12] [507903790495] +22:36:26 [ 38] [ 6] [670854] +22:36:26 [ 39] [ 2] [00] +22:36:26 [ 41] [ 8] [01009500] +22:36:26 [ 49] [ 3] [418] +22:36:26 [ 54] [ 40] [1001418C0000017000001002418C000001700000] +22:36:26 ============================================================================ +22:36:26 Calculate Source COMM Id = 0 +22:36:26 ============================================================================ +22:36:26 + + +waiting on router queue for slot.... +22:36:35 ============================================================================ +22:36:35 Slot Id : <213> +22:36:35 Transaction Type : REQUEST +22:36:35 Received From : +22:36:35 ============================================================================ +22:36:35 FNo. Len. Field Value +22:36:35 ============================================================================ +22:36:35 [ 1] [ 4] [0800] +22:36:35 [ 7] [ 10] [0321054825] +22:36:35 [ 11] [ 6] [224825] +22:36:35 [ 37] [ 12] [57922224825] +22:36:35 [ 70] [ 3] [301] +22:36:35 ============================================================================ +22:36:35 + + +waiting on router queue for slot.... +22:36:35 Sending to : +22:36:35 ============================================================================ +22:36:35 ============================================================================ +22:36:35 Slot Id : <213> +22:36:35 Transaction Type : RESPONSE +22:36:35 Received From : +22:36:35 ============================================================================ +22:36:35 FNo. Len. Field Value +22:36:35 ============================================================================ +22:36:35 [ 1] [ 4] [0810] +22:36:35 [ 7] [ 10] [0321054825] +22:36:35 [ 11] [ 6] [224825] +22:36:35 [ 37] [ 12] [579222248250] +22:36:35 [ 39] [ 2] [00] +22:36:35 [ 70] [ 3] [810] +22:36:35 ============================================================================ +22:36:35 Calculate Source COMM Id = 6 +22:36:35 ============================================================================ +22:36:35 + + +waiting on router queue for slot.... +22:36:37 ============================================================================ +22:36:37 Slot Id : <169> +22:36:37 Transaction Type : REQUEST +22:36:37 Received From : +22:36:37 ============================================================================ +22:36:37 FNo. Len. Field Value +22:36:37 ============================================================================ +22:36:37 [ 1] [ 4] [0800] +22:36:37 [ 7] [ 10] [0320033545] +22:36:37 [ 11] [ 6] [158811] +22:36:37 [ 70] [ 3] [301] +22:36:37 ============================================================================ +22:36:37 + + +waiting on router queue for slot.... +22:36:37 Sending to : +22:36:37 ============================================================================ +22:36:37 ============================================================================ +22:36:37 Slot Id : <169> +22:36:37 Transaction Type : RESPONSE +22:36:37 Received From : +22:36:37 ============================================================================ +22:36:37 FNo. Len. Field Value +22:36:37 ============================================================================ +22:36:37 [ 1] [ 4] [0810] +22:36:37 [ 7] [ 10] [0320033545] +22:36:37 [ 11] [ 6] [158811] +22:36:37 [ 39] [ 2] [00] +22:36:37 [ 70] [ 3] [301] +22:36:37 ============================================================================ +22:36:37 Calculate Source COMM Id = 2 +22:36:37 ============================================================================ +22:36:37 + + +waiting on router queue for slot.... +22:36:49 ============================================================================ +22:36:49 Slot Id : <205> +22:36:49 Transaction Type : REQUEST +22:36:49 Received From : +22:36:49 ============================================================================ +22:36:49 FNo. Len. Field Value +22:36:49 ============================================================================ +22:36:49 [ 1] [ 4] [0800] +22:36:49 [ 7] [ 10] [0320033558] +22:36:49 [ 11] [ 6] [158812] +22:36:49 [ 70] [ 3] [301] +22:36:49 ============================================================================ +22:36:49 + + +waiting on router queue for slot.... +22:36:49 Sending to : +22:36:49 ============================================================================ +22:36:49 ============================================================================ +22:36:49 Slot Id : <205> +22:36:49 Transaction Type : RESPONSE +22:36:49 Received From : +22:36:49 ============================================================================ +22:36:49 FNo. Len. Field Value +22:36:49 ============================================================================ +22:36:49 [ 1] [ 4] [0810] +22:36:49 [ 7] [ 10] [0320033558] +22:36:49 [ 11] [ 6] [158812] +22:36:49 [ 39] [ 2] [00] +22:36:49 [ 70] [ 3] [301] +22:36:49 ============================================================================ +22:36:49 Calculate Source COMM Id = 2 +22:36:49 ============================================================================ +22:36:49 + + +waiting on router queue for slot.... +22:37:00 ============================================================================ +22:37:00 Slot Id : <185> +22:37:00 Transaction Type : REQUEST +22:37:00 Received From : +22:37:00 ============================================================================ +22:37:00 FNo. Len. Field Value +22:37:00 ============================================================================ +22:37:00 [ 1] [ 4] [0800] +22:37:00 [ 7] [ 10] [0320033609] +22:37:00 [ 11] [ 6] [158813] +22:37:00 [ 70] [ 3] [301] +22:37:00 ============================================================================ +22:37:00 + + +waiting on router queue for slot.... +22:37:00 Sending to : +22:37:00 ============================================================================ +22:37:00 ============================================================================ +22:37:00 Slot Id : <185> +22:37:00 Transaction Type : RESPONSE +22:37:00 Received From : +22:37:00 ============================================================================ +22:37:00 FNo. Len. Field Value +22:37:00 ============================================================================ +22:37:00 [ 1] [ 4] [0810] +22:37:00 [ 7] [ 10] [0320033609] +22:37:00 [ 11] [ 6] [158813] +22:37:00 [ 39] [ 2] [00] +22:37:00 [ 70] [ 3] [301] +22:37:00 ============================================================================ +22:37:00 Calculate Source COMM Id = 2 +22:37:00 ============================================================================ +22:37:00 + + +waiting on router queue for slot.... +22:37:12 ============================================================================ +22:37:12 Slot Id : <149> +22:37:12 Transaction Type : REQUEST +22:37:12 Received From : +22:37:12 ============================================================================ +22:37:12 FNo. Len. Field Value +22:37:12 ============================================================================ +22:37:12 [ 1] [ 4] [0800] +22:37:12 [ 7] [ 10] [0320033619] +22:37:12 [ 11] [ 6] [158814] +22:37:12 [ 70] [ 3] [301] +22:37:12 ============================================================================ +22:37:12 + + +waiting on router queue for slot.... +22:37:12 Sending to : +22:37:12 ============================================================================ +22:37:12 ============================================================================ +22:37:12 Slot Id : <149> +22:37:12 Transaction Type : RESPONSE +22:37:12 Received From : +22:37:12 ============================================================================ +22:37:12 FNo. Len. Field Value +22:37:12 ============================================================================ +22:37:12 [ 1] [ 4] [0810] +22:37:12 [ 7] [ 10] [0320033619] +22:37:12 [ 11] [ 6] [158814] +22:37:12 [ 39] [ 2] [00] +22:37:12 [ 70] [ 3] [301] +22:37:12 ============================================================================ +22:37:12 Calculate Source COMM Id = 2 +22:37:12 ============================================================================ +22:37:12 + + +waiting on router queue for slot.... +22:37:26 ============================================================================ +22:37:26 Slot Id : <232> +22:37:26 Transaction Type : REQUEST +22:37:26 Received From : +22:37:26 ============================================================================ +22:37:26 FNo. Len. Field Value +22:37:26 ============================================================================ +22:37:26 [ 1] [ 4] [0800] +22:37:26 [ 2] [ 5] [02531] +22:37:26 [ 3] [ 6] [579228] +22:37:26 [ 7] [ 10] [0320153726] +22:37:26 [ 11] [ 6] [807725] +22:37:26 [ 15] [ 10] [0320153726] +22:37:26 [ 37] [ 11] [57922807725] +22:37:26 [ 70] [ 3] [001] +22:37:26 ============================================================================ +22:37:26 + + +waiting on router queue for slot.... +22:37:26 ============================================================================ +22:37:26 Slot Id : <232> +22:37:26 Transaction Type : RESPONSE +22:37:26 Received From : +22:37:26 ============================================================================ +22:37:26 FNo. Len. Field Value +22:37:26 ============================================================================ +22:37:26 [ 1] [ 4] [0810] +22:37:26 [ 7] [ 10] [0320153726] +22:37:26 [ 11] [ 6] [807725] +22:37:26 [ 15] [ 4] [0320] +22:37:26 [ 37] [ 12] [57922807725] +22:37:26 [ 39] [ 2] [00] +22:37:26 [ 70] [ 3] [001] +22:37:26 ============================================================================ +22:37:26 Sending to : +22:37:26 ============================================================================ +22:37:26 + + +waiting on router queue for slot.... +22:37:26 ============================================================================ +22:37:26 Slot Id : <180> +22:37:26 Transaction Type : REQUEST +22:37:26 Received From : +22:37:26 ============================================================================ +22:37:26 FNo. Len. Field Value +22:37:26 ============================================================================ +22:37:26 [ 1] [ 4] [0800] +22:37:26 [ 7] [ 10] [0320033635] +22:37:26 [ 11] [ 6] [158815] +22:37:26 [ 70] [ 3] [301] +22:37:26 ============================================================================ +22:37:26 + + +waiting on router queue for slot.... +22:37:26 Sending to : +22:37:26 ============================================================================ +22:37:26 ============================================================================ +22:37:26 Slot Id : <180> +22:37:26 Transaction Type : RESPONSE +22:37:26 Received From : +22:37:26 ============================================================================ +22:37:26 FNo. Len. Field Value +22:37:26 ============================================================================ +22:37:26 [ 1] [ 4] [0810] +22:37:26 [ 7] [ 10] [0320033635] +22:37:26 [ 11] [ 6] [158815] +22:37:26 [ 39] [ 2] [00] +22:37:26 [ 70] [ 3] [301] +22:37:26 ============================================================================ +22:37:26 Calculate Source COMM Id = 2 +22:37:26 ============================================================================ +22:37:26 + + +waiting on router queue for slot.... +22:37:38 ============================================================================ +22:37:38 Slot Id : <222> +22:37:38 Transaction Type : REQUEST +22:37:38 Received From : +22:37:38 ============================================================================ +22:37:38 FNo. Len. Field Value +22:37:38 ============================================================================ +22:37:38 [ 1] [ 4] [0800] +22:37:38 [ 7] [ 10] [0320033645] +22:37:38 [ 11] [ 6] [158816] +22:37:38 [ 70] [ 3] [301] +22:37:38 ============================================================================ +22:37:38 + + +waiting on router queue for slot.... +22:37:38 Sending to : +22:37:38 ============================================================================ +22:37:38 ============================================================================ +22:37:38 Slot Id : <222> +22:37:38 Transaction Type : RESPONSE +22:37:38 Received From : +22:37:38 ============================================================================ +22:37:38 FNo. Len. Field Value +22:37:38 ============================================================================ +22:37:38 [ 1] [ 4] [0810] +22:37:38 [ 7] [ 10] [0320033645] +22:37:38 [ 11] [ 6] [158816] +22:37:38 [ 39] [ 2] [00] +22:37:38 [ 70] [ 3] [301] +22:37:38 ============================================================================ +22:37:38 Calculate Source COMM Id = 2 +22:37:38 ============================================================================ +22:37:38 + + +waiting on router queue for slot.... +22:37:40 ============================================================================ +22:37:40 Slot Id : <211> +22:37:40 Transaction Type : REQUEST +22:37:40 Received From : +22:37:40 ============================================================================ +22:37:40 FNo. Len. Field Value +22:37:40 ============================================================================ +22:37:40 [ 1] [ 4] [0800] +22:37:40 [ 7] [ 10] [0321054930] +22:37:40 [ 11] [ 6] [224930] +22:37:40 [ 37] [ 12] [57922224930] +22:37:40 [ 70] [ 3] [301] +22:37:40 ============================================================================ +22:37:40 + + +waiting on router queue for slot.... +22:37:40 Sending to : +22:37:40 ============================================================================ +22:37:40 ============================================================================ +22:37:40 Slot Id : <211> +22:37:40 Transaction Type : RESPONSE +22:37:40 Received From : +22:37:40 ============================================================================ +22:37:40 FNo. Len. Field Value +22:37:40 ============================================================================ +22:37:40 [ 1] [ 4] [0810] +22:37:40 [ 7] [ 10] [0321054930] +22:37:40 [ 11] [ 6] [224930] +22:37:40 [ 37] [ 12] [579222249300] +22:37:40 [ 39] [ 2] [00] +22:37:40 [ 70] [ 3] [810] +22:37:40 ============================================================================ +22:37:40 Calculate Source COMM Id = 6 +22:37:40 ============================================================================ +22:37:40 + + +waiting on router queue for slot.... +22:37:53 ============================================================================ +22:37:53 Slot Id : <208> +22:37:53 Transaction Type : REQUEST +22:37:53 Received From : +22:37:53 ============================================================================ +22:37:53 FNo. Len. Field Value +22:37:53 ============================================================================ +22:37:53 [ 1] [ 4] [0800] +22:37:53 [ 7] [ 10] [0320033701] +22:37:53 [ 11] [ 6] [158817] +22:37:53 [ 70] [ 3] [301] +22:37:53 ============================================================================ +22:37:53 + + +waiting on router queue for slot.... +22:37:53 Sending to : +22:37:53 ============================================================================ +22:37:53 ============================================================================ +22:37:53 Slot Id : <208> +22:37:53 Transaction Type : RESPONSE +22:37:53 Received From : +22:37:53 ============================================================================ +22:37:53 FNo. Len. Field Value +22:37:53 ============================================================================ +22:37:53 [ 1] [ 4] [0810] +22:37:53 [ 7] [ 10] [0320033701] +22:37:53 [ 11] [ 6] [158817] +22:37:53 [ 39] [ 2] [00] +22:37:53 [ 70] [ 3] [301] +22:37:53 ============================================================================ +22:37:53 Calculate Source COMM Id = 2 +22:37:53 ============================================================================ +22:37:53 + + +waiting on router queue for slot.... +22:38:03 ============================================================================ +22:38:03 Slot Id : <189> +22:38:03 Transaction Type : REQUEST +22:38:03 Received From : +22:38:03 ============================================================================ +22:38:03 FNo. Len. Field Value +22:38:03 ============================================================================ +22:38:03 [ 1] [ 4] [0800] +22:38:03 [ 7] [ 10] [0320033712] +22:38:03 [ 11] [ 6] [158818] +22:38:03 [ 70] [ 3] [301] +22:38:03 ============================================================================ +22:38:03 + + +waiting on router queue for slot.... +22:38:03 Sending to : +22:38:03 ============================================================================ +22:38:03 ============================================================================ +22:38:03 Slot Id : <189> +22:38:03 Transaction Type : RESPONSE +22:38:03 Received From : +22:38:03 ============================================================================ +22:38:03 FNo. Len. Field Value +22:38:03 ============================================================================ +22:38:03 [ 1] [ 4] [0810] +22:38:03 [ 7] [ 10] [0320033712] +22:38:03 [ 11] [ 6] [158818] +22:38:03 [ 39] [ 2] [00] +22:38:03 [ 70] [ 3] [301] +22:38:03 ============================================================================ +22:38:03 Calculate Source COMM Id = 2 +22:38:03 ============================================================================ +22:38:03 + + +waiting on router queue for slot.... +22:38:14 ============================================================================ +22:38:14 Slot Id : <168> +22:38:14 Transaction Type : REQUEST +22:38:14 Received From : +22:38:14 ============================================================================ +22:38:14 FNo. Len. Field Value +22:38:14 ============================================================================ +22:38:14 [ 1] [ 4] [0800] +22:38:14 [ 7] [ 10] [0320033722] +22:38:14 [ 11] [ 6] [158819] +22:38:14 [ 70] [ 3] [301] +22:38:14 ============================================================================ +22:38:14 + + +waiting on router queue for slot.... +22:38:14 Sending to : +22:38:14 ============================================================================ +22:38:14 ============================================================================ +22:38:14 Slot Id : <168> +22:38:14 Transaction Type : RESPONSE +22:38:14 Received From : +22:38:14 ============================================================================ +22:38:14 FNo. Len. Field Value +22:38:14 ============================================================================ +22:38:14 [ 1] [ 4] [0810] +22:38:14 [ 7] [ 10] [0320033722] +22:38:14 [ 11] [ 6] [158819] +22:38:14 [ 39] [ 2] [00] +22:38:14 [ 70] [ 3] [301] +22:38:14 ============================================================================ +22:38:14 Calculate Source COMM Id = 2 +22:38:14 ============================================================================ +22:38:14 + + +waiting on router queue for slot.... +22:38:24 ============================================================================ +22:38:24 Slot Id : <174> +22:38:24 Transaction Type : REQUEST +22:38:24 Received From : +22:38:24 ============================================================================ +22:38:24 FNo. Len. Field Value +22:38:24 ============================================================================ +22:38:24 [ 1] [ 4] [0800] +22:38:24 [ 7] [ 10] [0320033732] +22:38:24 [ 11] [ 6] [158820] +22:38:24 [ 70] [ 3] [301] +22:38:24 ============================================================================ +22:38:24 + + +waiting on router queue for slot.... +22:38:24 Sending to : +22:38:24 ============================================================================ +22:38:24 ============================================================================ +22:38:24 Slot Id : <174> +22:38:24 Transaction Type : RESPONSE +22:38:24 Received From : +22:38:24 ============================================================================ +22:38:24 FNo. Len. Field Value +22:38:24 ============================================================================ +22:38:24 [ 1] [ 4] [0810] +22:38:24 [ 7] [ 10] [0320033732] +22:38:24 [ 11] [ 6] [158820] +22:38:24 [ 39] [ 2] [00] +22:38:24 [ 70] [ 3] [301] +22:38:24 ============================================================================ +22:38:24 Calculate Source COMM Id = 2 +22:38:24 ============================================================================ +22:38:24 + + +waiting on router queue for slot.... +22:38:28 ============================================================================ +22:38:28 Slot Id : <229> +22:38:28 Transaction Type : REQUEST +22:38:28 Received From : +22:38:28 ============================================================================ +22:38:28 FNo. Len. Field Value +22:38:28 ============================================================================ +22:38:28 [ 1] [ 4] [0800] +22:38:28 [ 2] [ 5] [02531] +22:38:28 [ 3] [ 6] [579228] +22:38:28 [ 7] [ 10] [0320153828] +22:38:28 [ 11] [ 6] [807726] +22:38:28 [ 15] [ 10] [0320153828] +22:38:28 [ 37] [ 11] [57922807726] +22:38:28 [ 70] [ 3] [001] +22:38:28 ============================================================================ +22:38:28 + + +waiting on router queue for slot.... +22:38:28 ============================================================================ +22:38:28 Slot Id : <229> +22:38:28 Transaction Type : RESPONSE +22:38:28 Received From : +22:38:28 ============================================================================ +22:38:28 FNo. Len. Field Value +22:38:28 ============================================================================ +22:38:28 [ 1] [ 4] [0810] +22:38:28 [ 7] [ 10] [0320153828] +22:38:28 [ 11] [ 6] [807726] +22:38:28 [ 15] [ 4] [0320] +22:38:28 [ 37] [ 12] [57922807726] +22:38:28 [ 39] [ 2] [00] +22:38:28 [ 70] [ 3] [001] +22:38:28 ============================================================================ +22:38:28 Sending to : +22:38:28 ============================================================================ +22:38:28 + + +waiting on router queue for slot.... +22:38:36 ============================================================================ +22:38:36 Slot Id : <173> +22:38:36 Transaction Type : REQUEST +22:38:36 Received From : +22:38:36 ============================================================================ +22:38:36 FNo. Len. Field Value +22:38:36 ============================================================================ +22:38:36 [ 1] [ 4] [0800] +22:38:36 [ 7] [ 10] [0320033744] +22:38:36 [ 11] [ 6] [158821] +22:38:36 [ 70] [ 3] [301] +22:38:36 ============================================================================ +22:38:36 + + +waiting on router queue for slot.... +22:38:36 Sending to : +22:38:36 ============================================================================ +22:38:36 ============================================================================ +22:38:36 Slot Id : <173> +22:38:36 Transaction Type : RESPONSE +22:38:36 Received From : +22:38:36 ============================================================================ +22:38:36 FNo. Len. Field Value +22:38:36 ============================================================================ +22:38:36 [ 1] [ 4] [0810] +22:38:36 [ 7] [ 10] [0320033744] +22:38:36 [ 11] [ 6] [158821] +22:38:36 [ 39] [ 2] [00] +22:38:36 [ 70] [ 3] [301] +22:38:36 ============================================================================ +22:38:36 Calculate Source COMM Id = 2 +22:38:36 ============================================================================ +22:38:36 + + +waiting on router queue for slot.... +22:38:42 ============================================================================ +22:38:42 Slot Id : <246> +22:38:42 Transaction Type : REQUEST +22:38:42 Received From : +22:38:42 ============================================================================ +22:38:42 FNo. Len. Field Value +22:38:42 ============================================================================ +22:38:42 [ 1] [ 4] [0800] +22:38:42 [ 7] [ 10] [0320153838] +22:38:42 [ 11] [ 6] [068865] +22:38:42 [ 37] [ 12] [507922068865] +22:38:42 [ 70] [ 3] [001] +22:38:42 ============================================================================ +22:38:42 + + +waiting on router queue for slot.... +22:38:42 Sending to : +22:38:42 ============================================================================ +22:38:42 ============================================================================ +22:38:42 Slot Id : <246> +22:38:42 Transaction Type : RESPONSE +22:38:42 Received From : +22:38:42 ============================================================================ +22:38:42 FNo. Len. Field Value +22:38:42 ============================================================================ +22:38:42 [ 1] [ 4] [0810] +22:38:42 [ 7] [ 10] [0320153838] +22:38:42 [ 11] [ 6] [068865] +22:38:42 [ 37] [ 12] [507922068865] +22:38:42 [ 39] [ 2] [00] +22:38:42 [ 70] [ 3] [001] +22:38:42 ============================================================================ +22:38:42 Calculate Source COMM Id = 0 +22:38:42 ============================================================================ +22:38:42 + + +waiting on router queue for slot.... +22:38:45 ============================================================================ +22:38:45 Slot Id : <188> +22:38:45 Transaction Type : REQUEST +22:38:45 Received From : +22:38:45 ============================================================================ +22:38:45 FNo. Len. Field Value +22:38:45 ============================================================================ +22:38:45 [ 1] [ 4] [0800] +22:38:45 [ 7] [ 10] [0321055035] +22:38:45 [ 11] [ 6] [225035] +22:38:45 [ 37] [ 12] [57922225035] +22:38:45 [ 70] [ 3] [301] +22:38:45 ============================================================================ +22:38:45 + + +waiting on router queue for slot.... +22:38:45 Sending to : +22:38:45 ============================================================================ +22:38:45 ============================================================================ +22:38:45 Slot Id : <188> +22:38:45 Transaction Type : RESPONSE +22:38:45 Received From : +22:38:45 ============================================================================ +22:38:45 FNo. Len. Field Value +22:38:45 ============================================================================ +22:38:45 [ 1] [ 4] [0810] +22:38:45 [ 7] [ 10] [0321055035] +22:38:45 [ 11] [ 6] [225035] +22:38:45 [ 37] [ 12] [579222250350] +22:38:45 [ 39] [ 2] [00] +22:38:45 [ 70] [ 3] [810] +22:38:45 ============================================================================ +22:38:45 Calculate Source COMM Id = 6 +22:38:45 ============================================================================ +22:38:45 + + +waiting on router queue for slot.... +22:38:53 ============================================================================ +22:38:53 Slot Id : <223> +22:38:53 Transaction Type : REQUEST +22:38:53 Received From : +22:38:53 ============================================================================ +22:38:53 FNo. Len. Field Value +22:38:53 ============================================================================ +22:38:53 [ 1] [ 4] [0800] +22:38:53 [ 7] [ 10] [0320033801] +22:38:53 [ 11] [ 6] [158822] +22:38:53 [ 70] [ 3] [301] +22:38:53 ============================================================================ +22:38:53 + + +waiting on router queue for slot.... +22:38:53 Sending to : +22:38:53 ============================================================================ +22:38:53 ============================================================================ +22:38:53 Slot Id : <223> +22:38:53 Transaction Type : RESPONSE +22:38:53 Received From : +22:38:53 ============================================================================ +22:38:53 FNo. Len. Field Value +22:38:53 ============================================================================ +22:38:53 [ 1] [ 4] [0810] +22:38:53 [ 7] [ 10] [0320033801] +22:38:53 [ 11] [ 6] [158822] +22:38:53 [ 39] [ 2] [00] +22:38:53 [ 70] [ 3] [301] +22:38:53 ============================================================================ +22:38:53 Calculate Source COMM Id = 2 +22:38:53 ============================================================================ +22:38:53 + + +waiting on router queue for slot.... +22:39:03 ============================================================================ +22:39:03 Slot Id : <235> +22:39:03 Transaction Type : REQUEST +22:39:03 Received From : +22:39:03 ============================================================================ +22:39:03 FNo. Len. Field Value +22:39:03 ============================================================================ +22:39:03 [ 1] [ 4] [0800] +22:39:03 [ 7] [ 10] [0320033811] +22:39:03 [ 11] [ 6] [158823] +22:39:03 [ 70] [ 3] [301] +22:39:03 ============================================================================ +22:39:03 + + +waiting on router queue for slot.... +22:39:03 Sending to : +22:39:03 ============================================================================ +22:39:03 ============================================================================ +22:39:03 Slot Id : <235> +22:39:03 Transaction Type : RESPONSE +22:39:03 Received From : +22:39:03 ============================================================================ +22:39:03 FNo. Len. Field Value +22:39:03 ============================================================================ +22:39:03 [ 1] [ 4] [0810] +22:39:03 [ 7] [ 10] [0320033811] +22:39:03 [ 11] [ 6] [158823] +22:39:03 [ 39] [ 2] [00] +22:39:03 [ 70] [ 3] [301] +22:39:03 ============================================================================ +22:39:03 Calculate Source COMM Id = 2 +22:39:03 ============================================================================ +22:39:03 + + +waiting on router queue for slot.... +22:39:18 ============================================================================ +22:39:18 Slot Id : <227> +22:39:18 Transaction Type : REQUEST +22:39:18 Received From : +22:39:18 ============================================================================ +22:39:18 FNo. Len. Field Value +22:39:18 ============================================================================ +22:39:18 [ 1] [ 4] [0800] +22:39:18 [ 7] [ 10] [0320033827] +22:39:18 [ 11] [ 6] [158824] +22:39:18 [ 70] [ 3] [301] +22:39:18 ============================================================================ +22:39:18 + + +waiting on router queue for slot.... +22:39:18 Sending to : +22:39:18 ============================================================================ +22:39:18 ============================================================================ +22:39:18 Slot Id : <227> +22:39:18 Transaction Type : RESPONSE +22:39:18 Received From : +22:39:18 ============================================================================ +22:39:18 FNo. Len. Field Value +22:39:18 ============================================================================ +22:39:18 [ 1] [ 4] [0810] +22:39:18 [ 7] [ 10] [0320033827] +22:39:18 [ 11] [ 6] [158824] +22:39:18 [ 39] [ 2] [00] +22:39:18 [ 70] [ 3] [301] +22:39:18 ============================================================================ +22:39:18 Calculate Source COMM Id = 2 +22:39:18 ============================================================================ +22:39:18 + + +waiting on router queue for slot.... +22:39:30 ============================================================================ +22:39:30 Slot Id : <244> +22:39:30 Transaction Type : REQUEST +22:39:30 Received From : +22:39:30 ============================================================================ +22:39:30 FNo. Len. Field Value +22:39:30 ============================================================================ +22:39:30 [ 1] [ 4] [0800] +22:39:30 [ 7] [ 10] [0320033837] +22:39:30 [ 11] [ 6] [158825] +22:39:30 [ 70] [ 3] [301] +22:39:30 ============================================================================ +22:39:30 + + +waiting on router queue for slot.... +22:39:30 Sending to : +22:39:30 ============================================================================ +22:39:30 ============================================================================ +22:39:30 Slot Id : <244> +22:39:30 Transaction Type : RESPONSE +22:39:30 Received From : +22:39:30 ============================================================================ +22:39:30 FNo. Len. Field Value +22:39:30 ============================================================================ +22:39:30 [ 1] [ 4] [0810] +22:39:30 [ 7] [ 10] [0320033837] +22:39:30 [ 11] [ 6] [158825] +22:39:30 [ 39] [ 2] [00] +22:39:30 [ 70] [ 3] [301] +22:39:30 ============================================================================ +22:39:30 Calculate Source COMM Id = 2 +22:39:30 ============================================================================ +22:39:30 + + +waiting on router queue for slot.... +22:39:30 ============================================================================ +22:39:30 Slot Id : <215> +22:39:30 Transaction Type : REQUEST +22:39:30 Received From : +22:39:30 ============================================================================ +22:39:30 FNo. Len. Field Value +22:39:30 ============================================================================ +22:39:30 [ 1] [ 4] [0800] +22:39:30 [ 2] [ 5] [02531] +22:39:30 [ 3] [ 6] [579228] +22:39:30 [ 7] [ 10] [0320153930] +22:39:30 [ 11] [ 6] [807727] +22:39:30 [ 15] [ 10] [0320153930] +22:39:30 [ 37] [ 11] [57922807727] +22:39:30 [ 70] [ 3] [001] +22:39:30 ============================================================================ +22:39:30 + + +waiting on router queue for slot.... +22:39:30 ============================================================================ +22:39:30 Slot Id : <215> +22:39:30 Transaction Type : RESPONSE +22:39:30 Received From : +22:39:30 ============================================================================ +22:39:30 FNo. Len. Field Value +22:39:30 ============================================================================ +22:39:30 [ 1] [ 4] [0810] +22:39:30 [ 7] [ 10] [0320153930] +22:39:30 [ 11] [ 6] [807727] +22:39:30 [ 15] [ 4] [0320] +22:39:30 [ 37] [ 12] [57922807727] +22:39:30 [ 39] [ 2] [00] +22:39:30 [ 70] [ 3] [001] +22:39:30 ============================================================================ +22:39:30 Sending to : +22:39:30 ============================================================================ +22:39:30 + + +waiting on router queue for slot.... +22:39:44 ============================================================================ +22:39:44 Slot Id : <248> +22:39:44 Transaction Type : REQUEST +22:39:44 Received From : +22:39:44 ============================================================================ +22:39:44 FNo. Len. Field Value +22:39:44 ============================================================================ +22:39:44 [ 1] [ 4] [0800] +22:39:44 [ 7] [ 10] [0320033852] +22:39:44 [ 11] [ 6] [158826] +22:39:44 [ 70] [ 3] [301] +22:39:44 ============================================================================ +22:39:44 + + +waiting on router queue for slot.... +22:39:44 Sending to : +22:39:44 ============================================================================ +22:39:44 ============================================================================ +22:39:44 Slot Id : <248> +22:39:44 Transaction Type : RESPONSE +22:39:44 Received From : +22:39:44 ============================================================================ +22:39:44 FNo. Len. Field Value +22:39:44 ============================================================================ +22:39:44 [ 1] [ 4] [0810] +22:39:44 [ 7] [ 10] [0320033852] +22:39:44 [ 11] [ 6] [158826] +22:39:44 [ 39] [ 2] [00] +22:39:44 [ 70] [ 3] [301] +22:39:44 ============================================================================ +22:39:44 Calculate Source COMM Id = 2 +22:39:44 ============================================================================ +22:39:44 + + +waiting on router queue for slot.... +22:39:50 ============================================================================ +22:39:50 Slot Id : <251> +22:39:50 Transaction Type : REQUEST +22:39:50 Received From : +22:39:50 ============================================================================ +22:39:50 FNo. Len. Field Value +22:39:50 ============================================================================ +22:39:50 [ 1] [ 4] [0800] +22:39:50 [ 7] [ 10] [0321055140] +22:39:50 [ 11] [ 6] [225140] +22:39:50 [ 37] [ 12] [57922225140] +22:39:50 [ 70] [ 3] [301] +22:39:50 ============================================================================ +22:39:50 + + +waiting on router queue for slot.... +22:39:50 Sending to : +22:39:50 ============================================================================ +22:39:50 ============================================================================ +22:39:50 Slot Id : <251> +22:39:50 Transaction Type : RESPONSE +22:39:50 Received From : +22:39:50 ============================================================================ +22:39:50 FNo. Len. Field Value +22:39:50 ============================================================================ +22:39:50 [ 1] [ 4] [0810] +22:39:50 [ 7] [ 10] [0321055140] +22:39:50 [ 11] [ 6] [225140] +22:39:50 [ 37] [ 12] [579222251400] +22:39:50 [ 39] [ 2] [00] +22:39:50 [ 70] [ 3] [810] +22:39:50 ============================================================================ +22:39:50 Calculate Source COMM Id = 6 +22:39:50 ============================================================================ +22:39:50 + + +waiting on router queue for slot.... +22:39:55 ============================================================================ +22:39:55 Slot Id : <255> +22:39:55 Transaction Type : REQUEST +22:39:55 Received From : +22:39:55 ============================================================================ +22:39:55 FNo. Len. Field Value +22:39:55 ============================================================================ +22:39:55 [ 1] [ 4] [0800] +22:39:55 [ 7] [ 10] [0320033902] +22:39:55 [ 11] [ 6] [158827] +22:39:55 [ 70] [ 3] [301] +22:39:55 ============================================================================ +22:39:55 + + +waiting on router queue for slot.... +22:39:55 Sending to : +22:39:55 ============================================================================ +22:39:55 ============================================================================ +22:39:55 Slot Id : <255> +22:39:55 Transaction Type : RESPONSE +22:39:55 Received From : +22:39:55 ============================================================================ +22:39:55 FNo. Len. Field Value +22:39:55 ============================================================================ +22:39:55 [ 1] [ 4] [0810] +22:39:55 [ 7] [ 10] [0320033902] +22:39:55 [ 11] [ 6] [158827] +22:39:55 [ 39] [ 2] [00] +22:39:55 [ 70] [ 3] [301] +22:39:55 ============================================================================ +22:39:55 Calculate Source COMM Id = 2 +22:39:55 ============================================================================ +22:39:55 + + +waiting on router queue for slot.... +22:39:55 ============================================================================ +22:39:55 Slot Id : <242> +22:39:55 Transaction Type : REQUEST +22:39:55 Received From : +22:39:55 ============================================================================ +22:39:55 FNo. Len. Field Value +22:39:55 ============================================================================ +22:39:55 [ 1] [ 4] [0800] +22:39:55 [ 7] [ 10] [0320154742] +22:39:55 [ 11] [ 6] [076496] +22:39:55 [ 37] [ 12] [57922076496] +22:39:55 [ 70] [ 3] [301] +22:39:55 ============================================================================ +22:39:55 + + +waiting on router queue for slot.... +22:39:55 Sending to : +22:39:55 ============================================================================ +22:39:55 ============================================================================ +22:39:55 Slot Id : <242> +22:39:55 Transaction Type : RESPONSE +22:39:55 Received From : +22:39:55 ============================================================================ +22:39:55 FNo. Len. Field Value +22:39:55 ============================================================================ +22:39:55 [ 1] [ 4] [0810] +22:39:55 [ 7] [ 10] [0320154742] +22:39:55 [ 11] [ 6] [076496] +22:39:55 [ 37] [ 12] [579220764960] +22:39:55 [ 39] [ 2] [00] +22:39:55 [ 70] [ 3] [810] +22:39:55 ============================================================================ +22:39:55 Calculate Source COMM Id = 1 +22:39:55 ============================================================================ +22:39:55 + + +waiting on router queue for slot.... +22:40:11 ============================================================================ +22:40:11 Slot Id : <250> +22:40:11 Transaction Type : REQUEST +22:40:11 Received From : +22:40:11 ============================================================================ +22:40:11 FNo. Len. Field Value +22:40:11 ============================================================================ +22:40:11 [ 1] [ 4] [0800] +22:40:11 [ 7] [ 10] [0320033919] +22:40:11 [ 11] [ 6] [158828] +22:40:11 [ 70] [ 3] [301] +22:40:11 ============================================================================ +22:40:11 + + +waiting on router queue for slot.... +22:40:11 Sending to : +22:40:11 ============================================================================ +22:40:11 ============================================================================ +22:40:11 Slot Id : <250> +22:40:11 Transaction Type : RESPONSE +22:40:11 Received From : +22:40:11 ============================================================================ +22:40:11 FNo. Len. Field Value +22:40:11 ============================================================================ +22:40:11 [ 1] [ 4] [0810] +22:40:11 [ 7] [ 10] [0320033919] +22:40:11 [ 11] [ 6] [158828] +22:40:11 [ 39] [ 2] [00] +22:40:11 [ 70] [ 3] [301] +22:40:11 ============================================================================ +22:40:11 Calculate Source COMM Id = 2 +22:40:11 ============================================================================ +22:40:11 + + +waiting on router queue for slot.... +22:40:21 ============================================================================ +22:40:21 Slot Id : <243> +22:40:21 Transaction Type : REQUEST +22:40:21 Received From : +22:40:21 ============================================================================ +22:40:21 FNo. Len. Field Value +22:40:21 ============================================================================ +22:40:21 [ 1] [ 4] [0800] +22:40:21 [ 7] [ 10] [0320033929] +22:40:21 [ 11] [ 6] [158829] +22:40:21 [ 70] [ 3] [301] +22:40:21 ============================================================================ +22:40:21 + + +waiting on router queue for slot.... +22:40:21 Sending to : +22:40:21 ============================================================================ +22:40:21 ============================================================================ +22:40:21 Slot Id : <243> +22:40:21 Transaction Type : RESPONSE +22:40:21 Received From : +22:40:21 ============================================================================ +22:40:21 FNo. Len. Field Value +22:40:21 ============================================================================ +22:40:21 [ 1] [ 4] [0810] +22:40:21 [ 7] [ 10] [0320033929] +22:40:21 [ 11] [ 6] [158829] +22:40:21 [ 39] [ 2] [00] +22:40:21 [ 70] [ 3] [301] +22:40:21 ============================================================================ +22:40:21 Calculate Source COMM Id = 2 +22:40:21 ============================================================================ +22:40:21 + + +waiting on router queue for slot.... +22:40:32 ============================================================================ +22:40:32 Slot Id : <226> +22:40:32 Transaction Type : REQUEST +22:40:32 Received From : +22:40:32 ============================================================================ +22:40:32 FNo. Len. Field Value +22:40:32 ============================================================================ +22:40:32 [ 1] [ 4] [0800] +22:40:32 [ 2] [ 5] [02531] +22:40:32 [ 3] [ 6] [579228] +22:40:32 [ 7] [ 10] [0320154032] +22:40:32 [ 11] [ 6] [807728] +22:40:32 [ 15] [ 10] [0320154032] +22:40:32 [ 37] [ 11] [57922807728] +22:40:32 [ 70] [ 3] [001] +22:40:32 ============================================================================ +22:40:32 + + +waiting on router queue for slot.... +22:40:32 ============================================================================ +22:40:32 Slot Id : <226> +22:40:32 Transaction Type : RESPONSE +22:40:32 Received From : +22:40:32 ============================================================================ +22:40:32 FNo. Len. Field Value +22:40:32 ============================================================================ +22:40:32 [ 1] [ 4] [0810] +22:40:32 [ 7] [ 10] [0320154032] +22:40:32 [ 11] [ 6] [807728] +22:40:32 [ 15] [ 4] [0320] +22:40:32 [ 37] [ 12] [57922807728] +22:40:32 [ 39] [ 2] [00] +22:40:32 [ 70] [ 3] [001] +22:40:32 ============================================================================ +22:40:32 Sending to : +22:40:32 ============================================================================ +22:40:32 + + +waiting on router queue for slot.... +22:40:32 ============================================================================ +22:40:32 Slot Id : <177> +22:40:32 Transaction Type : REQUEST +22:40:32 Received From : +22:40:32 ============================================================================ +22:40:32 FNo. Len. Field Value +22:40:32 ============================================================================ +22:40:32 [ 1] [ 4] [0800] +22:40:32 [ 7] [ 10] [0320033940] +22:40:32 [ 11] [ 6] [158830] +22:40:32 [ 70] [ 3] [301] +22:40:32 ============================================================================ +22:40:32 + + +waiting on router queue for slot.... +22:40:32 Sending to : +22:40:32 ============================================================================ +22:40:32 ============================================================================ +22:40:32 Slot Id : <177> +22:40:32 Transaction Type : RESPONSE +22:40:32 Received From : +22:40:32 ============================================================================ +22:40:32 FNo. Len. Field Value +22:40:32 ============================================================================ +22:40:32 [ 1] [ 4] [0810] +22:40:32 [ 7] [ 10] [0320033940] +22:40:32 [ 11] [ 6] [158830] +22:40:32 [ 39] [ 2] [00] +22:40:32 [ 70] [ 3] [301] +22:40:32 ============================================================================ +22:40:32 Calculate Source COMM Id = 2 +22:40:32 ============================================================================ +22:40:32 + + +waiting on router queue for slot.... +22:40:43 ============================================================================ +22:40:43 Slot Id : <233> +22:40:43 Transaction Type : REQUEST +22:40:43 Received From : +22:40:43 ============================================================================ +22:40:43 FNo. Len. Field Value +22:40:43 ============================================================================ +22:40:43 [ 1] [ 4] [0800] +22:40:43 [ 7] [ 10] [0320033952] +22:40:43 [ 11] [ 6] [158831] +22:40:43 [ 70] [ 3] [301] +22:40:43 ============================================================================ +22:40:43 + + +waiting on router queue for slot.... +22:40:43 Sending to : +22:40:43 ============================================================================ +22:40:43 ============================================================================ +22:40:43 Slot Id : <233> +22:40:43 Transaction Type : RESPONSE +22:40:43 Received From : +22:40:43 ============================================================================ +22:40:43 FNo. Len. Field Value +22:40:43 ============================================================================ +22:40:43 [ 1] [ 4] [0810] +22:40:43 [ 7] [ 10] [0320033952] +22:40:43 [ 11] [ 6] [158831] +22:40:43 [ 39] [ 2] [00] +22:40:43 [ 70] [ 3] [301] +22:40:43 ============================================================================ +22:40:43 Calculate Source COMM Id = 2 +22:40:43 ============================================================================ +22:40:43 + + +waiting on router queue for slot.... +22:40:54 ============================================================================ +22:40:54 Slot Id : <237> +22:40:54 Transaction Type : REQUEST +22:40:54 Received From : +22:40:54 ============================================================================ +22:40:54 FNo. Len. Field Value +22:40:54 ============================================================================ +22:40:54 [ 1] [ 4] [0800] +22:40:54 [ 7] [ 10] [0320034002] +22:40:54 [ 11] [ 6] [158832] +22:40:54 [ 70] [ 3] [301] +22:40:54 ============================================================================ +22:40:54 + + +waiting on router queue for slot.... +22:40:54 Sending to : +22:40:54 ============================================================================ +22:40:54 ============================================================================ +22:40:54 Slot Id : <237> +22:40:54 Transaction Type : RESPONSE +22:40:54 Received From : +22:40:54 ============================================================================ +22:40:54 FNo. Len. Field Value +22:40:54 ============================================================================ +22:40:54 [ 1] [ 4] [0810] +22:40:54 [ 7] [ 10] [0320034002] +22:40:54 [ 11] [ 6] [158832] +22:40:54 [ 39] [ 2] [00] +22:40:54 [ 70] [ 3] [301] +22:40:54 ============================================================================ +22:40:54 Calculate Source COMM Id = 2 +22:40:54 ============================================================================ +22:40:54 + + +waiting on router queue for slot.... +22:40:55 ============================================================================ +22:40:55 Slot Id : <260> +22:40:55 Transaction Type : REQUEST +22:40:55 Received From : +22:40:55 ============================================================================ +22:40:55 FNo. Len. Field Value +22:40:55 ============================================================================ +22:40:55 [ 1] [ 4] [0800] +22:40:55 [ 7] [ 10] [0321055245] +22:40:55 [ 11] [ 6] [225245] +22:40:55 [ 37] [ 12] [57922225245] +22:40:55 [ 70] [ 3] [301] +22:40:55 ============================================================================ +22:40:55 + + +waiting on router queue for slot.... +22:40:55 Sending to : +22:40:55 ============================================================================ +22:40:55 ============================================================================ +22:40:55 Slot Id : <260> +22:40:55 Transaction Type : RESPONSE +22:40:55 Received From : +22:40:55 ============================================================================ +22:40:55 FNo. Len. Field Value +22:40:55 ============================================================================ +22:40:55 [ 1] [ 4] [0810] +22:40:55 [ 7] [ 10] [0321055245] +22:40:55 [ 11] [ 6] [225245] +22:40:55 [ 37] [ 12] [579222252450] +22:40:55 [ 39] [ 2] [00] +22:40:55 [ 70] [ 3] [810] +22:40:55 ============================================================================ +22:40:55 Calculate Source COMM Id = 6 +22:40:55 ============================================================================ +22:40:55 + + +waiting on router queue for slot.... +22:41:05 ============================================================================ +22:41:05 Slot Id : <253> +22:41:05 Transaction Type : REQUEST +22:41:05 Received From : +22:41:05 ============================================================================ +22:41:05 FNo. Len. Field Value +22:41:05 ============================================================================ +22:41:05 [ 1] [ 4] [0800] +22:41:05 [ 7] [ 10] [0320034013] +22:41:05 [ 11] [ 6] [158833] +22:41:05 [ 70] [ 3] [301] +22:41:05 ============================================================================ +22:41:05 + + +waiting on router queue for slot.... +22:41:05 Sending to : +22:41:05 ============================================================================ +22:41:05 ============================================================================ +22:41:05 Slot Id : <253> +22:41:05 Transaction Type : RESPONSE +22:41:05 Received From : +22:41:05 ============================================================================ +22:41:05 FNo. Len. Field Value +22:41:05 ============================================================================ +22:41:05 [ 1] [ 4] [0810] +22:41:05 [ 7] [ 10] [0320034013] +22:41:05 [ 11] [ 6] [158833] +22:41:05 [ 39] [ 2] [00] +22:41:05 [ 70] [ 3] [301] +22:41:05 ============================================================================ +22:41:05 Calculate Source COMM Id = 2 +22:41:05 ============================================================================ +22:41:05 + + +waiting on router queue for slot.... +22:41:16 ============================================================================ +22:41:16 Slot Id : <234> +22:41:16 Transaction Type : REQUEST +22:41:16 Received From : +22:41:16 ============================================================================ +22:41:16 FNo. Len. Field Value +22:41:16 ============================================================================ +22:41:16 [ 1] [ 4] [0800] +22:41:16 [ 7] [ 10] [0320034024] +22:41:16 [ 11] [ 6] [158834] +22:41:16 [ 70] [ 3] [301] +22:41:16 ============================================================================ +22:41:16 + + +waiting on router queue for slot.... +22:41:16 Sending to : +22:41:16 ============================================================================ +22:41:16 ============================================================================ +22:41:16 Slot Id : <234> +22:41:16 Transaction Type : RESPONSE +22:41:16 Received From : +22:41:16 ============================================================================ +22:41:16 FNo. Len. Field Value +22:41:16 ============================================================================ +22:41:16 [ 1] [ 4] [0810] +22:41:16 [ 7] [ 10] [0320034024] +22:41:16 [ 11] [ 6] [158834] +22:41:16 [ 39] [ 2] [00] +22:41:16 [ 70] [ 3] [301] +22:41:16 ============================================================================ +22:41:16 Calculate Source COMM Id = 2 +22:41:16 ============================================================================ +22:41:16 + + +waiting on router queue for slot.... +22:41:21 ============================================================================ +22:41:21 Slot Id : <238> +22:41:21 Transaction Type : REQUEST +22:41:21 Received From : +22:41:21 ============================================================================ +22:41:21 FNo. Len. Field Value +22:41:21 ============================================================================ +22:41:21 [ 1] [ 4] [0800] +22:41:21 [ 7] [ 10] [0320153912] +22:41:21 [ 11] [ 6] [010750] +22:41:21 [ 37] [ 12] [57922010750] +22:41:21 [ 70] [ 3] [301] +22:41:21 ============================================================================ +22:41:21 + + +waiting on router queue for slot.... +22:41:21 Sending to : +22:41:21 ============================================================================ +22:41:21 ============================================================================ +22:41:21 Slot Id : <238> +22:41:21 Transaction Type : RESPONSE +22:41:21 Received From : +22:41:21 ============================================================================ +22:41:21 FNo. Len. Field Value +22:41:21 ============================================================================ +22:41:21 [ 1] [ 4] [0810] +22:41:21 [ 7] [ 10] [0320153912] +22:41:21 [ 11] [ 6] [010750] +22:41:21 [ 37] [ 12] [579220107500] +22:41:21 [ 39] [ 2] [00] +22:41:21 [ 70] [ 3] [810] +22:41:21 ============================================================================ +22:41:21 Calculate Source COMM Id = 4 +22:41:21 ============================================================================ +22:41:21 + + +waiting on router queue for slot.... +22:41:32 ============================================================================ +22:41:32 Slot Id : <200> +22:41:32 Transaction Type : REQUEST +22:41:32 Received From : +22:41:32 ============================================================================ +22:41:32 FNo. Len. Field Value +22:41:32 ============================================================================ +22:41:32 [ 1] [ 4] [0800] +22:41:32 [ 7] [ 10] [0320034040] +22:41:32 [ 11] [ 6] [158835] +22:41:32 [ 70] [ 3] [301] +22:41:32 ============================================================================ +22:41:32 + + +waiting on router queue for slot.... +22:41:32 Sending to : +22:41:32 ============================================================================ +22:41:32 ============================================================================ +22:41:32 Slot Id : <200> +22:41:32 Transaction Type : RESPONSE +22:41:32 Received From : +22:41:32 ============================================================================ +22:41:32 FNo. Len. Field Value +22:41:32 ============================================================================ +22:41:32 [ 1] [ 4] [0810] +22:41:32 [ 7] [ 10] [0320034040] +22:41:32 [ 11] [ 6] [158835] +22:41:32 [ 39] [ 2] [00] +22:41:32 [ 70] [ 3] [301] +22:41:32 ============================================================================ +22:41:32 Calculate Source COMM Id = 2 +22:41:32 ============================================================================ +22:41:32 + + +waiting on router queue for slot.... +22:41:34 ============================================================================ +22:41:34 Slot Id : <216> +22:41:34 Transaction Type : REQUEST +22:41:34 Received From : +22:41:34 ============================================================================ +22:41:34 FNo. Len. Field Value +22:41:34 ============================================================================ +22:41:34 [ 1] [ 4] [0800] +22:41:34 [ 2] [ 5] [02531] +22:41:34 [ 3] [ 6] [579228] +22:41:34 [ 7] [ 10] [0320154134] +22:41:34 [ 11] [ 6] [807729] +22:41:34 [ 15] [ 10] [0320154134] +22:41:34 [ 37] [ 11] [57922807729] +22:41:34 [ 70] [ 3] [001] +22:41:34 ============================================================================ +22:41:34 + + +waiting on router queue for slot.... +22:41:34 ============================================================================ +22:41:34 Slot Id : <216> +22:41:34 Transaction Type : RESPONSE +22:41:34 Received From : +22:41:34 ============================================================================ +22:41:34 FNo. Len. Field Value +22:41:34 ============================================================================ +22:41:34 [ 1] [ 4] [0810] +22:41:34 [ 7] [ 10] [0320154134] +22:41:34 [ 11] [ 6] [807729] +22:41:34 [ 15] [ 4] [0320] +22:41:34 [ 37] [ 12] [57922807729] +22:41:34 [ 39] [ 2] [00] +22:41:34 [ 70] [ 3] [001] +22:41:34 ============================================================================ +22:41:34 Sending to : +22:41:34 ============================================================================ +22:41:34 + + +waiting on router queue for slot.... +22:41:43 ============================================================================ +22:41:43 Slot Id : <259> +22:41:43 Transaction Type : REQUEST +22:41:43 Received From : +22:41:43 ============================================================================ +22:41:43 FNo. Len. Field Value +22:41:43 ============================================================================ +22:41:43 [ 1] [ 4] [0800] +22:41:43 [ 7] [ 10] [0320034051] +22:41:43 [ 11] [ 6] [158836] +22:41:43 [ 70] [ 3] [301] +22:41:43 ============================================================================ +22:41:43 + + +waiting on router queue for slot.... +22:41:43 Sending to : +22:41:43 ============================================================================ +22:41:43 ============================================================================ +22:41:43 Slot Id : <259> +22:41:43 Transaction Type : RESPONSE +22:41:43 Received From : +22:41:43 ============================================================================ +22:41:43 FNo. Len. Field Value +22:41:43 ============================================================================ +22:41:43 [ 1] [ 4] [0810] +22:41:43 [ 7] [ 10] [0320034051] +22:41:43 [ 11] [ 6] [158836] +22:41:43 [ 39] [ 2] [00] +22:41:43 [ 70] [ 3] [301] +22:41:43 ============================================================================ +22:41:43 Calculate Source COMM Id = 2 +22:41:43 ============================================================================ +22:41:43 + + +waiting on router queue for slot.... +22:41:54 ============================================================================ +22:41:54 Slot Id : <210> +22:41:54 Transaction Type : REQUEST +22:41:54 Received From : +22:41:54 ============================================================================ +22:41:54 FNo. Len. Field Value +22:41:54 ============================================================================ +22:41:54 [ 1] [ 4] [0800] +22:41:54 [ 7] [ 10] [0320034102] +22:41:54 [ 11] [ 6] [158837] +22:41:54 [ 70] [ 3] [301] +22:41:54 ============================================================================ +22:41:54 + + +waiting on router queue for slot.... +22:41:54 Sending to : +22:41:54 ============================================================================ +22:41:54 ============================================================================ +22:41:54 Slot Id : <210> +22:41:54 Transaction Type : RESPONSE +22:41:54 Received From : +22:41:54 ============================================================================ +22:41:54 FNo. Len. Field Value +22:41:54 ============================================================================ +22:41:54 [ 1] [ 4] [0810] +22:41:54 [ 7] [ 10] [0320034102] +22:41:54 [ 11] [ 6] [158837] +22:41:54 [ 39] [ 2] [00] +22:41:54 [ 70] [ 3] [301] +22:41:54 ============================================================================ +22:41:54 Calculate Source COMM Id = 2 +22:41:54 ============================================================================ +22:41:54 + + +waiting on router queue for slot.... +22:42:00 ============================================================================ +22:42:00 Slot Id : <249> +22:42:00 Transaction Type : REQUEST +22:42:00 Received From : +22:42:00 ============================================================================ +22:42:00 FNo. Len. Field Value +22:42:00 ============================================================================ +22:42:00 [ 1] [ 4] [0800] +22:42:00 [ 7] [ 10] [0321055350] +22:42:00 [ 11] [ 6] [225350] +22:42:00 [ 37] [ 12] [57922225350] +22:42:00 [ 70] [ 3] [301] +22:42:00 ============================================================================ +22:42:00 + + +waiting on router queue for slot.... +22:42:00 Sending to : +22:42:00 ============================================================================ +22:42:00 ============================================================================ +22:42:00 Slot Id : <249> +22:42:00 Transaction Type : RESPONSE +22:42:00 Received From : +22:42:00 ============================================================================ +22:42:00 FNo. Len. Field Value +22:42:00 ============================================================================ +22:42:00 [ 1] [ 4] [0810] +22:42:00 [ 7] [ 10] [0321055350] +22:42:00 [ 11] [ 6] [225350] +22:42:00 [ 37] [ 12] [579222253500] +22:42:00 [ 39] [ 2] [00] +22:42:00 [ 70] [ 3] [810] +22:42:00 ============================================================================ +22:42:00 Calculate Source COMM Id = 6 +22:42:00 ============================================================================ +22:42:00 + + +waiting on router queue for slot.... +22:42:05 ============================================================================ +22:42:05 Slot Id : <263> +22:42:05 Transaction Type : REQUEST +22:42:05 Received From : +22:42:05 ============================================================================ +22:42:05 FNo. Len. Field Value +22:42:05 ============================================================================ +22:42:05 [ 1] [ 4] [0800] +22:42:05 [ 7] [ 10] [0320034113] +22:42:05 [ 11] [ 6] [158838] +22:42:05 [ 70] [ 3] [301] +22:42:05 ============================================================================ +22:42:05 + + +waiting on router queue for slot.... +22:42:05 Sending to : +22:42:05 ============================================================================ +22:42:05 ============================================================================ +22:42:05 Slot Id : <263> +22:42:05 Transaction Type : RESPONSE +22:42:05 Received From : +22:42:05 ============================================================================ +22:42:05 FNo. Len. Field Value +22:42:05 ============================================================================ +22:42:05 [ 1] [ 4] [0810] +22:42:05 [ 7] [ 10] [0320034113] +22:42:05 [ 11] [ 6] [158838] +22:42:05 [ 39] [ 2] [00] +22:42:05 [ 70] [ 3] [301] +22:42:05 ============================================================================ +22:42:05 Calculate Source COMM Id = 2 +22:42:05 ============================================================================ +22:42:05 + + +waiting on router queue for slot.... +22:42:20 ============================================================================ +22:42:20 Slot Id : <261> +22:42:20 Transaction Type : REQUEST +22:42:20 Received From : +22:42:20 ============================================================================ +22:42:20 FNo. Len. Field Value +22:42:20 ============================================================================ +22:42:20 [ 1] [ 4] [0800] +22:42:20 [ 7] [ 10] [0320034128] +22:42:20 [ 11] [ 6] [158839] +22:42:20 [ 70] [ 3] [301] +22:42:20 ============================================================================ +22:42:20 + + +waiting on router queue for slot.... +22:42:20 Sending to : +22:42:20 ============================================================================ +22:42:20 ============================================================================ +22:42:20 Slot Id : <261> +22:42:20 Transaction Type : RESPONSE +22:42:20 Received From : +22:42:20 ============================================================================ +22:42:20 FNo. Len. Field Value +22:42:20 ============================================================================ +22:42:20 [ 1] [ 4] [0810] +22:42:20 [ 7] [ 10] [0320034128] +22:42:20 [ 11] [ 6] [158839] +22:42:20 [ 39] [ 2] [00] +22:42:20 [ 70] [ 3] [301] +22:42:20 ============================================================================ +22:42:20 Calculate Source COMM Id = 2 +22:42:20 ============================================================================ +22:42:20 + + +waiting on router queue for slot.... +22:42:31 ============================================================================ +22:42:31 Slot Id : <225> +22:42:31 Transaction Type : REQUEST +22:42:31 Received From : +22:42:31 ============================================================================ +22:42:31 FNo. Len. Field Value +22:42:31 ============================================================================ +22:42:31 [ 1] [ 4] [0800] +22:42:31 [ 7] [ 10] [0320034139] +22:42:31 [ 11] [ 6] [158840] +22:42:31 [ 70] [ 3] [301] +22:42:31 ============================================================================ +22:42:31 + + +waiting on router queue for slot.... +22:42:31 Sending to : +22:42:31 ============================================================================ +22:42:31 ============================================================================ +22:42:31 Slot Id : <225> +22:42:31 Transaction Type : RESPONSE +22:42:31 Received From : +22:42:31 ============================================================================ +22:42:31 FNo. Len. Field Value +22:42:31 ============================================================================ +22:42:31 [ 1] [ 4] [0810] +22:42:31 [ 7] [ 10] [0320034139] +22:42:31 [ 11] [ 6] [158840] +22:42:31 [ 39] [ 2] [00] +22:42:31 [ 70] [ 3] [301] +22:42:31 ============================================================================ +22:42:31 Calculate Source COMM Id = 2 +22:42:31 ============================================================================ +22:42:31 + + +waiting on router queue for slot.... +22:42:36 ============================================================================ +22:42:36 Slot Id : <269> +22:42:36 Transaction Type : REQUEST +22:42:36 Received From : +22:42:36 ============================================================================ +22:42:36 FNo. Len. Field Value +22:42:36 ============================================================================ +22:42:36 [ 1] [ 4] [0800] +22:42:36 [ 2] [ 5] [02531] +22:42:36 [ 3] [ 6] [579228] +22:42:36 [ 7] [ 10] [0320154236] +22:42:36 [ 11] [ 6] [807730] +22:42:36 [ 15] [ 10] [0320154236] +22:42:36 [ 37] [ 11] [57922807730] +22:42:36 [ 70] [ 3] [001] +22:42:36 ============================================================================ +22:42:36 + + +waiting on router queue for slot.... +22:42:36 ============================================================================ +22:42:36 Slot Id : <269> +22:42:36 Transaction Type : RESPONSE +22:42:36 Received From : +22:42:36 ============================================================================ +22:42:36 FNo. Len. Field Value +22:42:36 ============================================================================ +22:42:36 [ 1] [ 4] [0810] +22:42:36 [ 7] [ 10] [0320154236] +22:42:36 [ 11] [ 6] [807730] +22:42:36 [ 15] [ 4] [0320] +22:42:36 [ 37] [ 12] [57922807730] +22:42:36 [ 39] [ 2] [00] +22:42:36 [ 70] [ 3] [001] +22:42:36 ============================================================================ +22:42:36 Sending to : +22:42:36 ============================================================================ +22:42:36 + + +waiting on router queue for slot.... +22:42:42 ============================================================================ +22:42:42 Slot Id : <199> +22:42:42 Transaction Type : REQUEST +22:42:42 Received From : +22:42:42 ============================================================================ +22:42:42 FNo. Len. Field Value +22:42:42 ============================================================================ +22:42:42 [ 1] [ 4] [0800] +22:42:42 [ 7] [ 10] [0320034151] +22:42:42 [ 11] [ 6] [158841] +22:42:42 [ 70] [ 3] [301] +22:42:42 ============================================================================ +22:42:42 + + +waiting on router queue for slot.... +22:42:42 Sending to : +22:42:42 ============================================================================ +22:42:42 ============================================================================ +22:42:42 Slot Id : <199> +22:42:42 Transaction Type : RESPONSE +22:42:42 Received From : +22:42:42 ============================================================================ +22:42:42 FNo. Len. Field Value +22:42:42 ============================================================================ +22:42:42 [ 1] [ 4] [0810] +22:42:42 [ 7] [ 10] [0320034151] +22:42:42 [ 11] [ 6] [158841] +22:42:42 [ 39] [ 2] [00] +22:42:42 [ 70] [ 3] [301] +22:42:42 ============================================================================ +22:42:42 Calculate Source COMM Id = 2 +22:42:42 ============================================================================ +22:42:42 + + +waiting on router queue for slot.... +22:42:54 ============================================================================ +22:42:54 Slot Id : <240> +22:42:54 Transaction Type : REQUEST +22:42:54 Received From : +22:42:54 ============================================================================ +22:42:54 FNo. Len. Field Value +22:42:54 ============================================================================ +22:42:54 [ 1] [ 4] [0800] +22:42:54 [ 7] [ 10] [0320034201] +22:42:54 [ 11] [ 6] [158842] +22:42:54 [ 70] [ 3] [301] +22:42:54 ============================================================================ +22:42:54 + + +waiting on router queue for slot.... +22:42:54 Sending to : +22:42:54 ============================================================================ +22:42:54 ============================================================================ +22:42:54 Slot Id : <240> +22:42:54 Transaction Type : RESPONSE +22:42:54 Received From : +22:42:54 ============================================================================ +22:42:54 FNo. Len. Field Value +22:42:54 ============================================================================ +22:42:54 [ 1] [ 4] [0810] +22:42:54 [ 7] [ 10] [0320034201] +22:42:54 [ 11] [ 6] [158842] +22:42:54 [ 39] [ 2] [00] +22:42:54 [ 70] [ 3] [301] +22:42:54 ============================================================================ +22:42:54 Calculate Source COMM Id = 2 +22:42:54 ============================================================================ +22:42:54 + + +waiting on router queue for slot.... +22:43:05 ============================================================================ +22:43:05 Slot Id : <270> +22:43:05 Transaction Type : REQUEST +22:43:05 Received From : +22:43:05 ============================================================================ +22:43:05 FNo. Len. Field Value +22:43:05 ============================================================================ +22:43:05 [ 1] [ 4] [0800] +22:43:05 [ 7] [ 10] [0321055455] +22:43:05 [ 11] [ 6] [225455] +22:43:05 [ 37] [ 12] [57922225455] +22:43:05 [ 70] [ 3] [301] +22:43:05 ============================================================================ +22:43:05 + + +waiting on router queue for slot.... +22:43:05 Sending to : +22:43:05 ============================================================================ +22:43:05 ============================================================================ +22:43:05 Slot Id : <270> +22:43:05 Transaction Type : RESPONSE +22:43:05 Received From : +22:43:05 ============================================================================ +22:43:05 FNo. Len. Field Value +22:43:05 ============================================================================ +22:43:05 [ 1] [ 4] [0810] +22:43:05 [ 7] [ 10] [0321055455] +22:43:05 [ 11] [ 6] [225455] +22:43:05 [ 37] [ 12] [579222254550] +22:43:05 [ 39] [ 2] [00] +22:43:05 [ 70] [ 3] [810] +22:43:05 ============================================================================ +22:43:05 Calculate Source COMM Id = 6 +22:43:05 ============================================================================ +22:43:05 + + +waiting on router queue for slot.... +22:43:09 ============================================================================ +22:43:09 Slot Id : <275> +22:43:09 Transaction Type : REQUEST +22:43:09 Received From : +22:43:09 ============================================================================ +22:43:09 FNo. Len. Field Value +22:43:09 ============================================================================ +22:43:09 [ 1] [ 4] [0800] +22:43:09 [ 7] [ 10] [0320034217] +22:43:09 [ 11] [ 6] [158843] +22:43:09 [ 70] [ 3] [301] +22:43:09 ============================================================================ +22:43:09 + + +waiting on router queue for slot.... +22:43:09 Sending to : +22:43:09 ============================================================================ +22:43:09 ============================================================================ +22:43:09 Slot Id : <275> +22:43:09 Transaction Type : RESPONSE +22:43:09 Received From : +22:43:09 ============================================================================ +22:43:09 FNo. Len. Field Value +22:43:09 ============================================================================ +22:43:09 [ 1] [ 4] [0810] +22:43:09 [ 7] [ 10] [0320034217] +22:43:09 [ 11] [ 6] [158843] +22:43:09 [ 39] [ 2] [00] +22:43:09 [ 70] [ 3] [301] +22:43:09 ============================================================================ +22:43:09 Calculate Source COMM Id = 2 +22:43:09 ============================================================================ +22:43:09 + + +waiting on router queue for slot.... +22:43:20 ============================================================================ +22:43:20 Slot Id : <197> +22:43:20 Transaction Type : REQUEST +22:43:20 Received From : +22:43:20 ============================================================================ +22:43:20 FNo. Len. Field Value +22:43:20 ============================================================================ +22:43:20 [ 1] [ 4] [0800] +22:43:20 [ 7] [ 10] [0320034228] +22:43:20 [ 11] [ 6] [158844] +22:43:20 [ 70] [ 3] [301] +22:43:20 ============================================================================ +22:43:20 + + +waiting on router queue for slot.... +22:43:20 Sending to : +22:43:20 ============================================================================ +22:43:20 ============================================================================ +22:43:20 Slot Id : <197> +22:43:20 Transaction Type : RESPONSE +22:43:20 Received From : +22:43:20 ============================================================================ +22:43:20 FNo. Len. Field Value +22:43:20 ============================================================================ +22:43:20 [ 1] [ 4] [0810] +22:43:20 [ 7] [ 10] [0320034228] +22:43:20 [ 11] [ 6] [158844] +22:43:20 [ 39] [ 2] [00] +22:43:20 [ 70] [ 3] [301] +22:43:20 ============================================================================ +22:43:20 Calculate Source COMM Id = 2 +22:43:20 ============================================================================ +22:43:20 + + +waiting on router queue for slot.... +22:43:30 ============================================================================ +22:43:30 Slot Id : <265> +22:43:30 Transaction Type : REQUEST +22:43:30 Received From : +22:43:30 ============================================================================ +22:43:30 FNo. Len. Field Value +22:43:30 ============================================================================ +22:43:30 [ 1] [ 4] [0800] +22:43:30 [ 7] [ 10] [0320034239] +22:43:30 [ 11] [ 6] [158845] +22:43:30 [ 70] [ 3] [301] +22:43:30 ============================================================================ +22:43:30 + + +waiting on router queue for slot.... +22:43:30 Sending to : +22:43:30 ============================================================================ +22:43:30 ============================================================================ +22:43:30 Slot Id : <265> +22:43:30 Transaction Type : RESPONSE +22:43:30 Received From : +22:43:30 ============================================================================ +22:43:30 FNo. Len. Field Value +22:43:30 ============================================================================ +22:43:30 [ 1] [ 4] [0810] +22:43:30 [ 7] [ 10] [0320034239] +22:43:30 [ 11] [ 6] [158845] +22:43:30 [ 39] [ 2] [00] +22:43:30 [ 70] [ 3] [301] +22:43:30 ============================================================================ +22:43:30 Calculate Source COMM Id = 2 +22:43:30 ============================================================================ +22:43:30 + + +waiting on router queue for slot.... +22:43:38 ============================================================================ +22:43:38 Slot Id : <218> +22:43:38 Transaction Type : REQUEST +22:43:38 Received From : +22:43:38 ============================================================================ +22:43:38 FNo. Len. Field Value +22:43:38 ============================================================================ +22:43:38 [ 1] [ 4] [0800] +22:43:38 [ 2] [ 5] [02531] +22:43:38 [ 3] [ 6] [579228] +22:43:38 [ 7] [ 10] [0320154338] +22:43:38 [ 11] [ 6] [807731] +22:43:38 [ 15] [ 10] [0320154338] +22:43:38 [ 37] [ 11] [57922807731] +22:43:38 [ 70] [ 3] [001] +22:43:38 ============================================================================ +22:43:38 + + +waiting on router queue for slot.... +22:43:38 ============================================================================ +22:43:38 Slot Id : <218> +22:43:38 Transaction Type : RESPONSE +22:43:38 Received From : +22:43:38 ============================================================================ +22:43:38 FNo. Len. Field Value +22:43:38 ============================================================================ +22:43:38 [ 1] [ 4] [0810] +22:43:38 [ 7] [ 10] [0320154338] +22:43:38 [ 11] [ 6] [807731] +22:43:38 [ 15] [ 4] [0320] +22:43:38 [ 37] [ 12] [57922807731] +22:43:38 [ 39] [ 2] [00] +22:43:38 [ 70] [ 3] [001] +22:43:38 ============================================================================ +22:43:38 Sending to : +22:43:38 ============================================================================ +22:43:38 + + +waiting on router queue for slot.... +22:43:41 ============================================================================ +22:43:41 Slot Id : <247> +22:43:41 Transaction Type : REQUEST +22:43:41 Received From : +22:43:41 ============================================================================ +22:43:41 FNo. Len. Field Value +22:43:41 ============================================================================ +22:43:41 [ 1] [ 4] [0800] +22:43:41 [ 7] [ 10] [0320034249] +22:43:41 [ 11] [ 6] [158846] +22:43:41 [ 70] [ 3] [301] +22:43:41 ============================================================================ +22:43:41 + + +waiting on router queue for slot.... +22:43:41 Sending to : +22:43:41 ============================================================================ +22:43:41 ============================================================================ +22:43:41 Slot Id : <247> +22:43:41 Transaction Type : RESPONSE +22:43:41 Received From : +22:43:41 ============================================================================ +22:43:41 FNo. Len. Field Value +22:43:41 ============================================================================ +22:43:41 [ 1] [ 4] [0810] +22:43:41 [ 7] [ 10] [0320034249] +22:43:41 [ 11] [ 6] [158846] +22:43:41 [ 39] [ 2] [00] +22:43:41 [ 70] [ 3] [301] +22:43:41 ============================================================================ +22:43:41 Calculate Source COMM Id = 2 +22:43:41 ============================================================================ +22:43:41 + + +waiting on router queue for slot.... +22:43:44 ============================================================================ +22:43:44 Slot Id : <256> +22:43:44 Transaction Type : REQUEST +22:43:44 Received From : +22:43:44 ============================================================================ +22:43:44 FNo. Len. Field Value +22:43:44 ============================================================================ +22:43:44 [ 1] [ 4] [0800] +22:43:44 [ 7] [ 10] [0320224331] +22:43:44 [ 11] [ 6] [047722] +22:43:44 [ 37] [ 12] [507922047722] +22:43:44 [ 70] [ 3] [ ] +22:43:44 ============================================================================ +22:43:44 + + +waiting on router queue for slot.... +22:43:44 Sending to : +22:43:44 ============================================================================ +22:43:44 ============================================================================ +22:43:44 Slot Id : <256> +22:43:44 Transaction Type : RESPONSE +22:43:44 Received From : +22:43:44 ============================================================================ +22:43:44 FNo. Len. Field Value +22:43:44 ============================================================================ +22:43:44 [ 1] [ 4] [0810] +22:43:44 [ 7] [ 10] [0320224331] +22:43:44 [ 11] [ 6] [047722] +22:43:44 [ 37] [ 12] [507922047722] +22:43:44 [ 39] [ 2] [91] +22:43:44 [ 70] [ 3] [ ] +22:43:44 ============================================================================ +22:43:44 Calculate Source COMM Id = 3 +22:43:44 ============================================================================ +22:43:44 + + +waiting on router queue for slot.... +22:43:52 ============================================================================ +22:43:52 Slot Id : <274> +22:43:52 Transaction Type : REQUEST +22:43:52 Received From : +22:43:52 ============================================================================ +22:43:52 FNo. Len. Field Value +22:43:52 ============================================================================ +22:43:52 [ 1] [ 4] [0800] +22:43:52 [ 7] [ 10] [0320034300] +22:43:52 [ 11] [ 6] [158847] +22:43:52 [ 70] [ 3] [301] +22:43:52 ============================================================================ +22:43:52 + + +waiting on router queue for slot.... +22:43:52 Sending to : +22:43:52 ============================================================================ +22:43:52 ============================================================================ +22:43:52 Slot Id : <274> +22:43:52 Transaction Type : RESPONSE +22:43:52 Received From : +22:43:52 ============================================================================ +22:43:52 FNo. Len. Field Value +22:43:52 ============================================================================ +22:43:52 [ 1] [ 4] [0810] +22:43:52 [ 7] [ 10] [0320034300] +22:43:52 [ 11] [ 6] [158847] +22:43:52 [ 39] [ 2] [00] +22:43:52 [ 70] [ 3] [301] +22:43:52 ============================================================================ +22:43:52 Calculate Source COMM Id = 2 +22:43:52 ============================================================================ +22:43:52 + + +waiting on router queue for slot.... +22:44:03 ============================================================================ +22:44:03 Slot Id : <264> +22:44:03 Transaction Type : REQUEST +22:44:03 Received From : +22:44:03 ============================================================================ +22:44:03 FNo. Len. Field Value +22:44:03 ============================================================================ +22:44:03 [ 1] [ 4] [0800] +22:44:03 [ 7] [ 10] [0320034311] +22:44:03 [ 11] [ 6] [158848] +22:44:03 [ 70] [ 3] [301] +22:44:03 ============================================================================ +22:44:03 + + +waiting on router queue for slot.... +22:44:03 Sending to : +22:44:03 ============================================================================ +22:44:03 ============================================================================ +22:44:03 Slot Id : <264> +22:44:03 Transaction Type : RESPONSE +22:44:03 Received From : +22:44:03 ============================================================================ +22:44:03 FNo. Len. Field Value +22:44:03 ============================================================================ +22:44:03 [ 1] [ 4] [0810] +22:44:03 [ 7] [ 10] [0320034311] +22:44:03 [ 11] [ 6] [158848] +22:44:03 [ 39] [ 2] [00] +22:44:03 [ 70] [ 3] [301] +22:44:03 ============================================================================ +22:44:03 Calculate Source COMM Id = 2 +22:44:03 ============================================================================ +22:44:03 + + +waiting on router queue for slot.... +22:44:10 ============================================================================ +22:44:10 Slot Id : <228> +22:44:10 Transaction Type : REQUEST +22:44:10 Received From : +22:44:10 ============================================================================ +22:44:10 FNo. Len. Field Value +22:44:10 ============================================================================ +22:44:10 [ 1] [ 4] [0800] +22:44:10 [ 7] [ 10] [0321055600] +22:44:10 [ 11] [ 6] [225600] +22:44:10 [ 37] [ 12] [57922225600] +22:44:10 [ 70] [ 3] [301] +22:44:10 ============================================================================ +22:44:10 + + +waiting on router queue for slot.... +22:44:10 Sending to : +22:44:10 ============================================================================ +22:44:10 ============================================================================ +22:44:10 Slot Id : <228> +22:44:10 Transaction Type : RESPONSE +22:44:10 Received From : +22:44:10 ============================================================================ +22:44:10 FNo. Len. Field Value +22:44:10 ============================================================================ +22:44:10 [ 1] [ 4] [0810] +22:44:10 [ 7] [ 10] [0321055600] +22:44:10 [ 11] [ 6] [225600] +22:44:10 [ 37] [ 12] [579222256000] +22:44:10 [ 39] [ 2] [00] +22:44:10 [ 70] [ 3] [810] +22:44:10 ============================================================================ +22:44:10 Calculate Source COMM Id = 6 +22:44:10 ============================================================================ +22:44:10 + + +waiting on router queue for slot.... +22:44:14 ============================================================================ +22:44:14 Slot Id : <231> +22:44:14 Transaction Type : REQUEST +22:44:14 Received From : +22:44:14 ============================================================================ +22:44:14 FNo. Len. Field Value +22:44:14 ============================================================================ +22:44:14 [ 1] [ 4] [0800] +22:44:14 [ 7] [ 10] [0320034322] +22:44:14 [ 11] [ 6] [158849] +22:44:14 [ 70] [ 3] [301] +22:44:14 ============================================================================ +22:44:14 + + +waiting on router queue for slot.... +22:44:14 Sending to : +22:44:14 ============================================================================ +22:44:14 ============================================================================ +22:44:14 Slot Id : <231> +22:44:14 Transaction Type : RESPONSE +22:44:14 Received From : +22:44:14 ============================================================================ +22:44:14 FNo. Len. Field Value +22:44:14 ============================================================================ +22:44:14 [ 1] [ 4] [0810] +22:44:14 [ 7] [ 10] [0320034322] +22:44:14 [ 11] [ 6] [158849] +22:44:14 [ 39] [ 2] [00] +22:44:14 [ 70] [ 3] [301] +22:44:14 ============================================================================ +22:44:14 Calculate Source COMM Id = 2 +22:44:14 ============================================================================ +22:44:14 + + +waiting on router queue for slot.... +22:44:24 ============================================================================ +22:44:24 Slot Id : <220> +22:44:24 Transaction Type : REQUEST +22:44:24 Received From : +22:44:24 ============================================================================ +22:44:24 FNo. Len. Field Value +22:44:24 ============================================================================ +22:44:24 [ 1] [ 4] [0800] +22:44:24 [ 7] [ 10] [0320034333] +22:44:24 [ 11] [ 6] [158850] +22:44:24 [ 70] [ 3] [301] +22:44:24 ============================================================================ +22:44:24 + + +waiting on router queue for slot.... +22:44:24 Sending to : +22:44:24 ============================================================================ +22:44:24 ============================================================================ +22:44:24 Slot Id : <220> +22:44:24 Transaction Type : RESPONSE +22:44:24 Received From : +22:44:24 ============================================================================ +22:44:24 FNo. Len. Field Value +22:44:24 ============================================================================ +22:44:24 [ 1] [ 4] [0810] +22:44:24 [ 7] [ 10] [0320034333] +22:44:24 [ 11] [ 6] [158850] +22:44:24 [ 39] [ 2] [00] +22:44:24 [ 70] [ 3] [301] +22:44:24 ============================================================================ +22:44:24 Calculate Source COMM Id = 2 +22:44:24 ============================================================================ +22:44:24 + + +waiting on router queue for slot.... +22:44:35 ============================================================================ +22:44:35 Slot Id : <273> +22:44:35 Transaction Type : REQUEST +22:44:35 Received From : +22:44:35 ============================================================================ +22:44:35 FNo. Len. Field Value +22:44:35 ============================================================================ +22:44:35 [ 1] [ 4] [0800] +22:44:35 [ 7] [ 10] [0320034343] +22:44:35 [ 11] [ 6] [158851] +22:44:35 [ 70] [ 3] [301] +22:44:35 ============================================================================ +22:44:35 + + +waiting on router queue for slot.... +22:44:35 Sending to : +22:44:35 ============================================================================ +22:44:35 ============================================================================ +22:44:35 Slot Id : <273> +22:44:35 Transaction Type : RESPONSE +22:44:35 Received From : +22:44:35 ============================================================================ +22:44:35 FNo. Len. Field Value +22:44:35 ============================================================================ +22:44:35 [ 1] [ 4] [0810] +22:44:35 [ 7] [ 10] [0320034343] +22:44:35 [ 11] [ 6] [158851] +22:44:35 [ 39] [ 2] [00] +22:44:35 [ 70] [ 3] [301] +22:44:35 ============================================================================ +22:44:35 Calculate Source COMM Id = 2 +22:44:35 ============================================================================ +22:44:35 + + +waiting on router queue for slot.... +22:44:40 ============================================================================ +22:44:40 Slot Id : <279> +22:44:40 Transaction Type : REQUEST +22:44:40 Received From : +22:44:40 ============================================================================ +22:44:40 FNo. Len. Field Value +22:44:40 ============================================================================ +22:44:40 [ 1] [ 4] [0800] +22:44:40 [ 2] [ 5] [02531] +22:44:40 [ 3] [ 6] [579228] +22:44:40 [ 7] [ 10] [0320154440] +22:44:40 [ 11] [ 6] [807732] +22:44:40 [ 15] [ 10] [0320154440] +22:44:40 [ 37] [ 11] [57922807732] +22:44:40 [ 70] [ 3] [001] +22:44:40 ============================================================================ +22:44:40 + + +waiting on router queue for slot.... +22:44:40 ============================================================================ +22:44:40 Slot Id : <279> +22:44:40 Transaction Type : RESPONSE +22:44:40 Received From : +22:44:40 ============================================================================ +22:44:40 FNo. Len. Field Value +22:44:40 ============================================================================ +22:44:40 [ 1] [ 4] [0810] +22:44:40 [ 7] [ 10] [0320154440] +22:44:40 [ 11] [ 6] [807732] +22:44:40 [ 15] [ 4] [0320] +22:44:40 [ 37] [ 12] [57922807732] +22:44:40 [ 39] [ 2] [00] +22:44:40 [ 70] [ 3] [001] +22:44:40 ============================================================================ +22:44:40 Sending to : +22:44:40 ============================================================================ +22:44:40 + + +waiting on router queue for slot.... +22:44:52 ============================================================================ +22:44:52 Slot Id : <239> +22:44:52 Transaction Type : REQUEST +22:44:52 Received From : +22:44:52 ============================================================================ +22:44:52 FNo. Len. Field Value +22:44:52 ============================================================================ +22:44:52 [ 1] [ 4] [0800] +22:44:52 [ 7] [ 10] [0320034400] +22:44:52 [ 11] [ 6] [158852] +22:44:52 [ 70] [ 3] [301] +22:44:52 ============================================================================ +22:44:52 + + +waiting on router queue for slot.... +22:44:52 Sending to : +22:44:52 ============================================================================ +22:44:52 ============================================================================ +22:44:52 Slot Id : <239> +22:44:52 Transaction Type : RESPONSE +22:44:52 Received From : +22:44:52 ============================================================================ +22:44:52 FNo. Len. Field Value +22:44:52 ============================================================================ +22:44:52 [ 1] [ 4] [0810] +22:44:52 [ 7] [ 10] [0320034400] +22:44:52 [ 11] [ 6] [158852] +22:44:52 [ 39] [ 2] [00] +22:44:52 [ 70] [ 3] [301] +22:44:52 ============================================================================ +22:44:52 Calculate Source COMM Id = 2 +22:44:52 ============================================================================ +22:44:52 + + +waiting on router queue for slot.... +22:44:55 ============================================================================ +22:44:55 Slot Id : <252> +22:44:55 Transaction Type : REQUEST +22:44:55 Received From : +22:44:55 ============================================================================ +22:44:55 FNo. Len. Field Value +22:44:55 ============================================================================ +22:44:55 [ 1] [ 4] [0800] +22:44:55 [ 7] [ 10] [0320155242] +22:44:55 [ 11] [ 6] [062828] +22:44:55 [ 37] [ 12] [57922062828] +22:44:55 [ 70] [ 3] [301] +22:44:55 ============================================================================ +22:44:55 + + +waiting on router queue for slot.... +22:44:55 Sending to : +22:44:55 ============================================================================ +22:44:55 ============================================================================ +22:44:55 Slot Id : <252> +22:44:55 Transaction Type : RESPONSE +22:44:55 Received From : +22:44:55 ============================================================================ +22:44:55 FNo. Len. Field Value +22:44:55 ============================================================================ +22:44:55 [ 1] [ 4] [0810] +22:44:55 [ 7] [ 10] [0320155242] +22:44:55 [ 11] [ 6] [062828] +22:44:55 [ 37] [ 12] [579220628280] +22:44:55 [ 39] [ 2] [00] +22:44:55 [ 70] [ 3] [810] +22:44:55 ============================================================================ +22:44:55 Calculate Source COMM Id = 1 +22:44:55 ============================================================================ +22:44:55 + + +waiting on router queue for slot.... +22:45:03 ============================================================================ +22:45:03 Slot Id : <272> +22:45:03 Transaction Type : REQUEST +22:45:03 Received From : +22:45:03 ============================================================================ +22:45:03 FNo. Len. Field Value +22:45:03 ============================================================================ +22:45:03 [ 1] [ 4] [0800] +22:45:03 [ 7] [ 10] [0320034411] +22:45:03 [ 11] [ 6] [158853] +22:45:03 [ 70] [ 3] [301] +22:45:03 ============================================================================ +22:45:03 + + +waiting on router queue for slot.... +22:45:03 Sending to : +22:45:03 ============================================================================ +22:45:03 ============================================================================ +22:45:03 Slot Id : <272> +22:45:03 Transaction Type : RESPONSE +22:45:03 Received From : +22:45:03 ============================================================================ +22:45:03 FNo. Len. Field Value +22:45:03 ============================================================================ +22:45:03 [ 1] [ 4] [0810] +22:45:03 [ 7] [ 10] [0320034411] +22:45:03 [ 11] [ 6] [158853] +22:45:03 [ 39] [ 2] [00] +22:45:03 [ 70] [ 3] [301] +22:45:03 ============================================================================ +22:45:03 Calculate Source COMM Id = 2 +22:45:03 ============================================================================ +22:45:03 + + +waiting on router queue for slot.... +22:45:14 ============================================================================ +22:45:14 Slot Id : <282> +22:45:14 Transaction Type : REQUEST +22:45:14 Received From : +22:45:14 ============================================================================ +22:45:14 FNo. Len. Field Value +22:45:14 ============================================================================ +22:45:14 [ 1] [ 4] [0800] +22:45:14 [ 7] [ 10] [0320034422] +22:45:14 [ 11] [ 6] [158854] +22:45:14 [ 70] [ 3] [301] +22:45:14 ============================================================================ +22:45:14 + + +waiting on router queue for slot.... +22:45:14 Sending to : +22:45:14 ============================================================================ +22:45:14 ============================================================================ +22:45:14 Slot Id : <282> +22:45:14 Transaction Type : RESPONSE +22:45:14 Received From : +22:45:14 ============================================================================ +22:45:14 FNo. Len. Field Value +22:45:14 ============================================================================ +22:45:14 [ 1] [ 4] [0810] +22:45:14 [ 7] [ 10] [0320034422] +22:45:14 [ 11] [ 6] [158854] +22:45:14 [ 39] [ 2] [00] +22:45:14 [ 70] [ 3] [301] +22:45:14 ============================================================================ +22:45:14 Calculate Source COMM Id = 2 +22:45:14 ============================================================================ +22:45:14 + + +waiting on router queue for slot.... +22:45:15 ============================================================================ +22:45:15 Slot Id : <254> +22:45:15 Transaction Type : REQUEST +22:45:15 Received From : +22:45:15 ============================================================================ +22:45:15 FNo. Len. Field Value +22:45:15 ============================================================================ +22:45:15 [ 1] [ 4] [0800] +22:45:15 [ 7] [ 10] [0321055705] +22:45:15 [ 11] [ 6] [225705] +22:45:15 [ 37] [ 12] [57922225705] +22:45:15 [ 70] [ 3] [301] +22:45:15 ============================================================================ +22:45:15 + + +waiting on router queue for slot.... +22:45:15 Sending to : +22:45:15 ============================================================================ +22:45:15 ============================================================================ +22:45:15 Slot Id : <254> +22:45:15 Transaction Type : RESPONSE +22:45:15 Received From : +22:45:15 ============================================================================ +22:45:15 FNo. Len. Field Value +22:45:15 ============================================================================ +22:45:15 [ 1] [ 4] [0810] +22:45:15 [ 7] [ 10] [0321055705] +22:45:15 [ 11] [ 6] [225705] +22:45:15 [ 37] [ 12] [579222257050] +22:45:15 [ 39] [ 2] [00] +22:45:15 [ 70] [ 3] [810] +22:45:15 ============================================================================ +22:45:15 Calculate Source COMM Id = 6 +22:45:15 ============================================================================ +22:45:15 + + +waiting on router queue for slot.... +22:45:25 ============================================================================ +22:45:25 Slot Id : <241> +22:45:25 Transaction Type : REQUEST +22:45:25 Received From : +22:45:25 ============================================================================ +22:45:25 FNo. Len. Field Value +22:45:25 ============================================================================ +22:45:25 [ 1] [ 4] [0800] +22:45:25 [ 7] [ 10] [0320034433] +22:45:25 [ 11] [ 6] [158855] +22:45:25 [ 70] [ 3] [301] +22:45:25 ============================================================================ +22:45:25 + + +waiting on router queue for slot.... +22:45:25 Sending to : +22:45:25 ============================================================================ +22:45:25 ============================================================================ +22:45:25 Slot Id : <241> +22:45:25 Transaction Type : RESPONSE +22:45:25 Received From : +22:45:25 ============================================================================ +22:45:25 FNo. Len. Field Value +22:45:25 ============================================================================ +22:45:25 [ 1] [ 4] [0810] +22:45:25 [ 7] [ 10] [0320034433] +22:45:25 [ 11] [ 6] [158855] +22:45:25 [ 39] [ 2] [00] +22:45:25 [ 70] [ 3] [301] +22:45:25 ============================================================================ +22:45:25 Calculate Source COMM Id = 2 +22:45:25 ============================================================================ +22:45:25 + + +waiting on router queue for slot.... +22:45:36 ============================================================================ +22:45:36 Slot Id : <266> +22:45:36 Transaction Type : REQUEST +22:45:36 Received From : +22:45:36 ============================================================================ +22:45:36 FNo. Len. Field Value +22:45:36 ============================================================================ +22:45:36 [ 1] [ 4] [0800] +22:45:36 [ 7] [ 10] [0320034444] +22:45:36 [ 11] [ 6] [158856] +22:45:36 [ 70] [ 3] [301] +22:45:36 ============================================================================ +22:45:36 + + +waiting on router queue for slot.... +22:45:36 Sending to : +22:45:36 ============================================================================ +22:45:36 ============================================================================ +22:45:36 Slot Id : <266> +22:45:36 Transaction Type : RESPONSE +22:45:36 Received From : +22:45:36 ============================================================================ +22:45:36 FNo. Len. Field Value +22:45:36 ============================================================================ +22:45:36 [ 1] [ 4] [0810] +22:45:36 [ 7] [ 10] [0320034444] +22:45:36 [ 11] [ 6] [158856] +22:45:36 [ 39] [ 2] [00] +22:45:36 [ 70] [ 3] [301] +22:45:36 ============================================================================ +22:45:36 Calculate Source COMM Id = 2 +22:45:36 ============================================================================ +22:45:36 + + +waiting on router queue for slot.... +22:45:42 ============================================================================ +22:45:42 Slot Id : <280> +22:45:42 Transaction Type : REQUEST +22:45:42 Received From : +22:45:42 ============================================================================ +22:45:42 FNo. Len. Field Value +22:45:42 ============================================================================ +22:45:42 [ 1] [ 4] [0800] +22:45:42 [ 2] [ 5] [02531] +22:45:42 [ 3] [ 6] [579228] +22:45:42 [ 7] [ 10] [0320154542] +22:45:42 [ 11] [ 6] [807733] +22:45:42 [ 15] [ 10] [0320154542] +22:45:42 [ 37] [ 11] [57922807733] +22:45:42 [ 70] [ 3] [001] +22:45:42 ============================================================================ +22:45:42 + + +waiting on router queue for slot.... +22:45:42 ============================================================================ +22:45:42 Slot Id : <280> +22:45:42 Transaction Type : RESPONSE +22:45:42 Received From : +22:45:42 ============================================================================ +22:45:42 FNo. Len. Field Value +22:45:42 ============================================================================ +22:45:42 [ 1] [ 4] [0810] +22:45:42 [ 7] [ 10] [0320154542] +22:45:42 [ 11] [ 6] [807733] +22:45:42 [ 15] [ 4] [0320] +22:45:42 [ 37] [ 12] [57922807733] +22:45:42 [ 39] [ 2] [00] +22:45:42 [ 70] [ 3] [001] +22:45:42 ============================================================================ +22:45:42 Sending to : +22:45:42 ============================================================================ +22:45:42 + + +waiting on router queue for slot.... +22:45:46 ============================================================================ +22:45:46 Slot Id : <224> +22:45:46 Transaction Type : REQUEST +22:45:46 Received From : +22:45:46 ============================================================================ +22:45:46 FNo. Len. Field Value +22:45:46 ============================================================================ +22:45:46 [ 1] [ 4] [0800] +22:45:46 [ 7] [ 10] [0320034454] +22:45:46 [ 11] [ 6] [158857] +22:45:46 [ 70] [ 3] [301] +22:45:46 ============================================================================ +22:45:46 + + +waiting on router queue for slot.... +22:45:46 Sending to : +22:45:46 ============================================================================ +22:45:46 ============================================================================ +22:45:46 Slot Id : <224> +22:45:46 Transaction Type : RESPONSE +22:45:46 Received From : +22:45:46 ============================================================================ +22:45:46 FNo. Len. Field Value +22:45:46 ============================================================================ +22:45:46 [ 1] [ 4] [0810] +22:45:46 [ 7] [ 10] [0320034454] +22:45:46 [ 11] [ 6] [158857] +22:45:46 [ 39] [ 2] [00] +22:45:46 [ 70] [ 3] [301] +22:45:46 ============================================================================ +22:45:46 Calculate Source COMM Id = 2 +22:45:46 ============================================================================ +22:45:46 + + +waiting on router queue for slot.... +22:45:57 ============================================================================ +22:45:57 Slot Id : <276> +22:45:57 Transaction Type : REQUEST +22:45:57 Received From : +22:45:57 ============================================================================ +22:45:57 FNo. Len. Field Value +22:45:57 ============================================================================ +22:45:57 [ 1] [ 4] [0800] +22:45:57 [ 7] [ 10] [0320034505] +22:45:57 [ 11] [ 6] [158858] +22:45:57 [ 70] [ 3] [301] +22:45:57 ============================================================================ +22:45:57 + + +waiting on router queue for slot.... +22:45:57 Sending to : +22:45:57 ============================================================================ +22:45:57 ============================================================================ +22:45:57 Slot Id : <276> +22:45:57 Transaction Type : RESPONSE +22:45:57 Received From : +22:45:57 ============================================================================ +22:45:57 FNo. Len. Field Value +22:45:57 ============================================================================ +22:45:57 [ 1] [ 4] [0810] +22:45:57 [ 7] [ 10] [0320034505] +22:45:57 [ 11] [ 6] [158858] +22:45:57 [ 39] [ 2] [00] +22:45:57 [ 70] [ 3] [301] +22:45:57 ============================================================================ +22:45:57 Calculate Source COMM Id = 2 +22:45:57 ============================================================================ +22:45:57 + + +waiting on router queue for slot.... +22:46:12 ============================================================================ +22:46:12 Slot Id : <219> +22:46:12 Transaction Type : REQUEST +22:46:12 Received From : +22:46:12 ============================================================================ +22:46:12 FNo. Len. Field Value +22:46:12 ============================================================================ +22:46:12 [ 1] [ 4] [0800] +22:46:12 [ 7] [ 10] [0320034520] +22:46:12 [ 11] [ 6] [158859] +22:46:12 [ 70] [ 3] [301] +22:46:12 ============================================================================ +22:46:12 + + +waiting on router queue for slot.... +22:46:12 Sending to : +22:46:12 ============================================================================ +22:46:12 ============================================================================ +22:46:12 Slot Id : <219> +22:46:12 Transaction Type : RESPONSE +22:46:12 Received From : +22:46:12 ============================================================================ +22:46:12 FNo. Len. Field Value +22:46:12 ============================================================================ +22:46:12 [ 1] [ 4] [0810] +22:46:12 [ 7] [ 10] [0320034520] +22:46:12 [ 11] [ 6] [158859] +22:46:12 [ 39] [ 2] [00] +22:46:12 [ 70] [ 3] [301] +22:46:12 ============================================================================ +22:46:12 Calculate Source COMM Id = 2 +22:46:12 ============================================================================ +22:46:12 + + +waiting on router queue for slot.... +22:46:20 ============================================================================ +22:46:20 Slot Id : <258> +22:46:20 Transaction Type : REQUEST +22:46:20 Received From : +22:46:20 ============================================================================ +22:46:20 FNo. Len. Field Value +22:46:20 ============================================================================ +22:46:20 [ 1] [ 4] [0800] +22:46:20 [ 7] [ 10] [0321055810] +22:46:20 [ 11] [ 6] [225810] +22:46:20 [ 37] [ 12] [57922225810] +22:46:20 [ 70] [ 3] [301] +22:46:20 ============================================================================ +22:46:20 + + +waiting on router queue for slot.... +22:46:20 Sending to : +22:46:20 ============================================================================ +22:46:20 ============================================================================ +22:46:20 Slot Id : <258> +22:46:20 Transaction Type : RESPONSE +22:46:20 Received From : +22:46:20 ============================================================================ +22:46:20 FNo. Len. Field Value +22:46:20 ============================================================================ +22:46:20 [ 1] [ 4] [0810] +22:46:20 [ 7] [ 10] [0321055810] +22:46:20 [ 11] [ 6] [225810] +22:46:20 [ 37] [ 12] [579222258100] +22:46:20 [ 39] [ 2] [00] +22:46:20 [ 70] [ 3] [810] +22:46:20 ============================================================================ +22:46:20 Calculate Source COMM Id = 6 +22:46:20 ============================================================================ +22:46:20 + + +waiting on router queue for slot.... +22:46:21 ============================================================================ +22:46:21 Slot Id : <290> +22:46:21 Transaction Type : REQUEST +22:46:21 Received From : +22:46:21 ============================================================================ +22:46:21 FNo. Len. Field Value +22:46:21 ============================================================================ +22:46:21 [ 1] [ 4] [0800] +22:46:21 [ 7] [ 10] [0320154412] +22:46:21 [ 11] [ 6] [037100] +22:46:21 [ 37] [ 12] [57922037100] +22:46:21 [ 70] [ 3] [301] +22:46:21 ============================================================================ +22:46:21 + + +waiting on router queue for slot.... +22:46:21 Sending to : +22:46:21 ============================================================================ +22:46:21 ============================================================================ +22:46:21 Slot Id : <290> +22:46:21 Transaction Type : RESPONSE +22:46:21 Received From : +22:46:21 ============================================================================ +22:46:21 FNo. Len. Field Value +22:46:21 ============================================================================ +22:46:21 [ 1] [ 4] [0810] +22:46:21 [ 7] [ 10] [0320154412] +22:46:21 [ 11] [ 6] [037100] +22:46:21 [ 37] [ 12] [579220371000] +22:46:21 [ 39] [ 2] [00] +22:46:21 [ 70] [ 3] [810] +22:46:21 ============================================================================ +22:46:21 Calculate Source COMM Id = 4 +22:46:21 ============================================================================ +22:46:21 + + +waiting on router queue for slot.... +22:46:24 ============================================================================ +22:46:24 Slot Id : <287> +22:46:24 Transaction Type : REQUEST +22:46:24 Received From : +22:46:24 ============================================================================ +22:46:24 FNo. Len. Field Value +22:46:24 ============================================================================ +22:46:24 [ 1] [ 4] [0800] +22:46:24 [ 7] [ 10] [0320034531] +22:46:24 [ 11] [ 6] [158860] +22:46:24 [ 70] [ 3] [301] +22:46:24 ============================================================================ +22:46:24 + + +waiting on router queue for slot.... +22:46:24 Sending to : +22:46:24 ============================================================================ +22:46:24 ============================================================================ +22:46:24 Slot Id : <287> +22:46:24 Transaction Type : RESPONSE +22:46:24 Received From : +22:46:24 ============================================================================ +22:46:24 FNo. Len. Field Value +22:46:24 ============================================================================ +22:46:24 [ 1] [ 4] [0810] +22:46:24 [ 7] [ 10] [0320034531] +22:46:24 [ 11] [ 6] [158860] +22:46:24 [ 39] [ 2] [00] +22:46:24 [ 70] [ 3] [301] +22:46:24 ============================================================================ +22:46:24 Calculate Source COMM Id = 2 +22:46:24 ============================================================================ +22:46:24 + + +waiting on router queue for slot.... +22:46:40 ============================================================================ +22:46:40 Slot Id : <277> +22:46:40 Transaction Type : REQUEST +22:46:40 Received From : +22:46:40 ============================================================================ +22:46:40 FNo. Len. Field Value +22:46:40 ============================================================================ +22:46:40 [ 1] [ 4] [0800] +22:46:40 [ 7] [ 10] [0320034548] +22:46:40 [ 11] [ 6] [158861] +22:46:40 [ 70] [ 3] [301] +22:46:40 ============================================================================ +22:46:40 + + +waiting on router queue for slot.... +22:46:40 Sending to : +22:46:40 ============================================================================ +22:46:40 ============================================================================ +22:46:40 Slot Id : <277> +22:46:40 Transaction Type : RESPONSE +22:46:40 Received From : +22:46:40 ============================================================================ +22:46:40 FNo. Len. Field Value +22:46:40 ============================================================================ +22:46:40 [ 1] [ 4] [0810] +22:46:40 [ 7] [ 10] [0320034548] +22:46:40 [ 11] [ 6] [158861] +22:46:40 [ 39] [ 2] [00] +22:46:40 [ 70] [ 3] [301] +22:46:40 ============================================================================ +22:46:40 Calculate Source COMM Id = 2 +22:46:40 ============================================================================ +22:46:40 + + +waiting on router queue for slot.... +22:46:44 ============================================================================ +22:46:44 Slot Id : <284> +22:46:44 Transaction Type : REQUEST +22:46:44 Received From : +22:46:44 ============================================================================ +22:46:44 FNo. Len. Field Value +22:46:44 ============================================================================ +22:46:44 [ 1] [ 4] [0800] +22:46:44 [ 2] [ 5] [02531] +22:46:44 [ 3] [ 6] [579228] +22:46:44 [ 7] [ 10] [0320154644] +22:46:44 [ 11] [ 6] [807734] +22:46:44 [ 15] [ 10] [0320154644] +22:46:44 [ 37] [ 11] [57922807734] +22:46:44 [ 70] [ 3] [001] +22:46:44 ============================================================================ +22:46:44 + + +waiting on router queue for slot.... +22:46:44 ============================================================================ +22:46:44 Slot Id : <284> +22:46:44 Transaction Type : RESPONSE +22:46:44 Received From : +22:46:44 ============================================================================ +22:46:44 FNo. Len. Field Value +22:46:44 ============================================================================ +22:46:44 [ 1] [ 4] [0810] +22:46:44 [ 7] [ 10] [0320154644] +22:46:44 [ 11] [ 6] [807734] +22:46:44 [ 15] [ 4] [0320] +22:46:44 [ 37] [ 12] [57922807734] +22:46:44 [ 39] [ 2] [00] +22:46:44 [ 70] [ 3] [001] +22:46:44 ============================================================================ +22:46:44 Sending to : +22:46:44 ============================================================================ +22:46:44 + + +waiting on router queue for slot.... +22:46:51 ============================================================================ +22:46:51 Slot Id : <267> +22:46:51 Transaction Type : REQUEST +22:46:51 Received From : +22:46:51 ============================================================================ +22:46:51 FNo. Len. Field Value +22:46:51 ============================================================================ +22:46:51 [ 1] [ 4] [0800] +22:46:51 [ 7] [ 10] [0320034559] +22:46:51 [ 11] [ 6] [158862] +22:46:51 [ 70] [ 3] [301] +22:46:51 ============================================================================ +22:46:51 + + +waiting on router queue for slot.... +22:46:51 Sending to : +22:46:51 ============================================================================ +22:46:51 ============================================================================ +22:46:51 Slot Id : <267> +22:46:51 Transaction Type : RESPONSE +22:46:51 Received From : +22:46:51 ============================================================================ +22:46:51 FNo. Len. Field Value +22:46:51 ============================================================================ +22:46:51 [ 1] [ 4] [0810] +22:46:51 [ 7] [ 10] [0320034559] +22:46:51 [ 11] [ 6] [158862] +22:46:51 [ 39] [ 2] [00] +22:46:51 [ 70] [ 3] [301] +22:46:51 ============================================================================ +22:46:51 Calculate Source COMM Id = 2 +22:46:51 ============================================================================ +22:46:51 + + +waiting on router queue for slot.... +22:47:02 ============================================================================ +22:47:02 Slot Id : <271> +22:47:02 Transaction Type : REQUEST +22:47:02 Received From : +22:47:02 ============================================================================ +22:47:02 FNo. Len. Field Value +22:47:02 ============================================================================ +22:47:02 [ 1] [ 4] [0800] +22:47:02 [ 7] [ 10] [0320034609] +22:47:02 [ 11] [ 6] [158863] +22:47:02 [ 70] [ 3] [301] +22:47:02 ============================================================================ +22:47:02 + + +waiting on router queue for slot.... +22:47:02 Sending to : +22:47:02 ============================================================================ +22:47:02 ============================================================================ +22:47:02 Slot Id : <271> +22:47:02 Transaction Type : RESPONSE +22:47:02 Received From : +22:47:02 ============================================================================ +22:47:02 FNo. Len. Field Value +22:47:02 ============================================================================ +22:47:02 [ 1] [ 4] [0810] +22:47:02 [ 7] [ 10] [0320034609] +22:47:02 [ 11] [ 6] [158863] +22:47:02 [ 39] [ 2] [00] +22:47:02 [ 70] [ 3] [301] +22:47:02 ============================================================================ +22:47:02 Calculate Source COMM Id = 2 +22:47:02 ============================================================================ +22:47:02 + + +waiting on router queue for slot.... +22:47:12 ============================================================================ +22:47:12 Slot Id : <236> +22:47:12 Transaction Type : REQUEST +22:47:12 Received From : +22:47:12 ============================================================================ +22:47:12 FNo. Len. Field Value +22:47:12 ============================================================================ +22:47:12 [ 1] [ 4] [0800] +22:47:12 [ 7] [ 10] [0320034620] +22:47:12 [ 11] [ 6] [158864] +22:47:12 [ 70] [ 3] [301] +22:47:12 ============================================================================ +22:47:12 + + +waiting on router queue for slot.... +22:47:12 Sending to : +22:47:12 ============================================================================ +22:47:12 ============================================================================ +22:47:12 Slot Id : <236> +22:47:12 Transaction Type : RESPONSE +22:47:12 Received From : +22:47:12 ============================================================================ +22:47:12 FNo. Len. Field Value +22:47:12 ============================================================================ +22:47:12 [ 1] [ 4] [0810] +22:47:12 [ 7] [ 10] [0320034620] +22:47:12 [ 11] [ 6] [158864] +22:47:12 [ 39] [ 2] [00] +22:47:12 [ 70] [ 3] [301] +22:47:12 ============================================================================ +22:47:12 Calculate Source COMM Id = 2 +22:47:12 ============================================================================ +22:47:12 + + +waiting on router queue for slot.... +22:47:23 ============================================================================ +22:47:23 Slot Id : <245> +22:47:23 Transaction Type : REQUEST +22:47:23 Received From : +22:47:23 ============================================================================ +22:47:23 FNo. Len. Field Value +22:47:23 ============================================================================ +22:47:23 [ 1] [ 4] [0800] +22:47:23 [ 7] [ 10] [0320034632] +22:47:23 [ 11] [ 6] [158865] +22:47:23 [ 70] [ 3] [301] +22:47:23 ============================================================================ +22:47:23 + + +waiting on router queue for slot.... +22:47:23 Sending to : +22:47:23 ============================================================================ +22:47:23 ============================================================================ +22:47:23 Slot Id : <245> +22:47:23 Transaction Type : RESPONSE +22:47:23 Received From : +22:47:23 ============================================================================ +22:47:23 FNo. Len. Field Value +22:47:23 ============================================================================ +22:47:23 [ 1] [ 4] [0810] +22:47:23 [ 7] [ 10] [0320034632] +22:47:23 [ 11] [ 6] [158865] +22:47:23 [ 39] [ 2] [00] +22:47:23 [ 70] [ 3] [301] +22:47:23 ============================================================================ +22:47:23 Calculate Source COMM Id = 2 +22:47:23 ============================================================================ +22:47:23 + + +waiting on router queue for slot.... +22:47:25 ============================================================================ +22:47:25 Slot Id : <303> +22:47:25 Transaction Type : REQUEST +22:47:25 Received From : +22:47:25 ============================================================================ +22:47:25 FNo. Len. Field Value +22:47:25 ============================================================================ +22:47:25 [ 1] [ 4] [0800] +22:47:25 [ 7] [ 10] [0321055915] +22:47:25 [ 11] [ 6] [225915] +22:47:25 [ 37] [ 12] [57922225915] +22:47:25 [ 70] [ 3] [301] +22:47:25 ============================================================================ +22:47:25 + + +waiting on router queue for slot.... +22:47:25 Sending to : +22:47:25 ============================================================================ +22:47:25 ============================================================================ +22:47:25 Slot Id : <303> +22:47:25 Transaction Type : RESPONSE +22:47:25 Received From : +22:47:25 ============================================================================ +22:47:25 FNo. Len. Field Value +22:47:25 ============================================================================ +22:47:25 [ 1] [ 4] [0810] +22:47:25 [ 7] [ 10] [0321055915] +22:47:25 [ 11] [ 6] [225915] +22:47:25 [ 37] [ 12] [579222259150] +22:47:25 [ 39] [ 2] [00] +22:47:25 [ 70] [ 3] [810] +22:47:25 ============================================================================ +22:47:25 Calculate Source COMM Id = 6 +22:47:25 ============================================================================ +22:47:25 + + +waiting on router queue for slot.... +22:47:39 ============================================================================ +22:47:39 Slot Id : <294> +22:47:39 Transaction Type : REQUEST +22:47:39 Received From : +22:47:39 ============================================================================ +22:47:39 FNo. Len. Field Value +22:47:39 ============================================================================ +22:47:39 [ 1] [ 4] [0800] +22:47:39 [ 7] [ 10] [0320034647] +22:47:39 [ 11] [ 6] [158866] +22:47:39 [ 70] [ 3] [301] +22:47:39 ============================================================================ +22:47:39 + + +waiting on router queue for slot.... +22:47:39 Sending to : +22:47:39 ============================================================================ +22:47:39 ============================================================================ +22:47:39 Slot Id : <294> +22:47:39 Transaction Type : RESPONSE +22:47:39 Received From : +22:47:39 ============================================================================ +22:47:39 FNo. Len. Field Value +22:47:39 ============================================================================ +22:47:39 [ 1] [ 4] [0810] +22:47:39 [ 7] [ 10] [0320034647] +22:47:39 [ 11] [ 6] [158866] +22:47:39 [ 39] [ 2] [00] +22:47:39 [ 70] [ 3] [301] +22:47:39 ============================================================================ +22:47:39 Calculate Source COMM Id = 2 +22:47:39 ============================================================================ +22:47:39 + + +waiting on router queue for slot.... +22:47:46 ============================================================================ +22:47:46 Slot Id : <293> +22:47:46 Transaction Type : REQUEST +22:47:46 Received From : +22:47:46 ============================================================================ +22:47:46 FNo. Len. Field Value +22:47:46 ============================================================================ +22:47:46 [ 1] [ 4] [0800] +22:47:46 [ 2] [ 5] [02531] +22:47:46 [ 3] [ 6] [579228] +22:47:46 [ 7] [ 10] [0320154746] +22:47:46 [ 11] [ 6] [807735] +22:47:46 [ 15] [ 10] [0320154746] +22:47:46 [ 37] [ 11] [57922807735] +22:47:46 [ 70] [ 3] [001] +22:47:46 ============================================================================ +22:47:46 + + +waiting on router queue for slot.... +22:47:46 ============================================================================ +22:47:46 Slot Id : <293> +22:47:46 Transaction Type : RESPONSE +22:47:46 Received From : +22:47:46 ============================================================================ +22:47:46 FNo. Len. Field Value +22:47:46 ============================================================================ +22:47:46 [ 1] [ 4] [0810] +22:47:46 [ 7] [ 10] [0320154746] +22:47:46 [ 11] [ 6] [807735] +22:47:46 [ 15] [ 4] [0320] +22:47:46 [ 37] [ 12] [57922807735] +22:47:46 [ 39] [ 2] [00] +22:47:46 [ 70] [ 3] [001] +22:47:46 ============================================================================ +22:47:46 Sending to : +22:47:46 ============================================================================ +22:47:46 + + +waiting on router queue for slot.... +22:47:51 ============================================================================ +22:47:51 Slot Id : <217> +22:47:51 Transaction Type : REQUEST +22:47:51 Received From : +22:47:51 ============================================================================ +22:47:51 FNo. Len. Field Value +22:47:51 ============================================================================ +22:47:51 [ 1] [ 4] [0800] +22:47:51 [ 7] [ 10] [0320034659] +22:47:51 [ 11] [ 6] [158867] +22:47:51 [ 70] [ 3] [301] +22:47:51 ============================================================================ +22:47:51 + + +waiting on router queue for slot.... +22:47:51 Sending to : +22:47:51 ============================================================================ +22:47:51 ============================================================================ +22:47:51 Slot Id : <217> +22:47:51 Transaction Type : RESPONSE +22:47:51 Received From : +22:47:51 ============================================================================ +22:47:51 FNo. Len. Field Value +22:47:51 ============================================================================ +22:47:51 [ 1] [ 4] [0810] +22:47:51 [ 7] [ 10] [0320034659] +22:47:51 [ 11] [ 6] [158867] +22:47:51 [ 39] [ 2] [00] +22:47:51 [ 70] [ 3] [301] +22:47:51 ============================================================================ +22:47:51 Calculate Source COMM Id = 2 +22:47:51 ============================================================================ +22:47:51 + + +waiting on router queue for slot.... +22:48:07 ============================================================================ +22:48:07 Slot Id : <298> +22:48:07 Transaction Type : REQUEST +22:48:07 Received From : +22:48:07 ============================================================================ +22:48:07 FNo. Len. Field Value +22:48:07 ============================================================================ +22:48:07 [ 1] [ 4] [0800] +22:48:07 [ 7] [ 10] [0320034715] +22:48:07 [ 11] [ 6] [158868] +22:48:07 [ 70] [ 3] [301] +22:48:07 ============================================================================ +22:48:07 + + +waiting on router queue for slot.... +22:48:07 Sending to : +22:48:07 ============================================================================ +22:48:07 ============================================================================ +22:48:07 Slot Id : <298> +22:48:07 Transaction Type : RESPONSE +22:48:07 Received From : +22:48:07 ============================================================================ +22:48:07 FNo. Len. Field Value +22:48:07 ============================================================================ +22:48:07 [ 1] [ 4] [0810] +22:48:07 [ 7] [ 10] [0320034715] +22:48:07 [ 11] [ 6] [158868] +22:48:07 [ 39] [ 2] [00] +22:48:07 [ 70] [ 3] [301] +22:48:07 ============================================================================ +22:48:07 Calculate Source COMM Id = 2 +22:48:07 ============================================================================ +22:48:07 + + +waiting on router queue for slot.... +22:48:18 ============================================================================ +22:48:18 Slot Id : <300> +22:48:18 Transaction Type : REQUEST +22:48:18 Received From : +22:48:18 ============================================================================ +22:48:18 FNo. Len. Field Value +22:48:18 ============================================================================ +22:48:18 [ 1] [ 4] [0800] +22:48:18 [ 7] [ 10] [0320034726] +22:48:18 [ 11] [ 6] [158869] +22:48:18 [ 70] [ 3] [301] +22:48:18 ============================================================================ +22:48:18 + + +waiting on router queue for slot.... +22:48:18 Sending to : +22:48:18 ============================================================================ +22:48:18 ============================================================================ +22:48:18 Slot Id : <300> +22:48:18 Transaction Type : RESPONSE +22:48:18 Received From : +22:48:18 ============================================================================ +22:48:18 FNo. Len. Field Value +22:48:18 ============================================================================ +22:48:18 [ 1] [ 4] [0810] +22:48:18 [ 7] [ 10] [0320034726] +22:48:18 [ 11] [ 6] [158869] +22:48:18 [ 39] [ 2] [00] +22:48:18 [ 70] [ 3] [301] +22:48:18 ============================================================================ +22:48:18 Calculate Source COMM Id = 2 +22:48:18 ============================================================================ +22:48:18 + + +waiting on router queue for slot.... +22:48:29 ============================================================================ +22:48:29 Slot Id : <281> +22:48:29 Transaction Type : REQUEST +22:48:29 Received From : +22:48:29 ============================================================================ +22:48:29 FNo. Len. Field Value +22:48:29 ============================================================================ +22:48:29 [ 1] [ 4] [0800] +22:48:29 [ 7] [ 10] [0320034737] +22:48:29 [ 11] [ 6] [158870] +22:48:29 [ 70] [ 3] [301] +22:48:29 ============================================================================ +22:48:29 + + +waiting on router queue for slot.... +22:48:29 Sending to : +22:48:29 ============================================================================ +22:48:29 ============================================================================ +22:48:29 Slot Id : <281> +22:48:29 Transaction Type : RESPONSE +22:48:29 Received From : +22:48:29 ============================================================================ +22:48:29 FNo. Len. Field Value +22:48:29 ============================================================================ +22:48:29 [ 1] [ 4] [0810] +22:48:29 [ 7] [ 10] [0320034737] +22:48:29 [ 11] [ 6] [158870] +22:48:29 [ 39] [ 2] [00] +22:48:29 [ 70] [ 3] [301] +22:48:29 ============================================================================ +22:48:29 Calculate Source COMM Id = 2 +22:48:29 ============================================================================ +22:48:29 + + +waiting on router queue for slot.... +22:48:30 ============================================================================ +22:48:30 Slot Id : <278> +22:48:30 Transaction Type : REQUEST +22:48:30 Received From : +22:48:30 ============================================================================ +22:48:30 FNo. Len. Field Value +22:48:30 ============================================================================ +22:48:30 [ 1] [ 4] [0800] +22:48:30 [ 7] [ 10] [0321060020] +22:48:30 [ 11] [ 6] [230020] +22:48:30 [ 37] [ 12] [57923230020] +22:48:30 [ 70] [ 3] [301] +22:48:30 ============================================================================ +22:48:30 + + +waiting on router queue for slot.... +22:48:30 Sending to : +22:48:30 ============================================================================ +22:48:30 ============================================================================ +22:48:30 Slot Id : <278> +22:48:30 Transaction Type : RESPONSE +22:48:30 Received From : +22:48:30 ============================================================================ +22:48:30 FNo. Len. Field Value +22:48:30 ============================================================================ +22:48:30 [ 1] [ 4] [0810] +22:48:30 [ 7] [ 10] [0321060020] +22:48:30 [ 11] [ 6] [230020] +22:48:30 [ 37] [ 12] [579232300200] +22:48:30 [ 39] [ 2] [00] +22:48:30 [ 70] [ 3] [810] +22:48:30 ============================================================================ +22:48:30 Calculate Source COMM Id = 6 +22:48:30 ============================================================================ +22:48:30 + + +waiting on router queue for slot.... +22:48:39 ============================================================================ +22:48:39 Slot Id : <299> +22:48:39 Transaction Type : REQUEST +22:48:39 Received From : +22:48:39 ============================================================================ +22:48:39 FNo. Len. Field Value +22:48:39 ============================================================================ +22:48:39 [ 1] [ 4] [0800] +22:48:39 [ 7] [ 10] [0320034747] +22:48:39 [ 11] [ 6] [158871] +22:48:39 [ 70] [ 3] [301] +22:48:39 ============================================================================ +22:48:39 + + +waiting on router queue for slot.... +22:48:39 Sending to : +22:48:39 ============================================================================ +22:48:39 ============================================================================ +22:48:39 Slot Id : <299> +22:48:39 Transaction Type : RESPONSE +22:48:39 Received From : +22:48:39 ============================================================================ +22:48:39 FNo. Len. Field Value +22:48:39 ============================================================================ +22:48:39 [ 1] [ 4] [0810] +22:48:39 [ 7] [ 10] [0320034747] +22:48:39 [ 11] [ 6] [158871] +22:48:39 [ 39] [ 2] [00] +22:48:39 [ 70] [ 3] [301] +22:48:39 ============================================================================ +22:48:39 Calculate Source COMM Id = 2 +22:48:39 ============================================================================ +22:48:39 + + +waiting on router queue for slot.... +22:48:48 ============================================================================ +22:48:48 Slot Id : <257> +22:48:48 Transaction Type : REQUEST +22:48:48 Received From : +22:48:48 ============================================================================ +22:48:48 FNo. Len. Field Value +22:48:48 ============================================================================ +22:48:48 [ 1] [ 4] [0800] +22:48:48 [ 2] [ 5] [02531] +22:48:48 [ 3] [ 6] [579228] +22:48:48 [ 7] [ 10] [0320154848] +22:48:48 [ 11] [ 6] [807736] +22:48:48 [ 15] [ 10] [0320154848] +22:48:48 [ 37] [ 11] [57922807736] +22:48:48 [ 70] [ 3] [001] +22:48:48 ============================================================================ +22:48:48 + + +waiting on router queue for slot.... +22:48:48 ============================================================================ +22:48:48 Slot Id : <257> +22:48:48 Transaction Type : RESPONSE +22:48:48 Received From : +22:48:48 ============================================================================ +22:48:48 FNo. Len. Field Value +22:48:48 ============================================================================ +22:48:48 [ 1] [ 4] [0810] +22:48:48 [ 7] [ 10] [0320154848] +22:48:48 [ 11] [ 6] [807736] +22:48:48 [ 15] [ 4] [0320] +22:48:48 [ 37] [ 12] [57922807736] +22:48:48 [ 39] [ 2] [00] +22:48:48 [ 70] [ 3] [001] +22:48:48 ============================================================================ +22:48:48 Sending to : +22:48:48 ============================================================================ +22:48:48 + + +waiting on router queue for slot.... +22:48:54 ============================================================================ +22:48:54 Slot Id : <308> +22:48:54 Transaction Type : REQUEST +22:48:54 Received From : +22:48:54 ============================================================================ +22:48:54 FNo. Len. Field Value +22:48:54 ============================================================================ +22:48:54 [ 1] [ 4] [0800] +22:48:54 [ 7] [ 10] [0320034802] +22:48:54 [ 11] [ 6] [158872] +22:48:54 [ 70] [ 3] [301] +22:48:54 ============================================================================ +22:48:54 + + +waiting on router queue for slot.... +22:48:54 Sending to : +22:48:54 ============================================================================ +22:48:54 ============================================================================ +22:48:54 Slot Id : <308> +22:48:54 Transaction Type : RESPONSE +22:48:54 Received From : +22:48:54 ============================================================================ +22:48:54 FNo. Len. Field Value +22:48:54 ============================================================================ +22:48:54 [ 1] [ 4] [0810] +22:48:54 [ 7] [ 10] [0320034802] +22:48:54 [ 11] [ 6] [158872] +22:48:54 [ 39] [ 2] [00] +22:48:54 [ 70] [ 3] [301] +22:48:54 ============================================================================ +22:48:54 Calculate Source COMM Id = 2 +22:48:54 ============================================================================ +22:48:54 + + +waiting on router queue for slot.... +22:49:05 ============================================================================ +22:49:05 Slot Id : <295> +22:49:05 Transaction Type : REQUEST +22:49:05 Received From : +22:49:05 ============================================================================ +22:49:05 FNo. Len. Field Value +22:49:05 ============================================================================ +22:49:05 [ 1] [ 4] [0800] +22:49:05 [ 7] [ 10] [0320034813] +22:49:05 [ 11] [ 6] [158873] +22:49:05 [ 70] [ 3] [301] +22:49:05 ============================================================================ +22:49:05 + + +waiting on router queue for slot.... +22:49:05 Sending to : +22:49:05 ============================================================================ +22:49:05 ============================================================================ +22:49:05 Slot Id : <295> +22:49:05 Transaction Type : RESPONSE +22:49:05 Received From : +22:49:05 ============================================================================ +22:49:05 FNo. Len. Field Value +22:49:05 ============================================================================ +22:49:05 [ 1] [ 4] [0810] +22:49:05 [ 7] [ 10] [0320034813] +22:49:05 [ 11] [ 6] [158873] +22:49:05 [ 39] [ 2] [00] +22:49:05 [ 70] [ 3] [301] +22:49:05 ============================================================================ +22:49:05 Calculate Source COMM Id = 2 +22:49:05 ============================================================================ +22:49:05 + + +waiting on router queue for slot.... +22:49:15 ============================================================================ +22:49:15 Slot Id : <286> +22:49:15 Transaction Type : REQUEST +22:49:15 Received From : +22:49:15 ============================================================================ +22:49:15 FNo. Len. Field Value +22:49:15 ============================================================================ +22:49:15 [ 1] [ 4] [0800] +22:49:15 [ 7] [ 10] [0320034823] +22:49:15 [ 11] [ 6] [158874] +22:49:15 [ 70] [ 3] [301] +22:49:15 ============================================================================ +22:49:15 + + +waiting on router queue for slot.... +22:49:15 Sending to : +22:49:15 ============================================================================ +22:49:15 ============================================================================ +22:49:15 Slot Id : <286> +22:49:15 Transaction Type : RESPONSE +22:49:15 Received From : +22:49:15 ============================================================================ +22:49:15 FNo. Len. Field Value +22:49:15 ============================================================================ +22:49:15 [ 1] [ 4] [0810] +22:49:15 [ 7] [ 10] [0320034823] +22:49:15 [ 11] [ 6] [158874] +22:49:15 [ 39] [ 2] [00] +22:49:15 [ 70] [ 3] [301] +22:49:15 ============================================================================ +22:49:15 Calculate Source COMM Id = 2 +22:49:15 ============================================================================ +22:49:15 + + +waiting on router queue for slot.... +22:49:33 ============================================================================ +22:49:33 Slot Id : <296> +22:49:33 Transaction Type : REQUEST +22:49:33 Received From : +22:49:33 ============================================================================ +22:49:33 FNo. Len. Field Value +22:49:33 ============================================================================ +22:49:33 [ 1] [ 4] [0800] +22:49:33 [ 7] [ 10] [0320034841] +22:49:33 [ 11] [ 6] [158875] +22:49:33 [ 70] [ 3] [301] +22:49:33 ============================================================================ +22:49:33 + + +waiting on router queue for slot.... +22:49:33 Sending to : +22:49:33 ============================================================================ +22:49:33 ============================================================================ +22:49:33 Slot Id : <296> +22:49:33 Transaction Type : RESPONSE +22:49:33 Received From : +22:49:33 ============================================================================ +22:49:33 FNo. Len. Field Value +22:49:33 ============================================================================ +22:49:33 [ 1] [ 4] [0810] +22:49:33 [ 7] [ 10] [0320034841] +22:49:33 [ 11] [ 6] [158875] +22:49:33 [ 39] [ 2] [00] +22:49:33 [ 70] [ 3] [301] +22:49:33 ============================================================================ +22:49:33 Calculate Source COMM Id = 2 +22:49:33 ============================================================================ +22:49:33 + + +waiting on router queue for slot.... +22:49:35 ============================================================================ +22:49:35 Slot Id : <283> +22:49:35 Transaction Type : REQUEST +22:49:35 Received From : +22:49:35 ============================================================================ +22:49:35 FNo. Len. Field Value +22:49:35 ============================================================================ +22:49:35 [ 1] [ 4] [0800] +22:49:35 [ 7] [ 10] [0321060125] +22:49:35 [ 11] [ 6] [230125] +22:49:35 [ 37] [ 12] [57923230125] +22:49:35 [ 70] [ 3] [301] +22:49:35 ============================================================================ +22:49:35 + + +waiting on router queue for slot.... +22:49:35 Sending to : +22:49:35 ============================================================================ +22:49:35 ============================================================================ +22:49:35 Slot Id : <283> +22:49:35 Transaction Type : RESPONSE +22:49:35 Received From : +22:49:35 ============================================================================ +22:49:35 FNo. Len. Field Value +22:49:35 ============================================================================ +22:49:35 [ 1] [ 4] [0810] +22:49:35 [ 7] [ 10] [0321060125] +22:49:35 [ 11] [ 6] [230125] +22:49:35 [ 37] [ 12] [579232301250] +22:49:35 [ 39] [ 2] [00] +22:49:35 [ 70] [ 3] [810] +22:49:35 ============================================================================ +22:49:35 Calculate Source COMM Id = 6 +22:49:35 ============================================================================ +22:49:35 + + +waiting on router queue for slot.... +22:49:44 ============================================================================ +22:49:44 Slot Id : <306> +22:49:44 Transaction Type : REQUEST +22:49:44 Received From : +22:49:44 ============================================================================ +22:49:44 FNo. Len. Field Value +22:49:44 ============================================================================ +22:49:44 [ 1] [ 4] [0800] +22:49:44 [ 7] [ 10] [0320034852] +22:49:44 [ 11] [ 6] [158876] +22:49:44 [ 70] [ 3] [301] +22:49:44 ============================================================================ +22:49:44 + + +waiting on router queue for slot.... +22:49:44 Sending to : +22:49:44 ============================================================================ +22:49:44 ============================================================================ +22:49:44 Slot Id : <306> +22:49:44 Transaction Type : RESPONSE +22:49:44 Received From : +22:49:44 ============================================================================ +22:49:44 FNo. Len. Field Value +22:49:44 ============================================================================ +22:49:44 [ 1] [ 4] [0810] +22:49:44 [ 7] [ 10] [0320034852] +22:49:44 [ 11] [ 6] [158876] +22:49:44 [ 39] [ 2] [00] +22:49:44 [ 70] [ 3] [301] +22:49:44 ============================================================================ +22:49:44 Calculate Source COMM Id = 2 +22:49:44 ============================================================================ +22:49:44 + + +waiting on router queue for slot.... +22:49:50 ============================================================================ +22:49:50 Slot Id : <311> +22:49:50 Transaction Type : REQUEST +22:49:50 Received From : +22:49:50 ============================================================================ +22:49:50 FNo. Len. Field Value +22:49:50 ============================================================================ +22:49:50 [ 1] [ 4] [0800] +22:49:50 [ 2] [ 5] [02531] +22:49:50 [ 3] [ 6] [579228] +22:49:50 [ 7] [ 10] [0320154950] +22:49:50 [ 11] [ 6] [807737] +22:49:50 [ 15] [ 10] [0320154950] +22:49:50 [ 37] [ 11] [57922807737] +22:49:50 [ 70] [ 3] [001] +22:49:50 ============================================================================ +22:49:50 + + +waiting on router queue for slot.... +22:49:50 ============================================================================ +22:49:50 Slot Id : <311> +22:49:50 Transaction Type : RESPONSE +22:49:50 Received From : +22:49:50 ============================================================================ +22:49:50 FNo. Len. Field Value +22:49:50 ============================================================================ +22:49:50 [ 1] [ 4] [0810] +22:49:50 [ 7] [ 10] [0320154950] +22:49:50 [ 11] [ 6] [807737] +22:49:50 [ 15] [ 4] [0320] +22:49:50 [ 37] [ 12] [57922807737] +22:49:50 [ 39] [ 2] [00] +22:49:50 [ 70] [ 3] [001] +22:49:50 ============================================================================ +22:49:50 Sending to : +22:49:50 ============================================================================ +22:49:50 + + +waiting on router queue for slot.... +22:49:55 ============================================================================ +22:49:55 Slot Id : <312> +22:49:55 Transaction Type : REQUEST +22:49:55 Received From : +22:49:55 ============================================================================ +22:49:55 FNo. Len. Field Value +22:49:55 ============================================================================ +22:49:55 [ 1] [ 4] [0800] +22:49:55 [ 7] [ 10] [0320034903] +22:49:55 [ 11] [ 6] [158877] +22:49:55 [ 70] [ 3] [301] +22:49:55 ============================================================================ +22:49:55 + + +waiting on router queue for slot.... +22:49:55 Sending to : +22:49:55 ============================================================================ +22:49:55 ============================================================================ +22:49:55 Slot Id : <312> +22:49:55 Transaction Type : RESPONSE +22:49:55 Received From : +22:49:55 ============================================================================ +22:49:55 FNo. Len. Field Value +22:49:55 ============================================================================ +22:49:55 [ 1] [ 4] [0810] +22:49:55 [ 7] [ 10] [0320034903] +22:49:55 [ 11] [ 6] [158877] +22:49:55 [ 39] [ 2] [00] +22:49:55 [ 70] [ 3] [301] +22:49:55 ============================================================================ +22:49:55 Calculate Source COMM Id = 2 +22:49:55 ============================================================================ +22:49:55 + + +waiting on router queue for slot.... +22:49:55 ============================================================================ +22:49:55 Slot Id : <307> +22:49:55 Transaction Type : REQUEST +22:49:55 Received From : +22:49:55 ============================================================================ +22:49:55 FNo. Len. Field Value +22:49:55 ============================================================================ +22:49:55 [ 1] [ 4] [0800] +22:49:55 [ 7] [ 10] [0320155742] +22:49:55 [ 11] [ 6] [072401] +22:49:55 [ 37] [ 12] [57922072401] +22:49:55 [ 70] [ 3] [301] +22:49:55 ============================================================================ +22:49:55 + + +waiting on router queue for slot.... +22:49:55 Sending to : +22:49:55 ============================================================================ +22:49:55 ============================================================================ +22:49:55 Slot Id : <307> +22:49:55 Transaction Type : RESPONSE +22:49:55 Received From : +22:49:55 ============================================================================ +22:49:55 FNo. Len. Field Value +22:49:55 ============================================================================ +22:49:55 [ 1] [ 4] [0810] +22:49:55 [ 7] [ 10] [0320155742] +22:49:55 [ 11] [ 6] [072401] +22:49:55 [ 37] [ 12] [579220724010] +22:49:55 [ 39] [ 2] [00] +22:49:55 [ 70] [ 3] [810] +22:49:55 ============================================================================ +22:49:55 Calculate Source COMM Id = 1 +22:49:55 ============================================================================ +22:49:55 + + +waiting on router queue for slot.... +22:50:06 ============================================================================ +22:50:06 Slot Id : <288> +22:50:06 Transaction Type : REQUEST +22:50:06 Received From : +22:50:06 ============================================================================ +22:50:06 FNo. Len. Field Value +22:50:06 ============================================================================ +22:50:06 [ 1] [ 4] [0800] +22:50:06 [ 7] [ 10] [0320034914] +22:50:06 [ 11] [ 6] [158878] +22:50:06 [ 70] [ 3] [301] +22:50:06 ============================================================================ +22:50:06 + + +waiting on router queue for slot.... +22:50:06 Sending to : +22:50:06 ============================================================================ +22:50:06 ============================================================================ +22:50:06 Slot Id : <288> +22:50:06 Transaction Type : RESPONSE +22:50:06 Received From : +22:50:06 ============================================================================ +22:50:06 FNo. Len. Field Value +22:50:06 ============================================================================ +22:50:06 [ 1] [ 4] [0810] +22:50:06 [ 7] [ 10] [0320034914] +22:50:06 [ 11] [ 6] [158878] +22:50:06 [ 39] [ 2] [00] +22:50:06 [ 70] [ 3] [301] +22:50:06 ============================================================================ +22:50:06 Calculate Source COMM Id = 2 +22:50:06 ============================================================================ +22:50:06 + + +waiting on router queue for slot.... +22:50:17 ============================================================================ +22:50:17 Slot Id : <310> +22:50:17 Transaction Type : REQUEST +22:50:17 Received From : +22:50:17 ============================================================================ +22:50:17 FNo. Len. Field Value +22:50:17 ============================================================================ +22:50:17 [ 1] [ 4] [0800] +22:50:17 [ 7] [ 10] [0320034925] +22:50:17 [ 11] [ 6] [158879] +22:50:17 [ 70] [ 3] [301] +22:50:17 ============================================================================ +22:50:17 + + +waiting on router queue for slot.... +22:50:17 Sending to : +22:50:17 ============================================================================ +22:50:17 ============================================================================ +22:50:17 Slot Id : <310> +22:50:17 Transaction Type : RESPONSE +22:50:17 Received From : +22:50:17 ============================================================================ +22:50:17 FNo. Len. Field Value +22:50:17 ============================================================================ +22:50:17 [ 1] [ 4] [0810] +22:50:17 [ 7] [ 10] [0320034925] +22:50:17 [ 11] [ 6] [158879] +22:50:17 [ 39] [ 2] [00] +22:50:17 [ 70] [ 3] [301] +22:50:17 ============================================================================ +22:50:17 Calculate Source COMM Id = 2 +22:50:17 ============================================================================ +22:50:17 + + +waiting on router queue for slot.... +22:50:32 ============================================================================ +22:50:32 Slot Id : <316> +22:50:32 Transaction Type : REQUEST +22:50:32 Received From : +22:50:32 ============================================================================ +22:50:32 FNo. Len. Field Value +22:50:32 ============================================================================ +22:50:32 [ 1] [ 4] [0800] +22:50:32 [ 7] [ 10] [0320034940] +22:50:32 [ 11] [ 6] [158880] +22:50:32 [ 70] [ 3] [301] +22:50:32 ============================================================================ +22:50:32 + + +waiting on router queue for slot.... +22:50:32 Sending to : +22:50:32 ============================================================================ +22:50:32 ============================================================================ +22:50:32 Slot Id : <316> +22:50:32 Transaction Type : RESPONSE +22:50:32 Received From : +22:50:32 ============================================================================ +22:50:32 FNo. Len. Field Value +22:50:32 ============================================================================ +22:50:32 [ 1] [ 4] [0810] +22:50:32 [ 7] [ 10] [0320034940] +22:50:32 [ 11] [ 6] [158880] +22:50:32 [ 39] [ 2] [00] +22:50:32 [ 70] [ 3] [301] +22:50:32 ============================================================================ +22:50:32 Calculate Source COMM Id = 2 +22:50:32 ============================================================================ +22:50:32 + + +waiting on router queue for slot.... +22:50:40 ============================================================================ +22:50:40 Slot Id : <317> +22:50:40 Transaction Type : REQUEST +22:50:40 Received From : +22:50:40 ============================================================================ +22:50:40 FNo. Len. Field Value +22:50:40 ============================================================================ +22:50:40 [ 1] [ 4] [0800] +22:50:40 [ 7] [ 10] [0321060230] +22:50:40 [ 11] [ 6] [230230] +22:50:40 [ 37] [ 12] [57923230230] +22:50:40 [ 70] [ 3] [301] +22:50:40 ============================================================================ +22:50:40 + + +waiting on router queue for slot.... +22:50:40 Sending to : +22:50:40 ============================================================================ +22:50:40 ============================================================================ +22:50:40 Slot Id : <317> +22:50:40 Transaction Type : RESPONSE +22:50:40 Received From : +22:50:40 ============================================================================ +22:50:40 FNo. Len. Field Value +22:50:40 ============================================================================ +22:50:40 [ 1] [ 4] [0810] +22:50:40 [ 7] [ 10] [0321060230] +22:50:40 [ 11] [ 6] [230230] +22:50:40 [ 37] [ 12] [579232302300] +22:50:40 [ 39] [ 2] [00] +22:50:40 [ 70] [ 3] [810] +22:50:40 ============================================================================ +22:50:40 Calculate Source COMM Id = 6 +22:50:40 ============================================================================ +22:50:40 + + +waiting on router queue for slot.... +22:50:43 ============================================================================ +22:50:43 Slot Id : <325> +22:50:43 Transaction Type : REQUEST +22:50:43 Received From : +22:50:43 ============================================================================ +22:50:43 FNo. Len. Field Value +22:50:43 ============================================================================ +22:50:43 [ 1] [ 4] [0800] +22:50:43 [ 7] [ 10] [0320034951] +22:50:43 [ 11] [ 6] [158881] +22:50:43 [ 70] [ 3] [301] +22:50:43 ============================================================================ +22:50:43 + + +waiting on router queue for slot.... +22:50:43 Sending to : +22:50:43 ============================================================================ +22:50:43 ============================================================================ +22:50:43 Slot Id : <325> +22:50:43 Transaction Type : RESPONSE +22:50:43 Received From : +22:50:43 ============================================================================ +22:50:43 FNo. Len. Field Value +22:50:43 ============================================================================ +22:50:43 [ 1] [ 4] [0810] +22:50:43 [ 7] [ 10] [0320034951] +22:50:43 [ 11] [ 6] [158881] +22:50:43 [ 39] [ 2] [00] +22:50:43 [ 70] [ 3] [301] +22:50:43 ============================================================================ +22:50:43 Calculate Source COMM Id = 2 +22:50:43 ============================================================================ +22:50:43 + + +waiting on router queue for slot.... +22:50:52 ============================================================================ +22:50:52 Slot Id : <318> +22:50:52 Transaction Type : REQUEST +22:50:52 Received From : +22:50:52 ============================================================================ +22:50:52 FNo. Len. Field Value +22:50:52 ============================================================================ +22:50:52 [ 1] [ 4] [0800] +22:50:52 [ 2] [ 5] [02531] +22:50:52 [ 3] [ 6] [579228] +22:50:52 [ 7] [ 10] [0320155052] +22:50:52 [ 11] [ 6] [807738] +22:50:52 [ 15] [ 10] [0320155052] +22:50:52 [ 37] [ 11] [57922807738] +22:50:52 [ 70] [ 3] [001] +22:50:52 ============================================================================ +22:50:52 + + +waiting on router queue for slot.... +22:50:52 ============================================================================ +22:50:52 Slot Id : <318> +22:50:52 Transaction Type : RESPONSE +22:50:52 Received From : +22:50:52 ============================================================================ +22:50:52 FNo. Len. Field Value +22:50:52 ============================================================================ +22:50:52 [ 1] [ 4] [0810] +22:50:52 [ 7] [ 10] [0320155052] +22:50:52 [ 11] [ 6] [807738] +22:50:52 [ 15] [ 4] [0320] +22:50:52 [ 37] [ 12] [57922807738] +22:50:52 [ 39] [ 2] [00] +22:50:52 [ 70] [ 3] [001] +22:50:52 ============================================================================ +22:50:52 Sending to : +22:50:52 ============================================================================ +22:50:52 + + +waiting on router queue for slot.... +22:50:54 ============================================================================ +22:50:54 Slot Id : <322> +22:50:54 Transaction Type : REQUEST +22:50:54 Received From : +22:50:54 ============================================================================ +22:50:54 FNo. Len. Field Value +22:50:54 ============================================================================ +22:50:54 [ 1] [ 4] [0800] +22:50:54 [ 7] [ 10] [0320035002] +22:50:54 [ 11] [ 6] [158882] +22:50:54 [ 70] [ 3] [301] +22:50:54 ============================================================================ +22:50:54 + + +waiting on router queue for slot.... +22:50:54 Sending to : +22:50:54 ============================================================================ +22:50:54 ============================================================================ +22:50:54 Slot Id : <322> +22:50:54 Transaction Type : RESPONSE +22:50:54 Received From : +22:50:54 ============================================================================ +22:50:54 FNo. Len. Field Value +22:50:54 ============================================================================ +22:50:54 [ 1] [ 4] [0810] +22:50:54 [ 7] [ 10] [0320035002] +22:50:54 [ 11] [ 6] [158882] +22:50:54 [ 39] [ 2] [00] +22:50:54 [ 70] [ 3] [301] +22:50:54 ============================================================================ +22:50:54 Calculate Source COMM Id = 2 +22:50:54 ============================================================================ +22:50:54 + + +waiting on router queue for slot.... +22:51:07 ============================================================================ +22:51:07 Slot Id : <297> +22:51:07 Transaction Type : REQUEST +22:51:07 Received From : +22:51:07 ============================================================================ +22:51:07 FNo. Len. Field Value +22:51:07 ============================================================================ +22:51:07 [ 1] [ 4] [0800] +22:51:07 [ 7] [ 10] [0320035013] +22:51:07 [ 11] [ 6] [158883] +22:51:07 [ 70] [ 3] [301] +22:51:07 ============================================================================ +22:51:07 + + +waiting on router queue for slot.... +22:51:07 Sending to : +22:51:07 ============================================================================ +22:51:07 ============================================================================ +22:51:07 Slot Id : <297> +22:51:07 Transaction Type : RESPONSE +22:51:07 Received From : +22:51:07 ============================================================================ +22:51:07 FNo. Len. Field Value +22:51:07 ============================================================================ +22:51:07 [ 1] [ 4] [0810] +22:51:07 [ 7] [ 10] [0320035013] +22:51:07 [ 11] [ 6] [158883] +22:51:07 [ 39] [ 2] [00] +22:51:07 [ 70] [ 3] [301] +22:51:07 ============================================================================ +22:51:07 Calculate Source COMM Id = 2 +22:51:07 ============================================================================ +22:51:07 + + +waiting on router queue for slot.... +22:51:21 ============================================================================ +22:51:21 Slot Id : <289> +22:51:21 Transaction Type : REQUEST +22:51:21 Received From : +22:51:21 ============================================================================ +22:51:21 FNo. Len. Field Value +22:51:21 ============================================================================ +22:51:21 [ 1] [ 4] [0800] +22:51:21 [ 7] [ 10] [0320154912] +22:51:21 [ 11] [ 6] [082885] +22:51:21 [ 37] [ 12] [57922082885] +22:51:21 [ 70] [ 3] [301] +22:51:21 ============================================================================ +22:51:21 + + +waiting on router queue for slot.... +22:51:21 Sending to : +22:51:21 ============================================================================ +22:51:21 ============================================================================ +22:51:21 Slot Id : <289> +22:51:21 Transaction Type : RESPONSE +22:51:21 Received From : +22:51:21 ============================================================================ +22:51:21 FNo. Len. Field Value +22:51:21 ============================================================================ +22:51:21 [ 1] [ 4] [0810] +22:51:21 [ 7] [ 10] [0320154912] +22:51:21 [ 11] [ 6] [082885] +22:51:21 [ 37] [ 12] [579220828850] +22:51:21 [ 39] [ 2] [00] +22:51:21 [ 70] [ 3] [810] +22:51:21 ============================================================================ +22:51:21 Calculate Source COMM Id = 4 +22:51:21 ============================================================================ +22:51:21 + + +waiting on router queue for slot.... +22:51:22 ============================================================================ +22:51:22 Slot Id : <315> +22:51:22 Transaction Type : REQUEST +22:51:22 Received From : +22:51:22 ============================================================================ +22:51:22 FNo. Len. Field Value +22:51:22 ============================================================================ +22:51:22 [ 1] [ 4] [0800] +22:51:22 [ 7] [ 10] [0320035031] +22:51:22 [ 11] [ 6] [158884] +22:51:22 [ 70] [ 3] [301] +22:51:22 ============================================================================ +22:51:22 + + +waiting on router queue for slot.... +22:51:22 Sending to : +22:51:22 ============================================================================ +22:51:22 ============================================================================ +22:51:22 Slot Id : <315> +22:51:22 Transaction Type : RESPONSE +22:51:22 Received From : +22:51:22 ============================================================================ +22:51:22 FNo. Len. Field Value +22:51:22 ============================================================================ +22:51:22 [ 1] [ 4] [0810] +22:51:22 [ 7] [ 10] [0320035031] +22:51:22 [ 11] [ 6] [158884] +22:51:22 [ 39] [ 2] [00] +22:51:22 [ 70] [ 3] [301] +22:51:22 ============================================================================ +22:51:22 Calculate Source COMM Id = 2 +22:51:22 ============================================================================ +22:51:22 + + +waiting on router queue for slot.... +22:51:33 ============================================================================ +22:51:33 Slot Id : <304> +22:51:33 Transaction Type : REQUEST +22:51:33 Received From : +22:51:33 ============================================================================ +22:51:33 FNo. Len. Field Value +22:51:33 ============================================================================ +22:51:33 [ 1] [ 4] [0800] +22:51:33 [ 7] [ 10] [0320035041] +22:51:33 [ 11] [ 6] [158885] +22:51:33 [ 70] [ 3] [301] +22:51:33 ============================================================================ +22:51:33 + + +waiting on router queue for slot.... +22:51:33 Sending to : +22:51:33 ============================================================================ +22:51:33 ============================================================================ +22:51:33 Slot Id : <304> +22:51:33 Transaction Type : RESPONSE +22:51:33 Received From : +22:51:33 ============================================================================ +22:51:33 FNo. Len. Field Value +22:51:33 ============================================================================ +22:51:33 [ 1] [ 4] [0810] +22:51:33 [ 7] [ 10] [0320035041] +22:51:33 [ 11] [ 6] [158885] +22:51:33 [ 39] [ 2] [00] +22:51:33 [ 70] [ 3] [301] +22:51:33 ============================================================================ +22:51:33 Calculate Source COMM Id = 2 +22:51:33 ============================================================================ +22:51:33 + + +waiting on router queue for slot.... +22:51:44 ============================================================================ +22:51:44 Slot Id : <326> +22:51:44 Transaction Type : REQUEST +22:51:44 Received From : +22:51:44 ============================================================================ +22:51:44 FNo. Len. Field Value +22:51:44 ============================================================================ +22:51:44 [ 1] [ 4] [0800] +22:51:44 [ 7] [ 10] [0320035052] +22:51:44 [ 11] [ 6] [158886] +22:51:44 [ 70] [ 3] [301] +22:51:44 ============================================================================ +22:51:44 + + +waiting on router queue for slot.... +22:51:44 Sending to : +22:51:44 ============================================================================ +22:51:44 ============================================================================ +22:51:44 Slot Id : <326> +22:51:44 Transaction Type : RESPONSE +22:51:44 Received From : +22:51:44 ============================================================================ +22:51:44 FNo. Len. Field Value +22:51:44 ============================================================================ +22:51:44 [ 1] [ 4] [0810] +22:51:44 [ 7] [ 10] [0320035052] +22:51:44 [ 11] [ 6] [158886] +22:51:44 [ 39] [ 2] [00] +22:51:44 [ 70] [ 3] [301] +22:51:44 ============================================================================ +22:51:44 Calculate Source COMM Id = 2 +22:51:44 ============================================================================ +22:51:44 + + +waiting on router queue for slot.... +22:51:45 ============================================================================ +22:51:45 Slot Id : <291> +22:51:45 Transaction Type : REQUEST +22:51:45 Received From : +22:51:45 ============================================================================ +22:51:45 FNo. Len. Field Value +22:51:45 ============================================================================ +22:51:45 [ 1] [ 4] [0800] +22:51:45 [ 7] [ 10] [0321060335] +22:51:45 [ 11] [ 6] [230335] +22:51:45 [ 37] [ 12] [57923230335] +22:51:45 [ 70] [ 3] [301] +22:51:45 ============================================================================ +22:51:45 + + +waiting on router queue for slot.... +22:51:45 Sending to : +22:51:45 ============================================================================ +22:51:45 ============================================================================ +22:51:45 Slot Id : <291> +22:51:45 Transaction Type : RESPONSE +22:51:45 Received From : +22:51:45 ============================================================================ +22:51:45 FNo. Len. Field Value +22:51:45 ============================================================================ +22:51:45 [ 1] [ 4] [0810] +22:51:45 [ 7] [ 10] [0321060335] +22:51:45 [ 11] [ 6] [230335] +22:51:45 [ 37] [ 12] [579232303350] +22:51:45 [ 39] [ 2] [00] +22:51:45 [ 70] [ 3] [810] +22:51:45 ============================================================================ +22:51:45 Calculate Source COMM Id = 6 +22:51:45 ============================================================================ +22:51:45 + + +waiting on router queue for slot.... +22:51:54 ============================================================================ +22:51:54 Slot Id : <327> +22:51:54 Transaction Type : REQUEST +22:51:54 Received From : +22:51:54 ============================================================================ +22:51:54 FNo. Len. Field Value +22:51:54 ============================================================================ +22:51:54 [ 1] [ 4] [0800] +22:51:54 [ 2] [ 5] [02531] +22:51:54 [ 3] [ 6] [579228] +22:51:54 [ 7] [ 10] [0320155154] +22:51:54 [ 11] [ 6] [807739] +22:51:54 [ 15] [ 10] [0320155154] +22:51:54 [ 37] [ 11] [57922807739] +22:51:54 [ 70] [ 3] [001] +22:51:54 ============================================================================ +22:51:54 + + +waiting on router queue for slot.... +22:51:54 ============================================================================ +22:51:54 Slot Id : <327> +22:51:54 Transaction Type : RESPONSE +22:51:54 Received From : +22:51:54 ============================================================================ +22:51:54 FNo. Len. Field Value +22:51:54 ============================================================================ +22:51:54 [ 1] [ 4] [0810] +22:51:54 [ 7] [ 10] [0320155154] +22:51:54 [ 11] [ 6] [807739] +22:51:54 [ 15] [ 4] [0320] +22:51:54 [ 37] [ 12] [57922807739] +22:51:54 [ 39] [ 2] [00] +22:51:54 [ 70] [ 3] [001] +22:51:54 ============================================================================ +22:51:54 Sending to : +22:51:54 ============================================================================ +22:51:54 + + +waiting on router queue for slot.... +22:51:56 ============================================================================ +22:51:56 Slot Id : <285> +22:51:56 Transaction Type : REQUEST +22:51:56 Received From : +22:51:56 ============================================================================ +22:51:56 FNo. Len. Field Value +22:51:56 ============================================================================ +22:51:56 [ 1] [ 4] [0800] +22:51:56 [ 7] [ 10] [0320035104] +22:51:56 [ 11] [ 6] [158887] +22:51:56 [ 70] [ 3] [301] +22:51:56 ============================================================================ +22:51:56 + + +waiting on router queue for slot.... +22:51:56 Sending to : +22:51:56 ============================================================================ +22:51:56 ============================================================================ +22:51:56 Slot Id : <285> +22:51:56 Transaction Type : RESPONSE +22:51:56 Received From : +22:51:56 ============================================================================ +22:51:56 FNo. Len. Field Value +22:51:56 ============================================================================ +22:51:56 [ 1] [ 4] [0810] +22:51:56 [ 7] [ 10] [0320035104] +22:51:56 [ 11] [ 6] [158887] +22:51:56 [ 39] [ 2] [00] +22:51:56 [ 70] [ 3] [301] +22:51:56 ============================================================================ +22:51:56 Calculate Source COMM Id = 2 +22:51:56 ============================================================================ +22:51:56 + + +waiting on router queue for slot.... +22:52:07 ============================================================================ +22:52:07 Slot Id : <331> +22:52:07 Transaction Type : REQUEST +22:52:07 Received From : +22:52:07 ============================================================================ +22:52:07 FNo. Len. Field Value +22:52:07 ============================================================================ +22:52:07 [ 1] [ 4] [0800] +22:52:07 [ 7] [ 10] [0320035115] +22:52:07 [ 11] [ 6] [158888] +22:52:07 [ 70] [ 3] [301] +22:52:07 ============================================================================ +22:52:07 + + +waiting on router queue for slot.... +22:52:07 Sending to : +22:52:07 ============================================================================ +22:52:07 ============================================================================ +22:52:07 Slot Id : <331> +22:52:07 Transaction Type : RESPONSE +22:52:07 Received From : +22:52:07 ============================================================================ +22:52:07 FNo. Len. Field Value +22:52:07 ============================================================================ +22:52:07 [ 1] [ 4] [0810] +22:52:07 [ 7] [ 10] [0320035115] +22:52:07 [ 11] [ 6] [158888] +22:52:07 [ 39] [ 2] [00] +22:52:07 [ 70] [ 3] [301] +22:52:07 ============================================================================ +22:52:07 Calculate Source COMM Id = 2 +22:52:07 ============================================================================ +22:52:07 + + +waiting on router queue for slot.... +22:52:21 ============================================================================ +22:52:21 Slot Id : <301> +22:52:21 Transaction Type : REQUEST +22:52:21 Received From : +22:52:21 ============================================================================ +22:52:21 FNo. Len. Field Value +22:52:21 ============================================================================ +22:52:21 [ 1] [ 4] [0800] +22:52:21 [ 7] [ 10] [0320035129] +22:52:21 [ 11] [ 6] [158889] +22:52:21 [ 70] [ 3] [301] +22:52:21 ============================================================================ +22:52:21 + + +waiting on router queue for slot.... +22:52:21 Sending to : +22:52:21 ============================================================================ +22:52:21 ============================================================================ +22:52:21 Slot Id : <301> +22:52:21 Transaction Type : RESPONSE +22:52:21 Received From : +22:52:21 ============================================================================ +22:52:21 FNo. Len. Field Value +22:52:21 ============================================================================ +22:52:21 [ 1] [ 4] [0810] +22:52:21 [ 7] [ 10] [0320035129] +22:52:21 [ 11] [ 6] [158889] +22:52:21 [ 39] [ 2] [00] +22:52:21 [ 70] [ 3] [301] +22:52:21 ============================================================================ +22:52:21 Calculate Source COMM Id = 2 +22:52:21 ============================================================================ +22:52:21 + + +waiting on router queue for slot.... +22:52:35 ============================================================================ +22:52:35 Slot Id : <305> +22:52:35 Transaction Type : REQUEST +22:52:35 Received From : +22:52:35 ============================================================================ +22:52:35 FNo. Len. Field Value +22:52:35 ============================================================================ +22:52:35 [ 1] [ 4] [0800] +22:52:35 [ 7] [ 10] [0320035143] +22:52:35 [ 11] [ 6] [158890] +22:52:35 [ 70] [ 3] [301] +22:52:35 ============================================================================ +22:52:35 + + +waiting on router queue for slot.... +22:52:35 Sending to : +22:52:35 ============================================================================ +22:52:35 ============================================================================ +22:52:35 Slot Id : <305> +22:52:35 Transaction Type : RESPONSE +22:52:35 Received From : +22:52:35 ============================================================================ +22:52:35 FNo. Len. Field Value +22:52:35 ============================================================================ +22:52:35 [ 1] [ 4] [0810] +22:52:35 [ 7] [ 10] [0320035143] +22:52:35 [ 11] [ 6] [158890] +22:52:35 [ 39] [ 2] [00] +22:52:35 [ 70] [ 3] [301] +22:52:35 ============================================================================ +22:52:35 Calculate Source COMM Id = 2 +22:52:35 ============================================================================ +22:52:35 + + +waiting on router queue for slot.... +22:52:47 ============================================================================ +22:52:47 Slot Id : <314> +22:52:47 Transaction Type : REQUEST +22:52:47 Received From : +22:52:47 ============================================================================ +22:52:47 FNo. Len. Field Value +22:52:47 ============================================================================ +22:52:47 [ 1] [ 4] [0800] +22:52:47 [ 7] [ 10] [0320035155] +22:52:47 [ 11] [ 6] [158891] +22:52:47 [ 70] [ 3] [301] +22:52:47 ============================================================================ +22:52:47 + + +waiting on router queue for slot.... +22:52:47 Sending to : +22:52:47 ============================================================================ +22:52:47 ============================================================================ +22:52:47 Slot Id : <314> +22:52:47 Transaction Type : RESPONSE +22:52:47 Received From : +22:52:47 ============================================================================ +22:52:47 FNo. Len. Field Value +22:52:47 ============================================================================ +22:52:47 [ 1] [ 4] [0810] +22:52:47 [ 7] [ 10] [0320035155] +22:52:47 [ 11] [ 6] [158891] +22:52:47 [ 39] [ 2] [00] +22:52:47 [ 70] [ 3] [301] +22:52:47 ============================================================================ +22:52:47 Calculate Source COMM Id = 2 +22:52:47 ============================================================================ +22:52:47 + + +waiting on router queue for slot.... +22:52:50 ============================================================================ +22:52:50 Slot Id : <302> +22:52:50 Transaction Type : REQUEST +22:52:50 Received From : +22:52:50 ============================================================================ +22:52:50 FNo. Len. Field Value +22:52:50 ============================================================================ +22:52:50 [ 1] [ 4] [0800] +22:52:50 [ 7] [ 10] [0321060440] +22:52:50 [ 11] [ 6] [230440] +22:52:50 [ 37] [ 12] [57923230440] +22:52:50 [ 70] [ 3] [301] +22:52:50 ============================================================================ +22:52:50 + + +waiting on router queue for slot.... +22:52:50 Sending to : +22:52:50 ============================================================================ +22:52:50 ============================================================================ +22:52:50 Slot Id : <302> +22:52:50 Transaction Type : RESPONSE +22:52:50 Received From : +22:52:50 ============================================================================ +22:52:50 FNo. Len. Field Value +22:52:50 ============================================================================ +22:52:50 [ 1] [ 4] [0810] +22:52:50 [ 7] [ 10] [0321060440] +22:52:50 [ 11] [ 6] [230440] +22:52:50 [ 37] [ 12] [579232304400] +22:52:50 [ 39] [ 2] [00] +22:52:50 [ 70] [ 3] [810] +22:52:50 ============================================================================ +22:52:50 Calculate Source COMM Id = 6 +22:52:50 ============================================================================ +22:52:50 + + +waiting on router queue for slot.... +22:52:52 ============================================================================ +22:52:52 Slot Id : <292> +22:52:52 Transaction Type : REQUEST +22:52:52 Received From : +22:52:52 ============================================================================ +22:52:52 FNo. Len. Field Value +22:52:52 ============================================================================ +22:52:52 [ 1] [ 4] [0200] +22:52:52 [ 2] [ 16] [6213544001958708] +22:52:52 [ 3] [ 6] [010000] +22:52:52 [ 4] [ 12] [000100000000] +22:52:52 [ 7] [ 10] [0320225043] +22:52:52 [ 11] [ 6] [958057] +22:52:52 [ 12] [ 6] [225043] +22:52:52 [ 13] [ 4] [0320] +22:52:52 [ 15] [ 4] [0320] +22:52:52 [ 18] [ 4] [6011] +22:52:52 [ 19] [ 3] [418] +22:52:52 [ 22] [ 3] [021] +22:52:52 [ 25] [ 2] [01] +22:52:52 [ 28] [ 9] [D00002000] +22:52:52 [ 32] [ 6] [668899] +22:52:52 [ 35] [ 32] [6213544001958708=491212015870785] +22:52:52 [ 37] [ 12] [507900147019] +22:52:52 [ 41] [ 8] [03020005] +22:52:52 [ 42] [ 15] [APT ] +22:52:52 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +22:52:52 [ 49] [ 3] [418] +22:52:52 [ 52] [ 16] [361B3DCE0446237D] +22:52:52 ============================================================================ +22:52:52 + + +waiting on router queue for slot.... +22:52:52 Sending to : +22:52:52 ============================================================================ +22:52:52 Sending to : +22:52:52 ============================================================================ +22:52:52 ============================================================================ +22:52:52 Slot Id : <292> +22:52:52 Transaction Type : REQUEST +22:52:52 Received From : +22:52:52 ============================================================================ +22:52:52 FNo. Len. Field Value +22:52:52 ============================================================================ +22:52:52 [ 1] [ 4] [0200] +22:52:52 [ 2] [ 16] [6213544001958708] +22:52:52 [ 3] [ 6] [010000] +22:52:52 [ 4] [ 12] [000100000000] +22:52:52 [ 7] [ 10] [0320225043] +22:52:52 [ 11] [ 6] [958057] +22:52:52 [ 12] [ 6] [225043] +22:52:52 [ 13] [ 4] [0320] +22:52:52 [ 15] [ 4] [0320] +22:52:52 [ 18] [ 4] [6011] +22:52:52 [ 19] [ 3] [418] +22:52:52 [ 22] [ 3] [021] +22:52:52 [ 25] [ 2] [01] +22:52:52 [ 28] [ 9] [D00002000] +22:52:52 [ 32] [ 6] [668899] +22:52:52 [ 35] [ 32] [6213544001958708=491212015870785] +22:52:52 [ 37] [ 12] [507900147019] +22:52:52 [ 41] [ 8] [03020005] +22:52:52 [ 42] [ 15] [APT ] +22:52:52 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +22:52:52 [ 49] [ 3] [418] +22:52:52 [ 52] [ 16] [361B3DCE0446237D] +22:52:52 ============================================================================ +22:52:52 + + +waiting on router queue for slot.... +22:52:52 Sending to : +22:52:52 ============================================================================ +22:52:52 ============================================================================ +22:52:52 Slot Id : <292> +22:52:52 Transaction Type : REQUEST +22:52:52 Received From : +22:52:52 ============================================================================ +22:52:52 FNo. Len. Field Value +22:52:52 ============================================================================ +22:52:52 [ 1] [ 4] [0200] +22:52:52 [ 2] [ 16] [6213544001958708] +22:52:52 [ 3] [ 6] [010000] +22:52:52 [ 4] [ 12] [000100000000] +22:52:52 [ 7] [ 10] [0320225043] +22:52:52 [ 11] [ 6] [958057] +22:52:52 [ 12] [ 6] [225043] +22:52:52 [ 13] [ 4] [0320] +22:52:52 [ 15] [ 4] [0320] +22:52:52 [ 18] [ 4] [6011] +22:52:52 [ 19] [ 3] [418] +22:52:52 [ 22] [ 3] [021] +22:52:52 [ 25] [ 2] [01] +22:52:52 [ 28] [ 9] [D00002000] +22:52:52 [ 32] [ 6] [668899] +22:52:52 [ 35] [ 32] [6213544001958708=491212015870785] +22:52:52 [ 37] [ 12] [507900147019] +22:52:52 [ 41] [ 8] [03020005] +22:52:52 [ 42] [ 15] [APT ] +22:52:52 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +22:52:52 [ 49] [ 3] [418] +22:52:52 [ 52] [ 16] [FCC6ED79E6604F06] +22:52:52 ============================================================================ +22:52:52 + + +waiting on router queue for slot.... +22:52:52 Sending to : <0> +22:52:52 ============================================================================ +22:52:53 ============================================================================ +22:52:53 Slot Id : <292> +22:52:53 Transaction Type : RESPONSE +22:52:53 Received From : +22:52:53 ============================================================================ +22:52:53 FNo. Len. Field Value +22:52:53 ============================================================================ +22:52:53 [ 1] [ 4] [0210] +22:52:53 [ 2] [ 16] [6213544001958708] +22:52:53 [ 3] [ 6] [010000] +22:52:53 [ 4] [ 12] [000100000000] +22:52:53 [ 7] [ 10] [0320225043] +22:52:53 [ 11] [ 6] [958057] +22:52:53 [ 12] [ 6] [225043] +22:52:53 [ 13] [ 4] [0320] +22:52:53 [ 15] [ 4] [0320] +22:52:53 [ 18] [ 4] [6011] +22:52:53 [ 19] [ 3] [418] +22:52:53 [ 32] [ 6] [668899] +22:52:53 [ 35] [ 32] [6213544001958708=491212015870785] +22:52:53 [ 37] [ 12] [507900147019] +22:52:53 [ 38] [ 6] [078367] +22:52:53 [ 39] [ 2] [00] +22:52:53 [ 41] [ 8] [03020005] +22:52:53 [ 49] [ 3] [418] +22:52:53 [ 54] [ 40] [0001418C0003802551670002418C000280055167] +22:52:53 ============================================================================ +22:52:53 Sending to : +22:52:53 ============================================================================ +22:52:53 + + +waiting on router queue for slot.... +22:52:55 ============================================================================ +22:52:55 Slot Id : <292> +22:52:55 Transaction Type : RESPONSE +22:52:55 Received From : +22:52:55 ============================================================================ +22:52:55 FNo. Len. Field Value +22:52:55 ============================================================================ +22:52:55 [ 1] [ 4] [0210] +22:52:55 [ 2] [ 16] [6213544001958708] +22:52:55 [ 3] [ 6] [010000] +22:52:55 [ 4] [ 12] [000100000000] +22:52:55 [ 7] [ 10] [0320225043] +22:52:55 [ 11] [ 6] [958057] +22:52:55 [ 12] [ 6] [225043] +22:52:55 [ 13] [ 4] [0320] +22:52:55 [ 15] [ 4] [0320] +22:52:55 [ 18] [ 4] [6011] +22:52:55 [ 19] [ 3] [418] +22:52:55 [ 32] [ 6] [668899] +22:52:55 [ 35] [ 32] [6213544001958708=491212015870785] +22:52:55 [ 37] [ 12] [507900147019] +22:52:55 [ 38] [ 6] [078367] +22:52:55 [ 39] [ 2] [00] +22:52:55 [ 41] [ 8] [03020005] +22:52:55 [ 49] [ 3] [418] +22:52:55 [ 54] [ 40] [0001418C0003802551670002418C000280055167] +22:52:55 ============================================================================ +22:52:55 Calculate Source COMM Id = 4 +22:52:55 ============================================================================ +22:52:55 + + +waiting on router queue for slot.... +22:52:56 ============================================================================ +22:52:56 Slot Id : <333> +22:52:56 Transaction Type : REQUEST +22:52:56 Received From : +22:52:56 ============================================================================ +22:52:56 FNo. Len. Field Value +22:52:56 ============================================================================ +22:52:56 [ 1] [ 4] [0800] +22:52:56 [ 2] [ 5] [02531] +22:52:56 [ 3] [ 6] [579228] +22:52:56 [ 7] [ 10] [0320155256] +22:52:56 [ 11] [ 6] [807740] +22:52:56 [ 15] [ 10] [0320155256] +22:52:56 [ 37] [ 11] [57922807740] +22:52:56 [ 70] [ 3] [001] +22:52:56 ============================================================================ +22:52:56 + + +waiting on router queue for slot.... +22:52:56 ============================================================================ +22:52:56 Slot Id : <333> +22:52:56 Transaction Type : RESPONSE +22:52:56 Received From : +22:52:56 ============================================================================ +22:52:56 FNo. Len. Field Value +22:52:56 ============================================================================ +22:52:56 [ 1] [ 4] [0810] +22:52:56 [ 7] [ 10] [0320155256] +22:52:56 [ 11] [ 6] [807740] +22:52:56 [ 15] [ 4] [0320] +22:52:56 [ 37] [ 12] [57922807740] +22:52:56 [ 39] [ 2] [00] +22:52:56 [ 70] [ 3] [001] +22:52:56 ============================================================================ +22:52:56 Sending to : +22:52:56 ============================================================================ +22:52:56 + + +waiting on router queue for slot.... +22:53:01 ============================================================================ +22:53:01 Slot Id : <335> +22:53:01 Transaction Type : REQUEST +22:53:01 Received From : +22:53:01 ============================================================================ +22:53:01 FNo. Len. Field Value +22:53:01 ============================================================================ +22:53:01 [ 1] [ 4] [0800] +22:53:01 [ 7] [ 10] [0320035209] +22:53:01 [ 11] [ 6] [158892] +22:53:01 [ 70] [ 3] [301] +22:53:01 ============================================================================ +22:53:01 + + +waiting on router queue for slot.... +22:53:01 Sending to : +22:53:01 ============================================================================ +22:53:01 ============================================================================ +22:53:01 Slot Id : <335> +22:53:01 Transaction Type : RESPONSE +22:53:01 Received From : +22:53:01 ============================================================================ +22:53:01 FNo. Len. Field Value +22:53:01 ============================================================================ +22:53:01 [ 1] [ 4] [0810] +22:53:01 [ 7] [ 10] [0320035209] +22:53:01 [ 11] [ 6] [158892] +22:53:01 [ 39] [ 2] [00] +22:53:01 [ 70] [ 3] [301] +22:53:01 ============================================================================ +22:53:01 Calculate Source COMM Id = 2 +22:53:01 ============================================================================ +22:53:01 + + +waiting on router queue for slot.... +22:53:12 ============================================================================ +22:53:12 Slot Id : <262> +22:53:12 Transaction Type : REQUEST +22:53:12 Received From : +22:53:12 ============================================================================ +22:53:12 FNo. Len. Field Value +22:53:12 ============================================================================ +22:53:12 [ 1] [ 4] [0800] +22:53:12 [ 7] [ 10] [0320035220] +22:53:12 [ 11] [ 6] [158893] +22:53:12 [ 70] [ 3] [301] +22:53:12 ============================================================================ +22:53:12 + + +waiting on router queue for slot.... +22:53:12 Sending to : +22:53:12 ============================================================================ +22:53:12 ============================================================================ +22:53:12 Slot Id : <262> +22:53:12 Transaction Type : RESPONSE +22:53:12 Received From : +22:53:12 ============================================================================ +22:53:12 FNo. Len. Field Value +22:53:12 ============================================================================ +22:53:12 [ 1] [ 4] [0810] +22:53:12 [ 7] [ 10] [0320035220] +22:53:12 [ 11] [ 6] [158893] +22:53:12 [ 39] [ 2] [00] +22:53:12 [ 70] [ 3] [301] +22:53:12 ============================================================================ +22:53:12 Calculate Source COMM Id = 2 +22:53:12 ============================================================================ +22:53:12 + + +waiting on router queue for slot.... +22:53:22 ============================================================================ +22:53:22 Slot Id : <334> +22:53:22 Transaction Type : REQUEST +22:53:22 Received From : +22:53:22 ============================================================================ +22:53:22 FNo. Len. Field Value +22:53:22 ============================================================================ +22:53:22 [ 1] [ 4] [0800] +22:53:22 [ 7] [ 10] [0320035231] +22:53:22 [ 11] [ 6] [158894] +22:53:22 [ 70] [ 3] [301] +22:53:22 ============================================================================ +22:53:22 + + +waiting on router queue for slot.... +22:53:22 Sending to : +22:53:22 ============================================================================ +22:53:22 ============================================================================ +22:53:22 Slot Id : <334> +22:53:22 Transaction Type : RESPONSE +22:53:22 Received From : +22:53:22 ============================================================================ +22:53:22 FNo. Len. Field Value +22:53:22 ============================================================================ +22:53:22 [ 1] [ 4] [0810] +22:53:22 [ 7] [ 10] [0320035231] +22:53:22 [ 11] [ 6] [158894] +22:53:22 [ 39] [ 2] [00] +22:53:22 [ 70] [ 3] [301] +22:53:22 ============================================================================ +22:53:22 Calculate Source COMM Id = 2 +22:53:22 ============================================================================ +22:53:22 + + +waiting on router queue for slot.... +22:53:33 ============================================================================ +22:53:33 Slot Id : <336> +22:53:33 Transaction Type : REQUEST +22:53:33 Received From : +22:53:33 ============================================================================ +22:53:33 FNo. Len. Field Value +22:53:33 ============================================================================ +22:53:33 [ 1] [ 4] [0800] +22:53:33 [ 7] [ 10] [0320035241] +22:53:33 [ 11] [ 6] [158895] +22:53:33 [ 70] [ 3] [301] +22:53:33 ============================================================================ +22:53:33 + + +waiting on router queue for slot.... +22:53:33 Sending to : +22:53:33 ============================================================================ +22:53:33 ============================================================================ +22:53:33 Slot Id : <336> +22:53:33 Transaction Type : RESPONSE +22:53:33 Received From : +22:53:33 ============================================================================ +22:53:33 FNo. Len. Field Value +22:53:33 ============================================================================ +22:53:33 [ 1] [ 4] [0810] +22:53:33 [ 7] [ 10] [0320035241] +22:53:33 [ 11] [ 6] [158895] +22:53:33 [ 39] [ 2] [00] +22:53:33 [ 70] [ 3] [301] +22:53:33 ============================================================================ +22:53:33 Calculate Source COMM Id = 2 +22:53:33 ============================================================================ +22:53:33 + + +waiting on router queue for slot.... +22:53:43 ============================================================================ +22:53:43 Slot Id : <320> +22:53:43 Transaction Type : REQUEST +22:53:43 Received From : +22:53:43 ============================================================================ +22:53:43 FNo. Len. Field Value +22:53:43 ============================================================================ +22:53:43 [ 1] [ 4] [0800] +22:53:43 [ 7] [ 10] [0320035251] +22:53:43 [ 11] [ 6] [158896] +22:53:43 [ 70] [ 3] [301] +22:53:43 ============================================================================ +22:53:43 + + +waiting on router queue for slot.... +22:53:43 Sending to : +22:53:43 ============================================================================ +22:53:43 ============================================================================ +22:53:43 Slot Id : <320> +22:53:43 Transaction Type : RESPONSE +22:53:43 Received From : +22:53:43 ============================================================================ +22:53:43 FNo. Len. Field Value +22:53:43 ============================================================================ +22:53:43 [ 1] [ 4] [0810] +22:53:43 [ 7] [ 10] [0320035251] +22:53:43 [ 11] [ 6] [158896] +22:53:43 [ 39] [ 2] [00] +22:53:43 [ 70] [ 3] [301] +22:53:43 ============================================================================ +22:53:43 Calculate Source COMM Id = 2 +22:53:43 ============================================================================ +22:53:43 + + +waiting on router queue for slot.... +22:53:54 ============================================================================ +22:53:54 Slot Id : <321> +22:53:54 Transaction Type : REQUEST +22:53:54 Received From : +22:53:54 ============================================================================ +22:53:54 FNo. Len. Field Value +22:53:54 ============================================================================ +22:53:54 [ 1] [ 4] [0800] +22:53:54 [ 7] [ 10] [0320035302] +22:53:54 [ 11] [ 6] [158897] +22:53:54 [ 70] [ 3] [301] +22:53:54 ============================================================================ +22:53:54 + + +waiting on router queue for slot.... +22:53:54 Sending to : +22:53:54 ============================================================================ +22:53:54 ============================================================================ +22:53:54 Slot Id : <321> +22:53:54 Transaction Type : RESPONSE +22:53:54 Received From : +22:53:54 ============================================================================ +22:53:54 FNo. Len. Field Value +22:53:54 ============================================================================ +22:53:54 [ 1] [ 4] [0810] +22:53:54 [ 7] [ 10] [0320035302] +22:53:54 [ 11] [ 6] [158897] +22:53:54 [ 39] [ 2] [00] +22:53:54 [ 70] [ 3] [301] +22:53:54 ============================================================================ +22:53:54 Calculate Source COMM Id = 2 +22:53:54 ============================================================================ +22:53:54 + + +waiting on router queue for slot.... +22:53:55 ============================================================================ +22:53:55 Slot Id : <342> +22:53:55 Transaction Type : REQUEST +22:53:55 Received From : +22:53:55 ============================================================================ +22:53:55 FNo. Len. Field Value +22:53:55 ============================================================================ +22:53:55 [ 1] [ 4] [0800] +22:53:55 [ 7] [ 10] [0321060545] +22:53:55 [ 11] [ 6] [230545] +22:53:55 [ 37] [ 12] [57923230545] +22:53:55 [ 70] [ 3] [301] +22:53:55 ============================================================================ +22:53:55 + + +waiting on router queue for slot.... +22:53:55 Sending to : +22:53:55 ============================================================================ +22:53:55 ============================================================================ +22:53:55 Slot Id : <342> +22:53:55 Transaction Type : RESPONSE +22:53:55 Received From : +22:53:55 ============================================================================ +22:53:55 FNo. Len. Field Value +22:53:55 ============================================================================ +22:53:55 [ 1] [ 4] [0810] +22:53:55 [ 7] [ 10] [0321060545] +22:53:55 [ 11] [ 6] [230545] +22:53:55 [ 37] [ 12] [579232305450] +22:53:55 [ 39] [ 2] [00] +22:53:55 [ 70] [ 3] [810] +22:53:55 ============================================================================ +22:53:55 Calculate Source COMM Id = 6 +22:53:55 ============================================================================ +22:53:55 + + +waiting on router queue for slot.... +22:53:58 ============================================================================ +22:53:58 Slot Id : <341> +22:53:58 Transaction Type : REQUEST +22:53:58 Received From : +22:53:58 ============================================================================ +22:53:58 FNo. Len. Field Value +22:53:58 ============================================================================ +22:53:58 [ 1] [ 4] [0800] +22:53:58 [ 2] [ 5] [02531] +22:53:58 [ 3] [ 6] [579228] +22:53:58 [ 7] [ 10] [0320155358] +22:53:58 [ 11] [ 6] [807741] +22:53:58 [ 15] [ 10] [0320155358] +22:53:58 [ 37] [ 11] [57922807741] +22:53:58 [ 70] [ 3] [001] +22:53:58 ============================================================================ +22:53:58 + + +waiting on router queue for slot.... +22:53:58 ============================================================================ +22:53:58 Slot Id : <341> +22:53:58 Transaction Type : RESPONSE +22:53:58 Received From : +22:53:58 ============================================================================ +22:53:58 FNo. Len. Field Value +22:53:58 ============================================================================ +22:53:58 [ 1] [ 4] [0810] +22:53:58 [ 7] [ 10] [0320155358] +22:53:58 [ 11] [ 6] [807741] +22:53:58 [ 15] [ 4] [0320] +22:53:58 [ 37] [ 12] [57922807741] +22:53:58 [ 39] [ 2] [00] +22:53:58 [ 70] [ 3] [001] +22:53:58 ============================================================================ +22:53:58 Sending to : +22:53:58 ============================================================================ +22:53:58 + + +waiting on router queue for slot.... +22:54:05 ============================================================================ +22:54:05 Slot Id : <268> +22:54:05 Transaction Type : REQUEST +22:54:05 Received From : +22:54:05 ============================================================================ +22:54:05 FNo. Len. Field Value +22:54:05 ============================================================================ +22:54:05 [ 1] [ 4] [0800] +22:54:05 [ 7] [ 10] [0320035313] +22:54:05 [ 11] [ 6] [158898] +22:54:05 [ 70] [ 3] [301] +22:54:05 ============================================================================ +22:54:05 + + +waiting on router queue for slot.... +22:54:05 Sending to : +22:54:05 ============================================================================ +22:54:05 ============================================================================ +22:54:05 Slot Id : <268> +22:54:05 Transaction Type : RESPONSE +22:54:05 Received From : +22:54:05 ============================================================================ +22:54:05 FNo. Len. Field Value +22:54:05 ============================================================================ +22:54:05 [ 1] [ 4] [0810] +22:54:05 [ 7] [ 10] [0320035313] +22:54:05 [ 11] [ 6] [158898] +22:54:05 [ 39] [ 2] [00] +22:54:05 [ 70] [ 3] [301] +22:54:05 ============================================================================ +22:54:05 Calculate Source COMM Id = 2 +22:54:05 ============================================================================ +22:54:05 + + +waiting on router queue for slot.... +22:54:16 ============================================================================ +22:54:16 Slot Id : <323> +22:54:16 Transaction Type : REQUEST +22:54:16 Received From : +22:54:16 ============================================================================ +22:54:16 FNo. Len. Field Value +22:54:16 ============================================================================ +22:54:16 [ 1] [ 4] [0800] +22:54:16 [ 7] [ 10] [0320035324] +22:54:16 [ 11] [ 6] [158899] +22:54:16 [ 70] [ 3] [301] +22:54:16 ============================================================================ +22:54:16 + + +waiting on router queue for slot.... +22:54:16 Sending to : +22:54:16 ============================================================================ +22:54:16 ============================================================================ +22:54:16 Slot Id : <323> +22:54:16 Transaction Type : RESPONSE +22:54:16 Received From : +22:54:16 ============================================================================ +22:54:16 FNo. Len. Field Value +22:54:16 ============================================================================ +22:54:16 [ 1] [ 4] [0810] +22:54:16 [ 7] [ 10] [0320035324] +22:54:16 [ 11] [ 6] [158899] +22:54:16 [ 39] [ 2] [00] +22:54:16 [ 70] [ 3] [301] +22:54:16 ============================================================================ +22:54:16 Calculate Source COMM Id = 2 +22:54:16 ============================================================================ +22:54:16 + + +waiting on router queue for slot.... +22:54:27 ============================================================================ +22:54:27 Slot Id : <352> +22:54:27 Transaction Type : REQUEST +22:54:27 Received From : +22:54:27 ============================================================================ +22:54:27 FNo. Len. Field Value +22:54:27 ============================================================================ +22:54:27 [ 1] [ 4] [0800] +22:54:27 [ 7] [ 10] [0320035334] +22:54:27 [ 11] [ 6] [158900] +22:54:27 [ 70] [ 3] [301] +22:54:27 ============================================================================ +22:54:27 + + +waiting on router queue for slot.... +22:54:27 Sending to : +22:54:27 ============================================================================ +22:54:27 ============================================================================ +22:54:27 Slot Id : <352> +22:54:27 Transaction Type : RESPONSE +22:54:27 Received From : +22:54:27 ============================================================================ +22:54:27 FNo. Len. Field Value +22:54:27 ============================================================================ +22:54:27 [ 1] [ 4] [0810] +22:54:27 [ 7] [ 10] [0320035334] +22:54:27 [ 11] [ 6] [158900] +22:54:27 [ 39] [ 2] [00] +22:54:27 [ 70] [ 3] [301] +22:54:27 ============================================================================ +22:54:27 Calculate Source COMM Id = 2 +22:54:27 ============================================================================ +22:54:27 + + +waiting on router queue for slot.... +22:54:30 ============================================================================ +22:54:30 Slot Id : <339> +22:54:30 Transaction Type : REQUEST +22:54:30 Received From : +22:54:30 ============================================================================ +22:54:30 FNo. Len. Field Value +22:54:30 ============================================================================ +22:54:30 [ 1] [ 4] [0800] +22:54:30 [ 7] [ 10] [0320225417] +22:54:30 [ 11] [ 6] [051272] +22:54:30 [ 37] [ 12] [507922051272] +22:54:30 [ 70] [ 3] [ ] +22:54:30 ============================================================================ +22:54:30 + + +waiting on router queue for slot.... +22:54:30 Sending to : +22:54:30 ============================================================================ +22:54:30 ============================================================================ +22:54:30 Slot Id : <339> +22:54:30 Transaction Type : RESPONSE +22:54:30 Received From : +22:54:30 ============================================================================ +22:54:30 FNo. Len. Field Value +22:54:30 ============================================================================ +22:54:30 [ 1] [ 4] [0810] +22:54:30 [ 7] [ 10] [0320225417] +22:54:30 [ 11] [ 6] [051272] +22:54:30 [ 37] [ 12] [507922051272] +22:54:30 [ 39] [ 2] [91] +22:54:30 [ 70] [ 3] [ ] +22:54:30 ============================================================================ +22:54:30 Calculate Source COMM Id = 3 +22:54:30 ============================================================================ +22:54:30 + + +waiting on router queue for slot.... +22:54:42 ============================================================================ +22:54:42 Slot Id : <347> +22:54:42 Transaction Type : REQUEST +22:54:42 Received From : +22:54:42 ============================================================================ +22:54:42 FNo. Len. Field Value +22:54:42 ============================================================================ +22:54:42 [ 1] [ 4] [0800] +22:54:42 [ 7] [ 10] [0320035351] +22:54:42 [ 11] [ 6] [158901] +22:54:42 [ 70] [ 3] [301] +22:54:42 ============================================================================ +22:54:42 + + +waiting on router queue for slot.... +22:54:42 Sending to : +22:54:42 ============================================================================ +22:54:42 ============================================================================ +22:54:42 Slot Id : <347> +22:54:42 Transaction Type : RESPONSE +22:54:42 Received From : +22:54:42 ============================================================================ +22:54:42 FNo. Len. Field Value +22:54:42 ============================================================================ +22:54:42 [ 1] [ 4] [0810] +22:54:42 [ 7] [ 10] [0320035351] +22:54:42 [ 11] [ 6] [158901] +22:54:42 [ 39] [ 2] [00] +22:54:42 [ 70] [ 3] [301] +22:54:42 ============================================================================ +22:54:42 Calculate Source COMM Id = 2 +22:54:42 ============================================================================ +22:54:42 + + +waiting on router queue for slot.... +22:54:54 ============================================================================ +22:54:54 Slot Id : <309> +22:54:54 Transaction Type : REQUEST +22:54:54 Received From : +22:54:54 ============================================================================ +22:54:54 FNo. Len. Field Value +22:54:54 ============================================================================ +22:54:54 [ 1] [ 4] [0800] +22:54:54 [ 7] [ 10] [0320035402] +22:54:54 [ 11] [ 6] [158902] +22:54:54 [ 70] [ 3] [301] +22:54:54 ============================================================================ +22:54:54 + + +waiting on router queue for slot.... +22:54:54 Sending to : +22:54:54 ============================================================================ +22:54:54 ============================================================================ +22:54:54 Slot Id : <309> +22:54:54 Transaction Type : RESPONSE +22:54:54 Received From : +22:54:54 ============================================================================ +22:54:54 FNo. Len. Field Value +22:54:54 ============================================================================ +22:54:54 [ 1] [ 4] [0810] +22:54:54 [ 7] [ 10] [0320035402] +22:54:54 [ 11] [ 6] [158902] +22:54:54 [ 39] [ 2] [00] +22:54:54 [ 70] [ 3] [301] +22:54:54 ============================================================================ +22:54:54 Calculate Source COMM Id = 2 +22:54:54 ============================================================================ +22:54:54 + + +waiting on router queue for slot.... +22:54:55 ============================================================================ +22:54:55 Slot Id : <348> +22:54:55 Transaction Type : REQUEST +22:54:55 Received From : +22:54:55 ============================================================================ +22:54:55 FNo. Len. Field Value +22:54:55 ============================================================================ +22:54:55 [ 1] [ 4] [0800] +22:54:55 [ 7] [ 10] [0320160242] +22:54:55 [ 11] [ 6] [067332] +22:54:55 [ 37] [ 12] [57923067332] +22:54:55 [ 70] [ 3] [301] +22:54:55 ============================================================================ +22:54:55 + + +waiting on router queue for slot.... +22:54:55 Sending to : +22:54:55 ============================================================================ +22:54:55 ============================================================================ +22:54:55 Slot Id : <348> +22:54:55 Transaction Type : RESPONSE +22:54:55 Received From : +22:54:55 ============================================================================ +22:54:55 FNo. Len. Field Value +22:54:55 ============================================================================ +22:54:55 [ 1] [ 4] [0810] +22:54:55 [ 7] [ 10] [0320160242] +22:54:55 [ 11] [ 6] [067332] +22:54:55 [ 37] [ 12] [579230673320] +22:54:55 [ 39] [ 2] [00] +22:54:55 [ 70] [ 3] [810] +22:54:55 ============================================================================ +22:54:55 Calculate Source COMM Id = 1 +22:54:55 ============================================================================ +22:54:55 + + +waiting on router queue for slot.... +22:55:00 ============================================================================ +22:55:00 Slot Id : <329> +22:55:00 Transaction Type : REQUEST +22:55:00 Received From : +22:55:00 ============================================================================ +22:55:00 FNo. Len. Field Value +22:55:00 ============================================================================ +22:55:00 [ 1] [ 4] [0800] +22:55:00 [ 7] [ 10] [0321060651] +22:55:00 [ 11] [ 6] [230651] +22:55:00 [ 37] [ 12] [57923230651] +22:55:00 [ 70] [ 3] [301] +22:55:00 ============================================================================ +22:55:00 + + +waiting on router queue for slot.... +22:55:00 Sending to : +22:55:00 ============================================================================ +22:55:00 ============================================================================ +22:55:00 Slot Id : <329> +22:55:00 Transaction Type : RESPONSE +22:55:00 Received From : +22:55:00 ============================================================================ +22:55:00 FNo. Len. Field Value +22:55:00 ============================================================================ +22:55:00 [ 1] [ 4] [0810] +22:55:00 [ 7] [ 10] [0321060651] +22:55:00 [ 11] [ 6] [230651] +22:55:00 [ 37] [ 12] [579232306510] +22:55:00 [ 39] [ 2] [00] +22:55:00 [ 70] [ 3] [810] +22:55:00 ============================================================================ +22:55:00 Calculate Source COMM Id = 6 +22:55:00 ============================================================================ +22:55:00 + + +waiting on router queue for slot.... +22:55:00 ============================================================================ +22:55:00 Slot Id : <337> +22:55:00 Transaction Type : REQUEST +22:55:00 Received From : +22:55:00 ============================================================================ +22:55:00 FNo. Len. Field Value +22:55:00 ============================================================================ +22:55:00 [ 1] [ 4] [0800] +22:55:00 [ 2] [ 5] [02531] +22:55:00 [ 3] [ 6] [579228] +22:55:00 [ 7] [ 10] [0320155500] +22:55:00 [ 11] [ 6] [807742] +22:55:00 [ 15] [ 10] [0320155500] +22:55:00 [ 37] [ 11] [57922807742] +22:55:00 [ 70] [ 3] [001] +22:55:00 ============================================================================ +22:55:00 + + +waiting on router queue for slot.... +22:55:00 ============================================================================ +22:55:00 Slot Id : <337> +22:55:00 Transaction Type : RESPONSE +22:55:00 Received From : +22:55:00 ============================================================================ +22:55:00 FNo. Len. Field Value +22:55:00 ============================================================================ +22:55:00 [ 1] [ 4] [0810] +22:55:00 [ 7] [ 10] [0320155500] +22:55:00 [ 11] [ 6] [807742] +22:55:00 [ 15] [ 4] [0320] +22:55:00 [ 37] [ 12] [57922807742] +22:55:00 [ 39] [ 2] [00] +22:55:00 [ 70] [ 3] [001] +22:55:00 ============================================================================ +22:55:00 Sending to : +22:55:00 ============================================================================ +22:55:00 + + +waiting on router queue for slot.... +22:55:06 ============================================================================ +22:55:06 Slot Id : <350> +22:55:06 Transaction Type : REQUEST +22:55:06 Received From : +22:55:06 ============================================================================ +22:55:06 FNo. Len. Field Value +22:55:06 ============================================================================ +22:55:06 [ 1] [ 4] [0800] +22:55:06 [ 7] [ 10] [0320035414] +22:55:06 [ 11] [ 6] [158903] +22:55:06 [ 70] [ 3] [301] +22:55:06 ============================================================================ +22:55:06 + + +waiting on router queue for slot.... +22:55:06 Sending to : +22:55:06 ============================================================================ +22:55:06 ============================================================================ +22:55:06 Slot Id : <350> +22:55:06 Transaction Type : RESPONSE +22:55:06 Received From : +22:55:06 ============================================================================ +22:55:06 FNo. Len. Field Value +22:55:06 ============================================================================ +22:55:06 [ 1] [ 4] [0810] +22:55:06 [ 7] [ 10] [0320035414] +22:55:06 [ 11] [ 6] [158903] +22:55:06 [ 39] [ 2] [00] +22:55:06 [ 70] [ 3] [301] +22:55:06 ============================================================================ +22:55:06 Calculate Source COMM Id = 2 +22:55:06 ============================================================================ +22:55:06 + + +waiting on router queue for slot.... +22:55:20 ============================================================================ +22:55:20 Slot Id : <346> +22:55:20 Transaction Type : REQUEST +22:55:20 Received From : +22:55:20 ============================================================================ +22:55:20 FNo. Len. Field Value +22:55:20 ============================================================================ +22:55:20 [ 1] [ 4] [0200] +22:55:20 [ 2] [ 16] [6213544001958708] +22:55:20 [ 3] [ 6] [010000] +22:55:20 [ 4] [ 12] [000100000000] +22:55:20 [ 7] [ 10] [0320155425] +22:55:20 [ 11] [ 6] [271751] +22:55:20 [ 12] [ 6] [225425] +22:55:20 [ 13] [ 4] [0320] +22:55:20 [ 14] [ 4] [4912] +22:55:20 [ 15] [ 4] [0320] +22:55:20 [ 18] [ 4] [6011] +22:55:20 [ 19] [ 3] [418] +22:55:20 [ 22] [ 3] [021] +22:55:20 [ 25] [ 2] [01] +22:55:20 [ 28] [ 9] [D00002000] +22:55:20 [ 32] [ 6] [180893] +22:55:20 [ 35] [ 32] [6213544001958708=491212015870785] +22:55:20 [ 37] [ 12] [507915271751] +22:55:20 [ 41] [ 8] [0102SAPA] +22:55:20 [ 42] [ 15] [999999 ] +22:55:20 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +22:55:20 [ 49] [ 3] [418] +22:55:20 [ 52] [ 16] [98B8026AF52DC80E] +22:55:20 ============================================================================ +22:55:20 + + +waiting on router queue for slot.... +22:55:20 Sending to : +22:55:20 ============================================================================ +22:55:20 Sending to : +22:55:20 ============================================================================ +22:55:21 ============================================================================ +22:55:21 Slot Id : <346> +22:55:21 Transaction Type : REQUEST +22:55:21 Received From : +22:55:21 ============================================================================ +22:55:21 FNo. Len. Field Value +22:55:21 ============================================================================ +22:55:21 [ 1] [ 4] [0200] +22:55:21 [ 2] [ 16] [6213544001958708] +22:55:21 [ 3] [ 6] [010000] +22:55:21 [ 4] [ 12] [000100000000] +22:55:21 [ 7] [ 10] [0320155425] +22:55:21 [ 11] [ 6] [271751] +22:55:21 [ 12] [ 6] [225425] +22:55:21 [ 13] [ 4] [0320] +22:55:21 [ 14] [ 4] [4912] +22:55:21 [ 15] [ 4] [0320] +22:55:21 [ 18] [ 4] [6011] +22:55:21 [ 19] [ 3] [418] +22:55:21 [ 22] [ 3] [021] +22:55:21 [ 25] [ 2] [01] +22:55:21 [ 28] [ 9] [D00002000] +22:55:21 [ 32] [ 6] [180893] +22:55:21 [ 35] [ 32] [6213544001958708=491212015870785] +22:55:21 [ 37] [ 12] [507915271751] +22:55:21 [ 41] [ 8] [0102SAPA] +22:55:21 [ 42] [ 15] [999999 ] +22:55:21 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +22:55:21 [ 49] [ 3] [418] +22:55:21 [ 52] [ 16] [98B8026AF52DC80E] +22:55:21 ============================================================================ +22:55:21 + + +waiting on router queue for slot.... +22:55:21 Sending to : +22:55:21 ============================================================================ +22:55:21 ============================================================================ +22:55:21 Slot Id : <346> +22:55:21 Transaction Type : REQUEST +22:55:21 Received From : +22:55:21 ============================================================================ +22:55:21 FNo. Len. Field Value +22:55:21 ============================================================================ +22:55:21 [ 1] [ 4] [0200] +22:55:21 [ 2] [ 16] [6213544001958708] +22:55:21 [ 3] [ 6] [010000] +22:55:21 [ 4] [ 12] [000100000000] +22:55:21 [ 7] [ 10] [0320155425] +22:55:21 [ 11] [ 6] [271751] +22:55:21 [ 12] [ 6] [225425] +22:55:21 [ 13] [ 4] [0320] +22:55:21 [ 14] [ 4] [4912] +22:55:21 [ 15] [ 4] [0320] +22:55:21 [ 18] [ 4] [6011] +22:55:21 [ 19] [ 3] [418] +22:55:21 [ 22] [ 3] [021] +22:55:21 [ 25] [ 2] [01] +22:55:21 [ 28] [ 9] [D00002000] +22:55:21 [ 32] [ 6] [180893] +22:55:21 [ 35] [ 32] [6213544001958708=491212015870785] +22:55:21 [ 37] [ 12] [507915271751] +22:55:21 [ 41] [ 8] [0102SAPA] +22:55:21 [ 42] [ 15] [999999 ] +22:55:21 [ 43] [ 40] [ATM POLYTECH COLLEGE LOCATION, Sisattana] +22:55:21 [ 49] [ 3] [418] +22:55:21 [ 52] [ 16] [FCC6ED79E6604F06] +22:55:21 ============================================================================ +22:55:21 + + +waiting on router queue for slot.... +22:55:21 Sending to : <0> +22:55:21 ============================================================================ +22:55:21 ============================================================================ +22:55:21 Slot Id : <346> +22:55:21 Transaction Type : RESPONSE +22:55:21 Received From : +22:55:21 ============================================================================ +22:55:21 FNo. Len. Field Value +22:55:21 ============================================================================ +22:55:21 [ 1] [ 4] [0210] +22:55:21 [ 2] [ 16] [6213544001958708] +22:55:21 [ 3] [ 6] [010000] +22:55:21 [ 4] [ 12] [000100000000] +22:55:21 [ 7] [ 10] [0320155425] +22:55:21 [ 11] [ 6] [271751] +22:55:21 [ 12] [ 6] [225425] +22:55:21 [ 13] [ 4] [0320] +22:55:21 [ 15] [ 4] [0320] +22:55:21 [ 18] [ 4] [6011] +22:55:21 [ 19] [ 3] [418] +22:55:21 [ 32] [ 6] [180893] +22:55:21 [ 35] [ 32] [6213544001958708=491212015870785] +22:55:21 [ 37] [ 12] [507915271751] +22:55:21 [ 38] [ 6] [522839] +22:55:21 [ 39] [ 2] [00] +22:55:21 [ 41] [ 8] [0102SAPA] +22:55:21 [ 49] [ 3] [418] +22:55:21 [ 54] [ 40] [0001418C0003802551670002418C000179855167] +22:55:21 ============================================================================ +22:55:21 Sending to : +22:55:21 ============================================================================ +22:55:21 + + +waiting on router queue for slot.... +22:55:22 ============================================================================ +22:55:22 Slot Id : <328> +22:55:22 Transaction Type : REQUEST +22:55:22 Received From : +22:55:22 ============================================================================ +22:55:22 FNo. Len. Field Value +22:55:22 ============================================================================ +22:55:22 [ 1] [ 4] [0800] +22:55:22 [ 7] [ 10] [0320035430] +22:55:22 [ 11] [ 6] [158904] +22:55:22 [ 70] [ 3] [301] +22:55:22 ============================================================================ +22:55:22 + + +waiting on router queue for slot.... +22:55:22 Sending to : +22:55:22 ============================================================================ +22:55:22 ============================================================================ +22:55:22 Slot Id : <328> +22:55:22 Transaction Type : RESPONSE +22:55:22 Received From : +22:55:22 ============================================================================ +22:55:22 FNo. Len. Field Value +22:55:22 ============================================================================ +22:55:22 [ 1] [ 4] [0810] +22:55:22 [ 7] [ 10] [0320035430] +22:55:22 [ 11] [ 6] [158904] +22:55:22 [ 39] [ 2] [00] +22:55:22 [ 70] [ 3] [301] +22:55:22 ============================================================================ +22:55:22 Calculate Source COMM Id = 2 +22:55:22 ============================================================================ +22:55:22 + + +waiting on router queue for slot.... +22:55:23 ============================================================================ +22:55:23 Slot Id : <346> +22:55:23 Transaction Type : RESPONSE +22:55:23 Received From : +22:55:23 ============================================================================ +22:55:23 FNo. Len. Field Value +22:55:23 ============================================================================ +22:55:23 [ 1] [ 4] [0210] +22:55:23 [ 2] [ 16] [6213544001958708] +22:55:23 [ 3] [ 6] [010000] +22:55:23 [ 4] [ 12] [000100000000] +22:55:23 [ 7] [ 10] [0320155425] +22:55:23 [ 11] [ 6] [271751] +22:55:23 [ 12] [ 6] [225425] +22:55:23 [ 13] [ 4] [0320] +22:55:23 [ 15] [ 4] [0320] +22:55:23 [ 18] [ 4] [6011] +22:55:23 [ 19] [ 3] [418] +22:55:23 [ 32] [ 6] [180893] +22:55:23 [ 35] [ 32] [6213544001958708=491212015870785] +22:55:23 [ 37] [ 12] [507915271751] +22:55:23 [ 38] [ 6] [522839] +22:55:23 [ 39] [ 2] [00] +22:55:23 [ 41] [ 8] [0102SAPA] +22:55:23 [ 49] [ 3] [418] +22:55:23 [ 54] [ 40] [0001418C0003802551670002418C000179855167] +22:55:23 ============================================================================ +22:55:23 Calculate Source COMM Id = 2 +22:55:23 ============================================================================ +22:55:23 + + +waiting on router queue for slot.... +22:55:24 ============================================================================ +22:55:24 Slot Id : <357> +22:55:24 Transaction Type : REQUEST +22:55:24 Received From : +22:55:24 ============================================================================ +22:55:24 FNo. Len. Field Value +22:55:24 ============================================================================ +22:55:24 [ 1] [ 4] [0800] +22:55:24 [ 7] [ 10] [0320155520] +22:55:24 [ 11] [ 6] [063818] +22:55:24 [ 37] [ 12] [507922063818] +22:55:24 [ 70] [ 3] [001] +22:55:24 ============================================================================ +22:55:24 + + +waiting on router queue for slot.... +22:55:24 Sending to : +22:55:24 ============================================================================ +22:55:24 ============================================================================ +22:55:24 Slot Id : <357> +22:55:24 Transaction Type : RESPONSE +22:55:24 Received From : +22:55:24 ============================================================================ +22:55:24 FNo. Len. Field Value +22:55:24 ============================================================================ +22:55:24 [ 1] [ 4] [0810] +22:55:24 [ 7] [ 10] [0320155520] +22:55:24 [ 11] [ 6] [063818] +22:55:24 [ 37] [ 12] [507922063818] +22:55:24 [ 39] [ 2] [00] +22:55:24 [ 70] [ 3] [001] +22:55:24 ============================================================================ +22:55:24 Calculate Source COMM Id = 0 +22:55:24 ============================================================================ +22:55:24 + + +waiting on router queue for slot.... +22:55:38 ============================================================================ +22:55:38 Slot Id : <332> +22:55:38 Transaction Type : REQUEST +22:55:38 Received From : +22:55:38 ============================================================================ +22:55:38 FNo. Len. Field Value +22:55:38 ============================================================================ +22:55:38 [ 1] [ 4] [0800] +22:55:38 [ 7] [ 10] [0320035445] +22:55:38 [ 11] [ 6] [158905] +22:55:38 [ 70] [ 3] [301] +22:55:38 ============================================================================ +22:55:38 + + +waiting on router queue for slot.... +22:55:38 Sending to : +22:55:38 ============================================================================ +22:55:38 ============================================================================ +22:55:38 Slot Id : <332> +22:55:38 Transaction Type : RESPONSE +22:55:38 Received From : +22:55:38 ============================================================================ +22:55:38 FNo. Len. Field Value +22:55:38 ============================================================================ +22:55:38 [ 1] [ 4] [0810] +22:55:38 [ 7] [ 10] [0320035445] +22:55:38 [ 11] [ 6] [158905] +22:55:38 [ 39] [ 2] [00] +22:55:38 [ 70] [ 3] [301] +22:55:38 ============================================================================ +22:55:38 Calculate Source COMM Id = 2 +22:55:38 ============================================================================ +22:55:38 + + +waiting on router queue for slot.... +22:55:53 ============================================================================ +22:55:53 Slot Id : <319> +22:55:53 Transaction Type : REQUEST +22:55:53 Received From : +22:55:53 ============================================================================ +22:55:53 FNo. Len. Field Value +22:55:53 ============================================================================ +22:55:53 [ 1] [ 4] [0800] +22:55:53 [ 7] [ 10] [0320035501] +22:55:53 [ 11] [ 6] [158906] +22:55:53 [ 70] [ 3] [301] +22:55:53 ============================================================================ +22:55:53 + + +waiting on router queue for slot.... +22:55:53 Sending to : +22:55:53 ============================================================================ +22:55:53 ============================================================================ +22:55:53 Slot Id : <319> +22:55:53 Transaction Type : RESPONSE +22:55:53 Received From : +22:55:53 ============================================================================ +22:55:53 FNo. Len. Field Value +22:55:53 ============================================================================ +22:55:53 [ 1] [ 4] [0810] +22:55:53 [ 7] [ 10] [0320035501] +22:55:53 [ 11] [ 6] [158906] +22:55:53 [ 39] [ 2] [00] +22:55:53 [ 70] [ 3] [301] +22:55:53 ============================================================================ +22:55:53 Calculate Source COMM Id = 2 +22:55:53 ============================================================================ +22:55:53 + + +waiting on router queue for slot.... +22:56:02 ============================================================================ +22:56:02 Slot Id : <356> +22:56:02 Transaction Type : REQUEST +22:56:02 Received From : +22:56:02 ============================================================================ +22:56:02 FNo. Len. Field Value +22:56:02 ============================================================================ +22:56:02 [ 1] [ 4] [0800] +22:56:02 [ 2] [ 5] [02531] +22:56:02 [ 3] [ 6] [579228] +22:56:02 [ 7] [ 10] [0320155602] +22:56:02 [ 11] [ 6] [807743] +22:56:02 [ 15] [ 10] [0320155602] +22:56:02 [ 37] [ 11] [57922807743] +22:56:02 [ 70] [ 3] [001] +22:56:02 ============================================================================ +22:56:02 + + +waiting on router queue for slot.... +22:56:02 ============================================================================ +22:56:02 Slot Id : <356> +22:56:02 Transaction Type : RESPONSE +22:56:02 Received From : +22:56:02 ============================================================================ +22:56:02 FNo. Len. Field Value +22:56:02 ============================================================================ +22:56:02 [ 1] [ 4] [0810] +22:56:02 [ 7] [ 10] [0320155602] +22:56:02 [ 11] [ 6] [807743] +22:56:02 [ 15] [ 4] [0320] +22:56:02 [ 37] [ 12] [57922807743] +22:56:02 [ 39] [ 2] [00] +22:56:02 [ 70] [ 3] [001] +22:56:02 ============================================================================ +22:56:02 Sending to : +22:56:02 ============================================================================ +22:56:02 + + +waiting on router queue for slot.... +22:56:03 ============================================================================ +22:56:03 Slot Id : <365> +22:56:03 Transaction Type : REQUEST +22:56:03 Received From : +22:56:03 ============================================================================ +22:56:03 FNo. Len. Field Value +22:56:03 ============================================================================ +22:56:03 [ 1] [ 4] [0800] +22:56:03 [ 7] [ 10] [0320035512] +22:56:03 [ 11] [ 6] [158907] +22:56:03 [ 70] [ 3] [301] +22:56:03 ============================================================================ +22:56:03 + + +waiting on router queue for slot.... +22:56:03 Sending to : +22:56:03 ============================================================================ +22:56:03 ============================================================================ +22:56:03 Slot Id : <365> +22:56:03 Transaction Type : RESPONSE +22:56:03 Received From : +22:56:03 ============================================================================ +22:56:03 FNo. Len. Field Value +22:56:03 ============================================================================ +22:56:03 [ 1] [ 4] [0810] +22:56:03 [ 7] [ 10] [0320035512] +22:56:03 [ 11] [ 6] [158907] +22:56:03 [ 39] [ 2] [00] +22:56:03 [ 70] [ 3] [301] +22:56:03 ============================================================================ +22:56:03 Calculate Source COMM Id = 2 +22:56:03 ============================================================================ +22:56:03 + + +waiting on router queue for slot.... +22:56:05 ============================================================================ +22:56:05 Slot Id : <330> +22:56:05 Transaction Type : REQUEST +22:56:05 Received From : +22:56:05 ============================================================================ +22:56:05 FNo. Len. Field Value +22:56:05 ============================================================================ +22:56:05 [ 1] [ 4] [0800] +22:56:05 [ 7] [ 10] [0321060756] +22:56:05 [ 11] [ 6] [230756] +22:56:05 [ 37] [ 12] [57923230756] +22:56:05 [ 70] [ 3] [301] +22:56:05 ============================================================================ +22:56:05 + + +waiting on router queue for slot.... +22:56:05 Sending to : +22:56:05 ============================================================================ +22:56:05 ============================================================================ +22:56:05 Slot Id : <330> +22:56:05 Transaction Type : RESPONSE +22:56:05 Received From : +22:56:05 ============================================================================ +22:56:05 FNo. Len. Field Value +22:56:05 ============================================================================ +22:56:05 [ 1] [ 4] [0810] +22:56:05 [ 7] [ 10] [0321060756] +22:56:05 [ 11] [ 6] [230756] +22:56:05 [ 37] [ 12] [579232307560] +22:56:05 [ 39] [ 2] [00] +22:56:05 [ 70] [ 3] [810] +22:56:05 ============================================================================ +22:56:05 Calculate Source COMM Id = 6 +22:56:05 ============================================================================ +22:56:05 + + +waiting on router queue for slot.... +22:56:14 ============================================================================ +22:56:14 Slot Id : <371> +22:56:14 Transaction Type : REQUEST +22:56:14 Received From : +22:56:14 ============================================================================ +22:56:14 FNo. Len. Field Value +22:56:14 ============================================================================ +22:56:14 [ 1] [ 4] [0800] +22:56:14 [ 7] [ 10] [0320035522] +22:56:14 [ 11] [ 6] [158908] +22:56:14 [ 70] [ 3] [301] +22:56:14 ============================================================================ +22:56:14 + + +waiting on router queue for slot.... +22:56:14 Sending to : +22:56:14 ============================================================================ +22:56:14 ============================================================================ +22:56:14 Slot Id : <371> +22:56:14 Transaction Type : RESPONSE +22:56:14 Received From : +22:56:14 ============================================================================ +22:56:14 FNo. Len. Field Value +22:56:14 ============================================================================ +22:56:14 [ 1] [ 4] [0810] +22:56:14 [ 7] [ 10] [0320035522] +22:56:14 [ 11] [ 6] [158908] +22:56:14 [ 39] [ 2] [00] +22:56:14 [ 70] [ 3] [301] +22:56:14 ============================================================================ +22:56:14 Calculate Source COMM Id = 2 +22:56:14 ============================================================================ +22:56:14 + + +waiting on router queue for slot.... +22:56:21 ============================================================================ +22:56:21 Slot Id : <378> +22:56:21 Transaction Type : REQUEST +22:56:21 Received From : +22:56:21 ============================================================================ +22:56:21 FNo. Len. Field Value +22:56:21 ============================================================================ +22:56:21 [ 1] [ 4] [0800] +22:56:21 [ 7] [ 10] [0320155412] +22:56:21 [ 11] [ 6] [003796] +22:56:21 [ 37] [ 12] [57922003796] +22:56:21 [ 70] [ 3] [301] +22:56:21 ============================================================================ +22:56:21 + + +waiting on router queue for slot.... +22:56:21 Sending to : +22:56:21 ============================================================================ +22:56:21 ============================================================================ +22:56:21 Slot Id : <378> +22:56:21 Transaction Type : RESPONSE +22:56:21 Received From : +22:56:21 ============================================================================ +22:56:21 FNo. Len. Field Value +22:56:21 ============================================================================ +22:56:21 [ 1] [ 4] [0810] +22:56:21 [ 7] [ 10] [0320155412] +22:56:21 [ 11] [ 6] [003796] +22:56:21 [ 37] [ 12] [579220037960] +22:56:21 [ 39] [ 2] [00] +22:56:21 [ 70] [ 3] [810] +22:56:21 ============================================================================ +22:56:21 Calculate Source COMM Id = 4 +22:56:21 ============================================================================ +22:56:21 + + +waiting on router queue for slot.... +22:56:24 ============================================================================ +22:56:24 Slot Id : <366> +22:56:24 Transaction Type : REQUEST +22:56:24 Received From : +22:56:24 ============================================================================ +22:56:24 FNo. Len. Field Value +22:56:24 ============================================================================ +22:56:24 [ 1] [ 4] [0800] +22:56:24 [ 7] [ 10] [0320035533] +22:56:24 [ 11] [ 6] [158909] +22:56:24 [ 70] [ 3] [301] +22:56:24 ============================================================================ +22:56:24 + + +waiting on router queue for slot.... +22:56:24 Sending to : +22:56:24 ============================================================================ +22:56:24 ============================================================================ +22:56:24 Slot Id : <366> +22:56:24 Transaction Type : RESPONSE +22:56:24 Received From : +22:56:24 ============================================================================ +22:56:24 FNo. Len. Field Value +22:56:24 ============================================================================ +22:56:24 [ 1] [ 4] [0810] +22:56:24 [ 7] [ 10] [0320035533] +22:56:24 [ 11] [ 6] [158909] +22:56:24 [ 39] [ 2] [00] +22:56:24 [ 70] [ 3] [301] +22:56:24 ============================================================================ +22:56:24 Calculate Source COMM Id = 2 +22:56:24 ============================================================================ +22:56:24 + + +waiting on router queue for slot.... +22:56:36 ============================================================================ +22:56:36 Slot Id : <343> +22:56:36 Transaction Type : REQUEST +22:56:36 Received From : +22:56:36 ============================================================================ +22:56:36 FNo. Len. Field Value +22:56:36 ============================================================================ +22:56:36 [ 1] [ 4] [0800] +22:56:36 [ 7] [ 10] [0320035544] +22:56:36 [ 11] [ 6] [158910] +22:56:36 [ 70] [ 3] [301] +22:56:36 ============================================================================ +22:56:36 + + +waiting on router queue for slot.... +22:56:36 Sending to : +22:56:36 ============================================================================ +22:56:36 ============================================================================ +22:56:36 Slot Id : <343> +22:56:36 Transaction Type : RESPONSE +22:56:36 Received From : +22:56:36 ============================================================================ +22:56:36 FNo. Len. Field Value +22:56:36 ============================================================================ +22:56:36 [ 1] [ 4] [0810] +22:56:36 [ 7] [ 10] [0320035544] +22:56:36 [ 11] [ 6] [158910] +22:56:36 [ 39] [ 2] [00] +22:56:36 [ 70] [ 3] [301] +22:56:36 ============================================================================ +22:56:36 Calculate Source COMM Id = 2 +22:56:36 ============================================================================ +22:56:36 + + +waiting on router queue for slot.... +22:56:46 ============================================================================ +22:56:46 Slot Id : <313> +22:56:46 Transaction Type : REQUEST +22:56:46 Received From : +22:56:46 ============================================================================ +22:56:46 FNo. Len. Field Value +22:56:46 ============================================================================ +22:56:46 [ 1] [ 4] [0800] +22:56:46 [ 7] [ 10] [0320035554] +22:56:46 [ 11] [ 6] [158911] +22:56:46 [ 70] [ 3] [301] +22:56:46 ============================================================================ +22:56:46 + + +waiting on router queue for slot.... +22:56:46 Sending to : +22:56:46 ============================================================================ +22:56:46 ============================================================================ +22:56:46 Slot Id : <313> +22:56:46 Transaction Type : RESPONSE +22:56:46 Received From : +22:56:46 ============================================================================ +22:56:46 FNo. Len. Field Value +22:56:46 ============================================================================ +22:56:46 [ 1] [ 4] [0810] +22:56:46 [ 7] [ 10] [0320035554] +22:56:46 [ 11] [ 6] [158911] +22:56:46 [ 39] [ 2] [00] +22:56:46 [ 70] [ 3] [301] +22:56:46 ============================================================================ +22:56:46 Calculate Source COMM Id = 2 +22:56:46 ============================================================================ +22:56:46 + + +waiting on router queue for slot.... +22:56:58 ============================================================================ +22:56:58 Slot Id : <373> +22:56:58 Transaction Type : REQUEST +22:56:58 Received From : +22:56:58 ============================================================================ +22:56:58 FNo. Len. Field Value +22:56:58 ============================================================================ +22:56:58 [ 1] [ 4] [0800] +22:56:58 [ 7] [ 10] [0320035605] +22:56:58 [ 11] [ 6] [158912] +22:56:58 [ 70] [ 3] [301] +22:56:58 ============================================================================ +22:56:58 + + +waiting on router queue for slot.... +22:56:58 Sending to : +22:56:58 ============================================================================ +22:56:58 ============================================================================ +22:56:58 Slot Id : <373> +22:56:58 Transaction Type : RESPONSE +22:56:58 Received From : +22:56:58 ============================================================================ +22:56:58 FNo. Len. Field Value +22:56:58 ============================================================================ +22:56:58 [ 1] [ 4] [0810] +22:56:58 [ 7] [ 10] [0320035605] +22:56:58 [ 11] [ 6] [158912] +22:56:58 [ 39] [ 2] [00] +22:56:58 [ 70] [ 3] [301] +22:56:58 ============================================================================ +22:56:58 Calculate Source COMM Id = 2 +22:56:58 ============================================================================ +22:56:58 + + +waiting on router queue for slot.... +22:57:04 ============================================================================ +22:57:04 Slot Id : <340> +22:57:04 Transaction Type : REQUEST +22:57:04 Received From : +22:57:04 ============================================================================ +22:57:04 FNo. Len. Field Value +22:57:04 ============================================================================ +22:57:04 [ 1] [ 4] [0800] +22:57:04 [ 2] [ 5] [02531] +22:57:04 [ 3] [ 6] [579228] +22:57:04 [ 7] [ 10] [0320155704] +22:57:04 [ 11] [ 6] [807744] +22:57:04 [ 15] [ 10] [0320155704] +22:57:04 [ 37] [ 11] [57922807744] +22:57:04 [ 70] [ 3] [001] +22:57:04 ============================================================================ +22:57:04 + + +waiting on router queue for slot.... +22:57:04 ============================================================================ +22:57:04 Slot Id : <340> +22:57:04 Transaction Type : RESPONSE +22:57:04 Received From : +22:57:04 ============================================================================ +22:57:04 FNo. Len. Field Value +22:57:04 ============================================================================ +22:57:04 [ 1] [ 4] [0810] +22:57:04 [ 7] [ 10] [0320155704] +22:57:04 [ 11] [ 6] [807744] +22:57:04 [ 15] [ 4] [0320] +22:57:04 [ 37] [ 12] [57922807744] +22:57:04 [ 39] [ 2] [00] +22:57:04 [ 70] [ 3] [001] +22:57:04 ============================================================================ +22:57:04 Sending to : +22:57:04 ============================================================================ +22:57:04 + + +waiting on router queue for slot.... +22:57:10 ============================================================================ +22:57:10 Slot Id : <345> +22:57:10 Transaction Type : REQUEST +22:57:10 Received From : +22:57:10 ============================================================================ +22:57:10 FNo. Len. Field Value +22:57:10 ============================================================================ +22:57:10 [ 1] [ 4] [0800] +22:57:10 [ 7] [ 10] [0321060901] +22:57:10 [ 11] [ 6] [230901] +22:57:10 [ 37] [ 12] [57923230901] +22:57:10 [ 70] [ 3] [301] +22:57:10 ============================================================================ +22:57:10 + + +waiting on router queue for slot.... +22:57:10 Sending to : +22:57:10 ============================================================================ +22:57:10 ============================================================================ +22:57:10 Slot Id : <345> +22:57:10 Transaction Type : RESPONSE +22:57:10 Received From : +22:57:10 ============================================================================ +22:57:10 FNo. Len. Field Value +22:57:10 ============================================================================ +22:57:10 [ 1] [ 4] [0810] +22:57:10 [ 7] [ 10] [0321060901] +22:57:10 [ 11] [ 6] [230901] +22:57:10 [ 37] [ 12] [579232309010] +22:57:10 [ 39] [ 2] [00] +22:57:10 [ 70] [ 3] [810] +22:57:10 ============================================================================ +22:57:10 Calculate Source COMM Id = 6 +22:57:10 ============================================================================ +22:57:10 + + +waiting on router queue for slot.... +22:57:14 ============================================================================ +22:57:14 Slot Id : <353> +22:57:14 Transaction Type : REQUEST +22:57:14 Received From : +22:57:14 ============================================================================ +22:57:14 FNo. Len. Field Value +22:57:14 ============================================================================ +22:57:14 [ 1] [ 4] [0800] +22:57:14 [ 7] [ 10] [0320035622] +22:57:14 [ 11] [ 6] [158913] +22:57:14 [ 70] [ 3] [301] +22:57:14 ============================================================================ +22:57:14 + + +waiting on router queue for slot.... +22:57:14 Sending to : +22:57:14 ============================================================================ +22:57:14 ============================================================================ +22:57:14 Slot Id : <353> +22:57:14 Transaction Type : RESPONSE +22:57:14 Received From : +22:57:14 ============================================================================ +22:57:14 FNo. Len. Field Value +22:57:14 ============================================================================ +22:57:14 [ 1] [ 4] [0810] +22:57:14 [ 7] [ 10] [0320035622] +22:57:14 [ 11] [ 6] [158913] +22:57:14 [ 39] [ 2] [00] +22:57:14 [ 70] [ 3] [301] +22:57:14 ============================================================================ +22:57:14 Calculate Source COMM Id = 2 +22:57:14 ============================================================================ +22:57:14 + + +waiting on router queue for slot.... +22:57:24 ============================================================================ +22:57:24 Slot Id : <324> +22:57:24 Transaction Type : REQUEST +22:57:24 Received From : +22:57:24 ============================================================================ +22:57:24 FNo. Len. Field Value +22:57:24 ============================================================================ +22:57:24 [ 1] [ 4] [0800] +22:57:24 [ 7] [ 10] [0320035632] +22:57:24 [ 11] [ 6] [158914] +22:57:24 [ 70] [ 3] [301] +22:57:24 ============================================================================ +22:57:24 + + +waiting on router queue for slot.... +22:57:24 Sending to : +22:57:24 ============================================================================ +22:57:24 ============================================================================ +22:57:24 Slot Id : <324> +22:57:24 Transaction Type : RESPONSE +22:57:24 Received From : +22:57:24 ============================================================================ +22:57:24 FNo. Len. Field Value +22:57:24 ============================================================================ +22:57:24 [ 1] [ 4] [0810] +22:57:24 [ 7] [ 10] [0320035632] +22:57:24 [ 11] [ 6] [158914] +22:57:24 [ 39] [ 2] [00] +22:57:24 [ 70] [ 3] [301] +22:57:24 ============================================================================ +22:57:24 Calculate Source COMM Id = 2 +22:57:24 ============================================================================ +22:57:24 + + +waiting on router queue for slot.... +22:57:35 ============================================================================ +22:57:35 Slot Id : <382> +22:57:35 Transaction Type : REQUEST +22:57:35 Received From : +22:57:35 ============================================================================ +22:57:35 FNo. Len. Field Value +22:57:35 ============================================================================ +22:57:35 [ 1] [ 4] [0800] +22:57:35 [ 7] [ 10] [0320035643] +22:57:35 [ 11] [ 6] [158915] +22:57:35 [ 70] [ 3] [301] +22:57:35 ============================================================================ +22:57:35 + + +waiting on router queue for slot.... +22:57:35 Sending to : +22:57:35 ============================================================================ +22:57:35 ============================================================================ +22:57:35 Slot Id : <382> +22:57:35 Transaction Type : RESPONSE +22:57:35 Received From : +22:57:35 ============================================================================ +22:57:35 FNo. Len. Field Value +22:57:35 ============================================================================ +22:57:35 [ 1] [ 4] [0810] +22:57:35 [ 7] [ 10] [0320035643] +22:57:35 [ 11] [ 6] [158915] +22:57:35 [ 39] [ 2] [00] +22:57:35 [ 70] [ 3] [301] +22:57:35 ============================================================================ +22:57:35 Calculate Source COMM Id = 2 +22:57:35 ============================================================================ +22:57:35 + + +waiting on router queue for slot.... +22:57:45 ============================================================================ +22:57:45 Slot Id : <355> +22:57:45 Transaction Type : REQUEST +22:57:45 Received From : +22:57:45 ============================================================================ +22:57:45 FNo. Len. Field Value +22:57:45 ============================================================================ +22:57:45 [ 1] [ 4] [0800] +22:57:45 [ 7] [ 10] [0320035653] +22:57:45 [ 11] [ 6] [158916] +22:57:45 [ 70] [ 3] [301] +22:57:45 ============================================================================ +22:57:45 + + +waiting on router queue for slot.... +22:57:45 Sending to : +22:57:45 ============================================================================ +22:57:45 ============================================================================ +22:57:45 Slot Id : <355> +22:57:45 Transaction Type : RESPONSE +22:57:45 Received From : +22:57:45 ============================================================================ +22:57:45 FNo. Len. Field Value +22:57:45 ============================================================================ +22:57:45 [ 1] [ 4] [0810] +22:57:45 [ 7] [ 10] [0320035653] +22:57:45 [ 11] [ 6] [158916] +22:57:45 [ 39] [ 2] [00] +22:57:45 [ 70] [ 3] [301] +22:57:45 ============================================================================ +22:57:45 Calculate Source COMM Id = 2 +22:57:45 ============================================================================ +22:57:45 + + +waiting on router queue for slot.... +22:57:56 ============================================================================ +22:57:56 Slot Id : <344> +22:57:56 Transaction Type : REQUEST +22:57:56 Received From : +22:57:56 ============================================================================ +22:57:56 FNo. Len. Field Value +22:57:56 ============================================================================ +22:57:56 [ 1] [ 4] [0800] +22:57:56 [ 7] [ 10] [0320035704] +22:57:56 [ 11] [ 6] [158917] +22:57:56 [ 70] [ 3] [301] +22:57:56 ============================================================================ +22:57:56 + + +waiting on router queue for slot.... +22:57:56 Sending to : +22:57:56 ============================================================================ +22:57:56 ============================================================================ +22:57:56 Slot Id : <344> +22:57:56 Transaction Type : RESPONSE +22:57:56 Received From : +22:57:56 ============================================================================ +22:57:56 FNo. Len. Field Value +22:57:56 ============================================================================ +22:57:56 [ 1] [ 4] [0810] +22:57:56 [ 7] [ 10] [0320035704] +22:57:56 [ 11] [ 6] [158917] +22:57:56 [ 39] [ 2] [00] +22:57:56 [ 70] [ 3] [301] +22:57:56 ============================================================================ +22:57:56 Calculate Source COMM Id = 2 +22:57:56 ============================================================================ +22:57:56 + + +waiting on router queue for slot.... +22:58:06 ============================================================================ +22:58:06 Slot Id : <363> +22:58:06 Transaction Type : REQUEST +22:58:06 Received From : +22:58:06 ============================================================================ +22:58:06 FNo. Len. Field Value +22:58:06 ============================================================================ +22:58:06 [ 1] [ 4] [0800] +22:58:06 [ 2] [ 5] [02531] +22:58:06 [ 3] [ 6] [579228] +22:58:06 [ 7] [ 10] [0320155806] +22:58:06 [ 11] [ 6] [807745] +22:58:06 [ 15] [ 10] [0320155806] +22:58:06 [ 37] [ 11] [57922807745] +22:58:06 [ 70] [ 3] [001] +22:58:06 ============================================================================ +22:58:06 + + +waiting on router queue for slot.... +22:58:06 ============================================================================ +22:58:06 Slot Id : <363> +22:58:06 Transaction Type : RESPONSE +22:58:06 Received From : +22:58:06 ============================================================================ +22:58:06 FNo. Len. Field Value +22:58:06 ============================================================================ +22:58:06 [ 1] [ 4] [0810] +22:58:06 [ 7] [ 10] [0320155806] +22:58:06 [ 11] [ 6] [807745] +22:58:06 [ 15] [ 4] [0320] +22:58:06 [ 37] [ 12] [57922807745] +22:58:06 [ 39] [ 2] [00] +22:58:06 [ 70] [ 3] [001] +22:58:06 ============================================================================ +22:58:06 Sending to : +22:58:06 ============================================================================ +22:58:06 + + +waiting on router queue for slot.... +22:58:12 ============================================================================ +22:58:12 Slot Id : <370> +22:58:12 Transaction Type : REQUEST +22:58:12 Received From : +22:58:12 ============================================================================ +22:58:12 FNo. Len. Field Value +22:58:12 ============================================================================ +22:58:12 [ 1] [ 4] [0800] +22:58:12 [ 7] [ 10] [0320035720] +22:58:12 [ 11] [ 6] [158918] +22:58:12 [ 70] [ 3] [301] +22:58:12 ============================================================================ +22:58:12 + + +waiting on router queue for slot.... +22:58:12 Sending to : +22:58:12 ============================================================================ +22:58:12 ============================================================================ +22:58:12 Slot Id : <370> +22:58:12 Transaction Type : RESPONSE +22:58:12 Received From : +22:58:12 ============================================================================ +22:58:12 FNo. Len. Field Value +22:58:12 ============================================================================ +22:58:12 [ 1] [ 4] [0810] +22:58:12 [ 7] [ 10] [0320035720] +22:58:12 [ 11] [ 6] [158918] +22:58:12 [ 39] [ 2] [00] +22:58:12 [ 70] [ 3] [301] +22:58:12 ============================================================================ +22:58:12 Calculate Source COMM Id = 2 +22:58:12 ============================================================================ +22:58:12 + + +waiting on router queue for slot.... +22:58:15 ============================================================================ +22:58:15 Slot Id : <358> +22:58:15 Transaction Type : REQUEST +22:58:15 Received From : +22:58:15 ============================================================================ +22:58:15 FNo. Len. Field Value +22:58:15 ============================================================================ +22:58:15 [ 1] [ 4] [0800] +22:58:15 [ 7] [ 10] [0321061006] +22:58:15 [ 11] [ 6] [231006] +22:58:15 [ 37] [ 12] [57923231006] +22:58:15 [ 70] [ 3] [301] +22:58:15 ============================================================================ +22:58:15 + + +waiting on router queue for slot.... +22:58:15 Sending to : +22:58:15 ============================================================================ +22:58:15 ============================================================================ +22:58:15 Slot Id : <358> +22:58:15 Transaction Type : RESPONSE +22:58:15 Received From : +22:58:15 ============================================================================ +22:58:15 FNo. Len. Field Value +22:58:15 ============================================================================ +22:58:15 [ 1] [ 4] [0810] +22:58:15 [ 7] [ 10] [0321061006] +22:58:15 [ 11] [ 6] [231006] +22:58:15 [ 37] [ 12] [579232310060] +22:58:15 [ 39] [ 2] [00] +22:58:15 [ 70] [ 3] [810] +22:58:15 ============================================================================ +22:58:15 Calculate Source COMM Id = 6 +22:58:15 ============================================================================ +22:58:15 + + +waiting on router queue for slot.... +22:58:23 ============================================================================ +22:58:23 Slot Id : <379> +22:58:23 Transaction Type : REQUEST +22:58:23 Received From : +22:58:23 ============================================================================ +22:58:23 FNo. Len. Field Value +22:58:23 ============================================================================ +22:58:23 [ 1] [ 4] [0800] +22:58:23 [ 7] [ 10] [0320035731] +22:58:23 [ 11] [ 6] [158919] +22:58:23 [ 70] [ 3] [301] +22:58:23 ============================================================================ +22:58:23 + + +waiting on router queue for slot.... +22:58:23 Sending to : +22:58:23 ============================================================================ +22:58:23 ============================================================================ +22:58:23 Slot Id : <379> +22:58:23 Transaction Type : RESPONSE +22:58:23 Received From : +22:58:23 ============================================================================ +22:58:23 FNo. Len. Field Value +22:58:23 ============================================================================ +22:58:23 [ 1] [ 4] [0810] +22:58:23 [ 7] [ 10] [0320035731] +22:58:23 [ 11] [ 6] [158919] +22:58:23 [ 39] [ 2] [00] +22:58:23 [ 70] [ 3] [301] +22:58:23 ============================================================================ +22:58:23 Calculate Source COMM Id = 2 +22:58:23 ============================================================================ +22:58:23 + + +waiting on router queue for slot.... +22:58:34 ============================================================================ +22:58:34 Slot Id : <369> +22:58:34 Transaction Type : REQUEST +22:58:34 Received From : +22:58:34 ============================================================================ +22:58:34 FNo. Len. Field Value +22:58:34 ============================================================================ +22:58:34 [ 1] [ 4] [0800] +22:58:34 [ 7] [ 10] [0320035742] +22:58:34 [ 11] [ 6] [158920] +22:58:34 [ 70] [ 3] [301] +22:58:34 ============================================================================ +22:58:34 + + +waiting on router queue for slot.... +22:58:34 Sending to : +22:58:34 ============================================================================ +22:58:34 ============================================================================ +22:58:34 Slot Id : <369> +22:58:34 Transaction Type : RESPONSE +22:58:34 Received From : +22:58:34 ============================================================================ +22:58:34 FNo. Len. Field Value +22:58:34 ============================================================================ +22:58:34 [ 1] [ 4] [0810] +22:58:34 [ 7] [ 10] [0320035742] +22:58:34 [ 11] [ 6] [158920] +22:58:34 [ 39] [ 2] [00] +22:58:34 [ 70] [ 3] [301] +22:58:34 ============================================================================ +22:58:34 Calculate Source COMM Id = 2 +22:58:34 ============================================================================ +22:58:34 + + +waiting on router queue for slot.... +22:58:45 ============================================================================ +22:58:45 Slot Id : <360> +22:58:45 Transaction Type : REQUEST +22:58:45 Received From : +22:58:45 ============================================================================ +22:58:45 FNo. Len. Field Value +22:58:45 ============================================================================ +22:58:45 [ 1] [ 4] [0800] +22:58:45 [ 7] [ 10] [0320035753] +22:58:45 [ 11] [ 6] [158921] +22:58:45 [ 70] [ 3] [301] +22:58:45 ============================================================================ +22:58:45 + + +waiting on router queue for slot.... +22:58:45 Sending to : +22:58:45 ============================================================================ +22:58:45 ============================================================================ +22:58:45 Slot Id : <360> +22:58:45 Transaction Type : RESPONSE +22:58:45 Received From : +22:58:45 ============================================================================ +22:58:45 FNo. Len. Field Value +22:58:45 ============================================================================ +22:58:45 [ 1] [ 4] [0810] +22:58:45 [ 7] [ 10] [0320035753] +22:58:45 [ 11] [ 6] [158921] +22:58:45 [ 39] [ 2] [00] +22:58:45 [ 70] [ 3] [301] +22:58:45 ============================================================================ +22:58:45 Calculate Source COMM Id = 2 +22:58:45 ============================================================================ +22:58:45 + + +waiting on router queue for slot.... +22:58:56 ============================================================================ +22:58:56 Slot Id : <354> +22:58:56 Transaction Type : REQUEST +22:58:56 Received From : +22:58:56 ============================================================================ +22:58:56 FNo. Len. Field Value +22:58:56 ============================================================================ +22:58:56 [ 1] [ 4] [0800] +22:58:56 [ 7] [ 10] [0320035804] +22:58:56 [ 11] [ 6] [158922] +22:58:56 [ 70] [ 3] [301] +22:58:56 ============================================================================ +22:58:56 + + +waiting on router queue for slot.... +22:58:56 Sending to : +22:58:56 ============================================================================ +22:58:56 ============================================================================ +22:58:56 Slot Id : <354> +22:58:56 Transaction Type : RESPONSE +22:58:56 Received From : +22:58:56 ============================================================================ +22:58:56 FNo. Len. Field Value +22:58:56 ============================================================================ +22:58:56 [ 1] [ 4] [0810] +22:58:56 [ 7] [ 10] [0320035804] +22:58:56 [ 11] [ 6] [158922] +22:58:56 [ 39] [ 2] [00] +22:58:56 [ 70] [ 3] [301] +22:58:56 ============================================================================ +22:58:56 Calculate Source COMM Id = 2 +22:58:56 ============================================================================ +22:58:56 + + +waiting on router queue for slot.... +22:59:06 ============================================================================ +22:59:06 Slot Id : <338> +22:59:06 Transaction Type : REQUEST +22:59:06 Received From : +22:59:06 ============================================================================ +22:59:06 FNo. Len. Field Value +22:59:06 ============================================================================ +22:59:06 [ 1] [ 4] [0800] +22:59:06 [ 7] [ 10] [0320035814] +22:59:06 [ 11] [ 6] [158923] +22:59:06 [ 70] [ 3] [301] +22:59:06 ============================================================================ +22:59:06 + + +waiting on router queue for slot.... +22:59:06 Sending to : +22:59:06 ============================================================================ +22:59:06 ============================================================================ +22:59:06 Slot Id : <338> +22:59:06 Transaction Type : RESPONSE +22:59:06 Received From : +22:59:06 ============================================================================ +22:59:06 FNo. Len. Field Value +22:59:06 ============================================================================ +22:59:06 [ 1] [ 4] [0810] +22:59:06 [ 7] [ 10] [0320035814] +22:59:06 [ 11] [ 6] [158923] +22:59:06 [ 39] [ 2] [00] +22:59:06 [ 70] [ 3] [301] +22:59:06 ============================================================================ +22:59:06 Calculate Source COMM Id = 2 +22:59:06 ============================================================================ +22:59:06 + + +waiting on router queue for slot.... +22:59:08 ============================================================================ +22:59:08 Slot Id : <396> +22:59:08 Transaction Type : REQUEST +22:59:08 Received From : +22:59:08 ============================================================================ +22:59:08 FNo. Len. Field Value +22:59:08 ============================================================================ +22:59:08 [ 1] [ 4] [0800] +22:59:08 [ 2] [ 5] [02531] +22:59:08 [ 3] [ 6] [579228] +22:59:08 [ 7] [ 10] [0320155908] +22:59:08 [ 11] [ 6] [807746] +22:59:08 [ 15] [ 10] [0320155908] +22:59:08 [ 37] [ 11] [57922807746] +22:59:08 [ 70] [ 3] [001] +22:59:08 ============================================================================ +22:59:08 + + +waiting on router queue for slot.... +22:59:08 ============================================================================ +22:59:08 Slot Id : <396> +22:59:08 Transaction Type : RESPONSE +22:59:08 Received From : +22:59:08 ============================================================================ +22:59:08 FNo. Len. Field Value +22:59:08 ============================================================================ +22:59:08 [ 1] [ 4] [0810] +22:59:08 [ 7] [ 10] [0320155908] +22:59:08 [ 11] [ 6] [807746] +22:59:08 [ 15] [ 4] [0320] +22:59:08 [ 37] [ 12] [57922807746] +22:59:08 [ 39] [ 2] [00] +22:59:08 [ 70] [ 3] [001] +22:59:08 ============================================================================ +22:59:08 Sending to : +22:59:08 ============================================================================ +22:59:08 + + +waiting on router queue for slot.... +22:59:17 ============================================================================ +22:59:17 Slot Id : <390> +22:59:17 Transaction Type : REQUEST +22:59:17 Received From : +22:59:17 ============================================================================ +22:59:17 FNo. Len. Field Value +22:59:17 ============================================================================ +22:59:17 [ 1] [ 4] [0800] +22:59:17 [ 7] [ 10] [0320035825] +22:59:17 [ 11] [ 6] [158924] +22:59:17 [ 70] [ 3] [301] +22:59:17 ============================================================================ +22:59:17 + + +waiting on router queue for slot.... +22:59:17 Sending to : +22:59:17 ============================================================================ +22:59:17 ============================================================================ +22:59:17 Slot Id : <390> +22:59:17 Transaction Type : RESPONSE +22:59:17 Received From : +22:59:17 ============================================================================ +22:59:17 FNo. Len. Field Value +22:59:17 ============================================================================ +22:59:17 [ 1] [ 4] [0810] +22:59:17 [ 7] [ 10] [0320035825] +22:59:17 [ 11] [ 6] [158924] +22:59:17 [ 39] [ 2] [00] +22:59:17 [ 70] [ 3] [301] +22:59:17 ============================================================================ +22:59:17 Calculate Source COMM Id = 2 +22:59:17 ============================================================================ +22:59:17 + + +waiting on router queue for slot.... +22:59:20 ============================================================================ +22:59:20 Slot Id : <374> +22:59:20 Transaction Type : REQUEST +22:59:20 Received From : +22:59:20 ============================================================================ +22:59:20 FNo. Len. Field Value +22:59:20 ============================================================================ +22:59:20 [ 1] [ 4] [0800] +22:59:20 [ 7] [ 10] [0321061111] +22:59:20 [ 11] [ 6] [231111] +22:59:20 [ 37] [ 12] [57923231111] +22:59:20 [ 70] [ 3] [301] +22:59:20 ============================================================================ +22:59:20 + + +waiting on router queue for slot.... +22:59:20 Sending to : +22:59:20 ============================================================================ +22:59:20 ============================================================================ +22:59:20 Slot Id : <374> +22:59:20 Transaction Type : RESPONSE +22:59:20 Received From : +22:59:20 ============================================================================ +22:59:20 FNo. Len. Field Value +22:59:20 ============================================================================ +22:59:20 [ 1] [ 4] [0810] +22:59:20 [ 7] [ 10] [0321061111] +22:59:20 [ 11] [ 6] [231111] +22:59:20 [ 37] [ 12] [579232311110] +22:59:20 [ 39] [ 2] [00] +22:59:20 [ 70] [ 3] [810] +22:59:20 ============================================================================ +22:59:20 Calculate Source COMM Id = 6 +22:59:20 ============================================================================ +22:59:20 + + +waiting on router queue for slot.... +22:59:28 ============================================================================ +22:59:28 Slot Id : <361> +22:59:28 Transaction Type : REQUEST +22:59:28 Received From : +22:59:28 ============================================================================ +22:59:28 FNo. Len. Field Value +22:59:28 ============================================================================ +22:59:28 [ 1] [ 4] [0800] +22:59:28 [ 7] [ 10] [0320035835] +22:59:28 [ 11] [ 6] [158925] +22:59:28 [ 70] [ 3] [301] +22:59:28 ============================================================================ +22:59:28 + + +waiting on router queue for slot.... +22:59:28 Sending to : +22:59:28 ============================================================================ +22:59:28 ============================================================================ +22:59:28 Slot Id : <361> +22:59:28 Transaction Type : RESPONSE +22:59:28 Received From : +22:59:28 ============================================================================ +22:59:28 FNo. Len. Field Value +22:59:28 ============================================================================ +22:59:28 [ 1] [ 4] [0810] +22:59:28 [ 7] [ 10] [0320035835] +22:59:28 [ 11] [ 6] [158925] +22:59:28 [ 39] [ 2] [00] +22:59:28 [ 70] [ 3] [301] +22:59:28 ============================================================================ +22:59:28 Calculate Source COMM Id = 2 +22:59:28 ============================================================================ +22:59:28 + + +waiting on router queue for slot.... +22:59:36 ============================================================================ +22:59:36 Slot Id : <389> +22:59:36 Transaction Type : REQUEST +22:59:36 Received From : +22:59:36 ============================================================================ +22:59:36 FNo. Len. Field Value +22:59:36 ============================================================================ +22:59:36 [ 1] [ 4] [0200] +22:59:36 [ 2] [ 16] [6688990040164954] +22:59:36 [ 3] [ 6] [010000] +22:59:36 [ 4] [ 12] [000020000000] +22:59:36 [ 7] [ 10] [0320225932] +22:59:36 [ 11] [ 6] [849031] +22:59:36 [ 12] [ 6] [225932] +22:59:36 [ 13] [ 4] [0320] +22:59:36 [ 15] [ 4] [0320] +22:59:36 [ 18] [ 4] [6011] +22:59:36 [ 22] [ 3] [900] +22:59:36 [ 25] [ 2] [02] +22:59:36 [ 28] [ 9] [D00002000] +22:59:36 [ 32] [ 6] [621354] +22:59:36 [ 35] [ 37] [6688990040164954=98061261262415500000] +22:59:36 [ 37] [ 12] [507903499713] +22:59:36 [ 41] [ 8] [06002200] +22:59:36 [ 42] [ 15] [NATIVE ] +22:59:36 [ 43] [ 40] [Beng Market Beng LAO] +22:59:36 [ 49] [ 3] [418] +22:59:36 [ 52] [ 16] [A7ECB4295B5B1195] +22:59:36 ============================================================================ +22:59:36 + + +waiting on router queue for slot.... +22:59:36 Sending to : +22:59:36 ============================================================================ +22:59:36 Sending to : +22:59:36 ============================================================================ +22:59:36 ============================================================================ +22:59:36 Slot Id : <389> +22:59:36 Transaction Type : REQUEST +22:59:36 Received From : +22:59:36 ============================================================================ +22:59:36 FNo. Len. Field Value +22:59:36 ============================================================================ +22:59:36 [ 1] [ 4] [0200] +22:59:36 [ 2] [ 16] [6688990040164954] +22:59:36 [ 3] [ 6] [010000] +22:59:36 [ 4] [ 12] [000020000000] +22:59:36 [ 7] [ 10] [0320225932] +22:59:36 [ 11] [ 6] [849031] +22:59:36 [ 12] [ 6] [225932] +22:59:36 [ 13] [ 4] [0320] +22:59:36 [ 15] [ 4] [0320] +22:59:36 [ 18] [ 4] [6011] +22:59:36 [ 22] [ 3] [900] +22:59:36 [ 25] [ 2] [02] +22:59:36 [ 28] [ 9] [D00002000] +22:59:36 [ 32] [ 6] [621354] +22:59:36 [ 35] [ 37] [6688990040164954=98061261262415500000] +22:59:36 [ 37] [ 12] [507903499713] +22:59:36 [ 41] [ 8] [06002200] +22:59:36 [ 42] [ 15] [NATIVE ] +22:59:36 [ 43] [ 40] [Beng Market Beng LAO] +22:59:36 [ 49] [ 3] [418] +22:59:36 [ 52] [ 16] [A7ECB4295B5B1195] +22:59:36 ============================================================================ +22:59:36 + + +waiting on router queue for slot.... +22:59:36 Sending to : +22:59:36 ============================================================================ +22:59:36 ============================================================================ +22:59:36 Slot Id : <389> +22:59:36 Transaction Type : REQUEST +22:59:36 Received From : +22:59:36 ============================================================================ +22:59:36 FNo. Len. Field Value +22:59:36 ============================================================================ +22:59:36 [ 1] [ 4] [0200] +22:59:36 [ 2] [ 16] [6688990040164954] +22:59:36 [ 3] [ 6] [010000] +22:59:36 [ 4] [ 12] [000020000000] +22:59:36 [ 7] [ 10] [0320225932] +22:59:36 [ 11] [ 6] [849031] +22:59:36 [ 12] [ 6] [225932] +22:59:36 [ 13] [ 4] [0320] +22:59:36 [ 15] [ 4] [0320] +22:59:36 [ 18] [ 4] [6011] +22:59:36 [ 22] [ 3] [900] +22:59:36 [ 25] [ 2] [02] +22:59:36 [ 28] [ 9] [D00002000] +22:59:36 [ 32] [ 6] [621354] +22:59:36 [ 35] [ 37] [6688990040164954=98061261262415500000] +22:59:36 [ 37] [ 12] [507903499713] +22:59:36 [ 41] [ 8] [06002200] +22:59:36 [ 42] [ 15] [NATIVE ] +22:59:36 [ 43] [ 40] [Beng Market Beng LAO] +22:59:36 [ 49] [ 3] [418] +22:59:36 [ 52] [ 16] [F0261AF6442419AA] +22:59:36 ============================================================================ +22:59:36 + + +waiting on router queue for slot.... +22:59:36 Sending to : <4> +22:59:36 ============================================================================ +22:59:38 ============================================================================ +22:59:38 Slot Id : <389> +22:59:38 Transaction Type : RESPONSE +22:59:38 Received From : +22:59:38 ============================================================================ +22:59:38 FNo. Len. Field Value +22:59:38 ============================================================================ +22:59:38 [ 1] [ 4] [0210] +22:59:38 [ 2] [ 16] [6688990040164954] +22:59:38 [ 3] [ 6] [010000] +22:59:38 [ 4] [ 12] [000020000000] +22:59:38 [ 11] [ 6] [849031] +22:59:38 [ 12] [ 6] [225932] +22:59:38 [ 15] [ 4] [0320] +22:59:38 [ 18] [ 4] [6011] +22:59:38 [ 32] [ 6] [621354] +22:59:38 [ 35] [ 37] [6688990040164954=98061261262415500000] +22:59:38 [ 37] [ 12] [507903499713] +22:59:38 [ 38] [ 6] [456363] +22:59:38 [ 39] [ 2] [00] +22:59:38 [ 41] [ 8] [06002200] +22:59:38 [ 49] [ 3] [418] +22:59:38 [ 54] [ 20] [0002418C001481724512] +22:59:38 ============================================================================ +22:59:38 Sending to : +22:59:38 ============================================================================ +22:59:38 + + +waiting on router queue for slot.... +22:59:39 ============================================================================ +22:59:39 Slot Id : <389> +22:59:39 Transaction Type : RESPONSE +22:59:39 Received From : +22:59:39 ============================================================================ +22:59:39 FNo. Len. Field Value +22:59:39 ============================================================================ +22:59:39 [ 1] [ 4] [0210] +22:59:39 [ 2] [ 16] [6688990040164954] +22:59:39 [ 3] [ 6] [010000] +22:59:39 [ 4] [ 12] [000020000000] +22:59:39 [ 11] [ 6] [849031] +22:59:39 [ 12] [ 6] [225932] +22:59:39 [ 15] [ 4] [0320] +22:59:39 [ 18] [ 4] [6011] +22:59:39 [ 32] [ 6] [621354] +22:59:39 [ 35] [ 37] [6688990040164954=98061261262415500000] +22:59:39 [ 37] [ 12] [507903499713] +22:59:39 [ 38] [ 6] [456363] +22:59:39 [ 39] [ 2] [00] +22:59:39 [ 41] [ 8] [06002200] +22:59:39 [ 49] [ 3] [418] +22:59:39 [ 54] [ 20] [0002418C001481724512] +22:59:39 ============================================================================ +22:59:39 Calculate Source COMM Id = 0 +22:59:39 ============================================================================ +22:59:39 + + +waiting on router queue for slot.... +22:59:43 ============================================================================ +22:59:43 Slot Id : <351> +22:59:43 Transaction Type : REQUEST +22:59:43 Received From : +22:59:43 ============================================================================ +22:59:43 FNo. Len. Field Value +22:59:43 ============================================================================ +22:59:43 [ 1] [ 4] [0800] +22:59:43 [ 7] [ 10] [0320035851] +22:59:43 [ 11] [ 6] [158926] +22:59:43 [ 70] [ 3] [301] +22:59:43 ============================================================================ +22:59:43 + + +waiting on router queue for slot.... +22:59:43 Sending to : +22:59:43 ============================================================================ +22:59:43 ============================================================================ +22:59:43 Slot Id : <351> +22:59:43 Transaction Type : RESPONSE +22:59:43 Received From : +22:59:43 ============================================================================ +22:59:43 FNo. Len. Field Value +22:59:43 ============================================================================ +22:59:43 [ 1] [ 4] [0810] +22:59:43 [ 7] [ 10] [0320035851] +22:59:43 [ 11] [ 6] [158926] +22:59:43 [ 39] [ 2] [00] +22:59:43 [ 70] [ 3] [301] +22:59:43 ============================================================================ +22:59:43 Calculate Source COMM Id = 2 +22:59:43 ============================================================================ +22:59:43 + + +waiting on router queue for slot.... +22:59:54 ============================================================================ +22:59:54 Slot Id : <410> +22:59:54 Transaction Type : REQUEST +22:59:54 Received From : +22:59:54 ============================================================================ +22:59:54 FNo. Len. Field Value +22:59:54 ============================================================================ +22:59:54 [ 1] [ 4] [0800] +22:59:54 [ 7] [ 10] [0320035903] +22:59:54 [ 11] [ 6] [158927] +22:59:54 [ 70] [ 3] [301] +22:59:54 ============================================================================ +22:59:54 + + +waiting on router queue for slot.... +22:59:54 Sending to : +22:59:54 ============================================================================ +22:59:54 ============================================================================ +22:59:54 Slot Id : <410> +22:59:54 Transaction Type : RESPONSE +22:59:54 Received From : +22:59:54 ============================================================================ +22:59:54 FNo. Len. Field Value +22:59:54 ============================================================================ +22:59:54 [ 1] [ 4] [0810] +22:59:54 [ 7] [ 10] [0320035903] +22:59:54 [ 11] [ 6] [158927] +22:59:54 [ 39] [ 2] [00] +22:59:54 [ 70] [ 3] [301] +22:59:54 ============================================================================ +22:59:54 Calculate Source COMM Id = 2 +22:59:54 ============================================================================ +22:59:54 + + +waiting on router queue for slot.... +22:59:55 ============================================================================ +22:59:55 Slot Id : <376> +22:59:55 Transaction Type : REQUEST +22:59:55 Received From : +22:59:55 ============================================================================ +22:59:55 FNo. Len. Field Value +22:59:55 ============================================================================ +22:59:55 [ 1] [ 4] [0800] +22:59:55 [ 7] [ 10] [0320160742] +22:59:55 [ 11] [ 6] [088214] +22:59:55 [ 37] [ 12] [57923088214] +22:59:55 [ 70] [ 3] [301] +22:59:55 ============================================================================ +22:59:55 + + +waiting on router queue for slot.... +22:59:55 Sending to : +22:59:55 ============================================================================ +22:59:55 ============================================================================ +22:59:55 Slot Id : <376> +22:59:55 Transaction Type : RESPONSE +22:59:55 Received From : +22:59:55 ============================================================================ +22:59:55 FNo. Len. Field Value +22:59:55 ============================================================================ +22:59:55 [ 1] [ 4] [0810] +22:59:55 [ 7] [ 10] [0320160742] +22:59:55 [ 11] [ 6] [088214] +22:59:55 [ 37] [ 12] [579230882140] +22:59:55 [ 39] [ 2] [00] +22:59:55 [ 70] [ 3] [810] +22:59:55 ============================================================================ +22:59:55 Calculate Source COMM Id = 1 +22:59:55 ============================================================================ +22:59:55 + + +waiting on router queue for slot.... +23:00:05 ============================================================================ +23:00:05 Slot Id : <383> +23:00:05 Transaction Type : REQUEST +23:00:05 Received From : +23:00:05 ============================================================================ +23:00:05 FNo. Len. Field Value +23:00:05 ============================================================================ +23:00:05 [ 1] [ 4] [0800] +23:00:05 [ 7] [ 10] [0320035913] +23:00:05 [ 11] [ 6] [158928] +23:00:05 [ 70] [ 3] [301] +23:00:05 ============================================================================ +23:00:05 + + +waiting on router queue for slot.... +23:00:05 Sending to : +23:00:05 ============================================================================ +23:00:05 ============================================================================ +23:00:05 Slot Id : <383> +23:00:05 Transaction Type : RESPONSE +23:00:05 Received From : +23:00:05 ============================================================================ +23:00:05 FNo. Len. Field Value +23:00:05 ============================================================================ +23:00:05 [ 1] [ 4] [0810] +23:00:05 [ 7] [ 10] [0320035913] +23:00:05 [ 11] [ 6] [158928] +23:00:05 [ 39] [ 2] [00] +23:00:05 [ 70] [ 3] [301] +23:00:05 ============================================================================ +23:00:05 Calculate Source COMM Id = 2 +23:00:05 ============================================================================ +23:00:05 + + +waiting on router queue for slot.... +23:00:10 ============================================================================ +23:00:10 Slot Id : <359> +23:00:10 Transaction Type : REQUEST +23:00:10 Received From : +23:00:10 ============================================================================ +23:00:10 FNo. Len. Field Value +23:00:10 ============================================================================ +23:00:10 [ 1] [ 4] [0800] +23:00:10 [ 2] [ 5] [02531] +23:00:10 [ 3] [ 6] [579238] +23:00:10 [ 7] [ 10] [0320160010] +23:00:10 [ 11] [ 6] [807747] +23:00:10 [ 15] [ 10] [0320160010] +23:00:10 [ 37] [ 11] [57923807747] +23:00:10 [ 70] [ 3] [001] +23:00:10 ============================================================================ +23:00:10 + + +waiting on router queue for slot.... +23:00:10 ============================================================================ +23:00:10 Slot Id : <359> +23:00:10 Transaction Type : RESPONSE +23:00:10 Received From : +23:00:10 ============================================================================ +23:00:10 FNo. Len. Field Value +23:00:10 ============================================================================ +23:00:10 [ 1] [ 4] [0810] +23:00:10 [ 7] [ 10] [0320160010] +23:00:10 [ 11] [ 6] [807747] +23:00:10 [ 15] [ 4] [0320] +23:00:10 [ 37] [ 12] [57923807747] +23:00:10 [ 39] [ 2] [00] +23:00:10 [ 70] [ 3] [001] +23:00:10 ============================================================================ +23:00:10 Sending to : +23:00:10 ============================================================================ +23:00:10 + + +waiting on router queue for slot.... +23:00:16 ============================================================================ +23:00:16 Slot Id : <395> +23:00:16 Transaction Type : REQUEST +23:00:16 Received From : +23:00:16 ============================================================================ +23:00:16 FNo. Len. Field Value +23:00:16 ============================================================================ +23:00:16 [ 1] [ 4] [0800] +23:00:16 [ 7] [ 10] [0320035924] +23:00:16 [ 11] [ 6] [158929] +23:00:16 [ 70] [ 3] [301] +23:00:16 ============================================================================ +23:00:16 + + +waiting on router queue for slot.... +23:00:16 Sending to : +23:00:16 ============================================================================ +23:00:16 ============================================================================ +23:00:16 Slot Id : <395> +23:00:16 Transaction Type : RESPONSE +23:00:16 Received From : +23:00:16 ============================================================================ +23:00:16 FNo. Len. Field Value +23:00:16 ============================================================================ +23:00:16 [ 1] [ 4] [0810] +23:00:16 [ 7] [ 10] [0320035924] +23:00:16 [ 11] [ 6] [158929] +23:00:16 [ 39] [ 2] [00] +23:00:16 [ 70] [ 3] [301] +23:00:16 ============================================================================ +23:00:16 Calculate Source COMM Id = 2 +23:00:16 ============================================================================ +23:00:16 + + +waiting on router queue for slot.... +23:00:25 ============================================================================ +23:00:25 Slot Id : <400> +23:00:25 Transaction Type : REQUEST +23:00:25 Received From : +23:00:25 ============================================================================ +23:00:25 FNo. Len. Field Value +23:00:25 ============================================================================ +23:00:25 [ 1] [ 4] [0800] +23:00:25 [ 7] [ 10] [0321061216] +23:00:25 [ 11] [ 6] [231216] +23:00:25 [ 37] [ 12] [57923231216] +23:00:25 [ 70] [ 3] [301] +23:00:25 ============================================================================ +23:00:25 + + +waiting on router queue for slot.... +23:00:25 Sending to : +23:00:25 ============================================================================ +23:00:25 ============================================================================ +23:00:25 Slot Id : <400> +23:00:25 Transaction Type : RESPONSE +23:00:25 Received From : +23:00:25 ============================================================================ +23:00:25 FNo. Len. Field Value +23:00:25 ============================================================================ +23:00:25 [ 1] [ 4] [0810] +23:00:25 [ 7] [ 10] [0321061216] +23:00:25 [ 11] [ 6] [231216] +23:00:25 [ 37] [ 12] [579232312160] +23:00:25 [ 39] [ 2] [00] +23:00:25 [ 70] [ 3] [810] +23:00:25 ============================================================================ +23:00:25 Calculate Source COMM Id = 6 +23:00:25 ============================================================================ +23:00:25 + + +waiting on router queue for slot.... +23:00:27 ============================================================================ +23:00:27 Slot Id : <393> +23:00:27 Transaction Type : REQUEST +23:00:27 Received From : +23:00:27 ============================================================================ +23:00:27 FNo. Len. Field Value +23:00:27 ============================================================================ +23:00:27 [ 1] [ 4] [0800] +23:00:27 [ 7] [ 10] [0320035935] +23:00:27 [ 11] [ 6] [158930] +23:00:27 [ 70] [ 3] [301] +23:00:27 ============================================================================ +23:00:27 + + +waiting on router queue for slot.... +23:00:27 Sending to : +23:00:27 ============================================================================ +23:00:27 ============================================================================ +23:00:27 Slot Id : <393> +23:00:27 Transaction Type : RESPONSE +23:00:27 Received From : +23:00:27 ============================================================================ +23:00:27 FNo. Len. Field Value +23:00:27 ============================================================================ +23:00:27 [ 1] [ 4] [0810] +23:00:27 [ 7] [ 10] [0320035935] +23:00:27 [ 11] [ 6] [158930] +23:00:27 [ 39] [ 2] [00] +23:00:27 [ 70] [ 3] [301] +23:00:27 ============================================================================ +23:00:27 Calculate Source COMM Id = 2 +23:00:27 ============================================================================ +23:00:27 + + +waiting on router queue for slot.... +23:00:32 ============================================================================ +23:00:32 Slot Id : <414> +23:00:32 Transaction Type : REQUEST +23:00:32 Received From : +23:00:32 ============================================================================ +23:00:32 FNo. Len. Field Value +23:00:32 ============================================================================ +23:00:32 [ 1] [ 4] [0200] +23:00:32 [ 2] [ 16] [6213543000234772] +23:00:32 [ 3] [ 6] [010000] +23:00:32 [ 4] [ 12] [000005000000] +23:00:32 [ 7] [ 10] [0320225823] +23:00:32 [ 11] [ 6] [958087] +23:00:32 [ 12] [ 6] [225823] +23:00:32 [ 13] [ 4] [0320] +23:00:32 [ 15] [ 4] [0320] +23:00:32 [ 18] [ 4] [6011] +23:00:32 [ 19] [ 3] [418] +23:00:32 [ 22] [ 3] [021] +23:00:32 [ 25] [ 2] [01] +23:00:32 [ 28] [ 9] [D00002000] +23:00:32 [ 32] [ 6] [668899] +23:00:32 [ 35] [ 32] [6213543000234772=491212013477330] +23:00:32 [ 37] [ 12] [507901691180] +23:00:32 [ 41] [ 8] [03002003] +23:00:32 [ 42] [ 15] [APT ] +23:00:32 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +23:00:32 [ 49] [ 3] [418] +23:00:32 [ 52] [ 16] [D7FF90DD61A0AB6F] +23:00:32 ============================================================================ +23:00:32 + + +waiting on router queue for slot.... +23:00:32 Sending to : +23:00:32 ============================================================================ +23:00:32 Sending to : +23:00:32 ============================================================================ +23:00:32 ============================================================================ +23:00:32 Slot Id : <414> +23:00:32 Transaction Type : REQUEST +23:00:32 Received From : +23:00:32 ============================================================================ +23:00:32 FNo. Len. Field Value +23:00:32 ============================================================================ +23:00:32 [ 1] [ 4] [0200] +23:00:32 [ 2] [ 16] [6213543000234772] +23:00:32 [ 3] [ 6] [010000] +23:00:32 [ 4] [ 12] [000005000000] +23:00:32 [ 7] [ 10] [0320225823] +23:00:32 [ 11] [ 6] [958087] +23:00:32 [ 12] [ 6] [225823] +23:00:32 [ 13] [ 4] [0320] +23:00:32 [ 15] [ 4] [0320] +23:00:32 [ 18] [ 4] [6011] +23:00:32 [ 19] [ 3] [418] +23:00:32 [ 22] [ 3] [021] +23:00:32 [ 25] [ 2] [01] +23:00:32 [ 28] [ 9] [D00002000] +23:00:32 [ 32] [ 6] [668899] +23:00:32 [ 35] [ 32] [6213543000234772=491212013477330] +23:00:32 [ 37] [ 12] [507901691180] +23:00:32 [ 41] [ 8] [03002003] +23:00:32 [ 42] [ 15] [APT ] +23:00:32 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +23:00:32 [ 49] [ 3] [418] +23:00:32 [ 52] [ 16] [D7FF90DD61A0AB6F] +23:00:32 ============================================================================ +23:00:32 + + +waiting on router queue for slot.... +23:00:32 Sending to : +23:00:32 ============================================================================ +23:00:32 ============================================================================ +23:00:32 Slot Id : <414> +23:00:32 Transaction Type : REQUEST +23:00:32 Received From : +23:00:32 ============================================================================ +23:00:32 FNo. Len. Field Value +23:00:32 ============================================================================ +23:00:32 [ 1] [ 4] [0200] +23:00:32 [ 2] [ 16] [6213543000234772] +23:00:32 [ 3] [ 6] [010000] +23:00:32 [ 4] [ 12] [000005000000] +23:00:32 [ 7] [ 10] [0320225823] +23:00:32 [ 11] [ 6] [958087] +23:00:32 [ 12] [ 6] [225823] +23:00:32 [ 13] [ 4] [0320] +23:00:32 [ 15] [ 4] [0320] +23:00:32 [ 18] [ 4] [6011] +23:00:32 [ 19] [ 3] [418] +23:00:32 [ 22] [ 3] [021] +23:00:32 [ 25] [ 2] [01] +23:00:32 [ 28] [ 9] [D00002000] +23:00:32 [ 32] [ 6] [668899] +23:00:32 [ 35] [ 32] [6213543000234772=491212013477330] +23:00:32 [ 37] [ 12] [507901691180] +23:00:32 [ 41] [ 8] [03002003] +23:00:32 [ 42] [ 15] [APT ] +23:00:32 [ 43] [ 40] [ BOUNTAI PHONGSALY LAO] +23:00:32 [ 49] [ 3] [418] +23:00:32 [ 52] [ 16] [DF9C89049DA822DB] +23:00:32 ============================================================================ +23:00:32 + + +waiting on router queue for slot.... +23:00:32 Sending to : <0> +23:00:32 ============================================================================ +23:00:33 ============================================================================ +23:00:33 Slot Id : <414> +23:00:33 Transaction Type : RESPONSE +23:00:33 Received From : +23:00:33 ============================================================================ +23:00:33 FNo. Len. Field Value +23:00:33 ============================================================================ +23:00:33 [ 1] [ 4] [0210] +23:00:33 [ 2] [ 16] [6213543000234772] +23:00:33 [ 3] [ 6] [010000] +23:00:33 [ 4] [ 12] [000005000000] +23:00:33 [ 7] [ 10] [0320225823] +23:00:33 [ 11] [ 6] [958087] +23:00:33 [ 12] [ 6] [225823] +23:00:33 [ 13] [ 4] [0320] +23:00:33 [ 15] [ 4] [0320] +23:00:33 [ 18] [ 4] [6011] +23:00:33 [ 19] [ 3] [418] +23:00:33 [ 32] [ 6] [668899] +23:00:33 [ 35] [ 32] [6213543000234772=491212013477330] +23:00:33 [ 37] [ 12] [507901691180] +23:00:33 [ 38] [ 6] [860066] +23:00:33 [ 39] [ 2] [00] +23:00:33 [ 41] [ 8] [03002003] +23:00:33 [ 49] [ 3] [418] +23:00:33 [ 54] [ 40] [0001418C0000338000000002418C000018400000] +23:00:33 ============================================================================ +23:00:33 Sending to : +23:00:33 ============================================================================ +23:00:33 + + +waiting on router queue for slot.... +23:00:34 ============================================================================ +23:00:34 Slot Id : <414> +23:00:34 Transaction Type : RESPONSE +23:00:34 Received From : +23:00:34 ============================================================================ +23:00:34 FNo. Len. Field Value +23:00:34 ============================================================================ +23:00:34 [ 1] [ 4] [0210] +23:00:34 [ 2] [ 16] [6213543000234772] +23:00:34 [ 3] [ 6] [010000] +23:00:34 [ 4] [ 12] [000005000000] +23:00:34 [ 7] [ 10] [0320225823] +23:00:34 [ 11] [ 6] [958087] +23:00:34 [ 12] [ 6] [225823] +23:00:34 [ 13] [ 4] [0320] +23:00:34 [ 15] [ 4] [0320] +23:00:34 [ 18] [ 4] [6011] +23:00:34 [ 19] [ 3] [418] +23:00:34 [ 32] [ 6] [668899] +23:00:34 [ 35] [ 32] [6213543000234772=491212013477330] +23:00:34 [ 37] [ 12] [507901691180] +23:00:34 [ 38] [ 6] [860066] +23:00:34 [ 39] [ 2] [00] +23:00:34 [ 41] [ 8] [03002003] +23:00:34 [ 49] [ 3] [418] +23:00:34 [ 54] [ 40] [0001418C0000338000000002418C000018400000] +23:00:34 ============================================================================ +23:00:34 Calculate Source COMM Id = 4 +23:00:34 ============================================================================ +23:00:34 + + +waiting on router queue for slot.... +23:00:42 ============================================================================ +23:00:42 Slot Id : <349> +23:00:42 Transaction Type : REQUEST +23:00:42 Received From : +23:00:42 ============================================================================ +23:00:42 FNo. Len. Field Value +23:00:42 ============================================================================ +23:00:42 [ 1] [ 4] [0800] +23:00:42 [ 7] [ 10] [0320035950] +23:00:42 [ 11] [ 6] [158931] +23:00:42 [ 70] [ 3] [301] +23:00:42 ============================================================================ +23:00:42 + + +waiting on router queue for slot.... +23:00:42 Sending to : +23:00:42 ============================================================================ +23:00:42 ============================================================================ +23:00:42 Slot Id : <349> +23:00:42 Transaction Type : RESPONSE +23:00:42 Received From : +23:00:42 ============================================================================ +23:00:42 FNo. Len. Field Value +23:00:42 ============================================================================ +23:00:42 [ 1] [ 4] [0810] +23:00:42 [ 7] [ 10] [0320035950] +23:00:42 [ 11] [ 6] [158931] +23:00:42 [ 39] [ 2] [00] +23:00:42 [ 70] [ 3] [301] +23:00:42 ============================================================================ +23:00:42 Calculate Source COMM Id = 2 +23:00:42 ============================================================================ +23:00:42 + + +waiting on router queue for slot.... +23:00:54 ============================================================================ +23:00:54 Slot Id : <413> +23:00:54 Transaction Type : REQUEST +23:00:54 Received From : +23:00:54 ============================================================================ +23:00:54 FNo. Len. Field Value +23:00:54 ============================================================================ +23:00:54 [ 1] [ 4] [0800] +23:00:54 [ 7] [ 10] [0320040001] +23:00:54 [ 11] [ 6] [158932] +23:00:54 [ 70] [ 3] [301] +23:00:54 ============================================================================ +23:00:54 + + +waiting on router queue for slot.... +23:00:54 Sending to : +23:00:54 ============================================================================ +23:00:54 ============================================================================ +23:00:54 Slot Id : <413> +23:00:54 Transaction Type : RESPONSE +23:00:54 Received From : +23:00:54 ============================================================================ +23:00:54 FNo. Len. Field Value +23:00:54 ============================================================================ +23:00:54 [ 1] [ 4] [0810] +23:00:54 [ 7] [ 10] [0320040001] +23:00:54 [ 11] [ 6] [158932] +23:00:54 [ 39] [ 2] [00] +23:00:54 [ 70] [ 3] [301] +23:00:54 ============================================================================ +23:00:54 Calculate Source COMM Id = 2 +23:00:54 ============================================================================ +23:00:54 + + +waiting on router queue for slot.... +23:01:09 ============================================================================ +23:01:09 Slot Id : <397> +23:01:09 Transaction Type : REQUEST +23:01:09 Received From : +23:01:09 ============================================================================ +23:01:09 FNo. Len. Field Value +23:01:09 ============================================================================ +23:01:09 [ 1] [ 4] [0800] +23:01:09 [ 7] [ 10] [0320040017] +23:01:09 [ 11] [ 6] [158933] +23:01:09 [ 70] [ 3] [301] +23:01:09 ============================================================================ +23:01:09 + + +waiting on router queue for slot.... +23:01:09 Sending to : +23:01:09 ============================================================================ +23:01:09 ============================================================================ +23:01:09 Slot Id : <397> +23:01:09 Transaction Type : RESPONSE +23:01:09 Received From : +23:01:09 ============================================================================ +23:01:09 FNo. Len. Field Value +23:01:09 ============================================================================ +23:01:09 [ 1] [ 4] [0810] +23:01:09 [ 7] [ 10] [0320040017] +23:01:09 [ 11] [ 6] [158933] +23:01:09 [ 39] [ 2] [00] +23:01:09 [ 70] [ 3] [301] +23:01:09 ============================================================================ +23:01:09 Calculate Source COMM Id = 2 +23:01:09 ============================================================================ +23:01:09 + + +waiting on router queue for slot.... +23:01:12 ============================================================================ +23:01:12 Slot Id : <394> +23:01:12 Transaction Type : REQUEST +23:01:12 Received From : +23:01:12 ============================================================================ +23:01:12 FNo. Len. Field Value +23:01:12 ============================================================================ +23:01:12 [ 1] [ 4] [0800] +23:01:12 [ 2] [ 5] [02531] +23:01:12 [ 3] [ 6] [579238] +23:01:12 [ 7] [ 10] [0320160112] +23:01:12 [ 11] [ 6] [807748] +23:01:12 [ 15] [ 10] [0320160112] +23:01:12 [ 37] [ 11] [57923807748] +23:01:12 [ 70] [ 3] [001] +23:01:12 ============================================================================ +23:01:12 + + +waiting on router queue for slot.... +23:01:12 ============================================================================ +23:01:12 Slot Id : <394> +23:01:12 Transaction Type : RESPONSE +23:01:12 Received From : +23:01:12 ============================================================================ +23:01:12 FNo. Len. Field Value +23:01:12 ============================================================================ +23:01:12 [ 1] [ 4] [0810] +23:01:12 [ 7] [ 10] [0320160112] +23:01:12 [ 11] [ 6] [807748] +23:01:12 [ 15] [ 4] [0320] +23:01:12 [ 37] [ 12] [57923807748] +23:01:12 [ 39] [ 2] [00] +23:01:12 [ 70] [ 3] [001] +23:01:12 ============================================================================ +23:01:12 Sending to : +23:01:12 ============================================================================ +23:01:12 + + +waiting on router queue for slot.... +23:01:21 ============================================================================ +23:01:21 Slot Id : <387> +23:01:21 Transaction Type : REQUEST +23:01:21 Received From : +23:01:21 ============================================================================ +23:01:21 FNo. Len. Field Value +23:01:21 ============================================================================ +23:01:21 [ 1] [ 4] [0800] +23:01:21 [ 7] [ 10] [0320155912] +23:01:21 [ 11] [ 6] [006996] +23:01:21 [ 37] [ 12] [57922006996] +23:01:21 [ 70] [ 3] [301] +23:01:21 ============================================================================ +23:01:21 + + +waiting on router queue for slot.... +23:01:21 Sending to : +23:01:21 ============================================================================ +23:01:21 ============================================================================ +23:01:21 Slot Id : <387> +23:01:21 Transaction Type : RESPONSE +23:01:21 Received From : +23:01:21 ============================================================================ +23:01:21 FNo. Len. Field Value +23:01:21 ============================================================================ +23:01:21 [ 1] [ 4] [0810] +23:01:21 [ 7] [ 10] [0320155912] +23:01:21 [ 11] [ 6] [006996] +23:01:21 [ 37] [ 12] [579220069960] +23:01:21 [ 39] [ 2] [00] +23:01:21 [ 70] [ 3] [810] +23:01:21 ============================================================================ +23:01:21 Calculate Source COMM Id = 4 +23:01:21 ============================================================================ +23:01:21 + + +waiting on router queue for slot.... +23:01:25 ============================================================================ +23:01:25 Slot Id : <399> +23:01:25 Transaction Type : REQUEST +23:01:25 Received From : +23:01:25 ============================================================================ +23:01:25 FNo. Len. Field Value +23:01:25 ============================================================================ +23:01:25 [ 1] [ 4] [0800] +23:01:25 [ 7] [ 10] [0320040033] +23:01:25 [ 11] [ 6] [158934] +23:01:25 [ 70] [ 3] [301] +23:01:25 ============================================================================ +23:01:25 + + +waiting on router queue for slot.... +23:01:25 Sending to : +23:01:25 ============================================================================ +23:01:25 ============================================================================ +23:01:25 Slot Id : <399> +23:01:25 Transaction Type : RESPONSE +23:01:25 Received From : +23:01:25 ============================================================================ +23:01:25 FNo. Len. Field Value +23:01:25 ============================================================================ +23:01:25 [ 1] [ 4] [0810] +23:01:25 [ 7] [ 10] [0320040033] +23:01:25 [ 11] [ 6] [158934] +23:01:25 [ 39] [ 2] [00] +23:01:25 [ 70] [ 3] [301] +23:01:25 ============================================================================ +23:01:25 Calculate Source COMM Id = 2 +23:01:25 ============================================================================ +23:01:25 + + +waiting on router queue for slot.... +23:01:30 ============================================================================ +23:01:30 Slot Id : <418> +23:01:30 Transaction Type : REQUEST +23:01:30 Received From : +23:01:30 ============================================================================ +23:01:30 FNo. Len. Field Value +23:01:30 ============================================================================ +23:01:30 [ 1] [ 4] [0800] +23:01:30 [ 7] [ 10] [0321061321] +23:01:30 [ 11] [ 6] [231321] +23:01:30 [ 37] [ 12] [57923231321] +23:01:30 [ 70] [ 3] [301] +23:01:30 ============================================================================ +23:01:30 + + +waiting on router queue for slot.... +23:01:30 Sending to : +23:01:30 ============================================================================ +23:01:30 ============================================================================ +23:01:30 Slot Id : <418> +23:01:30 Transaction Type : RESPONSE +23:01:30 Received From : +23:01:30 ============================================================================ +23:01:30 FNo. Len. Field Value +23:01:30 ============================================================================ +23:01:30 [ 1] [ 4] [0810] +23:01:30 [ 7] [ 10] [0321061321] +23:01:30 [ 11] [ 6] [231321] +23:01:30 [ 37] [ 12] [579232313210] +23:01:30 [ 39] [ 2] [00] +23:01:30 [ 70] [ 3] [810] +23:01:30 ============================================================================ +23:01:30 Calculate Source COMM Id = 6 +23:01:30 ============================================================================ +23:01:30 + + +waiting on router queue for slot.... +23:01:37 ============================================================================ +23:01:37 Slot Id : <372> +23:01:37 Transaction Type : REQUEST +23:01:37 Received From : +23:01:37 ============================================================================ +23:01:37 FNo. Len. Field Value +23:01:37 ============================================================================ +23:01:37 [ 1] [ 4] [0800] +23:01:37 [ 7] [ 10] [0320040044] +23:01:37 [ 11] [ 6] [158935] +23:01:37 [ 70] [ 3] [301] +23:01:37 ============================================================================ +23:01:37 + + +waiting on router queue for slot.... +23:01:37 Sending to : +23:01:37 ============================================================================ +23:01:37 ============================================================================ +23:01:37 Slot Id : <372> +23:01:37 Transaction Type : RESPONSE +23:01:37 Received From : +23:01:37 ============================================================================ +23:01:37 FNo. Len. Field Value +23:01:37 ============================================================================ +23:01:37 [ 1] [ 4] [0810] +23:01:37 [ 7] [ 10] [0320040044] +23:01:37 [ 11] [ 6] [158935] +23:01:37 [ 39] [ 2] [00] +23:01:37 [ 70] [ 3] [301] +23:01:37 ============================================================================ +23:01:37 Calculate Source COMM Id = 2 +23:01:37 ============================================================================ +23:01:37 + + +waiting on router queue for slot.... +23:01:52 ============================================================================ +23:01:52 Slot Id : <406> +23:01:52 Transaction Type : REQUEST +23:01:52 Received From : +23:01:52 ============================================================================ +23:01:52 FNo. Len. Field Value +23:01:52 ============================================================================ +23:01:52 [ 1] [ 4] [0800] +23:01:52 [ 7] [ 10] [0320040100] +23:01:52 [ 11] [ 6] [158936] +23:01:52 [ 70] [ 3] [301] +23:01:52 ============================================================================ +23:01:52 + + +waiting on router queue for slot.... +23:01:52 Sending to : +23:01:52 ============================================================================ +23:01:52 ============================================================================ +23:01:52 Slot Id : <406> +23:01:52 Transaction Type : RESPONSE +23:01:52 Received From : +23:01:52 ============================================================================ +23:01:52 FNo. Len. Field Value +23:01:52 ============================================================================ +23:01:52 [ 1] [ 4] [0810] +23:01:52 [ 7] [ 10] [0320040100] +23:01:52 [ 11] [ 6] [158936] +23:01:52 [ 39] [ 2] [00] +23:01:52 [ 70] [ 3] [301] +23:01:52 ============================================================================ +23:01:52 Calculate Source COMM Id = 2 +23:01:52 ============================================================================ +23:01:52 + + +waiting on router queue for slot.... +23:02:03 ============================================================================ +23:02:03 Slot Id : <368> +23:02:03 Transaction Type : REQUEST +23:02:03 Received From : +23:02:03 ============================================================================ +23:02:03 FNo. Len. Field Value +23:02:03 ============================================================================ +23:02:03 [ 1] [ 4] [0800] +23:02:03 [ 7] [ 10] [0320040111] +23:02:03 [ 11] [ 6] [158937] +23:02:03 [ 70] [ 3] [301] +23:02:03 ============================================================================ +23:02:03 + + +waiting on router queue for slot.... +23:02:03 Sending to : +23:02:03 ============================================================================ +23:02:03 ============================================================================ +23:02:03 Slot Id : <368> +23:02:03 Transaction Type : RESPONSE +23:02:03 Received From : +23:02:03 ============================================================================ +23:02:03 FNo. Len. Field Value +23:02:03 ============================================================================ +23:02:03 [ 1] [ 4] [0810] +23:02:03 [ 7] [ 10] [0320040111] +23:02:03 [ 11] [ 6] [158937] +23:02:03 [ 39] [ 2] [00] +23:02:03 [ 70] [ 3] [301] +23:02:03 ============================================================================ +23:02:03 Calculate Source COMM Id = 2 +23:02:03 ============================================================================ +23:02:03 + + +waiting on router queue for slot.... +23:02:14 ============================================================================ +23:02:14 Slot Id : <411> +23:02:14 Transaction Type : REQUEST +23:02:14 Received From : +23:02:14 ============================================================================ +23:02:14 FNo. Len. Field Value +23:02:14 ============================================================================ +23:02:14 [ 1] [ 4] [0800] +23:02:14 [ 2] [ 5] [02531] +23:02:14 [ 3] [ 6] [579238] +23:02:14 [ 7] [ 10] [0320160214] +23:02:14 [ 11] [ 6] [807749] +23:02:14 [ 15] [ 10] [0320160214] +23:02:14 [ 37] [ 11] [57923807749] +23:02:14 [ 70] [ 3] [001] +23:02:14 ============================================================================ +23:02:14 + + +waiting on router queue for slot.... +23:02:14 ============================================================================ +23:02:14 Slot Id : <411> +23:02:14 Transaction Type : RESPONSE +23:02:14 Received From : +23:02:14 ============================================================================ +23:02:14 FNo. Len. Field Value +23:02:14 ============================================================================ +23:02:14 [ 1] [ 4] [0810] +23:02:14 [ 7] [ 10] [0320160214] +23:02:14 [ 11] [ 6] [807749] +23:02:14 [ 15] [ 4] [0320] +23:02:14 [ 37] [ 12] [57923807749] +23:02:14 [ 39] [ 2] [00] +23:02:14 [ 70] [ 3] [001] +23:02:14 ============================================================================ +23:02:14 Sending to : +23:02:14 ============================================================================ +23:02:14 + + +waiting on router queue for slot.... +23:02:20 ============================================================================ +23:02:20 Slot Id : <407> +23:02:20 Transaction Type : REQUEST +23:02:20 Received From : +23:02:20 ============================================================================ +23:02:20 FNo. Len. Field Value +23:02:20 ============================================================================ +23:02:20 [ 1] [ 4] [0800] +23:02:20 [ 7] [ 10] [0320040128] +23:02:20 [ 11] [ 6] [158938] +23:02:20 [ 70] [ 3] [301] +23:02:20 ============================================================================ +23:02:20 + + +waiting on router queue for slot.... +23:02:20 Sending to : +23:02:20 ============================================================================ +23:02:20 ============================================================================ +23:02:20 Slot Id : <407> +23:02:20 Transaction Type : RESPONSE +23:02:20 Received From : +23:02:20 ============================================================================ +23:02:20 FNo. Len. Field Value +23:02:20 ============================================================================ +23:02:20 [ 1] [ 4] [0810] +23:02:20 [ 7] [ 10] [0320040128] +23:02:20 [ 11] [ 6] [158938] +23:02:20 [ 39] [ 2] [00] +23:02:20 [ 70] [ 3] [301] +23:02:20 ============================================================================ +23:02:20 Calculate Source COMM Id = 2 +23:02:20 ============================================================================ +23:02:20 + + +waiting on router queue for slot.... +23:02:35 ============================================================================ +23:02:35 Slot Id : <419> +23:02:35 Transaction Type : REQUEST +23:02:35 Received From : +23:02:35 ============================================================================ +23:02:35 FNo. Len. Field Value +23:02:35 ============================================================================ +23:02:35 [ 1] [ 4] [0800] +23:02:35 [ 7] [ 10] [0321061426] +23:02:35 [ 11] [ 6] [231426] +23:02:35 [ 37] [ 12] [57923231426] +23:02:35 [ 70] [ 3] [301] +23:02:35 ============================================================================ +23:02:35 + + +waiting on router queue for slot.... +23:02:35 Sending to : +23:02:35 ============================================================================ +23:02:35 ============================================================================ +23:02:35 Slot Id : <419> +23:02:35 Transaction Type : RESPONSE +23:02:35 Received From : +23:02:35 ============================================================================ +23:02:35 FNo. Len. Field Value +23:02:35 ============================================================================ +23:02:35 [ 1] [ 4] [0810] +23:02:35 [ 7] [ 10] [0321061426] +23:02:35 [ 11] [ 6] [231426] +23:02:35 [ 37] [ 12] [579232314260] +23:02:35 [ 39] [ 2] [00] +23:02:35 [ 70] [ 3] [810] +23:02:35 ============================================================================ +23:02:35 Calculate Source COMM Id = 6 +23:02:35 ============================================================================ +23:02:35 + + +waiting on router queue for slot.... +23:02:36 ============================================================================ +23:02:36 Slot Id : <380> +23:02:36 Transaction Type : REQUEST +23:02:36 Received From : +23:02:36 ============================================================================ +23:02:36 FNo. Len. Field Value +23:02:36 ============================================================================ +23:02:36 [ 1] [ 4] [0800] +23:02:36 [ 7] [ 10] [0320040144] +23:02:36 [ 11] [ 6] [158939] +23:02:36 [ 70] [ 3] [301] +23:02:36 ============================================================================ +23:02:36 + + +waiting on router queue for slot.... +23:02:36 Sending to : +23:02:36 ============================================================================ +23:02:36 ============================================================================ +23:02:36 Slot Id : <380> +23:02:36 Transaction Type : RESPONSE +23:02:36 Received From : +23:02:36 ============================================================================ +23:02:36 FNo. Len. Field Value +23:02:36 ============================================================================ +23:02:36 [ 1] [ 4] [0810] +23:02:36 [ 7] [ 10] [0320040144] +23:02:36 [ 11] [ 6] [158939] +23:02:36 [ 39] [ 2] [00] +23:02:36 [ 70] [ 3] [301] +23:02:36 ============================================================================ +23:02:36 Calculate Source COMM Id = 2 +23:02:36 ============================================================================ +23:02:36 + + +waiting on router queue for slot.... +23:02:47 ============================================================================ +23:02:47 Slot Id : <384> +23:02:47 Transaction Type : REQUEST +23:02:47 Received From : +23:02:47 ============================================================================ +23:02:47 FNo. Len. Field Value +23:02:47 ============================================================================ +23:02:47 [ 1] [ 4] [0800] +23:02:47 [ 7] [ 10] [0320040155] +23:02:47 [ 11] [ 6] [158940] +23:02:47 [ 70] [ 3] [301] +23:02:47 ============================================================================ +23:02:47 + + +waiting on router queue for slot.... +23:02:47 Sending to : +23:02:47 ============================================================================ +23:02:47 ============================================================================ +23:02:47 Slot Id : <384> +23:02:47 Transaction Type : RESPONSE +23:02:47 Received From : +23:02:47 ============================================================================ +23:02:47 FNo. Len. Field Value +23:02:47 ============================================================================ +23:02:47 [ 1] [ 4] [0810] +23:02:47 [ 7] [ 10] [0320040155] +23:02:47 [ 11] [ 6] [158940] +23:02:47 [ 39] [ 2] [00] +23:02:47 [ 70] [ 3] [301] +23:02:47 ============================================================================ +23:02:47 Calculate Source COMM Id = 2 +23:02:47 ============================================================================ +23:02:47 + + +waiting on router queue for slot.... +23:02:57 ============================================================================ +23:02:57 Slot Id : <401> +23:02:57 Transaction Type : REQUEST +23:02:57 Received From : +23:02:57 ============================================================================ +23:02:57 FNo. Len. Field Value +23:02:57 ============================================================================ +23:02:57 [ 1] [ 4] [0800] +23:02:57 [ 7] [ 10] [0320040205] +23:02:57 [ 11] [ 6] [158941] +23:02:57 [ 70] [ 3] [301] +23:02:57 ============================================================================ +23:02:57 + + +waiting on router queue for slot.... +23:02:57 Sending to : +23:02:57 ============================================================================ +23:02:57 ============================================================================ +23:02:57 Slot Id : <401> +23:02:57 Transaction Type : RESPONSE +23:02:57 Received From : +23:02:57 ============================================================================ +23:02:57 FNo. Len. Field Value +23:02:57 ============================================================================ +23:02:57 [ 1] [ 4] [0810] +23:02:57 [ 7] [ 10] [0320040205] +23:02:57 [ 11] [ 6] [158941] +23:02:57 [ 39] [ 2] [00] +23:02:57 [ 70] [ 3] [301] +23:02:57 ============================================================================ +23:02:57 Calculate Source COMM Id = 2 +23:02:57 ============================================================================ +23:02:57 + + +waiting on router queue for slot.... +23:03:08 ============================================================================ +23:03:08 Slot Id : <416> +23:03:08 Transaction Type : REQUEST +23:03:08 Received From : +23:03:08 ============================================================================ +23:03:08 FNo. Len. Field Value +23:03:08 ============================================================================ +23:03:08 [ 1] [ 4] [0800] +23:03:08 [ 7] [ 10] [0320040216] +23:03:08 [ 11] [ 6] [158942] +23:03:08 [ 70] [ 3] [301] +23:03:08 ============================================================================ +23:03:08 + + +waiting on router queue for slot.... +23:03:08 Sending to : +23:03:08 ============================================================================ +23:03:08 ============================================================================ +23:03:08 Slot Id : <416> +23:03:08 Transaction Type : RESPONSE +23:03:08 Received From : +23:03:08 ============================================================================ +23:03:08 FNo. Len. Field Value +23:03:08 ============================================================================ +23:03:08 [ 1] [ 4] [0810] +23:03:08 [ 7] [ 10] [0320040216] +23:03:08 [ 11] [ 6] [158942] +23:03:08 [ 39] [ 2] [00] +23:03:08 [ 70] [ 3] [301] +23:03:08 ============================================================================ +23:03:08 Calculate Source COMM Id = 2 +23:03:08 ============================================================================ +23:03:08 + + +waiting on router queue for slot.... +23:03:16 ============================================================================ +23:03:16 Slot Id : <433> +23:03:16 Transaction Type : REQUEST +23:03:16 Received From : +23:03:16 ============================================================================ +23:03:16 FNo. Len. Field Value +23:03:16 ============================================================================ +23:03:16 [ 1] [ 4] [0800] +23:03:16 [ 2] [ 5] [02531] +23:03:16 [ 3] [ 6] [579238] +23:03:16 [ 7] [ 10] [0320160316] +23:03:16 [ 11] [ 6] [807750] +23:03:16 [ 15] [ 10] [0320160316] +23:03:16 [ 37] [ 11] [57923807750] +23:03:16 [ 70] [ 3] [001] +23:03:16 ============================================================================ +23:03:16 + + +waiting on router queue for slot.... +23:03:16 ============================================================================ +23:03:16 Slot Id : <433> +23:03:16 Transaction Type : RESPONSE +23:03:16 Received From : +23:03:16 ============================================================================ +23:03:16 FNo. Len. Field Value +23:03:16 ============================================================================ +23:03:16 [ 1] [ 4] [0810] +23:03:16 [ 7] [ 10] [0320160316] +23:03:16 [ 11] [ 6] [807750] +23:03:16 [ 15] [ 4] [0320] +23:03:16 [ 37] [ 12] [57923807750] +23:03:16 [ 39] [ 2] [00] +23:03:16 [ 70] [ 3] [001] +23:03:16 ============================================================================ +23:03:16 Sending to : +23:03:16 ============================================================================ +23:03:16 + + +waiting on router queue for slot.... +23:03:18 ============================================================================ +23:03:18 Slot Id : <420> +23:03:18 Transaction Type : REQUEST +23:03:18 Received From : +23:03:18 ============================================================================ +23:03:18 FNo. Len. Field Value +23:03:18 ============================================================================ +23:03:18 [ 1] [ 4] [0800] +23:03:18 [ 7] [ 10] [0320040226] +23:03:18 [ 11] [ 6] [158943] +23:03:18 [ 70] [ 3] [301] +23:03:18 ============================================================================ +23:03:18 + + +waiting on router queue for slot.... +23:03:18 Sending to : +23:03:18 ============================================================================ +23:03:18 ============================================================================ +23:03:18 Slot Id : <420> +23:03:18 Transaction Type : RESPONSE +23:03:18 Received From : +23:03:18 ============================================================================ +23:03:18 FNo. Len. Field Value +23:03:18 ============================================================================ +23:03:18 [ 1] [ 4] [0810] +23:03:18 [ 7] [ 10] [0320040226] +23:03:18 [ 11] [ 6] [158943] +23:03:18 [ 39] [ 2] [00] +23:03:18 [ 70] [ 3] [301] +23:03:18 ============================================================================ +23:03:18 Calculate Source COMM Id = 2 +23:03:18 ============================================================================ +23:03:18 + + +waiting on router queue for slot.... +23:03:35 ============================================================================ +23:03:35 Slot Id : <398> +23:03:35 Transaction Type : REQUEST +23:03:35 Received From : +23:03:35 ============================================================================ +23:03:35 FNo. Len. Field Value +23:03:35 ============================================================================ +23:03:35 [ 1] [ 4] [0800] +23:03:35 [ 7] [ 10] [0320040243] +23:03:35 [ 11] [ 6] [158944] +23:03:35 [ 70] [ 3] [301] +23:03:35 ============================================================================ +23:03:35 + + +waiting on router queue for slot.... +23:03:35 Sending to : +23:03:35 ============================================================================ +23:03:35 ============================================================================ +23:03:35 Slot Id : <398> +23:03:35 Transaction Type : RESPONSE +23:03:35 Received From : +23:03:35 ============================================================================ +23:03:35 FNo. Len. Field Value +23:03:35 ============================================================================ +23:03:35 [ 1] [ 4] [0810] +23:03:35 [ 7] [ 10] [0320040243] +23:03:35 [ 11] [ 6] [158944] +23:03:35 [ 39] [ 2] [00] +23:03:35 [ 70] [ 3] [301] +23:03:35 ============================================================================ +23:03:35 Calculate Source COMM Id = 2 +23:03:35 ============================================================================ +23:03:35 + + +waiting on router queue for slot.... +23:03:40 ============================================================================ +23:03:40 Slot Id : <381> +23:03:40 Transaction Type : REQUEST +23:03:40 Received From : +23:03:40 ============================================================================ +23:03:40 FNo. Len. Field Value +23:03:40 ============================================================================ +23:03:40 [ 1] [ 4] [0800] +23:03:40 [ 7] [ 10] [0321061531] +23:03:40 [ 11] [ 6] [231531] +23:03:40 [ 37] [ 12] [57923231531] +23:03:40 [ 70] [ 3] [301] +23:03:40 ============================================================================ +23:03:40 + + +waiting on router queue for slot.... +23:03:40 Sending to : +23:03:40 ============================================================================ +23:03:40 ============================================================================ +23:03:40 Slot Id : <381> +23:03:40 Transaction Type : RESPONSE +23:03:40 Received From : +23:03:40 ============================================================================ +23:03:40 FNo. Len. Field Value +23:03:40 ============================================================================ +23:03:40 [ 1] [ 4] [0810] +23:03:40 [ 7] [ 10] [0321061531] +23:03:40 [ 11] [ 6] [231531] +23:03:40 [ 37] [ 12] [579232315310] +23:03:40 [ 39] [ 2] [00] +23:03:40 [ 70] [ 3] [810] +23:03:40 ============================================================================ +23:03:40 Calculate Source COMM Id = 6 +23:03:40 ============================================================================ +23:03:40 + + +waiting on router queue for slot.... +23:03:51 ============================================================================ +23:03:51 Slot Id : <425> +23:03:51 Transaction Type : REQUEST +23:03:51 Received From : +23:03:51 ============================================================================ +23:03:51 FNo. Len. Field Value +23:03:51 ============================================================================ +23:03:51 [ 1] [ 4] [0800] +23:03:51 [ 7] [ 10] [0320040258] +23:03:51 [ 11] [ 6] [158945] +23:03:51 [ 70] [ 3] [301] +23:03:51 ============================================================================ +23:03:51 + + +waiting on router queue for slot.... +23:03:51 Sending to : +23:03:51 ============================================================================ +23:03:51 ============================================================================ +23:03:51 Slot Id : <425> +23:03:51 Transaction Type : RESPONSE +23:03:51 Received From : +23:03:51 ============================================================================ +23:03:51 FNo. Len. Field Value +23:03:51 ============================================================================ +23:03:51 [ 1] [ 4] [0810] +23:03:51 [ 7] [ 10] [0320040258] +23:03:51 [ 11] [ 6] [158945] +23:03:51 [ 39] [ 2] [00] +23:03:51 [ 70] [ 3] [301] +23:03:51 ============================================================================ +23:03:51 Calculate Source COMM Id = 2 +23:03:51 ============================================================================ +23:03:51 + + +waiting on router queue for slot.... +23:04:06 ============================================================================ +23:04:06 Slot Id : <415> +23:04:06 Transaction Type : REQUEST +23:04:06 Received From : +23:04:06 ============================================================================ +23:04:06 FNo. Len. Field Value +23:04:06 ============================================================================ +23:04:06 [ 1] [ 4] [0800] +23:04:06 [ 7] [ 10] [0320040314] +23:04:06 [ 11] [ 6] [158946] +23:04:06 [ 70] [ 3] [301] +23:04:06 ============================================================================ +23:04:06 + + +waiting on router queue for slot.... +23:04:06 Sending to : +23:04:06 ============================================================================ +23:04:06 ============================================================================ +23:04:06 Slot Id : <415> +23:04:06 Transaction Type : RESPONSE +23:04:06 Received From : +23:04:06 ============================================================================ +23:04:06 FNo. Len. Field Value +23:04:06 ============================================================================ +23:04:06 [ 1] [ 4] [0810] +23:04:06 [ 7] [ 10] [0320040314] +23:04:06 [ 11] [ 6] [158946] +23:04:06 [ 39] [ 2] [00] +23:04:06 [ 70] [ 3] [301] +23:04:06 ============================================================================ +23:04:06 Calculate Source COMM Id = 2 +23:04:06 ============================================================================ +23:04:06 + + +waiting on router queue for slot.... +23:04:17 ============================================================================ +23:04:17 Slot Id : <409> +23:04:17 Transaction Type : REQUEST +23:04:17 Received From : +23:04:17 ============================================================================ +23:04:17 FNo. Len. Field Value +23:04:17 ============================================================================ +23:04:17 [ 1] [ 4] [0800] +23:04:17 [ 7] [ 10] [0320040325] +23:04:17 [ 11] [ 6] [158947] +23:04:17 [ 70] [ 3] [301] +23:04:17 ============================================================================ +23:04:17 + + +waiting on router queue for slot.... +23:04:17 Sending to : +23:04:17 ============================================================================ +23:04:17 ============================================================================ +23:04:17 Slot Id : <409> +23:04:17 Transaction Type : RESPONSE +23:04:17 Received From : +23:04:17 ============================================================================ +23:04:17 FNo. Len. Field Value +23:04:17 ============================================================================ +23:04:17 [ 1] [ 4] [0810] +23:04:17 [ 7] [ 10] [0320040325] +23:04:17 [ 11] [ 6] [158947] +23:04:17 [ 39] [ 2] [00] +23:04:17 [ 70] [ 3] [301] +23:04:17 ============================================================================ +23:04:17 Calculate Source COMM Id = 2 +23:04:17 ============================================================================ +23:04:17 + + +waiting on router queue for slot.... +23:04:18 ============================================================================ +23:04:18 Slot Id : <364> +23:04:18 Transaction Type : REQUEST +23:04:18 Received From : +23:04:18 ============================================================================ +23:04:18 FNo. Len. Field Value +23:04:18 ============================================================================ +23:04:18 [ 1] [ 4] [0800] +23:04:18 [ 2] [ 5] [02531] +23:04:18 [ 3] [ 6] [579238] +23:04:18 [ 7] [ 10] [0320160418] +23:04:18 [ 11] [ 6] [807751] +23:04:18 [ 15] [ 10] [0320160418] +23:04:18 [ 37] [ 11] [57923807751] +23:04:18 [ 70] [ 3] [001] +23:04:18 ============================================================================ +23:04:18 + + +waiting on router queue for slot.... +23:04:18 ============================================================================ +23:04:18 Slot Id : <364> +23:04:18 Transaction Type : RESPONSE +23:04:18 Received From : +23:04:18 ============================================================================ +23:04:18 FNo. Len. Field Value +23:04:18 ============================================================================ +23:04:18 [ 1] [ 4] [0810] +23:04:18 [ 7] [ 10] [0320160418] +23:04:18 [ 11] [ 6] [807751] +23:04:18 [ 15] [ 4] [0320] +23:04:18 [ 37] [ 12] [57923807751] +23:04:18 [ 39] [ 2] [00] +23:04:18 [ 70] [ 3] [001] +23:04:18 ============================================================================ +23:04:18 Sending to : +23:04:18 ============================================================================ +23:04:18 + + +waiting on router queue for slot.... +23:04:28 ============================================================================ +23:04:28 Slot Id : <430> +23:04:28 Transaction Type : REQUEST +23:04:28 Received From : +23:04:28 ============================================================================ +23:04:28 FNo. Len. Field Value +23:04:28 ============================================================================ +23:04:28 [ 1] [ 4] [0800] +23:04:28 [ 7] [ 10] [0320040336] +23:04:28 [ 11] [ 6] [158948] +23:04:28 [ 70] [ 3] [301] +23:04:28 ============================================================================ +23:04:28 + + +waiting on router queue for slot.... +23:04:28 Sending to : +23:04:28 ============================================================================ +23:04:28 ============================================================================ +23:04:28 Slot Id : <430> +23:04:28 Transaction Type : RESPONSE +23:04:28 Received From : +23:04:28 ============================================================================ +23:04:28 FNo. Len. Field Value +23:04:28 ============================================================================ +23:04:28 [ 1] [ 4] [0810] +23:04:28 [ 7] [ 10] [0320040336] +23:04:28 [ 11] [ 6] [158948] +23:04:28 [ 39] [ 2] [00] +23:04:28 [ 70] [ 3] [301] +23:04:28 ============================================================================ +23:04:28 Calculate Source COMM Id = 2 +23:04:28 ============================================================================ +23:04:28 + + +waiting on router queue for slot.... +23:04:44 ============================================================================ +23:04:44 Slot Id : <388> +23:04:44 Transaction Type : REQUEST +23:04:44 Received From : +23:04:44 ============================================================================ +23:04:44 FNo. Len. Field Value +23:04:44 ============================================================================ +23:04:44 [ 1] [ 4] [0800] +23:04:44 [ 7] [ 10] [0320040351] +23:04:44 [ 11] [ 6] [158949] +23:04:44 [ 70] [ 3] [301] +23:04:44 ============================================================================ +23:04:44 + + +waiting on router queue for slot.... +23:04:44 Sending to : +23:04:44 ============================================================================ +23:04:44 ============================================================================ +23:04:44 Slot Id : <388> +23:04:44 Transaction Type : RESPONSE +23:04:44 Received From : +23:04:44 ============================================================================ +23:04:44 FNo. Len. Field Value +23:04:44 ============================================================================ +23:04:44 [ 1] [ 4] [0810] +23:04:44 [ 7] [ 10] [0320040351] +23:04:44 [ 11] [ 6] [158949] +23:04:44 [ 39] [ 2] [00] +23:04:44 [ 70] [ 3] [301] +23:04:44 ============================================================================ +23:04:44 Calculate Source COMM Id = 2 +23:04:44 ============================================================================ +23:04:44 + + +waiting on router queue for slot.... +23:04:45 ============================================================================ +23:04:45 Slot Id : <367> +23:04:45 Transaction Type : REQUEST +23:04:45 Received From : +23:04:45 ============================================================================ +23:04:45 FNo. Len. Field Value +23:04:45 ============================================================================ +23:04:45 [ 1] [ 4] [0800] +23:04:45 [ 7] [ 10] [0321061636] +23:04:45 [ 11] [ 6] [231636] +23:04:45 [ 37] [ 12] [57923231636] +23:04:45 [ 70] [ 3] [301] +23:04:45 ============================================================================ +23:04:45 + + +waiting on router queue for slot.... +23:04:45 Sending to : +23:04:45 ============================================================================ +23:04:45 ============================================================================ +23:04:45 Slot Id : <367> +23:04:45 Transaction Type : RESPONSE +23:04:45 Received From : +23:04:45 ============================================================================ +23:04:45 FNo. Len. Field Value +23:04:45 ============================================================================ +23:04:45 [ 1] [ 4] [0810] +23:04:45 [ 7] [ 10] [0321061636] +23:04:45 [ 11] [ 6] [231636] +23:04:45 [ 37] [ 12] [579232316360] +23:04:45 [ 39] [ 2] [00] +23:04:45 [ 70] [ 3] [810] +23:04:45 ============================================================================ +23:04:45 Calculate Source COMM Id = 6 +23:04:45 ============================================================================ +23:04:45 + + +waiting on router queue for slot.... +23:04:54 ============================================================================ +23:04:54 Slot Id : <403> +23:04:54 Transaction Type : REQUEST +23:04:54 Received From : +23:04:54 ============================================================================ +23:04:54 FNo. Len. Field Value +23:04:54 ============================================================================ +23:04:54 [ 1] [ 4] [0800] +23:04:54 [ 7] [ 10] [0320040402] +23:04:54 [ 11] [ 6] [158950] +23:04:54 [ 70] [ 3] [301] +23:04:54 ============================================================================ +23:04:54 + + +waiting on router queue for slot.... +23:04:54 Sending to : +23:04:54 ============================================================================ +23:04:54 ============================================================================ +23:04:54 Slot Id : <403> +23:04:54 Transaction Type : RESPONSE +23:04:54 Received From : +23:04:54 ============================================================================ +23:04:54 FNo. Len. Field Value +23:04:54 ============================================================================ +23:04:54 [ 1] [ 4] [0810] +23:04:54 [ 7] [ 10] [0320040402] +23:04:54 [ 11] [ 6] [158950] +23:04:54 [ 39] [ 2] [00] +23:04:54 [ 70] [ 3] [301] +23:04:54 ============================================================================ +23:04:54 Calculate Source COMM Id = 2 +23:04:54 ============================================================================ +23:04:54 + + +waiting on router queue for slot.... +23:04:56 ============================================================================ +23:04:56 Slot Id : <441> +23:04:56 Transaction Type : REQUEST +23:04:56 Received From : +23:04:56 ============================================================================ +23:04:56 FNo. Len. Field Value +23:04:56 ============================================================================ +23:04:56 [ 1] [ 4] [0800] +23:04:56 [ 7] [ 10] [0320161242] +23:04:56 [ 11] [ 6] [069159] +23:04:56 [ 37] [ 12] [57923069159] +23:04:56 [ 70] [ 3] [301] +23:04:56 ============================================================================ +23:04:56 + + +waiting on router queue for slot.... +23:04:56 Sending to : +23:04:56 ============================================================================ +23:04:56 ============================================================================ +23:04:56 Slot Id : <441> +23:04:56 Transaction Type : RESPONSE +23:04:56 Received From : +23:04:56 ============================================================================ +23:04:56 FNo. Len. Field Value +23:04:56 ============================================================================ +23:04:56 [ 1] [ 4] [0810] +23:04:56 [ 7] [ 10] [0320161242] +23:04:56 [ 11] [ 6] [069159] +23:04:56 [ 37] [ 12] [579230691590] +23:04:56 [ 39] [ 2] [00] +23:04:56 [ 70] [ 3] [810] +23:04:56 ============================================================================ +23:04:56 Calculate Source COMM Id = 1 +23:04:56 ============================================================================ +23:04:56 + + +waiting on router queue for slot.... +23:05:05 ============================================================================ +23:05:05 Slot Id : <437> +23:05:05 Transaction Type : REQUEST +23:05:05 Received From : +23:05:05 ============================================================================ +23:05:05 FNo. Len. Field Value +23:05:05 ============================================================================ +23:05:05 [ 1] [ 4] [0800] +23:05:05 [ 7] [ 10] [0320040413] +23:05:05 [ 11] [ 6] [158951] +23:05:05 [ 70] [ 3] [301] +23:05:05 ============================================================================ +23:05:05 + + +waiting on router queue for slot.... +23:05:05 Sending to : +23:05:05 ============================================================================ +23:05:05 ============================================================================ +23:05:05 Slot Id : <437> +23:05:05 Transaction Type : RESPONSE +23:05:05 Received From : +23:05:05 ============================================================================ +23:05:05 FNo. Len. Field Value +23:05:05 ============================================================================ +23:05:05 [ 1] [ 4] [0810] +23:05:05 [ 7] [ 10] [0320040413] +23:05:05 [ 11] [ 6] [158951] +23:05:05 [ 39] [ 2] [00] +23:05:05 [ 70] [ 3] [301] +23:05:05 ============================================================================ +23:05:05 Calculate Source COMM Id = 2 +23:05:05 ============================================================================ +23:05:05 + + +waiting on router queue for slot.... +23:05:15 ============================================================================ +23:05:15 Slot Id : <402> +23:05:15 Transaction Type : REQUEST +23:05:15 Received From : +23:05:15 ============================================================================ +23:05:15 FNo. Len. Field Value +23:05:15 ============================================================================ +23:05:15 [ 1] [ 4] [0800] +23:05:15 [ 7] [ 10] [0320040423] +23:05:15 [ 11] [ 6] [158952] +23:05:15 [ 70] [ 3] [301] +23:05:15 ============================================================================ +23:05:15 + + +waiting on router queue for slot.... +23:05:15 Sending to : +23:05:15 ============================================================================ +23:05:15 ============================================================================ +23:05:15 Slot Id : <402> +23:05:15 Transaction Type : RESPONSE +23:05:15 Received From : +23:05:15 ============================================================================ +23:05:15 FNo. Len. Field Value +23:05:15 ============================================================================ +23:05:15 [ 1] [ 4] [0810] +23:05:15 [ 7] [ 10] [0320040423] +23:05:15 [ 11] [ 6] [158952] +23:05:15 [ 39] [ 2] [00] +23:05:15 [ 70] [ 3] [301] +23:05:15 ============================================================================ +23:05:15 Calculate Source COMM Id = 2 +23:05:15 ============================================================================ +23:05:15 + + +waiting on router queue for slot.... +23:05:16 ============================================================================ +23:05:16 Slot Id : <385> +23:05:16 Transaction Type : REQUEST +23:05:16 Received From : +23:05:16 ============================================================================ +23:05:16 FNo. Len. Field Value +23:05:16 ============================================================================ +23:05:16 [ 1] [ 4] [0800] +23:05:16 [ 7] [ 10] [0320230503] +23:05:16 [ 11] [ 6] [054829] +23:05:16 [ 37] [ 12] [507923054829] +23:05:16 [ 70] [ 3] [ ] +23:05:16 ============================================================================ +23:05:16 + + +waiting on router queue for slot.... +23:05:16 Sending to : +23:05:16 ============================================================================ +23:05:16 ============================================================================ +23:05:16 Slot Id : <385> +23:05:16 Transaction Type : RESPONSE +23:05:16 Received From : +23:05:16 ============================================================================ +23:05:16 FNo. Len. Field Value +23:05:16 ============================================================================ +23:05:16 [ 1] [ 4] [0810] +23:05:16 [ 7] [ 10] [0320230503] +23:05:16 [ 11] [ 6] [054829] +23:05:16 [ 37] [ 12] [507923054829] +23:05:16 [ 39] [ 2] [91] +23:05:16 [ 70] [ 3] [ ] +23:05:16 ============================================================================ +23:05:16 Calculate Source COMM Id = 3 +23:05:16 ============================================================================ +23:05:16 + + +waiting on router queue for slot.... +23:05:20 ============================================================================ +23:05:20 Slot Id : <362> +23:05:20 Transaction Type : REQUEST +23:05:20 Received From : +23:05:20 ============================================================================ +23:05:20 FNo. Len. Field Value +23:05:20 ============================================================================ +23:05:20 [ 1] [ 4] [0800] +23:05:20 [ 2] [ 5] [02531] +23:05:20 [ 3] [ 6] [579238] +23:05:20 [ 7] [ 10] [0320160520] +23:05:20 [ 11] [ 6] [807752] +23:05:20 [ 15] [ 10] [0320160520] +23:05:20 [ 37] [ 11] [57923807752] +23:05:20 [ 70] [ 3] [001] +23:05:20 ============================================================================ +23:05:20 + + +waiting on router queue for slot.... +23:05:20 ============================================================================ +23:05:20 Slot Id : <362> +23:05:20 Transaction Type : RESPONSE +23:05:20 Received From : +23:05:20 ============================================================================ +23:05:20 FNo. Len. Field Value +23:05:20 ============================================================================ +23:05:20 [ 1] [ 4] [0810] +23:05:20 [ 7] [ 10] [0320160520] +23:05:20 [ 11] [ 6] [807752] +23:05:20 [ 15] [ 4] [0320] +23:05:20 [ 37] [ 12] [57923807752] +23:05:20 [ 39] [ 2] [00] +23:05:20 [ 70] [ 3] [001] +23:05:20 ============================================================================ +23:05:20 Sending to : +23:05:20 ============================================================================ +23:05:20 + + +waiting on router queue for slot.... +23:05:26 ============================================================================ +23:05:26 Slot Id : <375> +23:05:26 Transaction Type : REQUEST +23:05:26 Received From : +23:05:26 ============================================================================ +23:05:26 FNo. Len. Field Value +23:05:26 ============================================================================ +23:05:26 [ 1] [ 4] [0800] +23:05:26 [ 7] [ 10] [0320040434] +23:05:26 [ 11] [ 6] [158953] +23:05:26 [ 70] [ 3] [301] +23:05:26 ============================================================================ +23:05:26 + + +waiting on router queue for slot.... +23:05:26 Sending to : +23:05:26 ============================================================================ +23:05:26 ============================================================================ +23:05:26 Slot Id : <375> +23:05:26 Transaction Type : RESPONSE +23:05:26 Received From : +23:05:26 ============================================================================ +23:05:26 FNo. Len. Field Value +23:05:26 ============================================================================ +23:05:26 [ 1] [ 4] [0810] +23:05:26 [ 7] [ 10] [0320040434] +23:05:26 [ 11] [ 6] [158953] +23:05:26 [ 39] [ 2] [00] +23:05:26 [ 70] [ 3] [301] +23:05:26 ============================================================================ +23:05:26 Calculate Source COMM Id = 2 +23:05:26 ============================================================================ +23:05:26 + + +waiting on router queue for slot.... +23:05:37 ============================================================================ +23:05:37 Slot Id : <450> +23:05:37 Transaction Type : REQUEST +23:05:37 Received From : +23:05:37 ============================================================================ +23:05:37 FNo. Len. Field Value +23:05:37 ============================================================================ +23:05:37 [ 1] [ 4] [0800] +23:05:37 [ 7] [ 10] [0320040445] +23:05:37 [ 11] [ 6] [158954] +23:05:37 [ 70] [ 3] [301] +23:05:37 ============================================================================ +23:05:37 + + +waiting on router queue for slot.... +23:05:37 Sending to : +23:05:37 ============================================================================ +23:05:37 ============================================================================ +23:05:37 Slot Id : <450> +23:05:37 Transaction Type : RESPONSE +23:05:37 Received From : +23:05:37 ============================================================================ +23:05:37 FNo. Len. Field Value +23:05:37 ============================================================================ +23:05:37 [ 1] [ 4] [0810] +23:05:37 [ 7] [ 10] [0320040445] +23:05:37 [ 11] [ 6] [158954] +23:05:37 [ 39] [ 2] [00] +23:05:37 [ 70] [ 3] [301] +23:05:37 ============================================================================ +23:05:37 Calculate Source COMM Id = 2 +23:05:37 ============================================================================ +23:05:37 + + +waiting on router queue for slot.... +23:05:48 ============================================================================ +23:05:48 Slot Id : <408> +23:05:48 Transaction Type : REQUEST +23:05:48 Received From : +23:05:48 ============================================================================ +23:05:48 FNo. Len. Field Value +23:05:48 ============================================================================ +23:05:48 [ 1] [ 4] [0800] +23:05:48 [ 7] [ 10] [0320040456] +23:05:48 [ 11] [ 6] [158955] +23:05:48 [ 70] [ 3] [301] +23:05:48 ============================================================================ +23:05:48 + + +waiting on router queue for slot.... +23:05:48 Sending to : +23:05:48 ============================================================================ +23:05:48 ============================================================================ +23:05:48 Slot Id : <408> +23:05:48 Transaction Type : RESPONSE +23:05:48 Received From : +23:05:48 ============================================================================ +23:05:48 FNo. Len. Field Value +23:05:48 ============================================================================ +23:05:48 [ 1] [ 4] [0810] +23:05:48 [ 7] [ 10] [0320040456] +23:05:48 [ 11] [ 6] [158955] +23:05:48 [ 39] [ 2] [00] +23:05:48 [ 70] [ 3] [301] +23:05:48 ============================================================================ +23:05:48 Calculate Source COMM Id = 2 +23:05:48 ============================================================================ +23:05:48 + + +waiting on router queue for slot.... +23:05:52 ============================================================================ +23:05:52 Slot Id : <417> +23:05:52 Transaction Type : REQUEST +23:05:52 Received From : +23:05:52 ============================================================================ +23:05:52 FNo. Len. Field Value +23:05:52 ============================================================================ +23:05:52 [ 1] [ 4] [0800] +23:05:52 [ 7] [ 10] [0321061741] +23:05:52 [ 11] [ 6] [231741] +23:05:52 [ 37] [ 12] [57923231741] +23:05:52 [ 70] [ 3] [301] +23:05:52 ============================================================================ +23:05:52 + + +waiting on router queue for slot.... +23:05:52 Sending to : +23:05:52 ============================================================================ +23:05:52 ============================================================================ +23:05:52 Slot Id : <417> +23:05:52 Transaction Type : RESPONSE +23:05:52 Received From : +23:05:52 ============================================================================ +23:05:52 FNo. Len. Field Value +23:05:52 ============================================================================ +23:05:52 [ 1] [ 4] [0810] +23:05:52 [ 7] [ 10] [0321061741] +23:05:52 [ 11] [ 6] [231741] +23:05:52 [ 37] [ 12] [579232317410] +23:05:52 [ 39] [ 2] [00] +23:05:52 [ 70] [ 3] [810] +23:05:52 ============================================================================ +23:05:52 Calculate Source COMM Id = 6 +23:05:52 ============================================================================ +23:05:52 + + +waiting on router queue for slot.... +23:06:01 ============================================================================ +23:06:01 Slot Id : <391> +23:06:01 Transaction Type : REQUEST +23:06:01 Received From : +23:06:01 ============================================================================ +23:06:01 FNo. Len. Field Value +23:06:01 ============================================================================ +23:06:01 [ 1] [ 4] [0800] +23:06:01 [ 7] [ 10] [0320040507] +23:06:01 [ 11] [ 6] [158956] +23:06:01 [ 70] [ 3] [301] +23:06:01 ============================================================================ +23:06:01 + + +waiting on router queue for slot.... +23:06:01 Sending to : +23:06:01 ============================================================================ +23:06:01 ============================================================================ +23:06:01 Slot Id : <391> +23:06:01 Transaction Type : RESPONSE +23:06:01 Received From : +23:06:01 ============================================================================ +23:06:01 FNo. Len. Field Value +23:06:01 ============================================================================ +23:06:01 [ 1] [ 4] [0810] +23:06:01 [ 7] [ 10] [0320040507] +23:06:01 [ 11] [ 6] [158956] +23:06:01 [ 39] [ 2] [00] +23:06:01 [ 70] [ 3] [301] +23:06:01 ============================================================================ +23:06:01 Calculate Source COMM Id = 2 +23:06:01 ============================================================================ +23:06:01 + + +waiting on router queue for slot.... +23:06:15 ============================================================================ +23:06:15 Slot Id : <392> +23:06:15 Transaction Type : REQUEST +23:06:15 Received From : +23:06:15 ============================================================================ +23:06:15 FNo. Len. Field Value +23:06:15 ============================================================================ +23:06:15 [ 1] [ 4] [0800] +23:06:15 [ 7] [ 10] [0320040523] +23:06:15 [ 11] [ 6] [158957] +23:06:15 [ 70] [ 3] [301] +23:06:15 ============================================================================ +23:06:15 + + +waiting on router queue for slot.... +23:06:15 Sending to : +23:06:15 ============================================================================ +23:06:15 ============================================================================ +23:06:15 Slot Id : <392> +23:06:15 Transaction Type : RESPONSE +23:06:15 Received From : +23:06:15 ============================================================================ +23:06:15 FNo. Len. Field Value +23:06:15 ============================================================================ +23:06:15 [ 1] [ 4] [0810] +23:06:15 [ 7] [ 10] [0320040523] +23:06:15 [ 11] [ 6] [158957] +23:06:15 [ 39] [ 2] [00] +23:06:15 [ 70] [ 3] [301] +23:06:15 ============================================================================ +23:06:15 Calculate Source COMM Id = 2 +23:06:15 ============================================================================ +23:06:15 + + +waiting on router queue for slot.... +23:06:22 ============================================================================ +23:06:22 Slot Id : <412> +23:06:22 Transaction Type : REQUEST +23:06:22 Received From : +23:06:22 ============================================================================ +23:06:22 FNo. Len. Field Value +23:06:22 ============================================================================ +23:06:22 [ 1] [ 4] [0800] +23:06:22 [ 7] [ 10] [0320160412] +23:06:22 [ 11] [ 6] [009027] +23:06:22 [ 37] [ 12] [57923009027] +23:06:22 [ 70] [ 3] [301] +23:06:22 ============================================================================ +23:06:22 + + +waiting on router queue for slot.... +23:06:22 Sending to : +23:06:22 ============================================================================ +23:06:22 ============================================================================ +23:06:22 Slot Id : <412> +23:06:22 Transaction Type : RESPONSE +23:06:22 Received From : +23:06:22 ============================================================================ +23:06:22 FNo. Len. Field Value +23:06:22 ============================================================================ +23:06:22 [ 1] [ 4] [0810] +23:06:22 [ 7] [ 10] [0320160412] +23:06:22 [ 11] [ 6] [009027] +23:06:22 [ 37] [ 12] [579230090270] +23:06:22 [ 39] [ 2] [00] +23:06:22 [ 70] [ 3] [810] +23:06:22 ============================================================================ +23:06:22 Calculate Source COMM Id = 4 +23:06:22 ============================================================================ +23:06:22 + + +waiting on router queue for slot.... +23:06:22 ============================================================================ +23:06:22 Slot Id : <447> +23:06:22 Transaction Type : REQUEST +23:06:22 Received From : +23:06:22 ============================================================================ +23:06:22 FNo. Len. Field Value +23:06:22 ============================================================================ +23:06:22 [ 1] [ 4] [0800] +23:06:22 [ 2] [ 5] [02531] +23:06:22 [ 3] [ 6] [579238] +23:06:22 [ 7] [ 10] [0320160622] +23:06:22 [ 11] [ 6] [807753] +23:06:22 [ 15] [ 10] [0320160622] +23:06:22 [ 37] [ 11] [57923807753] +23:06:22 [ 70] [ 3] [001] +23:06:22 ============================================================================ +23:06:22 + + +waiting on router queue for slot.... +23:06:22 ============================================================================ +23:06:22 Slot Id : <447> +23:06:22 Transaction Type : RESPONSE +23:06:22 Received From : +23:06:22 ============================================================================ +23:06:22 FNo. Len. Field Value +23:06:22 ============================================================================ +23:06:22 [ 1] [ 4] [0810] +23:06:22 [ 7] [ 10] [0320160622] +23:06:22 [ 11] [ 6] [807753] +23:06:22 [ 15] [ 4] [0320] +23:06:22 [ 37] [ 12] [57923807753] +23:06:22 [ 39] [ 2] [00] +23:06:22 [ 70] [ 3] [001] +23:06:22 ============================================================================ +23:06:22 Sending to : +23:06:22 ============================================================================ +23:06:22 + + +waiting on router queue for slot.... +23:06:25 ============================================================================ +23:06:25 Slot Id : <405> +23:06:25 Transaction Type : REQUEST +23:06:25 Received From : +23:06:25 ============================================================================ +23:06:25 FNo. Len. Field Value +23:06:25 ============================================================================ +23:06:25 [ 1] [ 4] [0800] +23:06:25 [ 7] [ 10] [0320040533] +23:06:25 [ 11] [ 6] [158958] +23:06:25 [ 70] [ 3] [301] +23:06:25 ============================================================================ +23:06:25 + + +waiting on router queue for slot.... +23:06:25 Sending to : +23:06:25 ============================================================================ +23:06:25 ============================================================================ +23:06:25 Slot Id : <405> +23:06:25 Transaction Type : RESPONSE +23:06:25 Received From : +23:06:25 ============================================================================ +23:06:25 FNo. Len. Field Value +23:06:25 ============================================================================ +23:06:25 [ 1] [ 4] [0810] +23:06:25 [ 7] [ 10] [0320040533] +23:06:25 [ 11] [ 6] [158958] +23:06:25 [ 39] [ 2] [00] +23:06:25 [ 70] [ 3] [301] +23:06:25 ============================================================================ +23:06:25 Calculate Source COMM Id = 2 +23:06:25 ============================================================================ +23:06:25 + + +waiting on router queue for slot.... +23:06:36 ============================================================================ +23:06:36 Slot Id : <429> +23:06:36 Transaction Type : REQUEST +23:06:36 Received From : +23:06:36 ============================================================================ +23:06:36 FNo. Len. Field Value +23:06:36 ============================================================================ +23:06:36 [ 1] [ 4] [0800] +23:06:36 [ 7] [ 10] [0320040545] +23:06:36 [ 11] [ 6] [158959] +23:06:36 [ 70] [ 3] [301] +23:06:36 ============================================================================ +23:06:36 + + +waiting on router queue for slot.... +23:06:36 Sending to : +23:06:36 ============================================================================ +23:06:36 ============================================================================ +23:06:36 Slot Id : <429> +23:06:36 Transaction Type : RESPONSE +23:06:36 Received From : +23:06:36 ============================================================================ +23:06:36 FNo. Len. Field Value +23:06:36 ============================================================================ +23:06:36 [ 1] [ 4] [0810] +23:06:36 [ 7] [ 10] [0320040545] +23:06:36 [ 11] [ 6] [158959] +23:06:36 [ 39] [ 2] [00] +23:06:36 [ 70] [ 3] [301] +23:06:36 ============================================================================ +23:06:36 Calculate Source COMM Id = 2 +23:06:36 ============================================================================ +23:06:36 + + +waiting on router queue for slot.... +23:06:47 ============================================================================ +23:06:47 Slot Id : <443> +23:06:47 Transaction Type : REQUEST +23:06:47 Received From : +23:06:47 ============================================================================ +23:06:47 FNo. Len. Field Value +23:06:47 ============================================================================ +23:06:47 [ 1] [ 4] [0800] +23:06:47 [ 7] [ 10] [0320040555] +23:06:47 [ 11] [ 6] [158960] +23:06:47 [ 70] [ 3] [301] +23:06:47 ============================================================================ +23:06:47 + + +waiting on router queue for slot.... +23:06:47 Sending to : +23:06:47 ============================================================================ +23:06:47 ============================================================================ +23:06:47 Slot Id : <443> +23:06:47 Transaction Type : RESPONSE +23:06:47 Received From : +23:06:47 ============================================================================ +23:06:47 FNo. Len. Field Value +23:06:47 ============================================================================ +23:06:47 [ 1] [ 4] [0810] +23:06:47 [ 7] [ 10] [0320040555] +23:06:47 [ 11] [ 6] [158960] +23:06:47 [ 39] [ 2] [00] +23:06:47 [ 70] [ 3] [301] +23:06:47 ============================================================================ +23:06:47 Calculate Source COMM Id = 2 +23:06:47 ============================================================================ +23:06:47 + + +waiting on router queue for slot.... +23:06:57 ============================================================================ +23:06:57 Slot Id : <386> +23:06:57 Transaction Type : REQUEST +23:06:57 Received From : +23:06:57 ============================================================================ +23:06:57 FNo. Len. Field Value +23:06:57 ============================================================================ +23:06:57 [ 1] [ 4] [0800] +23:06:57 [ 7] [ 10] [0321061846] +23:06:57 [ 11] [ 6] [231846] +23:06:57 [ 37] [ 12] [57923231846] +23:06:57 [ 70] [ 3] [301] +23:06:57 ============================================================================ +23:06:57 + + +waiting on router queue for slot.... +23:06:57 Sending to : +23:06:57 ============================================================================ +23:06:57 ============================================================================ +23:06:57 Slot Id : <386> +23:06:57 Transaction Type : RESPONSE +23:06:57 Received From : +23:06:57 ============================================================================ +23:06:57 FNo. Len. Field Value +23:06:57 ============================================================================ +23:06:57 [ 1] [ 4] [0810] +23:06:57 [ 7] [ 10] [0321061846] +23:06:57 [ 11] [ 6] [231846] +23:06:57 [ 37] [ 12] [579232318460] +23:06:57 [ 39] [ 2] [00] +23:06:57 [ 70] [ 3] [810] +23:06:57 ============================================================================ +23:06:57 Calculate Source COMM Id = 6 +23:06:57 ============================================================================ +23:06:57 + + +waiting on router queue for slot.... +23:06:57 ============================================================================ +23:06:57 Slot Id : <377> +23:06:57 Transaction Type : REQUEST +23:06:57 Received From : +23:06:57 ============================================================================ +23:06:57 FNo. Len. Field Value +23:06:57 ============================================================================ +23:06:57 [ 1] [ 4] [0800] +23:06:57 [ 7] [ 10] [0320040605] +23:06:57 [ 11] [ 6] [158961] +23:06:57 [ 70] [ 3] [301] +23:06:57 ============================================================================ +23:06:57 + + +waiting on router queue for slot.... +23:06:57 Sending to : +23:06:57 ============================================================================ +23:06:57 ============================================================================ +23:06:57 Slot Id : <377> +23:06:57 Transaction Type : RESPONSE +23:06:57 Received From : +23:06:57 ============================================================================ +23:06:57 FNo. Len. Field Value +23:06:57 ============================================================================ +23:06:57 [ 1] [ 4] [0810] +23:06:57 [ 7] [ 10] [0320040605] +23:06:57 [ 11] [ 6] [158961] +23:06:57 [ 39] [ 2] [00] +23:06:57 [ 70] [ 3] [301] +23:06:57 ============================================================================ +23:06:57 Calculate Source COMM Id = 2 +23:06:57 ============================================================================ +23:06:57 + + +waiting on router queue for slot.... +23:07:08 ============================================================================ +23:07:08 Slot Id : <446> +23:07:08 Transaction Type : REQUEST +23:07:08 Received From : +23:07:08 ============================================================================ +23:07:08 FNo. Len. Field Value +23:07:08 ============================================================================ +23:07:08 [ 1] [ 4] [0800] +23:07:08 [ 7] [ 10] [0320040616] +23:07:08 [ 11] [ 6] [158962] +23:07:08 [ 70] [ 3] [301] +23:07:08 ============================================================================ +23:07:08 + + +waiting on router queue for slot.... +23:07:08 Sending to : +23:07:08 ============================================================================ +23:07:08 ============================================================================ +23:07:08 Slot Id : <446> +23:07:08 Transaction Type : RESPONSE +23:07:08 Received From : +23:07:08 ============================================================================ +23:07:08 FNo. Len. Field Value +23:07:08 ============================================================================ +23:07:08 [ 1] [ 4] [0810] +23:07:08 [ 7] [ 10] [0320040616] +23:07:08 [ 11] [ 6] [158962] +23:07:08 [ 39] [ 2] [00] +23:07:08 [ 70] [ 3] [301] +23:07:08 ============================================================================ +23:07:08 Calculate Source COMM Id = 2 +23:07:08 ============================================================================ +23:07:08 + + +waiting on router queue for slot.... +23:07:24 ============================================================================ +23:07:24 Slot Id : <404> +23:07:24 Transaction Type : REQUEST +23:07:24 Received From : +23:07:24 ============================================================================ +23:07:24 FNo. Len. Field Value +23:07:24 ============================================================================ +23:07:24 [ 1] [ 4] [0800] +23:07:24 [ 2] [ 5] [02531] +23:07:24 [ 3] [ 6] [579238] +23:07:24 [ 7] [ 10] [0320160724] +23:07:24 [ 11] [ 6] [807754] +23:07:24 [ 15] [ 10] [0320160724] +23:07:24 [ 37] [ 11] [57923807754] +23:07:24 [ 70] [ 3] [001] +23:07:24 ============================================================================ +23:07:24 + + +waiting on router queue for slot.... +23:07:24 ============================================================================ +23:07:24 Slot Id : <404> +23:07:24 Transaction Type : RESPONSE +23:07:24 Received From : +23:07:24 ============================================================================ +23:07:24 FNo. Len. Field Value +23:07:24 ============================================================================ +23:07:24 [ 1] [ 4] [0810] +23:07:24 [ 7] [ 10] [0320160724] +23:07:24 [ 11] [ 6] [807754] +23:07:24 [ 15] [ 4] [0320] +23:07:24 [ 37] [ 12] [57923807754] +23:07:24 [ 39] [ 2] [00] +23:07:24 [ 70] [ 3] [001] +23:07:24 ============================================================================ +23:07:24 Sending to : +23:07:24 ============================================================================ +23:07:24 + + +waiting on router queue for slot.... +23:07:24 ============================================================================ +23:07:24 Slot Id : <456> +23:07:24 Transaction Type : REQUEST +23:07:24 Received From : +23:07:24 ============================================================================ +23:07:24 FNo. Len. Field Value +23:07:24 ============================================================================ +23:07:24 [ 1] [ 4] [0800] +23:07:24 [ 7] [ 10] [0320040632] +23:07:24 [ 11] [ 6] [158963] +23:07:24 [ 70] [ 3] [301] +23:07:24 ============================================================================ +23:07:24 + + +waiting on router queue for slot.... +23:07:24 Sending to : +23:07:24 ============================================================================ +23:07:24 ============================================================================ +23:07:24 Slot Id : <456> +23:07:24 Transaction Type : RESPONSE +23:07:24 Received From : +23:07:24 ============================================================================ +23:07:24 FNo. Len. Field Value +23:07:24 ============================================================================ +23:07:24 [ 1] [ 4] [0810] +23:07:24 [ 7] [ 10] [0320040632] +23:07:24 [ 11] [ 6] [158963] +23:07:24 [ 39] [ 2] [00] +23:07:24 [ 70] [ 3] [301] +23:07:24 ============================================================================ +23:07:24 Calculate Source COMM Id = 2 +23:07:24 ============================================================================ +23:07:24 + + +waiting on router queue for slot.... +23:07:35 ============================================================================ +23:07:35 Slot Id : <424> +23:07:35 Transaction Type : REQUEST +23:07:35 Received From : +23:07:35 ============================================================================ +23:07:35 FNo. Len. Field Value +23:07:35 ============================================================================ +23:07:35 [ 1] [ 4] [0800] +23:07:35 [ 7] [ 10] [0320040643] +23:07:35 [ 11] [ 6] [158964] +23:07:35 [ 70] [ 3] [301] +23:07:35 ============================================================================ +23:07:35 + + +waiting on router queue for slot.... +23:07:35 Sending to : +23:07:35 ============================================================================ +23:07:35 ============================================================================ +23:07:35 Slot Id : <424> +23:07:35 Transaction Type : RESPONSE +23:07:35 Received From : +23:07:35 ============================================================================ +23:07:35 FNo. Len. Field Value +23:07:35 ============================================================================ +23:07:35 [ 1] [ 4] [0810] +23:07:35 [ 7] [ 10] [0320040643] +23:07:35 [ 11] [ 6] [158964] +23:07:35 [ 39] [ 2] [00] +23:07:35 [ 70] [ 3] [301] +23:07:35 ============================================================================ +23:07:35 Calculate Source COMM Id = 2 +23:07:35 ============================================================================ +23:07:35 + + +waiting on router queue for slot.... +23:07:45 ============================================================================ +23:07:45 Slot Id : <434> +23:07:45 Transaction Type : REQUEST +23:07:45 Received From : +23:07:45 ============================================================================ +23:07:45 FNo. Len. Field Value +23:07:45 ============================================================================ +23:07:45 [ 1] [ 4] [0800] +23:07:45 [ 7] [ 10] [0320040653] +23:07:45 [ 11] [ 6] [158965] +23:07:45 [ 70] [ 3] [301] +23:07:45 ============================================================================ +23:07:45 + + +waiting on router queue for slot.... +23:07:45 Sending to : +23:07:45 ============================================================================ +23:07:45 ============================================================================ +23:07:45 Slot Id : <434> +23:07:45 Transaction Type : RESPONSE +23:07:45 Received From : +23:07:45 ============================================================================ +23:07:45 FNo. Len. Field Value +23:07:45 ============================================================================ +23:07:45 [ 1] [ 4] [0810] +23:07:45 [ 7] [ 10] [0320040653] +23:07:45 [ 11] [ 6] [158965] +23:07:45 [ 39] [ 2] [00] +23:07:45 [ 70] [ 3] [301] +23:07:45 ============================================================================ +23:07:45 Calculate Source COMM Id = 2 +23:07:45 ============================================================================ +23:07:45 + + +waiting on router queue for slot.... +23:07:55 ============================================================================ +23:07:55 Slot Id : <445> +23:07:55 Transaction Type : REQUEST +23:07:55 Received From : +23:07:55 ============================================================================ +23:07:55 FNo. Len. Field Value +23:07:55 ============================================================================ +23:07:55 [ 1] [ 4] [0800] +23:07:55 [ 7] [ 10] [0320040703] +23:07:55 [ 11] [ 6] [158966] +23:07:55 [ 70] [ 3] [301] +23:07:55 ============================================================================ +23:07:55 + + +waiting on router queue for slot.... +23:07:55 Sending to : +23:07:55 ============================================================================ +23:07:55 ============================================================================ +23:07:55 Slot Id : <445> +23:07:55 Transaction Type : RESPONSE +23:07:55 Received From : +23:07:55 ============================================================================ +23:07:55 FNo. Len. Field Value +23:07:55 ============================================================================ +23:07:55 [ 1] [ 4] [0810] +23:07:55 [ 7] [ 10] [0320040703] +23:07:55 [ 11] [ 6] [158966] +23:07:55 [ 39] [ 2] [00] +23:07:55 [ 70] [ 3] [301] +23:07:55 ============================================================================ +23:07:55 Calculate Source COMM Id = 2 +23:07:55 ============================================================================ +23:07:55 + + +waiting on router queue for slot.... +23:08:02 ============================================================================ +23:08:02 Slot Id : <438> +23:08:02 Transaction Type : REQUEST +23:08:02 Received From : +23:08:02 ============================================================================ +23:08:02 FNo. Len. Field Value +23:08:02 ============================================================================ +23:08:02 [ 1] [ 4] [0800] +23:08:02 [ 7] [ 10] [0321061951] +23:08:02 [ 11] [ 6] [231951] +23:08:02 [ 37] [ 12] [57923231951] +23:08:02 [ 70] [ 3] [301] +23:08:02 ============================================================================ +23:08:02 + + +waiting on router queue for slot.... +23:08:02 Sending to : +23:08:02 ============================================================================ +23:08:02 ============================================================================ +23:08:02 Slot Id : <438> +23:08:02 Transaction Type : RESPONSE +23:08:02 Received From : +23:08:02 ============================================================================ +23:08:02 FNo. Len. Field Value +23:08:02 ============================================================================ +23:08:02 [ 1] [ 4] [0810] +23:08:02 [ 7] [ 10] [0321061951] +23:08:02 [ 11] [ 6] [231951] +23:08:02 [ 37] [ 12] [579232319510] +23:08:02 [ 39] [ 2] [00] +23:08:02 [ 70] [ 3] [810] +23:08:02 ============================================================================ +23:08:02 Calculate Source COMM Id = 6 +23:08:02 ============================================================================ +23:08:02 + + +waiting on router queue for slot.... +23:08:06 ============================================================================ +23:08:06 Slot Id : <442> +23:08:06 Transaction Type : REQUEST +23:08:06 Received From : +23:08:06 ============================================================================ +23:08:06 FNo. Len. Field Value +23:08:06 ============================================================================ +23:08:06 [ 1] [ 4] [0800] +23:08:06 [ 7] [ 10] [0320040714] +23:08:06 [ 11] [ 6] [158967] +23:08:06 [ 70] [ 3] [301] +23:08:06 ============================================================================ +23:08:06 + + +waiting on router queue for slot.... +23:08:06 Sending to : +23:08:06 ============================================================================ +23:08:06 ============================================================================ +23:08:06 Slot Id : <442> +23:08:06 Transaction Type : RESPONSE +23:08:06 Received From : +23:08:06 ============================================================================ +23:08:06 FNo. Len. Field Value +23:08:06 ============================================================================ +23:08:06 [ 1] [ 4] [0810] +23:08:06 [ 7] [ 10] [0320040714] +23:08:06 [ 11] [ 6] [158967] +23:08:06 [ 39] [ 2] [00] +23:08:06 [ 70] [ 3] [301] +23:08:06 ============================================================================ +23:08:06 Calculate Source COMM Id = 2 +23:08:06 ============================================================================ +23:08:06 + + +waiting on router queue for slot.... +23:08:22 ============================================================================ +23:08:22 Slot Id : <435> +23:08:22 Transaction Type : REQUEST +23:08:22 Received From : +23:08:22 ============================================================================ +23:08:22 FNo. Len. Field Value +23:08:22 ============================================================================ +23:08:22 [ 1] [ 4] [0800] +23:08:22 [ 7] [ 10] [0320040729] +23:08:22 [ 11] [ 6] [158968] +23:08:22 [ 70] [ 3] [301] +23:08:22 ============================================================================ +23:08:22 + + +waiting on router queue for slot.... +23:08:22 Sending to : +23:08:22 ============================================================================ +23:08:22 ============================================================================ +23:08:22 Slot Id : <435> +23:08:22 Transaction Type : RESPONSE +23:08:22 Received From : +23:08:22 ============================================================================ +23:08:22 FNo. Len. Field Value +23:08:22 ============================================================================ +23:08:22 [ 1] [ 4] [0810] +23:08:22 [ 7] [ 10] [0320040729] +23:08:22 [ 11] [ 6] [158968] +23:08:22 [ 39] [ 2] [00] +23:08:22 [ 70] [ 3] [301] +23:08:22 ============================================================================ +23:08:22 Calculate Source COMM Id = 2 +23:08:22 ============================================================================ +23:08:22 + + +waiting on router queue for slot.... +23:08:26 ============================================================================ +23:08:26 Slot Id : <431> +23:08:26 Transaction Type : REQUEST +23:08:26 Received From : +23:08:26 ============================================================================ +23:08:26 FNo. Len. Field Value +23:08:26 ============================================================================ +23:08:26 [ 1] [ 4] [0800] +23:08:26 [ 2] [ 5] [02531] +23:08:26 [ 3] [ 6] [579238] +23:08:26 [ 7] [ 10] [0320160826] +23:08:26 [ 11] [ 6] [807755] +23:08:26 [ 15] [ 10] [0320160826] +23:08:26 [ 37] [ 11] [57923807755] +23:08:26 [ 70] [ 3] [001] +23:08:26 ============================================================================ +23:08:26 + + +waiting on router queue for slot.... +23:08:26 ============================================================================ +23:08:26 Slot Id : <431> +23:08:26 Transaction Type : RESPONSE +23:08:26 Received From : +23:08:26 ============================================================================ +23:08:26 FNo. Len. Field Value +23:08:26 ============================================================================ +23:08:26 [ 1] [ 4] [0810] +23:08:26 [ 7] [ 10] [0320160826] +23:08:26 [ 11] [ 6] [807755] +23:08:26 [ 15] [ 4] [0320] +23:08:26 [ 37] [ 12] [57923807755] +23:08:26 [ 39] [ 2] [00] +23:08:26 [ 70] [ 3] [001] +23:08:26 ============================================================================ +23:08:26 Sending to : +23:08:26 ============================================================================ +23:08:26 + + +waiting on router queue for slot.... +23:08:33 ============================================================================ +23:08:33 Slot Id : <427> +23:08:33 Transaction Type : REQUEST +23:08:33 Received From : +23:08:33 ============================================================================ +23:08:33 FNo. Len. Field Value +23:08:33 ============================================================================ +23:08:33 [ 1] [ 4] [0800] +23:08:33 [ 7] [ 10] [0320040741] +23:08:33 [ 11] [ 6] [158969] +23:08:33 [ 70] [ 3] [301] +23:08:33 ============================================================================ +23:08:33 + + +waiting on router queue for slot.... +23:08:33 Sending to : +23:08:33 ============================================================================ +23:08:33 ============================================================================ +23:08:33 Slot Id : <427> +23:08:33 Transaction Type : RESPONSE +23:08:33 Received From : +23:08:33 ============================================================================ +23:08:33 FNo. Len. Field Value +23:08:33 ============================================================================ +23:08:33 [ 1] [ 4] [0810] +23:08:33 [ 7] [ 10] [0320040741] +23:08:33 [ 11] [ 6] [158969] +23:08:33 [ 39] [ 2] [00] +23:08:33 [ 70] [ 3] [301] +23:08:33 ============================================================================ +23:08:33 Calculate Source COMM Id = 2 +23:08:33 ============================================================================ +23:08:33 + + +waiting on router queue for slot.... +23:08:49 ============================================================================ +23:08:49 Slot Id : <462> +23:08:49 Transaction Type : REQUEST +23:08:49 Received From : +23:08:49 ============================================================================ +23:08:49 FNo. Len. Field Value +23:08:49 ============================================================================ +23:08:49 [ 1] [ 4] [0800] +23:08:49 [ 7] [ 10] [0320040757] +23:08:49 [ 11] [ 6] [158970] +23:08:49 [ 70] [ 3] [301] +23:08:49 ============================================================================ +23:08:49 + + +waiting on router queue for slot.... +23:08:49 Sending to : +23:08:49 ============================================================================ +23:08:49 ============================================================================ +23:08:49 Slot Id : <462> +23:08:49 Transaction Type : RESPONSE +23:08:49 Received From : +23:08:49 ============================================================================ +23:08:49 FNo. Len. Field Value +23:08:49 ============================================================================ +23:08:49 [ 1] [ 4] [0810] +23:08:49 [ 7] [ 10] [0320040757] +23:08:49 [ 11] [ 6] [158970] +23:08:49 [ 39] [ 2] [00] +23:08:49 [ 70] [ 3] [301] +23:08:49 ============================================================================ +23:08:49 Calculate Source COMM Id = 2 +23:08:49 ============================================================================ +23:08:49 + + +waiting on router queue for slot.... +23:09:00 ============================================================================ +23:09:00 Slot Id : <421> +23:09:00 Transaction Type : REQUEST +23:09:00 Received From : +23:09:00 ============================================================================ +23:09:00 FNo. Len. Field Value +23:09:00 ============================================================================ +23:09:00 [ 1] [ 4] [0800] +23:09:00 [ 7] [ 10] [0320040808] +23:09:00 [ 11] [ 6] [158971] +23:09:00 [ 70] [ 3] [301] +23:09:00 ============================================================================ +23:09:00 + + +waiting on router queue for slot.... +23:09:00 Sending to : +23:09:00 ============================================================================ +23:09:00 ============================================================================ +23:09:00 Slot Id : <421> +23:09:00 Transaction Type : RESPONSE +23:09:00 Received From : +23:09:00 ============================================================================ +23:09:00 FNo. Len. Field Value +23:09:00 ============================================================================ +23:09:00 [ 1] [ 4] [0810] +23:09:00 [ 7] [ 10] [0320040808] +23:09:00 [ 11] [ 6] [158971] +23:09:00 [ 39] [ 2] [00] +23:09:00 [ 70] [ 3] [301] +23:09:00 ============================================================================ +23:09:00 Calculate Source COMM Id = 2 +23:09:00 ============================================================================ +23:09:00 + + +waiting on router queue for slot.... +23:09:07 ============================================================================ +23:09:07 Slot Id : <428> +23:09:07 Transaction Type : REQUEST +23:09:07 Received From : +23:09:07 ============================================================================ +23:09:07 FNo. Len. Field Value +23:09:07 ============================================================================ +23:09:07 [ 1] [ 4] [0800] +23:09:07 [ 7] [ 10] [0321062056] +23:09:07 [ 11] [ 6] [232056] +23:09:07 [ 37] [ 12] [57923232056] +23:09:07 [ 70] [ 3] [301] +23:09:07 ============================================================================ +23:09:07 + + +waiting on router queue for slot.... +23:09:07 Sending to : +23:09:07 ============================================================================ +23:09:07 ============================================================================ +23:09:07 Slot Id : <428> +23:09:07 Transaction Type : RESPONSE +23:09:07 Received From : +23:09:07 ============================================================================ +23:09:07 FNo. Len. Field Value +23:09:07 ============================================================================ +23:09:07 [ 1] [ 4] [0810] +23:09:07 [ 7] [ 10] [0321062056] +23:09:07 [ 11] [ 6] [232056] +23:09:07 [ 37] [ 12] [579232320560] +23:09:07 [ 39] [ 2] [00] +23:09:07 [ 70] [ 3] [810] +23:09:07 ============================================================================ +23:09:07 Calculate Source COMM Id = 6 +23:09:07 ============================================================================ +23:09:07 + + +waiting on router queue for slot.... +23:09:12 ============================================================================ +23:09:12 Slot Id : <451> +23:09:12 Transaction Type : REQUEST +23:09:12 Received From : +23:09:12 ============================================================================ +23:09:12 FNo. Len. Field Value +23:09:12 ============================================================================ +23:09:12 [ 1] [ 4] [0800] +23:09:12 [ 7] [ 10] [0320040820] +23:09:12 [ 11] [ 6] [158972] +23:09:12 [ 70] [ 3] [301] +23:09:12 ============================================================================ +23:09:12 + + +waiting on router queue for slot.... +23:09:12 Sending to : +23:09:12 ============================================================================ +23:09:12 ============================================================================ +23:09:12 Slot Id : <451> +23:09:12 Transaction Type : RESPONSE +23:09:12 Received From : +23:09:12 ============================================================================ +23:09:12 FNo. Len. Field Value +23:09:12 ============================================================================ +23:09:12 [ 1] [ 4] [0810] +23:09:12 [ 7] [ 10] [0320040820] +23:09:12 [ 11] [ 6] [158972] +23:09:12 [ 39] [ 2] [00] +23:09:12 [ 70] [ 3] [301] +23:09:12 ============================================================================ +23:09:12 Calculate Source COMM Id = 2 +23:09:12 ============================================================================ +23:09:12 + + +waiting on router queue for slot.... +23:09:23 ============================================================================ +23:09:23 Slot Id : <457> +23:09:23 Transaction Type : REQUEST +23:09:23 Received From : +23:09:23 ============================================================================ +23:09:23 FNo. Len. Field Value +23:09:23 ============================================================================ +23:09:23 [ 1] [ 4] [0800] +23:09:23 [ 7] [ 10] [0320040831] +23:09:23 [ 11] [ 6] [158973] +23:09:23 [ 70] [ 3] [301] +23:09:23 ============================================================================ +23:09:23 + + +waiting on router queue for slot.... +23:09:23 Sending to : +23:09:23 ============================================================================ +23:09:23 ============================================================================ +23:09:23 Slot Id : <457> +23:09:23 Transaction Type : RESPONSE +23:09:23 Received From : +23:09:23 ============================================================================ +23:09:23 FNo. Len. Field Value +23:09:23 ============================================================================ +23:09:23 [ 1] [ 4] [0810] +23:09:23 [ 7] [ 10] [0320040831] +23:09:23 [ 11] [ 6] [158973] +23:09:23 [ 39] [ 2] [00] +23:09:23 [ 70] [ 3] [301] +23:09:23 ============================================================================ +23:09:23 Calculate Source COMM Id = 2 +23:09:23 ============================================================================ +23:09:23 + + +waiting on router queue for slot.... +23:09:28 ============================================================================ +23:09:28 Slot Id : <422> +23:09:28 Transaction Type : REQUEST +23:09:28 Received From : +23:09:28 ============================================================================ +23:09:28 FNo. Len. Field Value +23:09:28 ============================================================================ +23:09:28 [ 1] [ 4] [0800] +23:09:28 [ 2] [ 5] [02531] +23:09:28 [ 3] [ 6] [579238] +23:09:28 [ 7] [ 10] [0320160928] +23:09:28 [ 11] [ 6] [807756] +23:09:28 [ 15] [ 10] [0320160928] +23:09:28 [ 37] [ 11] [57923807756] +23:09:28 [ 70] [ 3] [001] +23:09:28 ============================================================================ +23:09:28 + + +waiting on router queue for slot.... +23:09:28 ============================================================================ +23:09:28 Slot Id : <422> +23:09:28 Transaction Type : RESPONSE +23:09:28 Received From : +23:09:28 ============================================================================ +23:09:28 FNo. Len. Field Value +23:09:28 ============================================================================ +23:09:28 [ 1] [ 4] [0810] +23:09:28 [ 7] [ 10] [0320160928] +23:09:28 [ 11] [ 6] [807756] +23:09:28 [ 15] [ 4] [0320] +23:09:28 [ 37] [ 12] [57923807756] +23:09:28 [ 39] [ 2] [00] +23:09:28 [ 70] [ 3] [001] +23:09:28 ============================================================================ +23:09:28 Sending to : +23:09:28 ============================================================================ +23:09:28 + + +waiting on router queue for slot.... +23:09:38 ============================================================================ +23:09:38 Slot Id : <465> +23:09:38 Transaction Type : REQUEST +23:09:38 Received From : +23:09:38 ============================================================================ +23:09:38 FNo. Len. Field Value +23:09:38 ============================================================================ +23:09:38 [ 1] [ 4] [0800] +23:09:38 [ 7] [ 10] [0320040846] +23:09:38 [ 11] [ 6] [158974] +23:09:38 [ 70] [ 3] [301] +23:09:38 ============================================================================ +23:09:38 + + +waiting on router queue for slot.... +23:09:38 Sending to : +23:09:38 ============================================================================ +23:09:38 ============================================================================ +23:09:38 Slot Id : <465> +23:09:38 Transaction Type : RESPONSE +23:09:38 Received From : +23:09:38 ============================================================================ +23:09:38 FNo. Len. Field Value +23:09:38 ============================================================================ +23:09:38 [ 1] [ 4] [0810] +23:09:38 [ 7] [ 10] [0320040846] +23:09:38 [ 11] [ 6] [158974] +23:09:38 [ 39] [ 2] [00] +23:09:38 [ 70] [ 3] [301] +23:09:38 ============================================================================ +23:09:38 Calculate Source COMM Id = 2 +23:09:38 ============================================================================ +23:09:38 + + +waiting on router queue for slot.... +23:09:49 ============================================================================ +23:09:49 Slot Id : <426> +23:09:49 Transaction Type : REQUEST +23:09:49 Received From : +23:09:49 ============================================================================ +23:09:49 FNo. Len. Field Value +23:09:49 ============================================================================ +23:09:49 [ 1] [ 4] [0800] +23:09:49 [ 7] [ 10] [0320040857] +23:09:49 [ 11] [ 6] [158975] +23:09:49 [ 70] [ 3] [301] +23:09:49 ============================================================================ +23:09:49 + + +waiting on router queue for slot.... +23:09:49 Sending to : +23:09:49 ============================================================================ +23:09:49 ============================================================================ +23:09:49 Slot Id : <426> +23:09:49 Transaction Type : RESPONSE +23:09:49 Received From : +23:09:49 ============================================================================ +23:09:49 FNo. Len. Field Value +23:09:49 ============================================================================ +23:09:49 [ 1] [ 4] [0810] +23:09:49 [ 7] [ 10] [0320040857] +23:09:49 [ 11] [ 6] [158975] +23:09:49 [ 39] [ 2] [00] +23:09:49 [ 70] [ 3] [301] +23:09:49 ============================================================================ +23:09:49 Calculate Source COMM Id = 2 +23:09:49 ============================================================================ +23:09:49 + + +waiting on router queue for slot.... +23:09:56 ============================================================================ +23:09:56 Slot Id : <436> +23:09:56 Transaction Type : REQUEST +23:09:56 Received From : +23:09:56 ============================================================================ +23:09:56 FNo. Len. Field Value +23:09:56 ============================================================================ +23:09:56 [ 1] [ 4] [0800] +23:09:56 [ 7] [ 10] [0320161742] +23:09:56 [ 11] [ 6] [042976] +23:09:56 [ 37] [ 12] [57923042976] +23:09:56 [ 70] [ 3] [301] +23:09:56 ============================================================================ +23:09:56 + + +waiting on router queue for slot.... +23:09:56 Sending to : +23:09:56 ============================================================================ +23:09:56 ============================================================================ +23:09:56 Slot Id : <436> +23:09:56 Transaction Type : RESPONSE +23:09:56 Received From : +23:09:56 ============================================================================ +23:09:56 FNo. Len. Field Value +23:09:56 ============================================================================ +23:09:56 [ 1] [ 4] [0810] +23:09:56 [ 7] [ 10] [0320161742] +23:09:56 [ 11] [ 6] [042976] +23:09:56 [ 37] [ 12] [579230429760] +23:09:56 [ 39] [ 2] [00] +23:09:56 [ 70] [ 3] [810] +23:09:56 ============================================================================ +23:09:56 Calculate Source COMM Id = 1 +23:09:56 ============================================================================ +23:09:56 + + +waiting on router queue for slot.... +23:10:05 ============================================================================ +23:10:05 Slot Id : <444> +23:10:05 Transaction Type : REQUEST +23:10:05 Received From : +23:10:05 ============================================================================ +23:10:05 FNo. Len. Field Value +23:10:05 ============================================================================ +23:10:05 [ 1] [ 4] [0800] +23:10:05 [ 7] [ 10] [0320040913] +23:10:05 [ 11] [ 6] [158976] +23:10:05 [ 70] [ 3] [301] +23:10:05 ============================================================================ +23:10:05 + + +waiting on router queue for slot.... +23:10:05 Sending to : +23:10:05 ============================================================================ +23:10:05 ============================================================================ +23:10:05 Slot Id : <444> +23:10:05 Transaction Type : RESPONSE +23:10:05 Received From : +23:10:05 ============================================================================ +23:10:05 FNo. Len. Field Value +23:10:05 ============================================================================ +23:10:05 [ 1] [ 4] [0810] +23:10:05 [ 7] [ 10] [0320040913] +23:10:05 [ 11] [ 6] [158976] +23:10:05 [ 39] [ 2] [00] +23:10:05 [ 70] [ 3] [301] +23:10:05 ============================================================================ +23:10:05 Calculate Source COMM Id = 2 +23:10:05 ============================================================================ +23:10:05 + + +waiting on router queue for slot.... +23:10:12 ============================================================================ +23:10:12 Slot Id : <423> +23:10:12 Transaction Type : REQUEST +23:10:12 Received From : +23:10:12 ============================================================================ +23:10:12 FNo. Len. Field Value +23:10:12 ============================================================================ +23:10:12 [ 1] [ 4] [0800] +23:10:12 [ 7] [ 10] [0321062201] +23:10:12 [ 11] [ 6] [232201] +23:10:12 [ 37] [ 12] [57923232201] +23:10:12 [ 70] [ 3] [301] +23:10:12 ============================================================================ +23:10:12 + + +waiting on router queue for slot.... +23:10:12 Sending to : +23:10:12 ============================================================================ +23:10:12 ============================================================================ +23:10:12 Slot Id : <423> +23:10:12 Transaction Type : RESPONSE +23:10:12 Received From : +23:10:12 ============================================================================ +23:10:12 FNo. Len. Field Value +23:10:12 ============================================================================ +23:10:12 [ 1] [ 4] [0810] +23:10:12 [ 7] [ 10] [0321062201] +23:10:12 [ 11] [ 6] [232201] +23:10:12 [ 37] [ 12] [579232322010] +23:10:12 [ 39] [ 2] [00] +23:10:12 [ 70] [ 3] [810] +23:10:12 ============================================================================ +23:10:12 Calculate Source COMM Id = 6 +23:10:12 ============================================================================ +23:10:12 + + +waiting on router queue for slot.... +23:10:16 ============================================================================ +23:10:16 Slot Id : <458> +23:10:16 Transaction Type : REQUEST +23:10:16 Received From : +23:10:16 ============================================================================ +23:10:16 FNo. Len. Field Value +23:10:16 ============================================================================ +23:10:16 [ 1] [ 4] [0800] +23:10:16 [ 7] [ 10] [0320040923] +23:10:16 [ 11] [ 6] [158977] +23:10:16 [ 70] [ 3] [301] +23:10:16 ============================================================================ +23:10:16 + + +waiting on router queue for slot.... +23:10:16 Sending to : +23:10:16 ============================================================================ +23:10:16 ============================================================================ +23:10:16 Slot Id : <458> +23:10:16 Transaction Type : RESPONSE +23:10:16 Received From : +23:10:16 ============================================================================ +23:10:16 FNo. Len. Field Value +23:10:16 ============================================================================ +23:10:16 [ 1] [ 4] [0810] +23:10:16 [ 7] [ 10] [0320040923] +23:10:16 [ 11] [ 6] [158977] +23:10:16 [ 39] [ 2] [00] +23:10:16 [ 70] [ 3] [301] +23:10:16 ============================================================================ +23:10:16 Calculate Source COMM Id = 2 +23:10:16 ============================================================================ +23:10:16 + + +waiting on router queue for slot.... +23:10:30 ============================================================================ +23:10:30 Slot Id : <452> +23:10:30 Transaction Type : REQUEST +23:10:30 Received From : +23:10:30 ============================================================================ +23:10:30 FNo. Len. Field Value +23:10:30 ============================================================================ +23:10:30 [ 1] [ 4] [0800] +23:10:30 [ 2] [ 5] [02531] +23:10:30 [ 3] [ 6] [579238] +23:10:30 [ 7] [ 10] [0320161030] +23:10:30 [ 11] [ 6] [807757] +23:10:30 [ 15] [ 10] [0320161030] +23:10:30 [ 37] [ 11] [57923807757] +23:10:30 [ 70] [ 3] [001] +23:10:30 ============================================================================ +23:10:30 + + +waiting on router queue for slot.... +23:10:30 ============================================================================ +23:10:30 Slot Id : <452> +23:10:30 Transaction Type : RESPONSE +23:10:30 Received From : +23:10:30 ============================================================================ +23:10:30 FNo. Len. Field Value +23:10:30 ============================================================================ +23:10:30 [ 1] [ 4] [0810] +23:10:30 [ 7] [ 10] [0320161030] +23:10:30 [ 11] [ 6] [807757] +23:10:30 [ 15] [ 4] [0320] +23:10:30 [ 37] [ 12] [57923807757] +23:10:30 [ 39] [ 2] [00] +23:10:30 [ 70] [ 3] [001] +23:10:30 ============================================================================ +23:10:30 Sending to : +23:10:30 ============================================================================ +23:10:30 + + +waiting on router queue for slot.... +23:10:33 ============================================================================ +23:10:33 Slot Id : <459> +23:10:33 Transaction Type : REQUEST +23:10:33 Received From : +23:10:33 ============================================================================ +23:10:33 FNo. Len. Field Value +23:10:33 ============================================================================ +23:10:33 [ 1] [ 4] [0800] +23:10:33 [ 7] [ 10] [0320040941] +23:10:33 [ 11] [ 6] [158978] +23:10:33 [ 70] [ 3] [301] +23:10:33 ============================================================================ +23:10:33 + + +waiting on router queue for slot.... +23:10:33 Sending to : +23:10:33 ============================================================================ +23:10:33 ============================================================================ +23:10:33 Slot Id : <459> +23:10:33 Transaction Type : RESPONSE +23:10:33 Received From : +23:10:33 ============================================================================ +23:10:33 FNo. Len. Field Value +23:10:33 ============================================================================ +23:10:33 [ 1] [ 4] [0810] +23:10:33 [ 7] [ 10] [0320040941] +23:10:33 [ 11] [ 6] [158978] +23:10:33 [ 39] [ 2] [00] +23:10:33 [ 70] [ 3] [301] +23:10:33 ============================================================================ +23:10:33 Calculate Source COMM Id = 2 +23:10:33 ============================================================================ +23:10:33 + + +waiting on router queue for slot.... +23:10:47 ============================================================================ +23:10:47 Slot Id : <466> +23:10:47 Transaction Type : REQUEST +23:10:47 Received From : +23:10:47 ============================================================================ +23:10:47 FNo. Len. Field Value +23:10:47 ============================================================================ +23:10:47 [ 1] [ 4] [0800] +23:10:47 [ 7] [ 10] [0320040955] +23:10:47 [ 11] [ 6] [158979] +23:10:47 [ 70] [ 3] [301] +23:10:47 ============================================================================ +23:10:47 + + +waiting on router queue for slot.... +23:10:47 Sending to : +23:10:47 ============================================================================ +23:10:47 ============================================================================ +23:10:47 Slot Id : <466> +23:10:47 Transaction Type : RESPONSE +23:10:47 Received From : +23:10:47 ============================================================================ +23:10:47 FNo. Len. Field Value +23:10:47 ============================================================================ +23:10:47 [ 1] [ 4] [0810] +23:10:47 [ 7] [ 10] [0320040955] +23:10:47 [ 11] [ 6] [158979] +23:10:47 [ 39] [ 2] [00] +23:10:47 [ 70] [ 3] [301] +23:10:47 ============================================================================ +23:10:47 Calculate Source COMM Id = 2 +23:10:47 ============================================================================ +23:10:47 + + +waiting on router queue for slot.... +23:10:59 ============================================================================ +23:10:59 Slot Id : <439> +23:10:59 Transaction Type : REQUEST +23:10:59 Received From : +23:10:59 ============================================================================ +23:10:59 FNo. Len. Field Value +23:10:59 ============================================================================ +23:10:59 [ 1] [ 4] [0800] +23:10:59 [ 7] [ 10] [0320041007] +23:10:59 [ 11] [ 6] [158980] +23:10:59 [ 70] [ 3] [301] +23:10:59 ============================================================================ +23:10:59 + + +waiting on router queue for slot.... +23:10:59 Sending to : +23:10:59 ============================================================================ +23:10:59 ============================================================================ +23:10:59 Slot Id : <439> +23:10:59 Transaction Type : RESPONSE +23:10:59 Received From : +23:10:59 ============================================================================ +23:10:59 FNo. Len. Field Value +23:10:59 ============================================================================ +23:10:59 [ 1] [ 4] [0810] +23:10:59 [ 7] [ 10] [0320041007] +23:10:59 [ 11] [ 6] [158980] +23:10:59 [ 39] [ 2] [00] +23:10:59 [ 70] [ 3] [301] +23:10:59 ============================================================================ +23:10:59 Calculate Source COMM Id = 2 +23:10:59 ============================================================================ +23:10:59 + + +waiting on router queue for slot.... +23:11:09 ============================================================================ +23:11:09 Slot Id : <455> +23:11:09 Transaction Type : REQUEST +23:11:09 Received From : +23:11:09 ============================================================================ +23:11:09 FNo. Len. Field Value +23:11:09 ============================================================================ +23:11:09 [ 1] [ 4] [0800] +23:11:09 [ 7] [ 10] [0320041017] +23:11:09 [ 11] [ 6] [158981] +23:11:09 [ 70] [ 3] [301] +23:11:09 ============================================================================ +23:11:09 + + +waiting on router queue for slot.... +23:11:09 Sending to : +23:11:09 ============================================================================ +23:11:09 ============================================================================ +23:11:09 Slot Id : <455> +23:11:09 Transaction Type : RESPONSE +23:11:09 Received From : +23:11:09 ============================================================================ +23:11:09 FNo. Len. Field Value +23:11:09 ============================================================================ +23:11:09 [ 1] [ 4] [0810] +23:11:09 [ 7] [ 10] [0320041017] +23:11:09 [ 11] [ 6] [158981] +23:11:09 [ 39] [ 2] [00] +23:11:09 [ 70] [ 3] [301] +23:11:09 ============================================================================ +23:11:09 Calculate Source COMM Id = 2 +23:11:09 ============================================================================ +23:11:09 + + +waiting on router queue for slot.... +23:11:17 ============================================================================ +23:11:17 Slot Id : <468> +23:11:17 Transaction Type : REQUEST +23:11:17 Received From : +23:11:17 ============================================================================ +23:11:17 FNo. Len. Field Value +23:11:17 ============================================================================ +23:11:17 [ 1] [ 4] [0800] +23:11:17 [ 7] [ 10] [0321062306] +23:11:17 [ 11] [ 6] [232306] +23:11:17 [ 37] [ 12] [57923232306] +23:11:17 [ 70] [ 3] [301] +23:11:17 ============================================================================ +23:11:17 + + +waiting on router queue for slot.... +23:11:17 Sending to : +23:11:17 ============================================================================ +23:11:17 ============================================================================ +23:11:17 Slot Id : <468> +23:11:17 Transaction Type : RESPONSE +23:11:17 Received From : +23:11:17 ============================================================================ +23:11:17 FNo. Len. Field Value +23:11:17 ============================================================================ +23:11:17 [ 1] [ 4] [0810] +23:11:17 [ 7] [ 10] [0321062306] +23:11:17 [ 11] [ 6] [232306] +23:11:17 [ 37] [ 12] [579232323060] +23:11:17 [ 39] [ 2] [00] +23:11:17 [ 70] [ 3] [810] +23:11:17 ============================================================================ +23:11:17 Calculate Source COMM Id = 6 +23:11:17 ============================================================================ +23:11:17 + + +waiting on router queue for slot.... +23:11:20 ============================================================================ +23:11:20 Slot Id : <475> +23:11:20 Transaction Type : REQUEST +23:11:20 Received From : +23:11:20 ============================================================================ +23:11:20 FNo. Len. Field Value +23:11:20 ============================================================================ +23:11:20 [ 1] [ 4] [0800] +23:11:20 [ 7] [ 10] [0320041028] +23:11:20 [ 11] [ 6] [158982] +23:11:20 [ 70] [ 3] [301] +23:11:20 ============================================================================ +23:11:20 + + +waiting on router queue for slot.... +23:11:20 Sending to : +23:11:20 ============================================================================ +23:11:20 ============================================================================ +23:11:20 Slot Id : <475> +23:11:20 Transaction Type : RESPONSE +23:11:20 Received From : +23:11:20 ============================================================================ +23:11:20 FNo. Len. Field Value +23:11:20 ============================================================================ +23:11:20 [ 1] [ 4] [0810] +23:11:20 [ 7] [ 10] [0320041028] +23:11:20 [ 11] [ 6] [158982] +23:11:20 [ 39] [ 2] [00] +23:11:20 [ 70] [ 3] [301] +23:11:20 ============================================================================ +23:11:20 Calculate Source COMM Id = 2 +23:11:20 ============================================================================ +23:11:20 + + +waiting on router queue for slot.... +23:11:21 ============================================================================ +23:11:21 Slot Id : <460> +23:11:21 Transaction Type : REQUEST +23:11:21 Received From : +23:11:21 ============================================================================ +23:11:21 FNo. Len. Field Value +23:11:21 ============================================================================ +23:11:21 [ 1] [ 4] [0800] +23:11:21 [ 7] [ 10] [0320160912] +23:11:21 [ 11] [ 6] [085982] +23:11:21 [ 37] [ 12] [57923085982] +23:11:21 [ 70] [ 3] [301] +23:11:21 ============================================================================ +23:11:21 + + +waiting on router queue for slot.... +23:11:21 Sending to : +23:11:21 ============================================================================ +23:11:21 ============================================================================ +23:11:21 Slot Id : <460> +23:11:21 Transaction Type : RESPONSE +23:11:21 Received From : +23:11:21 ============================================================================ +23:11:21 FNo. Len. Field Value +23:11:21 ============================================================================ +23:11:21 [ 1] [ 4] [0810] +23:11:21 [ 7] [ 10] [0320160912] +23:11:21 [ 11] [ 6] [085982] +23:11:21 [ 37] [ 12] [579230859820] +23:11:21 [ 39] [ 2] [00] +23:11:21 [ 70] [ 3] [810] +23:11:21 ============================================================================ +23:11:21 Calculate Source COMM Id = 4 +23:11:21 ============================================================================ +23:11:21 + + +waiting on router queue for slot.... +23:11:31 ============================================================================ +23:11:31 Slot Id : <495> +23:11:31 Transaction Type : REQUEST +23:11:31 Received From : +23:11:31 ============================================================================ +23:11:31 FNo. Len. Field Value +23:11:31 ============================================================================ +23:11:31 [ 1] [ 4] [0800] +23:11:31 [ 7] [ 10] [0320041039] +23:11:31 [ 11] [ 6] [158983] +23:11:31 [ 70] [ 3] [301] +23:11:31 ============================================================================ +23:11:31 + + +waiting on router queue for slot.... +23:11:31 Sending to : +23:11:31 ============================================================================ +23:11:31 ============================================================================ +23:11:31 Slot Id : <495> +23:11:31 Transaction Type : RESPONSE +23:11:31 Received From : +23:11:31 ============================================================================ +23:11:31 FNo. Len. Field Value +23:11:31 ============================================================================ +23:11:31 [ 1] [ 4] [0810] +23:11:31 [ 7] [ 10] [0320041039] +23:11:31 [ 11] [ 6] [158983] +23:11:31 [ 39] [ 2] [00] +23:11:31 [ 70] [ 3] [301] +23:11:31 ============================================================================ +23:11:31 Calculate Source COMM Id = 2 +23:11:31 ============================================================================ +23:11:31 + + +waiting on router queue for slot.... +23:11:32 ============================================================================ +23:11:32 Slot Id : <449> +23:11:32 Transaction Type : REQUEST +23:11:32 Received From : +23:11:32 ============================================================================ +23:11:32 FNo. Len. Field Value +23:11:32 ============================================================================ +23:11:32 [ 1] [ 4] [0800] +23:11:32 [ 2] [ 5] [02531] +23:11:32 [ 3] [ 6] [579238] +23:11:32 [ 7] [ 10] [0320161132] +23:11:32 [ 11] [ 6] [807758] +23:11:32 [ 15] [ 10] [0320161132] +23:11:32 [ 37] [ 11] [57923807758] +23:11:32 [ 70] [ 3] [001] +23:11:32 ============================================================================ +23:11:32 + + +waiting on router queue for slot.... +23:11:32 ============================================================================ +23:11:32 Slot Id : <449> +23:11:32 Transaction Type : RESPONSE +23:11:32 Received From : +23:11:32 ============================================================================ +23:11:32 FNo. Len. Field Value +23:11:32 ============================================================================ +23:11:32 [ 1] [ 4] [0810] +23:11:32 [ 7] [ 10] [0320161132] +23:11:32 [ 11] [ 6] [807758] +23:11:32 [ 15] [ 4] [0320] +23:11:32 [ 37] [ 12] [57923807758] +23:11:32 [ 39] [ 2] [00] +23:11:32 [ 70] [ 3] [001] +23:11:32 ============================================================================ +23:11:32 Sending to : +23:11:32 ============================================================================ +23:11:32 + + +waiting on router queue for slot.... +23:11:42 ============================================================================ +23:11:42 Slot Id : <440> +23:11:42 Transaction Type : REQUEST +23:11:42 Received From : +23:11:42 ============================================================================ +23:11:42 FNo. Len. Field Value +23:11:42 ============================================================================ +23:11:42 [ 1] [ 4] [0800] +23:11:42 [ 7] [ 10] [0320041050] +23:11:42 [ 11] [ 6] [158984] +23:11:42 [ 70] [ 3] [301] +23:11:42 ============================================================================ +23:11:42 + + +waiting on router queue for slot.... +23:11:42 Sending to : +23:11:42 ============================================================================ +23:11:42 ============================================================================ +23:11:42 Slot Id : <440> +23:11:42 Transaction Type : RESPONSE +23:11:42 Received From : +23:11:42 ============================================================================ +23:11:42 FNo. Len. Field Value +23:11:42 ============================================================================ +23:11:42 [ 1] [ 4] [0810] +23:11:42 [ 7] [ 10] [0320041050] +23:11:42 [ 11] [ 6] [158984] +23:11:42 [ 39] [ 2] [00] +23:11:42 [ 70] [ 3] [301] +23:11:42 ============================================================================ +23:11:42 Calculate Source COMM Id = 2 +23:11:42 ============================================================================ +23:11:42 + + +waiting on router queue for slot.... +23:11:58 ============================================================================ +23:11:58 Slot Id : <482> +23:11:58 Transaction Type : REQUEST +23:11:58 Received From : +23:11:58 ============================================================================ +23:11:58 FNo. Len. Field Value +23:11:58 ============================================================================ +23:11:58 [ 1] [ 4] [0800] +23:11:58 [ 7] [ 10] [0320041106] +23:11:58 [ 11] [ 6] [158985] +23:11:58 [ 70] [ 3] [301] +23:11:58 ============================================================================ +23:11:58 + + +waiting on router queue for slot.... +23:11:58 Sending to : +23:11:58 ============================================================================ +23:11:58 ============================================================================ +23:11:58 Slot Id : <482> +23:11:58 Transaction Type : RESPONSE +23:11:58 Received From : +23:11:58 ============================================================================ +23:11:58 FNo. Len. Field Value +23:11:58 ============================================================================ +23:11:58 [ 1] [ 4] [0810] +23:11:58 [ 7] [ 10] [0320041106] +23:11:58 [ 11] [ 6] [158985] +23:11:58 [ 39] [ 2] [00] +23:11:58 [ 70] [ 3] [301] +23:11:58 ============================================================================ +23:11:58 Calculate Source COMM Id = 2 +23:11:58 ============================================================================ +23:11:58 + + +waiting on router queue for slot.... +23:12:06 ============================================================================ +23:12:06 Slot Id : <432> +23:12:06 Transaction Type : REQUEST +23:12:06 Received From : +23:12:06 ============================================================================ +23:12:06 FNo. Len. Field Value +23:12:06 ============================================================================ +23:12:06 [ 1] [ 4] [0800] +23:12:06 [ 7] [ 10] [0320161202] +23:12:06 [ 11] [ 6] [049812] +23:12:06 [ 37] [ 12] [507923049812] +23:12:06 [ 70] [ 3] [001] +23:12:06 ============================================================================ +23:12:06 + + +waiting on router queue for slot.... +23:12:06 Sending to : +23:12:06 ============================================================================ +23:12:06 ============================================================================ +23:12:06 Slot Id : <432> +23:12:06 Transaction Type : RESPONSE +23:12:06 Received From : +23:12:06 ============================================================================ +23:12:06 FNo. Len. Field Value +23:12:06 ============================================================================ +23:12:06 [ 1] [ 4] [0810] +23:12:06 [ 7] [ 10] [0320161202] +23:12:06 [ 11] [ 6] [049812] +23:12:06 [ 37] [ 12] [507923049812] +23:12:06 [ 39] [ 2] [00] +23:12:06 [ 70] [ 3] [001] +23:12:06 ============================================================================ +23:12:06 Calculate Source COMM Id = 0 +23:12:06 ============================================================================ +23:12:06 + + +waiting on router queue for slot.... +23:12:09 ============================================================================ +23:12:09 Slot Id : <453> +23:12:09 Transaction Type : REQUEST +23:12:09 Received From : +23:12:09 ============================================================================ +23:12:09 FNo. Len. Field Value +23:12:09 ============================================================================ +23:12:09 [ 1] [ 4] [0800] +23:12:09 [ 7] [ 10] [0320041117] +23:12:09 [ 11] [ 6] [158986] +23:12:09 [ 70] [ 3] [301] +23:12:09 ============================================================================ +23:12:09 + + +waiting on router queue for slot.... +23:12:09 Sending to : +23:12:09 ============================================================================ +23:12:09 ============================================================================ +23:12:09 Slot Id : <453> +23:12:09 Transaction Type : RESPONSE +23:12:09 Received From : +23:12:09 ============================================================================ +23:12:09 FNo. Len. Field Value +23:12:09 ============================================================================ +23:12:09 [ 1] [ 4] [0810] +23:12:09 [ 7] [ 10] [0320041117] +23:12:09 [ 11] [ 6] [158986] +23:12:09 [ 39] [ 2] [00] +23:12:09 [ 70] [ 3] [301] +23:12:09 ============================================================================ +23:12:09 Calculate Source COMM Id = 2 +23:12:09 ============================================================================ +23:12:09 + + +waiting on router queue for slot.... +23:12:22 ============================================================================ +23:12:22 Slot Id : <484> +23:12:22 Transaction Type : REQUEST +23:12:22 Received From : +23:12:22 ============================================================================ +23:12:22 FNo. Len. Field Value +23:12:22 ============================================================================ +23:12:22 [ 1] [ 4] [0800] +23:12:22 [ 7] [ 10] [0321062411] +23:12:22 [ 11] [ 6] [232411] +23:12:22 [ 37] [ 12] [57923232411] +23:12:22 [ 70] [ 3] [301] +23:12:22 ============================================================================ +23:12:22 + + +waiting on router queue for slot.... +23:12:22 Sending to : +23:12:22 ============================================================================ +23:12:22 ============================================================================ +23:12:22 Slot Id : <484> +23:12:22 Transaction Type : RESPONSE +23:12:22 Received From : +23:12:22 ============================================================================ +23:12:22 FNo. Len. Field Value +23:12:22 ============================================================================ +23:12:22 [ 1] [ 4] [0810] +23:12:22 [ 7] [ 10] [0321062411] +23:12:22 [ 11] [ 6] [232411] +23:12:22 [ 37] [ 12] [579232324110] +23:12:22 [ 39] [ 2] [00] +23:12:22 [ 70] [ 3] [810] +23:12:22 ============================================================================ +23:12:22 Calculate Source COMM Id = 6 +23:12:22 ============================================================================ +23:12:22 + + +waiting on router queue for slot.... +23:12:25 ============================================================================ +23:12:25 Slot Id : <488> +23:12:25 Transaction Type : REQUEST +23:12:25 Received From : +23:12:25 ============================================================================ +23:12:25 FNo. Len. Field Value +23:12:25 ============================================================================ +23:12:25 [ 1] [ 4] [0800] +23:12:25 [ 7] [ 10] [0320041133] +23:12:25 [ 11] [ 6] [158987] +23:12:25 [ 70] [ 3] [301] +23:12:25 ============================================================================ +23:12:25 + + +waiting on router queue for slot.... +23:12:25 Sending to : +23:12:25 ============================================================================ +23:12:25 ============================================================================ +23:12:25 Slot Id : <488> +23:12:25 Transaction Type : RESPONSE +23:12:25 Received From : +23:12:25 ============================================================================ +23:12:25 FNo. Len. Field Value +23:12:25 ============================================================================ +23:12:25 [ 1] [ 4] [0810] +23:12:25 [ 7] [ 10] [0320041133] +23:12:25 [ 11] [ 6] [158987] +23:12:25 [ 39] [ 2] [00] +23:12:25 [ 70] [ 3] [301] +23:12:25 ============================================================================ +23:12:25 Calculate Source COMM Id = 2 +23:12:25 ============================================================================ +23:12:25 + + +waiting on router queue for slot.... +23:12:34 ============================================================================ +23:12:34 Slot Id : <480> +23:12:34 Transaction Type : REQUEST +23:12:34 Received From : +23:12:34 ============================================================================ +23:12:34 FNo. Len. Field Value +23:12:34 ============================================================================ +23:12:34 [ 1] [ 4] [0800] +23:12:34 [ 2] [ 5] [02531] +23:12:34 [ 3] [ 6] [579238] +23:12:34 [ 7] [ 10] [0320161234] +23:12:34 [ 11] [ 6] [807759] +23:12:34 [ 15] [ 10] [0320161234] +23:12:34 [ 37] [ 11] [57923807759] +23:12:34 [ 70] [ 3] [001] +23:12:34 ============================================================================ +23:12:34 + + +waiting on router queue for slot.... +23:12:34 ============================================================================ +23:12:34 Slot Id : <480> +23:12:34 Transaction Type : RESPONSE +23:12:34 Received From : +23:12:34 ============================================================================ +23:12:34 FNo. Len. Field Value +23:12:34 ============================================================================ +23:12:34 [ 1] [ 4] [0810] +23:12:34 [ 7] [ 10] [0320161234] +23:12:34 [ 11] [ 6] [807759] +23:12:34 [ 15] [ 4] [0320] +23:12:34 [ 37] [ 12] [57923807759] +23:12:34 [ 39] [ 2] [00] +23:12:34 [ 70] [ 3] [001] +23:12:34 ============================================================================ +23:12:34 Sending to : +23:12:34 ============================================================================ +23:12:34 + + +waiting on router queue for slot.... +23:12:40 ============================================================================ +23:12:40 Slot Id : <470> +23:12:40 Transaction Type : REQUEST +23:12:40 Received From : +23:12:40 ============================================================================ +23:12:40 FNo. Len. Field Value +23:12:40 ============================================================================ +23:12:40 [ 1] [ 4] [0800] +23:12:40 [ 7] [ 10] [0320041149] +23:12:40 [ 11] [ 6] [158988] +23:12:40 [ 70] [ 3] [301] +23:12:40 ============================================================================ +23:12:40 + + +waiting on router queue for slot.... +23:12:40 Sending to : +23:12:40 ============================================================================ +23:12:40 ============================================================================ +23:12:40 Slot Id : <470> +23:12:40 Transaction Type : RESPONSE +23:12:40 Received From : +23:12:40 ============================================================================ +23:12:40 FNo. Len. Field Value +23:12:40 ============================================================================ +23:12:40 [ 1] [ 4] [0810] +23:12:40 [ 7] [ 10] [0320041149] +23:12:40 [ 11] [ 6] [158988] +23:12:40 [ 39] [ 2] [00] +23:12:40 [ 70] [ 3] [301] +23:12:40 ============================================================================ +23:12:40 Calculate Source COMM Id = 2 +23:12:40 ============================================================================ +23:12:40 + + +waiting on router queue for slot.... +23:12:56 ============================================================================ +23:12:56 Slot Id : <471> +23:12:56 Transaction Type : REQUEST +23:12:56 Received From : +23:12:56 ============================================================================ +23:12:56 FNo. Len. Field Value +23:12:56 ============================================================================ +23:12:56 [ 1] [ 4] [0800] +23:12:56 [ 7] [ 10] [0320041204] +23:12:56 [ 11] [ 6] [158989] +23:12:56 [ 70] [ 3] [301] +23:12:56 ============================================================================ +23:12:56 + + +waiting on router queue for slot.... +23:12:56 Sending to : +23:12:56 ============================================================================ +23:12:56 ============================================================================ +23:12:56 Slot Id : <471> +23:12:56 Transaction Type : RESPONSE +23:12:56 Received From : +23:12:56 ============================================================================ +23:12:56 FNo. Len. Field Value +23:12:56 ============================================================================ +23:12:56 [ 1] [ 4] [0810] +23:12:56 [ 7] [ 10] [0320041204] +23:12:56 [ 11] [ 6] [158989] +23:12:56 [ 39] [ 2] [00] +23:12:56 [ 70] [ 3] [301] +23:12:56 ============================================================================ +23:12:56 Calculate Source COMM Id = 2 +23:12:56 ============================================================================ +23:12:56 + + +waiting on router queue for slot.... +23:13:06 ============================================================================ +23:13:06 Slot Id : <490> +23:13:06 Transaction Type : REQUEST +23:13:06 Received From : +23:13:06 ============================================================================ +23:13:06 FNo. Len. Field Value +23:13:06 ============================================================================ +23:13:06 [ 1] [ 4] [0800] +23:13:06 [ 7] [ 10] [0320041215] +23:13:06 [ 11] [ 6] [158990] +23:13:06 [ 70] [ 3] [301] +23:13:06 ============================================================================ +23:13:06 + + +waiting on router queue for slot.... +23:13:06 Sending to : +23:13:06 ============================================================================ +23:13:06 ============================================================================ +23:13:06 Slot Id : <490> +23:13:06 Transaction Type : RESPONSE +23:13:06 Received From : +23:13:06 ============================================================================ +23:13:06 FNo. Len. Field Value +23:13:06 ============================================================================ +23:13:06 [ 1] [ 4] [0810] +23:13:06 [ 7] [ 10] [0320041215] +23:13:06 [ 11] [ 6] [158990] +23:13:06 [ 39] [ 2] [00] +23:13:06 [ 70] [ 3] [301] +23:13:06 ============================================================================ +23:13:06 Calculate Source COMM Id = 2 +23:13:06 ============================================================================ +23:13:06 + + +waiting on router queue for slot.... +23:13:18 ============================================================================ +23:13:18 Slot Id : <448> +23:13:18 Transaction Type : REQUEST +23:13:18 Received From : +23:13:18 ============================================================================ +23:13:18 FNo. Len. Field Value +23:13:18 ============================================================================ +23:13:18 [ 1] [ 4] [0800] +23:13:18 [ 7] [ 10] [0320041225] +23:13:18 [ 11] [ 6] [158991] +23:13:18 [ 70] [ 3] [301] +23:13:18 ============================================================================ +23:13:18 + + +waiting on router queue for slot.... +23:13:18 Sending to : +23:13:18 ============================================================================ +23:13:18 ============================================================================ +23:13:18 Slot Id : <448> +23:13:18 Transaction Type : RESPONSE +23:13:18 Received From : +23:13:18 ============================================================================ +23:13:18 FNo. Len. Field Value +23:13:18 ============================================================================ +23:13:18 [ 1] [ 4] [0810] +23:13:18 [ 7] [ 10] [0320041225] +23:13:18 [ 11] [ 6] [158991] +23:13:18 [ 39] [ 2] [00] +23:13:18 [ 70] [ 3] [301] +23:13:18 ============================================================================ +23:13:18 Calculate Source COMM Id = 2 +23:13:18 ============================================================================ +23:13:18 + + +waiting on router queue for slot.... +23:13:27 ============================================================================ +23:13:27 Slot Id : <463> +23:13:27 Transaction Type : REQUEST +23:13:27 Received From : +23:13:27 ============================================================================ +23:13:27 FNo. Len. Field Value +23:13:27 ============================================================================ +23:13:27 [ 1] [ 4] [0800] +23:13:27 [ 7] [ 10] [0321062516] +23:13:27 [ 11] [ 6] [232516] +23:13:27 [ 37] [ 12] [57923232516] +23:13:27 [ 70] [ 3] [301] +23:13:27 ============================================================================ +23:13:27 + + +waiting on router queue for slot.... +23:13:27 Sending to : +23:13:27 ============================================================================ +23:13:27 ============================================================================ +23:13:27 Slot Id : <463> +23:13:27 Transaction Type : RESPONSE +23:13:27 Received From : +23:13:27 ============================================================================ +23:13:27 FNo. Len. Field Value +23:13:27 ============================================================================ +23:13:27 [ 1] [ 4] [0810] +23:13:27 [ 7] [ 10] [0321062516] +23:13:27 [ 11] [ 6] [232516] +23:13:27 [ 37] [ 12] [579232325160] +23:13:27 [ 39] [ 2] [00] +23:13:27 [ 70] [ 3] [810] +23:13:27 ============================================================================ +23:13:27 Calculate Source COMM Id = 6 +23:13:27 ============================================================================ +23:13:27 + + +waiting on router queue for slot.... +23:13:33 ============================================================================ +23:13:33 Slot Id : <0> +23:13:33 Transaction Type : REQUEST +23:13:33 Received From : +23:13:33 ============================================================================ +23:13:33 FNo. Len. Field Value +23:13:33 ============================================================================ +23:13:33 [ 1] [ 4] [0800] +23:13:33 [ 7] [ 10] [0320041241] +23:13:33 [ 11] [ 6] [158992] +23:13:33 [ 70] [ 3] [301] +23:13:33 ============================================================================ +23:13:33 + + +waiting on router queue for slot.... +23:13:33 Sending to : +23:13:33 ============================================================================ +23:13:33 ============================================================================ +23:13:33 Slot Id : <0> +23:13:33 Transaction Type : RESPONSE +23:13:33 Received From : +23:13:33 ============================================================================ +23:13:33 FNo. Len. Field Value +23:13:33 ============================================================================ +23:13:33 [ 1] [ 4] [0810] +23:13:33 [ 7] [ 10] [0320041241] +23:13:33 [ 11] [ 6] [158992] +23:13:33 [ 39] [ 2] [00] +23:13:33 [ 70] [ 3] [301] +23:13:33 ============================================================================ +23:13:33 Calculate Source COMM Id = 2 +23:13:33 ============================================================================ +23:13:33 + + +waiting on router queue for slot.... +23:13:36 ============================================================================ +23:13:36 Slot Id : <479> +23:13:36 Transaction Type : REQUEST +23:13:36 Received From : +23:13:36 ============================================================================ +23:13:36 FNo. Len. Field Value +23:13:36 ============================================================================ +23:13:36 [ 1] [ 4] [0800] +23:13:36 [ 2] [ 5] [02531] +23:13:36 [ 3] [ 6] [579238] +23:13:36 [ 7] [ 10] [0320161336] +23:13:36 [ 11] [ 6] [807760] +23:13:36 [ 15] [ 10] [0320161336] +23:13:36 [ 37] [ 11] [57923807760] +23:13:36 [ 70] [ 3] [001] +23:13:36 ============================================================================ +23:13:36 + + +waiting on router queue for slot.... +23:13:36 ============================================================================ +23:13:36 Slot Id : <479> +23:13:36 Transaction Type : RESPONSE +23:13:36 Received From : +23:13:36 ============================================================================ +23:13:36 FNo. Len. Field Value +23:13:36 ============================================================================ +23:13:36 [ 1] [ 4] [0810] +23:13:36 [ 7] [ 10] [0320161336] +23:13:36 [ 11] [ 6] [807760] +23:13:36 [ 15] [ 4] [0320] +23:13:36 [ 37] [ 12] [57923807760] +23:13:36 [ 39] [ 2] [00] +23:13:36 [ 70] [ 3] [001] +23:13:36 ============================================================================ +23:13:36 Sending to : +23:13:36 ============================================================================ +23:13:36 + + +waiting on router queue for slot.... +23:13:44 ============================================================================ +23:13:44 Slot Id : <4> +23:13:44 Transaction Type : REQUEST +23:13:44 Received From : +23:13:44 ============================================================================ +23:13:44 FNo. Len. Field Value +23:13:44 ============================================================================ +23:13:44 [ 1] [ 4] [0800] +23:13:44 [ 7] [ 10] [0320041252] +23:13:44 [ 11] [ 6] [158993] +23:13:44 [ 70] [ 3] [301] +23:13:44 ============================================================================ +23:13:44 + + +waiting on router queue for slot.... +23:13:44 Sending to : +23:13:44 ============================================================================ +23:13:44 ============================================================================ +23:13:44 Slot Id : <4> +23:13:44 Transaction Type : RESPONSE +23:13:44 Received From : +23:13:44 ============================================================================ +23:13:44 FNo. Len. Field Value +23:13:44 ============================================================================ +23:13:44 [ 1] [ 4] [0810] +23:13:44 [ 7] [ 10] [0320041252] +23:13:44 [ 11] [ 6] [158993] +23:13:44 [ 39] [ 2] [00] +23:13:44 [ 70] [ 3] [301] +23:13:44 ============================================================================ +23:13:44 Calculate Source COMM Id = 2 +23:13:44 ============================================================================ +23:13:44 + + +waiting on router queue for slot.... +23:13:55 ============================================================================ +23:13:55 Slot Id : <2> +23:13:55 Transaction Type : REQUEST +23:13:55 Received From : +23:13:55 ============================================================================ +23:13:55 FNo. Len. Field Value +23:13:55 ============================================================================ +23:13:55 [ 1] [ 4] [0800] +23:13:55 [ 7] [ 10] [0320041303] +23:13:55 [ 11] [ 6] [158994] +23:13:55 [ 70] [ 3] [301] +23:13:55 ============================================================================ +23:13:55 + + +waiting on router queue for slot.... +23:13:55 Sending to : +23:13:55 ============================================================================ +23:13:55 ============================================================================ +23:13:55 Slot Id : <2> +23:13:55 Transaction Type : RESPONSE +23:13:55 Received From : +23:13:55 ============================================================================ +23:13:55 FNo. Len. Field Value +23:13:55 ============================================================================ +23:13:55 [ 1] [ 4] [0810] +23:13:55 [ 7] [ 10] [0320041303] +23:13:55 [ 11] [ 6] [158994] +23:13:55 [ 39] [ 2] [00] +23:13:55 [ 70] [ 3] [301] +23:13:55 ============================================================================ +23:13:55 Calculate Source COMM Id = 2 +23:13:55 ============================================================================ +23:13:55 + + +waiting on router queue for slot.... +23:14:05 ============================================================================ +23:14:05 Slot Id : <493> +23:14:05 Transaction Type : REQUEST +23:14:05 Received From : +23:14:05 ============================================================================ +23:14:05 FNo. Len. Field Value +23:14:05 ============================================================================ +23:14:05 [ 1] [ 4] [0800] +23:14:05 [ 7] [ 10] [0320041313] +23:14:05 [ 11] [ 6] [158995] +23:14:05 [ 70] [ 3] [301] +23:14:05 ============================================================================ +23:14:05 + + +waiting on router queue for slot.... +23:14:05 Sending to : +23:14:05 ============================================================================ +23:14:05 ============================================================================ +23:14:05 Slot Id : <493> +23:14:05 Transaction Type : RESPONSE +23:14:05 Received From : +23:14:05 ============================================================================ +23:14:05 FNo. Len. Field Value +23:14:05 ============================================================================ +23:14:05 [ 1] [ 4] [0810] +23:14:05 [ 7] [ 10] [0320041313] +23:14:05 [ 11] [ 6] [158995] +23:14:05 [ 39] [ 2] [00] +23:14:05 [ 70] [ 3] [301] +23:14:05 ============================================================================ +23:14:05 Calculate Source COMM Id = 2 +23:14:05 ============================================================================ +23:14:05 + + +waiting on router queue for slot.... +23:14:15 ============================================================================ +23:14:15 Slot Id : <498> +23:14:15 Transaction Type : REQUEST +23:14:15 Received From : +23:14:15 ============================================================================ +23:14:15 FNo. Len. Field Value +23:14:15 ============================================================================ +23:14:15 [ 1] [ 4] [0800] +23:14:15 [ 7] [ 10] [0320041323] +23:14:15 [ 11] [ 6] [158996] +23:14:15 [ 70] [ 3] [301] +23:14:15 ============================================================================ +23:14:15 + + +waiting on router queue for slot.... +23:14:15 Sending to : +23:14:15 ============================================================================ +23:14:15 ============================================================================ +23:14:15 Slot Id : <498> +23:14:15 Transaction Type : RESPONSE +23:14:15 Received From : +23:14:15 ============================================================================ +23:14:15 FNo. Len. Field Value +23:14:15 ============================================================================ +23:14:15 [ 1] [ 4] [0810] +23:14:15 [ 7] [ 10] [0320041323] +23:14:15 [ 11] [ 6] [158996] +23:14:15 [ 39] [ 2] [00] +23:14:15 [ 70] [ 3] [301] +23:14:15 ============================================================================ +23:14:15 Calculate Source COMM Id = 2 +23:14:15 ============================================================================ +23:14:15 + + +waiting on router queue for slot.... +23:14:27 ============================================================================ +23:14:27 Slot Id : <489> +23:14:27 Transaction Type : REQUEST +23:14:27 Received From : +23:14:27 ============================================================================ +23:14:27 FNo. Len. Field Value +23:14:27 ============================================================================ +23:14:27 [ 1] [ 4] [0800] +23:14:27 [ 7] [ 10] [0320041335] +23:14:27 [ 11] [ 6] [158997] +23:14:27 [ 70] [ 3] [301] +23:14:27 ============================================================================ +23:14:27 + + +waiting on router queue for slot.... +23:14:27 Sending to : +23:14:27 ============================================================================ +23:14:27 ============================================================================ +23:14:27 Slot Id : <489> +23:14:27 Transaction Type : RESPONSE +23:14:27 Received From : +23:14:27 ============================================================================ +23:14:27 FNo. Len. Field Value +23:14:27 ============================================================================ +23:14:27 [ 1] [ 4] [0810] +23:14:27 [ 7] [ 10] [0320041335] +23:14:27 [ 11] [ 6] [158997] +23:14:27 [ 39] [ 2] [00] +23:14:27 [ 70] [ 3] [301] +23:14:27 ============================================================================ +23:14:27 Calculate Source COMM Id = 2 +23:14:27 ============================================================================ +23:14:27 + + +waiting on router queue for slot.... +23:14:32 ============================================================================ +23:14:32 Slot Id : <473> +23:14:32 Transaction Type : REQUEST +23:14:32 Received From : +23:14:32 ============================================================================ +23:14:32 FNo. Len. Field Value +23:14:32 ============================================================================ +23:14:32 [ 1] [ 4] [0800] +23:14:32 [ 7] [ 10] [0321062621] +23:14:32 [ 11] [ 6] [232621] +23:14:32 [ 37] [ 12] [57923232621] +23:14:32 [ 70] [ 3] [301] +23:14:32 ============================================================================ +23:14:32 + + +waiting on router queue for slot.... +23:14:32 Sending to : +23:14:32 ============================================================================ +23:14:32 ============================================================================ +23:14:32 Slot Id : <473> +23:14:32 Transaction Type : RESPONSE +23:14:32 Received From : +23:14:32 ============================================================================ +23:14:32 FNo. Len. Field Value +23:14:32 ============================================================================ +23:14:32 [ 1] [ 4] [0810] +23:14:32 [ 7] [ 10] [0321062621] +23:14:32 [ 11] [ 6] [232621] +23:14:32 [ 37] [ 12] [579232326210] +23:14:32 [ 39] [ 2] [00] +23:14:32 [ 70] [ 3] [810] +23:14:32 ============================================================================ +23:14:32 Calculate Source COMM Id = 6 +23:14:32 ============================================================================ +23:14:32 + + +waiting on router queue for slot.... +23:14:37 ============================================================================ +23:14:37 Slot Id : <1> +23:14:37 Transaction Type : REQUEST +23:14:37 Received From : +23:14:37 ============================================================================ +23:14:37 FNo. Len. Field Value +23:14:37 ============================================================================ +23:14:37 [ 1] [ 4] [0200] +23:14:37 [ 2] [ 16] [1808930600043376] +23:14:37 [ 3] [ 6] [011000] +23:14:37 [ 4] [ 12] [000050000000] +23:14:37 [ 7] [ 10] [0320231433] +23:14:37 [ 11] [ 6] [849296] +23:14:37 [ 12] [ 6] [231433] +23:14:37 [ 13] [ 4] [0320] +23:14:37 [ 15] [ 4] [0320] +23:14:37 [ 18] [ 4] [6011] +23:14:37 [ 22] [ 3] [900] +23:14:37 [ 25] [ 2] [02] +23:14:37 [ 28] [ 9] [D00002000] +23:14:37 [ 32] [ 6] [621354] +23:14:37 [ 35] [ 27] [1808930600043376=1803500599] +23:14:37 [ 37] [ 12] [507904424408] +23:14:37 [ 41] [ 8] [03004100] +23:14:37 [ 42] [ 15] [NATIVE ] +23:14:37 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +23:14:37 [ 49] [ 3] [418] +23:14:37 [ 52] [ 16] [E7905F8F3FB6259D] +23:14:37 ============================================================================ +23:14:37 + + +waiting on router queue for slot.... +23:14:37 Sending to : +23:14:37 ============================================================================ +23:14:37 Sending to : +23:14:37 ============================================================================ +23:14:37 ============================================================================ +23:14:37 Slot Id : <1> +23:14:37 Transaction Type : REQUEST +23:14:37 Received From : +23:14:37 ============================================================================ +23:14:37 FNo. Len. Field Value +23:14:37 ============================================================================ +23:14:37 [ 1] [ 4] [0200] +23:14:37 [ 2] [ 16] [1808930600043376] +23:14:37 [ 3] [ 6] [011000] +23:14:37 [ 4] [ 12] [000050000000] +23:14:37 [ 7] [ 10] [0320231433] +23:14:37 [ 11] [ 6] [849296] +23:14:37 [ 12] [ 6] [231433] +23:14:37 [ 13] [ 4] [0320] +23:14:37 [ 15] [ 4] [0320] +23:14:37 [ 18] [ 4] [6011] +23:14:37 [ 22] [ 3] [900] +23:14:37 [ 25] [ 2] [02] +23:14:37 [ 28] [ 9] [D00002000] +23:14:37 [ 32] [ 6] [621354] +23:14:37 [ 35] [ 27] [1808930600043376=1803500599] +23:14:37 [ 37] [ 12] [507904424408] +23:14:37 [ 41] [ 8] [03004100] +23:14:37 [ 42] [ 15] [NATIVE ] +23:14:37 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +23:14:37 [ 49] [ 3] [418] +23:14:37 [ 52] [ 16] [E7905F8F3FB6259D] +23:14:37 ============================================================================ +23:14:37 + + +waiting on router queue for slot.... +23:14:37 Sending to : +23:14:37 ============================================================================ +23:14:37 ============================================================================ +23:14:37 Slot Id : <1> +23:14:37 Transaction Type : REQUEST +23:14:37 Received From : +23:14:37 ============================================================================ +23:14:37 FNo. Len. Field Value +23:14:37 ============================================================================ +23:14:37 [ 1] [ 4] [0200] +23:14:37 [ 2] [ 16] [1808930600043376] +23:14:37 [ 3] [ 6] [011000] +23:14:37 [ 4] [ 12] [000050000000] +23:14:37 [ 7] [ 10] [0320231433] +23:14:37 [ 11] [ 6] [849296] +23:14:37 [ 12] [ 6] [231433] +23:14:37 [ 13] [ 4] [0320] +23:14:37 [ 15] [ 4] [0320] +23:14:37 [ 18] [ 4] [6011] +23:14:37 [ 22] [ 3] [900] +23:14:37 [ 25] [ 2] [02] +23:14:37 [ 28] [ 9] [D00002000] +23:14:37 [ 32] [ 6] [621354] +23:14:37 [ 35] [ 27] [1808930600043376=1803500599] +23:14:37 [ 37] [ 12] [507904424408] +23:14:37 [ 41] [ 8] [03004100] +23:14:37 [ 42] [ 15] [NATIVE ] +23:14:37 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +23:14:37 [ 49] [ 3] [418] +23:14:37 [ 52] [ 16] [2E57E1A1DB28CECB] +23:14:37 ============================================================================ +23:14:37 + + +waiting on router queue for slot.... +23:14:37 Sending to : <2> +23:14:37 ============================================================================ +23:14:38 ============================================================================ +23:14:38 Slot Id : <476> +23:14:38 Transaction Type : REQUEST +23:14:38 Received From : +23:14:38 ============================================================================ +23:14:38 FNo. Len. Field Value +23:14:38 ============================================================================ +23:14:38 [ 1] [ 4] [0800] +23:14:38 [ 2] [ 5] [02531] +23:14:38 [ 3] [ 6] [579238] +23:14:38 [ 7] [ 10] [0320161438] +23:14:38 [ 11] [ 6] [807761] +23:14:38 [ 15] [ 10] [0320161438] +23:14:38 [ 37] [ 11] [57923807761] +23:14:38 [ 70] [ 3] [001] +23:14:38 ============================================================================ +23:14:38 + + +waiting on router queue for slot.... +23:14:38 ============================================================================ +23:14:38 Slot Id : <476> +23:14:38 Transaction Type : RESPONSE +23:14:38 Received From : +23:14:38 ============================================================================ +23:14:38 FNo. Len. Field Value +23:14:38 ============================================================================ +23:14:38 [ 1] [ 4] [0810] +23:14:38 [ 7] [ 10] [0320161438] +23:14:38 [ 11] [ 6] [807761] +23:14:38 [ 15] [ 4] [0320] +23:14:38 [ 37] [ 12] [57923807761] +23:14:38 [ 39] [ 2] [00] +23:14:38 [ 70] [ 3] [001] +23:14:38 ============================================================================ +23:14:38 Sending to : +23:14:38 ============================================================================ +23:14:38 + + +waiting on router queue for slot.... +23:14:43 ============================================================================ +23:14:43 Slot Id : <1> +23:14:43 Transaction Type : RESPONSE +23:14:43 Received From : +23:14:43 ============================================================================ +23:14:43 FNo. Len. Field Value +23:14:43 ============================================================================ +23:14:43 [ 1] [ 4] [0210] +23:14:43 [ 2] [ 16] [1808930600043376] +23:14:43 [ 3] [ 6] [011000] +23:14:43 [ 4] [ 12] [000050000000] +23:14:43 [ 6] [ 12] [000050000000] +23:14:43 [ 7] [ 10] [0320231433] +23:14:43 [ 11] [ 6] [849296] +23:14:43 [ 12] [ 6] [231433] +23:14:43 [ 13] [ 4] [0320] +23:14:43 [ 18] [ 4] [6011] +23:14:43 [ 19] [ 3] [418] +23:14:43 [ 22] [ 3] [021] +23:14:43 [ 32] [ 6] [621354] +23:14:43 [ 35] [ 27] [1808930600043376=1803500599] +23:14:43 [ 37] [ 12] [507904424408] +23:14:43 [ 38] [ 6] [849296] +23:14:43 [ 39] [ 2] [00] +23:14:43 [ 41] [ 8] [03004100] +23:14:43 [ 49] [ 3] [418] +23:14:43 [ 52] [ 16] [2E57E1A1DB28CECB] +23:14:43 [ 54] [ 20] [1001418C000206402700] +23:14:43 ============================================================================ +23:14:43 Sending to : +23:14:43 ============================================================================ +23:14:43 + + +waiting on router queue for slot.... +23:14:45 ============================================================================ +23:14:45 Slot Id : <1> +23:14:45 Transaction Type : RESPONSE +23:14:45 Received From : +23:14:45 ============================================================================ +23:14:45 FNo. Len. Field Value +23:14:45 ============================================================================ +23:14:45 [ 1] [ 4] [0210] +23:14:45 [ 2] [ 16] [1808930600043376] +23:14:45 [ 3] [ 6] [011000] +23:14:45 [ 4] [ 12] [000050000000] +23:14:45 [ 6] [ 12] [000050000000] +23:14:45 [ 7] [ 10] [0320231433] +23:14:45 [ 11] [ 6] [849296] +23:14:45 [ 12] [ 6] [231433] +23:14:45 [ 13] [ 4] [0320] +23:14:45 [ 18] [ 4] [6011] +23:14:45 [ 19] [ 3] [418] +23:14:45 [ 22] [ 3] [021] +23:14:45 [ 32] [ 6] [621354] +23:14:45 [ 35] [ 27] [1808930600043376=1803500599] +23:14:45 [ 37] [ 12] [507904424408] +23:14:45 [ 38] [ 6] [849296] +23:14:45 [ 39] [ 2] [00] +23:14:45 [ 41] [ 8] [03004100] +23:14:45 [ 49] [ 3] [418] +23:14:45 [ 52] [ 16] [2E57E1A1DB28CECB] +23:14:45 [ 54] [ 20] [1001418C000206402700] +23:14:45 ============================================================================ +23:14:45 Calculate Source COMM Id = 0 +23:14:45 ============================================================================ +23:14:45 + + +waiting on router queue for slot.... +23:14:53 ============================================================================ +23:14:53 Slot Id : <485> +23:14:53 Transaction Type : REQUEST +23:14:53 Received From : +23:14:53 ============================================================================ +23:14:53 FNo. Len. Field Value +23:14:53 ============================================================================ +23:14:53 [ 1] [ 4] [0800] +23:14:53 [ 7] [ 10] [0320041401] +23:14:53 [ 11] [ 6] [158998] +23:14:53 [ 70] [ 3] [301] +23:14:53 ============================================================================ +23:14:53 + + +waiting on router queue for slot.... +23:14:53 Sending to : +23:14:53 ============================================================================ +23:14:53 ============================================================================ +23:14:53 Slot Id : <485> +23:14:53 Transaction Type : RESPONSE +23:14:53 Received From : +23:14:53 ============================================================================ +23:14:53 FNo. Len. Field Value +23:14:53 ============================================================================ +23:14:53 [ 1] [ 4] [0810] +23:14:53 [ 7] [ 10] [0320041401] +23:14:53 [ 11] [ 6] [158998] +23:14:53 [ 39] [ 2] [00] +23:14:53 [ 70] [ 3] [301] +23:14:53 ============================================================================ +23:14:53 Calculate Source COMM Id = 2 +23:14:53 ============================================================================ +23:14:53 + + +waiting on router queue for slot.... +23:14:55 ============================================================================ +23:14:55 Slot Id : <477> +23:14:55 Transaction Type : REQUEST +23:14:55 Received From : +23:14:55 ============================================================================ +23:14:55 FNo. Len. Field Value +23:14:55 ============================================================================ +23:14:55 [ 1] [ 4] [0800] +23:14:55 [ 7] [ 10] [0320162242] +23:14:55 [ 11] [ 6] [003461] +23:14:55 [ 37] [ 12] [57923003461] +23:14:55 [ 70] [ 3] [301] +23:14:55 ============================================================================ +23:14:55 + + +waiting on router queue for slot.... +23:14:55 Sending to : +23:14:55 ============================================================================ +23:14:55 ============================================================================ +23:14:55 Slot Id : <477> +23:14:55 Transaction Type : RESPONSE +23:14:55 Received From : +23:14:55 ============================================================================ +23:14:55 FNo. Len. Field Value +23:14:55 ============================================================================ +23:14:55 [ 1] [ 4] [0810] +23:14:55 [ 7] [ 10] [0320162242] +23:14:55 [ 11] [ 6] [003461] +23:14:55 [ 37] [ 12] [579230034610] +23:14:55 [ 39] [ 2] [00] +23:14:55 [ 70] [ 3] [810] +23:14:55 ============================================================================ +23:14:55 Calculate Source COMM Id = 1 +23:14:55 ============================================================================ +23:14:55 + + +waiting on router queue for slot.... +23:15:04 ============================================================================ +23:15:04 Slot Id : <14> +23:15:04 Transaction Type : REQUEST +23:15:04 Received From : +23:15:04 ============================================================================ +23:15:04 FNo. Len. Field Value +23:15:04 ============================================================================ +23:15:04 [ 1] [ 4] [0800] +23:15:04 [ 7] [ 10] [0320041412] +23:15:04 [ 11] [ 6] [158999] +23:15:04 [ 70] [ 3] [301] +23:15:04 ============================================================================ +23:15:04 + + +waiting on router queue for slot.... +23:15:04 Sending to : +23:15:04 ============================================================================ +23:15:04 ============================================================================ +23:15:04 Slot Id : <14> +23:15:04 Transaction Type : RESPONSE +23:15:04 Received From : +23:15:04 ============================================================================ +23:15:04 FNo. Len. Field Value +23:15:04 ============================================================================ +23:15:04 [ 1] [ 4] [0810] +23:15:04 [ 7] [ 10] [0320041412] +23:15:04 [ 11] [ 6] [158999] +23:15:04 [ 39] [ 2] [00] +23:15:04 [ 70] [ 3] [301] +23:15:04 ============================================================================ +23:15:04 Calculate Source COMM Id = 2 +23:15:04 ============================================================================ +23:15:04 + + +waiting on router queue for slot.... +23:15:17 ============================================================================ +23:15:17 Slot Id : <483> +23:15:17 Transaction Type : REQUEST +23:15:17 Received From : +23:15:17 ============================================================================ +23:15:17 FNo. Len. Field Value +23:15:17 ============================================================================ +23:15:17 [ 1] [ 4] [0800] +23:15:17 [ 7] [ 10] [0320041425] +23:15:17 [ 11] [ 6] [159000] +23:15:17 [ 70] [ 3] [301] +23:15:17 ============================================================================ +23:15:17 + + +waiting on router queue for slot.... +23:15:17 Sending to : +23:15:17 ============================================================================ +23:15:17 ============================================================================ +23:15:17 Slot Id : <483> +23:15:17 Transaction Type : RESPONSE +23:15:17 Received From : +23:15:17 ============================================================================ +23:15:17 FNo. Len. Field Value +23:15:17 ============================================================================ +23:15:17 [ 1] [ 4] [0810] +23:15:17 [ 7] [ 10] [0320041425] +23:15:17 [ 11] [ 6] [159000] +23:15:17 [ 39] [ 2] [00] +23:15:17 [ 70] [ 3] [301] +23:15:17 ============================================================================ +23:15:17 Calculate Source COMM Id = 2 +23:15:17 ============================================================================ +23:15:17 + + +waiting on router queue for slot.... +23:15:33 ============================================================================ +23:15:33 Slot Id : <474> +23:15:33 Transaction Type : REQUEST +23:15:33 Received From : +23:15:33 ============================================================================ +23:15:33 FNo. Len. Field Value +23:15:33 ============================================================================ +23:15:33 [ 1] [ 4] [0800] +23:15:33 [ 7] [ 10] [0320041441] +23:15:33 [ 11] [ 6] [159001] +23:15:33 [ 70] [ 3] [301] +23:15:33 ============================================================================ +23:15:33 + + +waiting on router queue for slot.... +23:15:33 Sending to : +23:15:33 ============================================================================ +23:15:33 ============================================================================ +23:15:33 Slot Id : <474> +23:15:33 Transaction Type : RESPONSE +23:15:33 Received From : +23:15:33 ============================================================================ +23:15:33 FNo. Len. Field Value +23:15:33 ============================================================================ +23:15:33 [ 1] [ 4] [0810] +23:15:33 [ 7] [ 10] [0320041441] +23:15:33 [ 11] [ 6] [159001] +23:15:33 [ 39] [ 2] [00] +23:15:33 [ 70] [ 3] [301] +23:15:33 ============================================================================ +23:15:33 Calculate Source COMM Id = 2 +23:15:33 ============================================================================ +23:15:33 + + +waiting on router queue for slot.... +23:15:37 ============================================================================ +23:15:37 Slot Id : <6> +23:15:37 Transaction Type : REQUEST +23:15:37 Received From : +23:15:37 ============================================================================ +23:15:37 FNo. Len. Field Value +23:15:37 ============================================================================ +23:15:37 [ 1] [ 4] [0800] +23:15:37 [ 7] [ 10] [0321062726] +23:15:37 [ 11] [ 6] [232726] +23:15:37 [ 37] [ 12] [57923232726] +23:15:37 [ 70] [ 3] [301] +23:15:37 ============================================================================ +23:15:37 + + +waiting on router queue for slot.... +23:15:37 Sending to : +23:15:37 ============================================================================ +23:15:37 ============================================================================ +23:15:37 Slot Id : <6> +23:15:37 Transaction Type : RESPONSE +23:15:37 Received From : +23:15:37 ============================================================================ +23:15:37 FNo. Len. Field Value +23:15:37 ============================================================================ +23:15:37 [ 1] [ 4] [0810] +23:15:37 [ 7] [ 10] [0321062726] +23:15:37 [ 11] [ 6] [232726] +23:15:37 [ 37] [ 12] [579232327260] +23:15:37 [ 39] [ 2] [00] +23:15:37 [ 70] [ 3] [810] +23:15:37 ============================================================================ +23:15:37 Calculate Source COMM Id = 6 +23:15:37 ============================================================================ +23:15:37 + + +waiting on router queue for slot.... +23:15:40 ============================================================================ +23:15:40 Slot Id : <472> +23:15:40 Transaction Type : REQUEST +23:15:40 Received From : +23:15:40 ============================================================================ +23:15:40 FNo. Len. Field Value +23:15:40 ============================================================================ +23:15:40 [ 1] [ 4] [0800] +23:15:40 [ 2] [ 5] [02531] +23:15:40 [ 3] [ 6] [579238] +23:15:40 [ 7] [ 10] [0320161540] +23:15:40 [ 11] [ 6] [807762] +23:15:40 [ 15] [ 10] [0320161540] +23:15:40 [ 37] [ 11] [57923807762] +23:15:40 [ 70] [ 3] [001] +23:15:40 ============================================================================ +23:15:40 + + +waiting on router queue for slot.... +23:15:40 ============================================================================ +23:15:40 Slot Id : <472> +23:15:40 Transaction Type : RESPONSE +23:15:40 Received From : +23:15:40 ============================================================================ +23:15:40 FNo. Len. Field Value +23:15:40 ============================================================================ +23:15:40 [ 1] [ 4] [0810] +23:15:40 [ 7] [ 10] [0320161540] +23:15:40 [ 11] [ 6] [807762] +23:15:40 [ 15] [ 4] [0320] +23:15:40 [ 37] [ 12] [57923807762] +23:15:40 [ 39] [ 2] [00] +23:15:40 [ 70] [ 3] [001] +23:15:40 ============================================================================ +23:15:40 Sending to : +23:15:40 ============================================================================ +23:15:40 + + +waiting on router queue for slot.... +23:15:49 ============================================================================ +23:15:49 Slot Id : <486> +23:15:49 Transaction Type : REQUEST +23:15:49 Received From : +23:15:49 ============================================================================ +23:15:49 FNo. Len. Field Value +23:15:49 ============================================================================ +23:15:49 [ 1] [ 4] [0800] +23:15:49 [ 7] [ 10] [0320041457] +23:15:49 [ 11] [ 6] [159002] +23:15:49 [ 70] [ 3] [301] +23:15:49 ============================================================================ +23:15:49 + + +waiting on router queue for slot.... +23:15:49 Sending to : +23:15:49 ============================================================================ +23:15:49 ============================================================================ +23:15:49 Slot Id : <486> +23:15:49 Transaction Type : RESPONSE +23:15:49 Received From : +23:15:49 ============================================================================ +23:15:49 FNo. Len. Field Value +23:15:49 ============================================================================ +23:15:49 [ 1] [ 4] [0810] +23:15:49 [ 7] [ 10] [0320041457] +23:15:49 [ 11] [ 6] [159002] +23:15:49 [ 39] [ 2] [00] +23:15:49 [ 70] [ 3] [301] +23:15:49 ============================================================================ +23:15:49 Calculate Source COMM Id = 2 +23:15:49 ============================================================================ +23:15:49 + + +waiting on router queue for slot.... +23:16:01 ============================================================================ +23:16:01 Slot Id : <492> +23:16:01 Transaction Type : REQUEST +23:16:01 Received From : +23:16:01 ============================================================================ +23:16:01 FNo. Len. Field Value +23:16:01 ============================================================================ +23:16:01 [ 1] [ 4] [0800] +23:16:01 [ 7] [ 10] [0320231549] +23:16:01 [ 11] [ 6] [058258] +23:16:01 [ 37] [ 12] [507923058258] +23:16:01 [ 70] [ 3] [ ] +23:16:01 ============================================================================ +23:16:01 + + +waiting on router queue for slot.... +23:16:01 Sending to : +23:16:01 ============================================================================ +23:16:01 ============================================================================ +23:16:01 Slot Id : <492> +23:16:01 Transaction Type : RESPONSE +23:16:01 Received From : +23:16:01 ============================================================================ +23:16:01 FNo. Len. Field Value +23:16:01 ============================================================================ +23:16:01 [ 1] [ 4] [0810] +23:16:01 [ 7] [ 10] [0320231549] +23:16:01 [ 11] [ 6] [058258] +23:16:01 [ 37] [ 12] [507923058258] +23:16:01 [ 39] [ 2] [91] +23:16:01 [ 70] [ 3] [ ] +23:16:01 ============================================================================ +23:16:01 Calculate Source COMM Id = 3 +23:16:01 ============================================================================ +23:16:01 + + +waiting on router queue for slot.... +23:16:04 ============================================================================ +23:16:04 Slot Id : <16> +23:16:04 Transaction Type : REQUEST +23:16:04 Received From : +23:16:04 ============================================================================ +23:16:04 FNo. Len. Field Value +23:16:04 ============================================================================ +23:16:04 [ 1] [ 4] [0800] +23:16:04 [ 7] [ 10] [0320041512] +23:16:04 [ 11] [ 6] [159003] +23:16:04 [ 70] [ 3] [301] +23:16:04 ============================================================================ +23:16:04 + + +waiting on router queue for slot.... +23:16:04 Sending to : +23:16:04 ============================================================================ +23:16:04 ============================================================================ +23:16:04 Slot Id : <16> +23:16:04 Transaction Type : RESPONSE +23:16:04 Received From : +23:16:04 ============================================================================ +23:16:04 FNo. Len. Field Value +23:16:04 ============================================================================ +23:16:04 [ 1] [ 4] [0810] +23:16:04 [ 7] [ 10] [0320041512] +23:16:04 [ 11] [ 6] [159003] +23:16:04 [ 39] [ 2] [00] +23:16:04 [ 70] [ 3] [301] +23:16:04 ============================================================================ +23:16:04 Calculate Source COMM Id = 2 +23:16:04 ============================================================================ +23:16:04 + + +waiting on router queue for slot.... +23:16:12 ============================================================================ +23:16:12 Slot Id : <13> +23:16:12 Transaction Type : REQUEST +23:16:12 Received From : +23:16:12 ============================================================================ +23:16:12 FNo. Len. Field Value +23:16:12 ============================================================================ +23:16:12 [ 1] [ 4] [0200] +23:16:12 [ 2] [ 16] [1808930600043376] +23:16:12 [ 3] [ 6] [301000] +23:16:12 [ 4] [ 12] [000000000000] +23:16:12 [ 7] [ 10] [0320231608] +23:16:12 [ 11] [ 6] [849330] +23:16:12 [ 12] [ 6] [231608] +23:16:12 [ 13] [ 4] [0320] +23:16:12 [ 15] [ 4] [0320] +23:16:12 [ 18] [ 4] [6011] +23:16:12 [ 22] [ 3] [900] +23:16:12 [ 25] [ 2] [02] +23:16:12 [ 28] [ 9] [D00000000] +23:16:12 [ 32] [ 6] [621354] +23:16:12 [ 35] [ 27] [1808930600043376=1803500599] +23:16:12 [ 37] [ 12] [507904424409] +23:16:12 [ 41] [ 8] [03004100] +23:16:12 [ 42] [ 15] [NATIVE ] +23:16:12 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +23:16:12 [ 49] [ 3] [418] +23:16:12 [ 52] [ 16] [E7905F8F3FB6259D] +23:16:12 ============================================================================ +23:16:12 + + +waiting on router queue for slot.... +23:16:12 Sending to : +23:16:12 ============================================================================ +23:16:12 Sending to : +23:16:12 ============================================================================ +23:16:12 ============================================================================ +23:16:12 Slot Id : <13> +23:16:12 Transaction Type : REQUEST +23:16:12 Received From : +23:16:12 ============================================================================ +23:16:12 FNo. Len. Field Value +23:16:12 ============================================================================ +23:16:12 [ 1] [ 4] [0200] +23:16:12 [ 2] [ 16] [1808930600043376] +23:16:12 [ 3] [ 6] [301000] +23:16:12 [ 4] [ 12] [000000000000] +23:16:12 [ 7] [ 10] [0320231608] +23:16:12 [ 11] [ 6] [849330] +23:16:12 [ 12] [ 6] [231608] +23:16:12 [ 13] [ 4] [0320] +23:16:12 [ 15] [ 4] [0320] +23:16:12 [ 18] [ 4] [6011] +23:16:12 [ 22] [ 3] [900] +23:16:12 [ 25] [ 2] [02] +23:16:12 [ 28] [ 9] [D00000000] +23:16:12 [ 32] [ 6] [621354] +23:16:12 [ 35] [ 27] [1808930600043376=1803500599] +23:16:12 [ 37] [ 12] [507904424409] +23:16:12 [ 41] [ 8] [03004100] +23:16:12 [ 42] [ 15] [NATIVE ] +23:16:12 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +23:16:12 [ 49] [ 3] [418] +23:16:12 [ 52] [ 16] [E7905F8F3FB6259D] +23:16:12 ============================================================================ +23:16:12 + + +waiting on router queue for slot.... +23:16:12 Sending to : +23:16:12 ============================================================================ +23:16:12 ============================================================================ +23:16:12 Slot Id : <13> +23:16:12 Transaction Type : REQUEST +23:16:12 Received From : +23:16:12 ============================================================================ +23:16:12 FNo. Len. Field Value +23:16:12 ============================================================================ +23:16:12 [ 1] [ 4] [0200] +23:16:12 [ 2] [ 16] [1808930600043376] +23:16:12 [ 3] [ 6] [301000] +23:16:12 [ 4] [ 12] [000000000000] +23:16:12 [ 7] [ 10] [0320231608] +23:16:12 [ 11] [ 6] [849330] +23:16:12 [ 12] [ 6] [231608] +23:16:12 [ 13] [ 4] [0320] +23:16:12 [ 15] [ 4] [0320] +23:16:12 [ 18] [ 4] [6011] +23:16:12 [ 22] [ 3] [900] +23:16:12 [ 25] [ 2] [02] +23:16:12 [ 28] [ 9] [D00000000] +23:16:12 [ 32] [ 6] [621354] +23:16:12 [ 35] [ 27] [1808930600043376=1803500599] +23:16:12 [ 37] [ 12] [507904424409] +23:16:12 [ 41] [ 8] [03004100] +23:16:12 [ 42] [ 15] [NATIVE ] +23:16:12 [ 43] [ 40] [Vilabouly Unit Vilabouly LAO] +23:16:12 [ 49] [ 3] [418] +23:16:12 [ 52] [ 16] [2E57E1A1DB28CECB] +23:16:12 ============================================================================ +23:16:12 + + +waiting on router queue for slot.... +23:16:12 Sending to : <2> +23:16:12 ============================================================================ +23:16:15 ============================================================================ +23:16:15 Slot Id : <13> +23:16:15 Transaction Type : RESPONSE +23:16:15 Received From : +23:16:15 ============================================================================ +23:16:15 FNo. Len. Field Value +23:16:15 ============================================================================ +23:16:15 [ 1] [ 4] [0210] +23:16:15 [ 2] [ 16] [1808930600043376] +23:16:15 [ 3] [ 6] [301000] +23:16:15 [ 7] [ 10] [0320231608] +23:16:15 [ 11] [ 6] [849330] +23:16:15 [ 12] [ 6] [231608] +23:16:15 [ 13] [ 4] [0320] +23:16:15 [ 14] [ 4] [1803] +23:16:15 [ 19] [ 3] [418] +23:16:15 [ 32] [ 6] [621354] +23:16:15 [ 37] [ 12] [507904424409] +23:16:15 [ 38] [ 6] [849330] +23:16:15 [ 39] [ 2] [00] +23:16:15 [ 41] [ 8] [03004100] +23:16:15 [ 49] [ 3] [418] +23:16:15 [ 52] [ 16] [2E57E1A1DB28CECB] +23:16:15 [ 54] [ 20] [1002418C000206402700] +23:16:15 ============================================================================ +23:16:15 Sending to : +23:16:15 ============================================================================ +23:16:15 + + +waiting on router queue for slot.... +23:16:17 ============================================================================ +23:16:17 Slot Id : <13> +23:16:17 Transaction Type : RESPONSE +23:16:17 Received From : +23:16:17 ============================================================================ +23:16:17 FNo. Len. Field Value +23:16:17 ============================================================================ +23:16:17 [ 1] [ 4] [0210] +23:16:17 [ 2] [ 16] [1808930600043376] +23:16:17 [ 3] [ 6] [301000] +23:16:17 [ 7] [ 10] [0320231608] +23:16:17 [ 11] [ 6] [849330] +23:16:17 [ 12] [ 6] [231608] +23:16:17 [ 13] [ 4] [0320] +23:16:17 [ 14] [ 4] [1803] +23:16:17 [ 19] [ 3] [418] +23:16:17 [ 32] [ 6] [621354] +23:16:17 [ 37] [ 12] [507904424409] +23:16:17 [ 38] [ 6] [849330] +23:16:17 [ 39] [ 2] [00] +23:16:17 [ 41] [ 8] [03004100] +23:16:17 [ 49] [ 3] [418] +23:16:17 [ 52] [ 16] [2E57E1A1DB28CECB] +23:16:17 [ 54] [ 20] [1002418C000206402700] +23:16:17 ============================================================================ +23:16:17 Calculate Source COMM Id = 0 +23:16:17 ============================================================================ +23:16:17 + + +waiting on router queue for slot.... +23:16:21 ============================================================================ +23:16:21 Slot Id : <454> +23:16:21 Transaction Type : REQUEST +23:16:21 Received From : +23:16:21 ============================================================================ +23:16:21 FNo. Len. Field Value +23:16:21 ============================================================================ +23:16:21 [ 1] [ 4] [0800] +23:16:21 [ 7] [ 10] [0320161412] +23:16:21 [ 11] [ 6] [043794] +23:16:21 [ 37] [ 12] [57923043794] +23:16:21 [ 70] [ 3] [301] +23:16:21 ============================================================================ +23:16:21 + + +waiting on router queue for slot.... +23:16:21 Sending to : +23:16:21 ============================================================================ +23:16:21 ============================================================================ +23:16:21 Slot Id : <454> +23:16:21 Transaction Type : RESPONSE +23:16:21 Received From : +23:16:21 ============================================================================ +23:16:21 FNo. Len. Field Value +23:16:21 ============================================================================ +23:16:21 [ 1] [ 4] [0810] +23:16:21 [ 7] [ 10] [0320161412] +23:16:21 [ 11] [ 6] [043794] +23:16:21 [ 37] [ 12] [579230437940] +23:16:21 [ 39] [ 2] [00] +23:16:21 [ 70] [ 3] [810] +23:16:21 ============================================================================ +23:16:21 Calculate Source COMM Id = 4 +23:16:21 ============================================================================ +23:16:21 + + +waiting on router queue for slot.... +23:16:26 ============================================================================ +23:16:26 Slot Id : <469> +23:16:26 Transaction Type : REQUEST +23:16:26 Received From : +23:16:26 ============================================================================ +23:16:26 FNo. Len. Field Value +23:16:26 ============================================================================ +23:16:26 [ 1] [ 4] [0800] +23:16:26 [ 7] [ 10] [0320041534] +23:16:26 [ 11] [ 6] [159004] +23:16:26 [ 70] [ 3] [301] +23:16:26 ============================================================================ +23:16:26 + + +waiting on router queue for slot.... +23:16:26 Sending to : +23:16:26 ============================================================================ +23:16:26 ============================================================================ +23:16:26 Slot Id : <469> +23:16:26 Transaction Type : RESPONSE +23:16:26 Received From : +23:16:26 ============================================================================ +23:16:26 FNo. Len. Field Value +23:16:26 ============================================================================ +23:16:26 [ 1] [ 4] [0810] +23:16:26 [ 7] [ 10] [0320041534] +23:16:26 [ 11] [ 6] [159004] +23:16:26 [ 39] [ 2] [00] +23:16:26 [ 70] [ 3] [301] +23:16:26 ============================================================================ +23:16:26 Calculate Source COMM Id = 2 +23:16:26 ============================================================================ +23:16:26 + + +waiting on router queue for slot.... +23:16:38 ============================================================================ +23:16:38 Slot Id : <12> +23:16:38 Transaction Type : REQUEST +23:16:38 Received From : +23:16:38 ============================================================================ +23:16:38 FNo. Len. Field Value +23:16:38 ============================================================================ +23:16:38 [ 1] [ 4] [0800] +23:16:38 [ 7] [ 10] [0320041546] +23:16:38 [ 11] [ 6] [159005] +23:16:38 [ 70] [ 3] [301] +23:16:38 ============================================================================ +23:16:38 + + +waiting on router queue for slot.... +23:16:38 Sending to : +23:16:38 ============================================================================ +23:16:38 ============================================================================ +23:16:38 Slot Id : <12> +23:16:38 Transaction Type : RESPONSE +23:16:38 Received From : +23:16:38 ============================================================================ +23:16:38 FNo. Len. Field Value +23:16:38 ============================================================================ +23:16:38 [ 1] [ 4] [0810] +23:16:38 [ 7] [ 10] [0320041546] +23:16:38 [ 11] [ 6] [159005] +23:16:38 [ 39] [ 2] [00] +23:16:38 [ 70] [ 3] [301] +23:16:38 ============================================================================ +23:16:38 Calculate Source COMM Id = 2 +23:16:38 ============================================================================ +23:16:38 + + +waiting on router queue for slot.... +23:16:42 ============================================================================ +23:16:42 Slot Id : <494> +23:16:42 Transaction Type : REQUEST +23:16:42 Received From : +23:16:42 ============================================================================ +23:16:42 FNo. Len. Field Value +23:16:42 ============================================================================ +23:16:42 [ 1] [ 4] [0800] +23:16:42 [ 2] [ 5] [02531] +23:16:42 [ 3] [ 6] [579238] +23:16:42 [ 7] [ 10] [0320161642] +23:16:42 [ 11] [ 6] [807763] +23:16:42 [ 15] [ 10] [0320161642] +23:16:42 [ 37] [ 11] [57923807763] +23:16:42 [ 70] [ 3] [001] +23:16:42 ============================================================================ +23:16:42 + + +waiting on router queue for slot.... +23:16:42 ============================================================================ +23:16:42 Slot Id : <494> +23:16:42 Transaction Type : RESPONSE +23:16:42 Received From : +23:16:42 ============================================================================ +23:16:42 FNo. Len. Field Value +23:16:42 ============================================================================ +23:16:42 [ 1] [ 4] [0810] +23:16:42 [ 7] [ 10] [0320161642] +23:16:42 [ 11] [ 6] [807763] +23:16:42 [ 15] [ 4] [0320] +23:16:42 [ 37] [ 12] [57923807763] +23:16:42 [ 39] [ 2] [00] +23:16:42 [ 70] [ 3] [001] +23:16:42 ============================================================================ +23:16:42 Sending to : +23:16:42 ============================================================================ +23:16:42 + + +waiting on router queue for slot.... +23:16:42 ============================================================================ +23:16:42 Slot Id : <491> +23:16:42 Transaction Type : REQUEST +23:16:42 Received From : +23:16:42 ============================================================================ +23:16:42 FNo. Len. Field Value +23:16:42 ============================================================================ +23:16:42 [ 1] [ 4] [0800] +23:16:42 [ 7] [ 10] [0321062831] +23:16:42 [ 11] [ 6] [232831] +23:16:42 [ 37] [ 12] [57923232831] +23:16:42 [ 70] [ 3] [301] +23:16:42 ============================================================================ +23:16:42 + + +waiting on router queue for slot.... +23:16:42 Sending to : +23:16:42 ============================================================================ +23:16:42 ============================================================================ +23:16:42 Slot Id : <491> +23:16:42 Transaction Type : RESPONSE +23:16:42 Received From : +23:16:42 ============================================================================ +23:16:42 FNo. Len. Field Value +23:16:42 ============================================================================ +23:16:42 [ 1] [ 4] [0810] +23:16:42 [ 7] [ 10] [0321062831] +23:16:42 [ 11] [ 6] [232831] +23:16:42 [ 37] [ 12] [579232328310] +23:16:42 [ 39] [ 2] [00] +23:16:42 [ 70] [ 3] [810] +23:16:42 ============================================================================ +23:16:42 Calculate Source COMM Id = 6 +23:16:42 ============================================================================ +23:16:42 + + +waiting on router queue for slot.... +23:16:49 ============================================================================ +23:16:49 Slot Id : <22> +23:16:49 Transaction Type : REQUEST +23:16:49 Received From : +23:16:49 ============================================================================ +23:16:49 FNo. Len. Field Value +23:16:49 ============================================================================ +23:16:49 [ 1] [ 4] [0800] +23:16:49 [ 7] [ 10] [0320041557] +23:16:49 [ 11] [ 6] [159006] +23:16:49 [ 70] [ 3] [301] +23:16:49 ============================================================================ +23:16:49 + + +waiting on router queue for slot.... +23:16:49 Sending to : +23:16:49 ============================================================================ +23:16:49 ============================================================================ +23:16:49 Slot Id : <22> +23:16:49 Transaction Type : RESPONSE +23:16:49 Received From : +23:16:49 ============================================================================ +23:16:49 FNo. Len. Field Value +23:16:49 ============================================================================ +23:16:49 [ 1] [ 4] [0810] +23:16:49 [ 7] [ 10] [0320041557] +23:16:49 [ 11] [ 6] [159006] +23:16:49 [ 39] [ 2] [00] +23:16:49 [ 70] [ 3] [301] +23:16:49 ============================================================================ +23:16:49 Calculate Source COMM Id = 2 +23:16:49 ============================================================================ +23:16:49 + + +waiting on router queue for slot.... +23:16:59 ============================================================================ +23:16:59 Slot Id : <17> +23:16:59 Transaction Type : REQUEST +23:16:59 Received From : +23:16:59 ============================================================================ +23:16:59 FNo. Len. Field Value +23:16:59 ============================================================================ +23:16:59 [ 1] [ 4] [0800] +23:16:59 [ 7] [ 10] [0320041607] +23:16:59 [ 11] [ 6] [159007] +23:16:59 [ 70] [ 3] [301] +23:16:59 ============================================================================ +23:16:59 + + +waiting on router queue for slot.... +23:16:59 Sending to : +23:16:59 ============================================================================ +23:16:59 ============================================================================ +23:16:59 Slot Id : <17> +23:16:59 Transaction Type : RESPONSE +23:16:59 Received From : +23:16:59 ============================================================================ +23:16:59 FNo. Len. Field Value +23:16:59 ============================================================================ +23:16:59 [ 1] [ 4] [0810] +23:16:59 [ 7] [ 10] [0320041607] +23:16:59 [ 11] [ 6] [159007] +23:16:59 [ 39] [ 2] [00] +23:16:59 [ 70] [ 3] [301] +23:16:59 ============================================================================ +23:16:59 Calculate Source COMM Id = 2 +23:16:59 ============================================================================ +23:16:59 + + +waiting on router queue for slot.... +23:17:10 ============================================================================ +23:17:10 Slot Id : <29> +23:17:10 Transaction Type : REQUEST +23:17:10 Received From : +23:17:10 ============================================================================ +23:17:10 FNo. Len. Field Value +23:17:10 ============================================================================ +23:17:10 [ 1] [ 4] [0800] +23:17:10 [ 7] [ 10] [0320041618] +23:17:10 [ 11] [ 6] [159008] +23:17:10 [ 70] [ 3] [301] +23:17:10 ============================================================================ +23:17:10 + + +waiting on router queue for slot.... +23:17:10 Sending to : +23:17:10 ============================================================================ +23:17:10 ============================================================================ +23:17:10 Slot Id : <29> +23:17:10 Transaction Type : RESPONSE +23:17:10 Received From : +23:17:10 ============================================================================ +23:17:10 FNo. Len. Field Value +23:17:10 ============================================================================ +23:17:10 [ 1] [ 4] [0810] +23:17:10 [ 7] [ 10] [0320041618] +23:17:10 [ 11] [ 6] [159008] +23:17:10 [ 39] [ 2] [00] +23:17:10 [ 70] [ 3] [301] +23:17:10 ============================================================================ +23:17:10 Calculate Source COMM Id = 2 +23:17:10 ============================================================================ +23:17:10 + + +waiting on router queue for slot.... +23:17:25 ============================================================================ +23:17:25 Slot Id : <10> +23:17:25 Transaction Type : REQUEST +23:17:25 Received From : +23:17:25 ============================================================================ +23:17:25 FNo. Len. Field Value +23:17:25 ============================================================================ +23:17:25 [ 1] [ 4] [0800] +23:17:25 [ 7] [ 10] [0320041634] +23:17:25 [ 11] [ 6] [159009] +23:17:25 [ 70] [ 3] [301] +23:17:25 ============================================================================ +23:17:25 + + +waiting on router queue for slot.... +23:17:25 Sending to : +23:17:25 ============================================================================ +23:17:25 ============================================================================ +23:17:25 Slot Id : <10> +23:17:25 Transaction Type : RESPONSE +23:17:25 Received From : +23:17:25 ============================================================================ +23:17:25 FNo. Len. Field Value +23:17:25 ============================================================================ +23:17:25 [ 1] [ 4] [0810] +23:17:25 [ 7] [ 10] [0320041634] +23:17:25 [ 11] [ 6] [159009] +23:17:25 [ 39] [ 2] [00] +23:17:25 [ 70] [ 3] [301] +23:17:25 ============================================================================ +23:17:25 Calculate Source COMM Id = 2 +23:17:25 ============================================================================ +23:17:25 + + +waiting on router queue for slot.... +23:17:36 ============================================================================ +23:17:36 Slot Id : <23> +23:17:36 Transaction Type : REQUEST +23:17:36 Received From : +23:17:36 ============================================================================ +23:17:36 FNo. Len. Field Value +23:17:36 ============================================================================ +23:17:36 [ 1] [ 4] [0800] +23:17:36 [ 7] [ 10] [0320041644] +23:17:36 [ 11] [ 6] [159010] +23:17:36 [ 70] [ 3] [301] +23:17:36 ============================================================================ +23:17:36 + + +waiting on router queue for slot.... +23:17:36 Sending to : +23:17:36 ============================================================================ +23:17:36 ============================================================================ +23:17:36 Slot Id : <23> +23:17:36 Transaction Type : RESPONSE +23:17:36 Received From : +23:17:36 ============================================================================ +23:17:36 FNo. Len. Field Value +23:17:36 ============================================================================ +23:17:36 [ 1] [ 4] [0810] +23:17:36 [ 7] [ 10] [0320041644] +23:17:36 [ 11] [ 6] [159010] +23:17:36 [ 39] [ 2] [00] +23:17:36 [ 70] [ 3] [301] +23:17:36 ============================================================================ +23:17:36 Calculate Source COMM Id = 2 +23:17:36 ============================================================================ +23:17:36 + + +waiting on router queue for slot.... +23:17:44 ============================================================================ +23:17:44 Slot Id : <499> +23:17:44 Transaction Type : REQUEST +23:17:44 Received From : +23:17:44 ============================================================================ +23:17:44 FNo. Len. Field Value +23:17:44 ============================================================================ +23:17:44 [ 1] [ 4] [0800] +23:17:44 [ 2] [ 5] [02531] +23:17:44 [ 3] [ 6] [579238] +23:17:44 [ 7] [ 10] [0320161744] +23:17:44 [ 11] [ 6] [807764] +23:17:44 [ 15] [ 10] [0320161744] +23:17:44 [ 37] [ 11] [57923807764] +23:17:44 [ 70] [ 3] [001] +23:17:44 ============================================================================ +23:17:44 + + +waiting on router queue for slot.... +23:17:44 ============================================================================ +23:17:44 Slot Id : <499> +23:17:44 Transaction Type : RESPONSE +23:17:44 Received From : +23:17:44 ============================================================================ +23:17:44 FNo. Len. Field Value +23:17:44 ============================================================================ +23:17:44 [ 1] [ 4] [0810] +23:17:44 [ 7] [ 10] [0320161744] +23:17:44 [ 11] [ 6] [807764] +23:17:44 [ 15] [ 4] [0320] +23:17:44 [ 37] [ 12] [57923807764] +23:17:44 [ 39] [ 2] [00] +23:17:44 [ 70] [ 3] [001] +23:17:44 ============================================================================ +23:17:44 Sending to : +23:17:44 ============================================================================ +23:17:44 + + +waiting on router queue for slot.... +23:17:47 ============================================================================ +23:17:47 Slot Id : <481> +23:17:47 Transaction Type : REQUEST +23:17:47 Received From : +23:17:47 ============================================================================ +23:17:47 FNo. Len. Field Value +23:17:47 ============================================================================ +23:17:47 [ 1] [ 4] [0800] +23:17:47 [ 7] [ 10] [0321062936] +23:17:47 [ 11] [ 6] [232936] +23:17:47 [ 37] [ 12] [57923232936] +23:17:47 [ 70] [ 3] [301] +23:17:47 ============================================================================ +23:17:47 + + +waiting on router queue for slot.... +23:17:47 Sending to : +23:17:47 ============================================================================ +23:17:47 ============================================================================ +23:17:47 Slot Id : <481> +23:17:47 Transaction Type : RESPONSE +23:17:47 Received From : +23:17:47 ============================================================================ +23:17:47 FNo. Len. Field Value +23:17:47 ============================================================================ +23:17:47 [ 1] [ 4] [0810] +23:17:47 [ 7] [ 10] [0321062936] +23:17:47 [ 11] [ 6] [232936] +23:17:47 [ 37] [ 12] [579232329360] +23:17:47 [ 39] [ 2] [00] +23:17:47 [ 70] [ 3] [810] +23:17:47 ============================================================================ +23:17:47 Calculate Source COMM Id = 6 +23:17:47 ============================================================================ +23:17:47 + + +waiting on router queue for slot.... +23:17:47 ============================================================================ +23:17:47 Slot Id : <31> +23:17:47 Transaction Type : REQUEST +23:17:47 Received From : +23:17:47 ============================================================================ +23:17:47 FNo. Len. Field Value +23:17:47 ============================================================================ +23:17:47 [ 1] [ 4] [0800] +23:17:47 [ 7] [ 10] [0320041655] +23:17:47 [ 11] [ 6] [159011] +23:17:47 [ 70] [ 3] [301] +23:17:47 ============================================================================ +23:17:47 + + +waiting on router queue for slot.... +23:17:47 Sending to : +23:17:47 ============================================================================ +23:17:47 ============================================================================ +23:17:47 Slot Id : <31> +23:17:47 Transaction Type : RESPONSE +23:17:47 Received From : +23:17:47 ============================================================================ +23:17:47 FNo. Len. Field Value +23:17:47 ============================================================================ +23:17:47 [ 1] [ 4] [0810] +23:17:47 [ 7] [ 10] [0320041655] +23:17:47 [ 11] [ 6] [159011] +23:17:47 [ 39] [ 2] [00] +23:17:47 [ 70] [ 3] [301] +23:17:47 ============================================================================ +23:17:47 Calculate Source COMM Id = 2 +23:17:47 ============================================================================ +23:17:47 + + +waiting on router queue for slot.... +23:17:58 ============================================================================ +23:17:58 Slot Id : <35> +23:17:58 Transaction Type : REQUEST +23:17:58 Received From : +23:17:58 ============================================================================ +23:17:58 FNo. Len. Field Value +23:17:58 ============================================================================ +23:17:58 [ 1] [ 4] [0800] +23:17:58 [ 7] [ 10] [0320041706] +23:17:58 [ 11] [ 6] [159012] +23:17:58 [ 70] [ 3] [301] +23:17:58 ============================================================================ +23:17:58 + + +waiting on router queue for slot.... +23:17:58 Sending to : +23:17:58 ============================================================================ +23:17:58 ============================================================================ +23:17:58 Slot Id : <35> +23:17:58 Transaction Type : RESPONSE +23:17:58 Received From : +23:17:58 ============================================================================ +23:17:58 FNo. Len. Field Value +23:17:58 ============================================================================ +23:17:58 [ 1] [ 4] [0810] +23:17:58 [ 7] [ 10] [0320041706] +23:17:58 [ 11] [ 6] [159012] +23:17:58 [ 39] [ 2] [00] +23:17:58 [ 70] [ 3] [301] +23:17:58 ============================================================================ +23:17:58 Calculate Source COMM Id = 2 +23:17:58 ============================================================================ +23:17:58 + + +waiting on router queue for slot.... +23:18:09 ============================================================================ +23:18:09 Slot Id : <3> +23:18:09 Transaction Type : REQUEST +23:18:09 Received From : +23:18:09 ============================================================================ +23:18:09 FNo. Len. Field Value +23:18:09 ============================================================================ +23:18:09 [ 1] [ 4] [0800] +23:18:09 [ 7] [ 10] [0320041717] +23:18:09 [ 11] [ 6] [159013] +23:18:09 [ 70] [ 3] [301] +23:18:09 ============================================================================ +23:18:09 + + +waiting on router queue for slot.... +23:18:09 Sending to : +23:18:09 ============================================================================ +23:18:09 ============================================================================ +23:18:09 Slot Id : <3> +23:18:09 Transaction Type : RESPONSE +23:18:09 Received From : +23:18:09 ============================================================================ +23:18:09 FNo. Len. Field Value +23:18:09 ============================================================================ +23:18:09 [ 1] [ 4] [0810] +23:18:09 [ 7] [ 10] [0320041717] +23:18:09 [ 11] [ 6] [159013] +23:18:09 [ 39] [ 2] [00] +23:18:09 [ 70] [ 3] [301] +23:18:09 ============================================================================ +23:18:09 Calculate Source COMM Id = 2 +23:18:09 ============================================================================ +23:18:09 + + +waiting on router queue for slot.... +23:18:24 ============================================================================ +23:18:24 Slot Id : <33> +23:18:24 Transaction Type : REQUEST +23:18:24 Received From : +23:18:24 ============================================================================ +23:18:24 FNo. Len. Field Value +23:18:24 ============================================================================ +23:18:24 [ 1] [ 4] [0800] +23:18:24 [ 7] [ 10] [0320041732] +23:18:24 [ 11] [ 6] [159014] +23:18:24 [ 70] [ 3] [301] +23:18:24 ============================================================================ +23:18:24 + + +waiting on router queue for slot.... +23:18:24 Sending to : +23:18:24 ============================================================================ +23:18:24 ============================================================================ +23:18:24 Slot Id : <33> +23:18:24 Transaction Type : RESPONSE +23:18:24 Received From : +23:18:24 ============================================================================ +23:18:24 FNo. Len. Field Value +23:18:24 ============================================================================ +23:18:24 [ 1] [ 4] [0810] +23:18:24 [ 7] [ 10] [0320041732] +23:18:24 [ 11] [ 6] [159014] +23:18:24 [ 39] [ 2] [00] +23:18:24 [ 70] [ 3] [301] +23:18:24 ============================================================================ +23:18:24 Calculate Source COMM Id = 2 +23:18:24 ============================================================================ +23:18:24 + + +waiting on router queue for slot.... +23:18:35 ============================================================================ +23:18:35 Slot Id : <21> +23:18:35 Transaction Type : REQUEST +23:18:35 Received From : +23:18:35 ============================================================================ +23:18:35 FNo. Len. Field Value +23:18:35 ============================================================================ +23:18:35 [ 1] [ 4] [0800] +23:18:35 [ 7] [ 10] [0320041743] +23:18:35 [ 11] [ 6] [159015] +23:18:35 [ 70] [ 3] [301] +23:18:35 ============================================================================ +23:18:35 + + +waiting on router queue for slot.... +23:18:35 Sending to : +23:18:35 ============================================================================ +23:18:35 ============================================================================ +23:18:35 Slot Id : <21> +23:18:35 Transaction Type : RESPONSE +23:18:35 Received From : +23:18:35 ============================================================================ +23:18:35 FNo. Len. Field Value +23:18:35 ============================================================================ +23:18:35 [ 1] [ 4] [0810] +23:18:35 [ 7] [ 10] [0320041743] +23:18:35 [ 11] [ 6] [159015] +23:18:35 [ 39] [ 2] [00] +23:18:35 [ 70] [ 3] [301] +23:18:35 ============================================================================ +23:18:35 Calculate Source COMM Id = 2 +23:18:35 ============================================================================ +23:18:35 + + +waiting on router queue for slot.... +23:18:46 ============================================================================ +23:18:46 Slot Id : <496> +23:18:46 Transaction Type : REQUEST +23:18:46 Received From : +23:18:46 ============================================================================ +23:18:46 FNo. Len. Field Value +23:18:46 ============================================================================ +23:18:46 [ 1] [ 4] [0800] +23:18:46 [ 2] [ 5] [02531] +23:18:46 [ 3] [ 6] [579238] +23:18:46 [ 7] [ 10] [0320161846] +23:18:46 [ 11] [ 6] [807765] +23:18:46 [ 15] [ 10] [0320161846] +23:18:46 [ 37] [ 11] [57923807765] +23:18:46 [ 70] [ 3] [001] +23:18:46 ============================================================================ +23:18:46 + + +waiting on router queue for slot.... +23:18:46 ============================================================================ +23:18:46 Slot Id : <496> +23:18:46 Transaction Type : RESPONSE +23:18:46 Received From : +23:18:46 ============================================================================ +23:18:46 FNo. Len. Field Value +23:18:46 ============================================================================ +23:18:46 [ 1] [ 4] [0810] +23:18:46 [ 7] [ 10] [0320161846] +23:18:46 [ 11] [ 6] [807765] +23:18:46 [ 15] [ 4] [0320] +23:18:46 [ 37] [ 12] [57923807765] +23:18:46 [ 39] [ 2] [00] +23:18:46 [ 70] [ 3] [001] +23:18:46 ============================================================================ +23:18:46 Sending to : +23:18:46 ============================================================================ +23:18:46 + + +waiting on router queue for slot.... +23:18:50 ============================================================================ +23:18:50 Slot Id : <9> +23:18:50 Transaction Type : REQUEST +23:18:50 Received From : +23:18:50 ============================================================================ +23:18:50 FNo. Len. Field Value +23:18:50 ============================================================================ +23:18:50 [ 1] [ 4] [0800] +23:18:50 [ 7] [ 10] [0320041758] +23:18:50 [ 11] [ 6] [159016] +23:18:50 [ 70] [ 3] [301] +23:18:50 ============================================================================ +23:18:50 + + +waiting on router queue for slot.... +23:18:50 Sending to : +23:18:50 ============================================================================ +23:18:50 ============================================================================ +23:18:50 Slot Id : <9> +23:18:50 Transaction Type : RESPONSE +23:18:50 Received From : +23:18:50 ============================================================================ +23:18:50 FNo. Len. Field Value +23:18:50 ============================================================================ +23:18:50 [ 1] [ 4] [0810] +23:18:50 [ 7] [ 10] [0320041758] +23:18:50 [ 11] [ 6] [159016] +23:18:50 [ 39] [ 2] [00] +23:18:50 [ 70] [ 3] [301] +23:18:50 ============================================================================ +23:18:50 Calculate Source COMM Id = 2 +23:18:50 ============================================================================ +23:18:50 + + +waiting on router queue for slot.... +23:18:52 ============================================================================ +23:18:52 Slot Id : <30> +23:18:52 Transaction Type : REQUEST +23:18:52 Received From : +23:18:52 ============================================================================ +23:18:52 FNo. Len. Field Value +23:18:52 ============================================================================ +23:18:52 [ 1] [ 4] [0800] +23:18:52 [ 7] [ 10] [0321063041] +23:18:52 [ 11] [ 6] [233041] +23:18:52 [ 37] [ 12] [57923233041] +23:18:52 [ 70] [ 3] [301] +23:18:52 ============================================================================ +23:18:52 + + +waiting on router queue for slot.... +23:18:52 Sending to : +23:18:52 ============================================================================ +23:18:52 ============================================================================ +23:18:52 Slot Id : <30> +23:18:52 Transaction Type : RESPONSE +23:18:52 Received From : +23:18:52 ============================================================================ +23:18:52 FNo. Len. Field Value +23:18:52 ============================================================================ +23:18:52 [ 1] [ 4] [0810] +23:18:52 [ 7] [ 10] [0321063041] +23:18:52 [ 11] [ 6] [233041] +23:18:52 [ 37] [ 12] [579232330410] +23:18:52 [ 39] [ 2] [00] +23:18:52 [ 70] [ 3] [810] +23:18:52 ============================================================================ +23:18:52 Calculate Source COMM Id = 6 +23:18:52 ============================================================================ +23:18:52 + + +waiting on router queue for slot.... +23:19:05 ============================================================================ +23:19:05 Slot Id : <11> +23:19:05 Transaction Type : REQUEST +23:19:05 Received From : +23:19:05 ============================================================================ +23:19:05 FNo. Len. Field Value +23:19:05 ============================================================================ +23:19:05 [ 1] [ 4] [0800] +23:19:05 [ 7] [ 10] [0320041813] +23:19:05 [ 11] [ 6] [159017] +23:19:05 [ 70] [ 3] [301] +23:19:05 ============================================================================ +23:19:05 + + +waiting on router queue for slot.... +23:19:05 Sending to : +23:19:05 ============================================================================ +23:19:05 ============================================================================ +23:19:05 Slot Id : <11> +23:19:05 Transaction Type : RESPONSE +23:19:05 Received From : +23:19:05 ============================================================================ +23:19:05 FNo. Len. Field Value +23:19:05 ============================================================================ +23:19:05 [ 1] [ 4] [0810] +23:19:05 [ 7] [ 10] [0320041813] +23:19:05 [ 11] [ 6] [159017] +23:19:05 [ 39] [ 2] [00] +23:19:05 [ 70] [ 3] [301] +23:19:05 ============================================================================ +23:19:05 Calculate Source COMM Id = 2 +23:19:05 ============================================================================ +23:19:05 + + +waiting on router queue for slot.... +23:19:17 ============================================================================ +23:19:17 Slot Id : <461> +23:19:17 Transaction Type : REQUEST +23:19:17 Received From : +23:19:17 ============================================================================ +23:19:17 FNo. Len. Field Value +23:19:17 ============================================================================ +23:19:17 [ 1] [ 4] [0800] +23:19:17 [ 7] [ 10] [0320041825] +23:19:17 [ 11] [ 6] [159018] +23:19:17 [ 70] [ 3] [301] +23:19:17 ============================================================================ +23:19:17 + + +waiting on router queue for slot.... +23:19:17 Sending to : +23:19:17 ============================================================================ +23:19:17 ============================================================================ +23:19:17 Slot Id : <461> +23:19:17 Transaction Type : RESPONSE +23:19:17 Received From : +23:19:17 ============================================================================ +23:19:17 FNo. Len. Field Value +23:19:17 ============================================================================ +23:19:17 [ 1] [ 4] [0810] +23:19:17 [ 7] [ 10] [0320041825] +23:19:17 [ 11] [ 6] [159018] +23:19:17 [ 39] [ 2] [00] +23:19:17 [ 70] [ 3] [301] +23:19:17 ============================================================================ +23:19:17 Calculate Source COMM Id = 2 +23:19:17 ============================================================================ +23:19:17 + + +waiting on router queue for slot.... +23:19:23 ============================================================================ +23:19:23 Slot Id : <45> +23:19:23 Transaction Type : REQUEST +23:19:23 Received From : +23:19:23 ============================================================================ +23:19:23 FNo. Len. Field Value +23:19:23 ============================================================================ +23:19:23 [ 1] [ 4] [0200] +23:19:23 [ 2] [ 16] [6688990040158238] +23:19:23 [ 3] [ 6] [301000] +23:19:23 [ 4] [ 12] [000000000000] +23:19:23 [ 7] [ 10] [0320231919] +23:19:23 [ 11] [ 6] [849390] +23:19:23 [ 12] [ 6] [231919] +23:19:23 [ 13] [ 4] [0320] +23:19:23 [ 15] [ 4] [0320] +23:19:23 [ 18] [ 4] [6011] +23:19:23 [ 22] [ 3] [900] +23:19:23 [ 25] [ 2] [02] +23:19:23 [ 28] [ 9] [D00000000] +23:19:23 [ 32] [ 6] [621354] +23:19:23 [ 35] [ 37] [6688990040158238=98051261614582000000] +23:19:23 [ 37] [ 12] [507903828392] +23:19:23 [ 41] [ 8] [01009800] +23:19:23 [ 42] [ 15] [NATIVE ] +23:19:23 [ 43] [ 40] [150 Hospital Xaysetha LAO] +23:19:23 [ 49] [ 3] [418] +23:19:23 [ 52] [ 16] [D2843052DF725F15] +23:19:23 ============================================================================ +23:19:23 + + +waiting on router queue for slot.... +23:19:23 Sending to : +23:19:23 ============================================================================ +23:19:23 Sending to : +23:19:23 ============================================================================ +23:19:23 ============================================================================ +23:19:23 Slot Id : <45> +23:19:23 Transaction Type : REQUEST +23:19:23 Received From : +23:19:23 ============================================================================ +23:19:23 FNo. Len. Field Value +23:19:23 ============================================================================ +23:19:23 [ 1] [ 4] [0200] +23:19:23 [ 2] [ 16] [6688990040158238] +23:19:23 [ 3] [ 6] [301000] +23:19:23 [ 4] [ 12] [000000000000] +23:19:23 [ 7] [ 10] [0320231919] +23:19:23 [ 11] [ 6] [849390] +23:19:23 [ 12] [ 6] [231919] +23:19:23 [ 13] [ 4] [0320] +23:19:23 [ 15] [ 4] [0320] +23:19:23 [ 18] [ 4] [6011] +23:19:23 [ 22] [ 3] [900] +23:19:23 [ 25] [ 2] [02] +23:19:23 [ 28] [ 9] [D00000000] +23:19:23 [ 32] [ 6] [621354] +23:19:23 [ 35] [ 37] [6688990040158238=98051261614582000000] +23:19:23 [ 37] [ 12] [507903828392] +23:19:23 [ 41] [ 8] [01009800] +23:19:23 [ 42] [ 15] [NATIVE ] +23:19:23 [ 43] [ 40] [150 Hospital Xaysetha LAO] +23:19:23 [ 49] [ 3] [418] +23:19:23 [ 52] [ 16] [D2843052DF725F15] +23:19:23 ============================================================================ +23:19:23 + + +waiting on router queue for slot.... +23:19:23 Sending to : +23:19:23 ============================================================================ +23:19:23 ============================================================================ +23:19:23 Slot Id : <45> +23:19:23 Transaction Type : REQUEST +23:19:23 Received From : +23:19:23 ============================================================================ +23:19:23 FNo. Len. Field Value +23:19:23 ============================================================================ +23:19:23 [ 1] [ 4] [0200] +23:19:23 [ 2] [ 16] [6688990040158238] +23:19:23 [ 3] [ 6] [301000] +23:19:23 [ 4] [ 12] [000000000000] +23:19:23 [ 7] [ 10] [0320231919] +23:19:23 [ 11] [ 6] [849390] +23:19:23 [ 12] [ 6] [231919] +23:19:23 [ 13] [ 4] [0320] +23:19:23 [ 15] [ 4] [0320] +23:19:23 [ 18] [ 4] [6011] +23:19:23 [ 22] [ 3] [900] +23:19:23 [ 25] [ 2] [02] +23:19:23 [ 28] [ 9] [D00000000] +23:19:23 [ 32] [ 6] [621354] +23:19:23 [ 35] [ 37] [6688990040158238=98051261614582000000] +23:19:23 [ 37] [ 12] [507903828392] +23:19:23 [ 41] [ 8] [01009800] +23:19:23 [ 42] [ 15] [NATIVE ] +23:19:23 [ 43] [ 40] [150 Hospital Xaysetha LAO] +23:19:23 [ 49] [ 3] [418] +23:19:23 [ 52] [ 16] [02D90736DAFE3E36] +23:19:23 ============================================================================ +23:19:23 + + +waiting on router queue for slot.... +23:19:23 Sending to : <4> +23:19:23 ============================================================================ +23:19:28 ============================================================================ +23:19:28 Slot Id : <37> +23:19:28 Transaction Type : REQUEST +23:19:28 Received From : +23:19:28 ============================================================================ +23:19:28 FNo. Len. Field Value +23:19:28 ============================================================================ +23:19:28 [ 1] [ 4] [0800] +23:19:28 [ 7] [ 10] [0320041836] +23:19:28 [ 11] [ 6] [159019] +23:19:28 [ 70] [ 3] [301] +23:19:28 ============================================================================ +23:19:28 + + +waiting on router queue for slot.... +23:19:28 Sending to : +23:19:28 ============================================================================ +23:19:28 ============================================================================ +23:19:28 Slot Id : <37> +23:19:28 Transaction Type : RESPONSE +23:19:28 Received From : +23:19:28 ============================================================================ +23:19:28 FNo. Len. Field Value +23:19:28 ============================================================================ +23:19:28 [ 1] [ 4] [0810] +23:19:28 [ 7] [ 10] [0320041836] +23:19:28 [ 11] [ 6] [159019] +23:19:28 [ 39] [ 2] [00] +23:19:28 [ 70] [ 3] [301] +23:19:28 ============================================================================ +23:19:28 Calculate Source COMM Id = 2 +23:19:28 ============================================================================ +23:19:28 + + +waiting on router queue for slot.... +23:19:33 ============================================================================ +23:19:33 Slot Id : <45> +23:19:33 Transaction Type : RESPONSE +23:19:33 Received From : +23:19:33 ============================================================================ +23:19:33 FNo. Len. Field Value +23:19:33 ============================================================================ +23:19:33 [ 1] [ 4] [0210] +23:19:33 [ 2] [ 16] [6688990040158238] +23:19:33 [ 3] [ 6] [301000] +23:19:33 [ 4] [ 12] [000000000000] +23:19:33 [ 11] [ 6] [849390] +23:19:33 [ 12] [ 6] [231919] +23:19:33 [ 15] [ 4] [0320] +23:19:33 [ 18] [ 4] [6011] +23:19:33 [ 32] [ 6] [621354] +23:19:33 [ 35] [ 37] [6688990040158238=98051261614582000000] +23:19:33 [ 37] [ 12] [507903828392] +23:19:33 [ 38] [ 6] [604540] +23:19:33 [ 39] [ 2] [00] +23:19:33 [ 41] [ 8] [01009800] +23:19:33 [ 49] [ 3] [418] +23:19:33 [ 54] [ 20] [1002418C000217925400] +23:19:33 ============================================================================ +23:19:33 Sending to : +23:19:33 ============================================================================ +23:19:33 + + +waiting on router queue for slot.... +23:19:35 ============================================================================ +23:19:35 Slot Id : <45> +23:19:35 Transaction Type : RESPONSE +23:19:35 Received From : +23:19:35 ============================================================================ +23:19:35 FNo. Len. Field Value +23:19:35 ============================================================================ +23:19:35 [ 1] [ 4] [0210] +23:19:35 [ 2] [ 16] [6688990040158238] +23:19:35 [ 3] [ 6] [301000] +23:19:35 [ 4] [ 12] [000000000000] +23:19:35 [ 11] [ 6] [849390] +23:19:35 [ 12] [ 6] [231919] +23:19:35 [ 15] [ 4] [0320] +23:19:35 [ 18] [ 4] [6011] +23:19:35 [ 32] [ 6] [621354] +23:19:35 [ 35] [ 37] [6688990040158238=98051261614582000000] +23:19:35 [ 37] [ 12] [507903828392] +23:19:35 [ 38] [ 6] [604540] +23:19:35 [ 39] [ 2] [00] +23:19:35 [ 41] [ 8] [01009800] +23:19:35 [ 49] [ 3] [418] +23:19:35 [ 54] [ 20] [1002418C000217925400] +23:19:35 ============================================================================ +23:19:35 Calculate Source COMM Id = 0 +23:19:35 ============================================================================ +23:19:35 + + +waiting on router queue for slot.... +23:19:43 ============================================================================ +23:19:43 Slot Id : <18> +23:19:43 Transaction Type : REQUEST +23:19:43 Received From : +23:19:43 ============================================================================ +23:19:43 FNo. Len. Field Value +23:19:43 ============================================================================ +23:19:43 [ 1] [ 4] [0800] +23:19:43 [ 7] [ 10] [0320041851] +23:19:43 [ 11] [ 6] [159020] +23:19:43 [ 70] [ 3] [301] +23:19:43 ============================================================================ +23:19:43 + + +waiting on router queue for slot.... +23:19:43 Sending to : +23:19:43 ============================================================================ +23:19:43 ============================================================================ +23:19:43 Slot Id : <18> +23:19:43 Transaction Type : RESPONSE +23:19:43 Received From : +23:19:43 ============================================================================ +23:19:43 FNo. Len. Field Value +23:19:43 ============================================================================ +23:19:43 [ 1] [ 4] [0810] +23:19:43 [ 7] [ 10] [0320041851] +23:19:43 [ 11] [ 6] [159020] +23:19:43 [ 39] [ 2] [00] +23:19:43 [ 70] [ 3] [301] +23:19:43 ============================================================================ +23:19:43 Calculate Source COMM Id = 2 +23:19:43 ============================================================================ +23:19:43 + + +waiting on router queue for slot.... +23:19:48 ============================================================================ +23:19:48 Slot Id : <36> +23:19:48 Transaction Type : REQUEST +23:19:48 Received From : +23:19:48 ============================================================================ +23:19:48 FNo. Len. Field Value +23:19:48 ============================================================================ +23:19:48 [ 1] [ 4] [0800] +23:19:48 [ 2] [ 5] [02531] +23:19:48 [ 3] [ 6] [579238] +23:19:48 [ 7] [ 10] [0320161948] +23:19:48 [ 11] [ 6] [807766] +23:19:48 [ 15] [ 10] [0320161948] +23:19:48 [ 37] [ 11] [57923807766] +23:19:48 [ 70] [ 3] [001] +23:19:48 ============================================================================ +23:19:48 + + +waiting on router queue for slot.... +23:19:48 ============================================================================ +23:19:48 Slot Id : <36> +23:19:48 Transaction Type : RESPONSE +23:19:48 Received From : +23:19:48 ============================================================================ +23:19:48 FNo. Len. Field Value +23:19:48 ============================================================================ +23:19:48 [ 1] [ 4] [0810] +23:19:48 [ 7] [ 10] [0320161948] +23:19:48 [ 11] [ 6] [807766] +23:19:48 [ 15] [ 4] [0320] +23:19:48 [ 37] [ 12] [57923807766] +23:19:48 [ 39] [ 2] [00] +23:19:48 [ 70] [ 3] [001] +23:19:48 ============================================================================ +23:19:48 Sending to : +23:19:48 ============================================================================ +23:19:48 + + +waiting on router queue for slot.... +23:19:54 ============================================================================ +23:19:54 Slot Id : <40> +23:19:54 Transaction Type : REQUEST +23:19:54 Received From : +23:19:54 ============================================================================ +23:19:54 FNo. Len. Field Value +23:19:54 ============================================================================ +23:19:54 [ 1] [ 4] [0800] +23:19:54 [ 7] [ 10] [0320041902] +23:19:54 [ 11] [ 6] [159021] +23:19:54 [ 70] [ 3] [301] +23:19:54 ============================================================================ +23:19:54 + + +waiting on router queue for slot.... +23:19:54 Sending to : +23:19:54 ============================================================================ +23:19:54 ============================================================================ +23:19:54 Slot Id : <40> +23:19:54 Transaction Type : RESPONSE +23:19:54 Received From : +23:19:54 ============================================================================ +23:19:54 FNo. Len. Field Value +23:19:54 ============================================================================ +23:19:54 [ 1] [ 4] [0810] +23:19:54 [ 7] [ 10] [0320041902] +23:19:54 [ 11] [ 6] [159021] +23:19:54 [ 39] [ 2] [00] +23:19:54 [ 70] [ 3] [301] +23:19:54 ============================================================================ +23:19:54 Calculate Source COMM Id = 2 +23:19:54 ============================================================================ +23:19:54 + + +waiting on router queue for slot.... +23:19:55 ============================================================================ +23:19:55 Slot Id : <43> +23:19:55 Transaction Type : REQUEST +23:19:55 Received From : +23:19:55 ============================================================================ +23:19:55 FNo. Len. Field Value +23:19:55 ============================================================================ +23:19:55 [ 1] [ 4] [0800] +23:19:55 [ 7] [ 10] [0320162742] +23:19:55 [ 11] [ 6] [001922] +23:19:55 [ 37] [ 12] [57923001922] +23:19:55 [ 70] [ 3] [301] +23:19:55 ============================================================================ +23:19:55 + + +waiting on router queue for slot.... +23:19:55 Sending to : +23:19:55 ============================================================================ +23:19:55 ============================================================================ +23:19:55 Slot Id : <43> +23:19:55 Transaction Type : RESPONSE +23:19:55 Received From : +23:19:55 ============================================================================ +23:19:55 FNo. Len. Field Value +23:19:55 ============================================================================ +23:19:55 [ 1] [ 4] [0810] +23:19:55 [ 7] [ 10] [0320162742] +23:19:55 [ 11] [ 6] [001922] +23:19:55 [ 37] [ 12] [579230019220] +23:19:55 [ 39] [ 2] [00] +23:19:55 [ 70] [ 3] [810] +23:19:55 ============================================================================ +23:19:55 Calculate Source COMM Id = 1 +23:19:55 ============================================================================ +23:19:55 + + +waiting on router queue for slot.... +23:19:57 ============================================================================ +23:19:57 Slot Id : <28> +23:19:57 Transaction Type : REQUEST +23:19:57 Received From : +23:19:57 ============================================================================ +23:19:57 FNo. Len. Field Value +23:19:57 ============================================================================ +23:19:57 [ 1] [ 4] [0800] +23:19:57 [ 7] [ 10] [0321063147] +23:19:57 [ 11] [ 6] [233147] +23:19:57 [ 37] [ 12] [57923233147] +23:19:57 [ 70] [ 3] [301] +23:19:57 ============================================================================ +23:19:57 + + +waiting on router queue for slot.... +23:19:57 Sending to : +23:19:57 ============================================================================ +23:19:57 ============================================================================ +23:19:57 Slot Id : <28> +23:19:57 Transaction Type : RESPONSE +23:19:57 Received From : +23:19:57 ============================================================================ +23:19:57 FNo. Len. Field Value +23:19:57 ============================================================================ +23:19:57 [ 1] [ 4] [0810] +23:19:57 [ 7] [ 10] [0321063147] +23:19:57 [ 11] [ 6] [233147] +23:19:57 [ 37] [ 12] [579232331470] +23:19:57 [ 39] [ 2] [00] +23:19:57 [ 70] [ 3] [810] +23:19:57 ============================================================================ +23:19:57 Calculate Source COMM Id = 6 +23:19:57 ============================================================================ +23:19:57 + + +waiting on router queue for slot.... +23:20:05 ============================================================================ +23:20:05 Slot Id : <497> +23:20:05 Transaction Type : REQUEST +23:20:05 Received From : +23:20:05 ============================================================================ +23:20:05 FNo. Len. Field Value +23:20:05 ============================================================================ +23:20:05 [ 1] [ 4] [0800] +23:20:05 [ 7] [ 10] [0320041913] +23:20:05 [ 11] [ 6] [159022] +23:20:05 [ 70] [ 3] [301] +23:20:05 ============================================================================ +23:20:05 + + +waiting on router queue for slot.... +23:20:05 Sending to : +23:20:05 ============================================================================ +23:20:05 ============================================================================ +23:20:05 Slot Id : <497> +23:20:05 Transaction Type : RESPONSE +23:20:05 Received From : +23:20:05 ============================================================================ +23:20:05 FNo. Len. Field Value +23:20:05 ============================================================================ +23:20:05 [ 1] [ 4] [0810] +23:20:05 [ 7] [ 10] [0320041913] +23:20:05 [ 11] [ 6] [159022] +23:20:05 [ 39] [ 2] [00] +23:20:05 [ 70] [ 3] [301] +23:20:05 ============================================================================ +23:20:05 Calculate Source COMM Id = 2 +23:20:05 ============================================================================ +23:20:05 + + +waiting on router queue for slot.... +23:20:15 ============================================================================ +23:20:15 Slot Id : <8> +23:20:15 Transaction Type : REQUEST +23:20:15 Received From : +23:20:15 ============================================================================ +23:20:15 FNo. Len. Field Value +23:20:15 ============================================================================ +23:20:15 [ 1] [ 4] [0800] +23:20:15 [ 7] [ 10] [0320041923] +23:20:15 [ 11] [ 6] [159023] +23:20:15 [ 70] [ 3] [301] +23:20:15 ============================================================================ +23:20:15 + + +waiting on router queue for slot.... +23:20:15 Sending to : +23:20:15 ============================================================================ +23:20:15 ============================================================================ +23:20:15 Slot Id : <8> +23:20:15 Transaction Type : RESPONSE +23:20:15 Received From : +23:20:15 ============================================================================ +23:20:15 FNo. Len. Field Value +23:20:15 ============================================================================ +23:20:15 [ 1] [ 4] [0810] +23:20:15 [ 7] [ 10] [0320041923] +23:20:15 [ 11] [ 6] [159023] +23:20:15 [ 39] [ 2] [00] +23:20:15 [ 70] [ 3] [301] +23:20:15 ============================================================================ +23:20:15 Calculate Source COMM Id = 2 +23:20:15 ============================================================================ +23:20:15 + + +waiting on router queue for slot.... +23:20:26 ============================================================================ +23:20:26 Slot Id : <55> +23:20:26 Transaction Type : REQUEST +23:20:26 Received From : +23:20:26 ============================================================================ +23:20:26 FNo. Len. Field Value +23:20:26 ============================================================================ +23:20:26 [ 1] [ 4] [0800] +23:20:26 [ 7] [ 10] [0320041934] +23:20:26 [ 11] [ 6] [159024] +23:20:26 [ 70] [ 3] [301] +23:20:26 ============================================================================ +23:20:26 + + +waiting on router queue for slot.... +23:20:26 Sending to : +23:20:26 ============================================================================ +23:20:26 ============================================================================ +23:20:26 Slot Id : <55> +23:20:26 Transaction Type : RESPONSE +23:20:26 Received From : +23:20:26 ============================================================================ +23:20:26 FNo. Len. Field Value +23:20:26 ============================================================================ +23:20:26 [ 1] [ 4] [0810] +23:20:26 [ 7] [ 10] [0320041934] +23:20:26 [ 11] [ 6] [159024] +23:20:26 [ 39] [ 2] [00] +23:20:26 [ 70] [ 3] [301] +23:20:26 ============================================================================ +23:20:26 Calculate Source COMM Id = 2 +23:20:26 ============================================================================ +23:20:26 + + +waiting on router queue for slot.... +23:20:42 ============================================================================ +23:20:42 Slot Id : <467> +23:20:42 Transaction Type : REQUEST +23:20:42 Received From : +23:20:42 ============================================================================ +23:20:42 FNo. Len. Field Value +23:20:42 ============================================================================ +23:20:42 [ 1] [ 4] [0800] +23:20:42 [ 7] [ 10] [0320041950] +23:20:42 [ 11] [ 6] [159025] +23:20:42 [ 70] [ 3] [301] +23:20:42 ============================================================================ +23:20:42 + + +waiting on router queue for slot.... +23:20:42 Sending to : +23:20:42 ============================================================================ +23:20:42 ============================================================================ +23:20:42 Slot Id : <467> +23:20:42 Transaction Type : RESPONSE +23:20:42 Received From : +23:20:42 ============================================================================ +23:20:42 FNo. Len. Field Value +23:20:42 ============================================================================ +23:20:42 [ 1] [ 4] [0810] +23:20:42 [ 7] [ 10] [0320041950] +23:20:42 [ 11] [ 6] [159025] +23:20:42 [ 39] [ 2] [00] +23:20:42 [ 70] [ 3] [301] +23:20:42 ============================================================================ +23:20:42 Calculate Source COMM Id = 2 +23:20:42 ============================================================================ +23:20:42 + + +waiting on router queue for slot.... +23:20:50 ============================================================================ +23:20:50 Slot Id : <7> +23:20:50 Transaction Type : REQUEST +23:20:50 Received From : +23:20:50 ============================================================================ +23:20:50 FNo. Len. Field Value +23:20:50 ============================================================================ +23:20:50 [ 1] [ 4] [0800] +23:20:50 [ 2] [ 5] [02531] +23:20:50 [ 3] [ 6] [579238] +23:20:50 [ 7] [ 10] [0320162050] +23:20:50 [ 11] [ 6] [807767] +23:20:50 [ 15] [ 10] [0320162050] +23:20:50 [ 37] [ 11] [57923807767] +23:20:50 [ 70] [ 3] [001] +23:20:50 ============================================================================ +23:20:50 + + +waiting on router queue for slot.... +23:20:50 ============================================================================ +23:20:50 Slot Id : <7> +23:20:50 Transaction Type : RESPONSE +23:20:50 Received From : +23:20:50 ============================================================================ +23:20:50 FNo. Len. Field Value +23:20:50 ============================================================================ +23:20:50 [ 1] [ 4] [0810] +23:20:50 [ 7] [ 10] [0320162050] +23:20:50 [ 11] [ 6] [807767] +23:20:50 [ 15] [ 4] [0320] +23:20:50 [ 37] [ 12] [57923807767] +23:20:50 [ 39] [ 2] [00] +23:20:50 [ 70] [ 3] [001] +23:20:50 ============================================================================ +23:20:50 Sending to : +23:20:50 ============================================================================ +23:20:50 + + +waiting on router queue for slot.... +23:20:53 ============================================================================ +23:20:53 Slot Id : <52> +23:20:53 Transaction Type : REQUEST +23:20:53 Received From : +23:20:53 ============================================================================ +23:20:53 FNo. Len. Field Value +23:20:53 ============================================================================ +23:20:53 [ 1] [ 4] [0800] +23:20:53 [ 7] [ 10] [0320042000] +23:20:53 [ 11] [ 6] [159026] +23:20:53 [ 70] [ 3] [301] +23:20:53 ============================================================================ +23:20:53 + + +waiting on router queue for slot.... +23:20:53 Sending to : +23:20:53 ============================================================================ +23:20:53 ============================================================================ +23:20:53 Slot Id : <52> +23:20:53 Transaction Type : RESPONSE +23:20:53 Received From : +23:20:53 ============================================================================ +23:20:53 FNo. Len. Field Value +23:20:53 ============================================================================ +23:20:53 [ 1] [ 4] [0810] +23:20:53 [ 7] [ 10] [0320042000] +23:20:53 [ 11] [ 6] [159026] +23:20:53 [ 39] [ 2] [00] +23:20:53 [ 70] [ 3] [301] +23:20:53 ============================================================================ +23:20:53 Calculate Source COMM Id = 2 +23:20:53 ============================================================================ +23:20:53 + + +waiting on router queue for slot.... +23:21:02 ============================================================================ +23:21:02 Slot Id : <61> +23:21:02 Transaction Type : REQUEST +23:21:02 Received From : +23:21:02 ============================================================================ +23:21:02 FNo. Len. Field Value +23:21:02 ============================================================================ +23:21:02 [ 1] [ 4] [0800] +23:21:02 [ 7] [ 10] [0321063252] +23:21:02 [ 11] [ 6] [233252] +23:21:02 [ 37] [ 12] [57923233252] +23:21:02 [ 70] [ 3] [301] +23:21:02 ============================================================================ +23:21:02 + + +waiting on router queue for slot.... +23:21:02 Sending to : +23:21:02 ============================================================================ +23:21:02 ============================================================================ +23:21:02 Slot Id : <61> +23:21:02 Transaction Type : RESPONSE +23:21:02 Received From : +23:21:02 ============================================================================ +23:21:02 FNo. Len. Field Value +23:21:02 ============================================================================ +23:21:02 [ 1] [ 4] [0810] +23:21:02 [ 7] [ 10] [0321063252] +23:21:02 [ 11] [ 6] [233252] +23:21:02 [ 37] [ 12] [579232332520] +23:21:02 [ 39] [ 2] [00] +23:21:02 [ 70] [ 3] [810] +23:21:02 ============================================================================ +23:21:02 Calculate Source COMM Id = 6 +23:21:02 ============================================================================ +23:21:02 + + +waiting on router queue for slot.... +23:21:03 ============================================================================ +23:21:03 Slot Id : <50> +23:21:03 Transaction Type : REQUEST +23:21:03 Received From : +23:21:03 ============================================================================ +23:21:03 FNo. Len. Field Value +23:21:03 ============================================================================ +23:21:03 [ 1] [ 4] [0800] +23:21:03 [ 7] [ 10] [0320042011] +23:21:03 [ 11] [ 6] [159027] +23:21:03 [ 70] [ 3] [301] +23:21:03 ============================================================================ +23:21:03 + + +waiting on router queue for slot.... +23:21:03 Sending to : +23:21:03 ============================================================================ +23:21:03 ============================================================================ +23:21:03 Slot Id : <50> +23:21:03 Transaction Type : RESPONSE +23:21:03 Received From : +23:21:03 ============================================================================ +23:21:03 FNo. Len. Field Value +23:21:03 ============================================================================ +23:21:03 [ 1] [ 4] [0810] +23:21:03 [ 7] [ 10] [0320042011] +23:21:03 [ 11] [ 6] [159027] +23:21:03 [ 39] [ 2] [00] +23:21:03 [ 70] [ 3] [301] +23:21:03 ============================================================================ +23:21:03 Calculate Source COMM Id = 2 +23:21:03 ============================================================================ +23:21:03 + + +waiting on router queue for slot.... +23:21:15 ============================================================================ +23:21:15 Slot Id : <44> +23:21:15 Transaction Type : REQUEST +23:21:15 Received From : +23:21:15 ============================================================================ +23:21:15 FNo. Len. Field Value +23:21:15 ============================================================================ +23:21:15 [ 1] [ 4] [0800] +23:21:15 [ 7] [ 10] [0320042023] +23:21:15 [ 11] [ 6] [159028] +23:21:15 [ 70] [ 3] [301] +23:21:15 ============================================================================ +23:21:15 + + +waiting on router queue for slot.... +23:21:15 Sending to : +23:21:15 ============================================================================ +23:21:15 ============================================================================ +23:21:15 Slot Id : <44> +23:21:15 Transaction Type : RESPONSE +23:21:15 Received From : +23:21:15 ============================================================================ +23:21:15 FNo. Len. Field Value +23:21:15 ============================================================================ +23:21:15 [ 1] [ 4] [0810] +23:21:15 [ 7] [ 10] [0320042023] +23:21:15 [ 11] [ 6] [159028] +23:21:15 [ 39] [ 2] [00] +23:21:15 [ 70] [ 3] [301] +23:21:15 ============================================================================ +23:21:15 Calculate Source COMM Id = 2 +23:21:15 ============================================================================ +23:21:15 + + +waiting on router queue for slot.... +23:21:21 ============================================================================ +23:21:21 Slot Id : <25> +23:21:21 Transaction Type : REQUEST +23:21:21 Received From : +23:21:21 ============================================================================ +23:21:21 FNo. Len. Field Value +23:21:21 ============================================================================ +23:21:21 [ 1] [ 4] [0800] +23:21:21 [ 7] [ 10] [0320161912] +23:21:21 [ 11] [ 6] [055430] +23:21:21 [ 37] [ 12] [57923055430] +23:21:21 [ 70] [ 3] [301] +23:21:21 ============================================================================ +23:21:21 + + +waiting on router queue for slot.... +23:21:21 Sending to : +23:21:21 ============================================================================ +23:21:21 ============================================================================ +23:21:21 Slot Id : <25> +23:21:21 Transaction Type : RESPONSE +23:21:21 Received From : +23:21:21 ============================================================================ +23:21:21 FNo. Len. Field Value +23:21:21 ============================================================================ +23:21:21 [ 1] [ 4] [0810] +23:21:21 [ 7] [ 10] [0320161912] +23:21:21 [ 11] [ 6] [055430] +23:21:21 [ 37] [ 12] [579230554300] +23:21:21 [ 39] [ 2] [00] +23:21:21 [ 70] [ 3] [810] +23:21:21 ============================================================================ +23:21:21 Calculate Source COMM Id = 4 +23:21:21 ============================================================================ +23:21:21 + + +waiting on router queue for slot.... +23:21:31 ============================================================================ +23:21:31 Slot Id : <15> +23:21:31 Transaction Type : REQUEST +23:21:31 Received From : +23:21:31 ============================================================================ +23:21:31 FNo. Len. Field Value +23:21:31 ============================================================================ +23:21:31 [ 1] [ 4] [0800] +23:21:31 [ 7] [ 10] [0320042038] +23:21:31 [ 11] [ 6] [159029] +23:21:31 [ 70] [ 3] [301] +23:21:31 ============================================================================ +23:21:31 + + +waiting on router queue for slot.... +23:21:31 Sending to : +23:21:31 ============================================================================ +23:21:31 ============================================================================ +23:21:31 Slot Id : <15> +23:21:31 Transaction Type : RESPONSE +23:21:31 Received From : +23:21:31 ============================================================================ +23:21:31 FNo. Len. Field Value +23:21:31 ============================================================================ +23:21:31 [ 1] [ 4] [0810] +23:21:31 [ 7] [ 10] [0320042038] +23:21:31 [ 11] [ 6] [159029] +23:21:31 [ 39] [ 2] [00] +23:21:31 [ 70] [ 3] [301] +23:21:31 ============================================================================ +23:21:31 Calculate Source COMM Id = 2 +23:21:31 ============================================================================ +23:21:31 + + +waiting on router queue for slot.... +23:21:45 ============================================================================ +23:21:45 Slot Id : <60> +23:21:45 Transaction Type : REQUEST +23:21:45 Received From : +23:21:45 ============================================================================ +23:21:45 FNo. Len. Field Value +23:21:45 ============================================================================ +23:21:45 [ 1] [ 4] [0800] +23:21:45 [ 7] [ 10] [0320042053] +23:21:45 [ 11] [ 6] [159030] +23:21:45 [ 70] [ 3] [301] +23:21:45 ============================================================================ +23:21:45 + + +waiting on router queue for slot.... +23:21:45 Sending to : +23:21:45 ============================================================================ +23:21:45 ============================================================================ +23:21:45 Slot Id : <60> +23:21:45 Transaction Type : RESPONSE +23:21:45 Received From : +23:21:45 ============================================================================ +23:21:45 FNo. Len. Field Value +23:21:45 ============================================================================ +23:21:45 [ 1] [ 4] [0810] +23:21:45 [ 7] [ 10] [0320042053] +23:21:45 [ 11] [ 6] [159030] +23:21:45 [ 39] [ 2] [00] +23:21:45 [ 70] [ 3] [301] +23:21:45 ============================================================================ +23:21:45 Calculate Source COMM Id = 2 +23:21:45 ============================================================================ +23:21:45 + + +waiting on router queue for slot.... +23:21:52 ============================================================================ +23:21:52 Slot Id : <478> +23:21:52 Transaction Type : REQUEST +23:21:52 Received From : +23:21:52 ============================================================================ +23:21:52 FNo. Len. Field Value +23:21:52 ============================================================================ +23:21:52 [ 1] [ 4] [0800] +23:21:52 [ 2] [ 5] [02531] +23:21:52 [ 3] [ 6] [579238] +23:21:52 [ 7] [ 10] [0320162152] +23:21:52 [ 11] [ 6] [807768] +23:21:52 [ 15] [ 10] [0320162152] +23:21:52 [ 37] [ 11] [57923807768] +23:21:52 [ 70] [ 3] [001] +23:21:52 ============================================================================ +23:21:52 + + +waiting on router queue for slot.... +23:21:52 ============================================================================ +23:21:52 Slot Id : <478> +23:21:52 Transaction Type : RESPONSE +23:21:52 Received From : +23:21:52 ============================================================================ +23:21:52 FNo. Len. Field Value +23:21:52 ============================================================================ +23:21:52 [ 1] [ 4] [0810] +23:21:52 [ 7] [ 10] [0320162152] +23:21:52 [ 11] [ 6] [807768] +23:21:52 [ 15] [ 4] [0320] +23:21:52 [ 37] [ 12] [57923807768] +23:21:52 [ 39] [ 2] [00] +23:21:52 [ 70] [ 3] [001] +23:21:52 ============================================================================ +23:21:52 Sending to : +23:21:52 ============================================================================ +23:21:52 + + +waiting on router queue for slot.... +23:21:55 ============================================================================ +23:21:55 Slot Id : <63> +23:21:55 Transaction Type : REQUEST +23:21:55 Received From : +23:21:55 ============================================================================ +23:21:55 FNo. Len. Field Value +23:21:55 ============================================================================ +23:21:55 [ 1] [ 4] [0800] +23:21:55 [ 7] [ 10] [0320042103] +23:21:55 [ 11] [ 6] [159031] +23:21:55 [ 70] [ 3] [301] +23:21:55 ============================================================================ +23:21:55 + + +waiting on router queue for slot.... +23:21:55 Sending to : +23:21:55 ============================================================================ +23:21:55 ============================================================================ +23:21:55 Slot Id : <63> +23:21:55 Transaction Type : RESPONSE +23:21:55 Received From : +23:21:55 ============================================================================ +23:21:55 FNo. Len. Field Value +23:21:55 ============================================================================ +23:21:55 [ 1] [ 4] [0810] +23:21:55 [ 7] [ 10] [0320042103] +23:21:55 [ 11] [ 6] [159031] +23:21:55 [ 39] [ 2] [00] +23:21:55 [ 70] [ 3] [301] +23:21:55 ============================================================================ +23:21:55 Calculate Source COMM Id = 2 +23:21:55 ============================================================================ +23:21:55 + + +waiting on router queue for slot.... +23:22:06 ============================================================================ +23:22:06 Slot Id : <73> +23:22:06 Transaction Type : REQUEST +23:22:06 Received From : +23:22:06 ============================================================================ +23:22:06 FNo. Len. Field Value +23:22:06 ============================================================================ +23:22:06 [ 1] [ 4] [0800] +23:22:06 [ 7] [ 10] [0320042114] +23:22:06 [ 11] [ 6] [159032] +23:22:06 [ 70] [ 3] [301] +23:22:06 ============================================================================ +23:22:06 + + +waiting on router queue for slot.... +23:22:06 Sending to : +23:22:06 ============================================================================ +23:22:06 ============================================================================ +23:22:06 Slot Id : <73> +23:22:06 Transaction Type : RESPONSE +23:22:06 Received From : +23:22:06 ============================================================================ +23:22:06 FNo. Len. Field Value +23:22:06 ============================================================================ +23:22:06 [ 1] [ 4] [0810] +23:22:06 [ 7] [ 10] [0320042114] +23:22:06 [ 11] [ 6] [159032] +23:22:06 [ 39] [ 2] [00] +23:22:06 [ 70] [ 3] [301] +23:22:06 ============================================================================ +23:22:06 Calculate Source COMM Id = 2 +23:22:06 ============================================================================ +23:22:06 + + +waiting on router queue for slot.... +23:22:07 ============================================================================ +23:22:07 Slot Id : <38> +23:22:07 Transaction Type : REQUEST +23:22:07 Received From : +23:22:07 ============================================================================ +23:22:07 FNo. Len. Field Value +23:22:07 ============================================================================ +23:22:07 [ 1] [ 4] [0800] +23:22:07 [ 7] [ 10] [0321063357] +23:22:07 [ 11] [ 6] [233357] +23:22:07 [ 37] [ 12] [57923233357] +23:22:07 [ 70] [ 3] [301] +23:22:07 ============================================================================ +23:22:07 + + +waiting on router queue for slot.... +23:22:07 Sending to : +23:22:07 ============================================================================ +23:22:07 ============================================================================ +23:22:07 Slot Id : <38> +23:22:07 Transaction Type : RESPONSE +23:22:07 Received From : +23:22:07 ============================================================================ +23:22:07 FNo. Len. Field Value +23:22:07 ============================================================================ +23:22:07 [ 1] [ 4] [0810] +23:22:07 [ 7] [ 10] [0321063357] +23:22:07 [ 11] [ 6] [233357] +23:22:07 [ 37] [ 12] [579232333570] +23:22:07 [ 39] [ 2] [00] +23:22:07 [ 70] [ 3] [810] +23:22:07 ============================================================================ +23:22:07 Calculate Source COMM Id = 6 +23:22:07 ============================================================================ +23:22:07 + + +waiting on router queue for slot.... +23:22:16 ============================================================================ +23:22:16 Slot Id : <68> +23:22:16 Transaction Type : REQUEST +23:22:16 Received From : +23:22:16 ============================================================================ +23:22:16 FNo. Len. Field Value +23:22:16 ============================================================================ +23:22:16 [ 1] [ 4] [0800] +23:22:16 [ 7] [ 10] [0320042125] +23:22:16 [ 11] [ 6] [159033] +23:22:16 [ 70] [ 3] [301] +23:22:16 ============================================================================ +23:22:16 + + +waiting on router queue for slot.... +23:22:16 Sending to : +23:22:16 ============================================================================ +23:22:16 ============================================================================ +23:22:16 Slot Id : <68> +23:22:16 Transaction Type : RESPONSE +23:22:16 Received From : +23:22:16 ============================================================================ +23:22:16 FNo. Len. Field Value +23:22:16 ============================================================================ +23:22:16 [ 1] [ 4] [0810] +23:22:16 [ 7] [ 10] [0320042125] +23:22:16 [ 11] [ 6] [159033] +23:22:16 [ 39] [ 2] [00] +23:22:16 [ 70] [ 3] [301] +23:22:16 ============================================================================ +23:22:16 Calculate Source COMM Id = 2 +23:22:16 ============================================================================ +23:22:16 + + +waiting on router queue for slot.... +23:22:25 ============================================================================ +23:22:25 Slot Id : <32> +23:22:25 Transaction Type : REQUEST +23:22:25 Received From : +23:22:25 ============================================================================ +23:22:25 FNo. Len. Field Value +23:22:25 ============================================================================ +23:22:25 [ 1] [ 4] [0200] +23:22:25 [ 2] [ 16] [6688990040158238] +23:22:25 [ 3] [ 6] [011000] +23:22:25 [ 4] [ 12] [000100000000] +23:22:25 [ 7] [ 10] [0320232221] +23:22:25 [ 11] [ 6] [849416] +23:22:25 [ 12] [ 6] [232221] +23:22:25 [ 13] [ 4] [0320] +23:22:25 [ 15] [ 4] [0320] +23:22:25 [ 18] [ 4] [6011] +23:22:25 [ 22] [ 3] [900] +23:22:25 [ 25] [ 2] [02] +23:22:25 [ 28] [ 9] [D00002000] +23:22:25 [ 32] [ 6] [621354] +23:22:25 [ 35] [ 37] [6688990040158238=98051261614582000000] +23:22:25 [ 37] [ 12] [507903077669] +23:22:25 [ 41] [ 8] [01008700] +23:22:25 [ 42] [ 15] [NATIVE ] +23:22:25 [ 43] [ 40] [150 Hospital 2 Xaysetha LAO] +23:22:25 [ 49] [ 3] [418] +23:22:25 [ 52] [ 16] [D2843052DF725F15] +23:22:25 ============================================================================ +23:22:25 + + +waiting on router queue for slot.... +23:22:25 Sending to : +23:22:25 ============================================================================ +23:22:25 Sending to : +23:22:25 ============================================================================ +23:22:25 ============================================================================ +23:22:25 Slot Id : <32> +23:22:25 Transaction Type : REQUEST +23:22:25 Received From : +23:22:25 ============================================================================ +23:22:25 FNo. Len. Field Value +23:22:25 ============================================================================ +23:22:25 [ 1] [ 4] [0200] +23:22:25 [ 2] [ 16] [6688990040158238] +23:22:25 [ 3] [ 6] [011000] +23:22:25 [ 4] [ 12] [000100000000] +23:22:25 [ 7] [ 10] [0320232221] +23:22:25 [ 11] [ 6] [849416] +23:22:25 [ 12] [ 6] [232221] +23:22:25 [ 13] [ 4] [0320] +23:22:25 [ 15] [ 4] [0320] +23:22:25 [ 18] [ 4] [6011] +23:22:25 [ 22] [ 3] [900] +23:22:25 [ 25] [ 2] [02] +23:22:25 [ 28] [ 9] [D00002000] +23:22:25 [ 32] [ 6] [621354] +23:22:25 [ 35] [ 37] [6688990040158238=98051261614582000000] +23:22:25 [ 37] [ 12] [507903077669] +23:22:25 [ 41] [ 8] [01008700] +23:22:25 [ 42] [ 15] [NATIVE ] +23:22:25 [ 43] [ 40] [150 Hospital 2 Xaysetha LAO] +23:22:25 [ 49] [ 3] [418] +23:22:25 [ 52] [ 16] [D2843052DF725F15] +23:22:25 ============================================================================ +23:22:25 + + +waiting on router queue for slot.... +23:22:25 Sending to : +23:22:25 ============================================================================ +23:22:25 ============================================================================ +23:22:25 Slot Id : <32> +23:22:25 Transaction Type : REQUEST +23:22:25 Received From : +23:22:25 ============================================================================ +23:22:25 FNo. Len. Field Value +23:22:25 ============================================================================ +23:22:25 [ 1] [ 4] [0200] +23:22:25 [ 2] [ 16] [6688990040158238] +23:22:25 [ 3] [ 6] [011000] +23:22:25 [ 4] [ 12] [000100000000] +23:22:25 [ 7] [ 10] [0320232221] +23:22:25 [ 11] [ 6] [849416] +23:22:25 [ 12] [ 6] [232221] +23:22:25 [ 13] [ 4] [0320] +23:22:25 [ 15] [ 4] [0320] +23:22:25 [ 18] [ 4] [6011] +23:22:25 [ 22] [ 3] [900] +23:22:25 [ 25] [ 2] [02] +23:22:25 [ 28] [ 9] [D00002000] +23:22:25 [ 32] [ 6] [621354] +23:22:25 [ 35] [ 37] [6688990040158238=98051261614582000000] +23:22:25 [ 37] [ 12] [507903077669] +23:22:25 [ 41] [ 8] [01008700] +23:22:25 [ 42] [ 15] [NATIVE ] +23:22:25 [ 43] [ 40] [150 Hospital 2 Xaysetha LAO] +23:22:25 [ 49] [ 3] [418] +23:22:25 [ 52] [ 16] [02D90736DAFE3E36] +23:22:25 ============================================================================ +23:22:25 + + +waiting on router queue for slot.... +23:22:25 Sending to : <4> +23:22:25 ============================================================================ +23:22:32 ============================================================================ +23:22:32 Slot Id : <26> +23:22:32 Transaction Type : REQUEST +23:22:32 Received From : +23:22:32 ============================================================================ +23:22:32 FNo. Len. Field Value +23:22:32 ============================================================================ +23:22:32 [ 1] [ 4] [0800] +23:22:32 [ 7] [ 10] [0320042140] +23:22:32 [ 11] [ 6] [159034] +23:22:32 [ 70] [ 3] [301] +23:22:32 ============================================================================ +23:22:32 + + +waiting on router queue for slot.... +23:22:32 Sending to : +23:22:32 ============================================================================ +23:22:32 ============================================================================ +23:22:32 Slot Id : <26> +23:22:32 Transaction Type : RESPONSE +23:22:32 Received From : +23:22:32 ============================================================================ +23:22:32 FNo. Len. Field Value +23:22:32 ============================================================================ +23:22:32 [ 1] [ 4] [0810] +23:22:32 [ 7] [ 10] [0320042140] +23:22:32 [ 11] [ 6] [159034] +23:22:32 [ 39] [ 2] [00] +23:22:32 [ 70] [ 3] [301] +23:22:32 ============================================================================ +23:22:32 Calculate Source COMM Id = 2 +23:22:32 ============================================================================ +23:22:32 + + +waiting on router queue for slot.... +23:22:39 ============================================================================ +23:22:39 Slot Id : <32> +23:22:39 Transaction Type : RESPONSE +23:22:39 Received From : +23:22:39 ============================================================================ +23:22:39 FNo. Len. Field Value +23:22:39 ============================================================================ +23:22:39 [ 1] [ 4] [0210] +23:22:39 [ 2] [ 16] [6688990040158238] +23:22:39 [ 3] [ 6] [011000] +23:22:39 [ 4] [ 12] [000100000000] +23:22:39 [ 11] [ 6] [849416] +23:22:39 [ 12] [ 6] [232221] +23:22:39 [ 15] [ 4] [0320] +23:22:39 [ 18] [ 4] [6011] +23:22:39 [ 32] [ 6] [621354] +23:22:39 [ 35] [ 37] [6688990040158238=98051261614582000000] +23:22:39 [ 37] [ 12] [507903077669] +23:22:39 [ 38] [ 6] [334077] +23:22:39 [ 39] [ 2] [00] +23:22:39 [ 41] [ 8] [01008700] +23:22:39 [ 49] [ 3] [418] +23:22:39 [ 54] [ 20] [1002418C000117725400] +23:22:39 ============================================================================ +23:22:39 Sending to : +23:22:39 ============================================================================ +23:22:39 + + +waiting on router queue for slot.... +23:22:41 ============================================================================ +23:22:41 Slot Id : <32> +23:22:41 Transaction Type : RESPONSE +23:22:41 Received From : +23:22:41 ============================================================================ +23:22:41 FNo. Len. Field Value +23:22:41 ============================================================================ +23:22:41 [ 1] [ 4] [0210] +23:22:41 [ 2] [ 16] [6688990040158238] +23:22:41 [ 3] [ 6] [011000] +23:22:41 [ 4] [ 12] [000100000000] +23:22:41 [ 11] [ 6] [849416] +23:22:41 [ 12] [ 6] [232221] +23:22:41 [ 15] [ 4] [0320] +23:22:41 [ 18] [ 4] [6011] +23:22:41 [ 32] [ 6] [621354] +23:22:41 [ 35] [ 37] [6688990040158238=98051261614582000000] +23:22:41 [ 37] [ 12] [507903077669] +23:22:41 [ 38] [ 6] [334077] +23:22:41 [ 39] [ 2] [00] +23:22:41 [ 41] [ 8] [01008700] +23:22:41 [ 49] [ 3] [418] +23:22:41 [ 54] [ 20] [1002418C000117725400] +23:22:41 ============================================================================ +23:22:41 Calculate Source COMM Id = 0 +23:22:41 ============================================================================ +23:22:41 + + +waiting on router queue for slot.... +23:22:43 ============================================================================ +23:22:43 Slot Id : <487> +23:22:43 Transaction Type : REQUEST +23:22:43 Received From : +23:22:43 ============================================================================ +23:22:43 FNo. Len. Field Value +23:22:43 ============================================================================ +23:22:43 [ 1] [ 4] [0800] +23:22:43 [ 7] [ 10] [0320042151] +23:22:43 [ 11] [ 6] [159035] +23:22:43 [ 70] [ 3] [301] +23:22:43 ============================================================================ +23:22:43 + + +waiting on router queue for slot.... +23:22:43 Sending to : +23:22:43 ============================================================================ +23:22:43 ============================================================================ +23:22:43 Slot Id : <487> +23:22:43 Transaction Type : RESPONSE +23:22:43 Received From : +23:22:43 ============================================================================ +23:22:43 FNo. Len. Field Value +23:22:43 ============================================================================ +23:22:43 [ 1] [ 4] [0810] +23:22:43 [ 7] [ 10] [0320042151] +23:22:43 [ 11] [ 6] [159035] +23:22:43 [ 39] [ 2] [00] +23:22:43 [ 70] [ 3] [301] +23:22:43 ============================================================================ +23:22:43 Calculate Source COMM Id = 2 +23:22:43 ============================================================================ +23:22:43 + + +waiting on router queue for slot.... +23:22:54 ============================================================================ +23:22:54 Slot Id : <41> +23:22:54 Transaction Type : REQUEST +23:22:54 Received From : +23:22:54 ============================================================================ +23:22:54 FNo. Len. Field Value +23:22:54 ============================================================================ +23:22:54 [ 1] [ 4] [0800] +23:22:54 [ 2] [ 5] [02531] +23:22:54 [ 3] [ 6] [579238] +23:22:54 [ 7] [ 10] [0320162254] +23:22:54 [ 11] [ 6] [807769] +23:22:54 [ 15] [ 10] [0320162254] +23:22:54 [ 37] [ 11] [57923807769] +23:22:54 [ 70] [ 3] [001] +23:22:54 ============================================================================ +23:22:54 + + +waiting on router queue for slot.... +23:22:54 ============================================================================ +23:22:54 Slot Id : <41> +23:22:54 Transaction Type : RESPONSE +23:22:54 Received From : +23:22:54 ============================================================================ +23:22:54 FNo. Len. Field Value +23:22:54 ============================================================================ +23:22:54 [ 1] [ 4] [0810] +23:22:54 [ 7] [ 10] [0320162254] +23:22:54 [ 11] [ 6] [807769] +23:22:54 [ 15] [ 4] [0320] +23:22:54 [ 37] [ 12] [57923807769] +23:22:54 [ 39] [ 2] [00] +23:22:54 [ 70] [ 3] [001] +23:22:54 ============================================================================ +23:22:54 Sending to : +23:22:54 ============================================================================ +23:22:54 + + +waiting on router queue for slot.... +23:22:59 ============================================================================ +23:22:59 Slot Id : <20> +23:22:59 Transaction Type : REQUEST +23:22:59 Received From : +23:22:59 ============================================================================ +23:22:59 FNo. Len. Field Value +23:22:59 ============================================================================ +23:22:59 [ 1] [ 4] [0800] +23:22:59 [ 7] [ 10] [0320042207] +23:22:59 [ 11] [ 6] [159036] +23:22:59 [ 70] [ 3] [301] +23:22:59 ============================================================================ +23:22:59 + + +waiting on router queue for slot.... +23:22:59 Sending to : +23:22:59 ============================================================================ +23:22:59 ============================================================================ +23:22:59 Slot Id : <20> +23:22:59 Transaction Type : RESPONSE +23:22:59 Received From : +23:22:59 ============================================================================ +23:22:59 FNo. Len. Field Value +23:22:59 ============================================================================ +23:22:59 [ 1] [ 4] [0810] +23:22:59 [ 7] [ 10] [0320042207] +23:22:59 [ 11] [ 6] [159036] +23:22:59 [ 39] [ 2] [00] +23:22:59 [ 70] [ 3] [301] +23:22:59 ============================================================================ +23:22:59 Calculate Source COMM Id = 2 +23:22:59 ============================================================================ +23:22:59 + + +waiting on router queue for slot.... +23:23:10 ============================================================================ +23:23:10 Slot Id : <464> +23:23:10 Transaction Type : REQUEST +23:23:10 Received From : +23:23:10 ============================================================================ +23:23:10 FNo. Len. Field Value +23:23:10 ============================================================================ +23:23:10 [ 1] [ 4] [0800] +23:23:10 [ 7] [ 10] [0320042218] +23:23:10 [ 11] [ 6] [159037] +23:23:10 [ 70] [ 3] [301] +23:23:10 ============================================================================ +23:23:10 + + +waiting on router queue for slot.... +23:23:10 Sending to : +23:23:10 ============================================================================ +23:23:10 ============================================================================ +23:23:10 Slot Id : <464> +23:23:10 Transaction Type : RESPONSE +23:23:10 Received From : +23:23:10 ============================================================================ +23:23:10 FNo. Len. Field Value +23:23:10 ============================================================================ +23:23:10 [ 1] [ 4] [0810] +23:23:10 [ 7] [ 10] [0320042218] +23:23:10 [ 11] [ 6] [159037] +23:23:10 [ 39] [ 2] [00] +23:23:10 [ 70] [ 3] [301] +23:23:10 ============================================================================ +23:23:10 Calculate Source COMM Id = 2 +23:23:10 ============================================================================ +23:23:10 + + +waiting on router queue for slot.... +23:23:12 ============================================================================ +23:23:12 Slot Id : <48> +23:23:12 Transaction Type : REQUEST +23:23:12 Received From : +23:23:12 ============================================================================ +23:23:12 FNo. Len. Field Value +23:23:12 ============================================================================ +23:23:12 [ 1] [ 4] [0800] +23:23:12 [ 7] [ 10] [0321063502] +23:23:12 [ 11] [ 6] [233502] +23:23:12 [ 37] [ 12] [57923233502] +23:23:12 [ 70] [ 3] [301] +23:23:12 ============================================================================ +23:23:12 + + +waiting on router queue for slot.... +23:23:12 Sending to : +23:23:12 ============================================================================ +23:23:12 ============================================================================ +23:23:12 Slot Id : <48> +23:23:12 Transaction Type : RESPONSE +23:23:12 Received From : +23:23:12 ============================================================================ +23:23:12 FNo. Len. Field Value +23:23:12 ============================================================================ +23:23:12 [ 1] [ 4] [0810] +23:23:12 [ 7] [ 10] [0321063502] +23:23:12 [ 11] [ 6] [233502] +23:23:12 [ 37] [ 12] [579232335020] +23:23:12 [ 39] [ 2] [00] +23:23:12 [ 70] [ 3] [810] +23:23:12 ============================================================================ +23:23:12 Calculate Source COMM Id = 6 +23:23:12 ============================================================================ +23:23:12 + + +waiting on router queue for slot.... +23:23:20 ============================================================================ +23:23:20 Slot Id : <46> +23:23:20 Transaction Type : REQUEST +23:23:20 Received From : +23:23:20 ============================================================================ +23:23:20 FNo. Len. Field Value +23:23:20 ============================================================================ +23:23:20 [ 1] [ 4] [0800] +23:23:20 [ 7] [ 10] [0320042229] +23:23:20 [ 11] [ 6] [159038] +23:23:20 [ 70] [ 3] [301] +23:23:20 ============================================================================ +23:23:20 + + +waiting on router queue for slot.... +23:23:20 Sending to : +23:23:20 ============================================================================ +23:23:20 ============================================================================ +23:23:20 Slot Id : <46> +23:23:20 Transaction Type : RESPONSE +23:23:20 Received From : +23:23:20 ============================================================================ +23:23:20 FNo. Len. Field Value +23:23:20 ============================================================================ +23:23:20 [ 1] [ 4] [0810] +23:23:20 [ 7] [ 10] [0320042229] +23:23:20 [ 11] [ 6] [159038] +23:23:20 [ 39] [ 2] [00] +23:23:20 [ 70] [ 3] [301] +23:23:20 ============================================================================ +23:23:20 Calculate Source COMM Id = 2 +23:23:20 ============================================================================ +23:23:20 + + +waiting on router queue for slot.... +23:23:36 ============================================================================ +23:23:36 Slot Id : <27> +23:23:36 Transaction Type : REQUEST +23:23:36 Received From : +23:23:36 ============================================================================ +23:23:36 FNo. Len. Field Value +23:23:36 ============================================================================ +23:23:36 [ 1] [ 4] [0800] +23:23:36 [ 7] [ 10] [0320042244] +23:23:36 [ 11] [ 6] [159039] +23:23:36 [ 70] [ 3] [301] +23:23:36 ============================================================================ +23:23:36 + + +waiting on router queue for slot.... +23:23:36 Sending to : +23:23:36 ============================================================================ +23:23:36 ============================================================================ +23:23:36 Slot Id : <27> +23:23:36 Transaction Type : RESPONSE +23:23:36 Received From : +23:23:36 ============================================================================ +23:23:36 FNo. Len. Field Value +23:23:36 ============================================================================ +23:23:36 [ 1] [ 4] [0810] +23:23:36 [ 7] [ 10] [0320042244] +23:23:36 [ 11] [ 6] [159039] +23:23:36 [ 39] [ 2] [00] +23:23:36 [ 70] [ 3] [301] +23:23:36 ============================================================================ +23:23:36 Calculate Source COMM Id = 2 +23:23:36 ============================================================================ +23:23:36 + + +waiting on router queue for slot.... +23:23:46 ============================================================================ +23:23:46 Slot Id : <69> +23:23:46 Transaction Type : REQUEST +23:23:46 Received From : +23:23:46 ============================================================================ +23:23:46 FNo. Len. Field Value +23:23:46 ============================================================================ +23:23:46 [ 1] [ 4] [0800] +23:23:46 [ 7] [ 10] [0320042254] +23:23:46 [ 11] [ 6] [159040] +23:23:46 [ 70] [ 3] [301] +23:23:46 ============================================================================ +23:23:46 + + +waiting on router queue for slot.... +23:23:46 Sending to : +23:23:46 ============================================================================ +23:23:46 ============================================================================ +23:23:46 Slot Id : <69> +23:23:46 Transaction Type : RESPONSE +23:23:46 Received From : +23:23:46 ============================================================================ +23:23:46 FNo. Len. Field Value +23:23:46 ============================================================================ +23:23:46 [ 1] [ 4] [0810] +23:23:46 [ 7] [ 10] [0320042254] +23:23:46 [ 11] [ 6] [159040] +23:23:46 [ 39] [ 2] [00] +23:23:46 [ 70] [ 3] [301] +23:23:46 ============================================================================ +23:23:46 Calculate Source COMM Id = 2 +23:23:46 ============================================================================ +23:23:46 + + +waiting on router queue for slot.... +23:23:56 ============================================================================ +23:23:56 Slot Id : <19> +23:23:56 Transaction Type : REQUEST +23:23:56 Received From : +23:23:56 ============================================================================ +23:23:56 FNo. Len. Field Value +23:23:56 ============================================================================ +23:23:56 [ 1] [ 4] [0800] +23:23:56 [ 2] [ 5] [02531] +23:23:56 [ 3] [ 6] [579238] +23:23:56 [ 7] [ 10] [0320162356] +23:23:56 [ 11] [ 6] [807770] +23:23:56 [ 15] [ 10] [0320162356] +23:23:56 [ 37] [ 11] [57923807770] +23:23:56 [ 70] [ 3] [001] +23:23:56 ============================================================================ +23:23:56 + + +waiting on router queue for slot.... +23:23:56 ============================================================================ +23:23:56 Slot Id : <19> +23:23:56 Transaction Type : RESPONSE +23:23:56 Received From : +23:23:56 ============================================================================ +23:23:56 FNo. Len. Field Value +23:23:56 ============================================================================ +23:23:56 [ 1] [ 4] [0810] +23:23:56 [ 7] [ 10] [0320162356] +23:23:56 [ 11] [ 6] [807770] +23:23:56 [ 15] [ 4] [0320] +23:23:56 [ 37] [ 12] [57923807770] +23:23:56 [ 39] [ 2] [00] +23:23:56 [ 70] [ 3] [001] +23:23:56 ============================================================================ +23:23:56 Sending to : +23:23:56 ============================================================================ +23:23:56 + + +waiting on router queue for slot.... +23:23:57 ============================================================================ +23:23:57 Slot Id : <78> +23:23:57 Transaction Type : REQUEST +23:23:57 Received From : +23:23:57 ============================================================================ +23:23:57 FNo. Len. Field Value +23:23:57 ============================================================================ +23:23:57 [ 1] [ 4] [0800] +23:23:57 [ 7] [ 10] [0320042305] +23:23:57 [ 11] [ 6] [159041] +23:23:57 [ 70] [ 3] [301] +23:23:57 ============================================================================ +23:23:57 + + +waiting on router queue for slot.... +23:23:57 Sending to : +23:23:57 ============================================================================ +23:23:57 ============================================================================ +23:23:57 Slot Id : <78> +23:23:57 Transaction Type : RESPONSE +23:23:57 Received From : +23:23:57 ============================================================================ +23:23:57 FNo. Len. Field Value +23:23:57 ============================================================================ +23:23:57 [ 1] [ 4] [0810] +23:23:57 [ 7] [ 10] [0320042305] +23:23:57 [ 11] [ 6] [159041] +23:23:57 [ 39] [ 2] [00] +23:23:57 [ 70] [ 3] [301] +23:23:57 ============================================================================ +23:23:57 Calculate Source COMM Id = 2 +23:23:57 ============================================================================ +23:23:57 + + +waiting on router queue for slot.... +23:24:07 ============================================================================ +23:24:07 Slot Id : <54> +23:24:07 Transaction Type : REQUEST +23:24:07 Received From : +23:24:07 ============================================================================ +23:24:07 FNo. Len. Field Value +23:24:07 ============================================================================ +23:24:07 [ 1] [ 4] [0800] +23:24:07 [ 7] [ 10] [0320042315] +23:24:07 [ 11] [ 6] [159042] +23:24:07 [ 70] [ 3] [301] +23:24:07 ============================================================================ +23:24:07 + + +waiting on router queue for slot.... +23:24:07 Sending to : +23:24:07 ============================================================================ +23:24:07 ============================================================================ +23:24:07 Slot Id : <54> +23:24:07 Transaction Type : RESPONSE +23:24:07 Received From : +23:24:07 ============================================================================ +23:24:07 FNo. Len. Field Value +23:24:07 ============================================================================ +23:24:07 [ 1] [ 4] [0810] +23:24:07 [ 7] [ 10] [0320042315] +23:24:07 [ 11] [ 6] [159042] +23:24:07 [ 39] [ 2] [00] +23:24:07 [ 70] [ 3] [301] +23:24:07 ============================================================================ +23:24:07 Calculate Source COMM Id = 2 +23:24:07 ============================================================================ +23:24:07 + + +waiting on router queue for slot.... +23:24:17 ============================================================================ +23:24:17 Slot Id : <47> +23:24:17 Transaction Type : REQUEST +23:24:17 Received From : +23:24:17 ============================================================================ +23:24:17 FNo. Len. Field Value +23:24:17 ============================================================================ +23:24:17 [ 1] [ 4] [0800] +23:24:17 [ 7] [ 10] [0321063607] +23:24:17 [ 11] [ 6] [233607] +23:24:17 [ 37] [ 12] [57923233607] +23:24:17 [ 70] [ 3] [301] +23:24:17 ============================================================================ +23:24:17 + + +waiting on router queue for slot.... +23:24:17 Sending to : +23:24:17 ============================================================================ +23:24:17 ============================================================================ +23:24:17 Slot Id : <47> +23:24:17 Transaction Type : RESPONSE +23:24:17 Received From : +23:24:17 ============================================================================ +23:24:17 FNo. Len. Field Value +23:24:17 ============================================================================ +23:24:17 [ 1] [ 4] [0810] +23:24:17 [ 7] [ 10] [0321063607] +23:24:17 [ 11] [ 6] [233607] +23:24:17 [ 37] [ 12] [579232336070] +23:24:17 [ 39] [ 2] [00] +23:24:17 [ 70] [ 3] [810] +23:24:17 ============================================================================ +23:24:17 Calculate Source COMM Id = 6 +23:24:17 ============================================================================ +23:24:17 + + +waiting on router queue for slot.... +23:24:18 ============================================================================ +23:24:18 Slot Id : <57> +23:24:18 Transaction Type : REQUEST +23:24:18 Received From : +23:24:18 ============================================================================ +23:24:18 FNo. Len. Field Value +23:24:18 ============================================================================ +23:24:18 [ 1] [ 4] [0800] +23:24:18 [ 7] [ 10] [0320042326] +23:24:18 [ 11] [ 6] [159043] +23:24:18 [ 70] [ 3] [301] +23:24:18 ============================================================================ +23:24:18 + + +waiting on router queue for slot.... +23:24:18 Sending to : +23:24:18 ============================================================================ +23:24:18 ============================================================================ +23:24:18 Slot Id : <57> +23:24:18 Transaction Type : RESPONSE +23:24:18 Received From : +23:24:18 ============================================================================ +23:24:18 FNo. Len. Field Value +23:24:18 ============================================================================ +23:24:18 [ 1] [ 4] [0810] +23:24:18 [ 7] [ 10] [0320042326] +23:24:18 [ 11] [ 6] [159043] +23:24:18 [ 39] [ 2] [00] +23:24:18 [ 70] [ 3] [301] +23:24:18 ============================================================================ +23:24:18 Calculate Source COMM Id = 2 +23:24:18 ============================================================================ +23:24:18 + + +waiting on router queue for slot.... +23:24:29 ============================================================================ +23:24:29 Slot Id : <24> +23:24:29 Transaction Type : REQUEST +23:24:29 Received From : +23:24:29 ============================================================================ +23:24:29 FNo. Len. Field Value +23:24:29 ============================================================================ +23:24:29 [ 1] [ 4] [0800] +23:24:29 [ 7] [ 10] [0320042337] +23:24:29 [ 11] [ 6] [159044] +23:24:29 [ 70] [ 3] [301] +23:24:29 ============================================================================ +23:24:29 + + +waiting on router queue for slot.... +23:24:29 Sending to : +23:24:29 ============================================================================ +23:24:29 ============================================================================ +23:24:29 Slot Id : <24> +23:24:29 Transaction Type : RESPONSE +23:24:29 Received From : +23:24:29 ============================================================================ +23:24:29 FNo. Len. Field Value +23:24:29 ============================================================================ +23:24:29 [ 1] [ 4] [0810] +23:24:29 [ 7] [ 10] [0320042337] +23:24:29 [ 11] [ 6] [159044] +23:24:29 [ 39] [ 2] [00] +23:24:29 [ 70] [ 3] [301] +23:24:29 ============================================================================ +23:24:29 Calculate Source COMM Id = 2 +23:24:29 ============================================================================ +23:24:29 + + +waiting on router queue for slot.... +23:24:40 ============================================================================ +23:24:40 Slot Id : <34> +23:24:40 Transaction Type : REQUEST +23:24:40 Received From : +23:24:40 ============================================================================ +23:24:40 FNo. Len. Field Value +23:24:40 ============================================================================ +23:24:40 [ 1] [ 4] [0800] +23:24:40 [ 7] [ 10] [0320042348] +23:24:40 [ 11] [ 6] [159045] +23:24:40 [ 70] [ 3] [301] +23:24:40 ============================================================================ +23:24:40 + + +waiting on router queue for slot.... +23:24:40 Sending to : +23:24:40 ============================================================================ +23:24:40 ============================================================================ +23:24:40 Slot Id : <34> +23:24:40 Transaction Type : RESPONSE +23:24:40 Received From : +23:24:40 ============================================================================ +23:24:40 FNo. Len. Field Value +23:24:40 ============================================================================ +23:24:40 [ 1] [ 4] [0810] +23:24:40 [ 7] [ 10] [0320042348] +23:24:40 [ 11] [ 6] [159045] +23:24:40 [ 39] [ 2] [00] +23:24:40 [ 70] [ 3] [301] +23:24:40 ============================================================================ +23:24:40 Calculate Source COMM Id = 2 +23:24:40 ============================================================================ +23:24:40 + + +waiting on router queue for slot.... +23:24:50 ============================================================================ +23:24:50 Slot Id : <49> +23:24:50 Transaction Type : REQUEST +23:24:50 Received From : +23:24:50 ============================================================================ +23:24:50 FNo. Len. Field Value +23:24:50 ============================================================================ +23:24:50 [ 1] [ 4] [0800] +23:24:50 [ 7] [ 10] [0320042358] +23:24:50 [ 11] [ 6] [159046] +23:24:50 [ 70] [ 3] [301] +23:24:50 ============================================================================ +23:24:50 + + +waiting on router queue for slot.... +23:24:50 Sending to : +23:24:50 ============================================================================ +23:24:50 ============================================================================ +23:24:50 Slot Id : <49> +23:24:50 Transaction Type : RESPONSE +23:24:50 Received From : +23:24:50 ============================================================================ +23:24:50 FNo. Len. Field Value +23:24:50 ============================================================================ +23:24:50 [ 1] [ 4] [0810] +23:24:50 [ 7] [ 10] [0320042358] +23:24:50 [ 11] [ 6] [159046] +23:24:50 [ 39] [ 2] [00] +23:24:50 [ 70] [ 3] [301] +23:24:50 ============================================================================ +23:24:50 Calculate Source COMM Id = 2 +23:24:50 ============================================================================ +23:24:50 + + +waiting on router queue for slot.... +23:24:55 ============================================================================ +23:24:55 Slot Id : <81> +23:24:55 Transaction Type : REQUEST +23:24:55 Received From : +23:24:55 ============================================================================ +23:24:55 FNo. Len. Field Value +23:24:55 ============================================================================ +23:24:55 [ 1] [ 4] [0800] +23:24:55 [ 7] [ 10] [0320163242] +23:24:55 [ 11] [ 6] [006055] +23:24:55 [ 37] [ 12] [57923006055] +23:24:55 [ 70] [ 3] [301] +23:24:55 ============================================================================ +23:24:55 + + +waiting on router queue for slot.... +23:24:55 Sending to : +23:24:55 ============================================================================ +23:24:55 ============================================================================ +23:24:55 Slot Id : <81> +23:24:55 Transaction Type : RESPONSE +23:24:55 Received From : +23:24:55 ============================================================================ +23:24:55 FNo. Len. Field Value +23:24:55 ============================================================================ +23:24:55 [ 1] [ 4] [0810] +23:24:55 [ 7] [ 10] [0320163242] +23:24:55 [ 11] [ 6] [006055] +23:24:55 [ 37] [ 12] [579230060550] +23:24:55 [ 39] [ 2] [00] +23:24:55 [ 70] [ 3] [810] +23:24:55 ============================================================================ +23:24:55 Calculate Source COMM Id = 1 +23:24:55 ============================================================================ +23:24:55 + + +waiting on router queue for slot.... +23:24:58 ============================================================================ +23:24:58 Slot Id : <42> +23:24:58 Transaction Type : REQUEST +23:24:58 Received From : +23:24:58 ============================================================================ +23:24:58 FNo. Len. Field Value +23:24:58 ============================================================================ +23:24:58 [ 1] [ 4] [0800] +23:24:58 [ 2] [ 5] [02531] +23:24:58 [ 3] [ 6] [579238] +23:24:58 [ 7] [ 10] [0320162458] +23:24:58 [ 11] [ 6] [807771] +23:24:58 [ 15] [ 10] [0320162458] +23:24:58 [ 37] [ 11] [57923807771] +23:24:58 [ 70] [ 3] [001] +23:24:58 ============================================================================ +23:24:58 + + +waiting on router queue for slot.... +23:24:58 ============================================================================ +23:24:58 Slot Id : <42> +23:24:58 Transaction Type : RESPONSE +23:24:58 Received From : +23:24:58 ============================================================================ +23:24:58 FNo. Len. Field Value +23:24:58 ============================================================================ +23:24:58 [ 1] [ 4] [0810] +23:24:58 [ 7] [ 10] [0320162458] +23:24:58 [ 11] [ 6] [807771] +23:24:58 [ 15] [ 4] [0320] +23:24:58 [ 37] [ 12] [57923807771] +23:24:58 [ 39] [ 2] [00] +23:24:58 [ 70] [ 3] [001] +23:24:58 ============================================================================ +23:24:58 Sending to : +23:24:58 ============================================================================ +23:24:58 + + +waiting on router queue for slot.... +23:25:06 ============================================================================ +23:25:06 Slot Id : <88> +23:25:06 Transaction Type : REQUEST +23:25:06 Received From : +23:25:06 ============================================================================ +23:25:06 FNo. Len. Field Value +23:25:06 ============================================================================ +23:25:06 [ 1] [ 4] [0800] +23:25:06 [ 7] [ 10] [0320042414] +23:25:06 [ 11] [ 6] [159047] +23:25:06 [ 70] [ 3] [301] +23:25:06 ============================================================================ +23:25:06 + + +waiting on router queue for slot.... +23:25:06 Sending to : +23:25:06 ============================================================================ +23:25:06 ============================================================================ +23:25:06 Slot Id : <88> +23:25:06 Transaction Type : RESPONSE +23:25:06 Received From : +23:25:06 ============================================================================ +23:25:06 FNo. Len. Field Value +23:25:06 ============================================================================ +23:25:06 [ 1] [ 4] [0810] +23:25:06 [ 7] [ 10] [0320042414] +23:25:06 [ 11] [ 6] [159047] +23:25:06 [ 39] [ 2] [00] +23:25:06 [ 70] [ 3] [301] +23:25:06 ============================================================================ +23:25:06 Calculate Source COMM Id = 2 +23:25:06 ============================================================================ +23:25:06 + + +waiting on router queue for slot.... +23:25:17 ============================================================================ +23:25:17 Slot Id : <86> +23:25:17 Transaction Type : REQUEST +23:25:17 Received From : +23:25:17 ============================================================================ +23:25:17 FNo. Len. Field Value +23:25:17 ============================================================================ +23:25:17 [ 1] [ 4] [0800] +23:25:17 [ 7] [ 10] [0320042425] +23:25:17 [ 11] [ 6] [159048] +23:25:17 [ 70] [ 3] [301] +23:25:17 ============================================================================ +23:25:17 + + +waiting on router queue for slot.... +23:25:17 Sending to : +23:25:17 ============================================================================ +23:25:17 ============================================================================ +23:25:17 Slot Id : <86> +23:25:17 Transaction Type : RESPONSE +23:25:17 Received From : +23:25:17 ============================================================================ +23:25:17 FNo. Len. Field Value +23:25:17 ============================================================================ +23:25:17 [ 1] [ 4] [0810] +23:25:17 [ 7] [ 10] [0320042425] +23:25:17 [ 11] [ 6] [159048] +23:25:17 [ 39] [ 2] [00] +23:25:17 [ 70] [ 3] [301] +23:25:17 ============================================================================ +23:25:17 Calculate Source COMM Id = 2 +23:25:17 ============================================================================ +23:25:17 + + +waiting on router queue for slot.... +23:25:22 ============================================================================ +23:25:22 Slot Id : <89> +23:25:22 Transaction Type : REQUEST +23:25:22 Received From : +23:25:22 ============================================================================ +23:25:22 FNo. Len. Field Value +23:25:22 ============================================================================ +23:25:22 [ 1] [ 4] [0800] +23:25:22 [ 7] [ 10] [0321063712] +23:25:22 [ 11] [ 6] [233712] +23:25:22 [ 37] [ 12] [57923233712] +23:25:22 [ 70] [ 3] [301] +23:25:22 ============================================================================ +23:25:22 + + +waiting on router queue for slot.... +23:25:22 Sending to : +23:25:22 ============================================================================ +23:25:22 ============================================================================ +23:25:22 Slot Id : <89> +23:25:22 Transaction Type : RESPONSE +23:25:22 Received From : +23:25:22 ============================================================================ +23:25:22 FNo. Len. Field Value +23:25:22 ============================================================================ +23:25:22 [ 1] [ 4] [0810] +23:25:22 [ 7] [ 10] [0321063712] +23:25:22 [ 11] [ 6] [233712] +23:25:22 [ 37] [ 12] [579232337120] +23:25:22 [ 39] [ 2] [00] +23:25:22 [ 70] [ 3] [810] +23:25:22 ============================================================================ +23:25:22 Calculate Source COMM Id = 6 +23:25:22 ============================================================================ +23:25:22 + + +waiting on router queue for slot.... +23:25:29 ============================================================================ +23:25:29 Slot Id : <79> +23:25:29 Transaction Type : REQUEST +23:25:29 Received From : +23:25:29 ============================================================================ +23:25:29 FNo. Len. Field Value +23:25:29 ============================================================================ +23:25:29 [ 1] [ 4] [0800] +23:25:29 [ 7] [ 10] [0320042436] +23:25:29 [ 11] [ 6] [159049] +23:25:29 [ 70] [ 3] [301] +23:25:29 ============================================================================ +23:25:29 + + +waiting on router queue for slot.... +23:25:29 Sending to : +23:25:29 ============================================================================ +23:25:29 ============================================================================ +23:25:29 Slot Id : <79> +23:25:29 Transaction Type : RESPONSE +23:25:29 Received From : +23:25:29 ============================================================================ +23:25:29 FNo. Len. Field Value +23:25:29 ============================================================================ +23:25:29 [ 1] [ 4] [0810] +23:25:29 [ 7] [ 10] [0320042436] +23:25:29 [ 11] [ 6] [159049] +23:25:29 [ 39] [ 2] [00] +23:25:29 [ 70] [ 3] [301] +23:25:29 ============================================================================ +23:25:29 Calculate Source COMM Id = 2 +23:25:29 ============================================================================ +23:25:29 + + +waiting on router queue for slot.... +23:25:43 ============================================================================ +23:25:43 Slot Id : <59> +23:25:43 Transaction Type : REQUEST +23:25:43 Received From : +23:25:43 ============================================================================ +23:25:43 FNo. Len. Field Value +23:25:43 ============================================================================ +23:25:43 [ 1] [ 4] [0800] +23:25:43 [ 7] [ 10] [0320042452] +23:25:43 [ 11] [ 6] [159050] +23:25:43 [ 70] [ 3] [301] +23:25:43 ============================================================================ +23:25:43 + + +waiting on router queue for slot.... +23:25:43 Sending to : +23:25:43 ============================================================================ +23:25:43 ============================================================================ +23:25:43 Slot Id : <59> +23:25:43 Transaction Type : RESPONSE +23:25:43 Received From : +23:25:43 ============================================================================ +23:25:43 FNo. Len. Field Value +23:25:43 ============================================================================ +23:25:43 [ 1] [ 4] [0810] +23:25:43 [ 7] [ 10] [0320042452] +23:25:43 [ 11] [ 6] [159050] +23:25:43 [ 39] [ 2] [00] +23:25:43 [ 70] [ 3] [301] +23:25:43 ============================================================================ +23:25:43 Calculate Source COMM Id = 2 +23:25:43 ============================================================================ +23:25:43 + + +waiting on router queue for slot.... +23:25:54 ============================================================================ +23:25:54 Slot Id : <58> +23:25:54 Transaction Type : REQUEST +23:25:54 Received From : +23:25:54 ============================================================================ +23:25:54 FNo. Len. Field Value +23:25:54 ============================================================================ +23:25:54 [ 1] [ 4] [0800] +23:25:54 [ 7] [ 10] [0320042502] +23:25:54 [ 11] [ 6] [159051] +23:25:54 [ 70] [ 3] [301] +23:25:54 ============================================================================ +23:25:54 + + +waiting on router queue for slot.... +23:25:54 Sending to : +23:25:54 ============================================================================ +23:25:54 ============================================================================ +23:25:54 Slot Id : <58> +23:25:54 Transaction Type : RESPONSE +23:25:54 Received From : +23:25:54 ============================================================================ +23:25:54 FNo. Len. Field Value +23:25:54 ============================================================================ +23:25:54 [ 1] [ 4] [0810] +23:25:54 [ 7] [ 10] [0320042502] +23:25:54 [ 11] [ 6] [159051] +23:25:54 [ 39] [ 2] [00] +23:25:54 [ 70] [ 3] [301] +23:25:54 ============================================================================ +23:25:54 Calculate Source COMM Id = 2 +23:25:54 ============================================================================ +23:25:54 + + +waiting on router queue for slot.... +23:26:00 ============================================================================ +23:26:00 Slot Id : <84> +23:26:00 Transaction Type : REQUEST +23:26:00 Received From : +23:26:00 ============================================================================ +23:26:00 FNo. Len. Field Value +23:26:00 ============================================================================ +23:26:00 [ 1] [ 4] [0800] +23:26:00 [ 2] [ 5] [02531] +23:26:00 [ 3] [ 6] [579238] +23:26:00 [ 7] [ 10] [0320162600] +23:26:00 [ 11] [ 6] [807772] +23:26:00 [ 15] [ 10] [0320162600] +23:26:00 [ 37] [ 11] [57923807772] +23:26:00 [ 70] [ 3] [001] +23:26:00 ============================================================================ +23:26:00 + + +waiting on router queue for slot.... +23:26:00 ============================================================================ +23:26:00 Slot Id : <84> +23:26:00 Transaction Type : RESPONSE +23:26:00 Received From : +23:26:00 ============================================================================ +23:26:00 FNo. Len. Field Value +23:26:00 ============================================================================ +23:26:00 [ 1] [ 4] [0810] +23:26:00 [ 7] [ 10] [0320162600] +23:26:00 [ 11] [ 6] [807772] +23:26:00 [ 15] [ 4] [0320] +23:26:00 [ 37] [ 12] [57923807772] +23:26:00 [ 39] [ 2] [00] +23:26:00 [ 70] [ 3] [001] +23:26:00 ============================================================================ +23:26:00 Sending to : +23:26:00 ============================================================================ +23:26:00 + + +waiting on router queue for slot.... +23:26:09 ============================================================================ +23:26:09 Slot Id : <5> +23:26:09 Transaction Type : REQUEST +23:26:09 Received From : +23:26:09 ============================================================================ +23:26:09 FNo. Len. Field Value +23:26:09 ============================================================================ +23:26:09 [ 1] [ 4] [0800] +23:26:09 [ 7] [ 10] [0320042517] +23:26:09 [ 11] [ 6] [159052] +23:26:09 [ 70] [ 3] [301] +23:26:09 ============================================================================ +23:26:09 + + +waiting on router queue for slot.... +23:26:09 Sending to : +23:26:09 ============================================================================ +23:26:09 ============================================================================ +23:26:09 Slot Id : <5> +23:26:09 Transaction Type : RESPONSE +23:26:09 Received From : +23:26:09 ============================================================================ +23:26:09 FNo. Len. Field Value +23:26:09 ============================================================================ +23:26:09 [ 1] [ 4] [0810] +23:26:09 [ 7] [ 10] [0320042517] +23:26:09 [ 11] [ 6] [159052] +23:26:09 [ 39] [ 2] [00] +23:26:09 [ 70] [ 3] [301] +23:26:09 ============================================================================ +23:26:09 Calculate Source COMM Id = 2 +23:26:09 ============================================================================ +23:26:09 + + +waiting on router queue for slot.... +23:26:21 ============================================================================ +23:26:21 Slot Id : <67> +23:26:21 Transaction Type : REQUEST +23:26:21 Received From : +23:26:21 ============================================================================ +23:26:21 FNo. Len. Field Value +23:26:21 ============================================================================ +23:26:21 [ 1] [ 4] [0800] +23:26:21 [ 7] [ 10] [0320042528] +23:26:21 [ 11] [ 6] [159053] +23:26:21 [ 70] [ 3] [301] +23:26:21 ============================================================================ +23:26:21 + + +waiting on router queue for slot.... +23:26:21 Sending to : +23:26:21 ============================================================================ +23:26:21 ============================================================================ +23:26:21 Slot Id : <67> +23:26:21 Transaction Type : RESPONSE +23:26:21 Received From : +23:26:21 ============================================================================ +23:26:21 FNo. Len. Field Value +23:26:21 ============================================================================ +23:26:21 [ 1] [ 4] [0810] +23:26:21 [ 7] [ 10] [0320042528] +23:26:21 [ 11] [ 6] [159053] +23:26:21 [ 39] [ 2] [00] +23:26:21 [ 70] [ 3] [301] +23:26:21 ============================================================================ +23:26:21 Calculate Source COMM Id = 2 +23:26:21 ============================================================================ +23:26:21 + + +waiting on router queue for slot.... +23:26:21 ============================================================================ +23:26:21 Slot Id : <93> +23:26:21 Transaction Type : REQUEST +23:26:21 Received From : +23:26:21 ============================================================================ +23:26:21 FNo. Len. Field Value +23:26:21 ============================================================================ +23:26:21 [ 1] [ 4] [0800] +23:26:21 [ 7] [ 10] [0320162412] +23:26:21 [ 11] [ 6] [096719] +23:26:21 [ 37] [ 12] [57923096719] +23:26:21 [ 70] [ 3] [301] +23:26:21 ============================================================================ +23:26:21 + + +waiting on router queue for slot.... +23:26:21 Sending to : +23:26:21 ============================================================================ +23:26:21 ============================================================================ +23:26:21 Slot Id : <93> +23:26:21 Transaction Type : RESPONSE +23:26:21 Received From : +23:26:21 ============================================================================ +23:26:21 FNo. Len. Field Value +23:26:21 ============================================================================ +23:26:21 [ 1] [ 4] [0810] +23:26:21 [ 7] [ 10] [0320162412] +23:26:21 [ 11] [ 6] [096719] +23:26:21 [ 37] [ 12] [579230967190] +23:26:21 [ 39] [ 2] [00] +23:26:21 [ 70] [ 3] [810] +23:26:21 ============================================================================ +23:26:21 Calculate Source COMM Id = 4 +23:26:21 ============================================================================ +23:26:21 + + +waiting on router queue for slot.... +23:26:27 ============================================================================ +23:26:27 Slot Id : <62> +23:26:27 Transaction Type : REQUEST +23:26:27 Received From : +23:26:27 ============================================================================ +23:26:27 FNo. Len. Field Value +23:26:27 ============================================================================ +23:26:27 [ 1] [ 4] [0800] +23:26:27 [ 7] [ 10] [0321063817] +23:26:27 [ 11] [ 6] [233817] +23:26:27 [ 37] [ 12] [57923233817] +23:26:27 [ 70] [ 3] [301] +23:26:27 ============================================================================ +23:26:27 + + +waiting on router queue for slot.... +23:26:27 Sending to : +23:26:27 ============================================================================ +23:26:27 ============================================================================ +23:26:27 Slot Id : <62> +23:26:27 Transaction Type : RESPONSE +23:26:27 Received From : +23:26:27 ============================================================================ +23:26:27 FNo. Len. Field Value +23:26:27 ============================================================================ +23:26:27 [ 1] [ 4] [0810] +23:26:27 [ 7] [ 10] [0321063817] +23:26:27 [ 11] [ 6] [233817] +23:26:27 [ 37] [ 12] [579232338170] +23:26:27 [ 39] [ 2] [00] +23:26:27 [ 70] [ 3] [810] +23:26:27 ============================================================================ +23:26:27 Calculate Source COMM Id = 6 +23:26:27 ============================================================================ +23:26:27 + + +waiting on router queue for slot.... +23:26:35 ============================================================================ +23:26:35 Slot Id : <39> +23:26:35 Transaction Type : REQUEST +23:26:35 Received From : +23:26:35 ============================================================================ +23:26:35 FNo. Len. Field Value +23:26:35 ============================================================================ +23:26:35 [ 1] [ 4] [0800] +23:26:35 [ 7] [ 10] [0320042543] +23:26:35 [ 11] [ 6] [159054] +23:26:35 [ 70] [ 3] [301] +23:26:35 ============================================================================ +23:26:35 + + +waiting on router queue for slot.... +23:26:35 Sending to : +23:26:35 ============================================================================ +23:26:35 ============================================================================ +23:26:35 Slot Id : <39> +23:26:35 Transaction Type : RESPONSE +23:26:35 Received From : +23:26:35 ============================================================================ +23:26:35 FNo. Len. Field Value +23:26:35 ============================================================================ +23:26:35 [ 1] [ 4] [0810] +23:26:35 [ 7] [ 10] [0320042543] +23:26:35 [ 11] [ 6] [159054] +23:26:35 [ 39] [ 2] [00] +23:26:35 [ 70] [ 3] [301] +23:26:35 ============================================================================ +23:26:35 Calculate Source COMM Id = 2 +23:26:35 ============================================================================ +23:26:35 + + +waiting on router queue for slot.... +23:26:45 ============================================================================ +23:26:45 Slot Id : <56> +23:26:45 Transaction Type : REQUEST +23:26:45 Received From : +23:26:45 ============================================================================ +23:26:45 FNo. Len. Field Value +23:26:45 ============================================================================ +23:26:45 [ 1] [ 4] [0800] +23:26:45 [ 7] [ 10] [0320042553] +23:26:45 [ 11] [ 6] [159055] +23:26:45 [ 70] [ 3] [301] +23:26:45 ============================================================================ +23:26:45 + + +waiting on router queue for slot.... +23:26:45 Sending to : +23:26:45 ============================================================================ +23:26:45 ============================================================================ +23:26:45 Slot Id : <56> +23:26:45 Transaction Type : RESPONSE +23:26:45 Received From : +23:26:45 ============================================================================ +23:26:45 FNo. Len. Field Value +23:26:45 ============================================================================ +23:26:45 [ 1] [ 4] [0810] +23:26:45 [ 7] [ 10] [0320042553] +23:26:45 [ 11] [ 6] [159055] +23:26:45 [ 39] [ 2] [00] +23:26:45 [ 70] [ 3] [301] +23:26:45 ============================================================================ +23:26:45 Calculate Source COMM Id = 2 +23:26:45 ============================================================================ +23:26:45 + + +waiting on router queue for slot.... +23:26:47 ============================================================================ +23:26:47 Slot Id : <82> +23:26:47 Transaction Type : REQUEST +23:26:47 Received From : +23:26:47 ============================================================================ +23:26:47 FNo. Len. Field Value +23:26:47 ============================================================================ +23:26:47 [ 1] [ 4] [0800] +23:26:47 [ 7] [ 10] [0320232635] +23:26:47 [ 11] [ 6] [061190] +23:26:47 [ 37] [ 12] [507923061190] +23:26:47 [ 70] [ 3] [ ] +23:26:47 ============================================================================ +23:26:47 + + +waiting on router queue for slot.... +23:26:47 Sending to : +23:26:47 ============================================================================ +23:26:47 ============================================================================ +23:26:47 Slot Id : <82> +23:26:47 Transaction Type : RESPONSE +23:26:47 Received From : +23:26:47 ============================================================================ +23:26:47 FNo. Len. Field Value +23:26:47 ============================================================================ +23:26:47 [ 1] [ 4] [0810] +23:26:47 [ 7] [ 10] [0320232635] +23:26:47 [ 11] [ 6] [061190] +23:26:47 [ 37] [ 12] [507923061190] +23:26:47 [ 39] [ 2] [91] +23:26:47 [ 70] [ 3] [ ] +23:26:47 ============================================================================ +23:26:47 Calculate Source COMM Id = 3 +23:26:47 ============================================================================ +23:26:47 + + +waiting on router queue for slot.... +23:26:56 ============================================================================ +23:26:56 Slot Id : <51> +23:26:56 Transaction Type : REQUEST +23:26:56 Received From : +23:26:56 ============================================================================ +23:26:56 FNo. Len. Field Value +23:26:56 ============================================================================ +23:26:56 [ 1] [ 4] [0800] +23:26:56 [ 7] [ 10] [0320042604] +23:26:56 [ 11] [ 6] [159056] +23:26:56 [ 70] [ 3] [301] +23:26:56 ============================================================================ +23:26:56 + + +waiting on router queue for slot.... +23:26:56 Sending to : +23:26:56 ============================================================================ +23:26:56 ============================================================================ +23:26:56 Slot Id : <51> +23:26:56 Transaction Type : RESPONSE +23:26:56 Received From : +23:26:56 ============================================================================ +23:26:56 FNo. Len. Field Value +23:26:56 ============================================================================ +23:26:56 [ 1] [ 4] [0810] +23:26:56 [ 7] [ 10] [0320042604] +23:26:56 [ 11] [ 6] [159056] +23:26:56 [ 39] [ 2] [00] +23:26:56 [ 70] [ 3] [301] +23:26:56 ============================================================================ +23:26:56 Calculate Source COMM Id = 2 +23:26:56 ============================================================================ +23:26:56 + + +waiting on router queue for slot.... +23:27:02 ============================================================================ +23:27:02 Slot Id : <64> +23:27:02 Transaction Type : REQUEST +23:27:02 Received From : +23:27:02 ============================================================================ +23:27:02 FNo. Len. Field Value +23:27:02 ============================================================================ +23:27:02 [ 1] [ 4] [0800] +23:27:02 [ 2] [ 5] [02531] +23:27:02 [ 3] [ 6] [579238] +23:27:02 [ 7] [ 10] [0320162702] +23:27:02 [ 11] [ 6] [807773] +23:27:02 [ 15] [ 10] [0320162702] +23:27:02 [ 37] [ 11] [57923807773] +23:27:02 [ 70] [ 3] [001] +23:27:02 ============================================================================ +23:27:02 + + +waiting on router queue for slot.... +23:27:02 ============================================================================ +23:27:02 Slot Id : <64> +23:27:02 Transaction Type : RESPONSE +23:27:02 Received From : +23:27:02 ============================================================================ +23:27:02 FNo. Len. Field Value +23:27:02 ============================================================================ +23:27:02 [ 1] [ 4] [0810] +23:27:02 [ 7] [ 10] [0320162702] +23:27:02 [ 11] [ 6] [807773] +23:27:02 [ 15] [ 4] [0320] +23:27:02 [ 37] [ 12] [57923807773] +23:27:02 [ 39] [ 2] [00] +23:27:02 [ 70] [ 3] [001] +23:27:02 ============================================================================ +23:27:02 Sending to : +23:27:02 ============================================================================ +23:27:02 + + +waiting on router queue for slot.... +23:27:06 ============================================================================ +23:27:06 Slot Id : <100> +23:27:06 Transaction Type : REQUEST +23:27:06 Received From : +23:27:06 ============================================================================ +23:27:06 FNo. Len. Field Value +23:27:06 ============================================================================ +23:27:06 [ 1] [ 4] [0800] +23:27:06 [ 7] [ 10] [0320042615] +23:27:06 [ 11] [ 6] [159057] +23:27:06 [ 70] [ 3] [301] +23:27:06 ============================================================================ +23:27:06 + + +waiting on router queue for slot.... +23:27:06 Sending to : +23:27:06 ============================================================================ +23:27:06 ============================================================================ +23:27:06 Slot Id : <100> +23:27:06 Transaction Type : RESPONSE +23:27:06 Received From : +23:27:06 ============================================================================ +23:27:06 FNo. Len. Field Value +23:27:06 ============================================================================ +23:27:06 [ 1] [ 4] [0810] +23:27:06 [ 7] [ 10] [0320042615] +23:27:06 [ 11] [ 6] [159057] +23:27:06 [ 39] [ 2] [00] +23:27:06 [ 70] [ 3] [301] +23:27:06 ============================================================================ +23:27:06 Calculate Source COMM Id = 2 +23:27:06 ============================================================================ +23:27:06 + + +waiting on router queue for slot.... +23:27:18 ============================================================================ +23:27:18 Slot Id : <65> +23:27:18 Transaction Type : REQUEST +23:27:18 Received From : +23:27:18 ============================================================================ +23:27:18 FNo. Len. Field Value +23:27:18 ============================================================================ +23:27:18 [ 1] [ 4] [0800] +23:27:18 [ 7] [ 10] [0320042625] +23:27:18 [ 11] [ 6] [159058] +23:27:18 [ 70] [ 3] [301] +23:27:18 ============================================================================ +23:27:18 + + +waiting on router queue for slot.... +23:27:18 Sending to : +23:27:18 ============================================================================ +23:27:18 ============================================================================ +23:27:18 Slot Id : <65> +23:27:18 Transaction Type : RESPONSE +23:27:18 Received From : +23:27:18 ============================================================================ +23:27:18 FNo. Len. Field Value +23:27:18 ============================================================================ +23:27:18 [ 1] [ 4] [0810] +23:27:18 [ 7] [ 10] [0320042625] +23:27:18 [ 11] [ 6] [159058] +23:27:18 [ 39] [ 2] [00] +23:27:18 [ 70] [ 3] [301] +23:27:18 ============================================================================ +23:27:18 Calculate Source COMM Id = 2 +23:27:18 ============================================================================ +23:27:18 + + +waiting on router queue for slot.... +23:27:25 ============================================================================ +23:27:25 Slot Id : <91> +23:27:25 Transaction Type : REQUEST +23:27:25 Received From : +23:27:25 ============================================================================ +23:27:25 FNo. Len. Field Value +23:27:25 ============================================================================ +23:27:25 [ 1] [ 4] [0200] +23:27:25 [ 2] [ 16] [6213544000167822] +23:27:25 [ 3] [ 6] [011000] +23:27:25 [ 4] [ 12] [000010000000] +23:27:25 [ 7] [ 10] [0320233512] +23:27:25 [ 11] [ 6] [240421] +23:27:25 [ 12] [ 6] [233512] +23:27:25 [ 13] [ 4] [0320] +23:27:25 [ 14] [ 4] [4912] +23:27:25 [ 15] [ 4] [0320] +23:27:25 [ 18] [ 4] [6011] +23:27:25 [ 22] [ 3] [900] +23:27:25 [ 25] [ 2] [02] +23:27:25 [ 28] [ 9] [D00002000] +23:27:25 [ 32] [ 6] [220699] +23:27:25 [ 35] [ 32] [6213544000167822=491212016782299] +23:27:25 [ 37] [ 12] [507900430295] +23:27:25 [ 41] [ 8] [01002100] +23:27:25 [ 42] [ 15] [APTRA ] +23:27:25 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +23:27:25 [ 49] [ 3] [418] +23:27:25 [ 52] [ 16] [389CA68090D7897E] +23:27:25 ============================================================================ +23:27:25 + + +waiting on router queue for slot.... +23:27:25 Sending to : +23:27:25 ============================================================================ +23:27:25 Sending to : +23:27:25 ============================================================================ +23:27:26 ============================================================================ +23:27:26 Slot Id : <91> +23:27:26 Transaction Type : REQUEST +23:27:26 Received From : +23:27:26 ============================================================================ +23:27:26 FNo. Len. Field Value +23:27:26 ============================================================================ +23:27:26 [ 1] [ 4] [0200] +23:27:26 [ 2] [ 16] [6213544000167822] +23:27:26 [ 3] [ 6] [011000] +23:27:26 [ 4] [ 12] [000010000000] +23:27:26 [ 7] [ 10] [0320233512] +23:27:26 [ 11] [ 6] [240421] +23:27:26 [ 12] [ 6] [233512] +23:27:26 [ 13] [ 4] [0320] +23:27:26 [ 14] [ 4] [4912] +23:27:26 [ 15] [ 4] [0320] +23:27:26 [ 18] [ 4] [6011] +23:27:26 [ 22] [ 3] [900] +23:27:26 [ 25] [ 2] [02] +23:27:26 [ 28] [ 9] [D00002000] +23:27:26 [ 32] [ 6] [220699] +23:27:26 [ 35] [ 32] [6213544000167822=491212016782299] +23:27:26 [ 37] [ 12] [507900430295] +23:27:26 [ 41] [ 8] [01002100] +23:27:26 [ 42] [ 15] [APTRA ] +23:27:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +23:27:26 [ 49] [ 3] [418] +23:27:26 [ 52] [ 16] [389CA68090D7897E] +23:27:26 ============================================================================ +23:27:26 + + +waiting on router queue for slot.... +23:27:26 Sending to : +23:27:26 ============================================================================ +23:27:26 ============================================================================ +23:27:26 Slot Id : <91> +23:27:26 Transaction Type : REQUEST +23:27:26 Received From : +23:27:26 ============================================================================ +23:27:26 FNo. Len. Field Value +23:27:26 ============================================================================ +23:27:26 [ 1] [ 4] [0200] +23:27:26 [ 2] [ 16] [6213544000167822] +23:27:26 [ 3] [ 6] [011000] +23:27:26 [ 4] [ 12] [000010000000] +23:27:26 [ 7] [ 10] [0320233512] +23:27:26 [ 11] [ 6] [240421] +23:27:26 [ 12] [ 6] [233512] +23:27:26 [ 13] [ 4] [0320] +23:27:26 [ 14] [ 4] [4912] +23:27:26 [ 15] [ 4] [0320] +23:27:26 [ 18] [ 4] [6011] +23:27:26 [ 22] [ 3] [900] +23:27:26 [ 25] [ 2] [02] +23:27:26 [ 28] [ 9] [D00002000] +23:27:26 [ 32] [ 6] [220699] +23:27:26 [ 35] [ 32] [6213544000167822=491212016782299] +23:27:26 [ 37] [ 12] [507900430295] +23:27:26 [ 41] [ 8] [01002100] +23:27:26 [ 42] [ 15] [APTRA ] +23:27:26 [ 43] [ 40] [LVB HEADOFFICE LAOS VIENTIANE VI] +23:27:26 [ 49] [ 3] [418] +23:27:26 [ 52] [ 16] [A05258412246019A] +23:27:26 ============================================================================ +23:27:26 + + +waiting on router queue for slot.... +23:27:26 Sending to : <0> +23:27:26 ============================================================================ +23:27:27 ============================================================================ +23:27:27 Slot Id : <91> +23:27:27 Transaction Type : RESPONSE +23:27:27 Received From : +23:27:27 ============================================================================ +23:27:27 FNo. Len. Field Value +23:27:27 ============================================================================ +23:27:27 [ 1] [ 4] [0210] +23:27:27 [ 2] [ 16] [6213544000167822] +23:27:27 [ 3] [ 6] [011000] +23:27:27 [ 4] [ 12] [000010000000] +23:27:27 [ 7] [ 10] [0320233512] +23:27:27 [ 11] [ 6] [240421] +23:27:27 [ 12] [ 6] [233512] +23:27:27 [ 13] [ 4] [0320] +23:27:27 [ 15] [ 4] [0320] +23:27:27 [ 18] [ 4] [6011] +23:27:27 [ 32] [ 6] [220699] +23:27:27 [ 35] [ 32] [6213544000167822=491212016782299] +23:27:27 [ 37] [ 12] [507900430295] +23:27:27 [ 38] [ 6] [470743] +23:27:27 [ 39] [ 2] [00] +23:27:27 [ 41] [ 8] [01002100] +23:27:27 [ 49] [ 3] [418] +23:27:27 [ 54] [ 40] [1001418C0000492575541002418C000039057554] +23:27:27 ============================================================================ +23:27:27 Sending to : +23:27:27 ============================================================================ +23:27:27 + + +waiting on router queue for slot.... +23:27:28 ============================================================================ +23:27:28 Slot Id : <91> +23:27:28 Transaction Type : RESPONSE +23:27:28 Received From : +23:27:28 ============================================================================ +23:27:28 FNo. Len. Field Value +23:27:28 ============================================================================ +23:27:28 [ 1] [ 4] [0210] +23:27:28 [ 2] [ 16] [6213544000167822] +23:27:28 [ 3] [ 6] [011000] +23:27:28 [ 4] [ 12] [000010000000] +23:27:28 [ 7] [ 10] [0320233512] +23:27:28 [ 11] [ 6] [240421] +23:27:28 [ 12] [ 6] [233512] +23:27:28 [ 13] [ 4] [0320] +23:27:28 [ 15] [ 4] [0320] +23:27:28 [ 18] [ 4] [6011] +23:27:28 [ 32] [ 6] [220699] +23:27:28 [ 35] [ 32] [6213544000167822=491212016782299] +23:27:28 [ 37] [ 12] [507900430295] +23:27:28 [ 38] [ 6] [470743] +23:27:28 [ 39] [ 2] [00] +23:27:28 [ 41] [ 8] [01002100] +23:27:28 [ 49] [ 3] [418] +23:27:28 [ 54] [ 40] [1001418C0000492575541002418C000039057554] +23:27:28 ============================================================================ +23:27:28 Calculate Source COMM Id = 1 +23:27:28 ============================================================================ +23:27:28 + + +waiting on router queue for slot.... +23:27:32 ============================================================================ +23:27:32 Slot Id : <72> +23:27:32 Transaction Type : REQUEST +23:27:32 Received From : +23:27:32 ============================================================================ +23:27:32 FNo. Len. Field Value +23:27:32 ============================================================================ +23:27:32 [ 1] [ 4] [0800] +23:27:32 [ 7] [ 10] [0321063922] +23:27:32 [ 11] [ 6] [233922] +23:27:32 [ 37] [ 12] [57923233922] +23:27:32 [ 70] [ 3] [301] +23:27:32 ============================================================================ +23:27:32 + + +waiting on router queue for slot.... +23:27:32 Sending to : +23:27:32 ============================================================================ +23:27:32 ============================================================================ +23:27:32 Slot Id : <72> +23:27:32 Transaction Type : RESPONSE +23:27:32 Received From : +23:27:32 ============================================================================ +23:27:32 FNo. Len. Field Value +23:27:32 ============================================================================ +23:27:32 [ 1] [ 4] [0810] +23:27:32 [ 7] [ 10] [0321063922] +23:27:32 [ 11] [ 6] [233922] +23:27:32 [ 37] [ 12] [579232339220] +23:27:32 [ 39] [ 2] [00] +23:27:32 [ 70] [ 3] [810] +23:27:32 ============================================================================ +23:27:32 Calculate Source COMM Id = 6 +23:27:32 ============================================================================ +23:27:32 + + +waiting on router queue for slot.... +23:27:34 ============================================================================ +23:27:34 Slot Id : <76> +23:27:34 Transaction Type : REQUEST +23:27:34 Received From : +23:27:34 ============================================================================ +23:27:34 FNo. Len. Field Value +23:27:34 ============================================================================ +23:27:34 [ 1] [ 4] [0800] +23:27:34 [ 7] [ 10] [0320042641] +23:27:34 [ 11] [ 6] [159059] +23:27:34 [ 70] [ 3] [301] +23:27:34 ============================================================================ +23:27:34 + + +waiting on router queue for slot.... +23:27:34 Sending to : +23:27:34 ============================================================================ +23:27:34 ============================================================================ +23:27:34 Slot Id : <76> +23:27:34 Transaction Type : RESPONSE +23:27:34 Received From : +23:27:34 ============================================================================ +23:27:34 FNo. Len. Field Value +23:27:34 ============================================================================ +23:27:34 [ 1] [ 4] [0810] +23:27:34 [ 7] [ 10] [0320042641] +23:27:34 [ 11] [ 6] [159059] +23:27:34 [ 39] [ 2] [00] +23:27:34 [ 70] [ 3] [301] +23:27:34 ============================================================================ +23:27:34 Calculate Source COMM Id = 2 +23:27:34 ============================================================================ +23:27:34 + + +waiting on router queue for slot.... +23:27:45 ============================================================================ +23:27:45 Slot Id : <90> +23:27:45 Transaction Type : REQUEST +23:27:45 Received From : +23:27:45 ============================================================================ +23:27:45 FNo. Len. Field Value +23:27:45 ============================================================================ +23:27:45 [ 1] [ 4] [0800] +23:27:45 [ 7] [ 10] [0320042652] +23:27:45 [ 11] [ 6] [159060] +23:27:45 [ 70] [ 3] [301] +23:27:45 ============================================================================ +23:27:45 + + +waiting on router queue for slot.... +23:27:45 Sending to : +23:27:45 ============================================================================ +23:27:45 ============================================================================ +23:27:45 Slot Id : <90> +23:27:45 Transaction Type : RESPONSE +23:27:45 Received From : +23:27:45 ============================================================================ +23:27:45 FNo. Len. Field Value +23:27:45 ============================================================================ +23:27:45 [ 1] [ 4] [0810] +23:27:45 [ 7] [ 10] [0320042652] +23:27:45 [ 11] [ 6] [159060] +23:27:45 [ 39] [ 2] [00] +23:27:45 [ 70] [ 3] [301] +23:27:45 ============================================================================ +23:27:45 Calculate Source COMM Id = 2 +23:27:45 ============================================================================ +23:27:45 + + +waiting on router queue for slot.... +23:28:00 ============================================================================ +23:28:00 Slot Id : <114> +23:28:00 Transaction Type : REQUEST +23:28:00 Received From : +23:28:00 ============================================================================ +23:28:00 FNo. Len. Field Value +23:28:00 ============================================================================ +23:28:00 [ 1] [ 4] [0800] +23:28:00 [ 7] [ 10] [0320042708] +23:28:00 [ 11] [ 6] [159061] +23:28:00 [ 70] [ 3] [301] +23:28:00 ============================================================================ +23:28:00 + + +waiting on router queue for slot.... +23:28:00 Sending to : +23:28:00 ============================================================================ +23:28:00 ============================================================================ +23:28:00 Slot Id : <114> +23:28:00 Transaction Type : RESPONSE +23:28:00 Received From : +23:28:00 ============================================================================ +23:28:00 FNo. Len. Field Value +23:28:00 ============================================================================ +23:28:00 [ 1] [ 4] [0810] +23:28:00 [ 7] [ 10] [0320042708] +23:28:00 [ 11] [ 6] [159061] +23:28:00 [ 39] [ 2] [00] +23:28:00 [ 70] [ 3] [301] +23:28:00 ============================================================================ +23:28:00 Calculate Source COMM Id = 2 +23:28:00 ============================================================================ +23:28:00 + + +waiting on router queue for slot.... +23:28:04 ============================================================================ +23:28:04 Slot Id : <106> +23:28:04 Transaction Type : REQUEST +23:28:04 Received From : +23:28:04 ============================================================================ +23:28:04 FNo. Len. Field Value +23:28:04 ============================================================================ +23:28:04 [ 1] [ 4] [0800] +23:28:04 [ 2] [ 5] [02531] +23:28:04 [ 3] [ 6] [579238] +23:28:04 [ 7] [ 10] [0320162804] +23:28:04 [ 11] [ 6] [807774] +23:28:04 [ 15] [ 10] [0320162804] +23:28:04 [ 37] [ 11] [57923807774] +23:28:04 [ 70] [ 3] [001] +23:28:04 ============================================================================ +23:28:04 + + +waiting on router queue for slot.... +23:28:04 ============================================================================ +23:28:04 Slot Id : <106> +23:28:04 Transaction Type : RESPONSE +23:28:04 Received From : +23:28:04 ============================================================================ +23:28:04 FNo. Len. Field Value +23:28:04 ============================================================================ +23:28:04 [ 1] [ 4] [0810] +23:28:04 [ 7] [ 10] [0320162804] +23:28:04 [ 11] [ 6] [807774] +23:28:04 [ 15] [ 4] [0320] +23:28:04 [ 37] [ 12] [57923807774] +23:28:04 [ 39] [ 2] [00] +23:28:04 [ 70] [ 3] [001] +23:28:04 ============================================================================ +23:28:04 Sending to : +23:28:04 ============================================================================ +23:28:04 + + +waiting on router queue for slot.... +23:28:11 ============================================================================ +23:28:11 Slot Id : <83> +23:28:11 Transaction Type : REQUEST +23:28:11 Received From : +23:28:11 ============================================================================ +23:28:11 FNo. Len. Field Value +23:28:11 ============================================================================ +23:28:11 [ 1] [ 4] [0800] +23:28:11 [ 7] [ 10] [0320042719] +23:28:11 [ 11] [ 6] [159062] +23:28:11 [ 70] [ 3] [301] +23:28:11 ============================================================================ +23:28:11 + + +waiting on router queue for slot.... +23:28:11 Sending to : +23:28:11 ============================================================================ +23:28:11 ============================================================================ +23:28:11 Slot Id : <83> +23:28:11 Transaction Type : RESPONSE +23:28:11 Received From : +23:28:11 ============================================================================ +23:28:11 FNo. Len. Field Value +23:28:11 ============================================================================ +23:28:11 [ 1] [ 4] [0810] +23:28:11 [ 7] [ 10] [0320042719] +23:28:11 [ 11] [ 6] [159062] +23:28:11 [ 39] [ 2] [00] +23:28:11 [ 70] [ 3] [301] +23:28:11 ============================================================================ +23:28:11 Calculate Source COMM Id = 2 +23:28:11 ============================================================================ +23:28:11 + + +waiting on router queue for slot.... +23:28:22 ============================================================================ +23:28:22 Slot Id : <66> +23:28:22 Transaction Type : REQUEST +23:28:22 Received From : +23:28:22 ============================================================================ +23:28:22 FNo. Len. Field Value +23:28:22 ============================================================================ +23:28:22 [ 1] [ 4] [0800] +23:28:22 [ 7] [ 10] [0320042730] +23:28:22 [ 11] [ 6] [159063] +23:28:22 [ 70] [ 3] [301] +23:28:22 ============================================================================ +23:28:22 + + +waiting on router queue for slot.... +23:28:22 Sending to : +23:28:22 ============================================================================ +23:28:22 ============================================================================ +23:28:22 Slot Id : <66> +23:28:22 Transaction Type : RESPONSE +23:28:22 Received From : +23:28:22 ============================================================================ +23:28:22 FNo. Len. Field Value +23:28:22 ============================================================================ +23:28:22 [ 1] [ 4] [0810] +23:28:22 [ 7] [ 10] [0320042730] +23:28:22 [ 11] [ 6] [159063] +23:28:22 [ 39] [ 2] [00] +23:28:22 [ 70] [ 3] [301] +23:28:22 ============================================================================ +23:28:22 Calculate Source COMM Id = 2 +23:28:22 ============================================================================ +23:28:22 + + +waiting on router queue for slot.... +23:28:33 ============================================================================ +23:28:33 Slot Id : <99> +23:28:33 Transaction Type : REQUEST +23:28:33 Received From : +23:28:33 ============================================================================ +23:28:33 FNo. Len. Field Value +23:28:33 ============================================================================ +23:28:33 [ 1] [ 4] [0800] +23:28:33 [ 7] [ 10] [0320042741] +23:28:33 [ 11] [ 6] [159064] +23:28:33 [ 70] [ 3] [301] +23:28:33 ============================================================================ +23:28:33 + + +waiting on router queue for slot.... +23:28:33 Sending to : +23:28:33 ============================================================================ +23:28:33 ============================================================================ +23:28:33 Slot Id : <99> +23:28:33 Transaction Type : RESPONSE +23:28:33 Received From : +23:28:33 ============================================================================ +23:28:33 FNo. Len. Field Value +23:28:33 ============================================================================ +23:28:33 [ 1] [ 4] [0810] +23:28:33 [ 7] [ 10] [0320042741] +23:28:33 [ 11] [ 6] [159064] +23:28:33 [ 39] [ 2] [00] +23:28:33 [ 70] [ 3] [301] +23:28:33 ============================================================================ +23:28:33 Calculate Source COMM Id = 2 +23:28:33 ============================================================================ +23:28:33 + + +waiting on router queue for slot.... +23:28:37 ============================================================================ +23:28:37 Slot Id : <107> +23:28:37 Transaction Type : REQUEST +23:28:37 Received From : +23:28:37 ============================================================================ +23:28:37 FNo. Len. Field Value +23:28:37 ============================================================================ +23:28:37 [ 1] [ 4] [0800] +23:28:37 [ 7] [ 10] [0321064027] +23:28:37 [ 11] [ 6] [234027] +23:28:37 [ 37] [ 12] [57923234027] +23:28:37 [ 70] [ 3] [301] +23:28:37 ============================================================================ +23:28:37 + + +waiting on router queue for slot.... +23:28:37 Sending to : +23:28:37 ============================================================================ +23:28:37 ============================================================================ +23:28:37 Slot Id : <107> +23:28:37 Transaction Type : RESPONSE +23:28:37 Received From : +23:28:37 ============================================================================ +23:28:37 FNo. Len. Field Value +23:28:37 ============================================================================ +23:28:37 [ 1] [ 4] [0810] +23:28:37 [ 7] [ 10] [0321064027] +23:28:37 [ 11] [ 6] [234027] +23:28:37 [ 37] [ 12] [579232340270] +23:28:37 [ 39] [ 2] [00] +23:28:37 [ 70] [ 3] [810] +23:28:37 ============================================================================ +23:28:37 Calculate Source COMM Id = 6 +23:28:37 ============================================================================ +23:28:37 + + +waiting on router queue for slot.... +23:28:44 ============================================================================ +23:28:44 Slot Id : <121> +23:28:44 Transaction Type : REQUEST +23:28:44 Received From : +23:28:44 ============================================================================ +23:28:44 FNo. Len. Field Value +23:28:44 ============================================================================ +23:28:44 [ 1] [ 4] [0800] +23:28:44 [ 7] [ 10] [0320042751] +23:28:44 [ 11] [ 6] [159065] +23:28:44 [ 70] [ 3] [301] +23:28:44 ============================================================================ +23:28:44 + + +waiting on router queue for slot.... +23:28:44 Sending to : +23:28:44 ============================================================================ +23:28:44 ============================================================================ +23:28:44 Slot Id : <121> +23:28:44 Transaction Type : RESPONSE +23:28:44 Received From : +23:28:44 ============================================================================ +23:28:44 FNo. Len. Field Value +23:28:44 ============================================================================ +23:28:44 [ 1] [ 4] [0810] +23:28:44 [ 7] [ 10] [0320042751] +23:28:44 [ 11] [ 6] [159065] +23:28:44 [ 39] [ 2] [00] +23:28:44 [ 70] [ 3] [301] +23:28:44 ============================================================================ +23:28:44 Calculate Source COMM Id = 2 +23:28:44 ============================================================================ +23:28:44 + + +waiting on router queue for slot.... +23:28:48 ============================================================================ +23:28:48 Slot Id : <118> +23:28:48 Transaction Type : REQUEST +23:28:48 Received From : +23:28:48 ============================================================================ +23:28:48 FNo. Len. Field Value +23:28:48 ============================================================================ +23:28:48 [ 1] [ 4] [0800] +23:28:48 [ 7] [ 10] [0320162844] +23:28:48 [ 11] [ 6] [054992] +23:28:48 [ 37] [ 12] [507923054992] +23:28:48 [ 70] [ 3] [001] +23:28:48 ============================================================================ +23:28:48 + + +waiting on router queue for slot.... +23:28:48 Sending to : +23:28:48 ============================================================================ +23:28:48 ============================================================================ +23:28:48 Slot Id : <118> +23:28:48 Transaction Type : RESPONSE +23:28:48 Received From : +23:28:48 ============================================================================ +23:28:48 FNo. Len. Field Value +23:28:48 ============================================================================ +23:28:48 [ 1] [ 4] [0810] +23:28:48 [ 7] [ 10] [0320162844] +23:28:48 [ 11] [ 6] [054992] +23:28:48 [ 37] [ 12] [507923054992] +23:28:48 [ 39] [ 2] [00] +23:28:48 [ 70] [ 3] [001] +23:28:48 ============================================================================ +23:28:48 Calculate Source COMM Id = 0 +23:28:48 ============================================================================ +23:28:48 + + +waiting on router queue for slot.... +23:28:54 ============================================================================ +23:28:54 Slot Id : <115> +23:28:54 Transaction Type : REQUEST +23:28:54 Received From : +23:28:54 ============================================================================ +23:28:54 FNo. Len. Field Value +23:28:54 ============================================================================ +23:28:54 [ 1] [ 4] [0800] +23:28:54 [ 7] [ 10] [0320042802] +23:28:54 [ 11] [ 6] [159066] +23:28:54 [ 70] [ 3] [301] +23:28:54 ============================================================================ +23:28:54 + + +waiting on router queue for slot.... +23:28:54 Sending to : +23:28:54 ============================================================================ +23:28:54 ============================================================================ +23:28:54 Slot Id : <115> +23:28:54 Transaction Type : RESPONSE +23:28:54 Received From : +23:28:54 ============================================================================ +23:28:54 FNo. Len. Field Value +23:28:54 ============================================================================ +23:28:54 [ 1] [ 4] [0810] +23:28:54 [ 7] [ 10] [0320042802] +23:28:54 [ 11] [ 6] [159066] +23:28:54 [ 39] [ 2] [00] +23:28:54 [ 70] [ 3] [301] +23:28:54 ============================================================================ +23:28:54 Calculate Source COMM Id = 2 +23:28:54 ============================================================================ +23:28:54 + + +waiting on router queue for slot.... +23:29:06 ============================================================================ +23:29:06 Slot Id : <92> +23:29:06 Transaction Type : REQUEST +23:29:06 Received From : +23:29:06 ============================================================================ +23:29:06 FNo. Len. Field Value +23:29:06 ============================================================================ +23:29:06 [ 1] [ 4] [0800] +23:29:06 [ 7] [ 10] [0320042813] +23:29:06 [ 11] [ 6] [159067] +23:29:06 [ 70] [ 3] [301] +23:29:06 ============================================================================ +23:29:06 + + +waiting on router queue for slot.... +23:29:06 Sending to : +23:29:06 ============================================================================ +23:29:06 ============================================================================ +23:29:06 Slot Id : <92> +23:29:06 Transaction Type : RESPONSE +23:29:06 Received From : +23:29:06 ============================================================================ +23:29:06 FNo. Len. Field Value +23:29:06 ============================================================================ +23:29:06 [ 1] [ 4] [0810] +23:29:06 [ 7] [ 10] [0320042813] +23:29:06 [ 11] [ 6] [159067] +23:29:06 [ 39] [ 2] [00] +23:29:06 [ 70] [ 3] [301] +23:29:06 ============================================================================ +23:29:06 Calculate Source COMM Id = 2 +23:29:06 ============================================================================ +23:29:06 + + +waiting on router queue for slot.... +23:29:06 ============================================================================ +23:29:06 Slot Id : <113> +23:29:06 Transaction Type : REQUEST +23:29:06 Received From : +23:29:06 ============================================================================ +23:29:06 FNo. Len. Field Value +23:29:06 ============================================================================ +23:29:06 [ 1] [ 4] [0800] +23:29:06 [ 2] [ 5] [02531] +23:29:06 [ 3] [ 6] [579238] +23:29:06 [ 7] [ 10] [0320162906] +23:29:06 [ 11] [ 6] [807775] +23:29:06 [ 15] [ 10] [0320162906] +23:29:06 [ 37] [ 11] [57923807775] +23:29:06 [ 70] [ 3] [001] +23:29:06 ============================================================================ +23:29:06 + + +waiting on router queue for slot.... +23:29:06 ============================================================================ +23:29:06 Slot Id : <113> +23:29:06 Transaction Type : RESPONSE +23:29:06 Received From : +23:29:06 ============================================================================ +23:29:06 FNo. Len. Field Value +23:29:06 ============================================================================ +23:29:06 [ 1] [ 4] [0810] +23:29:06 [ 7] [ 10] [0320162906] +23:29:06 [ 11] [ 6] [807775] +23:29:06 [ 15] [ 4] [0320] +23:29:06 [ 37] [ 12] [57923807775] +23:29:06 [ 39] [ 2] [00] +23:29:06 [ 70] [ 3] [001] +23:29:06 ============================================================================ +23:29:06 Sending to : +23:29:06 ============================================================================ +23:29:06 + + +waiting on router queue for slot.... +23:29:20 ============================================================================ +23:29:20 Slot Id : <98> +23:29:20 Transaction Type : REQUEST +23:29:20 Received From : +23:29:20 ============================================================================ +23:29:20 FNo. Len. Field Value +23:29:20 ============================================================================ +23:29:20 [ 1] [ 4] [0800] +23:29:20 [ 7] [ 10] [0320042828] +23:29:20 [ 11] [ 6] [159068] +23:29:20 [ 70] [ 3] [301] +23:29:20 ============================================================================ +23:29:20 + + +waiting on router queue for slot.... +23:29:20 Sending to : +23:29:20 ============================================================================ +23:29:20 ============================================================================ +23:29:20 Slot Id : <98> +23:29:20 Transaction Type : RESPONSE +23:29:20 Received From : +23:29:20 ============================================================================ +23:29:20 FNo. Len. Field Value +23:29:20 ============================================================================ +23:29:20 [ 1] [ 4] [0810] +23:29:20 [ 7] [ 10] [0320042828] +23:29:20 [ 11] [ 6] [159068] +23:29:20 [ 39] [ 2] [00] +23:29:20 [ 70] [ 3] [301] +23:29:20 ============================================================================ +23:29:20 Calculate Source COMM Id = 2 +23:29:20 ============================================================================ +23:29:20 + + +waiting on router queue for slot.... +23:29:31 ============================================================================ +23:29:31 Slot Id : <74> +23:29:31 Transaction Type : REQUEST +23:29:31 Received From : +23:29:31 ============================================================================ +23:29:31 FNo. Len. Field Value +23:29:31 ============================================================================ +23:29:31 [ 1] [ 4] [0800] +23:29:31 [ 7] [ 10] [0320042839] +23:29:31 [ 11] [ 6] [159069] +23:29:31 [ 70] [ 3] [301] +23:29:31 ============================================================================ +23:29:31 + + +waiting on router queue for slot.... +23:29:31 Sending to : +23:29:31 ============================================================================ +23:29:31 ============================================================================ +23:29:31 Slot Id : <74> +23:29:31 Transaction Type : RESPONSE +23:29:31 Received From : +23:29:31 ============================================================================ +23:29:31 FNo. Len. Field Value +23:29:31 ============================================================================ +23:29:31 [ 1] [ 4] [0810] +23:29:31 [ 7] [ 10] [0320042839] +23:29:31 [ 11] [ 6] [159069] +23:29:31 [ 39] [ 2] [00] +23:29:31 [ 70] [ 3] [301] +23:29:31 ============================================================================ +23:29:31 Calculate Source COMM Id = 2 +23:29:31 ============================================================================ +23:29:31 + + +waiting on router queue for slot.... +23:29:42 ============================================================================ +23:29:42 Slot Id : <75> +23:29:42 Transaction Type : REQUEST +23:29:42 Received From : +23:29:42 ============================================================================ +23:29:42 FNo. Len. Field Value +23:29:42 ============================================================================ +23:29:42 [ 1] [ 4] [0800] +23:29:42 [ 7] [ 10] [0321064132] +23:29:42 [ 11] [ 6] [234132] +23:29:42 [ 37] [ 12] [57923234132] +23:29:42 [ 70] [ 3] [301] +23:29:42 ============================================================================ +23:29:42 + + +waiting on router queue for slot.... +23:29:42 Sending to : +23:29:42 ============================================================================ +23:29:42 ============================================================================ +23:29:42 Slot Id : <75> +23:29:42 Transaction Type : RESPONSE +23:29:42 Received From : +23:29:42 ============================================================================ +23:29:42 FNo. Len. Field Value +23:29:42 ============================================================================ +23:29:42 [ 1] [ 4] [0810] +23:29:42 [ 7] [ 10] [0321064132] +23:29:42 [ 11] [ 6] [234132] +23:29:42 [ 37] [ 12] [579232341320] +23:29:42 [ 39] [ 2] [00] +23:29:42 [ 70] [ 3] [810] +23:29:42 ============================================================================ +23:29:42 Calculate Source COMM Id = 6 +23:29:42 ============================================================================ +23:29:42 + + +waiting on router queue for slot.... +23:29:43 ============================================================================ +23:29:43 Slot Id : <108> +23:29:43 Transaction Type : REQUEST +23:29:43 Received From : +23:29:43 ============================================================================ +23:29:43 FNo. Len. Field Value +23:29:43 ============================================================================ +23:29:43 [ 1] [ 4] [0800] +23:29:43 [ 7] [ 10] [0320042850] +23:29:43 [ 11] [ 6] [159070] +23:29:43 [ 70] [ 3] [301] +23:29:43 ============================================================================ +23:29:43 + + +waiting on router queue for slot.... +23:29:43 Sending to : +23:29:43 ============================================================================ +23:29:43 ============================================================================ +23:29:43 Slot Id : <108> +23:29:43 Transaction Type : RESPONSE +23:29:43 Received From : +23:29:43 ============================================================================ +23:29:43 FNo. Len. Field Value +23:29:43 ============================================================================ +23:29:43 [ 1] [ 4] [0810] +23:29:43 [ 7] [ 10] [0320042850] +23:29:43 [ 11] [ 6] [159070] +23:29:43 [ 39] [ 2] [00] +23:29:43 [ 70] [ 3] [301] +23:29:43 ============================================================================ +23:29:43 Calculate Source COMM Id = 2 +23:29:43 ============================================================================ +23:29:43 + + +waiting on router queue for slot.... +23:29:55 ============================================================================ +23:29:55 Slot Id : <94> +23:29:55 Transaction Type : REQUEST +23:29:55 Received From : +23:29:55 ============================================================================ +23:29:55 FNo. Len. Field Value +23:29:55 ============================================================================ +23:29:55 [ 1] [ 4] [0800] +23:29:55 [ 7] [ 10] [0320163742] +23:29:55 [ 11] [ 6] [017059] +23:29:55 [ 37] [ 12] [57923017059] +23:29:55 [ 70] [ 3] [301] +23:29:55 ============================================================================ +23:29:55 + + +waiting on router queue for slot.... +23:29:55 Sending to : +23:29:55 ============================================================================ +23:29:55 ============================================================================ +23:29:55 Slot Id : <94> +23:29:55 Transaction Type : RESPONSE +23:29:55 Received From : +23:29:55 ============================================================================ +23:29:55 FNo. Len. Field Value +23:29:55 ============================================================================ +23:29:55 [ 1] [ 4] [0810] +23:29:55 [ 7] [ 10] [0320163742] +23:29:55 [ 11] [ 6] [017059] +23:29:55 [ 37] [ 12] [579230170590] +23:29:55 [ 39] [ 2] [00] +23:29:55 [ 70] [ 3] [810] +23:29:55 ============================================================================ +23:29:55 Calculate Source COMM Id = 1 +23:29:55 ============================================================================ +23:29:55 + + +waiting on router queue for slot.... +23:29:58 ============================================================================ +23:29:58 Slot Id : <127> +23:29:58 Transaction Type : REQUEST +23:29:58 Received From : +23:29:58 ============================================================================ +23:29:58 FNo. Len. Field Value +23:29:58 ============================================================================ +23:29:58 [ 1] [ 4] [0800] +23:29:58 [ 7] [ 10] [0320042906] +23:29:58 [ 11] [ 6] [159071] +23:29:58 [ 70] [ 3] [301] +23:29:58 ============================================================================ +23:29:58 + + +waiting on router queue for slot.... +23:29:58 Sending to : +23:29:58 ============================================================================ +23:29:58 ============================================================================ +23:29:58 Slot Id : <127> +23:29:58 Transaction Type : RESPONSE +23:29:58 Received From : +23:29:58 ============================================================================ +23:29:58 FNo. Len. Field Value +23:29:58 ============================================================================ +23:29:58 [ 1] [ 4] [0810] +23:29:58 [ 7] [ 10] [0320042906] +23:29:58 [ 11] [ 6] [159071] +23:29:58 [ 39] [ 2] [00] +23:29:58 [ 70] [ 3] [301] +23:29:58 ============================================================================ +23:29:58 Calculate Source COMM Id = 2 +23:29:58 ============================================================================ +23:29:58 + + +waiting on router queue for slot.... +23:30:08 ============================================================================ +23:30:08 Slot Id : <95> +23:30:08 Transaction Type : REQUEST +23:30:08 Received From : +23:30:08 ============================================================================ +23:30:08 FNo. Len. Field Value +23:30:08 ============================================================================ +23:30:08 [ 1] [ 4] [0800] +23:30:08 [ 2] [ 5] [02531] +23:30:08 [ 3] [ 6] [579238] +23:30:08 [ 7] [ 10] [0320163008] +23:30:08 [ 11] [ 6] [807776] +23:30:08 [ 15] [ 10] [0320163008] +23:30:08 [ 37] [ 11] [57923807776] +23:30:08 [ 70] [ 3] [001] +23:30:08 ============================================================================ +23:30:08 + + +waiting on router queue for slot.... +23:30:08 ============================================================================ +23:30:08 Slot Id : <95> +23:30:08 Transaction Type : RESPONSE +23:30:08 Received From : +23:30:08 ============================================================================ +23:30:08 FNo. Len. Field Value +23:30:08 ============================================================================ +23:30:08 [ 1] [ 4] [0810] +23:30:08 [ 7] [ 10] [0320163008] +23:30:08 [ 11] [ 6] [807776] +23:30:08 [ 15] [ 4] [0320] +23:30:08 [ 37] [ 12] [57923807776] +23:30:08 [ 39] [ 2] [00] +23:30:08 [ 70] [ 3] [001] +23:30:08 ============================================================================ +23:30:08 Sending to : +23:30:08 ============================================================================ +23:30:08 + + +waiting on router queue for slot.... +23:30:14 ============================================================================ +23:30:14 Slot Id : <53> +23:30:14 Transaction Type : REQUEST +23:30:14 Received From : +23:30:14 ============================================================================ +23:30:14 FNo. Len. Field Value +23:30:14 ============================================================================ +23:30:14 [ 1] [ 4] [0800] +23:30:14 [ 7] [ 10] [0320042922] +23:30:14 [ 11] [ 6] [159072] +23:30:14 [ 70] [ 3] [301] +23:30:14 ============================================================================ +23:30:14 + + +waiting on router queue for slot.... +23:30:14 Sending to : +23:30:14 ============================================================================ +23:30:14 ============================================================================ +23:30:14 Slot Id : <53> +23:30:14 Transaction Type : RESPONSE +23:30:14 Received From : +23:30:14 ============================================================================ +23:30:14 FNo. Len. Field Value +23:30:14 ============================================================================ +23:30:14 [ 1] [ 4] [0810] +23:30:14 [ 7] [ 10] [0320042922] +23:30:14 [ 11] [ 6] [159072] +23:30:14 [ 39] [ 2] [00] +23:30:14 [ 70] [ 3] [301] +23:30:14 ============================================================================ +23:30:14 Calculate Source COMM Id = 2 +23:30:14 ============================================================================ +23:30:14 + + +waiting on router queue for slot.... +23:30:25 ============================================================================ +23:30:25 Slot Id : <134> +23:30:25 Transaction Type : REQUEST +23:30:25 Received From : +23:30:25 ============================================================================ +23:30:25 FNo. Len. Field Value +23:30:25 ============================================================================ +23:30:25 [ 1] [ 4] [0800] +23:30:25 [ 7] [ 10] [0320042934] +23:30:25 [ 11] [ 6] [159073] +23:30:25 [ 70] [ 3] [301] +23:30:25 ============================================================================ +23:30:25 + + +waiting on router queue for slot.... +23:30:25 Sending to : +23:30:25 ============================================================================ +23:30:25 ============================================================================ +23:30:25 Slot Id : <134> +23:30:25 Transaction Type : RESPONSE +23:30:25 Received From : +23:30:25 ============================================================================ +23:30:25 FNo. Len. Field Value +23:30:25 ============================================================================ +23:30:25 [ 1] [ 4] [0810] +23:30:25 [ 7] [ 10] [0320042934] +23:30:25 [ 11] [ 6] [159073] +23:30:25 [ 39] [ 2] [00] +23:30:25 [ 70] [ 3] [301] +23:30:25 ============================================================================ +23:30:25 Calculate Source COMM Id = 2 +23:30:25 ============================================================================ +23:30:25 + + +waiting on router queue for slot.... +23:30:41 ============================================================================ +23:30:41 Slot Id : <103> +23:30:41 Transaction Type : REQUEST +23:30:41 Received From : +23:30:41 ============================================================================ +23:30:41 FNo. Len. Field Value +23:30:41 ============================================================================ +23:30:41 [ 1] [ 4] [0800] +23:30:41 [ 7] [ 10] [0320042949] +23:30:41 [ 11] [ 6] [159074] +23:30:41 [ 70] [ 3] [301] +23:30:41 ============================================================================ +23:30:41 + + +waiting on router queue for slot.... +23:30:41 Sending to : +23:30:41 ============================================================================ +23:30:41 ============================================================================ +23:30:41 Slot Id : <103> +23:30:41 Transaction Type : RESPONSE +23:30:41 Received From : +23:30:41 ============================================================================ +23:30:41 FNo. Len. Field Value +23:30:41 ============================================================================ +23:30:41 [ 1] [ 4] [0810] +23:30:41 [ 7] [ 10] [0320042949] +23:30:41 [ 11] [ 6] [159074] +23:30:41 [ 39] [ 2] [00] +23:30:41 [ 70] [ 3] [301] +23:30:41 ============================================================================ +23:30:41 Calculate Source COMM Id = 2 +23:30:41 ============================================================================ +23:30:41 + + +waiting on router queue for slot.... +23:30:47 ============================================================================ +23:30:47 Slot Id : <96> +23:30:47 Transaction Type : REQUEST +23:30:47 Received From : +23:30:47 ============================================================================ +23:30:47 FNo. Len. Field Value +23:30:47 ============================================================================ +23:30:47 [ 1] [ 4] [0800] +23:30:47 [ 7] [ 10] [0321064237] +23:30:47 [ 11] [ 6] [234237] +23:30:47 [ 37] [ 12] [57923234237] +23:30:47 [ 70] [ 3] [301] +23:30:47 ============================================================================ +23:30:47 + + +waiting on router queue for slot.... +23:30:47 Sending to : +23:30:47 ============================================================================ +23:30:47 ============================================================================ +23:30:47 Slot Id : <96> +23:30:47 Transaction Type : RESPONSE +23:30:47 Received From : +23:30:47 ============================================================================ +23:30:47 FNo. Len. Field Value +23:30:47 ============================================================================ +23:30:47 [ 1] [ 4] [0810] +23:30:47 [ 7] [ 10] [0321064237] +23:30:47 [ 11] [ 6] [234237] +23:30:47 [ 37] [ 12] [579232342370] +23:30:47 [ 39] [ 2] [00] +23:30:47 [ 70] [ 3] [810] +23:30:47 ============================================================================ +23:30:47 Calculate Source COMM Id = 6 +23:30:47 ============================================================================ +23:30:47 + + +waiting on router queue for slot.... +23:30:51 ============================================================================ +23:30:51 Slot Id : <101> +23:30:51 Transaction Type : REQUEST +23:30:51 Received From : +23:30:51 ============================================================================ +23:30:51 FNo. Len. Field Value +23:30:51 ============================================================================ +23:30:51 [ 1] [ 4] [0800] +23:30:51 [ 7] [ 10] [0320042959] +23:30:51 [ 11] [ 6] [159075] +23:30:51 [ 70] [ 3] [301] +23:30:51 ============================================================================ +23:30:51 + + +waiting on router queue for slot.... +23:30:51 Sending to : +23:30:51 ============================================================================ +23:30:51 ============================================================================ +23:30:51 Slot Id : <101> +23:30:51 Transaction Type : RESPONSE +23:30:51 Received From : +23:30:51 ============================================================================ +23:30:51 FNo. Len. Field Value +23:30:51 ============================================================================ +23:30:51 [ 1] [ 4] [0810] +23:30:51 [ 7] [ 10] [0320042959] +23:30:51 [ 11] [ 6] [159075] +23:30:51 [ 39] [ 2] [00] +23:30:51 [ 70] [ 3] [301] +23:30:51 ============================================================================ +23:30:51 Calculate Source COMM Id = 2 +23:30:51 ============================================================================ +23:30:51 + + +waiting on router queue for slot.... +23:31:01 ============================================================================ +23:31:01 Slot Id : <125> +23:31:01 Transaction Type : REQUEST +23:31:01 Received From : +23:31:01 ============================================================================ +23:31:01 FNo. Len. Field Value +23:31:01 ============================================================================ +23:31:01 [ 1] [ 4] [0800] +23:31:01 [ 7] [ 10] [0320043009] +23:31:01 [ 11] [ 6] [159076] +23:31:01 [ 70] [ 3] [301] +23:31:01 ============================================================================ +23:31:01 + + +waiting on router queue for slot.... +23:31:01 Sending to : +23:31:01 ============================================================================ +23:31:01 ============================================================================ +23:31:01 Slot Id : <125> +23:31:01 Transaction Type : RESPONSE +23:31:01 Received From : +23:31:01 ============================================================================ +23:31:01 FNo. Len. Field Value +23:31:01 ============================================================================ +23:31:01 [ 1] [ 4] [0810] +23:31:01 [ 7] [ 10] [0320043009] +23:31:01 [ 11] [ 6] [159076] +23:31:01 [ 39] [ 2] [00] +23:31:01 [ 70] [ 3] [301] +23:31:01 ============================================================================ +23:31:01 Calculate Source COMM Id = 2 +23:31:01 ============================================================================ +23:31:01 + + +waiting on router queue for slot.... +23:31:10 ============================================================================ +23:31:10 Slot Id : <70> +23:31:10 Transaction Type : REQUEST +23:31:10 Received From : +23:31:10 ============================================================================ +23:31:10 FNo. Len. Field Value +23:31:10 ============================================================================ +23:31:10 [ 1] [ 4] [0800] +23:31:10 [ 2] [ 5] [02531] +23:31:10 [ 3] [ 6] [579238] +23:31:10 [ 7] [ 10] [0320163110] +23:31:10 [ 11] [ 6] [807777] +23:31:10 [ 15] [ 10] [0320163110] +23:31:10 [ 37] [ 11] [57923807777] +23:31:10 [ 70] [ 3] [001] +23:31:10 ============================================================================ +23:31:10 + + +waiting on router queue for slot.... +23:31:10 ============================================================================ +23:31:10 Slot Id : <70> +23:31:10 Transaction Type : RESPONSE +23:31:10 Received From : +23:31:10 ============================================================================ +23:31:10 FNo. Len. Field Value +23:31:10 ============================================================================ +23:31:10 [ 1] [ 4] [0810] +23:31:10 [ 7] [ 10] [0320163110] +23:31:10 [ 11] [ 6] [807777] +23:31:10 [ 15] [ 4] [0320] +23:31:10 [ 37] [ 12] [57923807777] +23:31:10 [ 39] [ 2] [00] +23:31:10 [ 70] [ 3] [001] +23:31:10 ============================================================================ +23:31:10 Sending to : +23:31:10 ============================================================================ +23:31:10 + + +waiting on router queue for slot.... +23:31:11 ============================================================================ +23:31:11 Slot Id : <77> +23:31:11 Transaction Type : REQUEST +23:31:11 Received From : +23:31:11 ============================================================================ +23:31:11 FNo. Len. Field Value +23:31:11 ============================================================================ +23:31:11 [ 1] [ 4] [0800] +23:31:11 [ 7] [ 10] [0320043020] +23:31:11 [ 11] [ 6] [159077] +23:31:11 [ 70] [ 3] [301] +23:31:11 ============================================================================ +23:31:11 + + +waiting on router queue for slot.... +23:31:11 Sending to : +23:31:11 ============================================================================ +23:31:11 ============================================================================ +23:31:11 Slot Id : <77> +23:31:11 Transaction Type : RESPONSE +23:31:11 Received From : +23:31:11 ============================================================================ +23:31:11 FNo. Len. Field Value +23:31:11 ============================================================================ +23:31:11 [ 1] [ 4] [0810] +23:31:11 [ 7] [ 10] [0320043020] +23:31:11 [ 11] [ 6] [159077] +23:31:11 [ 39] [ 2] [00] +23:31:11 [ 70] [ 3] [301] +23:31:11 ============================================================================ +23:31:11 Calculate Source COMM Id = 2 +23:31:11 ============================================================================ +23:31:11 + + +waiting on router queue for slot.... +23:31:14 ============================================================================ +23:31:14 Slot Id : <102> +23:31:14 Transaction Type : REQUEST +23:31:14 Received From : +23:31:14 ============================================================================ +23:31:14 FNo. Len. Field Value +23:31:14 ============================================================================ +23:31:14 [ 1] [ 4] [0200] +23:31:14 [ 2] [ 16] [1989010003166453] +23:31:14 [ 3] [ 6] [301000] +23:31:14 [ 4] [ 12] [000000000000] +23:31:14 [ 7] [ 10] [0320233110] +23:31:14 [ 11] [ 6] [849526] +23:31:14 [ 12] [ 6] [233110] +23:31:14 [ 13] [ 4] [0320] +23:31:14 [ 15] [ 4] [0320] +23:31:14 [ 18] [ 4] [6011] +23:31:14 [ 22] [ 3] [900] +23:31:14 [ 25] [ 2] [02] +23:31:14 [ 28] [ 9] [D00000000] +23:31:14 [ 32] [ 6] [621354] +23:31:14 [ 35] [ 32] [1989010003166453=000010100000814] +23:31:14 [ 37] [ 12] [507904016352] +23:31:14 [ 41] [ 8] [01011700] +23:31:14 [ 42] [ 15] [NATIVE ] +23:31:14 [ 43] [ 40] [Souksavath College Xaythany LAO] +23:31:14 [ 49] [ 3] [418] +23:31:14 [ 52] [ 16] [20B6FFDEC5F98B53] +23:31:14 ============================================================================ +23:31:14 + + +waiting on router queue for slot.... +23:31:14 Sending to : +23:31:14 ============================================================================ +23:31:14 Sending to : +23:31:14 ============================================================================ +23:31:14 ============================================================================ +23:31:14 Slot Id : <102> +23:31:14 Transaction Type : REQUEST +23:31:14 Received From : +23:31:14 ============================================================================ +23:31:14 FNo. Len. Field Value +23:31:14 ============================================================================ +23:31:14 [ 1] [ 4] [0200] +23:31:14 [ 2] [ 16] [1989010003166453] +23:31:14 [ 3] [ 6] [301000] +23:31:14 [ 4] [ 12] [000000000000] +23:31:14 [ 7] [ 10] [0320233110] +23:31:14 [ 11] [ 6] [849526] +23:31:14 [ 12] [ 6] [233110] +23:31:14 [ 13] [ 4] [0320] +23:31:14 [ 15] [ 4] [0320] +23:31:14 [ 18] [ 4] [6011] +23:31:14 [ 22] [ 3] [900] +23:31:14 [ 25] [ 2] [02] +23:31:14 [ 28] [ 9] [D00000000] +23:31:14 [ 32] [ 6] [621354] +23:31:14 [ 35] [ 32] [1989010003166453=000010100000814] +23:31:14 [ 37] [ 12] [507904016352] +23:31:14 [ 41] [ 8] [01011700] +23:31:14 [ 42] [ 15] [NATIVE ] +23:31:14 [ 43] [ 40] [Souksavath College Xaythany LAO] +23:31:14 [ 49] [ 3] [418] +23:31:14 [ 52] [ 16] [20B6FFDEC5F98B53] +23:31:14 ============================================================================ +23:31:14 + + +waiting on router queue for slot.... +23:31:14 Sending to : +23:31:14 ============================================================================ +23:31:14 ============================================================================ +23:31:14 Slot Id : <102> +23:31:14 Transaction Type : REQUEST +23:31:14 Received From : +23:31:14 ============================================================================ +23:31:14 FNo. Len. Field Value +23:31:14 ============================================================================ +23:31:14 [ 1] [ 4] [0200] +23:31:14 [ 2] [ 16] [1989010003166453] +23:31:14 [ 3] [ 6] [301000] +23:31:14 [ 4] [ 12] [000000000000] +23:31:14 [ 7] [ 10] [0320233110] +23:31:14 [ 11] [ 6] [849526] +23:31:14 [ 12] [ 6] [233110] +23:31:14 [ 13] [ 4] [0320] +23:31:14 [ 15] [ 4] [0320] +23:31:14 [ 18] [ 4] [6011] +23:31:14 [ 22] [ 3] [900] +23:31:14 [ 25] [ 2] [02] +23:31:14 [ 28] [ 9] [D00000000] +23:31:14 [ 32] [ 6] [621354] +23:31:14 [ 35] [ 32] [1989010003166453=000010100000814] +23:31:14 [ 37] [ 12] [507904016352] +23:31:14 [ 41] [ 8] [01011700] +23:31:14 [ 42] [ 15] [NATIVE ] +23:31:14 [ 43] [ 40] [Souksavath College Xaythany LAO] +23:31:14 [ 49] [ 3] [418] +23:31:14 [ 52] [ 16] [C751FB5DAD63AD1A] +23:31:14 ============================================================================ +23:31:14 + + +waiting on router queue for slot.... +23:31:14 Sending to : <5> +23:31:14 ============================================================================ +23:31:15 ============================================================================ +23:31:15 Slot Id : <102> +23:31:15 Transaction Type : RESPONSE +23:31:15 Received From : +23:31:15 ============================================================================ +23:31:15 FNo. Len. Field Value +23:31:15 ============================================================================ +23:31:15 [ 1] [ 4] [0210] +23:31:15 [ 2] [ 16] [1989010003166453] +23:31:15 [ 3] [ 6] [301000] +23:31:15 [ 4] [ 12] [000000000000] +23:31:15 [ 7] [ 10] [0320233110] +23:31:15 [ 11] [ 6] [849526] +23:31:15 [ 12] [ 6] [233110] +23:31:15 [ 13] [ 4] [0320] +23:31:15 [ 15] [ 4] [0320] +23:31:15 [ 18] [ 4] [6011] +23:31:15 [ 19] [ 3] [418] +23:31:15 [ 32] [ 6] [621354] +23:31:15 [ 37] [ 12] [507904016352] +23:31:15 [ 38] [ 6] [000000] +23:31:15 [ 39] [ 2] [05] +23:31:15 [ 41] [ 8] [01011700] +23:31:15 [ 49] [ 3] [418] +23:31:15 ============================================================================ +23:31:15 Sending to : +23:31:15 ============================================================================ +23:31:15 + + +waiting on router queue for slot.... +23:31:16 ============================================================================ +23:31:16 Slot Id : <102> +23:31:16 Transaction Type : RESPONSE +23:31:16 Received From : +23:31:16 ============================================================================ +23:31:16 FNo. Len. Field Value +23:31:16 ============================================================================ +23:31:16 [ 1] [ 4] [0210] +23:31:16 [ 2] [ 16] [1989010003166453] +23:31:16 [ 3] [ 6] [301000] +23:31:16 [ 4] [ 12] [000000000000] +23:31:16 [ 7] [ 10] [0320233110] +23:31:16 [ 11] [ 6] [849526] +23:31:16 [ 12] [ 6] [233110] +23:31:16 [ 13] [ 4] [0320] +23:31:16 [ 15] [ 4] [0320] +23:31:16 [ 18] [ 4] [6011] +23:31:16 [ 19] [ 3] [418] +23:31:16 [ 32] [ 6] [621354] +23:31:16 [ 37] [ 12] [507904016352] +23:31:16 [ 38] [ 6] [000000] +23:31:16 [ 39] [ 2] [05] +23:31:16 [ 41] [ 8] [01011700] +23:31:16 [ 49] [ 3] [418] +23:31:16 ============================================================================ +23:31:16 Calculate Source COMM Id = 0 +23:31:16 ============================================================================ +23:31:16 + + +waiting on router queue for slot.... +23:31:21 ============================================================================ +23:31:21 Slot Id : <109> +23:31:21 Transaction Type : REQUEST +23:31:21 Received From : +23:31:21 ============================================================================ +23:31:21 FNo. Len. Field Value +23:31:21 ============================================================================ +23:31:21 [ 1] [ 4] [0800] +23:31:21 [ 7] [ 10] [0320162912] +23:31:21 [ 11] [ 6] [038763] +23:31:21 [ 37] [ 12] [57923038763] +23:31:21 [ 70] [ 3] [301] +23:31:21 ============================================================================ +23:31:21 + + +waiting on router queue for slot.... +23:31:21 Sending to : +23:31:21 ============================================================================ +23:31:21 ============================================================================ +23:31:21 Slot Id : <109> +23:31:21 Transaction Type : RESPONSE +23:31:21 Received From : +23:31:21 ============================================================================ +23:31:21 FNo. Len. Field Value +23:31:21 ============================================================================ +23:31:21 [ 1] [ 4] [0810] +23:31:21 [ 7] [ 10] [0320162912] +23:31:21 [ 11] [ 6] [038763] +23:31:21 [ 37] [ 12] [579230387630] +23:31:21 [ 39] [ 2] [00] +23:31:21 [ 70] [ 3] [810] +23:31:21 ============================================================================ +23:31:21 Calculate Source COMM Id = 4 +23:31:21 ============================================================================ +23:31:21 + + +waiting on router queue for slot.... +23:31:28 ============================================================================ +23:31:28 Slot Id : <85> +23:31:28 Transaction Type : REQUEST +23:31:28 Received From : +23:31:28 ============================================================================ +23:31:28 FNo. Len. Field Value +23:31:28 ============================================================================ +23:31:28 [ 1] [ 4] [0800] +23:31:28 [ 7] [ 10] [0320043035] +23:31:28 [ 11] [ 6] [159078] +23:31:28 [ 70] [ 3] [301] +23:31:28 ============================================================================ +23:31:28 + + +waiting on router queue for slot.... +23:31:28 Sending to : +23:31:28 ============================================================================ +23:31:28 ============================================================================ +23:31:28 Slot Id : <85> +23:31:28 Transaction Type : RESPONSE +23:31:28 Received From : +23:31:28 ============================================================================ +23:31:28 FNo. Len. Field Value +23:31:28 ============================================================================ +23:31:28 [ 1] [ 4] [0810] +23:31:28 [ 7] [ 10] [0320043035] +23:31:28 [ 11] [ 6] [159078] +23:31:28 [ 39] [ 2] [00] +23:31:28 [ 70] [ 3] [301] +23:31:28 ============================================================================ +23:31:28 Calculate Source COMM Id = 2 +23:31:28 ============================================================================ +23:31:28 + + +waiting on router queue for slot.... +23:31:43 ============================================================================ +23:31:43 Slot Id : <71> +23:31:43 Transaction Type : REQUEST +23:31:43 Received From : +23:31:43 ============================================================================ +23:31:43 FNo. Len. Field Value +23:31:43 ============================================================================ +23:31:43 [ 1] [ 4] [0800] +23:31:43 [ 7] [ 10] [0320043051] +23:31:43 [ 11] [ 6] [159079] +23:31:43 [ 70] [ 3] [301] +23:31:43 ============================================================================ +23:31:43 + + +waiting on router queue for slot.... +23:31:43 Sending to : +23:31:43 ============================================================================ +23:31:43 ============================================================================ +23:31:43 Slot Id : <71> +23:31:43 Transaction Type : RESPONSE +23:31:43 Received From : +23:31:43 ============================================================================ +23:31:43 FNo. Len. Field Value +23:31:43 ============================================================================ +23:31:43 [ 1] [ 4] [0810] +23:31:43 [ 7] [ 10] [0320043051] +23:31:43 [ 11] [ 6] [159079] +23:31:43 [ 39] [ 2] [00] +23:31:43 [ 70] [ 3] [301] +23:31:43 ============================================================================ +23:31:43 Calculate Source COMM Id = 2 +23:31:43 ============================================================================ +23:31:43 + + +waiting on router queue for slot.... +23:31:52 ============================================================================ +23:31:52 Slot Id : <136> +23:31:52 Transaction Type : REQUEST +23:31:52 Received From : +23:31:52 ============================================================================ +23:31:52 FNo. Len. Field Value +23:31:52 ============================================================================ +23:31:52 [ 1] [ 4] [0800] +23:31:52 [ 7] [ 10] [0321064342] +23:31:52 [ 11] [ 6] [234342] +23:31:52 [ 37] [ 12] [57923234342] +23:31:52 [ 70] [ 3] [301] +23:31:52 ============================================================================ +23:31:52 + + +waiting on router queue for slot.... +23:31:52 Sending to : +23:31:52 ============================================================================ +23:31:52 ============================================================================ +23:31:52 Slot Id : <136> +23:31:52 Transaction Type : RESPONSE +23:31:52 Received From : +23:31:52 ============================================================================ +23:31:52 FNo. Len. Field Value +23:31:52 ============================================================================ +23:31:52 [ 1] [ 4] [0810] +23:31:52 [ 7] [ 10] [0321064342] +23:31:52 [ 11] [ 6] [234342] +23:31:52 [ 37] [ 12] [579232343420] +23:31:52 [ 39] [ 2] [00] +23:31:52 [ 70] [ 3] [810] +23:31:52 ============================================================================ +23:31:52 Calculate Source COMM Id = 6 +23:31:52 ============================================================================ +23:31:52 + + +waiting on router queue for slot.... +23:31:56 ============================================================================ +23:31:56 Slot Id : <105> +23:31:56 Transaction Type : REQUEST +23:31:56 Received From : +23:31:56 ============================================================================ +23:31:56 FNo. Len. Field Value +23:31:56 ============================================================================ +23:31:56 [ 1] [ 4] [0200] +23:31:56 [ 2] [ 16] [1808931800002170] +23:31:56 [ 3] [ 6] [301000] +23:31:56 [ 4] [ 12] [000000000000] +23:31:56 [ 7] [ 10] [0320233152] +23:31:56 [ 11] [ 6] [849536] +23:31:56 [ 12] [ 6] [233152] +23:31:56 [ 13] [ 4] [0320] +23:31:56 [ 15] [ 4] [0320] +23:31:56 [ 18] [ 4] [6011] +23:31:56 [ 22] [ 3] [900] +23:31:56 [ 25] [ 2] [02] +23:31:56 [ 28] [ 9] [D00000000] +23:31:56 [ 32] [ 6] [621354] +23:31:56 [ 35] [ 27] [1808931800002170=1803500392] +23:31:56 [ 37] [ 12] [507903555838] +23:31:56 [ 41] [ 8] [09001200] +23:31:56 [ 42] [ 15] [NATIVE ] +23:31:56 [ 43] [ 40] [Sikhay Unit 2 SikhottabongLAO] +23:31:56 [ 49] [ 3] [418] +23:31:56 [ 52] [ 16] [832C1930306D15ED] +23:31:56 ============================================================================ +23:31:56 + + +waiting on router queue for slot.... +23:31:56 Sending to : +23:31:56 ============================================================================ +23:31:56 Sending to : +23:31:56 ============================================================================ +23:31:57 ============================================================================ +23:31:57 Slot Id : <105> +23:31:57 Transaction Type : REQUEST +23:31:57 Received From : +23:31:57 ============================================================================ +23:31:57 FNo. Len. Field Value +23:31:57 ============================================================================ +23:31:57 [ 1] [ 4] [0200] +23:31:57 [ 2] [ 16] [1808931800002170] +23:31:57 [ 3] [ 6] [301000] +23:31:57 [ 4] [ 12] [000000000000] +23:31:57 [ 7] [ 10] [0320233152] +23:31:57 [ 11] [ 6] [849536] +23:31:57 [ 12] [ 6] [233152] +23:31:57 [ 13] [ 4] [0320] +23:31:57 [ 15] [ 4] [0320] +23:31:57 [ 18] [ 4] [6011] +23:31:57 [ 22] [ 3] [900] +23:31:57 [ 25] [ 2] [02] +23:31:57 [ 28] [ 9] [D00000000] +23:31:57 [ 32] [ 6] [621354] +23:31:57 [ 35] [ 27] [1808931800002170=1803500392] +23:31:57 [ 37] [ 12] [507903555838] +23:31:57 [ 41] [ 8] [09001200] +23:31:57 [ 42] [ 15] [NATIVE ] +23:31:57 [ 43] [ 40] [Sikhay Unit 2 SikhottabongLAO] +23:31:57 [ 49] [ 3] [418] +23:31:57 [ 52] [ 16] [832C1930306D15ED] +23:31:57 ============================================================================ +23:31:57 + + +waiting on router queue for slot.... +23:31:57 Sending to : +23:31:57 ============================================================================ +23:31:57 ============================================================================ +23:31:57 Slot Id : <105> +23:31:57 Transaction Type : REQUEST +23:31:57 Received From : +23:31:57 ============================================================================ +23:31:57 FNo. Len. Field Value +23:31:57 ============================================================================ +23:31:57 [ 1] [ 4] [0200] +23:31:57 [ 2] [ 16] [1808931800002170] +23:31:57 [ 3] [ 6] [301000] +23:31:57 [ 4] [ 12] [000000000000] +23:31:57 [ 7] [ 10] [0320233152] +23:31:57 [ 11] [ 6] [849536] +23:31:57 [ 12] [ 6] [233152] +23:31:57 [ 13] [ 4] [0320] +23:31:57 [ 15] [ 4] [0320] +23:31:57 [ 18] [ 4] [6011] +23:31:57 [ 22] [ 3] [900] +23:31:57 [ 25] [ 2] [02] +23:31:57 [ 28] [ 9] [D00000000] +23:31:57 [ 32] [ 6] [621354] +23:31:57 [ 35] [ 27] [1808931800002170=1803500392] +23:31:57 [ 37] [ 12] [507903555838] +23:31:57 [ 41] [ 8] [09001200] +23:31:57 [ 42] [ 15] [NATIVE ] +23:31:57 [ 43] [ 40] [Sikhay Unit 2 SikhottabongLAO] +23:31:57 [ 49] [ 3] [418] +23:31:57 [ 52] [ 16] [4B86C14AB014F09E] +23:31:57 ============================================================================ +23:31:57 + + +waiting on router queue for slot.... +23:31:57 Sending to : <2> +23:31:57 ============================================================================ +23:32:01 ============================================================================ +23:32:01 Slot Id : <105> +23:32:01 Transaction Type : RESPONSE +23:32:01 Received From : +23:32:01 ============================================================================ +23:32:01 FNo. Len. Field Value +23:32:01 ============================================================================ +23:32:01 [ 1] [ 4] [0210] +23:32:01 [ 2] [ 16] [1808931800002170] +23:32:01 [ 3] [ 6] [301000] +23:32:01 [ 7] [ 10] [0320233152] +23:32:01 [ 11] [ 6] [849536] +23:32:01 [ 12] [ 6] [233152] +23:32:01 [ 13] [ 4] [0320] +23:32:01 [ 14] [ 4] [1803] +23:32:01 [ 19] [ 3] [418] +23:32:01 [ 32] [ 6] [621354] +23:32:01 [ 37] [ 12] [507903555838] +23:32:01 [ 38] [ 6] [849536] +23:32:01 [ 39] [ 2] [00] +23:32:01 [ 41] [ 8] [09001200] +23:32:01 [ 49] [ 3] [418] +23:32:01 [ 52] [ 16] [4B86C14AB014F09E] +23:32:01 [ 54] [ 20] [1002418C000902611400] +23:32:01 ============================================================================ +23:32:01 Sending to : +23:32:01 ============================================================================ +23:32:01 + + +waiting on router queue for slot.... +23:32:02 ============================================================================ +23:32:02 Slot Id : <105> +23:32:02 Transaction Type : RESPONSE +23:32:02 Received From : +23:32:02 ============================================================================ +23:32:02 FNo. Len. Field Value +23:32:02 ============================================================================ +23:32:02 [ 1] [ 4] [0210] +23:32:02 [ 2] [ 16] [1808931800002170] +23:32:02 [ 3] [ 6] [301000] +23:32:02 [ 7] [ 10] [0320233152] +23:32:02 [ 11] [ 6] [849536] +23:32:02 [ 12] [ 6] [233152] +23:32:02 [ 13] [ 4] [0320] +23:32:02 [ 14] [ 4] [1803] +23:32:02 [ 19] [ 3] [418] +23:32:02 [ 32] [ 6] [621354] +23:32:02 [ 37] [ 12] [507903555838] +23:32:02 [ 38] [ 6] [849536] +23:32:02 [ 39] [ 2] [00] +23:32:02 [ 41] [ 8] [09001200] +23:32:02 [ 49] [ 3] [418] +23:32:02 [ 52] [ 16] [4B86C14AB014F09E] +23:32:02 [ 54] [ 20] [1002418C000902611400] +23:32:02 ============================================================================ +23:32:02 Calculate Source COMM Id = 0 +23:32:02 ============================================================================ +23:32:02 + + +waiting on router queue for slot.... +23:32:09 ============================================================================ +23:32:09 Slot Id : <129> +23:32:09 Transaction Type : REQUEST +23:32:09 Received From : +23:32:09 ============================================================================ +23:32:09 FNo. Len. Field Value +23:32:09 ============================================================================ +23:32:09 [ 1] [ 4] [0800] +23:32:09 [ 7] [ 10] [0320043117] +23:32:09 [ 11] [ 6] [159080] +23:32:09 [ 70] [ 3] [301] +23:32:09 ============================================================================ +23:32:09 + + +waiting on router queue for slot.... +23:32:09 Sending to : +23:32:09 ============================================================================ +23:32:09 ============================================================================ +23:32:09 Slot Id : <129> +23:32:09 Transaction Type : RESPONSE +23:32:09 Received From : +23:32:09 ============================================================================ +23:32:09 FNo. Len. Field Value +23:32:09 ============================================================================ +23:32:09 [ 1] [ 4] [0810] +23:32:09 [ 7] [ 10] [0320043117] +23:32:09 [ 11] [ 6] [159080] +23:32:09 [ 39] [ 2] [00] +23:32:09 [ 70] [ 3] [301] +23:32:09 ============================================================================ +23:32:09 Calculate Source COMM Id = 2 +23:32:09 ============================================================================ +23:32:09 + + +waiting on router queue for slot.... +23:32:12 ============================================================================ +23:32:12 Slot Id : <116> +23:32:12 Transaction Type : REQUEST +23:32:12 Received From : +23:32:12 ============================================================================ +23:32:12 FNo. Len. Field Value +23:32:12 ============================================================================ +23:32:12 [ 1] [ 4] [0800] +23:32:12 [ 2] [ 5] [02531] +23:32:12 [ 3] [ 6] [579238] +23:32:12 [ 7] [ 10] [0320163212] +23:32:12 [ 11] [ 6] [807778] +23:32:12 [ 15] [ 10] [0320163212] +23:32:12 [ 37] [ 11] [57923807778] +23:32:12 [ 70] [ 3] [001] +23:32:12 ============================================================================ +23:32:12 + + +waiting on router queue for slot.... +23:32:12 ============================================================================ +23:32:12 Slot Id : <116> +23:32:12 Transaction Type : RESPONSE +23:32:12 Received From : +23:32:12 ============================================================================ +23:32:12 FNo. Len. Field Value +23:32:12 ============================================================================ +23:32:12 [ 1] [ 4] [0810] +23:32:12 [ 7] [ 10] [0320163212] +23:32:12 [ 11] [ 6] [807778] +23:32:12 [ 15] [ 4] [0320] +23:32:12 [ 37] [ 12] [57923807778] +23:32:12 [ 39] [ 2] [00] +23:32:12 [ 70] [ 3] [001] +23:32:12 ============================================================================ +23:32:12 Sending to : +23:32:12 ============================================================================ +23:32:12 + + +waiting on router queue for slot.... +23:32:25 ============================================================================ +23:32:25 Slot Id : <131> +23:32:25 Transaction Type : REQUEST +23:32:25 Received From : +23:32:25 ============================================================================ +23:32:25 FNo. Len. Field Value +23:32:25 ============================================================================ +23:32:25 [ 1] [ 4] [0800] +23:32:25 [ 7] [ 10] [0320043133] +23:32:25 [ 11] [ 6] [159081] +23:32:25 [ 70] [ 3] [301] +23:32:25 ============================================================================ +23:32:25 + + +waiting on router queue for slot.... +23:32:25 Sending to : +23:32:25 ============================================================================ +23:32:25 ============================================================================ +23:32:25 Slot Id : <131> +23:32:25 Transaction Type : RESPONSE +23:32:25 Received From : +23:32:25 ============================================================================ +23:32:25 FNo. Len. Field Value +23:32:25 ============================================================================ +23:32:25 [ 1] [ 4] [0810] +23:32:25 [ 7] [ 10] [0320043133] +23:32:25 [ 11] [ 6] [159081] +23:32:25 [ 39] [ 2] [00] +23:32:25 [ 70] [ 3] [301] +23:32:25 ============================================================================ +23:32:25 Calculate Source COMM Id = 2 +23:32:25 ============================================================================ +23:32:25 + + +waiting on router queue for slot.... +23:32:35 ============================================================================ +23:32:35 Slot Id : <104> +23:32:35 Transaction Type : REQUEST +23:32:35 Received From : +23:32:35 ============================================================================ +23:32:35 FNo. Len. Field Value +23:32:35 ============================================================================ +23:32:35 [ 1] [ 4] [0200] +23:32:35 [ 2] [ 16] [1989010003166453] +23:32:35 [ 3] [ 6] [011000] +23:32:35 [ 4] [ 12] [000010000000] +23:32:35 [ 7] [ 10] [0320233231] +23:32:35 [ 11] [ 6] [849547] +23:32:35 [ 12] [ 6] [233231] +23:32:35 [ 13] [ 4] [0320] +23:32:35 [ 15] [ 4] [0320] +23:32:35 [ 18] [ 4] [6011] +23:32:35 [ 22] [ 3] [900] +23:32:35 [ 25] [ 2] [02] +23:32:35 [ 28] [ 9] [D00002000] +23:32:35 [ 32] [ 6] [621354] +23:32:35 [ 35] [ 32] [1989010003166453=000010100000814] +23:32:35 [ 37] [ 12] [507904016354] +23:32:35 [ 41] [ 8] [01011700] +23:32:35 [ 42] [ 15] [NATIVE ] +23:32:35 [ 43] [ 40] [Souksavath College Xaythany LAO] +23:32:35 [ 49] [ 3] [418] +23:32:35 [ 52] [ 16] [20B6FFDEC5F98B53] +23:32:35 ============================================================================ +23:32:35 + + +waiting on router queue for slot.... +23:32:35 Sending to : +23:32:35 ============================================================================ +23:32:35 Sending to : +23:32:35 ============================================================================ +23:32:35 ============================================================================ +23:32:35 Slot Id : <104> +23:32:35 Transaction Type : REQUEST +23:32:35 Received From : +23:32:35 ============================================================================ +23:32:35 FNo. Len. Field Value +23:32:35 ============================================================================ +23:32:35 [ 1] [ 4] [0200] +23:32:35 [ 2] [ 16] [1989010003166453] +23:32:35 [ 3] [ 6] [011000] +23:32:35 [ 4] [ 12] [000010000000] +23:32:35 [ 7] [ 10] [0320233231] +23:32:35 [ 11] [ 6] [849547] +23:32:35 [ 12] [ 6] [233231] +23:32:35 [ 13] [ 4] [0320] +23:32:35 [ 15] [ 4] [0320] +23:32:35 [ 18] [ 4] [6011] +23:32:35 [ 22] [ 3] [900] +23:32:35 [ 25] [ 2] [02] +23:32:35 [ 28] [ 9] [D00002000] +23:32:35 [ 32] [ 6] [621354] +23:32:35 [ 35] [ 32] [1989010003166453=000010100000814] +23:32:35 [ 37] [ 12] [507904016354] +23:32:35 [ 41] [ 8] [01011700] +23:32:35 [ 42] [ 15] [NATIVE ] +23:32:35 [ 43] [ 40] [Souksavath College Xaythany LAO] +23:32:35 [ 49] [ 3] [418] +23:32:35 [ 52] [ 16] [20B6FFDEC5F98B53] +23:32:35 ============================================================================ +23:32:35 + + +waiting on router queue for slot.... +23:32:35 Sending to : +23:32:35 ============================================================================ +23:32:35 ============================================================================ +23:32:35 Slot Id : <104> +23:32:35 Transaction Type : REQUEST +23:32:35 Received From : +23:32:35 ============================================================================ +23:32:35 FNo. Len. Field Value +23:32:35 ============================================================================ +23:32:35 [ 1] [ 4] [0200] +23:32:35 [ 2] [ 16] [1989010003166453] +23:32:35 [ 3] [ 6] [011000] +23:32:35 [ 4] [ 12] [000010000000] +23:32:35 [ 7] [ 10] [0320233231] +23:32:35 [ 11] [ 6] [849547] +23:32:35 [ 12] [ 6] [233231] +23:32:35 [ 13] [ 4] [0320] +23:32:35 [ 15] [ 4] [0320] +23:32:35 [ 18] [ 4] [6011] +23:32:35 [ 22] [ 3] [900] +23:32:35 [ 25] [ 2] [02] +23:32:35 [ 28] [ 9] [D00002000] +23:32:35 [ 32] [ 6] [621354] +23:32:35 [ 35] [ 32] [1989010003166453=000010100000814] +23:32:35 [ 37] [ 12] [507904016354] +23:32:35 [ 41] [ 8] [01011700] +23:32:35 [ 42] [ 15] [NATIVE ] +23:32:35 [ 43] [ 40] [Souksavath College Xaythany LAO] +23:32:35 [ 49] [ 3] [418] +23:32:35 [ 52] [ 16] [C751FB5DAD63AD1A] +23:32:35 ============================================================================ +23:32:35 + + +waiting on router queue for slot.... +23:32:35 Sending to : <5> +23:32:35 ============================================================================ +23:32:35 ============================================================================ +23:32:35 Slot Id : <138> +23:32:35 Transaction Type : REQUEST +23:32:35 Received From : +23:32:35 ============================================================================ +23:32:35 FNo. Len. Field Value +23:32:35 ============================================================================ +23:32:35 [ 1] [ 4] [0800] +23:32:35 [ 7] [ 10] [0320043144] +23:32:35 [ 11] [ 6] [159082] +23:32:35 [ 70] [ 3] [301] +23:32:35 ============================================================================ +23:32:35 + + +waiting on router queue for slot.... +23:32:35 Sending to : +23:32:35 ============================================================================ +23:32:35 ============================================================================ +23:32:35 Slot Id : <138> +23:32:35 Transaction Type : RESPONSE +23:32:35 Received From : +23:32:35 ============================================================================ +23:32:35 FNo. Len. Field Value +23:32:35 ============================================================================ +23:32:35 [ 1] [ 4] [0810] +23:32:35 [ 7] [ 10] [0320043144] +23:32:35 [ 11] [ 6] [159082] +23:32:35 [ 39] [ 2] [00] +23:32:35 [ 70] [ 3] [301] +23:32:35 ============================================================================ +23:32:35 Calculate Source COMM Id = 2 +23:32:35 ============================================================================ +23:32:35 + + +waiting on router queue for slot.... +23:32:36 ============================================================================ +23:32:36 Slot Id : <104> +23:32:36 Transaction Type : RESPONSE +23:32:36 Received From : +23:32:36 ============================================================================ +23:32:36 FNo. Len. Field Value +23:32:36 ============================================================================ +23:32:36 [ 1] [ 4] [0210] +23:32:36 [ 2] [ 16] [1989010003166453] +23:32:36 [ 3] [ 6] [011000] +23:32:36 [ 4] [ 12] [000010000000] +23:32:36 [ 7] [ 10] [0320233231] +23:32:36 [ 11] [ 6] [849547] +23:32:36 [ 12] [ 6] [233231] +23:32:36 [ 13] [ 4] [0320] +23:32:36 [ 15] [ 4] [0320] +23:32:36 [ 18] [ 4] [6011] +23:32:36 [ 19] [ 3] [418] +23:32:36 [ 32] [ 6] [621354] +23:32:36 [ 37] [ 12] [507904016354] +23:32:36 [ 38] [ 6] [000000] +23:32:36 [ 39] [ 2] [05] +23:32:36 [ 41] [ 8] [01011700] +23:32:36 [ 49] [ 3] [418] +23:32:36 ============================================================================ +23:32:36 Sending to : +23:32:36 ============================================================================ +23:32:36 + + +waiting on router queue for slot.... +23:32:37 ============================================================================ +23:32:37 Slot Id : <104> +23:32:37 Transaction Type : RESPONSE +23:32:37 Received From : +23:32:37 ============================================================================ +23:32:37 FNo. Len. Field Value +23:32:37 ============================================================================ +23:32:37 [ 1] [ 4] [0210] +23:32:37 [ 2] [ 16] [1989010003166453] +23:32:37 [ 3] [ 6] [011000] +23:32:37 [ 4] [ 12] [000010000000] +23:32:37 [ 7] [ 10] [0320233231] +23:32:37 [ 11] [ 6] [849547] +23:32:37 [ 12] [ 6] [233231] +23:32:37 [ 13] [ 4] [0320] +23:32:37 [ 15] [ 4] [0320] +23:32:37 [ 18] [ 4] [6011] +23:32:37 [ 19] [ 3] [418] +23:32:37 [ 32] [ 6] [621354] +23:32:37 [ 37] [ 12] [507904016354] +23:32:37 [ 38] [ 6] [000000] +23:32:37 [ 39] [ 2] [05] +23:32:37 [ 41] [ 8] [01011700] +23:32:37 [ 49] [ 3] [418] +23:32:37 ============================================================================ +23:32:37 Calculate Source COMM Id = 0 +23:32:37 ============================================================================ +23:32:37 + + +waiting on router queue for slot.... +23:32:51 ============================================================================ +23:32:51 Slot Id : <97> +23:32:51 Transaction Type : REQUEST +23:32:51 Received From : +23:32:51 ============================================================================ +23:32:51 FNo. Len. Field Value +23:32:51 ============================================================================ +23:32:51 [ 1] [ 4] [0800] +23:32:51 [ 7] [ 10] [0320043159] +23:32:51 [ 11] [ 6] [159083] +23:32:51 [ 70] [ 3] [301] +23:32:51 ============================================================================ +23:32:51 + + +waiting on router queue for slot.... +23:32:51 Sending to : +23:32:51 ============================================================================ +23:32:51 ============================================================================ +23:32:51 Slot Id : <97> +23:32:51 Transaction Type : RESPONSE +23:32:51 Received From : +23:32:51 ============================================================================ +23:32:51 FNo. Len. Field Value +23:32:51 ============================================================================ +23:32:51 [ 1] [ 4] [0810] +23:32:51 [ 7] [ 10] [0320043159] +23:32:51 [ 11] [ 6] [159083] +23:32:51 [ 39] [ 2] [00] +23:32:51 [ 70] [ 3] [301] +23:32:51 ============================================================================ +23:32:51 Calculate Source COMM Id = 2 +23:32:51 ============================================================================ +23:32:51 + + +waiting on router queue for slot.... +23:32:57 ============================================================================ +23:32:57 Slot Id : <112> +23:32:57 Transaction Type : REQUEST +23:32:57 Received From : +23:32:57 ============================================================================ +23:32:57 FNo. Len. Field Value +23:32:57 ============================================================================ +23:32:57 [ 1] [ 4] [0800] +23:32:57 [ 7] [ 10] [0321064447] +23:32:57 [ 11] [ 6] [234447] +23:32:57 [ 37] [ 12] [57923234447] +23:32:57 [ 70] [ 3] [301] +23:32:57 ============================================================================ +23:32:57 + + +waiting on router queue for slot.... +23:32:57 Sending to : +23:32:57 ============================================================================ +23:32:57 ============================================================================ +23:32:57 Slot Id : <112> +23:32:57 Transaction Type : RESPONSE +23:32:57 Received From : +23:32:57 ============================================================================ +23:32:57 FNo. Len. Field Value +23:32:57 ============================================================================ +23:32:57 [ 1] [ 4] [0810] +23:32:57 [ 7] [ 10] [0321064447] +23:32:57 [ 11] [ 6] [234447] +23:32:57 [ 37] [ 12] [579232344470] +23:32:57 [ 39] [ 2] [00] +23:32:57 [ 70] [ 3] [810] +23:32:57 ============================================================================ +23:32:57 Calculate Source COMM Id = 6 +23:32:57 ============================================================================ +23:32:57 + + +waiting on router queue for slot.... +23:33:07 ============================================================================ +23:33:07 Slot Id : <124> +23:33:07 Transaction Type : REQUEST +23:33:07 Received From : +23:33:07 ============================================================================ +23:33:07 FNo. Len. Field Value +23:33:07 ============================================================================ +23:33:07 [ 1] [ 4] [0800] +23:33:07 [ 7] [ 10] [0320043215] +23:33:07 [ 11] [ 6] [159084] +23:33:07 [ 70] [ 3] [301] +23:33:07 ============================================================================ +23:33:07 + + +waiting on router queue for slot.... +23:33:07 Sending to : +23:33:07 ============================================================================ +23:33:07 ============================================================================ +23:33:07 Slot Id : <124> +23:33:07 Transaction Type : RESPONSE +23:33:07 Received From : +23:33:07 ============================================================================ +23:33:07 FNo. Len. Field Value +23:33:07 ============================================================================ +23:33:07 [ 1] [ 4] [0810] +23:33:07 [ 7] [ 10] [0320043215] +23:33:07 [ 11] [ 6] [159084] +23:33:07 [ 39] [ 2] [00] +23:33:07 [ 70] [ 3] [301] +23:33:07 ============================================================================ +23:33:07 Calculate Source COMM Id = 2 +23:33:07 ============================================================================ +23:33:07 + + +waiting on router queue for slot.... +23:33:14 ============================================================================ +23:33:14 Slot Id : <111> +23:33:14 Transaction Type : REQUEST +23:33:14 Received From : +23:33:14 ============================================================================ +23:33:14 FNo. Len. Field Value +23:33:14 ============================================================================ +23:33:14 [ 1] [ 4] [0800] +23:33:14 [ 2] [ 5] [02531] +23:33:14 [ 3] [ 6] [579238] +23:33:14 [ 7] [ 10] [0320163314] +23:33:14 [ 11] [ 6] [807779] +23:33:14 [ 15] [ 10] [0320163314] +23:33:14 [ 37] [ 11] [57923807779] +23:33:14 [ 70] [ 3] [001] +23:33:14 ============================================================================ +23:33:14 + + +waiting on router queue for slot.... +23:33:14 ============================================================================ +23:33:14 Slot Id : <111> +23:33:14 Transaction Type : RESPONSE +23:33:14 Received From : +23:33:14 ============================================================================ +23:33:14 FNo. Len. Field Value +23:33:14 ============================================================================ +23:33:14 [ 1] [ 4] [0810] +23:33:14 [ 7] [ 10] [0320163314] +23:33:14 [ 11] [ 6] [807779] +23:33:14 [ 15] [ 4] [0320] +23:33:14 [ 37] [ 12] [57923807779] +23:33:14 [ 39] [ 2] [00] +23:33:14 [ 70] [ 3] [001] +23:33:14 ============================================================================ +23:33:14 Sending to : +23:33:14 ============================================================================ +23:33:14 + + +waiting on router queue for slot.... +23:33:18 ============================================================================ +23:33:18 Slot Id : <80> +23:33:18 Transaction Type : REQUEST +23:33:18 Received From : +23:33:18 ============================================================================ +23:33:18 FNo. Len. Field Value +23:33:18 ============================================================================ +23:33:18 [ 1] [ 4] [0800] +23:33:18 [ 7] [ 10] [0320043226] +23:33:18 [ 11] [ 6] [159085] +23:33:18 [ 70] [ 3] [301] +23:33:18 ============================================================================ +23:33:18 + + +waiting on router queue for slot.... +23:33:18 Sending to : +23:33:18 ============================================================================ +23:33:18 ============================================================================ +23:33:18 Slot Id : <80> +23:33:18 Transaction Type : RESPONSE +23:33:18 Received From : +23:33:18 ============================================================================ +23:33:18 FNo. Len. Field Value +23:33:18 ============================================================================ +23:33:18 [ 1] [ 4] [0810] +23:33:18 [ 7] [ 10] [0320043226] +23:33:18 [ 11] [ 6] [159085] +23:33:18 [ 39] [ 2] [00] +23:33:18 [ 70] [ 3] [301] +23:33:18 ============================================================================ +23:33:18 Calculate Source COMM Id = 2 +23:33:18 ============================================================================ +23:33:18 + + +waiting on router queue for slot.... +23:33:33 ============================================================================ +23:33:33 Slot Id : <140> +23:33:33 Transaction Type : REQUEST +23:33:33 Received From : +23:33:33 ============================================================================ +23:33:33 FNo. Len. Field Value +23:33:33 ============================================================================ +23:33:33 [ 1] [ 4] [0800] +23:33:33 [ 7] [ 10] [0320043241] +23:33:33 [ 11] [ 6] [159086] +23:33:33 [ 70] [ 3] [301] +23:33:33 ============================================================================ +23:33:33 + + +waiting on router queue for slot.... +23:33:33 Sending to : +23:33:33 ============================================================================ +23:33:33 ============================================================================ +23:33:33 Slot Id : <140> +23:33:33 Transaction Type : RESPONSE +23:33:33 Received From : +23:33:33 ============================================================================ +23:33:33 FNo. Len. Field Value +23:33:33 ============================================================================ +23:33:33 [ 1] [ 4] [0810] +23:33:33 [ 7] [ 10] [0320043241] +23:33:33 [ 11] [ 6] [159086] +23:33:33 [ 39] [ 2] [00] +23:33:33 [ 70] [ 3] [301] +23:33:33 ============================================================================ +23:33:33 Calculate Source COMM Id = 2 +23:33:33 ============================================================================ +23:33:33 + + +waiting on router queue for slot.... +23:33:50 ============================================================================ +23:33:50 Slot Id : <123> +23:33:50 Transaction Type : REQUEST +23:33:50 Received From : +23:33:50 ============================================================================ +23:33:50 FNo. Len. Field Value +23:33:50 ============================================================================ +23:33:50 [ 1] [ 4] [0800] +23:33:50 [ 7] [ 10] [0320043258] +23:33:50 [ 11] [ 6] [159087] +23:33:50 [ 70] [ 3] [301] +23:33:50 ============================================================================ +23:33:50 + + +waiting on router queue for slot.... +23:33:50 Sending to : +23:33:50 ============================================================================ +23:33:50 ============================================================================ +23:33:50 Slot Id : <123> +23:33:50 Transaction Type : RESPONSE +23:33:50 Received From : +23:33:50 ============================================================================ +23:33:50 FNo. Len. Field Value +23:33:50 ============================================================================ +23:33:50 [ 1] [ 4] [0810] +23:33:50 [ 7] [ 10] [0320043258] +23:33:50 [ 11] [ 6] [159087] +23:33:50 [ 39] [ 2] [00] +23:33:50 [ 70] [ 3] [301] +23:33:50 ============================================================================ +23:33:50 Calculate Source COMM Id = 2 +23:33:50 ============================================================================ +23:33:50 + + +waiting on router queue for slot.... +23:34:01 ============================================================================ +23:34:01 Slot Id : <147> +23:34:01 Transaction Type : REQUEST +23:34:01 Received From : +23:34:01 ============================================================================ +23:34:01 FNo. Len. Field Value +23:34:01 ============================================================================ +23:34:01 [ 1] [ 4] [0800] +23:34:01 [ 7] [ 10] [0320043309] +23:34:01 [ 11] [ 6] [159088] +23:34:01 [ 70] [ 3] [301] +23:34:01 ============================================================================ +23:34:01 + + +waiting on router queue for slot.... +23:34:01 Sending to : +23:34:01 ============================================================================ +23:34:01 ============================================================================ +23:34:01 Slot Id : <147> +23:34:01 Transaction Type : RESPONSE +23:34:01 Received From : +23:34:01 ============================================================================ +23:34:01 FNo. Len. Field Value +23:34:01 ============================================================================ +23:34:01 [ 1] [ 4] [0810] +23:34:01 [ 7] [ 10] [0320043309] +23:34:01 [ 11] [ 6] [159088] +23:34:01 [ 39] [ 2] [00] +23:34:01 [ 70] [ 3] [301] +23:34:01 ============================================================================ +23:34:01 Calculate Source COMM Id = 2 +23:34:01 ============================================================================ +23:34:01 + + +waiting on router queue for slot.... +23:34:02 ============================================================================ +23:34:02 Slot Id : <117> +23:34:02 Transaction Type : REQUEST +23:34:02 Received From : +23:34:02 ============================================================================ +23:34:02 FNo. Len. Field Value +23:34:02 ============================================================================ +23:34:02 [ 1] [ 4] [0800] +23:34:02 [ 7] [ 10] [0321064552] +23:34:02 [ 11] [ 6] [234552] +23:34:02 [ 37] [ 12] [57923234552] +23:34:02 [ 70] [ 3] [301] +23:34:02 ============================================================================ +23:34:02 + + +waiting on router queue for slot.... +23:34:03 Sending to : +23:34:03 ============================================================================ +23:34:03 ============================================================================ +23:34:03 Slot Id : <117> +23:34:03 Transaction Type : RESPONSE +23:34:03 Received From : +23:34:03 ============================================================================ +23:34:03 FNo. Len. Field Value +23:34:03 ============================================================================ +23:34:03 [ 1] [ 4] [0810] +23:34:03 [ 7] [ 10] [0321064552] +23:34:03 [ 11] [ 6] [234552] +23:34:03 [ 37] [ 12] [579232345520] +23:34:03 [ 39] [ 2] [00] +23:34:03 [ 70] [ 3] [810] +23:34:03 ============================================================================ +23:34:03 Calculate Source COMM Id = 6 +23:34:03 ============================================================================ +23:34:03 + + +waiting on router queue for slot.... +23:34:16 ============================================================================ +23:34:16 Slot Id : <132> +23:34:16 Transaction Type : REQUEST +23:34:16 Received From : +23:34:16 ============================================================================ +23:34:16 FNo. Len. Field Value +23:34:16 ============================================================================ +23:34:16 [ 1] [ 4] [0200] +23:34:16 [ 2] [ 16] [6213541000393465] +23:34:16 [ 3] [ 6] [010000] +23:34:16 [ 4] [ 12] [000080000000] +23:34:16 [ 7] [ 10] [0320233207] +23:34:16 [ 11] [ 6] [958166] +23:34:16 [ 12] [ 6] [233207] +23:34:16 [ 13] [ 4] [0320] +23:34:16 [ 15] [ 4] [0320] +23:34:16 [ 18] [ 4] [6011] +23:34:16 [ 19] [ 3] [418] +23:34:16 [ 22] [ 3] [021] +23:34:16 [ 25] [ 2] [01] +23:34:16 [ 28] [ 9] [D00002000] +23:34:16 [ 32] [ 6] [668899] +23:34:16 [ 35] [ 32] [6213541000393465=491212019346512] +23:34:16 [ 37] [ 12] [507902407393] +23:34:16 [ 41] [ 8] [03001010] +23:34:16 [ 42] [ 15] [APT ] +23:34:16 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +23:34:16 [ 49] [ 3] [418] +23:34:16 [ 52] [ 16] [7F8035351DA4762A] +23:34:16 ============================================================================ +23:34:16 + + +waiting on router queue for slot.... +23:34:16 Sending to : +23:34:16 ============================================================================ +23:34:16 Sending to : +23:34:16 ============================================================================ +23:34:16 ============================================================================ +23:34:16 Slot Id : <161> +23:34:16 Transaction Type : REQUEST +23:34:16 Received From : +23:34:16 ============================================================================ +23:34:16 FNo. Len. Field Value +23:34:16 ============================================================================ +23:34:16 [ 1] [ 4] [0800] +23:34:16 [ 7] [ 10] [0320043324] +23:34:16 [ 11] [ 6] [159089] +23:34:16 [ 70] [ 3] [301] +23:34:16 ============================================================================ +23:34:16 + + +waiting on router queue for slot.... +23:34:16 Sending to : +23:34:16 ============================================================================ +23:34:16 ============================================================================ +23:34:16 Slot Id : <161> +23:34:16 Transaction Type : RESPONSE +23:34:16 Received From : +23:34:16 ============================================================================ +23:34:16 FNo. Len. Field Value +23:34:16 ============================================================================ +23:34:16 [ 1] [ 4] [0810] +23:34:16 [ 7] [ 10] [0320043324] +23:34:16 [ 11] [ 6] [159089] +23:34:16 [ 39] [ 2] [00] +23:34:16 [ 70] [ 3] [301] +23:34:16 ============================================================================ +23:34:16 Calculate Source COMM Id = 2 +23:34:16 ============================================================================ +23:34:16 + + +waiting on router queue for slot.... +23:34:16 ============================================================================ +23:34:16 Slot Id : <122> +23:34:16 Transaction Type : REQUEST +23:34:16 Received From : +23:34:16 ============================================================================ +23:34:16 FNo. Len. Field Value +23:34:16 ============================================================================ +23:34:16 [ 1] [ 4] [0800] +23:34:16 [ 2] [ 5] [02531] +23:34:16 [ 3] [ 6] [579238] +23:34:16 [ 7] [ 10] [0320163416] +23:34:16 [ 11] [ 6] [807780] +23:34:16 [ 15] [ 10] [0320163416] +23:34:16 [ 37] [ 11] [57923807780] +23:34:16 [ 70] [ 3] [001] +23:34:16 ============================================================================ +23:34:16 + + +waiting on router queue for slot.... +23:34:16 ============================================================================ +23:34:16 Slot Id : <122> +23:34:16 Transaction Type : RESPONSE +23:34:16 Received From : +23:34:16 ============================================================================ +23:34:16 FNo. Len. Field Value +23:34:16 ============================================================================ +23:34:16 [ 1] [ 4] [0810] +23:34:16 [ 7] [ 10] [0320163416] +23:34:16 [ 11] [ 6] [807780] +23:34:16 [ 15] [ 4] [0320] +23:34:16 [ 37] [ 12] [57923807780] +23:34:16 [ 39] [ 2] [00] +23:34:16 [ 70] [ 3] [001] +23:34:16 ============================================================================ +23:34:16 Sending to : +23:34:16 ============================================================================ +23:34:16 + + +waiting on router queue for slot.... +23:34:16 ============================================================================ +23:34:16 Slot Id : <132> +23:34:16 Transaction Type : REQUEST +23:34:16 Received From : +23:34:16 ============================================================================ +23:34:16 FNo. Len. Field Value +23:34:16 ============================================================================ +23:34:16 [ 1] [ 4] [0200] +23:34:16 [ 2] [ 16] [6213541000393465] +23:34:16 [ 3] [ 6] [010000] +23:34:16 [ 4] [ 12] [000080000000] +23:34:16 [ 7] [ 10] [0320233207] +23:34:16 [ 11] [ 6] [958166] +23:34:16 [ 12] [ 6] [233207] +23:34:16 [ 13] [ 4] [0320] +23:34:16 [ 15] [ 4] [0320] +23:34:16 [ 18] [ 4] [6011] +23:34:16 [ 19] [ 3] [418] +23:34:16 [ 22] [ 3] [021] +23:34:16 [ 25] [ 2] [01] +23:34:16 [ 28] [ 9] [D00002000] +23:34:16 [ 32] [ 6] [668899] +23:34:16 [ 35] [ 32] [6213541000393465=491212019346512] +23:34:16 [ 37] [ 12] [507902407393] +23:34:16 [ 41] [ 8] [03001010] +23:34:16 [ 42] [ 15] [APT ] +23:34:16 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +23:34:16 [ 49] [ 3] [418] +23:34:16 [ 52] [ 16] [7F8035351DA4762A] +23:34:16 ============================================================================ +23:34:16 + + +waiting on router queue for slot.... +23:34:16 Sending to : +23:34:16 ============================================================================ +23:34:16 ============================================================================ +23:34:16 Slot Id : <132> +23:34:16 Transaction Type : REQUEST +23:34:16 Received From : +23:34:16 ============================================================================ +23:34:16 FNo. Len. Field Value +23:34:16 ============================================================================ +23:34:16 [ 1] [ 4] [0200] +23:34:16 [ 2] [ 16] [6213541000393465] +23:34:16 [ 3] [ 6] [010000] +23:34:16 [ 4] [ 12] [000080000000] +23:34:16 [ 7] [ 10] [0320233207] +23:34:16 [ 11] [ 6] [958166] +23:34:16 [ 12] [ 6] [233207] +23:34:16 [ 13] [ 4] [0320] +23:34:16 [ 15] [ 4] [0320] +23:34:16 [ 18] [ 4] [6011] +23:34:16 [ 19] [ 3] [418] +23:34:16 [ 22] [ 3] [021] +23:34:16 [ 25] [ 2] [01] +23:34:16 [ 28] [ 9] [D00002000] +23:34:16 [ 32] [ 6] [668899] +23:34:16 [ 35] [ 32] [6213541000393465=491212019346512] +23:34:16 [ 37] [ 12] [507902407393] +23:34:16 [ 41] [ 8] [03001010] +23:34:16 [ 42] [ 15] [APT ] +23:34:16 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +23:34:16 [ 49] [ 3] [418] +23:34:16 [ 52] [ 16] [F61A90353BC7F274] +23:34:16 ============================================================================ +23:34:16 + + +waiting on router queue for slot.... +23:34:16 Sending to : <0> +23:34:16 ============================================================================ +23:34:17 ============================================================================ +23:34:17 Slot Id : <132> +23:34:17 Transaction Type : RESPONSE +23:34:17 Received From : +23:34:17 ============================================================================ +23:34:17 FNo. Len. Field Value +23:34:17 ============================================================================ +23:34:17 [ 1] [ 4] [0210] +23:34:17 [ 2] [ 16] [6213541000393465] +23:34:17 [ 3] [ 6] [010000] +23:34:17 [ 4] [ 12] [000080000000] +23:34:17 [ 7] [ 10] [0320233207] +23:34:17 [ 11] [ 6] [958166] +23:34:17 [ 12] [ 6] [233207] +23:34:17 [ 13] [ 4] [0320] +23:34:17 [ 15] [ 4] [0320] +23:34:17 [ 18] [ 4] [6011] +23:34:17 [ 19] [ 3] [418] +23:34:17 [ 32] [ 6] [668899] +23:34:17 [ 35] [ 32] [6213541000393465=491212019346512] +23:34:17 [ 37] [ 12] [507902407393] +23:34:17 [ 38] [ 6] [958166] +23:34:17 [ 39] [ 2] [51] +23:34:17 [ 41] [ 8] [03001010] +23:34:17 [ 49] [ 3] [418] +23:34:17 [ 54] [ 40] [0001840C0000000094850002840C000000009485] +23:34:17 ============================================================================ +23:34:17 Sending to : +23:34:17 ============================================================================ +23:34:17 + + +waiting on router queue for slot.... +23:34:18 ============================================================================ +23:34:18 Slot Id : <132> +23:34:18 Transaction Type : RESPONSE +23:34:18 Received From : +23:34:18 ============================================================================ +23:34:18 FNo. Len. Field Value +23:34:18 ============================================================================ +23:34:18 [ 1] [ 4] [0210] +23:34:18 [ 2] [ 16] [6213541000393465] +23:34:18 [ 3] [ 6] [010000] +23:34:18 [ 4] [ 12] [000080000000] +23:34:18 [ 7] [ 10] [0320233207] +23:34:18 [ 11] [ 6] [958166] +23:34:18 [ 12] [ 6] [233207] +23:34:18 [ 13] [ 4] [0320] +23:34:18 [ 15] [ 4] [0320] +23:34:18 [ 18] [ 4] [6011] +23:34:18 [ 19] [ 3] [418] +23:34:18 [ 32] [ 6] [668899] +23:34:18 [ 35] [ 32] [6213541000393465=491212019346512] +23:34:18 [ 37] [ 12] [507902407393] +23:34:18 [ 38] [ 6] [958166] +23:34:18 [ 39] [ 2] [51] +23:34:18 [ 41] [ 8] [03001010] +23:34:18 [ 49] [ 3] [418] +23:34:18 [ 54] [ 40] [0001840C0000000094850002840C000000009485] +23:34:18 ============================================================================ +23:34:18 Calculate Source COMM Id = 4 +23:34:18 ============================================================================ +23:34:18 + + +waiting on router queue for slot.... +23:34:27 ============================================================================ +23:34:27 Slot Id : <162> +23:34:27 Transaction Type : REQUEST +23:34:27 Received From : +23:34:27 ============================================================================ +23:34:27 FNo. Len. Field Value +23:34:27 ============================================================================ +23:34:27 [ 1] [ 4] [0800] +23:34:27 [ 7] [ 10] [0320043335] +23:34:27 [ 11] [ 6] [159090] +23:34:27 [ 70] [ 3] [301] +23:34:27 ============================================================================ +23:34:27 + + +waiting on router queue for slot.... +23:34:27 Sending to : +23:34:27 ============================================================================ +23:34:27 ============================================================================ +23:34:27 Slot Id : <162> +23:34:27 Transaction Type : RESPONSE +23:34:27 Received From : +23:34:27 ============================================================================ +23:34:27 FNo. Len. Field Value +23:34:27 ============================================================================ +23:34:27 [ 1] [ 4] [0810] +23:34:27 [ 7] [ 10] [0320043335] +23:34:27 [ 11] [ 6] [159090] +23:34:27 [ 39] [ 2] [00] +23:34:27 [ 70] [ 3] [301] +23:34:27 ============================================================================ +23:34:27 Calculate Source COMM Id = 2 +23:34:27 ============================================================================ +23:34:27 + + +waiting on router queue for slot.... +23:34:34 ============================================================================ +23:34:34 Slot Id : <166> +23:34:34 Transaction Type : REQUEST +23:34:34 Received From : +23:34:34 ============================================================================ +23:34:34 FNo. Len. Field Value +23:34:34 ============================================================================ +23:34:34 [ 1] [ 4] [0200] +23:34:34 [ 2] [ 16] [6213541000393465] +23:34:34 [ 3] [ 6] [010000] +23:34:34 [ 4] [ 12] [000070000000] +23:34:34 [ 7] [ 10] [0320233224] +23:34:34 [ 11] [ 6] [958167] +23:34:34 [ 12] [ 6] [233224] +23:34:34 [ 13] [ 4] [0320] +23:34:34 [ 15] [ 4] [0320] +23:34:34 [ 18] [ 4] [6011] +23:34:34 [ 19] [ 3] [418] +23:34:34 [ 22] [ 3] [021] +23:34:34 [ 25] [ 2] [01] +23:34:34 [ 28] [ 9] [D00002000] +23:34:34 [ 32] [ 6] [668899] +23:34:34 [ 35] [ 32] [6213541000393465=491212019346512] +23:34:34 [ 37] [ 12] [507902407394] +23:34:34 [ 41] [ 8] [03001010] +23:34:34 [ 42] [ 15] [APT ] +23:34:34 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +23:34:34 [ 49] [ 3] [418] +23:34:34 [ 52] [ 16] [7F8035351DA4762A] +23:34:34 ============================================================================ +23:34:34 + + +waiting on router queue for slot.... +23:34:34 Sending to : +23:34:34 ============================================================================ +23:34:34 Sending to : +23:34:34 ============================================================================ +23:34:34 ============================================================================ +23:34:34 Slot Id : <166> +23:34:34 Transaction Type : REQUEST +23:34:34 Received From : +23:34:34 ============================================================================ +23:34:34 FNo. Len. Field Value +23:34:34 ============================================================================ +23:34:34 [ 1] [ 4] [0200] +23:34:34 [ 2] [ 16] [6213541000393465] +23:34:34 [ 3] [ 6] [010000] +23:34:34 [ 4] [ 12] [000070000000] +23:34:34 [ 7] [ 10] [0320233224] +23:34:34 [ 11] [ 6] [958167] +23:34:34 [ 12] [ 6] [233224] +23:34:34 [ 13] [ 4] [0320] +23:34:34 [ 15] [ 4] [0320] +23:34:34 [ 18] [ 4] [6011] +23:34:34 [ 19] [ 3] [418] +23:34:34 [ 22] [ 3] [021] +23:34:34 [ 25] [ 2] [01] +23:34:34 [ 28] [ 9] [D00002000] +23:34:34 [ 32] [ 6] [668899] +23:34:34 [ 35] [ 32] [6213541000393465=491212019346512] +23:34:34 [ 37] [ 12] [507902407394] +23:34:34 [ 41] [ 8] [03001010] +23:34:34 [ 42] [ 15] [APT ] +23:34:34 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +23:34:34 [ 49] [ 3] [418] +23:34:34 [ 52] [ 16] [7F8035351DA4762A] +23:34:34 ============================================================================ +23:34:34 + + +waiting on router queue for slot.... +23:34:34 Sending to : +23:34:34 ============================================================================ +23:34:34 ============================================================================ +23:34:34 Slot Id : <166> +23:34:34 Transaction Type : REQUEST +23:34:34 Received From : +23:34:34 ============================================================================ +23:34:34 FNo. Len. Field Value +23:34:34 ============================================================================ +23:34:34 [ 1] [ 4] [0200] +23:34:34 [ 2] [ 16] [6213541000393465] +23:34:34 [ 3] [ 6] [010000] +23:34:34 [ 4] [ 12] [000070000000] +23:34:34 [ 7] [ 10] [0320233224] +23:34:34 [ 11] [ 6] [958167] +23:34:34 [ 12] [ 6] [233224] +23:34:34 [ 13] [ 4] [0320] +23:34:34 [ 15] [ 4] [0320] +23:34:34 [ 18] [ 4] [6011] +23:34:34 [ 19] [ 3] [418] +23:34:34 [ 22] [ 3] [021] +23:34:34 [ 25] [ 2] [01] +23:34:34 [ 28] [ 9] [D00002000] +23:34:34 [ 32] [ 6] [668899] +23:34:34 [ 35] [ 32] [6213541000393465=491212019346512] +23:34:34 [ 37] [ 12] [507902407394] +23:34:34 [ 41] [ 8] [03001010] +23:34:34 [ 42] [ 15] [APT ] +23:34:34 [ 43] [ 40] [ SOMSANOUK KM10 SOMSANOUK ] +23:34:34 [ 49] [ 3] [418] +23:34:34 [ 52] [ 16] [F61A90353BC7F274] +23:34:34 ============================================================================ +23:34:34 + + +waiting on router queue for slot.... +23:34:34 Sending to : <0> +23:34:34 ============================================================================ +23:34:35 ============================================================================ +23:34:35 Slot Id : <166> +23:34:35 Transaction Type : RESPONSE +23:34:35 Received From : +23:34:35 ============================================================================ +23:34:35 FNo. Len. Field Value +23:34:35 ============================================================================ +23:34:35 [ 1] [ 4] [0210] +23:34:35 [ 2] [ 16] [6213541000393465] +23:34:35 [ 3] [ 6] [010000] +23:34:35 [ 4] [ 12] [000070000000] +23:34:35 [ 7] [ 10] [0320233224] +23:34:35 [ 11] [ 6] [958167] +23:34:35 [ 12] [ 6] [233224] +23:34:35 [ 13] [ 4] [0320] +23:34:35 [ 15] [ 4] [0320] +23:34:35 [ 18] [ 4] [6011] +23:34:35 [ 19] [ 3] [418] +23:34:35 [ 32] [ 6] [668899] +23:34:35 [ 35] [ 32] [6213541000393465=491212019346512] +23:34:35 [ 37] [ 12] [507902407394] +23:34:35 [ 38] [ 6] [958167] +23:34:35 [ 39] [ 2] [51] +23:34:35 [ 41] [ 8] [03001010] +23:34:35 [ 49] [ 3] [418] +23:34:35 [ 54] [ 40] [0001840C0000000094850002840C000000009485] +23:34:35 ============================================================================ +23:34:35 Sending to : +23:34:35 ============================================================================ +23:34:35 + + +waiting on router queue for slot.... +23:34:36 ============================================================================ +23:34:36 Slot Id : <166> +23:34:36 Transaction Type : RESPONSE +23:34:36 Received From : +23:34:36 ============================================================================ +23:34:36 FNo. Len. Field Value +23:34:36 ============================================================================ +23:34:36 [ 1] [ 4] [0210] +23:34:36 [ 2] [ 16] [6213541000393465] +23:34:36 [ 3] [ 6] [010000] +23:34:36 [ 4] [ 12] [000070000000] +23:34:36 [ 7] [ 10] [0320233224] +23:34:36 [ 11] [ 6] [958167] +23:34:36 [ 12] [ 6] [233224] +23:34:36 [ 13] [ 4] [0320] +23:34:36 [ 15] [ 4] [0320] +23:34:36 [ 18] [ 4] [6011] +23:34:36 [ 19] [ 3] [418] +23:34:36 [ 32] [ 6] [668899] +23:34:36 [ 35] [ 32] [6213541000393465=491212019346512] +23:34:36 [ 37] [ 12] [507902407394] +23:34:36 [ 38] [ 6] [958167] +23:34:36 [ 39] [ 2] [51] +23:34:36 [ 41] [ 8] [03001010] +23:34:36 [ 49] [ 3] [418] +23:34:36 [ 54] [ 40] [0001840C0000000094850002840C000000009485] +23:34:36 ============================================================================ +23:34:36 Calculate Source COMM Id = 4 +23:34:36 ============================================================================ +23:34:36 + + +waiting on router queue for slot.... +23:34:38 ============================================================================ +23:34:38 Slot Id : <143> +23:34:38 Transaction Type : REQUEST +23:34:38 Received From : +23:34:38 ============================================================================ +23:34:38 FNo. Len. Field Value +23:34:38 ============================================================================ +23:34:38 [ 1] [ 4] [0800] +23:34:38 [ 7] [ 10] [0320043346] +23:34:38 [ 11] [ 6] [159091] +23:34:38 [ 70] [ 3] [301] +23:34:38 ============================================================================ +23:34:38 + + +waiting on router queue for slot.... +23:34:38 Sending to : +23:34:38 ============================================================================ +23:34:38 ============================================================================ +23:34:38 Slot Id : <143> +23:34:38 Transaction Type : RESPONSE +23:34:38 Received From : +23:34:38 ============================================================================ +23:34:38 FNo. Len. Field Value +23:34:38 ============================================================================ +23:34:38 [ 1] [ 4] [0810] +23:34:38 [ 7] [ 10] [0320043346] +23:34:38 [ 11] [ 6] [159091] +23:34:38 [ 39] [ 2] [00] +23:34:38 [ 70] [ 3] [301] +23:34:38 ============================================================================ +23:34:38 Calculate Source COMM Id = 2 +23:34:38 ============================================================================ +23:34:38 + + +waiting on router queue for slot.... +23:34:53 ============================================================================ +23:34:53 Slot Id : <145> +23:34:53 Transaction Type : REQUEST +23:34:53 Received From : +23:34:53 ============================================================================ +23:34:53 FNo. Len. Field Value +23:34:53 ============================================================================ +23:34:53 [ 1] [ 4] [0800] +23:34:53 [ 7] [ 10] [0320043401] +23:34:53 [ 11] [ 6] [159092] +23:34:53 [ 70] [ 3] [301] +23:34:53 ============================================================================ +23:34:53 + + +waiting on router queue for slot.... +23:34:53 Sending to : +23:34:53 ============================================================================ +23:34:53 ============================================================================ +23:34:53 Slot Id : <145> +23:34:53 Transaction Type : RESPONSE +23:34:53 Received From : +23:34:53 ============================================================================ +23:34:53 FNo. Len. Field Value +23:34:53 ============================================================================ +23:34:53 [ 1] [ 4] [0810] +23:34:53 [ 7] [ 10] [0320043401] +23:34:53 [ 11] [ 6] [159092] +23:34:53 [ 39] [ 2] [00] +23:34:53 [ 70] [ 3] [301] +23:34:53 ============================================================================ +23:34:53 Calculate Source COMM Id = 2 +23:34:53 ============================================================================ +23:34:53 + + +waiting on router queue for slot.... +23:34:55 ============================================================================ +23:34:55 Slot Id : <154> +23:34:55 Transaction Type : REQUEST +23:34:55 Received From : +23:34:55 ============================================================================ +23:34:55 FNo. Len. Field Value +23:34:55 ============================================================================ +23:34:55 [ 1] [ 4] [0800] +23:34:55 [ 7] [ 10] [0320164242] +23:34:55 [ 11] [ 6] [013029] +23:34:55 [ 37] [ 12] [57923013029] +23:34:55 [ 70] [ 3] [301] +23:34:55 ============================================================================ +23:34:55 + + +waiting on router queue for slot.... +23:34:55 Sending to : +23:34:55 ============================================================================ +23:34:55 ============================================================================ +23:34:55 Slot Id : <154> +23:34:55 Transaction Type : RESPONSE +23:34:55 Received From : +23:34:55 ============================================================================ +23:34:55 FNo. Len. Field Value +23:34:55 ============================================================================ +23:34:55 [ 1] [ 4] [0810] +23:34:55 [ 7] [ 10] [0320164242] +23:34:55 [ 11] [ 6] [013029] +23:34:55 [ 37] [ 12] [579230130290] +23:34:55 [ 39] [ 2] [00] +23:34:55 [ 70] [ 3] [810] +23:34:55 ============================================================================ +23:34:55 Calculate Source COMM Id = 1 +23:34:55 ============================================================================ +23:34:55 + + +waiting on router queue for slot.... +23:34:56 ============================================================================ +23:34:56 Slot Id : <153> +23:34:56 Transaction Type : REQUEST +23:34:56 Received From : +23:34:56 ============================================================================ +23:34:56 FNo. Len. Field Value +23:34:56 ============================================================================ +23:34:56 [ 1] [ 4] [0200] +23:34:56 [ 2] [ 16] [6213546000009797] +23:34:56 [ 3] [ 6] [010000] +23:34:56 [ 4] [ 12] [000050000000] +23:34:56 [ 7] [ 10] [0320163403] +23:34:56 [ 11] [ 6] [271760] +23:34:56 [ 12] [ 6] [233403] +23:34:56 [ 13] [ 4] [0320] +23:34:56 [ 14] [ 4] [4912] +23:34:56 [ 15] [ 4] [0320] +23:34:56 [ 18] [ 4] [6011] +23:34:56 [ 19] [ 3] [418] +23:34:56 [ 22] [ 3] [021] +23:34:56 [ 25] [ 2] [01] +23:34:56 [ 28] [ 9] [D00002000] +23:34:56 [ 32] [ 6] [180893] +23:34:56 [ 35] [ 32] [6213546000009797=491212010979104] +23:34:56 [ 37] [ 12] [507916271760] +23:34:56 [ 41] [ 8] [0401XSBR] +23:34:56 [ 42] [ 15] [999999 ] +23:34:56 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +23:34:56 [ 49] [ 3] [418] +23:34:56 [ 52] [ 16] [CC3643C4D1F80BC7] +23:34:56 ============================================================================ +23:34:56 + + +waiting on router queue for slot.... +23:34:56 Sending to : +23:34:56 ============================================================================ +23:34:56 Sending to : +23:34:56 ============================================================================ +23:34:57 ============================================================================ +23:34:57 Slot Id : <153> +23:34:57 Transaction Type : REQUEST +23:34:57 Received From : +23:34:57 ============================================================================ +23:34:57 FNo. Len. Field Value +23:34:57 ============================================================================ +23:34:57 [ 1] [ 4] [0200] +23:34:57 [ 2] [ 16] [6213546000009797] +23:34:57 [ 3] [ 6] [010000] +23:34:57 [ 4] [ 12] [000050000000] +23:34:57 [ 7] [ 10] [0320163403] +23:34:57 [ 11] [ 6] [271760] +23:34:57 [ 12] [ 6] [233403] +23:34:57 [ 13] [ 4] [0320] +23:34:57 [ 14] [ 4] [4912] +23:34:57 [ 15] [ 4] [0320] +23:34:57 [ 18] [ 4] [6011] +23:34:57 [ 19] [ 3] [418] +23:34:57 [ 22] [ 3] [021] +23:34:57 [ 25] [ 2] [01] +23:34:57 [ 28] [ 9] [D00002000] +23:34:57 [ 32] [ 6] [180893] +23:34:57 [ 35] [ 32] [6213546000009797=491212010979104] +23:34:57 [ 37] [ 12] [507916271760] +23:34:57 [ 41] [ 8] [0401XSBR] +23:34:57 [ 42] [ 15] [999999 ] +23:34:57 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +23:34:57 [ 49] [ 3] [418] +23:34:57 [ 52] [ 16] [CC3643C4D1F80BC7] +23:34:57 ============================================================================ +23:34:57 + + +waiting on router queue for slot.... +23:34:57 Sending to : +23:34:57 ============================================================================ +23:34:57 ============================================================================ +23:34:57 Slot Id : <153> +23:34:57 Transaction Type : REQUEST +23:34:57 Received From : +23:34:57 ============================================================================ +23:34:57 FNo. Len. Field Value +23:34:57 ============================================================================ +23:34:57 [ 1] [ 4] [0200] +23:34:57 [ 2] [ 16] [6213546000009797] +23:34:57 [ 3] [ 6] [010000] +23:34:57 [ 4] [ 12] [000050000000] +23:34:57 [ 7] [ 10] [0320163403] +23:34:57 [ 11] [ 6] [271760] +23:34:57 [ 12] [ 6] [233403] +23:34:57 [ 13] [ 4] [0320] +23:34:57 [ 14] [ 4] [4912] +23:34:57 [ 15] [ 4] [0320] +23:34:57 [ 18] [ 4] [6011] +23:34:57 [ 19] [ 3] [418] +23:34:57 [ 22] [ 3] [021] +23:34:57 [ 25] [ 2] [01] +23:34:57 [ 28] [ 9] [D00002000] +23:34:57 [ 32] [ 6] [180893] +23:34:57 [ 35] [ 32] [6213546000009797=491212010979104] +23:34:57 [ 37] [ 12] [507916271760] +23:34:57 [ 41] [ 8] [0401XSBR] +23:34:57 [ 42] [ 15] [999999 ] +23:34:57 [ 43] [ 40] [ATM XAISOMBOUN BRANCH LOCATION, Xaysombo] +23:34:57 [ 49] [ 3] [418] +23:34:57 [ 52] [ 16] [D5C8D594AA50CBFC] +23:34:57 ============================================================================ +23:34:57 + + +waiting on router queue for slot.... +23:34:57 Sending to : <0> +23:34:57 ============================================================================ +23:34:57 ============================================================================ +23:34:57 Slot Id : <153> +23:34:57 Transaction Type : RESPONSE +23:34:57 Received From : +23:34:57 ============================================================================ +23:34:57 FNo. Len. Field Value +23:34:57 ============================================================================ +23:34:57 [ 1] [ 4] [0210] +23:34:57 [ 2] [ 16] [6213546000009797] +23:34:57 [ 3] [ 6] [010000] +23:34:57 [ 4] [ 12] [000050000000] +23:34:57 [ 7] [ 10] [0320163403] +23:34:57 [ 11] [ 6] [271760] +23:34:57 [ 12] [ 6] [233403] +23:34:57 [ 13] [ 4] [0320] +23:34:57 [ 15] [ 4] [0320] +23:34:57 [ 18] [ 4] [6011] +23:34:57 [ 19] [ 3] [418] +23:34:57 [ 32] [ 6] [180893] +23:34:57 [ 35] [ 32] [6213546000009797=491212010979104] +23:34:57 [ 37] [ 12] [507916271760] +23:34:57 [ 38] [ 6] [391739] +23:34:57 [ 39] [ 2] [00] +23:34:57 [ 41] [ 8] [0401XSBR] +23:34:57 [ 49] [ 3] [418] +23:34:57 [ 54] [ 40] [0001418C0002002803180002418C000150080318] +23:34:57 ============================================================================ +23:34:57 Sending to : +23:34:57 ============================================================================ +23:34:57 + + +waiting on router queue for slot.... +23:34:59 ============================================================================ +23:34:59 Slot Id : <153> +23:34:59 Transaction Type : RESPONSE +23:34:59 Received From : +23:34:59 ============================================================================ +23:34:59 FNo. Len. Field Value +23:34:59 ============================================================================ +23:34:59 [ 1] [ 4] [0210] +23:34:59 [ 2] [ 16] [6213546000009797] +23:34:59 [ 3] [ 6] [010000] +23:34:59 [ 4] [ 12] [000050000000] +23:34:59 [ 7] [ 10] [0320163403] +23:34:59 [ 11] [ 6] [271760] +23:34:59 [ 12] [ 6] [233403] +23:34:59 [ 13] [ 4] [0320] +23:34:59 [ 15] [ 4] [0320] +23:34:59 [ 18] [ 4] [6011] +23:34:59 [ 19] [ 3] [418] +23:34:59 [ 32] [ 6] [180893] +23:34:59 [ 35] [ 32] [6213546000009797=491212010979104] +23:34:59 [ 37] [ 12] [507916271760] +23:34:59 [ 38] [ 6] [391739] +23:34:59 [ 39] [ 2] [00] +23:34:59 [ 41] [ 8] [0401XSBR] +23:34:59 [ 49] [ 3] [418] +23:34:59 [ 54] [ 40] [0001418C0002002803180002418C000150080318] +23:34:59 ============================================================================ +23:34:59 Calculate Source COMM Id = 2 +23:34:59 ============================================================================ +23:34:59 + + +waiting on router queue for slot.... +23:35:08 ============================================================================ +23:35:08 Slot Id : <120> +23:35:08 Transaction Type : REQUEST +23:35:08 Received From : +23:35:08 ============================================================================ +23:35:08 FNo. Len. Field Value +23:35:08 ============================================================================ +23:35:08 [ 1] [ 4] [0800] +23:35:08 [ 7] [ 10] [0321064657] +23:35:08 [ 11] [ 6] [234657] +23:35:08 [ 37] [ 12] [57923234657] +23:35:08 [ 70] [ 3] [301] +23:35:08 ============================================================================ +23:35:08 + + +waiting on router queue for slot.... +23:35:08 Sending to : +23:35:08 ============================================================================ +23:35:08 ============================================================================ +23:35:08 Slot Id : <120> +23:35:08 Transaction Type : RESPONSE +23:35:08 Received From : +23:35:08 ============================================================================ +23:35:08 FNo. Len. Field Value +23:35:08 ============================================================================ +23:35:08 [ 1] [ 4] [0810] +23:35:08 [ 7] [ 10] [0321064657] +23:35:08 [ 11] [ 6] [234657] +23:35:08 [ 37] [ 12] [579232346570] +23:35:08 [ 39] [ 2] [00] +23:35:08 [ 70] [ 3] [810] +23:35:08 ============================================================================ +23:35:08 Calculate Source COMM Id = 6 +23:35:08 ============================================================================ +23:35:08 + + +waiting on router queue for slot.... +23:35:14 ============================================================================ +23:35:14 Slot Id : <150> +23:35:14 Transaction Type : REQUEST +23:35:14 Received From : +23:35:14 ============================================================================ +23:35:14 FNo. Len. Field Value +23:35:14 ============================================================================ +23:35:14 [ 1] [ 4] [0800] +23:35:14 [ 7] [ 10] [0320043421] +23:35:14 [ 11] [ 6] [159093] +23:35:14 [ 70] [ 3] [301] +23:35:14 ============================================================================ +23:35:14 + + +waiting on router queue for slot.... +23:35:14 Sending to : +23:35:14 ============================================================================ +23:35:14 ============================================================================ +23:35:14 Slot Id : <150> +23:35:14 Transaction Type : RESPONSE +23:35:14 Received From : +23:35:14 ============================================================================ +23:35:14 FNo. Len. Field Value +23:35:14 ============================================================================ +23:35:14 [ 1] [ 4] [0810] +23:35:14 [ 7] [ 10] [0320043421] +23:35:14 [ 11] [ 6] [159093] +23:35:14 [ 39] [ 2] [00] +23:35:14 [ 70] [ 3] [301] +23:35:14 ============================================================================ +23:35:14 Calculate Source COMM Id = 2 +23:35:14 ============================================================================ +23:35:14 + + +waiting on router queue for slot.... +23:35:18 ============================================================================ +23:35:18 Slot Id : <110> +23:35:18 Transaction Type : REQUEST +23:35:18 Received From : +23:35:18 ============================================================================ +23:35:18 FNo. Len. Field Value +23:35:18 ============================================================================ +23:35:18 [ 1] [ 4] [0800] +23:35:18 [ 2] [ 5] [02531] +23:35:18 [ 3] [ 6] [579238] +23:35:18 [ 7] [ 10] [0320163518] +23:35:18 [ 11] [ 6] [807781] +23:35:18 [ 15] [ 10] [0320163518] +23:35:18 [ 37] [ 11] [57923807781] +23:35:18 [ 70] [ 3] [001] +23:35:18 ============================================================================ +23:35:18 + + +waiting on router queue for slot.... +23:35:18 ============================================================================ +23:35:18 Slot Id : <110> +23:35:18 Transaction Type : RESPONSE +23:35:18 Received From : +23:35:18 ============================================================================ +23:35:18 FNo. Len. Field Value +23:35:18 ============================================================================ +23:35:18 [ 1] [ 4] [0810] +23:35:18 [ 7] [ 10] [0320163518] +23:35:18 [ 11] [ 6] [807781] +23:35:18 [ 15] [ 4] [0320] +23:35:18 [ 37] [ 12] [57923807781] +23:35:18 [ 39] [ 2] [00] +23:35:18 [ 70] [ 3] [001] +23:35:18 ============================================================================ +23:35:18 Sending to : +23:35:18 ============================================================================ +23:35:18 + + +waiting on router queue for slot.... +23:35:29 ============================================================================ +23:35:29 Slot Id : <133> +23:35:29 Transaction Type : REQUEST +23:35:29 Received From : +23:35:29 ============================================================================ +23:35:29 FNo. Len. Field Value +23:35:29 ============================================================================ +23:35:29 [ 1] [ 4] [0800] +23:35:29 [ 7] [ 10] [0320043437] +23:35:29 [ 11] [ 6] [159094] +23:35:29 [ 70] [ 3] [301] +23:35:29 ============================================================================ +23:35:29 + + +waiting on router queue for slot.... +23:35:29 Sending to : +23:35:29 ============================================================================ +23:35:29 ============================================================================ +23:35:29 Slot Id : <133> +23:35:29 Transaction Type : RESPONSE +23:35:29 Received From : +23:35:29 ============================================================================ +23:35:29 FNo. Len. Field Value +23:35:29 ============================================================================ +23:35:29 [ 1] [ 4] [0810] +23:35:29 [ 7] [ 10] [0320043437] +23:35:29 [ 11] [ 6] [159094] +23:35:29 [ 39] [ 2] [00] +23:35:29 [ 70] [ 3] [301] +23:35:29 ============================================================================ +23:35:29 Calculate Source COMM Id = 2 +23:35:29 ============================================================================ +23:35:29 + + +waiting on router queue for slot.... +23:35:44 ============================================================================ +23:35:44 Slot Id : <159> +23:35:44 Transaction Type : REQUEST +23:35:44 Received From : +23:35:44 ============================================================================ +23:35:44 FNo. Len. Field Value +23:35:44 ============================================================================ +23:35:44 [ 1] [ 4] [0800] +23:35:44 [ 7] [ 10] [0320043452] +23:35:44 [ 11] [ 6] [159095] +23:35:44 [ 70] [ 3] [301] +23:35:44 ============================================================================ +23:35:44 + + +waiting on router queue for slot.... +23:35:44 Sending to : +23:35:44 ============================================================================ +23:35:44 ============================================================================ +23:35:44 Slot Id : <159> +23:35:44 Transaction Type : RESPONSE +23:35:44 Received From : +23:35:44 ============================================================================ +23:35:44 FNo. Len. Field Value +23:35:44 ============================================================================ +23:35:44 [ 1] [ 4] [0810] +23:35:44 [ 7] [ 10] [0320043452] +23:35:44 [ 11] [ 6] [159095] +23:35:44 [ 39] [ 2] [00] +23:35:44 [ 70] [ 3] [301] +23:35:44 ============================================================================ +23:35:44 Calculate Source COMM Id = 2 +23:35:44 ============================================================================ +23:35:44 + + +waiting on router queue for slot.... +23:35:56 ============================================================================ +23:35:56 Slot Id : <146> +23:35:56 Transaction Type : REQUEST +23:35:56 Received From : +23:35:56 ============================================================================ +23:35:56 FNo. Len. Field Value +23:35:56 ============================================================================ +23:35:56 [ 1] [ 4] [0800] +23:35:56 [ 7] [ 10] [0320043503] +23:35:56 [ 11] [ 6] [159096] +23:35:56 [ 70] [ 3] [301] +23:35:56 ============================================================================ +23:35:56 + + +waiting on router queue for slot.... +23:35:56 Sending to : +23:35:56 ============================================================================ +23:35:56 ============================================================================ +23:35:56 Slot Id : <146> +23:35:56 Transaction Type : RESPONSE +23:35:56 Received From : +23:35:56 ============================================================================ +23:35:56 FNo. Len. Field Value +23:35:56 ============================================================================ +23:35:56 [ 1] [ 4] [0810] +23:35:56 [ 7] [ 10] [0320043503] +23:35:56 [ 11] [ 6] [159096] +23:35:56 [ 39] [ 2] [00] +23:35:56 [ 70] [ 3] [301] +23:35:56 ============================================================================ +23:35:56 Calculate Source COMM Id = 2 +23:35:56 ============================================================================ +23:35:56 + + +waiting on router queue for slot.... +23:36:03 ============================================================================ +23:36:03 Slot Id : <142> +23:36:03 Transaction Type : REQUEST +23:36:03 Received From : +23:36:03 ============================================================================ +23:36:03 FNo. Len. Field Value +23:36:03 ============================================================================ +23:36:03 [ 1] [ 4] [0200] +23:36:03 [ 2] [ 16] [1808931800002170] +23:36:03 [ 3] [ 6] [302000] +23:36:03 [ 4] [ 12] [000000000000] +23:36:03 [ 7] [ 10] [0320233559] +23:36:03 [ 11] [ 6] [849586] +23:36:03 [ 12] [ 6] [233559] +23:36:03 [ 13] [ 4] [0320] +23:36:03 [ 15] [ 4] [0320] +23:36:03 [ 18] [ 4] [6011] +23:36:03 [ 22] [ 3] [900] +23:36:03 [ 25] [ 2] [02] +23:36:03 [ 28] [ 9] [D00002000] +23:36:03 [ 32] [ 6] [621354] +23:36:03 [ 35] [ 27] [1808931800002170=1803500392] +23:36:03 [ 37] [ 12] [507903555844] +23:36:03 [ 41] [ 8] [09001200] +23:36:03 [ 42] [ 15] [NATIVE ] +23:36:03 [ 43] [ 40] [Sikhay Unit 2 SikhottabongLAO] +23:36:03 [ 49] [ 3] [418] +23:36:03 [ 52] [ 16] [832C1930306D15ED] +23:36:03 ============================================================================ +23:36:03 + + +waiting on router queue for slot.... +23:36:03 Sending to : +23:36:03 ============================================================================ +23:36:03 Sending to : +23:36:03 ============================================================================ +23:36:03 ============================================================================ +23:36:03 Slot Id : <142> +23:36:03 Transaction Type : REQUEST +23:36:03 Received From : +23:36:03 ============================================================================ +23:36:03 FNo. Len. Field Value +23:36:03 ============================================================================ +23:36:03 [ 1] [ 4] [0200] +23:36:03 [ 2] [ 16] [1808931800002170] +23:36:03 [ 3] [ 6] [302000] +23:36:03 [ 4] [ 12] [000000000000] +23:36:03 [ 7] [ 10] [0320233559] +23:36:03 [ 11] [ 6] [849586] +23:36:03 [ 12] [ 6] [233559] +23:36:03 [ 13] [ 4] [0320] +23:36:03 [ 15] [ 4] [0320] +23:36:03 [ 18] [ 4] [6011] +23:36:03 [ 22] [ 3] [900] +23:36:03 [ 25] [ 2] [02] +23:36:03 [ 28] [ 9] [D00002000] +23:36:03 [ 32] [ 6] [621354] +23:36:03 [ 35] [ 27] [1808931800002170=1803500392] +23:36:03 [ 37] [ 12] [507903555844] +23:36:03 [ 41] [ 8] [09001200] +23:36:03 [ 42] [ 15] [NATIVE ] +23:36:03 [ 43] [ 40] [Sikhay Unit 2 SikhottabongLAO] +23:36:03 [ 49] [ 3] [418] +23:36:03 [ 52] [ 16] [832C1930306D15ED] +23:36:03 ============================================================================ +23:36:03 + + +waiting on router queue for slot.... +23:36:03 Sending to : +23:36:03 ============================================================================ +23:36:03 ============================================================================ +23:36:03 Slot Id : <142> +23:36:03 Transaction Type : REQUEST +23:36:03 Received From : +23:36:03 ============================================================================ +23:36:03 FNo. Len. Field Value +23:36:03 ============================================================================ +23:36:03 [ 1] [ 4] [0200] +23:36:03 [ 2] [ 16] [1808931800002170] +23:36:03 [ 3] [ 6] [302000] +23:36:03 [ 4] [ 12] [000000000000] +23:36:03 [ 7] [ 10] [0320233559] +23:36:03 [ 11] [ 6] [849586] +23:36:03 [ 12] [ 6] [233559] +23:36:03 [ 13] [ 4] [0320] +23:36:03 [ 15] [ 4] [0320] +23:36:03 [ 18] [ 4] [6011] +23:36:03 [ 22] [ 3] [900] +23:36:03 [ 25] [ 2] [02] +23:36:03 [ 28] [ 9] [D00002000] +23:36:03 [ 32] [ 6] [621354] +23:36:03 [ 35] [ 27] [1808931800002170=1803500392] +23:36:03 [ 37] [ 12] [507903555844] +23:36:03 [ 41] [ 8] [09001200] +23:36:03 [ 42] [ 15] [NATIVE ] +23:36:03 [ 43] [ 40] [Sikhay Unit 2 SikhottabongLAO] +23:36:03 [ 49] [ 3] [418] +23:36:03 [ 52] [ 16] [4B86C14AB014F09E] +23:36:03 ============================================================================ +23:36:03 + + +waiting on router queue for slot.... +23:36:03 Sending to : <2> +23:36:03 ============================================================================ +23:36:04 ============================================================================ +23:36:04 Slot Id : <142> +23:36:04 Transaction Type : RESPONSE +23:36:04 Received From : +23:36:04 ============================================================================ +23:36:04 FNo. Len. Field Value +23:36:04 ============================================================================ +23:36:04 [ 1] [ 4] [0210] +23:36:04 [ 2] [ 16] [1808931800002170] +23:36:04 [ 3] [ 6] [302000] +23:36:04 [ 7] [ 10] [0320233559] +23:36:04 [ 11] [ 6] [849586] +23:36:04 [ 12] [ 6] [233559] +23:36:04 [ 13] [ 4] [0320] +23:36:04 [ 14] [ 4] [1803] +23:36:04 [ 19] [ 3] [418] +23:36:04 [ 32] [ 6] [621354] +23:36:04 [ 37] [ 12] [507903555844] +23:36:04 [ 39] [ 2] [42] +23:36:04 [ 41] [ 8] [09001200] +23:36:04 [ 49] [ 3] [418] +23:36:04 [ 52] [ 16] [4B86C14AB014F09E] +23:36:04 ============================================================================ +23:36:04 Sending to : +23:36:04 ============================================================================ +23:36:04 + + +waiting on router queue for slot.... +23:36:05 ============================================================================ +23:36:05 Slot Id : <142> +23:36:05 Transaction Type : RESPONSE +23:36:05 Received From : +23:36:05 ============================================================================ +23:36:05 FNo. Len. Field Value +23:36:05 ============================================================================ +23:36:05 [ 1] [ 4] [0210] +23:36:05 [ 2] [ 16] [1808931800002170] +23:36:05 [ 3] [ 6] [302000] +23:36:05 [ 7] [ 10] [0320233559] +23:36:05 [ 11] [ 6] [849586] +23:36:05 [ 12] [ 6] [233559] +23:36:05 [ 13] [ 4] [0320] +23:36:05 [ 14] [ 4] [1803] +23:36:05 [ 19] [ 3] [418] +23:36:05 [ 32] [ 6] [621354] +23:36:05 [ 37] [ 12] [507903555844] +23:36:05 [ 39] [ 2] [42] +23:36:05 [ 41] [ 8] [09001200] +23:36:05 [ 49] [ 3] [418] +23:36:05 [ 52] [ 16] [4B86C14AB014F09E] +23:36:05 ============================================================================ +23:36:05 Calculate Source COMM Id = 0 +23:36:05 ============================================================================ +23:36:05 + + +waiting on router queue for slot.... +23:36:13 ============================================================================ +23:36:13 Slot Id : <158> +23:36:13 Transaction Type : REQUEST +23:36:13 Received From : +23:36:13 ============================================================================ +23:36:13 FNo. Len. Field Value +23:36:13 ============================================================================ +23:36:13 [ 1] [ 4] [0800] +23:36:13 [ 7] [ 10] [0321064802] +23:36:13 [ 11] [ 6] [234802] +23:36:13 [ 37] [ 12] [57923234802] +23:36:13 [ 70] [ 3] [301] +23:36:13 ============================================================================ +23:36:13 + + +waiting on router queue for slot.... +23:36:13 Sending to : +23:36:13 ============================================================================ +23:36:13 ============================================================================ +23:36:13 Slot Id : <158> +23:36:13 Transaction Type : RESPONSE +23:36:13 Received From : +23:36:13 ============================================================================ +23:36:13 FNo. Len. Field Value +23:36:13 ============================================================================ +23:36:13 [ 1] [ 4] [0810] +23:36:13 [ 7] [ 10] [0321064802] +23:36:13 [ 11] [ 6] [234802] +23:36:13 [ 37] [ 12] [579232348020] +23:36:13 [ 39] [ 2] [00] +23:36:13 [ 70] [ 3] [810] +23:36:13 ============================================================================ +23:36:13 Calculate Source COMM Id = 6 +23:36:13 ============================================================================ +23:36:13 + + +waiting on router queue for slot.... +23:36:17 ============================================================================ +23:36:17 Slot Id : <87> +23:36:17 Transaction Type : REQUEST +23:36:17 Received From : +23:36:17 ============================================================================ +23:36:17 FNo. Len. Field Value +23:36:17 ============================================================================ +23:36:17 [ 1] [ 4] [0800] +23:36:17 [ 7] [ 10] [0320043525] +23:36:17 [ 11] [ 6] [159097] +23:36:17 [ 70] [ 3] [301] +23:36:17 ============================================================================ +23:36:17 + + +waiting on router queue for slot.... +23:36:17 Sending to : +23:36:17 ============================================================================ +23:36:17 ============================================================================ +23:36:17 Slot Id : <87> +23:36:17 Transaction Type : RESPONSE +23:36:17 Received From : +23:36:17 ============================================================================ +23:36:17 FNo. Len. Field Value +23:36:17 ============================================================================ +23:36:17 [ 1] [ 4] [0810] +23:36:17 [ 7] [ 10] [0320043525] +23:36:17 [ 11] [ 6] [159097] +23:36:17 [ 39] [ 2] [00] +23:36:17 [ 70] [ 3] [301] +23:36:17 ============================================================================ +23:36:17 Calculate Source COMM Id = 2 +23:36:17 ============================================================================ +23:36:17 + + +waiting on router queue for slot.... +23:36:20 ============================================================================ +23:36:20 Slot Id : <167> +23:36:20 Transaction Type : REQUEST +23:36:20 Received From : +23:36:20 ============================================================================ +23:36:20 FNo. Len. Field Value +23:36:20 ============================================================================ +23:36:20 [ 1] [ 4] [0800] +23:36:20 [ 2] [ 5] [02531] +23:36:20 [ 3] [ 6] [579238] +23:36:20 [ 7] [ 10] [0320163620] +23:36:20 [ 11] [ 6] [807782] +23:36:20 [ 15] [ 10] [0320163620] +23:36:20 [ 37] [ 11] [57923807782] +23:36:20 [ 70] [ 3] [001] +23:36:20 ============================================================================ +23:36:20 + + +waiting on router queue for slot.... +23:36:20 ============================================================================ +23:36:20 Slot Id : <167> +23:36:20 Transaction Type : RESPONSE +23:36:20 Received From : +23:36:20 ============================================================================ +23:36:20 FNo. Len. Field Value +23:36:20 ============================================================================ +23:36:20 [ 1] [ 4] [0810] +23:36:20 [ 7] [ 10] [0320163620] +23:36:20 [ 11] [ 6] [807782] +23:36:20 [ 15] [ 4] [0320] +23:36:20 [ 37] [ 12] [57923807782] +23:36:20 [ 39] [ 2] [00] +23:36:20 [ 70] [ 3] [001] +23:36:20 ============================================================================ +23:36:20 Sending to : +23:36:20 ============================================================================ +23:36:20 + + +waiting on router queue for slot.... +23:36:21 ============================================================================ +23:36:21 Slot Id : <137> +23:36:21 Transaction Type : REQUEST +23:36:21 Received From : +23:36:21 ============================================================================ +23:36:21 FNo. Len. Field Value +23:36:21 ============================================================================ +23:36:21 [ 1] [ 4] [0800] +23:36:21 [ 7] [ 10] [0320163412] +23:36:21 [ 11] [ 6] [015193] +23:36:21 [ 37] [ 12] [57923015193] +23:36:21 [ 70] [ 3] [301] +23:36:21 ============================================================================ +23:36:21 + + +waiting on router queue for slot.... +23:36:21 Sending to : +23:36:21 ============================================================================ +23:36:21 ============================================================================ +23:36:21 Slot Id : <137> +23:36:21 Transaction Type : RESPONSE +23:36:21 Received From : +23:36:21 ============================================================================ +23:36:21 FNo. Len. Field Value +23:36:21 ============================================================================ +23:36:21 [ 1] [ 4] [0810] +23:36:21 [ 7] [ 10] [0320163412] +23:36:21 [ 11] [ 6] [015193] +23:36:21 [ 37] [ 12] [579230151930] +23:36:21 [ 39] [ 2] [00] +23:36:21 [ 70] [ 3] [810] +23:36:21 ============================================================================ +23:36:21 Calculate Source COMM Id = 4 +23:36:21 ============================================================================ +23:36:21 + + +waiting on router queue for slot.... +23:36:28 ============================================================================ +23:36:28 Slot Id : <128> +23:36:28 Transaction Type : REQUEST +23:36:28 Received From : +23:36:28 ============================================================================ +23:36:28 FNo. Len. Field Value +23:36:28 ============================================================================ +23:36:28 [ 1] [ 4] [0800] +23:36:28 [ 7] [ 10] [0320043536] +23:36:28 [ 11] [ 6] [159098] +23:36:28 [ 70] [ 3] [301] +23:36:28 ============================================================================ +23:36:28 + + +waiting on router queue for slot.... +23:36:28 Sending to : +23:36:28 ============================================================================ +23:36:28 ============================================================================ +23:36:28 Slot Id : <128> +23:36:28 Transaction Type : RESPONSE +23:36:28 Received From : +23:36:28 ============================================================================ +23:36:28 FNo. Len. Field Value +23:36:28 ============================================================================ +23:36:28 [ 1] [ 4] [0810] +23:36:28 [ 7] [ 10] [0320043536] +23:36:28 [ 11] [ 6] [159098] +23:36:28 [ 39] [ 2] [00] +23:36:28 [ 70] [ 3] [301] +23:36:28 ============================================================================ +23:36:28 Calculate Source COMM Id = 2 +23:36:28 ============================================================================ +23:36:28 + + +waiting on router queue for slot.... +23:36:40 ============================================================================ +23:36:40 Slot Id : <130> +23:36:40 Transaction Type : REQUEST +23:36:40 Received From : +23:36:40 ============================================================================ +23:36:40 FNo. Len. Field Value +23:36:40 ============================================================================ +23:36:40 [ 1] [ 4] [0800] +23:36:40 [ 7] [ 10] [0320043547] +23:36:40 [ 11] [ 6] [159099] +23:36:40 [ 70] [ 3] [301] +23:36:40 ============================================================================ +23:36:40 + + +waiting on router queue for slot.... +23:36:40 Sending to : +23:36:40 ============================================================================ +23:36:40 ============================================================================ +23:36:40 Slot Id : <130> +23:36:40 Transaction Type : RESPONSE +23:36:40 Received From : +23:36:40 ============================================================================ +23:36:40 FNo. Len. Field Value +23:36:40 ============================================================================ +23:36:40 [ 1] [ 4] [0810] +23:36:40 [ 7] [ 10] [0320043547] +23:36:40 [ 11] [ 6] [159099] +23:36:40 [ 39] [ 2] [00] +23:36:40 [ 70] [ 3] [301] +23:36:40 ============================================================================ +23:36:40 Calculate Source COMM Id = 2 +23:36:40 ============================================================================ +23:36:40 + + +waiting on router queue for slot.... +23:36:50 ============================================================================ +23:36:50 Slot Id : <157> +23:36:50 Transaction Type : REQUEST +23:36:50 Received From : +23:36:50 ============================================================================ +23:36:50 FNo. Len. Field Value +23:36:50 ============================================================================ +23:36:50 [ 1] [ 4] [0800] +23:36:50 [ 7] [ 10] [0320043558] +23:36:50 [ 11] [ 6] [159100] +23:36:50 [ 70] [ 3] [301] +23:36:50 ============================================================================ +23:36:50 + + +waiting on router queue for slot.... +23:36:50 Sending to : +23:36:50 ============================================================================ +23:36:50 ============================================================================ +23:36:50 Slot Id : <157> +23:36:50 Transaction Type : RESPONSE +23:36:50 Received From : +23:36:50 ============================================================================ +23:36:50 FNo. Len. Field Value +23:36:50 ============================================================================ +23:36:50 [ 1] [ 4] [0810] +23:36:50 [ 7] [ 10] [0320043558] +23:36:50 [ 11] [ 6] [159100] +23:36:50 [ 39] [ 2] [00] +23:36:50 [ 70] [ 3] [301] +23:36:50 ============================================================================ +23:36:50 Calculate Source COMM Id = 2 +23:36:50 ============================================================================ +23:36:50 + + +waiting on router queue for slot.... +23:37:00 ============================================================================ +23:37:00 Slot Id : <175> +23:37:00 Transaction Type : REQUEST +23:37:00 Received From : +23:37:00 ============================================================================ +23:37:00 FNo. Len. Field Value +23:37:00 ============================================================================ +23:37:00 [ 1] [ 4] [0800] +23:37:00 [ 7] [ 10] [0320043608] +23:37:00 [ 11] [ 6] [159101] +23:37:00 [ 70] [ 3] [301] +23:37:00 ============================================================================ +23:37:00 + + +waiting on router queue for slot.... +23:37:00 Sending to : +23:37:00 ============================================================================ +23:37:00 ============================================================================ +23:37:00 Slot Id : <175> +23:37:00 Transaction Type : RESPONSE +23:37:00 Received From : +23:37:00 ============================================================================ +23:37:00 FNo. Len. Field Value +23:37:00 ============================================================================ +23:37:00 [ 1] [ 4] [0810] +23:37:00 [ 7] [ 10] [0320043608] +23:37:00 [ 11] [ 6] [159101] +23:37:00 [ 39] [ 2] [00] +23:37:00 [ 70] [ 3] [301] +23:37:00 ============================================================================ +23:37:00 Calculate Source COMM Id = 2 +23:37:00 ============================================================================ +23:37:00 + + +waiting on router queue for slot.... +23:37:15 ============================================================================ +23:37:15 Slot Id : <141> +23:37:15 Transaction Type : REQUEST +23:37:15 Received From : +23:37:15 ============================================================================ +23:37:15 FNo. Len. Field Value +23:37:15 ============================================================================ +23:37:15 [ 1] [ 4] [0800] +23:37:15 [ 7] [ 10] [0320043623] +23:37:15 [ 11] [ 6] [159102] +23:37:15 [ 70] [ 3] [301] +23:37:15 ============================================================================ +23:37:15 + + +waiting on router queue for slot.... +23:37:15 Sending to : +23:37:15 ============================================================================ +23:37:15 ============================================================================ +23:37:15 Slot Id : <141> +23:37:15 Transaction Type : RESPONSE +23:37:15 Received From : +23:37:15 ============================================================================ +23:37:15 FNo. Len. Field Value +23:37:15 ============================================================================ +23:37:15 [ 1] [ 4] [0810] +23:37:15 [ 7] [ 10] [0320043623] +23:37:15 [ 11] [ 6] [159102] +23:37:15 [ 39] [ 2] [00] +23:37:15 [ 70] [ 3] [301] +23:37:15 ============================================================================ +23:37:15 Calculate Source COMM Id = 2 +23:37:15 ============================================================================ +23:37:15 + + +waiting on router queue for slot.... +23:37:18 ============================================================================ +23:37:18 Slot Id : <151> +23:37:18 Transaction Type : REQUEST +23:37:18 Received From : +23:37:18 ============================================================================ +23:37:18 FNo. Len. Field Value +23:37:18 ============================================================================ +23:37:18 [ 1] [ 4] [0800] +23:37:18 [ 7] [ 10] [0321064907] +23:37:18 [ 11] [ 6] [234907] +23:37:18 [ 37] [ 12] [57923234907] +23:37:18 [ 70] [ 3] [301] +23:37:18 ============================================================================ +23:37:18 + + +waiting on router queue for slot.... +23:37:18 Sending to : +23:37:18 ============================================================================ +23:37:18 ============================================================================ +23:37:18 Slot Id : <151> +23:37:18 Transaction Type : RESPONSE +23:37:18 Received From : +23:37:18 ============================================================================ +23:37:18 FNo. Len. Field Value +23:37:18 ============================================================================ +23:37:18 [ 1] [ 4] [0810] +23:37:18 [ 7] [ 10] [0321064907] +23:37:18 [ 11] [ 6] [234907] +23:37:18 [ 37] [ 12] [579232349070] +23:37:18 [ 39] [ 2] [00] +23:37:18 [ 70] [ 3] [810] +23:37:18 ============================================================================ +23:37:18 Calculate Source COMM Id = 6 +23:37:18 ============================================================================ +23:37:18 + + +waiting on router queue for slot.... +23:37:22 ============================================================================ +23:37:22 Slot Id : <170> +23:37:22 Transaction Type : REQUEST +23:37:22 Received From : +23:37:22 ============================================================================ +23:37:22 FNo. Len. Field Value +23:37:22 ============================================================================ +23:37:22 [ 1] [ 4] [0800] +23:37:22 [ 2] [ 5] [02531] +23:37:22 [ 3] [ 6] [579238] +23:37:22 [ 7] [ 10] [0320163722] +23:37:22 [ 11] [ 6] [807783] +23:37:22 [ 15] [ 10] [0320163722] +23:37:22 [ 37] [ 11] [57923807783] +23:37:22 [ 70] [ 3] [001] +23:37:22 ============================================================================ +23:37:22 + + +waiting on router queue for slot.... +23:37:22 ============================================================================ +23:37:22 Slot Id : <170> +23:37:22 Transaction Type : RESPONSE +23:37:22 Received From : +23:37:22 ============================================================================ +23:37:22 FNo. Len. Field Value +23:37:22 ============================================================================ +23:37:22 [ 1] [ 4] [0810] +23:37:22 [ 7] [ 10] [0320163722] +23:37:22 [ 11] [ 6] [807783] +23:37:22 [ 15] [ 4] [0320] +23:37:22 [ 37] [ 12] [57923807783] +23:37:22 [ 39] [ 2] [00] +23:37:22 [ 70] [ 3] [001] +23:37:22 ============================================================================ +23:37:22 Sending to : +23:37:22 ============================================================================ +23:37:22 + + +waiting on router queue for slot.... +23:37:26 ============================================================================ +23:37:26 Slot Id : <172> +23:37:26 Transaction Type : REQUEST +23:37:26 Received From : +23:37:26 ============================================================================ +23:37:26 FNo. Len. Field Value +23:37:26 ============================================================================ +23:37:26 [ 1] [ 4] [0800] +23:37:26 [ 7] [ 10] [0320043635] +23:37:26 [ 11] [ 6] [159103] +23:37:26 [ 70] [ 3] [301] +23:37:26 ============================================================================ +23:37:26 + + +waiting on router queue for slot.... +23:37:26 Sending to : +23:37:26 ============================================================================ +23:37:27 ============================================================================ +23:37:27 Slot Id : <172> +23:37:27 Transaction Type : RESPONSE +23:37:27 Received From : +23:37:27 ============================================================================ +23:37:27 FNo. Len. Field Value +23:37:27 ============================================================================ +23:37:27 [ 1] [ 4] [0810] +23:37:27 [ 7] [ 10] [0320043635] +23:37:27 [ 11] [ 6] [159103] +23:37:27 [ 39] [ 2] [00] +23:37:27 [ 70] [ 3] [301] +23:37:27 ============================================================================ +23:37:27 Calculate Source COMM Id = 2 +23:37:27 ============================================================================ +23:37:27 + + +waiting on router queue for slot.... +23:37:33 ============================================================================ +23:37:33 Slot Id : <171> +23:37:33 Transaction Type : REQUEST +23:37:33 Received From : +23:37:33 ============================================================================ +23:37:33 FNo. Len. Field Value +23:37:33 ============================================================================ +23:37:33 [ 1] [ 4] [0800] +23:37:33 [ 7] [ 10] [0320233721] +23:37:33 [ 11] [ 6] [063677] +23:37:33 [ 37] [ 12] [507923063677] +23:37:33 [ 70] [ 3] [ ] +23:37:33 ============================================================================ +23:37:33 + + +waiting on router queue for slot.... +23:37:33 Sending to : +23:37:33 ============================================================================ +23:37:33 ============================================================================ +23:37:33 Slot Id : <171> +23:37:33 Transaction Type : RESPONSE +23:37:33 Received From : +23:37:33 ============================================================================ +23:37:33 FNo. Len. Field Value +23:37:33 ============================================================================ +23:37:33 [ 1] [ 4] [0810] +23:37:33 [ 7] [ 10] [0320233721] +23:37:33 [ 11] [ 6] [063677] +23:37:33 [ 37] [ 12] [507923063677] +23:37:33 [ 39] [ 2] [91] +23:37:33 [ 70] [ 3] [ ] +23:37:33 ============================================================================ +23:37:33 Calculate Source COMM Id = 3 +23:37:33 ============================================================================ +23:37:33 + + +waiting on router queue for slot.... +23:37:37 ============================================================================ +23:37:37 Slot Id : <164> +23:37:37 Transaction Type : REQUEST +23:37:37 Received From : +23:37:37 ============================================================================ +23:37:37 FNo. Len. Field Value +23:37:37 ============================================================================ +23:37:37 [ 1] [ 4] [0800] +23:37:37 [ 7] [ 10] [0320043645] +23:37:37 [ 11] [ 6] [159104] +23:37:37 [ 70] [ 3] [301] +23:37:37 ============================================================================ +23:37:37 + + +waiting on router queue for slot.... +23:37:37 Sending to : +23:37:37 ============================================================================ +23:37:37 ============================================================================ +23:37:37 Slot Id : <164> +23:37:37 Transaction Type : RESPONSE +23:37:37 Received From : +23:37:37 ============================================================================ +23:37:37 FNo. Len. Field Value +23:37:37 ============================================================================ +23:37:37 [ 1] [ 4] [0810] +23:37:37 [ 7] [ 10] [0320043645] +23:37:37 [ 11] [ 6] [159104] +23:37:37 [ 39] [ 2] [00] +23:37:37 [ 70] [ 3] [301] +23:37:37 ============================================================================ +23:37:37 Calculate Source COMM Id = 2 +23:37:37 ============================================================================ +23:37:37 + + +waiting on router queue for slot.... +23:37:49 ============================================================================ +23:37:49 Slot Id : <126> +23:37:49 Transaction Type : REQUEST +23:37:49 Received From : +23:37:49 ============================================================================ +23:37:49 FNo. Len. Field Value +23:37:49 ============================================================================ +23:37:49 [ 1] [ 4] [0800] +23:37:49 [ 7] [ 10] [0320043656] +23:37:49 [ 11] [ 6] [159105] +23:37:49 [ 70] [ 3] [301] +23:37:49 ============================================================================ +23:37:49 + + +waiting on router queue for slot.... +23:37:49 Sending to : +23:37:49 ============================================================================ +23:37:49 ============================================================================ +23:37:49 Slot Id : <126> +23:37:49 Transaction Type : RESPONSE +23:37:49 Received From : +23:37:49 ============================================================================ +23:37:49 FNo. Len. Field Value +23:37:49 ============================================================================ +23:37:49 [ 1] [ 4] [0810] +23:37:49 [ 7] [ 10] [0320043656] +23:37:49 [ 11] [ 6] [159105] +23:37:49 [ 39] [ 2] [00] +23:37:49 [ 70] [ 3] [301] +23:37:49 ============================================================================ +23:37:49 Calculate Source COMM Id = 2 +23:37:49 ============================================================================ +23:37:49 + + +waiting on router queue for slot.... +23:37:59 ============================================================================ +23:37:59 Slot Id : <186> +23:37:59 Transaction Type : REQUEST +23:37:59 Received From : +23:37:59 ============================================================================ +23:37:59 FNo. Len. Field Value +23:37:59 ============================================================================ +23:37:59 [ 1] [ 4] [0800] +23:37:59 [ 7] [ 10] [0320043707] +23:37:59 [ 11] [ 6] [159106] +23:37:59 [ 70] [ 3] [301] +23:37:59 ============================================================================ +23:37:59 + + +waiting on router queue for slot.... +23:37:59 Sending to : +23:37:59 ============================================================================ +23:37:59 ============================================================================ +23:37:59 Slot Id : <186> +23:37:59 Transaction Type : RESPONSE +23:37:59 Received From : +23:37:59 ============================================================================ +23:37:59 FNo. Len. Field Value +23:37:59 ============================================================================ +23:37:59 [ 1] [ 4] [0810] +23:37:59 [ 7] [ 10] [0320043707] +23:37:59 [ 11] [ 6] [159106] +23:37:59 [ 39] [ 2] [00] +23:37:59 [ 70] [ 3] [301] +23:37:59 ============================================================================ +23:37:59 Calculate Source COMM Id = 2 +23:37:59 ============================================================================ +23:37:59 + + +waiting on router queue for slot.... +23:38:10 ============================================================================ +23:38:10 Slot Id : <139> +23:38:10 Transaction Type : REQUEST +23:38:10 Received From : +23:38:10 ============================================================================ +23:38:10 FNo. Len. Field Value +23:38:10 ============================================================================ +23:38:10 [ 1] [ 4] [0800] +23:38:10 [ 7] [ 10] [0320043718] +23:38:10 [ 11] [ 6] [159107] +23:38:10 [ 70] [ 3] [301] +23:38:10 ============================================================================ +23:38:10 + + +waiting on router queue for slot.... +23:38:10 Sending to : +23:38:10 ============================================================================ +23:38:10 ============================================================================ +23:38:10 Slot Id : <139> +23:38:10 Transaction Type : RESPONSE +23:38:10 Received From : +23:38:10 ============================================================================ +23:38:10 FNo. Len. Field Value +23:38:10 ============================================================================ +23:38:10 [ 1] [ 4] [0810] +23:38:10 [ 7] [ 10] [0320043718] +23:38:10 [ 11] [ 6] [159107] +23:38:10 [ 39] [ 2] [00] +23:38:10 [ 70] [ 3] [301] +23:38:10 ============================================================================ +23:38:10 Calculate Source COMM Id = 2 +23:38:10 ============================================================================ +23:38:10 + + +waiting on router queue for slot.... +23:38:21 ============================================================================ +23:38:21 Slot Id : <202> +23:38:21 Transaction Type : REQUEST +23:38:21 Received From : +23:38:21 ============================================================================ +23:38:21 FNo. Len. Field Value +23:38:21 ============================================================================ +23:38:21 [ 1] [ 4] [0800] +23:38:21 [ 7] [ 10] [0320043729] +23:38:21 [ 11] [ 6] [159108] +23:38:21 [ 70] [ 3] [301] +23:38:21 ============================================================================ +23:38:21 + + +waiting on router queue for slot.... +23:38:21 Sending to : +23:38:21 ============================================================================ +23:38:21 ============================================================================ +23:38:21 Slot Id : <202> +23:38:21 Transaction Type : RESPONSE +23:38:21 Received From : +23:38:21 ============================================================================ +23:38:21 FNo. Len. Field Value +23:38:21 ============================================================================ +23:38:21 [ 1] [ 4] [0810] +23:38:21 [ 7] [ 10] [0320043729] +23:38:21 [ 11] [ 6] [159108] +23:38:21 [ 39] [ 2] [00] +23:38:21 [ 70] [ 3] [301] +23:38:21 ============================================================================ +23:38:21 Calculate Source COMM Id = 2 +23:38:21 ============================================================================ +23:38:21 + + +waiting on router queue for slot.... +23:38:23 ============================================================================ +23:38:23 Slot Id : <148> +23:38:23 Transaction Type : REQUEST +23:38:23 Received From : +23:38:23 ============================================================================ +23:38:23 FNo. Len. Field Value +23:38:23 ============================================================================ +23:38:23 [ 1] [ 4] [0800] +23:38:23 [ 7] [ 10] [0321065012] +23:38:23 [ 11] [ 6] [235012] +23:38:23 [ 37] [ 12] [57923235012] +23:38:23 [ 70] [ 3] [301] +23:38:23 ============================================================================ +23:38:23 + + +waiting on router queue for slot.... +23:38:23 Sending to : +23:38:23 ============================================================================ +23:38:23 ============================================================================ +23:38:23 Slot Id : <148> +23:38:23 Transaction Type : RESPONSE +23:38:23 Received From : +23:38:23 ============================================================================ +23:38:23 FNo. Len. Field Value +23:38:23 ============================================================================ +23:38:23 [ 1] [ 4] [0810] +23:38:23 [ 7] [ 10] [0321065012] +23:38:23 [ 11] [ 6] [235012] +23:38:23 [ 37] [ 12] [579232350120] +23:38:23 [ 39] [ 2] [00] +23:38:23 [ 70] [ 3] [810] +23:38:23 ============================================================================ +23:38:23 Calculate Source COMM Id = 6 +23:38:23 ============================================================================ +23:38:23 + + +waiting on router queue for slot.... +23:38:24 ============================================================================ +23:38:24 Slot Id : <119> +23:38:24 Transaction Type : REQUEST +23:38:24 Received From : +23:38:24 ============================================================================ +23:38:24 FNo. Len. Field Value +23:38:24 ============================================================================ +23:38:24 [ 1] [ 4] [0800] +23:38:24 [ 2] [ 5] [02531] +23:38:24 [ 3] [ 6] [579238] +23:38:24 [ 7] [ 10] [0320163824] +23:38:24 [ 11] [ 6] [807784] +23:38:24 [ 15] [ 10] [0320163824] +23:38:24 [ 37] [ 11] [57923807784] +23:38:24 [ 70] [ 3] [001] +23:38:24 ============================================================================ +23:38:24 + + +waiting on router queue for slot.... +23:38:24 ============================================================================ +23:38:24 Slot Id : <119> +23:38:24 Transaction Type : RESPONSE +23:38:24 Received From : +23:38:24 ============================================================================ +23:38:24 FNo. Len. Field Value +23:38:24 ============================================================================ +23:38:24 [ 1] [ 4] [0810] +23:38:24 [ 7] [ 10] [0320163824] +23:38:24 [ 11] [ 6] [807784] +23:38:24 [ 15] [ 4] [0320] +23:38:24 [ 37] [ 12] [57923807784] +23:38:24 [ 39] [ 2] [00] +23:38:24 [ 70] [ 3] [001] +23:38:24 ============================================================================ +23:38:24 Sending to : +23:38:24 ============================================================================ +23:38:24 + + +waiting on router queue for slot.... +23:38:32 ============================================================================ +23:38:32 Slot Id : <176> +23:38:32 Transaction Type : REQUEST +23:38:32 Received From : +23:38:32 ============================================================================ +23:38:32 FNo. Len. Field Value +23:38:32 ============================================================================ +23:38:32 [ 1] [ 4] [0800] +23:38:32 [ 7] [ 10] [0320043740] +23:38:32 [ 11] [ 6] [159109] +23:38:32 [ 70] [ 3] [301] +23:38:32 ============================================================================ +23:38:32 + + +waiting on router queue for slot.... +23:38:32 Sending to : +23:38:32 ============================================================================ +23:38:32 ============================================================================ +23:38:32 Slot Id : <176> +23:38:32 Transaction Type : RESPONSE +23:38:32 Received From : +23:38:32 ============================================================================ +23:38:32 FNo. Len. Field Value +23:38:32 ============================================================================ +23:38:32 [ 1] [ 4] [0810] +23:38:32 [ 7] [ 10] [0320043740] +23:38:32 [ 11] [ 6] [159109] +23:38:32 [ 39] [ 2] [00] +23:38:32 [ 70] [ 3] [301] +23:38:32 ============================================================================ +23:38:32 Calculate Source COMM Id = 2 +23:38:32 ============================================================================ +23:38:32 + + +waiting on router queue for slot.... +23:38:47 ============================================================================ +23:38:47 Slot Id : <144> +23:38:47 Transaction Type : REQUEST +23:38:47 Received From : +23:38:47 ============================================================================ +23:38:47 FNo. Len. Field Value +23:38:47 ============================================================================ +23:38:47 [ 1] [ 4] [0800] +23:38:47 [ 7] [ 10] [0320043755] +23:38:47 [ 11] [ 6] [159110] +23:38:47 [ 70] [ 3] [301] +23:38:47 ============================================================================ +23:38:47 + + +waiting on router queue for slot.... +23:38:47 Sending to : +23:38:47 ============================================================================ +23:38:47 ============================================================================ +23:38:47 Slot Id : <144> +23:38:47 Transaction Type : RESPONSE +23:38:47 Received From : +23:38:47 ============================================================================ +23:38:47 FNo. Len. Field Value +23:38:47 ============================================================================ +23:38:47 [ 1] [ 4] [0810] +23:38:47 [ 7] [ 10] [0320043755] +23:38:47 [ 11] [ 6] [159110] +23:38:47 [ 39] [ 2] [00] +23:38:47 [ 70] [ 3] [301] +23:38:47 ============================================================================ +23:38:47 Calculate Source COMM Id = 2 +23:38:47 ============================================================================ +23:38:47 + + +waiting on router queue for slot.... +23:38:58 ============================================================================ +23:38:58 Slot Id : <182> +23:38:58 Transaction Type : REQUEST +23:38:58 Received From : +23:38:58 ============================================================================ +23:38:58 FNo. Len. Field Value +23:38:58 ============================================================================ +23:38:58 [ 1] [ 4] [0800] +23:38:58 [ 7] [ 10] [0320043806] +23:38:58 [ 11] [ 6] [159111] +23:38:58 [ 70] [ 3] [301] +23:38:58 ============================================================================ +23:38:58 + + +waiting on router queue for slot.... +23:38:58 Sending to : +23:38:58 ============================================================================ +23:38:58 ============================================================================ +23:38:58 Slot Id : <182> +23:38:58 Transaction Type : RESPONSE +23:38:58 Received From : +23:38:58 ============================================================================ +23:38:58 FNo. Len. Field Value +23:38:58 ============================================================================ +23:38:58 [ 1] [ 4] [0810] +23:38:58 [ 7] [ 10] [0320043806] +23:38:58 [ 11] [ 6] [159111] +23:38:58 [ 39] [ 2] [00] +23:38:58 [ 70] [ 3] [301] +23:38:58 ============================================================================ +23:38:58 Calculate Source COMM Id = 2 +23:38:58 ============================================================================ +23:38:58 + + +waiting on router queue for slot.... +23:39:09 ============================================================================ +23:39:09 Slot Id : <187> +23:39:09 Transaction Type : REQUEST +23:39:09 Received From : +23:39:09 ============================================================================ +23:39:09 FNo. Len. Field Value +23:39:09 ============================================================================ +23:39:09 [ 1] [ 4] [0800] +23:39:09 [ 7] [ 10] [0320043817] +23:39:09 [ 11] [ 6] [159112] +23:39:09 [ 70] [ 3] [301] +23:39:09 ============================================================================ +23:39:09 + + +waiting on router queue for slot.... +23:39:09 Sending to : +23:39:09 ============================================================================ +23:39:09 ============================================================================ +23:39:09 Slot Id : <187> +23:39:09 Transaction Type : RESPONSE +23:39:09 Received From : +23:39:09 ============================================================================ +23:39:09 FNo. Len. Field Value +23:39:09 ============================================================================ +23:39:09 [ 1] [ 4] [0810] +23:39:09 [ 7] [ 10] [0320043817] +23:39:09 [ 11] [ 6] [159112] +23:39:09 [ 39] [ 2] [00] +23:39:09 [ 70] [ 3] [301] +23:39:09 ============================================================================ +23:39:09 Calculate Source COMM Id = 2 +23:39:09 ============================================================================ +23:39:09 + + +waiting on router queue for slot.... +23:39:20 ============================================================================ +23:39:20 Slot Id : <160> +23:39:20 Transaction Type : REQUEST +23:39:20 Received From : +23:39:20 ============================================================================ +23:39:20 FNo. Len. Field Value +23:39:20 ============================================================================ +23:39:20 [ 1] [ 4] [0800] +23:39:20 [ 7] [ 10] [0320043828] +23:39:20 [ 11] [ 6] [159113] +23:39:20 [ 70] [ 3] [301] +23:39:20 ============================================================================ +23:39:20 + + +waiting on router queue for slot.... +23:39:20 Sending to : +23:39:20 ============================================================================ +23:39:20 ============================================================================ +23:39:20 Slot Id : <160> +23:39:20 Transaction Type : RESPONSE +23:39:20 Received From : +23:39:20 ============================================================================ +23:39:20 FNo. Len. Field Value +23:39:20 ============================================================================ +23:39:20 [ 1] [ 4] [0810] +23:39:20 [ 7] [ 10] [0320043828] +23:39:20 [ 11] [ 6] [159113] +23:39:20 [ 39] [ 2] [00] +23:39:20 [ 70] [ 3] [301] +23:39:20 ============================================================================ +23:39:20 Calculate Source COMM Id = 2 +23:39:20 ============================================================================ +23:39:20 + + +waiting on router queue for slot.... +23:39:26 ============================================================================ +23:39:26 Slot Id : <163> +23:39:26 Transaction Type : REQUEST +23:39:26 Received From : +23:39:26 ============================================================================ +23:39:26 FNo. Len. Field Value +23:39:26 ============================================================================ +23:39:26 [ 1] [ 4] [0800] +23:39:26 [ 2] [ 5] [02531] +23:39:26 [ 3] [ 6] [579238] +23:39:26 [ 7] [ 10] [0320163926] +23:39:26 [ 11] [ 6] [807785] +23:39:26 [ 15] [ 10] [0320163926] +23:39:26 [ 37] [ 11] [57923807785] +23:39:26 [ 70] [ 3] [001] +23:39:26 ============================================================================ +23:39:26 + + +waiting on router queue for slot.... +23:39:26 ============================================================================ +23:39:26 Slot Id : <163> +23:39:26 Transaction Type : RESPONSE +23:39:26 Received From : +23:39:26 ============================================================================ +23:39:26 FNo. Len. Field Value +23:39:26 ============================================================================ +23:39:26 [ 1] [ 4] [0810] +23:39:26 [ 7] [ 10] [0320163926] +23:39:26 [ 11] [ 6] [807785] +23:39:26 [ 15] [ 4] [0320] +23:39:26 [ 37] [ 12] [57923807785] +23:39:26 [ 39] [ 2] [00] +23:39:26 [ 70] [ 3] [001] +23:39:26 ============================================================================ +23:39:26 Sending to : +23:39:26 ============================================================================ +23:39:26 + + +waiting on router queue for slot.... +23:39:28 ============================================================================ +23:39:28 Slot Id : <203> +23:39:28 Transaction Type : REQUEST +23:39:28 Received From : +23:39:28 ============================================================================ +23:39:28 FNo. Len. Field Value +23:39:28 ============================================================================ +23:39:28 [ 1] [ 4] [0800] +23:39:28 [ 7] [ 10] [0321065117] +23:39:28 [ 11] [ 6] [235117] +23:39:28 [ 37] [ 12] [57923235117] +23:39:28 [ 70] [ 3] [301] +23:39:28 ============================================================================ +23:39:28 + + +waiting on router queue for slot.... +23:39:28 Sending to : +23:39:28 ============================================================================ +23:39:28 ============================================================================ +23:39:28 Slot Id : <203> +23:39:28 Transaction Type : RESPONSE +23:39:28 Received From : +23:39:28 ============================================================================ +23:39:28 FNo. Len. Field Value +23:39:28 ============================================================================ +23:39:28 [ 1] [ 4] [0810] +23:39:28 [ 7] [ 10] [0321065117] +23:39:28 [ 11] [ 6] [235117] +23:39:28 [ 37] [ 12] [579232351170] +23:39:28 [ 39] [ 2] [00] +23:39:28 [ 70] [ 3] [810] +23:39:28 ============================================================================ +23:39:28 Calculate Source COMM Id = 6 +23:39:28 ============================================================================ +23:39:28 + + +waiting on router queue for slot.... +23:39:30 ============================================================================ +23:39:30 Slot Id : <179> +23:39:30 Transaction Type : REQUEST +23:39:30 Received From : +23:39:30 ============================================================================ +23:39:30 FNo. Len. Field Value +23:39:30 ============================================================================ +23:39:30 [ 1] [ 4] [0800] +23:39:30 [ 7] [ 10] [0320043838] +23:39:30 [ 11] [ 6] [159114] +23:39:30 [ 70] [ 3] [301] +23:39:30 ============================================================================ +23:39:30 + + +waiting on router queue for slot.... +23:39:30 Sending to : +23:39:30 ============================================================================ +23:39:30 ============================================================================ +23:39:30 Slot Id : <179> +23:39:30 Transaction Type : RESPONSE +23:39:30 Received From : +23:39:30 ============================================================================ +23:39:30 FNo. Len. Field Value +23:39:30 ============================================================================ +23:39:30 [ 1] [ 4] [0810] +23:39:30 [ 7] [ 10] [0320043838] +23:39:30 [ 11] [ 6] [159114] +23:39:30 [ 39] [ 2] [00] +23:39:30 [ 70] [ 3] [301] +23:39:30 ============================================================================ +23:39:30 Calculate Source COMM Id = 2 +23:39:30 ============================================================================ +23:39:30 + + +waiting on router queue for slot.... +23:39:41 ============================================================================ +23:39:41 Slot Id : <204> +23:39:41 Transaction Type : REQUEST +23:39:41 Received From : +23:39:41 ============================================================================ +23:39:41 FNo. Len. Field Value +23:39:41 ============================================================================ +23:39:41 [ 1] [ 4] [0800] +23:39:41 [ 7] [ 10] [0320043849] +23:39:41 [ 11] [ 6] [159115] +23:39:41 [ 70] [ 3] [301] +23:39:41 ============================================================================ +23:39:41 + + +waiting on router queue for slot.... +23:39:41 Sending to : +23:39:41 ============================================================================ +23:39:41 ============================================================================ +23:39:41 Slot Id : <204> +23:39:41 Transaction Type : RESPONSE +23:39:41 Received From : +23:39:41 ============================================================================ +23:39:41 FNo. Len. Field Value +23:39:41 ============================================================================ +23:39:41 [ 1] [ 4] [0810] +23:39:41 [ 7] [ 10] [0320043849] +23:39:41 [ 11] [ 6] [159115] +23:39:41 [ 39] [ 2] [00] +23:39:41 [ 70] [ 3] [301] +23:39:41 ============================================================================ +23:39:41 Calculate Source COMM Id = 2 +23:39:41 ============================================================================ +23:39:41 + + +waiting on router queue for slot.... +23:39:52 ============================================================================ +23:39:52 Slot Id : <191> +23:39:52 Transaction Type : REQUEST +23:39:52 Received From : +23:39:52 ============================================================================ +23:39:52 FNo. Len. Field Value +23:39:52 ============================================================================ +23:39:52 [ 1] [ 4] [0800] +23:39:52 [ 7] [ 10] [0320043859] +23:39:52 [ 11] [ 6] [159116] +23:39:52 [ 70] [ 3] [301] +23:39:52 ============================================================================ +23:39:52 + + +waiting on router queue for slot.... +23:39:52 Sending to : +23:39:52 ============================================================================ +23:39:52 ============================================================================ +23:39:52 Slot Id : <191> +23:39:52 Transaction Type : RESPONSE +23:39:52 Received From : +23:39:52 ============================================================================ +23:39:52 FNo. Len. Field Value +23:39:52 ============================================================================ +23:39:52 [ 1] [ 4] [0810] +23:39:52 [ 7] [ 10] [0320043859] +23:39:52 [ 11] [ 6] [159116] +23:39:52 [ 39] [ 2] [00] +23:39:52 [ 70] [ 3] [301] +23:39:52 ============================================================================ +23:39:52 Calculate Source COMM Id = 2 +23:39:52 ============================================================================ +23:39:52 + + +waiting on router queue for slot.... +23:39:55 ============================================================================ +23:39:55 Slot Id : <192> +23:39:55 Transaction Type : REQUEST +23:39:55 Received From : +23:39:55 ============================================================================ +23:39:55 FNo. Len. Field Value +23:39:55 ============================================================================ +23:39:55 [ 1] [ 4] [0800] +23:39:55 [ 7] [ 10] [0320164742] +23:39:55 [ 11] [ 6] [011956] +23:39:55 [ 37] [ 12] [57923011956] +23:39:55 [ 70] [ 3] [301] +23:39:55 ============================================================================ +23:39:55 + + +waiting on router queue for slot.... +23:39:55 Sending to : +23:39:55 ============================================================================ +23:39:55 ============================================================================ +23:39:55 Slot Id : <192> +23:39:55 Transaction Type : RESPONSE +23:39:55 Received From : +23:39:55 ============================================================================ +23:39:55 FNo. Len. Field Value +23:39:55 ============================================================================ +23:39:55 [ 1] [ 4] [0810] +23:39:55 [ 7] [ 10] [0320164742] +23:39:55 [ 11] [ 6] [011956] +23:39:55 [ 37] [ 12] [579230119560] +23:39:55 [ 39] [ 2] [00] +23:39:55 [ 70] [ 3] [810] +23:39:55 ============================================================================ +23:39:55 Calculate Source COMM Id = 1 +23:39:55 ============================================================================ +23:39:55 + + +waiting on router queue for slot.... +23:40:07 ============================================================================ +23:40:07 Slot Id : <135> +23:40:07 Transaction Type : REQUEST +23:40:07 Received From : +23:40:07 ============================================================================ +23:40:07 FNo. Len. Field Value +23:40:07 ============================================================================ +23:40:07 [ 1] [ 4] [0800] +23:40:07 [ 7] [ 10] [0320043915] +23:40:07 [ 11] [ 6] [159117] +23:40:07 [ 70] [ 3] [301] +23:40:07 ============================================================================ +23:40:07 + + +waiting on router queue for slot.... +23:40:07 Sending to : +23:40:07 ============================================================================ +23:40:07 ============================================================================ +23:40:07 Slot Id : <135> +23:40:07 Transaction Type : RESPONSE +23:40:07 Received From : +23:40:07 ============================================================================ +23:40:07 FNo. Len. Field Value +23:40:07 ============================================================================ +23:40:07 [ 1] [ 4] [0810] +23:40:07 [ 7] [ 10] [0320043915] +23:40:07 [ 11] [ 6] [159117] +23:40:07 [ 39] [ 2] [00] +23:40:07 [ 70] [ 3] [301] +23:40:07 ============================================================================ +23:40:07 Calculate Source COMM Id = 2 +23:40:07 ============================================================================ +23:40:07 + + +waiting on router queue for slot.... +23:40:18 ============================================================================ +23:40:18 Slot Id : <156> +23:40:18 Transaction Type : REQUEST +23:40:18 Received From : +23:40:18 ============================================================================ +23:40:18 FNo. Len. Field Value +23:40:18 ============================================================================ +23:40:18 [ 1] [ 4] [0800] +23:40:18 [ 7] [ 10] [0320043926] +23:40:18 [ 11] [ 6] [159118] +23:40:18 [ 70] [ 3] [301] +23:40:18 ============================================================================ +23:40:18 + + +waiting on router queue for slot.... +23:40:18 Sending to : +23:40:18 ============================================================================ +23:40:18 ============================================================================ +23:40:18 Slot Id : <156> +23:40:18 Transaction Type : RESPONSE +23:40:18 Received From : +23:40:18 ============================================================================ +23:40:18 FNo. Len. Field Value +23:40:18 ============================================================================ +23:40:18 [ 1] [ 4] [0810] +23:40:18 [ 7] [ 10] [0320043926] +23:40:18 [ 11] [ 6] [159118] +23:40:18 [ 39] [ 2] [00] +23:40:18 [ 70] [ 3] [301] +23:40:18 ============================================================================ +23:40:18 Calculate Source COMM Id = 2 +23:40:18 ============================================================================ +23:40:18 + + +waiting on router queue for slot.... +23:40:28 ============================================================================ +23:40:28 Slot Id : <190> +23:40:28 Transaction Type : REQUEST +23:40:28 Received From : +23:40:28 ============================================================================ +23:40:28 FNo. Len. Field Value +23:40:28 ============================================================================ +23:40:28 [ 1] [ 4] [0800] +23:40:28 [ 2] [ 5] [02531] +23:40:28 [ 3] [ 6] [579238] +23:40:28 [ 7] [ 10] [0320164028] +23:40:28 [ 11] [ 6] [807786] +23:40:28 [ 15] [ 10] [0320164028] +23:40:28 [ 37] [ 11] [57923807786] +23:40:28 [ 70] [ 3] [001] +23:40:28 ============================================================================ +23:40:28 + + +waiting on router queue for slot.... +23:40:28 ============================================================================ +23:40:28 Slot Id : <190> +23:40:28 Transaction Type : RESPONSE +23:40:28 Received From : +23:40:28 ============================================================================ +23:40:28 FNo. Len. Field Value +23:40:28 ============================================================================ +23:40:28 [ 1] [ 4] [0810] +23:40:28 [ 7] [ 10] [0320164028] +23:40:28 [ 11] [ 6] [807786] +23:40:28 [ 15] [ 4] [0320] +23:40:28 [ 37] [ 12] [57923807786] +23:40:28 [ 39] [ 2] [00] +23:40:28 [ 70] [ 3] [001] +23:40:28 ============================================================================ +23:40:28 Sending to : +23:40:28 ============================================================================ +23:40:28 + + +waiting on router queue for slot.... +23:40:29 ============================================================================ +23:40:29 Slot Id : <152> +23:40:29 Transaction Type : REQUEST +23:40:29 Received From : +23:40:29 ============================================================================ +23:40:29 FNo. Len. Field Value +23:40:29 ============================================================================ +23:40:29 [ 1] [ 4] [0800] +23:40:29 [ 7] [ 10] [0320043936] +23:40:29 [ 11] [ 6] [159119] +23:40:29 [ 70] [ 3] [301] +23:40:29 ============================================================================ +23:40:29 + + +waiting on router queue for slot.... +23:40:29 Sending to : +23:40:29 ============================================================================ +23:40:29 ============================================================================ +23:40:29 Slot Id : <152> +23:40:29 Transaction Type : RESPONSE +23:40:29 Received From : +23:40:29 ============================================================================ +23:40:29 FNo. Len. Field Value +23:40:29 ============================================================================ +23:40:29 [ 1] [ 4] [0810] +23:40:29 [ 7] [ 10] [0320043936] +23:40:29 [ 11] [ 6] [159119] +23:40:29 [ 39] [ 2] [00] +23:40:29 [ 70] [ 3] [301] +23:40:29 ============================================================================ +23:40:29 Calculate Source COMM Id = 2 +23:40:29 ============================================================================ +23:40:29 + + +waiting on router queue for slot.... +23:40:33 ============================================================================ +23:40:33 Slot Id : <198> +23:40:33 Transaction Type : REQUEST +23:40:33 Received From : +23:40:33 ============================================================================ +23:40:33 FNo. Len. Field Value +23:40:33 ============================================================================ +23:40:33 [ 1] [ 4] [0800] +23:40:33 [ 7] [ 10] [0321065222] +23:40:33 [ 11] [ 6] [235222] +23:40:33 [ 37] [ 12] [57923235222] +23:40:33 [ 70] [ 3] [301] +23:40:33 ============================================================================ +23:40:33 + + +waiting on router queue for slot.... +23:40:33 Sending to : +23:40:33 ============================================================================ +23:40:33 ============================================================================ +23:40:33 Slot Id : <198> +23:40:33 Transaction Type : RESPONSE +23:40:33 Received From : +23:40:33 ============================================================================ +23:40:33 FNo. Len. Field Value +23:40:33 ============================================================================ +23:40:33 [ 1] [ 4] [0810] +23:40:33 [ 7] [ 10] [0321065222] +23:40:33 [ 11] [ 6] [235222] +23:40:33 [ 37] [ 12] [579232352220] +23:40:33 [ 39] [ 2] [00] +23:40:33 [ 70] [ 3] [810] +23:40:33 ============================================================================ +23:40:33 Calculate Source COMM Id = 6 +23:40:33 ============================================================================ +23:40:33 + + +waiting on router queue for slot.... +23:40:45 ============================================================================ +23:40:45 Slot Id : <196> +23:40:45 Transaction Type : REQUEST +23:40:45 Received From : +23:40:45 ============================================================================ +23:40:45 FNo. Len. Field Value +23:40:45 ============================================================================ +23:40:45 [ 1] [ 4] [0800] +23:40:45 [ 7] [ 10] [0320043952] +23:40:45 [ 11] [ 6] [159120] +23:40:45 [ 70] [ 3] [301] +23:40:45 ============================================================================ +23:40:45 + + +waiting on router queue for slot.... +23:40:45 Sending to : +23:40:45 ============================================================================ +23:40:45 ============================================================================ +23:40:45 Slot Id : <196> +23:40:45 Transaction Type : RESPONSE +23:40:45 Received From : +23:40:45 ============================================================================ +23:40:45 FNo. Len. Field Value +23:40:45 ============================================================================ +23:40:45 [ 1] [ 4] [0810] +23:40:45 [ 7] [ 10] [0320043952] +23:40:45 [ 11] [ 6] [159120] +23:40:45 [ 39] [ 2] [00] +23:40:45 [ 70] [ 3] [301] +23:40:45 ============================================================================ +23:40:45 Calculate Source COMM Id = 2 +23:40:45 ============================================================================ +23:40:45 + + +waiting on router queue for slot.... +23:41:00 ============================================================================ +23:41:00 Slot Id : <155> +23:41:00 Transaction Type : REQUEST +23:41:00 Received From : +23:41:00 ============================================================================ +23:41:00 FNo. Len. Field Value +23:41:00 ============================================================================ +23:41:00 [ 1] [ 4] [0800] +23:41:00 [ 7] [ 10] [0320044008] +23:41:00 [ 11] [ 6] [159121] +23:41:00 [ 70] [ 3] [301] +23:41:00 ============================================================================ +23:41:00 + + +waiting on router queue for slot.... +23:41:00 Sending to : +23:41:00 ============================================================================ +23:41:00 ============================================================================ +23:41:00 Slot Id : <155> +23:41:00 Transaction Type : RESPONSE +23:41:00 Received From : +23:41:00 ============================================================================ +23:41:00 FNo. Len. Field Value +23:41:00 ============================================================================ +23:41:00 [ 1] [ 4] [0810] +23:41:00 [ 7] [ 10] [0320044008] +23:41:00 [ 11] [ 6] [159121] +23:41:00 [ 39] [ 2] [00] +23:41:00 [ 70] [ 3] [301] +23:41:00 ============================================================================ +23:41:00 Calculate Source COMM Id = 2 +23:41:00 ============================================================================ +23:41:00 + + +waiting on router queue for slot.... +23:41:16 ============================================================================ +23:41:16 Slot Id : <214> +23:41:16 Transaction Type : REQUEST +23:41:16 Received From : +23:41:16 ============================================================================ +23:41:16 FNo. Len. Field Value +23:41:16 ============================================================================ +23:41:16 [ 1] [ 4] [0800] +23:41:16 [ 7] [ 10] [0320044023] +23:41:16 [ 11] [ 6] [159122] +23:41:16 [ 70] [ 3] [301] +23:41:16 ============================================================================ +23:41:16 + + +waiting on router queue for slot.... +23:41:16 Sending to : +23:41:16 ============================================================================ +23:41:16 ============================================================================ +23:41:16 Slot Id : <214> +23:41:16 Transaction Type : RESPONSE +23:41:16 Received From : +23:41:16 ============================================================================ +23:41:16 FNo. Len. Field Value +23:41:16 ============================================================================ +23:41:16 [ 1] [ 4] [0810] +23:41:16 [ 7] [ 10] [0320044023] +23:41:16 [ 11] [ 6] [159122] +23:41:16 [ 39] [ 2] [00] +23:41:16 [ 70] [ 3] [301] +23:41:16 ============================================================================ +23:41:16 Calculate Source COMM Id = 2 +23:41:16 ============================================================================ +23:41:16 + + +waiting on router queue for slot.... +23:41:21 ============================================================================ +23:41:21 Slot Id : <181> +23:41:21 Transaction Type : REQUEST +23:41:21 Received From : +23:41:21 ============================================================================ +23:41:21 FNo. Len. Field Value +23:41:21 ============================================================================ +23:41:21 [ 1] [ 4] [0800] +23:41:21 [ 7] [ 10] [0320163912] +23:41:21 [ 11] [ 6] [005489] +23:41:21 [ 37] [ 12] [57923005489] +23:41:21 [ 70] [ 3] [301] +23:41:21 ============================================================================ +23:41:21 + + +waiting on router queue for slot.... +23:41:21 Sending to : +23:41:21 ============================================================================ +23:41:21 ============================================================================ +23:41:21 Slot Id : <181> +23:41:21 Transaction Type : RESPONSE +23:41:21 Received From : +23:41:21 ============================================================================ +23:41:21 FNo. Len. Field Value +23:41:21 ============================================================================ +23:41:21 [ 1] [ 4] [0810] +23:41:21 [ 7] [ 10] [0320163912] +23:41:21 [ 11] [ 6] [005489] +23:41:21 [ 37] [ 12] [579230054890] +23:41:21 [ 39] [ 2] [00] +23:41:21 [ 70] [ 3] [810] +23:41:21 ============================================================================ +23:41:21 Calculate Source COMM Id = 4 +23:41:21 ============================================================================ +23:41:21 + + +waiting on router queue for slot.... +23:41:27 ============================================================================ +23:41:27 Slot Id : <165> +23:41:27 Transaction Type : REQUEST +23:41:27 Received From : +23:41:27 ============================================================================ +23:41:27 FNo. Len. Field Value +23:41:27 ============================================================================ +23:41:27 [ 1] [ 4] [0800] +23:41:27 [ 7] [ 10] [0320044035] +23:41:27 [ 11] [ 6] [159123] +23:41:27 [ 70] [ 3] [301] +23:41:27 ============================================================================ +23:41:27 + + +waiting on router queue for slot.... +23:41:27 Sending to : +23:41:27 ============================================================================ +23:41:27 ============================================================================ +23:41:27 Slot Id : <165> +23:41:27 Transaction Type : RESPONSE +23:41:27 Received From : +23:41:27 ============================================================================ +23:41:27 FNo. Len. Field Value +23:41:27 ============================================================================ +23:41:27 [ 1] [ 4] [0810] +23:41:27 [ 7] [ 10] [0320044035] +23:41:27 [ 11] [ 6] [159123] +23:41:27 [ 39] [ 2] [00] +23:41:27 [ 70] [ 3] [301] +23:41:27 ============================================================================ +23:41:27 Calculate Source COMM Id = 2 +23:41:27 ============================================================================ +23:41:27 + + +waiting on router queue for slot.... +23:41:30 ============================================================================ +23:41:30 Slot Id : <201> +23:41:30 Transaction Type : REQUEST +23:41:30 Received From : +23:41:30 ============================================================================ +23:41:30 FNo. Len. Field Value +23:41:30 ============================================================================ +23:41:30 [ 1] [ 4] [0800] +23:41:30 [ 2] [ 5] [02531] +23:41:30 [ 3] [ 6] [579238] +23:41:30 [ 7] [ 10] [0320164130] +23:41:30 [ 11] [ 6] [807787] +23:41:30 [ 15] [ 10] [0320164130] +23:41:30 [ 37] [ 11] [57923807787] +23:41:30 [ 70] [ 3] [001] +23:41:30 ============================================================================ +23:41:30 + + +waiting on router queue for slot.... +23:41:30 ============================================================================ +23:41:30 Slot Id : <201> +23:41:30 Transaction Type : RESPONSE +23:41:30 Received From : +23:41:30 ============================================================================ +23:41:30 FNo. Len. Field Value +23:41:30 ============================================================================ +23:41:30 [ 1] [ 4] [0810] +23:41:30 [ 7] [ 10] [0320164130] +23:41:30 [ 11] [ 6] [807787] +23:41:30 [ 15] [ 4] [0320] +23:41:30 [ 37] [ 12] [57923807787] +23:41:30 [ 39] [ 2] [00] +23:41:30 [ 70] [ 3] [001] +23:41:30 ============================================================================ +23:41:30 Sending to : +23:41:30 ============================================================================ +23:41:30 + + +waiting on router queue for slot.... +23:41:38 ============================================================================ +23:41:38 Slot Id : <195> +23:41:38 Transaction Type : REQUEST +23:41:38 Received From : +23:41:38 ============================================================================ +23:41:38 FNo. Len. Field Value +23:41:38 ============================================================================ +23:41:38 [ 1] [ 4] [0800] +23:41:38 [ 7] [ 10] [0321065327] +23:41:38 [ 11] [ 6] [235327] +23:41:38 [ 37] [ 12] [57923235327] +23:41:38 [ 70] [ 3] [301] +23:41:38 ============================================================================ +23:41:38 + + +waiting on router queue for slot.... +23:41:38 Sending to : +23:41:38 ============================================================================ +23:41:38 ============================================================================ +23:41:38 Slot Id : <195> +23:41:38 Transaction Type : RESPONSE +23:41:38 Received From : +23:41:38 ============================================================================ +23:41:38 FNo. Len. Field Value +23:41:38 ============================================================================ +23:41:38 [ 1] [ 4] [0810] +23:41:38 [ 7] [ 10] [0321065327] +23:41:38 [ 11] [ 6] [235327] +23:41:38 [ 37] [ 12] [579232353270] +23:41:38 [ 39] [ 2] [00] +23:41:38 [ 70] [ 3] [810] +23:41:38 ============================================================================ +23:41:38 Calculate Source COMM Id = 6 +23:41:38 ============================================================================ +23:41:38 + + +waiting on router queue for slot.... +23:41:38 ============================================================================ +23:41:38 Slot Id : <194> +23:41:38 Transaction Type : REQUEST +23:41:38 Received From : +23:41:38 ============================================================================ +23:41:38 FNo. Len. Field Value +23:41:38 ============================================================================ +23:41:38 [ 1] [ 4] [0800] +23:41:38 [ 7] [ 10] [0320044046] +23:41:38 [ 11] [ 6] [159124] +23:41:38 [ 70] [ 3] [301] +23:41:38 ============================================================================ +23:41:38 + + +waiting on router queue for slot.... +23:41:38 Sending to : +23:41:38 ============================================================================ +23:41:38 ============================================================================ +23:41:38 Slot Id : <194> +23:41:38 Transaction Type : RESPONSE +23:41:38 Received From : +23:41:38 ============================================================================ +23:41:38 FNo. Len. Field Value +23:41:38 ============================================================================ +23:41:38 [ 1] [ 4] [0810] +23:41:38 [ 7] [ 10] [0320044046] +23:41:38 [ 11] [ 6] [159124] +23:41:38 [ 39] [ 2] [00] +23:41:38 [ 70] [ 3] [301] +23:41:38 ============================================================================ +23:41:38 Calculate Source COMM Id = 2 +23:41:38 ============================================================================ +23:41:38 + + +waiting on router queue for slot.... +23:41:49 ============================================================================ +23:41:49 Slot Id : <178> +23:41:49 Transaction Type : REQUEST +23:41:49 Received From : +23:41:49 ============================================================================ +23:41:49 FNo. Len. Field Value +23:41:49 ============================================================================ +23:41:49 [ 1] [ 4] [0800] +23:41:49 [ 7] [ 10] [0320044057] +23:41:49 [ 11] [ 6] [159125] +23:41:49 [ 70] [ 3] [301] +23:41:49 ============================================================================ +23:41:49 + + +waiting on router queue for slot.... +23:41:49 Sending to : +23:41:49 ============================================================================ +23:41:49 ============================================================================ +23:41:49 Slot Id : <178> +23:41:49 Transaction Type : RESPONSE +23:41:49 Received From : +23:41:49 ============================================================================ +23:41:49 FNo. Len. Field Value +23:41:49 ============================================================================ +23:41:49 [ 1] [ 4] [0810] +23:41:49 [ 7] [ 10] [0320044057] +23:41:49 [ 11] [ 6] [159125] +23:41:49 [ 39] [ 2] [00] +23:41:49 [ 70] [ 3] [301] +23:41:49 ============================================================================ +23:41:49 Calculate Source COMM Id = 2 +23:41:49 ============================================================================ +23:41:49 + + +waiting on router queue for slot.... +23:42:00 ============================================================================ +23:42:00 Slot Id : <209> +23:42:00 Transaction Type : REQUEST +23:42:00 Received From : +23:42:00 ============================================================================ +23:42:00 FNo. Len. Field Value +23:42:00 ============================================================================ +23:42:00 [ 1] [ 4] [0800] +23:42:00 [ 7] [ 10] [0320044107] +23:42:00 [ 11] [ 6] [159126] +23:42:00 [ 70] [ 3] [301] +23:42:00 ============================================================================ +23:42:00 + + +waiting on router queue for slot.... +23:42:00 Sending to : +23:42:00 ============================================================================ +23:42:00 ============================================================================ +23:42:00 Slot Id : <209> +23:42:00 Transaction Type : RESPONSE +23:42:00 Received From : +23:42:00 ============================================================================ +23:42:00 FNo. Len. Field Value +23:42:00 ============================================================================ +23:42:00 [ 1] [ 4] [0810] +23:42:00 [ 7] [ 10] [0320044107] +23:42:00 [ 11] [ 6] [159126] +23:42:00 [ 39] [ 2] [00] +23:42:00 [ 70] [ 3] [301] +23:42:00 ============================================================================ +23:42:00 Calculate Source COMM Id = 2 +23:42:00 ============================================================================ +23:42:00 + + +waiting on router queue for slot.... +23:42:15 ============================================================================ +23:42:15 Slot Id : <193> +23:42:15 Transaction Type : REQUEST +23:42:15 Received From : +23:42:15 ============================================================================ +23:42:15 FNo. Len. Field Value +23:42:15 ============================================================================ +23:42:15 [ 1] [ 4] [0800] +23:42:15 [ 7] [ 10] [0320044123] +23:42:15 [ 11] [ 6] [159127] +23:42:15 [ 70] [ 3] [301] +23:42:15 ============================================================================ +23:42:15 + + +waiting on router queue for slot.... +23:42:15 Sending to : +23:42:15 ============================================================================ +23:42:15 ============================================================================ +23:42:15 Slot Id : <193> +23:42:15 Transaction Type : RESPONSE +23:42:15 Received From : +23:42:15 ============================================================================ +23:42:15 FNo. Len. Field Value +23:42:15 ============================================================================ +23:42:15 [ 1] [ 4] [0810] +23:42:15 [ 7] [ 10] [0320044123] +23:42:15 [ 11] [ 6] [159127] +23:42:15 [ 39] [ 2] [00] +23:42:15 [ 70] [ 3] [301] +23:42:15 ============================================================================ +23:42:15 Calculate Source COMM Id = 2 +23:42:15 ============================================================================ +23:42:15 + + +waiting on router queue for slot.... +23:42:25 ============================================================================ +23:42:25 Slot Id : <206> +23:42:25 Transaction Type : REQUEST +23:42:25 Received From : +23:42:25 ============================================================================ +23:42:25 FNo. Len. Field Value +23:42:25 ============================================================================ +23:42:25 [ 1] [ 4] [0800] +23:42:25 [ 7] [ 10] [0320044133] +23:42:25 [ 11] [ 6] [159128] +23:42:25 [ 70] [ 3] [301] +23:42:25 ============================================================================ +23:42:25 + + +waiting on router queue for slot.... +23:42:25 Sending to : +23:42:25 ============================================================================ +23:42:25 ============================================================================ +23:42:25 Slot Id : <206> +23:42:25 Transaction Type : RESPONSE +23:42:25 Received From : +23:42:25 ============================================================================ +23:42:25 FNo. Len. Field Value +23:42:25 ============================================================================ +23:42:25 [ 1] [ 4] [0810] +23:42:25 [ 7] [ 10] [0320044133] +23:42:25 [ 11] [ 6] [159128] +23:42:25 [ 39] [ 2] [00] +23:42:25 [ 70] [ 3] [301] +23:42:25 ============================================================================ +23:42:25 Calculate Source COMM Id = 2 +23:42:25 ============================================================================ +23:42:25 + + +waiting on router queue for slot.... +23:42:32 ============================================================================ +23:42:32 Slot Id : <212> +23:42:32 Transaction Type : REQUEST +23:42:32 Received From : +23:42:32 ============================================================================ +23:42:32 FNo. Len. Field Value +23:42:32 ============================================================================ +23:42:32 [ 1] [ 4] [0800] +23:42:32 [ 2] [ 5] [02531] +23:42:32 [ 3] [ 6] [579238] +23:42:32 [ 7] [ 10] [0320164232] +23:42:32 [ 11] [ 6] [807788] +23:42:32 [ 15] [ 10] [0320164232] +23:42:32 [ 37] [ 11] [57923807788] +23:42:32 [ 70] [ 3] [001] +23:42:32 ============================================================================ +23:42:32 + + +waiting on router queue for slot.... +23:42:32 ============================================================================ +23:42:32 Slot Id : <212> +23:42:32 Transaction Type : RESPONSE +23:42:32 Received From : +23:42:32 ============================================================================ +23:42:32 FNo. Len. Field Value +23:42:32 ============================================================================ +23:42:32 [ 1] [ 4] [0810] +23:42:32 [ 7] [ 10] [0320164232] +23:42:32 [ 11] [ 6] [807788] +23:42:32 [ 15] [ 4] [0320] +23:42:32 [ 37] [ 12] [57923807788] +23:42:32 [ 39] [ 2] [00] +23:42:32 [ 70] [ 3] [001] +23:42:32 ============================================================================ +23:42:32 Sending to : +23:42:32 ============================================================================ +23:42:32 + + +waiting on router queue for slot.... +23:42:36 ============================================================================ +23:42:36 Slot Id : <184> +23:42:36 Transaction Type : REQUEST +23:42:36 Received From : +23:42:36 ============================================================================ +23:42:36 FNo. Len. Field Value +23:42:36 ============================================================================ +23:42:36 [ 1] [ 4] [0800] +23:42:36 [ 7] [ 10] [0320044144] +23:42:36 [ 11] [ 6] [159129] +23:42:36 [ 70] [ 3] [301] +23:42:36 ============================================================================ +23:42:36 + + +waiting on router queue for slot.... +23:42:36 Sending to : +23:42:36 ============================================================================ +23:42:36 ============================================================================ +23:42:36 Slot Id : <184> +23:42:36 Transaction Type : RESPONSE +23:42:36 Received From : +23:42:36 ============================================================================ +23:42:36 FNo. Len. Field Value +23:42:36 ============================================================================ +23:42:36 [ 1] [ 4] [0810] +23:42:36 [ 7] [ 10] [0320044144] +23:42:36 [ 11] [ 6] [159129] +23:42:36 [ 39] [ 2] [00] +23:42:36 [ 70] [ 3] [301] +23:42:36 ============================================================================ +23:42:36 Calculate Source COMM Id = 2 +23:42:36 ============================================================================ +23:42:36 + + +waiting on router queue for slot.... +23:42:43 ============================================================================ +23:42:43 Slot Id : <230> +23:42:43 Transaction Type : REQUEST +23:42:43 Received From : +23:42:43 ============================================================================ +23:42:43 FNo. Len. Field Value +23:42:43 ============================================================================ +23:42:43 [ 1] [ 4] [0800] +23:42:43 [ 7] [ 10] [0321065432] +23:42:43 [ 11] [ 6] [235432] +23:42:43 [ 37] [ 12] [57923235432] +23:42:43 [ 70] [ 3] [301] +23:42:43 ============================================================================ +23:42:43 + + +waiting on router queue for slot.... +23:42:43 Sending to : +23:42:43 ============================================================================ +23:42:43 ============================================================================ +23:42:43 Slot Id : <230> +23:42:43 Transaction Type : RESPONSE +23:42:43 Received From : +23:42:43 ============================================================================ +23:42:43 FNo. Len. Field Value +23:42:43 ============================================================================ +23:42:43 [ 1] [ 4] [0810] +23:42:43 [ 7] [ 10] [0321065432] +23:42:43 [ 11] [ 6] [235432] +23:42:43 [ 37] [ 12] [579232354320] +23:42:43 [ 39] [ 2] [00] +23:42:43 [ 70] [ 3] [810] +23:42:43 ============================================================================ +23:42:43 Calculate Source COMM Id = 6 +23:42:43 ============================================================================ +23:42:43 + + +waiting on router queue for slot.... +23:42:46 ============================================================================ +23:42:46 Slot Id : <183> +23:42:46 Transaction Type : REQUEST +23:42:46 Received From : +23:42:46 ============================================================================ +23:42:46 FNo. Len. Field Value +23:42:46 ============================================================================ +23:42:46 [ 1] [ 4] [0800] +23:42:46 [ 7] [ 10] [0320044154] +23:42:46 [ 11] [ 6] [159130] +23:42:46 [ 70] [ 3] [301] +23:42:46 ============================================================================ +23:42:46 + + +waiting on router queue for slot.... +23:42:46 Sending to : +23:42:46 ============================================================================ +23:42:46 ============================================================================ +23:42:46 Slot Id : <183> +23:42:46 Transaction Type : RESPONSE +23:42:46 Received From : +23:42:46 ============================================================================ +23:42:46 FNo. Len. Field Value +23:42:46 ============================================================================ +23:42:46 [ 1] [ 4] [0810] +23:42:46 [ 7] [ 10] [0320044154] +23:42:46 [ 11] [ 6] [159130] +23:42:46 [ 39] [ 2] [00] +23:42:46 [ 70] [ 3] [301] +23:42:46 ============================================================================ +23:42:46 Calculate Source COMM Id = 2 +23:42:46 ============================================================================ +23:42:46 + + +waiting on router queue for slot.... +23:43:02 ============================================================================ +23:43:02 Slot Id : <207> +23:43:02 Transaction Type : REQUEST +23:43:02 Received From : +23:43:02 ============================================================================ +23:43:02 FNo. Len. Field Value +23:43:02 ============================================================================ +23:43:02 [ 1] [ 4] [0800] +23:43:02 [ 7] [ 10] [0320044210] +23:43:02 [ 11] [ 6] [159131] +23:43:02 [ 70] [ 3] [301] +23:43:02 ============================================================================ +23:43:02 + + +waiting on router queue for slot.... +23:43:02 Sending to : +23:43:02 ============================================================================ +23:43:02 ============================================================================ +23:43:02 Slot Id : <207> +23:43:02 Transaction Type : RESPONSE +23:43:02 Received From : +23:43:02 ============================================================================ +23:43:02 FNo. Len. Field Value +23:43:02 ============================================================================ +23:43:02 [ 1] [ 4] [0810] +23:43:02 [ 7] [ 10] [0320044210] +23:43:02 [ 11] [ 6] [159131] +23:43:02 [ 39] [ 2] [00] +23:43:02 [ 70] [ 3] [301] +23:43:02 ============================================================================ +23:43:02 Calculate Source COMM Id = 2 +23:43:02 ============================================================================ +23:43:02 + + +waiting on router queue for slot.... +23:43:18 ============================================================================ +23:43:18 Slot Id : <221> +23:43:18 Transaction Type : REQUEST +23:43:18 Received From : +23:43:18 ============================================================================ +23:43:18 FNo. Len. Field Value +23:43:18 ============================================================================ +23:43:18 [ 1] [ 4] [0800] +23:43:18 [ 7] [ 10] [0320044226] +23:43:18 [ 11] [ 6] [159132] +23:43:18 [ 70] [ 3] [301] +23:43:18 ============================================================================ +23:43:18 + + +waiting on router queue for slot.... +23:43:18 Sending to : +23:43:18 ============================================================================ +23:43:18 ============================================================================ +23:43:18 Slot Id : <221> +23:43:18 Transaction Type : RESPONSE +23:43:18 Received From : +23:43:18 ============================================================================ +23:43:18 FNo. Len. Field Value +23:43:18 ============================================================================ +23:43:18 [ 1] [ 4] [0810] +23:43:18 [ 7] [ 10] [0320044226] +23:43:18 [ 11] [ 6] [159132] +23:43:18 [ 39] [ 2] [00] +23:43:18 [ 70] [ 3] [301] +23:43:18 ============================================================================ +23:43:18 Calculate Source COMM Id = 2 +23:43:18 ============================================================================ +23:43:18 + + +waiting on router queue for slot.... +23:43:29 ============================================================================ +23:43:29 Slot Id : <213> +23:43:29 Transaction Type : REQUEST +23:43:29 Received From : +23:43:29 ============================================================================ +23:43:29 FNo. Len. Field Value +23:43:29 ============================================================================ +23:43:29 [ 1] [ 4] [0800] +23:43:29 [ 7] [ 10] [0320044237] +23:43:29 [ 11] [ 6] [159133] +23:43:29 [ 70] [ 3] [301] +23:43:29 ============================================================================ +23:43:29 + + +waiting on router queue for slot.... +23:43:29 Sending to : +23:43:29 ============================================================================ +23:43:29 ============================================================================ +23:43:29 Slot Id : <213> +23:43:29 Transaction Type : RESPONSE +23:43:29 Received From : +23:43:29 ============================================================================ +23:43:29 FNo. Len. Field Value +23:43:29 ============================================================================ +23:43:29 [ 1] [ 4] [0810] +23:43:29 [ 7] [ 10] [0320044237] +23:43:29 [ 11] [ 6] [159133] +23:43:29 [ 39] [ 2] [00] +23:43:29 [ 70] [ 3] [301] +23:43:29 ============================================================================ +23:43:29 Calculate Source COMM Id = 2 +23:43:29 ============================================================================ +23:43:29 + + +waiting on router queue for slot.... +23:43:34 ============================================================================ +23:43:34 Slot Id : <169> +23:43:34 Transaction Type : REQUEST +23:43:34 Received From : +23:43:34 ============================================================================ +23:43:34 FNo. Len. Field Value +23:43:34 ============================================================================ +23:43:34 [ 1] [ 4] [0800] +23:43:34 [ 2] [ 5] [02531] +23:43:34 [ 3] [ 6] [579238] +23:43:34 [ 7] [ 10] [0320164334] +23:43:34 [ 11] [ 6] [807789] +23:43:34 [ 15] [ 10] [0320164334] +23:43:34 [ 37] [ 11] [57923807789] +23:43:34 [ 70] [ 3] [001] +23:43:34 ============================================================================ +23:43:34 + + +waiting on router queue for slot.... +23:43:34 ============================================================================ +23:43:34 Slot Id : <169> +23:43:34 Transaction Type : RESPONSE +23:43:34 Received From : +23:43:34 ============================================================================ +23:43:34 FNo. Len. Field Value +23:43:34 ============================================================================ +23:43:34 [ 1] [ 4] [0810] +23:43:34 [ 7] [ 10] [0320164334] +23:43:34 [ 11] [ 6] [807789] +23:43:34 [ 15] [ 4] [0320] +23:43:34 [ 37] [ 12] [57923807789] +23:43:34 [ 39] [ 2] [00] +23:43:34 [ 70] [ 3] [001] +23:43:34 ============================================================================ +23:43:34 Sending to : +23:43:34 ============================================================================ +23:43:34 + + +waiting on router queue for slot.... +23:43:41 ============================================================================ +23:43:41 Slot Id : <205> +23:43:41 Transaction Type : REQUEST +23:43:41 Received From : +23:43:41 ============================================================================ +23:43:41 FNo. Len. Field Value +23:43:41 ============================================================================ +23:43:41 [ 1] [ 4] [0800] +23:43:41 [ 7] [ 10] [0320044249] +23:43:41 [ 11] [ 6] [159134] +23:43:41 [ 70] [ 3] [301] +23:43:41 ============================================================================ +23:43:41 + + +waiting on router queue for slot.... +23:43:41 Sending to : +23:43:41 ============================================================================ +23:43:41 ============================================================================ +23:43:41 Slot Id : <205> +23:43:41 Transaction Type : RESPONSE +23:43:41 Received From : +23:43:41 ============================================================================ +23:43:41 FNo. Len. Field Value +23:43:41 ============================================================================ +23:43:41 [ 1] [ 4] [0810] +23:43:41 [ 7] [ 10] [0320044249] +23:43:41 [ 11] [ 6] [159134] +23:43:41 [ 39] [ 2] [00] +23:43:41 [ 70] [ 3] [301] +23:43:41 ============================================================================ +23:43:41 Calculate Source COMM Id = 2 +23:43:41 ============================================================================ +23:43:41 + + +waiting on router queue for slot.... +23:43:48 ============================================================================ +23:43:48 Slot Id : <185> +23:43:48 Transaction Type : REQUEST +23:43:48 Received From : +23:43:48 ============================================================================ +23:43:48 FNo. Len. Field Value +23:43:48 ============================================================================ +23:43:48 [ 1] [ 4] [0800] +23:43:48 [ 7] [ 10] [0321065537] +23:43:48 [ 11] [ 6] [235537] +23:43:48 [ 37] [ 12] [57923235537] +23:43:48 [ 70] [ 3] [301] +23:43:48 ============================================================================ +23:43:48 + + +waiting on router queue for slot.... +23:43:48 Sending to : +23:43:48 ============================================================================ +23:43:48 ============================================================================ +23:43:48 Slot Id : <185> +23:43:48 Transaction Type : RESPONSE +23:43:48 Received From : +23:43:48 ============================================================================ +23:43:48 FNo. Len. Field Value +23:43:48 ============================================================================ +23:43:48 [ 1] [ 4] [0810] +23:43:48 [ 7] [ 10] [0321065537] +23:43:48 [ 11] [ 6] [235537] +23:43:48 [ 37] [ 12] [579232355370] +23:43:48 [ 39] [ 2] [00] +23:43:48 [ 70] [ 3] [810] +23:43:48 ============================================================================ +23:43:48 Calculate Source COMM Id = 6 +23:43:48 ============================================================================ +23:43:48 + + +waiting on router queue for slot.... +23:43:53 ============================================================================ +23:43:53 Slot Id : <149> +23:43:53 Transaction Type : REQUEST +23:43:53 Received From : +23:43:53 ============================================================================ +23:43:53 FNo. Len. Field Value +23:43:53 ============================================================================ +23:43:53 [ 1] [ 4] [0800] +23:43:53 [ 7] [ 10] [0320044301] +23:43:53 [ 11] [ 6] [159135] +23:43:53 [ 70] [ 3] [301] +23:43:53 ============================================================================ +23:43:53 + + +waiting on router queue for slot.... +23:43:53 Sending to : +23:43:53 ============================================================================ +23:43:53 ============================================================================ +23:43:53 Slot Id : <149> +23:43:53 Transaction Type : RESPONSE +23:43:53 Received From : +23:43:53 ============================================================================ +23:43:53 FNo. Len. Field Value +23:43:53 ============================================================================ +23:43:53 [ 1] [ 4] [0810] +23:43:53 [ 7] [ 10] [0320044301] +23:43:53 [ 11] [ 6] [159135] +23:43:53 [ 39] [ 2] [00] +23:43:53 [ 70] [ 3] [301] +23:43:53 ============================================================================ +23:43:53 Calculate Source COMM Id = 2 +23:43:53 ============================================================================ +23:43:53 + + +waiting on router queue for slot.... +23:44:10 ============================================================================ +23:44:10 Slot Id : <180> +23:44:10 Transaction Type : REQUEST +23:44:10 Received From : +23:44:10 ============================================================================ +23:44:10 FNo. Len. Field Value +23:44:10 ============================================================================ +23:44:10 [ 1] [ 4] [0800] +23:44:10 [ 7] [ 10] [0320044317] +23:44:10 [ 11] [ 6] [159136] +23:44:10 [ 70] [ 3] [301] +23:44:10 ============================================================================ +23:44:10 + + +waiting on router queue for slot.... +23:44:10 Sending to : +23:44:10 ============================================================================ +23:44:10 ============================================================================ +23:44:10 Slot Id : <180> +23:44:10 Transaction Type : RESPONSE +23:44:10 Received From : +23:44:10 ============================================================================ +23:44:10 FNo. Len. Field Value +23:44:10 ============================================================================ +23:44:10 [ 1] [ 4] [0810] +23:44:10 [ 7] [ 10] [0320044317] +23:44:10 [ 11] [ 6] [159136] +23:44:10 [ 39] [ 2] [00] +23:44:10 [ 70] [ 3] [301] +23:44:10 ============================================================================ +23:44:10 Calculate Source COMM Id = 2 +23:44:10 ============================================================================ +23:44:10 + + +waiting on router queue for slot.... +23:44:25 ============================================================================ +23:44:25 Slot Id : <232> +23:44:25 Transaction Type : REQUEST +23:44:25 Received From : +23:44:25 ============================================================================ +23:44:25 FNo. Len. Field Value +23:44:25 ============================================================================ +23:44:25 [ 1] [ 4] [0800] +23:44:25 [ 7] [ 10] [0320044333] +23:44:25 [ 11] [ 6] [159137] +23:44:25 [ 70] [ 3] [301] +23:44:25 ============================================================================ +23:44:25 + + +waiting on router queue for slot.... +23:44:25 Sending to : +23:44:25 ============================================================================ +23:44:25 ============================================================================ +23:44:25 Slot Id : <232> +23:44:25 Transaction Type : RESPONSE +23:44:25 Received From : +23:44:25 ============================================================================ +23:44:25 FNo. Len. Field Value +23:44:25 ============================================================================ +23:44:25 [ 1] [ 4] [0810] +23:44:25 [ 7] [ 10] [0320044333] +23:44:25 [ 11] [ 6] [159137] +23:44:25 [ 39] [ 2] [00] +23:44:25 [ 70] [ 3] [301] +23:44:25 ============================================================================ +23:44:25 Calculate Source COMM Id = 2 +23:44:25 ============================================================================ +23:44:25 + + +waiting on router queue for slot.... +23:44:36 ============================================================================ +23:44:36 Slot Id : <222> +23:44:36 Transaction Type : REQUEST +23:44:36 Received From : +23:44:36 ============================================================================ +23:44:36 FNo. Len. Field Value +23:44:36 ============================================================================ +23:44:36 [ 1] [ 4] [0800] +23:44:36 [ 7] [ 10] [0320044344] +23:44:36 [ 11] [ 6] [159138] +23:44:36 [ 70] [ 3] [301] +23:44:36 ============================================================================ +23:44:36 + + +waiting on router queue for slot.... +23:44:36 Sending to : +23:44:36 ============================================================================ +23:44:36 ============================================================================ +23:44:36 Slot Id : <222> +23:44:36 Transaction Type : RESPONSE +23:44:36 Received From : +23:44:36 ============================================================================ +23:44:36 FNo. Len. Field Value +23:44:36 ============================================================================ +23:44:36 [ 1] [ 4] [0810] +23:44:36 [ 7] [ 10] [0320044344] +23:44:36 [ 11] [ 6] [159138] +23:44:36 [ 39] [ 2] [00] +23:44:36 [ 70] [ 3] [301] +23:44:36 ============================================================================ +23:44:36 Calculate Source COMM Id = 2 +23:44:36 ============================================================================ +23:44:36 + + +waiting on router queue for slot.... +23:44:36 ============================================================================ +23:44:36 Slot Id : <211> +23:44:36 Transaction Type : REQUEST +23:44:36 Received From : +23:44:36 ============================================================================ +23:44:36 FNo. Len. Field Value +23:44:36 ============================================================================ +23:44:36 [ 1] [ 4] [0800] +23:44:36 [ 2] [ 5] [02531] +23:44:36 [ 3] [ 6] [579238] +23:44:36 [ 7] [ 10] [0320164436] +23:44:36 [ 11] [ 6] [807790] +23:44:36 [ 15] [ 10] [0320164436] +23:44:36 [ 37] [ 11] [57923807790] +23:44:36 [ 70] [ 3] [001] +23:44:36 ============================================================================ +23:44:36 + + +waiting on router queue for slot.... +23:44:36 ============================================================================ +23:44:36 Slot Id : <211> +23:44:36 Transaction Type : RESPONSE +23:44:36 Received From : +23:44:36 ============================================================================ +23:44:36 FNo. Len. Field Value +23:44:36 ============================================================================ +23:44:36 [ 1] [ 4] [0810] +23:44:36 [ 7] [ 10] [0320164436] +23:44:36 [ 11] [ 6] [807790] +23:44:36 [ 15] [ 4] [0320] +23:44:36 [ 37] [ 12] [57923807790] +23:44:36 [ 39] [ 2] [00] +23:44:36 [ 70] [ 3] [001] +23:44:36 ============================================================================ +23:44:36 Sending to : +23:44:36 ============================================================================ +23:44:36 + + +waiting on router queue for slot.... +23:44:47 ============================================================================ +23:44:47 Slot Id : <208> +23:44:47 Transaction Type : REQUEST +23:44:47 Received From : +23:44:47 ============================================================================ +23:44:47 FNo. Len. Field Value +23:44:47 ============================================================================ +23:44:47 [ 1] [ 4] [0800] +23:44:47 [ 7] [ 10] [0320044355] +23:44:47 [ 11] [ 6] [159139] +23:44:47 [ 70] [ 3] [301] +23:44:47 ============================================================================ +23:44:47 + + +waiting on router queue for slot.... +23:44:47 Sending to : +23:44:47 ============================================================================ +23:44:47 ============================================================================ +23:44:47 Slot Id : <208> +23:44:47 Transaction Type : RESPONSE +23:44:47 Received From : +23:44:47 ============================================================================ +23:44:47 FNo. Len. Field Value +23:44:47 ============================================================================ +23:44:47 [ 1] [ 4] [0810] +23:44:47 [ 7] [ 10] [0320044355] +23:44:47 [ 11] [ 6] [159139] +23:44:47 [ 39] [ 2] [00] +23:44:47 [ 70] [ 3] [301] +23:44:47 ============================================================================ +23:44:47 Calculate Source COMM Id = 2 +23:44:47 ============================================================================ +23:44:47 + + +waiting on router queue for slot.... +23:44:53 ============================================================================ +23:44:53 Slot Id : <189> +23:44:53 Transaction Type : REQUEST +23:44:53 Received From : +23:44:53 ============================================================================ +23:44:53 FNo. Len. Field Value +23:44:53 ============================================================================ +23:44:53 [ 1] [ 4] [0800] +23:44:53 [ 7] [ 10] [0321065643] +23:44:53 [ 11] [ 6] [235643] +23:44:53 [ 37] [ 12] [57923235643] +23:44:53 [ 70] [ 3] [301] +23:44:53 ============================================================================ +23:44:53 + + +waiting on router queue for slot.... +23:44:53 Sending to : +23:44:53 ============================================================================ +23:44:53 ============================================================================ +23:44:53 Slot Id : <189> +23:44:53 Transaction Type : RESPONSE +23:44:53 Received From : +23:44:53 ============================================================================ +23:44:53 FNo. Len. Field Value +23:44:53 ============================================================================ +23:44:53 [ 1] [ 4] [0810] +23:44:53 [ 7] [ 10] [0321065643] +23:44:53 [ 11] [ 6] [235643] +23:44:53 [ 37] [ 12] [579232356430] +23:44:53 [ 39] [ 2] [00] +23:44:53 [ 70] [ 3] [810] +23:44:53 ============================================================================ +23:44:53 Calculate Source COMM Id = 6 +23:44:53 ============================================================================ +23:44:53 + + +waiting on router queue for slot.... +23:44:55 ============================================================================ +23:44:55 Slot Id : <168> +23:44:55 Transaction Type : REQUEST +23:44:55 Received From : +23:44:55 ============================================================================ +23:44:55 FNo. Len. Field Value +23:44:55 ============================================================================ +23:44:55 [ 1] [ 4] [0800] +23:44:55 [ 7] [ 10] [0320165242] +23:44:55 [ 11] [ 6] [088454] +23:44:55 [ 37] [ 12] [57923088454] +23:44:55 [ 70] [ 3] [301] +23:44:55 ============================================================================ +23:44:55 + + +waiting on router queue for slot.... +23:44:55 Sending to : +23:44:55 ============================================================================ +23:44:55 ============================================================================ +23:44:55 Slot Id : <168> +23:44:55 Transaction Type : RESPONSE +23:44:55 Received From : +23:44:55 ============================================================================ +23:44:55 FNo. Len. Field Value +23:44:55 ============================================================================ +23:44:55 [ 1] [ 4] [0810] +23:44:55 [ 7] [ 10] [0320165242] +23:44:55 [ 11] [ 6] [088454] +23:44:55 [ 37] [ 12] [579230884540] +23:44:55 [ 39] [ 2] [00] +23:44:55 [ 70] [ 3] [810] +23:44:55 ============================================================================ +23:44:55 Calculate Source COMM Id = 1 +23:44:55 ============================================================================ +23:44:55 + + +waiting on router queue for slot.... +23:44:57 ============================================================================ +23:44:57 Slot Id : <174> +23:44:57 Transaction Type : REQUEST +23:44:57 Received From : +23:44:57 ============================================================================ +23:44:57 FNo. Len. Field Value +23:44:57 ============================================================================ +23:44:57 [ 1] [ 4] [0800] +23:44:57 [ 7] [ 10] [0320044405] +23:44:57 [ 11] [ 6] [159140] +23:44:57 [ 70] [ 3] [301] +23:44:57 ============================================================================ +23:44:57 + + +waiting on router queue for slot.... +23:44:57 Sending to : +23:44:57 ============================================================================ +23:44:57 ============================================================================ +23:44:57 Slot Id : <174> +23:44:57 Transaction Type : RESPONSE +23:44:57 Received From : +23:44:57 ============================================================================ +23:44:57 FNo. Len. Field Value +23:44:57 ============================================================================ +23:44:57 [ 1] [ 4] [0810] +23:44:57 [ 7] [ 10] [0320044405] +23:44:57 [ 11] [ 6] [159140] +23:44:57 [ 39] [ 2] [00] +23:44:57 [ 70] [ 3] [301] +23:44:57 ============================================================================ +23:44:57 Calculate Source COMM Id = 2 +23:44:57 ============================================================================ +23:44:57 + + +waiting on router queue for slot.... +23:45:08 ============================================================================ +23:45:08 Slot Id : <229> +23:45:08 Transaction Type : REQUEST +23:45:08 Received From : +23:45:08 ============================================================================ +23:45:08 FNo. Len. Field Value +23:45:08 ============================================================================ +23:45:08 [ 1] [ 4] [0800] +23:45:08 [ 7] [ 10] [0320044415] +23:45:08 [ 11] [ 6] [159141] +23:45:08 [ 70] [ 3] [301] +23:45:08 ============================================================================ +23:45:08 + + +waiting on router queue for slot.... +23:45:08 Sending to : +23:45:08 ============================================================================ +23:45:08 ============================================================================ +23:45:08 Slot Id : <229> +23:45:08 Transaction Type : RESPONSE +23:45:08 Received From : +23:45:08 ============================================================================ +23:45:08 FNo. Len. Field Value +23:45:08 ============================================================================ +23:45:08 [ 1] [ 4] [0810] +23:45:08 [ 7] [ 10] [0320044415] +23:45:08 [ 11] [ 6] [159141] +23:45:08 [ 39] [ 2] [00] +23:45:08 [ 70] [ 3] [301] +23:45:08 ============================================================================ +23:45:08 Calculate Source COMM Id = 2 +23:45:08 ============================================================================ +23:45:08 + + +waiting on router queue for slot.... +23:45:18 ============================================================================ +23:45:18 Slot Id : <173> +23:45:18 Transaction Type : REQUEST +23:45:18 Received From : +23:45:18 ============================================================================ +23:45:18 FNo. Len. Field Value +23:45:18 ============================================================================ +23:45:18 [ 1] [ 4] [0800] +23:45:18 [ 7] [ 10] [0320044426] +23:45:18 [ 11] [ 6] [159142] +23:45:18 [ 70] [ 3] [301] +23:45:18 ============================================================================ +23:45:18 + + +waiting on router queue for slot.... +23:45:18 Sending to : +23:45:18 ============================================================================ +23:45:18 ============================================================================ +23:45:18 Slot Id : <173> +23:45:18 Transaction Type : RESPONSE +23:45:18 Received From : +23:45:18 ============================================================================ +23:45:18 FNo. Len. Field Value +23:45:18 ============================================================================ +23:45:18 [ 1] [ 4] [0810] +23:45:18 [ 7] [ 10] [0320044426] +23:45:18 [ 11] [ 6] [159142] +23:45:18 [ 39] [ 2] [00] +23:45:18 [ 70] [ 3] [301] +23:45:18 ============================================================================ +23:45:18 Calculate Source COMM Id = 2 +23:45:18 ============================================================================ +23:45:18 + + +waiting on router queue for slot.... +23:45:29 ============================================================================ +23:45:29 Slot Id : <246> +23:45:29 Transaction Type : REQUEST +23:45:29 Received From : +23:45:29 ============================================================================ +23:45:29 FNo. Len. Field Value +23:45:29 ============================================================================ +23:45:29 [ 1] [ 4] [0800] +23:45:29 [ 7] [ 10] [0320044437] +23:45:29 [ 11] [ 6] [159143] +23:45:29 [ 70] [ 3] [301] +23:45:29 ============================================================================ +23:45:29 + + +waiting on router queue for slot.... +23:45:29 Sending to : +23:45:29 ============================================================================ +23:45:29 ============================================================================ +23:45:29 Slot Id : <246> +23:45:29 Transaction Type : RESPONSE +23:45:29 Received From : +23:45:29 ============================================================================ +23:45:29 FNo. Len. Field Value +23:45:29 ============================================================================ +23:45:29 [ 1] [ 4] [0810] +23:45:29 [ 7] [ 10] [0320044437] +23:45:29 [ 11] [ 6] [159143] +23:45:29 [ 39] [ 2] [00] +23:45:29 [ 70] [ 3] [301] +23:45:29 ============================================================================ +23:45:29 Calculate Source COMM Id = 2 +23:45:29 ============================================================================ +23:45:29 + + +waiting on router queue for slot.... +23:45:30 ============================================================================ +23:45:30 Slot Id : <188> +23:45:30 Transaction Type : REQUEST +23:45:30 Received From : +23:45:30 ============================================================================ +23:45:30 FNo. Len. Field Value +23:45:30 ============================================================================ +23:45:30 [ 1] [ 4] [0800] +23:45:30 [ 7] [ 10] [0320164526] +23:45:30 [ 11] [ 6] [054751] +23:45:30 [ 37] [ 12] [507923054751] +23:45:30 [ 70] [ 3] [001] +23:45:30 ============================================================================ +23:45:30 + + +waiting on router queue for slot.... +23:45:30 Sending to : +23:45:30 ============================================================================ +23:45:30 ============================================================================ +23:45:30 Slot Id : <188> +23:45:30 Transaction Type : RESPONSE +23:45:30 Received From : +23:45:30 ============================================================================ +23:45:30 FNo. Len. Field Value +23:45:30 ============================================================================ +23:45:30 [ 1] [ 4] [0810] +23:45:30 [ 7] [ 10] [0320164526] +23:45:30 [ 11] [ 6] [054751] +23:45:30 [ 37] [ 12] [507923054751] +23:45:30 [ 39] [ 2] [00] +23:45:30 [ 70] [ 3] [001] +23:45:30 ============================================================================ +23:45:30 Calculate Source COMM Id = 0 +23:45:30 ============================================================================ +23:45:30 + + +waiting on router queue for slot.... +23:45:38 ============================================================================ +23:45:38 Slot Id : <223> +23:45:38 Transaction Type : REQUEST +23:45:38 Received From : +23:45:38 ============================================================================ +23:45:38 FNo. Len. Field Value +23:45:38 ============================================================================ +23:45:38 [ 1] [ 4] [0800] +23:45:38 [ 2] [ 5] [02531] +23:45:38 [ 3] [ 6] [579238] +23:45:38 [ 7] [ 10] [0320164538] +23:45:38 [ 11] [ 6] [807791] +23:45:38 [ 15] [ 10] [0320164538] +23:45:38 [ 37] [ 11] [57923807791] +23:45:38 [ 70] [ 3] [001] +23:45:38 ============================================================================ +23:45:38 + + +waiting on router queue for slot.... +23:45:38 ============================================================================ +23:45:38 Slot Id : <223> +23:45:38 Transaction Type : RESPONSE +23:45:38 Received From : +23:45:38 ============================================================================ +23:45:38 FNo. Len. Field Value +23:45:38 ============================================================================ +23:45:38 [ 1] [ 4] [0810] +23:45:38 [ 7] [ 10] [0320164538] +23:45:38 [ 11] [ 6] [807791] +23:45:38 [ 15] [ 4] [0320] +23:45:38 [ 37] [ 12] [57923807791] +23:45:38 [ 39] [ 2] [00] +23:45:38 [ 70] [ 3] [001] +23:45:38 ============================================================================ +23:45:38 Sending to : +23:45:38 ============================================================================ +23:45:38 + + +waiting on router queue for slot.... +23:45:45 ============================================================================ +23:45:45 Slot Id : <235> +23:45:45 Transaction Type : REQUEST +23:45:45 Received From : +23:45:45 ============================================================================ +23:45:45 FNo. Len. Field Value +23:45:45 ============================================================================ +23:45:45 [ 1] [ 4] [0800] +23:45:45 [ 7] [ 10] [0320044453] +23:45:45 [ 11] [ 6] [159144] +23:45:45 [ 70] [ 3] [301] +23:45:45 ============================================================================ +23:45:45 + + +waiting on router queue for slot.... +23:45:45 Sending to : +23:45:45 ============================================================================ +23:45:45 ============================================================================ +23:45:45 Slot Id : <235> +23:45:45 Transaction Type : RESPONSE +23:45:45 Received From : +23:45:45 ============================================================================ +23:45:45 FNo. Len. Field Value +23:45:45 ============================================================================ +23:45:45 [ 1] [ 4] [0810] +23:45:45 [ 7] [ 10] [0320044453] +23:45:45 [ 11] [ 6] [159144] +23:45:45 [ 39] [ 2] [00] +23:45:45 [ 70] [ 3] [301] +23:45:45 ============================================================================ +23:45:45 Calculate Source COMM Id = 2 +23:45:45 ============================================================================ +23:45:45 + + +waiting on router queue for slot.... +23:45:56 ============================================================================ +23:45:56 Slot Id : <227> +23:45:56 Transaction Type : REQUEST +23:45:56 Received From : +23:45:56 ============================================================================ +23:45:56 FNo. Len. Field Value +23:45:56 ============================================================================ +23:45:56 [ 1] [ 4] [0800] +23:45:56 [ 7] [ 10] [0320044504] +23:45:56 [ 11] [ 6] [159145] +23:45:56 [ 70] [ 3] [301] +23:45:56 ============================================================================ +23:45:56 + + +waiting on router queue for slot.... +23:45:56 Sending to : +23:45:56 ============================================================================ +23:45:56 ============================================================================ +23:45:56 Slot Id : <227> +23:45:56 Transaction Type : RESPONSE +23:45:56 Received From : +23:45:56 ============================================================================ +23:45:56 FNo. Len. Field Value +23:45:56 ============================================================================ +23:45:56 [ 1] [ 4] [0810] +23:45:56 [ 7] [ 10] [0320044504] +23:45:56 [ 11] [ 6] [159145] +23:45:56 [ 39] [ 2] [00] +23:45:56 [ 70] [ 3] [301] +23:45:56 ============================================================================ +23:45:56 Calculate Source COMM Id = 2 +23:45:56 ============================================================================ +23:45:56 + + +waiting on router queue for slot.... +23:45:58 ============================================================================ +23:45:58 Slot Id : <244> +23:45:58 Transaction Type : REQUEST +23:45:58 Received From : +23:45:58 ============================================================================ +23:45:58 FNo. Len. Field Value +23:45:58 ============================================================================ +23:45:58 [ 1] [ 4] [0800] +23:45:58 [ 7] [ 10] [0321065748] +23:45:58 [ 11] [ 6] [235748] +23:45:58 [ 37] [ 12] [57923235748] +23:45:58 [ 70] [ 3] [301] +23:45:58 ============================================================================ +23:45:58 + + +waiting on router queue for slot.... +23:45:58 Sending to : +23:45:58 ============================================================================ +23:45:58 ============================================================================ +23:45:58 Slot Id : <244> +23:45:58 Transaction Type : RESPONSE +23:45:58 Received From : +23:45:58 ============================================================================ +23:45:58 FNo. Len. Field Value +23:45:58 ============================================================================ +23:45:58 [ 1] [ 4] [0810] +23:45:58 [ 7] [ 10] [0321065748] +23:45:58 [ 11] [ 6] [235748] +23:45:58 [ 37] [ 12] [579232357480] +23:45:58 [ 39] [ 2] [00] +23:45:58 [ 70] [ 3] [810] +23:45:58 ============================================================================ +23:45:58 Calculate Source COMM Id = 6 +23:45:58 ============================================================================ +23:45:58 + + +waiting on router queue for slot.... +23:45:58 ============================================================================ +23:45:58 Slot Id : <215> +23:45:58 Transaction Type : REQUEST +23:45:58 Received From : +23:45:58 ============================================================================ +23:45:58 FNo. Len. Field Value +23:45:58 ============================================================================ +23:45:58 [ 1] [ 4] [0200] +23:45:58 [ 2] [ 16] [1808931800002170] +23:45:58 [ 3] [ 6] [010000] +23:45:58 [ 4] [ 12] [000100000000] +23:45:58 [ 7] [ 10] [0320234554] +23:45:58 [ 11] [ 6] [849694] +23:45:58 [ 12] [ 6] [234554] +23:45:58 [ 13] [ 4] [0320] +23:45:58 [ 15] [ 4] [0320] +23:45:58 [ 18] [ 4] [6011] +23:45:58 [ 22] [ 3] [900] +23:45:58 [ 25] [ 2] [02] +23:45:58 [ 28] [ 9] [D00002000] +23:45:58 [ 32] [ 6] [621354] +23:45:58 [ 35] [ 27] [1808931800002170=1803500392] +23:45:58 [ 37] [ 12] [507904989962] +23:45:58 [ 41] [ 8] [01012300] +23:45:58 [ 42] [ 15] [NATIVE ] +23:45:58 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +23:45:58 [ 49] [ 3] [418] +23:45:58 [ 52] [ 16] [832C1930306D15ED] +23:45:58 ============================================================================ +23:45:58 + + +waiting on router queue for slot.... +23:45:58 Sending to : +23:45:58 ============================================================================ +23:45:58 Sending to : +23:45:58 ============================================================================ +23:45:59 ============================================================================ +23:45:59 Slot Id : <215> +23:45:59 Transaction Type : REQUEST +23:45:59 Received From : +23:45:59 ============================================================================ +23:45:59 FNo. Len. Field Value +23:45:59 ============================================================================ +23:45:59 [ 1] [ 4] [0200] +23:45:59 [ 2] [ 16] [1808931800002170] +23:45:59 [ 3] [ 6] [010000] +23:45:59 [ 4] [ 12] [000100000000] +23:45:59 [ 7] [ 10] [0320234554] +23:45:59 [ 11] [ 6] [849694] +23:45:59 [ 12] [ 6] [234554] +23:45:59 [ 13] [ 4] [0320] +23:45:59 [ 15] [ 4] [0320] +23:45:59 [ 18] [ 4] [6011] +23:45:59 [ 22] [ 3] [900] +23:45:59 [ 25] [ 2] [02] +23:45:59 [ 28] [ 9] [D00002000] +23:45:59 [ 32] [ 6] [621354] +23:45:59 [ 35] [ 27] [1808931800002170=1803500392] +23:45:59 [ 37] [ 12] [507904989962] +23:45:59 [ 41] [ 8] [01012300] +23:45:59 [ 42] [ 15] [NATIVE ] +23:45:59 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +23:45:59 [ 49] [ 3] [418] +23:45:59 [ 52] [ 16] [832C1930306D15ED] +23:45:59 ============================================================================ +23:45:59 + + +waiting on router queue for slot.... +23:45:59 Sending to : +23:45:59 ============================================================================ +23:45:59 ============================================================================ +23:45:59 Slot Id : <215> +23:45:59 Transaction Type : REQUEST +23:45:59 Received From : +23:45:59 ============================================================================ +23:45:59 FNo. Len. Field Value +23:45:59 ============================================================================ +23:45:59 [ 1] [ 4] [0200] +23:45:59 [ 2] [ 16] [1808931800002170] +23:45:59 [ 3] [ 6] [010000] +23:45:59 [ 4] [ 12] [000100000000] +23:45:59 [ 7] [ 10] [0320234554] +23:45:59 [ 11] [ 6] [849694] +23:45:59 [ 12] [ 6] [234554] +23:45:59 [ 13] [ 4] [0320] +23:45:59 [ 15] [ 4] [0320] +23:45:59 [ 18] [ 4] [6011] +23:45:59 [ 22] [ 3] [900] +23:45:59 [ 25] [ 2] [02] +23:45:59 [ 28] [ 9] [D00002000] +23:45:59 [ 32] [ 6] [621354] +23:45:59 [ 35] [ 27] [1808931800002170=1803500392] +23:45:59 [ 37] [ 12] [507904989962] +23:45:59 [ 41] [ 8] [01012300] +23:45:59 [ 42] [ 15] [NATIVE ] +23:45:59 [ 43] [ 40] [Thongpong Hospital Thongpong LAO] +23:45:59 [ 49] [ 3] [418] +23:45:59 [ 52] [ 16] [4B86C14AB014F09E] +23:45:59 ============================================================================ +23:45:59 + + +waiting on router queue for slot.... +23:45:59 Sending to : <2> +23:45:59 ============================================================================ +23:46:04 ============================================================================ +23:46:04 Slot Id : <215> +23:46:04 Transaction Type : RESPONSE +23:46:04 Received From : +23:46:04 ============================================================================ +23:46:04 FNo. Len. Field Value +23:46:04 ============================================================================ +23:46:04 [ 1] [ 4] [0210] +23:46:04 [ 2] [ 16] [1808931800002170] +23:46:04 [ 3] [ 6] [010000] +23:46:04 [ 4] [ 12] [000100000000] +23:46:04 [ 6] [ 12] [000100000000] +23:46:04 [ 7] [ 10] [0320234554] +23:46:04 [ 11] [ 6] [849694] +23:46:04 [ 12] [ 6] [234554] +23:46:04 [ 13] [ 4] [0320] +23:46:04 [ 18] [ 4] [6011] +23:46:04 [ 19] [ 3] [418] +23:46:04 [ 22] [ 3] [021] +23:46:04 [ 32] [ 6] [621354] +23:46:04 [ 35] [ 27] [1808931800002170=1803500392] +23:46:04 [ 37] [ 12] [507904989962] +23:46:04 [ 38] [ 6] [849694] +23:46:04 [ 39] [ 2] [00] +23:46:04 [ 41] [ 8] [01012300] +23:46:04 [ 49] [ 3] [418] +23:46:04 [ 52] [ 16] [4B86C14AB014F09E] +23:46:04 [ 54] [ 20] [1001418C000802411400] +23:46:04 ============================================================================ +23:46:04 Sending to : +23:46:04 ============================================================================ +23:46:04 + + +waiting on router queue for slot.... +23:46:05 ============================================================================ +23:46:05 Slot Id : <215> +23:46:05 Transaction Type : RESPONSE +23:46:05 Received From : +23:46:05 ============================================================================ +23:46:05 FNo. Len. Field Value +23:46:05 ============================================================================ +23:46:05 [ 1] [ 4] [0210] +23:46:05 [ 2] [ 16] [1808931800002170] +23:46:05 [ 3] [ 6] [010000] +23:46:05 [ 4] [ 12] [000100000000] +23:46:05 [ 6] [ 12] [000100000000] +23:46:05 [ 7] [ 10] [0320234554] +23:46:05 [ 11] [ 6] [849694] +23:46:05 [ 12] [ 6] [234554] +23:46:05 [ 13] [ 4] [0320] +23:46:05 [ 18] [ 4] [6011] +23:46:05 [ 19] [ 3] [418] +23:46:05 [ 22] [ 3] [021] +23:46:05 [ 32] [ 6] [621354] +23:46:05 [ 35] [ 27] [1808931800002170=1803500392] +23:46:05 [ 37] [ 12] [507904989962] +23:46:05 [ 38] [ 6] [849694] +23:46:05 [ 39] [ 2] [00] +23:46:05 [ 41] [ 8] [01012300] +23:46:05 [ 49] [ 3] [418] +23:46:05 [ 52] [ 16] [4B86C14AB014F09E] +23:46:05 [ 54] [ 20] [1001418C000802411400] +23:46:05 ============================================================================ +23:46:05 Calculate Source COMM Id = 0 +23:46:05 ============================================================================ +23:46:05 + + +waiting on router queue for slot.... +23:46:12 ============================================================================ +23:46:12 Slot Id : <248> +23:46:12 Transaction Type : REQUEST +23:46:12 Received From : +23:46:12 ============================================================================ +23:46:12 FNo. Len. Field Value +23:46:12 ============================================================================ +23:46:12 [ 1] [ 4] [0800] +23:46:12 [ 7] [ 10] [0320044520] +23:46:12 [ 11] [ 6] [159146] +23:46:12 [ 70] [ 3] [301] +23:46:12 ============================================================================ +23:46:12 + + +waiting on router queue for slot.... +23:46:12 Sending to : +23:46:12 ============================================================================ +23:46:12 ============================================================================ +23:46:12 Slot Id : <248> +23:46:12 Transaction Type : RESPONSE +23:46:12 Received From : +23:46:12 ============================================================================ +23:46:12 FNo. Len. Field Value +23:46:12 ============================================================================ +23:46:12 [ 1] [ 4] [0810] +23:46:12 [ 7] [ 10] [0320044520] +23:46:12 [ 11] [ 6] [159146] +23:46:12 [ 39] [ 2] [00] +23:46:12 [ 70] [ 3] [301] +23:46:12 ============================================================================ +23:46:12 Calculate Source COMM Id = 2 +23:46:12 ============================================================================ +23:46:12 + + +waiting on router queue for slot.... +23:46:21 ============================================================================ +23:46:21 Slot Id : <251> +23:46:21 Transaction Type : REQUEST +23:46:21 Received From : +23:46:21 ============================================================================ +23:46:21 FNo. Len. Field Value +23:46:21 ============================================================================ +23:46:21 [ 1] [ 4] [0800] +23:46:21 [ 7] [ 10] [0320164412] +23:46:21 [ 11] [ 6] [065278] +23:46:21 [ 37] [ 12] [57923065278] +23:46:21 [ 70] [ 3] [301] +23:46:21 ============================================================================ +23:46:21 + + +waiting on router queue for slot.... +23:46:21 Sending to : +23:46:21 ============================================================================ +23:46:21 ============================================================================ +23:46:21 Slot Id : <251> +23:46:21 Transaction Type : RESPONSE +23:46:21 Received From : +23:46:21 ============================================================================ +23:46:21 FNo. Len. Field Value +23:46:21 ============================================================================ +23:46:21 [ 1] [ 4] [0810] +23:46:21 [ 7] [ 10] [0320164412] +23:46:21 [ 11] [ 6] [065278] +23:46:21 [ 37] [ 12] [579230652780] +23:46:21 [ 39] [ 2] [00] +23:46:21 [ 70] [ 3] [810] +23:46:21 ============================================================================ +23:46:21 Calculate Source COMM Id = 4 +23:46:21 ============================================================================ +23:46:21 + + +waiting on router queue for slot.... +23:46:22 ============================================================================ +23:46:22 Slot Id : <255> +23:46:22 Transaction Type : REQUEST +23:46:22 Received From : +23:46:22 ============================================================================ +23:46:22 FNo. Len. Field Value +23:46:22 ============================================================================ +23:46:22 [ 1] [ 4] [0800] +23:46:22 [ 7] [ 10] [0320044530] +23:46:22 [ 11] [ 6] [159147] +23:46:22 [ 70] [ 3] [301] +23:46:22 ============================================================================ +23:46:22 + + +waiting on router queue for slot.... +23:46:22 Sending to : +23:46:22 ============================================================================ +23:46:22 ============================================================================ +23:46:22 Slot Id : <255> +23:46:22 Transaction Type : RESPONSE +23:46:22 Received From : +23:46:22 ============================================================================ +23:46:22 FNo. Len. Field Value +23:46:22 ============================================================================ +23:46:22 [ 1] [ 4] [0810] +23:46:22 [ 7] [ 10] [0320044530] +23:46:22 [ 11] [ 6] [159147] +23:46:22 [ 39] [ 2] [00] +23:46:22 [ 70] [ 3] [301] +23:46:22 ============================================================================ +23:46:22 Calculate Source COMM Id = 2 +23:46:22 ============================================================================ +23:46:22 + + +waiting on router queue for slot.... +23:46:34 ============================================================================ +23:46:34 Slot Id : <242> +23:46:34 Transaction Type : REQUEST +23:46:34 Received From : +23:46:34 ============================================================================ +23:46:34 FNo. Len. Field Value +23:46:34 ============================================================================ +23:46:34 [ 1] [ 4] [0800] +23:46:34 [ 7] [ 10] [0320044541] +23:46:34 [ 11] [ 6] [159148] +23:46:34 [ 70] [ 3] [301] +23:46:34 ============================================================================ +23:46:34 + + +waiting on router queue for slot.... +23:46:34 Sending to : +23:46:34 ============================================================================ +23:46:34 ============================================================================ +23:46:34 Slot Id : <242> +23:46:34 Transaction Type : RESPONSE +23:46:34 Received From : +23:46:34 ============================================================================ +23:46:34 FNo. Len. Field Value +23:46:34 ============================================================================ +23:46:34 [ 1] [ 4] [0810] +23:46:34 [ 7] [ 10] [0320044541] +23:46:34 [ 11] [ 6] [159148] +23:46:34 [ 39] [ 2] [00] +23:46:34 [ 70] [ 3] [301] +23:46:34 ============================================================================ +23:46:34 Calculate Source COMM Id = 2 +23:46:34 ============================================================================ +23:46:34 + + +waiting on router queue for slot.... +23:46:40 ============================================================================ +23:46:40 Slot Id : <250> +23:46:40 Transaction Type : REQUEST +23:46:40 Received From : +23:46:40 ============================================================================ +23:46:40 FNo. Len. Field Value +23:46:40 ============================================================================ +23:46:40 [ 1] [ 4] [0800] +23:46:40 [ 2] [ 5] [02531] +23:46:40 [ 3] [ 6] [579238] +23:46:40 [ 7] [ 10] [0320164640] +23:46:40 [ 11] [ 6] [807792] +23:46:40 [ 15] [ 10] [0320164640] +23:46:40 [ 37] [ 11] [57923807792] +23:46:40 [ 70] [ 3] [001] +23:46:40 ============================================================================ +23:46:40 + + +waiting on router queue for slot.... +23:46:40 ============================================================================ +23:46:40 Slot Id : <250> +23:46:40 Transaction Type : RESPONSE +23:46:40 Received From : +23:46:40 ============================================================================ +23:46:40 FNo. Len. Field Value +23:46:40 ============================================================================ +23:46:40 [ 1] [ 4] [0810] +23:46:40 [ 7] [ 10] [0320164640] +23:46:40 [ 11] [ 6] [807792] +23:46:40 [ 15] [ 4] [0320] +23:46:40 [ 37] [ 12] [57923807792] +23:46:40 [ 39] [ 2] [00] +23:46:40 [ 70] [ 3] [001] +23:46:40 ============================================================================ +23:46:40 Sending to : +23:46:40 ============================================================================ +23:46:40 + + +waiting on router queue for slot.... +23:46:49 ============================================================================ +23:46:49 Slot Id : <243> +23:46:49 Transaction Type : REQUEST +23:46:49 Received From : +23:46:49 ============================================================================ +23:46:49 FNo. Len. Field Value +23:46:49 ============================================================================ +23:46:49 [ 1] [ 4] [0800] +23:46:49 [ 7] [ 10] [0320044557] +23:46:49 [ 11] [ 6] [159149] +23:46:49 [ 70] [ 3] [301] +23:46:49 ============================================================================ +23:46:49 + + +waiting on router queue for slot.... +23:46:49 Sending to : +23:46:49 ============================================================================ +23:46:49 ============================================================================ +23:46:49 Slot Id : <243> +23:46:49 Transaction Type : RESPONSE +23:46:49 Received From : +23:46:49 ============================================================================ +23:46:49 FNo. Len. Field Value +23:46:49 ============================================================================ +23:46:49 [ 1] [ 4] [0810] +23:46:49 [ 7] [ 10] [0320044557] +23:46:49 [ 11] [ 6] [159149] +23:46:49 [ 39] [ 2] [00] +23:46:49 [ 70] [ 3] [301] +23:46:49 ============================================================================ +23:46:49 Calculate Source COMM Id = 2 +23:46:49 ============================================================================ +23:46:49 + + +waiting on router queue for slot.... +23:47:00 ============================================================================ +23:47:00 Slot Id : <177> +23:47:00 Transaction Type : REQUEST +23:47:00 Received From : +23:47:00 ============================================================================ +23:47:00 FNo. Len. Field Value +23:47:00 ============================================================================ +23:47:00 [ 1] [ 4] [0800] +23:47:00 [ 7] [ 10] [0320044608] +23:47:00 [ 11] [ 6] [159150] +23:47:00 [ 70] [ 3] [301] +23:47:00 ============================================================================ +23:47:00 + + +waiting on router queue for slot.... +23:47:00 Sending to : +23:47:00 ============================================================================ +23:47:00 ============================================================================ +23:47:00 Slot Id : <177> +23:47:00 Transaction Type : RESPONSE +23:47:00 Received From : +23:47:00 ============================================================================ +23:47:00 FNo. Len. Field Value +23:47:00 ============================================================================ +23:47:00 [ 1] [ 4] [0810] +23:47:00 [ 7] [ 10] [0320044608] +23:47:00 [ 11] [ 6] [159150] +23:47:00 [ 39] [ 2] [00] +23:47:00 [ 70] [ 3] [301] +23:47:00 ============================================================================ +23:47:00 Calculate Source COMM Id = 2 +23:47:00 ============================================================================ +23:47:00 + + +waiting on router queue for slot.... +23:47:03 ============================================================================ +23:47:03 Slot Id : <226> +23:47:03 Transaction Type : REQUEST +23:47:03 Received From : +23:47:03 ============================================================================ +23:47:03 FNo. Len. Field Value +23:47:03 ============================================================================ +23:47:03 [ 1] [ 4] [0800] +23:47:03 [ 7] [ 10] [0321065853] +23:47:03 [ 11] [ 6] [235853] +23:47:03 [ 37] [ 12] [57923235853] +23:47:03 [ 70] [ 3] [301] +23:47:03 ============================================================================ +23:47:03 + + +waiting on router queue for slot.... +23:47:03 Sending to : +23:47:03 ============================================================================ +23:47:03 ============================================================================ +23:47:03 Slot Id : <226> +23:47:03 Transaction Type : RESPONSE +23:47:03 Received From : +23:47:03 ============================================================================ +23:47:03 FNo. Len. Field Value +23:47:03 ============================================================================ +23:47:03 [ 1] [ 4] [0810] +23:47:03 [ 7] [ 10] [0321065853] +23:47:03 [ 11] [ 6] [235853] +23:47:03 [ 37] [ 12] [579232358530] +23:47:03 [ 39] [ 2] [00] +23:47:03 [ 70] [ 3] [810] +23:47:03 ============================================================================ +23:47:03 Calculate Source COMM Id = 6 +23:47:03 ============================================================================ +23:47:03 + + +waiting on router queue for slot.... +23:47:15 ============================================================================ +23:47:15 Slot Id : <233> +23:47:15 Transaction Type : REQUEST +23:47:15 Received From : +23:47:15 ============================================================================ +23:47:15 FNo. Len. Field Value +23:47:15 ============================================================================ +23:47:15 [ 1] [ 4] [0800] +23:47:15 [ 7] [ 10] [0320044623] +23:47:15 [ 11] [ 6] [159151] +23:47:15 [ 70] [ 3] [301] +23:47:15 ============================================================================ +23:47:15 + + +waiting on router queue for slot.... +23:47:15 Sending to : +23:47:15 ============================================================================ +23:47:15 ============================================================================ +23:47:15 Slot Id : <233> +23:47:15 Transaction Type : RESPONSE +23:47:15 Received From : +23:47:15 ============================================================================ +23:47:15 FNo. Len. Field Value +23:47:15 ============================================================================ +23:47:15 [ 1] [ 4] [0810] +23:47:15 [ 7] [ 10] [0320044623] +23:47:15 [ 11] [ 6] [159151] +23:47:15 [ 39] [ 2] [00] +23:47:15 [ 70] [ 3] [301] +23:47:15 ============================================================================ +23:47:15 Calculate Source COMM Id = 2 +23:47:15 ============================================================================ +23:47:15 + + +waiting on router queue for slot.... +23:47:26 ============================================================================ +23:47:26 Slot Id : <237> +23:47:26 Transaction Type : REQUEST +23:47:26 Received From : +23:47:26 ============================================================================ +23:47:26 FNo. Len. Field Value +23:47:26 ============================================================================ +23:47:26 [ 1] [ 4] [0800] +23:47:26 [ 7] [ 10] [0320044634] +23:47:26 [ 11] [ 6] [159152] +23:47:26 [ 70] [ 3] [301] +23:47:26 ============================================================================ +23:47:26 + + +waiting on router queue for slot.... +23:47:26 Sending to : +23:47:26 ============================================================================ +23:47:26 ============================================================================ +23:47:26 Slot Id : <237> +23:47:26 Transaction Type : RESPONSE +23:47:26 Received From : +23:47:26 ============================================================================ +23:47:26 FNo. Len. Field Value +23:47:26 ============================================================================ +23:47:26 [ 1] [ 4] [0810] +23:47:26 [ 7] [ 10] [0320044634] +23:47:26 [ 11] [ 6] [159152] +23:47:26 [ 39] [ 2] [00] +23:47:26 [ 70] [ 3] [301] +23:47:26 ============================================================================ +23:47:26 Calculate Source COMM Id = 2 +23:47:26 ============================================================================ +23:47:26 + + +waiting on router queue for slot.... +23:47:36 ============================================================================ +23:47:36 Slot Id : <260> +23:47:36 Transaction Type : REQUEST +23:47:36 Received From : +23:47:36 ============================================================================ +23:47:36 FNo. Len. Field Value +23:47:36 ============================================================================ +23:47:36 [ 1] [ 4] [0800] +23:47:36 [ 7] [ 10] [0320044644] +23:47:36 [ 11] [ 6] [159153] +23:47:36 [ 70] [ 3] [301] +23:47:36 ============================================================================ +23:47:36 + + +waiting on router queue for slot.... +23:47:36 Sending to : +23:47:36 ============================================================================ +23:47:36 ============================================================================ +23:47:36 Slot Id : <260> +23:47:36 Transaction Type : RESPONSE +23:47:36 Received From : +23:47:36 ============================================================================ +23:47:36 FNo. Len. Field Value +23:47:36 ============================================================================ +23:47:36 [ 1] [ 4] [0810] +23:47:36 [ 7] [ 10] [0320044644] +23:47:36 [ 11] [ 6] [159153] +23:47:36 [ 39] [ 2] [00] +23:47:36 [ 70] [ 3] [301] +23:47:36 ============================================================================ +23:47:36 Calculate Source COMM Id = 2 +23:47:36 ============================================================================ +23:47:36 + + +waiting on router queue for slot.... +23:47:42 ============================================================================ +23:47:42 Slot Id : <253> +23:47:42 Transaction Type : REQUEST +23:47:42 Received From : +23:47:42 ============================================================================ +23:47:42 FNo. Len. Field Value +23:47:42 ============================================================================ +23:47:42 [ 1] [ 4] [0800] +23:47:42 [ 2] [ 5] [02531] +23:47:42 [ 3] [ 6] [579238] +23:47:42 [ 7] [ 10] [0320164742] +23:47:42 [ 11] [ 6] [807793] +23:47:42 [ 15] [ 10] [0320164742] +23:47:42 [ 37] [ 11] [57923807793] +23:47:42 [ 70] [ 3] [001] +23:47:42 ============================================================================ +23:47:42 + + +waiting on router queue for slot.... +23:47:42 ============================================================================ +23:47:42 Slot Id : <253> +23:47:42 Transaction Type : RESPONSE +23:47:42 Received From : +23:47:42 ============================================================================ +23:47:42 FNo. Len. Field Value +23:47:42 ============================================================================ +23:47:42 [ 1] [ 4] [0810] +23:47:42 [ 7] [ 10] [0320164742] +23:47:42 [ 11] [ 6] [807793] +23:47:42 [ 15] [ 4] [0320] +23:47:42 [ 37] [ 12] [57923807793] +23:47:42 [ 39] [ 2] [00] +23:47:42 [ 70] [ 3] [001] +23:47:42 ============================================================================ +23:47:42 Sending to : +23:47:42 ============================================================================ +23:47:42 + + +waiting on router queue for slot.... +23:47:49 ============================================================================ +23:47:49 Slot Id : <234> +23:47:49 Transaction Type : REQUEST +23:47:49 Received From : +23:47:49 ============================================================================ +23:47:49 FNo. Len. Field Value +23:47:49 ============================================================================ +23:47:49 [ 1] [ 4] [0800] +23:47:49 [ 7] [ 10] [0320044655] +23:47:49 [ 11] [ 6] [159154] +23:47:49 [ 70] [ 3] [301] +23:47:49 ============================================================================ +23:47:49 + + +waiting on router queue for slot.... +23:47:49 Sending to : +23:47:49 ============================================================================ +23:47:49 ============================================================================ +23:47:49 Slot Id : <234> +23:47:49 Transaction Type : RESPONSE +23:47:49 Received From : +23:47:49 ============================================================================ +23:47:49 FNo. Len. Field Value +23:47:49 ============================================================================ +23:47:49 [ 1] [ 4] [0810] +23:47:49 [ 7] [ 10] [0320044655] +23:47:49 [ 11] [ 6] [159154] +23:47:49 [ 39] [ 2] [00] +23:47:49 [ 70] [ 3] [301] +23:47:49 ============================================================================ +23:47:49 Calculate Source COMM Id = 2 +23:47:49 ============================================================================ +23:47:49 + + +waiting on router queue for slot.... +23:48:03 ============================================================================ +23:48:03 Slot Id : <238> +23:48:03 Transaction Type : REQUEST +23:48:03 Received From : +23:48:03 ============================================================================ +23:48:03 FNo. Len. Field Value +23:48:03 ============================================================================ +23:48:03 [ 1] [ 4] [0800] +23:48:03 [ 7] [ 10] [0320044711] +23:48:03 [ 11] [ 6] [159155] +23:48:03 [ 70] [ 3] [301] +23:48:03 ============================================================================ +23:48:03 + + +waiting on router queue for slot.... +23:48:03 Sending to : +23:48:03 ============================================================================ +23:48:03 ============================================================================ +23:48:03 Slot Id : <238> +23:48:03 Transaction Type : RESPONSE +23:48:03 Received From : +23:48:03 ============================================================================ +23:48:03 FNo. Len. Field Value +23:48:03 ============================================================================ +23:48:03 [ 1] [ 4] [0810] +23:48:03 [ 7] [ 10] [0320044711] +23:48:03 [ 11] [ 6] [159155] +23:48:03 [ 39] [ 2] [00] +23:48:03 [ 70] [ 3] [301] +23:48:03 ============================================================================ +23:48:03 Calculate Source COMM Id = 2 +23:48:03 ============================================================================ +23:48:03 + + +waiting on router queue for slot.... +23:48:08 ============================================================================ +23:48:08 Slot Id : <200> +23:48:08 Transaction Type : REQUEST +23:48:08 Received From : +23:48:08 ============================================================================ +23:48:08 FNo. Len. Field Value +23:48:08 ============================================================================ +23:48:08 [ 1] [ 4] [0800] +23:48:08 [ 7] [ 10] [0321065958] +23:48:08 [ 11] [ 6] [235958] +23:48:08 [ 37] [ 12] [57923235958] +23:48:08 [ 70] [ 3] [301] +23:48:08 ============================================================================ +23:48:08 + + +waiting on router queue for slot.... +23:48:08 Sending to : +23:48:08 ============================================================================ +23:48:08 ============================================================================ +23:48:08 Slot Id : <200> +23:48:08 Transaction Type : RESPONSE +23:48:08 Received From : +23:48:08 ============================================================================ +23:48:08 FNo. Len. Field Value +23:48:08 ============================================================================ +23:48:08 [ 1] [ 4] [0810] +23:48:08 [ 7] [ 10] [0321065958] +23:48:08 [ 11] [ 6] [235958] +23:48:08 [ 37] [ 12] [579232359580] +23:48:08 [ 39] [ 2] [00] +23:48:08 [ 70] [ 3] [810] +23:48:08 ============================================================================ +23:48:08 Calculate Source COMM Id = 6 +23:48:08 ============================================================================ +23:48:08 + + +waiting on router queue for slot.... +23:48:14 ============================================================================ +23:48:14 Slot Id : <216> +23:48:14 Transaction Type : REQUEST +23:48:14 Received From : +23:48:14 ============================================================================ +23:48:14 FNo. Len. Field Value +23:48:14 ============================================================================ +23:48:14 [ 1] [ 4] [0800] +23:48:14 [ 7] [ 10] [0320044722] +23:48:14 [ 11] [ 6] [159156] +23:48:14 [ 70] [ 3] [301] +23:48:14 ============================================================================ +23:48:14 + + +waiting on router queue for slot.... +23:48:14 Sending to : +23:48:14 ============================================================================ +23:48:14 ============================================================================ +23:48:14 Slot Id : <216> +23:48:14 Transaction Type : RESPONSE +23:48:14 Received From : +23:48:14 ============================================================================ +23:48:14 FNo. Len. Field Value +23:48:14 ============================================================================ +23:48:14 [ 1] [ 4] [0810] +23:48:14 [ 7] [ 10] [0320044722] +23:48:14 [ 11] [ 6] [159156] +23:48:14 [ 39] [ 2] [00] +23:48:14 [ 70] [ 3] [301] +23:48:14 ============================================================================ +23:48:14 Calculate Source COMM Id = 2 +23:48:14 ============================================================================ +23:48:14 + + +waiting on router queue for slot.... +23:48:19 ============================================================================ +23:48:19 Slot Id : <259> +23:48:19 Transaction Type : REQUEST +23:48:19 Received From : +23:48:19 ============================================================================ +23:48:19 FNo. Len. Field Value +23:48:19 ============================================================================ +23:48:19 [ 1] [ 4] [0800] +23:48:19 [ 7] [ 10] [0320234807] +23:48:19 [ 11] [ 6] [066063] +23:48:19 [ 37] [ 12] [507923066063] +23:48:19 [ 70] [ 3] [ ] +23:48:19 ============================================================================ +23:48:19 + + +waiting on router queue for slot.... +23:48:19 Sending to : +23:48:19 ============================================================================ +23:48:19 ============================================================================ +23:48:19 Slot Id : <259> +23:48:19 Transaction Type : RESPONSE +23:48:19 Received From : +23:48:19 ============================================================================ +23:48:19 FNo. Len. Field Value +23:48:19 ============================================================================ +23:48:19 [ 1] [ 4] [0810] +23:48:19 [ 7] [ 10] [0320234807] +23:48:19 [ 11] [ 6] [066063] +23:48:19 [ 37] [ 12] [507923066063] +23:48:19 [ 39] [ 2] [91] +23:48:19 [ 70] [ 3] [ ] +23:48:19 ============================================================================ +23:48:19 Calculate Source COMM Id = 3 +23:48:19 ============================================================================ +23:48:19 + + +waiting on router queue for slot.... +23:48:25 ============================================================================ +23:48:25 Slot Id : <210> +23:48:25 Transaction Type : REQUEST +23:48:25 Received From : +23:48:25 ============================================================================ +23:48:25 FNo. Len. Field Value +23:48:25 ============================================================================ +23:48:25 [ 1] [ 4] [0800] +23:48:25 [ 7] [ 10] [0320044733] +23:48:25 [ 11] [ 6] [159157] +23:48:25 [ 70] [ 3] [301] +23:48:25 ============================================================================ +23:48:25 + + +waiting on router queue for slot.... +23:48:25 Sending to : +23:48:25 ============================================================================ +23:48:25 ============================================================================ +23:48:25 Slot Id : <210> +23:48:25 Transaction Type : RESPONSE +23:48:25 Received From : +23:48:25 ============================================================================ +23:48:25 FNo. Len. Field Value +23:48:25 ============================================================================ +23:48:25 [ 1] [ 4] [0810] +23:48:25 [ 7] [ 10] [0320044733] +23:48:25 [ 11] [ 6] [159157] +23:48:25 [ 39] [ 2] [00] +23:48:25 [ 70] [ 3] [301] +23:48:25 ============================================================================ +23:48:25 Calculate Source COMM Id = 2 +23:48:25 ============================================================================ +23:48:25 + + +waiting on router queue for slot.... +23:48:40 ============================================================================ +23:48:40 Slot Id : <249> +23:48:40 Transaction Type : REQUEST +23:48:40 Received From : +23:48:40 ============================================================================ +23:48:40 FNo. Len. Field Value +23:48:40 ============================================================================ +23:48:40 [ 1] [ 4] [0200] +23:48:40 [ 2] [ 16] [6688990050031101] +23:48:40 [ 3] [ 6] [010000] +23:48:40 [ 4] [ 12] [000010000000] +23:48:40 [ 7] [ 10] [0320234836] +23:48:40 [ 11] [ 6] [849724] +23:48:40 [ 12] [ 6] [234836] +23:48:40 [ 13] [ 4] [0320] +23:48:40 [ 15] [ 4] [0320] +23:48:40 [ 18] [ 4] [6011] +23:48:40 [ 22] [ 3] [900] +23:48:40 [ 25] [ 2] [02] +23:48:40 [ 28] [ 9] [D00002000] +23:48:40 [ 32] [ 6] [621354] +23:48:40 [ 35] [ 37] [6688990050031101=98021261460130000000] +23:48:40 [ 37] [ 12] [507903040725] +23:48:40 [ 41] [ 8] [01008400] +23:48:40 [ 42] [ 15] [NATIVE ] +23:48:40 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +23:48:40 [ 49] [ 3] [418] +23:48:40 [ 52] [ 16] [44DE9A4AA6879081] +23:48:40 ============================================================================ +23:48:40 + + +waiting on router queue for slot.... +23:48:40 Sending to : +23:48:40 ============================================================================ +23:48:40 Sending to : +23:48:40 ============================================================================ +23:48:40 ============================================================================ +23:48:40 Slot Id : <249> +23:48:40 Transaction Type : REQUEST +23:48:40 Received From : +23:48:40 ============================================================================ +23:48:40 FNo. Len. Field Value +23:48:40 ============================================================================ +23:48:40 [ 1] [ 4] [0200] +23:48:40 [ 2] [ 16] [6688990050031101] +23:48:40 [ 3] [ 6] [010000] +23:48:40 [ 4] [ 12] [000010000000] +23:48:40 [ 7] [ 10] [0320234836] +23:48:40 [ 11] [ 6] [849724] +23:48:40 [ 12] [ 6] [234836] +23:48:40 [ 13] [ 4] [0320] +23:48:40 [ 15] [ 4] [0320] +23:48:40 [ 18] [ 4] [6011] +23:48:40 [ 22] [ 3] [900] +23:48:40 [ 25] [ 2] [02] +23:48:40 [ 28] [ 9] [D00002000] +23:48:40 [ 32] [ 6] [621354] +23:48:40 [ 35] [ 37] [6688990050031101=98021261460130000000] +23:48:40 [ 37] [ 12] [507903040725] +23:48:40 [ 41] [ 8] [01008400] +23:48:40 [ 42] [ 15] [NATIVE ] +23:48:40 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +23:48:40 [ 49] [ 3] [418] +23:48:40 [ 52] [ 16] [44DE9A4AA6879081] +23:48:40 ============================================================================ +23:48:40 + + +waiting on router queue for slot.... +23:48:40 Sending to : +23:48:40 ============================================================================ +23:48:40 ============================================================================ +23:48:40 Slot Id : <249> +23:48:40 Transaction Type : REQUEST +23:48:40 Received From : +23:48:40 ============================================================================ +23:48:40 FNo. Len. Field Value +23:48:40 ============================================================================ +23:48:40 [ 1] [ 4] [0200] +23:48:40 [ 2] [ 16] [6688990050031101] +23:48:40 [ 3] [ 6] [010000] +23:48:40 [ 4] [ 12] [000010000000] +23:48:40 [ 7] [ 10] [0320234836] +23:48:40 [ 11] [ 6] [849724] +23:48:40 [ 12] [ 6] [234836] +23:48:40 [ 13] [ 4] [0320] +23:48:40 [ 15] [ 4] [0320] +23:48:40 [ 18] [ 4] [6011] +23:48:40 [ 22] [ 3] [900] +23:48:40 [ 25] [ 2] [02] +23:48:40 [ 28] [ 9] [D00002000] +23:48:40 [ 32] [ 6] [621354] +23:48:40 [ 35] [ 37] [6688990050031101=98021261460130000000] +23:48:40 [ 37] [ 12] [507903040725] +23:48:40 [ 41] [ 8] [01008400] +23:48:40 [ 42] [ 15] [NATIVE ] +23:48:40 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +23:48:40 [ 49] [ 3] [418] +23:48:40 [ 52] [ 16] [0A7D885E8476E991] +23:48:40 ============================================================================ +23:48:40 + + +waiting on router queue for slot.... +23:48:40 Sending to : <4> +23:48:40 ============================================================================ +23:48:41 ============================================================================ +23:48:41 Slot Id : <263> +23:48:41 Transaction Type : REQUEST +23:48:41 Received From : +23:48:41 ============================================================================ +23:48:41 FNo. Len. Field Value +23:48:41 ============================================================================ +23:48:41 [ 1] [ 4] [0200] +23:48:41 [ 2] [ 16] [1808930200019768] +23:48:41 [ 3] [ 6] [011000] +23:48:41 [ 4] [ 12] [000010000000] +23:48:41 [ 7] [ 10] [0320234837] +23:48:41 [ 11] [ 6] [849725] +23:48:41 [ 12] [ 6] [234837] +23:48:41 [ 13] [ 4] [0320] +23:48:41 [ 15] [ 4] [0320] +23:48:41 [ 18] [ 4] [6011] +23:48:41 [ 22] [ 3] [900] +23:48:41 [ 25] [ 2] [02] +23:48:41 [ 28] [ 9] [D00002000] +23:48:41 [ 32] [ 6] [621354] +23:48:41 [ 35] [ 27] [1808930200019768=1803500115] +23:48:41 [ 37] [ 12] [507903640801] +23:48:41 [ 41] [ 8] [16001700] +23:48:41 [ 42] [ 15] [NATIVE ] +23:48:41 [ 43] [ 40] [NOUL Unit Xaythany LAO] +23:48:41 [ 49] [ 3] [418] +23:48:41 [ 52] [ 16] [1E2036A6BE9365CA] +23:48:41 ============================================================================ +23:48:41 + + +waiting on router queue for slot.... +23:48:41 Sending to : +23:48:41 ============================================================================ +23:48:41 Sending to : +23:48:41 ============================================================================ +23:48:41 ============================================================================ +23:48:41 Slot Id : <261> +23:48:41 Transaction Type : REQUEST +23:48:41 Received From : +23:48:41 ============================================================================ +23:48:41 FNo. Len. Field Value +23:48:41 ============================================================================ +23:48:41 [ 1] [ 4] [0800] +23:48:41 [ 7] [ 10] [0320044749] +23:48:41 [ 11] [ 6] [159158] +23:48:41 [ 70] [ 3] [301] +23:48:41 ============================================================================ +23:48:41 + + +waiting on router queue for slot.... +23:48:41 Sending to : +23:48:41 ============================================================================ +23:48:41 ============================================================================ +23:48:41 Slot Id : <261> +23:48:41 Transaction Type : RESPONSE +23:48:41 Received From : +23:48:41 ============================================================================ +23:48:41 FNo. Len. Field Value +23:48:41 ============================================================================ +23:48:41 [ 1] [ 4] [0810] +23:48:41 [ 7] [ 10] [0320044749] +23:48:41 [ 11] [ 6] [159158] +23:48:41 [ 39] [ 2] [00] +23:48:41 [ 70] [ 3] [301] +23:48:41 ============================================================================ +23:48:41 Calculate Source COMM Id = 2 +23:48:41 ============================================================================ +23:48:41 + + +waiting on router queue for slot.... +23:48:41 ============================================================================ +23:48:41 Slot Id : <263> +23:48:41 Transaction Type : REQUEST +23:48:41 Received From : +23:48:41 ============================================================================ +23:48:41 FNo. Len. Field Value +23:48:41 ============================================================================ +23:48:41 [ 1] [ 4] [0200] +23:48:41 [ 2] [ 16] [1808930200019768] +23:48:41 [ 3] [ 6] [011000] +23:48:41 [ 4] [ 12] [000010000000] +23:48:41 [ 7] [ 10] [0320234837] +23:48:41 [ 11] [ 6] [849725] +23:48:41 [ 12] [ 6] [234837] +23:48:41 [ 13] [ 4] [0320] +23:48:41 [ 15] [ 4] [0320] +23:48:41 [ 18] [ 4] [6011] +23:48:41 [ 22] [ 3] [900] +23:48:41 [ 25] [ 2] [02] +23:48:41 [ 28] [ 9] [D00002000] +23:48:41 [ 32] [ 6] [621354] +23:48:41 [ 35] [ 27] [1808930200019768=1803500115] +23:48:41 [ 37] [ 12] [507903640801] +23:48:41 [ 41] [ 8] [16001700] +23:48:41 [ 42] [ 15] [NATIVE ] +23:48:41 [ 43] [ 40] [NOUL Unit Xaythany LAO] +23:48:41 [ 49] [ 3] [418] +23:48:41 [ 52] [ 16] [1E2036A6BE9365CA] +23:48:41 ============================================================================ +23:48:41 + + +waiting on router queue for slot.... +23:48:41 Sending to : +23:48:41 ============================================================================ +23:48:41 ============================================================================ +23:48:41 Slot Id : <263> +23:48:41 Transaction Type : REQUEST +23:48:41 Received From : +23:48:41 ============================================================================ +23:48:41 FNo. Len. Field Value +23:48:41 ============================================================================ +23:48:41 [ 1] [ 4] [0200] +23:48:41 [ 2] [ 16] [1808930200019768] +23:48:41 [ 3] [ 6] [011000] +23:48:41 [ 4] [ 12] [000010000000] +23:48:41 [ 7] [ 10] [0320234837] +23:48:41 [ 11] [ 6] [849725] +23:48:41 [ 12] [ 6] [234837] +23:48:41 [ 13] [ 4] [0320] +23:48:41 [ 15] [ 4] [0320] +23:48:41 [ 18] [ 4] [6011] +23:48:41 [ 22] [ 3] [900] +23:48:41 [ 25] [ 2] [02] +23:48:41 [ 28] [ 9] [D00002000] +23:48:41 [ 32] [ 6] [621354] +23:48:41 [ 35] [ 27] [1808930200019768=1803500115] +23:48:41 [ 37] [ 12] [507903640801] +23:48:41 [ 41] [ 8] [16001700] +23:48:41 [ 42] [ 15] [NATIVE ] +23:48:41 [ 43] [ 40] [NOUL Unit Xaythany LAO] +23:48:41 [ 49] [ 3] [418] +23:48:41 [ 52] [ 16] [1F11DC52B5997ABE] +23:48:41 ============================================================================ +23:48:41 + + +waiting on router queue for slot.... +23:48:41 Sending to : <2> +23:48:41 ============================================================================ +23:48:42 ============================================================================ +23:48:42 Slot Id : <249> +23:48:42 Transaction Type : RESPONSE +23:48:42 Received From : +23:48:42 ============================================================================ +23:48:42 FNo. Len. Field Value +23:48:42 ============================================================================ +23:48:42 [ 1] [ 4] [0210] +23:48:42 [ 2] [ 16] [6688990050031101] +23:48:42 [ 3] [ 6] [010000] +23:48:42 [ 4] [ 12] [000010000000] +23:48:42 [ 11] [ 6] [849724] +23:48:42 [ 12] [ 6] [234836] +23:48:42 [ 15] [ 4] [0320] +23:48:42 [ 18] [ 4] [6011] +23:48:42 [ 32] [ 6] [621354] +23:48:42 [ 35] [ 37] [6688990050031101=98021261460130000000] +23:48:42 [ 37] [ 12] [507903040725] +23:48:42 [ 38] [ 6] [121241] +23:48:42 [ 39] [ 2] [00] +23:48:42 [ 41] [ 8] [01008400] +23:48:42 [ 49] [ 3] [418] +23:48:42 [ 54] [ 20] [0002418C000066901375] +23:48:42 ============================================================================ +23:48:42 Sending to : +23:48:42 ============================================================================ +23:48:42 + + +waiting on router queue for slot.... +23:48:43 ============================================================================ +23:48:43 Slot Id : <249> +23:48:43 Transaction Type : RESPONSE +23:48:43 Received From : +23:48:43 ============================================================================ +23:48:43 FNo. Len. Field Value +23:48:43 ============================================================================ +23:48:43 [ 1] [ 4] [0210] +23:48:43 [ 2] [ 16] [6688990050031101] +23:48:43 [ 3] [ 6] [010000] +23:48:43 [ 4] [ 12] [000010000000] +23:48:43 [ 11] [ 6] [849724] +23:48:43 [ 12] [ 6] [234836] +23:48:43 [ 15] [ 4] [0320] +23:48:43 [ 18] [ 4] [6011] +23:48:43 [ 32] [ 6] [621354] +23:48:43 [ 35] [ 37] [6688990050031101=98021261460130000000] +23:48:43 [ 37] [ 12] [507903040725] +23:48:43 [ 38] [ 6] [121241] +23:48:43 [ 39] [ 2] [00] +23:48:43 [ 41] [ 8] [01008400] +23:48:43 [ 49] [ 3] [418] +23:48:43 [ 54] [ 20] [0002418C000066901375] +23:48:43 ============================================================================ +23:48:43 Calculate Source COMM Id = 0 +23:48:43 ============================================================================ +23:48:43 + + +waiting on router queue for slot.... +23:48:44 ============================================================================ +23:48:44 Slot Id : <225> +23:48:44 Transaction Type : REQUEST +23:48:44 Received From : +23:48:44 ============================================================================ +23:48:44 FNo. Len. Field Value +23:48:44 ============================================================================ +23:48:44 [ 1] [ 4] [0800] +23:48:44 [ 2] [ 5] [02531] +23:48:44 [ 3] [ 6] [579238] +23:48:44 [ 7] [ 10] [0320164844] +23:48:44 [ 11] [ 6] [807794] +23:48:44 [ 15] [ 10] [0320164844] +23:48:44 [ 37] [ 11] [57923807794] +23:48:44 [ 70] [ 3] [001] +23:48:44 ============================================================================ +23:48:44 + + +waiting on router queue for slot.... +23:48:44 ============================================================================ +23:48:44 Slot Id : <225> +23:48:44 Transaction Type : RESPONSE +23:48:44 Received From : +23:48:44 ============================================================================ +23:48:44 FNo. Len. Field Value +23:48:44 ============================================================================ +23:48:44 [ 1] [ 4] [0810] +23:48:44 [ 7] [ 10] [0320164844] +23:48:44 [ 11] [ 6] [807794] +23:48:44 [ 15] [ 4] [0320] +23:48:44 [ 37] [ 12] [57923807794] +23:48:44 [ 39] [ 2] [00] +23:48:44 [ 70] [ 3] [001] +23:48:44 ============================================================================ +23:48:44 Sending to : +23:48:44 ============================================================================ +23:48:44 + + +waiting on router queue for slot.... +23:48:45 ============================================================================ +23:48:45 Slot Id : <263> +23:48:45 Transaction Type : RESPONSE +23:48:45 Received From : +23:48:45 ============================================================================ +23:48:45 FNo. Len. Field Value +23:48:45 ============================================================================ +23:48:45 [ 1] [ 4] [0210] +23:48:45 [ 2] [ 16] [1808930200019768] +23:48:45 [ 3] [ 6] [011000] +23:48:45 [ 4] [ 12] [000010000000] +23:48:45 [ 6] [ 12] [000010000000] +23:48:45 [ 7] [ 10] [0320234837] +23:48:45 [ 11] [ 6] [849725] +23:48:45 [ 12] [ 6] [234837] +23:48:45 [ 13] [ 4] [0320] +23:48:45 [ 18] [ 4] [6011] +23:48:45 [ 19] [ 3] [418] +23:48:45 [ 22] [ 3] [021] +23:48:45 [ 32] [ 6] [621354] +23:48:45 [ 35] [ 27] [1808930200019768=1803500115] +23:48:45 [ 37] [ 12] [507903640801] +23:48:45 [ 38] [ 6] [849725] +23:48:45 [ 39] [ 2] [00] +23:48:45 [ 41] [ 8] [16001700] +23:48:45 [ 49] [ 3] [418] +23:48:45 [ 52] [ 16] [1F11DC52B5997ABE] +23:48:45 [ 54] [ 20] [1001418C000054398600] +23:48:45 ============================================================================ +23:48:45 Sending to : +23:48:45 ============================================================================ +23:48:45 + + +waiting on router queue for slot.... +23:48:46 ============================================================================ +23:48:46 Slot Id : <263> +23:48:46 Transaction Type : RESPONSE +23:48:46 Received From : +23:48:46 ============================================================================ +23:48:46 FNo. Len. Field Value +23:48:46 ============================================================================ +23:48:46 [ 1] [ 4] [0210] +23:48:46 [ 2] [ 16] [1808930200019768] +23:48:46 [ 3] [ 6] [011000] +23:48:46 [ 4] [ 12] [000010000000] +23:48:46 [ 6] [ 12] [000010000000] +23:48:46 [ 7] [ 10] [0320234837] +23:48:46 [ 11] [ 6] [849725] +23:48:46 [ 12] [ 6] [234837] +23:48:46 [ 13] [ 4] [0320] +23:48:46 [ 18] [ 4] [6011] +23:48:46 [ 19] [ 3] [418] +23:48:46 [ 22] [ 3] [021] +23:48:46 [ 32] [ 6] [621354] +23:48:46 [ 35] [ 27] [1808930200019768=1803500115] +23:48:46 [ 37] [ 12] [507903640801] +23:48:46 [ 38] [ 6] [849725] +23:48:46 [ 39] [ 2] [00] +23:48:46 [ 41] [ 8] [16001700] +23:48:46 [ 49] [ 3] [418] +23:48:46 [ 52] [ 16] [1F11DC52B5997ABE] +23:48:46 [ 54] [ 20] [1001418C000054398600] +23:48:46 ============================================================================ +23:48:46 Calculate Source COMM Id = 0 +23:48:46 ============================================================================ +23:48:46 + + +waiting on router queue for slot.... +23:48:52 ============================================================================ +23:48:52 Slot Id : <269> +23:48:52 Transaction Type : REQUEST +23:48:52 Received From : +23:48:52 ============================================================================ +23:48:52 FNo. Len. Field Value +23:48:52 ============================================================================ +23:48:52 [ 1] [ 4] [0800] +23:48:52 [ 7] [ 10] [0320044800] +23:48:52 [ 11] [ 6] [159159] +23:48:52 [ 70] [ 3] [301] +23:48:52 ============================================================================ +23:48:52 + + +waiting on router queue for slot.... +23:48:52 Sending to : +23:48:52 ============================================================================ +23:48:52 ============================================================================ +23:48:52 Slot Id : <269> +23:48:52 Transaction Type : RESPONSE +23:48:52 Received From : +23:48:52 ============================================================================ +23:48:52 FNo. Len. Field Value +23:48:52 ============================================================================ +23:48:52 [ 1] [ 4] [0810] +23:48:52 [ 7] [ 10] [0320044800] +23:48:52 [ 11] [ 6] [159159] +23:48:52 [ 39] [ 2] [00] +23:48:52 [ 70] [ 3] [301] +23:48:52 ============================================================================ +23:48:52 Calculate Source COMM Id = 2 +23:48:52 ============================================================================ +23:48:52 + + +waiting on router queue for slot.... +23:49:03 ============================================================================ +23:49:03 Slot Id : <199> +23:49:03 Transaction Type : REQUEST +23:49:03 Received From : +23:49:03 ============================================================================ +23:49:03 FNo. Len. Field Value +23:49:03 ============================================================================ +23:49:03 [ 1] [ 4] [0800] +23:49:03 [ 7] [ 10] [0320044811] +23:49:03 [ 11] [ 6] [159160] +23:49:03 [ 70] [ 3] [301] +23:49:03 ============================================================================ +23:49:03 + + +waiting on router queue for slot.... +23:49:03 Sending to : +23:49:03 ============================================================================ +23:49:03 ============================================================================ +23:49:03 Slot Id : <199> +23:49:03 Transaction Type : RESPONSE +23:49:03 Received From : +23:49:03 ============================================================================ +23:49:03 FNo. Len. Field Value +23:49:03 ============================================================================ +23:49:03 [ 1] [ 4] [0810] +23:49:03 [ 7] [ 10] [0320044811] +23:49:03 [ 11] [ 6] [159160] +23:49:03 [ 39] [ 2] [00] +23:49:03 [ 70] [ 3] [301] +23:49:03 ============================================================================ +23:49:03 Calculate Source COMM Id = 2 +23:49:03 ============================================================================ +23:49:03 + + +waiting on router queue for slot.... +23:49:13 ============================================================================ +23:49:13 Slot Id : <240> +23:49:13 Transaction Type : REQUEST +23:49:13 Received From : +23:49:13 ============================================================================ +23:49:13 FNo. Len. Field Value +23:49:13 ============================================================================ +23:49:13 [ 1] [ 4] [0800] +23:49:13 [ 7] [ 10] [0321070103] +23:49:13 [ 11] [ 6] [000103] +23:49:13 [ 37] [ 12] [58000000103] +23:49:13 [ 70] [ 3] [301] +23:49:13 ============================================================================ +23:49:13 + + +waiting on router queue for slot.... +23:49:13 Sending to : +23:49:13 ============================================================================ +23:49:13 ============================================================================ +23:49:13 Slot Id : <240> +23:49:13 Transaction Type : RESPONSE +23:49:13 Received From : +23:49:13 ============================================================================ +23:49:13 FNo. Len. Field Value +23:49:13 ============================================================================ +23:49:13 [ 1] [ 4] [0810] +23:49:13 [ 7] [ 10] [0321070103] +23:49:13 [ 11] [ 6] [000103] +23:49:13 [ 37] [ 12] [580000001030] +23:49:13 [ 39] [ 2] [00] +23:49:13 [ 70] [ 3] [810] +23:49:13 ============================================================================ +23:49:13 Calculate Source COMM Id = 6 +23:49:13 ============================================================================ +23:49:13 + + +waiting on router queue for slot.... +23:49:13 ============================================================================ +23:49:13 Slot Id : <270> +23:49:13 Transaction Type : REQUEST +23:49:13 Received From : +23:49:13 ============================================================================ +23:49:13 FNo. Len. Field Value +23:49:13 ============================================================================ +23:49:13 [ 1] [ 4] [0800] +23:49:13 [ 7] [ 10] [0320044821] +23:49:13 [ 11] [ 6] [159161] +23:49:13 [ 70] [ 3] [301] +23:49:13 ============================================================================ +23:49:13 + + +waiting on router queue for slot.... +23:49:13 Sending to : +23:49:13 ============================================================================ +23:49:13 ============================================================================ +23:49:13 Slot Id : <270> +23:49:13 Transaction Type : RESPONSE +23:49:13 Received From : +23:49:13 ============================================================================ +23:49:13 FNo. Len. Field Value +23:49:13 ============================================================================ +23:49:13 [ 1] [ 4] [0810] +23:49:13 [ 7] [ 10] [0320044821] +23:49:13 [ 11] [ 6] [159161] +23:49:13 [ 39] [ 2] [00] +23:49:13 [ 70] [ 3] [301] +23:49:13 ============================================================================ +23:49:13 Calculate Source COMM Id = 2 +23:49:13 ============================================================================ +23:49:13 + + +waiting on router queue for slot.... +23:49:29 ============================================================================ +23:49:29 Slot Id : <275> +23:49:29 Transaction Type : REQUEST +23:49:29 Received From : +23:49:29 ============================================================================ +23:49:29 FNo. Len. Field Value +23:49:29 ============================================================================ +23:49:29 [ 1] [ 4] [0800] +23:49:29 [ 7] [ 10] [0320044837] +23:49:29 [ 11] [ 6] [159162] +23:49:29 [ 70] [ 3] [301] +23:49:29 ============================================================================ +23:49:29 + + +waiting on router queue for slot.... +23:49:29 Sending to : +23:49:29 ============================================================================ +23:49:29 ============================================================================ +23:49:29 Slot Id : <275> +23:49:29 Transaction Type : RESPONSE +23:49:29 Received From : +23:49:29 ============================================================================ +23:49:29 FNo. Len. Field Value +23:49:29 ============================================================================ +23:49:29 [ 1] [ 4] [0810] +23:49:29 [ 7] [ 10] [0320044837] +23:49:29 [ 11] [ 6] [159162] +23:49:29 [ 39] [ 2] [00] +23:49:29 [ 70] [ 3] [301] +23:49:29 ============================================================================ +23:49:29 Calculate Source COMM Id = 2 +23:49:29 ============================================================================ +23:49:29 + + +waiting on router queue for slot.... +23:49:46 ============================================================================ +23:49:46 Slot Id : <197> +23:49:46 Transaction Type : REQUEST +23:49:46 Received From : +23:49:46 ============================================================================ +23:49:46 FNo. Len. Field Value +23:49:46 ============================================================================ +23:49:46 [ 1] [ 4] [0800] +23:49:46 [ 2] [ 5] [02531] +23:49:46 [ 3] [ 6] [579238] +23:49:46 [ 7] [ 10] [0320164946] +23:49:46 [ 11] [ 6] [807795] +23:49:46 [ 15] [ 10] [0320164946] +23:49:46 [ 37] [ 11] [57923807795] +23:49:46 [ 70] [ 3] [001] +23:49:46 ============================================================================ +23:49:46 + + +waiting on router queue for slot.... +23:49:46 ============================================================================ +23:49:46 Slot Id : <197> +23:49:46 Transaction Type : RESPONSE +23:49:46 Received From : +23:49:46 ============================================================================ +23:49:46 FNo. Len. Field Value +23:49:46 ============================================================================ +23:49:46 [ 1] [ 4] [0810] +23:49:46 [ 7] [ 10] [0320164946] +23:49:46 [ 11] [ 6] [807795] +23:49:46 [ 15] [ 4] [0320] +23:49:46 [ 37] [ 12] [57923807795] +23:49:46 [ 39] [ 2] [00] +23:49:46 [ 70] [ 3] [001] +23:49:46 ============================================================================ +23:49:46 Sending to : +23:49:46 ============================================================================ +23:49:46 + + +waiting on router queue for slot.... +23:49:47 ============================================================================ +23:49:47 Slot Id : <265> +23:49:47 Transaction Type : REQUEST +23:49:47 Received From : +23:49:47 ============================================================================ +23:49:47 FNo. Len. Field Value +23:49:47 ============================================================================ +23:49:47 [ 1] [ 4] [0800] +23:49:47 [ 7] [ 10] [0320044852] +23:49:47 [ 11] [ 6] [159163] +23:49:47 [ 70] [ 3] [301] +23:49:47 ============================================================================ +23:49:47 + + +waiting on router queue for slot.... +23:49:47 Sending to : +23:49:47 ============================================================================ +23:49:47 ============================================================================ +23:49:47 Slot Id : <265> +23:49:47 Transaction Type : RESPONSE +23:49:47 Received From : +23:49:47 ============================================================================ +23:49:47 FNo. Len. Field Value +23:49:47 ============================================================================ +23:49:47 [ 1] [ 4] [0810] +23:49:47 [ 7] [ 10] [0320044852] +23:49:47 [ 11] [ 6] [159163] +23:49:47 [ 39] [ 2] [00] +23:49:47 [ 70] [ 3] [301] +23:49:47 ============================================================================ +23:49:47 Calculate Source COMM Id = 2 +23:49:47 ============================================================================ +23:49:47 + + +waiting on router queue for slot.... +23:49:55 ============================================================================ +23:49:55 Slot Id : <218> +23:49:55 Transaction Type : REQUEST +23:49:55 Received From : +23:49:55 ============================================================================ +23:49:55 FNo. Len. Field Value +23:49:55 ============================================================================ +23:49:55 [ 1] [ 4] [0800] +23:49:55 [ 7] [ 10] [0320165742] +23:49:55 [ 11] [ 6] [031473] +23:49:55 [ 37] [ 12] [57923031473] +23:49:55 [ 70] [ 3] [301] +23:49:55 ============================================================================ +23:49:55 + + +waiting on router queue for slot.... +23:49:55 Sending to : +23:49:55 ============================================================================ +23:49:55 ============================================================================ +23:49:55 Slot Id : <218> +23:49:55 Transaction Type : RESPONSE +23:49:55 Received From : +23:49:55 ============================================================================ +23:49:55 FNo. Len. Field Value +23:49:55 ============================================================================ +23:49:55 [ 1] [ 4] [0810] +23:49:55 [ 7] [ 10] [0320165742] +23:49:55 [ 11] [ 6] [031473] +23:49:55 [ 37] [ 12] [579230314730] +23:49:55 [ 39] [ 2] [00] +23:49:55 [ 70] [ 3] [810] +23:49:55 ============================================================================ +23:49:55 Calculate Source COMM Id = 1 +23:49:55 ============================================================================ +23:49:55 + + +waiting on router queue for slot.... +23:50:00 ============================================================================ +23:50:00 Slot Id : <247> +23:50:00 Transaction Type : REQUEST +23:50:00 Received From : +23:50:00 ============================================================================ +23:50:00 FNo. Len. Field Value +23:50:00 ============================================================================ +23:50:00 [ 1] [ 4] [0800] +23:50:00 [ 7] [ 10] [0320044908] +23:50:00 [ 11] [ 6] [159164] +23:50:00 [ 70] [ 3] [301] +23:50:00 ============================================================================ +23:50:00 + + +waiting on router queue for slot.... +23:50:00 Sending to : +23:50:00 ============================================================================ +23:50:00 ============================================================================ +23:50:00 Slot Id : <247> +23:50:00 Transaction Type : RESPONSE +23:50:00 Received From : +23:50:00 ============================================================================ +23:50:00 FNo. Len. Field Value +23:50:00 ============================================================================ +23:50:00 [ 1] [ 4] [0810] +23:50:00 [ 7] [ 10] [0320044908] +23:50:00 [ 11] [ 6] [159164] +23:50:00 [ 39] [ 2] [00] +23:50:00 [ 70] [ 3] [301] +23:50:00 ============================================================================ +23:50:00 Calculate Source COMM Id = 2 +23:50:00 ============================================================================ +23:50:00 + + +waiting on router queue for slot.... +23:50:00 ============================================================================ +23:50:00 Slot Id : <256> +23:50:00 Transaction Type : REQUEST +23:50:00 Received From : +23:50:00 ============================================================================ +23:50:00 FNo. Len. Field Value +23:50:00 ============================================================================ +23:50:00 [ 1] [ 4] [0200] +23:50:00 [ 2] [ 16] [6688990050031101] +23:50:00 [ 3] [ 6] [010000] +23:50:00 [ 4] [ 12] [000010000000] +23:50:00 [ 7] [ 10] [0320234956] +23:50:00 [ 11] [ 6] [849741] +23:50:00 [ 12] [ 6] [234956] +23:50:00 [ 13] [ 4] [0320] +23:50:00 [ 15] [ 4] [0320] +23:50:00 [ 18] [ 4] [6011] +23:50:00 [ 22] [ 3] [900] +23:50:00 [ 25] [ 2] [02] +23:50:00 [ 28] [ 9] [D00002000] +23:50:00 [ 32] [ 6] [621354] +23:50:00 [ 35] [ 37] [6688990050031101=98021261460130000000] +23:50:00 [ 37] [ 12] [507903040727] +23:50:00 [ 41] [ 8] [01008400] +23:50:00 [ 42] [ 15] [NATIVE ] +23:50:00 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +23:50:00 [ 49] [ 3] [418] +23:50:00 [ 52] [ 16] [44DE9A4AA6879081] +23:50:00 ============================================================================ +23:50:00 + + +waiting on router queue for slot.... +23:50:00 Sending to : +23:50:00 ============================================================================ +23:50:00 Sending to : +23:50:00 ============================================================================ +23:50:00 ============================================================================ +23:50:00 Slot Id : <256> +23:50:00 Transaction Type : REQUEST +23:50:00 Received From : +23:50:00 ============================================================================ +23:50:00 FNo. Len. Field Value +23:50:00 ============================================================================ +23:50:00 [ 1] [ 4] [0200] +23:50:00 [ 2] [ 16] [6688990050031101] +23:50:00 [ 3] [ 6] [010000] +23:50:00 [ 4] [ 12] [000010000000] +23:50:00 [ 7] [ 10] [0320234956] +23:50:00 [ 11] [ 6] [849741] +23:50:00 [ 12] [ 6] [234956] +23:50:00 [ 13] [ 4] [0320] +23:50:00 [ 15] [ 4] [0320] +23:50:00 [ 18] [ 4] [6011] +23:50:00 [ 22] [ 3] [900] +23:50:00 [ 25] [ 2] [02] +23:50:00 [ 28] [ 9] [D00002000] +23:50:00 [ 32] [ 6] [621354] +23:50:00 [ 35] [ 37] [6688990050031101=98021261460130000000] +23:50:00 [ 37] [ 12] [507903040727] +23:50:00 [ 41] [ 8] [01008400] +23:50:00 [ 42] [ 15] [NATIVE ] +23:50:00 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +23:50:00 [ 49] [ 3] [418] +23:50:00 [ 52] [ 16] [44DE9A4AA6879081] +23:50:00 ============================================================================ +23:50:00 + + +waiting on router queue for slot.... +23:50:00 Sending to : +23:50:00 ============================================================================ +23:50:00 ============================================================================ +23:50:00 Slot Id : <256> +23:50:00 Transaction Type : REQUEST +23:50:00 Received From : +23:50:00 ============================================================================ +23:50:00 FNo. Len. Field Value +23:50:00 ============================================================================ +23:50:00 [ 1] [ 4] [0200] +23:50:00 [ 2] [ 16] [6688990050031101] +23:50:00 [ 3] [ 6] [010000] +23:50:00 [ 4] [ 12] [000010000000] +23:50:00 [ 7] [ 10] [0320234956] +23:50:00 [ 11] [ 6] [849741] +23:50:00 [ 12] [ 6] [234956] +23:50:00 [ 13] [ 4] [0320] +23:50:00 [ 15] [ 4] [0320] +23:50:00 [ 18] [ 4] [6011] +23:50:00 [ 22] [ 3] [900] +23:50:00 [ 25] [ 2] [02] +23:50:00 [ 28] [ 9] [D00002000] +23:50:00 [ 32] [ 6] [621354] +23:50:00 [ 35] [ 37] [6688990050031101=98021261460130000000] +23:50:00 [ 37] [ 12] [507903040727] +23:50:00 [ 41] [ 8] [01008400] +23:50:00 [ 42] [ 15] [NATIVE ] +23:50:00 [ 43] [ 40] [PHARMACY FACTORY NO 3 Hatxaifong LAO] +23:50:00 [ 49] [ 3] [418] +23:50:00 [ 52] [ 16] [0A7D885E8476E991] +23:50:00 ============================================================================ +23:50:00 + + +waiting on router queue for slot.... +23:50:00 Sending to : <4> +23:50:00 ============================================================================ +23:50:01 ============================================================================ +23:50:01 Slot Id : <256> +23:50:01 Transaction Type : RESPONSE +23:50:01 Received From : +23:50:01 ============================================================================ +23:50:01 FNo. Len. Field Value +23:50:01 ============================================================================ +23:50:01 [ 1] [ 4] [0210] +23:50:01 [ 2] [ 16] [6688990050031101] +23:50:01 [ 3] [ 6] [010000] +23:50:01 [ 4] [ 12] [000010000000] +23:50:01 [ 11] [ 6] [849741] +23:50:01 [ 12] [ 6] [234956] +23:50:01 [ 15] [ 4] [0320] +23:50:01 [ 18] [ 4] [6011] +23:50:01 [ 32] [ 6] [621354] +23:50:01 [ 35] [ 37] [6688990050031101=98021261460130000000] +23:50:01 [ 37] [ 12] [507903040727] +23:50:01 [ 38] [ 6] [384219] +23:50:01 [ 39] [ 2] [00] +23:50:01 [ 41] [ 8] [01008400] +23:50:01 [ 49] [ 3] [418] +23:50:01 [ 54] [ 20] [0002418C000056701375] +23:50:01 ============================================================================ +23:50:01 Sending to : +23:50:01 ============================================================================ +23:50:01 + + +waiting on router queue for slot.... +23:50:03 ============================================================================ +23:50:03 Slot Id : <256> +23:50:03 Transaction Type : RESPONSE +23:50:03 Received From : +23:50:03 ============================================================================ +23:50:03 FNo. Len. Field Value +23:50:03 ============================================================================ +23:50:03 [ 1] [ 4] [0210] +23:50:03 [ 2] [ 16] [6688990050031101] +23:50:03 [ 3] [ 6] [010000] +23:50:03 [ 4] [ 12] [000010000000] +23:50:03 [ 11] [ 6] [849741] +23:50:03 [ 12] [ 6] [234956] +23:50:03 [ 15] [ 4] [0320] +23:50:03 [ 18] [ 4] [6011] +23:50:03 [ 32] [ 6] [621354] +23:50:03 [ 35] [ 37] [6688990050031101=98021261460130000000] +23:50:03 [ 37] [ 12] [507903040727] +23:50:03 [ 38] [ 6] [384219] +23:50:03 [ 39] [ 2] [00] +23:50:03 [ 41] [ 8] [01008400] +23:50:03 [ 49] [ 3] [418] +23:50:03 [ 54] [ 20] [0002418C000056701375] +23:50:03 ============================================================================ +23:50:03 Calculate Source COMM Id = 0 +23:50:03 ============================================================================ +23:50:03 + + +waiting on router queue for slot.... +23:50:11 ============================================================================ +23:50:11 Slot Id : <274> +23:50:11 Transaction Type : REQUEST +23:50:11 Received From : +23:50:11 ============================================================================ +23:50:11 FNo. Len. Field Value +23:50:11 ============================================================================ +23:50:11 [ 1] [ 4] [0800] +23:50:11 [ 7] [ 10] [0320044918] +23:50:11 [ 11] [ 6] [159165] +23:50:11 [ 70] [ 3] [301] +23:50:11 ============================================================================ +23:50:11 + + +waiting on router queue for slot.... +23:50:11 Sending to : +23:50:11 ============================================================================ +23:50:11 ============================================================================ +23:50:11 Slot Id : <274> +23:50:11 Transaction Type : RESPONSE +23:50:11 Received From : +23:50:11 ============================================================================ +23:50:11 FNo. Len. Field Value +23:50:11 ============================================================================ +23:50:11 [ 1] [ 4] [0810] +23:50:11 [ 7] [ 10] [0320044918] +23:50:11 [ 11] [ 6] [159165] +23:50:11 [ 39] [ 2] [00] +23:50:11 [ 70] [ 3] [301] +23:50:11 ============================================================================ +23:50:11 Calculate Source COMM Id = 2 +23:50:11 ============================================================================ +23:50:11 + + +waiting on router queue for slot.... +23:50:18 ============================================================================ +23:50:18 Slot Id : <264> +23:50:18 Transaction Type : REQUEST +23:50:18 Received From : +23:50:18 ============================================================================ +23:50:18 FNo. Len. Field Value +23:50:18 ============================================================================ +23:50:18 [ 1] [ 4] [0800] +23:50:18 [ 7] [ 10] [0321070208] +23:50:18 [ 11] [ 6] [000208] +23:50:18 [ 37] [ 12] [58000000208] +23:50:18 [ 70] [ 3] [301] +23:50:18 ============================================================================ +23:50:18 + + +waiting on router queue for slot.... +23:50:18 Sending to : +23:50:18 ============================================================================ +23:50:18 ============================================================================ +23:50:18 Slot Id : <264> +23:50:18 Transaction Type : RESPONSE +23:50:18 Received From : +23:50:18 ============================================================================ +23:50:18 FNo. Len. Field Value +23:50:18 ============================================================================ +23:50:18 [ 1] [ 4] [0810] +23:50:18 [ 7] [ 10] [0321070208] +23:50:18 [ 11] [ 6] [000208] +23:50:18 [ 37] [ 12] [580000002080] +23:50:18 [ 39] [ 2] [00] +23:50:18 [ 70] [ 3] [810] +23:50:18 ============================================================================ +23:50:18 Calculate Source COMM Id = 6 +23:50:18 ============================================================================ +23:50:18 + + +waiting on router queue for slot.... +23:50:26 ============================================================================ +23:50:26 Slot Id : <228> +23:50:26 Transaction Type : REQUEST +23:50:26 Received From : +23:50:26 ============================================================================ +23:50:26 FNo. Len. Field Value +23:50:26 ============================================================================ +23:50:26 [ 1] [ 4] [0800] +23:50:26 [ 7] [ 10] [0320044934] +23:50:26 [ 11] [ 6] [159166] +23:50:26 [ 70] [ 3] [301] +23:50:26 ============================================================================ +23:50:26 + + +waiting on router queue for slot.... +23:50:26 Sending to : +23:50:26 ============================================================================ +23:50:26 ============================================================================ +23:50:26 Slot Id : <228> +23:50:26 Transaction Type : RESPONSE +23:50:26 Received From : +23:50:26 ============================================================================ +23:50:26 FNo. Len. Field Value +23:50:26 ============================================================================ +23:50:26 [ 1] [ 4] [0810] +23:50:26 [ 7] [ 10] [0320044934] +23:50:26 [ 11] [ 6] [159166] +23:50:26 [ 39] [ 2] [00] +23:50:26 [ 70] [ 3] [301] +23:50:26 ============================================================================ +23:50:26 Calculate Source COMM Id = 2 +23:50:26 ============================================================================ +23:50:26 + + +waiting on router queue for slot.... +23:50:41 ============================================================================ +23:50:41 Slot Id : <231> +23:50:41 Transaction Type : REQUEST +23:50:41 Received From : +23:50:41 ============================================================================ +23:50:41 FNo. Len. Field Value +23:50:41 ============================================================================ +23:50:41 [ 1] [ 4] [0800] +23:50:41 [ 7] [ 10] [0320044949] +23:50:41 [ 11] [ 6] [159167] +23:50:41 [ 70] [ 3] [301] +23:50:41 ============================================================================ +23:50:41 + + +waiting on router queue for slot.... +23:50:41 Sending to : +23:50:41 ============================================================================ +23:50:41 ============================================================================ +23:50:41 Slot Id : <231> +23:50:41 Transaction Type : RESPONSE +23:50:41 Received From : +23:50:41 ============================================================================ +23:50:41 FNo. Len. Field Value +23:50:41 ============================================================================ +23:50:41 [ 1] [ 4] [0810] +23:50:41 [ 7] [ 10] [0320044949] +23:50:41 [ 11] [ 6] [159167] +23:50:41 [ 39] [ 2] [00] +23:50:41 [ 70] [ 3] [301] +23:50:41 ============================================================================ +23:50:41 Calculate Source COMM Id = 2 +23:50:41 ============================================================================ +23:50:41 + + +waiting on router queue for slot.... +23:50:48 ============================================================================ +23:50:48 Slot Id : <220> +23:50:48 Transaction Type : REQUEST +23:50:48 Received From : +23:50:48 ============================================================================ +23:50:48 FNo. Len. Field Value +23:50:48 ============================================================================ +23:50:48 [ 1] [ 4] [0800] +23:50:48 [ 2] [ 5] [02531] +23:50:48 [ 3] [ 6] [579238] +23:50:48 [ 7] [ 10] [0320165048] +23:50:48 [ 11] [ 6] [807796] +23:50:48 [ 15] [ 10] [0320165048] +23:50:48 [ 37] [ 11] [57923807796] +23:50:48 [ 70] [ 3] [001] +23:50:48 ============================================================================ +23:50:48 + + +waiting on router queue for slot.... +23:50:48 ============================================================================ +23:50:48 Slot Id : <220> +23:50:48 Transaction Type : RESPONSE +23:50:48 Received From : +23:50:48 ============================================================================ +23:50:48 FNo. Len. Field Value +23:50:48 ============================================================================ +23:50:48 [ 1] [ 4] [0810] +23:50:48 [ 7] [ 10] [0320165048] +23:50:48 [ 11] [ 6] [807796] +23:50:48 [ 15] [ 4] [0320] +23:50:48 [ 37] [ 12] [57923807796] +23:50:48 [ 39] [ 2] [00] +23:50:48 [ 70] [ 3] [001] +23:50:48 ============================================================================ +23:50:48 Sending to : +23:50:48 ============================================================================ +23:50:48 + + +waiting on router queue for slot.... +23:50:51 ============================================================================ +23:50:51 Slot Id : <273> +23:50:51 Transaction Type : REQUEST +23:50:51 Received From : +23:50:51 ============================================================================ +23:50:51 FNo. Len. Field Value +23:50:51 ============================================================================ +23:50:51 [ 1] [ 4] [0800] +23:50:51 [ 7] [ 10] [0320044959] +23:50:51 [ 11] [ 6] [159168] +23:50:51 [ 70] [ 3] [301] +23:50:51 ============================================================================ +23:50:51 + + +waiting on router queue for slot.... +23:50:51 Sending to : +23:50:51 ============================================================================ +23:50:51 ============================================================================ +23:50:51 Slot Id : <273> +23:50:51 Transaction Type : RESPONSE +23:50:51 Received From : +23:50:51 ============================================================================ +23:50:51 FNo. Len. Field Value +23:50:51 ============================================================================ +23:50:51 [ 1] [ 4] [0810] +23:50:51 [ 7] [ 10] [0320044959] +23:50:51 [ 11] [ 6] [159168] +23:50:51 [ 39] [ 2] [00] +23:50:51 [ 70] [ 3] [301] +23:50:51 ============================================================================ +23:50:51 Calculate Source COMM Id = 2 +23:50:51 ============================================================================ +23:50:51 + + +waiting on router queue for slot.... +23:51:01 ============================================================================ +23:51:01 Slot Id : <279> +23:51:01 Transaction Type : REQUEST +23:51:01 Received From : +23:51:01 ============================================================================ +23:51:01 FNo. Len. Field Value +23:51:01 ============================================================================ +23:51:01 [ 1] [ 4] [0800] +23:51:01 [ 7] [ 10] [0320045009] +23:51:01 [ 11] [ 6] [159169] +23:51:01 [ 70] [ 3] [301] +23:51:01 ============================================================================ +23:51:01 + + +waiting on router queue for slot.... +23:51:01 Sending to : +23:51:01 ============================================================================ +23:51:01 ============================================================================ +23:51:01 Slot Id : <279> +23:51:01 Transaction Type : RESPONSE +23:51:01 Received From : +23:51:01 ============================================================================ +23:51:01 FNo. Len. Field Value +23:51:01 ============================================================================ +23:51:01 [ 1] [ 4] [0810] +23:51:01 [ 7] [ 10] [0320045009] +23:51:01 [ 11] [ 6] [159169] +23:51:01 [ 39] [ 2] [00] +23:51:01 [ 70] [ 3] [301] +23:51:01 ============================================================================ +23:51:01 Calculate Source COMM Id = 2 +23:51:01 ============================================================================ +23:51:01 + + +waiting on router queue for slot.... +23:51:03 ============================================================================ +23:51:03 Slot Id : <239> +23:51:03 Transaction Type : REQUEST +23:51:03 Received From : +23:51:03 ============================================================================ +23:51:03 FNo. Len. Field Value +23:51:03 ============================================================================ +23:51:03 [ 1] [ 4] [0200] +23:51:03 [ 2] [ 16] [6213544001091369] +23:51:03 [ 3] [ 6] [010000] +23:51:03 [ 4] [ 12] [000010000000] +23:51:03 [ 7] [ 10] [0320234854] +23:51:03 [ 11] [ 6] [958203] +23:51:03 [ 12] [ 6] [234854] +23:51:03 [ 13] [ 4] [0320] +23:51:03 [ 15] [ 4] [0320] +23:51:03 [ 18] [ 4] [6011] +23:51:03 [ 19] [ 3] [418] +23:51:03 [ 22] [ 3] [021] +23:51:03 [ 25] [ 2] [01] +23:51:03 [ 28] [ 9] [D00002000] +23:51:03 [ 32] [ 6] [668899] +23:51:03 [ 35] [ 32] [6213544001091369=491212019136080] +23:51:03 [ 37] [ 12] [508000147026] +23:51:03 [ 41] [ 8] [03020005] +23:51:03 [ 42] [ 15] [APT ] +23:51:03 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +23:51:03 [ 49] [ 3] [418] +23:51:03 [ 52] [ 16] [DB4331060EA3D645] +23:51:03 ============================================================================ +23:51:03 + + +waiting on router queue for slot.... +23:51:03 Sending to : +23:51:03 ============================================================================ +23:51:03 Sending to : +23:51:03 ============================================================================ +23:51:03 ============================================================================ +23:51:03 Slot Id : <239> +23:51:03 Transaction Type : REQUEST +23:51:03 Received From : +23:51:03 ============================================================================ +23:51:03 FNo. Len. Field Value +23:51:03 ============================================================================ +23:51:03 [ 1] [ 4] [0200] +23:51:03 [ 2] [ 16] [6213544001091369] +23:51:03 [ 3] [ 6] [010000] +23:51:03 [ 4] [ 12] [000010000000] +23:51:03 [ 7] [ 10] [0320234854] +23:51:03 [ 11] [ 6] [958203] +23:51:03 [ 12] [ 6] [234854] +23:51:03 [ 13] [ 4] [0320] +23:51:03 [ 15] [ 4] [0320] +23:51:03 [ 18] [ 4] [6011] +23:51:03 [ 19] [ 3] [418] +23:51:03 [ 22] [ 3] [021] +23:51:03 [ 25] [ 2] [01] +23:51:03 [ 28] [ 9] [D00002000] +23:51:03 [ 32] [ 6] [668899] +23:51:03 [ 35] [ 32] [6213544001091369=491212019136080] +23:51:03 [ 37] [ 12] [508000147026] +23:51:03 [ 41] [ 8] [03020005] +23:51:03 [ 42] [ 15] [APT ] +23:51:03 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +23:51:03 [ 49] [ 3] [418] +23:51:03 [ 52] [ 16] [DB4331060EA3D645] +23:51:03 ============================================================================ +23:51:03 + + +waiting on router queue for slot.... +23:51:03 Sending to : +23:51:03 ============================================================================ +23:51:03 ============================================================================ +23:51:03 Slot Id : <239> +23:51:03 Transaction Type : REQUEST +23:51:03 Received From : +23:51:03 ============================================================================ +23:51:03 FNo. Len. Field Value +23:51:03 ============================================================================ +23:51:03 [ 1] [ 4] [0200] +23:51:03 [ 2] [ 16] [6213544001091369] +23:51:03 [ 3] [ 6] [010000] +23:51:03 [ 4] [ 12] [000010000000] +23:51:03 [ 7] [ 10] [0320234854] +23:51:03 [ 11] [ 6] [958203] +23:51:03 [ 12] [ 6] [234854] +23:51:03 [ 13] [ 4] [0320] +23:51:03 [ 15] [ 4] [0320] +23:51:03 [ 18] [ 4] [6011] +23:51:03 [ 19] [ 3] [418] +23:51:03 [ 22] [ 3] [021] +23:51:03 [ 25] [ 2] [01] +23:51:03 [ 28] [ 9] [D00002000] +23:51:03 [ 32] [ 6] [668899] +23:51:03 [ 35] [ 32] [6213544001091369=491212019136080] +23:51:03 [ 37] [ 12] [508000147026] +23:51:03 [ 41] [ 8] [03020005] +23:51:03 [ 42] [ 15] [APT ] +23:51:03 [ 43] [ 40] [ SUPPAVISA SCHOOL SOKPALUA] +23:51:03 [ 49] [ 3] [418] +23:51:03 [ 52] [ 16] [D30E491EA67A22F5] +23:51:03 ============================================================================ +23:51:03 + + +waiting on router queue for slot.... +23:51:03 Sending to : <0> +23:51:03 ============================================================================ +23:51:04 ============================================================================ +23:51:04 Slot Id : <239> +23:51:04 Transaction Type : RESPONSE +23:51:04 Received From : +23:51:04 ============================================================================ +23:51:04 FNo. Len. Field Value +23:51:04 ============================================================================ +23:51:04 [ 1] [ 4] [0210] +23:51:04 [ 2] [ 16] [6213544001091369] +23:51:04 [ 3] [ 6] [010000] +23:51:04 [ 4] [ 12] [000010000000] +23:51:04 [ 7] [ 10] [0320234854] +23:51:04 [ 11] [ 6] [958203] +23:51:04 [ 12] [ 6] [234854] +23:51:04 [ 13] [ 4] [0320] +23:51:04 [ 15] [ 4] [0320] +23:51:04 [ 18] [ 4] [6011] +23:51:04 [ 19] [ 3] [418] +23:51:04 [ 32] [ 6] [668899] +23:51:04 [ 35] [ 32] [6213544001091369=491212019136080] +23:51:04 [ 37] [ 12] [508000147026] +23:51:04 [ 38] [ 6] [941778] +23:51:04 [ 39] [ 2] [00] +23:51:04 [ 41] [ 8] [03020005] +23:51:04 [ 49] [ 3] [418] +23:51:04 [ 54] [ 40] [0001418C0000351702770002418C000024970277] +23:51:04 ============================================================================ +23:51:04 Sending to : +23:51:04 ============================================================================ +23:51:04 + + +waiting on router queue for slot.... +23:51:04 ============================================================================ +23:51:04 Slot Id : <252> +23:51:04 Transaction Type : REQUEST +23:51:04 Received From : +23:51:04 ============================================================================ +23:51:04 FNo. Len. Field Value +23:51:04 ============================================================================ +23:51:04 [ 1] [ 4] [0200] +23:51:04 [ 2] [ 16] [2206990000125120] +23:51:04 [ 3] [ 6] [301000] +23:51:04 [ 4] [ 12] [000000000000] +23:51:04 [ 7] [ 10] [0320235100] +23:51:04 [ 11] [ 6] [849766] +23:51:04 [ 12] [ 6] [235100] +23:51:04 [ 13] [ 4] [0320] +23:51:04 [ 15] [ 4] [0320] +23:51:04 [ 18] [ 4] [6011] +23:51:04 [ 22] [ 3] [900] +23:51:04 [ 25] [ 2] [02] +23:51:04 [ 28] [ 9] [D00000000] +23:51:04 [ 32] [ 6] [621354] +23:51:04 [ 35] [ 32] [2206990000125120=980312610944772] +23:51:04 [ 37] [ 12] [507904508999] +23:51:04 [ 41] [ 8] [02001300] +23:51:04 [ 42] [ 15] [NATIVE ] +23:51:04 [ 43] [ 40] [Nampou Thakek LAO] +23:51:04 [ 49] [ 3] [418] +23:51:04 [ 52] [ 16] [3CCEC7564DAA588B] +23:51:04 ============================================================================ +23:51:04 + + +waiting on router queue for slot.... +23:51:04 Sending to : +23:51:04 ============================================================================ +23:51:04 Sending to : +23:51:04 ============================================================================ +23:51:05 ============================================================================ +23:51:05 Slot Id : <252> +23:51:05 Transaction Type : REQUEST +23:51:05 Received From : +23:51:05 ============================================================================ +23:51:05 FNo. Len. Field Value +23:51:05 ============================================================================ +23:51:05 [ 1] [ 4] [0200] +23:51:05 [ 2] [ 16] [2206990000125120] +23:51:05 [ 3] [ 6] [301000] +23:51:05 [ 4] [ 12] [000000000000] +23:51:05 [ 7] [ 10] [0320235100] +23:51:05 [ 11] [ 6] [849766] +23:51:05 [ 12] [ 6] [235100] +23:51:05 [ 13] [ 4] [0320] +23:51:05 [ 15] [ 4] [0320] +23:51:05 [ 18] [ 4] [6011] +23:51:05 [ 22] [ 3] [900] +23:51:05 [ 25] [ 2] [02] +23:51:05 [ 28] [ 9] [D00000000] +23:51:05 [ 32] [ 6] [621354] +23:51:05 [ 35] [ 32] [2206990000125120=980312610944772] +23:51:05 [ 37] [ 12] [507904508999] +23:51:05 [ 41] [ 8] [02001300] +23:51:05 [ 42] [ 15] [NATIVE ] +23:51:05 [ 43] [ 40] [Nampou Thakek LAO] +23:51:05 [ 49] [ 3] [418] +23:51:05 [ 52] [ 16] [3CCEC7564DAA588B] +23:51:05 ============================================================================ +23:51:05 + + +waiting on router queue for slot.... +23:51:05 Sending to : +23:51:05 ============================================================================ +23:51:05 ============================================================================ +23:51:05 Slot Id : <252> +23:51:05 Transaction Type : REQUEST +23:51:05 Received From : +23:51:05 ============================================================================ +23:51:05 FNo. Len. Field Value +23:51:05 ============================================================================ +23:51:05 [ 1] [ 4] [0200] +23:51:05 [ 2] [ 16] [2206990000125120] +23:51:05 [ 3] [ 6] [301000] +23:51:05 [ 4] [ 12] [000000000000] +23:51:05 [ 7] [ 10] [0320235100] +23:51:05 [ 11] [ 6] [849766] +23:51:05 [ 12] [ 6] [235100] +23:51:05 [ 13] [ 4] [0320] +23:51:05 [ 15] [ 4] [0320] +23:51:05 [ 18] [ 4] [6011] +23:51:05 [ 22] [ 3] [900] +23:51:05 [ 25] [ 2] [02] +23:51:05 [ 28] [ 9] [D00000000] +23:51:05 [ 32] [ 6] [621354] +23:51:05 [ 35] [ 32] [2206990000125120=980312610944772] +23:51:05 [ 37] [ 12] [507904508999] +23:51:05 [ 41] [ 8] [02001300] +23:51:05 [ 42] [ 15] [NATIVE ] +23:51:05 [ 43] [ 40] [Nampou Thakek LAO] +23:51:05 [ 49] [ 3] [418] +23:51:05 [ 52] [ 16] [8E9D7F2583786829] +23:51:05 ============================================================================ +23:51:05 + + +waiting on router queue for slot.... +23:51:05 Sending to : <1> +23:51:05 ============================================================================ +23:51:06 ============================================================================ +23:51:06 Slot Id : <239> +23:51:06 Transaction Type : RESPONSE +23:51:06 Received From : +23:51:06 ============================================================================ +23:51:06 FNo. Len. Field Value +23:51:06 ============================================================================ +23:51:06 [ 1] [ 4] [0210] +23:51:06 [ 2] [ 16] [6213544001091369] +23:51:06 [ 3] [ 6] [010000] +23:51:06 [ 4] [ 12] [000010000000] +23:51:06 [ 7] [ 10] [0320234854] +23:51:06 [ 11] [ 6] [958203] +23:51:06 [ 12] [ 6] [234854] +23:51:06 [ 13] [ 4] [0320] +23:51:06 [ 15] [ 4] [0320] +23:51:06 [ 18] [ 4] [6011] +23:51:06 [ 19] [ 3] [418] +23:51:06 [ 32] [ 6] [668899] +23:51:06 [ 35] [ 32] [6213544001091369=491212019136080] +23:51:06 [ 37] [ 12] [508000147026] +23:51:06 [ 38] [ 6] [941778] +23:51:06 [ 39] [ 2] [00] +23:51:06 [ 41] [ 8] [03020005] +23:51:06 [ 49] [ 3] [418] +23:51:06 [ 54] [ 40] [0001418C0000351702770002418C000024970277] +23:51:06 ============================================================================ +23:51:06 Calculate Source COMM Id = 4 +23:51:06 ============================================================================ +23:51:06 + + +waiting on router queue for slot.... +23:51:07 ============================================================================ +23:51:07 Slot Id : <252> +23:51:07 Transaction Type : RESPONSE +23:51:07 Received From : +23:51:07 ============================================================================ +23:51:07 FNo. Len. Field Value +23:51:07 ============================================================================ +23:51:07 [ 1] [ 4] [0210] +23:51:07 [ 2] [ 16] [2206990000125120] +23:51:07 [ 3] [ 6] [301000] +23:51:07 [ 4] [ 12] [000000000000] +23:51:07 [ 7] [ 10] [0320235100] +23:51:07 [ 11] [ 6] [849766] +23:51:07 [ 12] [ 6] [235100] +23:51:07 [ 13] [ 4] [0320] +23:51:07 [ 15] [ 4] [0320] +23:51:07 [ 18] [ 4] [6011] +23:51:07 [ 32] [ 6] [621354] +23:51:07 [ 35] [ 32] [2206990000125120=980312610944772] +23:51:07 [ 37] [ 12] [507904508999] +23:51:07 [ 38] [ 6] [904663] +23:51:07 [ 39] [ 2] [00] +23:51:07 [ 41] [ 8] [02001300] +23:51:07 [ 49] [ 3] [418] +23:51:07 [ 54] [ 40] [1001418C0000053412001002418C000005341200] +23:51:07 ============================================================================ +23:51:07 Sending to : +23:51:07 ============================================================================ +23:51:07 + + +waiting on router queue for slot.... +23:51:09 ============================================================================ +23:51:09 Slot Id : <252> +23:51:09 Transaction Type : RESPONSE +23:51:09 Received From : +23:51:09 ============================================================================ +23:51:09 FNo. Len. Field Value +23:51:09 ============================================================================ +23:51:09 [ 1] [ 4] [0210] +23:51:09 [ 2] [ 16] [2206990000125120] +23:51:09 [ 3] [ 6] [301000] +23:51:09 [ 4] [ 12] [000000000000] +23:51:09 [ 7] [ 10] [0320235100] +23:51:09 [ 11] [ 6] [849766] +23:51:09 [ 12] [ 6] [235100] +23:51:09 [ 13] [ 4] [0320] +23:51:09 [ 15] [ 4] [0320] +23:51:09 [ 18] [ 4] [6011] +23:51:09 [ 32] [ 6] [621354] +23:51:09 [ 35] [ 32] [2206990000125120=980312610944772] +23:51:09 [ 37] [ 12] [507904508999] +23:51:09 [ 38] [ 6] [904663] +23:51:09 [ 39] [ 2] [00] +23:51:09 [ 41] [ 8] [02001300] +23:51:09 [ 49] [ 3] [418] +23:51:09 [ 54] [ 40] [1001418C0000053412001002418C000005341200] +23:51:09 ============================================================================ +23:51:09 Calculate Source COMM Id = 0 +23:51:09 ============================================================================ +23:51:09 + + +waiting on router queue for slot.... +23:51:18 ============================================================================ +23:51:18 Slot Id : <272> +23:51:18 Transaction Type : REQUEST +23:51:18 Received From : +23:51:18 ============================================================================ +23:51:18 FNo. Len. Field Value +23:51:18 ============================================================================ +23:51:18 [ 1] [ 4] [0800] +23:51:18 [ 7] [ 10] [0320045026] +23:51:18 [ 11] [ 6] [159170] +23:51:18 [ 70] [ 3] [301] +23:51:18 ============================================================================ +23:51:18 + + +waiting on router queue for slot.... +23:51:18 Sending to : +23:51:18 ============================================================================ +23:51:18 ============================================================================ +23:51:18 Slot Id : <272> +23:51:18 Transaction Type : RESPONSE +23:51:18 Received From : +23:51:18 ============================================================================ +23:51:18 FNo. Len. Field Value +23:51:18 ============================================================================ +23:51:18 [ 1] [ 4] [0810] +23:51:18 [ 7] [ 10] [0320045026] +23:51:18 [ 11] [ 6] [159170] +23:51:18 [ 39] [ 2] [00] +23:51:18 [ 70] [ 3] [301] +23:51:18 ============================================================================ +23:51:18 Calculate Source COMM Id = 2 +23:51:18 ============================================================================ +23:51:18 + + +waiting on router queue for slot.... +23:51:21 ============================================================================ +23:51:21 Slot Id : <282> +23:51:21 Transaction Type : REQUEST +23:51:21 Received From : +23:51:21 ============================================================================ +23:51:21 FNo. Len. Field Value +23:51:21 ============================================================================ +23:51:21 [ 1] [ 4] [0800] +23:51:21 [ 7] [ 10] [0320164912] +23:51:21 [ 11] [ 6] [022740] +23:51:21 [ 37] [ 12] [57923022740] +23:51:21 [ 70] [ 3] [301] +23:51:21 ============================================================================ +23:51:21 + + +waiting on router queue for slot.... +23:51:21 Sending to : +23:51:21 ============================================================================ +23:51:21 ============================================================================ +23:51:21 Slot Id : <282> +23:51:21 Transaction Type : RESPONSE +23:51:21 Received From : +23:51:21 ============================================================================ +23:51:21 FNo. Len. Field Value +23:51:21 ============================================================================ +23:51:21 [ 1] [ 4] [0810] +23:51:21 [ 7] [ 10] [0320164912] +23:51:21 [ 11] [ 6] [022740] +23:51:21 [ 37] [ 12] [579230227400] +23:51:21 [ 39] [ 2] [00] +23:51:21 [ 70] [ 3] [810] +23:51:21 ============================================================================ +23:51:21 Calculate Source COMM Id = 4 +23:51:21 ============================================================================ +23:51:21 + + +waiting on router queue for slot.... +23:51:23 ============================================================================ +23:51:23 Slot Id : <254> +23:51:23 Transaction Type : REQUEST +23:51:23 Received From : +23:51:23 ============================================================================ +23:51:23 FNo. Len. Field Value +23:51:23 ============================================================================ +23:51:23 [ 1] [ 4] [0800] +23:51:23 [ 7] [ 10] [0321070313] +23:51:23 [ 11] [ 6] [000313] +23:51:23 [ 37] [ 12] [58000000313] +23:51:23 [ 70] [ 3] [301] +23:51:23 ============================================================================ +23:51:23 + + +waiting on router queue for slot.... +23:51:23 Sending to : +23:51:23 ============================================================================ +23:51:23 ============================================================================ +23:51:23 Slot Id : <254> +23:51:23 Transaction Type : RESPONSE +23:51:23 Received From : +23:51:23 ============================================================================ +23:51:23 FNo. Len. Field Value +23:51:23 ============================================================================ +23:51:23 [ 1] [ 4] [0810] +23:51:23 [ 7] [ 10] [0321070313] +23:51:23 [ 11] [ 6] [000313] +23:51:23 [ 37] [ 12] [580000003130] +23:51:23 [ 39] [ 2] [00] +23:51:23 [ 70] [ 3] [810] +23:51:23 ============================================================================ +23:51:23 Calculate Source COMM Id = 6 +23:51:23 ============================================================================ +23:51:23 + + +waiting on router queue for slot.... +23:51:34 ============================================================================ +23:51:34 Slot Id : <241> +23:51:34 Transaction Type : REQUEST +23:51:34 Received From : +23:51:34 ============================================================================ +23:51:34 FNo. Len. Field Value +23:51:34 ============================================================================ +23:51:34 [ 1] [ 4] [0800] +23:51:34 [ 7] [ 10] [0320045042] +23:51:34 [ 11] [ 6] [159171] +23:51:34 [ 70] [ 3] [301] +23:51:34 ============================================================================ +23:51:34 + + +waiting on router queue for slot.... +23:51:34 Sending to : +23:51:34 ============================================================================ +23:51:34 ============================================================================ +23:51:34 Slot Id : <241> +23:51:34 Transaction Type : RESPONSE +23:51:34 Received From : +23:51:34 ============================================================================ +23:51:34 FNo. Len. Field Value +23:51:34 ============================================================================ +23:51:34 [ 1] [ 4] [0810] +23:51:34 [ 7] [ 10] [0320045042] +23:51:34 [ 11] [ 6] [159171] +23:51:34 [ 39] [ 2] [00] +23:51:34 [ 70] [ 3] [301] +23:51:34 ============================================================================ +23:51:34 Calculate Source COMM Id = 2 +23:51:34 ============================================================================ +23:51:34 + + +waiting on router queue for slot.... +23:51:45 ============================================================================ +23:51:45 Slot Id : <266> +23:51:45 Transaction Type : REQUEST +23:51:45 Received From : +23:51:45 ============================================================================ +23:51:45 FNo. Len. Field Value +23:51:45 ============================================================================ +23:51:45 [ 1] [ 4] [0800] +23:51:45 [ 7] [ 10] [0320045053] +23:51:45 [ 11] [ 6] [159172] +23:51:45 [ 70] [ 3] [301] +23:51:45 ============================================================================ +23:51:45 + + +waiting on router queue for slot.... +23:51:45 Sending to : +23:51:45 ============================================================================ +23:51:45 ============================================================================ +23:51:45 Slot Id : <266> +23:51:45 Transaction Type : RESPONSE +23:51:45 Received From : +23:51:45 ============================================================================ +23:51:45 FNo. Len. Field Value +23:51:45 ============================================================================ +23:51:45 [ 1] [ 4] [0810] +23:51:45 [ 7] [ 10] [0320045053] +23:51:45 [ 11] [ 6] [159172] +23:51:45 [ 39] [ 2] [00] +23:51:45 [ 70] [ 3] [301] +23:51:45 ============================================================================ +23:51:45 Calculate Source COMM Id = 2 +23:51:45 ============================================================================ +23:51:45 + + +waiting on router queue for slot.... +23:51:50 ============================================================================ +23:51:50 Slot Id : <280> +23:51:50 Transaction Type : REQUEST +23:51:50 Received From : +23:51:50 ============================================================================ +23:51:50 FNo. Len. Field Value +23:51:50 ============================================================================ +23:51:50 [ 1] [ 4] [0800] +23:51:50 [ 2] [ 5] [02531] +23:51:50 [ 3] [ 6] [579238] +23:51:50 [ 7] [ 10] [0320165150] +23:51:50 [ 11] [ 6] [807797] +23:51:50 [ 15] [ 10] [0320165150] +23:51:50 [ 37] [ 11] [57923807797] +23:51:50 [ 70] [ 3] [001] +23:51:50 ============================================================================ +23:51:50 + + +waiting on router queue for slot.... +23:51:50 ============================================================================ +23:51:50 Slot Id : <280> +23:51:50 Transaction Type : RESPONSE +23:51:50 Received From : +23:51:50 ============================================================================ +23:51:50 FNo. Len. Field Value +23:51:50 ============================================================================ +23:51:50 [ 1] [ 4] [0810] +23:51:50 [ 7] [ 10] [0320165150] +23:51:50 [ 11] [ 6] [807797] +23:51:50 [ 15] [ 4] [0320] +23:51:50 [ 37] [ 12] [57923807797] +23:51:50 [ 39] [ 2] [00] +23:51:50 [ 70] [ 3] [001] +23:51:50 ============================================================================ +23:51:50 Sending to : +23:51:50 ============================================================================ +23:51:50 + + +waiting on router queue for slot.... +23:51:57 ============================================================================ +23:51:57 Slot Id : <224> +23:51:57 Transaction Type : REQUEST +23:51:57 Received From : +23:51:57 ============================================================================ +23:51:57 FNo. Len. Field Value +23:51:57 ============================================================================ +23:51:57 [ 1] [ 4] [0800] +23:51:57 [ 7] [ 10] [0320045105] +23:51:57 [ 11] [ 6] [159173] +23:51:57 [ 70] [ 3] [301] +23:51:57 ============================================================================ +23:51:57 + + +waiting on router queue for slot.... +23:51:57 Sending to : +23:51:57 ============================================================================ +23:51:57 ============================================================================ +23:51:57 Slot Id : <224> +23:51:57 Transaction Type : RESPONSE +23:51:57 Received From : +23:51:57 ============================================================================ +23:51:57 FNo. Len. Field Value +23:51:57 ============================================================================ +23:51:57 [ 1] [ 4] [0810] +23:51:57 [ 7] [ 10] [0320045105] +23:51:57 [ 11] [ 6] [159173] +23:51:57 [ 39] [ 2] [00] +23:51:57 [ 70] [ 3] [301] +23:51:57 ============================================================================ +23:51:57 Calculate Source COMM Id = 2 +23:51:57 ============================================================================ +23:51:57 + + +waiting on router queue for slot.... +23:52:14 ============================================================================ +23:52:14 Slot Id : <276> +23:52:14 Transaction Type : REQUEST +23:52:14 Received From : +23:52:14 ============================================================================ +23:52:14 FNo. Len. Field Value +23:52:14 ============================================================================ +23:52:14 [ 1] [ 4] [0800] +23:52:14 [ 7] [ 10] [0320045122] +23:52:14 [ 11] [ 6] [159174] +23:52:14 [ 70] [ 3] [301] +23:52:14 ============================================================================ +23:52:14 + + +waiting on router queue for slot.... +23:52:14 Sending to : +23:52:14 ============================================================================ +23:52:14 ============================================================================ +23:52:14 Slot Id : <276> +23:52:14 Transaction Type : RESPONSE +23:52:14 Received From : +23:52:14 ============================================================================ +23:52:14 FNo. Len. Field Value +23:52:14 ============================================================================ +23:52:14 [ 1] [ 4] [0810] +23:52:14 [ 7] [ 10] [0320045122] +23:52:14 [ 11] [ 6] [159174] +23:52:14 [ 39] [ 2] [00] +23:52:14 [ 70] [ 3] [301] +23:52:14 ============================================================================ +23:52:14 Calculate Source COMM Id = 2 +23:52:14 ============================================================================ +23:52:14 + + +waiting on router queue for slot.... +23:52:26 ============================================================================ +23:52:26 Slot Id : <219> +23:52:26 Transaction Type : REQUEST +23:52:26 Received From : +23:52:26 ============================================================================ +23:52:26 FNo. Len. Field Value +23:52:26 ============================================================================ +23:52:26 [ 1] [ 4] [0800] +23:52:26 [ 7] [ 10] [0320045134] +23:52:26 [ 11] [ 6] [159175] +23:52:26 [ 70] [ 3] [301] +23:52:26 ============================================================================ +23:52:26 + + +waiting on router queue for slot.... +23:52:26 Sending to : +23:52:26 ============================================================================ +23:52:26 ============================================================================ +23:52:26 Slot Id : <219> +23:52:26 Transaction Type : RESPONSE +23:52:26 Received From : +23:52:26 ============================================================================ +23:52:26 FNo. Len. Field Value +23:52:26 ============================================================================ +23:52:26 [ 1] [ 4] [0810] +23:52:26 [ 7] [ 10] [0320045134] +23:52:26 [ 11] [ 6] [159175] +23:52:26 [ 39] [ 2] [00] +23:52:26 [ 70] [ 3] [301] +23:52:26 ============================================================================ +23:52:26 Calculate Source COMM Id = 2 +23:52:26 ============================================================================ +23:52:26 + + +waiting on router queue for slot.... +23:52:28 ============================================================================ +23:52:28 Slot Id : <258> +23:52:28 Transaction Type : REQUEST +23:52:28 Received From : +23:52:28 ============================================================================ +23:52:28 FNo. Len. Field Value +23:52:28 ============================================================================ +23:52:28 [ 1] [ 4] [0800] +23:52:28 [ 7] [ 10] [0321070418] +23:52:28 [ 11] [ 6] [000418] +23:52:28 [ 37] [ 12] [58000000418] +23:52:28 [ 70] [ 3] [301] +23:52:28 ============================================================================ +23:52:28 + + +waiting on router queue for slot.... +23:52:28 Sending to : +23:52:28 ============================================================================ +23:52:28 ============================================================================ +23:52:28 Slot Id : <258> +23:52:28 Transaction Type : RESPONSE +23:52:28 Received From : +23:52:28 ============================================================================ +23:52:28 FNo. Len. Field Value +23:52:28 ============================================================================ +23:52:28 [ 1] [ 4] [0810] +23:52:28 [ 7] [ 10] [0321070418] +23:52:28 [ 11] [ 6] [000418] +23:52:28 [ 37] [ 12] [580000004180] +23:52:28 [ 39] [ 2] [00] +23:52:28 [ 70] [ 3] [810] +23:52:28 ============================================================================ +23:52:28 Calculate Source COMM Id = 6 +23:52:28 ============================================================================ +23:52:28 + + +waiting on router queue for slot.... +23:52:42 ============================================================================ +23:52:42 Slot Id : <290> +23:52:42 Transaction Type : REQUEST +23:52:42 Received From : +23:52:42 ============================================================================ +23:52:42 FNo. Len. Field Value +23:52:42 ============================================================================ +23:52:42 [ 1] [ 4] [0800] +23:52:42 [ 7] [ 10] [0320045150] +23:52:42 [ 11] [ 6] [159176] +23:52:42 [ 70] [ 3] [301] +23:52:42 ============================================================================ +23:52:42 + + +waiting on router queue for slot.... +23:52:42 Sending to : +23:52:42 ============================================================================ +23:52:42 ============================================================================ +23:52:42 Slot Id : <290> +23:52:42 Transaction Type : RESPONSE +23:52:42 Received From : +23:52:42 ============================================================================ +23:52:42 FNo. Len. Field Value +23:52:42 ============================================================================ +23:52:42 [ 1] [ 4] [0810] +23:52:42 [ 7] [ 10] [0320045150] +23:52:42 [ 11] [ 6] [159176] +23:52:42 [ 39] [ 2] [00] +23:52:42 [ 70] [ 3] [301] +23:52:42 ============================================================================ +23:52:42 Calculate Source COMM Id = 2 +23:52:42 ============================================================================ +23:52:42 + + +waiting on router queue for slot.... +23:52:52 ============================================================================ +23:52:52 Slot Id : <287> +23:52:52 Transaction Type : REQUEST +23:52:52 Received From : +23:52:52 ============================================================================ +23:52:52 FNo. Len. Field Value +23:52:52 ============================================================================ +23:52:52 [ 1] [ 4] [0800] +23:52:52 [ 2] [ 5] [02531] +23:52:52 [ 3] [ 6] [579238] +23:52:52 [ 7] [ 10] [0320165252] +23:52:52 [ 11] [ 6] [807798] +23:52:52 [ 15] [ 10] [0320165252] +23:52:52 [ 37] [ 11] [57923807798] +23:52:52 [ 70] [ 3] [001] +23:52:52 ============================================================================ +23:52:52 + + +waiting on router queue for slot.... +23:52:52 ============================================================================ +23:52:52 Slot Id : <287> +23:52:52 Transaction Type : RESPONSE +23:52:52 Received From : +23:52:52 ============================================================================ +23:52:52 FNo. Len. Field Value +23:52:52 ============================================================================ +23:52:52 [ 1] [ 4] [0810] +23:52:52 [ 7] [ 10] [0320165252] +23:52:52 [ 11] [ 6] [807798] +23:52:52 [ 15] [ 4] [0320] +23:52:52 [ 37] [ 12] [57923807798] +23:52:52 [ 39] [ 2] [00] +23:52:52 [ 70] [ 3] [001] +23:52:52 ============================================================================ +23:52:52 Sending to : +23:52:52 ============================================================================ +23:52:52 + + +waiting on router queue for slot.... +23:52:55 ============================================================================ +23:52:55 Slot Id : <277> +23:52:55 Transaction Type : REQUEST +23:52:55 Received From : +23:52:55 ============================================================================ +23:52:55 FNo. Len. Field Value +23:52:55 ============================================================================ +23:52:55 [ 1] [ 4] [0800] +23:52:55 [ 7] [ 10] [0320045203] +23:52:55 [ 11] [ 6] [159177] +23:52:55 [ 70] [ 3] [301] +23:52:55 ============================================================================ +23:52:55 + + +waiting on router queue for slot.... +23:52:55 Sending to : +23:52:55 ============================================================================ +23:52:55 ============================================================================ +23:52:55 Slot Id : <277> +23:52:55 Transaction Type : RESPONSE +23:52:55 Received From : +23:52:55 ============================================================================ +23:52:55 FNo. Len. Field Value +23:52:55 ============================================================================ +23:52:55 [ 1] [ 4] [0810] +23:52:55 [ 7] [ 10] [0320045203] +23:52:55 [ 11] [ 6] [159177] +23:52:55 [ 39] [ 2] [00] +23:52:55 [ 70] [ 3] [301] +23:52:55 ============================================================================ +23:52:55 Calculate Source COMM Id = 2 +23:52:55 ============================================================================ +23:52:55 + + +waiting on router queue for slot.... +23:53:10 ============================================================================ +23:53:10 Slot Id : <284> +23:53:10 Transaction Type : REQUEST +23:53:10 Received From : +23:53:10 ============================================================================ +23:53:10 FNo. Len. Field Value +23:53:10 ============================================================================ +23:53:10 [ 1] [ 4] [0800] +23:53:10 [ 7] [ 10] [0320045218] +23:53:10 [ 11] [ 6] [159178] +23:53:10 [ 70] [ 3] [301] +23:53:10 ============================================================================ +23:53:10 + + +waiting on router queue for slot.... +23:53:10 Sending to : +23:53:10 ============================================================================ +23:53:10 ============================================================================ +23:53:10 Slot Id : <284> +23:53:10 Transaction Type : RESPONSE +23:53:10 Received From : +23:53:10 ============================================================================ +23:53:10 FNo. Len. Field Value +23:53:10 ============================================================================ +23:53:10 [ 1] [ 4] [0810] +23:53:10 [ 7] [ 10] [0320045218] +23:53:10 [ 11] [ 6] [159178] +23:53:10 [ 39] [ 2] [00] +23:53:10 [ 70] [ 3] [301] +23:53:10 ============================================================================ +23:53:10 Calculate Source COMM Id = 2 +23:53:10 ============================================================================ +23:53:10 + + +waiting on router queue for slot.... +23:53:21 ============================================================================ +23:53:21 Slot Id : <267> +23:53:21 Transaction Type : REQUEST +23:53:21 Received From : +23:53:21 ============================================================================ +23:53:21 FNo. Len. Field Value +23:53:21 ============================================================================ +23:53:21 [ 1] [ 4] [0800] +23:53:21 [ 7] [ 10] [0320045229] +23:53:21 [ 11] [ 6] [159179] +23:53:21 [ 70] [ 3] [301] +23:53:21 ============================================================================ +23:53:21 + + +waiting on router queue for slot.... +23:53:21 Sending to : +23:53:21 ============================================================================ +23:53:21 ============================================================================ +23:53:21 Slot Id : <267> +23:53:21 Transaction Type : RESPONSE +23:53:21 Received From : +23:53:21 ============================================================================ +23:53:21 FNo. Len. Field Value +23:53:21 ============================================================================ +23:53:21 [ 1] [ 4] [0810] +23:53:21 [ 7] [ 10] [0320045229] +23:53:21 [ 11] [ 6] [159179] +23:53:21 [ 39] [ 2] [00] +23:53:21 [ 70] [ 3] [301] +23:53:21 ============================================================================ +23:53:21 Calculate Source COMM Id = 2 +23:53:21 ============================================================================ +23:53:21 + + +waiting on router queue for slot.... +23:53:32 ============================================================================ +23:53:32 Slot Id : <271> +23:53:32 Transaction Type : REQUEST +23:53:32 Received From : +23:53:32 ============================================================================ +23:53:32 FNo. Len. Field Value +23:53:32 ============================================================================ +23:53:32 [ 1] [ 4] [0800] +23:53:32 [ 7] [ 10] [0320045240] +23:53:32 [ 11] [ 6] [159180] +23:53:32 [ 70] [ 3] [301] +23:53:32 ============================================================================ +23:53:32 + + +waiting on router queue for slot.... +23:53:32 Sending to : +23:53:32 ============================================================================ +23:53:32 ============================================================================ +23:53:32 Slot Id : <271> +23:53:32 Transaction Type : RESPONSE +23:53:32 Received From : +23:53:32 ============================================================================ +23:53:32 FNo. Len. Field Value +23:53:32 ============================================================================ +23:53:32 [ 1] [ 4] [0810] +23:53:32 [ 7] [ 10] [0320045240] +23:53:32 [ 11] [ 6] [159180] +23:53:32 [ 39] [ 2] [00] +23:53:32 [ 70] [ 3] [301] +23:53:32 ============================================================================ +23:53:32 Calculate Source COMM Id = 2 +23:53:32 ============================================================================ +23:53:32 + + +waiting on router queue for slot.... +23:53:33 ============================================================================ +23:53:33 Slot Id : <236> +23:53:33 Transaction Type : REQUEST +23:53:33 Received From : +23:53:33 ============================================================================ +23:53:33 FNo. Len. Field Value +23:53:33 ============================================================================ +23:53:33 [ 1] [ 4] [0800] +23:53:33 [ 7] [ 10] [0321070523] +23:53:33 [ 11] [ 6] [000523] +23:53:33 [ 37] [ 12] [58000000523] +23:53:33 [ 70] [ 3] [301] +23:53:33 ============================================================================ +23:53:33 + + +waiting on router queue for slot.... +23:53:33 Sending to : +23:53:33 ============================================================================ +23:53:33 ============================================================================ +23:53:33 Slot Id : <236> +23:53:33 Transaction Type : RESPONSE +23:53:33 Received From : +23:53:33 ============================================================================ +23:53:33 FNo. Len. Field Value +23:53:33 ============================================================================ +23:53:33 [ 1] [ 4] [0810] +23:53:33 [ 7] [ 10] [0321070523] +23:53:33 [ 11] [ 6] [000523] +23:53:33 [ 37] [ 12] [580000005230] +23:53:33 [ 39] [ 2] [00] +23:53:33 [ 70] [ 3] [810] +23:53:33 ============================================================================ +23:53:33 Calculate Source COMM Id = 6 +23:53:33 ============================================================================ +23:53:33 + + +waiting on router queue for slot.... +23:53:43 ============================================================================ +23:53:43 Slot Id : <245> +23:53:43 Transaction Type : REQUEST +23:53:43 Received From : +23:53:43 ============================================================================ +23:53:43 FNo. Len. Field Value +23:53:43 ============================================================================ +23:53:43 [ 1] [ 4] [0800] +23:53:43 [ 7] [ 10] [0320045251] +23:53:43 [ 11] [ 6] [159181] +23:53:43 [ 70] [ 3] [301] +23:53:43 ============================================================================ +23:53:43 + + +waiting on router queue for slot.... +23:53:43 Sending to : +23:53:43 ============================================================================ +23:53:43 ============================================================================ +23:53:43 Slot Id : <245> +23:53:43 Transaction Type : RESPONSE +23:53:43 Received From : +23:53:43 ============================================================================ +23:53:43 FNo. Len. Field Value +23:53:43 ============================================================================ +23:53:43 [ 1] [ 4] [0810] +23:53:43 [ 7] [ 10] [0320045251] +23:53:43 [ 11] [ 6] [159181] +23:53:43 [ 39] [ 2] [00] +23:53:43 [ 70] [ 3] [301] +23:53:43 ============================================================================ +23:53:43 Calculate Source COMM Id = 2 +23:53:43 ============================================================================ +23:53:43 + + +waiting on router queue for slot.... +23:53:53 ============================================================================ +23:53:53 Slot Id : <303> +23:53:53 Transaction Type : REQUEST +23:53:53 Received From : +23:53:53 ============================================================================ +23:53:53 FNo. Len. Field Value +23:53:53 ============================================================================ +23:53:53 [ 1] [ 4] [0800] +23:53:53 [ 7] [ 10] [0320045301] +23:53:53 [ 11] [ 6] [159182] +23:53:53 [ 70] [ 3] [301] +23:53:53 ============================================================================ +23:53:53 + + +waiting on router queue for slot.... +23:53:53 Sending to : +23:53:53 ============================================================================ +23:53:54 ============================================================================ +23:53:54 Slot Id : <303> +23:53:54 Transaction Type : RESPONSE +23:53:54 Received From : +23:53:54 ============================================================================ +23:53:54 FNo. Len. Field Value +23:53:54 ============================================================================ +23:53:54 [ 1] [ 4] [0810] +23:53:54 [ 7] [ 10] [0320045301] +23:53:54 [ 11] [ 6] [159182] +23:53:54 [ 39] [ 2] [00] +23:53:54 [ 70] [ 3] [301] +23:53:54 ============================================================================ +23:53:54 Calculate Source COMM Id = 2 +23:53:54 ============================================================================ +23:53:54 + + +waiting on router queue for slot.... +23:53:54 ============================================================================ +23:53:54 Slot Id : <294> +23:53:54 Transaction Type : REQUEST +23:53:54 Received From : +23:53:54 ============================================================================ +23:53:54 FNo. Len. Field Value +23:53:54 ============================================================================ +23:53:54 [ 1] [ 4] [0800] +23:53:54 [ 2] [ 5] [02531] +23:53:54 [ 3] [ 6] [579238] +23:53:54 [ 7] [ 10] [0320165354] +23:53:54 [ 11] [ 6] [807799] +23:53:54 [ 15] [ 10] [0320165354] +23:53:54 [ 37] [ 11] [57923807799] +23:53:54 [ 70] [ 3] [001] +23:53:54 ============================================================================ +23:53:54 + + +waiting on router queue for slot.... +23:53:54 ============================================================================ +23:53:54 Slot Id : <294> +23:53:54 Transaction Type : RESPONSE +23:53:54 Received From : +23:53:54 ============================================================================ +23:53:54 FNo. Len. Field Value +23:53:54 ============================================================================ +23:53:54 [ 1] [ 4] [0810] +23:53:54 [ 7] [ 10] [0320165354] +23:53:54 [ 11] [ 6] [807799] +23:53:54 [ 15] [ 4] [0320] +23:53:54 [ 37] [ 12] [57923807799] +23:53:54 [ 39] [ 2] [00] +23:53:54 [ 70] [ 3] [001] +23:53:54 ============================================================================ +23:53:54 Sending to : +23:53:54 ============================================================================ +23:53:54 + + +waiting on router queue for slot.... +23:54:09 ============================================================================ +23:54:09 Slot Id : <293> +23:54:09 Transaction Type : REQUEST +23:54:09 Received From : +23:54:09 ============================================================================ +23:54:09 FNo. Len. Field Value +23:54:09 ============================================================================ +23:54:09 [ 1] [ 4] [0800] +23:54:09 [ 7] [ 10] [0320045317] +23:54:09 [ 11] [ 6] [159183] +23:54:09 [ 70] [ 3] [301] +23:54:09 ============================================================================ +23:54:09 + + +waiting on router queue for slot.... +23:54:09 Sending to : +23:54:09 ============================================================================ +23:54:09 ============================================================================ +23:54:09 Slot Id : <293> +23:54:09 Transaction Type : RESPONSE +23:54:09 Received From : +23:54:09 ============================================================================ +23:54:09 FNo. Len. Field Value +23:54:09 ============================================================================ +23:54:09 [ 1] [ 4] [0810] +23:54:09 [ 7] [ 10] [0320045317] +23:54:09 [ 11] [ 6] [159183] +23:54:09 [ 39] [ 2] [00] +23:54:09 [ 70] [ 3] [301] +23:54:09 ============================================================================ +23:54:09 Calculate Source COMM Id = 2 +23:54:09 ============================================================================ +23:54:09 + + +waiting on router queue for slot.... +23:54:20 ============================================================================ +23:54:20 Slot Id : <217> +23:54:20 Transaction Type : REQUEST +23:54:20 Received From : +23:54:20 ============================================================================ +23:54:20 FNo. Len. Field Value +23:54:20 ============================================================================ +23:54:20 [ 1] [ 4] [0800] +23:54:20 [ 7] [ 10] [0320045328] +23:54:20 [ 11] [ 6] [159184] +23:54:20 [ 70] [ 3] [301] +23:54:20 ============================================================================ +23:54:20 + + +waiting on router queue for slot.... +23:54:20 Sending to : +23:54:20 ============================================================================ +23:54:20 ============================================================================ +23:54:20 Slot Id : <217> +23:54:20 Transaction Type : RESPONSE +23:54:20 Received From : +23:54:20 ============================================================================ +23:54:20 FNo. Len. Field Value +23:54:20 ============================================================================ +23:54:20 [ 1] [ 4] [0810] +23:54:20 [ 7] [ 10] [0320045328] +23:54:20 [ 11] [ 6] [159184] +23:54:20 [ 39] [ 2] [00] +23:54:20 [ 70] [ 3] [301] +23:54:20 ============================================================================ +23:54:20 Calculate Source COMM Id = 2 +23:54:20 ============================================================================ +23:54:20 + + +waiting on router queue for slot.... +23:54:23 ============================================================================ +23:54:23 Slot Id : <298> +23:54:23 Transaction Type : REQUEST +23:54:23 Received From : +23:54:23 ============================================================================ +23:54:23 FNo. Len. Field Value +23:54:23 ============================================================================ +23:54:23 [ 1] [ 4] [0200] +23:54:23 [ 2] [ 16] [6213541000191786] +23:54:23 [ 3] [ 6] [011000] +23:54:23 [ 4] [ 12] [000100000000] +23:54:23 [ 7] [ 10] [0320235444] +23:54:23 [ 11] [ 6] [214660] +23:54:23 [ 12] [ 6] [234850] +23:54:23 [ 13] [ 4] [0320] +23:54:23 [ 14] [ 4] [4912] +23:54:23 [ 15] [ 4] [0320] +23:54:23 [ 18] [ 4] [6011] +23:54:23 [ 19] [ 3] [418] +23:54:23 [ 22] [ 3] [021] +23:54:23 [ 25] [ 2] [01] +23:54:23 [ 28] [ 9] [D00002000] +23:54:23 [ 32] [ 6] [198901] +23:54:23 [ 35] [ 32] [6213541000191786=491212019178392] +23:54:23 [ 37] [ 12] [507923214660] +23:54:23 [ 41] [ 8] [00852900] +23:54:23 [ 42] [ 15] [000000040852900] +23:54:23 [ 43] [ 40] [JDB ATM SAVAN VEGAS1 VN ] +23:54:23 [ 49] [ 3] [418] +23:54:23 [ 52] [ 16] [92BE2AD1E35DED8E] +23:54:23 ============================================================================ +23:54:23 + + +waiting on router queue for slot.... +23:54:23 Sending to : +23:54:23 ============================================================================ +23:54:23 Sending to : +23:54:23 ============================================================================ +23:54:23 ============================================================================ +23:54:23 Slot Id : <298> +23:54:23 Transaction Type : REQUEST +23:54:23 Received From : +23:54:23 ============================================================================ +23:54:23 FNo. Len. Field Value +23:54:23 ============================================================================ +23:54:23 [ 1] [ 4] [0200] +23:54:23 [ 2] [ 16] [6213541000191786] +23:54:23 [ 3] [ 6] [011000] +23:54:23 [ 4] [ 12] [000100000000] +23:54:23 [ 7] [ 10] [0320235444] +23:54:23 [ 11] [ 6] [214660] +23:54:23 [ 12] [ 6] [234850] +23:54:23 [ 13] [ 4] [0320] +23:54:23 [ 14] [ 4] [4912] +23:54:23 [ 15] [ 4] [0320] +23:54:23 [ 18] [ 4] [6011] +23:54:23 [ 19] [ 3] [418] +23:54:23 [ 22] [ 3] [021] +23:54:23 [ 25] [ 2] [01] +23:54:23 [ 28] [ 9] [D00002000] +23:54:23 [ 32] [ 6] [198901] +23:54:23 [ 35] [ 32] [6213541000191786=491212019178392] +23:54:23 [ 37] [ 12] [507923214660] +23:54:23 [ 41] [ 8] [00852900] +23:54:23 [ 42] [ 15] [000000040852900] +23:54:23 [ 43] [ 40] [JDB ATM SAVAN VEGAS1 VN ] +23:54:23 [ 49] [ 3] [418] +23:54:23 [ 52] [ 16] [92BE2AD1E35DED8E] +23:54:23 ============================================================================ +23:54:23 + + +waiting on router queue for slot.... +23:54:23 Sending to : +23:54:23 ============================================================================ +23:54:23 ============================================================================ +23:54:23 Slot Id : <298> +23:54:23 Transaction Type : REQUEST +23:54:23 Received From : +23:54:23 ============================================================================ +23:54:23 FNo. Len. Field Value +23:54:23 ============================================================================ +23:54:23 [ 1] [ 4] [0200] +23:54:23 [ 2] [ 16] [6213541000191786] +23:54:23 [ 3] [ 6] [011000] +23:54:23 [ 4] [ 12] [000100000000] +23:54:23 [ 7] [ 10] [0320235444] +23:54:23 [ 11] [ 6] [214660] +23:54:23 [ 12] [ 6] [234850] +23:54:23 [ 13] [ 4] [0320] +23:54:23 [ 14] [ 4] [4912] +23:54:23 [ 15] [ 4] [0320] +23:54:23 [ 18] [ 4] [6011] +23:54:23 [ 19] [ 3] [418] +23:54:23 [ 22] [ 3] [021] +23:54:23 [ 25] [ 2] [01] +23:54:23 [ 28] [ 9] [D00002000] +23:54:23 [ 32] [ 6] [198901] +23:54:23 [ 35] [ 32] [6213541000191786=491212019178392] +23:54:23 [ 37] [ 12] [507923214660] +23:54:23 [ 41] [ 8] [00852900] +23:54:23 [ 42] [ 15] [000000040852900] +23:54:23 [ 43] [ 40] [JDB ATM SAVAN VEGAS1 VN ] +23:54:23 [ 49] [ 3] [418] +23:54:23 [ 52] [ 16] [C13DBC0D30D14510] +23:54:23 ============================================================================ +23:54:23 + + +waiting on router queue for slot.... +23:54:23 Sending to : <0> +23:54:23 ============================================================================ +23:54:24 ============================================================================ +23:54:24 Slot Id : <298> +23:54:24 Transaction Type : RESPONSE +23:54:24 Received From : +23:54:24 ============================================================================ +23:54:24 FNo. Len. Field Value +23:54:24 ============================================================================ +23:54:24 [ 1] [ 4] [0210] +23:54:24 [ 2] [ 16] [6213541000191786] +23:54:24 [ 3] [ 6] [011000] +23:54:24 [ 4] [ 12] [000100000000] +23:54:24 [ 7] [ 10] [0320235444] +23:54:24 [ 11] [ 6] [214660] +23:54:24 [ 12] [ 6] [234850] +23:54:24 [ 13] [ 4] [0320] +23:54:24 [ 15] [ 4] [0320] +23:54:24 [ 18] [ 4] [6011] +23:54:24 [ 19] [ 3] [418] +23:54:24 [ 32] [ 6] [198901] +23:54:24 [ 35] [ 32] [6213541000191786=491212019178392] +23:54:24 [ 37] [ 12] [507923214660] +23:54:24 [ 38] [ 6] [862270] +23:54:24 [ 39] [ 2] [00] +23:54:24 [ 41] [ 8] [00852900] +23:54:24 [ 49] [ 3] [418] +23:54:24 [ 54] [ 40] [1001418C0005500260581002418C000449826058] +23:54:24 ============================================================================ +23:54:24 Sending to : +23:54:24 ============================================================================ +23:54:24 + + +waiting on router queue for slot.... +23:54:26 ============================================================================ +23:54:26 Slot Id : <298> +23:54:26 Transaction Type : RESPONSE +23:54:26 Received From : +23:54:26 ============================================================================ +23:54:26 FNo. Len. Field Value +23:54:26 ============================================================================ +23:54:26 [ 1] [ 4] [0210] +23:54:26 [ 2] [ 16] [6213541000191786] +23:54:26 [ 3] [ 6] [011000] +23:54:26 [ 4] [ 12] [000100000000] +23:54:26 [ 7] [ 10] [0320235444] +23:54:26 [ 11] [ 6] [214660] +23:54:26 [ 12] [ 6] [234850] +23:54:26 [ 13] [ 4] [0320] +23:54:26 [ 15] [ 4] [0320] +23:54:26 [ 18] [ 4] [6011] +23:54:26 [ 19] [ 3] [418] +23:54:26 [ 32] [ 6] [198901] +23:54:26 [ 35] [ 32] [6213541000191786=491212019178392] +23:54:26 [ 37] [ 12] [507923214660] +23:54:26 [ 38] [ 6] [862270] +23:54:26 [ 39] [ 2] [00] +23:54:26 [ 41] [ 8] [00852900] +23:54:26 [ 49] [ 3] [418] +23:54:26 [ 54] [ 40] [1001418C0005500260581002418C000449826058] +23:54:26 ============================================================================ +23:54:26 Calculate Source COMM Id = 5 +23:54:26 ============================================================================ +23:54:26 + + +waiting on router queue for slot.... +23:54:33 ============================================================================ +23:54:33 Slot Id : <300> +23:54:33 Transaction Type : REQUEST +23:54:33 Received From : +23:54:33 ============================================================================ +23:54:33 FNo. Len. Field Value +23:54:33 ============================================================================ +23:54:33 [ 1] [ 4] [0800] +23:54:33 [ 7] [ 10] [0320045341] +23:54:33 [ 11] [ 6] [159185] +23:54:33 [ 70] [ 3] [301] +23:54:33 ============================================================================ +23:54:33 + + +waiting on router queue for slot.... +23:54:33 Sending to : +23:54:33 ============================================================================ +23:54:33 ============================================================================ +23:54:33 Slot Id : <300> +23:54:33 Transaction Type : RESPONSE +23:54:33 Received From : +23:54:33 ============================================================================ +23:54:33 FNo. Len. Field Value +23:54:33 ============================================================================ +23:54:33 [ 1] [ 4] [0810] +23:54:33 [ 7] [ 10] [0320045341] +23:54:33 [ 11] [ 6] [159185] +23:54:33 [ 39] [ 2] [00] +23:54:33 [ 70] [ 3] [301] +23:54:33 ============================================================================ +23:54:33 Calculate Source COMM Id = 2 +23:54:33 ============================================================================ +23:54:33 + + +waiting on router queue for slot.... +23:54:38 ============================================================================ +23:54:38 Slot Id : <281> +23:54:38 Transaction Type : REQUEST +23:54:38 Received From : +23:54:38 ============================================================================ +23:54:38 FNo. Len. Field Value +23:54:38 ============================================================================ +23:54:38 [ 1] [ 4] [0800] +23:54:38 [ 7] [ 10] [0321070628] +23:54:38 [ 11] [ 6] [000628] +23:54:38 [ 37] [ 12] [58000000628] +23:54:38 [ 70] [ 3] [301] +23:54:38 ============================================================================ +23:54:38 + + +waiting on router queue for slot.... +23:54:38 Sending to : +23:54:38 ============================================================================ +23:54:38 ============================================================================ +23:54:38 Slot Id : <281> +23:54:38 Transaction Type : RESPONSE +23:54:38 Received From : +23:54:38 ============================================================================ +23:54:38 FNo. Len. Field Value +23:54:38 ============================================================================ +23:54:38 [ 1] [ 4] [0810] +23:54:38 [ 7] [ 10] [0321070628] +23:54:38 [ 11] [ 6] [000628] +23:54:38 [ 37] [ 12] [580000006280] +23:54:38 [ 39] [ 2] [00] +23:54:38 [ 70] [ 3] [810] +23:54:38 ============================================================================ +23:54:38 Calculate Source COMM Id = 6 +23:54:38 ============================================================================ +23:54:38 + + +waiting on router queue for slot.... +23:54:43 ============================================================================ +23:54:43 Slot Id : <278> +23:54:43 Transaction Type : REQUEST +23:54:43 Received From : +23:54:43 ============================================================================ +23:54:43 FNo. Len. Field Value +23:54:43 ============================================================================ +23:54:43 [ 1] [ 4] [0800] +23:54:43 [ 7] [ 10] [0320045351] +23:54:43 [ 11] [ 6] [159186] +23:54:43 [ 70] [ 3] [301] +23:54:43 ============================================================================ +23:54:43 + + +waiting on router queue for slot.... +23:54:43 Sending to : +23:54:43 ============================================================================ +23:54:43 ============================================================================ +23:54:43 Slot Id : <278> +23:54:43 Transaction Type : RESPONSE +23:54:43 Received From : +23:54:43 ============================================================================ +23:54:43 FNo. Len. Field Value +23:54:43 ============================================================================ +23:54:43 [ 1] [ 4] [0810] +23:54:43 [ 7] [ 10] [0320045351] +23:54:43 [ 11] [ 6] [159186] +23:54:43 [ 39] [ 2] [00] +23:54:43 [ 70] [ 3] [301] +23:54:43 ============================================================================ +23:54:43 Calculate Source COMM Id = 2 +23:54:43 ============================================================================ +23:54:43 + + +waiting on router queue for slot.... +23:54:50 ============================================================================ +23:54:50 Slot Id : <299> +23:54:50 Transaction Type : REQUEST +23:54:50 Received From : +23:54:50 ============================================================================ +23:54:50 FNo. Len. Field Value +23:54:50 ============================================================================ +23:54:50 [ 1] [ 4] [0200] +23:54:50 [ 2] [ 16] [1808930700015100] +23:54:50 [ 3] [ 6] [010000] +23:54:50 [ 4] [ 12] [000010000000] +23:54:50 [ 7] [ 10] [0320235241] +23:54:50 [ 11] [ 6] [958206] +23:54:50 [ 12] [ 6] [235241] +23:54:50 [ 13] [ 4] [0320] +23:54:50 [ 15] [ 4] [0320] +23:54:50 [ 18] [ 4] [6011] +23:54:50 [ 19] [ 3] [418] +23:54:50 [ 22] [ 3] [021] +23:54:50 [ 25] [ 2] [01] +23:54:50 [ 28] [ 9] [D00002000] +23:54:50 [ 32] [ 6] [668899] +23:54:50 [ 35] [ 27] [1808930700015100=1803500617] +23:54:50 [ 37] [ 12] [508002093509] +23:54:50 [ 41] [ 8] [03020021] +23:54:50 [ 42] [ 15] [APT ] +23:54:50 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +23:54:50 [ 49] [ 3] [418] +23:54:50 [ 52] [ 16] [155FCFB32FC02292] +23:54:50 ============================================================================ +23:54:50 + + +waiting on router queue for slot.... +23:54:50 Sending to : +23:54:50 ============================================================================ +23:54:50 Sending to : +23:54:50 ============================================================================ +23:54:50 ============================================================================ +23:54:50 Slot Id : <299> +23:54:50 Transaction Type : REQUEST +23:54:50 Received From : +23:54:50 ============================================================================ +23:54:50 FNo. Len. Field Value +23:54:50 ============================================================================ +23:54:50 [ 1] [ 4] [0200] +23:54:50 [ 2] [ 16] [1808930700015100] +23:54:50 [ 3] [ 6] [010000] +23:54:50 [ 4] [ 12] [000010000000] +23:54:50 [ 7] [ 10] [0320235241] +23:54:50 [ 11] [ 6] [958206] +23:54:50 [ 12] [ 6] [235241] +23:54:50 [ 13] [ 4] [0320] +23:54:50 [ 15] [ 4] [0320] +23:54:50 [ 18] [ 4] [6011] +23:54:50 [ 19] [ 3] [418] +23:54:50 [ 22] [ 3] [021] +23:54:50 [ 25] [ 2] [01] +23:54:50 [ 28] [ 9] [D00002000] +23:54:50 [ 32] [ 6] [668899] +23:54:50 [ 35] [ 27] [1808930700015100=1803500617] +23:54:50 [ 37] [ 12] [508002093509] +23:54:50 [ 41] [ 8] [03020021] +23:54:50 [ 42] [ 15] [APT ] +23:54:50 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +23:54:50 [ 49] [ 3] [418] +23:54:50 [ 52] [ 16] [155FCFB32FC02292] +23:54:50 ============================================================================ +23:54:50 + + +waiting on router queue for slot.... +23:54:50 Sending to : +23:54:50 ============================================================================ +23:54:50 ============================================================================ +23:54:50 Slot Id : <299> +23:54:50 Transaction Type : REQUEST +23:54:50 Received From : +23:54:50 ============================================================================ +23:54:50 FNo. Len. Field Value +23:54:50 ============================================================================ +23:54:50 [ 1] [ 4] [0200] +23:54:50 [ 2] [ 16] [1808930700015100] +23:54:50 [ 3] [ 6] [010000] +23:54:50 [ 4] [ 12] [000010000000] +23:54:50 [ 7] [ 10] [0320235241] +23:54:50 [ 11] [ 6] [958206] +23:54:50 [ 12] [ 6] [235241] +23:54:50 [ 13] [ 4] [0320] +23:54:50 [ 15] [ 4] [0320] +23:54:50 [ 18] [ 4] [6011] +23:54:50 [ 19] [ 3] [418] +23:54:50 [ 22] [ 3] [021] +23:54:50 [ 25] [ 2] [01] +23:54:50 [ 28] [ 9] [D00002000] +23:54:50 [ 32] [ 6] [668899] +23:54:50 [ 35] [ 27] [1808930700015100=1803500617] +23:54:50 [ 37] [ 12] [508002093509] +23:54:50 [ 41] [ 8] [03020021] +23:54:50 [ 42] [ 15] [APT ] +23:54:50 [ 43] [ 40] [ BANK INSTIRUTE KHAMHOUNG ] +23:54:50 [ 49] [ 3] [418] +23:54:50 [ 52] [ 16] [1A3DEEBBF81381E2] +23:54:50 ============================================================================ +23:54:50 + + +waiting on router queue for slot.... +23:54:50 Sending to : <2> +23:54:50 ============================================================================ +23:54:55 ============================================================================ +23:54:55 Slot Id : <257> +23:54:55 Transaction Type : REQUEST +23:54:55 Received From : +23:54:55 ============================================================================ +23:54:55 FNo. Len. Field Value +23:54:55 ============================================================================ +23:54:55 [ 1] [ 4] [0800] +23:54:55 [ 7] [ 10] [0320170242] +23:54:55 [ 11] [ 6] [052901] +23:54:55 [ 37] [ 12] [58000052901] +23:54:55 [ 70] [ 3] [301] +23:54:55 ============================================================================ +23:54:55 + + +waiting on router queue for slot.... +23:54:55 Sending to : +23:54:55 ============================================================================ +23:54:55 ============================================================================ +23:54:55 Slot Id : <257> +23:54:55 Transaction Type : RESPONSE +23:54:55 Received From : +23:54:55 ============================================================================ +23:54:55 FNo. Len. Field Value +23:54:55 ============================================================================ +23:54:55 [ 1] [ 4] [0810] +23:54:55 [ 7] [ 10] [0320170242] +23:54:55 [ 11] [ 6] [052901] +23:54:55 [ 37] [ 12] [580000529010] +23:54:55 [ 39] [ 2] [00] +23:54:55 [ 70] [ 3] [810] +23:54:55 ============================================================================ +23:54:55 Calculate Source COMM Id = 1 +23:54:55 ============================================================================ +23:54:55 + + +waiting on router queue for slot.... +23:54:56 ============================================================================ +23:54:56 Slot Id : <299> +23:54:56 Transaction Type : RESPONSE +23:54:56 Received From : +23:54:56 ============================================================================ +23:54:56 FNo. Len. Field Value +23:54:56 ============================================================================ +23:54:56 [ 1] [ 4] [0210] +23:54:56 [ 2] [ 16] [1808930700015100] +23:54:56 [ 3] [ 6] [010000] +23:54:56 [ 4] [ 12] [000010000000] +23:54:56 [ 6] [ 12] [000010000000] +23:54:56 [ 7] [ 10] [0320235241] +23:54:56 [ 11] [ 6] [958206] +23:54:56 [ 12] [ 6] [235241] +23:54:56 [ 13] [ 4] [0320] +23:54:56 [ 18] [ 4] [6011] +23:54:56 [ 19] [ 3] [418] +23:54:56 [ 22] [ 3] [021] +23:54:56 [ 32] [ 6] [668899] +23:54:56 [ 35] [ 27] [1808930700015100=1803500617] +23:54:56 [ 37] [ 12] [508002093509] +23:54:56 [ 38] [ 6] [958206] +23:54:56 [ 39] [ 2] [00] +23:54:56 [ 41] [ 8] [03020021] +23:54:56 [ 49] [ 3] [418] +23:54:56 [ 52] [ 16] [1A3DEEBBF81381E2] +23:54:56 [ 54] [ 20] [1001418C000001838900] +23:54:56 ============================================================================ +23:54:56 Sending to : +23:54:56 ============================================================================ +23:54:56 + + +waiting on router queue for slot.... +23:54:56 ============================================================================ +23:54:56 Slot Id : <308> +23:54:56 Transaction Type : REQUEST +23:54:56 Received From : +23:54:56 ============================================================================ +23:54:56 FNo. Len. Field Value +23:54:56 ============================================================================ +23:54:56 [ 1] [ 4] [0800] +23:54:56 [ 2] [ 5] [02531] +23:54:56 [ 3] [ 6] [579238] +23:54:56 [ 7] [ 10] [0320165456] +23:54:56 [ 11] [ 6] [807800] +23:54:56 [ 15] [ 10] [0320165456] +23:54:56 [ 37] [ 11] [57923807800] +23:54:56 [ 70] [ 3] [001] +23:54:56 ============================================================================ +23:54:56 + + +waiting on router queue for slot.... +23:54:56 ============================================================================ +23:54:56 Slot Id : <308> +23:54:56 Transaction Type : RESPONSE +23:54:56 Received From : +23:54:56 ============================================================================ +23:54:56 FNo. Len. Field Value +23:54:56 ============================================================================ +23:54:56 [ 1] [ 4] [0810] +23:54:56 [ 7] [ 10] [0320165456] +23:54:56 [ 11] [ 6] [807800] +23:54:56 [ 15] [ 4] [0320] +23:54:56 [ 37] [ 12] [57923807800] +23:54:56 [ 39] [ 2] [00] +23:54:56 [ 70] [ 3] [001] +23:54:56 ============================================================================ +23:54:56 Sending to : +23:54:56 ============================================================================ +23:54:56 + + +waiting on router queue for slot.... +23:54:57 ============================================================================ +23:54:57 Slot Id : <299> +23:54:57 Transaction Type : RESPONSE +23:54:57 Received From : +23:54:57 ============================================================================ +23:54:57 FNo. Len. Field Value +23:54:57 ============================================================================ +23:54:57 [ 1] [ 4] [0210] +23:54:57 [ 2] [ 16] [1808930700015100] +23:54:57 [ 3] [ 6] [010000] +23:54:57 [ 4] [ 12] [000010000000] +23:54:57 [ 6] [ 12] [000010000000] +23:54:57 [ 7] [ 10] [0320235241] +23:54:57 [ 11] [ 6] [958206] +23:54:57 [ 12] [ 6] [235241] +23:54:57 [ 13] [ 4] [0320] +23:54:57 [ 18] [ 4] [6011] +23:54:57 [ 19] [ 3] [418] +23:54:57 [ 22] [ 3] [021] +23:54:57 [ 32] [ 6] [668899] +23:54:57 [ 35] [ 27] [1808930700015100=1803500617] +23:54:57 [ 37] [ 12] [508002093509] +23:54:57 [ 38] [ 6] [958206] +23:54:57 [ 39] [ 2] [00] +23:54:57 [ 41] [ 8] [03020021] +23:54:57 [ 49] [ 3] [418] +23:54:57 [ 52] [ 16] [1A3DEEBBF81381E2] +23:54:57 [ 54] [ 20] [1001418C000001838900] +23:54:57 ============================================================================ +23:54:57 Calculate Source COMM Id = 4 +23:54:57 ============================================================================ +23:54:57 + + +waiting on router queue for slot.... +23:55:06 ============================================================================ +23:55:06 Slot Id : <295> +23:55:06 Transaction Type : REQUEST +23:55:06 Received From : +23:55:06 ============================================================================ +23:55:06 FNo. Len. Field Value +23:55:06 ============================================================================ +23:55:06 [ 1] [ 4] [0800] +23:55:06 [ 7] [ 10] [0320045414] +23:55:06 [ 11] [ 6] [159187] +23:55:06 [ 70] [ 3] [301] +23:55:06 ============================================================================ +23:55:06 + + +waiting on router queue for slot.... +23:55:06 Sending to : +23:55:06 ============================================================================ +23:55:06 ============================================================================ +23:55:06 Slot Id : <295> +23:55:06 Transaction Type : RESPONSE +23:55:06 Received From : +23:55:06 ============================================================================ +23:55:06 FNo. Len. Field Value +23:55:06 ============================================================================ +23:55:06 [ 1] [ 4] [0810] +23:55:06 [ 7] [ 10] [0320045414] +23:55:06 [ 11] [ 6] [159187] +23:55:06 [ 39] [ 2] [00] +23:55:06 [ 70] [ 3] [301] +23:55:06 ============================================================================ +23:55:06 Calculate Source COMM Id = 2 +23:55:06 ============================================================================ +23:55:06 + + +waiting on router queue for slot.... +23:55:21 ============================================================================ +23:55:21 Slot Id : <286> +23:55:21 Transaction Type : REQUEST +23:55:21 Received From : +23:55:21 ============================================================================ +23:55:21 FNo. Len. Field Value +23:55:21 ============================================================================ +23:55:21 [ 1] [ 4] [0800] +23:55:21 [ 7] [ 10] [0320045428] +23:55:21 [ 11] [ 6] [159188] +23:55:21 [ 70] [ 3] [301] +23:55:21 ============================================================================ +23:55:21 + + +waiting on router queue for slot.... +23:55:21 Sending to : +23:55:21 ============================================================================ +23:55:21 ============================================================================ +23:55:21 Slot Id : <286> +23:55:21 Transaction Type : RESPONSE +23:55:21 Received From : +23:55:21 ============================================================================ +23:55:21 FNo. Len. Field Value +23:55:21 ============================================================================ +23:55:21 [ 1] [ 4] [0810] +23:55:21 [ 7] [ 10] [0320045428] +23:55:21 [ 11] [ 6] [159188] +23:55:21 [ 39] [ 2] [00] +23:55:21 [ 70] [ 3] [301] +23:55:21 ============================================================================ +23:55:21 Calculate Source COMM Id = 2 +23:55:21 ============================================================================ +23:55:21 + + +waiting on router queue for slot.... +23:55:36 ============================================================================ +23:55:36 Slot Id : <296> +23:55:36 Transaction Type : REQUEST +23:55:36 Received From : +23:55:36 ============================================================================ +23:55:36 FNo. Len. Field Value +23:55:36 ============================================================================ +23:55:36 [ 1] [ 4] [0800] +23:55:36 [ 7] [ 10] [0320045444] +23:55:36 [ 11] [ 6] [159189] +23:55:36 [ 70] [ 3] [301] +23:55:36 ============================================================================ +23:55:36 + + +waiting on router queue for slot.... +23:55:36 Sending to : +23:55:36 ============================================================================ +23:55:36 ============================================================================ +23:55:36 Slot Id : <296> +23:55:36 Transaction Type : RESPONSE +23:55:36 Received From : +23:55:36 ============================================================================ +23:55:36 FNo. Len. Field Value +23:55:36 ============================================================================ +23:55:36 [ 1] [ 4] [0810] +23:55:36 [ 7] [ 10] [0320045444] +23:55:36 [ 11] [ 6] [159189] +23:55:36 [ 39] [ 2] [00] +23:55:36 [ 70] [ 3] [301] +23:55:36 ============================================================================ +23:55:36 Calculate Source COMM Id = 2 +23:55:36 ============================================================================ +23:55:36 + + +waiting on router queue for slot.... +23:55:43 ============================================================================ +23:55:43 Slot Id : <283> +23:55:43 Transaction Type : REQUEST +23:55:43 Received From : +23:55:43 ============================================================================ +23:55:43 FNo. Len. Field Value +23:55:43 ============================================================================ +23:55:43 [ 1] [ 4] [0800] +23:55:43 [ 7] [ 10] [0321070733] +23:55:43 [ 11] [ 6] [000733] +23:55:43 [ 37] [ 12] [58000000733] +23:55:43 [ 70] [ 3] [301] +23:55:43 ============================================================================ +23:55:43 + + +waiting on router queue for slot.... +23:55:43 Sending to : +23:55:43 ============================================================================ +23:55:43 ============================================================================ +23:55:43 Slot Id : <283> +23:55:43 Transaction Type : RESPONSE +23:55:43 Received From : +23:55:43 ============================================================================ +23:55:43 FNo. Len. Field Value +23:55:43 ============================================================================ +23:55:43 [ 1] [ 4] [0810] +23:55:43 [ 7] [ 10] [0321070733] +23:55:43 [ 11] [ 6] [000733] +23:55:43 [ 37] [ 12] [580000007330] +23:55:43 [ 39] [ 2] [00] +23:55:43 [ 70] [ 3] [810] +23:55:43 ============================================================================ +23:55:43 Calculate Source COMM Id = 6 +23:55:43 ============================================================================ +23:55:43 + + +waiting on router queue for slot.... +23:55:46 ============================================================================ +23:55:46 Slot Id : <306> +23:55:46 Transaction Type : REQUEST +23:55:46 Received From : +23:55:46 ============================================================================ +23:55:46 FNo. Len. Field Value +23:55:46 ============================================================================ +23:55:46 [ 1] [ 4] [0800] +23:55:46 [ 7] [ 10] [0320045454] +23:55:46 [ 11] [ 6] [159190] +23:55:46 [ 70] [ 3] [301] +23:55:46 ============================================================================ +23:55:46 + + +waiting on router queue for slot.... +23:55:46 Sending to : +23:55:46 ============================================================================ +23:55:46 ============================================================================ +23:55:46 Slot Id : <306> +23:55:46 Transaction Type : RESPONSE +23:55:46 Received From : +23:55:46 ============================================================================ +23:55:46 FNo. Len. Field Value +23:55:46 ============================================================================ +23:55:46 [ 1] [ 4] [0810] +23:55:46 [ 7] [ 10] [0320045454] +23:55:46 [ 11] [ 6] [159190] +23:55:46 [ 39] [ 2] [00] +23:55:46 [ 70] [ 3] [301] +23:55:46 ============================================================================ +23:55:46 Calculate Source COMM Id = 2 +23:55:46 ============================================================================ +23:55:46 + + +waiting on router queue for slot.... +23:55:57 ============================================================================ +23:55:57 Slot Id : <311> +23:55:57 Transaction Type : REQUEST +23:55:57 Received From : +23:55:57 ============================================================================ +23:55:57 FNo. Len. Field Value +23:55:57 ============================================================================ +23:55:57 [ 1] [ 4] [0800] +23:55:57 [ 7] [ 10] [0320045505] +23:55:57 [ 11] [ 6] [159191] +23:55:57 [ 70] [ 3] [301] +23:55:57 ============================================================================ +23:55:57 + + +waiting on router queue for slot.... +23:55:57 Sending to : +23:55:57 ============================================================================ +23:55:57 ============================================================================ +23:55:57 Slot Id : <311> +23:55:57 Transaction Type : RESPONSE +23:55:57 Received From : +23:55:57 ============================================================================ +23:55:57 FNo. Len. Field Value +23:55:57 ============================================================================ +23:55:57 [ 1] [ 4] [0810] +23:55:57 [ 7] [ 10] [0320045505] +23:55:57 [ 11] [ 6] [159191] +23:55:57 [ 39] [ 2] [00] +23:55:57 [ 70] [ 3] [301] +23:55:57 ============================================================================ +23:55:57 Calculate Source COMM Id = 2 +23:55:57 ============================================================================ +23:55:57 + + +waiting on router queue for slot.... +23:55:58 ============================================================================ +23:55:58 Slot Id : <312> +23:55:58 Transaction Type : REQUEST +23:55:58 Received From : +23:55:58 ============================================================================ +23:55:58 FNo. Len. Field Value +23:55:58 ============================================================================ +23:55:58 [ 1] [ 4] [0800] +23:55:58 [ 2] [ 5] [02531] +23:55:58 [ 3] [ 6] [579238] +23:55:58 [ 7] [ 10] [0320165558] +23:55:58 [ 11] [ 6] [807801] +23:55:58 [ 15] [ 10] [0320165558] +23:55:58 [ 37] [ 11] [57923807801] +23:55:58 [ 70] [ 3] [001] +23:55:58 ============================================================================ +23:55:58 + + +waiting on router queue for slot.... +23:55:58 ============================================================================ +23:55:58 Slot Id : <312> +23:55:58 Transaction Type : RESPONSE +23:55:58 Received From : +23:55:58 ============================================================================ +23:55:58 FNo. Len. Field Value +23:55:58 ============================================================================ +23:55:58 [ 1] [ 4] [0810] +23:55:58 [ 7] [ 10] [0320165558] +23:55:58 [ 11] [ 6] [807801] +23:55:58 [ 15] [ 4] [0320] +23:55:58 [ 37] [ 12] [57923807801] +23:55:58 [ 39] [ 2] [00] +23:55:58 [ 70] [ 3] [001] +23:55:58 ============================================================================ +23:55:58 Sending to : +23:55:58 ============================================================================ +23:55:58 + + +waiting on router queue for slot.... +23:56:13 ============================================================================ +23:56:13 Slot Id : <307> +23:56:13 Transaction Type : REQUEST +23:56:13 Received From : +23:56:13 ============================================================================ +23:56:13 FNo. Len. Field Value +23:56:13 ============================================================================ +23:56:13 [ 1] [ 4] [0800] +23:56:13 [ 7] [ 10] [0320045521] +23:56:13 [ 11] [ 6] [159192] +23:56:13 [ 70] [ 3] [301] +23:56:13 ============================================================================ +23:56:13 + + +waiting on router queue for slot.... +23:56:13 Sending to : +23:56:13 ============================================================================ +23:56:13 ============================================================================ +23:56:13 Slot Id : <307> +23:56:13 Transaction Type : RESPONSE +23:56:13 Received From : +23:56:13 ============================================================================ +23:56:13 FNo. Len. Field Value +23:56:13 ============================================================================ +23:56:13 [ 1] [ 4] [0810] +23:56:13 [ 7] [ 10] [0320045521] +23:56:13 [ 11] [ 6] [159192] +23:56:13 [ 39] [ 2] [00] +23:56:13 [ 70] [ 3] [301] +23:56:13 ============================================================================ +23:56:13 Calculate Source COMM Id = 2 +23:56:13 ============================================================================ +23:56:13 + + +waiting on router queue for slot.... +23:56:21 ============================================================================ +23:56:21 Slot Id : <288> +23:56:21 Transaction Type : REQUEST +23:56:21 Received From : +23:56:21 ============================================================================ +23:56:21 FNo. Len. Field Value +23:56:21 ============================================================================ +23:56:21 [ 1] [ 4] [0800] +23:56:21 [ 7] [ 10] [0320165412] +23:56:21 [ 11] [ 6] [075481] +23:56:21 [ 37] [ 12] [57923075481] +23:56:21 [ 70] [ 3] [301] +23:56:21 ============================================================================ +23:56:21 + + +waiting on router queue for slot.... +23:56:21 Sending to : +23:56:21 ============================================================================ +23:56:21 ============================================================================ +23:56:21 Slot Id : <288> +23:56:21 Transaction Type : RESPONSE +23:56:21 Received From : +23:56:21 ============================================================================ +23:56:21 FNo. Len. Field Value +23:56:21 ============================================================================ +23:56:21 [ 1] [ 4] [0810] +23:56:21 [ 7] [ 10] [0320165412] +23:56:21 [ 11] [ 6] [075481] +23:56:21 [ 37] [ 12] [579230754810] +23:56:21 [ 39] [ 2] [00] +23:56:21 [ 70] [ 3] [810] +23:56:21 ============================================================================ +23:56:21 Calculate Source COMM Id = 4 +23:56:21 ============================================================================ +23:56:21 + + +waiting on router queue for slot.... +23:56:28 ============================================================================ +23:56:28 Slot Id : <310> +23:56:28 Transaction Type : REQUEST +23:56:28 Received From : +23:56:28 ============================================================================ +23:56:28 FNo. Len. Field Value +23:56:28 ============================================================================ +23:56:28 [ 1] [ 4] [0800] +23:56:28 [ 7] [ 10] [0320045536] +23:56:28 [ 11] [ 6] [159193] +23:56:28 [ 70] [ 3] [301] +23:56:28 ============================================================================ +23:56:28 + + +waiting on router queue for slot.... +23:56:28 Sending to : +23:56:28 ============================================================================ +23:56:28 ============================================================================ +23:56:28 Slot Id : <310> +23:56:28 Transaction Type : RESPONSE +23:56:28 Received From : +23:56:28 ============================================================================ +23:56:28 FNo. Len. Field Value +23:56:28 ============================================================================ +23:56:28 [ 1] [ 4] [0810] +23:56:28 [ 7] [ 10] [0320045536] +23:56:28 [ 11] [ 6] [159193] +23:56:28 [ 39] [ 2] [00] +23:56:28 [ 70] [ 3] [301] +23:56:28 ============================================================================ +23:56:28 Calculate Source COMM Id = 2 +23:56:28 ============================================================================ +23:56:28 + + +waiting on router queue for slot.... +23:56:38 ============================================================================ +23:56:38 Slot Id : <316> +23:56:38 Transaction Type : REQUEST +23:56:38 Received From : +23:56:38 ============================================================================ +23:56:38 FNo. Len. Field Value +23:56:38 ============================================================================ +23:56:38 [ 1] [ 4] [0800] +23:56:38 [ 7] [ 10] [0320045546] +23:56:38 [ 11] [ 6] [159194] +23:56:38 [ 70] [ 3] [301] +23:56:38 ============================================================================ +23:56:38 + + +waiting on router queue for slot.... +23:56:38 Sending to : +23:56:38 ============================================================================ +23:56:38 ============================================================================ +23:56:38 Slot Id : <316> +23:56:38 Transaction Type : RESPONSE +23:56:38 Received From : +23:56:38 ============================================================================ +23:56:38 FNo. Len. Field Value +23:56:38 ============================================================================ +23:56:38 [ 1] [ 4] [0810] +23:56:38 [ 7] [ 10] [0320045546] +23:56:38 [ 11] [ 6] [159194] +23:56:38 [ 39] [ 2] [00] +23:56:38 [ 70] [ 3] [301] +23:56:38 ============================================================================ +23:56:38 Calculate Source COMM Id = 2 +23:56:38 ============================================================================ +23:56:38 + + +waiting on router queue for slot.... +23:56:48 ============================================================================ +23:56:48 Slot Id : <317> +23:56:48 Transaction Type : REQUEST +23:56:48 Received From : +23:56:48 ============================================================================ +23:56:48 FNo. Len. Field Value +23:56:48 ============================================================================ +23:56:48 [ 1] [ 4] [0800] +23:56:48 [ 7] [ 10] [0321070838] +23:56:48 [ 11] [ 6] [000838] +23:56:48 [ 37] [ 12] [58000000838] +23:56:48 [ 70] [ 3] [301] +23:56:48 ============================================================================ +23:56:48 + + +waiting on router queue for slot.... +23:56:48 Sending to : +23:56:48 ============================================================================ +23:56:48 ============================================================================ +23:56:48 Slot Id : <317> +23:56:48 Transaction Type : RESPONSE +23:56:48 Received From : +23:56:48 ============================================================================ +23:56:48 FNo. Len. Field Value +23:56:48 ============================================================================ +23:56:48 [ 1] [ 4] [0810] +23:56:48 [ 7] [ 10] [0321070838] +23:56:48 [ 11] [ 6] [000838] +23:56:48 [ 37] [ 12] [580000008380] +23:56:48 [ 39] [ 2] [00] +23:56:48 [ 70] [ 3] [810] +23:56:48 ============================================================================ +23:56:48 Calculate Source COMM Id = 6 +23:56:48 ============================================================================ +23:56:48 + + +waiting on router queue for slot.... +23:56:49 ============================================================================ +23:56:49 Slot Id : <325> +23:56:49 Transaction Type : REQUEST +23:56:49 Received From : +23:56:49 ============================================================================ +23:56:49 FNo. Len. Field Value +23:56:49 ============================================================================ +23:56:49 [ 1] [ 4] [0800] +23:56:49 [ 7] [ 10] [0320045557] +23:56:49 [ 11] [ 6] [159195] +23:56:49 [ 70] [ 3] [301] +23:56:49 ============================================================================ +23:56:49 + + +waiting on router queue for slot.... +23:56:49 Sending to : +23:56:49 ============================================================================ +23:56:49 ============================================================================ +23:56:49 Slot Id : <325> +23:56:49 Transaction Type : RESPONSE +23:56:49 Received From : +23:56:49 ============================================================================ +23:56:49 FNo. Len. Field Value +23:56:49 ============================================================================ +23:56:49 [ 1] [ 4] [0810] +23:56:49 [ 7] [ 10] [0320045557] +23:56:49 [ 11] [ 6] [159195] +23:56:49 [ 39] [ 2] [00] +23:56:49 [ 70] [ 3] [301] +23:56:49 ============================================================================ +23:56:49 Calculate Source COMM Id = 2 +23:56:49 ============================================================================ +23:56:49 + + +waiting on router queue for slot.... +23:56:59 ============================================================================ +23:56:59 Slot Id : <322> +23:56:59 Transaction Type : REQUEST +23:56:59 Received From : +23:56:59 ============================================================================ +23:56:59 FNo. Len. Field Value +23:56:59 ============================================================================ +23:56:59 [ 1] [ 4] [0800] +23:56:59 [ 7] [ 10] [0320045607] +23:56:59 [ 11] [ 6] [159196] +23:56:59 [ 70] [ 3] [301] +23:56:59 ============================================================================ +23:56:59 + + +waiting on router queue for slot.... +23:56:59 Sending to : +23:56:59 ============================================================================ +23:56:59 ============================================================================ +23:56:59 Slot Id : <322> +23:56:59 Transaction Type : RESPONSE +23:56:59 Received From : +23:56:59 ============================================================================ +23:56:59 FNo. Len. Field Value +23:56:59 ============================================================================ +23:56:59 [ 1] [ 4] [0810] +23:56:59 [ 7] [ 10] [0320045607] +23:56:59 [ 11] [ 6] [159196] +23:56:59 [ 39] [ 2] [00] +23:56:59 [ 70] [ 3] [301] +23:56:59 ============================================================================ +23:56:59 Calculate Source COMM Id = 2 +23:56:59 ============================================================================ +23:56:59 + + +waiting on router queue for slot.... +23:57:00 ============================================================================ +23:57:00 Slot Id : <318> +23:57:00 Transaction Type : REQUEST +23:57:00 Received From : +23:57:00 ============================================================================ +23:57:00 FNo. Len. Field Value +23:57:00 ============================================================================ +23:57:00 [ 1] [ 4] [0800] +23:57:00 [ 2] [ 5] [02531] +23:57:00 [ 3] [ 6] [579238] +23:57:00 [ 7] [ 10] [0320165700] +23:57:00 [ 11] [ 6] [807802] +23:57:00 [ 15] [ 10] [0320165700] +23:57:00 [ 37] [ 11] [57923807802] +23:57:00 [ 70] [ 3] [001] +23:57:00 ============================================================================ +23:57:00 + + +waiting on router queue for slot.... +23:57:00 ============================================================================ +23:57:00 Slot Id : <318> +23:57:00 Transaction Type : RESPONSE +23:57:00 Received From : +23:57:00 ============================================================================ +23:57:00 FNo. Len. Field Value +23:57:00 ============================================================================ +23:57:00 [ 1] [ 4] [0810] +23:57:00 [ 7] [ 10] [0320165700] +23:57:00 [ 11] [ 6] [807802] +23:57:00 [ 15] [ 4] [0320] +23:57:00 [ 37] [ 12] [57923807802] +23:57:00 [ 39] [ 2] [00] +23:57:00 [ 70] [ 3] [001] +23:57:00 ============================================================================ +23:57:00 Sending to : +23:57:00 ============================================================================ +23:57:00 + + +waiting on router queue for slot.... +23:57:10 ============================================================================ +23:57:10 Slot Id : <297> +23:57:10 Transaction Type : REQUEST +23:57:10 Received From : +23:57:10 ============================================================================ +23:57:10 FNo. Len. Field Value +23:57:10 ============================================================================ +23:57:10 [ 1] [ 4] [0800] +23:57:10 [ 7] [ 10] [0320045618] +23:57:10 [ 11] [ 6] [159197] +23:57:10 [ 70] [ 3] [301] +23:57:10 ============================================================================ +23:57:10 + + +waiting on router queue for slot.... +23:57:10 Sending to : +23:57:10 ============================================================================ +23:57:10 ============================================================================ +23:57:10 Slot Id : <297> +23:57:10 Transaction Type : RESPONSE +23:57:10 Received From : +23:57:10 ============================================================================ +23:57:10 FNo. Len. Field Value +23:57:10 ============================================================================ +23:57:10 [ 1] [ 4] [0810] +23:57:10 [ 7] [ 10] [0320045618] +23:57:10 [ 11] [ 6] [159197] +23:57:10 [ 39] [ 2] [00] +23:57:10 [ 70] [ 3] [301] +23:57:10 ============================================================================ +23:57:10 Calculate Source COMM Id = 2 +23:57:10 ============================================================================ +23:57:10 + + +waiting on router queue for slot.... +23:57:25 ============================================================================ +23:57:25 Slot Id : <289> +23:57:25 Transaction Type : REQUEST +23:57:25 Received From : +23:57:25 ============================================================================ +23:57:25 FNo. Len. Field Value +23:57:25 ============================================================================ +23:57:25 [ 1] [ 4] [0800] +23:57:25 [ 7] [ 10] [0320045633] +23:57:25 [ 11] [ 6] [159198] +23:57:25 [ 70] [ 3] [301] +23:57:25 ============================================================================ +23:57:25 + + +waiting on router queue for slot.... +23:57:25 Sending to : +23:57:25 ============================================================================ +23:57:25 ============================================================================ +23:57:25 Slot Id : <289> +23:57:25 Transaction Type : RESPONSE +23:57:25 Received From : +23:57:25 ============================================================================ +23:57:25 FNo. Len. Field Value +23:57:25 ============================================================================ +23:57:25 [ 1] [ 4] [0810] +23:57:25 [ 7] [ 10] [0320045633] +23:57:25 [ 11] [ 6] [159198] +23:57:25 [ 39] [ 2] [00] +23:57:25 [ 70] [ 3] [301] +23:57:25 ============================================================================ +23:57:25 Calculate Source COMM Id = 2 +23:57:25 ============================================================================ +23:57:25 + + +waiting on router queue for slot.... +23:57:33 ============================================================================ +23:57:33 Slot Id : <315> +23:57:33 Transaction Type : REQUEST +23:57:33 Received From : +23:57:33 ============================================================================ +23:57:33 FNo. Len. Field Value +23:57:33 ============================================================================ +23:57:33 [ 1] [ 4] [0200] +23:57:33 [ 2] [ 16] [6688990040055194] +23:57:33 [ 3] [ 6] [010000] +23:57:33 [ 4] [ 12] [000005000000] +23:57:33 [ 7] [ 10] [0320235729] +23:57:33 [ 11] [ 6] [849855] +23:57:33 [ 12] [ 6] [235729] +23:57:33 [ 13] [ 4] [0320] +23:57:33 [ 15] [ 4] [0320] +23:57:33 [ 18] [ 4] [6011] +23:57:33 [ 22] [ 3] [900] +23:57:33 [ 25] [ 2] [02] +23:57:33 [ 28] [ 9] [D00002000] +23:57:33 [ 32] [ 6] [621354] +23:57:33 [ 35] [ 37] [6688990040055194=97121261118166500000] +23:57:33 [ 37] [ 12] [507903939371] +23:57:33 [ 41] [ 8] [01010900] +23:57:33 [ 42] [ 15] [NATIVE ] +23:57:33 [ 43] [ 40] [Bank KM9 Xatthany LAO] +23:57:33 [ 49] [ 3] [418] +23:57:33 [ 52] [ 16] [08CA5721B99B965D] +23:57:33 ============================================================================ +23:57:33 + + +waiting on router queue for slot.... +23:57:33 Sending to : +23:57:33 ============================================================================ +23:57:33 Sending to : +23:57:33 ============================================================================ +23:57:33 ============================================================================ +23:57:33 Slot Id : <315> +23:57:33 Transaction Type : REQUEST +23:57:33 Received From : +23:57:33 ============================================================================ +23:57:33 FNo. Len. Field Value +23:57:33 ============================================================================ +23:57:33 [ 1] [ 4] [0200] +23:57:33 [ 2] [ 16] [6688990040055194] +23:57:33 [ 3] [ 6] [010000] +23:57:33 [ 4] [ 12] [000005000000] +23:57:33 [ 7] [ 10] [0320235729] +23:57:33 [ 11] [ 6] [849855] +23:57:33 [ 12] [ 6] [235729] +23:57:33 [ 13] [ 4] [0320] +23:57:33 [ 15] [ 4] [0320] +23:57:33 [ 18] [ 4] [6011] +23:57:33 [ 22] [ 3] [900] +23:57:33 [ 25] [ 2] [02] +23:57:33 [ 28] [ 9] [D00002000] +23:57:33 [ 32] [ 6] [621354] +23:57:33 [ 35] [ 37] [6688990040055194=97121261118166500000] +23:57:33 [ 37] [ 12] [507903939371] +23:57:33 [ 41] [ 8] [01010900] +23:57:33 [ 42] [ 15] [NATIVE ] +23:57:33 [ 43] [ 40] [Bank KM9 Xatthany LAO] +23:57:33 [ 49] [ 3] [418] +23:57:33 [ 52] [ 16] [08CA5721B99B965D] +23:57:33 ============================================================================ +23:57:33 + + +waiting on router queue for slot.... +23:57:33 Sending to : +23:57:33 ============================================================================ +23:57:33 ============================================================================ +23:57:33 Slot Id : <315> +23:57:33 Transaction Type : REQUEST +23:57:33 Received From : +23:57:33 ============================================================================ +23:57:33 FNo. Len. Field Value +23:57:33 ============================================================================ +23:57:33 [ 1] [ 4] [0200] +23:57:33 [ 2] [ 16] [6688990040055194] +23:57:33 [ 3] [ 6] [010000] +23:57:33 [ 4] [ 12] [000005000000] +23:57:33 [ 7] [ 10] [0320235729] +23:57:33 [ 11] [ 6] [849855] +23:57:33 [ 12] [ 6] [235729] +23:57:33 [ 13] [ 4] [0320] +23:57:33 [ 15] [ 4] [0320] +23:57:33 [ 18] [ 4] [6011] +23:57:33 [ 22] [ 3] [900] +23:57:33 [ 25] [ 2] [02] +23:57:33 [ 28] [ 9] [D00002000] +23:57:33 [ 32] [ 6] [621354] +23:57:33 [ 35] [ 37] [6688990040055194=97121261118166500000] +23:57:33 [ 37] [ 12] [507903939371] +23:57:33 [ 41] [ 8] [01010900] +23:57:33 [ 42] [ 15] [NATIVE ] +23:57:33 [ 43] [ 40] [Bank KM9 Xatthany LAO] +23:57:33 [ 49] [ 3] [418] +23:57:33 [ 52] [ 16] [8D4D1349E2BDB73E] +23:57:33 ============================================================================ +23:57:33 + + +waiting on router queue for slot.... +23:57:33 Sending to : <4> +23:57:33 ============================================================================ +23:57:35 ============================================================================ +23:57:35 Slot Id : <315> +23:57:35 Transaction Type : RESPONSE +23:57:35 Received From : +23:57:35 ============================================================================ +23:57:35 FNo. Len. Field Value +23:57:35 ============================================================================ +23:57:35 [ 1] [ 4] [0210] +23:57:35 [ 2] [ 16] [6688990040055194] +23:57:35 [ 3] [ 6] [010000] +23:57:35 [ 4] [ 12] [000005000000] +23:57:35 [ 11] [ 6] [849855] +23:57:35 [ 12] [ 6] [235729] +23:57:35 [ 15] [ 4] [0320] +23:57:35 [ 18] [ 4] [6011] +23:57:35 [ 32] [ 6] [621354] +23:57:35 [ 35] [ 37] [6688990040055194=97121261118166500000] +23:57:35 [ 37] [ 12] [507903939371] +23:57:35 [ 38] [ 6] [136019] +23:57:35 [ 39] [ 2] [00] +23:57:35 [ 41] [ 8] [01010900] +23:57:35 [ 49] [ 3] [418] +23:57:35 [ 54] [ 20] [0002418C000002521700] +23:57:35 ============================================================================ +23:57:35 Sending to : +23:57:35 ============================================================================ +23:57:35 + + +waiting on router queue for slot.... +23:57:36 ============================================================================ +23:57:36 Slot Id : <315> +23:57:36 Transaction Type : RESPONSE +23:57:36 Received From : +23:57:36 ============================================================================ +23:57:36 FNo. Len. Field Value +23:57:36 ============================================================================ +23:57:36 [ 1] [ 4] [0210] +23:57:36 [ 2] [ 16] [6688990040055194] +23:57:36 [ 3] [ 6] [010000] +23:57:36 [ 4] [ 12] [000005000000] +23:57:36 [ 11] [ 6] [849855] +23:57:36 [ 12] [ 6] [235729] +23:57:36 [ 15] [ 4] [0320] +23:57:36 [ 18] [ 4] [6011] +23:57:36 [ 32] [ 6] [621354] +23:57:36 [ 35] [ 37] [6688990040055194=97121261118166500000] +23:57:36 [ 37] [ 12] [507903939371] +23:57:36 [ 38] [ 6] [136019] +23:57:36 [ 39] [ 2] [00] +23:57:36 [ 41] [ 8] [01010900] +23:57:36 [ 49] [ 3] [418] +23:57:36 [ 54] [ 20] [0002418C000002521700] +23:57:36 ============================================================================ +23:57:36 Calculate Source COMM Id = 0 +23:57:36 ============================================================================ +23:57:36 + + +waiting on router queue for slot.... +23:57:38 ============================================================================ +23:57:38 Slot Id : <304> +23:57:38 Transaction Type : REQUEST +23:57:38 Received From : +23:57:38 ============================================================================ +23:57:38 FNo. Len. Field Value +23:57:38 ============================================================================ +23:57:38 [ 1] [ 4] [0800] +23:57:38 [ 7] [ 10] [0320045646] +23:57:38 [ 11] [ 6] [159199] +23:57:38 [ 70] [ 3] [301] +23:57:38 ============================================================================ +23:57:38 + + +waiting on router queue for slot.... +23:57:38 Sending to : +23:57:38 ============================================================================ +23:57:38 ============================================================================ +23:57:38 Slot Id : <304> +23:57:38 Transaction Type : RESPONSE +23:57:38 Received From : +23:57:38 ============================================================================ +23:57:38 FNo. Len. Field Value +23:57:38 ============================================================================ +23:57:38 [ 1] [ 4] [0810] +23:57:38 [ 7] [ 10] [0320045646] +23:57:38 [ 11] [ 6] [159199] +23:57:38 [ 39] [ 2] [00] +23:57:38 [ 70] [ 3] [301] +23:57:38 ============================================================================ +23:57:38 Calculate Source COMM Id = 2 +23:57:38 ============================================================================ +23:57:38 + + +waiting on router queue for slot.... +23:57:48 ============================================================================ +23:57:48 Slot Id : <326> +23:57:48 Transaction Type : REQUEST +23:57:48 Received From : +23:57:48 ============================================================================ +23:57:48 FNo. Len. Field Value +23:57:48 ============================================================================ +23:57:48 [ 1] [ 4] [0800] +23:57:48 [ 7] [ 10] [0320045656] +23:57:48 [ 11] [ 6] [159200] +23:57:48 [ 70] [ 3] [301] +23:57:48 ============================================================================ +23:57:48 + + +waiting on router queue for slot.... +23:57:48 Sending to : +23:57:48 ============================================================================ +23:57:48 ============================================================================ +23:57:48 Slot Id : <326> +23:57:48 Transaction Type : RESPONSE +23:57:48 Received From : +23:57:48 ============================================================================ +23:57:48 FNo. Len. Field Value +23:57:48 ============================================================================ +23:57:48 [ 1] [ 4] [0810] +23:57:48 [ 7] [ 10] [0320045656] +23:57:48 [ 11] [ 6] [159200] +23:57:48 [ 39] [ 2] [00] +23:57:48 [ 70] [ 3] [301] +23:57:48 ============================================================================ +23:57:48 Calculate Source COMM Id = 2 +23:57:48 ============================================================================ +23:57:48 + + +waiting on router queue for slot.... +23:57:53 ============================================================================ +23:57:53 Slot Id : <291> +23:57:53 Transaction Type : REQUEST +23:57:53 Received From : +23:57:53 ============================================================================ +23:57:53 FNo. Len. Field Value +23:57:53 ============================================================================ +23:57:53 [ 1] [ 4] [0800] +23:57:53 [ 7] [ 10] [0321070943] +23:57:53 [ 11] [ 6] [000943] +23:57:53 [ 37] [ 12] [58000000943] +23:57:53 [ 70] [ 3] [301] +23:57:53 ============================================================================ +23:57:53 + + +waiting on router queue for slot.... +23:57:53 Sending to : +23:57:53 ============================================================================ +23:57:53 ============================================================================ +23:57:53 Slot Id : <291> +23:57:53 Transaction Type : RESPONSE +23:57:53 Received From : +23:57:53 ============================================================================ +23:57:53 FNo. Len. Field Value +23:57:53 ============================================================================ +23:57:53 [ 1] [ 4] [0810] +23:57:53 [ 7] [ 10] [0321070943] +23:57:53 [ 11] [ 6] [000943] +23:57:53 [ 37] [ 12] [580000009430] +23:57:53 [ 39] [ 2] [00] +23:57:53 [ 70] [ 3] [810] +23:57:53 ============================================================================ +23:57:53 Calculate Source COMM Id = 6 +23:57:53 ============================================================================ +23:57:53 + + +waiting on router queue for slot.... +23:57:59 ============================================================================ +23:57:59 Slot Id : <285> +23:57:59 Transaction Type : REQUEST +23:57:59 Received From : +23:57:59 ============================================================================ +23:57:59 FNo. Len. Field Value +23:57:59 ============================================================================ +23:57:59 [ 1] [ 4] [0800] +23:57:59 [ 7] [ 10] [0320045707] +23:57:59 [ 11] [ 6] [159201] +23:57:59 [ 70] [ 3] [301] +23:57:59 ============================================================================ +23:57:59 + + +waiting on router queue for slot.... +23:57:59 Sending to : +23:57:59 ============================================================================ +23:57:59 ============================================================================ +23:57:59 Slot Id : <285> +23:57:59 Transaction Type : RESPONSE +23:57:59 Received From : +23:57:59 ============================================================================ +23:57:59 FNo. Len. Field Value +23:57:59 ============================================================================ +23:57:59 [ 1] [ 4] [0810] +23:57:59 [ 7] [ 10] [0320045707] +23:57:59 [ 11] [ 6] [159201] +23:57:59 [ 39] [ 2] [00] +23:57:59 [ 70] [ 3] [301] +23:57:59 ============================================================================ +23:57:59 Calculate Source COMM Id = 2 +23:57:59 ============================================================================ +23:57:59 + + +waiting on router queue for slot.... +23:58:02 ============================================================================ +23:58:02 Slot Id : <327> +23:58:02 Transaction Type : REQUEST +23:58:02 Received From : +23:58:02 ============================================================================ +23:58:02 FNo. Len. Field Value +23:58:02 ============================================================================ +23:58:02 [ 1] [ 4] [0800] +23:58:02 [ 2] [ 5] [02531] +23:58:02 [ 3] [ 6] [579238] +23:58:02 [ 7] [ 10] [0320165802] +23:58:02 [ 11] [ 6] [807803] +23:58:02 [ 15] [ 10] [0320165802] +23:58:02 [ 37] [ 11] [57923807803] +23:58:02 [ 70] [ 3] [001] +23:58:02 ============================================================================ +23:58:02 + + +waiting on router queue for slot.... +23:58:02 ============================================================================ +23:58:02 Slot Id : <327> +23:58:02 Transaction Type : RESPONSE +23:58:02 Received From : +23:58:02 ============================================================================ +23:58:02 FNo. Len. Field Value +23:58:02 ============================================================================ +23:58:02 [ 1] [ 4] [0810] +23:58:02 [ 7] [ 10] [0320165802] +23:58:02 [ 11] [ 6] [807803] +23:58:02 [ 15] [ 4] [0320] +23:58:02 [ 37] [ 12] [57923807803] +23:58:02 [ 39] [ 2] [00] +23:58:02 [ 70] [ 3] [001] +23:58:02 ============================================================================ +23:58:02 Sending to : +23:58:02 ============================================================================ +23:58:02 + + +waiting on router queue for slot.... +23:58:09 ============================================================================ +23:58:09 Slot Id : <331> +23:58:09 Transaction Type : REQUEST +23:58:09 Received From : +23:58:09 ============================================================================ +23:58:09 FNo. Len. Field Value +23:58:09 ============================================================================ +23:58:09 [ 1] [ 4] [0800] +23:58:09 [ 7] [ 10] [0320045717] +23:58:09 [ 11] [ 6] [159202] +23:58:09 [ 70] [ 3] [301] +23:58:09 ============================================================================ +23:58:09 + + +waiting on router queue for slot.... +23:58:09 Sending to : +23:58:09 ============================================================================ +23:58:09 ============================================================================ +23:58:09 Slot Id : <331> +23:58:09 Transaction Type : RESPONSE +23:58:09 Received From : +23:58:09 ============================================================================ +23:58:09 FNo. Len. Field Value +23:58:09 ============================================================================ +23:58:09 [ 1] [ 4] [0810] +23:58:09 [ 7] [ 10] [0320045717] +23:58:09 [ 11] [ 6] [159202] +23:58:09 [ 39] [ 2] [00] +23:58:09 [ 70] [ 3] [301] +23:58:09 ============================================================================ +23:58:09 Calculate Source COMM Id = 2 +23:58:09 ============================================================================ +23:58:09 + + +waiting on router queue for slot.... +23:58:21 ============================================================================ +23:58:21 Slot Id : <301> +23:58:21 Transaction Type : REQUEST +23:58:21 Received From : +23:58:21 ============================================================================ +23:58:21 FNo. Len. Field Value +23:58:21 ============================================================================ +23:58:21 [ 1] [ 4] [0800] +23:58:21 [ 7] [ 10] [0320045729] +23:58:21 [ 11] [ 6] [159203] +23:58:21 [ 70] [ 3] [301] +23:58:21 ============================================================================ +23:58:21 + + +waiting on router queue for slot.... +23:58:21 Sending to : +23:58:21 ============================================================================ +23:58:21 ============================================================================ +23:58:21 Slot Id : <301> +23:58:21 Transaction Type : RESPONSE +23:58:21 Received From : +23:58:21 ============================================================================ +23:58:21 FNo. Len. Field Value +23:58:21 ============================================================================ +23:58:21 [ 1] [ 4] [0810] +23:58:21 [ 7] [ 10] [0320045729] +23:58:21 [ 11] [ 6] [159203] +23:58:21 [ 39] [ 2] [00] +23:58:21 [ 70] [ 3] [301] +23:58:21 ============================================================================ +23:58:21 Calculate Source COMM Id = 2 +23:58:21 ============================================================================ +23:58:21 + + +waiting on router queue for slot.... +23:58:35 ============================================================================ +23:58:35 Slot Id : <305> +23:58:35 Transaction Type : REQUEST +23:58:35 Received From : +23:58:35 ============================================================================ +23:58:35 FNo. Len. Field Value +23:58:35 ============================================================================ +23:58:35 [ 1] [ 4] [0800] +23:58:35 [ 7] [ 10] [0320045743] +23:58:35 [ 11] [ 6] [159204] +23:58:35 [ 70] [ 3] [301] +23:58:35 ============================================================================ +23:58:35 + + +waiting on router queue for slot.... +23:58:35 Sending to : +23:58:35 ============================================================================ +23:58:35 ============================================================================ +23:58:35 Slot Id : <305> +23:58:35 Transaction Type : RESPONSE +23:58:35 Received From : +23:58:35 ============================================================================ +23:58:35 FNo. Len. Field Value +23:58:35 ============================================================================ +23:58:35 [ 1] [ 4] [0810] +23:58:35 [ 7] [ 10] [0320045743] +23:58:35 [ 11] [ 6] [159204] +23:58:35 [ 39] [ 2] [00] +23:58:35 [ 70] [ 3] [301] +23:58:35 ============================================================================ +23:58:35 Calculate Source COMM Id = 2 +23:58:35 ============================================================================ +23:58:35 + + +waiting on router queue for slot.... +23:58:45 ============================================================================ +23:58:45 Slot Id : <314> +23:58:45 Transaction Type : REQUEST +23:58:45 Received From : +23:58:45 ============================================================================ +23:58:45 FNo. Len. Field Value +23:58:45 ============================================================================ +23:58:45 [ 1] [ 4] [0800] +23:58:45 [ 7] [ 10] [0320045753] +23:58:45 [ 11] [ 6] [159205] +23:58:45 [ 70] [ 3] [301] +23:58:45 ============================================================================ +23:58:45 + + +waiting on router queue for slot.... +23:58:45 Sending to : +23:58:45 ============================================================================ +23:58:45 ============================================================================ +23:58:45 Slot Id : <314> +23:58:45 Transaction Type : RESPONSE +23:58:45 Received From : +23:58:45 ============================================================================ +23:58:45 FNo. Len. Field Value +23:58:45 ============================================================================ +23:58:45 [ 1] [ 4] [0810] +23:58:45 [ 7] [ 10] [0320045753] +23:58:45 [ 11] [ 6] [159205] +23:58:45 [ 39] [ 2] [00] +23:58:45 [ 70] [ 3] [301] +23:58:45 ============================================================================ +23:58:45 Calculate Source COMM Id = 2 +23:58:45 ============================================================================ +23:58:45 + + +waiting on router queue for slot.... +23:58:56 ============================================================================ +23:58:56 Slot Id : <302> +23:58:56 Transaction Type : REQUEST +23:58:56 Received From : +23:58:56 ============================================================================ +23:58:56 FNo. Len. Field Value +23:58:56 ============================================================================ +23:58:56 [ 1] [ 4] [0800] +23:58:56 [ 7] [ 10] [0320045804] +23:58:56 [ 11] [ 6] [159206] +23:58:56 [ 70] [ 3] [301] +23:58:56 ============================================================================ +23:58:56 + + +waiting on router queue for slot.... +23:58:56 Sending to : +23:58:56 ============================================================================ +23:58:56 ============================================================================ +23:58:56 Slot Id : <302> +23:58:56 Transaction Type : RESPONSE +23:58:56 Received From : +23:58:56 ============================================================================ +23:58:56 FNo. Len. Field Value +23:58:56 ============================================================================ +23:58:56 [ 1] [ 4] [0810] +23:58:56 [ 7] [ 10] [0320045804] +23:58:56 [ 11] [ 6] [159206] +23:58:56 [ 39] [ 2] [00] +23:58:56 [ 70] [ 3] [301] +23:58:56 ============================================================================ +23:58:56 Calculate Source COMM Id = 2 +23:58:56 ============================================================================ +23:58:56 + + +waiting on router queue for slot.... +23:58:58 ============================================================================ +23:58:58 Slot Id : <292> +23:58:58 Transaction Type : REQUEST +23:58:58 Received From : +23:58:58 ============================================================================ +23:58:58 FNo. Len. Field Value +23:58:58 ============================================================================ +23:58:58 [ 1] [ 4] [0800] +23:58:58 [ 7] [ 10] [0321071048] +23:58:58 [ 11] [ 6] [001048] +23:58:58 [ 37] [ 12] [58000001048] +23:58:58 [ 70] [ 3] [301] +23:58:58 ============================================================================ +23:58:58 + + +waiting on router queue for slot.... +23:58:58 Sending to : +23:58:58 ============================================================================ +23:58:58 ============================================================================ +23:58:58 Slot Id : <292> +23:58:58 Transaction Type : RESPONSE +23:58:58 Received From : +23:58:58 ============================================================================ +23:58:58 FNo. Len. Field Value +23:58:58 ============================================================================ +23:58:58 [ 1] [ 4] [0810] +23:58:58 [ 7] [ 10] [0321071048] +23:58:58 [ 11] [ 6] [001048] +23:58:58 [ 37] [ 12] [580000010480] +23:58:58 [ 39] [ 2] [00] +23:58:58 [ 70] [ 3] [810] +23:58:58 ============================================================================ +23:58:58 Calculate Source COMM Id = 6 +23:58:58 ============================================================================ +23:58:58 + + +waiting on router queue for slot.... +23:59:04 ============================================================================ +23:59:04 Slot Id : <333> +23:59:04 Transaction Type : REQUEST +23:59:04 Received From : +23:59:04 ============================================================================ +23:59:04 FNo. Len. Field Value +23:59:04 ============================================================================ +23:59:04 [ 1] [ 4] [0800] +23:59:04 [ 2] [ 5] [02531] +23:59:04 [ 3] [ 6] [579238] +23:59:04 [ 7] [ 10] [0320165904] +23:59:04 [ 11] [ 6] [807804] +23:59:04 [ 15] [ 10] [0320165904] +23:59:04 [ 37] [ 11] [57923807804] +23:59:04 [ 70] [ 3] [001] +23:59:04 ============================================================================ +23:59:04 + + +waiting on router queue for slot.... +23:59:04 ============================================================================ +23:59:04 Slot Id : <333> +23:59:04 Transaction Type : RESPONSE +23:59:04 Received From : +23:59:04 ============================================================================ +23:59:04 FNo. Len. Field Value +23:59:04 ============================================================================ +23:59:04 [ 1] [ 4] [0810] +23:59:04 [ 7] [ 10] [0320165904] +23:59:04 [ 11] [ 6] [807804] +23:59:04 [ 15] [ 4] [0320] +23:59:04 [ 37] [ 12] [57923807804] +23:59:04 [ 39] [ 2] [00] +23:59:04 [ 70] [ 3] [001] +23:59:04 ============================================================================ +23:59:04 Sending to : +23:59:04 ============================================================================ +23:59:04 + + +waiting on router queue for slot.... +23:59:07 ============================================================================ +23:59:07 Slot Id : <335> +23:59:07 Transaction Type : REQUEST +23:59:07 Received From : +23:59:07 ============================================================================ +23:59:07 FNo. Len. Field Value +23:59:07 ============================================================================ +23:59:07 [ 1] [ 4] [0800] +23:59:07 [ 7] [ 10] [0320045815] +23:59:07 [ 11] [ 6] [159207] +23:59:07 [ 70] [ 3] [301] +23:59:07 ============================================================================ +23:59:07 + + +waiting on router queue for slot.... +23:59:07 Sending to : +23:59:07 ============================================================================ +23:59:07 ============================================================================ +23:59:07 Slot Id : <335> +23:59:07 Transaction Type : RESPONSE +23:59:07 Received From : +23:59:07 ============================================================================ +23:59:07 FNo. Len. Field Value +23:59:07 ============================================================================ +23:59:07 [ 1] [ 4] [0810] +23:59:07 [ 7] [ 10] [0320045815] +23:59:07 [ 11] [ 6] [159207] +23:59:07 [ 39] [ 2] [00] +23:59:07 [ 70] [ 3] [301] +23:59:07 ============================================================================ +23:59:07 Calculate Source COMM Id = 2 +23:59:07 ============================================================================ +23:59:07 + + +waiting on router queue for slot.... +23:59:23 ============================================================================ +23:59:23 Slot Id : <262> +23:59:23 Transaction Type : REQUEST +23:59:23 Received From : +23:59:23 ============================================================================ +23:59:23 FNo. Len. Field Value +23:59:23 ============================================================================ +23:59:23 [ 1] [ 4] [0800] +23:59:23 [ 7] [ 10] [0320045831] +23:59:23 [ 11] [ 6] [159208] +23:59:23 [ 70] [ 3] [301] +23:59:23 ============================================================================ +23:59:23 + + +waiting on router queue for slot.... +23:59:23 Sending to : +23:59:23 ============================================================================ +23:59:23 ============================================================================ +23:59:23 Slot Id : <262> +23:59:23 Transaction Type : RESPONSE +23:59:23 Received From : +23:59:23 ============================================================================ +23:59:23 FNo. Len. Field Value +23:59:23 ============================================================================ +23:59:23 [ 1] [ 4] [0810] +23:59:23 [ 7] [ 10] [0320045831] +23:59:23 [ 11] [ 6] [159208] +23:59:23 [ 39] [ 2] [00] +23:59:23 [ 70] [ 3] [301] +23:59:23 ============================================================================ +23:59:23 Calculate Source COMM Id = 2 +23:59:23 ============================================================================ +23:59:23 + + +waiting on router queue for slot.... +23:59:33 ============================================================================ +23:59:33 Slot Id : <334> +23:59:33 Transaction Type : REQUEST +23:59:33 Received From : +23:59:33 ============================================================================ +23:59:33 FNo. Len. Field Value +23:59:33 ============================================================================ +23:59:33 [ 1] [ 4] [0800] +23:59:33 [ 7] [ 10] [0320045841] +23:59:33 [ 11] [ 6] [159209] +23:59:33 [ 70] [ 3] [301] +23:59:33 ============================================================================ +23:59:33 + + +waiting on router queue for slot.... +23:59:33 Sending to : +23:59:33 ============================================================================ +23:59:33 ============================================================================ +23:59:33 Slot Id : <334> +23:59:33 Transaction Type : RESPONSE +23:59:33 Received From : +23:59:33 ============================================================================ +23:59:33 FNo. Len. Field Value +23:59:33 ============================================================================ +23:59:33 [ 1] [ 4] [0810] +23:59:33 [ 7] [ 10] [0320045841] +23:59:33 [ 11] [ 6] [159209] +23:59:33 [ 39] [ 2] [00] +23:59:33 [ 70] [ 3] [301] +23:59:33 ============================================================================ +23:59:33 Calculate Source COMM Id = 2 +23:59:33 ============================================================================ +23:59:33 + + +waiting on router queue for slot.... +23:59:44 ============================================================================ +23:59:44 Slot Id : <336> +23:59:44 Transaction Type : REQUEST +23:59:44 Received From : +23:59:44 ============================================================================ +23:59:44 FNo. Len. Field Value +23:59:44 ============================================================================ +23:59:44 [ 1] [ 4] [0800] +23:59:44 [ 7] [ 10] [0320045852] +23:59:44 [ 11] [ 6] [159210] +23:59:44 [ 70] [ 3] [301] +23:59:44 ============================================================================ +23:59:44 + + +waiting on router queue for slot.... +23:59:44 Sending to : +23:59:44 ============================================================================ +23:59:44 ============================================================================ +23:59:44 Slot Id : <336> +23:59:44 Transaction Type : RESPONSE +23:59:44 Received From : +23:59:44 ============================================================================ +23:59:44 FNo. Len. Field Value +23:59:44 ============================================================================ +23:59:44 [ 1] [ 4] [0810] +23:59:44 [ 7] [ 10] [0320045852] +23:59:44 [ 11] [ 6] [159210] +23:59:44 [ 39] [ 2] [00] +23:59:44 [ 70] [ 3] [301] +23:59:44 ============================================================================ +23:59:44 Calculate Source COMM Id = 2 +23:59:44 ============================================================================ +23:59:44 + + +waiting on router queue for slot.... +23:59:55 ============================================================================ +23:59:55 Slot Id : <320> +23:59:55 Transaction Type : REQUEST +23:59:55 Received From : +23:59:55 ============================================================================ +23:59:55 FNo. Len. Field Value +23:59:55 ============================================================================ +23:59:55 [ 1] [ 4] [0800] +23:59:55 [ 7] [ 10] [0320045903] +23:59:55 [ 11] [ 6] [159211] +23:59:55 [ 70] [ 3] [301] +23:59:55 ============================================================================ +23:59:55 + + +waiting on router queue for slot.... +23:59:55 Sending to : +23:59:55 ============================================================================ +23:59:55 ============================================================================ +23:59:55 Slot Id : <320> +23:59:55 Transaction Type : RESPONSE +23:59:55 Received From : +23:59:55 ============================================================================ +23:59:55 FNo. Len. Field Value +23:59:55 ============================================================================ +23:59:55 [ 1] [ 4] [0810] +23:59:55 [ 7] [ 10] [0320045903] +23:59:55 [ 11] [ 6] [159211] +23:59:55 [ 39] [ 2] [00] +23:59:55 [ 70] [ 3] [301] +23:59:55 ============================================================================ +23:59:55 Calculate Source COMM Id = 2 +23:59:55 ============================================================================ +23:59:55 + + +waiting on router queue for slot.... +23:59:55 ============================================================================ +23:59:55 Slot Id : <321> +23:59:55 Transaction Type : REQUEST +23:59:55 Received From : +23:59:55 ============================================================================ +23:59:55 FNo. Len. Field Value +23:59:55 ============================================================================ +23:59:55 [ 1] [ 4] [0800] +23:59:55 [ 7] [ 10] [0320170742] +23:59:55 [ 11] [ 6] [067963] +23:59:55 [ 37] [ 12] [58000067963] +23:59:55 [ 70] [ 3] [301] +23:59:55 ============================================================================ +23:59:55 + + +waiting on router queue for slot.... +23:59:55 Sending to : +23:59:55 ============================================================================ +23:59:55 ============================================================================ +23:59:55 Slot Id : <321> +23:59:55 Transaction Type : RESPONSE +23:59:55 Received From : +23:59:55 ============================================================================ +23:59:55 FNo. Len. Field Value +23:59:55 ============================================================================ +23:59:55 [ 1] [ 4] [0810] +23:59:55 [ 7] [ 10] [0320170742] +23:59:55 [ 11] [ 6] [067963] +23:59:55 [ 37] [ 12] [580000679630] +23:59:55 [ 39] [ 2] [00] +23:59:55 [ 70] [ 3] [810] +23:59:55 ============================================================================ +23:59:55 Calculate Source COMM Id = 1 +23:59:55 ============================================================================ +23:59:55 + + +waiting on router queue for slot.... diff --git a/BcnxWebService/sample/verify.log.150318 b/BcnxWebService/sample/verify.log.150318 new file mode 100644 index 0000000..47f804c --- /dev/null +++ b/BcnxWebService/sample/verify.log.150318 @@ -0,0 +1,15687 @@ +00:00:05 Slot [255] | NOT FINANCIAL TRANSACTION +00:00:16 Slot [318] | NOT FINANCIAL TRANSACTION +00:00:20 Slot [300] | NOT FINANCIAL TRANSACTION +00:00:31 Slot [326] | NOT FINANCIAL TRANSACTION +00:00:35 Slot [312] | NOT FINANCIAL TRANSACTION +00:00:46 Slot [340] | NOT FINANCIAL TRANSACTION +00:00:57 Slot [302] | NOT FINANCIAL TRANSACTION +00:01:07 Slot [306] | NOT FINANCIAL TRANSACTION +00:01:18 Slot [355] | NOT FINANCIAL TRANSACTION +00:01:29 Slot [316] | NOT FINANCIAL TRANSACTION +00:01:40 Slot [325] | NOT FINANCIAL TRANSACTION +00:01:51 Slot [311] | NOT FINANCIAL TRANSACTION +00:02:01 Slot [334] | NOT FINANCIAL TRANSACTION +00:02:12 Slot [339] | NOT FINANCIAL TRANSACTION +00:02:22 Slot [310] | NOT FINANCIAL TRANSACTION +00:02:32 Slot [297] | NOT FINANCIAL TRANSACTION +00:02:33 Slot [301] | NOT FINANCIAL TRANSACTION +00:02:35 Slot [349] | NOT FINANCIAL TRANSACTION +00:02:42 Slot [350] | NOT FINANCIAL TRANSACTION +00:02:58 Slot [341] | NOT FINANCIAL TRANSACTION +00:03:09 Slot [328] | NOT FINANCIAL TRANSACTION +00:03:19 Slot [332] | NOT FINANCIAL TRANSACTION +00:03:35 Slot [338] | NOT FINANCIAL TRANSACTION +00:03:35 Slot [305] | NOT FINANCIAL TRANSACTION +00:03:45 Slot [352] | NOT FINANCIAL TRANSACTION +00:03:55 Slot [364] | NOT FINANCIAL TRANSACTION +00:04:06 Slot [343] | NOT FINANCIAL TRANSACTION +00:04:21 Slot [330] | NOT FINANCIAL TRANSACTION +00:04:32 Slot [337] | NOT FINANCIAL TRANSACTION +00:04:37 Slot [345] | NOT FINANCIAL TRANSACTION +00:04:47 Slot [354] | NOT FINANCIAL TRANSACTION +00:04:58 Slot [320] | NOT FINANCIAL TRANSACTION +00:05:13 Slot [335] | NOT FINANCIAL TRANSACTION +00:05:16 Slot [342] | NOT FINANCIAL TRANSACTION +00:05:23 Slot [369] | NOT FINANCIAL TRANSACTION +00:05:34 Slot [366] | NOT FINANCIAL TRANSACTION +00:05:39 Slot [347] | NOT FINANCIAL TRANSACTION +00:05:45 Slot [290] | NOT FINANCIAL TRANSACTION +00:05:55 Slot [374] | NOT FINANCIAL TRANSACTION +00:06:06 Slot [327] | NOT FINANCIAL TRANSACTION +00:06:16 Slot [292] | NOT FINANCIAL TRANSACTION +00:06:26 Slot [365] | NOT FINANCIAL TRANSACTION +00:06:36 Slot [333] | NOT FINANCIAL TRANSACTION +00:06:41 Slot [358] | NOT FINANCIAL TRANSACTION +00:06:47 Slot [384] | NOT FINANCIAL TRANSACTION +00:06:57 Slot [360] | NOT FINANCIAL TRANSACTION +00:07:08 Slot [373] | NOT FINANCIAL TRANSACTION +00:07:23 Slot [353] | NOT FINANCIAL TRANSACTION +00:07:33 Slot [362] | NOT FINANCIAL TRANSACTION +00:07:35 Slot [372] | NOT FINANCIAL TRANSACTION +00:07:43 Slot [380] | NOT FINANCIAL TRANSACTION +00:07:44 Slot [379] | NOT FINANCIAL TRANSACTION +00:07:54 Slot [382] | NOT FINANCIAL TRANSACTION +00:08:04 Slot [348] | NOT FINANCIAL TRANSACTION +00:08:15 Slot [361] | NOT FINANCIAL TRANSACTION +00:08:25 Slot [322] | NOT FINANCIAL TRANSACTION +00:08:36 Slot [346] | NOT FINANCIAL TRANSACTION +00:08:45 Slot [377] | NOT FINANCIAL TRANSACTION +00:08:46 Slot [370] | NOT FINANCIAL TRANSACTION +00:08:57 Slot [378] | NOT FINANCIAL TRANSACTION +00:09:09 Slot [363] | NOT FINANCIAL TRANSACTION +00:09:24 Slot [385] | NOT FINANCIAL TRANSACTION +00:09:34 Slot [371] | NOT FINANCIAL TRANSACTION +00:09:45 Slot [359] | NOT FINANCIAL TRANSACTION +00:09:47 Slot [351] | NOT FINANCIAL TRANSACTION +00:09:56 Slot [397] | NOT FINANCIAL TRANSACTION +00:10:06 Slot [367] | NOT FINANCIAL TRANSACTION +00:10:16 Slot [344] | NOT FINANCIAL TRANSACTION +00:10:17 Slot [386] | NOT FINANCIAL TRANSACTION +00:10:27 Slot [388] | NOT FINANCIAL TRANSACTION +00:10:39 Slot [410] | NOT FINANCIAL TRANSACTION +00:10:49 Slot [357] | NOT FINANCIAL TRANSACTION +00:10:52 Slot [414] | NOT FINANCIAL TRANSACTION +00:11:02 Slot [401] | NOT FINANCIAL TRANSACTION +00:11:13 Slot [408] | NOT FINANCIAL TRANSACTION +00:11:23 Slot [413] | NOT FINANCIAL TRANSACTION +00:11:33 Slot [393] | NOT FINANCIAL TRANSACTION +00:11:44 Slot [403] | NOT FINANCIAL TRANSACTION +00:11:47 +Slot[398] 0200 011000 6213541000470115 ------------- 00 020959 000050000000 507700262983010014006213541000470115 507700262983 931087 220699 S +00:11:51 Slot [420] | NOT FINANCIAL TRANSACTION +00:11:55 Slot [391] | NOT FINANCIAL TRANSACTION +00:12:05 Slot [418] | NOT FINANCIAL TRANSACTION +00:12:17 Slot [392] | NOT FINANCIAL TRANSACTION +00:12:20 +Slot[356] 0200 010000 1234010100128398 ------------- 91 286751 000100000000 507702483980050031001234010100128398 507702483980 798090 621354 S +00:12:31 Slot [416] | NOT FINANCIAL TRANSACTION +00:12:35 Slot [425] | NOT FINANCIAL TRANSACTION +00:12:41 Slot [383] | NOT FINANCIAL TRANSACTION +00:12:52 Slot [415] | NOT FINANCIAL TRANSACTION +00:12:53 Slot [411] | NOT FINANCIAL TRANSACTION +00:13:02 Slot [387] | NOT FINANCIAL TRANSACTION +00:13:12 Slot [396] | NOT FINANCIAL TRANSACTION +00:13:28 Slot [431] | NOT FINANCIAL TRANSACTION +00:13:35 Slot [395] | NOT FINANCIAL TRANSACTION +00:13:43 Slot [423] | NOT FINANCIAL TRANSACTION +00:13:55 Slot [402] | NOT FINANCIAL TRANSACTION +00:13:59 Slot [400] | NOT FINANCIAL TRANSACTION +00:14:10 Slot [429] | NOT FINANCIAL TRANSACTION +00:14:20 Slot [381] | NOT FINANCIAL TRANSACTION +00:14:31 Slot [375] | NOT FINANCIAL TRANSACTION +00:14:41 Slot [417] | NOT FINANCIAL TRANSACTION +00:14:51 Slot [438] | NOT FINANCIAL TRANSACTION +00:14:57 Slot [428] | NOT FINANCIAL TRANSACTION +00:15:06 Slot [406] | NOT FINANCIAL TRANSACTION +00:15:16 Slot [399] | NOT FINANCIAL TRANSACTION +00:15:18 Slot [437] | NOT FINANCIAL TRANSACTION +00:15:32 Slot [419] | NOT FINANCIAL TRANSACTION +00:15:44 Slot [404] | NOT FINANCIAL TRANSACTION +00:15:58 Slot [427] | NOT FINANCIAL TRANSACTION +00:15:59 Slot [422] | NOT FINANCIAL TRANSACTION +00:15:59 Slot [445] | NOT FINANCIAL TRANSACTION +00:16:14 Slot [394] | NOT FINANCIAL TRANSACTION +00:16:25 Slot [440] | NOT FINANCIAL TRANSACTION +00:16:35 Slot [452] | NOT FINANCIAL TRANSACTION +00:16:46 Slot [448] | NOT FINANCIAL TRANSACTION +00:16:57 Slot [389] | NOT FINANCIAL TRANSACTION +00:17:01 Slot [368] | NOT FINANCIAL TRANSACTION +00:17:12 Slot [443] | NOT FINANCIAL TRANSACTION +00:17:23 Slot [465] | NOT FINANCIAL TRANSACTION +00:17:33 Slot [442] | NOT FINANCIAL TRANSACTION +00:17:35 Slot [439] | NOT FINANCIAL TRANSACTION +00:17:43 Slot [435] | NOT FINANCIAL TRANSACTION +00:17:58 Slot [390] | NOT FINANCIAL TRANSACTION +00:18:03 Slot [376] | NOT FINANCIAL TRANSACTION +00:18:09 Slot [424] | NOT FINANCIAL TRANSACTION +00:18:19 Slot [433] | NOT FINANCIAL TRANSACTION +00:18:35 Slot [430] | NOT FINANCIAL TRANSACTION +00:18:45 Slot [447] | NOT FINANCIAL TRANSACTION +00:19:01 Slot [460] | NOT FINANCIAL TRANSACTION +00:19:05 Slot [421] | NOT FINANCIAL TRANSACTION +00:19:12 Slot [432] | NOT FINANCIAL TRANSACTION +00:19:27 Slot [478] | NOT FINANCIAL TRANSACTION +00:19:38 Slot [450] | NOT FINANCIAL TRANSACTION +00:19:49 Slot [463] | NOT FINANCIAL TRANSACTION +00:19:59 Slot [467] | NOT FINANCIAL TRANSACTION +00:20:05 +Slot[441] 0200 311000 6213543000225176 ------------- 00 254499 000000000000 507700094206010009006213543000225176 507700094206 133972 220699 S +00:20:07 Slot [456] | NOT FINANCIAL TRANSACTION +00:20:09 Slot [462] | NOT FINANCIAL TRANSACTION +00:20:16 Slot [405] | NOT FINANCIAL TRANSACTION +00:20:24 Slot [434] | NOT FINANCIAL TRANSACTION +00:20:34 Slot [455] | NOT FINANCIAL TRANSACTION +00:20:45 Slot [426] | NOT FINANCIAL TRANSACTION +00:20:56 Slot [485] | NOT FINANCIAL TRANSACTION +00:21:06 Slot [412] | NOT FINANCIAL TRANSACTION +00:21:09 Slot [407] | NOT FINANCIAL TRANSACTION +00:21:17 Slot [449] | NOT FINANCIAL TRANSACTION +00:21:33 Slot [461] | NOT FINANCIAL TRANSACTION +00:21:43 Slot [481] | NOT FINANCIAL TRANSACTION +00:21:58 Slot [475] | NOT FINANCIAL TRANSACTION +00:22:11 Slot [469] | NOT FINANCIAL TRANSACTION +00:22:14 Slot [468] | NOT FINANCIAL TRANSACTION +00:22:29 Slot [453] | NOT FINANCIAL TRANSACTION +00:22:35 Slot [409] | NOT FINANCIAL TRANSACTION +00:22:39 Slot [457] | NOT FINANCIAL TRANSACTION +00:22:50 Slot [487] | NOT FINANCIAL TRANSACTION +00:23:05 Slot [474] | NOT FINANCIAL TRANSACTION +00:23:13 Slot [482] | NOT FINANCIAL TRANSACTION +00:23:15 Slot [472] | NOT FINANCIAL TRANSACTION +00:23:30 Slot [444] | NOT FINANCIAL TRANSACTION +00:23:46 Slot [483] | NOT FINANCIAL TRANSACTION +00:23:56 Slot [479] | NOT FINANCIAL TRANSACTION +00:24:06 Slot [471] | NOT FINANCIAL TRANSACTION +00:24:15 Slot [489] | NOT FINANCIAL TRANSACTION +00:24:17 Slot [451] | NOT FINANCIAL TRANSACTION +00:24:32 Slot [490] | NOT FINANCIAL TRANSACTION +00:24:42 Slot [446] | NOT FINANCIAL TRANSACTION +00:24:57 Slot [459] | NOT FINANCIAL TRANSACTION +00:25:12 Slot [498] | NOT FINANCIAL TRANSACTION +00:25:16 Slot [476] | NOT FINANCIAL TRANSACTION +00:25:17 Slot [436] | NOT FINANCIAL TRANSACTION +00:25:22 Slot [486] | NOT FINANCIAL TRANSACTION +00:25:37 Slot [491] | NOT FINANCIAL TRANSACTION +00:25:52 Slot [497] | NOT FINANCIAL TRANSACTION +00:26:03 Slot [473] | NOT FINANCIAL TRANSACTION +00:26:13 Slot [499] | NOT FINANCIAL TRANSACTION +00:26:19 Slot [7] | NOT FINANCIAL TRANSACTION +00:26:24 Slot [2] | NOT FINANCIAL TRANSACTION +00:26:39 Slot [470] | NOT FINANCIAL TRANSACTION +00:26:44 Slot [480] | NOT FINANCIAL TRANSACTION +00:26:50 Slot [477] | NOT FINANCIAL TRANSACTION +00:27:01 Slot [495] | NOT FINANCIAL TRANSACTION +00:27:12 Slot [464] | NOT FINANCIAL TRANSACTION +00:27:21 Slot [18] | NOT FINANCIAL TRANSACTION +00:27:23 Slot [492] | NOT FINANCIAL TRANSACTION +00:27:34 Slot [14] | NOT FINANCIAL TRANSACTION +00:27:38 Slot [454] | NOT FINANCIAL TRANSACTION +00:27:53 Slot [24] | NOT FINANCIAL TRANSACTION +00:28:04 Slot [484] | NOT FINANCIAL TRANSACTION +00:28:20 Slot [466] | NOT FINANCIAL TRANSACTION +00:28:23 Slot [22] | NOT FINANCIAL TRANSACTION +00:28:31 Slot [3] | NOT FINANCIAL TRANSACTION +00:28:47 Slot [493] | NOT FINANCIAL TRANSACTION +00:28:57 +Slot[488] 0200 300000 6213545000968705 ------------- 00 868431 000000000000 507700080104030200016213545000968705 507700080104 202003 668899 S +00:28:58 Slot [12] | NOT FINANCIAL TRANSACTION +00:29:14 Slot [458] | NOT FINANCIAL TRANSACTION +00:29:25 Slot [0] | NOT FINANCIAL TRANSACTION +00:29:29 Slot [31] | NOT FINANCIAL TRANSACTION +00:29:39 Slot [4] | NOT FINANCIAL TRANSACTION +00:29:55 Slot [16] | NOT FINANCIAL TRANSACTION +00:30:05 Slot [5] | NOT FINANCIAL TRANSACTION +00:30:15 Slot [1] | NOT FINANCIAL TRANSACTION +00:30:16 Slot [8] | NOT FINANCIAL TRANSACTION +00:30:17 Slot [21] | NOT FINANCIAL TRANSACTION +00:30:26 Slot [496] | NOT FINANCIAL TRANSACTION +00:30:27 Slot [19] | NOT FINANCIAL TRANSACTION +00:30:36 Slot [15] | NOT FINANCIAL TRANSACTION +00:30:46 Slot [23] | NOT FINANCIAL TRANSACTION +00:30:52 +Slot[26] 0200 010000 6213545000968705 ------------- 00 868436 000050000000 507700109119030200026213545000968705 507700109119 734878 668899 S +00:30:57 Slot [10] | NOT FINANCIAL TRANSACTION +00:31:07 Slot [9] | NOT FINANCIAL TRANSACTION +00:31:18 Slot [6] | NOT FINANCIAL TRANSACTION +00:31:29 Slot [27] | NOT FINANCIAL TRANSACTION +00:31:29 Slot [25] | NOT FINANCIAL TRANSACTION +00:31:40 Slot [11] | NOT FINANCIAL TRANSACTION +00:31:50 Slot [30] | NOT FINANCIAL TRANSACTION +00:32:06 Slot [46] | NOT FINANCIAL TRANSACTION +00:32:17 Slot [29] | NOT FINANCIAL TRANSACTION +00:32:27 Slot [20] | NOT FINANCIAL TRANSACTION +00:32:31 Slot [494] | NOT FINANCIAL TRANSACTION +00:32:34 Slot [34] | NOT FINANCIAL TRANSACTION +00:32:37 Slot [28] | NOT FINANCIAL TRANSACTION +00:32:48 Slot [38] | NOT FINANCIAL TRANSACTION +00:32:59 Slot [42] | NOT FINANCIAL TRANSACTION +00:33:14 Slot [56] | NOT FINANCIAL TRANSACTION +00:33:25 Slot [13] | NOT FINANCIAL TRANSACTION +00:33:33 Slot [39] | NOT FINANCIAL TRANSACTION +00:33:36 Slot [52] | NOT FINANCIAL TRANSACTION +00:33:46 Slot [36] | NOT FINANCIAL TRANSACTION +00:33:56 Slot [32] | NOT FINANCIAL TRANSACTION +00:34:06 Slot [41] | NOT FINANCIAL TRANSACTION +00:34:16 Slot [44] | NOT FINANCIAL TRANSACTION +00:34:27 Slot [47] | NOT FINANCIAL TRANSACTION +00:34:35 Slot [40] | NOT FINANCIAL TRANSACTION +00:34:38 Slot [54] | NOT FINANCIAL TRANSACTION +00:34:49 Slot [57] | NOT FINANCIAL TRANSACTION +00:35:00 Slot [61] | NOT FINANCIAL TRANSACTION +00:35:15 Slot [37] | NOT FINANCIAL TRANSACTION +00:35:16 Slot [59] | NOT FINANCIAL TRANSACTION +00:35:30 Slot [51] | NOT FINANCIAL TRANSACTION +00:35:37 Slot [58] | NOT FINANCIAL TRANSACTION +00:35:40 Slot [55] | NOT FINANCIAL TRANSACTION +00:35:55 Slot [72] | NOT FINANCIAL TRANSACTION +00:36:06 Slot [17] | NOT FINANCIAL TRANSACTION +00:36:17 Slot [60] | NOT FINANCIAL TRANSACTION +00:36:32 Slot [48] | NOT FINANCIAL TRANSACTION +00:36:39 Slot [63] | NOT FINANCIAL TRANSACTION +00:36:42 Slot [35] | NOT FINANCIAL TRANSACTION +00:36:57 Slot [71] | NOT FINANCIAL TRANSACTION +00:37:07 Slot [53] | NOT FINANCIAL TRANSACTION +00:37:18 Slot [79] | NOT FINANCIAL TRANSACTION +00:37:28 Slot [67] | NOT FINANCIAL TRANSACTION +00:37:30 Slot [49] | NOT FINANCIAL TRANSACTION +00:37:35 Slot [80] | NOT FINANCIAL TRANSACTION +00:37:41 Slot [85] | NOT FINANCIAL TRANSACTION +00:37:45 Slot [75] | NOT FINANCIAL TRANSACTION +00:37:56 Slot [45] | NOT FINANCIAL TRANSACTION +00:38:06 Slot [83] | NOT FINANCIAL TRANSACTION +00:38:17 Slot [78] | NOT FINANCIAL TRANSACTION +00:38:27 Slot [43] | NOT FINANCIAL TRANSACTION +00:38:37 Slot [68] | NOT FINANCIAL TRANSACTION +00:38:43 Slot [73] | NOT FINANCIAL TRANSACTION +00:38:47 Slot [89] | NOT FINANCIAL TRANSACTION +00:38:58 Slot [91] | NOT FINANCIAL TRANSACTION +00:39:08 Slot [76] | NOT FINANCIAL TRANSACTION +00:39:21 Slot [77] | NOT FINANCIAL TRANSACTION +00:39:36 Slot [88] | NOT FINANCIAL TRANSACTION +00:39:45 Slot [94] | NOT FINANCIAL TRANSACTION +00:39:47 Slot [86] | NOT FINANCIAL TRANSACTION +00:39:57 Slot [65] | NOT FINANCIAL TRANSACTION +00:40:07 Slot [93] | NOT FINANCIAL TRANSACTION +00:40:16 Slot [66] | NOT FINANCIAL TRANSACTION +00:40:18 Slot [33] | NOT FINANCIAL TRANSACTION +00:40:33 Slot [103] | NOT FINANCIAL TRANSACTION +00:40:44 Slot [101] | NOT FINANCIAL TRANSACTION +00:40:47 Slot [95] | NOT FINANCIAL TRANSACTION +00:40:54 Slot [105] | NOT FINANCIAL TRANSACTION +00:41:10 Slot [74] | NOT FINANCIAL TRANSACTION +00:41:21 Slot [50] | NOT FINANCIAL TRANSACTION +00:41:36 Slot [70] | NOT FINANCIAL TRANSACTION +00:41:46 Slot [92] | NOT FINANCIAL TRANSACTION +00:41:49 Slot [102] | NOT FINANCIAL TRANSACTION +00:42:03 Slot [81] | NOT FINANCIAL TRANSACTION +00:42:18 Slot [107] | NOT FINANCIAL TRANSACTION +00:42:29 Slot [100] | NOT FINANCIAL TRANSACTION +00:42:35 Slot [114] | NOT FINANCIAL TRANSACTION +00:42:44 Slot [108] | NOT FINANCIAL TRANSACTION +00:42:51 Slot [104] | NOT FINANCIAL TRANSACTION +00:42:54 Slot [82] | NOT FINANCIAL TRANSACTION +00:43:04 Slot [122] | NOT FINANCIAL TRANSACTION +00:43:15 Slot [87] | NOT FINANCIAL TRANSACTION +00:43:26 Slot [69] | NOT FINANCIAL TRANSACTION +00:43:36 Slot [119] | NOT FINANCIAL TRANSACTION +00:43:46 Slot [117] | NOT FINANCIAL TRANSACTION +00:43:53 Slot [115] | NOT FINANCIAL TRANSACTION +00:43:57 Slot [110] | NOT FINANCIAL TRANSACTION +00:44:07 Slot [126] | NOT FINANCIAL TRANSACTION +00:44:17 Slot [96] | NOT FINANCIAL TRANSACTION +00:44:28 Slot [62] | NOT FINANCIAL TRANSACTION +00:44:38 Slot [64] | NOT FINANCIAL TRANSACTION +00:44:49 Slot [136] | NOT FINANCIAL TRANSACTION +00:44:55 Slot [124] | NOT FINANCIAL TRANSACTION +00:45:00 Slot [97] | NOT FINANCIAL TRANSACTION +00:45:15 Slot [84] | NOT FINANCIAL TRANSACTION +00:45:16 Slot [98] | NOT FINANCIAL TRANSACTION +00:45:25 Slot [113] | NOT FINANCIAL TRANSACTION +00:45:35 Slot [121] | NOT FINANCIAL TRANSACTION +00:45:47 Slot [90] | NOT FINANCIAL TRANSACTION +00:45:57 Slot [112] | NOT FINANCIAL TRANSACTION +00:45:57 Slot [99] | NOT FINANCIAL TRANSACTION +00:46:07 Slot [144] | NOT FINANCIAL TRANSACTION +00:46:18 Slot [134] | NOT FINANCIAL TRANSACTION +00:46:28 Slot [159] | NOT FINANCIAL TRANSACTION +00:46:45 Slot [148] | NOT FINANCIAL TRANSACTION +00:46:59 Slot [142] | NOT FINANCIAL TRANSACTION +00:46:59 Slot [111] | NOT FINANCIAL TRANSACTION +00:47:00 Slot [149] | NOT FINANCIAL TRANSACTION +00:47:10 Slot [128] | NOT FINANCIAL TRANSACTION +00:47:21 Slot [140] | NOT FINANCIAL TRANSACTION +00:47:35 Slot [155] | NOT FINANCIAL TRANSACTION +00:47:36 Slot [146] | NOT FINANCIAL TRANSACTION +00:47:47 Slot [131] | NOT FINANCIAL TRANSACTION +00:47:57 Slot [139] | NOT FINANCIAL TRANSACTION +00:48:01 Slot [127] | NOT FINANCIAL TRANSACTION +00:48:07 Slot [109] | NOT FINANCIAL TRANSACTION +00:48:18 Slot [151] | NOT FINANCIAL TRANSACTION +00:48:19 Slot [150] | NOT FINANCIAL TRANSACTION +00:48:29 Slot [154] | NOT FINANCIAL TRANSACTION +00:48:44 Slot [118] | NOT FINANCIAL TRANSACTION +00:48:55 Slot [123] | NOT FINANCIAL TRANSACTION +00:49:03 Slot [138] | NOT FINANCIAL TRANSACTION +00:49:06 Slot [157] | NOT FINANCIAL TRANSACTION +00:49:17 Slot [135] | NOT FINANCIAL TRANSACTION +00:49:28 Slot [171] | NOT FINANCIAL TRANSACTION +00:49:39 Slot [132] | NOT FINANCIAL TRANSACTION +00:49:50 Slot [120] | NOT FINANCIAL TRANSACTION +00:50:01 Slot [116] | NOT FINANCIAL TRANSACTION +00:50:05 Slot [152] | NOT FINANCIAL TRANSACTION +00:50:11 Slot [167] | NOT FINANCIAL TRANSACTION +00:50:17 Slot [156] | NOT FINANCIAL TRANSACTION +00:50:21 Slot [129] | NOT FINANCIAL TRANSACTION +00:50:37 Slot [175] | NOT FINANCIAL TRANSACTION +00:50:52 Slot [130] | NOT FINANCIAL TRANSACTION +00:51:07 Slot [141] | NOT FINANCIAL TRANSACTION +00:51:07 Slot [168] | NOT FINANCIAL TRANSACTION +00:51:18 Slot [166] | NOT FINANCIAL TRANSACTION +00:51:28 Slot [172] | NOT FINANCIAL TRANSACTION +00:51:38 Slot [169] | NOT FINANCIAL TRANSACTION +00:51:50 Slot [160] | NOT FINANCIAL TRANSACTION +00:52:05 Slot [147] | NOT FINANCIAL TRANSACTION +00:52:09 Slot [174] | NOT FINANCIAL TRANSACTION +00:52:21 Slot [164] | NOT FINANCIAL TRANSACTION +00:52:35 Slot [133] | NOT FINANCIAL TRANSACTION +00:52:36 Slot [153] | NOT FINANCIAL TRANSACTION +00:52:47 Slot [178] | NOT FINANCIAL TRANSACTION +00:52:57 Slot [183] | NOT FINANCIAL TRANSACTION +00:53:07 Slot [125] | NOT FINANCIAL TRANSACTION +00:53:11 Slot [195] | NOT FINANCIAL TRANSACTION +00:53:22 Slot [191] | NOT FINANCIAL TRANSACTION +00:53:33 Slot [170] | NOT FINANCIAL TRANSACTION +00:53:43 Slot [143] | NOT FINANCIAL TRANSACTION +00:53:54 Slot [161] | NOT FINANCIAL TRANSACTION +00:54:05 Slot [181] | NOT FINANCIAL TRANSACTION +00:54:13 Slot [189] | NOT FINANCIAL TRANSACTION +00:54:16 Slot [158] | NOT FINANCIAL TRANSACTION +00:54:31 Slot [204] | NOT FINANCIAL TRANSACTION +00:54:46 Slot [197] | NOT FINANCIAL TRANSACTION +00:54:56 Slot [202] | NOT FINANCIAL TRANSACTION +00:55:06 Slot [182] | NOT FINANCIAL TRANSACTION +00:55:15 Slot [200] | NOT FINANCIAL TRANSACTION +00:55:16 Slot [193] | NOT FINANCIAL TRANSACTION +00:55:17 Slot [177] | NOT FINANCIAL TRANSACTION +00:55:28 Slot [198] | NOT FINANCIAL TRANSACTION +00:55:39 Slot [210] | NOT FINANCIAL TRANSACTION +00:55:50 Slot [213] | NOT FINANCIAL TRANSACTION +00:56:05 Slot [106] | NOT FINANCIAL TRANSACTION +00:56:15 Slot [163] | NOT FINANCIAL TRANSACTION +00:56:17 Slot [165] | NOT FINANCIAL TRANSACTION +00:56:25 Slot [187] | NOT FINANCIAL TRANSACTION +00:56:36 Slot [206] | NOT FINANCIAL TRANSACTION +00:56:47 Slot [211] | NOT FINANCIAL TRANSACTION +00:56:57 Slot [162] | NOT FINANCIAL TRANSACTION +00:57:12 Slot [196] | NOT FINANCIAL TRANSACTION +00:57:19 Slot [145] | NOT FINANCIAL TRANSACTION +00:57:27 Slot [221] | NOT FINANCIAL TRANSACTION +00:57:35 Slot [205] | NOT FINANCIAL TRANSACTION +00:57:37 Slot [180] | NOT FINANCIAL TRANSACTION +00:57:52 Slot [217] | NOT FINANCIAL TRANSACTION +00:58:07 Slot [214] | NOT FINANCIAL TRANSACTION +00:58:21 Slot [194] | NOT FINANCIAL TRANSACTION +00:58:22 Slot [222] | NOT FINANCIAL TRANSACTION +00:58:37 Slot [226] | NOT FINANCIAL TRANSACTION +00:58:47 Slot [190] | NOT FINANCIAL TRANSACTION +00:58:58 Slot [176] | NOT FINANCIAL TRANSACTION +00:59:08 Slot [184] | NOT FINANCIAL TRANSACTION +00:59:17 Slot [137] | NOT FINANCIAL TRANSACTION +00:59:23 Slot [225] | NOT FINANCIAL TRANSACTION +00:59:23 Slot [218] | NOT FINANCIAL TRANSACTION +00:59:34 Slot [224] | NOT FINANCIAL TRANSACTION +00:59:49 Slot [223] | NOT FINANCIAL TRANSACTION +00:59:59 Slot [173] | NOT FINANCIAL TRANSACTION +01:00:10 Slot [207] | NOT FINANCIAL TRANSACTION +01:00:16 Slot [208] | NOT FINANCIAL TRANSACTION +01:00:25 Slot [215] | NOT FINANCIAL TRANSACTION +01:00:25 Slot [192] | NOT FINANCIAL TRANSACTION +01:00:35 Slot [231] | NOT FINANCIAL TRANSACTION +01:00:45 Slot [188] | NOT FINANCIAL TRANSACTION +01:00:56 Slot [199] | NOT FINANCIAL TRANSACTION +01:01:07 Slot [220] | NOT FINANCIAL TRANSACTION +01:01:17 Slot [185] | NOT FINANCIAL TRANSACTION +01:01:27 Slot [179] | NOT FINANCIAL TRANSACTION +01:01:27 Slot [229] | NOT FINANCIAL TRANSACTION +01:01:38 Slot [186] | NOT FINANCIAL TRANSACTION +01:01:49 Slot [227] | NOT FINANCIAL TRANSACTION +01:02:05 Slot [212] | NOT FINANCIAL TRANSACTION +01:02:15 Slot [219] | NOT FINANCIAL TRANSACTION +01:02:26 Slot [230] | NOT FINANCIAL TRANSACTION +01:02:29 Slot [236] | NOT FINANCIAL TRANSACTION +01:02:35 Slot [216] | NOT FINANCIAL TRANSACTION +01:02:36 Slot [239] | NOT FINANCIAL TRANSACTION +01:02:51 Slot [232] | NOT FINANCIAL TRANSACTION +01:03:03 Slot [209] | NOT FINANCIAL TRANSACTION +01:03:17 Slot [235] | NOT FINANCIAL TRANSACTION +01:03:28 Slot [250] | NOT FINANCIAL TRANSACTION +01:03:31 Slot [234] | NOT FINANCIAL TRANSACTION +01:03:39 Slot [238] | NOT FINANCIAL TRANSACTION +01:03:41 Slot [242] | NOT FINANCIAL TRANSACTION +01:03:54 Slot [252] | NOT FINANCIAL TRANSACTION +01:04:09 Slot [201] | NOT FINANCIAL TRANSACTION +01:04:20 Slot [245] | NOT FINANCIAL TRANSACTION +01:04:31 Slot [228] | NOT FINANCIAL TRANSACTION +01:04:33 Slot [248] | NOT FINANCIAL TRANSACTION +01:04:42 Slot [240] | NOT FINANCIAL TRANSACTION +01:04:52 Slot [203] | NOT FINANCIAL TRANSACTION +01:05:02 Slot [244] | NOT FINANCIAL TRANSACTION +01:05:16 Slot [258] | NOT FINANCIAL TRANSACTION +01:05:17 Slot [243] | NOT FINANCIAL TRANSACTION +01:05:33 Slot [253] | NOT FINANCIAL TRANSACTION +01:05:35 Slot [247] | NOT FINANCIAL TRANSACTION +01:05:48 Slot [246] | NOT FINANCIAL TRANSACTION +01:05:58 Slot [256] | NOT FINANCIAL TRANSACTION +01:06:09 Slot [241] | NOT FINANCIAL TRANSACTION +01:06:19 Slot [260] | NOT FINANCIAL TRANSACTION +01:06:29 Slot [249] | NOT FINANCIAL TRANSACTION +01:06:37 Slot [265] | NOT FINANCIAL TRANSACTION +01:06:40 Slot [273] | NOT FINANCIAL TRANSACTION +01:06:55 Slot [251] | NOT FINANCIAL TRANSACTION +01:07:06 Slot [269] | NOT FINANCIAL TRANSACTION +01:07:22 Slot [254] | NOT FINANCIAL TRANSACTION +01:07:32 Slot [268] | NOT FINANCIAL TRANSACTION +01:07:35 Slot [276] | NOT FINANCIAL TRANSACTION +01:07:39 Slot [266] | NOT FINANCIAL TRANSACTION +01:07:42 Slot [264] | NOT FINANCIAL TRANSACTION +01:07:53 Slot [279] | NOT FINANCIAL TRANSACTION +01:08:04 Slot [233] | NOT FINANCIAL TRANSACTION +01:08:15 Slot [261] | NOT FINANCIAL TRANSACTION +01:08:25 Slot [262] | NOT FINANCIAL TRANSACTION +01:08:38 Slot [257] | NOT FINANCIAL TRANSACTION +01:08:41 Slot [284] | NOT FINANCIAL TRANSACTION +01:08:51 Slot [274] | NOT FINANCIAL TRANSACTION +01:09:02 Slot [263] | NOT FINANCIAL TRANSACTION +01:09:17 Slot [267] | NOT FINANCIAL TRANSACTION +01:09:28 Slot [270] | NOT FINANCIAL TRANSACTION +01:09:43 Slot [299] | NOT FINANCIAL TRANSACTION +01:09:43 Slot [280] | NOT FINANCIAL TRANSACTION +01:09:53 Slot [278] | NOT FINANCIAL TRANSACTION +01:10:03 Slot [289] | NOT FINANCIAL TRANSACTION +01:10:04 Slot [277] | NOT FINANCIAL TRANSACTION +01:10:14 Slot [285] | NOT FINANCIAL TRANSACTION +01:10:16 Slot [293] | NOT FINANCIAL TRANSACTION +01:10:25 Slot [287] | NOT FINANCIAL TRANSACTION +01:10:35 Slot [304] | NOT FINANCIAL TRANSACTION +01:10:45 Slot [281] | NOT FINANCIAL TRANSACTION +01:10:51 Slot [296] | NOT FINANCIAL TRANSACTION +01:11:01 Slot [275] | NOT FINANCIAL TRANSACTION +01:11:12 Slot [309] | NOT FINANCIAL TRANSACTION +01:11:26 Slot [294] | NOT FINANCIAL TRANSACTION +01:11:37 Slot [286] | NOT FINANCIAL TRANSACTION +01:11:47 Slot [291] | NOT FINANCIAL TRANSACTION +01:11:47 Slot [259] | NOT FINANCIAL TRANSACTION +01:11:57 Slot [303] | NOT FINANCIAL TRANSACTION +01:12:01 +Slot[282] 0200 010000 6213544001835112 ------------- 00 258036 000010000000 5077182580360368KMMX6213544001835112 507718258036 237571 180893 S +01:12:14 Slot [271] | NOT FINANCIAL TRANSACTION +01:12:29 Slot [298] | NOT FINANCIAL TRANSACTION +01:12:35 Slot [272] | NOT FINANCIAL TRANSACTION +01:12:39 Slot [317] | NOT FINANCIAL TRANSACTION +01:12:49 Slot [288] | NOT FINANCIAL TRANSACTION +01:12:54 Slot [307] | NOT FINANCIAL TRANSACTION +01:13:09 Slot [237] | NOT FINANCIAL TRANSACTION +01:13:24 Slot [329] | NOT FINANCIAL TRANSACTION +01:13:34 Slot [314] | NOT FINANCIAL TRANSACTION +01:13:49 Slot [315] | NOT FINANCIAL TRANSACTION +01:13:51 Slot [313] | NOT FINANCIAL TRANSACTION +01:14:00 Slot [323] | NOT FINANCIAL TRANSACTION +01:14:10 Slot [336] | NOT FINANCIAL TRANSACTION +01:14:21 Slot [331] | NOT FINANCIAL TRANSACTION +01:14:36 Slot [324] | NOT FINANCIAL TRANSACTION +01:14:51 Slot [283] | NOT FINANCIAL TRANSACTION +01:14:53 Slot [308] | NOT FINANCIAL TRANSACTION +01:15:06 Slot [319] | NOT FINANCIAL TRANSACTION +01:15:16 Slot [321] | NOT FINANCIAL TRANSACTION +01:15:21 Slot [295] | NOT FINANCIAL TRANSACTION +01:15:36 Slot [255] | NOT FINANCIAL TRANSACTION +01:15:46 Slot [318] | NOT FINANCIAL TRANSACTION +01:15:55 Slot [300] | NOT FINANCIAL TRANSACTION +01:15:57 Slot [326] | NOT FINANCIAL TRANSACTION +01:16:07 Slot [312] | NOT FINANCIAL TRANSACTION +01:16:23 Slot [340] | NOT FINANCIAL TRANSACTION +01:16:38 Slot [302] | NOT FINANCIAL TRANSACTION +01:16:48 Slot [306] | NOT FINANCIAL TRANSACTION +01:16:57 Slot [355] | NOT FINANCIAL TRANSACTION +01:16:59 Slot [316] | NOT FINANCIAL TRANSACTION +01:17:14 Slot [325] | NOT FINANCIAL TRANSACTION +01:17:24 Slot [311] | NOT FINANCIAL TRANSACTION +01:17:35 Slot [334] | NOT FINANCIAL TRANSACTION +01:17:35 Slot [339] | NOT FINANCIAL TRANSACTION +01:17:51 Slot [310] | NOT FINANCIAL TRANSACTION +01:17:59 Slot [297] | NOT FINANCIAL TRANSACTION +01:18:06 Slot [301] | NOT FINANCIAL TRANSACTION +01:18:17 Slot [349] | NOT FINANCIAL TRANSACTION +01:18:27 Slot [350] | NOT FINANCIAL TRANSACTION +01:18:38 Slot [341] | NOT FINANCIAL TRANSACTION +01:18:54 Slot [328] | NOT FINANCIAL TRANSACTION +01:19:01 Slot [332] | NOT FINANCIAL TRANSACTION +01:19:06 Slot [338] | NOT FINANCIAL TRANSACTION +01:19:20 Slot [305] | NOT FINANCIAL TRANSACTION +01:19:30 Slot [352] | NOT FINANCIAL TRANSACTION +01:19:46 Slot [364] | NOT FINANCIAL TRANSACTION +01:20:01 Slot [330] | NOT FINANCIAL TRANSACTION +01:20:03 Slot [343] | NOT FINANCIAL TRANSACTION +01:20:12 Slot [337] | NOT FINANCIAL TRANSACTION +01:20:16 Slot [345] | NOT FINANCIAL TRANSACTION +01:20:23 Slot [354] | NOT FINANCIAL TRANSACTION +01:20:27 Slot [320] | NOT FINANCIAL TRANSACTION +01:20:37 Slot [335] | NOT FINANCIAL TRANSACTION +01:20:49 Slot [342] | NOT FINANCIAL TRANSACTION +01:20:53 Slot [369] | NOT FINANCIAL TRANSACTION +01:21:03 Slot [366] | NOT FINANCIAL TRANSACTION +01:21:05 Slot [347] | NOT FINANCIAL TRANSACTION +01:21:13 Slot [290] | NOT FINANCIAL TRANSACTION +01:21:28 Slot [374] | NOT FINANCIAL TRANSACTION +01:21:39 Slot [327] | NOT FINANCIAL TRANSACTION +01:21:49 Slot [292] | NOT FINANCIAL TRANSACTION +01:21:59 Slot [365] | NOT FINANCIAL TRANSACTION +01:22:07 Slot [333] | NOT FINANCIAL TRANSACTION +01:22:10 Slot [358] | NOT FINANCIAL TRANSACTION +01:22:21 Slot [384] | NOT FINANCIAL TRANSACTION +01:22:32 Slot [360] | NOT FINANCIAL TRANSACTION +01:22:35 Slot [373] | NOT FINANCIAL TRANSACTION +01:22:43 Slot [353] | NOT FINANCIAL TRANSACTION +01:22:59 Slot [362] | NOT FINANCIAL TRANSACTION +01:23:09 Slot [372] | NOT FINANCIAL TRANSACTION +01:23:09 Slot [380] | NOT FINANCIAL TRANSACTION +01:23:20 Slot [379] | NOT FINANCIAL TRANSACTION +01:23:30 Slot [382] | NOT FINANCIAL TRANSACTION +01:23:42 Slot [348] | NOT FINANCIAL TRANSACTION +01:23:57 Slot [361] | NOT FINANCIAL TRANSACTION +01:24:07 Slot [322] | NOT FINANCIAL TRANSACTION +01:24:11 Slot [346] | NOT FINANCIAL TRANSACTION +01:24:18 Slot [377] | NOT FINANCIAL TRANSACTION +01:24:29 Slot [370] | NOT FINANCIAL TRANSACTION +01:24:39 Slot [378] | NOT FINANCIAL TRANSACTION +01:24:49 Slot [363] | NOT FINANCIAL TRANSACTION +01:25:00 Slot [385] | NOT FINANCIAL TRANSACTION +01:25:10 Slot [371] | NOT FINANCIAL TRANSACTION +01:25:13 Slot [359] | NOT FINANCIAL TRANSACTION +01:25:16 Slot [351] | NOT FINANCIAL TRANSACTION +01:25:21 Slot [397] | NOT FINANCIAL TRANSACTION +01:25:32 Slot [367] | NOT FINANCIAL TRANSACTION +01:25:43 Slot [344] | NOT FINANCIAL TRANSACTION +01:25:53 Slot [386] | NOT FINANCIAL TRANSACTION +01:26:08 Slot [388] | NOT FINANCIAL TRANSACTION +01:26:15 Slot [410] | NOT FINANCIAL TRANSACTION +01:26:19 Slot [357] | NOT FINANCIAL TRANSACTION +01:26:29 Slot [414] | NOT FINANCIAL TRANSACTION +01:26:39 Slot [401] | NOT FINANCIAL TRANSACTION +01:26:50 Slot [408] | NOT FINANCIAL TRANSACTION +01:27:01 Slot [413] | NOT FINANCIAL TRANSACTION +01:27:12 Slot [393] | NOT FINANCIAL TRANSACTION +01:27:17 Slot [403] | NOT FINANCIAL TRANSACTION +01:27:23 Slot [398] | NOT FINANCIAL TRANSACTION +01:27:35 Slot [420] | NOT FINANCIAL TRANSACTION +01:27:38 Slot [391] | NOT FINANCIAL TRANSACTION +01:27:49 Slot [418] | NOT FINANCIAL TRANSACTION +01:27:59 Slot [392] | NOT FINANCIAL TRANSACTION +01:28:09 Slot [356] | NOT FINANCIAL TRANSACTION +01:28:19 Slot [416] | NOT FINANCIAL TRANSACTION +01:28:20 Slot [425] | NOT FINANCIAL TRANSACTION +01:28:30 Slot [383] | NOT FINANCIAL TRANSACTION +01:28:41 Slot [415] | NOT FINANCIAL TRANSACTION +01:28:51 Slot [411] | NOT FINANCIAL TRANSACTION +01:29:07 Slot [387] | NOT FINANCIAL TRANSACTION +01:29:21 Slot [396] | NOT FINANCIAL TRANSACTION +01:29:22 Slot [431] | NOT FINANCIAL TRANSACTION +01:29:38 Slot [395] | NOT FINANCIAL TRANSACTION +01:29:54 Slot [423] | NOT FINANCIAL TRANSACTION +01:30:04 Slot [402] | NOT FINANCIAL TRANSACTION +01:30:16 Slot [400] | NOT FINANCIAL TRANSACTION +01:30:20 Slot [429] | NOT FINANCIAL TRANSACTION +01:30:23 Slot [381] | NOT FINANCIAL TRANSACTION +01:30:30 Slot [375] | NOT FINANCIAL TRANSACTION +01:30:40 Slot [417] | NOT FINANCIAL TRANSACTION +01:30:51 Slot [438] | NOT FINANCIAL TRANSACTION +01:31:06 Slot [428] | NOT FINANCIAL TRANSACTION +01:31:22 Slot [406] | NOT FINANCIAL TRANSACTION +01:31:25 Slot [399] | NOT FINANCIAL TRANSACTION +01:31:32 Slot [437] | NOT FINANCIAL TRANSACTION +01:31:35 Slot [419] | NOT FINANCIAL TRANSACTION +01:31:43 Slot [404] | NOT FINANCIAL TRANSACTION +01:31:58 Slot [427] | NOT FINANCIAL TRANSACTION +01:32:08 Slot [422] | NOT FINANCIAL TRANSACTION +01:32:18 Slot [445] | NOT FINANCIAL TRANSACTION +01:32:27 Slot [394] | NOT FINANCIAL TRANSACTION +01:32:28 Slot [440] | NOT FINANCIAL TRANSACTION +01:32:35 Slot [452] | NOT FINANCIAL TRANSACTION +01:32:38 Slot [448] | NOT FINANCIAL TRANSACTION +01:32:49 Slot [389] | NOT FINANCIAL TRANSACTION +01:33:05 Slot [368] | NOT FINANCIAL TRANSACTION +01:33:17 Slot [443] | NOT FINANCIAL TRANSACTION +01:33:27 Slot [442] | NOT FINANCIAL TRANSACTION +01:33:29 Slot [465] | NOT FINANCIAL TRANSACTION +01:33:38 Slot [439] | NOT FINANCIAL TRANSACTION +01:33:53 Slot [435] | NOT FINANCIAL TRANSACTION +01:34:08 Slot [390] | NOT FINANCIAL TRANSACTION +01:34:19 Slot [376] | NOT FINANCIAL TRANSACTION +01:34:30 Slot [433] | NOT FINANCIAL TRANSACTION +01:34:31 Slot [424] | NOT FINANCIAL TRANSACTION +01:34:40 Slot [430] | NOT FINANCIAL TRANSACTION +01:34:50 Slot [447] | NOT FINANCIAL TRANSACTION +01:35:00 Slot [460] | NOT FINANCIAL TRANSACTION +01:35:11 Slot [421] | NOT FINANCIAL TRANSACTION +01:35:16 Slot [432] | NOT FINANCIAL TRANSACTION +01:35:26 Slot [478] | NOT FINANCIAL TRANSACTION +01:35:33 Slot [450] | NOT FINANCIAL TRANSACTION +01:35:37 Slot [463] | NOT FINANCIAL TRANSACTION +01:35:47 Slot [467] | NOT FINANCIAL TRANSACTION +01:35:57 Slot [441] | NOT FINANCIAL TRANSACTION +01:36:09 Slot [456] | NOT FINANCIAL TRANSACTION +01:36:19 Slot [462] | NOT FINANCIAL TRANSACTION +01:36:30 Slot [405] | NOT FINANCIAL TRANSACTION +01:36:35 Slot [434] | NOT FINANCIAL TRANSACTION +01:36:41 Slot [455] | NOT FINANCIAL TRANSACTION +01:36:51 Slot [426] | NOT FINANCIAL TRANSACTION +01:37:01 Slot [485] | NOT FINANCIAL TRANSACTION +01:37:05 Slot [412] | NOT FINANCIAL TRANSACTION +01:37:14 Slot [407] | NOT FINANCIAL TRANSACTION +01:37:28 Slot [449] | NOT FINANCIAL TRANSACTION +01:37:35 Slot [481] | NOT FINANCIAL TRANSACTION +01:37:37 Slot [461] | NOT FINANCIAL TRANSACTION +01:37:39 Slot [475] | NOT FINANCIAL TRANSACTION +01:37:49 Slot [469] | NOT FINANCIAL TRANSACTION +01:38:05 Slot [468] | NOT FINANCIAL TRANSACTION +01:38:20 Slot [453] | NOT FINANCIAL TRANSACTION +01:38:31 Slot [409] | NOT FINANCIAL TRANSACTION +01:38:39 Slot [457] | NOT FINANCIAL TRANSACTION +01:38:42 Slot [487] | NOT FINANCIAL TRANSACTION +01:38:57 Slot [474] | NOT FINANCIAL TRANSACTION +01:39:08 Slot [482] | NOT FINANCIAL TRANSACTION +01:39:23 Slot [472] | NOT FINANCIAL TRANSACTION +01:39:38 Slot [444] | NOT FINANCIAL TRANSACTION +01:39:41 Slot [483] | NOT FINANCIAL TRANSACTION +01:39:48 Slot [479] | NOT FINANCIAL TRANSACTION +01:39:58 Slot [471] | NOT FINANCIAL TRANSACTION +01:40:13 Slot [489] | NOT FINANCIAL TRANSACTION +01:40:16 Slot [451] | NOT FINANCIAL TRANSACTION +01:40:28 Slot [490] | NOT FINANCIAL TRANSACTION +01:40:38 Slot [446] | NOT FINANCIAL TRANSACTION +01:40:43 Slot [459] | NOT FINANCIAL TRANSACTION +01:40:54 Slot [498] | NOT FINANCIAL TRANSACTION +01:41:06 Slot [476] | NOT FINANCIAL TRANSACTION +01:41:16 Slot [436] | NOT FINANCIAL TRANSACTION +01:41:31 Slot [486] | NOT FINANCIAL TRANSACTION +01:41:42 Slot [491] | NOT FINANCIAL TRANSACTION +01:41:45 Slot [497] | NOT FINANCIAL TRANSACTION +01:41:53 Slot [473] | NOT FINANCIAL TRANSACTION +01:42:04 Slot [499] | NOT FINANCIAL TRANSACTION +01:42:20 Slot [7] | NOT FINANCIAL TRANSACTION +01:42:30 Slot [2] | NOT FINANCIAL TRANSACTION +01:42:35 Slot [470] | NOT FINANCIAL TRANSACTION +01:42:40 Slot [480] | NOT FINANCIAL TRANSACTION +01:42:47 Slot [477] | NOT FINANCIAL TRANSACTION +01:42:50 Slot [495] | NOT FINANCIAL TRANSACTION +01:43:01 Slot [464] | NOT FINANCIAL TRANSACTION +01:43:13 Slot [18] | NOT FINANCIAL TRANSACTION +01:43:28 Slot [492] | NOT FINANCIAL TRANSACTION +01:43:38 Slot [14] | NOT FINANCIAL TRANSACTION +01:43:49 Slot [24] | NOT FINANCIAL TRANSACTION +01:43:49 Slot [454] | NOT FINANCIAL TRANSACTION +01:43:59 Slot [484] | NOT FINANCIAL TRANSACTION +01:44:09 Slot [466] | NOT FINANCIAL TRANSACTION +01:44:19 Slot [22] | NOT FINANCIAL TRANSACTION +01:44:30 Slot [3] | NOT FINANCIAL TRANSACTION +01:44:41 Slot [493] | NOT FINANCIAL TRANSACTION +01:44:51 Slot [12] | NOT FINANCIAL TRANSACTION +01:44:51 Slot [488] | NOT FINANCIAL TRANSACTION +01:45:01 Slot [458] | NOT FINANCIAL TRANSACTION +01:45:12 Slot [0] | NOT FINANCIAL TRANSACTION +01:45:17 Slot [31] | NOT FINANCIAL TRANSACTION +01:45:23 Slot [4] | NOT FINANCIAL TRANSACTION +01:45:38 Slot [16] | NOT FINANCIAL TRANSACTION +01:45:49 Slot [5] | NOT FINANCIAL TRANSACTION +01:45:53 Slot [1] | NOT FINANCIAL TRANSACTION +01:45:59 Slot [8] | NOT FINANCIAL TRANSACTION +01:46:09 Slot [21] | NOT FINANCIAL TRANSACTION +01:46:20 Slot [496] | NOT FINANCIAL TRANSACTION +01:46:30 Slot [19] | NOT FINANCIAL TRANSACTION +01:46:40 Slot [15] | NOT FINANCIAL TRANSACTION +01:46:55 Slot [23] | NOT FINANCIAL TRANSACTION +01:46:55 Slot [26] | NOT FINANCIAL TRANSACTION +01:47:10 Slot [10] | NOT FINANCIAL TRANSACTION +01:47:21 Slot [9] | NOT FINANCIAL TRANSACTION +01:47:31 Slot [6] | NOT FINANCIAL TRANSACTION +01:47:35 Slot [27] | NOT FINANCIAL TRANSACTION +01:47:47 Slot [25] | NOT FINANCIAL TRANSACTION +01:47:57 Slot [30] | NOT FINANCIAL TRANSACTION +01:47:57 Slot [11] | NOT FINANCIAL TRANSACTION +01:48:07 Slot [46] | NOT FINANCIAL TRANSACTION +01:48:18 Slot [29] | NOT FINANCIAL TRANSACTION +01:48:29 Slot [20] | NOT FINANCIAL TRANSACTION +01:48:41 Slot [494] | NOT FINANCIAL TRANSACTION +01:48:51 Slot [34] | NOT FINANCIAL TRANSACTION +01:48:59 Slot [28] | NOT FINANCIAL TRANSACTION +01:49:02 Slot [38] | NOT FINANCIAL TRANSACTION +01:49:13 Slot [42] | NOT FINANCIAL TRANSACTION +01:49:28 Slot [56] | NOT FINANCIAL TRANSACTION +01:49:39 Slot [13] | NOT FINANCIAL TRANSACTION +01:49:49 Slot [39] | NOT FINANCIAL TRANSACTION +01:49:59 Slot [36] | NOT FINANCIAL TRANSACTION +01:50:01 Slot [52] | NOT FINANCIAL TRANSACTION +01:50:10 Slot [32] | NOT FINANCIAL TRANSACTION +01:50:17 Slot [41] | NOT FINANCIAL TRANSACTION +01:50:20 Slot [44] | NOT FINANCIAL TRANSACTION +01:50:31 Slot [47] | NOT FINANCIAL TRANSACTION +01:50:42 Slot [40] | NOT FINANCIAL TRANSACTION +01:50:53 Slot [54] | NOT FINANCIAL TRANSACTION +01:51:03 Slot [57] | NOT FINANCIAL TRANSACTION +01:51:10 Slot [61] | NOT FINANCIAL TRANSACTION +01:51:23 Slot [37] | NOT FINANCIAL TRANSACTION +01:51:33 Slot [59] | NOT FINANCIAL TRANSACTION +01:51:49 Slot [51] | NOT FINANCIAL TRANSACTION +01:51:59 Slot [58] | NOT FINANCIAL TRANSACTION +01:52:05 Slot [55] | NOT FINANCIAL TRANSACTION +01:52:10 Slot [72] | NOT FINANCIAL TRANSACTION +01:52:20 Slot [17] | NOT FINANCIAL TRANSACTION +01:52:31 Slot [60] | NOT FINANCIAL TRANSACTION +01:52:35 Slot [48] | NOT FINANCIAL TRANSACTION +01:52:41 Slot [63] | NOT FINANCIAL TRANSACTION +01:52:50 +Slot[35] 0200 010000 6688990105924003 ------------- 51 287022 000050000000 507703698639050045006688990105924003 507703698639 637577 621354 S +01:52:51 Slot [71] | NOT FINANCIAL TRANSACTION +01:53:02 Slot [53] | NOT FINANCIAL TRANSACTION +01:53:07 Slot [79] | NOT FINANCIAL TRANSACTION +01:53:17 Slot [67] | NOT FINANCIAL TRANSACTION +01:53:28 Slot [49] | NOT FINANCIAL TRANSACTION +01:53:43 +Slot[80] 0200 010000 6688990105924003 ------------- 00 287024 000005000000 507703698641050045006688990105924003 507703698641 462252 621354 S +01:53:44 Slot [85] | NOT FINANCIAL TRANSACTION +01:53:47 Slot [75] | NOT FINANCIAL TRANSACTION +01:54:00 Slot [45] | NOT FINANCIAL TRANSACTION +01:54:09 Slot [83] | NOT FINANCIAL TRANSACTION +01:54:10 Slot [78] | NOT FINANCIAL TRANSACTION +01:54:20 Slot [43] | NOT FINANCIAL TRANSACTION +01:54:30 Slot [68] | NOT FINANCIAL TRANSACTION +01:54:40 Slot [73] | NOT FINANCIAL TRANSACTION +01:54:50 Slot [89] | NOT FINANCIAL TRANSACTION +01:55:02 Slot [91] | NOT FINANCIAL TRANSACTION +01:55:11 Slot [76] | NOT FINANCIAL TRANSACTION +01:55:12 Slot [77] | NOT FINANCIAL TRANSACTION +01:55:17 Slot [88] | NOT FINANCIAL TRANSACTION +01:55:22 Slot [94] | NOT FINANCIAL TRANSACTION +01:55:33 Slot [86] | NOT FINANCIAL TRANSACTION +01:55:48 Slot [65] | NOT FINANCIAL TRANSACTION +01:55:58 Slot [93] | NOT FINANCIAL TRANSACTION +01:56:09 Slot [66] | NOT FINANCIAL TRANSACTION +01:56:13 Slot [33] | NOT FINANCIAL TRANSACTION +01:56:19 Slot [103] | NOT FINANCIAL TRANSACTION +01:56:30 Slot [101] | NOT FINANCIAL TRANSACTION +01:56:45 Slot [95] | NOT FINANCIAL TRANSACTION +01:57:00 Slot [105] | NOT FINANCIAL TRANSACTION +01:57:10 Slot [74] | NOT FINANCIAL TRANSACTION +01:57:15 Slot [50] | NOT FINANCIAL TRANSACTION +01:57:20 Slot [70] | NOT FINANCIAL TRANSACTION +01:57:31 Slot [92] | NOT FINANCIAL TRANSACTION +01:57:35 Slot [102] | NOT FINANCIAL TRANSACTION +01:57:41 Slot [81] | NOT FINANCIAL TRANSACTION +01:57:52 Slot [107] | NOT FINANCIAL TRANSACTION +01:58:02 Slot [100] | NOT FINANCIAL TRANSACTION +01:58:12 Slot [114] | NOT FINANCIAL TRANSACTION +01:58:17 Slot [108] | NOT FINANCIAL TRANSACTION +01:58:23 Slot [104] | NOT FINANCIAL TRANSACTION +01:58:33 Slot [82] | NOT FINANCIAL TRANSACTION +01:58:43 Slot [122] | NOT FINANCIAL TRANSACTION +01:58:53 Slot [87] | NOT FINANCIAL TRANSACTION +01:59:03 Slot [69] | NOT FINANCIAL TRANSACTION +01:59:14 Slot [119] | NOT FINANCIAL TRANSACTION +01:59:19 Slot [117] | NOT FINANCIAL TRANSACTION +01:59:30 Slot [115] | NOT FINANCIAL TRANSACTION +01:59:41 Slot [110] | NOT FINANCIAL TRANSACTION +01:59:52 Slot [126] | NOT FINANCIAL TRANSACTION +02:00:02 Slot [96] | NOT FINANCIAL TRANSACTION +02:00:12 Slot [62] | NOT FINANCIAL TRANSACTION +02:00:16 Slot [64] | NOT FINANCIAL TRANSACTION +02:00:21 Slot [136] | NOT FINANCIAL TRANSACTION +02:00:22 Slot [124] | NOT FINANCIAL TRANSACTION +02:00:33 Slot [97] | NOT FINANCIAL TRANSACTION +02:00:44 Slot [84] | NOT FINANCIAL TRANSACTION +02:00:55 Slot [98] | NOT FINANCIAL TRANSACTION +02:01:11 Slot [113] | NOT FINANCIAL TRANSACTION +02:01:22 Slot [90] | NOT FINANCIAL TRANSACTION +02:01:23 Slot [121] | NOT FINANCIAL TRANSACTION +02:01:37 Slot [112] | NOT FINANCIAL TRANSACTION +02:01:52 Slot [99] | NOT FINANCIAL TRANSACTION +02:02:08 Slot [144] | NOT FINANCIAL TRANSACTION +02:02:23 Slot [159] | NOT FINANCIAL TRANSACTION +02:02:25 Slot [134] | NOT FINANCIAL TRANSACTION +02:02:34 Slot [148] | NOT FINANCIAL TRANSACTION +02:02:35 Slot [142] | NOT FINANCIAL TRANSACTION +02:02:44 Slot [111] | NOT FINANCIAL TRANSACTION +02:02:56 Slot [149] | NOT FINANCIAL TRANSACTION +02:03:06 Slot [128] | NOT FINANCIAL TRANSACTION +02:03:22 Slot [140] | NOT FINANCIAL TRANSACTION +02:03:27 Slot [155] | NOT FINANCIAL TRANSACTION +02:03:32 Slot [146] | NOT FINANCIAL TRANSACTION +02:03:42 Slot [131] | NOT FINANCIAL TRANSACTION +02:03:53 Slot [139] | NOT FINANCIAL TRANSACTION +02:03:53 Slot [127] | NOT FINANCIAL TRANSACTION +02:04:08 Slot [109] | NOT FINANCIAL TRANSACTION +02:04:19 Slot [151] | NOT FINANCIAL TRANSACTION +02:04:29 Slot [150] | NOT FINANCIAL TRANSACTION +02:04:29 Slot [154] | NOT FINANCIAL TRANSACTION +02:04:40 Slot [118] | NOT FINANCIAL TRANSACTION +02:04:50 Slot [123] | NOT FINANCIAL TRANSACTION +02:05:00 Slot [138] | NOT FINANCIAL TRANSACTION +02:05:11 Slot [157] | NOT FINANCIAL TRANSACTION +02:05:16 Slot [135] | NOT FINANCIAL TRANSACTION +02:05:22 Slot [171] | NOT FINANCIAL TRANSACTION +02:05:31 Slot [132] | NOT FINANCIAL TRANSACTION +02:05:33 Slot [120] | NOT FINANCIAL TRANSACTION +02:05:43 Slot [116] | NOT FINANCIAL TRANSACTION +02:06:00 Slot [152] | NOT FINANCIAL TRANSACTION +02:06:10 Slot [167] | NOT FINANCIAL TRANSACTION +02:06:20 Slot [156] | NOT FINANCIAL TRANSACTION +02:06:31 Slot [129] | NOT FINANCIAL TRANSACTION +02:06:33 Slot [175] | NOT FINANCIAL TRANSACTION +02:06:42 Slot [130] | NOT FINANCIAL TRANSACTION +02:06:52 Slot [141] | NOT FINANCIAL TRANSACTION +02:07:05 Slot [168] | NOT FINANCIAL TRANSACTION +02:07:19 Slot [166] | NOT FINANCIAL TRANSACTION +02:07:29 Slot [172] | NOT FINANCIAL TRANSACTION +02:07:35 Slot [169] | NOT FINANCIAL TRANSACTION +02:07:35 Slot [160] | NOT FINANCIAL TRANSACTION +02:07:45 Slot [147] | NOT FINANCIAL TRANSACTION +02:07:56 Slot [174] | NOT FINANCIAL TRANSACTION +02:08:11 Slot [164] | NOT FINANCIAL TRANSACTION +02:08:22 Slot [133] | NOT FINANCIAL TRANSACTION +02:08:33 Slot [153] | NOT FINANCIAL TRANSACTION +02:08:37 Slot [178] | NOT FINANCIAL TRANSACTION +02:08:44 Slot [183] | NOT FINANCIAL TRANSACTION +02:08:55 Slot [125] | NOT FINANCIAL TRANSACTION +02:09:11 Slot [195] | NOT FINANCIAL TRANSACTION +02:09:21 Slot [191] | NOT FINANCIAL TRANSACTION +02:09:31 Slot [170] | NOT FINANCIAL TRANSACTION +02:09:39 Slot [143] | NOT FINANCIAL TRANSACTION +02:09:41 Slot [161] | NOT FINANCIAL TRANSACTION +02:09:51 Slot [181] | NOT FINANCIAL TRANSACTION +02:10:01 Slot [189] | NOT FINANCIAL TRANSACTION +02:10:12 Slot [158] | NOT FINANCIAL TRANSACTION +02:10:16 Slot [204] | NOT FINANCIAL TRANSACTION +02:10:22 Slot [197] | NOT FINANCIAL TRANSACTION +02:10:29 Slot [202] | NOT FINANCIAL TRANSACTION +02:10:38 Slot [182] | NOT FINANCIAL TRANSACTION +02:10:41 Slot [200] | NOT FINANCIAL TRANSACTION +02:10:53 Slot [193] | NOT FINANCIAL TRANSACTION +02:11:04 Slot [177] | NOT FINANCIAL TRANSACTION +02:11:15 Slot [198] | NOT FINANCIAL TRANSACTION +02:11:26 Slot [210] | NOT FINANCIAL TRANSACTION +02:11:38 Slot [213] | NOT FINANCIAL TRANSACTION +02:11:43 Slot [106] | NOT FINANCIAL TRANSACTION +02:11:48 +Slot[163] 0200 011000 6213544002163357 ------------- 51 258040 000009000000 5077192580400367BL206213544002163357 507719258040 279463 180893 S +02:11:59 Slot [165] | NOT FINANCIAL TRANSACTION +02:12:13 +Slot[187] 0200 301000 6213544002163357 ------------- 00 258041 031719111725 5077192580410367BL206213544002163357 507719258041 170271 180893 S +02:12:24 Slot [206] | NOT FINANCIAL TRANSACTION +02:12:35 Slot [211] | NOT FINANCIAL TRANSACTION +02:12:39 Slot [162] | NOT FINANCIAL TRANSACTION +02:12:45 Slot [196] | NOT FINANCIAL TRANSACTION +02:12:49 Slot [145] | NOT FINANCIAL TRANSACTION +02:12:54 +Slot[221] 0200 011000 6213544002163357 ------------- 55 258043 000008000000 5077192580430367BL206213544002163357 507719258043 503262 180893 S +02:13:06 Slot [205] | NOT FINANCIAL TRANSACTION +02:13:17 Slot [180] | NOT FINANCIAL TRANSACTION +02:13:28 Slot [217] | NOT FINANCIAL TRANSACTION +02:13:42 Slot [214] | NOT FINANCIAL TRANSACTION +02:13:47 Slot [194] | NOT FINANCIAL TRANSACTION +02:13:53 Slot [222] | NOT FINANCIAL TRANSACTION +02:14:04 Slot [226] | NOT FINANCIAL TRANSACTION +02:14:15 Slot [176] | NOT FINANCIAL TRANSACTION +02:14:20 +Slot[190] 0200 301000 6213544001885786 ------------- 00 258044 031719132225 5077192580440367BL206213544001885786 507719258044 711619 180893 S +02:14:31 Slot [184] | NOT FINANCIAL TRANSACTION +02:14:39 Slot [137] | NOT FINANCIAL TRANSACTION +02:14:46 Slot [225] | NOT FINANCIAL TRANSACTION +02:14:49 Slot [218] | NOT FINANCIAL TRANSACTION +02:14:56 Slot [224] | NOT FINANCIAL TRANSACTION +02:15:07 Slot [173] | NOT FINANCIAL TRANSACTION +02:15:10 +Slot[223] 0200 011000 6213544001885786 ------------- 00 258046 000006000000 5077192580460367BL206213544001885786 507719258046 931923 180893 S +02:15:16 Slot [207] | NOT FINANCIAL TRANSACTION +02:15:22 Slot [208] | NOT FINANCIAL TRANSACTION +02:15:32 Slot [215] | NOT FINANCIAL TRANSACTION +02:15:48 Slot [192] | NOT FINANCIAL TRANSACTION +02:15:51 Slot [231] | NOT FINANCIAL TRANSACTION +02:15:59 Slot [188] | NOT FINANCIAL TRANSACTION +02:16:09 Slot [199] | NOT FINANCIAL TRANSACTION +02:16:24 Slot [220] | NOT FINANCIAL TRANSACTION +02:16:35 Slot [185] | NOT FINANCIAL TRANSACTION +02:16:45 Slot [179] | NOT FINANCIAL TRANSACTION +02:16:53 Slot [229] | NOT FINANCIAL TRANSACTION +02:16:56 Slot [186] | NOT FINANCIAL TRANSACTION +02:17:11 Slot [227] | NOT FINANCIAL TRANSACTION +02:17:22 Slot [212] | NOT FINANCIAL TRANSACTION +02:17:33 Slot [219] | NOT FINANCIAL TRANSACTION +02:17:35 Slot [230] | NOT FINANCIAL TRANSACTION +02:17:43 Slot [236] | NOT FINANCIAL TRANSACTION +02:17:53 Slot [239] | NOT FINANCIAL TRANSACTION +02:17:55 Slot [216] | NOT FINANCIAL TRANSACTION +02:18:04 Slot [232] | NOT FINANCIAL TRANSACTION +02:18:14 Slot [209] | NOT FINANCIAL TRANSACTION +02:18:30 Slot [235] | NOT FINANCIAL TRANSACTION +02:18:41 Slot [250] | NOT FINANCIAL TRANSACTION +02:18:53 Slot [234] | NOT FINANCIAL TRANSACTION +02:18:57 Slot [238] | NOT FINANCIAL TRANSACTION +02:19:09 Slot [242] | NOT FINANCIAL TRANSACTION +02:19:20 Slot [252] | NOT FINANCIAL TRANSACTION +02:19:36 Slot [201] | NOT FINANCIAL TRANSACTION +02:19:50 Slot [245] | NOT FINANCIAL TRANSACTION +02:19:59 Slot [228] | NOT FINANCIAL TRANSACTION +02:20:01 Slot [248] | NOT FINANCIAL TRANSACTION +02:20:11 Slot [240] | NOT FINANCIAL TRANSACTION +02:20:16 Slot [203] | NOT FINANCIAL TRANSACTION +02:20:24 Slot [244] | NOT FINANCIAL TRANSACTION +02:20:38 Slot [258] | NOT FINANCIAL TRANSACTION +02:20:48 Slot [243] | NOT FINANCIAL TRANSACTION +02:21:01 Slot [253] | NOT FINANCIAL TRANSACTION +02:21:03 Slot [247] | NOT FINANCIAL TRANSACTION +02:21:14 Slot [246] | NOT FINANCIAL TRANSACTION +02:21:24 Slot [256] | NOT FINANCIAL TRANSACTION +02:21:35 Slot [241] | NOT FINANCIAL TRANSACTION +02:21:46 Slot [260] | NOT FINANCIAL TRANSACTION +02:21:59 Slot [249] | NOT FINANCIAL TRANSACTION +02:22:03 Slot [265] | NOT FINANCIAL TRANSACTION +02:22:10 Slot [273] | NOT FINANCIAL TRANSACTION +02:22:20 Slot [251] | NOT FINANCIAL TRANSACTION +02:22:30 Slot [269] | NOT FINANCIAL TRANSACTION +02:22:35 Slot [254] | NOT FINANCIAL TRANSACTION +02:22:42 Slot [268] | NOT FINANCIAL TRANSACTION +02:22:53 Slot [276] | NOT FINANCIAL TRANSACTION +02:23:03 Slot [264] | NOT FINANCIAL TRANSACTION +02:23:05 Slot [266] | NOT FINANCIAL TRANSACTION +02:23:17 Slot [279] | NOT FINANCIAL TRANSACTION +02:23:29 Slot [233] | NOT FINANCIAL TRANSACTION +02:23:45 Slot [261] | NOT FINANCIAL TRANSACTION +02:23:55 Slot [262] | NOT FINANCIAL TRANSACTION +02:24:05 Slot [257] | NOT FINANCIAL TRANSACTION +02:24:07 Slot [284] | NOT FINANCIAL TRANSACTION +02:24:15 Slot [274] | NOT FINANCIAL TRANSACTION +02:24:25 Slot [263] | NOT FINANCIAL TRANSACTION +02:24:41 Slot [267] | NOT FINANCIAL TRANSACTION +02:24:56 Slot [270] | NOT FINANCIAL TRANSACTION +02:25:06 Slot [299] | NOT FINANCIAL TRANSACTION +02:25:09 Slot [280] | NOT FINANCIAL TRANSACTION +02:25:16 Slot [278] | NOT FINANCIAL TRANSACTION +02:25:16 Slot [289] | NOT FINANCIAL TRANSACTION +02:25:25 Slot [277] | NOT FINANCIAL TRANSACTION +02:25:27 Slot [285] | NOT FINANCIAL TRANSACTION +02:25:42 Slot [293] | NOT FINANCIAL TRANSACTION +02:25:52 Slot [287] | NOT FINANCIAL TRANSACTION +02:26:07 Slot [304] | NOT FINANCIAL TRANSACTION +02:26:11 Slot [281] | NOT FINANCIAL TRANSACTION +02:26:22 Slot [296] | NOT FINANCIAL TRANSACTION +02:26:38 Slot [275] | NOT FINANCIAL TRANSACTION +02:26:53 Slot [309] | NOT FINANCIAL TRANSACTION +02:27:04 Slot [294] | NOT FINANCIAL TRANSACTION +02:27:11 Slot [291] | NOT FINANCIAL TRANSACTION +02:27:13 Slot [286] | NOT FINANCIAL TRANSACTION +02:27:14 Slot [259] | NOT FINANCIAL TRANSACTION +02:27:24 Slot [303] | NOT FINANCIAL TRANSACTION +02:27:34 Slot [282] | NOT FINANCIAL TRANSACTION +02:27:36 Slot [271] | NOT FINANCIAL TRANSACTION +02:27:45 Slot [298] | NOT FINANCIAL TRANSACTION +02:27:56 Slot [272] | NOT FINANCIAL TRANSACTION +02:28:11 Slot [317] | NOT FINANCIAL TRANSACTION +02:28:15 Slot [288] | NOT FINANCIAL TRANSACTION +02:28:21 Slot [307] | NOT FINANCIAL TRANSACTION +02:28:31 Slot [237] | NOT FINANCIAL TRANSACTION +02:28:42 Slot [329] | NOT FINANCIAL TRANSACTION +02:28:52 Slot [314] | NOT FINANCIAL TRANSACTION +02:29:02 Slot [315] | NOT FINANCIAL TRANSACTION +02:29:13 Slot [313] | NOT FINANCIAL TRANSACTION +02:29:17 Slot [323] | NOT FINANCIAL TRANSACTION +02:29:23 Slot [336] | NOT FINANCIAL TRANSACTION +02:29:33 Slot [331] | NOT FINANCIAL TRANSACTION +02:29:43 Slot [324] | NOT FINANCIAL TRANSACTION +02:29:54 Slot [283] | NOT FINANCIAL TRANSACTION +02:30:05 Slot [308] | NOT FINANCIAL TRANSACTION +02:30:16 Slot [319] | NOT FINANCIAL TRANSACTION +02:30:19 Slot [321] | NOT FINANCIAL TRANSACTION +02:30:20 Slot [295] | NOT FINANCIAL TRANSACTION +02:30:33 Slot [255] | NOT FINANCIAL TRANSACTION +02:30:44 Slot [318] | NOT FINANCIAL TRANSACTION +02:30:54 Slot [300] | NOT FINANCIAL TRANSACTION +02:31:04 Slot [326] | NOT FINANCIAL TRANSACTION +02:31:16 Slot [312] | NOT FINANCIAL TRANSACTION +02:31:21 Slot [340] | NOT FINANCIAL TRANSACTION +02:31:31 Slot [302] | NOT FINANCIAL TRANSACTION +02:31:42 Slot [306] | NOT FINANCIAL TRANSACTION +02:31:53 Slot [355] | NOT FINANCIAL TRANSACTION +02:32:04 Slot [316] | NOT FINANCIAL TRANSACTION +02:32:15 Slot [325] | NOT FINANCIAL TRANSACTION +02:32:23 Slot [311] | NOT FINANCIAL TRANSACTION +02:32:26 Slot [334] | NOT FINANCIAL TRANSACTION +02:32:35 Slot [339] | NOT FINANCIAL TRANSACTION +02:32:37 Slot [310] | NOT FINANCIAL TRANSACTION +02:32:51 Slot [297] | NOT FINANCIAL TRANSACTION +02:33:01 Slot [301] | NOT FINANCIAL TRANSACTION +02:33:12 Slot [349] | NOT FINANCIAL TRANSACTION +02:33:23 Slot [350] | NOT FINANCIAL TRANSACTION +02:33:25 Slot [341] | NOT FINANCIAL TRANSACTION +02:33:34 Slot [328] | NOT FINANCIAL TRANSACTION +02:33:48 Slot [332] | NOT FINANCIAL TRANSACTION +02:33:58 Slot [338] | NOT FINANCIAL TRANSACTION +02:34:09 Slot [305] | NOT FINANCIAL TRANSACTION +02:34:24 Slot [352] | NOT FINANCIAL TRANSACTION +02:34:27 Slot [364] | NOT FINANCIAL TRANSACTION +02:34:35 Slot [330] | NOT FINANCIAL TRANSACTION +02:34:46 Slot [343] | NOT FINANCIAL TRANSACTION +02:34:56 Slot [337] | NOT FINANCIAL TRANSACTION +02:35:07 Slot [345] | NOT FINANCIAL TRANSACTION +02:35:16 Slot [354] | NOT FINANCIAL TRANSACTION +02:35:18 Slot [320] | NOT FINANCIAL TRANSACTION +02:35:28 Slot [342] | NOT FINANCIAL TRANSACTION +02:35:29 Slot [335] | NOT FINANCIAL TRANSACTION +02:35:38 Slot [369] | NOT FINANCIAL TRANSACTION +02:35:48 Slot [366] | NOT FINANCIAL TRANSACTION +02:36:03 Slot [347] | NOT FINANCIAL TRANSACTION +02:36:10 Slot [290] | NOT FINANCIAL TRANSACTION +02:36:14 Slot [374] | NOT FINANCIAL TRANSACTION +02:36:24 Slot [327] | NOT FINANCIAL TRANSACTION +02:36:31 Slot [292] | NOT FINANCIAL TRANSACTION +02:36:35 Slot [365] | NOT FINANCIAL TRANSACTION +02:36:46 Slot [333] | NOT FINANCIAL TRANSACTION +02:36:56 Slot [358] | NOT FINANCIAL TRANSACTION +02:37:06 Slot [384] | NOT FINANCIAL TRANSACTION +02:37:16 Slot [360] | NOT FINANCIAL TRANSACTION +02:37:27 Slot [373] | NOT FINANCIAL TRANSACTION +02:37:33 Slot [353] | NOT FINANCIAL TRANSACTION +02:37:35 Slot [362] | NOT FINANCIAL TRANSACTION +02:37:38 Slot [372] | NOT FINANCIAL TRANSACTION +02:37:48 Slot [380] | NOT FINANCIAL TRANSACTION +02:37:59 Slot [379] | NOT FINANCIAL TRANSACTION +02:38:10 Slot [382] | NOT FINANCIAL TRANSACTION +02:38:25 Slot [348] | NOT FINANCIAL TRANSACTION +02:38:35 Slot [361] | NOT FINANCIAL TRANSACTION +02:38:40 Slot [322] | NOT FINANCIAL TRANSACTION +02:38:50 Slot [346] | NOT FINANCIAL TRANSACTION +02:39:01 Slot [377] | NOT FINANCIAL TRANSACTION +02:39:11 Slot [370] | NOT FINANCIAL TRANSACTION +02:39:21 Slot [378] | NOT FINANCIAL TRANSACTION +02:39:32 Slot [363] | NOT FINANCIAL TRANSACTION +02:39:37 Slot [385] | NOT FINANCIAL TRANSACTION +02:39:43 Slot [371] | NOT FINANCIAL TRANSACTION +02:39:58 Slot [359] | NOT FINANCIAL TRANSACTION +02:40:08 Slot [351] | NOT FINANCIAL TRANSACTION +02:40:17 Slot [397] | NOT FINANCIAL TRANSACTION +02:40:23 Slot [367] | NOT FINANCIAL TRANSACTION +02:40:33 Slot [344] | NOT FINANCIAL TRANSACTION +02:40:39 Slot [386] | NOT FINANCIAL TRANSACTION +02:40:48 Slot [388] | NOT FINANCIAL TRANSACTION +02:40:59 Slot [410] | NOT FINANCIAL TRANSACTION +02:41:10 Slot [357] | NOT FINANCIAL TRANSACTION +02:41:20 Slot [414] | NOT FINANCIAL TRANSACTION +02:41:31 Slot [401] | NOT FINANCIAL TRANSACTION +02:41:41 Slot [408] | NOT FINANCIAL TRANSACTION +02:41:42 Slot [413] | NOT FINANCIAL TRANSACTION +02:41:52 Slot [393] | NOT FINANCIAL TRANSACTION +02:42:02 Slot [403] | NOT FINANCIAL TRANSACTION +02:42:12 Slot [398] | NOT FINANCIAL TRANSACTION +02:42:23 Slot [420] | NOT FINANCIAL TRANSACTION +02:42:33 Slot [391] | NOT FINANCIAL TRANSACTION +02:42:35 Slot [418] | NOT FINANCIAL TRANSACTION +02:42:43 Slot [392] | NOT FINANCIAL TRANSACTION +02:42:44 Slot [356] | NOT FINANCIAL TRANSACTION +02:43:00 Slot [416] | NOT FINANCIAL TRANSACTION +02:43:15 Slot [425] | NOT FINANCIAL TRANSACTION +02:43:25 Slot [383] | NOT FINANCIAL TRANSACTION +02:43:35 Slot [415] | NOT FINANCIAL TRANSACTION +02:43:45 Slot [411] | NOT FINANCIAL TRANSACTION +02:43:46 Slot [387] | NOT FINANCIAL TRANSACTION +02:43:53 Slot [396] | NOT FINANCIAL TRANSACTION +02:44:01 Slot [431] | NOT FINANCIAL TRANSACTION +02:44:12 Slot [395] | NOT FINANCIAL TRANSACTION +02:44:28 Slot [423] | NOT FINANCIAL TRANSACTION +02:44:38 Slot [402] | NOT FINANCIAL TRANSACTION +02:44:47 Slot [400] | NOT FINANCIAL TRANSACTION +02:44:48 Slot [429] | NOT FINANCIAL TRANSACTION +02:44:59 Slot [381] | NOT FINANCIAL TRANSACTION +02:45:10 Slot [375] | NOT FINANCIAL TRANSACTION +02:45:17 Slot [417] | NOT FINANCIAL TRANSACTION +02:45:20 Slot [438] | NOT FINANCIAL TRANSACTION +02:45:36 Slot [428] | NOT FINANCIAL TRANSACTION +02:45:49 Slot [406] | NOT FINANCIAL TRANSACTION +02:45:52 Slot [399] | NOT FINANCIAL TRANSACTION +02:46:03 Slot [437] | NOT FINANCIAL TRANSACTION +02:46:13 Slot [419] | NOT FINANCIAL TRANSACTION +02:46:23 Slot [404] | NOT FINANCIAL TRANSACTION +02:46:38 Slot [427] | NOT FINANCIAL TRANSACTION +02:46:48 Slot [422] | NOT FINANCIAL TRANSACTION +02:46:51 Slot [445] | NOT FINANCIAL TRANSACTION +02:46:56 Slot [394] | NOT FINANCIAL TRANSACTION +02:46:59 Slot [440] | NOT FINANCIAL TRANSACTION +02:47:10 Slot [452] | NOT FINANCIAL TRANSACTION +02:47:21 Slot [448] | NOT FINANCIAL TRANSACTION +02:47:32 Slot [389] | NOT FINANCIAL TRANSACTION +02:47:35 Slot [368] | NOT FINANCIAL TRANSACTION +02:47:47 Slot [443] | NOT FINANCIAL TRANSACTION +02:47:53 Slot [442] | NOT FINANCIAL TRANSACTION +02:47:58 Slot [465] | NOT FINANCIAL TRANSACTION +02:48:08 Slot [439] | NOT FINANCIAL TRANSACTION +02:48:18 Slot [435] | NOT FINANCIAL TRANSACTION +02:48:33 Slot [390] | NOT FINANCIAL TRANSACTION +02:48:49 Slot [376] | NOT FINANCIAL TRANSACTION +02:48:55 Slot [433] | NOT FINANCIAL TRANSACTION +02:48:59 Slot [424] | NOT FINANCIAL TRANSACTION +02:49:10 Slot [430] | NOT FINANCIAL TRANSACTION +02:49:20 Slot [447] | NOT FINANCIAL TRANSACTION +02:49:31 Slot [460] | NOT FINANCIAL TRANSACTION +02:49:46 Slot [421] | NOT FINANCIAL TRANSACTION +02:49:56 Slot [478] | NOT FINANCIAL TRANSACTION +02:49:57 Slot [432] | NOT FINANCIAL TRANSACTION +02:50:08 Slot [450] | NOT FINANCIAL TRANSACTION +02:50:17 Slot [463] | NOT FINANCIAL TRANSACTION +02:50:23 Slot [467] | NOT FINANCIAL TRANSACTION +02:50:33 Slot [441] | NOT FINANCIAL TRANSACTION +02:50:48 Slot [456] | NOT FINANCIAL TRANSACTION +02:50:58 Slot [405] | NOT FINANCIAL TRANSACTION +02:50:59 Slot [462] | NOT FINANCIAL TRANSACTION +02:51:13 Slot [434] | NOT FINANCIAL TRANSACTION +02:51:23 Slot [455] | NOT FINANCIAL TRANSACTION +02:51:35 Slot [426] | NOT FINANCIAL TRANSACTION +02:51:45 Slot [485] | NOT FINANCIAL TRANSACTION +02:51:55 Slot [412] | NOT FINANCIAL TRANSACTION +02:52:01 Slot [407] | NOT FINANCIAL TRANSACTION +02:52:06 Slot [449] | NOT FINANCIAL TRANSACTION +02:52:16 Slot [481] | NOT FINANCIAL TRANSACTION +02:52:26 Slot [461] | NOT FINANCIAL TRANSACTION +02:52:35 Slot [475] | NOT FINANCIAL TRANSACTION +02:52:37 Slot [469] | NOT FINANCIAL TRANSACTION +02:52:52 Slot [468] | NOT FINANCIAL TRANSACTION +02:53:03 Slot [409] | NOT FINANCIAL TRANSACTION +02:53:03 Slot [453] | NOT FINANCIAL TRANSACTION +02:53:14 Slot [457] | NOT FINANCIAL TRANSACTION +02:53:24 Slot [487] | NOT FINANCIAL TRANSACTION +02:53:35 Slot [474] | NOT FINANCIAL TRANSACTION +02:53:45 Slot [482] | NOT FINANCIAL TRANSACTION +02:53:55 Slot [472] | NOT FINANCIAL TRANSACTION +02:54:05 Slot [444] | NOT FINANCIAL TRANSACTION +02:54:05 Slot [483] | NOT FINANCIAL TRANSACTION +02:54:16 Slot [479] | NOT FINANCIAL TRANSACTION +02:54:26 Slot [471] | NOT FINANCIAL TRANSACTION +02:54:43 Slot [489] | NOT FINANCIAL TRANSACTION +02:54:58 Slot [451] | NOT FINANCIAL TRANSACTION +02:55:07 Slot [490] | NOT FINANCIAL TRANSACTION +02:55:08 Slot [446] | NOT FINANCIAL TRANSACTION +02:55:17 Slot [459] | NOT FINANCIAL TRANSACTION +02:55:24 Slot [498] | NOT FINANCIAL TRANSACTION +02:55:34 Slot [476] | NOT FINANCIAL TRANSACTION +02:55:44 Slot [436] | NOT FINANCIAL TRANSACTION +02:55:55 Slot [486] | NOT FINANCIAL TRANSACTION +02:56:06 Slot [491] | NOT FINANCIAL TRANSACTION +02:56:09 Slot [497] | NOT FINANCIAL TRANSACTION +02:56:17 Slot [473] | NOT FINANCIAL TRANSACTION +02:56:28 Slot [499] | NOT FINANCIAL TRANSACTION +02:56:38 Slot [7] | NOT FINANCIAL TRANSACTION +02:56:53 Slot [2] | NOT FINANCIAL TRANSACTION +02:57:03 Slot [470] | NOT FINANCIAL TRANSACTION +02:57:11 Slot [480] | NOT FINANCIAL TRANSACTION +02:57:14 Slot [477] | NOT FINANCIAL TRANSACTION +02:57:24 Slot [495] | NOT FINANCIAL TRANSACTION +02:57:35 Slot [464] | NOT FINANCIAL TRANSACTION +02:57:35 Slot [18] | NOT FINANCIAL TRANSACTION +02:57:42 Slot [492] | NOT FINANCIAL TRANSACTION +02:57:46 Slot [14] | NOT FINANCIAL TRANSACTION +02:57:57 Slot [24] | NOT FINANCIAL TRANSACTION +02:58:08 Slot [454] | NOT FINANCIAL TRANSACTION +02:58:13 Slot [484] | NOT FINANCIAL TRANSACTION +02:58:19 Slot [466] | NOT FINANCIAL TRANSACTION +02:58:33 Slot [22] | NOT FINANCIAL TRANSACTION +02:58:44 Slot [3] | NOT FINANCIAL TRANSACTION +02:58:55 Slot [493] | NOT FINANCIAL TRANSACTION +02:59:05 Slot [12] | NOT FINANCIAL TRANSACTION +02:59:15 Slot [488] | NOT FINANCIAL TRANSACTION +02:59:16 Slot [458] | NOT FINANCIAL TRANSACTION +02:59:27 Slot [0] | NOT FINANCIAL TRANSACTION +02:59:38 Slot [31] | NOT FINANCIAL TRANSACTION +02:59:52 Slot [4] | NOT FINANCIAL TRANSACTION +03:00:03 Slot [16] | NOT FINANCIAL TRANSACTION +03:00:17 Slot [1] | NOT FINANCIAL TRANSACTION +03:00:17 Slot [5] | NOT FINANCIAL TRANSACTION +03:00:18 Slot [8] | NOT FINANCIAL TRANSACTION +03:00:29 Slot [21] | NOT FINANCIAL TRANSACTION +03:00:35 Slot [496] | NOT FINANCIAL TRANSACTION +03:00:44 Slot [19] | NOT FINANCIAL TRANSACTION +03:00:55 Slot [15] | NOT FINANCIAL TRANSACTION +03:01:10 Slot [23] | NOT FINANCIAL TRANSACTION +03:01:19 Slot [26] | NOT FINANCIAL TRANSACTION +03:01:20 Slot [10] | NOT FINANCIAL TRANSACTION +03:01:31 Slot [9] | NOT FINANCIAL TRANSACTION +03:01:41 Slot [6] | NOT FINANCIAL TRANSACTION +03:01:52 Slot [27] | NOT FINANCIAL TRANSACTION +03:02:02 Slot [25] | NOT FINANCIAL TRANSACTION +03:02:14 Slot [30] | NOT FINANCIAL TRANSACTION +03:02:21 Slot [11] | NOT FINANCIAL TRANSACTION +03:02:29 Slot [46] | NOT FINANCIAL TRANSACTION +03:02:35 Slot [29] | NOT FINANCIAL TRANSACTION +03:02:44 Slot [20] | NOT FINANCIAL TRANSACTION +03:02:54 Slot [494] | NOT FINANCIAL TRANSACTION +03:03:04 Slot [34] | NOT FINANCIAL TRANSACTION +03:03:14 Slot [28] | NOT FINANCIAL TRANSACTION +03:03:23 Slot [38] | NOT FINANCIAL TRANSACTION +03:03:25 Slot [42] | NOT FINANCIAL TRANSACTION +03:03:35 Slot [56] | NOT FINANCIAL TRANSACTION +03:03:46 Slot [13] | NOT FINANCIAL TRANSACTION +03:03:57 Slot [39] | NOT FINANCIAL TRANSACTION +03:04:07 Slot [36] | NOT FINANCIAL TRANSACTION +03:04:23 Slot [52] | NOT FINANCIAL TRANSACTION +03:04:25 Slot [32] | NOT FINANCIAL TRANSACTION +03:04:38 Slot [41] | NOT FINANCIAL TRANSACTION +03:04:49 Slot [44] | NOT FINANCIAL TRANSACTION +03:05:00 Slot [47] | NOT FINANCIAL TRANSACTION +03:05:10 Slot [40] | NOT FINANCIAL TRANSACTION +03:05:17 Slot [54] | NOT FINANCIAL TRANSACTION +03:05:21 Slot [57] | NOT FINANCIAL TRANSACTION +03:05:27 Slot [61] | NOT FINANCIAL TRANSACTION +03:05:32 Slot [37] | NOT FINANCIAL TRANSACTION +03:05:47 Slot [59] | NOT FINANCIAL TRANSACTION +03:05:57 Slot [51] | NOT FINANCIAL TRANSACTION +03:06:12 Slot [58] | NOT FINANCIAL TRANSACTION +03:06:27 Slot [72] | NOT FINANCIAL TRANSACTION +03:06:29 Slot [55] | NOT FINANCIAL TRANSACTION +03:06:37 Slot [17] | NOT FINANCIAL TRANSACTION +03:06:47 Slot [60] | NOT FINANCIAL TRANSACTION +03:07:02 Slot [48] | NOT FINANCIAL TRANSACTION +03:07:12 Slot [63] | NOT FINANCIAL TRANSACTION +03:07:23 Slot [35] | NOT FINANCIAL TRANSACTION +03:07:31 Slot [71] | NOT FINANCIAL TRANSACTION +03:07:35 Slot [53] | NOT FINANCIAL TRANSACTION +03:07:38 Slot [79] | NOT FINANCIAL TRANSACTION +03:07:53 Slot [67] | NOT FINANCIAL TRANSACTION +03:08:03 Slot [49] | NOT FINANCIAL TRANSACTION +03:08:14 Slot [80] | NOT FINANCIAL TRANSACTION +03:08:24 Slot [85] | NOT FINANCIAL TRANSACTION +03:08:28 Slot [75] | NOT FINANCIAL TRANSACTION +03:08:33 Slot [45] | NOT FINANCIAL TRANSACTION +03:08:34 Slot [83] | NOT FINANCIAL TRANSACTION +03:08:45 Slot [78] | NOT FINANCIAL TRANSACTION +03:08:56 Slot [43] | NOT FINANCIAL TRANSACTION +03:09:06 Slot [68] | NOT FINANCIAL TRANSACTION +03:09:16 Slot [73] | NOT FINANCIAL TRANSACTION +03:09:32 Slot [89] | NOT FINANCIAL TRANSACTION +03:09:35 Slot [91] | NOT FINANCIAL TRANSACTION +03:09:47 Slot [76] | NOT FINANCIAL TRANSACTION +03:10:04 Slot [77] | NOT FINANCIAL TRANSACTION +03:10:16 Slot [88] | NOT FINANCIAL TRANSACTION +03:10:20 Slot [94] | NOT FINANCIAL TRANSACTION +03:10:35 Slot [86] | NOT FINANCIAL TRANSACTION +03:10:37 Slot [65] | NOT FINANCIAL TRANSACTION +03:10:45 Slot [93] | NOT FINANCIAL TRANSACTION +03:10:56 Slot [66] | NOT FINANCIAL TRANSACTION +03:11:11 Slot [33] | NOT FINANCIAL TRANSACTION +03:11:21 Slot [103] | NOT FINANCIAL TRANSACTION +03:11:32 Slot [101] | NOT FINANCIAL TRANSACTION +03:11:39 Slot [95] | NOT FINANCIAL TRANSACTION +03:11:43 Slot [105] | NOT FINANCIAL TRANSACTION +03:11:54 Slot [74] | NOT FINANCIAL TRANSACTION +03:12:04 Slot [50] | NOT FINANCIAL TRANSACTION +03:12:15 Slot [70] | NOT FINANCIAL TRANSACTION +03:12:26 Slot [92] | NOT FINANCIAL TRANSACTION +03:12:35 Slot [102] | NOT FINANCIAL TRANSACTION +03:12:36 Slot [81] | NOT FINANCIAL TRANSACTION +03:12:41 Slot [107] | NOT FINANCIAL TRANSACTION +03:12:47 Slot [100] | NOT FINANCIAL TRANSACTION +03:12:57 Slot [114] | NOT FINANCIAL TRANSACTION +03:13:08 Slot [108] | NOT FINANCIAL TRANSACTION +03:13:19 Slot [104] | NOT FINANCIAL TRANSACTION +03:13:34 Slot [82] | NOT FINANCIAL TRANSACTION +03:13:43 Slot [122] | NOT FINANCIAL TRANSACTION +03:13:49 Slot [87] | NOT FINANCIAL TRANSACTION +03:14:04 Slot [69] | NOT FINANCIAL TRANSACTION +03:14:14 Slot [119] | NOT FINANCIAL TRANSACTION +03:14:25 Slot [117] | NOT FINANCIAL TRANSACTION +03:14:35 Slot [115] | NOT FINANCIAL TRANSACTION +03:14:45 Slot [110] | NOT FINANCIAL TRANSACTION +03:14:46 Slot [126] | NOT FINANCIAL TRANSACTION +03:14:56 Slot [96] | NOT FINANCIAL TRANSACTION +03:15:06 Slot [62] | NOT FINANCIAL TRANSACTION +03:15:16 Slot [64] | NOT FINANCIAL TRANSACTION +03:15:17 Slot [136] | NOT FINANCIAL TRANSACTION +03:15:27 Slot [124] | NOT FINANCIAL TRANSACTION +03:15:37 Slot [97] | NOT FINANCIAL TRANSACTION +03:15:47 Slot [84] | NOT FINANCIAL TRANSACTION +03:15:47 Slot [98] | NOT FINANCIAL TRANSACTION +03:15:58 Slot [113] | NOT FINANCIAL TRANSACTION +03:16:14 Slot [90] | NOT FINANCIAL TRANSACTION +03:16:24 Slot [121] | NOT FINANCIAL TRANSACTION +03:16:35 Slot [112] | NOT FINANCIAL TRANSACTION +03:16:46 Slot [99] | NOT FINANCIAL TRANSACTION +03:16:49 Slot [144] | NOT FINANCIAL TRANSACTION +03:16:56 Slot [159] | NOT FINANCIAL TRANSACTION +03:17:07 Slot [134] | NOT FINANCIAL TRANSACTION +03:17:17 Slot [148] | NOT FINANCIAL TRANSACTION +03:17:18 Slot [142] | NOT FINANCIAL TRANSACTION +03:17:29 Slot [111] | NOT FINANCIAL TRANSACTION +03:17:35 Slot [149] | NOT FINANCIAL TRANSACTION +03:17:40 Slot [128] | NOT FINANCIAL TRANSACTION +03:17:51 Slot [140] | NOT FINANCIAL TRANSACTION +03:17:55 Slot [155] | NOT FINANCIAL TRANSACTION +03:18:06 Slot [146] | NOT FINANCIAL TRANSACTION +03:18:17 Slot [131] | NOT FINANCIAL TRANSACTION +03:18:32 Slot [139] | NOT FINANCIAL TRANSACTION +03:18:42 Slot [127] | NOT FINANCIAL TRANSACTION +03:18:53 Slot [109] | NOT FINANCIAL TRANSACTION +03:18:53 Slot [151] | NOT FINANCIAL TRANSACTION +03:19:04 Slot [150] | NOT FINANCIAL TRANSACTION +03:19:14 Slot [154] | NOT FINANCIAL TRANSACTION +03:19:14 Slot [118] | NOT FINANCIAL TRANSACTION +03:19:25 Slot [123] | NOT FINANCIAL TRANSACTION +03:19:35 Slot [138] | NOT FINANCIAL TRANSACTION +03:19:50 Slot [157] | NOT FINANCIAL TRANSACTION +03:19:55 Slot [135] | NOT FINANCIAL TRANSACTION +03:20:00 Slot [171] | NOT FINANCIAL TRANSACTION +03:20:10 Slot [132] | NOT FINANCIAL TRANSACTION +03:20:16 Slot [120] | NOT FINANCIAL TRANSACTION +03:20:25 Slot [116] | NOT FINANCIAL TRANSACTION +03:20:37 Slot [152] | NOT FINANCIAL TRANSACTION +03:20:53 Slot [167] | NOT FINANCIAL TRANSACTION +03:20:57 Slot [156] | NOT FINANCIAL TRANSACTION +03:21:03 Slot [129] | NOT FINANCIAL TRANSACTION +03:21:13 Slot [175] | NOT FINANCIAL TRANSACTION +03:21:28 Slot [130] | NOT FINANCIAL TRANSACTION +03:21:39 Slot [141] | NOT FINANCIAL TRANSACTION +03:21:54 Slot [168] | NOT FINANCIAL TRANSACTION +03:21:59 Slot [166] | NOT FINANCIAL TRANSACTION +03:22:05 Slot [172] | NOT FINANCIAL TRANSACTION +03:22:16 Slot [169] | NOT FINANCIAL TRANSACTION +03:22:26 Slot [160] | NOT FINANCIAL TRANSACTION +03:22:35 Slot [147] | NOT FINANCIAL TRANSACTION +03:22:36 Slot [174] | NOT FINANCIAL TRANSACTION +03:22:47 Slot [164] | NOT FINANCIAL TRANSACTION +03:22:58 Slot [133] | NOT FINANCIAL TRANSACTION +03:23:01 Slot [153] | NOT FINANCIAL TRANSACTION +03:23:09 Slot [178] | NOT FINANCIAL TRANSACTION +03:23:20 Slot [183] | NOT FINANCIAL TRANSACTION +03:23:31 Slot [125] | NOT FINANCIAL TRANSACTION +03:23:46 Slot [191] | NOT FINANCIAL TRANSACTION +03:23:46 +Slot[195] 0200 301000 6213544001883302 ------------- 00 868479 000000000000 507701488961035150016213544001883302 507701488961 765561 668899 S +03:23:56 Slot [170] | NOT FINANCIAL TRANSACTION +03:24:03 Slot [143] | NOT FINANCIAL TRANSACTION +03:24:06 Slot [161] | NOT FINANCIAL TRANSACTION +03:24:17 Slot [181] | NOT FINANCIAL TRANSACTION +03:24:28 Slot [189] | NOT FINANCIAL TRANSACTION +03:24:38 Slot [158] | NOT FINANCIAL TRANSACTION +03:24:54 Slot [204] | NOT FINANCIAL TRANSACTION +03:25:04 Slot [202] | NOT FINANCIAL TRANSACTION +03:25:05 Slot [197] | NOT FINANCIAL TRANSACTION +03:25:15 Slot [182] | NOT FINANCIAL TRANSACTION +03:25:16 Slot [193] | NOT FINANCIAL TRANSACTION +03:25:19 +Slot[200] 0200 010000 6213544001883302 ------------- 00 868481 000020000000 507701488963035150016213544001883302 507701488963 052247 668899 S +03:25:25 Slot [177] | NOT FINANCIAL TRANSACTION +03:25:42 Slot [198] | NOT FINANCIAL TRANSACTION +03:25:57 Slot [210] | NOT FINANCIAL TRANSACTION +03:26:07 Slot [213] | NOT FINANCIAL TRANSACTION +03:26:07 Slot [106] | NOT FINANCIAL TRANSACTION +03:26:18 Slot [163] | NOT FINANCIAL TRANSACTION +03:26:28 Slot [165] | NOT FINANCIAL TRANSACTION +03:26:38 Slot [187] | NOT FINANCIAL TRANSACTION +03:26:49 Slot [206] | NOT FINANCIAL TRANSACTION +03:27:04 Slot [211] | NOT FINANCIAL TRANSACTION +03:27:09 Slot [162] | NOT FINANCIAL TRANSACTION +03:27:19 Slot [196] | NOT FINANCIAL TRANSACTION +03:27:29 Slot [145] | NOT FINANCIAL TRANSACTION +03:27:35 Slot [221] | NOT FINANCIAL TRANSACTION +03:27:40 Slot [205] | NOT FINANCIAL TRANSACTION +03:27:56 Slot [180] | NOT FINANCIAL TRANSACTION +03:28:07 Slot [217] | NOT FINANCIAL TRANSACTION +03:28:11 Slot [214] | NOT FINANCIAL TRANSACTION +03:28:21 Slot [194] | NOT FINANCIAL TRANSACTION +03:28:31 Slot [222] | NOT FINANCIAL TRANSACTION +03:28:47 Slot [226] | NOT FINANCIAL TRANSACTION +03:28:57 Slot [176] | NOT FINANCIAL TRANSACTION +03:29:08 Slot [190] | NOT FINANCIAL TRANSACTION +03:29:13 Slot [184] | NOT FINANCIAL TRANSACTION +03:29:19 Slot [137] | NOT FINANCIAL TRANSACTION +03:29:32 Slot [225] | NOT FINANCIAL TRANSACTION +03:29:43 Slot [218] | NOT FINANCIAL TRANSACTION +03:29:58 Slot [224] | NOT FINANCIAL TRANSACTION +03:30:00 Slot [173] | NOT FINANCIAL TRANSACTION +03:30:09 Slot [223] | NOT FINANCIAL TRANSACTION +03:30:15 Slot [207] | NOT FINANCIAL TRANSACTION +03:30:16 Slot [208] | NOT FINANCIAL TRANSACTION +03:30:19 Slot [215] | NOT FINANCIAL TRANSACTION +03:30:31 Slot [192] | NOT FINANCIAL TRANSACTION +03:30:46 Slot [231] | NOT FINANCIAL TRANSACTION +03:30:57 Slot [188] | NOT FINANCIAL TRANSACTION +03:31:07 Slot [199] | NOT FINANCIAL TRANSACTION +03:31:17 Slot [220] | NOT FINANCIAL TRANSACTION +03:31:17 Slot [185] | NOT FINANCIAL TRANSACTION +03:31:27 Slot [179] | NOT FINANCIAL TRANSACTION +03:31:38 Slot [229] | NOT FINANCIAL TRANSACTION +03:31:53 Slot [186] | NOT FINANCIAL TRANSACTION +03:32:08 Slot [227] | NOT FINANCIAL TRANSACTION +03:32:19 Slot [212] | NOT FINANCIAL TRANSACTION +03:32:23 Slot [219] | NOT FINANCIAL TRANSACTION +03:32:33 Slot [230] | NOT FINANCIAL TRANSACTION +03:32:35 Slot [236] | NOT FINANCIAL TRANSACTION +03:32:48 Slot [239] | NOT FINANCIAL TRANSACTION +03:32:59 Slot [216] | NOT FINANCIAL TRANSACTION +03:33:10 Slot [232] | NOT FINANCIAL TRANSACTION +03:33:21 Slot [209] | NOT FINANCIAL TRANSACTION +03:33:25 Slot [235] | NOT FINANCIAL TRANSACTION +03:33:36 Slot [250] | NOT FINANCIAL TRANSACTION +03:33:46 Slot [234] | NOT FINANCIAL TRANSACTION +03:33:56 Slot [238] | NOT FINANCIAL TRANSACTION +03:33:59 Slot [242] | NOT FINANCIAL TRANSACTION +03:34:06 Slot [252] | NOT FINANCIAL TRANSACTION +03:34:16 Slot [201] | NOT FINANCIAL TRANSACTION +03:34:23 Slot [245] | NOT FINANCIAL TRANSACTION +03:34:27 Slot [228] | NOT FINANCIAL TRANSACTION +03:34:43 Slot [248] | NOT FINANCIAL TRANSACTION +03:34:54 Slot [240] | NOT FINANCIAL TRANSACTION +03:35:05 Slot [203] | NOT FINANCIAL TRANSACTION +03:35:17 Slot [244] | NOT FINANCIAL TRANSACTION +03:35:20 Slot [258] | NOT FINANCIAL TRANSACTION +03:35:25 Slot [243] | NOT FINANCIAL TRANSACTION +03:35:30 Slot [253] | NOT FINANCIAL TRANSACTION +03:35:40 Slot [247] | NOT FINANCIAL TRANSACTION +03:35:56 Slot [246] | NOT FINANCIAL TRANSACTION +03:36:06 Slot [256] | NOT FINANCIAL TRANSACTION +03:36:17 Slot [241] | NOT FINANCIAL TRANSACTION +03:36:27 Slot [260] | NOT FINANCIAL TRANSACTION +03:36:28 Slot [249] | NOT FINANCIAL TRANSACTION +03:36:39 Slot [265] | NOT FINANCIAL TRANSACTION +03:36:50 Slot [273] | NOT FINANCIAL TRANSACTION +03:37:00 Slot [251] | NOT FINANCIAL TRANSACTION +03:37:15 Slot [269] | NOT FINANCIAL TRANSACTION +03:37:26 Slot [254] | NOT FINANCIAL TRANSACTION +03:37:29 Slot [268] | NOT FINANCIAL TRANSACTION +03:37:35 Slot [276] | NOT FINANCIAL TRANSACTION +03:37:42 Slot [264] | NOT FINANCIAL TRANSACTION +03:37:53 Slot [266] | NOT FINANCIAL TRANSACTION +03:38:03 Slot [279] | NOT FINANCIAL TRANSACTION +03:38:14 Slot [233] | NOT FINANCIAL TRANSACTION +03:38:24 Slot [261] | NOT FINANCIAL TRANSACTION +03:38:31 Slot [262] | NOT FINANCIAL TRANSACTION +03:38:40 Slot [257] | NOT FINANCIAL TRANSACTION +03:38:52 Slot [284] | NOT FINANCIAL TRANSACTION +03:39:06 Slot [274] | NOT FINANCIAL TRANSACTION +03:39:17 Slot [263] | NOT FINANCIAL TRANSACTION +03:39:27 Slot [267] | NOT FINANCIAL TRANSACTION +03:39:33 Slot [270] | NOT FINANCIAL TRANSACTION +03:39:37 Slot [299] | NOT FINANCIAL TRANSACTION +03:39:49 Slot [280] | NOT FINANCIAL TRANSACTION +03:40:03 Slot [278] | NOT FINANCIAL TRANSACTION +03:40:13 Slot [289] | NOT FINANCIAL TRANSACTION +03:40:17 Slot [277] | NOT FINANCIAL TRANSACTION +03:40:24 Slot [285] | NOT FINANCIAL TRANSACTION +03:40:35 Slot [287] | NOT FINANCIAL TRANSACTION +03:40:35 Slot [293] | NOT FINANCIAL TRANSACTION +03:40:45 Slot [304] | NOT FINANCIAL TRANSACTION +03:40:46 Slot [281] | NOT FINANCIAL TRANSACTION +03:41:01 Slot [296] | NOT FINANCIAL TRANSACTION +03:41:11 Slot [275] | NOT FINANCIAL TRANSACTION +03:41:22 Slot [309] | NOT FINANCIAL TRANSACTION +03:41:37 Slot [291] | NOT FINANCIAL TRANSACTION +03:41:37 Slot [294] | NOT FINANCIAL TRANSACTION +03:41:48 Slot [286] | NOT FINANCIAL TRANSACTION +03:41:59 Slot [259] | NOT FINANCIAL TRANSACTION +03:42:10 Slot [303] | NOT FINANCIAL TRANSACTION +03:42:20 Slot [282] | NOT FINANCIAL TRANSACTION +03:42:35 Slot [271] | NOT FINANCIAL TRANSACTION +03:42:35 Slot [298] | NOT FINANCIAL TRANSACTION +03:42:39 Slot [272] | NOT FINANCIAL TRANSACTION +03:42:46 Slot [317] | NOT FINANCIAL TRANSACTION +03:42:56 Slot [288] | NOT FINANCIAL TRANSACTION +03:43:12 Slot [307] | NOT FINANCIAL TRANSACTION +03:43:23 Slot [237] | NOT FINANCIAL TRANSACTION +03:43:33 Slot [329] | NOT FINANCIAL TRANSACTION +03:43:41 Slot [314] | NOT FINANCIAL TRANSACTION +03:43:49 Slot [315] | NOT FINANCIAL TRANSACTION +03:44:01 Slot [313] | NOT FINANCIAL TRANSACTION +03:44:16 Slot [323] | NOT FINANCIAL TRANSACTION +03:44:27 Slot [336] | NOT FINANCIAL TRANSACTION +03:44:37 Slot [331] | NOT FINANCIAL TRANSACTION +03:44:43 Slot [324] | NOT FINANCIAL TRANSACTION +03:44:48 Slot [283] | NOT FINANCIAL TRANSACTION +03:44:59 Slot [308] | NOT FINANCIAL TRANSACTION +03:45:09 Slot [319] | NOT FINANCIAL TRANSACTION +03:45:17 Slot [321] | NOT FINANCIAL TRANSACTION +03:45:21 Slot [295] | NOT FINANCIAL TRANSACTION +03:45:37 Slot [255] | NOT FINANCIAL TRANSACTION +03:45:45 Slot [318] | NOT FINANCIAL TRANSACTION +03:45:47 Slot [300] | NOT FINANCIAL TRANSACTION +03:45:57 Slot [326] | NOT FINANCIAL TRANSACTION +03:46:07 Slot [312] | NOT FINANCIAL TRANSACTION +03:46:18 Slot [340] | NOT FINANCIAL TRANSACTION +03:46:29 Slot [302] | NOT FINANCIAL TRANSACTION +03:46:39 Slot [306] | NOT FINANCIAL TRANSACTION +03:46:47 Slot [355] | NOT FINANCIAL TRANSACTION +03:46:51 Slot [316] | NOT FINANCIAL TRANSACTION +03:47:01 Slot [325] | NOT FINANCIAL TRANSACTION +03:47:11 Slot [311] | NOT FINANCIAL TRANSACTION +03:47:21 Slot [334] | NOT FINANCIAL TRANSACTION +03:47:32 Slot [339] | NOT FINANCIAL TRANSACTION +03:47:35 Slot [310] | NOT FINANCIAL TRANSACTION +03:47:48 Slot [301] | NOT FINANCIAL TRANSACTION +03:47:49 Slot [297] | NOT FINANCIAL TRANSACTION +03:47:58 Slot [349] | NOT FINANCIAL TRANSACTION +03:48:09 Slot [350] | NOT FINANCIAL TRANSACTION +03:48:21 Slot [341] | NOT FINANCIAL TRANSACTION +03:48:35 Slot [328] | NOT FINANCIAL TRANSACTION +03:48:48 Slot [332] | NOT FINANCIAL TRANSACTION +03:48:51 Slot [338] | NOT FINANCIAL TRANSACTION +03:48:59 Slot [305] | NOT FINANCIAL TRANSACTION +03:49:09 Slot [352] | NOT FINANCIAL TRANSACTION +03:49:21 Slot [364] | NOT FINANCIAL TRANSACTION +03:49:31 Slot [330] | NOT FINANCIAL TRANSACTION +03:49:42 Slot [343] | NOT FINANCIAL TRANSACTION +03:49:53 Slot [345] | NOT FINANCIAL TRANSACTION +03:49:53 Slot [337] | NOT FINANCIAL TRANSACTION +03:50:08 Slot [354] | NOT FINANCIAL TRANSACTION +03:50:17 Slot [320] | NOT FINANCIAL TRANSACTION +03:50:18 Slot [342] | NOT FINANCIAL TRANSACTION +03:50:28 Slot [335] | NOT FINANCIAL TRANSACTION +03:50:38 Slot [369] | NOT FINANCIAL TRANSACTION +03:50:42 Slot [366] | NOT FINANCIAL TRANSACTION +03:50:54 Slot [290] | NOT FINANCIAL TRANSACTION +03:50:55 Slot [347] | NOT FINANCIAL TRANSACTION +03:51:05 Slot [374] | NOT FINANCIAL TRANSACTION +03:51:20 Slot [327] | NOT FINANCIAL TRANSACTION +03:51:32 Slot [292] | NOT FINANCIAL TRANSACTION +03:51:36 Slot [365] | NOT FINANCIAL TRANSACTION +03:51:46 Slot [333] | NOT FINANCIAL TRANSACTION +03:51:57 Slot [384] | NOT FINANCIAL TRANSACTION +03:51:57 Slot [358] | NOT FINANCIAL TRANSACTION +03:52:08 Slot [360] | NOT FINANCIAL TRANSACTION +03:52:18 Slot [373] | NOT FINANCIAL TRANSACTION +03:52:29 Slot [353] | NOT FINANCIAL TRANSACTION +03:52:35 Slot [362] | NOT FINANCIAL TRANSACTION +03:52:39 Slot [372] | NOT FINANCIAL TRANSACTION +03:52:49 Slot [380] | NOT FINANCIAL TRANSACTION +03:52:59 Slot [379] | NOT FINANCIAL TRANSACTION +03:52:59 Slot [382] | NOT FINANCIAL TRANSACTION +03:53:10 Slot [348] | NOT FINANCIAL TRANSACTION +03:53:20 Slot [361] | NOT FINANCIAL TRANSACTION +03:53:30 Slot [322] | NOT FINANCIAL TRANSACTION +03:53:42 Slot [346] | NOT FINANCIAL TRANSACTION +03:53:57 Slot [377] | NOT FINANCIAL TRANSACTION +03:54:01 Slot [370] | NOT FINANCIAL TRANSACTION +03:54:12 Slot [378] | NOT FINANCIAL TRANSACTION +03:54:23 Slot [363] | NOT FINANCIAL TRANSACTION +03:54:34 Slot [385] | NOT FINANCIAL TRANSACTION +03:54:45 Slot [371] | NOT FINANCIAL TRANSACTION +03:54:55 Slot [359] | NOT FINANCIAL TRANSACTION +03:55:03 Slot [351] | NOT FINANCIAL TRANSACTION +03:55:11 Slot [397] | NOT FINANCIAL TRANSACTION +03:55:17 Slot [367] | NOT FINANCIAL TRANSACTION +03:55:26 Slot [344] | NOT FINANCIAL TRANSACTION +03:55:37 Slot [386] | NOT FINANCIAL TRANSACTION +03:55:47 Slot [388] | NOT FINANCIAL TRANSACTION +03:55:57 Slot [410] | NOT FINANCIAL TRANSACTION +03:56:05 Slot [357] | NOT FINANCIAL TRANSACTION +03:56:07 Slot [414] | NOT FINANCIAL TRANSACTION +03:56:19 Slot [401] | NOT FINANCIAL TRANSACTION +03:56:33 Slot [408] | NOT FINANCIAL TRANSACTION +03:56:44 Slot [413] | NOT FINANCIAL TRANSACTION +03:56:59 Slot [393] | NOT FINANCIAL TRANSACTION +03:57:07 Slot [403] | NOT FINANCIAL TRANSACTION +03:57:10 Slot [398] | NOT FINANCIAL TRANSACTION +03:57:21 Slot [420] | NOT FINANCIAL TRANSACTION +03:57:35 Slot [391] | NOT FINANCIAL TRANSACTION +03:57:36 Slot [418] | NOT FINANCIAL TRANSACTION +03:57:46 Slot [392] | NOT FINANCIAL TRANSACTION +03:57:57 Slot [356] | NOT FINANCIAL TRANSACTION +03:58:07 Slot [416] | NOT FINANCIAL TRANSACTION +03:58:09 Slot [425] | NOT FINANCIAL TRANSACTION +03:58:17 Slot [383] | NOT FINANCIAL TRANSACTION +03:58:32 Slot [415] | NOT FINANCIAL TRANSACTION +03:58:42 Slot [411] | NOT FINANCIAL TRANSACTION +03:58:52 Slot [387] | NOT FINANCIAL TRANSACTION +03:59:02 Slot [396] | NOT FINANCIAL TRANSACTION +03:59:11 Slot [431] | NOT FINANCIAL TRANSACTION +03:59:13 Slot [395] | NOT FINANCIAL TRANSACTION +03:59:23 Slot [423] | NOT FINANCIAL TRANSACTION +03:59:33 Slot [402] | NOT FINANCIAL TRANSACTION +03:59:43 Slot [400] | NOT FINANCIAL TRANSACTION +03:59:54 Slot [429] | NOT FINANCIAL TRANSACTION +04:00:05 Slot [381] | NOT FINANCIAL TRANSACTION +04:00:13 Slot [375] | NOT FINANCIAL TRANSACTION +04:00:17 Slot [417] | NOT FINANCIAL TRANSACTION +04:00:20 Slot [438] | NOT FINANCIAL TRANSACTION +04:00:30 Slot [428] | NOT FINANCIAL TRANSACTION +04:00:40 Slot [406] | NOT FINANCIAL TRANSACTION +04:00:51 Slot [399] | NOT FINANCIAL TRANSACTION +04:01:02 Slot [437] | NOT FINANCIAL TRANSACTION +04:01:15 Slot [419] | NOT FINANCIAL TRANSACTION +04:01:17 Slot [404] | NOT FINANCIAL TRANSACTION +04:01:28 Slot [427] | NOT FINANCIAL TRANSACTION +04:01:39 Slot [422] | NOT FINANCIAL TRANSACTION +04:01:49 Slot [445] | NOT FINANCIAL TRANSACTION +04:01:59 Slot [394] | NOT FINANCIAL TRANSACTION +04:02:10 Slot [440] | NOT FINANCIAL TRANSACTION +04:02:17 Slot [452] | NOT FINANCIAL TRANSACTION +04:02:18 Slot [448] | NOT FINANCIAL TRANSACTION +04:02:25 Slot [389] | NOT FINANCIAL TRANSACTION +04:02:35 Slot [368] | NOT FINANCIAL TRANSACTION +04:02:41 Slot [443] | NOT FINANCIAL TRANSACTION +04:02:57 Slot [442] | NOT FINANCIAL TRANSACTION +04:03:07 Slot [465] | NOT FINANCIAL TRANSACTION +04:03:18 Slot [435] | NOT FINANCIAL TRANSACTION +04:03:19 Slot [439] | NOT FINANCIAL TRANSACTION +04:03:33 Slot [390] | NOT FINANCIAL TRANSACTION +04:03:44 Slot [376] | NOT FINANCIAL TRANSACTION +04:03:59 Slot [433] | NOT FINANCIAL TRANSACTION +04:04:09 Slot [424] | NOT FINANCIAL TRANSACTION +04:04:20 Slot [447] | NOT FINANCIAL TRANSACTION +04:04:21 Slot [430] | NOT FINANCIAL TRANSACTION +04:04:31 Slot [460] | NOT FINANCIAL TRANSACTION +04:04:43 Slot [421] | NOT FINANCIAL TRANSACTION +04:04:58 Slot [478] | NOT FINANCIAL TRANSACTION +04:05:08 Slot [432] | NOT FINANCIAL TRANSACTION +04:05:17 Slot [450] | NOT FINANCIAL TRANSACTION +04:05:23 Slot [467] | NOT FINANCIAL TRANSACTION +04:05:23 Slot [463] | NOT FINANCIAL TRANSACTION +04:05:34 Slot [441] | NOT FINANCIAL TRANSACTION +04:05:49 Slot [456] | NOT FINANCIAL TRANSACTION +04:06:00 Slot [405] | NOT FINANCIAL TRANSACTION +04:06:11 Slot [462] | NOT FINANCIAL TRANSACTION +04:06:22 Slot [434] | NOT FINANCIAL TRANSACTION +04:06:25 Slot [455] | NOT FINANCIAL TRANSACTION +04:06:33 Slot [426] | NOT FINANCIAL TRANSACTION +04:06:44 Slot [485] | NOT FINANCIAL TRANSACTION +04:06:58 Slot [412] | NOT FINANCIAL TRANSACTION +04:07:09 Slot [407] | NOT FINANCIAL TRANSACTION +04:07:20 Slot [449] | NOT FINANCIAL TRANSACTION +04:07:24 Slot [481] | NOT FINANCIAL TRANSACTION +04:07:27 Slot [461] | NOT FINANCIAL TRANSACTION +04:07:30 Slot [475] | NOT FINANCIAL TRANSACTION +04:07:35 Slot [469] | NOT FINANCIAL TRANSACTION +04:07:41 Slot [468] | NOT FINANCIAL TRANSACTION +04:07:52 Slot [409] | NOT FINANCIAL TRANSACTION +04:08:03 Slot [453] | NOT FINANCIAL TRANSACTION +04:08:14 Slot [457] | NOT FINANCIAL TRANSACTION +04:08:29 Slot [474] | NOT FINANCIAL TRANSACTION +04:08:29 Slot [487] | NOT FINANCIAL TRANSACTION +04:08:39 Slot [482] | NOT FINANCIAL TRANSACTION +04:08:49 Slot [472] | NOT FINANCIAL TRANSACTION +04:08:59 Slot [444] | NOT FINANCIAL TRANSACTION +04:09:09 Slot [483] | NOT FINANCIAL TRANSACTION +04:09:19 Slot [479] | NOT FINANCIAL TRANSACTION +04:09:30 Slot [489] | NOT FINANCIAL TRANSACTION +04:09:31 Slot [471] | NOT FINANCIAL TRANSACTION +04:09:40 Slot [451] | NOT FINANCIAL TRANSACTION +04:09:50 Slot [490] | NOT FINANCIAL TRANSACTION +04:10:00 Slot [446] | NOT FINANCIAL TRANSACTION +04:10:11 Slot [459] | NOT FINANCIAL TRANSACTION +04:10:17 Slot [498] | NOT FINANCIAL TRANSACTION +04:10:21 Slot [476] | NOT FINANCIAL TRANSACTION +04:10:31 Slot [436] | NOT FINANCIAL TRANSACTION +04:10:33 Slot [486] | NOT FINANCIAL TRANSACTION +04:10:41 Slot [491] | NOT FINANCIAL TRANSACTION +04:10:52 Slot [497] | NOT FINANCIAL TRANSACTION +04:11:03 Slot [473] | NOT FINANCIAL TRANSACTION +04:11:18 Slot [499] | NOT FINANCIAL TRANSACTION +04:11:28 Slot [7] | NOT FINANCIAL TRANSACTION +04:11:35 Slot [2] | NOT FINANCIAL TRANSACTION +04:11:38 Slot [470] | NOT FINANCIAL TRANSACTION +04:11:48 Slot [480] | NOT FINANCIAL TRANSACTION +04:11:59 Slot [477] | NOT FINANCIAL TRANSACTION +04:12:10 Slot [495] | NOT FINANCIAL TRANSACTION +04:12:20 Slot [464] | NOT FINANCIAL TRANSACTION +04:12:35 Slot [492] | NOT FINANCIAL TRANSACTION +04:12:36 Slot [14] | NOT FINANCIAL TRANSACTION +04:12:37 Slot [18] | NOT FINANCIAL TRANSACTION +04:12:50 Slot [24] | NOT FINANCIAL TRANSACTION +04:13:04 Slot [454] | NOT FINANCIAL TRANSACTION +04:13:06 Slot [484] | NOT FINANCIAL TRANSACTION +04:13:21 Slot [466] | NOT FINANCIAL TRANSACTION +04:13:31 Slot [22] | NOT FINANCIAL TRANSACTION +04:13:39 Slot [3] | NOT FINANCIAL TRANSACTION +04:13:41 Slot [493] | NOT FINANCIAL TRANSACTION +04:13:52 Slot [12] | NOT FINANCIAL TRANSACTION +04:14:02 Slot [488] | NOT FINANCIAL TRANSACTION +04:14:18 Slot [458] | NOT FINANCIAL TRANSACTION +04:14:28 Slot [0] | NOT FINANCIAL TRANSACTION +04:14:39 Slot [31] | NOT FINANCIAL TRANSACTION +04:14:41 Slot [4] | NOT FINANCIAL TRANSACTION +04:14:49 Slot [16] | NOT FINANCIAL TRANSACTION +04:14:59 Slot [1] | NOT FINANCIAL TRANSACTION +04:15:09 Slot [5] | NOT FINANCIAL TRANSACTION +04:15:16 Slot [8] | NOT FINANCIAL TRANSACTION +04:15:20 Slot [21] | NOT FINANCIAL TRANSACTION +04:15:31 Slot [496] | NOT FINANCIAL TRANSACTION +04:15:42 Slot [15] | NOT FINANCIAL TRANSACTION +04:15:43 Slot [19] | NOT FINANCIAL TRANSACTION +04:15:58 Slot [23] | NOT FINANCIAL TRANSACTION +04:16:09 Slot [26] | NOT FINANCIAL TRANSACTION +04:16:24 Slot [10] | NOT FINANCIAL TRANSACTION +04:16:35 Slot [9] | NOT FINANCIAL TRANSACTION +04:16:45 Slot [6] | NOT FINANCIAL TRANSACTION +04:16:49 Slot [27] | NOT FINANCIAL TRANSACTION +04:17:00 Slot [25] | NOT FINANCIAL TRANSACTION +04:17:10 Slot [30] | NOT FINANCIAL TRANSACTION +04:17:20 Slot [11] | NOT FINANCIAL TRANSACTION +04:17:31 Slot [46] | NOT FINANCIAL TRANSACTION +04:17:36 Slot [29] | NOT FINANCIAL TRANSACTION +04:17:47 Slot [494] | NOT FINANCIAL TRANSACTION +04:17:47 Slot [20] | NOT FINANCIAL TRANSACTION +04:17:58 Slot [34] | NOT FINANCIAL TRANSACTION +04:18:08 Slot [28] | NOT FINANCIAL TRANSACTION +04:18:24 Slot [38] | NOT FINANCIAL TRANSACTION +04:18:35 Slot [42] | NOT FINANCIAL TRANSACTION +04:18:49 Slot [56] | NOT FINANCIAL TRANSACTION +04:18:50 Slot [13] | NOT FINANCIAL TRANSACTION +04:19:02 Slot [39] | NOT FINANCIAL TRANSACTION +04:19:17 Slot [36] | NOT FINANCIAL TRANSACTION +04:19:29 Slot [52] | NOT FINANCIAL TRANSACTION +04:19:39 Slot [32] | NOT FINANCIAL TRANSACTION +04:19:49 Slot [41] | NOT FINANCIAL TRANSACTION +04:19:51 Slot [44] | NOT FINANCIAL TRANSACTION +04:19:59 Slot [47] | NOT FINANCIAL TRANSACTION +04:20:10 Slot [40] | NOT FINANCIAL TRANSACTION +04:20:16 Slot [54] | NOT FINANCIAL TRANSACTION +04:20:26 Slot [57] | NOT FINANCIAL TRANSACTION +04:20:36 Slot [61] | NOT FINANCIAL TRANSACTION +04:20:47 Slot [37] | NOT FINANCIAL TRANSACTION +04:20:53 Slot [59] | NOT FINANCIAL TRANSACTION +04:20:58 Slot [51] | NOT FINANCIAL TRANSACTION +04:21:08 Slot [58] | NOT FINANCIAL TRANSACTION +04:21:18 Slot [72] | NOT FINANCIAL TRANSACTION +04:21:29 Slot [55] | NOT FINANCIAL TRANSACTION +04:21:39 Slot [17] | NOT FINANCIAL TRANSACTION +04:21:49 Slot [60] | NOT FINANCIAL TRANSACTION +04:21:55 Slot [48] | NOT FINANCIAL TRANSACTION +04:21:59 Slot [63] | NOT FINANCIAL TRANSACTION +04:22:11 Slot [35] | NOT FINANCIAL TRANSACTION +04:22:26 Slot [71] | NOT FINANCIAL TRANSACTION +04:22:36 Slot [53] | NOT FINANCIAL TRANSACTION +04:22:36 Slot [79] | NOT FINANCIAL TRANSACTION +04:22:47 Slot [67] | NOT FINANCIAL TRANSACTION +04:22:57 Slot [49] | NOT FINANCIAL TRANSACTION +04:23:02 Slot [80] | NOT FINANCIAL TRANSACTION +04:23:12 Slot [85] | NOT FINANCIAL TRANSACTION +04:23:23 Slot [75] | NOT FINANCIAL TRANSACTION +04:23:38 Slot [45] | NOT FINANCIAL TRANSACTION +04:23:50 Slot [83] | NOT FINANCIAL TRANSACTION +04:23:54 Slot [78] | NOT FINANCIAL TRANSACTION +04:23:59 Slot [43] | NOT FINANCIAL TRANSACTION +04:24:06 Slot [68] | NOT FINANCIAL TRANSACTION +04:24:10 Slot [73] | NOT FINANCIAL TRANSACTION +04:24:20 Slot [89] | NOT FINANCIAL TRANSACTION +04:24:30 Slot [91] | NOT FINANCIAL TRANSACTION +04:24:42 Slot [76] | NOT FINANCIAL TRANSACTION +04:24:52 Slot [77] | NOT FINANCIAL TRANSACTION +04:25:01 Slot [88] | NOT FINANCIAL TRANSACTION +04:25:02 Slot [94] | NOT FINANCIAL TRANSACTION +04:25:12 Slot [86] | NOT FINANCIAL TRANSACTION +04:25:16 Slot [65] | NOT FINANCIAL TRANSACTION +04:25:23 Slot [93] | NOT FINANCIAL TRANSACTION +04:25:38 Slot [66] | NOT FINANCIAL TRANSACTION +04:25:48 Slot [33] | NOT FINANCIAL TRANSACTION +04:25:58 Slot [103] | NOT FINANCIAL TRANSACTION +04:26:03 Slot [101] | NOT FINANCIAL TRANSACTION +04:26:09 Slot [95] | NOT FINANCIAL TRANSACTION +04:26:19 Slot [105] | NOT FINANCIAL TRANSACTION +04:26:35 Slot [74] | NOT FINANCIAL TRANSACTION +04:26:48 Slot [50] | NOT FINANCIAL TRANSACTION +04:27:02 Slot [70] | NOT FINANCIAL TRANSACTION +04:27:05 Slot [92] | NOT FINANCIAL TRANSACTION +04:27:12 Slot [102] | NOT FINANCIAL TRANSACTION +04:27:23 Slot [81] | NOT FINANCIAL TRANSACTION +04:27:33 Slot [107] | NOT FINANCIAL TRANSACTION +04:27:36 Slot [100] | NOT FINANCIAL TRANSACTION +04:27:44 Slot [114] | NOT FINANCIAL TRANSACTION +04:27:59 Slot [108] | NOT FINANCIAL TRANSACTION +04:28:07 Slot [104] | NOT FINANCIAL TRANSACTION +04:28:10 Slot [82] | NOT FINANCIAL TRANSACTION +04:28:21 Slot [122] | NOT FINANCIAL TRANSACTION +04:28:31 Slot [87] | NOT FINANCIAL TRANSACTION +04:28:41 Slot [69] | NOT FINANCIAL TRANSACTION +04:28:51 Slot [119] | NOT FINANCIAL TRANSACTION +04:29:01 Slot [117] | NOT FINANCIAL TRANSACTION +04:29:09 Slot [115] | NOT FINANCIAL TRANSACTION +04:29:12 Slot [110] | NOT FINANCIAL TRANSACTION +04:29:27 Slot [126] | NOT FINANCIAL TRANSACTION +04:29:37 Slot [96] | NOT FINANCIAL TRANSACTION +04:29:48 Slot [62] | NOT FINANCIAL TRANSACTION +04:30:04 Slot [64] | NOT FINANCIAL TRANSACTION +04:30:11 Slot [136] | NOT FINANCIAL TRANSACTION +04:30:17 Slot [124] | NOT FINANCIAL TRANSACTION +04:30:19 Slot [97] | NOT FINANCIAL TRANSACTION +04:30:29 Slot [84] | NOT FINANCIAL TRANSACTION +04:30:39 Slot [98] | NOT FINANCIAL TRANSACTION +04:30:49 Slot [113] | NOT FINANCIAL TRANSACTION +04:31:00 Slot [90] | NOT FINANCIAL TRANSACTION +04:31:10 Slot [121] | NOT FINANCIAL TRANSACTION +04:31:13 Slot [112] | NOT FINANCIAL TRANSACTION +04:31:21 Slot [99] | NOT FINANCIAL TRANSACTION +04:31:31 Slot [144] | NOT FINANCIAL TRANSACTION +04:31:43 Slot [159] | NOT FINANCIAL TRANSACTION +04:31:58 Slot [134] | NOT FINANCIAL TRANSACTION +04:32:08 Slot [148] | NOT FINANCIAL TRANSACTION +04:32:15 Slot [142] | NOT FINANCIAL TRANSACTION +04:32:18 Slot [111] | NOT FINANCIAL TRANSACTION +04:32:33 Slot [149] | NOT FINANCIAL TRANSACTION +04:32:35 Slot [128] | NOT FINANCIAL TRANSACTION +04:32:45 Slot [140] | NOT FINANCIAL TRANSACTION +04:32:59 Slot [155] | NOT FINANCIAL TRANSACTION +04:33:10 Slot [146] | NOT FINANCIAL TRANSACTION +04:33:17 Slot [131] | NOT FINANCIAL TRANSACTION +04:33:20 Slot [139] | NOT FINANCIAL TRANSACTION +04:33:30 Slot [127] | NOT FINANCIAL TRANSACTION +04:33:40 Slot [109] | NOT FINANCIAL TRANSACTION +04:33:51 Slot [151] | NOT FINANCIAL TRANSACTION +04:34:01 Slot [150] | NOT FINANCIAL TRANSACTION +04:34:12 Slot [154] | NOT FINANCIAL TRANSACTION +04:34:19 Slot [118] | NOT FINANCIAL TRANSACTION +04:34:24 Slot [123] | NOT FINANCIAL TRANSACTION +04:34:34 Slot [138] | NOT FINANCIAL TRANSACTION +04:34:36 Slot [157] | NOT FINANCIAL TRANSACTION +04:34:44 Slot [135] | NOT FINANCIAL TRANSACTION +04:35:00 Slot [171] | NOT FINANCIAL TRANSACTION +04:35:10 Slot [132] | NOT FINANCIAL TRANSACTION +04:35:17 Slot [120] | NOT FINANCIAL TRANSACTION +04:35:21 Slot [152] | NOT FINANCIAL TRANSACTION +04:35:21 Slot [116] | NOT FINANCIAL TRANSACTION +04:35:31 Slot [167] | NOT FINANCIAL TRANSACTION +04:35:42 Slot [156] | NOT FINANCIAL TRANSACTION +04:35:52 Slot [129] | NOT FINANCIAL TRANSACTION +04:36:02 Slot [175] | NOT FINANCIAL TRANSACTION +04:36:13 Slot [130] | NOT FINANCIAL TRANSACTION +04:36:23 Slot [141] | NOT FINANCIAL TRANSACTION +04:36:24 Slot [168] | NOT FINANCIAL TRANSACTION +04:36:39 Slot [166] | NOT FINANCIAL TRANSACTION +04:36:49 Slot [169] | NOT FINANCIAL TRANSACTION +04:36:53 +Slot[172] 0200 300000 6688990103289904 ------------- 00 287289 000000000000 507703498892060022006688990103289904 507703498892 144335 621354 S +04:36:59 Slot [160] | NOT FINANCIAL TRANSACTION +04:37:09 Slot [147] | NOT FINANCIAL TRANSACTION +04:37:20 Slot [174] | NOT FINANCIAL TRANSACTION +04:37:25 Slot [164] | NOT FINANCIAL TRANSACTION +04:37:35 Slot [133] | NOT FINANCIAL TRANSACTION +04:37:35 Slot [153] | NOT FINANCIAL TRANSACTION +04:37:50 Slot [178] | NOT FINANCIAL TRANSACTION +04:38:06 Slot [183] | NOT FINANCIAL TRANSACTION +04:38:17 Slot [125] | NOT FINANCIAL TRANSACTION +04:38:27 Slot [191] | NOT FINANCIAL TRANSACTION +04:38:32 Slot [195] | NOT FINANCIAL TRANSACTION +04:38:43 Slot [170] | NOT FINANCIAL TRANSACTION +04:38:58 Slot [143] | NOT FINANCIAL TRANSACTION +04:39:08 Slot [161] | NOT FINANCIAL TRANSACTION +04:39:19 Slot [181] | NOT FINANCIAL TRANSACTION +04:39:29 Slot [189] | NOT FINANCIAL TRANSACTION +04:39:34 +Slot[158] 0200 010000 6688990103289904 ------------- 00 287291 000100000000 507703498894060022006688990103289904 507703498894 538819 621354 S +04:39:35 Slot [204] | NOT FINANCIAL TRANSACTION +04:39:51 Slot [202] | NOT FINANCIAL TRANSACTION +04:40:06 Slot [197] | NOT FINANCIAL TRANSACTION +04:40:16 Slot [182] | NOT FINANCIAL TRANSACTION +04:40:17 Slot [193] | NOT FINANCIAL TRANSACTION +04:40:27 Slot [200] | NOT FINANCIAL TRANSACTION +04:40:31 Slot [177] | NOT FINANCIAL TRANSACTION +04:40:38 Slot [210] | NOT FINANCIAL TRANSACTION +04:40:40 +Slot[198] 0200 010000 6688990103289904 ------------- 00 287293 000100000000 507703498896060022006688990103289904 507703498896 640580 621354 S +04:40:48 Slot [213] | NOT FINANCIAL TRANSACTION +04:40:53 Slot [106] | NOT FINANCIAL TRANSACTION +04:41:04 Slot [163] | NOT FINANCIAL TRANSACTION +04:41:15 Slot [165] | NOT FINANCIAL TRANSACTION +04:41:30 Slot [187] | NOT FINANCIAL TRANSACTION +04:41:33 Slot [206] | NOT FINANCIAL TRANSACTION +04:41:41 Slot [211] | NOT FINANCIAL TRANSACTION +04:41:47 +Slot[162] 0200 010000 6688990103289904 ------------- 00 287295 000100000000 507703498898060022006688990103289904 507703498898 963935 621354 S +04:41:51 Slot [196] | NOT FINANCIAL TRANSACTION +04:42:02 Slot [145] | NOT FINANCIAL TRANSACTION +04:42:12 Slot [221] | NOT FINANCIAL TRANSACTION +04:42:23 Slot [205] | NOT FINANCIAL TRANSACTION +04:42:35 Slot [217] | NOT FINANCIAL TRANSACTION +04:42:35 Slot [180] | NOT FINANCIAL TRANSACTION +04:42:38 Slot [214] | NOT FINANCIAL TRANSACTION +04:42:49 Slot [194] | NOT FINANCIAL TRANSACTION +04:43:00 Slot [222] | NOT FINANCIAL TRANSACTION +04:43:05 +Slot[226] 0200 300000 6688990103289904 ------------- 00 287303 000000000000 507703498899060022006688990103289904 507703498899 638222 621354 S +04:43:16 Slot [176] | NOT FINANCIAL TRANSACTION +04:43:27 Slot [190] | NOT FINANCIAL TRANSACTION +04:43:37 Slot [184] | NOT FINANCIAL TRANSACTION +04:43:42 Slot [137] | NOT FINANCIAL TRANSACTION +04:43:52 Slot [225] | NOT FINANCIAL TRANSACTION +04:44:03 Slot [224] | NOT FINANCIAL TRANSACTION +04:44:04 +Slot[218] 0200 010000 6688990103289904 ------------- 00 287310 000050000000 507703498901060022006688990103289904 507703498901 384573 621354 S +04:44:13 Slot [173] | NOT FINANCIAL TRANSACTION +04:44:23 Slot [223] | NOT FINANCIAL TRANSACTION +04:44:34 Slot [207] | NOT FINANCIAL TRANSACTION +04:44:39 Slot [208] | NOT FINANCIAL TRANSACTION +04:44:44 Slot [215] | NOT FINANCIAL TRANSACTION +04:44:55 Slot [192] | NOT FINANCIAL TRANSACTION +04:45:08 +Slot[231] 0200 300000 6688990103289904 ------------- 00 287311 000000000000 507703498902060022006688990103289904 507703498902 068013 621354 S +04:45:10 Slot [188] | NOT FINANCIAL TRANSACTION +04:45:17 Slot [199] | NOT FINANCIAL TRANSACTION +04:45:20 Slot [220] | NOT FINANCIAL TRANSACTION +04:45:22 Slot [185] | NOT FINANCIAL TRANSACTION +04:45:31 Slot [179] | NOT FINANCIAL TRANSACTION +04:45:41 Slot [186] | NOT FINANCIAL TRANSACTION +04:45:41 Slot [229] | NOT FINANCIAL TRANSACTION +04:45:51 Slot [227] | NOT FINANCIAL TRANSACTION +04:46:07 Slot [212] | NOT FINANCIAL TRANSACTION +04:46:22 Slot [219] | NOT FINANCIAL TRANSACTION +04:46:33 Slot [230] | NOT FINANCIAL TRANSACTION +04:46:43 Slot [236] | NOT FINANCIAL TRANSACTION +04:46:44 Slot [239] | NOT FINANCIAL TRANSACTION +04:46:55 Slot [216] | NOT FINANCIAL TRANSACTION +04:47:10 Slot [232] | NOT FINANCIAL TRANSACTION +04:47:20 Slot [209] | NOT FINANCIAL TRANSACTION +04:47:31 Slot [235] | NOT FINANCIAL TRANSACTION +04:47:35 Slot [250] | NOT FINANCIAL TRANSACTION +04:47:41 Slot [234] | NOT FINANCIAL TRANSACTION +04:47:45 Slot [238] | NOT FINANCIAL TRANSACTION +04:47:51 Slot [242] | NOT FINANCIAL TRANSACTION +04:48:03 Slot [252] | NOT FINANCIAL TRANSACTION +04:48:13 Slot [201] | NOT FINANCIAL TRANSACTION +04:48:23 Slot [245] | NOT FINANCIAL TRANSACTION +04:48:38 Slot [228] | NOT FINANCIAL TRANSACTION +04:48:47 Slot [248] | NOT FINANCIAL TRANSACTION +04:48:54 Slot [240] | NOT FINANCIAL TRANSACTION +04:49:05 Slot [203] | NOT FINANCIAL TRANSACTION +04:49:16 Slot [244] | NOT FINANCIAL TRANSACTION +04:49:26 Slot [258] | NOT FINANCIAL TRANSACTION +04:49:37 Slot [243] | NOT FINANCIAL TRANSACTION +04:49:49 Slot [253] | NOT FINANCIAL TRANSACTION +04:49:52 Slot [247] | NOT FINANCIAL TRANSACTION +04:50:07 Slot [246] | NOT FINANCIAL TRANSACTION +04:50:17 Slot [256] | NOT FINANCIAL TRANSACTION +04:50:17 Slot [241] | NOT FINANCIAL TRANSACTION +04:50:27 Slot [260] | NOT FINANCIAL TRANSACTION +04:50:37 Slot [249] | NOT FINANCIAL TRANSACTION +04:50:48 Slot [265] | NOT FINANCIAL TRANSACTION +04:50:51 Slot [273] | NOT FINANCIAL TRANSACTION +04:51:04 Slot [251] | NOT FINANCIAL TRANSACTION +04:51:16 Slot [269] | NOT FINANCIAL TRANSACTION +04:51:31 Slot [254] | NOT FINANCIAL TRANSACTION +04:51:42 Slot [268] | NOT FINANCIAL TRANSACTION +04:51:52 Slot [264] | NOT FINANCIAL TRANSACTION +04:51:53 Slot [276] | NOT FINANCIAL TRANSACTION +04:52:03 Slot [266] | NOT FINANCIAL TRANSACTION +04:52:13 Slot [279] | NOT FINANCIAL TRANSACTION +04:52:24 Slot [233] | NOT FINANCIAL TRANSACTION +04:52:35 Slot [261] | NOT FINANCIAL TRANSACTION +04:52:35 Slot [262] | NOT FINANCIAL TRANSACTION +04:52:45 Slot [257] | NOT FINANCIAL TRANSACTION +04:52:55 Slot [274] | NOT FINANCIAL TRANSACTION +04:52:55 Slot [284] | NOT FINANCIAL TRANSACTION +04:53:10 Slot [263] | NOT FINANCIAL TRANSACTION +04:53:21 Slot [267] | NOT FINANCIAL TRANSACTION +04:53:32 Slot [270] | NOT FINANCIAL TRANSACTION +04:53:42 Slot [299] | NOT FINANCIAL TRANSACTION +04:53:52 Slot [280] | NOT FINANCIAL TRANSACTION +04:53:57 Slot [278] | NOT FINANCIAL TRANSACTION +04:54:02 Slot [289] | NOT FINANCIAL TRANSACTION +04:54:17 Slot [277] | NOT FINANCIAL TRANSACTION +04:54:32 Slot [285] | NOT FINANCIAL TRANSACTION +04:54:48 Slot [287] | NOT FINANCIAL TRANSACTION +04:54:59 Slot [293] | NOT FINANCIAL TRANSACTION +04:55:03 Slot [304] | NOT FINANCIAL TRANSACTION +04:55:17 Slot [281] | NOT FINANCIAL TRANSACTION +04:55:19 Slot [296] | NOT FINANCIAL TRANSACTION +04:55:30 Slot [275] | NOT FINANCIAL TRANSACTION +04:55:40 Slot [309] | NOT FINANCIAL TRANSACTION +04:55:50 Slot [291] | NOT FINANCIAL TRANSACTION +04:56:01 Slot [286] | NOT FINANCIAL TRANSACTION +04:56:01 Slot [294] | NOT FINANCIAL TRANSACTION +04:56:08 Slot [259] | NOT FINANCIAL TRANSACTION +04:56:11 Slot [303] | NOT FINANCIAL TRANSACTION +04:56:21 Slot [282] | NOT FINANCIAL TRANSACTION +04:56:31 Slot [271] | NOT FINANCIAL TRANSACTION +04:56:42 Slot [298] | NOT FINANCIAL TRANSACTION +04:56:52 Slot [272] | NOT FINANCIAL TRANSACTION +04:57:03 Slot [317] | NOT FINANCIAL TRANSACTION +04:57:07 Slot [288] | NOT FINANCIAL TRANSACTION +04:57:23 Slot [307] | NOT FINANCIAL TRANSACTION +04:57:30 Slot [237] | NOT FINANCIAL TRANSACTION +04:57:33 Slot [329] | NOT FINANCIAL TRANSACTION +04:57:35 Slot [314] | NOT FINANCIAL TRANSACTION +04:57:43 Slot [315] | NOT FINANCIAL TRANSACTION +04:57:59 Slot [313] | NOT FINANCIAL TRANSACTION +04:58:05 Slot [323] | NOT FINANCIAL TRANSACTION +04:58:09 Slot [336] | NOT FINANCIAL TRANSACTION +04:58:20 Slot [331] | NOT FINANCIAL TRANSACTION +04:58:31 Slot [324] | NOT FINANCIAL TRANSACTION +04:58:41 Slot [283] | NOT FINANCIAL TRANSACTION +04:58:51 Slot [308] | NOT FINANCIAL TRANSACTION +04:59:02 Slot [319] | NOT FINANCIAL TRANSACTION +04:59:07 Slot [321] | NOT FINANCIAL TRANSACTION +04:59:12 Slot [295] | NOT FINANCIAL TRANSACTION +04:59:23 Slot [255] | NOT FINANCIAL TRANSACTION +04:59:33 Slot [318] | NOT FINANCIAL TRANSACTION +04:59:48 Slot [300] | NOT FINANCIAL TRANSACTION +04:59:59 Slot [326] | NOT FINANCIAL TRANSACTION +05:00:09 Slot [312] | NOT FINANCIAL TRANSACTION +05:00:09 Slot [340] | NOT FINANCIAL TRANSACTION +05:00:17 Slot [302] | NOT FINANCIAL TRANSACTION +05:00:21 Slot [306] | NOT FINANCIAL TRANSACTION +05:00:31 Slot [355] | NOT FINANCIAL TRANSACTION +05:00:48 Slot [316] | NOT FINANCIAL TRANSACTION +05:01:03 Slot [325] | NOT FINANCIAL TRANSACTION +05:01:11 Slot [311] | NOT FINANCIAL TRANSACTION +05:01:14 Slot [334] | NOT FINANCIAL TRANSACTION +05:01:24 Slot [339] | NOT FINANCIAL TRANSACTION +05:01:35 Slot [310] | NOT FINANCIAL TRANSACTION +05:01:50 Slot [301] | NOT FINANCIAL TRANSACTION +05:02:01 +Slot[297] 0200 010000 6213541000237167 ------------- 00 868483 000100000000 507701196547030200116213541000237167 507701196547 313847 668899 S +05:02:05 Slot [349] | NOT FINANCIAL TRANSACTION +05:02:13 Slot [350] | NOT FINANCIAL TRANSACTION +05:02:21 Slot [341] | NOT FINANCIAL TRANSACTION +05:02:35 Slot [328] | NOT FINANCIAL TRANSACTION +05:02:36 Slot [332] | NOT FINANCIAL TRANSACTION +05:02:47 Slot [338] | NOT FINANCIAL TRANSACTION +05:02:57 Slot [305] | NOT FINANCIAL TRANSACTION +05:03:08 Slot [352] | NOT FINANCIAL TRANSACTION +05:03:15 Slot [364] | NOT FINANCIAL TRANSACTION +05:03:23 Slot [330] | NOT FINANCIAL TRANSACTION +05:03:33 Slot [343] | NOT FINANCIAL TRANSACTION +05:03:44 Slot [345] | NOT FINANCIAL TRANSACTION +05:03:55 Slot [337] | NOT FINANCIAL TRANSACTION +05:04:10 Slot [354] | NOT FINANCIAL TRANSACTION +05:04:17 Slot [320] | NOT FINANCIAL TRANSACTION +05:04:20 Slot [342] | NOT FINANCIAL TRANSACTION +05:04:32 Slot [335] | NOT FINANCIAL TRANSACTION +05:04:42 Slot [369] | NOT FINANCIAL TRANSACTION +05:04:52 Slot [366] | NOT FINANCIAL TRANSACTION +05:05:02 Slot [290] | NOT FINANCIAL TRANSACTION +05:05:12 Slot [347] | NOT FINANCIAL TRANSACTION +05:05:17 Slot [374] | NOT FINANCIAL TRANSACTION +05:05:19 Slot [327] | NOT FINANCIAL TRANSACTION +05:05:24 Slot [292] | NOT FINANCIAL TRANSACTION +05:05:34 Slot [365] | NOT FINANCIAL TRANSACTION +05:05:50 Slot [333] | NOT FINANCIAL TRANSACTION +05:06:04 Slot [384] | NOT FINANCIAL TRANSACTION +05:06:15 Slot [358] | NOT FINANCIAL TRANSACTION +05:06:21 Slot [360] | NOT FINANCIAL TRANSACTION +05:06:26 Slot [373] | NOT FINANCIAL TRANSACTION +05:06:40 Slot [353] | NOT FINANCIAL TRANSACTION +05:06:51 Slot [362] | NOT FINANCIAL TRANSACTION +05:06:54 Slot [372] | NOT FINANCIAL TRANSACTION +05:07:01 Slot [380] | NOT FINANCIAL TRANSACTION +05:07:11 Slot [379] | NOT FINANCIAL TRANSACTION +05:07:23 Slot [382] | NOT FINANCIAL TRANSACTION +05:07:23 Slot [348] | NOT FINANCIAL TRANSACTION +05:07:35 Slot [361] | NOT FINANCIAL TRANSACTION +05:07:38 Slot [322] | NOT FINANCIAL TRANSACTION +05:07:48 Slot [346] | NOT FINANCIAL TRANSACTION +05:07:59 Slot [377] | NOT FINANCIAL TRANSACTION +05:08:09 Slot [370] | NOT FINANCIAL TRANSACTION +05:08:20 Slot [378] | NOT FINANCIAL TRANSACTION +05:08:25 Slot [363] | NOT FINANCIAL TRANSACTION +05:08:30 Slot [385] | NOT FINANCIAL TRANSACTION +05:08:42 Slot [371] | NOT FINANCIAL TRANSACTION +05:08:52 Slot [359] | NOT FINANCIAL TRANSACTION +05:09:02 Slot [351] | NOT FINANCIAL TRANSACTION +05:09:12 Slot [397] | NOT FINANCIAL TRANSACTION +05:09:22 Slot [367] | NOT FINANCIAL TRANSACTION +05:09:27 Slot [344] | NOT FINANCIAL TRANSACTION +05:09:33 Slot [386] | NOT FINANCIAL TRANSACTION +05:09:43 Slot [388] | NOT FINANCIAL TRANSACTION +05:09:54 Slot [410] | NOT FINANCIAL TRANSACTION +05:10:05 Slot [357] | NOT FINANCIAL TRANSACTION +05:10:15 Slot [414] | NOT FINANCIAL TRANSACTION +05:10:17 Slot [401] | NOT FINANCIAL TRANSACTION +05:10:27 Slot [408] | NOT FINANCIAL TRANSACTION +05:10:29 Slot [413] | NOT FINANCIAL TRANSACTION +05:10:42 Slot [393] | NOT FINANCIAL TRANSACTION +05:10:52 Slot [403] | NOT FINANCIAL TRANSACTION +05:11:02 Slot [398] | NOT FINANCIAL TRANSACTION +05:11:13 Slot [420] | NOT FINANCIAL TRANSACTION +05:11:24 Slot [391] | NOT FINANCIAL TRANSACTION +05:11:31 Slot [418] | NOT FINANCIAL TRANSACTION +05:11:34 Slot [392] | NOT FINANCIAL TRANSACTION +05:11:44 Slot [356] | NOT FINANCIAL TRANSACTION +05:11:55 Slot [416] | NOT FINANCIAL TRANSACTION +05:12:06 Slot [425] | NOT FINANCIAL TRANSACTION +05:12:21 Slot [383] | NOT FINANCIAL TRANSACTION +05:12:32 Slot [411] | NOT FINANCIAL TRANSACTION +05:12:33 Slot [415] | NOT FINANCIAL TRANSACTION +05:12:35 Slot [387] | NOT FINANCIAL TRANSACTION +05:12:42 Slot [396] | NOT FINANCIAL TRANSACTION +05:12:57 Slot [431] | NOT FINANCIAL TRANSACTION +05:13:12 Slot [395] | NOT FINANCIAL TRANSACTION +05:13:23 Slot [423] | NOT FINANCIAL TRANSACTION +05:13:35 Slot [402] | NOT FINANCIAL TRANSACTION +05:13:38 Slot [400] | NOT FINANCIAL TRANSACTION +05:13:49 Slot [429] | NOT FINANCIAL TRANSACTION +05:14:00 Slot [381] | NOT FINANCIAL TRANSACTION +05:14:12 Slot [375] | NOT FINANCIAL TRANSACTION +05:14:15 Slot [417] | NOT FINANCIAL TRANSACTION +05:14:26 Slot [438] | NOT FINANCIAL TRANSACTION +05:14:37 Slot [428] | NOT FINANCIAL TRANSACTION +05:14:41 Slot [406] | NOT FINANCIAL TRANSACTION +05:14:52 Slot [399] | NOT FINANCIAL TRANSACTION +05:15:02 Slot [437] | NOT FINANCIAL TRANSACTION +05:15:13 Slot [419] | NOT FINANCIAL TRANSACTION +05:15:17 Slot [404] | NOT FINANCIAL TRANSACTION +05:15:24 Slot [427] | NOT FINANCIAL TRANSACTION +05:15:34 Slot [422] | NOT FINANCIAL TRANSACTION +05:15:39 Slot [445] | NOT FINANCIAL TRANSACTION +05:15:45 Slot [394] | NOT FINANCIAL TRANSACTION +05:15:55 Slot [440] | NOT FINANCIAL TRANSACTION +05:16:05 Slot [452] | NOT FINANCIAL TRANSACTION +05:16:15 Slot [448] | NOT FINANCIAL TRANSACTION +05:16:26 Slot [389] | NOT FINANCIAL TRANSACTION +05:16:37 Slot [368] | NOT FINANCIAL TRANSACTION +05:16:41 Slot [443] | NOT FINANCIAL TRANSACTION +05:16:47 Slot [442] | NOT FINANCIAL TRANSACTION +05:16:58 Slot [465] | NOT FINANCIAL TRANSACTION +05:17:13 Slot [435] | NOT FINANCIAL TRANSACTION +05:17:23 Slot [439] | NOT FINANCIAL TRANSACTION +05:17:34 Slot [390] | NOT FINANCIAL TRANSACTION +05:17:35 Slot [376] | NOT FINANCIAL TRANSACTION +05:17:40 Slot [433] | NOT FINANCIAL TRANSACTION +05:17:43 Slot [424] | NOT FINANCIAL TRANSACTION +05:17:44 Slot [447] | NOT FINANCIAL TRANSACTION +05:17:55 Slot [430] | NOT FINANCIAL TRANSACTION +05:18:05 Slot [460] | NOT FINANCIAL TRANSACTION +05:18:15 Slot [421] | NOT FINANCIAL TRANSACTION +05:18:25 Slot [478] | NOT FINANCIAL TRANSACTION +05:18:37 Slot [432] | NOT FINANCIAL TRANSACTION +05:18:45 Slot [450] | NOT FINANCIAL TRANSACTION +05:18:52 Slot [467] | NOT FINANCIAL TRANSACTION +05:19:02 Slot [463] | NOT FINANCIAL TRANSACTION +05:19:13 Slot [441] | NOT FINANCIAL TRANSACTION +05:19:25 Slot [456] | NOT FINANCIAL TRANSACTION +05:19:39 Slot [405] | NOT FINANCIAL TRANSACTION +05:19:47 Slot [462] | NOT FINANCIAL TRANSACTION +05:19:54 Slot [434] | NOT FINANCIAL TRANSACTION +05:20:05 Slot [455] | NOT FINANCIAL TRANSACTION +05:20:16 Slot [426] | NOT FINANCIAL TRANSACTION +05:20:16 Slot [485] | NOT FINANCIAL TRANSACTION +05:20:27 Slot [412] | NOT FINANCIAL TRANSACTION +05:20:42 Slot [407] | NOT FINANCIAL TRANSACTION +05:20:49 Slot [449] | NOT FINANCIAL TRANSACTION +05:20:58 Slot [481] | NOT FINANCIAL TRANSACTION +05:21:08 Slot [461] | NOT FINANCIAL TRANSACTION +05:21:23 Slot [475] | NOT FINANCIAL TRANSACTION +05:21:34 Slot [469] | NOT FINANCIAL TRANSACTION +05:21:45 Slot [468] | NOT FINANCIAL TRANSACTION +05:21:51 Slot [409] | NOT FINANCIAL TRANSACTION +05:21:55 Slot [453] | NOT FINANCIAL TRANSACTION +05:22:05 Slot [457] | NOT FINANCIAL TRANSACTION +05:22:16 Slot [474] | NOT FINANCIAL TRANSACTION +05:22:27 Slot [487] | NOT FINANCIAL TRANSACTION +05:22:35 Slot [482] | NOT FINANCIAL TRANSACTION +05:22:37 Slot [472] | NOT FINANCIAL TRANSACTION +05:22:52 Slot [483] | NOT FINANCIAL TRANSACTION +05:22:53 Slot [444] | NOT FINANCIAL TRANSACTION +05:23:03 Slot [479] | NOT FINANCIAL TRANSACTION +05:23:13 Slot [489] | NOT FINANCIAL TRANSACTION +05:23:28 Slot [471] | NOT FINANCIAL TRANSACTION +05:23:38 Slot [451] | NOT FINANCIAL TRANSACTION +05:23:53 Slot [490] | NOT FINANCIAL TRANSACTION +05:23:55 Slot [446] | NOT FINANCIAL TRANSACTION +05:24:05 Slot [459] | NOT FINANCIAL TRANSACTION +05:24:19 Slot [498] | NOT FINANCIAL TRANSACTION +05:24:29 Slot [476] | NOT FINANCIAL TRANSACTION +05:24:44 Slot [436] | NOT FINANCIAL TRANSACTION +05:24:55 Slot [486] | NOT FINANCIAL TRANSACTION +05:24:57 Slot [491] | NOT FINANCIAL TRANSACTION +05:25:06 Slot [497] | NOT FINANCIAL TRANSACTION +05:25:17 Slot [473] | NOT FINANCIAL TRANSACTION +05:25:22 Slot [499] | NOT FINANCIAL TRANSACTION +05:25:33 Slot [7] | NOT FINANCIAL TRANSACTION +05:25:48 Slot [2] | NOT FINANCIAL TRANSACTION +05:25:59 Slot [470] | NOT FINANCIAL TRANSACTION +05:26:03 Slot [480] | NOT FINANCIAL TRANSACTION +05:26:14 Slot [477] | NOT FINANCIAL TRANSACTION +05:26:24 Slot [495] | NOT FINANCIAL TRANSACTION +05:26:35 Slot [464] | NOT FINANCIAL TRANSACTION +05:26:45 Slot [492] | NOT FINANCIAL TRANSACTION +05:26:56 Slot [14] | NOT FINANCIAL TRANSACTION +05:27:01 Slot [18] | NOT FINANCIAL TRANSACTION +05:27:07 Slot [24] | NOT FINANCIAL TRANSACTION +05:27:18 Slot [454] | NOT FINANCIAL TRANSACTION +05:27:33 Slot [484] | NOT FINANCIAL TRANSACTION +05:27:35 Slot [466] | NOT FINANCIAL TRANSACTION +05:27:44 Slot [22] | NOT FINANCIAL TRANSACTION +05:27:54 Slot [3] | NOT FINANCIAL TRANSACTION +05:28:03 Slot [493] | NOT FINANCIAL TRANSACTION +05:28:04 Slot [12] | NOT FINANCIAL TRANSACTION +05:28:15 Slot [488] | NOT FINANCIAL TRANSACTION +05:28:26 Slot [458] | NOT FINANCIAL TRANSACTION +05:28:27 Slot [0] | NOT FINANCIAL TRANSACTION +05:28:42 Slot [31] | NOT FINANCIAL TRANSACTION +05:28:52 Slot [4] | NOT FINANCIAL TRANSACTION +05:29:05 Slot [16] | NOT FINANCIAL TRANSACTION +05:29:07 Slot [1] | NOT FINANCIAL TRANSACTION +05:29:18 Slot [5] | NOT FINANCIAL TRANSACTION +05:29:28 Slot [8] | NOT FINANCIAL TRANSACTION +05:29:38 Slot [21] | NOT FINANCIAL TRANSACTION +05:29:54 Slot [496] | NOT FINANCIAL TRANSACTION +05:30:04 Slot [15] | NOT FINANCIAL TRANSACTION +05:30:07 Slot [19] | NOT FINANCIAL TRANSACTION +05:30:15 Slot [23] | NOT FINANCIAL TRANSACTION +05:30:17 Slot [26] | NOT FINANCIAL TRANSACTION +05:30:25 Slot [10] | NOT FINANCIAL TRANSACTION +05:30:35 Slot [9] | NOT FINANCIAL TRANSACTION +05:30:46 Slot [6] | NOT FINANCIAL TRANSACTION +05:30:54 Slot [27] | NOT FINANCIAL TRANSACTION +05:30:56 Slot [25] | NOT FINANCIAL TRANSACTION +05:31:06 Slot [30] | NOT FINANCIAL TRANSACTION +05:31:09 Slot [11] | NOT FINANCIAL TRANSACTION +05:31:16 Slot [46] | NOT FINANCIAL TRANSACTION +05:31:27 Slot [29] | NOT FINANCIAL TRANSACTION +05:31:42 Slot [494] | NOT FINANCIAL TRANSACTION +05:31:53 Slot [20] | NOT FINANCIAL TRANSACTION +05:32:03 Slot [34] | NOT FINANCIAL TRANSACTION +05:32:11 Slot [28] | NOT FINANCIAL TRANSACTION +05:32:14 Slot [38] | NOT FINANCIAL TRANSACTION +05:32:24 Slot [42] | NOT FINANCIAL TRANSACTION +05:32:35 Slot [56] | NOT FINANCIAL TRANSACTION +05:32:35 Slot [13] | NOT FINANCIAL TRANSACTION +05:32:50 Slot [39] | NOT FINANCIAL TRANSACTION +05:33:05 Slot [36] | NOT FINANCIAL TRANSACTION +05:33:13 Slot [52] | NOT FINANCIAL TRANSACTION +05:33:15 Slot [32] | NOT FINANCIAL TRANSACTION +05:33:26 Slot [41] | NOT FINANCIAL TRANSACTION +05:33:42 Slot [44] | NOT FINANCIAL TRANSACTION +05:33:53 Slot [47] | NOT FINANCIAL TRANSACTION +05:34:03 Slot [40] | NOT FINANCIAL TRANSACTION +05:34:14 Slot [57] | NOT FINANCIAL TRANSACTION +05:34:15 Slot [54] | NOT FINANCIAL TRANSACTION +05:34:25 Slot [61] | NOT FINANCIAL TRANSACTION +05:34:35 Slot [37] | NOT FINANCIAL TRANSACTION +05:34:46 Slot [59] | NOT FINANCIAL TRANSACTION +05:34:57 Slot [51] | NOT FINANCIAL TRANSACTION +05:35:08 Slot [58] | NOT FINANCIAL TRANSACTION +05:35:17 Slot [55] | NOT FINANCIAL TRANSACTION +05:35:17 Slot [72] | NOT FINANCIAL TRANSACTION +05:35:18 Slot [17] | NOT FINANCIAL TRANSACTION +05:35:29 Slot [60] | NOT FINANCIAL TRANSACTION +05:35:40 Slot [48] | NOT FINANCIAL TRANSACTION +05:35:51 Slot [63] | NOT FINANCIAL TRANSACTION +05:36:06 Slot [35] | NOT FINANCIAL TRANSACTION +05:36:16 Slot [71] | NOT FINANCIAL TRANSACTION +05:36:19 Slot [53] | NOT FINANCIAL TRANSACTION +05:36:27 Slot [67] | NOT FINANCIAL TRANSACTION +05:36:31 +Slot[79] 0200 301000 2206990000093567 ------------- 00 868513 000000000000 507702031433030180032206990000093567 507702031433 335600 668899 S +05:36:43 Slot [49] | NOT FINANCIAL TRANSACTION +05:36:54 Slot [80] | NOT FINANCIAL TRANSACTION +05:37:04 Slot [85] | NOT FINANCIAL TRANSACTION +05:37:15 Slot [75] | NOT FINANCIAL TRANSACTION +05:37:21 Slot [83] | NOT FINANCIAL TRANSACTION +05:37:26 Slot [78] | NOT FINANCIAL TRANSACTION +05:37:26 +Slot[45] 0200 010000 2206990000093567 ------------- 00 868516 000100000000 507702031434030180032206990000093567 507702031434 582274 668899 S +05:37:35 Slot [43] | NOT FINANCIAL TRANSACTION +05:37:36 Slot [68] | NOT FINANCIAL TRANSACTION +05:37:46 Slot [73] | NOT FINANCIAL TRANSACTION +05:37:57 Slot [89] | NOT FINANCIAL TRANSACTION +05:38:09 Slot [91] | NOT FINANCIAL TRANSACTION +05:38:23 Slot [77] | NOT FINANCIAL TRANSACTION +05:38:23 Slot [76] | NOT FINANCIAL TRANSACTION +05:38:34 Slot [88] | NOT FINANCIAL TRANSACTION +05:38:44 Slot [94] | NOT FINANCIAL TRANSACTION +05:39:00 Slot [86] | NOT FINANCIAL TRANSACTION +05:39:08 +Slot[65] 0200 302000 2206990000093567 ------------- 00 868520 000000000000 507702031436030180032206990000093567 507702031436 936662 668899 S +05:39:12 Slot [93] | NOT FINANCIAL TRANSACTION +05:39:15 Slot [66] | NOT FINANCIAL TRANSACTION +05:39:24 +Slot[33] 0200 302000 2206990000093567 ------------- 00 868521 000000000000 507702031437030180032206990000093567 507702031437 725847 668899 S +05:39:25 Slot [103] | NOT FINANCIAL TRANSACTION +05:39:26 Slot [101] | NOT FINANCIAL TRANSACTION +05:39:37 Slot [95] | NOT FINANCIAL TRANSACTION +05:39:53 Slot [105] | NOT FINANCIAL TRANSACTION +05:40:09 Slot [74] | NOT FINANCIAL TRANSACTION +05:40:17 Slot [70] | NOT FINANCIAL TRANSACTION +05:40:19 +Slot[50] 0200 010000 2206990000093567 ------------- 00 868523 000100000000 507702031439030180032206990000093567 507702031439 084884 668899 S +05:40:24 Slot [92] | NOT FINANCIAL TRANSACTION +05:40:27 Slot [102] | NOT FINANCIAL TRANSACTION +05:40:34 Slot [81] | NOT FINANCIAL TRANSACTION +05:40:45 Slot [107] | NOT FINANCIAL TRANSACTION +05:40:55 Slot [100] | NOT FINANCIAL TRANSACTION +05:41:06 Slot [114] | NOT FINANCIAL TRANSACTION +05:41:16 Slot [108] | NOT FINANCIAL TRANSACTION +05:41:29 Slot [104] | NOT FINANCIAL TRANSACTION +05:41:32 Slot [82] | NOT FINANCIAL TRANSACTION +05:41:42 Slot [122] | NOT FINANCIAL TRANSACTION +05:41:58 Slot [87] | NOT FINANCIAL TRANSACTION +05:42:08 Slot [69] | NOT FINANCIAL TRANSACTION +05:42:24 Slot [119] | NOT FINANCIAL TRANSACTION +05:42:31 Slot [117] | NOT FINANCIAL TRANSACTION +05:42:34 Slot [115] | NOT FINANCIAL TRANSACTION +05:42:35 Slot [110] | NOT FINANCIAL TRANSACTION +05:42:44 Slot [126] | NOT FINANCIAL TRANSACTION +05:42:54 Slot [96] | NOT FINANCIAL TRANSACTION +05:43:05 Slot [62] | NOT FINANCIAL TRANSACTION +05:43:16 Slot [64] | NOT FINANCIAL TRANSACTION +05:43:26 Slot [136] | NOT FINANCIAL TRANSACTION +05:43:33 Slot [124] | NOT FINANCIAL TRANSACTION +05:43:36 Slot [97] | NOT FINANCIAL TRANSACTION +05:43:47 Slot [84] | NOT FINANCIAL TRANSACTION +05:43:58 Slot [98] | NOT FINANCIAL TRANSACTION +05:44:14 Slot [113] | NOT FINANCIAL TRANSACTION +05:44:25 Slot [90] | NOT FINANCIAL TRANSACTION +05:44:35 Slot [121] | NOT FINANCIAL TRANSACTION +05:44:42 Slot [112] | NOT FINANCIAL TRANSACTION +05:44:57 Slot [99] | NOT FINANCIAL TRANSACTION +05:45:07 Slot [144] | NOT FINANCIAL TRANSACTION +05:45:17 Slot [159] | NOT FINANCIAL TRANSACTION +05:45:18 Slot [134] | NOT FINANCIAL TRANSACTION +05:45:33 Slot [148] | NOT FINANCIAL TRANSACTION +05:45:37 Slot [142] | NOT FINANCIAL TRANSACTION +05:45:43 Slot [111] | NOT FINANCIAL TRANSACTION +05:45:58 Slot [149] | NOT FINANCIAL TRANSACTION +05:46:13 Slot [128] | NOT FINANCIAL TRANSACTION +05:46:24 Slot [140] | NOT FINANCIAL TRANSACTION +05:46:34 Slot [155] | NOT FINANCIAL TRANSACTION +05:46:39 Slot [146] | NOT FINANCIAL TRANSACTION +05:46:45 Slot [131] | NOT FINANCIAL TRANSACTION +05:46:56 Slot [139] | NOT FINANCIAL TRANSACTION +05:47:11 Slot [127] | NOT FINANCIAL TRANSACTION +05:47:21 Slot [109] | NOT FINANCIAL TRANSACTION +05:47:32 Slot [151] | NOT FINANCIAL TRANSACTION +05:47:35 Slot [150] | NOT FINANCIAL TRANSACTION +05:47:36 Slot [154] | NOT FINANCIAL TRANSACTION +05:47:41 Slot [118] | NOT FINANCIAL TRANSACTION +05:47:42 Slot [123] | NOT FINANCIAL TRANSACTION +05:47:53 Slot [138] | NOT FINANCIAL TRANSACTION +05:48:05 Slot [157] | NOT FINANCIAL TRANSACTION +05:48:16 Slot [135] | NOT FINANCIAL TRANSACTION +05:48:27 Slot [171] | NOT FINANCIAL TRANSACTION +05:48:42 Slot [120] | NOT FINANCIAL TRANSACTION +05:48:43 Slot [132] | NOT FINANCIAL TRANSACTION +05:48:52 Slot [152] | NOT FINANCIAL TRANSACTION +05:49:03 Slot [116] | NOT FINANCIAL TRANSACTION +05:49:13 Slot [167] | NOT FINANCIAL TRANSACTION +05:49:24 Slot [156] | NOT FINANCIAL TRANSACTION +05:49:34 Slot [129] | NOT FINANCIAL TRANSACTION +05:49:45 Slot [130] | NOT FINANCIAL TRANSACTION +05:49:45 Slot [175] | NOT FINANCIAL TRANSACTION +05:49:57 Slot [141] | NOT FINANCIAL TRANSACTION +05:50:01 Slot [168] | NOT FINANCIAL TRANSACTION +05:50:12 Slot [166] | NOT FINANCIAL TRANSACTION +05:50:17 Slot [169] | NOT FINANCIAL TRANSACTION +05:50:27 Slot [172] | NOT FINANCIAL TRANSACTION +05:50:37 Slot [160] | NOT FINANCIAL TRANSACTION +05:50:47 Slot [174] | NOT FINANCIAL TRANSACTION +05:50:47 Slot [147] | NOT FINANCIAL TRANSACTION +05:50:57 Slot [164] | NOT FINANCIAL TRANSACTION +05:51:13 Slot [133] | NOT FINANCIAL TRANSACTION +05:51:24 Slot [153] | NOT FINANCIAL TRANSACTION +05:51:40 Slot [178] | NOT FINANCIAL TRANSACTION +05:51:49 Slot [183] | NOT FINANCIAL TRANSACTION +05:51:55 Slot [125] | NOT FINANCIAL TRANSACTION +05:52:10 Slot [195] | NOT FINANCIAL TRANSACTION +05:52:13 +Slot[191] 0200 010000 6688990060026836 ------------- 64 258055 000200000000 5077222580550369SLVL6688990060026836 507722258055 640385 180893 S +05:52:26 Slot [170] | NOT FINANCIAL TRANSACTION +05:52:35 Slot [143] | NOT FINANCIAL TRANSACTION +05:52:42 Slot [161] | NOT FINANCIAL TRANSACTION +05:52:51 Slot [181] | NOT FINANCIAL TRANSACTION +05:52:53 Slot [189] | NOT FINANCIAL TRANSACTION +05:53:03 Slot [158] | NOT FINANCIAL TRANSACTION +05:53:09 +Slot[204] 0200 010000 6688990060026836 ------------- 64 258057 000200000000 5077222580570369SLVL6688990060026836 507722258057 655950 180893 S +05:53:18 Slot [202] | NOT FINANCIAL TRANSACTION +05:53:29 Slot [197] | NOT FINANCIAL TRANSACTION +05:53:44 Slot [182] | NOT FINANCIAL TRANSACTION +05:53:53 Slot [193] | NOT FINANCIAL TRANSACTION +05:53:55 Slot [200] | NOT FINANCIAL TRANSACTION +05:54:05 Slot [177] | NOT FINANCIAL TRANSACTION +05:54:16 Slot [210] | NOT FINANCIAL TRANSACTION +05:54:26 Slot [198] | NOT FINANCIAL TRANSACTION +05:54:36 Slot [213] | NOT FINANCIAL TRANSACTION +05:54:46 Slot [106] | NOT FINANCIAL TRANSACTION +05:54:55 Slot [163] | NOT FINANCIAL TRANSACTION +05:54:57 Slot [165] | NOT FINANCIAL TRANSACTION +05:55:11 Slot [187] | NOT FINANCIAL TRANSACTION +05:55:17 Slot [206] | NOT FINANCIAL TRANSACTION +05:55:22 Slot [211] | NOT FINANCIAL TRANSACTION +05:55:38 Slot [162] | NOT FINANCIAL TRANSACTION +05:55:48 Slot [196] | NOT FINANCIAL TRANSACTION +05:55:57 Slot [145] | NOT FINANCIAL TRANSACTION +05:55:59 Slot [221] | NOT FINANCIAL TRANSACTION +05:56:14 Slot [205] | NOT FINANCIAL TRANSACTION +05:56:26 Slot [217] | NOT FINANCIAL TRANSACTION +05:56:36 Slot [180] | NOT FINANCIAL TRANSACTION +05:56:46 Slot [214] | NOT FINANCIAL TRANSACTION +05:56:56 Slot [194] | NOT FINANCIAL TRANSACTION +05:56:59 Slot [222] | NOT FINANCIAL TRANSACTION +05:57:07 Slot [226] | NOT FINANCIAL TRANSACTION +05:57:18 Slot [176] | NOT FINANCIAL TRANSACTION +05:57:29 Slot [190] | NOT FINANCIAL TRANSACTION +05:57:35 Slot [184] | NOT FINANCIAL TRANSACTION +05:57:40 Slot [137] | NOT FINANCIAL TRANSACTION +05:57:51 Slot [225] | NOT FINANCIAL TRANSACTION +05:58:01 Slot [218] | NOT FINANCIAL TRANSACTION +05:58:01 Slot [224] | NOT FINANCIAL TRANSACTION +05:58:17 Slot [173] | NOT FINANCIAL TRANSACTION +05:58:28 Slot [223] | NOT FINANCIAL TRANSACTION +05:58:38 Slot [207] | NOT FINANCIAL TRANSACTION +05:58:54 Slot [208] | NOT FINANCIAL TRANSACTION +05:59:03 Slot [215] | NOT FINANCIAL TRANSACTION +05:59:04 Slot [192] | NOT FINANCIAL TRANSACTION +05:59:15 Slot [231] | NOT FINANCIAL TRANSACTION +05:59:26 Slot [188] | NOT FINANCIAL TRANSACTION +05:59:41 Slot [199] | NOT FINANCIAL TRANSACTION +05:59:51 Slot [220] | NOT FINANCIAL TRANSACTION +06:00:05 Slot [185] | NOT FINANCIAL TRANSACTION +06:00:07 Slot [179] | NOT FINANCIAL TRANSACTION +06:00:17 Slot [186] | NOT FINANCIAL TRANSACTION +06:00:17 Slot [229] | NOT FINANCIAL TRANSACTION +06:00:27 Slot [227] | NOT FINANCIAL TRANSACTION +06:00:37 Slot [212] | NOT FINANCIAL TRANSACTION +06:00:43 Slot [219] | NOT FINANCIAL TRANSACTION +06:00:48 Slot [230] | NOT FINANCIAL TRANSACTION +06:00:59 Slot [236] | NOT FINANCIAL TRANSACTION +06:01:07 Slot [239] | NOT FINANCIAL TRANSACTION +06:01:14 Slot [216] | NOT FINANCIAL TRANSACTION +06:01:25 Slot [232] | NOT FINANCIAL TRANSACTION +06:01:35 Slot [209] | NOT FINANCIAL TRANSACTION +06:01:47 Slot [235] | NOT FINANCIAL TRANSACTION +06:02:02 Slot [234] | NOT FINANCIAL TRANSACTION +06:02:04 +Slot[250] 0200 010000 6213545000759948 ------------- 00 254504 000002000000 507700094208010009006213545000759948 507700094208 301668 220699 S +06:02:09 Slot [238] | NOT FINANCIAL TRANSACTION +06:02:17 Slot [242] | NOT FINANCIAL TRANSACTION +06:02:28 Slot [252] | NOT FINANCIAL TRANSACTION +06:02:36 Slot [201] | NOT FINANCIAL TRANSACTION +06:02:39 Slot [245] | NOT FINANCIAL TRANSACTION +06:02:54 Slot [228] | NOT FINANCIAL TRANSACTION +06:03:11 Slot [240] | NOT FINANCIAL TRANSACTION +06:03:11 Slot [248] | NOT FINANCIAL TRANSACTION +06:03:18 +Slot[203] 0200 010000 6213545000759948 ------------- 00 254507 000001000000 507700094210010009006213545000759948 507700094210 597993 220699 S +06:03:26 Slot [244] | NOT FINANCIAL TRANSACTION +06:03:36 Slot [258] | NOT FINANCIAL TRANSACTION +06:03:46 Slot [243] | NOT FINANCIAL TRANSACTION +06:03:57 Slot [253] | NOT FINANCIAL TRANSACTION +06:04:08 Slot [247] | NOT FINANCIAL TRANSACTION +06:04:13 Slot [246] | NOT FINANCIAL TRANSACTION +06:04:18 Slot [256] | NOT FINANCIAL TRANSACTION +06:04:25 Slot [241] | NOT FINANCIAL TRANSACTION +06:04:40 Slot [260] | NOT FINANCIAL TRANSACTION +06:04:50 Slot [249] | NOT FINANCIAL TRANSACTION +06:05:00 Slot [265] | NOT FINANCIAL TRANSACTION +06:05:15 Slot [273] | NOT FINANCIAL TRANSACTION +06:05:16 Slot [251] | NOT FINANCIAL TRANSACTION +06:05:17 Slot [269] | NOT FINANCIAL TRANSACTION +06:05:27 Slot [254] | NOT FINANCIAL TRANSACTION +06:05:42 Slot [268] | NOT FINANCIAL TRANSACTION +06:05:52 Slot [264] | NOT FINANCIAL TRANSACTION +06:06:03 Slot [276] | NOT FINANCIAL TRANSACTION +06:06:17 Slot [266] | NOT FINANCIAL TRANSACTION +06:06:18 Slot [279] | NOT FINANCIAL TRANSACTION +06:06:28 Slot [233] | NOT FINANCIAL TRANSACTION +06:06:38 Slot [261] | NOT FINANCIAL TRANSACTION +06:06:49 Slot [262] | NOT FINANCIAL TRANSACTION +06:07:01 Slot [257] | NOT FINANCIAL TRANSACTION +06:07:16 Slot [274] | NOT FINANCIAL TRANSACTION +06:07:19 Slot [284] | NOT FINANCIAL TRANSACTION +06:07:26 Slot [263] | NOT FINANCIAL TRANSACTION +06:07:36 Slot [267] | NOT FINANCIAL TRANSACTION +06:07:43 Slot [270] | NOT FINANCIAL TRANSACTION +06:07:53 Slot [299] | NOT FINANCIAL TRANSACTION +06:08:03 Slot [280] | NOT FINANCIAL TRANSACTION +06:08:19 Slot [278] | NOT FINANCIAL TRANSACTION +06:08:21 Slot [289] | NOT FINANCIAL TRANSACTION +06:08:30 Slot [277] | NOT FINANCIAL TRANSACTION +06:08:40 Slot [285] | NOT FINANCIAL TRANSACTION +06:08:45 +Slot[287] 0200 301000 6688990106350406 ------------- 00 258062 031723074725 5077232580620321LNTV6688990106350406 507723258062 855918 180893 S +06:08:56 Slot [293] | NOT FINANCIAL TRANSACTION +06:09:06 Slot [304] | NOT FINANCIAL TRANSACTION +06:09:21 Slot [281] | NOT FINANCIAL TRANSACTION +06:09:24 Slot [296] | NOT FINANCIAL TRANSACTION +06:09:32 Slot [275] | NOT FINANCIAL TRANSACTION +06:09:47 Slot [309] | NOT FINANCIAL TRANSACTION +06:09:58 Slot [291] | NOT FINANCIAL TRANSACTION +06:10:09 Slot [286] | NOT FINANCIAL TRANSACTION +06:10:17 Slot [294] | NOT FINANCIAL TRANSACTION +06:10:20 Slot [259] | NOT FINANCIAL TRANSACTION +06:10:26 Slot [303] | NOT FINANCIAL TRANSACTION +06:10:35 Slot [282] | NOT FINANCIAL TRANSACTION +06:10:50 Slot [271] | NOT FINANCIAL TRANSACTION +06:11:01 Slot [298] | NOT FINANCIAL TRANSACTION +06:11:16 Slot [272] | NOT FINANCIAL TRANSACTION +06:11:26 Slot [288] | NOT FINANCIAL TRANSACTION +06:11:28 Slot [317] | NOT FINANCIAL TRANSACTION +06:11:29 Slot [307] | NOT FINANCIAL TRANSACTION +06:11:41 Slot [237] | NOT FINANCIAL TRANSACTION +06:11:57 Slot [329] | NOT FINANCIAL TRANSACTION +06:12:07 Slot [314] | NOT FINANCIAL TRANSACTION +06:12:17 Slot [315] | NOT FINANCIAL TRANSACTION +06:12:27 Slot [313] | NOT FINANCIAL TRANSACTION +06:12:30 Slot [323] | NOT FINANCIAL TRANSACTION +06:12:36 Slot [336] | NOT FINANCIAL TRANSACTION +06:12:38 Slot [331] | NOT FINANCIAL TRANSACTION +06:12:48 Slot [324] | NOT FINANCIAL TRANSACTION +06:12:58 Slot [283] | NOT FINANCIAL TRANSACTION +06:13:08 Slot [308] | NOT FINANCIAL TRANSACTION +06:13:19 Slot [321] | NOT FINANCIAL TRANSACTION +06:13:20 +Slot[319] 0200 011000 6688990600393001 ------------- 00 288022 000030000000 507704152942200010006688990600393001 507704152942 174911 621354 S +06:13:30 Slot [255] | NOT FINANCIAL TRANSACTION +06:13:32 Slot [295] | NOT FINANCIAL TRANSACTION +06:13:41 Slot [318] | NOT FINANCIAL TRANSACTION +06:13:56 Slot [300] | NOT FINANCIAL TRANSACTION +06:14:11 Slot [326] | NOT FINANCIAL TRANSACTION +06:14:27 Slot [312] | NOT FINANCIAL TRANSACTION +06:14:34 Slot [340] | NOT FINANCIAL TRANSACTION +06:14:37 Slot [302] | NOT FINANCIAL TRANSACTION +06:14:47 Slot [306] | NOT FINANCIAL TRANSACTION +06:14:59 Slot [355] | NOT FINANCIAL TRANSACTION +06:15:09 Slot [316] | NOT FINANCIAL TRANSACTION +06:15:17 Slot [325] | NOT FINANCIAL TRANSACTION +06:15:19 Slot [311] | NOT FINANCIAL TRANSACTION +06:15:29 Slot [334] | NOT FINANCIAL TRANSACTION +06:15:36 Slot [339] | NOT FINANCIAL TRANSACTION +06:15:40 Slot [310] | NOT FINANCIAL TRANSACTION +06:15:56 Slot [301] | NOT FINANCIAL TRANSACTION +06:16:06 Slot [297] | NOT FINANCIAL TRANSACTION +06:16:16 Slot [349] | NOT FINANCIAL TRANSACTION +06:16:27 Slot [350] | NOT FINANCIAL TRANSACTION +06:16:38 Slot [341] | NOT FINANCIAL TRANSACTION +06:16:38 Slot [328] | NOT FINANCIAL TRANSACTION +06:16:48 Slot [338] | NOT FINANCIAL TRANSACTION +06:16:51 +Slot[332] 0200 010000 2206990000124438 ------------- 00 868682 000100000000 507702031441030180032206990000124438 507702031441 607929 668899 S +06:16:59 Slot [305] | NOT FINANCIAL TRANSACTION +06:17:09 Slot [352] | NOT FINANCIAL TRANSACTION +06:17:19 Slot [364] | NOT FINANCIAL TRANSACTION +06:17:30 Slot [330] | NOT FINANCIAL TRANSACTION +06:17:36 Slot [343] | NOT FINANCIAL TRANSACTION +06:17:40 Slot [345] | NOT FINANCIAL TRANSACTION +06:17:41 Slot [337] | NOT FINANCIAL TRANSACTION +06:17:51 Slot [354] | NOT FINANCIAL TRANSACTION +06:18:02 Slot [320] | NOT FINANCIAL TRANSACTION +06:18:12 Slot [342] | NOT FINANCIAL TRANSACTION +06:18:22 Slot [335] | NOT FINANCIAL TRANSACTION +06:18:37 Slot [369] | NOT FINANCIAL TRANSACTION +06:18:42 Slot [366] | NOT FINANCIAL TRANSACTION +06:18:47 Slot [290] | NOT FINANCIAL TRANSACTION +06:18:58 Slot [347] | NOT FINANCIAL TRANSACTION +06:19:09 Slot [374] | NOT FINANCIAL TRANSACTION +06:19:19 Slot [327] | NOT FINANCIAL TRANSACTION +06:19:27 +Slot[292] 0200 011000 1808930600034276 ------------- 00 288305 000100000000 507704429718030041001808930600034276 507704429718 172517 621354 S +06:19:35 Slot [365] | NOT FINANCIAL TRANSACTION +06:19:44 Slot [333] | NOT FINANCIAL TRANSACTION +06:19:45 Slot [384] | NOT FINANCIAL TRANSACTION +06:19:55 Slot [358] | NOT FINANCIAL TRANSACTION +06:20:06 Slot [360] | NOT FINANCIAL TRANSACTION +06:20:16 Slot [373] | NOT FINANCIAL TRANSACTION +06:20:18 Slot [353] | NOT FINANCIAL TRANSACTION +06:20:27 Slot [362] | NOT FINANCIAL TRANSACTION +06:20:38 Slot [372] | NOT FINANCIAL TRANSACTION +06:20:46 Slot [380] | NOT FINANCIAL TRANSACTION +06:20:48 Slot [379] | NOT FINANCIAL TRANSACTION +06:20:58 Slot [382] | NOT FINANCIAL TRANSACTION +06:21:00 Slot [348] | NOT FINANCIAL TRANSACTION +06:21:08 Slot [361] | NOT FINANCIAL TRANSACTION +06:21:18 Slot [322] | NOT FINANCIAL TRANSACTION +06:21:29 Slot [346] | NOT FINANCIAL TRANSACTION +06:21:37 +Slot[377] 0200 011000 1808930600034276 ------------- 00 288431 000100000000 507704429720030041001808930600034276 507704429720 095361 621354 S +06:21:45 Slot [370] | NOT FINANCIAL TRANSACTION +06:21:48 Slot [378] | NOT FINANCIAL TRANSACTION +06:21:57 Slot [363] | NOT FINANCIAL TRANSACTION +06:22:07 Slot [385] | NOT FINANCIAL TRANSACTION +06:22:15 Slot [359] | NOT FINANCIAL TRANSACTION +06:22:18 +Slot[371] 0200 301000 6213545001103823 ------------- 00 258068 031723212225 5077232580680342KMXF6213545001103823 507723258068 530706 180893 S +06:22:28 Slot [351] | NOT FINANCIAL TRANSACTION +06:22:36 Slot [367] | NOT FINANCIAL TRANSACTION +06:22:36 +Slot[397] 0200 010000 1808930500010871 ------------- 00 868721 000010000000 507701443434034140011808930500010871 507701443434 108507 668899 S +06:22:44 Slot [344] | NOT FINANCIAL TRANSACTION +06:22:50 Slot [386] | NOT FINANCIAL TRANSACTION +06:22:56 Slot [410] | NOT FINANCIAL TRANSACTION +06:22:57 +Slot[388] 0200 011000 6213545001103823 ------------- 00 258070 000002000000 5077232580700342KMXF6213545001103823 507723258070 995736 180893 S +06:23:09 Slot [357] | NOT FINANCIAL TRANSACTION +06:23:20 Slot [414] | NOT FINANCIAL TRANSACTION +06:23:31 Slot [408] | NOT FINANCIAL TRANSACTION +06:23:38 +Slot[401] 0200 011000 1808930600034276 ------------- 00 288531 000050000000 507704429722030041001808930600034276 507704429722 118607 621354 S +06:23:46 Slot [413] | NOT FINANCIAL TRANSACTION +06:23:52 Slot [393] | NOT FINANCIAL TRANSACTION +06:23:58 Slot [403] | NOT FINANCIAL TRANSACTION +06:24:08 Slot [398] | NOT FINANCIAL TRANSACTION +06:24:18 Slot [420] | NOT FINANCIAL TRANSACTION +06:24:28 Slot [391] | NOT FINANCIAL TRANSACTION +06:24:39 Slot [418] | NOT FINANCIAL TRANSACTION +06:24:49 Slot [392] | NOT FINANCIAL TRANSACTION +06:24:54 Slot [425] | NOT FINANCIAL TRANSACTION +06:24:54 +Slot[416] 0200 010000 6213548000408516 ------------- 51 868753 000010000000 507700588505030060016213548000408516 507700588505 426219 668899 S +06:24:59 +Slot[356] 0200 010000 1808930500010871 ------------- 00 868752 000070000000 507701443436034140011808930500010871 507701443436 293232 668899 S +06:25:04 Slot [383] | NOT FINANCIAL TRANSACTION +06:25:14 Slot [411] | NOT FINANCIAL TRANSACTION +06:25:18 Slot [415] | NOT FINANCIAL TRANSACTION +06:25:24 +Slot[387] 0200 301000 6213548000408516 ------------- 00 868758 000000000000 507700588506030060016213548000408516 507700588506 724883 668899 S +06:25:25 Slot [396] | NOT FINANCIAL TRANSACTION +06:25:36 Slot [431] | NOT FINANCIAL TRANSACTION +06:25:46 Slot [395] | NOT FINANCIAL TRANSACTION +06:25:56 Slot [423] | NOT FINANCIAL TRANSACTION +06:25:57 Slot [402] | NOT FINANCIAL TRANSACTION +06:26:07 Slot [400] | NOT FINANCIAL TRANSACTION +06:26:17 Slot [429] | NOT FINANCIAL TRANSACTION +06:26:29 +Slot[381] 0200 011000 1808930600023014 ------------- 00 288658 000050000000 507704375450030036001808930600023014 507704375450 770001 621354 S +06:26:33 Slot [375] | NOT FINANCIAL TRANSACTION +06:26:48 Slot [417] | NOT FINANCIAL TRANSACTION +06:26:58 Slot [438] | NOT FINANCIAL TRANSACTION +06:26:58 Slot [428] | NOT FINANCIAL TRANSACTION +06:27:09 Slot [406] | NOT FINANCIAL TRANSACTION +06:27:19 Slot [399] | NOT FINANCIAL TRANSACTION +06:27:29 Slot [437] | NOT FINANCIAL TRANSACTION +06:27:35 Slot [419] | NOT FINANCIAL TRANSACTION +06:27:39 Slot [404] | NOT FINANCIAL TRANSACTION +06:27:49 Slot [427] | NOT FINANCIAL TRANSACTION +06:27:59 Slot [445] | NOT FINANCIAL TRANSACTION +06:28:00 Slot [422] | NOT FINANCIAL TRANSACTION +06:28:14 Slot [394] | NOT FINANCIAL TRANSACTION +06:28:25 Slot [440] | NOT FINANCIAL TRANSACTION +06:28:35 Slot [452] | NOT FINANCIAL TRANSACTION +06:28:51 Slot [448] | NOT FINANCIAL TRANSACTION +06:29:02 Slot [389] | NOT FINANCIAL TRANSACTION +06:29:06 Slot [368] | NOT FINANCIAL TRANSACTION +06:29:21 Slot [443] | NOT FINANCIAL TRANSACTION +06:29:34 Slot [442] | NOT FINANCIAL TRANSACTION +06:29:48 Slot [465] | NOT FINANCIAL TRANSACTION +06:29:59 Slot [435] | NOT FINANCIAL TRANSACTION +06:30:04 Slot [439] | NOT FINANCIAL TRANSACTION +06:30:09 Slot [390] | NOT FINANCIAL TRANSACTION +06:30:17 Slot [376] | NOT FINANCIAL TRANSACTION +06:30:19 Slot [433] | NOT FINANCIAL TRANSACTION +06:30:29 Slot [424] | NOT FINANCIAL TRANSACTION +06:30:40 Slot [447] | NOT FINANCIAL TRANSACTION +06:30:50 Slot [430] | NOT FINANCIAL TRANSACTION +06:31:00 Slot [460] | NOT FINANCIAL TRANSACTION +06:31:06 Slot [421] | NOT FINANCIAL TRANSACTION +06:31:16 Slot [478] | NOT FINANCIAL TRANSACTION +06:31:27 +Slot[432] 0200 302000 2206990000092247 ------------- 00 258077 031723302925 5077232580770371ATPX2206990000092247 507723258077 705232 180893 S +06:31:37 Slot [450] | NOT FINANCIAL TRANSACTION +06:31:53 Slot [467] | NOT FINANCIAL TRANSACTION +06:32:04 Slot [441] | NOT FINANCIAL TRANSACTION +06:32:08 Slot [456] | NOT FINANCIAL TRANSACTION +06:32:08 +Slot[463] 0200 012000 2206990000092247 ------------- 00 258079 000060000000 5077232580790371ATPX2206990000092247 507723258079 696142 180893 S +06:32:19 Slot [405] | NOT FINANCIAL TRANSACTION +06:32:30 Slot [462] | NOT FINANCIAL TRANSACTION +06:32:35 Slot [434] | NOT FINANCIAL TRANSACTION +06:32:41 Slot [455] | NOT FINANCIAL TRANSACTION +06:32:51 Slot [426] | NOT FINANCIAL TRANSACTION +06:33:01 Slot [485] | NOT FINANCIAL TRANSACTION +06:33:02 Slot [412] | NOT FINANCIAL TRANSACTION +06:33:10 Slot [407] | NOT FINANCIAL TRANSACTION +06:33:16 Slot [449] | NOT FINANCIAL TRANSACTION +06:33:27 Slot [481] | NOT FINANCIAL TRANSACTION +06:33:37 Slot [461] | NOT FINANCIAL TRANSACTION +06:33:48 +Slot[475] 0200 302000 6213544000283579 ------------- 00 868863 000000000000 507702222720030080056213544000283579 507702222720 914469 668899 S +06:33:53 Slot [469] | NOT FINANCIAL TRANSACTION +06:34:08 Slot [468] | NOT FINANCIAL TRANSACTION +06:34:12 Slot [409] | NOT FINANCIAL TRANSACTION +06:34:19 Slot [453] | NOT FINANCIAL TRANSACTION +06:34:29 Slot [457] | NOT FINANCIAL TRANSACTION +06:34:39 +Slot[474] 0200 010000 6213544000283579 ------------- 00 868876 000050000000 507702222721030080056213544000283579 507702222721 004280 668899 S +06:34:44 Slot [487] | NOT FINANCIAL TRANSACTION +06:34:54 Slot [482] | NOT FINANCIAL TRANSACTION +06:35:05 Slot [472] | NOT FINANCIAL TRANSACTION +06:35:14 Slot [483] | NOT FINANCIAL TRANSACTION +06:35:17 Slot [444] | NOT FINANCIAL TRANSACTION +06:35:20 Slot [479] | NOT FINANCIAL TRANSACTION +06:35:30 Slot [489] | NOT FINANCIAL TRANSACTION +06:35:45 Slot [471] | NOT FINANCIAL TRANSACTION +06:35:56 Slot [451] | NOT FINANCIAL TRANSACTION +06:36:07 Slot [490] | NOT FINANCIAL TRANSACTION +06:36:16 Slot [446] | NOT FINANCIAL TRANSACTION +06:36:17 Slot [459] | NOT FINANCIAL TRANSACTION +06:36:27 Slot [498] | NOT FINANCIAL TRANSACTION +06:36:38 Slot [476] | NOT FINANCIAL TRANSACTION +06:36:48 Slot [436] | NOT FINANCIAL TRANSACTION +06:36:58 Slot [486] | NOT FINANCIAL TRANSACTION +06:37:08 Slot [491] | NOT FINANCIAL TRANSACTION +06:37:18 Slot [497] | NOT FINANCIAL TRANSACTION +06:37:18 Slot [473] | NOT FINANCIAL TRANSACTION +06:37:30 Slot [499] | NOT FINANCIAL TRANSACTION +06:37:35 Slot [7] | NOT FINANCIAL TRANSACTION +06:37:42 Slot [2] | NOT FINANCIAL TRANSACTION +06:37:44 Slot [470] | NOT FINANCIAL TRANSACTION +06:37:55 Slot [480] | NOT FINANCIAL TRANSACTION +06:38:10 Slot [477] | NOT FINANCIAL TRANSACTION +06:38:20 Slot [495] | NOT FINANCIAL TRANSACTION +06:38:20 Slot [464] | NOT FINANCIAL TRANSACTION +06:38:31 Slot [492] | NOT FINANCIAL TRANSACTION +06:38:42 Slot [14] | NOT FINANCIAL TRANSACTION +06:38:52 Slot [18] | NOT FINANCIAL TRANSACTION +06:39:03 Slot [24] | NOT FINANCIAL TRANSACTION +06:39:17 Slot [454] | NOT FINANCIAL TRANSACTION +06:39:22 Slot [484] | NOT FINANCIAL TRANSACTION +06:39:28 Slot [466] | NOT FINANCIAL TRANSACTION +06:39:39 Slot [22] | NOT FINANCIAL TRANSACTION +06:39:49 Slot [3] | NOT FINANCIAL TRANSACTION +06:39:59 Slot [493] | NOT FINANCIAL TRANSACTION +06:40:14 Slot [12] | NOT FINANCIAL TRANSACTION +06:40:17 Slot [488] | NOT FINANCIAL TRANSACTION +06:40:24 Slot [458] | NOT FINANCIAL TRANSACTION +06:40:26 Slot [0] | NOT FINANCIAL TRANSACTION +06:40:42 Slot [31] | NOT FINANCIAL TRANSACTION +06:40:52 Slot [4] | NOT FINANCIAL TRANSACTION +06:41:02 Slot [16] | NOT FINANCIAL TRANSACTION +06:41:18 Slot [1] | NOT FINANCIAL TRANSACTION +06:41:26 Slot [5] | NOT FINANCIAL TRANSACTION +06:41:30 Slot [8] | NOT FINANCIAL TRANSACTION +06:41:40 Slot [21] | NOT FINANCIAL TRANSACTION +06:41:50 Slot [496] | NOT FINANCIAL TRANSACTION +06:42:01 Slot [15] | NOT FINANCIAL TRANSACTION +06:42:12 Slot [19] | NOT FINANCIAL TRANSACTION +06:42:22 Slot [23] | NOT FINANCIAL TRANSACTION +06:42:28 Slot [26] | NOT FINANCIAL TRANSACTION +06:42:32 Slot [10] | NOT FINANCIAL TRANSACTION +06:42:35 Slot [9] | NOT FINANCIAL TRANSACTION +06:42:43 +Slot[6] 0200 010000 1808930600026058 ------------- 00 289639 000030000000 507704429744030041001808930600026058 507704429744 560508 621354 S +06:42:48 Slot [27] | NOT FINANCIAL TRANSACTION +06:42:59 Slot [25] | NOT FINANCIAL TRANSACTION +06:43:09 +Slot[30] 0200 302000 6213545000683395 ------------- 00 869051 000000000000 507701955361030200186213545000683395 507701955361 323245 668899 S +06:43:15 Slot [11] | NOT FINANCIAL TRANSACTION +06:43:26 Slot [46] | NOT FINANCIAL TRANSACTION +06:43:30 Slot [29] | NOT FINANCIAL TRANSACTION +06:43:40 Slot [494] | NOT FINANCIAL TRANSACTION +06:43:47 Slot [20] | NOT FINANCIAL TRANSACTION +06:43:50 Slot [34] | NOT FINANCIAL TRANSACTION +06:43:58 +Slot[28] 0200 301000 1808930900012550 ------------- 00 289734 000000000000 507702438157050027001808930900012550 507702438157 721408 621354 S +06:44:02 +Slot[38] 0200 010000 6213545000683395 ------------- 00 869070 000100000000 507701955362030200186213545000683395 507701955362 224267 668899 S +06:44:07 Slot [42] | NOT FINANCIAL TRANSACTION +06:44:18 Slot [56] | NOT FINANCIAL TRANSACTION +06:44:29 Slot [13] | NOT FINANCIAL TRANSACTION +06:44:32 Slot [39] | NOT FINANCIAL TRANSACTION +06:44:39 Slot [36] | NOT FINANCIAL TRANSACTION +06:44:54 Slot [52] | NOT FINANCIAL TRANSACTION +06:45:10 Slot [32] | NOT FINANCIAL TRANSACTION +06:45:17 Slot [41] | NOT FINANCIAL TRANSACTION +06:45:20 Slot [44] | NOT FINANCIAL TRANSACTION +06:45:31 Slot [47] | NOT FINANCIAL TRANSACTION +06:45:34 Slot [40] | NOT FINANCIAL TRANSACTION +06:45:42 Slot [57] | NOT FINANCIAL TRANSACTION +06:45:53 Slot [54] | NOT FINANCIAL TRANSACTION +06:46:03 Slot [61] | NOT FINANCIAL TRANSACTION +06:46:13 Slot [37] | NOT FINANCIAL TRANSACTION +06:46:23 Slot [59] | NOT FINANCIAL TRANSACTION +06:46:34 Slot [58] | NOT FINANCIAL TRANSACTION +06:46:36 Slot [51] | NOT FINANCIAL TRANSACTION +06:46:50 Slot [55] | NOT FINANCIAL TRANSACTION +06:47:06 Slot [72] | NOT FINANCIAL TRANSACTION +06:47:16 Slot [17] | NOT FINANCIAL TRANSACTION +06:47:27 Slot [60] | NOT FINANCIAL TRANSACTION +06:47:35 Slot [48] | NOT FINANCIAL TRANSACTION +06:47:38 Slot [63] | NOT FINANCIAL TRANSACTION +06:47:38 Slot [35] | NOT FINANCIAL TRANSACTION +06:47:48 Slot [71] | NOT FINANCIAL TRANSACTION +06:47:58 Slot [67] | NOT FINANCIAL TRANSACTION +06:48:01 +Slot[53] 0200 010000 6213545000161657 ------------- 61 258103 000150000000 5077232581030121SKBR6213545000161657 507723258103 027251 180893 S +06:48:13 Slot [79] | NOT FINANCIAL TRANSACTION +06:48:28 Slot [49] | NOT FINANCIAL TRANSACTION +06:48:39 Slot [85] | NOT FINANCIAL TRANSACTION +06:48:40 Slot [80] | NOT FINANCIAL TRANSACTION +06:48:49 Slot [83] | NOT FINANCIAL TRANSACTION +06:48:53 +Slot[75] 0200 010000 6213545000161657 ------------- 00 258106 000100000000 5077232581060121SKBR6213545000161657 507723258106 406453 180893 S +06:49:06 Slot [78] | NOT FINANCIAL TRANSACTION +06:49:21 Slot [45] | NOT FINANCIAL TRANSACTION +06:49:34 Slot [68] | NOT FINANCIAL TRANSACTION +06:49:35 +Slot[43] 0200 010000 6688990602682401 ------------- 00 290199 000100000000 507704152953200010006688990602682401 507704152953 897685 621354 S +06:49:42 Slot [73] | NOT FINANCIAL TRANSACTION +06:49:49 Slot [89] | NOT FINANCIAL TRANSACTION +06:49:56 +Slot[91] 0200 010000 6213545000161657 ------------- 00 258110 000050000000 5077232581100121SKBR6213545000161657 507723258110 154707 180893 S +06:50:07 Slot [77] | NOT FINANCIAL TRANSACTION +06:50:16 +Slot[76] 0200 010000 6213545000925333 ------------- 00 258113 000100000000 5077232581130368KMMX6213545000925333 507723258113 367759 180893 S +06:50:17 Slot [88] | NOT FINANCIAL TRANSACTION +06:50:26 +Slot[94] 0200 301000 6688990103503205 ------------- 00 290285 000000000000 507703498911060022006688990103503205 507703498911 014119 621354 S +06:50:27 Slot [86] | NOT FINANCIAL TRANSACTION +06:50:36 +Slot[65] 0200 010000 6688990602682401 ------------- 00 290298 000100000000 507704152955200010006688990602682401 507704152955 164099 621354 S +06:50:43 Slot [66] | NOT FINANCIAL TRANSACTION +06:50:44 Slot [93] | NOT FINANCIAL TRANSACTION +06:50:53 Slot [103] | NOT FINANCIAL TRANSACTION +06:50:57 +Slot[33] 0200 010000 6213545000925333 ------------- 00 258117 000100000000 5077232581170368KMMX6213545000925333 507723258117 111471 180893 S +06:51:09 Slot [101] | NOT FINANCIAL TRANSACTION +06:51:20 Slot [95] | NOT FINANCIAL TRANSACTION +06:51:30 Slot [74] | NOT FINANCIAL TRANSACTION +06:51:31 +Slot[105] 0200 010000 6688990602682401 ------------- 00 290382 000100000000 507704152957200010006688990602682401 507704152957 935206 621354 S +06:51:40 Slot [70] | NOT FINANCIAL TRANSACTION +06:51:46 Slot [50] | NOT FINANCIAL TRANSACTION +06:51:51 Slot [92] | NOT FINANCIAL TRANSACTION +06:52:01 Slot [81] | NOT FINANCIAL TRANSACTION +06:52:03 +Slot[102] 0200 011000 6688990103503205 ------------- 00 290415 000020000000 507703498913060022006688990103503205 507703498913 969044 621354 S +06:52:08 +Slot[107] 0200 012000 6213545000925333 ------------- 00 258122 000018000000 5077232581220368KMMX6213545000925333 507723258122 999981 180893 S +06:52:17 Slot [100] | NOT FINANCIAL TRANSACTION +06:52:28 Slot [114] | NOT FINANCIAL TRANSACTION +06:52:35 Slot [108] | NOT FINANCIAL TRANSACTION +06:52:39 Slot [82] | NOT FINANCIAL TRANSACTION +06:52:43 +Slot[104] 0200 010000 6688990602682401 ------------- 00 290465 000030000000 507704152959200010006688990602682401 507704152959 596085 621354 S +06:52:48 Slot [122] | NOT FINANCIAL TRANSACTION +06:52:54 Slot [87] | NOT FINANCIAL TRANSACTION +06:53:09 Slot [69] | NOT FINANCIAL TRANSACTION +06:53:20 Slot [119] | NOT FINANCIAL TRANSACTION +06:53:30 Slot [117] | NOT FINANCIAL TRANSACTION +06:53:39 +Slot[115] 0200 301000 6688990103503205 ------------- 00 290531 000000000000 507703498914060022006688990103503205 507703498914 861961 621354 S +06:53:40 Slot [110] | NOT FINANCIAL TRANSACTION +06:53:46 +Slot[126] 0200 311000 6213545000174643 ------------- 00 258823 000000000000 507700040324010004006213545000174643 507700040324 022338 220699 S +06:53:50 Slot [96] | NOT FINANCIAL TRANSACTION +06:53:56 Slot [62] | NOT FINANCIAL TRANSACTION +06:54:11 Slot [64] | NOT FINANCIAL TRANSACTION +06:54:22 Slot [136] | NOT FINANCIAL TRANSACTION +06:54:24 Slot [124] | NOT FINANCIAL TRANSACTION +06:54:33 Slot [97] | NOT FINANCIAL TRANSACTION +06:54:33 Slot [84] | NOT FINANCIAL TRANSACTION +06:54:44 Slot [98] | NOT FINANCIAL TRANSACTION +06:54:52 Slot [113] | NOT FINANCIAL TRANSACTION +06:54:54 Slot [90] | NOT FINANCIAL TRANSACTION +06:55:10 Slot [121] | NOT FINANCIAL TRANSACTION +06:55:17 Slot [112] | NOT FINANCIAL TRANSACTION +06:55:21 Slot [99] | NOT FINANCIAL TRANSACTION +06:55:31 Slot [144] | NOT FINANCIAL TRANSACTION +06:55:47 Slot [159] | NOT FINANCIAL TRANSACTION +06:55:54 Slot [134] | NOT FINANCIAL TRANSACTION +06:55:58 Slot [148] | NOT FINANCIAL TRANSACTION +06:56:09 Slot [142] | NOT FINANCIAL TRANSACTION +06:56:24 Slot [111] | NOT FINANCIAL TRANSACTION +06:56:30 +Slot[149] 0200 311000 6213544000388006 ------------- 00 258832 000000000000 507700040330010004006213544000388006 507700040330 541491 220699 S +06:56:40 Slot [128] | NOT FINANCIAL TRANSACTION +06:56:51 Slot [140] | NOT FINANCIAL TRANSACTION +06:56:56 Slot [155] | NOT FINANCIAL TRANSACTION +06:57:01 Slot [146] | NOT FINANCIAL TRANSACTION +06:57:11 Slot [139] | NOT FINANCIAL TRANSACTION +06:57:17 +Slot[131] 0200 011000 6688990103503304 ------------- 00 290779 000100000000 507703498916060022006688990103503304 507703498916 533458 621354 S +06:57:21 Slot [127] | NOT FINANCIAL TRANSACTION +06:57:32 Slot [109] | NOT FINANCIAL TRANSACTION +06:57:35 Slot [151] | NOT FINANCIAL TRANSACTION +06:57:43 Slot [150] | NOT FINANCIAL TRANSACTION +06:57:53 +Slot[154] 0200 301000 1808930600001259 ------------- 00 290811 000000000000 507704429764030041001808930600001259 507704429764 480515 621354 S +06:57:58 Slot [118] | NOT FINANCIAL TRANSACTION +06:58:04 Slot [123] | NOT FINANCIAL TRANSACTION +06:58:15 Slot [138] | NOT FINANCIAL TRANSACTION +06:58:24 +Slot[157] 0200 010000 6688990602679001 ------------- 64 258130 000200000000 5077232581300369SLVL6688990602679001 507723258130 367939 180893 S +06:58:37 Slot [135] | NOT FINANCIAL TRANSACTION +06:58:52 Slot [132] | NOT FINANCIAL TRANSACTION +06:58:52 +Slot[120] 0200 011000 6688990600290504 ------------- 00 290883 000100000000 507703127746040022006688990600290504 507703127746 553819 621354 S +06:58:53 +Slot[171] 0200 010000 6688990060018064 ------------- 00 290882 000010000000 507704152961200010006688990060018064 507704152961 320137 621354 S +06:59:00 Slot [152] | NOT FINANCIAL TRANSACTION +06:59:15 +Slot[116] 0200 011000 1808930600001259 ------------- 00 290906 000100000000 507704429766030041001808930600001259 507704429766 966047 621354 S +06:59:18 Slot [167] | NOT FINANCIAL TRANSACTION +06:59:27 +Slot[156] 0200 301000 6688990600090102 ------------- 00 290926 000000000000 507702705254140009006688990600090102 507702705254 682324 621354 S +06:59:28 Slot [129] | NOT FINANCIAL TRANSACTION +06:59:38 Slot [130] | NOT FINANCIAL TRANSACTION +06:59:49 Slot [175] | NOT FINANCIAL TRANSACTION +07:00:02 Slot [141] | NOT FINANCIAL TRANSACTION +07:00:05 Slot [168] | NOT FINANCIAL TRANSACTION +07:00:13 +Slot[166] 0200 011000 6688990600090102 ------------- 00 290974 000050000000 507702705256140009006688990600090102 507702705256 105518 621354 S +07:00:17 Slot [172] | NOT FINANCIAL TRANSACTION +07:00:24 +Slot[169] 0200 011000 1808930600001259 ------------- 00 290986 000100000000 507704429768030041001808930600001259 507704429768 854710 621354 S +07:00:31 Slot [160] | NOT FINANCIAL TRANSACTION +07:00:46 Slot [174] | NOT FINANCIAL TRANSACTION +07:01:02 Slot [164] | NOT FINANCIAL TRANSACTION +07:01:04 Slot [147] | NOT FINANCIAL TRANSACTION +07:01:13 Slot [133] | NOT FINANCIAL TRANSACTION +07:01:25 +Slot[153] 0200 011000 1808930600001259 ------------- 00 291069 000100000000 507704429770030041001808930600001259 507704429770 531766 621354 S +07:01:29 Slot [178] | NOT FINANCIAL TRANSACTION +07:01:45 Slot [183] | NOT FINANCIAL TRANSACTION +07:01:52 +Slot[125] 0200 301000 6688990103284103 ------------- 00 291096 000000000000 507703498917060022006688990103284103 507703498917 606721 621354 S +07:01:53 +Slot[195] 0200 310000 6213541000223803 ------------- 00 174875 000000000000 507700104131010010006213541000223803 507700104131 229388 220699 S +07:01:56 Slot [191] | NOT FINANCIAL TRANSACTION +07:02:06 Slot [170] | NOT FINANCIAL TRANSACTION +07:02:07 Slot [143] | NOT FINANCIAL TRANSACTION +07:02:18 Slot [161] | NOT FINANCIAL TRANSACTION +07:02:28 Slot [181] | NOT FINANCIAL TRANSACTION +07:02:35 Slot [189] | NOT FINANCIAL TRANSACTION +07:02:38 Slot [204] | NOT FINANCIAL TRANSACTION +07:02:43 +Slot[158] 0200 011000 6688990103284103 ------------- 00 291178 000100000000 507703498919060022006688990103284103 507703498919 099111 621354 S +07:02:49 Slot [202] | NOT FINANCIAL TRANSACTION +07:03:00 Slot [182] | NOT FINANCIAL TRANSACTION +07:03:02 +Slot[197] 0200 300000 2206990000137018 ------------- 62 291202 000000000000 507703947625010110002206990000137018 507703947625 978143 621354 S +07:03:08 Slot [193] | NOT FINANCIAL TRANSACTION +07:03:11 Slot [200] | NOT FINANCIAL TRANSACTION +07:03:21 Slot [177] | NOT FINANCIAL TRANSACTION +07:03:32 Slot [210] | NOT FINANCIAL TRANSACTION +07:03:43 Slot [198] | NOT FINANCIAL TRANSACTION +07:03:53 Slot [213] | NOT FINANCIAL TRANSACTION +07:03:58 +Slot[106] 0200 011000 6688990103284103 ------------- 00 291330 000100000000 507703498921060022006688990103284103 507703498921 435391 621354 S +07:04:04 Slot [163] | NOT FINANCIAL TRANSACTION +07:04:10 Slot [165] | NOT FINANCIAL TRANSACTION +07:04:15 Slot [187] | NOT FINANCIAL TRANSACTION +07:04:26 Slot [206] | NOT FINANCIAL TRANSACTION +07:04:41 Slot [211] | NOT FINANCIAL TRANSACTION +07:04:51 Slot [162] | NOT FINANCIAL TRANSACTION +07:05:02 Slot [145] | NOT FINANCIAL TRANSACTION +07:05:04 +Slot[196] 0200 011000 6688990103284103 ------------- 00 291433 000070000000 507703498923060022006688990103284103 507703498923 361088 621354 S +07:05:12 Slot [221] | NOT FINANCIAL TRANSACTION +07:05:17 Slot [205] | NOT FINANCIAL TRANSACTION +07:05:18 Slot [217] | NOT FINANCIAL TRANSACTION +07:05:19 Slot [180] | NOT FINANCIAL TRANSACTION +07:05:29 Slot [214] | NOT FINANCIAL TRANSACTION +07:05:40 Slot [194] | NOT FINANCIAL TRANSACTION +07:05:51 Slot [222] | NOT FINANCIAL TRANSACTION +07:06:02 Slot [226] | NOT FINANCIAL TRANSACTION +07:06:12 Slot [190] | NOT FINANCIAL TRANSACTION +07:06:14 Slot [176] | NOT FINANCIAL TRANSACTION +07:06:19 +Slot[184] 0200 011000 2206990000134569 ------------- 00 291530 000100000000 507703758843010091002206990000134569 507703758843 089833 621354 S +07:06:23 Slot [225] | NOT FINANCIAL TRANSACTION +07:06:25 +Slot[137] 0200 011000 6688990103506109 ------------- 00 291538 000100000000 507703498925060022006688990103506109 507703498925 648670 621354 S +07:06:34 Slot [218] | NOT FINANCIAL TRANSACTION +07:06:44 Slot [224] | NOT FINANCIAL TRANSACTION +07:07:00 Slot [173] | NOT FINANCIAL TRANSACTION +07:07:15 Slot [207] | NOT FINANCIAL TRANSACTION +07:07:16 Slot [223] | NOT FINANCIAL TRANSACTION +07:07:25 +Slot[208] 0200 012000 6213545000264261 ------------- 05 258139 000025000000 5077002581390324BKDT6213545000264261 507700258139 712265 180893 S +07:07:28 +Slot[215] 0200 011000 6688990103506109 ------------- 00 291599 000050000000 507703498927060022006688990103506109 507703498927 955151 621354 S +07:07:33 +Slot[192] 0200 011000 2206990000134569 ------------- 00 291603 000100000000 507703758845010091002206990000134569 507703758845 234002 621354 S +07:07:34 +Slot[231] 0200 010000 6213544001669594 ------------- 00 258141 000050000000 5077002581410482XKMO6213544001669594 507700258141 184466 180893 S +07:07:35 Slot [188] | NOT FINANCIAL TRANSACTION +07:07:45 Slot [199] | NOT FINANCIAL TRANSACTION +07:07:56 Slot [220] | NOT FINANCIAL TRANSACTION +07:08:11 Slot [185] | NOT FINANCIAL TRANSACTION +07:08:18 Slot [179] | NOT FINANCIAL TRANSACTION +07:08:21 Slot [186] | NOT FINANCIAL TRANSACTION +07:08:33 +Slot[229] 0200 302000 6213545000264261 ------------- 00 258143 031800073525 5077002581430324BKDT6213545000264261 507700258143 552754 180893 S +07:08:43 Slot [227] | NOT FINANCIAL TRANSACTION +07:08:54 Slot [212] | NOT FINANCIAL TRANSACTION +07:09:04 +Slot[219] 0200 011000 2206990000134569 ------------- 51 291731 000100000000 507703758847010091002206990000134569 507703758847 178005 621354 S +07:09:05 +Slot[230] 0200 010000 6213541000612013 ------------- 51 869446 000050000000 507702355093030180056213541000612013 507702355093 047036 668899 S +07:09:09 Slot [236] | NOT FINANCIAL TRANSACTION +07:09:19 Slot [216] | NOT FINANCIAL TRANSACTION +07:09:20 Slot [239] | NOT FINANCIAL TRANSACTION +07:09:30 Slot [232] | NOT FINANCIAL TRANSACTION +07:09:45 Slot [235] | NOT FINANCIAL TRANSACTION +07:09:49 +Slot[209] 0200 011000 2206990000134569 ------------- 00 291805 000050000000 507703758849010091002206990000134569 507703758849 331560 621354 S +07:09:52 +Slot[234] 0200 012000 6213545000264261 ------------- 00 258146 000025000000 5077002581460324BKDT6213545000264261 507700258146 651109 180893 S +07:09:53 +Slot[250] 0200 010000 6213541000612013 ------------- 51 869460 000030000000 507702355094030180056213541000612013 507702355094 309231 668899 S +07:10:01 Slot [242] | NOT FINANCIAL TRANSACTION +07:10:01 +Slot[238] 0200 010000 6688990107686006 ------------- 00 291820 000004000000 507704226013050046006688990107686006 507704226013 785953 621354 S +07:10:15 +Slot[252] 0200 010000 1808930600007553 ------------- 00 291843 000100000000 507704429778030041001808930600007553 507704429778 632160 621354 S +07:10:17 Slot [201] | NOT FINANCIAL TRANSACTION +07:10:21 Slot [228] | NOT FINANCIAL TRANSACTION +07:10:22 Slot [245] | NOT FINANCIAL TRANSACTION +07:10:32 Slot [248] | NOT FINANCIAL TRANSACTION +07:10:32 +Slot[240] 0200 010000 6213541000612013 ------------- 51 869467 000030000000 507702355095030180056213541000612013 507702355095 654604 668899 S +07:10:47 Slot [203] | NOT FINANCIAL TRANSACTION +07:10:57 Slot [258] | NOT FINANCIAL TRANSACTION +07:10:59 +Slot[244] 0200 012000 6688990103526107 ------------- 00 291953 000100000000 507703498934060022006688990103526107 507703498934 501969 621354 S +07:11:06 Slot [247] | NOT FINANCIAL TRANSACTION +07:11:07 +Slot[253] 0200 301000 6688990600867509 ------------- 00 258152 031800100925 5077002581520381CPSP6688990600867509 507700258152 200125 180893 S +07:11:08 +Slot[243] 0200 010000 6688990602678904 ------------- 00 291975 000050000000 507704152963200010006688990602678904 507704152963 895848 621354 S +07:11:19 Slot [246] | NOT FINANCIAL TRANSACTION +07:11:24 Slot [256] | NOT FINANCIAL TRANSACTION +07:11:29 Slot [241] | NOT FINANCIAL TRANSACTION +07:11:43 +Slot[260] 0200 011000 6688990600867509 ------------- 00 258155 000006000000 5077002581550381CPSP6688990600867509 507700258155 332237 180893 S +07:11:55 Slot [249] | NOT FINANCIAL TRANSACTION +07:12:10 +Slot[265] 0200 301000 1808930600047294 ------------- 00 292084 000000000000 507704429779030041001808930600047294 507704429779 686769 621354 S +07:12:15 Slot [273] | NOT FINANCIAL TRANSACTION +07:12:26 Slot [251] | NOT FINANCIAL TRANSACTION +07:12:30 Slot [269] | NOT FINANCIAL TRANSACTION +07:12:35 Slot [254] | NOT FINANCIAL TRANSACTION +07:12:40 Slot [264] | NOT FINANCIAL TRANSACTION +07:12:42 +Slot[268] 0200 010000 6688990103526107 ------------- 00 292162 000100000000 507703498936060022006688990103526107 507703498936 450962 621354 S +07:12:50 Slot [276] | NOT FINANCIAL TRANSACTION +07:13:00 Slot [266] | NOT FINANCIAL TRANSACTION +07:13:07 +Slot[279] 0200 010000 6688990030009573 ------------- 00 258162 000100000000 5077002581620141HQBR6688990030009573 507700258162 527115 180893 S +07:13:20 Slot [233] | NOT FINANCIAL TRANSACTION +07:13:28 Slot [261] | NOT FINANCIAL TRANSACTION +07:13:30 Slot [262] | NOT FINANCIAL TRANSACTION +07:13:41 Slot [257] | NOT FINANCIAL TRANSACTION +07:13:48 +Slot[274] 0200 010000 6688990030009573 ------------- 00 258166 000100000000 5077002581660141HQBR6688990030009573 507700258166 255367 180893 S +07:14:03 +Slot[284] 0200 011000 1808930600047294 ------------- 00 292305 000030000000 507704429781030041001808930600047294 507704429781 363089 621354 S +07:14:06 Slot [263] | NOT FINANCIAL TRANSACTION +07:14:21 Slot [270] | NOT FINANCIAL TRANSACTION +07:14:25 +Slot[267] 0200 010000 6688990030009573 ------------- 00 258171 000100000000 5077002581710141HQBR6688990030009573 507700258171 461774 180893 S +07:14:30 Slot [299] | NOT FINANCIAL TRANSACTION +07:14:37 Slot [280] | NOT FINANCIAL TRANSACTION +07:14:47 Slot [278] | NOT FINANCIAL TRANSACTION +07:15:02 +Slot[289] 0200 010000 6688990030009573 ------------- 00 258175 000100000000 5077002581750141HQBR6688990030009573 507700258175 684078 180893 S +07:15:13 Slot [277] | NOT FINANCIAL TRANSACTION +07:15:18 Slot [285] | NOT FINANCIAL TRANSACTION +07:15:23 Slot [293] | NOT FINANCIAL TRANSACTION +07:15:23 +Slot[287] 0200 011000 6213545000101497 ------------- 00 160055 000020000000 507707160055000022016213545000101497 507707160055 458785 198901 S +07:15:32 Slot [304] | NOT FINANCIAL TRANSACTION +07:15:39 +Slot[281] 0200 010000 6688990030009573 ------------- 00 258178 000100000000 5077002581780141HQBR6688990030009573 507700258178 483190 180893 S +07:15:48 Slot [296] | NOT FINANCIAL TRANSACTION +07:15:56 +Slot[275] 0200 011000 6213545000101497 ------------- 00 160066 000010000000 507707160066000022016213545000101497 507707160066 116912 198901 S +07:15:59 Slot [309] | NOT FINANCIAL TRANSACTION +07:16:05 Slot [291] | NOT FINANCIAL TRANSACTION +07:16:14 Slot [286] | NOT FINANCIAL TRANSACTION +07:16:24 Slot [294] | NOT FINANCIAL TRANSACTION +07:16:29 +Slot[259] 0200 301000 6213545000101497 ------------- 00 160075 000000000000 507707160075000022016213545000101497 507707160075 719120 198901 S +07:16:34 Slot [303] | NOT FINANCIAL TRANSACTION +07:16:36 Slot [282] | NOT FINANCIAL TRANSACTION +07:16:50 Slot [271] | NOT FINANCIAL TRANSACTION +07:17:05 Slot [272] | NOT FINANCIAL TRANSACTION +07:17:10 +Slot[298] 0200 300000 6213544001636312 ------------- 00 869615 000000000000 507702209504030060096213544001636312 507702209504 178471 668899 S +07:17:22 Slot [317] | NOT FINANCIAL TRANSACTION +07:17:29 +Slot[288] 0200 012000 6688990040146464 ------------- 00 292700 000100000000 507703194948040029006688990040146464 507703194948 013792 621354 S +07:17:32 Slot [307] | NOT FINANCIAL TRANSACTION +07:17:35 Slot [329] | NOT FINANCIAL TRANSACTION +07:17:36 Slot [237] | NOT FINANCIAL TRANSACTION +07:17:42 Slot [314] | NOT FINANCIAL TRANSACTION +07:17:52 Slot [315] | NOT FINANCIAL TRANSACTION +07:18:02 Slot [313] | NOT FINANCIAL TRANSACTION +07:18:09 +Slot[323] 0200 010000 6213544001636312 ------------- 00 869641 000050000000 507702209505030060096213544001636312 507702209505 174840 668899 S +07:18:13 Slot [336] | NOT FINANCIAL TRANSACTION +07:18:28 Slot [331] | NOT FINANCIAL TRANSACTION +07:18:36 +Slot[324] 0200 010000 6213544001940938 ------------- 00 258184 000100000000 5077002581840301LPBX6213544001940938 507700258184 673276 180893 S +07:18:38 Slot [283] | NOT FINANCIAL TRANSACTION +07:18:48 +Slot[308] 0200 010000 6213544001721791 ------------- 51 869657 000002000000 507700297066030100066213544001721791 507700297066 893514 668899 S +07:18:50 Slot [321] | NOT FINANCIAL TRANSACTION +07:19:03 Slot [319] | NOT FINANCIAL TRANSACTION +07:19:13 Slot [255] | NOT FINANCIAL TRANSACTION +07:19:23 Slot [295] | NOT FINANCIAL TRANSACTION +07:19:35 Slot [318] | NOT FINANCIAL TRANSACTION +07:19:40 Slot [300] | NOT FINANCIAL TRANSACTION +07:19:45 Slot [326] | NOT FINANCIAL TRANSACTION +07:20:00 Slot [312] | NOT FINANCIAL TRANSACTION +07:20:15 +Slot[340] 0200 011000 1808930600020226 ------------- 51 293009 000010000000 507704985825010123001808930600020226 507704985825 297964 621354 S +07:20:18 Slot [302] | NOT FINANCIAL TRANSACTION +07:20:21 Slot [306] | NOT FINANCIAL TRANSACTION +07:20:33 +Slot[355] 0200 011000 1808931100007630 ------------- 00 010339 000010000000 507700220601050002001808931100007630 507700220601 484082 220699 S +07:20:37 Slot [316] | NOT FINANCIAL TRANSACTION +07:20:42 Slot [325] | NOT FINANCIAL TRANSACTION +07:20:47 Slot [311] | NOT FINANCIAL TRANSACTION +07:20:58 Slot [334] | NOT FINANCIAL TRANSACTION +07:21:08 Slot [339] | NOT FINANCIAL TRANSACTION +07:21:17 +Slot[301] 0200 010000 6213544000152766 ------------- 00 869713 000100000000 507700501801030110016213544000152766 507700501801 899511 668899 S +07:21:19 +Slot[310] 0200 011000 1808930600020226 ------------- 00 293114 000005000000 507704985827010123001808930600020226 507704985827 824149 621354 S +07:21:24 Slot [297] | NOT FINANCIAL TRANSACTION +07:21:34 Slot [349] | NOT FINANCIAL TRANSACTION +07:21:44 Slot [350] | NOT FINANCIAL TRANSACTION +07:21:44 Slot [341] | NOT FINANCIAL TRANSACTION +07:21:54 Slot [338] | NOT FINANCIAL TRANSACTION +07:21:58 +Slot[328] 0200 010000 6213545000509079 ------------- 00 177016 000050000000 507700010039010001006213545000509079 507700010039 721358 220699 S +07:22:09 Slot [332] | NOT FINANCIAL TRANSACTION +07:22:25 Slot [352] | NOT FINANCIAL TRANSACTION +07:22:27 +Slot[305] 0200 011000 6688990602629709 ------------- 00 293239 000030000000 507705251478020028006688990602629709 507705251478 484680 621354 S +07:22:35 Slot [364] | NOT FINANCIAL TRANSACTION +07:22:35 Slot [330] | NOT FINANCIAL TRANSACTION +07:22:46 Slot [345] | NOT FINANCIAL TRANSACTION +07:22:46 Slot [343] | NOT FINANCIAL TRANSACTION +07:22:56 Slot [337] | NOT FINANCIAL TRANSACTION +07:23:06 Slot [354] | NOT FINANCIAL TRANSACTION +07:23:16 Slot [320] | NOT FINANCIAL TRANSACTION +07:23:27 Slot [342] | NOT FINANCIAL TRANSACTION +07:23:32 +Slot[335] 0200 302000 1808931700029000 ------------- 42 869772 000000000000 507701281750034060011808931700029000 507701281750 115148 668899 S +07:23:40 Slot [369] | NOT FINANCIAL TRANSACTION +07:23:48 Slot [366] | NOT FINANCIAL TRANSACTION +07:23:51 Slot [290] | NOT FINANCIAL TRANSACTION +07:24:02 Slot [347] | NOT FINANCIAL TRANSACTION +07:24:16 Slot [374] | NOT FINANCIAL TRANSACTION +07:24:27 Slot [327] | NOT FINANCIAL TRANSACTION +07:24:34 +Slot[292] 0200 012000 6688990107352609 ------------- 00 258198 000010000000 5077002581980118UDBR6688990107352609 507700258198 534867 180893 S +07:24:35 +Slot[365] 0200 011000 6213544001853453 ------------- 00 160183 000050000000 507707160183000022066213544001853453 507707160183 078446 198901 S +07:24:40 +Slot[333] 0200 300000 1808931700029000 ------------- 00 869793 000000000000 507701281752034060011808931700029000 507701281752 034289 668899 S +07:24:47 Slot [384] | NOT FINANCIAL TRANSACTION +07:24:50 Slot [358] | NOT FINANCIAL TRANSACTION +07:24:57 Slot [360] | NOT FINANCIAL TRANSACTION +07:25:07 Slot [373] | NOT FINANCIAL TRANSACTION +07:25:17 Slot [353] | NOT FINANCIAL TRANSACTION +07:25:18 Slot [362] | NOT FINANCIAL TRANSACTION +07:25:26 +Slot[372] 0200 010000 6213545000902142 ------------- 00 258202 000010000000 5077002582020111BLBR6213545000902142 507700258202 765601 180893 S +07:25:42 +Slot[380] 0200 010000 1808930700002108 ------------- 00 293587 000010000000 507703967937010112001808930700002108 507703967937 498883 621354 S +07:25:47 +Slot[379] 0200 011000 1808930600009948 ------------- 00 293599 000010000000 507704429789030041001808930600009948 507704429789 073712 621354 S +07:25:52 Slot [382] | NOT FINANCIAL TRANSACTION +07:25:52 Slot [348] | NOT FINANCIAL TRANSACTION +07:26:03 Slot [322] | NOT FINANCIAL TRANSACTION +07:26:08 +Slot[361] 0200 010000 6213545000902142 ------------- 00 258205 000010000000 5077002582050111BLBR6213545000902142 507700258205 302794 180893 S +07:26:19 Slot [346] | NOT FINANCIAL TRANSACTION +07:26:29 Slot [377] | NOT FINANCIAL TRANSACTION +07:26:41 Slot [370] | NOT FINANCIAL TRANSACTION +07:26:51 Slot [378] | NOT FINANCIAL TRANSACTION +07:26:51 Slot [363] | NOT FINANCIAL TRANSACTION +07:26:54 Slot [385] | NOT FINANCIAL TRANSACTION +07:26:58 +Slot[359] 0200 300000 1808931700029000 ------------- 00 869854 000000000000 507701281753034060011808931700029000 507701281753 269990 668899 S +07:27:07 Slot [371] | NOT FINANCIAL TRANSACTION +07:27:22 Slot [351] | NOT FINANCIAL TRANSACTION +07:27:32 Slot [367] | NOT FINANCIAL TRANSACTION +07:27:35 Slot [397] | NOT FINANCIAL TRANSACTION +07:27:42 Slot [344] | NOT FINANCIAL TRANSACTION +07:27:48 Slot [386] | NOT FINANCIAL TRANSACTION +07:27:53 Slot [410] | NOT FINANCIAL TRANSACTION +07:27:56 Slot [388] | NOT FINANCIAL TRANSACTION +07:28:03 Slot [357] | NOT FINANCIAL TRANSACTION +07:28:13 Slot [414] | NOT FINANCIAL TRANSACTION +07:28:24 Slot [408] | NOT FINANCIAL TRANSACTION +07:28:35 Slot [401] | NOT FINANCIAL TRANSACTION +07:28:54 +Slot[413] 0200 010000 1808931700029000 ------------- 00 869910 000030000000 507701281755034060011808931700029000 507701281755 004000 668899 S +07:28:55 Slot [393] | NOT FINANCIAL TRANSACTION +07:28:58 Slot [403] | NOT FINANCIAL TRANSACTION +07:29:09 +Slot[398] 0200 302000 6213543000213594 ------------- 00 258210 031800281225 5077002582100343SVKP6213543000213594 507700258210 116393 180893 S +07:29:20 Slot [420] | NOT FINANCIAL TRANSACTION +07:29:35 Slot [391] | NOT FINANCIAL TRANSACTION +07:29:41 +Slot[418] 0200 010000 6213543000213594 ------------- 00 258212 000100000000 5077002582120343SVKP6213543000213594 507700258212 396299 180893 S +07:29:50 Slot [392] | NOT FINANCIAL TRANSACTION +07:30:00 Slot [425] | NOT FINANCIAL TRANSACTION +07:30:00 Slot [416] | NOT FINANCIAL TRANSACTION +07:30:10 Slot [356] | NOT FINANCIAL TRANSACTION +07:30:18 Slot [411] | NOT FINANCIAL TRANSACTION +07:30:19 +Slot[383] 0200 010000 6213543000213594 ------------- 00 258215 000100000000 5077002582150343SVKP6213543000213594 507700258215 860435 180893 S +07:30:27 +Slot[415] 0200 301000 1808930600000475 ------------- 00 294188 000000000000 507704429793030041001808930600000475 507704429793 788929 621354 S +07:30:32 Slot [387] | NOT FINANCIAL TRANSACTION +07:30:47 Slot [396] | NOT FINANCIAL TRANSACTION +07:31:00 +Slot[431] 0200 010000 6213543000213594 ------------- 00 258219 000100000000 5077002582190343SVKP6213543000213594 507700258219 666965 180893 S +07:31:02 Slot [395] | NOT FINANCIAL TRANSACTION +07:31:12 Slot [423] | NOT FINANCIAL TRANSACTION +07:31:23 Slot [402] | NOT FINANCIAL TRANSACTION +07:31:37 +Slot[400] 0200 010000 6213543000213594 ------------- 00 258222 000100000000 5077002582220343SVKP6213543000213594 507700258222 870290 180893 S +07:31:48 Slot [429] | NOT FINANCIAL TRANSACTION +07:32:04 Slot [375] | NOT FINANCIAL TRANSACTION +07:32:04 Slot [381] | NOT FINANCIAL TRANSACTION +07:32:14 Slot [417] | NOT FINANCIAL TRANSACTION +07:32:24 +Slot[438] 0200 010000 6213543000213594 ------------- 00 258225 000100000000 5077002582250343SVKP6213543000213594 507700258225 291034 180893 S +07:32:35 Slot [428] | NOT FINANCIAL TRANSACTION +07:32:35 Slot [406] | NOT FINANCIAL TRANSACTION +07:32:45 Slot [399] | NOT FINANCIAL TRANSACTION +07:32:56 Slot [437] | NOT FINANCIAL TRANSACTION +07:33:06 Slot [419] | NOT FINANCIAL TRANSACTION +07:33:11 Slot [427] | NOT FINANCIAL TRANSACTION +07:33:14 +Slot[404] 0200 010000 6688990104873508 ------------- 00 258228 000100000000 5077002582280485HPXT6688990104873508 507700258228 512561 180893 S +07:33:28 Slot [445] | NOT FINANCIAL TRANSACTION +07:33:38 +Slot[422] 0200 011000 6213544002005848 ------------- 00 258232 000010000000 5077002582320466PSLB6213544002005848 507700258232 757730 180893 S +07:33:47 Slot [394] | NOT FINANCIAL TRANSACTION +07:33:52 +Slot[440] 0200 301000 6688990601466202 ------------- 00 258234 031800325425 5077002582340369SLVL6688990601466202 507700258234 186283 180893 S +07:33:58 +Slot[452] 0200 010000 6688990104873508 ------------- 00 258236 000100000000 5077002582360485HPXT6688990104873508 507700258236 288516 180893 S +07:34:02 +Slot[448] 0200 010000 2206990000130815 ------------- 00 870049 000010000000 507702133276030200232206990000130815 507702133276 619888 668899 S +07:34:07 Slot [368] | NOT FINANCIAL TRANSACTION +07:34:08 Slot [389] | NOT FINANCIAL TRANSACTION +07:34:18 Slot [443] | NOT FINANCIAL TRANSACTION +07:34:29 Slot [442] | NOT FINANCIAL TRANSACTION +07:34:38 +Slot[465] 0200 010000 6688990601466202 ------------- 64 258240 000200000000 5077002582400369SLVL6688990601466202 507700258240 037033 180893 S +07:34:44 +Slot[435] 0200 010000 6688990104873508 ------------- 00 258241 000100000000 5077002582410485HPXT6688990104873508 507700258241 587183 180893 S +07:34:55 Slot [439] | NOT FINANCIAL TRANSACTION +07:35:05 Slot [376] | NOT FINANCIAL TRANSACTION +07:35:09 +Slot[390] 0200 010000 6213541000423270 ------------- 00 870077 000100000000 507700328956030130036213541000423270 507700328956 364046 668899 S +07:35:10 Slot [433] | NOT FINANCIAL TRANSACTION +07:35:16 Slot [424] | NOT FINANCIAL TRANSACTION +07:35:17 Slot [447] | NOT FINANCIAL TRANSACTION +07:35:26 Slot [430] | NOT FINANCIAL TRANSACTION +07:35:32 +Slot[460] 0200 010000 6688990601466202 ------------- 00 258246 000100000000 5077002582460369SLVL6688990601466202 507700258246 517278 180893 S +07:35:41 Slot [421] | NOT FINANCIAL TRANSACTION +07:35:52 Slot [478] | NOT FINANCIAL TRANSACTION +07:36:02 Slot [450] | NOT FINANCIAL TRANSACTION +07:36:05 +Slot[432] 0200 301000 6688990600422206 ------------- 00 295065 000000000000 507704467061150008006688990600422206 507704467061 060404 621354 S +07:36:12 Slot [467] | NOT FINANCIAL TRANSACTION +07:36:12 Slot [441] | NOT FINANCIAL TRANSACTION +07:36:23 Slot [463] | NOT FINANCIAL TRANSACTION +07:36:26 +Slot[456] 0200 010000 6688990601466202 ------------- 00 258249 000100000000 5077002582490369SLVL6688990601466202 507700258249 143139 180893 S +07:36:38 Slot [405] | NOT FINANCIAL TRANSACTION +07:36:48 Slot [462] | NOT FINANCIAL TRANSACTION +07:36:58 Slot [455] | NOT FINANCIAL TRANSACTION +07:37:01 +Slot[434] 0200 010000 6213545000771794 ------------- 51 870113 000020000000 507700145647030200056213545000771794 507700145647 533924 668899 S +07:37:09 Slot [426] | NOT FINANCIAL TRANSACTION +07:37:14 Slot [412] | NOT FINANCIAL TRANSACTION +07:37:15 +Slot[485] 0200 010000 6688990601466202 ------------- 00 258253 000100000000 5077002582530369SLVL6688990601466202 507700258253 301210 180893 S +07:37:29 Slot [407] | NOT FINANCIAL TRANSACTION +07:37:35 Slot [449] | NOT FINANCIAL TRANSACTION +07:37:37 Slot [481] | NOT FINANCIAL TRANSACTION +07:37:39 Slot [461] | NOT FINANCIAL TRANSACTION +07:37:50 Slot [475] | NOT FINANCIAL TRANSACTION +07:38:01 +Slot[469] 0200 010000 6688990601466202 ------------- 64 258257 000200000000 5077002582570369SLVL6688990601466202 507700258257 301377 180893 S +07:38:05 +Slot[468] 0200 010000 6213545000771794 ------------- 51 870147 000020000000 507700145649030200056213545000771794 507700145649 100794 668899 S +07:38:11 Slot [409] | NOT FINANCIAL TRANSACTION +07:38:16 Slot [453] | NOT FINANCIAL TRANSACTION +07:38:23 +Slot[457] 0200 011000 1808930600035380 ------------- 00 295431 000100000000 507704271785030026001808930600035380 507704271785 639643 621354 S +07:38:30 +Slot[474] 0200 010000 6688990601466202 ------------- 00 258260 000100000000 5077002582600369SLVL6688990601466202 507700258260 397932 180893 S +07:38:37 +Slot[487] 0200 010000 6213545000711931 ------------- 00 258263 000100000000 5077002582630321LNTV6213545000711931 507700258263 692508 180893 S +07:38:39 +Slot[482] 0200 010000 6213543000104504 ------------- 61 258264 000150000000 5077002582640112CPBR6213543000104504 507700258264 799467 180893 S +07:38:52 +Slot[472] 0200 011000 1808930600025043 ------------- 00 295520 000040000000 507704429807030041001808930600025043 507704429807 892534 621354 S +07:38:52 Slot [483] | NOT FINANCIAL TRANSACTION +07:39:01 +Slot[479] 0420 011000 1808930600035380 ------------- 00 295431 000100000000 507704271785030026001808930600035380 507704271785 -------- 621354 S +07:39:04 +Slot[444] 0200 010000 6213543000104504 ------------- 00 258269 000100000000 5077002582690112CPBR6213543000104504 507700258269 971232 180893 S +07:39:11 +Slot[489] 0200 010000 6688990601466202 ------------- 00 258271 000100000000 5077002582710369SLVL6688990601466202 507700258271 278832 180893 S +07:39:18 Slot [471] | NOT FINANCIAL TRANSACTION +07:39:23 Slot [451] | NOT FINANCIAL TRANSACTION +07:39:33 Slot [490] | NOT FINANCIAL TRANSACTION +07:39:41 +Slot[446] 0200 010000 6213544001729174 ------------- 51 870192 000050000000 507701488974035150016213544001729174 507701488974 992357 668899 S +07:39:43 Slot [459] | NOT FINANCIAL TRANSACTION +07:39:53 Slot [476] | NOT FINANCIAL TRANSACTION +07:39:57 +Slot[498] 0200 010000 6213543000104504 ------------- 00 258276 000050000000 5077002582760112CPBR6213543000104504 507700258276 050126 180893 S +07:40:03 +Slot[436] 0200 010000 6213544001729174 ------------- 00 870202 000030000000 507701488975035150016213544001729174 507701488975 999124 668899 S +07:40:09 Slot [491] | NOT FINANCIAL TRANSACTION +07:40:14 +Slot[486] 0200 011000 6688990601466202 ------------- 00 258278 000040000000 5077002582780369SLVL6688990601466202 507700258278 473332 180893 S +07:40:14 +Slot[497] 0420 011000 1808930600035380 0000000000000 00 295431 000100000000 507704271785030026001808930600035380 507704271785 295431 621354 S +07:40:17 Slot [473] | NOT FINANCIAL TRANSACTION +07:40:20 Slot [499] | NOT FINANCIAL TRANSACTION +07:40:24 Slot [7] | NOT FINANCIAL TRANSACTION +07:40:34 Slot [2] | NOT FINANCIAL TRANSACTION +07:40:47 Slot [470] | NOT FINANCIAL TRANSACTION +07:41:02 Slot [480] | NOT FINANCIAL TRANSACTION +07:41:09 +Slot[477] 0200 010000 6213544001729174 ------------- 00 870236 000010000000 507701488977035150016213544001729174 507701488977 709311 668899 S +07:41:13 Slot [495] | NOT FINANCIAL TRANSACTION +07:41:22 Slot [464] | NOT FINANCIAL TRANSACTION +07:41:23 Slot [492] | NOT FINANCIAL TRANSACTION +07:41:33 Slot [14] | NOT FINANCIAL TRANSACTION +07:41:43 Slot [18] | NOT FINANCIAL TRANSACTION +07:41:54 Slot [24] | NOT FINANCIAL TRANSACTION +07:42:09 Slot [454] | NOT FINANCIAL TRANSACTION +07:42:21 Slot [484] | NOT FINANCIAL TRANSACTION +07:42:24 Slot [466] | NOT FINANCIAL TRANSACTION +07:42:35 Slot [22] | NOT FINANCIAL TRANSACTION +07:42:35 Slot [3] | NOT FINANCIAL TRANSACTION +07:42:46 Slot [493] | NOT FINANCIAL TRANSACTION +07:42:54 +Slot[12] 0200 010000 6688990602686600 ------------- 00 258283 000050000000 5077002582830369SLVL6688990602686600 507700258283 270327 180893 S +07:43:02 Slot [488] | NOT FINANCIAL TRANSACTION +07:43:13 Slot [458] | NOT FINANCIAL TRANSACTION +07:43:23 Slot [0] | NOT FINANCIAL TRANSACTION +07:43:26 Slot [31] | NOT FINANCIAL TRANSACTION +07:43:33 Slot [4] | NOT FINANCIAL TRANSACTION +07:43:43 Slot [16] | NOT FINANCIAL TRANSACTION +07:43:53 Slot [5] | NOT FINANCIAL TRANSACTION +07:43:56 +Slot[1] 0200 012000 6688990103115406 ------------- 55 296399 000030000000 507705381941120034006688990103115406 507705381941 477883 621354 S +07:44:04 Slot [21] | NOT FINANCIAL TRANSACTION +07:44:05 +Slot[8] 0200 010000 6213541000268469 ------------- 00 870340 000029000000 507701488980035150016213541000268469 507701488980 479890 668899 S +07:44:16 +Slot[496] 0200 012000 6688990103115406 ------------- 51 296481 000030000000 507705381943120034006688990103115406 507705381943 306513 621354 S +07:44:20 Slot [15] | NOT FINANCIAL TRANSACTION +07:44:28 Slot [19] | NOT FINANCIAL TRANSACTION +07:44:30 Slot [23] | NOT FINANCIAL TRANSACTION +07:44:30 Slot [26] | NOT FINANCIAL TRANSACTION +07:44:40 Slot [10] | NOT FINANCIAL TRANSACTION +07:44:53 Slot [9] | NOT FINANCIAL TRANSACTION +07:45:01 +Slot[6] 0200 010000 6213544001729133 ------------- 51 870379 000050000000 507701488982035150016213544001729133 507701488982 290128 668899 S +07:45:08 Slot [27] | NOT FINANCIAL TRANSACTION +07:45:17 Slot [46] | NOT FINANCIAL TRANSACTION +07:45:20 +Slot[11] 0200 010000 6213544001729133 ------------- 00 870392 000030000000 507701488983035150016213544001729133 507701488983 137034 668899 S +07:45:21 +Slot[25] 0200 012000 6688990100016102 ------------- 00 258290 000020000000 5077002582900110VTBR6688990100016102 507700258290 154457 180893 S +07:45:22 +Slot[30] 0200 301000 1808930200019743 ------------- 00 296651 000000000000 507703936200010109001808930200019743 507703936200 702910 621354 S +07:45:30 Slot [29] | NOT FINANCIAL TRANSACTION +07:45:31 Slot [494] | NOT FINANCIAL TRANSACTION +07:45:41 Slot [34] | NOT FINANCIAL TRANSACTION +07:45:43 +Slot[20] 0200 010000 6213545000980270 ------------- 00 870406 000100000000 507702209524030060096213545000980270 507702209524 993938 668899 S +07:45:51 Slot [28] | NOT FINANCIAL TRANSACTION +07:45:59 +Slot[38] 0200 010000 6213544002241559 ------------- 00 258297 000100000000 5077002582970461BKPO6213544002241559 507700258297 766694 180893 S +07:46:04 +Slot[42] 0200 010000 6213544000136819 ------------- 00 870417 000100000000 507702475367030200326213544000136819 507702475367 079866 668899 S +07:46:07 Slot [56] | NOT FINANCIAL TRANSACTION +07:46:23 Slot [39] | NOT FINANCIAL TRANSACTION +07:46:26 +Slot[13] 0200 010000 6213544001729133 ------------- 00 870430 000010000000 507701488985035150016213544001729133 507701488985 393319 668899 S +07:46:29 +Slot[36] 0200 010000 6213544002136882 ------------- 00 258302 000100000000 5077002583020441VT526213544002136882 507700258302 471811 180893 S +07:46:32 Slot [52] | NOT FINANCIAL TRANSACTION +07:46:38 Slot [32] | NOT FINANCIAL TRANSACTION +07:46:49 Slot [41] | NOT FINANCIAL TRANSACTION +07:46:57 +Slot[44] 0200 010000 6213541000207798 ------------- 00 870443 000030000000 507702160867030200266213541000207798 507702160867 745571 668899 S +07:47:02 +Slot[47] 0200 010000 6213543000085174 ------------- 61 258306 000150000000 5077002583060114XKBR6213543000085174 507700258306 844916 180893 S +07:47:03 +Slot[40] 0200 011000 6213542000004201 ------------- 61 160498 000200000000 507707160498015290316213542000004201 507707160498 576552 198901 S +07:47:15 Slot [57] | NOT FINANCIAL TRANSACTION +07:47:23 +Slot[54] 0200 011000 6213542000004201 ------------- 61 160504 000200000000 507707160504015290316213542000004201 507707160504 136615 198901 S +07:47:26 Slot [61] | NOT FINANCIAL TRANSACTION +07:47:33 +Slot[37] 0200 010000 6213543000085174 ------------- 00 258310 000100000000 5077002583100114XKBR6213543000085174 507700258310 775685 180893 S +07:47:34 Slot [59] | NOT FINANCIAL TRANSACTION +07:47:35 Slot [58] | NOT FINANCIAL TRANSACTION +07:47:47 Slot [51] | NOT FINANCIAL TRANSACTION +07:47:57 Slot [55] | NOT FINANCIAL TRANSACTION +07:48:08 Slot [72] | NOT FINANCIAL TRANSACTION +07:48:23 +Slot[17] 0200 010000 6213543000085174 ------------- 61 258315 000200000000 5077002583150114XKBR6213543000085174 507700258315 915446 180893 S +07:48:23 Slot [60] | NOT FINANCIAL TRANSACTION +07:48:34 Slot [63] | NOT FINANCIAL TRANSACTION +07:48:36 Slot [48] | NOT FINANCIAL TRANSACTION +07:48:49 Slot [67] | NOT FINANCIAL TRANSACTION +07:48:51 +Slot[35] 0200 010000 6213543000085174 ------------- 00 258319 000100000000 5077002583190114XKBR6213543000085174 507700258319 889360 180893 S +07:48:53 +Slot[71] 0200 010000 6213545000343412 ------------- 00 870526 000100000000 507702209526030060096213545000343412 507702209526 164329 668899 S +07:49:04 +Slot[53] 0200 011000 1808931000004760 ------------- 00 297366 000010000000 507704838721110007001808931000004760 507704838721 711829 621354 S +07:49:09 Slot [79] | NOT FINANCIAL TRANSACTION +07:49:25 Slot [49] | NOT FINANCIAL TRANSACTION +07:49:31 +Slot[85] 0200 010000 6213543000085174 ------------- 00 258326 000100000000 5077002583260114XKBR6213543000085174 507700258326 448275 180893 S +07:49:38 Slot [80] | NOT FINANCIAL TRANSACTION +07:49:40 Slot [83] | NOT FINANCIAL TRANSACTION +07:49:45 +Slot[75] 0200 010000 6213545000343412 ------------- 00 870563 000100000000 507702209528030060096213545000343412 507702209528 135087 668899 S +07:49:56 Slot [45] | NOT FINANCIAL TRANSACTION +07:49:57 +Slot[78] 0200 010000 6213548000220556 ------------- 00 870571 000100000000 507702490206032150016213548000220556 507702490206 602177 668899 S +07:50:05 +Slot[68] 0200 010000 6688990602688606 ------------- 00 258331 000100000000 5077002583310369SLVL6688990602688606 507700258331 759870 180893 S +07:50:16 Slot [73] | NOT FINANCIAL TRANSACTION +07:50:17 Slot [89] | NOT FINANCIAL TRANSACTION +07:50:18 +Slot[43] 0200 011000 6213544001811246 ------------- 51 258335 000002000000 5077002583350106NAXA6213544001811246 507700258335 370329 180893 S +07:50:27 Slot [91] | NOT FINANCIAL TRANSACTION +07:50:35 +Slot[77] 0200 010000 6213543000085174 ------------- 00 258338 000100000000 5077002583380114XKBR6213543000085174 507700258338 675650 180893 S +07:50:40 Slot [76] | NOT FINANCIAL TRANSACTION +07:50:48 Slot [88] | NOT FINANCIAL TRANSACTION +07:51:04 Slot [94] | NOT FINANCIAL TRANSACTION +07:51:14 Slot [65] | NOT FINANCIAL TRANSACTION +07:51:17 +Slot[86] 0200 012000 6688990602688606 ------------- 00 258344 000020000000 5077002583440369SLVL6688990602688606 507700258344 275340 180893 S +07:51:27 +Slot[66] 0200 010000 6213543000085174 ------------- 00 258348 000100000000 5077002583480114XKBR6213543000085174 507700258348 657670 180893 S +07:51:39 Slot [93] | NOT FINANCIAL TRANSACTION +07:51:42 Slot [103] | NOT FINANCIAL TRANSACTION +07:51:49 +Slot[33] 0200 300000 6213548000519304 ------------- 00 870653 000000000000 507702531121030200336213548000519304 507702531121 073540 668899 S +07:51:51 Slot [101] | NOT FINANCIAL TRANSACTION +07:52:02 +Slot[95] 0200 301000 6213548000277622 ------------- 55 258354 031800510525 5077002583540522XYXH6213548000277622 507700258354 123291 180893 S +07:52:07 +Slot[74] 0200 010000 6213543000085174 ------------- 00 258356 000100000000 5077002583560114XKBR6213543000085174 507700258356 557839 180893 S +07:52:17 Slot [105] | NOT FINANCIAL TRANSACTION +07:52:28 Slot [70] | NOT FINANCIAL TRANSACTION +07:52:36 Slot [50] | NOT FINANCIAL TRANSACTION +07:52:38 Slot [92] | NOT FINANCIAL TRANSACTION +07:52:44 Slot [102] | NOT FINANCIAL TRANSACTION +07:52:47 +Slot[81] 0200 010000 6688990106355306 ------------- 00 258361 000010000000 5077002583610369SLVL6688990106355306 507700258361 893020 180893 S +07:52:59 Slot [107] | NOT FINANCIAL TRANSACTION +07:53:10 Slot [100] | NOT FINANCIAL TRANSACTION +07:53:26 Slot [114] | NOT FINANCIAL TRANSACTION +07:53:37 +Slot[108] 0200 011000 6213544000553187 ------------- 00 258370 000020000000 5077002583700141HQBR6213544000553187 507700258370 184085 180893 S +07:53:46 Slot [82] | NOT FINANCIAL TRANSACTION +07:53:48 Slot [104] | NOT FINANCIAL TRANSACTION +07:53:59 Slot [122] | NOT FINANCIAL TRANSACTION +07:54:10 Slot [87] | NOT FINANCIAL TRANSACTION +07:54:25 Slot [69] | NOT FINANCIAL TRANSACTION +07:54:36 Slot [119] | NOT FINANCIAL TRANSACTION +07:54:48 Slot [117] | NOT FINANCIAL TRANSACTION +07:54:52 Slot [115] | NOT FINANCIAL TRANSACTION +07:55:02 Slot [110] | NOT FINANCIAL TRANSACTION +07:55:17 Slot [96] | NOT FINANCIAL TRANSACTION +07:55:18 Slot [62] | NOT FINANCIAL TRANSACTION +07:55:23 +Slot[64] 0200 012000 1808930600008999 ------------- 42 298522 000050000000 507704429840030041001808930600008999 507704429840 835757 621354 S +07:55:34 Slot [136] | NOT FINANCIAL TRANSACTION +07:55:45 Slot [124] | NOT FINANCIAL TRANSACTION +07:55:50 Slot [97] | NOT FINANCIAL TRANSACTION +07:56:01 Slot [84] | NOT FINANCIAL TRANSACTION +07:56:12 Slot [98] | NOT FINANCIAL TRANSACTION +07:56:23 +Slot[90] 0200 011000 6688990102675103 ------------- 00 298682 000005000000 507703967951010112006688990102675103 507703967951 452754 621354 S +07:56:27 +Slot[113] 0200 011000 1808930800005910 ------------- 00 298674 000040000000 507704467087150008001808930800005910 507704467087 236910 621354 S +07:56:29 Slot [121] | NOT FINANCIAL TRANSACTION +07:56:40 Slot [159] | NOT FINANCIAL TRANSACTION +07:56:43 +Slot[144] 0200 012000 1808931700021783 ------------- 42 298771 000050000000 507702363571010061001808931700021783 507702363571 350256 621354 S +07:56:44 +Slot[112] 0200 012000 1888880000058842 ------------- 00 298740 000050000000 507703061071010086001888880000058842 507703061071 455124 621354 S +07:56:46 +Slot[99] 0200 011000 6688990104888001 ------------- 51 298769 000005000000 507703498938060022006688990104888001 507703498938 689902 621354 S +07:56:47 +Slot[134] 0200 301000 6213545000906218 ------------- 00 870873 000000000000 507700297068030100066213545000906218 507700297068 298660 668899 S +07:56:52 Slot [148] | NOT FINANCIAL TRANSACTION +07:56:55 Slot [142] | NOT FINANCIAL TRANSACTION +07:57:06 +Slot[111] 0200 012000 1808930600055917 ------------- 42 298855 000050000000 507704429842030041001808930600055917 507704429842 566554 621354 S +07:57:15 Slot [149] | NOT FINANCIAL TRANSACTION +07:57:21 +Slot[128] 0200 010000 6213545000906218 ------------- 00 870900 000010000000 507700297069030100066213545000906218 507700297069 834326 668899 S +07:57:29 +Slot[126] 0200 010000 6223691086770488 ------------- 91 258375 000100000000 5077002583750361BLTB6223691086770488 507700258375 714420 180893 S +07:57:31 +Slot[140] 0200 011000 1808931600000853 ------------- 00 298946 000080000000 507705097657040042001808931600000853 507705097657 262409 621354 S +07:57:36 Slot [155] | NOT FINANCIAL TRANSACTION +07:57:37 Slot [146] | NOT FINANCIAL TRANSACTION +07:57:47 Slot [131] | NOT FINANCIAL TRANSACTION +07:57:54 Slot [109] | NOT FINANCIAL TRANSACTION +07:57:55 +Slot[127] 0200 302000 1808930600055917 ------------- 42 299048 000000000000 507704429843030041001808930600055917 507704429843 021368 621354 S +07:57:56 +Slot[139] 0200 011000 1808930900014853 ------------- 00 299033 000010000000 507702544313050037001808930900014853 507702544313 044130 621354 S +07:58:04 Slot [151] | NOT FINANCIAL TRANSACTION +07:58:16 +Slot[150] 0200 301000 1808931600000853 ------------- 00 299110 000000000000 507705097658040042001808931600000853 507705097658 907409 621354 S +07:58:20 Slot [154] | NOT FINANCIAL TRANSACTION +07:58:31 Slot [123] | NOT FINANCIAL TRANSACTION +07:58:32 +Slot[118] 0200 010000 6213545000771794 ------------- 51 870956 000020000000 507702488384030010136213545000771794 507702488384 634946 668899 S +07:58:48 Slot [138] | NOT FINANCIAL TRANSACTION +07:58:56 Slot [157] | NOT FINANCIAL TRANSACTION +07:59:04 Slot [135] | NOT FINANCIAL TRANSACTION +07:59:09 Slot [132] | NOT FINANCIAL TRANSACTION +07:59:15 +Slot[171] 0200 013000 1808930600055917 ------------- 42 299337 000100000000 507704429845030041001808930600055917 507704429845 945689 621354 S +07:59:16 +Slot[120] 0200 301000 6688990104040801 ------------- 00 258386 031800581625 5077002583860263UDXB6688990104040801 507700258386 688174 180893 S +07:59:25 Slot [152] | NOT FINANCIAL TRANSACTION +07:59:36 Slot [116] | NOT FINANCIAL TRANSACTION +07:59:49 +Slot[167] 0200 010000 6688990104040801 ------------- 64 258390 000150000000 5077002583900263UDXB6688990104040801 507700258390 419103 180893 S +07:59:58 Slot [156] | NOT FINANCIAL TRANSACTION +08:00:01 Slot [129] | NOT FINANCIAL TRANSACTION +08:00:17 Slot [130] | NOT FINANCIAL TRANSACTION +08:00:17 Slot [175] | NOT FINANCIAL TRANSACTION +08:00:33 Slot [168] | NOT FINANCIAL TRANSACTION +08:00:37 +Slot[141] 0200 010000 6213544000906971 ------------- 00 258398 000100000000 5077002583980104NUOL6213544000906971 507700258398 488875 180893 S +08:00:38 +Slot[166] 0200 011000 6688990601492208 ------------- 00 258400 000020000000 5077002584000369SLVL6688990601492208 507700258400 530292 180893 S +08:00:44 +Slot[172] 0200 010000 6688990104040801 ------------- 00 258403 000100000000 5077002584030263UDXB6688990104040801 507700258403 886632 180893 S +08:00:54 +Slot[169] 0200 301000 6213544000111424 ------------- 00 258404 031800595625 5077002584040107HSTH6213544000111424 507700258404 033763 180893 S +08:00:56 +Slot[160] 0200 010000 6213544000649092 ------------- 00 871097 000100000000 507700157714030200066213544000649092 507700157714 973328 668899 S +08:01:00 Slot [174] | NOT FINANCIAL TRANSACTION +08:01:04 Slot [164] | NOT FINANCIAL TRANSACTION +08:01:12 Slot [147] | NOT FINANCIAL TRANSACTION +08:01:15 Slot [133] | NOT FINANCIAL TRANSACTION +08:01:26 Slot [153] | NOT FINANCIAL TRANSACTION +08:01:39 +Slot[178] 0200 011000 6688990104040801 ------------- 00 258412 000050000000 5077012584120263UDXB6688990104040801 507701258412 993742 180893 S +08:01:43 +Slot[183] 0200 011000 6213544000111424 ------------- 00 258414 000020000000 5077012584140107HSTH6213544000111424 507701258414 465503 180893 S +08:01:54 Slot [195] | NOT FINANCIAL TRANSACTION +08:01:57 +Slot[125] 0200 301000 6688990101213401 ------------- 00 299943 000000000000 507705334733050047006688990101213401 507705334733 590800 621354 S +08:02:02 Slot [170] | NOT FINANCIAL TRANSACTION +08:02:04 +Slot[191] 0200 301000 6688990040114892 ------------- 00 299970 000000000000 507705291086200014006688990040114892 507705291086 136177 621354 S +08:02:04 Slot [143] | NOT FINANCIAL TRANSACTION +08:02:15 Slot [161] | NOT FINANCIAL TRANSACTION +08:02:26 Slot [189] | NOT FINANCIAL TRANSACTION +08:02:29 +Slot[181] 0200 011000 2206990000073122 ------------- 00 258423 000090000000 5077012584230106NAXA2206990000073122 507701258423 230037 180893 S +08:02:36 Slot [204] | NOT FINANCIAL TRANSACTION +08:02:43 Slot [202] | NOT FINANCIAL TRANSACTION +08:02:49 +Slot[158] 0200 010000 6688990040114892 ------------- 00 300134 000010000000 507705291088200014006688990040114892 507705291088 210973 621354 S +08:02:54 Slot [182] | NOT FINANCIAL TRANSACTION +08:03:04 Slot [197] | NOT FINANCIAL TRANSACTION +08:03:10 Slot [193] | NOT FINANCIAL TRANSACTION +08:03:14 +Slot[200] 0200 010000 6213545000192827 ------------- 51 258428 000050000000 5077012584280363CPSH6213545000192827 507701258428 390642 180893 S +08:03:18 +Slot[177] 0200 301000 6688990101213401 ------------- 00 300239 000000000000 507705334736050047006688990101213401 507705334736 930346 621354 S +08:03:26 Slot [210] | NOT FINANCIAL TRANSACTION +08:03:38 Slot [198] | NOT FINANCIAL TRANSACTION +08:03:49 Slot [213] | NOT FINANCIAL TRANSACTION +08:03:59 Slot [106] | NOT FINANCIAL TRANSACTION +08:04:06 Slot [163] | NOT FINANCIAL TRANSACTION +08:04:10 Slot [165] | NOT FINANCIAL TRANSACTION +08:04:22 Slot [187] | NOT FINANCIAL TRANSACTION +08:04:42 +Slot[211] 0200 011000 6213544001386397 ------------- 51 160751 000010000000 507708160751000022226213544001386397 507708160751 132823 198901 S +08:04:43 +Slot[206] 0200 010000 1808930600055917 ------------- 00 300566 000100000000 507704429847030041001808930600055917 507704429847 120969 621354 S +08:04:47 Slot [162] | NOT FINANCIAL TRANSACTION +08:04:57 +Slot[145] 0200 302000 6213545000426191 ------------- 00 258437 031801035925 5077012584370368KMMX6213545000426191 507701258437 131646 180893 S +08:05:05 +Slot[196] 0200 012000 6688990101213401 ------------- 00 300655 000100000000 507705334741050047006688990101213401 507705334741 530589 621354 S +08:05:07 Slot [205] | NOT FINANCIAL TRANSACTION +08:05:08 Slot [221] | NOT FINANCIAL TRANSACTION +08:05:17 Slot [217] | NOT FINANCIAL TRANSACTION +08:05:22 Slot [214] | NOT FINANCIAL TRANSACTION +08:05:23 +Slot[180] 0200 010000 6213545000859110 ------------- 55 254511 000100000000 507700094212010009006213545000859110 507700094212 107295 220699 S +08:05:32 Slot [194] | NOT FINANCIAL TRANSACTION +08:05:42 Slot [222] | NOT FINANCIAL TRANSACTION +08:05:57 Slot [226] | NOT FINANCIAL TRANSACTION +08:06:10 Slot [190] | NOT FINANCIAL TRANSACTION +08:06:12 Slot [176] | NOT FINANCIAL TRANSACTION +08:06:22 Slot [184] | NOT FINANCIAL TRANSACTION +08:06:37 Slot [225] | NOT FINANCIAL TRANSACTION +08:06:53 Slot [137] | NOT FINANCIAL TRANSACTION +08:07:03 Slot [218] | NOT FINANCIAL TRANSACTION +08:07:12 Slot [224] | NOT FINANCIAL TRANSACTION +08:07:14 Slot [173] | NOT FINANCIAL TRANSACTION +08:07:22 +Slot[207] 0200 011000 6213544000656360 ------------- 00 379344 000100000000 507700165584060001006213544000656360 507700165584 652673 220699 S +08:07:25 Slot [223] | NOT FINANCIAL TRANSACTION +08:07:35 Slot [208] | NOT FINANCIAL TRANSACTION +08:07:36 Slot [215] | NOT FINANCIAL TRANSACTION +08:07:45 Slot [192] | NOT FINANCIAL TRANSACTION +08:07:57 Slot [231] | NOT FINANCIAL TRANSACTION +08:08:07 Slot [188] | NOT FINANCIAL TRANSACTION +08:08:14 Slot [199] | NOT FINANCIAL TRANSACTION +08:08:22 Slot [220] | NOT FINANCIAL TRANSACTION +08:08:37 Slot [185] | NOT FINANCIAL TRANSACTION +08:08:45 +Slot[179] 0200 011000 2206990000090415 ------------- 00 301511 000020000000 507704633825170008002206990000090415 507704633825 295491 621354 S +08:08:48 Slot [186] | NOT FINANCIAL TRANSACTION +08:08:58 Slot [227] | NOT FINANCIAL TRANSACTION +08:09:11 +Slot[229] 0200 311000 1808930800004228 ------------- 00 106884 000000000000 507700327608010018001808930800004228 507700327608 407325 220699 S +08:09:15 Slot [219] | NOT FINANCIAL TRANSACTION +08:09:16 Slot [212] | NOT FINANCIAL TRANSACTION +08:09:19 +Slot[230] 0200 011000 6213545000119226 ------------- 55 016142 000100000000 507700195556080002006213545000119226 507700195556 377680 220699 S +08:09:20 +Slot[236] 0200 302000 6213548000192714 ------------- 55 258450 031801082325 5077012584500401XSBR6213548000192714 507701258450 435525 180893 S +08:09:30 Slot [216] | NOT FINANCIAL TRANSACTION +08:09:43 +Slot[239] 0200 011000 1808930800004228 ------------- 00 106885 000004000000 507700327609010018001808930800004228 507700327609 408964 220699 S +08:09:44 +Slot[232] 0200 010000 6213544001271490 ------------- 00 871429 000030000000 507700285482030100056213544001271490 507700285482 266163 668899 S +08:09:50 Slot [235] | NOT FINANCIAL TRANSACTION +08:09:55 Slot [234] | NOT FINANCIAL TRANSACTION +08:09:58 +Slot[209] 0200 010000 6213545000907182 ------------- 00 871436 000100000000 507702682892030200366213545000907182 507702682892 290977 668899 S +08:10:04 +Slot[250] 0200 011000 6213545000119226 ------------- 00 016145 000100000000 507700195558080002006213545000119226 507700195558 388880 220699 S +08:10:05 Slot [242] | NOT FINANCIAL TRANSACTION +08:10:16 +Slot[238] 0200 010000 6213545001065295 ------------- 00 258456 000100000000 5077012584560324BKDT6213545001065295 507701258456 508866 180893 S +08:10:18 Slot [201] | NOT FINANCIAL TRANSACTION +08:10:18 Slot [252] | NOT FINANCIAL TRANSACTION +08:10:26 +Slot[228] 0200 010000 6213545001109820 ------------- 75 379347 000010000000 507700165586060001006213545001109820 507700165586 703940 220699 S +08:10:28 Slot [245] | NOT FINANCIAL TRANSACTION +08:10:35 +Slot[240] 0200 302000 6213548000192714 ------------- 00 258460 031801093725 5077012584600401XSBR6213548000192714 507701258460 754036 180893 S +08:10:36 +Slot[248] 0200 011000 1808930800004228 ------------- 51 106888 000004000000 507700327611010018001808930800004228 507700327611 329218 220699 S +08:10:44 +Slot[203] 0200 010000 6213545000848618 ------------- 00 871458 000050000000 507700157724030200066213545000848618 507700157724 476981 668899 S +08:10:45 Slot [258] | NOT FINANCIAL TRANSACTION +08:10:56 Slot [247] | NOT FINANCIAL TRANSACTION +08:10:59 +Slot[244] 0200 010000 6688990040034140 ------------- 00 302131 000010000000 507703967972010112006688990040034140 507703967972 922911 621354 S +08:11:06 Slot [253] | NOT FINANCIAL TRANSACTION +08:11:13 +Slot[246] 0200 011000 6213545000119226 ------------- 00 016148 000100000000 507700195560080002006213545000119226 507700195560 325809 220699 S +08:11:14 +Slot[243] 0200 011000 1808930800004228 ------------- 51 106891 000002000000 507700327613010018001808930800004228 507700327613 862653 220699 S +08:11:16 +Slot[256] 0200 310000 6213545001109820 ------------- 75 379350 000000000000 507700165588060001006213545001109820 507700165588 345056 220699 S +08:11:19 +Slot[260] 0200 010000 6213545000907182 ------------- 00 871483 000100000000 507702682894030200366213545000907182 507702682894 615633 668899 S +08:11:19 +Slot[265] 0200 010000 6213544002077938 ------------- 00 871489 000010000000 507700484304030200086213544002077938 507700484304 551138 668899 S +08:11:20 Slot [273] | NOT FINANCIAL TRANSACTION +08:11:22 +Slot[241] 0200 010000 6688990040053959 ------------- 00 302223 000010000000 507704161419200011006688990040053959 507704161419 447656 621354 S +08:11:22 Slot [251] | NOT FINANCIAL TRANSACTION +08:11:26 +Slot[249] 0200 011000 6688990040036236 ------------- 00 302227 000020000000 507703598255160012006688990040036236 507703598255 977610 621354 S +08:11:32 Slot [269] | NOT FINANCIAL TRANSACTION +08:11:47 +Slot[254] 0200 011000 6213544001469870 ------------- 00 188876 000100000000 507700084263010008006213544001469870 507700084263 731029 220699 S +08:11:49 +Slot[264] 0200 010000 6213545000641633 ------------- 00 258467 000100000000 5077012584670301LPBX6213545000641633 507701258467 048368 180893 S +08:12:00 Slot [268] | NOT FINANCIAL TRANSACTION +08:12:10 +Slot[276] 0200 300000 6688990040053959 ------------- 00 302442 000000000000 507704161420200011006688990040053959 507704161420 102097 621354 S +08:12:14 Slot [279] | NOT FINANCIAL TRANSACTION +08:12:14 +Slot[266] 0200 011000 6213545000310593 ------------- 00 016151 000100000000 507700195562080002006213545000310593 507700195562 611877 220699 S +08:12:22 Slot [261] | NOT FINANCIAL TRANSACTION +08:12:30 +Slot[233] 0200 011000 1808930600035380 ------------- 00 302499 000100000000 507704248142030023001808930600035380 507704248142 809913 621354 S +08:12:34 Slot [262] | NOT FINANCIAL TRANSACTION +08:12:36 Slot [257] | NOT FINANCIAL TRANSACTION +08:12:44 +Slot[274] 0200 011000 6213544001469870 ------------- 00 188879 000030000000 507700084265010008006213544001469870 507700084265 348366 220699 S +08:12:45 Slot [284] | NOT FINANCIAL TRANSACTION +08:12:57 Slot [270] | NOT FINANCIAL TRANSACTION +08:13:00 +Slot[263] 0200 011000 6213541000473093 ------------- 00 250499 000050000000 507700335739010019006213541000473093 507700335739 903268 220699 S +08:13:06 +Slot[267] 0200 010000 6213545000907182 ------------- 00 871555 000050000000 507702682896030200366213545000907182 507702682896 300789 668899 S +08:13:08 Slot [299] | NOT FINANCIAL TRANSACTION +08:13:17 +Slot[280] 0200 010000 6213541000116122 ------------- 00 871561 000070000000 507700554990030140036213541000116122 507700554990 382391 668899 S +08:13:18 +Slot[278] 0200 302000 6213545000141717 ------------- 00 871562 000000000000 507702289594030090056213545000141717 507702289594 620270 668899 S +08:13:24 Slot [277] | NOT FINANCIAL TRANSACTION +08:13:24 Slot [285] | NOT FINANCIAL TRANSACTION +08:13:25 +Slot[289] 0200 011000 6213545000310593 ------------- 00 016154 000050000000 507700195564080002006213545000310593 507700195564 239421 220699 S +08:13:39 Slot [293] | NOT FINANCIAL TRANSACTION +08:13:50 Slot [287] | NOT FINANCIAL TRANSACTION +08:14:06 +Slot[304] 0200 011000 1808930600035380 ------------- 00 302951 000100000000 507704248144030023001808930600035380 507704248144 262145 621354 S +08:14:06 Slot [281] | NOT FINANCIAL TRANSACTION +08:14:18 Slot [296] | NOT FINANCIAL TRANSACTION +08:14:26 Slot [275] | NOT FINANCIAL TRANSACTION +08:14:29 Slot [309] | NOT FINANCIAL TRANSACTION +08:14:43 Slot [291] | NOT FINANCIAL TRANSACTION +08:14:49 +Slot[294] 0200 011000 6213544001237087 ------------- 00 160891 000010000000 507708160891015290316213544001237087 507708160891 500211 198901 S +08:14:50 +Slot[286] 0200 011000 1808930800014631 ------------- 00 303161 000050000000 507702947244120017001808930800014631 507702947244 586257 621354 S +08:14:59 Slot [259] | NOT FINANCIAL TRANSACTION +08:15:09 Slot [303] | NOT FINANCIAL TRANSACTION +08:15:18 Slot [271] | NOT FINANCIAL TRANSACTION +08:15:19 +Slot[282] 0200 301000 6213542000051061 ------------- 55 258485 031801142225 5077012584850141HQBR6213542000051061 507701258485 434503 180893 S +08:15:28 Slot [298] | NOT FINANCIAL TRANSACTION +08:15:29 +Slot[272] 0200 010000 2206990000095638 ------------- 00 871633 000050000000 507702031449030180032206990000095638 507702031449 513936 668899 S +08:15:32 Slot [317] | NOT FINANCIAL TRANSACTION +08:15:46 Slot [288] | NOT FINANCIAL TRANSACTION +08:16:00 +Slot[307] 0200 010000 1808931400003610 ------------- 00 303465 000040000000 507704718837180010001808931400003610 507704718837 971993 621354 S +08:16:01 +Slot[329] 0200 011000 6213544001260220 ------------- 00 258491 000002000000 5077012584910109SKTB6213544001260220 507701258491 969216 180893 S +08:16:02 +Slot[237] 0200 301000 6213542000051061 ------------- 00 258492 031801150225 5077012584920141HQBR6213542000051061 507701258492 803108 180893 S +08:16:12 Slot [314] | NOT FINANCIAL TRANSACTION +08:16:23 Slot [315] | NOT FINANCIAL TRANSACTION +08:16:30 Slot [313] | NOT FINANCIAL TRANSACTION +08:16:33 Slot [336] | NOT FINANCIAL TRANSACTION +08:16:35 +Slot[323] 0200 300000 6213544001886693 ------------- 00 871680 000000000000 507702519688032080026213544001886693 507702519688 810775 668899 S +08:16:40 +Slot[331] 0200 010000 6213542000051061 ------------- 00 258500 000050000000 5077012585000141HQBR6213542000051061 507701258500 754947 180893 S +08:16:49 +Slot[324] 0200 011000 1808931000000974 ------------- 00 303659 000100000000 507704838745110007001808931000000974 507704838745 693766 621354 S +08:16:54 Slot [283] | NOT FINANCIAL TRANSACTION +08:17:06 Slot [308] | NOT FINANCIAL TRANSACTION +08:17:16 Slot [321] | NOT FINANCIAL TRANSACTION +08:17:26 Slot [319] | NOT FINANCIAL TRANSACTION +08:17:32 Slot [255] | NOT FINANCIAL TRANSACTION +08:17:36 Slot [295] | NOT FINANCIAL TRANSACTION +08:17:37 Slot [318] | NOT FINANCIAL TRANSACTION +08:17:54 Slot [300] | NOT FINANCIAL TRANSACTION +08:17:54 Slot [326] | NOT FINANCIAL TRANSACTION +08:18:09 Slot [312] | NOT FINANCIAL TRANSACTION +08:18:19 Slot [340] | NOT FINANCIAL TRANSACTION +08:18:30 Slot [302] | NOT FINANCIAL TRANSACTION +08:18:34 Slot [306] | NOT FINANCIAL TRANSACTION +08:18:41 Slot [355] | NOT FINANCIAL TRANSACTION +08:18:56 Slot [316] | NOT FINANCIAL TRANSACTION +08:19:07 Slot [325] | NOT FINANCIAL TRANSACTION +08:19:17 +Slot[311] 0200 010000 6213545000959118 ------------- 00 871799 000070000000 507700157731030200066213545000959118 507700157731 438246 668899 S +08:19:18 Slot [334] | NOT FINANCIAL TRANSACTION +08:19:33 Slot [339] | NOT FINANCIAL TRANSACTION +08:19:36 Slot [301] | NOT FINANCIAL TRANSACTION +08:19:44 Slot [310] | NOT FINANCIAL TRANSACTION +08:19:49 +Slot[297] 0200 010000 6213544001886693 ------------- 51 258517 000050000000 5077012585170201ADD16213544001886693 507701258517 185780 180893 S +08:20:01 Slot [350] | NOT FINANCIAL TRANSACTION +08:20:02 +Slot[349] 0200 010000 6213544001854436 ------------- 51 871838 000070000000 507701488987035150016213544001854436 507701488987 486421 668899 S +08:20:16 Slot [341] | NOT FINANCIAL TRANSACTION +08:20:18 Slot [338] | NOT FINANCIAL TRANSACTION +08:20:25 +Slot[328] 0200 301000 1808930500019542 ------------- 00 871850 000000000000 507700844476030150031808930500019542 507700844476 529633 668899 S +08:20:26 +Slot[332] 0200 010000 6213544001854436 ------------- 00 871854 000045000000 507701488988035150016213544001854436 507701488988 197544 668899 S +08:20:33 Slot [352] | NOT FINANCIAL TRANSACTION +08:20:38 Slot [364] | NOT FINANCIAL TRANSACTION +08:20:38 +Slot[305] 0200 010000 6213544001886693 ------------- 51 258521 000050000000 5077012585210201ADD16213544001886693 507701258521 517071 180893 S +08:20:41 Slot [345] | NOT FINANCIAL TRANSACTION +08:20:47 Slot [343] | NOT FINANCIAL TRANSACTION +08:20:49 +Slot[330] 0200 010000 1888880000049601 ------------- 00 871863 000010000000 507701855277033110011888880000049601 507701855277 518962 668899 S +08:20:58 Slot [337] | NOT FINANCIAL TRANSACTION +08:21:14 Slot [354] | NOT FINANCIAL TRANSACTION +08:21:29 Slot [320] | NOT FINANCIAL TRANSACTION +08:21:40 Slot [342] | NOT FINANCIAL TRANSACTION +08:21:41 Slot [335] | NOT FINANCIAL TRANSACTION +08:21:56 Slot [369] | NOT FINANCIAL TRANSACTION +08:22:06 Slot [366] | NOT FINANCIAL TRANSACTION +08:22:17 Slot [290] | NOT FINANCIAL TRANSACTION +08:22:30 Slot [347] | NOT FINANCIAL TRANSACTION +08:22:36 Slot [374] | NOT FINANCIAL TRANSACTION +08:22:42 Slot [327] | NOT FINANCIAL TRANSACTION +08:22:43 Slot [292] | NOT FINANCIAL TRANSACTION +08:22:54 Slot [333] | NOT FINANCIAL TRANSACTION +08:23:00 +Slot[365] 0200 010000 6688990108373208 ------------- 00 305237 000100000000 507703655746160018006688990108373208 507703655746 124189 621354 S +08:23:04 Slot [384] | NOT FINANCIAL TRANSACTION +08:23:19 +Slot[358] 0200 011000 6213544001886693 ------------- 51 258535 000005000000 5077012585350201ADD16213544001886693 507701258535 174056 180893 S +08:23:30 Slot [360] | NOT FINANCIAL TRANSACTION +08:23:41 Slot [373] | NOT FINANCIAL TRANSACTION +08:23:44 Slot [353] | NOT FINANCIAL TRANSACTION +08:23:50 +Slot[362] 0200 301000 6213544001886693 ------------- 00 258536 031801225225 5077012585360201ADD16213544001886693 507701258536 621607 180893 S +08:24:02 Slot [380] | NOT FINANCIAL TRANSACTION +08:24:02 +Slot[372] 0200 011000 6688990602251900 ------------- 00 305469 000100000000 507705222202010131006688990602251900 507705222202 721959 621354 S +08:24:16 Slot [379] | NOT FINANCIAL TRANSACTION +08:24:27 Slot [382] | NOT FINANCIAL TRANSACTION +08:24:37 Slot [348] | NOT FINANCIAL TRANSACTION +08:24:46 Slot [361] | NOT FINANCIAL TRANSACTION +08:24:48 +Slot[322] 0200 010000 2206990000124149 ------------- 00 305671 000100000000 507704633842170008002206990000124149 507704633842 447696 621354 S +08:24:48 Slot [346] | NOT FINANCIAL TRANSACTION +08:24:54 +Slot[377] 0200 301000 6213544002078233 ------------- 00 872023 000000000000 507701702285030010086213544002078233 507701702285 204611 668899 S +08:24:59 Slot [370] | NOT FINANCIAL TRANSACTION +08:25:05 +Slot[378] 0200 010000 6213541000230055 ------------- 00 258541 000100000000 5077012585410115LPBR6213541000230055 507701258541 140233 180893 S +08:25:11 +Slot[363] 0200 011000 6688990602859009 ------------- 51 305764 000050000000 507703906857010106006688990602859009 507703906857 978908 621354 S +08:25:12 +Slot[385] 0200 010000 6688990108373208 ------------- 00 305765 000050000000 507703655748160018006688990108373208 507703655748 334589 621354 S +08:25:15 Slot [359] | NOT FINANCIAL TRANSACTION +08:25:16 Slot [371] | NOT FINANCIAL TRANSACTION +08:25:32 Slot [351] | NOT FINANCIAL TRANSACTION +08:25:46 +Slot[367] 0200 010000 2206990000124149 ------------- 00 305918 000100000000 507704633844170008002206990000124149 507704633844 272200 621354 S +08:25:47 Slot [344] | NOT FINANCIAL TRANSACTION +08:25:48 Slot [397] | NOT FINANCIAL TRANSACTION +08:26:02 +Slot[386] 0200 301000 6688990602859009 ------------- 00 305976 000000000000 507703906858010106006688990602859009 507703906858 530408 621354 S +08:26:02 Slot [410] | NOT FINANCIAL TRANSACTION +08:26:13 Slot [388] | NOT FINANCIAL TRANSACTION +08:26:24 Slot [414] | NOT FINANCIAL TRANSACTION +08:26:25 +Slot[357] 0200 010000 6213545000020085 ------------- 00 872069 000100000000 507702308309030110036213545000020085 507702308309 058749 668899 S +08:26:36 Slot [408] | NOT FINANCIAL TRANSACTION +08:26:46 Slot [413] | NOT FINANCIAL TRANSACTION +08:26:48 +Slot[401] 0200 010000 2206990000124149 ------------- 00 306159 000100000000 507704633846170008002206990000124149 507704633846 222430 621354 S +08:26:50 Slot [393] | NOT FINANCIAL TRANSACTION +08:26:57 Slot [403] | NOT FINANCIAL TRANSACTION +08:27:12 +Slot[398] 0200 010000 6213541000274947 ------------- 00 872098 000100000000 507701422674033140016213541000274947 507701422674 530983 668899 S +08:27:12 Slot [420] | NOT FINANCIAL TRANSACTION +08:27:22 Slot [391] | NOT FINANCIAL TRANSACTION +08:27:32 Slot [418] | NOT FINANCIAL TRANSACTION +08:27:33 Slot [392] | NOT FINANCIAL TRANSACTION +08:27:43 Slot [425] | NOT FINANCIAL TRANSACTION +08:27:50 +Slot[416] 0200 011000 6213541000125966 ------------- 00 254525 000100000000 507700094221010009006213541000125966 507700094221 241697 220699 S +08:27:51 +Slot[356] 0200 012000 6213545000578553 ------------- 00 106897 000100000000 507700327617010018006213545000578553 507700327617 491726 220699 S +08:27:52 Slot [411] | NOT FINANCIAL TRANSACTION +08:27:58 +Slot[383] 0200 011000 1808930200021731 ------------- 00 306433 000070000000 507703972773010113001808930200021731 507703972773 045789 621354 S +08:27:59 +Slot[415] 0200 300000 6213545000806889 ------------- 00 872136 000000000000 507700512858030120016213545000806889 507700512858 745726 668899 S +08:28:05 Slot [387] | NOT FINANCIAL TRANSACTION +08:28:16 Slot [396] | NOT FINANCIAL TRANSACTION +08:28:27 Slot [395] | NOT FINANCIAL TRANSACTION +08:28:31 +Slot[431] 0200 010000 6213545000806889 ------------- 00 872159 000010000000 507700512859030120016213545000806889 507700512859 084907 668899 S +08:28:38 Slot [423] | NOT FINANCIAL TRANSACTION +08:28:48 Slot [402] | NOT FINANCIAL TRANSACTION +08:28:54 Slot [400] | NOT FINANCIAL TRANSACTION +08:28:57 +Slot[429] 0200 012000 6213545000578553 ------------- 00 106900 000070000000 507700327619010018006213545000578553 507700327619 385717 220699 S +08:29:05 +Slot[375] 0200 011000 1808930800005431 ------------- 00 306699 000100000000 507702999469120022001808930800005431 507702999469 192175 621354 S +08:29:07 +Slot[381] 0200 010000 6688990040030700 ------------- 00 306710 000010000000 507703643043160017006688990040030700 507703643043 824290 621354 S +08:29:09 Slot [417] | NOT FINANCIAL TRANSACTION +08:29:25 Slot [438] | NOT FINANCIAL TRANSACTION +08:29:36 Slot [428] | NOT FINANCIAL TRANSACTION +08:29:47 +Slot[406] 0200 301000 2206990010001204 ------------- 00 306881 000000000000 507705238299010132002206990010001204 507705238299 300455 621354 S +08:29:48 Slot [399] | NOT FINANCIAL TRANSACTION +08:29:56 Slot [437] | NOT FINANCIAL TRANSACTION +08:29:58 Slot [419] | NOT FINANCIAL TRANSACTION +08:30:09 Slot [427] | NOT FINANCIAL TRANSACTION +08:30:16 Slot [404] | NOT FINANCIAL TRANSACTION +08:30:20 Slot [422] | NOT FINANCIAL TRANSACTION +08:30:25 +Slot[445] 0200 011000 2206990010001204 ------------- 51 307059 000010000000 507705238301010132002206990010001204 507705238301 786891 621354 S +08:30:27 +Slot[394] 0200 010000 6213544001851481 ------------- 00 106903 000010000000 507700327621010018006213544001851481 507700327621 381131 220699 S +08:30:35 Slot [452] | NOT FINANCIAL TRANSACTION +08:30:37 +Slot[440] 0200 301000 6213545000826713 ------------- 00 872239 000000000000 507700157738030200066213545000826713 507700157738 043565 668899 S +08:30:45 Slot [448] | NOT FINANCIAL TRANSACTION +08:30:56 +Slot[368] 0200 301000 6213545001013097 ------------- 00 161122 000000000000 507708161122015290036213545001013097 507708161122 051567 198901 S +08:30:56 Slot [442] | NOT FINANCIAL TRANSACTION +08:30:58 Slot [443] | NOT FINANCIAL TRANSACTION +08:30:59 +Slot[389] 0200 011000 2206990010001204 ------------- 51 307208 000005000000 507705238303010132002206990010001204 507705238303 296233 621354 S +08:31:06 Slot [465] | NOT FINANCIAL TRANSACTION +08:31:20 Slot [435] | NOT FINANCIAL TRANSACTION +08:31:25 Slot [439] | NOT FINANCIAL TRANSACTION +08:31:34 Slot [376] | NOT FINANCIAL TRANSACTION +08:31:44 Slot [390] | NOT FINANCIAL TRANSACTION +08:31:54 Slot [433] | NOT FINANCIAL TRANSACTION +08:32:00 Slot [424] | NOT FINANCIAL TRANSACTION +08:32:05 Slot [447] | NOT FINANCIAL TRANSACTION +08:32:16 Slot [430] | NOT FINANCIAL TRANSACTION +08:32:23 +Slot[460] 0200 010000 6213545000826713 ------------- 00 872299 000070000000 507700157740030200066213545000826713 507700157740 551988 668899 S +08:32:32 Slot [421] | NOT FINANCIAL TRANSACTION +08:32:33 Slot [478] | NOT FINANCIAL TRANSACTION +08:32:43 Slot [450] | NOT FINANCIAL TRANSACTION +08:32:55 Slot [432] | NOT FINANCIAL TRANSACTION +08:33:02 Slot [467] | NOT FINANCIAL TRANSACTION +08:33:10 Slot [441] | NOT FINANCIAL TRANSACTION +08:33:20 Slot [463] | NOT FINANCIAL TRANSACTION +08:33:36 Slot [456] | NOT FINANCIAL TRANSACTION +08:33:51 Slot [405] | NOT FINANCIAL TRANSACTION +08:33:59 +Slot[462] 0200 010000 6213545000958052 ------------- 00 872360 000100000000 507700157742030200066213545000958052 507700157742 104389 668899 S +08:34:04 Slot [455] | NOT FINANCIAL TRANSACTION +08:34:06 Slot [434] | NOT FINANCIAL TRANSACTION +08:34:14 +Slot[426] 0200 011000 6213548000551281 ------------- 00 161152 000010000000 507708161152015290316213548000551281 507708161152 349060 198901 S +08:34:17 Slot [412] | NOT FINANCIAL TRANSACTION +08:34:28 Slot [485] | NOT FINANCIAL TRANSACTION +08:34:34 Slot [407] | NOT FINANCIAL TRANSACTION +08:34:39 Slot [449] | NOT FINANCIAL TRANSACTION +08:34:50 Slot [461] | NOT FINANCIAL TRANSACTION +08:34:50 +Slot[481] 0200 011000 6213544001718060 ------------- 00 161159 000050000000 507708161159015290156213544001718060 507708161159 571421 198901 S +08:35:00 Slot [475] | NOT FINANCIAL TRANSACTION +08:35:06 Slot [469] | NOT FINANCIAL TRANSACTION +08:35:16 Slot [409] | NOT FINANCIAL TRANSACTION +08:35:17 +Slot[468] 0200 300000 1808930800015877 ------------- 00 872413 000000000000 507701821950034070031808930800015877 507701821950 407322 668899 S +08:35:22 Slot [453] | NOT FINANCIAL TRANSACTION +08:35:32 Slot [474] | NOT FINANCIAL TRANSACTION +08:35:36 +Slot[457] 0420 011000 6213541000125966 ------------- 00 254525 000100000000 507700094221010009006213541000125966 507700094221 -------- 220699 S +08:35:44 Slot [487] | NOT FINANCIAL TRANSACTION +08:35:54 Slot [482] | NOT FINANCIAL TRANSACTION +08:36:05 Slot [472] | NOT FINANCIAL TRANSACTION +08:36:08 Slot [483] | NOT FINANCIAL TRANSACTION +08:36:16 Slot [479] | NOT FINANCIAL TRANSACTION +08:36:26 Slot [444] | NOT FINANCIAL TRANSACTION +08:36:42 Slot [489] | NOT FINANCIAL TRANSACTION +08:36:47 +Slot[471] 0200 010000 6213545000958052 ------------- 51 872485 000080000000 507700157744030200066213545000958052 507700157744 216441 668899 S +08:36:49 +Slot[451] 0420 011000 6213541000125966 0000000000000 00 254525 000100000000 507700094221010009006213541000125966 507700094221 851994 220699 S +08:36:53 Slot [490] | NOT FINANCIAL TRANSACTION +08:37:04 Slot [446] | NOT FINANCIAL TRANSACTION +08:37:10 Slot [459] | NOT FINANCIAL TRANSACTION +08:37:22 Slot [476] | NOT FINANCIAL TRANSACTION +08:37:33 Slot [498] | NOT FINANCIAL TRANSACTION +08:37:35 Slot [436] | NOT FINANCIAL TRANSACTION +08:37:46 Slot [491] | NOT FINANCIAL TRANSACTION +08:37:57 Slot [486] | NOT FINANCIAL TRANSACTION +08:38:07 Slot [497] | NOT FINANCIAL TRANSACTION +08:38:12 Slot [473] | NOT FINANCIAL TRANSACTION +08:38:18 Slot [499] | NOT FINANCIAL TRANSACTION +08:38:30 +Slot[7] 0200 010000 6213545000165906 ------------- 00 223400 000050000000 507700118540010011006213545000165906 507700118540 738461 220699 S +08:38:33 Slot [2] | NOT FINANCIAL TRANSACTION +08:38:45 Slot [470] | NOT FINANCIAL TRANSACTION +08:38:55 Slot [480] | NOT FINANCIAL TRANSACTION +08:39:10 Slot [477] | NOT FINANCIAL TRANSACTION +08:39:14 Slot [495] | NOT FINANCIAL TRANSACTION +08:39:21 Slot [464] | NOT FINANCIAL TRANSACTION +08:39:33 Slot [492] | NOT FINANCIAL TRANSACTION +08:39:48 Slot [14] | NOT FINANCIAL TRANSACTION +08:40:00 Slot [18] | NOT FINANCIAL TRANSACTION +08:40:15 Slot [454] | NOT FINANCIAL TRANSACTION +08:40:15 Slot [484] | NOT FINANCIAL TRANSACTION +08:40:16 Slot [24] | NOT FINANCIAL TRANSACTION +08:40:23 +Slot[466] 0200 011000 6213541000573579 ------------- 00 016162 000100000000 507700195568080002006213541000573579 507700195568 233376 220699 S +08:40:26 Slot [22] | NOT FINANCIAL TRANSACTION +08:40:31 +Slot[3] 0200 301000 6688990050056298 ------------- 00 309504 000000000000 507702729812010066006688990050056298 507702729812 078750 621354 S +08:40:36 Slot [493] | NOT FINANCIAL TRANSACTION +08:40:48 +Slot[12] 0200 311000 6213541000201197 ------------- 00 250513 000000000000 507700335749010019006213541000201197 507700335749 235871 220699 S +08:40:52 Slot [458] | NOT FINANCIAL TRANSACTION +08:40:57 +Slot[488] 0200 301000 2206991200021962 ------------- 00 309602 000000000000 507704522834020015002206991200021962 507704522834 656106 621354 S +08:41:05 Slot [0] | NOT FINANCIAL TRANSACTION +08:41:18 Slot [31] | NOT FINANCIAL TRANSACTION +08:41:19 Slot [4] | NOT FINANCIAL TRANSACTION +08:41:30 Slot [5] | NOT FINANCIAL TRANSACTION +08:41:34 +Slot[16] 0200 011000 6213541000201197 ------------- 00 250514 000030000000 507700335750010019006213541000201197 507700335750 717654 220699 S +08:41:38 +Slot[1] 0200 011000 6688990050056298 ------------- 00 309765 000050000000 507702729814010066006688990050056298 507702729814 647066 621354 S +08:41:41 Slot [21] | NOT FINANCIAL TRANSACTION +08:41:49 +Slot[8] 0200 011000 6213544000177771 ------------- 00 001843 000100000000 507700296874010016006213544000177771 507700296874 999754 220699 S +08:41:50 +Slot[496] 0200 011000 6213543000097237 ------------- 00 240327 000010000000 507700430242010021006213543000097237 507700430242 129523 220699 S +08:41:58 Slot [15] | NOT FINANCIAL TRANSACTION +08:42:09 +Slot[23] 0200 301000 6213541000132616 ------------- 00 161265 000000000000 507708161265000022016213541000132616 507708161265 521226 198901 S +08:42:11 Slot [26] | NOT FINANCIAL TRANSACTION +08:42:11 +Slot[19] 0200 011000 1808930200039709 ------------- 00 309882 000100000000 507703947733010110001808930200039709 507703947733 974850 621354 S +08:42:19 +Slot[10] 0200 011000 6213545001015910 ------------- 00 258616 000100000000 5077012586160421BKPH6213545001015910 507701258616 157405 180893 S +08:42:20 Slot [6] | NOT FINANCIAL TRANSACTION +08:42:22 +Slot[9] 0200 011000 2206991200021962 ------------- 00 309921 000050000000 507704522836020015002206991200021962 507704522836 072560 621354 S +08:42:27 Slot [27] | NOT FINANCIAL TRANSACTION +08:42:33 Slot [46] | NOT FINANCIAL TRANSACTION +08:42:40 +Slot[11] 0200 011000 6213541000132616 ------------- 00 161274 000100000000 507708161274000022016213541000132616 507708161274 601727 198901 S +08:42:43 Slot [25] | NOT FINANCIAL TRANSACTION +08:42:53 +Slot[30] 0200 301000 6213541000201197 ------------- 00 161279 000000000000 507708161279015290266213541000201197 507708161279 481940 198901 S +08:43:01 Slot [494] | NOT FINANCIAL TRANSACTION +08:43:03 +Slot[29] 0200 010000 6213541000710288 ------------- 00 872723 000100000000 507700157749030200066213541000710288 507700157749 779929 668899 S +08:43:09 +Slot[34] 0200 011000 6213541000132616 ------------- 00 161281 000100000000 507708161281000022016213541000132616 507708161281 513682 198901 S +08:43:14 Slot [28] | NOT FINANCIAL TRANSACTION +08:43:18 +Slot[20] 0200 011000 6213545000498182 ------------- 00 250517 000050000000 507700335752010019006213545000498182 507700335752 364824 220699 S +08:43:22 Slot [38] | NOT FINANCIAL TRANSACTION +08:43:30 +Slot[42] 0200 011000 1808930200039709 ------------- 00 310157 000100000000 507703947735010110001808930200039709 507703947735 679903 621354 S +08:43:36 Slot [56] | NOT FINANCIAL TRANSACTION +08:43:41 +Slot[39] 0200 301000 6213541000201197 ------------- 00 161293 000000000000 507708161293015290266213541000201197 507708161293 693376 198901 S +08:43:52 Slot [36] | NOT FINANCIAL TRANSACTION +08:43:55 +Slot[13] 0200 011000 6213545001015910 ------------- 55 258625 000030000000 5077012586250421BKPH6213545001015910 507701258625 349928 180893 S +08:44:05 Slot [52] | NOT FINANCIAL TRANSACTION +08:44:20 Slot [32] | NOT FINANCIAL TRANSACTION +08:44:24 Slot [41] | NOT FINANCIAL TRANSACTION +08:44:31 Slot [47] | NOT FINANCIAL TRANSACTION +08:44:31 +Slot[44] 0200 010000 6213541000710288 ------------- 00 872777 000100000000 507700157751030200066213541000710288 507700157751 530343 668899 S +08:44:46 Slot [40] | NOT FINANCIAL TRANSACTION +08:44:56 Slot [57] | NOT FINANCIAL TRANSACTION +08:45:07 Slot [54] | NOT FINANCIAL TRANSACTION +08:45:15 Slot [37] | NOT FINANCIAL TRANSACTION +08:45:17 +Slot[61] 0200 011000 6213545001015910 ------------- 51 258633 000030000000 5077012586330421BKPH6213545001015910 507701258633 530014 180893 S +08:45:26 Slot [59] | NOT FINANCIAL TRANSACTION +08:45:29 Slot [58] | NOT FINANCIAL TRANSACTION +08:45:45 +Slot[51] 0200 011000 6213548000313641 ------------- 00 258640 000040000000 5077012586400531VTHH6213548000313641 507701258640 900246 180893 S +08:45:50 +Slot[55] 0200 010000 6213541000710288 ------------- 00 872828 000100000000 507700157753030200066213541000710288 507700157753 192054 668899 S +08:45:54 Slot [72] | NOT FINANCIAL TRANSACTION +08:46:03 +Slot[17] 0200 301000 6213548000097012 ------------- 00 161328 000000000000 507708161328015290316213548000097012 507708161328 270959 198901 S +08:46:05 Slot [60] | NOT FINANCIAL TRANSACTION +08:46:14 +Slot[63] 0200 301000 6213545000400121 ------------- 00 258647 031801451725 5077012586470107HSTH6213545000400121 507701258647 105157 180893 S +08:46:24 Slot [48] | NOT FINANCIAL TRANSACTION +08:46:28 Slot [67] | NOT FINANCIAL TRANSACTION +08:46:35 Slot [71] | NOT FINANCIAL TRANSACTION +08:46:37 +Slot[35] 0200 011000 6213548000097012 ------------- 00 161337 000050000000 507708161337015290316213548000097012 507708161337 521390 198901 S +08:46:51 Slot [53] | NOT FINANCIAL TRANSACTION +08:46:58 +Slot[79] 0200 010000 6213543000225002 ------------- 00 872879 000100000000 507702555976030160046213543000225002 507702555976 549162 668899 S +08:47:01 Slot [49] | NOT FINANCIAL TRANSACTION +08:47:11 Slot [80] | NOT FINANCIAL TRANSACTION +08:47:11 +Slot[85] 0200 011000 6688990106443607 ------------- 00 310992 000100000000 507703046874010084006688990106443607 507703046874 333007 621354 S +08:47:25 +Slot[83] 0200 301000 6213548000097012 ------------- 00 161346 000000000000 507708161346015290316213548000097012 507708161346 632409 198901 S +08:47:27 Slot [45] | NOT FINANCIAL TRANSACTION +08:47:28 +Slot[75] 0200 301000 6213545001066020 ------------- 55 258653 031801463325 5077012586530344SVKV6213545001066020 507701258653 994949 180893 S +08:47:30 Slot [78] | NOT FINANCIAL TRANSACTION +08:47:33 Slot [68] | NOT FINANCIAL TRANSACTION +08:47:43 Slot [73] | NOT FINANCIAL TRANSACTION +08:47:54 Slot [89] | NOT FINANCIAL TRANSACTION +08:48:05 Slot [43] | NOT FINANCIAL TRANSACTION +08:48:14 +Slot[91] 0200 301000 6213545001066020 ------------- 55 258658 031801471825 5077012586580344SVKV6213545001066020 507701258658 447315 180893 S +08:48:25 Slot [77] | NOT FINANCIAL TRANSACTION +08:48:32 Slot [88] | NOT FINANCIAL TRANSACTION +08:48:33 +Slot[76] 0200 011000 1808930600043293 ------------- 00 311254 000015000000 507704375510030036001808930600043293 507704375510 011733 621354 S +08:48:40 Slot [65] | NOT FINANCIAL TRANSACTION +08:48:44 +Slot[94] 0200 301000 6213543000018092 ------------- 00 258659 031801474725 5077012586590112CPBR6213543000018092 507701258659 401602 180893 S +08:48:55 Slot [86] | NOT FINANCIAL TRANSACTION +08:49:10 +Slot[66] 0200 301000 1808930600029532 ------------- 00 311404 000000000000 507704256285030024001808930600029532 507704256285 928347 621354 S +08:49:17 Slot [93] | NOT FINANCIAL TRANSACTION +08:49:29 +Slot[103] 0200 010000 6213545000286231 ------------- 00 085486 000050000000 507700140113030002006213545000286231 507700140113 967945 220699 S +08:49:29 Slot [33] | NOT FINANCIAL TRANSACTION +08:49:34 Slot [101] | NOT FINANCIAL TRANSACTION +08:49:43 Slot [95] | NOT FINANCIAL TRANSACTION +08:49:49 +Slot[74] 0200 010000 6213544001535209 ------------- 00 872999 000020000000 507700622562030070026213544001535209 507700622562 717024 668899 S +08:49:53 +Slot[105] 0200 302000 6213544001421798 ------------- 00 873002 000000000000 507702222819030080056213544001421798 507702222819 973783 668899 S +08:49:57 +Slot[70] 0200 300000 1808931700023029 ------------- 00 311555 000000000000 507705200267070017001808931700023029 507705200267 623363 621354 S +08:50:04 Slot [92] | NOT FINANCIAL TRANSACTION +08:50:07 +Slot[50] 0200 011000 6213544002225339 ------------- 00 258663 000070000000 5077012586630321LNTV6213544002225339 507701258663 591759 180893 S +08:50:15 Slot [102] | NOT FINANCIAL TRANSACTION +08:50:19 Slot [107] | NOT FINANCIAL TRANSACTION +08:50:22 +Slot[81] 0200 010000 6213545000286231 ------------- 00 085488 000010000000 507700140115030002006213545000286231 507700140115 799207 220699 S +08:50:30 Slot [100] | NOT FINANCIAL TRANSACTION +08:50:36 Slot [114] | NOT FINANCIAL TRANSACTION +08:50:41 Slot [108] | NOT FINANCIAL TRANSACTION +08:50:52 Slot [82] | NOT FINANCIAL TRANSACTION +08:51:10 +Slot[104] 0200 010000 1808931700023029 ------------- 00 311785 000058000000 507705200269070017001808931700023029 507705200269 138361 621354 S +08:51:14 Slot [122] | NOT FINANCIAL TRANSACTION +08:51:16 Slot [87] | NOT FINANCIAL TRANSACTION +08:51:24 Slot [119] | NOT FINANCIAL TRANSACTION +08:51:27 +Slot[69] 0200 300000 6213544001421798 ------------- 00 873062 000000000000 507702222820030080056213544001421798 507702222820 170552 668899 S +08:51:35 Slot [117] | NOT FINANCIAL TRANSACTION +08:51:38 Slot [115] | NOT FINANCIAL TRANSACTION +08:51:46 Slot [96] | NOT FINANCIAL TRANSACTION +08:51:48 +Slot[110] 0200 010000 6213544001993895 ------------- 00 873077 000030000000 507700857910030150046213544001993895 507700857910 183774 668899 S +08:51:56 Slot [62] | NOT FINANCIAL TRANSACTION +08:52:07 Slot [64] | NOT FINANCIAL TRANSACTION +08:52:13 +Slot[136] 0200 010000 6213544001421798 ------------- 00 873092 000100000000 507702222821030080056213544001421798 507702222821 981748 668899 S +08:52:17 Slot [97] | NOT FINANCIAL TRANSACTION +08:52:18 +Slot[124] 0200 011000 6688990040131060 ------------- 00 312051 000030000000 507704986000010123006688990040131060 507704986000 908849 621354 S +08:52:29 Slot [84] | NOT FINANCIAL TRANSACTION +08:52:33 Slot [98] | NOT FINANCIAL TRANSACTION +08:52:39 Slot [113] | NOT FINANCIAL TRANSACTION +08:52:40 Slot [90] | NOT FINANCIAL TRANSACTION +08:52:55 Slot [121] | NOT FINANCIAL TRANSACTION +08:52:56 Slot [159] | NOT FINANCIAL TRANSACTION +08:53:05 Slot [144] | NOT FINANCIAL TRANSACTION +08:53:14 +Slot[112] 0200 010000 1808930500023874 ------------- 00 873133 000100000000 507702720877035150021808930500023874 507702720877 563290 668899 S +08:53:21 Slot [134] | NOT FINANCIAL TRANSACTION +08:53:23 +Slot[99] 0200 010000 6213544001941480 ------------- 00 873145 000050000000 507700285487030100056213544001941480 507700285487 821596 668899 S +08:53:26 +Slot[148] 0200 310000 6213541000705916 ------------- 00 020973 000000000000 507700262992010014006213541000705916 507700262992 625211 220699 S +08:53:36 Slot [142] | NOT FINANCIAL TRANSACTION +08:53:42 Slot [111] | NOT FINANCIAL TRANSACTION +08:53:47 Slot [126] | NOT FINANCIAL TRANSACTION +08:53:50 +Slot[128] 0200 010000 6213541000705916 ------------- 51 020974 000032000000 507700262993010014006213541000705916 507700262993 383866 220699 S +08:53:51 +Slot[149] 0200 011000 6688990108601707 ------------- 00 312393 000005000000 507702729819010066006688990108601707 507702729819 933126 621354 S +08:53:58 Slot [140] | NOT FINANCIAL TRANSACTION +08:54:08 Slot [155] | NOT FINANCIAL TRANSACTION +08:54:18 +Slot[131] 0200 010000 6213541000705916 ------------- 51 020977 000030000000 507700262995010014006213541000705916 507700262995 710736 220699 S +08:54:20 +Slot[146] 0200 010000 1808930500023874 ------------- 00 873188 000100000000 507702720879035150021808930500023874 507702720879 578773 668899 S +08:54:23 Slot [109] | NOT FINANCIAL TRANSACTION +08:54:33 Slot [127] | NOT FINANCIAL TRANSACTION +08:54:44 Slot [151] | NOT FINANCIAL TRANSACTION +08:54:44 Slot [150] | NOT FINANCIAL TRANSACTION +08:54:46 +Slot[139] 0200 011000 2206990000135350 ------------- 51 312564 000040000000 507705238332010132002206990000135350 507705238332 967829 621354 S +08:54:53 +Slot[154] 0200 010000 6213541000705916 ------------- 00 020980 000027000000 507700262997010014006213541000705916 507700262997 034621 220699 S +08:54:59 Slot [123] | NOT FINANCIAL TRANSACTION +08:55:08 +Slot[118] 0200 010000 6213544001351268 ------------- 00 258692 000100000000 5077012586920483XKNH6213544001351268 507701258692 731625 180893 S +08:55:14 +Slot[138] 0200 301000 6213545000893226 ------------- 00 258693 031801541925 5077012586930421BKPH6213545000893226 507701258693 201404 180893 S +08:55:15 Slot [157] | NOT FINANCIAL TRANSACTION +08:55:23 +Slot[135] 0200 301000 2206990000135350 ------------- 00 312695 000000000000 507705238333010132002206990000135350 507705238333 016751 621354 S +08:55:25 Slot [132] | NOT FINANCIAL TRANSACTION +08:55:36 Slot [171] | NOT FINANCIAL TRANSACTION +08:55:46 Slot [120] | NOT FINANCIAL TRANSACTION +08:55:53 Slot [152] | NOT FINANCIAL TRANSACTION +08:56:04 Slot [167] | NOT FINANCIAL TRANSACTION +08:56:06 +Slot[116] 0200 011000 2206990000135350 ------------- 00 312832 000030000000 507705238335010132002206990000135350 507705238335 934829 621354 S +08:56:14 Slot [156] | NOT FINANCIAL TRANSACTION +08:56:25 Slot [129] | NOT FINANCIAL TRANSACTION +08:56:33 +Slot[130] 0200 012000 6213545000893226 ------------- 00 258704 000084000000 5077012587040421BKPH6213545000893226 507701258704 775588 180893 S +08:56:40 Slot [168] | NOT FINANCIAL TRANSACTION +08:56:45 +Slot[175] 0200 012000 6213544000797776 ------------- 00 305467 000030000000 507700079207010007006213544000797776 507700079207 465164 220699 S +08:56:48 Slot [141] | NOT FINANCIAL TRANSACTION +08:56:56 Slot [166] | NOT FINANCIAL TRANSACTION +08:57:06 Slot [172] | NOT FINANCIAL TRANSACTION +08:57:17 +Slot[169] 0200 300000 6213545000793616 ------------- 00 873339 000000000000 507701795984032030016213545000793616 507701795984 931368 668899 S +08:57:18 +Slot[160] 0200 301000 6213541000385958 ------------- 00 258709 031801562025 5077012587090221XKKM6213541000385958 507701258709 107925 180893 S +08:57:27 Slot [174] | NOT FINANCIAL TRANSACTION +08:57:33 Slot [147] | NOT FINANCIAL TRANSACTION +08:57:37 +Slot[164] 0200 011000 6213545001015910 ------------- 00 258711 000028000000 5077012587110421BKPH6213545001015910 507701258711 901912 180893 S +08:57:48 Slot [153] | NOT FINANCIAL TRANSACTION +08:57:48 +Slot[133] 0200 010000 6213545000433627 ------------- 00 106909 000100000000 507700327625010018006213545000433627 507700327625 549961 220699 S +08:57:50 Slot [178] | NOT FINANCIAL TRANSACTION +08:57:57 +Slot[183] 0200 011000 6213541000385958 ------------- 00 258716 000070000000 5077012587160221XKKM6213541000385958 507701258716 156710 180893 S +08:58:08 Slot [195] | NOT FINANCIAL TRANSACTION +08:58:19 +Slot[125] 0200 300000 6213544002194907 ------------- 14 873369 000000000000 507702217004030080046213544002194907 507702217004 547069 668899 S +08:58:19 Slot [170] | NOT FINANCIAL TRANSACTION +08:58:26 +Slot[191] 0200 010000 6213545000793616 ------------- 00 873373 000100000000 507701795985032030016213545000793616 507701795985 819419 668899 S +08:58:35 Slot [143] | NOT FINANCIAL TRANSACTION +08:58:41 +Slot[161] 0200 311000 6213545000809370 ------------- 00 078835 000000000000 507700132764030001006213545000809370 507700132764 212756 220699 S +08:58:46 Slot [189] | NOT FINANCIAL TRANSACTION +08:58:52 Slot [181] | NOT FINANCIAL TRANSACTION +08:58:57 Slot [204] | NOT FINANCIAL TRANSACTION +08:59:06 +Slot[202] 0200 010000 6213545000433627 ------------- 00 106912 000010000000 507700327627010018006213545000433627 507700327627 770147 220699 S +08:59:12 Slot [158] | NOT FINANCIAL TRANSACTION +08:59:18 +Slot[182] 0200 010000 6213545000793616 ------------- 00 873411 000100000000 507701795987032030016213545000793616 507701795987 812008 668899 S +08:59:19 +Slot[197] 0200 011000 6213545000809370 ------------- 00 078836 000030000000 507700132765030001006213545000809370 507700132765 679873 220699 S +08:59:27 Slot [193] | NOT FINANCIAL TRANSACTION +08:59:38 Slot [200] | NOT FINANCIAL TRANSACTION +08:59:49 Slot [177] | NOT FINANCIAL TRANSACTION +08:59:54 Slot [210] | NOT FINANCIAL TRANSACTION +09:00:03 Slot [198] | NOT FINANCIAL TRANSACTION +09:00:10 +Slot[213] 0200 010000 6213544001039905 ------------- 00 873446 000020000000 507701855293033110016213544001039905 507701855293 603144 668899 S +09:00:14 Slot [106] | NOT FINANCIAL TRANSACTION +09:00:15 Slot [163] | NOT FINANCIAL TRANSACTION +09:00:25 Slot [165] | NOT FINANCIAL TRANSACTION +09:00:36 Slot [187] | NOT FINANCIAL TRANSACTION +09:00:47 Slot [211] | NOT FINANCIAL TRANSACTION +09:00:56 Slot [206] | NOT FINANCIAL TRANSACTION +09:01:02 Slot [162] | NOT FINANCIAL TRANSACTION +09:01:13 Slot [145] | NOT FINANCIAL TRANSACTION +09:01:24 Slot [205] | NOT FINANCIAL TRANSACTION +09:01:27 +Slot[196] 0200 011000 6213545000809370 ------------- 00 078840 000100000000 507700132769030001006213545000809370 507700132769 018834 220699 S +09:01:34 Slot [221] | NOT FINANCIAL TRANSACTION +09:01:45 Slot [217] | NOT FINANCIAL TRANSACTION +09:01:55 +Slot[214] 0200 010000 6213544002037452 ------------- 51 873543 000010000000 507702209538030060096213544002037452 507702209538 284245 668899 S +09:01:58 Slot [194] | NOT FINANCIAL TRANSACTION +09:02:03 +Slot[222] 0200 010000 6213544002275920 ------------- 00 873553 000030000000 507702415033030010116213544002275920 507702415033 359276 668899 S +09:02:07 Slot [226] | NOT FINANCIAL TRANSACTION +09:02:11 +Slot[180] 0200 011000 1808930600012561 ------------- 00 314204 000060000000 507704429929030041001808930600012561 507704429929 915134 621354 S +09:02:20 Slot [190] | NOT FINANCIAL TRANSACTION +09:02:29 +Slot[176] 0200 012000 2206990000063453 ------------- 00 258740 000030000000 5077022587400108THNG2206990000063453 507702258740 111475 180893 S +09:02:33 Slot [225] | NOT FINANCIAL TRANSACTION +09:02:33 +Slot[184] 0200 010000 6213544002174586 ------------- 00 873591 000030000000 507700157760030200066213544002174586 507700157760 070537 668899 S +09:02:40 +Slot[137] 0200 011000 6688990102734504 ------------- 00 314363 000005000000 507703968052010112006688990102734504 507703968052 214422 621354 S +09:02:41 Slot [218] | NOT FINANCIAL TRANSACTION +09:02:52 Slot [224] | NOT FINANCIAL TRANSACTION +09:02:58 +Slot[173] 0200 301000 6213545001027543 ------------- 00 258743 031802020225 5077022587430262PSLB6213545001027543 507702258743 228774 180893 S +09:03:00 Slot [207] | NOT FINANCIAL TRANSACTION +09:03:08 Slot [208] | NOT FINANCIAL TRANSACTION +09:03:10 +Slot[223] 0200 011000 6213542000047093 ------------- 00 250535 000100000000 507700335764010019006213542000047093 507700335764 399673 220699 S +09:03:19 Slot [215] | NOT FINANCIAL TRANSACTION +09:03:36 Slot [192] | NOT FINANCIAL TRANSACTION +09:03:42 Slot [231] | NOT FINANCIAL TRANSACTION +09:03:47 Slot [188] | NOT FINANCIAL TRANSACTION +09:03:58 Slot [220] | NOT FINANCIAL TRANSACTION +09:04:00 +Slot[199] 0200 010000 6213545001027543 ------------- 00 258751 000050000000 5077022587510262PSLB6213545001027543 507702258751 787481 180893 S +09:04:02 Slot [185] | NOT FINANCIAL TRANSACTION +09:04:08 Slot [179] | NOT FINANCIAL TRANSACTION +09:04:15 +Slot[186] 0200 010000 6213544001532107 ------------- 00 873668 000030000000 507702730308030130056213544001532107 507702730308 494891 668899 S +09:04:19 Slot [227] | NOT FINANCIAL TRANSACTION +09:04:29 Slot [229] | NOT FINANCIAL TRANSACTION +09:04:39 Slot [219] | NOT FINANCIAL TRANSACTION +09:04:50 +Slot[212] 0200 011000 6213542000047093 ------------- 00 250538 000030000000 507700335766010019006213542000047093 507700335766 795380 220699 S +09:04:56 Slot [230] | NOT FINANCIAL TRANSACTION +09:05:04 Slot [236] | NOT FINANCIAL TRANSACTION +09:05:07 +Slot[216] 0200 010000 6213544002174586 ------------- 55 873704 000020000000 507700157762030200066213544002174586 507700157762 612502 668899 S +09:05:11 Slot [239] | NOT FINANCIAL TRANSACTION +09:05:16 Slot [232] | NOT FINANCIAL TRANSACTION +09:05:26 Slot [235] | NOT FINANCIAL TRANSACTION +09:05:39 +Slot[234] 0200 301000 6213545000817274 ------------- 00 258758 031802044425 5077022587580262PSLB6213545000817274 507702258758 998699 180893 S +09:05:52 Slot [209] | NOT FINANCIAL TRANSACTION +09:06:06 Slot [250] | NOT FINANCIAL TRANSACTION +09:06:07 Slot [242] | NOT FINANCIAL TRANSACTION +09:06:19 Slot [201] | NOT FINANCIAL TRANSACTION +09:06:23 +Slot[238] 0200 011000 6213545000817274 ------------- 00 258762 000004000000 5077022587620262PSLB6213545000817274 507702258762 746298 180893 S +09:06:29 +Slot[252] 0200 010000 6213544002174586 ------------- 00 873768 000020000000 507700157765030200066213544002174586 507700157765 113879 668899 S +09:06:32 +Slot[228] 0200 011000 6688990107890004 ------------- 00 315193 000100000000 507704522851020015006688990107890004 507704522851 435961 621354 S +09:06:34 +Slot[245] 0200 301000 6688990105444606 ------------- 55 315209 000000000000 507704964223150011006688990105444606 507704964223 068745 621354 S +09:06:35 Slot [240] | NOT FINANCIAL TRANSACTION +09:06:45 Slot [203] | NOT FINANCIAL TRANSACTION +09:06:47 +Slot[248] 0200 302000 6213545000501191 ------------- 00 258765 031802055125 5077022587650441VT526213545000501191 507702258765 012861 180893 S +09:06:51 +Slot[258] 0200 011000 1808930200039915 ------------- 55 315269 000050000000 507702823436010076001808930200039915 507702823436 278587 621354 S +09:06:57 +Slot[247] 0200 301000 6688990105444606 ------------- 00 315288 000000000000 507704964224150011006688990105444606 507704964224 643660 621354 S +09:07:01 Slot [244] | NOT FINANCIAL TRANSACTION +09:07:08 Slot [243] | NOT FINANCIAL TRANSACTION +09:07:08 +Slot[253] 0200 011000 6213542000047093 ------------- 00 250541 000100000000 507700335768010019006213542000047093 507700335768 182367 220699 S +09:07:13 +Slot[246] 0200 011000 1808930200039915 ------------- 00 315345 000050000000 507702823438010076001808930200039915 507702823438 932826 621354 S +09:07:16 Slot [260] | NOT FINANCIAL TRANSACTION +09:07:18 +Slot[256] 0200 011000 6213545001100761 ------------- 00 161645 000030000000 507709161645015290316213545001100761 507709161645 198178 198901 S +09:07:28 Slot [273] | NOT FINANCIAL TRANSACTION +09:07:28 +Slot[265] 0200 011000 1888880000056945 ------------- 51 315392 000006000000 507704518885020014001888880000056945 507704518885 490148 621354 S +09:07:33 Slot [241] | NOT FINANCIAL TRANSACTION +09:07:38 Slot [251] | NOT FINANCIAL TRANSACTION +09:07:50 Slot [249] | NOT FINANCIAL TRANSACTION +09:07:58 Slot [264] | NOT FINANCIAL TRANSACTION +09:08:00 Slot [276] | NOT FINANCIAL TRANSACTION +09:08:01 +Slot[269] 0200 011000 1888880000090175 ------------- 55 315549 000020000000 507702705351140009001888880000090175 507702705351 510485 621354 S +09:08:04 +Slot[254] 0200 011000 6688990105444606 ------------- 00 315550 000010000000 507704964226150011006688990105444606 507704964226 725735 621354 S +09:08:06 +Slot[268] 0200 301000 1888880000056945 ------------- 00 315553 000000000000 507704518886020014001888880000056945 507704518886 657663 621354 S +09:08:10 Slot [279] | NOT FINANCIAL TRANSACTION +09:08:16 Slot [261] | NOT FINANCIAL TRANSACTION +09:08:22 +Slot[233] 0200 301000 6688990060014774 ------------- 00 315644 000000000000 507705291111200014006688990060014774 507705291111 646389 621354 S +09:08:26 +Slot[266] 0200 011000 1888880000090175 ------------- 00 315630 000020000000 507702705353140009001888880000090175 507702705353 545401 621354 S +09:08:27 Slot [262] | NOT FINANCIAL TRANSACTION +09:08:38 Slot [274] | NOT FINANCIAL TRANSACTION +09:08:42 +Slot[257] 0200 301000 6213544000055589 ------------- 00 161668 000000000000 507709161668015290316213544000055589 507709161668 762105 198901 S +09:08:54 Slot [284] | NOT FINANCIAL TRANSACTION +09:09:05 Slot [270] | NOT FINANCIAL TRANSACTION +09:09:12 Slot [267] | NOT FINANCIAL TRANSACTION +09:09:14 +Slot[263] 0200 010000 6213544002137344 ------------- 00 873884 000100000000 507700145705030200056213544002137344 507700145705 497189 668899 S +09:09:16 Slot [299] | NOT FINANCIAL TRANSACTION +09:09:21 +Slot[280] 0200 011000 6213544000055589 ------------- 00 161679 000100000000 507709161679015290316213544000055589 507709161679 231360 198901 S +09:09:28 Slot [278] | NOT FINANCIAL TRANSACTION +09:09:39 Slot [277] | NOT FINANCIAL TRANSACTION +09:09:44 +Slot[293] 0200 011000 6688990107890004 ------------- 00 315985 000100000000 507704522854020015006688990107890004 507704522854 518128 621354 S +09:09:46 +Slot[285] 0200 010000 1808931700003906 ------------- 00 873905 000050000000 507700699150030030011808931700003906 507700699150 403993 668899 S +09:09:47 +Slot[287] 0200 010000 6213545000501191 ------------- 00 258779 000100000000 5077022587790441VT526213545000501191 507702258779 439186 180893 S +09:09:48 +Slot[289] 0200 010000 1808930200056240 ------------- 00 315982 000050000000 507704993819160021001808930200056240 507704993819 411474 621354 S +09:09:59 +Slot[304] 0200 011000 6688990060014774 ------------- 00 316050 000030000000 507705291113200014006688990060014774 507705291113 168334 621354 S +09:09:59 Slot [281] | NOT FINANCIAL TRANSACTION +09:10:11 Slot [275] | NOT FINANCIAL TRANSACTION +09:10:14 Slot [309] | NOT FINANCIAL TRANSACTION +09:10:14 +Slot[296] 0200 011000 6213544000055589 ------------- 00 161701 000050000000 507709161701015290316213544000055589 507709161701 725639 198901 S +09:10:16 Slot [291] | NOT FINANCIAL TRANSACTION +09:10:21 Slot [294] | NOT FINANCIAL TRANSACTION +09:10:32 Slot [259] | NOT FINANCIAL TRANSACTION +09:10:33 +Slot[286] 0200 010000 6213544002137344 ------------- 00 873934 000100000000 507700145707030200056213544002137344 507700145707 605002 668899 S +09:10:42 +Slot[303] 0200 301000 6213544000055589 ------------- 00 161710 000000000000 507709161710015290316213544000055589 507709161710 755444 198901 S +09:10:47 Slot [271] | NOT FINANCIAL TRANSACTION +09:10:58 Slot [282] | NOT FINANCIAL TRANSACTION +09:11:10 +Slot[298] 0200 011000 6688990107890004 ------------- 00 316365 000005000000 507704522856020015006688990107890004 507704522856 907519 621354 S +09:11:13 Slot [272] | NOT FINANCIAL TRANSACTION +09:11:16 Slot [317] | NOT FINANCIAL TRANSACTION +09:11:29 Slot [288] | NOT FINANCIAL TRANSACTION +09:12:18 Slot [307] | NOT FINANCIAL TRANSACTION +09:12:33 Slot [329] | NOT FINANCIAL TRANSACTION +09:13:20 Slot [237] | NOT FINANCIAL TRANSACTION +09:14:22 Slot [314] | NOT FINANCIAL TRANSACTION +09:14:28 Slot [313] | NOT FINANCIAL TRANSACTION +09:14:54 +Slot[315] 0200 011000 6688990601080706 ------------- 00 317064 000100000000 507703906890010106006688990601080706 507703906890 369715 621354 S +09:15:02 +Slot[336] 0420 011000 6688990601080706 ------------- 00 317064 000100000000 507703906890010106006688990601080706 507703906890 -------- 621354 S +09:15:16 Slot [323] | NOT FINANCIAL TRANSACTION +09:15:24 Slot [324] | NOT FINANCIAL TRANSACTION +09:15:24 +Slot[331] 0200 301000 6688990601080706 ------------- 00 317266 000000000000 507703906891010106006688990601080706 507703906891 530657 621354 S +09:15:31 +Slot[283] 0200 010000 6213545000719959 ------------- 00 874166 000100000000 507702150626030200256213545000719959 507702150626 059439 668899 S +09:15:47 +Slot[321] 0200 301000 6213544001929410 ------------- 00 874179 000000000000 507702420054030010126213544001929410 507702420054 406415 668899 S +09:16:01 +Slot[319] 0200 011000 6688990103495204 ------------- 00 317400 000080000000 507704964228150011006688990103495204 507704964228 470825 621354 S +09:16:03 +Slot[255] 0200 301000 6688990104054406 ------------- 00 317413 000000000000 507703498969060022006688990104054406 507703498969 267401 621354 S +09:16:16 +Slot[295] 0420 011000 6688990601080706 0000000000000 00 317064 000100000000 507703906890010106006688990601080706 507703906890 975229 621354 S +09:16:26 Slot [318] | NOT FINANCIAL TRANSACTION +09:16:29 Slot [300] | NOT FINANCIAL TRANSACTION +09:16:32 +Slot[326] 0420 010000 6213544001980306 ------------- 00 258809 000100000000 5077022588090522XYXH6213544001980306 507702258809 -------- 180893 S +09:16:46 Slot [302] | NOT FINANCIAL TRANSACTION +09:16:50 +Slot[340] 0200 301000 6688990601448200 ------------- 00 258823 031802155225 5077022588230369SLVL6688990601448200 507702258823 501007 180893 S +09:16:52 +Slot[312] 0200 011000 6688990104054406 ------------- 00 317559 000005000000 507703498971060022006688990104054406 507703498971 145210 621354 S +09:17:01 Slot [306] | NOT FINANCIAL TRANSACTION +09:17:13 Slot [316] | NOT FINANCIAL TRANSACTION +09:17:16 +Slot[355] 0200 302000 6213544001980306 ------------- 00 258825 031802162025 5077022588250522XYXH6213544001980306 507702258825 733365 180893 S +09:17:23 +Slot[325] 0200 301000 1808930400001731 ------------- 00 874248 000000000000 507701855304033110011808930400001731 507701855304 465741 668899 S +09:17:28 Slot [334] | NOT FINANCIAL TRANSACTION +09:17:28 Slot [311] | NOT FINANCIAL TRANSACTION +09:17:33 Slot [339] | NOT FINANCIAL TRANSACTION +09:17:38 Slot [301] | NOT FINANCIAL TRANSACTION +09:17:47 +Slot[310] 0200 010000 6688990601448200 ------------- 00 258831 000050000000 5077022588310369SLVL6688990601448200 507702258831 040114 180893 S +09:17:52 Slot [308] | NOT FINANCIAL TRANSACTION +09:18:01 +Slot[297] 0200 010000 1808930400001731 ------------- 00 874275 000100000000 507701855305033110011808930400001731 507701855305 712494 668899 S +09:18:05 Slot [341] | NOT FINANCIAL TRANSACTION +09:18:06 +Slot[350] 0200 301000 6688990108425305 ------------- 00 317833 000000000000 507703498972060022006688990108425305 507703498972 226614 621354 S +09:18:10 +Slot[349] 0200 301000 6688990101105805 ------------- 00 258835 031802171425 5077022588350141HQBR6688990101105805 507702258835 929146 180893 S +09:18:22 Slot [338] | NOT FINANCIAL TRANSACTION +09:18:30 Slot [332] | NOT FINANCIAL TRANSACTION +09:18:30 +Slot[328] 0200 010000 6213545000954515 ------------- 00 258837 000050000000 5077022588370368KMMX6213545000954515 507702258837 645611 180893 S +09:18:40 +Slot[352] 0200 010000 6688990601448200 ------------- 00 258839 000050000000 5077022588390369SLVL6688990601448200 507702258839 473241 180893 S +09:18:45 +Slot[364] 0200 302000 1808930400001731 ------------- 42 874314 000000000000 507701855307033110011808930400001731 507701855307 639255 668899 S +09:18:52 +Slot[305] 0200 011000 6688990101105805 ------------- 00 258845 000006000000 5077022588450141HQBR6688990101105805 507702258845 259991 180893 S +09:18:57 +Slot[345] 0200 010000 6213544001980306 ------------- 00 258848 000100000000 5077022588480522XYXH6213544001980306 507702258848 669369 180893 S +09:19:03 +Slot[343] 0200 010000 6213544001804381 ------------- 00 258850 000050000000 5077022588500121SKBR6213544001804381 507702258850 357400 180893 S +09:19:15 Slot [330] | NOT FINANCIAL TRANSACTION +09:19:20 +Slot[337] 0200 302000 1808930400001731 ------------- 42 874330 000000000000 507701855309033110011808930400001731 507701855309 931466 668899 S +09:19:28 +Slot[354] 0200 010000 6213545000954515 ------------- 61 258858 000200000000 5077022588580368KMMX6213545000954515 507702258858 493309 180893 S +09:19:32 Slot [320] | NOT FINANCIAL TRANSACTION +09:19:36 Slot [342] | NOT FINANCIAL TRANSACTION +09:19:44 +Slot[335] 0200 012000 6688990108425305 ------------- 00 318200 000100000000 507703498975060022006688990108425305 507703498975 808537 621354 S +09:19:50 Slot [369] | NOT FINANCIAL TRANSACTION +09:20:03 Slot [347] | NOT FINANCIAL TRANSACTION +09:20:04 +Slot[366] 0200 302000 6213548000036853 ------------- 00 874366 000000000000 507701855311033110016213548000036853 507701855311 490527 668899 S +09:20:07 +Slot[290] 0200 010000 6213545000954515 ------------- 00 258862 000010000000 5077022588620368KMMX6213545000954515 507702258862 691536 180893 S +09:20:14 +Slot[374] 0200 011000 6688990102407200 ------------- 00 258863 000020000000 5077022588630369SLVL6688990102407200 507702258863 052888 180893 S +09:20:16 Slot [292] | NOT FINANCIAL TRANSACTION +09:20:16 +Slot[327] 0200 011000 1808930600032916 ------------- 00 318311 000010000000 507704429964030041001808930600032916 507704429964 718999 621354 S +09:20:25 Slot [333] | NOT FINANCIAL TRANSACTION +09:20:34 Slot [365] | NOT FINANCIAL TRANSACTION +09:20:36 Slot [384] | NOT FINANCIAL TRANSACTION +09:20:47 Slot [358] | NOT FINANCIAL TRANSACTION +09:20:56 +Slot[360] 0200 010000 6688990103994206 ------------- 00 318490 000100000000 507704522877020015006688990103994206 507704522877 372910 621354 S +09:20:58 Slot [373] | NOT FINANCIAL TRANSACTION +09:21:14 Slot [353] | NOT FINANCIAL TRANSACTION +09:21:20 +Slot[362] 0200 011000 6213545000954515 ------------- 51 258875 000007000000 5077022588750368KMMX6213545000954515 507702258875 493641 180893 S +09:21:31 Slot [372] | NOT FINANCIAL TRANSACTION +09:21:33 +Slot[380] 0200 010000 6213548000036853 ------------- 00 874434 000050000000 507701855313033110016213548000036853 507701855313 441208 668899 S +09:21:36 Slot [382] | NOT FINANCIAL TRANSACTION +09:21:37 +Slot[379] 0200 301000 6213545000954515 ------------- 00 258878 031802204025 5077022588780368KMMX6213545000954515 507702258878 174808 180893 S +09:21:47 Slot [322] | NOT FINANCIAL TRANSACTION +09:21:47 +Slot[348] 0200 301000 6213544001180972 ------------- 00 161871 000000000000 507709161871015290266213544001180972 507709161871 185648 198901 S +09:21:51 +Slot[361] 0200 010000 6213544002137344 ------------- 00 874448 000100000000 507700157769030200066213544002137344 507700157769 150740 668899 S +09:21:59 +Slot[346] 0200 011000 1808930300019908 ------------- 00 318689 000050000000 507703823280010098001808930300019908 507703823280 339978 621354 S +09:22:02 +Slot[377] 0200 010000 6688990103994206 ------------- 00 318733 000100000000 507704522879020015006688990103994206 507704522879 880900 621354 S +09:22:03 Slot [378] | NOT FINANCIAL TRANSACTION +09:22:08 +Slot[370] 0200 011000 6213544001180972 ------------- 00 161873 000100000000 507709161873015290266213544001180972 507709161873 147507 198901 S +09:22:14 Slot [363] | NOT FINANCIAL TRANSACTION +09:22:25 Slot [385] | NOT FINANCIAL TRANSACTION +09:22:33 Slot [371] | NOT FINANCIAL TRANSACTION +09:22:38 Slot [351] | NOT FINANCIAL TRANSACTION +09:22:41 +Slot[367] 0200 011000 6213545000954515 ------------- 00 258884 000005000000 5077022588840368KMMX6213545000954515 507702258884 423102 180893 S +09:22:42 +Slot[344] 0200 010000 6688990106050402 ------------- 00 318889 000010000000 507703498977060022006688990106050402 507703498977 169338 621354 S +09:22:43 +Slot[359] 0200 011000 1808930600032916 ------------- 00 318872 000100000000 507704429966030041001808930600032916 507704429966 197391 621354 S +09:22:52 Slot [397] | NOT FINANCIAL TRANSACTION +09:22:58 +Slot[386] 0200 011000 6688990105268302 ------------- 00 318952 000010000000 507702388582010063006688990105268302 507702388582 246254 621354 S +09:23:03 Slot [410] | NOT FINANCIAL TRANSACTION +09:23:12 +Slot[388] 0200 301000 6213545000939987 ------------- 00 161894 000000000000 507709161894015290266213545000939987 507709161894 662700 198901 S +09:23:18 Slot [357] | NOT FINANCIAL TRANSACTION +09:23:23 +Slot[414] 0200 010000 1888880000094458 ------------- 00 319035 000100000000 507704568657020019001888880000094458 507704568657 802139 621354 S +09:23:26 +Slot[413] 0200 301000 6213545000939987 ------------- 00 161901 000000000000 507709161901015290266213545000939987 507709161901 319695 198901 S +09:23:28 +Slot[408] 0200 302000 6688990602840207 ------------- 00 319081 000000000000 507704522880020015006688990602840207 507704522880 254543 621354 S +09:23:29 Slot [401] | NOT FINANCIAL TRANSACTION +09:23:40 Slot [403] | NOT FINANCIAL TRANSACTION +09:23:40 Slot [393] | NOT FINANCIAL TRANSACTION +09:23:46 +Slot[398] 0200 011000 6213545000939987 ------------- 00 161906 000100000000 507709161906015290266213545000939987 507709161906 828656 198901 S +09:23:48 +Slot[420] 0200 010000 6213544002137344 ------------- 00 874542 000088000000 507700157771030200066213544002137344 507700157771 632957 668899 S +09:23:55 Slot [391] | NOT FINANCIAL TRANSACTION +09:24:13 Slot [418] | NOT FINANCIAL TRANSACTION +09:24:27 +Slot[392] 0200 011000 6213545000939987 ------------- 00 161920 000040000000 507709161920015290266213545000939987 507709161920 802119 198901 S +09:24:27 Slot [416] | NOT FINANCIAL TRANSACTION +09:24:39 Slot [356] | NOT FINANCIAL TRANSACTION +09:24:40 +Slot[425] 0200 010000 6688990602840207 ------------- 00 319310 000100000000 507704522882020015006688990602840207 507704522882 796533 621354 S +09:24:40 Slot [383] | NOT FINANCIAL TRANSACTION +09:24:42 Slot [411] | NOT FINANCIAL TRANSACTION +09:24:55 Slot [415] | NOT FINANCIAL TRANSACTION +09:25:07 +Slot[387] 0200 011000 1808930600032916 ------------- 00 319419 000100000000 507704429968030041001808930600032916 507704429968 497956 621354 S +09:25:10 Slot [395] | NOT FINANCIAL TRANSACTION +09:25:13 +Slot[396] 0200 010000 6213545000992531 ------------- 00 106922 000100000000 507700327632010018006213545000992531 507700327632 568766 220699 S +09:25:14 Slot [431] | NOT FINANCIAL TRANSACTION +09:25:16 Slot [423] | NOT FINANCIAL TRANSACTION +09:25:26 Slot [402] | NOT FINANCIAL TRANSACTION +09:25:43 +Slot[400] 0200 010000 6213544000366945 ------------- 61 258908 000200000000 5077022589080107HSTH6213544000366945 507702258908 230073 180893 S +09:25:44 Slot [429] | NOT FINANCIAL TRANSACTION +09:25:52 Slot [375] | NOT FINANCIAL TRANSACTION +09:25:56 +Slot[381] 0200 011000 6213545000427496 ------------- 61 161948 000200000000 507709161948015290316213545000427496 507709161948 935951 198901 S +09:26:01 +Slot[417] 0200 010000 6213544000366945 ------------- 00 258913 000100000000 5077022589130107HSTH6213544000366945 507702258913 110242 180893 S +09:26:11 +Slot[438] 0200 011000 6213545000427496 ------------- 61 161951 000200000000 507709161951015290316213545000427496 507709161951 926280 198901 S +09:26:14 Slot [428] | NOT FINANCIAL TRANSACTION +09:26:29 Slot [399] | NOT FINANCIAL TRANSACTION +09:26:32 +Slot[406] 0200 010000 6213545000992531 ------------- 00 106925 000025000000 507700327634010018006213545000992531 507700327634 811811 220699 S +09:26:33 +Slot[437] 0200 010000 6213544000527223 ------------- 00 874671 000010000000 507702092635030200216213544000527223 507702092635 184500 668899 S +09:26:40 Slot [419] | NOT FINANCIAL TRANSACTION +09:26:46 Slot [427] | NOT FINANCIAL TRANSACTION +09:26:49 +Slot[404] 0200 010000 6213544000366945 ------------- 00 258922 000100000000 5077022589220107HSTH6213544000366945 507702258922 204712 180893 S +09:26:59 +Slot[422] 0200 010000 6688990602840207 ------------- 51 319851 000049000000 507704522886020015006688990602840207 507704522886 341692 621354 S +09:27:05 +Slot[445] 0200 011000 1808930600032916 ------------- 00 319857 000100000000 507704429970030041001808930600032916 507704429970 298894 621354 S +09:27:11 Slot [452] | NOT FINANCIAL TRANSACTION +09:27:16 +Slot[394] 0200 010000 2206990000130914 ------------- 55 319914 000020000000 507705238366010132002206990000130914 507705238366 398500 621354 S +09:27:22 Slot [440] | NOT FINANCIAL TRANSACTION +09:27:33 Slot [368] | NOT FINANCIAL TRANSACTION +09:27:36 +Slot[448] 0200 010000 6213544000366945 ------------- 00 258930 000100000000 5077022589300107HSTH6213544000366945 507702258930 196874 180893 S +09:27:48 Slot [442] | NOT FINANCIAL TRANSACTION +09:27:50 Slot [389] | NOT FINANCIAL TRANSACTION +09:27:53 +Slot[443] 0200 302000 6688990602840207 ------------- 00 320071 000000000000 507704522887020015006688990602840207 507704522887 158727 621354 S +09:27:58 +Slot[465] 0200 310000 6213544001679494 ------------- 55 016165 000000000000 507700195570080002006213544001679494 507700195570 839623 220699 S +09:28:00 Slot [435] | NOT FINANCIAL TRANSACTION +09:28:17 Slot [439] | NOT FINANCIAL TRANSACTION +09:28:26 +Slot[376] 0200 010000 6213544000366945 ------------- 00 258937 000100000000 5077022589370107HSTH6213544000366945 507702258937 641990 180893 S +09:28:32 +Slot[390] 0200 011000 6213545000937338 ------------- 00 161982 000010000000 507709161982015290316213545000937338 507709161982 252046 198901 S +09:28:36 Slot [433] | NOT FINANCIAL TRANSACTION +09:28:46 Slot [424] | NOT FINANCIAL TRANSACTION +09:28:50 Slot [447] | NOT FINANCIAL TRANSACTION +09:28:54 +Slot[430] 0200 010000 6688990602840207 ------------- 00 320333 000048000000 507704522889020015006688990602840207 507704522889 279429 621354 S +09:28:58 Slot [421] | NOT FINANCIAL TRANSACTION +09:28:58 +Slot[460] 0200 010000 2206990000130914 ------------- 55 320360 000020000000 507705238370010132002206990000130914 507705238370 773512 621354 S +09:29:12 +Slot[478] 0200 010000 6213544000366945 ------------- 00 258944 000100000000 5077022589440107HSTH6213544000366945 507702258944 180126 180893 S +09:29:24 Slot [450] | NOT FINANCIAL TRANSACTION +09:29:37 +Slot[432] 0200 301000 6213545000427496 ------------- 55 161999 000000000000 507709161999015290316213545000427496 507709161999 174743 198901 S +09:29:40 Slot [467] | NOT FINANCIAL TRANSACTION +09:29:51 Slot [463] | NOT FINANCIAL TRANSACTION +09:29:52 Slot [441] | NOT FINANCIAL TRANSACTION +09:29:55 +Slot[456] 0200 010000 6213544000366945 ------------- 00 258952 000100000000 5077022589520107HSTH6213544000366945 507702258952 896874 180893 S +09:30:07 Slot [462] | NOT FINANCIAL TRANSACTION +09:30:13 +Slot[405] 0200 010000 6688990103994107 ------------- 00 320688 000100000000 507704522891020015006688990103994107 507704522891 375419 621354 S +09:30:16 Slot [434] | NOT FINANCIAL TRANSACTION +09:30:17 +Slot[455] 0200 301000 6213545000427496 ------------- 55 162011 000000000000 507709162011015290316213545000427496 507709162011 996280 198901 S +09:30:18 Slot [426] | NOT FINANCIAL TRANSACTION +09:30:35 +Slot[412] 0200 301000 1808930200050995 ------------- 00 320754 000000000000 507704011323010117001808930200050995 507704011323 910343 621354 S +09:30:41 Slot [407] | NOT FINANCIAL TRANSACTION +09:30:43 +Slot[485] 0200 010000 6213544000366945 ------------- 00 258959 000100000000 5077022589590107HSTH6213544000366945 507702258959 213162 180893 S +09:30:48 +Slot[449] 0200 301000 6213545000427496 ------------- 75 162026 000000000000 507709162026015290316213545000427496 507709162026 247499 198901 S +09:30:51 Slot [461] | NOT FINANCIAL TRANSACTION +09:30:54 Slot [481] | NOT FINANCIAL TRANSACTION +09:31:03 Slot [475] | NOT FINANCIAL TRANSACTION +09:31:19 +Slot[469] 0200 011000 6213544001162715 ------------- 00 162034 000010000000 507709162034000022016213544001162715 507709162034 141194 198901 S +09:31:19 Slot [468] | NOT FINANCIAL TRANSACTION +09:31:22 +Slot[409] 0200 010000 6688990103994107 ------------- 00 320956 000100000000 507704522893020015006688990103994107 507704522893 495856 621354 S +09:31:24 +Slot[453] 0200 010000 6213544000366945 ------------- 00 258965 000100000000 5077022589650107HSTH6213544000366945 507702258965 801828 180893 S +09:31:36 Slot [457] | NOT FINANCIAL TRANSACTION +09:31:37 +Slot[474] 0200 301000 6213541000545411 ------------- 00 162039 000000000000 507709162039015290156213541000545411 507709162039 710996 198901 S +09:31:41 +Slot[487] 0200 010000 2206990000130914 ------------- 75 321047 000020000000 507705238379010132002206990000130914 507705238379 110973 621354 S +09:31:47 Slot [482] | NOT FINANCIAL TRANSACTION +09:31:56 Slot [472] | NOT FINANCIAL TRANSACTION +09:31:58 Slot [483] | NOT FINANCIAL TRANSACTION +09:32:07 +Slot[479] 0200 011000 6213541000545411 ------------- 00 162042 000100000000 507709162042015290156213541000545411 507709162042 621450 198901 S +09:32:13 Slot [444] | NOT FINANCIAL TRANSACTION +09:32:24 Slot [489] | NOT FINANCIAL TRANSACTION +09:32:31 +Slot[471] 0200 302000 6688990103994107 ------------- 00 321220 000000000000 507704522894020015006688990103994107 507704522894 137935 621354 S +09:32:33 Slot [451] | NOT FINANCIAL TRANSACTION +09:32:35 Slot [490] | NOT FINANCIAL TRANSACTION +09:32:50 Slot [459] | NOT FINANCIAL TRANSACTION +09:32:53 +Slot[446] 0200 011000 6213541000545411 ------------- 00 162056 000100000000 507709162056015290156213541000545411 507709162056 135141 198901 S +09:32:58 Slot [498] | NOT FINANCIAL TRANSACTION +09:33:01 +Slot[476] 0200 012000 1808930200050995 ------------- 42 321331 000030000000 507704011326010117001808930200050995 507704011326 995513 621354 S +09:33:02 +Slot[436] 0200 010000 6213545000439855 ------------- 00 874951 000100000000 507700157773030200066213545000439855 507700157773 097637 668899 S +09:33:04 +Slot[491] 0200 301000 6213545000525224 ------------- 00 258974 031802320525 5077022589740107HSTH6213545000525224 507702258974 163766 180893 S +09:33:12 Slot [486] | NOT FINANCIAL TRANSACTION +09:33:22 Slot [497] | NOT FINANCIAL TRANSACTION +09:33:33 Slot [473] | NOT FINANCIAL TRANSACTION +09:33:39 +Slot[499] 0200 010000 6688990103994107 ------------- 00 321471 000045000000 507704522896020015006688990103994107 507704522896 031512 621354 S +09:33:43 +Slot[7] 0200 010000 6213545000525224 ------------- 00 258981 000100000000 5077022589810107HSTH6213545000525224 507702258981 725543 180893 S +09:33:53 Slot [2] | NOT FINANCIAL TRANSACTION +09:33:58 +Slot[470] 0200 011000 6213541000545411 ------------- 00 162070 000100000000 507709162070015290156213541000545411 507709162070 696877 198901 S +09:34:00 Slot [477] | NOT FINANCIAL TRANSACTION +09:34:09 Slot [464] | NOT FINANCIAL TRANSACTION +09:34:16 +Slot[495] 0200 011000 1808930200050995 ------------- 00 162074 000020000000 507709162074015290181808930200050995 507709162074 559502 198901 S +09:34:20 +Slot[492] 0200 301000 6688990040086249 ------------- 00 321639 000000000000 507704607990020023006688990040086249 507704607990 795958 621354 S +09:34:20 Slot [14] | NOT FINANCIAL TRANSACTION +09:34:29 +Slot[18] 0420 011000 1808930200040798 ------------- 00 321559 000020000000 507703916502010107001808930200040798 507703916502 -------- 621354 S +09:34:31 Slot [484] | NOT FINANCIAL TRANSACTION +09:34:33 +Slot[454] 0200 011000 6213541000545411 ------------- 00 162082 000100000000 507709162082015290156213541000545411 507709162082 219182 198901 S +09:34:37 +Slot[480] 0200 011000 1808930200040798 ------------- 91 321559 000020000000 507703916502010107001808930200040798 507703916502 839746 621354 S +09:34:38 +Slot[24] 0200 300000 6688990103791800 ------------- 00 321701 000000000000 507704522897020015006688990103791800 507704522897 121586 621354 S +09:34:46 Slot [466] | NOT FINANCIAL TRANSACTION +09:34:52 +Slot[22] 0200 301000 2206990000095935 ------------- 00 321729 000000000000 507704226225050046002206990000095935 507704226225 438909 621354 S +09:34:57 Slot [493] | NOT FINANCIAL TRANSACTION +09:35:01 +Slot[3] 0200 010000 6213545000439855 ------------- 00 875025 000100000000 507700157775030200066213545000439855 507700157775 755573 668899 S +09:35:02 Slot [488] | NOT FINANCIAL TRANSACTION +09:35:02 +Slot[12] 0200 011000 6213541000545411 ------------- 00 162090 000100000000 507709162090015290156213541000545411 507709162090 648306 198901 S +09:35:04 +Slot[458] 0200 302000 6688990040086249 ------------- 00 321771 000000000000 507704607991020023006688990040086249 507704607991 050615 621354 S +09:35:10 +Slot[0] 0200 011000 1808930200050995 ------------- 00 162092 000010000000 507709162092015290181808930200050995 507709162092 438767 198901 S +09:35:16 Slot [4] | NOT FINANCIAL TRANSACTION +09:35:17 Slot [5] | NOT FINANCIAL TRANSACTION +09:35:24 +Slot[16] 0200 010000 6688990102319702 ------------- 00 321849 000100000000 507704644600170009006688990102319702 507704644600 521333 621354 S +09:35:28 Slot [1] | NOT FINANCIAL TRANSACTION +09:35:35 +Slot[21] 0200 010000 6688990103791800 ------------- 00 321903 000015000000 507704522899020015006688990103791800 507704522899 502696 621354 S +09:35:38 Slot [8] | NOT FINANCIAL TRANSACTION +09:35:42 +Slot[31] 0200 011000 1808930200040798 ------------- 91 177020 000020000000 507700010043010001001808930200040798 507700010043 583010 220699 S +09:35:43 +Slot[496] 0420 011000 1808930200040798 0000000000000 12 321559 000020000000 507703916502010107001808930200040798 507703916502 -------- 621354 S +09:35:57 Slot [15] | NOT FINANCIAL TRANSACTION +09:36:00 Slot [23] | NOT FINANCIAL TRANSACTION +09:36:04 Slot [26] | NOT FINANCIAL TRANSACTION +09:36:12 Slot [6] | NOT FINANCIAL TRANSACTION +09:36:14 +Slot[10] 0200 010000 6213541000286941 ------------- 61 258993 000150000000 5077022589930107HSTH6213541000286941 507702258993 398827 180893 S +09:36:15 +Slot[19] 0200 012000 6688990040086249 ------------- 00 322054 000020000000 507704607993020023006688990040086249 507704607993 553928 621354 S +09:36:25 +Slot[9] 0200 301000 6213544002248117 ------------- 00 162114 000000000000 507709162114015290156213544002248117 507709162114 042789 198901 S +09:36:29 +Slot[46] 0200 010000 6688990103791800 ------------- 00 322108 000100000000 507704522901020015006688990103791800 507704522901 244991 621354 S +09:36:31 +Slot[27] 0200 011000 1808930200040798 ------------- 55 177022 000030000000 507700010045010001001808930200040798 507700010045 968457 220699 S +09:36:32 +Slot[11] 0200 301000 6688990603088103 ------------- 00 322115 000000000000 507703322994130012006688990603088103 507703322994 683941 621354 S +09:36:33 +Slot[25] 0200 011000 6688990108388206 ------------- 00 322116 000050000000 507704718859180010006688990108388206 507704718859 799689 621354 S +09:36:41 +Slot[30] 0200 011000 1808931800011031 ------------- 00 322132 000100000000 507704633922170008001808931800011031 507704633922 715332 621354 S +09:36:49 Slot [494] | NOT FINANCIAL TRANSACTION +09:37:02 +Slot[29] 0200 301000 6213544002248117 ------------- 00 162118 000000000000 507709162118015290156213544002248117 507709162118 065836 198901 S +09:37:05 Slot [28] | NOT FINANCIAL TRANSACTION +09:37:06 Slot [34] | NOT FINANCIAL TRANSACTION +09:37:21 Slot [20] | NOT FINANCIAL TRANSACTION +09:37:33 Slot [42] | NOT FINANCIAL TRANSACTION +09:37:36 Slot [39] | NOT FINANCIAL TRANSACTION +09:37:39 +Slot[56] 0200 302000 6213541000286941 ------------- 00 259002 031802364325 5077022590020107HSTH6213541000286941 507702259002 489218 180893 S +09:37:47 Slot [36] | NOT FINANCIAL TRANSACTION +09:37:50 +Slot[38] 0200 010000 1888880000100032 ------------- 51 322332 000010000000 507702834265010077001888880000100032 507702834265 668683 621354 S +09:37:51 +Slot[52] 0200 010000 6688990103791800 ------------- 00 322384 000100000000 507704522903020015006688990103791800 507704522903 745358 621354 S +09:37:54 +Slot[32] 0200 301000 6213544002248117 ------------- 00 162132 000000000000 507709162132015290156213544002248117 507709162132 605687 198901 S +09:37:55 +Slot[13] 0200 011000 1808931800011031 ------------- 00 322383 000100000000 507704633924170008001808931800011031 507704633924 553447 621354 S +09:37:59 Slot [47] | NOT FINANCIAL TRANSACTION +09:38:08 Slot [44] | NOT FINANCIAL TRANSACTION +09:38:11 Slot [40] | NOT FINANCIAL TRANSACTION +09:38:13 +Slot[41] 0200 011000 1808930200045417 ------------- 00 322425 000060000000 507704011340010117001808930200045417 507704011340 462519 621354 S +09:38:25 +Slot[57] 0200 301000 6688990040096008 ------------- 00 322509 000000000000 507703968101010112006688990040096008 507703968101 964390 621354 S +09:38:28 Slot [54] | NOT FINANCIAL TRANSACTION +09:38:44 Slot [37] | NOT FINANCIAL TRANSACTION +09:38:55 Slot [61] | NOT FINANCIAL TRANSACTION +09:39:05 Slot [59] | NOT FINANCIAL TRANSACTION +09:39:10 Slot [51] | NOT FINANCIAL TRANSACTION +09:39:11 +Slot[58] 0200 010000 6213545000711188 ------------- 61 259013 000150000000 5077022590130112CPBR6213545000711188 507702259013 698049 180893 S +09:39:22 +Slot[55] 0200 011000 1808931800011031 ------------- 00 322724 000005000000 507704633926170008001808931800011031 507704633926 782618 621354 S +09:39:29 Slot [17] | NOT FINANCIAL TRANSACTION +09:39:30 +Slot[72] 0200 301000 6213544002248117 ------------- 00 162156 000000000000 507709162156015290156213544002248117 507709162156 870353 198901 S +09:39:42 Slot [60] | NOT FINANCIAL TRANSACTION +09:39:52 +Slot[63] 0200 010000 6213545000879191 ------------- 00 875207 000100000000 507701911414030130046213545000879191 507701911414 287246 668899 S +09:39:57 +Slot[48] 0200 011000 6688990105451502 ------------- 00 322877 000100000000 507704964242150011006688990105451502 507704964242 065761 621354 S +09:39:58 +Slot[67] 0200 301000 2206990000096503 ------------- 00 259020 031802390025 5077022590200112CPBR2206990000096503 507702259020 678643 180893 S +09:40:09 Slot [35] | NOT FINANCIAL TRANSACTION +09:40:12 Slot [53] | NOT FINANCIAL TRANSACTION +09:40:14 +Slot[71] 0200 011000 6688990040096008 ------------- 00 322957 000015000000 507703968103010112006688990040096008 507703968103 519895 621354 S +09:40:16 Slot [79] | NOT FINANCIAL TRANSACTION +09:40:20 Slot [80] | NOT FINANCIAL TRANSACTION +09:40:23 +Slot[49] 0200 301000 6213545000711188 ------------- 00 259026 031802392725 5077022590260112CPBR6213545000711188 507702259026 826181 180893 S +09:40:29 +Slot[85] 0200 011000 1808931800011031 ------------- 00 323002 000100000000 507704633928170008001808931800011031 507704633928 736246 621354 S +09:40:35 Slot [83] | NOT FINANCIAL TRANSACTION +09:40:46 Slot [45] | NOT FINANCIAL TRANSACTION +09:40:53 +Slot[75] 0200 010000 6213545000711188 ------------- 61 259029 000150000000 5077022590290112CPBR6213545000711188 507702259029 345861 180893 S +09:40:58 +Slot[78] 0200 010000 6213544001207700 ------------- 00 875251 000070000000 507702435317030200316213544001207700 507702435317 552614 668899 S +09:41:02 Slot [68] | NOT FINANCIAL TRANSACTION +09:41:11 +Slot[73] 0200 010000 6213545000161772 ------------- 00 875258 000100000000 507700880198030170016213545000161772 507700880198 629335 668899 S +09:41:13 Slot [91] | NOT FINANCIAL TRANSACTION +09:41:14 Slot [43] | NOT FINANCIAL TRANSACTION +09:41:16 +Slot[89] 0200 010000 6213545000711188 ------------- 00 259031 000100000000 5077022590310112CPBR6213545000711188 507702259031 233450 180893 S +09:41:22 Slot [76] | NOT FINANCIAL TRANSACTION +09:41:24 +Slot[77] 0200 301000 1808931800011031 ------------- 00 323238 000000000000 507704633929170008001808931800011031 507704633929 658382 621354 S +09:41:26 +Slot[88] 0200 011000 6688990602640003 ------------- 00 323239 000010000000 507703968105010112006688990602640003 507703968105 816315 621354 S +09:41:36 Slot [65] | NOT FINANCIAL TRANSACTION +09:41:52 Slot [94] | NOT FINANCIAL TRANSACTION +09:41:59 +Slot[86] 0200 010000 6213545000711188 ------------- 00 259036 000050000000 5077022590360112CPBR6213545000711188 507702259036 506584 180893 S +09:42:02 +Slot[66] 0200 011000 6688990105451502 ------------- 00 323402 000100000000 507704964244150011006688990105451502 507704964244 224822 621354 S +09:42:08 Slot [93] | NOT FINANCIAL TRANSACTION +09:42:16 Slot [103] | NOT FINANCIAL TRANSACTION +09:42:19 Slot [33] | NOT FINANCIAL TRANSACTION +09:42:31 +Slot[101] 0200 011000 6213548000441178 ------------- 00 162196 000010000000 507709162196015290316213548000441178 507709162196 788126 198901 S +09:42:34 Slot [95] | NOT FINANCIAL TRANSACTION +09:42:35 Slot [74] | NOT FINANCIAL TRANSACTION +09:42:46 Slot [105] | NOT FINANCIAL TRANSACTION +09:42:57 +Slot[70] 0200 010000 6213545000161772 ------------- 00 875345 000100000000 507700880201030170016213545000161772 507700880201 040551 668899 S +09:42:57 Slot [102] | NOT FINANCIAL TRANSACTION +09:42:58 +Slot[50] 0200 010000 6213544000533122 ------------- 00 875349 000100000000 507702415046030010116213544000533122 507702415046 630625 668899 S +09:42:59 +Slot[92] 0200 010000 6213544000294188 ------------- 00 875348 000010000000 507702104198030200226213544000294188 507702104198 516056 668899 S +09:43:13 Slot [107] | NOT FINANCIAL TRANSACTION +09:43:18 Slot [81] | NOT FINANCIAL TRANSACTION +09:43:26 Slot [100] | NOT FINANCIAL TRANSACTION +09:43:40 Slot [114] | NOT FINANCIAL TRANSACTION +09:43:48 +Slot[108] 0200 010000 6213544000533122 ------------- 00 875374 000100000000 507702415048030010116213544000533122 507702415048 199853 668899 S +09:43:49 +Slot[82] 0200 300000 6688990103799902 ------------- 55 323857 000000000000 507704522910020015006688990103799902 507704522910 756317 621354 S +09:43:50 +Slot[104] 0200 310000 6688990020020457 ------------- 00 106933 000000000000 507700327638010018006688990020020457 507700327638 225896 220699 S +09:43:50 Slot [122] | NOT FINANCIAL TRANSACTION +09:44:04 Slot [87] | NOT FINANCIAL TRANSACTION +09:44:14 +Slot[119] 0200 011000 6688990104628001 ------------- 51 323955 000100000000 507704201192190007006688990104628001 507704201192 282634 621354 S +09:44:17 Slot [69] | NOT FINANCIAL TRANSACTION +09:44:20 Slot [117] | NOT FINANCIAL TRANSACTION +09:44:28 Slot [115] | NOT FINANCIAL TRANSACTION +09:44:41 +Slot[96] 0200 011000 1808930800006082 ------------- 00 324054 000100000000 507703031058120026001808930800006082 507703031058 552319 621354 S +09:44:42 +Slot[110] 0200 302000 2206991200059683 ------------- 00 259047 031802434525 5077022590470106NAXA2206991200059683 507702259047 029045 180893 S +09:44:52 +Slot[62] 0200 010000 1808930600037675 ------------- 00 324106 000100000000 507704350369030034001808930600037675 507704350369 313135 621354 S +09:45:00 Slot [64] | NOT FINANCIAL TRANSACTION +09:45:11 Slot [136] | NOT FINANCIAL TRANSACTION +09:45:15 Slot [124] | NOT FINANCIAL TRANSACTION +09:45:17 +Slot[97] 0200 011000 6688990104628001 ------------- 51 324231 000050000000 507704201194190007006688990104628001 507704201194 070613 621354 S +09:45:21 +Slot[84] 0200 301000 6688990105767402 ------------- 00 324253 000000000000 507705251510020028006688990105767402 507705251510 673352 621354 S +09:45:22 Slot [113] | NOT FINANCIAL TRANSACTION +09:45:23 +Slot[98] 0200 310000 6688990020020457 ------------- 00 106936 000000000000 507700327640010018006688990020020457 507700327640 796005 220699 S +09:45:26 Slot [90] | NOT FINANCIAL TRANSACTION +09:45:39 Slot [121] | NOT FINANCIAL TRANSACTION +09:45:53 Slot [159] | NOT FINANCIAL TRANSACTION +09:46:04 Slot [112] | NOT FINANCIAL TRANSACTION +09:46:11 +Slot[134] 0200 010000 6688990020020457 ------------- 00 106937 000060000000 507700327641010018006688990020020457 507700327641 131308 220699 S +09:46:13 +Slot[99] 0200 011000 6213545000532428 ------------- 00 162256 000050000000 507709162256015290316213545000532428 507709162256 428977 198901 S +09:46:14 +Slot[144] 0200 011000 1808931700020454 ------------- 00 324434 000100000000 507704772488070013001808931700020454 507704772488 596468 621354 S +09:46:15 Slot [148] | NOT FINANCIAL TRANSACTION +09:46:19 +Slot[142] 0200 302000 6213541000451974 ------------- 00 259057 031802452125 5077022590570525XYBT6213541000451974 507702259057 755097 180893 S +09:46:24 Slot [111] | NOT FINANCIAL TRANSACTION +09:46:31 Slot [126] | NOT FINANCIAL TRANSACTION +09:46:42 Slot [128] | NOT FINANCIAL TRANSACTION +09:46:47 Slot [149] | NOT FINANCIAL TRANSACTION +09:46:54 Slot [140] | NOT FINANCIAL TRANSACTION +09:47:02 +Slot[155] 0200 301000 6213541000451974 ------------- 00 259061 031802460625 5077022590610525XYBT6213541000451974 507702259061 689100 180893 S +09:47:23 +Slot[131] 0200 011000 1808930800006082 ------------- 00 324720 000100000000 507703031060120026001808930800006082 507703031060 441866 621354 S +09:47:26 Slot [109] | NOT FINANCIAL TRANSACTION +09:47:26 Slot [146] | NOT FINANCIAL TRANSACTION +09:47:31 +Slot[127] 0200 011000 6213541000466311 ------------- 00 162277 000100000000 507709162277015290316213541000466311 507709162277 711996 198901 S +09:47:34 Slot [151] | NOT FINANCIAL TRANSACTION +09:47:42 Slot [139] | NOT FINANCIAL TRANSACTION +09:47:43 +Slot[150] 0200 010000 6213544001391454 ------------- 00 875520 000050000000 507702730310030130056213544001391454 507702730310 514156 668899 S +09:47:54 +Slot[154] 0200 012000 6688990105331100 ------------- 55 324882 000100000000 507704964247150011006688990105331100 507704964247 049837 621354 S +09:47:57 Slot [123] | NOT FINANCIAL TRANSACTION +09:48:07 +Slot[118] 0200 302000 6213544001387619 ------------- 00 875539 000000000000 507700976912034070026213544001387619 507700976912 089792 668899 S +09:48:08 Slot [138] | NOT FINANCIAL TRANSACTION +09:48:18 Slot [157] | NOT FINANCIAL TRANSACTION +09:48:25 +Slot[135] 0200 012000 6688990105331100 ------------- 55 325015 000100000000 507704964249150011006688990105331100 507704964249 524610 621354 S +09:48:28 Slot [132] | NOT FINANCIAL TRANSACTION +09:48:31 +Slot[171] 0200 300000 6213544001387619 ------------- 00 875551 000000000000 507700976913034070026213544001387619 507700976913 513479 668899 S +09:48:31 Slot [152] | NOT FINANCIAL TRANSACTION +09:48:40 +Slot[120] 0200 011000 1808930400023545 ------------- 00 325055 000005000000 507704986125010123001808930400023545 507704986125 615950 621354 S +09:48:45 Slot [167] | NOT FINANCIAL TRANSACTION +09:48:54 +Slot[116] 0200 302000 6213544001387619 ------------- 00 875570 000000000000 507700976914034070026213544001387619 507700976914 250795 668899 S +09:49:00 Slot [156] | NOT FINANCIAL TRANSACTION +09:49:05 +Slot[129] 0200 301000 6213544001158770 ------------- 00 162299 000000000000 507709162299015290316213544001158770 507709162299 127336 198901 S +09:49:09 +Slot[130] 0200 300000 6213544001387619 ------------- 00 875580 000000000000 507700976915034070026213544001387619 507700976915 171749 668899 S +09:49:10 Slot [168] | NOT FINANCIAL TRANSACTION +09:49:27 Slot [175] | NOT FINANCIAL TRANSACTION +09:49:30 Slot [141] | NOT FINANCIAL TRANSACTION +09:49:38 Slot [169] | NOT FINANCIAL TRANSACTION +09:49:40 +Slot[172] 0200 300000 6213544001387619 ------------- 00 875605 000000000000 507700976917034070026213544001387619 507700976917 140897 668899 S +09:49:42 +Slot[166] 0200 011000 6213544001158770 ------------- 00 162310 000020000000 507709162310015290316213544001158770 507709162310 017493 198901 S +09:49:48 Slot [174] | NOT FINANCIAL TRANSACTION +09:49:52 +Slot[160] 0200 010000 1999990000002975 ------------- 00 875610 000030000000 507702623375030030061999990000002975 507702623375 090236 668899 S +09:49:59 Slot [147] | NOT FINANCIAL TRANSACTION +09:50:05 +Slot[164] 0200 010000 6688990102857602 ------------- 51 325450 000010000000 507704011354010117006688990102857602 507704011354 681523 621354 S +09:50:10 Slot [133] | NOT FINANCIAL TRANSACTION +09:50:15 Slot [178] | NOT FINANCIAL TRANSACTION +09:50:31 Slot [170] | NOT FINANCIAL TRANSACTION +09:50:32 Slot [195] | NOT FINANCIAL TRANSACTION +09:50:32 +Slot[183] 0200 011000 1808930800006082 ------------- 00 325545 000100000000 507703031062120026001808930800006082 507703031062 903399 621354 S +09:50:37 +Slot[191] 0200 301000 6688990103530505 ------------- 00 325583 000000000000 507703489068060021006688990103530505 507703489068 032626 621354 S +09:50:38 +Slot[125] 0200 010000 6688990103993802 ------------- 00 325577 000100000000 507704522918020015006688990103993802 507704522918 867425 621354 S +09:50:42 Slot [189] | NOT FINANCIAL TRANSACTION +09:50:44 +Slot[143] 0200 011000 6213548000524593 ------------- 00 162334 000020000000 507709162334015290316213548000524593 507709162334 810634 198901 S +09:50:45 +Slot[161] 0200 010000 6213544001387619 ------------- 00 875660 000010000000 507700976919034070026213544001387619 507700976919 253908 668899 S +09:50:52 Slot [181] | NOT FINANCIAL TRANSACTION +09:51:03 Slot [204] | NOT FINANCIAL TRANSACTION +09:51:09 +Slot[202] 0200 300000 6688990060026786 ------------- 00 325695 000000000000 507704152990200010006688990060026786 507704152990 331708 621354 S +09:51:18 +Slot[158] 0200 010000 1808931300012117 ------------- 00 325701 000020000000 507704986130010123001808931300012117 507704986130 216176 621354 S +09:51:19 Slot [182] | NOT FINANCIAL TRANSACTION +09:51:30 Slot [197] | NOT FINANCIAL TRANSACTION +09:51:34 Slot [193] | NOT FINANCIAL TRANSACTION +09:51:40 Slot [200] | NOT FINANCIAL TRANSACTION +09:51:47 +Slot[177] 0200 300000 6688990103993802 ------------- 00 325826 000000000000 507704522919020015006688990103993802 507704522919 377494 621354 S +09:51:56 Slot [198] | NOT FINANCIAL TRANSACTION +09:51:59 +Slot[210] 0200 011000 6688990107351809 ------------- 51 325875 000020000000 507702505196050033006688990107351809 507702505196 103761 621354 S +09:52:07 +Slot[213] 0200 010000 6688990060026786 ------------- 00 325908 000100000000 507704152992200010006688990060026786 507704152992 638263 621354 S +09:52:13 Slot [165] | NOT FINANCIAL TRANSACTION +09:52:16 +Slot[106] 0200 011000 6213545000507222 ------------- 00 162356 000100000000 507709162356015290316213545000507222 507709162356 817394 198901 S +09:52:17 +Slot[163] 0200 012000 6688990102857602 ------------- 00 325950 000005000000 507704011361010117006688990102857602 507704011361 140785 621354 S +09:52:27 Slot [211] | NOT FINANCIAL TRANSACTION +09:52:29 +Slot[187] 0200 311000 6213544002079579 ------------- 00 223403 000000000000 507700118542010011006213544002079579 507700118542 135439 220699 S +09:52:30 +Slot[153] 0200 011000 6270660199331688 ------------- 91 040755 000020000000 507700258988010013006270660199331688 507700258988 813552 220699 S +09:52:34 Slot [162] | NOT FINANCIAL TRANSACTION +09:52:36 Slot [145] | NOT FINANCIAL TRANSACTION +09:52:38 Slot [196] | NOT FINANCIAL TRANSACTION +09:52:39 +Slot[206] 0200 010000 6688990103530406 ------------- 00 326036 000100000000 507703489071060021006688990103530406 507703489071 638242 621354 S +09:52:41 +Slot[205] 0200 010000 6688990103993802 ------------- 00 326042 000030000000 507704522921020015006688990103993802 507704522921 488218 621354 S +09:52:49 Slot [221] | NOT FINANCIAL TRANSACTION +09:52:58 +Slot[217] 0200 011000 6688990107351809 ------------- 00 326106 000015000000 507702505198050033006688990107351809 507702505198 458370 621354 S +09:53:00 Slot [194] | NOT FINANCIAL TRANSACTION +09:53:04 +Slot[214] 0200 011000 6213545000507222 ------------- 00 162370 000020000000 507709162370015290316213545000507222 507709162370 036754 198901 S +09:53:10 +Slot[222] 0200 011000 1808930600008437 ------------- 00 326140 000100000000 507704420010030041001808930600008437 507704420010 270578 621354 S +09:53:16 +Slot[226] 0200 011000 6213545000968374 ------------- 00 250563 000100000000 507700335781010019006213545000968374 507700335781 238387 220699 S +09:53:16 Slot [180] | NOT FINANCIAL TRANSACTION +09:53:22 +Slot[190] 0200 012000 1808930100005180 ------------- 42 326195 000010000000 507703936388010109001808930100005180 507703936388 756114 621354 S +09:53:33 Slot [184] | NOT FINANCIAL TRANSACTION +09:53:35 +Slot[176] 0200 010000 6688990103530406 ------------- 00 326247 000040000000 507703489073060021006688990103530406 507703489073 360157 621354 S +09:53:36 +Slot[225] 0200 300000 6688990060027024 ------------- 00 326257 000000000000 507704152993200010006688990060027024 507704152993 054224 621354 S +09:53:38 Slot [137] | NOT FINANCIAL TRANSACTION +09:53:45 +Slot[218] 0200 011000 6213544002079579 ------------- 00 223407 000100000000 507700118545010011006213544002079579 507700118545 659978 220699 S +09:53:48 Slot [173] | NOT FINANCIAL TRANSACTION +09:53:51 +Slot[224] 0200 011000 6688990107351809 ------------- 00 326318 000004000000 507702505200050033006688990107351809 507702505200 730983 621354 S +09:54:04 +Slot[207] 0200 301000 6213544002050307 ------------- 00 259101 031802530825 5077022591010141HQBR6213544002050307 507702259101 473833 180893 S +09:54:09 +Slot[208] 0200 010000 6213544002097712 ------------- 00 875787 000008000000 507702435322030200316213544002097712 507702435322 785038 668899 S +09:54:16 Slot [223] | NOT FINANCIAL TRANSACTION +09:54:29 Slot [215] | NOT FINANCIAL TRANSACTION +09:54:40 Slot [192] | NOT FINANCIAL TRANSACTION +09:54:44 Slot [188] | NOT FINANCIAL TRANSACTION +09:54:48 +Slot[231] 0200 010000 6688990060027024 ------------- 00 326549 000050000000 507704152995200010006688990060027024 507704152995 524570 621354 S +09:54:50 +Slot[199] 0200 300000 6688990102661509 ------------- 55 326574 000000000000 507704458287150007006688990102661509 507704458287 894616 621354 S +09:54:51 +Slot[185] 0200 011000 6213544002050307 ------------- 00 259107 000005000000 5077022591070141HQBR6213544002050307 507702259107 700460 180893 S +09:54:53 +Slot[220] 0200 012000 1808930100005180 ------------- 42 326564 000010000000 507703936391010109001808930100005180 507703936391 965330 621354 S +09:54:59 +Slot[179] 0200 011000 6213544002079579 ------------- 00 223410 000050000000 507700118547010011006213544002079579 507700118547 893449 220699 S +09:55:03 Slot [186] | NOT FINANCIAL TRANSACTION +09:55:08 +Slot[227] 0200 301000 6213541000205503 ------------- 00 162404 000000000000 507709162404015290316213541000205503 507709162404 363256 198901 S +09:55:13 Slot [229] | NOT FINANCIAL TRANSACTION +09:55:15 Slot [212] | NOT FINANCIAL TRANSACTION +09:55:19 +Slot[219] 0200 300000 6688990102661509 ------------- 55 326711 000000000000 507704458288150007006688990102661509 507704458288 492336 621354 S +09:55:23 Slot [230] | NOT FINANCIAL TRANSACTION +09:55:35 +Slot[236] 0200 010000 6213545000887566 ------------- 00 379356 000010000000 507700165592060001006213545000887566 507700165592 937162 220699 S +09:55:39 Slot [232] | NOT FINANCIAL TRANSACTION +09:55:39 +Slot[216] 0200 301000 6213544001066767 ------------- 00 875857 000000000000 507702092651030200216213544001066767 507702092651 694231 668899 S +09:55:40 +Slot[239] 0200 011000 6213541000205503 ------------- 00 162417 000100000000 507709162417015290316213541000205503 507709162417 623774 198901 S +09:55:42 Slot [234] | NOT FINANCIAL TRANSACTION +09:55:45 +Slot[235] 0200 011000 6213544002050307 ------------- 00 259112 000002000000 5077022591120141HQBR6213544002050307 507702259112 884050 180893 S +09:55:55 Slot [250] | NOT FINANCIAL TRANSACTION +09:56:06 Slot [201] | NOT FINANCIAL TRANSACTION +09:56:10 +Slot[242] 0200 011000 2206991200013519 ------------- 00 326943 000100000000 507704023309090016002206991200013519 507704023309 697928 621354 S +09:56:17 Slot [228] | NOT FINANCIAL TRANSACTION +09:56:17 +Slot[238] 0200 010000 6688990040154443 ------------- 51 259119 000100000000 5077022591190108THNG6688990040154443 507702259119 688647 180893 S +09:56:19 +Slot[252] 0200 011000 6213541000205503 ------------- 00 162428 000050000000 507709162428015290316213541000205503 507709162428 125797 198901 S +09:56:29 Slot [240] | NOT FINANCIAL TRANSACTION +09:56:32 +Slot[245] 0420 010000 6688990104008501 ------------- 00 326879 000100000000 507704522923020015006688990104008501 507704522923 -------- 621354 S +09:56:37 +Slot[203] 0200 011000 6213544002050307 ------------- 00 259122 000002000000 5077022591220141HQBR6213544002050307 507702259122 362799 180893 S +09:56:44 Slot [248] | NOT FINANCIAL TRANSACTION +09:56:48 Slot [258] | NOT FINANCIAL TRANSACTION +09:56:56 +Slot[247] 0200 012000 6688990105331100 ------------- 00 327141 000100000000 507704964252150011006688990105331100 507704964252 695824 621354 S +09:56:58 Slot [244] | NOT FINANCIAL TRANSACTION +09:57:11 Slot [253] | NOT FINANCIAL TRANSACTION +09:57:14 +Slot[243] 0200 010000 6688990040115139 ------------- 00 259130 000010000000 5077022591300361BLTB6688990040115139 507702259130 376880 180893 S +09:57:26 Slot [246] | NOT FINANCIAL TRANSACTION +09:57:31 +Slot[256] 0200 011000 6213545000628325 ------------- 61 162444 000200000000 507709162444015290316213545000628325 507709162444 508432 198901 S +09:57:33 +Slot[260] 0200 010000 6213544002237037 ------------- 00 259133 000050000000 5077022591330485HPXT6213544002237037 507702259133 163465 180893 S +09:57:33 Slot [241] | NOT FINANCIAL TRANSACTION +09:57:34 Slot [251] | NOT FINANCIAL TRANSACTION +09:57:34 +Slot[273] 0200 011000 2206991200013519 ------------- 00 327312 000100000000 507704023311090016002206991200013519 507704023311 101028 621354 S +09:57:36 +Slot[265] 0200 010000 6213548000161198 ------------- 00 875932 000050000000 507702435324030200316213548000161198 507702435324 426758 668899 S +09:57:43 Slot [249] | NOT FINANCIAL TRANSACTION +09:57:45 +Slot[276] 0420 010000 6688990104008501 0000000000000 00 326879 000100000000 507704522923020015006688990104008501 507704522923 -------- 621354 S +09:57:46 Slot [264] | NOT FINANCIAL TRANSACTION +09:57:59 Slot [269] | NOT FINANCIAL TRANSACTION +09:58:04 Slot [254] | NOT FINANCIAL TRANSACTION +09:58:10 +Slot[268] 0200 010000 6688990040115139 ------------- 00 259140 000010000000 5077022591400361BLTB6688990040115139 507702259140 027666 180893 S +09:58:17 +Slot[209] 0200 010000 6688990104008501 ------------- 91 326879 000100000000 507704522923020015006688990104008501 507704522923 720317 621354 S +09:58:18 +Slot[279] 0200 011000 6688990105331100 ------------- 00 327471 000050000000 507704964254150011006688990105331100 507704964254 779277 621354 S +09:58:21 Slot [261] | NOT FINANCIAL TRANSACTION +09:58:31 +Slot[233] 0200 011000 6213545000628325 ------------- 61 162452 000200000000 507709162452015290316213545000628325 507709162452 732643 198901 S +09:58:31 Slot [266] | NOT FINANCIAL TRANSACTION +09:58:48 Slot [257] | NOT FINANCIAL TRANSACTION +09:58:48 Slot [262] | NOT FINANCIAL TRANSACTION +09:58:50 +Slot[274] 0200 011000 6213545000628325 ------------- 61 162458 000200000000 507709162458015290316213545000628325 507709162458 182269 198901 S +09:58:58 Slot [270] | NOT FINANCIAL TRANSACTION +09:59:00 +Slot[284] 0200 011000 2206991200013519 ------------- 00 327650 000050000000 507704023313090016002206991200013519 507704023313 570504 621354 S +09:59:06 +Slot[267] 0200 010000 6213543000101989 ------------- 00 259148 000100000000 5077022591480361BLTB6213543000101989 507702259148 830205 180893 S +09:59:15 Slot [263] | NOT FINANCIAL TRANSACTION +09:59:26 Slot [299] | NOT FINANCIAL TRANSACTION +09:59:33 +Slot[280] 0200 301000 6213545000628325 ------------- 00 162469 000000000000 507709162469015290316213545000628325 507709162469 173381 198901 S +09:59:38 Slot [278] | NOT FINANCIAL TRANSACTION +09:59:50 Slot [293] | NOT FINANCIAL TRANSACTION +09:59:53 +Slot[277] 0200 011000 1888880000056945 ------------- 00 327850 000004000000 507704559119020018001888880000056945 507704559119 877293 621354 S +09:59:54 Slot [285] | NOT FINANCIAL TRANSACTION +10:00:04 +Slot[287] 0200 011000 6213545000628325 ------------- 00 162477 000100000000 507710162477015290316213545000628325 507710162477 185048 198901 S +10:00:10 Slot [289] | NOT FINANCIAL TRANSACTION +10:00:16 Slot [304] | NOT FINANCIAL TRANSACTION +10:00:20 Slot [275] | NOT FINANCIAL TRANSACTION +10:00:22 +Slot[281] 0200 011000 6688990602675801 ------------- 00 328034 000020000000 507704153000200010006688990602675801 507704153000 033844 621354 S +10:00:29 +Slot[309] 0200 010000 6688990107895201 ------------- 00 328054 000100000000 507703847936010100006688990107895201 507703847936 336840 621354 S +10:00:31 Slot [291] | NOT FINANCIAL TRANSACTION +10:00:34 +Slot[296] 0200 010000 6213543000243211 ------------- 00 305488 000030000000 507700079215010007006213543000243211 507700079215 174749 220699 S +10:00:42 +Slot[294] 0200 011000 6213545000628325 ------------- 00 162489 000100000000 507710162489015290316213545000628325 507710162489 138057 198901 S +10:00:42 Slot [259] | NOT FINANCIAL TRANSACTION +10:00:52 Slot [286] | NOT FINANCIAL TRANSACTION +10:00:58 Slot [303] | NOT FINANCIAL TRANSACTION +10:01:12 +Slot[271] 0200 011000 6213545000628325 ------------- 00 162493 000100000000 507710162493015290316213545000628325 507710162493 148108 198901 S +10:01:13 Slot [282] | NOT FINANCIAL TRANSACTION +10:01:23 Slot [298] | NOT FINANCIAL TRANSACTION +10:01:41 +Slot[272] 0200 010000 1808930200052082 ------------- 55 876108 000100000000 507700157788030200061808930200052082 507700157788 208012 668899 S +10:01:42 +Slot[317] 0200 011000 6213545000628325 ------------- 00 162503 000100000000 507710162503015290316213545000628325 507710162503 179634 198901 S +10:01:45 Slot [288] | NOT FINANCIAL TRANSACTION +10:01:54 Slot [307] | NOT FINANCIAL TRANSACTION +10:01:59 Slot [237] | NOT FINANCIAL TRANSACTION +10:02:06 +Slot[329] 0200 011000 6688990060018106 ------------- 00 328509 000100000000 507704153002200010006688990060018106 507704153002 249971 621354 S +10:02:09 Slot [314] | NOT FINANCIAL TRANSACTION +10:02:15 +Slot[313] 0200 011000 6213541000511280 ------------- 00 002922 000100000000 507700186641080001006213541000511280 507700186641 635359 220699 S +10:02:16 +Slot[315] 0200 011000 6213545000628325 ------------- 00 162506 000100000000 507710162506015290316213545000628325 507710162506 800728 198901 S +10:02:20 Slot [336] | NOT FINANCIAL TRANSACTION +10:02:34 Slot [331] | NOT FINANCIAL TRANSACTION +10:02:36 +Slot[323] 0200 010000 1808930200052082 ------------- 55 876141 000100000000 507700157790030200061808930200052082 507700157790 998580 668899 S +10:02:37 +Slot[324] 0200 300000 6213541000685233 ------------- 00 876144 000000000000 507700622573030070026213541000685233 507700622573 145183 668899 S +10:02:41 Slot [321] | NOT FINANCIAL TRANSACTION +10:02:44 +Slot[283] 0200 011000 6213545000628325 ------------- 00 162515 000100000000 507710162515015290316213545000628325 507710162515 201836 198901 S +10:02:51 Slot [319] | NOT FINANCIAL TRANSACTION +10:02:56 Slot [255] | NOT FINANCIAL TRANSACTION +10:03:02 Slot [318] | NOT FINANCIAL TRANSACTION +10:03:04 +Slot[295] 0200 301000 6688990040122796 ------------- 00 328755 000000000000 507703906930010106006688990040122796 507703906930 938387 621354 S +10:03:11 +Slot[300] 0200 300000 6213541000685233 ------------- 00 876162 000000000000 507700622574030070026213541000685233 507700622574 550613 668899 S +10:03:12 Slot [340] | NOT FINANCIAL TRANSACTION +10:03:12 +Slot[326] 0200 010000 6213544001480893 ------------- 00 223413 000004000000 507700118549010011006213544001480893 507700118549 142447 220699 S +10:03:14 +Slot[302] 0200 011000 6213545000628325 ------------- 00 162518 000100000000 507710162518015290316213545000628325 507710162518 214338 198901 S +10:03:23 Slot [306] | NOT FINANCIAL TRANSACTION +10:03:27 +Slot[312] 0200 301000 6688990103248405 ------------- 00 328859 000000000000 507704153003200010006688990103248405 507704153003 670689 621354 S +10:03:33 Slot [316] | NOT FINANCIAL TRANSACTION +10:03:45 +Slot[355] 0200 010000 6213545000838718 ------------- 61 259163 000200000000 5077032591630118UDBR6213545000838718 507703259163 341624 180893 S +10:03:53 Slot [325] | NOT FINANCIAL TRANSACTION +10:03:58 Slot [334] | NOT FINANCIAL TRANSACTION +10:04:04 Slot [311] | NOT FINANCIAL TRANSACTION +10:04:15 +Slot[339] 0200 011000 6688990103248405 ------------- 00 329074 000100000000 507704153005200010006688990103248405 507704153005 598806 621354 S +10:04:16 +Slot[301] 0200 011000 6213545000856355 ------------- 00 162540 000100000000 507710162540015290316213545000856355 507710162540 698403 198901 S +10:04:19 Slot [308] | NOT FINANCIAL TRANSACTION +10:04:21 +Slot[310] 0200 300000 6213541000685233 ------------- 00 876203 000000000000 507700622575030070026213541000685233 507700622575 054099 668899 S +10:04:25 +Slot[297] 0200 010000 6213544000259868 ------------- 00 259168 000050000000 5077032591680107HSTH6213544000259868 507703259168 015862 180893 S +10:04:32 +Slot[341] 0200 302000 6688990040089946 ------------- 00 329152 000000000000 507704458307150007006688990040089946 507704458307 615627 621354 S +10:04:35 Slot [350] | NOT FINANCIAL TRANSACTION +10:04:41 +Slot[349] 0200 300000 6688990103695407 ------------- 00 329202 000000000000 507703323022130012006688990103695407 507703323022 230452 621354 S +10:04:43 +Slot[338] 0200 010000 6213544001016226 ------------- 00 876215 000100000000 507702277970030030056213544001016226 507702277970 742176 668899 S +10:04:44 +Slot[332] 0200 010000 6688990107895201 ------------- 00 329216 000100000000 507703847938010100006688990107895201 507703847938 343482 621354 S +10:04:46 +Slot[328] 0200 300000 6213541000685233 ------------- 00 876217 000000000000 507700622576030070026213541000685233 507700622576 461699 668899 S +10:04:50 +Slot[364] 0200 301000 6213541000676992 ------------- 00 876221 000000000000 507700157792030200066213541000676992 507700157792 109723 668899 S +10:04:54 +Slot[352] 0200 011000 1808930200056042 ------------- 00 162549 000100000000 507710162549015290001808930200056042 507710162549 978176 198901 S +10:04:56 Slot [305] | NOT FINANCIAL TRANSACTION +10:05:00 Slot [345] | NOT FINANCIAL TRANSACTION +10:05:11 Slot [343] | NOT FINANCIAL TRANSACTION +10:05:16 Slot [330] | NOT FINANCIAL TRANSACTION +10:05:22 Slot [337] | NOT FINANCIAL TRANSACTION +10:05:32 +Slot[354] 0200 301000 6213541000677008 ------------- 00 876247 000000000000 507700157794030200066213541000677008 507700157794 136450 668899 S +10:05:34 Slot [320] | NOT FINANCIAL TRANSACTION +10:05:47 +Slot[342] 0200 011000 6688990107595504 ------------- 00 162575 000008000000 507710162575015290316688990107595504 507710162575 259373 198901 S +10:05:49 Slot [335] | NOT FINANCIAL TRANSACTION +10:05:59 +Slot[369] 0200 010000 6213541000677008 ------------- 00 876269 000100000000 507700157795030200066213541000677008 507700157795 186627 668899 S +10:06:00 Slot [366] | NOT FINANCIAL TRANSACTION +10:06:02 Slot [290] | NOT FINANCIAL TRANSACTION +10:06:03 +Slot[347] 0200 303000 6688990103695407 ------------- 00 329575 000000000000 507703323023130012006688990103695407 507703323023 075118 621354 S +10:06:20 +Slot[292] 0200 301000 6688990107595504 ------------- 00 162585 000000000000 507710162585015290316688990107595504 507710162585 333697 198901 S +10:06:21 +Slot[374] 0200 011000 1808930800023293 ------------- 00 329615 000005000000 507705063937120029001808930800023293 507705063937 339397 621354 S +10:06:27 Slot [327] | NOT FINANCIAL TRANSACTION +10:06:38 +Slot[333] 0200 010000 6688990107895201 ------------- 00 329713 000030000000 507703847940010100006688990107895201 507703847940 521376 621354 S +10:06:39 +Slot[365] 0200 011000 6688990107595504 ------------- 00 162589 000010000000 507710162589015290316688990107595504 507710162589 782107 198901 S +10:06:42 Slot [384] | NOT FINANCIAL TRANSACTION +10:06:54 Slot [358] | NOT FINANCIAL TRANSACTION +10:07:04 Slot [360] | NOT FINANCIAL TRANSACTION +10:07:10 Slot [373] | NOT FINANCIAL TRANSACTION +10:07:22 +Slot[353] 0200 301000 6213541000602337 ------------- 00 876327 000000000000 507700622578030070026213541000602337 507700622578 966719 668899 S +10:07:26 Slot [362] | NOT FINANCIAL TRANSACTION +10:07:34 Slot [372] | NOT FINANCIAL TRANSACTION +10:07:37 Slot [380] | NOT FINANCIAL TRANSACTION +10:07:50 +Slot[382] 0200 301000 1808930800023293 ------------- 00 329971 000000000000 507705063938120029001808930800023293 507705063938 168831 621354 S +10:07:53 Slot [322] | NOT FINANCIAL TRANSACTION +10:07:56 +Slot[379] 0200 300000 6213541000602337 ------------- 00 876353 000000000000 507700622579030070026213541000602337 507700622579 433210 668899 S +10:08:04 Slot [348] | NOT FINANCIAL TRANSACTION +10:08:06 Slot [361] | NOT FINANCIAL TRANSACTION +10:08:16 Slot [377] | NOT FINANCIAL TRANSACTION +10:08:19 Slot [378] | NOT FINANCIAL TRANSACTION +10:08:21 +Slot[346] 0200 011000 6688990103695407 ------------- 00 330090 000060000000 507703323025130012006688990103695407 507703323025 822242 621354 S +10:08:34 Slot [363] | NOT FINANCIAL TRANSACTION +10:08:36 +Slot[370] 0200 303000 6688990106509704 ------------- 00 330150 000000000000 507705164877010128006688990106509704 507705164877 141820 621354 S +10:08:46 Slot [385] | NOT FINANCIAL TRANSACTION +10:08:55 +Slot[371] 0200 011000 1808931000007946 ------------- 00 330190 000010000000 507703936422010109001808931000007946 507703936422 197854 621354 S +10:09:01 Slot [351] | NOT FINANCIAL TRANSACTION +10:09:08 Slot [367] | NOT FINANCIAL TRANSACTION +10:09:12 Slot [344] | NOT FINANCIAL TRANSACTION +10:09:23 Slot [397] | NOT FINANCIAL TRANSACTION +10:09:29 +Slot[359] 0200 010000 6688990105449407 ------------- 51 330302 000005000000 507704964268150011006688990105449407 507704964268 110209 621354 S +10:09:35 Slot [386] | NOT FINANCIAL TRANSACTION +10:09:49 Slot [388] | NOT FINANCIAL TRANSACTION +10:09:53 +Slot[410] 0200 301000 6213542000061375 ------------- 00 876439 000000000000 507700157800030200066213542000061375 507700157800 857692 668899 S +10:10:03 +Slot[357] 0200 012000 6688990107340307 ------------- 00 330445 000020000000 507703968137010112006688990107340307 507703968137 897365 621354 S +10:10:04 +Slot[414] 0200 010000 6213544002037452 ------------- 00 876446 000010000000 507702209544030060096213544002037452 507702209544 152629 668899 S +10:10:06 Slot [408] | NOT FINANCIAL TRANSACTION +10:10:10 Slot [401] | NOT FINANCIAL TRANSACTION +10:10:16 Slot [403] | NOT FINANCIAL TRANSACTION +10:10:16 +Slot[413] 0200 010000 6688990105161408 ------------- 00 330492 000050000000 507704644605170009006688990105161408 507704644605 407961 621354 S +10:10:22 Slot [393] | NOT FINANCIAL TRANSACTION +10:10:40 Slot [398] | NOT FINANCIAL TRANSACTION +10:10:50 Slot [420] | NOT FINANCIAL TRANSACTION +10:11:01 Slot [391] | NOT FINANCIAL TRANSACTION +10:11:11 +Slot[418] 0200 010000 6213542000061375 ------------- 00 876496 000100000000 507700157801030200066213542000061375 507700157801 704288 668899 S +10:11:12 Slot [392] | NOT FINANCIAL TRANSACTION +10:11:12 Slot [416] | NOT FINANCIAL TRANSACTION +10:11:29 Slot [425] | NOT FINANCIAL TRANSACTION +10:11:30 +Slot[356] 0200 010000 6688990040153221 ------------- 00 330812 000030000000 507703968139010112006688990040153221 507703968139 417708 621354 S +10:11:43 Slot [383] | NOT FINANCIAL TRANSACTION +10:11:54 Slot [411] | NOT FINANCIAL TRANSACTION +10:12:05 Slot [415] | NOT FINANCIAL TRANSACTION +10:12:14 Slot [387] | NOT FINANCIAL TRANSACTION +10:12:16 Slot [396] | NOT FINANCIAL TRANSACTION +10:12:19 +Slot[395] 0200 010000 6213544000774775 ------------- 00 259204 000100000000 5077032592040109SKTB6213544000774775 507703259204 541660 180893 S +10:12:30 +Slot[431] 0200 010000 6688990040153221 ------------- 00 331025 000010000000 507703968141010112006688990040153221 507703968141 705863 621354 S +10:12:32 Slot [423] | NOT FINANCIAL TRANSACTION +10:12:34 Slot [402] | NOT FINANCIAL TRANSACTION +10:12:41 +Slot[400] 0200 300000 6688990602679001 ------------- 00 331061 000000000000 507704153006200010006688990602679001 507704153006 628208 621354 S +10:12:47 Slot [429] | NOT FINANCIAL TRANSACTION +10:13:04 Slot [381] | NOT FINANCIAL TRANSACTION +10:13:06 +Slot[375] 0200 010000 6213544000774775 ------------- 00 259211 000100000000 5077032592110109SKTB6213544000774775 507703259211 851701 180893 S +10:13:16 Slot [417] | NOT FINANCIAL TRANSACTION +10:13:18 Slot [438] | NOT FINANCIAL TRANSACTION +10:13:29 Slot [428] | NOT FINANCIAL TRANSACTION +10:13:40 Slot [399] | NOT FINANCIAL TRANSACTION +10:13:51 Slot [406] | NOT FINANCIAL TRANSACTION +10:14:02 Slot [437] | NOT FINANCIAL TRANSACTION +10:14:14 +Slot[419] 0200 301000 6213545000739817 ------------- 00 259216 031803131725 5077032592160243VTKS6213545000739817 507703259216 782663 180893 S +10:14:18 Slot [404] | NOT FINANCIAL TRANSACTION +10:14:19 +Slot[427] 0200 301000 6688990105576001 ------------- 00 162713 000000000000 507710162713125290016688990105576001 507710162713 406269 198901 S +10:14:24 Slot [422] | NOT FINANCIAL TRANSACTION +10:14:31 +Slot[445] 0200 301000 6213544001976445 ------------- 00 259220 031803133525 5077032592200106NAXA6213544001976445 507703259220 145363 180893 S +10:14:41 Slot [452] | NOT FINANCIAL TRANSACTION +10:14:46 Slot [368] | NOT FINANCIAL TRANSACTION +10:14:48 +Slot[394] 0200 010000 6688990602679001 ------------- 00 331523 000100000000 507704153008200010006688990602679001 507704153008 916425 621354 S +10:14:49 +Slot[440] 0200 010000 6688990105354805 ------------- 00 331524 000030000000 507703968146010112006688990105354805 507703968146 941100 621354 S +10:14:53 Slot [448] | NOT FINANCIAL TRANSACTION +10:15:04 Slot [442] | NOT FINANCIAL TRANSACTION +10:15:16 Slot [443] | NOT FINANCIAL TRANSACTION +10:15:17 +Slot[389] 0200 010000 6213544001976445 ------------- 00 259225 000010000000 5077032592250106NAXA6213544001976445 507703259225 372829 180893 S +10:15:20 Slot [465] | NOT FINANCIAL TRANSACTION +10:15:25 Slot [435] | NOT FINANCIAL TRANSACTION +10:15:40 Slot [439] | NOT FINANCIAL TRANSACTION +10:15:50 +Slot[376] 0200 301000 6213544001453726 ------------- 00 876692 000000000000 507702243095030200276213544001453726 507702243095 206081 668899 S +10:15:50 Slot [390] | NOT FINANCIAL TRANSACTION +10:16:01 Slot [433] | NOT FINANCIAL TRANSACTION +10:16:12 Slot [424] | NOT FINANCIAL TRANSACTION +10:16:22 Slot [447] | NOT FINANCIAL TRANSACTION +10:16:26 Slot [421] | NOT FINANCIAL TRANSACTION +10:16:29 +Slot[430] 0200 010000 6213544001453726 ------------- 00 876718 000030000000 507702243096030200276213544001453726 507702243096 604263 668899 S +10:16:40 Slot [460] | NOT FINANCIAL TRANSACTION +10:16:56 Slot [478] | NOT FINANCIAL TRANSACTION +10:17:11 Slot [450] | NOT FINANCIAL TRANSACTION +10:17:23 Slot [463] | NOT FINANCIAL TRANSACTION +10:17:24 Slot [467] | NOT FINANCIAL TRANSACTION +10:17:34 Slot [441] | NOT FINANCIAL TRANSACTION +10:17:39 Slot [456] | NOT FINANCIAL TRANSACTION +10:17:50 Slot [462] | NOT FINANCIAL TRANSACTION +10:18:00 Slot [405] | NOT FINANCIAL TRANSACTION +10:18:11 Slot [455] | NOT FINANCIAL TRANSACTION +10:18:14 +Slot[434] 0200 010000 6213544001733150 ------------- 00 876780 000100000000 507702209546030060096213544001733150 507702209546 073234 668899 S +10:18:16 +Slot[426] 0200 011000 6213544001623781 ------------- 00 162776 000030000000 507710162776015290316213544001623781 507710162776 460869 198901 S +10:18:22 Slot [412] | NOT FINANCIAL TRANSACTION +10:18:26 Slot [407] | NOT FINANCIAL TRANSACTION +10:18:37 Slot [485] | NOT FINANCIAL TRANSACTION +10:18:49 Slot [449] | NOT FINANCIAL TRANSACTION +10:19:04 Slot [481] | NOT FINANCIAL TRANSACTION +10:19:05 +Slot[461] 0200 010000 6688990602679001 ------------- 00 332597 000100000000 507704153012200010006688990602679001 507704153012 592217 621354 S +10:19:05 Slot [475] | NOT FINANCIAL TRANSACTION +10:19:15 Slot [409] | NOT FINANCIAL TRANSACTION +10:19:19 +Slot[468] 0200 010000 6213545000872659 ------------- 00 259248 000100000000 5077032592480486HPXK6213545000872659 507703259248 023298 180893 S +10:19:20 +Slot[469] 0200 011000 6213544001501078 ------------- 00 162797 000020000000 507710162797015290316213544001501078 507710162797 014985 198901 S +10:19:28 Slot [453] | NOT FINANCIAL TRANSACTION +10:19:30 Slot [457] | NOT FINANCIAL TRANSACTION +10:19:39 +Slot[432] 0200 301000 1234010100185991 ------------- 91 332137 000000000000 507703174762040027001234010100185991 507703174762 399732 621354 S +10:19:39 +Slot[474] 0200 010000 6213544001733150 ------------- 51 876834 000050000000 507702209548030060096213544001733150 507702209548 950405 668899 S +10:19:41 Slot [487] | NOT FINANCIAL TRANSACTION +10:19:51 Slot [482] | NOT FINANCIAL TRANSACTION +10:20:02 Slot [472] | NOT FINANCIAL TRANSACTION +10:20:13 +Slot[483] 0200 010000 6688990602679001 ------------- 00 332865 000100000000 507704153014200010006688990602679001 507704153014 173425 621354 S +10:20:13 Slot [479] | NOT FINANCIAL TRANSACTION +10:20:16 Slot [444] | NOT FINANCIAL TRANSACTION +10:20:24 Slot [489] | NOT FINANCIAL TRANSACTION +10:20:30 Slot [471] | NOT FINANCIAL TRANSACTION +10:20:39 Slot [451] | NOT FINANCIAL TRANSACTION +10:20:51 Slot [490] | NOT FINANCIAL TRANSACTION +10:21:02 Slot [459] | NOT FINANCIAL TRANSACTION +10:21:18 Slot [498] | NOT FINANCIAL TRANSACTION +10:21:22 +Slot[446] 0200 010000 6688990602679001 ------------- 00 333116 000100000000 507704153016200010006688990602679001 507704153016 687214 621354 S +10:21:26 +Slot[476] 0200 301000 6213545000086714 ------------- 00 876913 000000000000 507702623377030030066213545000086714 507702623377 502187 668899 S +10:21:32 Slot [436] | NOT FINANCIAL TRANSACTION +10:21:34 Slot [491] | NOT FINANCIAL TRANSACTION +10:21:50 Slot [486] | NOT FINANCIAL TRANSACTION +10:22:03 +Slot[497] 0200 301000 6213544001054300 ------------- 00 876935 000000000000 507700145765030200056213544001054300 507700145765 608567 668899 S +10:22:06 Slot [473] | NOT FINANCIAL TRANSACTION +10:22:22 Slot [499] | NOT FINANCIAL TRANSACTION +10:22:34 Slot [2] | NOT FINANCIAL TRANSACTION +10:22:34 Slot [7] | NOT FINANCIAL TRANSACTION +10:22:37 Slot [470] | NOT FINANCIAL TRANSACTION +10:22:45 +Slot[477] 0200 010000 6213544001054300 ------------- 00 876950 000010000000 507700145766030200056213544001054300 507700145766 263035 668899 S +10:22:50 +Slot[464] 0200 011000 6213544000216454 ------------- 00 168695 000100000000 507700026134010002006213544000216454 507700026134 768047 220699 S +10:22:54 Slot [495] | NOT FINANCIAL TRANSACTION +10:23:10 Slot [492] | NOT FINANCIAL TRANSACTION +10:23:26 Slot [18] | NOT FINANCIAL TRANSACTION +10:23:28 +Slot[14] 0200 010000 6213543000243088 ------------- 00 876975 000100000000 507700080142030200016213543000243088 507700080142 398660 668899 S +10:23:36 Slot [454] | NOT FINANCIAL TRANSACTION +10:23:37 +Slot[484] 0200 301000 6688990601449000 ------------- 00 333605 000000000000 507704153017200010006688990601449000 507704153017 720137 621354 S +10:23:37 Slot [480] | NOT FINANCIAL TRANSACTION +10:23:53 Slot [24] | NOT FINANCIAL TRANSACTION +10:24:05 +Slot[466] 0200 011000 6213544001607057 ------------- 00 162892 000100000000 507710162892010529016213544001607057 507710162892 337317 198901 S +10:24:07 Slot [22] | NOT FINANCIAL TRANSACTION +10:24:21 Slot [493] | NOT FINANCIAL TRANSACTION +10:24:32 Slot [3] | NOT FINANCIAL TRANSACTION +10:24:38 Slot [488] | NOT FINANCIAL TRANSACTION +10:24:43 Slot [12] | NOT FINANCIAL TRANSACTION +10:24:54 Slot [458] | NOT FINANCIAL TRANSACTION +10:25:05 Slot [0] | NOT FINANCIAL TRANSACTION +10:25:14 +Slot[4] 0200 010000 6213544001621629 ------------- 51 877026 000020000000 507700726498030080016213544001621629 507700726498 560814 668899 S +10:25:16 +Slot[5] 0200 311000 6213544000216454 ------------- 00 168699 000000000000 507700026138010002006213544000216454 507700026138 697580 220699 S +10:25:16 Slot [16] | NOT FINANCIAL TRANSACTION +10:25:16 Slot [1] | NOT FINANCIAL TRANSACTION +10:25:27 Slot [21] | NOT FINANCIAL TRANSACTION +10:25:40 Slot [8] | NOT FINANCIAL TRANSACTION +10:25:42 Slot [31] | NOT FINANCIAL TRANSACTION +10:25:53 Slot [496] | NOT FINANCIAL TRANSACTION +10:26:04 Slot [15] | NOT FINANCIAL TRANSACTION +10:26:15 Slot [23] | NOT FINANCIAL TRANSACTION +10:26:26 Slot [26] | NOT FINANCIAL TRANSACTION +10:26:37 Slot [6] | NOT FINANCIAL TRANSACTION +10:26:42 Slot [10] | NOT FINANCIAL TRANSACTION +10:26:47 Slot [19] | NOT FINANCIAL TRANSACTION +10:26:59 Slot [9] | NOT FINANCIAL TRANSACTION +10:27:14 +Slot[46] 0200 301000 1808931500007685 ------------- 00 334335 000000000000 507705269693190009001808931500007685 507705269693 340815 621354 S +10:27:18 Slot [27] | NOT FINANCIAL TRANSACTION +10:27:29 Slot [11] | NOT FINANCIAL TRANSACTION +10:27:34 Slot [25] | NOT FINANCIAL TRANSACTION +10:27:44 Slot [494] | NOT FINANCIAL TRANSACTION +10:27:44 Slot [29] | NOT FINANCIAL TRANSACTION +10:27:46 +Slot[30] 0200 302000 6213544000581915 ------------- 00 259290 031803265025 5077032592900222XKPV6213544000581915 507703259290 260411 180893 S +10:27:55 +Slot[28] 0200 301000 1808930200028611 ------------- 00 334498 000000000000 507703794857010095001808930200028611 507703794857 305065 621354 S +10:28:02 Slot [34] | NOT FINANCIAL TRANSACTION +10:28:15 +Slot[20] 0200 300000 6688990601466509 ------------- 00 334597 000000000000 507704153018200010006688990601466509 507704153018 083761 621354 S +10:28:19 +Slot[42] 0200 010000 6213544000166766 ------------- 00 259296 000050000000 5077032592960441VT526213544000166766 507703259296 556423 180893 S +10:28:20 +Slot[39] 0200 010000 6213544000581915 ------------- 55 259298 000050000000 5077032592980222XKPV6213544000581915 507703259298 338191 180893 S +10:28:37 +Slot[56] 0200 011000 1808931500007685 ------------- 00 334652 000010000000 507705269695190009001808931500007685 507705269695 068157 621354 S +10:28:39 Slot [36] | NOT FINANCIAL TRANSACTION +10:28:46 Slot [38] | NOT FINANCIAL TRANSACTION +10:28:55 +Slot[52] 0200 011000 1808930200028611 ------------- 00 334732 000005000000 507703794859010095001808930200028611 507703794859 671917 621354 S +10:29:00 +Slot[32] 0200 301000 1808930600028898 ------------- 00 334750 000000000000 507704350422030034001808930600028898 507704350422 045542 621354 S +10:29:04 +Slot[13] 0200 011000 1808930600008346 ------------- 00 334758 000100000000 507704420058030041001808930600008346 507704420058 774778 621354 S +10:29:06 Slot [47] | NOT FINANCIAL TRANSACTION +10:29:19 +Slot[44] 0200 010000 6688990601466509 ------------- 55 334829 000050000000 507704153020200010006688990601466509 507704153020 109768 621354 S +10:29:20 +Slot[40] 0200 010000 6213544000581915 ------------- 00 259307 000050000000 5077032593070222XKPV6213544000581915 507703259307 743961 180893 S +10:29:28 Slot [41] | NOT FINANCIAL TRANSACTION +10:29:34 +Slot[57] 0200 301000 6688990102154307 ------------- 00 334899 000000000000 507703384430130018006688990102154307 507703384430 797971 621354 S +10:29:38 +Slot[54] 0200 011000 6213544000130085 ------------- 00 258884 000100000000 507700040364010004006213544000130085 507700040364 270601 220699 S +10:29:39 +Slot[37] 0200 010000 6213545001114275 ------------- 00 259312 000050000000 5077032593120401XSBR6213545001114275 507703259312 946443 180893 S +10:29:48 Slot [61] | NOT FINANCIAL TRANSACTION +10:29:48 Slot [59] | NOT FINANCIAL TRANSACTION +10:29:51 Slot [58] | NOT FINANCIAL TRANSACTION +10:29:54 +Slot[51] 0200 010000 6688990601466509 ------------- 00 334970 000050000000 507704153022200010006688990601466509 507704153022 645402 621354 S +10:30:00 Slot [55] | NOT FINANCIAL TRANSACTION +10:30:10 Slot [17] | NOT FINANCIAL TRANSACTION +10:30:16 Slot [60] | NOT FINANCIAL TRANSACTION +10:30:22 +Slot[72] 0200 301000 1808930600028898 ------------- 00 335084 000000000000 507704350423030034001808930600028898 507704350423 059163 621354 S +10:30:27 Slot [63] | NOT FINANCIAL TRANSACTION +10:30:41 Slot [48] | NOT FINANCIAL TRANSACTION +10:30:50 Slot [67] | NOT FINANCIAL TRANSACTION +10:30:53 +Slot[35] 0200 301000 6213543000223312 ------------- 00 259320 031803295725 5077032593200344SVKV6213543000223312 507703259320 843465 180893 S +10:31:00 +Slot[53] 0200 011000 6688990102154307 ------------- 00 335238 000050000000 507703384432130018006688990102154307 507703384432 516678 621354 S +10:31:05 +Slot[71] 0200 010000 6688990102319702 ------------- 00 335273 000050000000 507704644608170009006688990102319702 507704644608 869321 621354 S +10:31:08 +Slot[79] 0200 300000 6688990108408707 ------------- 00 335286 000000000000 507703226330040032006688990108408707 507703226330 872517 621354 S +10:31:08 Slot [80] | NOT FINANCIAL TRANSACTION +10:31:23 Slot [85] | NOT FINANCIAL TRANSACTION +10:31:23 +Slot[49] 0200 300000 6688990060026422 ------------- 00 335345 000000000000 507704153023200010006688990060026422 507704153023 741343 621354 S +10:31:29 Slot [83] | NOT FINANCIAL TRANSACTION +10:31:33 Slot [45] | NOT FINANCIAL TRANSACTION +10:31:43 +Slot[75] 0200 010000 6213541000632284 ------------- 00 877283 000050000000 507701303345030060046213541000632284 507701303345 660197 668899 S +10:31:45 Slot [78] | NOT FINANCIAL TRANSACTION +10:31:52 Slot [68] | NOT FINANCIAL TRANSACTION +10:31:55 Slot [73] | NOT FINANCIAL TRANSACTION +10:32:07 Slot [91] | NOT FINANCIAL TRANSACTION +10:32:17 Slot [43] | NOT FINANCIAL TRANSACTION +10:32:28 Slot [76] | NOT FINANCIAL TRANSACTION +10:32:33 Slot [77] | NOT FINANCIAL TRANSACTION +10:32:33 +Slot[89] 0200 011000 6688990105576001 ------------- 00 163038 000020000000 507710163038125290016688990105576001 507710163038 891488 198901 S +10:32:45 Slot [88] | NOT FINANCIAL TRANSACTION +10:32:50 +Slot[65] 0200 011000 6688990108408301 ------------- 55 335703 000005000000 507703226332040032006688990108408301 507703226332 769808 621354 S +10:32:54 Slot [66] | NOT FINANCIAL TRANSACTION +10:32:56 +Slot[94] 0200 301000 1808930200023349 ------------- 00 335706 000000000000 507703655866160018001808930200023349 507703655866 846763 621354 S +10:32:59 +Slot[86] 0200 011000 1808930600028898 ------------- 00 335712 000070000000 507704350427030034001808930600028898 507704350427 132385 621354 S +10:33:06 Slot [93] | NOT FINANCIAL TRANSACTION +10:33:18 Slot [103] | NOT FINANCIAL TRANSACTION +10:33:27 +Slot[33] 0200 010000 6213548000243525 ------------- 51 877351 000030000000 507700976936034070026213548000243525 507700976936 668602 668899 S +10:33:28 +Slot[101] 0200 302000 6213545000760730 ------------- 00 877352 000000000000 507700622585030070026213545000760730 507700622585 099090 668899 S +10:33:33 Slot [95] | NOT FINANCIAL TRANSACTION +10:33:41 +Slot[74] 0200 010000 6213545000630255 ------------- 51 877362 000005000000 507700683750030020016213545000630255 507700683750 009592 668899 S +10:33:44 Slot [105] | NOT FINANCIAL TRANSACTION +10:33:56 Slot [102] | NOT FINANCIAL TRANSACTION +10:33:58 +Slot[70] 0200 010000 6213548000243525 ------------- 00 877372 000020000000 507700976937034070026213548000243525 507700976937 676914 668899 S +10:34:00 Slot [50] | NOT FINANCIAL TRANSACTION +10:34:10 +Slot[107] 0200 010000 6213541000546914 ------------- 00 877380 000100000000 507700588554030060016213541000546914 507700588554 929045 668899 S +10:34:12 +Slot[92] 0200 300000 6688990040154443 ------------- 00 336003 000000000000 507703572720090014006688990040154443 507703572720 735888 621354 S +10:34:19 +Slot[81] 0200 010000 1808931100011855 ------------- 00 336016 000010000000 507704349994030033001808931100011855 507704349994 449729 621354 S +10:34:25 +Slot[100] 0200 012000 6688990060026422 ------------- 00 336060 000100000000 507704153028200010006688990060026422 507704153028 840923 621354 S +10:34:28 +Slot[114] 0200 011000 1808930200023349 ------------- 00 336066 000060000000 507703655868160018001808930200023349 507703655868 719107 621354 S +10:34:33 +Slot[108] 0200 010000 6213545000630255 ------------- 00 877392 000002000000 507700683751030020016213545000630255 507700683751 056611 668899 S +10:34:33 Slot [104] | NOT FINANCIAL TRANSACTION +10:34:38 +Slot[82] 0200 011000 6688990104094006 ------------- 00 336119 000100000000 507703384436130018006688990104094006 507703384436 790354 621354 S +10:34:48 Slot [122] | NOT FINANCIAL TRANSACTION +10:34:58 Slot [87] | NOT FINANCIAL TRANSACTION +10:34:59 Slot [69] | NOT FINANCIAL TRANSACTION +10:35:02 +Slot[119] 0200 010000 6213548000159978 ------------- 61 259348 000200000000 5077032593480161HQBR6213548000159978 507703259348 562107 180893 S +10:35:16 Slot [117] | NOT FINANCIAL TRANSACTION +10:35:17 Slot [115] | NOT FINANCIAL TRANSACTION +10:35:26 +Slot[96] 0200 010000 6213548000159978 ------------- 61 259353 000200000000 5077032593530161HQBR6213548000159978 507703259353 651230 180893 S +10:35:38 Slot [62] | NOT FINANCIAL TRANSACTION +10:35:38 +Slot[110] 0200 011000 6688990104094006 ------------- 00 336348 000050000000 507703384438130018006688990104094006 507703384438 666345 621354 S +10:35:45 +Slot[64] 0200 302000 6688990040112292 ------------- 00 336376 000000000000 507703968175010112006688990040112292 507703968175 845979 621354 S +10:35:57 +Slot[136] 0200 301000 1808930200023349 ------------- 00 336406 000000000000 507703665693160019001808930200023349 507703665693 533309 621354 S +10:35:59 Slot [97] | NOT FINANCIAL TRANSACTION +10:36:00 Slot [124] | NOT FINANCIAL TRANSACTION +10:36:09 Slot [113] | NOT FINANCIAL TRANSACTION +10:36:13 +Slot[84] 0200 012000 6213548000159978 ------------- 00 259358 000010000000 5077032593580161HQBR6213548000159978 507703259358 521086 180893 S +10:36:25 Slot [90] | NOT FINANCIAL TRANSACTION +10:36:28 +Slot[98] 0200 012000 6688990601449000 ------------- 00 336528 000030000000 507704153031200010006688990601449000 507704153031 717611 621354 S +10:36:36 Slot [121] | NOT FINANCIAL TRANSACTION +10:36:51 Slot [159] | NOT FINANCIAL TRANSACTION +10:37:02 Slot [112] | NOT FINANCIAL TRANSACTION +10:37:07 Slot [134] | NOT FINANCIAL TRANSACTION +10:37:18 Slot [99] | NOT FINANCIAL TRANSACTION +10:37:30 +Slot[144] 0200 301000 6213541000284029 ------------- 00 877499 000000000000 507701855343033110016213541000284029 507701855343 609768 668899 S +10:37:33 Slot [148] | NOT FINANCIAL TRANSACTION +10:37:34 Slot [142] | NOT FINANCIAL TRANSACTION +10:37:45 Slot [111] | NOT FINANCIAL TRANSACTION +10:38:00 Slot [126] | NOT FINANCIAL TRANSACTION +10:38:04 Slot [128] | NOT FINANCIAL TRANSACTION +10:38:11 Slot [149] | NOT FINANCIAL TRANSACTION +10:38:22 Slot [155] | NOT FINANCIAL TRANSACTION +10:38:25 +Slot[140] 0200 010000 6213541000546914 ------------- 00 877537 000100000000 507700588556030060016213541000546914 507700588556 893197 668899 S +10:38:33 Slot [131] | NOT FINANCIAL TRANSACTION +10:38:44 Slot [109] | NOT FINANCIAL TRANSACTION +10:38:53 +Slot[146] 0200 300000 6213541000284029 ------------- 00 877552 000000000000 507701855345033110016213541000284029 507701855345 573680 668899 S +10:39:00 Slot [127] | NOT FINANCIAL TRANSACTION +10:39:06 Slot [139] | NOT FINANCIAL TRANSACTION +10:39:08 +Slot[151] 0200 012000 6688990060026471 ------------- 00 337180 000010000000 507704153034200010006688990060026471 507704153034 036736 621354 S +10:39:12 +Slot[150] 0200 011000 6213544000430725 ------------- 00 223416 000100000000 507700118551010011006213544000430725 507700118551 970333 220699 S +10:39:13 Slot [123] | NOT FINANCIAL TRANSACTION +10:39:15 +Slot[154] 0200 010000 6213544001687539 ------------- 00 259371 000050000000 5077032593710361BLTB6213544001687539 507703259371 228600 180893 S +10:39:24 Slot [118] | NOT FINANCIAL TRANSACTION +10:39:36 Slot [157] | NOT FINANCIAL TRANSACTION +10:39:37 +Slot[138] 0200 302000 6213541000284029 ------------- 00 877578 000000000000 507701855346033110016213541000284029 507701855346 646736 668899 S +10:39:51 Slot [135] | NOT FINANCIAL TRANSACTION +10:39:57 +Slot[132] 0200 010000 6213541000657497 ------------- 00 877591 000100000000 507700484312030200086213541000657497 507700484312 135773 668899 S +10:40:02 +Slot[171] 0200 010000 6213544001687539 ------------- 00 259376 000100000000 5077032593760361BLTB6213544001687539 507703259376 818567 180893 S +10:40:07 +Slot[152] 0200 011000 6688990040156612 ------------- 00 337414 000005000000 507703968185010112006688990040156612 507703968185 496998 621354 S +10:40:08 Slot [120] | NOT FINANCIAL TRANSACTION +10:40:12 Slot [167] | NOT FINANCIAL TRANSACTION +10:40:16 Slot [156] | NOT FINANCIAL TRANSACTION +10:40:18 +Slot[116] 0200 301000 6688990060026471 ------------- 00 337458 000000000000 507704153035200010006688990060026471 507704153035 248182 621354 S +10:40:28 Slot [129] | NOT FINANCIAL TRANSACTION +10:40:37 Slot [168] | NOT FINANCIAL TRANSACTION +10:40:39 Slot [175] | NOT FINANCIAL TRANSACTION +10:40:45 +Slot[130] 0200 011000 1888880000038851 ------------- 00 337554 000050000000 507704815818110005001888880000038851 507704815818 404794 621354 S +10:40:49 +Slot[141] 0200 010000 6213544001687539 ------------- 00 259380 000100000000 5077032593800361BLTB6213544001687539 507703259380 846706 180893 S +10:41:01 Slot [172] | NOT FINANCIAL TRANSACTION +10:41:01 +Slot[169] 0200 010000 6213541000657497 ------------- 00 877628 000100000000 507700484314030200086213541000657497 507700484314 699412 668899 S +10:41:10 Slot [174] | NOT FINANCIAL TRANSACTION +10:41:10 +Slot[166] 0200 010000 6688990040112292 ------------- 51 337673 000020000000 507703968187010112006688990040112292 507703968187 616794 621354 S +10:41:15 Slot [147] | NOT FINANCIAL TRANSACTION +10:41:22 +Slot[160] 0200 010000 6688990040050419 ------------- 00 259383 000100000000 5077032593830262PSLB6688990040050419 507703259383 897556 180893 S +10:41:23 +Slot[164] 0200 300000 6213541000284029 ------------- 00 877645 000000000000 507701855348033110016213541000284029 507701855348 992466 668899 S +10:41:33 Slot [133] | NOT FINANCIAL TRANSACTION +10:41:44 Slot [178] | NOT FINANCIAL TRANSACTION +10:41:56 Slot [195] | NOT FINANCIAL TRANSACTION +10:42:02 +Slot[170] 0200 012000 6688990601975806 ------------- 00 337883 000100000000 507703503246090007006688990601975806 507703503246 522228 621354 S +10:42:08 +Slot[183] 0200 010000 6213541000284029 ------------- 00 877672 000030000000 507701855349033110016213541000284029 507701855349 446063 668899 S +10:42:11 Slot [189] | NOT FINANCIAL TRANSACTION +10:42:12 Slot [191] | NOT FINANCIAL TRANSACTION +10:42:14 +Slot[125] 0200 010000 6213541000657497 ------------- 55 877683 000070000000 507700484316030200086213541000657497 507700484316 508286 668899 S +10:42:21 +Slot[143] 0200 010000 6688990040053108 ------------- 00 337965 000030000000 507704964302150011006688990040053108 507704964302 331946 621354 S +10:42:22 Slot [161] | NOT FINANCIAL TRANSACTION +10:42:31 +Slot[181] 0200 311000 6213541000251374 ------------- 55 168703 000000000000 507700026142010002006213541000251374 507700026142 970216 220699 S +10:42:32 +Slot[204] 0200 010000 6688990040112292 ------------- 00 338020 000010000000 507703968189010112006688990040112292 507703968189 935650 621354 S +10:42:33 Slot [202] | NOT FINANCIAL TRANSACTION +10:42:36 Slot [158] | NOT FINANCIAL TRANSACTION +10:42:49 Slot [197] | NOT FINANCIAL TRANSACTION +10:42:52 +Slot[182] 0200 010000 6213544000766946 ------------- 00 223419 000100000000 507700118553010011006213544000766946 507700118553 325141 220699 S +10:42:58 +Slot[193] 0200 010000 6213541000657497 ------------- 00 877705 000100000000 507700484318030200086213541000657497 507700484318 096342 668899 S +10:42:59 +Slot[200] 0200 012000 6688990601975806 ------------- 00 338116 000100000000 507703503248090007006688990601975806 507703503248 419990 621354 S +10:43:02 Slot [198] | NOT FINANCIAL TRANSACTION +10:43:03 +Slot[177] 0200 011000 6213545000193155 ------------- 00 163219 000100000000 507710163219125290016213545000193155 507710163219 175688 198901 S +10:43:12 Slot [213] | NOT FINANCIAL TRANSACTION +10:43:14 Slot [210] | NOT FINANCIAL TRANSACTION +10:43:28 Slot [106] | NOT FINANCIAL TRANSACTION +10:43:32 +Slot[165] 0200 011000 6213545000193155 ------------- 00 163226 000100000000 507710163226125290016213545000193155 507710163226 739641 198901 S +10:43:43 Slot [163] | NOT FINANCIAL TRANSACTION +10:43:54 Slot [153] | NOT FINANCIAL TRANSACTION +10:43:55 +Slot[211] 0200 010000 6213544000766946 ------------- 00 223422 000095000000 507700118555010011006213544000766946 507700118555 787201 220699 S +10:43:57 +Slot[187] 0200 012000 6688990601975806 ------------- 00 338352 000100000000 507703503250090007006688990601975806 507703503250 096746 621354 S +10:44:05 Slot [145] | NOT FINANCIAL TRANSACTION +10:44:06 +Slot[162] 0200 010000 6213541000657497 ------------- 00 877753 000100000000 507700484320030200086213541000657497 507700484320 522965 668899 S +10:44:16 Slot [196] | NOT FINANCIAL TRANSACTION +10:44:20 Slot [206] | NOT FINANCIAL TRANSACTION +10:44:31 Slot [205] | NOT FINANCIAL TRANSACTION +10:44:42 Slot [221] | NOT FINANCIAL TRANSACTION +10:44:53 Slot [217] | NOT FINANCIAL TRANSACTION +10:45:02 +Slot[194] 0200 010000 6213544000766946 ------------- 00 223425 000004000000 507700118557010011006213544000766946 507700118557 803481 220699 S +10:45:03 Slot [214] | NOT FINANCIAL TRANSACTION +10:45:13 Slot [180] | NOT FINANCIAL TRANSACTION +10:45:14 +Slot[222] 0200 010000 6213541000657497 ------------- 00 877789 000100000000 507700484322030200086213541000657497 507700484322 163140 668899 S +10:45:15 +Slot[226] 0200 300000 6688990103294706 ------------- 00 338625 000000000000 507703498990060022006688990103294706 507703498990 622357 621354 S +10:45:16 Slot [176] | NOT FINANCIAL TRANSACTION +10:45:18 Slot [184] | NOT FINANCIAL TRANSACTION +10:45:20 +Slot[190] 0200 012000 6688990601975806 ------------- 00 338653 000050000000 507703503252090007006688990601975806 507703503252 826039 621354 S +10:45:24 Slot [225] | NOT FINANCIAL TRANSACTION +10:45:35 Slot [137] | NOT FINANCIAL TRANSACTION +10:45:46 Slot [218] | NOT FINANCIAL TRANSACTION +10:45:57 Slot [173] | NOT FINANCIAL TRANSACTION +10:46:08 Slot [224] | NOT FINANCIAL TRANSACTION +10:46:19 Slot [208] | NOT FINANCIAL TRANSACTION +10:46:20 Slot [207] | NOT FINANCIAL TRANSACTION +10:46:31 Slot [215] | NOT FINANCIAL TRANSACTION +10:46:31 +Slot[223] 0200 302000 6213548000511640 ------------- 00 877820 000000000000 507700145791030200056213548000511640 507700145791 073368 668899 S +10:46:47 Slot [231] | NOT FINANCIAL TRANSACTION +10:46:49 +Slot[192] 0200 010000 6213545000623805 ------------- 00 259409 000100000000 5077032594090482XKMO6213545000623805 507703259409 313117 180893 S +10:46:50 +Slot[188] 0200 010000 6688990103294706 ------------- 00 338954 000100000000 507703498992060022006688990103294706 507703498992 580516 621354 S +10:46:56 +Slot[199] 0200 011000 6688990040043950 ------------- 00 163287 000100000000 507710163287015290166688990040043950 507710163287 137363 198901 S +10:47:02 Slot [185] | NOT FINANCIAL TRANSACTION +10:47:12 Slot [220] | NOT FINANCIAL TRANSACTION +10:47:20 +Slot[179] 0200 300000 6213541000073885 ------------- 00 877846 000000000000 507702490235032150016213541000073885 507702490235 326645 668899 S +10:47:22 Slot [229] | NOT FINANCIAL TRANSACTION +10:47:23 +Slot[186] 0200 010000 6213548000511640 ------------- 00 877849 000030000000 507700145793030200056213548000511640 507700145793 167822 668899 S +10:47:23 Slot [212] | NOT FINANCIAL TRANSACTION +10:47:24 +Slot[227] 0200 010000 6213544001687539 ------------- 00 259417 000050000000 5077032594170361BLTB6213544001687539 507703259417 247532 180893 S +10:47:33 Slot [230] | NOT FINANCIAL TRANSACTION +10:47:35 +Slot[219] 0200 301000 6213545000518849 ------------- 00 259420 031803463825 5077032594200107HSTH6213545000518849 507703259420 962964 180893 S +10:47:43 Slot [236] | NOT FINANCIAL TRANSACTION +10:47:54 Slot [216] | NOT FINANCIAL TRANSACTION +10:47:54 +Slot[232] 0200 301000 6213545000585863 ------------- 00 877868 000000000000 507700233837030100016213545000585863 507700233837 747392 668899 S +10:47:59 +Slot[239] 0200 010000 6213544002037452 ------------- 51 877873 000010000000 507702209558030060096213544002037452 507702209558 330677 668899 S +10:48:10 Slot [234] | NOT FINANCIAL TRANSACTION +10:48:11 Slot [235] | NOT FINANCIAL TRANSACTION +10:48:21 Slot [242] | NOT FINANCIAL TRANSACTION +10:48:22 +Slot[250] 0200 301000 6688990108232909 ------------- 55 339253 000000000000 507703072925010087006688990108232909 507703072925 906315 621354 S +10:48:23 +Slot[201] 0200 010000 6213544002037452 ------------- 00 877888 000009000000 507702209559030060096213544002037452 507702209559 988497 668899 S +10:48:24 Slot [228] | NOT FINANCIAL TRANSACTION +10:48:28 +Slot[238] 0200 300000 6688990602800706 ------------- 00 339268 000000000000 507704153036200010006688990602800706 507704153036 338524 621354 S +10:48:36 +Slot[252] 0200 010000 6688990103294706 ------------- 00 339299 000100000000 507703498994060022006688990103294706 507703498994 310829 621354 S +10:48:37 Slot [240] | NOT FINANCIAL TRANSACTION +10:48:48 Slot [245] | NOT FINANCIAL TRANSACTION +10:48:57 +Slot[203] 0200 301000 6688990108232909 ------------- 55 339402 000000000000 507703072926010087006688990108232909 507703072926 914417 621354 S +10:48:59 Slot [248] | NOT FINANCIAL TRANSACTION +10:49:10 Slot [258] | NOT FINANCIAL TRANSACTION +10:49:20 +Slot[247] 0200 301000 6688990108232909 ------------- 75 339485 000000000000 507703072927010087006688990108232909 507703072927 102024 621354 S +10:49:21 Slot [244] | NOT FINANCIAL TRANSACTION +10:49:26 Slot [253] | NOT FINANCIAL TRANSACTION +10:49:32 Slot [243] | NOT FINANCIAL TRANSACTION +10:49:47 Slot [256] | NOT FINANCIAL TRANSACTION +10:49:50 +Slot[246] 0200 012000 6688990602800706 ------------- 00 339587 000030000000 507704153039200010006688990602800706 507704153039 007477 621354 S +10:49:58 Slot [260] | NOT FINANCIAL TRANSACTION +10:50:10 Slot [241] | NOT FINANCIAL TRANSACTION +10:50:15 Slot [251] | NOT FINANCIAL TRANSACTION +10:50:21 Slot [273] | NOT FINANCIAL TRANSACTION +10:50:28 Slot [265] | NOT FINANCIAL TRANSACTION +10:50:31 Slot [249] | NOT FINANCIAL TRANSACTION +10:50:42 Slot [276] | NOT FINANCIAL TRANSACTION +10:50:58 Slot [264] | NOT FINANCIAL TRANSACTION +10:51:09 Slot [254] | NOT FINANCIAL TRANSACTION +10:51:12 +Slot[269] 0200 301000 6688990040020628 ------------- 00 259441 031803501325 5077032594410401XSBR6688990040020628 507703259441 495384 180893 S +10:51:23 Slot [268] | NOT FINANCIAL TRANSACTION +10:51:25 Slot [209] | NOT FINANCIAL TRANSACTION +10:51:30 Slot [279] | NOT FINANCIAL TRANSACTION +10:51:41 +Slot[261] 0200 010000 1808930600023253 ------------- 00 878034 000100000000 507701506299036140011808930600023253 507701506299 965409 668899 S +10:51:49 Slot [233] | NOT FINANCIAL TRANSACTION +10:52:08 +Slot[266] 0200 011000 1808930600055941 ------------- 00 340005 000050000000 507704420131030041001808930600055941 507704420131 284277 621354 S +10:52:15 Slot [257] | NOT FINANCIAL TRANSACTION +10:52:32 Slot [262] | NOT FINANCIAL TRANSACTION +10:52:33 Slot [274] | NOT FINANCIAL TRANSACTION +10:52:33 Slot [270] | NOT FINANCIAL TRANSACTION +10:52:46 Slot [263] | NOT FINANCIAL TRANSACTION +10:52:47 +Slot[284] 0200 010000 6213544001456984 ------------- 55 878088 000050000000 507700157809030200066213544001456984 507700157809 118001 668899 S +10:52:48 +Slot[267] 0200 010000 6213544001323135 ------------- 00 878090 000050000000 507701855351033110016213544001323135 507701855351 341784 668899 S +10:52:57 Slot [299] | NOT FINANCIAL TRANSACTION +10:53:07 +Slot[280] 0200 011000 6213545000464655 ------------- 00 163378 000030000000 507710163378015290166213545000464655 507710163378 925859 198901 S +10:53:08 Slot [278] | NOT FINANCIAL TRANSACTION +10:53:19 Slot [293] | NOT FINANCIAL TRANSACTION +10:53:34 Slot [277] | NOT FINANCIAL TRANSACTION +10:53:36 Slot [285] | NOT FINANCIAL TRANSACTION +10:53:51 +Slot[287] 0200 010000 6213544001456984 ------------- 00 259451 000050000000 5077032594510107HSTH6213544001456984 507703259451 416385 180893 S +10:54:03 Slot [289] | NOT FINANCIAL TRANSACTION +10:54:17 Slot [304] | NOT FINANCIAL TRANSACTION +10:54:28 +Slot[275] 0200 010000 6213544002147954 ------------- 61 259457 000200000000 5077032594570367BL206213544002147954 507703259457 198506 180893 S +10:54:36 Slot [281] | NOT FINANCIAL TRANSACTION +10:54:40 +Slot[309] 0200 010000 6213545000347421 ------------- 00 259459 000010000000 5077032594590527LPBL6213545000347421 507703259459 647848 180893 S +10:54:44 +Slot[291] 0200 012000 6688990602677906 ------------- 00 340518 000100000000 507704153041200010006688990602677906 507704153041 754098 621354 S +10:54:50 +Slot[296] 0200 300000 6688990104242308 ------------- 00 340550 000000000000 507703585511090015006688990104242308 507703585511 691790 621354 S +10:54:50 Slot [259] | NOT FINANCIAL TRANSACTION +10:54:53 +Slot[294] 0200 010000 6213544002147954 ------------- 61 259461 000200000000 5077032594610367BL206213544002147954 507703259461 147190 180893 S +10:55:06 Slot [286] | NOT FINANCIAL TRANSACTION +10:55:16 Slot [303] | NOT FINANCIAL TRANSACTION +10:55:16 Slot [271] | NOT FINANCIAL TRANSACTION +10:55:27 Slot [298] | NOT FINANCIAL TRANSACTION +10:55:32 +Slot[282] 0200 010000 6688990104242308 ------------- 00 340687 000100000000 507703585513090015006688990104242308 507703585513 372880 621354 S +10:55:35 +Slot[272] 0200 010000 6213544001131744 ------------- 51 259469 000050000000 5077032594690106NAXA6213544001131744 507703259469 955667 180893 S +10:55:38 Slot [317] | NOT FINANCIAL TRANSACTION +10:55:48 Slot [288] | NOT FINANCIAL TRANSACTION +10:55:52 +Slot[307] 0200 010000 6213544002147954 ------------- 61 259472 000200000000 5077032594720367BL206213544002147954 507703259472 291101 180893 S +10:55:59 +Slot[237] 0200 010000 6213544001131744 ------------- 00 259474 000010000000 5077032594740106NAXA6213544001131744 507703259474 517941 180893 S +10:56:06 +Slot[329] 0200 012000 6688990603123603 ------------- 00 340803 000100000000 507704153043200010006688990603123603 507704153043 958836 621354 S +10:56:08 Slot [314] | NOT FINANCIAL TRANSACTION +10:56:24 Slot [315] | NOT FINANCIAL TRANSACTION +10:56:27 +Slot[313] 0200 010000 6688990104242308 ------------- 00 340870 000100000000 507703585515090015006688990104242308 507703585515 046251 621354 S +10:56:40 Slot [336] | NOT FINANCIAL TRANSACTION +10:56:40 Slot [331] | NOT FINANCIAL TRANSACTION +10:56:55 Slot [323] | NOT FINANCIAL TRANSACTION +10:57:11 Slot [324] | NOT FINANCIAL TRANSACTION +10:57:17 +Slot[321] 0200 010000 6688990104242308 ------------- 00 341017 000050000000 507703585517090015006688990104242308 507703585517 929148 621354 S +10:57:27 Slot [283] | NOT FINANCIAL TRANSACTION +10:57:33 Slot [318] | NOT FINANCIAL TRANSACTION +10:57:36 +Slot[255] 0200 300000 6213544001789855 ------------- 00 878255 000000000000 507700484324030200086213544001789855 507700484324 466243 668899 S +10:57:38 +Slot[319] 0200 011000 6688990040072116 ------------- 00 341083 000030000000 507702505341050033006688990040072116 507702505341 378817 621354 S +10:57:38 Slot [295] | NOT FINANCIAL TRANSACTION +10:57:42 Slot [300] | NOT FINANCIAL TRANSACTION +10:57:49 Slot [326] | NOT FINANCIAL TRANSACTION +10:57:49 +Slot[340] 0200 300000 6688990108407907 ------------- 00 341120 000000000000 507703226335040032006688990108407907 507703226335 209022 621354 S +10:57:59 Slot [306] | NOT FINANCIAL TRANSACTION +10:58:00 +Slot[302] 0200 012000 2206991200005917 ------------- 00 341152 000010000000 507703533197090010002206991200005917 507703533197 245937 621354 S +10:58:10 +Slot[312] 0200 010000 6213544001131744 ------------- 00 259480 000010000000 5077032594800106NAXA6213544001131744 507703259480 181181 180893 S +10:58:21 Slot [316] | NOT FINANCIAL TRANSACTION +10:58:36 Slot [355] | NOT FINANCIAL TRANSACTION +10:58:44 Slot [325] | NOT FINANCIAL TRANSACTION +10:58:51 Slot [334] | NOT FINANCIAL TRANSACTION +10:59:02 Slot [311] | NOT FINANCIAL TRANSACTION +10:59:13 +Slot[339] 0200 010000 6688990108407907 ------------- 00 341415 000100000000 507703226337040032006688990108407907 507703226337 936829 621354 S +10:59:14 Slot [301] | NOT FINANCIAL TRANSACTION +10:59:26 Slot [308] | NOT FINANCIAL TRANSACTION +10:59:40 Slot [310] | NOT FINANCIAL TRANSACTION +10:59:46 Slot [297] | NOT FINANCIAL TRANSACTION +10:59:56 Slot [341] | NOT FINANCIAL TRANSACTION +11:00:06 Slot [349] | NOT FINANCIAL TRANSACTION +11:00:09 +Slot[350] 0200 010000 6688990108407907 ------------- 51 341644 000100000000 507703226339040032006688990108407907 507703226339 044320 621354 S +11:00:16 Slot [338] | NOT FINANCIAL TRANSACTION +11:00:18 Slot [332] | NOT FINANCIAL TRANSACTION +11:00:34 Slot [328] | NOT FINANCIAL TRANSACTION +11:00:44 Slot [352] | NOT FINANCIAL TRANSACTION +11:00:48 +Slot[364] 0200 010000 6213544002129804 ------------- 00 254533 000006000000 507700094225010009006213544002129804 507700094225 544821 220699 S +11:00:48 Slot [345] | NOT FINANCIAL TRANSACTION +11:00:49 +Slot[305] 0200 302000 6213544001533824 ------------- 55 878377 000000000000 507701971979030120036213544001533824 507701971979 883340 668899 S +11:00:55 Slot [343] | NOT FINANCIAL TRANSACTION +11:01:11 Slot [337] | NOT FINANCIAL TRANSACTION +11:01:13 +Slot[330] 0200 300000 6688990108407907 ------------- 00 341892 000000000000 507703226340040032006688990108407907 507703226340 482476 621354 S +11:01:21 Slot [354] | NOT FINANCIAL TRANSACTION +11:01:33 Slot [320] | NOT FINANCIAL TRANSACTION +11:01:49 Slot [335] | NOT FINANCIAL TRANSACTION +11:01:50 Slot [342] | NOT FINANCIAL TRANSACTION +11:02:00 Slot [369] | NOT FINANCIAL TRANSACTION +11:02:09 Slot [366] | NOT FINANCIAL TRANSACTION +11:02:11 Slot [290] | NOT FINANCIAL TRANSACTION +11:02:22 Slot [292] | NOT FINANCIAL TRANSACTION +11:02:25 +Slot[347] 0200 301000 6688990050023900 ------------- 00 342180 000000000000 507704011485010117006688990050023900 507704011485 401440 621354 S +11:02:32 +Slot[374] 0200 011000 1808930800006496 ------------- 00 342186 000010000000 507704226362050046001808930800006496 507704226362 428008 621354 S +11:02:33 Slot [333] | NOT FINANCIAL TRANSACTION +11:02:34 Slot [365] | NOT FINANCIAL TRANSACTION +11:02:36 +Slot[327] 0200 302000 6213544001533824 ------------- 55 878462 000000000000 507701971983030120036213544001533824 507701971983 611607 668899 S +11:02:46 +Slot[384] 0200 301000 1808930200040731 ------------- 00 342241 000000000000 507703061292010086001808930200040731 507703061292 419416 621354 S +11:02:48 +Slot[358] 0200 010000 6213541000131592 ------------- 00 878467 000020000000 507701541113030200166213541000131592 507701541113 504365 668899 S +11:02:49 +Slot[360] 0200 010000 6688990108407907 ------------- 51 342286 000100000000 507703226342040032006688990108407907 507703226342 291182 621354 S +11:02:51 Slot [353] | NOT FINANCIAL TRANSACTION +11:02:52 Slot [373] | NOT FINANCIAL TRANSACTION +11:03:07 Slot [372] | NOT FINANCIAL TRANSACTION +11:03:09 +Slot[362] 0200 011000 6213544001102000 ------------- 00 259497 000040000000 5077042594970118UDBR6213544001102000 507704259497 798276 180893 S +11:03:16 +Slot[380] 0200 011000 6688990104626104 ------------- 00 342386 000080000000 507704201324190007006688990104626104 507704201324 686760 621354 S +11:03:17 +Slot[382] 0200 010000 6213545000989818 ------------- 00 078856 000010000000 507700132782030001006213545000989818 507700132782 091593 220699 S +11:03:18 Slot [322] | NOT FINANCIAL TRANSACTION +11:03:26 +Slot[379] 0200 011000 6688990040103515 ------------- 00 342443 000040000000 507701487960010048006688990040103515 507701487960 461177 621354 S +11:03:28 +Slot[348] 0200 011000 6688990050023900 ------------- 00 342445 000060000000 507704011487010117006688990050023900 507704011487 902534 621354 S +11:03:28 Slot [361] | NOT FINANCIAL TRANSACTION +11:03:33 +Slot[377] 0200 302000 6213544001533824 ------------- 75 878503 000000000000 507701971985030120036213544001533824 507701971985 458505 668899 S +11:03:39 Slot [346] | NOT FINANCIAL TRANSACTION +11:03:43 +Slot[378] 0200 011000 6213548000020949 ------------- 00 163554 000020000000 507711163554015290316213548000020949 507711163554 562600 198901 S +11:03:48 +Slot[363] 0200 311000 6213544000624319 ------------- 00 009712 000000000000 507700270515010015006213544000624319 507700270515 278280 220699 S +11:03:51 Slot [370] | NOT FINANCIAL TRANSACTION +11:03:54 Slot [385] | NOT FINANCIAL TRANSACTION +11:04:06 Slot [371] | NOT FINANCIAL TRANSACTION +11:04:12 +Slot[351] 0200 010000 6688990108407907 ------------- 00 342617 000095000000 507703226344040032006688990108407907 507703226344 757575 621354 S +11:04:16 +Slot[367] 0200 011000 6213544000624319 ------------- 00 009713 000100000000 507700270516010015006213544000624319 507700270516 315594 220699 S +11:04:22 Slot [344] | NOT FINANCIAL TRANSACTION +11:04:33 Slot [397] | NOT FINANCIAL TRANSACTION +11:04:44 +Slot[359] 0200 301000 6688990040091793 ------------- 00 342747 000000000000 507705291125200014006688990040091793 507705291125 047986 621354 S +11:04:46 Slot [386] | NOT FINANCIAL TRANSACTION +11:04:53 Slot [388] | NOT FINANCIAL TRANSACTION +11:04:56 Slot [410] | NOT FINANCIAL TRANSACTION +11:05:01 Slot [357] | NOT FINANCIAL TRANSACTION +11:05:11 +Slot[414] 0200 010000 6688990060027024 ------------- 00 342834 000050000000 507704153045200010006688990060027024 507704153045 527825 621354 S +11:05:12 Slot [408] | NOT FINANCIAL TRANSACTION +11:05:16 Slot [401] | NOT FINANCIAL TRANSACTION +11:05:24 Slot [403] | NOT FINANCIAL TRANSACTION +11:05:36 Slot [393] | NOT FINANCIAL TRANSACTION +11:05:38 +Slot[413] 0200 011000 6213544000624319 ------------- 00 009716 000030000000 507700270518010015006213544000624319 507700270518 755380 220699 S +11:05:52 Slot [398] | NOT FINANCIAL TRANSACTION +11:05:58 Slot [420] | NOT FINANCIAL TRANSACTION +11:06:07 Slot [391] | NOT FINANCIAL TRANSACTION +11:06:18 Slot [392] | NOT FINANCIAL TRANSACTION +11:06:22 +Slot[418] 0200 010000 6213545000989818 ------------- 00 078862 000100000000 507700132788030001006213545000989818 507700132788 518345 220699 S +11:06:34 Slot [416] | NOT FINANCIAL TRANSACTION +11:06:44 Slot [425] | NOT FINANCIAL TRANSACTION +11:06:55 Slot [356] | NOT FINANCIAL TRANSACTION +11:07:00 Slot [383] | NOT FINANCIAL TRANSACTION +11:07:06 Slot [411] | NOT FINANCIAL TRANSACTION +11:07:18 +Slot[415] 0200 301000 1808930200040731 ------------- 00 343264 000000000000 507703061303010086001808930200040731 507703061303 718381 621354 S +11:07:19 +Slot[387] 0200 011000 6688990106085507 ------------- 00 343265 000020000000 507703617826160014006688990106085507 507703617826 836456 621354 S +11:07:22 Slot [396] | NOT FINANCIAL TRANSACTION +11:07:32 Slot [431] | NOT FINANCIAL TRANSACTION +11:07:33 Slot [423] | NOT FINANCIAL TRANSACTION +11:07:34 +Slot[395] 0200 010000 6213544000120904 ------------- 00 254536 000100000000 507700094227010009006213544000120904 507700094227 562641 220699 S +11:07:41 +Slot[402] 0200 010000 6213545000989818 ------------- 00 078864 000020000000 507700132790030001006213545000989818 507700132790 779685 220699 S +11:07:49 Slot [400] | NOT FINANCIAL TRANSACTION +11:08:00 Slot [429] | NOT FINANCIAL TRANSACTION +11:08:02 Slot [381] | NOT FINANCIAL TRANSACTION +11:08:14 Slot [375] | NOT FINANCIAL TRANSACTION +11:08:25 Slot [417] | NOT FINANCIAL TRANSACTION +11:08:37 Slot [428] | NOT FINANCIAL TRANSACTION +11:08:42 +Slot[438] 0200 011000 2206990000119560 ------------- 00 343588 000030000000 507704392114030038002206990000119560 507704392114 297329 621354 S +11:08:43 +Slot[399] 0200 011000 8888884000053824 ------------- 00 223428 000010000000 507700118559010011008888884000053824 507700118559 296482 220699 S +11:08:47 Slot [406] | NOT FINANCIAL TRANSACTION +11:08:58 +Slot[437] 0200 011000 1808930200040731 ------------- 00 343637 000070000000 507703061306010086001808930200040731 507703061306 351538 621354 S +11:09:03 Slot [404] | NOT FINANCIAL TRANSACTION +11:09:04 Slot [419] | NOT FINANCIAL TRANSACTION +11:09:14 Slot [427] | NOT FINANCIAL TRANSACTION +11:09:25 Slot [422] | NOT FINANCIAL TRANSACTION +11:09:36 Slot [445] | NOT FINANCIAL TRANSACTION +11:09:51 Slot [452] | NOT FINANCIAL TRANSACTION +11:10:00 +Slot[394] 0200 010000 6213541000635501 ------------- 00 878740 000050000000 507702160910030200266213541000635501 507702160910 704082 668899 S +11:10:02 +Slot[368] 0200 010000 6688990060026919 ------------- 00 343891 000100000000 507704153048200010006688990060026919 507704153048 895539 621354 S +11:10:06 Slot [448] | NOT FINANCIAL TRANSACTION +11:10:07 +Slot[440] 0200 011000 1808930200040731 ------------- 00 343902 000055000000 507703061308010086001808930200040731 507703061308 213448 621354 S +11:10:13 Slot [442] | NOT FINANCIAL TRANSACTION +11:10:16 Slot [443] | NOT FINANCIAL TRANSACTION +11:10:24 Slot [389] | NOT FINANCIAL TRANSACTION +11:10:36 Slot [465] | NOT FINANCIAL TRANSACTION +11:10:47 Slot [435] | NOT FINANCIAL TRANSACTION +11:10:58 Slot [439] | NOT FINANCIAL TRANSACTION +11:11:08 Slot [390] | NOT FINANCIAL TRANSACTION +11:11:08 +Slot[376] 0200 010000 6213548000238921 ------------- 00 013222 000010000000 507700200829090001006213548000238921 507700200829 402057 220699 S +11:11:09 Slot [424] | NOT FINANCIAL TRANSACTION +11:11:12 +Slot[433] 0200 010000 6688990060026919 ------------- 00 344138 000100000000 507704153050200010006688990060026919 507704153050 628379 621354 S +11:11:19 Slot [447] | NOT FINANCIAL TRANSACTION +11:11:35 Slot [421] | NOT FINANCIAL TRANSACTION +11:11:45 Slot [430] | NOT FINANCIAL TRANSACTION +11:11:58 Slot [460] | NOT FINANCIAL TRANSACTION +11:12:10 Slot [463] | NOT FINANCIAL TRANSACTION +11:12:12 Slot [441] | NOT FINANCIAL TRANSACTION +11:12:23 Slot [456] | NOT FINANCIAL TRANSACTION +11:12:33 Slot [462] | NOT FINANCIAL TRANSACTION +11:12:34 Slot [405] | NOT FINANCIAL TRANSACTION +11:12:44 Slot [434] | NOT FINANCIAL TRANSACTION +11:12:54 Slot [412] | NOT FINANCIAL TRANSACTION +11:12:54 Slot [407] | NOT FINANCIAL TRANSACTION +11:13:05 Slot [449] | NOT FINANCIAL TRANSACTION +11:13:12 Slot [475] | NOT FINANCIAL TRANSACTION +11:13:21 Slot [409] | NOT FINANCIAL TRANSACTION +11:13:33 Slot [469] | NOT FINANCIAL TRANSACTION +11:13:45 Slot [457] | NOT FINANCIAL TRANSACTION +11:13:55 Slot [482] | NOT FINANCIAL TRANSACTION +11:14:07 Slot [479] | NOT FINANCIAL TRANSACTION +11:14:14 Slot [444] | NOT FINANCIAL TRANSACTION +11:14:22 Slot [489] | NOT FINANCIAL TRANSACTION +11:14:29 +Slot[478] 0200 010000 6213548000238921 ------------- 00 013225 000010000000 507700200831090001006213548000238921 507700200831 185381 220699 S +11:14:31 +Slot[450] 0200 311000 6213544000764552 ------------- 00 450538 000000000000 507700153047030003006213544000764552 507700153047 216743 220699 S +11:14:34 +Slot[467] 0200 010000 6688990060026919 ------------- 00 344392 000100000000 507704153052200010006688990060026919 507704153052 445334 621354 S +11:14:35 Slot [451] | NOT FINANCIAL TRANSACTION +11:14:49 Slot [459] | NOT FINANCIAL TRANSACTION +11:14:59 +Slot[490] 0420 010000 6213545000376438 ------------- 00 259539 000100000000 5077042595390281XAYA6213545000376438 507704259539 -------- 180893 S +11:14:59 +Slot[483] 0420 010000 6688990060026919 ------------- 00 344642 000100000000 507704153054200010006688990060026919 507704153054 -------- 621354 S +11:15:01 +Slot[472] 0200 010000 6213545000376438 ------------- 00 259539 000100000000 5077042595390281XAYA6213545000376438 507704259539 211177 180893 S +11:15:02 +Slot[474] 0420 010000 6688990060026919 ------------- 00 344642 000100000000 507704153054200010006688990060026919 507704153054 -------- 621354 S +11:15:03 +Slot[453] 0420 010000 6688990060026919 ------------- 00 344642 000100000000 507704153054200010006688990060026919 507704153054 -------- 621354 S +11:15:04 +Slot[455] 0420 010000 6688990060026919 ------------- -- 344392 000100000000 507704153052200010006688990060026919 507704153052 -------- Q +11:15:04 +Slot[432] 0200 301000 6688990108239706 ------------- 00 344833 000000000000 507703169844040026006688990108239706 507703169844 381089 621354 S +11:15:05 +Slot[487] 0200 311000 6213541000275571 ------------- 00 078866 000000000000 507700132792030001006213541000275571 507700132792 979886 220699 S +11:15:05 +Slot[461] 0200 010000 6688990060026919 ------------- 00 344642 000100000000 507704153054200010006688990060026919 507704153054 480053 621354 S +11:15:06 +Slot[468] 0200 011000 6213545000700405 ------------- 00 001855 000100000000 507700296880010016006213545000700405 507700296880 156782 220699 S +11:15:08 +Slot[481] 0420 010000 6688990060026919 ------------- 00 344392 000100000000 507704153052200010006688990060026919 507704153052 -------- 621354 S +11:15:10 +Slot[485] 0420 010000 6688990060026919 ------------- 00 344392 000100000000 507704153052200010006688990060026919 507704153052 -------- 621354 S +11:15:10 +Slot[426] 0420 010000 6688990060026919 ------------- 00 344392 000100000000 507704153052200010006688990060026919 507704153052 -------- 621354 S +11:15:10 +Slot[498] 0200 011000 6213545000700405 ------------- 51 001860 000100000000 507700296882010016006213545000700405 507700296882 637478 220699 S +11:15:15 +Slot[471] 0420 010000 6688990060026919 ------------- 00 344642 000100000000 507704153054200010006688990060026919 507704153054 -------- 621354 S +11:15:16 Slot [491] | NOT FINANCIAL TRANSACTION +11:15:16 Slot [476] | NOT FINANCIAL TRANSACTION +11:15:21 +Slot[436] 0200 301000 6688990108239706 ------------- 00 345151 000000000000 507703169845040026006688990108239706 507703169845 098109 621354 S +11:15:26 Slot [486] | NOT FINANCIAL TRANSACTION +11:15:41 +Slot[497] 0200 311000 6213545000700405 ------------- 00 001863 000000000000 507700296884010016006213545000700405 507700296884 173546 220699 S +11:15:41 Slot [499] | NOT FINANCIAL TRANSACTION +11:15:44 +Slot[473] 0200 301000 6213544001918645 ------------- 00 259545 031804144725 5077042595450344SVKV6213544001918645 507704259545 358878 180893 S +11:15:57 Slot [7] | NOT FINANCIAL TRANSACTION +11:16:05 +Slot[2] 0200 011000 1808930600035067 ------------- 00 345331 000040000000 507702633202140002001808930600035067 507702633202 471983 621354 S +11:16:14 Slot [464] | NOT FINANCIAL TRANSACTION +11:16:16 +Slot[470] 0200 011000 6213545000700405 ------------- 00 001864 000050000000 507700296885010016006213545000700405 507700296885 607532 220699 S +11:16:18 Slot [492] | NOT FINANCIAL TRANSACTION +11:16:20 +Slot[495] 0200 010000 6688990040160200 ------------- 00 345400 000100000000 507702552766050038006688990040160200 507702552766 910483 621354 S +11:16:21 +Slot[477] 0200 011000 1808931400009849 ------------- 00 345399 000005000000 507703812248010097001808931400009849 507703812248 938055 621354 S +11:16:21 +Slot[18] 0420 010000 6688990060026919 0000000000000 00 344392 000100000000 507704153052200010006688990060026919 507704153052 -------- 621354 S +11:16:27 +Slot[14] 0200 010000 6688990603076900 ------------- 00 345422 000050000000 507704153058200010006688990603076900 507704153058 242232 621354 S +11:16:28 +Slot[24] 0420 010000 6688990060026919 0000000000000 00 344642 000100000000 507704153054200010006688990060026919 507704153054 113161 621354 S +11:16:29 Slot [466] | NOT FINANCIAL TRANSACTION +11:16:30 +Slot[454] 0200 011000 6688990106749706 ------------- 00 345428 000030000000 507703916636010107006688990106749706 507703916636 534897 621354 S +11:16:32 +Slot[480] 0200 010000 6213545000247654 ------------- 00 879042 000070000000 507702605219030090076213545000247654 507702605219 932484 668899 S +11:16:33 +Slot[484] 0200 010000 6213541000275571 ------------- 00 879041 000100000000 507700823207030150016213541000275571 507700823207 140763 668899 S +11:16:40 Slot [22] | NOT FINANCIAL TRANSACTION +11:16:56 Slot [493] | NOT FINANCIAL TRANSACTION +11:17:07 +Slot[3] 0200 010000 6688990105380206 ------------- 00 345559 000020000000 507704704962180009006688990105380206 507704704962 912780 621354 S +11:17:08 Slot [488] | NOT FINANCIAL TRANSACTION +11:17:19 Slot [458] | NOT FINANCIAL TRANSACTION +11:17:20 Slot [12] | NOT FINANCIAL TRANSACTION +11:17:33 Slot [0] | NOT FINANCIAL TRANSACTION +11:17:34 Slot [4] | NOT FINANCIAL TRANSACTION +11:17:46 Slot [16] | NOT FINANCIAL TRANSACTION +11:17:48 +Slot[5] 0200 311000 6213545000671143 ------------- 00 001867 000000000000 507700296887010016006213545000671143 507700296887 574067 220699 S +11:17:51 +Slot[1] 0200 301000 6688990040150961 ------------- 00 345754 000000000000 507703968244010112006688990040150961 507703968244 426442 621354 S +11:17:57 Slot [21] | NOT FINANCIAL TRANSACTION +11:18:15 Slot [31] | NOT FINANCIAL TRANSACTION +11:18:19 +Slot[8] 0200 011000 6213545000671143 ------------- 00 001868 000100000000 507700296888010016006213545000671143 507700296888 390154 220699 S +11:18:22 Slot [15] | NOT FINANCIAL TRANSACTION +11:18:25 Slot [26] | NOT FINANCIAL TRANSACTION +11:18:26 +Slot[496] 0200 300000 6688990601467606 ------------- 00 345901 000000000000 507704153059200010006688990601467606 507704153059 609254 621354 S +11:18:27 +Slot[23] 0200 010000 6688990060026919 ------------- 64 259554 000200000000 5077042595540369SLVL6688990060026919 507704259554 305235 180893 S +11:18:41 Slot [6] | NOT FINANCIAL TRANSACTION +11:18:51 Slot [10] | NOT FINANCIAL TRANSACTION +11:19:02 Slot [9] | NOT FINANCIAL TRANSACTION +11:19:14 Slot [27] | NOT FINANCIAL TRANSACTION +11:19:16 +Slot[46] 0200 301000 6688990060026919 ------------- 00 259556 031804181825 5077042595560369SLVL6688990060026919 507704259556 254794 180893 S +11:19:24 Slot [11] | NOT FINANCIAL TRANSACTION +11:19:30 Slot [25] | NOT FINANCIAL TRANSACTION +11:19:41 Slot [28] | NOT FINANCIAL TRANSACTION +11:19:47 +Slot[494] 0200 011000 6213545000671143 ------------- 00 001871 000050000000 507700296890010016006213545000671143 507700296890 561397 220699 S +11:19:48 +Slot[30] 0200 303000 6688990601467606 ------------- 00 346230 000000000000 507704153060200010006688990601467606 507704153060 894999 621354 S +11:19:52 Slot [20] | NOT FINANCIAL TRANSACTION +11:19:52 +Slot[34] 0200 301000 2206990000121319 ------------- 75 879237 000000000000 507702031457030180032206990000121319 507702031457 238145 668899 S +11:20:08 Slot [42] | NOT FINANCIAL TRANSACTION +11:20:16 Slot [56] | NOT FINANCIAL TRANSACTION +11:20:17 +Slot[39] 0200 010000 6688990060026919 ------------- 00 259561 000050000000 5077042595610369SLVL6688990060026919 507704259561 576463 180893 S +11:20:26 Slot [36] | NOT FINANCIAL TRANSACTION +11:20:28 Slot [52] | NOT FINANCIAL TRANSACTION +11:20:33 +Slot[38] 0200 010000 6213545000373138 ------------- 00 259563 000100000000 5077042595630281XAYA6213545000373138 507704259563 169209 180893 S +11:20:44 Slot [32] | NOT FINANCIAL TRANSACTION +11:20:55 Slot [41] | NOT FINANCIAL TRANSACTION +11:20:58 +Slot[47] 0420 011000 6213545000700405 ------------- 00 001855 000100000000 507700296880010016006213545000700405 507700296880 -------- 220699 S +11:21:01 +Slot[40] 0200 301000 2206990000130492 ------------- 00 346535 000000000000 507705303077080011002206990000130492 507705303077 881811 621354 S +11:21:02 +Slot[44] 0200 010000 6688990103499602 ------------- 00 346534 000060000000 507703499001060022006688990103499602 507703499001 696689 621354 S +11:21:04 +Slot[13] 0200 311000 6213545000700405 ------------- 00 001874 000000000000 507700296892010016006213545000700405 507700296892 382922 220699 S +11:21:11 Slot [57] | NOT FINANCIAL TRANSACTION +11:21:19 +Slot[19] 0200 011000 1999990000010119 ------------- 91 346041 000100000000 507702388906010063001999990000010119 507702388906 490000 621354 S +11:21:22 Slot [37] | NOT FINANCIAL TRANSACTION +11:21:26 +Slot[54] 0200 301000 6688990060026919 ------------- 00 259570 031804202825 5077042595700369SLVL6688990060026919 507704259570 483785 180893 S +11:21:28 Slot [61] | NOT FINANCIAL TRANSACTION +11:21:35 Slot [59] | NOT FINANCIAL TRANSACTION +11:21:38 Slot [58] | NOT FINANCIAL TRANSACTION +11:21:54 +Slot[51] 0200 012000 6213545000373138 ------------- 51 259575 000090000000 5077042595750281XAYA6213545000373138 507704259575 251418 180893 S +11:21:58 +Slot[55] 0200 011000 2206990000130492 ------------- 00 346736 000010000000 507705303079080011002206990000130492 507705303079 593877 621354 S +11:21:58 +Slot[29] 0200 011000 1999990000010119 ------------- 91 346214 000100000000 507702388908010063001999990000010119 507702388908 078999 621354 S +11:21:59 +Slot[17] 0200 011000 6213545000700405 ------------- 51 001875 000020000000 507700296893010016006213545000700405 507700296893 031894 220699 S +11:22:03 Slot [60] | NOT FINANCIAL TRANSACTION +11:22:11 +Slot[72] 0420 011000 6213545000700405 0000000000000 00 001855 000100000000 507700296880010016006213545000700405 507700296880 900694 220699 S +11:22:14 Slot [48] | NOT FINANCIAL TRANSACTION +11:22:19 +Slot[63] 0200 010000 6213544002201355 ------------- 00 879337 000010000000 507700788792030050026213544002201355 507700788792 733510 668899 S +11:22:29 Slot [35] | NOT FINANCIAL TRANSACTION +11:22:30 Slot [67] | NOT FINANCIAL TRANSACTION +11:22:33 Slot [53] | NOT FINANCIAL TRANSACTION +11:22:44 +Slot[71] 0200 300000 6688990103264501 ------------- 00 346928 000000000000 507703499002060022006688990103264501 507703499002 616514 621354 S +11:22:44 Slot [80] | NOT FINANCIAL TRANSACTION +11:22:48 +Slot[79] 0200 302000 6213545000373138 ------------- 00 259583 031804215225 5077042595830281XAYA6213545000373138 507704259583 637802 180893 S +11:22:56 +Slot[49] 0200 301000 6213543000164722 ------------- 00 879361 000000000000 507701881293030140066213543000164722 507701881293 771012 668899 S +11:22:58 +Slot[85] 0200 010000 6688990103248702 ------------- 64 259587 000200000000 5077042595870369SLVL6688990103248702 507704259587 393927 180893 S +11:23:09 +Slot[83] 0200 010000 1999990000010119 ------------- 55 879375 000100000000 507701702362030010081999990000010119 507701702362 923142 668899 S +11:23:11 Slot [45] | NOT FINANCIAL TRANSACTION +11:23:22 Slot [75] | NOT FINANCIAL TRANSACTION +11:23:30 +Slot[78] 0200 301000 6688990103248702 ------------- 00 259592 031804223325 5077042595920369SLVL6688990103248702 507704259592 172520 180893 S +11:23:32 Slot [73] | NOT FINANCIAL TRANSACTION +11:23:33 +Slot[68] 0200 010000 6213543000164722 ------------- 00 879395 000020000000 507701881294030140066213543000164722 507701881294 958966 668899 S +11:23:40 Slot [43] | NOT FINANCIAL TRANSACTION +11:23:41 +Slot[91] 0200 012000 6213545000373138 ------------- 51 259596 000091000000 5077042595960281XAYA6213545000373138 507704259596 035837 180893 S +11:23:45 +Slot[76] 0200 010000 1999990000010119 ------------- 75 879411 000100000000 507701702364030010081999990000010119 507701702364 580649 668899 S +11:23:47 +Slot[77] 0200 010000 6213542000051657 ------------- 00 879415 000100000000 507702243098030200276213542000051657 507702243098 063996 668899 S +11:23:53 Slot [89] | NOT FINANCIAL TRANSACTION +11:24:04 Slot [88] | NOT FINANCIAL TRANSACTION +11:24:10 +Slot[65] 0200 010000 6688990103248702 ------------- 64 259600 000200000000 5077042596000369SLVL6688990103248702 507704259600 295540 180893 S +11:24:15 +Slot[66] 0200 010000 6688990040072181 ------------- 51 347275 000030000000 507702505375050033006688990040072181 507702505375 577863 621354 S +11:24:21 Slot [94] | NOT FINANCIAL TRANSACTION +11:24:33 +Slot[86] 0200 012000 6213545000373138 ------------- 51 259603 000088000000 5077042596030281XAYA6213545000373138 507704259603 548016 180893 S +11:24:34 Slot [93] | NOT FINANCIAL TRANSACTION +11:24:41 Slot [33] | NOT FINANCIAL TRANSACTION +11:24:44 +Slot[103] 0200 010000 6688990103248702 ------------- 00 259607 000100000000 5077042596070369SLVL6688990103248702 507704259607 192409 180893 S +11:24:53 Slot [101] | NOT FINANCIAL TRANSACTION +11:25:08 Slot [74] | NOT FINANCIAL TRANSACTION +11:25:13 +Slot[95] 0200 012000 6688990040072181 ------------- 00 347530 000020000000 507702505377050033006688990040072181 507702505377 710728 621354 S +11:25:16 Slot [105] | NOT FINANCIAL TRANSACTION +11:25:21 Slot [102] | NOT FINANCIAL TRANSACTION +11:25:27 +Slot[50] 0200 012000 6213545000373138 ------------- 00 259615 000080000000 5077042596150281XAYA6213545000373138 507704259615 129522 180893 S +11:25:28 +Slot[70] 0200 010000 6688990103248702 ------------- 00 259613 000100000000 5077042596130369SLVL6688990103248702 507704259613 012532 180893 S +11:25:36 Slot [107] | NOT FINANCIAL TRANSACTION +11:25:37 Slot [92] | NOT FINANCIAL TRANSACTION +11:25:53 Slot [81] | NOT FINANCIAL TRANSACTION +11:26:00 +Slot[100] 0200 301000 6688990101474201 ------------- 00 347740 000000000000 507702552770050038006688990101474201 507702552770 157254 621354 S +11:26:05 Slot [114] | NOT FINANCIAL TRANSACTION +11:26:11 +Slot[108] 0200 010000 6688990103248702 ------------- 00 259621 000100000000 5077042596210369SLVL6688990103248702 507704259621 140270 180893 S +11:26:18 +Slot[104] 0200 011000 6688990107598409 ------------- 00 347803 000020000000 507703384468130018006688990107598409 507703384468 569860 621354 S +11:26:25 Slot [82] | NOT FINANCIAL TRANSACTION +11:26:35 Slot [87] | NOT FINANCIAL TRANSACTION +11:26:38 Slot [69] | NOT FINANCIAL TRANSACTION +11:26:39 +Slot[122] 0200 012000 6688990040052464 ------------- 00 259626 000010000000 5077042596260465UDNM6688990040052464 507704259626 388160 180893 S +11:26:43 +Slot[119] 0200 010000 6213548000289825 ------------- 51 879551 000010000000 507701261817032060016213548000289825 507701261817 106067 668899 S +11:26:47 +Slot[117] 0200 012000 6213545000373138 ------------- 00 259628 000006000000 5077042596280281XAYA6213545000373138 507704259628 795737 180893 S +11:26:57 Slot [110] | NOT FINANCIAL TRANSACTION +11:26:59 +Slot[115] 0200 010000 6213541000533839 ------------- 00 879562 000100000000 507701027818033100026213541000533839 507701027818 813670 668899 S +11:27:00 +Slot[62] 0200 301000 6213544001314720 ------------- 00 879563 000000000000 507701881296030140066213544001314720 507701881296 787604 668899 S +11:27:01 +Slot[96] 0200 010000 6688990103248702 ------------- 00 259631 000100000000 5077042596310369SLVL6688990103248702 507704259631 537809 180893 S +11:27:16 Slot [64] | NOT FINANCIAL TRANSACTION +11:27:24 +Slot[136] 0200 010000 6213543000094655 ------------- 00 879577 000030000000 507702222973030080056213543000094655 507702222973 596425 668899 S +11:27:31 Slot [97] | NOT FINANCIAL TRANSACTION +11:27:33 Slot [124] | NOT FINANCIAL TRANSACTION +11:27:40 Slot [113] | NOT FINANCIAL TRANSACTION +11:27:42 Slot [84] | NOT FINANCIAL TRANSACTION +11:27:48 +Slot[98] 0200 011000 6213544002232871 ------------- 00 259639 000010000000 5077042596390102SAPA6213544002232871 507704259639 557751 180893 S +11:27:50 +Slot[90] 0200 010000 6688990103248702 ------------- 00 259638 000100000000 5077042596380369SLVL6688990103248702 507704259638 441912 180893 S +11:27:58 Slot [121] | NOT FINANCIAL TRANSACTION +11:28:09 Slot [134] | NOT FINANCIAL TRANSACTION +11:28:09 +Slot[159] 0200 301000 6213548000016210 ------------- 00 163904 000000000000 507711163904015290316213548000016210 507711163904 005984 198901 S +11:28:11 +Slot[112] 0200 301000 6213541000359748 ------------- 05 879611 000000000000 507700946351032100016213541000359748 507700946351 122897 668899 S +11:28:18 +Slot[99] 0200 302000 6688990040087858 ------------- 00 348288 000000000000 507703968264010112006688990040087858 507703968264 596632 621354 S +11:28:27 Slot [144] | NOT FINANCIAL TRANSACTION +11:28:41 Slot [142] | NOT FINANCIAL TRANSACTION +11:28:42 Slot [148] | NOT FINANCIAL TRANSACTION +11:28:54 +Slot[111] 0200 011000 6688990103248702 ------------- 00 259648 000007000000 5077042596480369SLVL6688990103248702 507704259648 024608 180893 S +11:29:03 Slot [149] | NOT FINANCIAL TRANSACTION +11:29:04 +Slot[126] 0200 010000 6688990040087858 ------------- 00 348463 000010000000 507703968266010112006688990040087858 507703968266 296224 621354 S +11:29:05 +Slot[128] 0200 011000 6688990107184606 ------------- 00 163919 000020000000 507711163919015290116688990107184606 507711163919 769201 198901 S +11:29:14 Slot [155] | NOT FINANCIAL TRANSACTION +11:29:25 +Slot[140] 0200 010000 1808930200036218 ------------- 00 879666 000050000000 507701702366030010081808930200036218 507701702366 831845 668899 S +11:29:29 Slot [131] | NOT FINANCIAL TRANSACTION +11:29:38 +Slot[109] 0200 301000 6688990603011709 ------------- 00 259652 031804284025 5077042596520369SLVL6688990603011709 507704259652 475138 180893 S +11:29:44 +Slot[127] 0200 010000 6213541000273642 ------------- 00 879690 000030000000 507701196603030200116213541000273642 507701196603 384137 668899 S +11:29:44 Slot [139] | NOT FINANCIAL TRANSACTION +11:29:45 +Slot[146] 0200 010000 1808930600045587 ------------- 00 879688 000020000000 507701443451034140011808930600045587 507701443451 381997 668899 S +11:29:50 Slot [151] | NOT FINANCIAL TRANSACTION +11:29:58 +Slot[150] 0200 011000 6688990107184606 ------------- 51 163936 000010000000 507711163936015290116688990107184606 507711163936 521355 198901 S +11:30:00 Slot [123] | NOT FINANCIAL TRANSACTION +11:30:13 Slot [118] | NOT FINANCIAL TRANSACTION +11:30:16 +Slot[154] 0200 301000 6213545000004501 ------------- 00 259656 031804291925 5077042596560105XTNY6213545000004501 507704259656 302933 180893 S +11:30:16 Slot [138] | NOT FINANCIAL TRANSACTION +11:30:20 +Slot[157] 0200 010000 6213544001314720 ------------- 00 879723 000010000000 507701881298030140066213544001314720 507701881298 958910 668899 S +11:30:25 +Slot[132] 0200 301000 6688990602800607 ------------- 00 259659 031804292825 5077042596590369SLVL6688990602800607 507704259659 074387 180893 S +11:30:31 +Slot[135] 0200 010000 1888880000028712 ------------- 00 348775 000002000000 507703364834130016001888880000028712 507703364834 646593 621354 S +11:30:38 Slot [171] | NOT FINANCIAL TRANSACTION +11:30:46 Slot [152] | NOT FINANCIAL TRANSACTION +11:30:49 Slot [167] | NOT FINANCIAL TRANSACTION +11:30:53 +Slot[120] 0200 300000 6688990108429208 ------------- 00 348877 000000000000 507703499003060022006688990108429208 507703499003 341955 621354 S +11:30:57 +Slot[156] 0200 302000 6213545000512180 ------------- 00 879753 000000000000 507702362700030160036213545000512180 507702362700 068058 668899 S +11:31:02 +Slot[116] 0200 010000 6213545000004501 ------------- 00 259662 000100000000 5077042596620105XTNY6213545000004501 507704259662 499290 180893 S +11:31:13 +Slot[129] 0200 302000 6213545000512180 ------------- 00 879765 000000000000 507702362701030160036213545000512180 507702362701 317974 668899 S +11:31:14 Slot [130] | NOT FINANCIAL TRANSACTION +11:31:14 +Slot[168] 0200 010000 6213544002136536 ------------- 00 177032 000010000000 507700010053010001006213544002136536 507700010053 626681 220699 S +11:31:17 +Slot[175] 0200 011000 6688990102105606 ------------- 00 348990 000010000000 507703617901160014006688990102105606 507703617901 394160 621354 S +11:31:24 +Slot[141] 0200 010000 6213544000813383 ------------- 00 259669 000050000000 5077042596690401XSBR6213544000813383 507704259669 782160 180893 S +11:31:28 +Slot[172] 0200 011000 6688990602800607 ------------- 00 259670 000060000000 5077042596700369SLVL6688990602800607 507704259670 711127 180893 S +11:31:29 +Slot[169] 0200 011000 6688990107184606 ------------- 51 163964 000010000000 507711163964015290116688990107184606 507711163964 674279 198901 S +11:31:31 +Slot[174] 0200 010000 6213545000512180 ------------- 51 879778 000020000000 507702362702030160036213545000512180 507702362702 443917 668899 S +11:31:37 +Slot[166] 0200 301000 6213545001062904 ------------- 00 163966 000000000000 507711163966000034036213545001062904 507711163966 434585 198901 S +11:31:41 Slot [160] | NOT FINANCIAL TRANSACTION +11:31:45 +Slot[147] 0200 010000 6688990104470800 ------------- 00 349096 000050000000 507704704990180009006688990104470800 507704704990 626644 621354 S +11:31:47 +Slot[164] 0200 010000 6213544002066436 ------------- 00 879792 000005000000 507700145864030200056213544002066436 507700145864 256816 668899 S +11:31:48 +Slot[133] 0200 302000 6213545000512180 ------------- 00 879793 000000000000 507702362703030160036213545000512180 507702362703 794682 668899 S +11:31:48 Slot [178] | NOT FINANCIAL TRANSACTION +11:31:53 +Slot[195] 0200 011000 6213545000004501 ------------- 00 259677 000040000000 5077042596770105XTNY6213545000004501 507704259677 766620 180893 S +11:32:03 Slot [170] | NOT FINANCIAL TRANSACTION +11:32:09 +Slot[183] 0200 011000 6213545001062904 ------------- 00 163972 000100000000 507711163972000034036213545001062904 507711163972 498835 198901 S +11:32:15 +Slot[189] 0200 010000 6213545000512180 ------------- 00 879812 000010000000 507702362704030160036213545000512180 507702362704 047221 668899 S +11:32:18 Slot [191] | NOT FINANCIAL TRANSACTION +11:32:27 +Slot[125] 0200 010000 6688990060034822 ------------- 00 259682 000100000000 5077042596820369SLVL6688990060034822 507704259682 421901 180893 S +11:32:33 Slot [161] | NOT FINANCIAL TRANSACTION +11:32:37 +Slot[143] 0200 010000 6688990108429208 ------------- 00 349327 000100000000 507703499005060022006688990108429208 507703499005 306417 621354 S +11:32:39 +Slot[181] 0200 301000 6213545001062904 ------------- 00 163980 000000000000 507711163980000034036213545001062904 507711163980 400147 198901 S +11:32:40 Slot [202] | NOT FINANCIAL TRANSACTION +11:32:41 +Slot[204] 0200 010000 6213544000656741 ------------- 00 879835 000010000000 507701196605030200116213544000656741 507701196605 091447 668899 S +11:32:50 Slot [158] | NOT FINANCIAL TRANSACTION +11:32:50 Slot [197] | NOT FINANCIAL TRANSACTION +11:33:06 Slot [182] | NOT FINANCIAL TRANSACTION +11:33:27 Slot [198] | NOT FINANCIAL TRANSACTION +11:33:28 +Slot[200] 0200 300000 6688990104470800 ------------- 00 349581 000000000000 507704704994180009006688990104470800 507704704994 932735 621354 S +11:33:37 Slot [177] | NOT FINANCIAL TRANSACTION +11:33:49 Slot [213] | NOT FINANCIAL TRANSACTION +11:33:51 +Slot[193] 0200 011000 1808931100010410 ------------- 91 163985 000010000000 507711163985008529021808931100010410 507711163985 610161 198901 S +11:33:52 Slot [106] | NOT FINANCIAL TRANSACTION +11:33:53 +Slot[210] 0200 011000 6213541000689359 ------------- 00 163992 000100000000 507711163992015290316213541000689359 507711163992 831842 198901 S +11:33:57 +Slot[165] 0200 011000 6213545001062904 ------------- 00 163993 000050000000 507711163993000034036213545001062904 507711163993 843059 198901 S +11:34:00 Slot [153] | NOT FINANCIAL TRANSACTION +11:34:03 +Slot[163] 0200 010000 6688990108429208 ------------- 00 349742 000100000000 507703499007060022006688990108429208 507703499007 800552 621354 S +11:34:11 +Slot[211] 0200 010000 6213543000070325 ------------- 00 254542 000010000000 507700094231010009006213543000070325 507700094231 349329 220699 S +11:34:15 Slot [162] | NOT FINANCIAL TRANSACTION +11:34:18 +Slot[187] 0200 301000 6213545001062904 ------------- 00 164003 000000000000 507711164003000034036213545001062904 507711164003 723181 198901 S +11:34:21 +Slot[145] 0200 010000 6688990603119908 ------------- 00 349816 000100000000 507704153066200010006688990603119908 507704153066 776968 621354 S +11:34:28 Slot [206] | NOT FINANCIAL TRANSACTION +11:34:32 Slot [221] | NOT FINANCIAL TRANSACTION +11:34:34 +Slot[205] 0200 012000 6213541000063555 ------------- 00 020989 000100000000 507700263001010014006213541000063555 507700263001 570994 220699 S +11:34:46 Slot [217] | NOT FINANCIAL TRANSACTION +11:34:54 Slot [194] | NOT FINANCIAL TRANSACTION +11:34:58 Slot [180] | NOT FINANCIAL TRANSACTION +11:34:59 +Slot[196] 0200 301000 1808931100010410 ------------- 91 164006 000000000000 507711164006008529021808931100010410 507711164006 463200 198901 S +11:35:00 +Slot[214] 0200 010000 2206990000113795 ------------- 00 349984 000100000000 507704118642080008002206990000113795 507704118642 526089 621354 S +11:35:08 Slot [176] | NOT FINANCIAL TRANSACTION +11:35:10 +Slot[222] 0200 011000 6213548000414928 ------------- 00 164018 000010000000 507711164018015290316213548000414928 507711164018 555469 198901 S +11:35:12 +Slot[226] 0200 011000 6213545001062904 ------------- 00 164019 000005000000 507711164019000034036213545001062904 507711164019 185386 198901 S +11:35:16 Slot [190] | NOT FINANCIAL TRANSACTION +11:35:18 +Slot[184] 0200 301000 1808931100010410 ------------- 00 164022 000000000000 507711164022008529021808931100010410 507711164022 945348 198901 S +11:35:25 Slot [225] | NOT FINANCIAL TRANSACTION +11:35:33 +Slot[137] 0200 301000 6213545001062904 ------------- 00 164027 000000000000 507711164027000034036213545001062904 507711164027 637975 198901 S +11:35:35 Slot [173] | NOT FINANCIAL TRANSACTION +11:35:39 +Slot[218] 0200 012000 6213545001039613 ------------- 00 259705 000020000000 5077042597050122ATBR6213545001039613 507704259705 820542 180893 S +11:35:40 +Slot[224] 0200 010000 6688990108429208 ------------- 00 350165 000100000000 507703499009060022006688990108429208 507703499009 723758 621354 S +11:35:47 +Slot[208] 0200 311000 6213545000250237 ------------- 00 168710 000000000000 507700026146010002006213545000250237 507700026146 820155 220699 S +11:35:51 Slot [207] | NOT FINANCIAL TRANSACTION +11:35:56 Slot [215] | NOT FINANCIAL TRANSACTION +11:36:02 Slot [223] | NOT FINANCIAL TRANSACTION +11:36:13 Slot [231] | NOT FINANCIAL TRANSACTION +11:36:28 +Slot[192] 0200 300000 2206990000113795 ------------- 00 350408 000000000000 507704118643080008002206990000113795 507704118643 353624 621354 S +11:36:37 +Slot[188] 0200 301000 1808931100010410 ------------- 00 164048 000000000000 507711164048008529021808931100010410 507711164048 168985 198901 S +11:36:40 Slot [199] | NOT FINANCIAL TRANSACTION +11:36:51 +Slot[185] 0200 012000 6213541000063555 ------------- 00 020998 000100000000 507700263007010014006213541000063555 507700263007 007633 220699 S +11:36:51 Slot [220] | NOT FINANCIAL TRANSACTION +11:36:58 Slot [229] | NOT FINANCIAL TRANSACTION +11:37:00 +Slot[179] 0200 010000 2206990000121327 ------------- 55 880025 000100000000 507702031464030180032206990000121327 507702031464 233745 668899 S +11:37:02 Slot [186] | NOT FINANCIAL TRANSACTION +11:37:14 Slot [212] | NOT FINANCIAL TRANSACTION +11:37:26 +Slot[227] 0200 311000 6213545000250237 ------------- 00 168713 000000000000 507700026149010002006213545000250237 507700026149 507892 220699 S +11:37:26 Slot [230] | NOT FINANCIAL TRANSACTION +11:37:33 +Slot[236] 0200 301000 6213541000474620 ------------- 00 164059 000000000000 507711164059000022226213541000474620 507711164059 529894 198901 S +11:37:34 Slot [232] | NOT FINANCIAL TRANSACTION +11:37:34 +Slot[219] 0200 010000 2206990000121327 ------------- 00 880055 000100000000 507702031466030180032206990000121327 507702031466 326572 668899 S +11:37:41 +Slot[216] 0200 010000 1808931100010410 ------------- 00 880058 000010000000 507700569867030140041808931100010410 507700569867 200061 668899 S +11:37:42 Slot [234] | NOT FINANCIAL TRANSACTION +11:37:44 +Slot[239] 0200 300000 6688990108429208 ------------- 00 350722 000000000000 507703499010060022006688990108429208 507703499010 856254 621354 S +11:37:49 +Slot[235] 0200 010000 2206990000113795 ------------- 00 350734 000050000000 507704118645080008002206990000113795 507704118645 231606 621354 S +11:37:56 Slot [250] | NOT FINANCIAL TRANSACTION +11:37:59 +Slot[242] 0200 011000 6213541000474620 ------------- 00 164062 000100000000 507711164062000022226213541000474620 507711164062 131709 198901 S +11:38:00 Slot [228] | NOT FINANCIAL TRANSACTION +11:38:03 +Slot[201] 0200 012000 6213541000063555 ------------- 00 021001 000100000000 507700263009010014006213541000063555 507700263009 759070 220699 S +11:38:07 Slot [238] | NOT FINANCIAL TRANSACTION +11:38:13 +Slot[252] 0200 311000 6213541000043144 ------------- 00 085497 000000000000 507700140124030002006213541000043144 507700140124 684678 220699 S +11:38:17 Slot [240] | NOT FINANCIAL TRANSACTION +11:38:18 Slot [245] | NOT FINANCIAL TRANSACTION +11:38:26 +Slot[203] 0200 010000 6213548000038586 ------------- 51 880109 000004000000 507700167813030200076213548000038586 507700167813 624725 668899 S +11:38:31 +Slot[248] 0200 010000 2206990000121327 ------------- 00 880113 000100000000 507702031468030180032206990000121327 507702031468 217903 668899 S +11:38:33 Slot [258] | NOT FINANCIAL TRANSACTION +11:38:44 Slot [253] | NOT FINANCIAL TRANSACTION +11:38:46 +Slot[247] 0200 011000 6213541000043144 ------------- 00 085498 000100000000 507700140125030002006213541000043144 507700140125 738120 220699 S +11:38:47 +Slot[244] 0200 011000 6213541000474620 ------------- 00 164077 000035000000 507711164077000022226213541000474620 507711164077 595852 198901 S +11:38:51 +Slot[243] 0200 010000 6688990103426803 ------------- 55 351012 000005000000 507703968287010112006688990103426803 507703968287 806422 621354 S +11:39:00 +Slot[256] 0200 010000 6213548000038586 ------------- 00 880141 000002000000 507700167814030200076213548000038586 507700167814 770474 668899 S +11:39:01 Slot [260] | NOT FINANCIAL TRANSACTION +11:39:02 Slot [246] | NOT FINANCIAL TRANSACTION +11:39:16 Slot [241] | NOT FINANCIAL TRANSACTION +11:39:26 Slot [273] | NOT FINANCIAL TRANSACTION +11:39:31 +Slot[251] 0200 010000 2206990000113803 ------------- 00 351226 000100000000 507704118647080008002206990000113803 507704118647 479782 621354 S +11:39:36 Slot [265] | NOT FINANCIAL TRANSACTION +11:39:47 Slot [264] | NOT FINANCIAL TRANSACTION +11:39:50 +Slot[249] 0200 011000 6213541000043144 ------------- 00 085500 000053000000 507700140127030002006213541000043144 507700140127 021020 220699 S +11:40:03 Slot [269] | NOT FINANCIAL TRANSACTION +11:40:04 Slot [254] | NOT FINANCIAL TRANSACTION +11:40:14 Slot [268] | NOT FINANCIAL TRANSACTION +11:40:16 Slot [209] | NOT FINANCIAL TRANSACTION +11:40:22 +Slot[279] 0200 300000 1989010003184779 ------------- 00 351499 000000000000 507703027706120025001989010003184779 507703027706 916344 621354 S +11:40:25 Slot [261] | NOT FINANCIAL TRANSACTION +11:40:36 Slot [233] | NOT FINANCIAL TRANSACTION +11:40:45 +Slot[266] 0200 010000 2206990000113803 ------------- 00 351596 000050000000 507704118649080008002206990000113803 507704118649 066822 621354 S +11:40:45 +Slot[257] 0200 301000 6688990105153108 ------------- 00 164114 000000000000 507711164114000034036688990105153108 507711164114 369941 198901 S +11:40:47 Slot [262] | NOT FINANCIAL TRANSACTION +11:40:58 Slot [270] | NOT FINANCIAL TRANSACTION +11:40:59 +Slot[274] 0200 010000 6213545001056435 ------------- 00 880222 000100000000 507702150654030200256213545001056435 507702150654 525169 668899 S +11:41:06 Slot [263] | NOT FINANCIAL TRANSACTION +11:41:08 Slot [284] | NOT FINANCIAL TRANSACTION +11:41:18 +Slot[267] 0200 010000 2206990000121244 ------------- 00 880239 000100000000 507702031472030180032206990000121244 507702031472 763978 668899 S +11:41:20 +Slot[299] 0200 011000 6688990105153108 ------------- 00 164126 000010000000 507711164126000034036688990105153108 507711164126 710783 198901 S +11:41:25 Slot [280] | NOT FINANCIAL TRANSACTION +11:41:39 Slot [293] | NOT FINANCIAL TRANSACTION +11:41:40 +Slot[278] 0200 010000 6213545000362479 ------------- 00 305532 000050000000 507700079225010007006213545000362479 507700079225 271030 220699 S +11:41:48 +Slot[277] 0420 010000 2206990000121327 0 00 880182 000084000000 507702031470030180032206990000121327 507702031470 000000 668899 S +11:41:50 Slot [287] | NOT FINANCIAL TRANSACTION +11:41:52 +Slot[285] 0200 300000 1989010003184779 ------------- 00 351927 000000000000 507703027707120025001989010003184779 507703027707 137955 621354 S +11:42:02 Slot [304] | NOT FINANCIAL TRANSACTION +11:42:06 +Slot[289] 0200 010000 6213545001056435 ------------- 00 880278 000100000000 507702150656030200256213545001056435 507702150656 009655 668899 S +11:42:08 Slot [275] | NOT FINANCIAL TRANSACTION +11:42:10 +Slot[276] 0200 010000 2206990000121327 ------------- 91 880182 000084000000 507702031470030180032206990000121327 507702031470 053906 668899 S +11:42:13 +Slot[281] 0200 010000 2206990000121244 ------------- 00 880283 000100000000 507702031474030180032206990000121244 507702031474 797658 668899 S +11:42:16 Slot [309] | NOT FINANCIAL TRANSACTION +11:42:28 Slot [291] | NOT FINANCIAL TRANSACTION +11:42:34 Slot [259] | NOT FINANCIAL TRANSACTION +11:42:39 +Slot[296] 0200 011000 1808930300019940 ------------- 00 352143 000010000000 507704897450010122001808930300019940 507704897450 275077 621354 S +11:42:43 Slot [294] | NOT FINANCIAL TRANSACTION +11:42:53 Slot [286] | NOT FINANCIAL TRANSACTION +11:43:05 +Slot[303] 0200 010000 6213541000430473 ------------- 00 259762 000100000000 5077042597620528LPBP6213541000430473 507704259762 102285 180893 S +11:43:10 Slot [271] | NOT FINANCIAL TRANSACTION +11:43:14 Slot [282] | NOT FINANCIAL TRANSACTION +11:43:17 +Slot[298] 0200 010000 2206990000121244 ------------- 00 880349 000080000000 507702031476030180032206990000121244 507702031476 220929 668899 S +11:43:19 +Slot[272] 0200 010000 6213544000827805 ------------- 51 880354 000050000000 507702475390030200326213544000827805 507702475390 737035 668899 S +11:43:25 Slot [317] | NOT FINANCIAL TRANSACTION +11:43:31 +Slot[288] 0200 010000 6213545001056435 ------------- 00 880375 000100000000 507702150659030200256213545001056435 507702150659 708520 668899 S +11:43:35 Slot [237] | NOT FINANCIAL TRANSACTION +11:43:39 +Slot[307] 0420 011000 1808930300019940 ------------- 00 352143 000010000000 507704897450010122001808930300019940 507704897450 -------- 621354 S +11:43:45 +Slot[329] 0200 010000 6213545000968267 ------------- 00 880379 000010000000 507701541119030200166213545000968267 507701541119 397596 668899 S +11:43:46 Slot [314] | NOT FINANCIAL TRANSACTION +11:44:02 Slot [336] | NOT FINANCIAL TRANSACTION +11:44:02 +Slot[315] 0200 010000 6213544000827805 ------------- 00 880392 000049000000 507702475391030200326213544000827805 507702475391 218662 668899 S +11:44:04 +Slot[313] 0200 010000 6213544001160602 ------------- 00 124121 000050000000 507700063174010006006213544001160602 507700063174 865144 220699 S +11:44:08 +Slot[331] 0200 301000 6688990602681809 ------------- 00 352597 000000000000 507704153067200010006688990602681809 507704153067 070280 621354 S +11:44:12 +Slot[323] 0200 010000 6213541000430473 ------------- 61 259768 000150000000 5077042597680528LPBP6213541000430473 507704259768 010771 180893 S +11:44:12 Slot [324] | NOT FINANCIAL TRANSACTION +11:44:24 Slot [283] | NOT FINANCIAL TRANSACTION +11:44:26 +Slot[321] 0200 010000 2206990000121244 ------------- 00 880411 000004000000 507702031478030180032206990000121244 507702031478 601131 668899 S +11:44:34 Slot [255] | NOT FINANCIAL TRANSACTION +11:44:37 +Slot[318] 0200 010000 6213541000430473 ------------- 61 259772 000150000000 5077042597720528LPBP6213541000430473 507704259772 815863 180893 S +11:44:47 +Slot[295] 0200 010000 6213541000442361 ------------- 00 305535 000050000000 507700079227010007006213541000442361 507700079227 021048 220699 S +11:44:48 +Slot[319] 0200 010000 6688990700278805 ------------- 00 352740 000042000000 507704721922180011006688990700278805 507704721922 850364 621354 S +11:44:50 Slot [326] | NOT FINANCIAL TRANSACTION +11:44:55 +Slot[340] 0420 011000 1808930300019940 0000000000000 00 352143 000010000000 507704897450010122001808930300019940 507704897450 352143 621354 S +11:44:55 +Slot[300] 0200 011000 1989010003157486 ------------- 00 352762 000100000000 507703954628010111001989010003157486 507703954628 447223 621354 S +11:45:04 +Slot[302] 0200 011000 6688990602681809 ------------- 00 352823 000100000000 507704153069200010006688990602681809 507704153069 421793 621354 S +11:45:06 +Slot[306] 0200 301000 1808931800011759 ------------- 00 352810 000000000000 507704634021170008001808931800011759 507704634021 076036 621354 S +11:45:07 +Slot[312] 0200 010000 6213541000430473 ------------- 00 259778 000100000000 5077042597780528LPBP6213541000430473 507704259778 368548 180893 S +11:45:13 Slot [325] | NOT FINANCIAL TRANSACTION +11:45:14 Slot [355] | NOT FINANCIAL TRANSACTION +11:45:16 Slot [334] | NOT FINANCIAL TRANSACTION +11:45:17 Slot [311] | NOT FINANCIAL TRANSACTION +11:45:17 +Slot[316] 0200 010000 2206990000121327 ------------- 51 880446 000084000000 507702031480030180032206990000121327 507702031480 733156 668899 S +11:45:27 Slot [339] | NOT FINANCIAL TRANSACTION +11:45:42 Slot [301] | NOT FINANCIAL TRANSACTION +11:45:58 +Slot[310] 0200 010000 6213545000039648 ------------- 00 259785 000010000000 5077042597850115LPBR6213545000039648 507704259785 850280 180893 S +11:46:02 +Slot[308] 0200 011000 1808931800011759 ------------- 00 353106 000010000000 507704634023170008001808931800011759 507704634023 522403 621354 S +11:46:09 Slot [341] | NOT FINANCIAL TRANSACTION +11:46:12 +Slot[297] 0200 011000 6688990602681809 ------------- 00 353183 000100000000 507704153071200010006688990602681809 507704153071 747048 621354 S +11:46:16 +Slot[349] 0200 011000 6213544001297297 ------------- 00 223431 000004000000 507700118561010011006213544001297297 507700118561 866800 220699 S +11:46:16 Slot [350] | NOT FINANCIAL TRANSACTION +11:46:20 Slot [338] | NOT FINANCIAL TRANSACTION +11:46:30 Slot [332] | NOT FINANCIAL TRANSACTION +11:46:41 Slot [352] | NOT FINANCIAL TRANSACTION +11:46:44 +Slot[328] 0200 010000 6213541000430473 ------------- 00 259792 000050000000 5077042597920528LPBP6213541000430473 507704259792 723324 180893 S +11:46:56 Slot [364] | NOT FINANCIAL TRANSACTION +11:47:07 Slot [345] | NOT FINANCIAL TRANSACTION +11:47:18 Slot [343] | NOT FINANCIAL TRANSACTION +11:47:18 Slot [305] | NOT FINANCIAL TRANSACTION +11:47:29 Slot [354] | NOT FINANCIAL TRANSACTION +11:47:31 +Slot[337] 0200 011000 6688990602681809 ------------- 00 353599 000100000000 507704153073200010006688990602681809 507704153073 679780 621354 S +11:47:32 +Slot[330] 0200 311000 6688990040170449 ------------- 55 124124 000000000000 507700063176010006006688990040170449 507700063176 749262 220699 S +11:47:34 Slot [320] | NOT FINANCIAL TRANSACTION +11:47:44 Slot [335] | NOT FINANCIAL TRANSACTION +11:47:55 Slot [342] | NOT FINANCIAL TRANSACTION +11:48:05 Slot [369] | NOT FINANCIAL TRANSACTION +11:48:18 +Slot[366] 0200 010000 1808931400002026 ------------- 00 021004 000100000000 507700263011010014001808931400002026 507700263011 620595 220699 S +11:48:20 Slot [290] | NOT FINANCIAL TRANSACTION +11:48:22 Slot [292] | NOT FINANCIAL TRANSACTION +11:48:38 Slot [347] | NOT FINANCIAL TRANSACTION +11:48:49 Slot [374] | NOT FINANCIAL TRANSACTION +11:49:00 Slot [333] | NOT FINANCIAL TRANSACTION +11:49:13 +Slot[365] 0200 010000 1808931400002026 ------------- 00 021007 000100000000 507700263013010014001808931400002026 507700263013 418287 220699 S +11:49:20 Slot [384] | NOT FINANCIAL TRANSACTION +11:49:22 Slot [327] | NOT FINANCIAL TRANSACTION +11:49:31 Slot [358] | NOT FINANCIAL TRANSACTION +11:49:41 Slot [360] | NOT FINANCIAL TRANSACTION +11:49:51 Slot [353] | NOT FINANCIAL TRANSACTION +11:50:07 Slot [372] | NOT FINANCIAL TRANSACTION +11:50:09 +Slot[373] 0200 010000 6213548000236008 ------------- 00 880648 000002000000 507701541124030200166213548000236008 507701541124 205203 668899 S +11:50:17 Slot [362] | NOT FINANCIAL TRANSACTION +11:50:18 Slot [380] | NOT FINANCIAL TRANSACTION +11:50:24 +Slot[382] 0200 010000 6213545001059827 ------------- 00 880666 000100000000 507702126099033020016213545001059827 507702126099 446084 668899 S +11:50:24 Slot [379] | NOT FINANCIAL TRANSACTION +11:50:30 +Slot[322] 0200 011000 6688990602938100 ------------- 00 354474 000005000000 507704153075200010006688990602938100 507704153075 229332 621354 S +11:50:31 Slot [348] | NOT FINANCIAL TRANSACTION +11:50:46 Slot [361] | NOT FINANCIAL TRANSACTION +11:50:56 Slot [377] | NOT FINANCIAL TRANSACTION +11:51:12 Slot [346] | NOT FINANCIAL TRANSACTION +11:51:17 +Slot[378] 0200 010000 6213545001059827 ------------- 00 880707 000100000000 507702126101033020016213545001059827 507702126101 812316 668899 S +11:51:20 +Slot[363] 0200 301000 6213544000454535 ------------- 00 259809 031804502325 5077042598090401XSBR6213544000454535 507704259809 711404 180893 S +11:51:26 Slot [370] | NOT FINANCIAL TRANSACTION +11:51:29 Slot [385] | NOT FINANCIAL TRANSACTION +11:51:40 Slot [371] | NOT FINANCIAL TRANSACTION +11:51:51 Slot [351] | NOT FINANCIAL TRANSACTION +11:52:06 Slot [367] | NOT FINANCIAL TRANSACTION +11:52:16 Slot [344] | NOT FINANCIAL TRANSACTION +11:52:24 +Slot[397] 0200 010000 6213545001059827 ------------- 00 880754 000060000000 507702126103033020016213545001059827 507702126103 829852 668899 S +11:52:28 Slot [386] | NOT FINANCIAL TRANSACTION +11:52:28 Slot [359] | NOT FINANCIAL TRANSACTION +11:52:34 Slot [410] | NOT FINANCIAL TRANSACTION +11:52:36 +Slot[388] 0200 011000 6213544000454535 ------------- 00 259813 000020000000 5077042598130401XSBR6213544000454535 507704259813 884223 180893 S +11:52:48 Slot [357] | NOT FINANCIAL TRANSACTION +11:52:59 Slot [414] | NOT FINANCIAL TRANSACTION +11:53:09 +Slot[408] 0200 300000 6213545001059827 ------------- 00 880791 000000000000 507702126105033020016213545001059827 507702126105 012487 668899 S +11:53:10 Slot [401] | NOT FINANCIAL TRANSACTION +11:53:21 Slot [403] | NOT FINANCIAL TRANSACTION +11:53:27 +Slot[393] 0200 010000 6213542000006750 ------------- 00 259826 000100000000 5077042598260101VTEB6213542000006750 507704259826 409097 180893 S +11:53:30 Slot [413] | NOT FINANCIAL TRANSACTION +11:53:37 Slot [398] | NOT FINANCIAL TRANSACTION +11:53:48 Slot [420] | NOT FINANCIAL TRANSACTION +11:54:04 Slot [391] | NOT FINANCIAL TRANSACTION +11:54:21 +Slot[392] 0200 010000 6213542000006750 ------------- 00 259837 000100000000 5077042598370101VTEB6213542000006750 507704259837 644333 180893 S +11:54:30 Slot [418] | NOT FINANCIAL TRANSACTION +11:54:32 Slot [416] | NOT FINANCIAL TRANSACTION +11:54:40 +Slot[425] 0200 301000 6688990601483900 ------------- 00 355620 000000000000 507704153076200010006688990601483900 507704153076 773153 621354 S +11:54:40 Slot [356] | NOT FINANCIAL TRANSACTION +11:54:51 +Slot[383] 0200 012000 6688990600846404 ------------- 00 355660 000050000000 507703364837130016006688990600846404 507703364837 618611 621354 S +11:54:52 Slot [411] | NOT FINANCIAL TRANSACTION +11:54:59 Slot [415] | NOT FINANCIAL TRANSACTION +11:55:02 Slot [387] | NOT FINANCIAL TRANSACTION +11:55:16 Slot [396] | NOT FINANCIAL TRANSACTION +11:55:18 Slot [431] | NOT FINANCIAL TRANSACTION +11:55:29 Slot [423] | NOT FINANCIAL TRANSACTION +11:55:34 Slot [402] | NOT FINANCIAL TRANSACTION +11:55:37 +Slot[395] 0200 010000 6688990040047811 ------------- 00 355883 000020000000 507703073084010087006688990040047811 507703073084 835487 621354 S +11:55:39 Slot [429] | NOT FINANCIAL TRANSACTION +11:55:41 +Slot[400] 0200 011000 6688990601483900 ------------- 00 355909 000020000000 507704153078200010006688990601483900 507704153078 008825 621354 S +11:55:52 Slot [381] | NOT FINANCIAL TRANSACTION +11:55:59 Slot [375] | NOT FINANCIAL TRANSACTION +11:56:07 Slot [417] | NOT FINANCIAL TRANSACTION +11:56:18 Slot [428] | NOT FINANCIAL TRANSACTION +11:56:29 Slot [399] | NOT FINANCIAL TRANSACTION +11:56:32 +Slot[438] 0200 301000 6213545000706881 ------------- 00 259848 031804553425 5077042598480441VT526213545000706881 507704259848 671021 180893 S +11:56:33 +Slot[406] 0200 010000 6213545000509418 ------------- 00 259850 000050000000 5077042598500105XTNY6213545000509418 507704259850 746941 180893 S +11:56:36 Slot [437] | NOT FINANCIAL TRANSACTION +11:56:45 Slot [404] | NOT FINANCIAL TRANSACTION +11:56:56 Slot [419] | NOT FINANCIAL TRANSACTION +11:57:12 Slot [427] | NOT FINANCIAL TRANSACTION +11:57:26 +Slot[422] 0200 300000 6213544002233374 ------------- 00 880980 000000000000 507700145870030200056213544002233374 507700145870 213086 668899 S +11:57:28 +Slot[445] 0200 010000 6213545000706881 ------------- 00 259855 000100000000 5077042598550441VT526213545000706881 507704259855 792922 180893 S +11:57:33 +Slot[452] 0200 010000 6213543000011311 ------------- 00 259857 000100000000 5077042598570105XTNY6213543000011311 507704259857 122874 180893 S +11:57:34 Slot [394] | NOT FINANCIAL TRANSACTION +11:57:38 Slot [368] | NOT FINANCIAL TRANSACTION +11:57:43 Slot [448] | NOT FINANCIAL TRANSACTION +11:57:53 Slot [440] | NOT FINANCIAL TRANSACTION +11:58:03 Slot [442] | NOT FINANCIAL TRANSACTION +11:58:16 +Slot[443] 0200 301000 6213544000699220 ------------- 00 259867 031804572025 5077042598670441VT526213544000699220 507704259867 460456 180893 S +11:58:19 +Slot[389] 0200 010000 6213543000011311 ------------- 00 259869 000100000000 5077042598690105XTNY6213543000011311 507704259869 499863 180893 S +11:58:29 Slot [465] | NOT FINANCIAL TRANSACTION +11:58:40 +Slot[435] 0200 300000 6688990050051158 ------------- 00 356733 000000000000 507705334778050047006688990050051158 507705334778 000378 621354 S +11:58:40 Slot [439] | NOT FINANCIAL TRANSACTION +11:58:43 Slot [424] | NOT FINANCIAL TRANSACTION +11:58:47 +Slot[390] 0200 010000 6213543000241314 ------------- 00 259873 000010000000 5077042598730102SAPA6213543000241314 507704259873 606100 180893 S +11:58:48 +Slot[376] 0200 011000 6213544000421872 ------------- 00 021010 000100000000 507700263015010014006213544000421872 507700263015 876729 220699 S +11:58:50 +Slot[433] 0200 011000 6688990050023900 ------------- 00 356768 000020000000 507703985206010114006688990050023900 507703985206 957998 621354 S +11:58:58 Slot [447] | NOT FINANCIAL TRANSACTION +11:59:14 Slot [421] | NOT FINANCIAL TRANSACTION +11:59:25 Slot [430] | NOT FINANCIAL TRANSACTION +11:59:35 Slot [460] | NOT FINANCIAL TRANSACTION +11:59:42 Slot [441] | NOT FINANCIAL TRANSACTION +11:59:43 +Slot[463] 0200 010000 6688990050051158 ------------- 00 356998 000020000000 507705334780050047006688990050051158 507705334780 326862 621354 S +11:59:46 Slot [456] | NOT FINANCIAL TRANSACTION +11:59:57 Slot [462] | NOT FINANCIAL TRANSACTION +12:00:04 +Slot[405] 0200 300000 6213544001246708 ------------- 00 881088 000000000000 507700297116030100066213544001246708 507700297116 654484 668899 S +12:00:09 Slot [434] | NOT FINANCIAL TRANSACTION +12:00:16 Slot [407] | NOT FINANCIAL TRANSACTION +12:00:19 +Slot[412] 0200 301000 6688990105015307 ------------- 00 357150 000000000000 507703499028060022006688990105015307 507703499028 888531 621354 S +12:00:24 Slot [449] | NOT FINANCIAL TRANSACTION +12:00:32 +Slot[475] 0200 010000 6213544001246708 ------------- 00 881102 000050000000 507700297117030100066213544001246708 507700297117 053196 668899 S +12:00:35 Slot [409] | NOT FINANCIAL TRANSACTION +12:00:44 Slot [469] | NOT FINANCIAL TRANSACTION +12:00:46 Slot [457] | NOT FINANCIAL TRANSACTION +12:01:01 Slot [479] | NOT FINANCIAL TRANSACTION +12:01:06 +Slot[482] 0200 010000 2206990000121327 ------------- 00 881118 000080000000 507702031482030180032206990000121327 507702031482 763534 668899 S +12:01:12 Slot [444] | NOT FINANCIAL TRANSACTION +12:01:23 +Slot[489] 0200 011000 6688990103267009 ------------- 00 259886 000080000000 5077052598860263UDXB6688990103267009 507705259886 222636 180893 S +12:01:32 +Slot[478] 0200 011000 6213545000752711 ------------- 51 259889 000030000000 5077052598890441VT526213545000752711 507705259889 654341 180893 S +12:01:44 Slot [450] | NOT FINANCIAL TRANSACTION +12:01:46 Slot [467] | NOT FINANCIAL TRANSACTION +12:01:52 +Slot[451] 0200 011000 6213543000234749 ------------- 00 168718 000002000000 507700026154010002006213543000234749 507700026154 033983 220699 S +12:01:55 Slot [459] | NOT FINANCIAL TRANSACTION +12:02:06 Slot [490] | NOT FINANCIAL TRANSACTION +12:02:21 Slot [483] | NOT FINANCIAL TRANSACTION +12:02:31 +Slot[472] 0200 010000 2206990000121327 ------------- 00 881170 000002000000 507702031484030180032206990000121327 507702031484 940081 668899 S +12:02:34 Slot [474] | NOT FINANCIAL TRANSACTION +12:02:36 Slot [455] | NOT FINANCIAL TRANSACTION +12:02:40 +Slot[453] 0200 011000 6213545000752711 ------------- 51 259894 000030000000 5077052598940441VT526213545000752711 507705259894 492653 180893 S +12:02:48 Slot [432] | NOT FINANCIAL TRANSACTION +12:02:52 Slot [487] | NOT FINANCIAL TRANSACTION +12:02:58 +Slot[461] 0200 301000 6213543000224617 ------------- 00 881185 000000000000 507702104222030200226213543000224617 507702104222 728181 668899 S +12:03:03 Slot [468] | NOT FINANCIAL TRANSACTION +12:03:14 Slot [481] | NOT FINANCIAL TRANSACTION +12:03:25 Slot [426] | NOT FINANCIAL TRANSACTION +12:03:28 +Slot[485] 0200 301000 6213545000752711 ------------- 00 259897 031805023125 5077052598970441VT526213545000752711 507705259897 802856 180893 S +12:03:36 Slot [498] | NOT FINANCIAL TRANSACTION +12:03:44 +Slot[455] 0200 010000 6213543000224617 ------------- 00 881211 000040000000 507702104223030200226213543000224617 507702104223 744768 668899 S +12:03:50 Slot [450] | NOT FINANCIAL TRANSACTION +12:03:50 +Slot[446] 0200 301000 6213546000009797 ------------- 00 259899 031805025425 5077052598990401XSBR6213546000009797 507705259899 863016 180893 S +12:04:02 Slot [471] | NOT FINANCIAL TRANSACTION +12:04:13 Slot [491] | NOT FINANCIAL TRANSACTION +12:04:20 +Slot[476] 0200 010000 6213546000009797 ------------- 00 259901 000050000000 5077052599010401XSBR6213546000009797 507705259901 369018 180893 S +12:04:28 Slot [486] | NOT FINANCIAL TRANSACTION +12:04:29 +Slot[436] 0200 010000 6213545000636450 ------------- 00 881237 000030000000 507700285501030100056213545000636450 507700285501 416830 668899 S +12:04:33 +Slot[497] 0200 011000 6213545000752711 ------------- 00 259903 000027000000 5077052599030441VT526213545000752711 507705259903 314252 180893 S +12:04:44 Slot [473] | NOT FINANCIAL TRANSACTION +12:04:52 Slot [7] | NOT FINANCIAL TRANSACTION +12:04:53 +Slot[499] 0200 011000 1808930500010426 ------------- 00 358131 000010000000 507703226349040032001808930500010426 507703226349 595766 621354 S +12:04:55 Slot [2] | NOT FINANCIAL TRANSACTION +12:05:07 Slot [464] | NOT FINANCIAL TRANSACTION +12:05:16 Slot [470] | NOT FINANCIAL TRANSACTION +12:05:17 Slot [492] | NOT FINANCIAL TRANSACTION +12:05:34 +Slot[477] 0200 010000 6213541000629181 ------------- 00 259908 000050000000 5077052599080401XSBR6213541000629181 507705259908 690922 180893 S +12:05:35 +Slot[495] 0200 010000 1808931300032784 ------------- 00 881272 000020000000 507701702388030010081808931300032784 507701702388 785290 668899 S +12:05:37 +Slot[18] 0200 010000 6213541000644230 ------------- 00 259910 000050000000 5077052599100111BLBR6213541000644230 507705259910 845290 180893 S +12:05:44 +Slot[24] 0200 302000 6213543000222116 ------------- 00 881280 000000000000 507700595656030060026213543000222116 507700595656 672367 668899 S +12:05:45 +Slot[14] 0200 301000 1808931300008347 ------------- 55 358304 000000000000 507703499029060022001808931300008347 507703499029 645599 621354 S +12:05:50 Slot [454] | NOT FINANCIAL TRANSACTION +12:05:52 +Slot[466] 0200 301000 6213544001579041 ------------- 00 259912 031805045625 5077052599120441VT526213544001579041 507705259912 773790 180893 S +12:05:54 Slot [480] | NOT FINANCIAL TRANSACTION +12:06:08 +Slot[484] 0200 301000 1808931300008347 ------------- 55 358370 000000000000 507703499030060022001808931300008347 507703499030 695941 621354 S +12:06:16 Slot [22] | NOT FINANCIAL TRANSACTION +12:06:27 Slot [488] | NOT FINANCIAL TRANSACTION +12:06:29 +Slot[493] 0200 010000 6213545000442883 ------------- 00 881304 000030000000 507702415096030010116213545000442883 507702415096 612714 668899 S +12:06:30 +Slot[3] 0200 010000 6213543000222116 ------------- 00 881307 000050000000 507700595657030060026213543000222116 507700595657 006160 668899 S +12:06:42 +Slot[458] 0200 301000 1808931300008347 ------------- 75 358495 000000000000 507703499031060022001808931300008347 507703499031 545763 621354 S +12:06:45 Slot [12] | NOT FINANCIAL TRANSACTION +12:06:52 Slot [0] | NOT FINANCIAL TRANSACTION +12:06:56 Slot [4] | NOT FINANCIAL TRANSACTION +12:07:04 +Slot[16] 0200 010000 6213544001579041 ------------- 00 259915 000100000000 5077052599150441VT526213544001579041 507705259915 163900 180893 S +12:07:13 +Slot[5] 0200 302000 6213544001645677 ------------- 55 881332 000000000000 507700167826030200076213544001645677 507700167826 940363 668899 S +12:07:13 Slot [21] | NOT FINANCIAL TRANSACTION +12:07:17 +Slot[1] 0200 010000 6213541000191752 ------------- 00 881336 000100000000 507701196607030200116213541000191752 507701196607 495740 668899 S +12:07:28 Slot [31] | NOT FINANCIAL TRANSACTION +12:07:34 Slot [8] | NOT FINANCIAL TRANSACTION +12:07:44 Slot [15] | NOT FINANCIAL TRANSACTION +12:07:55 Slot [26] | NOT FINANCIAL TRANSACTION +12:07:58 Slot [496] | NOT FINANCIAL TRANSACTION +12:08:06 Slot [23] | NOT FINANCIAL TRANSACTION +12:08:18 +Slot[6] 0200 012000 6213544001645677 ------------- 00 259924 000004000000 5077052599240104NUOL6213544001645677 507705259924 158151 180893 S +12:08:28 +Slot[10] 0200 012000 1888880000051557 ------------- 00 358869 000100000000 507702389053010063001888880000051557 507702389053 621090 621354 S +12:08:28 Slot [9] | NOT FINANCIAL TRANSACTION +12:08:38 Slot [46] | NOT FINANCIAL TRANSACTION +12:08:40 +Slot[27] 0200 010000 6688990601490301 ------------- 00 358945 000070000000 507704153080200010006688990601490301 507704153080 088257 621354 S +12:08:46 +Slot[11] 0200 010000 1808931300008347 ------------- 75 358984 000100000000 507703499034060022001808931300008347 507703499034 506014 621354 S +12:08:55 Slot [25] | NOT FINANCIAL TRANSACTION +12:09:00 Slot [28] | NOT FINANCIAL TRANSACTION +12:09:11 Slot [494] | NOT FINANCIAL TRANSACTION +12:09:21 +Slot[30] 0200 010000 6213545000079040 ------------- 00 259933 000010000000 5077052599330528LPBP6213545000079040 507705259933 592667 180893 S +12:09:31 Slot [20] | NOT FINANCIAL TRANSACTION +12:09:42 Slot [34] | NOT FINANCIAL TRANSACTION +12:09:52 Slot [42] | NOT FINANCIAL TRANSACTION +12:10:02 Slot [56] | NOT FINANCIAL TRANSACTION +12:10:04 Slot [39] | NOT FINANCIAL TRANSACTION +12:10:16 Slot [36] | NOT FINANCIAL TRANSACTION +12:10:18 Slot [52] | NOT FINANCIAL TRANSACTION +12:10:29 Slot [38] | NOT FINANCIAL TRANSACTION +12:10:41 +Slot[32] 0200 010000 1808931100009958 ------------- 00 359456 000030000000 507705034895020026001808931100009958 507705034895 964764 621354 S +12:10:46 Slot [41] | NOT FINANCIAL TRANSACTION +12:10:59 +Slot[47] 0200 300000 1808931300008347 ------------- 75 359562 000000000000 507703499035060022001808931300008347 507703499035 450561 621354 S +12:11:04 Slot [44] | NOT FINANCIAL TRANSACTION +12:11:05 +Slot[40] 0200 011000 1808930600022594 ------------- 55 359594 000100000000 507704420357030041001808930600022594 507704420357 817839 621354 S +12:11:16 Slot [13] | NOT FINANCIAL TRANSACTION +12:11:27 Slot [19] | NOT FINANCIAL TRANSACTION +12:11:30 +Slot[57] 0200 010000 6213548000158111 ------------- 00 881485 000010000000 507702209581030060096213548000158111 507702209581 745638 668899 S +12:11:40 +Slot[37] 0200 011000 1808930600022594 ------------- 00 359712 000100000000 507704420359030041001808930600022594 507704420359 255924 621354 S +12:11:41 Slot [54] | NOT FINANCIAL TRANSACTION +12:11:43 Slot [61] | NOT FINANCIAL TRANSACTION +12:11:53 Slot [59] | NOT FINANCIAL TRANSACTION +12:12:04 Slot [58] | NOT FINANCIAL TRANSACTION +12:12:06 Slot [51] | NOT FINANCIAL TRANSACTION +12:12:16 +Slot[55] 0200 300000 1808931300008347 ------------- 75 359891 000000000000 507703499036060022001808931300008347 507703499036 744148 621354 S +12:12:25 Slot [29] | NOT FINANCIAL TRANSACTION +12:12:34 Slot [17] | NOT FINANCIAL TRANSACTION +12:12:36 Slot [60] | NOT FINANCIAL TRANSACTION +12:12:59 +Slot[72] 0200 011000 1808930600022594 ------------- 00 360063 000100000000 507704420361030041001808930600022594 507704420361 175201 621354 S +12:13:04 Slot [48] | NOT FINANCIAL TRANSACTION +12:13:08 Slot [63] | NOT FINANCIAL TRANSACTION +12:13:15 Slot [35] | NOT FINANCIAL TRANSACTION +12:13:31 Slot [67] | NOT FINANCIAL TRANSACTION +12:13:41 Slot [71] | NOT FINANCIAL TRANSACTION +12:13:44 +Slot[53] 0200 010000 6688990060029681 ------------- 00 259960 000010000000 5077052599600369SLVL6688990060029681 507705259960 665392 180893 S +12:13:58 +Slot[80] 0200 301000 1808931300008347 ------------- 75 881578 000000000000 507702061096032050041808931300008347 507702061096 589198 668899 S +12:13:59 +Slot[79] 0200 010000 6213544001831640 ------------- 00 259966 000050000000 5077052599660102SAPA6213544001831640 507705259966 319179 180893 S +12:14:10 Slot [49] | NOT FINANCIAL TRANSACTION +12:14:13 Slot [85] | NOT FINANCIAL TRANSACTION +12:14:23 Slot [83] | NOT FINANCIAL TRANSACTION +12:14:38 Slot [45] | NOT FINANCIAL TRANSACTION +12:14:54 Slot [78] | NOT FINANCIAL TRANSACTION +12:14:56 +Slot[75] 0200 010000 6688990602680207 ------------- 00 259973 000010000000 5077052599730369SLVL6688990602680207 507705259973 642932 180893 S +12:15:10 Slot [73] | NOT FINANCIAL TRANSACTION +12:15:12 Slot [68] | NOT FINANCIAL TRANSACTION +12:15:16 Slot [43] | NOT FINANCIAL TRANSACTION +12:15:21 Slot [76] | NOT FINANCIAL TRANSACTION +12:15:24 +Slot[91] 0200 301000 6688990050023900 ------------- 00 360723 000000000000 507703985226010114006688990050023900 507703985226 979365 621354 S +12:15:31 Slot [77] | NOT FINANCIAL TRANSACTION +12:15:42 +Slot[89] 0200 011000 1808930200040798 ------------- 00 360778 000025000000 507703925347010108001808930200040798 507703925347 519947 621354 S +12:15:47 Slot [88] | NOT FINANCIAL TRANSACTION +12:15:57 Slot [65] | NOT FINANCIAL TRANSACTION +12:16:12 Slot [94] | NOT FINANCIAL TRANSACTION +12:16:14 Slot [86] | NOT FINANCIAL TRANSACTION +12:16:17 +Slot[66] 0200 011000 6688990050023900 ------------- 00 360945 000020000000 507703985228010114006688990050023900 507703985228 792490 621354 S +12:16:18 +Slot[93] 0200 311000 6213545001109309 ------------- 00 177034 000000000000 507700010055010001006213545001109309 507700010055 521185 220699 S +12:16:24 Slot [33] | NOT FINANCIAL TRANSACTION +12:16:36 +Slot[103] 0200 010000 6213541000517329 ------------- 00 259987 000100000000 5077052599870102SAPA6213541000517329 507705259987 608515 180893 S +12:16:46 +Slot[101] 0200 011000 1808931200007241 ------------- 00 361054 000060000000 507704161689200011001808931200007241 507704161689 684608 621354 S +12:16:50 Slot [74] | NOT FINANCIAL TRANSACTION +12:16:59 +Slot[95] 0200 010000 6213544001126157 ------------- 00 881686 000080000000 507702435328030200316213544001126157 507702435328 540041 668899 S +12:17:06 Slot [105] | NOT FINANCIAL TRANSACTION +12:17:14 +Slot[102] 0200 311000 6213545001092828 ------------- 00 168729 000000000000 507700026165010002006213545001092828 507700026165 348757 220699 S +12:17:16 Slot [70] | NOT FINANCIAL TRANSACTION +12:17:18 +Slot[50] 0200 311000 1808930100005750 ------------- 00 021019 000000000000 507700263021010014001808930100005750 507700263021 471393 220699 S +12:17:23 +Slot[92] 0200 010000 6213541000517329 ------------- 00 259995 000100000000 5077052599950102SAPA6213541000517329 507705259995 064618 180893 S +12:17:29 +Slot[107] 0200 011000 1888880000056309 ------------- 00 361207 000002000000 507704538396020016001888880000056309 507704538396 649266 621354 S +12:17:31 Slot [81] | NOT FINANCIAL TRANSACTION +12:17:33 Slot [100] | NOT FINANCIAL TRANSACTION +12:17:34 Slot [114] | NOT FINANCIAL TRANSACTION +12:17:42 +Slot[108] 0200 010000 6688990602822809 ------------- 00 259998 000050000000 5077052599980369SLVL6688990602822809 507705259998 899521 180893 S +12:17:53 Slot [104] | NOT FINANCIAL TRANSACTION +12:18:00 +Slot[82] 0200 302000 6213544001533824 ------------- 75 881720 000000000000 507701972000030120036213544001533824 507701972000 000879 668899 S +12:18:04 Slot [87] | NOT FINANCIAL TRANSACTION +12:18:11 +Slot[69] 0200 011000 6213545001092828 ------------- 00 168730 000002000000 507700026166010002006213545001092828 507700026166 121799 220699 S +12:18:15 Slot [122] | NOT FINANCIAL TRANSACTION +12:18:18 Slot [119] | NOT FINANCIAL TRANSACTION +12:18:26 Slot [117] | NOT FINANCIAL TRANSACTION +12:18:36 Slot [110] | NOT FINANCIAL TRANSACTION +12:18:47 Slot [115] | NOT FINANCIAL TRANSACTION +12:19:03 Slot [96] | NOT FINANCIAL TRANSACTION +12:19:05 +Slot[62] 0200 010000 6213545000636450 ------------- 00 881764 000020000000 507700285503030100056213545000636450 507700285503 845285 668899 S +12:19:14 Slot [64] | NOT FINANCIAL TRANSACTION +12:19:20 Slot [136] | NOT FINANCIAL TRANSACTION +12:19:25 Slot [97] | NOT FINANCIAL TRANSACTION +12:19:40 Slot [124] | NOT FINANCIAL TRANSACTION +12:19:57 +Slot[113] 0200 311000 1808930100005750 ------------- 55 021023 000000000000 507700263023010014001808930100005750 507700263023 144350 220699 S +12:19:58 +Slot[84] 0200 010000 6688990108416304 ------------- 00 260016 000100000000 5077052600160467PSLK6688990108416304 507705260016 551825 180893 S +12:20:12 Slot [98] | NOT FINANCIAL TRANSACTION +12:20:16 Slot [90] | NOT FINANCIAL TRANSACTION +12:20:22 Slot [121] | NOT FINANCIAL TRANSACTION +12:20:22 Slot [134] | NOT FINANCIAL TRANSACTION +12:20:32 +Slot[159] 0200 301000 6688990104644008 ------------- 00 361963 000000000000 507702720347010066006688990104644008 507702720347 832982 621354 S +12:20:40 +Slot[112] 0200 311000 1808930100005750 ------------- 00 021026 000000000000 507700263025010014001808930100005750 507700263025 487523 220699 S +12:20:41 +Slot[99] 0200 301000 6213544001819934 ------------- 00 260021 031805194526 5077052600210324BKDT6213544001819934 507705260021 832506 180893 S +12:20:53 Slot [144] | NOT FINANCIAL TRANSACTION +12:21:08 Slot [142] | NOT FINANCIAL TRANSACTION +12:21:19 Slot [148] | NOT FINANCIAL TRANSACTION +12:21:24 Slot [111] | NOT FINANCIAL TRANSACTION +12:21:31 Slot [128] | NOT FINANCIAL TRANSACTION +12:21:32 +Slot[149] 0200 010000 6213545000636450 ------------- 00 881834 000010000000 507700285505030100056213545000636450 507700285505 119254 668899 S +12:21:33 +Slot[126] 0200 301000 6213544001017984 ------------- 00 164702 000000000000 507712164702000022226213544001017984 507712164702 957777 198901 S +12:21:45 Slot [155] | NOT FINANCIAL TRANSACTION +12:21:56 Slot [131] | NOT FINANCIAL TRANSACTION +12:21:57 +Slot[140] 0200 011000 6213544001208088 ------------- 55 078871 000020000000 507700132794030001006213544001208088 507700132794 084605 220699 S +12:22:01 +Slot[109] 0200 011000 6213544001017984 ------------- 00 164706 000100000000 507712164706000022226213544001017984 507712164706 617305 198901 S +12:22:08 Slot [127] | NOT FINANCIAL TRANSACTION +12:22:22 Slot [139] | NOT FINANCIAL TRANSACTION +12:22:26 Slot [146] | NOT FINANCIAL TRANSACTION +12:22:34 Slot [151] | NOT FINANCIAL TRANSACTION +12:22:39 +Slot[150] 0200 010000 6213544002075155 ------------- 00 260028 000100000000 5077052600280343SVKP6213544002075155 507705260028 605459 180893 S +12:22:48 +Slot[123] 0200 010000 6213541000029804 ------------- 00 177037 000100000000 507700010057010001006213541000029804 507700010057 302468 220699 S +12:22:48 Slot [118] | NOT FINANCIAL TRANSACTION +12:22:55 +Slot[154] 0200 011000 6213544001208088 ------------- 00 078873 000020000000 507700132796030001006213544001208088 507700132796 899062 220699 S +12:23:02 +Slot[138] 0200 010000 1808930400023693 ------------- 00 362517 000005000000 507704458434150007001808930400023693 507704458434 195068 621354 S +12:23:07 Slot [157] | NOT FINANCIAL TRANSACTION +12:23:21 Slot [132] | NOT FINANCIAL TRANSACTION +12:23:28 Slot [135] | NOT FINANCIAL TRANSACTION +12:23:33 Slot [171] | NOT FINANCIAL TRANSACTION +12:23:43 Slot [152] | NOT FINANCIAL TRANSACTION +12:23:58 Slot [167] | NOT FINANCIAL TRANSACTION +12:24:09 Slot [120] | NOT FINANCIAL TRANSACTION +12:24:19 Slot [116] | NOT FINANCIAL TRANSACTION +12:24:24 +Slot[156] 0200 010000 6213545000969885 ------------- 00 881921 000020000000 507701519385030040036213545000969885 507701519385 187104 668899 S +12:24:30 Slot [130] | NOT FINANCIAL TRANSACTION +12:24:30 Slot [129] | NOT FINANCIAL TRANSACTION +12:24:42 Slot [168] | NOT FINANCIAL TRANSACTION +12:24:58 Slot [141] | NOT FINANCIAL TRANSACTION +12:25:03 +Slot[175] 0200 010000 6213545000699227 ------------- 00 260033 000050000000 5077052600330102SAPA6213545000699227 507705260033 810390 180893 S +12:25:14 Slot [172] | NOT FINANCIAL TRANSACTION +12:25:16 Slot [169] | NOT FINANCIAL TRANSACTION +12:25:25 Slot [174] | NOT FINANCIAL TRANSACTION +12:25:32 Slot [166] | NOT FINANCIAL TRANSACTION +12:25:35 Slot [160] | NOT FINANCIAL TRANSACTION +12:25:51 Slot [147] | NOT FINANCIAL TRANSACTION +12:26:00 +Slot[164] 0200 011000 6213544000581295 ------------- 61 260038 000250000000 5077052600380101VTEB6213544000581295 507705260038 641598 180893 S +12:26:12 Slot [133] | NOT FINANCIAL TRANSACTION +12:26:26 +Slot[178] 0200 010000 6213544000581295 ------------- 61 260041 000200000000 5077052600410101VTEB6213544000581295 507705260041 830374 180893 S +12:26:27 +Slot[195] 0200 301000 1808930400023693 ------------- 00 363290 000000000000 507704458435150007001808930400023693 507704458435 523841 621354 S +12:26:34 Slot [170] | NOT FINANCIAL TRANSACTION +12:26:38 Slot [183] | NOT FINANCIAL TRANSACTION +12:26:45 +Slot[189] 0200 010000 6213544000581295 ------------- 00 260043 000100000000 5077052600430101VTEB6213544000581295 507705260043 617700 180893 S +12:26:53 Slot [125] | NOT FINANCIAL TRANSACTION +12:26:54 +Slot[191] 0200 300000 6213544001235941 ------------- 00 882016 000000000000 507700195525030010036213544001235941 507700195525 537059 668899 S +12:27:04 Slot [161] | NOT FINANCIAL TRANSACTION +12:27:12 +Slot[143] 0200 301000 6213543000185446 ------------- 00 260045 031805261526 5077052600450467PSLK6213543000185446 507705260045 560355 180893 S +12:27:20 Slot [181] | NOT FINANCIAL TRANSACTION +12:27:30 Slot [202] | NOT FINANCIAL TRANSACTION +12:27:34 Slot [204] | NOT FINANCIAL TRANSACTION +12:27:36 Slot [158] | NOT FINANCIAL TRANSACTION +12:27:41 Slot [197] | NOT FINANCIAL TRANSACTION +12:27:48 +Slot[182] 0200 311000 6213541000100498 ------------- 00 168732 000000000000 507700026168010002006213541000100498 507700026168 557611 220699 S +12:27:50 +Slot[198] 0200 010000 6213544000581295 ------------- 00 260047 000100000000 5077052600470101VTEB6213544000581295 507705260047 646193 180893 S +12:28:03 Slot [200] | NOT FINANCIAL TRANSACTION +12:28:12 +Slot[177] 0200 012000 6688990106251703 ------------- 00 363580 000020000000 507703672618160020006688990106251703 507703672618 277237 621354 S +12:28:16 Slot [213] | NOT FINANCIAL TRANSACTION +12:28:18 Slot [193] | NOT FINANCIAL TRANSACTION +12:28:23 Slot [106] | NOT FINANCIAL TRANSACTION +12:28:37 +Slot[165] 0200 011000 6213541000100498 ------------- 00 168733 000050000000 507700026169010002006213541000100498 507700026169 361041 220699 S +12:28:38 +Slot[210] 0200 011000 1808930600008130 ------------- 00 363652 000040000000 507704420405030041001808930600008130 507704420405 331066 621354 S +12:28:38 Slot [153] | NOT FINANCIAL TRANSACTION +12:28:40 Slot [163] | NOT FINANCIAL TRANSACTION +12:28:52 Slot [211] | NOT FINANCIAL TRANSACTION +12:28:59 +Slot[162] 0200 010000 6213544000581295 ------------- 00 260051 000050000000 5077052600510101VTEB6213544000581295 507705260051 115312 180893 S +12:29:12 Slot [187] | NOT FINANCIAL TRANSACTION +12:29:20 +Slot[145] 0200 010000 6213544001985222 ------------- 00 882087 000010000000 507701443461034140016213544001985222 507701443461 119050 668899 S +12:29:24 +Slot[206] 0200 010000 6688990107658401 ------------- 00 363823 000100000000 507703760148010092006688990107658401 507703760148 451947 621354 S +12:29:28 Slot [221] | NOT FINANCIAL TRANSACTION +12:29:39 Slot [217] | NOT FINANCIAL TRANSACTION +12:29:40 Slot [205] | NOT FINANCIAL TRANSACTION +12:29:50 Slot [194] | NOT FINANCIAL TRANSACTION +12:30:00 Slot [180] | NOT FINANCIAL TRANSACTION +12:30:10 Slot [196] | NOT FINANCIAL TRANSACTION +12:30:16 Slot [214] | NOT FINANCIAL TRANSACTION +12:30:26 Slot [176] | NOT FINANCIAL TRANSACTION +12:30:37 Slot [226] | NOT FINANCIAL TRANSACTION +12:30:39 +Slot[222] 0200 301000 6213544001842225 ------------- 05 882132 000000000000 507701008239034030016213544001842225 507701008239 100640 668899 S +12:30:42 Slot [184] | NOT FINANCIAL TRANSACTION +12:30:47 +Slot[190] 0200 011000 1808930200040558 ------------- 00 364064 000010000000 507704211180010120001808930200040558 507704211180 052563 621354 S +12:30:52 +Slot[225] 0200 010000 6213541000702889 ------------- 00 260060 000100000000 5077052600600361BLTB6213541000702889 507705260060 856673 180893 S +12:31:04 Slot [137] | NOT FINANCIAL TRANSACTION +12:31:15 Slot [173] | NOT FINANCIAL TRANSACTION +12:31:25 Slot [224] | NOT FINANCIAL TRANSACTION +12:31:28 +Slot[218] 0200 010000 6213541000702889 ------------- 00 260064 000100000000 5077052600640361BLTB6213541000702889 507705260064 076054 180893 S +12:31:32 +Slot[208] 0200 010000 6213544001842225 ------------- 00 882172 000100000000 507701008241034030016213544001842225 507701008241 982305 668899 S +12:31:41 Slot [207] | NOT FINANCIAL TRANSACTION +12:31:44 Slot [215] | NOT FINANCIAL TRANSACTION +12:31:51 Slot [223] | NOT FINANCIAL TRANSACTION +12:32:07 Slot [231] | NOT FINANCIAL TRANSACTION +12:32:11 +Slot[192] 0200 010000 6213541000702889 ------------- 00 260069 000100000000 5077052600690361BLTB6213541000702889 507705260069 889242 180893 S +12:32:14 +Slot[188] 0200 010000 6688990107658401 ------------- 00 364371 000100000000 507703760150010092006688990107658401 507703760150 175342 621354 S +12:32:23 Slot [199] | NOT FINANCIAL TRANSACTION +12:32:33 Slot [185] | NOT FINANCIAL TRANSACTION +12:32:34 Slot [220] | NOT FINANCIAL TRANSACTION +12:32:46 Slot [229] | NOT FINANCIAL TRANSACTION +12:32:49 +Slot[179] 0200 010000 6213541000702889 ------------- 00 260074 000100000000 5077052600740361BLTB6213541000702889 507705260074 025758 180893 S +12:33:00 Slot [186] | NOT FINANCIAL TRANSACTION +12:33:11 Slot [212] | NOT FINANCIAL TRANSACTION +12:33:26 +Slot[227] 0200 010000 6688990107658401 ------------- 55 364607 000100000000 507703760152010092006688990107658401 507703760152 974387 621354 S +12:33:27 Slot [230] | NOT FINANCIAL TRANSACTION +12:33:32 +Slot[236] 0200 010000 6213541000702889 ------------- 00 260081 000100000000 5077052600810361BLTB6213541000702889 507705260081 925156 180893 S +12:33:41 +Slot[232] 0200 311000 6213546000001240 ------------- 00 168735 000000000000 507700026171010002006213546000001240 507700026171 363845 220699 S +12:33:44 Slot [216] | NOT FINANCIAL TRANSACTION +12:33:47 +Slot[219] 0200 010000 6213544001842225 ------------- 00 882238 000100000000 507701008243034030016213544001842225 507701008243 649294 668899 S +12:33:48 Slot [234] | NOT FINANCIAL TRANSACTION +12:33:53 +Slot[239] 0200 010000 6213544001853529 ------------- 00 223456 000100000000 507700118578010011006213544001853529 507700118578 493141 220699 S +12:33:57 +Slot[235] 0200 012000 1808930200042216 ------------- 42 364693 000010000000 507705177513010129001808930200042216 507705177513 750458 621354 S +12:33:58 +Slot[250] 0200 010000 6688990107658401 ------------- 55 364701 000100000000 507703760154010092006688990107658401 507703760154 187741 621354 S +12:34:05 Slot [242] | NOT FINANCIAL TRANSACTION +12:34:17 +Slot[228] 0200 010000 6213541000319783 ------------- 51 882254 000100000000 507702415107030010116213541000319783 507702415107 093395 668899 S +12:34:20 Slot [201] | NOT FINANCIAL TRANSACTION +12:34:30 Slot [252] | NOT FINANCIAL TRANSACTION +12:34:31 +Slot[238] 0200 302000 6213541000319783 ------------- 00 882262 000000000000 507702415108030010116213541000319783 507702415108 863132 668899 S +12:34:41 Slot [245] | NOT FINANCIAL TRANSACTION +12:34:44 +Slot[240] 0200 010000 6688990103110100 ------------- 00 364826 000010000000 507702925202120015006688990103110100 507702925202 011378 621354 S +12:34:50 Slot [203] | NOT FINANCIAL TRANSACTION +12:34:54 +Slot[258] 0200 010000 6213541000319783 ------------- 51 882272 000100000000 507702415109030010116213541000319783 507702415109 660691 668899 S +12:34:55 +Slot[248] 0200 011000 6213544000791076 ------------- 00 168737 000050000000 507700026173010002006213544000791076 507700026173 025101 220699 S +12:34:57 Slot [253] | NOT FINANCIAL TRANSACTION +12:35:12 +Slot[247] 0200 010000 6688990600889602 ------------- 00 364929 000100000000 507702781532010072006688990600889602 507702781532 229632 621354 S +12:35:13 Slot [243] | NOT FINANCIAL TRANSACTION +12:35:13 +Slot[244] 0200 010000 6213543000078336 ------------- 51 250647 000020000000 507700335838010019006213543000078336 507700335838 873879 220699 S +12:35:16 Slot [256] | NOT FINANCIAL TRANSACTION +12:35:27 Slot [260] | NOT FINANCIAL TRANSACTION +12:35:38 Slot [246] | NOT FINANCIAL TRANSACTION +12:35:52 Slot [241] | NOT FINANCIAL TRANSACTION +12:35:53 Slot [273] | NOT FINANCIAL TRANSACTION +12:36:01 +Slot[251] 0200 010000 6213543000078336 ------------- 00 250650 000010000000 507700335840010019006213543000078336 507700335840 793563 220699 S +12:36:07 Slot [265] | NOT FINANCIAL TRANSACTION +12:36:22 Slot [264] | NOT FINANCIAL TRANSACTION +12:36:33 Slot [249] | NOT FINANCIAL TRANSACTION +12:36:48 Slot [269] | NOT FINANCIAL TRANSACTION +12:36:54 Slot [254] | NOT FINANCIAL TRANSACTION +12:36:58 Slot [268] | NOT FINANCIAL TRANSACTION +12:37:05 +Slot[209] 0200 310000 6213544001053096 ------------- 00 254545 000000000000 507700094233010009006213544001053096 507700094233 320877 220699 S +12:37:10 Slot [279] | NOT FINANCIAL TRANSACTION +12:37:25 Slot [261] | NOT FINANCIAL TRANSACTION +12:37:33 Slot [233] | NOT FINANCIAL TRANSACTION +12:37:37 Slot [266] | NOT FINANCIAL TRANSACTION +12:37:53 Slot [262] | NOT FINANCIAL TRANSACTION +12:37:55 +Slot[257] 0200 010000 6213544001053096 ------------- 55 254548 000100000000 507700094235010009006213544001053096 507700094235 080943 220699 S +12:37:56 Slot [270] | NOT FINANCIAL TRANSACTION +12:38:08 Slot [274] | NOT FINANCIAL TRANSACTION +12:38:19 Slot [284] | NOT FINANCIAL TRANSACTION +12:38:21 +Slot[263] 0200 011000 6213545000015069 ------------- 00 250656 000100000000 507700335844010019006213545000015069 507700335844 785891 220699 S +12:38:29 +Slot[267] 0200 011000 6213544000246147 ------------- 00 164946 000100000000 507712164946000022036213544000246147 507712164946 784250 198901 S +12:38:30 Slot [280] | NOT FINANCIAL TRANSACTION +12:38:33 +Slot[299] 0200 010000 6213544001053096 ------------- 00 254554 000100000000 507700094237010009006213544001053096 507700094237 276476 220699 S +12:38:41 Slot [293] | NOT FINANCIAL TRANSACTION +12:38:46 +Slot[278] 0200 300000 6688990700105305 ------------- 00 365603 000000000000 507703968414010112006688990700105305 507703968414 286621 621354 S +12:38:52 Slot [277] | NOT FINANCIAL TRANSACTION +12:38:56 +Slot[287] 0200 310000 6213545000443378 ------------- 00 168739 000000000000 507700026175010002006213545000443378 507700026175 215016 220699 S +12:38:58 Slot [285] | NOT FINANCIAL TRANSACTION +12:39:02 Slot [304] | NOT FINANCIAL TRANSACTION +12:39:04 Slot [289] | NOT FINANCIAL TRANSACTION +12:39:19 Slot [275] | NOT FINANCIAL TRANSACTION +12:39:30 Slot [276] | NOT FINANCIAL TRANSACTION +12:39:40 Slot [309] | NOT FINANCIAL TRANSACTION +12:39:44 +Slot[281] 0200 011000 6213545000015069 ------------- 00 250659 000030000000 507700335846010019006213545000015069 507700335846 566490 220699 S +12:39:47 +Slot[291] 0200 010000 6688990602557306 ------------- 00 365802 000004000000 507702438514050027006688990602557306 507702438514 371888 621354 S +12:39:50 Slot [259] | NOT FINANCIAL TRANSACTION +12:40:00 Slot [296] | NOT FINANCIAL TRANSACTION +12:40:01 Slot [294] | NOT FINANCIAL TRANSACTION +12:40:10 +Slot[286] 0200 010000 6688990700105305 ------------- 00 365883 000049000000 507703968416010112006688990700105305 507703968416 029296 621354 S +12:40:12 Slot [303] | NOT FINANCIAL TRANSACTION +12:40:17 Slot [271] | NOT FINANCIAL TRANSACTION +12:40:22 Slot [298] | NOT FINANCIAL TRANSACTION +12:40:23 +Slot[282] 0200 011000 6213541000413834 ------------- 00 168741 000050000000 507700026177010002006213541000413834 507700026177 121939 220699 S +12:40:42 +Slot[317] 0200 010000 6213545000871750 ------------- 51 260096 000050000000 5077052600960114XKBR6213545000871750 507705260096 085468 180893 S +12:40:53 Slot [288] | NOT FINANCIAL TRANSACTION +12:41:02 Slot [237] | NOT FINANCIAL TRANSACTION +12:41:03 Slot [307] | NOT FINANCIAL TRANSACTION +12:41:15 Slot [314] | NOT FINANCIAL TRANSACTION +12:41:21 +Slot[329] 0200 012000 6688990602685206 ------------- 00 260100 000020000000 5077052601000369SLVL6688990602685206 507705260100 511473 180893 S +12:41:39 Slot [315] | NOT FINANCIAL TRANSACTION +12:41:50 Slot [313] | NOT FINANCIAL TRANSACTION +12:42:04 Slot [323] | NOT FINANCIAL TRANSACTION +12:42:04 Slot [331] | NOT FINANCIAL TRANSACTION +12:42:11 +Slot[324] 0200 011000 6213541000673783 ------------- 00 168743 000100000000 507700026179010002006213541000673783 507700026179 222024 220699 S +12:42:17 Slot [283] | NOT FINANCIAL TRANSACTION +12:42:30 +Slot[321] 0200 010000 6213545000871750 ------------- 51 260110 000050000000 5077052601100114XKBR6213545000871750 507705260110 405171 180893 S +12:42:33 Slot [255] | NOT FINANCIAL TRANSACTION +12:42:43 Slot [318] | NOT FINANCIAL TRANSACTION +12:42:53 Slot [319] | NOT FINANCIAL TRANSACTION +12:42:54 +Slot[272] 0200 302000 6226300215371153 ------------- 91 260094 031805393326 5077052600940242VTVV6226300215371153 507705260094 279817 180893 S +12:42:55 +Slot[295] 0200 301000 1989010003186709 ------------- 00 366581 000000000000 507704478120150009001989010003186709 507704478120 254964 621354 S +12:43:06 Slot [326] | NOT FINANCIAL TRANSACTION +12:43:09 Slot [340] | NOT FINANCIAL TRANSACTION +12:43:23 +Slot[300] 0200 010000 6213541000713027 ------------- 00 260116 000010000000 5077052601160110VTBR6213541000713027 507705260116 691222 180893 S +12:43:27 +Slot[302] 0200 300000 6688990900456102 ------------- 00 366742 000000000000 507703916800010107006688990900456102 507703916800 600344 621354 S +12:43:36 Slot [306] | NOT FINANCIAL TRANSACTION +12:43:46 Slot [312] | NOT FINANCIAL TRANSACTION +12:43:50 +Slot[336] 0200 010000 6217253100007878693 ------------- 91 260103 000100000000 5077052601030242VTVV6217253100007878 507705260103 039845 180893 S +12:44:02 Slot [355] | NOT FINANCIAL TRANSACTION +12:44:04 +Slot[325] 0200 010000 6688990107658401 ------------- 00 366892 000100000000 507703973084010113006688990107658401 507703973084 556921 621354 S +12:44:08 Slot [311] | NOT FINANCIAL TRANSACTION +12:44:08 +Slot[334] 0200 300000 6688990900456102 ------------- 00 366926 000000000000 507703916801010107006688990900456102 507703916801 688144 621354 S +12:44:13 Slot [316] | NOT FINANCIAL TRANSACTION +12:44:28 Slot [339] | NOT FINANCIAL TRANSACTION +12:44:43 Slot [301] | NOT FINANCIAL TRANSACTION +12:44:54 +Slot[310] 0200 010000 6688990900456102 ------------- 00 367093 000100000000 507703916803010107006688990900456102 507703916803 252767 621354 S +12:44:54 Slot [341] | NOT FINANCIAL TRANSACTION +12:44:55 +Slot[308] 0200 012000 6688990103003701 ------------- 00 367109 000070000000 507704634063170008006688990103003701 507704634063 835062 621354 S +12:45:05 Slot [297] | NOT FINANCIAL TRANSACTION +12:45:05 Slot [349] | NOT FINANCIAL TRANSACTION +12:45:10 Slot [350] | NOT FINANCIAL TRANSACTION +12:45:15 Slot [338] | NOT FINANCIAL TRANSACTION +12:45:17 Slot [332] | NOT FINANCIAL TRANSACTION +12:45:25 +Slot[352] 0200 301000 1808931400009088 ------------- 00 882577 000000000000 507701602933032020011808931400009088 507701602933 564612 668899 S +12:45:26 +Slot[328] 0200 010000 6688990107658401 ------------- 00 367218 000100000000 507703973086010113006688990107658401 507703973086 984310 621354 S +12:45:33 Slot [364] | NOT FINANCIAL TRANSACTION +12:45:45 +Slot[345] 0200 301000 6213544000768645 ------------- 00 260128 031805444826 5077052601280141HQBR6213544000768645 507705260128 725149 180893 S +12:45:53 +Slot[343] 0200 010000 6688990900456102 ------------- 00 367316 000100000000 507703916805010107006688990900456102 507703916805 028579 621354 S +12:45:53 Slot [305] | NOT FINANCIAL TRANSACTION +12:46:04 Slot [354] | NOT FINANCIAL TRANSACTION +12:46:12 Slot [337] | NOT FINANCIAL TRANSACTION +12:46:15 Slot [320] | NOT FINANCIAL TRANSACTION +12:46:16 +Slot[330] 0200 303000 6688990103528400 ------------- 00 367390 000000000000 507703499057060022006688990103528400 507703499057 727499 621354 S +12:46:26 Slot [335] | NOT FINANCIAL TRANSACTION +12:46:35 +Slot[342] 0200 010000 6688990107658401 ------------- 00 367453 000100000000 507703973088010113006688990107658401 507703973088 409256 621354 S +12:46:37 Slot [369] | NOT FINANCIAL TRANSACTION +12:46:47 Slot [366] | NOT FINANCIAL TRANSACTION +12:47:04 Slot [290] | NOT FINANCIAL TRANSACTION +12:47:14 Slot [347] | NOT FINANCIAL TRANSACTION +12:47:14 Slot [292] | NOT FINANCIAL TRANSACTION +12:47:30 Slot [374] | NOT FINANCIAL TRANSACTION +12:47:33 Slot [333] | NOT FINANCIAL TRANSACTION +12:47:40 Slot [365] | NOT FINANCIAL TRANSACTION +12:47:55 +Slot[384] 0200 301000 1808931100003472 ------------- 00 367694 000000000000 507703936624010109001808931100003472 507703936624 260026 621354 S +12:48:02 Slot [327] | NOT FINANCIAL TRANSACTION +12:48:13 Slot [360] | NOT FINANCIAL TRANSACTION +12:48:16 Slot [353] | NOT FINANCIAL TRANSACTION +12:48:20 +Slot[358] 0200 010000 6688990103528400 ------------- 00 367754 000100000000 507703499059060022006688990103528400 507703499059 494872 621354 S +12:48:29 Slot [372] | NOT FINANCIAL TRANSACTION +12:48:39 Slot [373] | NOT FINANCIAL TRANSACTION +12:48:55 Slot [380] | NOT FINANCIAL TRANSACTION +12:49:04 +Slot[362] 0200 011000 1808931100003472 ------------- 00 367901 000100000000 507703936626010109001808931100003472 507703936626 922598 621354 S +12:49:11 +Slot[382] 0200 301000 6213545000451967 ------------- 00 260142 031805481426 5077052601420544PLUS6213545000451967 507705260142 909076 180893 S +12:49:13 +Slot[379] 0200 011000 6213544001463691 ------------- 00 165102 000100000000 507712165102000022226213544001463691 507712165102 142957 198901 S +12:49:18 Slot [322] | NOT FINANCIAL TRANSACTION +12:49:21 Slot [348] | NOT FINANCIAL TRANSACTION +12:49:28 +Slot[361] 0200 010000 6688990103528400 ------------- 00 367985 000100000000 507703499061060022006688990103528400 507703499061 188668 621354 S +12:49:33 Slot [377] | NOT FINANCIAL TRANSACTION +12:49:46 +Slot[346] 0200 010000 6213545000762181 ------------- 00 260147 000050000000 5077052601470461BKPO6213545000762181 507705260147 052927 180893 S +12:49:50 Slot [378] | NOT FINANCIAL TRANSACTION +12:49:57 +Slot[363] 0200 011000 6213544001463691 ------------- 00 165114 000100000000 507712165114000022226213544001463691 507712165114 485138 198901 S +12:49:59 Slot [370] | NOT FINANCIAL TRANSACTION +12:50:09 Slot [371] | NOT FINANCIAL TRANSACTION +12:50:12 +Slot[385] 0200 010000 6213545000451967 ------------- 00 260150 000050000000 5077052601500544PLUS6213545000451967 507705260150 702435 180893 S +12:50:17 Slot [351] | NOT FINANCIAL TRANSACTION +12:50:20 Slot [367] | NOT FINANCIAL TRANSACTION +12:50:25 Slot [344] | NOT FINANCIAL TRANSACTION +12:50:36 Slot [397] | NOT FINANCIAL TRANSACTION +12:50:47 Slot [386] | NOT FINANCIAL TRANSACTION +12:50:56 +Slot[359] 0200 301000 1808930400023040 ------------- 00 882741 000000000000 507702243108030200271808930400023040 507702243108 843865 668899 S +12:50:59 +Slot[410] 0200 010000 6688990103528400 ------------- 00 368271 000050000000 507703499063060022006688990103528400 507703499063 895179 621354 S +12:51:02 Slot [388] | NOT FINANCIAL TRANSACTION +12:51:14 Slot [357] | NOT FINANCIAL TRANSACTION +12:51:19 +Slot[414] 0200 010000 6213543000153436 ------------- 00 882758 000100000000 507701972011030120036213543000153436 507701972011 710595 668899 S +12:51:22 Slot [408] | NOT FINANCIAL TRANSACTION +12:51:26 +Slot[401] 0200 300000 6688990040079632 ------------- 55 368374 000000000000 507705251537020028006688990040079632 507705251537 826186 621354 S +12:51:29 Slot [403] | NOT FINANCIAL TRANSACTION +12:51:40 +Slot[393] 0200 300000 6688990040079632 ------------- 00 368402 000000000000 507705251538020028006688990040079632 507705251538 676448 621354 S +12:51:41 Slot [413] | NOT FINANCIAL TRANSACTION +12:51:56 Slot [398] | NOT FINANCIAL TRANSACTION +12:52:07 Slot [420] | NOT FINANCIAL TRANSACTION +12:52:18 Slot [392] | NOT FINANCIAL TRANSACTION +12:52:21 +Slot[391] 0200 010000 2206990000101600 ------------- 00 260164 000050000000 5077052601640107HSTH2206990000101600 507705260164 735494 180893 S +12:52:24 Slot [416] | NOT FINANCIAL TRANSACTION +12:52:28 +Slot[418] 0200 011000 6688990040079632 ------------- 00 368573 000100000000 507705251540020028006688990040079632 507705251540 940451 621354 S +12:52:33 Slot [425] | NOT FINANCIAL TRANSACTION +12:52:33 Slot [356] | NOT FINANCIAL TRANSACTION +12:52:44 Slot [411] | NOT FINANCIAL TRANSACTION +12:52:44 +Slot[383] 0200 010000 6213541000158066 ------------- 00 882799 000100000000 507701261832032060016213541000158066 507701261832 551440 668899 S +12:52:55 Slot [415] | NOT FINANCIAL TRANSACTION +12:53:06 Slot [387] | NOT FINANCIAL TRANSACTION +12:53:16 Slot [396] | NOT FINANCIAL TRANSACTION +12:53:22 +Slot[431] 0200 301000 6688990040079632 ------------- 00 368740 000000000000 507705251541020028006688990040079632 507705251541 204774 621354 S +12:53:26 Slot [423] | NOT FINANCIAL TRANSACTION +12:53:31 Slot [402] | NOT FINANCIAL TRANSACTION +12:53:42 Slot [395] | NOT FINANCIAL TRANSACTION +12:53:53 Slot [429] | NOT FINANCIAL TRANSACTION +12:54:04 Slot [400] | NOT FINANCIAL TRANSACTION +12:54:15 Slot [381] | NOT FINANCIAL TRANSACTION +12:54:28 Slot [417] | NOT FINANCIAL TRANSACTION +12:54:29 +Slot[375] 0200 011000 6688990603056704 ------------- 00 368958 000100000000 507703973098010113006688990603056704 507703973098 006994 621354 S +12:54:30 Slot [428] | NOT FINANCIAL TRANSACTION +12:54:37 +Slot[399] 0200 010000 6213545000759377 ------------- 00 167637 000010000000 507700175009070001006213545000759377 507700175009 402684 220699 S +12:54:41 Slot [438] | NOT FINANCIAL TRANSACTION +12:54:48 +Slot[406] 0200 011000 6213541000184096 ------------- 05 124133 000030000000 507700063182010006006213541000184096 507700063182 594955 220699 S +12:54:52 Slot [437] | NOT FINANCIAL TRANSACTION +12:55:03 Slot [419] | NOT FINANCIAL TRANSACTION +12:55:07 +Slot[404] 0200 301000 6688990040121699 ------------- 00 369105 000000000000 507705165091010128006688990040121699 507705165091 162526 621354 S +12:55:14 Slot [427] | NOT FINANCIAL TRANSACTION +12:55:17 Slot [422] | NOT FINANCIAL TRANSACTION +12:55:24 Slot [445] | NOT FINANCIAL TRANSACTION +12:55:30 +Slot[452] 0200 012000 6688990040079632 ------------- 00 369172 000025000000 507705251547020028006688990040079632 507705251547 807648 621354 S +12:55:30 Slot [394] | NOT FINANCIAL TRANSACTION +12:55:38 +Slot[368] 0200 011000 6213541000184096 ------------- 00 124136 000030000000 507700063184010006006213541000184096 507700063184 332735 220699 S +12:55:40 Slot [448] | NOT FINANCIAL TRANSACTION +12:55:51 Slot [440] | NOT FINANCIAL TRANSACTION +12:55:56 +Slot[442] 0200 301000 6688990040080978 ------------- 00 369258 000000000000 507703907013010106006688990040080978 507703907013 476673 621354 S +12:56:07 Slot [443] | NOT FINANCIAL TRANSACTION +12:56:17 +Slot[389] 0200 301000 6688990040079632 ------------- 00 369334 000000000000 507705251548020028006688990040079632 507705251548 458003 621354 S +12:56:23 Slot [465] | NOT FINANCIAL TRANSACTION +12:56:32 Slot [439] | NOT FINANCIAL TRANSACTION +12:56:38 +Slot[435] 0200 011000 1808930400000816 ------------- 00 369400 000050000000 507703936638010109001808930400000816 507703936638 179644 621354 S +12:56:43 Slot [424] | NOT FINANCIAL TRANSACTION +12:56:54 Slot [390] | NOT FINANCIAL TRANSACTION +12:57:04 +Slot[376] 0200 011000 6688990040079632 ------------- 00 369488 000005000000 507705251550020028006688990040079632 507705251550 142887 621354 S +12:57:05 Slot [421] | NOT FINANCIAL TRANSACTION +12:57:06 +Slot[433] 0200 010000 6688990104812209 ------------- 55 369502 000100000000 507704256336030024006688990104812209 507704256336 491686 621354 S +12:57:10 +Slot[447] 0200 011000 6688990040080978 ------------- 00 369508 000030000000 507703907015010106006688990040080978 507703907015 523834 621354 S +12:57:21 Slot [430] | NOT FINANCIAL TRANSACTION +12:57:33 Slot [441] | NOT FINANCIAL TRANSACTION +12:57:34 Slot [460] | NOT FINANCIAL TRANSACTION +12:57:36 Slot [463] | NOT FINANCIAL TRANSACTION +12:57:43 +Slot[456] 0200 311000 6213543000003623 ------------- 00 168753 000000000000 507700026188010002006213543000003623 507700026188 859749 220699 S +12:57:48 +Slot[462] 0200 301000 1808930400023040 ------------- 00 882916 000000000000 507702243114030200271808930400023040 507702243114 388032 668899 S +12:57:52 Slot [405] | NOT FINANCIAL TRANSACTION +12:57:59 +Slot[434] 0200 301000 6688990103975106 ------------- 00 369686 000000000000 507705251551020028006688990103975106 507705251551 002219 621354 S +12:58:04 Slot [449] | NOT FINANCIAL TRANSACTION +12:58:05 +Slot[407] 0200 300000 6688990106245804 ------------- 00 369713 000000000000 507702720433010066006688990106245804 507702720433 998729 621354 S +12:58:06 +Slot[412] 0200 301000 6688990040085720 ------------- 00 369716 000000000000 507703907016010106006688990040085720 507703907016 572004 621354 S +12:58:19 Slot [475] | NOT FINANCIAL TRANSACTION +12:58:24 +Slot[409] 0200 011000 6213543000003623 ------------- 00 168754 000100000000 507700026189010002006213543000003623 507700026189 583618 220699 S +12:58:30 Slot [469] | NOT FINANCIAL TRANSACTION +12:58:36 Slot [457] | NOT FINANCIAL TRANSACTION +12:58:41 Slot [482] | NOT FINANCIAL TRANSACTION +12:58:46 +Slot[479] 0200 011000 6688990103975106 ------------- 00 369870 000100000000 507705251553020028006688990103975106 507705251553 481561 621354 S +12:58:52 Slot [489] | NOT FINANCIAL TRANSACTION +12:58:57 +Slot[444] 0200 010000 6688990106245804 ------------- 00 369892 000100000000 507702720435010066006688990106245804 507702720435 215233 621354 S +12:59:03 Slot [450] | NOT FINANCIAL TRANSACTION +12:59:04 +Slot[478] 0200 011000 6688990040085720 ------------- 00 369928 000010000000 507703907018010106006688990040085720 507703907018 017594 621354 S +12:59:20 +Slot[467] 0200 010000 1808930400023040 ------------- 00 882969 000020000000 507702243115030200271808930400023040 507702243115 542737 668899 S +12:59:25 Slot [451] | NOT FINANCIAL TRANSACTION +12:59:38 +Slot[459] 0200 010000 6213543000168855 ------------- 00 260198 000010000000 5077052601980102SAPA6213543000168855 507705260198 952865 180893 S +12:59:38 Slot [490] | NOT FINANCIAL TRANSACTION +12:59:45 +Slot[483] 0200 011000 6688990103975106 ------------- 00 370069 000100000000 507705251555020028006688990103975106 507705251555 386971 621354 S +12:59:50 Slot [474] | NOT FINANCIAL TRANSACTION +12:59:52 +Slot[472] 0200 011000 6213541000622988 ------------- 55 168756 000100000000 507700026191010002006213541000622988 507700026191 601955 220699 S +13:00:06 Slot [453] | NOT FINANCIAL TRANSACTION +13:00:16 Slot [432] | NOT FINANCIAL TRANSACTION +13:00:18 +Slot[455] 0200 010000 1888880000028506 ------------- 00 883009 000070000000 507700796570030090011888880000028506 507700796570 937055 668899 S +13:00:19 Slot [487] | NOT FINANCIAL TRANSACTION +13:00:32 Slot [461] | NOT FINANCIAL TRANSACTION +13:00:36 Slot [468] | NOT FINANCIAL TRANSACTION +13:00:40 Slot [481] | NOT FINANCIAL TRANSACTION +13:00:43 Slot [485] | NOT FINANCIAL TRANSACTION +13:00:44 +Slot[426] 0200 011000 6688990103975106 ------------- 00 370289 000030000000 507705251557020028006688990103975106 507705251557 046953 621354 S +13:00:53 Slot [498] | NOT FINANCIAL TRANSACTION +13:01:01 +Slot[455] 0200 300000 6688990040015487 ------------- 00 370337 000000000000 507704644624170009006688990040015487 507704644624 839553 621354 S +13:01:04 Slot [446] | NOT FINANCIAL TRANSACTION +13:01:06 +Slot[450] 0200 011000 6213541000622988 ------------- 55 168758 000100000000 507700026193010002006213541000622988 507700026193 596787 220699 S +13:01:21 Slot [471] | NOT FINANCIAL TRANSACTION +13:01:31 Slot [491] | NOT FINANCIAL TRANSACTION +13:01:42 Slot [436] | NOT FINANCIAL TRANSACTION +13:01:42 Slot [486] | NOT FINANCIAL TRANSACTION +13:01:46 +Slot[476] 0200 011000 6688990101164901 ------------- 00 274371 000070000000 507700057020010005006688990101164901 507700057020 859914 220699 S +13:01:47 Slot [497] | NOT FINANCIAL TRANSACTION +13:01:53 Slot [473] | NOT FINANCIAL TRANSACTION +13:02:08 +Slot[7] 0200 311000 6213545000700405 ------------- 00 001878 000000000000 507700296895010016006213545000700405 507700296895 259527 220699 S +13:02:08 Slot [499] | NOT FINANCIAL TRANSACTION +13:02:20 Slot [2] | NOT FINANCIAL TRANSACTION +13:02:28 +Slot[464] 0200 010000 1888880000028506 ------------- 00 883088 000070000000 507700796572030090011888880000028506 507700796572 887973 668899 S +13:02:32 +Slot[492] 0200 011000 6213545000700405 ------------- 00 001879 000100000000 507700296896010016006213545000700405 507700296896 842469 220699 S +13:02:33 +Slot[470] 0200 301000 1888880000077271 ------------- 00 883092 000000000000 507700195532030010031888880000077271 507700195532 189372 668899 S +13:02:33 Slot [477] | NOT FINANCIAL TRANSACTION +13:02:35 Slot [495] | NOT FINANCIAL TRANSACTION +13:02:41 +Slot[18] 0200 011000 6213541000622988 ------------- 75 168765 000100000000 507700026196010002006213541000622988 507700026196 319988 220699 S +13:02:44 Slot [24] | NOT FINANCIAL TRANSACTION +13:02:47 Slot [14] | NOT FINANCIAL TRANSACTION +13:03:02 Slot [454] | NOT FINANCIAL TRANSACTION +13:03:12 Slot [466] | NOT FINANCIAL TRANSACTION +13:03:25 Slot [480] | NOT FINANCIAL TRANSACTION +13:03:39 +Slot[484] 0200 011000 6213545000700405 ------------- 00 001882 000015000000 507700296898010016006213545000700405 507700296898 102686 220699 S +13:03:40 Slot [488] | NOT FINANCIAL TRANSACTION +13:03:40 +Slot[22] 0200 011000 6213545000398663 ------------- 00 168767 000100000000 507700026198010002006213545000398663 507700026198 910738 220699 S +13:03:46 Slot [493] | NOT FINANCIAL TRANSACTION +13:03:50 Slot [3] | NOT FINANCIAL TRANSACTION +13:04:01 Slot [458] | NOT FINANCIAL TRANSACTION +13:04:11 +Slot[12] 0200 010000 1888880000028506 ------------- 00 883147 000070000000 507700796574030090011888880000028506 507700796574 862847 668899 S +13:04:12 Slot [0] | NOT FINANCIAL TRANSACTION +13:04:22 Slot [4] | NOT FINANCIAL TRANSACTION +13:04:33 Slot [16] | NOT FINANCIAL TRANSACTION +13:04:44 Slot [5] | NOT FINANCIAL TRANSACTION +13:04:48 Slot [21] | NOT FINANCIAL TRANSACTION +13:04:52 +Slot[1] 0200 013000 6688990105624207 ------------- 55 371198 000050000000 507702844982010078006688990105624207 507702844982 620138 621354 S +13:04:56 Slot [31] | NOT FINANCIAL TRANSACTION +13:05:12 Slot [8] | NOT FINANCIAL TRANSACTION +13:05:16 Slot [15] | NOT FINANCIAL TRANSACTION +13:05:23 Slot [496] | NOT FINANCIAL TRANSACTION +13:05:26 +Slot[26] 0200 013000 6688990105624207 ------------- 00 371309 000050000000 507702844984010078006688990105624207 507702844984 711995 621354 S +13:05:30 +Slot[23] 0200 010000 6213545001091507 ------------- 00 168769 000030000000 507700026200010002006213545001091507 507700026200 418441 220699 S +13:05:37 Slot [6] | NOT FINANCIAL TRANSACTION +13:05:46 +Slot[10] 0200 010000 1888880000028506 ------------- 00 883203 000070000000 507700796576030090011888880000028506 507700796576 292291 668899 S +13:05:50 Slot [9] | NOT FINANCIAL TRANSACTION +13:05:58 +Slot[46] 0200 011000 1808931300002035 ------------- 00 371413 000009000000 507703968449010112001808931300002035 507703968449 975815 621354 S +13:06:04 Slot [27] | NOT FINANCIAL TRANSACTION +13:06:15 Slot [11] | NOT FINANCIAL TRANSACTION +13:06:22 +Slot[25] 0200 301000 6213541000383458 ------------- 00 165349 000000000000 507713165349015290306213541000383458 507713165349 467574 198901 S +13:06:27 Slot [28] | NOT FINANCIAL TRANSACTION +13:06:42 Slot [30] | NOT FINANCIAL TRANSACTION +13:06:43 +Slot[494] 0200 311000 6213544000224367 ------------- 00 168771 000000000000 507700026202010002006213544000224367 507700026202 646505 220699 S +13:06:52 Slot [34] | NOT FINANCIAL TRANSACTION +13:06:53 Slot [56] | NOT FINANCIAL TRANSACTION +13:06:54 +Slot[20] 0200 011000 6213544000143575 ------------- 00 009719 000100000000 507700270520010015006213544000143575 507700270520 592874 220699 S +13:06:56 +Slot[42] 0200 011000 6213541000383458 ------------- 61 165354 000200000000 507713165354015290306213541000383458 507713165354 510029 198901 S +13:07:08 Slot [39] | NOT FINANCIAL TRANSACTION +13:07:14 +Slot[36] 0200 011000 6213541000383458 ------------- 00 165357 000100000000 507713165357015290306213541000383458 507713165357 484264 198901 S +13:07:19 Slot [52] | NOT FINANCIAL TRANSACTION +13:07:30 Slot [32] | NOT FINANCIAL TRANSACTION +13:07:32 +Slot[38] 0200 011000 6213544000224367 ------------- 00 168772 000030000000 507700026203010002006213544000224367 507700026203 419801 220699 S +13:07:33 Slot [41] | NOT FINANCIAL TRANSACTION +13:07:40 Slot [47] | NOT FINANCIAL TRANSACTION +13:07:51 Slot [44] | NOT FINANCIAL TRANSACTION +13:07:54 Slot [40] | NOT FINANCIAL TRANSACTION +13:08:01 Slot [13] | NOT FINANCIAL TRANSACTION +13:08:16 Slot [19] | NOT FINANCIAL TRANSACTION +13:08:26 Slot [57] | NOT FINANCIAL TRANSACTION +13:08:37 Slot [37] | NOT FINANCIAL TRANSACTION +13:08:53 Slot [54] | NOT FINANCIAL TRANSACTION +13:08:56 Slot [61] | NOT FINANCIAL TRANSACTION +13:09:05 Slot [59] | NOT FINANCIAL TRANSACTION +13:09:10 +Slot[58] 0200 311000 6213545000440333 ------------- 00 168774 000000000000 507700026205010002006213545000440333 507700026205 672761 220699 S +13:09:19 Slot [51] | NOT FINANCIAL TRANSACTION +13:09:35 Slot [55] | NOT FINANCIAL TRANSACTION +13:09:46 Slot [29] | NOT FINANCIAL TRANSACTION +13:09:56 Slot [17] | NOT FINANCIAL TRANSACTION +13:09:58 Slot [60] | NOT FINANCIAL TRANSACTION +13:10:07 Slot [72] | NOT FINANCIAL TRANSACTION +13:10:16 Slot [48] | NOT FINANCIAL TRANSACTION +13:10:17 Slot [63] | NOT FINANCIAL TRANSACTION +13:10:28 +Slot[35] 0200 010000 6688990107556506 ------------- 00 260230 000100000000 5077062602300361BLTB6688990107556506 507706260230 932297 180893 S +13:10:38 Slot [71] | NOT FINANCIAL TRANSACTION +13:10:41 +Slot[67] 0200 010000 6688990104222201 ------------- 00 372328 000010000000 507702577025050040006688990104222201 507702577025 611086 621354 S +13:10:48 Slot [53] | NOT FINANCIAL TRANSACTION +13:11:00 Slot [80] | NOT FINANCIAL TRANSACTION +13:11:04 Slot [79] | NOT FINANCIAL TRANSACTION +13:11:16 Slot [49] | NOT FINANCIAL TRANSACTION +13:11:22 Slot [83] | NOT FINANCIAL TRANSACTION +13:11:23 +Slot[85] 0200 010000 6688990107556506 ------------- 00 260236 000100000000 5077062602360361BLTB6688990107556506 507706260236 236277 180893 S +13:11:38 Slot [45] | NOT FINANCIAL TRANSACTION +13:11:48 Slot [78] | NOT FINANCIAL TRANSACTION +13:12:02 Slot [75] | NOT FINANCIAL TRANSACTION +13:12:04 Slot [73] | NOT FINANCIAL TRANSACTION +13:12:15 Slot [68] | NOT FINANCIAL TRANSACTION +13:12:26 Slot [43] | NOT FINANCIAL TRANSACTION +13:12:33 Slot [91] | NOT FINANCIAL TRANSACTION +13:12:37 Slot [77] | NOT FINANCIAL TRANSACTION +13:12:38 +Slot[76] 0200 010000 6213544002253059 ------------- 00 240375 000007000000 507700430267010021006213544002253059 507700430267 223492 220699 S +13:12:53 Slot [89] | NOT FINANCIAL TRANSACTION +13:13:03 Slot [65] | NOT FINANCIAL TRANSACTION +13:13:04 Slot [88] | NOT FINANCIAL TRANSACTION +13:13:14 Slot [94] | NOT FINANCIAL TRANSACTION +13:13:27 +Slot[86] 0200 010000 1808931700001181 ------------- 00 372884 000010000000 507705165116010128001808931700001181 507705165116 021589 621354 S +13:13:29 +Slot[66] 0200 301000 6688990103297402 ------------- 00 260245 031806123226 5077062602450264UDXH6688990103297402 507706260245 969294 180893 S +13:13:40 Slot [93] | NOT FINANCIAL TRANSACTION +13:13:55 Slot [33] | NOT FINANCIAL TRANSACTION +13:14:06 Slot [74] | NOT FINANCIAL TRANSACTION +13:14:06 Slot [101] | NOT FINANCIAL TRANSACTION +13:14:07 +Slot[103] 0200 300000 6213548000248607 ------------- 00 883464 000000000000 507700976973034070026213548000248607 507700976973 301082 668899 S +13:14:17 Slot [95] | NOT FINANCIAL TRANSACTION +13:14:32 Slot [105] | NOT FINANCIAL TRANSACTION +13:14:43 Slot [102] | NOT FINANCIAL TRANSACTION +13:14:54 Slot [70] | NOT FINANCIAL TRANSACTION +13:15:05 Slot [50] | NOT FINANCIAL TRANSACTION +13:15:08 Slot [92] | NOT FINANCIAL TRANSACTION +13:15:15 Slot [107] | NOT FINANCIAL TRANSACTION +13:15:16 Slot [81] | NOT FINANCIAL TRANSACTION +13:15:31 Slot [100] | NOT FINANCIAL TRANSACTION +13:15:42 Slot [114] | NOT FINANCIAL TRANSACTION +13:15:49 +Slot[104] 0200 011000 6213545000025217 ------------- 00 165475 000050000000 507713165475125290016213545000025217 507713165475 201182 198901 S +13:15:52 +Slot[108] 0200 011000 1808930600023014 ------------- 00 373396 000100000000 507704375848030036001808930600023014 507704375848 907560 621354 S +13:15:58 Slot [82] | NOT FINANCIAL TRANSACTION +13:16:10 Slot [87] | NOT FINANCIAL TRANSACTION +13:16:13 Slot [69] | NOT FINANCIAL TRANSACTION +13:16:19 +Slot[122] 0200 301000 6213544000268661 ------------- 00 260249 031806152226 5077062602490401XSBR6213544000268661 507706260249 373965 180893 S +13:16:31 Slot [117] | NOT FINANCIAL TRANSACTION +13:16:33 +Slot[119] 0200 301000 6213545000025217 ------------- 00 165488 000000000000 507713165488125290016213545000025217 507713165488 695115 198901 S +13:16:42 Slot [110] | NOT FINANCIAL TRANSACTION +13:16:53 Slot [115] | NOT FINANCIAL TRANSACTION +13:17:08 +Slot[96] 0200 011000 1808930200045995 ------------- 00 373649 000010000000 507703643906160017001808930200045995 507703643906 838664 621354 S +13:17:12 Slot [62] | NOT FINANCIAL TRANSACTION +13:17:19 +Slot[136] 0200 011000 6688990103846208 ------------- 00 165497 000100000000 507713165497125290016688990103846208 507713165497 365149 198901 S +13:17:20 +Slot[64] 0200 301000 1808931000007862 ------------- 00 373687 000000000000 507704826462110006001808931000007862 507704826462 336849 621354 S +13:17:25 Slot [97] | NOT FINANCIAL TRANSACTION +13:17:33 Slot [124] | NOT FINANCIAL TRANSACTION +13:17:36 Slot [113] | NOT FINANCIAL TRANSACTION +13:17:47 Slot [98] | NOT FINANCIAL TRANSACTION +13:17:47 +Slot[84] 0200 011000 6688990103846208 ------------- 00 165506 000100000000 507713165506125290016688990103846208 507713165506 207512 198901 S +13:17:58 Slot [121] | NOT FINANCIAL TRANSACTION +13:18:05 +Slot[90] 0200 010000 6688990102783709 ------------- 00 373850 000010000000 507703968487010112006688990102783709 507703968487 844782 621354 S +13:18:09 Slot [134] | NOT FINANCIAL TRANSACTION +13:18:14 Slot [159] | NOT FINANCIAL TRANSACTION +13:18:20 Slot [112] | NOT FINANCIAL TRANSACTION +13:18:29 Slot [99] | NOT FINANCIAL TRANSACTION +13:18:31 Slot [144] | NOT FINANCIAL TRANSACTION +13:18:44 Slot [111] | NOT FINANCIAL TRANSACTION +13:18:46 +Slot[142] 0200 012000 1808931000007862 ------------- 42 373991 000100000000 507704826465110006001808931000007862 507704826465 444084 621354 S +13:18:53 +Slot[148] 0200 011000 1808930600042063 ------------- 00 374001 000050000000 507704333393030032001808930600042063 507704333393 304856 621354 S +13:18:59 Slot [149] | NOT FINANCIAL TRANSACTION +13:19:02 +Slot[128] 0200 311000 6213545001018492 ------------- 00 223459 000000000000 507700118580010011006213545001018492 507700118580 755781 220699 S +13:19:13 Slot [126] | NOT FINANCIAL TRANSACTION +13:19:16 Slot [155] | NOT FINANCIAL TRANSACTION +13:19:25 Slot [140] | NOT FINANCIAL TRANSACTION +13:19:29 +Slot[131] 0200 011000 6213545001018492 ------------- 00 223460 000040000000 507700118581010011006213545001018492 507700118581 739384 220699 S +13:19:36 Slot [109] | NOT FINANCIAL TRANSACTION +13:19:52 Slot [127] | NOT FINANCIAL TRANSACTION +13:20:03 Slot [139] | NOT FINANCIAL TRANSACTION +13:20:14 Slot [146] | NOT FINANCIAL TRANSACTION +13:20:16 Slot [151] | NOT FINANCIAL TRANSACTION +13:20:18 Slot [150] | NOT FINANCIAL TRANSACTION +13:20:30 Slot [123] | NOT FINANCIAL TRANSACTION +13:20:41 Slot [118] | NOT FINANCIAL TRANSACTION +13:20:52 Slot [154] | NOT FINANCIAL TRANSACTION +13:21:02 +Slot[138] 0200 011000 6688990060026448 ------------- 00 374476 000010000000 507704153113200010006688990060026448 507704153113 464662 621354 S +13:21:03 +Slot[157] 0200 011000 6213541000660921 ------------- 00 078877 000030000000 507700132800030001006213541000660921 507700132800 631800 220699 S +13:21:06 Slot [132] | NOT FINANCIAL TRANSACTION +13:21:11 +Slot[135] 0200 010000 6213541000178031 ------------- 00 260260 000010000000 5077062602600117KMBR6213541000178031 507706260260 002960 180893 S +13:21:20 Slot [171] | NOT FINANCIAL TRANSACTION +13:21:23 Slot [152] | NOT FINANCIAL TRANSACTION +13:21:34 Slot [167] | NOT FINANCIAL TRANSACTION +13:21:45 Slot [120] | NOT FINANCIAL TRANSACTION +13:21:57 Slot [116] | NOT FINANCIAL TRANSACTION +13:22:03 +Slot[156] 0200 311000 6213544002275037 ------------- 00 254558 000000000000 507700094239010009006213544002275037 507700094239 860641 220699 S +13:22:07 Slot [129] | NOT FINANCIAL TRANSACTION +13:22:07 Slot [168] | NOT FINANCIAL TRANSACTION +13:22:14 +Slot[130] 0200 011000 6688990060026760 ------------- 00 374747 000050000000 507704153115200010006688990060026760 507704153115 375065 621354 S +13:22:18 Slot [141] | NOT FINANCIAL TRANSACTION +13:22:22 Slot [175] | NOT FINANCIAL TRANSACTION +13:22:25 +Slot[172] 0200 301000 2206990000095935 ------------- 55 374781 000000000000 507704226604050046002206990000095935 507704226604 415364 621354 S +13:22:34 Slot [166] | NOT FINANCIAL TRANSACTION +13:22:34 Slot [160] | NOT FINANCIAL TRANSACTION +13:22:35 +Slot[169] 0200 011000 6213544001132296 ------------- 00 168776 000100000000 507700026207010002006213544001132296 507700026207 537941 220699 S +13:22:36 +Slot[174] 0200 301000 2206990000095935 ------------- 00 374824 000000000000 507704226605050046002206990000095935 507704226605 034334 621354 S +13:22:50 Slot [147] | NOT FINANCIAL TRANSACTION +13:22:59 +Slot[164] 0200 011000 6213544002275037 ------------- 00 254559 000020000000 507700094240010009006213544002275037 507700094240 015466 220699 S +13:23:05 Slot [133] | NOT FINANCIAL TRANSACTION +13:23:11 +Slot[178] 0200 011000 2206990000095935 ------------- 51 374963 000020000000 507704226607050046002206990000095935 507704226607 308714 621354 S +13:23:21 Slot [195] | NOT FINANCIAL TRANSACTION +13:23:24 Slot [170] | NOT FINANCIAL TRANSACTION +13:23:31 Slot [189] | NOT FINANCIAL TRANSACTION +13:23:33 +Slot[183] 0200 301000 6688990060026760 ------------- 00 375054 000000000000 507704153116200010006688990060026760 507704153116 392573 621354 S +13:23:41 Slot [125] | NOT FINANCIAL TRANSACTION +13:23:48 +Slot[191] 0200 010000 6213548000248607 ------------- 51 883813 000030000000 507700976981034070026213548000248607 507700976981 457459 668899 S +13:23:52 Slot [161] | NOT FINANCIAL TRANSACTION +13:24:03 +Slot[143] 0200 010000 6688990601049008 ------------- 00 375165 000010000000 507704681746180007006688990601049008 507704681746 882107 621354 S +13:24:08 Slot [181] | NOT FINANCIAL TRANSACTION +13:24:18 Slot [204] | NOT FINANCIAL TRANSACTION +13:24:20 +Slot[202] 0200 012000 6688990060013206 ------------- 55 375240 000012000000 507704201485190007006688990060013206 507704201485 863016 621354 S +13:24:26 Slot [158] | NOT FINANCIAL TRANSACTION +13:24:35 Slot [197] | NOT FINANCIAL TRANSACTION +13:24:45 Slot [182] | NOT FINANCIAL TRANSACTION +13:24:52 +Slot[198] 0200 012000 6688990060013206 ------------- 00 375389 000012000000 507704201487190007006688990060013206 507704201487 317858 621354 S +13:24:55 +Slot[200] 0200 011000 2206990000095935 ------------- 00 375397 000015000000 507704226612050046002206990000095935 507704226612 278723 621354 S +13:25:01 Slot [213] | NOT FINANCIAL TRANSACTION +13:25:02 +Slot[177] 0200 011000 6213544001191409 ------------- 55 165609 000050000000 507713165609000022136213544001191409 507713165609 246751 198901 S +13:25:11 +Slot[106] 0200 011000 6213544001191409 ------------- 55 165612 000050000000 507713165612000022136213544001191409 507713165612 157028 198901 S +13:25:15 +Slot[193] 0200 011000 1808931300010764 ------------- 00 375468 000100000000 507702720508010066001808931300010764 507702720508 264196 621354 S +13:25:16 Slot [165] | NOT FINANCIAL TRANSACTION +13:25:24 Slot [210] | NOT FINANCIAL TRANSACTION +13:25:28 +Slot[153] 0420 012000 6688990060013206 ------------- 00 375389 000012000000 507704201487190007006688990060013206 507704201487 -------- 621354 S +13:25:28 Slot [163] | NOT FINANCIAL TRANSACTION +13:25:37 +Slot[211] 0200 010000 6213548000248607 ------------- 51 883896 000030000000 507700976983034070026213548000248607 507700976983 920258 668899 S +13:25:45 +Slot[187] 0200 011000 6213544001191409 ------------- 75 165623 000050000000 507713165623000022136213544001191409 507713165623 670206 198901 S +13:25:47 +Slot[162] 0200 011000 1808930200025823 ------------- 00 375581 000020000000 507702902587010083001808930200025823 507702902587 784681 621354 S +13:25:49 Slot [206] | NOT FINANCIAL TRANSACTION +13:25:55 +Slot[145] 0200 011000 2206990000095935 ------------- 00 375629 000004000000 507704226614050046002206990000095935 507704226614 171125 621354 S +13:26:00 Slot [217] | NOT FINANCIAL TRANSACTION +13:26:05 +Slot[221] 0200 301000 6213545000516926 ------------- 00 260276 031806250626 5077062602760107HSTH6213545000516926 507706260276 083696 180893 S +13:26:11 +Slot[205] 0200 301000 6688990106692203 ------------- 00 375681 000000000000 507703968512010112006688990106692203 507703968512 290063 621354 S +13:26:14 +Slot[194] 0200 011000 6213545000819973 ------------- 00 168778 000030000000 507700026209010002006213545000819973 507700026209 762745 220699 S +13:26:15 Slot [196] | NOT FINANCIAL TRANSACTION +13:26:20 +Slot[180] 0200 011000 6213544001457446 ------------- 00 165634 000100000000 507713165634015290236213544001457446 507713165634 810328 198901 S +13:26:26 Slot [214] | NOT FINANCIAL TRANSACTION +13:26:30 Slot [176] | NOT FINANCIAL TRANSACTION +13:26:41 +Slot[226] 0200 010000 6213545000516926 ------------- 61 260279 000200000000 5077062602790107HSTH6213545000516926 507706260279 054836 180893 S +13:26:42 +Slot[222] 0420 012000 6688990060013206 0000000000000 00 375389 000012000000 507704201487190007006688990060013206 507704201487 317943 621354 S +13:26:49 +Slot[190] 0200 311000 6213544000437118 ------------- 00 013239 000000000000 507700200842090001006213544000437118 507700200842 757342 220699 S +13:26:51 +Slot[184] 0200 301000 1808930200025823 ------------- 00 375823 000000000000 507702902588010083001808930200025823 507702902588 143601 621354 S +13:26:58 Slot [225] | NOT FINANCIAL TRANSACTION +13:27:08 Slot [137] | NOT FINANCIAL TRANSACTION +13:27:17 +Slot[173] 0200 011000 6213544001040853 ------------- 00 165639 000100000000 507713165639015290236213544001040853 507713165639 732426 198901 S +13:27:23 Slot [218] | NOT FINANCIAL TRANSACTION +13:27:26 +Slot[224] 0200 011000 6688990060013206 ------------- 51 375989 000012000000 507704952145190008006688990060013206 507704952145 952684 621354 S +13:27:32 Slot [208] | NOT FINANCIAL TRANSACTION +13:27:33 Slot [215] | NOT FINANCIAL TRANSACTION +13:27:34 Slot [223] | NOT FINANCIAL TRANSACTION +13:27:37 +Slot[207] 0200 010000 6213545000516926 ------------- 00 260282 000100000000 5077062602820107HSTH6213545000516926 507706260282 415238 180893 S +13:27:41 +Slot[231] 0200 011000 6213545000540223 ------------- 61 165646 000200000000 507713165646015290316213545000540223 507713165646 283430 198901 S +13:27:49 Slot [192] | NOT FINANCIAL TRANSACTION +13:28:05 Slot [188] | NOT FINANCIAL TRANSACTION +13:28:12 +Slot[199] 0200 011000 6688990060013206 ------------- 51 376171 000010000000 507704952147190008006688990060013206 507704952147 418078 621354 S +13:28:15 +Slot[185] 0200 010000 6688990060026760 ------------- 00 376182 000010000000 507704153127200010006688990060026760 507704153127 087493 621354 S +13:28:16 Slot [220] | NOT FINANCIAL TRANSACTION +13:28:25 +Slot[229] 0200 010000 6213545000516926 ------------- 00 260287 000100000000 5077062602870107HSTH6213545000516926 507706260287 106831 180893 S +13:28:34 Slot [179] | NOT FINANCIAL TRANSACTION +13:28:37 Slot [186] | NOT FINANCIAL TRANSACTION +13:28:49 Slot [230] | NOT FINANCIAL TRANSACTION +13:28:53 +Slot[212] 0200 012000 1808930600008296 ------------- 42 376299 000100000000 507704420534030041001808930600008296 507704420534 461023 621354 S +13:28:54 +Slot[236] 0200 302000 6213544002184528 ------------- 00 884055 000000000000 507701214827030200136213544002184528 507701214827 555911 668899 S +13:28:56 +Slot[227] 0200 301000 6688990060013206 ------------- 00 376300 000000000000 507704952148190008006688990060013206 507704952148 573818 621354 S +13:29:00 +Slot[232] 0200 011000 6213545000459978 ------------- 61 165660 000200000000 507713165660015290316213545000459978 507713165660 586663 198901 S +13:29:04 Slot [216] | NOT FINANCIAL TRANSACTION +13:29:09 +Slot[219] 0200 302000 6213544002184528 ------------- 00 884067 000000000000 507701214828030200136213544002184528 507701214828 746015 668899 S +13:29:10 +Slot[234] 0200 010000 6213544000006764 ------------- 00 884069 000080000000 507701008258034030016213544000006764 507701008258 943582 668899 S +13:29:15 Slot [235] | NOT FINANCIAL TRANSACTION +13:29:18 +Slot[239] 0200 301000 6213544000489572 ------------- 00 260292 031806282126 5077062602920107HSTH6213544000489572 507706260292 143007 180893 S +13:29:23 +Slot[250] 0200 302000 6213544002184528 ------------- 00 884078 000000000000 507701214829030200136213544002184528 507701214829 672038 668899 S +13:29:30 Slot [242] | NOT FINANCIAL TRANSACTION +13:29:36 Slot [228] | NOT FINANCIAL TRANSACTION +13:29:41 Slot [201] | NOT FINANCIAL TRANSACTION +13:29:52 Slot [252] | NOT FINANCIAL TRANSACTION +13:29:58 +Slot[238] 0200 302000 6213544001517850 ------------- 00 884110 000000000000 507701214831030200136213544001517850 507701214831 762869 668899 S +13:30:03 Slot [245] | NOT FINANCIAL TRANSACTION +13:30:09 +Slot[240] 0200 010000 6213544000489572 ------------- 00 260297 000100000000 5077062602970107HSTH6213544000489572 507706260297 091212 180893 S +13:30:10 +Slot[203] 0200 301000 6213545000540223 ------------- 00 165678 000000000000 507713165678015290316213545000540223 507713165678 290592 198901 S +13:30:16 +Slot[248] 0200 300000 6688990107237206 ------------- 55 376632 000000000000 507704153128200010006688990107237206 507704153128 906387 621354 S +13:30:16 Slot [253] | NOT FINANCIAL TRANSACTION +13:30:18 +Slot[258] 0200 302000 6213544001517850 ------------- 00 884121 000000000000 507701214832030200136213544001517850 507701214832 175212 668899 S +13:30:19 Slot [247] | NOT FINANCIAL TRANSACTION +13:30:30 Slot [243] | NOT FINANCIAL TRANSACTION +13:30:38 Slot [244] | NOT FINANCIAL TRANSACTION +13:30:41 Slot [256] | NOT FINANCIAL TRANSACTION +13:30:47 +Slot[260] 0200 300000 6688990107237206 ------------- 55 376733 000000000000 507704153129200010006688990107237206 507704153129 025526 621354 S +13:30:51 Slot [246] | NOT FINANCIAL TRANSACTION +13:30:58 +Slot[241] 0200 301000 6213545000459978 ------------- 00 165696 000000000000 507713165696015290316213545000459978 507713165696 091963 198901 S +13:31:01 Slot [273] | NOT FINANCIAL TRANSACTION +13:31:11 Slot [251] | NOT FINANCIAL TRANSACTION +13:31:17 +Slot[265] 0200 301000 6213541000423890 ------------- 00 260302 031806302026 5077062603020401XSBR6213541000423890 507706260302 842162 180893 S +13:31:31 +Slot[264] 0200 010000 1808930600008296 ------------- 00 376902 000100000000 507704420537030041001808930600008296 507704420537 085754 621354 S +13:31:37 Slot [249] | NOT FINANCIAL TRANSACTION +13:31:40 Slot [269] | NOT FINANCIAL TRANSACTION +13:31:50 Slot [268] | NOT FINANCIAL TRANSACTION +13:31:59 +Slot[209] 0200 301000 6213545000482343 ------------- 00 165710 000000000000 507713165710015290316213545000482343 507713165710 225315 198901 S +13:32:04 +Slot[279] 0200 012000 6213545000991384 ------------- 00 379395 000100000000 507700165617060001006213545000991384 507700165617 947830 220699 S +13:32:04 Slot [261] | NOT FINANCIAL TRANSACTION +13:32:15 Slot [233] | NOT FINANCIAL TRANSACTION +13:32:27 +Slot[266] 0200 011000 6213541000423890 ------------- 61 260306 000150000000 5077062603060401XSBR6213541000423890 507706260306 069130 180893 S +13:32:34 Slot [257] | NOT FINANCIAL TRANSACTION +13:32:35 +Slot[262] 0200 011000 6213545000482343 ------------- 00 165719 000100000000 507713165719015290316213545000482343 507713165719 737241 198901 S +13:32:37 Slot [270] | NOT FINANCIAL TRANSACTION +13:32:42 Slot [274] | NOT FINANCIAL TRANSACTION +13:32:48 Slot [284] | NOT FINANCIAL TRANSACTION +13:32:53 Slot [263] | NOT FINANCIAL TRANSACTION +13:32:59 Slot [280] | NOT FINANCIAL TRANSACTION +13:33:02 +Slot[267] 0200 010000 6213541000423890 ------------- 61 260308 000150000000 5077062603080401XSBR6213541000423890 507706260308 988398 180893 S +13:33:16 Slot [293] | NOT FINANCIAL TRANSACTION +13:33:19 +Slot[299] 0200 011000 6213545000482343 ------------- 00 165724 000050000000 507713165724015290316213545000482343 507713165724 990408 198901 S +13:33:20 +Slot[278] 0200 010000 6213541000423890 ------------- 00 260310 000100000000 5077062603100401XSBR6213541000423890 507706260310 411936 180893 S +13:33:28 +Slot[277] 0200 301000 6688990106454703 ------------- 00 260311 031806323026 5077062603110102SAPA6688990106454703 507706260311 740702 180893 S +13:33:37 Slot [287] | NOT FINANCIAL TRANSACTION +13:33:44 Slot [285] | NOT FINANCIAL TRANSACTION +13:33:52 Slot [304] | NOT FINANCIAL TRANSACTION +13:34:02 Slot [289] | NOT FINANCIAL TRANSACTION +13:34:05 +Slot[254] 0200 300000 6688990602931808 ------------- 91 376964 000000000000 507704161742200011006688990602931808 507704161742 290445 621354 S +13:34:07 +Slot[275] 0200 011000 6213545000482343 ------------- 00 165739 000020000000 507713165739015290316213545000482343 507713165739 290877 198901 S +13:34:12 Slot [276] | NOT FINANCIAL TRANSACTION +13:34:24 +Slot[309] 0200 011000 6688990106454703 ------------- 00 260315 000020000000 5077062603150102SAPA6688990106454703 507706260315 452757 180893 S +13:34:25 +Slot[281] 0200 011000 6688990040036236 ------------- 00 377553 000100000000 507703523557090009006688990040036236 507703523557 118168 621354 S +13:34:34 Slot [291] | NOT FINANCIAL TRANSACTION +13:34:46 Slot [259] | NOT FINANCIAL TRANSACTION +13:34:50 Slot [296] | NOT FINANCIAL TRANSACTION +13:34:57 +Slot[294] 0200 301000 1808931700008186 ------------- 00 377692 000000000000 507704794857070015001808931700008186 507704794857 769764 621354 S +13:35:07 +Slot[286] 0200 010000 6213544001039848 ------------- 00 260318 000100000000 5077062603180401XSBR6213544001039848 507706260318 417300 180893 S +13:35:11 Slot [303] | NOT FINANCIAL TRANSACTION +13:35:16 Slot [298] | NOT FINANCIAL TRANSACTION +13:35:17 Slot [282] | NOT FINANCIAL TRANSACTION +13:35:18 +Slot[271] 0200 011000 6213545000482335 ------------- 00 165758 000100000000 507713165758015290316213545000482335 507713165758 196163 198901 S +13:35:23 +Slot[317] 0200 011000 6688990040036236 ------------- 00 377792 000100000000 507703523559090009006688990040036236 507703523559 017976 621354 S +13:35:28 Slot [288] | NOT FINANCIAL TRANSACTION +13:35:42 Slot [307] | NOT FINANCIAL TRANSACTION +13:35:47 +Slot[237] 0200 010000 6213544000760691 ------------- 00 884185 000050000000 507701489013035150016213544000760691 507701489013 324256 668899 S +13:35:48 +Slot[314] 0200 010000 6213544001243937 ------------- 00 884187 000020000000 507701855417033110016213544001243937 507701855417 617756 668899 S +13:35:48 Slot [329] | NOT FINANCIAL TRANSACTION +13:35:53 Slot [315] | NOT FINANCIAL TRANSACTION +13:36:00 +Slot[313] 0200 011000 6213545000482335 ------------- 00 165771 000050000000 507713165771015290316213545000482335 507713165771 018358 198901 S +13:36:03 Slot [323] | NOT FINANCIAL TRANSACTION +13:36:14 Slot [331] | NOT FINANCIAL TRANSACTION +13:36:25 Slot [324] | NOT FINANCIAL TRANSACTION +13:36:36 Slot [283] | NOT FINANCIAL TRANSACTION +13:36:46 Slot [255] | NOT FINANCIAL TRANSACTION +13:36:49 +Slot[321] 0200 010000 6213544000760691 ------------- 51 884216 000010000000 507701489015035150016213544000760691 507701489015 621406 668899 S +13:36:50 Slot [318] | NOT FINANCIAL TRANSACTION +13:36:57 Slot [272] | NOT FINANCIAL TRANSACTION +13:37:01 +Slot[319] 0200 300000 6213544000760691 ------------- 00 884225 000000000000 507701489016035150016213544000760691 507701489016 508895 668899 S +13:37:12 Slot [326] | NOT FINANCIAL TRANSACTION +13:37:15 +Slot[295] 0200 010000 6213545000801682 ------------- 00 260327 000050000000 5077062603270114XKBR6213545000801682 507706260327 630549 180893 S +13:37:25 +Slot[340] 0200 301000 6213544000158953 ------------- 00 165792 000000000000 507713165792015290316213544000158953 507713165792 159507 198901 S +13:37:28 Slot [300] | NOT FINANCIAL TRANSACTION +13:37:34 Slot [302] | NOT FINANCIAL TRANSACTION +13:37:38 Slot [336] | NOT FINANCIAL TRANSACTION +13:37:39 +Slot[312] 0200 301000 6213541000710221 ------------- 00 884250 000000000000 507702104232030200226213541000710221 507702104232 991517 668899 S +13:37:40 +Slot[306] 0200 011000 6688990106692203 ------------- 00 378370 000030000000 507703968520010112006688990106692203 507703968520 138570 621354 S +13:37:49 Slot [355] | NOT FINANCIAL TRANSACTION +13:37:52 Slot [325] | NOT FINANCIAL TRANSACTION +13:38:07 +Slot[334] 0200 011000 6213544000158953 ------------- 00 165798 000100000000 507713165798015290316213544000158953 507713165798 172730 198901 S +13:38:08 +Slot[311] 0200 011000 1808930200044790 ------------- 00 378482 000035000000 507703936726010109001808930200044790 507703936726 122863 621354 S +13:38:11 Slot [316] | NOT FINANCIAL TRANSACTION +13:38:22 Slot [339] | NOT FINANCIAL TRANSACTION +13:38:32 Slot [301] | NOT FINANCIAL TRANSACTION +13:38:42 +Slot[310] 0200 011000 6213544000158953 ------------- 00 165807 000100000000 507713165807015290316213544000158953 507713165807 242315 198901 S +13:38:43 Slot [341] | NOT FINANCIAL TRANSACTION +13:38:53 +Slot[308] 0200 010000 6213545000750137 ------------- 00 260334 000100000000 5077062603340363CPSH6213545000750137 507706260334 640918 180893 S +13:38:54 Slot [349] | NOT FINANCIAL TRANSACTION +13:38:57 +Slot[297] 0200 011000 6688990106692203 ------------- 00 378734 000010000000 507703968522010112006688990106692203 507703968522 445339 621354 S +13:39:05 Slot [350] | NOT FINANCIAL TRANSACTION +13:39:17 Slot [332] | NOT FINANCIAL TRANSACTION +13:39:22 +Slot[338] 0200 011000 6688990107014803 ------------- 00 378860 000010000000 507703759667010091006688990107014803 507703759667 352821 621354 S +13:39:32 Slot [352] | NOT FINANCIAL TRANSACTION +13:39:41 +Slot[328] 0200 010000 6213545000750137 ------------- 00 260338 000100000000 5077062603380363CPSH6213545000750137 507706260338 327407 180893 S +13:39:48 +Slot[364] 0200 011000 6213545000555312 ------------- 00 165823 000100000000 507713165823015290316213545000555312 507713165823 037441 198901 S +13:39:53 Slot [345] | NOT FINANCIAL TRANSACTION +13:39:56 Slot [343] | NOT FINANCIAL TRANSACTION +13:40:03 Slot [305] | NOT FINANCIAL TRANSACTION +13:40:13 Slot [354] | NOT FINANCIAL TRANSACTION +13:40:16 Slot [337] | NOT FINANCIAL TRANSACTION +13:40:24 Slot [330] | NOT FINANCIAL TRANSACTION +13:40:31 +Slot[320] 0200 011000 1808931700022989 ------------- 51 379174 000050000000 507705238506010132001808931700022989 507705238506 978056 621354 S +13:40:36 Slot [335] | NOT FINANCIAL TRANSACTION +13:40:42 +Slot[342] 0200 010000 6213542000053240 ------------- 00 260343 000050000000 5077062603430101VTEB6213542000053240 507706260343 628642 180893 S +13:40:52 Slot [366] | NOT FINANCIAL TRANSACTION +13:40:58 +Slot[369] 0200 012000 6688990060015912 ------------- 00 379318 000050000000 507703174984040027006688990060015912 507703174984 452255 621354 S +13:40:58 Slot [347] | NOT FINANCIAL TRANSACTION +13:40:59 +Slot[290] 0200 010000 6213544000957263 ------------- 00 884338 000100000000 507701489018035150016213544000957263 507701489018 167026 668899 S +13:41:05 +Slot[292] 0200 011000 6688990104849904 ------------- 00 379352 000020000000 507703968524010112006688990104849904 507703968524 632293 621354 S +13:41:08 Slot [374] | NOT FINANCIAL TRANSACTION +13:41:19 Slot [333] | NOT FINANCIAL TRANSACTION +13:41:34 Slot [365] | NOT FINANCIAL TRANSACTION +13:41:51 +Slot[384] 0200 010000 6213544000957263 ------------- 00 884363 000100000000 507701489020035150016213544000957263 507701489020 107755 668899 S +13:41:52 Slot [327] | NOT FINANCIAL TRANSACTION +13:42:00 Slot [360] | NOT FINANCIAL TRANSACTION +13:42:07 Slot [353] | NOT FINANCIAL TRANSACTION +13:42:21 Slot [358] | NOT FINANCIAL TRANSACTION +13:42:32 Slot [373] | NOT FINANCIAL TRANSACTION +13:42:34 Slot [380] | NOT FINANCIAL TRANSACTION +13:42:36 +Slot[372] 0200 301000 6213548000310951 ------------- 00 165858 000000000000 507713165858015290316213548000310951 507713165858 093310 198901 S +13:42:40 +Slot[362] 0420 010000 6213545000958052 ------------- 00 872360 000100000000 507700157742030200066213545000958052 507700157742 -------- 668899 S +13:42:49 Slot [382] | NOT FINANCIAL TRANSACTION +13:43:00 Slot [322] | NOT FINANCIAL TRANSACTION +13:43:02 Slot [348] | NOT FINANCIAL TRANSACTION +13:43:05 +Slot[379] 0200 011000 6688990108407709 ------------- 00 379882 000100000000 507703226351040032006688990108407709 507703226351 728099 621354 S +13:43:11 Slot [361] | NOT FINANCIAL TRANSACTION +13:43:22 +Slot[377] 0200 301000 6688990106224106 ------------- 00 379963 000000000000 507703759674010091006688990106224106 507703759674 687186 621354 S +13:43:23 Slot [346] | NOT FINANCIAL TRANSACTION +13:43:38 Slot [378] | NOT FINANCIAL TRANSACTION +13:43:39 Slot [363] | NOT FINANCIAL TRANSACTION +13:43:53 +Slot[370] 0420 010000 6213545000958052 0000000000000 00 872360 000100000000 507700157742030200066213545000958052 507700157742 693901 668899 S +13:43:53 Slot [371] | NOT FINANCIAL TRANSACTION +13:44:01 +Slot[385] 0200 011000 6688990108407709 ------------- 00 380111 000100000000 507703226353040032006688990108407709 507703226353 414889 621354 S +13:44:04 Slot [344] | NOT FINANCIAL TRANSACTION +13:44:04 Slot [367] | NOT FINANCIAL TRANSACTION +13:44:04 +Slot[351] 0200 010000 6213541000701915 ------------- 00 884429 000100000000 507700555010030140036213541000701915 507700555010 645765 668899 S +13:44:15 Slot [397] | NOT FINANCIAL TRANSACTION +13:44:21 +Slot[386] 0200 301000 6213541000220189 ------------- 00 260359 031806432426 5077062603590301LPBX6213541000220189 507706260359 402099 180893 S +13:44:31 Slot [359] | NOT FINANCIAL TRANSACTION +13:44:41 Slot [410] | NOT FINANCIAL TRANSACTION +13:44:51 Slot [388] | NOT FINANCIAL TRANSACTION +13:44:57 +Slot[357] 0200 010000 6213541000220189 ------------- 61 260364 000200000000 5077062603640301LPBX6213541000220189 507706260364 461341 180893 S +13:45:06 Slot [414] | NOT FINANCIAL TRANSACTION +13:45:07 Slot [401] | NOT FINANCIAL TRANSACTION +13:45:11 +Slot[408] 0200 010000 6213544001483038 ------------- 00 884469 000100000000 507702415127030010116213544001483038 507702415127 409549 668899 S +13:45:17 Slot [413] | NOT FINANCIAL TRANSACTION +13:45:17 Slot [398] | NOT FINANCIAL TRANSACTION +13:45:18 +Slot[403] 0200 011000 6688990108408202 ------------- 00 380367 000100000000 507703226355040032006688990108408202 507703226355 524513 621354 S +13:45:19 +Slot[393] 0200 010000 6213541000220189 ------------- 00 260368 000100000000 5077062603680301LPBX6213541000220189 507706260368 046915 180893 S +13:45:27 +Slot[420] 0200 010000 1888880000028506 ------------- 00 884479 000100000000 507700801454030090021888880000028506 507700801454 150968 668899 S +13:45:34 Slot [392] | NOT FINANCIAL TRANSACTION +13:45:49 Slot [391] | NOT FINANCIAL TRANSACTION +13:46:00 Slot [416] | NOT FINANCIAL TRANSACTION +13:46:07 +Slot[418] 0200 010000 6213541000220189 ------------- 00 260374 000100000000 5077062603740301LPBX6213541000220189 507706260374 244930 180893 S +13:46:08 Slot [425] | NOT FINANCIAL TRANSACTION +13:46:14 +Slot[356] 0200 011000 6213541000065246 ------------- 00 165914 000100000000 507713165914015290136213541000065246 507713165914 604186 198901 S +13:46:15 Slot [383] | NOT FINANCIAL TRANSACTION +13:46:15 +Slot[411] 0200 301000 6688990108408202 ------------- 00 380571 000000000000 507703226356040032006688990108408202 507703226356 995500 621354 S +13:46:26 Slot [415] | NOT FINANCIAL TRANSACTION +13:46:37 Slot [387] | NOT FINANCIAL TRANSACTION +13:46:48 Slot [423] | NOT FINANCIAL TRANSACTION +13:46:52 +Slot[396] 0200 301000 6213541000335045 ------------- 00 260379 031806455326 5077062603790222XKPV6213541000335045 507706260379 689522 180893 S +13:46:53 +Slot[431] 0200 010000 6213541000220189 ------------- 00 260381 000100000000 5077062603810301LPBX6213541000220189 507706260381 732625 180893 S +13:46:54 +Slot[402] 0200 011000 6688990108408202 ------------- 00 380706 000080000000 507703226358040032006688990108408202 507703226358 587163 621354 S +13:47:01 +Slot[395] 0200 301000 6213541000065246 ------------- 00 165920 000000000000 507713165920015290136213541000065246 507713165920 706961 198901 S +13:47:04 Slot [429] | NOT FINANCIAL TRANSACTION +13:47:10 Slot [400] | NOT FINANCIAL TRANSACTION +13:47:15 Slot [381] | NOT FINANCIAL TRANSACTION +13:47:22 +Slot[417] 0200 301000 6213541000540743 ------------- 00 260385 031806462526 5077062603850222XKPV6213541000540743 507706260385 151023 180893 S +13:47:31 Slot [375] | NOT FINANCIAL TRANSACTION +13:47:34 Slot [399] | NOT FINANCIAL TRANSACTION +13:47:36 +Slot[428] 0200 010000 6213541000220189 ------------- 00 260387 000100000000 5077062603870301LPBX6213541000220189 507706260387 649035 180893 S +13:47:41 +Slot[438] 0200 011000 6688990040115543 ------------- 00 380869 000100000000 507705144651090018006688990040115543 507705144651 517673 621354 S +13:47:47 Slot [406] | NOT FINANCIAL TRANSACTION +13:47:56 +Slot[437] 0200 301000 6213541000335045 ------------- 00 260388 031806465826 5077062603880222XKPV6213541000335045 507706260388 906234 180893 S +13:47:57 +Slot[419] 0200 011000 6213543000087717 ------------- 00 165931 000010000000 507713165931015290186213543000087717 507713165931 747925 198901 S +13:48:08 Slot [404] | NOT FINANCIAL TRANSACTION +13:48:12 Slot [427] | NOT FINANCIAL TRANSACTION +13:48:18 Slot [445] | NOT FINANCIAL TRANSACTION +13:48:20 +Slot[422] 0200 011000 6688990108407709 ------------- 00 381032 000100000000 507703226360040032006688990108407709 507703226360 200453 621354 S +13:48:29 Slot [394] | NOT FINANCIAL TRANSACTION +13:48:34 +Slot[452] 0200 011000 6213541000220189 ------------- 00 260391 000030000000 5077062603910301LPBX6213541000220189 507706260391 660210 180893 S +13:48:35 +Slot[368] 0200 301000 6688990107237206 ------------- 75 381076 000000000000 507704153150200010006688990107237206 507704153150 072253 621354 S +13:48:37 +Slot[448] 0200 301000 6213541000540743 ------------- 00 260392 031806473926 5077062603920222XKPV6213541000540743 507706260392 086353 180893 S +13:48:41 +Slot[440] 0200 011000 6688990040115543 ------------- 55 381113 000100000000 507705144653090018006688990040115543 507705144653 796640 621354 S +13:48:50 Slot [442] | NOT FINANCIAL TRANSACTION +13:49:01 Slot [389] | NOT FINANCIAL TRANSACTION +13:49:04 +Slot[443] 0200 011000 1999990000006042 ------------- 51 381157 000010000000 507705213074010130001999990000006042 507705213074 043819 621354 S +13:49:06 +Slot[465] 0200 011000 6688990040115543 ------------- 00 381184 000100000000 507705144655090018006688990040115543 507705144655 232482 621354 S +13:49:07 +Slot[439] 0200 301000 6688990108407709 ------------- 00 381185 000000000000 507703226361040032006688990108407709 507703226361 446232 621354 S +13:49:14 Slot [424] | NOT FINANCIAL TRANSACTION +13:49:15 +Slot[435] 0200 011000 6688990602662205 ------------- 00 165951 000010000000 507713165951015290316688990602662205 507713165951 891755 198901 S +13:49:17 Slot [390] | NOT FINANCIAL TRANSACTION +13:49:28 Slot [376] | NOT FINANCIAL TRANSACTION +13:49:38 Slot [421] | NOT FINANCIAL TRANSACTION +13:49:48 Slot [433] | NOT FINANCIAL TRANSACTION +13:50:00 Slot [447] | NOT FINANCIAL TRANSACTION +13:50:10 Slot [430] | NOT FINANCIAL TRANSACTION +13:50:16 Slot [441] | NOT FINANCIAL TRANSACTION +13:50:17 Slot [460] | NOT FINANCIAL TRANSACTION +13:50:25 Slot [463] | NOT FINANCIAL TRANSACTION +13:50:37 Slot [456] | NOT FINANCIAL TRANSACTION +13:50:53 Slot [462] | NOT FINANCIAL TRANSACTION +13:50:59 +Slot[405] 0420 010000 2206990000121327 ------------- 00 880446 000084000000 507702031480030180032206990000121327 507702031480 -------- 668899 S +13:51:05 +Slot[434] 0200 010000 6213544000782927 ------------- 00 260407 000100000000 5077062604070502HPHM6213544000782927 507706260407 800178 180893 S +13:51:14 Slot [449] | NOT FINANCIAL TRANSACTION +13:51:18 Slot [407] | NOT FINANCIAL TRANSACTION +13:51:27 Slot [412] | NOT FINANCIAL TRANSACTION +13:51:43 +Slot[475] 0200 010000 6213541000378649 ------------- 00 260411 000010000000 5077062604110102SAPA6213541000378649 507706260411 141441 180893 S +13:51:44 +Slot[409] 0200 301000 6213545000294920 ------------- 00 260413 031806504726 5077062604130363CPSH6213545000294920 507706260413 954265 180893 S +13:51:47 +Slot[469] 0200 010000 6213544000782927 ------------- 00 260414 000100000000 5077062604140502HPHM6213544000782927 507706260414 325378 180893 S +13:51:53 Slot [457] | NOT FINANCIAL TRANSACTION +13:51:57 Slot [482] | NOT FINANCIAL TRANSACTION +13:52:09 Slot [489] | NOT FINANCIAL TRANSACTION +13:52:11 +Slot[479] 0200 010000 6213545000294920 ------------- 00 260418 000100000000 5077062604180363CPSH6213545000294920 507706260418 275403 180893 S +13:52:20 Slot [444] | NOT FINANCIAL TRANSACTION +13:52:23 Slot [450] | NOT FINANCIAL TRANSACTION +13:52:34 Slot [478] | NOT FINANCIAL TRANSACTION +13:52:35 Slot [467] | NOT FINANCIAL TRANSACTION +13:52:50 Slot [451] | NOT FINANCIAL TRANSACTION +13:53:00 +Slot[459] 0200 010000 6213545000294920 ------------- 00 260422 000100000000 5077062604220363CPSH6213545000294920 507706260422 625933 180893 S +13:53:09 +Slot[490] 0200 301000 1808930100005750 ------------- 00 381996 000000000000 507704011759010117001808930100005750 507704011759 644850 621354 S +13:53:17 Slot [483] | NOT FINANCIAL TRANSACTION +13:53:22 Slot [474] | NOT FINANCIAL TRANSACTION +13:53:28 Slot [472] | NOT FINANCIAL TRANSACTION +13:53:39 Slot [453] | NOT FINANCIAL TRANSACTION +13:53:52 +Slot[432] 0200 010000 6213545000076947 ------------- 00 260426 000100000000 5077062604260112CPBR6213545000076947 507706260426 269385 180893 S +13:54:07 +Slot[455] 0200 010000 1808930100005750 ------------- 00 382164 000030000000 507704011761010117001808930100005750 507704011761 943350 621354 S +13:54:13 Slot [487] | NOT FINANCIAL TRANSACTION +13:54:24 Slot [481] | NOT FINANCIAL TRANSACTION +13:54:24 Slot [468] | NOT FINANCIAL TRANSACTION +13:54:25 Slot [485] | NOT FINANCIAL TRANSACTION +13:54:26 +Slot[461] 0200 300000 2206990000097337 ------------- 00 382243 000000000000 507703047281010084002206990000097337 507703047281 653321 621354 S +13:54:35 +Slot[426] 0200 010000 6213545000873749 ------------- 51 260430 000100000000 5077062604300363CPSH6213545000873749 507706260430 179473 180893 S +13:54:38 +Slot[498] 0200 010000 6688990602691204 ------------- 00 260431 000100000000 5077062604310369SLVL6688990602691204 507706260431 688932 180893 S +13:54:50 Slot [455] | NOT FINANCIAL TRANSACTION +13:55:01 Slot [446] | NOT FINANCIAL TRANSACTION +13:55:13 Slot [450] | NOT FINANCIAL TRANSACTION +13:55:17 Slot [471] | NOT FINANCIAL TRANSACTION +13:55:26 Slot [491] | NOT FINANCIAL TRANSACTION +13:55:28 Slot [436] | NOT FINANCIAL TRANSACTION +13:55:41 +Slot[486] 0200 010000 6213545000873749 ------------- 00 260436 000050000000 5077062604360363CPSH6213545000873749 507706260436 348024 180893 S +13:55:55 +Slot[476] 0200 010000 6688990700188707 ------------- 00 382537 000100000000 507704153152200010006688990700188707 507704153152 413441 621354 S +13:55:55 Slot [497] | NOT FINANCIAL TRANSACTION +13:56:12 Slot [473] | NOT FINANCIAL TRANSACTION +13:56:18 +Slot[7] 0200 010000 6688990602691204 ------------- 64 260440 000200000000 5077062604400369SLVL6688990602691204 507706260440 408066 180893 S +13:56:27 Slot [2] | NOT FINANCIAL TRANSACTION +13:56:28 Slot [499] | NOT FINANCIAL TRANSACTION +13:56:37 Slot [464] | NOT FINANCIAL TRANSACTION +13:56:53 Slot [492] | NOT FINANCIAL TRANSACTION +13:57:09 Slot [470] | NOT FINANCIAL TRANSACTION +13:57:20 Slot [495] | NOT FINANCIAL TRANSACTION +13:57:21 +Slot[477] 0200 011000 6213545000873749 ------------- 00 260445 000040000000 5077062604450363CPSH6213545000873749 507706260445 714622 180893 S +13:57:25 +Slot[18] 0200 011000 6688990700188707 ------------- 00 382878 000100000000 507704153154200010006688990700188707 507704153154 241922 621354 S +13:57:30 Slot [24] | NOT FINANCIAL TRANSACTION +13:57:34 Slot [14] | NOT FINANCIAL TRANSACTION +13:57:36 Slot [454] | NOT FINANCIAL TRANSACTION +13:57:50 +Slot[466] 0200 301000 6688990105520900 ------------- 00 382982 000000000000 507703680702010088006688990105520900 507703680702 573476 621354 S +13:57:52 Slot [480] | NOT FINANCIAL TRANSACTION +13:58:07 Slot [484] | NOT FINANCIAL TRANSACTION +13:58:18 Slot [488] | NOT FINANCIAL TRANSACTION +13:58:29 Slot [22] | NOT FINANCIAL TRANSACTION +13:58:32 Slot [493] | NOT FINANCIAL TRANSACTION +13:58:48 +Slot[458] 0200 011000 6688990105520900 ------------- 00 383202 000070000000 507703680704010088006688990105520900 507703680704 756298 621354 S +13:58:49 +Slot[3] 0200 011000 1808930200036390 ------------- 00 383188 000010000000 507703795301010095001808930200036390 507703795301 301113 621354 S +13:58:50 Slot [12] | NOT FINANCIAL TRANSACTION +13:59:01 Slot [0] | NOT FINANCIAL TRANSACTION +13:59:12 Slot [4] | NOT FINANCIAL TRANSACTION +13:59:18 +Slot[16] 0200 011000 6688990700188707 ------------- 00 383309 000100000000 507704153156200010006688990700188707 507704153156 485533 621354 S +13:59:23 Slot [5] | NOT FINANCIAL TRANSACTION +13:59:34 Slot [1] | NOT FINANCIAL TRANSACTION +13:59:34 Slot [21] | NOT FINANCIAL TRANSACTION +13:59:45 Slot [31] | NOT FINANCIAL TRANSACTION +13:59:56 Slot [8] | NOT FINANCIAL TRANSACTION +14:00:06 Slot [15] | NOT FINANCIAL TRANSACTION +14:00:17 Slot [496] | NOT FINANCIAL TRANSACTION +14:00:19 Slot [26] | NOT FINANCIAL TRANSACTION +14:00:33 +Slot[23] 0200 301000 6213545000438121 ------------- 00 166099 000000000000 507714166099015290316213545000438121 507714166099 762365 198901 S +14:00:34 Slot [10] | NOT FINANCIAL TRANSACTION +14:00:34 +Slot[6] 0200 011000 6688990700188707 ------------- 00 383595 000100000000 507704153158200010006688990700188707 507704153158 228971 621354 S +14:00:36 Slot [9] | NOT FINANCIAL TRANSACTION +14:00:43 +Slot[46] 0200 011000 6213544000641313 ------------- 00 166105 000050000000 507714166105205290016213544000641313 507714166105 900026 198901 S +14:00:45 Slot [27] | NOT FINANCIAL TRANSACTION +14:00:55 Slot [11] | NOT FINANCIAL TRANSACTION +14:01:03 +Slot[25] 0200 010000 6213544001781944 ------------- 00 260463 000050000000 5077072604630486HPXK6213544001781944 507707260463 986450 180893 S +14:01:16 Slot [28] | NOT FINANCIAL TRANSACTION +14:01:27 Slot [30] | NOT FINANCIAL TRANSACTION +14:01:38 Slot [494] | NOT FINANCIAL TRANSACTION +14:01:39 Slot [56] | NOT FINANCIAL TRANSACTION +14:01:42 +Slot[34] 0200 011000 6213545000438121 ------------- 61 166117 000200000000 507714166117015290316213545000438121 507714166117 262802 198901 S +14:01:54 Slot [20] | NOT FINANCIAL TRANSACTION +14:02:05 Slot [42] | NOT FINANCIAL TRANSACTION +14:02:16 Slot [36] | NOT FINANCIAL TRANSACTION +14:02:22 +Slot[39] 0200 300000 6688990040003418 ------------- 00 383978 000000000000 507704153159200010006688990040003418 507704153159 502298 621354 S +14:02:31 Slot [32] | NOT FINANCIAL TRANSACTION +14:02:34 Slot [38] | NOT FINANCIAL TRANSACTION +14:02:37 +Slot[52] 0200 011000 6688990107437707 ------------- 00 166126 000100000000 507714166126205290016688990107437707 507714166126 126723 198901 S +14:02:40 +Slot[41] 0200 011000 6213545000438121 ------------- 61 166127 000200000000 507714166127015290316213545000438121 507714166127 276880 198901 S +14:02:40 Slot [47] | NOT FINANCIAL TRANSACTION +14:02:42 Slot [44] | NOT FINANCIAL TRANSACTION +14:02:53 Slot [40] | NOT FINANCIAL TRANSACTION +14:03:03 Slot [13] | NOT FINANCIAL TRANSACTION +14:03:15 Slot [57] | NOT FINANCIAL TRANSACTION +14:03:17 +Slot[19] 0200 301000 6213545000438121 ------------- 00 166133 000000000000 507714166133015290316213545000438121 507714166133 786755 198901 S +14:03:26 +Slot[37] 0200 301000 6213541000540743 ------------- 00 260471 031807022926 5077072604710222XKPV6213541000540743 507707260471 721217 180893 S +14:03:31 +Slot[54] 0200 011000 6688990040126607 ------------- 00 260472 000025000000 5077072604720369SLVL6688990040126607 507707260472 289576 180893 S +14:03:42 Slot [59] | NOT FINANCIAL TRANSACTION +14:03:42 Slot [61] | NOT FINANCIAL TRANSACTION +14:03:49 +Slot[58] 0200 011000 6688990040072892 ------------- 00 384329 000010000000 507703968571010112006688990040072892 507703968571 247271 621354 S +14:03:53 Slot [55] | NOT FINANCIAL TRANSACTION +14:03:56 +Slot[51] 0200 010000 6688990040003418 ------------- 00 384358 000020000000 507704153161200010006688990040003418 507704153161 766127 621354 S +14:04:04 +Slot[29] 0200 011000 6213545000438121 ------------- 00 166145 000100000000 507714166145015290316213545000438121 507714166145 298647 198901 S +14:04:04 Slot [17] | NOT FINANCIAL TRANSACTION +14:04:15 Slot [60] | NOT FINANCIAL TRANSACTION +14:04:25 Slot [72] | NOT FINANCIAL TRANSACTION +14:04:31 +Slot[48] 0200 301000 1808930500007588 ------------- 00 885198 000000000000 507701565182036150011808930500007588 507701565182 734815 668899 S +14:04:38 +Slot[63] 0200 010000 6213544002174933 ------------- 00 885202 000100000000 507701972038030120036213544002174933 507701972038 556546 668899 S +14:04:41 Slot [71] | NOT FINANCIAL TRANSACTION +14:04:44 +Slot[35] 0200 011000 6213545000438121 ------------- 00 166155 000100000000 507714166155015290316213545000438121 507714166155 910927 198901 S +14:04:44 Slot [67] | NOT FINANCIAL TRANSACTION +14:04:53 Slot [53] | NOT FINANCIAL TRANSACTION +14:05:06 +Slot[80] 0200 010000 1808930500007588 ------------- 00 885218 000010000000 507701565183036150011808930500007588 507701565183 305436 668899 S +14:05:11 Slot [49] | NOT FINANCIAL TRANSACTION +14:05:13 +Slot[79] 0200 011000 6213545001062557 ------------- 00 260478 000020000000 5077072604780322LNTS6213545001062557 507707260478 962982 180893 S +14:05:16 +Slot[83] 0200 010000 6213541000576390 ------------- 00 260480 000100000000 5077072604800401XSBR6213541000576390 507707260480 595841 180893 S +14:05:17 Slot [45] | NOT FINANCIAL TRANSACTION +14:05:17 +Slot[85] 0200 011000 6213545000438121 ------------- 00 166165 000100000000 507714166165015290316213545000438121 507714166165 962035 198901 S +14:05:26 +Slot[78] 0200 011000 6688990103251607 ------------- 00 260482 000020000000 5077072604820369SLVL6688990103251607 507707260482 481694 180893 S +14:05:35 Slot [75] | NOT FINANCIAL TRANSACTION +14:05:46 Slot [68] | NOT FINANCIAL TRANSACTION +14:05:49 +Slot[73] 0200 011000 6213545000438121 ------------- 00 166175 000100000000 507714166175015290316213545000438121 507714166175 094967 198901 S +14:05:50 Slot [43] | NOT FINANCIAL TRANSACTION +14:05:58 +Slot[91] 0200 010000 6213541000576390 ------------- 00 260489 000100000000 5077072604890401XSBR6213541000576390 507707260489 539487 180893 S +14:06:07 Slot [77] | NOT FINANCIAL TRANSACTION +14:06:17 Slot [76] | NOT FINANCIAL TRANSACTION +14:06:29 Slot [89] | NOT FINANCIAL TRANSACTION +14:06:36 +Slot[65] 0200 011000 6213545000427447 ------------- 00 166185 000100000000 507714166185015290316213545000427447 507714166185 326896 198901 S +14:06:40 +Slot[88] 0200 010000 6213541000576390 ------------- 00 260495 000100000000 5077072604950401XSBR6213541000576390 507707260495 118894 180893 S +14:06:48 Slot [94] | NOT FINANCIAL TRANSACTION +14:06:50 Slot [86] | NOT FINANCIAL TRANSACTION +14:06:58 +Slot[66] 0200 302000 6213544001986253 ------------- 00 260498 031807060126 5077072604980362CPSU6213544001986253 507707260498 853219 180893 S +14:07:06 Slot [93] | NOT FINANCIAL TRANSACTION +14:07:17 Slot [74] | NOT FINANCIAL TRANSACTION +14:07:20 +Slot[33] 0200 010000 6213541000576390 ------------- 00 260500 000100000000 5077072605000401XSBR6213541000576390 507707260500 550653 180893 S +14:07:33 Slot [101] | NOT FINANCIAL TRANSACTION +14:07:34 Slot [103] | NOT FINANCIAL TRANSACTION +14:07:44 Slot [95] | NOT FINANCIAL TRANSACTION +14:07:50 Slot [102] | NOT FINANCIAL TRANSACTION +14:07:52 +Slot[105] 0200 011000 6213545000433312 ------------- 00 166200 000100000000 507714166200015290316213545000433312 507714166200 969634 198901 S +14:08:01 +Slot[70] 0200 010000 6213544001986253 ------------- 00 260506 000050000000 5077072605060362CPSU6213544001986253 507707260506 394302 180893 S +14:08:02 +Slot[50] 0200 010000 6213541000576390 ------------- 00 260507 000100000000 5077072605070401XSBR6213541000576390 507707260507 507429 180893 S +14:08:11 Slot [92] | NOT FINANCIAL TRANSACTION +14:08:22 Slot [81] | NOT FINANCIAL TRANSACTION +14:08:25 +Slot[107] 0200 011000 6213545000433312 ------------- 00 166207 000100000000 507714166207015290316213545000433312 507714166207 270839 198901 S +14:08:33 Slot [114] | NOT FINANCIAL TRANSACTION +14:08:35 Slot [104] | NOT FINANCIAL TRANSACTION +14:08:39 +Slot[100] 0200 301000 1808931800011429 ------------- 00 385282 000000000000 507704634138170008001808931800011429 507704634138 874146 621354 S +14:08:43 +Slot[108] 0200 010000 6213541000576390 ------------- 00 260512 000100000000 5077072605120401XSBR6213541000576390 507707260512 317362 180893 S +14:08:51 +Slot[82] 0200 011000 6213545000433312 ------------- 00 166213 000100000000 507714166213015290316213545000433312 507714166213 542387 198901 S +14:08:52 Slot [87] | NOT FINANCIAL TRANSACTION +14:08:55 Slot [69] | NOT FINANCIAL TRANSACTION +14:09:09 Slot [122] | NOT FINANCIAL TRANSACTION +14:09:18 +Slot[117] 0200 301000 1808930400023610 ------------- 00 385425 000000000000 507704340149030033001808930400023610 507704340149 881084 621354 S +14:09:19 +Slot[119] 0200 010000 6213541000576390 ------------- 00 260517 000100000000 5077072605170401XSBR6213541000576390 507707260517 350727 180893 S +14:09:32 Slot [110] | NOT FINANCIAL TRANSACTION +14:09:39 +Slot[115] 0200 011000 6213545000433213 ------------- 00 166229 000100000000 507714166229015290316213545000433213 507714166229 035133 198901 S +14:09:47 Slot [96] | NOT FINANCIAL TRANSACTION +14:09:54 Slot [136] | NOT FINANCIAL TRANSACTION +14:09:58 +Slot[64] 0200 010000 6213541000576390 ------------- 00 260523 000100000000 5077072605230401XSBR6213541000576390 507707260523 415382 180893 S +14:10:01 +Slot[62] 0200 011000 1808930400023610 ------------- 00 385550 000100000000 507704340151030033001808930400023610 507704340151 378049 621354 S +14:10:08 +Slot[97] 0200 011000 6213545000433213 ------------- 00 166235 000100000000 507714166235015290316213545000433213 507714166235 864760 198901 S +14:10:09 Slot [124] | NOT FINANCIAL TRANSACTION +14:10:17 Slot [113] | NOT FINANCIAL TRANSACTION +14:10:19 Slot [98] | NOT FINANCIAL TRANSACTION +14:10:29 Slot [84] | NOT FINANCIAL TRANSACTION +14:10:36 +Slot[121] 0200 011000 6213545000433213 ------------- 00 166244 000100000000 507714166244015290316213545000433213 507714166244 788504 198901 S +14:10:40 Slot [90] | NOT FINANCIAL TRANSACTION +14:10:54 +Slot[159] 0200 010000 6213544001533824 ------------- 75 885379 000005000000 507701972045030120036213544001533824 507701972045 404712 668899 S +14:10:55 +Slot[134] 0200 011000 1808931800011429 ------------- 00 385744 000040000000 507704634140170008001808931800011429 507704634140 982828 621354 S +14:10:56 +Slot[112] 0200 301000 6213544001917795 ------------- 00 260526 031807095826 5077072605260401XSBR6213544001917795 507707260526 468567 180893 S +14:10:56 Slot [144] | NOT FINANCIAL TRANSACTION +14:11:03 +Slot[99] 0200 011000 1808930400023610 ------------- 00 385763 000100000000 507704340153030033001808930400023610 507704340153 544597 621354 S +14:11:07 +Slot[111] 0200 011000 6213545000433213 ------------- 00 166252 000100000000 507714166252015290316213545000433213 507714166252 507144 198901 S +14:11:08 Slot [142] | NOT FINANCIAL TRANSACTION +14:11:22 Slot [148] | NOT FINANCIAL TRANSACTION +14:11:32 Slot [128] | NOT FINANCIAL TRANSACTION +14:11:34 +Slot[149] 0200 011000 6213545000433213 ------------- 00 166262 000100000000 507714166262015290316213545000433213 507714166262 429788 198901 S +14:11:45 +Slot[126] 0200 010000 6213544001917795 ------------- 00 260532 000100000000 5077072605320401XSBR6213544001917795 507707260532 604935 180893 S +14:11:58 Slot [140] | NOT FINANCIAL TRANSACTION +14:12:02 +Slot[155] 0200 011000 1808930400023610 ------------- 00 385986 000100000000 507704340155030033001808930400023610 507704340155 866759 621354 S +14:12:03 +Slot[109] 0200 011000 6213543000192459 ------------- 14 168784 000010000000 507700026215010002006213543000192459 507700026215 604229 220699 S +14:12:05 +Slot[127] 0200 010000 6213544001533824 ------------- 75 885407 000010000000 507701972047030120036213544001533824 507701972047 451863 668899 S +14:12:06 +Slot[131] 0200 301000 1808931800011429 ------------- 00 386002 000000000000 507704634141170008001808931800011429 507704634141 499206 621354 S +14:12:08 +Slot[139] 0200 011000 6213545000433213 ------------- 00 166264 000100000000 507714166264015290316213545000433213 507714166264 032523 198901 S +14:12:11 Slot [146] | NOT FINANCIAL TRANSACTION +14:12:21 +Slot[151] 0200 311000 6213545000623813 ------------- 00 167640 000000000000 507700175011070001006213545000623813 507700175011 949814 220699 S +14:12:21 Slot [150] | NOT FINANCIAL TRANSACTION +14:12:32 Slot [123] | NOT FINANCIAL TRANSACTION +14:12:34 Slot [154] | NOT FINANCIAL TRANSACTION +14:12:37 +Slot[118] 0200 010000 6213544001917795 ------------- 00 260536 000050000000 5077072605360401XSBR6213544001917795 507707260536 704380 180893 S +14:12:45 +Slot[138] 0200 012000 6688990060012240 ------------- 00 386173 000020000000 507704153166200010006688990060012240 507704153166 895824 621354 S +14:12:49 Slot [157] | NOT FINANCIAL TRANSACTION +14:12:56 +Slot[132] 0200 011000 6213545000623813 ------------- 51 167641 000010000000 507700175012070001006213545000623813 507700175012 806528 220699 S +14:13:00 Slot [171] | NOT FINANCIAL TRANSACTION +14:13:00 Slot [135] | NOT FINANCIAL TRANSACTION +14:13:10 Slot [152] | NOT FINANCIAL TRANSACTION +14:13:22 Slot [167] | NOT FINANCIAL TRANSACTION +14:13:37 Slot [116] | NOT FINANCIAL TRANSACTION +14:13:38 +Slot[120] 0200 011000 6213544001967469 ------------- 61 166281 000200000000 507714166281015290316213544001967469 507714166281 396516 198901 S +14:13:45 +Slot[156] 0200 311000 6213543000229046 ------------- 55 174904 000000000000 507700104147010010006213543000229046 507700104147 529789 220699 S +14:13:48 Slot [168] | NOT FINANCIAL TRANSACTION +14:13:50 +Slot[129] 0200 011000 6213544001967469 ------------- 00 166285 000030000000 507714166285015290316213544001967469 507714166285 134434 198901 S +14:13:58 Slot [130] | NOT FINANCIAL TRANSACTION +14:14:02 Slot [141] | NOT FINANCIAL TRANSACTION +14:14:07 +Slot[175] 0200 010000 6688990050030574 ------------- 00 260542 000010000000 5077072605420102SAPA6688990050030574 507707260542 008448 180893 S +14:14:15 +Slot[172] 0200 011000 6688990060001656 ------------- 00 386495 000100000000 507704153168200010006688990060001656 507704153168 532969 621354 S +14:14:20 Slot [160] | NOT FINANCIAL TRANSACTION +14:14:23 +Slot[166] 0200 301000 6213545000204481 ------------- 00 885475 000000000000 507702150691030200256213545000204481 507702150691 149064 668899 S +14:14:24 +Slot[169] 0200 311000 6213543000229046 ------------- 55 174907 000000000000 507700104149010010006213543000229046 507700104149 935731 220699 S +14:14:31 +Slot[174] 0200 010000 1808931300012521 ------------- 00 885480 000100000000 507700771120030050011808931300012521 507700771120 501155 668899 S +14:14:36 Slot [164] | NOT FINANCIAL TRANSACTION +14:14:39 +Slot[147] 0200 301000 6213545000204481 ------------- 00 885483 000000000000 507702150692030200256213545000204481 507702150692 681708 668899 S +14:14:47 Slot [178] | NOT FINANCIAL TRANSACTION +14:14:47 +Slot[133] 0200 011000 6213545000433551 ------------- 00 166298 000100000000 507714166298015290316213545000433551 507714166298 630432 198901 S +14:14:54 +Slot[195] 0200 300000 6688990040071134 ------------- 00 386626 000000000000 507703432609060016006688990040071134 507703432609 182245 621354 S +14:14:58 +Slot[170] 0200 010000 6688990050030574 ------------- 00 260548 000010000000 5077072605480102SAPA6688990050030574 507707260548 396017 180893 S +14:15:02 +Slot[189] 0200 300000 6213545000204481 ------------- 00 885502 000000000000 507702150693030200256213545000204481 507702150693 883816 668899 S +14:15:04 Slot [183] | NOT FINANCIAL TRANSACTION +14:15:11 Slot [125] | NOT FINANCIAL TRANSACTION +14:15:16 Slot [191] | NOT FINANCIAL TRANSACTION +14:15:21 +Slot[161] 0200 301000 6213545000433551 ------------- 00 166312 000000000000 507714166312015290316213545000433551 507714166312 871068 198901 S +14:15:24 Slot [143] | NOT FINANCIAL TRANSACTION +14:15:39 +Slot[181] 0200 010000 1808931300012521 ------------- 00 885521 000100000000 507700771122030050011808931300012521 507700771122 015938 668899 S +14:15:41 Slot [202] | NOT FINANCIAL TRANSACTION +14:15:44 +Slot[204] 0200 011000 6213545000433551 ------------- 00 166320 000100000000 507714166320015290316213545000433551 507714166320 671971 198901 S +14:15:52 Slot [158] | NOT FINANCIAL TRANSACTION +14:15:57 Slot [197] | NOT FINANCIAL TRANSACTION +14:16:02 Slot [182] | NOT FINANCIAL TRANSACTION +14:16:06 Slot [198] | NOT FINANCIAL TRANSACTION +14:16:12 +Slot[200] 0200 010000 6688990106731407 ------------- 00 260553 000010000000 5077072605530102SAPA6688990106731407 507707260553 141289 180893 S +14:16:13 +Slot[213] 0200 301000 2206990000012922 ------------- 00 260554 031807151526 5077072605540114XKBR2206990000012922 507707260554 348670 180893 S +14:16:17 +Slot[177] 0200 011000 6213545000433551 ------------- 00 166332 000050000000 507714166332015290316213545000433551 507714166332 283123 198901 S +14:16:24 Slot [193] | NOT FINANCIAL TRANSACTION +14:16:25 +Slot[106] 0200 010000 6213545000204481 ------------- 00 885557 000100000000 507702150696030200256213545000204481 507702150696 125030 668899 S +14:16:32 +Slot[165] 0200 301000 6688990060001656 ------------- 00 386974 000000000000 507704153170200010006688990060001656 507704153170 580790 621354 S +14:16:35 Slot [210] | NOT FINANCIAL TRANSACTION +14:16:46 +Slot[153] 0200 010000 1808931300012521 ------------- 00 885566 000100000000 507700771124030050011808931300012521 507700771124 771751 668899 S +14:16:52 Slot [211] | NOT FINANCIAL TRANSACTION +14:16:55 +Slot[163] 0200 010000 6688990040071134 ------------- 55 387062 000100000000 507703432611060016006688990040071134 507703432611 763000 621354 S +14:17:04 Slot [187] | NOT FINANCIAL TRANSACTION +14:17:08 Slot [206] | NOT FINANCIAL TRANSACTION +14:17:10 +Slot[162] 0200 010000 6213541000480197 ------------- 00 260559 000100000000 5077072605590263UDXB6213541000480197 507707260559 801955 180893 S +14:17:19 +Slot[145] 0200 010000 6213545000703987 ------------- 00 885584 000100000000 507702150698030200256213545000703987 507702150698 121797 668899 S +14:17:19 Slot [221] | NOT FINANCIAL TRANSACTION +14:17:24 +Slot[217] 0200 011000 2206990000012922 ------------- 00 260561 000025000000 5077072605610114XKBR2206990000012922 507707260561 158219 180893 S +14:17:29 +Slot[205] 0200 010000 6688990040071134 ------------- 00 387205 000100000000 507703432613060016006688990040071134 507703432613 463487 621354 S +14:17:32 +Slot[194] 0200 011000 6688990060001656 ------------- 00 387221 000100000000 507704153172200010006688990060001656 507704153172 259534 621354 S +14:17:33 +Slot[196] 0200 011000 6213545000532428 ------------- 00 166344 000100000000 507714166344015290316213545000532428 507714166344 666651 198901 S +14:17:34 Slot [180] | NOT FINANCIAL TRANSACTION +14:17:35 Slot [214] | NOT FINANCIAL TRANSACTION +14:17:49 +Slot[176] 0200 010000 1808931300012521 ------------- 00 885600 000100000000 507700771126030050011808931300012521 507700771126 580800 668899 S +14:17:56 Slot [226] | NOT FINANCIAL TRANSACTION +14:18:10 Slot [222] | NOT FINANCIAL TRANSACTION +14:18:13 Slot [190] | NOT FINANCIAL TRANSACTION +14:18:28 +Slot[184] 0200 301000 6213545000175798 ------------- 00 260568 031807172926 5077072605680114XKBR6213545000175798 507707260568 221811 180893 S +14:18:37 +Slot[225] 0200 010000 6213544000248143 ------------- 00 885636 000020000000 507700080222030200016213544000248143 507700080222 458127 668899 S +14:18:38 +Slot[137] 0200 011000 6688990060001656 ------------- 00 387439 000100000000 507704153174200010006688990060001656 507704153174 721257 621354 S +14:18:40 Slot [224] | NOT FINANCIAL TRANSACTION +14:18:42 +Slot[173] 0200 011000 6213544000113917 ------------- 00 166357 000010000000 507714166357015290316213544000113917 507714166357 757014 198901 S +14:18:46 +Slot[218] 0200 010000 6688990602686501 ------------- 00 260573 000010000000 5077072605730369SLVL6688990602686501 507707260573 526114 180893 S +14:18:51 +Slot[208] 0200 010000 6213545000025001 ------------- 61 260575 000200000000 5077072605750529LPBF6213545000025001 507707260575 059286 180893 S +14:19:00 Slot [215] | NOT FINANCIAL TRANSACTION +14:19:10 +Slot[223] 0200 301000 6213545000175798 ------------- 00 260579 031807181326 5077072605790114XKBR6213545000175798 507707260579 464316 180893 S +14:19:11 +Slot[207] 0200 011000 6213544000113917 ------------- 00 166365 000100000000 507714166365015290316213544000113917 507714166365 570792 198901 S +14:19:12 Slot [231] | NOT FINANCIAL TRANSACTION +14:19:22 Slot [199] | NOT FINANCIAL TRANSACTION +14:19:22 +Slot[192] 0200 010000 6688990040071134 ------------- 00 387571 000100000000 507703432615060016006688990040071134 507703432615 173717 621354 S +14:19:23 +Slot[188] 0200 010000 6213541000480197 ------------- 00 260582 000100000000 5077072605820263UDXB6213541000480197 507707260582 539272 180893 S +14:19:31 +Slot[185] 0200 010000 6688990040087858 ------------- 00 387602 000010000000 507703968573010112006688990040087858 507703968573 503870 621354 S +14:19:32 Slot [220] | NOT FINANCIAL TRANSACTION +14:19:43 Slot [229] | NOT FINANCIAL TRANSACTION +14:19:48 +Slot[179] 0200 011000 6688990060001656 ------------- 00 387656 000100000000 507704153176200010006688990060001656 507704153176 019156 621354 S +14:19:52 +Slot[186] 0200 012000 6688990602100602 ------------- 65 387676 000100000000 507703358368130015006688990602100602 507703358368 684362 621354 S +14:19:54 Slot [230] | NOT FINANCIAL TRANSACTION +14:20:03 +Slot[212] 0200 301000 6213545000999577 ------------- 00 885683 000000000000 507702420076030010126213545000999577 507702420076 152013 668899 S +14:20:04 Slot [236] | NOT FINANCIAL TRANSACTION +14:20:14 Slot [227] | NOT FINANCIAL TRANSACTION +14:20:15 Slot [232] | NOT FINANCIAL TRANSACTION +14:20:16 Slot [216] | NOT FINANCIAL TRANSACTION +14:20:25 Slot [219] | NOT FINANCIAL TRANSACTION +14:20:36 Slot [235] | NOT FINANCIAL TRANSACTION +14:20:41 +Slot[234] 0200 010000 6688990040071134 ------------- 00 387852 000100000000 507703432617060016006688990040071134 507703432617 585751 621354 S +14:20:51 Slot [239] | NOT FINANCIAL TRANSACTION +14:21:07 Slot [250] | NOT FINANCIAL TRANSACTION +14:21:16 Slot [242] | NOT FINANCIAL TRANSACTION +14:21:18 Slot [228] | NOT FINANCIAL TRANSACTION +14:21:34 Slot [201] | NOT FINANCIAL TRANSACTION +14:21:50 Slot [252] | NOT FINANCIAL TRANSACTION +14:22:05 Slot [238] | NOT FINANCIAL TRANSACTION +14:22:10 +Slot[245] 0200 010000 6688990040071134 ------------- 00 388165 000010000000 507703432619060016006688990040071134 507703432619 483406 621354 S +14:22:16 Slot [240] | NOT FINANCIAL TRANSACTION +14:22:18 Slot [203] | NOT FINANCIAL TRANSACTION +14:22:27 +Slot[248] 0200 010000 6213545000025001 ------------- 61 260596 000200000000 5077072605960529LPBF6213545000025001 507707260596 538528 180893 S +14:22:34 Slot [258] | NOT FINANCIAL TRANSACTION +14:22:40 +Slot[253] 0200 011000 1808930700045743 ------------- 00 388267 000010000000 507703323288130012001808930700045743 507703323288 706960 621354 S +14:22:47 Slot [247] | NOT FINANCIAL TRANSACTION +14:22:57 Slot [244] | NOT FINANCIAL TRANSACTION +14:23:00 +Slot[243] 0200 010000 6213544002005533 ------------- 00 885788 000010000000 507702209605030060096213544002005533 507702209605 302962 668899 S +14:23:08 Slot [256] | NOT FINANCIAL TRANSACTION +14:23:20 Slot [246] | NOT FINANCIAL TRANSACTION +14:23:20 Slot [260] | NOT FINANCIAL TRANSACTION +14:23:33 +Slot[241] 0200 010000 6213545000025001 ------------- 00 260601 000100000000 5077072606010529LPBF6213545000025001 507707260601 652317 180893 S +14:23:42 Slot [251] | NOT FINANCIAL TRANSACTION +14:23:43 +Slot[273] 0200 012000 6213544000194313 ------------- 00 260604 000025000000 5077072606040363CPSH6213544000194313 507707260604 900363 180893 S +14:23:52 Slot [265] | NOT FINANCIAL TRANSACTION +14:24:04 Slot [264] | NOT FINANCIAL TRANSACTION +14:24:14 Slot [249] | NOT FINANCIAL TRANSACTION +14:24:19 +Slot[269] 0200 011000 6213545001010614 ------------- 00 166446 000100000000 507714166446000022226213545001010614 507714166446 654797 198901 S +14:24:22 Slot [268] | NOT FINANCIAL TRANSACTION +14:24:25 Slot [209] | NOT FINANCIAL TRANSACTION +14:24:36 Slot [279] | NOT FINANCIAL TRANSACTION +14:24:47 Slot [233] | NOT FINANCIAL TRANSACTION +14:24:51 +Slot[261] 0200 301000 6213545001010614 ------------- 00 166456 000000000000 507714166456000022226213545001010614 507714166456 656409 198901 S +14:25:04 +Slot[266] 0200 010000 6213545000025001 ------------- 00 260613 000100000000 5077072606130529LPBF6213545000025001 507707260613 096499 180893 S +14:25:14 Slot [257] | NOT FINANCIAL TRANSACTION +14:25:16 Slot [262] | NOT FINANCIAL TRANSACTION +14:25:17 Slot [270] | NOT FINANCIAL TRANSACTION +14:25:24 Slot [274] | NOT FINANCIAL TRANSACTION +14:25:25 Slot [284] | NOT FINANCIAL TRANSACTION +14:25:36 Slot [263] | NOT FINANCIAL TRANSACTION +14:25:42 +Slot[280] 0200 300000 6213544001961843 ------------- 00 885898 000000000000 507701506301036140016213544001961843 507701506301 156736 668899 S +14:25:47 Slot [267] | NOT FINANCIAL TRANSACTION +14:26:03 Slot [293] | NOT FINANCIAL TRANSACTION +14:26:15 Slot [299] | NOT FINANCIAL TRANSACTION +14:26:26 Slot [278] | NOT FINANCIAL TRANSACTION +14:26:33 Slot [277] | NOT FINANCIAL TRANSACTION +14:26:45 +Slot[287] 0200 011000 6688990104534506 ------------- 00 389090 000005000000 507703968578010112006688990104534506 507703968578 647999 621354 S +14:26:45 Slot [285] | NOT FINANCIAL TRANSACTION +14:26:50 Slot [304] | NOT FINANCIAL TRANSACTION +14:27:07 Slot [289] | NOT FINANCIAL TRANSACTION +14:27:18 +Slot[254] 0200 301000 1808931300008347 ------------- 55 389206 000000000000 507703499067060022001808931300008347 507703499067 242756 621354 S +14:27:23 Slot [275] | NOT FINANCIAL TRANSACTION +14:27:29 Slot [276] | NOT FINANCIAL TRANSACTION +14:27:34 +Slot[309] 0200 301000 1808931300008347 ------------- 00 389262 000000000000 507703499068060022001808931300008347 507703499068 245625 621354 S +14:27:34 Slot [281] | NOT FINANCIAL TRANSACTION +14:27:44 Slot [291] | NOT FINANCIAL TRANSACTION +14:27:57 +Slot[259] 0200 011000 6213541000387491 ------------- 00 166502 000100000000 507714166502015290316213541000387491 507714166502 122938 198901 S +14:28:00 Slot [296] | NOT FINANCIAL TRANSACTION +14:28:15 Slot [294] | NOT FINANCIAL TRANSACTION +14:28:20 +Slot[286] 0200 011000 6213541000220189 ------------- 00 260623 000040000000 5077072606230301LPBX6213541000220189 507707260623 274693 180893 S +14:28:31 Slot [303] | NOT FINANCIAL TRANSACTION +14:28:31 Slot [298] | NOT FINANCIAL TRANSACTION +14:28:47 Slot [282] | NOT FINANCIAL TRANSACTION +14:28:58 Slot [271] | NOT FINANCIAL TRANSACTION +14:29:06 +Slot[317] 0200 010000 6213544001810586 ------------- 00 177043 000030000000 507700010063010001006213544001810586 507700010063 416957 220699 S +14:29:09 Slot [288] | NOT FINANCIAL TRANSACTION +14:29:25 Slot [307] | NOT FINANCIAL TRANSACTION +14:29:33 Slot [237] | NOT FINANCIAL TRANSACTION +14:29:35 Slot [314] | NOT FINANCIAL TRANSACTION +14:29:47 Slot [329] | NOT FINANCIAL TRANSACTION +14:29:52 +Slot[315] 0200 010000 6213544001884557 ------------- 00 260631 000050000000 5077072606310361BLTB6213544001884557 507707260631 843609 180893 S +14:30:03 Slot [313] | NOT FINANCIAL TRANSACTION +14:30:14 Slot [323] | NOT FINANCIAL TRANSACTION +14:30:16 Slot [331] | NOT FINANCIAL TRANSACTION +14:30:29 Slot [324] | NOT FINANCIAL TRANSACTION +14:30:35 Slot [283] | NOT FINANCIAL TRANSACTION +14:30:40 Slot [255] | NOT FINANCIAL TRANSACTION +14:30:51 +Slot[321] 0200 011000 2206990000134775 ------------- 00 390003 000100000000 507702804442010074002206990000134775 507702804442 003258 621354 S +14:30:51 Slot [318] | NOT FINANCIAL TRANSACTION +14:31:02 Slot [272] | NOT FINANCIAL TRANSACTION +14:31:17 Slot [319] | NOT FINANCIAL TRANSACTION +14:31:28 Slot [326] | NOT FINANCIAL TRANSACTION +14:31:37 Slot [295] | NOT FINANCIAL TRANSACTION +14:31:42 +Slot[340] 0200 301000 6688990107402206 ------------- 00 260640 031807304526 5077072606400369SLVL6688990107402206 507707260640 153810 180893 S +14:31:55 Slot [300] | NOT FINANCIAL TRANSACTION +14:32:05 Slot [302] | NOT FINANCIAL TRANSACTION +14:32:21 Slot [336] | NOT FINANCIAL TRANSACTION +14:32:32 Slot [312] | NOT FINANCIAL TRANSACTION +14:32:33 Slot [306] | NOT FINANCIAL TRANSACTION +14:32:39 Slot [355] | NOT FINANCIAL TRANSACTION +14:32:42 Slot [325] | NOT FINANCIAL TRANSACTION +14:32:53 Slot [334] | NOT FINANCIAL TRANSACTION +14:33:09 Slot [311] | NOT FINANCIAL TRANSACTION +14:33:20 +Slot[316] 0200 010000 6688990107402206 ------------- 64 260643 000200000000 5077072606430369SLVL6688990107402206 507707260643 225901 180893 S +14:33:29 +Slot[339] 0200 010000 6688990104015001 ------------- 00 390609 000010000000 507703968585010112006688990104015001 507703968585 200382 621354 S +14:33:30 Slot [301] | NOT FINANCIAL TRANSACTION +14:33:41 Slot [310] | NOT FINANCIAL TRANSACTION +14:33:41 Slot [341] | NOT FINANCIAL TRANSACTION +14:33:56 Slot [308] | NOT FINANCIAL TRANSACTION +14:34:13 Slot [349] | NOT FINANCIAL TRANSACTION +14:34:23 Slot [297] | NOT FINANCIAL TRANSACTION +14:34:33 Slot [350] | NOT FINANCIAL TRANSACTION +14:34:43 Slot [332] | NOT FINANCIAL TRANSACTION +14:34:48 Slot [338] | NOT FINANCIAL TRANSACTION +14:34:59 +Slot[352] 0200 301000 1808931800011544 ------------- 00 390870 000000000000 507704634161170008001808931800011544 507704634161 619518 621354 S +14:35:04 Slot [328] | NOT FINANCIAL TRANSACTION +14:35:17 Slot [364] | NOT FINANCIAL TRANSACTION +14:35:19 Slot [345] | NOT FINANCIAL TRANSACTION +14:35:26 +Slot[343] 0200 010000 6213544000678919 ------------- 00 177045 000010000000 507700010065010001006213544000678919 507700010065 996639 220699 S +14:35:30 Slot [305] | NOT FINANCIAL TRANSACTION +14:35:41 Slot [354] | NOT FINANCIAL TRANSACTION +14:35:45 Slot [337] | NOT FINANCIAL TRANSACTION +14:35:54 +Slot[330] 0200 011000 1808931800011544 ------------- 51 391043 000050000000 507704634163170008001808931800011544 507704634163 036247 621354 S +14:36:04 Slot [320] | NOT FINANCIAL TRANSACTION +14:36:18 Slot [335] | NOT FINANCIAL TRANSACTION +14:36:31 Slot [342] | NOT FINANCIAL TRANSACTION +14:36:45 Slot [369] | NOT FINANCIAL TRANSACTION +14:36:47 Slot [366] | NOT FINANCIAL TRANSACTION +14:36:51 +Slot[347] 0200 011000 1808931800011544 ------------- 55 391195 000010000000 507704634165170008001808931800011544 507704634165 863575 621354 S +14:37:01 Slot [290] | NOT FINANCIAL TRANSACTION +14:37:11 +Slot[292] 0200 011000 1808931800011544 ------------- 00 391267 000010000000 507704634167170008001808931800011544 507704634167 969084 621354 S +14:37:16 Slot [374] | NOT FINANCIAL TRANSACTION +14:37:26 +Slot[333] 0200 311000 6213544000864212 ------------- 00 250683 000000000000 507700335862010019006213544000864212 507700335862 129151 220699 S +14:37:27 Slot [384] | NOT FINANCIAL TRANSACTION +14:37:29 +Slot[365] 0200 300000 2206990000105866 ------------- 00 391325 000000000000 507704613260170006002206990000105866 507704613260 669884 621354 S +14:37:31 Slot [327] | NOT FINANCIAL TRANSACTION +14:37:33 Slot [360] | NOT FINANCIAL TRANSACTION +14:37:44 Slot [358] | NOT FINANCIAL TRANSACTION +14:37:49 +Slot[353] 0200 010000 1999990000006463 ------------- 65 260652 000200000000 5077072606520104NUOL1999990000006463 507707260652 914984 180893 S +14:37:49 Slot [373] | NOT FINANCIAL TRANSACTION +14:38:01 Slot [372] | NOT FINANCIAL TRANSACTION +14:38:04 +Slot[380] 0200 011000 6213544000864212 ------------- 00 250684 000100000000 507700335863010019006213544000864212 507700335863 564659 220699 S +14:38:13 +Slot[362] 0200 011000 1808931800011544 ------------- 51 391480 000005000000 507704634169170008001808931800011544 507704634169 914654 621354 S +14:38:20 +Slot[382] 0200 010000 2206990000105866 ------------- 00 391504 000100000000 507704613262170006002206990000105866 507704613262 281406 621354 S +14:38:22 Slot [322] | NOT FINANCIAL TRANSACTION +14:38:33 Slot [348] | NOT FINANCIAL TRANSACTION +14:38:47 +Slot[379] 0200 301000 1808931800011544 ------------- 00 391597 000000000000 507704634170170008001808931800011544 507704634170 993981 621354 S +14:38:51 Slot [377] | NOT FINANCIAL TRANSACTION +14:38:53 +Slot[361] 0200 012000 2206991200023338 ------------- 00 391629 000010000000 507705003027010124002206991200023338 507705003027 732124 621354 S +14:38:55 Slot [378] | NOT FINANCIAL TRANSACTION +14:38:57 +Slot[346] 0200 011000 6213541000308794 ------------- 00 168786 000030000000 507700026217010002006213541000308794 507700026217 298464 220699 S +14:39:06 +Slot[363] 0200 011000 1808931300010988 ------------- 00 391674 000070000000 507703396608060012001808931300010988 507703396608 339810 621354 S +14:39:10 Slot [370] | NOT FINANCIAL TRANSACTION +14:39:21 Slot [385] | NOT FINANCIAL TRANSACTION +14:39:22 +Slot[371] 0200 010000 2206990000105866 ------------- 00 391719 000100000000 507704613264170006002206990000105866 507704613264 685698 621354 S +14:39:30 +Slot[344] 0200 011000 6213544000864212 ------------- 00 250687 000100000000 507700335865010019006213544000864212 507700335865 423264 220699 S +14:39:32 Slot [367] | NOT FINANCIAL TRANSACTION +14:39:43 +Slot[351] 0200 011000 6688990602724005 ------------- 00 391783 000050000000 507703968596010112006688990602724005 507703968596 189466 621354 S +14:39:47 Slot [397] | NOT FINANCIAL TRANSACTION +14:39:53 Slot [386] | NOT FINANCIAL TRANSACTION +14:39:58 Slot [388] | NOT FINANCIAL TRANSACTION +14:40:02 +Slot[410] 0200 301000 6213543000152081 ------------- 00 166668 000000000000 507714166668015290316213543000152081 507714166668 266260 198901 S +14:40:07 +Slot[359] 0200 301000 1808931300010988 ------------- 00 391869 000000000000 507703396609060012001808931300010988 507703396609 836924 621354 S +14:40:10 Slot [357] | NOT FINANCIAL TRANSACTION +14:40:17 Slot [401] | NOT FINANCIAL TRANSACTION +14:40:22 Slot [408] | NOT FINANCIAL TRANSACTION +14:40:23 +Slot[414] 0200 010000 2206990000105866 ------------- 00 391932 000100000000 507704613266170006002206990000105866 507704613266 754890 621354 S +14:40:29 +Slot[413] 0200 011000 6213543000152081 ------------- 00 166677 000010000000 507714166677015290316213543000152081 507714166677 787983 198901 S +14:40:30 +Slot[398] 0200 011000 6213544000864212 ------------- 00 166678 000100000000 507714166678015290266213544000864212 507714166678 246401 198901 S +14:40:38 Slot [403] | NOT FINANCIAL TRANSACTION +14:40:47 +Slot[393] 0200 011000 6213541000308794 ------------- 00 168788 000100000000 507700026219010002006213541000308794 507700026219 142572 220699 S +14:40:52 Slot [420] | NOT FINANCIAL TRANSACTION +14:40:55 Slot [392] | NOT FINANCIAL TRANSACTION +14:41:03 Slot [416] | NOT FINANCIAL TRANSACTION +14:41:05 +Slot[391] 0200 011000 6213544000864212 ------------- 00 166689 000100000000 507714166689015290266213544000864212 507714166689 308493 198901 S +14:41:13 Slot [425] | NOT FINANCIAL TRANSACTION +14:41:16 +Slot[418] 0200 010000 6688990602688200 ------------- 00 260673 000100000000 5077072606730369SLVL6688990602688200 507707260673 374967 180893 S +14:41:24 Slot [383] | NOT FINANCIAL TRANSACTION +14:41:35 Slot [415] | NOT FINANCIAL TRANSACTION +14:41:48 +Slot[387] 0200 012000 1808931300010988 ------------- 42 392173 000010000000 507703396616060012001808931300010988 507703396616 871969 621354 S +14:41:50 +Slot[423] 0200 011000 6213544001511994 ------------- 00 166697 000020000000 507714166697015290316213544001511994 507714166697 018479 198901 S +14:41:57 Slot [396] | NOT FINANCIAL TRANSACTION +14:41:57 Slot [431] | NOT FINANCIAL TRANSACTION +14:41:59 Slot [429] | NOT FINANCIAL TRANSACTION +14:42:02 +Slot[402] 0200 011000 6213544000864212 ------------- 00 166698 000095000000 507714166698015290266213544000864212 507714166698 521608 198901 S +14:42:04 +Slot[395] 0420 010000 2206990000105866 ------------- 00 392101 000100000000 507704613268170006002206990000105866 507704613268 -------- 621354 S +14:42:06 +Slot[400] 0200 012000 2206991200023338 ------------- 00 392204 000100000000 507703835333010099002206991200023338 507703835333 052116 621354 S +14:42:08 Slot [417] | NOT FINANCIAL TRANSACTION +14:42:19 +Slot[381] 0200 302000 2206990000022434 ------------- 00 392217 000000000000 507703307184130010002206990000022434 507703307184 885889 621354 S +14:42:19 +Slot[375] 0200 010000 6688990602688200 ------------- 00 260677 000100000000 5077072606770369SLVL6688990602688200 507707260677 820406 180893 S +14:42:21 +Slot[399] 0200 300000 2206990000105866 ------------- 00 392238 000000000000 507704613269170006002206990000105866 507704613269 389950 621354 S +14:42:29 Slot [428] | NOT FINANCIAL TRANSACTION +14:42:33 Slot [438] | NOT FINANCIAL TRANSACTION +14:42:40 Slot [406] | NOT FINANCIAL TRANSACTION +14:42:54 +Slot[437] 0200 011000 1808931400008635 ------------- 00 392335 000040000000 507704718935180010001808931400008635 507704718935 162616 621354 S +14:42:59 Slot [419] | NOT FINANCIAL TRANSACTION +14:43:02 Slot [445] | NOT FINANCIAL TRANSACTION +14:43:05 +Slot[404] 0200 010000 2206990000105866 ------------- 00 392372 000100000000 507704613271170006002206990000105866 507704613271 873839 621354 S +14:43:06 +Slot[427] 0200 010000 6688990602688200 ------------- 00 260682 000100000000 5077072606820369SLVL6688990602688200 507707260682 700790 180893 S +14:43:17 +Slot[422] 0420 010000 2206990000105866 0000000000000 00 392101 000100000000 507704613268170006002206990000105866 507704613268 -------- 621354 S +14:43:17 Slot [394] | NOT FINANCIAL TRANSACTION +14:43:27 Slot [452] | NOT FINANCIAL TRANSACTION +14:43:38 +Slot[368] 0200 011000 6213545000677587 ------------- 00 166717 000050000000 507714166717205290016213545000677587 507714166717 714534 198901 S +14:43:39 Slot [448] | NOT FINANCIAL TRANSACTION +14:43:44 +Slot[356] 0200 010000 2206990000105866 ------------- 91 392101 000100000000 507704613268170006002206990000105866 507704613268 634551 621354 S +14:43:50 Slot [442] | NOT FINANCIAL TRANSACTION +14:43:57 +Slot[411] 0200 011000 1234010100219695 ------------- 91 392141 000100000000 507703585703090015001234010100219695 507703585703 784822 621354 S +14:43:57 +Slot[440] 0200 011000 1808930200052421 ------------- 00 392530 000020000000 507702720710010066001808930200052421 507702720710 416424 621354 S +14:44:01 Slot [389] | NOT FINANCIAL TRANSACTION +14:44:01 Slot [443] | NOT FINANCIAL TRANSACTION +14:44:11 +Slot[465] 0200 010000 2206990000105866 ------------- 00 392574 000100000000 507704613273170006002206990000105866 507704613273 662084 621354 S +14:44:12 Slot [439] | NOT FINANCIAL TRANSACTION +14:44:23 Slot [424] | NOT FINANCIAL TRANSACTION +14:44:34 Slot [390] | NOT FINANCIAL TRANSACTION +14:44:36 +Slot[435] 0200 011000 6688990100924305 ------------- 00 392647 000020000000 507704718937180010006688990100924305 507704718937 496291 621354 S +14:44:44 +Slot[376] 0200 302000 6213544000868122 ------------- 00 886609 000000000000 507701311471030060056213544000868122 507701311471 138938 668899 S +14:44:50 Slot [421] | NOT FINANCIAL TRANSACTION +14:45:01 Slot [430] | NOT FINANCIAL TRANSACTION +14:45:03 Slot [447] | NOT FINANCIAL TRANSACTION +14:45:12 Slot [460] | NOT FINANCIAL TRANSACTION +14:45:13 +Slot[441] 0200 010000 2206990000105866 ------------- 00 392753 000100000000 507704613275170006002206990000105866 507704613275 187836 621354 S +14:45:17 Slot [456] | NOT FINANCIAL TRANSACTION +14:45:21 +Slot[463] 0200 302000 6213544000868122 ------------- 00 886629 000000000000 507701311472030060056213544000868122 507701311472 726658 668899 S +14:45:23 Slot [462] | NOT FINANCIAL TRANSACTION +14:45:38 Slot [405] | NOT FINANCIAL TRANSACTION +14:45:44 +Slot[434] 0200 010000 6688990602688200 ------------- 00 260687 000100000000 5077072606870369SLVL6688990602688200 507707260687 725317 180893 S +14:45:59 +Slot[449] 0200 301000 1808931400000855 ------------- 00 392905 000000000000 507703441011060017001808931400000855 507703441011 512597 621354 S +14:46:05 Slot [407] | NOT FINANCIAL TRANSACTION +14:46:08 Slot [409] | NOT FINANCIAL TRANSACTION +14:46:13 +Slot[412] 0200 010000 2206990000105866 ------------- 00 392944 000100000000 507704613277170006002206990000105866 507704613277 776717 621354 S +14:46:16 +Slot[475] 0200 301000 1808931400008635 ------------- 00 392945 000000000000 507704718938180010001808931400008635 507704718938 891184 621354 S +14:46:21 +Slot[469] 0200 300000 6213544000868122 ------------- 00 886660 000000000000 507701311474030060056213544000868122 507701311474 395253 668899 S +14:46:23 Slot [457] | NOT FINANCIAL TRANSACTION +14:46:34 Slot [489] | NOT FINANCIAL TRANSACTION +14:46:36 +Slot[482] 0200 300000 6213544000868122 ------------- 00 886666 000000000000 507701311475030060056213544000868122 507701311475 073276 668899 S +14:46:46 +Slot[479] 0200 301000 1808931800013094 ------------- 00 393051 000000000000 507704634171170008001808931800013094 507704634171 016292 621354 S +14:46:57 +Slot[444] 0200 011000 1808931400000855 ------------- 00 393083 000010000000 507703441013060017001808931400000855 507703441013 205824 621354 S +14:47:01 Slot [450] | NOT FINANCIAL TRANSACTION +14:47:07 Slot [478] | NOT FINANCIAL TRANSACTION +14:47:14 +Slot[467] 0200 010000 2206990000105866 ------------- 00 393154 000100000000 507704613279170006002206990000105866 507704613279 211440 621354 S +14:47:16 Slot [459] | NOT FINANCIAL TRANSACTION +14:47:20 +Slot[433] 0200 011000 1234010100219695 ------------- 91 392724 000100000000 507703585711090015001234010100219695 507703585711 068496 621354 S +14:47:27 Slot [490] | NOT FINANCIAL TRANSACTION +14:47:33 Slot [483] | NOT FINANCIAL TRANSACTION +14:47:38 Slot [474] | NOT FINANCIAL TRANSACTION +14:47:49 Slot [472] | NOT FINANCIAL TRANSACTION +14:48:00 Slot [453] | NOT FINANCIAL TRANSACTION +14:48:09 Slot [432] | NOT FINANCIAL TRANSACTION +14:48:11 Slot [468] | NOT FINANCIAL TRANSACTION +14:48:16 Slot [485] | NOT FINANCIAL TRANSACTION +14:48:25 +Slot[455] 0200 300000 2206990000105866 ------------- 00 393378 000000000000 507704613280170006002206990000105866 507704613280 879628 621354 S +14:48:26 +Slot[487] 0200 010000 6213543000120427 ------------- 00 886699 000050000000 507700229673030010056213543000120427 507700229673 808709 668899 S +14:48:27 +Slot[426] 0200 010000 6213544002183694 ------------- 00 260699 000050000000 5077072606990222XKPV6213544002183694 507707260699 668999 180893 S +14:48:28 +Slot[461] 0200 011000 6213544002214481 ------------- 00 166776 000010000000 507714166776015290316213544002214481 507714166776 672631 198901 S +14:48:32 Slot [498] | NOT FINANCIAL TRANSACTION +14:48:33 Slot [455] | NOT FINANCIAL TRANSACTION +14:48:37 +Slot[446] 0420 010000 6213544001758710 ------------- 00 408490 000002000000 507600192311030001006213544001758710 507600192311 -------- 123401 S +14:48:42 +Slot[450] 0200 301000 6688990040119677 ------------- 55 393518 000000000000 507704467709150008006688990040119677 507704467709 816978 621354 S +14:48:43 Slot [471] | NOT FINANCIAL TRANSACTION +14:48:54 Slot [436] | NOT FINANCIAL TRANSACTION +14:48:58 +Slot[491] 0200 010000 2206990000105866 ------------- 00 393566 000080000000 507704613282170006002206990000105866 507704613282 001810 621354 S +14:48:59 +Slot[476] 0420 010000 6213541000692312 ------------- 00 408543 000100000000 507600228047010018006213541000692312 507600228047 -------- 123401 S +14:48:59 +Slot[486] 0200 300000 6213545000288047 ------------- 00 886719 000000000000 507701311479030060056213545000288047 507701311479 790851 668899 S +14:49:05 Slot [497] | NOT FINANCIAL TRANSACTION +14:49:11 Slot [473] | NOT FINANCIAL TRANSACTION +14:49:15 +Slot[7] 0200 010000 1234010100219695 ------------- 91 393647 000100000000 507703585717090015001234010100219695 507703585717 583599 621354 S +14:49:15 Slot [2] | NOT FINANCIAL TRANSACTION +14:49:19 +Slot[499] 0420 010000 6213541000692312 ------------- 00 408557 000100000000 507600228051010018006213541000692312 507600228051 -------- 123401 S +14:49:30 +Slot[464] 0200 010000 6213545000288047 ------------- 00 886734 000070000000 507701311480030060056213545000288047 507701311480 793829 668899 S +14:49:32 Slot [492] | NOT FINANCIAL TRANSACTION +14:49:39 Slot [470] | NOT FINANCIAL TRANSACTION +14:49:40 +Slot[495] 0420 010000 6213545000687883 ------------- 00 408868 000100000000 507600111221010010006213545000687883 507600111221 -------- 123401 S +14:49:41 +Slot[451] 0200 011000 1234010100219695 ------------- 91 393182 000100000000 507703585714090015001234010100219695 507703585714 818994 621354 S +14:49:44 +Slot[477] 0200 012000 1808931800013094 ------------- 42 393725 000010000000 507704634175170008001808931800013094 507704634175 943407 621354 S +14:49:52 +Slot[18] 0200 301000 6688990040012542 ------------- 00 393755 000000000000 507704877890080009006688990040012542 507704877890 666654 621354 S +14:49:54 Slot [24] | NOT FINANCIAL TRANSACTION +14:50:00 +Slot[14] 0200 010000 2206990000105866 ------------- 51 393785 000040000000 507704613284170006002206990000105866 507704613284 091922 621354 S +14:50:04 +Slot[454] 0200 301000 1808931300013263 ------------- 00 393792 000000000000 507703644196160017001808931300013263 507703644196 802470 621354 S +14:50:07 +Slot[480] 0200 011000 6213544000905197 ------------- 00 166813 000050000000 507714166813015290316213544000905197 507714166813 720194 198901 S +14:50:08 +Slot[466] 0200 010000 6688990602538702 ------------- 00 393805 000010000000 507703968622010112006688990602538702 507703968622 541809 621354 S +14:50:09 Slot [484] | NOT FINANCIAL TRANSACTION +14:50:13 Slot [488] | NOT FINANCIAL TRANSACTION +14:50:17 Slot [493] | NOT FINANCIAL TRANSACTION +14:50:20 Slot [458] | NOT FINANCIAL TRANSACTION +14:50:21 +Slot[22] 0200 302000 6213544000868122 ------------- 00 886764 000000000000 507701311482030060056213544000868122 507701311482 659142 668899 S +14:50:27 +Slot[3] 0200 300000 6213543000201185 ------------- 00 886772 000000000000 507701614216030010076213543000201185 507701614216 647696 668899 S +14:50:31 Slot [12] | NOT FINANCIAL TRANSACTION +14:50:36 +Slot[481] 0200 300000 1234010100219695 ------------- 91 393385 000000000000 507703585715090015001234010100219695 507703585715 260724 621354 S +14:50:39 +Slot[0] 0200 302000 6213544000868122 ------------- 00 886777 000000000000 507701311483030060056213544000868122 507701311483 640720 668899 S +14:50:42 Slot [16] | NOT FINANCIAL TRANSACTION +14:50:44 Slot [1] | NOT FINANCIAL TRANSACTION +14:50:47 +Slot[4] 0200 010000 2206990000105866 ------------- 00 393937 000030000000 507704613286170006002206990000105866 507704613286 804811 621354 S +14:50:53 +Slot[5] 0200 011000 1808931300013263 ------------- 00 393948 000050000000 507703644198160017001808931300013263 507703644198 285789 621354 S +14:50:54 +Slot[21] 0200 302000 6213544000868122 ------------- 00 886785 000000000000 507701311484030060056213544000868122 507701311484 509683 668899 S +14:50:57 Slot [31] | NOT FINANCIAL TRANSACTION +14:51:08 Slot [15] | NOT FINANCIAL TRANSACTION +14:51:15 Slot [496] | NOT FINANCIAL TRANSACTION +14:51:17 +Slot[26] 0200 010000 6213544000868122 ------------- 00 886801 000010000000 507701311485030060056213544000868122 507701311485 846888 668899 S +14:51:18 +Slot[8] 0200 012000 6688990100370103 ------------- 00 394002 000100000000 507704705191180009006688990100370103 507704705191 010805 621354 S +14:51:24 Slot [23] | NOT FINANCIAL TRANSACTION +14:51:35 Slot [10] | NOT FINANCIAL TRANSACTION +14:51:46 Slot [6] | NOT FINANCIAL TRANSACTION +14:51:49 Slot [9] | NOT FINANCIAL TRANSACTION +14:51:59 +Slot[46] 0200 010000 2206990000120758 ------------- 00 394149 000100000000 507704613288170006002206990000120758 507704613288 236805 621354 S +14:52:02 Slot [27] | NOT FINANCIAL TRANSACTION +14:52:10 +Slot[11] 0200 011000 6213545000427496 ------------- 75 166844 000100000000 507714166844015290316213545000427496 507714166844 486204 198901 S +14:52:13 Slot [25] | NOT FINANCIAL TRANSACTION +14:52:17 Slot [28] | NOT FINANCIAL TRANSACTION +14:52:23 +Slot[30] 0200 012000 6688990100370103 ------------- 00 394236 000070000000 507704705193180009006688990100370103 507704705193 293104 621354 S +14:52:24 Slot [56] | NOT FINANCIAL TRANSACTION +14:52:25 +Slot[494] 0200 300000 6213543000138775 ------------- 00 886832 000000000000 507701311487030060056213543000138775 507701311487 973695 668899 S +14:52:33 Slot [20] | NOT FINANCIAL TRANSACTION +14:52:40 +Slot[34] 0200 010000 1808930600014856 ------------- 00 886836 000050000000 507700536834030140011808930600014856 507700536834 087841 668899 S +14:52:45 Slot [42] | NOT FINANCIAL TRANSACTION +14:52:53 +Slot[36] 0200 010000 6688990106536608 ------------- 00 394311 000010000000 507703882041010104006688990106536608 507703882041 216502 621354 S +14:52:54 Slot [39] | NOT FINANCIAL TRANSACTION +14:52:56 Slot [32] | NOT FINANCIAL TRANSACTION +14:53:08 Slot [38] | NOT FINANCIAL TRANSACTION +14:53:19 Slot [52] | NOT FINANCIAL TRANSACTION +14:53:23 Slot [41] | NOT FINANCIAL TRANSACTION +14:53:31 +Slot[47] 0200 010000 6213543000138775 ------------- 00 886871 000070000000 507701311488030060056213543000138775 507701311488 512120 668899 S +14:53:39 Slot [44] | NOT FINANCIAL TRANSACTION +14:53:50 Slot [40] | NOT FINANCIAL TRANSACTION +14:53:59 Slot [13] | NOT FINANCIAL TRANSACTION +14:54:00 Slot [57] | NOT FINANCIAL TRANSACTION +14:54:15 +Slot[19] 0200 011000 6213543000199538 ------------- 00 166872 000005000000 507714166872015290316213543000199538 507714166872 230552 198901 S +14:54:16 Slot [37] | NOT FINANCIAL TRANSACTION +14:54:21 Slot [54] | NOT FINANCIAL TRANSACTION +14:54:31 Slot [59] | NOT FINANCIAL TRANSACTION +14:54:44 Slot [61] | NOT FINANCIAL TRANSACTION +14:54:59 Slot [58] | NOT FINANCIAL TRANSACTION +14:55:04 Slot [55] | NOT FINANCIAL TRANSACTION +14:55:10 Slot [51] | NOT FINANCIAL TRANSACTION +14:55:17 Slot [29] | NOT FINANCIAL TRANSACTION +14:55:21 Slot [17] | NOT FINANCIAL TRANSACTION +14:55:23 Slot [60] | NOT FINANCIAL TRANSACTION +14:55:26 +Slot[72] 0200 300000 6213545001002769 ------------- 00 886931 000000000000 507701311490030060056213545001002769 507701311490 225956 668899 S +14:55:31 Slot [48] | NOT FINANCIAL TRANSACTION +14:55:48 Slot [63] | NOT FINANCIAL TRANSACTION +14:56:03 Slot [71] | NOT FINANCIAL TRANSACTION +14:56:09 Slot [35] | NOT FINANCIAL TRANSACTION +14:56:13 Slot [67] | NOT FINANCIAL TRANSACTION +14:56:23 +Slot[80] 0200 301000 6213545000820153 ------------- 00 166905 000000000000 507714166905015290266213545000820153 507714166905 534345 198901 S +14:56:25 Slot [49] | NOT FINANCIAL TRANSACTION +14:56:30 +Slot[53] 0200 010000 1808931800013094 ------------- 00 886960 000100000000 507701363108030080031808931800013094 507701363108 427857 668899 S +14:56:34 Slot [79] | NOT FINANCIAL TRANSACTION +14:56:44 +Slot[83] 0200 011000 6213545000820153 ------------- 00 166909 000100000000 507714166909015290266213545000820153 507714166909 206026 198901 S +14:56:45 Slot [45] | NOT FINANCIAL TRANSACTION +14:56:53 +Slot[85] 0200 010000 6688990040099622 ------------- 00 395136 000100000000 507703160015040026006688990040099622 507703160015 977081 621354 S +14:56:55 Slot [78] | NOT FINANCIAL TRANSACTION +14:57:06 Slot [75] | NOT FINANCIAL TRANSACTION +14:57:14 Slot [68] | NOT FINANCIAL TRANSACTION +14:57:16 Slot [73] | NOT FINANCIAL TRANSACTION +14:57:25 +Slot[43] 0200 301000 6213548000553691 ------------- 55 166916 000000000000 507714166916015290316213548000553691 507714166916 989806 198901 S +14:57:27 Slot [91] | NOT FINANCIAL TRANSACTION +14:57:27 Slot [77] | NOT FINANCIAL TRANSACTION +14:57:33 Slot [76] | NOT FINANCIAL TRANSACTION +14:57:42 Slot [89] | NOT FINANCIAL TRANSACTION +14:57:56 +Slot[65] 0200 010000 1808931800013094 ------------- 51 887012 000100000000 507701363110030080031808931800013094 507701363110 936855 668899 S +14:58:04 Slot [94] | NOT FINANCIAL TRANSACTION +14:58:06 +Slot[88] 0200 010000 6688990040099622 ------------- 65 395388 000100000000 507703160017040026006688990040099622 507703160017 919350 621354 S +14:58:19 Slot [66] | NOT FINANCIAL TRANSACTION +14:58:19 +Slot[86] 0200 010000 1808931800013094 ------------- 51 887023 000100000000 507701363111030080031808931800013094 507701363111 668026 668899 S +14:58:29 +Slot[93] 0200 011000 1808931100007184 ------------- 00 395456 000020000000 507703795393010095001808931100007184 507703795393 440579 621354 S +14:58:29 Slot [74] | NOT FINANCIAL TRANSACTION +14:58:37 Slot [33] | NOT FINANCIAL TRANSACTION +14:58:41 Slot [101] | NOT FINANCIAL TRANSACTION +14:58:47 Slot [103] | NOT FINANCIAL TRANSACTION +14:59:02 Slot [102] | NOT FINANCIAL TRANSACTION +14:59:03 Slot [105] | NOT FINANCIAL TRANSACTION +14:59:06 +Slot[95] 0200 010000 6688990040099622 ------------- 65 395588 000100000000 507703160019040026006688990040099622 507703160019 371433 621354 S +14:59:14 Slot [70] | NOT FINANCIAL TRANSACTION +14:59:24 Slot [50] | NOT FINANCIAL TRANSACTION +14:59:29 Slot [81] | NOT FINANCIAL TRANSACTION +14:59:31 Slot [92] | NOT FINANCIAL TRANSACTION +14:59:45 Slot [107] | NOT FINANCIAL TRANSACTION +14:59:56 Slot [114] | NOT FINANCIAL TRANSACTION +15:00:07 Slot [104] | NOT FINANCIAL TRANSACTION +15:00:17 Slot [100] | NOT FINANCIAL TRANSACTION +15:00:25 +Slot[108] 0200 010000 1808931800013094 ------------- 51 887097 000100000000 507701363113030080031808931800013094 507701363113 286615 668899 S +15:00:29 Slot [82] | NOT FINANCIAL TRANSACTION +15:00:32 Slot [69] | NOT FINANCIAL TRANSACTION +15:00:33 Slot [87] | NOT FINANCIAL TRANSACTION +15:00:43 Slot [122] | NOT FINANCIAL TRANSACTION +15:00:53 Slot [117] | NOT FINANCIAL TRANSACTION +15:01:08 Slot [119] | NOT FINANCIAL TRANSACTION +15:01:19 Slot [96] | NOT FINANCIAL TRANSACTION +15:01:22 +Slot[115] 0200 301000 6213548000412872 ------------- 00 260746 031808002526 5077082607460528LPBP6213548000412872 507708260746 441885 180893 S +15:01:23 +Slot[110] 0200 012000 1888880000048280 ------------- 00 396036 000010000000 507703917027010107001888880000048280 507703917027 548094 621354 S +15:01:34 Slot [64] | NOT FINANCIAL TRANSACTION +15:01:35 Slot [136] | NOT FINANCIAL TRANSACTION +15:01:35 Slot [62] | NOT FINANCIAL TRANSACTION +15:01:46 Slot [124] | NOT FINANCIAL TRANSACTION +15:01:48 +Slot[97] 0200 301000 2206990000058784 ------------- 00 396131 000000000000 507703968646010112002206990000058784 507703968646 563297 621354 S +15:01:57 Slot [113] | NOT FINANCIAL TRANSACTION +15:02:08 Slot [98] | NOT FINANCIAL TRANSACTION +15:02:18 +Slot[84] 0200 010000 6213543000151109 ------------- 00 887166 000100000000 507701881302030140066213543000151109 507701881302 465877 668899 S +15:02:20 Slot [121] | NOT FINANCIAL TRANSACTION +15:02:33 Slot [90] | NOT FINANCIAL TRANSACTION +15:02:34 Slot [159] | NOT FINANCIAL TRANSACTION +15:02:37 Slot [134] | NOT FINANCIAL TRANSACTION +15:02:39 Slot [112] | NOT FINANCIAL TRANSACTION +15:02:47 Slot [144] | NOT FINANCIAL TRANSACTION +15:02:56 +Slot[99] 0200 012000 2206990000058784 ------------- 51 396366 000002000000 507703968650010112002206990000058784 507703968650 130576 621354 S +15:03:01 Slot [111] | NOT FINANCIAL TRANSACTION +15:03:11 Slot [142] | NOT FINANCIAL TRANSACTION +15:03:27 Slot [128] | NOT FINANCIAL TRANSACTION +15:03:29 +Slot[148] 0200 010000 6213543000151109 ------------- 00 887224 000050000000 507701881304030140066213543000151109 507701881304 172334 668899 S +15:03:37 +Slot[149] 0200 011000 1808930900034281 ------------- 55 396510 000020000000 507702577112050040001808930900034281 507702577112 719677 621354 S +15:03:39 Slot [126] | NOT FINANCIAL TRANSACTION +15:03:44 Slot [140] | NOT FINANCIAL TRANSACTION +15:03:49 Slot [155] | NOT FINANCIAL TRANSACTION +15:03:59 Slot [109] | NOT FINANCIAL TRANSACTION +15:04:10 Slot [127] | NOT FINANCIAL TRANSACTION +15:04:21 Slot [131] | NOT FINANCIAL TRANSACTION +15:04:37 Slot [139] | NOT FINANCIAL TRANSACTION +15:04:41 Slot [151] | NOT FINANCIAL TRANSACTION +15:04:47 +Slot[146] 0200 011000 1808930900034281 ------------- 00 396704 000020000000 507702577114050040001808930900034281 507702577114 598210 621354 S +15:04:49 Slot [150] | NOT FINANCIAL TRANSACTION +15:04:53 Slot [123] | NOT FINANCIAL TRANSACTION +15:05:09 Slot [154] | NOT FINANCIAL TRANSACTION +15:05:17 Slot [138] | NOT FINANCIAL TRANSACTION +15:05:20 +Slot[118] 0200 012000 6688990600855306 ------------- 00 396818 000050000000 507704986666010123006688990600855306 507704986666 770654 621354 S +15:05:25 Slot [157] | NOT FINANCIAL TRANSACTION +15:05:31 +Slot[132] 0200 011000 6213548000452100 ------------- 51 260775 000002000000 5077082607750141HQBR6213548000452100 507708260775 097138 180893 S +15:05:41 Slot [152] | NOT FINANCIAL TRANSACTION +15:05:43 Slot [135] | NOT FINANCIAL TRANSACTION +15:05:45 +Slot[171] 0200 301000 6213545000421424 ------------- 00 887335 000000000000 507702415138030010116213545000421424 507702415138 677891 668899 S +15:05:52 Slot [167] | NOT FINANCIAL TRANSACTION +15:05:54 Slot [116] | NOT FINANCIAL TRANSACTION +15:06:07 Slot [120] | NOT FINANCIAL TRANSACTION +15:06:18 Slot [168] | NOT FINANCIAL TRANSACTION +15:06:21 +Slot[156] 0200 010000 6213545000421424 ------------- 00 887363 000100000000 507702415139030010116213545000421424 507702415139 774747 668899 S +15:06:28 Slot [129] | NOT FINANCIAL TRANSACTION +15:06:39 Slot [130] | NOT FINANCIAL TRANSACTION +15:06:45 Slot [141] | NOT FINANCIAL TRANSACTION +15:06:50 Slot [175] | NOT FINANCIAL TRANSACTION +15:06:57 +Slot[172] 0200 301000 6213548000452100 ------------- 00 260779 031808060126 5077082607790141HQBR6213548000452100 507708260779 286472 180893 S +15:06:59 Slot [160] | NOT FINANCIAL TRANSACTION +15:07:11 Slot [166] | NOT FINANCIAL TRANSACTION +15:07:21 Slot [174] | NOT FINANCIAL TRANSACTION +15:07:26 +Slot[169] 0200 010000 6213544001934758 ------------- 00 887424 000050000000 507701972058030120036213544001934758 507701972058 143551 668899 S +15:07:27 +Slot[164] 0200 301000 6213545000421424 ------------- 00 887426 000000000000 507702415141030010116213545000421424 507702415141 867547 668899 S +15:07:33 +Slot[147] 0200 011000 6688990602800201 ------------- 00 397190 000030000000 507704153184200010006688990602800201 507704153184 675281 621354 S +15:07:33 Slot [178] | NOT FINANCIAL TRANSACTION +15:07:36 Slot [133] | NOT FINANCIAL TRANSACTION +15:07:47 Slot [195] | NOT FINANCIAL TRANSACTION +15:07:47 Slot [189] | NOT FINANCIAL TRANSACTION +15:07:49 +Slot[170] 0200 301000 6213545000421424 ------------- 00 887444 000000000000 507702415142030010116213545000421424 507702415142 226941 668899 S +15:08:02 Slot [183] | NOT FINANCIAL TRANSACTION +15:08:04 Slot [125] | NOT FINANCIAL TRANSACTION +15:08:13 Slot [191] | NOT FINANCIAL TRANSACTION +15:08:25 +Slot[161] 0200 010000 6213545000421424 ------------- 51 887473 000065000000 507702415143030010116213545000421424 507702415143 769118 668899 S +15:08:29 Slot [143] | NOT FINANCIAL TRANSACTION +15:08:39 Slot [181] | NOT FINANCIAL TRANSACTION +15:08:49 Slot [202] | NOT FINANCIAL TRANSACTION +15:08:54 Slot [204] | NOT FINANCIAL TRANSACTION +15:09:04 +Slot[158] 0200 010000 6213545000421424 ------------- 00 887498 000064000000 507702415144030010116213545000421424 507702415144 715624 668899 S +15:09:05 Slot [197] | NOT FINANCIAL TRANSACTION +15:09:09 Slot [182] | NOT FINANCIAL TRANSACTION +15:09:19 +Slot[198] 0200 010000 6213544001817243 ------------- 75 887512 000050000000 507701027857033100026213544001817243 507701027857 700982 668899 S +15:09:21 Slot [213] | NOT FINANCIAL TRANSACTION +15:09:23 +Slot[200] 0200 010000 6688990102208707 ------------- 00 397574 000030000000 507704705207180009006688990102208707 507704705207 868313 621354 S +15:09:31 Slot [177] | NOT FINANCIAL TRANSACTION +15:09:42 Slot [193] | NOT FINANCIAL TRANSACTION +15:09:48 Slot [106] | NOT FINANCIAL TRANSACTION +15:09:51 Slot [165] | NOT FINANCIAL TRANSACTION +15:09:53 Slot [210] | NOT FINANCIAL TRANSACTION +15:10:04 +Slot[153] 0200 010000 6213544001817243 ------------- 75 887538 000050000000 507701027859033100026213544001817243 507701027859 137591 668899 S +15:10:09 Slot [211] | NOT FINANCIAL TRANSACTION +15:10:14 Slot [163] | NOT FINANCIAL TRANSACTION +15:10:17 Slot [187] | NOT FINANCIAL TRANSACTION +15:10:21 Slot [162] | NOT FINANCIAL TRANSACTION +15:10:26 +Slot[206] 0200 301000 2206990000040980 ------------- 00 397801 000000000000 507703891901010105002206990000040980 507703891901 263847 621354 S +15:10:31 +Slot[145] 0200 011000 1808930800004756 ------------- 00 397807 000100000000 507702925222120015001808930800004756 507702925222 996920 621354 S +15:10:36 Slot [221] | NOT FINANCIAL TRANSACTION +15:10:46 Slot [217] | NOT FINANCIAL TRANSACTION +15:10:53 Slot [196] | NOT FINANCIAL TRANSACTION +15:10:53 +Slot[205] 0200 302000 6688990102208707 ------------- 00 397913 000000000000 507704705208180009006688990102208707 507704705208 567472 621354 S +15:10:57 Slot [180] | NOT FINANCIAL TRANSACTION +15:11:02 +Slot[194] 0200 010000 1888880000025122 ------------- 00 397919 000030000000 507704434474030042001888880000025122 507704434474 984728 621354 S +15:11:03 +Slot[214] 0200 011000 2206990000040980 ------------- 00 397939 000050000000 507703891903010105002206990000040980 507703891903 138621 621354 S +15:11:08 Slot [176] | NOT FINANCIAL TRANSACTION +15:11:19 Slot [222] | NOT FINANCIAL TRANSACTION +15:11:19 Slot [190] | NOT FINANCIAL TRANSACTION +15:11:22 +Slot[226] 0200 010000 6213545000206478 ------------- 00 887592 000010000000 507702605243030090076213545000206478 507702605243 563784 668899 S +15:11:29 Slot [184] | NOT FINANCIAL TRANSACTION +15:11:40 Slot [225] | NOT FINANCIAL TRANSACTION +15:11:51 Slot [137] | NOT FINANCIAL TRANSACTION +15:11:55 Slot [224] | NOT FINANCIAL TRANSACTION +15:12:02 Slot [218] | NOT FINANCIAL TRANSACTION +15:12:13 +Slot[173] 0200 010000 1888880000087411 ------------- 00 887619 000010000000 507700788874030050021888880000087411 507700788874 215712 668899 S +15:12:17 Slot [208] | NOT FINANCIAL TRANSACTION +15:12:24 Slot [215] | NOT FINANCIAL TRANSACTION +15:12:28 Slot [207] | NOT FINANCIAL TRANSACTION +15:12:33 Slot [231] | NOT FINANCIAL TRANSACTION +15:12:35 +Slot[223] 0200 010000 6688990050058682 ------------- 00 398275 000025000000 507704794902070015006688990050058682 507704794902 862655 621354 S +15:12:38 Slot [199] | NOT FINANCIAL TRANSACTION +15:12:49 Slot [192] | NOT FINANCIAL TRANSACTION +15:12:57 Slot [188] | NOT FINANCIAL TRANSACTION +15:13:00 Slot [185] | NOT FINANCIAL TRANSACTION +15:13:11 Slot [220] | NOT FINANCIAL TRANSACTION +15:13:21 Slot [229] | NOT FINANCIAL TRANSACTION +15:13:29 Slot [179] | NOT FINANCIAL TRANSACTION +15:13:31 Slot [230] | NOT FINANCIAL TRANSACTION +15:13:35 +Slot[186] 0200 300000 6688990602685503 ------------- 00 398487 000000000000 507704153194200010006688990602685503 507704153194 518500 621354 S +15:13:42 Slot [212] | NOT FINANCIAL TRANSACTION +15:13:53 Slot [236] | NOT FINANCIAL TRANSACTION +15:13:59 Slot [227] | NOT FINANCIAL TRANSACTION +15:14:02 +Slot[232] 0200 300000 6688990050058682 ------------- 00 398573 000000000000 507704794903070015006688990050058682 507704794903 356131 621354 S +15:14:03 Slot [216] | NOT FINANCIAL TRANSACTION +15:14:08 +Slot[219] 0200 302000 1808931700022245 ------------- 42 887680 000000000000 507702147908030200241808931700022245 507702147908 192128 668899 S +15:14:18 Slot [234] | NOT FINANCIAL TRANSACTION +15:14:22 +Slot[235] 0200 010000 6688990107118703 ------------- 55 398647 000020000000 507703432627060016006688990107118703 507703432627 073939 621354 S +15:14:30 Slot [239] | NOT FINANCIAL TRANSACTION +15:14:34 Slot [242] | NOT FINANCIAL TRANSACTION +15:14:38 +Slot[250] 0200 302000 1808931700022245 ------------- 42 887708 000000000000 507702147910030200241808931700022245 507702147910 941442 668899 S +15:14:44 Slot [201] | NOT FINANCIAL TRANSACTION +15:14:45 +Slot[228] 0200 010000 6688990602685503 ------------- 00 398726 000050000000 507704153196200010006688990602685503 507704153196 821448 621354 S +15:14:57 +Slot[252] 0200 301000 2206990000072892 ------------- 00 167181 000000000000 507715167181115290012206990000072892 507715167181 272531 198901 S +15:15:00 Slot [245] | NOT FINANCIAL TRANSACTION +15:15:01 Slot [238] | NOT FINANCIAL TRANSACTION +15:15:11 Slot [240] | NOT FINANCIAL TRANSACTION +15:15:17 Slot [258] | NOT FINANCIAL TRANSACTION +15:15:17 +Slot[203] 0200 302000 6213545001030570 ------------- 00 260829 031808142026 5077082608290261PSL16213545001030570 507708260829 220070 180893 S +15:15:21 +Slot[248] 0200 010000 6688990107118703 ------------- 55 398854 000020000000 507703432629060016006688990107118703 507703432629 291185 621354 S +15:15:23 Slot [247] | NOT FINANCIAL TRANSACTION +15:15:26 Slot [244] | NOT FINANCIAL TRANSACTION +15:15:27 +Slot[253] 0200 011000 2206990000072892 ------------- 00 167190 000100000000 507715167190115290012206990000072892 507715167190 633275 198901 S +15:15:36 Slot [256] | NOT FINANCIAL TRANSACTION +15:15:39 +Slot[243] 0200 300000 6213544002045067 ------------- 00 887743 000000000000 507702355134030180056213544002045067 507702355134 896782 668899 S +15:15:39 Slot [246] | NOT FINANCIAL TRANSACTION +15:15:46 Slot [241] | NOT FINANCIAL TRANSACTION +15:15:49 +Slot[260] 0200 010000 6688990107118703 ------------- 00 398965 000020000000 507703432631060016006688990107118703 507703432631 832141 621354 S +15:15:57 Slot [251] | NOT FINANCIAL TRANSACTION +15:16:03 Slot [273] | NOT FINANCIAL TRANSACTION +15:16:08 Slot [264] | NOT FINANCIAL TRANSACTION +15:16:08 +Slot[265] 0200 011000 2206990000072892 ------------- 00 167202 000045000000 507715167202115290012206990000072892 507715167202 164607 198901 S +15:16:18 Slot [249] | NOT FINANCIAL TRANSACTION +15:16:29 Slot [269] | NOT FINANCIAL TRANSACTION +15:16:44 Slot [209] | NOT FINANCIAL TRANSACTION +15:16:44 Slot [279] | NOT FINANCIAL TRANSACTION +15:16:47 +Slot[268] 0200 011000 6213545001061146 ------------- 00 260838 000030000000 5077082608380461BKPO6213545001061146 507708260838 342953 180893 S +15:16:56 +Slot[233] 0200 010000 6688990602675108 ------------- 64 260840 000150000000 5077082608400369SLVL6688990602675108 507708260840 854369 180893 S +15:17:05 Slot [261] | NOT FINANCIAL TRANSACTION +15:17:07 Slot [257] | NOT FINANCIAL TRANSACTION +15:17:08 +Slot[266] 0200 301000 6688990108232909 ------------- 75 399219 000000000000 507703936842010109006688990108232909 507703936842 294174 621354 S +15:17:16 +Slot[262] 0200 301000 6213544002072939 ------------- 00 887807 000000000000 507702490273032150016213544002072939 507702490273 078703 668899 S +15:17:17 +Slot[270] 0200 301000 6213543000236116 ------------- 00 167215 000000000000 507715167215015290186213543000236116 507715167215 817096 198901 S +15:17:23 +Slot[274] 0200 011000 1808930700009061 ------------- 51 399264 000010000000 507703622928160015001808930700009061 507703622928 642976 621354 S +15:17:33 Slot [284] | NOT FINANCIAL TRANSACTION +15:17:34 Slot [280] | NOT FINANCIAL TRANSACTION +15:17:38 +Slot[263] 0200 011000 6213545000129571 ------------- 00 167222 000020000000 507715167222125290016213545000129571 507715167222 139528 198901 S +15:17:44 Slot [267] | NOT FINANCIAL TRANSACTION +15:17:49 Slot [299] | NOT FINANCIAL TRANSACTION +15:17:51 +Slot[293] 0200 011000 6213544001225629 ------------- 51 260845 000020000000 5077082608450361BLTB6213544001225629 507708260845 046579 180893 S +15:17:54 +Slot[278] 0200 011000 6213543000236116 ------------- 00 167225 000004000000 507715167225015290186213543000236116 507715167225 821606 198901 S +15:17:59 Slot [277] | NOT FINANCIAL TRANSACTION +15:18:04 +Slot[287] 0200 302000 6688990603011808 ------------- 00 399402 000000000000 507704153197200010006688990603011808 507704153197 741621 621354 S +15:18:07 Slot [285] | NOT FINANCIAL TRANSACTION +15:18:09 Slot [289] | NOT FINANCIAL TRANSACTION +15:18:13 +Slot[304] 0200 010000 6213544002072939 ------------- 00 887839 000009000000 507702490274032150016213544002072939 507702490274 069899 668899 S +15:18:19 Slot [254] | NOT FINANCIAL TRANSACTION +15:18:30 +Slot[275] 0200 011000 6688990108232909 ------------- 75 399498 000010000000 507703936844010109006688990108232909 507703936844 510193 621354 S +15:18:35 Slot [276] | NOT FINANCIAL TRANSACTION +15:18:46 Slot [309] | NOT FINANCIAL TRANSACTION +15:18:55 Slot [291] | NOT FINANCIAL TRANSACTION +15:18:57 Slot [259] | NOT FINANCIAL TRANSACTION +15:19:00 +Slot[281] 0200 010000 6688990602675108 ------------- 00 260852 000100000000 5077082608520369SLVL6688990602675108 507708260852 734425 180893 S +15:19:09 Slot [296] | NOT FINANCIAL TRANSACTION +15:19:13 Slot [294] | NOT FINANCIAL TRANSACTION +15:19:24 Slot [286] | NOT FINANCIAL TRANSACTION +15:19:39 +Slot[303] 0200 011000 6688990603011808 ------------- 00 399730 000100000000 507704153199200010006688990603011808 507704153199 125069 621354 S +15:19:39 Slot [298] | NOT FINANCIAL TRANSACTION +15:19:47 +Slot[282] 0200 011000 6688990107777201 ------------- 00 106978 000010000000 507700327669010018006688990107777201 507700327669 956182 220699 S +15:19:50 Slot [271] | NOT FINANCIAL TRANSACTION +15:19:57 +Slot[317] 0200 011000 6213544002059522 ------------- 51 260856 000002000000 5077082608560324BKDT6213544002059522 507708260856 169884 180893 S +15:20:00 Slot [288] | NOT FINANCIAL TRANSACTION +15:20:11 Slot [307] | NOT FINANCIAL TRANSACTION +15:20:12 Slot [237] | NOT FINANCIAL TRANSACTION +15:20:16 Slot [314] | NOT FINANCIAL TRANSACTION +15:20:23 Slot [329] | NOT FINANCIAL TRANSACTION +15:20:34 Slot [315] | NOT FINANCIAL TRANSACTION +15:20:38 Slot [313] | NOT FINANCIAL TRANSACTION +15:20:55 Slot [331] | NOT FINANCIAL TRANSACTION +15:20:58 +Slot[323] 0200 301000 6213544002059522 ------------- 00 260858 031808200226 5077082608580324BKDT6213544002059522 507708260858 143424 180893 S +15:21:05 Slot [324] | NOT FINANCIAL TRANSACTION +15:21:11 Slot [321] | NOT FINANCIAL TRANSACTION +15:21:13 Slot [255] | NOT FINANCIAL TRANSACTION +15:21:14 +Slot[283] 0200 010000 6213543000180173 ------------- 00 887949 000030000000 507702362759030160036213543000180173 507702362759 386331 668899 S +15:21:21 Slot [272] | NOT FINANCIAL TRANSACTION +15:21:22 +Slot[318] 0200 011000 6688990603011808 ------------- 00 400111 000100000000 507704153201200010006688990603011808 507704153201 493377 621354 S +15:21:33 Slot [319] | NOT FINANCIAL TRANSACTION +15:21:43 Slot [326] | NOT FINANCIAL TRANSACTION +15:21:53 +Slot[295] 0200 011000 6688990102945803 ------------- 51 400203 000020000000 507703968678010112006688990102945803 507703968678 077095 621354 S +15:21:57 +Slot[340] 0200 301000 6213544002059522 ------------- 00 260861 031808210126 5077082608610324BKDT6213544002059522 507708260861 162557 180893 S +15:22:08 Slot [302] | NOT FINANCIAL TRANSACTION +15:22:10 +Slot[300] 0200 300000 6213545000204374 ------------- 00 887984 000000000000 507701422706033140016213545000204374 507701422706 243603 668899 S +15:22:10 Slot [336] | NOT FINANCIAL TRANSACTION +15:22:15 Slot [312] | NOT FINANCIAL TRANSACTION +15:22:19 Slot [306] | NOT FINANCIAL TRANSACTION +15:22:30 Slot [325] | NOT FINANCIAL TRANSACTION +15:22:32 +Slot[355] 0200 011000 6688990102945803 ------------- 00 400309 000018000000 507703968680010112006688990102945803 507703968680 772726 621354 S +15:22:34 Slot [311] | NOT FINANCIAL TRANSACTION +15:22:36 +Slot[334] 0200 010000 6688990050038775 ------------- 00 400329 000005000000 507703759871010091006688990050038775 507703759871 496566 621354 S +15:22:41 Slot [316] | NOT FINANCIAL TRANSACTION +15:22:47 +Slot[339] 0200 011000 6688990603011808 ------------- 00 400361 000015000000 507704153203200010006688990603011808 507704153203 834568 621354 S +15:22:56 Slot [301] | NOT FINANCIAL TRANSACTION +15:23:07 Slot [310] | NOT FINANCIAL TRANSACTION +15:23:15 Slot [341] | NOT FINANCIAL TRANSACTION +15:23:17 Slot [308] | NOT FINANCIAL TRANSACTION +15:23:21 +Slot[349] 0200 010000 6213545000204374 ------------- 00 888022 000100000000 507701422708033140016213545000204374 507701422708 461037 668899 S +15:23:23 Slot [297] | NOT FINANCIAL TRANSACTION +15:23:38 Slot [350] | NOT FINANCIAL TRANSACTION +15:23:48 Slot [332] | NOT FINANCIAL TRANSACTION +15:23:59 Slot [352] | NOT FINANCIAL TRANSACTION +15:24:03 +Slot[338] 0200 010000 6213541000537574 ------------- 00 888058 000100000000 507701196645030200116213541000537574 507701196645 464982 668899 S +15:24:09 Slot [328] | NOT FINANCIAL TRANSACTION +15:24:18 +Slot[364] 0200 010000 6213545000204374 ------------- 00 888071 000100000000 507701422710033140016213545000204374 507701422710 370090 668899 S +15:24:19 Slot [345] | NOT FINANCIAL TRANSACTION +15:24:19 Slot [343] | NOT FINANCIAL TRANSACTION +15:24:20 Slot [305] | NOT FINANCIAL TRANSACTION +15:24:30 Slot [354] | NOT FINANCIAL TRANSACTION +15:24:41 Slot [337] | NOT FINANCIAL TRANSACTION +15:24:53 Slot [330] | NOT FINANCIAL TRANSACTION +15:25:02 +Slot[320] 0200 011000 1808931700002486 ------------- 00 400777 000050000000 507703936860010109001808931700002486 507703936860 362876 621354 S +15:25:03 +Slot[335] 0200 010000 6213545000204374 ------------- 00 888098 000100000000 507701422712033140016213545000204374 507701422712 581764 668899 S +15:25:08 Slot [342] | NOT FINANCIAL TRANSACTION +15:25:16 Slot [347] | NOT FINANCIAL TRANSACTION +15:25:17 +Slot[369] 0200 010000 6688990040153015 ------------- 55 260884 000010000000 5077082608840369SLVL6688990040153015 507708260884 433303 180893 S +15:25:20 +Slot[366] 0200 010000 6213541000125289 ------------- 00 888111 000100000000 507700303861030130016213541000125289 507700303861 541060 668899 S +15:25:21 Slot [290] | NOT FINANCIAL TRANSACTION +15:25:25 Slot [292] | NOT FINANCIAL TRANSACTION +15:25:30 Slot [374] | NOT FINANCIAL TRANSACTION +15:25:40 Slot [333] | NOT FINANCIAL TRANSACTION +15:25:50 Slot [384] | NOT FINANCIAL TRANSACTION +15:25:58 +Slot[365] 0200 011000 6688990600073306 ------------- 00 167358 000100000000 507715167358015290146688990600073306 507715167358 062251 198901 S +15:26:01 Slot [327] | NOT FINANCIAL TRANSACTION +15:26:12 Slot [360] | NOT FINANCIAL TRANSACTION +15:26:23 Slot [358] | NOT FINANCIAL TRANSACTION +15:26:24 Slot [353] | NOT FINANCIAL TRANSACTION +15:26:30 Slot [373] | NOT FINANCIAL TRANSACTION +15:26:35 Slot [372] | NOT FINANCIAL TRANSACTION +15:26:41 +Slot[380] 0200 011000 6688990600073306 ------------- 00 167367 000060000000 507715167367015290146688990600073306 507715167367 623307 198901 S +15:26:46 +Slot[362] 0200 302000 6688990040153015 ------------- 00 260891 031808254926 5077082608910369SLVL6688990040153015 507708260891 346644 180893 S +15:26:56 Slot [382] | NOT FINANCIAL TRANSACTION +15:27:12 +Slot[322] 0200 010000 6688990040035915 ------------- 00 401200 000010000000 507703622951160015006688990040035915 507703622951 624491 621354 S +15:27:12 Slot [379] | NOT FINANCIAL TRANSACTION +15:27:16 +Slot[348] 0200 010000 6213542000025685 ------------- 00 106981 000100000000 507700327671010018006213542000025685 507700327671 189123 220699 S +15:27:23 Slot [361] | NOT FINANCIAL TRANSACTION +15:27:25 Slot [377] | NOT FINANCIAL TRANSACTION +15:27:34 Slot [378] | NOT FINANCIAL TRANSACTION +15:27:35 Slot [363] | NOT FINANCIAL TRANSACTION +15:27:38 +Slot[346] 0200 011000 6213548000058105 ------------- 00 167376 000020000000 507715167376015290316213548000058105 507715167376 946062 198901 S +15:27:39 Slot [370] | NOT FINANCIAL TRANSACTION +15:27:49 Slot [371] | NOT FINANCIAL TRANSACTION +15:27:56 +Slot[385] 0200 301000 6688990602678102 ------------- 00 401361 000000000000 507704153205200010006688990602678102 507704153205 817702 621354 S +15:28:00 +Slot[344] 0200 010000 6213542000025685 ------------- 00 106984 000100000000 507700327673010018006213542000025685 507700327673 379292 220699 S +15:28:00 Slot [367] | NOT FINANCIAL TRANSACTION +15:28:10 Slot [351] | NOT FINANCIAL TRANSACTION +15:28:21 Slot [397] | NOT FINANCIAL TRANSACTION +15:28:27 Slot [386] | NOT FINANCIAL TRANSACTION +15:28:32 Slot [388] | NOT FINANCIAL TRANSACTION +15:28:40 Slot [410] | NOT FINANCIAL TRANSACTION +15:28:44 +Slot[359] 0200 012000 1808930900009887 ------------- 42 401576 000010000000 507703015638120024001808930900009887 507703015638 616575 621354 S +15:28:53 Slot [357] | NOT FINANCIAL TRANSACTION +15:29:09 Slot [401] | NOT FINANCIAL TRANSACTION +15:29:18 +Slot[408] 0200 011000 6688990602678102 ------------- 00 401675 000100000000 507704153207200010006688990602678102 507704153207 541420 621354 S +15:29:19 Slot [414] | NOT FINANCIAL TRANSACTION +15:29:29 Slot [413] | NOT FINANCIAL TRANSACTION +15:29:29 Slot [398] | NOT FINANCIAL TRANSACTION +15:29:45 Slot [393] | NOT FINANCIAL TRANSACTION +15:29:46 +Slot[403] 0200 301000 1808930100005172 ------------- 55 401787 000000000000 507703544436090011001808930100005172 507703544436 954453 621354 S +15:29:55 Slot [420] | NOT FINANCIAL TRANSACTION +15:30:02 +Slot[392] 0200 301000 1808930100005172 ------------- 00 401853 000000000000 507703544437090011001808930100005172 507703544437 549877 621354 S +15:30:11 Slot [416] | NOT FINANCIAL TRANSACTION +15:30:17 Slot [391] | NOT FINANCIAL TRANSACTION +15:30:22 Slot [425] | NOT FINANCIAL TRANSACTION +15:30:31 Slot [418] | NOT FINANCIAL TRANSACTION +15:30:36 +Slot[383] 0200 011000 6688990602678102 ------------- 00 401981 000100000000 507704153209200010006688990602678102 507704153209 019805 621354 S +15:30:39 Slot [387] | NOT FINANCIAL TRANSACTION +15:30:41 +Slot[415] 0200 010000 6213545000412779 ------------- 61 260907 000200000000 5077082609070201ADD16213545000412779 507708260907 992733 180893 S +15:30:50 Slot [396] | NOT FINANCIAL TRANSACTION +15:30:54 Slot [431] | NOT FINANCIAL TRANSACTION +15:30:57 +Slot[423] 0200 011000 2206991200060481 ------------- 00 402039 000025000000 507704011881010117002206991200060481 507704011881 601881 621354 S +15:31:04 +Slot[429] 0200 010000 6213544001637831 ------------- 51 260910 000100000000 5077082609100463LNTN6213544001637831 507708260910 758772 180893 S +15:31:15 Slot [402] | NOT FINANCIAL TRANSACTION +15:31:20 Slot [395] | NOT FINANCIAL TRANSACTION +15:31:27 Slot [400] | NOT FINANCIAL TRANSACTION +15:31:33 Slot [417] | NOT FINANCIAL TRANSACTION +15:31:37 +Slot[381] 0200 301000 1808930500010301 ------------- 00 402183 000000000000 507704161845200011001808930500010301 507704161845 736880 621354 S +15:31:39 +Slot[375] 0200 011000 6688990602678102 ------------- 00 402187 000100000000 507704153211200010006688990602678102 507704153211 180646 621354 S +15:31:40 +Slot[399] 0200 010000 6213544001637831 ------------- 00 260913 000010000000 5077082609130463LNTN6213544001637831 507708260913 416737 180893 S +15:31:52 +Slot[428] 0200 010000 6213545000412779 ------------- 00 260916 000050000000 5077082609160201ADD16213545000412779 507708260916 509580 180893 S +15:31:55 Slot [438] | NOT FINANCIAL TRANSACTION +15:32:02 Slot [406] | NOT FINANCIAL TRANSACTION +15:32:05 Slot [437] | NOT FINANCIAL TRANSACTION +15:32:13 Slot [419] | NOT FINANCIAL TRANSACTION +15:32:23 Slot [445] | NOT FINANCIAL TRANSACTION +15:32:34 Slot [427] | NOT FINANCIAL TRANSACTION +15:32:34 Slot [422] | NOT FINANCIAL TRANSACTION +15:32:35 Slot [404] | NOT FINANCIAL TRANSACTION +15:32:45 Slot [368] | NOT FINANCIAL TRANSACTION +15:32:46 +Slot[394] 0200 011000 6688990602678102 ------------- 00 402414 000100000000 507704153213200010006688990602678102 507704153213 109551 621354 S +15:32:47 +Slot[452] 0200 301000 6213545000598528 ------------- 00 260921 031808315226 5077082609210441VT526213545000598528 507708260921 414874 180893 S +15:33:00 Slot [448] | NOT FINANCIAL TRANSACTION +15:33:00 Slot [356] | NOT FINANCIAL TRANSACTION +15:33:16 Slot [442] | NOT FINANCIAL TRANSACTION +15:33:23 +Slot[411] 0200 010000 6213541000338890 ------------- 00 260923 000100000000 5077082609230223XKKH6213541000338890 507708260923 317099 180893 S +15:33:28 +Slot[440] 0200 010000 6213545000598528 ------------- 00 260926 000010000000 5077082609260441VT526213545000598528 507708260926 658691 180893 S +15:33:36 Slot [443] | NOT FINANCIAL TRANSACTION +15:33:37 Slot [389] | NOT FINANCIAL TRANSACTION +15:33:47 Slot [465] | NOT FINANCIAL TRANSACTION +15:33:57 Slot [424] | NOT FINANCIAL TRANSACTION +15:34:02 +Slot[439] 0200 011000 6688990602690404 ------------- 00 402679 000060000000 507704153215200010006688990602690404 507704153215 601894 621354 S +15:34:05 Slot [390] | NOT FINANCIAL TRANSACTION +15:34:12 Slot [435] | NOT FINANCIAL TRANSACTION +15:34:23 Slot [376] | NOT FINANCIAL TRANSACTION +15:34:36 +Slot[430] 0200 300000 6213545000366173 ------------- 00 888484 000000000000 507702556017030160046213545000366173 507702556017 885794 668899 S +15:34:37 +Slot[421] 0200 010000 2206991200043559 ------------- 00 402800 000015000000 507703601015160013002206991200043559 507703601015 608769 621354 S +15:34:39 Slot [447] | NOT FINANCIAL TRANSACTION +15:34:39 Slot [460] | NOT FINANCIAL TRANSACTION +15:34:54 Slot [441] | NOT FINANCIAL TRANSACTION +15:35:00 +Slot[456] 0200 300000 6213545000366173 ------------- 00 888504 000000000000 507702556018030160046213545000366173 507702556018 999166 668899 S +15:35:05 Slot [463] | NOT FINANCIAL TRANSACTION +15:35:10 Slot [462] | NOT FINANCIAL TRANSACTION +15:35:16 Slot [405] | NOT FINANCIAL TRANSACTION +15:35:17 Slot [434] | NOT FINANCIAL TRANSACTION +15:35:32 Slot [449] | NOT FINANCIAL TRANSACTION +15:35:41 Slot [407] | NOT FINANCIAL TRANSACTION +15:35:42 Slot [409] | NOT FINANCIAL TRANSACTION +15:35:51 +Slot[475] 0200 010000 6213545000366173 ------------- 00 888536 000010000000 507702556019030160046213545000366173 507702556019 367090 668899 S +15:35:52 +Slot[412] 0200 010000 6688990700204405 ------------- 00 403061 000030000000 507702410473050025006688990700204405 507702410473 161952 621354 S +15:35:53 Slot [469] | NOT FINANCIAL TRANSACTION +15:36:03 Slot [457] | NOT FINANCIAL TRANSACTION +15:36:14 Slot [489] | NOT FINANCIAL TRANSACTION +15:36:15 Slot [482] | NOT FINANCIAL TRANSACTION +15:36:23 +Slot[479] 0200 301000 6213544001838504 ------------- 00 888564 000000000000 507702355138030180056213544001838504 507702355138 335557 668899 S +15:36:24 Slot [444] | NOT FINANCIAL TRANSACTION +15:36:36 Slot [450] | NOT FINANCIAL TRANSACTION +15:36:43 Slot [478] | NOT FINANCIAL TRANSACTION +15:36:50 Slot [433] | NOT FINANCIAL TRANSACTION +15:36:53 +Slot[459] 0200 010000 6213544001838504 ------------- 00 888586 000030000000 507702355139030180056213544001838504 507702355139 661748 668899 S +15:36:58 +Slot[467] 0200 012000 1888880000052522 ------------- 00 403273 000030000000 507703205422040030001888880000052522 507703205422 844863 621354 S +15:37:02 Slot [490] | NOT FINANCIAL TRANSACTION +15:37:12 Slot [483] | NOT FINANCIAL TRANSACTION +15:37:20 Slot [474] | NOT FINANCIAL TRANSACTION +15:37:29 Slot [453] | NOT FINANCIAL TRANSACTION +15:37:31 +Slot[472] 0200 011000 6688990106966003 ------------- 00 260940 000004000000 5077082609400102SAPA6688990106966003 507708260940 579463 180893 S +15:37:34 Slot [432] | NOT FINANCIAL TRANSACTION +15:37:43 Slot [485] | NOT FINANCIAL TRANSACTION +15:37:45 Slot [468] | NOT FINANCIAL TRANSACTION +15:37:50 +Slot[455] 0200 010000 6213545000476295 ------------- 61 260943 000200000000 5077082609430366SKTT6213545000476295 507708260943 467415 180893 S +15:37:59 Slot [487] | NOT FINANCIAL TRANSACTION +15:38:16 +Slot[426] 0200 010000 6213545000476295 ------------- 61 260946 000200000000 5077082609460366SKTT6213545000476295 507708260946 302637 180893 S +15:38:25 Slot [461] | NOT FINANCIAL TRANSACTION +15:38:28 Slot [498] | NOT FINANCIAL TRANSACTION +15:38:36 +Slot[455] 0200 011000 6688990602690701 ------------- 00 403639 000100000000 507704153232200010006688990602690701 507704153232 485374 621354 S +15:38:41 Slot [446] | NOT FINANCIAL TRANSACTION +15:38:47 Slot [450] | NOT FINANCIAL TRANSACTION +15:38:51 Slot [471] | NOT FINANCIAL TRANSACTION +15:39:07 Slot [436] | NOT FINANCIAL TRANSACTION +15:39:16 +Slot[491] 0200 300000 6213541000642424 ------------- 00 410146 000000000000 507700135012010012006213541000642424 507700135012 812975 123401 S +15:39:22 Slot [476] | NOT FINANCIAL TRANSACTION +15:39:30 Slot [486] | NOT FINANCIAL TRANSACTION +15:39:33 Slot [497] | NOT FINANCIAL TRANSACTION +15:39:39 +Slot[473] 0200 011000 6688990602690701 ------------- 00 403878 000100000000 507704153234200010006688990602690701 507704153234 034822 621354 S +15:39:44 Slot [7] | NOT FINANCIAL TRANSACTION +15:39:49 Slot [2] | NOT FINANCIAL TRANSACTION +15:39:57 +Slot[499] 0200 010000 6213541000642424 ------------- 00 410148 000002000000 507700135013010012006213541000642424 507700135013 926838 123401 S +15:40:01 +Slot[464] 0200 301000 6213545001115686 ------------- 00 260953 031808390426 5077082609530102SAPA6213545001115686 507708260953 036826 180893 S +15:40:10 Slot [492] | NOT FINANCIAL TRANSACTION +15:40:17 Slot [470] | NOT FINANCIAL TRANSACTION +15:40:24 +Slot[495] 0200 301000 6213544000230661 ------------- 00 260955 031808392726 5077082609550401XSBR6213544000230661 507708260955 971222 180893 S +15:40:35 Slot [451] | NOT FINANCIAL TRANSACTION +15:40:37 Slot [18] | NOT FINANCIAL TRANSACTION +15:40:42 +Slot[477] 0200 011000 6688990602690701 ------------- 00 404086 000100000000 507704153236200010006688990602690701 507704153236 314357 621354 S +15:40:48 Slot [24] | NOT FINANCIAL TRANSACTION +15:40:51 Slot [14] | NOT FINANCIAL TRANSACTION +15:40:59 Slot [454] | NOT FINANCIAL TRANSACTION +15:41:10 Slot [466] | NOT FINANCIAL TRANSACTION +15:41:13 +Slot[480] 0200 011000 6213545001115686 ------------- 61 260961 000170000000 5077082609610102SAPA6213545001115686 507708260961 109272 180893 S +15:41:24 +Slot[484] 0200 301000 6688990040098418 ------------- 00 404263 000000000000 507703364905130016006688990040098418 507703364905 322891 621354 S +15:41:25 Slot [488] | NOT FINANCIAL TRANSACTION +15:41:36 Slot [458] | NOT FINANCIAL TRANSACTION +15:41:39 +Slot[493] 0200 011000 6688990602690701 ------------- 00 404329 000100000000 507704153238200010006688990602690701 507704153238 229622 621354 S +15:41:40 Slot [22] | NOT FINANCIAL TRANSACTION +15:41:44 +Slot[3] 0200 301000 1989000000177314 ------------- 55 404356 000000000000 507703835417010099001989000000177314 507703835417 090674 621354 S +15:41:47 Slot [12] | NOT FINANCIAL TRANSACTION +15:41:53 Slot [481] | NOT FINANCIAL TRANSACTION +15:42:00 Slot [0] | NOT FINANCIAL TRANSACTION +15:42:06 Slot [16] | NOT FINANCIAL TRANSACTION +15:42:13 Slot [4] | NOT FINANCIAL TRANSACTION +15:42:14 +Slot[1] 0200 011000 6688990040098418 ------------- 00 404483 000020000000 507703364907130016006688990040098418 507703364907 002511 621354 S +15:42:21 +Slot[5] 0200 011000 6213545001115686 ------------- 61 260970 000170000000 5077082609700102SAPA6213545001115686 507708260970 586902 180893 S +15:42:34 Slot [21] | NOT FINANCIAL TRANSACTION +15:42:35 Slot [31] | NOT FINANCIAL TRANSACTION +15:42:40 +Slot[15] 0200 011000 6688990602690701 ------------- 00 404598 000030000000 507704153240200010006688990602690701 507704153240 252032 621354 S +15:42:44 +Slot[496] 0200 301000 6213545001115686 ------------- 00 260971 031808414626 5077082609710102SAPA6213545001115686 507708260971 404441 180893 S +15:42:45 Slot [26] | NOT FINANCIAL TRANSACTION +15:42:55 Slot [8] | NOT FINANCIAL TRANSACTION +15:42:56 Slot [23] | NOT FINANCIAL TRANSACTION +15:43:07 Slot [10] | NOT FINANCIAL TRANSACTION +15:43:22 Slot [6] | NOT FINANCIAL TRANSACTION +15:43:33 Slot [9] | NOT FINANCIAL TRANSACTION +15:43:46 +Slot[46] 0200 010000 6213545001115686 ------------- 61 260976 000150000000 5077082609760102SAPA6213545001115686 507708260976 868639 180893 S +15:43:50 Slot [27] | NOT FINANCIAL TRANSACTION +15:43:57 Slot [11] | NOT FINANCIAL TRANSACTION +15:43:59 Slot [25] | NOT FINANCIAL TRANSACTION +15:44:09 +Slot[28] 0200 011000 1808931400006373 ------------- 00 404957 000010000000 507704681882180007001808931400006373 507704681882 420074 621354 S +15:44:15 Slot [30] | NOT FINANCIAL TRANSACTION +15:44:30 +Slot[56] 0200 301000 1808931800013227 ------------- 00 405062 000000000000 507704634209170008001808931800013227 507704634209 947147 621354 S +15:44:35 Slot [20] | NOT FINANCIAL TRANSACTION +15:44:44 +Slot[42] 0200 010000 6213545001115686 ------------- 61 260982 000150000000 5077082609820102SAPA6213545001115686 507708260982 797036 180893 S +15:44:46 +Slot[494] 0200 010000 1888880000002717 ------------- 00 405097 000010000000 507704313882030030001888880000002717 507704313882 241804 621354 S +15:44:47 +Slot[34] 0200 010000 6213545000809867 ------------- 00 260981 000050000000 5077082609810363CPSH6213545000809867 507708260981 949567 180893 S +15:44:55 Slot [36] | NOT FINANCIAL TRANSACTION +15:44:56 Slot [39] | NOT FINANCIAL TRANSACTION +15:44:59 Slot [32] | NOT FINANCIAL TRANSACTION +15:45:07 Slot [38] | NOT FINANCIAL TRANSACTION +15:45:17 Slot [41] | NOT FINANCIAL TRANSACTION +15:45:19 +Slot[52] 0200 010000 6213545001115686 ------------- 00 260988 000100000000 5077082609880102SAPA6213545001115686 507708260988 576858 180893 S +15:45:30 +Slot[47] 0200 011000 1808931800013227 ------------- 00 405294 000100000000 507704634211170008001808931800013227 507704634211 907432 621354 S +15:45:33 Slot [40] | NOT FINANCIAL TRANSACTION +15:45:36 +Slot[44] 0200 301000 6213541000642424 ------------- 00 167645 000000000000 507715167645015290296213541000642424 507715167645 202078 198901 S +15:45:48 Slot [13] | NOT FINANCIAL TRANSACTION +15:46:00 Slot [19] | NOT FINANCIAL TRANSACTION +15:46:00 Slot [37] | NOT FINANCIAL TRANSACTION +15:46:01 Slot [57] | NOT FINANCIAL TRANSACTION +15:46:12 +Slot[54] 0200 011000 6213545001115686 ------------- 00 260996 000070000000 5077082609960102SAPA6213545001115686 507708260996 860275 180893 S +15:46:16 +Slot[59] 0200 010000 6213543000021492 ------------- 00 888980 000050000000 507700285533030100056213543000021492 507700285533 717442 668899 S +15:46:21 Slot [61] | NOT FINANCIAL TRANSACTION +15:46:30 +Slot[58] 0200 011000 6213541000642424 ------------- 00 167660 000002000000 507715167660015290296213541000642424 507715167660 224786 198901 S +15:46:42 +Slot[55] 0200 011000 1808931800013227 ------------- 00 405618 000090000000 507704634213170008001808931800013227 507704634213 803859 621354 S +15:46:46 Slot [51] | NOT FINANCIAL TRANSACTION +15:46:57 Slot [29] | NOT FINANCIAL TRANSACTION +15:47:03 Slot [17] | NOT FINANCIAL TRANSACTION +15:47:05 Slot [60] | NOT FINANCIAL TRANSACTION +15:47:09 Slot [48] | NOT FINANCIAL TRANSACTION +15:47:13 +Slot[72] 0200 010000 6213545001058670 ------------- 00 889005 000014000000 507701027861033100026213545001058670 507701027861 486531 668899 S +15:47:23 Slot [63] | NOT FINANCIAL TRANSACTION +15:47:34 Slot [35] | NOT FINANCIAL TRANSACTION +15:47:37 +Slot[71] 0200 301000 1808931800013227 ------------- 00 405818 000000000000 507704634214170008001808931800013227 507704634214 641004 621354 S +15:47:44 Slot [67] | NOT FINANCIAL TRANSACTION +15:48:00 Slot [80] | NOT FINANCIAL TRANSACTION +15:48:05 Slot [49] | NOT FINANCIAL TRANSACTION +15:48:10 Slot [53] | NOT FINANCIAL TRANSACTION +15:48:15 Slot [79] | NOT FINANCIAL TRANSACTION +15:48:25 Slot [83] | NOT FINANCIAL TRANSACTION +15:48:36 Slot [85] | NOT FINANCIAL TRANSACTION +15:48:46 Slot [78] | NOT FINANCIAL TRANSACTION +15:48:47 Slot [75] | NOT FINANCIAL TRANSACTION +15:48:56 Slot [68] | NOT FINANCIAL TRANSACTION +15:49:07 +Slot[73] 0420 011000 6688990040128926 ------------- 00 406096 000010000000 507703985523010114006688990040128926 507703985523 -------- 621354 S +15:49:07 Slot [43] | NOT FINANCIAL TRANSACTION +15:49:13 +Slot[91] 0200 010000 6213545000476295 ------------- 00 261013 000100000000 5077082610130366SKTT6213545000476295 507708261013 716734 180893 S +15:49:15 Slot [77] | NOT FINANCIAL TRANSACTION +15:49:22 Slot [89] | NOT FINANCIAL TRANSACTION +15:49:32 Slot [65] | NOT FINANCIAL TRANSACTION +15:49:33 +Slot[76] 0200 011000 6688990060026877 ------------- 00 406335 000050000000 507704153245200010006688990060026877 507704153245 782448 621354 S +15:49:43 Slot [88] | NOT FINANCIAL TRANSACTION +15:49:55 Slot [86] | NOT FINANCIAL TRANSACTION +15:49:58 +Slot[66] 0200 010000 6213545000476295 ------------- 00 261019 000100000000 5077082610190366SKTT6213545000476295 507708261019 830939 180893 S +15:49:59 +Slot[94] 0200 301000 6688990040128926 ------------- 00 406422 000000000000 507703985524010114006688990040128926 507703985524 880778 621354 S +15:50:09 Slot [93] | NOT FINANCIAL TRANSACTION +15:50:10 Slot [74] | NOT FINANCIAL TRANSACTION +15:50:17 Slot [33] | NOT FINANCIAL TRANSACTION +15:50:19 +Slot[101] 0420 011000 6688990040128926 0000000000000 00 406096 000010000000 507703985523010114006688990040128926 507703985523 -------- 621354 S +15:50:20 Slot [103] | NOT FINANCIAL TRANSACTION +15:50:20 Slot [102] | NOT FINANCIAL TRANSACTION +15:50:26 +Slot[105] 0200 010000 6213545000994081 ------------- 00 261026 000050000000 5077082610260301LPBX6213545000994081 507708261026 349785 180893 S +15:50:27 +Slot[95] 0200 010000 6213544001399481 ------------- 00 261027 000050000000 5077082610270362CPSU6213544001399481 507708261027 891990 180893 S +15:50:40 Slot [50] | NOT FINANCIAL TRANSACTION +15:50:41 +Slot[70] 0200 302000 6213544000044229 ------------- 00 889106 000000000000 507701541179030200166213544000044229 507701541179 446996 668899 S +15:50:49 +Slot[81] 0200 011000 6213544001108965 ------------- 00 261032 000025000000 5077082610320110VTBR6213544001108965 507708261032 457965 180893 S +15:50:52 +Slot[92] 0200 010000 6213545000476295 ------------- 00 261034 000100000000 5077082610340366SKTT6213545000476295 507708261034 569013 180893 S +15:50:57 +Slot[45] 0200 011000 6688990040128926 ------------- 91 406096 000010000000 507703985523010114006688990040128926 507703985523 294407 621354 S +15:51:02 Slot [107] | NOT FINANCIAL TRANSACTION +15:51:11 Slot [114] | NOT FINANCIAL TRANSACTION +15:51:12 Slot [104] | NOT FINANCIAL TRANSACTION +15:51:25 Slot [100] | NOT FINANCIAL TRANSACTION +15:51:27 Slot [82] | NOT FINANCIAL TRANSACTION +15:51:39 +Slot[108] 0200 011000 6688990060027008 ------------- 00 406922 000100000000 507704153247200010006688990060027008 507704153247 286888 621354 S +15:51:43 Slot [69] | NOT FINANCIAL TRANSACTION +15:51:52 +Slot[87] 0200 010000 6213542000022872 ------------- 00 889181 000100000000 507700493609030010066213542000022872 507700493609 357249 668899 S +15:51:53 Slot [122] | NOT FINANCIAL TRANSACTION +15:52:03 Slot [117] | NOT FINANCIAL TRANSACTION +15:52:13 Slot [119] | NOT FINANCIAL TRANSACTION +15:52:14 Slot [96] | NOT FINANCIAL TRANSACTION +15:52:23 +Slot[115] 0200 010000 6213545000476295 ------------- 00 261046 000050000000 5077082610460366SKTT6213545000476295 507708261046 216776 180893 S +15:52:30 Slot [110] | NOT FINANCIAL TRANSACTION +15:52:34 Slot [64] | NOT FINANCIAL TRANSACTION +15:52:35 Slot [136] | NOT FINANCIAL TRANSACTION +15:52:45 Slot [62] | NOT FINANCIAL TRANSACTION +15:52:52 Slot [124] | NOT FINANCIAL TRANSACTION +15:52:56 Slot [97] | NOT FINANCIAL TRANSACTION +15:53:04 +Slot[113] 0200 011000 6688990060027008 ------------- 00 407383 000100000000 507704153249200010006688990060027008 507704153249 659463 621354 S +15:53:12 +Slot[98] 0200 010000 6213545000867220 ------------- 00 261050 000100000000 5077082610500366SKTT6213545000867220 507708261050 987610 180893 S +15:53:15 Slot [90] | NOT FINANCIAL TRANSACTION +15:53:16 +Slot[84] 0200 011000 6688990040135533 ------------- 00 407458 000010000000 507705106855200013006688990040135533 507705106855 856992 621354 S +15:53:17 +Slot[121] 0200 301000 6688990060026786 ------------- 00 261051 031808521726 5077082610510369SLVL6688990060026786 507708261051 005572 180893 S +15:53:28 Slot [159] | NOT FINANCIAL TRANSACTION +15:53:35 Slot [134] | NOT FINANCIAL TRANSACTION +15:53:40 Slot [112] | NOT FINANCIAL TRANSACTION +15:53:50 Slot [144] | NOT FINANCIAL TRANSACTION +15:54:02 +Slot[99] 0200 011000 6688990060026786 ------------- 00 261056 000080000000 5077082610560369SLVL6688990060026786 507708261056 566079 180893 S +15:54:10 Slot [128] | NOT FINANCIAL TRANSACTION +15:54:13 +Slot[142] 0200 010000 6213545000867220 ------------- 00 261058 000100000000 5077082610580366SKTT6213545000867220 507708261058 778606 180893 S +15:54:14 +Slot[111] 0200 011000 6688990060026802 ------------- 00 407738 000020000000 507704153251200010006688990060026802 507704153251 291244 621354 S +15:54:17 Slot [148] | NOT FINANCIAL TRANSACTION +15:54:26 Slot [149] | NOT FINANCIAL TRANSACTION +15:54:39 Slot [126] | NOT FINANCIAL TRANSACTION +15:54:40 Slot [140] | NOT FINANCIAL TRANSACTION +15:54:54 Slot [109] | NOT FINANCIAL TRANSACTION +15:54:57 +Slot[155] 0200 010000 6688990601466509 ------------- 64 261062 000200000000 5077082610620369SLVL6688990601466509 507708261062 689839 180893 S +15:55:02 +Slot[127] 0200 010000 6213545000867220 ------------- 00 261064 000100000000 5077082610640366SKTT6213545000867220 507708261064 473714 180893 S +15:55:15 Slot [131] | NOT FINANCIAL TRANSACTION +15:55:17 Slot [151] | NOT FINANCIAL TRANSACTION +15:55:19 Slot [139] | NOT FINANCIAL TRANSACTION +15:55:30 Slot [150] | NOT FINANCIAL TRANSACTION +15:55:36 +Slot[146] 0200 011000 6688990601492703 ------------- 00 408080 000020000000 507704153253200010006688990601492703 507704153253 946937 621354 S +15:55:40 +Slot[123] 0200 010000 6688990601466509 ------------- 00 261067 000010000000 5077082610670369SLVL6688990601466509 507708261067 247560 180893 S +15:55:45 Slot [154] | NOT FINANCIAL TRANSACTION +15:55:51 Slot [138] | NOT FINANCIAL TRANSACTION +15:56:01 +Slot[118] 0200 010000 6213545000867220 ------------- 00 261073 000100000000 5077082610730366SKTT6213545000867220 507708261073 742820 180893 S +15:56:11 +Slot[157] 0200 301000 6213545001098403 ------------- 00 261074 031808551426 5077082610740363CPSH6213545001098403 507708261074 705281 180893 S +15:56:17 +Slot[132] 0200 010000 6213544001361978 ------------- 00 889343 000020000000 507702294585030090066213544001361978 507702294585 187449 668899 S +15:56:21 Slot [152] | NOT FINANCIAL TRANSACTION +15:56:24 Slot [135] | NOT FINANCIAL TRANSACTION +15:56:36 Slot [167] | NOT FINANCIAL TRANSACTION +15:56:40 +Slot[171] 0200 010000 6688990601466509 ------------- 00 261077 000010000000 5077082610770369SLVL6688990601466509 507708261077 451791 180893 S +15:56:41 +Slot[116] 0200 010000 6213545000867220 ------------- 00 261079 000010000000 5077082610790366SKTT6213545000867220 507708261079 190956 180893 S +15:56:50 Slot [120] | NOT FINANCIAL TRANSACTION +15:56:52 Slot [168] | NOT FINANCIAL TRANSACTION +15:57:00 +Slot[156] 0200 010000 6688990040055467 ------------- 00 408469 000010000000 507704226835050046006688990040055467 507704226835 045404 621354 S +15:57:07 Slot [129] | NOT FINANCIAL TRANSACTION +15:57:16 +Slot[130] 0200 010000 6213545000227888 ------------- 05 254565 000010000000 507700094244010009006213545000227888 507700094244 481347 220699 S +15:57:18 Slot [141] | NOT FINANCIAL TRANSACTION +15:57:23 Slot [175] | NOT FINANCIAL TRANSACTION +15:57:27 +Slot[172] 0200 010000 6213545000867220 ------------- 00 261083 000010000000 5077082610830366SKTT6213545000867220 507708261083 186501 180893 S +15:57:34 Slot [166] | NOT FINANCIAL TRANSACTION +15:57:38 +Slot[160] 0200 011000 6213545001098403 ------------- 00 261085 000030000000 5077082610850363CPSH6213545001098403 507708261085 070200 180893 S +15:57:49 +Slot[174] 0200 301000 1808931800010199 ------------- 00 408694 000000000000 507704650315170010001808931800010199 507704650315 560506 621354 S +15:57:50 +Slot[169] 0200 010000 6213545000227888 ------------- 00 254568 000010000000 507700094246010009006213545000227888 507700094246 719195 220699 S +15:57:55 Slot [164] | NOT FINANCIAL TRANSACTION +15:57:56 Slot [147] | NOT FINANCIAL TRANSACTION +15:58:07 Slot [178] | NOT FINANCIAL TRANSACTION +15:58:18 Slot [133] | NOT FINANCIAL TRANSACTION +15:58:23 +Slot[195] 0200 012000 1808930800002933 ------------- 42 408832 000050000000 507702925244120015001808930800002933 507702925244 027935 621354 S +15:58:25 Slot [170] | NOT FINANCIAL TRANSACTION +15:58:30 +Slot[189] 0200 010000 1808931700022047 ------------- 00 408852 000005000000 507702902768010083001808931700022047 507702902768 897223 621354 S +15:58:33 +Slot[183] 0200 011000 1808930200046498 ------------- 00 124149 000100000000 507700063193010006001808930200046498 507700063193 788505 220699 S +15:58:39 +Slot[125] 0200 011000 1808931800010199 ------------- 00 408892 000050000000 507704650317170010001808931800010199 507704650317 856377 621354 S +15:58:40 +Slot[191] 0200 010000 6688990106824509 ------------- 00 261091 000010000000 5077082610910324BKDT6688990106824509 507708261091 264095 180893 S +15:58:49 Slot [161] | NOT FINANCIAL TRANSACTION +15:59:00 Slot [143] | NOT FINANCIAL TRANSACTION +15:59:05 Slot [181] | NOT FINANCIAL TRANSACTION +15:59:16 Slot [202] | NOT FINANCIAL TRANSACTION +15:59:24 +Slot[204] 0200 010000 6688990106824509 ------------- 00 261095 000010000000 5077082610950324BKDT6688990106824509 507708261095 367782 180893 S +15:59:27 Slot [197] | NOT FINANCIAL TRANSACTION +15:59:28 +Slot[158] 0200 010000 1808930800002933 ------------- 51 409088 000050000000 507702925246120015001808930800002933 507702925246 937967 621354 S +15:59:29 +Slot[182] 0200 010000 6213544001345633 ------------- 51 889484 000005000000 507702647912030070046213544001345633 507702647912 242783 668899 S +15:59:34 +Slot[213] 0200 301000 6213542000060930 ------------- 00 261096 031808583726 5077082610960363CPSH6213542000060930 507708261096 269277 180893 S +15:59:39 +Slot[198] 0200 011000 1808930200046498 ------------- 00 124152 000100000000 507700063195010006001808930200046498 507700063195 535429 220699 S +15:59:40 +Slot[200] 0200 010000 6213545000762231 ------------- 00 261100 000100000000 5077082611000366SKTT6213545000762231 507708261100 506854 180893 S +15:59:53 Slot [177] | NOT FINANCIAL TRANSACTION +15:59:59 +Slot[193] 0200 010000 6213548000248698 ------------- 00 889517 000050000000 507701343711033070016213548000248698 507701343711 962588 668899 S +16:00:03 +Slot[165] 0200 010000 6688990106824509 ------------- 51 261104 000010000000 5077082611040324BKDT6688990106824509 507708261104 687591 180893 S +16:00:05 Slot [153] | NOT FINANCIAL TRANSACTION +16:00:06 +Slot[106] 0200 010000 1808930800002933 ------------- 00 409231 000040000000 507702925248120015001808930800002933 507702925248 382205 621354 S +16:00:07 +Slot[210] 0200 010000 6688990040136788 ------------- 00 261105 000010000000 5077082611050321LNTV6688990040136788 507708261105 087969 180893 S +16:00:17 Slot [211] | NOT FINANCIAL TRANSACTION +16:00:20 Slot [163] | NOT FINANCIAL TRANSACTION +16:00:26 +Slot[187] 0200 010000 6213545000762231 ------------- 00 261109 000100000000 5077082611090366SKTT6213545000762231 507708261109 386320 180893 S +16:00:29 Slot [162] | NOT FINANCIAL TRANSACTION +16:00:36 Slot [145] | NOT FINANCIAL TRANSACTION +16:00:40 +Slot[206] 0200 010000 6213545000602221 ------------- 00 258967 000100000000 507700040417010004006213545000602221 507700040417 348348 220699 S +16:00:49 +Slot[217] 0200 010000 6688990106824509 ------------- 51 261113 000010000000 5077082611130324BKDT6688990106824509 507708261113 703424 180893 S +16:00:58 Slot [180] | NOT FINANCIAL TRANSACTION +16:01:01 +Slot[196] 0200 011000 6213544001117792 ------------- 00 250720 000030000000 507700335886010019006213544001117792 507700335886 080052 220699 S +16:01:03 +Slot[221] 0200 011000 6688990602688309 ------------- 00 409416 000050000000 507704153255200010006688990602688309 507704153255 147326 621354 S +16:01:04 +Slot[205] 0200 010000 6213544000385473 ------------- 00 889570 000020000000 507700622609030070026213544000385473 507700622609 702761 668899 S +16:01:09 Slot [214] | NOT FINANCIAL TRANSACTION +16:01:10 Slot [176] | NOT FINANCIAL TRANSACTION +16:01:13 +Slot[194] 0200 010000 6213545000762231 ------------- 00 261117 000100000000 5077092611170366SKTT6213545000762231 507709261117 447979 180893 S +16:01:21 +Slot[222] 0200 301000 6213544001111696 ------------- 00 261119 031809002426 5077092611190463LNTN6213544001111696 507709261119 296707 180893 S +16:01:23 +Slot[190] 0420 011000 6688990602688309 ------------- 00 409416 000050000000 507704153255200010006688990602688309 507704153255 -------- 621354 S +16:01:30 Slot [184] | NOT FINANCIAL TRANSACTION +16:01:31 Slot [226] | NOT FINANCIAL TRANSACTION +16:01:45 Slot [225] | NOT FINANCIAL TRANSACTION +16:01:51 +Slot[137] 0200 010000 6213543000126663 ------------- 00 261123 000010000000 5077092611230344SVKV6213543000126663 507709261123 527718 180893 S +16:01:58 +Slot[224] 0200 302000 6213545000762231 ------------- 00 261124 031809010126 5077092611240366SKTT6213545000762231 507709261124 760137 180893 S +16:01:59 +Slot[218] 0200 010000 6213545000602221 ------------- 00 258970 000100000000 507700040419010004006213545000602221 507700040419 011733 220699 S +16:02:07 +Slot[173] 0200 010000 6213548000248698 ------------- 51 889615 000050000000 507701343713033070016213548000248698 507701343713 896927 668899 S +16:02:12 Slot [208] | NOT FINANCIAL TRANSACTION +16:02:15 Slot [215] | NOT FINANCIAL TRANSACTION +16:02:22 Slot [207] | NOT FINANCIAL TRANSACTION +16:02:30 +Slot[231] 0200 300000 6213548000248698 ------------- 00 889636 000000000000 507701343714033070016213548000248698 507701343714 363791 668899 S +16:02:31 +Slot[223] 0200 011000 6688990602688309 ------------- 00 409862 000050000000 507704153257200010006688990602688309 507704153257 223064 621354 S +16:02:33 Slot [192] | NOT FINANCIAL TRANSACTION +16:02:33 Slot [199] | NOT FINANCIAL TRANSACTION +16:02:34 Slot [188] | NOT FINANCIAL TRANSACTION +16:02:37 +Slot[185] 0420 011000 6688990602688309 0000000000000 00 409416 000050000000 507704153255200010006688990602688309 507704153255 655647 621354 S +16:02:43 +Slot[220] 0200 012000 6213543000126663 ------------- 00 261132 000020000000 5077092611320344SVKV6213543000126663 507709261132 341777 180893 S +16:02:54 Slot [229] | NOT FINANCIAL TRANSACTION +16:03:04 Slot [230] | NOT FINANCIAL TRANSACTION +16:03:05 +Slot[179] 0200 010000 6213545000683528 ------------- 00 261135 000100000000 5077092611350366SKTT6213545000683528 507709261135 928617 180893 S +16:03:15 Slot [186] | NOT FINANCIAL TRANSACTION +16:03:20 Slot [212] | NOT FINANCIAL TRANSACTION +16:03:31 Slot [236] | NOT FINANCIAL TRANSACTION +16:03:35 Slot [227] | NOT FINANCIAL TRANSACTION +16:03:38 Slot [216] | NOT FINANCIAL TRANSACTION +16:03:43 +Slot[232] 0200 301000 6688990602688309 ------------- 00 410175 000000000000 507704153258200010006688990602688309 507704153258 436778 621354 S +16:03:46 Slot [219] | NOT FINANCIAL TRANSACTION +16:03:55 +Slot[234] 0200 010000 6213545000683528 ------------- 00 261143 000100000000 5077092611430366SKTT6213545000683528 507709261143 527552 180893 S +16:04:07 Slot [235] | NOT FINANCIAL TRANSACTION +16:04:16 +Slot[239] 0200 301000 6213543000013473 ------------- 00 261146 031809031926 5077092611460141HQBR6213543000013473 507709261146 901530 180893 S +16:04:25 Slot [242] | NOT FINANCIAL TRANSACTION +16:04:29 Slot [250] | NOT FINANCIAL TRANSACTION +16:04:34 +Slot[201] 0200 010000 6213545000683528 ------------- 00 261148 000100000000 5077092611480366SKTT6213545000683528 507709261148 196139 180893 S +16:04:37 Slot [228] | NOT FINANCIAL TRANSACTION +16:04:45 Slot [252] | NOT FINANCIAL TRANSACTION +16:05:01 Slot [238] | NOT FINANCIAL TRANSACTION +16:05:05 +Slot[245] 0200 010000 6213543000013473 ------------- 00 261152 000100000000 5077092611520141HQBR6213543000013473 507709261152 592766 180893 S +16:05:10 +Slot[240] 0200 301000 6213545001098452 ------------- 00 261154 031809041426 5077092611540363CPSH6213545001098452 507709261154 147758 180893 S +16:05:17 Slot [258] | NOT FINANCIAL TRANSACTION +16:05:23 Slot [248] | NOT FINANCIAL TRANSACTION +16:05:27 +Slot[203] 0200 010000 6213545000683528 ------------- 00 261159 000050000000 5077092611590366SKTT6213545000683528 507709261159 273401 180893 S +16:05:29 Slot [247] | NOT FINANCIAL TRANSACTION +16:05:30 Slot [244] | NOT FINANCIAL TRANSACTION +16:05:38 Slot [256] | NOT FINANCIAL TRANSACTION +16:05:39 Slot [253] | NOT FINANCIAL TRANSACTION +16:05:48 Slot [243] | NOT FINANCIAL TRANSACTION +16:05:59 Slot [246] | NOT FINANCIAL TRANSACTION +16:06:04 +Slot[241] 0200 301000 6213545000685333 ------------- 00 261161 031809050726 5077092611610363CPSH6213545000685333 507709261161 400846 180893 S +16:06:15 Slot [260] | NOT FINANCIAL TRANSACTION +16:06:25 Slot [273] | NOT FINANCIAL TRANSACTION +16:06:30 +Slot[251] 0200 010000 6213545001030679 ------------- 00 261165 000050000000 5077092611650121SKBR6213545001030679 507709261165 348157 180893 S +16:06:35 Slot [265] | NOT FINANCIAL TRANSACTION +16:06:40 +Slot[264] 0200 010000 6688990108085703 ------------- 00 411087 000005000000 507703968764010112006688990108085703 507703968764 724418 621354 S +16:06:41 Slot [249] | NOT FINANCIAL TRANSACTION +16:06:42 Slot [269] | NOT FINANCIAL TRANSACTION +16:06:52 Slot [279] | NOT FINANCIAL TRANSACTION +16:06:56 +Slot[209] 0200 011000 6213545000970115 ------------- 00 167931 000100000000 507716167931015290316213545000970115 507716167931 929484 198901 S +16:07:02 Slot [233] | NOT FINANCIAL TRANSACTION +16:07:06 +Slot[268] 0200 301000 6213541000058050 ------------- 00 261171 031809060926 5077092611710111BLBR6213541000058050 507709261171 497559 180893 S +16:07:18 Slot [261] | NOT FINANCIAL TRANSACTION +16:07:28 Slot [257] | NOT FINANCIAL TRANSACTION +16:07:34 Slot [266] | NOT FINANCIAL TRANSACTION +16:07:39 Slot [262] | NOT FINANCIAL TRANSACTION +16:07:40 Slot [274] | NOT FINANCIAL TRANSACTION +16:07:43 Slot [284] | NOT FINANCIAL TRANSACTION +16:07:44 +Slot[270] 0200 011000 6213541000058050 ------------- 51 261177 000009000000 5077092611770111BLBR6213541000058050 507709261177 073882 180893 S +16:07:55 Slot [280] | NOT FINANCIAL TRANSACTION +16:08:10 Slot [263] | NOT FINANCIAL TRANSACTION +16:08:26 Slot [299] | NOT FINANCIAL TRANSACTION +16:08:30 +Slot[267] 0200 010000 6688990108084102 ------------- 00 411580 000010000000 507703968766010112006688990108084102 507703968766 653584 621354 S +16:08:35 +Slot[278] 0200 010000 6213548000248698 ------------- 51 889973 000020000000 507701343717033070016213548000248698 507701343717 358999 668899 S +16:08:37 +Slot[293] 0200 011000 6213541000058050 ------------- 51 261185 000009000000 5077092611850111BLBR6213541000058050 507709261185 235316 180893 S +16:08:45 Slot [277] | NOT FINANCIAL TRANSACTION +16:08:45 Slot [287] | NOT FINANCIAL TRANSACTION +16:08:46 Slot [285] | NOT FINANCIAL TRANSACTION +16:08:58 Slot [254] | NOT FINANCIAL TRANSACTION +16:08:58 +Slot[289] 0200 300000 6213548000248698 ------------- 00 889991 000000000000 507701343718033070016213548000248698 507701343718 083969 668899 S +16:09:02 +Slot[304] 0200 011000 6213541000058050 ------------- 00 261188 000008000000 5077092611880111BLBR6213541000058050 507709261188 415821 180893 S +16:09:13 +Slot[275] 0200 011000 6213541000005002 ------------- 00 261191 000030000000 5077092611910441VT526213541000005002 507709261191 429374 180893 S +16:09:19 +Slot[276] 0200 301000 1808930400014486 ------------- 00 890003 000000000000 507701855491033110011808930400014486 507701855491 416245 668899 S +16:09:26 Slot [291] | NOT FINANCIAL TRANSACTION +16:09:28 +Slot[309] 0200 010000 6688990108084102 ------------- 00 411984 000010000000 507703968768010112006688990108084102 507703968768 768538 621354 S +16:09:32 +Slot[259] 0200 011000 6688990105385700 ------------- 00 412004 000020000000 507703812808010097006688990105385700 507703812808 229562 621354 S +16:09:41 Slot [281] | NOT FINANCIAL TRANSACTION +16:09:45 +Slot[296] 0200 301000 6213544000571627 ------------- 00 261198 031809084826 5077092611980442VTVK6213544000571627 507709261198 129269 180893 S +16:09:47 Slot [294] | NOT FINANCIAL TRANSACTION +16:09:50 Slot [286] | NOT FINANCIAL TRANSACTION +16:09:56 Slot [303] | NOT FINANCIAL TRANSACTION +16:10:09 +Slot[298] 0200 301000 6213545000531313 ------------- 00 261202 031809091226 5077092612020111BLBR6213545000531313 507709261202 942450 180893 S +16:10:10 +Slot[282] 0200 010000 6213541000686033 ------------- 61 261203 000150000000 5077092612030114XKBR6213541000686033 507709261203 971236 180893 S +16:10:14 +Slot[271] 0200 011000 6213544002098777 ------------- 00 167981 000100000000 507716167981000016076213544002098777 507716167981 482185 198901 S +16:10:16 +Slot[317] 0200 010000 6213544000571627 ------------- 00 261205 000100000000 5077092612050442VTVK6213544000571627 507709261205 896723 180893 S +16:10:17 Slot [288] | NOT FINANCIAL TRANSACTION +16:10:28 Slot [307] | NOT FINANCIAL TRANSACTION +16:10:32 +Slot[237] 0200 010000 6213541000686033 ------------- 00 261212 000100000000 5077092612120114XKBR6213541000686033 507709261212 746729 180893 S +16:10:33 +Slot[314] 0200 010000 6213544001799557 ------------- 00 021036 000100000000 507700263032010014006213544001799557 507700263032 002768 220699 S +16:10:36 +Slot[315] 0200 010000 6213544001831640 ------------- 00 261213 000050000000 5077092612130102SAPA6213544001831640 507709261213 290512 180893 S +16:10:40 +Slot[313] 0200 010000 6688990040077776 ------------- 00 261215 000050000000 5077092612150343SVKP6688990040077776 507709261215 248398 180893 S +16:10:41 +Slot[331] 0200 301000 6688990105479206 ------------- 00 412409 000000000000 507702982729120021006688990105479206 507702982729 988837 621354 S +16:10:48 +Slot[323] 0200 011000 6213544002098777 ------------- 00 167995 000100000000 507716167995000016076213544002098777 507716167995 727050 198901 S +16:10:49 Slot [324] | NOT FINANCIAL TRANSACTION +16:10:53 +Slot[321] 0200 010000 6213544000571627 ------------- 61 261219 000150000000 5077092612190442VTVK6213544000571627 507709261219 786205 180893 S +16:10:56 Slot [255] | NOT FINANCIAL TRANSACTION +16:11:04 Slot [283] | NOT FINANCIAL TRANSACTION +16:11:10 +Slot[318] 0420 010000 2206990000124149 ------------- 00 412370 000100000000 507704634236170008002206990000124149 507704634236 -------- 621354 S +16:11:13 +Slot[319] 0200 300000 1808931400007850 ------------- 00 412587 000000000000 507704718952180010001808931400007850 507704718952 927325 621354 S +16:11:14 +Slot[272] 0200 300000 6688990105479206 ------------- 00 412580 000000000000 507702982730120021006688990105479206 507702982730 986676 621354 S +16:11:15 +Slot[326] 0200 010000 6213541000686033 ------------- 00 261226 000100000000 5077092612260114XKBR6213541000686033 507709261226 880443 180893 S +16:11:18 +Slot[295] 0200 010000 6213544000571627 ------------- 00 261229 000100000000 5077092612290442VTVK6213544000571627 507709261229 454996 180893 S +16:11:31 +Slot[340] 0200 010000 1808930400014486 ------------- 00 890106 000100000000 507701855492033110011808930400014486 507701855492 040180 668899 S +16:11:36 Slot [300] | NOT FINANCIAL TRANSACTION +16:11:37 +Slot[302] 0200 010000 2206990000124149 ------------- 00 412707 000100000000 507704634238170008002206990000124149 507704634238 194356 621354 S +16:11:47 Slot [336] | NOT FINANCIAL TRANSACTION +16:11:51 Slot [306] | NOT FINANCIAL TRANSACTION +16:11:54 +Slot[312] 0200 010000 6688990602246702 ------------- 00 412812 000100000000 507703384716130018006688990602246702 507703384716 894486 621354 S +16:11:55 +Slot[325] 0200 010000 6213541000686033 ------------- 00 261236 000100000000 5077092612360114XKBR6213541000686033 507709261236 113259 180893 S +16:11:59 +Slot[355] 0200 301000 6688990104349202 ------------- 00 412830 000000000000 507702916303120014006688990104349202 507702916303 469032 621354 S +16:12:02 Slot [311] | NOT FINANCIAL TRANSACTION +16:12:07 Slot [334] | NOT FINANCIAL TRANSACTION +16:12:17 +Slot[316] 0200 011000 6213544000571627 ------------- 00 261240 000030000000 5077092612400442VTVK6213544000571627 507709261240 723711 180893 S +16:12:25 +Slot[301] 0420 010000 2206990000124149 0000000000000 00 412370 000100000000 507704634236170008002206990000124149 507704634236 -------- 621354 S +16:12:26 +Slot[339] 0200 010000 2206990000105866 ------------- 65 890155 000009000000 507702217127030080042206990000105866 507702217127 531586 668899 S +16:12:27 Slot [310] | NOT FINANCIAL TRANSACTION +16:12:33 +Slot[308] 0200 010000 2206990000105866 ------------- 65 890162 000009000000 507702217128030080042206990000105866 507702217128 816133 668899 S +16:12:34 Slot [349] | NOT FINANCIAL TRANSACTION +16:12:35 +Slot[341] 0200 010000 2206990000124149 ------------- 00 412988 000100000000 507704634240170008002206990000124149 507704634240 958771 621354 S +16:12:38 Slot [297] | NOT FINANCIAL TRANSACTION +16:12:46 +Slot[350] 0200 011000 6688990104349202 ------------- 00 413060 000100000000 507702916305120014006688990104349202 507702916305 347665 621354 S +16:12:53 Slot [332] | NOT FINANCIAL TRANSACTION +16:12:53 Slot [352] | NOT FINANCIAL TRANSACTION +16:12:57 +Slot[329] 0200 010000 2206990000124149 ------------- 91 412370 000100000000 507704634236170008002206990000124149 507704634236 789695 621354 S +16:13:00 +Slot[338] 0200 010000 6213545000738314 ------------- 00 890184 000020000000 507700905707030160016213545000738314 507700905707 844388 668899 S +16:13:04 Slot [328] | NOT FINANCIAL TRANSACTION +16:13:07 Slot [364] | NOT FINANCIAL TRANSACTION +16:13:15 +Slot[345] 0200 010000 2206990000105866 ------------- 65 890193 000007000000 507702217130030080042206990000105866 507702217130 854736 668899 S +16:13:19 Slot [305] | NOT FINANCIAL TRANSACTION +16:13:20 +Slot[343] 0200 010000 2206990000105866 ------------- 65 890197 000007000000 507702217131030080042206990000105866 507702217131 285825 668899 S +16:13:29 Slot [354] | NOT FINANCIAL TRANSACTION +16:13:36 +Slot[337] 0200 010000 2206990000124149 ------------- 00 413302 000030000000 507704634242170008002206990000124149 507704634242 450221 621354 S +16:13:43 +Slot[320] 0200 011000 6688990104349202 ------------- 00 413358 000100000000 507702916307120014006688990104349202 507702916307 447300 621354 S +16:13:44 +Slot[330] 0200 010000 1808930400014486 ------------- 00 890210 000010000000 507701855494033110011808930400014486 507701855494 472080 668899 S +16:13:50 Slot [335] | NOT FINANCIAL TRANSACTION +16:13:55 Slot [342] | NOT FINANCIAL TRANSACTION +16:14:01 Slot [347] | NOT FINANCIAL TRANSACTION +16:14:12 Slot [369] | NOT FINANCIAL TRANSACTION +16:14:16 Slot [366] | NOT FINANCIAL TRANSACTION +16:14:24 Slot [290] | NOT FINANCIAL TRANSACTION +16:14:27 Slot [292] | NOT FINANCIAL TRANSACTION +16:14:38 Slot [333] | NOT FINANCIAL TRANSACTION +16:14:41 +Slot[374] 0200 011000 6688990104349202 ------------- 00 413631 000100000000 507702916309120014006688990104349202 507702916309 530623 621354 S +16:14:49 Slot [384] | NOT FINANCIAL TRANSACTION +16:14:54 +Slot[365] 0200 011000 6213541000050966 ------------- 00 168049 000050000000 507716168049015290316213541000050966 507716168049 509259 198901 S +16:14:57 Slot [327] | NOT FINANCIAL TRANSACTION +16:15:00 Slot [360] | NOT FINANCIAL TRANSACTION +16:15:15 +Slot[358] 0200 301000 1808931400008338 ------------- 00 413797 000000000000 507704718953180010001808931400008338 507704718953 234279 621354 S +16:15:17 Slot [353] | NOT FINANCIAL TRANSACTION +16:15:17 Slot [373] | NOT FINANCIAL TRANSACTION +16:15:25 Slot [380] | NOT FINANCIAL TRANSACTION +16:15:27 +Slot[372] 0200 010000 6213545001094212 ------------- 00 261257 000050000000 5077092612570201ADD16213545001094212 507709261257 536019 180893 S +16:15:36 Slot [362] | NOT FINANCIAL TRANSACTION +16:15:46 Slot [382] | NOT FINANCIAL TRANSACTION +16:15:59 Slot [379] | NOT FINANCIAL TRANSACTION +16:16:01 +Slot[322] 0200 011000 6213544001355806 ------------- 00 261261 000025000000 5077092612610222XKPV6213544001355806 507709261261 564793 180893 S +16:16:15 +Slot[348] 0200 011000 1808931400008338 ------------- 00 414142 000010000000 507704718955180010001808931400008338 507704718955 783321 621354 S +16:16:21 +Slot[361] 0200 011000 6688990103426803 ------------- 55 414171 000010000000 507703968784010112006688990103426803 507703968784 968734 621354 S +16:16:22 Slot [377] | NOT FINANCIAL TRANSACTION +16:16:23 Slot [378] | NOT FINANCIAL TRANSACTION +16:16:33 Slot [363] | NOT FINANCIAL TRANSACTION +16:16:44 Slot [346] | NOT FINANCIAL TRANSACTION +16:16:54 Slot [370] | NOT FINANCIAL TRANSACTION +16:17:01 Slot [371] | NOT FINANCIAL TRANSACTION +16:17:05 Slot [385] | NOT FINANCIAL TRANSACTION +16:17:16 Slot [344] | NOT FINANCIAL TRANSACTION +16:17:22 +Slot[367] 0200 301000 6213544001140471 ------------- 00 261268 031809162626 5077092612680102SAPA6213544001140471 507709261268 453338 180893 S +16:17:27 Slot [351] | NOT FINANCIAL TRANSACTION +16:17:31 Slot [397] | NOT FINANCIAL TRANSACTION +16:17:34 Slot [386] | NOT FINANCIAL TRANSACTION +16:17:42 Slot [388] | NOT FINANCIAL TRANSACTION +16:17:57 Slot [359] | NOT FINANCIAL TRANSACTION +16:18:00 +Slot[410] 0200 301000 6213545000313936 ------------- 00 261270 031809170226 5077092612700102SAPA6213545000313936 507709261270 328009 180893 S +16:18:03 Slot [357] | NOT FINANCIAL TRANSACTION +16:18:08 +Slot[401] 0200 301000 6688990100970001 ------------- 00 414790 000000000000 507704718956180010006688990100970001 507704718956 231249 621354 S +16:18:12 Slot [408] | NOT FINANCIAL TRANSACTION +16:18:23 Slot [413] | NOT FINANCIAL TRANSACTION +16:18:27 +Slot[414] 0200 011000 6688990102505706 ------------- 00 168106 000010000000 507716168106015290316688990102505706 507716168106 576714 198901 S +16:18:32 Slot [398] | NOT FINANCIAL TRANSACTION +16:18:34 Slot [393] | NOT FINANCIAL TRANSACTION +16:18:50 Slot [420] | NOT FINANCIAL TRANSACTION +16:18:52 +Slot[403] 0200 010000 6213545000313936 ------------- 61 261276 000200000000 5077092612760102SAPA6213545000313936 507709261276 796533 180893 S +16:18:57 +Slot[392] 0200 011000 6688990100970001 ------------- 00 415082 000100000000 507704718958180010006688990100970001 507704718958 771756 621354 S +16:18:59 +Slot[416] 0200 301000 6688990102505706 ------------- 00 168115 000000000000 507716168115015290316688990102505706 507716168115 709338 198901 S +16:19:05 Slot [391] | NOT FINANCIAL TRANSACTION +16:19:07 Slot [425] | NOT FINANCIAL TRANSACTION +16:19:21 Slot [418] | NOT FINANCIAL TRANSACTION +16:19:27 +Slot[383] 0200 302000 6213545001105547 ------------- 00 261279 031809183126 5077092612790366SKTT6213545001105547 507709261279 937292 180893 S +16:19:37 Slot [387] | NOT FINANCIAL TRANSACTION +16:19:37 Slot [415] | NOT FINANCIAL TRANSACTION +16:19:46 +Slot[396] 0200 301000 6213545000313936 ------------- 00 261280 031809184926 5077092612800102SAPA6213545000313936 507709261280 679829 180893 S +16:19:57 Slot [431] | NOT FINANCIAL TRANSACTION +16:20:07 Slot [429] | NOT FINANCIAL TRANSACTION +16:20:07 Slot [402] | NOT FINANCIAL TRANSACTION +16:20:08 +Slot[423] 0200 011000 6688990100970001 ------------- 00 415448 000100000000 507704718960180010006688990100970001 507704718960 775988 621354 S +16:20:17 Slot [395] | NOT FINANCIAL TRANSACTION +16:20:18 Slot [400] | NOT FINANCIAL TRANSACTION +16:20:32 +Slot[417] 0200 012000 6213545001105547 ------------- 00 261282 000030000000 5077092612820366SKTT6213545001105547 507709261282 181335 180893 S +16:20:43 Slot [381] | NOT FINANCIAL TRANSACTION +16:20:43 Slot [375] | NOT FINANCIAL TRANSACTION +16:20:54 Slot [399] | NOT FINANCIAL TRANSACTION +16:21:04 Slot [438] | NOT FINANCIAL TRANSACTION +16:21:09 Slot [406] | NOT FINANCIAL TRANSACTION +16:21:09 +Slot[428] 0200 011000 6688990100970001 ------------- 00 415825 000020000000 507704718962180010006688990100970001 507704718962 780296 621354 S +16:21:15 Slot [437] | NOT FINANCIAL TRANSACTION +16:21:26 Slot [419] | NOT FINANCIAL TRANSACTION +16:21:37 Slot [445] | NOT FINANCIAL TRANSACTION +16:21:47 +Slot[427] 0200 010000 6213541000270010 ------------- 00 890662 000100000000 507702531226030200336213541000270010 507702531226 423603 668899 S +16:21:48 Slot [422] | NOT FINANCIAL TRANSACTION +16:21:52 Slot [404] | NOT FINANCIAL TRANSACTION +16:22:02 Slot [368] | NOT FINANCIAL TRANSACTION +16:22:11 Slot [394] | NOT FINANCIAL TRANSACTION +16:22:11 Slot [452] | NOT FINANCIAL TRANSACTION +16:22:12 Slot [448] | NOT FINANCIAL TRANSACTION +16:22:23 Slot [442] | NOT FINANCIAL TRANSACTION +16:22:25 +Slot[356] 0200 302000 1888880000028654 ------------- 00 416255 000000000000 507703364933130016001888880000028654 507703364933 012158 621354 S +16:22:34 Slot [411] | NOT FINANCIAL TRANSACTION +16:22:38 Slot [440] | NOT FINANCIAL TRANSACTION +16:22:49 Slot [443] | NOT FINANCIAL TRANSACTION +16:22:53 Slot [389] | NOT FINANCIAL TRANSACTION +16:23:03 Slot [424] | NOT FINANCIAL TRANSACTION +16:23:12 +Slot[465] 0200 012000 1888880000028654 ------------- 00 416516 000015000000 507703364935130016001888880000028654 507703364935 846158 621354 S +16:23:13 Slot [439] | NOT FINANCIAL TRANSACTION +16:23:13 Slot [390] | NOT FINANCIAL TRANSACTION +16:23:24 Slot [435] | NOT FINANCIAL TRANSACTION +16:23:37 +Slot[376] 0200 300000 6688990108204304 ------------- 00 416700 000000000000 507702824215010076006688990108204304 507702824215 121670 621354 S +16:23:39 Slot [421] | NOT FINANCIAL TRANSACTION +16:23:42 +Slot[430] 0200 010000 6688990103289607 ------------- 00 416714 000100000000 507703499117060022006688990103289607 507703499117 130232 621354 S +16:23:48 +Slot[447] 0200 301000 6213545001065865 ------------- 55 168180 000000000000 507716168180000022016213545001065865 507716168180 540971 198901 S +16:23:50 Slot [441] | NOT FINANCIAL TRANSACTION +16:23:56 +Slot[460] 0200 300000 1808931800013094 ------------- 00 890803 000000000000 507701363164030080031808931800013094 507701363164 248705 668899 S +16:23:58 Slot [456] | NOT FINANCIAL TRANSACTION +16:24:05 Slot [463] | NOT FINANCIAL TRANSACTION +16:24:14 +Slot[462] 0200 011000 6213545001065865 ------------- 55 168187 000010000000 507716168187000022016213545001065865 507716168187 922876 198901 S +16:24:15 Slot [405] | NOT FINANCIAL TRANSACTION +16:24:16 Slot [434] | NOT FINANCIAL TRANSACTION +16:24:31 Slot [449] | NOT FINANCIAL TRANSACTION +16:24:42 +Slot[407] 0200 011000 6213545001065865 ------------- 00 168196 000010000000 507716168196000022016213545001065865 507716168196 173579 198901 S +16:24:45 +Slot[409] 0200 010000 6688990103289607 ------------- 00 417091 000100000000 507703499119060022006688990103289607 507703499119 019607 621354 S +16:24:46 +Slot[475] 0200 010000 1808931800013094 ------------- 00 890864 000080000000 507701363165030080031808931800013094 507701363165 484605 668899 S +16:24:52 Slot [412] | NOT FINANCIAL TRANSACTION +16:25:02 Slot [469] | NOT FINANCIAL TRANSACTION +16:25:03 Slot [457] | NOT FINANCIAL TRANSACTION +16:25:10 Slot [489] | NOT FINANCIAL TRANSACTION +16:25:17 Slot [479] | NOT FINANCIAL TRANSACTION +16:25:17 Slot [482] | NOT FINANCIAL TRANSACTION +16:25:18 Slot [444] | NOT FINANCIAL TRANSACTION +16:25:29 Slot [450] | NOT FINANCIAL TRANSACTION +16:25:39 Slot [478] | NOT FINANCIAL TRANSACTION +16:25:49 +Slot[433] 0200 010000 6688990103289607 ------------- 00 417465 000100000000 507703499121060022006688990103289607 507703499121 338420 621354 S +16:25:50 Slot [459] | NOT FINANCIAL TRANSACTION +16:26:00 Slot [467] | NOT FINANCIAL TRANSACTION +16:26:08 Slot [490] | NOT FINANCIAL TRANSACTION +16:26:16 Slot [483] | NOT FINANCIAL TRANSACTION +16:26:19 Slot [474] | NOT FINANCIAL TRANSACTION +16:26:31 Slot [453] | NOT FINANCIAL TRANSACTION +16:26:41 Slot [472] | NOT FINANCIAL TRANSACTION +16:26:52 Slot [432] | NOT FINANCIAL TRANSACTION +16:27:03 Slot [485] | NOT FINANCIAL TRANSACTION +16:27:13 Slot [468] | NOT FINANCIAL TRANSACTION +16:27:14 Slot [455] | NOT FINANCIAL TRANSACTION +16:27:21 Slot [426] | NOT FINANCIAL TRANSACTION +16:27:23 +Slot[487] 0200 010000 6688990103262802 ------------- 00 417969 000100000000 507703499123060022006688990103262802 507703499123 222835 621354 S +16:27:24 Slot [498] | NOT FINANCIAL TRANSACTION +16:27:27 +Slot[461] 0200 301000 6688990602273201 ------------- 00 418004 000000000000 507704079259040038006688990602273201 507704079259 449266 621354 S +16:27:34 Slot [455] | NOT FINANCIAL TRANSACTION +16:27:40 Slot [446] | NOT FINANCIAL TRANSACTION +16:27:50 Slot [450] | NOT FINANCIAL TRANSACTION +16:28:05 Slot [471] | NOT FINANCIAL TRANSACTION +16:28:16 Slot [491] | NOT FINANCIAL TRANSACTION +16:28:18 Slot [476] | NOT FINANCIAL TRANSACTION +16:28:20 +Slot[436] 0200 010000 6688990103262802 ------------- 55 418291 000100000000 507703499125060022006688990103262802 507703499125 286742 621354 S +16:28:23 Slot [486] | NOT FINANCIAL TRANSACTION +16:28:31 Slot [497] | NOT FINANCIAL TRANSACTION +16:28:43 Slot [2] | NOT FINANCIAL TRANSACTION +16:28:44 +Slot[473] 0200 010000 6688990700302902 ------------- 00 418437 000100000000 507702824232010076006688990700302902 507702824232 334016 621354 S +16:28:45 +Slot[7] 0200 010000 6688990103262802 ------------- 00 418450 000100000000 507703499127060022006688990103262802 507703499127 730800 621354 S +16:28:53 Slot [499] | NOT FINANCIAL TRANSACTION +16:29:03 Slot [464] | NOT FINANCIAL TRANSACTION +16:29:14 Slot [470] | NOT FINANCIAL TRANSACTION +16:29:21 +Slot[492] 0200 301000 1808931800010827 ------------- 00 418608 000000000000 507704613404170006001808931800010827 507704613404 625849 621354 S +16:29:23 Slot [495] | NOT FINANCIAL TRANSACTION +16:29:25 Slot [451] | NOT FINANCIAL TRANSACTION +16:29:29 Slot [18] | NOT FINANCIAL TRANSACTION +16:29:34 +Slot[477] 0200 010000 6213544002139266 ------------- 51 261322 000010000000 5077092613220344SVKV6213544002139266 507709261322 600376 180893 S +16:29:36 +Slot[24] 0200 010000 6688990103262802 ------------- 00 418723 000100000000 507703499129060022006688990103262802 507703499129 195616 621354 S +16:29:45 Slot [454] | NOT FINANCIAL TRANSACTION +16:29:48 +Slot[14] 0200 011000 6213541000328420 ------------- 00 450571 000005000000 507700153064030003006213541000328420 507700153064 955759 220699 S +16:29:55 Slot [484] | NOT FINANCIAL TRANSACTION +16:29:57 +Slot[480] 0200 300000 6213545000108021 ------------- 00 891131 000000000000 507702336290032170026213545000108021 507702336290 972231 668899 S +16:29:58 +Slot[466] 0200 011000 6213541000652662 ------------- 00 168262 000020000000 507716168262000022016213541000652662 507716168262 775767 198901 S +16:30:05 Slot [488] | NOT FINANCIAL TRANSACTION +16:30:16 Slot [458] | NOT FINANCIAL TRANSACTION +16:30:17 Slot [493] | NOT FINANCIAL TRANSACTION +16:30:27 Slot [3] | NOT FINANCIAL TRANSACTION +16:30:27 Slot [12] | NOT FINANCIAL TRANSACTION +16:30:28 Slot [481] | NOT FINANCIAL TRANSACTION +16:30:29 +Slot[22] 0200 011000 6213541000652662 ------------- 00 168273 000020000000 507716168273000022016213541000652662 507716168273 308350 198901 S +16:30:42 Slot [16] | NOT FINANCIAL TRANSACTION +16:30:47 +Slot[0] 0200 010000 6688990108041904 ------------- 00 419068 000010000000 507703499131060022006688990108041904 507703499131 259264 621354 S +16:30:52 Slot [1] | NOT FINANCIAL TRANSACTION +16:30:54 +Slot[4] 0200 300000 6213545000108021 ------------- 00 891170 000000000000 507702336292032170026213545000108021 507702336292 020627 668899 S +16:31:02 Slot [5] | NOT FINANCIAL TRANSACTION +16:31:12 Slot [21] | NOT FINANCIAL TRANSACTION +16:31:18 +Slot[31] 0200 302000 6213545000108021 ------------- 00 891191 000000000000 507702336293032170026213545000108021 507702336293 078498 668899 S +16:31:21 +Slot[15] 0200 302000 6213544002139266 ------------- 00 261331 031809302426 5077092613310344SVKV6213544002139266 507709261331 889048 180893 S +16:31:29 Slot [496] | NOT FINANCIAL TRANSACTION +16:31:33 Slot [26] | NOT FINANCIAL TRANSACTION +16:31:33 Slot [8] | NOT FINANCIAL TRANSACTION +16:31:42 +Slot[23] 0200 010000 1808931400008882 ------------- 51 419393 000005000000 507704718964180010001808931400008882 507704718964 293164 621354 S +16:31:45 +Slot[10] 0200 010000 6213545000108021 ------------- 00 891217 000100000000 507702336294032170026213545000108021 507702336294 315454 668899 S +16:31:51 Slot [6] | NOT FINANCIAL TRANSACTION +16:31:56 +Slot[9] 0200 302000 6213541000675986 ------------- 00 891233 000000000000 507700536846030140016213541000675986 507700536846 866260 668899 S +16:32:04 Slot [46] | NOT FINANCIAL TRANSACTION +16:32:14 Slot [27] | NOT FINANCIAL TRANSACTION +16:32:22 +Slot[11] 0200 300000 6213541000675986 ------------- 00 891245 000000000000 507700536847030140016213541000675986 507700536847 749522 668899 S +16:32:26 +Slot[25] 0200 010000 1808931400008882 ------------- 51 419628 000002000000 507704718966180010001808931400008882 507704718966 952238 621354 S +16:32:31 Slot [28] | NOT FINANCIAL TRANSACTION +16:32:33 Slot [56] | NOT FINANCIAL TRANSACTION +16:32:36 +Slot[30] 0200 012000 6213544002139266 ------------- 00 261336 000005000000 5077092613360344SVKV6213544002139266 507709261336 807419 180893 S +16:32:38 Slot [42] | NOT FINANCIAL TRANSACTION +16:32:40 +Slot[20] 0200 300000 6213541000675986 ------------- 00 891265 000000000000 507700536848030140016213541000675986 507700536848 560838 668899 S +16:32:45 Slot [494] | NOT FINANCIAL TRANSACTION +16:32:55 Slot [36] | NOT FINANCIAL TRANSACTION +16:32:58 +Slot[34] 0200 301000 6213541000675986 ------------- 00 891275 000000000000 507700536849030140016213541000675986 507700536849 216683 668899 S +16:33:10 Slot [32] | NOT FINANCIAL TRANSACTION +16:33:25 +Slot[38] 0200 302000 6688990107230607 ------------- 00 261343 809322726134 5077092613430369SLVL6688990107230607 507709261343 617719 180893 S +16:33:33 Slot [52] | NOT FINANCIAL TRANSACTION +16:33:34 +Slot[41] 0200 301000 6213544001259768 ------------- 00 261345 809323726134 5077092613450531VTHH6213544001259768 507709261345 591418 180893 S +16:33:39 +Slot[47] 0200 010000 1808930500028022 ------------- 00 891302 000070000000 507701489059035150011808930500028022 507701489059 656398 668899 S +16:33:43 Slot [44] | NOT FINANCIAL TRANSACTION +16:33:45 Slot [19] | NOT FINANCIAL TRANSACTION +16:33:48 +Slot[40] 0200 011000 2206990000028555 ------------- 00 420054 000100000000 507703973362010113002206990000028555 507703973362 725276 621354 S +16:33:49 +Slot[13] 0200 010000 6213545000108021 ------------- 00 891316 000100000000 507702336296032170026213545000108021 507702336296 092805 668899 S +16:33:57 Slot [37] | NOT FINANCIAL TRANSACTION +16:34:04 +Slot[57] 0200 301000 6213544001259768 ------------- 55 261349 031809330826 5077092613490531VTHH6213544001259768 507709261349 679137 180893 S +16:34:14 +Slot[54] 0200 300000 6213541000675986 ------------- 00 891333 000000000000 507700536851030140016213541000675986 507700536851 930549 668899 S +16:34:15 +Slot[59] 0200 012000 6213544001291068 ------------- 00 261351 000030000000 5077092613510344SVKV6213544001291068 507709261351 126554 180893 S +16:34:26 +Slot[61] 0200 010000 6213545000197503 ------------- 00 891344 000100000000 507702150725030200256213545000197503 507702150725 570623 668899 S +16:34:28 Slot [58] | NOT FINANCIAL TRANSACTION +16:34:35 +Slot[55] 0200 301000 6213544001259768 ------------- 00 261356 031809333826 5077092613560531VTHH6213544001259768 507709261356 631580 180893 S +16:34:35 Slot [51] | NOT FINANCIAL TRANSACTION +16:34:42 +Slot[29] 0200 010000 6213544002097365 ------------- 00 021039 000030000000 507700263034010014006213544002097365 507700263034 182314 220699 S +16:34:43 Slot [60] | NOT FINANCIAL TRANSACTION +16:34:47 +Slot[17] 0200 010000 6213541000675986 ------------- 00 891365 000100000000 507700536852030140016213541000675986 507700536852 231256 668899 S +16:34:48 Slot [48] | NOT FINANCIAL TRANSACTION +16:34:52 +Slot[72] 0200 010000 6213545000108021 ------------- 00 891373 000100000000 507702336298032170026213545000108021 507702336298 943668 668899 S +16:34:54 Slot [63] | NOT FINANCIAL TRANSACTION +16:35:04 Slot [71] | NOT FINANCIAL TRANSACTION +16:35:04 +Slot[35] 0200 011000 6688990060026604 ------------- 00 420429 000030000000 507704153284200010006688990060026604 507704153284 988088 621354 S +16:35:14 Slot [67] | NOT FINANCIAL TRANSACTION +16:35:17 Slot [80] | NOT FINANCIAL TRANSACTION +16:35:24 +Slot[39] 0200 010000 6217004160002555342 ------------- 91 261341 000200000000 5077092613410261PSL16217004160002555 507709261341 544905 180893 S +16:35:27 +Slot[53] 0200 301000 6213545000991988 ------------- 00 261359 031809343126 5077092613590531VTHH6213545000991988 507709261359 934488 180893 S +16:35:28 +Slot[49] 0200 010000 1808930500028022 ------------- 00 891400 000030000000 507701489062035150011808930500028022 507701489062 125901 668899 S +16:35:36 +Slot[79] 0200 010000 6213545001072499 ------------- 00 261363 000010000000 5077092613630344SVKV6213545001072499 507709261363 269187 180893 S +16:35:37 Slot [83] | NOT FINANCIAL TRANSACTION +16:35:44 +Slot[85] 0200 010000 6213541000675986 ------------- 00 891418 000100000000 507700536854030140016213541000675986 507700536854 390723 668899 S +16:35:47 +Slot[78] 0200 301000 1808930600031397 ------------- 00 420669 000000000000 507704350569030034001808930600031397 507704350569 800865 621354 S +16:35:53 Slot [68] | NOT FINANCIAL TRANSACTION +16:35:56 Slot [73] | NOT FINANCIAL TRANSACTION +16:35:56 +Slot[75] 0200 010000 6688990107115006 ------------- 00 261367 000010000000 5077092613670486HPXK6688990107115006 507709261367 520759 180893 S +16:36:05 +Slot[43] 0200 010000 6213544001949897 ------------- 00 891431 000008000000 507700285544030100056213544001949897 507700285544 326402 668899 S +16:36:06 Slot [77] | NOT FINANCIAL TRANSACTION +16:36:06 +Slot[91] 0200 311000 6213545000004634 ------------- 00 305628 000000000000 507700079237010007006213545000004634 507700079237 202741 220699 S +16:36:16 Slot [89] | NOT FINANCIAL TRANSACTION +16:36:26 +Slot[65] 0200 010000 6213544002005269 ------------- 00 891449 000015000000 507701261873032060016213544002005269 507701261873 552333 668899 S +16:36:26 Slot [76] | NOT FINANCIAL TRANSACTION +16:36:31 +Slot[88] 0200 010000 6213541000675986 ------------- 00 891455 000100000000 507700536856030140016213541000675986 507700536856 932853 668899 S +16:36:39 Slot [66] | NOT FINANCIAL TRANSACTION +16:36:40 +Slot[86] 0200 311000 6213546000009052 ------------- 00 250737 000000000000 507700335897010019006213546000009052 507700335897 555246 220699 S +16:36:42 Slot [33] | NOT FINANCIAL TRANSACTION +16:36:42 +Slot[94] 0200 011000 6213545000004634 ------------- 00 305629 000070000000 507700079238010007006213545000004634 507700079238 126150 220699 S +16:36:43 +Slot[74] 0200 301000 8888884000062882 ------------- 00 168372 000000000000 507716168372015290188888884000062882 507716168372 472372 198901 S +16:36:45 +Slot[93] 0200 010000 6213544000121431 ------------- 00 891468 000030000000 507702126207033020016213544000121431 507702126207 312376 668899 S +16:36:46 +Slot[101] 0200 011000 6213541000644230 ------------- 00 261371 000020000000 5077092613710111BLBR6213541000644230 507709261371 143497 180893 S +16:36:49 +Slot[103] 0200 010000 1808930500028022 ------------- 00 891474 000010000000 507701489065035150011808930500028022 507701489065 512933 668899 S +16:36:58 Slot [105] | NOT FINANCIAL TRANSACTION +16:36:59 +Slot[102] 0200 010000 1808930600031397 ------------- 00 421022 000050000000 507704350571030034001808930600031397 507704350571 615920 621354 S +16:37:03 Slot [50] | NOT FINANCIAL TRANSACTION +16:37:06 +Slot[95] 0200 010000 6213544001587028 ------------- 61 261375 000200000000 5077092613750401XSBR6213544001587028 507709261375 504450 180893 S +16:37:17 +Slot[70] 0200 010000 6213541000675986 ------------- 00 891504 000100000000 507700536858030140016213541000675986 507700536858 604741 668899 S +16:37:18 Slot [92] | NOT FINANCIAL TRANSACTION +16:37:20 +Slot[81] 0200 011000 6213546000009052 ------------- 00 250738 000030000000 507700335898010019006213546000009052 507700335898 326819 220699 S +16:37:29 Slot [45] | NOT FINANCIAL TRANSACTION +16:37:33 Slot [107] | NOT FINANCIAL TRANSACTION +16:37:41 Slot [114] | NOT FINANCIAL TRANSACTION +16:37:43 Slot [104] | NOT FINANCIAL TRANSACTION +16:37:53 Slot [100] | NOT FINANCIAL TRANSACTION +16:38:01 +Slot[82] 0200 301000 6213544000892056 ------------- 00 891539 000000000000 507702104257030200226213544000892056 507702104257 471813 668899 S +16:38:03 Slot [69] | NOT FINANCIAL TRANSACTION +16:38:04 Slot [87] | NOT FINANCIAL TRANSACTION +16:38:05 +Slot[108] 0200 010000 6213541000675986 ------------- 00 891542 000100000000 507700536860030140016213541000675986 507700536860 695957 668899 S +16:38:15 Slot [122] | NOT FINANCIAL TRANSACTION +16:38:23 +Slot[117] 0200 010000 6213544001236154 ------------- 00 891563 000100000000 507701881310030140066213544001236154 507701881310 259276 668899 S +16:38:27 +Slot[119] 0200 011000 1808931700003781 ------------- 00 421555 000030000000 507704794952070015001808931700003781 507704794952 124355 621354 S +16:38:29 +Slot[96] 0200 010000 6213544001587028 ------------- 00 261380 000010000000 5077092613800401XSBR6213544001587028 507709261380 014867 180893 S +16:38:41 Slot [115] | NOT FINANCIAL TRANSACTION +16:38:43 Slot [110] | NOT FINANCIAL TRANSACTION +16:38:51 +Slot[136] 0200 010000 6213541000675986 ------------- 00 891587 000100000000 507700536862030140016213541000675986 507700536862 273255 668899 S +16:38:52 +Slot[64] 0200 010000 6688990103036008 ------------- 00 421687 000030000000 507702484543050031006688990103036008 507702484543 433234 621354 S +16:38:53 Slot [124] | NOT FINANCIAL TRANSACTION +16:38:59 +Slot[62] 0200 010000 1808930500015516 ------------- 00 891592 000050000000 507701489067035150011808930500015516 507701489067 138010 668899 S +16:39:06 Slot [97] | NOT FINANCIAL TRANSACTION +16:39:08 Slot [113] | NOT FINANCIAL TRANSACTION +16:39:17 +Slot[98] 0200 010000 6213544001587028 ------------- 00 261384 000010000000 5077092613840401XSBR6213544001587028 507709261384 885573 180893 S +16:39:26 Slot [90] | NOT FINANCIAL TRANSACTION +16:39:32 +Slot[84] 0200 010000 6213544001236154 ------------- 00 891629 000100000000 507701881312030140066213544001236154 507701881312 615928 668899 S +16:39:35 +Slot[121] 0200 010000 6213541000675986 ------------- 00 891632 000100000000 507700536864030140016213541000675986 507700536864 010032 668899 S +16:39:37 Slot [159] | NOT FINANCIAL TRANSACTION +16:39:45 Slot [134] | NOT FINANCIAL TRANSACTION +16:39:48 Slot [112] | NOT FINANCIAL TRANSACTION +16:39:57 +Slot[144] 0200 010000 1808930500015516 ------------- 00 891642 000050000000 507701489069035150011808930500015516 507701489069 662414 668899 S +16:40:02 +Slot[99] 0200 010000 6213544001587028 ------------- 00 261391 000010000000 5077092613910401XSBR6213544001587028 507709261391 592118 180893 S +16:40:11 +Slot[128] 0200 011000 6213541000523707 ------------- 00 261393 000020000000 5077092613930111BLBR6213541000523707 507709261393 269414 180893 S +16:40:13 Slot [142] | NOT FINANCIAL TRANSACTION +16:40:17 Slot [148] | NOT FINANCIAL TRANSACTION +16:40:17 +Slot[111] 0200 012000 1808931700021783 ------------- 42 422189 000050000000 507702364076010061001808931700021783 507702364076 589480 621354 S +16:40:22 +Slot[149] 0200 010000 6213541000675986 ------------- 00 891680 000100000000 507700536866030140016213541000675986 507700536866 729865 668899 S +16:40:28 Slot [126] | NOT FINANCIAL TRANSACTION +16:40:38 Slot [109] | NOT FINANCIAL TRANSACTION +16:40:39 +Slot[140] 0200 010000 6213544001236154 ------------- 00 891698 000100000000 507701881314030140066213544001236154 507701881314 679337 668899 S +16:40:47 Slot [155] | NOT FINANCIAL TRANSACTION +16:40:53 +Slot[127] 0200 010000 1808930500015516 ------------- 00 891713 000030000000 507701489071035150011808930500015516 507701489071 501409 668899 S +16:40:55 +Slot[131] 0200 010000 2206990000061028 ------------- 00 891714 000020000000 507700285548030100052206990000061028 507700285548 306699 668899 S +16:41:00 Slot [151] | NOT FINANCIAL TRANSACTION +16:41:08 +Slot[139] 0200 010000 6213541000675986 ------------- 00 891729 000100000000 507700536868030140016213541000675986 507700536868 585898 668899 S +16:41:15 Slot [150] | NOT FINANCIAL TRANSACTION +16:41:18 Slot [146] | NOT FINANCIAL TRANSACTION +16:41:24 +Slot[123] 0200 010000 6213541000175342 ------------- 00 891750 000030000000 507702294587030090066213541000175342 507702294587 068602 668899 S +16:41:25 Slot [154] | NOT FINANCIAL TRANSACTION +16:41:41 Slot [138] | NOT FINANCIAL TRANSACTION +16:41:49 Slot [118] | NOT FINANCIAL TRANSACTION +16:41:52 Slot [157] | NOT FINANCIAL TRANSACTION +16:42:07 Slot [132] | NOT FINANCIAL TRANSACTION +16:42:22 Slot [152] | NOT FINANCIAL TRANSACTION +16:42:23 Slot [135] | NOT FINANCIAL TRANSACTION +16:42:29 +Slot[167] 0200 010000 6213544002275920 ------------- 00 891820 000100000000 507702415169030010116213544002275920 507702415169 933987 668899 S +16:42:33 Slot [171] | NOT FINANCIAL TRANSACTION +16:42:33 Slot [116] | NOT FINANCIAL TRANSACTION +16:42:43 Slot [120] | NOT FINANCIAL TRANSACTION +16:42:51 Slot [168] | NOT FINANCIAL TRANSACTION +16:42:54 Slot [156] | NOT FINANCIAL TRANSACTION +16:43:04 +Slot[129] 0200 011000 6213543000177021 ------------- 00 013257 000070000000 507700200854090001006213543000177021 507700200854 523832 220699 S +16:43:10 Slot [130] | NOT FINANCIAL TRANSACTION +16:43:16 +Slot[141] 0200 010000 6213544002275920 ------------- 00 891869 000100000000 507702415171030010116213544002275920 507702415171 556038 668899 S +16:43:26 Slot [172] | NOT FINANCIAL TRANSACTION +16:43:28 Slot [166] | NOT FINANCIAL TRANSACTION +16:43:30 +Slot[175] 0200 011000 2206990000122556 ------------- 00 423273 000040000000 507703533466090010002206990000122556 507703533466 598108 621354 S +16:43:36 Slot [160] | NOT FINANCIAL TRANSACTION +16:43:42 +Slot[174] 0200 010000 6213544002037296 ------------- 00 261407 000010000000 5077092614070115LPBR6213544002037296 507709261407 760826 180893 S +16:43:51 Slot [164] | NOT FINANCIAL TRANSACTION +16:43:53 Slot [169] | NOT FINANCIAL TRANSACTION +16:43:58 +Slot[147] 0200 010000 6213544002275920 ------------- 00 891917 000100000000 507702415173030010116213544002275920 507702415173 715761 668899 S +16:44:02 Slot [133] | NOT FINANCIAL TRANSACTION +16:44:05 +Slot[178] 0200 012000 2206990000127985 ------------- 00 261411 000010000000 5077092614110107HSTH2206990000127985 507709261411 487344 180893 S +16:44:17 Slot [195] | NOT FINANCIAL TRANSACTION +16:44:22 +Slot[170] 0200 300000 6213544002186143 ------------- 00 891938 000000000000 507700858000030150046213544002186143 507700858000 686250 668899 S +16:44:26 +Slot[189] 0200 010000 6688990103006902 ------------- 00 261416 000100000000 5077092614160361BLTB6688990103006902 507709261416 473853 180893 S +16:44:33 Slot [183] | NOT FINANCIAL TRANSACTION +16:44:38 Slot [191] | NOT FINANCIAL TRANSACTION +16:44:41 +Slot[125] 0200 300000 6213548000051225 ------------- 00 891957 000000000000 507702605258030090076213548000051225 507702605258 494016 668899 S +16:44:42 +Slot[161] 0200 010000 6213544002275920 ------------- 00 891960 000100000000 507702415175030010116213544002275920 507702415175 214684 668899 S +16:44:49 +Slot[143] 0200 010000 1808931400008163 ------------- 00 891963 000100000000 507701603137032020011808931400008163 507701603137 305121 668899 S +16:44:53 Slot [181] | NOT FINANCIAL TRANSACTION +16:44:55 Slot [202] | NOT FINANCIAL TRANSACTION +16:45:02 +Slot[197] 0200 302000 6213548000051225 ------------- 00 891974 000000000000 507702605259030090076213548000051225 507702605259 634944 668899 S +16:45:03 +Slot[204] 0200 300000 6688990105090201 ------------- 00 423769 000000000000 507704340372030033006688990105090201 507704340372 252399 621354 S +16:45:04 Slot [158] | NOT FINANCIAL TRANSACTION +16:45:14 Slot [182] | NOT FINANCIAL TRANSACTION +16:45:17 Slot [213] | NOT FINANCIAL TRANSACTION +16:45:25 Slot [177] | NOT FINANCIAL TRANSACTION +16:45:27 +Slot[198] 0200 300000 6688990106414707 ------------- 00 423871 000000000000 507703824231010098006688990106414707 507703824231 695046 621354 S +16:45:28 +Slot[200] 0200 010000 6213544002275920 ------------- 00 891999 000100000000 507702415177030010116213544002275920 507702415177 306396 668899 S +16:45:38 Slot [165] | NOT FINANCIAL TRANSACTION +16:45:41 Slot [153] | NOT FINANCIAL TRANSACTION +16:45:42 +Slot[193] 0200 301000 6213544002186143 ------------- 00 892012 000000000000 507700858002030150046213544002186143 507700858002 514186 668899 S +16:45:55 Slot [106] | NOT FINANCIAL TRANSACTION +16:45:57 Slot [210] | NOT FINANCIAL TRANSACTION +16:46:04 +Slot[211] 0200 300000 6213544002186143 ------------- 00 892024 000000000000 507700858003030150046213544002186143 507700858003 138416 668899 S +16:46:07 Slot [163] | NOT FINANCIAL TRANSACTION +16:46:22 Slot [187] | NOT FINANCIAL TRANSACTION +16:46:32 Slot [145] | NOT FINANCIAL TRANSACTION +16:46:34 +Slot[162] 0200 010000 2206991200060481 ------------- 00 424231 000100000000 507704012080010117002206991200060481 507704012080 143391 621354 S +16:46:41 Slot [206] | NOT FINANCIAL TRANSACTION +16:46:43 Slot [217] | NOT FINANCIAL TRANSACTION +16:46:43 Slot [180] | NOT FINANCIAL TRANSACTION +16:46:54 +Slot[221] 0200 010000 6688990060001631 ------------- 00 424335 000080000000 507703499139060022006688990060001631 507703499139 017196 621354 S +16:46:55 +Slot[196] 0200 010000 1808931400008163 ------------- 00 892060 000080000000 507701603139032020011808931400008163 507701603139 960972 668899 S +16:46:59 Slot [205] | NOT FINANCIAL TRANSACTION +16:46:59 Slot [214] | NOT FINANCIAL TRANSACTION +16:47:06 +Slot[176] 0200 011000 6213544002186143 ------------- 00 261422 000040000000 5077092614220112CPBR6213544002186143 507709261422 441785 180893 S +16:47:16 Slot [194] | NOT FINANCIAL TRANSACTION +16:47:26 Slot [190] | NOT FINANCIAL TRANSACTION +16:47:28 +Slot[222] 0200 012000 6688990040082651 ------------- 00 424509 000005000000 507703047519010084006688990040082651 507703047519 576601 621354 S +16:47:32 +Slot[184] 0200 010000 6213544002275920 ------------- 00 892085 000100000000 507702415179030010116213544002275920 507702415179 841841 668899 S +16:47:33 Slot [226] | NOT FINANCIAL TRANSACTION +16:47:36 Slot [225] | NOT FINANCIAL TRANSACTION +16:47:47 Slot [137] | NOT FINANCIAL TRANSACTION +16:47:48 Slot [224] | NOT FINANCIAL TRANSACTION +16:47:57 Slot [218] | NOT FINANCIAL TRANSACTION +16:48:01 Slot [173] | NOT FINANCIAL TRANSACTION +16:48:06 +Slot[208] 0200 012000 6213548000001345 ------------- 51 261428 000015000000 5077092614280301LPBX6213548000001345 507709261428 306455 180893 S +16:48:17 +Slot[215] 0200 010000 6213544002275920 ------------- 00 892127 000100000000 507702415181030010116213544002275920 507702415181 365247 668899 S +16:48:19 Slot [207] | NOT FINANCIAL TRANSACTION +16:48:24 +Slot[231] 0200 300000 6213544002240627 ------------- 00 892135 000000000000 507700844559030150036213544002240627 507700844559 542775 668899 S +16:48:29 Slot [223] | NOT FINANCIAL TRANSACTION +16:48:40 Slot [192] | NOT FINANCIAL TRANSACTION +16:48:52 +Slot[199] 0200 301000 6688990102890207 ------------- 00 261431 031809475426 5077092614310467PSLK6688990102890207 507709261431 787517 180893 S +16:48:53 Slot [188] | NOT FINANCIAL TRANSACTION +16:49:01 Slot [220] | NOT FINANCIAL TRANSACTION +16:49:01 +Slot[185] 0200 010000 6213544002275920 ------------- 00 892166 000100000000 507702415183030010116213544002275920 507702415183 153190 668899 S +16:49:03 Slot [229] | NOT FINANCIAL TRANSACTION +16:49:06 +Slot[230] 0200 010000 6213548000001345 ------------- 00 261434 000010000000 5077092614340301LPBX6213548000001345 507709261434 220456 180893 S +16:49:16 Slot [179] | NOT FINANCIAL TRANSACTION +16:49:27 Slot [212] | NOT FINANCIAL TRANSACTION +16:49:31 +Slot[186] 0200 011000 6688990102890207 ------------- 00 261438 000048000000 5077092614380467PSLK6688990102890207 507709261438 769972 180893 S +16:49:35 +Slot[236] 0200 301000 1808931100012283 ------------- 00 425163 000000000000 507704559201020018001808931100012283 507704559201 139286 621354 S +16:49:43 Slot [232] | NOT FINANCIAL TRANSACTION +16:49:46 +Slot[216] 0200 010000 6213544002190426 ------------- 00 892202 000007000000 507702435378030200316213544002190426 507702435378 029410 668899 S +16:49:53 +Slot[227] 0200 011000 1888880000087155 ------------- 00 425227 000050000000 507703441256060017001888880000087155 507703441256 615623 621354 S +16:49:54 Slot [219] | NOT FINANCIAL TRANSACTION +16:49:58 Slot [234] | NOT FINANCIAL TRANSACTION +16:50:04 Slot [239] | NOT FINANCIAL TRANSACTION +16:50:05 Slot [235] | NOT FINANCIAL TRANSACTION +16:50:15 Slot [242] | NOT FINANCIAL TRANSACTION +16:50:17 Slot [250] | NOT FINANCIAL TRANSACTION +16:50:26 Slot [201] | NOT FINANCIAL TRANSACTION +16:50:37 Slot [228] | NOT FINANCIAL TRANSACTION +16:50:48 Slot [252] | NOT FINANCIAL TRANSACTION +16:50:52 +Slot[238] 0200 011000 6213544002064563 ------------- 00 223469 000100000000 507700118586010011006213544002064563 507700118586 045365 220699 S +16:50:58 +Slot[245] 0200 300000 6688990106414707 ------------- 00 425523 000000000000 507703812929010097006688990106414707 507703812929 328227 621354 S +16:50:58 Slot [240] | NOT FINANCIAL TRANSACTION +16:51:03 Slot [248] | NOT FINANCIAL TRANSACTION +16:51:05 +Slot[258] 0200 010000 6213545000495204 ------------- 00 892268 000040000000 507702150731030200256213545000495204 507702150731 139855 668899 S +16:51:07 Slot [203] | NOT FINANCIAL TRANSACTION +16:51:09 Slot [244] | NOT FINANCIAL TRANSACTION +16:51:10 +Slot[247] 0200 011000 6213545000554273 ------------- 00 174923 000100000000 507700104155010010006213545000554273 507700104155 483239 220699 S +16:51:21 Slot [256] | NOT FINANCIAL TRANSACTION +16:51:32 Slot [253] | NOT FINANCIAL TRANSACTION +16:51:47 Slot [243] | NOT FINANCIAL TRANSACTION +16:51:58 Slot [246] | NOT FINANCIAL TRANSACTION +16:52:05 +Slot[241] 0200 011000 6213545000554273 ------------- 00 174926 000070000000 507700104157010010006213545000554273 507700104157 345501 220699 S +16:52:08 Slot [273] | NOT FINANCIAL TRANSACTION +16:52:09 Slot [260] | NOT FINANCIAL TRANSACTION +16:52:13 Slot [251] | NOT FINANCIAL TRANSACTION +16:52:22 +Slot[265] 0200 011000 6213544002064563 ------------- 00 223472 000100000000 507700118588010011006213544002064563 507700118588 591548 220699 S +16:52:24 Slot [264] | NOT FINANCIAL TRANSACTION +16:52:33 Slot [249] | NOT FINANCIAL TRANSACTION +16:52:39 Slot [269] | NOT FINANCIAL TRANSACTION +16:52:54 Slot [279] | NOT FINANCIAL TRANSACTION +16:53:04 Slot [233] | NOT FINANCIAL TRANSACTION +16:53:08 +Slot[209] 0200 010000 6213545001006562 ------------- 00 892359 000004000000 507702519869032080026213545001006562 507702519869 532783 668899 S +16:53:11 Slot [261] | NOT FINANCIAL TRANSACTION +16:53:13 Slot [257] | NOT FINANCIAL TRANSACTION +16:53:13 +Slot[268] 0200 011000 6213545000554273 ------------- 00 174929 000010000000 507700104159010010006213545000554273 507700104159 830017 220699 S +16:53:15 Slot [266] | NOT FINANCIAL TRANSACTION +16:53:24 +Slot[262] 0200 011000 6213544002064563 ------------- 00 223475 000100000000 507700118590010011006213544002064563 507700118590 948385 220699 S +16:53:29 +Slot[274] 0200 010000 1808930600041685 ------------- 00 892371 000010000000 507702150733030200251808930600041685 507702150733 661908 668899 S +16:53:31 Slot [284] | NOT FINANCIAL TRANSACTION +16:53:41 Slot [270] | NOT FINANCIAL TRANSACTION +16:53:52 Slot [280] | NOT FINANCIAL TRANSACTION +16:54:00 +Slot[263] 0200 301000 1808931300012539 ------------- 00 892401 000000000000 507702531250030200331808931300012539 507702531250 525973 668899 S +16:54:08 Slot [267] | NOT FINANCIAL TRANSACTION +16:54:13 Slot [278] | NOT FINANCIAL TRANSACTION +16:54:18 Slot [287] | NOT FINANCIAL TRANSACTION +16:54:20 +Slot[299] 0200 011000 6688990040094136 ------------- 00 426472 000010000000 507703968858010112006688990040094136 507703968858 034323 621354 S +16:54:21 +Slot[277] 0200 011000 6213544002064563 ------------- 00 223478 000070000000 507700118592010011006213544002064563 507700118592 834880 220699 S +16:54:22 +Slot[293] 0200 010000 1808931300012539 ------------- 00 892423 000010000000 507702531251030200331808931300012539 507702531251 561319 668899 S +16:54:29 Slot [285] | NOT FINANCIAL TRANSACTION +16:54:40 Slot [254] | NOT FINANCIAL TRANSACTION +16:54:50 Slot [289] | NOT FINANCIAL TRANSACTION +16:55:01 Slot [304] | NOT FINANCIAL TRANSACTION +16:55:12 Slot [275] | NOT FINANCIAL TRANSACTION +16:55:15 Slot [276] | NOT FINANCIAL TRANSACTION +16:55:17 Slot [291] | NOT FINANCIAL TRANSACTION +16:55:22 Slot [309] | NOT FINANCIAL TRANSACTION +16:55:23 Slot [281] | NOT FINANCIAL TRANSACTION +16:55:29 +Slot[259] 0200 300000 6688990103277404 ------------- 00 426836 000000000000 507703499140060022006688990103277404 507703499140 569798 621354 S +16:55:32 Slot [296] | NOT FINANCIAL TRANSACTION +16:55:35 Slot [294] | NOT FINANCIAL TRANSACTION +16:55:43 Slot [286] | NOT FINANCIAL TRANSACTION +16:55:53 Slot [298] | NOT FINANCIAL TRANSACTION +16:56:00 +Slot[303] 0200 010000 6688990106414707 ------------- 00 426982 000010000000 507703812939010097006688990106414707 507703812939 918019 621354 S +16:56:04 Slot [317] | NOT FINANCIAL TRANSACTION +16:56:07 +Slot[282] 0200 010000 6213545000401715 ------------- 00 892538 000050000000 507700285550030100056213545000401715 507700285550 145254 668899 S +16:56:14 +Slot[271] 0200 010000 6688990040063016 ------------- 00 427040 000020000000 507703973409010113006688990040063016 507703973409 873902 621354 S +16:56:14 Slot [288] | NOT FINANCIAL TRANSACTION +16:56:17 Slot [307] | NOT FINANCIAL TRANSACTION +16:56:25 Slot [237] | NOT FINANCIAL TRANSACTION +16:56:28 Slot [314] | NOT FINANCIAL TRANSACTION +16:56:36 Slot [315] | NOT FINANCIAL TRANSACTION +16:56:46 Slot [313] | NOT FINANCIAL TRANSACTION +16:56:57 Slot [331] | NOT FINANCIAL TRANSACTION +16:57:08 Slot [323] | NOT FINANCIAL TRANSACTION +16:57:14 +Slot[324] 0200 010000 6213544001764916 ------------- 00 261477 000010000000 5077092614770102SAPA6213544001764916 507709261477 621133 180893 S +16:57:17 +Slot[321] 0200 010000 6688990106414707 ------------- 00 427367 000100000000 507703812941010097006688990106414707 507703812941 602849 621354 S +16:57:19 Slot [255] | NOT FINANCIAL TRANSACTION +16:57:23 Slot [283] | NOT FINANCIAL TRANSACTION +16:57:27 Slot [318] | NOT FINANCIAL TRANSACTION +16:57:33 Slot [272] | NOT FINANCIAL TRANSACTION +16:57:33 Slot [326] | NOT FINANCIAL TRANSACTION +16:57:33 Slot [295] | NOT FINANCIAL TRANSACTION +16:57:35 +Slot[319] 0200 011000 6213545000742571 ------------- 00 261480 000020000000 5077092614800114XKBR6213545000742571 507709261480 717898 180893 S +16:57:48 Slot [340] | NOT FINANCIAL TRANSACTION +16:58:04 Slot [300] | NOT FINANCIAL TRANSACTION +16:58:15 Slot [336] | NOT FINANCIAL TRANSACTION +16:58:21 Slot [306] | NOT FINANCIAL TRANSACTION +16:58:26 Slot [312] | NOT FINANCIAL TRANSACTION +16:58:36 Slot [325] | NOT FINANCIAL TRANSACTION +16:58:38 Slot [355] | NOT FINANCIAL TRANSACTION +16:58:46 Slot [334] | NOT FINANCIAL TRANSACTION +16:58:49 +Slot[311] 0420 010000 6688990102511803 ------------- 00 427656 000005000000 507703477454060020006688990102511803 507703477454 -------- 621354 S +16:58:56 Slot [339] | NOT FINANCIAL TRANSACTION +16:59:12 Slot [308] | NOT FINANCIAL TRANSACTION +16:59:13 +Slot[310] 0200 010000 6213544000053469 ------------- 00 261491 000050000000 5077092614910528LPBP6213544000053469 507709261491 596815 180893 S +16:59:23 Slot [297] | NOT FINANCIAL TRANSACTION +16:59:23 Slot [341] | NOT FINANCIAL TRANSACTION +16:59:24 +Slot[349] 0420 010000 6688990103273007 ------------- 00 427791 000030000000 507703499142060022006688990103273007 507703499142 -------- 621354 S +16:59:31 +Slot[350] 0420 010000 6688990040070060 ------------- 00 261490 000050000000 5077092614900522XYXH6688990040070060 507709261490 -------- 180893 S +16:59:35 +Slot[332] 0200 010000 6213545000138192 ------------- 00 450574 000030000000 507700153066030003006213545000138192 507700153066 481401 220699 S +16:59:43 Slot [329] | NOT FINANCIAL TRANSACTION +16:59:59 +Slot[338] 0200 011000 1808931800017798 ------------- 00 428085 000015000000 507703926114010108001808931800017798 507703926114 230289 621354 S +17:00:03 +Slot[328] 0420 010000 6688990102511803 0000000000000 00 427656 000005000000 507703477454060020006688990102511803 507703477454 -------- 621354 S +17:00:04 Slot [345] | NOT FINANCIAL TRANSACTION +17:00:07 +Slot[364] 0420 010000 6688990900055003 ------------- 00 261495 000010000000 5077092614950102SAPA6688990900055003 507709261495 -------- 180893 S +17:00:17 Slot [343] | NOT FINANCIAL TRANSACTION +17:00:25 Slot [354] | NOT FINANCIAL TRANSACTION +17:00:30 Slot [337] | NOT FINANCIAL TRANSACTION +17:00:37 +Slot[320] 0420 010000 6688990103273007 0000000000000 00 427791 000030000000 507703499142060022006688990103273007 507703499142 -------- 621354 S +17:00:38 +Slot[302] 0200 010000 6688990102511803 ------------- 91 427656 000005000000 507703477454060020006688990102511803 507703477454 619657 621354 S +17:00:45 Slot [335] | NOT FINANCIAL TRANSACTION +17:00:48 Slot [347] | NOT FINANCIAL TRANSACTION +17:00:50 +Slot[342] 0200 010000 6213545001000318 ------------- 00 261501 000050000000 5077092615010441VT526213545001000318 507709261501 548178 180893 S +17:01:11 +Slot[369] 0200 301000 1808931800017798 ------------- 00 428430 000000000000 507703926115010108001808931800017798 507703926115 231203 621354 S +17:01:13 +Slot[316] 0200 010000 6688990103273007 ------------- 91 427791 000030000000 507703499142060022006688990103273007 507703499142 435277 621354 S +17:01:15 +Slot[330] 0420 010000 6688990040070060 0000000000000 00 261490 000050000000 5077092614900522XYXH6688990040070060 507709261490 -------- 180893 S +17:01:17 Slot [290] | NOT FINANCIAL TRANSACTION +17:01:19 +Slot[366] 0200 010000 6213544001991345 ------------- 00 261506 000100000000 5077102615060401XSBR6213544001991345 507710261506 660865 180893 S +17:01:21 +Slot[301] 0200 010000 6688990040070060 ------------- 91 261490 000050000000 5077092614900522XYXH6688990040070060 507709261490 478334 180893 S +17:01:27 Slot [333] | NOT FINANCIAL TRANSACTION +17:01:28 Slot [384] | NOT FINANCIAL TRANSACTION +17:01:34 +Slot[292] 0420 010000 6688990900055003 0000000000000 00 261495 000010000000 5077092614950102SAPA6688990900055003 507709261495 -------- 180893 S +17:01:40 Slot [365] | NOT FINANCIAL TRANSACTION +17:01:50 +Slot[360] 0200 301000 6213541000341928 ------------- 00 261509 031810005426 5077102615090102SAPA6213541000341928 507710261509 939862 180893 S +17:01:53 Slot [358] | NOT FINANCIAL TRANSACTION +17:01:56 +Slot[352] 0200 010000 6688990900055003 ------------- 91 261495 000010000000 5077092614950102SAPA6688990900055003 507709261495 049694 180893 S +17:02:01 Slot [372] | NOT FINANCIAL TRANSACTION +17:02:04 +Slot[373] 0420 011000 6688990102806906 ------------- 00 428568 000020000000 507703968865010112006688990102806906 507703968865 -------- 621354 S +17:02:06 +Slot[353] 0200 011000 1808930200021012 ------------- 55 428737 000055000000 507703516042090008001808930200021012 507703516042 967075 621354 S +17:02:07 +Slot[380] 0200 010000 6213544001991345 ------------- 00 261511 000100000000 5077102615110401XSBR6213544001991345 507710261511 347602 180893 S +17:02:16 Slot [382] | NOT FINANCIAL TRANSACTION +17:02:19 +Slot[362] 0420 011000 6688990107557108 ------------- 00 428630 000100000000 507704964548150011006688990107557108 507704964548 -------- 621354 S +17:02:27 +Slot[379] 0200 010000 6213541000341928 ------------- 61 261514 000200000000 5077102615140102SAPA6213541000341928 507710261514 734161 180893 S +17:02:29 Slot [322] | NOT FINANCIAL TRANSACTION +17:02:33 Slot [348] | NOT FINANCIAL TRANSACTION +17:02:36 Slot [361] | NOT FINANCIAL TRANSACTION +17:02:39 +Slot[305] 0200 301000 6688990040070060 ------------- 91 261498 031809592126 5077092614980522XYXH6688990040070060 507709261498 410845 180893 S +17:02:44 +Slot[377] 0200 011000 1808930200021012 ------------- 55 428914 000055000000 507703516044090008001808930200021012 507703516044 628779 621354 S +17:02:48 +Slot[378] 0200 010000 6213544001991345 ------------- 00 261517 000100000000 5077102615170401XSBR6213544001991345 507710261517 600076 180893 S +17:02:57 +Slot[363] 0200 010000 6213541000341928 ------------- 00 261519 000100000000 5077102615190102SAPA6213541000341928 507710261519 409225 180893 S +17:02:58 Slot [346] | NOT FINANCIAL TRANSACTION +17:03:07 Slot [370] | NOT FINANCIAL TRANSACTION +17:03:18 +Slot[385] 0420 011000 6688990102806906 0000000000000 00 428568 000020000000 507703968865010112006688990102806906 507703968865 -------- 621354 S +17:03:20 +Slot[371] 0200 011000 1808930200021012 ------------- 75 429092 000055000000 507703516046090008001808930200021012 507703516046 848504 621354 S +17:03:30 Slot [351] | NOT FINANCIAL TRANSACTION +17:03:31 +Slot[344] 0200 010000 6213544001991345 ------------- 00 261526 000100000000 5077102615260401XSBR6213544001991345 507710261526 741101 180893 S +17:03:31 Slot [367] | NOT FINANCIAL TRANSACTION +17:03:33 +Slot[397] 0420 011000 6688990107557108 0000000000000 00 428630 000100000000 507704964548150011006688990107557108 507704964548 -------- 621354 S +17:03:46 +Slot[386] 0200 010000 6213541000341928 ------------- 00 261528 000100000000 5077102615280102SAPA6213541000341928 507710261528 784111 180893 S +17:03:53 +Slot[374] 0200 011000 6688990102806906 ------------- 91 428568 000020000000 507703968865010112006688990102806906 507703968865 840884 621354 S +17:03:55 Slot [388] | NOT FINANCIAL TRANSACTION +17:04:03 Slot [410] | NOT FINANCIAL TRANSACTION +17:04:06 Slot [357] | NOT FINANCIAL TRANSACTION +17:04:07 +Slot[327] 0200 011000 6688990107557108 ------------- 91 428630 000100000000 507704964548150011006688990107557108 507704964548 334355 621354 S +17:04:17 +Slot[401] 0200 010000 6213544001991345 ------------- 00 261533 000100000000 5077102615330401XSBR6213544001991345 507710261533 543638 180893 S +17:04:27 Slot [408] | NOT FINANCIAL TRANSACTION +17:04:33 Slot [413] | NOT FINANCIAL TRANSACTION +17:04:40 +Slot[398] 0420 010000 6688990105564601 ------------- 00 429346 000010000000 507704226985050046006688990105564601 507704226985 -------- 621354 S +17:04:42 +Slot[414] 0200 011000 1808930200016947 ------------- 00 429487 000100000000 507704030553090017001808930200016947 507704030553 924468 621354 S +17:04:47 Slot [393] | NOT FINANCIAL TRANSACTION +17:04:57 Slot [392] | NOT FINANCIAL TRANSACTION +17:05:02 +Slot[420] 0200 010000 6213544001991345 ------------- 00 261539 000100000000 5077102615390401XSBR6213544001991345 507710261539 635011 180893 S +17:05:08 Slot [391] | NOT FINANCIAL TRANSACTION +17:05:13 Slot [418] | NOT FINANCIAL TRANSACTION +17:05:14 +Slot[425] 0200 301000 2206990000114587 ------------- 00 429666 000000000000 507704634358170008002206990000114587 507704634358 306736 621354 S +17:05:17 Slot [383] | NOT FINANCIAL TRANSACTION +17:05:26 +Slot[387] 0200 012000 1808930200055937 ------------- 42 429725 000100000000 507702824314010076001808930200055937 507702824314 518865 621354 S +17:05:35 Slot [431] | NOT FINANCIAL TRANSACTION +17:05:37 +Slot[415] 0200 010000 1808930200016947 ------------- 00 429752 000100000000 507704030555090017001808930200016947 507704030555 225130 621354 S +17:05:38 +Slot[429] 0200 010000 6213544001991345 ------------- 00 261544 000100000000 5077102615440401XSBR6213544001991345 507710261544 227045 180893 S +17:05:41 +Slot[423] 0200 011000 1808930200021012 ------------- 75 429800 000055000000 507703523772090009001808930200021012 507703523772 821158 621354 S +17:05:50 Slot [395] | NOT FINANCIAL TRANSACTION +17:05:52 +Slot[400] 0420 010000 6688990105564601 0000000000000 00 429346 000010000000 507704226985050046006688990105564601 507704226985 -------- 621354 S +17:06:05 Slot [417] | NOT FINANCIAL TRANSACTION +17:06:13 Slot [399] | NOT FINANCIAL TRANSACTION +17:06:15 +Slot[381] 0420 012000 6688990103636005 ------------- 00 429798 000020000000 507703499146060022006688990103636005 507703499146 -------- 621354 S +17:06:28 +Slot[359] 0200 010000 6688990105564601 ------------- 91 429346 000010000000 507704226985050046006688990105564601 507704226985 887641 621354 S +17:06:29 +Slot[375] 0200 010000 2206990000114587 ------------- 00 429965 000070000000 507704634360170008002206990000114587 507704634360 337083 621354 S +17:06:37 Slot [445] | NOT FINANCIAL TRANSACTION +17:06:41 +Slot[406] 0200 012000 1808930200055937 ------------- 42 429992 000100000000 507702824316010076001808930200055937 507702824316 305850 621354 S +17:06:41 +Slot[437] 0200 010000 6213544001991345 ------------- 00 261550 000100000000 5077102615500401XSBR6213544001991345 507710261550 300949 180893 S +17:06:42 Slot [427] | NOT FINANCIAL TRANSACTION +17:06:52 Slot [422] | NOT FINANCIAL TRANSACTION +17:07:02 Slot [404] | NOT FINANCIAL TRANSACTION +17:07:11 +Slot[394] 0420 011000 6688990900055003 ------------- 00 430075 000100000000 507703750151010091006688990900055003 507703750151 -------- 621354 S +17:07:12 Slot [452] | NOT FINANCIAL TRANSACTION +17:07:18 Slot [448] | NOT FINANCIAL TRANSACTION +17:07:23 +Slot[403] 0200 301000 6688990040041962 ------------- 91 429610 000000000000 507705334882050047006688990040041962 507705334882 309576 621354 S +17:07:27 Slot [442] | NOT FINANCIAL TRANSACTION +17:07:29 +Slot[356] 0420 012000 6688990103636005 0000000000000 00 429798 000020000000 507703499146060022006688990103636005 507703499146 -------- 621354 S +17:07:33 +Slot[416] 0200 301000 6688990040025197 ------------- 91 429656 000000000000 507703968871010112006688990040025197 507703968871 772797 621354 S +17:07:34 Slot [440] | NOT FINANCIAL TRANSACTION +17:07:39 Slot [389] | NOT FINANCIAL TRANSACTION +17:07:40 +Slot[411] 0200 011000 1808930900013418 ------------- 00 430370 000025000000 507702824318010076001808930900013418 507702824318 119012 621354 S +17:07:42 +Slot[443] 0420 012000 6688990103636005 ------------- 00 430202 000020000000 507703499148060022006688990103636005 507703499148 -------- 621354 S +17:07:43 Slot [465] | NOT FINANCIAL TRANSACTION +17:07:56 +Slot[396] 0200 301000 6688990107557108 ------------- 91 429757 000000000000 507704964551150011006688990107557108 507704964551 597659 621354 S +17:07:59 Slot [439] | NOT FINANCIAL TRANSACTION +17:08:03 +Slot[402] 0200 012000 6688990103636005 ------------- 91 429798 000020000000 507703499146060022006688990103636005 507703499146 536287 621354 S +17:08:13 Slot [376] | NOT FINANCIAL TRANSACTION +17:08:16 +Slot[435] 0420 010000 6688990040041962 ------------- 00 430406 000080000000 507705334885050047006688990040041962 507705334885 -------- 621354 S +17:08:16 Slot [421] | NOT FINANCIAL TRANSACTION +17:08:23 Slot [430] | NOT FINANCIAL TRANSACTION +17:08:24 +Slot[447] 0420 011000 6688990900055003 0000000000000 00 430075 000100000000 507703750151010091006688990900055003 507703750151 -------- 621354 S +17:08:27 Slot [441] | NOT FINANCIAL TRANSACTION +17:08:37 Slot [460] | NOT FINANCIAL TRANSACTION +17:08:39 +Slot[438] 0200 300000 6688990040041962 ------------- 91 429974 000000000000 507705334883050047006688990040041962 507705334883 992294 621354 S +17:08:41 Slot [456] | NOT FINANCIAL TRANSACTION +17:08:46 +Slot[463] 0420 010000 6688990103636005 ------------- 00 430528 000030000000 507703499150060022006688990103636005 507703499150 -------- 621354 S +17:08:46 +Slot[428] 0200 300000 6688990040025197 ------------- 91 430006 000000000000 507703968872010112006688990040025197 507703968872 262774 621354 S +17:08:47 Slot [462] | NOT FINANCIAL TRANSACTION +17:08:55 +Slot[405] 0420 012000 6688990103636005 0000000000000 00 430202 000020000000 507703499148060022006688990103636005 507703499148 -------- 621354 S +17:08:58 Slot [434] | NOT FINANCIAL TRANSACTION +17:09:00 +Slot[419] 0200 011000 6688990900055003 ------------- 91 430075 000100000000 507703750151010091006688990900055003 507703750151 577387 621354 S +17:09:09 Slot [449] | NOT FINANCIAL TRANSACTION +17:09:25 Slot [409] | NOT FINANCIAL TRANSACTION +17:09:28 +Slot[368] 0200 012000 6688990103636005 ------------- 91 430202 000020000000 507703499148060022006688990103636005 507703499148 657058 621354 S +17:09:28 Slot [412] | NOT FINANCIAL TRANSACTION +17:09:28 +Slot[475] 0420 010000 6688990040041962 0000000000000 00 430406 000080000000 507705334885050047006688990040041962 507705334885 -------- 621354 S +17:09:40 Slot [469] | NOT FINANCIAL TRANSACTION +17:09:43 Slot [457] | NOT FINANCIAL TRANSACTION +17:09:51 Slot [479] | NOT FINANCIAL TRANSACTION +17:09:56 +Slot[482] 0420 012000 6688990103636005 ------------- 00 430938 000020000000 507703499152060022006688990103636005 507703499152 -------- 621354 S +17:09:59 +Slot[489] 0200 011000 6213544001983862 ------------- 00 261563 000035000000 5077102615630362CPSU6213544001983862 507710261563 374793 180893 S +17:09:59 +Slot[444] 0420 010000 6688990103636005 0000000000000 00 430528 000030000000 507703499150060022006688990103636005 507703499150 -------- 621354 S +17:10:03 +Slot[424] 0200 010000 6688990040041962 ------------- 91 430406 000080000000 507705334885050047006688990040041962 507705334885 312782 621354 S +17:10:07 Slot [450] | NOT FINANCIAL TRANSACTION +17:10:17 Slot [478] | NOT FINANCIAL TRANSACTION +17:10:17 Slot [433] | NOT FINANCIAL TRANSACTION +17:10:28 Slot [459] | NOT FINANCIAL TRANSACTION +17:10:28 +Slot[390] 0200 010000 6688990103636005 ------------- 91 430528 000030000000 507703499150060022006688990103636005 507703499150 913291 621354 S +17:10:33 Slot [467] | NOT FINANCIAL TRANSACTION +17:10:39 Slot [483] | NOT FINANCIAL TRANSACTION +17:10:44 +Slot[490] 0200 011000 6213545000942544 ------------- 00 168879 000100000000 507717168879015290186213545000942544 507717168879 241085 198901 S +17:10:45 Slot [453] | NOT FINANCIAL TRANSACTION +17:10:48 +Slot[474] 0200 011000 1808931100012333 ------------- 00 431320 000010000000 507703968883010112001808931100012333 507703968883 151874 621354 S +17:10:56 Slot [472] | NOT FINANCIAL TRANSACTION +17:11:06 Slot [485] | NOT FINANCIAL TRANSACTION +17:11:08 +Slot[468] 0420 012000 6688990103636005 0000000000000 00 430938 000020000000 507703499152060022006688990103636005 507703499152 -------- 621354 S +17:11:16 Slot [426] | NOT FINANCIAL TRANSACTION +17:11:27 Slot [487] | NOT FINANCIAL TRANSACTION +17:11:38 Slot [461] | NOT FINANCIAL TRANSACTION +17:11:39 +Slot[498] 0200 301000 6213545000942544 ------------- 00 168894 000000000000 507717168894015290186213545000942544 507717168894 880189 198901 S +17:11:41 +Slot[450] 0420 010000 6213545000493340 ------------- 00 893004 000010000000 507700285554030100056213545000493340 507700285554 -------- 668899 S +17:11:42 Slot [491] | NOT FINANCIAL TRANSACTION +17:11:43 +Slot[407] 0200 012000 6688990103636005 ------------- 91 430938 000020000000 507703499152060022006688990103636005 507703499152 491438 621354 S +17:11:44 +Slot[446] 0200 010000 6213545000868525 ------------- 00 893037 000010000000 507702336300032170026213545000868525 507702336300 138965 668899 S +17:11:46 +Slot[471] 0420 012000 6688990103636005 ------------- 00 431439 000020000000 507703499154060022006688990103636005 507703499154 -------- 621354 S +17:11:47 Slot [476] | NOT FINANCIAL TRANSACTION +17:11:53 +Slot[436] 0200 311000 6213545000305015 ------------- 00 250774 000000000000 507700335919010019006213545000305015 507700335919 050309 220699 S +17:11:56 +Slot[486] 0420 012000 6688990040114512 ------------- 00 431466 000100000000 507704179043200012006688990040114512 507704179043 -------- 621354 S +17:11:58 Slot [497] | NOT FINANCIAL TRANSACTION +17:12:09 Slot [2] | NOT FINANCIAL TRANSACTION +17:12:18 Slot [499] | NOT FINANCIAL TRANSACTION +17:12:20 Slot [464] | NOT FINANCIAL TRANSACTION +17:12:25 +Slot[470] 0200 011000 6213545000305015 ------------- 00 250775 000050000000 507700335920010019006213545000305015 507700335920 860419 220699 S +17:12:30 Slot [495] | NOT FINANCIAL TRANSACTION +17:12:34 Slot [451] | NOT FINANCIAL TRANSACTION +17:12:35 +Slot[492] 0200 011000 2206990000132845 ------------- 00 431804 000030000000 507703973426010113002206990000132845 507703973426 348920 621354 S +17:12:41 Slot [18] | NOT FINANCIAL TRANSACTION +17:12:43 Slot [477] | NOT FINANCIAL TRANSACTION +17:12:49 +Slot[24] 0420 011000 6688990106537903 ------------- 00 261576 000020000000 5077102615760102SAPA6688990106537903 507710261576 -------- 180893 S +17:12:49 Slot [454] | NOT FINANCIAL TRANSACTION +17:12:54 +Slot[14] 0200 011000 6213545000942544 ------------- 00 168913 000100000000 507717168913015290186213545000942544 507717168913 826205 198901 S +17:13:00 +Slot[480] 0420 012000 6688990103636005 0000000000000 00 431439 000020000000 507703499154060022006688990103636005 507703499154 -------- 621354 S +17:13:02 +Slot[484] 0200 301000 1808930400011524 ------------- 55 431906 000000000000 507704268322030025001808930400011524 507704268322 734034 621354 S +17:13:09 +Slot[466] 0420 010000 6688990040014498 ------------- 00 431748 000005000000 507703968885010112006688990040014498 507703968885 -------- 621354 S +17:13:09 +Slot[488] 0420 012000 6688990040114512 0000000000000 00 431466 000100000000 507704179043200012006688990040114512 507704179043 -------- 621354 S +17:13:26 +Slot[458] 0200 011000 6213542000018201 ------------- 00 261579 000010000000 5077102615790111BLBR6213542000018201 507710261579 818657 180893 S +17:13:28 Slot [3] | NOT FINANCIAL TRANSACTION +17:13:31 +Slot[432] 0200 012000 6688990103636005 ------------- 91 431439 000020000000 507703499154060022006688990103636005 507703499154 555819 621354 S +17:13:38 +Slot[493] 0200 301000 1808930400011524 ------------- 00 431979 000000000000 507704268323030025001808930400011524 507704268323 382216 621354 S +17:13:38 Slot [22] | NOT FINANCIAL TRANSACTION +17:13:38 +Slot[455] 0200 012000 6688990040114512 ------------- 91 431466 000100000000 507704179043200012006688990040114512 507704179043 963876 621354 S +17:13:40 +Slot[481] 0200 011000 6213544000846847 ------------- 00 250778 000100000000 507700335922010019006213544000846847 507700335922 743453 220699 S +17:13:43 +Slot[16] 0200 011000 6213545000942544 ------------- 00 168924 000100000000 507717168924015290186213545000942544 507717168924 805688 198901 S +17:13:48 Slot [0] | NOT FINANCIAL TRANSACTION +17:13:49 Slot [4] | NOT FINANCIAL TRANSACTION +17:13:51 Slot [1] | NOT FINANCIAL TRANSACTION +17:13:58 +Slot[21] 0420 010000 6213545000493340 ------------- 00 893084 000100000000 507700285556030100056213545000493340 507700285556 -------- 668899 S +17:13:58 +Slot[5] 0200 011000 6213542000018201 ------------- 00 261583 000020000000 5077102615830111BLBR6213542000018201 507710261583 727738 180893 S +17:14:03 +Slot[15] 0420 011000 6688990106537903 0000000000000 00 261576 000020000000 5077102615760102SAPA6688990106537903 507710261576 -------- 180893 S +17:14:10 Slot [496] | NOT FINANCIAL TRANSACTION +17:14:16 +Slot[26] 0200 011000 6213545000942544 ------------- 00 168932 000100000000 507717168932015290186213545000942544 507717168932 928726 198901 S +17:14:19 +Slot[8] 0420 010000 6688990040014498 0 00 431748 000005000000 507703968885010112006688990040014498 507703968885 000000 621354 S +17:14:20 +Slot[12] 0200 302000 6688990060034889 ------------- 00 432058 000000000000 507704488840150010006688990060034889 507704488840 757502 621354 S +17:14:25 Slot [23] | NOT FINANCIAL TRANSACTION +17:14:34 +Slot[10] 0200 011000 6213544000656360 ------------- 00 379445 000100000000 507700165648060001006213544000656360 507700165648 390932 220699 S +17:14:37 +Slot[6] 0420 010000 6213548000392496 ------------- 00 893093 000005000000 507700167973030200076213548000392496 507700167973 -------- 668899 S +17:14:40 +Slot[473] 0200 011000 6688990106537903 ------------- 91 261576 000020000000 5077102615760102SAPA6688990106537903 507710261576 415844 180893 S +17:14:41 Slot [11] | NOT FINANCIAL TRANSACTION +17:14:42 +Slot[9] 0420 012000 6688990107144709 ------------- 00 432192 000100000000 507705396670150013006688990107144709 507705396670 -------- 621354 S +17:14:42 +Slot[7] 0200 010000 6688990040014498 ------------- 91 431748 000005000000 507703968885010112006688990040014498 507703968885 276870 621354 S +17:14:43 +Slot[27] 0420 010000 6213548000266633 ------------- 00 893094 000014000000 507700270704030100046213548000266633 507700270704 -------- 668899 S +17:14:44 +Slot[46] 0200 010000 6213545000868525 ------------- 00 893148 000100000000 507702336302032170026213545000868525 507702336302 211123 668899 S +17:14:53 Slot [56] | NOT FINANCIAL TRANSACTION +17:14:53 Slot [30] | NOT FINANCIAL TRANSACTION +17:14:56 Slot [42] | NOT FINANCIAL TRANSACTION +17:14:58 +Slot[28] 0200 011000 6213545000942544 ------------- 00 168938 000100000000 507717168938015290186213545000942544 507717168938 867757 198901 S +17:15:14 +Slot[20] 0200 010000 1808930200055937 ------------- 00 893175 000100000000 507702150735030200251808930200055937 507702150735 233222 668899 S +17:15:16 Slot [36] | NOT FINANCIAL TRANSACTION +17:15:17 Slot [34] | NOT FINANCIAL TRANSACTION +17:15:22 +Slot[32] 0420 011000 6688990104016702 ------------- 00 432420 000010000000 507704789071070014006688990104016702 507704789071 -------- 621354 S +17:15:24 +Slot[38] 0200 011000 6213545000942544 ------------- 00 168954 000100000000 507717168954015290186213545000942544 507717168954 340877 198901 S +17:15:26 Slot [52] | NOT FINANCIAL TRANSACTION +17:15:37 Slot [41] | NOT FINANCIAL TRANSACTION +17:15:47 +Slot[47] 0420 010000 6688990103847503 ------------- 00 432556 000010000000 507704634368170008006688990103847503 507704634368 -------- 621354 S +17:15:48 Slot [19] | NOT FINANCIAL TRANSACTION +17:15:53 +Slot[40] 0200 011000 6213545000942544 ------------- 00 168966 000100000000 507717168966015290186213545000942544 507717168966 562990 198901 S +17:15:54 +Slot[13] 0420 012000 6688990107144709 0000000000000 00 432192 000100000000 507705396670150013006688990107144709 507705396670 -------- 621354 S +17:15:55 Slot [37] | NOT FINANCIAL TRANSACTION +17:15:58 Slot [54] | NOT FINANCIAL TRANSACTION +17:15:59 +Slot[57] 0200 011000 1808930200001535 ------------- 00 432720 000050000000 507703973435010113001808930200001535 507703973435 433516 621354 S +17:16:10 Slot [55] | NOT FINANCIAL TRANSACTION +17:16:12 +Slot[61] 0200 010000 6213548000229136 ------------- 00 893208 000040000000 507700167975030200076213548000229136 507700167975 255409 668899 S +17:16:22 +Slot[51] 0200 011000 6213548000266633 ------------- 00 261590 000014000000 5077102615900442VTVK6213548000266633 507710261590 062716 180893 S +17:16:24 +Slot[31] 0200 012000 6688990107144709 ------------- 91 432192 000100000000 507705396670150013006688990107144709 507705396670 904739 621354 S +17:16:26 +Slot[29] 0200 011000 6213545000942544 ------------- 00 168975 000100000000 507717168975015290186213545000942544 507717168975 773138 198901 S +17:16:28 +Slot[60] 0420 010000 6688990104016702 ------------- 00 432676 000010000000 507704789073070014006688990104016702 507704789073 -------- 621354 S +17:16:31 Slot [17] | NOT FINANCIAL TRANSACTION +17:16:32 +Slot[44] 0200 010000 6688990104016702 ------------- 00 432676 000010000000 507704789073070014006688990104016702 507704789073 916751 621354 S +17:16:35 +Slot[48] 0420 011000 6688990104016702 0000000000000 00 432420 000010000000 507704789071070014006688990104016702 507704789071 -------- 621354 S +17:16:36 +Slot[59] 0200 302000 6688990106050501 ------------- 00 261588 031810150726 5077102615880263UDXB6688990106050501 507710261588 316760 180893 S +17:16:47 +Slot[72] 0420 011000 6688990602265801 ------------- 00 432806 000100000000 507702961426120019006688990602265801 507702961426 -------- 621354 S +17:16:47 Slot [63] | NOT FINANCIAL TRANSACTION +17:16:56 +Slot[71] 0200 011000 6213544001114138 ------------- 00 261593 000020000000 5077102615930101VTEB6213544001114138 507710261593 954084 180893 S +17:16:57 Slot [35] | NOT FINANCIAL TRANSACTION +17:17:00 +Slot[39] 0420 010000 6688990103847503 0000000000000 00 432556 000010000000 507704634368170008006688990103847503 507704634368 -------- 621354 S +17:17:02 +Slot[80] 0420 010000 6213548000229136 ------------- 00 893208 000040000000 507700167975030200076213548000229136 507700167975 -------- 668899 S +17:17:03 Slot [53] | NOT FINANCIAL TRANSACTION +17:17:08 Slot [49] | NOT FINANCIAL TRANSACTION +17:17:11 +Slot[25] 0200 011000 6688990104016702 ------------- 91 432420 000010000000 507704789071070014006688990104016702 507704789071 416927 621354 S +17:17:18 Slot [79] | NOT FINANCIAL TRANSACTION +17:17:28 Slot [68] | NOT FINANCIAL TRANSACTION +17:17:32 +Slot[85] 0420 010000 6688990040135939 ------------- 00 433025 000100000000 507704634370170008006688990040135939 507704634370 -------- 621354 S +17:17:34 Slot [43] | NOT FINANCIAL TRANSACTION +17:17:37 +Slot[494] 0200 010000 6688990103847503 ------------- 91 432556 000010000000 507704634368170008006688990103847503 507704634368 470834 621354 S +17:17:37 +Slot[75] 0200 010000 6213545000868525 ------------- 00 893271 000100000000 507702336304032170026213545000868525 507702336304 300758 668899 S +17:17:44 Slot [91] | NOT FINANCIAL TRANSACTION +17:17:45 +Slot[77] 0420 010000 6688990104016702 0000000000000 00 432676 000010000000 507704789073070014006688990104016702 507704789073 -------- 621354 S +17:17:55 +Slot[89] 0200 011000 1808930600020549 ------------- 00 433260 000025000000 507705186850030044001808930600020549 507705186850 976561 621354 S +17:17:59 Slot [65] | NOT FINANCIAL TRANSACTION +17:18:00 Slot [88] | NOT FINANCIAL TRANSACTION +17:18:00 +Slot[76] 0420 011000 6688990602265801 0000000000000 00 432806 000100000000 507702961426120019006688990602265801 507702961426 -------- 621354 S +17:18:05 +Slot[66] 0420 010000 6688990106050501 ------------- 00 261599 000100000000 5077102615990263UDXB6688990106050501 507710261599 -------- 180893 S +17:18:08 Slot [86] | NOT FINANCIAL TRANSACTION +17:18:15 +Slot[33] 0420 010000 6213548000229136 0000000000000 00 893208 000040000000 507700167975030200076213548000229136 507700167975 636678 668899 S +17:18:26 Slot [94] | NOT FINANCIAL TRANSACTION +17:18:35 +Slot[101] 0420 010000 6213545000868525 ------------- 00 893271 000100000000 507702336304032170026213545000868525 507702336304 -------- 668899 S +17:18:35 +Slot[58] 0200 011000 6688990602265801 ------------- 91 432806 000100000000 507702961426120019006688990602265801 507702961426 604365 621354 S +17:18:46 +Slot[105] 0420 010000 6688990040135939 0000000000000 00 433025 000100000000 507704634370170008006688990040135939 507704634370 -------- 621354 S +17:18:47 Slot [102] | NOT FINANCIAL TRANSACTION +17:18:49 +Slot[93] 0200 301000 1808930200034262 ------------- 00 433485 000000000000 507704986964010123001808930200034262 507704986964 137227 621354 S +17:18:59 Slot [81] | NOT FINANCIAL TRANSACTION +17:19:01 +Slot[95] 0200 010000 1808931600005639 ------------- 51 893314 000050000000 507702415189030010111808931600005639 507702415189 332690 668899 S +17:19:01 Slot [92] | NOT FINANCIAL TRANSACTION +17:19:06 +Slot[74] 0200 301000 6688990600847105 ------------- 00 433474 000000000000 507703384784130018006688990600847105 507703384784 688189 621354 S +17:19:08 +Slot[45] 0200 011000 1808930400002408 ------------- 00 433622 000010000000 507704340412030033001808930400002408 507704340412 366354 621354 S +17:19:10 +Slot[107] 0420 011000 6688990107703900 ------------- 00 433498 000020000000 507703073788010087006688990107703900 507703073788 -------- 621354 S +17:19:12 +Slot[103] 0200 011000 6688990107703900 ------------- 51 433498 000020000000 507703073788010087006688990107703900 507703073788 005248 621354 S +17:19:13 Slot [114] | NOT FINANCIAL TRANSACTION +17:19:13 Slot [104] | NOT FINANCIAL TRANSACTION +17:19:18 +Slot[100] 0420 010000 6688990106050501 0000000000000 00 261599 000100000000 5077102615990263UDXB6688990106050501 507710261599 -------- 180893 S +17:19:20 +Slot[67] 0200 010000 6688990040135939 ------------- 91 433025 000100000000 507704634370170008006688990040135939 507704634370 209997 621354 S +17:19:21 +Slot[82] 0200 010000 6213544001757167 ------------- 00 893334 000030000000 507702490313032150016213544001757167 507702490313 366232 668899 S +17:19:34 +Slot[69] 0200 011000 1808930200034262 ------------- 00 433744 000030000000 507704986966010123001808930200034262 507704986966 026434 621354 S +17:19:36 +Slot[87] 0420 010000 6688990040045740 ------------- 00 433571 000005000000 507703907246010106006688990040045740 507703907246 -------- 621354 S +17:19:38 Slot [122] | NOT FINANCIAL TRANSACTION +17:19:46 +Slot[117] 0420 011000 6688990100969102 ------------- 00 433612 000050000000 507704718988180010006688990100969102 507704718988 -------- 621354 S +17:19:47 +Slot[108] 0200 011000 6213545000840615 ------------- 00 261612 000030000000 5077102616120461BKPO6213545000840615 507710261612 872045 180893 S +17:19:48 +Slot[119] 0420 010000 6213545000868525 0000000000000 00 893271 000100000000 507702336304032170026213545000868525 507702336304 682671 668899 S +17:19:52 +Slot[83] 0200 301000 6688990040045740 ------------- 91 433163 000000000000 507703907244010106006688990040045740 507703907244 144443 621354 S +17:19:53 Slot [115] | NOT FINANCIAL TRANSACTION +17:19:54 +Slot[73] 0200 010000 6688990106050501 ------------- 91 261599 000100000000 5077102615990263UDXB6688990106050501 507710261599 196185 180893 S +17:19:54 +Slot[78] 0200 301000 6688990600847105 ------------- 91 433170 000000000000 507703384783130018006688990600847105 507703384783 497660 621354 S +17:20:03 Slot [110] | NOT FINANCIAL TRANSACTION +17:20:04 Slot [64] | NOT FINANCIAL TRANSACTION +17:20:13 +Slot[113] 0200 010000 6213544000035615 ------------- 61 261619 000200000000 5077102616190102SAPA6213544000035615 507710261619 820473 180893 S +17:20:15 +Slot[97] 0200 010000 6213545000868525 ------------- 00 893355 000100000000 507702336306032170026213545000868525 507702336306 479563 668899 S +17:20:16 +Slot[62] 0200 010000 1808931600005639 ------------- 00 893356 000030000000 507702415190030010111808931600005639 507702415190 363588 668899 S +17:20:18 Slot [98] | NOT FINANCIAL TRANSACTION +17:20:18 Slot [90] | NOT FINANCIAL TRANSACTION +17:20:23 +Slot[84] 0420 011000 6688990107703900 ------------- 00 433836 000010000000 507703073790010087006688990107703900 507703073790 -------- 621354 S +17:20:23 +Slot[121] 0420 011000 6688990107703900 0000000000000 00 433498 000020000000 507703073788010087006688990107703900 507703073788 -------- 621354 S +17:20:25 Slot [159] | NOT FINANCIAL TRANSACTION +17:20:39 +Slot[134] 0420 011000 6688990107393900 ------------- 00 261616 000040000000 5077102616160368KMMX6688990107393900 507710261616 -------- 180893 S +17:20:51 +Slot[144] 0420 010000 6688990040045740 0 00 433571 000005000000 507703907246010106006688990040045740 507703907246 000000 621354 S +17:21:00 +Slot[99] 0420 011000 6688990100969102 0 00 433612 000050000000 507704718988180010006688990100969102 507704718988 000000 621354 S +17:21:02 +Slot[124] 0200 302000 6688990100945805 ------------- 00 433951 000000000000 507704718989180010006688990100945805 507704718989 183626 621354 S +17:21:02 Slot [148] | NOT FINANCIAL TRANSACTION +17:21:05 Slot [111] | NOT FINANCIAL TRANSACTION +17:21:08 +Slot[112] 0200 302000 6688990107149203 ------------- 55 434111 000000000000 507705396677150013006688990107149203 507705396677 609472 621354 S +17:21:09 +Slot[149] 0200 300000 6213548000060689 ------------- 00 893412 000000000000 507700493630030010066213548000060689 507700493630 398112 668899 S +17:21:11 +Slot[126] 0420 010000 6213545000868525 ------------- 00 893355 000100000000 507702336306032170026213545000868525 507702336306 -------- 668899 S +17:21:12 Slot [140] | NOT FINANCIAL TRANSACTION +17:21:13 +Slot[109] 0420 010000 6213545000868525 ------------- 00 893355 000100000000 507702336306032170026213545000868525 507702336306 -------- 668899 S +17:21:14 +Slot[50] 0200 010000 6688990040045740 ------------- 91 433571 000005000000 507703907246010106006688990040045740 507703907246 777980 621354 S +17:21:20 +Slot[155] 0420 010000 1808931600005639 ------------- 00 893356 000030000000 507702415190030010111808931600005639 507702415190 -------- 668899 S +17:21:21 +Slot[131] 0420 010000 1808931600005639 ------------- 00 893356 000030000000 507702415190030010111808931600005639 507702415190 -------- 668899 S +17:21:22 Slot [151] | NOT FINANCIAL TRANSACTION +17:21:22 +Slot[70] 0200 011000 6688990100969102 ------------- 91 433612 000050000000 507704718988180010006688990100969102 507704718988 133526 621354 S +17:21:23 Slot [139] | NOT FINANCIAL TRANSACTION +17:21:33 +Slot[150] 0420 011000 6688990060006887 ------------- 00 434186 000100000000 507705238809010132006688990060006887 507705238809 -------- 621354 S +17:21:35 Slot [123] | NOT FINANCIAL TRANSACTION +17:21:36 +Slot[154] 0420 011000 6688990107703900 0000000000000 00 433836 000010000000 507703073790010087006688990107703900 507703073790 -------- 621354 S +17:21:37 +Slot[146] 0420 011000 6688990107147405 ------------- 00 261623 000052000000 5077102616230367BL206688990107147405 507710261623 -------- 180893 S +17:21:51 +Slot[157] 0420 011000 6688990107393900 0000000000000 00 261616 000040000000 5077102616160368KMMX6688990107393900 507710261616 -------- 180893 S +17:21:52 +Slot[118] 0420 011000 6688990107393900 ------------- 00 261625 000030000000 5077102616250368KMMX6688990107393900 507710261625 -------- 180893 S +17:22:07 Slot [135] | NOT FINANCIAL TRANSACTION +17:22:09 +Slot[132] 0200 010000 1808931600005639 ------------- 51 893448 000020000000 507702415192030010111808931600005639 507702415192 423195 668899 S +17:22:10 +Slot[152] 0200 010000 6213545000261853 ------------- 00 261628 000050000000 5077102616280118UDBR6213545000261853 507710261628 514837 180893 S +17:22:14 +Slot[96] 0200 011000 6688990107703900 ------------- 91 433836 000010000000 507703073790010087006688990107703900 507703073790 664219 621354 S +17:22:21 Slot [171] | NOT FINANCIAL TRANSACTION +17:22:24 +Slot[167] 0420 012000 6688990050000007 ------------- 00 434361 000010000000 507702902858010083006688990050000007 507702902858 -------- 621354 S +17:22:24 +Slot[116] 0420 010000 6213545000868525 0000000000000 00 893355 000100000000 507702336306032170026213545000868525 507702336306 822380 668899 S +17:22:27 +Slot[136] 0200 011000 6688990107393900 ------------- 91 261616 000040000000 5077102616160368KMMX6688990107393900 507710261616 483954 180893 S +17:22:28 Slot [120] | NOT FINANCIAL TRANSACTION +17:22:34 Slot [141] | NOT FINANCIAL TRANSACTION +17:22:34 +Slot[130] 0420 010000 1808931600005639 0000000000000 00 893356 000030000000 507702415190030010111808931600005639 507702415190 -------- 668899 S +17:22:37 +Slot[156] 0200 301000 6213548000060689 ------------- 00 893463 000000000000 507700493631030010066213548000060689 507700493631 434979 668899 S +17:22:42 +Slot[168] 0200 301000 6688990107393900 ------------- 00 261631 031810213526 5077102616310368KMMX6688990107393900 507710261631 819400 180893 S +17:22:51 +Slot[174] 0420 010000 1808931600005639 ------------- 00 893448 000020000000 507702415192030010111808931600005639 507702415192 -------- 668899 S +17:22:55 +Slot[129] 0200 012000 6688990107149203 ------------- 55 434587 000040000000 507705396680150013006688990107149203 507705396680 416191 621354 S +17:22:56 +Slot[160] 0200 010000 1808931600005639 ------------- 00 893517 000010000000 507702415194030010111808931600005639 507702415194 469055 668899 S +17:23:00 +Slot[166] 0420 011000 6688990060006887 0000000000000 00 434186 000100000000 507705238809010132006688990060006887 507705238809 -------- 621354 S +17:23:04 Slot [164] | NOT FINANCIAL TRANSACTION +17:23:07 +Slot[169] 0420 012000 6688990107149203 ------------- 00 434587 000040000000 507705396680150013006688990107149203 507705396680 -------- 621354 S +17:23:07 +Slot[175] 0420 011000 6688990107147405 0000000000000 00 261623 000052000000 5077102616230367BL206688990107147405 507710261623 -------- 180893 S +17:23:09 Slot [178] | NOT FINANCIAL TRANSACTION +17:23:18 +Slot[147] 0420 011000 6688990107393900 0000000000000 00 261625 000030000000 5077102616250368KMMX6688990107393900 507710261625 -------- 180893 S +17:23:18 +Slot[133] 0200 012000 1888880000028654 ------------- 00 434738 000010000000 507703364951130016001888880000028654 507703364951 052976 621354 S +17:23:20 Slot [189] | NOT FINANCIAL TRANSACTION +17:23:21 +Slot[195] 0420 012000 6688990602687400 ------------- 00 434615 000040000000 507704153292200010006688990602687400 507704153292 -------- 621354 S +17:23:23 +Slot[128] 0200 011000 6688990060006887 ------------- 91 434186 000100000000 507705238809010132006688990060006887 507705238809 385006 621354 S +17:23:25 +Slot[142] 0200 011000 6688990107147405 ------------- 91 261623 000052000000 5077102616230367BL206688990107147405 507710261623 854640 180893 S +17:23:30 Slot [183] | NOT FINANCIAL TRANSACTION +17:23:33 Slot [191] | NOT FINANCIAL TRANSACTION +17:23:37 +Slot[125] 0420 012000 6688990050000007 0000000000000 00 434361 000010000000 507702902858010083006688990050000007 507702902858 -------- 621354 S +17:23:40 Slot [181] | NOT FINANCIAL TRANSACTION +17:23:42 +Slot[127] 0200 011000 6688990107393900 ------------- 91 261625 000030000000 5077102616250368KMMX6688990107393900 507710261625 304375 180893 S +17:23:51 Slot [182] | NOT FINANCIAL TRANSACTION +17:23:55 +Slot[158] 0420 011000 6688990602610402 ------------- 00 434803 000100000000 507704523188020015006688990602610402 507704523188 -------- 621354 S +17:24:01 +Slot[138] 0200 012000 6688990050000007 ------------- 91 434361 000010000000 507702902858010083006688990050000007 507702902858 172083 621354 S +17:24:03 Slot [213] | NOT FINANCIAL TRANSACTION +17:24:11 Slot [198] | NOT FINANCIAL TRANSACTION +17:24:14 +Slot[200] 0420 011000 6688990107640201 ------------- 00 434890 000045000000 507704488842150010006688990107640201 507704488842 -------- 621354 S +17:24:19 +Slot[177] 0200 010000 6213542000058504 ------------- 00 261639 000050000000 5077102616390366SKTT6213542000058504 507710261639 001636 180893 S +17:24:20 +Slot[165] 0420 011000 6688990050000007 ------------- 00 434886 000010000000 507702902860010083006688990050000007 507702902860 -------- 621354 S +17:24:23 +Slot[153] 0420 011000 6688990107393900 ------------- 00 261636 000200000000 5077102616360368KMMX6688990107393900 507710261636 -------- 180893 S +17:24:32 +Slot[210] 0420 010000 6688990602687400 ------------- 00 434932 000040000000 507704153294200010006688990602687400 507704153294 -------- 621354 S +17:24:35 +Slot[211] 0420 011000 6688990105247207 ------------- 00 434935 000100000000 507704718991180010006688990105247207 507704718991 -------- 621354 S +17:24:35 +Slot[187] 0420 012000 6688990602687400 0000000000000 00 434615 000040000000 507704153292200010006688990602687400 507704153292 -------- 621354 S +17:24:38 Slot [162] | NOT FINANCIAL TRANSACTION +17:24:39 +Slot[106] 0200 012000 6213545000681647 ------------- 00 254571 000100000000 507700094248010009006213545000681647 507700094248 448105 220699 S +17:24:52 +Slot[163] 0200 301000 1808930600022149 ------------- 00 435141 000000000000 507704313988030030001808930600022149 507704313988 967363 621354 S +17:24:54 Slot [217] | NOT FINANCIAL TRANSACTION +17:24:57 +Slot[206] 0420 012000 6688990104630304 ------------- 00 261641 000010000000 5077102616410466PSLB6688990104630304 507710261641 -------- 180893 S +17:25:03 +Slot[172] 0200 012000 6688990602687400 ------------- 91 434615 000040000000 507704153292200010006688990602687400 507704153292 414184 621354 S +17:25:05 +Slot[145] 0200 010000 6213548000060689 ------------- 00 893566 000050000000 507700493633030010066213548000060689 507700493633 828137 668899 S +17:25:08 +Slot[180] 0420 011000 6688990602610402 0000000000000 00 434803 000100000000 507704523188020015006688990602610402 507704523188 -------- 621354 S +17:25:13 Slot [196] | NOT FINANCIAL TRANSACTION +17:25:18 Slot [194] | NOT FINANCIAL TRANSACTION +17:25:22 +Slot[190] 0420 010000 6213548000060689 ------------- 00 893566 000050000000 507700493633030010066213548000060689 507700493633 -------- 668899 S +17:25:29 +Slot[222] 0420 011000 6688990107640201 0000000000000 00 434890 000045000000 507704488842150010006688990107640201 507704488842 -------- 621354 S +17:25:34 +Slot[184] 0420 011000 6688990050000007 0000000000000 00 434886 000010000000 507702902860010083006688990050000007 507702902860 -------- 621354 S +17:25:36 Slot [225] | NOT FINANCIAL TRANSACTION +17:25:37 +Slot[226] 0420 011000 6688990107393900 0000000000000 00 261636 000200000000 5077102616360368KMMX6688990107393900 507710261636 -------- 180893 S +17:25:41 +Slot[214] 0200 010000 6213545000868723 ------------- 61 261646 000200000000 5077102616460366SKTT6213545000868723 507710261646 362897 180893 S +17:25:44 Slot [218] | NOT FINANCIAL TRANSACTION +17:25:45 +Slot[170] 0200 011000 6688990602610402 ------------- 91 434803 000100000000 507704523188020015006688990602610402 507704523188 793055 621354 S +17:25:46 +Slot[173] 0420 010000 6688990602687400 0000000000000 00 434932 000040000000 507704153294200010006688990602687400 507704153294 -------- 621354 S +17:25:47 Slot [207] | NOT FINANCIAL TRANSACTION +17:25:52 +Slot[231] 0420 011000 6688990107147405 ------------- 00 261645 000037000000 5077102616450367BL206688990107147405 507710261645 -------- 180893 S +17:25:53 +Slot[176] 0200 011000 1808931700031089 ------------- 51 169123 000010000000 507717169123015290181808931700031089 507717169123 368173 198901 S +17:25:54 +Slot[223] 0420 011000 6688990105247207 0000000000000 00 434935 000100000000 507704718991180010006688990105247207 507704718991 -------- 621354 S +17:25:54 +Slot[224] 0200 011000 6213541000074222 ------------- 00 169132 000050000000 507717169132015290316213541000074222 507717169132 050093 198901 S +17:25:55 +Slot[221] 0200 302000 6688990602687400 ------------- 55 435308 000000000000 507704153295200010006688990602687400 507704153295 675773 621354 S +17:25:56 +Slot[208] 0200 303000 2206990000119784 ------------- 00 435477 000000000000 507704538671020016002206990000119784 507704538671 602328 621354 S +17:26:04 +Slot[143] 0200 011000 6688990107640201 ------------- 91 434890 000045000000 507704488842150010006688990107640201 507704488842 245056 621354 S +17:26:04 +Slot[161] 0200 011000 6688990050000007 ------------- 91 434886 000010000000 507702902860010083006688990050000007 507702902860 662237 621354 S +17:26:07 +Slot[192] 0200 010000 6213545000868723 ------------- 00 261650 000100000000 5077102616500366SKTT6213545000868723 507710261650 345925 180893 S +17:26:09 +Slot[188] 0420 012000 6688990104630304 0000000000000 00 261641 000010000000 5077102616410466PSLB6688990104630304 507710261641 -------- 180893 S +17:26:10 +Slot[202] 0200 011000 6688990107393900 ------------- 91 261636 000200000000 5077102616360368KMMX6688990107393900 507710261636 240873 180893 S +17:26:12 +Slot[197] 0200 010000 6688990602687400 ------------- 91 434932 000040000000 507704153294200010006688990602687400 507704153294 146351 621354 S +17:26:13 +Slot[204] 0200 011000 6688990105247207 ------------- 91 434935 000100000000 507704718991180010006688990105247207 507704718991 481839 621354 S +17:26:15 Slot [185] | NOT FINANCIAL TRANSACTION +17:26:17 Slot [230] | NOT FINANCIAL TRANSACTION +17:26:31 +Slot[199] 0200 301000 6213544000969219 ------------- 00 169141 000000000000 507717169141000022226213544000969219 507717169141 778049 198901 S +17:26:31 +Slot[220] 0200 010000 6213548000346419 ------------- 00 261653 000010000000 5077102616530102SAPA6213548000346419 507710261653 098206 180893 S +17:26:32 +Slot[179] 0200 010000 6213544001290490 ------------- 00 261656 000050000000 5077102616560344SVKV6213544001290490 507710261656 968307 180893 S +17:26:33 +Slot[212] 0200 010000 6213544001269403 ------------- 00 893654 000070000000 507701161587032170016213544001269403 507701161587 895164 668899 S +17:26:36 +Slot[186] 0420 010000 6213548000060689 0000000000000 00 893566 000050000000 507700493633030010066213548000060689 507700493633 177801 668899 S +17:26:38 Slot [232] | NOT FINANCIAL TRANSACTION +17:26:46 +Slot[193] 0200 012000 6688990104630304 ------------- 91 261641 000010000000 5077102616410466PSLB6688990104630304 507710261641 911640 180893 S +17:26:48 +Slot[216] 0200 010000 6213545000868723 ------------- 00 261661 000100000000 5077102616610366SKTT6213545000868723 507710261661 463652 180893 S +17:26:49 Slot [227] | NOT FINANCIAL TRANSACTION +17:26:53 +Slot[219] 0200 010000 6213548000060689 ------------- 00 893665 000050000000 507700493635030010066213548000060689 507700493635 903744 668899 S +17:26:57 +Slot[234] 0200 301000 6213544000969219 ------------- 00 169147 000000000000 507717169147000022226213544000969219 507717169147 309049 198901 S +17:26:59 Slot [239] | NOT FINANCIAL TRANSACTION +17:27:03 +Slot[235] 0420 011000 6688990107147405 0000000000000 00 261645 000037000000 5077102616450367BL206688990107147405 507710261645 -------- 180893 S +17:27:10 +Slot[242] 0420 012000 6688990040104307 ------------- 00 435704 000100000000 507704134940200008006688990040104307 507704134940 -------- 621354 S +17:27:14 +Slot[250] 0200 010000 6213545001028962 ------------- 00 893679 000010000000 507702678263030200356213545001028962 507702678263 912870 668899 S +17:27:14 Slot [201] | NOT FINANCIAL TRANSACTION +17:27:17 Slot [228] | NOT FINANCIAL TRANSACTION +17:27:34 Slot [245] | NOT FINANCIAL TRANSACTION +17:27:36 +Slot[238] 0200 010000 6213545000868723 ------------- 00 261667 000100000000 5077102616670366SKTT6213545000868723 507710261667 669865 180893 S +17:27:41 Slot [203] | NOT FINANCIAL TRANSACTION +17:27:41 +Slot[205] 0200 011000 6688990107147405 ------------- 91 261645 000037000000 5077102616450367BL206688990107147405 507710261645 989606 180893 S +17:27:42 +Slot[248] 0200 011000 6213544000969219 ------------- 00 169158 000010000000 507717169158000022226213544000969219 507717169158 373601 198901 S +17:27:43 +Slot[258] 0420 010000 6213544001269403 ------------- 00 893654 000070000000 507701161587032170016213544001269403 507701161587 -------- 668899 S +17:27:44 +Slot[244] 0420 010000 6213544001269403 ------------- 00 893654 000070000000 507701161587032170016213544001269403 507701161587 -------- 668899 S +17:27:49 +Slot[247] 0420 010000 6213548000060689 ------------- 00 893665 000050000000 507700493635030010066213548000060689 507700493635 -------- 668899 S +17:27:52 Slot [253] | NOT FINANCIAL TRANSACTION +17:27:54 Slot [243] | NOT FINANCIAL TRANSACTION +17:28:04 Slot [273] | NOT FINANCIAL TRANSACTION +17:28:05 +Slot[137] 0200 301000 6688990602610402 ------------- 91 435459 000000000000 507704523189020015006688990602610402 507704523189 633738 621354 S +17:28:10 +Slot[260] 0420 011000 6688990108473701 ------------- 00 435945 000030000000 507703835599010099006688990108473701 507703835599 -------- 621354 S +17:28:11 +Slot[215] 0200 011000 1808931700031089 ------------- 00 169135 000005000000 507717169135015290181808931700031089 507717169135 820197 198901 S +17:28:19 Slot [251] | NOT FINANCIAL TRANSACTION +17:28:20 Slot [265] | NOT FINANCIAL TRANSACTION +17:28:23 +Slot[264] 0420 012000 6688990040104307 0000000000000 00 435704 000100000000 507704134940200008006688990040104307 507704134940 -------- 621354 S +17:28:30 +Slot[249] 0420 012000 6688990102882808 ------------- 00 435986 000008000000 507702659289140004006688990102882808 507702659289 -------- 621354 S +17:28:35 Slot [233] | NOT FINANCIAL TRANSACTION +17:28:36 +Slot[279] 0420 010000 6688990040157081 ------------- 00 261671 000010000000 5077102616710361BLTB6688990040157081 507710261671 -------- 180893 S +17:28:40 +Slot[209] 0420 011000 6688990107149203 ------------- 00 436041 000020000000 507705396685150013006688990107149203 507705396685 -------- 621354 S +17:28:41 +Slot[229] 0200 302000 6688990105247207 ------------- 91 435619 000000000000 507704718995180010006688990105247207 507704718995 688076 621354 S +17:28:56 +Slot[262] 0420 010000 6213544001269403 0000000000000 00 893654 000070000000 507701161587032170016213544001269403 507701161587 247903 668899 S +17:28:59 Slot [270] | NOT FINANCIAL TRANSACTION +17:29:00 Slot [280] | NOT FINANCIAL TRANSACTION +17:29:01 +Slot[236] 0200 012000 6688990040104307 ------------- 91 435704 000100000000 507704134940200008006688990040104307 507704134940 171125 621354 S +17:29:03 +Slot[267] 0420 010000 6213548000060689 0000000000000 00 893665 000050000000 507700493635030010066213548000060689 507700493635 230772 668899 S +17:29:05 +Slot[263] 0420 011000 6688990040004416 ------------- 00 436218 000030000000 507703835601010099006688990040004416 507703835601 -------- 621354 S +17:29:07 Slot [278] | NOT FINANCIAL TRANSACTION +17:29:09 +Slot[257] 0200 302000 6213545000868723 ------------- 00 261674 031810275626 5077102616740366SKTT6213545000868723 507710261674 534135 180893 S +17:29:09 +Slot[266] 0200 012000 2206990000119784 ------------- 00 436336 000010000000 507704538677020016002206990000119784 507704538677 237755 621354 S +17:29:17 Slot [277] | NOT FINANCIAL TRANSACTION +17:29:21 Slot [293] | NOT FINANCIAL TRANSACTION +17:29:23 +Slot[254] 0420 011000 6688990108473701 0000000000000 00 435945 000030000000 507703835599010099006688990108473701 507703835599 -------- 621354 S +17:29:25 +Slot[289] 0420 011000 6688990105247207 ------------- 00 436284 000100000000 507704719000180010006688990105247207 507704719000 -------- 621354 S +17:29:27 Slot [275] | NOT FINANCIAL TRANSACTION +17:29:29 +Slot[287] 0200 010000 6213544001658514 ------------- 00 305654 000050000000 507700079244010007006213544001658514 507700079244 496087 220699 S +17:29:29 +Slot[304] 0200 010000 6213545000068050 ------------- 00 261680 000050000000 5077102616800301LPBX6213545000068050 507710261680 953414 180893 S +17:29:42 +Slot[281] 0420 012000 6688990106646803 ------------- 00 436333 000050000000 507703926149010108006688990106646803 507703926149 -------- 621354 S +17:29:42 Slot [296] | NOT FINANCIAL TRANSACTION +17:29:44 +Slot[259] 0420 012000 6688990102882808 0000000000000 00 435986 000008000000 507702659289140004006688990102882808 507702659289 -------- 621354 S +17:29:45 Slot [294] | NOT FINANCIAL TRANSACTION +17:29:45 +Slot[252] 0200 301000 6688990106646803 ------------- 91 435884 000000000000 507703926147010108006688990106646803 507703926147 025073 621354 S +17:29:48 +Slot[286] 0420 011000 6688990107393900 ------------- 00 436349 000030000000 507704608480020023006688990107393900 507704608480 -------- 621354 S +17:29:51 +Slot[298] 0420 010000 6688990040157081 0000000000000 00 261671 000010000000 5077102616710361BLTB6688990040157081 507710261671 -------- 180893 S +17:29:54 +Slot[303] 0420 011000 6688990107149203 0000000000000 00 436041 000020000000 507705396685150013006688990107149203 507705396685 -------- 621354 S +17:29:59 +Slot[240] 0200 011000 6688990108473701 ------------- 91 435945 000030000000 507703835599010099006688990108473701 507703835599 249747 621354 S +17:30:00 +Slot[317] 0420 011000 6688990030006348 ------------- 00 436474 000100000000 507704671484180006006688990030006348 507704671484 -------- 621354 S +17:30:00 Slot [282] | NOT FINANCIAL TRANSACTION +17:30:04 Slot [271] | NOT FINANCIAL TRANSACTION +17:30:10 +Slot[307] 0420 010000 6688990040157081 ------------- 00 261684 000050000000 5077102616840361BLTB6688990040157081 507710261684 -------- 180893 S +17:30:11 +Slot[256] 0200 012000 6688990102882808 ------------- 91 435986 000008000000 507702659289140004006688990102882808 507702659289 997905 621354 S +17:30:15 +Slot[237] 0420 012000 6688990102882808 ------------- 00 436525 000008000000 507702659291140004006688990102882808 507702659291 -------- 621354 S +17:30:17 Slot [313] | NOT FINANCIAL TRANSACTION +17:30:18 +Slot[315] 0420 011000 6688990040004416 0000000000000 00 436218 000030000000 507703835601010099006688990040004416 507703835601 -------- 621354 S +17:30:21 +Slot[314] 0420 010000 6688990107838102 ------------- 00 436529 000030000000 507703835603010099006688990107838102 507703835603 -------- 621354 S +17:30:22 Slot [324] | NOT FINANCIAL TRANSACTION +17:30:22 +Slot[246] 0200 011000 6688990107149203 ------------- 91 436041 000020000000 507705396685150013006688990107149203 507705396685 579311 621354 S +17:30:23 Slot [323] | NOT FINANCIAL TRANSACTION +17:30:24 +Slot[241] 0200 010000 6688990040157081 ------------- 91 261671 000010000000 5077102616710361BLTB6688990040157081 507710261671 508489 180893 S +17:30:39 +Slot[272] 0420 011000 6688990105247207 0000000000000 00 436284 000100000000 507704719000180010006688990105247207 507704719000 -------- 621354 S +17:30:40 +Slot[283] 0420 011000 6688990102806906 ------------- 00 436700 000020000000 507705003357010124006688990102806906 507705003357 -------- 621354 S +17:30:43 Slot [340] | NOT FINANCIAL TRANSACTION +17:30:54 +Slot[269] 0200 011000 6688990040004416 ------------- 91 436218 000030000000 507703835601010099006688990040004416 507703835601 848424 621354 S +17:30:54 +Slot[336] 0420 012000 6688990106646803 0 00 436333 000050000000 507703926149010108006688990106646803 507703926149 000000 621354 S +17:30:55 Slot [306] | NOT FINANCIAL TRANSACTION +17:30:59 +Slot[325] 0420 011000 6688990050008331 0 00 223481 000090000000 507700118594010011006688990050008331 507700118594 000000 220699 S +17:31:00 +Slot[312] 0420 010000 6688990106050501 ------------- 00 436765 000030000000 507703499156060022006688990106050501 507703499156 -------- 621354 S +17:31:03 +Slot[311] 0420 011000 6688990107393900 0 00 436349 000030000000 507704608480020023006688990107393900 507704608480 000000 621354 S +17:31:05 +Slot[261] 0200 011000 6688990105247207 ------------- 91 436284 000100000000 507704719000180010006688990105247207 507704719000 729239 621354 S +17:31:06 Slot [339] | NOT FINANCIAL TRANSACTION +17:31:09 Slot [308] | NOT FINANCIAL TRANSACTION +17:31:13 +Slot[310] 0420 011000 6688990030006348 0000000000000 00 436474 000100000000 507704671484180006006688990030006348 507704671484 -------- 621354 S +17:31:16 +Slot[321] 0200 010000 1808930200003515 ------------- 00 305657 000100000000 507700079246010007001808930200003515 507700079246 077830 220699 S +17:31:17 +Slot[255] 0200 011000 2206990000077958 ------------- 00 436838 000100000000 507702804745010074002206990000077958 507702804745 504782 621354 S +17:31:17 Slot [341] | NOT FINANCIAL TRANSACTION +17:31:18 +Slot[297] 0420 010000 6213544000335973 ------------- 00 893782 000010000000 507702088168030060086213544000335973 507702088168 -------- 668899 S +17:31:18 +Slot[268] 0200 012000 6688990106646803 ------------- 91 436333 000050000000 507703926149010108006688990106646803 507703926149 046563 621354 S +17:31:21 +Slot[349] 0420 011000 6688990600024101 ------------- 00 436848 000030000000 507703047625010084006688990600024101 507703047625 -------- 621354 S +17:31:21 +Slot[274] 0200 011000 6688990050008331 ------------- 91 223481 000090000000 507700118594010011006688990050008331 507700118594 553380 220699 S +17:31:23 +Slot[284] 0200 011000 6688990107393900 ------------- 91 436349 000030000000 507704608480020023006688990107393900 507704608480 063129 621354 S +17:31:25 +Slot[332] 0420 010000 6688990040157081 0000000000000 00 261684 000050000000 5077102616840361BLTB6688990040157081 507710261684 -------- 180893 S +17:31:25 Slot [329] | NOT FINANCIAL TRANSACTION +17:31:27 +Slot[350] 0420 010000 6688990030006348 ------------- 00 436856 000100000000 507704671486180006006688990030006348 507704671486 -------- 621354 S +17:31:29 +Slot[364] 0420 012000 6688990102882808 0000000000000 00 436525 000008000000 507702659291140004006688990102882808 507702659291 -------- 621354 S +17:31:30 +Slot[328] 0420 011000 6688990040161182 ------------- 00 436873 000050000000 507702947804120017006688990040161182 507702947804 -------- 621354 S +17:31:35 +Slot[354] 0420 010000 6688990107838102 0000000000000 00 436529 000030000000 507703835603010099006688990107838102 507703835603 -------- 621354 S +17:31:35 +Slot[343] 0420 010000 6688990040139816 ------------- 00 261690 000100000000 5077102616900321LNTV6688990040139816 507710261690 -------- 180893 S +17:31:42 +Slot[302] 0420 011000 6688990104796006 ------------- 00 436946 000050000000 507704012207010117006688990104796006 507704012207 -------- 621354 S +17:31:42 +Slot[299] 0200 301000 6688990040139816 ------------- 91 261677 031810282426 5077102616770321LNTV6688990040139816 507710261677 633335 180893 S +17:31:44 +Slot[285] 0200 011000 6688990030006348 ------------- 91 436474 000100000000 507704671484180006006688990030006348 507704671484 496992 621354 S +17:31:53 +Slot[338] 0200 011000 6213544002283130 ------------- 55 169217 000100000000 507717169217015290046213544002283130 507717169217 561505 198901 S +17:31:56 +Slot[276] 0200 012000 6688990102882808 ------------- 91 436525 000008000000 507702659291140004006688990102882808 507702659291 747322 621354 S +17:31:57 +Slot[291] 0200 010000 6688990107838102 ------------- 91 436529 000030000000 507703835603010099006688990107838102 507703835603 476418 621354 S +17:31:58 Slot [316] | NOT FINANCIAL TRANSACTION +17:32:01 +Slot[309] 0200 010000 6688990040157081 ------------- 91 261684 000050000000 5077102616840361BLTB6688990040157081 507710261684 449705 180893 S +17:32:08 +Slot[290] 0420 011000 6688990107393900 ------------- 00 261696 000020000000 5077102616960368KMMX6688990107393900 507710261696 -------- 180893 S +17:32:09 +Slot[366] 0420 011000 6688990102806906 0 00 436700 000020000000 507705003357010124006688990102806906 507705003357 000000 621354 S +17:32:14 +Slot[301] 0420 011000 6688990040022483 ------------- 00 437143 000005000000 507703907271010106006688990040022483 507703907271 -------- 621354 S +17:32:14 Slot [384] | NOT FINANCIAL TRANSACTION +17:32:14 +Slot[333] 0420 010000 6688990106050501 0000000000000 00 436765 000030000000 507703499156060022006688990106050501 507703499156 -------- 621354 S +17:32:18 +Slot[345] 0200 010000 6213541000553092 ------------- 00 261694 000010000000 5077102616940441VT526213541000553092 507710261694 531279 180893 S +17:32:19 +Slot[365] 0420 011000 6688990020003040 ------------- 00 437147 000030000000 507705238832010132006688990020003040 507705238832 -------- 621354 S +17:32:19 Slot [360] | NOT FINANCIAL TRANSACTION +17:32:27 Slot [358] | NOT FINANCIAL TRANSACTION +17:32:31 +Slot[288] 0200 011000 6688990102806906 ------------- 91 436700 000020000000 507705003357010124006688990102806906 507705003357 350941 621354 S +17:32:34 +Slot[372] 0420 011000 6688990602546705 ------------- 00 437279 000010000000 507702428738050026006688990602546705 507702428738 -------- 621354 S +17:32:34 Slot [373] | NOT FINANCIAL TRANSACTION +17:32:35 Slot [380] | NOT FINANCIAL TRANSACTION +17:32:36 +Slot[353] 0420 011000 6688990600024101 0000000000000 00 436848 000030000000 507703047625010084006688990600024101 507703047625 -------- 621354 S +17:32:41 +Slot[362] 0420 010000 6688990030006348 0 00 436856 000100000000 507704671486180006006688990030006348 507704671486 000000 621354 S +17:32:42 +Slot[337] 0200 011000 6213544002283130 ------------- 55 169220 000100000000 507717169220015290046213544002283130 507717169220 883077 198901 S +17:32:43 +Slot[320] 0200 011000 6688990107393900 ------------- 91 261696 000020000000 5077102616960368KMMX6688990107393900 507710261696 408862 180893 S +17:32:43 +Slot[335] 0200 011000 6688990040022483 ------------- 91 437143 000005000000 507703907271010106006688990040022483 507703907271 644041 621354 S +17:32:44 +Slot[347] 0200 011000 6688990020003040 ------------- 91 437147 000030000000 507705238832010132006688990020003040 507705238832 865581 621354 S +17:32:44 +Slot[342] 0200 300000 6688990040161182 ------------- 55 437164 000000000000 507702947805120017006688990040161182 507702947805 810989 621354 S +17:32:45 +Slot[331] 0200 010000 6688990106050501 ------------- 91 436765 000030000000 507703499156060022006688990106050501 507703499156 426776 621354 S +17:32:45 +Slot[361] 0420 011000 6688990040161182 0 00 436873 000050000000 507702947804120017006688990040161182 507702947804 000000 621354 S +17:32:48 +Slot[377] 0420 010000 6688990040139816 0000000000000 00 261690 000100000000 5077102616900321LNTV6688990040139816 507710261690 -------- 180893 S +17:32:56 +Slot[378] 0420 011000 6688990104796006 0000000000000 00 436946 000050000000 507704012207010117006688990104796006 507704012207 -------- 621354 S +17:32:56 Slot [363] | NOT FINANCIAL TRANSACTION +17:33:02 +Slot[318] 0200 011000 6688990600024101 ------------- 91 436848 000030000000 507703047625010084006688990600024101 507703047625 158777 621354 S +17:33:03 +Slot[326] 0200 010000 6688990030006348 ------------- 91 436856 000100000000 507704671486180006006688990030006348 507704671486 415175 621354 S +17:33:05 +Slot[295] 0200 301000 6688990040157081 ------------- 91 261687 031810294726 5077102616870361BLTB6688990040157081 507710261687 425416 180893 S +17:33:07 Slot [346] | NOT FINANCIAL TRANSACTION +17:33:07 +Slot[319] 0200 011000 6688990040161182 ------------- 91 436873 000050000000 507702947804120017006688990040161182 507702947804 151515 621354 S +17:33:09 +Slot[370] 0420 011000 6688990060009147 ------------- 00 261705 000020000000 5077102617050545SSVS6688990060009147 507710261705 -------- 180893 S +17:33:09 +Slot[369] 0200 011000 6213544002283130 ------------- 75 169221 000100000000 507717169221015290046213544002283130 507717169221 502131 198901 S +17:33:09 +Slot[330] 0200 011000 6688990602546705 ------------- 91 437279 000010000000 507702428738050026006688990602546705 507702428738 258275 621354 S +17:33:10 +Slot[292] 0200 300000 6688990040161182 ------------- 91 437335 000000000000 507702947806120017006688990040161182 507702947806 651490 621354 S +17:33:10 +Slot[379] 0200 010000 6213541000553092 ------------- 00 261708 000010000000 5077102617080441VT526213541000553092 507710261708 891012 180893 S +17:33:11 +Slot[322] 0200 011000 6213544002283130 ------------- 75 169233 000100000000 507717169233000034026213544002283130 507717169233 154888 198901 S +17:33:11 +Slot[348] 0200 010000 6213541000376130 ------------- 00 250784 000050000000 507700335926010019006213541000376130 507700335926 554547 220699 S +17:33:13 +Slot[300] 0200 301000 6688990020003040 ------------- 91 436898 000000000000 507705238830010132006688990020003040 507705238830 743033 621354 S +17:33:20 Slot [351] | NOT FINANCIAL TRANSACTION +17:33:22 +Slot[371] 0420 010000 6688990102806906 ------------- 00 437509 000010000000 507705003359010124006688990102806906 507705003359 -------- 621354 S +17:33:24 +Slot[334] 0200 010000 6688990040139816 ------------- 91 261690 000100000000 5077102616900321LNTV6688990040139816 507710261690 164529 180893 S +17:33:24 +Slot[355] 0200 011000 6688990104796006 ------------- 91 436946 000050000000 507704012207010117006688990104796006 507704012207 702103 621354 S +17:33:28 +Slot[385] 0200 010000 6213541000553092 ------------- 00 261715 000010000000 5077102617150441VT526213541000553092 507710261715 200042 180893 S +17:33:29 Slot [344] | NOT FINANCIAL TRANSACTION +17:33:39 +Slot[386] 0420 011000 6688990107393900 0 00 261696 000020000000 5077102616960368KMMX6688990107393900 507710261696 000000 180893 S +17:33:40 +Slot[367] 0200 010000 1808931300016480 ------------- 00 893912 000100000000 507700788896030050021808931300016480 507700788896 093116 668899 S +17:33:41 +Slot[388] 0420 011000 6688990040022483 0 00 437143 000005000000 507703907271010106006688990040022483 507703907271 000000 621354 S +17:33:43 Slot [410] | NOT FINANCIAL TRANSACTION +17:33:44 +Slot[357] 0420 011000 6688990020003040 0 00 437147 000030000000 507705238832010132006688990020003040 507705238832 000000 621354 S +17:33:54 Slot [401] | NOT FINANCIAL TRANSACTION +17:34:05 Slot [398] | NOT FINANCIAL TRANSACTION +17:34:05 +Slot[413] 0420 011000 6688990602546705 0 00 437279 000010000000 507702428738050026006688990602546705 507702428738 000000 621354 S +17:34:12 +Slot[414] 0420 010000 6688990107062406 ------------- 00 437744 000005000000 507702720947010066006688990107062406 507702720947 -------- 621354 S +17:34:20 Slot [392] | NOT FINANCIAL TRANSACTION +17:34:22 +Slot[393] 0420 011000 6688990104796006 ------------- 00 437756 000050000000 507704012212010117006688990104796006 507704012212 -------- 621354 S +17:34:26 Slot [420] | NOT FINANCIAL TRANSACTION +17:34:31 Slot [418] | NOT FINANCIAL TRANSACTION +17:34:34 +Slot[425] 0420 010000 6688990102806906 0000000000000 00 437509 000010000000 507705003359010124006688990102806906 507705003359 -------- 621354 S +17:34:35 Slot [387] | NOT FINANCIAL TRANSACTION +17:34:39 +Slot[415] 0420 011000 6688990060009147 0 00 261705 000020000000 5077102617050545SSVS6688990060009147 507710261705 000000 180893 S +17:34:48 +Slot[391] 0200 011000 6213544002283130 ------------- 75 169263 000100000000 507717169263000034026213544002283130 507717169263 129479 198901 S +17:34:54 +Slot[352] 0200 301000 6688990040065953 ------------- 91 261703 031810313726 5077102617030367BL206688990040065953 507710261703 440715 180893 S +17:34:55 Slot [423] | NOT FINANCIAL TRANSACTION +17:35:01 +Slot[431] 0200 010000 6213544002166871 ------------- 00 893950 000010000000 507702092836030200216213544002166871 507702092836 991820 668899 S +17:35:02 +Slot[382] 0200 011000 6688990060009147 ------------- 91 261705 000020000000 5077102617050545SSVS6688990060009147 507710261705 608590 180893 S +17:35:05 Slot [399] | NOT FINANCIAL TRANSACTION +17:35:11 +Slot[305] 0200 010000 6688990102806906 ------------- 91 437509 000010000000 507705003359010124006688990102806906 507705003359 729095 621354 S +17:35:12 +Slot[381] 0420 010000 6688990107838102 ------------- 00 438026 000010000000 507705003361010124006688990107838102 507705003361 -------- 621354 S +17:35:14 +Slot[417] 0200 010000 6213541000001985 ------------- 00 893991 000060000000 507702150744030200256213541000001985 507702150744 379631 668899 S +17:35:15 +Slot[359] 0200 301000 6213544001834743 ------------- 00 893993 000000000000 507702113999030010096213544001834743 507702113999 643169 668899 S +17:35:17 Slot [375] | NOT FINANCIAL TRANSACTION +17:35:20 Slot [445] | NOT FINANCIAL TRANSACTION +17:35:25 +Slot[437] 0420 010000 6688990107062406 0000000000000 00 437744 000005000000 507702720947010066006688990107062406 507702720947 -------- 621354 S +17:35:27 +Slot[406] 0420 010000 6688990040092478 ------------- 00 438105 000030000000 507703937137010109006688990040092478 507703937137 -------- 621354 S +17:35:31 Slot [422] | NOT FINANCIAL TRANSACTION +17:35:32 Slot [394] | NOT FINANCIAL TRANSACTION +17:35:33 Slot [404] | NOT FINANCIAL TRANSACTION +17:35:36 +Slot[452] 0420 011000 6688990107167007 ------------- 00 438150 000050000000 507703955270010111006688990107167007 507703955270 -------- 621354 S +17:35:36 +Slot[448] 0420 011000 6688990104796006 0000000000000 00 437756 000050000000 507704012212010117006688990104796006 507704012212 -------- 621354 S +17:35:47 Slot [356] | NOT FINANCIAL TRANSACTION +17:35:58 Slot [443] | NOT FINANCIAL TRANSACTION +17:36:02 +Slot[397] 0200 010000 6688990107062406 ------------- 91 437744 000005000000 507702720947010066006688990107062406 507702720947 679655 621354 S +17:36:04 +Slot[374] 0200 011000 6688990104796006 ------------- 91 437756 000050000000 507704012212010117006688990104796006 507704012212 967162 621354 S +17:36:12 +Slot[465] 0420 011000 6688990040015842 ------------- 00 438294 000100000000 507705319082080012006688990040015842 507705319082 -------- 621354 S +17:36:13 Slot [439] | NOT FINANCIAL TRANSACTION +17:36:13 +Slot[327] 0200 301000 6688990602546705 ------------- 91 437802 000000000000 507702428739050026006688990602546705 507702428739 108980 621354 S +17:36:13 +Slot[416] 0200 010000 6213548000553600 ------------- 00 894020 000010000000 507700167991030200076213548000553600 507700167991 628009 668899 S +17:36:17 +Slot[402] 0420 010000 6688990040135939 ------------- 00 438332 000100000000 507704634387170008006688990040135939 507704634387 -------- 621354 S +17:36:24 +Slot[408] 0200 301000 6688990601593708 ------------- 91 261724 031810330426 5077102617240466PSLB6688990601593708 507710261724 705325 180893 S +17:36:24 +Slot[435] 0420 010000 6688990107838102 0000000000000 00 438026 000010000000 507705003361010124006688990107838102 507705003361 -------- 621354 S +17:36:27 +Slot[376] 0420 011000 6688990602597807 ------------- 00 438355 000050000000 507702971805120020006688990602597807 507702971805 -------- 621354 S +17:36:28 Slot [421] | NOT FINANCIAL TRANSACTION +17:36:35 Slot [447] | NOT FINANCIAL TRANSACTION +17:36:36 Slot [441] | NOT FINANCIAL TRANSACTION +17:36:41 +Slot[456] 0420 010000 6688990040092478 0000000000000 00 438105 000030000000 507703937137010109006688990040092478 507703937137 -------- 621354 S +17:36:43 Slot [463] | NOT FINANCIAL TRANSACTION +17:36:45 +Slot[428] 0420 010000 6688990104223605 ------------- 00 438442 000100000000 507703175443040027006688990104223605 507703175443 -------- 621354 S +17:36:50 +Slot[462] 0420 011000 6688990040172874 ------------- 00 438447 000070000000 507704987003010123006688990040172874 507704987003 -------- 621354 S +17:36:51 +Slot[405] 0420 011000 6688990107167007 0000000000000 00 438150 000050000000 507703955270010111006688990107167007 507703955270 -------- 621354 S +17:36:53 Slot [434] | NOT FINANCIAL TRANSACTION +17:36:54 +Slot[430] 0200 311000 6213544000144524 ------------- 00 177047 000000000000 507700010067010001006213544000144524 507700010067 895852 220699 S +17:36:59 +Slot[383] 0200 010000 6688990107838102 ------------- 91 438026 000010000000 507705003361010124006688990107838102 507705003361 660195 621354 S +17:37:06 Slot [412] | NOT FINANCIAL TRANSACTION +17:37:12 +Slot[475] 0420 011000 6688990107167007 ------------- 00 438616 000050000000 507703955272010111006688990107167007 507703955272 -------- 621354 S +17:37:13 +Slot[429] 0200 010000 6688990040092478 ------------- 91 438105 000030000000 507703937137010109006688990040092478 507703937137 475179 621354 S +17:37:19 Slot [479] | NOT FINANCIAL TRANSACTION +17:37:22 +Slot[395] 0200 011000 6688990107167007 ------------- 91 438150 000050000000 507703955270010111006688990107167007 507703955270 809772 621354 S +17:37:26 +Slot[489] 0420 011000 6688990040015842 0000000000000 00 438294 000100000000 507705319082080012006688990040015842 507705319082 -------- 621354 S +17:37:26 +Slot[400] 0200 300000 6688990103264501 ------------- 91 438166 000000000000 507703499157060022006688990103264501 507703499157 910018 621354 S +17:37:29 Slot [424] | NOT FINANCIAL TRANSACTION +17:37:31 +Slot[419] 0200 010000 1888880000079517 ------------- 07 894061 000010000000 507701614279030010071888880000079517 507701614279 327758 668899 S +17:37:31 +Slot[450] 0420 010000 6688990040135939 0000000000000 00 438332 000100000000 507704634387170008006688990040135939 507704634387 -------- 621354 S +17:37:34 Slot [433] | NOT FINANCIAL TRANSACTION +17:37:35 +Slot[478] 0420 010000 6688990103847503 ------------- 00 438702 000010000000 507704634389170008006688990103847503 507704634389 -------- 621354 S +17:37:37 Slot [459] | NOT FINANCIAL TRANSACTION +17:37:40 Slot [467] | NOT FINANCIAL TRANSACTION +17:37:41 Slot [490] | NOT FINANCIAL TRANSACTION +17:37:42 +Slot[483] 0420 011000 6688990602597807 0000000000000 00 438355 000050000000 507702971805120020006688990602597807 507702971805 -------- 621354 S +17:37:43 +Slot[368] 0200 301000 6213545000707277 ------------- 00 894076 000000000000 507702415204030010116213545000707277 507702415204 005658 668899 S +17:37:55 Slot [453] | NOT FINANCIAL TRANSACTION +17:37:55 +Slot[427] 0200 011000 6688990040015842 ------------- 91 438294 000100000000 507705319082080012006688990040015842 507705319082 023015 621354 S +17:37:56 +Slot[482] 0200 301000 6213545000707277 ------------- 00 894085 000000000000 507702415205030010116213545000707277 507702415205 926599 668899 S +17:38:00 +Slot[474] 0420 010000 6688990104223605 0 00 438442 000100000000 507703175443040027006688990104223605 507703175443 000000 621354 S +17:38:00 +Slot[472] 0420 011000 6688990040172874 0 00 438447 000070000000 507704987003010123006688990040172874 507704987003 000000 621354 S +17:38:00 +Slot[403] 0200 010000 6688990040135939 ------------- 91 438332 000100000000 507704634387170008006688990040135939 507704634387 423556 621354 S +17:38:06 Slot [485] | NOT FINANCIAL TRANSACTION +17:38:06 +Slot[442] 0200 011000 6688990602597807 ------------- 91 438355 000050000000 507702971805120020006688990602597807 507702971805 358272 621354 S +17:38:08 +Slot[444] 0200 301000 1808930200040129 ------------- 00 169301 000000000000 507717169301015290211808930200040129 507717169301 987774 198901 S +17:38:10 +Slot[449] 0200 010000 6688990103847503 ------------- 00 438702 000010000000 507704634389170008006688990103847503 507704634389 274085 621354 S +17:38:15 +Slot[426] 0420 011000 6688990102859707 0 00 223490 000030000000 507700118600010011006688990102859707 507700118600 000000 220699 S +17:38:16 Slot [487] | NOT FINANCIAL TRANSACTION +17:38:20 +Slot[440] 0200 010000 6688990104223605 ------------- 91 438442 000100000000 507703175443040027006688990104223605 507703175443 171704 621354 S +17:38:21 +Slot[389] 0200 300000 6688990103264501 ------------- 91 438444 000000000000 507703499158060022006688990103264501 507703499158 977912 621354 S +17:38:21 +Slot[411] 0200 011000 6688990040172874 ------------- 91 438447 000070000000 507704987003010123006688990040172874 507704987003 208413 621354 S +17:38:24 +Slot[469] 0200 300000 6688990104223605 ------------- 00 438769 000000000000 507703175444040027006688990104223605 507703175444 148268 621354 S +17:38:26 +Slot[450] 0420 011000 6688990107167007 0000000000000 00 438616 000050000000 507703955272010111006688990107167007 507703955272 -------- 621354 S +17:38:36 +Slot[468] 0200 010000 6213544001865507 ------------- 00 894121 000010000000 507702488456030010136213544001865507 507702488456 504703 668899 S +17:38:36 +Slot[396] 0200 011000 6688990102859707 ------------- 91 223490 000030000000 507700118600010011006688990102859707 507700118600 366549 220699 S +17:38:37 Slot [491] | NOT FINANCIAL TRANSACTION +17:38:37 +Slot[461] 0200 010000 6213545000683593 ------------- 61 261746 000200000000 5077102617460366SKTT6213545000683593 507710261746 671912 180893 S +17:38:37 +Slot[498] 0200 301000 6688990104796006 ------------- 00 169318 000000000000 507717169318015290186688990104796006 507717169318 078163 198901 S +17:38:39 Slot [407] | NOT FINANCIAL TRANSACTION +17:38:43 +Slot[446] 0420 011000 6688990104796006 0 00 169299 000050000000 507717169299015290186688990104796006 507717169299 000000 198901 S +17:38:46 Slot [471] | NOT FINANCIAL TRANSACTION +17:38:52 Slot [436] | NOT FINANCIAL TRANSACTION +17:38:53 +Slot[476] 0200 010000 6213545000707277 ------------- 55 894155 000040000000 507702415207030010116213545000707277 507702415207 162093 668899 S +17:39:01 +Slot[460] 0200 011000 6688990107167007 ------------- 91 438616 000050000000 507703955272010111006688990107167007 507703955272 955387 621354 S +17:39:02 Slot [2] | NOT FINANCIAL TRANSACTION +17:39:05 +Slot[438] 0200 011000 6688990104796006 ------------- 91 169299 000050000000 507717169299015290186688990104796006 507717169299 056013 198901 S +17:39:07 +Slot[497] 0200 012000 6213544002024427 ------------- 00 261753 000007000000 5077102617530344SVKV6213544002024427 507710261753 307428 180893 S +17:39:10 +Slot[464] 0200 010000 6213545000683593 ------------- 00 261755 000010000000 5077102617550366SKTT6213545000683593 507710261755 502955 180893 S +17:39:23 Slot [495] | NOT FINANCIAL TRANSACTION +17:39:25 +Slot[409] 0200 301000 6688990105554909 ------------- 91 438707 000000000000 507703729336010090006688990105554909 507703729336 544500 621354 S +17:39:27 +Slot[470] 0200 011000 6688990200035606 ------------- 55 169335 000010000000 507717169335015290136688990200035606 507717169335 611127 198901 S +17:39:33 +Slot[451] 0200 010000 6213545000707277 ------------- 00 894196 000050000000 507702415209030010116213545000707277 507702415209 695763 668899 S +17:39:34 Slot [492] | NOT FINANCIAL TRANSACTION +17:39:41 Slot [454] | NOT FINANCIAL TRANSACTION +17:39:42 +Slot[477] 0420 010000 6688990107452904 ------------- 00 261754 000010000000 5077102617540102SAPA6688990107452904 507710261754 -------- 180893 S +17:39:44 +Slot[457] 0200 303000 6688990103264501 ------------- 91 438792 000000000000 507703499159060022006688990103264501 507703499159 085143 621354 S +17:39:45 +Slot[24] 0420 010000 6688990040015842 ------------- 00 439251 000100000000 507704098785080006006688990040015842 507704098785 -------- 621354 S +17:39:51 Slot [480] | NOT FINANCIAL TRANSACTION +17:40:05 +Slot[390] 0200 301000 6688990040015842 ------------- 91 438876 000000000000 507704098783080006006688990040015842 507704098783 719393 621354 S +17:40:06 Slot [484] | NOT FINANCIAL TRANSACTION +17:40:13 +Slot[466] 0420 011000 6688990103972608 ------------- 00 439422 000100000000 507704523215020015006688990103972608 507704523215 -------- 621354 S +17:40:17 Slot [488] | NOT FINANCIAL TRANSACTION +17:40:17 Slot [458] | NOT FINANCIAL TRANSACTION +17:40:31 Slot [493] | NOT FINANCIAL TRANSACTION +17:40:32 Slot [22] | NOT FINANCIAL TRANSACTION +17:40:37 +Slot[432] 0200 010000 6213544001866000 ------------- 00 894244 000015000000 507702488459030010136213544001866000 507702488459 064996 668899 S +17:40:43 Slot [481] | NOT FINANCIAL TRANSACTION +17:40:48 Slot [0] | NOT FINANCIAL TRANSACTION +17:40:49 +Slot[455] 0200 010000 1808930400009585 ------------- 51 894255 000050000000 507702415211030010111808930400009585 507702415211 616492 668899 S +17:40:50 +Slot[3] 0200 011000 6688990040172874 ------------- 51 439615 000060000000 507704987014010123006688990040172874 507704987014 750205 621354 S +17:40:51 +Slot[16] 0200 301000 0030201039717564 ------------- 14 439683 000000000000 507703572997090014000030201039717564 507703572997 366972 621354 S +17:40:52 +Slot[4] 0200 010000 6213544001272829 ------------- 00 261764 000050000000 5077102617640344SVKV6213544001272829 507710261764 540241 180893 S +17:40:56 +Slot[1] 0420 010000 6688990107452904 0000000000000 00 261754 000010000000 5077102617540102SAPA6688990107452904 507710261754 -------- 180893 S +17:40:56 Slot [21] | NOT FINANCIAL TRANSACTION +17:40:59 +Slot[5] 0420 010000 6688990040015842 0000000000000 00 439251 000100000000 507704098785080006006688990040015842 507704098785 -------- 621354 S +17:41:00 +Slot[15] 0420 011000 6688990040172874 ------------- 00 439615 000060000000 507704987014010123006688990040172874 507704987014 -------- 621354 S +17:41:05 Slot [26] | NOT FINANCIAL TRANSACTION +17:41:09 +Slot[496] 0200 011000 6213544000431566 ------------- 00 305660 000030000000 507700079248010007006213544000431566 507700079248 210376 220699 S +17:41:12 +Slot[8] 0200 010000 1808930400009585 ------------- 51 894280 000050000000 507702415212030010111808930400009585 507702415212 187921 668899 S +17:41:19 +Slot[12] 0200 301000 6688990040122747 ------------- 00 439829 000000000000 507704897509010122006688990040122747 507704897509 741136 621354 S +17:41:20 Slot [23] | NOT FINANCIAL TRANSACTION +17:41:25 +Slot[486] 0200 010000 6688990040015842 ------------- 91 439251 000100000000 507704098785080006006688990040015842 507704098785 344923 621354 S +17:41:26 +Slot[473] 0420 011000 6688990103972608 0000000000000 00 439422 000100000000 507704523215020015006688990103972608 507704523215 -------- 621354 S +17:41:28 +Slot[6] 0200 301000 6213542000023110 ------------- 00 261768 031810403126 5077102617680103H1506213542000023110 507710261768 480145 180893 S +17:41:29 +Slot[10] 0200 010000 1808930200040129 ------------- 00 894300 000020000000 507702488461030010131808930200040129 507702488461 491706 668899 S +17:41:30 +Slot[499] 0200 010000 6688990107452904 ------------- 91 261754 000010000000 5077102617540102SAPA6688990107452904 507710261754 384404 180893 S +17:41:41 +Slot[11] 0200 010000 1808930400009585 ------------- 00 894311 000010000000 507702415213030010111808930400009585 507702415213 379308 668899 S +17:41:42 +Slot[9] 0200 301000 6688990103972608 ------------- 00 439933 000000000000 507704523216020015006688990103972608 507704523216 313234 621354 S +17:41:45 Slot [7] | NOT FINANCIAL TRANSACTION +17:41:46 Slot [27] | NOT FINANCIAL TRANSACTION +17:42:01 Slot [56] | NOT FINANCIAL TRANSACTION +17:42:02 +Slot[46] 0200 010000 6213544002197512 ------------- 51 894340 000010000000 507701955436030200186213544002197512 507701955436 912792 668899 S +17:42:02 Slot [30] | NOT FINANCIAL TRANSACTION +17:42:03 +Slot[18] 0200 011000 6688990103972608 ------------- 91 439422 000100000000 507704523215020015006688990103972608 507704523215 239857 621354 S +17:42:16 +Slot[14] 0200 301000 6688990040122747 ------------- 91 439479 000000000000 507704897508010122006688990040122747 507704897508 040554 621354 S +17:42:17 Slot [28] | NOT FINANCIAL TRANSACTION +17:42:22 +Slot[42] 0200 010000 6688990104403801 ------------- 00 261772 000010000000 5077102617720483XKNH6688990104403801 507710261772 060004 180893 S +17:42:23 +Slot[20] 0200 010000 6213544002197512 ------------- 51 894357 000010000000 507701955437030200186213544002197512 507701955437 153229 668899 S +17:42:34 Slot [38] | NOT FINANCIAL TRANSACTION +17:42:35 +Slot[34] 0200 301000 6213544002197512 ------------- 00 894366 000000000000 507701955438030200186213544002197512 507701955438 547595 668899 S +17:42:37 +Slot[32] 0200 301000 6213542000023110 ------------- 00 261774 031810414026 5077102617740103H1506213542000023110 507710261774 536869 180893 S +17:42:38 +Slot[36] 0200 010000 1808930400009585 ------------- 00 894363 000030000000 507702415215030010111808930400009585 507702415215 295313 668899 S +17:42:47 Slot [52] | NOT FINANCIAL TRANSACTION +17:42:48 Slot [41] | NOT FINANCIAL TRANSACTION +17:43:04 +Slot[47] 0200 010000 6688990602610402 ------------- 64 261777 000200000000 5077102617770117KMBR6688990602610402 507710261777 459278 180893 S +17:43:06 Slot [19] | NOT FINANCIAL TRANSACTION +17:43:16 +Slot[13] 0200 010000 6213544002197512 ------------- 51 894404 000010000000 507701955439030200186213544002197512 507701955439 778082 668899 S +17:43:17 +Slot[40] 0200 010000 1808930700014699 ------------- 00 894401 000010000000 507702289726030090051808930700014699 507702289726 785479 668899 S +17:43:25 +Slot[54] 0200 010000 6213544002035548 ------------- 51 894421 000030000000 507700588733030060016213544002035548 507700588733 664131 668899 S +17:43:27 +Slot[37] 0200 010000 1808930400009585 ------------- 51 894420 000020000000 507702415217030010111808930400009585 507702415217 706180 668899 S +17:43:35 +Slot[57] 0200 011000 6688990602546705 ------------- 00 440373 000010000000 507702451019050028006688990602546705 507702451019 643857 621354 S +17:43:35 Slot [51] | NOT FINANCIAL TRANSACTION +17:43:39 +Slot[55] 0200 012000 6688990602584409 ------------- 00 440409 000030000000 507703644828160017006688990602584409 507703644828 037431 621354 S +17:43:45 +Slot[31] 0200 010000 1808930400009585 ------------- 51 894442 000010000000 507702415218030010111808930400009585 507702415218 084241 668899 S +17:43:46 +Slot[29] 0200 010000 6213544002035548 ------------- 00 894448 000020000000 507700588734030060016213544002035548 507700588734 697692 668899 S +17:43:48 +Slot[61] 0200 010000 6688990603114404 ------------- 64 261779 000200000000 5077102617790221XKKM6688990603114404 507710261779 125952 180893 S +17:43:49 Slot [60] | NOT FINANCIAL TRANSACTION +17:43:56 Slot [44] | NOT FINANCIAL TRANSACTION +17:43:56 +Slot[17] 0200 010000 6213543000228428 ------------- 55 894467 000100000000 507702407223030010106213543000228428 507702407223 847258 668899 S +17:44:06 +Slot[48] 0200 010000 6213545001049208 ------------- 00 894483 000010000000 507700493642030010066213545001049208 507700493642 630388 668899 S +17:44:11 Slot [63] | NOT FINANCIAL TRANSACTION +17:44:12 +Slot[59] 0200 010000 6688990107452904 ------------- 00 261781 000010000000 5077102617810102SAPA6688990107452904 507710261781 477896 180893 S +17:44:19 +Slot[72] 0200 010000 1808930400009585 ------------- 00 894492 000005000000 507702415219030010111808930400009585 507702415219 908374 668899 S +17:44:22 Slot [35] | NOT FINANCIAL TRANSACTION +17:44:25 +Slot[71] 0200 010000 6688990050036944 ------------- 00 261783 000010000000 5077102617830528LPBP6688990050036944 507710261783 756339 180893 S +17:44:33 Slot [53] | NOT FINANCIAL TRANSACTION +17:44:34 +Slot[39] 0200 301000 6688990102488101 ------------- 00 440656 000000000000 507702796484010073006688990102488101 507702796484 767529 621354 S +17:44:35 +Slot[80] 0200 010000 6688990603114404 ------------- 00 261786 000100000000 5077102617860221XKKM6688990603114404 507710261786 627551 180893 S +17:44:42 +Slot[49] 0200 010000 6213543000228428 ------------- 55 894513 000100000000 507702407225030010106213543000228428 507702407225 707718 668899 S +17:44:45 Slot [25] | NOT FINANCIAL TRANSACTION +17:44:49 +Slot[79] 0200 010000 6213544002035548 ------------- 51 894521 000010000000 507700588736030060016213544002035548 507700588736 384725 668899 S +17:44:51 Slot [68] | NOT FINANCIAL TRANSACTION +17:44:55 Slot [85] | NOT FINANCIAL TRANSACTION +17:45:05 Slot [494] | NOT FINANCIAL TRANSACTION +17:45:06 +Slot[43] 0200 300000 6213544002035548 ------------- 00 894535 000000000000 507700588737030060016213544002035548 507700588737 912081 668899 S +17:45:15 +Slot[91] 0200 300000 6213543000228428 ------------- 75 894547 000000000000 507702407227030010106213543000228428 507702407227 443452 668899 S +17:45:16 Slot [77] | NOT FINANCIAL TRANSACTION +17:45:16 +Slot[75] 0200 010000 6688990050036944 ------------- 00 261791 000010000000 5077102617910528LPBP6688990050036944 507710261791 027388 180893 S +17:45:17 Slot [89] | NOT FINANCIAL TRANSACTION +17:45:29 +Slot[65] 0200 010000 1808930400009585 ------------- 00 894557 000002000000 507702415221030010111808930400009585 507702415221 940957 668899 S +17:45:36 +Slot[88] 0200 010000 6213542000023110 ------------- 00 894569 000100000000 507700195618030010036213542000023110 507700195618 578349 668899 S +17:45:37 Slot [76] | NOT FINANCIAL TRANSACTION +17:45:42 Slot [66] | NOT FINANCIAL TRANSACTION +17:45:48 +Slot[86] 0200 012000 6688990102126206 ------------- 00 261794 000005000000 5077102617940264UDXH6688990102126206 507710261794 998069 180893 S +17:45:53 Slot [33] | NOT FINANCIAL TRANSACTION +17:45:57 Slot [101] | NOT FINANCIAL TRANSACTION +17:46:02 +Slot[94] 0200 010000 6688990603114404 ------------- 00 261796 000100000000 5077102617960221XKKM6688990603114404 507710261796 490539 180893 S +17:46:10 +Slot[58] 0200 010000 6213544002035548 ------------- 00 894601 000005000000 507700588739030060016213544002035548 507700588739 751295 668899 S +17:46:12 Slot [105] | NOT FINANCIAL TRANSACTION +17:46:20 +Slot[102] 0200 011000 6688990102488101 ------------- 00 441145 000010000000 507702796486010073006688990102488101 507702796486 383668 621354 S +17:46:21 Slot [93] | NOT FINANCIAL TRANSACTION +17:46:23 Slot [81] | NOT FINANCIAL TRANSACTION +17:46:39 +Slot[95] 0200 302000 6688990102126206 ------------- 00 261799 031810454126 5077102617990264UDXH6688990102126206 507710261799 562787 180893 S +17:46:49 Slot [92] | NOT FINANCIAL TRANSACTION +17:46:55 Slot [74] | NOT FINANCIAL TRANSACTION +17:47:00 Slot [45] | NOT FINANCIAL TRANSACTION +17:47:07 +Slot[103] 0200 301000 6213543000228428 ------------- 75 894653 000000000000 507702407230030010106213543000228428 507702407230 532730 668899 S +17:47:08 +Slot[107] 0200 012000 6688990104949803 ------------- 00 441381 000030000000 507704644738170009006688990104949803 507704644738 879122 621354 S +17:47:10 Slot [114] | NOT FINANCIAL TRANSACTION +17:47:20 Slot [104] | NOT FINANCIAL TRANSACTION +17:47:26 Slot [100] | NOT FINANCIAL TRANSACTION +17:47:31 Slot [67] | NOT FINANCIAL TRANSACTION +17:47:34 Slot [82] | NOT FINANCIAL TRANSACTION +17:47:39 +Slot[69] 0200 011000 6688990102488101 ------------- 51 441524 000040000000 507702796488010073006688990102488101 507702796488 539039 621354 S +17:47:41 Slot [87] | NOT FINANCIAL TRANSACTION +17:47:57 Slot [117] | NOT FINANCIAL TRANSACTION +17:47:57 Slot [122] | NOT FINANCIAL TRANSACTION +17:48:07 Slot [108] | NOT FINANCIAL TRANSACTION +17:48:12 +Slot[119] 0200 010000 6213544000467677 ------------- 61 261803 000200000000 5077102618030401XSBR6213544000467677 507710261803 719819 180893 S +17:48:23 Slot [115] | NOT FINANCIAL TRANSACTION +17:48:25 +Slot[83] 0200 010000 6213543000228428 ------------- 75 894729 000080000000 507702407233030010106213543000228428 507702407233 085472 668899 S +17:48:31 Slot [73] | NOT FINANCIAL TRANSACTION +17:48:39 Slot [78] | NOT FINANCIAL TRANSACTION +17:48:47 +Slot[110] 0200 301000 6213544001260220 ------------- 00 261807 031810475026 5077102618070109SKTB6213544001260220 507710261807 929477 180893 S +17:48:53 +Slot[64] 0200 011000 6688990102488101 ------------- 00 441874 000030000000 507702796490010073006688990102488101 507702796490 187389 621354 S +17:48:59 Slot [113] | NOT FINANCIAL TRANSACTION +17:49:00 Slot [97] | NOT FINANCIAL TRANSACTION +17:49:11 Slot [62] | NOT FINANCIAL TRANSACTION +17:49:28 +Slot[98] 0200 012000 6213544001576252 ------------- 00 261811 000005000000 5077102618110102SAPA6213544001576252 507710261811 066912 180893 S +17:49:36 Slot [84] | NOT FINANCIAL TRANSACTION +17:49:37 Slot [121] | NOT FINANCIAL TRANSACTION +17:49:46 +Slot[90] 0200 011000 6688990103293500 ------------- 00 442055 000100000000 507703499161060022006688990103293500 507703499161 893264 621354 S +17:49:48 Slot [159] | NOT FINANCIAL TRANSACTION +17:50:01 Slot [134] | NOT FINANCIAL TRANSACTION +17:50:03 Slot [99] | NOT FINANCIAL TRANSACTION +17:50:05 +Slot[144] 0200 011000 6213544000919693 ------------- 00 009168 000070000000 507700213173050001006213544000919693 507700213173 268114 220699 S +17:50:13 Slot [124] | NOT FINANCIAL TRANSACTION +17:50:17 Slot [148] | NOT FINANCIAL TRANSACTION +17:50:24 Slot [111] | NOT FINANCIAL TRANSACTION +17:50:36 Slot [149] | NOT FINANCIAL TRANSACTION +17:50:40 +Slot[112] 0200 010000 6213544001352712 ------------- 00 894846 000010000000 507701541256030200166213544001352712 507701541256 376022 668899 S +17:50:41 Slot [126] | NOT FINANCIAL TRANSACTION +17:50:46 Slot [140] | NOT FINANCIAL TRANSACTION +17:50:52 +Slot[109] 0200 010000 6213545000660724 ------------- 00 261818 000010000000 5077102618180102SAPA6213545000660724 507710261818 495597 180893 S +17:51:01 +Slot[50] 0200 011000 6688990103293500 ------------- 00 442409 000100000000 507703499163060022006688990103293500 507703499163 196362 621354 S +17:51:03 Slot [131] | NOT FINANCIAL TRANSACTION +17:51:03 Slot [155] | NOT FINANCIAL TRANSACTION +17:51:13 Slot [151] | NOT FINANCIAL TRANSACTION +17:51:17 Slot [70] | NOT FINANCIAL TRANSACTION +17:51:24 Slot [139] | NOT FINANCIAL TRANSACTION +17:51:35 Slot [150] | NOT FINANCIAL TRANSACTION +17:51:46 Slot [123] | NOT FINANCIAL TRANSACTION +17:51:50 Slot [154] | NOT FINANCIAL TRANSACTION +17:52:00 Slot [146] | NOT FINANCIAL TRANSACTION +17:52:05 Slot [118] | NOT FINANCIAL TRANSACTION +17:52:08 +Slot[157] 0200 011000 6688990103293500 ------------- 00 442732 000100000000 507703499165060022006688990103293500 507703499165 285490 621354 S +17:52:16 Slot [135] | NOT FINANCIAL TRANSACTION +17:52:31 Slot [152] | NOT FINANCIAL TRANSACTION +17:52:32 +Slot[132] 0200 302000 6688990100954609 ------------- 00 442835 000000000000 507704705399180009006688990100954609 507704705399 024084 621354 S +17:52:34 Slot [171] | NOT FINANCIAL TRANSACTION +17:52:38 +Slot[96] 0200 300000 6213545000965248 ------------- 00 894946 000000000000 507700858018030150046213545000965248 507700858018 878177 668899 S +17:52:47 +Slot[167] 0200 011000 1808930900018722 ------------- 00 442891 000025000000 507704227110050046001808930900018722 507704227110 934446 621354 S +17:52:51 Slot [116] | NOT FINANCIAL TRANSACTION +17:52:52 Slot [136] | NOT FINANCIAL TRANSACTION +17:52:59 +Slot[120] 0200 301000 6688990030009730 ------------- 00 261823 031810520226 5077102618230262PSLB6688990030009730 507710261823 783941 180893 S +17:53:07 +Slot[141] 0200 300000 6213545000965248 ------------- 00 894972 000000000000 507700858019030150046213545000965248 507700858019 943131 668899 S +17:53:07 Slot [156] | NOT FINANCIAL TRANSACTION +17:53:08 +Slot[130] 0200 012000 6688990040041962 ------------- 55 442988 000080000000 507705334891050047006688990040041962 507705334891 872674 621354 S +17:53:12 Slot [174] | NOT FINANCIAL TRANSACTION +17:53:15 +Slot[168] 0200 011000 6688990103293500 ------------- 00 443029 000040000000 507703499167060022006688990103293500 507703499167 963586 621354 S +17:53:25 +Slot[129] 0200 012000 6688990106917808 ------------- 00 443079 000020000000 507705107007200013006688990106917808 507705107007 652092 621354 S +17:53:26 +Slot[160] 0200 010000 6213544001505434 ------------- 00 261829 000050000000 5077102618290110VTBR6213544001505434 507710261829 946867 180893 S +17:53:32 +Slot[166] 0200 012000 6688990040041962 ------------- 00 443112 000080000000 507705334893050047006688990040041962 507705334893 517842 621354 S +17:53:36 +Slot[164] 0200 010000 6688990030009730 ------------- 00 261831 000100000000 5077102618310262PSLB6688990030009730 507710261831 205701 180893 S +17:53:38 +Slot[169] 0200 300000 6213545000965248 ------------- 00 894992 000000000000 507700858020030150046213545000965248 507700858020 281050 668899 S +17:53:49 Slot [175] | NOT FINANCIAL TRANSACTION +17:53:56 Slot [147] | NOT FINANCIAL TRANSACTION +17:54:00 +Slot[178] 0200 010000 6213544001389805 ------------- 00 261836 000010000000 5077102618360344SVKV6213544001389805 507710261836 635578 180893 S +17:54:07 +Slot[133] 0200 012000 6688990100954609 ------------- 00 443283 000050000000 507704705401180009006688990100954609 507704705401 973547 621354 S +17:54:09 Slot [195] | NOT FINANCIAL TRANSACTION +17:54:10 Slot [128] | NOT FINANCIAL TRANSACTION +17:54:10 +Slot[189] 0200 011000 2206991200057987 ------------- 51 443308 000010000000 507703656358160018002206991200057987 507703656358 937238 621354 S +17:54:20 Slot [142] | NOT FINANCIAL TRANSACTION +17:54:28 +Slot[183] 0200 301000 1808930600015770 ------------- 00 443380 000000000000 507704333711030032001808930600015770 507704333711 364658 621354 S +17:54:29 +Slot[191] 0200 010000 6688990030009730 ------------- 00 261842 000050000000 5077102618420262PSLB6688990030009730 507710261842 253631 180893 S +17:54:33 +Slot[125] 0200 010000 2206990000109280 ------------- 00 895025 000100000000 507702031535030180032206990000109280 507702031535 888701 668899 S +17:54:41 Slot [127] | NOT FINANCIAL TRANSACTION +17:54:42 +Slot[181] 0200 301000 6688990040041962 ------------- 55 443455 000000000000 507705334894050047006688990040041962 507705334894 387578 621354 S +17:54:57 Slot [138] | NOT FINANCIAL TRANSACTION +17:54:58 +Slot[182] 0200 301000 6688990040041962 ------------- 00 443532 000000000000 507705334895050047006688990040041962 507705334895 229214 621354 S +17:55:01 Slot [213] | NOT FINANCIAL TRANSACTION +17:55:03 +Slot[158] 0200 011000 6688990104927304 ------------- 00 443544 000100000000 507703499169060022006688990104927304 507703499169 702767 621354 S +17:55:07 Slot [198] | NOT FINANCIAL TRANSACTION +17:55:11 Slot [200] | NOT FINANCIAL TRANSACTION +17:55:17 Slot [177] | NOT FINANCIAL TRANSACTION +17:55:23 Slot [153] | NOT FINANCIAL TRANSACTION +17:55:28 +Slot[165] 0200 010000 6688990602690503 ------------- 00 443661 000100000000 507704153302200010006688990602690503 507704153302 969348 621354 S +17:55:33 +Slot[210] 0200 011000 1808930600015770 ------------- 00 443687 000100000000 507704333713030032001808930600015770 507704333713 112055 621354 S +17:55:34 +Slot[211] 0200 010000 2206990000109280 ------------- 00 895071 000100000000 507702031537030180032206990000109280 507702031537 819268 668899 S +17:55:39 Slot [187] | NOT FINANCIAL TRANSACTION +17:55:54 Slot [106] | NOT FINANCIAL TRANSACTION +17:55:59 +Slot[162] 0200 302000 1808931700022245 ------------- 42 895094 000000000000 507702147929030200241808931700022245 507702147929 333281 668899 S +17:56:03 +Slot[163] 0200 311000 6213544001301305 ------------- 00 450577 000000000000 507700153068030003006213544001301305 507700153068 215825 220699 S +17:56:06 Slot [206] | NOT FINANCIAL TRANSACTION +17:56:09 Slot [172] | NOT FINANCIAL TRANSACTION +17:56:10 +Slot[217] 0200 012000 2206991200057987 ------------- 00 443867 000005000000 507703666217160019002206991200057987 507703666217 585713 621354 S +17:56:13 Slot [145] | NOT FINANCIAL TRANSACTION +17:56:19 +Slot[180] 0200 010000 6213548000333474 ------------- 00 895108 000025000000 507700168009030200076213548000333474 507700168009 904727 668899 S +17:56:20 Slot [196] | NOT FINANCIAL TRANSACTION +17:56:31 Slot [194] | NOT FINANCIAL TRANSACTION +17:56:47 +Slot[190] 0200 011000 1808930600015770 ------------- 00 444023 000100000000 507704333715030032001808930600015770 507704333715 695525 621354 S +17:56:52 Slot [222] | NOT FINANCIAL TRANSACTION +17:57:02 Slot [184] | NOT FINANCIAL TRANSACTION +17:57:11 Slot [226] | NOT FINANCIAL TRANSACTION +17:57:13 Slot [214] | NOT FINANCIAL TRANSACTION +17:57:15 Slot [218] | NOT FINANCIAL TRANSACTION +17:57:15 +Slot[225] 0200 010000 2206990000109280 ------------- 00 895144 000070000000 507702031539030180032206990000109280 507702031539 209756 668899 S +17:57:24 Slot [170] | NOT FINANCIAL TRANSACTION +17:57:31 +Slot[173] 0200 010000 6213545000892657 ------------- 00 261859 000100000000 5077102618590484HPVX6213545000892657 507710261859 802178 180893 S +17:57:36 Slot [176] | NOT FINANCIAL TRANSACTION +17:57:42 +Slot[207] 0200 011000 6688990107936104 ------------- 00 444231 000100000000 507703499171060022006688990107936104 507703499171 517152 621354 S +17:57:45 Slot [223] | NOT FINANCIAL TRANSACTION +17:57:46 +Slot[231] 0200 010000 6688990102688007 ------------- 00 444235 000050000000 507704705403180009006688990102688007 507704705403 043257 621354 S +17:57:59 +Slot[224] 0200 011000 1808930600015770 ------------- 00 444302 000100000000 507704333717030032001808930600015770 507704333717 776595 621354 S +17:58:05 Slot [221] | NOT FINANCIAL TRANSACTION +17:58:16 Slot [143] | NOT FINANCIAL TRANSACTION +17:58:16 Slot [161] | NOT FINANCIAL TRANSACTION +17:58:17 Slot [208] | NOT FINANCIAL TRANSACTION +17:58:26 Slot [188] | NOT FINANCIAL TRANSACTION +17:58:31 +Slot[192] 0200 010000 2206990000109280 ------------- 00 895188 000070000000 507702031541030180032206990000109280 507702031541 490845 668899 S +17:58:37 Slot [202] | NOT FINANCIAL TRANSACTION +17:58:49 +Slot[197] 0200 011000 6213544001301305 ------------- 00 450584 000100000000 507700153073030003006213544001301305 507700153073 735414 220699 S +17:58:53 Slot [204] | NOT FINANCIAL TRANSACTION +17:59:03 Slot [230] | NOT FINANCIAL TRANSACTION +17:59:05 +Slot[185] 0200 012000 6688990040123745 ------------- 00 444530 000050000000 507703907290010106006688990040123745 507703907290 547583 621354 S +17:59:19 Slot [199] | NOT FINANCIAL TRANSACTION +17:59:20 Slot [220] | NOT FINANCIAL TRANSACTION +17:59:21 Slot [179] | NOT FINANCIAL TRANSACTION +17:59:32 Slot [212] | NOT FINANCIAL TRANSACTION +17:59:44 Slot [186] | NOT FINANCIAL TRANSACTION +17:59:58 +Slot[232] 0200 011000 6213544001301305 ------------- 00 450587 000050000000 507700153075030003006213544001301305 507700153075 018412 220699 S +17:59:59 Slot [193] | NOT FINANCIAL TRANSACTION +18:00:08 +Slot[216] 0200 300000 6688990040123745 ------------- 00 444774 000000000000 507703907291010106006688990040123745 507703907291 707034 621354 S +18:00:09 Slot [227] | NOT FINANCIAL TRANSACTION +18:00:17 Slot [234] | NOT FINANCIAL TRANSACTION +18:00:19 Slot [242] | NOT FINANCIAL TRANSACTION +18:00:21 Slot [235] | NOT FINANCIAL TRANSACTION +18:00:21 +Slot[219] 0200 010000 2206990000109280 ------------- 00 895254 000070000000 507702031543030180032206990000109280 507702031543 926712 668899 S +18:00:26 Slot [250] | NOT FINANCIAL TRANSACTION +18:00:29 +Slot[239] 0200 011000 6688990108090703 ------------- 00 444851 000010000000 507704227124050046006688990108090703 507704227124 622924 621354 S +18:00:29 Slot [201] | NOT FINANCIAL TRANSACTION +18:00:40 Slot [245] | NOT FINANCIAL TRANSACTION +18:00:43 +Slot[228] 0200 301000 6213544001532651 ------------- 00 261865 031810594626 5077102618650527LPBL6213544001532651 507710261865 191272 180893 S +18:00:53 +Slot[238] 0200 011000 6688990600393001 ------------- 00 444941 000030000000 507704153304200010006688990600393001 507704153304 704060 621354 S +18:00:56 Slot [203] | NOT FINANCIAL TRANSACTION +18:01:07 Slot [205] | NOT FINANCIAL TRANSACTION +18:01:23 Slot [258] | NOT FINANCIAL TRANSACTION +18:01:24 Slot [244] | NOT FINANCIAL TRANSACTION +18:01:31 +Slot[247] 0200 302000 6688990602673806 ------------- 00 261867 031811003326 5077112618670369SLVL6688990602673806 507711261867 568078 180893 S +18:01:31 Slot [243] | NOT FINANCIAL TRANSACTION +18:01:33 +Slot[253] 0200 300000 6213544000937505 ------------- 00 410423 000000000000 507700354284010026006213544000937505 507700354284 422048 123401 S +18:01:43 +Slot[273] 0200 010000 6688990103352504 ------------- 00 445141 000010000000 507704227126050046006688990103352504 507704227126 351316 621354 S +18:01:44 Slot [137] | NOT FINANCIAL TRANSACTION +18:01:52 +Slot[260] 0200 011000 6213548000307130 ------------- 00 261869 000030000000 5077112618690522XYXH6213548000307130 507711261869 228834 180893 S +18:02:03 Slot [215] | NOT FINANCIAL TRANSACTION +18:02:04 Slot [251] | NOT FINANCIAL TRANSACTION +18:02:21 +Slot[265] 0200 011000 1808930700009061 ------------- 00 445280 000020000000 507703644894160017001808930700009061 507703644894 010105 621354 S +18:02:24 Slot [249] | NOT FINANCIAL TRANSACTION +18:02:24 Slot [233] | NOT FINANCIAL TRANSACTION +18:02:25 Slot [264] | NOT FINANCIAL TRANSACTION +18:02:35 Slot [209] | NOT FINANCIAL TRANSACTION +18:02:36 Slot [229] | NOT FINANCIAL TRANSACTION +18:02:36 Slot [262] | NOT FINANCIAL TRANSACTION +18:02:40 +Slot[279] 0200 010000 6213541000434806 ------------- 00 261875 000100000000 5077112618750401XSBR6213541000434806 507711261875 264076 180893 S +18:02:48 +Slot[270] 0200 010000 2206990000109280 ------------- 00 895357 000070000000 507702031547030180032206990000109280 507702031547 925457 668899 S +18:02:51 Slot [236] | NOT FINANCIAL TRANSACTION +18:02:54 +Slot[280] 0200 011000 6213545000113260 ------------- 51 261878 000030000000 5077112618780301LPBX6213545000113260 507711261878 397660 180893 S +18:03:01 +Slot[267] 0200 012000 6688990602673806 ------------- 00 261879 000040000000 5077112618790369SLVL6688990602673806 507711261879 582522 180893 S +18:03:11 Slot [263] | NOT FINANCIAL TRANSACTION +18:03:17 +Slot[278] 0200 301000 6213545000113260 ------------- 00 261882 031811022026 5077112618820301LPBX6213545000113260 507711261882 589078 180893 S +18:03:20 +Slot[257] 0420 010000 2206990000109280 0 00 895296 000070000000 507702031545030180032206990000109280 507702031545 000000 668899 S +18:03:27 Slot [277] | NOT FINANCIAL TRANSACTION +18:03:27 Slot [266] | NOT FINANCIAL TRANSACTION +18:03:37 Slot [293] | NOT FINANCIAL TRANSACTION +18:03:41 Slot [254] | NOT FINANCIAL TRANSACTION +18:03:43 +Slot[248] 0200 010000 2206990000109280 ------------- 91 895296 000070000000 507702031545030180032206990000109280 507702031545 381362 668899 S +18:03:53 Slot [289] | NOT FINANCIAL TRANSACTION +18:03:59 +Slot[275] 0200 010000 6213541000577802 ------------- 00 261887 000050000000 5077112618870369SLVL6213541000577802 507711261887 088873 180893 S +18:04:00 +Slot[287] 0200 011000 6213545000113260 ------------- 00 261888 000029000000 5077112618880301LPBX6213545000113260 507711261888 076177 180893 S +18:04:08 +Slot[304] 0200 010000 1808931700025420 ------------- 55 445688 000010000000 507704768505070012001808931700025420 507704768505 332000 621354 S +18:04:14 Slot [281] | NOT FINANCIAL TRANSACTION +18:04:25 +Slot[296] 0200 010000 6213544002224142 ------------- 00 895406 000010000000 507701008351034030016213544002224142 507701008351 692794 668899 S +18:04:28 Slot [294] | NOT FINANCIAL TRANSACTION +18:04:29 Slot [259] | NOT FINANCIAL TRANSACTION +18:04:39 Slot [252] | NOT FINANCIAL TRANSACTION +18:04:46 Slot [286] | NOT FINANCIAL TRANSACTION +18:04:50 Slot [298] | NOT FINANCIAL TRANSACTION +18:05:01 +Slot[303] 0200 302000 6688990104619901 ------------- 00 445882 000000000000 507704012321010117006688990104619901 507704012321 834752 621354 S +18:05:05 Slot [240] | NOT FINANCIAL TRANSACTION +18:05:15 Slot [317] | NOT FINANCIAL TRANSACTION +18:05:17 Slot [282] | NOT FINANCIAL TRANSACTION +18:05:26 Slot [271] | NOT FINANCIAL TRANSACTION +18:05:31 Slot [307] | NOT FINANCIAL TRANSACTION +18:05:41 Slot [256] | NOT FINANCIAL TRANSACTION +18:05:51 Slot [313] | NOT FINANCIAL TRANSACTION +18:05:53 Slot [315] | NOT FINANCIAL TRANSACTION +18:05:58 +Slot[237] 0200 011000 6688990104619901 ------------- 00 446043 000050000000 507704012323010117006688990104619901 507704012323 918951 621354 S +18:06:09 Slot [324] | NOT FINANCIAL TRANSACTION +18:06:12 +Slot[314] 0200 012000 6688990030006116 ------------- 55 446122 000010000000 507703160214040026006688990030006116 507703160214 650715 621354 S +18:06:19 Slot [246] | NOT FINANCIAL TRANSACTION +18:06:30 Slot [323] | NOT FINANCIAL TRANSACTION +18:06:33 Slot [241] | NOT FINANCIAL TRANSACTION +18:06:43 Slot [283] | NOT FINANCIAL TRANSACTION +18:06:45 +Slot[272] 0200 012000 6688990030006116 ------------- 55 446257 000010000000 507703160216040026006688990030006116 507703160216 599503 621354 S +18:06:59 Slot [340] | NOT FINANCIAL TRANSACTION +18:07:10 +Slot[269] 0200 012000 6688990030006116 ------------- 00 446340 000010000000 507703160218040026006688990030006116 507703160218 342525 621354 S +18:07:10 Slot [306] | NOT FINANCIAL TRANSACTION +18:07:14 +Slot[336] 0200 301000 6688990104759400 ------------- 00 446359 000000000000 507703384827130018006688990104759400 507703384827 496053 621354 S +18:07:22 Slot [325] | NOT FINANCIAL TRANSACTION +18:07:32 +Slot[312] 0200 010000 6213541000082720 ------------- 00 261906 000050000000 5077112619060361BLTB6213541000082720 507711261906 744824 180893 S +18:07:35 Slot [261] | NOT FINANCIAL TRANSACTION +18:07:36 Slot [339] | NOT FINANCIAL TRANSACTION +18:07:36 +Slot[311] 0200 010000 6213544000267531 ------------- 00 895532 000100000000 507700195630030010036213544000267531 507700195630 135344 668899 S +18:07:43 Slot [308] | NOT FINANCIAL TRANSACTION +18:07:58 Slot [310] | NOT FINANCIAL TRANSACTION +18:08:08 +Slot[321] 0200 010000 6688990104108103 ------------- 00 446557 000100000000 507704964591150011006688990104108103 507704964591 696717 621354 S +18:08:09 Slot [255] | NOT FINANCIAL TRANSACTION +18:08:19 +Slot[341] 0200 010000 6213541000082720 ------------- 00 261911 000010000000 5077112619110361BLTB6213541000082720 507711261911 281502 180893 S +18:08:29 Slot [297] | NOT FINANCIAL TRANSACTION +18:08:37 Slot [268] | NOT FINANCIAL TRANSACTION +18:08:39 Slot [349] | NOT FINANCIAL TRANSACTION +18:08:50 Slot [274] | NOT FINANCIAL TRANSACTION +18:08:58 +Slot[284] 0200 010000 6213541000082720 ------------- 00 261915 000010000000 5077112619150361BLTB6213541000082720 507711261915 721189 180893 S +18:09:11 Slot [329] | NOT FINANCIAL TRANSACTION +18:09:12 +Slot[332] 0200 010000 6213545000327126 ------------- 00 895583 000050000000 507702336310032170026213545000327126 507702336310 559480 668899 S +18:09:21 Slot [350] | NOT FINANCIAL TRANSACTION +18:09:33 Slot [364] | NOT FINANCIAL TRANSACTION +18:09:39 Slot [354] | NOT FINANCIAL TRANSACTION +18:09:41 +Slot[328] 0200 010000 6213541000082720 ------------- 51 261919 000010000000 5077112619190361BLTB6213541000082720 507711261919 311421 180893 S +18:09:49 +Slot[343] 0200 302000 6688990040146464 ------------- 55 446958 000000000000 507703195844040029006688990040146464 507703195844 187451 621354 S +18:09:54 Slot [285] | NOT FINANCIAL TRANSACTION +18:09:58 +Slot[302] 0200 010000 6688990107444000 ------------- 00 446978 000010000000 507703750306010091006688990107444000 507703750306 096346 621354 S +18:10:00 +Slot[299] 0200 303000 1888880000096271 ------------- 00 446984 000000000000 507703760629010092001888880000096271 507703760629 411544 621354 S +18:10:01 +Slot[338] 0200 302000 6688990040146464 ------------- 55 447015 000000000000 507703195845040029006688990040146464 507703195845 019444 621354 S +18:10:10 Slot [276] | NOT FINANCIAL TRANSACTION +18:10:17 Slot [291] | NOT FINANCIAL TRANSACTION +18:10:21 Slot [316] | NOT FINANCIAL TRANSACTION +18:10:30 +Slot[309] 0200 010000 6213544002214424 ------------- 00 895622 000010000000 507702294619030090066213544002214424 507702294619 044660 668899 S +18:10:31 Slot [366] | NOT FINANCIAL TRANSACTION +18:10:34 +Slot[290] 0200 302000 6688990040146464 ------------- 00 447104 000000000000 507703195846040029006688990040146464 507703195846 471624 621354 S +18:10:41 Slot [333] | NOT FINANCIAL TRANSACTION +18:10:41 Slot [301] | NOT FINANCIAL TRANSACTION +18:10:45 +Slot[384] 0200 010000 6213545000868764 ------------- 00 895629 000050000000 507702336312032170026213545000868764 507702336312 342533 668899 S +18:10:52 Slot [345] | NOT FINANCIAL TRANSACTION +18:11:03 Slot [365] | NOT FINANCIAL TRANSACTION +18:11:14 Slot [360] | NOT FINANCIAL TRANSACTION +18:11:29 Slot [358] | NOT FINANCIAL TRANSACTION +18:11:32 Slot [288] | NOT FINANCIAL TRANSACTION +18:11:40 Slot [372] | NOT FINANCIAL TRANSACTION +18:11:43 Slot [373] | NOT FINANCIAL TRANSACTION +18:11:51 +Slot[353] 0200 010000 6213541000511785 ------------- 00 895652 000100000000 507702336314032170026213541000511785 507702336314 949719 668899 S +18:11:51 Slot [362] | NOT FINANCIAL TRANSACTION +18:11:58 +Slot[380] 0200 013000 1888880000096271 ------------- 00 447363 000010000000 507703760631010092001888880000096271 507703760631 568832 621354 S +18:12:02 Slot [337] | NOT FINANCIAL TRANSACTION +18:12:17 Slot [320] | NOT FINANCIAL TRANSACTION +18:12:33 Slot [335] | NOT FINANCIAL TRANSACTION +18:12:36 Slot [347] | NOT FINANCIAL TRANSACTION +18:12:37 Slot [342] | NOT FINANCIAL TRANSACTION +18:12:45 Slot [331] | NOT FINANCIAL TRANSACTION +18:12:49 Slot [377] | NOT FINANCIAL TRANSACTION +18:12:49 Slot [378] | NOT FINANCIAL TRANSACTION +18:12:52 +Slot[361] 0200 010000 6213544000535564 ------------- 00 261931 000010000000 5077112619310401XSBR6213544000535564 507711261931 409613 180893 S +18:12:58 +Slot[363] 0200 302000 6688990040146464 ------------- 00 447608 000000000000 507703195852040029006688990040146464 507703195852 324112 621354 S +18:13:04 Slot [318] | NOT FINANCIAL TRANSACTION +18:13:15 Slot [326] | NOT FINANCIAL TRANSACTION +18:13:30 Slot [295] | NOT FINANCIAL TRANSACTION +18:13:42 Slot [346] | NOT FINANCIAL TRANSACTION +18:13:45 Slot [370] | NOT FINANCIAL TRANSACTION +18:13:47 Slot [319] | NOT FINANCIAL TRANSACTION +18:14:02 Slot [369] | NOT FINANCIAL TRANSACTION +18:14:13 Slot [330] | NOT FINANCIAL TRANSACTION +18:14:28 Slot [292] | NOT FINANCIAL TRANSACTION +18:14:41 Slot [379] | NOT FINANCIAL TRANSACTION +18:14:47 Slot [322] | NOT FINANCIAL TRANSACTION +18:14:49 Slot [348] | NOT FINANCIAL TRANSACTION +18:14:56 Slot [300] | NOT FINANCIAL TRANSACTION +18:15:10 +Slot[351] 0200 012000 1808931700021783 ------------- 42 448058 000060000000 507702373698010062001808931700021783 507702373698 691219 621354 S +18:15:18 Slot [334] | NOT FINANCIAL TRANSACTION +18:15:19 +Slot[371] 0200 011000 6213544001679643 ------------- 51 254591 000045000000 507700094257010009006213544001679643 507700094257 003399 220699 S +18:15:22 Slot [355] | NOT FINANCIAL TRANSACTION +18:15:32 Slot [385] | NOT FINANCIAL TRANSACTION +18:15:42 Slot [344] | NOT FINANCIAL TRANSACTION +18:15:50 +Slot[386] 0200 302000 6688990601024407 ------------- 00 448187 000000000000 507704722412180011006688990601024407 507704722412 278987 621354 S +18:15:51 Slot [367] | NOT FINANCIAL TRANSACTION +18:15:52 Slot [410] | NOT FINANCIAL TRANSACTION +18:15:55 +Slot[388] 0200 011000 6213544001679643 ------------- 00 254594 000044000000 507700094259010009006213544001679643 507700094259 638364 220699 S +18:15:58 Slot [357] | NOT FINANCIAL TRANSACTION +18:16:09 Slot [401] | NOT FINANCIAL TRANSACTION +18:16:20 Slot [398] | NOT FINANCIAL TRANSACTION +18:16:31 Slot [413] | NOT FINANCIAL TRANSACTION +18:16:35 +Slot[414] 0200 011000 6213544000080421 ------------- 00 261947 000030000000 5077112619470111BLBR6213544000080421 507711261947 879074 180893 S +18:16:46 Slot [392] | NOT FINANCIAL TRANSACTION +18:16:53 Slot [393] | NOT FINANCIAL TRANSACTION +18:16:57 Slot [420] | NOT FINANCIAL TRANSACTION +18:17:01 Slot [418] | NOT FINANCIAL TRANSACTION +18:17:12 Slot [425] | NOT FINANCIAL TRANSACTION +18:17:23 Slot [387] | NOT FINANCIAL TRANSACTION +18:17:34 Slot [391] | NOT FINANCIAL TRANSACTION +18:17:35 +Slot[415] 0200 300000 1999990000007982 ------------- 00 448535 000000000000 507702669285140005001999990000007982 507702669285 522543 621354 S +18:17:36 Slot [352] | NOT FINANCIAL TRANSACTION +18:17:50 Slot [423] | NOT FINANCIAL TRANSACTION +18:17:55 Slot [431] | NOT FINANCIAL TRANSACTION +18:18:01 Slot [399] | NOT FINANCIAL TRANSACTION +18:18:02 Slot [305] | NOT FINANCIAL TRANSACTION +18:18:04 +Slot[382] 0200 010000 6688990040041962 ------------- 00 448654 000050000000 507705334897050047006688990040041962 507705334897 559105 621354 S +18:18:12 Slot [381] | NOT FINANCIAL TRANSACTION +18:18:22 Slot [417] | NOT FINANCIAL TRANSACTION +18:18:34 +Slot[375] 0200 010000 6213548000018711 ------------- 00 895833 000010000000 507702488481030010136213548000018711 507702488481 225355 668899 S +18:18:35 Slot [445] | NOT FINANCIAL TRANSACTION +18:18:38 +Slot[359] 0200 010000 1999990000007982 ------------- 00 448745 000030000000 507702669287140005001999990000007982 507702669287 918955 621354 S +18:18:50 Slot [437] | NOT FINANCIAL TRANSACTION +18:18:57 Slot [406] | NOT FINANCIAL TRANSACTION +18:19:05 Slot [422] | NOT FINANCIAL TRANSACTION +18:19:06 Slot [394] | NOT FINANCIAL TRANSACTION +18:19:07 Slot [404] | NOT FINANCIAL TRANSACTION +18:19:16 Slot [452] | NOT FINANCIAL TRANSACTION +18:19:32 Slot [356] | NOT FINANCIAL TRANSACTION +18:19:42 Slot [397] | NOT FINANCIAL TRANSACTION +18:19:43 +Slot[448] 0200 010000 6688990103773204 ------------- 00 379460 000030000000 507700165658060001006688990103773204 507700165658 012341 220699 S +18:19:44 +Slot[443] 0200 010000 6213544002080650 ------------- 00 895873 000100000000 507702678278030200356213544002080650 507702678278 868113 668899 S +18:19:53 Slot [374] | NOT FINANCIAL TRANSACTION +18:19:59 Slot [465] | NOT FINANCIAL TRANSACTION +18:20:03 Slot [439] | NOT FINANCIAL TRANSACTION +18:20:12 Slot [327] | NOT FINANCIAL TRANSACTION +18:20:18 Slot [416] | NOT FINANCIAL TRANSACTION +18:20:20 Slot [402] | NOT FINANCIAL TRANSACTION +18:20:35 Slot [408] | NOT FINANCIAL TRANSACTION +18:20:45 Slot [435] | NOT FINANCIAL TRANSACTION +18:20:56 Slot [376] | NOT FINANCIAL TRANSACTION +18:21:01 Slot [421] | NOT FINANCIAL TRANSACTION +18:21:12 Slot [447] | NOT FINANCIAL TRANSACTION +18:21:17 Slot [456] | NOT FINANCIAL TRANSACTION +18:21:17 +Slot[441] 0200 012000 6213541000532633 ------------- 00 021045 000010000000 507700263038010014006213541000532633 507700263038 562123 220699 S +18:21:22 Slot [463] | NOT FINANCIAL TRANSACTION +18:21:33 Slot [462] | NOT FINANCIAL TRANSACTION +18:21:36 +Slot[428] 0200 010000 6213544002241575 ------------- 00 895920 000020000000 507701519411030040036213544002241575 507701519411 272550 668899 S +18:21:45 Slot [405] | NOT FINANCIAL TRANSACTION +18:22:00 Slot [434] | NOT FINANCIAL TRANSACTION +18:22:03 Slot [430] | NOT FINANCIAL TRANSACTION +18:22:12 Slot [412] | NOT FINANCIAL TRANSACTION +18:22:21 +Slot[383] 0200 011000 1808930300003282 ------------- 00 449587 000050000000 507703907320010106001808930300003282 507703907320 160622 621354 S +18:22:22 Slot [475] | NOT FINANCIAL TRANSACTION +18:22:27 Slot [429] | NOT FINANCIAL TRANSACTION +18:22:35 Slot [479] | NOT FINANCIAL TRANSACTION +18:22:42 Slot [395] | NOT FINANCIAL TRANSACTION +18:22:54 Slot [489] | NOT FINANCIAL TRANSACTION +18:23:05 Slot [400] | NOT FINANCIAL TRANSACTION +18:23:10 Slot [424] | NOT FINANCIAL TRANSACTION +18:23:25 Slot [419] | NOT FINANCIAL TRANSACTION +18:23:27 Slot [433] | NOT FINANCIAL TRANSACTION +18:23:30 +Slot[450] 0200 010000 6213541000288434 ------------- 00 895979 000100000000 507700844583030150036213541000288434 507700844583 129457 668899 S +18:23:34 Slot [478] | NOT FINANCIAL TRANSACTION +18:23:35 Slot [459] | NOT FINANCIAL TRANSACTION +18:23:46 Slot [490] | NOT FINANCIAL TRANSACTION +18:23:50 +Slot[467] 0200 010000 6213544001117412 ------------- 00 895994 000070000000 507702380090030200296213544001117412 507702380090 003058 668899 S +18:23:58 Slot [483] | NOT FINANCIAL TRANSACTION +18:24:07 Slot [368] | NOT FINANCIAL TRANSACTION +18:24:09 Slot [453] | NOT FINANCIAL TRANSACTION +18:24:13 +Slot[427] 0200 011000 6213544001226528 ------------- 00 261976 000020000000 5077112619760301LPBX6213544001226528 507711261976 843396 180893 S +18:24:17 +Slot[482] 0200 300000 6213545000987440 ------------- 00 896012 000000000000 507702415225030010116213545000987440 507702415225 989092 668899 S +18:24:25 Slot [472] | NOT FINANCIAL TRANSACTION +18:24:29 +Slot[474] 0200 010000 6213541000599137 ------------- 00 896020 000050000000 507701541268030200166213541000599137 507701541268 618239 668899 S +18:24:30 +Slot[403] 0200 010000 6213544001738324 ------------- 00 261980 000100000000 5077112619800344SVKV6213544001738324 507711261980 438978 180893 S +18:24:32 Slot [485] | NOT FINANCIAL TRANSACTION +18:24:41 Slot [444] | NOT FINANCIAL TRANSACTION +18:24:45 +Slot[442] 0200 011000 6688990050011566 ------------- 00 261982 000004000000 5077112619820102SAPA6688990050011566 507711261982 246695 180893 S +18:24:57 Slot [449] | NOT FINANCIAL TRANSACTION +18:25:07 Slot [487] | NOT FINANCIAL TRANSACTION +18:25:08 +Slot[426] 0200 300000 6213545000987440 ------------- 00 896042 000000000000 507702415227030010116213545000987440 507702415227 905671 668899 S +18:25:09 Slot [440] | NOT FINANCIAL TRANSACTION +18:25:18 Slot [389] | NOT FINANCIAL TRANSACTION +18:25:23 Slot [411] | NOT FINANCIAL TRANSACTION +18:25:34 Slot [469] | NOT FINANCIAL TRANSACTION +18:25:37 Slot [450] | NOT FINANCIAL TRANSACTION +18:25:45 Slot [468] | NOT FINANCIAL TRANSACTION +18:25:56 Slot [396] | NOT FINANCIAL TRANSACTION +18:26:06 Slot [491] | NOT FINANCIAL TRANSACTION +18:26:11 Slot [461] | NOT FINANCIAL TRANSACTION +18:26:20 +Slot[498] 0200 011000 6688990106675604 ------------- 00 261989 000008000000 5077112619890102SAPA6688990106675604 507711261989 444400 180893 S +18:26:27 +Slot[407] 0200 010000 6213544001860805 ------------- 00 896089 000010000000 507701972136030120036213544001860805 507701972136 024500 668899 S +18:26:31 +Slot[446] 0200 010000 6688990040034140 ------------- 00 450504 000010000000 507703969056010112006688990040034140 507703969056 821719 621354 S +18:26:33 Slot [471] | NOT FINANCIAL TRANSACTION +18:26:42 Slot [476] | NOT FINANCIAL TRANSACTION +18:26:43 Slot [460] | NOT FINANCIAL TRANSACTION +18:26:45 +Slot[436] 0200 301000 6213545000653489 ------------- 00 261991 031811254826 5077112619910361BLTB6213545000653489 507711261991 342342 180893 S +18:26:56 Slot [2] | NOT FINANCIAL TRANSACTION +18:27:06 Slot [438] | NOT FINANCIAL TRANSACTION +18:27:13 Slot [497] | NOT FINANCIAL TRANSACTION +18:27:17 +Slot[464] 0200 301000 6688990040005637 ------------- 00 450653 000000000000 507704964614150011006688990040005637 507704964614 453209 621354 S +18:27:21 Slot [495] | NOT FINANCIAL TRANSACTION +18:27:32 +Slot[409] 0200 012000 6213544001799573 ------------- 00 305666 000100000000 507700079250010007006213544001799573 507700079250 610087 220699 S +18:27:32 Slot [470] | NOT FINANCIAL TRANSACTION +18:27:35 Slot [451] | NOT FINANCIAL TRANSACTION +18:27:47 Slot [492] | NOT FINANCIAL TRANSACTION +18:27:48 Slot [454] | NOT FINANCIAL TRANSACTION +18:28:03 Slot [477] | NOT FINANCIAL TRANSACTION +18:28:14 Slot [480] | NOT FINANCIAL TRANSACTION +18:28:15 Slot [24] | NOT FINANCIAL TRANSACTION +18:28:20 +Slot[457] 0200 011000 6688990040005637 ------------- 00 450856 000005000000 507704964616150011006688990040005637 507704964616 555933 621354 S +18:28:26 Slot [484] | NOT FINANCIAL TRANSACTION +18:28:27 +Slot[390] 0200 010000 6688990105481301 ------------- 00 450876 000002000000 507703061918010086006688990105481301 507703061918 928091 621354 S +18:28:41 Slot [466] | NOT FINANCIAL TRANSACTION +18:28:52 Slot [22] | NOT FINANCIAL TRANSACTION +18:28:52 Slot [432] | NOT FINANCIAL TRANSACTION +18:29:00 +Slot[458] 0200 300000 6688990107909200 ------------- 00 450978 000000000000 507704794968070015006688990107909200 507704794968 827437 621354 S +18:29:00 +Slot[493] 0200 010000 6213544001829792 ------------- 00 896176 000100000000 507701196678030200116213544001829792 507701196678 018520 668899 S +18:29:03 +Slot[481] 0200 300000 6213548000475440 ------------- 55 896182 000000000000 507700136523030200046213548000475440 507700136523 554121 668899 S +18:29:04 +Slot[0] 0200 300000 6213548000040079 ------------- 00 896183 000000000000 507700622623030070026213548000040079 507700622623 200706 668899 S +18:29:07 Slot [455] | NOT FINANCIAL TRANSACTION +18:29:17 Slot [3] | NOT FINANCIAL TRANSACTION +18:29:18 Slot [16] | NOT FINANCIAL TRANSACTION +18:29:28 Slot [4] | NOT FINANCIAL TRANSACTION +18:29:39 Slot [1] | NOT FINANCIAL TRANSACTION +18:29:50 Slot [21] | NOT FINANCIAL TRANSACTION +18:29:57 Slot [5] | NOT FINANCIAL TRANSACTION +18:30:01 Slot [26] | NOT FINANCIAL TRANSACTION +18:30:02 +Slot[15] 0200 010000 6213545000253322 ------------- 00 896205 000020000000 507702730323030130056213545000253322 507702730323 654510 668899 S +18:30:11 Slot [496] | NOT FINANCIAL TRANSACTION +18:30:18 Slot [23] | NOT FINANCIAL TRANSACTION +18:30:19 Slot [12] | NOT FINANCIAL TRANSACTION +18:30:22 Slot [486] | NOT FINANCIAL TRANSACTION +18:30:37 Slot [473] | NOT FINANCIAL TRANSACTION +18:30:48 Slot [6] | NOT FINANCIAL TRANSACTION +18:30:53 +Slot[10] 0200 301000 1808930700049331 ------------- 00 896236 000000000000 507701841162030090041808930700049331 507701841162 473009 668899 S +18:31:02 Slot [11] | NOT FINANCIAL TRANSACTION +18:31:03 Slot [9] | NOT FINANCIAL TRANSACTION +18:31:07 +Slot[499] 0200 011000 6688990602677906 ------------- 00 451449 000100000000 507704153314200010006688990602677906 507704153314 925623 621354 S +18:31:12 +Slot[488] 0200 011000 6230200350431511 ------------- 91 009171 000100000000 507700213175050001006230200350431511 507700213175 272468 220699 S +18:31:14 Slot [7] | NOT FINANCIAL TRANSACTION +18:31:21 Slot [27] | NOT FINANCIAL TRANSACTION +18:31:29 Slot [56] | NOT FINANCIAL TRANSACTION +18:31:44 Slot [46] | NOT FINANCIAL TRANSACTION +18:31:59 +Slot[30] 0200 010000 6688990105321507 ------------- 00 451603 000030000000 507704421140030041006688990105321507 507704421140 737147 621354 S +18:32:00 +Slot[18] 0200 010000 1808930700049331 ------------- 00 896264 000020000000 507701841164030090041808930700049331 507701841164 881969 668899 S +18:32:07 Slot [14] | NOT FINANCIAL TRANSACTION +18:32:08 Slot [28] | NOT FINANCIAL TRANSACTION +18:32:17 +Slot[42] 0200 011000 6688990602677906 ------------- 00 451661 000100000000 507704153316200010006688990602677906 507704153316 361026 621354 S +18:32:21 Slot [38] | NOT FINANCIAL TRANSACTION +18:32:23 Slot [20] | NOT FINANCIAL TRANSACTION +18:32:32 Slot [34] | NOT FINANCIAL TRANSACTION +18:32:35 Slot [32] | NOT FINANCIAL TRANSACTION +18:32:38 +Slot[8] 0200 011000 6230200350431511 ------------- 91 009174 000050000000 507700213177050001006230200350431511 507700213177 736315 220699 S +18:32:44 Slot [36] | NOT FINANCIAL TRANSACTION +18:32:54 Slot [52] | NOT FINANCIAL TRANSACTION +18:33:04 Slot [41] | NOT FINANCIAL TRANSACTION +18:33:11 +Slot[47] 0200 010000 6213545000561955 ------------- 00 896298 000100000000 507701955455030200186213545000561955 507701955455 196342 668899 S +18:33:12 Slot [19] | NOT FINANCIAL TRANSACTION +18:33:15 Slot [13] | NOT FINANCIAL TRANSACTION +18:33:25 Slot [40] | NOT FINANCIAL TRANSACTION +18:33:32 Slot [54] | NOT FINANCIAL TRANSACTION +18:33:45 Slot [37] | NOT FINANCIAL TRANSACTION +18:33:54 +Slot[57] 0200 011000 6688990602677906 ------------- 00 451961 000100000000 507704153318200010006688990602677906 507704153318 295390 621354 S +18:33:55 Slot [51] | NOT FINANCIAL TRANSACTION +18:34:10 Slot [55] | NOT FINANCIAL TRANSACTION +18:34:17 Slot [31] | NOT FINANCIAL TRANSACTION +18:34:20 Slot [61] | NOT FINANCIAL TRANSACTION +18:34:20 Slot [60] | NOT FINANCIAL TRANSACTION +18:34:27 +Slot[29] 0200 012000 6688990040030692 ------------- 00 452036 000005000000 507704227173050046006688990040030692 507704227173 139072 621354 S +18:34:27 Slot [44] | NOT FINANCIAL TRANSACTION +18:34:37 +Slot[17] 0200 011000 1808930600003230 ------------- 00 452072 000050000000 507704350639030034001808930600003230 507704350639 655678 621354 S +18:34:41 Slot [48] | NOT FINANCIAL TRANSACTION +18:34:47 +Slot[63] 0200 301000 6213544000685567 ------------- 00 262013 031811335026 5077112620130104NUOL6213544000685567 507711262013 514524 180893 S +18:34:56 Slot [59] | NOT FINANCIAL TRANSACTION +18:35:06 +Slot[72] 0200 300000 6688990103608301 ------------- 00 452130 000000000000 507705291195200014006688990103608301 507705291195 611004 621354 S +18:35:07 Slot [35] | NOT FINANCIAL TRANSACTION +18:35:17 Slot [71] | NOT FINANCIAL TRANSACTION +18:35:22 Slot [53] | NOT FINANCIAL TRANSACTION +18:35:22 Slot [80] | NOT FINANCIAL TRANSACTION +18:35:27 +Slot[39] 0200 011000 6688990602677906 ------------- 00 452196 000085000000 507704153320200010006688990602677906 507704153320 239830 621354 S +18:35:29 Slot [49] | NOT FINANCIAL TRANSACTION +18:35:32 Slot [25] | NOT FINANCIAL TRANSACTION +18:35:47 Slot [79] | NOT FINANCIAL TRANSACTION +18:35:48 Slot [68] | NOT FINANCIAL TRANSACTION +18:35:59 +Slot[85] 0200 010000 6213545001056062 ------------- 00 896361 000032000000 507701350488032080016213545001056062 507701350488 249723 668899 S +18:36:03 Slot [494] | NOT FINANCIAL TRANSACTION +18:36:18 Slot [43] | NOT FINANCIAL TRANSACTION +18:36:27 Slot [91] | NOT FINANCIAL TRANSACTION +18:36:28 Slot [77] | NOT FINANCIAL TRANSACTION +18:36:31 Slot [75] | NOT FINANCIAL TRANSACTION +18:36:39 Slot [89] | NOT FINANCIAL TRANSACTION +18:36:55 Slot [65] | NOT FINANCIAL TRANSACTION +18:37:06 Slot [88] | NOT FINANCIAL TRANSACTION +18:37:17 Slot [76] | NOT FINANCIAL TRANSACTION +18:37:30 +Slot[66] 0200 301000 2206990000124107 ------------- 00 452494 000000000000 507703795968010095002206990000124107 507703795968 081057 621354 S +18:37:32 Slot [33] | NOT FINANCIAL TRANSACTION +18:37:32 Slot [101] | NOT FINANCIAL TRANSACTION +18:37:33 Slot [86] | NOT FINANCIAL TRANSACTION +18:37:35 Slot [94] | NOT FINANCIAL TRANSACTION +18:37:43 Slot [58] | NOT FINANCIAL TRANSACTION +18:37:53 Slot [105] | NOT FINANCIAL TRANSACTION +18:38:04 Slot [102] | NOT FINANCIAL TRANSACTION +18:38:19 Slot [93] | NOT FINANCIAL TRANSACTION +18:38:26 +Slot[81] 0200 010000 6213541000495765 ------------- 00 262019 000050000000 5077112620190104NUOL6213541000495765 507711262019 217537 180893 S +18:38:35 Slot [95] | NOT FINANCIAL TRANSACTION +18:38:37 Slot [92] | NOT FINANCIAL TRANSACTION +18:38:37 Slot [74] | NOT FINANCIAL TRANSACTION +18:38:51 +Slot[45] 0200 011000 1808930300041985 ------------- 00 452707 000010000000 507703907328010106001808930300041985 507703907328 177293 621354 S +18:38:59 Slot [103] | NOT FINANCIAL TRANSACTION +18:39:14 Slot [107] | NOT FINANCIAL TRANSACTION +18:39:20 +Slot[114] 0200 301000 6213548000248607 ------------- 00 896429 000000000000 507700977142034070026213548000248607 507700977142 271889 668899 S +18:39:25 Slot [104] | NOT FINANCIAL TRANSACTION +18:39:36 Slot [67] | NOT FINANCIAL TRANSACTION +18:39:37 Slot [100] | NOT FINANCIAL TRANSACTION +18:39:42 Slot [82] | NOT FINANCIAL TRANSACTION +18:39:49 +Slot[87] 0200 301000 6213545000676738 ------------- 00 896446 000000000000 507702092882030200216213545000676738 507702092882 420480 668899 S +18:39:50 +Slot[69] 0200 301000 1808930300041985 ------------- 00 452868 000000000000 507703907329010106001808930300041985 507703907329 581898 621354 S +18:39:56 Slot [117] | NOT FINANCIAL TRANSACTION +18:40:01 +Slot[122] 0200 010000 6213548000248607 ------------- 51 896452 000030000000 507700977143034070026213548000248607 507700977143 151154 668899 S +18:40:07 Slot [108] | NOT FINANCIAL TRANSACTION +18:40:16 +Slot[119] 0200 010000 6213544001239851 ------------- 00 896457 000050000000 507702133384030200236213544001239851 507702133384 004088 668899 S +18:40:17 Slot [115] | NOT FINANCIAL TRANSACTION +18:40:22 Slot [73] | NOT FINANCIAL TRANSACTION +18:40:26 +Slot[83] 0200 011000 2206990000108894 ------------- 00 452966 000020000000 507702747126010068002206990000108894 507702747126 553478 621354 S +18:40:33 Slot [110] | NOT FINANCIAL TRANSACTION +18:40:39 Slot [113] | NOT FINANCIAL TRANSACTION +18:40:40 +Slot[64] 0200 011000 2206990000108753 ------------- 00 453009 000005000000 507702545142050037002206990000108753 507702545142 152668 621354 S +18:40:45 Slot [62] | NOT FINANCIAL TRANSACTION +18:40:47 Slot [98] | NOT FINANCIAL TRANSACTION +18:40:48 +Slot[97] 0200 010000 6213548000248607 ------------- 00 896474 000025000000 507700977144034070026213548000248607 507700977144 791876 668899 S +18:41:01 Slot [84] | NOT FINANCIAL TRANSACTION +18:41:18 Slot [121] | NOT FINANCIAL TRANSACTION +18:41:26 +Slot[90] 0200 301000 2206990000108753 ------------- 00 453112 000000000000 507702545143050037002206990000108753 507702545143 795034 621354 S +18:41:30 Slot [159] | NOT FINANCIAL TRANSACTION +18:41:41 Slot [134] | NOT FINANCIAL TRANSACTION +18:41:41 Slot [99] | NOT FINANCIAL TRANSACTION +18:41:52 Slot [144] | NOT FINANCIAL TRANSACTION +18:41:56 Slot [124] | NOT FINANCIAL TRANSACTION +18:42:07 Slot [148] | NOT FINANCIAL TRANSACTION +18:42:21 Slot [111] | NOT FINANCIAL TRANSACTION +18:42:32 Slot [149] | NOT FINANCIAL TRANSACTION +18:42:35 Slot [112] | NOT FINANCIAL TRANSACTION +18:42:43 Slot [109] | NOT FINANCIAL TRANSACTION +18:42:43 Slot [126] | NOT FINANCIAL TRANSACTION +18:42:46 +Slot[140] 0200 011000 6213544001640306 ------------- 00 010347 000030000000 507700220607050002006213544001640306 507700220607 565192 220699 S +18:42:53 +Slot[78] 0200 300000 2206990000046474 ------------- 91 452988 000000000000 507703047785010084002206990000046474 507703047785 532583 621354 S +18:42:53 Slot [131] | NOT FINANCIAL TRANSACTION +18:42:56 +Slot[50] 0200 012000 6688990602095604 ------------- 00 453334 000065000000 507704924193040039006688990602095604 507704924193 731750 621354 S +18:42:57 Slot [155] | NOT FINANCIAL TRANSACTION +18:43:04 Slot [151] | NOT FINANCIAL TRANSACTION +18:43:15 Slot [70] | NOT FINANCIAL TRANSACTION +18:43:31 Slot [139] | NOT FINANCIAL TRANSACTION +18:43:42 Slot [150] | NOT FINANCIAL TRANSACTION +18:43:45 Slot [154] | NOT FINANCIAL TRANSACTION +18:43:48 +Slot[123] 0200 301000 6688990600393001 ------------- 00 453494 000000000000 507704153321200010006688990600393001 507704153321 452586 621354 S +18:43:52 Slot [118] | NOT FINANCIAL TRANSACTION +18:43:53 +Slot[146] 0200 010000 6688990105591406 ------------- 00 453502 000040000000 507704903217020024006688990105591406 507704903217 473263 621354 S +18:44:02 Slot [157] | NOT FINANCIAL TRANSACTION +18:44:03 Slot [135] | NOT FINANCIAL TRANSACTION +18:44:18 Slot [152] | NOT FINANCIAL TRANSACTION +18:44:34 Slot [132] | NOT FINANCIAL TRANSACTION +18:44:41 +Slot[171] 0200 011000 6688990600393001 ------------- 00 453627 000020000000 507704153323200010006688990600393001 507704153323 204154 621354 S +18:44:47 Slot [96] | NOT FINANCIAL TRANSACTION +18:44:50 Slot [116] | NOT FINANCIAL TRANSACTION +18:44:52 +Slot[167] 0200 300000 6213541000696057 ------------- 00 896602 000000000000 507702336316032170026213541000696057 507702336316 644122 668899 S +18:45:00 Slot [136] | NOT FINANCIAL TRANSACTION +18:45:06 Slot [120] | NOT FINANCIAL TRANSACTION +18:45:07 Slot [141] | NOT FINANCIAL TRANSACTION +18:45:11 Slot [156] | NOT FINANCIAL TRANSACTION +18:45:17 Slot [130] | NOT FINANCIAL TRANSACTION +18:45:22 +Slot[174] 0200 301000 6688990105591406 ------------- 00 453746 000000000000 507704903218020024006688990105591406 507704903218 382684 621354 S +18:45:26 Slot [168] | NOT FINANCIAL TRANSACTION +18:45:36 Slot [160] | NOT FINANCIAL TRANSACTION +18:45:40 +Slot[129] 0200 010000 6213541000696057 ------------- 00 896625 000030000000 507702336317032170026213541000696057 507702336317 758851 668899 S +18:45:47 Slot [166] | NOT FINANCIAL TRANSACTION +18:45:49 Slot [164] | NOT FINANCIAL TRANSACTION +18:46:03 Slot [175] | NOT FINANCIAL TRANSACTION +18:46:08 +Slot[169] 0200 301000 2206990000096503 ------------- 00 262042 031811450926 5077112620420363CPSH2206990000096503 507711262042 712393 180893 S +18:46:12 Slot [147] | NOT FINANCIAL TRANSACTION +18:46:19 Slot [178] | NOT FINANCIAL TRANSACTION +18:46:30 +Slot[133] 0200 301000 6213545000711188 ------------- 00 262043 031811453226 5077112620430363CPSH6213545000711188 507711262043 975181 180893 S +18:46:41 Slot [195] | NOT FINANCIAL TRANSACTION +18:46:51 Slot [128] | NOT FINANCIAL TRANSACTION +18:46:55 Slot [183] | NOT FINANCIAL TRANSACTION +18:46:58 +Slot[189] 0200 301000 2206990000096503 ------------- 00 262045 031811460026 5077112620450363CPSH2206990000096503 507711262045 888474 180893 S +18:46:59 +Slot[142] 0200 011000 6213544001834354 ------------- 00 170396 000020000000 507718170396000022226213544001834354 507718170396 038942 198901 S +18:47:11 Slot [191] | NOT FINANCIAL TRANSACTION +18:47:17 Slot [125] | NOT FINANCIAL TRANSACTION +18:47:23 +Slot[127] 0200 301000 2206990000096503 ------------- 00 262047 031811462526 5077112620470363CPSH2206990000096503 507711262047 258978 180893 S +18:47:29 +Slot[181] 0200 010000 6213543000185321 ------------- 00 896652 000030000000 507701506308036140016213543000185321 507701506308 671438 668899 S +18:47:33 Slot [182] | NOT FINANCIAL TRANSACTION +18:47:34 +Slot[138] 0200 010000 6213548000386431 ------------- 00 896655 000010000000 507701311567030060056213548000386431 507701311567 764410 668899 S +18:47:36 Slot [213] | NOT FINANCIAL TRANSACTION +18:47:49 Slot [158] | NOT FINANCIAL TRANSACTION +18:47:53 Slot [200] | NOT FINANCIAL TRANSACTION +18:47:56 +Slot[198] 0200 010000 2206990000096503 ------------- 00 262051 000150000000 5077112620510363CPSH2206990000096503 507711262051 494865 180893 S +18:48:04 Slot [177] | NOT FINANCIAL TRANSACTION +18:48:20 Slot [153] | NOT FINANCIAL TRANSACTION +18:48:22 Slot [165] | NOT FINANCIAL TRANSACTION +18:48:30 Slot [210] | NOT FINANCIAL TRANSACTION +18:48:38 +Slot[187] 0200 010000 6213544001975413 ------------- 00 410497 000100000000 507700135017010012006213544001975413 507700135017 163674 123401 S +18:48:39 +Slot[211] 0200 010000 6688990050021904 ------------- 00 262055 000010000000 5077112620550102SAPA6688990050021904 507711262055 739108 180893 S +18:48:41 +Slot[106] 0200 011000 6688990040072892 ------------- 00 454324 000020000000 507703969106010112006688990040072892 507703969106 877634 621354 S +18:48:50 Slot [162] | NOT FINANCIAL TRANSACTION +18:48:55 Slot [163] | NOT FINANCIAL TRANSACTION +18:49:00 Slot [172] | NOT FINANCIAL TRANSACTION +18:49:01 +Slot[206] 0200 310000 6213544001171112 ------------- 55 021048 000000000000 507700263040010014006213544001171112 507700263040 452154 220699 S +18:49:11 Slot [217] | NOT FINANCIAL TRANSACTION +18:49:22 Slot [145] | NOT FINANCIAL TRANSACTION +18:49:27 Slot [180] | NOT FINANCIAL TRANSACTION +18:49:33 Slot [194] | NOT FINANCIAL TRANSACTION +18:49:35 +Slot[196] 0200 011000 6213544001171112 ------------- 00 021051 000010000000 507700263042010014006213544001171112 507700263042 095698 220699 S +18:49:40 +Slot[190] 0200 010000 6213545000780050 ------------- 00 896688 000050000000 507702209656030060096213545000780050 507702209656 626316 668899 S +18:49:44 Slot [184] | NOT FINANCIAL TRANSACTION +18:49:48 +Slot[222] 0200 301000 6688990602156505 ------------- 00 454509 000000000000 507703969107010112006688990602156505 507703969107 156951 621354 S +18:49:55 Slot [214] | NOT FINANCIAL TRANSACTION +18:49:55 +Slot[226] 0200 011000 6688990040054676 ------------- 00 454521 000020000000 507703623427160015006688990040054676 507703623427 392309 621354 S +18:49:57 Slot [218] | NOT FINANCIAL TRANSACTION +18:50:17 +Slot[225] 0200 011000 1808930600003727 ------------- 00 454591 000010000000 507705056239030043001808930600003727 507705056239 457042 621354 S +18:50:17 Slot [170] | NOT FINANCIAL TRANSACTION +18:50:20 Slot [173] | NOT FINANCIAL TRANSACTION +18:50:31 Slot [176] | NOT FINANCIAL TRANSACTION +18:50:32 Slot [207] | NOT FINANCIAL TRANSACTION +18:50:42 Slot [223] | NOT FINANCIAL TRANSACTION +18:50:52 Slot [231] | NOT FINANCIAL TRANSACTION +18:50:59 Slot [224] | NOT FINANCIAL TRANSACTION +18:51:05 Slot [221] | NOT FINANCIAL TRANSACTION +18:51:18 Slot [143] | NOT FINANCIAL TRANSACTION +18:51:29 Slot [161] | NOT FINANCIAL TRANSACTION +18:51:36 +Slot[208] 0200 301000 6213544001547113 ------------- 00 262069 031811503926 5077112620690324BKDT6213544001547113 507711262069 954389 180893 S +18:51:37 Slot [192] | NOT FINANCIAL TRANSACTION +18:51:40 +Slot[188] 0200 010000 6213541000686546 ------------- 00 896735 000030000000 507702475486030200326213541000686546 507702475486 157628 668899 S +18:51:44 Slot [202] | NOT FINANCIAL TRANSACTION +18:51:55 +Slot[197] 0200 010000 1808930300006608 ------------- 00 454902 000100000000 507702834546010077001808930300006608 507702834546 054557 621354 S +18:51:59 +Slot[204] 0200 012000 6213548000189447 ------------- 00 262074 000010000000 5077112620740545SSVS6213548000189447 507711262074 277730 180893 S +18:52:01 Slot [230] | NOT FINANCIAL TRANSACTION +18:52:05 +Slot[185] 0200 011000 6213544001002929 ------------- 51 170480 000010000000 507718170480015290316213544001002929 507718170480 253770 198901 S +18:52:10 Slot [199] | NOT FINANCIAL TRANSACTION +18:52:15 +Slot[220] 0200 011000 6213544001547113 ------------- 51 262078 000005000000 5077112620780324BKDT6213544001547113 507711262078 226621 180893 S +18:52:27 Slot [212] | NOT FINANCIAL TRANSACTION +18:52:30 Slot [186] | NOT FINANCIAL TRANSACTION +18:52:31 +Slot[179] 0200 010000 6213545001076730 ------------- 00 896754 000020000000 507702362804030160036213545001076730 507702362804 763950 668899 S +18:52:36 Slot [232] | NOT FINANCIAL TRANSACTION +18:52:42 Slot [193] | NOT FINANCIAL TRANSACTION +18:52:44 Slot [216] | NOT FINANCIAL TRANSACTION +18:52:59 Slot [227] | NOT FINANCIAL TRANSACTION +18:53:03 Slot [234] | NOT FINANCIAL TRANSACTION +18:53:09 Slot [242] | NOT FINANCIAL TRANSACTION +18:53:25 Slot [235] | NOT FINANCIAL TRANSACTION +18:53:35 Slot [219] | NOT FINANCIAL TRANSACTION +18:53:47 Slot [250] | NOT FINANCIAL TRANSACTION +18:53:47 Slot [239] | NOT FINANCIAL TRANSACTION +18:54:02 Slot [201] | NOT FINANCIAL TRANSACTION +18:54:05 Slot [245] | NOT FINANCIAL TRANSACTION +18:54:12 Slot [238] | NOT FINANCIAL TRANSACTION +18:54:18 +Slot[228] 0200 012000 6688990600225005 ------------- 55 455248 000100000000 507702971993120020006688990600225005 507702971993 049073 621354 S +18:54:24 Slot [203] | NOT FINANCIAL TRANSACTION +18:54:34 Slot [205] | NOT FINANCIAL TRANSACTION +18:54:45 Slot [258] | NOT FINANCIAL TRANSACTION +18:54:52 Slot [244] | NOT FINANCIAL TRANSACTION +18:55:00 Slot [247] | NOT FINANCIAL TRANSACTION +18:55:07 Slot [253] | NOT FINANCIAL TRANSACTION +18:55:09 +Slot[243] 0200 010000 6213541000124662 ------------- 00 410502 000100000000 507700413116010029006213541000124662 507700413116 728609 123401 S +18:55:11 Slot [273] | NOT FINANCIAL TRANSACTION +18:55:17 Slot [137] | NOT FINANCIAL TRANSACTION +18:55:21 Slot [260] | NOT FINANCIAL TRANSACTION +18:55:36 Slot [251] | NOT FINANCIAL TRANSACTION +18:55:40 +Slot[215] 0200 010000 2206990000115550 ------------- 00 262088 000150000000 5077112620880371ATPX2206990000115550 507711262088 647765 180893 S +18:55:49 +Slot[265] 0200 010000 6213544001400826 ------------- 00 896850 000030000000 507702092895030200216213544001400826 507702092895 510630 668899 S +18:55:52 Slot [233] | NOT FINANCIAL TRANSACTION +18:55:54 +Slot[249] 0200 301000 6213544000467677 ------------- 00 262089 031811545526 5077112620890401XSBR6213544000467677 507711262089 553853 180893 S +18:55:59 Slot [264] | NOT FINANCIAL TRANSACTION +18:56:03 Slot [209] | NOT FINANCIAL TRANSACTION +18:56:09 Slot [229] | NOT FINANCIAL TRANSACTION +18:56:13 Slot [279] | NOT FINANCIAL TRANSACTION +18:56:17 +Slot[262] 0200 010000 6213548000244333 ------------- 00 896873 000035000000 507702475488030200326213548000244333 507702475488 664926 668899 S +18:56:24 Slot [270] | NOT FINANCIAL TRANSACTION +18:56:35 Slot [236] | NOT FINANCIAL TRANSACTION +18:56:46 Slot [280] | NOT FINANCIAL TRANSACTION +18:56:57 Slot [267] | NOT FINANCIAL TRANSACTION +18:57:04 Slot [278] | NOT FINANCIAL TRANSACTION +18:57:06 +Slot[263] 0200 011000 6213544000467677 ------------- 00 262094 000010000000 5077112620940401XSBR6213544000467677 507711262094 561356 180893 S +18:57:11 Slot [257] | NOT FINANCIAL TRANSACTION +18:57:19 Slot [277] | NOT FINANCIAL TRANSACTION +18:57:29 Slot [293] | NOT FINANCIAL TRANSACTION +18:57:33 +Slot[266] 0200 011000 2206990000115550 ------------- 00 262097 000140000000 5077112620970371ATPX2206990000115550 507711262097 230954 180893 S +18:57:36 Slot [254] | NOT FINANCIAL TRANSACTION +18:57:44 Slot [248] | NOT FINANCIAL TRANSACTION +18:58:00 Slot [275] | NOT FINANCIAL TRANSACTION +18:58:09 Slot [287] | NOT FINANCIAL TRANSACTION +18:58:10 Slot [304] | NOT FINANCIAL TRANSACTION +18:58:13 Slot [281] | NOT FINANCIAL TRANSACTION +18:58:19 +Slot[296] 0200 011000 6213544000467677 ------------- 51 262102 000005000000 5077112621020401XSBR6213544000467677 507711262102 275745 180893 S +18:58:31 Slot [294] | NOT FINANCIAL TRANSACTION +18:58:42 +Slot[259] 0200 301000 2206990000115550 ------------- 00 262104 031811574426 5077112621040371ATPX2206990000115550 507711262104 820422 180893 S +18:58:53 Slot [252] | NOT FINANCIAL TRANSACTION +18:59:03 Slot [286] | NOT FINANCIAL TRANSACTION +18:59:13 Slot [298] | NOT FINANCIAL TRANSACTION +18:59:14 Slot [240] | NOT FINANCIAL TRANSACTION +18:59:15 Slot [303] | NOT FINANCIAL TRANSACTION +18:59:24 +Slot[317] 0200 011000 2206990000115550 ------------- 00 262108 000050000000 5077112621080371ATPX2206990000115550 507711262108 544176 180893 S +18:59:30 +Slot[282] 0200 011000 6688990106537903 ------------- 00 262110 000020000000 5077112621100102SAPA6688990106537903 507711262110 410571 180893 S +18:59:39 Slot [307] | NOT FINANCIAL TRANSACTION +18:59:41 +Slot[271] 0200 301000 6213544002183231 ------------- 00 262112 031811584426 5077112621120121SKBR6213544002183231 507711262112 999912 180893 S +19:00:44 Starting TRANSACTION PARTICULARS [6539] + +19:00:52 Slot [0] | NOT FINANCIAL TRANSACTION +19:00:52 Slot [1] | NOT FINANCIAL TRANSACTION +19:00:53 Slot [2] | NOT FINANCIAL TRANSACTION +19:00:56 Slot [3] | NOT FINANCIAL TRANSACTION +19:01:02 Slot [5] | NOT FINANCIAL TRANSACTION +19:01:04 Slot [6] | NOT FINANCIAL TRANSACTION +19:03:25 Starting TRANSACTION PARTICULARS [7376] + +19:03:37 Slot [0] | NOT FINANCIAL TRANSACTION +19:03:40 Slot [1] | NOT FINANCIAL TRANSACTION +19:03:54 Slot [2] | NOT FINANCIAL TRANSACTION +19:03:55 Slot [3] | NOT FINANCIAL TRANSACTION +19:04:11 Slot [5] | NOT FINANCIAL TRANSACTION +19:04:14 +Slot[4] 0200 010000 6688990102374202 ------------- 00 456738 000010000000 507703750416010091006688990102374202 507703750416 937303 621354 S +19:04:22 Slot [6] | NOT FINANCIAL TRANSACTION +19:04:33 Slot [7] | NOT FINANCIAL TRANSACTION +19:04:39 Slot [8] | NOT FINANCIAL TRANSACTION +19:04:44 Slot [9] | NOT FINANCIAL TRANSACTION +19:04:45 Slot [10] | NOT FINANCIAL TRANSACTION +19:04:56 Slot [11] | NOT FINANCIAL TRANSACTION +19:04:57 Slot [12] | NOT FINANCIAL TRANSACTION +19:04:59 Slot [13] | NOT FINANCIAL TRANSACTION +19:05:11 Slot [14] | NOT FINANCIAL TRANSACTION +19:05:26 Slot [15] | NOT FINANCIAL TRANSACTION +19:05:32 +Slot[16] 0200 011000 6213544001757100 ------------- 00 170697 000010000000 507719170697015290026213544001757100 507719170697 296883 198901 S +19:05:38 Slot [17] | NOT FINANCIAL TRANSACTION +19:05:41 Slot [18] | NOT FINANCIAL TRANSACTION +19:05:48 Slot [19] | NOT FINANCIAL TRANSACTION +19:05:50 Slot [20] | NOT FINANCIAL TRANSACTION +19:05:58 Slot [22] | NOT FINANCIAL TRANSACTION +19:05:59 +Slot[21] 0200 011000 1808930200036788 ------------- 00 457052 000070000000 507703681242010088001808930200036788 507703681242 938350 621354 S +19:06:04 Slot [23] | NOT FINANCIAL TRANSACTION +19:06:14 Slot [24] | NOT FINANCIAL TRANSACTION +19:06:25 Slot [25] | NOT FINANCIAL TRANSACTION +19:06:40 Slot [26] | NOT FINANCIAL TRANSACTION +19:06:43 Slot [27] | NOT FINANCIAL TRANSACTION +19:06:50 Slot [28] | NOT FINANCIAL TRANSACTION +19:06:55 Slot [29] | NOT FINANCIAL TRANSACTION +19:07:05 Slot [30] | NOT FINANCIAL TRANSACTION +19:07:16 Slot [31] | NOT FINANCIAL TRANSACTION +19:07:27 Slot [32] | NOT FINANCIAL TRANSACTION +19:07:43 Slot [33] | NOT FINANCIAL TRANSACTION +19:07:45 Slot [34] | NOT FINANCIAL TRANSACTION +19:07:58 Slot [35] | NOT FINANCIAL TRANSACTION +19:08:00 Slot [36] | NOT FINANCIAL TRANSACTION +19:08:09 Slot [37] | NOT FINANCIAL TRANSACTION +19:08:22 +Slot[38] 0200 011000 1808930400013298 ------------- 00 457368 000020000000 507704468116150008001808930400013298 507704468116 943251 621354 S +19:08:30 Slot [39] | NOT FINANCIAL TRANSACTION +19:08:41 Slot [41] | NOT FINANCIAL TRANSACTION +19:08:47 Slot [42] | NOT FINANCIAL TRANSACTION +19:08:49 +Slot[40] 0200 010000 6688990040058529 ------------- 00 457439 000020000000 507703969149010112006688990040058529 507703969149 578974 621354 S +19:08:51 Slot [43] | NOT FINANCIAL TRANSACTION +19:09:02 Slot [44] | NOT FINANCIAL TRANSACTION +19:09:05 Slot [45] | NOT FINANCIAL TRANSACTION +19:09:12 Slot [46] | NOT FINANCIAL TRANSACTION +19:09:18 Slot [47] | NOT FINANCIAL TRANSACTION +19:09:28 Slot [48] | NOT FINANCIAL TRANSACTION +19:09:38 Slot [49] | NOT FINANCIAL TRANSACTION +19:09:49 Slot [50] | NOT FINANCIAL TRANSACTION +19:09:53 Slot [51] | NOT FINANCIAL TRANSACTION +19:09:57 Slot [52] | NOT FINANCIAL TRANSACTION +19:10:04 Slot [54] | NOT FINANCIAL TRANSACTION +19:10:10 Slot [55] | NOT FINANCIAL TRANSACTION +19:10:11 +Slot[53] 0200 010000 1888880000062133 ------------- 00 457600 000045000000 507703969151010112001888880000062133 507703969151 909205 621354 S +19:10:14 Slot [56] | NOT FINANCIAL TRANSACTION +19:10:26 Slot [57] | NOT FINANCIAL TRANSACTION +19:10:41 Slot [58] | NOT FINANCIAL TRANSACTION +19:10:51 Slot [59] | NOT FINANCIAL TRANSACTION +19:10:51 Slot [60] | NOT FINANCIAL TRANSACTION +19:10:59 Slot [61] | NOT FINANCIAL TRANSACTION +19:11:03 Slot [62] | NOT FINANCIAL TRANSACTION +19:11:13 Slot [64] | NOT FINANCIAL TRANSACTION +19:11:15 Slot [65] | NOT FINANCIAL TRANSACTION +19:11:21 +Slot[63] 0200 010000 6688990102906003 ------------- 00 457747 000100000000 507704964642150011006688990102906003 507704964642 092502 621354 S +19:11:23 Slot [66] | NOT FINANCIAL TRANSACTION +19:11:34 Slot [67] | NOT FINANCIAL TRANSACTION +19:11:45 Slot [68] | NOT FINANCIAL TRANSACTION +19:11:53 Slot [69] | NOT FINANCIAL TRANSACTION +19:11:56 Slot [70] | NOT FINANCIAL TRANSACTION +19:12:07 +Slot[71] 0200 010000 2206990000104893 ------------- 00 897150 000050000000 507702031553030180032206990000104893 507702031553 329521 668899 S +19:12:07 Slot [72] | NOT FINANCIAL TRANSACTION +19:12:18 Slot [73] | NOT FINANCIAL TRANSACTION +19:12:20 Slot [74] | NOT FINANCIAL TRANSACTION +19:12:28 Slot [75] | NOT FINANCIAL TRANSACTION +19:12:39 Slot [77] | NOT FINANCIAL TRANSACTION +19:12:39 +Slot[76] 0200 010000 6688990102906003 ------------- 00 457928 000100000000 507704964644150011006688990102906003 507704964644 426974 621354 S +19:12:54 Slot [79] | NOT FINANCIAL TRANSACTION +19:12:55 Slot [78] | NOT FINANCIAL TRANSACTION +19:13:04 Slot [80] | NOT FINANCIAL TRANSACTION +19:13:15 Slot [81] | NOT FINANCIAL TRANSACTION +19:13:25 Slot [82] | NOT FINANCIAL TRANSACTION +19:13:26 Slot [83] | NOT FINANCIAL TRANSACTION +19:13:36 Slot [84] | NOT FINANCIAL TRANSACTION +19:13:47 Slot [86] | NOT FINANCIAL TRANSACTION +19:13:48 +Slot[85] 0200 010000 6688990102906003 ------------- 00 458136 000100000000 507704964646150011006688990102906003 507704964646 350309 621354 S +19:13:51 Slot [88] | NOT FINANCIAL TRANSACTION +19:13:56 +Slot[87] 0200 010000 2206990000119578 ------------- 00 897166 000050000000 507702031555030180032206990000119578 507702031555 384449 668899 S +19:13:57 Slot [89] | NOT FINANCIAL TRANSACTION +19:14:02 Slot [90] | NOT FINANCIAL TRANSACTION +19:14:12 Slot [91] | NOT FINANCIAL TRANSACTION +19:14:23 Slot [92] | NOT FINANCIAL TRANSACTION +19:14:30 Slot [93] | NOT FINANCIAL TRANSACTION +19:14:33 Slot [94] | NOT FINANCIAL TRANSACTION +19:14:43 +Slot[95] 0200 010000 6688990102906003 ------------- 00 458258 000100000000 507704964648150011006688990102906003 507704964648 407327 621354 S +19:14:45 Slot [96] | NOT FINANCIAL TRANSACTION +19:14:52 +Slot[97] 0200 300000 2206990000104893 ------------- 00 897183 000000000000 507702031557030180032206990000104893 507702031557 975742 668899 S +19:14:57 Slot [98] | NOT FINANCIAL TRANSACTION +19:14:59 Slot [99] | NOT FINANCIAL TRANSACTION +19:15:01 Slot [100] | NOT FINANCIAL TRANSACTION +19:15:17 Slot [101] | NOT FINANCIAL TRANSACTION +19:15:29 Slot [102] | NOT FINANCIAL TRANSACTION +19:15:35 Slot [103] | NOT FINANCIAL TRANSACTION +19:15:41 +Slot[105] 0200 302000 6688990602957704 ------------- 14 262146 031812144426 5077122621460369SLVL6688990602957704 507712262146 739731 180893 S +19:15:43 +Slot[104] 0200 010000 6688990102906003 ------------- 00 458405 000100000000 507704964650150011006688990102906003 507704964650 349730 621354 S +19:15:49 +Slot[106] 0200 010000 6213541000711898 ------------- 00 188917 000010000000 507700084288010008006213541000711898 507700084288 285138 220699 S +19:15:54 Slot [107] | NOT FINANCIAL TRANSACTION +19:15:59 Slot [108] | NOT FINANCIAL TRANSACTION +19:16:01 Slot [109] | NOT FINANCIAL TRANSACTION +19:16:09 Slot [110] | NOT FINANCIAL TRANSACTION +19:16:20 Slot [111] | NOT FINANCIAL TRANSACTION +19:16:31 Slot [112] | NOT FINANCIAL TRANSACTION +19:16:40 Slot [113] | NOT FINANCIAL TRANSACTION +19:16:46 Slot [114] | NOT FINANCIAL TRANSACTION +19:16:58 +Slot[115] 0200 010000 6688990602957704 ------------- 14 262149 000010000000 5077122621490369SLVL6688990602957704 507712262149 025519 180893 S +19:17:03 Slot [116] | NOT FINANCIAL TRANSACTION +19:17:07 Slot [117] | NOT FINANCIAL TRANSACTION +19:17:18 Slot [118] | NOT FINANCIAL TRANSACTION +19:17:29 Slot [119] | NOT FINANCIAL TRANSACTION +19:17:44 Slot [120] | NOT FINANCIAL TRANSACTION +19:17:45 Slot [121] | NOT FINANCIAL TRANSACTION +19:17:55 Slot [123] | NOT FINANCIAL TRANSACTION +19:17:56 +Slot[122] 0200 301000 6688990040164129 ------------- 00 458669 000000000000 507703969152010112006688990040164129 507703969152 011397 621354 S +19:18:05 Slot [124] | NOT FINANCIAL TRANSACTION +19:18:05 Slot [125] | NOT FINANCIAL TRANSACTION +19:18:16 Slot [126] | NOT FINANCIAL TRANSACTION +19:18:26 Slot [127] | NOT FINANCIAL TRANSACTION +19:18:36 Slot [128] | NOT FINANCIAL TRANSACTION +19:18:47 Slot [129] | NOT FINANCIAL TRANSACTION +19:18:50 Slot [130] | NOT FINANCIAL TRANSACTION +19:18:57 +Slot[131] 0200 011000 6688990040164129 ------------- 00 458778 000040000000 507703969154010112006688990040164129 507703969154 711040 621354 S +19:18:57 Slot [132] | NOT FINANCIAL TRANSACTION +19:19:07 Slot [133] | NOT FINANCIAL TRANSACTION +19:19:08 Slot [134] | NOT FINANCIAL TRANSACTION +19:19:19 Slot [135] | NOT FINANCIAL TRANSACTION +19:19:30 Slot [136] | NOT FINANCIAL TRANSACTION +19:19:41 Slot [137] | NOT FINANCIAL TRANSACTION +19:19:52 Slot [138] | NOT FINANCIAL TRANSACTION +19:19:55 Slot [139] | NOT FINANCIAL TRANSACTION +19:19:57 Slot [140] | NOT FINANCIAL TRANSACTION +19:20:07 Slot [141] | NOT FINANCIAL TRANSACTION +19:20:09 Slot [142] | NOT FINANCIAL TRANSACTION +19:20:18 Slot [143] | NOT FINANCIAL TRANSACTION +19:20:28 Slot [144] | NOT FINANCIAL TRANSACTION +19:20:39 Slot [146] | NOT FINANCIAL TRANSACTION +19:20:40 +Slot[145] 0200 011000 6688990102675103 ------------- 00 458964 000005000000 507703969156010112006688990102675103 507703969156 870157 621354 S +19:20:50 Slot [147] | NOT FINANCIAL TRANSACTION +19:20:59 Slot [149] | NOT FINANCIAL TRANSACTION +19:21:00 Slot [150] | NOT FINANCIAL TRANSACTION +19:21:01 Slot [151] | NOT FINANCIAL TRANSACTION +19:21:01 +Slot[148] 0200 010000 6213541000709470 ------------- 00 897288 000050000000 507700285569030100056213541000709470 507700285569 742064 668899 S +19:21:11 Slot [152] | NOT FINANCIAL TRANSACTION +19:21:12 Slot [153] | NOT FINANCIAL TRANSACTION +19:21:22 Slot [154] | NOT FINANCIAL TRANSACTION +19:21:37 Slot [155] | NOT FINANCIAL TRANSACTION +19:21:43 +Slot[156] 0200 301000 6213545000954994 ------------- 00 262155 031812204626 5077122621550324BKDT6213545000954994 507712262155 817973 180893 S +19:21:53 Slot [157] | NOT FINANCIAL TRANSACTION +19:22:03 Slot [158] | NOT FINANCIAL TRANSACTION +19:22:05 Slot [160] | NOT FINANCIAL TRANSACTION +19:22:08 +Slot[159] 0200 012000 6688990101381109 ------------- 14 262157 000030000000 5077122621570361BLTB6688990101381109 507712262157 811241 180893 S +19:22:13 Slot [161] | NOT FINANCIAL TRANSACTION +19:22:20 Slot [162] | NOT FINANCIAL TRANSACTION +19:22:30 +Slot[163] 0200 301000 6213545001057029 ------------- 00 262160 031812213326 5077122621600324BKDT6213545001057029 507712262160 586764 180893 S +19:22:41 Slot [164] | NOT FINANCIAL TRANSACTION +19:22:51 Slot [165] | NOT FINANCIAL TRANSACTION +19:23:06 Slot [166] | NOT FINANCIAL TRANSACTION +19:23:10 Slot [167] | NOT FINANCIAL TRANSACTION +19:23:15 Slot [169] | NOT FINANCIAL TRANSACTION +19:23:17 +Slot[168] 0200 012000 6688990101381109 ------------- 14 262163 000030000000 5077122621630361BLTB6688990101381109 507712262163 259553 180893 S +19:23:29 Slot [170] | NOT FINANCIAL TRANSACTION +19:23:42 Slot [171] | NOT FINANCIAL TRANSACTION +19:23:53 Slot [172] | NOT FINANCIAL TRANSACTION +19:24:02 +Slot[173] 0200 010000 6688990101381109 ------------- 14 262165 000050000000 5077122621650361BLTB6688990101381109 507712262165 451263 180893 S +19:24:14 Slot [174] | NOT FINANCIAL TRANSACTION +19:24:15 Slot [175] | NOT FINANCIAL TRANSACTION +19:24:17 Slot [176] | NOT FINANCIAL TRANSACTION +19:24:25 Slot [177] | NOT FINANCIAL TRANSACTION +19:24:35 Slot [178] | NOT FINANCIAL TRANSACTION +19:24:37 Slot [179] | NOT FINANCIAL TRANSACTION +19:24:45 Slot [180] | NOT FINANCIAL TRANSACTION +19:24:56 Slot [181] | NOT FINANCIAL TRANSACTION +19:24:57 Slot [182] | NOT FINANCIAL TRANSACTION +19:25:06 +Slot[183] 0200 010000 6688990101381109 ------------- 14 262167 000050000000 5077122621670361BLTB6688990101381109 507712262167 698822 180893 S +19:25:17 Slot [184] | NOT FINANCIAL TRANSACTION +19:25:19 Slot [185] | NOT FINANCIAL TRANSACTION +19:25:20 Slot [186] | NOT FINANCIAL TRANSACTION +19:25:28 Slot [187] | NOT FINANCIAL TRANSACTION +19:25:39 Slot [188] | NOT FINANCIAL TRANSACTION +19:25:54 Slot [189] | NOT FINANCIAL TRANSACTION +19:25:54 Slot [190] | NOT FINANCIAL TRANSACTION +19:25:59 Slot [191] | NOT FINANCIAL TRANSACTION +19:26:09 Slot [192] | NOT FINANCIAL TRANSACTION +19:26:21 Slot [194] | NOT FINANCIAL TRANSACTION +19:26:21 Slot [193] | NOT FINANCIAL TRANSACTION +19:26:25 Slot [195] | NOT FINANCIAL TRANSACTION +19:26:35 Slot [196] | NOT FINANCIAL TRANSACTION +19:26:46 Slot [197] | NOT FINANCIAL TRANSACTION +19:27:01 +Slot[198] 0200 301000 1888880000047258 ------------- 00 459758 000000000000 507702545207050037001888880000047258 507702545207 943598 621354 S +19:27:02 Slot [199] | NOT FINANCIAL TRANSACTION +19:27:17 Slot [200] | NOT FINANCIAL TRANSACTION +19:27:23 Slot [201] | NOT FINANCIAL TRANSACTION +19:27:28 Slot [202] | NOT FINANCIAL TRANSACTION +19:27:30 Slot [203] | NOT FINANCIAL TRANSACTION +19:27:38 Slot [205] | NOT FINANCIAL TRANSACTION +19:27:45 +Slot[204] 0200 301000 1888880000047332 ------------- 00 459861 000000000000 507702545208050037001888880000047332 507702545208 195911 621354 S +19:27:49 Slot [206] | NOT FINANCIAL TRANSACTION +19:27:57 +Slot[207] 0200 302000 6688990101381109 ------------- 14 262169 031812270026 5077122621690361BLTB6688990101381109 507712262169 186638 180893 S +19:28:09 Slot [208] | NOT FINANCIAL TRANSACTION +19:28:21 Slot [209] | NOT FINANCIAL TRANSACTION +19:28:25 Slot [210] | NOT FINANCIAL TRANSACTION +19:28:35 Slot [211] | NOT FINANCIAL TRANSACTION +19:28:36 Slot [212] | NOT FINANCIAL TRANSACTION +19:28:46 +Slot[213] 0200 011000 1808931100006368 ------------- 00 459985 000030000000 507703969172010112001808931100006368 507703969172 624189 621354 S +19:28:52 Slot [214] | NOT FINANCIAL TRANSACTION +19:29:07 Slot [215] | NOT FINANCIAL TRANSACTION +19:29:15 +Slot[216] 0200 301000 6213548000317162 ------------- 00 262171 031812281826 5077122621710441VT526213548000317162 507712262171 713568 180893 S +19:29:27 Slot [218] | NOT FINANCIAL TRANSACTION +19:29:29 +Slot[217] 0200 301000 1808930600047377 ------------- 00 897405 000000000000 507700569925030140041808930600047377 507700569925 686770 668899 S +19:29:39 Slot [219] | NOT FINANCIAL TRANSACTION +19:29:40 Slot [220] | NOT FINANCIAL TRANSACTION +19:29:54 Slot [222] | NOT FINANCIAL TRANSACTION +19:29:57 Slot [223] | NOT FINANCIAL TRANSACTION +19:29:59 +Slot[221] 0200 301000 1989010003167246 ------------- 00 460142 000000000000 507705098399040042001989010003167246 507705098399 820118 621354 S +19:30:05 +Slot[224] 0200 011000 6213548000317162 ------------- 00 262173 000030000000 5077122621730441VT526213548000317162 507712262173 261424 180893 S +19:30:15 Slot [225] | NOT FINANCIAL TRANSACTION +19:30:25 Slot [226] | NOT FINANCIAL TRANSACTION +19:30:29 Slot [227] | NOT FINANCIAL TRANSACTION +19:30:36 Slot [229] | NOT FINANCIAL TRANSACTION +19:30:42 +Slot[228] 0200 011000 1808930600047377 ------------- 00 171070 000100000000 507719171070008529021808930600047377 507719171070 370481 198901 S +19:30:45 Slot [230] | NOT FINANCIAL TRANSACTION +19:30:47 Slot [232] | NOT FINANCIAL TRANSACTION +19:30:51 +Slot[231] 0200 301000 1989010003167261 ------------- 00 460243 000000000000 507705098400040042001989010003167261 507705098400 081405 621354 S +19:30:59 Slot [234] | NOT FINANCIAL TRANSACTION +19:31:00 +Slot[233] 0200 300000 6688990602686907 ------------- 00 460267 000000000000 507704153324200010006688990602686907 507704153324 099366 621354 S +19:31:02 Slot [235] | NOT FINANCIAL TRANSACTION +19:31:17 Slot [236] | NOT FINANCIAL TRANSACTION +19:31:27 Slot [237] | NOT FINANCIAL TRANSACTION +19:31:31 Slot [238] | NOT FINANCIAL TRANSACTION +19:31:42 Slot [239] | NOT FINANCIAL TRANSACTION +19:31:50 Slot [240] | NOT FINANCIAL TRANSACTION +19:31:53 Slot [241] | NOT FINANCIAL TRANSACTION +19:31:58 +Slot[242] 0200 300000 6213544001996047 ------------- 00 897440 000000000000 507702475490030200326213544001996047 507702475490 621217 668899 S +19:32:03 Slot [243] | NOT FINANCIAL TRANSACTION +19:32:14 Slot [246] | NOT FINANCIAL TRANSACTION +19:32:16 +Slot[245] 0200 301000 6213544001996047 ------------- 00 897446 000000000000 507702475491030200326213544001996047 507702475491 181229 668899 S +19:32:17 +Slot[244] 0200 011000 6688990104293400 ------------- 00 460396 000006000000 507703969180010112006688990104293400 507703969180 535629 621354 S +19:32:25 Slot [247] | NOT FINANCIAL TRANSACTION +19:32:33 Slot [248] | NOT FINANCIAL TRANSACTION +19:32:35 Slot [249] | NOT FINANCIAL TRANSACTION +19:32:45 Slot [250] | NOT FINANCIAL TRANSACTION +19:32:55 Slot [252] | NOT FINANCIAL TRANSACTION +19:32:56 Slot [253] | NOT FINANCIAL TRANSACTION +19:32:59 +Slot[251] 0200 012000 6688990103966600 ------------- 00 460467 000100000000 507702811765010075006688990103966600 507702811765 315210 621354 S +19:33:07 Slot [254] | NOT FINANCIAL TRANSACTION +19:33:17 Slot [255] | NOT FINANCIAL TRANSACTION +19:33:25 +Slot[256] 0200 011000 1808930200019966 ------------- 00 460517 000020000000 507704362421030035001808930200019966 507704362421 678239 621354 S +19:33:26 +Slot[257] 0200 010000 6213541000163363 ------------- 00 897465 000050000000 507702475493030200326213541000163363 507702475493 897679 668899 S +19:33:32 Slot [258] | NOT FINANCIAL TRANSACTION +19:33:35 Slot [259] | NOT FINANCIAL TRANSACTION +19:33:47 Slot [260] | NOT FINANCIAL TRANSACTION +19:33:56 +Slot[261] 0200 010000 6688990040132837 ------------- 00 460573 000020000000 507704987148010123006688990040132837 507704987148 268152 621354 S +19:34:00 Slot [263] | NOT FINANCIAL TRANSACTION +19:34:03 Slot [264] | NOT FINANCIAL TRANSACTION +19:34:04 +Slot[262] 0200 011000 6688990100154101 ------------- 00 460591 000010000000 507704488918150010006688990100154101 507704488918 898913 621354 S +19:34:18 Slot [265] | NOT FINANCIAL TRANSACTION +19:34:26 +Slot[266] 0200 301000 1808930200019966 ------------- 00 460623 000000000000 507704362422030035001808930200019966 507704362422 308535 621354 S +19:34:34 Slot [267] | NOT FINANCIAL TRANSACTION +19:34:37 Slot [268] | NOT FINANCIAL TRANSACTION +19:34:44 Slot [269] | NOT FINANCIAL TRANSACTION +19:34:55 Slot [270] | NOT FINANCIAL TRANSACTION +19:34:57 Slot [271] | NOT FINANCIAL TRANSACTION +19:35:05 Slot [272] | NOT FINANCIAL TRANSACTION +19:35:05 Slot [273] | NOT FINANCIAL TRANSACTION +19:35:14 +Slot[274] 0200 010000 6213541000163363 ------------- 00 897484 000030000000 507702475495030200326213541000163363 507702475495 753246 668899 S +19:35:15 Slot [275] | NOT FINANCIAL TRANSACTION +19:35:22 Slot [276] | NOT FINANCIAL TRANSACTION +19:35:26 Slot [278] | NOT FINANCIAL TRANSACTION +19:35:31 +Slot[277] 0200 011000 6688990050035409 ------------- 00 460733 000005000000 507705334915050047006688990050035409 507705334915 806521 621354 S +19:35:39 Slot [279] | NOT FINANCIAL TRANSACTION +19:35:41 Slot [280] | NOT FINANCIAL TRANSACTION +19:35:51 Slot [281] | NOT FINANCIAL TRANSACTION +19:35:59 Slot [282] | NOT FINANCIAL TRANSACTION +19:36:06 Slot [283] | NOT FINANCIAL TRANSACTION +19:36:10 Slot [284] | NOT FINANCIAL TRANSACTION +19:36:16 Slot [286] | NOT FINANCIAL TRANSACTION +19:36:19 +Slot[285] 0200 301000 6688990050035409 ------------- 00 460839 000000000000 507705334916050047006688990050035409 507705334916 261758 621354 S +19:36:26 Slot [287] | NOT FINANCIAL TRANSACTION +19:36:41 Slot [288] | NOT FINANCIAL TRANSACTION +19:36:42 Slot [289] | NOT FINANCIAL TRANSACTION +19:36:53 Slot [290] | NOT FINANCIAL TRANSACTION +19:37:08 Slot [291] | NOT FINANCIAL TRANSACTION +19:37:15 Slot [292] | NOT FINANCIAL TRANSACTION +19:37:19 Slot [293] | NOT FINANCIAL TRANSACTION +19:37:31 Slot [294] | NOT FINANCIAL TRANSACTION +19:37:43 Slot [295] | NOT FINANCIAL TRANSACTION +19:37:45 Slot [296] | NOT FINANCIAL TRANSACTION +19:37:55 Slot [297] | NOT FINANCIAL TRANSACTION +19:38:05 Slot [298] | NOT FINANCIAL TRANSACTION +19:38:10 +Slot[299] 0200 010000 6213544000297595 ------------- 05 262184 000050000000 5077122621840361BLTB6213544000297595 507712262184 019911 180893 S +19:38:20 Slot [300] | NOT FINANCIAL TRANSACTION +19:38:20 Slot [301] | NOT FINANCIAL TRANSACTION +19:38:34 +Slot[302] 0200 301000 6688990602686907 ------------- 14 262186 031812373826 5077122621860369SLVL6688990602686907 507712262186 382408 180893 S +19:38:45 Slot [303] | NOT FINANCIAL TRANSACTION +19:38:47 Slot [305] | NOT FINANCIAL TRANSACTION +19:38:50 +Slot[304] 0200 010000 6213544000297595 ------------- 00 262188 000050000000 5077122621880361BLTB6213544000297595 507712262188 782709 180893 S +19:39:01 Slot [306] | NOT FINANCIAL TRANSACTION +19:39:10 +Slot[307] 0200 011000 6688990040116079 ------------- 00 171177 000010000000 507719171177015290316688990040116079 507719171177 352400 198901 S +19:39:16 Slot [308] | NOT FINANCIAL TRANSACTION +19:39:25 Slot [309] | NOT FINANCIAL TRANSACTION +19:39:27 Slot [310] | NOT FINANCIAL TRANSACTION +19:39:38 Slot [311] | NOT FINANCIAL TRANSACTION +19:39:47 Slot [312] | NOT FINANCIAL TRANSACTION +19:39:49 Slot [314] | NOT FINANCIAL TRANSACTION +19:39:51 +Slot[313] 0200 301000 6688990040116079 ------------- 00 171191 000000000000 507719171191015290316688990040116079 507719171191 274754 198901 S +19:39:56 +Slot[315] 0200 010000 6688990602686907 ------------- 61 262192 000200000000 5077122621920369SLVL6688990602686907 507712262192 852124 180893 S +19:39:57 Slot [316] | NOT FINANCIAL TRANSACTION +19:40:05 Slot [318] | NOT FINANCIAL TRANSACTION +19:40:07 +Slot[317] 0200 010000 6688990108510601 ------------- 00 461292 000035000000 507703618775160014006688990108510601 507703618775 102249 621354 S +19:40:15 Slot [319] | NOT FINANCIAL TRANSACTION +19:40:30 Slot [320] | NOT FINANCIAL TRANSACTION +19:40:31 Slot [321] | NOT FINANCIAL TRANSACTION +19:40:40 +Slot[322] 0200 010000 6688990602686907 ------------- 14 262194 000100000000 5077122621940369SLVL6688990602686907 507712262194 947141 180893 S +19:40:49 Slot [323] | NOT FINANCIAL TRANSACTION +19:40:51 Slot [324] | NOT FINANCIAL TRANSACTION +19:40:59 Slot [325] | NOT FINANCIAL TRANSACTION +19:41:01 Slot [326] | NOT FINANCIAL TRANSACTION +19:41:17 Slot [327] | NOT FINANCIAL TRANSACTION +19:41:32 Slot [329] | NOT FINANCIAL TRANSACTION +19:41:35 +Slot[328] 0200 010000 2206990000104893 ------------- 00 897567 000070000000 507702031561030180032206990000104893 507702031561 720380 668899 S +19:41:35 Slot [330] | NOT FINANCIAL TRANSACTION +19:41:42 +Slot[331] 0200 301000 6688990040116079 ------------- 00 171220 000000000000 507719171220015290316688990040116079 507719171220 399528 198901 S +19:41:43 Slot [332] | NOT FINANCIAL TRANSACTION +19:41:51 Slot [333] | NOT FINANCIAL TRANSACTION +19:41:54 Slot [334] | NOT FINANCIAL TRANSACTION +19:42:09 Slot [335] | NOT FINANCIAL TRANSACTION +19:42:19 Slot [337] | NOT FINANCIAL TRANSACTION +19:42:22 +Slot[336] 0200 010000 6213545000900674 ------------- 00 897577 000010000000 507702209671030060096213545000900674 507702209671 838303 668899 S +19:42:31 Slot [338] | NOT FINANCIAL TRANSACTION +19:42:36 Slot [339] | NOT FINANCIAL TRANSACTION +19:42:40 Slot [341] | NOT FINANCIAL TRANSACTION +19:42:44 +Slot[340] 0200 010000 2206990000104893 ------------- 00 897581 000070000000 507702031563030180032206990000104893 507702031563 616930 668899 S +19:42:45 Slot [342] | NOT FINANCIAL TRANSACTION +19:42:53 Slot [343] | NOT FINANCIAL TRANSACTION +19:42:55 Slot [344] | NOT FINANCIAL TRANSACTION +19:43:06 Slot [345] | NOT FINANCIAL TRANSACTION +19:43:16 Slot [346] | NOT FINANCIAL TRANSACTION +19:43:28 Slot [348] | NOT FINANCIAL TRANSACTION +19:43:33 +Slot[347] 0200 300000 2206990000104893 ------------- 00 897589 000000000000 507702031565030180032206990000104893 507702031565 957290 668899 S +19:43:44 Slot [349] | NOT FINANCIAL TRANSACTION +19:43:45 Slot [350] | NOT FINANCIAL TRANSACTION +19:43:55 Slot [354] | NOT FINANCIAL TRANSACTION +19:43:55 Slot [352] | NOT FINANCIAL TRANSACTION +19:43:59 +Slot[351] 0200 010000 2206990000104893 ------------- 00 897599 000050000000 507702031566030180032206990000104893 507702031566 967324 668899 S +19:44:00 +Slot[353] 0200 300000 6688990602686907 ------------- 00 461684 000000000000 507704153330200010006688990602686907 507704153330 606880 621354 S +19:44:05 Slot [355] | NOT FINANCIAL TRANSACTION +19:44:20 Slot [356] | NOT FINANCIAL TRANSACTION +19:44:31 Slot [358] | NOT FINANCIAL TRANSACTION +19:44:32 +Slot[357] 0200 302000 6213545000320600 ------------- 00 897612 000000000000 507702223510030080056213545000320600 507702223510 938885 668899 S +19:44:41 Slot [359] | NOT FINANCIAL TRANSACTION +19:44:50 Slot [361] | NOT FINANCIAL TRANSACTION +19:44:52 Slot [362] | NOT FINANCIAL TRANSACTION +19:44:57 Slot [364] | NOT FINANCIAL TRANSACTION +19:44:57 Slot [363] | NOT FINANCIAL TRANSACTION +19:45:03 Slot [365] | NOT FINANCIAL TRANSACTION +19:45:18 Slot [367] | NOT FINANCIAL TRANSACTION +19:45:19 +Slot[366] 0200 010000 6688990602686907 ------------- 00 461807 000100000000 507704153332200010006688990602686907 507704153332 176880 621354 S +19:45:28 Slot [369] | NOT FINANCIAL TRANSACTION +19:45:30 +Slot[368] 0200 010000 6213545000320600 ------------- 00 897632 000050000000 507702223511030080056213545000320600 507702223511 593593 668899 S +19:45:39 Slot [370] | NOT FINANCIAL TRANSACTION +19:45:54 Slot [371] | NOT FINANCIAL TRANSACTION +19:45:55 Slot [372] | NOT FINANCIAL TRANSACTION +19:45:58 Slot [375] | NOT FINANCIAL TRANSACTION +19:45:59 Slot [374] | NOT FINANCIAL TRANSACTION +19:46:02 +Slot[373] 0200 300000 2206990000104893 ------------- 00 897643 000000000000 507702031570030180032206990000104893 507702031570 082145 668899 S +19:46:04 Slot [376] | NOT FINANCIAL TRANSACTION +19:46:08 Slot [377] | NOT FINANCIAL TRANSACTION +19:46:15 Slot [378] | NOT FINANCIAL TRANSACTION +19:46:25 Slot [379] | NOT FINANCIAL TRANSACTION +19:46:32 +Slot[380] 0200 010000 6688990602686907 ------------- 00 461927 000100000000 507704153334200010006688990602686907 507704153334 024942 621354 S +19:46:38 +Slot[381] 0200 300000 2206990000119578 ------------- 00 897652 000000000000 507702031572030180032206990000119578 507702031572 437194 668899 S +19:46:40 Slot [382] | NOT FINANCIAL TRANSACTION +19:46:51 Slot [384] | NOT FINANCIAL TRANSACTION +19:46:53 +Slot[383] 0200 302000 6213545000156350 ------------- 00 897661 000000000000 507701955468030200186213545000156350 507701955468 736746 668899 S +19:47:00 Slot [387] | NOT FINANCIAL TRANSACTION +19:47:01 Slot [386] | NOT FINANCIAL TRANSACTION +19:47:01 Slot [388] | NOT FINANCIAL TRANSACTION +19:47:09 +Slot[360] 0200 300000 2206990000104893 ------------- 91 897618 000000000000 507702031568030180032206990000104893 507702031568 113783 668899 S +19:47:12 Slot [389] | NOT FINANCIAL TRANSACTION +19:47:22 Slot [390] | NOT FINANCIAL TRANSACTION +19:47:34 Slot [391] | NOT FINANCIAL TRANSACTION +19:47:45 Slot [394] | NOT FINANCIAL TRANSACTION +19:47:46 +Slot[392] 0200 010000 6213545000156350 ------------- 00 897678 000010000000 507701955469030200186213545000156350 507701955469 966692 668899 S +19:47:55 Slot [396] | NOT FINANCIAL TRANSACTION +19:47:59 +Slot[395] 0200 011000 6688990102310404 ------------- 00 171305 000020000000 507719171305015290196688990102310404 507719171305 485762 198901 S +19:48:00 +Slot[393] 0200 010000 6688990602686907 ------------- 00 462032 000100000000 507704153336200010006688990602686907 507704153336 409393 621354 S +19:48:03 Slot [397] | NOT FINANCIAL TRANSACTION +19:48:05 Slot [398] | NOT FINANCIAL TRANSACTION +19:48:06 Slot [399] | NOT FINANCIAL TRANSACTION +19:48:17 Slot [400] | NOT FINANCIAL TRANSACTION +19:48:28 +Slot[401] 0200 011000 6688990102310404 ------------- 00 171313 000010000000 507719171313015290196688990102310404 507719171313 707018 198901 S +19:48:28 Slot [402] | NOT FINANCIAL TRANSACTION +19:48:38 Slot [403] | NOT FINANCIAL TRANSACTION +19:48:51 +Slot[404] 0200 011000 1808931300012448 ------------- 00 462103 000020000000 507703813333010097001808931300012448 507703813333 239732 621354 S +19:48:59 Slot [407] | NOT FINANCIAL TRANSACTION +19:49:01 +Slot[408] 0420 010000 2206990000119578 0 00 897663 000030000000 507702031573030180032206990000119578 507702031573 000000 668899 S +19:49:01 +Slot[405] 0200 010000 6688990602686907 ------------- 00 462116 000100000000 507704153338200010006688990602686907 507704153338 324769 621354 S +19:49:03 +Slot[406] 0200 010000 6213541000459704 ------------- 00 897697 000020000000 507701955471030200186213541000459704 507701955471 959274 668899 S +19:49:05 Slot [409] | NOT FINANCIAL TRANSACTION +19:49:09 Slot [410] | NOT FINANCIAL TRANSACTION +19:49:10 Slot [411] | NOT FINANCIAL TRANSACTION +19:49:24 Slot [413] | NOT FINANCIAL TRANSACTION +19:49:24 +Slot[385] 0200 010000 2206990000119578 ------------- 91 897663 000030000000 507702031573030180032206990000119578 507702031573 622179 668899 S +19:49:30 +Slot[412] 0200 010000 1888880000101808 ------------- 00 462151 000050000000 507704569233020019001888880000101808 507704569233 755629 621354 S +19:49:35 Slot [414] | NOT FINANCIAL TRANSACTION +19:49:46 Slot [415] | NOT FINANCIAL TRANSACTION +19:49:56 Slot [416] | NOT FINANCIAL TRANSACTION +19:49:57 Slot [417] | NOT FINANCIAL TRANSACTION +19:50:05 +Slot[418] 0200 010000 6688990602686907 ------------- 00 462224 000100000000 507704153340200010006688990602686907 507704153340 438224 621354 S +19:50:07 Slot [420] | NOT FINANCIAL TRANSACTION +19:50:07 Slot [419] | NOT FINANCIAL TRANSACTION +19:50:14 +Slot[421] 0200 301000 6213544001863767 ------------- 00 171344 000000000000 507719171344000022066213544001863767 507719171344 859829 198901 S +19:50:15 Slot [422] | NOT FINANCIAL TRANSACTION +19:50:17 Slot [423] | NOT FINANCIAL TRANSACTION +19:50:28 Slot [424] | NOT FINANCIAL TRANSACTION +19:50:39 Slot [426] | NOT FINANCIAL TRANSACTION +19:50:41 +Slot[425] 0200 010000 1888880000101808 ------------- 00 462281 000030000000 507704569235020019001888880000101808 507704569235 903697 621354 S +19:50:49 Slot [427] | NOT FINANCIAL TRANSACTION +19:50:58 Slot [428] | NOT FINANCIAL TRANSACTION +19:51:05 Slot [429] | NOT FINANCIAL TRANSACTION +19:51:09 Slot [430] | NOT FINANCIAL TRANSACTION +19:51:20 Slot [431] | NOT FINANCIAL TRANSACTION +19:51:21 Slot [432] | NOT FINANCIAL TRANSACTION +19:51:32 Slot [433] | NOT FINANCIAL TRANSACTION +19:51:39 +Slot[434] 0200 301000 6213544002209283 ------------- 00 897750 000000000000 507702415237030010116213544002209283 507702415237 307838 668899 S +19:51:43 Slot [435] | NOT FINANCIAL TRANSACTION +19:51:51 +Slot[436] 0200 012000 6688990040082651 ------------- 00 462405 000010000000 507703969226010112006688990040082651 507703969226 228487 621354 S +19:51:53 Slot [437] | NOT FINANCIAL TRANSACTION +19:52:04 +Slot[438] 0200 010000 6688990103905400 ------------- 14 262209 000050000000 5077122622090485HPXT6688990103905400 507712262209 380381 180893 S +19:52:11 Slot [439] | NOT FINANCIAL TRANSACTION +19:52:14 Slot [440] | NOT FINANCIAL TRANSACTION +19:52:24 Slot [441] | NOT FINANCIAL TRANSACTION +19:52:25 Slot [442] | NOT FINANCIAL TRANSACTION +19:52:40 Slot [444] | NOT FINANCIAL TRANSACTION +19:52:42 +Slot[443] 0200 300000 6213543000232867 ------------- 00 897766 000000000000 507701196691030200116213543000232867 507701196691 631791 668899 S +19:52:45 +Slot[445] 0200 010000 6213544002209283 ------------- 00 897767 000050000000 507702415239030010116213544002209283 507702415239 609997 668899 S +19:52:49 +Slot[446] 0200 301000 6688990103905400 ------------- 14 262210 031812515226 5077122622100485HPXT6688990103905400 507712262210 290373 180893 S +19:53:00 Slot [447] | NOT FINANCIAL TRANSACTION +19:53:13 Slot [448] | NOT FINANCIAL TRANSACTION +19:53:16 Slot [449] | NOT FINANCIAL TRANSACTION +19:53:26 Slot [450] | NOT FINANCIAL TRANSACTION +19:53:30 Slot [451] | NOT FINANCIAL TRANSACTION +19:53:37 Slot [453] | NOT FINANCIAL TRANSACTION +19:53:40 +Slot[452] 0200 011000 6213541000709074 ------------- 00 171403 000100000000 507719171403135290016213541000709074 507719171403 798475 198901 S +19:53:47 Slot [454] | NOT FINANCIAL TRANSACTION +19:53:57 Slot [455] | NOT FINANCIAL TRANSACTION +19:54:08 Slot [456] | NOT FINANCIAL TRANSACTION +19:54:15 Slot [457] | NOT FINANCIAL TRANSACTION +19:54:19 Slot [458] | NOT FINANCIAL TRANSACTION +19:54:35 Slot [459] | NOT FINANCIAL TRANSACTION +19:54:35 Slot [460] | NOT FINANCIAL TRANSACTION +19:54:41 +Slot[461] 0200 010000 6688990603097609 ------------- 14 262215 000050000000 5077122622150522XYXH6688990603097609 507712262215 062228 180893 S +19:54:51 Slot [463] | NOT FINANCIAL TRANSACTION +19:54:53 +Slot[462] 0200 011000 6213544001002929 ------------- 51 171428 000009000000 507719171428015290316213544001002929 507719171428 841942 198901 S +19:54:57 Slot [464] | NOT FINANCIAL TRANSACTION +19:55:02 Slot [465] | NOT FINANCIAL TRANSACTION +19:55:08 +Slot[466] 0200 011000 6213544001002929 ------------- 00 171435 000008000000 507719171435015290316213544001002929 507719171435 421707 198901 S +19:55:17 Slot [468] | NOT FINANCIAL TRANSACTION +19:55:17 Slot [467] | NOT FINANCIAL TRANSACTION +19:55:27 Slot [469] | NOT FINANCIAL TRANSACTION +19:55:38 Slot [470] | NOT FINANCIAL TRANSACTION +19:55:40 Slot [471] | NOT FINANCIAL TRANSACTION +19:55:48 Slot [472] | NOT FINANCIAL TRANSACTION +19:55:58 Slot [473] | NOT FINANCIAL TRANSACTION +19:56:03 Slot [474] | NOT FINANCIAL TRANSACTION +19:56:14 Slot [475] | NOT FINANCIAL TRANSACTION +19:56:19 Slot [476] | NOT FINANCIAL TRANSACTION +19:56:25 Slot [477] | NOT FINANCIAL TRANSACTION +19:56:35 Slot [478] | NOT FINANCIAL TRANSACTION +19:56:45 Slot [479] | NOT FINANCIAL TRANSACTION +19:56:45 Slot [481] | NOT FINANCIAL TRANSACTION +19:56:49 +Slot[480] 0200 301000 6688990603097609 ------------- 14 262217 031812555226 5077122622170522XYXH6688990603097609 507712262217 311640 180893 S +19:56:49 +Slot[482] 0200 401000 6213541000709074 ------------- 06 171468 000025000000 507719171468135290016213541000709074 507719171468 107084 198901 S +19:56:54 Slot [483] | NOT FINANCIAL TRANSACTION +19:57:02 Slot [484] | NOT FINANCIAL TRANSACTION +19:57:13 Slot [486] | NOT FINANCIAL TRANSACTION +19:57:17 +Slot[485] 0200 011000 6688990103844609 ------------- 00 462940 000100000000 507703718485010089006688990103844609 507703718485 807171 621354 S +19:57:21 Slot [489] | NOT FINANCIAL TRANSACTION +19:57:22 +Slot[487] 0200 301000 6213541000709074 ------------- 00 171475 000000000000 507719171475135290016213541000709074 507719171475 939588 198901 S +19:57:24 Slot [490] | NOT FINANCIAL TRANSACTION +19:57:25 +Slot[488] 0200 010000 2206990000085019 ------------- 00 462960 000010000000 507703796158010095002206990000085019 507703796158 244261 621354 S +19:57:34 +Slot[491] 0200 010000 6213545000365670 ------------- 51 897852 000050000000 507702362808030160036213545000365670 507702362808 171652 668899 S +19:57:34 Slot [492] | NOT FINANCIAL TRANSACTION +19:57:50 Slot [493] | NOT FINANCIAL TRANSACTION +19:57:50 Slot [494] | NOT FINANCIAL TRANSACTION +19:58:01 Slot [495] | NOT FINANCIAL TRANSACTION +19:58:12 Slot [496] | NOT FINANCIAL TRANSACTION +19:58:22 Slot [498] | NOT FINANCIAL TRANSACTION +19:58:23 Slot [497] | NOT FINANCIAL TRANSACTION +19:58:34 Slot [499] | NOT FINANCIAL TRANSACTION +19:58:49 Slot [0] | NOT FINANCIAL TRANSACTION +19:58:55 Slot [2] | NOT FINANCIAL TRANSACTION +19:58:58 +Slot[1] 0200 301000 1808931000007763 ------------- 00 463125 000000000000 507704839483110007001808931000007763 507704839483 680036 621354 S +19:59:05 Slot [3] | NOT FINANCIAL TRANSACTION +19:59:16 Slot [5] | NOT FINANCIAL TRANSACTION +19:59:18 Slot [4] | NOT FINANCIAL TRANSACTION +19:59:25 Slot [6] | NOT FINANCIAL TRANSACTION +19:59:27 Slot [7] | NOT FINANCIAL TRANSACTION +19:59:43 Slot [8] | NOT FINANCIAL TRANSACTION +19:59:57 Slot [10] | NOT FINANCIAL TRANSACTION +19:59:59 +Slot[9] 0200 011000 1808931000007763 ------------- 00 463232 000100000000 507704839485110007001808931000007763 507704839485 752319 621354 S +20:00:00 Slot [11] | NOT FINANCIAL TRANSACTION +20:00:03 Slot [12] | NOT FINANCIAL TRANSACTION +20:00:19 Slot [13] | NOT FINANCIAL TRANSACTION +20:00:24 +Slot[14] 0200 301000 6213544000125911 ------------- 00 171516 000000000000 507720171516000034036213544000125911 507720171516 986588 198901 S +20:00:27 Slot [15] | NOT FINANCIAL TRANSACTION +20:00:29 Slot [16] | NOT FINANCIAL TRANSACTION +20:00:39 Slot [18] | NOT FINANCIAL TRANSACTION +20:00:41 +Slot[17] 0200 011000 6213544000125911 ------------- 51 171524 000019000000 507720171524000034036213544000125911 507720171524 814967 198901 S +20:00:51 Slot [19] | NOT FINANCIAL TRANSACTION +20:00:58 +Slot[20] 0200 011000 6213544000125911 ------------- 00 171530 000009000000 507720171530000034036213544000125911 507720171530 306702 198901 S +20:00:58 Slot [22] | NOT FINANCIAL TRANSACTION +20:01:05 Slot [21] | NOT FINANCIAL TRANSACTION +20:01:06 Slot [23] | NOT FINANCIAL TRANSACTION +20:01:16 Slot [25] | NOT FINANCIAL TRANSACTION +20:01:19 +Slot[24] 0200 301000 6213544000125911 ------------- 00 171537 000000000000 507720171537000034036213544000125911 507720171537 857926 198901 S +20:01:27 Slot [26] | NOT FINANCIAL TRANSACTION +20:01:29 Slot [27] | NOT FINANCIAL TRANSACTION +20:01:35 +Slot[28] 0200 011000 2206990000011809 ------------- 00 463427 000050000000 507702397481010064002206990000011809 507702397481 164749 621354 S +20:01:38 Slot [29] | NOT FINANCIAL TRANSACTION +20:01:53 Slot [30] | NOT FINANCIAL TRANSACTION +20:02:04 Slot [31] | NOT FINANCIAL TRANSACTION +20:02:10 Slot [32] | NOT FINANCIAL TRANSACTION +20:02:19 Slot [33] | NOT FINANCIAL TRANSACTION +20:02:29 Slot [34] | NOT FINANCIAL TRANSACTION +20:02:31 Slot [35] | NOT FINANCIAL TRANSACTION +20:02:42 +Slot[36] 0200 011000 6213544002215918 ------------- 00 262224 000020000000 5077132622240361BLTB6213544002215918 507713262224 243305 180893 S +20:02:50 Slot [37] | NOT FINANCIAL TRANSACTION +20:03:06 Slot [38] | NOT FINANCIAL TRANSACTION +20:03:15 Slot [39] | NOT FINANCIAL TRANSACTION +20:03:16 Slot [41] | NOT FINANCIAL TRANSACTION +20:03:27 Slot [42] | NOT FINANCIAL TRANSACTION +20:03:33 Slot [40] | NOT FINANCIAL TRANSACTION +20:03:38 Slot [44] | NOT FINANCIAL TRANSACTION +20:03:39 +Slot[43] 0200 010000 6213545000819940 ------------- 00 897968 000010000000 507702435425030200316213545000819940 507702435425 911825 668899 S +20:03:49 Slot [45] | NOT FINANCIAL TRANSACTION +20:03:59 Slot [46] | NOT FINANCIAL TRANSACTION +20:04:14 Slot [47] | NOT FINANCIAL TRANSACTION +20:04:20 Slot [48] | NOT FINANCIAL TRANSACTION +20:04:25 Slot [49] | NOT FINANCIAL TRANSACTION +20:04:35 Slot [50] | NOT FINANCIAL TRANSACTION +20:04:36 Slot [51] | NOT FINANCIAL TRANSACTION +20:04:47 Slot [54] | NOT FINANCIAL TRANSACTION +20:04:47 +Slot[52] 0200 011000 6688990040050393 ------------- 00 171576 000010000000 507720171576015290196688990040050393 507720171576 427419 198901 S +20:04:57 Slot [55] | NOT FINANCIAL TRANSACTION +20:04:57 Slot [53] | NOT FINANCIAL TRANSACTION +20:05:08 Slot [56] | NOT FINANCIAL TRANSACTION +20:05:18 Slot [57] | NOT FINANCIAL TRANSACTION +20:05:25 Slot [58] | NOT FINANCIAL TRANSACTION +20:05:29 Slot [59] | NOT FINANCIAL TRANSACTION +20:05:37 Slot [60] | NOT FINANCIAL TRANSACTION +20:05:44 Slot [61] | NOT FINANCIAL TRANSACTION +20:05:55 Slot [62] | NOT FINANCIAL TRANSACTION +20:05:59 Slot [64] | NOT FINANCIAL TRANSACTION +20:06:06 Slot [63] | NOT FINANCIAL TRANSACTION +20:06:10 +Slot[65] 0200 011000 6688990107680207 ------------- 00 171599 000010000000 507720171599015290196688990107680207 507720171599 278840 198901 S +20:06:17 +Slot[66] 0200 011000 6213544000359858 ------------- 00 171606 000015000000 507720171606015290016213544000359858 507720171606 001910 198901 S +20:06:21 Slot [67] | NOT FINANCIAL TRANSACTION +20:06:30 Slot [68] | NOT FINANCIAL TRANSACTION +20:06:31 Slot [69] | NOT FINANCIAL TRANSACTION +20:06:39 Slot [70] | NOT FINANCIAL TRANSACTION +20:06:41 Slot [71] | NOT FINANCIAL TRANSACTION +20:06:52 Slot [72] | NOT FINANCIAL TRANSACTION +20:07:04 Slot [73] | NOT FINANCIAL TRANSACTION +20:07:21 +Slot[74] 0200 011000 1808931000006476 ------------- 00 464077 000005000000 507705124882110010001808931000006476 507705124882 459387 621354 S +20:07:22 +Slot[75] 0200 010000 6213541000578982 ------------- 00 262238 000100000000 5077132622380141HQBR6213541000578982 507713262238 121169 180893 S +20:07:34 Slot [77] | NOT FINANCIAL TRANSACTION +20:07:35 Slot [76] | NOT FINANCIAL TRANSACTION +20:07:40 Slot [78] | NOT FINANCIAL TRANSACTION +20:07:41 Slot [79] | NOT FINANCIAL TRANSACTION +20:07:49 Slot [80] | NOT FINANCIAL TRANSACTION +20:07:56 +Slot[81] 0200 301000 6213541000702343 ------------- 00 898036 000000000000 507701877872030120046213541000702343 507701877872 206937 668899 S +20:08:00 +Slot[82] 0200 010000 6213541000578982 ------------- 00 262242 000100000000 5077132622420141HQBR6213541000578982 507713262242 193186 180893 S +20:08:10 Slot [83] | NOT FINANCIAL TRANSACTION +20:08:26 Slot [84] | NOT FINANCIAL TRANSACTION +20:08:37 +Slot[86] 0200 010000 6213541000578982 ------------- 00 262247 000100000000 5077132622470141HQBR6213541000578982 507713262247 539244 180893 S +20:08:38 +Slot[85] 0200 010000 6213541000702343 ------------- 00 898044 000010000000 507701877873030120046213541000702343 507701877873 827246 668899 S +20:08:40 Slot [88] | NOT FINANCIAL TRANSACTION +20:08:43 Slot [87] | NOT FINANCIAL TRANSACTION +20:08:47 Slot [89] | NOT FINANCIAL TRANSACTION +20:08:57 Slot [90] | NOT FINANCIAL TRANSACTION +20:09:08 Slot [92] | NOT FINANCIAL TRANSACTION +20:09:10 +Slot[91] 0200 300000 6688990040092908 ------------- 55 464305 000000000000 507703969245010112006688990040092908 507703969245 751787 621354 S +20:09:15 +Slot[93] 0200 010000 6213541000578982 ------------- 00 262251 000100000000 5077132622510141HQBR6213541000578982 507713262251 813732 180893 S +20:09:28 Slot [94] | NOT FINANCIAL TRANSACTION +20:09:37 +Slot[95] 0200 300000 6688990040092908 ------------- 55 464358 000000000000 507703969246010112006688990040092908 507703969246 190569 621354 S +20:09:39 Slot [96] | NOT FINANCIAL TRANSACTION +20:09:45 Slot [98] | NOT FINANCIAL TRANSACTION +20:09:45 Slot [99] | NOT FINANCIAL TRANSACTION +20:09:46 +Slot[97] 0200 302000 6213548000243277 ------------- 00 262255 031813084826 5077132622550522XYXH6213548000243277 507713262255 929002 180893 S +20:09:53 +Slot[100] 0200 010000 6213541000578982 ------------- 00 262257 000100000000 5077132622570141HQBR6213541000578982 507713262257 948627 180893 S +20:09:57 Slot [103] | NOT FINANCIAL TRANSACTION +20:09:58 +Slot[101] 0200 011000 6213544002218086 ------------- 00 171648 000005000000 507720171648015290116213544002218086 507720171648 820383 198901 S +20:10:00 +Slot[102] 0200 300000 6688990040092908 ------------- 75 464391 000000000000 507703969247010112006688990040092908 507703969247 223639 621354 S +20:10:05 Slot [105] | NOT FINANCIAL TRANSACTION +20:10:15 Slot [104] | NOT FINANCIAL TRANSACTION +20:10:26 Slot [107] | NOT FINANCIAL TRANSACTION +20:10:30 +Slot[106] 0200 010000 6213541000578982 ------------- 00 262261 000100000000 5077132622610141HQBR6213541000578982 507713262261 191181 180893 S +20:10:34 +Slot[108] 0200 011000 1808931300015268 ------------- 55 464437 000020000000 507703499193060022001808931300015268 507703499193 888380 621354 S +20:10:44 Slot [110] | NOT FINANCIAL TRANSACTION +20:10:47 Slot [111] | NOT FINANCIAL TRANSACTION +20:10:48 +Slot[109] 0200 011000 6213548000243277 ------------- 51 262264 000020000000 5077132622640522XYXH6213548000243277 507713262264 300735 180893 S +20:10:51 Slot [112] | NOT FINANCIAL TRANSACTION +20:10:59 Slot [113] | NOT FINANCIAL TRANSACTION +20:11:00 Slot [114] | NOT FINANCIAL TRANSACTION +20:11:07 +Slot[115] 0200 010000 6213541000578982 ------------- 00 262268 000100000000 5077132622680141HQBR6213541000578982 507713262268 929769 180893 S +20:11:17 Slot [116] | NOT FINANCIAL TRANSACTION +20:11:27 Slot [117] | NOT FINANCIAL TRANSACTION +20:11:37 Slot [118] | NOT FINANCIAL TRANSACTION +20:11:43 +Slot[119] 0200 010000 6213541000578982 ------------- 00 262271 000100000000 5077132622710141HQBR6213541000578982 507713262271 067007 180893 S +20:11:49 Slot [120] | NOT FINANCIAL TRANSACTION +20:11:53 Slot [121] | NOT FINANCIAL TRANSACTION +20:11:56 Slot [123] | NOT FINANCIAL TRANSACTION +20:12:01 +Slot[122] 0200 012000 6213548000243277 ------------- 51 262274 000020000000 5077132622740522XYXH6213548000243277 507713262274 147514 180893 S +20:12:10 Slot [124] | NOT FINANCIAL TRANSACTION +20:12:20 +Slot[125] 0200 010000 6213541000578982 ------------- 00 262277 000100000000 5077132622770141HQBR6213541000578982 507713262277 395356 180893 S +20:12:31 +Slot[126] 0200 012000 6213548000243277 ------------- 00 262279 000019000000 5077132622790522XYXH6213548000243277 507713262279 388671 180893 S +20:12:41 Slot [127] | NOT FINANCIAL TRANSACTION +20:12:51 Slot [128] | NOT FINANCIAL TRANSACTION +20:12:52 Slot [130] | NOT FINANCIAL TRANSACTION +20:12:56 +Slot[129] 0200 010000 6213541000578982 ------------- 00 262283 000100000000 5077132622830141HQBR6213541000578982 507713262283 716589 180893 S +20:13:01 Slot [131] | NOT FINANCIAL TRANSACTION +20:13:07 +Slot[132] 0200 301000 6213548000022713 ------------- 00 262284 031813120926 5077132622840361BLTB6213548000022713 507713262284 486985 180893 S +20:13:18 Slot [133] | NOT FINANCIAL TRANSACTION +20:13:29 Slot [134] | NOT FINANCIAL TRANSACTION +20:13:38 +Slot[135] 0200 012000 6213548000022713 ------------- 00 262287 000015000000 5077132622870361BLTB6213548000022713 507713262287 114791 180893 S +20:13:50 Slot [136] | NOT FINANCIAL TRANSACTION +20:13:53 Slot [137] | NOT FINANCIAL TRANSACTION +20:14:01 Slot [138] | NOT FINANCIAL TRANSACTION +20:14:06 Slot [139] | NOT FINANCIAL TRANSACTION +20:14:12 Slot [140] | NOT FINANCIAL TRANSACTION +20:14:28 Slot [141] | NOT FINANCIAL TRANSACTION +20:14:38 Slot [142] | NOT FINANCIAL TRANSACTION +20:14:49 Slot [144] | NOT FINANCIAL TRANSACTION +20:14:50 +Slot[143] 0200 011000 6688990060019278 ------------- 00 171713 000002000000 507720171713000034036688990060019278 507720171713 040465 198901 S +20:14:55 Slot [146] | NOT FINANCIAL TRANSACTION +20:14:57 Slot [145] | NOT FINANCIAL TRANSACTION +20:15:01 Slot [147] | NOT FINANCIAL TRANSACTION +20:15:11 Slot [149] | NOT FINANCIAL TRANSACTION +20:15:11 Slot [150] | NOT FINANCIAL TRANSACTION +20:15:27 Slot [151] | NOT FINANCIAL TRANSACTION +20:15:42 Slot [148] | NOT FINANCIAL TRANSACTION +20:15:52 Slot [152] | NOT FINANCIAL TRANSACTION +20:15:57 Slot [153] | NOT FINANCIAL TRANSACTION +20:15:59 Slot [154] | NOT FINANCIAL TRANSACTION +20:16:00 Slot [155] | NOT FINANCIAL TRANSACTION +20:16:03 Slot [156] | NOT FINANCIAL TRANSACTION +20:16:16 Slot [158] | NOT FINANCIAL TRANSACTION +20:16:18 Slot [160] | NOT FINANCIAL TRANSACTION +20:16:19 +Slot[157] 0200 311000 6217995550001793780 ------------- 05 223506 000000000000 507700118610010011006217995550001793 507700118610 805678 220699 S +20:16:30 Slot [159] | NOT FINANCIAL TRANSACTION +20:16:45 Slot [161] | NOT FINANCIAL TRANSACTION +20:16:56 Slot [162] | NOT FINANCIAL TRANSACTION +20:16:59 Slot [163] | NOT FINANCIAL TRANSACTION +20:17:07 Slot [164] | NOT FINANCIAL TRANSACTION +20:17:12 +Slot[165] 0200 301000 2206990000039024 ------------- 55 465017 000000000000 507703673470160020002206990000039024 507703673470 421599 621354 S +20:17:21 Slot [166] | NOT FINANCIAL TRANSACTION +20:17:22 Slot [169] | NOT FINANCIAL TRANSACTION +20:17:27 +Slot[167] 0200 011000 6213544001247029 ------------- 00 171749 000005000000 507720171749015290196213544001247029 507720171749 259093 198901 S +20:17:28 +Slot[168] 0200 301000 2206990000039024 ------------- 55 465055 000000000000 507703673471160020002206990000039024 507703673471 656151 621354 S +20:17:33 Slot [170] | NOT FINANCIAL TRANSACTION +20:17:45 +Slot[171] 0200 301000 2206990000039024 ------------- 00 465079 000000000000 507703673472160020002206990000039024 507703673472 703585 621354 S +20:17:48 Slot [173] | NOT FINANCIAL TRANSACTION +20:17:49 +Slot[172] 0200 011000 6688990105148306 ------------- 00 171752 000010000000 507720171752015290316688990105148306 507720171752 476100 198901 S +20:17:59 Slot [174] | NOT FINANCIAL TRANSACTION +20:18:01 Slot [175] | NOT FINANCIAL TRANSACTION +20:18:14 Slot [176] | NOT FINANCIAL TRANSACTION +20:18:24 Slot [177] | NOT FINANCIAL TRANSACTION +20:18:26 Slot [178] | NOT FINANCIAL TRANSACTION +20:18:28 Slot [179] | NOT FINANCIAL TRANSACTION +20:18:35 Slot [180] | NOT FINANCIAL TRANSACTION +20:18:42 +Slot[181] 0200 011000 2206990000039024 ------------- 00 465183 000100000000 507703673474160020002206990000039024 507703673474 404292 621354 S +20:18:46 Slot [182] | NOT FINANCIAL TRANSACTION +20:18:53 +Slot[183] 0200 011000 1808930400011649 ------------- 51 465204 000020000000 507704458892150007001808930400011649 507704458892 726578 621354 S +20:19:01 Slot [184] | NOT FINANCIAL TRANSACTION +20:19:03 Slot [185] | NOT FINANCIAL TRANSACTION +20:19:12 Slot [186] | NOT FINANCIAL TRANSACTION +20:19:23 Slot [187] | NOT FINANCIAL TRANSACTION +20:19:32 +Slot[188] 0200 301000 6213548000526853 ------------- 00 898242 000000000000 507700174992030010016213548000526853 507700174992 209767 668899 S +20:19:33 Slot [189] | NOT FINANCIAL TRANSACTION +20:19:37 Slot [190] | NOT FINANCIAL TRANSACTION +20:19:48 Slot [191] | NOT FINANCIAL TRANSACTION +20:19:56 Slot [192] | NOT FINANCIAL TRANSACTION +20:19:58 Slot [194] | NOT FINANCIAL TRANSACTION +20:20:05 Slot [193] | NOT FINANCIAL TRANSACTION +20:20:09 Slot [195] | NOT FINANCIAL TRANSACTION +20:20:20 Slot [196] | NOT FINANCIAL TRANSACTION +20:20:30 Slot [197] | NOT FINANCIAL TRANSACTION +20:20:38 Slot [199] | NOT FINANCIAL TRANSACTION +20:20:40 +Slot[198] 0200 011000 6688990602611608 ------------- 00 465345 000010000000 507702428857050026006688990602611608 507702428857 974409 621354 S +20:20:40 Slot [200] | NOT FINANCIAL TRANSACTION +20:20:52 Slot [202] | NOT FINANCIAL TRANSACTION +20:20:53 +Slot[201] 0200 302000 6213544001777314 ------------- 00 898274 000000000000 507702678297030200356213544001777314 507702678297 358645 668899 S +20:20:59 Slot [203] | NOT FINANCIAL TRANSACTION +20:21:07 Slot [204] | NOT FINANCIAL TRANSACTION +20:21:07 Slot [205] | NOT FINANCIAL TRANSACTION +20:21:17 Slot [206] | NOT FINANCIAL TRANSACTION +20:21:32 Slot [207] | NOT FINANCIAL TRANSACTION +20:21:41 +Slot[208] 0200 010000 6213544001777314 ------------- 00 898287 000004000000 507702678298030200356213544001777314 507702678298 720316 668899 S +20:21:43 Slot [210] | NOT FINANCIAL TRANSACTION +20:21:46 +Slot[209] 0200 010000 6688990106505108 ------------- 00 465454 000090000000 507704012623010117006688990106505108 507704012623 212843 621354 S +20:21:48 Slot [211] | NOT FINANCIAL TRANSACTION +20:22:03 Slot [212] | NOT FINANCIAL TRANSACTION +20:22:09 Slot [213] | NOT FINANCIAL TRANSACTION +20:22:14 Slot [214] | NOT FINANCIAL TRANSACTION +20:22:25 Slot [215] | NOT FINANCIAL TRANSACTION +20:22:31 +Slot[216] 0200 010000 6213545000818801 ------------- 00 262296 000050000000 5077132622960367BL206213545000818801 507713262296 298127 180893 S +20:22:41 Slot [218] | NOT FINANCIAL TRANSACTION +20:22:48 Slot [217] | NOT FINANCIAL TRANSACTION +20:22:58 Slot [219] | NOT FINANCIAL TRANSACTION +20:23:11 Slot [220] | NOT FINANCIAL TRANSACTION +20:23:12 Slot [222] | NOT FINANCIAL TRANSACTION +20:23:27 Slot [223] | NOT FINANCIAL TRANSACTION +20:23:43 Slot [221] | NOT FINANCIAL TRANSACTION +20:23:53 Slot [224] | NOT FINANCIAL TRANSACTION +20:23:59 Slot [225] | NOT FINANCIAL TRANSACTION +20:24:13 Slot [226] | NOT FINANCIAL TRANSACTION +20:24:15 Slot [227] | NOT FINANCIAL TRANSACTION +20:24:26 Slot [228] | NOT FINANCIAL TRANSACTION +20:24:39 Slot [230] | NOT FINANCIAL TRANSACTION +20:24:40 +Slot[229] 0200 011000 6688990050000593 ------------- 00 465740 000010000000 507703618886160014006688990050000593 507703618886 469738 621354 S +20:24:53 Slot [232] | NOT FINANCIAL TRANSACTION +20:24:56 Slot [231] | NOT FINANCIAL TRANSACTION +20:24:58 Slot [234] | NOT FINANCIAL TRANSACTION +20:25:09 Slot [233] | NOT FINANCIAL TRANSACTION +20:25:15 Slot [235] | NOT FINANCIAL TRANSACTION +20:25:19 Slot [236] | NOT FINANCIAL TRANSACTION +20:25:37 Slot [237] | NOT FINANCIAL TRANSACTION +20:25:50 Slot [238] | NOT FINANCIAL TRANSACTION +20:25:59 Slot [239] | NOT FINANCIAL TRANSACTION +20:26:00 Slot [240] | NOT FINANCIAL TRANSACTION +20:26:03 Slot [241] | NOT FINANCIAL TRANSACTION +20:26:15 Slot [242] | NOT FINANCIAL TRANSACTION +20:26:17 Slot [243] | NOT FINANCIAL TRANSACTION +20:26:30 Slot [246] | NOT FINANCIAL TRANSACTION +20:26:40 Slot [245] | NOT FINANCIAL TRANSACTION +20:26:52 Slot [244] | NOT FINANCIAL TRANSACTION +20:27:06 Slot [247] | NOT FINANCIAL TRANSACTION +20:27:08 Slot [248] | NOT FINANCIAL TRANSACTION +20:27:17 Slot [249] | NOT FINANCIAL TRANSACTION +20:27:19 Slot [250] | NOT FINANCIAL TRANSACTION +20:27:28 Slot [252] | NOT FINANCIAL TRANSACTION +20:27:43 Slot [253] | NOT FINANCIAL TRANSACTION +20:27:56 +Slot[251] 0200 310000 6213544001252052 ------------- 00 223515 000000000000 507700118616010011006213544001252052 507700118616 954721 220699 S +20:27:58 Slot [254] | NOT FINANCIAL TRANSACTION +20:28:08 +Slot[255] 0200 011000 6213545000559132 ------------- 00 254613 000100000000 507700094272010009006213545000559132 507700094272 832566 220699 S +20:28:09 Slot [256] | NOT FINANCIAL TRANSACTION +20:28:13 Slot [257] | NOT FINANCIAL TRANSACTION +20:28:21 Slot [259] | NOT FINANCIAL TRANSACTION +20:28:21 Slot [258] | NOT FINANCIAL TRANSACTION +20:28:36 +Slot[260] 0200 010000 6213544001252052 ------------- 00 223516 000020000000 507700118617010011006213544001252052 507700118617 622624 220699 S +20:28:37 Slot [261] | NOT FINANCIAL TRANSACTION +20:28:44 +Slot[263] 0200 010000 1808930900011917 ------------- 00 466163 000010000000 507702439172050027001808930900011917 507702439172 679790 621354 S +20:28:48 Slot [264] | NOT FINANCIAL TRANSACTION +20:29:04 Slot [265] | NOT FINANCIAL TRANSACTION +20:29:09 +Slot[266] 0200 011000 6213545000559132 ------------- 00 254616 000025000000 507700094274010009006213545000559132 507700094274 408370 220699 S +20:29:10 +Slot[262] 0200 011000 6688990105684201 ------------- 00 171891 000010000000 507720171891015290316688990105684201 507720171891 433892 198901 S +20:29:12 Slot [267] | NOT FINANCIAL TRANSACTION +20:29:18 Slot [268] | NOT FINANCIAL TRANSACTION +20:29:19 Slot [269] | NOT FINANCIAL TRANSACTION +20:29:23 Slot [270] | NOT FINANCIAL TRANSACTION +20:29:30 Slot [271] | NOT FINANCIAL TRANSACTION +20:29:40 Slot [273] | NOT FINANCIAL TRANSACTION +20:29:42 +Slot[272] 0200 010000 6213544001279816 ------------- 00 898370 000050000000 507701690434030020036213544001279816 507701690434 650571 668899 S +20:29:45 +Slot[274] 0200 301000 6688990060026638 ------------- 00 466257 000000000000 507704153349200010006688990060026638 507704153349 899821 621354 S +20:29:51 Slot [275] | NOT FINANCIAL TRANSACTION +20:29:56 Slot [278] | NOT FINANCIAL TRANSACTION +20:29:57 +Slot[276] 0200 011000 6213545000559132 ------------- 51 254619 000002000000 507700094276010009006213545000559132 507700094276 908854 220699 S +20:30:03 Slot [277] | NOT FINANCIAL TRANSACTION +20:30:17 Slot [279] | NOT FINANCIAL TRANSACTION +20:30:23 Slot [280] | NOT FINANCIAL TRANSACTION +20:30:25 Slot [281] | NOT FINANCIAL TRANSACTION +20:30:28 Slot [282] | NOT FINANCIAL TRANSACTION +20:30:39 Slot [283] | NOT FINANCIAL TRANSACTION +20:30:49 Slot [284] | NOT FINANCIAL TRANSACTION +20:30:59 Slot [286] | NOT FINANCIAL TRANSACTION +20:31:00 Slot [285] | NOT FINANCIAL TRANSACTION +20:31:10 Slot [287] | NOT FINANCIAL TRANSACTION +20:31:20 +Slot[288] 0200 311000 6213544001000816 ------------- 00 223519 000000000000 507700118619010011006213544001000816 507700118619 980821 220699 S +20:31:21 Slot [289] | NOT FINANCIAL TRANSACTION +20:31:27 Slot [290] | NOT FINANCIAL TRANSACTION +20:31:28 Slot [291] | NOT FINANCIAL TRANSACTION +20:31:32 Slot [292] | NOT FINANCIAL TRANSACTION +20:31:42 Slot [294] | NOT FINANCIAL TRANSACTION +20:31:43 +Slot[293] 0200 011000 6213544001000816 ------------- 00 223520 000050000000 507700118620010011006213544001000816 507700118620 093925 220699 S +20:31:53 Slot [295] | NOT FINANCIAL TRANSACTION +20:32:08 Slot [296] | NOT FINANCIAL TRANSACTION +20:32:18 Slot [297] | NOT FINANCIAL TRANSACTION +20:32:28 Slot [299] | NOT FINANCIAL TRANSACTION +20:32:29 Slot [298] | NOT FINANCIAL TRANSACTION +20:32:33 Slot [300] | NOT FINANCIAL TRANSACTION +20:32:42 Slot [301] | NOT FINANCIAL TRANSACTION +20:32:43 Slot [302] | NOT FINANCIAL TRANSACTION +20:32:54 Slot [303] | NOT FINANCIAL TRANSACTION +20:33:10 Slot [305] | NOT FINANCIAL TRANSACTION +20:33:21 Slot [304] | NOT FINANCIAL TRANSACTION +20:33:31 Slot [307] | NOT FINANCIAL TRANSACTION +20:33:31 Slot [306] | NOT FINANCIAL TRANSACTION +20:33:38 Slot [308] | NOT FINANCIAL TRANSACTION +20:33:42 Slot [309] | NOT FINANCIAL TRANSACTION +20:33:57 Slot [310] | NOT FINANCIAL TRANSACTION +20:34:13 Slot [311] | NOT FINANCIAL TRANSACTION +20:34:24 Slot [312] | NOT FINANCIAL TRANSACTION +20:34:33 Slot [313] | NOT FINANCIAL TRANSACTION +20:34:34 +Slot[314] 0200 011000 6688990040062455 ------------- 00 466690 000010000000 507703969288010112006688990040062455 507703969288 818218 621354 S +20:34:40 Slot [315] | NOT FINANCIAL TRANSACTION +20:34:43 Slot [316] | NOT FINANCIAL TRANSACTION +20:34:51 Slot [318] | NOT FINANCIAL TRANSACTION +20:34:56 Slot [317] | NOT FINANCIAL TRANSACTION +20:35:02 Slot [319] | NOT FINANCIAL TRANSACTION +20:35:17 Slot [320] | NOT FINANCIAL TRANSACTION +20:35:28 Slot [321] | NOT FINANCIAL TRANSACTION +20:35:35 Slot [322] | NOT FINANCIAL TRANSACTION +20:35:43 Slot [323] | NOT FINANCIAL TRANSACTION +20:35:48 Slot [324] | NOT FINANCIAL TRANSACTION +20:35:54 Slot [326] | NOT FINANCIAL TRANSACTION +20:35:56 +Slot[325] 0200 011000 6688990107471706 ------------- 00 171993 000010000000 507720171993015290316688990107471706 507720171993 248442 198901 S +20:35:59 Slot [327] | NOT FINANCIAL TRANSACTION +20:36:05 Slot [329] | NOT FINANCIAL TRANSACTION +20:36:15 Slot [328] | NOT FINANCIAL TRANSACTION +20:36:31 Slot [330] | NOT FINANCIAL TRANSACTION +20:36:37 Slot [331] | NOT FINANCIAL TRANSACTION +20:36:47 Slot [332] | NOT FINANCIAL TRANSACTION +20:36:53 Slot [334] | NOT FINANCIAL TRANSACTION +20:36:54 +Slot[333] 0200 301000 1808931100004272 ------------- 00 466872 000000000000 507705251609020028001808931100004272 507705251609 085917 621354 S +20:37:02 Slot [335] | NOT FINANCIAL TRANSACTION +20:37:11 +Slot[337] 0200 010000 6213544002044755 ------------- 00 898422 000100000000 507700136542030200046213544002044755 507700136542 705823 668899 S +20:37:17 Slot [336] | NOT FINANCIAL TRANSACTION +20:37:32 +Slot[339] 0200 301000 6688990050022621 ------------- 55 172013 000000000000 507720172013015290296688990050022621 507720172013 530008 198901 S +20:37:33 +Slot[338] 0200 301000 1808931200000527 ------------- 00 466920 000000000000 507704148756200009001808931200000527 507704148756 777489 621354 S +20:37:37 Slot [340] | NOT FINANCIAL TRANSACTION +20:37:39 Slot [342] | NOT FINANCIAL TRANSACTION +20:37:40 +Slot[341] 0200 011000 6213544001380671 ------------- 00 240384 000010000000 507700430273010021006213544001380671 507700430273 113531 220699 S +20:37:48 Slot [343] | NOT FINANCIAL TRANSACTION +20:37:54 +Slot[344] 0200 301000 6688990050022621 ------------- 55 172016 000000000000 507720172016015290296688990050022621 507720172016 080938 198901 S +20:37:58 Slot [345] | NOT FINANCIAL TRANSACTION +20:37:59 Slot [346] | NOT FINANCIAL TRANSACTION +20:38:09 Slot [348] | NOT FINANCIAL TRANSACTION +20:38:14 +Slot[349] 0200 010000 6213544002044755 ------------- 00 898432 000100000000 507700136544030200046213544002044755 507700136544 732389 668899 S +20:38:17 +Slot[347] 0200 011000 1808931200000527 ------------- 00 466970 000040000000 507704148758200009001808931200000527 507704148758 422980 621354 S +20:38:22 +Slot[350] 0200 301000 6688990050022621 ------------- 00 172021 000000000000 507720172021015290296688990050022621 507720172021 661232 198901 S +20:38:26 Slot [354] | NOT FINANCIAL TRANSACTION +20:38:39 Slot [351] | NOT FINANCIAL TRANSACTION +20:38:41 Slot [352] | NOT FINANCIAL TRANSACTION +20:38:48 +Slot[353] 0200 010000 6213541000530686 ------------- 55 898435 000020000000 507701690436030020036213541000530686 507701690436 638358 668899 S +20:38:50 Slot [356] | NOT FINANCIAL TRANSACTION +20:38:57 +Slot[355] 0200 011000 1888880000000505 ------------- 00 467013 000100000000 507704188452190005001888880000000505 507704188452 259883 621354 S +20:39:01 Slot [358] | NOT FINANCIAL TRANSACTION +20:39:03 Slot [357] | NOT FINANCIAL TRANSACTION +20:39:12 Slot [359] | NOT FINANCIAL TRANSACTION +20:39:16 +Slot[361] 0200 010000 6213544002044755 ------------- 55 898442 000100000000 507700136546030200046213544002044755 507700136546 743287 668899 S +20:39:27 Slot [362] | NOT FINANCIAL TRANSACTION +20:39:33 +Slot[364] 0200 010000 6213541000530686 ------------- 51 898446 000020000000 507701690438030020036213541000530686 507701690438 275054 668899 S +20:39:43 Slot [365] | NOT FINANCIAL TRANSACTION +20:39:43 Slot [363] | NOT FINANCIAL TRANSACTION +20:39:56 +Slot[367] 0200 301000 6688990050022621 ------------- 00 172047 000000000000 507720172047015290296688990050022621 507720172047 482528 198901 S +20:39:57 Slot [368] | NOT FINANCIAL TRANSACTION +20:39:57 +Slot[366] 0200 010000 6213544002044755 ------------- 00 898451 000100000000 507700136548030200046213544002044755 507700136548 163299 668899 S +20:39:58 Slot [370] | NOT FINANCIAL TRANSACTION +20:39:58 Slot [371] | NOT FINANCIAL TRANSACTION +20:39:58 +Slot[369] 0200 010000 6213541000530686 ------------- 51 898452 000020000000 507701690439030020036213541000530686 507701690439 366830 668899 S +20:40:08 Slot [375] | NOT FINANCIAL TRANSACTION +20:40:10 +Slot[372] 0200 300000 1808930900011743 ------------- 00 467087 000000000000 507704227295050046001808930900011743 507704227295 255924 621354 S +20:40:20 Slot [374] | NOT FINANCIAL TRANSACTION +20:40:30 Slot [373] | NOT FINANCIAL TRANSACTION +20:40:41 Slot [376] | NOT FINANCIAL TRANSACTION +20:40:45 Slot [377] | NOT FINANCIAL TRANSACTION +20:40:51 Slot [378] | NOT FINANCIAL TRANSACTION +20:40:55 +Slot[379] 0200 010000 6688990103647101 ------------- 14 262333 000100000000 5077132623330464UDPB6688990103647101 507713262333 328967 180893 S +20:40:56 +Slot[380] 0200 010000 1808930900011743 ------------- 51 467139 000005000000 507704227297050046001808930900011743 507704227297 352827 621354 S +20:40:59 Slot [381] | NOT FINANCIAL TRANSACTION +20:41:08 Slot [382] | NOT FINANCIAL TRANSACTION +20:41:13 Slot [384] | NOT FINANCIAL TRANSACTION +20:41:19 Slot [386] | NOT FINANCIAL TRANSACTION +20:41:24 +Slot[383] 0200 301000 1808930400023610 ------------- 00 467160 000000000000 507704340537030033001808930400023610 507704340537 432362 621354 S +20:41:25 +Slot[387] 0200 011000 6688990050022621 ------------- 51 172076 000004000000 507720172076015290296688990050022621 507720172076 685259 198901 S +20:41:34 Slot [388] | NOT FINANCIAL TRANSACTION +20:41:40 +Slot[360] 0200 301000 6688990103647101 ------------- 14 262336 031813404326 5077132623360464UDPB6688990103647101 507713262336 811710 180893 S +20:41:47 Slot [389] | NOT FINANCIAL TRANSACTION +20:41:50 Slot [390] | NOT FINANCIAL TRANSACTION +20:42:06 +Slot[391] 0200 011000 1808930400023610 ------------- 00 467197 000004000000 507704340539030033001808930400023610 507704340539 067884 621354 S +20:42:10 Slot [394] | NOT FINANCIAL TRANSACTION +20:42:17 +Slot[392] 0200 011000 6688990050022621 ------------- 00 172083 000002000000 507720172083015290296688990050022621 507720172083 230075 198901 S +20:42:18 Slot [396] | NOT FINANCIAL TRANSACTION +20:42:22 Slot [393] | NOT FINANCIAL TRANSACTION +20:42:23 +Slot[395] 0200 010000 6688990103647101 ------------- 14 262340 000010000000 5077132623400464UDPB6688990103647101 507713262340 902916 180893 S +20:42:36 Slot [397] | NOT FINANCIAL TRANSACTION +20:42:46 Slot [398] | NOT FINANCIAL TRANSACTION +20:42:49 Slot [400] | NOT FINANCIAL TRANSACTION +20:42:51 +Slot[399] 0200 301000 6213544001350658 ------------- 00 262341 031813415426 5077132623410421BKPH6213544001350658 507713262341 323687 180893 S +20:43:02 Slot [401] | NOT FINANCIAL TRANSACTION +20:43:18 Slot [402] | NOT FINANCIAL TRANSACTION +20:43:23 Slot [403] | NOT FINANCIAL TRANSACTION +20:43:28 Slot [404] | NOT FINANCIAL TRANSACTION +20:43:39 Slot [407] | NOT FINANCIAL TRANSACTION +20:43:48 +Slot[408] 0200 011000 2206990000117341 ------------- 51 467321 000015000000 507703796229010095002206990000117341 507703796229 536658 621354 S +20:43:49 Slot [406] | NOT FINANCIAL TRANSACTION +20:43:51 +Slot[405] 0200 010000 6217995550001793780 ------------- 05 254622 000100000000 507700094278010009006217995550001793 507700094278 304621 220699 S +20:43:51 Slot [409] | NOT FINANCIAL TRANSACTION +20:43:59 Slot [410] | NOT FINANCIAL TRANSACTION +20:44:10 Slot [413] | NOT FINANCIAL TRANSACTION +20:44:12 +Slot[411] 0200 311000 6213542000037094 ------------- 00 223526 000000000000 507700118624010011006213542000037094 507700118624 056477 220699 S +20:44:20 Slot [385] | NOT FINANCIAL TRANSACTION +20:44:26 +Slot[412] 0200 010000 6228480712573086212 ------------- 55 254625 000010000000 507700094280010009006228480712573086 507700094280 729686 220699 S +20:44:28 Slot [414] | NOT FINANCIAL TRANSACTION +20:44:30 Slot [416] | NOT FINANCIAL TRANSACTION +20:44:34 +Slot[415] 0200 301000 2206990000117341 ------------- 00 467398 000000000000 507703796230010095002206990000117341 507703796230 793940 621354 S +20:44:41 +Slot[417] 0200 011000 6213544001350658 ------------- 51 262345 000015000000 5077132623450421BKPH6213544001350658 507713262345 200948 180893 S +20:44:53 Slot [420] | NOT FINANCIAL TRANSACTION +20:44:53 Slot [418] | NOT FINANCIAL TRANSACTION +20:44:57 Slot [419] | NOT FINANCIAL TRANSACTION +20:45:08 Slot [422] | NOT FINANCIAL TRANSACTION +20:45:10 +Slot[421] 0200 301000 6213544001350658 ------------- 00 262346 031813441326 5077132623460421BKPH6213544001350658 507713262346 809499 180893 S +20:45:23 Slot [426] | NOT FINANCIAL TRANSACTION +20:45:27 +Slot[424] 0200 011000 2206990000117341 ------------- 00 467475 000010000000 507703796232010095002206990000117341 507703796232 890982 621354 S +20:45:33 Slot [425] | NOT FINANCIAL TRANSACTION +20:45:33 Slot [427] | NOT FINANCIAL TRANSACTION +20:45:43 Slot [428] | NOT FINANCIAL TRANSACTION +20:45:49 +Slot[429] 0420 010000 6688990040069534 ------------- 00 467458 000010000000 507703750630010091006688990040069534 507703750630 -------- 621354 S +20:45:53 Slot [430] | NOT FINANCIAL TRANSACTION +20:45:55 Slot [431] | NOT FINANCIAL TRANSACTION +20:45:59 Slot [433] | NOT FINANCIAL TRANSACTION +20:46:00 +Slot[432] 0200 011000 6213544001350658 ------------- 00 262348 000005000000 5077132623480421BKPH6213544001350658 507713262348 090728 180893 S +20:46:08 Slot [434] | NOT FINANCIAL TRANSACTION +20:46:19 Slot [435] | NOT FINANCIAL TRANSACTION +20:46:29 Slot [436] | NOT FINANCIAL TRANSACTION +20:46:38 Slot [437] | NOT FINANCIAL TRANSACTION +20:46:44 Slot [438] | NOT FINANCIAL TRANSACTION +20:46:57 Slot [439] | NOT FINANCIAL TRANSACTION +20:46:59 Slot [440] | NOT FINANCIAL TRANSACTION +20:47:01 +Slot[441] 0420 010000 6688990040069534 0000000000000 00 467458 000010000000 507703750630010091006688990040069534 507703750630 -------- 621354 S +20:47:09 Slot [442] | NOT FINANCIAL TRANSACTION +20:47:21 Slot [444] | NOT FINANCIAL TRANSACTION +20:47:35 Slot [443] | NOT FINANCIAL TRANSACTION +20:47:38 +Slot[423] 0200 010000 6688990040069534 ------------- 91 467458 000010000000 507703750630010091006688990040069534 507703750630 768554 621354 S +20:47:43 Slot [446] | NOT FINANCIAL TRANSACTION +20:47:46 Slot [447] | NOT FINANCIAL TRANSACTION +20:47:46 +Slot[445] 0200 300000 6688990040069534 ------------- 00 467615 000000000000 507703750634010091006688990040069534 507703750634 289908 621354 S +20:47:56 Slot [448] | NOT FINANCIAL TRANSACTION +20:47:59 Slot [449] | NOT FINANCIAL TRANSACTION +20:48:11 Slot [450] | NOT FINANCIAL TRANSACTION +20:48:22 Slot [451] | NOT FINANCIAL TRANSACTION +20:48:32 Slot [453] | NOT FINANCIAL TRANSACTION +20:48:44 Slot [452] | NOT FINANCIAL TRANSACTION +20:48:48 Slot [454] | NOT FINANCIAL TRANSACTION +20:48:58 Slot [455] | NOT FINANCIAL TRANSACTION +20:49:01 Slot [456] | NOT FINANCIAL TRANSACTION +20:49:08 Slot [457] | NOT FINANCIAL TRANSACTION +20:49:16 +Slot[458] 0200 010000 6688990040069534 ------------- 00 467714 000010000000 507703750636010091006688990040069534 507703750636 182106 621354 S +20:49:21 Slot [460] | NOT FINANCIAL TRANSACTION +20:49:22 +Slot[459] 0200 012000 6213544000417425 ------------- 00 240773 000100000000 507700410397080003006213544000417425 507700410397 164416 220699 S +20:49:24 Slot [461] | NOT FINANCIAL TRANSACTION +20:49:30 +Slot[463] 0200 011000 6213543000016302 ------------- 00 305713 000030000000 507700079264010007006213543000016302 507700079264 433729 220699 S +20:49:34 Slot [462] | NOT FINANCIAL TRANSACTION +20:49:44 Slot [464] | NOT FINANCIAL TRANSACTION +20:49:53 Slot [465] | NOT FINANCIAL TRANSACTION +20:49:56 Slot [466] | NOT FINANCIAL TRANSACTION +20:49:57 Slot [468] | NOT FINANCIAL TRANSACTION +20:50:03 Slot [467] | NOT FINANCIAL TRANSACTION +20:50:11 Slot [469] | NOT FINANCIAL TRANSACTION +20:50:21 Slot [470] | NOT FINANCIAL TRANSACTION +20:50:27 +Slot[471] 0200 300000 6688990040069534 ------------- 00 467782 000000000000 507703750637010091006688990040069534 507703750637 755680 621354 S +20:50:31 Slot [472] | NOT FINANCIAL TRANSACTION +20:50:41 Slot [473] | NOT FINANCIAL TRANSACTION +20:50:44 Slot [474] | NOT FINANCIAL TRANSACTION +20:50:52 Slot [475] | NOT FINANCIAL TRANSACTION +20:50:58 Slot [476] | NOT FINANCIAL TRANSACTION +20:50:58 Slot [477] | NOT FINANCIAL TRANSACTION +20:51:05 Slot [478] | NOT FINANCIAL TRANSACTION +20:51:07 Slot [479] | NOT FINANCIAL TRANSACTION +20:51:12 +Slot[481] 0200 010000 6688990040055467 ------------- 00 467830 000005000000 507704227305050046006688990040055467 507704227305 514595 621354 S +20:51:17 Slot [480] | NOT FINANCIAL TRANSACTION +20:51:28 Slot [482] | NOT FINANCIAL TRANSACTION +20:51:39 Slot [483] | NOT FINANCIAL TRANSACTION +20:51:49 Slot [484] | NOT FINANCIAL TRANSACTION +20:52:00 Slot [486] | NOT FINANCIAL TRANSACTION +20:52:03 Slot [485] | NOT FINANCIAL TRANSACTION +20:52:08 Slot [489] | NOT FINANCIAL TRANSACTION +20:52:12 Slot [487] | NOT FINANCIAL TRANSACTION +20:52:26 Slot [490] | NOT FINANCIAL TRANSACTION +20:52:37 Slot [488] | NOT FINANCIAL TRANSACTION +20:52:49 Slot [491] | NOT FINANCIAL TRANSACTION +20:53:04 Slot [493] | NOT FINANCIAL TRANSACTION +20:53:08 +Slot[492] 0200 011000 6688990600855306 ------------- 00 467982 000030000000 507703882369010104006688990600855306 507703882369 966825 621354 S +20:53:08 Slot [495] | NOT FINANCIAL TRANSACTION +20:53:10 Slot [494] | NOT FINANCIAL TRANSACTION +20:53:15 Slot [496] | NOT FINANCIAL TRANSACTION +20:53:26 Slot [498] | NOT FINANCIAL TRANSACTION +20:53:37 Slot [497] | NOT FINANCIAL TRANSACTION +20:53:47 Slot [499] | NOT FINANCIAL TRANSACTION +20:53:53 +Slot[0] 0200 010000 6213544001454534 ------------- 00 898596 000010000000 507702556036030160046213544001454534 507702556036 688285 668899 S +20:53:58 Slot [1] | NOT FINANCIAL TRANSACTION +20:54:00 +Slot[2] 0200 301000 6213544001906277 ------------- 00 898597 000000000000 507702475507030200326213544001906277 507702475507 869022 668899 S +20:54:09 Slot [3] | NOT FINANCIAL TRANSACTION +20:54:12 Slot [5] | NOT FINANCIAL TRANSACTION +20:54:13 Slot [4] | NOT FINANCIAL TRANSACTION +20:54:20 Slot [6] | NOT FINANCIAL TRANSACTION +20:54:31 Slot [7] | NOT FINANCIAL TRANSACTION +20:54:42 Slot [8] | NOT FINANCIAL TRANSACTION +20:54:57 Slot [10] | NOT FINANCIAL TRANSACTION +20:54:58 Slot [9] | NOT FINANCIAL TRANSACTION +20:55:09 Slot [11] | NOT FINANCIAL TRANSACTION +20:55:14 Slot [12] | NOT FINANCIAL TRANSACTION +20:55:18 Slot [13] | NOT FINANCIAL TRANSACTION +20:55:20 Slot [15] | NOT FINANCIAL TRANSACTION +20:55:24 +Slot[14] 0200 010000 6213544001906277 ------------- 00 898599 000100000000 507702475509030200326213544001906277 507702475509 897561 668899 S +20:55:31 Slot [16] | NOT FINANCIAL TRANSACTION +20:55:42 Slot [18] | NOT FINANCIAL TRANSACTION +20:55:52 Slot [17] | NOT FINANCIAL TRANSACTION +20:55:58 Slot [20] | NOT FINANCIAL TRANSACTION +20:56:02 +Slot[19] 0200 301000 6688990020017313 ------------- 00 468148 000000000000 507703364993130016006688990020017313 507703364993 379426 621354 S +20:56:02 Slot [22] | NOT FINANCIAL TRANSACTION +20:56:12 Slot [21] | NOT FINANCIAL TRANSACTION +20:56:16 Slot [23] | NOT FINANCIAL TRANSACTION +20:56:19 +Slot[25] 0200 301000 6688990040092908 ------------- 75 468155 000000000000 507703969301010112006688990040092908 507703969301 970046 621354 S +20:56:23 Slot [24] | NOT FINANCIAL TRANSACTION +20:56:23 Slot [26] | NOT FINANCIAL TRANSACTION +20:56:38 Slot [27] | NOT FINANCIAL TRANSACTION +20:56:45 +Slot[28] 0200 301000 6213544001454534 ------------- 00 898610 000000000000 507702556038030160046213544001454534 507702556038 598828 668899 S +20:56:50 Slot [29] | NOT FINANCIAL TRANSACTION +20:57:04 Slot [30] | NOT FINANCIAL TRANSACTION +20:57:14 Slot [32] | NOT FINANCIAL TRANSACTION +20:57:17 +Slot[31] 0200 010000 6213544001454534 ------------- 00 898620 000010000000 507702556039030160046213544001454534 507702556039 374365 668899 S +20:57:18 Slot [33] | NOT FINANCIAL TRANSACTION +20:57:25 Slot [34] | NOT FINANCIAL TRANSACTION +20:57:28 Slot [35] | NOT FINANCIAL TRANSACTION +20:57:36 Slot [36] | NOT FINANCIAL TRANSACTION +20:57:46 Slot [37] | NOT FINANCIAL TRANSACTION +20:57:58 +Slot[38] 0200 010000 6213545000624142 ------------- 61 262356 000200000000 5077132623560122ATBR6213545000624142 507713262356 506131 180893 S +20:58:07 Slot [39] | NOT FINANCIAL TRANSACTION +20:58:17 Slot [42] | NOT FINANCIAL TRANSACTION +20:58:20 Slot [40] | NOT FINANCIAL TRANSACTION +20:58:20 +Slot[41] 0200 011000 6688990106734005 ------------- 14 262358 000005000000 5077132623580102SAPA6688990106734005 507713262358 436561 180893 S +20:58:27 +Slot[44] 0200 010000 6213544001454534 ------------- 00 898632 000010000000 507702556041030160046213544001454534 507702556041 803499 668899 S +20:58:32 Slot [43] | NOT FINANCIAL TRANSACTION +20:58:33 Slot [45] | NOT FINANCIAL TRANSACTION +20:58:43 +Slot[47] 0200 010000 6213545000624142 ------------- 61 262360 000200000000 5077132623600122ATBR6213545000624142 507713262360 843242 180893 S +20:58:44 +Slot[46] 0200 300000 6688990040069534 ------------- 00 468249 000000000000 507703750654010091006688990040069534 507703750654 053648 621354 S +20:58:54 Slot [48] | NOT FINANCIAL TRANSACTION +20:59:04 Slot [49] | NOT FINANCIAL TRANSACTION +20:59:08 +Slot[50] 0200 011000 6688990106734005 ------------- 14 262362 000005000000 5077132623620102SAPA6688990106734005 507713262362 522863 180893 S +20:59:20 Slot [54] | NOT FINANCIAL TRANSACTION +20:59:22 Slot [51] | NOT FINANCIAL TRANSACTION +20:59:30 Slot [52] | NOT FINANCIAL TRANSACTION +20:59:38 Slot [55] | NOT FINANCIAL TRANSACTION +20:59:40 Slot [53] | NOT FINANCIAL TRANSACTION +20:59:51 Slot [56] | NOT FINANCIAL TRANSACTION +20:59:57 Slot [57] | NOT FINANCIAL TRANSACTION +21:00:02 Slot [58] | NOT FINANCIAL TRANSACTION +21:00:08 +Slot[59] 0200 012000 6213545000624142 ------------- 00 262364 000020000000 5077132623640122ATBR6213545000624142 507713262364 495821 180893 S +21:00:09 +Slot[60] 0200 302000 2206990000100784 ------------- 00 468300 000000000000 507702857841160011002206990000100784 507702857841 169287 621354 S +21:00:10 +Slot[61] 0200 301000 6213544001886776 ------------- 00 898644 000000000000 507702223527030080056213544001886776 507702223527 553139 668899 S +21:00:14 +Slot[62] 0200 011000 6213544000346541 ------------- 00 172338 000100000000 507721172338015290176213544000346541 507721172338 235438 198901 S +21:00:17 Slot [64] | NOT FINANCIAL TRANSACTION +21:00:24 Slot [63] | NOT FINANCIAL TRANSACTION +21:00:32 Slot [65] | NOT FINANCIAL TRANSACTION +21:00:42 Slot [66] | NOT FINANCIAL TRANSACTION +21:00:43 Slot [67] | NOT FINANCIAL TRANSACTION +21:00:58 Slot [68] | NOT FINANCIAL TRANSACTION +21:00:59 Slot [69] | NOT FINANCIAL TRANSACTION +21:01:09 Slot [70] | NOT FINANCIAL TRANSACTION +21:01:21 +Slot[71] 0200 301000 6213544001886776 ------------- 00 898654 000000000000 507702223529030080056213544001886776 507702223529 625072 668899 S +21:01:25 Slot [73] | NOT FINANCIAL TRANSACTION +21:01:26 Slot [72] | NOT FINANCIAL TRANSACTION +21:01:30 Slot [74] | NOT FINANCIAL TRANSACTION +21:01:35 Slot [75] | NOT FINANCIAL TRANSACTION +21:01:45 Slot [77] | NOT FINANCIAL TRANSACTION +21:01:48 Slot [76] | NOT FINANCIAL TRANSACTION +21:02:00 Slot [78] | NOT FINANCIAL TRANSACTION +21:02:10 Slot [79] | NOT FINANCIAL TRANSACTION +21:02:21 Slot [80] | NOT FINANCIAL TRANSACTION +21:02:28 Slot [81] | NOT FINANCIAL TRANSACTION +21:02:31 Slot [82] | NOT FINANCIAL TRANSACTION +21:02:41 Slot [83] | NOT FINANCIAL TRANSACTION +21:02:48 +Slot[84] 0200 300000 6213544001886776 ------------- 00 898664 000000000000 507702223530030080056213544001886776 507702223530 638528 668899 S +21:02:53 Slot [86] | NOT FINANCIAL TRANSACTION +21:02:56 Slot [85] | NOT FINANCIAL TRANSACTION +21:03:06 Slot [87] | NOT FINANCIAL TRANSACTION +21:03:10 +Slot[88] 0200 011000 6688990107026203 ------------- 00 468460 000010000000 507704227307050046006688990107026203 507704227307 355788 621354 S +21:03:17 Slot [89] | NOT FINANCIAL TRANSACTION +21:03:27 Slot [90] | NOT FINANCIAL TRANSACTION +21:03:30 Slot [92] | NOT FINANCIAL TRANSACTION +21:03:37 Slot [91] | NOT FINANCIAL TRANSACTION +21:03:52 Slot [93] | NOT FINANCIAL TRANSACTION +21:03:58 Slot [94] | NOT FINANCIAL TRANSACTION +21:04:03 +Slot[95] 0200 011000 6213548000325371 ------------- 00 262372 000005000000 5077142623720115LPBR6213548000325371 507714262372 498144 180893 S +21:04:13 Slot [96] | NOT FINANCIAL TRANSACTION +21:04:28 Slot [98] | NOT FINANCIAL TRANSACTION +21:04:32 Slot [99] | NOT FINANCIAL TRANSACTION +21:04:39 Slot [97] | NOT FINANCIAL TRANSACTION +21:04:49 Slot [100] | NOT FINANCIAL TRANSACTION +21:04:57 Slot [103] | NOT FINANCIAL TRANSACTION +21:04:59 Slot [101] | NOT FINANCIAL TRANSACTION +21:05:03 Slot [102] | NOT FINANCIAL TRANSACTION +21:05:09 Slot [105] | NOT FINANCIAL TRANSACTION +21:05:20 Slot [104] | NOT FINANCIAL TRANSACTION +21:05:30 Slot [107] | NOT FINANCIAL TRANSACTION +21:05:34 Slot [106] | NOT FINANCIAL TRANSACTION +21:05:41 Slot [108] | NOT FINANCIAL TRANSACTION +21:05:51 Slot [110] | NOT FINANCIAL TRANSACTION +21:05:59 Slot [111] | NOT FINANCIAL TRANSACTION +21:06:02 Slot [109] | NOT FINANCIAL TRANSACTION +21:06:06 Slot [112] | NOT FINANCIAL TRANSACTION +21:06:08 Slot [113] | NOT FINANCIAL TRANSACTION +21:06:17 Slot [114] | NOT FINANCIAL TRANSACTION +21:06:32 Slot [115] | NOT FINANCIAL TRANSACTION +21:06:36 Slot [116] | NOT FINANCIAL TRANSACTION +21:06:42 Slot [117] | NOT FINANCIAL TRANSACTION +21:06:52 Slot [118] | NOT FINANCIAL TRANSACTION +21:07:03 Slot [119] | NOT FINANCIAL TRANSACTION +21:07:13 Slot [120] | NOT FINANCIAL TRANSACTION +21:07:13 Slot [121] | NOT FINANCIAL TRANSACTION +21:07:26 Slot [123] | NOT FINANCIAL TRANSACTION +21:07:36 Slot [124] | NOT FINANCIAL TRANSACTION +21:07:38 Slot [122] | NOT FINANCIAL TRANSACTION +21:07:51 Slot [125] | NOT FINANCIAL TRANSACTION +21:08:01 Slot [126] | NOT FINANCIAL TRANSACTION +21:08:12 Slot [127] | NOT FINANCIAL TRANSACTION +21:08:18 Slot [128] | NOT FINANCIAL TRANSACTION +21:08:22 Slot [130] | NOT FINANCIAL TRANSACTION +21:08:33 Slot [129] | NOT FINANCIAL TRANSACTION +21:08:40 Slot [131] | NOT FINANCIAL TRANSACTION +21:08:48 Slot [132] | NOT FINANCIAL TRANSACTION +21:09:04 Slot [133] | NOT FINANCIAL TRANSACTION +21:09:19 Slot [134] | NOT FINANCIAL TRANSACTION +21:09:23 Slot [135] | NOT FINANCIAL TRANSACTION +21:09:29 Slot [136] | NOT FINANCIAL TRANSACTION +21:09:39 Slot [137] | NOT FINANCIAL TRANSACTION +21:09:42 Slot [138] | NOT FINANCIAL TRANSACTION +21:09:50 Slot [139] | NOT FINANCIAL TRANSACTION +21:09:57 Slot [140] | NOT FINANCIAL TRANSACTION +21:10:01 Slot [141] | NOT FINANCIAL TRANSACTION +21:10:17 Slot [144] | NOT FINANCIAL TRANSACTION +21:10:19 +Slot[142] 0200 302000 6688990040069534 ------------- 14 262377 031814092226 5077142623770102SAPA6688990040069534 507714262377 606919 180893 S +21:10:28 Slot [143] | NOT FINANCIAL TRANSACTION +21:10:32 Slot [146] | NOT FINANCIAL TRANSACTION +21:10:42 Slot [145] | NOT FINANCIAL TRANSACTION +21:10:44 Slot [147] | NOT FINANCIAL TRANSACTION +21:10:52 Slot [149] | NOT FINANCIAL TRANSACTION +21:10:59 Slot [150] | NOT FINANCIAL TRANSACTION +21:11:07 Slot [151] | NOT FINANCIAL TRANSACTION +21:11:18 Slot [148] | NOT FINANCIAL TRANSACTION +21:11:29 Slot [152] | NOT FINANCIAL TRANSACTION +21:11:33 Slot [153] | NOT FINANCIAL TRANSACTION +21:11:40 Slot [154] | NOT FINANCIAL TRANSACTION +21:11:46 Slot [155] | NOT FINANCIAL TRANSACTION +21:11:50 Slot [156] | NOT FINANCIAL TRANSACTION +21:11:58 +Slot[158] 0200 300000 6688990040069534 ------------- 00 468987 000000000000 507703750664010091006688990040069534 507703750664 923316 621354 S +21:12:00 Slot [160] | NOT FINANCIAL TRANSACTION +21:12:10 Slot [157] | NOT FINANCIAL TRANSACTION +21:12:16 Slot [161] | NOT FINANCIAL TRANSACTION +21:12:19 +Slot[159] 0200 010000 6213548000550960 ------------- 00 898715 000020000000 507702088184030060086213548000550960 507702088184 627482 668899 S +21:12:21 Slot [162] | NOT FINANCIAL TRANSACTION +21:12:36 Slot [163] | NOT FINANCIAL TRANSACTION +21:12:38 Slot [164] | NOT FINANCIAL TRANSACTION +21:12:48 Slot [165] | NOT FINANCIAL TRANSACTION +21:12:51 Slot [166] | NOT FINANCIAL TRANSACTION +21:13:01 Slot [169] | NOT FINANCIAL TRANSACTION +21:13:12 Slot [167] | NOT FINANCIAL TRANSACTION +21:13:22 Slot [168] | NOT FINANCIAL TRANSACTION +21:13:32 Slot [170] | NOT FINANCIAL TRANSACTION +21:13:44 Slot [173] | NOT FINANCIAL TRANSACTION +21:13:45 +Slot[171] 0200 010000 6213548000158111 ------------- 00 898721 000005000000 507702209681030060096213548000158111 507702209681 448189 668899 S +21:13:47 Slot [172] | NOT FINANCIAL TRANSACTION +21:13:50 Slot [174] | NOT FINANCIAL TRANSACTION +21:14:02 Slot [175] | NOT FINANCIAL TRANSACTION +21:14:13 Slot [176] | NOT FINANCIAL TRANSACTION +21:14:23 Slot [177] | NOT FINANCIAL TRANSACTION +21:14:34 Slot [178] | NOT FINANCIAL TRANSACTION +21:14:49 Slot [179] | NOT FINANCIAL TRANSACTION +21:14:50 Slot [181] | NOT FINANCIAL TRANSACTION +21:14:52 Slot [180] | NOT FINANCIAL TRANSACTION +21:14:57 Slot [182] | NOT FINANCIAL TRANSACTION +21:15:00 Slot [183] | NOT FINANCIAL TRANSACTION +21:15:10 Slot [184] | NOT FINANCIAL TRANSACTION +21:15:21 Slot [185] | NOT FINANCIAL TRANSACTION +21:15:31 Slot [186] | NOT FINANCIAL TRANSACTION +21:15:41 Slot [187] | NOT FINANCIAL TRANSACTION +21:15:52 Slot [189] | NOT FINANCIAL TRANSACTION +21:15:54 Slot [190] | NOT FINANCIAL TRANSACTION +21:15:54 Slot [188] | NOT FINANCIAL TRANSACTION +21:15:59 Slot [191] | NOT FINANCIAL TRANSACTION +21:16:03 Slot [192] | NOT FINANCIAL TRANSACTION +21:16:19 Slot [194] | NOT FINANCIAL TRANSACTION +21:16:30 +Slot[193] 0200 011000 6213544000299567 ------------- 00 262382 000020000000 5077142623820368KMMX6213544000299567 507714262382 732053 180893 S +21:16:39 Slot [195] | NOT FINANCIAL TRANSACTION +21:16:49 Slot [196] | NOT FINANCIAL TRANSACTION +21:16:56 Slot [199] | NOT FINANCIAL TRANSACTION +21:16:57 +Slot[197] 0200 010000 6213544002094172 ------------- 00 898736 000010000000 507702147939030200246213544002094172 507702147939 754245 668899 S +21:16:59 Slot [198] | NOT FINANCIAL TRANSACTION +21:17:00 Slot [200] | NOT FINANCIAL TRANSACTION +21:17:10 Slot [202] | NOT FINANCIAL TRANSACTION +21:17:21 Slot [201] | NOT FINANCIAL TRANSACTION +21:17:31 Slot [203] | NOT FINANCIAL TRANSACTION +21:17:36 +Slot[204] 0200 300000 6688990060012240 ------------- 00 469221 000000000000 507704153354200010006688990060012240 507704153354 308343 621354 S +21:17:41 Slot [205] | NOT FINANCIAL TRANSACTION +21:17:51 Slot [206] | NOT FINANCIAL TRANSACTION +21:17:58 Slot [207] | NOT FINANCIAL TRANSACTION +21:18:01 Slot [208] | NOT FINANCIAL TRANSACTION +21:18:04 Slot [210] | NOT FINANCIAL TRANSACTION +21:18:11 Slot [209] | NOT FINANCIAL TRANSACTION +21:18:22 Slot [211] | NOT FINANCIAL TRANSACTION +21:18:32 Slot [212] | NOT FINANCIAL TRANSACTION +21:18:43 Slot [213] | NOT FINANCIAL TRANSACTION +21:18:53 Slot [214] | NOT FINANCIAL TRANSACTION +21:19:00 Slot [215] | NOT FINANCIAL TRANSACTION +21:19:03 Slot [216] | NOT FINANCIAL TRANSACTION +21:19:09 Slot [217] | NOT FINANCIAL TRANSACTION +21:19:14 Slot [219] | NOT FINANCIAL TRANSACTION +21:19:14 +Slot[218] 0200 010000 6688990040069542 ------------- 00 469260 000100000000 507705334919050047006688990040069542 507705334919 072004 621354 S +21:19:30 Slot [220] | NOT FINANCIAL TRANSACTION +21:19:40 Slot [222] | NOT FINANCIAL TRANSACTION +21:19:51 Slot [221] | NOT FINANCIAL TRANSACTION +21:19:51 +Slot[223] 0200 010000 6688990060012240 ------------- 00 469275 000010000000 507704153356200010006688990060012240 507704153356 449697 621354 S +21:19:57 Slot [225] | NOT FINANCIAL TRANSACTION +21:20:02 Slot [226] | NOT FINANCIAL TRANSACTION +21:20:03 +Slot[224] 0200 011000 1808930600040018 ------------- 00 469280 000020000000 507704272408030026001808930600040018 507704272408 603828 621354 S +21:20:06 Slot [227] | NOT FINANCIAL TRANSACTION +21:20:14 Slot [228] | NOT FINANCIAL TRANSACTION +21:20:17 Slot [230] | NOT FINANCIAL TRANSACTION +21:20:32 Slot [229] | NOT FINANCIAL TRANSACTION +21:20:42 Slot [231] | NOT FINANCIAL TRANSACTION +21:20:46 +Slot[232] 0200 301000 6688990040069542 ------------- 00 469314 000000000000 507705334920050047006688990040069542 507705334920 369358 621354 S +21:20:52 Slot [234] | NOT FINANCIAL TRANSACTION +21:20:59 Slot [233] | NOT FINANCIAL TRANSACTION +21:21:03 Slot [236] | NOT FINANCIAL TRANSACTION +21:21:04 Slot [235] | NOT FINANCIAL TRANSACTION +21:21:10 +Slot[237] 0200 301000 6213544000144029 ------------- 00 898779 000000000000 507702147941030200246213544000144029 507702147941 419326 668899 S +21:21:13 Slot [238] | NOT FINANCIAL TRANSACTION +21:21:19 Slot [239] | NOT FINANCIAL TRANSACTION +21:21:24 Slot [240] | NOT FINANCIAL TRANSACTION +21:21:34 Slot [241] | NOT FINANCIAL TRANSACTION +21:21:39 +Slot[242] 0200 010000 6213544000144029 ------------- 00 898787 000010000000 507702147942030200246213544000144029 507702147942 400793 668899 S +21:21:45 Slot [243] | NOT FINANCIAL TRANSACTION +21:21:55 Slot [245] | NOT FINANCIAL TRANSACTION +21:21:55 +Slot[246] 0200 010000 6688990040069542 ------------- 00 469386 000100000000 507705334922050047006688990040069542 507705334922 084948 621354 S +21:22:06 Slot [247] | NOT FINANCIAL TRANSACTION +21:22:06 Slot [244] | NOT FINANCIAL TRANSACTION +21:22:16 Slot [248] | NOT FINANCIAL TRANSACTION +21:22:24 Slot [249] | NOT FINANCIAL TRANSACTION +21:22:26 Slot [250] | NOT FINANCIAL TRANSACTION +21:22:37 Slot [252] | NOT FINANCIAL TRANSACTION +21:22:48 Slot [253] | NOT FINANCIAL TRANSACTION +21:22:52 Slot [251] | NOT FINANCIAL TRANSACTION +21:23:02 Slot [255] | NOT FINANCIAL TRANSACTION +21:23:02 +Slot[254] 0200 010000 6688990040069542 ------------- 51 469445 000020000000 507705334924050047006688990040069542 507705334924 420813 621354 S +21:23:02 Slot [256] | NOT FINANCIAL TRANSACTION +21:23:08 Slot [257] | NOT FINANCIAL TRANSACTION +21:23:18 Slot [259] | NOT FINANCIAL TRANSACTION +21:23:28 Slot [258] | NOT FINANCIAL TRANSACTION +21:23:29 Slot [260] | NOT FINANCIAL TRANSACTION +21:23:40 Slot [261] | NOT FINANCIAL TRANSACTION +21:23:53 Slot [264] | NOT FINANCIAL TRANSACTION +21:23:57 +Slot[263] 0200 301000 6688990040069542 ------------- 00 469464 000000000000 507705334925050047006688990040069542 507705334925 646666 621354 S +21:24:05 Slot [265] | NOT FINANCIAL TRANSACTION +21:24:10 Slot [266] | NOT FINANCIAL TRANSACTION +21:24:16 Slot [262] | NOT FINANCIAL TRANSACTION +21:24:20 +Slot[267] 0200 010000 6213545001082266 ------------- 00 262386 000100000000 5077142623860141HQBR6213545001082266 507714262386 079295 180893 S +21:24:31 Slot [268] | NOT FINANCIAL TRANSACTION +21:24:34 Slot [269] | NOT FINANCIAL TRANSACTION +21:24:42 Slot [270] | NOT FINANCIAL TRANSACTION +21:24:52 Slot [271] | NOT FINANCIAL TRANSACTION +21:24:57 Slot [273] | NOT FINANCIAL TRANSACTION +21:25:02 Slot [272] | NOT FINANCIAL TRANSACTION +21:25:12 Slot [275] | NOT FINANCIAL TRANSACTION +21:25:12 Slot [278] | NOT FINANCIAL TRANSACTION +21:25:14 +Slot[274] 0200 011000 6688990040030080 ------------- 51 469528 000015000000 507703750670010091006688990040030080 507703750670 393345 621354 S +21:25:22 Slot [276] | NOT FINANCIAL TRANSACTION +21:25:32 Slot [277] | NOT FINANCIAL TRANSACTION +21:25:39 Slot [279] | NOT FINANCIAL TRANSACTION +21:25:43 Slot [280] | NOT FINANCIAL TRANSACTION +21:25:53 +Slot[281] 0200 301000 6688990040030080 ------------- 00 469575 000000000000 507703750671010091006688990040030080 507703750671 677276 621354 S +21:25:53 Slot [282] | NOT FINANCIAL TRANSACTION +21:25:59 Slot [283] | NOT FINANCIAL TRANSACTION +21:26:04 Slot [284] | NOT FINANCIAL TRANSACTION +21:26:14 Slot [286] | NOT FINANCIAL TRANSACTION +21:26:15 Slot [285] | NOT FINANCIAL TRANSACTION +21:26:25 Slot [287] | NOT FINANCIAL TRANSACTION +21:26:36 Slot [288] | NOT FINANCIAL TRANSACTION +21:26:44 Slot [289] | NOT FINANCIAL TRANSACTION +21:26:51 Slot [290] | NOT FINANCIAL TRANSACTION +21:27:06 Slot [291] | NOT FINANCIAL TRANSACTION +21:27:16 Slot [294] | NOT FINANCIAL TRANSACTION +21:27:16 +Slot[292] 0200 011000 6688990040030080 ------------- 51 469627 000010000000 507703750673010091006688990040030080 507703750673 465203 621354 S +21:27:22 Slot [293] | NOT FINANCIAL TRANSACTION +21:27:32 Slot [295] | NOT FINANCIAL TRANSACTION +21:27:48 Slot [296] | NOT FINANCIAL TRANSACTION +21:27:49 Slot [297] | NOT FINANCIAL TRANSACTION +21:27:59 Slot [299] | NOT FINANCIAL TRANSACTION +21:28:14 Slot [298] | NOT FINANCIAL TRANSACTION +21:28:18 Slot [300] | NOT FINANCIAL TRANSACTION +21:28:24 Slot [301] | NOT FINANCIAL TRANSACTION +21:28:34 Slot [302] | NOT FINANCIAL TRANSACTION +21:28:45 Slot [303] | NOT FINANCIAL TRANSACTION +21:28:54 Slot [305] | NOT FINANCIAL TRANSACTION +21:28:56 Slot [304] | NOT FINANCIAL TRANSACTION +21:29:06 Slot [307] | NOT FINANCIAL TRANSACTION +21:29:20 Slot [306] | NOT FINANCIAL TRANSACTION +21:29:22 Slot [308] | NOT FINANCIAL TRANSACTION +21:29:32 Slot [309] | NOT FINANCIAL TRANSACTION +21:29:42 Slot [310] | NOT FINANCIAL TRANSACTION +21:29:52 Slot [311] | NOT FINANCIAL TRANSACTION +21:29:57 Slot [312] | NOT FINANCIAL TRANSACTION +21:29:59 Slot [313] | NOT FINANCIAL TRANSACTION +21:30:03 Slot [314] | NOT FINANCIAL TRANSACTION +21:30:13 Slot [315] | NOT FINANCIAL TRANSACTION +21:30:22 Slot [316] | NOT FINANCIAL TRANSACTION +21:30:24 Slot [318] | NOT FINANCIAL TRANSACTION +21:30:35 Slot [317] | NOT FINANCIAL TRANSACTION +21:30:51 Slot [319] | NOT FINANCIAL TRANSACTION +21:30:59 Slot [320] | NOT FINANCIAL TRANSACTION +21:31:01 Slot [321] | NOT FINANCIAL TRANSACTION +21:31:04 Slot [322] | NOT FINANCIAL TRANSACTION +21:31:11 Slot [323] | NOT FINANCIAL TRANSACTION +21:31:22 Slot [326] | NOT FINANCIAL TRANSACTION +21:31:24 Slot [324] | NOT FINANCIAL TRANSACTION +21:31:37 Slot [325] | NOT FINANCIAL TRANSACTION +21:31:53 Slot [327] | NOT FINANCIAL TRANSACTION +21:32:03 Slot [329] | NOT FINANCIAL TRANSACTION +21:32:09 Slot [328] | NOT FINANCIAL TRANSACTION +21:32:13 Slot [330] | NOT FINANCIAL TRANSACTION +21:32:23 Slot [331] | NOT FINANCIAL TRANSACTION +21:32:26 Slot [332] | NOT FINANCIAL TRANSACTION +21:32:34 Slot [334] | NOT FINANCIAL TRANSACTION +21:32:44 Slot [333] | NOT FINANCIAL TRANSACTION +21:32:56 +Slot[335] 0200 010000 6213545001005242 ------------- 00 262391 000050000000 5077142623910114XKBR6213545001005242 507714262391 595142 180893 S +21:33:05 Slot [337] | NOT FINANCIAL TRANSACTION +21:33:14 Slot [336] | NOT FINANCIAL TRANSACTION +21:33:15 Slot [339] | NOT FINANCIAL TRANSACTION +21:33:25 Slot [338] | NOT FINANCIAL TRANSACTION +21:33:28 Slot [340] | NOT FINANCIAL TRANSACTION +21:33:37 Slot [342] | NOT FINANCIAL TRANSACTION +21:33:47 Slot [341] | NOT FINANCIAL TRANSACTION +21:33:47 Slot [343] | NOT FINANCIAL TRANSACTION +21:34:02 Slot [344] | NOT FINANCIAL TRANSACTION +21:34:12 Slot [345] | NOT FINANCIAL TRANSACTION +21:34:19 Slot [346] | NOT FINANCIAL TRANSACTION +21:34:28 Slot [348] | NOT FINANCIAL TRANSACTION +21:34:30 Slot [349] | NOT FINANCIAL TRANSACTION +21:34:38 Slot [347] | NOT FINANCIAL TRANSACTION +21:34:49 Slot [350] | NOT FINANCIAL TRANSACTION +21:34:57 Slot [354] | NOT FINANCIAL TRANSACTION +21:35:04 Slot [351] | NOT FINANCIAL TRANSACTION +21:35:19 Slot [352] | NOT FINANCIAL TRANSACTION +21:35:24 Slot [356] | NOT FINANCIAL TRANSACTION +21:35:24 +Slot[353] 0200 010000 6213544001399481 ------------- 00 262395 000010000000 5077142623950362CPSU6213544001399481 507714262395 017521 180893 S +21:35:32 Slot [355] | NOT FINANCIAL TRANSACTION +21:35:34 Slot [358] | NOT FINANCIAL TRANSACTION +21:35:44 Slot [357] | NOT FINANCIAL TRANSACTION +21:35:54 +Slot[359] 0200 011000 6688990104782006 ------------- 00 470002 000020000000 507703750681010091006688990104782006 507703750681 505616 621354 S +21:35:54 Slot [361] | NOT FINANCIAL TRANSACTION +21:35:59 Slot [362] | NOT FINANCIAL TRANSACTION +21:36:06 Slot [364] | NOT FINANCIAL TRANSACTION +21:36:11 +Slot[365] 0200 010000 6213544001399481 ------------- 00 262398 000010000000 5077142623980362CPSU6213544001399481 507714262398 964543 180893 S +21:36:21 Slot [363] | NOT FINANCIAL TRANSACTION +21:36:29 Slot [367] | NOT FINANCIAL TRANSACTION +21:36:31 Slot [366] | NOT FINANCIAL TRANSACTION +21:36:34 Slot [370] | NOT FINANCIAL TRANSACTION +21:36:34 +Slot[368] 0200 301000 6213541000605520 ------------- 00 898831 000000000000 507700977177034070026213541000605520 507700977177 294679 668899 S +21:36:42 Slot [371] | NOT FINANCIAL TRANSACTION +21:36:52 Slot [369] | NOT FINANCIAL TRANSACTION +21:36:58 +Slot[375] 0200 010000 6213544001399481 ------------- 00 262402 000010000000 5077142624020362CPSU6213544001399481 507714262402 060963 180893 S +21:37:07 Slot [372] | NOT FINANCIAL TRANSACTION +21:37:15 +Slot[374] 0200 010000 6213541000605520 ------------- 00 898832 000100000000 507700977178034070026213541000605520 507700977178 155530 668899 S +21:37:22 Slot [373] | NOT FINANCIAL TRANSACTION +21:37:33 Slot [376] | NOT FINANCIAL TRANSACTION +21:37:34 Slot [378] | NOT FINANCIAL TRANSACTION +21:37:36 Slot [377] | NOT FINANCIAL TRANSACTION +21:37:43 Slot [379] | NOT FINANCIAL TRANSACTION +21:37:54 Slot [380] | NOT FINANCIAL TRANSACTION +21:38:04 Slot [381] | NOT FINANCIAL TRANSACTION +21:38:15 Slot [382] | NOT FINANCIAL TRANSACTION +21:38:25 Slot [384] | NOT FINANCIAL TRANSACTION +21:38:32 +Slot[386] 0200 301000 1808930200055309 ------------- 55 470135 000000000000 507703047947010084001808930200055309 507703047947 957853 621354 S +21:38:38 Slot [383] | NOT FINANCIAL TRANSACTION +21:38:39 Slot [387] | NOT FINANCIAL TRANSACTION +21:38:40 Slot [388] | NOT FINANCIAL TRANSACTION +21:38:51 Slot [360] | NOT FINANCIAL TRANSACTION +21:39:04 +Slot[389] 0200 301000 1808930200055309 ------------- 00 470148 000000000000 507703047948010084001808930200055309 507703047948 003694 621354 S +21:39:12 Slot [390] | NOT FINANCIAL TRANSACTION +21:39:22 Slot [391] | NOT FINANCIAL TRANSACTION +21:39:30 Slot [394] | NOT FINANCIAL TRANSACTION +21:39:38 Slot [396] | NOT FINANCIAL TRANSACTION +21:39:40 Slot [392] | NOT FINANCIAL TRANSACTION +21:39:44 Slot [393] | NOT FINANCIAL TRANSACTION +21:39:53 Slot [395] | NOT FINANCIAL TRANSACTION +21:39:57 Slot [397] | NOT FINANCIAL TRANSACTION +21:40:04 Slot [398] | NOT FINANCIAL TRANSACTION +21:40:19 Slot [400] | NOT FINANCIAL TRANSACTION +21:40:34 Slot [399] | NOT FINANCIAL TRANSACTION +21:40:42 Slot [401] | NOT FINANCIAL TRANSACTION +21:40:45 Slot [402] | NOT FINANCIAL TRANSACTION +21:40:51 Slot [403] | NOT FINANCIAL TRANSACTION +21:40:59 Slot [404] | NOT FINANCIAL TRANSACTION +21:41:01 Slot [407] | NOT FINANCIAL TRANSACTION +21:41:11 Slot [408] | NOT FINANCIAL TRANSACTION +21:41:21 Slot [406] | NOT FINANCIAL TRANSACTION +21:41:33 Slot [405] | NOT FINANCIAL TRANSACTION +21:41:44 Slot [409] | NOT FINANCIAL TRANSACTION +21:41:48 Slot [410] | NOT FINANCIAL TRANSACTION +21:41:56 Slot [413] | NOT FINANCIAL TRANSACTION +21:42:04 Slot [411] | NOT FINANCIAL TRANSACTION +21:42:14 Slot [385] | NOT FINANCIAL TRANSACTION +21:42:24 Slot [412] | NOT FINANCIAL TRANSACTION +21:42:35 Slot [414] | NOT FINANCIAL TRANSACTION +21:42:45 Slot [415] | NOT FINANCIAL TRANSACTION +21:42:46 Slot [416] | NOT FINANCIAL TRANSACTION +21:42:55 Slot [417] | NOT FINANCIAL TRANSACTION +21:43:01 Slot [420] | NOT FINANCIAL TRANSACTION +21:43:06 Slot [418] | NOT FINANCIAL TRANSACTION +21:43:17 Slot [419] | NOT FINANCIAL TRANSACTION +21:43:28 Slot [422] | NOT FINANCIAL TRANSACTION +21:43:38 Slot [421] | NOT FINANCIAL TRANSACTION +21:43:48 Slot [426] | NOT FINANCIAL TRANSACTION +21:43:49 Slot [424] | NOT FINANCIAL TRANSACTION +21:43:59 Slot [425] | NOT FINANCIAL TRANSACTION +21:44:06 Slot [427] | NOT FINANCIAL TRANSACTION +21:44:09 Slot [428] | NOT FINANCIAL TRANSACTION +21:44:25 Slot [429] | NOT FINANCIAL TRANSACTION +21:44:34 Slot [430] | NOT FINANCIAL TRANSACTION +21:44:39 Slot [431] | NOT FINANCIAL TRANSACTION +21:44:50 Slot [433] | NOT FINANCIAL TRANSACTION +21:44:55 Slot [432] | NOT FINANCIAL TRANSACTION +21:44:57 Slot [434] | NOT FINANCIAL TRANSACTION +21:45:05 Slot [435] | NOT FINANCIAL TRANSACTION +21:45:11 Slot [436] | NOT FINANCIAL TRANSACTION +21:45:15 Slot [437] | NOT FINANCIAL TRANSACTION +21:45:25 Slot [438] | NOT FINANCIAL TRANSACTION +21:45:35 Slot [439] | NOT FINANCIAL TRANSACTION +21:45:45 Slot [440] | NOT FINANCIAL TRANSACTION +21:45:52 Slot [441] | NOT FINANCIAL TRANSACTION +21:45:55 Slot [442] | NOT FINANCIAL TRANSACTION +21:45:59 Slot [444] | NOT FINANCIAL TRANSACTION +21:46:10 Slot [423] | NOT FINANCIAL TRANSACTION +21:46:11 +Slot[443] 0200 301000 6688990105666604 ------------- 00 470424 000000000000 507703969325010112006688990105666604 507703969325 219196 621354 S +21:46:16 Slot [446] | NOT FINANCIAL TRANSACTION +21:46:21 Slot [447] | NOT FINANCIAL TRANSACTION +21:46:32 Slot [445] | NOT FINANCIAL TRANSACTION +21:46:42 Slot [448] | NOT FINANCIAL TRANSACTION +21:46:52 Slot [450] | NOT FINANCIAL TRANSACTION +21:46:54 Slot [449] | NOT FINANCIAL TRANSACTION +21:47:02 Slot [451] | NOT FINANCIAL TRANSACTION +21:47:12 Slot [452] | NOT FINANCIAL TRANSACTION +21:47:17 +Slot[453] 0200 011000 6688990105666604 ------------- 00 470453 000002000000 507703969327010112006688990105666604 507703969327 322452 621354 S +21:47:21 Slot [454] | NOT FINANCIAL TRANSACTION +21:47:23 Slot [455] | NOT FINANCIAL TRANSACTION +21:47:33 Slot [456] | NOT FINANCIAL TRANSACTION +21:47:43 Slot [458] | NOT FINANCIAL TRANSACTION +21:47:44 +Slot[457] 0200 301000 6688990040150953 ------------- 55 470467 000000000000 507702775887010071006688990040150953 507702775887 405223 621354 S +21:47:54 Slot [459] | NOT FINANCIAL TRANSACTION +21:47:56 Slot [460] | NOT FINANCIAL TRANSACTION +21:48:05 Slot [461] | NOT FINANCIAL TRANSACTION +21:48:15 Slot [463] | NOT FINANCIAL TRANSACTION +21:48:25 Slot [464] | NOT FINANCIAL TRANSACTION +21:48:25 +Slot[462] 0200 301000 6688990040150953 ------------- 00 470485 000000000000 507702775888010071006688990040150953 507702775888 470058 621354 S +21:48:26 Slot [465] | NOT FINANCIAL TRANSACTION +21:48:35 Slot [466] | NOT FINANCIAL TRANSACTION +21:48:46 Slot [468] | NOT FINANCIAL TRANSACTION +21:48:57 Slot [469] | NOT FINANCIAL TRANSACTION +21:48:58 Slot [467] | NOT FINANCIAL TRANSACTION +21:49:08 Slot [470] | NOT FINANCIAL TRANSACTION +21:49:23 Slot [471] | NOT FINANCIAL TRANSACTION +21:49:31 Slot [472] | NOT FINANCIAL TRANSACTION +21:49:33 Slot [473] | NOT FINANCIAL TRANSACTION +21:49:44 Slot [474] | NOT FINANCIAL TRANSACTION +21:49:54 Slot [475] | NOT FINANCIAL TRANSACTION +21:49:57 Slot [477] | NOT FINANCIAL TRANSACTION +21:50:00 Slot [478] | NOT FINANCIAL TRANSACTION +21:50:04 Slot [479] | NOT FINANCIAL TRANSACTION +21:50:05 +Slot[476] 0200 011000 6688990040150953 ------------- 00 470524 000002000000 507702775890010071006688990040150953 507702775890 795532 621354 S +21:50:14 Slot [481] | NOT FINANCIAL TRANSACTION +21:50:24 Slot [480] | NOT FINANCIAL TRANSACTION +21:50:36 Slot [482] | NOT FINANCIAL TRANSACTION +21:50:39 Slot [483] | NOT FINANCIAL TRANSACTION +21:50:50 Slot [484] | NOT FINANCIAL TRANSACTION +21:50:59 Slot [486] | NOT FINANCIAL TRANSACTION +21:51:00 Slot [489] | NOT FINANCIAL TRANSACTION +21:51:02 Slot [485] | NOT FINANCIAL TRANSACTION +21:51:10 Slot [487] | NOT FINANCIAL TRANSACTION +21:51:26 Slot [490] | NOT FINANCIAL TRANSACTION +21:51:41 Slot [488] | NOT FINANCIAL TRANSACTION +21:51:41 Slot [491] | NOT FINANCIAL TRANSACTION +21:51:51 Slot [493] | NOT FINANCIAL TRANSACTION +21:52:02 Slot [495] | NOT FINANCIAL TRANSACTION +21:52:04 Slot [492] | NOT FINANCIAL TRANSACTION +21:52:12 Slot [494] | NOT FINANCIAL TRANSACTION +21:52:27 Slot [496] | NOT FINANCIAL TRANSACTION +21:52:43 Slot [498] | NOT FINANCIAL TRANSACTION +21:52:46 Slot [497] | NOT FINANCIAL TRANSACTION +21:52:58 Slot [499] | NOT FINANCIAL TRANSACTION +21:53:06 Slot [0] | NOT FINANCIAL TRANSACTION +21:53:08 Slot [1] | NOT FINANCIAL TRANSACTION +21:53:18 Slot [2] | NOT FINANCIAL TRANSACTION +21:53:34 Slot [5] | NOT FINANCIAL TRANSACTION +21:53:40 +Slot[3] 0200 010000 6688990040053488 ------------- 00 470664 000002000000 507703969334010112006688990040053488 507703969334 808703 621354 S +21:53:44 Slot [4] | NOT FINANCIAL TRANSACTION +21:53:51 Slot [6] | NOT FINANCIAL TRANSACTION +21:53:54 Slot [7] | NOT FINANCIAL TRANSACTION +21:54:04 Slot [8] | NOT FINANCIAL TRANSACTION +21:54:08 Slot [10] | NOT FINANCIAL TRANSACTION +21:54:14 Slot [9] | NOT FINANCIAL TRANSACTION +21:54:25 Slot [11] | NOT FINANCIAL TRANSACTION +21:54:35 Slot [12] | NOT FINANCIAL TRANSACTION +21:54:45 Slot [13] | NOT FINANCIAL TRANSACTION +21:54:56 Slot [15] | NOT FINANCIAL TRANSACTION +21:54:56 Slot [14] | NOT FINANCIAL TRANSACTION +21:54:57 Slot [16] | NOT FINANCIAL TRANSACTION +21:55:06 Slot [18] | NOT FINANCIAL TRANSACTION +21:55:10 Slot [17] | NOT FINANCIAL TRANSACTION +21:55:17 Slot [20] | NOT FINANCIAL TRANSACTION +21:55:19 Slot [19] | NOT FINANCIAL TRANSACTION +21:55:29 +Slot[22] 0200 010000 6213545000813448 ------------- 00 262414 000050000000 5077142624140401XSBR6213545000813448 507714262414 448163 180893 S +21:55:37 Slot [21] | NOT FINANCIAL TRANSACTION +21:55:48 Slot [23] | NOT FINANCIAL TRANSACTION +21:55:53 +Slot[25] 0200 300000 6688990040016105 ------------- 00 470736 000000000000 507703969335010112006688990040016105 507703969335 940885 621354 S +21:55:59 Slot [24] | NOT FINANCIAL TRANSACTION +21:56:01 Slot [26] | NOT FINANCIAL TRANSACTION +21:56:03 Slot [27] | NOT FINANCIAL TRANSACTION +21:56:12 Slot [28] | NOT FINANCIAL TRANSACTION +21:56:12 Slot [29] | NOT FINANCIAL TRANSACTION +21:56:13 Slot [30] | NOT FINANCIAL TRANSACTION +21:56:23 Slot [32] | NOT FINANCIAL TRANSACTION +21:56:34 Slot [31] | NOT FINANCIAL TRANSACTION +21:56:45 Slot [33] | NOT FINANCIAL TRANSACTION +21:56:55 Slot [35] | NOT FINANCIAL TRANSACTION +21:56:57 +Slot[34] 0200 010000 6688990040016105 ------------- 00 470762 000005000000 507703969337010112006688990040016105 507703969337 264565 621354 S +21:57:05 Slot [36] | NOT FINANCIAL TRANSACTION +21:57:06 Slot [37] | NOT FINANCIAL TRANSACTION +21:57:14 Slot [38] | NOT FINANCIAL TRANSACTION +21:57:16 Slot [39] | NOT FINANCIAL TRANSACTION +21:57:26 Slot [42] | NOT FINANCIAL TRANSACTION +21:57:36 Slot [40] | NOT FINANCIAL TRANSACTION +21:57:47 Slot [41] | NOT FINANCIAL TRANSACTION +21:58:02 Slot [43] | NOT FINANCIAL TRANSACTION +21:58:04 +Slot[44] 0200 011000 6213545000550578 ------------- 00 173049 000035000000 507721173049015290166213545000550578 507721173049 650297 198901 S +21:58:11 Slot [45] | NOT FINANCIAL TRANSACTION +21:58:13 Slot [47] | NOT FINANCIAL TRANSACTION +21:58:16 Slot [46] | NOT FINANCIAL TRANSACTION +21:58:28 Slot [48] | NOT FINANCIAL TRANSACTION +21:58:39 Slot [49] | NOT FINANCIAL TRANSACTION +21:58:54 Slot [50] | NOT FINANCIAL TRANSACTION +21:59:09 Slot [54] | NOT FINANCIAL TRANSACTION +21:59:16 Slot [52] | NOT FINANCIAL TRANSACTION +21:59:18 Slot [51] | NOT FINANCIAL TRANSACTION +21:59:25 Slot [55] | NOT FINANCIAL TRANSACTION +21:59:35 Slot [53] | NOT FINANCIAL TRANSACTION +21:59:46 Slot [56] | NOT FINANCIAL TRANSACTION +21:59:56 Slot [57] | NOT FINANCIAL TRANSACTION +21:59:57 Slot [58] | NOT FINANCIAL TRANSACTION +22:00:06 Slot [59] | NOT FINANCIAL TRANSACTION +22:00:17 Slot [60] | NOT FINANCIAL TRANSACTION +22:00:20 Slot [61] | NOT FINANCIAL TRANSACTION +22:00:21 Slot [62] | NOT FINANCIAL TRANSACTION +22:00:32 Slot [64] | NOT FINANCIAL TRANSACTION +22:00:43 Slot [63] | NOT FINANCIAL TRANSACTION +22:00:53 Slot [66] | NOT FINANCIAL TRANSACTION +22:00:54 +Slot[65] 0200 011000 6213544001068060 ------------- 00 223531 000006000000 507700118627010011006213544001068060 507700118627 139496 220699 S +22:00:59 Slot [67] | NOT FINANCIAL TRANSACTION +22:01:09 Slot [69] | NOT FINANCIAL TRANSACTION +22:01:12 +Slot[68] 0200 011000 6688990040128926 ------------- 00 470852 000010000000 507705165437010128006688990040128926 507705165437 977522 621354 S +22:01:21 Slot [71] | NOT FINANCIAL TRANSACTION +22:01:22 Slot [70] | NOT FINANCIAL TRANSACTION +22:01:26 Slot [73] | NOT FINANCIAL TRANSACTION +22:01:34 Slot [72] | NOT FINANCIAL TRANSACTION +22:01:45 Slot [74] | NOT FINANCIAL TRANSACTION +22:02:01 Slot [77] | NOT FINANCIAL TRANSACTION +22:02:02 +Slot[75] 0200 301000 6688990040128926 ------------- 00 470864 000000000000 507705165438010128006688990040128926 507705165438 630210 621354 S +22:02:12 Slot [76] | NOT FINANCIAL TRANSACTION +22:02:22 Slot [79] | NOT FINANCIAL TRANSACTION +22:02:24 Slot [78] | NOT FINANCIAL TRANSACTION +22:02:31 Slot [80] | NOT FINANCIAL TRANSACTION +22:02:37 Slot [81] | NOT FINANCIAL TRANSACTION +22:02:48 Slot [82] | NOT FINANCIAL TRANSACTION +22:02:59 Slot [83] | NOT FINANCIAL TRANSACTION +22:03:14 Slot [84] | NOT FINANCIAL TRANSACTION +22:03:24 Slot [85] | NOT FINANCIAL TRANSACTION +22:03:26 Slot [86] | NOT FINANCIAL TRANSACTION +22:03:35 Slot [87] | NOT FINANCIAL TRANSACTION +22:03:36 Slot [88] | NOT FINANCIAL TRANSACTION +22:03:46 Slot [89] | NOT FINANCIAL TRANSACTION +22:04:02 Slot [90] | NOT FINANCIAL TRANSACTION +22:04:18 Slot [92] | NOT FINANCIAL TRANSACTION +22:04:28 Slot [91] | NOT FINANCIAL TRANSACTION +22:04:29 Slot [93] | NOT FINANCIAL TRANSACTION +22:04:40 Slot [94] | NOT FINANCIAL TRANSACTION +22:04:41 Slot [95] | NOT FINANCIAL TRANSACTION +22:04:55 Slot [96] | NOT FINANCIAL TRANSACTION +22:04:57 Slot [98] | NOT FINANCIAL TRANSACTION +22:05:06 Slot [99] | NOT FINANCIAL TRANSACTION +22:05:22 Slot [97] | NOT FINANCIAL TRANSACTION +22:05:30 Slot [100] | NOT FINANCIAL TRANSACTION +22:05:33 Slot [103] | NOT FINANCIAL TRANSACTION +22:05:44 Slot [101] | NOT FINANCIAL TRANSACTION +22:05:46 Slot [102] | NOT FINANCIAL TRANSACTION +22:05:55 Slot [104] | NOT FINANCIAL TRANSACTION +22:05:57 +Slot[105] 0200 010000 6213541000086259 ------------- 00 898889 000100000000 507700195699030010036213541000086259 507700195699 441298 668899 S +22:05:59 Slot [107] | NOT FINANCIAL TRANSACTION +22:06:05 Slot [106] | NOT FINANCIAL TRANSACTION +22:06:06 Slot [108] | NOT FINANCIAL TRANSACTION +22:06:16 Slot [110] | NOT FINANCIAL TRANSACTION +22:06:27 Slot [111] | NOT FINANCIAL TRANSACTION +22:06:32 Slot [109] | NOT FINANCIAL TRANSACTION +22:06:38 Slot [112] | NOT FINANCIAL TRANSACTION +22:06:48 Slot [113] | NOT FINANCIAL TRANSACTION +22:06:51 Slot [114] | NOT FINANCIAL TRANSACTION +22:07:04 Slot [115] | NOT FINANCIAL TRANSACTION +22:07:14 Slot [116] | NOT FINANCIAL TRANSACTION +22:07:26 Slot [117] | NOT FINANCIAL TRANSACTION +22:07:34 Slot [118] | NOT FINANCIAL TRANSACTION +22:07:37 Slot [120] | NOT FINANCIAL TRANSACTION +22:07:43 +Slot[119] 0200 011000 6213543000087717 ------------- 00 177061 000030000000 507700010078010001006213543000087717 507700010078 154006 220699 S +22:07:53 Slot [121] | NOT FINANCIAL TRANSACTION +22:07:56 Slot [123] | NOT FINANCIAL TRANSACTION +22:08:08 Slot [124] | NOT FINANCIAL TRANSACTION +22:08:19 Slot [122] | NOT FINANCIAL TRANSACTION +22:08:29 Slot [125] | NOT FINANCIAL TRANSACTION +22:08:36 Slot [126] | NOT FINANCIAL TRANSACTION +22:08:44 Slot [127] | NOT FINANCIAL TRANSACTION +22:08:55 Slot [128] | NOT FINANCIAL TRANSACTION +22:09:01 Slot [130] | NOT FINANCIAL TRANSACTION +22:09:05 Slot [129] | NOT FINANCIAL TRANSACTION +22:09:16 Slot [131] | NOT FINANCIAL TRANSACTION +22:09:26 Slot [132] | NOT FINANCIAL TRANSACTION +22:09:37 Slot [134] | NOT FINANCIAL TRANSACTION +22:09:38 Slot [133] | NOT FINANCIAL TRANSACTION +22:09:49 Slot [135] | NOT FINANCIAL TRANSACTION +22:09:56 Slot [136] | NOT FINANCIAL TRANSACTION +22:10:03 Slot [137] | NOT FINANCIAL TRANSACTION +22:10:06 Slot [138] | NOT FINANCIAL TRANSACTION +22:10:18 Slot [139] | NOT FINANCIAL TRANSACTION +22:10:34 Slot [140] | NOT FINANCIAL TRANSACTION +22:10:40 Slot [141] | NOT FINANCIAL TRANSACTION +22:10:49 Slot [144] | NOT FINANCIAL TRANSACTION +22:10:59 Slot [142] | NOT FINANCIAL TRANSACTION +22:11:00 Slot [143] | NOT FINANCIAL TRANSACTION +22:11:11 Slot [146] | NOT FINANCIAL TRANSACTION +22:11:15 Slot [145] | NOT FINANCIAL TRANSACTION +22:11:26 Slot [147] | NOT FINANCIAL TRANSACTION +22:11:37 Slot [149] | NOT FINANCIAL TRANSACTION +22:11:42 Slot [150] | NOT FINANCIAL TRANSACTION +22:11:52 Slot [151] | NOT FINANCIAL TRANSACTION +22:12:07 Slot [148] | NOT FINANCIAL TRANSACTION +22:12:16 Slot [152] | NOT FINANCIAL TRANSACTION +22:12:22 Slot [153] | NOT FINANCIAL TRANSACTION +22:12:32 Slot [154] | NOT FINANCIAL TRANSACTION +22:12:43 Slot [156] | NOT FINANCIAL TRANSACTION +22:12:44 Slot [155] | NOT FINANCIAL TRANSACTION +22:12:53 Slot [158] | NOT FINANCIAL TRANSACTION +22:12:54 Slot [160] | NOT FINANCIAL TRANSACTION +22:13:09 Slot [157] | NOT FINANCIAL TRANSACTION +22:13:20 Slot [161] | NOT FINANCIAL TRANSACTION +22:13:21 Slot [162] | NOT FINANCIAL TRANSACTION +22:13:27 +Slot[159] 0200 010000 6213548000001998 ------------- 00 898908 000040000000 507701833392033080016213548000001998 507701833392 748355 668899 S +22:13:30 Slot [163] | NOT FINANCIAL TRANSACTION +22:13:41 Slot [165] | NOT FINANCIAL TRANSACTION +22:13:46 Slot [166] | NOT FINANCIAL TRANSACTION +22:13:47 +Slot[164] 0200 010000 6213543000087717 ------------- 00 898909 000010000000 507702380112030200296213543000087717 507702380112 215406 668899 S +22:13:51 Slot [169] | NOT FINANCIAL TRANSACTION +22:14:01 Slot [167] | NOT FINANCIAL TRANSACTION +22:14:11 Slot [168] | NOT FINANCIAL TRANSACTION +22:14:22 Slot [170] | NOT FINANCIAL TRANSACTION +22:14:26 Slot [173] | NOT FINANCIAL TRANSACTION +22:14:37 Slot [172] | NOT FINANCIAL TRANSACTION +22:14:40 +Slot[171] 0200 301000 6213543000087717 ------------- 00 898911 000000000000 507702380114030200296213543000087717 507702380114 788887 668899 S +22:14:48 Slot [175] | NOT FINANCIAL TRANSACTION +22:14:48 Slot [174] | NOT FINANCIAL TRANSACTION +22:14:56 Slot [176] | NOT FINANCIAL TRANSACTION +22:14:58 Slot [177] | NOT FINANCIAL TRANSACTION +22:15:13 Slot [178] | NOT FINANCIAL TRANSACTION +22:15:24 Slot [179] | NOT FINANCIAL TRANSACTION +22:15:31 Slot [181] | NOT FINANCIAL TRANSACTION +22:15:35 Slot [180] | NOT FINANCIAL TRANSACTION +22:15:45 Slot [182] | NOT FINANCIAL TRANSACTION +22:15:50 Slot [183] | NOT FINANCIAL TRANSACTION +22:15:59 Slot [184] | NOT FINANCIAL TRANSACTION +22:16:00 Slot [185] | NOT FINANCIAL TRANSACTION +22:16:15 Slot [186] | NOT FINANCIAL TRANSACTION +22:16:26 Slot [187] | NOT FINANCIAL TRANSACTION +22:16:36 Slot [189] | NOT FINANCIAL TRANSACTION +22:16:36 Slot [190] | NOT FINANCIAL TRANSACTION +22:16:46 Slot [188] | NOT FINANCIAL TRANSACTION +22:16:51 Slot [192] | NOT FINANCIAL TRANSACTION +22:16:52 Slot [191] | NOT FINANCIAL TRANSACTION +22:16:56 Slot [194] | NOT FINANCIAL TRANSACTION +22:17:06 Slot [193] | NOT FINANCIAL TRANSACTION +22:17:17 Slot [195] | NOT FINANCIAL TRANSACTION +22:17:27 Slot [196] | NOT FINANCIAL TRANSACTION +22:17:41 Slot [199] | NOT FINANCIAL TRANSACTION +22:17:42 Slot [197] | NOT FINANCIAL TRANSACTION +22:17:53 Slot [200] | NOT FINANCIAL TRANSACTION +22:17:54 Slot [198] | NOT FINANCIAL TRANSACTION +22:18:03 Slot [202] | NOT FINANCIAL TRANSACTION +22:18:13 Slot [201] | NOT FINANCIAL TRANSACTION +22:18:24 Slot [203] | NOT FINANCIAL TRANSACTION +22:18:35 Slot [204] | NOT FINANCIAL TRANSACTION +22:18:45 Slot [205] | NOT FINANCIAL TRANSACTION +22:18:46 Slot [206] | NOT FINANCIAL TRANSACTION +22:18:55 Slot [208] | NOT FINANCIAL TRANSACTION +22:18:56 Slot [207] | NOT FINANCIAL TRANSACTION +22:19:05 Slot [210] | NOT FINANCIAL TRANSACTION +22:19:16 Slot [209] | NOT FINANCIAL TRANSACTION +22:19:27 Slot [211] | NOT FINANCIAL TRANSACTION +22:19:37 Slot [212] | NOT FINANCIAL TRANSACTION +22:19:47 Slot [213] | NOT FINANCIAL TRANSACTION +22:19:52 Slot [214] | NOT FINANCIAL TRANSACTION +22:19:56 Slot [216] | NOT FINANCIAL TRANSACTION +22:19:57 Slot [217] | NOT FINANCIAL TRANSACTION +22:19:58 Slot [215] | NOT FINANCIAL TRANSACTION +22:20:08 Slot [219] | NOT FINANCIAL TRANSACTION +22:20:18 Slot [218] | NOT FINANCIAL TRANSACTION +22:20:28 Slot [222] | NOT FINANCIAL TRANSACTION +22:20:30 +Slot[220] 0200 011000 6688990040137968 ------------- 00 173339 000100000000 507722173339015290186688990040137968 507722173339 004888 198901 S +22:20:38 Slot [221] | NOT FINANCIAL TRANSACTION +22:20:49 Slot [223] | NOT FINANCIAL TRANSACTION +22:20:57 Slot [225] | NOT FINANCIAL TRANSACTION +22:20:59 Slot [224] | NOT FINANCIAL TRANSACTION +22:21:00 Slot [227] | NOT FINANCIAL TRANSACTION +22:21:00 Slot [226] | NOT FINANCIAL TRANSACTION +22:21:15 Slot [228] | NOT FINANCIAL TRANSACTION +22:21:25 Slot [230] | NOT FINANCIAL TRANSACTION +22:21:35 Slot [229] | NOT FINANCIAL TRANSACTION +22:21:46 Slot [231] | NOT FINANCIAL TRANSACTION +22:21:56 Slot [232] | NOT FINANCIAL TRANSACTION +22:22:02 Slot [233] | NOT FINANCIAL TRANSACTION +22:22:02 Slot [234] | NOT FINANCIAL TRANSACTION +22:22:06 Slot [236] | NOT FINANCIAL TRANSACTION +22:22:17 Slot [235] | NOT FINANCIAL TRANSACTION +22:22:27 Slot [237] | NOT FINANCIAL TRANSACTION +22:22:42 Slot [238] | NOT FINANCIAL TRANSACTION +22:22:52 Slot [239] | NOT FINANCIAL TRANSACTION +22:23:02 Slot [241] | NOT FINANCIAL TRANSACTION +22:23:04 Slot [240] | NOT FINANCIAL TRANSACTION +22:23:07 Slot [242] | NOT FINANCIAL TRANSACTION +22:23:13 Slot [243] | NOT FINANCIAL TRANSACTION +22:23:28 Slot [245] | NOT FINANCIAL TRANSACTION +22:23:38 Slot [246] | NOT FINANCIAL TRANSACTION +22:23:49 Slot [247] | NOT FINANCIAL TRANSACTION +22:24:00 Slot [244] | NOT FINANCIAL TRANSACTION +22:24:06 Slot [248] | NOT FINANCIAL TRANSACTION +22:24:12 Slot [249] | NOT FINANCIAL TRANSACTION +22:24:15 Slot [250] | NOT FINANCIAL TRANSACTION +22:24:26 Slot [252] | NOT FINANCIAL TRANSACTION +22:24:36 Slot [253] | NOT FINANCIAL TRANSACTION +22:24:46 Slot [251] | NOT FINANCIAL TRANSACTION +22:24:56 Slot [255] | NOT FINANCIAL TRANSACTION +22:24:57 Slot [254] | NOT FINANCIAL TRANSACTION +22:25:07 Slot [257] | NOT FINANCIAL TRANSACTION +22:25:08 Slot [256] | NOT FINANCIAL TRANSACTION +22:25:17 Slot [259] | NOT FINANCIAL TRANSACTION +22:25:18 Slot [258] | NOT FINANCIAL TRANSACTION +22:25:28 Slot [260] | NOT FINANCIAL TRANSACTION +22:25:40 Slot [261] | NOT FINANCIAL TRANSACTION +22:25:55 Slot [264] | NOT FINANCIAL TRANSACTION +22:25:59 Slot [263] | NOT FINANCIAL TRANSACTION +22:26:06 Slot [265] | NOT FINANCIAL TRANSACTION +22:26:10 Slot [266] | NOT FINANCIAL TRANSACTION +22:26:16 Slot [262] | NOT FINANCIAL TRANSACTION +22:26:22 Slot [267] | NOT FINANCIAL TRANSACTION +22:26:26 Slot [268] | NOT FINANCIAL TRANSACTION +22:26:37 Slot [269] | NOT FINANCIAL TRANSACTION +22:26:48 Slot [270] | NOT FINANCIAL TRANSACTION +22:26:59 Slot [271] | NOT FINANCIAL TRANSACTION +22:27:12 Slot [273] | NOT FINANCIAL TRANSACTION +22:27:15 Slot [272] | NOT FINANCIAL TRANSACTION +22:27:25 Slot [275] | NOT FINANCIAL TRANSACTION +22:27:27 Slot [278] | NOT FINANCIAL TRANSACTION +22:27:36 Slot [276] | NOT FINANCIAL TRANSACTION +22:27:37 +Slot[274] 0200 301000 6213544000092483 ------------- 00 173427 000000000000 507722173427015290006213544000092483 507722173427 984627 198901 S +22:27:37 Slot [277] | NOT FINANCIAL TRANSACTION +22:27:46 Slot [280] | NOT FINANCIAL TRANSACTION +22:27:52 +Slot[279] 0200 011000 6213544000092483 ------------- 00 173429 000100000000 507722173429015290006213544000092483 507722173429 552655 198901 S +22:27:56 Slot [281] | NOT FINANCIAL TRANSACTION +22:28:06 Slot [282] | NOT FINANCIAL TRANSACTION +22:28:14 Slot [283] | NOT FINANCIAL TRANSACTION +22:28:22 Slot [284] | NOT FINANCIAL TRANSACTION +22:28:32 Slot [286] | NOT FINANCIAL TRANSACTION +22:28:37 Slot [285] | NOT FINANCIAL TRANSACTION +22:28:52 Slot [287] | NOT FINANCIAL TRANSACTION +22:29:08 Slot [288] | NOT FINANCIAL TRANSACTION +22:29:16 Slot [289] | NOT FINANCIAL TRANSACTION +22:29:18 Slot [290] | NOT FINANCIAL TRANSACTION +22:29:33 Slot [291] | NOT FINANCIAL TRANSACTION +22:29:36 Slot [294] | NOT FINANCIAL TRANSACTION +22:29:37 Slot [292] | NOT FINANCIAL TRANSACTION +22:29:44 Slot [293] | NOT FINANCIAL TRANSACTION +22:29:54 Slot [295] | NOT FINANCIAL TRANSACTION +22:29:57 Slot [296] | NOT FINANCIAL TRANSACTION +22:30:05 Slot [297] | NOT FINANCIAL TRANSACTION +22:30:18 Slot [299] | NOT FINANCIAL TRANSACTION +22:30:20 Slot [298] | NOT FINANCIAL TRANSACTION +22:30:35 Slot [300] | NOT FINANCIAL TRANSACTION +22:30:42 Slot [301] | NOT FINANCIAL TRANSACTION +22:30:45 Slot [302] | NOT FINANCIAL TRANSACTION +22:30:56 Slot [303] | NOT FINANCIAL TRANSACTION +22:30:59 Slot [305] | NOT FINANCIAL TRANSACTION +22:31:07 Slot [304] | NOT FINANCIAL TRANSACTION +22:31:20 Slot [307] | NOT FINANCIAL TRANSACTION +22:31:22 Slot [306] | NOT FINANCIAL TRANSACTION +22:31:37 Slot [308] | NOT FINANCIAL TRANSACTION +22:31:47 Slot [309] | NOT FINANCIAL TRANSACTION +22:31:47 Slot [310] | NOT FINANCIAL TRANSACTION +22:31:57 Slot [311] | NOT FINANCIAL TRANSACTION +22:32:08 Slot [312] | NOT FINANCIAL TRANSACTION +22:32:22 Slot [313] | NOT FINANCIAL TRANSACTION +22:32:23 Slot [314] | NOT FINANCIAL TRANSACTION +22:32:34 Slot [315] | NOT FINANCIAL TRANSACTION +22:32:44 Slot [316] | NOT FINANCIAL TRANSACTION +22:32:52 Slot [318] | NOT FINANCIAL TRANSACTION +22:32:54 Slot [317] | NOT FINANCIAL TRANSACTION +22:33:10 Slot [319] | NOT FINANCIAL TRANSACTION +22:33:21 Slot [320] | NOT FINANCIAL TRANSACTION +22:33:24 Slot [321] | NOT FINANCIAL TRANSACTION +22:33:32 Slot [322] | NOT FINANCIAL TRANSACTION +22:33:47 Slot [323] | NOT FINANCIAL TRANSACTION +22:33:57 Slot [326] | NOT FINANCIAL TRANSACTION +22:33:57 Slot [324] | NOT FINANCIAL TRANSACTION +22:34:08 Slot [325] | NOT FINANCIAL TRANSACTION +22:34:18 Slot [327] | NOT FINANCIAL TRANSACTION +22:34:26 Slot [329] | NOT FINANCIAL TRANSACTION +22:34:28 Slot [328] | NOT FINANCIAL TRANSACTION +22:34:38 Slot [330] | NOT FINANCIAL TRANSACTION +22:34:49 Slot [331] | NOT FINANCIAL TRANSACTION +22:34:57 Slot [332] | NOT FINANCIAL TRANSACTION +22:35:00 Slot [334] | NOT FINANCIAL TRANSACTION +22:35:02 Slot [333] | NOT FINANCIAL TRANSACTION +22:35:15 Slot [335] | NOT FINANCIAL TRANSACTION +22:35:26 Slot [337] | NOT FINANCIAL TRANSACTION +22:35:28 Slot [336] | NOT FINANCIAL TRANSACTION +22:35:36 Slot [339] | NOT FINANCIAL TRANSACTION +22:35:46 Slot [338] | NOT FINANCIAL TRANSACTION +22:35:56 Slot [342] | NOT FINANCIAL TRANSACTION +22:35:57 +Slot[340] 0200 010000 6688990040034918 ------------- 14 240776 000005000000 507700410399080003006688990040034918 507700410399 903827 220699 S +22:35:59 Slot [341] | NOT FINANCIAL TRANSACTION +22:36:07 Slot [343] | NOT FINANCIAL TRANSACTION +22:36:07 Slot [344] | NOT FINANCIAL TRANSACTION +22:36:17 Slot [345] | NOT FINANCIAL TRANSACTION +22:36:27 Slot [346] | NOT FINANCIAL TRANSACTION +22:36:30 Slot [348] | NOT FINANCIAL TRANSACTION +22:36:37 Slot [349] | NOT FINANCIAL TRANSACTION +22:36:48 Slot [350] | NOT FINANCIAL TRANSACTION +22:36:51 +Slot[347] 0200 010000 6688990040034918 ------------- 14 240779 000005000000 507700410401080003006688990040034918 507700410401 478132 220699 S +22:36:58 Slot [354] | NOT FINANCIAL TRANSACTION +22:37:08 Slot [351] | NOT FINANCIAL TRANSACTION +22:37:12 Slot [352] | NOT FINANCIAL TRANSACTION +22:37:18 Slot [356] | NOT FINANCIAL TRANSACTION +22:37:29 Slot [353] | NOT FINANCIAL TRANSACTION +22:37:32 Slot [355] | NOT FINANCIAL TRANSACTION +22:37:39 Slot [358] | NOT FINANCIAL TRANSACTION +22:37:50 Slot [357] | NOT FINANCIAL TRANSACTION +22:38:00 Slot [359] | NOT FINANCIAL TRANSACTION +22:38:17 Slot [361] | NOT FINANCIAL TRANSACTION +22:38:18 Slot [362] | NOT FINANCIAL TRANSACTION +22:38:23 Slot [364] | NOT FINANCIAL TRANSACTION +22:38:33 Slot [363] | NOT FINANCIAL TRANSACTION +22:38:34 Slot [365] | NOT FINANCIAL TRANSACTION +22:38:48 Slot [367] | NOT FINANCIAL TRANSACTION +22:38:58 Slot [366] | NOT FINANCIAL TRANSACTION +22:39:08 Slot [370] | NOT FINANCIAL TRANSACTION +22:39:19 Slot [368] | NOT FINANCIAL TRANSACTION +22:39:22 Slot [371] | NOT FINANCIAL TRANSACTION +22:39:29 Slot [369] | NOT FINANCIAL TRANSACTION +22:39:36 Slot [375] | NOT FINANCIAL TRANSACTION +22:39:45 Slot [372] | NOT FINANCIAL TRANSACTION +22:39:56 Slot [374] | NOT FINANCIAL TRANSACTION +22:39:57 Slot [373] | NOT FINANCIAL TRANSACTION +22:40:06 Slot [376] | NOT FINANCIAL TRANSACTION +22:40:17 Slot [378] | NOT FINANCIAL TRANSACTION +22:40:27 Slot [377] | NOT FINANCIAL TRANSACTION +22:40:31 Slot [379] | NOT FINANCIAL TRANSACTION +22:40:38 Slot [380] | NOT FINANCIAL TRANSACTION +22:40:46 Slot [381] | NOT FINANCIAL TRANSACTION +22:40:57 Slot [382] | NOT FINANCIAL TRANSACTION +22:40:59 Slot [384] | NOT FINANCIAL TRANSACTION +22:41:08 Slot [386] | NOT FINANCIAL TRANSACTION +22:41:19 Slot [383] | NOT FINANCIAL TRANSACTION +22:41:30 Slot [387] | NOT FINANCIAL TRANSACTION +22:41:32 Slot [388] | NOT FINANCIAL TRANSACTION +22:41:40 Slot [360] | NOT FINANCIAL TRANSACTION +22:41:45 Slot [389] | NOT FINANCIAL TRANSACTION +22:41:55 Slot [390] | NOT FINANCIAL TRANSACTION +22:42:05 Slot [391] | NOT FINANCIAL TRANSACTION +22:42:16 Slot [394] | NOT FINANCIAL TRANSACTION +22:42:27 Slot [396] | NOT FINANCIAL TRANSACTION +22:42:37 Slot [392] | NOT FINANCIAL TRANSACTION +22:42:38 Slot [393] | NOT FINANCIAL TRANSACTION +22:42:42 Slot [395] | NOT FINANCIAL TRANSACTION +22:42:48 Slot [397] | NOT FINANCIAL TRANSACTION +22:42:58 Slot [398] | NOT FINANCIAL TRANSACTION +22:43:09 Slot [400] | NOT FINANCIAL TRANSACTION +22:43:20 Slot [399] | NOT FINANCIAL TRANSACTION +22:43:30 Slot [401] | NOT FINANCIAL TRANSACTION +22:43:42 Slot [402] | NOT FINANCIAL TRANSACTION +22:43:44 Slot [403] | NOT FINANCIAL TRANSACTION +22:43:45 Slot [404] | NOT FINANCIAL TRANSACTION +22:43:56 Slot [407] | NOT FINANCIAL TRANSACTION +22:44:06 Slot [408] | NOT FINANCIAL TRANSACTION +22:44:17 Slot [406] | NOT FINANCIAL TRANSACTION +22:44:27 Slot [405] | NOT FINANCIAL TRANSACTION +22:44:42 Slot [409] | NOT FINANCIAL TRANSACTION +22:44:46 Slot [410] | NOT FINANCIAL TRANSACTION +22:44:47 Slot [413] | NOT FINANCIAL TRANSACTION +22:44:53 Slot [411] | NOT FINANCIAL TRANSACTION +22:44:57 Slot [385] | NOT FINANCIAL TRANSACTION +22:45:04 Slot [412] | NOT FINANCIAL TRANSACTION +22:45:19 Slot [414] | NOT FINANCIAL TRANSACTION +22:45:29 Slot [415] | NOT FINANCIAL TRANSACTION +22:45:40 Slot [416] | NOT FINANCIAL TRANSACTION +22:45:48 Slot [417] | NOT FINANCIAL TRANSACTION +22:45:52 Slot [420] | NOT FINANCIAL TRANSACTION +22:45:56 Slot [418] | NOT FINANCIAL TRANSACTION +22:45:59 Slot [419] | NOT FINANCIAL TRANSACTION +22:46:06 Slot [422] | NOT FINANCIAL TRANSACTION +22:46:18 Slot [421] | NOT FINANCIAL TRANSACTION +22:46:22 Slot [426] | NOT FINANCIAL TRANSACTION +22:46:32 Slot [424] | NOT FINANCIAL TRANSACTION +22:46:42 Slot [425] | NOT FINANCIAL TRANSACTION +22:46:50 Slot [427] | NOT FINANCIAL TRANSACTION +22:46:57 Slot [428] | NOT FINANCIAL TRANSACTION +22:46:57 Slot [429] | NOT FINANCIAL TRANSACTION +22:47:13 Slot [430] | NOT FINANCIAL TRANSACTION +22:47:28 Slot [431] | NOT FINANCIAL TRANSACTION +22:47:38 Slot [433] | NOT FINANCIAL TRANSACTION +22:47:52 Slot [432] | NOT FINANCIAL TRANSACTION +22:47:53 Slot [434] | NOT FINANCIAL TRANSACTION +22:48:02 Slot [435] | NOT FINANCIAL TRANSACTION +22:48:08 Slot [436] | NOT FINANCIAL TRANSACTION +22:48:23 Slot [437] | NOT FINANCIAL TRANSACTION +22:48:34 Slot [438] | NOT FINANCIAL TRANSACTION +22:48:45 Slot [439] | NOT FINANCIAL TRANSACTION +22:48:54 Slot [440] | NOT FINANCIAL TRANSACTION +22:48:55 Slot [441] | NOT FINANCIAL TRANSACTION +22:49:05 Slot [442] | NOT FINANCIAL TRANSACTION +22:49:07 Slot [444] | NOT FINANCIAL TRANSACTION +22:49:09 Slot [423] | NOT FINANCIAL TRANSACTION +22:49:15 Slot [443] | NOT FINANCIAL TRANSACTION +22:49:25 Slot [446] | NOT FINANCIAL TRANSACTION +22:49:37 Slot [447] | NOT FINANCIAL TRANSACTION +22:49:47 Slot [445] | NOT FINANCIAL TRANSACTION +22:49:56 Slot [448] | NOT FINANCIAL TRANSACTION +22:49:57 Slot [450] | NOT FINANCIAL TRANSACTION +22:49:57 Slot [449] | NOT FINANCIAL TRANSACTION +22:50:07 Slot [451] | NOT FINANCIAL TRANSACTION +22:50:12 Slot [452] | NOT FINANCIAL TRANSACTION +22:50:18 Slot [453] | NOT FINANCIAL TRANSACTION +22:50:28 Slot [454] | NOT FINANCIAL TRANSACTION +22:50:38 Slot [455] | NOT FINANCIAL TRANSACTION +22:50:49 Slot [456] | NOT FINANCIAL TRANSACTION +22:50:58 Slot [458] | NOT FINANCIAL TRANSACTION +22:50:59 Slot [457] | NOT FINANCIAL TRANSACTION +22:51:00 Slot [459] | NOT FINANCIAL TRANSACTION +22:51:09 Slot [460] | NOT FINANCIAL TRANSACTION +22:51:17 Slot [461] | NOT FINANCIAL TRANSACTION +22:51:19 Slot [463] | NOT FINANCIAL TRANSACTION +22:51:29 Slot [464] | NOT FINANCIAL TRANSACTION +22:51:39 Slot [462] | NOT FINANCIAL TRANSACTION +22:51:49 Slot [465] | NOT FINANCIAL TRANSACTION +22:52:00 Slot [468] | NOT FINANCIAL TRANSACTION +22:52:00 Slot [466] | NOT FINANCIAL TRANSACTION +22:52:15 Slot [469] | NOT FINANCIAL TRANSACTION +22:52:22 Slot [467] | NOT FINANCIAL TRANSACTION +22:52:25 Slot [470] | NOT FINANCIAL TRANSACTION +22:52:35 Slot [471] | NOT FINANCIAL TRANSACTION +22:52:45 Slot [472] | NOT FINANCIAL TRANSACTION +22:52:55 Slot [473] | NOT FINANCIAL TRANSACTION +22:53:02 Slot [474] | NOT FINANCIAL TRANSACTION +22:53:06 Slot [475] | NOT FINANCIAL TRANSACTION +22:53:16 Slot [477] | NOT FINANCIAL TRANSACTION +22:53:27 Slot [478] | NOT FINANCIAL TRANSACTION +22:53:27 Slot [479] | NOT FINANCIAL TRANSACTION +22:53:37 Slot [476] | NOT FINANCIAL TRANSACTION +22:53:53 Slot [481] | NOT FINANCIAL TRANSACTION +22:54:03 Slot [482] | NOT FINANCIAL TRANSACTION +22:54:04 Slot [480] | NOT FINANCIAL TRANSACTION +22:54:18 Slot [483] | NOT FINANCIAL TRANSACTION +22:54:28 Slot [484] | NOT FINANCIAL TRANSACTION +22:54:32 Slot [486] | NOT FINANCIAL TRANSACTION +22:54:38 Slot [489] | NOT FINANCIAL TRANSACTION +22:54:48 Slot [485] | NOT FINANCIAL TRANSACTION +22:54:57 Slot [487] | NOT FINANCIAL TRANSACTION +22:55:03 Slot [490] | NOT FINANCIAL TRANSACTION +22:55:06 Slot [488] | NOT FINANCIAL TRANSACTION +22:55:13 Slot [491] | NOT FINANCIAL TRANSACTION +22:55:28 Slot [493] | NOT FINANCIAL TRANSACTION +22:55:37 Slot [492] | NOT FINANCIAL TRANSACTION +22:55:38 Slot [494] | NOT FINANCIAL TRANSACTION +22:55:42 +Slot[495] 0200 010000 2206990000082867 ------------- 00 898969 000100000000 507700893401030170022206990000082867 507700893401 801317 668899 S +22:55:49 Slot [498] | NOT FINANCIAL TRANSACTION +22:55:50 +Slot[496] 0200 010000 6213545001080427 ------------- 00 898971 000010000000 507701027883033100026213545001080427 507701027883 709946 668899 S +22:55:59 Slot [497] | NOT FINANCIAL TRANSACTION +22:56:00 Slot [499] | NOT FINANCIAL TRANSACTION +22:56:08 Slot [0] | NOT FINANCIAL TRANSACTION +22:56:09 Slot [1] | NOT FINANCIAL TRANSACTION +22:56:24 Slot [2] | NOT FINANCIAL TRANSACTION +22:56:34 Slot [3] | NOT FINANCIAL TRANSACTION +22:56:39 +Slot[5] 0200 011000 6213541000648918 ------------- 00 009744 000010000000 507700270534010015006213541000648918 507700270534 451758 220699 S +22:56:42 Slot [4] | NOT FINANCIAL TRANSACTION +22:56:44 Slot [6] | NOT FINANCIAL TRANSACTION +22:56:55 Slot [7] | NOT FINANCIAL TRANSACTION +22:57:06 Slot [8] | NOT FINANCIAL TRANSACTION +22:57:10 Slot [10] | NOT FINANCIAL TRANSACTION +22:57:18 Slot [9] | NOT FINANCIAL TRANSACTION +22:57:29 Slot [11] | NOT FINANCIAL TRANSACTION +22:57:39 Slot [13] | NOT FINANCIAL TRANSACTION +22:57:45 +Slot[12] 0200 311000 6213541000648918 ------------- 00 009747 000000000000 507700270536010015006213541000648918 507700270536 673555 220699 S +22:57:47 Slot [15] | NOT FINANCIAL TRANSACTION +22:57:49 Slot [14] | NOT FINANCIAL TRANSACTION +22:58:01 Slot [16] | NOT FINANCIAL TRANSACTION +22:58:09 +Slot[18] 0200 010000 6213544001862926 ------------- 00 177065 000100000000 507700010082010001006213544001862926 507700010082 796342 220699 S +22:58:12 Slot [17] | NOT FINANCIAL TRANSACTION +22:58:16 Slot [20] | NOT FINANCIAL TRANSACTION +22:58:26 Slot [22] | NOT FINANCIAL TRANSACTION +22:58:29 +Slot[19] 0200 011000 6213541000648918 ------------- 00 009748 000100000000 507700270537010015006213541000648918 507700270537 249102 220699 S +22:58:36 Slot [21] | NOT FINANCIAL TRANSACTION +22:58:46 Slot [23] | NOT FINANCIAL TRANSACTION +22:58:52 Slot [24] | NOT FINANCIAL TRANSACTION +22:58:56 +Slot[25] 0200 011000 6213544000183761 ------------- 00 262424 000005000000 5077152624240363CPSH6213544000183761 507715262424 017877 180893 S +22:59:08 Slot [26] | NOT FINANCIAL TRANSACTION +22:59:14 Slot [27] | NOT FINANCIAL TRANSACTION +22:59:18 Slot [28] | NOT FINANCIAL TRANSACTION +22:59:25 +Slot[29] 0200 010000 6213544001862926 ------------- 00 177067 000070000000 507700010084010001006213544001862926 507700010084 805113 220699 S +22:59:28 Slot [30] | NOT FINANCIAL TRANSACTION +22:59:39 Slot [31] | NOT FINANCIAL TRANSACTION +22:59:40 +Slot[32] 0200 301000 6688990107472407 ------------- 00 471872 000000000000 507703969358010112006688990107472407 507703969358 003872 621354 S +22:59:49 Slot [33] | NOT FINANCIAL TRANSACTION +22:59:55 Slot [35] | NOT FINANCIAL TRANSACTION +22:59:57 Slot [34] | NOT FINANCIAL TRANSACTION +22:59:57 Slot [36] | NOT FINANCIAL TRANSACTION +22:59:59 Slot [38] | NOT FINANCIAL TRANSACTION +23:00:05 +Slot[37] 0200 011000 6213544000183761 ------------- 00 262427 000045000000 5077152624270363CPSH6213544000183761 507715262427 613914 180893 S +23:00:14 Slot [42] | NOT FINANCIAL TRANSACTION +23:00:16 Slot [39] | NOT FINANCIAL TRANSACTION +23:00:25 Slot [40] | NOT FINANCIAL TRANSACTION +23:00:36 Slot [41] | NOT FINANCIAL TRANSACTION +23:00:46 Slot [43] | NOT FINANCIAL TRANSACTION +23:00:57 Slot [45] | NOT FINANCIAL TRANSACTION +23:00:59 Slot [47] | NOT FINANCIAL TRANSACTION +23:00:59 +Slot[44] 0200 011000 6688990107472407 ------------- 00 471882 000020000000 507703969360010112006688990107472407 507703969360 933929 621354 S +23:01:02 Slot [46] | NOT FINANCIAL TRANSACTION +23:01:07 Slot [48] | NOT FINANCIAL TRANSACTION +23:01:18 Slot [49] | NOT FINANCIAL TRANSACTION +23:01:24 Slot [50] | NOT FINANCIAL TRANSACTION +23:01:37 Slot [54] | NOT FINANCIAL TRANSACTION +23:01:48 Slot [52] | NOT FINANCIAL TRANSACTION +23:01:59 Slot [51] | NOT FINANCIAL TRANSACTION +23:02:07 Slot [55] | NOT FINANCIAL TRANSACTION +23:02:10 Slot [53] | NOT FINANCIAL TRANSACTION +23:02:20 Slot [57] | NOT FINANCIAL TRANSACTION +23:02:20 Slot [56] | NOT FINANCIAL TRANSACTION +23:02:30 Slot [58] | NOT FINANCIAL TRANSACTION +23:02:40 Slot [59] | NOT FINANCIAL TRANSACTION +23:02:50 Slot [60] | NOT FINANCIAL TRANSACTION +23:03:00 Slot [61] | NOT FINANCIAL TRANSACTION +23:03:01 Slot [62] | NOT FINANCIAL TRANSACTION +23:03:14 Slot [64] | NOT FINANCIAL TRANSACTION +23:03:17 Slot [63] | NOT FINANCIAL TRANSACTION +23:03:22 Slot [66] | NOT FINANCIAL TRANSACTION +23:03:28 Slot [65] | NOT FINANCIAL TRANSACTION +23:03:38 Slot [67] | NOT FINANCIAL TRANSACTION +23:03:48 Slot [69] | NOT FINANCIAL TRANSACTION +23:03:58 Slot [68] | NOT FINANCIAL TRANSACTION +23:04:09 Slot [71] | NOT FINANCIAL TRANSACTION +23:04:19 Slot [70] | NOT FINANCIAL TRANSACTION +23:04:19 Slot [73] | NOT FINANCIAL TRANSACTION +23:04:24 Slot [72] | NOT FINANCIAL TRANSACTION +23:04:30 Slot [74] | NOT FINANCIAL TRANSACTION +23:04:40 Slot [77] | NOT FINANCIAL TRANSACTION +23:04:50 Slot [75] | NOT FINANCIAL TRANSACTION +23:04:57 Slot [76] | NOT FINANCIAL TRANSACTION +23:05:01 Slot [79] | NOT FINANCIAL TRANSACTION +23:05:16 Slot [78] | NOT FINANCIAL TRANSACTION +23:05:24 Slot [81] | NOT FINANCIAL TRANSACTION +23:05:26 Slot [80] | NOT FINANCIAL TRANSACTION +23:05:27 Slot [82] | NOT FINANCIAL TRANSACTION +23:05:37 Slot [83] | NOT FINANCIAL TRANSACTION +23:05:47 Slot [84] | NOT FINANCIAL TRANSACTION +23:05:58 Slot [85] | NOT FINANCIAL TRANSACTION +23:05:59 Slot [86] | NOT FINANCIAL TRANSACTION +23:06:08 Slot [87] | NOT FINANCIAL TRANSACTION +23:06:18 Slot [88] | NOT FINANCIAL TRANSACTION +23:06:28 Slot [89] | NOT FINANCIAL TRANSACTION +23:06:29 Slot [90] | NOT FINANCIAL TRANSACTION +23:06:33 Slot [92] | NOT FINANCIAL TRANSACTION +23:06:44 Slot [91] | NOT FINANCIAL TRANSACTION +23:06:55 Slot [93] | NOT FINANCIAL TRANSACTION +23:07:10 Slot [94] | NOT FINANCIAL TRANSACTION +23:07:21 Slot [95] | NOT FINANCIAL TRANSACTION +23:07:30 Slot [96] | NOT FINANCIAL TRANSACTION +23:07:34 Slot [98] | NOT FINANCIAL TRANSACTION +23:07:37 Slot [99] | NOT FINANCIAL TRANSACTION +23:07:48 Slot [97] | NOT FINANCIAL TRANSACTION +23:08:02 Slot [100] | NOT FINANCIAL TRANSACTION +23:08:17 Slot [103] | NOT FINANCIAL TRANSACTION +23:08:28 Slot [101] | NOT FINANCIAL TRANSACTION +23:08:32 Slot [102] | NOT FINANCIAL TRANSACTION +23:08:39 Slot [104] | NOT FINANCIAL TRANSACTION +23:08:43 Slot [105] | NOT FINANCIAL TRANSACTION +23:08:53 Slot [107] | NOT FINANCIAL TRANSACTION +23:09:08 Slot [106] | NOT FINANCIAL TRANSACTION +23:09:19 Slot [108] | NOT FINANCIAL TRANSACTION +23:09:29 Slot [110] | NOT FINANCIAL TRANSACTION +23:09:34 Slot [111] | NOT FINANCIAL TRANSACTION +23:09:39 Slot [109] | NOT FINANCIAL TRANSACTION +23:09:44 Slot [112] | NOT FINANCIAL TRANSACTION +23:09:50 Slot [113] | NOT FINANCIAL TRANSACTION +23:09:57 Slot [114] | NOT FINANCIAL TRANSACTION +23:10:01 Slot [115] | NOT FINANCIAL TRANSACTION +23:10:11 Slot [116] | NOT FINANCIAL TRANSACTION +23:10:22 Slot [117] | NOT FINANCIAL TRANSACTION +23:10:36 Slot [118] | NOT FINANCIAL TRANSACTION +23:10:37 Slot [120] | NOT FINANCIAL TRANSACTION +23:10:41 Slot [119] | NOT FINANCIAL TRANSACTION +23:10:49 Slot [121] | NOT FINANCIAL TRANSACTION +23:10:53 Slot [123] | NOT FINANCIAL TRANSACTION +23:10:59 Slot [124] | NOT FINANCIAL TRANSACTION +23:11:09 Slot [122] | NOT FINANCIAL TRANSACTION +23:11:24 Slot [125] | NOT FINANCIAL TRANSACTION +23:11:38 Slot [126] | NOT FINANCIAL TRANSACTION +23:11:39 Slot [127] | NOT FINANCIAL TRANSACTION +23:11:49 Slot [128] | NOT FINANCIAL TRANSACTION +23:11:54 Slot [130] | NOT FINANCIAL TRANSACTION +23:11:59 Slot [129] | NOT FINANCIAL TRANSACTION +23:12:10 Slot [131] | NOT FINANCIAL TRANSACTION +23:12:21 Slot [132] | NOT FINANCIAL TRANSACTION +23:12:31 Slot [134] | NOT FINANCIAL TRANSACTION +23:12:40 Slot [133] | NOT FINANCIAL TRANSACTION +23:12:43 Slot [135] | NOT FINANCIAL TRANSACTION +23:12:57 Slot [136] | NOT FINANCIAL TRANSACTION +23:12:59 Slot [137] | NOT FINANCIAL TRANSACTION +23:13:06 +Slot[138] 0200 010000 6688990105179400 ------------- 14 262433 000050000000 5077162624330262PSLB6688990105179400 507716262433 273412 180893 S +23:13:13 Slot [139] | NOT FINANCIAL TRANSACTION +23:13:29 Slot [140] | NOT FINANCIAL TRANSACTION +23:13:39 Slot [141] | NOT FINANCIAL TRANSACTION +23:13:42 Slot [144] | NOT FINANCIAL TRANSACTION +23:13:54 Slot [142] | NOT FINANCIAL TRANSACTION +23:14:04 Slot [143] | NOT FINANCIAL TRANSACTION +23:14:05 Slot [146] | NOT FINANCIAL TRANSACTION +23:14:15 Slot [145] | NOT FINANCIAL TRANSACTION +23:14:25 Slot [147] | NOT FINANCIAL TRANSACTION +23:14:36 Slot [149] | NOT FINANCIAL TRANSACTION +23:14:44 Slot [150] | NOT FINANCIAL TRANSACTION +23:14:51 Slot [151] | NOT FINANCIAL TRANSACTION +23:14:57 Slot [148] | NOT FINANCIAL TRANSACTION +23:15:02 Slot [152] | NOT FINANCIAL TRANSACTION +23:15:09 Slot [153] | NOT FINANCIAL TRANSACTION +23:15:15 +Slot[154] 0200 010000 6688990105179400 ------------- 14 262435 000050000000 5077162624350262PSLB6688990105179400 507716262435 923863 180893 S +23:15:23 Slot [156] | NOT FINANCIAL TRANSACTION +23:15:33 Slot [155] | NOT FINANCIAL TRANSACTION +23:15:44 Slot [158] | NOT FINANCIAL TRANSACTION +23:15:46 Slot [160] | NOT FINANCIAL TRANSACTION +23:15:59 Slot [157] | NOT FINANCIAL TRANSACTION +23:15:59 Slot [161] | NOT FINANCIAL TRANSACTION +23:16:10 Slot [159] | NOT FINANCIAL TRANSACTION +23:16:10 +Slot[162] 0200 011000 6213545000156350 ------------- 00 174014 000100000000 507723174014015290196213545000156350 507723174014 155757 198901 S +23:16:14 Slot [163] | NOT FINANCIAL TRANSACTION +23:16:20 Slot [165] | NOT FINANCIAL TRANSACTION +23:16:30 Slot [166] | NOT FINANCIAL TRANSACTION +23:16:41 Slot [164] | NOT FINANCIAL TRANSACTION +23:16:48 Slot [169] | NOT FINANCIAL TRANSACTION +23:16:56 Slot [167] | NOT FINANCIAL TRANSACTION +23:17:07 Slot [168] | NOT FINANCIAL TRANSACTION +23:17:19 Slot [173] | NOT FINANCIAL TRANSACTION +23:17:21 Slot [172] | NOT FINANCIAL TRANSACTION +23:17:24 +Slot[170] 0200 011000 6688990105179400 ------------- 00 472074 000050000000 507704705447180009006688990105179400 507704705447 247654 621354 S +23:17:32 Slot [171] | NOT FINANCIAL TRANSACTION +23:17:42 Slot [175] | NOT FINANCIAL TRANSACTION +23:17:50 Slot [174] | NOT FINANCIAL TRANSACTION +23:17:58 Slot [176] | NOT FINANCIAL TRANSACTION +23:18:09 Slot [177] | NOT FINANCIAL TRANSACTION +23:18:19 Slot [178] | NOT FINANCIAL TRANSACTION +23:18:24 Slot [179] | NOT FINANCIAL TRANSACTION +23:18:29 Slot [181] | NOT FINANCIAL TRANSACTION +23:18:39 Slot [180] | NOT FINANCIAL TRANSACTION +23:18:52 Slot [182] | NOT FINANCIAL TRANSACTION +23:18:55 Slot [183] | NOT FINANCIAL TRANSACTION +23:19:06 Slot [184] | NOT FINANCIAL TRANSACTION +23:19:21 Slot [185] | NOT FINANCIAL TRANSACTION +23:19:29 Slot [186] | NOT FINANCIAL TRANSACTION +23:19:32 Slot [187] | NOT FINANCIAL TRANSACTION +23:19:42 Slot [189] | NOT FINANCIAL TRANSACTION +23:19:43 Slot [190] | NOT FINANCIAL TRANSACTION +23:19:53 Slot [192] | NOT FINANCIAL TRANSACTION +23:19:54 Slot [188] | NOT FINANCIAL TRANSACTION +23:19:57 Slot [191] | NOT FINANCIAL TRANSACTION +23:20:04 Slot [194] | NOT FINANCIAL TRANSACTION +23:20:19 Slot [193] | NOT FINANCIAL TRANSACTION +23:20:29 Slot [195] | NOT FINANCIAL TRANSACTION +23:20:34 Slot [196] | NOT FINANCIAL TRANSACTION +23:20:39 Slot [199] | NOT FINANCIAL TRANSACTION +23:20:50 Slot [197] | NOT FINANCIAL TRANSACTION +23:20:56 Slot [200] | NOT FINANCIAL TRANSACTION +23:20:59 Slot [198] | NOT FINANCIAL TRANSACTION +23:21:00 Slot [202] | NOT FINANCIAL TRANSACTION +23:21:10 Slot [201] | NOT FINANCIAL TRANSACTION +23:21:20 Slot [203] | NOT FINANCIAL TRANSACTION +23:21:27 Slot [204] | NOT FINANCIAL TRANSACTION +23:21:30 Slot [205] | NOT FINANCIAL TRANSACTION +23:21:39 Slot [206] | NOT FINANCIAL TRANSACTION +23:21:41 Slot [208] | NOT FINANCIAL TRANSACTION +23:21:51 Slot [207] | NOT FINANCIAL TRANSACTION +23:21:58 Slot [210] | NOT FINANCIAL TRANSACTION +23:22:02 Slot [209] | NOT FINANCIAL TRANSACTION +23:22:13 Slot [211] | NOT FINANCIAL TRANSACTION +23:22:23 Slot [212] | NOT FINANCIAL TRANSACTION +23:22:38 Slot [213] | NOT FINANCIAL TRANSACTION +23:22:44 Slot [214] | NOT FINANCIAL TRANSACTION +23:22:48 Slot [216] | NOT FINANCIAL TRANSACTION +23:22:58 Slot [215] | NOT FINANCIAL TRANSACTION +23:23:00 Slot [217] | NOT FINANCIAL TRANSACTION +23:23:08 Slot [219] | NOT FINANCIAL TRANSACTION +23:23:18 Slot [218] | NOT FINANCIAL TRANSACTION +23:23:29 Slot [222] | NOT FINANCIAL TRANSACTION +23:23:39 Slot [220] | NOT FINANCIAL TRANSACTION +23:23:49 Slot [221] | NOT FINANCIAL TRANSACTION +23:23:49 Slot [223] | NOT FINANCIAL TRANSACTION +23:23:59 Slot [225] | NOT FINANCIAL TRANSACTION +23:24:02 Slot [224] | NOT FINANCIAL TRANSACTION +23:24:09 Slot [227] | NOT FINANCIAL TRANSACTION +23:24:25 Slot [226] | NOT FINANCIAL TRANSACTION +23:24:40 Slot [228] | NOT FINANCIAL TRANSACTION +23:24:51 Slot [230] | NOT FINANCIAL TRANSACTION +23:24:55 Slot [229] | NOT FINANCIAL TRANSACTION +23:24:57 Slot [231] | NOT FINANCIAL TRANSACTION +23:25:02 Slot [232] | NOT FINANCIAL TRANSACTION +23:25:04 Slot [233] | NOT FINANCIAL TRANSACTION +23:25:12 Slot [234] | NOT FINANCIAL TRANSACTION +23:25:22 Slot [236] | NOT FINANCIAL TRANSACTION +23:25:33 Slot [235] | NOT FINANCIAL TRANSACTION +23:25:44 Slot [237] | NOT FINANCIAL TRANSACTION +23:25:59 Slot [238] | NOT FINANCIAL TRANSACTION +23:25:59 Slot [239] | NOT FINANCIAL TRANSACTION +23:26:00 Slot [241] | NOT FINANCIAL TRANSACTION +23:26:06 Slot [240] | NOT FINANCIAL TRANSACTION +23:26:09 Slot [242] | NOT FINANCIAL TRANSACTION +23:26:20 Slot [243] | NOT FINANCIAL TRANSACTION +23:26:35 Slot [245] | NOT FINANCIAL TRANSACTION +23:26:46 Slot [246] | NOT FINANCIAL TRANSACTION +23:26:57 Slot [247] | NOT FINANCIAL TRANSACTION +23:27:05 Slot [244] | NOT FINANCIAL TRANSACTION +23:27:08 Slot [248] | NOT FINANCIAL TRANSACTION +23:27:12 Slot [249] | NOT FINANCIAL TRANSACTION +23:27:27 Slot [250] | NOT FINANCIAL TRANSACTION +23:27:42 Slot [252] | NOT FINANCIAL TRANSACTION +23:27:52 Slot [253] | NOT FINANCIAL TRANSACTION +23:28:03 Slot [251] | NOT FINANCIAL TRANSACTION +23:28:10 Slot [254] | NOT FINANCIAL TRANSACTION +23:28:10 Slot [255] | NOT FINANCIAL TRANSACTION +23:28:18 Slot [257] | NOT FINANCIAL TRANSACTION +23:28:29 Slot [256] | NOT FINANCIAL TRANSACTION +23:28:40 Slot [259] | NOT FINANCIAL TRANSACTION +23:28:50 Slot [258] | NOT FINANCIAL TRANSACTION +23:29:00 Slot [260] | NOT FINANCIAL TRANSACTION +23:29:10 Slot [264] | NOT FINANCIAL TRANSACTION +23:29:12 Slot [261] | NOT FINANCIAL TRANSACTION +23:29:15 Slot [263] | NOT FINANCIAL TRANSACTION +23:29:21 Slot [265] | NOT FINANCIAL TRANSACTION +23:29:31 Slot [266] | NOT FINANCIAL TRANSACTION +23:29:41 Slot [262] | NOT FINANCIAL TRANSACTION +23:29:52 Slot [267] | NOT FINANCIAL TRANSACTION +23:29:57 Slot [268] | NOT FINANCIAL TRANSACTION +23:30:03 Slot [269] | NOT FINANCIAL TRANSACTION +23:30:14 Slot [270] | NOT FINANCIAL TRANSACTION +23:30:19 Slot [271] | NOT FINANCIAL TRANSACTION +23:30:20 Slot [273] | NOT FINANCIAL TRANSACTION +23:30:29 Slot [272] | NOT FINANCIAL TRANSACTION +23:30:39 Slot [275] | NOT FINANCIAL TRANSACTION +23:30:50 Slot [278] | NOT FINANCIAL TRANSACTION +23:30:59 Slot [276] | NOT FINANCIAL TRANSACTION +23:31:00 Slot [274] | NOT FINANCIAL TRANSACTION +23:31:11 Slot [277] | NOT FINANCIAL TRANSACTION +23:31:16 Slot [280] | NOT FINANCIAL TRANSACTION +23:31:22 Slot [279] | NOT FINANCIAL TRANSACTION +23:31:25 Slot [281] | NOT FINANCIAL TRANSACTION +23:31:32 Slot [282] | NOT FINANCIAL TRANSACTION +23:31:42 Slot [283] | NOT FINANCIAL TRANSACTION +23:31:54 Slot [284] | NOT FINANCIAL TRANSACTION +23:32:08 Slot [286] | NOT FINANCIAL TRANSACTION +23:32:13 Slot [285] | NOT FINANCIAL TRANSACTION +23:32:18 Slot [287] | NOT FINANCIAL TRANSACTION +23:32:18 Slot [288] | NOT FINANCIAL TRANSACTION +23:32:29 Slot [289] | NOT FINANCIAL TRANSACTION +23:32:30 Slot [290] | NOT FINANCIAL TRANSACTION +23:32:40 Slot [291] | NOT FINANCIAL TRANSACTION +23:32:51 Slot [294] | NOT FINANCIAL TRANSACTION +23:33:01 Slot [292] | NOT FINANCIAL TRANSACTION +23:33:16 Slot [293] | NOT FINANCIAL TRANSACTION +23:33:20 Slot [295] | NOT FINANCIAL TRANSACTION +23:33:27 Slot [296] | NOT FINANCIAL TRANSACTION +23:33:35 Slot [297] | NOT FINANCIAL TRANSACTION +23:33:37 Slot [299] | NOT FINANCIAL TRANSACTION +23:33:52 Slot [298] | NOT FINANCIAL TRANSACTION +23:34:02 Slot [300] | NOT FINANCIAL TRANSACTION +23:34:12 Slot [302] | NOT FINANCIAL TRANSACTION +23:34:19 +Slot[301] 0200 011000 6688990102378609 ------------- 00 472248 000010000000 507703441616060017006688990102378609 507703441616 595214 621354 S +23:34:22 Slot [303] | NOT FINANCIAL TRANSACTION +23:34:23 Slot [305] | NOT FINANCIAL TRANSACTION +23:34:38 Slot [304] | NOT FINANCIAL TRANSACTION +23:34:40 Slot [307] | NOT FINANCIAL TRANSACTION +23:34:48 Slot [306] | NOT FINANCIAL TRANSACTION +23:34:57 Slot [308] | NOT FINANCIAL TRANSACTION +23:34:59 Slot [309] | NOT FINANCIAL TRANSACTION +23:35:09 Slot [310] | NOT FINANCIAL TRANSACTION +23:35:19 Slot [311] | NOT FINANCIAL TRANSACTION +23:35:24 Slot [312] | NOT FINANCIAL TRANSACTION +23:35:30 Slot [313] | NOT FINANCIAL TRANSACTION +23:35:40 Slot [314] | NOT FINANCIAL TRANSACTION +23:35:45 Slot [315] | NOT FINANCIAL TRANSACTION +23:35:51 Slot [316] | NOT FINANCIAL TRANSACTION +23:35:59 Slot [318] | NOT FINANCIAL TRANSACTION +23:36:01 Slot [317] | NOT FINANCIAL TRANSACTION +23:36:11 Slot [319] | NOT FINANCIAL TRANSACTION +23:36:21 Slot [320] | NOT FINANCIAL TRANSACTION +23:36:24 Slot [322] | NOT FINANCIAL TRANSACTION +23:36:26 Slot [321] | NOT FINANCIAL TRANSACTION +23:36:31 Slot [323] | NOT FINANCIAL TRANSACTION +23:36:42 Slot [326] | NOT FINANCIAL TRANSACTION +23:36:50 Slot [324] | NOT FINANCIAL TRANSACTION +23:36:58 Slot [325] | NOT FINANCIAL TRANSACTION +23:37:09 Slot [327] | NOT FINANCIAL TRANSACTION +23:37:20 Slot [329] | NOT FINANCIAL TRANSACTION +23:37:28 Slot [328] | NOT FINANCIAL TRANSACTION +23:37:30 Slot [330] | NOT FINANCIAL TRANSACTION +23:37:40 Slot [331] | NOT FINANCIAL TRANSACTION +23:37:50 Slot [332] | NOT FINANCIAL TRANSACTION +23:37:55 Slot [334] | NOT FINANCIAL TRANSACTION +23:38:05 Slot [333] | NOT FINANCIAL TRANSACTION +23:38:17 Slot [335] | NOT FINANCIAL TRANSACTION +23:38:30 Slot [337] | NOT FINANCIAL TRANSACTION +23:38:31 Slot [336] | NOT FINANCIAL TRANSACTION +23:38:41 Slot [339] | NOT FINANCIAL TRANSACTION +23:38:57 Slot [338] | NOT FINANCIAL TRANSACTION +23:39:00 Slot [342] | NOT FINANCIAL TRANSACTION +23:39:07 Slot [340] | NOT FINANCIAL TRANSACTION +23:39:18 Slot [341] | NOT FINANCIAL TRANSACTION +23:39:28 Slot [343] | NOT FINANCIAL TRANSACTION +23:39:32 Slot [344] | NOT FINANCIAL TRANSACTION +23:39:44 Slot [345] | NOT FINANCIAL TRANSACTION +23:39:57 Slot [346] | NOT FINANCIAL TRANSACTION +23:39:59 Slot [348] | NOT FINANCIAL TRANSACTION +23:40:05 Slot [349] | NOT FINANCIAL TRANSACTION +23:40:09 Slot [350] | NOT FINANCIAL TRANSACTION +23:40:20 Slot [347] | NOT FINANCIAL TRANSACTION +23:40:30 Slot [354] | NOT FINANCIAL TRANSACTION +23:40:34 Slot [351] | NOT FINANCIAL TRANSACTION +23:40:40 Slot [352] | NOT FINANCIAL TRANSACTION +23:40:56 Slot [356] | NOT FINANCIAL TRANSACTION +23:40:59 Slot [353] | NOT FINANCIAL TRANSACTION +23:41:10 Slot [355] | NOT FINANCIAL TRANSACTION +23:41:12 Slot [358] | NOT FINANCIAL TRANSACTION +23:41:22 Slot [357] | NOT FINANCIAL TRANSACTION +23:41:32 Slot [361] | NOT FINANCIAL TRANSACTION +23:41:33 +Slot[359] 0200 010000 6688990106159005 ------------- 00 472331 000030000000 507705246028010133006688990106159005 507705246028 474877 621354 S +23:41:36 Slot [362] | NOT FINANCIAL TRANSACTION +23:41:42 Slot [364] | NOT FINANCIAL TRANSACTION +23:41:53 Slot [363] | NOT FINANCIAL TRANSACTION +23:42:03 Slot [365] | NOT FINANCIAL TRANSACTION +23:42:14 Slot [367] | NOT FINANCIAL TRANSACTION +23:42:15 Slot [366] | NOT FINANCIAL TRANSACTION +23:42:29 Slot [370] | NOT FINANCIAL TRANSACTION +23:42:38 Slot [368] | NOT FINANCIAL TRANSACTION +23:42:40 Slot [371] | NOT FINANCIAL TRANSACTION +23:42:50 Slot [369] | NOT FINANCIAL TRANSACTION +23:42:59 Slot [375] | NOT FINANCIAL TRANSACTION +23:43:06 Slot [372] | NOT FINANCIAL TRANSACTION +23:43:16 Slot [374] | NOT FINANCIAL TRANSACTION +23:43:19 Slot [373] | NOT FINANCIAL TRANSACTION +23:43:30 Slot [376] | NOT FINANCIAL TRANSACTION +23:43:40 Slot [378] | NOT FINANCIAL TRANSACTION +23:43:41 Slot [377] | NOT FINANCIAL TRANSACTION +23:43:56 Slot [379] | NOT FINANCIAL TRANSACTION +23:44:07 Slot [380] | NOT FINANCIAL TRANSACTION +23:44:18 Slot [381] | NOT FINANCIAL TRANSACTION +23:44:23 Slot [382] | NOT FINANCIAL TRANSACTION +23:44:33 Slot [384] | NOT FINANCIAL TRANSACTION +23:44:42 Slot [386] | NOT FINANCIAL TRANSACTION +23:44:43 Slot [383] | NOT FINANCIAL TRANSACTION +23:44:54 Slot [387] | NOT FINANCIAL TRANSACTION +23:44:55 Slot [388] | NOT FINANCIAL TRANSACTION +23:45:09 Slot [360] | NOT FINANCIAL TRANSACTION +23:45:20 Slot [389] | NOT FINANCIAL TRANSACTION +23:45:28 Slot [390] | NOT FINANCIAL TRANSACTION +23:45:30 Slot [391] | NOT FINANCIAL TRANSACTION +23:45:41 Slot [394] | NOT FINANCIAL TRANSACTION +23:45:44 Slot [396] | NOT FINANCIAL TRANSACTION +23:45:51 Slot [393] | NOT FINANCIAL TRANSACTION +23:45:54 +Slot[392] 0200 011000 6688990040091900 ------------- 00 472365 000020000000 507704910366020025006688990040091900 507704910366 559144 621354 S +23:45:58 Slot [395] | NOT FINANCIAL TRANSACTION +23:46:01 Slot [397] | NOT FINANCIAL TRANSACTION +23:46:12 Slot [398] | NOT FINANCIAL TRANSACTION +23:46:23 Slot [400] | NOT FINANCIAL TRANSACTION +23:46:33 Slot [399] | NOT FINANCIAL TRANSACTION +23:46:33 Slot [401] | NOT FINANCIAL TRANSACTION +23:46:46 Slot [402] | NOT FINANCIAL TRANSACTION +23:46:48 Slot [403] | NOT FINANCIAL TRANSACTION +23:46:58 Slot [404] | NOT FINANCIAL TRANSACTION +23:47:08 Slot [407] | NOT FINANCIAL TRANSACTION +23:47:19 Slot [408] | NOT FINANCIAL TRANSACTION +23:47:29 Slot [406] | NOT FINANCIAL TRANSACTION +23:47:38 Slot [405] | NOT FINANCIAL TRANSACTION +23:47:39 Slot [409] | NOT FINANCIAL TRANSACTION +23:47:48 Slot [410] | NOT FINANCIAL TRANSACTION +23:47:50 Slot [411] | NOT FINANCIAL TRANSACTION +23:47:53 +Slot[413] 0200 301000 6688990040091900 ------------- 00 472384 000000000000 507704910368020025006688990040091900 507704910368 513204 621354 S +23:48:00 Slot [385] | NOT FINANCIAL TRANSACTION +23:48:10 Slot [412] | NOT FINANCIAL TRANSACTION +23:48:20 Slot [414] | NOT FINANCIAL TRANSACTION +23:48:30 Slot [415] | NOT FINANCIAL TRANSACTION +23:48:41 Slot [416] | NOT FINANCIAL TRANSACTION +23:48:43 Slot [417] | NOT FINANCIAL TRANSACTION +23:48:50 Slot [420] | NOT FINANCIAL TRANSACTION +23:48:51 Slot [419] | NOT FINANCIAL TRANSACTION +23:48:57 +Slot[418] 0200 011000 6688990040091900 ------------- 00 472395 000100000000 507704910370020025006688990040091900 507704910370 816323 621354 S +23:49:01 Slot [422] | NOT FINANCIAL TRANSACTION +23:49:12 Slot [421] | NOT FINANCIAL TRANSACTION +23:49:27 Slot [426] | NOT FINANCIAL TRANSACTION +23:49:38 Slot [424] | NOT FINANCIAL TRANSACTION +23:49:48 Slot [425] | NOT FINANCIAL TRANSACTION +23:49:48 Slot [427] | NOT FINANCIAL TRANSACTION +23:49:52 Slot [428] | NOT FINANCIAL TRANSACTION +23:49:55 Slot [429] | NOT FINANCIAL TRANSACTION +23:49:58 Slot [430] | NOT FINANCIAL TRANSACTION +23:50:06 +Slot[431] 0200 301000 6213545000933212 ------------- 00 899030 000000000000 507800844625030150036213545000933212 507800844625 312293 668899 S +23:50:08 Slot [433] | NOT FINANCIAL TRANSACTION +23:50:20 Slot [434] | NOT FINANCIAL TRANSACTION +23:50:20 +Slot[432] 0200 011000 6688990040091900 ------------- 00 472403 000080000000 507704910372020025006688990040091900 507704910372 948020 621354 S +23:50:36 Slot [435] | NOT FINANCIAL TRANSACTION +23:50:46 Slot [436] | NOT FINANCIAL TRANSACTION +23:50:53 Slot [438] | NOT FINANCIAL TRANSACTION +23:50:54 Slot [437] | NOT FINANCIAL TRANSACTION +23:50:56 Slot [439] | NOT FINANCIAL TRANSACTION +23:50:58 Slot [440] | NOT FINANCIAL TRANSACTION +23:51:06 Slot [441] | NOT FINANCIAL TRANSACTION +23:51:21 Slot [442] | NOT FINANCIAL TRANSACTION +23:51:36 Slot [444] | NOT FINANCIAL TRANSACTION +23:51:48 Slot [423] | NOT FINANCIAL TRANSACTION +23:51:56 Slot [443] | NOT FINANCIAL TRANSACTION +23:51:58 Slot [446] | NOT FINANCIAL TRANSACTION +23:52:03 Slot [447] | NOT FINANCIAL TRANSACTION +23:52:13 Slot [445] | NOT FINANCIAL TRANSACTION +23:52:24 Slot [448] | NOT FINANCIAL TRANSACTION +23:52:34 Slot [450] | NOT FINANCIAL TRANSACTION +23:52:50 Slot [449] | NOT FINANCIAL TRANSACTION +23:52:58 Slot [451] | NOT FINANCIAL TRANSACTION +23:53:00 Slot [452] | NOT FINANCIAL TRANSACTION +23:53:03 Slot [453] | NOT FINANCIAL TRANSACTION +23:53:05 Slot [454] | NOT FINANCIAL TRANSACTION +23:53:16 Slot [455] | NOT FINANCIAL TRANSACTION +23:53:31 Slot [456] | NOT FINANCIAL TRANSACTION +23:53:46 Slot [458] | NOT FINANCIAL TRANSACTION +23:53:56 Slot [457] | NOT FINANCIAL TRANSACTION +23:54:00 Slot [459] | NOT FINANCIAL TRANSACTION +23:54:08 Slot [460] | NOT FINANCIAL TRANSACTION +23:54:11 Slot [461] | NOT FINANCIAL TRANSACTION +23:54:22 Slot [463] | NOT FINANCIAL TRANSACTION +23:54:38 Slot [464] | NOT FINANCIAL TRANSACTION +23:54:48 Slot [462] | NOT FINANCIAL TRANSACTION +23:54:55 Slot [465] | NOT FINANCIAL TRANSACTION +23:54:59 Slot [468] | NOT FINANCIAL TRANSACTION +23:55:02 Slot [466] | NOT FINANCIAL TRANSACTION +23:55:09 Slot [469] | NOT FINANCIAL TRANSACTION +23:55:13 Slot [467] | NOT FINANCIAL TRANSACTION +23:55:19 Slot [470] | NOT FINANCIAL TRANSACTION +23:55:30 Slot [471] | NOT FINANCIAL TRANSACTION +23:55:40 Slot [472] | NOT FINANCIAL TRANSACTION +23:55:51 Slot [473] | NOT FINANCIAL TRANSACTION +23:55:58 Slot [474] | NOT FINANCIAL TRANSACTION +23:56:01 Slot [475] | NOT FINANCIAL TRANSACTION +23:56:04 Slot [477] | NOT FINANCIAL TRANSACTION +23:56:12 Slot [478] | NOT FINANCIAL TRANSACTION +23:56:18 Slot [479] | NOT FINANCIAL TRANSACTION +23:56:22 Slot [476] | NOT FINANCIAL TRANSACTION +23:56:33 Slot [481] | NOT FINANCIAL TRANSACTION +23:56:49 Slot [482] | NOT FINANCIAL TRANSACTION +23:56:59 Slot [480] | NOT FINANCIAL TRANSACTION +23:57:06 Slot [483] | NOT FINANCIAL TRANSACTION +23:57:09 Slot [484] | NOT FINANCIAL TRANSACTION +23:57:19 Slot [486] | NOT FINANCIAL TRANSACTION +23:57:23 Slot [489] | NOT FINANCIAL TRANSACTION +23:57:30 Slot [485] | NOT FINANCIAL TRANSACTION +23:57:40 Slot [487] | NOT FINANCIAL TRANSACTION +23:57:51 Slot [490] | NOT FINANCIAL TRANSACTION +23:58:01 Slot [488] | NOT FINANCIAL TRANSACTION +23:58:08 Slot [491] | NOT FINANCIAL TRANSACTION +23:58:12 Slot [493] | NOT FINANCIAL TRANSACTION +23:58:22 Slot [492] | NOT FINANCIAL TRANSACTION +23:58:28 Slot [494] | NOT FINANCIAL TRANSACTION +23:58:38 Slot [495] | NOT FINANCIAL TRANSACTION +23:58:53 Slot [498] | NOT FINANCIAL TRANSACTION +23:59:03 Slot [496] | NOT FINANCIAL TRANSACTION +23:59:10 Slot [497] | NOT FINANCIAL TRANSACTION +23:59:14 Slot [499] | NOT FINANCIAL TRANSACTION +23:59:29 Slot [0] | NOT FINANCIAL TRANSACTION +23:59:33 Slot [1] | NOT FINANCIAL TRANSACTION +23:59:40 Slot [2] | NOT FINANCIAL TRANSACTION +23:59:51 Slot [3] | NOT FINANCIAL TRANSACTION +23:59:55 Slot [5] | NOT FINANCIAL TRANSACTION diff --git a/BcnxWebService/sample/verify.log.150320 b/BcnxWebService/sample/verify.log.150320 new file mode 100644 index 0000000..3c533e9 --- /dev/null +++ b/BcnxWebService/sample/verify.log.150320 @@ -0,0 +1,17583 @@ +00:00:06 Slot [294] | NOT FINANCIAL TRANSACTION +00:00:18 Slot [257] | NOT FINANCIAL TRANSACTION +00:00:34 Slot [303] | NOT FINANCIAL TRANSACTION +00:00:39 Slot [299] | NOT FINANCIAL TRANSACTION +00:00:44 Slot [302] | NOT FINANCIAL TRANSACTION +00:00:53 Slot [292] | NOT FINANCIAL TRANSACTION +00:01:01 Slot [300] | NOT FINANCIAL TRANSACTION +00:01:15 Slot [281] | NOT FINANCIAL TRANSACTION +00:01:21 Slot [295] | NOT FINANCIAL TRANSACTION +00:01:26 Slot [308] | NOT FINANCIAL TRANSACTION +00:01:37 Slot [262] | NOT FINANCIAL TRANSACTION +00:01:48 Slot [296] | NOT FINANCIAL TRANSACTION +00:01:58 Slot [283] | NOT FINANCIAL TRANSACTION +00:01:59 Slot [311] | NOT FINANCIAL TRANSACTION +00:02:14 Slot [312] | NOT FINANCIAL TRANSACTION +00:02:25 Slot [316] | NOT FINANCIAL TRANSACTION +00:02:36 Slot [306] | NOT FINANCIAL TRANSACTION +00:02:41 Slot [286] | NOT FINANCIAL TRANSACTION +00:02:53 Slot [307] | NOT FINANCIAL TRANSACTION +00:03:03 Slot [317] | NOT FINANCIAL TRANSACTION +00:03:04 Slot [310] | NOT FINANCIAL TRANSACTION +00:03:20 Slot [318] | NOT FINANCIAL TRANSACTION +00:03:31 Slot [289] | NOT FINANCIAL TRANSACTION +00:03:41 Slot [315] | NOT FINANCIAL TRANSACTION +00:03:43 Slot [304] | NOT FINANCIAL TRANSACTION +00:03:53 Slot [322] | NOT FINANCIAL TRANSACTION +00:04:04 Slot [325] | NOT FINANCIAL TRANSACTION +00:04:08 Slot [285] | NOT FINANCIAL TRANSACTION +00:04:16 Slot [297] | NOT FINANCIAL TRANSACTION +00:04:32 Slot [291] | NOT FINANCIAL TRANSACTION +00:04:45 Slot [326] | NOT FINANCIAL TRANSACTION +00:04:49 Slot [305] | NOT FINANCIAL TRANSACTION +00:04:56 Slot [301] | NOT FINANCIAL TRANSACTION +00:05:00 Slot [327] | NOT FINANCIAL TRANSACTION +00:05:13 Slot [333] | NOT FINANCIAL TRANSACTION +00:05:15 Slot [314] | NOT FINANCIAL TRANSACTION +00:05:25 Slot [331] | NOT FINANCIAL TRANSACTION +00:05:36 Slot [321] | NOT FINANCIAL TRANSACTION +00:05:46 Slot [336] | NOT FINANCIAL TRANSACTION +00:05:47 Slot [334] | NOT FINANCIAL TRANSACTION +00:05:57 Slot [337] | NOT FINANCIAL TRANSACTION +00:06:00 Slot [335] | NOT FINANCIAL TRANSACTION +00:06:07 Slot [342] | NOT FINANCIAL TRANSACTION +00:06:17 Slot [320] | NOT FINANCIAL TRANSACTION +00:06:18 Slot [341] | NOT FINANCIAL TRANSACTION +00:06:21 Slot [268] | NOT FINANCIAL TRANSACTION +00:06:28 Slot [344] | NOT FINANCIAL TRANSACTION +00:06:43 Slot [345] | NOT FINANCIAL TRANSACTION +00:06:49 Slot [329] | NOT FINANCIAL TRANSACTION +00:06:54 Slot [339] | NOT FINANCIAL TRANSACTION +00:07:05 Slot [323] | NOT FINANCIAL TRANSACTION +00:07:15 Slot [309] | NOT FINANCIAL TRANSACTION +00:07:16 Slot [348] | NOT FINANCIAL TRANSACTION +00:07:23 Slot [352] | NOT FINANCIAL TRANSACTION +00:07:31 Slot [328] | NOT FINANCIAL TRANSACTION +00:07:47 Slot [350] | NOT FINANCIAL TRANSACTION +00:07:51 Slot [347] | NOT FINANCIAL TRANSACTION +00:07:57 Slot [319] | NOT FINANCIAL TRANSACTION +00:08:08 Slot [356] | NOT FINANCIAL TRANSACTION +00:08:19 Slot [332] | NOT FINANCIAL TRANSACTION +00:08:28 Slot [346] | NOT FINANCIAL TRANSACTION +00:08:30 Slot [330] | NOT FINANCIAL TRANSACTION +00:08:41 Slot [357] | NOT FINANCIAL TRANSACTION +00:08:52 Slot [366] | NOT FINANCIAL TRANSACTION +00:08:53 Slot [343] | NOT FINANCIAL TRANSACTION +00:09:02 Slot [365] | NOT FINANCIAL TRANSACTION +00:09:13 Slot [313] | NOT FINANCIAL TRANSACTION +00:09:24 Slot [371] | NOT FINANCIAL TRANSACTION +00:09:33 Slot [340] | NOT FINANCIAL TRANSACTION +00:09:35 Slot [324] | NOT FINANCIAL TRANSACTION +00:09:50 Slot [378] | NOT FINANCIAL TRANSACTION +00:09:55 Slot [353] | NOT FINANCIAL TRANSACTION +00:09:56 Slot [373] | NOT FINANCIAL TRANSACTION +00:10:01 Slot [355] | NOT FINANCIAL TRANSACTION +00:10:12 Slot [363] | NOT FINANCIAL TRANSACTION +00:10:27 Slot [382] | NOT FINANCIAL TRANSACTION +00:10:38 Slot [358] | NOT FINANCIAL TRANSACTION +00:10:38 Slot [338] | NOT FINANCIAL TRANSACTION +00:10:49 Slot [370] | NOT FINANCIAL TRANSACTION +00:10:57 Slot [360] | NOT FINANCIAL TRANSACTION +00:11:06 Slot [379] | NOT FINANCIAL TRANSACTION +00:11:17 Slot [396] | NOT FINANCIAL TRANSACTION +00:11:21 Slot [354] | NOT FINANCIAL TRANSACTION +00:11:32 Slot [369] | NOT FINANCIAL TRANSACTION +00:11:43 Slot [351] | NOT FINANCIAL TRANSACTION +00:11:43 Slot [374] | NOT FINANCIAL TRANSACTION +00:11:53 Slot [389] | NOT FINANCIAL TRANSACTION +00:11:59 Slot [390] | NOT FINANCIAL TRANSACTION +00:12:09 Slot [376] | NOT FINANCIAL TRANSACTION +00:12:14 +Slot[395] 0200 011000 6688990101664801 ------------- 00 661405 000100000000 507902826410010076006688990101664801 507902826410 500446 621354 S +00:12:26 Slot [359] | NOT FINANCIAL TRANSACTION +00:12:42 Slot [410] | NOT FINANCIAL TRANSACTION +00:12:48 Slot [361] | NOT FINANCIAL TRANSACTION +00:12:52 Slot [349] | NOT FINANCIAL TRANSACTION +00:13:01 Slot [383] | NOT FINANCIAL TRANSACTION +00:13:03 Slot [413] | NOT FINANCIAL TRANSACTION +00:13:19 Slot [393] | NOT FINANCIAL TRANSACTION +00:13:34 Slot [397] | NOT FINANCIAL TRANSACTION +00:13:45 Slot [400] | NOT FINANCIAL TRANSACTION +00:13:53 Slot [399] | NOT FINANCIAL TRANSACTION +00:13:55 Slot [414] | NOT FINANCIAL TRANSACTION +00:14:03 Slot [394] | NOT FINANCIAL TRANSACTION +00:14:05 Slot [387] | NOT FINANCIAL TRANSACTION +00:14:20 Slot [368] | NOT FINANCIAL TRANSACTION +00:14:35 Slot [418] | NOT FINANCIAL TRANSACTION +00:14:45 Slot [372] | NOT FINANCIAL TRANSACTION +00:14:56 Slot [406] | NOT FINANCIAL TRANSACTION +00:14:58 Slot [380] | NOT FINANCIAL TRANSACTION +00:15:00 Slot [419] | NOT FINANCIAL TRANSACTION +00:15:05 Slot [411] | NOT FINANCIAL TRANSACTION +00:15:15 Slot [407] | NOT FINANCIAL TRANSACTION +00:15:27 Slot [384] | NOT FINANCIAL TRANSACTION +00:15:38 Slot [401] | NOT FINANCIAL TRANSACTION +00:15:46 +Slot[416] 0200 300000 1989010003167238 ------------- 00 661458 000000000000 507905090005040042001989010003167238 507905090005 523643 621354 S +00:15:53 Slot [420] | NOT FINANCIAL TRANSACTION +00:16:03 Slot [415] | NOT FINANCIAL TRANSACTION +00:16:04 Slot [381] | NOT FINANCIAL TRANSACTION +00:16:07 Slot [425] | NOT FINANCIAL TRANSACTION +00:16:15 Slot [388] | NOT FINANCIAL TRANSACTION +00:16:21 Slot [398] | NOT FINANCIAL TRANSACTION +00:16:26 Slot [433] | NOT FINANCIAL TRANSACTION +00:16:41 Slot [364] | NOT FINANCIAL TRANSACTION +00:16:53 Slot [367] | NOT FINANCIAL TRANSACTION +00:17:07 Slot [430] | NOT FINANCIAL TRANSACTION +00:17:08 Slot [441] | NOT FINANCIAL TRANSACTION +00:17:09 Slot [375] | NOT FINANCIAL TRANSACTION +00:17:19 Slot [402] | NOT FINANCIAL TRANSACTION +00:17:31 Slot [408] | NOT FINANCIAL TRANSACTION +00:17:47 Slot [437] | NOT FINANCIAL TRANSACTION +00:17:58 Slot [409] | NOT FINANCIAL TRANSACTION +00:18:01 Slot [385] | NOT FINANCIAL TRANSACTION +00:18:11 Slot [403] | NOT FINANCIAL TRANSACTION +00:18:13 Slot [362] | NOT FINANCIAL TRANSACTION +00:18:14 Slot [392] | NOT FINANCIAL TRANSACTION +00:18:26 Slot [412] | NOT FINANCIAL TRANSACTION +00:18:40 Slot [447] | NOT FINANCIAL TRANSACTION +00:18:52 Slot [450] | NOT FINANCIAL TRANSACTION +00:19:02 Slot [417] | NOT FINANCIAL TRANSACTION +00:19:13 Slot [386] | NOT FINANCIAL TRANSACTION +00:19:13 Slot [391] | NOT FINANCIAL TRANSACTION +00:19:18 Slot [377] | NOT FINANCIAL TRANSACTION +00:19:24 Slot [405] | NOT FINANCIAL TRANSACTION +00:19:39 Slot [443] | NOT FINANCIAL TRANSACTION +00:19:54 Slot [456] | NOT FINANCIAL TRANSACTION +00:19:56 Slot [446] | NOT FINANCIAL TRANSACTION +00:20:04 Slot [435] | NOT FINANCIAL TRANSACTION +00:20:15 Slot [404] | NOT FINANCIAL TRANSACTION +00:20:15 Slot [424] | NOT FINANCIAL TRANSACTION +00:20:23 Slot [429] | NOT FINANCIAL TRANSACTION +00:20:30 Slot [442] | NOT FINANCIAL TRANSACTION +00:20:41 Slot [445] | NOT FINANCIAL TRANSACTION +00:20:52 Slot [438] | NOT FINANCIAL TRANSACTION +00:21:03 Slot [434] | NOT FINANCIAL TRANSACTION +00:21:14 Slot [428] | NOT FINANCIAL TRANSACTION +00:21:17 Slot [427] | NOT FINANCIAL TRANSACTION +00:21:20 Slot [426] | NOT FINANCIAL TRANSACTION +00:21:24 Slot [431] | NOT FINANCIAL TRANSACTION +00:21:28 Slot [451] | NOT FINANCIAL TRANSACTION +00:21:35 Slot [457] | NOT FINANCIAL TRANSACTION +00:21:51 Slot [422] | NOT FINANCIAL TRANSACTION +00:22:02 Slot [462] | NOT FINANCIAL TRANSACTION +00:22:17 Slot [465] | NOT FINANCIAL TRANSACTION +00:22:19 Slot [444] | NOT FINANCIAL TRANSACTION +00:22:33 Slot [421] | NOT FINANCIAL TRANSACTION +00:22:34 Slot [439] | NOT FINANCIAL TRANSACTION +00:22:42 Slot [458] | NOT FINANCIAL TRANSACTION +00:22:49 Slot [423] | NOT FINANCIAL TRANSACTION +00:22:59 Slot [466] | NOT FINANCIAL TRANSACTION +00:23:15 Slot [436] | NOT FINANCIAL TRANSACTION +00:23:21 Slot [459] | NOT FINANCIAL TRANSACTION +00:23:25 Slot [475] | NOT FINANCIAL TRANSACTION +00:23:38 Slot [452] | NOT FINANCIAL TRANSACTION +00:23:41 Slot [468] | NOT FINANCIAL TRANSACTION +00:23:52 Slot [449] | NOT FINANCIAL TRANSACTION +00:24:09 Slot [455] | NOT FINANCIAL TRANSACTION +00:24:20 Slot [440] | NOT FINANCIAL TRANSACTION +00:24:23 Slot [460] | NOT FINANCIAL TRANSACTION +00:24:34 Slot [432] | NOT FINANCIAL TRANSACTION +00:24:43 Slot [453] | NOT FINANCIAL TRANSACTION +00:24:48 Slot [482] | NOT FINANCIAL TRANSACTION +00:24:56 Slot [488] | NOT FINANCIAL TRANSACTION +00:24:59 Slot [470] | NOT FINANCIAL TRANSACTION +00:25:10 Slot [495] | NOT FINANCIAL TRANSACTION +00:25:20 Slot [490] | NOT FINANCIAL TRANSACTION +00:25:25 Slot [463] | NOT FINANCIAL TRANSACTION +00:25:30 Slot [448] | NOT FINANCIAL TRANSACTION +00:25:41 Slot [484] | NOT FINANCIAL TRANSACTION +00:25:48 Slot [471] | NOT FINANCIAL TRANSACTION +00:25:51 Slot [480] | NOT FINANCIAL TRANSACTION +00:26:02 Slot [479] | NOT FINANCIAL TRANSACTION +00:26:17 Slot [498] | NOT FINANCIAL TRANSACTION +00:26:21 Slot [0] | NOT FINANCIAL TRANSACTION +00:26:27 Slot [2] | NOT FINANCIAL TRANSACTION +00:26:30 Slot [493] | NOT FINANCIAL TRANSACTION +00:26:44 Slot [473] | NOT FINANCIAL TRANSACTION +00:26:54 Slot [1] | NOT FINANCIAL TRANSACTION +00:26:55 Slot [4] | NOT FINANCIAL TRANSACTION +00:27:06 Slot [474] | NOT FINANCIAL TRANSACTION +00:27:21 Slot [483] | NOT FINANCIAL TRANSACTION +00:27:29 Slot [476] | NOT FINANCIAL TRANSACTION +00:27:32 Slot [489] | NOT FINANCIAL TRANSACTION +00:27:43 Slot [477] | NOT FINANCIAL TRANSACTION +00:27:54 Slot [472] | NOT FINANCIAL TRANSACTION +00:27:59 Slot [486] | NOT FINANCIAL TRANSACTION +00:28:06 Slot [492] | NOT FINANCIAL TRANSACTION +00:28:21 Slot [6] | NOT FINANCIAL TRANSACTION +00:28:31 Slot [485] | NOT FINANCIAL TRANSACTION +00:28:35 Slot [454] | NOT FINANCIAL TRANSACTION +00:28:45 Slot [13] | NOT FINANCIAL TRANSACTION +00:28:47 Slot [14] | NOT FINANCIAL TRANSACTION +00:28:57 Slot [12] | NOT FINANCIAL TRANSACTION +00:29:04 Slot [16] | NOT FINANCIAL TRANSACTION +00:29:07 Slot [469] | NOT FINANCIAL TRANSACTION +00:29:18 Slot [494] | NOT FINANCIAL TRANSACTION +00:29:30 Slot [22] | NOT FINANCIAL TRANSACTION +00:29:33 Slot [491] | NOT FINANCIAL TRANSACTION +00:29:40 Slot [17] | NOT FINANCIAL TRANSACTION +00:29:51 Slot [499] | NOT FINANCIAL TRANSACTION +00:29:56 Slot [10] | NOT FINANCIAL TRANSACTION +00:30:02 Slot [23] | NOT FINANCIAL TRANSACTION +00:30:09 Slot [31] | NOT FINANCIAL TRANSACTION +00:30:13 Slot [3] | NOT FINANCIAL TRANSACTION +00:30:24 Slot [481] | NOT FINANCIAL TRANSACTION +00:30:35 Slot [29] | NOT FINANCIAL TRANSACTION +00:30:35 Slot [21] | NOT FINANCIAL TRANSACTION +00:30:46 Slot [7] | NOT FINANCIAL TRANSACTION +00:31:01 Slot [33] | NOT FINANCIAL TRANSACTION +00:31:11 Slot [11] | NOT FINANCIAL TRANSACTION +00:31:14 Slot [35] | NOT FINANCIAL TRANSACTION +00:31:21 Slot [496] | NOT FINANCIAL TRANSACTION +00:31:22 Slot [30] | NOT FINANCIAL TRANSACTION +00:31:33 Slot [36] | NOT FINANCIAL TRANSACTION +00:31:37 Slot [37] | NOT FINANCIAL TRANSACTION +00:31:48 Slot [32] | NOT FINANCIAL TRANSACTION +00:31:58 Slot [461] | NOT FINANCIAL TRANSACTION +00:32:10 Slot [9] | NOT FINANCIAL TRANSACTION +00:32:19 Slot [467] | NOT FINANCIAL TRANSACTION +00:32:20 Slot [45] | NOT FINANCIAL TRANSACTION +00:32:30 Slot [40] | NOT FINANCIAL TRANSACTION +00:32:39 Slot [18] | NOT FINANCIAL TRANSACTION +00:32:42 Slot [497] | NOT FINANCIAL TRANSACTION +00:32:53 Slot [28] | NOT FINANCIAL TRANSACTION +00:33:09 Slot [43] | NOT FINANCIAL TRANSACTION +00:33:24 Slot [50] | NOT FINANCIAL TRANSACTION +00:33:25 Slot [8] | NOT FINANCIAL TRANSACTION +00:33:41 Slot [52] | NOT FINANCIAL TRANSACTION +00:33:41 Slot [44] | NOT FINANCIAL TRANSACTION +00:33:56 Slot [61] | NOT FINANCIAL TRANSACTION +00:34:06 Slot [25] | NOT FINANCIAL TRANSACTION +00:34:17 Slot [15] | NOT FINANCIAL TRANSACTION +00:34:28 Slot [55] | NOT FINANCIAL TRANSACTION +00:34:29 Slot [478] | NOT FINANCIAL TRANSACTION +00:34:39 Slot [68] | NOT FINANCIAL TRANSACTION +00:34:43 Slot [63] | NOT FINANCIAL TRANSACTION +00:34:55 Slot [60] | NOT FINANCIAL TRANSACTION +00:34:56 Slot [464] | NOT FINANCIAL TRANSACTION +00:35:05 Slot [41] | NOT FINANCIAL TRANSACTION +00:35:20 Slot [38] | NOT FINANCIAL TRANSACTION +00:35:34 Slot [73] | NOT FINANCIAL TRANSACTION +00:35:36 Slot [20] | NOT FINANCIAL TRANSACTION +00:35:45 Slot [487] | NOT FINANCIAL TRANSACTION +00:35:52 Slot [27] | NOT FINANCIAL TRANSACTION +00:36:02 Slot [48] | NOT FINANCIAL TRANSACTION +00:36:15 Slot [26] | NOT FINANCIAL TRANSACTION +00:36:21 Slot [46] | NOT FINANCIAL TRANSACTION +00:36:26 Slot [19] | NOT FINANCIAL TRANSACTION +00:36:36 Slot [69] | NOT FINANCIAL TRANSACTION +00:36:39 Slot [47] | NOT FINANCIAL TRANSACTION +00:36:47 Slot [58] | NOT FINANCIAL TRANSACTION +00:36:47 Slot [78] | NOT FINANCIAL TRANSACTION +00:37:03 Slot [54] | NOT FINANCIAL TRANSACTION +00:37:18 Slot [81] | NOT FINANCIAL TRANSACTION +00:37:29 Slot [24] | NOT FINANCIAL TRANSACTION +00:37:40 Slot [34] | NOT FINANCIAL TRANSACTION +00:37:44 Slot [57] | NOT FINANCIAL TRANSACTION +00:37:49 Slot [86] | NOT FINANCIAL TRANSACTION +00:37:51 Slot [42] | NOT FINANCIAL TRANSACTION +00:38:03 Slot [88] | NOT FINANCIAL TRANSACTION +00:38:17 Slot [49] | NOT FINANCIAL TRANSACTION +00:38:28 Slot [5] | NOT FINANCIAL TRANSACTION +00:38:41 Slot [89] | NOT FINANCIAL TRANSACTION +00:38:49 Slot [79] | NOT FINANCIAL TRANSACTION +00:38:51 Slot [59] | NOT FINANCIAL TRANSACTION +00:38:54 Slot [84] | NOT FINANCIAL TRANSACTION +00:39:09 Slot [62] | NOT FINANCIAL TRANSACTION +00:39:21 Slot [67] | NOT FINANCIAL TRANSACTION +00:39:24 Slot [99] | NOT FINANCIAL TRANSACTION +00:39:32 Slot [39] | NOT FINANCIAL TRANSACTION +00:39:32 Slot [51] | NOT FINANCIAL TRANSACTION +00:39:47 Slot [82] | NOT FINANCIAL TRANSACTION +00:39:53 Slot [64] | NOT FINANCIAL TRANSACTION +00:39:54 Slot [93] | NOT FINANCIAL TRANSACTION +00:39:56 Slot [56] | NOT FINANCIAL TRANSACTION +00:39:58 Slot [91] | NOT FINANCIAL TRANSACTION +00:40:08 Slot [100] | NOT FINANCIAL TRANSACTION +00:40:19 Slot [65] | NOT FINANCIAL TRANSACTION +00:40:34 Slot [77] | NOT FINANCIAL TRANSACTION +00:40:50 Slot [72] | NOT FINANCIAL TRANSACTION +00:40:55 Slot [106] | NOT FINANCIAL TRANSACTION +00:40:59 Slot [76] | NOT FINANCIAL TRANSACTION +00:41:02 Slot [66] | NOT FINANCIAL TRANSACTION +00:41:18 Slot [90] | NOT FINANCIAL TRANSACTION +00:41:21 Slot [114] | NOT FINANCIAL TRANSACTION +00:41:29 Slot [74] | NOT FINANCIAL TRANSACTION +00:41:45 Slot [107] | NOT FINANCIAL TRANSACTION +00:41:57 Slot [83] | NOT FINANCIAL TRANSACTION +00:42:03 Slot [92] | NOT FINANCIAL TRANSACTION +00:42:04 Slot [118] | NOT FINANCIAL TRANSACTION +00:42:17 Slot [121] | NOT FINANCIAL TRANSACTION +00:42:28 Slot [113] | NOT FINANCIAL TRANSACTION +00:42:39 Slot [108] | NOT FINANCIAL TRANSACTION +00:42:54 Slot [94] | NOT FINANCIAL TRANSACTION +00:42:59 Slot [115] | NOT FINANCIAL TRANSACTION +00:43:05 Slot [127] | NOT FINANCIAL TRANSACTION +00:43:09 Slot [125] | NOT FINANCIAL TRANSACTION +00:43:22 Slot [95] | NOT FINANCIAL TRANSACTION +00:43:33 Slot [75] | NOT FINANCIAL TRANSACTION +00:43:48 Slot [53] | NOT FINANCIAL TRANSACTION +00:43:59 Slot [134] | NOT FINANCIAL TRANSACTION +00:44:01 Slot [96] | NOT FINANCIAL TRANSACTION +00:44:14 Slot [98] | NOT FINANCIAL TRANSACTION +00:44:16 Slot [103] | NOT FINANCIAL TRANSACTION +00:44:32 Slot [71] | NOT FINANCIAL TRANSACTION +00:44:43 Slot [101] | NOT FINANCIAL TRANSACTION +00:44:53 Slot [102] | NOT FINANCIAL TRANSACTION +00:44:56 Slot [109] | NOT FINANCIAL TRANSACTION +00:45:03 Slot [70] | NOT FINANCIAL TRANSACTION +00:45:04 Slot [136] | NOT FINANCIAL TRANSACTION +00:45:17 Slot [131] | NOT FINANCIAL TRANSACTION +00:45:19 Slot [129] | NOT FINANCIAL TRANSACTION +00:45:32 Slot [85] | NOT FINANCIAL TRANSACTION +00:45:44 Slot [105] | NOT FINANCIAL TRANSACTION +00:45:59 Slot [87] | NOT FINANCIAL TRANSACTION +00:46:05 Slot [104] | NOT FINANCIAL TRANSACTION +00:46:10 Slot [138] | NOT FINANCIAL TRANSACTION +00:46:21 Slot [97] | NOT FINANCIAL TRANSACTION +00:46:24 Slot [117] | NOT FINANCIAL TRANSACTION +00:46:26 Slot [112] | NOT FINANCIAL TRANSACTION +00:46:37 Slot [140] | NOT FINANCIAL TRANSACTION +00:46:48 Slot [116] | NOT FINANCIAL TRANSACTION +00:46:59 Slot [111] | NOT FINANCIAL TRANSACTION +00:47:07 Slot [124] | NOT FINANCIAL TRANSACTION +00:47:09 Slot [147] | NOT FINANCIAL TRANSACTION +00:47:20 Slot [80] | NOT FINANCIAL TRANSACTION +00:47:29 Slot [123] | NOT FINANCIAL TRANSACTION +00:47:31 Slot [122] | NOT FINANCIAL TRANSACTION +00:47:41 Slot [161] | NOT FINANCIAL TRANSACTION +00:47:52 Slot [154] | NOT FINANCIAL TRANSACTION +00:48:07 Slot [162] | NOT FINANCIAL TRANSACTION +00:48:09 Slot [132] | NOT FINANCIAL TRANSACTION +00:48:18 Slot [145] | NOT FINANCIAL TRANSACTION +00:48:29 Slot [143] | NOT FINANCIAL TRANSACTION +00:48:34 Slot [158] | NOT FINANCIAL TRANSACTION +00:48:39 Slot [120] | NOT FINANCIAL TRANSACTION +00:48:51 Slot [150] | NOT FINANCIAL TRANSACTION +00:49:06 Slot [166] | NOT FINANCIAL TRANSACTION +00:49:11 Slot [130] | NOT FINANCIAL TRANSACTION +00:49:17 Slot [133] | NOT FINANCIAL TRANSACTION +00:49:33 Slot [142] | NOT FINANCIAL TRANSACTION +00:49:39 Slot [153] | NOT FINANCIAL TRANSACTION +00:49:48 Slot [110] | NOT FINANCIAL TRANSACTION +00:49:56 Slot [167] | NOT FINANCIAL TRANSACTION +00:50:01 Slot [137] | NOT FINANCIAL TRANSACTION +00:50:13 Slot [128] | NOT FINANCIAL TRANSACTION +00:50:16 Slot [146] | NOT FINANCIAL TRANSACTION +00:50:18 Slot [159] | NOT FINANCIAL TRANSACTION +00:50:26 Slot [175] | NOT FINANCIAL TRANSACTION +00:50:42 Slot [170] | NOT FINANCIAL TRANSACTION +00:50:44 Slot [141] | NOT FINANCIAL TRANSACTION +00:50:53 Slot [151] | NOT FINANCIAL TRANSACTION +00:51:07 Slot [164] | NOT FINANCIAL TRANSACTION +00:51:15 Slot [157] | NOT FINANCIAL TRANSACTION +00:51:17 Slot [172] | NOT FINANCIAL TRANSACTION +00:51:21 Slot [148] | NOT FINANCIAL TRANSACTION +00:51:28 Slot [182] | NOT FINANCIAL TRANSACTION +00:51:44 Slot [186] | NOT FINANCIAL TRANSACTION +00:51:49 Slot [126] | NOT FINANCIAL TRANSACTION +00:51:55 Slot [171] | NOT FINANCIAL TRANSACTION +00:52:05 Slot [119] | NOT FINANCIAL TRANSACTION +00:52:15 Slot [139] | NOT FINANCIAL TRANSACTION +00:52:17 Slot [156] | NOT FINANCIAL TRANSACTION +00:52:31 Slot [176] | NOT FINANCIAL TRANSACTION +00:52:46 Slot [202] | NOT FINANCIAL TRANSACTION +00:52:54 Slot [187] | NOT FINANCIAL TRANSACTION +00:52:59 Slot [163] | NOT FINANCIAL TRANSACTION +00:53:14 Slot [203] | NOT FINANCIAL TRANSACTION +00:53:19 Slot [160] | NOT FINANCIAL TRANSACTION +00:53:25 Slot [179] | NOT FINANCIAL TRANSACTION +00:53:40 Slot [192] | NOT FINANCIAL TRANSACTION +00:53:56 Slot [135] | NOT FINANCIAL TRANSACTION +00:53:59 Slot [144] | NOT FINANCIAL TRANSACTION +00:54:10 Slot [204] | NOT FINANCIAL TRANSACTION +00:54:21 Slot [152] | NOT FINANCIAL TRANSACTION +00:54:22 Slot [196] | NOT FINANCIAL TRANSACTION +00:54:33 Slot [191] | NOT FINANCIAL TRANSACTION +00:54:43 Slot [190] | NOT FINANCIAL TRANSACTION +00:54:55 Slot [155] | NOT FINANCIAL TRANSACTION +00:54:56 Slot [181] | NOT FINANCIAL TRANSACTION +00:55:04 Slot [198] | NOT FINANCIAL TRANSACTION +00:55:11 Slot [201] | NOT FINANCIAL TRANSACTION +00:55:21 Slot [194] | NOT FINANCIAL TRANSACTION +00:55:23 Slot [214] | NOT FINANCIAL TRANSACTION +00:55:31 Slot [165] | NOT FINANCIAL TRANSACTION +00:55:46 Slot [195] | NOT FINANCIAL TRANSACTION +00:55:57 Slot [184] | NOT FINANCIAL TRANSACTION +00:56:06 Slot [209] | NOT FINANCIAL TRANSACTION +00:56:08 Slot [213] | NOT FINANCIAL TRANSACTION +00:56:09 Slot [178] | NOT FINANCIAL TRANSACTION +00:56:18 Slot [208] | NOT FINANCIAL TRANSACTION +00:56:21 Slot [193] | NOT FINANCIAL TRANSACTION +00:56:25 Slot [211] | NOT FINANCIAL TRANSACTION +00:56:31 Slot [206] | NOT FINANCIAL TRANSACTION +00:56:44 Slot [185] | NOT FINANCIAL TRANSACTION +00:56:55 Slot [221] | NOT FINANCIAL TRANSACTION +00:57:06 Slot [183] | NOT FINANCIAL TRANSACTION +00:57:14 Slot [212] | NOT FINANCIAL TRANSACTION +00:57:21 Slot [207] | NOT FINANCIAL TRANSACTION +00:57:27 Slot [174] | NOT FINANCIAL TRANSACTION +00:57:34 Slot [149] | NOT FINANCIAL TRANSACTION +00:57:48 Slot [168] | NOT FINANCIAL TRANSACTION +00:57:58 Slot [180] | NOT FINANCIAL TRANSACTION +00:58:11 Slot [222] | NOT FINANCIAL TRANSACTION +00:58:19 Slot [189] | NOT FINANCIAL TRANSACTION +00:58:26 Slot [169] | NOT FINANCIAL TRANSACTION +00:58:29 Slot [225] | NOT FINANCIAL TRANSACTION +00:58:36 Slot [232] | NOT FINANCIAL TRANSACTION +00:58:47 Slot [205] | NOT FINANCIAL TRANSACTION +00:58:57 Slot [173] | NOT FINANCIAL TRANSACTION +00:59:08 Slot [230] | NOT FINANCIAL TRANSACTION +00:59:19 Slot [188] | NOT FINANCIAL TRANSACTION +00:59:24 Slot [229] | NOT FINANCIAL TRANSACTION +00:59:31 Slot [223] | NOT FINANCIAL TRANSACTION +00:59:31 Slot [177] | NOT FINANCIAL TRANSACTION +00:59:42 Slot [215] | NOT FINANCIAL TRANSACTION +00:59:53 Slot [235] | NOT FINANCIAL TRANSACTION +00:59:56 Slot [243] | NOT FINANCIAL TRANSACTION +01:00:04 Slot [246] | NOT FINANCIAL TRANSACTION +01:00:19 Slot [242] | NOT FINANCIAL TRANSACTION +01:00:29 Slot [248] | NOT FINANCIAL TRANSACTION +01:00:29 Slot [244] | NOT FINANCIAL TRANSACTION +01:00:33 Slot [227] | NOT FINANCIAL TRANSACTION +01:00:41 Slot [250] | NOT FINANCIAL TRANSACTION +01:00:52 Slot [251] | NOT FINANCIAL TRANSACTION +01:01:04 Slot [200] | NOT FINANCIAL TRANSACTION +01:01:07 Slot [226] | NOT FINANCIAL TRANSACTION +01:01:21 Slot [255] | NOT FINANCIAL TRANSACTION +01:01:24 Slot [233] | NOT FINANCIAL TRANSACTION +01:01:34 Slot [238] | NOT FINANCIAL TRANSACTION +01:01:35 Slot [216] | NOT FINANCIAL TRANSACTION +01:01:35 Slot [234] | NOT FINANCIAL TRANSACTION +01:01:46 Slot [253] | NOT FINANCIAL TRANSACTION +01:02:03 Slot [237] | NOT FINANCIAL TRANSACTION +01:02:13 Slot [220] | NOT FINANCIAL TRANSACTION +01:02:29 Slot [210] | NOT FINANCIAL TRANSACTION +01:02:37 Slot [249] | NOT FINANCIAL TRANSACTION +01:02:39 Slot [260] | NOT FINANCIAL TRANSACTION +01:02:40 Slot [199] | NOT FINANCIAL TRANSACTION +01:02:51 Slot [259] | NOT FINANCIAL TRANSACTION +01:03:07 Slot [263] | NOT FINANCIAL TRANSACTION +01:03:17 Slot [261] | NOT FINANCIAL TRANSACTION +01:03:28 Slot [270] | NOT FINANCIAL TRANSACTION +01:03:39 Slot [269] | NOT FINANCIAL TRANSACTION +01:03:39 Slot [256] | NOT FINANCIAL TRANSACTION +01:03:44 Slot [197] | NOT FINANCIAL TRANSACTION +01:03:50 Slot [240] | NOT FINANCIAL TRANSACTION +01:04:01 Slot [228] | NOT FINANCIAL TRANSACTION +01:04:11 Slot [265] | NOT FINANCIAL TRANSACTION +01:04:23 Slot [275] | NOT FINANCIAL TRANSACTION +01:04:38 Slot [247] | NOT FINANCIAL TRANSACTION +01:04:41 Slot [218] | NOT FINANCIAL TRANSACTION +01:04:48 Slot [274] | NOT FINANCIAL TRANSACTION +01:04:49 Slot [264] | NOT FINANCIAL TRANSACTION +01:04:56 Slot [231] | NOT FINANCIAL TRANSACTION +01:05:04 Slot [279] | NOT FINANCIAL TRANSACTION +01:05:19 Slot [254] | NOT FINANCIAL TRANSACTION +01:05:35 Slot [239] | NOT FINANCIAL TRANSACTION +01:05:43 Slot [273] | NOT FINANCIAL TRANSACTION +01:05:46 Slot [266] | NOT FINANCIAL TRANSACTION +01:05:54 Slot [282] | NOT FINANCIAL TRANSACTION +01:06:02 Slot [272] | NOT FINANCIAL TRANSACTION +01:06:12 Slot [241] | NOT FINANCIAL TRANSACTION +01:06:21 Slot [245] | NOT FINANCIAL TRANSACTION +01:06:22 Slot [252] | NOT FINANCIAL TRANSACTION +01:06:33 Slot [276] | NOT FINANCIAL TRANSACTION +01:06:43 Slot [280] | NOT FINANCIAL TRANSACTION +01:06:45 Slot [284] | NOT FINANCIAL TRANSACTION +01:06:55 Slot [258] | NOT FINANCIAL TRANSACTION +01:06:59 Slot [219] | NOT FINANCIAL TRANSACTION +01:07:10 Slot [224] | NOT FINANCIAL TRANSACTION +01:07:22 Slot [287] | NOT FINANCIAL TRANSACTION +01:07:32 Slot [290] | NOT FINANCIAL TRANSACTION +01:07:43 Slot [288] | NOT FINANCIAL TRANSACTION +01:07:47 Slot [271] | NOT FINANCIAL TRANSACTION +01:07:53 Slot [277] | NOT FINANCIAL TRANSACTION +01:08:04 Slot [267] | NOT FINANCIAL TRANSACTION +01:08:06 Slot [217] | NOT FINANCIAL TRANSACTION +01:08:14 Slot [236] | NOT FINANCIAL TRANSACTION +01:08:25 Slot [278] | NOT FINANCIAL TRANSACTION +01:08:36 Slot [293] | NOT FINANCIAL TRANSACTION +01:08:47 Slot [294] | NOT FINANCIAL TRANSACTION +01:08:49 Slot [298] | NOT FINANCIAL TRANSACTION +01:09:00 Slot [257] | NOT FINANCIAL TRANSACTION +01:09:11 Slot [303] | NOT FINANCIAL TRANSACTION +01:09:15 Slot [299] | NOT FINANCIAL TRANSACTION +01:09:26 Slot [302] | NOT FINANCIAL TRANSACTION +01:09:42 Slot [292] | NOT FINANCIAL TRANSACTION +01:09:51 Slot [300] | NOT FINANCIAL TRANSACTION +01:09:56 Slot [281] | NOT FINANCIAL TRANSACTION +01:09:57 Slot [295] | NOT FINANCIAL TRANSACTION +01:10:08 Slot [308] | NOT FINANCIAL TRANSACTION +01:10:16 Slot [262] | NOT FINANCIAL TRANSACTION +01:10:18 Slot [296] | NOT FINANCIAL TRANSACTION +01:10:29 Slot [283] | NOT FINANCIAL TRANSACTION +01:10:44 Slot [311] | NOT FINANCIAL TRANSACTION +01:10:53 Slot [312] | NOT FINANCIAL TRANSACTION +01:11:00 Slot [316] | NOT FINANCIAL TRANSACTION +01:11:10 Slot [306] | NOT FINANCIAL TRANSACTION +01:11:21 Slot [286] | NOT FINANCIAL TRANSACTION +01:11:21 Slot [307] | NOT FINANCIAL TRANSACTION +01:11:26 Slot [317] | NOT FINANCIAL TRANSACTION +01:11:41 Slot [310] | NOT FINANCIAL TRANSACTION +01:11:50 Slot [318] | NOT FINANCIAL TRANSACTION +01:11:55 Slot [289] | NOT FINANCIAL TRANSACTION +01:11:56 Slot [315] | NOT FINANCIAL TRANSACTION +01:12:13 Slot [304] | NOT FINANCIAL TRANSACTION +01:12:26 Slot [322] | NOT FINANCIAL TRANSACTION +01:12:28 Slot [325] | NOT FINANCIAL TRANSACTION +01:12:39 Slot [285] | NOT FINANCIAL TRANSACTION +01:12:48 Slot [297] | NOT FINANCIAL TRANSACTION +01:12:49 Slot [291] | NOT FINANCIAL TRANSACTION +01:12:57 Slot [326] | NOT FINANCIAL TRANSACTION +01:13:00 Slot [305] | NOT FINANCIAL TRANSACTION +01:13:16 Slot [301] | NOT FINANCIAL TRANSACTION +01:13:31 Slot [327] | NOT FINANCIAL TRANSACTION +01:13:32 Slot [333] | NOT FINANCIAL TRANSACTION +01:13:48 Slot [314] | NOT FINANCIAL TRANSACTION +01:13:59 Slot [331] | NOT FINANCIAL TRANSACTION +01:13:59 Slot [321] | NOT FINANCIAL TRANSACTION +01:14:09 Slot [336] | NOT FINANCIAL TRANSACTION +01:14:20 Slot [334] | NOT FINANCIAL TRANSACTION +01:14:31 Slot [337] | NOT FINANCIAL TRANSACTION +01:14:36 Slot [335] | NOT FINANCIAL TRANSACTION +01:14:42 Slot [342] | NOT FINANCIAL TRANSACTION +01:14:52 Slot [320] | NOT FINANCIAL TRANSACTION +01:14:56 Slot [341] | NOT FINANCIAL TRANSACTION +01:15:01 Slot [268] | NOT FINANCIAL TRANSACTION +01:15:03 Slot [344] | NOT FINANCIAL TRANSACTION +01:15:14 Slot [345] | NOT FINANCIAL TRANSACTION +01:15:24 Slot [329] | NOT FINANCIAL TRANSACTION +01:15:35 Slot [339] | NOT FINANCIAL TRANSACTION +01:15:41 Slot [323] | NOT FINANCIAL TRANSACTION +01:15:50 Slot [309] | NOT FINANCIAL TRANSACTION +01:16:00 Slot [348] | NOT FINANCIAL TRANSACTION +01:16:03 Slot [352] | NOT FINANCIAL TRANSACTION +01:16:11 Slot [328] | NOT FINANCIAL TRANSACTION +01:16:21 Slot [350] | NOT FINANCIAL TRANSACTION +01:16:22 Slot [347] | NOT FINANCIAL TRANSACTION +01:16:33 Slot [319] | NOT FINANCIAL TRANSACTION +01:16:46 Slot [356] | NOT FINANCIAL TRANSACTION +01:16:46 Slot [332] | NOT FINANCIAL TRANSACTION +01:17:02 Slot [346] | NOT FINANCIAL TRANSACTION +01:17:05 Slot [330] | NOT FINANCIAL TRANSACTION +01:17:18 Slot [357] | NOT FINANCIAL TRANSACTION +01:17:29 Slot [366] | NOT FINANCIAL TRANSACTION +01:17:40 Slot [343] | NOT FINANCIAL TRANSACTION +01:17:51 Slot [365] | NOT FINANCIAL TRANSACTION +01:17:55 Slot [313] | NOT FINANCIAL TRANSACTION +01:18:05 Slot [340] | NOT FINANCIAL TRANSACTION +01:18:07 Slot [371] | NOT FINANCIAL TRANSACTION +01:18:16 Slot [324] | NOT FINANCIAL TRANSACTION +01:18:31 Slot [378] | NOT FINANCIAL TRANSACTION +01:18:47 Slot [353] | NOT FINANCIAL TRANSACTION +01:18:56 Slot [373] | NOT FINANCIAL TRANSACTION +01:18:57 Slot [355] | NOT FINANCIAL TRANSACTION +01:19:08 Slot [382] | NOT FINANCIAL TRANSACTION +01:19:09 Slot [363] | NOT FINANCIAL TRANSACTION +01:19:20 Slot [358] | NOT FINANCIAL TRANSACTION +01:19:31 Slot [338] | NOT FINANCIAL TRANSACTION +01:19:46 Slot [370] | NOT FINANCIAL TRANSACTION +01:19:57 Slot [360] | NOT FINANCIAL TRANSACTION +01:20:01 Slot [379] | NOT FINANCIAL TRANSACTION +01:20:01 Slot [396] | NOT FINANCIAL TRANSACTION +01:20:11 Slot [354] | NOT FINANCIAL TRANSACTION +01:20:13 Slot [369] | NOT FINANCIAL TRANSACTION +01:20:23 Slot [351] | NOT FINANCIAL TRANSACTION +01:20:34 Slot [374] | NOT FINANCIAL TRANSACTION +01:20:47 Slot [389] | NOT FINANCIAL TRANSACTION +01:21:02 Slot [390] | NOT FINANCIAL TRANSACTION +01:21:06 Slot [376] | NOT FINANCIAL TRANSACTION +01:21:13 Slot [359] | NOT FINANCIAL TRANSACTION +01:21:13 Slot [395] | NOT FINANCIAL TRANSACTION +01:21:22 Slot [410] | NOT FINANCIAL TRANSACTION +01:21:29 Slot [361] | NOT FINANCIAL TRANSACTION +01:21:42 Slot [349] | NOT FINANCIAL TRANSACTION +01:21:55 Slot [383] | NOT FINANCIAL TRANSACTION +01:22:05 Slot [413] | NOT FINANCIAL TRANSACTION +01:22:11 Slot [393] | NOT FINANCIAL TRANSACTION +01:22:15 Slot [397] | NOT FINANCIAL TRANSACTION +01:22:16 Slot [400] | NOT FINANCIAL TRANSACTION +01:22:27 Slot [399] | NOT FINANCIAL TRANSACTION +01:22:37 Slot [414] | NOT FINANCIAL TRANSACTION +01:22:42 Slot [394] | NOT FINANCIAL TRANSACTION +01:22:53 Slot [387] | NOT FINANCIAL TRANSACTION +01:23:08 Slot [368] | NOT FINANCIAL TRANSACTION +01:23:16 Slot [372] | NOT FINANCIAL TRANSACTION +01:23:17 Slot [418] | NOT FINANCIAL TRANSACTION +01:23:19 Slot [406] | NOT FINANCIAL TRANSACTION +01:23:29 Slot [380] | NOT FINANCIAL TRANSACTION +01:23:39 Slot [419] | NOT FINANCIAL TRANSACTION +01:23:52 Slot [411] | NOT FINANCIAL TRANSACTION +01:24:04 Slot [407] | NOT FINANCIAL TRANSACTION +01:24:19 Slot [384] | NOT FINANCIAL TRANSACTION +01:24:20 Slot [401] | NOT FINANCIAL TRANSACTION +01:24:21 Slot [416] | NOT FINANCIAL TRANSACTION +01:24:30 Slot [420] | NOT FINANCIAL TRANSACTION +01:24:41 Slot [415] | NOT FINANCIAL TRANSACTION +01:24:52 Slot [381] | NOT FINANCIAL TRANSACTION +01:24:57 Slot [425] | NOT FINANCIAL TRANSACTION +01:25:02 Slot [388] | NOT FINANCIAL TRANSACTION +01:25:13 Slot [398] | NOT FINANCIAL TRANSACTION +01:25:21 Slot [433] | NOT FINANCIAL TRANSACTION +01:25:24 Slot [364] | NOT FINANCIAL TRANSACTION +01:25:26 Slot [367] | NOT FINANCIAL TRANSACTION +01:25:37 Slot [430] | NOT FINANCIAL TRANSACTION +01:25:47 Slot [441] | NOT FINANCIAL TRANSACTION +01:25:58 Slot [375] | NOT FINANCIAL TRANSACTION +01:26:14 Slot [402] | NOT FINANCIAL TRANSACTION +01:26:21 Slot [408] | NOT FINANCIAL TRANSACTION +01:26:23 Slot [437] | NOT FINANCIAL TRANSACTION +01:26:29 Slot [409] | NOT FINANCIAL TRANSACTION +01:26:31 Slot [385] | NOT FINANCIAL TRANSACTION +01:26:40 Slot [403] | NOT FINANCIAL TRANSACTION +01:26:55 Slot [362] | NOT FINANCIAL TRANSACTION +01:27:11 Slot [392] | NOT FINANCIAL TRANSACTION +01:27:22 Slot [412] | NOT FINANCIAL TRANSACTION +01:27:25 Slot [447] | NOT FINANCIAL TRANSACTION +01:27:36 Slot [450] | NOT FINANCIAL TRANSACTION +01:27:37 Slot [417] | NOT FINANCIAL TRANSACTION +01:27:48 Slot [386] | NOT FINANCIAL TRANSACTION +01:28:03 Slot [391] | NOT FINANCIAL TRANSACTION +01:28:14 Slot [377] | NOT FINANCIAL TRANSACTION +01:28:25 Slot [405] | NOT FINANCIAL TRANSACTION +01:28:27 Slot [443] | NOT FINANCIAL TRANSACTION +01:28:41 Slot [456] | NOT FINANCIAL TRANSACTION +01:28:41 Slot [446] | NOT FINANCIAL TRANSACTION +01:28:52 Slot [435] | NOT FINANCIAL TRANSACTION +01:29:02 Slot [404] | NOT FINANCIAL TRANSACTION +01:29:13 Slot [424] | NOT FINANCIAL TRANSACTION +01:29:28 Slot [442] | NOT FINANCIAL TRANSACTION +01:29:29 Slot [429] | NOT FINANCIAL TRANSACTION +01:29:30 Slot [445] | NOT FINANCIAL TRANSACTION +01:29:39 Slot [438] | NOT FINANCIAL TRANSACTION +01:29:47 Slot [434] | NOT FINANCIAL TRANSACTION +01:29:49 Slot [428] | NOT FINANCIAL TRANSACTION +01:29:57 Slot [427] | NOT FINANCIAL TRANSACTION +01:30:00 Slot [426] | NOT FINANCIAL TRANSACTION +01:30:12 Slot [431] | NOT FINANCIAL TRANSACTION +01:30:23 Slot [451] | NOT FINANCIAL TRANSACTION +01:30:31 Slot [457] | NOT FINANCIAL TRANSACTION +01:30:34 Slot [422] | NOT FINANCIAL TRANSACTION +01:30:45 Slot [462] | NOT FINANCIAL TRANSACTION +01:30:52 Slot [465] | NOT FINANCIAL TRANSACTION +01:30:57 Slot [444] | NOT FINANCIAL TRANSACTION +01:31:13 Slot [421] | NOT FINANCIAL TRANSACTION +01:31:21 Slot [439] | NOT FINANCIAL TRANSACTION +01:31:24 Slot [458] | NOT FINANCIAL TRANSACTION +01:31:33 Slot [423] | NOT FINANCIAL TRANSACTION +01:31:41 Slot [466] | NOT FINANCIAL TRANSACTION +01:31:51 Slot [436] | NOT FINANCIAL TRANSACTION +01:31:57 Slot [459] | NOT FINANCIAL TRANSACTION +01:32:02 Slot [475] | NOT FINANCIAL TRANSACTION +01:32:13 Slot [452] | NOT FINANCIAL TRANSACTION +01:32:28 Slot [468] | NOT FINANCIAL TRANSACTION +01:32:35 Slot [449] | NOT FINANCIAL TRANSACTION +01:32:39 Slot [455] | NOT FINANCIAL TRANSACTION +01:32:49 Slot [440] | NOT FINANCIAL TRANSACTION +01:33:02 Slot [460] | NOT FINANCIAL TRANSACTION +01:33:02 Slot [432] | NOT FINANCIAL TRANSACTION +01:33:16 Slot [453] | NOT FINANCIAL TRANSACTION +01:33:23 Slot [482] | NOT FINANCIAL TRANSACTION +01:33:27 Slot [488] | NOT FINANCIAL TRANSACTION +01:33:37 Slot [470] | NOT FINANCIAL TRANSACTION +01:33:42 Slot [495] | NOT FINANCIAL TRANSACTION +01:33:53 Slot [490] | NOT FINANCIAL TRANSACTION +01:34:03 Slot [463] | NOT FINANCIAL TRANSACTION +01:34:07 Slot [448] | NOT FINANCIAL TRANSACTION +01:34:14 Slot [484] | NOT FINANCIAL TRANSACTION +01:34:25 Slot [471] | NOT FINANCIAL TRANSACTION +01:34:36 Slot [480] | NOT FINANCIAL TRANSACTION +01:34:39 Slot [479] | NOT FINANCIAL TRANSACTION +01:34:46 Slot [498] | NOT FINANCIAL TRANSACTION +01:34:56 Slot [0] | NOT FINANCIAL TRANSACTION +01:34:57 Slot [2] | NOT FINANCIAL TRANSACTION +01:35:12 Slot [493] | NOT FINANCIAL TRANSACTION +01:35:13 Slot [473] | NOT FINANCIAL TRANSACTION +01:35:24 Slot [1] | NOT FINANCIAL TRANSACTION +01:35:35 Slot [4] | NOT FINANCIAL TRANSACTION +01:35:41 Slot [474] | NOT FINANCIAL TRANSACTION +01:35:45 Slot [483] | NOT FINANCIAL TRANSACTION +01:35:56 Slot [476] | NOT FINANCIAL TRANSACTION +01:36:11 Slot [489] | NOT FINANCIAL TRANSACTION +01:36:17 Slot [477] | NOT FINANCIAL TRANSACTION +01:36:21 Slot [472] | NOT FINANCIAL TRANSACTION +01:36:22 Slot [486] | NOT FINANCIAL TRANSACTION +01:36:33 Slot [492] | NOT FINANCIAL TRANSACTION +01:36:43 Slot [6] | NOT FINANCIAL TRANSACTION +01:36:45 Slot [485] | NOT FINANCIAL TRANSACTION +01:36:59 Slot [454] | NOT FINANCIAL TRANSACTION +01:37:10 Slot [13] | NOT FINANCIAL TRANSACTION +01:37:22 Slot [14] | NOT FINANCIAL TRANSACTION +01:37:22 Slot [12] | NOT FINANCIAL TRANSACTION +01:37:32 Slot [16] | NOT FINANCIAL TRANSACTION +01:37:45 Slot [469] | NOT FINANCIAL TRANSACTION +01:37:47 Slot [494] | NOT FINANCIAL TRANSACTION +01:38:01 Slot [22] | NOT FINANCIAL TRANSACTION +01:38:12 Slot [491] | NOT FINANCIAL TRANSACTION +01:38:23 Slot [17] | NOT FINANCIAL TRANSACTION +01:38:27 Slot [499] | NOT FINANCIAL TRANSACTION +01:38:34 Slot [10] | NOT FINANCIAL TRANSACTION +01:38:45 Slot [31] | NOT FINANCIAL TRANSACTION +01:38:47 Slot [23] | NOT FINANCIAL TRANSACTION +01:38:56 Slot [3] | NOT FINANCIAL TRANSACTION +01:39:08 Slot [481] | NOT FINANCIAL TRANSACTION +01:39:20 Slot [29] | NOT FINANCIAL TRANSACTION +01:39:32 Slot [21] | NOT FINANCIAL TRANSACTION +01:39:35 Slot [7] | NOT FINANCIAL TRANSACTION +01:39:46 Slot [33] | NOT FINANCIAL TRANSACTION +01:39:49 Slot [11] | NOT FINANCIAL TRANSACTION +01:39:56 Slot [35] | NOT FINANCIAL TRANSACTION +01:39:56 Slot [496] | NOT FINANCIAL TRANSACTION +01:40:07 Slot [30] | NOT FINANCIAL TRANSACTION +01:40:23 Slot [36] | NOT FINANCIAL TRANSACTION +01:40:33 Slot [37] | NOT FINANCIAL TRANSACTION +01:40:37 Slot [32] | NOT FINANCIAL TRANSACTION +01:40:45 Slot [461] | NOT FINANCIAL TRANSACTION +01:40:51 Slot [9] | NOT FINANCIAL TRANSACTION +01:41:00 Slot [467] | NOT FINANCIAL TRANSACTION +01:41:11 Slot [45] | NOT FINANCIAL TRANSACTION +01:41:21 Slot [40] | NOT FINANCIAL TRANSACTION +01:41:26 Slot [18] | NOT FINANCIAL TRANSACTION +01:41:37 Slot [497] | NOT FINANCIAL TRANSACTION +01:41:42 Slot [28] | NOT FINANCIAL TRANSACTION +01:41:48 Slot [43] | NOT FINANCIAL TRANSACTION +01:41:53 Slot [50] | NOT FINANCIAL TRANSACTION +01:42:04 Slot [8] | NOT FINANCIAL TRANSACTION +01:42:21 Slot [52] | NOT FINANCIAL TRANSACTION +01:42:36 Slot [44] | NOT FINANCIAL TRANSACTION +01:42:47 Slot [61] | NOT FINANCIAL TRANSACTION +01:42:52 Slot [25] | NOT FINANCIAL TRANSACTION +01:42:55 Slot [15] | NOT FINANCIAL TRANSACTION +01:43:03 Slot [55] | NOT FINANCIAL TRANSACTION +01:43:13 Slot [478] | NOT FINANCIAL TRANSACTION +01:43:24 Slot [68] | NOT FINANCIAL TRANSACTION +01:43:35 Slot [63] | NOT FINANCIAL TRANSACTION +01:43:45 Slot [60] | NOT FINANCIAL TRANSACTION +01:43:52 Slot [464] | NOT FINANCIAL TRANSACTION +01:43:57 Slot [41] | NOT FINANCIAL TRANSACTION +01:44:01 Slot [38] | NOT FINANCIAL TRANSACTION +01:44:12 Slot [73] | NOT FINANCIAL TRANSACTION +01:44:22 Slot [20] | NOT FINANCIAL TRANSACTION +01:44:33 Slot [487] | NOT FINANCIAL TRANSACTION +01:44:44 Slot [27] | NOT FINANCIAL TRANSACTION +01:44:55 Slot [48] | NOT FINANCIAL TRANSACTION +01:44:56 Slot [26] | NOT FINANCIAL TRANSACTION +01:44:57 Slot [46] | NOT FINANCIAL TRANSACTION +01:44:59 Slot [19] | NOT FINANCIAL TRANSACTION +01:45:06 Slot [69] | NOT FINANCIAL TRANSACTION +01:45:18 Slot [47] | NOT FINANCIAL TRANSACTION +01:45:29 Slot [58] | NOT FINANCIAL TRANSACTION +01:45:44 Slot [78] | NOT FINANCIAL TRANSACTION +01:45:55 Slot [54] | NOT FINANCIAL TRANSACTION +01:46:01 Slot [81] | NOT FINANCIAL TRANSACTION +01:46:02 Slot [24] | NOT FINANCIAL TRANSACTION +01:46:06 Slot [57] | NOT FINANCIAL TRANSACTION +01:46:11 +Slot[34] 0200 010000 6213545000819940 ------------- 00 928496 000020000000 507902435574030200316213545000819940 507902435574 294466 668899 S +01:46:12 Slot [86] | NOT FINANCIAL TRANSACTION +01:46:16 Slot [42] | NOT FINANCIAL TRANSACTION +01:46:21 Slot [88] | NOT FINANCIAL TRANSACTION +01:46:27 Slot [49] | NOT FINANCIAL TRANSACTION +01:46:43 Slot [5] | NOT FINANCIAL TRANSACTION +01:46:54 Slot [89] | NOT FINANCIAL TRANSACTION +01:47:03 Slot [79] | NOT FINANCIAL TRANSACTION +01:47:07 Slot [59] | NOT FINANCIAL TRANSACTION +01:47:10 Slot [84] | NOT FINANCIAL TRANSACTION +01:47:20 Slot [62] | NOT FINANCIAL TRANSACTION +01:47:30 Slot [67] | NOT FINANCIAL TRANSACTION +01:47:46 Slot [99] | NOT FINANCIAL TRANSACTION +01:48:01 Slot [39] | NOT FINANCIAL TRANSACTION +01:48:05 Slot [51] | NOT FINANCIAL TRANSACTION +01:48:12 Slot [64] | NOT FINANCIAL TRANSACTION +01:48:12 Slot [82] | NOT FINANCIAL TRANSACTION +01:48:22 Slot [93] | NOT FINANCIAL TRANSACTION +01:48:33 Slot [56] | NOT FINANCIAL TRANSACTION +01:48:44 Slot [91] | NOT FINANCIAL TRANSACTION +01:48:55 Slot [100] | NOT FINANCIAL TRANSACTION +01:49:06 Slot [77] | NOT FINANCIAL TRANSACTION +01:49:07 Slot [65] | NOT FINANCIAL TRANSACTION +01:49:17 Slot [72] | NOT FINANCIAL TRANSACTION +01:49:21 Slot [106] | NOT FINANCIAL TRANSACTION +01:49:39 Slot [76] | NOT FINANCIAL TRANSACTION +01:49:53 Slot [66] | NOT FINANCIAL TRANSACTION +01:49:56 Slot [90] | NOT FINANCIAL TRANSACTION +01:50:04 Slot [114] | NOT FINANCIAL TRANSACTION +01:50:09 Slot [74] | NOT FINANCIAL TRANSACTION +01:50:15 Slot [107] | NOT FINANCIAL TRANSACTION +01:50:22 Slot [83] | NOT FINANCIAL TRANSACTION +01:50:26 Slot [92] | NOT FINANCIAL TRANSACTION +01:50:36 Slot [118] | NOT FINANCIAL TRANSACTION +01:50:47 Slot [121] | NOT FINANCIAL TRANSACTION +01:50:58 Slot [113] | NOT FINANCIAL TRANSACTION +01:51:08 Slot [108] | NOT FINANCIAL TRANSACTION +01:51:11 Slot [94] | NOT FINANCIAL TRANSACTION +01:51:19 Slot [115] | NOT FINANCIAL TRANSACTION +01:51:21 Slot [127] | NOT FINANCIAL TRANSACTION +01:51:27 Slot [125] | NOT FINANCIAL TRANSACTION +01:51:36 Slot [95] | NOT FINANCIAL TRANSACTION +01:51:51 Slot [75] | NOT FINANCIAL TRANSACTION +01:52:07 Slot [53] | NOT FINANCIAL TRANSACTION +01:52:13 Slot [134] | NOT FINANCIAL TRANSACTION +01:52:23 Slot [96] | NOT FINANCIAL TRANSACTION +01:52:32 Slot [98] | NOT FINANCIAL TRANSACTION +01:52:34 Slot [103] | NOT FINANCIAL TRANSACTION +01:52:45 Slot [71] | NOT FINANCIAL TRANSACTION +01:52:56 Slot [101] | NOT FINANCIAL TRANSACTION +01:53:12 Slot [102] | NOT FINANCIAL TRANSACTION +01:53:15 Slot [109] | NOT FINANCIAL TRANSACTION +01:53:28 Slot [70] | NOT FINANCIAL TRANSACTION +01:53:37 Slot [136] | NOT FINANCIAL TRANSACTION +01:53:39 Slot [131] | NOT FINANCIAL TRANSACTION +01:53:57 Slot [129] | NOT FINANCIAL TRANSACTION +01:54:10 Slot [85] | NOT FINANCIAL TRANSACTION +01:54:17 Slot [105] | NOT FINANCIAL TRANSACTION +01:54:25 Slot [87] | NOT FINANCIAL TRANSACTION +01:54:36 Slot [104] | NOT FINANCIAL TRANSACTION +01:54:42 Slot [138] | NOT FINANCIAL TRANSACTION +01:54:47 Slot [97] | NOT FINANCIAL TRANSACTION +01:54:56 Slot [117] | NOT FINANCIAL TRANSACTION +01:54:57 Slot [112] | NOT FINANCIAL TRANSACTION +01:55:09 Slot [140] | NOT FINANCIAL TRANSACTION +01:55:19 Slot [111] | NOT FINANCIAL TRANSACTION +01:55:19 Slot [116] | NOT FINANCIAL TRANSACTION +01:55:30 Slot [124] | NOT FINANCIAL TRANSACTION +01:55:41 Slot [147] | NOT FINANCIAL TRANSACTION +01:55:47 Slot [80] | NOT FINANCIAL TRANSACTION +01:55:56 Slot [123] | NOT FINANCIAL TRANSACTION +01:56:13 Slot [122] | NOT FINANCIAL TRANSACTION +01:56:21 Slot [161] | NOT FINANCIAL TRANSACTION +01:56:21 Slot [154] | NOT FINANCIAL TRANSACTION +01:56:27 Slot [162] | NOT FINANCIAL TRANSACTION +01:56:38 Slot [132] | NOT FINANCIAL TRANSACTION +01:56:48 Slot [145] | NOT FINANCIAL TRANSACTION +01:56:52 Slot [143] | NOT FINANCIAL TRANSACTION +01:57:04 Slot [158] | NOT FINANCIAL TRANSACTION +01:57:19 Slot [120] | NOT FINANCIAL TRANSACTION +01:57:23 Slot [150] | NOT FINANCIAL TRANSACTION +01:57:30 Slot [166] | NOT FINANCIAL TRANSACTION +01:57:41 Slot [130] | NOT FINANCIAL TRANSACTION +01:57:56 Slot [133] | NOT FINANCIAL TRANSACTION +01:57:57 Slot [142] | NOT FINANCIAL TRANSACTION +01:58:06 Slot [153] | NOT FINANCIAL TRANSACTION +01:58:17 Slot [110] | NOT FINANCIAL TRANSACTION +01:58:25 Slot [167] | NOT FINANCIAL TRANSACTION +01:58:34 Slot [137] | NOT FINANCIAL TRANSACTION +01:58:49 Slot [128] | NOT FINANCIAL TRANSACTION +01:59:02 Slot [146] | NOT FINANCIAL TRANSACTION +01:59:04 Slot [159] | NOT FINANCIAL TRANSACTION +01:59:15 Slot [175] | NOT FINANCIAL TRANSACTION +01:59:27 Slot [170] | NOT FINANCIAL TRANSACTION +01:59:30 Slot [141] | NOT FINANCIAL TRANSACTION +01:59:41 Slot [151] | NOT FINANCIAL TRANSACTION +01:59:56 Slot [164] | NOT FINANCIAL TRANSACTION +01:59:56 Slot [157] | NOT FINANCIAL TRANSACTION +02:00:06 Slot [172] | NOT FINANCIAL TRANSACTION +02:00:07 Slot [148] | NOT FINANCIAL TRANSACTION +02:00:17 Slot [182] | NOT FINANCIAL TRANSACTION +02:00:29 Slot [186] | NOT FINANCIAL TRANSACTION +02:00:34 Slot [126] | NOT FINANCIAL TRANSACTION +02:00:44 Slot [171] | NOT FINANCIAL TRANSACTION +02:01:01 Slot [119] | NOT FINANCIAL TRANSACTION +02:01:12 Slot [139] | NOT FINANCIAL TRANSACTION +02:01:17 Slot [156] | NOT FINANCIAL TRANSACTION +02:01:21 Slot [176] | NOT FINANCIAL TRANSACTION +02:01:28 Slot [202] | NOT FINANCIAL TRANSACTION +02:01:31 Slot [187] | NOT FINANCIAL TRANSACTION +02:01:43 Slot [163] | NOT FINANCIAL TRANSACTION +02:01:55 Slot [203] | NOT FINANCIAL TRANSACTION +02:02:12 Slot [160] | NOT FINANCIAL TRANSACTION +02:02:17 Slot [179] | NOT FINANCIAL TRANSACTION +02:02:23 Slot [192] | NOT FINANCIAL TRANSACTION +02:02:33 Slot [135] | NOT FINANCIAL TRANSACTION +02:02:33 Slot [144] | NOT FINANCIAL TRANSACTION +02:02:44 Slot [204] | NOT FINANCIAL TRANSACTION +02:02:54 Slot [152] | NOT FINANCIAL TRANSACTION +02:02:55 Slot [196] | NOT FINANCIAL TRANSACTION +02:03:05 Slot [191] | NOT FINANCIAL TRANSACTION +02:03:16 Slot [190] | NOT FINANCIAL TRANSACTION +02:03:22 Slot [155] | NOT FINANCIAL TRANSACTION +02:03:26 Slot [181] | NOT FINANCIAL TRANSACTION +02:03:35 Slot [198] | NOT FINANCIAL TRANSACTION +02:03:37 Slot [201] | NOT FINANCIAL TRANSACTION +02:03:52 Slot [194] | NOT FINANCIAL TRANSACTION +02:04:02 Slot [214] | NOT FINANCIAL TRANSACTION +02:04:14 Slot [165] | NOT FINANCIAL TRANSACTION +02:04:27 Slot [195] | NOT FINANCIAL TRANSACTION +02:04:29 Slot [184] | NOT FINANCIAL TRANSACTION +02:04:37 Slot [209] | NOT FINANCIAL TRANSACTION +02:04:44 Slot [213] | NOT FINANCIAL TRANSACTION +02:04:56 Slot [178] | NOT FINANCIAL TRANSACTION +02:04:56 Slot [208] | NOT FINANCIAL TRANSACTION +02:05:09 Slot [193] | NOT FINANCIAL TRANSACTION +02:05:24 Slot [211] | NOT FINANCIAL TRANSACTION +02:05:32 Slot [206] | NOT FINANCIAL TRANSACTION +02:05:39 Slot [185] | NOT FINANCIAL TRANSACTION +02:05:39 Slot [221] | NOT FINANCIAL TRANSACTION +02:05:41 Slot [183] | NOT FINANCIAL TRANSACTION +02:05:50 Slot [212] | NOT FINANCIAL TRANSACTION +02:06:00 Slot [207] | NOT FINANCIAL TRANSACTION +02:06:16 Slot [174] | NOT FINANCIAL TRANSACTION +02:06:21 Slot [149] | NOT FINANCIAL TRANSACTION +02:06:27 Slot [168] | NOT FINANCIAL TRANSACTION +02:06:37 Slot [180] | NOT FINANCIAL TRANSACTION +02:06:39 Slot [189] | NOT FINANCIAL TRANSACTION +02:06:41 Slot [222] | NOT FINANCIAL TRANSACTION +02:06:53 Slot [169] | NOT FINANCIAL TRANSACTION +02:07:06 Slot [225] | NOT FINANCIAL TRANSACTION +02:07:17 Slot [232] | NOT FINANCIAL TRANSACTION +02:07:32 Slot [205] | NOT FINANCIAL TRANSACTION +02:07:42 Slot [230] | NOT FINANCIAL TRANSACTION +02:07:42 Slot [188] | NOT FINANCIAL TRANSACTION +02:07:43 Slot [173] | NOT FINANCIAL TRANSACTION +02:07:53 Slot [229] | NOT FINANCIAL TRANSACTION +02:08:05 Slot [223] | NOT FINANCIAL TRANSACTION +02:08:20 Slot [177] | NOT FINANCIAL TRANSACTION +02:08:31 Slot [215] | NOT FINANCIAL TRANSACTION +02:08:42 Slot [235] | NOT FINANCIAL TRANSACTION +02:08:45 Slot [243] | NOT FINANCIAL TRANSACTION +02:08:47 Slot [246] | NOT FINANCIAL TRANSACTION +02:08:52 Slot [242] | NOT FINANCIAL TRANSACTION +02:09:03 Slot [248] | NOT FINANCIAL TRANSACTION +02:09:13 Slot [244] | NOT FINANCIAL TRANSACTION +02:09:25 Slot [227] | NOT FINANCIAL TRANSACTION +02:09:40 Slot [250] | NOT FINANCIAL TRANSACTION +02:09:47 Slot [251] | NOT FINANCIAL TRANSACTION +02:09:51 Slot [200] | NOT FINANCIAL TRANSACTION +02:09:52 Slot [226] | NOT FINANCIAL TRANSACTION +02:09:56 Slot [255] | NOT FINANCIAL TRANSACTION +02:10:02 Slot [233] | NOT FINANCIAL TRANSACTION +02:10:12 Slot [238] | NOT FINANCIAL TRANSACTION +02:10:24 Slot [216] | NOT FINANCIAL TRANSACTION +02:10:38 Slot [234] | NOT FINANCIAL TRANSACTION +02:10:48 Slot [237] | NOT FINANCIAL TRANSACTION +02:10:49 Slot [253] | NOT FINANCIAL TRANSACTION +02:10:57 Slot [220] | NOT FINANCIAL TRANSACTION +02:10:59 Slot [210] | NOT FINANCIAL TRANSACTION +02:11:10 Slot [249] | NOT FINANCIAL TRANSACTION +02:11:21 Slot [260] | NOT FINANCIAL TRANSACTION +02:11:25 Slot [199] | NOT FINANCIAL TRANSACTION +02:11:36 Slot [259] | NOT FINANCIAL TRANSACTION +02:11:51 Slot [263] | NOT FINANCIAL TRANSACTION +02:11:51 Slot [261] | NOT FINANCIAL TRANSACTION +02:12:02 Slot [270] | NOT FINANCIAL TRANSACTION +02:12:08 Slot [269] | NOT FINANCIAL TRANSACTION +02:12:23 Slot [256] | NOT FINANCIAL TRANSACTION +02:12:34 Slot [197] | NOT FINANCIAL TRANSACTION +02:12:50 Slot [240] | NOT FINANCIAL TRANSACTION +02:12:53 Slot [228] | NOT FINANCIAL TRANSACTION +02:13:01 Slot [265] | NOT FINANCIAL TRANSACTION +02:13:07 Slot [275] | NOT FINANCIAL TRANSACTION +02:13:11 Slot [247] | NOT FINANCIAL TRANSACTION +02:13:22 Slot [218] | NOT FINANCIAL TRANSACTION +02:13:34 Slot [274] | NOT FINANCIAL TRANSACTION +02:13:52 Slot [264] | NOT FINANCIAL TRANSACTION +02:13:55 Slot [231] | NOT FINANCIAL TRANSACTION +02:14:06 Slot [279] | NOT FINANCIAL TRANSACTION +02:14:12 Slot [254] | NOT FINANCIAL TRANSACTION +02:14:21 Slot [239] | NOT FINANCIAL TRANSACTION +02:14:33 Slot [273] | NOT FINANCIAL TRANSACTION +02:14:47 Slot [266] | NOT FINANCIAL TRANSACTION +02:14:56 Slot [272] | NOT FINANCIAL TRANSACTION +02:14:57 Slot [282] | NOT FINANCIAL TRANSACTION +02:14:58 Slot [241] | NOT FINANCIAL TRANSACTION +02:15:09 Slot [245] | NOT FINANCIAL TRANSACTION +02:15:17 Slot [252] | NOT FINANCIAL TRANSACTION +02:15:24 Slot [276] | NOT FINANCIAL TRANSACTION +02:15:36 Slot [280] | NOT FINANCIAL TRANSACTION +02:15:47 Slot [284] | NOT FINANCIAL TRANSACTION +02:15:59 Slot [258] | NOT FINANCIAL TRANSACTION +02:16:04 Slot [219] | NOT FINANCIAL TRANSACTION +02:16:19 Slot [224] | NOT FINANCIAL TRANSACTION +02:16:22 Slot [287] | NOT FINANCIAL TRANSACTION +02:16:22 Slot [290] | NOT FINANCIAL TRANSACTION +02:16:27 Slot [288] | NOT FINANCIAL TRANSACTION +02:16:29 Slot [271] | NOT FINANCIAL TRANSACTION +02:16:45 Slot [277] | NOT FINANCIAL TRANSACTION +02:16:56 Slot [267] | NOT FINANCIAL TRANSACTION +02:17:01 Slot [217] | NOT FINANCIAL TRANSACTION +02:17:07 Slot [236] | NOT FINANCIAL TRANSACTION +02:17:23 Slot [278] | NOT FINANCIAL TRANSACTION +02:17:27 Slot [293] | NOT FINANCIAL TRANSACTION +02:17:38 Slot [294] | NOT FINANCIAL TRANSACTION +02:17:50 Slot [298] | NOT FINANCIAL TRANSACTION +02:18:03 Slot [257] | NOT FINANCIAL TRANSACTION +02:18:05 Slot [303] | NOT FINANCIAL TRANSACTION +02:18:16 Slot [299] | NOT FINANCIAL TRANSACTION +02:18:31 Slot [302] | NOT FINANCIAL TRANSACTION +02:18:32 Slot [292] | NOT FINANCIAL TRANSACTION +02:18:42 Slot [300] | NOT FINANCIAL TRANSACTION +02:18:58 Slot [281] | NOT FINANCIAL TRANSACTION +02:19:05 Slot [295] | NOT FINANCIAL TRANSACTION +02:19:09 Slot [308] | NOT FINANCIAL TRANSACTION +02:19:21 Slot [262] | NOT FINANCIAL TRANSACTION +02:19:37 Slot [296] | NOT FINANCIAL TRANSACTION +02:19:37 Slot [283] | NOT FINANCIAL TRANSACTION +02:19:37 Slot [311] | NOT FINANCIAL TRANSACTION +02:19:47 Slot [312] | NOT FINANCIAL TRANSACTION +02:19:56 Slot [316] | NOT FINANCIAL TRANSACTION +02:19:58 Slot [306] | NOT FINANCIAL TRANSACTION +02:20:07 Slot [286] | NOT FINANCIAL TRANSACTION +02:20:13 Slot [307] | NOT FINANCIAL TRANSACTION +02:20:24 Slot [317] | NOT FINANCIAL TRANSACTION +02:20:35 Slot [310] | NOT FINANCIAL TRANSACTION +02:20:42 Slot [318] | NOT FINANCIAL TRANSACTION +02:20:46 Slot [289] | NOT FINANCIAL TRANSACTION +02:20:57 Slot [315] | NOT FINANCIAL TRANSACTION +02:21:08 Slot [322] | NOT FINANCIAL TRANSACTION +02:21:09 Slot [304] | NOT FINANCIAL TRANSACTION +02:21:19 Slot [325] | NOT FINANCIAL TRANSACTION +02:21:22 Slot [285] | NOT FINANCIAL TRANSACTION +02:21:30 Slot [297] | NOT FINANCIAL TRANSACTION +02:21:42 Slot [291] | NOT FINANCIAL TRANSACTION +02:21:47 Slot [326] | NOT FINANCIAL TRANSACTION +02:21:53 Slot [305] | NOT FINANCIAL TRANSACTION +02:22:04 Slot [301] | NOT FINANCIAL TRANSACTION +02:22:11 Slot [327] | NOT FINANCIAL TRANSACTION +02:22:14 Slot [333] | NOT FINANCIAL TRANSACTION +02:22:25 Slot [314] | NOT FINANCIAL TRANSACTION +02:22:36 Slot [331] | NOT FINANCIAL TRANSACTION +02:22:52 Slot [321] | NOT FINANCIAL TRANSACTION +02:22:52 Slot [336] | NOT FINANCIAL TRANSACTION +02:23:07 Slot [334] | NOT FINANCIAL TRANSACTION +02:23:13 Slot [337] | NOT FINANCIAL TRANSACTION +02:23:24 Slot [335] | NOT FINANCIAL TRANSACTION +02:23:34 Slot [342] | NOT FINANCIAL TRANSACTION +02:23:45 Slot [320] | NOT FINANCIAL TRANSACTION +02:23:56 Slot [341] | NOT FINANCIAL TRANSACTION +02:23:57 Slot [268] | NOT FINANCIAL TRANSACTION +02:24:07 Slot [344] | NOT FINANCIAL TRANSACTION +02:24:15 Slot [345] | NOT FINANCIAL TRANSACTION +02:24:19 Slot [329] | NOT FINANCIAL TRANSACTION +02:24:30 Slot [339] | NOT FINANCIAL TRANSACTION +02:24:41 Slot [323] | NOT FINANCIAL TRANSACTION +02:24:53 Slot [309] | NOT FINANCIAL TRANSACTION +02:24:56 Slot [348] | NOT FINANCIAL TRANSACTION +02:25:02 Slot [352] | NOT FINANCIAL TRANSACTION +02:25:04 Slot [328] | NOT FINANCIAL TRANSACTION +02:25:14 Slot [350] | NOT FINANCIAL TRANSACTION +02:25:17 Slot [347] | NOT FINANCIAL TRANSACTION +02:25:26 Slot [319] | NOT FINANCIAL TRANSACTION +02:25:36 Slot [356] | NOT FINANCIAL TRANSACTION +02:25:53 Slot [332] | NOT FINANCIAL TRANSACTION +02:26:04 Slot [346] | NOT FINANCIAL TRANSACTION +02:26:07 Slot [330] | NOT FINANCIAL TRANSACTION +02:26:19 Slot [357] | NOT FINANCIAL TRANSACTION +02:26:19 Slot [366] | NOT FINANCIAL TRANSACTION +02:26:22 Slot [343] | NOT FINANCIAL TRANSACTION +02:26:36 Slot [365] | NOT FINANCIAL TRANSACTION +02:26:49 Slot [313] | NOT FINANCIAL TRANSACTION +02:27:02 Slot [340] | NOT FINANCIAL TRANSACTION +02:27:12 Slot [371] | NOT FINANCIAL TRANSACTION +02:27:13 Slot [324] | NOT FINANCIAL TRANSACTION +02:27:13 Slot [378] | NOT FINANCIAL TRANSACTION +02:27:21 Slot [353] | NOT FINANCIAL TRANSACTION +02:27:24 Slot [373] | NOT FINANCIAL TRANSACTION +02:27:34 Slot [355] | NOT FINANCIAL TRANSACTION +02:27:46 Slot [382] | NOT FINANCIAL TRANSACTION +02:28:02 Slot [363] | NOT FINANCIAL TRANSACTION +02:28:13 Slot [358] | NOT FINANCIAL TRANSACTION +02:28:17 Slot [338] | NOT FINANCIAL TRANSACTION +02:28:23 Slot [370] | NOT FINANCIAL TRANSACTION +02:28:29 Slot [360] | NOT FINANCIAL TRANSACTION +02:28:41 Slot [379] | NOT FINANCIAL TRANSACTION +02:28:53 Slot [396] | NOT FINANCIAL TRANSACTION +02:29:07 Slot [354] | NOT FINANCIAL TRANSACTION +02:29:20 Slot [369] | NOT FINANCIAL TRANSACTION +02:29:22 Slot [351] | NOT FINANCIAL TRANSACTION +02:29:25 Slot [374] | NOT FINANCIAL TRANSACTION +02:29:33 Slot [389] | NOT FINANCIAL TRANSACTION +02:29:44 Slot [390] | NOT FINANCIAL TRANSACTION +02:29:54 Slot [376] | NOT FINANCIAL TRANSACTION +02:29:56 Slot [359] | NOT FINANCIAL TRANSACTION +02:30:10 Slot [395] | NOT FINANCIAL TRANSACTION +02:30:25 Slot [361] | NOT FINANCIAL TRANSACTION +02:30:27 Slot [410] | NOT FINANCIAL TRANSACTION +02:30:29 Slot [349] | NOT FINANCIAL TRANSACTION +02:30:36 Slot [383] | NOT FINANCIAL TRANSACTION +02:30:49 Slot [413] | NOT FINANCIAL TRANSACTION +02:31:05 Slot [393] | NOT FINANCIAL TRANSACTION +02:31:16 Slot [397] | NOT FINANCIAL TRANSACTION +02:31:21 Slot [400] | NOT FINANCIAL TRANSACTION +02:31:29 Slot [414] | NOT FINANCIAL TRANSACTION +02:31:29 Slot [399] | NOT FINANCIAL TRANSACTION +02:31:34 Slot [394] | NOT FINANCIAL TRANSACTION +02:31:44 Slot [387] | NOT FINANCIAL TRANSACTION +02:31:55 Slot [368] | NOT FINANCIAL TRANSACTION +02:32:05 Slot [372] | NOT FINANCIAL TRANSACTION +02:32:16 Slot [418] | NOT FINANCIAL TRANSACTION +02:32:27 Slot [406] | NOT FINANCIAL TRANSACTION +02:32:31 Slot [380] | NOT FINANCIAL TRANSACTION +02:32:39 Slot [419] | NOT FINANCIAL TRANSACTION +02:32:39 Slot [411] | NOT FINANCIAL TRANSACTION +02:32:50 Slot [407] | NOT FINANCIAL TRANSACTION +02:33:05 Slot [384] | NOT FINANCIAL TRANSACTION +02:33:20 Slot [401] | NOT FINANCIAL TRANSACTION +02:33:32 Slot [420] | NOT FINANCIAL TRANSACTION +02:33:33 Slot [416] | NOT FINANCIAL TRANSACTION +02:33:44 Slot [415] | NOT FINANCIAL TRANSACTION +02:33:47 Slot [381] | NOT FINANCIAL TRANSACTION +02:34:02 Slot [425] | NOT FINANCIAL TRANSACTION +02:34:12 Slot [388] | NOT FINANCIAL TRANSACTION +02:34:28 Slot [398] | NOT FINANCIAL TRANSACTION +02:34:35 Slot [433] | NOT FINANCIAL TRANSACTION +02:34:38 Slot [364] | NOT FINANCIAL TRANSACTION +02:34:49 Slot [367] | NOT FINANCIAL TRANSACTION +02:34:53 Slot [430] | NOT FINANCIAL TRANSACTION +02:34:56 Slot [441] | NOT FINANCIAL TRANSACTION +02:35:04 Slot [375] | NOT FINANCIAL TRANSACTION +02:35:15 Slot [402] | NOT FINANCIAL TRANSACTION +02:35:29 Slot [408] | NOT FINANCIAL TRANSACTION +02:35:37 Slot [437] | NOT FINANCIAL TRANSACTION +02:35:40 Slot [409] | NOT FINANCIAL TRANSACTION +02:35:50 Slot [385] | NOT FINANCIAL TRANSACTION +02:35:54 Slot [403] | NOT FINANCIAL TRANSACTION +02:36:01 Slot [362] | NOT FINANCIAL TRANSACTION +02:36:12 Slot [392] | NOT FINANCIAL TRANSACTION +02:36:19 Slot [412] | NOT FINANCIAL TRANSACTION +02:36:21 Slot [447] | NOT FINANCIAL TRANSACTION +02:36:27 Slot [450] | NOT FINANCIAL TRANSACTION +02:36:38 Slot [386] | NOT FINANCIAL TRANSACTION +02:36:39 Slot [417] | NOT FINANCIAL TRANSACTION +02:36:49 Slot [391] | NOT FINANCIAL TRANSACTION +02:36:59 Slot [377] | NOT FINANCIAL TRANSACTION +02:37:00 Slot [405] | NOT FINANCIAL TRANSACTION +02:37:10 Slot [443] | NOT FINANCIAL TRANSACTION +02:37:26 Slot [456] | NOT FINANCIAL TRANSACTION +02:37:37 Slot [446] | NOT FINANCIAL TRANSACTION +02:37:41 Slot [435] | NOT FINANCIAL TRANSACTION +02:37:47 Slot [404] | NOT FINANCIAL TRANSACTION +02:37:57 Slot [424] | NOT FINANCIAL TRANSACTION +02:37:59 Slot [442] | NOT FINANCIAL TRANSACTION +02:38:05 Slot [429] | NOT FINANCIAL TRANSACTION +02:38:09 Slot [445] | NOT FINANCIAL TRANSACTION +02:38:19 Slot [438] | NOT FINANCIAL TRANSACTION +02:38:35 Slot [434] | NOT FINANCIAL TRANSACTION +02:38:43 Slot [428] | NOT FINANCIAL TRANSACTION +02:38:50 Slot [427] | NOT FINANCIAL TRANSACTION +02:39:03 Slot [426] | NOT FINANCIAL TRANSACTION +02:39:10 Slot [431] | NOT FINANCIAL TRANSACTION +02:39:14 Slot [451] | NOT FINANCIAL TRANSACTION +02:39:25 Slot [457] | NOT FINANCIAL TRANSACTION +02:39:35 Slot [422] | NOT FINANCIAL TRANSACTION +02:39:45 Slot [462] | NOT FINANCIAL TRANSACTION +02:39:46 Slot [465] | NOT FINANCIAL TRANSACTION +02:39:56 Slot [444] | NOT FINANCIAL TRANSACTION +02:39:57 Slot [421] | NOT FINANCIAL TRANSACTION +02:40:07 Slot [439] | NOT FINANCIAL TRANSACTION +02:40:15 Slot [458] | NOT FINANCIAL TRANSACTION +02:40:19 Slot [423] | NOT FINANCIAL TRANSACTION +02:40:30 Slot [466] | NOT FINANCIAL TRANSACTION +02:40:41 Slot [436] | NOT FINANCIAL TRANSACTION +02:40:47 Slot [459] | NOT FINANCIAL TRANSACTION +02:40:52 Slot [475] | NOT FINANCIAL TRANSACTION +02:41:02 Slot [452] | NOT FINANCIAL TRANSACTION +02:41:18 Slot [468] | NOT FINANCIAL TRANSACTION +02:41:20 Slot [449] | NOT FINANCIAL TRANSACTION +02:41:21 Slot [455] | NOT FINANCIAL TRANSACTION +02:41:28 Slot [440] | NOT FINANCIAL TRANSACTION +02:41:39 Slot [460] | NOT FINANCIAL TRANSACTION +02:41:49 Slot [432] | NOT FINANCIAL TRANSACTION +02:41:50 Slot [453] | NOT FINANCIAL TRANSACTION +02:42:06 Slot [482] | NOT FINANCIAL TRANSACTION +02:42:18 Slot [488] | NOT FINANCIAL TRANSACTION +02:42:25 Slot [470] | NOT FINANCIAL TRANSACTION +02:42:28 Slot [495] | NOT FINANCIAL TRANSACTION +02:42:44 Slot [490] | NOT FINANCIAL TRANSACTION +02:42:51 Slot [463] | NOT FINANCIAL TRANSACTION +02:43:00 Slot [448] | NOT FINANCIAL TRANSACTION +02:43:13 Slot [484] | NOT FINANCIAL TRANSACTION +02:43:27 Slot [471] | NOT FINANCIAL TRANSACTION +02:43:30 Slot [480] | NOT FINANCIAL TRANSACTION +02:43:39 Slot [479] | NOT FINANCIAL TRANSACTION +02:43:53 Slot [498] | NOT FINANCIAL TRANSACTION +02:43:55 Slot [0] | NOT FINANCIAL TRANSACTION +02:44:11 Slot [2] | NOT FINANCIAL TRANSACTION +02:44:22 Slot [493] | NOT FINANCIAL TRANSACTION +02:44:33 Slot [473] | NOT FINANCIAL TRANSACTION +02:44:35 Slot [1] | NOT FINANCIAL TRANSACTION +02:44:49 Slot [4] | NOT FINANCIAL TRANSACTION +02:44:55 Slot [474] | NOT FINANCIAL TRANSACTION +02:44:56 Slot [483] | NOT FINANCIAL TRANSACTION +02:45:00 Slot [476] | NOT FINANCIAL TRANSACTION +02:45:15 Slot [489] | NOT FINANCIAL TRANSACTION +02:45:31 Slot [477] | NOT FINANCIAL TRANSACTION +02:45:40 Slot [472] | NOT FINANCIAL TRANSACTION +02:45:42 Slot [486] | NOT FINANCIAL TRANSACTION +02:45:53 Slot [492] | NOT FINANCIAL TRANSACTION +02:45:57 Slot [6] | NOT FINANCIAL TRANSACTION +02:46:05 Slot [485] | NOT FINANCIAL TRANSACTION +02:46:20 Slot [454] | NOT FINANCIAL TRANSACTION +02:46:21 Slot [13] | NOT FINANCIAL TRANSACTION +02:46:35 Slot [14] | NOT FINANCIAL TRANSACTION +02:46:45 Slot [12] | NOT FINANCIAL TRANSACTION +02:46:47 Slot [16] | NOT FINANCIAL TRANSACTION +02:46:58 Slot [494] | NOT FINANCIAL TRANSACTION +02:46:59 Slot [469] | NOT FINANCIAL TRANSACTION +02:47:08 Slot [22] | NOT FINANCIAL TRANSACTION +02:47:19 Slot [491] | NOT FINANCIAL TRANSACTION +02:47:30 Slot [17] | NOT FINANCIAL TRANSACTION +02:47:40 Slot [499] | NOT FINANCIAL TRANSACTION +02:47:50 Slot [10] | NOT FINANCIAL TRANSACTION +02:47:51 Slot [31] | NOT FINANCIAL TRANSACTION +02:48:01 Slot [23] | NOT FINANCIAL TRANSACTION +02:48:04 Slot [3] | NOT FINANCIAL TRANSACTION +02:48:19 Slot [481] | NOT FINANCIAL TRANSACTION +02:48:30 Slot [29] | NOT FINANCIAL TRANSACTION +02:48:45 Slot [21] | NOT FINANCIAL TRANSACTION +02:48:45 Slot [7] | NOT FINANCIAL TRANSACTION +02:48:55 Slot [33] | NOT FINANCIAL TRANSACTION +02:48:56 Slot [11] | NOT FINANCIAL TRANSACTION +02:49:03 Slot [35] | NOT FINANCIAL TRANSACTION +02:49:06 Slot [496] | NOT FINANCIAL TRANSACTION +02:49:17 Slot [30] | NOT FINANCIAL TRANSACTION +02:49:28 Slot [36] | NOT FINANCIAL TRANSACTION +02:49:43 Slot [37] | NOT FINANCIAL TRANSACTION +02:49:56 Slot [32] | NOT FINANCIAL TRANSACTION +02:49:59 Slot [461] | NOT FINANCIAL TRANSACTION +02:50:00 Slot [9] | NOT FINANCIAL TRANSACTION +02:50:05 Slot [467] | NOT FINANCIAL TRANSACTION +02:50:09 Slot [45] | NOT FINANCIAL TRANSACTION +02:50:20 Slot [40] | NOT FINANCIAL TRANSACTION +02:50:35 Slot [18] | NOT FINANCIAL TRANSACTION +02:50:45 Slot [497] | NOT FINANCIAL TRANSACTION +02:50:56 Slot [28] | NOT FINANCIAL TRANSACTION +02:51:05 Slot [43] | NOT FINANCIAL TRANSACTION +02:51:07 Slot [8] | NOT FINANCIAL TRANSACTION +02:51:07 Slot [50] | NOT FINANCIAL TRANSACTION +02:51:18 Slot [52] | NOT FINANCIAL TRANSACTION +02:51:21 Slot [44] | NOT FINANCIAL TRANSACTION +02:51:33 Slot [61] | NOT FINANCIAL TRANSACTION +02:51:48 Slot [25] | NOT FINANCIAL TRANSACTION +02:51:59 Slot [15] | NOT FINANCIAL TRANSACTION +02:52:09 Slot [55] | NOT FINANCIAL TRANSACTION +02:52:10 Slot [478] | NOT FINANCIAL TRANSACTION +02:52:10 Slot [68] | NOT FINANCIAL TRANSACTION +02:52:21 Slot [63] | NOT FINANCIAL TRANSACTION +02:52:32 Slot [60] | NOT FINANCIAL TRANSACTION +02:52:47 Slot [464] | NOT FINANCIAL TRANSACTION +02:53:00 Slot [41] | NOT FINANCIAL TRANSACTION +02:53:01 Slot [38] | NOT FINANCIAL TRANSACTION +02:53:11 Slot [73] | NOT FINANCIAL TRANSACTION +02:53:15 Slot [20] | NOT FINANCIAL TRANSACTION +02:53:15 Slot [487] | NOT FINANCIAL TRANSACTION +02:53:26 Slot [27] | NOT FINANCIAL TRANSACTION +02:53:41 Slot [48] | NOT FINANCIAL TRANSACTION +02:53:52 Slot [26] | NOT FINANCIAL TRANSACTION +02:54:02 Slot [46] | NOT FINANCIAL TRANSACTION +02:54:13 Slot [19] | NOT FINANCIAL TRANSACTION +02:54:18 Slot [69] | NOT FINANCIAL TRANSACTION +02:54:20 Slot [47] | NOT FINANCIAL TRANSACTION +02:54:29 Slot [58] | NOT FINANCIAL TRANSACTION +02:54:39 Slot [78] | NOT FINANCIAL TRANSACTION +02:54:50 Slot [54] | NOT FINANCIAL TRANSACTION +02:54:56 Slot [81] | NOT FINANCIAL TRANSACTION +02:55:06 Slot [24] | NOT FINANCIAL TRANSACTION +02:55:15 Slot [57] | NOT FINANCIAL TRANSACTION +02:55:17 Slot [34] | NOT FINANCIAL TRANSACTION +02:55:25 Slot [86] | NOT FINANCIAL TRANSACTION +02:55:28 Slot [42] | NOT FINANCIAL TRANSACTION +02:55:39 Slot [88] | NOT FINANCIAL TRANSACTION +02:55:54 Slot [49] | NOT FINANCIAL TRANSACTION +02:56:06 Slot [5] | NOT FINANCIAL TRANSACTION +02:56:17 Slot [89] | NOT FINANCIAL TRANSACTION +02:56:18 Slot [79] | NOT FINANCIAL TRANSACTION +02:56:21 Slot [59] | NOT FINANCIAL TRANSACTION +02:56:29 Slot [84] | NOT FINANCIAL TRANSACTION +02:56:30 Slot [62] | NOT FINANCIAL TRANSACTION +02:56:41 Slot [67] | NOT FINANCIAL TRANSACTION +02:56:52 Slot [99] | NOT FINANCIAL TRANSACTION +02:57:04 Slot [39] | NOT FINANCIAL TRANSACTION +02:57:19 Slot [64] | NOT FINANCIAL TRANSACTION +02:57:19 Slot [51] | NOT FINANCIAL TRANSACTION +02:57:30 Slot [82] | NOT FINANCIAL TRANSACTION +02:57:35 Slot [93] | NOT FINANCIAL TRANSACTION +02:57:40 Slot [56] | NOT FINANCIAL TRANSACTION +02:57:51 Slot [91] | NOT FINANCIAL TRANSACTION +02:58:06 Slot [100] | NOT FINANCIAL TRANSACTION +02:58:17 Slot [77] | NOT FINANCIAL TRANSACTION +02:58:21 Slot [65] | NOT FINANCIAL TRANSACTION +02:58:33 Slot [72] | NOT FINANCIAL TRANSACTION +02:58:40 Slot [106] | NOT FINANCIAL TRANSACTION +02:58:44 Slot [76] | NOT FINANCIAL TRANSACTION +02:58:55 Slot [66] | NOT FINANCIAL TRANSACTION +02:59:05 Slot [90] | NOT FINANCIAL TRANSACTION +02:59:21 Slot [114] | NOT FINANCIAL TRANSACTION +02:59:23 Slot [74] | NOT FINANCIAL TRANSACTION +02:59:30 Slot [107] | NOT FINANCIAL TRANSACTION +02:59:36 Slot [83] | NOT FINANCIAL TRANSACTION +02:59:45 Slot [92] | NOT FINANCIAL TRANSACTION +02:59:47 Slot [118] | NOT FINANCIAL TRANSACTION +02:59:56 Slot [121] | NOT FINANCIAL TRANSACTION +03:00:02 Slot [113] | NOT FINANCIAL TRANSACTION +03:00:16 Slot [108] | NOT FINANCIAL TRANSACTION +03:00:25 Slot [94] | NOT FINANCIAL TRANSACTION +03:00:30 Slot [115] | NOT FINANCIAL TRANSACTION +03:00:41 Slot [127] | NOT FINANCIAL TRANSACTION +03:00:50 Slot [125] | NOT FINANCIAL TRANSACTION +03:00:51 Slot [95] | NOT FINANCIAL TRANSACTION +03:01:07 Slot [75] | NOT FINANCIAL TRANSACTION +03:01:18 Slot [53] | NOT FINANCIAL TRANSACTION +03:01:21 Slot [134] | NOT FINANCIAL TRANSACTION +03:01:27 Slot [96] | NOT FINANCIAL TRANSACTION +03:01:29 Slot [98] | NOT FINANCIAL TRANSACTION +03:01:40 Slot [103] | NOT FINANCIAL TRANSACTION +03:01:52 Slot [71] | NOT FINANCIAL TRANSACTION +03:01:55 Slot [101] | NOT FINANCIAL TRANSACTION +03:02:02 Slot [102] | NOT FINANCIAL TRANSACTION +03:02:13 Slot [109] | NOT FINANCIAL TRANSACTION +03:02:24 Slot [70] | NOT FINANCIAL TRANSACTION +03:02:29 Slot [136] | NOT FINANCIAL TRANSACTION +03:02:35 Slot [131] | NOT FINANCIAL TRANSACTION +03:02:45 Slot [129] | NOT FINANCIAL TRANSACTION +03:02:55 Slot [85] | NOT FINANCIAL TRANSACTION +03:03:00 Slot [105] | NOT FINANCIAL TRANSACTION +03:03:05 Slot [87] | NOT FINANCIAL TRANSACTION +03:03:17 Slot [104] | NOT FINANCIAL TRANSACTION +03:03:31 Slot [138] | NOT FINANCIAL TRANSACTION +03:03:31 Slot [97] | NOT FINANCIAL TRANSACTION +03:03:42 Slot [117] | NOT FINANCIAL TRANSACTION +03:03:53 Slot [112] | NOT FINANCIAL TRANSACTION +03:04:04 Slot [140] | NOT FINANCIAL TRANSACTION +03:04:05 Slot [111] | NOT FINANCIAL TRANSACTION +03:04:14 Slot [116] | NOT FINANCIAL TRANSACTION +03:04:29 Slot [124] | NOT FINANCIAL TRANSACTION +03:04:33 Slot [147] | NOT FINANCIAL TRANSACTION +03:04:40 Slot [80] | NOT FINANCIAL TRANSACTION +03:04:51 Slot [123] | NOT FINANCIAL TRANSACTION +03:04:56 Slot [122] | NOT FINANCIAL TRANSACTION +03:05:06 Slot [161] | NOT FINANCIAL TRANSACTION +03:05:10 Slot [154] | NOT FINANCIAL TRANSACTION +03:05:16 Slot [162] | NOT FINANCIAL TRANSACTION +03:05:28 Slot [132] | NOT FINANCIAL TRANSACTION +03:05:35 Slot [145] | NOT FINANCIAL TRANSACTION +03:05:39 Slot [143] | NOT FINANCIAL TRANSACTION +03:05:51 Slot [158] | NOT FINANCIAL TRANSACTION +03:06:02 Slot [120] | NOT FINANCIAL TRANSACTION +03:06:15 Slot [150] | NOT FINANCIAL TRANSACTION +03:06:17 Slot [166] | NOT FINANCIAL TRANSACTION +03:06:21 Slot [130] | NOT FINANCIAL TRANSACTION +03:06:27 Slot [133] | NOT FINANCIAL TRANSACTION +03:06:37 Slot [142] | NOT FINANCIAL TRANSACTION +03:06:37 Slot [153] | NOT FINANCIAL TRANSACTION +03:06:48 Slot [110] | NOT FINANCIAL TRANSACTION +03:06:59 Slot [167] | NOT FINANCIAL TRANSACTION +03:07:14 Slot [137] | NOT FINANCIAL TRANSACTION +03:07:20 Slot [128] | NOT FINANCIAL TRANSACTION +03:07:25 Slot [146] | NOT FINANCIAL TRANSACTION +03:07:39 Slot [159] | NOT FINANCIAL TRANSACTION +03:07:40 Slot [175] | NOT FINANCIAL TRANSACTION +03:07:50 Slot [170] | NOT FINANCIAL TRANSACTION +03:08:05 Slot [141] | NOT FINANCIAL TRANSACTION +03:08:15 Slot [151] | NOT FINANCIAL TRANSACTION +03:08:25 Slot [164] | NOT FINANCIAL TRANSACTION +03:08:25 Slot [157] | NOT FINANCIAL TRANSACTION +03:08:36 Slot [172] | NOT FINANCIAL TRANSACTION +03:08:41 Slot [148] | NOT FINANCIAL TRANSACTION +03:08:51 Slot [182] | NOT FINANCIAL TRANSACTION +03:09:07 Slot [186] | NOT FINANCIAL TRANSACTION +03:09:17 Slot [126] | NOT FINANCIAL TRANSACTION +03:09:29 Slot [171] | NOT FINANCIAL TRANSACTION +03:09:30 Slot [119] | NOT FINANCIAL TRANSACTION +03:09:39 Slot [139] | NOT FINANCIAL TRANSACTION +03:09:43 Slot [176] | NOT FINANCIAL TRANSACTION +03:09:43 Slot [156] | NOT FINANCIAL TRANSACTION +03:09:49 Slot [202] | NOT FINANCIAL TRANSACTION +03:09:57 Slot [187] | NOT FINANCIAL TRANSACTION +03:10:00 Slot [163] | NOT FINANCIAL TRANSACTION +03:10:15 Slot [203] | NOT FINANCIAL TRANSACTION +03:10:16 Slot [160] | NOT FINANCIAL TRANSACTION +03:10:25 Slot [179] | NOT FINANCIAL TRANSACTION +03:10:35 Slot [192] | NOT FINANCIAL TRANSACTION +03:10:41 Slot [135] | NOT FINANCIAL TRANSACTION +03:10:45 Slot [144] | NOT FINANCIAL TRANSACTION +03:10:52 Slot [204] | NOT FINANCIAL TRANSACTION +03:11:02 Slot [152] | NOT FINANCIAL TRANSACTION +03:11:17 Slot [196] | NOT FINANCIAL TRANSACTION +03:11:22 Slot [191] | NOT FINANCIAL TRANSACTION +03:11:28 Slot [190] | NOT FINANCIAL TRANSACTION +03:11:39 Slot [155] | NOT FINANCIAL TRANSACTION +03:11:40 Slot [181] | NOT FINANCIAL TRANSACTION +03:11:47 Slot [198] | NOT FINANCIAL TRANSACTION +03:11:51 Slot [201] | NOT FINANCIAL TRANSACTION +03:12:02 Slot [194] | NOT FINANCIAL TRANSACTION +03:12:16 Slot [214] | NOT FINANCIAL TRANSACTION +03:12:28 Slot [165] | NOT FINANCIAL TRANSACTION +03:12:42 Slot [195] | NOT FINANCIAL TRANSACTION +03:12:45 Slot [184] | NOT FINANCIAL TRANSACTION +03:12:49 Slot [209] | NOT FINANCIAL TRANSACTION +03:12:58 Slot [213] | NOT FINANCIAL TRANSACTION +03:13:14 Slot [178] | NOT FINANCIAL TRANSACTION +03:13:28 Slot [208] | NOT FINANCIAL TRANSACTION +03:13:40 Slot [193] | NOT FINANCIAL TRANSACTION +03:13:50 Slot [206] | NOT FINANCIAL TRANSACTION +03:13:50 Slot [185] | NOT FINANCIAL TRANSACTION +03:13:51 Slot [211] | NOT FINANCIAL TRANSACTION +03:14:05 Slot [221] | NOT FINANCIAL TRANSACTION +03:14:15 Slot [183] | NOT FINANCIAL TRANSACTION +03:14:25 Slot [212] | NOT FINANCIAL TRANSACTION +03:14:41 Slot [207] | NOT FINANCIAL TRANSACTION +03:14:52 Slot [149] | NOT FINANCIAL TRANSACTION +03:14:53 Slot [174] | NOT FINANCIAL TRANSACTION +03:14:55 Slot [168] | NOT FINANCIAL TRANSACTION +03:14:57 Slot [180] | NOT FINANCIAL TRANSACTION +03:15:07 Slot [189] | NOT FINANCIAL TRANSACTION +03:15:22 Slot [222] | NOT FINANCIAL TRANSACTION +03:15:33 Slot [169] | NOT FINANCIAL TRANSACTION +03:15:44 Slot [225] | NOT FINANCIAL TRANSACTION +03:15:55 Slot [232] | NOT FINANCIAL TRANSACTION +03:15:59 Slot [205] | NOT FINANCIAL TRANSACTION +03:16:00 Slot [230] | NOT FINANCIAL TRANSACTION +03:16:15 Slot [188] | NOT FINANCIAL TRANSACTION +03:16:22 Slot [173] | NOT FINANCIAL TRANSACTION +03:16:26 Slot [229] | NOT FINANCIAL TRANSACTION +03:16:36 Slot [223] | NOT FINANCIAL TRANSACTION +03:16:46 Slot [177] | NOT FINANCIAL TRANSACTION +03:16:57 Slot [215] | NOT FINANCIAL TRANSACTION +03:16:58 Slot [235] | NOT FINANCIAL TRANSACTION +03:17:05 Slot [243] | NOT FINANCIAL TRANSACTION +03:17:12 Slot [246] | NOT FINANCIAL TRANSACTION +03:17:28 Slot [242] | NOT FINANCIAL TRANSACTION +03:17:40 Slot [248] | NOT FINANCIAL TRANSACTION +03:17:56 Slot [244] | NOT FINANCIAL TRANSACTION +03:17:59 Slot [227] | NOT FINANCIAL TRANSACTION +03:18:10 Slot [250] | NOT FINANCIAL TRANSACTION +03:18:10 Slot [251] | NOT FINANCIAL TRANSACTION +03:18:21 Slot [200] | NOT FINANCIAL TRANSACTION +03:18:32 Slot [226] | NOT FINANCIAL TRANSACTION +03:18:48 Slot [255] | NOT FINANCIAL TRANSACTION +03:18:59 Slot [233] | NOT FINANCIAL TRANSACTION +03:19:01 Slot [238] | NOT FINANCIAL TRANSACTION +03:19:10 Slot [216] | NOT FINANCIAL TRANSACTION +03:19:15 Slot [234] | NOT FINANCIAL TRANSACTION +03:19:21 Slot [237] | NOT FINANCIAL TRANSACTION +03:19:32 Slot [253] | NOT FINANCIAL TRANSACTION +03:19:47 Slot [220] | NOT FINANCIAL TRANSACTION +03:19:57 Slot [210] | NOT FINANCIAL TRANSACTION +03:19:58 Slot [249] | NOT FINANCIAL TRANSACTION +03:20:03 Slot [260] | NOT FINANCIAL TRANSACTION +03:20:09 Slot [199] | NOT FINANCIAL TRANSACTION +03:20:19 Slot [259] | NOT FINANCIAL TRANSACTION +03:20:20 Slot [263] | NOT FINANCIAL TRANSACTION +03:20:30 Slot [261] | NOT FINANCIAL TRANSACTION +03:20:41 Slot [270] | NOT FINANCIAL TRANSACTION +03:20:51 Slot [269] | NOT FINANCIAL TRANSACTION +03:21:02 Slot [256] | NOT FINANCIAL TRANSACTION +03:21:05 Slot [197] | NOT FINANCIAL TRANSACTION +03:21:07 Slot [240] | NOT FINANCIAL TRANSACTION +03:21:18 Slot [228] | NOT FINANCIAL TRANSACTION +03:21:22 Slot [265] | NOT FINANCIAL TRANSACTION +03:21:25 Slot [275] | NOT FINANCIAL TRANSACTION +03:21:33 Slot [247] | NOT FINANCIAL TRANSACTION +03:21:45 Slot [218] | NOT FINANCIAL TRANSACTION +03:21:59 Slot [274] | NOT FINANCIAL TRANSACTION +03:22:07 Slot [264] | NOT FINANCIAL TRANSACTION +03:22:14 Slot [231] | NOT FINANCIAL TRANSACTION +03:22:29 Slot [279] | NOT FINANCIAL TRANSACTION +03:22:30 Slot [254] | NOT FINANCIAL TRANSACTION +03:22:42 Slot [239] | NOT FINANCIAL TRANSACTION +03:22:56 Slot [273] | NOT FINANCIAL TRANSACTION +03:23:07 Slot [266] | NOT FINANCIAL TRANSACTION +03:23:09 Slot [272] | NOT FINANCIAL TRANSACTION +03:23:18 Slot [282] | NOT FINANCIAL TRANSACTION +03:23:29 Slot [241] | NOT FINANCIAL TRANSACTION +03:23:35 Slot [245] | NOT FINANCIAL TRANSACTION +03:23:40 Slot [252] | NOT FINANCIAL TRANSACTION +03:23:51 Slot [276] | NOT FINANCIAL TRANSACTION +03:24:06 Slot [280] | NOT FINANCIAL TRANSACTION +03:24:11 Slot [284] | NOT FINANCIAL TRANSACTION +03:24:16 Slot [258] | NOT FINANCIAL TRANSACTION +03:24:26 Slot [219] | NOT FINANCIAL TRANSACTION +03:24:37 Slot [224] | NOT FINANCIAL TRANSACTION +03:24:40 Slot [287] | NOT FINANCIAL TRANSACTION +03:24:49 Slot [290] | NOT FINANCIAL TRANSACTION +03:24:57 Slot [288] | NOT FINANCIAL TRANSACTION +03:24:59 Slot [271] | NOT FINANCIAL TRANSACTION +03:25:10 Slot [277] | NOT FINANCIAL TRANSACTION +03:25:13 Slot [267] | NOT FINANCIAL TRANSACTION +03:25:25 Slot [217] | NOT FINANCIAL TRANSACTION +03:25:41 Slot [236] | NOT FINANCIAL TRANSACTION +03:25:45 Slot [278] | NOT FINANCIAL TRANSACTION +03:25:56 Slot [293] | NOT FINANCIAL TRANSACTION +03:26:11 Slot [294] | NOT FINANCIAL TRANSACTION +03:26:15 Slot [298] | NOT FINANCIAL TRANSACTION +03:26:22 Slot [257] | NOT FINANCIAL TRANSACTION +03:26:22 Slot [303] | NOT FINANCIAL TRANSACTION +03:26:25 Slot [299] | NOT FINANCIAL TRANSACTION +03:26:33 Slot [302] | NOT FINANCIAL TRANSACTION +03:26:50 Slot [292] | NOT FINANCIAL TRANSACTION +03:26:50 Slot [300] | NOT FINANCIAL TRANSACTION +03:27:04 Slot [281] | NOT FINANCIAL TRANSACTION +03:27:15 Slot [295] | NOT FINANCIAL TRANSACTION +03:27:17 Slot [308] | NOT FINANCIAL TRANSACTION +03:27:31 Slot [262] | NOT FINANCIAL TRANSACTION +03:27:43 Slot [296] | NOT FINANCIAL TRANSACTION +03:27:55 Slot [283] | NOT FINANCIAL TRANSACTION +03:27:58 Slot [311] | NOT FINANCIAL TRANSACTION +03:28:09 Slot [312] | NOT FINANCIAL TRANSACTION +03:28:19 Slot [316] | NOT FINANCIAL TRANSACTION +03:28:19 Slot [306] | NOT FINANCIAL TRANSACTION +03:28:35 Slot [286] | NOT FINANCIAL TRANSACTION +03:28:46 Slot [307] | NOT FINANCIAL TRANSACTION +03:28:58 Slot [317] | NOT FINANCIAL TRANSACTION +03:29:00 Slot [310] | NOT FINANCIAL TRANSACTION +03:29:08 Slot [318] | NOT FINANCIAL TRANSACTION +03:29:18 Slot [289] | NOT FINANCIAL TRANSACTION +03:29:21 Slot [315] | NOT FINANCIAL TRANSACTION +03:29:29 Slot [322] | NOT FINANCIAL TRANSACTION +03:29:40 Slot [304] | NOT FINANCIAL TRANSACTION +03:29:52 Slot [325] | NOT FINANCIAL TRANSACTION +03:29:57 Slot [285] | NOT FINANCIAL TRANSACTION +03:30:05 Slot [297] | NOT FINANCIAL TRANSACTION +03:30:06 Slot [291] | NOT FINANCIAL TRANSACTION +03:30:16 Slot [326] | NOT FINANCIAL TRANSACTION +03:30:23 Slot [305] | NOT FINANCIAL TRANSACTION +03:30:26 Slot [301] | NOT FINANCIAL TRANSACTION +03:30:37 Slot [327] | NOT FINANCIAL TRANSACTION +03:30:47 Slot [333] | NOT FINANCIAL TRANSACTION +03:31:00 Slot [314] | NOT FINANCIAL TRANSACTION +03:31:10 Slot [331] | NOT FINANCIAL TRANSACTION +03:31:14 Slot [321] | NOT FINANCIAL TRANSACTION +03:31:22 Slot [336] | NOT FINANCIAL TRANSACTION +03:31:25 Slot [334] | NOT FINANCIAL TRANSACTION +03:31:29 Slot [337] | NOT FINANCIAL TRANSACTION +03:31:45 Slot [335] | NOT FINANCIAL TRANSACTION +03:31:48 Slot [342] | NOT FINANCIAL TRANSACTION +03:32:00 Slot [320] | NOT FINANCIAL TRANSACTION +03:32:15 Slot [341] | NOT FINANCIAL TRANSACTION +03:32:15 Slot [268] | NOT FINANCIAL TRANSACTION +03:32:26 Slot [345] | NOT FINANCIAL TRANSACTION +03:32:27 Slot [344] | NOT FINANCIAL TRANSACTION +03:32:37 Slot [329] | NOT FINANCIAL TRANSACTION +03:32:48 Slot [339] | NOT FINANCIAL TRANSACTION +03:33:00 Slot [323] | NOT FINANCIAL TRANSACTION +03:33:10 Slot [309] | NOT FINANCIAL TRANSACTION +03:33:20 Slot [348] | NOT FINANCIAL TRANSACTION +03:33:21 Slot [352] | NOT FINANCIAL TRANSACTION +03:33:29 Slot [328] | NOT FINANCIAL TRANSACTION +03:33:32 Slot [350] | NOT FINANCIAL TRANSACTION +03:33:42 Slot [347] | NOT FINANCIAL TRANSACTION +03:33:53 Slot [319] | NOT FINANCIAL TRANSACTION +03:34:09 Slot [356] | NOT FINANCIAL TRANSACTION +03:34:19 Slot [332] | NOT FINANCIAL TRANSACTION +03:34:25 Slot [346] | NOT FINANCIAL TRANSACTION +03:34:30 Slot [357] | NOT FINANCIAL TRANSACTION +03:34:31 Slot [330] | NOT FINANCIAL TRANSACTION +03:34:41 Slot [366] | NOT FINANCIAL TRANSACTION +03:34:51 Slot [343] | NOT FINANCIAL TRANSACTION +03:34:56 Slot [365] | NOT FINANCIAL TRANSACTION +03:35:02 Slot [313] | NOT FINANCIAL TRANSACTION +03:35:13 Slot [340] | NOT FINANCIAL TRANSACTION +03:35:23 Slot [371] | NOT FINANCIAL TRANSACTION +03:35:30 Slot [324] | NOT FINANCIAL TRANSACTION +03:35:33 Slot [378] | NOT FINANCIAL TRANSACTION +03:35:37 Slot [353] | NOT FINANCIAL TRANSACTION +03:35:51 Slot [373] | NOT FINANCIAL TRANSACTION +03:36:02 Slot [355] | NOT FINANCIAL TRANSACTION +03:36:13 Slot [382] | NOT FINANCIAL TRANSACTION +03:36:21 Slot [363] | NOT FINANCIAL TRANSACTION +03:36:28 Slot [358] | NOT FINANCIAL TRANSACTION +03:36:35 Slot [338] | NOT FINANCIAL TRANSACTION +03:36:35 Slot [370] | NOT FINANCIAL TRANSACTION +03:36:39 Slot [360] | NOT FINANCIAL TRANSACTION +03:36:50 Slot [379] | NOT FINANCIAL TRANSACTION +03:37:02 Slot [396] | NOT FINANCIAL TRANSACTION +03:37:17 Slot [354] | NOT FINANCIAL TRANSACTION +03:37:28 Slot [369] | NOT FINANCIAL TRANSACTION +03:37:37 Slot [351] | NOT FINANCIAL TRANSACTION +03:37:40 Slot [374] | NOT FINANCIAL TRANSACTION +03:37:40 Slot [389] | NOT FINANCIAL TRANSACTION +03:37:54 Slot [390] | NOT FINANCIAL TRANSACTION +03:38:05 Slot [376] | NOT FINANCIAL TRANSACTION +03:38:20 Slot [359] | NOT FINANCIAL TRANSACTION +03:38:31 Slot [395] | NOT FINANCIAL TRANSACTION +03:38:39 Slot [361] | NOT FINANCIAL TRANSACTION +03:38:42 Slot [410] | NOT FINANCIAL TRANSACTION +03:38:45 Slot [349] | NOT FINANCIAL TRANSACTION +03:38:59 Slot [383] | NOT FINANCIAL TRANSACTION +03:39:09 Slot [413] | NOT FINANCIAL TRANSACTION +03:39:20 Slot [393] | NOT FINANCIAL TRANSACTION +03:39:31 Slot [397] | NOT FINANCIAL TRANSACTION +03:39:41 Slot [400] | NOT FINANCIAL TRANSACTION +03:39:42 Slot [414] | NOT FINANCIAL TRANSACTION +03:39:50 Slot [399] | NOT FINANCIAL TRANSACTION +03:39:53 Slot [394] | NOT FINANCIAL TRANSACTION +03:39:56 Slot [387] | NOT FINANCIAL TRANSACTION +03:40:04 Slot [368] | NOT FINANCIAL TRANSACTION +03:40:18 Slot [372] | NOT FINANCIAL TRANSACTION +03:40:32 Slot [418] | NOT FINANCIAL TRANSACTION +03:40:43 Slot [380] | NOT FINANCIAL TRANSACTION +03:40:43 Slot [406] | NOT FINANCIAL TRANSACTION +03:40:53 Slot [419] | NOT FINANCIAL TRANSACTION +03:40:55 Slot [411] | NOT FINANCIAL TRANSACTION +03:41:04 Slot [407] | NOT FINANCIAL TRANSACTION +03:41:15 Slot [384] | NOT FINANCIAL TRANSACTION +03:41:21 Slot [401] | NOT FINANCIAL TRANSACTION +03:41:26 Slot [420] | NOT FINANCIAL TRANSACTION +03:41:37 Slot [416] | NOT FINANCIAL TRANSACTION +03:41:45 Slot [415] | NOT FINANCIAL TRANSACTION +03:41:47 Slot [381] | NOT FINANCIAL TRANSACTION +03:42:01 Slot [425] | NOT FINANCIAL TRANSACTION +03:42:03 Slot [388] | NOT FINANCIAL TRANSACTION +03:42:14 Slot [398] | NOT FINANCIAL TRANSACTION +03:42:25 Slot [433] | NOT FINANCIAL TRANSACTION +03:42:34 Slot [364] | NOT FINANCIAL TRANSACTION +03:42:40 Slot [367] | NOT FINANCIAL TRANSACTION +03:42:47 Slot [430] | NOT FINANCIAL TRANSACTION +03:42:51 Slot [441] | NOT FINANCIAL TRANSACTION +03:43:02 Slot [375] | NOT FINANCIAL TRANSACTION +03:43:06 Slot [402] | NOT FINANCIAL TRANSACTION +03:43:07 Slot [408] | NOT FINANCIAL TRANSACTION +03:43:13 Slot [437] | NOT FINANCIAL TRANSACTION +03:43:25 Slot [409] | NOT FINANCIAL TRANSACTION +03:43:37 Slot [385] | NOT FINANCIAL TRANSACTION +03:43:48 Slot [362] | NOT FINANCIAL TRANSACTION +03:43:49 Slot [403] | NOT FINANCIAL TRANSACTION +03:44:04 Slot [392] | NOT FINANCIAL TRANSACTION +03:44:11 Slot [412] | NOT FINANCIAL TRANSACTION +03:44:15 Slot [447] | NOT FINANCIAL TRANSACTION +03:44:25 Slot [450] | NOT FINANCIAL TRANSACTION +03:44:40 Slot [386] | NOT FINANCIAL TRANSACTION +03:44:51 Slot [417] | NOT FINANCIAL TRANSACTION +03:44:55 Slot [391] | NOT FINANCIAL TRANSACTION +03:44:56 Slot [377] | NOT FINANCIAL TRANSACTION +03:45:06 Slot [405] | NOT FINANCIAL TRANSACTION +03:45:16 Slot [443] | NOT FINANCIAL TRANSACTION +03:45:21 Slot [456] | NOT FINANCIAL TRANSACTION +03:45:32 Slot [446] | NOT FINANCIAL TRANSACTION +03:45:48 Slot [435] | NOT FINANCIAL TRANSACTION +03:45:53 Slot [404] | NOT FINANCIAL TRANSACTION +03:45:58 Slot [424] | NOT FINANCIAL TRANSACTION +03:46:09 Slot [442] | NOT FINANCIAL TRANSACTION +03:46:20 Slot [429] | NOT FINANCIAL TRANSACTION +03:46:21 Slot [445] | NOT FINANCIAL TRANSACTION +03:46:21 Slot [438] | NOT FINANCIAL TRANSACTION +03:46:31 Slot [434] | NOT FINANCIAL TRANSACTION +03:46:41 Slot [428] | NOT FINANCIAL TRANSACTION +03:46:52 Slot [427] | NOT FINANCIAL TRANSACTION +03:46:55 Slot [426] | NOT FINANCIAL TRANSACTION +03:47:03 Slot [431] | NOT FINANCIAL TRANSACTION +03:47:18 Slot [451] | NOT FINANCIAL TRANSACTION +03:47:26 Slot [457] | NOT FINANCIAL TRANSACTION +03:47:29 Slot [422] | NOT FINANCIAL TRANSACTION +03:47:39 Slot [462] | NOT FINANCIAL TRANSACTION +03:47:49 Slot [465] | NOT FINANCIAL TRANSACTION +03:47:57 Slot [444] | NOT FINANCIAL TRANSACTION +03:48:00 Slot [421] | NOT FINANCIAL TRANSACTION +03:48:11 Slot [439] | NOT FINANCIAL TRANSACTION +03:48:23 Slot [458] | NOT FINANCIAL TRANSACTION +03:48:31 Slot [423] | NOT FINANCIAL TRANSACTION +03:48:34 Slot [466] | NOT FINANCIAL TRANSACTION +03:48:45 Slot [436] | NOT FINANCIAL TRANSACTION +03:48:55 Slot [459] | NOT FINANCIAL TRANSACTION +03:48:59 Slot [475] | NOT FINANCIAL TRANSACTION +03:49:10 Slot [452] | NOT FINANCIAL TRANSACTION +03:49:21 Slot [468] | NOT FINANCIAL TRANSACTION +03:49:36 Slot [449] | NOT FINANCIAL TRANSACTION +03:49:36 Slot [455] | NOT FINANCIAL TRANSACTION +03:49:52 Slot [440] | NOT FINANCIAL TRANSACTION +03:49:56 Slot [460] | NOT FINANCIAL TRANSACTION +03:50:01 Slot [432] | NOT FINANCIAL TRANSACTION +03:50:03 Slot [453] | NOT FINANCIAL TRANSACTION +03:50:19 Slot [482] | NOT FINANCIAL TRANSACTION +03:50:34 Slot [488] | NOT FINANCIAL TRANSACTION +03:50:41 Slot [470] | NOT FINANCIAL TRANSACTION +03:50:45 Slot [495] | NOT FINANCIAL TRANSACTION +03:51:02 Slot [463] | NOT FINANCIAL TRANSACTION +03:51:03 Slot [490] | NOT FINANCIAL TRANSACTION +03:51:13 Slot [448] | NOT FINANCIAL TRANSACTION +03:51:21 Slot [484] | NOT FINANCIAL TRANSACTION +03:51:23 Slot [471] | NOT FINANCIAL TRANSACTION +03:51:34 Slot [480] | NOT FINANCIAL TRANSACTION +03:51:45 Slot [479] | NOT FINANCIAL TRANSACTION +03:51:46 Slot [498] | NOT FINANCIAL TRANSACTION +03:51:56 Slot [0] | NOT FINANCIAL TRANSACTION +03:52:05 Slot [2] | NOT FINANCIAL TRANSACTION +03:52:08 Slot [493] | NOT FINANCIAL TRANSACTION +03:52:24 Slot [473] | NOT FINANCIAL TRANSACTION +03:52:35 Slot [1] | NOT FINANCIAL TRANSACTION +03:52:47 Slot [4] | NOT FINANCIAL TRANSACTION +03:52:53 Slot [474] | NOT FINANCIAL TRANSACTION +03:53:01 Slot [483] | NOT FINANCIAL TRANSACTION +03:53:07 Slot [476] | NOT FINANCIAL TRANSACTION +03:53:12 Slot [489] | NOT FINANCIAL TRANSACTION +03:53:20 Slot [477] | NOT FINANCIAL TRANSACTION +03:53:23 Slot [472] | NOT FINANCIAL TRANSACTION +03:53:34 Slot [486] | NOT FINANCIAL TRANSACTION +03:53:50 Slot [492] | NOT FINANCIAL TRANSACTION +03:53:58 Slot [6] | NOT FINANCIAL TRANSACTION +03:54:01 Slot [485] | NOT FINANCIAL TRANSACTION +03:54:09 Slot [454] | NOT FINANCIAL TRANSACTION +03:54:12 Slot [13] | NOT FINANCIAL TRANSACTION +03:54:23 Slot [14] | NOT FINANCIAL TRANSACTION +03:54:39 Slot [12] | NOT FINANCIAL TRANSACTION +03:54:50 Slot [16] | NOT FINANCIAL TRANSACTION +03:54:56 Slot [494] | NOT FINANCIAL TRANSACTION +03:55:01 Slot [469] | NOT FINANCIAL TRANSACTION +03:55:03 Slot [22] | NOT FINANCIAL TRANSACTION +03:55:11 Slot [491] | NOT FINANCIAL TRANSACTION +03:55:12 Slot [17] | NOT FINANCIAL TRANSACTION +03:55:22 Slot [499] | NOT FINANCIAL TRANSACTION +03:55:33 Slot [10] | NOT FINANCIAL TRANSACTION +03:55:44 Slot [31] | NOT FINANCIAL TRANSACTION +03:55:59 Slot [23] | NOT FINANCIAL TRANSACTION +03:56:08 Slot [3] | NOT FINANCIAL TRANSACTION +03:56:13 Slot [481] | NOT FINANCIAL TRANSACTION +03:56:14 Slot [29] | NOT FINANCIAL TRANSACTION +03:56:21 Slot [21] | NOT FINANCIAL TRANSACTION +03:56:25 Slot [7] | NOT FINANCIAL TRANSACTION +03:56:36 Slot [33] | NOT FINANCIAL TRANSACTION +03:56:47 Slot [11] | NOT FINANCIAL TRANSACTION +03:56:58 Slot [35] | NOT FINANCIAL TRANSACTION +03:57:09 Slot [496] | NOT FINANCIAL TRANSACTION +03:57:13 Slot [30] | NOT FINANCIAL TRANSACTION +03:57:15 Slot [36] | NOT FINANCIAL TRANSACTION +03:57:25 Slot [37] | NOT FINANCIAL TRANSACTION +03:57:36 Slot [32] | NOT FINANCIAL TRANSACTION +03:57:47 Slot [461] | NOT FINANCIAL TRANSACTION +03:57:59 Slot [9] | NOT FINANCIAL TRANSACTION +03:58:10 Slot [467] | NOT FINANCIAL TRANSACTION +03:58:17 Slot [45] | NOT FINANCIAL TRANSACTION +03:58:18 Slot [40] | NOT FINANCIAL TRANSACTION +03:58:25 Slot [18] | NOT FINANCIAL TRANSACTION +03:58:36 Slot [497] | NOT FINANCIAL TRANSACTION +03:58:51 Slot [28] | NOT FINANCIAL TRANSACTION +03:59:08 Slot [43] | NOT FINANCIAL TRANSACTION +03:59:19 Slot [8] | NOT FINANCIAL TRANSACTION +03:59:22 Slot [50] | NOT FINANCIAL TRANSACTION +03:59:23 Slot [52] | NOT FINANCIAL TRANSACTION +03:59:33 Slot [44] | NOT FINANCIAL TRANSACTION +03:59:44 Slot [61] | NOT FINANCIAL TRANSACTION +03:59:49 Slot [25] | NOT FINANCIAL TRANSACTION +03:59:56 Slot [15] | NOT FINANCIAL TRANSACTION +03:59:56 Slot [55] | NOT FINANCIAL TRANSACTION +04:00:11 Slot [478] | NOT FINANCIAL TRANSACTION +04:00:21 Slot [68] | NOT FINANCIAL TRANSACTION +04:00:22 Slot [63] | NOT FINANCIAL TRANSACTION +04:00:28 Slot [60] | NOT FINANCIAL TRANSACTION +04:00:32 Slot [464] | NOT FINANCIAL TRANSACTION +04:00:44 Slot [41] | NOT FINANCIAL TRANSACTION +04:00:55 Slot [38] | NOT FINANCIAL TRANSACTION +04:01:10 Slot [73] | NOT FINANCIAL TRANSACTION +04:01:21 Slot [487] | NOT FINANCIAL TRANSACTION +04:01:23 Slot [20] | NOT FINANCIAL TRANSACTION +04:01:25 Slot [27] | NOT FINANCIAL TRANSACTION +04:01:33 Slot [48] | NOT FINANCIAL TRANSACTION +04:01:36 Slot [26] | NOT FINANCIAL TRANSACTION +04:01:49 Slot [46] | NOT FINANCIAL TRANSACTION +04:02:02 Slot [19] | NOT FINANCIAL TRANSACTION +04:02:13 Slot [69] | NOT FINANCIAL TRANSACTION +04:02:25 Slot [47] | NOT FINANCIAL TRANSACTION +04:02:29 Slot [58] | NOT FINANCIAL TRANSACTION +04:02:38 Slot [78] | NOT FINANCIAL TRANSACTION +04:02:40 Slot [54] | NOT FINANCIAL TRANSACTION +04:02:50 Slot [81] | NOT FINANCIAL TRANSACTION +04:03:07 Slot [24] | NOT FINANCIAL TRANSACTION +04:03:19 Slot [57] | NOT FINANCIAL TRANSACTION +04:03:27 Slot [34] | NOT FINANCIAL TRANSACTION +04:03:36 Slot [86] | NOT FINANCIAL TRANSACTION +04:03:43 Slot [42] | NOT FINANCIAL TRANSACTION +04:03:46 Slot [88] | NOT FINANCIAL TRANSACTION +04:03:57 Slot [49] | NOT FINANCIAL TRANSACTION +04:04:06 Slot [5] | NOT FINANCIAL TRANSACTION +04:04:08 Slot [89] | NOT FINANCIAL TRANSACTION +04:04:19 Slot [79] | NOT FINANCIAL TRANSACTION +04:04:29 Slot [59] | NOT FINANCIAL TRANSACTION +04:04:30 Slot [84] | NOT FINANCIAL TRANSACTION +04:04:45 Slot [62] | NOT FINANCIAL TRANSACTION +04:04:48 Slot [67] | NOT FINANCIAL TRANSACTION +04:04:56 Slot [99] | NOT FINANCIAL TRANSACTION +04:05:00 Slot [39] | NOT FINANCIAL TRANSACTION +04:05:11 Slot [64] | NOT FINANCIAL TRANSACTION +04:05:21 Slot [51] | NOT FINANCIAL TRANSACTION +04:05:31 Slot [82] | NOT FINANCIAL TRANSACTION +04:05:32 Slot [93] | NOT FINANCIAL TRANSACTION +04:05:43 Slot [56] | NOT FINANCIAL TRANSACTION +04:05:53 Slot [91] | NOT FINANCIAL TRANSACTION +04:05:54 Slot [100] | NOT FINANCIAL TRANSACTION +04:06:11 Slot [77] | NOT FINANCIAL TRANSACTION +04:06:21 Slot [65] | NOT FINANCIAL TRANSACTION +04:06:22 Slot [72] | NOT FINANCIAL TRANSACTION +04:06:33 Slot [106] | NOT FINANCIAL TRANSACTION +04:06:37 Slot [76] | NOT FINANCIAL TRANSACTION +04:06:47 Slot [66] | NOT FINANCIAL TRANSACTION +04:06:58 Slot [90] | NOT FINANCIAL TRANSACTION +04:06:58 Slot [114] | NOT FINANCIAL TRANSACTION +04:07:13 Slot [74] | NOT FINANCIAL TRANSACTION +04:07:26 Slot [107] | NOT FINANCIAL TRANSACTION +04:07:35 Slot [83] | NOT FINANCIAL TRANSACTION +04:07:40 Slot [92] | NOT FINANCIAL TRANSACTION +04:07:51 Slot [118] | NOT FINANCIAL TRANSACTION +04:08:02 Slot [121] | NOT FINANCIAL TRANSACTION +04:08:03 Slot [113] | NOT FINANCIAL TRANSACTION +04:08:12 Slot [108] | NOT FINANCIAL TRANSACTION +04:08:22 Slot [94] | NOT FINANCIAL TRANSACTION +04:08:33 Slot [115] | NOT FINANCIAL TRANSACTION +04:08:37 Slot [127] | NOT FINANCIAL TRANSACTION +04:08:44 Slot [125] | NOT FINANCIAL TRANSACTION +04:08:55 Slot [95] | NOT FINANCIAL TRANSACTION +04:09:08 Slot [75] | NOT FINANCIAL TRANSACTION +04:09:12 Slot [53] | NOT FINANCIAL TRANSACTION +04:09:24 Slot [134] | NOT FINANCIAL TRANSACTION +04:09:34 Slot [96] | NOT FINANCIAL TRANSACTION +04:09:39 Slot [98] | NOT FINANCIAL TRANSACTION +04:09:49 Slot [103] | NOT FINANCIAL TRANSACTION +04:09:56 Slot [71] | NOT FINANCIAL TRANSACTION +04:09:59 Slot [101] | NOT FINANCIAL TRANSACTION +04:10:09 Slot [102] | NOT FINANCIAL TRANSACTION +04:10:13 Slot [109] | NOT FINANCIAL TRANSACTION +04:10:20 Slot [70] | NOT FINANCIAL TRANSACTION +04:10:36 Slot [136] | NOT FINANCIAL TRANSACTION +04:10:41 Slot [131] | NOT FINANCIAL TRANSACTION +04:10:47 Slot [129] | NOT FINANCIAL TRANSACTION +04:10:59 Slot [85] | NOT FINANCIAL TRANSACTION +04:11:13 Slot [105] | NOT FINANCIAL TRANSACTION +04:11:18 Slot [87] | NOT FINANCIAL TRANSACTION +04:11:22 Slot [104] | NOT FINANCIAL TRANSACTION +04:11:23 Slot [138] | NOT FINANCIAL TRANSACTION +04:11:34 Slot [97] | NOT FINANCIAL TRANSACTION +04:11:43 Slot [117] | NOT FINANCIAL TRANSACTION +04:11:45 Slot [112] | NOT FINANCIAL TRANSACTION +04:11:56 Slot [140] | NOT FINANCIAL TRANSACTION +04:12:07 Slot [111] | NOT FINANCIAL TRANSACTION +04:12:22 Slot [116] | NOT FINANCIAL TRANSACTION +04:12:23 Slot [124] | NOT FINANCIAL TRANSACTION +04:12:34 Slot [147] | NOT FINANCIAL TRANSACTION +04:12:45 Slot [80] | NOT FINANCIAL TRANSACTION +04:12:48 Slot [123] | NOT FINANCIAL TRANSACTION +04:12:58 Slot [122] | NOT FINANCIAL TRANSACTION +04:13:08 Slot [161] | NOT FINANCIAL TRANSACTION +04:13:23 Slot [154] | NOT FINANCIAL TRANSACTION +04:13:28 Slot [162] | NOT FINANCIAL TRANSACTION +04:13:33 Slot [132] | NOT FINANCIAL TRANSACTION +04:13:44 Slot [145] | NOT FINANCIAL TRANSACTION +04:13:47 Slot [143] | NOT FINANCIAL TRANSACTION +04:13:55 Slot [158] | NOT FINANCIAL TRANSACTION +04:14:06 Slot [120] | NOT FINANCIAL TRANSACTION +04:14:17 Slot [150] | NOT FINANCIAL TRANSACTION +04:14:32 Slot [166] | NOT FINANCIAL TRANSACTION +04:14:33 Slot [130] | NOT FINANCIAL TRANSACTION +04:14:44 Slot [133] | NOT FINANCIAL TRANSACTION +04:14:49 Slot [142] | NOT FINANCIAL TRANSACTION +04:14:52 Slot [153] | NOT FINANCIAL TRANSACTION +04:14:54 Slot [110] | NOT FINANCIAL TRANSACTION +04:14:56 Slot [167] | NOT FINANCIAL TRANSACTION +04:15:06 Slot [137] | NOT FINANCIAL TRANSACTION +04:15:17 Slot [128] | NOT FINANCIAL TRANSACTION +04:15:32 Slot [146] | NOT FINANCIAL TRANSACTION +04:15:38 Slot [159] | NOT FINANCIAL TRANSACTION +04:15:43 Slot [175] | NOT FINANCIAL TRANSACTION +04:15:51 Slot [170] | NOT FINANCIAL TRANSACTION +04:15:54 Slot [141] | NOT FINANCIAL TRANSACTION +04:16:05 Slot [151] | NOT FINANCIAL TRANSACTION +04:16:20 Slot [164] | NOT FINANCIAL TRANSACTION +04:16:22 Slot [157] | NOT FINANCIAL TRANSACTION +04:16:31 Slot [172] | NOT FINANCIAL TRANSACTION +04:16:31 Slot [148] | NOT FINANCIAL TRANSACTION +04:16:42 Slot [182] | NOT FINANCIAL TRANSACTION +04:16:43 Slot [186] | NOT FINANCIAL TRANSACTION +04:16:52 Slot [171] | NOT FINANCIAL TRANSACTION +04:16:53 Slot [126] | NOT FINANCIAL TRANSACTION +04:17:03 Slot [119] | NOT FINANCIAL TRANSACTION +04:17:14 Slot [139] | NOT FINANCIAL TRANSACTION +04:17:30 Slot [176] | NOT FINANCIAL TRANSACTION +04:17:41 Slot [156] | NOT FINANCIAL TRANSACTION +04:17:48 Slot [202] | NOT FINANCIAL TRANSACTION +04:17:51 Slot [187] | NOT FINANCIAL TRANSACTION +04:17:55 Slot [163] | NOT FINANCIAL TRANSACTION +04:18:01 Slot [203] | NOT FINANCIAL TRANSACTION +04:18:16 Slot [160] | NOT FINANCIAL TRANSACTION +04:18:27 Slot [179] | NOT FINANCIAL TRANSACTION +04:18:37 Slot [192] | NOT FINANCIAL TRANSACTION +04:18:48 Slot [135] | NOT FINANCIAL TRANSACTION +04:18:53 Slot [144] | NOT FINANCIAL TRANSACTION +04:18:57 Slot [204] | NOT FINANCIAL TRANSACTION +04:19:03 Slot [152] | NOT FINANCIAL TRANSACTION +04:19:15 Slot [196] | NOT FINANCIAL TRANSACTION +04:19:26 Slot [191] | NOT FINANCIAL TRANSACTION +04:19:37 Slot [190] | NOT FINANCIAL TRANSACTION +04:19:52 Slot [155] | NOT FINANCIAL TRANSACTION +04:19:56 Slot [181] | NOT FINANCIAL TRANSACTION +04:19:58 Slot [201] | NOT FINANCIAL TRANSACTION +04:19:59 Slot [198] | NOT FINANCIAL TRANSACTION +04:20:02 Slot [194] | NOT FINANCIAL TRANSACTION +04:20:13 Slot [214] | NOT FINANCIAL TRANSACTION +04:20:24 Slot [165] | NOT FINANCIAL TRANSACTION +04:20:34 Slot [195] | NOT FINANCIAL TRANSACTION +04:20:45 Slot [184] | NOT FINANCIAL TRANSACTION +04:20:56 Slot [209] | NOT FINANCIAL TRANSACTION +04:21:01 Slot [213] | NOT FINANCIAL TRANSACTION +04:21:03 Slot [178] | NOT FINANCIAL TRANSACTION +04:21:07 Slot [208] | NOT FINANCIAL TRANSACTION +04:21:18 Slot [193] | NOT FINANCIAL TRANSACTION +04:21:22 Slot [206] | NOT FINANCIAL TRANSACTION +04:21:29 Slot [185] | NOT FINANCIAL TRANSACTION +04:21:39 Slot [221] | NOT FINANCIAL TRANSACTION +04:21:40 +Slot[211] 0200 010000 6688990600401101 ------------- 00 662104 000020000000 507904422872030041006688990600401101 507904422872 372833 621354 S +04:21:51 Slot [183] | NOT FINANCIAL TRANSACTION +04:22:01 Slot [212] | NOT FINANCIAL TRANSACTION +04:22:03 Slot [207] | NOT FINANCIAL TRANSACTION +04:22:08 Slot [149] | NOT FINANCIAL TRANSACTION +04:22:11 Slot [174] | NOT FINANCIAL TRANSACTION +04:22:27 Slot [168] | NOT FINANCIAL TRANSACTION +04:22:37 Slot [180] | NOT FINANCIAL TRANSACTION +04:22:48 Slot [189] | NOT FINANCIAL TRANSACTION +04:23:04 Slot [169] | NOT FINANCIAL TRANSACTION +04:23:06 Slot [222] | NOT FINANCIAL TRANSACTION +04:23:13 Slot [225] | NOT FINANCIAL TRANSACTION +04:23:17 Slot [232] | NOT FINANCIAL TRANSACTION +04:23:33 Slot [205] | NOT FINANCIAL TRANSACTION +04:23:43 Slot [230] | NOT FINANCIAL TRANSACTION +04:23:59 Slot [188] | NOT FINANCIAL TRANSACTION +04:24:08 Slot [173] | NOT FINANCIAL TRANSACTION +04:24:15 Slot [229] | NOT FINANCIAL TRANSACTION +04:24:18 Slot [223] | NOT FINANCIAL TRANSACTION +04:24:30 Slot [177] | NOT FINANCIAL TRANSACTION +04:24:41 Slot [215] | NOT FINANCIAL TRANSACTION +04:24:56 Slot [235] | NOT FINANCIAL TRANSACTION +04:24:57 Slot [243] | NOT FINANCIAL TRANSACTION +04:25:10 Slot [246] | NOT FINANCIAL TRANSACTION +04:25:12 Slot [242] | NOT FINANCIAL TRANSACTION +04:25:23 Slot [248] | NOT FINANCIAL TRANSACTION +04:25:23 Slot [244] | NOT FINANCIAL TRANSACTION +04:25:33 Slot [227] | NOT FINANCIAL TRANSACTION +04:25:38 Slot [250] | NOT FINANCIAL TRANSACTION +04:25:45 Slot [251] | NOT FINANCIAL TRANSACTION +04:26:00 Slot [200] | NOT FINANCIAL TRANSACTION +04:26:11 Slot [255] | NOT FINANCIAL TRANSACTION +04:26:12 Slot [226] | NOT FINANCIAL TRANSACTION +04:26:22 Slot [233] | NOT FINANCIAL TRANSACTION +04:26:22 Slot [238] | NOT FINANCIAL TRANSACTION +04:26:28 Slot [216] | NOT FINANCIAL TRANSACTION +04:26:38 Slot [234] | NOT FINANCIAL TRANSACTION +04:26:51 Slot [237] | NOT FINANCIAL TRANSACTION +04:27:02 Slot [253] | NOT FINANCIAL TRANSACTION +04:27:12 Slot [210] | NOT FINANCIAL TRANSACTION +04:27:14 Slot [220] | NOT FINANCIAL TRANSACTION +04:27:23 Slot [249] | NOT FINANCIAL TRANSACTION +04:27:33 Slot [260] | NOT FINANCIAL TRANSACTION +04:27:38 Slot [199] | NOT FINANCIAL TRANSACTION +04:27:49 Slot [259] | NOT FINANCIAL TRANSACTION +04:28:05 Slot [263] | NOT FINANCIAL TRANSACTION +04:28:15 Slot [270] | NOT FINANCIAL TRANSACTION +04:28:16 Slot [261] | NOT FINANCIAL TRANSACTION +04:28:26 Slot [269] | NOT FINANCIAL TRANSACTION +04:28:36 Slot [256] | NOT FINANCIAL TRANSACTION +04:28:38 Slot [197] | NOT FINANCIAL TRANSACTION +04:28:49 Slot [240] | NOT FINANCIAL TRANSACTION +04:29:04 Slot [228] | NOT FINANCIAL TRANSACTION +04:29:18 Slot [265] | NOT FINANCIAL TRANSACTION +04:29:20 Slot [275] | NOT FINANCIAL TRANSACTION +04:29:30 Slot [247] | NOT FINANCIAL TRANSACTION +04:29:41 Slot [218] | NOT FINANCIAL TRANSACTION +04:29:43 Slot [274] | NOT FINANCIAL TRANSACTION +04:29:52 Slot [264] | NOT FINANCIAL TRANSACTION +04:29:56 Slot [231] | NOT FINANCIAL TRANSACTION +04:30:07 Slot [279] | NOT FINANCIAL TRANSACTION +04:30:18 Slot [239] | NOT FINANCIAL TRANSACTION +04:30:20 Slot [254] | NOT FINANCIAL TRANSACTION +04:30:30 Slot [273] | NOT FINANCIAL TRANSACTION +04:30:45 Slot [266] | NOT FINANCIAL TRANSACTION +04:30:48 Slot [272] | NOT FINANCIAL TRANSACTION +04:30:55 Slot [282] | NOT FINANCIAL TRANSACTION +04:31:10 Slot [241] | NOT FINANCIAL TRANSACTION +04:31:21 Slot [252] | NOT FINANCIAL TRANSACTION +04:31:22 Slot [245] | NOT FINANCIAL TRANSACTION +04:31:22 Slot [276] | NOT FINANCIAL TRANSACTION +04:31:32 Slot [280] | NOT FINANCIAL TRANSACTION +04:31:43 Slot [284] | NOT FINANCIAL TRANSACTION +04:31:53 Slot [258] | NOT FINANCIAL TRANSACTION +04:31:54 Slot [219] | NOT FINANCIAL TRANSACTION +04:32:05 Slot [224] | NOT FINANCIAL TRANSACTION +04:32:20 Slot [287] | NOT FINANCIAL TRANSACTION +04:32:24 Slot [290] | NOT FINANCIAL TRANSACTION +04:32:32 Slot [288] | NOT FINANCIAL TRANSACTION +04:32:46 Slot [271] | NOT FINANCIAL TRANSACTION +04:32:57 Slot [277] | NOT FINANCIAL TRANSACTION +04:32:58 Slot [267] | NOT FINANCIAL TRANSACTION +04:33:09 Slot [217] | NOT FINANCIAL TRANSACTION +04:33:13 Slot [236] | NOT FINANCIAL TRANSACTION +04:33:25 Slot [293] | NOT FINANCIAL TRANSACTION +04:33:26 Slot [278] | NOT FINANCIAL TRANSACTION +04:33:36 Slot [294] | NOT FINANCIAL TRANSACTION +04:33:51 Slot [298] | NOT FINANCIAL TRANSACTION +04:34:02 Slot [257] | NOT FINANCIAL TRANSACTION +04:34:03 Slot [303] | NOT FINANCIAL TRANSACTION +04:34:12 Slot [299] | NOT FINANCIAL TRANSACTION +04:34:22 Slot [302] | NOT FINANCIAL TRANSACTION +04:34:28 Slot [292] | NOT FINANCIAL TRANSACTION +04:34:33 Slot [300] | NOT FINANCIAL TRANSACTION +04:34:44 Slot [281] | NOT FINANCIAL TRANSACTION +04:34:55 Slot [295] | NOT FINANCIAL TRANSACTION +04:34:56 Slot [308] | NOT FINANCIAL TRANSACTION +04:35:06 Slot [262] | NOT FINANCIAL TRANSACTION +04:35:08 Slot [296] | NOT FINANCIAL TRANSACTION +04:35:17 Slot [283] | NOT FINANCIAL TRANSACTION +04:35:30 Slot [311] | NOT FINANCIAL TRANSACTION +04:35:33 Slot [312] | NOT FINANCIAL TRANSACTION +04:35:43 Slot [316] | NOT FINANCIAL TRANSACTION +04:35:53 Slot [306] | NOT FINANCIAL TRANSACTION +04:36:04 Slot [286] | NOT FINANCIAL TRANSACTION +04:36:13 Slot [307] | NOT FINANCIAL TRANSACTION +04:36:16 Slot [317] | NOT FINANCIAL TRANSACTION +04:36:22 Slot [310] | NOT FINANCIAL TRANSACTION +04:36:24 Slot [318] | NOT FINANCIAL TRANSACTION +04:36:32 Slot [289] | NOT FINANCIAL TRANSACTION +04:36:32 Slot [315] | NOT FINANCIAL TRANSACTION +04:36:46 Slot [322] | NOT FINANCIAL TRANSACTION +04:36:57 Slot [304] | NOT FINANCIAL TRANSACTION +04:37:08 Slot [325] | NOT FINANCIAL TRANSACTION +04:37:18 Slot [285] | NOT FINANCIAL TRANSACTION +04:37:20 Slot [297] | NOT FINANCIAL TRANSACTION +04:37:34 Slot [291] | NOT FINANCIAL TRANSACTION +04:37:35 Slot [326] | NOT FINANCIAL TRANSACTION +04:37:51 Slot [305] | NOT FINANCIAL TRANSACTION +04:38:03 Slot [301] | NOT FINANCIAL TRANSACTION +04:38:19 Slot [327] | NOT FINANCIAL TRANSACTION +04:38:23 Slot [333] | NOT FINANCIAL TRANSACTION +04:38:30 Slot [314] | NOT FINANCIAL TRANSACTION +04:38:36 Slot [331] | NOT FINANCIAL TRANSACTION +04:38:42 Slot [321] | NOT FINANCIAL TRANSACTION +04:38:52 Slot [336] | NOT FINANCIAL TRANSACTION +04:39:03 Slot [334] | NOT FINANCIAL TRANSACTION +04:39:18 Slot [337] | NOT FINANCIAL TRANSACTION +04:39:28 Slot [335] | NOT FINANCIAL TRANSACTION +04:39:34 Slot [342] | NOT FINANCIAL TRANSACTION +04:39:38 Slot [320] | NOT FINANCIAL TRANSACTION +04:39:44 Slot [341] | NOT FINANCIAL TRANSACTION +04:39:55 Slot [268] | NOT FINANCIAL TRANSACTION +04:39:56 Slot [345] | NOT FINANCIAL TRANSACTION +04:40:12 Slot [344] | NOT FINANCIAL TRANSACTION +04:40:27 Slot [329] | NOT FINANCIAL TRANSACTION +04:40:33 Slot [339] | NOT FINANCIAL TRANSACTION +04:40:37 Slot [323] | NOT FINANCIAL TRANSACTION +04:40:40 Slot [309] | NOT FINANCIAL TRANSACTION +04:40:49 Slot [348] | NOT FINANCIAL TRANSACTION +04:41:00 Slot [352] | NOT FINANCIAL TRANSACTION +04:41:11 Slot [328] | NOT FINANCIAL TRANSACTION +04:41:21 Slot [350] | NOT FINANCIAL TRANSACTION +04:41:22 Slot [347] | NOT FINANCIAL TRANSACTION +04:41:33 Slot [319] | NOT FINANCIAL TRANSACTION +04:41:38 Slot [356] | NOT FINANCIAL TRANSACTION +04:41:42 Slot [332] | NOT FINANCIAL TRANSACTION +04:41:44 Slot [346] | NOT FINANCIAL TRANSACTION +04:41:55 Slot [357] | NOT FINANCIAL TRANSACTION +04:42:06 Slot [330] | NOT FINANCIAL TRANSACTION +04:42:21 Slot [366] | NOT FINANCIAL TRANSACTION +04:42:36 Slot [343] | NOT FINANCIAL TRANSACTION +04:42:43 Slot [313] | NOT FINANCIAL TRANSACTION +04:42:44 Slot [365] | NOT FINANCIAL TRANSACTION +04:42:52 Slot [340] | NOT FINANCIAL TRANSACTION +04:43:08 Slot [371] | NOT FINANCIAL TRANSACTION +04:43:24 Slot [324] | NOT FINANCIAL TRANSACTION +04:43:34 Slot [378] | NOT FINANCIAL TRANSACTION +04:43:46 Slot [373] | NOT FINANCIAL TRANSACTION +04:43:46 Slot [353] | NOT FINANCIAL TRANSACTION +04:43:48 Slot [355] | NOT FINANCIAL TRANSACTION +04:43:56 Slot [382] | NOT FINANCIAL TRANSACTION +04:44:09 Slot [363] | NOT FINANCIAL TRANSACTION +04:44:23 Slot [358] | NOT FINANCIAL TRANSACTION +04:44:34 Slot [338] | NOT FINANCIAL TRANSACTION +04:44:48 Slot [370] | NOT FINANCIAL TRANSACTION +04:44:49 Slot [360] | NOT FINANCIAL TRANSACTION +04:44:53 Slot [379] | NOT FINANCIAL TRANSACTION +04:44:56 Slot [396] | NOT FINANCIAL TRANSACTION +04:45:00 Slot [354] | NOT FINANCIAL TRANSACTION +04:45:11 Slot [369] | NOT FINANCIAL TRANSACTION +04:45:26 Slot [351] | NOT FINANCIAL TRANSACTION +04:45:37 Slot [374] | NOT FINANCIAL TRANSACTION +04:45:50 Slot [389] | NOT FINANCIAL TRANSACTION +04:45:52 Slot [390] | NOT FINANCIAL TRANSACTION +04:45:59 Slot [376] | NOT FINANCIAL TRANSACTION +04:46:04 Slot [359] | NOT FINANCIAL TRANSACTION +04:46:20 Slot [395] | NOT FINANCIAL TRANSACTION +04:46:21 Slot [361] | NOT FINANCIAL TRANSACTION +04:46:34 Slot [410] | NOT FINANCIAL TRANSACTION +04:46:45 Slot [349] | NOT FINANCIAL TRANSACTION +04:46:52 Slot [383] | NOT FINANCIAL TRANSACTION +04:46:55 Slot [413] | NOT FINANCIAL TRANSACTION +04:47:04 Slot [393] | NOT FINANCIAL TRANSACTION +04:47:05 Slot [397] | NOT FINANCIAL TRANSACTION +04:47:10 Slot [400] | NOT FINANCIAL TRANSACTION +04:47:20 Slot [414] | NOT FINANCIAL TRANSACTION +04:47:31 Slot [399] | NOT FINANCIAL TRANSACTION +04:47:41 Slot [394] | NOT FINANCIAL TRANSACTION +04:47:52 Slot [368] | NOT FINANCIAL TRANSACTION +04:47:54 Slot [387] | NOT FINANCIAL TRANSACTION +04:48:02 Slot [372] | NOT FINANCIAL TRANSACTION +04:48:09 Slot [418] | NOT FINANCIAL TRANSACTION +04:48:17 Slot [380] | NOT FINANCIAL TRANSACTION +04:48:28 Slot [406] | NOT FINANCIAL TRANSACTION +04:48:38 Slot [419] | NOT FINANCIAL TRANSACTION +04:48:50 Slot [411] | NOT FINANCIAL TRANSACTION +04:48:56 Slot [407] | NOT FINANCIAL TRANSACTION +04:49:05 Slot [384] | NOT FINANCIAL TRANSACTION +04:49:14 Slot [401] | NOT FINANCIAL TRANSACTION +04:49:15 Slot [420] | NOT FINANCIAL TRANSACTION +04:49:25 Slot [416] | NOT FINANCIAL TRANSACTION +04:49:40 Slot [415] | NOT FINANCIAL TRANSACTION +04:49:55 Slot [381] | NOT FINANCIAL TRANSACTION +04:49:55 Slot [425] | NOT FINANCIAL TRANSACTION +04:49:56 Slot [398] | NOT FINANCIAL TRANSACTION +04:49:58 Slot [388] | NOT FINANCIAL TRANSACTION +04:50:06 Slot [433] | NOT FINANCIAL TRANSACTION +04:50:17 Slot [364] | NOT FINANCIAL TRANSACTION +04:50:19 Slot [367] | NOT FINANCIAL TRANSACTION +04:50:31 Slot [430] | NOT FINANCIAL TRANSACTION +04:50:42 Slot [441] | NOT FINANCIAL TRANSACTION +04:50:58 Slot [402] | NOT FINANCIAL TRANSACTION +04:51:00 Slot [375] | NOT FINANCIAL TRANSACTION +04:51:08 Slot [408] | NOT FINANCIAL TRANSACTION +04:51:19 Slot [437] | NOT FINANCIAL TRANSACTION +04:51:21 Slot [409] | NOT FINANCIAL TRANSACTION +04:51:24 Slot [385] | NOT FINANCIAL TRANSACTION +04:51:30 Slot [362] | NOT FINANCIAL TRANSACTION +04:51:40 Slot [403] | NOT FINANCIAL TRANSACTION +04:51:51 Slot [392] | NOT FINANCIAL TRANSACTION +04:52:02 Slot [412] | NOT FINANCIAL TRANSACTION +04:52:02 Slot [447] | NOT FINANCIAL TRANSACTION +04:52:13 Slot [450] | NOT FINANCIAL TRANSACTION +04:52:28 Slot [386] | NOT FINANCIAL TRANSACTION +04:52:29 Slot [417] | NOT FINANCIAL TRANSACTION +04:52:38 Slot [391] | NOT FINANCIAL TRANSACTION +04:52:53 Slot [377] | NOT FINANCIAL TRANSACTION +04:53:04 Slot [405] | NOT FINANCIAL TRANSACTION +04:53:04 Slot [443] | NOT FINANCIAL TRANSACTION +04:53:19 Slot [456] | NOT FINANCIAL TRANSACTION +04:53:30 Slot [446] | NOT FINANCIAL TRANSACTION +04:53:34 Slot [435] | NOT FINANCIAL TRANSACTION +04:53:40 Slot [404] | NOT FINANCIAL TRANSACTION +04:53:56 Slot [424] | NOT FINANCIAL TRANSACTION +04:54:06 Slot [429] | NOT FINANCIAL TRANSACTION +04:54:06 Slot [442] | NOT FINANCIAL TRANSACTION +04:54:16 Slot [445] | NOT FINANCIAL TRANSACTION +04:54:31 Slot [438] | NOT FINANCIAL TRANSACTION +04:54:39 Slot [434] | NOT FINANCIAL TRANSACTION +04:54:42 Slot [428] | NOT FINANCIAL TRANSACTION +04:54:53 Slot [427] | NOT FINANCIAL TRANSACTION +04:54:56 Slot [426] | NOT FINANCIAL TRANSACTION +04:55:03 Slot [431] | NOT FINANCIAL TRANSACTION +04:55:08 Slot [451] | NOT FINANCIAL TRANSACTION +04:55:13 Slot [457] | NOT FINANCIAL TRANSACTION +04:55:25 Slot [422] | NOT FINANCIAL TRANSACTION +04:55:35 Slot [462] | NOT FINANCIAL TRANSACTION +04:55:44 Slot [465] | NOT FINANCIAL TRANSACTION +04:55:46 Slot [444] | NOT FINANCIAL TRANSACTION +04:56:02 Slot [421] | NOT FINANCIAL TRANSACTION +04:56:10 Slot [439] | NOT FINANCIAL TRANSACTION +04:56:13 Slot [458] | NOT FINANCIAL TRANSACTION +04:56:22 Slot [423] | NOT FINANCIAL TRANSACTION +04:56:29 Slot [466] | NOT FINANCIAL TRANSACTION +04:56:39 Slot [436] | NOT FINANCIAL TRANSACTION +04:56:49 Slot [459] | NOT FINANCIAL TRANSACTION +04:56:55 Slot [475] | NOT FINANCIAL TRANSACTION +04:57:10 Slot [468] | NOT FINANCIAL TRANSACTION +04:57:12 Slot [452] | NOT FINANCIAL TRANSACTION +04:57:21 Slot [449] | NOT FINANCIAL TRANSACTION +04:57:36 Slot [455] | NOT FINANCIAL TRANSACTION +04:57:46 Slot [440] | NOT FINANCIAL TRANSACTION +04:57:54 Slot [460] | NOT FINANCIAL TRANSACTION +04:57:56 Slot [432] | NOT FINANCIAL TRANSACTION +04:58:02 Slot [453] | NOT FINANCIAL TRANSACTION +04:58:14 Slot [482] | NOT FINANCIAL TRANSACTION +04:58:18 Slot [488] | NOT FINANCIAL TRANSACTION +04:58:29 Slot [470] | NOT FINANCIAL TRANSACTION +04:58:44 Slot [495] | NOT FINANCIAL TRANSACTION +04:58:57 Slot [463] | NOT FINANCIAL TRANSACTION +04:58:59 Slot [490] | NOT FINANCIAL TRANSACTION +04:59:12 Slot [448] | NOT FINANCIAL TRANSACTION +04:59:16 Slot [484] | NOT FINANCIAL TRANSACTION +04:59:28 Slot [471] | NOT FINANCIAL TRANSACTION +04:59:44 Slot [480] | NOT FINANCIAL TRANSACTION +04:59:57 Slot [479] | NOT FINANCIAL TRANSACTION +05:00:00 Slot [498] | NOT FINANCIAL TRANSACTION +05:00:04 Slot [0] | NOT FINANCIAL TRANSACTION +05:00:10 Slot [2] | NOT FINANCIAL TRANSACTION +05:00:18 Slot [493] | NOT FINANCIAL TRANSACTION +05:00:22 Slot [473] | NOT FINANCIAL TRANSACTION +05:00:33 Slot [1] | NOT FINANCIAL TRANSACTION +05:00:44 Slot [4] | NOT FINANCIAL TRANSACTION +05:00:54 Slot [474] | NOT FINANCIAL TRANSACTION +05:01:09 Slot [483] | NOT FINANCIAL TRANSACTION +05:01:09 Slot [476] | NOT FINANCIAL TRANSACTION +05:01:20 Slot [489] | NOT FINANCIAL TRANSACTION +05:01:20 Slot [477] | NOT FINANCIAL TRANSACTION +05:01:22 Slot [472] | NOT FINANCIAL TRANSACTION +05:01:32 Slot [486] | NOT FINANCIAL TRANSACTION +05:01:42 Slot [492] | NOT FINANCIAL TRANSACTION +05:01:58 Slot [6] | NOT FINANCIAL TRANSACTION +05:02:10 Slot [485] | NOT FINANCIAL TRANSACTION +05:02:14 Slot [454] | NOT FINANCIAL TRANSACTION +05:02:20 Slot [14] | NOT FINANCIAL TRANSACTION +05:02:22 Slot [13] | NOT FINANCIAL TRANSACTION +05:02:35 Slot [12] | NOT FINANCIAL TRANSACTION +05:02:46 Slot [16] | NOT FINANCIAL TRANSACTION +05:02:57 Slot [494] | NOT FINANCIAL TRANSACTION +05:03:13 Slot [469] | NOT FINANCIAL TRANSACTION +05:03:19 Slot [22] | NOT FINANCIAL TRANSACTION +05:03:24 Slot [491] | NOT FINANCIAL TRANSACTION +05:03:28 Slot [17] | NOT FINANCIAL TRANSACTION +05:03:39 Slot [499] | NOT FINANCIAL TRANSACTION +05:03:54 Slot [10] | NOT FINANCIAL TRANSACTION +05:04:07 Slot [31] | NOT FINANCIAL TRANSACTION +05:04:21 Slot [23] | NOT FINANCIAL TRANSACTION +05:04:24 Slot [481] | NOT FINANCIAL TRANSACTION +05:04:26 Slot [3] | NOT FINANCIAL TRANSACTION +05:04:32 Slot [29] | NOT FINANCIAL TRANSACTION +05:04:43 Slot [21] | NOT FINANCIAL TRANSACTION +05:04:54 Slot [7] | NOT FINANCIAL TRANSACTION +05:04:57 Slot [33] | NOT FINANCIAL TRANSACTION +05:05:05 Slot [11] | NOT FINANCIAL TRANSACTION +05:05:15 Slot [35] | NOT FINANCIAL TRANSACTION +05:05:26 Slot [30] | NOT FINANCIAL TRANSACTION +05:05:28 Slot [496] | NOT FINANCIAL TRANSACTION +05:05:29 Slot [36] | NOT FINANCIAL TRANSACTION +05:05:37 Slot [37] | NOT FINANCIAL TRANSACTION +05:05:52 Slot [32] | NOT FINANCIAL TRANSACTION +05:06:02 Slot [461] | NOT FINANCIAL TRANSACTION +05:06:14 Slot [9] | NOT FINANCIAL TRANSACTION +05:06:22 Slot [467] | NOT FINANCIAL TRANSACTION +05:06:29 Slot [40] | NOT FINANCIAL TRANSACTION +05:06:30 Slot [45] | NOT FINANCIAL TRANSACTION +05:06:34 Slot [18] | NOT FINANCIAL TRANSACTION +05:06:37 Slot [497] | NOT FINANCIAL TRANSACTION +05:06:46 Slot [28] | NOT FINANCIAL TRANSACTION +05:07:00 Slot [43] | NOT FINANCIAL TRANSACTION +05:07:15 Slot [8] | NOT FINANCIAL TRANSACTION +05:07:26 Slot [50] | NOT FINANCIAL TRANSACTION +05:07:32 Slot [52] | NOT FINANCIAL TRANSACTION +05:07:37 Slot [44] | NOT FINANCIAL TRANSACTION +05:07:39 Slot [61] | NOT FINANCIAL TRANSACTION +05:07:48 Slot [25] | NOT FINANCIAL TRANSACTION +05:07:58 Slot [15] | NOT FINANCIAL TRANSACTION +05:08:12 Slot [55] | NOT FINANCIAL TRANSACTION +05:08:26 Slot [478] | NOT FINANCIAL TRANSACTION +05:08:34 Slot [68] | NOT FINANCIAL TRANSACTION +05:08:36 Slot [63] | NOT FINANCIAL TRANSACTION +05:08:42 Slot [60] | NOT FINANCIAL TRANSACTION +05:08:44 Slot [464] | NOT FINANCIAL TRANSACTION +05:08:46 Slot [41] | NOT FINANCIAL TRANSACTION +05:08:58 Slot [38] | NOT FINANCIAL TRANSACTION +05:09:13 Slot [73] | NOT FINANCIAL TRANSACTION +05:09:24 Slot [487] | NOT FINANCIAL TRANSACTION +05:09:35 Slot [27] | NOT FINANCIAL TRANSACTION +05:09:36 Slot [20] | NOT FINANCIAL TRANSACTION +05:09:47 Slot [48] | NOT FINANCIAL TRANSACTION +05:09:49 Slot [26] | NOT FINANCIAL TRANSACTION +05:09:57 Slot [46] | NOT FINANCIAL TRANSACTION +05:10:01 Slot [19] | NOT FINANCIAL TRANSACTION +05:10:13 Slot [69] | NOT FINANCIAL TRANSACTION +05:10:24 Slot [47] | NOT FINANCIAL TRANSACTION +05:10:35 Slot [58] | NOT FINANCIAL TRANSACTION +05:10:38 Slot [78] | NOT FINANCIAL TRANSACTION +05:10:46 Slot [54] | NOT FINANCIAL TRANSACTION +05:10:54 Slot [81] | NOT FINANCIAL TRANSACTION +05:10:57 Slot [24] | NOT FINANCIAL TRANSACTION +05:11:08 Slot [57] | NOT FINANCIAL TRANSACTION +05:11:18 Slot [34] | NOT FINANCIAL TRANSACTION +05:11:22 Slot [86] | NOT FINANCIAL TRANSACTION +05:11:29 Slot [42] | NOT FINANCIAL TRANSACTION +05:11:40 Slot [88] | NOT FINANCIAL TRANSACTION +05:11:40 Slot [49] | NOT FINANCIAL TRANSACTION +05:11:55 Slot [5] | NOT FINANCIAL TRANSACTION +05:11:59 Slot [89] | NOT FINANCIAL TRANSACTION +05:12:06 Slot [79] | NOT FINANCIAL TRANSACTION +05:12:16 Slot [59] | NOT FINANCIAL TRANSACTION +05:12:27 Slot [84] | NOT FINANCIAL TRANSACTION +05:12:38 Slot [62] | NOT FINANCIAL TRANSACTION +05:12:42 Slot [67] | NOT FINANCIAL TRANSACTION +05:12:48 Slot [99] | NOT FINANCIAL TRANSACTION +05:12:59 Slot [39] | NOT FINANCIAL TRANSACTION +05:13:04 Slot [64] | NOT FINANCIAL TRANSACTION +05:13:12 Slot [51] | NOT FINANCIAL TRANSACTION +05:13:26 Slot [82] | NOT FINANCIAL TRANSACTION +05:13:37 Slot [93] | NOT FINANCIAL TRANSACTION +05:13:44 Slot [56] | NOT FINANCIAL TRANSACTION +05:13:48 Slot [91] | NOT FINANCIAL TRANSACTION +05:13:58 Slot [100] | NOT FINANCIAL TRANSACTION +05:14:09 Slot [77] | NOT FINANCIAL TRANSACTION +05:14:10 Slot [65] | NOT FINANCIAL TRANSACTION +05:14:21 Slot [72] | NOT FINANCIAL TRANSACTION +05:14:34 Slot [106] | NOT FINANCIAL TRANSACTION +05:14:44 Slot [66] | NOT FINANCIAL TRANSACTION +05:14:46 Slot [76] | NOT FINANCIAL TRANSACTION +05:14:55 Slot [90] | NOT FINANCIAL TRANSACTION +05:14:55 Slot [114] | NOT FINANCIAL TRANSACTION +05:15:06 Slot [74] | NOT FINANCIAL TRANSACTION +05:15:14 Slot [107] | NOT FINANCIAL TRANSACTION +05:15:22 Slot [83] | NOT FINANCIAL TRANSACTION +05:15:33 Slot [92] | NOT FINANCIAL TRANSACTION +05:15:44 Slot [118] | NOT FINANCIAL TRANSACTION +05:15:48 Slot [121] | NOT FINANCIAL TRANSACTION +05:15:55 Slot [113] | NOT FINANCIAL TRANSACTION +05:16:05 Slot [108] | NOT FINANCIAL TRANSACTION +05:16:15 Slot [94] | NOT FINANCIAL TRANSACTION +05:16:19 Slot [115] | NOT FINANCIAL TRANSACTION +05:16:20 Slot [127] | NOT FINANCIAL TRANSACTION +05:16:26 Slot [125] | NOT FINANCIAL TRANSACTION +05:16:41 Slot [95] | NOT FINANCIAL TRANSACTION +05:16:50 Slot [75] | NOT FINANCIAL TRANSACTION +05:16:52 Slot [53] | NOT FINANCIAL TRANSACTION +05:17:02 Slot [134] | NOT FINANCIAL TRANSACTION +05:17:12 Slot [96] | NOT FINANCIAL TRANSACTION +05:17:23 Slot [98] | NOT FINANCIAL TRANSACTION +05:17:24 Slot [103] | NOT FINANCIAL TRANSACTION +05:17:34 Slot [71] | NOT FINANCIAL TRANSACTION +05:17:49 Slot [101] | NOT FINANCIAL TRANSACTION +05:17:52 Slot [102] | NOT FINANCIAL TRANSACTION +05:18:00 Slot [109] | NOT FINANCIAL TRANSACTION +05:18:15 Slot [70] | NOT FINANCIAL TRANSACTION +05:18:26 Slot [136] | NOT FINANCIAL TRANSACTION +05:18:29 Slot [131] | NOT FINANCIAL TRANSACTION +05:18:37 Slot [129] | NOT FINANCIAL TRANSACTION +05:18:48 Slot [85] | NOT FINANCIAL TRANSACTION +05:18:54 Slot [105] | NOT FINANCIAL TRANSACTION +05:18:58 Slot [87] | NOT FINANCIAL TRANSACTION +05:19:09 Slot [104] | NOT FINANCIAL TRANSACTION +05:19:24 Slot [138] | NOT FINANCIAL TRANSACTION +05:19:26 Slot [97] | NOT FINANCIAL TRANSACTION +05:19:34 Slot [117] | NOT FINANCIAL TRANSACTION +05:19:35 Slot [112] | NOT FINANCIAL TRANSACTION +05:19:46 Slot [140] | NOT FINANCIAL TRANSACTION +05:19:55 Slot [116] | NOT FINANCIAL TRANSACTION +05:19:56 Slot [111] | NOT FINANCIAL TRANSACTION +05:20:02 Slot [124] | NOT FINANCIAL TRANSACTION +05:20:12 Slot [147] | NOT FINANCIAL TRANSACTION +05:20:28 Slot [80] | NOT FINANCIAL TRANSACTION +05:20:39 Slot [123] | NOT FINANCIAL TRANSACTION +05:20:43 Slot [122] | NOT FINANCIAL TRANSACTION +05:20:58 Slot [161] | NOT FINANCIAL TRANSACTION +05:20:59 Slot [154] | NOT FINANCIAL TRANSACTION +05:21:13 Slot [162] | NOT FINANCIAL TRANSACTION +05:21:20 Slot [132] | NOT FINANCIAL TRANSACTION +05:21:24 Slot [145] | NOT FINANCIAL TRANSACTION +05:21:34 Slot [143] | NOT FINANCIAL TRANSACTION +05:21:44 Slot [158] | NOT FINANCIAL TRANSACTION +05:21:45 Slot [120] | NOT FINANCIAL TRANSACTION +05:22:00 Slot [150] | NOT FINANCIAL TRANSACTION +05:22:02 Slot [166] | NOT FINANCIAL TRANSACTION +05:22:12 Slot [130] | NOT FINANCIAL TRANSACTION +05:22:28 Slot [133] | NOT FINANCIAL TRANSACTION +05:22:43 Slot [142] | NOT FINANCIAL TRANSACTION +05:22:49 Slot [153] | NOT FINANCIAL TRANSACTION +05:22:58 Slot [110] | NOT FINANCIAL TRANSACTION +05:23:02 Slot [167] | NOT FINANCIAL TRANSACTION +05:23:09 Slot [137] | NOT FINANCIAL TRANSACTION +05:23:17 Slot [128] | NOT FINANCIAL TRANSACTION +05:23:24 Slot [146] | NOT FINANCIAL TRANSACTION +05:23:35 Slot [159] | NOT FINANCIAL TRANSACTION +05:23:49 Slot [175] | NOT FINANCIAL TRANSACTION +05:23:54 Slot [170] | NOT FINANCIAL TRANSACTION +05:24:04 Slot [141] | NOT FINANCIAL TRANSACTION +05:24:07 Slot [151] | NOT FINANCIAL TRANSACTION +05:24:20 Slot [164] | NOT FINANCIAL TRANSACTION +05:24:35 Slot [157] | NOT FINANCIAL TRANSACTION +05:24:51 Slot [172] | NOT FINANCIAL TRANSACTION +05:24:55 Slot [148] | NOT FINANCIAL TRANSACTION +05:24:59 Slot [182] | NOT FINANCIAL TRANSACTION +05:25:02 Slot [186] | NOT FINANCIAL TRANSACTION +05:25:06 Slot [171] | NOT FINANCIAL TRANSACTION +05:25:13 Slot [126] | NOT FINANCIAL TRANSACTION +05:25:24 Slot [119] | NOT FINANCIAL TRANSACTION +05:25:35 Slot [139] | NOT FINANCIAL TRANSACTION +05:25:50 Slot [176] | NOT FINANCIAL TRANSACTION +05:26:00 Slot [156] | NOT FINANCIAL TRANSACTION +05:26:04 Slot [202] | NOT FINANCIAL TRANSACTION +05:26:08 Slot [187] | NOT FINANCIAL TRANSACTION +05:26:16 Slot [163] | NOT FINANCIAL TRANSACTION +05:26:20 Slot [203] | NOT FINANCIAL TRANSACTION +05:26:32 Slot [160] | NOT FINANCIAL TRANSACTION +05:26:43 Slot [179] | NOT FINANCIAL TRANSACTION +05:26:58 Slot [192] | NOT FINANCIAL TRANSACTION +05:27:09 Slot [144] | NOT FINANCIAL TRANSACTION +05:27:09 Slot [204] | NOT FINANCIAL TRANSACTION +05:27:10 Slot [135] | NOT FINANCIAL TRANSACTION +05:27:24 Slot [152] | NOT FINANCIAL TRANSACTION +05:27:35 Slot [196] | NOT FINANCIAL TRANSACTION +05:27:46 Slot [191] | NOT FINANCIAL TRANSACTION +05:27:57 Slot [190] | NOT FINANCIAL TRANSACTION +05:28:08 Slot [155] | NOT FINANCIAL TRANSACTION +05:28:12 Slot [181] | NOT FINANCIAL TRANSACTION +05:28:14 Slot [201] | NOT FINANCIAL TRANSACTION +05:28:19 Slot [198] | NOT FINANCIAL TRANSACTION +05:28:34 Slot [194] | NOT FINANCIAL TRANSACTION +05:28:45 Slot [214] | NOT FINANCIAL TRANSACTION +05:28:56 Slot [165] | NOT FINANCIAL TRANSACTION +05:29:07 Slot [195] | NOT FINANCIAL TRANSACTION +05:29:14 Slot [184] | NOT FINANCIAL TRANSACTION +05:29:18 Slot [209] | NOT FINANCIAL TRANSACTION +05:29:19 Slot [213] | NOT FINANCIAL TRANSACTION +05:29:29 Slot [178] | NOT FINANCIAL TRANSACTION +05:29:44 Slot [208] | NOT FINANCIAL TRANSACTION +05:29:55 Slot [193] | NOT FINANCIAL TRANSACTION +05:29:59 Slot [206] | NOT FINANCIAL TRANSACTION +05:30:12 Slot [185] | NOT FINANCIAL TRANSACTION +05:30:12 Slot [221] | NOT FINANCIAL TRANSACTION +05:30:16 Slot [211] | NOT FINANCIAL TRANSACTION +05:30:24 Slot [183] | NOT FINANCIAL TRANSACTION +05:30:26 Slot [212] | NOT FINANCIAL TRANSACTION +05:30:37 Slot [207] | NOT FINANCIAL TRANSACTION +05:30:47 Slot [149] | NOT FINANCIAL TRANSACTION +05:30:57 Slot [174] | NOT FINANCIAL TRANSACTION +05:31:08 Slot [168] | NOT FINANCIAL TRANSACTION +05:31:18 Slot [180] | NOT FINANCIAL TRANSACTION +05:31:20 Slot [189] | NOT FINANCIAL TRANSACTION +05:31:25 Slot [169] | NOT FINANCIAL TRANSACTION +05:31:29 Slot [222] | NOT FINANCIAL TRANSACTION +05:31:40 Slot [225] | NOT FINANCIAL TRANSACTION +05:31:51 Slot [232] | NOT FINANCIAL TRANSACTION +05:32:07 Slot [205] | NOT FINANCIAL TRANSACTION +05:32:20 Slot [230] | NOT FINANCIAL TRANSACTION +05:32:23 Slot [188] | NOT FINANCIAL TRANSACTION +05:32:33 Slot [173] | NOT FINANCIAL TRANSACTION +05:32:34 Slot [229] | NOT FINANCIAL TRANSACTION +05:32:44 Slot [223] | NOT FINANCIAL TRANSACTION +05:32:55 Slot [177] | NOT FINANCIAL TRANSACTION +05:33:10 Slot [215] | NOT FINANCIAL TRANSACTION +05:33:21 Slot [243] | NOT FINANCIAL TRANSACTION +05:33:22 Slot [235] | NOT FINANCIAL TRANSACTION +05:33:32 Slot [246] | NOT FINANCIAL TRANSACTION +05:33:39 Slot [242] | NOT FINANCIAL TRANSACTION +05:33:43 Slot [248] | NOT FINANCIAL TRANSACTION +05:33:59 Slot [244] | NOT FINANCIAL TRANSACTION +05:34:10 Slot [227] | NOT FINANCIAL TRANSACTION +05:34:22 Slot [250] | NOT FINANCIAL TRANSACTION +05:34:24 Slot [251] | NOT FINANCIAL TRANSACTION +05:34:38 Slot [200] | NOT FINANCIAL TRANSACTION +05:34:44 Slot [255] | NOT FINANCIAL TRANSACTION +05:34:48 Slot [226] | NOT FINANCIAL TRANSACTION +05:34:54 Slot [233] | NOT FINANCIAL TRANSACTION +05:34:59 Slot [238] | NOT FINANCIAL TRANSACTION +05:35:10 Slot [216] | NOT FINANCIAL TRANSACTION +05:35:21 Slot [234] | NOT FINANCIAL TRANSACTION +05:35:26 Slot [237] | NOT FINANCIAL TRANSACTION +05:35:32 Slot [253] | NOT FINANCIAL TRANSACTION +05:35:47 Slot [210] | NOT FINANCIAL TRANSACTION +05:35:49 Slot [220] | NOT FINANCIAL TRANSACTION +05:35:58 Slot [249] | NOT FINANCIAL TRANSACTION +05:36:14 Slot [260] | NOT FINANCIAL TRANSACTION +05:36:20 Slot [199] | NOT FINANCIAL TRANSACTION +05:36:25 Slot [259] | NOT FINANCIAL TRANSACTION +05:36:28 Slot [263] | NOT FINANCIAL TRANSACTION +05:36:41 Slot [270] | NOT FINANCIAL TRANSACTION +05:36:52 Slot [261] | NOT FINANCIAL TRANSACTION +05:36:54 Slot [269] | NOT FINANCIAL TRANSACTION +05:37:03 Slot [256] | NOT FINANCIAL TRANSACTION +05:37:14 Slot [197] | NOT FINANCIAL TRANSACTION +05:37:30 Slot [240] | NOT FINANCIAL TRANSACTION +05:37:31 Slot [228] | NOT FINANCIAL TRANSACTION +05:37:42 Slot [265] | NOT FINANCIAL TRANSACTION +05:37:54 Slot [275] | NOT FINANCIAL TRANSACTION +05:37:59 Slot [247] | NOT FINANCIAL TRANSACTION +05:38:11 Slot [218] | NOT FINANCIAL TRANSACTION +05:38:26 Slot [274] | NOT FINANCIAL TRANSACTION +05:38:32 Slot [264] | NOT FINANCIAL TRANSACTION +05:38:37 Slot [231] | NOT FINANCIAL TRANSACTION +05:38:53 Slot [279] | NOT FINANCIAL TRANSACTION +05:39:04 Slot [239] | NOT FINANCIAL TRANSACTION +05:39:08 Slot [254] | NOT FINANCIAL TRANSACTION +05:39:23 Slot [273] | NOT FINANCIAL TRANSACTION +05:39:34 Slot [266] | NOT FINANCIAL TRANSACTION +05:39:34 Slot [272] | NOT FINANCIAL TRANSACTION +05:39:45 Slot [282] | NOT FINANCIAL TRANSACTION +05:39:54 Slot [241] | NOT FINANCIAL TRANSACTION +05:39:56 Slot [252] | NOT FINANCIAL TRANSACTION +05:39:59 Slot [245] | NOT FINANCIAL TRANSACTION +05:40:09 Slot [276] | NOT FINANCIAL TRANSACTION +05:40:12 Slot [280] | NOT FINANCIAL TRANSACTION +05:40:23 Slot [284] | NOT FINANCIAL TRANSACTION +05:40:36 Slot [258] | NOT FINANCIAL TRANSACTION +05:40:38 Slot [219] | NOT FINANCIAL TRANSACTION +05:40:49 Slot [224] | NOT FINANCIAL TRANSACTION +05:40:57 Slot [287] | NOT FINANCIAL TRANSACTION +05:41:02 Slot [290] | NOT FINANCIAL TRANSACTION +05:41:14 Slot [288] | NOT FINANCIAL TRANSACTION +05:41:16 Slot [271] | NOT FINANCIAL TRANSACTION +05:41:20 Slot [277] | NOT FINANCIAL TRANSACTION +05:41:27 Slot [267] | NOT FINANCIAL TRANSACTION +05:41:37 Slot [236] | NOT FINANCIAL TRANSACTION +05:41:38 Slot [217] | NOT FINANCIAL TRANSACTION +05:41:53 Slot [293] | NOT FINANCIAL TRANSACTION +05:42:04 Slot [278] | NOT FINANCIAL TRANSACTION +05:42:15 Slot [294] | NOT FINANCIAL TRANSACTION +05:42:19 Slot [298] | NOT FINANCIAL TRANSACTION +05:42:32 Slot [257] | NOT FINANCIAL TRANSACTION +05:42:40 Slot [303] | NOT FINANCIAL TRANSACTION +05:42:47 Slot [299] | NOT FINANCIAL TRANSACTION +05:42:57 Slot [302] | NOT FINANCIAL TRANSACTION +05:43:10 Slot [292] | NOT FINANCIAL TRANSACTION +05:43:24 Slot [300] | NOT FINANCIAL TRANSACTION +05:43:24 Slot [281] | NOT FINANCIAL TRANSACTION +05:43:34 Slot [295] | NOT FINANCIAL TRANSACTION +05:43:42 Slot [308] | NOT FINANCIAL TRANSACTION +05:43:46 Slot [262] | NOT FINANCIAL TRANSACTION +05:43:56 Slot [296] | NOT FINANCIAL TRANSACTION +05:44:06 Slot [283] | NOT FINANCIAL TRANSACTION +05:44:17 Slot [311] | NOT FINANCIAL TRANSACTION +05:44:29 Slot [312] | NOT FINANCIAL TRANSACTION +05:44:33 Slot [316] | NOT FINANCIAL TRANSACTION +05:44:44 Slot [306] | NOT FINANCIAL TRANSACTION +05:44:49 Slot [286] | NOT FINANCIAL TRANSACTION +05:44:54 Slot [307] | NOT FINANCIAL TRANSACTION +05:45:05 Slot [317] | NOT FINANCIAL TRANSACTION +05:45:16 Slot [310] | NOT FINANCIAL TRANSACTION +05:45:31 Slot [318] | NOT FINANCIAL TRANSACTION +05:45:34 Slot [289] | NOT FINANCIAL TRANSACTION +05:45:42 Slot [315] | NOT FINANCIAL TRANSACTION +05:45:46 Slot [322] | NOT FINANCIAL TRANSACTION +05:45:53 Slot [304] | NOT FINANCIAL TRANSACTION +05:46:09 Slot [325] | NOT FINANCIAL TRANSACTION +05:46:19 Slot [285] | NOT FINANCIAL TRANSACTION +05:46:19 Slot [297] | NOT FINANCIAL TRANSACTION +05:46:31 +Slot[291] 0200 301000 6688990601483900 ------------- 14 266527 031922452526 5079222665270369SLVL6688990601483900 507922266527 782871 180893 S +05:46:39 Slot [326] | NOT FINANCIAL TRANSACTION +05:46:40 Slot [305] | NOT FINANCIAL TRANSACTION +05:46:48 Slot [301] | NOT FINANCIAL TRANSACTION +05:46:51 Slot [327] | NOT FINANCIAL TRANSACTION +05:47:02 Slot [333] | NOT FINANCIAL TRANSACTION +05:47:15 Slot [331] | NOT FINANCIAL TRANSACTION +05:47:19 +Slot[314] 0200 010000 6688990601483900 ------------- 14 266529 000100000000 5079222665290369SLVL6688990601483900 507922266529 675140 180893 S +05:47:31 Slot [321] | NOT FINANCIAL TRANSACTION +05:47:40 +Slot[336] 0200 011000 6213541000355845 ------------- 51 266531 000002000000 5079222665310344SVKV6213541000355845 507922266531 470985 180893 S +05:47:44 Slot [334] | NOT FINANCIAL TRANSACTION +05:47:50 Slot [337] | NOT FINANCIAL TRANSACTION +05:47:52 Slot [335] | NOT FINANCIAL TRANSACTION +05:48:01 +Slot[342] 0200 301000 6213541000355845 ------------- 00 266532 031922470526 5079222665320344SVKV6213541000355845 507922266532 479056 180893 S +05:48:10 +Slot[320] 0200 010000 6688990601483900 ------------- 14 266534 000010000000 5079222665340369SLVL6688990601483900 507922266534 470671 180893 S +05:48:20 Slot [341] | NOT FINANCIAL TRANSACTION +05:48:31 Slot [268] | NOT FINANCIAL TRANSACTION +05:48:37 +Slot[345] 0200 301000 6688990050007655 ------------- 00 662356 000000000000 507904723721180011006688990050007655 507904723721 099426 621354 S +05:48:46 Slot [344] | NOT FINANCIAL TRANSACTION +05:48:49 Slot [329] | NOT FINANCIAL TRANSACTION +05:48:52 Slot [339] | NOT FINANCIAL TRANSACTION +05:49:01 Slot [323] | NOT FINANCIAL TRANSACTION +05:49:12 Slot [309] | NOT FINANCIAL TRANSACTION +05:49:25 Slot [348] | NOT FINANCIAL TRANSACTION +05:49:36 Slot [352] | NOT FINANCIAL TRANSACTION +05:49:46 Slot [328] | NOT FINANCIAL TRANSACTION +05:49:54 Slot [350] | NOT FINANCIAL TRANSACTION +05:49:54 Slot [347] | NOT FINANCIAL TRANSACTION +05:49:55 Slot [319] | NOT FINANCIAL TRANSACTION +05:50:02 Slot [332] | NOT FINANCIAL TRANSACTION +05:50:06 +Slot[356] 0200 010000 6213543000243492 ------------- 00 928611 000030000000 507901690915030020036213543000243492 507901690915 384493 668899 S +05:50:18 Slot [346] | NOT FINANCIAL TRANSACTION +05:50:29 Slot [357] | NOT FINANCIAL TRANSACTION +05:50:39 Slot [330] | NOT FINANCIAL TRANSACTION +05:50:49 Slot [366] | NOT FINANCIAL TRANSACTION +05:50:56 Slot [343] | NOT FINANCIAL TRANSACTION +05:51:00 Slot [313] | NOT FINANCIAL TRANSACTION +05:51:00 Slot [365] | NOT FINANCIAL TRANSACTION +05:51:15 Slot [340] | NOT FINANCIAL TRANSACTION +05:51:20 Slot [371] | NOT FINANCIAL TRANSACTION +05:51:26 Slot [324] | NOT FINANCIAL TRANSACTION +05:51:37 Slot [378] | NOT FINANCIAL TRANSACTION +05:51:43 Slot [373] | NOT FINANCIAL TRANSACTION +05:51:47 Slot [353] | NOT FINANCIAL TRANSACTION +05:51:58 Slot [355] | NOT FINANCIAL TRANSACTION +05:52:03 Slot [382] | NOT FINANCIAL TRANSACTION +05:52:05 Slot [363] | NOT FINANCIAL TRANSACTION +05:52:14 Slot [358] | NOT FINANCIAL TRANSACTION +05:52:25 Slot [338] | NOT FINANCIAL TRANSACTION +05:52:36 Slot [370] | NOT FINANCIAL TRANSACTION +05:52:51 Slot [360] | NOT FINANCIAL TRANSACTION +05:53:00 Slot [379] | NOT FINANCIAL TRANSACTION +05:53:07 Slot [396] | NOT FINANCIAL TRANSACTION +05:53:10 Slot [354] | NOT FINANCIAL TRANSACTION +05:53:18 Slot [351] | NOT FINANCIAL TRANSACTION +05:53:23 +Slot[369] 0200 301000 6688990040024497 ------------- 00 662404 000000000000 507902834990010077006688990040024497 507902834990 328155 621354 S +05:53:29 Slot [374] | NOT FINANCIAL TRANSACTION +05:53:39 Slot [390] | NOT FINANCIAL TRANSACTION +05:53:44 +Slot[389] 0200 010000 6213541000042609 ------------- 00 266537 000100000000 5079222665370115LPBR6213541000042609 507922266537 213249 180893 S +05:53:57 Slot [376] | NOT FINANCIAL TRANSACTION +05:54:02 Slot [359] | NOT FINANCIAL TRANSACTION +05:54:12 Slot [395] | NOT FINANCIAL TRANSACTION +05:54:15 Slot [361] | NOT FINANCIAL TRANSACTION +05:54:25 +Slot[410] 0200 011000 6688990040024497 ------------- 55 662412 000050000000 507902834992010077006688990040024497 507902834992 823563 621354 S +05:54:27 Slot [349] | NOT FINANCIAL TRANSACTION +05:54:39 Slot [413] | NOT FINANCIAL TRANSACTION +05:54:43 +Slot[383] 0200 011000 6688990040024497 ------------- 00 662415 000050000000 507902834994010077006688990040024497 507902834994 709459 621354 S +05:54:50 Slot [393] | NOT FINANCIAL TRANSACTION +05:54:54 Slot [397] | NOT FINANCIAL TRANSACTION +05:55:01 Slot [400] | NOT FINANCIAL TRANSACTION +05:55:04 Slot [414] | NOT FINANCIAL TRANSACTION +05:55:16 Slot [399] | NOT FINANCIAL TRANSACTION +05:55:20 Slot [394] | NOT FINANCIAL TRANSACTION +05:55:26 Slot [368] | NOT FINANCIAL TRANSACTION +05:55:37 Slot [387] | NOT FINANCIAL TRANSACTION +05:55:48 Slot [372] | NOT FINANCIAL TRANSACTION +05:55:58 Slot [418] | NOT FINANCIAL TRANSACTION +05:56:06 Slot [380] | NOT FINANCIAL TRANSACTION +05:56:14 Slot [406] | NOT FINANCIAL TRANSACTION +05:56:20 Slot [419] | NOT FINANCIAL TRANSACTION +05:56:25 Slot [411] | NOT FINANCIAL TRANSACTION +05:56:26 Slot [407] | NOT FINANCIAL TRANSACTION +05:56:41 Slot [384] | NOT FINANCIAL TRANSACTION +05:56:41 Slot [401] | NOT FINANCIAL TRANSACTION +05:56:56 Slot [420] | NOT FINANCIAL TRANSACTION +05:57:08 Slot [416] | NOT FINANCIAL TRANSACTION +05:57:13 Slot [415] | NOT FINANCIAL TRANSACTION +05:57:23 Slot [381] | NOT FINANCIAL TRANSACTION +05:57:30 Slot [425] | NOT FINANCIAL TRANSACTION +05:57:34 Slot [398] | NOT FINANCIAL TRANSACTION +05:57:44 Slot [388] | NOT FINANCIAL TRANSACTION +05:57:58 Slot [433] | NOT FINANCIAL TRANSACTION +05:58:10 Slot [364] | NOT FINANCIAL TRANSACTION +05:58:12 Slot [367] | NOT FINANCIAL TRANSACTION +05:58:28 Slot [430] | NOT FINANCIAL TRANSACTION +05:58:35 Slot [441] | NOT FINANCIAL TRANSACTION +05:58:39 Slot [402] | NOT FINANCIAL TRANSACTION +05:58:50 Slot [375] | NOT FINANCIAL TRANSACTION +05:59:01 Slot [408] | NOT FINANCIAL TRANSACTION +05:59:12 Slot [409] | NOT FINANCIAL TRANSACTION +05:59:12 Slot [437] | NOT FINANCIAL TRANSACTION +05:59:23 Slot [385] | NOT FINANCIAL TRANSACTION +05:59:34 Slot [362] | NOT FINANCIAL TRANSACTION +05:59:40 Slot [403] | NOT FINANCIAL TRANSACTION +05:59:48 Slot [392] | NOT FINANCIAL TRANSACTION +05:59:54 Slot [412] | NOT FINANCIAL TRANSACTION +05:59:59 Slot [447] | NOT FINANCIAL TRANSACTION +06:00:10 Slot [450] | NOT FINANCIAL TRANSACTION +06:00:14 Slot [386] | NOT FINANCIAL TRANSACTION +06:00:20 Slot [417] | NOT FINANCIAL TRANSACTION +06:00:38 Slot [391] | NOT FINANCIAL TRANSACTION +06:00:45 Slot [377] | NOT FINANCIAL TRANSACTION +06:00:53 Slot [405] | NOT FINANCIAL TRANSACTION +06:01:09 Slot [443] | NOT FINANCIAL TRANSACTION +06:01:16 Slot [456] | NOT FINANCIAL TRANSACTION +06:01:20 Slot [446] | NOT FINANCIAL TRANSACTION +06:01:24 Slot [435] | NOT FINANCIAL TRANSACTION +06:01:34 +Slot[404] 0200 301000 6213544002076641 ------------- 00 928643 000000000000 507901690919030020036213544002076641 507901690919 248524 668899 S +06:01:39 Slot [424] | NOT FINANCIAL TRANSACTION +06:01:50 Slot [429] | NOT FINANCIAL TRANSACTION +06:01:50 Slot [442] | NOT FINANCIAL TRANSACTION +06:02:00 Slot [445] | NOT FINANCIAL TRANSACTION +06:02:12 Slot [438] | NOT FINANCIAL TRANSACTION +06:02:18 Slot [434] | NOT FINANCIAL TRANSACTION +06:02:27 Slot [428] | NOT FINANCIAL TRANSACTION +06:02:29 Slot [427] | NOT FINANCIAL TRANSACTION +06:02:37 +Slot[426] 0200 010000 6213544002076641 ------------- 00 928650 000030000000 507901690921030020036213544002076641 507901690921 598334 668899 S +06:02:38 Slot [431] | NOT FINANCIAL TRANSACTION +06:02:48 Slot [451] | NOT FINANCIAL TRANSACTION +06:02:55 Slot [457] | NOT FINANCIAL TRANSACTION +06:02:59 Slot [422] | NOT FINANCIAL TRANSACTION +06:03:10 Slot [462] | NOT FINANCIAL TRANSACTION +06:03:20 Slot [465] | NOT FINANCIAL TRANSACTION +06:03:21 Slot [444] | NOT FINANCIAL TRANSACTION +06:03:32 Slot [421] | NOT FINANCIAL TRANSACTION +06:03:46 Slot [439] | NOT FINANCIAL TRANSACTION +06:04:00 Slot [458] | NOT FINANCIAL TRANSACTION +06:04:00 Slot [423] | NOT FINANCIAL TRANSACTION +06:04:11 Slot [436] | NOT FINANCIAL TRANSACTION +06:04:16 +Slot[466] 0200 010000 6213541000005002 ------------- 00 266547 000050000000 5079232665470441VT526213541000005002 507923266547 398972 180893 S +06:04:22 Slot [459] | NOT FINANCIAL TRANSACTION +06:04:28 Slot [475] | NOT FINANCIAL TRANSACTION +06:04:39 Slot [468] | NOT FINANCIAL TRANSACTION +06:04:49 Slot [452] | NOT FINANCIAL TRANSACTION +06:04:54 Slot [449] | NOT FINANCIAL TRANSACTION +06:04:59 Slot [455] | NOT FINANCIAL TRANSACTION +06:05:05 Slot [440] | NOT FINANCIAL TRANSACTION +06:05:11 Slot [460] | NOT FINANCIAL TRANSACTION +06:05:24 Slot [432] | NOT FINANCIAL TRANSACTION +06:05:27 Slot [453] | NOT FINANCIAL TRANSACTION +06:05:38 Slot [482] | NOT FINANCIAL TRANSACTION +06:05:48 Slot [488] | NOT FINANCIAL TRANSACTION +06:05:58 Slot [470] | NOT FINANCIAL TRANSACTION +06:06:10 Slot [495] | NOT FINANCIAL TRANSACTION +06:06:11 Slot [463] | NOT FINANCIAL TRANSACTION +06:06:20 Slot [490] | NOT FINANCIAL TRANSACTION +06:06:26 Slot [484] | NOT FINANCIAL TRANSACTION +06:06:26 Slot [448] | NOT FINANCIAL TRANSACTION +06:06:37 Slot [471] | NOT FINANCIAL TRANSACTION +06:06:49 Slot [480] | NOT FINANCIAL TRANSACTION +06:07:04 Slot [479] | NOT FINANCIAL TRANSACTION +06:07:15 Slot [498] | NOT FINANCIAL TRANSACTION +06:07:19 Slot [0] | NOT FINANCIAL TRANSACTION +06:07:28 Slot [2] | NOT FINANCIAL TRANSACTION +06:07:30 Slot [493] | NOT FINANCIAL TRANSACTION +06:07:41 Slot [473] | NOT FINANCIAL TRANSACTION +06:07:52 Slot [1] | NOT FINANCIAL TRANSACTION +06:08:03 Slot [4] | NOT FINANCIAL TRANSACTION +06:08:18 Slot [474] | NOT FINANCIAL TRANSACTION +06:08:20 Slot [483] | NOT FINANCIAL TRANSACTION +06:08:29 Slot [489] | NOT FINANCIAL TRANSACTION +06:08:30 Slot [476] | NOT FINANCIAL TRANSACTION +06:08:45 Slot [472] | NOT FINANCIAL TRANSACTION +06:08:48 +Slot[477] 0200 011000 6213545000101497 ------------- 55 200281 000010000000 507906200281000022016213545000101497 507906200281 466361 198901 S +06:09:01 Slot [486] | NOT FINANCIAL TRANSACTION +06:09:11 Slot [492] | NOT FINANCIAL TRANSACTION +06:09:22 Slot [6] | NOT FINANCIAL TRANSACTION +06:09:25 Slot [485] | NOT FINANCIAL TRANSACTION +06:09:32 Slot [454] | NOT FINANCIAL TRANSACTION +06:09:38 Slot [14] | NOT FINANCIAL TRANSACTION +06:09:48 Slot [13] | NOT FINANCIAL TRANSACTION +06:09:54 Slot [12] | NOT FINANCIAL TRANSACTION +06:09:59 Slot [16] | NOT FINANCIAL TRANSACTION +06:10:07 +Slot[494] 0200 011000 6213545000101497 ------------- 00 200300 000010000000 507906200300000022016213545000101497 507906200300 935868 198901 S +06:10:09 +Slot[469] 0200 010000 6213545001065311 ------------- 00 266559 000050000000 5079232665590324BKDT6213545001065311 507923266559 143222 180893 S +06:10:21 Slot [22] | NOT FINANCIAL TRANSACTION +06:10:30 Slot [491] | NOT FINANCIAL TRANSACTION +06:10:31 Slot [17] | NOT FINANCIAL TRANSACTION +06:10:34 Slot [499] | NOT FINANCIAL TRANSACTION +06:10:42 Slot [10] | NOT FINANCIAL TRANSACTION +06:10:52 +Slot[31] 0200 010000 6213545001065295 ------------- 00 266563 000100000000 5079232665630324BKDT6213545001065295 507923266563 757202 180893 S +06:11:03 Slot [23] | NOT FINANCIAL TRANSACTION +06:11:16 Slot [481] | NOT FINANCIAL TRANSACTION +06:11:20 Slot [3] | NOT FINANCIAL TRANSACTION +06:11:29 Slot [29] | NOT FINANCIAL TRANSACTION +06:11:35 Slot [7] | NOT FINANCIAL TRANSACTION +06:11:36 Slot [21] | NOT FINANCIAL TRANSACTION +06:11:46 Slot [33] | NOT FINANCIAL TRANSACTION +06:12:01 Slot [35] | NOT FINANCIAL TRANSACTION +06:12:03 +Slot[11] 0200 010000 6213544001717831 ------------- 00 266567 000010000000 5079232665670401XSBR6213544001717831 507923266567 251739 180893 S +06:12:12 Slot [30] | NOT FINANCIAL TRANSACTION +06:12:28 Slot [496] | NOT FINANCIAL TRANSACTION +06:12:38 Slot [36] | NOT FINANCIAL TRANSACTION +06:12:39 Slot [37] | NOT FINANCIAL TRANSACTION +06:12:40 Slot [32] | NOT FINANCIAL TRANSACTION +06:12:50 Slot [461] | NOT FINANCIAL TRANSACTION +06:13:05 Slot [9] | NOT FINANCIAL TRANSACTION +06:13:15 Slot [467] | NOT FINANCIAL TRANSACTION +06:13:20 Slot [40] | NOT FINANCIAL TRANSACTION +06:13:23 Slot [45] | NOT FINANCIAL TRANSACTION +06:13:30 Slot [18] | NOT FINANCIAL TRANSACTION +06:13:40 Slot [497] | NOT FINANCIAL TRANSACTION +06:13:41 Slot [28] | NOT FINANCIAL TRANSACTION +06:13:45 Slot [43] | NOT FINANCIAL TRANSACTION +06:13:52 Slot [8] | NOT FINANCIAL TRANSACTION +06:14:03 Slot [50] | NOT FINANCIAL TRANSACTION +06:14:14 Slot [52] | NOT FINANCIAL TRANSACTION +06:14:25 Slot [44] | NOT FINANCIAL TRANSACTION +06:14:40 Slot [25] | NOT FINANCIAL TRANSACTION +06:14:42 Slot [61] | NOT FINANCIAL TRANSACTION +06:14:50 Slot [15] | NOT FINANCIAL TRANSACTION +06:14:51 Slot [55] | NOT FINANCIAL TRANSACTION +06:14:54 Slot [478] | NOT FINANCIAL TRANSACTION +06:15:01 Slot [68] | NOT FINANCIAL TRANSACTION +06:15:13 Slot [63] | NOT FINANCIAL TRANSACTION +06:15:27 Slot [60] | NOT FINANCIAL TRANSACTION +06:15:37 Slot [41] | NOT FINANCIAL TRANSACTION +06:15:40 +Slot[464] 0200 302000 6213545000760136 ------------- 00 266572 031923144326 5079232665720112CPBR6213545000760136 507923266572 542443 180893 S +06:15:44 Slot [38] | NOT FINANCIAL TRANSACTION +06:15:54 Slot [73] | NOT FINANCIAL TRANSACTION +06:15:55 Slot [487] | NOT FINANCIAL TRANSACTION +06:16:05 Slot [27] | NOT FINANCIAL TRANSACTION +06:16:17 Slot [20] | NOT FINANCIAL TRANSACTION +06:16:20 Slot [26] | NOT FINANCIAL TRANSACTION +06:16:24 +Slot[48] 0200 012000 6213545000760136 ------------- 00 266575 000020000000 5079232665750112CPBR6213545000760136 507923266575 081365 180893 S +06:16:38 Slot [46] | NOT FINANCIAL TRANSACTION +06:16:46 Slot [19] | NOT FINANCIAL TRANSACTION +06:16:54 Slot [69] | NOT FINANCIAL TRANSACTION +06:17:00 Slot [47] | NOT FINANCIAL TRANSACTION +06:17:05 Slot [58] | NOT FINANCIAL TRANSACTION +06:17:16 Slot [78] | NOT FINANCIAL TRANSACTION +06:17:28 Slot [54] | NOT FINANCIAL TRANSACTION +06:17:48 Slot [24] | NOT FINANCIAL TRANSACTION +06:17:50 +Slot[81] 0200 010000 1808930600023014 ------------- 00 928805 000100000000 507902317726030140071808930600023014 507902317726 799119 668899 S +06:17:53 Slot [57] | NOT FINANCIAL TRANSACTION +06:18:05 Slot [34] | NOT FINANCIAL TRANSACTION +06:18:10 Slot [42] | NOT FINANCIAL TRANSACTION +06:18:15 +Slot[86] 0200 010000 2206990000005967 ------------- 00 928812 000010000000 507902407303030010102206990000005967 507902407303 580936 668899 S +06:18:18 +Slot[88] 0200 301000 6213545000010680 ------------- 00 266581 031923172126 5079232665810112CPBR6213545000010680 507923266581 002383 180893 S +06:18:30 Slot [49] | NOT FINANCIAL TRANSACTION +06:18:41 Slot [5] | NOT FINANCIAL TRANSACTION +06:18:50 Slot [89] | NOT FINANCIAL TRANSACTION +06:18:57 +Slot[59] 0200 301000 2206990000005967 ------------- 00 928828 000000000000 507902407305030010102206990000005967 507902407305 554318 668899 S +06:19:02 +Slot[79] 0200 010000 1808930600023014 ------------- 00 928827 000019000000 507902317728030140071808930600023014 507902317728 726074 668899 S +06:19:02 Slot [84] | NOT FINANCIAL TRANSACTION +06:19:10 Slot [62] | NOT FINANCIAL TRANSACTION +06:19:13 Slot [67] | NOT FINANCIAL TRANSACTION +06:19:20 +Slot[99] 0200 011000 6213545000010680 ------------- 00 266583 000020000000 5079232665830112CPBR6213545000010680 507923266583 678795 180893 S +06:19:29 Slot [39] | NOT FINANCIAL TRANSACTION +06:19:45 Slot [64] | NOT FINANCIAL TRANSACTION +06:19:52 Slot [51] | NOT FINANCIAL TRANSACTION +06:19:54 Slot [82] | NOT FINANCIAL TRANSACTION +06:19:56 Slot [93] | NOT FINANCIAL TRANSACTION +06:20:08 +Slot[56] 0200 010000 6688990106481102 ------------- 00 663178 000005000000 507902613677050044006688990106481102 507902613677 470465 621354 S +06:20:09 Slot [91] | NOT FINANCIAL TRANSACTION +06:20:15 Slot [100] | NOT FINANCIAL TRANSACTION +06:20:23 Slot [77] | NOT FINANCIAL TRANSACTION +06:20:34 Slot [65] | NOT FINANCIAL TRANSACTION +06:20:46 Slot [72] | NOT FINANCIAL TRANSACTION +06:20:54 Slot [106] | NOT FINANCIAL TRANSACTION +06:21:01 Slot [66] | NOT FINANCIAL TRANSACTION +06:21:12 Slot [76] | NOT FINANCIAL TRANSACTION +06:21:20 Slot [90] | NOT FINANCIAL TRANSACTION +06:21:20 Slot [114] | NOT FINANCIAL TRANSACTION +06:21:23 Slot [74] | NOT FINANCIAL TRANSACTION +06:21:32 +Slot[107] 0200 010000 6213545001065329 ------------- 00 266589 000010000000 5079232665890324BKDT6213545001065329 507923266589 717244 180893 S +06:21:39 Slot [83] | NOT FINANCIAL TRANSACTION +06:21:56 Slot [92] | NOT FINANCIAL TRANSACTION +06:21:56 Slot [118] | NOT FINANCIAL TRANSACTION +06:22:08 Slot [121] | NOT FINANCIAL TRANSACTION +06:22:19 +Slot[113] 0200 010000 6213545001065329 ------------- 00 266593 000010000000 5079232665930324BKDT6213545001065329 507923266593 992609 180893 S +06:22:25 Slot [108] | NOT FINANCIAL TRANSACTION +06:22:29 Slot [94] | NOT FINANCIAL TRANSACTION +06:22:44 Slot [115] | NOT FINANCIAL TRANSACTION +06:22:55 Slot [127] | NOT FINANCIAL TRANSACTION +06:22:58 Slot [125] | NOT FINANCIAL TRANSACTION +06:23:11 Slot [95] | NOT FINANCIAL TRANSACTION +06:23:21 Slot [75] | NOT FINANCIAL TRANSACTION +06:23:30 Slot [53] | NOT FINANCIAL TRANSACTION +06:23:32 Slot [134] | NOT FINANCIAL TRANSACTION +06:23:43 Slot [96] | NOT FINANCIAL TRANSACTION +06:23:54 Slot [98] | NOT FINANCIAL TRANSACTION +06:24:00 Slot [103] | NOT FINANCIAL TRANSACTION +06:24:01 Slot [71] | NOT FINANCIAL TRANSACTION +06:24:09 Slot [101] | NOT FINANCIAL TRANSACTION +06:24:20 Slot [102] | NOT FINANCIAL TRANSACTION +06:24:31 Slot [109] | NOT FINANCIAL TRANSACTION +06:24:35 Slot [70] | NOT FINANCIAL TRANSACTION +06:24:47 Slot [136] | NOT FINANCIAL TRANSACTION +06:24:54 Slot [131] | NOT FINANCIAL TRANSACTION +06:25:02 Slot [129] | NOT FINANCIAL TRANSACTION +06:25:02 Slot [85] | NOT FINANCIAL TRANSACTION +06:25:13 Slot [105] | NOT FINANCIAL TRANSACTION +06:25:25 Slot [87] | NOT FINANCIAL TRANSACTION +06:25:31 +Slot[104] 0200 012000 6213545000819965 ------------- 00 009785 000030000000 507900270558010015006213545000819965 507900270558 873987 220699 S +06:25:33 +Slot[138] 0200 301000 6688990020017313 ------------- 00 663504 000000000000 507903365303130016006688990020017313 507903365303 672411 621354 S +06:25:35 Slot [97] | NOT FINANCIAL TRANSACTION +06:25:40 Slot [117] | NOT FINANCIAL TRANSACTION +06:25:45 Slot [112] | NOT FINANCIAL TRANSACTION +06:25:57 Slot [140] | NOT FINANCIAL TRANSACTION +06:26:04 Slot [116] | NOT FINANCIAL TRANSACTION +06:26:11 Slot [111] | NOT FINANCIAL TRANSACTION +06:26:20 Slot [147] | NOT FINANCIAL TRANSACTION +06:26:24 +Slot[124] 0200 010000 6213545000476303 ------------- 00 266602 000100000000 5079232666020366SKTT6213545000476303 507923266602 378936 180893 S +06:26:31 Slot [80] | NOT FINANCIAL TRANSACTION +06:26:45 Slot [123] | NOT FINANCIAL TRANSACTION +06:26:47 Slot [122] | NOT FINANCIAL TRANSACTION +06:26:57 Slot [161] | NOT FINANCIAL TRANSACTION +06:27:06 Slot [154] | NOT FINANCIAL TRANSACTION +06:27:13 Slot [132] | NOT FINANCIAL TRANSACTION +06:27:16 +Slot[162] 0200 010000 6213545000476303 ------------- 00 266606 000100000000 5079232666060366SKTT6213545000476303 507923266606 455520 180893 S +06:27:24 Slot [143] | NOT FINANCIAL TRANSACTION +06:27:26 +Slot[145] 0200 010000 6213541000222102 ------------- 00 928976 000100000000 507902209810030060096213541000222102 507902209810 716619 668899 S +06:27:35 Slot [158] | NOT FINANCIAL TRANSACTION +06:27:45 Slot [120] | NOT FINANCIAL TRANSACTION +06:27:50 Slot [150] | NOT FINANCIAL TRANSACTION +06:27:57 Slot [166] | NOT FINANCIAL TRANSACTION +06:28:08 Slot [130] | NOT FINANCIAL TRANSACTION +06:28:12 Slot [133] | NOT FINANCIAL TRANSACTION +06:28:21 +Slot[142] 0200 010000 6213545000476303 ------------- 00 266611 000100000000 5079232666110366SKTT6213545000476303 507923266611 559970 180893 S +06:28:33 Slot [153] | NOT FINANCIAL TRANSACTION +06:28:43 Slot [110] | NOT FINANCIAL TRANSACTION +06:28:53 +Slot[167] 0200 010000 6213541000222102 ------------- 00 929005 000100000000 507902209812030060096213541000222102 507902209812 228891 668899 S +06:28:54 Slot [137] | NOT FINANCIAL TRANSACTION +06:28:55 Slot [128] | NOT FINANCIAL TRANSACTION +06:29:09 Slot [175] | NOT FINANCIAL TRANSACTION +06:29:10 Slot [159] | NOT FINANCIAL TRANSACTION +06:29:11 +Slot[146] 0200 300000 6688990103295802 ------------- 00 663732 000000000000 507903499381060022006688990103295802 507903499381 184888 621354 S +06:29:16 +Slot[170] 0200 010000 6213545000476287 ------------- 00 266616 000100000000 5079232666160366SKTT6213545000476287 507923266616 461858 180893 S +06:29:25 Slot [141] | NOT FINANCIAL TRANSACTION +06:29:40 Slot [151] | NOT FINANCIAL TRANSACTION +06:29:51 Slot [164] | NOT FINANCIAL TRANSACTION +06:29:54 Slot [157] | NOT FINANCIAL TRANSACTION +06:30:00 Slot [172] | NOT FINANCIAL TRANSACTION +06:30:02 Slot [182] | NOT FINANCIAL TRANSACTION +06:30:05 Slot [186] | NOT FINANCIAL TRANSACTION +06:30:06 +Slot[148] 0200 010000 6213545000476287 ------------- 00 266620 000100000000 5079232666200366SKTT6213545000476287 507923266620 918664 180893 S +06:30:12 Slot [126] | NOT FINANCIAL TRANSACTION +06:30:15 +Slot[171] 0200 300000 6213544000609419 ------------- 00 929035 000000000000 507902148028030200246213544000609419 507902148028 152028 668899 S +06:30:17 Slot [119] | NOT FINANCIAL TRANSACTION +06:30:28 Slot [139] | NOT FINANCIAL TRANSACTION +06:30:43 Slot [176] | NOT FINANCIAL TRANSACTION +06:30:52 +Slot[156] 0200 010000 6213544000609419 ------------- 00 929047 000080000000 507902148029030200246213544000609419 507902148029 333852 668899 S +06:30:53 Slot [202] | NOT FINANCIAL TRANSACTION +06:31:05 Slot [187] | NOT FINANCIAL TRANSACTION +06:31:05 Slot [163] | NOT FINANCIAL TRANSACTION +06:31:14 Slot [160] | NOT FINANCIAL TRANSACTION +06:31:16 +Slot[203] 0200 012000 6688990103295802 ------------- 00 663866 000100000000 507903499384060022006688990103295802 507903499384 184520 621354 S +06:31:19 Slot [179] | NOT FINANCIAL TRANSACTION +06:31:20 Slot [192] | NOT FINANCIAL TRANSACTION +06:31:29 Slot [144] | NOT FINANCIAL TRANSACTION +06:31:42 +Slot[204] 0200 302000 6213541000068042 ------------- 00 266622 031923304526 5079232666220108THNG6213541000068042 507923266622 897898 180893 S +06:31:43 +Slot[135] 0200 011000 6213544001671442 ------------- 00 200556 000008000000 507906200556015290096213544001671442 507906200556 926972 198901 S +06:31:54 Slot [152] | NOT FINANCIAL TRANSACTION +06:32:04 Slot [196] | NOT FINANCIAL TRANSACTION +06:32:10 Slot [191] | NOT FINANCIAL TRANSACTION +06:32:16 Slot [155] | NOT FINANCIAL TRANSACTION +06:32:17 +Slot[190] 0200 010000 6213544000609419 ------------- 00 929081 000080000000 507902148031030200246213544000609419 507902148031 291292 668899 S +06:32:19 Slot [181] | NOT FINANCIAL TRANSACTION +06:32:31 +Slot[201] 0200 011000 6213544001671442 ------------- 00 200566 000008000000 507906200566015290096213544001671442 507906200566 565511 198901 S +06:32:32 Slot [198] | NOT FINANCIAL TRANSACTION +06:32:42 +Slot[194] 0200 013000 6688990103295802 ------------- 00 663993 000100000000 507903499386060022006688990103295802 507903499386 271238 621354 S +06:32:44 +Slot[214] 0200 010000 6213541000068042 ------------- 61 266624 000150000000 5079232666240108THNG6213541000068042 507923266624 311789 180893 S +06:32:51 Slot [165] | NOT FINANCIAL TRANSACTION +06:33:04 Slot [195] | NOT FINANCIAL TRANSACTION +06:33:11 +Slot[184] 0200 011000 6213544001671442 ------------- 00 200571 000008000000 507906200571015290096213544001671442 507906200571 299289 198901 S +06:33:15 Slot [209] | NOT FINANCIAL TRANSACTION +06:33:18 Slot [178] | NOT FINANCIAL TRANSACTION +06:33:18 Slot [213] | NOT FINANCIAL TRANSACTION +06:33:28 Slot [208] | NOT FINANCIAL TRANSACTION +06:33:39 Slot [206] | NOT FINANCIAL TRANSACTION +06:33:42 +Slot[193] 0200 301000 6213544001671442 ------------- 00 200579 000000000000 507906200579015290096213544001671442 507906200579 611668 198901 S +06:33:50 Slot [221] | NOT FINANCIAL TRANSACTION +06:33:54 +Slot[185] 0200 013000 6688990103295802 ------------- 00 664124 000100000000 507903499388060022006688990103295802 507903499388 590449 621354 S +06:34:01 Slot [212] | NOT FINANCIAL TRANSACTION +06:34:02 +Slot[211] 0200 011000 6213544001671442 ------------- 00 200583 000008000000 507906200583015290096213544001671442 507906200583 454290 198901 S +06:34:04 +Slot[183] 0200 010000 6213541000068042 ------------- 00 266629 000010000000 5079232666290108THNG6213541000068042 507923266629 258700 180893 S +06:34:16 Slot [207] | NOT FINANCIAL TRANSACTION +06:34:20 Slot [149] | NOT FINANCIAL TRANSACTION +06:34:20 Slot [174] | NOT FINANCIAL TRANSACTION +06:34:26 Slot [180] | NOT FINANCIAL TRANSACTION +06:34:30 +Slot[168] 0200 011000 6213544001671442 ------------- 00 200590 000008000000 507906200590015290096213544001671442 507906200590 903304 198901 S +06:34:37 Slot [189] | NOT FINANCIAL TRANSACTION +06:34:47 Slot [169] | NOT FINANCIAL TRANSACTION +06:34:48 Slot [222] | NOT FINANCIAL TRANSACTION +06:34:54 Slot [225] | NOT FINANCIAL TRANSACTION +06:34:58 Slot [205] | NOT FINANCIAL TRANSACTION +06:35:03 +Slot[232] 0200 010000 6213541000068042 ------------- 00 266633 000100000000 5079232666330108THNG6213541000068042 507923266633 448991 180893 S +06:35:08 +Slot[230] 0200 013000 6688990103498406 ------------- 00 664238 000050000000 507903499390060022006688990103498406 507903499390 067110 621354 S +06:35:13 +Slot[188] 0200 011000 6213544001671442 ------------- 51 200600 000008000000 507906200600015290096213544001671442 507906200600 143909 198901 S +06:35:15 Slot [173] | NOT FINANCIAL TRANSACTION +06:35:22 Slot [229] | NOT FINANCIAL TRANSACTION +06:35:25 Slot [223] | NOT FINANCIAL TRANSACTION +06:35:25 Slot [177] | NOT FINANCIAL TRANSACTION +06:35:35 +Slot[215] 0200 011000 6213544001671442 ------------- 51 200606 000008000000 507906200606015290096213544001671442 507906200606 746720 198901 S +06:35:36 Slot [243] | NOT FINANCIAL TRANSACTION +06:35:52 Slot [235] | NOT FINANCIAL TRANSACTION +06:36:03 Slot [246] | NOT FINANCIAL TRANSACTION +06:36:15 Slot [242] | NOT FINANCIAL TRANSACTION +06:36:20 Slot [248] | NOT FINANCIAL TRANSACTION +06:36:24 Slot [244] | NOT FINANCIAL TRANSACTION +06:36:29 Slot [227] | NOT FINANCIAL TRANSACTION +06:36:30 Slot [250] | NOT FINANCIAL TRANSACTION +06:36:41 Slot [251] | NOT FINANCIAL TRANSACTION +06:36:52 +Slot[200] 0200 013000 6688990103261309 ------------- 00 664384 000100000000 507903499392060022006688990103261309 507903499392 793476 621354 S +06:36:56 Slot [255] | NOT FINANCIAL TRANSACTION +06:37:07 Slot [226] | NOT FINANCIAL TRANSACTION +06:37:22 Slot [233] | NOT FINANCIAL TRANSACTION +06:37:26 Slot [238] | NOT FINANCIAL TRANSACTION +06:37:33 Slot [216] | NOT FINANCIAL TRANSACTION +06:37:37 Slot [234] | NOT FINANCIAL TRANSACTION +06:37:44 Slot [237] | NOT FINANCIAL TRANSACTION +06:37:55 Slot [253] | NOT FINANCIAL TRANSACTION +06:38:06 Slot [210] | NOT FINANCIAL TRANSACTION +06:38:17 Slot [249] | NOT FINANCIAL TRANSACTION +06:38:23 +Slot[220] 0200 013000 6688990106052309 ------------- 00 664513 000010000000 507903499394060022006688990106052309 507903499394 510267 621354 S +06:38:28 Slot [260] | NOT FINANCIAL TRANSACTION +06:38:28 Slot [199] | NOT FINANCIAL TRANSACTION +06:38:39 Slot [259] | NOT FINANCIAL TRANSACTION +06:38:42 Slot [263] | NOT FINANCIAL TRANSACTION +06:38:50 Slot [270] | NOT FINANCIAL TRANSACTION +06:39:07 Slot [261] | NOT FINANCIAL TRANSACTION +06:39:18 Slot [269] | NOT FINANCIAL TRANSACTION +06:39:29 Slot [240] | NOT FINANCIAL TRANSACTION +06:39:30 Slot [197] | NOT FINANCIAL TRANSACTION +06:39:32 +Slot[256] 0200 013000 6688990106052309 ------------- 00 664616 000100000000 507903499396060022006688990106052309 507903499396 596814 621354 S +06:39:39 Slot [228] | NOT FINANCIAL TRANSACTION +06:39:47 Slot [265] | NOT FINANCIAL TRANSACTION +06:39:49 Slot [275] | NOT FINANCIAL TRANSACTION +06:39:54 Slot [247] | NOT FINANCIAL TRANSACTION +06:40:00 Slot [218] | NOT FINANCIAL TRANSACTION +06:40:11 Slot [274] | NOT FINANCIAL TRANSACTION +06:40:22 Slot [264] | NOT FINANCIAL TRANSACTION +06:40:32 Slot [231] | NOT FINANCIAL TRANSACTION +06:40:33 Slot [279] | NOT FINANCIAL TRANSACTION +06:40:44 Slot [254] | NOT FINANCIAL TRANSACTION +06:40:47 +Slot[239] 0200 013000 6688990106052309 ------------- 00 664724 000100000000 507903499398060022006688990106052309 507903499398 096272 621354 S +06:40:52 Slot [273] | NOT FINANCIAL TRANSACTION +06:40:55 Slot [266] | NOT FINANCIAL TRANSACTION +06:41:06 Slot [272] | NOT FINANCIAL TRANSACTION +06:41:17 Slot [282] | NOT FINANCIAL TRANSACTION +06:41:20 Slot [241] | NOT FINANCIAL TRANSACTION +06:41:29 Slot [252] | NOT FINANCIAL TRANSACTION +06:41:34 Slot [245] | NOT FINANCIAL TRANSACTION +06:41:40 Slot [280] | NOT FINANCIAL TRANSACTION +06:41:46 +Slot[276] 0200 010000 6213548000032407 ------------- 00 929236 000030000000 507901856050033110016213548000032407 507901856050 426340 668899 S +06:41:51 Slot [258] | NOT FINANCIAL TRANSACTION +06:41:56 +Slot[284] 0200 010000 6688990103749907 ------------- 14 266652 000010000000 5079232666520221XKKM6688990103749907 507923266652 667929 180893 S +06:41:57 Slot [219] | NOT FINANCIAL TRANSACTION +06:42:07 Slot [290] | NOT FINANCIAL TRANSACTION +06:42:09 +Slot[287] 0200 013000 6688990106052309 ------------- 00 664846 000100000000 507903499400060022006688990106052309 507903499400 432962 621354 S +06:42:11 +Slot[224] 0200 010000 2206990000092155 ------------- 00 664838 000100000000 507904119555080008002206990000092155 507904119555 760456 621354 S +06:42:18 Slot [288] | NOT FINANCIAL TRANSACTION +06:42:28 Slot [271] | NOT FINANCIAL TRANSACTION +06:42:36 Slot [277] | NOT FINANCIAL TRANSACTION +06:42:39 Slot [267] | NOT FINANCIAL TRANSACTION +06:42:51 Slot [236] | NOT FINANCIAL TRANSACTION +06:43:02 Slot [293] | NOT FINANCIAL TRANSACTION +06:43:07 Slot [278] | NOT FINANCIAL TRANSACTION +06:43:07 +Slot[217] 0200 013000 6688990106052309 ------------- 51 664962 000060000000 507903499402060022006688990106052309 507903499402 475246 621354 S +06:43:18 Slot [294] | NOT FINANCIAL TRANSACTION +06:43:29 Slot [298] | NOT FINANCIAL TRANSACTION +06:43:38 Slot [257] | NOT FINANCIAL TRANSACTION +06:43:40 Slot [303] | NOT FINANCIAL TRANSACTION +06:43:56 +Slot[299] 0200 301000 1808931800009951 ------------- 00 665033 000000000000 507904635340170008001808931800009951 507904635340 869790 621354 S +06:44:00 Slot [302] | NOT FINANCIAL TRANSACTION +06:44:07 Slot [292] | NOT FINANCIAL TRANSACTION +06:44:20 +Slot[281] 0200 302000 2206990000092155 ------------- 00 665079 000000000000 507904119556080008002206990000092155 507904119556 027265 621354 S +06:44:22 +Slot[300] 0200 011000 1808931700017781 ------------- 00 665076 000015000000 507903908190010106001808931700017781 507903908190 623254 621354 S +06:44:24 +Slot[295] 0200 010000 6213542000029166 ------------- 00 254805 000100000000 507900094394010009006213542000029166 507900094394 047555 220699 S +06:44:27 Slot [308] | NOT FINANCIAL TRANSACTION +06:44:38 Slot [296] | NOT FINANCIAL TRANSACTION +06:44:40 Slot [283] | NOT FINANCIAL TRANSACTION +06:44:40 +Slot[262] 0200 301000 6688990108428200 ------------- 14 266662 031923434326 5079232666620263UDXB6688990108428200 507923266662 771292 180893 S +06:44:50 +Slot[311] 0200 011000 1808931800009951 ------------- 00 665131 000010000000 507904635342170008001808931800009951 507904635342 888279 621354 S +06:44:53 Slot [312] | NOT FINANCIAL TRANSACTION +06:44:54 Slot [316] | NOT FINANCIAL TRANSACTION +06:45:05 Slot [286] | NOT FINANCIAL TRANSACTION +06:45:10 +Slot[306] 0200 010000 6213542000029166 ------------- 00 254808 000100000000 507900094396010009006213542000029166 507900094396 554645 220699 S +06:45:12 Slot [307] | NOT FINANCIAL TRANSACTION +06:45:20 Slot [317] | NOT FINANCIAL TRANSACTION +06:45:32 Slot [310] | NOT FINANCIAL TRANSACTION +06:45:33 Slot [318] | NOT FINANCIAL TRANSACTION +06:45:42 Slot [289] | NOT FINANCIAL TRANSACTION +06:45:44 Slot [315] | NOT FINANCIAL TRANSACTION +06:45:49 +Slot[322] 0200 302000 6688990108428200 ------------- 14 266667 031923445226 5079232666670263UDXB6688990108428200 507923266667 730058 180893 S +06:45:59 Slot [304] | NOT FINANCIAL TRANSACTION +06:46:13 +Slot[325] 0200 010000 6213544002192117 ------------- 00 929306 000070000000 507900977460034070026213544002192117 507900977460 902058 668899 S +06:46:15 +Slot[285] 0200 302000 2206990000092155 ------------- 00 665275 000000000000 507904119557080008002206990000092155 507904119557 012374 621354 S +06:46:15 Slot [297] | NOT FINANCIAL TRANSACTION +06:46:17 Slot [291] | NOT FINANCIAL TRANSACTION +06:46:21 Slot [326] | NOT FINANCIAL TRANSACTION +06:46:26 Slot [305] | NOT FINANCIAL TRANSACTION +06:46:35 +Slot[301] 0200 010000 6688990102697701 ------------- 00 665318 000100000000 507903499404060022006688990102697701 507903499404 708269 621354 S +06:46:41 Slot [327] | NOT FINANCIAL TRANSACTION +06:46:44 Slot [333] | NOT FINANCIAL TRANSACTION +06:46:47 Slot [331] | NOT FINANCIAL TRANSACTION +06:46:53 +Slot[314] 0200 010000 6688990108428200 ------------- 14 266673 000100000000 5079232666730263UDXB6688990108428200 507923266673 332512 180893 S +06:47:02 Slot [336] | NOT FINANCIAL TRANSACTION +06:47:04 +Slot[321] 0200 010000 6688990104258908 ------------- 00 665364 000100000000 507904965342150011006688990104258908 507904965342 211894 621354 S +06:47:12 Slot [334] | NOT FINANCIAL TRANSACTION +06:47:22 Slot [337] | NOT FINANCIAL TRANSACTION +06:47:22 Slot [335] | NOT FINANCIAL TRANSACTION +06:47:33 Slot [342] | NOT FINANCIAL TRANSACTION +06:47:43 +Slot[320] 0200 010000 6688990102697701 ------------- 00 665441 000050000000 507903499406060022006688990102697701 507903499406 984649 621354 S +06:47:44 Slot [341] | NOT FINANCIAL TRANSACTION +06:47:46 Slot [345] | NOT FINANCIAL TRANSACTION +06:47:49 +Slot[268] 0200 010000 6213545001042468 ------------- 00 266679 000010000000 5079232666790112CPBR6213545001042468 507923266679 989558 180893 S +06:48:00 Slot [344] | NOT FINANCIAL TRANSACTION +06:48:11 Slot [329] | NOT FINANCIAL TRANSACTION +06:48:18 +Slot[339] 0200 010000 6688990104258908 ------------- 00 665504 000100000000 507904965344150011006688990104258908 507904965344 885092 621354 S +06:48:22 Slot [323] | NOT FINANCIAL TRANSACTION +06:48:27 Slot [309] | NOT FINANCIAL TRANSACTION +06:48:32 Slot [348] | NOT FINANCIAL TRANSACTION +06:48:43 Slot [352] | NOT FINANCIAL TRANSACTION +06:48:48 Slot [328] | NOT FINANCIAL TRANSACTION +06:48:53 Slot [347] | NOT FINANCIAL TRANSACTION +06:48:57 +Slot[350] 0200 300000 6688990108428200 ------------- 00 665577 000000000000 507903499407060022006688990108428200 507903499407 068695 621354 S +06:49:04 Slot [319] | NOT FINANCIAL TRANSACTION +06:49:21 Slot [332] | NOT FINANCIAL TRANSACTION +06:49:32 Slot [356] | NOT FINANCIAL TRANSACTION +06:49:33 Slot [346] | NOT FINANCIAL TRANSACTION +06:49:39 +Slot[357] 0200 010000 6688990108428200 ------------- 00 665662 000100000000 507903499409060022006688990108428200 507903499409 945347 621354 S +06:49:41 +Slot[330] 0200 010000 6213544000830502 ------------- 00 929399 000070000000 507902683018030200366213544000830502 507902683018 009723 668899 S +06:49:43 Slot [343] | NOT FINANCIAL TRANSACTION +06:49:43 +Slot[366] 0200 010000 6688990104258908 ------------- 00 665670 000100000000 507904965346150011006688990104258908 507904965346 202431 621354 S +06:49:50 Slot [313] | NOT FINANCIAL TRANSACTION +06:49:53 Slot [365] | NOT FINANCIAL TRANSACTION +06:49:55 Slot [340] | NOT FINANCIAL TRANSACTION +06:50:07 Slot [371] | NOT FINANCIAL TRANSACTION +06:50:21 Slot [378] | NOT FINANCIAL TRANSACTION +06:50:23 +Slot[324] 0200 011000 6213544002058151 ------------- 00 200784 000010000000 507906200784000022226213544002058151 507906200784 349479 198901 S +06:50:32 Slot [373] | NOT FINANCIAL TRANSACTION +06:50:37 Slot [353] | NOT FINANCIAL TRANSACTION +06:50:43 Slot [355] | NOT FINANCIAL TRANSACTION +06:50:48 +Slot[382] 0200 301000 6213544002058151 ------------- 00 200794 000000000000 507906200794000022226213544002058151 507906200794 678534 198901 S +06:50:52 Slot [358] | NOT FINANCIAL TRANSACTION +06:50:53 +Slot[363] 0200 011000 2206990000092155 ------------- 55 665815 000010000000 507904119568080008002206990000092155 507904119568 368488 621354 S +06:50:53 Slot [370] | NOT FINANCIAL TRANSACTION +06:50:57 +Slot[338] 0200 010000 6688990104258908 ------------- 00 665827 000100000000 507904965348150011006688990104258908 507904965348 272306 621354 S +06:51:06 Slot [360] | NOT FINANCIAL TRANSACTION +06:51:16 +Slot[379] 0200 011000 2206990000092155 ------------- 00 665863 000010000000 507904119570080008002206990000092155 507904119570 502341 621354 S +06:51:16 Slot [354] | NOT FINANCIAL TRANSACTION +06:51:20 +Slot[396] 0200 011000 6213541000179468 ------------- 00 254811 000050000000 507900094398010009006213541000179468 507900094398 043594 220699 S +06:51:21 Slot [351] | NOT FINANCIAL TRANSACTION +06:51:32 Slot [369] | NOT FINANCIAL TRANSACTION +06:51:42 Slot [390] | NOT FINANCIAL TRANSACTION +06:51:47 Slot [389] | NOT FINANCIAL TRANSACTION +06:51:49 +Slot[374] 0200 011000 1989010003167253 ------------- 00 665915 000100000000 507902835001010077001989010003167253 507902835001 115483 621354 S +06:51:54 Slot [376] | NOT FINANCIAL TRANSACTION +06:52:00 +Slot[359] 0200 010000 6688990104258908 ------------- 00 665945 000100000000 507904965350150011006688990104258908 507904965350 764041 621354 S +06:52:04 Slot [395] | NOT FINANCIAL TRANSACTION +06:52:19 Slot [361] | NOT FINANCIAL TRANSACTION +06:52:30 Slot [410] | NOT FINANCIAL TRANSACTION +06:52:46 Slot [383] | NOT FINANCIAL TRANSACTION +06:52:47 Slot [393] | NOT FINANCIAL TRANSACTION +06:52:50 +Slot[349] 0200 302000 2206990000092155 ------------- 00 666046 000000000000 507904119571080008002206990000092155 507904119571 239593 621354 S +06:52:51 +Slot[413] 0200 011000 1989010003167253 ------------- 00 666047 000050000000 507902835003010077001989010003167253 507902835003 859403 621354 S +06:52:56 Slot [397] | NOT FINANCIAL TRANSACTION +06:53:01 Slot [414] | NOT FINANCIAL TRANSACTION +06:53:02 +Slot[400] 0200 010000 6688990104258908 ------------- 00 666073 000100000000 507904965352150011006688990104258908 507904965352 080120 621354 S +06:53:12 Slot [399] | NOT FINANCIAL TRANSACTION +06:53:22 Slot [394] | NOT FINANCIAL TRANSACTION +06:53:33 Slot [368] | NOT FINANCIAL TRANSACTION +06:53:41 +Slot[387] 0200 301000 1989010003167253 ------------- 00 666150 000000000000 507902835004010077001989010003167253 507902835004 768502 621354 S +06:53:44 Slot [372] | NOT FINANCIAL TRANSACTION +06:53:52 Slot [418] | NOT FINANCIAL TRANSACTION +06:53:58 Slot [406] | NOT FINANCIAL TRANSACTION +06:53:59 Slot [419] | NOT FINANCIAL TRANSACTION +06:54:02 +Slot[380] 0200 302000 2206990000092155 ------------- 00 666184 000000000000 507904119572080008002206990000092155 507904119572 169993 621354 S +06:54:04 +Slot[411] 0200 010000 6688990104258908 ------------- 65 666192 000100000000 507904965354150011006688990104258908 507904965354 921648 621354 S +06:54:14 +Slot[407] 0200 010000 6688990102982806 ------------- 00 666205 000100000000 507904393630030038006688990102982806 507904393630 384643 621354 S +06:54:16 Slot [384] | NOT FINANCIAL TRANSACTION +06:54:31 Slot [401] | NOT FINANCIAL TRANSACTION +06:54:47 Slot [416] | NOT FINANCIAL TRANSACTION +06:54:48 +Slot[420] 0200 300000 6213541000696057 ------------- 00 929540 000000000000 507902336368032170026213541000696057 507902336368 624491 668899 S +06:54:55 Slot [415] | NOT FINANCIAL TRANSACTION +06:54:57 Slot [381] | NOT FINANCIAL TRANSACTION +06:55:00 Slot [425] | NOT FINANCIAL TRANSACTION +06:55:02 Slot [398] | NOT FINANCIAL TRANSACTION +06:55:13 Slot [433] | NOT FINANCIAL TRANSACTION +06:55:14 +Slot[388] 0200 010000 6213541000696057 ------------- 00 929559 000100000000 507902336369032170026213541000696057 507902336369 237205 668899 S +06:55:28 Slot [364] | NOT FINANCIAL TRANSACTION +06:55:41 +Slot[367] 0200 010000 6213545000118194 ------------- 00 929570 000020000000 507901822341034070036213545000118194 507901822341 394794 668899 S +06:55:44 Slot [430] | NOT FINANCIAL TRANSACTION +06:55:59 Slot [441] | NOT FINANCIAL TRANSACTION +06:56:02 Slot [402] | NOT FINANCIAL TRANSACTION +06:56:02 Slot [375] | NOT FINANCIAL TRANSACTION +06:56:10 Slot [408] | NOT FINANCIAL TRANSACTION +06:56:20 Slot [409] | NOT FINANCIAL TRANSACTION +06:56:21 Slot [437] | NOT FINANCIAL TRANSACTION +06:56:21 Slot [385] | NOT FINANCIAL TRANSACTION +06:56:32 Slot [362] | NOT FINANCIAL TRANSACTION +06:56:47 Slot [403] | NOT FINANCIAL TRANSACTION +06:57:03 Slot [412] | NOT FINANCIAL TRANSACTION +06:57:04 Slot [392] | NOT FINANCIAL TRANSACTION +06:57:07 Slot [447] | NOT FINANCIAL TRANSACTION +06:57:13 Slot [450] | NOT FINANCIAL TRANSACTION +06:57:24 Slot [386] | NOT FINANCIAL TRANSACTION +06:57:35 Slot [417] | NOT FINANCIAL TRANSACTION +06:57:45 Slot [377] | NOT FINANCIAL TRANSACTION +06:57:48 +Slot[391] 0200 300000 6688990102850805 ------------- 00 666595 000000000000 507903499410060022006688990102850805 507903499410 031076 621354 S +06:57:56 Slot [405] | NOT FINANCIAL TRANSACTION +06:58:06 Slot [443] | NOT FINANCIAL TRANSACTION +06:58:07 Slot [456] | NOT FINANCIAL TRANSACTION +06:58:12 Slot [446] | NOT FINANCIAL TRANSACTION +06:58:18 Slot [435] | NOT FINANCIAL TRANSACTION +06:58:29 Slot [404] | NOT FINANCIAL TRANSACTION +06:58:45 Slot [424] | NOT FINANCIAL TRANSACTION +06:58:56 Slot [429] | NOT FINANCIAL TRANSACTION +06:59:06 Slot [445] | NOT FINANCIAL TRANSACTION +06:59:08 Slot [442] | NOT FINANCIAL TRANSACTION +06:59:18 Slot [438] | NOT FINANCIAL TRANSACTION +06:59:22 Slot [434] | NOT FINANCIAL TRANSACTION +06:59:33 Slot [428] | NOT FINANCIAL TRANSACTION +06:59:44 Slot [427] | NOT FINANCIAL TRANSACTION +06:59:55 Slot [426] | NOT FINANCIAL TRANSACTION +06:59:55 Slot [431] | NOT FINANCIAL TRANSACTION +07:00:05 Slot [451] | NOT FINANCIAL TRANSACTION +07:00:10 Slot [457] | NOT FINANCIAL TRANSACTION +07:00:16 Slot [462] | NOT FINANCIAL TRANSACTION +07:00:20 +Slot[422] 0200 301000 2206990000092155 ------------- 55 666827 000000000000 507904119573080008002206990000092155 507904119573 971051 621354 S +07:00:23 Slot [444] | NOT FINANCIAL TRANSACTION +07:00:25 +Slot[465] 0200 300000 6688990040023135 ------------- 00 666834 000000000000 507904136309200008006688990040023135 507904136309 381111 621354 S +07:00:32 Slot [421] | NOT FINANCIAL TRANSACTION +07:00:42 Slot [439] | NOT FINANCIAL TRANSACTION +07:00:49 +Slot[458] 0200 301000 2206990000092155 ------------- 00 666871 000000000000 507904119574080008002206990000092155 507904119574 393826 621354 S +07:00:53 Slot [423] | NOT FINANCIAL TRANSACTION +07:01:11 Slot [466] | NOT FINANCIAL TRANSACTION +07:01:12 Slot [436] | NOT FINANCIAL TRANSACTION +07:01:20 Slot [459] | NOT FINANCIAL TRANSACTION +07:01:22 Slot [475] | NOT FINANCIAL TRANSACTION +07:01:28 Slot [468] | NOT FINANCIAL TRANSACTION +07:01:33 Slot [452] | NOT FINANCIAL TRANSACTION +07:01:43 Slot [449] | NOT FINANCIAL TRANSACTION +07:01:54 Slot [455] | NOT FINANCIAL TRANSACTION +07:02:10 Slot [440] | NOT FINANCIAL TRANSACTION +07:02:14 Slot [460] | NOT FINANCIAL TRANSACTION +07:02:20 Slot [432] | NOT FINANCIAL TRANSACTION +07:02:30 +Slot[453] 0200 010000 2206990000092155 ------------- 00 667044 000100000000 507904119576080008002206990000092155 507904119576 683168 621354 S +07:02:33 Slot [482] | NOT FINANCIAL TRANSACTION +07:02:36 Slot [488] | NOT FINANCIAL TRANSACTION +07:02:47 Slot [470] | NOT FINANCIAL TRANSACTION +07:02:58 Slot [495] | NOT FINANCIAL TRANSACTION +07:03:09 Slot [463] | NOT FINANCIAL TRANSACTION +07:03:16 Slot [490] | NOT FINANCIAL TRANSACTION +07:03:21 Slot [484] | NOT FINANCIAL TRANSACTION +07:03:29 Slot [448] | NOT FINANCIAL TRANSACTION +07:03:31 Slot [471] | NOT FINANCIAL TRANSACTION +07:03:38 Slot [480] | NOT FINANCIAL TRANSACTION +07:03:48 Slot [479] | NOT FINANCIAL TRANSACTION +07:03:59 Slot [498] | NOT FINANCIAL TRANSACTION +07:04:13 Slot [0] | NOT FINANCIAL TRANSACTION +07:04:18 Slot [2] | NOT FINANCIAL TRANSACTION +07:04:27 Slot [493] | NOT FINANCIAL TRANSACTION +07:04:36 +Slot[473] 0200 010000 2206990000092155 ------------- 00 667236 000100000000 507904119578080008002206990000092155 507904119578 081202 621354 S +07:04:38 Slot [1] | NOT FINANCIAL TRANSACTION +07:04:43 Slot [4] | NOT FINANCIAL TRANSACTION +07:04:48 Slot [474] | NOT FINANCIAL TRANSACTION +07:04:55 Slot [483] | NOT FINANCIAL TRANSACTION +07:04:59 Slot [489] | NOT FINANCIAL TRANSACTION +07:05:09 Slot [476] | NOT FINANCIAL TRANSACTION +07:05:20 Slot [472] | NOT FINANCIAL TRANSACTION +07:05:25 Slot [477] | NOT FINANCIAL TRANSACTION +07:05:37 Slot [486] | NOT FINANCIAL TRANSACTION +07:05:48 Slot [492] | NOT FINANCIAL TRANSACTION +07:05:48 Slot [6] | NOT FINANCIAL TRANSACTION +07:05:59 Slot [485] | NOT FINANCIAL TRANSACTION +07:06:09 Slot [454] | NOT FINANCIAL TRANSACTION +07:06:20 Slot [14] | NOT FINANCIAL TRANSACTION +07:06:22 Slot [13] | NOT FINANCIAL TRANSACTION +07:06:25 Slot [12] | NOT FINANCIAL TRANSACTION +07:06:35 Slot [16] | NOT FINANCIAL TRANSACTION +07:06:47 Slot [494] | NOT FINANCIAL TRANSACTION +07:06:53 Slot [22] | NOT FINANCIAL TRANSACTION +07:06:55 +Slot[469] 0200 300000 6688990060012802 ------------- 00 667541 000000000000 507905108274200013006688990060012802 507905108274 897059 621354 S +07:06:57 Slot [491] | NOT FINANCIAL TRANSACTION +07:07:07 Slot [17] | NOT FINANCIAL TRANSACTION +07:07:09 Slot [499] | NOT FINANCIAL TRANSACTION +07:07:20 Slot [31] | NOT FINANCIAL TRANSACTION +07:07:20 +Slot[10] 0200 300000 6688990107211607 ------------- 00 667596 000000000000 507904140195200009006688990107211607 507904140195 028852 621354 S +07:07:24 Slot [481] | NOT FINANCIAL TRANSACTION +07:07:27 +Slot[23] 0200 301000 6688990103272306 ------------- 00 667625 000000000000 507903499412060022006688990103272306 507903499412 097331 621354 S +07:07:31 Slot [3] | NOT FINANCIAL TRANSACTION +07:07:40 +Slot[29] 0200 011000 1888880000024448 ------------- 00 667653 000050000000 507905090049040042001888880000024448 507905090049 950425 621354 S +07:07:42 Slot [7] | NOT FINANCIAL TRANSACTION +07:07:52 Slot [33] | NOT FINANCIAL TRANSACTION +07:07:55 +Slot[21] 0200 300000 6688990060012802 ------------- 00 667682 000000000000 507905108275200013006688990060012802 507905108275 117298 621354 S +07:07:58 Slot [35] | NOT FINANCIAL TRANSACTION +07:08:06 +Slot[11] 0200 011000 1808931100007184 ------------- 00 667695 000010000000 507903798537010095001808931100007184 507903798537 332620 621354 S +07:08:14 Slot [30] | NOT FINANCIAL TRANSACTION +07:08:26 Slot [496] | NOT FINANCIAL TRANSACTION +07:08:30 Slot [461] | NOT FINANCIAL TRANSACTION +07:08:31 +Slot[36] 0200 011000 6688990103272306 ------------- 00 667755 000100000000 507903499414060022006688990103272306 507903499414 807905 621354 S +07:08:33 +Slot[37] 0200 301000 1888880000024448 ------------- 00 667759 000000000000 507905090050040042001888880000024448 507905090050 844686 621354 S +07:08:41 Slot [9] | NOT FINANCIAL TRANSACTION +07:08:53 Slot [467] | NOT FINANCIAL TRANSACTION +07:09:03 Slot [45] | NOT FINANCIAL TRANSACTION +07:09:04 Slot [18] | NOT FINANCIAL TRANSACTION +07:09:06 +Slot[40] 0420 010000 2206990000095760 ------------- 00 667764 000100000000 507904119580080008002206990000095760 507904119580 -------- 621354 S +07:09:14 Slot [497] | NOT FINANCIAL TRANSACTION +07:09:24 Slot [43] | NOT FINANCIAL TRANSACTION +07:09:28 Slot [8] | NOT FINANCIAL TRANSACTION +07:09:29 +Slot[28] 0200 012000 6688990060012802 ------------- 00 667857 000010000000 507905108278200013006688990060012802 507905108278 868740 621354 S +07:09:34 +Slot[50] 0200 011000 6688990103272306 ------------- 00 667879 000100000000 507903499416060022006688990103272306 507903499416 093274 621354 S +07:09:35 Slot [44] | NOT FINANCIAL TRANSACTION +07:09:36 +Slot[52] 0200 010000 6213545000759880 ------------- 00 929882 000100000000 507900195999030010036213545000759880 507900195999 760231 668899 S +07:09:45 Slot [61] | NOT FINANCIAL TRANSACTION +07:09:48 +Slot[25] 0200 010000 2206990000095760 ------------- 00 667902 000100000000 507904119582080008002206990000095760 507904119582 121540 621354 S +07:09:54 +Slot[15] 0200 011000 1808930600005847 ------------- 00 009256 000030000000 507900213230050001001808930600005847 507900213230 875975 220699 S +07:09:55 Slot [55] | NOT FINANCIAL TRANSACTION +07:10:02 Slot [478] | NOT FINANCIAL TRANSACTION +07:10:08 Slot [68] | NOT FINANCIAL TRANSACTION +07:10:14 Slot [63] | NOT FINANCIAL TRANSACTION +07:10:20 +Slot[60] 0420 010000 2206990000095760 0000000000000 00 667764 000100000000 507904119580080008002206990000095760 507904119580 -------- 621354 S +07:10:24 +Slot[41] 0200 302000 6213545000115620 ------------- 00 929898 000000000000 507900858187030150046213545000115620 507900858187 058480 668899 S +07:10:30 Slot [38] | NOT FINANCIAL TRANSACTION +07:10:35 +Slot[464] 0200 311000 1808930600028856 ------------- 00 010406 000000000000 507900220643050002001808930600028856 507900220643 262485 220699 S +07:10:37 +Slot[73] 0200 011000 6688990103272306 ------------- 00 668006 000100000000 507903499418060022006688990103272306 507903499418 980352 621354 S +07:10:40 Slot [27] | NOT FINANCIAL TRANSACTION +07:10:45 +Slot[487] 0200 301000 6213544000395266 ------------- 00 266725 032000094826 5079002667250112CPBR6213544000395266 507900266725 085573 180893 S +07:10:54 +Slot[32] 0200 010000 2206990000095760 ------------- 91 667764 000100000000 507904119580080008002206990000095760 507904119580 372000 621354 S +07:11:00 +Slot[20] 0200 011000 1808930600028856 ------------- 51 010407 000030000000 507900220644050002001808930600028856 507900220644 752388 220699 S +07:11:02 +Slot[26] 0200 011000 6688990103252803 ------------- 00 668060 000040000000 507904153734200010006688990103252803 507904153734 328851 621354 S +07:11:06 Slot [48] | NOT FINANCIAL TRANSACTION +07:11:13 Slot [46] | NOT FINANCIAL TRANSACTION +07:11:20 Slot [19] | NOT FINANCIAL TRANSACTION +07:11:21 Slot [69] | NOT FINANCIAL TRANSACTION +07:11:32 Slot [58] | NOT FINANCIAL TRANSACTION +07:11:35 +Slot[47] 0200 302000 6688990601594508 ------------- 14 266726 032000103826 5079002667260466PSLB6688990601594508 507900266726 195644 180893 S +07:11:36 +Slot[78] 0200 311000 1808930600028856 ------------- 00 010410 000000000000 507900220646050002001808930600028856 507900220646 012211 220699 S +07:11:42 Slot [54] | NOT FINANCIAL TRANSACTION +07:11:53 Slot [81] | NOT FINANCIAL TRANSACTION +07:12:00 +Slot[24] 0200 010000 2206990000095760 ------------- 00 668178 000100000000 507904119584080008002206990000095760 507904119584 065262 621354 S +07:12:01 +Slot[57] 0200 010000 6213545000115620 ------------- 00 929926 000100000000 507900858189030150046213545000115620 507900858189 328508 668899 S +07:12:05 Slot [34] | NOT FINANCIAL TRANSACTION +07:12:10 +Slot[42] 0200 301000 6688990601594508 ------------- 14 266727 032000111326 5079002667270466PSLB6688990601594508 507900266727 366506 180893 S +07:12:18 Slot [86] | NOT FINANCIAL TRANSACTION +07:12:21 Slot [49] | NOT FINANCIAL TRANSACTION +07:12:25 +Slot[88] 0200 011000 6688990103272306 ------------- 00 668226 000050000000 507903499422060022006688990103272306 507903499422 307424 621354 S +07:12:32 Slot [5] | NOT FINANCIAL TRANSACTION +07:12:34 Slot [89] | NOT FINANCIAL TRANSACTION +07:12:42 Slot [59] | NOT FINANCIAL TRANSACTION +07:13:00 +Slot[79] 0200 011000 1808930600028856 ------------- 00 668292 000025000000 507904269349030025001808930600028856 507904269349 420531 621354 S +07:13:04 Slot [84] | NOT FINANCIAL TRANSACTION +07:13:15 Slot [62] | NOT FINANCIAL TRANSACTION +07:13:23 +Slot[67] 0200 010000 6213544001180790 ------------- 00 929959 000050000000 507901972353030120036213544001180790 507901972353 764710 668899 S +07:13:23 Slot [99] | NOT FINANCIAL TRANSACTION +07:13:26 Slot [39] | NOT FINANCIAL TRANSACTION +07:13:33 +Slot[64] 0200 012000 6688990601594508 ------------- 14 266731 000020000000 5079002667310466PSLB6688990601594508 507900266731 281126 180893 S +07:13:36 Slot [51] | NOT FINANCIAL TRANSACTION +07:13:42 Slot [82] | NOT FINANCIAL TRANSACTION +07:13:59 Slot [93] | NOT FINANCIAL TRANSACTION +07:14:10 +Slot[56] 0200 010000 6688990106481300 ------------- 00 668435 000005000000 507902507979050033006688990106481300 507902507979 811396 621354 S +07:14:14 Slot [100] | NOT FINANCIAL TRANSACTION +07:14:17 +Slot[91] 0200 301000 6213544001635231 ------------- 00 266734 032000131826 5079002667340342KMXF6213544001635231 507900266734 508554 180893 S +07:14:28 Slot [77] | NOT FINANCIAL TRANSACTION +07:14:29 Slot [65] | NOT FINANCIAL TRANSACTION +07:14:38 Slot [72] | NOT FINANCIAL TRANSACTION +07:14:40 Slot [106] | NOT FINANCIAL TRANSACTION +07:14:45 +Slot[66] 0200 301000 6688990601594508 ------------- 14 266736 032000134926 5079002667360466PSLB6688990601594508 507900266736 363239 180893 S +07:14:54 +Slot[76] 0200 300000 6213545000372205 ------------- 55 929999 000000000000 507902362913030160036213545000372205 507902362913 861921 668899 S +07:14:55 Slot [90] | NOT FINANCIAL TRANSACTION +07:14:56 Slot [114] | NOT FINANCIAL TRANSACTION +07:15:13 Slot [107] | NOT FINANCIAL TRANSACTION +07:15:18 +Slot[74] 0200 300000 6688990104927205 ------------- 00 668590 000000000000 507903499423060022006688990104927205 507903499423 879477 621354 S +07:15:24 Slot [83] | NOT FINANCIAL TRANSACTION +07:15:33 Slot [118] | NOT FINANCIAL TRANSACTION +07:15:33 +Slot[92] 0200 300000 6213545000372205 ------------- 00 930014 000000000000 507902362915030160036213545000372205 507902362915 105946 668899 S +07:15:39 Slot [113] | NOT FINANCIAL TRANSACTION +07:15:40 Slot [121] | NOT FINANCIAL TRANSACTION +07:15:50 Slot [108] | NOT FINANCIAL TRANSACTION +07:16:05 +Slot[94] 0200 300000 6213545000372205 ------------- 00 930024 000000000000 507902362916030160036213545000372205 507902362916 330184 668899 S +07:16:05 Slot [115] | NOT FINANCIAL TRANSACTION +07:16:17 Slot [127] | NOT FINANCIAL TRANSACTION +07:16:20 Slot [95] | NOT FINANCIAL TRANSACTION +07:16:22 +Slot[125] 0200 010000 6213545000836928 ------------- 61 266747 000200000000 5079002667470466PSLB6213545000836928 507900266747 757775 180893 S +07:16:33 Slot [75] | NOT FINANCIAL TRANSACTION +07:16:38 Slot [53] | NOT FINANCIAL TRANSACTION +07:16:42 Slot [134] | NOT FINANCIAL TRANSACTION +07:16:44 Slot [98] | NOT FINANCIAL TRANSACTION +07:16:46 +Slot[96] 0200 010000 6688990104927205 ------------- 00 668768 000025000000 507903499425060022006688990104927205 507903499425 615871 621354 S +07:16:53 +Slot[103] 0200 010000 6213545000836928 ------------- 00 266752 000100000000 5079002667520466PSLB6213545000836928 507900266752 478034 180893 S +07:17:05 Slot [71] | NOT FINANCIAL TRANSACTION +07:17:17 Slot [101] | NOT FINANCIAL TRANSACTION +07:17:29 Slot [102] | NOT FINANCIAL TRANSACTION +07:17:43 Slot [70] | NOT FINANCIAL TRANSACTION +07:17:44 Slot [109] | NOT FINANCIAL TRANSACTION +07:17:45 Slot [136] | NOT FINANCIAL TRANSACTION +07:17:53 Slot [131] | NOT FINANCIAL TRANSACTION +07:17:55 Slot [129] | NOT FINANCIAL TRANSACTION +07:18:11 Slot [85] | NOT FINANCIAL TRANSACTION +07:18:24 +Slot[105] 0200 013000 6688990103635908 ------------- 00 668982 000100000000 507903499427060022006688990103635908 507903499427 799973 621354 S +07:18:24 Slot [87] | NOT FINANCIAL TRANSACTION +07:18:38 Slot [138] | NOT FINANCIAL TRANSACTION +07:18:43 +Slot[104] 0200 010000 1888880000000505 ------------- 00 930078 000050000000 507900893436030170021888880000000505 507900893436 996818 668899 S +07:18:46 Slot [97] | NOT FINANCIAL TRANSACTION +07:18:48 Slot [117] | NOT FINANCIAL TRANSACTION +07:18:48 Slot [112] | NOT FINANCIAL TRANSACTION +07:19:04 Slot [140] | NOT FINANCIAL TRANSACTION +07:19:19 Slot [116] | NOT FINANCIAL TRANSACTION +07:19:30 Slot [111] | NOT FINANCIAL TRANSACTION +07:19:37 +Slot[147] 0200 303000 6688990103635908 ------------- 00 669132 000000000000 507903499428060022006688990103635908 507903499428 006970 621354 S +07:19:43 Slot [124] | NOT FINANCIAL TRANSACTION +07:19:48 Slot [80] | NOT FINANCIAL TRANSACTION +07:19:53 Slot [123] | NOT FINANCIAL TRANSACTION +07:19:55 Slot [122] | NOT FINANCIAL TRANSACTION +07:19:57 Slot [161] | NOT FINANCIAL TRANSACTION +07:20:08 Slot [132] | NOT FINANCIAL TRANSACTION +07:20:11 Slot [162] | NOT FINANCIAL TRANSACTION +07:20:21 +Slot[154] 0200 011000 1888880000003459 ------------- 00 669189 000010000000 507904376716030036001888880000003459 507904376716 317644 621354 S +07:20:23 Slot [143] | NOT FINANCIAL TRANSACTION +07:20:34 Slot [145] | NOT FINANCIAL TRANSACTION +07:20:45 Slot [158] | NOT FINANCIAL TRANSACTION +07:20:50 Slot [120] | NOT FINANCIAL TRANSACTION +07:20:58 Slot [150] | NOT FINANCIAL TRANSACTION +07:21:01 Slot [166] | NOT FINANCIAL TRANSACTION +07:21:09 +Slot[130] 0200 013000 6688990103283808 ------------- 55 669333 000100000000 507903499430060022006688990103283808 507903499430 950456 621354 S +07:21:19 +Slot[133] 0200 010000 1808930600007553 ------------- 00 669351 000010000000 507904422934030041001808930600007553 507904422934 432934 621354 S +07:21:20 Slot [153] | NOT FINANCIAL TRANSACTION +07:21:25 +Slot[142] 0200 011000 1808930600013866 ------------- 00 669372 000050000000 507904376718030036001808930600013866 507904376718 279181 621354 S +07:21:28 Slot [110] | NOT FINANCIAL TRANSACTION +07:21:38 Slot [167] | NOT FINANCIAL TRANSACTION +07:21:49 Slot [137] | NOT FINANCIAL TRANSACTION +07:21:52 Slot [128] | NOT FINANCIAL TRANSACTION +07:22:03 Slot [159] | NOT FINANCIAL TRANSACTION +07:22:04 +Slot[175] 0200 010000 1808930600007553 ------------- 00 669458 000010000000 507904422936030041001808930600007553 507904422936 358074 621354 S +07:22:09 +Slot[146] 0200 013000 6688990103283808 ------------- 00 669471 000100000000 507903499432060022006688990103283808 507903499432 623539 621354 S +07:22:11 Slot [170] | NOT FINANCIAL TRANSACTION +07:22:22 Slot [141] | NOT FINANCIAL TRANSACTION +07:22:35 +Slot[151] 0200 011000 6688990101741500 ------------- 61 266772 000350000000 5079002667720466PSLB6688990101741500 507900266772 653063 180893 S +07:22:44 Slot [164] | NOT FINANCIAL TRANSACTION +07:22:54 Slot [157] | NOT FINANCIAL TRANSACTION +07:22:56 Slot [172] | NOT FINANCIAL TRANSACTION +07:23:06 Slot [186] | NOT FINANCIAL TRANSACTION +07:23:08 Slot [148] | NOT FINANCIAL TRANSACTION +07:23:09 +Slot[182] 0200 010000 6688990101741500 ------------- 14 266777 000010000000 5079002667770466PSLB6688990101741500 507900266777 875279 180893 S +07:23:18 Slot [126] | NOT FINANCIAL TRANSACTION +07:23:28 Slot [171] | NOT FINANCIAL TRANSACTION +07:23:43 +Slot[119] 0200 012000 6688990103283808 ------------- 00 669696 000100000000 507903499435060022006688990103283808 507903499435 938279 621354 S +07:23:44 Slot [176] | NOT FINANCIAL TRANSACTION +07:23:48 +Slot[139] 0200 011000 6213544001409058 ------------- 00 201228 000010000000 507907201228000022226213544001409058 507907201228 331977 198901 S +07:23:56 Slot [202] | NOT FINANCIAL TRANSACTION +07:23:58 +Slot[156] 0200 010000 1808930600007553 ------------- 00 669724 000030000000 507904422941030041001808930600007553 507904422941 385035 621354 S +07:24:01 Slot [187] | NOT FINANCIAL TRANSACTION +07:24:13 Slot [160] | NOT FINANCIAL TRANSACTION +07:24:13 Slot [203] | NOT FINANCIAL TRANSACTION +07:24:16 +Slot[163] 0200 011000 6688990101741500 ------------- 61 266785 000350000000 5079002667850466PSLB6688990101741500 507900266785 051043 180893 S +07:24:24 Slot [179] | NOT FINANCIAL TRANSACTION +07:24:39 Slot [192] | NOT FINANCIAL TRANSACTION +07:24:50 Slot [144] | NOT FINANCIAL TRANSACTION +07:24:55 Slot [204] | NOT FINANCIAL TRANSACTION +07:24:58 Slot [135] | NOT FINANCIAL TRANSACTION +07:25:00 Slot [152] | NOT FINANCIAL TRANSACTION +07:25:06 +Slot[196] 0200 013000 6688990103635908 ------------- 00 669908 000100000000 507903499437060022006688990103635908 507903499437 835785 621354 S +07:25:11 Slot [191] | NOT FINANCIAL TRANSACTION +07:25:18 Slot [155] | NOT FINANCIAL TRANSACTION +07:25:27 Slot [181] | NOT FINANCIAL TRANSACTION +07:25:29 +Slot[190] 0200 010000 6688990101741500 ------------- 61 266790 000200000000 5079002667900466PSLB6688990101741500 507900266790 715526 180893 S +07:25:37 Slot [198] | NOT FINANCIAL TRANSACTION +07:25:42 +Slot[201] 0200 011000 6688990040098608 ------------- 00 669993 000100000000 507903443021060017006688990040098608 507903443021 630752 621354 S +07:25:48 +Slot[194] 0200 010000 6688990101741500 ------------- 61 266792 000200000000 5079002667920466PSLB6688990101741500 507900266792 497580 180893 S +07:25:57 +Slot[214] 0200 302000 6213545000333876 ------------- 00 266793 032000245826 5079002667930106NAXA6213545000333876 507900266793 681125 180893 S +07:26:00 Slot [165] | NOT FINANCIAL TRANSACTION +07:26:05 Slot [195] | NOT FINANCIAL TRANSACTION +07:26:16 Slot [184] | NOT FINANCIAL TRANSACTION +07:26:20 Slot [209] | NOT FINANCIAL TRANSACTION +07:26:23 Slot [178] | NOT FINANCIAL TRANSACTION +07:26:27 Slot [213] | NOT FINANCIAL TRANSACTION +07:26:42 Slot [208] | NOT FINANCIAL TRANSACTION +07:26:54 +Slot[206] 0200 010000 6213545000333876 ------------- 61 266795 000150000000 5079002667950106NAXA6213545000333876 507900266795 116862 180893 S +07:27:02 Slot [193] | NOT FINANCIAL TRANSACTION +07:27:04 Slot [221] | NOT FINANCIAL TRANSACTION +07:27:15 Slot [212] | NOT FINANCIAL TRANSACTION +07:27:18 +Slot[185] 0200 013000 6688990103635908 ------------- 00 670203 000050000000 507903499439060022006688990103635908 507903499439 221501 621354 S +07:27:28 Slot [211] | NOT FINANCIAL TRANSACTION +07:27:30 Slot [183] | NOT FINANCIAL TRANSACTION +07:27:41 Slot [207] | NOT FINANCIAL TRANSACTION +07:27:51 +Slot[149] 0200 010000 6213545000333876 ------------- 00 266798 000100000000 5079002667980106NAXA6213545000333876 507900266798 811019 180893 S +07:28:03 Slot [180] | NOT FINANCIAL TRANSACTION +07:28:04 Slot [174] | NOT FINANCIAL TRANSACTION +07:28:13 Slot [168] | NOT FINANCIAL TRANSACTION +07:28:26 Slot [189] | NOT FINANCIAL TRANSACTION +07:28:33 Slot [169] | NOT FINANCIAL TRANSACTION +07:28:39 Slot [225] | NOT FINANCIAL TRANSACTION +07:28:40 +Slot[222] 0200 013000 6688990103283808 ------------- 00 670395 000100000000 507903499441060022006688990103283808 507903499441 908789 621354 S +07:28:40 Slot [205] | NOT FINANCIAL TRANSACTION +07:28:55 Slot [232] | NOT FINANCIAL TRANSACTION +07:29:06 Slot [188] | NOT FINANCIAL TRANSACTION +07:29:06 Slot [230] | NOT FINANCIAL TRANSACTION +07:29:16 Slot [173] | NOT FINANCIAL TRANSACTION +07:29:27 Slot [229] | NOT FINANCIAL TRANSACTION +07:29:38 Slot [223] | NOT FINANCIAL TRANSACTION +07:29:38 Slot [177] | NOT FINANCIAL TRANSACTION +07:29:46 +Slot[215] 0200 302000 6213541000116643 ------------- 00 266802 032000284826 5079002668020401XSBR6213541000116643 507900266802 654789 180893 S +07:29:55 Slot [246] | NOT FINANCIAL TRANSACTION +07:29:55 Slot [242] | NOT FINANCIAL TRANSACTION +07:29:55 +Slot[243] 0200 010000 6213548000288140 ------------- 00 930343 000006000000 507900684250030020016213548000288140 507900684250 768048 668899 S +07:30:00 +Slot[235] 0200 010000 6688990106048901 ------------- 55 670594 000005000000 507903499443060022006688990106048901 507903499443 418820 621354 S +07:30:05 Slot [248] | NOT FINANCIAL TRANSACTION +07:30:08 Slot [244] | NOT FINANCIAL TRANSACTION +07:30:16 Slot [227] | NOT FINANCIAL TRANSACTION +07:30:29 Slot [251] | NOT FINANCIAL TRANSACTION +07:30:32 +Slot[250] 0200 010000 6688990106048901 ------------- 00 670675 000005000000 507903499445060022006688990106048901 507903499445 519583 621354 S +07:30:43 Slot [200] | NOT FINANCIAL TRANSACTION +07:30:44 Slot [255] | NOT FINANCIAL TRANSACTION +07:30:55 Slot [226] | NOT FINANCIAL TRANSACTION +07:31:00 +Slot[233] 0200 011000 6688990107776005 ------------- 14 107135 000003000000 507900327775010018006688990107776005 507900327775 823329 220699 S +07:31:05 Slot [238] | NOT FINANCIAL TRANSACTION +07:31:10 Slot [216] | NOT FINANCIAL TRANSACTION +07:31:16 Slot [237] | NOT FINANCIAL TRANSACTION +07:31:19 +Slot[234] 0200 010000 6213545000707467 ------------- 00 930386 000100000000 507902150920030200256213545000707467 507902150920 343555 668899 S +07:31:20 Slot [253] | NOT FINANCIAL TRANSACTION +07:31:27 Slot [210] | NOT FINANCIAL TRANSACTION +07:31:38 Slot [220] | NOT FINANCIAL TRANSACTION +07:31:42 +Slot[249] 0200 011000 6688990107776005 ------------- 14 107138 000003000000 507900327777010018006688990107776005 507900327777 995623 220699 S +07:31:48 Slot [260] | NOT FINANCIAL TRANSACTION +07:31:49 Slot [199] | NOT FINANCIAL TRANSACTION +07:32:00 Slot [259] | NOT FINANCIAL TRANSACTION +07:32:06 +Slot[263] 0200 011000 6213541000108194 ------------- 51 201332 000050000000 507907201332000022066213541000108194 507907201332 440842 198901 S +07:32:12 Slot [261] | NOT FINANCIAL TRANSACTION +07:32:14 +Slot[270] 0200 013000 6688990103283808 ------------- 00 670924 000050000000 507903499447060022006688990103283808 507903499447 255670 621354 S +07:32:14 Slot [269] | NOT FINANCIAL TRANSACTION +07:32:21 +Slot[240] 0200 301000 6213541000108194 ------------- 00 201335 000000000000 507907201335000022066213541000108194 507907201335 249700 198901 S +07:32:23 +Slot[197] 0200 010000 6213545000707467 ------------- 00 930421 000070000000 507902150922030200256213545000707467 507902150922 790676 668899 S +07:32:25 Slot [228] | NOT FINANCIAL TRANSACTION +07:32:27 +Slot[256] 0200 011000 6688990107776005 ------------- 14 107141 000005000000 507900327779010018006688990107776005 507900327779 919298 220699 S +07:32:31 +Slot[265] 0200 011000 6688990106596305 ------------- 00 670978 000030000000 507904599612020022006688990106596305 507904599612 483250 621354 S +07:32:41 Slot [275] | NOT FINANCIAL TRANSACTION +07:32:51 Slot [247] | NOT FINANCIAL TRANSACTION +07:32:53 Slot [218] | NOT FINANCIAL TRANSACTION +07:33:02 Slot [274] | NOT FINANCIAL TRANSACTION +07:33:09 +Slot[231] 0200 011000 6213541000108194 ------------- 00 201349 000020000000 507907201349000022066213541000108194 507907201349 982801 198901 S +07:33:14 Slot [279] | NOT FINANCIAL TRANSACTION +07:33:14 +Slot[264] 0200 010000 1808931400009054 ------------- 00 930434 000100000000 507901603948032020011808931400009054 507901603948 066916 668899 S +07:33:19 Slot [254] | NOT FINANCIAL TRANSACTION +07:33:29 Slot [239] | NOT FINANCIAL TRANSACTION +07:33:36 +Slot[273] 0200 011000 6213541000108194 ------------- 00 201356 000020000000 507907201356000022066213541000108194 507907201356 753942 198901 S +07:33:40 Slot [266] | NOT FINANCIAL TRANSACTION +07:33:46 +Slot[272] 0200 010000 6213545000318067 ------------- 00 930448 000010000000 507901237309030020026213545000318067 507901237309 139322 668899 S +07:33:51 Slot [282] | NOT FINANCIAL TRANSACTION +07:33:58 Slot [241] | NOT FINANCIAL TRANSACTION +07:34:02 Slot [252] | NOT FINANCIAL TRANSACTION +07:34:16 Slot [245] | NOT FINANCIAL TRANSACTION +07:34:20 Slot [280] | NOT FINANCIAL TRANSACTION +07:34:33 +Slot[276] 0200 301000 1808930300043411 ------------- 00 671320 000000000000 507902835017010077001808930300043411 507902835017 758676 621354 S +07:34:35 Slot [258] | NOT FINANCIAL TRANSACTION +07:34:43 +Slot[284] 0200 300000 6688990103330203 ------------- 00 671352 000000000000 507903365308130016006688990103330203 507903365308 699738 621354 S +07:34:46 Slot [219] | NOT FINANCIAL TRANSACTION +07:34:55 Slot [290] | NOT FINANCIAL TRANSACTION +07:34:57 Slot [287] | NOT FINANCIAL TRANSACTION +07:35:03 Slot [224] | NOT FINANCIAL TRANSACTION +07:35:08 Slot [271] | NOT FINANCIAL TRANSACTION +07:35:10 +Slot[288] 0200 010000 6688990108425404 ------------- 61 266818 000200000000 5079002668180263UDXB6688990108425404 507900266818 834894 180893 S +07:35:12 +Slot[277] 0200 300000 6213544002235650 ------------- 55 930487 000000000000 507901303567030060046213544002235650 507901303567 457822 668899 S +07:35:18 Slot [236] | NOT FINANCIAL TRANSACTION +07:35:21 +Slot[267] 0200 011000 6213544001162715 ------------- 00 201377 000010000000 507907201377000022016213544001162715 507907201377 188625 198901 S +07:35:23 Slot [293] | NOT FINANCIAL TRANSACTION +07:35:29 +Slot[278] 0200 300000 6688990103330203 ------------- 00 671526 000000000000 507903365309130016006688990103330203 507903365309 074324 621354 S +07:35:34 Slot [217] | NOT FINANCIAL TRANSACTION +07:35:47 +Slot[294] 0200 301000 6213544001162715 ------------- 00 201388 000000000000 507907201388000022016213544001162715 507907201388 354507 198901 S +07:35:48 Slot [298] | NOT FINANCIAL TRANSACTION +07:35:59 Slot [257] | NOT FINANCIAL TRANSACTION +07:36:05 +Slot[303] 0200 010000 6688990108425404 ------------- 14 266823 000100000000 5079002668230263UDXB6688990108425404 507900266823 564841 180893 S +07:36:08 Slot [302] | NOT FINANCIAL TRANSACTION +07:36:12 +Slot[299] 0200 010000 6213544002235650 ------------- 55 930519 000020000000 507901303569030060046213544002235650 507901303569 442551 668899 S +07:36:15 Slot [292] | NOT FINANCIAL TRANSACTION +07:36:20 Slot [281] | NOT FINANCIAL TRANSACTION +07:36:20 Slot [300] | NOT FINANCIAL TRANSACTION +07:36:26 Slot [295] | NOT FINANCIAL TRANSACTION +07:36:37 Slot [308] | NOT FINANCIAL TRANSACTION +07:36:42 +Slot[296] 0200 010000 6688990102444500 ------------- 65 671742 000100000000 507904350870030034006688990102444500 507904350870 159459 621354 S +07:36:49 Slot [283] | NOT FINANCIAL TRANSACTION +07:36:53 Slot [262] | NOT FINANCIAL TRANSACTION +07:37:00 +Slot[311] 0200 300000 6213544002235650 ------------- 75 930558 000000000000 507901303571030060046213544002235650 507901303571 670855 668899 S +07:37:04 Slot [316] | NOT FINANCIAL TRANSACTION +07:37:13 Slot [286] | NOT FINANCIAL TRANSACTION +07:37:13 +Slot[312] 0200 011000 1808930300043411 ------------- 00 671816 000100000000 507902835020010077001808930300043411 507902835020 534560 621354 S +07:37:20 Slot [306] | NOT FINANCIAL TRANSACTION +07:37:22 Slot [307] | NOT FINANCIAL TRANSACTION +07:37:30 +Slot[317] 0200 010000 6688990102444500 ------------- 65 671887 000100000000 507904350872030034006688990102444500 507904350872 450735 621354 S +07:37:31 Slot [310] | NOT FINANCIAL TRANSACTION +07:37:46 Slot [318] | NOT FINANCIAL TRANSACTION +07:38:05 +Slot[315] 0200 011000 6688990601163908 ------------- 00 671987 000040000000 507904009880010116006688990601163908 507904009880 009169 621354 S +07:38:06 +Slot[289] 0200 011000 1808931100011707 ------------- 00 671961 000050000000 507904548104020017001808931100011707 507904548104 379427 621354 S +07:38:12 +Slot[322] 0200 301000 1808930800006652 ------------- 55 671993 000000000000 507902916459120014001808930800006652 507902916459 610846 621354 S +07:38:17 +Slot[304] 0200 010000 6688990103273908 ------------- 00 672016 000100000000 507903499449060022006688990103273908 507903499449 387064 621354 S +07:38:18 Slot [285] | NOT FINANCIAL TRANSACTION +07:38:18 Slot [297] | NOT FINANCIAL TRANSACTION +07:38:20 +Slot[325] 0200 300000 6213544002235650 ------------- 75 930594 000000000000 507901303574030060046213544002235650 507901303574 654514 668899 S +07:38:24 Slot [291] | NOT FINANCIAL TRANSACTION +07:38:33 Slot [326] | NOT FINANCIAL TRANSACTION +07:38:44 Slot [305] | NOT FINANCIAL TRANSACTION +07:38:50 +Slot[301] 0200 300000 6213544002235650 ------------- 75 930612 000000000000 507901303576030060046213544002235650 507901303576 802713 668899 S +07:38:59 Slot [327] | NOT FINANCIAL TRANSACTION +07:39:10 +Slot[333] 0200 301000 1808930200021731 ------------- 00 672157 000000000000 507903975081010113001808930200021731 507903975081 118181 621354 S +07:39:15 +Slot[331] 0200 301000 1808930800006652 ------------- 00 672178 000000000000 507902916460120014001808930800006652 507902916460 301690 621354 S +07:39:17 +Slot[314] 0200 010000 6688990603104603 ------------- 14 266834 000100000000 5079002668340466PSLB6688990603104603 507900266834 354322 180893 S +07:39:23 Slot [321] | NOT FINANCIAL TRANSACTION +07:39:25 Slot [337] | NOT FINANCIAL TRANSACTION +07:39:26 Slot [334] | NOT FINANCIAL TRANSACTION +07:39:29 +Slot[336] 0200 301000 1808931100011707 ------------- 00 672237 000000000000 507904548105020017001808931100011707 507904548105 098028 621354 S +07:39:37 Slot [335] | NOT FINANCIAL TRANSACTION +07:39:46 +Slot[342] 0200 301000 6213545000137582 ------------- 00 266835 032000384826 5079002668350363CPSH6213545000137582 507900266835 715368 180893 S +07:39:49 +Slot[320] 0200 011000 1808930200021731 ------------- 00 672290 000100000000 507903975083010113001808930200021731 507903975083 244883 621354 S +07:39:54 Slot [341] | NOT FINANCIAL TRANSACTION +07:39:58 Slot [345] | NOT FINANCIAL TRANSACTION +07:40:09 Slot [268] | NOT FINANCIAL TRANSACTION +07:40:16 +Slot[344] 0200 010000 6688990105069304 ------------- 00 672384 000070000000 507904609428020023006688990105069304 507904609428 080207 621354 S +07:40:20 Slot [329] | NOT FINANCIAL TRANSACTION +07:40:28 Slot [323] | NOT FINANCIAL TRANSACTION +07:40:28 Slot [339] | NOT FINANCIAL TRANSACTION +07:40:30 Slot [348] | NOT FINANCIAL TRANSACTION +07:40:41 +Slot[309] 0200 011000 1808931100011707 ------------- 00 672437 000010000000 507904548107020017001808931100011707 507904548107 261670 621354 S +07:40:41 Slot [328] | NOT FINANCIAL TRANSACTION +07:40:43 +Slot[352] 0200 010000 6213545000137582 ------------- 55 266837 000100000000 5079002668370363CPSH6213545000137582 507900266837 429657 180893 S +07:40:51 +Slot[347] 0200 011000 1808930200021731 ------------- 00 672470 000100000000 507903975085010113001808930200021731 507903975085 768175 621354 S +07:40:58 Slot [350] | NOT FINANCIAL TRANSACTION +07:41:12 +Slot[319] 0200 011000 6688990108425404 ------------- 00 672541 000100000000 507903499451060022006688990108425404 507903499451 785776 621354 S +07:41:13 Slot [332] | NOT FINANCIAL TRANSACTION +07:41:21 Slot [346] | NOT FINANCIAL TRANSACTION +07:41:25 +Slot[356] 0200 011000 1808930800006652 ------------- 55 672586 000020000000 507902916462120014001808930800006652 507902916462 467067 621354 S +07:41:30 Slot [357] | NOT FINANCIAL TRANSACTION +07:41:33 Slot [330] | NOT FINANCIAL TRANSACTION +07:41:34 Slot [343] | NOT FINANCIAL TRANSACTION +07:41:49 +Slot[366] 0200 011000 1808930200021731 ------------- 00 672640 000100000000 507903975087010113001808930200021731 507903975087 947846 621354 S +07:41:54 Slot [313] | NOT FINANCIAL TRANSACTION +07:42:06 Slot [340] | NOT FINANCIAL TRANSACTION +07:42:08 +Slot[365] 0200 010000 6213545000786354 ------------- 00 266842 000100000000 5079002668420525XYBT6213545000786354 507900266842 261656 180893 S +07:42:23 +Slot[371] 0200 011000 1808930800006652 ------------- 00 672772 000020000000 507902916464120014001808930800006652 507902916464 175993 621354 S +07:42:28 +Slot[378] 0200 010000 6213545000137582 ------------- 00 266846 000100000000 5079002668460363CPSH6213545000137582 507900266846 952685 180893 S +07:42:32 Slot [324] | NOT FINANCIAL TRANSACTION +07:42:38 Slot [373] | NOT FINANCIAL TRANSACTION +07:42:49 +Slot[353] 0200 011000 1808930200021731 ------------- 00 672856 000030000000 507903975089010113001808930200021731 507903975089 268957 621354 S +07:42:51 Slot [382] | NOT FINANCIAL TRANSACTION +07:42:51 +Slot[355] 0200 011000 6688990108425404 ------------- 00 672872 000100000000 507903499453060022006688990108425404 507903499453 748452 621354 S +07:43:02 Slot [363] | NOT FINANCIAL TRANSACTION +07:43:07 +Slot[358] 0200 010000 6213545000786354 ------------- 00 266851 000050000000 5079002668510525XYBT6213545000786354 507900266851 403484 180893 S +07:43:17 Slot [370] | NOT FINANCIAL TRANSACTION +07:43:28 Slot [360] | NOT FINANCIAL TRANSACTION +07:43:30 +Slot[338] 0200 301000 6213545000362446 ------------- 00 930766 000000000000 507902161160030200266213545000362446 507902161160 953474 668899 S +07:43:34 Slot [379] | NOT FINANCIAL TRANSACTION +07:43:41 +Slot[354] 0200 301000 1808930200021731 ------------- 00 673021 000000000000 507903975090010113001808930200021731 507903975090 571746 621354 S +07:43:43 Slot [396] | NOT FINANCIAL TRANSACTION +07:43:44 Slot [351] | NOT FINANCIAL TRANSACTION +07:43:53 +Slot[369] 0200 010000 6213541000597164 ------------- 00 254814 000030000000 507900094400010009006213541000597164 507900094400 995238 220699 S +07:43:56 Slot [390] | NOT FINANCIAL TRANSACTION +07:44:05 +Slot[389] 0200 010000 6213545000362446 ------------- 00 930777 000004000000 507902161161030200266213545000362446 507902161161 893319 668899 S +07:44:07 Slot [359] | NOT FINANCIAL TRANSACTION +07:44:07 +Slot[374] 0200 011000 6688990108425404 ------------- 00 673126 000100000000 507903499455060022006688990108425404 507903499455 418849 621354 S +07:44:11 +Slot[376] 0200 301000 2206990000132423 ------------- 00 201510 000000000000 507907201510015290262206990000132423 507907201510 621074 198901 S +07:44:18 Slot [361] | NOT FINANCIAL TRANSACTION +07:44:21 +Slot[395] 0200 012000 6213545000786354 ------------- 00 266857 000030000000 5079002668570525XYBT6213545000786354 507900266857 517374 180893 S +07:44:28 Slot [410] | NOT FINANCIAL TRANSACTION +07:44:36 Slot [383] | NOT FINANCIAL TRANSACTION +07:44:39 Slot [393] | NOT FINANCIAL TRANSACTION +07:44:48 Slot [349] | NOT FINANCIAL TRANSACTION +07:44:54 Slot [413] | NOT FINANCIAL TRANSACTION +07:44:54 Slot [397] | NOT FINANCIAL TRANSACTION +07:45:06 Slot [414] | NOT FINANCIAL TRANSACTION +07:45:13 +Slot[400] 0200 011000 2206990000132423 ------------- 00 201525 000007000000 507907201525015290262206990000132423 507907201525 494252 198901 S +07:45:17 Slot [399] | NOT FINANCIAL TRANSACTION +07:45:28 Slot [387] | NOT FINANCIAL TRANSACTION +07:45:29 +Slot[394] 0200 011000 6688990108425404 ------------- 00 673393 000100000000 507903499457060022006688990108425404 507903499457 325741 621354 S +07:45:30 +Slot[368] 0200 301000 6213545000160147 ------------- 00 266864 032000443326 5079002668640363CPSH6213545000160147 507900266864 365527 180893 S +07:45:38 Slot [372] | NOT FINANCIAL TRANSACTION +07:45:39 Slot [418] | NOT FINANCIAL TRANSACTION +07:45:49 +Slot[406] 0200 010000 6213545000785893 ------------- 00 266867 000100000000 5079002668670525XYBT6213545000785893 507900266867 834045 180893 S +07:45:53 Slot [419] | NOT FINANCIAL TRANSACTION +07:45:59 +Slot[411] 0200 302000 6213544001861092 ------------- 00 930851 000000000000 507902045642032050026213544001861092 507902045642 973080 668899 S +07:46:01 +Slot[380] 0200 010000 6213545000160147 ------------- 00 266870 000100000000 5079002668700363CPSH6213545000160147 507900266870 968611 180893 S +07:46:07 +Slot[407] 0200 010000 6688990040118174 ------------- 14 266873 000050000000 5079002668730485HPXT6688990040118174 507900266873 599371 180893 S +07:46:15 Slot [384] | NOT FINANCIAL TRANSACTION +07:46:21 Slot [416] | NOT FINANCIAL TRANSACTION +07:46:21 +Slot[401] 0200 301000 6213544001861092 ------------- 00 930864 000000000000 507902045643032050026213544001861092 507902045643 347229 668899 S +07:46:25 Slot [420] | NOT FINANCIAL TRANSACTION +07:46:36 Slot [381] | NOT FINANCIAL TRANSACTION +07:46:37 +Slot[415] 0200 010000 6688990040118174 ------------- 14 266879 000050000000 5079002668790485HPXT6688990040118174 507900266879 511769 180893 S +07:46:40 Slot [398] | NOT FINANCIAL TRANSACTION +07:46:40 +Slot[425] 0200 300000 6213544001861092 ------------- 00 930874 000000000000 507902045644032050026213544001861092 507902045644 152225 668899 S +07:46:45 +Slot[433] 0200 010000 6213545000785893 ------------- 00 266881 000050000000 5079002668810525XYBT6213545000785893 507900266881 896810 180893 S +07:46:56 +Slot[388] 0200 011000 6213545000160147 ------------- 00 266885 000045000000 5079002668850363CPSH6213545000160147 507900266885 005909 180893 S +07:46:58 Slot [364] | NOT FINANCIAL TRANSACTION +07:47:07 Slot [430] | NOT FINANCIAL TRANSACTION +07:47:10 +Slot[367] 0200 010000 6688990040020628 ------------- 14 266888 000010000000 5079002668880401XSBR6688990040020628 507900266888 954648 180893 S +07:47:18 Slot [441] | NOT FINANCIAL TRANSACTION +07:47:25 +Slot[402] 0200 010000 6213544001861092 ------------- 00 930898 000020000000 507902045645032050026213544001861092 507902045645 301344 668899 S +07:47:27 +Slot[375] 0200 301000 6688990108425909 ------------- 00 673877 000000000000 507903499458060022006688990108425909 507903499458 258805 621354 S +07:47:29 Slot [408] | NOT FINANCIAL TRANSACTION +07:47:39 +Slot[409] 0200 301000 6213545000159446 ------------- 00 266895 032000464126 5079002668950363CPSH6213545000159446 507900266895 284004 180893 S +07:47:42 Slot [437] | NOT FINANCIAL TRANSACTION +07:47:48 +Slot[385] 0200 010000 6688990040020628 ------------- 14 266898 000010000000 5079002668980401XSBR6688990040020628 507900266898 847885 180893 S +07:48:00 Slot [362] | NOT FINANCIAL TRANSACTION +07:48:03 Slot [403] | NOT FINANCIAL TRANSACTION +07:48:11 Slot [447] | NOT FINANCIAL TRANSACTION +07:48:12 +Slot[412] 0200 010000 6213544002213517 ------------- 00 930922 000050000000 507901416551030110026213544002213517 507901416551 066617 668899 S +07:48:14 +Slot[392] 0200 010000 6213545000159446 ------------- 00 266902 000100000000 5079002669020363CPSH6213545000159446 507900266902 725512 180893 S +07:48:28 Slot [450] | NOT FINANCIAL TRANSACTION +07:48:44 Slot [417] | NOT FINANCIAL TRANSACTION +07:48:47 +Slot[386] 0200 011000 1808931300034475 ------------- 00 674132 000010000000 507903938891010109001808931300034475 507903938891 406942 621354 S +07:48:48 Slot [377] | NOT FINANCIAL TRANSACTION +07:48:58 Slot [391] | NOT FINANCIAL TRANSACTION +07:49:08 Slot [443] | NOT FINANCIAL TRANSACTION +07:49:09 +Slot[405] 0200 011000 6213545000159446 ------------- 51 266906 000035000000 5079002669060363CPSH6213545000159446 507900266906 261118 180893 S +07:49:19 Slot [446] | NOT FINANCIAL TRANSACTION +07:49:20 +Slot[456] 0200 010000 6213545000253322 ------------- 00 930959 000040000000 507902730335030130056213545000253322 507902730335 912859 668899 S +07:49:25 +Slot[435] 0200 010000 6688990040020628 ------------- 14 266908 000010000000 5079002669080401XSBR6688990040020628 507900266908 717625 180893 S +07:49:35 Slot [429] | NOT FINANCIAL TRANSACTION +07:49:36 +Slot[404] 0200 300000 6213548000409183 ------------- 00 930971 000000000000 507901311927030060056213548000409183 507901311927 199887 668899 S +07:49:38 +Slot[424] 0200 301000 6213544001861092 ------------- 00 930972 000000000000 507902045647032050026213544001861092 507902045647 710029 668899 S +07:49:46 Slot [445] | NOT FINANCIAL TRANSACTION +07:49:50 +Slot[442] 0200 010000 6688990602699207 ------------- 14 266911 000010000000 5079002669110201ADD16688990602699207 507900266911 992499 180893 S +07:49:51 +Slot[438] 0200 301000 6688990108156603 ------------- 14 266913 032000485526 5079002669130522XYXH6688990108156603 507900266913 030814 180893 S +07:49:54 Slot [434] | NOT FINANCIAL TRANSACTION +07:50:00 +Slot[428] 0200 010000 6213544000794070 ------------- 00 930980 000100000000 507901523449032160016213544000794070 507901523449 154646 668899 S +07:50:02 Slot [427] | NOT FINANCIAL TRANSACTION +07:50:11 Slot [451] | NOT FINANCIAL TRANSACTION +07:50:13 Slot [457] | NOT FINANCIAL TRANSACTION +07:50:13 Slot [462] | NOT FINANCIAL TRANSACTION +07:50:13 +Slot[426] 0200 010000 6213544002161690 ------------- 00 930991 000100000000 507901963358030200196213544002161690 507901963358 352666 668899 S +07:50:15 +Slot[431] 0200 011000 6213545000159446 ------------- 00 266916 000034000000 5079002669160363CPSH6213545000159446 507900266916 273267 180893 S +07:50:29 Slot [422] | NOT FINANCIAL TRANSACTION +07:50:43 +Slot[444] 0200 010000 6688990602699207 ------------- 14 266920 000010000000 5079002669200201ADD16688990602699207 507900266920 685320 180893 S +07:50:47 +Slot[421] 0200 302000 6688990108156603 ------------- 14 266922 032000494926 5079002669220522XYXH6688990108156603 507900266922 978151 180893 S +07:50:48 +Slot[465] 0200 300000 6213548000409183 ------------- 00 931014 000000000000 507901311928030060056213548000409183 507901311928 646634 668899 S +07:50:48 Slot [439] | NOT FINANCIAL TRANSACTION +07:50:59 Slot [423] | NOT FINANCIAL TRANSACTION +07:51:04 +Slot[458] 0200 301000 6213548000409183 ------------- 00 931027 000000000000 507901311929030060056213548000409183 507901311929 566845 668899 S +07:51:15 Slot [436] | NOT FINANCIAL TRANSACTION +07:51:18 Slot [459] | NOT FINANCIAL TRANSACTION +07:51:19 +Slot[466] 0200 010000 6688990108085000 ------------- 00 674719 000010000000 507903611561160014006688990108085000 507903611561 399741 621354 S +07:51:21 Slot [475] | NOT FINANCIAL TRANSACTION +07:51:31 Slot [452] | NOT FINANCIAL TRANSACTION +07:51:33 +Slot[468] 0200 300000 6213544002161690 ------------- 00 931053 000000000000 507901963360030200196213544002161690 507901963360 702062 668899 S +07:51:43 +Slot[449] 0200 010000 1989010003137322 ------------- 00 674792 000010000000 507904539409020016001989010003137322 507904539409 585460 621354 S +07:51:45 +Slot[455] 0200 010000 6213544001849113 ------------- 00 931062 000005000000 507902678600030200356213544001849113 507902678600 521714 668899 S +07:51:47 Slot [440] | NOT FINANCIAL TRANSACTION +07:51:50 Slot [460] | NOT FINANCIAL TRANSACTION +07:51:58 +Slot[432] 0200 300000 6213548000409183 ------------- 00 931072 000000000000 507901311931030060056213548000409183 507901311931 632881 668899 S +07:51:58 Slot [482] | NOT FINANCIAL TRANSACTION +07:51:59 +Slot[453] 0200 012000 6688990040152975 ------------- 00 674875 000020000000 507904965363150011006688990040152975 507904965363 201650 621354 S +07:52:09 Slot [488] | NOT FINANCIAL TRANSACTION +07:52:20 Slot [470] | NOT FINANCIAL TRANSACTION +07:52:23 Slot [495] | NOT FINANCIAL TRANSACTION +07:52:29 +Slot[463] 0200 010000 6213544002045760 ------------- 00 931114 000010000000 507901963362030200196213544002045760 507901963362 141799 668899 S +07:52:31 Slot [490] | NOT FINANCIAL TRANSACTION +07:52:36 +Slot[484] 0200 300000 6213543000242155 ------------- 00 931120 000000000000 507901972357030120036213543000242155 507901972357 626575 668899 S +07:52:42 Slot [448] | NOT FINANCIAL TRANSACTION +07:52:52 Slot [480] | NOT FINANCIAL TRANSACTION +07:52:55 +Slot[471] 0200 010000 6213544002022223 ------------- 00 177305 000035000000 507900010185010001006213544002022223 507900010185 488062 220699 S +07:52:58 Slot [479] | NOT FINANCIAL TRANSACTION +07:53:09 Slot [0] | NOT FINANCIAL TRANSACTION +07:53:12 +Slot[498] 0200 302000 6213543000242155 ------------- 00 931154 000000000000 507901972358030120036213543000242155 507901972358 124635 668899 S +07:53:26 Slot [2] | NOT FINANCIAL TRANSACTION +07:53:28 Slot [493] | NOT FINANCIAL TRANSACTION +07:53:35 Slot [1] | NOT FINANCIAL TRANSACTION +07:53:38 +Slot[473] 0200 301000 6213545001028699 ------------- 00 931172 000000000000 507901196821030200116213545001028699 507901196821 695156 668899 S +07:53:38 Slot [4] | NOT FINANCIAL TRANSACTION +07:53:53 Slot [483] | NOT FINANCIAL TRANSACTION +07:53:54 Slot [474] | NOT FINANCIAL TRANSACTION +07:54:05 +Slot[489] 0200 301000 6213541000725161 ------------- 00 266936 032000530826 5079002669360527LPBL6213541000725161 507900266936 090284 180893 S +07:54:15 Slot [476] | NOT FINANCIAL TRANSACTION +07:54:26 Slot [472] | NOT FINANCIAL TRANSACTION +07:54:33 Slot [486] | NOT FINANCIAL TRANSACTION +07:54:35 +Slot[477] 0200 010000 6213544002198866 ------------- 00 931227 000025000000 507900537001030140016213544002198866 507900537001 019819 668899 S +07:54:36 Slot [492] | NOT FINANCIAL TRANSACTION +07:54:43 +Slot[6] 0200 010000 6213543000242155 ------------- 00 931232 000100000000 507901972360030120036213543000242155 507901972360 722720 668899 S +07:54:45 +Slot[485] 0200 302000 6213544002031695 ------------- 00 931235 000000000000 507900285705030100056213544002031695 507900285705 654276 668899 S +07:54:49 Slot [454] | NOT FINANCIAL TRANSACTION +07:54:54 Slot [14] | NOT FINANCIAL TRANSACTION +07:54:56 Slot [13] | NOT FINANCIAL TRANSACTION +07:55:01 +Slot[12] 0200 010000 6213545000830715 ------------- 00 266938 000050000000 5079002669380367BL206213545000830715 507900266938 660520 180893 S +07:55:10 Slot [16] | NOT FINANCIAL TRANSACTION +07:55:21 +Slot[494] 0200 011000 6213541000725161 ------------- 00 266941 000010000000 5079002669410527LPBL6213541000725161 507900266941 432317 180893 S +07:55:27 +Slot[22] 0200 010000 6213544002031695 ------------- 00 931265 000007000000 507900285706030100056213544002031695 507900285706 766167 668899 S +07:55:31 Slot [491] | NOT FINANCIAL TRANSACTION +07:55:33 +Slot[469] 0200 010000 6213544001716817 ------------- 00 931271 000004000000 507902475657030200326213544001716817 507902475657 541919 668899 S +07:55:38 Slot [17] | NOT FINANCIAL TRANSACTION +07:55:47 Slot [499] | NOT FINANCIAL TRANSACTION +07:55:58 Slot [10] | NOT FINANCIAL TRANSACTION +07:55:58 Slot [31] | NOT FINANCIAL TRANSACTION +07:56:08 Slot [481] | NOT FINANCIAL TRANSACTION +07:56:19 Slot [23] | NOT FINANCIAL TRANSACTION +07:56:21 Slot [3] | NOT FINANCIAL TRANSACTION +07:56:30 +Slot[29] 0200 010000 6213545000830715 ------------- 00 266952 000010000000 5079002669520367BL206213545000830715 507900266952 295564 180893 S +07:56:40 Slot [7] | NOT FINANCIAL TRANSACTION +07:56:43 Slot [33] | NOT FINANCIAL TRANSACTION +07:56:51 Slot [21] | NOT FINANCIAL TRANSACTION +07:56:58 +Slot[35] 0200 010000 6213543000242155 ------------- 00 931349 000050000000 507901972362030120036213543000242155 507901972362 027710 668899 S +07:57:00 Slot [11] | NOT FINANCIAL TRANSACTION +07:57:02 Slot [30] | NOT FINANCIAL TRANSACTION +07:57:11 +Slot[496] 0200 012000 6213548000409183 ------------- 00 266957 000004000000 5079002669570527LPBL6213548000409183 507900266957 958544 180893 S +07:57:23 Slot [37] | NOT FINANCIAL TRANSACTION +07:57:27 +Slot[461] 0200 010000 6213545001030968 ------------- 00 931378 000050000000 507902150926030200256213545001030968 507902150926 587942 668899 S +07:57:28 +Slot[36] 0200 301000 6213545000830715 ------------- 00 266960 032000562926 5079002669600367BL206213545000830715 507900266960 505929 180893 S +07:57:38 Slot [9] | NOT FINANCIAL TRANSACTION +07:57:48 Slot [45] | NOT FINANCIAL TRANSACTION +07:57:49 Slot [18] | NOT FINANCIAL TRANSACTION +07:57:53 +Slot[467] 0200 010000 6213544001171450 ------------- 00 931402 000100000000 507900858218030150046213544001171450 507900858218 088277 668899 S +07:57:55 +Slot[40] 0200 010000 1808931300011242 ------------- 55 931403 000010000000 507901203864030200121808931300011242 507901203864 782719 668899 S +07:58:02 Slot [497] | NOT FINANCIAL TRANSACTION +07:58:06 Slot [43] | NOT FINANCIAL TRANSACTION +07:58:14 +Slot[8] 0200 011000 6213545000951891 ------------- 00 266965 000020000000 5079002669650115LPBR6213545000951891 507900266965 330848 180893 S +07:58:19 +Slot[28] 0200 010000 6213543000001114 ------------- 00 266966 000100000000 5079002669660120SLVB6213543000001114 507900266966 791241 180893 S +07:58:28 Slot [50] | NOT FINANCIAL TRANSACTION +07:58:38 Slot [52] | NOT FINANCIAL TRANSACTION +07:58:43 +Slot[44] 0200 011000 6213545000830715 ------------- 00 266971 000020000000 5079002669710367BL206213545000830715 507900266971 408179 180893 S +07:58:48 +Slot[61] 0200 010000 1808931300011242 ------------- 00 931455 000010000000 507901203866030200121808931300011242 507901203866 952840 668899 S +07:58:53 Slot [25] | NOT FINANCIAL TRANSACTION +07:58:55 Slot [15] | NOT FINANCIAL TRANSACTION +07:59:04 Slot [55] | NOT FINANCIAL TRANSACTION +07:59:12 +Slot[478] 0200 301000 6213541000677545 ------------- 00 266977 032000581326 5079002669770441VT526213541000677545 507900266977 315787 180893 S +07:59:22 Slot [68] | NOT FINANCIAL TRANSACTION +07:59:33 Slot [60] | NOT FINANCIAL TRANSACTION +07:59:34 +Slot[63] 0200 010000 1888880000079202 ------------- 00 931502 000100000000 507902531610030200331888880000079202 507902531610 103799 668899 S +07:59:49 +Slot[41] 0200 311000 6213545000537245 ------------- 00 021099 000000000000 507900263070010014006213545000537245 507900263070 515699 220699 S +07:59:49 Slot [464] | NOT FINANCIAL TRANSACTION +07:59:53 +Slot[38] 0200 010000 6213541000677545 ------------- 00 266983 000100000000 5079002669830441VT526213541000677545 507900266983 883099 180893 S +07:59:54 Slot [73] | NOT FINANCIAL TRANSACTION +08:00:00 Slot [27] | NOT FINANCIAL TRANSACTION +08:00:05 Slot [32] | NOT FINANCIAL TRANSACTION +08:00:06 Slot [487] | NOT FINANCIAL TRANSACTION +08:00:18 Slot [20] | NOT FINANCIAL TRANSACTION +08:00:32 Slot [26] | NOT FINANCIAL TRANSACTION +08:00:37 +Slot[48] 0200 010000 6213545000537245 ------------- 00 021103 000100000000 507900263073010014006213545000537245 507900263073 195181 220699 S +08:00:39 +Slot[46] 0200 010000 6213544001447850 ------------- 00 931558 000050000000 507900858220030150046213544001447850 507900858220 307756 668899 S +08:00:56 +Slot[19] 0200 011000 1808931000004760 ------------- 00 677058 000015000000 507904830347110007001808931000004760 507904830347 314415 621354 S +08:00:57 Slot [69] | NOT FINANCIAL TRANSACTION +08:00:58 Slot [58] | NOT FINANCIAL TRANSACTION +08:01:05 Slot [78] | NOT FINANCIAL TRANSACTION +08:01:07 +Slot[47] 0200 010000 6213541000677545 ------------- 00 266995 000010000000 5079012669950441VT526213541000677545 507901266995 134900 180893 S +08:01:08 Slot [54] | NOT FINANCIAL TRANSACTION +08:01:20 Slot [81] | NOT FINANCIAL TRANSACTION +08:01:20 Slot [24] | NOT FINANCIAL TRANSACTION +08:01:30 Slot [57] | NOT FINANCIAL TRANSACTION +08:01:37 +Slot[34] 0200 010000 6213545000537245 ------------- 00 021106 000100000000 507900263075010014006213545000537245 507900263075 160336 220699 S +08:01:40 Slot [42] | NOT FINANCIAL TRANSACTION +08:01:51 Slot [86] | NOT FINANCIAL TRANSACTION +08:02:02 +Slot[49] 0200 010000 1888880000079202 ------------- 00 931623 000100000000 507902531612030200331888880000079202 507902531612 743820 668899 S +08:02:07 Slot [88] | NOT FINANCIAL TRANSACTION +08:02:10 Slot [89] | NOT FINANCIAL TRANSACTION +08:02:10 Slot [59] | NOT FINANCIAL TRANSACTION +08:02:13 +Slot[5] 0200 011000 6213541000677545 ------------- 00 267003 000040000000 5079012670030441VT526213541000677545 507901267003 196261 180893 S +08:02:23 Slot [79] | NOT FINANCIAL TRANSACTION +08:02:35 Slot [84] | NOT FINANCIAL TRANSACTION +08:02:46 Slot [67] | NOT FINANCIAL TRANSACTION +08:02:49 +Slot[62] 0200 301000 6213542000048893 ------------- 00 931667 000000000000 507901416555030110026213542000048893 507901416555 502187 668899 S +08:02:51 +Slot[99] 0200 300000 6688990100639606 ------------- 00 677604 000000000000 507903433171060016006688990100639606 507903433171 496205 621354 S +08:02:56 Slot [39] | NOT FINANCIAL TRANSACTION +08:03:11 +Slot[64] 0200 300000 6213542000048893 ------------- 00 931680 000000000000 507901416556030110026213542000048893 507901416556 716953 668899 S +08:03:12 Slot [51] | NOT FINANCIAL TRANSACTION +08:03:13 Slot [82] | NOT FINANCIAL TRANSACTION +08:03:15 Slot [93] | NOT FINANCIAL TRANSACTION +08:03:27 +Slot[56] 0200 010000 6213548000248698 ------------- 51 931694 000050000000 507901343755033070016213548000248698 507901343755 355120 668899 S +08:03:27 Slot [100] | NOT FINANCIAL TRANSACTION +08:03:35 +Slot[91] 0200 010000 6213542000048893 ------------- 00 931699 000100000000 507901416557030110026213542000048893 507901416557 448975 668899 S +08:03:38 Slot [77] | NOT FINANCIAL TRANSACTION +08:03:44 +Slot[65] 0200 010000 6213545000782635 ------------- 00 931703 000060000000 507900858222030150046213545000782635 507900858222 951893 668899 S +08:03:49 Slot [72] | NOT FINANCIAL TRANSACTION +08:04:04 Slot [106] | NOT FINANCIAL TRANSACTION +08:04:14 Slot [66] | NOT FINANCIAL TRANSACTION +08:04:15 Slot [76] | NOT FINANCIAL TRANSACTION +08:04:20 Slot [90] | NOT FINANCIAL TRANSACTION +08:04:26 Slot [83] | NOT FINANCIAL TRANSACTION +08:04:27 +Slot[114] 0200 010000 6213542000048893 ------------- 00 931732 000080000000 507901416559030110026213542000048893 507901416559 115821 668899 S +08:04:29 +Slot[74] 0200 300000 6688990103330203 ------------- 00 678016 000000000000 507903385624130018006688990103330203 507903385624 268514 621354 S +08:04:31 +Slot[107] 0200 010000 6213544001980306 ------------- 61 267013 000200000000 5079012670130522XYXH6213544001980306 507901267013 608061 180893 S +08:04:41 Slot [118] | NOT FINANCIAL TRANSACTION +08:04:52 Slot [92] | NOT FINANCIAL TRANSACTION +08:04:54 Slot [121] | NOT FINANCIAL TRANSACTION +08:04:59 +Slot[113] 0200 300000 6688990101025904 ------------- 00 678165 000000000000 507904719357180010006688990101025904 507904719357 839776 621354 S +08:05:05 +Slot[108] 0200 011000 1808930200055176 ------------- 00 678178 000020000000 507903592039160012001808930200055176 507903592039 356450 621354 S +08:05:09 Slot [94] | NOT FINANCIAL TRANSACTION +08:05:16 Slot [115] | NOT FINANCIAL TRANSACTION +08:05:25 Slot [127] | NOT FINANCIAL TRANSACTION +08:05:26 Slot [95] | NOT FINANCIAL TRANSACTION +08:05:34 +Slot[125] 0200 311000 6213544001840682 ------------- 00 079023 000000000000 507900132913030001006213544001840682 507900132913 606834 220699 S +08:05:36 Slot [75] | NOT FINANCIAL TRANSACTION +08:05:41 +Slot[53] 0200 010000 6213544001980306 ------------- 00 267019 000100000000 5079012670190522XYXH6213544001980306 507901267019 449069 180893 S +08:05:43 +Slot[134] 0200 010000 6213548000228765 ------------- 00 931801 000005000000 507901963372030200196213548000228765 507901963372 873757 668899 S +08:05:45 +Slot[98] 0200 010000 6688990101025904 ------------- 00 678399 000100000000 507904719359180010006688990101025904 507904719359 306564 621354 S +08:05:52 Slot [96] | NOT FINANCIAL TRANSACTION +08:06:01 +Slot[103] 0200 010000 6688990100966108 ------------- 14 267022 000010000000 5079012670220467PSLK6688990100966108 507901267022 012378 180893 S +08:06:11 +Slot[71] 0200 011000 1808930300018793 ------------- 00 678527 000100000000 507903028249120025001808930300018793 507903028249 529784 621354 S +08:06:18 Slot [101] | NOT FINANCIAL TRANSACTION +08:06:18 Slot [102] | NOT FINANCIAL TRANSACTION +08:06:20 Slot [70] | NOT FINANCIAL TRANSACTION +08:06:28 Slot [109] | NOT FINANCIAL TRANSACTION +08:06:31 Slot [136] | NOT FINANCIAL TRANSACTION +08:06:37 +Slot[131] 0200 010000 6213544001980306 ------------- 00 267024 000100000000 5079012670240522XYXH6213544001980306 507901267024 196561 180893 S +08:06:46 Slot [85] | NOT FINANCIAL TRANSACTION +08:06:50 +Slot[129] 0200 010000 6688990101025904 ------------- 00 678740 000050000000 507904719361180010006688990101025904 507904719361 801815 621354 S +08:06:58 Slot [105] | NOT FINANCIAL TRANSACTION +08:07:14 +Slot[87] 0200 010000 6213541000001464 ------------- 00 931870 000050000000 507900493842030010066213541000001464 507900493842 662081 668899 S +08:07:15 Slot [104] | NOT FINANCIAL TRANSACTION +08:07:16 +Slot[138] 0420 011000 1808930300018793 ------------- 00 678527 000100000000 507903028249120025001808930300018793 507903028249 -------- 621354 S +08:07:20 Slot [97] | NOT FINANCIAL TRANSACTION +08:07:31 Slot [117] | NOT FINANCIAL TRANSACTION +08:07:36 Slot [112] | NOT FINANCIAL TRANSACTION +08:07:43 +Slot[140] 0200 302000 6213545001102825 ------------- 00 931895 000000000000 507900844806030150036213545001102825 507900844806 903418 668899 S +08:07:46 Slot [116] | NOT FINANCIAL TRANSACTION +08:07:57 Slot [111] | NOT FINANCIAL TRANSACTION +08:08:07 +Slot[147] 0200 301000 6688990603097609 ------------- 14 267034 032001071026 5079012670340522XYXH6688990603097609 507901267034 667494 180893 S +08:08:17 +Slot[124] 0200 010000 2206991200035946 ------------- 00 267036 000100000000 5079012670360101VTEB2206991200035946 507901267036 933316 180893 S +08:08:22 Slot [123] | NOT FINANCIAL TRANSACTION +08:08:25 +Slot[80] 0200 010000 6688990105999906 ------------- 00 679193 000010000000 507903938920010109006688990105999906 507903938920 039634 621354 S +08:08:29 Slot [161] | NOT FINANCIAL TRANSACTION +08:08:33 +Slot[122] 0420 011000 1808930300018793 0000000000000 00 678527 000100000000 507903028249120025001808930300018793 507903028249 678527 621354 S +08:08:41 Slot [162] | NOT FINANCIAL TRANSACTION +08:08:43 +Slot[132] 0200 011000 1808930800023293 ------------- 00 679236 000010000000 507905064593120029001808930800023293 507905064593 349349 621354 S +08:08:45 +Slot[154] 0200 010000 6213544001065157 ------------- 00 931945 000080000000 507900285712030100056213544001065157 507900285712 355728 668899 S +08:08:45 Slot [143] | NOT FINANCIAL TRANSACTION +08:08:55 Slot [145] | NOT FINANCIAL TRANSACTION +08:09:03 +Slot[158] 0200 301000 6213548000341055 ------------- 55 267041 032001080626 5079012670410522XYXH6213548000341055 507901267041 916015 180893 S +08:09:11 Slot [150] | NOT FINANCIAL TRANSACTION +08:09:16 +Slot[120] 0200 010000 6213544000492733 ------------- 00 267044 000100000000 5079012670440301LPBX6213544000492733 507901267044 849486 180893 S +08:09:17 +Slot[166] 0200 010000 6688990103644405 ------------- 14 267045 000050000000 5079012670450464UDPB6688990103644405 507901267045 846686 180893 S +08:09:24 Slot [130] | NOT FINANCIAL TRANSACTION +08:09:27 Slot [133] | NOT FINANCIAL TRANSACTION +08:09:32 +Slot[153] 0200 010000 6213541000473317 ------------- 00 931978 000100000000 507900844808030150036213541000473317 507900844808 350192 668899 S +08:09:39 +Slot[142] 0200 011000 1808930300018793 ------------- 00 679433 000100000000 507903028252120025001808930300018793 507903028252 507459 621354 S +08:09:41 +Slot[110] 0200 301000 1808930800023293 ------------- 00 679453 000000000000 507905064594120029001808930800023293 507905064594 649366 621354 S +08:09:45 Slot [167] | NOT FINANCIAL TRANSACTION +08:09:46 Slot [137] | NOT FINANCIAL TRANSACTION +08:09:54 Slot [159] | NOT FINANCIAL TRANSACTION +08:09:54 +Slot[128] 0200 010000 6213545000697551 ------------- 00 932000 000100000000 507901373543032090016213545000697551 507901373543 212782 668899 S +08:10:01 Slot [175] | NOT FINANCIAL TRANSACTION +08:10:11 +Slot[146] 0200 010000 6213544000492733 ------------- 00 267050 000010000000 5079012670500301LPBX6213544000492733 507901267050 316484 180893 S +08:10:17 Slot [141] | NOT FINANCIAL TRANSACTION +08:10:19 +Slot[170] 0200 301000 6688990103063903 ------------- 14 267052 032001092326 5079012670520522XYXH6688990103063903 507901267052 079882 180893 S +08:10:26 Slot [151] | NOT FINANCIAL TRANSACTION +08:10:28 Slot [157] | NOT FINANCIAL TRANSACTION +08:10:30 +Slot[164] 0200 010000 6213541000314255 ------------- 00 267055 000100000000 5079012670550482XKMO6213541000314255 507901267055 935646 180893 S +08:10:33 +Slot[172] 0200 010000 6213541000473317 ------------- 00 932026 000100000000 507900844810030150036213541000473317 507900844810 713924 668899 S +08:10:38 Slot [148] | NOT FINANCIAL TRANSACTION +08:10:42 +Slot[186] 0420 011000 1808930300018793 ------------- 00 679433 000100000000 507903028252120025001808930300018793 507903028252 -------- 621354 S +08:10:49 Slot [182] | NOT FINANCIAL TRANSACTION +08:10:51 Slot [126] | NOT FINANCIAL TRANSACTION +08:10:56 +Slot[171] 0200 010000 6213545000697551 ------------- 00 932050 000100000000 507901373545032090016213545000697551 507901373545 609252 668899 S +08:10:58 +Slot[119] 0200 301000 6688990603097609 ------------- 14 267061 032001100126 5079012670610522XYXH6688990603097609 507901267061 270199 180893 S +08:11:07 Slot [176] | NOT FINANCIAL TRANSACTION +08:11:20 +Slot[139] 0200 010000 6213541000314255 ------------- 00 267064 000100000000 5079012670640482XKMO6213541000314255 507901267064 499249 180893 S +08:11:20 Slot [202] | NOT FINANCIAL TRANSACTION +08:11:28 Slot [187] | NOT FINANCIAL TRANSACTION +08:11:28 Slot [156] | NOT FINANCIAL TRANSACTION +08:11:35 +Slot[160] 0200 010000 6688990103644405 ------------- 14 267069 000050000000 5079012670690464UDPB6688990103644405 507901267069 153729 180893 S +08:11:43 Slot [203] | NOT FINANCIAL TRANSACTION +08:11:49 Slot [179] | NOT FINANCIAL TRANSACTION +08:11:53 +Slot[163] 0200 011000 6688990104774706 ------------- 00 679992 000030000000 507903499464060022006688990104774706 507903499464 064316 621354 S +08:11:56 Slot [144] | NOT FINANCIAL TRANSACTION +08:11:56 +Slot[192] 0420 011000 1808930300018793 0000000000000 00 679433 000100000000 507903028252120025001808930300018793 507903028252 679433 621354 S +08:12:07 +Slot[204] 0200 010000 6213545000697551 ------------- 00 932114 000020000000 507901373547032090016213545000697551 507901373547 159807 668899 S +08:12:08 +Slot[135] 0200 010000 6213541000473317 ------------- 00 932117 000100000000 507900844812030150036213541000473317 507900844812 272381 668899 S +08:12:09 Slot [152] | NOT FINANCIAL TRANSACTION +08:12:25 Slot [196] | NOT FINANCIAL TRANSACTION +08:12:30 Slot [191] | NOT FINANCIAL TRANSACTION +08:12:35 +Slot[155] 0200 302000 6213544001517850 ------------- 00 932133 000000000000 507902415377030010116213544001517850 507902415377 984900 668899 S +08:12:36 Slot [181] | NOT FINANCIAL TRANSACTION +08:12:49 +Slot[190] 0200 011000 6688990040086033 ------------- 00 680206 000005000000 507903908248010106006688990040086033 507903908248 443936 621354 S +08:12:55 +Slot[198] 0200 011000 1808930300018793 ------------- 00 680209 000010000000 507903028254120025001808930300018793 507903028254 049114 621354 S +08:12:57 +Slot[201] 0200 302000 6213544001517850 ------------- 00 932149 000000000000 507902415378030010116213544001517850 507902415378 926476 668899 S +08:12:57 Slot [214] | NOT FINANCIAL TRANSACTION +08:12:59 +Slot[194] 0200 301000 6688990108408301 ------------- 00 680254 000000000000 507903226533040032006688990108408301 507903226533 119377 621354 S +08:13:01 Slot [165] | NOT FINANCIAL TRANSACTION +08:13:09 Slot [184] | NOT FINANCIAL TRANSACTION +08:13:10 +Slot[195] 0200 010000 6213541000473317 ------------- 00 932165 000030000000 507900844814030150036213541000473317 507900844814 240488 668899 S +08:13:25 +Slot[209] 0200 011000 6213544001109369 ------------- 00 267080 000030000000 5079012670800115LPBR6213544001109369 507901267080 756485 180893 S +08:13:32 Slot [178] | NOT FINANCIAL TRANSACTION +08:13:35 Slot [208] | NOT FINANCIAL TRANSACTION +08:13:37 +Slot[213] 0200 012000 6213545001074388 ------------- 00 267083 000015000000 5079012670830368KMMX6213545001074388 507901267083 180647 180893 S +08:13:46 Slot [193] | NOT FINANCIAL TRANSACTION +08:13:51 +Slot[206] 0200 011000 6688990108408301 ------------- 00 680490 000100000000 507903226535040032006688990108408301 507903226535 574611 621354 S +08:14:02 Slot [221] | NOT FINANCIAL TRANSACTION +08:14:06 Slot [212] | NOT FINANCIAL TRANSACTION +08:14:13 Slot [211] | NOT FINANCIAL TRANSACTION +08:14:22 +Slot[185] 0200 011000 1808930300018793 ------------- 00 680600 000050000000 507903028256120025001808930300018793 507903028256 428561 621354 S +08:14:24 Slot [183] | NOT FINANCIAL TRANSACTION +08:14:34 Slot [207] | NOT FINANCIAL TRANSACTION +08:14:34 Slot [149] | NOT FINANCIAL TRANSACTION +08:14:45 Slot [174] | NOT FINANCIAL TRANSACTION +08:14:47 +Slot[180] 0200 010000 6213544000621661 ------------- 00 223689 000050000000 507900118739010011006213544000621661 507900118739 088312 220699 S +08:14:54 +Slot[168] 0200 011000 6688990108408301 ------------- 00 680745 000100000000 507903226537040032006688990108408301 507903226537 678386 621354 S +08:14:54 Slot [189] | NOT FINANCIAL TRANSACTION +08:14:56 Slot [169] | NOT FINANCIAL TRANSACTION +08:15:06 +Slot[225] 0200 300000 6213545001078934 ------------- 00 932279 000000000000 507901726910033160026213545001078934 507901726910 500820 668899 S +08:15:08 +Slot[205] 0200 302000 6213545000804652 ------------- 00 267094 032001141026 5079012670940261PSL16213545000804652 507901267094 106407 180893 S +08:15:09 +Slot[232] 0200 300000 6688990108391507 ------------- 00 680815 000000000000 507904719364180010006688990108391507 507904719364 750958 621354 S +08:15:11 Slot [230] | NOT FINANCIAL TRANSACTION +08:15:11 +Slot[222] 0200 010000 6213544001794640 ------------- 51 932280 000050000000 507902435595030200316213544001794640 507902435595 032134 668899 S +08:15:13 +Slot[188] 0200 010000 2206990000109009 ------------- 00 932287 000040000000 507900880359030170012206990000109009 507900880359 482596 668899 S +08:15:18 Slot [173] | NOT FINANCIAL TRANSACTION +08:15:28 +Slot[229] 0200 300000 6213545000975478 ------------- 00 932300 000000000000 507900771375030050016213545000975478 507900771375 390686 668899 S +08:15:29 Slot [215] | NOT FINANCIAL TRANSACTION +08:15:29 +Slot[223] 0200 010000 6213544001794640 ------------- 51 932303 000050000000 507902435596030200316213544001794640 507902435596 332701 668899 S +08:15:36 Slot [246] | NOT FINANCIAL TRANSACTION +08:15:38 +Slot[177] 0200 011000 1808930300018793 ------------- 00 680924 000050000000 507903028258120025001808930300018793 507903028258 348787 621354 S +08:15:44 Slot [243] | NOT FINANCIAL TRANSACTION +08:15:47 +Slot[242] 0200 010000 6213544001794640 ------------- 00 932314 000030000000 507902435597030200316213544001794640 507902435597 998795 668899 S +08:15:52 +Slot[235] 0200 010000 6688990108391507 ------------- 00 680990 000100000000 507904719366180010006688990108391507 507904719366 060773 621354 S +08:15:54 +Slot[248] 0200 011000 6688990108408301 ------------- 00 681001 000100000000 507903226539040032006688990108408301 507903226539 165772 621354 S +08:15:55 Slot [251] | NOT FINANCIAL TRANSACTION +08:16:01 +Slot[244] 0200 010000 6213545001078934 ------------- 00 932331 000100000000 507901726911033160026213545001078934 507901726911 304828 668899 S +08:16:02 +Slot[227] 0200 010000 6688990030014276 ------------- 00 681027 000100000000 507903719166010089006688990030014276 507903719166 100070 621354 S +08:16:10 Slot [250] | NOT FINANCIAL TRANSACTION +08:16:16 Slot [255] | NOT FINANCIAL TRANSACTION +08:16:18 +Slot[200] 0200 311000 6213545000418313 ------------- 00 001928 000000000000 507900296926010016006213545000418313 507900296926 803107 220699 S +08:16:20 Slot [226] | NOT FINANCIAL TRANSACTION +08:16:21 Slot [238] | NOT FINANCIAL TRANSACTION +08:16:26 +Slot[233] 0200 011000 6213548000054112 ------------- 00 153713 000004000000 507900035463010003006213548000054112 507900035463 607248 220699 S +08:16:33 Slot [237] | NOT FINANCIAL TRANSACTION +08:16:33 +Slot[216] 0200 010000 6213544001794640 ------------- 55 932362 000020000000 507902435599030200316213544001794640 507902435599 226838 668899 S +08:16:38 Slot [234] | NOT FINANCIAL TRANSACTION +08:16:47 +Slot[253] 0200 010000 6688990107352609 ------------- 00 681240 000005000000 507903443119060017006688990107352609 507903443119 466076 621354 S +08:16:47 Slot [220] | NOT FINANCIAL TRANSACTION +08:16:52 +Slot[210] 0200 011000 6688990108408301 ------------- 00 681265 000100000000 507903226541040032006688990108408301 507903226541 856773 621354 S +08:16:54 +Slot[260] 0200 010000 6688990108391507 ------------- 00 681273 000100000000 507904719368180010006688990108391507 507904719368 955257 621354 S +08:16:56 +Slot[249] 0200 011000 1808930300018793 ------------- 00 681271 000010000000 507903028260120025001808930300018793 507903028260 036278 621354 S +08:17:05 Slot [259] | NOT FINANCIAL TRANSACTION +08:17:05 +Slot[199] 0200 010000 6213544001794640 ------------- 55 932383 000020000000 507902435601030200316213544001794640 507902435601 296017 668899 S +08:17:20 Slot [261] | NOT FINANCIAL TRANSACTION +08:17:20 +Slot[263] 0200 011000 6213545000418313 ------------- 00 001932 000100000000 507900296929010016006213545000418313 507900296929 836595 220699 S +08:17:21 Slot [270] | NOT FINANCIAL TRANSACTION +08:17:30 Slot [269] | NOT FINANCIAL TRANSACTION +08:17:39 +Slot[240] 0200 010000 6213544001794640 ------------- 75 932418 000010000000 507902435603030200316213544001794640 507902435603 116240 668899 S +08:17:40 Slot [197] | NOT FINANCIAL TRANSACTION +08:17:41 Slot [228] | NOT FINANCIAL TRANSACTION +08:17:47 +Slot[256] 0200 011000 6688990108408301 ------------- 00 681496 000100000000 507903226543040032006688990108408301 507903226543 757463 621354 S +08:17:56 Slot [265] | NOT FINANCIAL TRANSACTION +08:18:04 +Slot[275] 0200 300000 6688990100951100 ------------- 00 681574 000000000000 507904719369180010006688990100951100 507904719369 007802 621354 S +08:18:07 Slot [247] | NOT FINANCIAL TRANSACTION +08:18:18 Slot [218] | NOT FINANCIAL TRANSACTION +08:18:25 +Slot[274] 0200 010000 6213544001794640 ------------- 75 932461 000020000000 507902435605030200316213544001794640 507902435605 419993 668899 S +08:18:26 Slot [231] | NOT FINANCIAL TRANSACTION +08:18:29 Slot [279] | NOT FINANCIAL TRANSACTION +08:18:42 Slot [264] | NOT FINANCIAL TRANSACTION +08:18:44 Slot [239] | NOT FINANCIAL TRANSACTION +08:18:47 +Slot[254] 0200 011000 6213545000418313 ------------- 00 001938 000100000000 507900296933010016006213545000418313 507900296933 002680 220699 S +08:18:55 +Slot[273] 0200 010000 6688990100951100 ------------- 00 681787 000100000000 507904719371180010006688990100951100 507904719371 895088 621354 S +08:18:56 +Slot[266] 0200 011000 6688990108408301 ------------- 00 681796 000080000000 507903226545040032006688990108408301 507903226545 042559 621354 S +08:18:59 Slot [272] | NOT FINANCIAL TRANSACTION +08:19:06 +Slot[282] 0200 010000 6213544001794640 ------------- 75 932491 000020000000 507902435607030200316213544001794640 507902435607 324762 668899 S +08:19:07 +Slot[241] 0200 010000 6213545000417521 ------------- 00 932494 000050000000 507902683024030200366213545000417521 507902683024 988203 668899 S +08:19:15 Slot [252] | NOT FINANCIAL TRANSACTION +08:19:31 Slot [245] | NOT FINANCIAL TRANSACTION +08:19:31 Slot [280] | NOT FINANCIAL TRANSACTION +08:19:44 Slot [276] | NOT FINANCIAL TRANSACTION +08:19:46 Slot [258] | NOT FINANCIAL TRANSACTION +08:19:54 Slot [219] | NOT FINANCIAL TRANSACTION +08:19:57 +Slot[284] 0200 010000 6688990100951100 ------------- 00 682072 000100000000 507904719373180010006688990100951100 507904719373 395089 621354 S +08:20:02 Slot [224] | NOT FINANCIAL TRANSACTION +08:20:02 +Slot[290] 0200 011000 6213545000418313 ------------- 00 001941 000095000000 507900296935010016006213545000418313 507900296935 145243 220699 S +08:20:09 +Slot[287] 0200 011000 2206990000081083 ------------- 00 682113 000005000000 507903517262090008002206990000081083 507903517262 554275 621354 S +08:20:17 Slot [271] | NOT FINANCIAL TRANSACTION +08:20:27 Slot [288] | NOT FINANCIAL TRANSACTION +08:20:36 Slot [277] | NOT FINANCIAL TRANSACTION +08:20:38 Slot [236] | NOT FINANCIAL TRANSACTION +08:20:46 Slot [267] | NOT FINANCIAL TRANSACTION +08:20:49 Slot [278] | NOT FINANCIAL TRANSACTION +08:20:54 +Slot[293] 0200 011000 6688990601017302 ------------- 00 682307 000020000000 507904706741180009006688990601017302 507904706741 147540 621354 S +08:21:00 +Slot[217] 0200 010000 6688990100951100 ------------- 00 682331 000015000000 507904719375180010006688990100951100 507904719375 873851 621354 S +08:21:14 +Slot[294] 0200 010000 1808930600026058 ------------- 00 682373 000010000000 507905271160020029001808930600026058 507905271160 436949 621354 S +08:21:17 Slot [298] | NOT FINANCIAL TRANSACTION +08:21:20 Slot [257] | NOT FINANCIAL TRANSACTION +08:21:32 Slot [303] | NOT FINANCIAL TRANSACTION +08:21:41 Slot [302] | NOT FINANCIAL TRANSACTION +08:21:44 Slot [299] | NOT FINANCIAL TRANSACTION +08:21:48 Slot [292] | NOT FINANCIAL TRANSACTION +08:21:58 Slot [281] | NOT FINANCIAL TRANSACTION +08:22:13 +Slot[300] 0200 010000 1808930600026058 ------------- 00 682624 000100000000 507905271162020029001808930600026058 507905271162 753167 621354 S +08:22:13 Slot [295] | NOT FINANCIAL TRANSACTION +08:22:29 Slot [308] | NOT FINANCIAL TRANSACTION +08:22:30 Slot [296] | NOT FINANCIAL TRANSACTION +08:22:40 +Slot[283] 0200 301000 6688990103569701 ------------- 14 267138 032001214426 5079012671380464UDPB6688990103569701 507901267138 958829 180893 S +08:22:46 Slot [262] | NOT FINANCIAL TRANSACTION +08:22:50 Slot [316] | NOT FINANCIAL TRANSACTION +08:22:52 +Slot[311] 0200 011000 6213541000686322 ------------- 00 202024 000050000000 507908202024015290106213541000686322 507908202024 435939 198901 S +08:22:52 Slot [286] | NOT FINANCIAL TRANSACTION +08:23:06 +Slot[312] 0200 010000 1808930600026058 ------------- 00 682851 000100000000 507905271164020029001808930600026058 507905271164 204054 621354 S +08:23:11 +Slot[306] 0200 011000 6688990040156620 ------------- 14 107156 000030000000 507900327789010018006688990040156620 507900327789 349345 220699 S +08:23:12 Slot [307] | NOT FINANCIAL TRANSACTION +08:23:23 Slot [317] | NOT FINANCIAL TRANSACTION +08:23:31 +Slot[310] 0200 301000 6213541000686322 ------------- 00 202032 000000000000 507908202032015290106213541000686322 507908202032 395213 198901 S +08:23:34 Slot [318] | NOT FINANCIAL TRANSACTION +08:23:45 Slot [315] | NOT FINANCIAL TRANSACTION +08:23:51 Slot [322] | NOT FINANCIAL TRANSACTION +08:23:52 Slot [289] | NOT FINANCIAL TRANSACTION +08:23:56 +Slot[304] 0200 301000 6213545000585863 ------------- 00 932679 000000000000 507900234060030100016213545000585863 507900234060 171863 668899 S +08:24:06 +Slot[285] 0200 010000 1808930600026058 ------------- 51 683125 000040000000 507905271166020029001808930600026058 507905271166 472327 621354 S +08:24:12 Slot [297] | NOT FINANCIAL TRANSACTION +08:24:27 Slot [325] | NOT FINANCIAL TRANSACTION +08:24:38 Slot [291] | NOT FINANCIAL TRANSACTION +08:24:51 +Slot[326] 0200 010000 1808930600026058 ------------- 00 683327 000030000000 507905271168020029001808930600026058 507905271168 580060 621354 S +08:24:54 Slot [301] | NOT FINANCIAL TRANSACTION +08:24:54 Slot [327] | NOT FINANCIAL TRANSACTION +08:24:56 Slot [333] | NOT FINANCIAL TRANSACTION +08:25:02 +Slot[305] 0200 011000 1808930700001928 ------------- 00 683361 000010000000 507903385641130018001808930700001928 507903385641 209443 621354 S +08:25:05 Slot [331] | NOT FINANCIAL TRANSACTION +08:25:10 +Slot[314] 0200 011000 6688990108408202 ------------- 51 683447 000010000000 507903226553040032006688990108408202 507903226553 561334 621354 S +08:25:17 +Slot[321] 0200 010000 6688990040059428 ------------- 00 683468 000020000000 507903365330130016006688990040059428 507903365330 052144 621354 S +08:25:22 Slot [337] | NOT FINANCIAL TRANSACTION +08:25:28 +Slot[334] 0200 301000 6213545000585863 ------------- 00 932774 000000000000 507900234064030100016213545000585863 507900234064 780239 668899 S +08:25:33 +Slot[336] 0200 011000 6688990060026802 ------------- 00 683552 000010000000 507904153770200010006688990060026802 507904153770 064070 621354 S +08:25:34 Slot [335] | NOT FINANCIAL TRANSACTION +08:25:44 Slot [320] | NOT FINANCIAL TRANSACTION +08:25:50 +Slot[342] 0200 011000 1888880000087668 ------------- 51 683594 000002000000 507903443141060017001888880000087668 507903443141 457609 621354 S +08:25:56 Slot [345] | NOT FINANCIAL TRANSACTION +08:25:56 Slot [341] | NOT FINANCIAL TRANSACTION +08:26:01 Slot [344] | NOT FINANCIAL TRANSACTION +08:26:03 +Slot[268] 0200 310000 6213542000004870 ------------- 00 254822 000000000000 507900094404010009006213542000004870 507900094404 816661 220699 S +08:26:12 Slot [323] | NOT FINANCIAL TRANSACTION +08:26:16 +Slot[329] 0200 301000 6688990040116079 ------------- 00 202077 000000000000 507908202077015290316688990040116079 507908202077 085851 198901 S +08:26:17 +Slot[339] 0200 010000 6688990040059428 ------------- 00 683754 000005000000 507903365332130016006688990040059428 507903365332 552651 621354 S +08:26:20 Slot [309] | NOT FINANCIAL TRANSACTION +08:26:26 +Slot[348] 0200 301000 6688990060026802 ------------- 00 683768 000000000000 507904153771200010006688990060026802 507904153771 446804 621354 S +08:26:27 Slot [352] | NOT FINANCIAL TRANSACTION +08:26:32 +Slot[328] 0200 011000 6213544001183562 ------------- 00 267156 000030000000 5079012671560421BKPH6213544001183562 507901267156 121898 180893 S +08:26:42 Slot [347] | NOT FINANCIAL TRANSACTION +08:26:51 +Slot[350] 0200 011000 6688990040116079 ------------- 00 202081 000005000000 507908202081015290316688990040116079 507908202081 647379 198901 S +08:26:56 +Slot[319] 0200 301000 6688990106517608 ------------- 00 683918 000000000000 507902782761010072006688990106517608 507902782761 276484 621354 S +08:26:58 Slot [332] | NOT FINANCIAL TRANSACTION +08:26:59 Slot [346] | NOT FINANCIAL TRANSACTION +08:27:00 Slot [356] | NOT FINANCIAL TRANSACTION +08:27:06 Slot [357] | NOT FINANCIAL TRANSACTION +08:27:09 Slot [330] | NOT FINANCIAL TRANSACTION +08:27:22 Slot [343] | NOT FINANCIAL TRANSACTION +08:27:34 Slot [313] | NOT FINANCIAL TRANSACTION +08:27:34 +Slot[366] 0200 010000 6213542000004870 ------------- 00 254826 000100000000 507900094407010009006213542000004870 507900094407 003301 220699 S +08:27:45 Slot [340] | NOT FINANCIAL TRANSACTION +08:28:00 Slot [365] | NOT FINANCIAL TRANSACTION +08:28:01 Slot [371] | NOT FINANCIAL TRANSACTION +08:28:11 Slot [378] | NOT FINANCIAL TRANSACTION +08:28:12 Slot [324] | NOT FINANCIAL TRANSACTION +08:28:23 Slot [373] | NOT FINANCIAL TRANSACTION +08:28:35 +Slot[353] 0200 011000 6688990106517608 ------------- 00 684352 000100000000 507902782763010072006688990106517608 507902782763 075297 621354 S +08:28:50 +Slot[382] 0200 301000 1808931800018051 ------------- 00 684394 000000000000 507904635401170008001808931800018051 507904635401 632959 621354 S +08:28:51 Slot [355] | NOT FINANCIAL TRANSACTION +08:29:00 +Slot[363] 0200 010000 6213542000004870 ------------- 00 254829 000059000000 507900094409010009006213542000004870 507900094409 668113 220699 S +08:29:02 Slot [358] | NOT FINANCIAL TRANSACTION +08:29:04 Slot [370] | NOT FINANCIAL TRANSACTION +08:29:16 Slot [360] | NOT FINANCIAL TRANSACTION +08:29:19 Slot [338] | NOT FINANCIAL TRANSACTION +08:29:31 Slot [354] | NOT FINANCIAL TRANSACTION +08:29:36 +Slot[379] 0200 012000 6688990040146159 ------------- 00 684616 000020000000 507903176930040027006688990040146159 507903176930 289110 621354 S +08:29:46 Slot [396] | NOT FINANCIAL TRANSACTION +08:29:54 Slot [369] | NOT FINANCIAL TRANSACTION +08:29:58 Slot [390] | NOT FINANCIAL TRANSACTION +08:29:59 +Slot[351] 0200 011000 6688990106517608 ------------- 00 684738 000050000000 507902782765010072006688990106517608 507902782765 279844 621354 S +08:30:04 Slot [389] | NOT FINANCIAL TRANSACTION +08:30:08 +Slot[359] 0200 012000 6688990040038836 ------------- 51 684789 000040000000 507902381120010063006688990040038836 507902381120 829510 621354 S +08:30:14 Slot [376] | NOT FINANCIAL TRANSACTION +08:30:18 +Slot[374] 0200 011000 6688990030002537 ------------- 55 684834 000100000000 507904706770180009006688990030002537 507904706770 898366 621354 S +08:30:21 Slot [361] | NOT FINANCIAL TRANSACTION +08:30:27 +Slot[395] 0200 301000 6213545000897326 ------------- 00 267185 032001292926 5079012671850243VTKS6213545000897326 507901267185 512018 180893 S +08:30:32 +Slot[410] 0200 011000 6688990030002537 ------------- 00 684878 000100000000 507904706772180009006688990030002537 507904706772 456474 621354 S +08:30:33 +Slot[383] 0200 010000 6213545000585863 ------------- 00 933003 000100000000 507900234069030100016213545000585863 507900234069 933451 668899 S +08:30:39 +Slot[393] 0200 301000 6688990060029723 ------------- 55 684912 000000000000 507904153773200010006688990060029723 507904153773 461717 621354 S +08:30:39 Slot [349] | NOT FINANCIAL TRANSACTION +08:30:50 Slot [413] | NOT FINANCIAL TRANSACTION +08:31:01 Slot [400] | NOT FINANCIAL TRANSACTION +08:31:01 +Slot[397] 0200 011000 6213544002079843 ------------- 51 202144 000010000000 507908202144000022226213544002079843 507908202144 236237 198901 S +08:31:03 +Slot[414] 0200 301000 6688990060029723 ------------- 75 685022 000000000000 507904153774200010006688990060029723 507904153774 328338 621354 S +08:31:06 +Slot[399] 0200 010000 6213544000509627 ------------- 00 933037 000050000000 507901203871030200126213544000509627 507901203871 134956 668899 S +08:31:06 Slot [387] | NOT FINANCIAL TRANSACTION +08:31:18 Slot [394] | NOT FINANCIAL TRANSACTION +08:31:20 Slot [372] | NOT FINANCIAL TRANSACTION +08:31:26 +Slot[368] 0200 012000 6688990103675102 ------------- 00 685105 000020000000 507903372743130017006688990103675102 507903372743 960954 621354 S +08:31:26 Slot [406] | NOT FINANCIAL TRANSACTION +08:31:29 +Slot[418] 0200 011000 6688990030002537 ------------- 00 685121 000100000000 507904706774180009006688990030002537 507904706774 858743 621354 S +08:31:30 Slot [419] | NOT FINANCIAL TRANSACTION +08:31:41 +Slot[411] 0200 301000 6213545001031925 ------------- 00 267189 032001304226 5079012671890243VTKS6213545001031925 507901267189 648980 180893 S +08:31:56 Slot [407] | NOT FINANCIAL TRANSACTION +08:31:59 +Slot[380] 0200 300000 6213545000125926 ------------- 00 933079 000000000000 507900961540034070016213545000125926 507900961540 765359 668899 S +08:32:08 Slot [384] | NOT FINANCIAL TRANSACTION +08:32:11 Slot [416] | NOT FINANCIAL TRANSACTION +08:32:22 +Slot[401] 0200 011000 6688990030002537 ------------- 00 685329 000100000000 507904706776180009006688990030002537 507904706776 686995 621354 S +08:32:27 Slot [381] | NOT FINANCIAL TRANSACTION +08:32:31 +Slot[420] 0200 010000 6213545001031925 ------------- 00 267192 000100000000 5079012671920243VTKS6213545001031925 507901267192 428596 180893 S +08:32:31 Slot [415] | NOT FINANCIAL TRANSACTION +08:32:38 +Slot[398] 0200 010000 6688990103694202 ------------- 00 685382 000040000000 507903372745130017006688990103694202 507903372745 273347 621354 S +08:32:41 +Slot[425] 0200 301000 6213544002079843 ------------- 00 202165 000000000000 507908202165000022226213544002079843 507908202165 022302 198901 S +08:32:42 Slot [433] | NOT FINANCIAL TRANSACTION +08:32:53 Slot [364] | NOT FINANCIAL TRANSACTION +08:32:55 +Slot[388] 0200 010000 6213544001594149 ------------- 00 267197 000010000000 5079012671970301LPBX6213544001594149 507901267197 887954 180893 S +08:33:00 +Slot[430] 0200 011000 6688990040038836 ------------- 00 685461 000030000000 507902381128010063006688990040038836 507902381128 056948 621354 S +08:33:02 +Slot[367] 0200 012000 1808931800018051 ------------- 42 685468 000010000000 507904635407170008001808931800018051 507904635407 671733 621354 S +08:33:04 +Slot[441] 0200 010000 6213545000585863 ------------- 00 933131 000095000000 507900234071030100016213545000585863 507900234071 724882 668899 S +08:33:08 Slot [409] | NOT FINANCIAL TRANSACTION +08:33:10 Slot [437] | NOT FINANCIAL TRANSACTION +08:33:12 +Slot[402] 0200 011000 6688990030002537 ------------- 00 685509 000100000000 507904706778180009006688990030002537 507904706778 559916 621354 S +08:33:14 +Slot[408] 0200 011000 6213545000015192 ------------- 00 202172 000040000000 507908202172015290026213545000015192 507908202172 405223 198901 S +08:33:15 Slot [403] | NOT FINANCIAL TRANSACTION +08:33:16 +Slot[375] 0200 011000 6213541000287709 ------------- 51 251093 000070000000 507900336124010019006213541000287709 507900336124 285376 220699 S +08:33:17 +Slot[362] 0200 010000 6213544000509627 ------------- 00 933150 000010000000 507901203873030200126213544000509627 507901203873 905880 668899 S +08:33:18 +Slot[385] 0200 011000 6213544002079843 ------------- 51 202173 000010000000 507908202173000022226213544002079843 507908202173 532297 198901 S +08:33:19 Slot [447] | NOT FINANCIAL TRANSACTION +08:33:30 Slot [412] | NOT FINANCIAL TRANSACTION +08:33:36 Slot [392] | NOT FINANCIAL TRANSACTION +08:33:41 Slot [450] | NOT FINANCIAL TRANSACTION +08:33:53 Slot [417] | NOT FINANCIAL TRANSACTION +08:34:00 +Slot[386] 0200 012000 6213541000718067 ------------- 00 177312 000100000000 507900010192010001006213541000718067 507900010192 937405 220699 S +08:34:02 +Slot[377] 0200 011000 6688990030002537 ------------- 00 685715 000100000000 507904706780180009006688990030002537 507904706780 801767 621354 S +08:34:08 Slot [443] | NOT FINANCIAL TRANSACTION +08:34:09 +Slot[391] 0200 011000 6213541000287709 ------------- 00 251096 000060000000 507900336126010019006213541000287709 507900336126 072205 220699 S +08:34:12 Slot [405] | NOT FINANCIAL TRANSACTION +08:34:19 Slot [456] | NOT FINANCIAL TRANSACTION +08:34:25 +Slot[446] 0200 010000 6688990602689505 ------------- 00 685800 000010000000 507904179567200012006688990602689505 507904179567 164723 621354 S +08:34:30 Slot [429] | NOT FINANCIAL TRANSACTION +08:34:31 +Slot[435] 0200 300000 6688990107135103 ------------- 00 685821 000000000000 507903344922130014006688990107135103 507903344922 436298 621354 S +08:34:41 Slot [424] | NOT FINANCIAL TRANSACTION +08:34:41 Slot [445] | NOT FINANCIAL TRANSACTION +08:34:45 +Slot[404] 0200 010000 6213545000331714 ------------- 00 933225 000002000000 507901391775032100026213545000331714 507901391775 472261 668899 S +08:34:53 Slot [438] | NOT FINANCIAL TRANSACTION +08:34:53 +Slot[442] 0200 011000 6688990030002537 ------------- 00 685920 000100000000 507904706782180009006688990030002537 507904706782 707316 621354 S +08:34:54 Slot [434] | NOT FINANCIAL TRANSACTION +08:35:06 +Slot[428] 0200 010000 6213545000362313 ------------- 00 267209 000050000000 5079012672090461BKPO6213545000362313 507901267209 667051 180893 S +08:35:14 Slot [427] | NOT FINANCIAL TRANSACTION +08:35:16 Slot [451] | NOT FINANCIAL TRANSACTION +08:35:26 Slot [457] | NOT FINANCIAL TRANSACTION +08:35:33 +Slot[462] 0200 012000 6688990107135103 ------------- 00 686052 000050000000 507903344924130014006688990107135103 507903344924 137292 621354 S +08:35:40 +Slot[426] 0200 301000 6688990030002537 ------------- 00 686072 000000000000 507904706783180009006688990030002537 507904706783 169631 621354 S +08:35:44 +Slot[431] 0200 010000 6213545000955108 ------------- 00 267217 000100000000 5079012672170324BKDT6213545000955108 507901267217 364476 180893 S +08:35:46 Slot [422] | NOT FINANCIAL TRANSACTION +08:35:54 Slot [444] | NOT FINANCIAL TRANSACTION +08:36:09 Slot [421] | NOT FINANCIAL TRANSACTION +08:36:16 Slot [465] | NOT FINANCIAL TRANSACTION +08:36:20 +Slot[423] 0200 300000 6213543000007939 ------------- 00 933292 000000000000 507901416563030110026213543000007939 507901416563 835510 668899 S +08:36:21 Slot [436] | NOT FINANCIAL TRANSACTION +08:36:21 +Slot[439] 0200 011000 6213542000052713 ------------- 00 085582 000030000000 507900140203030002006213542000052713 507900140203 738657 220699 S +08:36:23 +Slot[458] 0200 010000 6213544000213402 ------------- 00 933293 000020000000 507900502255030110016213544000213402 507900502255 574135 668899 S +08:36:26 Slot [459] | NOT FINANCIAL TRANSACTION +08:36:41 Slot [466] | NOT FINANCIAL TRANSACTION +08:36:51 Slot [452] | NOT FINANCIAL TRANSACTION +08:36:51 Slot [468] | NOT FINANCIAL TRANSACTION +08:36:54 +Slot[475] 0200 302000 6213543000007939 ------------- 00 933313 000000000000 507901416564030110026213543000007939 507901416564 538790 668899 S +08:37:08 Slot [455] | NOT FINANCIAL TRANSACTION +08:37:08 +Slot[449] 0200 010000 1808931400006662 ------------- 00 686369 000100000000 507904672328180006001808931400006662 507904672328 091119 621354 S +08:37:18 Slot [440] | NOT FINANCIAL TRANSACTION +08:37:32 +Slot[460] 0200 010000 1808931100010790 ------------- 00 686492 000040000000 507904599628020022001808931100010790 507904599628 020294 621354 S +08:37:34 Slot [432] | NOT FINANCIAL TRANSACTION +08:37:45 Slot [482] | NOT FINANCIAL TRANSACTION +08:37:56 Slot [495] | NOT FINANCIAL TRANSACTION +08:37:57 +Slot[488] 0200 011000 6213545000955108 ------------- 00 267230 000080000000 5079012672300324BKDT6213545000955108 507901267230 916758 180893 S +08:37:59 +Slot[470] 0200 011000 6688990105931701 ------------- 00 686653 000005000000 507905397310150013006688990105931701 507905397310 799264 621354 S +08:38:03 +Slot[453] 0200 010000 1888880000094458 ------------- 00 933351 000100000000 507902001637032120021888880000094458 507902001637 618541 668899 S +08:38:12 +Slot[490] 0200 010000 6213543000120500 ------------- 51 933362 000050000000 507900961542034070016213543000120500 507900961542 928692 668899 S +08:38:17 +Slot[463] 0200 010000 1808931400006662 ------------- 00 686687 000050000000 507904672330180006001808931400006662 507904672330 766344 621354 S +08:38:18 Slot [484] | NOT FINANCIAL TRANSACTION +08:38:20 Slot [448] | NOT FINANCIAL TRANSACTION +08:38:28 Slot [480] | NOT FINANCIAL TRANSACTION +08:38:40 Slot [471] | NOT FINANCIAL TRANSACTION +08:38:47 +Slot[479] 0200 300000 6213544000196300 ------------- 00 933392 000000000000 507902531627030200336213544000196300 507902531627 051657 668899 S +08:38:49 +Slot[0] 0200 010000 6213543000120500 ------------- 00 933395 000040000000 507900961543034070016213543000120500 507900961543 031186 668899 S +08:39:01 Slot [2] | NOT FINANCIAL TRANSACTION +08:39:02 Slot [493] | NOT FINANCIAL TRANSACTION +08:39:02 +Slot[498] 0200 011000 1808930600003727 ------------- 00 686825 000030000000 507904308906030029001808930600003727 507904308906 110680 621354 S +08:39:10 +Slot[1] 0200 011000 6213541000432719 ------------- 00 267239 000095000000 5079012672390531VTHH6213541000432719 507901267239 647680 180893 S +08:39:22 Slot [473] | NOT FINANCIAL TRANSACTION +08:39:24 Slot [4] | NOT FINANCIAL TRANSACTION +08:39:30 +Slot[483] 0200 012000 6688990107847400 ------------- 00 686982 000020000000 507904100375080007006688990107847400 507904100375 450440 621354 S +08:39:39 Slot [474] | NOT FINANCIAL TRANSACTION +08:39:48 +Slot[489] 0200 010000 6213544000196300 ------------- 51 933434 000010000000 507902531629030200336213544000196300 507902531629 880801 668899 S +08:39:54 +Slot[476] 0200 010000 6213545000641492 ------------- 00 267244 000100000000 5079012672440222XKPV6213545000641492 507901267244 746320 180893 S +08:39:54 Slot [472] | NOT FINANCIAL TRANSACTION +08:40:02 Slot [486] | NOT FINANCIAL TRANSACTION +08:40:06 Slot [477] | NOT FINANCIAL TRANSACTION +08:40:18 Slot [6] | NOT FINANCIAL TRANSACTION +08:40:23 +Slot[492] 0200 010000 6213544000196300 ------------- 00 933458 000005000000 507902531630030200336213544000196300 507902531630 657873 668899 S +08:40:24 Slot [485] | NOT FINANCIAL TRANSACTION +08:40:28 +Slot[454] 0200 010000 6213544001514972 ------------- 61 267247 000150000000 5079012672470522XYXH6213544001514972 507901267247 440780 180893 S +08:40:45 +Slot[14] 0200 010000 1808930500014287 ------------- 55 687259 000100000000 507903148762040024001808930500014287 507903148762 675965 621354 S +08:40:49 Slot [13] | NOT FINANCIAL TRANSACTION +08:41:00 Slot [12] | NOT FINANCIAL TRANSACTION +08:41:11 Slot [16] | NOT FINANCIAL TRANSACTION +08:41:15 Slot [494] | NOT FINANCIAL TRANSACTION +08:41:21 Slot [22] | NOT FINANCIAL TRANSACTION +08:41:26 Slot [491] | NOT FINANCIAL TRANSACTION +08:41:34 +Slot[469] 0200 010000 1808930500014287 ------------- 55 687447 000100000000 507903148764040024001808930500014287 507903148764 352279 621354 S +08:41:40 Slot [17] | NOT FINANCIAL TRANSACTION +08:41:51 Slot [499] | NOT FINANCIAL TRANSACTION +08:42:01 Slot [481] | NOT FINANCIAL TRANSACTION +08:42:05 +Slot[31] 0200 010000 6213544001514972 ------------- 61 267254 000150000000 5079012672540522XYXH6213544001514972 507901267254 001675 180893 S +08:42:07 +Slot[10] 0200 010000 6213548000188159 ------------- 00 933520 000010000000 507900297307030100066213548000188159 507900297307 556456 668899 S +08:42:16 Slot [3] | NOT FINANCIAL TRANSACTION +08:42:16 Slot [29] | NOT FINANCIAL TRANSACTION +08:42:17 +Slot[23] 0200 010000 6688990103684708 ------------- 00 687635 000050000000 507903372747130017006688990103684708 507903372747 703516 621354 S +08:42:28 Slot [7] | NOT FINANCIAL TRANSACTION +08:42:34 Slot [33] | NOT FINANCIAL TRANSACTION +08:42:49 Slot [21] | NOT FINANCIAL TRANSACTION +08:43:01 Slot [11] | NOT FINANCIAL TRANSACTION +08:43:02 +Slot[35] 0200 010000 6213548000372316 ------------- 51 933559 000004000000 507902531632030200336213548000372316 507902531632 768700 668899 S +08:43:21 Slot [496] | NOT FINANCIAL TRANSACTION +08:43:22 +Slot[30] 0200 010000 1808930500014287 ------------- 75 687872 000100000000 507903148766040024001808930500014287 507903148766 706684 621354 S +08:43:27 Slot [461] | NOT FINANCIAL TRANSACTION +08:43:30 Slot [9] | NOT FINANCIAL TRANSACTION +08:43:32 +Slot[37] 0200 301000 6213545000391742 ------------- 00 933573 000000000000 507900906179030160016213545000391742 507900906179 526591 668899 S +08:43:33 +Slot[36] 0200 010000 6213548000372316 ------------- 51 933574 000004000000 507902531633030200336213548000372316 507902531633 457638 668899 S +08:43:40 Slot [45] | NOT FINANCIAL TRANSACTION +08:43:42 Slot [18] | NOT FINANCIAL TRANSACTION +08:43:54 +Slot[40] 0200 300000 6213548000438299 ------------- 00 933585 000000000000 507901963386030200196213548000438299 507901963386 310553 668899 S +08:43:55 Slot [497] | NOT FINANCIAL TRANSACTION +08:43:55 +Slot[467] 0200 010000 6213548000372316 ------------- 00 933584 000002000000 507902531634030200336213548000372316 507902531634 193259 668899 S +08:44:01 Slot [43] | NOT FINANCIAL TRANSACTION +08:44:06 Slot [8] | NOT FINANCIAL TRANSACTION +08:44:17 Slot [28] | NOT FINANCIAL TRANSACTION +08:44:26 Slot [50] | NOT FINANCIAL TRANSACTION +08:44:27 Slot [52] | NOT FINANCIAL TRANSACTION +08:44:32 Slot [44] | NOT FINANCIAL TRANSACTION +08:44:43 Slot [61] | NOT FINANCIAL TRANSACTION +08:44:53 Slot [25] | NOT FINANCIAL TRANSACTION +08:44:55 Slot [15] | NOT FINANCIAL TRANSACTION +08:45:00 +Slot[55] 0200 302000 6213545000391742 ------------- 00 933642 000000000000 507900906182030160016213545000391742 507900906182 114701 668899 S +08:45:09 Slot [68] | NOT FINANCIAL TRANSACTION +08:45:13 +Slot[478] 0200 301000 6213548000438299 ------------- 00 933654 000000000000 507901963388030200196213548000438299 507901963388 434846 668899 S +08:45:18 +Slot[60] 0200 300000 6213545000391742 ------------- 00 933657 000000000000 507900906183030160016213545000391742 507900906183 922735 668899 S +08:45:23 +Slot[63] 0200 010000 1808930500014303 ------------- 55 933662 000100000000 507900844821030150031808930500014303 507900844821 395222 668899 S +08:45:31 Slot [41] | NOT FINANCIAL TRANSACTION +08:45:32 Slot [38] | NOT FINANCIAL TRANSACTION +08:45:34 Slot [464] | NOT FINANCIAL TRANSACTION +08:45:46 +Slot[73] 0200 300000 6213545000391742 ------------- 00 933688 000000000000 507900906184030160016213545000391742 507900906184 982076 668899 S +08:45:53 +Slot[27] 0200 011000 1808930200011443 ------------- 00 688497 000050000000 507902826598010076001808930200011443 507902826598 397112 621354 S +08:45:58 Slot [32] | NOT FINANCIAL TRANSACTION +08:46:08 Slot [487] | NOT FINANCIAL TRANSACTION +08:46:21 Slot [20] | NOT FINANCIAL TRANSACTION +08:46:24 Slot [48] | NOT FINANCIAL TRANSACTION +08:46:27 +Slot[26] 0200 302000 6213545000391742 ------------- 00 933719 000000000000 507900906186030160016213545000391742 507900906186 685276 668899 S +08:46:30 +Slot[46] 0200 310000 8888884000052859 ------------- 00 177316 000000000000 507900010194010001008888884000052859 507900010194 857335 220699 S +08:46:34 Slot [19] | NOT FINANCIAL TRANSACTION +08:46:36 Slot [58] | NOT FINANCIAL TRANSACTION +08:46:36 Slot [69] | NOT FINANCIAL TRANSACTION +08:46:48 +Slot[78] 0200 010000 1808930500014303 ------------- 55 933734 000100000000 507900844823030150031808930500014303 507900844823 443279 668899 S +08:46:56 Slot [47] | NOT FINANCIAL TRANSACTION +08:47:11 Slot [81] | NOT FINANCIAL TRANSACTION +08:47:12 +Slot[54] 0200 011000 6688990040157909 ------------- 00 688818 000010000000 507903161050040026006688990040157909 507903161050 294435 621354 S +08:47:28 Slot [57] | NOT FINANCIAL TRANSACTION +08:47:30 +Slot[24] 0200 301000 6688990101414009 ------------- 00 688886 000000000000 507904698866180008006688990101414009 507904698866 612937 621354 S +08:47:38 Slot [42] | NOT FINANCIAL TRANSACTION +08:47:39 +Slot[34] 0200 011000 6213544001191409 ------------- 51 202359 000005000000 507908202359000022136213544001191409 507908202359 821366 198901 S +08:47:41 Slot [86] | NOT FINANCIAL TRANSACTION +08:47:42 Slot [49] | NOT FINANCIAL TRANSACTION +08:47:57 Slot [88] | NOT FINANCIAL TRANSACTION +08:48:08 Slot [89] | NOT FINANCIAL TRANSACTION +08:48:24 +Slot[59] 0200 010000 1808930500014303 ------------- 00 933796 000100000000 507900844825030150031808930500014303 507900844825 613275 668899 S +08:48:26 Slot [5] | NOT FINANCIAL TRANSACTION +08:48:40 Slot [79] | NOT FINANCIAL TRANSACTION +08:48:40 Slot [67] | NOT FINANCIAL TRANSACTION +08:48:46 Slot [62] | NOT FINANCIAL TRANSACTION +08:48:47 +Slot[84] 0200 012000 1808931800018051 ------------- 42 689203 000010000000 507904635420170008001808931800018051 507904635420 641408 621354 S +08:48:55 Slot [99] | NOT FINANCIAL TRANSACTION +08:49:06 Slot [39] | NOT FINANCIAL TRANSACTION +08:49:17 Slot [51] | NOT FINANCIAL TRANSACTION +08:49:21 +Slot[64] 0200 300000 6213542000006883 ------------- 00 933843 000000000000 507901416575030110026213542000006883 507901416575 443226 668899 S +08:49:27 Slot [82] | NOT FINANCIAL TRANSACTION +08:49:42 Slot [93] | NOT FINANCIAL TRANSACTION +08:49:43 Slot [56] | NOT FINANCIAL TRANSACTION +08:49:51 Slot [100] | NOT FINANCIAL TRANSACTION +08:49:54 Slot [91] | NOT FINANCIAL TRANSACTION +08:49:55 Slot [77] | NOT FINANCIAL TRANSACTION +08:50:06 Slot [65] | NOT FINANCIAL TRANSACTION +08:50:22 Slot [72] | NOT FINANCIAL TRANSACTION +08:50:33 Slot [106] | NOT FINANCIAL TRANSACTION +08:50:44 Slot [76] | NOT FINANCIAL TRANSACTION +08:50:51 +Slot[66] 0200 010000 1808931300012117 ------------- 00 689663 000010000000 507903938988010109001808931300012117 507903938988 624174 621354 S +08:50:54 Slot [90] | NOT FINANCIAL TRANSACTION +08:50:56 Slot [114] | NOT FINANCIAL TRANSACTION +08:51:01 +Slot[83] 0200 301000 2206990000035642 ------------- 00 689734 000000000000 507902514723050034002206990000035642 507902514723 350762 621354 S +08:51:04 Slot [74] | NOT FINANCIAL TRANSACTION +08:51:16 Slot [107] | NOT FINANCIAL TRANSACTION +08:51:21 Slot [118] | NOT FINANCIAL TRANSACTION +08:51:26 +Slot[92] 0200 012000 6688990050066156 ------------- 62 689852 000010000000 507903752275010091006688990050066156 507903752275 064707 621354 S +08:51:32 Slot [121] | NOT FINANCIAL TRANSACTION +08:51:42 Slot [113] | NOT FINANCIAL TRANSACTION +08:51:46 Slot [108] | NOT FINANCIAL TRANSACTION +08:51:53 +Slot[94] 0200 010000 1808930500014303 ------------- 51 933987 000100000000 507900844827030150031808930500014303 507900844827 935390 668899 S +08:51:59 +Slot[115] 0200 010000 6213545000391742 ------------- 00 267285 000050000000 5079012672850120SLVB6213545000391742 507901267285 372537 180893 S +08:52:01 Slot [127] | NOT FINANCIAL TRANSACTION +08:52:09 Slot [95] | NOT FINANCIAL TRANSACTION +08:52:17 +Slot[125] 0200 301000 6688990104555709 ------------- 00 690051 000000000000 507904719386180010006688990104555709 507904719386 695042 621354 S +08:52:22 +Slot[75] 0200 011000 6688990040005876 ------------- 00 690060 000050000000 507903908368010106006688990040005876 507903908368 679641 621354 S +08:52:24 +Slot[53] 0200 010000 6213543000185321 ------------- 00 934011 000070000000 507901506349036140016213543000185321 507901506349 694996 668899 S +08:52:25 Slot [134] | NOT FINANCIAL TRANSACTION +08:52:37 Slot [98] | NOT FINANCIAL TRANSACTION +08:52:47 Slot [103] | NOT FINANCIAL TRANSACTION +08:52:48 Slot [96] | NOT FINANCIAL TRANSACTION +08:53:01 Slot [71] | NOT FINANCIAL TRANSACTION +08:53:06 Slot [102] | NOT FINANCIAL TRANSACTION +08:53:09 +Slot[101] 0200 300000 6688990060012679 ------------- 00 690327 000000000000 507905291312200014006688990060012679 507905291312 530259 621354 S +08:53:14 Slot [70] | NOT FINANCIAL TRANSACTION +08:53:30 Slot [109] | NOT FINANCIAL TRANSACTION +08:53:41 Slot [136] | NOT FINANCIAL TRANSACTION +08:53:50 Slot [131] | NOT FINANCIAL TRANSACTION +08:53:52 Slot [85] | NOT FINANCIAL TRANSACTION +08:54:02 Slot [129] | NOT FINANCIAL TRANSACTION +08:54:11 Slot [105] | NOT FINANCIAL TRANSACTION +08:54:16 Slot [104] | NOT FINANCIAL TRANSACTION +08:54:19 +Slot[87] 0200 011000 6688990602687400 ------------- 00 690660 000030000000 507904153799200010006688990602687400 507904153799 333291 621354 S +08:54:26 +Slot[138] 0200 011000 6688990104555709 ------------- 00 690685 000030000000 507904719388180010006688990104555709 507904719388 451504 621354 S +08:54:28 +Slot[97] 0200 010000 6688990060012679 ------------- 00 690691 000100000000 507905291314200014006688990060012679 507905291314 419343 621354 S +08:54:40 +Slot[117] 0200 010000 1808930500014303 ------------- 51 934129 000100000000 507900844829030150031808930500014303 507900844829 266595 668899 S +08:54:44 Slot [112] | NOT FINANCIAL TRANSACTION +08:54:46 Slot [140] | NOT FINANCIAL TRANSACTION +08:54:52 Slot [116] | NOT FINANCIAL TRANSACTION +08:54:55 Slot [111] | NOT FINANCIAL TRANSACTION +08:54:58 Slot [147] | NOT FINANCIAL TRANSACTION +08:55:09 Slot [124] | NOT FINANCIAL TRANSACTION +08:55:16 Slot [161] | NOT FINANCIAL TRANSACTION +08:55:20 +Slot[123] 0200 301000 6688990104555709 ------------- 00 690920 000000000000 507904719389180010006688990104555709 507904719389 089522 621354 S +08:55:22 +Slot[80] 0200 010000 1808930500014303 ------------- 51 934166 000100000000 507900844830030150031808930500014303 507900844830 385251 668899 S +08:55:31 Slot [122] | NOT FINANCIAL TRANSACTION +08:55:37 +Slot[162] 0200 010000 6688990060012679 ------------- 00 690966 000100000000 507905291316200014006688990060012679 507905291316 702064 621354 S +08:55:46 Slot [132] | NOT FINANCIAL TRANSACTION +08:55:54 Slot [154] | NOT FINANCIAL TRANSACTION +08:56:03 Slot [143] | NOT FINANCIAL TRANSACTION +08:56:12 +Slot[145] 0200 010000 6213544001423281 ------------- 00 934208 000100000000 507901822356034070036213544001423281 507901822356 472347 668899 S +08:56:18 Slot [158] | NOT FINANCIAL TRANSACTION +08:56:21 Slot [120] | NOT FINANCIAL TRANSACTION +08:56:21 Slot [166] | NOT FINANCIAL TRANSACTION +08:56:34 Slot [130] | NOT FINANCIAL TRANSACTION +08:56:34 +Slot[150] 0200 311000 1808930800002636 ------------- 00 001944 000000000000 507900296937010016001808930800002636 507900296937 555649 220699 S +08:56:45 Slot [153] | NOT FINANCIAL TRANSACTION +08:56:45 +Slot[133] 0200 010000 6688990060012679 ------------- 00 691252 000100000000 507905291318200014006688990060012679 507905291318 365587 621354 S +08:56:56 Slot [142] | NOT FINANCIAL TRANSACTION +08:57:05 +Slot[167] 0200 300000 1808930400026464 ------------- 55 691327 000000000000 507904965448150011001808930400026464 507904965448 125885 621354 S +08:57:07 +Slot[110] 0200 301000 1808930200040400 ------------- 00 691322 000000000000 507903803025010096001808930200040400 507903803025 966115 621354 S +08:57:12 Slot [137] | NOT FINANCIAL TRANSACTION +08:57:21 +Slot[159] 0200 300000 1808930400026464 ------------- 55 691402 000000000000 507904965449150011001808930400026464 507904965449 346161 621354 S +08:57:26 Slot [175] | NOT FINANCIAL TRANSACTION +08:57:36 +Slot[146] 0200 300000 1808930400026464 ------------- 75 691472 000000000000 507904965450150011001808930400026464 507904965450 733912 621354 S +08:57:37 +Slot[128] 0200 010000 1808930500014303 ------------- 51 934268 000100000000 507900844833030150031808930500014303 507900844833 317115 668899 S +08:57:42 +Slot[141] 0200 300000 6688990060012679 ------------- 00 691492 000000000000 507905291319200014006688990060012679 507905291319 023601 621354 S +08:57:45 Slot [151] | NOT FINANCIAL TRANSACTION +08:57:50 +Slot[170] 0200 010000 6213541000576390 ------------- 00 267315 000100000000 5079012673150401XSBR6213541000576390 507901267315 433527 180893 S +08:57:58 Slot [157] | NOT FINANCIAL TRANSACTION +08:58:02 Slot [164] | NOT FINANCIAL TRANSACTION +08:58:13 +Slot[172] 0200 010000 1808930500014303 ------------- 51 934296 000100000000 507900844834030150031808930500014303 507900844834 647377 668899 S +08:58:18 +Slot[148] 0200 010000 6213544001423281 ------------- 00 934300 000070000000 507901822358034070036213544001423281 507901822358 733925 668899 S +08:58:22 +Slot[186] 0200 301000 1808930400026464 ------------- 75 691656 000000000000 507904965451150011001808930400026464 507904965451 631400 621354 S +08:58:29 Slot [126] | NOT FINANCIAL TRANSACTION +08:58:31 Slot [171] | NOT FINANCIAL TRANSACTION +08:58:44 +Slot[182] 0200 011000 1808930800002636 ------------- 00 001951 000100000000 507900296942010016001808930800002636 507900296942 932548 220699 S +08:58:46 +Slot[119] 0200 010000 1808930500014303 ------------- 51 934311 000100000000 507900844835030150031808930500014303 507900844835 035461 668899 S +08:58:50 Slot [176] | NOT FINANCIAL TRANSACTION +08:59:00 Slot [139] | NOT FINANCIAL TRANSACTION +08:59:03 Slot [202] | NOT FINANCIAL TRANSACTION +08:59:17 Slot [187] | NOT FINANCIAL TRANSACTION +08:59:36 Slot [160] | NOT FINANCIAL TRANSACTION +08:59:40 +Slot[156] 0200 010000 1808930500014303 ------------- 51 934352 000100000000 507900844836030150031808930500014303 507900844836 469975 668899 S +08:59:44 Slot [179] | NOT FINANCIAL TRANSACTION +08:59:47 +Slot[203] 0200 010000 6213545000996664 ------------- 00 267326 000100000000 5079012673260243VTKS6213545000996664 507901267326 749546 180893 S +08:59:55 Slot [163] | NOT FINANCIAL TRANSACTION +08:59:55 Slot [144] | NOT FINANCIAL TRANSACTION +09:00:02 Slot [135] | NOT FINANCIAL TRANSACTION +09:00:03 +Slot[192] 0200 010000 6213543000223387 ------------- 00 934376 000030000000 507901822360034070036213543000223387 507901822360 754504 668899 S +09:00:07 +Slot[204] 0200 010000 1808930500014303 ------------- 51 934378 000100000000 507900844837030150031808930500014303 507900844837 332174 668899 S +09:00:12 +Slot[152] 0200 011000 1808930800002636 ------------- 00 001956 000100000000 507900296944010016001808930800002636 507900296944 248566 220699 S +09:00:16 Slot [196] | NOT FINANCIAL TRANSACTION +09:00:24 Slot [191] | NOT FINANCIAL TRANSACTION +09:00:33 Slot [155] | NOT FINANCIAL TRANSACTION +09:00:41 Slot [190] | NOT FINANCIAL TRANSACTION +09:00:51 +Slot[181] 0200 010000 1808930500014303 ------------- 00 934408 000050000000 507900844838030150031808930500014303 507900844838 099227 668899 S +09:00:51 Slot [198] | NOT FINANCIAL TRANSACTION +09:01:02 +Slot[201] 0200 012000 6213541000680887 ------------- 00 267336 000005000000 5079022673360120SLVB6213541000680887 507902267336 226754 180893 S +09:01:04 Slot [214] | NOT FINANCIAL TRANSACTION +09:01:12 Slot [165] | NOT FINANCIAL TRANSACTION +09:01:17 +Slot[194] 0200 010000 6688990100958501 ------------- 00 692364 000100000000 507904719400180010006688990100958501 507904719400 230763 621354 S +09:01:21 Slot [195] | NOT FINANCIAL TRANSACTION +09:01:22 +Slot[184] 0200 011000 1808930800002636 ------------- 00 001959 000100000000 507900296946010016001808930800002636 507900296946 496009 220699 S +09:01:27 Slot [209] | NOT FINANCIAL TRANSACTION +09:01:35 +Slot[178] 0200 301000 6213541000696131 ------------- 00 267341 032002003726 5079022673410111BLBR6213541000696131 507902267341 983117 180893 S +09:01:46 +Slot[213] 0200 011000 6213543000184530 ------------- 55 085584 000100000000 507900140205030002006213543000184530 507900140205 343218 220699 S +09:01:46 Slot [206] | NOT FINANCIAL TRANSACTION +09:01:47 +Slot[208] 0200 011000 1808930400010799 ------------- 00 692479 000100000000 507904965462150011001808930400010799 507904965462 247233 621354 S +09:01:49 Slot [221] | NOT FINANCIAL TRANSACTION +09:01:53 +Slot[193] 0200 011000 2206990000106021 ------------- 00 692509 000100000000 507903939004010109002206990000106021 507903939004 170995 621354 S +09:02:04 +Slot[212] 0200 012000 1888880000096891 ------------- 00 692524 000040000000 507903683150010088001888880000096891 507903683150 963583 621354 S +09:02:05 Slot [207] | NOT FINANCIAL TRANSACTION +09:02:06 Slot [185] | NOT FINANCIAL TRANSACTION +09:02:09 +Slot[211] 0200 010000 6213541000696131 ------------- 00 267346 000100000000 5079022673460111BLBR6213541000696131 507902267346 037648 180893 S +09:02:13 +Slot[183] 0200 010000 1808930500014303 ------------- 51 934457 000080000000 507900844840030150031808930500014303 507900844840 226836 668899 S +09:02:22 +Slot[149] 0200 011000 1808930800002636 ------------- 00 001962 000100000000 507900296948010016001808930800002636 507900296948 085499 220699 S +09:02:27 Slot [174] | NOT FINANCIAL TRANSACTION +09:02:32 +Slot[180] 0200 010000 6213541000086093 ------------- 61 267350 000150000000 5079022673500369SLVL6213541000086093 507902267350 984288 180893 S +09:02:34 +Slot[168] 0200 010000 6688990100958501 ------------- 00 692648 000100000000 507904719402180010006688990100958501 507904719402 547442 621354 S +09:02:42 +Slot[189] 0200 010000 1808930500014303 ------------- 51 934476 000050000000 507900844841030150031808930500014303 507900844841 452726 668899 S +09:02:51 Slot [230] | NOT FINANCIAL TRANSACTION +09:02:55 +Slot[169] 0200 011000 1808930400010799 ------------- 00 692699 000100000000 507904965464150011001808930400010799 507904965464 161808 621354 S +09:02:57 +Slot[205] 0200 010000 6213541000086093 ------------- 00 267353 000100000000 5079022673530369SLVL6213541000086093 507902267353 292972 180893 S +09:02:59 +Slot[232] 0200 010000 6688990040051482 ------------- 00 692746 000010000000 507903365351130016006688990040051482 507903365351 457168 621354 S +09:03:00 +Slot[222] 0200 010000 6213541000696131 ------------- 00 267356 000010000000 5079022673560111BLBR6213541000696131 507902267356 676170 180893 S +09:03:08 Slot [173] | NOT FINANCIAL TRANSACTION +09:03:10 +Slot[188] 0200 010000 1808930500014303 ------------- 51 934500 000100000000 507900844842030150031808930500014303 507900844842 833622 668899 S +09:03:12 +Slot[229] 0200 010000 6213544000271178 ------------- 00 934505 000100000000 507901822363034070036213544000271178 507901822363 876687 668899 S +09:03:22 +Slot[223] 0200 010000 6213541000286446 ------------- 00 934514 000100000000 507902407322030010106213541000286446 507902407322 118128 668899 S +09:03:24 +Slot[215] 0200 011000 1808930800002636 ------------- 00 001965 000100000000 507900296950010016001808930800002636 507900296950 442604 220699 S +09:03:28 Slot [246] | NOT FINANCIAL TRANSACTION +09:03:45 +Slot[248] 0420 011000 1808930400010799 ------------- 00 692699 000100000000 507904965464150011001808930400010799 507904965464 -------- 621354 S +09:03:45 +Slot[243] 0200 010000 1808930500014303 ------------- 51 934526 000070000000 507900844843030150031808930500014303 507900844843 397566 668899 S +09:03:47 Slot [244] | NOT FINANCIAL TRANSACTION +09:03:48 +Slot[177] 0200 010000 1808931300006887 ------------- 00 692887 000100000000 507903735022060023001808931300006887 507903735022 415121 621354 S +09:03:49 +Slot[235] 0200 010000 6213541000696131 ------------- 00 267363 000010000000 5079022673630111BLBR6213541000696131 507902267363 272849 180893 S +09:03:49 +Slot[251] 0200 011000 6213543000184530 ------------- 00 085589 000100000000 507900140207030002006213543000184530 507900140207 524970 220699 S +09:03:56 Slot [227] | NOT FINANCIAL TRANSACTION +09:03:58 Slot [250] | NOT FINANCIAL TRANSACTION +09:04:03 +Slot[242] 0200 301000 1808930600037840 ------------- 00 692908 000000000000 507904308933030029001808930600037840 507904308933 769459 621354 S +09:04:10 Slot [226] | NOT FINANCIAL TRANSACTION +09:04:14 +Slot[255] 0200 011000 1808930800002636 ------------- 00 001968 000100000000 507900296952010016001808930800002636 507900296952 786703 220699 S +09:04:16 +Slot[238] 0200 301000 6213545000739817 ------------- 00 267365 032002031926 5079022673650243VTKS6213545000739817 507902267365 556897 180893 S +09:04:17 +Slot[200] 0200 010000 1808930500014303 ------------- 51 934552 000100000000 507900844844030150031808930500014303 507900844844 482748 668899 S +09:04:27 Slot [233] | NOT FINANCIAL TRANSACTION +09:04:41 +Slot[237] 0200 010000 1808931300006887 ------------- 00 693121 000100000000 507903735024060023001808931300006887 507903735024 816014 621354 S +09:04:45 +Slot[216] 0200 010000 1808930500014303 ------------- 51 934575 000050000000 507900844845030150031808930500014303 507900844845 756743 668899 S +09:04:50 +Slot[234] 0200 301000 6213545000988752 ------------- 00 267367 032002035226 5079022673670243VTKS6213545000988752 507902267367 389303 180893 S +09:04:55 Slot [220] | NOT FINANCIAL TRANSACTION +09:05:00 +Slot[253] 0200 010000 6213544001747028 ------------- 51 934587 000100000000 507901822366034070036213544001747028 507901822366 827395 668899 S +09:05:01 Slot [249] | NOT FINANCIAL TRANSACTION +09:05:02 +Slot[260] 0420 011000 1808930400010799 0000000000000 00 692699 000100000000 507904965464150011001808930400010799 507904965464 692699 621354 S +09:05:09 +Slot[210] 0200 011000 1808930800002636 ------------- 00 001971 000100000000 507900296954010016001808930800002636 507900296954 227879 220699 S +09:05:10 Slot [261] | NOT FINANCIAL TRANSACTION +09:05:11 +Slot[259] 0200 310000 6213545000469894 ------------- 55 009265 000000000000 507900213236050001006213545000469894 507900213236 752082 220699 S +09:05:11 +Slot[225] 0200 311000 1808930100005750 ------------- 91 242304 000000000000 507900341562010020001808930100005750 507900341562 366896 220699 S +09:05:12 Slot [263] | NOT FINANCIAL TRANSACTION +09:05:13 +Slot[199] 0200 011000 6213548000357390 ------------- 51 202606 000009000000 507909202606015290166213548000357390 507909202606 568077 198901 S +09:05:16 +Slot[270] 0200 010000 6213545000739817 ------------- 00 267371 000050000000 5079022673710243VTKS6213545000739817 507902267371 074840 180893 S +09:05:18 +Slot[269] 0200 010000 6213545000910376 ------------- 00 934597 000010000000 507902114164030010096213545000910376 507902114164 239160 668899 S +09:05:25 +Slot[240] 0200 011000 6213548000357390 ------------- 00 202609 000008000000 507909202609015290166213548000357390 507909202609 569116 198901 S +09:05:26 Slot [228] | NOT FINANCIAL TRANSACTION +09:05:28 +Slot[197] 0200 300000 6688990050058757 ------------- 00 693303 000000000000 507904795484070015006688990050058757 507904795484 825759 621354 S +09:05:32 Slot [265] | NOT FINANCIAL TRANSACTION +09:05:38 +Slot[256] 0200 010000 6213545000902142 ------------- 00 267374 000050000000 5079022673740111BLBR6213545000902142 507902267374 231108 180893 S +09:05:42 +Slot[275] 0200 010000 6213544001747028 ------------- 00 934609 000030000000 507901822367034070036213544001747028 507901822367 217602 668899 S +09:05:46 +Slot[247] 0200 010000 1808931300006887 ------------- 00 693351 000100000000 507903735026060023001808931300006887 507903735026 113852 621354 S +09:05:52 Slot [274] | NOT FINANCIAL TRANSACTION +09:05:55 +Slot[218] 0200 310000 6213545000469894 ------------- 00 009268 000000000000 507900213238050001006213545000469894 507900213238 298217 220699 S +09:06:03 Slot [231] | NOT FINANCIAL TRANSACTION +09:06:06 Slot [279] | NOT FINANCIAL TRANSACTION +09:06:14 Slot [239] | NOT FINANCIAL TRANSACTION +09:06:19 +Slot[264] 0200 010000 1808930500014303 ------------- 00 934635 000010000000 507900844846030150031808930500014303 507900844846 421175 668899 S +09:06:20 Slot [254] | NOT FINANCIAL TRANSACTION +09:06:25 Slot [273] | NOT FINANCIAL TRANSACTION +09:06:33 +Slot[266] 0200 010000 6213545000469894 ------------- 00 009269 000100000000 507900213239050001006213545000469894 507900213239 166823 220699 S +09:06:38 +Slot[272] 0200 010000 6213545000902142 ------------- 00 267381 000010000000 5079022673810111BLBR6213545000902142 507902267381 977288 180893 S +09:06:51 Slot [282] | NOT FINANCIAL TRANSACTION +09:07:11 Slot [252] | NOT FINANCIAL TRANSACTION +09:07:12 +Slot[241] 0200 010000 1808931300006887 ------------- 00 693679 000100000000 507903735028060023001808931300006887 507903735028 402891 621354 S +09:07:15 Slot [280] | NOT FINANCIAL TRANSACTION +09:07:16 Slot [245] | NOT FINANCIAL TRANSACTION +09:07:26 Slot [276] | NOT FINANCIAL TRANSACTION +09:07:38 Slot [219] | NOT FINANCIAL TRANSACTION +09:07:42 +Slot[258] 0200 010000 6213545000902142 ------------- 00 267387 000010000000 5079022673870111BLBR6213545000902142 507902267387 493662 180893 S +09:07:51 +Slot[284] 0200 010000 6213545000469894 ------------- 00 009272 000070000000 507900213241050001006213545000469894 507900213241 639070 220699 S +09:07:53 Slot [224] | NOT FINANCIAL TRANSACTION +09:08:04 Slot [287] | NOT FINANCIAL TRANSACTION +09:08:06 +Slot[290] 0200 010000 6213542000057662 ------------- 00 934715 000100000000 507900858230030150046213542000057662 507900858230 395614 668899 S +09:08:16 Slot [277] | NOT FINANCIAL TRANSACTION +09:08:18 Slot [288] | NOT FINANCIAL TRANSACTION +09:08:19 +Slot[271] 0200 010000 1808931300006887 ------------- 00 693920 000100000000 507903735030060023001808931300006887 507903735030 402649 621354 S +09:08:25 +Slot[236] 0200 010000 6213545000902142 ------------- 00 267391 000010000000 5079022673910111BLBR6213545000902142 507902267391 842419 180893 S +09:08:30 +Slot[267] 0200 011000 6213545000837470 ------------- 00 202655 000010000000 507909202655000022036213545000837470 507909202655 578535 198901 S +09:08:32 +Slot[293] 0200 302000 6213545000660914 ------------- 00 934742 000000000000 507901989958033090016213545000660914 507901989958 642594 668899 S +09:08:33 +Slot[278] 0200 010000 1808930500014287 ------------- 75 934741 000100000000 507900844850030150031808930500014287 507900844850 389498 668899 S +09:08:38 +Slot[217] 0200 010000 6213541000224025 ------------- 00 934747 000100000000 507901489192035150016213541000224025 507901489192 033050 668899 S +09:08:41 Slot [294] | NOT FINANCIAL TRANSACTION +09:08:58 Slot [303] | NOT FINANCIAL TRANSACTION +09:09:01 +Slot[298] 0200 011000 6213545000926398 ------------- 00 267395 000012000000 5079022673950368KMMX6213545000926398 507902267395 964299 180893 S +09:09:06 +Slot[257] 0200 011000 1808931100008745 ------------- 00 694119 000050000000 507904510061020014001808931100008745 507904510061 604762 621354 S +09:09:12 +Slot[302] 0200 010000 6213542000057662 ------------- 00 934781 000070000000 507900858232030150046213542000057662 507900858232 600963 668899 S +09:09:13 Slot [281] | NOT FINANCIAL TRANSACTION +09:09:14 +Slot[299] 0200 010000 6213545000660914 ------------- 00 934784 000010000000 507901989959033090016213545000660914 507901989959 245032 668899 S +09:09:16 +Slot[292] 0200 010000 6688990601022203 ------------- 00 694163 000010000000 507904706877180009006688990601022203 507904706877 484194 621354 S +09:09:19 +Slot[300] 0200 011000 6688990040111351 ------------- 00 694179 000005000000 507902508122050033006688990040111351 507902508122 491604 621354 S +09:09:20 Slot [295] | NOT FINANCIAL TRANSACTION +09:09:21 Slot [308] | NOT FINANCIAL TRANSACTION +09:09:23 Slot [296] | NOT FINANCIAL TRANSACTION +09:09:28 +Slot[262] 0200 301000 6688990602097501 ------------- 14 267400 032002083226 5079022674000362CPSU6688990602097501 507902267400 457072 180893 S +09:09:30 +Slot[283] 0200 010000 6213545000469894 ------------- 00 009275 000010000000 507900213243050001006213545000469894 507900213243 606183 220699 S +09:09:37 +Slot[316] 0200 010000 6213541000224025 ------------- 00 934810 000100000000 507901489194035150016213541000224025 507901489194 783962 668899 S +09:09:39 +Slot[311] 0200 010000 1808930500014287 ------------- 75 934811 000100000000 507900844852030150031808930500014287 507900844852 904143 668899 S +09:09:46 Slot [286] | NOT FINANCIAL TRANSACTION +09:09:55 Slot [312] | NOT FINANCIAL TRANSACTION +09:09:57 Slot [306] | NOT FINANCIAL TRANSACTION +09:10:05 +Slot[307] 0200 010000 6213545000926398 ------------- 00 267405 000100000000 5079022674050368KMMX6213545000926398 507902267405 304800 180893 S +09:10:09 +Slot[317] 0200 010000 6688990105195208 ------------- 14 267406 000010000000 5079022674060322LNTS6688990105195208 507902267406 872041 180893 S +09:10:18 Slot [310] | NOT FINANCIAL TRANSACTION +09:10:22 Slot [318] | NOT FINANCIAL TRANSACTION +09:10:26 Slot [322] | NOT FINANCIAL TRANSACTION +09:10:27 +Slot[315] 0200 010000 6213545000660914 ------------- 00 934867 000010000000 507901989961033090016213545000660914 507901989961 709640 668899 S +09:10:34 Slot [304] | NOT FINANCIAL TRANSACTION +09:10:38 +Slot[289] 0200 010000 6213541000224025 ------------- 00 934872 000100000000 507901489196035150016213541000224025 507901489196 319405 668899 S +09:10:40 +Slot[285] 0200 010000 6213543000246040 ------------- 00 934875 000100000000 507901963390030200196213543000246040 507901963390 032978 668899 S +09:10:41 +Slot[297] 0200 010000 6688990601489105 ------------- 14 267413 000010000000 5079022674130369SLVL6688990601489105 507902267413 515136 180893 S +09:10:44 +Slot[325] 0200 011000 6213541000313638 ------------- 00 177319 000050000000 507900010196010001006213541000313638 507900010196 848729 220699 S +09:10:50 Slot [291] | NOT FINANCIAL TRANSACTION +09:11:01 Slot [326] | NOT FINANCIAL TRANSACTION +09:11:17 Slot [301] | NOT FINANCIAL TRANSACTION +09:11:20 Slot [327] | NOT FINANCIAL TRANSACTION +09:11:24 Slot [305] | NOT FINANCIAL TRANSACTION +09:11:31 +Slot[333] 0200 011000 1808930700001928 ------------- 00 167747 000010000000 507900175072070001001808930700001928 507900175072 570725 220699 S +09:11:31 Slot [314] | NOT FINANCIAL TRANSACTION +09:11:32 +Slot[331] 0200 010000 6688990105195208 ------------- 14 267423 000010000000 5079022674230322LNTS6688990105195208 507902267423 453461 180893 S +09:11:44 Slot [321] | NOT FINANCIAL TRANSACTION +09:11:49 +Slot[337] 0200 012000 6688990100945805 ------------- 61 267426 000130000000 5079022674260467PSLK6688990100945805 507902267426 876830 180893 S +09:11:51 +Slot[334] 0200 301000 6213545000926398 ------------- 00 267427 032002105426 5079022674270368KMMX6213545000926398 507902267427 621502 180893 S +09:12:01 Slot [336] | NOT FINANCIAL TRANSACTION +09:12:13 Slot [335] | NOT FINANCIAL TRANSACTION +09:12:26 Slot [320] | NOT FINANCIAL TRANSACTION +09:12:28 Slot [342] | NOT FINANCIAL TRANSACTION +09:12:37 Slot [345] | NOT FINANCIAL TRANSACTION +09:12:43 +Slot[341] 0200 011000 6213545000926398 ------------- 00 267433 000015000000 5079022674330368KMMX6213545000926398 507902267433 011249 180893 S +09:12:49 +Slot[344] 0200 012000 6688990100945805 ------------- 61 267437 000130000000 5079022674370467PSLK6688990100945805 507902267437 991817 180893 S +09:12:59 Slot [323] | NOT FINANCIAL TRANSACTION +09:13:02 +Slot[268] 0200 010000 6213544000692142 ------------- 75 934968 000100000000 507901963393030200196213544000692142 507901963393 974043 668899 S +09:13:10 +Slot[329] 0200 010000 6688990105380206 ------------- 00 695098 000068000000 507904706882180009006688990105380206 507904706882 007389 621354 S +09:13:15 Slot [339] | NOT FINANCIAL TRANSACTION +09:13:26 Slot [348] | NOT FINANCIAL TRANSACTION +09:13:28 Slot [309] | NOT FINANCIAL TRANSACTION +09:13:42 Slot [352] | NOT FINANCIAL TRANSACTION +09:13:42 Slot [328] | NOT FINANCIAL TRANSACTION +09:13:52 +Slot[347] 0200 301000 6688990040028530 ------------- 00 695266 000000000000 507902508135050033006688990040028530 507902508135 620047 621354 S +09:14:01 +Slot[350] 0200 010000 1808931100007499 ------------- 00 695293 000050000000 507904599633020022001808931100007499 507904599633 448139 621354 S +09:14:03 +Slot[319] 0200 010000 6213544000692142 ------------- 75 935006 000100000000 507901963395030200196213544000692142 507901963395 058045 668899 S +09:14:05 Slot [332] | NOT FINANCIAL TRANSACTION +09:14:17 Slot [346] | NOT FINANCIAL TRANSACTION +09:14:30 Slot [356] | NOT FINANCIAL TRANSACTION +09:14:33 Slot [357] | NOT FINANCIAL TRANSACTION +09:14:47 Slot [330] | NOT FINANCIAL TRANSACTION +09:14:49 Slot [343] | NOT FINANCIAL TRANSACTION +09:14:55 Slot [365] | NOT FINANCIAL TRANSACTION +09:14:56 +Slot[313] 0200 301000 6213545000740435 ------------- 00 935056 000000000000 507901614433030010076213545000740435 507901614433 660645 668899 S +09:14:58 +Slot[366] 0200 011000 6688990040028530 ------------- 00 695528 000020000000 507902508137050033006688990040028530 507902508137 914809 621354 S +09:14:59 +Slot[340] 0200 302000 6213544001633293 ------------- 00 935058 000000000000 507901822372034070036213544001633293 507901822372 905065 668899 S +09:15:00 Slot [371] | NOT FINANCIAL TRANSACTION +09:15:09 +Slot[378] 0200 010000 6213541000274947 ------------- 00 935063 000100000000 507901422760033140016213541000274947 507901422760 432165 668899 S +09:15:12 Slot [324] | NOT FINANCIAL TRANSACTION +09:15:23 Slot [373] | NOT FINANCIAL TRANSACTION +09:15:32 Slot [353] | NOT FINANCIAL TRANSACTION +09:15:34 Slot [382] | NOT FINANCIAL TRANSACTION +09:15:45 Slot [355] | NOT FINANCIAL TRANSACTION +09:15:52 Slot [363] | NOT FINANCIAL TRANSACTION +09:15:56 Slot [358] | NOT FINANCIAL TRANSACTION +09:16:07 Slot [370] | NOT FINANCIAL TRANSACTION +09:16:13 +Slot[360] 0200 301000 6213545000740435 ------------- 00 935111 000000000000 507901614435030010076213545000740435 507901614435 723460 668899 S +09:16:18 Slot [338] | NOT FINANCIAL TRANSACTION +09:16:18 Slot [354] | NOT FINANCIAL TRANSACTION +09:16:20 Slot [379] | NOT FINANCIAL TRANSACTION +09:16:29 Slot [369] | NOT FINANCIAL TRANSACTION +09:16:32 +Slot[396] 0200 010000 6213544001633293 ------------- 00 935131 000010000000 507901822374034070036213544001633293 507901822374 092860 668899 S +09:16:34 Slot [389] | NOT FINANCIAL TRANSACTION +09:16:37 +Slot[351] 0200 010000 6213541000274947 ------------- 00 935135 000100000000 507901422762033140016213541000274947 507901422762 146134 668899 S +09:16:38 +Slot[390] 0200 010000 1808931100007499 ------------- 51 695937 000050000000 507904599635020022001808931100007499 507904599635 055864 621354 S +09:16:45 Slot [359] | NOT FINANCIAL TRANSACTION +09:16:55 Slot [376] | NOT FINANCIAL TRANSACTION +09:16:57 Slot [374] | NOT FINANCIAL TRANSACTION +09:17:06 Slot [361] | NOT FINANCIAL TRANSACTION +09:17:06 Slot [395] | NOT FINANCIAL TRANSACTION +09:17:13 +Slot[410] 0200 010000 6213545000627228 ------------- 00 267454 000100000000 5079022674540531VTHH6213545000627228 507902267454 538271 180893 S +09:17:19 +Slot[383] 0200 010000 6213544001842738 ------------- 00 935165 000100000000 507901963400030200196213544001842738 507901963400 121470 668899 S +09:17:23 Slot [393] | NOT FINANCIAL TRANSACTION +09:17:35 Slot [400] | NOT FINANCIAL TRANSACTION +09:17:36 Slot [413] | NOT FINANCIAL TRANSACTION +09:17:43 +Slot[397] 0200 010000 6213541000274947 ------------- 00 935190 000050000000 507901422764033140016213541000274947 507901422764 852459 668899 S +09:17:45 +Slot[349] 0200 010000 1808931100007499 ------------- 00 696206 000030000000 507904599637020022001808931100007499 507904599637 751236 621354 S +09:17:50 Slot [414] | NOT FINANCIAL TRANSACTION +09:18:02 Slot [399] | NOT FINANCIAL TRANSACTION +09:18:02 Slot [387] | NOT FINANCIAL TRANSACTION +09:18:12 Slot [394] | NOT FINANCIAL TRANSACTION +09:18:22 Slot [372] | NOT FINANCIAL TRANSACTION +09:18:33 Slot [368] | NOT FINANCIAL TRANSACTION +09:18:38 Slot [418] | NOT FINANCIAL TRANSACTION +09:18:39 +Slot[406] 0200 010000 6213544001842738 ------------- 00 935235 000100000000 507901963402030200196213544001842738 507901963402 197042 668899 S +09:18:44 Slot [419] | NOT FINANCIAL TRANSACTION +09:18:57 Slot [407] | NOT FINANCIAL TRANSACTION +09:19:07 Slot [380] | NOT FINANCIAL TRANSACTION +09:19:08 +Slot[411] 0200 011000 1808930800006587 ------------- 00 202826 000020000000 507909202826015290191808930800006587 507909202826 453123 198901 S +09:19:08 Slot [384] | NOT FINANCIAL TRANSACTION +09:19:15 +Slot[416] 0200 010000 6213545000627228 ------------- 00 267473 000010000000 5079022674730531VTHH6213545000627228 507902267473 176823 180893 S +09:19:27 Slot [401] | NOT FINANCIAL TRANSACTION +09:19:40 Slot [420] | NOT FINANCIAL TRANSACTION +09:19:40 Slot [381] | NOT FINANCIAL TRANSACTION +09:19:47 +Slot[415] 0200 010000 6213544001842738 ------------- 00 935269 000100000000 507901963404030200196213544001842738 507901963404 799391 668899 S +09:19:49 +Slot[398] 0200 010000 6213545000740435 ------------- 00 935270 000100000000 507901614438030010076213545000740435 507901614438 035545 668899 S +09:19:55 Slot [433] | NOT FINANCIAL TRANSACTION +09:20:00 +Slot[425] 0200 301000 1808930800006587 ------------- 00 202843 000000000000 507909202843015290191808930800006587 507909202843 407951 198901 S +09:20:07 Slot [364] | NOT FINANCIAL TRANSACTION +09:20:12 Slot [388] | NOT FINANCIAL TRANSACTION +09:20:18 Slot [430] | NOT FINANCIAL TRANSACTION +09:20:25 +Slot[367] 0200 010000 6213545000627228 ------------- 00 267480 000010000000 5079022674800531VTHH6213545000627228 507902267480 526199 180893 S +09:20:27 +Slot[441] 0200 011000 6688990040087213 ------------- 55 696950 000050000000 507904000032010116006688990040087213 507904000032 668530 621354 S +09:20:34 Slot [409] | NOT FINANCIAL TRANSACTION +09:20:42 +Slot[437] 0200 011000 6688990040087213 ------------- 00 697008 000050000000 507904000034010116006688990040087213 507904000034 674727 621354 S +09:20:42 Slot [402] | NOT FINANCIAL TRANSACTION +09:20:45 Slot [403] | NOT FINANCIAL TRANSACTION +09:20:47 +Slot[408] 0200 011000 6688990040001149 ------------- 00 697040 000100000000 507904795506070015006688990040001149 507904795506 282224 621354 S +09:20:59 Slot [362] | NOT FINANCIAL TRANSACTION +09:21:03 +Slot[375] 0200 302000 6213543000196260 ------------- 00 935316 000000000000 507901523575032160016213543000196260 507901523575 599451 668899 S +09:21:12 Slot [385] | NOT FINANCIAL TRANSACTION +09:21:17 Slot [447] | NOT FINANCIAL TRANSACTION +09:21:20 Slot [392] | NOT FINANCIAL TRANSACTION +09:21:25 +Slot[412] 0200 010000 6213545000627228 ------------- 00 267489 000010000000 5079022674890531VTHH6213545000627228 507902267489 928562 180893 S +09:21:26 +Slot[450] 0200 010000 6213543000196260 ------------- 51 935335 000010000000 507901523576032160016213543000196260 507901523576 337841 668899 S +09:21:34 Slot [417] | NOT FINANCIAL TRANSACTION +09:21:44 Slot [386] | NOT FINANCIAL TRANSACTION +09:21:50 Slot [391] | NOT FINANCIAL TRANSACTION +09:21:50 +Slot[377] 0200 300000 6688990104502404 ------------- 00 697306 000000000000 507902508153050033006688990104502404 507902508153 545980 621354 S +09:21:55 +Slot[443] 0200 010000 6213541000439532 ------------- 51 935349 000015000000 507900146414030200056213541000439532 507900146414 601107 668899 S +09:21:56 +Slot[405] 0200 011000 6688990040001149 ------------- 51 697331 000030000000 507904795508070015006688990040001149 507904795508 180089 621354 S +09:22:02 +Slot[456] 0200 010000 6213543000196260 ------------- 00 935355 000009000000 507901523577032160016213543000196260 507901523577 405160 668899 S +09:22:06 Slot [446] | NOT FINANCIAL TRANSACTION +09:22:11 +Slot[429] 0200 010000 6213545000627228 ------------- 00 267495 000010000000 5079022674950531VTHH6213545000627228 507902267495 175057 180893 S +09:22:22 Slot [435] | NOT FINANCIAL TRANSACTION +09:22:24 Slot [424] | NOT FINANCIAL TRANSACTION +09:22:33 Slot [445] | NOT FINANCIAL TRANSACTION +09:22:38 +Slot[404] 0200 010000 6213541000439532 ------------- 51 935381 000015000000 507900146415030200056213541000439532 507900146415 050328 668899 S +09:22:43 Slot [438] | NOT FINANCIAL TRANSACTION +09:22:46 Slot [442] | NOT FINANCIAL TRANSACTION +09:22:54 Slot [434] | NOT FINANCIAL TRANSACTION +09:23:05 Slot [427] | NOT FINANCIAL TRANSACTION +09:23:06 +Slot[428] 0200 010000 6213541000439532 ------------- 00 935399 000010000000 507900146416030200056213541000439532 507900146416 139368 668899 S +09:23:16 Slot [451] | NOT FINANCIAL TRANSACTION +09:23:29 Slot [457] | NOT FINANCIAL TRANSACTION +09:23:29 Slot [462] | NOT FINANCIAL TRANSACTION +09:23:40 Slot [431] | NOT FINANCIAL TRANSACTION +09:23:45 +Slot[426] 0200 300000 6688990103312805 ------------- 00 697752 000000000000 507902508159050033006688990103312805 507902508159 884106 621354 S +09:23:48 Slot [422] | NOT FINANCIAL TRANSACTION +09:23:51 Slot [444] | NOT FINANCIAL TRANSACTION +09:24:01 +Slot[421] 0200 012000 1808931300006085 ------------- 42 697825 000050000000 507903735074060023001808931300006085 507903735074 549236 621354 S +09:24:07 Slot [465] | NOT FINANCIAL TRANSACTION +09:24:19 Slot [436] | NOT FINANCIAL TRANSACTION +09:24:24 +Slot[423] 0200 301000 6688990105201501 ------------- 00 697942 000000000000 507904719406180010006688990105201501 507904719406 999513 621354 S +09:24:34 Slot [439] | NOT FINANCIAL TRANSACTION +09:24:35 Slot [458] | NOT FINANCIAL TRANSACTION +09:24:47 +Slot[459] 0200 010000 6688990104502404 ------------- 00 698035 000010000000 507902508161050033006688990104502404 507902508161 051288 621354 S +09:24:50 Slot [452] | NOT FINANCIAL TRANSACTION +09:24:50 Slot [466] | NOT FINANCIAL TRANSACTION +09:24:55 Slot [468] | NOT FINANCIAL TRANSACTION +09:25:07 Slot [455] | NOT FINANCIAL TRANSACTION +09:25:10 +Slot[475] 0200 011000 6688990105201501 ------------- 00 698156 000040000000 507904719408180010006688990105201501 507904719408 692519 621354 S +09:25:19 +Slot[449] 0200 301000 6688990107221705 ------------- 00 698180 000000000000 507905108519200013006688990107221705 507905108519 217569 621354 S +09:25:24 Slot [440] | NOT FINANCIAL TRANSACTION +09:25:39 Slot [460] | NOT FINANCIAL TRANSACTION +09:25:41 Slot [432] | NOT FINANCIAL TRANSACTION +09:25:48 +Slot[482] 0200 010000 6688990102710306 ------------- 00 698302 000040000000 507904706907180009006688990102710306 507904706907 832458 621354 S +09:25:52 Slot [495] | NOT FINANCIAL TRANSACTION +09:25:56 Slot [453] | NOT FINANCIAL TRANSACTION +09:25:58 +Slot[488] 0200 010000 6688990102858402 ------------- 14 021115 000100000000 507900263081010014006688990102858402 507900263081 731236 220699 S +09:26:00 +Slot[470] 0200 011000 6688990107221705 ------------- 00 698353 000090000000 507905108521200013006688990107221705 507905108521 116876 621354 S +09:26:06 +Slot[490] 0200 010000 2206990000086744 ------------- 00 935533 000100000000 507902217462030080042206990000086744 507902217462 878828 668899 S +09:26:07 Slot [484] | NOT FINANCIAL TRANSACTION +09:26:12 +Slot[463] 0200 010000 6213544000765369 ------------- 00 935538 000010000000 507901963412030200196213544000765369 507901963412 082289 668899 S +09:26:20 Slot [480] | NOT FINANCIAL TRANSACTION +09:26:22 Slot [471] | NOT FINANCIAL TRANSACTION +09:26:25 +Slot[448] 0200 310000 6688990102858402 ------------- 14 021118 000000000000 507900263083010014006688990102858402 507900263083 517792 220699 S +09:26:37 Slot [479] | NOT FINANCIAL TRANSACTION +09:26:44 Slot [0] | NOT FINANCIAL TRANSACTION +09:26:52 +Slot[2] 0200 311000 6213544000437118 ------------- 00 013411 000000000000 507900200945090001006213544000437118 507900200945 712481 220699 S +09:26:54 Slot [1] | NOT FINANCIAL TRANSACTION +09:26:54 +Slot[493] 0200 311000 6688990102858402 ------------- 14 021121 000000000000 507900263085010014006688990102858402 507900263085 992139 220699 S +09:26:54 Slot [498] | NOT FINANCIAL TRANSACTION +09:27:04 Slot [4] | NOT FINANCIAL TRANSACTION +09:27:05 Slot [483] | NOT FINANCIAL TRANSACTION +09:27:06 +Slot[473] 0200 011000 6688990040050203 ------------- 00 698617 000100000000 507903699571050045006688990040050203 507903699571 870826 621354 S +09:27:16 Slot [489] | NOT FINANCIAL TRANSACTION +09:27:20 +Slot[474] 0200 010000 2206990000004747 ------------- 00 698667 000020000000 507903975175010113002206990000004747 507903975175 635944 621354 S +09:27:27 Slot [476] | NOT FINANCIAL TRANSACTION +09:27:34 +Slot[472] 0200 010000 6213544001991394 ------------- 00 935607 000030000000 507902531661030200336213544001991394 507902531661 595127 668899 S +09:27:40 Slot [486] | NOT FINANCIAL TRANSACTION +09:27:49 Slot [477] | NOT FINANCIAL TRANSACTION +09:27:55 Slot [492] | NOT FINANCIAL TRANSACTION +09:27:56 Slot [6] | NOT FINANCIAL TRANSACTION +09:28:07 +Slot[485] 0200 010000 6213545000774053 ------------- 00 935638 000100000000 507901963415030200196213545000774053 507901963415 969946 668899 S +09:28:09 +Slot[454] 0200 301000 6688990100924305 ------------- 00 698857 000000000000 507904719415180010006688990100924305 507904719415 123486 621354 S +09:28:10 +Slot[14] 0200 300000 2206990000004747 ------------- 00 698863 000000000000 507903975176010113002206990000004747 507903975176 513646 621354 S +09:28:10 Slot [13] | NOT FINANCIAL TRANSACTION +09:28:26 +Slot[12] 0200 010000 1808931800018119 ------------- 55 698927 000100000000 507904635462170008001808931800018119 507904635462 230493 621354 S +09:28:33 Slot [16] | NOT FINANCIAL TRANSACTION +09:28:40 +Slot[494] 0200 010000 6213548000508034 ------------- 55 267522 000010000000 5079022675220221XKKM6213548000508034 507902267522 479432 180893 S +09:28:48 Slot [491] | NOT FINANCIAL TRANSACTION +09:28:52 +Slot[22] 0200 010000 6213541000250616 ------------- 00 267525 000050000000 5079022675250401XSBR6213541000250616 507902267525 621424 180893 S +09:28:54 Slot [469] | NOT FINANCIAL TRANSACTION +09:28:58 Slot [17] | NOT FINANCIAL TRANSACTION +09:29:05 Slot [499] | NOT FINANCIAL TRANSACTION +09:29:17 Slot [31] | NOT FINANCIAL TRANSACTION +09:29:20 +Slot[481] 0200 010000 6213548000508034 ------------- 00 267532 000010000000 5079022675320221XKKM6213548000508034 507902267532 621485 180893 S +09:29:33 Slot [10] | NOT FINANCIAL TRANSACTION +09:29:44 +Slot[3] 0200 012000 6688990100603701 ------------- 00 699276 000005000000 507902546358050037006688990100603701 507902546358 051464 621354 S +09:29:44 Slot [23] | NOT FINANCIAL TRANSACTION +09:29:45 +Slot[29] 0200 011000 6688990100924305 ------------- 00 699283 000100000000 507904719417180010006688990100924305 507904719417 482018 621354 S +09:29:55 Slot [7] | NOT FINANCIAL TRANSACTION +09:29:55 Slot [33] | NOT FINANCIAL TRANSACTION +09:29:59 Slot [11] | NOT FINANCIAL TRANSACTION +09:30:00 Slot [21] | NOT FINANCIAL TRANSACTION +09:30:05 Slot [35] | NOT FINANCIAL TRANSACTION +09:30:16 Slot [496] | NOT FINANCIAL TRANSACTION +09:30:21 +Slot[30] 0200 010000 6213545001108848 ------------- 61 267538 000200000000 5079022675380221XKKM6213545001108848 507902267538 871651 180893 S +09:30:30 +Slot[461] 0200 010000 1808931100006269 ------------- 00 699441 000030000000 507901489171010048001808931100006269 507901489171 704709 621354 S +09:30:32 Slot [37] | NOT FINANCIAL TRANSACTION +09:30:36 +Slot[9] 0200 010000 6213544002257738 ------------- 00 935763 000030000000 507900297312030100066213544002257738 507900297312 084026 668899 S +09:30:42 Slot [36] | NOT FINANCIAL TRANSACTION +09:30:51 +Slot[45] 0200 301000 1808930200040129 ------------- 00 202995 000000000000 507909202995015290311808930200040129 507909202995 265908 198901 S +09:30:56 Slot [18] | NOT FINANCIAL TRANSACTION +09:31:02 Slot [497] | NOT FINANCIAL TRANSACTION +09:31:04 Slot [467] | NOT FINANCIAL TRANSACTION +09:31:05 +Slot[40] 0200 011000 6688990100924305 ------------- 00 699612 000070000000 507904719419180010006688990100924305 507904719419 578399 621354 S +09:31:12 Slot [43] | NOT FINANCIAL TRANSACTION +09:31:21 Slot [28] | NOT FINANCIAL TRANSACTION +09:31:26 +Slot[8] 0200 301000 1808931100006269 ------------- 00 699676 000000000000 507901489172010048001808931100006269 507901489172 396271 621354 S +09:31:33 +Slot[50] 0200 301000 6213545001108848 ------------- 00 267545 032002303426 5079022675450221XKKM6213545001108848 507902267545 699072 180893 S +09:31:35 +Slot[52] 0200 010000 6213545000095798 ------------- 00 267546 000100000000 5079022675460112CPBR6213545000095798 507902267546 873990 180893 S +09:31:49 Slot [44] | NOT FINANCIAL TRANSACTION +09:32:04 Slot [25] | NOT FINANCIAL TRANSACTION +09:32:05 +Slot[61] 0200 300000 6688990040113688 ------------- 00 699863 000000000000 507903063479010086006688990040113688 507903063479 491581 621354 S +09:32:06 Slot [15] | NOT FINANCIAL TRANSACTION +09:32:09 Slot [55] | NOT FINANCIAL TRANSACTION +09:32:22 +Slot[478] 0200 011000 6688990100924305 ------------- 00 699937 000005000000 507904719421180010006688990100924305 507904719421 917344 621354 S +09:32:24 +Slot[60] 0200 010000 6213544001906277 ------------- 00 935862 000100000000 507902475673030200326213544001906277 507902475673 371194 668899 S +09:32:25 +Slot[68] 0200 011000 1808930200040129 ------------- 00 203013 000012000000 507909203013015290311808930200040129 507909203013 723077 198901 S +09:32:28 +Slot[63] 0200 010000 6213545001108848 ------------- 61 267559 000150000000 5079022675590221XKKM6213545001108848 507902267559 149232 180893 S +09:32:38 Slot [41] | NOT FINANCIAL TRANSACTION +09:32:53 +Slot[38] 0200 011000 6688990102974506 ------------- 00 700058 000020000000 507904965502150011006688990102974506 507904965502 573953 621354 S +09:32:55 Slot [464] | NOT FINANCIAL TRANSACTION +09:33:00 +Slot[73] 0200 300000 6213543000054881 ------------- 00 935894 000000000000 507900844855030150036213543000054881 507900844855 568381 668899 S +09:33:02 +Slot[32] 0200 010000 6688990040113688 ------------- 00 700098 000040000000 507903063481010086006688990040113688 507903063481 568165 621354 S +09:33:06 +Slot[27] 0200 301000 1808930200040129 ------------- 00 203022 000000000000 507909203022015290311808930200040129 507909203022 650632 198901 S +09:33:07 Slot [487] | NOT FINANCIAL TRANSACTION +09:33:11 Slot [20] | NOT FINANCIAL TRANSACTION +09:33:14 Slot [26] | NOT FINANCIAL TRANSACTION +09:33:17 +Slot[48] 0200 011000 6688990040087189 ------------- 00 700135 000020000000 507903908484010106006688990040087189 507903908484 208286 621354 S +09:33:23 Slot [19] | NOT FINANCIAL TRANSACTION +09:33:25 +Slot[46] 0200 012000 6213545000095798 ------------- 00 267568 000070000000 5079022675680112CPBR6213545000095798 507902267568 881527 180893 S +09:33:35 +Slot[69] 0200 010000 6213541000422488 ------------- 00 935920 000100000000 507901614442030010076213541000422488 507901614442 407065 668899 S +09:33:37 +Slot[58] 0200 011000 1808931400008635 ------------- 00 700207 000050000000 507904719423180010001808931400008635 507904719423 061979 621354 S +09:33:39 +Slot[78] 0200 010000 6213545001108848 ------------- 00 267570 000100000000 5079022675700221XKKM6213545001108848 507902267570 633541 180893 S +09:33:41 +Slot[47] 0200 010000 6213545000939409 ------------- 61 267572 000200000000 5079022675720366SKTT6213545000939409 507902267572 812590 180893 S +09:33:47 +Slot[81] 0200 010000 6213541000646201 ------------- 61 267576 000200000000 5079022675760523XYNG6213541000646201 507902267576 711264 180893 S +09:33:48 Slot [54] | NOT FINANCIAL TRANSACTION +09:34:01 Slot [57] | NOT FINANCIAL TRANSACTION +09:34:07 +Slot[24] 0200 010000 6213544002241757 ------------- 55 267582 000010000000 5079022675820118UDBR6213544002241757 507902267582 261407 180893 S +09:34:08 +Slot[42] 0200 010000 6213541000646201 ------------- 61 267585 000200000000 5079022675850523XYNG6213541000646201 507902267585 439492 180893 S +09:34:09 Slot [34] | NOT FINANCIAL TRANSACTION +09:34:16 +Slot[86] 0200 010000 1808930600007553 ------------- 00 700373 000040000000 507904423209030041001808930600007553 507904423209 706678 621354 S +09:34:19 Slot [49] | NOT FINANCIAL TRANSACTION +09:34:20 Slot [89] | NOT FINANCIAL TRANSACTION +09:34:24 +Slot[88] 0200 302000 6213541000422488 ------------- 00 935968 000000000000 507901614444030010076213541000422488 507901614444 266842 668899 S +09:34:26 +Slot[59] 0200 010000 6688990107899708 ------------- 14 267591 000010000000 5079022675910467PSLK6688990107899708 507902267591 951082 180893 S +09:34:31 +Slot[5] 0200 301000 6213544000166816 ------------- 00 267592 032002333326 5079022675920401XSBR6213544000166816 507902267592 316818 180893 S +09:34:34 +Slot[79] 0200 010000 6213545001108848 ------------- 00 267593 000100000000 5079022675930221XKKM6213545001108848 507902267593 338129 180893 S +09:34:42 Slot [84] | NOT FINANCIAL TRANSACTION +09:34:45 +Slot[67] 0200 010000 6213545000095616 ------------- 61 267595 000200000000 5079022675950112CPBR6213545000095616 507902267595 609191 180893 S +09:34:47 +Slot[62] 0200 010000 6213541000422488 ------------- 00 935984 000100000000 507901614445030010076213541000422488 507901614445 852157 668899 S +09:34:53 Slot [39] | NOT FINANCIAL TRANSACTION +09:34:55 Slot [51] | NOT FINANCIAL TRANSACTION +09:34:56 +Slot[99] 0200 311000 6213545000046049 ------------- 00 079040 000000000000 507900132929030001006213545000046049 507900132929 665232 220699 S +09:35:04 Slot [64] | NOT FINANCIAL TRANSACTION +09:35:09 +Slot[82] 0200 010000 6213545000939409 ------------- 00 267603 000100000000 5079022676030366SKTT6213545000939409 507902267603 545878 180893 S +09:35:11 Slot [93] | NOT FINANCIAL TRANSACTION +09:35:15 +Slot[56] 0200 010000 6213544000166816 ------------- 00 267605 000100000000 5079022676050401XSBR6213544000166816 507902267605 977758 180893 S +09:35:22 +Slot[91] 0200 010000 6213545001108848 ------------- 00 267607 000100000000 5079022676070221XKKM6213545001108848 507902267607 400122 180893 S +09:35:24 +Slot[100] 0200 010000 1808930200036226 ------------- 55 936010 000030000000 507902179605030040051808930200036226 507902179605 313799 668899 S +09:35:24 Slot [77] | NOT FINANCIAL TRANSACTION +09:35:36 Slot [65] | NOT FINANCIAL TRANSACTION +09:35:45 +Slot[72] 0200 010000 6213541000646201 ------------- 61 267616 000200000000 5079022676160523XYNG6213541000646201 507902267616 735322 180893 S +09:35:46 +Slot[106] 0200 011000 6213545000633341 ------------- 55 203057 000050000000 507909203057015290006213545000633341 507909203057 859656 198901 S +09:35:51 +Slot[76] 0200 010000 6213544001359980 ------------- 00 267618 000100000000 5079022676180466PSLB6213544001359980 507902267618 123778 180893 S +09:35:59 +Slot[66] 0200 010000 6688990107899708 ------------- 14 267620 000010000000 5079022676200467PSLK6688990107899708 507902267620 001689 180893 S +09:36:01 +Slot[90] 0200 011000 6213545000633341 ------------- 55 203066 000050000000 507909203066015290006213545000633341 507909203066 601234 198901 S +09:36:05 +Slot[114] 0200 010000 1808930200036226 ------------- 55 936036 000020000000 507902179607030040051808930200036226 507902179607 638773 668899 S +09:36:10 +Slot[83] 0200 301000 6688990100924305 ------------- 00 700852 000000000000 507904719424180010006688990100924305 507904719424 365769 621354 S +09:36:11 +Slot[74] 0200 010000 6213541000646201 ------------- 00 267627 000100000000 5079022676270523XYNG6213541000646201 507902267627 020974 180893 S +09:36:13 Slot [118] | NOT FINANCIAL TRANSACTION +09:36:13 +Slot[107] 0200 010000 6213545001108848 ------------- 00 267628 000100000000 5079022676280221XKKM6213545001108848 507902267628 578272 180893 S +09:36:18 +Slot[92] 0200 011000 6213545000633341 ------------- 00 203070 000050000000 507909203070015290006213545000633341 507909203070 010656 198901 S +09:36:19 +Slot[121] 0200 011000 6213544000166816 ------------- 00 267633 000040000000 5079022676330401XSBR6213544000166816 507902267633 540889 180893 S +09:36:21 Slot [115] | NOT FINANCIAL TRANSACTION +09:36:23 +Slot[113] 0200 301000 1808930200045466 ------------- 00 936053 000000000000 507900858234030150041808930200045466 507900858234 082023 668899 S +09:36:25 +Slot[108] 0200 010000 6688990106739004 ------------- 14 267634 000010000000 5079022676340102SAPA6688990106739004 507902267634 575020 180893 S +09:36:27 +Slot[94] 0200 011000 6213544001441846 ------------- 00 203072 000009000000 507909203072015290096213544001441846 507909203072 711055 198901 S +09:36:28 +Slot[127] 0200 012000 6688990040055327 ------------- 00 700918 000004000000 507904965508150011006688990040055327 507904965508 933045 621354 S +09:36:29 Slot [95] | NOT FINANCIAL TRANSACTION +09:36:37 Slot [75] | NOT FINANCIAL TRANSACTION +09:36:39 +Slot[125] 0200 010000 6213544001359980 ------------- 00 267641 000100000000 5079022676410466PSLB6213544001359980 507902267641 909561 180893 S +09:36:44 +Slot[53] 0200 010000 6213545000095616 ------------- 00 267642 000100000000 5079022676420112CPBR6213545000095616 507902267642 986231 180893 S +09:36:57 Slot [98] | NOT FINANCIAL TRANSACTION +09:36:59 +Slot[134] 0200 010000 6213544001673687 ------------- 00 936073 000050000000 507902179609030040056213544001673687 507902179609 968409 668899 S +09:37:01 +Slot[103] 0200 010000 6688990602743807 ------------- 14 267647 000050000000 5079022676470201ADD16688990602743807 507902267647 938369 180893 S +09:37:07 +Slot[96] 0200 010000 6213541000646201 ------------- 00 267648 000100000000 5079022676480523XYNG6213541000646201 507902267648 412177 180893 S +09:37:12 +Slot[71] 0200 301000 6213544001586947 ------------- 00 267651 032002361426 5079022676510401XSBR6213544001586947 507902267651 653364 180893 S +09:37:15 Slot [101] | NOT FINANCIAL TRANSACTION +09:37:19 +Slot[70] 0200 010000 6213544001359980 ------------- 00 267653 000100000000 5079022676530466PSLB6213544001359980 507902267653 618180 180893 S +09:37:20 +Slot[109] 0200 010000 6688990040055327 ------------- 00 701138 000002000000 507904965510150011006688990040055327 507904965510 763767 621354 S +09:37:22 +Slot[102] 0200 010000 1808930200045466 ------------- 00 936092 000100000000 507900858236030150041808930200045466 507900858236 636457 668899 S +09:37:25 +Slot[136] 0200 010000 6213545000939409 ------------- 00 267656 000100000000 5079022676560366SKTT6213545000939409 507902267656 627844 180893 S +09:37:34 Slot [85] | NOT FINANCIAL TRANSACTION +09:37:35 Slot [129] | NOT FINANCIAL TRANSACTION +09:37:39 +Slot[131] 0200 010000 6213545000095616 ------------- 00 267661 000100000000 5079022676610112CPBR6213545000095616 507902267661 569105 180893 S +09:37:50 Slot [87] | NOT FINANCIAL TRANSACTION +09:37:50 +Slot[105] 0200 010000 6213541000646201 ------------- 00 267668 000100000000 5079022676680523XYNG6213541000646201 507902267668 557434 180893 S +09:37:52 +Slot[104] 0200 011000 6688990060034814 ------------- 14 267669 000020000000 5079022676690369SLVL6688990060034814 507902267669 545849 180893 S +09:38:01 Slot [138] | NOT FINANCIAL TRANSACTION +09:38:12 Slot [117] | NOT FINANCIAL TRANSACTION +09:38:17 Slot [112] | NOT FINANCIAL TRANSACTION +09:38:17 +Slot[97] 0200 010000 6213545000939409 ------------- 00 267676 000100000000 5079022676760366SKTT6213545000939409 507902267676 534104 180893 S +09:38:26 +Slot[140] 0200 010000 1808930200036226 ------------- 00 936148 000020000000 507902179611030040051808930200036226 507902179611 790082 668899 S +09:38:29 Slot [116] | NOT FINANCIAL TRANSACTION +09:38:39 +Slot[111] 0200 300000 6213545001052244 ------------- 00 936163 000000000000 507902336374032170026213545001052244 507902336374 466914 668899 S +09:38:39 Slot [124] | NOT FINANCIAL TRANSACTION +09:38:45 +Slot[161] 0200 011000 6688990100924305 ------------- 51 701513 000050000000 507904719429180010006688990100924305 507904719429 600692 621354 S +09:39:10 Slot [80] | NOT FINANCIAL TRANSACTION +09:39:13 +Slot[147] 0200 012000 6213545000095616 ------------- 00 267680 000040000000 5079022676800112CPBR6213545000095616 507902267680 841543 180893 S +09:39:17 +Slot[122] 0420 012000 6213545000095616 ------------- 00 267680 000040000000 5079022676800112CPBR6213545000095616 507902267680 -------- 180893 S +09:39:19 Slot [132] | NOT FINANCIAL TRANSACTION +09:39:19 +Slot[123] 0200 010000 1888880000002717 ------------- 00 701588 000020000000 507904435682030042001888880000002717 507904435682 452640 621354 S +09:39:21 +Slot[162] 0200 301000 6688990060034814 ------------- 14 267685 032002382226 5079022676850369SLVL6688990060034814 507902267685 788963 180893 S +09:39:22 +Slot[154] 0200 010000 6213545000939409 ------------- 00 267686 000010000000 5079022676860366SKTT6213545000939409 507902267686 967982 180893 S +09:39:32 Slot [145] | NOT FINANCIAL TRANSACTION +09:39:35 +Slot[143] 0200 011000 6688990100924305 ------------- 51 701706 000040000000 507904719431180010006688990100924305 507904719431 099444 621354 S +09:39:42 Slot [158] | NOT FINANCIAL TRANSACTION +09:39:44 Slot [120] | NOT FINANCIAL TRANSACTION +09:39:50 +Slot[166] 0200 010000 6213544001906277 ------------- 00 936211 000100000000 507902475679030200326213544001906277 507902475679 238271 668899 S +09:39:53 Slot [150] | NOT FINANCIAL TRANSACTION +09:39:55 Slot [153] | NOT FINANCIAL TRANSACTION +09:39:58 +Slot[130] 0200 011000 6213544000156726 ------------- 00 242307 000050000000 507900341564010020006213544000156726 507900341564 283884 220699 S +09:40:04 Slot [133] | NOT FINANCIAL TRANSACTION +09:40:08 +Slot[142] 0200 010000 6688990060034814 ------------- 14 267691 000010000000 5079022676910369SLVL6688990060034814 507902267691 161209 180893 S +09:40:20 Slot [110] | NOT FINANCIAL TRANSACTION +09:40:21 Slot [167] | NOT FINANCIAL TRANSACTION +09:40:30 +Slot[137] 0420 012000 6213545000095616 0000000000000 00 267680 000040000000 5079022676800112CPBR6213545000095616 507902267680 -------- 180893 S +09:40:34 +Slot[159] 0200 301000 6688990040051615 ------------- 00 701977 000000000000 507904719432180010006688990040051615 507904719432 556107 621354 S +09:40:36 +Slot[175] 0200 010000 6213545000939409 ------------- 00 267696 000010000000 5079022676960366SKTT6213545000939409 507902267696 411107 180893 S +09:40:47 Slot [128] | NOT FINANCIAL TRANSACTION +09:40:49 +Slot[146] 0200 010000 6213544001906277 ------------- 00 936266 000100000000 507902475681030200326213544001906277 507902475681 558535 668899 S +09:40:49 Slot [141] | NOT FINANCIAL TRANSACTION +09:41:02 Slot [151] | NOT FINANCIAL TRANSACTION +09:41:09 +Slot[170] 0200 010000 6213545001052244 ------------- 00 936286 000020000000 507902336376032170026213545001052244 507902336376 178577 668899 S +09:41:14 Slot [157] | NOT FINANCIAL TRANSACTION +09:41:20 +Slot[164] 0200 010000 6213545000939409 ------------- 00 267703 000010000000 5079022677030366SKTT6213545000939409 507902267703 759499 180893 S +09:41:21 Slot [186] | NOT FINANCIAL TRANSACTION +09:41:21 +Slot[172] 0200 011000 6213544000156726 ------------- 00 242310 000005000000 507900341566010020006213544000156726 507900341566 406257 220699 S +09:41:23 Slot [148] | NOT FINANCIAL TRANSACTION +09:41:33 Slot [126] | NOT FINANCIAL TRANSACTION +09:41:44 Slot [171] | NOT FINANCIAL TRANSACTION +09:41:54 Slot [182] | NOT FINANCIAL TRANSACTION +09:41:54 Slot [119] | NOT FINANCIAL TRANSACTION +09:42:10 Slot [139] | NOT FINANCIAL TRANSACTION +09:42:13 +Slot[176] 0200 011000 6688990040062034 ------------- 00 702362 000010000000 507903359705130015006688990040062034 507903359705 709811 621354 S +09:42:17 +Slot[202] 0200 010000 6213545000939409 ------------- 00 267712 000010000000 5079022677120366SKTT6213545000939409 507902267712 433331 180893 S +09:42:25 Slot [160] | NOT FINANCIAL TRANSACTION +09:42:27 +Slot[187] 0200 010000 6213545001090160 ------------- 00 267715 000100000000 5079022677150112CPBR6213545001090160 507902267715 165480 180893 S +09:42:32 +Slot[156] 0200 011000 6213545001100761 ------------- 00 203152 000030000000 507909203152015290316213545001100761 507909203152 487808 198901 S +09:42:36 Slot [203] | NOT FINANCIAL TRANSACTION +09:42:38 +Slot[179] 0200 012000 6688990040051615 ------------- 00 702480 000050000000 507904719434180010006688990040051615 507904719434 326126 621354 S +09:42:47 Slot [144] | NOT FINANCIAL TRANSACTION +09:42:51 +Slot[163] 0200 010000 6688990040016063 ------------- 00 702539 000010000000 507902546369050037006688990040016063 507902546369 226110 621354 S +09:42:58 Slot [204] | NOT FINANCIAL TRANSACTION +09:42:59 +Slot[135] 0200 010000 6213544001906277 ------------- 00 936365 000100000000 507902475683030200326213544001906277 507902475683 824850 668899 S +09:42:59 Slot [152] | NOT FINANCIAL TRANSACTION +09:43:01 +Slot[192] 0200 010000 6213545000646095 ------------- 00 267725 000050000000 5079022677250366SKTT6213545000646095 507902267725 112989 180893 S +09:43:08 +Slot[196] 0200 010000 6688990107476101 ------------- 00 702612 000010000000 507904706939180009006688990107476101 507904706939 962711 621354 S +09:43:14 Slot [191] | NOT FINANCIAL TRANSACTION +09:43:27 Slot [155] | NOT FINANCIAL TRANSACTION +09:43:29 Slot [190] | NOT FINANCIAL TRANSACTION +09:43:40 Slot [181] | NOT FINANCIAL TRANSACTION +09:43:51 Slot [198] | NOT FINANCIAL TRANSACTION +09:44:02 +Slot[201] 0200 010000 6213544000781127 ------------- 00 267733 000010000000 5079022677330401XSBR6213544000781127 507902267733 743843 180893 S +09:44:04 Slot [214] | NOT FINANCIAL TRANSACTION +09:44:15 +Slot[165] 0200 010000 6213544001752275 ------------- 00 267738 000050000000 5079022677380522XYXH6213544001752275 507902267738 866855 180893 S +09:44:24 +Slot[194] 0200 301000 6688990060034814 ------------- 00 702964 000000000000 507904153825200010006688990060034814 507904153825 678967 621354 S +09:44:25 Slot [195] | NOT FINANCIAL TRANSACTION +09:44:29 Slot [184] | NOT FINANCIAL TRANSACTION +09:44:37 +Slot[209] 0200 010000 6213545000476352 ------------- 00 267744 000100000000 5079022677440366SKTT6213545000476352 507902267744 346711 180893 S +09:44:39 +Slot[178] 0200 010000 6213541000412117 ------------- 00 936431 000020000000 507902308440030110036213541000412117 507902308440 811246 668899 S +09:44:47 Slot [213] | NOT FINANCIAL TRANSACTION +09:44:54 Slot [206] | NOT FINANCIAL TRANSACTION +09:44:57 Slot [208] | NOT FINANCIAL TRANSACTION +09:45:07 +Slot[193] 0200 011000 6213544001240404 ------------- 00 203179 000020000000 507909203179015290316213544001240404 507909203179 595612 198901 S +09:45:08 +Slot[221] 0200 011000 1808930200045425 ------------- 00 703145 000030000000 507905146808090018001808930200045425 507905146808 235353 621354 S +09:45:09 Slot [207] | NOT FINANCIAL TRANSACTION +09:45:13 +Slot[212] 0200 010000 6213544000781127 ------------- 00 267753 000010000000 5079022677530401XSBR6213544000781127 507902267753 464327 180893 S +09:45:19 +Slot[185] 0200 011000 6213541000116098 ------------- 00 021127 000100000000 507900263089010014006213541000116098 507900263089 216450 220699 S +09:45:24 Slot [183] | NOT FINANCIAL TRANSACTION +09:45:28 +Slot[211] 0200 010000 6213545000476352 ------------- 00 267756 000050000000 5079022677560366SKTT6213545000476352 507902267756 622281 180893 S +09:45:31 Slot [149] | NOT FINANCIAL TRANSACTION +09:45:41 Slot [180] | NOT FINANCIAL TRANSACTION +09:45:46 +Slot[174] 0200 012000 6688990104635006 ------------- 00 703330 000050000000 507904479677150009006688990104635006 507904479677 758621 621354 S +09:45:56 Slot [230] | NOT FINANCIAL TRANSACTION +09:46:01 +Slot[168] 0200 011000 6688990060034814 ------------- 00 703403 000020000000 507904153827200010006688990060034814 507904153827 939317 621354 S +09:46:02 +Slot[189] 0200 301000 1808930200045425 ------------- 00 703411 000000000000 507905146809090018001808930200045425 507905146809 904888 621354 S +09:46:07 Slot [169] | NOT FINANCIAL TRANSACTION +09:46:12 +Slot[205] 0200 300000 6213541000412117 ------------- 00 936508 000000000000 507902308442030110036213541000412117 507902308442 455961 668899 S +09:46:14 Slot [232] | NOT FINANCIAL TRANSACTION +09:46:18 Slot [222] | NOT FINANCIAL TRANSACTION +09:46:21 Slot [188] | NOT FINANCIAL TRANSACTION +09:46:25 +Slot[173] 0200 011000 6213545000449185 ------------- 00 203202 000100000000 507909203202015290316213545000449185 507909203202 090351 198901 S +09:46:32 +Slot[229] 0200 011000 6213541000116098 ------------- 00 021133 000100000000 507900263093010014006213541000116098 507900263093 058942 220699 S +09:46:33 Slot [223] | NOT FINANCIAL TRANSACTION +09:46:34 Slot [215] | NOT FINANCIAL TRANSACTION +09:46:45 Slot [246] | NOT FINANCIAL TRANSACTION +09:47:01 +Slot[248] 0200 011000 1808930300028297 ------------- 00 703640 000070000000 507904495537020012001808930300028297 507904495537 553176 621354 S +09:47:02 Slot [243] | NOT FINANCIAL TRANSACTION +09:47:18 Slot [244] | NOT FINANCIAL TRANSACTION +09:47:19 Slot [177] | NOT FINANCIAL TRANSACTION +09:47:34 Slot [227] | NOT FINANCIAL TRANSACTION +09:47:35 Slot [251] | NOT FINANCIAL TRANSACTION +09:47:37 +Slot[235] 0200 300000 6213541000412117 ------------- 00 936592 000000000000 507902308444030110036213541000412117 507902308444 377636 668899 S +09:47:47 +Slot[250] 0200 011000 6213541000116098 ------------- 00 021136 000100000000 507900263095010014006213541000116098 507900263095 272429 220699 S +09:47:51 Slot [242] | NOT FINANCIAL TRANSACTION +09:48:08 Slot [226] | NOT FINANCIAL TRANSACTION +09:48:24 Slot [255] | NOT FINANCIAL TRANSACTION +09:48:25 Slot [238] | NOT FINANCIAL TRANSACTION +09:48:36 Slot [233] | NOT FINANCIAL TRANSACTION +09:48:36 Slot [237] | NOT FINANCIAL TRANSACTION +09:48:37 Slot [200] | NOT FINANCIAL TRANSACTION +09:48:44 +Slot[216] 0200 011000 6213541000116098 ------------- 00 021139 000100000000 507900263097010014006213541000116098 507900263097 330475 220699 S +09:48:46 +Slot[220] 0200 010000 6213545000509574 ------------- 00 168900 000030000000 507900026320010002006213545000509574 507900026320 468181 220699 S +09:48:52 +Slot[234] 0200 301000 1808930900038571 ------------- 00 704097 000000000000 507902539744050036001808930900038571 507902539744 203852 621354 S +09:48:53 Slot [249] | NOT FINANCIAL TRANSACTION +09:48:54 +Slot[253] 0200 010000 6688990100941507 ------------- 00 704138 000100000000 507904719447180010006688990100941507 507904719447 014632 621354 S +09:49:08 Slot [260] | NOT FINANCIAL TRANSACTION +09:49:24 Slot [210] | NOT FINANCIAL TRANSACTION +09:49:29 Slot [261] | NOT FINANCIAL TRANSACTION +09:49:35 Slot [225] | NOT FINANCIAL TRANSACTION +09:49:38 +Slot[259] 0200 011000 6213541000116098 ------------- 00 021142 000100000000 507900263099010014006213541000116098 507900263099 349559 220699 S +09:49:39 Slot [263] | NOT FINANCIAL TRANSACTION +09:49:49 +Slot[199] 0200 010000 1808930900038571 ------------- 00 704392 000010000000 507902539746050036001808930900038571 507902539746 495804 621354 S +09:49:52 Slot [270] | NOT FINANCIAL TRANSACTION +09:49:54 Slot [269] | NOT FINANCIAL TRANSACTION +09:50:04 +Slot[240] 0200 302000 6213545000690507 ------------- 00 936691 000000000000 507900270904030100046213545000690507 507900270904 727971 668899 S +09:50:08 Slot [228] | NOT FINANCIAL TRANSACTION +09:50:21 Slot [197] | NOT FINANCIAL TRANSACTION +09:50:30 Slot [275] | NOT FINANCIAL TRANSACTION +09:50:32 +Slot[265] 0200 010000 6213544001406112 ------------- 51 936716 000040000000 507901856220033110016213544001406112 507901856220 363664 668899 S +09:50:33 +Slot[256] 0200 011000 6213541000116098 ------------- 00 021145 000100000000 507900263101010014006213541000116098 507900263101 995439 220699 S +09:50:34 Slot [247] | NOT FINANCIAL TRANSACTION +09:50:37 Slot [274] | NOT FINANCIAL TRANSACTION +09:50:41 Slot [218] | NOT FINANCIAL TRANSACTION +09:50:47 Slot [231] | NOT FINANCIAL TRANSACTION +09:50:58 Slot [239] | NOT FINANCIAL TRANSACTION +09:51:02 +Slot[279] 0200 010000 6213544001406112 ------------- 00 936732 000039000000 507901856221033110016213544001406112 507901856221 857996 668899 S +09:51:03 +Slot[264] 0200 010000 6213545000516959 ------------- 00 267791 000050000000 5079022677910108THNG6213545000516959 507902267791 088151 180893 S +09:51:14 Slot [273] | NOT FINANCIAL TRANSACTION +09:51:17 +Slot[254] 0200 012000 6688990600439309 ------------- 62 704852 000100000000 507903928203010108006688990600439309 507903928203 945273 621354 S +09:51:18 +Slot[266] 0200 301000 6213545000403844 ------------- 00 936754 000000000000 507900789118030050026213545000403844 507900789118 049693 668899 S +09:51:21 Slot [282] | NOT FINANCIAL TRANSACTION +09:51:23 +Slot[272] 0200 011000 6213541000116098 ------------- 00 021148 000100000000 507900263103010014006213541000116098 507900263103 403448 220699 S +09:51:24 Slot [252] | NOT FINANCIAL TRANSACTION +09:51:35 Slot [241] | NOT FINANCIAL TRANSACTION +09:51:39 Slot [276] | NOT FINANCIAL TRANSACTION +09:51:42 +Slot[280] 0200 301000 6213541000335045 ------------- 00 267797 032002504326 5079022677970222XKPV6213541000335045 507902267797 577958 180893 S +09:51:43 Slot [219] | NOT FINANCIAL TRANSACTION +09:51:43 +Slot[245] 0200 010000 6688990100941507 ------------- 00 704955 000100000000 507904719453180010006688990100941507 507904719453 697355 621354 S +09:51:51 Slot [258] | NOT FINANCIAL TRANSACTION +09:52:03 +Slot[284] 0200 010000 6213545000732168 ------------- 00 267800 000100000000 5079022678000366SKTT6213545000732168 507902267800 781578 180893 S +09:52:07 +Slot[224] 0200 010000 6213544001982146 ------------- 00 936797 000100000000 507901856223033110016213544001982146 507901856223 186948 668899 S +09:52:09 +Slot[287] 0200 010000 6213545000403844 ------------- 00 936801 000020000000 507900789120030050026213545000403844 507900789120 909025 668899 S +09:52:11 +Slot[290] 0200 010000 6688990600439309 ------------- 62 705101 000100000000 507903928205010108006688990600439309 507903928205 731796 621354 S +09:52:16 Slot [277] | NOT FINANCIAL TRANSACTION +09:52:32 Slot [288] | NOT FINANCIAL TRANSACTION +09:52:44 Slot [236] | NOT FINANCIAL TRANSACTION +09:52:45 Slot [271] | NOT FINANCIAL TRANSACTION +09:52:47 Slot [267] | NOT FINANCIAL TRANSACTION +09:52:57 +Slot[293] 0200 010000 6213545000077697 ------------- 00 267804 000100000000 5079022678040112CPBR6213545000077697 507902267804 660416 180893 S +09:53:03 +Slot[278] 0200 010000 6688990100941507 ------------- 51 705355 000080000000 507904719455180010006688990100941507 507904719455 403551 621354 S +09:53:08 +Slot[217] 0200 010000 6213546000011694 ------------- 00 254832 000017000000 507900094411010009006213546000011694 507900094411 764185 220699 S +09:53:09 Slot [294] | NOT FINANCIAL TRANSACTION +09:53:21 +Slot[303] 0200 010000 6688990104797004 ------------- 14 267807 000010000000 5079022678070528LPBP6688990104797004 507902267807 532838 180893 S +09:53:30 Slot [298] | NOT FINANCIAL TRANSACTION +09:53:41 +Slot[257] 0200 301000 6213545000828859 ------------- 00 267810 032002524326 5079022678100262PSLB6213545000828859 507902267810 180015 180893 S +09:53:47 Slot [299] | NOT FINANCIAL TRANSACTION +09:53:47 +Slot[302] 0200 010000 6213544000060761 ------------- 00 223692 000023000000 507900118741010011006213544000060761 507900118741 365102 220699 S +09:53:49 +Slot[281] 0200 010000 6688990100941507 ------------- 51 705562 000070000000 507904719457180010006688990100941507 507904719457 276232 621354 S +09:53:49 Slot [300] | NOT FINANCIAL TRANSACTION +09:53:52 +Slot[292] 0200 010000 6213545000077697 ------------- 00 267812 000100000000 5079022678120112CPBR6213545000077697 507902267812 115920 180893 S +09:53:52 Slot [295] | NOT FINANCIAL TRANSACTION +09:54:07 Slot [308] | NOT FINANCIAL TRANSACTION +09:54:18 Slot [262] | NOT FINANCIAL TRANSACTION +09:54:23 +Slot[296] 0200 010000 6213545000828859 ------------- 00 267818 000100000000 5079022678180262PSLB6213545000828859 507902267818 568156 180893 S +09:54:33 +Slot[283] 0200 010000 6213548000525186 ------------- 00 267820 000050000000 5079022678200532XYKH6213548000525186 507902267820 571095 180893 S +09:54:41 Slot [316] | NOT FINANCIAL TRANSACTION +09:54:49 Slot [286] | NOT FINANCIAL TRANSACTION +09:54:50 +Slot[311] 0200 010000 6213541000633829 ------------- 00 936930 000020000000 507902407325030010106213541000633829 507902407325 618738 668899 S +09:54:53 Slot [312] | NOT FINANCIAL TRANSACTION +09:54:54 Slot [306] | NOT FINANCIAL TRANSACTION +09:54:54 Slot [307] | NOT FINANCIAL TRANSACTION +09:55:05 Slot [317] | NOT FINANCIAL TRANSACTION +09:55:14 +Slot[310] 0200 011000 6213545000077697 ------------- 00 267829 000030000000 5079022678290112CPBR6213545000077697 507902267829 580349 180893 S +09:55:28 +Slot[318] 0200 011000 1808930600001069 ------------- 00 009281 000100000000 507900213247050001001808930600001069 507900213247 138073 220699 S +09:55:31 Slot [322] | NOT FINANCIAL TRANSACTION +09:55:47 Slot [315] | NOT FINANCIAL TRANSACTION +09:55:51 Slot [304] | NOT FINANCIAL TRANSACTION +09:55:59 Slot [289] | NOT FINANCIAL TRANSACTION +09:55:59 Slot [285] | NOT FINANCIAL TRANSACTION +09:56:15 Slot [325] | NOT FINANCIAL TRANSACTION +09:56:19 +Slot[297] 0200 012000 6213545000095558 ------------- 00 079049 000100000000 507900132934030001006213545000095558 507900132934 017818 220699 S +09:56:21 Slot [291] | NOT FINANCIAL TRANSACTION +09:56:30 Slot [326] | NOT FINANCIAL TRANSACTION +09:56:45 Slot [301] | NOT FINANCIAL TRANSACTION +09:56:53 Slot [327] | NOT FINANCIAL TRANSACTION +09:56:56 Slot [305] | NOT FINANCIAL TRANSACTION +09:57:04 Slot [333] | NOT FINANCIAL TRANSACTION +09:57:07 Slot [314] | NOT FINANCIAL TRANSACTION +09:57:20 +Slot[331] 0200 011000 1808930600001069 ------------- 00 009287 000100000000 507900213251050001001808930600001069 507900213251 580990 220699 S +09:57:22 Slot [337] | NOT FINANCIAL TRANSACTION +09:57:27 +Slot[321] 0200 010000 6688990104797004 ------------- 00 706471 000010000000 507902508239050033006688990104797004 507902508239 639845 621354 S +09:57:29 +Slot[334] 0200 010000 6688990100941507 ------------- 00 706482 000030000000 507904719464180010006688990100941507 507904719464 374850 621354 S +09:57:34 Slot [336] | NOT FINANCIAL TRANSACTION +09:57:44 Slot [335] | NOT FINANCIAL TRANSACTION +09:57:52 +Slot[320] 0200 300000 6213541000573413 ------------- 00 937078 000000000000 507902435617030200316213541000573413 507902435617 600603 668899 S +09:57:55 Slot [342] | NOT FINANCIAL TRANSACTION +09:57:56 Slot [345] | NOT FINANCIAL TRANSACTION +09:58:01 +Slot[341] 0200 300000 6213545000586606 ------------- 00 937083 000000000000 507900297321030100066213545000586606 507900297321 024488 668899 S +09:58:07 Slot [344] | NOT FINANCIAL TRANSACTION +09:58:09 Slot [268] | NOT FINANCIAL TRANSACTION +09:58:12 +Slot[323] 0200 310000 6213544000090693 ------------- 00 242320 000000000000 507900341573010020006213544000090693 507900341573 110713 220699 S +09:58:23 Slot [339] | NOT FINANCIAL TRANSACTION +09:58:32 +Slot[348] 0200 010000 6213545000333603 ------------- 05 267859 000050000000 5079022678590441VT526213545000333603 507902267859 459098 180893 S +09:58:33 +Slot[329] 0200 011000 1808930600001069 ------------- 00 009290 000060000000 507900213253050001001808930600001069 507900213253 904471 220699 S +09:58:44 Slot [352] | NOT FINANCIAL TRANSACTION +09:58:46 +Slot[309] 0200 010000 2206990000065789 ------------- 55 706820 000100000000 507903264757040036002206990000065789 507903264757 448422 621354 S +09:58:51 +Slot[328] 0200 010000 6213541000573413 ------------- 00 937118 000005000000 507902435618030200316213541000573413 507902435618 841871 668899 S +09:58:57 Slot [347] | NOT FINANCIAL TRANSACTION +09:59:00 Slot [350] | NOT FINANCIAL TRANSACTION +09:59:07 +Slot[319] 0200 010000 2206990000065789 ------------- 51 706905 000100000000 507903264759040036002206990000065789 507903264759 107694 621354 S +09:59:12 Slot [346] | NOT FINANCIAL TRANSACTION +09:59:14 Slot [357] | NOT FINANCIAL TRANSACTION +09:59:16 +Slot[332] 0200 012000 6688990108091107 ------------- 00 706949 000010000000 507902508242050033006688990108091107 507902508242 079557 621354 S +09:59:22 Slot [330] | NOT FINANCIAL TRANSACTION +09:59:24 +Slot[356] 0200 011000 1808930300020096 ------------- 00 021151 000100000000 507900263105010014001808930300020096 507900263105 931923 220699 S +09:59:29 Slot [365] | NOT FINANCIAL TRANSACTION +09:59:31 +Slot[343] 0200 010000 6213544002069992 ------------- 00 937155 000010000000 507901489246035150016213544002069992 507901489246 752976 668899 S +09:59:38 +Slot[313] 0200 010000 6213541000607351 ------------- 00 937160 000050000000 507900204592030010046213541000607351 507900204592 690494 668899 S +09:59:46 Slot [366] | NOT FINANCIAL TRANSACTION +09:59:54 Slot [371] | NOT FINANCIAL TRANSACTION +09:59:55 +Slot[340] 0200 300000 2206990000065789 ------------- 00 707128 000000000000 507903264760040036002206990000065789 507903264760 349848 621354 S +09:59:59 Slot [378] | NOT FINANCIAL TRANSACTION +10:00:01 Slot [324] | NOT FINANCIAL TRANSACTION +10:00:11 +Slot[373] 0200 010000 6213545000333603 ------------- 00 267872 000010000000 5079022678720441VT526213545000333603 507902267872 828611 180893 S +10:00:19 +Slot[382] 0200 301000 6213541000053895 ------------- 00 203388 000000000000 507910203388015290196213541000053895 507910203388 124943 198901 S +10:00:19 Slot [355] | NOT FINANCIAL TRANSACTION +10:00:21 +Slot[353] 0200 010000 6688990100941507 ------------- 00 707232 000020000000 507904719468180010006688990100941507 507904719468 014936 621354 S +10:00:23 Slot [363] | NOT FINANCIAL TRANSACTION +10:00:38 Slot [358] | NOT FINANCIAL TRANSACTION +10:00:49 Slot [370] | NOT FINANCIAL TRANSACTION +10:00:55 +Slot[360] 0200 010000 6213544000158847 ------------- 00 937223 000100000000 507901856239033110016213544000158847 507901856239 509634 668899 S +10:01:01 Slot [338] | NOT FINANCIAL TRANSACTION +10:01:04 Slot [354] | NOT FINANCIAL TRANSACTION +10:01:15 +Slot[379] 0200 010000 6213545000333603 ------------- 00 267883 000050000000 5079032678830441VT526213545000333603 507903267883 084731 180893 S +10:01:17 +Slot[369] 0200 301000 6688990602127100 ------------- 14 267884 032003001826 5079032678840221XKKM6688990602127100 507903267884 108161 180893 S +10:01:21 Slot [396] | NOT FINANCIAL TRANSACTION +10:01:24 Slot [351] | NOT FINANCIAL TRANSACTION +10:01:27 +Slot[389] 0200 011000 6213541000053895 ------------- 00 203414 000100000000 507910203414015290196213541000053895 507910203414 565220 198901 S +10:01:30 Slot [390] | NOT FINANCIAL TRANSACTION +10:01:41 Slot [359] | NOT FINANCIAL TRANSACTION +10:01:52 Slot [376] | NOT FINANCIAL TRANSACTION +10:02:03 Slot [361] | NOT FINANCIAL TRANSACTION +10:02:03 +Slot[374] 0200 010000 6688990100941507 ------------- 51 707708 000020000000 507904719470180010006688990100941507 507904719470 528720 621354 S +10:02:05 +Slot[395] 0200 010000 6688990602739409 ------------- 14 267894 000100000000 5079032678940201ADD16688990602739409 507903267894 013042 180893 S +10:02:14 Slot [410] | NOT FINANCIAL TRANSACTION +10:02:29 Slot [383] | NOT FINANCIAL TRANSACTION +10:02:29 Slot [393] | NOT FINANCIAL TRANSACTION +10:02:40 Slot [400] | NOT FINANCIAL TRANSACTION +10:02:49 +Slot[413] 0200 010000 6213544001514972 ------------- 61 267903 000150000000 5079032679030523XYNG6213544001514972 507903267903 645188 180893 S +10:02:57 +Slot[397] 0200 010000 6213544001802922 ------------- 00 450646 000050000000 507900153102030003006213544001802922 507900153102 301756 220699 S +10:02:58 +Slot[349] 0200 010000 6688990602739409 ------------- 14 267906 000100000000 5079032679060201ADD16688990602739409 507903267906 360790 180893 S +10:03:05 Slot [414] | NOT FINANCIAL TRANSACTION +10:03:13 Slot [399] | NOT FINANCIAL TRANSACTION +10:03:28 Slot [394] | NOT FINANCIAL TRANSACTION +10:03:31 +Slot[387] 0200 301000 6688990602739409 ------------- 14 267910 032003023426 5079032679100201ADD16688990602739409 507903267910 858609 180893 S +10:03:34 Slot [372] | NOT FINANCIAL TRANSACTION +10:03:44 Slot [418] | NOT FINANCIAL TRANSACTION +10:03:50 +Slot[368] 0200 300000 2206990000065789 ------------- 00 708176 000000000000 507903236071040033002206990000065789 507903236071 694889 621354 S +10:04:00 +Slot[406] 0420 012000 6213545000095558 ------------- 00 079049 000100000000 507900132934030001006213545000095558 507900132934 -------- 220699 S +10:04:00 Slot [419] | NOT FINANCIAL TRANSACTION +10:04:07 Slot [407] | NOT FINANCIAL TRANSACTION +10:04:11 Slot [411] | NOT FINANCIAL TRANSACTION +10:04:15 +Slot[380] 0200 010000 6688990602739409 ------------- 14 267917 000050000000 5079032679170201ADD16688990602739409 507903267917 591434 180893 S +10:04:18 +Slot[384] 0200 010000 6688990100941507 ------------- 00 708319 000010000000 507904719474180010006688990100941507 507904719474 569841 621354 S +10:04:29 Slot [416] | NOT FINANCIAL TRANSACTION +10:04:39 Slot [420] | NOT FINANCIAL TRANSACTION +10:04:40 +Slot[401] 0200 301000 6213544001398665 ------------- 00 267921 032003034326 5079032679210221XKKM6213544001398665 507903267921 582159 180893 S +10:04:49 Slot [381] | NOT FINANCIAL TRANSACTION +10:04:54 Slot [415] | NOT FINANCIAL TRANSACTION +10:05:01 Slot [398] | NOT FINANCIAL TRANSACTION +10:05:09 Slot [433] | NOT FINANCIAL TRANSACTION +10:05:12 +Slot[425] 0200 302000 6688990040015834 ------------- 55 708575 000000000000 507904100469080007006688990040015834 507904100469 448829 621354 S +10:05:13 +Slot[364] 0420 012000 6213545000095558 0000000000000 00 079049 000100000000 507900132934030001006213545000095558 507900132934 580893 220699 S +10:05:16 Slot [388] | NOT FINANCIAL TRANSACTION +10:05:32 Slot [367] | NOT FINANCIAL TRANSACTION +10:05:37 +Slot[430] 0200 010000 6688990100941507 ------------- 00 708683 000005000000 507904719476180010006688990100941507 507904719476 941081 621354 S +10:05:40 +Slot[441] 0200 010000 6213544001398665 ------------- 00 267929 000010000000 5079032679290221XKKM6213544001398665 507903267929 172231 180893 S +10:05:41 +Slot[409] 0200 300000 6213544002267539 ------------- 00 412165 000000000000 507900354403010026006213544002267539 507900354403 601519 123401 S +10:05:44 Slot [437] | NOT FINANCIAL TRANSACTION +10:05:47 Slot [402] | NOT FINANCIAL TRANSACTION +10:05:57 +Slot[403] 0200 010000 6213545000831473 ------------- 00 267934 000050000000 5079032679340465UDNM6213545000831473 507903267934 826433 180893 S +10:06:10 +Slot[408] 0200 301000 6213545000896153 ------------- 00 267937 032003051226 5079032679370261PSL16213545000896153 507903267937 896467 180893 S +10:06:11 Slot [362] | NOT FINANCIAL TRANSACTION +10:06:21 Slot [375] | NOT FINANCIAL TRANSACTION +10:06:21 Slot [385] | NOT FINANCIAL TRANSACTION +10:06:33 +Slot[447] 0200 010000 6213544001716767 ------------- 00 267944 000010000000 5079032679440523XYNG6213544001716767 507903267944 678560 180893 S +10:06:43 Slot [392] | NOT FINANCIAL TRANSACTION +10:06:49 Slot [412] | NOT FINANCIAL TRANSACTION +10:06:59 +Slot[450] 0200 011000 6213545000896153 ------------- 51 267949 000068000000 5079032679490261PSL16213545000896153 507903267949 670900 180893 S +10:07:04 +Slot[417] 0200 010000 6213548000301430 ------------- 51 937559 000030000000 507900109327030200026213548000301430 507900109327 200225 668899 S +10:07:10 Slot [391] | NOT FINANCIAL TRANSACTION +10:07:12 Slot [443] | NOT FINANCIAL TRANSACTION +10:07:13 Slot [377] | NOT FINANCIAL TRANSACTION +10:07:13 +Slot[386] 0200 010000 6213544002267539 ------------- 51 412170 000049000000 507900354406010026006213544002267539 507900354406 267227 123401 S +10:07:27 +Slot[405] 0200 010000 1888880000077990 ------------- 00 937574 000050000000 507901955617030200181888880000077990 507901955617 103248 668899 S +10:07:27 Slot [456] | NOT FINANCIAL TRANSACTION +10:07:41 +Slot[446] 0200 011000 6213545000896153 ------------- 00 267954 000067000000 5079032679540261PSL16213545000896153 507903267954 173503 180893 S +10:07:48 +Slot[429] 0200 012000 6688990040146464 ------------- 00 709252 000100000000 507905261855190009006688990040146464 507905261855 122172 621354 S +10:07:53 Slot [424] | NOT FINANCIAL TRANSACTION +10:07:54 Slot [445] | NOT FINANCIAL TRANSACTION +10:07:55 +Slot[435] 0200 010000 6213544002267539 ------------- 00 412174 000048000000 507900354408010026006213544002267539 507900354408 319973 123401 S +10:08:08 +Slot[404] 0200 010000 6213544001801007 ------------- 00 937624 000010000000 507901963428030200196213544001801007 507901963428 580310 668899 S +10:08:10 Slot [438] | NOT FINANCIAL TRANSACTION +10:08:15 Slot [442] | NOT FINANCIAL TRANSACTION +10:08:25 Slot [427] | NOT FINANCIAL TRANSACTION +10:08:30 +Slot[434] 0200 010000 6688990100954500 ------------- 00 709439 000100000000 507904719481180010006688990100954500 507904719481 177188 621354 S +10:08:34 +Slot[428] 0200 302000 6688990040146464 ------------- 00 709455 000000000000 507905261856190009006688990040146464 507905261856 017519 621354 S +10:08:40 +Slot[451] 0200 302000 1888880000077990 ------------- 00 937651 000000000000 507901955619030200181888880000077990 507901955619 446842 668899 S +10:08:41 Slot [462] | NOT FINANCIAL TRANSACTION +10:08:42 +Slot[457] 0200 310000 6213545000045397 ------------- 00 079053 000000000000 507900132936030001006213545000045397 507900132936 461196 220699 S +10:08:55 +Slot[431] 0200 301000 6213544002038096 ------------- 00 937670 000000000000 507900610770030070016213544002038096 507900610770 080900 668899 S +10:08:57 Slot [426] | NOT FINANCIAL TRANSACTION +10:08:59 Slot [422] | NOT FINANCIAL TRANSACTION +10:09:14 Slot [421] | NOT FINANCIAL TRANSACTION +10:09:15 +Slot[444] 0200 012000 6688990040146464 ------------- 00 709635 000100000000 507905261858190009006688990040146464 507905261858 668756 621354 S +10:09:17 Slot [465] | NOT FINANCIAL TRANSACTION +10:09:29 Slot [423] | NOT FINANCIAL TRANSACTION +10:09:32 +Slot[436] 0200 010000 6688990100954500 ------------- 00 709719 000100000000 507904719483180010006688990100954500 507904719483 066155 621354 S +10:09:44 Slot [439] | NOT FINANCIAL TRANSACTION +10:09:54 Slot [458] | NOT FINANCIAL TRANSACTION +10:09:56 Slot [459] | NOT FINANCIAL TRANSACTION +10:10:04 Slot [466] | NOT FINANCIAL TRANSACTION +10:10:07 +Slot[452] 0200 010000 6213545000815914 ------------- 00 267969 000050000000 5079032679690262PSLB6213545000815914 507903267969 924240 180893 S +10:10:08 Slot [468] | NOT FINANCIAL TRANSACTION +10:10:14 +Slot[455] 0200 010000 6213545000000434 ------------- 00 937743 000100000000 507902650419030180066213545000000434 507902650419 380084 668899 S +10:10:18 Slot [449] | NOT FINANCIAL TRANSACTION +10:10:19 Slot [475] | NOT FINANCIAL TRANSACTION +10:10:28 Slot [440] | NOT FINANCIAL TRANSACTION +10:10:37 +Slot[460] 0200 010000 6688990100954500 ------------- 00 710032 000030000000 507904719485180010006688990100954500 507904719485 516390 621354 S +10:10:40 Slot [432] | NOT FINANCIAL TRANSACTION +10:10:51 Slot [482] | NOT FINANCIAL TRANSACTION +10:11:06 +Slot[495] 0200 010000 6213545000000434 ------------- 00 937801 000050000000 507902650421030180066213545000000434 507902650421 840382 668899 S +10:11:07 Slot [453] | NOT FINANCIAL TRANSACTION +10:11:09 Slot [488] | NOT FINANCIAL TRANSACTION +10:11:18 Slot [470] | NOT FINANCIAL TRANSACTION +10:11:20 Slot [484] | NOT FINANCIAL TRANSACTION +10:11:21 Slot [490] | NOT FINANCIAL TRANSACTION +10:11:34 Slot [463] | NOT FINANCIAL TRANSACTION +10:11:46 Slot [448] | NOT FINANCIAL TRANSACTION +10:11:48 +Slot[480] 0200 010000 6213545000045397 ------------- 00 079058 000100000000 507900132941030001006213545000045397 507900132941 286622 220699 S +10:11:50 +Slot[471] 0200 010000 6688990100954500 ------------- 51 710352 000020000000 507904719487180010006688990100954500 507904719487 834726 621354 S +10:11:56 +Slot[479] 0200 301000 1808931800012633 ------------- 00 710364 000000000000 507904635521170008001808931800012633 507904635521 636379 621354 S +10:11:58 +Slot[0] 0200 010000 6213548000496701 ------------- 00 937855 000020000000 507901963433030200196213548000496701 507901963433 692228 668899 S +10:12:00 Slot [2] | NOT FINANCIAL TRANSACTION +10:12:08 +Slot[1] 0200 301000 6213541000261589 ------------- 00 267979 032003111026 5079032679790112CPBR6213541000261589 507903267979 511301 180893 S +10:12:14 Slot [493] | NOT FINANCIAL TRANSACTION +10:12:16 Slot [498] | NOT FINANCIAL TRANSACTION +10:12:23 Slot [4] | NOT FINANCIAL TRANSACTION +10:12:32 Slot [473] | NOT FINANCIAL TRANSACTION +10:12:37 +Slot[489] 0200 310000 6213545000078570 ------------- 00 079062 000000000000 507900132943030001006213545000078570 507900132943 122193 220699 S +10:12:39 +Slot[483] 0200 010000 6688990100954500 ------------- 00 710531 000010000000 507904719489180010006688990100954500 507904719489 717660 621354 S +10:12:44 Slot [476] | NOT FINANCIAL TRANSACTION +10:12:47 +Slot[474] 0200 010000 6213542000033853 ------------- 00 937896 000100000000 507902071155030060076213542000033853 507902071155 568334 668899 S +10:12:59 Slot [486] | NOT FINANCIAL TRANSACTION +10:13:12 +Slot[472] 0200 011000 1808931800012633 ------------- 00 710638 000100000000 507904635523170008001808931800012633 507904635523 742621 621354 S +10:13:14 +Slot[477] 0200 010000 6213545000078570 ------------- 00 079063 000010000000 507900132944030001006213545000078570 507900132944 419575 220699 S +10:13:16 Slot [492] | NOT FINANCIAL TRANSACTION +10:13:19 Slot [6] | NOT FINANCIAL TRANSACTION +10:13:25 Slot [485] | NOT FINANCIAL TRANSACTION +10:13:28 Slot [454] | NOT FINANCIAL TRANSACTION +10:13:43 Slot [14] | NOT FINANCIAL TRANSACTION +10:13:54 Slot [13] | NOT FINANCIAL TRANSACTION +10:14:06 +Slot[12] 0200 010000 6688990100954500 ------------- 51 710889 000005000000 507904719491180010006688990100954500 507904719491 024080 621354 S +10:14:09 Slot [16] | NOT FINANCIAL TRANSACTION +10:14:20 Slot [494] | NOT FINANCIAL TRANSACTION +10:14:24 Slot [22] | NOT FINANCIAL TRANSACTION +10:14:27 Slot [469] | NOT FINANCIAL TRANSACTION +10:14:28 +Slot[491] 0200 301000 1808930800015711 ------------- 00 710963 000000000000 507903032100120026001808930800015711 507903032100 124583 621354 S +10:14:36 Slot [499] | NOT FINANCIAL TRANSACTION +10:14:37 +Slot[17] 0200 011000 1808931800012633 ------------- 00 710977 000100000000 507904635525170008001808931800012633 507904635525 401853 621354 S +10:14:47 +Slot[31] 0200 010000 6213545000865844 ------------- 51 079067 000010000000 507900132946030001006213545000865844 507900132946 861142 220699 S +10:14:49 Slot [10] | NOT FINANCIAL TRANSACTION +10:14:53 +Slot[481] 0200 011000 6213544001113924 ------------- 00 251131 000045000000 507900336143010019006213544001113924 507900336143 593146 220699 S +10:14:54 Slot [29] | NOT FINANCIAL TRANSACTION +10:14:55 +Slot[3] 0200 011000 6688990104798606 ------------- 00 711075 000020000000 507902508267050033006688990104798606 507902508267 373887 621354 S +10:14:57 +Slot[23] 0200 010000 6688990100954500 ------------- 51 711086 000020000000 507904719493180010006688990100954500 507904719493 916979 621354 S +10:15:05 Slot [7] | NOT FINANCIAL TRANSACTION +10:15:17 Slot [33] | NOT FINANCIAL TRANSACTION +10:15:27 Slot [21] | NOT FINANCIAL TRANSACTION +10:15:29 Slot [11] | NOT FINANCIAL TRANSACTION +10:15:29 Slot [35] | NOT FINANCIAL TRANSACTION +10:15:44 +Slot[496] 0200 301000 1808931800012831 ------------- 55 711264 000000000000 507904635526170008001808931800012831 507904635526 819856 621354 S +10:15:49 Slot [461] | NOT FINANCIAL TRANSACTION +10:15:52 +Slot[30] 0200 010000 6688990100941507 ------------- 65 711317 000005000000 507904719495180010006688990100941507 507904719495 586531 621354 S +10:16:05 +Slot[37] 0200 301000 1808930500013453 ------------- 00 711341 000000000000 507903207983040030001808930500013453 507903207983 101291 621354 S +10:16:06 +Slot[9] 0200 301000 1808931800012831 ------------- 00 711344 000000000000 507904635527170008001808931800012831 507904635527 860893 621354 S +10:16:11 Slot [36] | NOT FINANCIAL TRANSACTION +10:16:20 Slot [45] | NOT FINANCIAL TRANSACTION +10:16:22 Slot [18] | NOT FINANCIAL TRANSACTION +10:16:28 +Slot[497] 0200 010000 6688990100941507 ------------- 65 711472 000002000000 507904719497180010006688990100941507 507904719497 647534 621354 S +10:16:31 Slot [467] | NOT FINANCIAL TRANSACTION +10:16:34 Slot [40] | NOT FINANCIAL TRANSACTION +10:16:37 Slot [43] | NOT FINANCIAL TRANSACTION +10:16:49 Slot [28] | NOT FINANCIAL TRANSACTION +10:16:57 +Slot[8] 0200 301000 6213545000974943 ------------- 00 268017 032003155926 5079032680170112CPBR6213545000974943 507903268017 314333 180893 S +10:17:08 +Slot[52] 0200 311000 6213541000206253 ------------- 00 251134 000000000000 507900336145010019006213541000206253 507900336145 919017 220699 S +10:17:15 +Slot[50] 0200 311000 1808931100001815 ------------- 00 013414 000000000000 507900200947090001001808931100001815 507900200947 428468 220699 S +10:17:30 Slot [25] | NOT FINANCIAL TRANSACTION +10:17:30 +Slot[44] 0200 011000 1808931800012831 ------------- 00 711717 000100000000 507904635529170008001808931800012831 507904635529 831343 621354 S +10:17:33 Slot [61] | NOT FINANCIAL TRANSACTION +10:17:39 Slot [55] | NOT FINANCIAL TRANSACTION +10:17:44 +Slot[15] 0200 010000 6213545000974943 ------------- 00 268024 000100000000 5079032680240112CPBR6213545000974943 507903268024 672962 180893 S +10:17:45 +Slot[478] 0200 010000 6213541000333495 ------------- 00 938129 000100000000 507900136686030200046213541000333495 507900136686 117342 668899 S +10:17:53 +Slot[60] 0200 301000 1808930700008196 ------------- 55 938137 000000000000 507901373581032090011808930700008196 507901373581 558093 668899 S +10:18:00 +Slot[68] 0200 010000 6213541000426034 ------------- 00 938147 000100000000 507902071158030060076213541000426034 507902071158 053852 668899 S +10:18:03 Slot [63] | NOT FINANCIAL TRANSACTION +10:18:13 Slot [41] | NOT FINANCIAL TRANSACTION +10:18:26 +Slot[38] 0200 010000 6213541000095987 ------------- 00 268031 000100000000 5079032680310110VTBR6213541000095987 507903268031 186328 180893 S +10:18:35 Slot [73] | NOT FINANCIAL TRANSACTION +10:18:40 +Slot[464] 0200 011000 1808931800012831 ------------- 00 712042 000090000000 507904635531170008001808931800012831 507904635531 030254 621354 S +10:18:42 +Slot[32] 0200 011000 6213541000538002 ------------- 00 306034 000010000000 507900079326010007006213541000538002 507900079326 480228 220699 S +10:18:44 Slot [27] | NOT FINANCIAL TRANSACTION +10:18:45 Slot [487] | NOT FINANCIAL TRANSACTION +10:18:57 Slot [26] | NOT FINANCIAL TRANSACTION +10:18:59 +Slot[20] 0200 010000 6213541000426034 ------------- 00 938202 000100000000 507902071160030060076213541000426034 507902071160 706079 668899 S +10:19:09 Slot [48] | NOT FINANCIAL TRANSACTION +10:19:15 +Slot[46] 0420 010000 6213545000045397 ------------- 00 079058 000100000000 507900132941030001006213545000045397 507900132941 -------- 220699 S +10:19:18 +Slot[19] 0200 010000 6213541000095987 ------------- 00 268038 000100000000 5079032680380110VTBR6213541000095987 507903268038 903344 180893 S +10:19:31 Slot [69] | NOT FINANCIAL TRANSACTION +10:19:37 Slot [58] | NOT FINANCIAL TRANSACTION +10:19:46 Slot [78] | NOT FINANCIAL TRANSACTION +10:19:49 Slot [47] | NOT FINANCIAL TRANSACTION +10:19:54 Slot [54] | NOT FINANCIAL TRANSACTION +10:19:57 +Slot[81] 0200 011000 1808931800012633 ------------- 00 712390 000020000000 507904635533170008001808931800012633 507904635533 804251 621354 S +10:20:01 +Slot[57] 0200 010000 6213541000426034 ------------- 00 938249 000030000000 507902071162030060076213541000426034 507902071162 438445 668899 S +10:20:02 Slot [24] | NOT FINANCIAL TRANSACTION +10:20:13 Slot [42] | NOT FINANCIAL TRANSACTION +10:20:27 +Slot[34] 0420 010000 6213545000045397 0000000000000 00 079058 000100000000 507900132941030001006213545000045397 507900132941 822089 220699 S +10:20:29 Slot [86] | NOT FINANCIAL TRANSACTION +10:20:36 +Slot[49] 0200 301000 6213545000352249 ------------- 00 938281 000000000000 507901373583032090016213545000352249 507901373583 765314 668899 S +10:20:39 Slot [89] | NOT FINANCIAL TRANSACTION +10:20:42 Slot [88] | NOT FINANCIAL TRANSACTION +10:20:50 +Slot[59] 0420 010000 6213545000078570 ------------- 00 079063 000010000000 507900132944030001006213545000078570 507900132944 -------- 220699 S +10:20:54 Slot [5] | NOT FINANCIAL TRANSACTION +10:20:54 Slot [79] | NOT FINANCIAL TRANSACTION +10:20:57 Slot [84] | NOT FINANCIAL TRANSACTION +10:21:11 +Slot[67] 0200 011000 1808930300046406 ------------- 00 712675 000040000000 507902381423010063001808930300046406 507902381423 501478 621354 S +10:21:15 +Slot[62] 0200 010000 6688990601635103 ------------- 00 712701 000010000000 507904153829200010006688990601635103 507904153829 681278 621354 S +10:21:18 Slot [39] | NOT FINANCIAL TRANSACTION +10:21:20 Slot [51] | NOT FINANCIAL TRANSACTION +10:21:34 Slot [99] | NOT FINANCIAL TRANSACTION +10:21:41 Slot [64] | NOT FINANCIAL TRANSACTION +10:21:50 Slot [82] | NOT FINANCIAL TRANSACTION +10:21:59 Slot [56] | NOT FINANCIAL TRANSACTION +10:22:00 +Slot[93] 0200 011000 6688990105023905 ------------- 00 712888 000060000000 507903648787160017006688990105023905 507903648787 991243 621354 S +10:22:01 Slot [91] | NOT FINANCIAL TRANSACTION +10:22:02 +Slot[100] 0420 010000 6213545000078570 0000000000000 00 079063 000010000000 507900132944030001006213545000078570 507900132944 970038 220699 S +10:22:11 Slot [77] | NOT FINANCIAL TRANSACTION +10:22:22 +Slot[65] 0200 301000 6688990105451502 ------------- 00 712980 000000000000 507904965565150011006688990105451502 507904965565 637809 621354 S +10:22:22 Slot [72] | NOT FINANCIAL TRANSACTION +10:22:39 Slot [106] | NOT FINANCIAL TRANSACTION +10:22:43 Slot [76] | NOT FINANCIAL TRANSACTION +10:22:55 Slot [66] | NOT FINANCIAL TRANSACTION +10:23:05 Slot [90] | NOT FINANCIAL TRANSACTION +10:23:10 Slot [114] | NOT FINANCIAL TRANSACTION +10:23:26 Slot [83] | NOT FINANCIAL TRANSACTION +10:23:38 Slot [118] | NOT FINANCIAL TRANSACTION +10:23:39 +Slot[74] 0200 010000 6213545000068456 ------------- 00 938434 000005000000 507901237424030020026213545000068456 507901237424 337797 668899 S +10:23:45 Slot [107] | NOT FINANCIAL TRANSACTION +10:23:54 Slot [121] | NOT FINANCIAL TRANSACTION +10:23:56 Slot [115] | NOT FINANCIAL TRANSACTION +10:23:56 +Slot[92] 0200 011000 6213545000078430 ------------- 00 079069 000100000000 507900132948030001006213545000078430 507900132948 153732 220699 S +10:24:11 Slot [108] | NOT FINANCIAL TRANSACTION +10:24:13 +Slot[113] 0200 011000 6688990040050799 ------------- 00 713412 000020000000 507903611999160014006688990040050799 507903611999 698360 621354 S +10:24:26 Slot [94] | NOT FINANCIAL TRANSACTION +10:24:38 Slot [127] | NOT FINANCIAL TRANSACTION +10:24:45 +Slot[95] 0200 012000 6688990105451502 ------------- 00 713549 000050000000 507904965569150011006688990105451502 507904965569 007949 621354 S +10:24:47 Slot [75] | NOT FINANCIAL TRANSACTION +10:24:49 Slot [125] | NOT FINANCIAL TRANSACTION +10:24:54 Slot [53] | NOT FINANCIAL TRANSACTION +10:25:04 Slot [98] | NOT FINANCIAL TRANSACTION +10:25:13 +Slot[134] 0200 010000 6213548000054351 ------------- 00 938517 000100000000 507900835729030150026213548000054351 507900835729 747558 668899 S +10:25:15 Slot [103] | NOT FINANCIAL TRANSACTION +10:25:26 Slot [71] | NOT FINANCIAL TRANSACTION +10:25:31 +Slot[96] 0200 010000 6213545000138333 ------------- 00 085591 000100000000 507900140209030002006213545000138333 507900140209 821555 220699 S +10:25:36 +Slot[101] 0200 300000 6688990107354506 ------------- 00 713769 000000000000 507905310643080012006688990107354506 507905310643 849612 621354 S +10:25:41 Slot [70] | NOT FINANCIAL TRANSACTION +10:25:49 Slot [109] | NOT FINANCIAL TRANSACTION +10:25:58 Slot [102] | NOT FINANCIAL TRANSACTION +10:26:09 Slot [85] | NOT FINANCIAL TRANSACTION +10:26:14 +Slot[136] 0200 010000 6213548000054351 ------------- 00 938572 000100000000 507900835731030150026213548000054351 507900835731 535405 668899 S +10:26:21 Slot [129] | NOT FINANCIAL TRANSACTION +10:26:25 Slot [131] | NOT FINANCIAL TRANSACTION +10:26:36 Slot [105] | NOT FINANCIAL TRANSACTION +10:26:40 +Slot[87] 0200 010000 6213545000138333 ------------- 00 085593 000050000000 507900140211030002006213545000138333 507900140211 494687 220699 S +10:26:48 Slot [104] | NOT FINANCIAL TRANSACTION +10:26:51 Slot [138] | NOT FINANCIAL TRANSACTION +10:27:00 +Slot[117] 0200 011000 6688990107354506 ------------- 00 714161 000004000000 507905310645080012006688990107354506 507905310645 589910 621354 S +10:27:03 Slot [112] | NOT FINANCIAL TRANSACTION +10:27:14 Slot [140] | NOT FINANCIAL TRANSACTION +10:27:17 +Slot[97] 0200 010000 6213544002264643 ------------- 00 223700 000030000000 507900118745010011006213544002264643 507900118745 555911 220699 S +10:27:31 Slot [116] | NOT FINANCIAL TRANSACTION +10:27:42 Slot [111] | NOT FINANCIAL TRANSACTION +10:27:53 Slot [124] | NOT FINANCIAL TRANSACTION +10:27:53 Slot [161] | NOT FINANCIAL TRANSACTION +10:28:04 Slot [80] | NOT FINANCIAL TRANSACTION +10:28:20 Slot [147] | NOT FINANCIAL TRANSACTION +10:28:30 Slot [122] | NOT FINANCIAL TRANSACTION +10:28:41 Slot [132] | NOT FINANCIAL TRANSACTION +10:28:55 Slot [123] | NOT FINANCIAL TRANSACTION +10:28:56 Slot [162] | NOT FINANCIAL TRANSACTION +10:29:07 Slot [154] | NOT FINANCIAL TRANSACTION +10:29:18 Slot [145] | NOT FINANCIAL TRANSACTION +10:29:29 Slot [158] | NOT FINANCIAL TRANSACTION +10:29:31 +Slot[143] 0200 010000 6213544001016226 ------------- 00 938722 000100000000 507902279312030030056213544001016226 507902279312 996908 668899 S +10:29:40 Slot [120] | NOT FINANCIAL TRANSACTION +10:29:54 Slot [166] | NOT FINANCIAL TRANSACTION +10:29:56 Slot [133] | NOT FINANCIAL TRANSACTION +10:29:57 Slot [150] | NOT FINANCIAL TRANSACTION +10:30:00 +Slot[153] 0200 011000 6213544002155205 ------------- 00 079075 000010000000 507900132950030001006213544002155205 507900132950 187883 220699 S +10:30:05 +Slot[130] 0200 010000 1808930300045952 ------------- 00 714950 000005000000 507903280362140010001808930300045952 507903280362 913370 621354 S +10:30:12 +Slot[142] 0200 011000 1808931800001800 ------------- 00 714955 000020000000 507903505349090007001808931800001800 507903505349 663189 621354 S +10:30:13 Slot [110] | NOT FINANCIAL TRANSACTION +10:30:19 +Slot[167] 0200 010000 6213545000078430 ------------- 61 268099 000150000000 5079032680990112CPBR6213545000078430 507903268099 508958 180893 S +10:30:22 +Slot[137] 0200 010000 6213544001016226 ------------- 00 938761 000100000000 507902279314030030056213544001016226 507902279314 139162 668899 S +10:30:32 Slot [159] | NOT FINANCIAL TRANSACTION +10:30:48 +Slot[175] 0200 302000 6213545001073927 ------------- 00 268101 032003295026 5079032681010484HPVX6213545001073927 507903268101 811706 180893 S +10:30:59 Slot [128] | NOT FINANCIAL TRANSACTION +10:30:59 Slot [146] | NOT FINANCIAL TRANSACTION +10:31:15 Slot [141] | NOT FINANCIAL TRANSACTION +10:31:21 Slot [170] | NOT FINANCIAL TRANSACTION +10:31:25 +Slot[151] 0200 010000 1808930300045952 ------------- 00 715256 000070000000 507903280364140010001808930300045952 507903280364 827849 621354 S +10:31:30 +Slot[157] 0420 011000 6213545000078430 ------------- 00 079069 000100000000 507900132948030001006213545000078430 507900132948 -------- 220699 S +10:31:33 Slot [172] | NOT FINANCIAL TRANSACTION +10:31:37 +Slot[164] 0200 301000 6213544002155205 ------------- 00 938816 000000000000 507900823502030150016213544002155205 507900823502 410559 668899 S +10:31:38 +Slot[148] 0200 010000 6213545001073927 ------------- 00 268107 000100000000 5079032681070484HPVX6213545001073927 507903268107 497024 180893 S +10:31:40 Slot [126] | NOT FINANCIAL TRANSACTION +10:31:40 +Slot[186] 0200 010000 6213545000078430 ------------- 00 268106 000100000000 5079032681060112CPBR6213545000078430 507903268106 955846 180893 S +10:31:50 Slot [171] | NOT FINANCIAL TRANSACTION +10:31:57 +Slot[119] 0200 300000 6213544002155205 ------------- 00 938830 000000000000 507900823503030150016213544002155205 507900823503 737251 668899 S +10:31:59 +Slot[182] 0200 010000 6688990103801401 ------------- 00 715383 000100000000 507904584965020021006688990103801401 507904584965 441070 621354 S +10:32:01 Slot [139] | NOT FINANCIAL TRANSACTION +10:32:05 Slot [176] | NOT FINANCIAL TRANSACTION +10:32:16 Slot [202] | NOT FINANCIAL TRANSACTION +10:32:22 +Slot[160] 0200 302000 6213544002155205 ------------- 00 938854 000000000000 507900823504030150016213544002155205 507900823504 580361 668899 S +10:32:32 Slot [187] | NOT FINANCIAL TRANSACTION +10:32:42 +Slot[156] 0420 011000 6213545000078430 0000000000000 00 079069 000100000000 507900132948030001006213545000078430 507900132948 652210 220699 S +10:32:43 Slot [203] | NOT FINANCIAL TRANSACTION +10:32:52 +Slot[179] 0200 301000 6213545000078430 ------------- 00 268116 032003315426 5079032681160112CPBR6213545000078430 507903268116 594193 180893 S +10:33:03 Slot [144] | NOT FINANCIAL TRANSACTION +10:33:05 Slot [204] | NOT FINANCIAL TRANSACTION +10:33:08 +Slot[163] 0200 301000 6213545000968911 ------------- 00 938895 000000000000 507902150947030200256213545000968911 507902150947 317701 668899 S +10:33:15 Slot [135] | NOT FINANCIAL TRANSACTION +10:33:31 Slot [152] | NOT FINANCIAL TRANSACTION +10:33:43 +Slot[192] 0200 010000 6688990102837109 ------------- 00 715820 000100000000 507905150123090019006688990102837109 507905150123 368354 621354 S +10:33:43 Slot [191] | NOT FINANCIAL TRANSACTION +10:33:46 +Slot[196] 0200 302000 6213548000509206 ------------- 00 938935 000000000000 507901912143030130046213548000509206 507901912143 884477 668899 S +10:33:56 +Slot[190] 0200 010000 6688990103801401 ------------- 00 715889 000080000000 507904584967020021006688990103801401 507904584967 596359 621354 S +10:33:59 +Slot[155] 0200 301000 1808931500005671 ------------- 00 715878 000000000000 507905261880190009001808931500005671 507905261880 459529 621354 S +10:34:01 +Slot[181] 0200 010000 6213545000078430 ------------- 00 268126 000100000000 5079032681260112CPBR6213545000078430 507903268126 497178 180893 S +10:34:05 Slot [198] | NOT FINANCIAL TRANSACTION +10:34:10 +Slot[201] 0200 010000 6688990104769607 ------------- 00 715942 000050000000 507904213062010120006688990104769607 507904213062 645232 621354 S +10:34:15 Slot [194] | NOT FINANCIAL TRANSACTION +10:34:19 +Slot[214] 0200 302000 6213541000705809 ------------- 00 938960 000000000000 507900196076030010036213541000705809 507900196076 287930 668899 S +10:34:22 +Slot[165] 0200 301000 6213548000500361 ------------- 00 268127 032003332126 5079032681270102SAPA6213548000500361 507903268127 643733 180893 S +10:34:31 Slot [209] | NOT FINANCIAL TRANSACTION +10:34:31 +Slot[195] 0200 010000 6688990102837109 ------------- 00 716036 000100000000 507905150125090019006688990102837109 507905150125 431481 621354 S +10:34:33 +Slot[184] 0200 010000 6213545000646194 ------------- 00 938975 000020000000 507902379460030170036213545000646194 507902379460 907283 668899 S +10:34:40 +Slot[178] 0200 010000 6213548000509206 ------------- 00 938984 000100000000 507901912145030130046213548000509206 507901912145 284537 668899 S +10:34:42 Slot [213] | NOT FINANCIAL TRANSACTION +10:34:53 Slot [193] | NOT FINANCIAL TRANSACTION +10:34:54 +Slot[206] 0200 010000 6213545000078430 ------------- 51 268133 000100000000 5079032681330112CPBR6213545000078430 507903268133 907682 180893 S +10:34:55 Slot [221] | NOT FINANCIAL TRANSACTION +10:35:08 Slot [207] | NOT FINANCIAL TRANSACTION +10:35:08 Slot [212] | NOT FINANCIAL TRANSACTION +10:35:08 +Slot[208] 0200 011000 1808931500005671 ------------- 00 716145 000030000000 507905261882190009001808931500005671 507905261882 748515 621354 S +10:35:17 +Slot[185] 0200 010000 6213541000325749 ------------- 00 939009 000100000000 507902071166030060076213541000325749 507902071166 426365 668899 S +10:35:18 Slot [183] | NOT FINANCIAL TRANSACTION +10:35:34 Slot [211] | NOT FINANCIAL TRANSACTION +10:35:56 Slot [230] | NOT FINANCIAL TRANSACTION +10:36:08 Slot [169] | NOT FINANCIAL TRANSACTION +10:36:10 Slot [189] | NOT FINANCIAL TRANSACTION +10:36:14 +Slot[149] 0200 010000 6213543000203652 ------------- 00 268136 000050000000 5079032681360301LPBX6213543000203652 507903268136 660410 180893 S +10:36:21 Slot [205] | NOT FINANCIAL TRANSACTION +10:36:23 Slot [232] | NOT FINANCIAL TRANSACTION +10:36:23 +Slot[180] 0200 010000 6213548000509206 ------------- 00 939032 000100000000 507901912147030130046213548000509206 507901912147 700569 668899 S +10:36:28 +Slot[168] 0200 011000 6213541000186562 ------------- 00 268141 000005000000 5079032681410106NAXA6213541000186562 507903268141 759723 180893 S +10:36:29 +Slot[174] 0200 010000 6213545000871487 ------------- 00 939035 000050000000 507900297329030100066213545000871487 507900297329 785301 668899 S +10:36:44 Slot [173] | NOT FINANCIAL TRANSACTION +10:36:45 +Slot[222] 0200 010000 1808931100011939 ------------- 00 716541 000025000000 507904341411030033001808931100011939 507904341411 820861 621354 S +10:36:47 +Slot[188] 0200 011000 6213545000078430 ------------- 51 268147 000028000000 5079032681470112CPBR6213545000078430 507903268147 848458 180893 S +10:37:00 Slot [229] | NOT FINANCIAL TRANSACTION +10:37:12 Slot [223] | NOT FINANCIAL TRANSACTION +10:37:12 Slot [246] | NOT FINANCIAL TRANSACTION +10:37:16 +Slot[215] 0200 010000 6213541000325749 ------------- 00 939077 000100000000 507902071169030060076213541000325749 507902071169 664630 668899 S +10:37:18 +Slot[248] 0200 010000 6213548000509206 ------------- 00 939080 000100000000 507901912149030130046213548000509206 507901912149 674404 668899 S +10:37:23 Slot [243] | NOT FINANCIAL TRANSACTION +10:37:33 +Slot[244] 0200 301000 1808930500013453 ------------- 55 939089 000000000000 507900858271030150041808930500013453 507900858271 164324 668899 S +10:37:40 Slot [227] | NOT FINANCIAL TRANSACTION +10:37:44 +Slot[177] 0420 011000 6213544002155205 ------------- 00 079075 000010000000 507900132950030001006213544002155205 507900132950 -------- 220699 S +10:37:55 Slot [251] | NOT FINANCIAL TRANSACTION +10:38:03 +Slot[235] 0200 010000 1808930800004061 ------------- 55 716988 000020000000 507904014972010117001808930800004061 507904014972 861073 621354 S +10:38:13 +Slot[250] 0200 301000 1808930500013453 ------------- 55 939113 000000000000 507900858273030150041808930500013453 507900858273 226077 668899 S +10:38:14 Slot [226] | NOT FINANCIAL TRANSACTION +10:38:15 +Slot[242] 0200 011000 6213545000078430 ------------- 00 268154 000025000000 5079032681540112CPBR6213545000078430 507903268154 515891 180893 S +10:38:21 +Slot[255] 0200 010000 1808930800004061 ------------- 55 717069 000020000000 507904014974010117001808930800004061 507904014974 518393 621354 S +10:38:40 Slot [233] | NOT FINANCIAL TRANSACTION +10:38:45 +Slot[238] 0200 010000 1808930800004061 ------------- 00 717119 000020000000 507904014976010117001808930800004061 507904014976 996410 621354 S +10:38:55 Slot [200] | NOT FINANCIAL TRANSACTION +10:38:57 +Slot[237] 0420 011000 6213544002155205 0000000000000 00 079075 000010000000 507900132950030001006213544002155205 507900132950 672992 220699 S +10:39:09 +Slot[216] 0200 011000 6213545000078430 ------------- 51 268160 000002000000 5079032681600112CPBR6213545000078430 507903268160 863202 180893 S +10:39:13 +Slot[234] 0200 011000 6213545000011019 ------------- 00 079079 000100000000 507900132952030001006213545000011019 507900132952 219053 220699 S +10:39:16 Slot [249] | NOT FINANCIAL TRANSACTION +10:39:17 Slot [253] | NOT FINANCIAL TRANSACTION +10:39:28 Slot [260] | NOT FINANCIAL TRANSACTION +10:39:39 Slot [210] | NOT FINANCIAL TRANSACTION +10:39:55 Slot [259] | NOT FINANCIAL TRANSACTION +10:39:57 Slot [263] | NOT FINANCIAL TRANSACTION +10:40:02 +Slot[261] 0200 301000 1808931100011939 ------------- 00 717452 000000000000 507904341412030033001808931100011939 507904341412 590969 621354 S +10:40:03 +Slot[225] 0200 011000 1808931300001722 ------------- 00 717457 000050000000 507903478202060020001808931300001722 507903478202 475467 621354 S +10:40:08 Slot [270] | NOT FINANCIAL TRANSACTION +10:40:11 +Slot[199] 0200 012000 6213546000007890 ------------- 51 254849 000010000000 507900094418010009006213546000007890 507900094418 678284 220699 S +10:40:18 Slot [269] | NOT FINANCIAL TRANSACTION +10:40:19 Slot [240] | NOT FINANCIAL TRANSACTION +10:40:29 Slot [275] | NOT FINANCIAL TRANSACTION +10:40:36 Slot [256] | NOT FINANCIAL TRANSACTION +10:40:36 +Slot[228] 0200 301000 6213543000224856 ------------- 00 939219 000000000000 507900513185030120016213543000224856 507900513185 095579 668899 S +10:40:38 +Slot[197] 0200 010000 6688990106954702 ------------- 14 268170 000100000000 5079032681700201ADD16688990106954702 507903268170 883861 180893 S +10:40:42 +Slot[265] 0200 010000 6213545001051030 ------------- 55 939227 000100000000 507900297333030100066213545001051030 507900297333 959047 668899 S +10:40:46 Slot [247] | NOT FINANCIAL TRANSACTION +10:41:01 +Slot[274] 0420 010000 6213545000871487 0 00 939145 000014000000 507900297331030100066213545000871487 507900297331 000000 668899 S +10:41:02 Slot [218] | NOT FINANCIAL TRANSACTION +10:41:12 Slot [231] | NOT FINANCIAL TRANSACTION +10:41:20 Slot [279] | NOT FINANCIAL TRANSACTION +10:41:21 Slot [264] | NOT FINANCIAL TRANSACTION +10:41:23 Slot [273] | NOT FINANCIAL TRANSACTION +10:41:24 +Slot[220] 0200 010000 6213545000871487 ------------- 91 939145 000014000000 507900297331030100066213545000871487 507900297331 570291 668899 S +10:41:35 Slot [254] | NOT FINANCIAL TRANSACTION +10:41:47 Slot [282] | NOT FINANCIAL TRANSACTION +10:41:57 +Slot[239] 0200 300000 6688990104461007 ------------- 00 717923 000000000000 507904153839200010006688990104461007 507904153839 595182 621354 S +10:41:59 Slot [272] | NOT FINANCIAL TRANSACTION +10:42:07 +Slot[266] 0200 301000 6213544000646312 ------------- 00 939283 000000000000 507902380193030200296213544000646312 507902380193 281151 668899 S +10:42:09 +Slot[252] 0200 010000 6213545001051030 ------------- 00 939299 000100000000 507900297336030100066213545001051030 507900297336 219204 668899 S +10:42:10 Slot [276] | NOT FINANCIAL TRANSACTION +10:42:14 +Slot[241] 0200 010000 6688990106954702 ------------- 14 268179 000100000000 5079032681790201ADD16688990106954702 507903268179 040902 180893 S +10:42:22 Slot [280] | NOT FINANCIAL TRANSACTION +10:42:25 Slot [258] | NOT FINANCIAL TRANSACTION +10:42:27 Slot [284] | NOT FINANCIAL TRANSACTION +10:42:31 +Slot[219] 0200 010000 6213545001042021 ------------- 00 939316 000010000000 507901834237033080016213545001042021 507901834237 344876 668899 S +10:42:32 +Slot[245] 0200 011000 1808930400011656 ------------- 55 718273 000050000000 507904031654090017001808930400011656 507904031654 643871 621354 S +10:42:39 +Slot[224] 0200 300000 6688990601478009 ------------- 55 718320 000000000000 507904153840200010006688990601478009 507904153840 849172 621354 S +10:42:46 Slot [287] | NOT FINANCIAL TRANSACTION +10:42:57 +Slot[290] 0200 011000 6213541000538002 ------------- 00 306041 000030000000 507900079328010007006213541000538002 507900079328 941956 220699 S +10:43:00 Slot [277] | NOT FINANCIAL TRANSACTION +10:43:11 Slot [267] | NOT FINANCIAL TRANSACTION +10:43:21 +Slot[271] 0200 300000 6688990601478009 ------------- 00 718469 000000000000 507904153841200010006688990601478009 507904153841 638473 621354 S +10:43:22 Slot [294] | NOT FINANCIAL TRANSACTION +10:43:23 +Slot[236] 0200 010000 6213545000858286 ------------- 00 939346 000050000000 507900297338030100066213545000858286 507900297338 071765 668899 S +10:43:24 Slot [217] | NOT FINANCIAL TRANSACTION +10:43:24 +Slot[293] 0200 010000 6213544001420303 ------------- 00 939351 000020000000 507901963463030200196213544001420303 507901963463 940168 668899 S +10:43:35 +Slot[278] 0200 011000 1808930400011656 ------------- 00 718535 000050000000 507904031656090017001808930400011656 507904031656 705710 621354 S +10:43:37 Slot [303] | NOT FINANCIAL TRANSACTION +10:43:47 Slot [298] | NOT FINANCIAL TRANSACTION +10:44:00 +Slot[257] 0200 010000 6213545001065238 ------------- 00 268192 000100000000 5079032681920324BKDT6213545001065238 507903268192 184113 180893 S +10:44:16 +Slot[299] 0200 011000 1808931400003032 ------------- 51 718740 000002000000 507904707121180009001808931400003032 507904707121 337139 621354 S +10:44:19 +Slot[300] 0200 301000 6213548000353613 ------------- 00 204049 000000000000 507910204049015290096213548000353613 507910204049 995673 198901 S +10:44:19 Slot [295] | NOT FINANCIAL TRANSACTION +10:44:25 +Slot[281] 0200 010000 6213544000646312 ------------- 00 939398 000100000000 507902380196030200296213544000646312 507902380196 217272 668899 S +10:44:26 Slot [308] | NOT FINANCIAL TRANSACTION +10:44:34 Slot [296] | NOT FINANCIAL TRANSACTION +10:44:45 Slot [286] | NOT FINANCIAL TRANSACTION +10:44:47 +Slot[316] 0420 011000 6213545000142616 ------------- 00 268197 000020000000 5079032681970363CPSH6213545000142616 507903268197 -------- 180893 S +10:44:50 +Slot[283] 0200 301000 6688990020021208 ------------- 00 718892 000000000000 507903675277160020006688990020021208 507903675277 952157 621354 S +10:44:55 Slot [311] | NOT FINANCIAL TRANSACTION +10:45:07 +Slot[312] 0200 010000 6688990104461007 ------------- 00 718955 000100000000 507904153843200010006688990104461007 507904153843 486435 621354 S +10:45:08 +Slot[306] 0200 300000 6688990106720608 ------------- 00 718971 000000000000 507903016930120024006688990106720608 507903016930 109748 621354 S +10:45:14 Slot [307] | NOT FINANCIAL TRANSACTION +10:45:21 +Slot[317] 0200 010000 6213546000001455 ------------- 00 268203 000100000000 5079032682030111BLBR6213546000001455 507903268203 538415 180893 S +10:45:28 Slot [310] | NOT FINANCIAL TRANSACTION +10:45:29 +Slot[288] 0200 010000 1234010100218503 ------------- 91 718448 000030000000 507904381065030037001234010100218503 507904381065 275624 621354 S +10:45:33 Slot [318] | NOT FINANCIAL TRANSACTION +10:45:43 +Slot[322] 0200 010000 6213545001051030 ------------- 00 939463 000005000000 507900297342030100066213545001051030 507900297342 959682 668899 S +10:45:44 Slot [315] | NOT FINANCIAL TRANSACTION +10:45:55 Slot [304] | NOT FINANCIAL TRANSACTION +10:46:01 +Slot[325] 0420 011000 6213545000142616 0000000000000 00 268197 000020000000 5079032681970363CPSH6213545000142616 507903268197 -------- 180893 S +10:46:03 +Slot[285] 0200 011000 6213545001065238 ------------- 00 268209 000060000000 5079032682090324BKDT6213545001065238 507903268209 607541 180893 S +10:46:05 +Slot[289] 0200 010000 6688990106720608 ------------- 00 719227 000029000000 507903016932120024006688990106720608 507903016932 431166 621354 S +10:46:10 +Slot[297] 0420 010000 6213545000871487 0 00 939397 000010000000 507900297340030100066213545000871487 507900297340 000000 668899 S +10:46:16 Slot [291] | NOT FINANCIAL TRANSACTION +10:46:21 Slot [326] | NOT FINANCIAL TRANSACTION +10:46:27 +Slot[301] 0200 011000 6213545000142616 ------------- 00 268215 000020000000 5079032682150363CPSH6213545000142616 507903268215 682976 180893 S +10:46:29 +Slot[327] 0200 300000 6688990601478009 ------------- 00 719316 000000000000 507904153844200010006688990601478009 507904153844 629104 621354 S +10:46:30 Slot [305] | NOT FINANCIAL TRANSACTION +10:46:33 +Slot[302] 0200 010000 6213545000871487 ------------- 91 939397 000010000000 507900297340030100066213545000871487 507900297340 106656 668899 S +10:46:37 +Slot[292] 0200 011000 6213545000142616 ------------- 91 268197 000020000000 5079032681970363CPSH6213545000142616 507903268197 673713 180893 S +10:46:37 Slot [314] | NOT FINANCIAL TRANSACTION +10:46:41 +Slot[333] 0420 011000 6213545000011019 ------------- 00 079079 000100000000 507900132952030001006213545000011019 507900132952 -------- 220699 S +10:46:49 Slot [331] | NOT FINANCIAL TRANSACTION +10:46:59 +Slot[262] 0200 010000 1234010100218503 ------------- 91 718868 000030000000 507904381069030037001234010100218503 507904381069 073572 621354 S +10:47:01 Slot [321] | NOT FINANCIAL TRANSACTION +10:47:17 Slot [334] | NOT FINANCIAL TRANSACTION +10:47:29 Slot [336] | NOT FINANCIAL TRANSACTION +10:47:32 Slot [335] | NOT FINANCIAL TRANSACTION +10:47:40 Slot [320] | NOT FINANCIAL TRANSACTION +10:47:50 Slot [342] | NOT FINANCIAL TRANSACTION +10:47:53 +Slot[345] 0420 011000 6213545000011019 0000000000000 00 079079 000100000000 507900132952030001006213545000011019 507900132952 935196 220699 S +10:47:58 +Slot[341] 0200 011000 6213545000942544 ------------- 00 204097 000050000000 507910204097015290186213545000942544 507910204097 053837 198901 S +10:48:00 +Slot[344] 0200 010000 6213545001065212 ------------- 00 268222 000100000000 5079032682220324BKDT6213545001065212 507903268222 980120 180893 S +10:48:11 Slot [268] | NOT FINANCIAL TRANSACTION +10:48:22 Slot [323] | NOT FINANCIAL TRANSACTION +10:48:34 Slot [339] | NOT FINANCIAL TRANSACTION +10:48:34 Slot [348] | NOT FINANCIAL TRANSACTION +10:48:50 Slot [329] | NOT FINANCIAL TRANSACTION +10:49:01 Slot [352] | NOT FINANCIAL TRANSACTION +10:49:12 Slot [309] | NOT FINANCIAL TRANSACTION +10:49:17 +Slot[337] 0200 011000 1234010100218503 ------------- 91 719401 000030000000 507904381074030037001234010100218503 507904381074 683942 621354 S +10:49:21 +Slot[328] 0200 011000 6213545001065212 ------------- 00 268231 000060000000 5079032682310324BKDT6213545001065212 507903268231 096360 180893 S +10:49:30 +Slot[347] 0200 011000 6213545000442883 ------------- 00 021154 000050000000 507900263107010014006213545000442883 507900263107 111225 220699 S +10:49:34 Slot [350] | NOT FINANCIAL TRANSACTION +10:49:36 Slot [319] | NOT FINANCIAL TRANSACTION +10:49:49 Slot [346] | NOT FINANCIAL TRANSACTION +10:49:55 Slot [357] | NOT FINANCIAL TRANSACTION +10:50:01 Slot [330] | NOT FINANCIAL TRANSACTION +10:50:02 +Slot[332] 0200 311000 6688990050090859 ------------- 14 177345 000000000000 507900010220010001006688990050090859 507900010220 213490 220699 S +10:50:12 Slot [365] | NOT FINANCIAL TRANSACTION +10:50:17 +Slot[356] 0200 011000 6688990600827701 ------------- 00 720283 000100000000 507904273142030026006688990600827701 507904273142 277484 621354 S +10:50:23 Slot [343] | NOT FINANCIAL TRANSACTION +10:50:29 +Slot[313] 0200 010000 6688990602691204 ------------- 61 268237 000200000000 5079032682370369SLVL6688990602691204 507903268237 311353 180893 S +10:50:38 Slot [366] | NOT FINANCIAL TRANSACTION +10:50:40 Slot [371] | NOT FINANCIAL TRANSACTION +10:50:54 Slot [378] | NOT FINANCIAL TRANSACTION +10:50:58 +Slot[340] 0200 011000 6213548000353613 ------------- 00 204143 000010000000 507910204143015290096213548000353613 507910204143 141269 198901 S +10:51:09 Slot [373] | NOT FINANCIAL TRANSACTION +10:51:09 +Slot[324] 0200 010000 6688990050090859 ------------- 14 177347 000005000000 507900010222010001006688990050090859 507900010222 325072 220699 S +10:51:18 +Slot[382] 0200 010000 6688990602691204 ------------- 14 268243 000100000000 5079032682430369SLVL6688990602691204 507903268243 120080 180893 S +10:51:21 Slot [355] | NOT FINANCIAL TRANSACTION +10:51:27 +Slot[353] 0200 301000 6213548000353613 ------------- 00 204152 000000000000 507910204152015290096213548000353613 507910204152 324262 198901 S +10:51:32 +Slot[358] 0200 010000 6213545001065220 ------------- 00 268245 000100000000 5079032682450324BKDT6213545001065220 507903268245 333846 180893 S +10:51:34 +Slot[363] 0200 011000 6688990600827701 ------------- 00 720581 000055000000 507904273144030026006688990600827701 507904273144 982323 621354 S +10:51:40 Slot [370] | NOT FINANCIAL TRANSACTION +10:51:42 Slot [360] | NOT FINANCIAL TRANSACTION +10:51:53 Slot [338] | NOT FINANCIAL TRANSACTION +10:52:05 Slot [354] | NOT FINANCIAL TRANSACTION +10:52:19 Slot [379] | NOT FINANCIAL TRANSACTION +10:52:28 +Slot[369] 0200 310000 6688990050090859 ------------- 14 177349 000000000000 507900010224010001006688990050090859 507900010224 656741 220699 S +10:52:30 Slot [396] | NOT FINANCIAL TRANSACTION +10:52:40 +Slot[351] 0200 011000 6213545001065220 ------------- 55 268256 000060000000 5079032682560324BKDT6213545001065220 507903268256 826129 180893 S +10:52:42 Slot [389] | NOT FINANCIAL TRANSACTION +10:52:51 Slot [390] | NOT FINANCIAL TRANSACTION +10:53:02 Slot [361] | NOT FINANCIAL TRANSACTION +10:53:03 +Slot[359] 0200 011000 6688990105536401 ------------- 00 720954 000050000000 507903883654010104006688990105536401 507903883654 436578 621354 S +10:53:05 +Slot[376] 0200 300000 6213544002272307 ------------- 00 939753 000000000000 507902255410033160036213544002272307 507902255410 438904 668899 S +10:53:11 Slot [374] | NOT FINANCIAL TRANSACTION +10:53:19 Slot [395] | NOT FINANCIAL TRANSACTION +10:53:29 +Slot[410] 0200 011000 6213541000443872 ------------- 00 268260 000020000000 5079032682600363CPSH6213541000443872 507903268260 576311 180893 S +10:53:40 Slot [393] | NOT FINANCIAL TRANSACTION +10:53:40 +Slot[383] 0200 011000 6213548000559086 ------------- 51 204179 000100000000 507910204179015290316213548000559086 507910204179 988460 198901 S +10:53:44 Slot [400] | NOT FINANCIAL TRANSACTION +10:53:50 Slot [413] | NOT FINANCIAL TRANSACTION +10:53:57 +Slot[397] 0200 301000 6213541000634413 ------------- 00 268263 032003530026 5079032682630529LPBF6213541000634413 507903268263 540723 180893 S +10:54:07 +Slot[349] 0200 011000 6213545001065220 ------------- 00 268267 000060000000 5079032682670324BKDT6213545001065220 507903268267 788707 180893 S +10:54:11 +Slot[414] 0200 010000 2206990000123471 ------------- 00 939791 000030000000 507900771431030050012206990000123471 507900771431 366014 668899 S +10:54:17 Slot [399] | NOT FINANCIAL TRANSACTION +10:54:29 +Slot[394] 0200 301000 6213544002272307 ------------- 00 939800 000000000000 507902255411033160036213544002272307 507902255411 925223 668899 S +10:54:34 Slot [387] | NOT FINANCIAL TRANSACTION +10:54:42 +Slot[372] 0200 010000 6213541000634413 ------------- 00 268272 000100000000 5079032682720529LPBF6213541000634413 507903268272 405273 180893 S +10:54:46 Slot [418] | NOT FINANCIAL TRANSACTION +10:54:51 +Slot[368] 0200 010000 6213544002255229 ------------- 00 268277 000100000000 5079032682770108THNG6213544002255229 507903268277 256706 180893 S +10:54:55 Slot [406] | NOT FINANCIAL TRANSACTION +10:55:01 Slot [419] | NOT FINANCIAL TRANSACTION +10:55:16 Slot [407] | NOT FINANCIAL TRANSACTION +10:55:29 Slot [411] | NOT FINANCIAL TRANSACTION +10:55:44 Slot [380] | NOT FINANCIAL TRANSACTION +10:55:48 Slot [384] | NOT FINANCIAL TRANSACTION +10:55:54 Slot [416] | NOT FINANCIAL TRANSACTION +10:56:05 Slot [420] | NOT FINANCIAL TRANSACTION +10:56:21 Slot [381] | NOT FINANCIAL TRANSACTION +10:56:27 Slot [415] | NOT FINANCIAL TRANSACTION +10:56:28 +Slot[401] 0200 301000 1808931800013110 ------------- 00 721798 000000000000 507904635564170008001808931800013110 507904635564 757033 621354 S +10:56:38 Slot [398] | NOT FINANCIAL TRANSACTION +10:56:50 Slot [425] | NOT FINANCIAL TRANSACTION +10:56:53 +Slot[433] 0200 010000 1888880000089870 ------------- 00 721904 000030000000 507904645034170009001888880000089870 507904645034 635404 621354 S +10:56:55 Slot [364] | NOT FINANCIAL TRANSACTION +10:57:01 +Slot[388] 0200 010000 6688990602739409 ------------- 61 268288 000200000000 5079032682880486HPXK6688990602739409 507903268288 769648 180893 S +10:57:09 Slot [367] | NOT FINANCIAL TRANSACTION +10:57:18 Slot [441] | NOT FINANCIAL TRANSACTION +10:57:20 +Slot[430] 0200 010000 6213543000091354 ------------- 55 939908 000020000000 507900196079030010036213543000091354 507900196079 757352 668899 S +10:57:25 Slot [409] | NOT FINANCIAL TRANSACTION +10:57:41 Slot [402] | NOT FINANCIAL TRANSACTION +10:57:44 +Slot[437] 0200 300000 1888880000089870 ------------- 00 722142 000000000000 507904645035170009001888880000089870 507904645035 711159 621354 S +10:57:52 Slot [403] | NOT FINANCIAL TRANSACTION +10:57:52 Slot [408] | NOT FINANCIAL TRANSACTION +10:58:00 +Slot[362] 0200 011000 6213544001208211 ------------- 00 268292 000070000000 5079032682920363CPSH6213544001208211 507903268292 896301 180893 S +10:58:04 +Slot[375] 0200 010000 6213543000091354 ------------- 00 939934 000020000000 507900196081030010036213543000091354 507900196081 335851 668899 S +10:58:08 Slot [385] | NOT FINANCIAL TRANSACTION +10:58:19 Slot [447] | NOT FINANCIAL TRANSACTION +10:58:29 Slot [412] | NOT FINANCIAL TRANSACTION +10:58:30 +Slot[392] 0200 010000 6688990040039412 ------------- 51 722359 000050000000 507904599648020022006688990040039412 507904599648 258821 621354 S +10:58:41 Slot [450] | NOT FINANCIAL TRANSACTION +10:58:48 +Slot[417] 0200 300000 2206990000091827 ------------- 00 939961 000000000000 507902031645030180032206990000091827 507902031645 025907 668899 S +10:58:50 +Slot[391] 0200 302000 6688990602739409 ------------- 14 268301 032003575226 5079032683010486HPXK6688990602739409 507903268301 851739 180893 S +10:58:54 Slot [443] | NOT FINANCIAL TRANSACTION +10:59:00 +Slot[377] 0200 011000 6213545001067242 ------------- 00 268302 000025000000 5079032683020121SKBR6213545001067242 507903268302 172008 180893 S +10:59:16 Slot [405] | NOT FINANCIAL TRANSACTION +10:59:18 +Slot[386] 0200 301000 6688990602739409 ------------- 14 268309 032003582026 5079032683090486HPXK6688990602739409 507903268309 613631 180893 S +10:59:28 Slot [446] | NOT FINANCIAL TRANSACTION +10:59:35 +Slot[456] 0200 010000 6688990040039412 ------------- 00 722610 000040000000 507904599650020022006688990040039412 507904599650 366000 621354 S +10:59:43 Slot [429] | NOT FINANCIAL TRANSACTION +10:59:55 Slot [404] | NOT FINANCIAL TRANSACTION +10:59:56 Slot [445] | NOT FINANCIAL TRANSACTION +10:59:57 +Slot[424] 0200 301000 6213541000681604 ------------- 00 268313 032003585926 5079032683130112CPBR6213541000681604 507903268313 048370 180893 S +11:00:00 +Slot[435] 0200 012000 1808931800013110 ------------- 42 722747 000100000000 507904635567170008001808931800013110 507904635567 537361 621354 S +11:00:02 +Slot[438] 0200 011000 6213545001067242 ------------- 05 268315 000002000000 5079032683150121SKBR6213545001067242 507903268315 859237 180893 S +11:00:08 +Slot[442] 0200 301000 6213541000676968 ------------- 00 204278 000000000000 507911204278015290246213541000676968 507911204278 846500 198901 S +11:00:13 Slot [434] | NOT FINANCIAL TRANSACTION +11:00:16 +Slot[427] 0200 010000 6213545000614358 ------------- 00 940028 000060000000 507900297346030100066213545000614358 507900297346 995969 668899 S +11:00:25 Slot [428] | NOT FINANCIAL TRANSACTION +11:00:31 +Slot[451] 0200 010000 6688990602739409 ------------- 14 268318 000100000000 5079032683180486HPXK6688990602739409 507903268318 904801 180893 S +11:00:41 Slot [462] | NOT FINANCIAL TRANSACTION +11:00:52 Slot [431] | NOT FINANCIAL TRANSACTION +11:00:56 +Slot[457] 0200 011000 6213541000681604 ------------- 00 268322 000040000000 5079032683220112CPBR6213541000681604 507903268322 978996 180893 S +11:00:58 Slot [426] | NOT FINANCIAL TRANSACTION +11:01:08 Slot [421] | NOT FINANCIAL TRANSACTION +11:01:10 +Slot[422] 0200 010000 6688990040039412 ------------- 00 723037 000008000000 507904599652020022006688990040039412 507904599652 100412 621354 S +11:01:17 +Slot[444] 0200 011000 6688990040156620 ------------- 14 107196 000030000000 507900327815010018006688990040156620 507900327815 305734 220699 S +11:01:19 Slot [465] | NOT FINANCIAL TRANSACTION +11:01:21 Slot [436] | NOT FINANCIAL TRANSACTION +11:01:25 +Slot[423] 0200 300000 6213544001443339 ------------- 00 940079 000000000000 507901963468030200196213544001443339 507901963468 918892 668899 S +11:01:35 Slot [439] | NOT FINANCIAL TRANSACTION +11:01:46 Slot [458] | NOT FINANCIAL TRANSACTION +11:01:57 +Slot[459] 0200 011000 1808931800013110 ------------- 00 723210 000100000000 507904635569170008001808931800013110 507904635569 241276 621354 S +11:02:00 Slot [466] | NOT FINANCIAL TRANSACTION +11:02:04 Slot [452] | NOT FINANCIAL TRANSACTION +11:02:09 +Slot[468] 0200 311000 6213541000375231 ------------- 00 168902 000000000000 507900026322010002006213541000375231 507900026322 681578 220699 S +11:02:14 Slot [475] | NOT FINANCIAL TRANSACTION +11:02:16 +Slot[455] 0200 010000 6688990040039412 ------------- 51 723317 000002000000 507904599654020022006688990040039412 507904599654 799187 621354 S +11:02:20 +Slot[449] 0200 012000 2206990000091827 ------------- 00 723326 000075000000 507904119743080008002206990000091827 507904119743 589021 621354 S +11:02:25 Slot [440] | NOT FINANCIAL TRANSACTION +11:02:35 +Slot[460] 0200 310000 6213542000059783 ------------- 00 107199 000000000000 507900327817010018006213542000059783 507900327817 315772 220699 S +11:02:38 Slot [482] | NOT FINANCIAL TRANSACTION +11:02:48 +Slot[432] 0200 011000 1808930200038628 ------------- 00 723423 000100000000 507903883671010104001808930200038628 507903883671 963940 621354 S +11:02:50 +Slot[495] 0200 010000 6213544001557443 ------------- 00 940144 000005000000 507900844878030150036213544001557443 507900844878 916051 668899 S +11:02:53 Slot [453] | NOT FINANCIAL TRANSACTION +11:03:02 Slot [488] | NOT FINANCIAL TRANSACTION +11:03:04 Slot [484] | NOT FINANCIAL TRANSACTION +11:03:09 +Slot[470] 0200 011000 6213541000375231 ------------- 00 168903 000040000000 507900026323010002006213541000375231 507900026323 136895 220699 S +11:03:15 Slot [490] | NOT FINANCIAL TRANSACTION +11:03:24 +Slot[463] 0200 302000 2206990000091827 ------------- 00 723576 000000000000 507904119744080008002206990000091827 507904119744 563778 621354 S +11:03:26 Slot [480] | NOT FINANCIAL TRANSACTION +11:03:29 +Slot[448] 0200 010000 6688990104459704 ------------- 51 723598 000100000000 507904322695030031006688990104459704 507904322695 740055 621354 S +11:03:37 Slot [471] | NOT FINANCIAL TRANSACTION +11:03:45 +Slot[479] 0200 302000 6213548000319069 ------------- 00 268334 032004024726 5079042683340441VT526213548000319069 507904268334 905378 180893 S +11:03:57 +Slot[0] 0200 011000 1808930200038628 ------------- 00 723684 000045000000 507903883673010104001808930200038628 507903883673 158800 621354 S +11:03:57 Slot [1] | NOT FINANCIAL TRANSACTION +11:03:58 +Slot[2] 0200 010000 6213541000122831 ------------- 00 940205 000100000000 507902294722030090066213541000122831 507902294722 390763 668899 S +11:04:04 Slot [493] | NOT FINANCIAL TRANSACTION +11:04:05 Slot [498] | NOT FINANCIAL TRANSACTION +11:04:20 Slot [473] | NOT FINANCIAL TRANSACTION +11:04:22 +Slot[4] 0200 010000 6213548000319069 ------------- 00 268337 000050000000 5079042683370441VT526213548000319069 507904268337 839206 180893 S +11:04:26 +Slot[489] 0200 012000 1808931300013024 ------------- 42 723817 000100000000 507902706272140009001808931300013024 507902706272 957680 621354 S +11:04:42 +Slot[483] 0200 010000 1808930400013884 ------------- 00 940228 000100000000 507901856314033110011808930400013884 507901856314 994928 668899 S +11:04:45 Slot [476] | NOT FINANCIAL TRANSACTION +11:04:55 Slot [486] | NOT FINANCIAL TRANSACTION +11:04:58 Slot [472] | NOT FINANCIAL TRANSACTION +11:05:00 +Slot[474] 0200 010000 6213541000122831 ------------- 00 940240 000100000000 507902294724030090066213541000122831 507902294724 610847 668899 S +11:05:06 Slot [477] | NOT FINANCIAL TRANSACTION +11:05:11 Slot [492] | NOT FINANCIAL TRANSACTION +11:05:23 +Slot[6] 0200 012000 1808931300013024 ------------- 42 724034 000100000000 507902706275140009001808931300013024 507902706275 855029 621354 S +11:05:32 Slot [485] | NOT FINANCIAL TRANSACTION +11:05:47 Slot [14] | NOT FINANCIAL TRANSACTION +11:05:56 +Slot[454] 0200 010000 1808930400013884 ------------- 00 940276 000010000000 507901856316033110011808930400013884 507901856316 774615 668899 S +11:05:57 +Slot[13] 0200 010000 6213541000122831 ------------- 00 940279 000100000000 507902294726030090066213541000122831 507902294726 530142 668899 S +11:05:58 Slot [16] | NOT FINANCIAL TRANSACTION +11:06:03 +Slot[12] 0200 301000 6688990020018428 ------------- 00 724191 000000000000 507904807601070016006688990020018428 507904807601 506326 621354 S +11:06:08 Slot [469] | NOT FINANCIAL TRANSACTION +11:06:09 +Slot[22] 0200 301000 6213544001952446 ------------- 00 268342 032004051126 5079042683420381CPSP6213544001952446 507904268342 661496 180893 S +11:06:11 +Slot[494] 0200 011000 1808931800013110 ------------- 00 724220 000090000000 507904635571170008001808931800013110 507904635571 938263 621354 S +11:06:21 Slot [491] | NOT FINANCIAL TRANSACTION +11:06:21 Slot [499] | NOT FINANCIAL TRANSACTION +11:06:31 Slot [17] | NOT FINANCIAL TRANSACTION +11:06:42 Slot [31] | NOT FINANCIAL TRANSACTION +11:06:53 Slot [10] | NOT FINANCIAL TRANSACTION +11:07:03 +Slot[481] 0200 301000 6688990602739409 ------------- 55 724438 000000000000 507904660571170011006688990602739409 507904660571 949364 621354 S +11:07:04 Slot [29] | NOT FINANCIAL TRANSACTION +11:07:10 Slot [3] | NOT FINANCIAL TRANSACTION +11:07:15 Slot [23] | NOT FINANCIAL TRANSACTION +11:07:23 +Slot[7] 0200 010000 6213541000122831 ------------- 00 940330 000100000000 507902294729030090066213541000122831 507902294729 332591 668899 S +11:07:26 Slot [33] | NOT FINANCIAL TRANSACTION +11:07:41 Slot [21] | NOT FINANCIAL TRANSACTION +11:07:54 Slot [11] | NOT FINANCIAL TRANSACTION +11:08:01 +Slot[35] 0200 011000 6213541000403512 ------------- 00 268348 000020000000 5079042683480532XYKH6213541000403512 507904268348 823959 180893 S +11:08:06 +Slot[496] 0200 010000 2206991200061530 ------------- 00 724693 000005000000 507903058132010085002206991200061530 507903058132 536357 621354 S +11:08:11 +Slot[461] 0200 011000 6213541000051774 ------------- 51 259175 000030000000 507900040545010004006213541000051774 507900040545 418889 220699 S +11:08:12 Slot [37] | NOT FINANCIAL TRANSACTION +11:08:12 +Slot[30] 0200 010000 6213541000122831 ------------- 00 940358 000100000000 507902294731030090066213541000122831 507902294731 887778 668899 S +11:08:14 Slot [9] | NOT FINANCIAL TRANSACTION +11:08:21 +Slot[36] 0200 010000 6213544001916417 ------------- 00 940367 000050000000 507902730346030130056213544001916417 507902730346 769310 668899 S +11:08:25 Slot [45] | NOT FINANCIAL TRANSACTION +11:08:40 Slot [18] | NOT FINANCIAL TRANSACTION +11:08:48 +Slot[497] 0200 311000 6213541000051774 ------------- 00 259178 000000000000 507900040547010004006213541000051774 507900040547 789265 220699 S +11:08:55 Slot [40] | NOT FINANCIAL TRANSACTION +11:08:59 +Slot[467] 0200 010000 6213543000223023 ------------- 00 940387 000050000000 507900270917030100046213543000223023 507900270917 480436 668899 S +11:09:07 Slot [28] | NOT FINANCIAL TRANSACTION +11:09:11 +Slot[43] 0200 010000 6213544001451779 ------------- 00 268354 000010000000 5079042683540527LPBL6213544001451779 507904268354 553052 180893 S +11:09:13 +Slot[8] 0200 011000 6213544000555414 ------------- 61 268356 000110000000 5079042683560463LNTN6213544000555414 507904268356 003286 180893 S +11:09:14 Slot [50] | NOT FINANCIAL TRANSACTION +11:09:15 +Slot[52] 0200 010000 6213544001916417 ------------- 00 940393 000010000000 507902730348030130056213544001916417 507902730348 071428 668899 S +11:09:23 Slot [25] | NOT FINANCIAL TRANSACTION +11:09:33 Slot [44] | NOT FINANCIAL TRANSACTION +11:09:49 Slot [61] | NOT FINANCIAL TRANSACTION +11:09:55 Slot [15] | NOT FINANCIAL TRANSACTION +11:09:56 +Slot[55] 0200 010000 6213544000555414 ------------- 00 268361 000100000000 5079042683610463LNTN6213544000555414 507904268361 452380 180893 S +11:10:06 Slot [478] | NOT FINANCIAL TRANSACTION +11:10:16 Slot [60] | NOT FINANCIAL TRANSACTION +11:10:22 Slot [68] | NOT FINANCIAL TRANSACTION +11:10:28 +Slot[63] 0200 010000 6213543000229624 ------------- 55 268367 000100000000 5079042683670368KMMX6213543000229624 507904268367 869404 180893 S +11:10:37 +Slot[41] 0200 301000 6213541000119936 ------------- 00 940441 000000000000 507901963474030200196213541000119936 507901963474 438829 668899 S +11:10:38 Slot [73] | NOT FINANCIAL TRANSACTION +11:10:42 +Slot[38] 0200 010000 6213544000555414 ------------- 00 268371 000010000000 5079042683710463LNTN6213544000555414 507904268371 478049 180893 S +11:10:54 Slot [464] | NOT FINANCIAL TRANSACTION +11:11:09 Slot [32] | NOT FINANCIAL TRANSACTION +11:11:16 +Slot[487] 0200 010000 6688990040020628 ------------- 14 268374 000010000000 5079042683740401XSBR6688990040020628 507904268374 547411 180893 S +11:11:18 +Slot[27] 0200 010000 6213544001636577 ------------- 00 079091 000100000000 507900132962030001006213544001636577 507900132962 197434 220699 S +11:11:18 Slot [26] | NOT FINANCIAL TRANSACTION +11:11:21 Slot [20] | NOT FINANCIAL TRANSACTION +11:11:31 +Slot[48] 0200 010000 6213545000822449 ------------- 61 268379 000200000000 5079042683790262PSLB6213545000822449 507904268379 784608 180893 S +11:11:39 +Slot[46] 0200 012000 6213543000081207 ------------- 51 268381 000040000000 5079042683810527LPBL6213543000081207 507904268381 582470 180893 S +11:11:51 Slot [19] | NOT FINANCIAL TRANSACTION +11:12:02 Slot [58] | NOT FINANCIAL TRANSACTION +11:12:06 +Slot[69] 0200 302000 6213543000081207 ------------- 00 268386 032004110926 5079042683860527LPBL6213543000081207 507904268386 950191 180893 S +11:12:18 +Slot[78] 0200 010000 6213545000822449 ------------- 00 268388 000100000000 5079042683880262PSLB6213545000822449 507904268388 892710 180893 S +11:12:20 Slot [47] | NOT FINANCIAL TRANSACTION +11:12:30 Slot [81] | NOT FINANCIAL TRANSACTION +11:12:34 +Slot[54] 0200 010000 6213544001603387 ------------- 00 940518 000020000000 507902407349030010106213544001603387 507902407349 616902 668899 S +11:12:41 Slot [57] | NOT FINANCIAL TRANSACTION +11:12:51 Slot [24] | NOT FINANCIAL TRANSACTION +11:12:56 +Slot[42] 0200 302000 6213548000509206 ------------- 00 940541 000000000000 507900329873030130036213548000509206 507900329873 140371 668899 S +11:13:03 Slot [34] | NOT FINANCIAL TRANSACTION +11:13:19 Slot [49] | NOT FINANCIAL TRANSACTION +11:13:19 +Slot[86] 0200 302000 6213548000509206 ------------- 00 940563 000000000000 507900329874030130036213548000509206 507900329874 141457 668899 S +11:13:22 Slot [89] | NOT FINANCIAL TRANSACTION +11:13:26 +Slot[88] 0200 010000 6213545000822449 ------------- 00 268399 000100000000 5079042683990262PSLB6213545000822449 507904268399 210140 180893 S +11:13:28 +Slot[59] 0200 012000 6213543000081207 ------------- 00 268401 000035000000 5079042684010527LPBL6213543000081207 507904268401 551959 180893 S +11:13:40 Slot [79] | NOT FINANCIAL TRANSACTION +11:13:44 +Slot[5] 0200 010000 6213548000509206 ------------- 00 940591 000100000000 507900329875030130036213548000509206 507900329875 428779 668899 S +11:13:56 Slot [84] | NOT FINANCIAL TRANSACTION +11:14:00 Slot [67] | NOT FINANCIAL TRANSACTION +11:14:12 Slot [62] | NOT FINANCIAL TRANSACTION +11:14:24 Slot [39] | NOT FINANCIAL TRANSACTION +11:14:24 Slot [51] | NOT FINANCIAL TRANSACTION +11:14:39 Slot [99] | NOT FINANCIAL TRANSACTION +11:14:43 Slot [82] | NOT FINANCIAL TRANSACTION +11:14:48 +Slot[64] 0200 010000 6213548000509206 ------------- 00 940641 000100000000 507900329877030130036213548000509206 507900329877 140620 668899 S +11:14:50 Slot [56] | NOT FINANCIAL TRANSACTION +11:14:55 Slot [93] | NOT FINANCIAL TRANSACTION +11:15:05 +Slot[100] 0200 010000 6213541000047319 ------------- 00 940657 000070000000 507902071172030060076213541000047319 507902071172 053845 668899 S +11:15:06 +Slot[91] 0200 011000 1808930900017526 ------------- 00 726334 000010000000 507904228865050046001808930900017526 507904228865 028654 621354 S +11:15:11 Slot [65] | NOT FINANCIAL TRANSACTION +11:15:26 Slot [72] | NOT FINANCIAL TRANSACTION +11:15:26 Slot [106] | NOT FINANCIAL TRANSACTION +11:15:36 +Slot[76] 0200 010000 6213541000119936 ------------- 00 940684 000100000000 507901963482030200196213541000119936 507901963482 657005 668899 S +11:15:42 +Slot[66] 0420 011000 2206990000137026 ------------- 00 726367 000090000000 507902381594010063002206990000137026 507902381594 -------- 621354 S +11:15:43 Slot [90] | NOT FINANCIAL TRANSACTION +11:15:54 +Slot[83] 0200 010000 6213548000509206 ------------- 00 940700 000010000000 507900329879030130036213548000509206 507900329879 194161 668899 S +11:15:57 +Slot[114] 0200 301000 1808930900017526 ------------- 00 726525 000000000000 507904228866050046001808930900017526 507904228866 285432 621354 S +11:16:04 Slot [118] | NOT FINANCIAL TRANSACTION +11:16:14 Slot [74] | NOT FINANCIAL TRANSACTION +11:16:21 Slot [121] | NOT FINANCIAL TRANSACTION +11:16:22 +Slot[107] 0200 012000 6213541000137698 ------------- 51 001977 000100000000 507900296958010016006213541000137698 507900296958 682514 220699 S +11:16:26 Slot [115] | NOT FINANCIAL TRANSACTION +11:16:28 Slot [92] | NOT FINANCIAL TRANSACTION +11:16:40 Slot [108] | NOT FINANCIAL TRANSACTION +11:16:51 Slot [94] | NOT FINANCIAL TRANSACTION +11:16:56 +Slot[127] 0420 011000 2206990000137026 0000000000000 00 726367 000090000000 507902381594010063002206990000137026 507902381594 -------- 621354 S +11:16:56 +Slot[113] 0200 011000 6213544002151121 ------------- 00 268423 000005000000 5079042684230108THNG6213544002151121 507904268423 045427 180893 S +11:17:08 Slot [75] | NOT FINANCIAL TRANSACTION +11:17:14 +Slot[125] 0200 301000 6213548000416345 ------------- 00 204516 000000000000 507911204516015290316213548000416345 507911204516 833322 198901 S +11:17:15 +Slot[95] 0200 010000 1888880000097022 ------------- 00 940770 000100000000 507900136696030200041888880000097022 507900136696 685833 668899 S +11:17:19 Slot [53] | NOT FINANCIAL TRANSACTION +11:17:27 +Slot[98] 0200 010000 6688990105571705 ------------- 00 726968 000030000000 507904599656020022006688990105571705 507904599656 636706 621354 S +11:17:30 Slot [134] | NOT FINANCIAL TRANSACTION +11:17:33 Slot [103] | NOT FINANCIAL TRANSACTION +11:17:34 +Slot[77] 0200 011000 2206990000137026 ------------- 91 726367 000090000000 507902381594010063002206990000137026 507902381594 834373 621354 S +11:17:45 Slot [71] | NOT FINANCIAL TRANSACTION +11:17:56 Slot [101] | NOT FINANCIAL TRANSACTION +11:17:57 +Slot[96] 0200 010000 6213548000229383 ------------- 00 940810 000010000000 507901963484030200196213548000229383 507901963484 049332 668899 S +11:18:12 Slot [70] | NOT FINANCIAL TRANSACTION +11:18:29 Slot [109] | NOT FINANCIAL TRANSACTION +11:18:32 Slot [102] | NOT FINANCIAL TRANSACTION +11:18:40 +Slot[85] 0200 010000 6213544001207700 ------------- 00 940847 000100000000 507902435623030200316213544001207700 507902435623 079698 668899 S +11:18:46 +Slot[136] 0200 010000 6213541000245582 ------------- 00 940854 000050000000 507902150951030200256213541000245582 507902150951 466510 668899 S +11:18:46 Slot [129] | NOT FINANCIAL TRANSACTION +11:18:51 +Slot[131] 0420 010000 6213544001636577 ------------- 00 079091 000100000000 507900132962030001006213544001636577 507900132962 -------- 220699 S +11:19:02 Slot [105] | NOT FINANCIAL TRANSACTION +11:19:12 Slot [87] | NOT FINANCIAL TRANSACTION +11:19:19 +Slot[104] 0200 300000 6688990602683607 ------------- 00 727472 000000000000 507905108873200013006688990602683607 507905108873 006386 621354 S +11:19:21 +Slot[138] 0200 301000 6213545000118624 ------------- 00 940894 000000000000 507900844884030150036213545000118624 507900844884 162031 668899 S +11:19:23 Slot [112] | NOT FINANCIAL TRANSACTION +11:19:28 +Slot[117] 0200 010000 1888880000097022 ------------- 00 940899 000100000000 507900136698030200041888880000097022 507900136698 192051 668899 S +11:19:33 +Slot[140] 0200 011000 1808930200040764 ------------- 00 727513 000045000000 507903063631010086001808930200040764 507903063631 570930 621354 S +11:19:34 Slot [116] | NOT FINANCIAL TRANSACTION +11:19:34 +Slot[97] 0200 301000 6213548000416378 ------------- 00 204546 000000000000 507911204546015290316213548000416378 507911204546 288512 198901 S +11:19:39 Slot [124] | NOT FINANCIAL TRANSACTION +11:19:39 +Slot[111] 0200 010000 6213544001207700 ------------- 00 940915 000070000000 507902435625030200316213544001207700 507902435625 634639 668899 S +11:19:50 Slot [161] | NOT FINANCIAL TRANSACTION +11:19:55 Slot [80] | NOT FINANCIAL TRANSACTION +11:20:01 Slot [147] | NOT FINANCIAL TRANSACTION +11:20:04 +Slot[123] 0420 010000 6213544001636577 0000000000000 00 079091 000100000000 507900132962030001006213544001636577 507900132962 586956 220699 S +11:20:07 +Slot[122] 0200 010000 6213545000118624 ------------- 00 940935 000100000000 507900844885030150036213545000118624 507900844885 713073 668899 S +11:20:08 +Slot[132] 0200 010000 6213541000119936 ------------- 00 940936 000100000000 507901963486030200196213541000119936 507901963486 472902 668899 S +11:20:12 Slot [162] | NOT FINANCIAL TRANSACTION +11:20:24 Slot [145] | NOT FINANCIAL TRANSACTION +11:20:29 +Slot[154] 0200 010000 6213541000106925 ------------- 00 940956 000010000000 507900977508034070026213541000106925 507900977508 029927 668899 S +11:20:31 +Slot[158] 0200 010000 6213541000327059 ------------- 00 940957 000100000000 507902071174030060076213541000327059 507902071174 619048 668899 S +11:20:36 Slot [143] | NOT FINANCIAL TRANSACTION +11:20:42 Slot [166] | NOT FINANCIAL TRANSACTION +11:20:43 +Slot[120] 0200 010000 6213543000201573 ------------- 00 268439 000100000000 5079042684390463LNTN6213543000201573 507904268439 640725 180893 S +11:20:57 Slot [133] | NOT FINANCIAL TRANSACTION +11:21:07 Slot [150] | NOT FINANCIAL TRANSACTION +11:21:21 Slot [153] | NOT FINANCIAL TRANSACTION +11:21:23 Slot [130] | NOT FINANCIAL TRANSACTION +11:21:34 Slot [110] | NOT FINANCIAL TRANSACTION +11:21:34 +Slot[142] 0200 010000 6213541000106925 ------------- 00 941010 000100000000 507900977510034070026213541000106925 507900977510 275690 668899 S +11:21:38 Slot [167] | NOT FINANCIAL TRANSACTION +11:21:50 Slot [159] | NOT FINANCIAL TRANSACTION +11:21:51 +Slot[137] 0200 302000 6213541000137698 ------------- 00 941021 000000000000 507900136701030200046213541000137698 507900136701 614286 668899 S +11:21:56 +Slot[175] 0200 010000 6213544002012497 ------------- 55 941026 000010000000 507901912156030130046213544002012497 507901912156 347111 668899 S +11:21:58 +Slot[128] 0200 011000 6213544001922209 ------------- 00 204582 000020000000 507911204582015290316213544001922209 507911204582 197131 198901 S +11:22:01 +Slot[146] 0200 010000 6213541000043318 ------------- 61 268448 000150000000 5079042684480529LPBF6213541000043318 507904268448 963258 180893 S +11:22:12 +Slot[141] 0200 012000 6213544000194313 ------------- 00 268450 000030000000 5079042684500363CPSH6213544000194313 507904268450 819395 180893 S +11:22:14 +Slot[170] 0200 010000 6213545000118624 ------------- 00 941039 000035000000 507900844887030150036213545000118624 507900844887 255997 668899 S +11:22:22 Slot [157] | NOT FINANCIAL TRANSACTION +11:22:23 +Slot[151] 0200 012000 6213545000482301 ------------- 00 251157 000100000000 507900336161010019006213545000482301 507900336161 831829 220699 S +11:22:34 Slot [172] | NOT FINANCIAL TRANSACTION +11:22:38 +Slot[164] 0200 010000 6213541000043318 ------------- 61 268455 000150000000 5079042684550529LPBF6213541000043318 507904268455 967746 180893 S +11:22:40 Slot [186] | NOT FINANCIAL TRANSACTION +11:22:40 +Slot[148] 0200 010000 6213544002012497 ------------- 55 941053 000010000000 507901912158030130046213544002012497 507901912158 815816 668899 S +11:22:42 +Slot[126] 0200 010000 6688990103684708 ------------- 00 728402 000100000000 507903372885130017006688990103684708 507903372885 086676 621354 S +11:22:49 Slot [171] | NOT FINANCIAL TRANSACTION +11:23:00 Slot [119] | NOT FINANCIAL TRANSACTION +11:23:12 Slot [182] | NOT FINANCIAL TRANSACTION +11:23:22 Slot [139] | NOT FINANCIAL TRANSACTION +11:23:29 +Slot[176] 0200 010000 6688990102723002 ------------- 00 728617 000005000000 507904707192180009006688990102723002 507904707192 417570 621354 S +11:23:31 +Slot[202] 0200 010000 6213544002012497 ------------- 75 941091 000020000000 507901912160030130046213544002012497 507901912160 373432 668899 S +11:23:32 Slot [160] | NOT FINANCIAL TRANSACTION +11:23:41 +Slot[187] 0200 010000 6213545000558076 ------------- 00 941101 000070000000 507901963490030200196213545000558076 507901963490 361633 668899 S +11:23:42 Slot [156] | NOT FINANCIAL TRANSACTION +11:23:44 Slot [144] | NOT FINANCIAL TRANSACTION +11:23:46 +Slot[203] 0200 010000 6213541000043318 ------------- 00 268463 000100000000 5079042684630529LPBF6213541000043318 507904268463 495829 180893 S +11:23:47 +Slot[179] 0200 012000 6213545000482301 ------------- 00 251160 000100000000 507900336163010019006213545000482301 507900336163 684664 220699 S +11:24:00 Slot [204] | NOT FINANCIAL TRANSACTION +11:24:15 Slot [163] | NOT FINANCIAL TRANSACTION +11:24:26 +Slot[135] 0200 011000 6213545000810238 ------------- 00 079099 000030000000 507900132968030001006213545000810238 507900132968 397234 220699 S +11:24:30 Slot [152] | NOT FINANCIAL TRANSACTION +11:24:42 Slot [192] | NOT FINANCIAL TRANSACTION +11:24:44 Slot [191] | NOT FINANCIAL TRANSACTION +11:24:55 Slot [190] | NOT FINANCIAL TRANSACTION +11:25:03 +Slot[196] 0200 011000 1808931100007226 ------------- 00 728992 000025000000 507904341462030033001808931100007226 507904341462 732266 621354 S +11:25:09 +Slot[155] 0200 010000 6213541000043318 ------------- 00 268471 000050000000 5079042684710529LPBF6213541000043318 507904268471 261632 180893 S +11:25:19 Slot [198] | NOT FINANCIAL TRANSACTION +11:25:22 +Slot[181] 0200 010000 6688990700321704 ------------- 14 268473 000050000000 5079042684730363CPSH6688990700321704 507904268473 306561 180893 S +11:25:29 Slot [201] | NOT FINANCIAL TRANSACTION +11:25:35 Slot [214] | NOT FINANCIAL TRANSACTION +11:25:36 +Slot[194] 0200 011000 6688990107910109 ------------- 14 223703 000004000000 507900118747010011006688990107910109 507900118747 829964 220699 S +11:25:46 +Slot[165] 0200 010000 6213541000119936 ------------- 00 941175 000100000000 507901963492030200196213541000119936 507901963492 130412 668899 S +11:25:46 Slot [195] | NOT FINANCIAL TRANSACTION +11:25:47 +Slot[209] 0200 010000 6213542000038332 ------------- 00 941176 000070000000 507902150953030200256213542000038332 507902150953 577479 668899 S +11:25:50 Slot [184] | NOT FINANCIAL TRANSACTION +11:26:06 Slot [178] | NOT FINANCIAL TRANSACTION +11:26:17 Slot [213] | NOT FINANCIAL TRANSACTION +11:26:21 Slot [206] | NOT FINANCIAL TRANSACTION +11:26:25 +Slot[193] 0200 011000 6213541000043318 ------------- 00 268483 000020000000 5079042684830529LPBF6213541000043318 507904268483 724950 180893 S +11:26:32 +Slot[221] 0200 010000 6213545000160097 ------------- 00 268486 000100000000 5079042684860363CPSH6213545000160097 507904268486 299548 180893 S +11:26:43 Slot [212] | NOT FINANCIAL TRANSACTION +11:26:44 +Slot[207] 0200 011000 6688990107910109 ------------- 14 223706 000010000000 507900118749010011006688990107910109 507900118749 874767 220699 S +11:26:48 Slot [208] | NOT FINANCIAL TRANSACTION +11:27:03 +Slot[185] 0200 011000 1808931000015436 ------------- 00 729536 000050000000 507902546511050037001808931000015436 507902546511 319700 621354 S +11:27:03 Slot [183] | NOT FINANCIAL TRANSACTION +11:27:14 Slot [211] | NOT FINANCIAL TRANSACTION +11:27:26 Slot [169] | NOT FINANCIAL TRANSACTION +11:27:30 +Slot[230] 0200 010000 6213545000860449 ------------- 00 941257 000030000000 507902150955030200256213545000860449 507902150955 021413 668899 S +11:27:36 Slot [189] | NOT FINANCIAL TRANSACTION +11:27:50 Slot [205] | NOT FINANCIAL TRANSACTION +11:27:51 +Slot[149] 0200 301000 6688990040113431 ------------- 00 729784 000000000000 507902732658010067006688990040113431 507902732658 292696 621354 S +11:27:52 Slot [232] | NOT FINANCIAL TRANSACTION +11:28:08 Slot [180] | NOT FINANCIAL TRANSACTION +11:28:18 +Slot[168] 0200 010000 6213548000001774 ------------- 00 941286 000010000000 507902294739030090066213548000001774 507902294739 227873 668899 S +11:28:23 Slot [174] | NOT FINANCIAL TRANSACTION +11:28:33 Slot [222] | NOT FINANCIAL TRANSACTION +11:28:34 +Slot[173] 0200 010000 6213545001025844 ------------- 00 941295 000015000000 507902150957030200256213545001025844 507902150957 777010 668899 S +11:28:49 Slot [229] | NOT FINANCIAL TRANSACTION +11:28:51 +Slot[188] 0200 311000 6213544000437118 ------------- 00 013429 000000000000 507900200957090001006213544000437118 507900200957 438906 220699 S +11:28:52 Slot [223] | NOT FINANCIAL TRANSACTION +11:29:04 Slot [246] | NOT FINANCIAL TRANSACTION +11:29:12 +Slot[215] 0200 010000 6213545000816185 ------------- 00 268502 000010000000 5079042685020262PSLB6213545000816185 507904268502 177306 180893 S +11:29:21 Slot [248] | NOT FINANCIAL TRANSACTION +11:29:32 Slot [243] | NOT FINANCIAL TRANSACTION +11:29:41 +Slot[244] 0200 010000 6213541000119936 ------------- 00 941349 000100000000 507901963497030200196213541000119936 507901963497 468253 668899 S +11:29:42 Slot [227] | NOT FINANCIAL TRANSACTION +11:29:52 Slot [235] | NOT FINANCIAL TRANSACTION +11:29:54 Slot [251] | NOT FINANCIAL TRANSACTION +11:29:55 Slot [250] | NOT FINANCIAL TRANSACTION +11:29:56 +Slot[177] 0200 010000 6213545000816185 ------------- 00 268511 000010000000 5079042685110262PSLB6213545000816185 507904268511 888649 180893 S +11:30:09 Slot [226] | NOT FINANCIAL TRANSACTION +11:30:19 Slot [242] | NOT FINANCIAL TRANSACTION +11:30:35 Slot [255] | NOT FINANCIAL TRANSACTION +11:30:42 Slot [233] | NOT FINANCIAL TRANSACTION +11:30:47 Slot [238] | NOT FINANCIAL TRANSACTION +11:30:56 Slot [200] | NOT FINANCIAL TRANSACTION +11:31:02 Slot [237] | NOT FINANCIAL TRANSACTION +11:31:18 +Slot[216] 0200 011000 1808930200011443 ------------- 00 730631 000030000000 507903848185010100001808930200011443 507903848185 353021 621354 S +11:31:19 Slot [253] | NOT FINANCIAL TRANSACTION +11:31:21 Slot [260] | NOT FINANCIAL TRANSACTION +11:31:23 +Slot[234] 0200 011000 6213545000815559 ------------- 00 268524 000020000000 5079042685240262PSLB6213545000815559 507904268524 386253 180893 S +11:31:25 +Slot[249] 0200 010000 6213545000530117 ------------- 00 268525 000100000000 5079042685250112CPBR6213545000530117 507904268525 500989 180893 S +11:31:34 Slot [259] | NOT FINANCIAL TRANSACTION +11:31:35 +Slot[210] 0200 011000 6688990040154765 ------------- 00 730696 000020000000 507902984434120021006688990040154765 507902984434 007229 621354 S +11:31:45 Slot [263] | NOT FINANCIAL TRANSACTION +11:31:51 +Slot[261] 0420 011000 6213545000810238 ------------- 00 079099 000030000000 507900132968030001006213545000810238 507900132968 -------- 220699 S +11:31:54 +Slot[225] 0200 010000 6213541000119936 ------------- 00 941431 000100000000 507901963499030200196213541000119936 507901963499 939835 668899 S +11:31:56 Slot [199] | NOT FINANCIAL TRANSACTION +11:31:58 Slot [270] | NOT FINANCIAL TRANSACTION +11:32:04 +Slot[269] 0200 010000 6213541000424518 ------------- 00 941443 000100000000 507902071176030060076213541000424518 507902071176 141989 668899 S +11:32:08 +Slot[240] 0200 010000 1808931100012713 ------------- 55 730829 000100000000 507904524007020015001808931100012713 507904524007 278371 621354 S +11:32:17 +Slot[275] 0200 010000 6213541000320542 ------------- 00 268532 000100000000 5079042685320324BKDT6213541000320542 507904268532 704400 180893 S +11:32:29 Slot [228] | NOT FINANCIAL TRANSACTION +11:32:33 +Slot[256] 0200 010000 6213548000187854 ------------- 00 941466 000004000000 507900297352030100066213548000187854 507900297352 930918 668899 S +11:32:39 Slot [197] | NOT FINANCIAL TRANSACTION +11:32:49 +Slot[265] 0200 010000 6213545000530117 ------------- 00 268538 000100000000 5079042685380112CPBR6213545000530117 507904268538 596879 180893 S +11:33:00 Slot [247] | NOT FINANCIAL TRANSACTION +11:33:02 Slot [274] | NOT FINANCIAL TRANSACTION +11:33:04 +Slot[218] 0420 011000 6213545000810238 0000000000000 00 079099 000030000000 507900132968030001006213545000810238 507900132968 781365 220699 S +11:33:13 +Slot[279] 0200 010000 6213541000424518 ------------- 00 941491 000010000000 507902071178030060076213541000424518 507902071178 781816 668899 S +11:33:14 +Slot[231] 0200 010000 1808931500008477 ------------- 00 731099 000030000000 507902776466010071001808931500008477 507902776466 441837 621354 S +11:33:17 +Slot[264] 0200 010000 6213541000320542 ------------- 00 268547 000100000000 5079042685470324BKDT6213541000320542 507904268547 558207 180893 S +11:33:18 +Slot[273] 0200 011000 6213545000159669 ------------- 00 268549 000020000000 5079042685490363CPSH6213545000159669 507904268549 707279 180893 S +11:33:28 +Slot[220] 0200 301000 1808930200050649 ------------- 00 731183 000000000000 507904539620020016001808930200050649 507904539620 645586 621354 S +11:33:33 Slot [254] | NOT FINANCIAL TRANSACTION +11:33:45 Slot [282] | NOT FINANCIAL TRANSACTION +11:34:00 Slot [276] | NOT FINANCIAL TRANSACTION +11:34:02 Slot [266] | NOT FINANCIAL TRANSACTION +11:34:03 +Slot[239] 0200 010000 6213548000377430 ------------- 00 941536 000010000000 507901963501030200196213548000377430 507901963501 278354 668899 S +11:34:04 +Slot[272] 0200 010000 6213541000050644 ------------- 00 268561 000100000000 5079042685610106NAXA6213541000050644 507904268561 312748 180893 S +11:34:06 +Slot[252] 0200 010000 6213541000320542 ------------- 00 268563 000100000000 5079042685630324BKDT6213541000320542 507904268563 359182 180893 S +11:34:17 Slot [241] | NOT FINANCIAL TRANSACTION +11:34:33 Slot [280] | NOT FINANCIAL TRANSACTION +11:34:44 Slot [258] | NOT FINANCIAL TRANSACTION +11:34:52 +Slot[284] 0200 010000 6213541000320542 ------------- 00 268571 000100000000 5079042685710324BKDT6213541000320542 507904268571 454558 180893 S +11:34:55 Slot [219] | NOT FINANCIAL TRANSACTION +11:35:04 Slot [245] | NOT FINANCIAL TRANSACTION +11:35:05 Slot [224] | NOT FINANCIAL TRANSACTION +11:35:11 +Slot[287] 0200 011000 6213544001737623 ------------- 51 254852 000030000000 507900094420010009006213544001737623 507900094420 745123 220699 S +11:35:16 Slot [277] | NOT FINANCIAL TRANSACTION +11:35:17 +Slot[290] 0200 011000 6688990040013987 ------------- 00 204770 000020000000 507911204770015290236688990040013987 507911204770 570702 198901 S +11:35:28 Slot [267] | NOT FINANCIAL TRANSACTION +11:35:39 Slot [271] | NOT FINANCIAL TRANSACTION +11:35:46 +Slot[294] 0200 011000 6688990040069724 ------------- 00 731859 000010000000 507905335133050047006688990040069724 507905335133 485794 621354 S +11:35:48 +Slot[236] 0200 010000 6213541000320542 ------------- 00 268579 000100000000 5079042685790324BKDT6213541000320542 507904268579 670064 180893 S +11:35:54 +Slot[217] 0200 011000 6213545000819734 ------------- 00 251173 000030000000 507900336171010019006213545000819734 507900336171 807166 220699 S +11:36:00 Slot [293] | NOT FINANCIAL TRANSACTION +11:36:06 Slot [303] | NOT FINANCIAL TRANSACTION +11:36:08 +Slot[278] 0200 010000 6213541000119936 ------------- 00 941653 000080000000 507901963503030200196213541000119936 507901963503 086171 668899 S +11:36:15 Slot [298] | NOT FINANCIAL TRANSACTION +11:36:15 Slot [257] | NOT FINANCIAL TRANSACTION +11:36:21 Slot [299] | NOT FINANCIAL TRANSACTION +11:36:26 Slot [300] | NOT FINANCIAL TRANSACTION +11:36:37 Slot [295] | NOT FINANCIAL TRANSACTION +11:36:44 +Slot[281] 0200 010000 6213541000320542 ------------- 00 268588 000100000000 5079042685880324BKDT6213541000320542 507904268588 547308 180893 S +11:36:52 Slot [296] | NOT FINANCIAL TRANSACTION +11:36:55 +Slot[308] 0200 011000 6213544001419057 ------------- 00 204795 000010000000 507911204795015290316213544001419057 507911204795 508074 198901 S +11:37:03 Slot [286] | NOT FINANCIAL TRANSACTION +11:37:08 Slot [316] | NOT FINANCIAL TRANSACTION +11:37:18 Slot [283] | NOT FINANCIAL TRANSACTION +11:37:23 +Slot[311] 0200 010000 6213548000127223 ------------- 00 268594 000010000000 5079042685940401XSBR6213548000127223 507904268594 698557 180893 S +11:37:35 +Slot[312] 0200 010000 6213541000320542 ------------- 00 268598 000100000000 5079042685980324BKDT6213541000320542 507904268598 915440 180893 S +11:37:43 +Slot[306] 0200 011000 6213548000452035 ------------- 00 204806 000050000000 507911204806015290316213548000452035 507911204806 298159 198901 S +11:37:44 Slot [307] | NOT FINANCIAL TRANSACTION +11:37:57 +Slot[310] 0200 010000 6213541000119936 ------------- 00 941769 000010000000 507901963505030200196213541000119936 507901963505 394430 668899 S +11:37:59 +Slot[317] 0200 010000 1808930300000627 ------------- 00 732432 000100000000 507903505402090007001808930300000627 507903505402 968818 621354 S +11:38:01 Slot [288] | NOT FINANCIAL TRANSACTION +11:38:10 Slot [318] | NOT FINANCIAL TRANSACTION +11:38:12 Slot [322] | NOT FINANCIAL TRANSACTION +11:38:18 +Slot[315] 0200 010000 6213544001621959 ------------- 00 941793 000030000000 507900270927030100046213544001621959 507900270927 458872 668899 S +11:38:20 +Slot[304] 0200 010000 6213541000320542 ------------- 00 268603 000100000000 5079042686030324BKDT6213541000320542 507904268603 680698 180893 S +11:38:21 +Slot[325] 0200 010000 1808930200050649 ------------- 55 732576 000030000000 507904539630020016001808930200050649 507904539630 224944 621354 S +11:38:33 +Slot[285] 0200 301000 6213541000698939 ------------- 00 268607 032004373326 5079042686070106NAXA6213541000698939 507904268607 943891 180893 S +11:38:40 +Slot[289] 0200 010000 6213545001004716 ------------- 00 268610 000100000000 5079042686100363CPSH6213545001004716 507904268610 681094 180893 S +11:38:46 +Slot[297] 0200 010000 1808930200050649 ------------- 00 732689 000030000000 507904539632020016001808930200050649 507904539632 211914 621354 S +11:38:49 Slot [291] | NOT FINANCIAL TRANSACTION +11:38:59 +Slot[326] 0200 311000 6213545000703268 ------------- 00 107215 000000000000 507900327827010018006213545000703268 507900327827 316560 220699 S +11:39:00 Slot [301] | NOT FINANCIAL TRANSACTION +11:39:06 +Slot[327] 0200 010000 6213541000320542 ------------- 00 268613 000100000000 5079042686130324BKDT6213541000320542 507904268613 704136 180893 S +11:39:12 Slot [305] | NOT FINANCIAL TRANSACTION +11:39:15 Slot [314] | NOT FINANCIAL TRANSACTION +11:39:15 +Slot[302] 0200 010000 6213541000489289 ------------- 00 941842 000050000000 507901691098030020036213541000489289 507901691098 405808 668899 S +11:39:20 +Slot[292] 0200 010000 6213548000127223 ------------- 00 268615 000010000000 5079042686150401XSBR6213548000127223 507904268615 664247 180893 S +11:39:25 +Slot[333] 0200 010000 6213544001621959 ------------- 00 941854 000070000000 507900270929030100046213544001621959 507900270929 216256 668899 S +11:39:29 +Slot[331] 0200 010000 1808930300000627 ------------- 00 732879 000100000000 507903505404090007001808930300000627 507903505404 499142 621354 S +11:39:31 +Slot[262] 0200 010000 6213544000745833 ------------- 00 268619 000100000000 5079042686190301LPBX6213544000745833 507904268619 554012 180893 S +11:39:43 Slot [321] | NOT FINANCIAL TRANSACTION +11:39:52 +Slot[334] 0200 010000 6213541000320542 ------------- 00 268624 000100000000 5079042686240324BKDT6213541000320542 507904268624 111326 180893 S +11:39:54 Slot [336] | NOT FINANCIAL TRANSACTION +11:40:00 +Slot[335] 0200 311000 6213545000703268 ------------- 00 107219 000000000000 507900327830010018006213545000703268 507900327830 832710 220699 S +11:40:07 +Slot[320] 0200 301000 1808930200050649 ------------- 00 733056 000000000000 507904539633020016001808930200050649 507904539633 859307 621354 S +11:40:09 +Slot[342] 0200 011000 1808930100002955 ------------- 00 733065 000100000000 507902782983010072001808930100002955 507902782983 146519 621354 S +11:40:14 Slot [345] | NOT FINANCIAL TRANSACTION +11:40:14 Slot [341] | NOT FINANCIAL TRANSACTION +11:40:21 +Slot[344] 0200 301000 6213545000151369 ------------- 00 268629 032004392226 5079042686290221XKKM6213545000151369 507904268629 247622 180893 S +11:40:23 +Slot[268] 0200 010000 6213544001621959 ------------- 00 941922 000100000000 507900270931030100046213544001621959 507900270931 622893 668899 S +11:40:25 +Slot[323] 0200 011000 6213545000703268 ------------- 00 107220 000100000000 507900327831010018006213545000703268 507900327831 256464 220699 S +11:40:31 +Slot[339] 0200 010000 6213541000320542 ------------- 00 268632 000100000000 5079042686320324BKDT6213541000320542 507904268632 989513 180893 S +11:40:45 +Slot[348] 0200 010000 1808930300000627 ------------- 00 733224 000100000000 507903505406090007001808930300000627 507903505406 228528 621354 S +11:40:52 Slot [329] | NOT FINANCIAL TRANSACTION +11:40:58 +Slot[352] 0200 010000 6213545000151369 ------------- 61 268637 000200000000 5079042686370221XKKM6213545000151369 507904268637 020899 180893 S +11:41:00 +Slot[309] 0200 010000 6213548000460095 ------------- 00 941950 000010000000 507901963509030200196213548000460095 507901963509 669316 668899 S +11:41:14 +Slot[337] 0200 010000 6213541000320542 ------------- 00 268641 000100000000 5079042686410324BKDT6213541000320542 507904268641 551019 180893 S +11:41:16 Slot [328] | NOT FINANCIAL TRANSACTION +11:41:21 Slot [346] | NOT FINANCIAL TRANSACTION +11:41:22 +Slot[347] 0200 011000 6213541000507940 ------------- 00 204859 000020000000 507911204859015290316213541000507940 507911204859 802861 198901 S +11:41:23 +Slot[350] 0200 010000 6213545000151369 ------------- 00 268643 000100000000 5079042686430221XKKM6213545000151369 507904268643 798894 180893 S +11:41:25 +Slot[319] 0200 010000 6213544001621959 ------------- 00 941977 000100000000 507900270933030100046213544001621959 507900270933 316246 668899 S +11:41:30 +Slot[357] 0200 010000 6213545000077457 ------------- 00 268646 000100000000 5079042686460112CPBR6213545000077457 507904268646 939433 180893 S +11:41:38 Slot [330] | NOT FINANCIAL TRANSACTION +11:41:50 +Slot[332] 0200 010000 6688990108296201 ------------- 14 268652 000010000000 5079042686520466PSLB6688990108296201 507904268652 133718 180893 S +11:41:56 +Slot[356] 0200 010000 6213541000320542 ------------- 00 268654 000100000000 5079042686540324BKDT6213541000320542 507904268654 080811 180893 S +11:41:58 +Slot[365] 0200 010000 1808930300000627 ------------- 00 733551 000100000000 507903505408090007001808930300000627 507903505408 099887 621354 S +11:42:05 Slot [366] | NOT FINANCIAL TRANSACTION +11:42:09 +Slot[313] 0420 010000 6213544001621959 ------------- 00 941977 000100000000 507900270933030100046213544001621959 507900270933 -------- 668899 S +11:42:13 +Slot[371] 0200 010000 6213545000151369 ------------- 00 268659 000100000000 5079042686590221XKKM6213545000151369 507904268659 230669 180893 S +11:42:15 +Slot[343] 0200 010000 6213548000460095 ------------- 00 942022 000050000000 507901963511030200196213548000460095 507901963511 250126 668899 S +11:42:16 +Slot[378] 0200 010000 6213545000077457 ------------- 00 268662 000100000000 5079042686620112CPBR6213545000077457 507904268662 696813 180893 S +11:42:18 Slot [340] | NOT FINANCIAL TRANSACTION +11:42:27 Slot [373] | NOT FINANCIAL TRANSACTION +11:42:37 +Slot[324] 0200 010000 6213541000320542 ------------- 00 268666 000100000000 5079042686660324BKDT6213541000320542 507904268666 746876 180893 S +11:42:44 +Slot[382] 0200 011000 1808930600019301 ------------- 00 733749 000100000000 507904334518030032001808930600019301 507904334518 470762 621354 S +11:42:49 +Slot[355] 0200 010000 6688990108296201 ------------- 14 268669 000010000000 5079042686690466PSLB6688990108296201 507904268669 784286 180893 S +11:42:53 +Slot[353] 0200 010000 6213545000151369 ------------- 00 268672 000100000000 5079042686720221XKKM6213545000151369 507904268672 062963 180893 S +11:43:05 +Slot[363] 0200 010000 6213545000679245 ------------- 00 168918 000030000000 507900026334010002006213545000679245 507900026334 106615 220699 S +11:43:07 +Slot[358] 0200 010000 1808930300000627 ------------- 00 733839 000100000000 507903505410090007001808930300000627 507903505410 595028 621354 S +11:43:10 Slot [370] | NOT FINANCIAL TRANSACTION +11:43:20 Slot [360] | NOT FINANCIAL TRANSACTION +11:43:21 Slot [369] | NOT FINANCIAL TRANSACTION +11:43:21 +Slot[379] 0420 010000 6213544001621959 0000000000000 00 941977 000100000000 507900270933030100046213544001621959 507900270933 623064 668899 S +11:43:24 +Slot[338] 0200 011000 6213545000077457 ------------- 51 268676 000015000000 5079042686760112CPBR6213545000077457 507904268676 972564 180893 S +11:43:25 +Slot[354] 0200 010000 6213541000320542 ------------- 00 268677 000100000000 5079042686770324BKDT6213541000320542 507904268677 503349 180893 S +11:43:35 +Slot[396] 0200 010000 6213544002134820 ------------- 00 942092 000010000000 507902093296030200216213544002134820 507902093296 104253 668899 S +11:43:37 +Slot[351] 0200 010000 6213545000151369 ------------- 00 268679 000100000000 5079042686790221XKKM6213545000151369 507904268679 986754 180893 S +11:43:55 +Slot[389] 0200 011000 1808930600019301 ------------- 00 734074 000100000000 507904334520030032001808930600019301 507904334520 511059 621354 S +11:43:57 +Slot[390] 0200 302000 6213544002235056 ------------- 00 268684 032004425926 5079042686840344SVKV6213544002235056 507904268684 998184 180893 S +11:43:59 +Slot[361] 0200 010000 6213544001621959 ------------- 00 942120 000100000000 507900270935030100046213544001621959 507900270935 542320 668899 S +11:44:05 Slot [359] | NOT FINANCIAL TRANSACTION +11:44:10 +Slot[376] 0200 011000 6213545000077457 ------------- 51 268689 000015000000 5079042686890112CPBR6213545000077457 507904268689 533479 180893 S +11:44:12 +Slot[374] 0200 010000 6213541000320542 ------------- 00 268690 000100000000 5079042686900324BKDT6213541000320542 507904268690 795226 180893 S +11:44:16 +Slot[410] 0200 010000 6213544001243937 ------------- 51 942135 000010000000 507901856371033110016213544001243937 507901856371 410451 668899 S +11:44:21 +Slot[395] 0200 010000 1808930300000627 ------------- 00 734181 000100000000 507903505412090007001808930300000627 507903505412 104528 621354 S +11:44:22 Slot [383] | NOT FINANCIAL TRANSACTION +11:44:22 Slot [393] | NOT FINANCIAL TRANSACTION +11:44:27 +Slot[400] 0200 011000 6213545000648323 ------------- 00 003073 000100000000 507900186735080001006213545000648323 507900186735 447710 220699 S +11:44:29 +Slot[413] 0200 010000 6213548000460095 ------------- 00 942144 000010000000 507901963513030200196213548000460095 507901963513 256973 668899 S +11:44:37 +Slot[397] 0200 011000 6213545000151369 ------------- 00 268694 000020000000 5079042686940221XKKM6213545000151369 507904268694 971612 180893 S +11:44:47 +Slot[349] 0200 010000 6213544001243937 ------------- 00 942169 000005000000 507901856372033110016213544001243937 507901856372 944034 668899 S +11:44:47 Slot [394] | NOT FINANCIAL TRANSACTION +11:44:50 +Slot[414] 0200 010000 6213541000074388 ------------- 55 268696 000100000000 5079042686960112CPBR6213541000074388 507904268696 748153 180893 S +11:44:51 +Slot[399] 0200 010000 6213544001621959 ------------- 00 942172 000100000000 507900270937030100046213544001621959 507900270937 707663 668899 S +11:44:54 Slot [387] | NOT FINANCIAL TRANSACTION +11:44:59 +Slot[372] 0200 012000 6213544002235056 ------------- 51 268700 000002000000 5079042687000344SVKV6213544002235056 507904268700 345529 180893 S +11:45:01 +Slot[418] 0200 011000 1808930600019301 ------------- 55 734400 000080000000 507904334522030032001808930600019301 507904334522 507601 621354 S +11:45:06 +Slot[368] 0200 012000 2206990000053801 ------------- 00 734417 000010000000 507903324944130012002206990000053801 507903324944 998644 621354 S +11:45:08 +Slot[419] 0200 010000 6213541000320542 ------------- 00 268703 000100000000 5079042687030324BKDT6213541000320542 507904268703 772675 180893 S +11:45:10 +Slot[406] 0200 012000 2206990000051458 ------------- 00 734441 000030000000 507902826883010076002206990000051458 507902826883 697901 621354 S +11:45:24 Slot [411] | NOT FINANCIAL TRANSACTION +11:45:25 +Slot[407] 0200 011000 1808930600019301 ------------- 00 734502 000080000000 507904334524030032001808930600019301 507904334524 604545 621354 S +11:45:28 Slot [380] | NOT FINANCIAL TRANSACTION +11:45:39 Slot [384] | NOT FINANCIAL TRANSACTION +11:45:44 +Slot[416] 0200 011000 6213544002235056 ------------- 51 268707 000002000000 5079042687070344SVKV6213544002235056 507904268707 444639 180893 S +11:45:47 +Slot[420] 0200 011000 6213545000648323 ------------- 00 003076 000070000000 507900186737080001006213545000648323 507900186737 640088 220699 S +11:45:49 +Slot[381] 0200 010000 6213541000074388 ------------- 00 268710 000100000000 5079042687100112CPBR6213541000074388 507904268710 269811 180893 S +11:45:51 +Slot[415] 0200 010000 6213541000320542 ------------- 00 268713 000100000000 5079042687130324BKDT6213541000320542 507904268713 471150 180893 S +11:45:52 +Slot[401] 0200 010000 6213544001683884 ------------- 00 942234 000010000000 507901963516030200196213544001683884 507901963516 508653 668899 S +11:45:57 +Slot[398] 0200 010000 6213548000024107 ------------- 00 942238 000002000000 507901856374033110016213548000024107 507901856374 913740 668899 S +11:46:06 +Slot[425] 0200 010000 6213545000845374 ------------- 00 268716 000050000000 5079042687160221XKKM6213545000845374 507904268716 179885 180893 S +11:46:08 +Slot[433] 0200 011000 6213544001493342 ------------- 00 268719 000004000000 5079042687190102SAPA6213544001493342 507904268719 609494 180893 S +11:46:21 Slot [364] | NOT FINANCIAL TRANSACTION +11:46:21 Slot [388] | NOT FINANCIAL TRANSACTION +11:46:26 Slot [367] | NOT FINANCIAL TRANSACTION +11:46:35 +Slot[430] 0200 010000 6213541000074388 ------------- 00 268725 000100000000 5079042687250112CPBR6213541000074388 507904268725 271542 180893 S +11:46:37 +Slot[441] 0200 010000 6213541000320542 ------------- 00 268724 000100000000 5079042687240324BKDT6213541000320542 507904268724 158509 180893 S +11:46:48 Slot [409] | NOT FINANCIAL TRANSACTION +11:47:01 Slot [437] | NOT FINANCIAL TRANSACTION +11:47:04 +Slot[402] 0200 012000 1808930200051522 ------------- 42 734950 000020000000 507903612256160014001808930200051522 507903612256 230055 621354 S +11:47:10 +Slot[408] 0200 010000 6213543000229624 ------------- 61 268732 000200000000 5079042687320368KMMX6213543000229624 507904268732 063781 180893 S +11:47:14 +Slot[403] 0200 011000 1808931800016402 ------------- 00 734982 000005000000 507904652984170010001808931800016402 507904652984 255501 621354 S +11:47:19 +Slot[362] 0200 302000 6213544001993283 ------------- 00 942300 000000000000 507902678684030200356213544001993283 507902678684 283810 668899 S +11:47:24 Slot [375] | NOT FINANCIAL TRANSACTION +11:47:24 Slot [385] | NOT FINANCIAL TRANSACTION +11:47:28 Slot [412] | NOT FINANCIAL TRANSACTION +11:47:30 +Slot[447] 0200 010000 6213541000711898 ------------- 00 251182 000010000000 507900336177010019006213541000711898 507900336177 884314 220699 S +11:47:35 Slot [392] | NOT FINANCIAL TRANSACTION +11:47:42 +Slot[450] 0200 010000 6213541000320542 ------------- 00 268736 000100000000 5079042687360324BKDT6213541000320542 507904268736 704029 180893 S +11:47:52 Slot [417] | NOT FINANCIAL TRANSACTION +11:48:00 +Slot[391] 0200 012000 2206990000053801 ------------- 00 735200 000010000000 507903324956130012002206990000053801 507903324956 948750 621354 S +11:48:01 +Slot[443] 0200 010000 6213543000229624 ------------- 61 268741 000150000000 5079042687410368KMMX6213543000229624 507904268741 371022 180893 S +11:48:07 +Slot[377] 0200 300000 6213545000285696 ------------- 00 942330 000000000000 507900823521030150016213545000285696 507900823521 135153 668899 S +11:48:12 +Slot[405] 0200 301000 1808930200051522 ------------- 00 204953 000000000000 507911204953015290311808930200051522 507911204953 406207 198901 S +11:48:14 Slot [386] | NOT FINANCIAL TRANSACTION +11:48:22 +Slot[446] 0200 010000 6213541000320542 ------------- 00 268744 000100000000 5079042687440324BKDT6213541000320542 507904268744 171283 180893 S +11:48:30 Slot [429] | NOT FINANCIAL TRANSACTION +11:48:30 Slot [456] | NOT FINANCIAL TRANSACTION +11:48:41 Slot [404] | NOT FINANCIAL TRANSACTION +11:48:51 Slot [424] | NOT FINANCIAL TRANSACTION +11:48:56 +Slot[445] 0200 010000 6213543000229624 ------------- 00 268752 000050000000 5079042687520368KMMX6213543000229624 507904268752 833479 180893 S +11:49:15 +Slot[435] 0200 011000 1808930200051522 ------------- 00 204972 000020000000 507911204972015290311808930200051522 507911204972 859648 198901 S +11:49:18 Slot [438] | NOT FINANCIAL TRANSACTION +11:49:31 +Slot[442] 0200 301000 6688990040163279 ------------- 14 268757 032004483426 5079042687570531VTHH6688990040163279 507904268757 845393 180893 S +11:49:32 Slot [434] | NOT FINANCIAL TRANSACTION +11:49:40 Slot [427] | NOT FINANCIAL TRANSACTION +11:49:54 Slot [451] | NOT FINANCIAL TRANSACTION +11:49:54 +Slot[428] 0200 010000 6213543000229624 ------------- 00 268760 000050000000 5079042687600368KMMX6213543000229624 507904268760 582355 180893 S +11:50:06 Slot [462] | NOT FINANCIAL TRANSACTION +11:50:12 +Slot[431] 0200 010000 6688990040149112 ------------- 14 268764 000010000000 5079042687640321LNTV6688990040149112 507904268764 275386 180893 S +11:50:14 +Slot[457] 0200 011000 6688990040021238 ------------- 00 735790 000025000000 507905291364200014006688990040021238 507905291364 956718 621354 S +11:50:23 Slot [421] | NOT FINANCIAL TRANSACTION +11:50:24 +Slot[426] 0200 010000 6213544001622841 ------------- 00 942446 000010000000 507901541673030200166213544001622841 507901541673 593978 668899 S +11:50:34 Slot [422] | NOT FINANCIAL TRANSACTION +11:50:39 Slot [465] | NOT FINANCIAL TRANSACTION +11:50:42 +Slot[444] 0200 010000 6213543000229624 ------------- 00 268767 000050000000 5079042687670368KMMX6213543000229624 507904268767 684383 180893 S +11:50:48 +Slot[436] 0200 010000 6213544002188289 ------------- 51 942466 000020000000 507901963526030200196213544002188289 507901963526 132900 668899 S +11:50:56 Slot [423] | NOT FINANCIAL TRANSACTION +11:51:11 Slot [439] | NOT FINANCIAL TRANSACTION +11:51:18 +Slot[458] 0200 011000 6213544001657367 ------------- 51 205008 000030000000 507911205008015290016213544001657367 507911205008 885352 198901 S +11:51:21 Slot [459] | NOT FINANCIAL TRANSACTION +11:51:22 Slot [466] | NOT FINANCIAL TRANSACTION +11:51:27 +Slot[452] 0200 010000 6213543000229624 ------------- 00 268773 000050000000 5079042687730368KMMX6213543000229624 507904268773 297861 180893 S +11:51:35 +Slot[468] 0200 010000 6213544002044862 ------------- 00 942515 000100000000 507901963528030200196213544002044862 507901963528 026158 668899 S +11:51:36 Slot [475] | NOT FINANCIAL TRANSACTION +11:51:38 Slot [455] | NOT FINANCIAL TRANSACTION +11:51:47 +Slot[449] 0200 011000 6688990601994302 ------------- 00 736163 000100000000 507905291366200014006688990601994302 507905291366 051150 621354 S +11:51:49 Slot [440] | NOT FINANCIAL TRANSACTION +11:51:58 +Slot[460] 0200 301000 6213546000008930 ------------- 00 268777 032004505926 5079042687770482XKMO6213546000008930 507904268777 986648 180893 S +11:52:11 +Slot[482] 0200 010000 6213545000654396 ------------- 51 268780 000100000000 5079042687800441VT526213545000654396 507904268780 130830 180893 S +11:52:21 Slot [432] | NOT FINANCIAL TRANSACTION +11:52:26 +Slot[495] 0200 011000 6213548000038065 ------------- 00 205018 000050000000 507911205018015290316213548000038065 507911205018 736569 198901 S +11:52:31 Slot [453] | NOT FINANCIAL TRANSACTION +11:52:37 +Slot[488] 0200 010000 6688990040149112 ------------- 14 268783 000010000000 5079042687830321LNTV6688990040149112 507904268783 239221 180893 S +11:52:38 Slot [484] | NOT FINANCIAL TRANSACTION +11:52:47 Slot [470] | NOT FINANCIAL TRANSACTION +11:52:55 +Slot[490] 0200 011000 6688990601994302 ------------- 00 736435 000020000000 507905291368200014006688990601994302 507905291368 541443 621354 S +11:52:59 Slot [463] | NOT FINANCIAL TRANSACTION +11:53:04 +Slot[480] 0200 011000 6213544001657367 ------------- 51 205026 000030000000 507911205026015290016213544001657367 507911205026 367648 198901 S +11:53:05 +Slot[448] 0200 011000 6688990040128512 ------------- 51 736503 000030000000 507902682301140007006688990040128512 507902682301 874583 621354 S +11:53:14 Slot [471] | NOT FINANCIAL TRANSACTION +11:53:25 Slot [479] | NOT FINANCIAL TRANSACTION +11:53:31 +Slot[0] 0200 010000 6213545000754220 ------------- 00 942615 000100000000 507901422776033140016213545000754220 507901422776 145402 668899 S +11:53:40 Slot [2] | NOT FINANCIAL TRANSACTION +11:53:41 Slot [493] | NOT FINANCIAL TRANSACTION +11:53:42 +Slot[1] 0200 010000 6213546000008930 ------------- 00 268789 000010000000 5079042687890482XKMO6213546000008930 507904268789 558700 180893 S +11:53:48 +Slot[498] 0200 302000 6213545000654396 ------------- 00 268791 032004525126 5079042687910441VT526213545000654396 507904268791 039826 180893 S +11:53:53 +Slot[473] 0200 301000 6213544002216395 ------------- 00 942636 000000000000 507902435627030200316213544002216395 507902435627 877304 668899 S +11:53:57 Slot [4] | NOT FINANCIAL TRANSACTION +11:54:08 Slot [489] | NOT FINANCIAL TRANSACTION +11:54:19 Slot [476] | NOT FINANCIAL TRANSACTION +11:54:23 +Slot[483] 0200 010000 6213541000674757 ------------- 55 942677 000100000000 507901373666032090016213541000674757 507901373666 100850 668899 S +11:54:24 +Slot[486] 0200 010000 6213544002044862 ------------- 00 942678 000002000000 507901963530030200196213544002044862 507901963530 671327 668899 S +11:54:29 +Slot[474] 0200 010000 6688990040149112 ------------- 14 268797 000010000000 5079042687970321LNTV6688990040149112 507904268797 495848 180893 S +11:54:31 +Slot[477] 0200 011000 6688990040128512 ------------- 00 736861 000020000000 507902682303140007006688990040128512 507902682303 610275 621354 S +11:54:32 +Slot[472] 0200 011000 1808930600001135 ------------- 00 010416 000030000000 507900220650050002001808930600001135 507900220650 598741 220699 S +11:54:40 Slot [6] | NOT FINANCIAL TRANSACTION +11:54:42 Slot [492] | NOT FINANCIAL TRANSACTION +11:54:48 +Slot[485] 0200 010000 6213545000754220 ------------- 00 942701 000100000000 507901422778033140016213545000754220 507901422778 720301 668899 S +11:54:51 Slot [14] | NOT FINANCIAL TRANSACTION +11:54:54 Slot [454] | NOT FINANCIAL TRANSACTION +11:55:01 Slot [16] | NOT FINANCIAL TRANSACTION +11:55:05 +Slot[13] 0200 311000 6213544000437118 ------------- 00 013432 000000000000 507900200959090001006213544000437118 507900200959 303146 220699 S +11:55:06 +Slot[12] 0200 010000 6213541000674757 ------------- 55 942718 000100000000 507901373668032090016213541000674757 507901373668 815252 668899 S +11:55:13 +Slot[469] 0200 010000 6213545000654396 ------------- 00 268803 000010000000 5079042688030441VT526213545000654396 507904268803 227779 180893 S +11:55:17 +Slot[22] 0200 010000 6213544002216395 ------------- 00 942726 000010000000 507902435628030200316213544002216395 507902435628 836460 668899 S +11:55:23 Slot [494] | NOT FINANCIAL TRANSACTION +11:55:42 +Slot[491] 0200 011000 1808930600001135 ------------- 51 010419 000010000000 507900220652050002001808930600001135 507900220652 822835 220699 S +11:55:44 Slot [499] | NOT FINANCIAL TRANSACTION +11:55:48 +Slot[17] 0200 010000 6688990040137109 ------------- 14 268808 000010000000 5079042688080321LNTV6688990040137109 507904268808 246117 180893 S +11:55:56 Slot [10] | NOT FINANCIAL TRANSACTION +11:55:57 +Slot[31] 0200 010000 6213545000754220 ------------- 00 942763 000100000000 507901422780033140016213545000754220 507901422780 761300 668899 S +11:56:07 Slot [481] | NOT FINANCIAL TRANSACTION +11:56:18 +Slot[29] 0200 010000 6213545000437743 ------------- 00 268810 000100000000 5079042688100441VT526213545000437743 507904268810 894156 180893 S +11:56:21 Slot [23] | NOT FINANCIAL TRANSACTION +11:56:22 +Slot[3] 0200 011000 6688990107058701 ------------- 00 737340 000010000000 507902682305140007006688990107058701 507902682305 981626 621354 S +11:56:28 Slot [7] | NOT FINANCIAL TRANSACTION +11:56:46 Slot [11] | NOT FINANCIAL TRANSACTION +11:56:47 +Slot[21] 0200 301000 6213544002216395 ------------- 00 942802 000000000000 507902435630030200316213544002216395 507902435630 470436 668899 S +11:56:53 +Slot[33] 0200 011000 1808930600001135 ------------- 00 010422 000009000000 507900220654050002001808930600001135 507900220654 790264 220699 S +11:56:54 +Slot[35] 0200 010000 6213545000381701 ------------- 00 942809 000100000000 507901963532030200196213545000381701 507901963532 606111 668899 S +11:56:55 Slot [496] | NOT FINANCIAL TRANSACTION +11:57:05 +Slot[461] 0200 010000 6213545000754220 ------------- 00 942817 000100000000 507901422782033140016213545000754220 507901422782 967753 668899 S +11:57:07 Slot [37] | NOT FINANCIAL TRANSACTION +11:57:14 +Slot[30] 0200 302000 6213544002019989 ------------- 00 942823 000000000000 507901373672032090016213544002019989 507901373672 091889 668899 S +11:57:22 Slot [9] | NOT FINANCIAL TRANSACTION +11:57:27 +Slot[36] 0200 011000 6213545000437743 ------------- 51 268815 000070000000 5079042688150441VT526213545000437743 507904268815 653208 180893 S +11:57:38 Slot [45] | NOT FINANCIAL TRANSACTION +11:57:47 Slot [497] | NOT FINANCIAL TRANSACTION +11:57:48 Slot [18] | NOT FINANCIAL TRANSACTION +11:57:49 Slot [40] | NOT FINANCIAL TRANSACTION +11:57:56 +Slot[467] 0200 301000 6213545000437743 ------------- 00 268817 032004565726 5079042688170441VT526213545000437743 507904268817 695300 180893 S +11:58:00 +Slot[28] 0200 301000 6688990107058701 ------------- 00 737788 000000000000 507902682306140007006688990107058701 507902682306 700303 621354 S +11:58:06 Slot [8] | NOT FINANCIAL TRANSACTION +11:58:09 +Slot[43] 0200 011000 6213544000749009 ------------- 00 268821 000005000000 5079042688210114XKBR6213544000749009 507904268821 978965 180893 S +11:58:22 Slot [52] | NOT FINANCIAL TRANSACTION +11:58:25 +Slot[50] 0200 010000 6213545000754220 ------------- 00 942869 000100000000 507901422784033140016213545000754220 507901422784 053256 668899 S +11:58:38 +Slot[25] 0200 011000 6213545000437743 ------------- 51 268826 000070000000 5079042688260441VT526213545000437743 507904268826 304958 180893 S +11:58:49 Slot [61] | NOT FINANCIAL TRANSACTION +11:58:50 Slot [44] | NOT FINANCIAL TRANSACTION +11:59:05 Slot [15] | NOT FINANCIAL TRANSACTION +11:59:16 +Slot[55] 0200 010000 6213544001940524 ------------- 00 942898 000010000000 507901963534030200196213544001940524 507901963534 663499 668899 S +11:59:18 +Slot[478] 0200 010000 6213545000437743 ------------- 00 268830 000050000000 5079042688300441VT526213545000437743 507904268830 837846 180893 S +11:59:29 +Slot[60] 0200 011000 6213545000746184 ------------- 00 268832 000010000000 5079042688320401XSBR6213545000746184 507904268832 770512 180893 S +11:59:44 +Slot[68] 0200 010000 6213545000859839 ------------- 61 268835 000200000000 5079042688350465UDNM6213545000859839 507904268835 022207 180893 S +11:59:52 Slot [63] | NOT FINANCIAL TRANSACTION +11:59:54 Slot [73] | NOT FINANCIAL TRANSACTION +11:59:54 Slot [38] | NOT FINANCIAL TRANSACTION +11:59:56 +Slot[41] 0200 010000 6688990103635809 ------------- 00 738237 000030000000 507903499470060022006688990103635809 507903499470 519367 621354 S +12:00:05 +Slot[464] 0200 010000 6213545000437743 ------------- 00 268840 000010000000 5079042688400441VT526213545000437743 507904268840 560655 180893 S +12:00:06 +Slot[32] 0200 010000 6213541000134521 ------------- 00 268841 000050000000 5079042688410108THNG6213541000134521 507904268841 562388 180893 S +12:00:16 Slot [487] | NOT FINANCIAL TRANSACTION +12:00:28 +Slot[27] 0200 010000 6213548000213544 ------------- 00 942952 000010000000 507901963536030200196213548000213544 507901963536 074826 668899 S +12:00:32 Slot [26] | NOT FINANCIAL TRANSACTION +12:00:41 +Slot[20] 0200 012000 6213548000216919 ------------- 51 268846 000010000000 5079042688460523XYNG6213548000216919 507904268846 982400 180893 S +12:00:52 +Slot[48] 0200 010000 6213545000437743 ------------- 51 268848 000010000000 5079042688480441VT526213545000437743 507904268848 745558 180893 S +12:00:54 Slot [46] | NOT FINANCIAL TRANSACTION +12:01:04 Slot [58] | NOT FINANCIAL TRANSACTION +12:01:08 +Slot[19] 0200 301000 6213544001043030 ------------- 00 942980 000000000000 507900123283030200036213544001043030 507900123283 321518 668899 S +12:01:14 Slot [69] | NOT FINANCIAL TRANSACTION +12:01:21 Slot [47] | NOT FINANCIAL TRANSACTION +12:01:27 +Slot[78] 0200 010000 6213545000859839 ------------- 00 268852 000100000000 5079052688520465UDNM6213545000859839 507905268852 445903 180893 S +12:01:29 +Slot[81] 0200 012000 6213548000216919 ------------- 00 268855 000005000000 5079052688550523XYNG6213548000216919 507905268855 763875 180893 S +12:01:42 Slot [54] | NOT FINANCIAL TRANSACTION +12:01:53 Slot [24] | NOT FINANCIAL TRANSACTION +12:01:56 Slot [42] | NOT FINANCIAL TRANSACTION +12:01:57 +Slot[57] 0200 010000 6213544000992708 ------------- 00 943012 000010000000 507901262001032060016213544000992708 507901262001 237031 668899 S +12:02:04 Slot [34] | NOT FINANCIAL TRANSACTION +12:02:16 +Slot[49] 0200 012000 6213548000216919 ------------- 51 268861 000005000000 5079052688610523XYNG6213548000216919 507905268861 640880 180893 S +12:02:24 Slot [86] | NOT FINANCIAL TRANSACTION +12:02:40 Slot [89] | NOT FINANCIAL TRANSACTION +12:02:50 Slot [88] | NOT FINANCIAL TRANSACTION +12:02:56 +Slot[59] 0200 301000 6213545000859839 ------------- 00 268862 032005015826 5079052688620465UDNM6213545000859839 507905268862 972115 180893 S +12:02:58 Slot [79] | NOT FINANCIAL TRANSACTION +12:03:07 Slot [5] | NOT FINANCIAL TRANSACTION +12:03:19 Slot [84] | NOT FINANCIAL TRANSACTION +12:03:25 +Slot[67] 0200 010000 6213544001256111 ------------- 00 943090 000030000000 507901506358036140016213544001256111 507901506358 719435 668899 S +12:03:27 +Slot[62] 0200 011000 6213545000958524 ------------- 00 268866 000030000000 5079052688660112CPBR6213545000958524 507905268866 533004 180893 S +12:03:28 +Slot[39] 0200 010000 6213544001904520 ------------- 00 943097 000020000000 507901972489030120036213544001904520 507901972489 508802 668899 S +12:03:40 +Slot[51] 0200 301000 6213541000679236 ------------- 00 943110 000000000000 507900996162033040016213541000679236 507900996162 068513 668899 S +12:03:42 Slot [99] | NOT FINANCIAL TRANSACTION +12:03:57 Slot [64] | NOT FINANCIAL TRANSACTION +12:04:00 Slot [56] | NOT FINANCIAL TRANSACTION +12:04:02 +Slot[82] 0200 010000 6213545000905970 ------------- 00 268871 000050000000 5079052688710465UDNM6213545000905970 507905268871 969972 180893 S +12:04:06 Slot [93] | NOT FINANCIAL TRANSACTION +12:04:13 Slot [100] | NOT FINANCIAL TRANSACTION +12:04:23 Slot [91] | NOT FINANCIAL TRANSACTION +12:04:28 +Slot[65] 0200 311000 6213544002210422 ------------- 00 274741 000000000000 507900057259010005006213544002210422 507900057259 730557 220699 S +12:04:35 Slot [72] | NOT FINANCIAL TRANSACTION +12:04:42 +Slot[106] 0200 010000 6213544001866836 ------------- 75 943160 000050000000 507901541677030200166213544001866836 507901541677 057946 668899 S +12:04:50 Slot [66] | NOT FINANCIAL TRANSACTION +12:04:51 +Slot[76] 0200 010000 6213541000679236 ------------- 00 943167 000020000000 507900996163033040016213541000679236 507900996163 010786 668899 S +12:04:54 Slot [90] | NOT FINANCIAL TRANSACTION +12:05:02 Slot [114] | NOT FINANCIAL TRANSACTION +12:05:02 Slot [83] | NOT FINANCIAL TRANSACTION +12:05:13 +Slot[118] 0200 010000 6213545000912851 ------------- 00 268881 000100000000 5079052688810465UDNM6213545000912851 507905268881 227529 180893 S +12:05:23 Slot [74] | NOT FINANCIAL TRANSACTION +12:05:34 Slot [121] | NOT FINANCIAL TRANSACTION +12:05:44 Slot [107] | NOT FINANCIAL TRANSACTION +12:05:55 Slot [115] | NOT FINANCIAL TRANSACTION +12:06:04 Slot [92] | NOT FINANCIAL TRANSACTION +12:06:05 Slot [108] | NOT FINANCIAL TRANSACTION +12:06:16 Slot [113] | NOT FINANCIAL TRANSACTION +12:06:20 +Slot[94] 0200 010000 6213545000912851 ------------- 00 268891 000100000000 5079052688910465UDNM6213545000912851 507905268891 911911 180893 S +12:06:21 +Slot[127] 0200 010000 6213544001117818 ------------- 00 943234 000030000000 507900123287030200036213544001117818 507900123287 516993 668899 S +12:06:21 Slot [75] | NOT FINANCIAL TRANSACTION +12:06:32 Slot [53] | NOT FINANCIAL TRANSACTION +12:06:34 +Slot[95] 0200 010000 6213545000662084 ------------- 00 268895 000100000000 5079052688950363CPSH6213545000662084 507905268895 204644 180893 S +12:06:37 +Slot[125] 0200 010000 2206990000121269 ------------- 00 943251 000050000000 507902031653030180032206990000121269 507902031653 234521 668899 S +12:06:37 +Slot[98] 0200 010000 6213544001772299 ------------- 55 168920 000020000000 507900026336010002006213544001772299 507900026336 017601 220699 S +12:06:48 Slot [134] | NOT FINANCIAL TRANSACTION +12:06:55 +Slot[103] 0200 301000 6213544002135223 ------------- 00 205229 000000000000 507912205229000022226213544002135223 507912205229 086531 198901 S +12:07:03 Slot [101] | NOT FINANCIAL TRANSACTION +12:07:06 +Slot[77] 0200 011000 6213544002210422 ------------- 00 274746 000005000000 507900057262010005006213544002210422 507900057262 147550 220699 S +12:07:06 Slot [96] | NOT FINANCIAL TRANSACTION +12:07:07 +Slot[71] 0200 310000 6213548000499853 ------------- 00 223709 000000000000 507900118751010011006213548000499853 507900118751 126982 220699 S +12:07:14 +Slot[70] 0200 011000 1808930600050355 ------------- 00 740043 000005000000 507904269541030025001808930600050355 507904269541 941732 621354 S +12:07:16 +Slot[109] 0200 010000 6213541000679236 ------------- 00 943284 000010000000 507900996166033040016213541000679236 507900996166 301103 668899 S +12:07:19 Slot [102] | NOT FINANCIAL TRANSACTION +12:07:33 +Slot[85] 0200 010000 6213548000499853 ------------- 00 223710 000030000000 507900118752010011006213548000499853 507900118752 164844 220699 S +12:07:35 +Slot[136] 0200 010000 6213545000912851 ------------- 00 268903 000100000000 5079052689030465UDNM6213545000912851 507905268903 356246 180893 S +12:07:36 +Slot[129] 0200 010000 6213548000206142 ------------- 51 943295 000030000000 507900977518034070026213548000206142 507900977518 280212 668899 S +12:07:46 Slot [87] | NOT FINANCIAL TRANSACTION +12:07:48 +Slot[131] 0200 311000 6213544002115563 ------------- 00 259209 000000000000 507900040569010004006213544002115563 507900040569 440988 220699 S +12:07:50 +Slot[105] 0200 011000 6213544002135223 ------------- 51 205244 000020000000 507912205244000022226213544002135223 507912205244 158303 198901 S +12:07:53 +Slot[104] 0200 010000 6213544001772299 ------------- 55 168922 000020000000 507900026338010002006213544001772299 507900026338 099224 220699 S +12:07:57 Slot [138] | NOT FINANCIAL TRANSACTION +12:08:06 +Slot[112] 0200 010000 6213548000206142 ------------- 00 943320 000020000000 507900977519034070026213548000206142 507900977519 195420 668899 S +12:08:07 Slot [116] | NOT FINANCIAL TRANSACTION +12:08:08 Slot [140] | NOT FINANCIAL TRANSACTION +12:08:13 +Slot[117] 0200 010000 2206990000121269 ------------- 00 943325 000070000000 507902031655030180032206990000121269 507902031655 761248 668899 S +12:08:15 +Slot[97] 0200 010000 6213545000137616 ------------- 55 268908 000050000000 5079052689080363CPSH6213545000137616 507905268908 693316 180893 S +12:08:17 +Slot[124] 0200 300000 2206990000133751 ------------- 00 740319 000000000000 507903478265060020002206990000133751 507903478265 381662 621354 S +12:08:24 Slot [111] | NOT FINANCIAL TRANSACTION +12:08:31 +Slot[161] 0200 011000 6213546000009821 ------------- 00 021160 000070000000 507900263111010014006213546000009821 507900263111 116054 220699 S +12:08:33 +Slot[80] 0200 011000 6213544002115563 ------------- 00 259210 000040000000 507900040570010004006213544002115563 507900040570 462997 220699 S +12:08:33 Slot [147] | NOT FINANCIAL TRANSACTION +12:08:34 Slot [123] | NOT FINANCIAL TRANSACTION +12:08:43 +Slot[122] 0200 010000 6213545000912851 ------------- 00 268911 000100000000 5079052689110465UDNM6213545000912851 507905268911 169825 180893 S +12:08:46 +Slot[132] 0200 010000 6213548000479681 ------------- 00 943351 000010000000 507901963541030200196213548000479681 507901963541 740274 668899 S +12:08:56 +Slot[162] 0200 010000 6213545000137616 ------------- 00 268913 000050000000 5079052689130363CPSH6213545000137616 507905268913 961427 180893 S +12:09:06 Slot [145] | NOT FINANCIAL TRANSACTION +12:09:10 Slot [154] | NOT FINANCIAL TRANSACTION +12:09:17 Slot [158] | NOT FINANCIAL TRANSACTION +12:09:28 Slot [143] | NOT FINANCIAL TRANSACTION +12:09:33 +Slot[166] 0200 311000 6213545000995864 ------------- 00 021163 000000000000 507900263113010014006213545000995864 507900263113 869938 220699 S +12:09:35 +Slot[120] 0200 010000 6213545000912851 ------------- 51 268920 000050000000 5079052689200465UDNM6213545000912851 507905268920 582774 180893 S +12:09:45 Slot [133] | NOT FINANCIAL TRANSACTION +12:09:54 Slot [153] | NOT FINANCIAL TRANSACTION +12:09:56 +Slot[150] 0200 011000 6213544002135223 ------------- 51 205278 000010000000 507912205278000022226213544002135223 507912205278 615941 198901 S +12:09:57 Slot [130] | NOT FINANCIAL TRANSACTION +12:10:05 +Slot[110] 0200 010000 6213541000086259 ------------- 00 943418 000100000000 507900123289030200036213541000086259 507900123289 741250 668899 S +12:10:12 Slot [142] | NOT FINANCIAL TRANSACTION +12:10:12 Slot [167] | NOT FINANCIAL TRANSACTION +12:10:24 Slot [159] | NOT FINANCIAL TRANSACTION +12:10:35 +Slot[137] 0200 010000 6213548000206142 ------------- 51 943442 000010000000 507900977521034070026213548000206142 507900977521 340620 668899 S +12:10:40 Slot [175] | NOT FINANCIAL TRANSACTION +12:10:49 +Slot[128] 0200 010000 6213544000182177 ------------- 00 943450 000020000000 507901963543030200196213544000182177 507901963543 201406 668899 S +12:10:51 Slot [146] | NOT FINANCIAL TRANSACTION +12:10:56 +Slot[141] 0200 302000 6213548000206142 ------------- 00 943459 000000000000 507900977522034070026213548000206142 507900977522 772199 668899 S +12:11:02 +Slot[170] 0200 010000 2206990000121269 ------------- 00 943463 000070000000 507902031657030180032206990000121269 507902031657 286264 668899 S +12:11:02 Slot [157] | NOT FINANCIAL TRANSACTION +12:11:13 Slot [172] | NOT FINANCIAL TRANSACTION +12:11:14 Slot [151] | NOT FINANCIAL TRANSACTION +12:11:22 Slot [164] | NOT FINANCIAL TRANSACTION +12:11:25 Slot [186] | NOT FINANCIAL TRANSACTION +12:11:41 Slot [148] | NOT FINANCIAL TRANSACTION +12:11:53 Slot [126] | NOT FINANCIAL TRANSACTION +12:12:06 Slot [171] | NOT FINANCIAL TRANSACTION +12:12:16 Slot [119] | NOT FINANCIAL TRANSACTION +12:12:21 Slot [139] | NOT FINANCIAL TRANSACTION +12:12:23 +Slot[182] 0200 010000 6213545000950745 ------------- 61 268937 000200000000 5079052689370465UDNM6213545000950745 507905268937 907971 180893 S +12:12:27 +Slot[176] 0200 010000 6213545000986426 ------------- 00 268939 000100000000 5079052689390363CPSH6213545000986426 507905268939 246320 180893 S +12:12:37 Slot [202] | NOT FINANCIAL TRANSACTION +12:12:48 Slot [187] | NOT FINANCIAL TRANSACTION +12:12:51 +Slot[160] 0200 010000 2206990000121269 ------------- 00 943545 000070000000 507902031659030180032206990000121269 507902031659 154394 668899 S +12:12:59 Slot [156] | NOT FINANCIAL TRANSACTION +12:13:10 Slot [144] | NOT FINANCIAL TRANSACTION +12:13:16 +Slot[203] 0200 010000 6213545000986426 ------------- 00 268947 000050000000 5079052689470363CPSH6213545000986426 507905268947 413301 180893 S +12:13:18 Slot [179] | NOT FINANCIAL TRANSACTION +12:13:25 Slot [163] | NOT FINANCIAL TRANSACTION +12:13:27 +Slot[204] 0200 301000 6213544002135223 ------------- 00 205329 000000000000 507912205329000022226213544002135223 507912205329 644620 198901 S +12:13:37 Slot [135] | NOT FINANCIAL TRANSACTION +12:13:52 +Slot[152] 0200 011000 6213544002135223 ------------- 00 205338 000002000000 507912205338000022226213544002135223 507912205338 265488 198901 S +12:13:52 Slot [192] | NOT FINANCIAL TRANSACTION +12:14:05 +Slot[191] 0200 010000 6213545000990295 ------------- 61 268955 000200000000 5079052689550366SKTT6213545000990295 507905268955 544434 180893 S +12:14:13 Slot [190] | NOT FINANCIAL TRANSACTION +12:14:20 Slot [196] | NOT FINANCIAL TRANSACTION +12:14:24 Slot [155] | NOT FINANCIAL TRANSACTION +12:14:33 +Slot[198] 0200 010000 2206990000121269 ------------- 55 943637 000020000000 507902031661030180032206990000121269 507902031661 724439 668899 S +12:14:35 Slot [181] | NOT FINANCIAL TRANSACTION +12:14:42 +Slot[201] 0200 301000 6213544002135223 ------------- 00 205347 000000000000 507912205347000022226213544002135223 507912205347 368245 198901 S +12:14:47 Slot [214] | NOT FINANCIAL TRANSACTION +12:14:54 Slot [194] | NOT FINANCIAL TRANSACTION +12:14:58 Slot [165] | NOT FINANCIAL TRANSACTION +12:15:04 +Slot[195] 0200 011000 6213544002135223 ------------- 51 205354 000005000000 507912205354000022226213544002135223 507912205354 988693 198901 S +12:15:09 +Slot[209] 0200 011000 2206990000046482 ------------- 00 741975 000100000000 507903863258010102002206990000046482 507903863258 531389 621354 S +12:15:10 Slot [178] | NOT FINANCIAL TRANSACTION +12:15:14 +Slot[184] 0200 010000 2206990000121269 ------------- 51 943668 000020000000 507902031663030180032206990000121269 507902031663 917224 668899 S +12:15:22 Slot [206] | NOT FINANCIAL TRANSACTION +12:15:27 +Slot[213] 0200 011000 1808930200021590 ------------- 00 742042 000020000000 507902381798010063001808930200021590 507902381798 465396 621354 S +12:15:28 +Slot[193] 0200 010000 6213545000990295 ------------- 00 268962 000100000000 5079052689620366SKTT6213545000990295 507905268962 477328 180893 S +12:15:36 +Slot[221] 0200 301000 1808931800002998 ------------- 00 742078 000000000000 507903649217160017001808931800002998 507903649217 166751 621354 S +12:15:39 +Slot[212] 0200 301000 6213544002135223 ------------- 00 205364 000000000000 507912205364000022226213544002135223 507912205364 868239 198901 S +12:15:43 Slot [207] | NOT FINANCIAL TRANSACTION +12:15:54 Slot [208] | NOT FINANCIAL TRANSACTION +12:16:11 Slot [183] | NOT FINANCIAL TRANSACTION +12:16:17 +Slot[211] 0420 010000 2206990000121269 ------------- 00 943668 000020000000 507902031663030180032206990000121269 507902031663 -------- 668899 S +12:16:22 Slot [169] | NOT FINANCIAL TRANSACTION +12:16:22 Slot [230] | NOT FINANCIAL TRANSACTION +12:16:23 +Slot[185] 0200 011000 1888880000030866 ------------- 00 742257 000015000000 507904769442070012001888880000030866 507904769442 763284 621354 S +12:16:24 Slot [189] | NOT FINANCIAL TRANSACTION +12:16:28 +Slot[205] 0200 301000 6213544001693891 ------------- 00 268968 032005153026 5079052689680106NAXA6213544001693891 507905268968 037970 180893 S +12:16:30 +Slot[149] 0200 010000 6213545000990295 ------------- 00 268970 000100000000 5079052689700366SKTT6213545000990295 507905268970 079387 180893 S +12:16:41 +Slot[232] 0200 010000 2206990000121269 ------------- 00 943744 000010000000 507902031665030180032206990000121269 507902031665 005887 668899 S +12:16:43 Slot [168] | NOT FINANCIAL TRANSACTION +12:16:45 +Slot[180] 0200 300000 6688990040130492 ------------- 00 742389 000000000000 507904609841020023006688990040130492 507904609841 497430 621354 S +12:16:58 +Slot[174] 0200 301000 1808930600022354 ------------- 00 742430 000000000000 507905187486030044001808930600022354 507905187486 580766 621354 S +12:17:05 Slot [222] | NOT FINANCIAL TRANSACTION +12:17:21 Slot [173] | NOT FINANCIAL TRANSACTION +12:17:26 Slot [229] | NOT FINANCIAL TRANSACTION +12:17:33 +Slot[188] 0200 010000 6213545000990295 ------------- 00 268976 000050000000 5079052689760366SKTT6213545000990295 507905268976 949625 180893 S +12:17:42 Slot [223] | NOT FINANCIAL TRANSACTION +12:17:57 +Slot[246] 0200 011000 1808930600022354 ------------- 00 742639 000006000000 507905187488030044001808930600022354 507905187488 895471 621354 S +12:17:59 Slot [248] | NOT FINANCIAL TRANSACTION +12:18:03 +Slot[215] 0200 011000 6213544001693891 ------------- 51 268981 000005000000 5079052689810106NAXA6213544001693891 507905268981 316805 180893 S +12:18:15 Slot [243] | NOT FINANCIAL TRANSACTION +12:18:28 Slot [244] | NOT FINANCIAL TRANSACTION +12:18:30 Slot [227] | NOT FINANCIAL TRANSACTION +12:18:41 Slot [235] | NOT FINANCIAL TRANSACTION +12:18:49 +Slot[251] 0200 011000 6213544001693891 ------------- 00 268984 000004000000 5079052689840106NAXA6213544001693891 507905268984 065659 180893 S +12:18:58 Slot [250] | NOT FINANCIAL TRANSACTION +12:19:13 Slot [177] | NOT FINANCIAL TRANSACTION +12:19:19 Slot [226] | NOT FINANCIAL TRANSACTION +12:19:27 Slot [242] | NOT FINANCIAL TRANSACTION +12:19:30 Slot [255] | NOT FINANCIAL TRANSACTION +12:19:40 Slot [233] | NOT FINANCIAL TRANSACTION +12:19:51 Slot [200] | NOT FINANCIAL TRANSACTION +12:19:53 +Slot[238] 0200 010000 6688990040130492 ------------- 00 743078 000025000000 507904609845020023006688990040130492 507904609845 153458 621354 S +12:19:55 Slot [237] | NOT FINANCIAL TRANSACTION +12:20:02 Slot [216] | NOT FINANCIAL TRANSACTION +12:20:13 Slot [253] | NOT FINANCIAL TRANSACTION +12:20:22 +Slot[260] 0200 011000 6213544001693891 ------------- 51 268989 000002000000 5079052689890106NAXA6213544001693891 507905268989 579284 180893 S +12:20:32 +Slot[234] 0200 010000 1808930200040533 ------------- 55 743213 000040000000 507903975321010113001808930200040533 507903975321 402190 621354 S +12:20:32 Slot [249] | NOT FINANCIAL TRANSACTION +12:20:39 Slot [210] | NOT FINANCIAL TRANSACTION +12:20:41 +Slot[259] 0200 301000 6213544001043030 ------------- 00 943895 000000000000 507900123295030200036213544001043030 507900123295 674256 668899 S +12:20:48 Slot [261] | NOT FINANCIAL TRANSACTION +12:20:53 +Slot[263] 0200 010000 1808930200040533 ------------- 55 743277 000040000000 507903975323010113001808930200040533 507903975323 515077 621354 S +12:21:01 Slot [225] | NOT FINANCIAL TRANSACTION +12:21:11 Slot [199] | NOT FINANCIAL TRANSACTION +12:21:21 Slot [270] | NOT FINANCIAL TRANSACTION +12:21:23 Slot [269] | NOT FINANCIAL TRANSACTION +12:21:34 Slot [275] | NOT FINANCIAL TRANSACTION +12:21:37 +Slot[240] 0200 011000 1808930600034060 ------------- 00 743387 000010000000 507905035316020026001808930600034060 507905035316 800096 621354 S +12:21:39 Slot [228] | NOT FINANCIAL TRANSACTION +12:21:55 Slot [256] | NOT FINANCIAL TRANSACTION +12:22:10 Slot [197] | NOT FINANCIAL TRANSACTION +12:22:26 Slot [265] | NOT FINANCIAL TRANSACTION +12:22:36 Slot [218] | NOT FINANCIAL TRANSACTION +12:22:38 +Slot[274] 0200 301000 6213545000970115 ------------- 00 943990 000000000000 507900123297030200036213545000970115 507900123297 004674 668899 S +12:22:41 +Slot[247] 0200 011000 1808930600034060 ------------- 00 743607 000100000000 507905035318020026001808930600034060 507905035318 272323 621354 S +12:22:47 Slot [279] | NOT FINANCIAL TRANSACTION +12:22:53 +Slot[231] 0200 010000 6688990030016826 ------------- 14 268998 000100000000 5079052689980528LPBP6688990030016826 507905268998 615650 180893 S +12:22:55 +Slot[264] 0200 010000 6213545000324842 ------------- 61 268999 000200000000 5079052689990366SKTT6213545000324842 507905268999 497762 180893 S +12:23:04 +Slot[273] 0200 302000 6213545000970115 ------------- 00 944015 000000000000 507900123298030200036213545000970115 507900123298 143616 668899 S +12:23:08 Slot [220] | NOT FINANCIAL TRANSACTION +12:23:19 Slot [254] | NOT FINANCIAL TRANSACTION +12:23:26 +Slot[282] 0200 010000 6213545000324842 ------------- 00 269002 000100000000 5079052690020366SKTT6213545000324842 507905269002 845094 180893 S +12:23:35 Slot [239] | NOT FINANCIAL TRANSACTION +12:23:36 +Slot[276] 0200 301000 2206990000052076 ------------- 00 743825 000000000000 507904627417170007002206990000052076 507904627417 156072 621354 S +12:23:38 Slot [272] | NOT FINANCIAL TRANSACTION +12:23:40 +Slot[266] 0200 010000 6213545000970115 ------------- 00 944060 000100000000 507900123299030200036213545000970115 507900123299 603228 668899 S +12:23:51 Slot [252] | NOT FINANCIAL TRANSACTION +12:24:02 Slot [241] | NOT FINANCIAL TRANSACTION +12:24:12 Slot [280] | NOT FINANCIAL TRANSACTION +12:24:21 +Slot[258] 0200 010000 6213545000324842 ------------- 00 269005 000100000000 5079052690050366SKTT6213545000324842 507905269005 965248 180893 S +12:24:29 Slot [284] | NOT FINANCIAL TRANSACTION +12:24:40 Slot [219] | NOT FINANCIAL TRANSACTION +12:24:41 Slot [245] | NOT FINANCIAL TRANSACTION +12:24:55 Slot [287] | NOT FINANCIAL TRANSACTION +12:24:55 +Slot[224] 0200 010000 6213545000970115 ------------- 00 944120 000100000000 507900123301030200036213545000970115 507900123301 061926 668899 S +12:24:56 Slot [277] | NOT FINANCIAL TRANSACTION +12:25:06 +Slot[290] 0200 010000 6213545000324842 ------------- 00 269010 000100000000 5079052690100366SKTT6213545000324842 507905269010 425492 180893 S +12:25:15 +Slot[267] 0200 011000 6688990040113928 ------------- 00 744154 000010000000 507904459956150007006688990040113928 507904459956 149432 621354 S +12:25:18 Slot [294] | NOT FINANCIAL TRANSACTION +12:25:22 +Slot[271] 0200 301000 6213545000801831 ------------- 00 944144 000000000000 507900168579030200076213545000801831 507900168579 397305 668899 S +12:25:29 Slot [236] | NOT FINANCIAL TRANSACTION +12:25:40 Slot [303] | NOT FINANCIAL TRANSACTION +12:25:40 +Slot[217] 0200 010000 6213543000179878 ------------- 00 944159 000100000000 507902150968030200256213543000179878 507902150968 355215 668899 S +12:25:42 Slot [293] | NOT FINANCIAL TRANSACTION +12:25:56 Slot [298] | NOT FINANCIAL TRANSACTION +12:26:00 +Slot[278] 0200 302000 6213545000801831 ------------- 00 944183 000000000000 507900168580030200076213545000801831 507900168580 534842 668899 S +12:26:05 +Slot[257] 0200 010000 6213545000970115 ------------- 00 944185 000100000000 507900123303030200036213545000970115 507900123303 027426 668899 S +12:26:07 +Slot[299] 0200 010000 6213545000005599 ------------- 00 269017 000100000000 5079052690170366SKTT6213545000005599 507905269017 072413 180893 S +12:26:17 Slot [300] | NOT FINANCIAL TRANSACTION +12:26:21 Slot [295] | NOT FINANCIAL TRANSACTION +12:26:32 +Slot[281] 0200 010000 6213543000179878 ------------- 00 944211 000100000000 507902150970030200256213543000179878 507902150970 994647 668899 S +12:26:32 Slot [296] | NOT FINANCIAL TRANSACTION +12:26:38 +Slot[308] 0200 010000 6213545000801831 ------------- 00 944218 000010000000 507900168581030200076213545000801831 507900168581 638445 668899 S +12:26:44 Slot [286] | NOT FINANCIAL TRANSACTION +12:26:44 Slot [316] | NOT FINANCIAL TRANSACTION +12:26:51 +Slot[283] 0200 010000 6213545000005599 ------------- 00 269024 000100000000 5079052690240366SKTT6213545000005599 507905269024 906809 180893 S +12:27:01 Slot [311] | NOT FINANCIAL TRANSACTION +12:27:08 +Slot[312] 0200 010000 6688990040163469 ------------- 14 269026 000010000000 5079052690260466PSLB6688990040163469 507905269026 271299 180893 S +12:27:17 Slot [306] | NOT FINANCIAL TRANSACTION +12:27:28 Slot [310] | NOT FINANCIAL TRANSACTION +12:27:31 +Slot[307] 0200 010000 2206990000119594 ------------- 00 944258 000002000000 507902031669030180032206990000119594 507902031669 826860 668899 S +12:27:39 +Slot[317] 0200 010000 6213542000038126 ------------- 00 269030 000050000000 5079052690300221XKKM6213542000038126 507905269030 705720 180893 S +12:27:43 +Slot[288] 0200 010000 6688990040054502 ------------- 55 744726 000040000000 507904099970080006006688990040054502 507904099970 623034 621354 S +12:27:46 Slot [318] | NOT FINANCIAL TRANSACTION +12:27:51 Slot [322] | NOT FINANCIAL TRANSACTION +12:28:04 +Slot[315] 0200 012000 6213544000850203 ------------- 00 223713 000010000000 507900118754010011006213544000850203 507900118754 687425 220699 S +12:28:05 Slot [304] | NOT FINANCIAL TRANSACTION +12:28:15 Slot [325] | NOT FINANCIAL TRANSACTION +12:28:26 Slot [285] | NOT FINANCIAL TRANSACTION +12:28:37 +Slot[289] 0200 010000 6688990040054502 ------------- 00 744894 000040000000 507904099972080006006688990040054502 507904099972 319789 621354 S +12:28:40 Slot [297] | NOT FINANCIAL TRANSACTION +12:28:48 Slot [291] | NOT FINANCIAL TRANSACTION +12:28:50 Slot [326] | NOT FINANCIAL TRANSACTION +12:29:03 +Slot[301] 0200 012000 6213544002017363 ------------- 00 269035 000030000000 5079052690350421BKPH6213544002017363 507905269035 285657 180893 S +12:29:10 +Slot[327] 0200 011000 6688990040163469 ------------- 14 269037 000020000000 5079052690370466PSLB6688990040163469 507905269037 971596 180893 S +12:29:22 Slot [305] | NOT FINANCIAL TRANSACTION +12:29:29 +Slot[314] 0200 010000 6213545000969000 ------------- 00 269042 000010000000 5079052690420104NUOL6213545000969000 507905269042 427456 180893 S +12:29:43 +Slot[302] 0200 011000 1808931700022575 ------------- 00 745107 000080000000 507903799291010095001808931700022575 507903799291 944947 621354 S +12:29:48 +Slot[292] 0200 011000 6213544001393815 ------------- 00 223716 000004000000 507900118756010011006213544001393815 507900118756 875684 220699 S +12:29:48 Slot [331] | NOT FINANCIAL TRANSACTION +12:29:50 Slot [333] | NOT FINANCIAL TRANSACTION +12:29:55 Slot [262] | NOT FINANCIAL TRANSACTION +12:29:59 Slot [335] | NOT FINANCIAL TRANSACTION +12:30:01 +Slot[334] 0200 010000 6213548000550960 ------------- 00 944381 000010000000 507901262009032060016213548000550960 507901262009 950332 668899 S +12:30:03 +Slot[321] 0200 010000 6688990107495002 ------------- 00 745179 000100000000 507904965669150011006688990107495002 507904965669 846900 621354 S +12:30:05 +Slot[336] 0200 302000 6213544001232872 ------------- 00 944382 000000000000 507902294776030090066213544001232872 507902294776 986328 668899 S +12:30:05 Slot [345] | NOT FINANCIAL TRANSACTION +12:30:05 +Slot[320] 0200 012000 6688990040163469 ------------- 14 269046 000020000000 5079052690460466PSLB6688990040163469 507905269046 924464 180893 S +12:30:08 +Slot[342] 0200 311000 6213544001670584 ------------- 00 274763 000000000000 507900057274010005006213544001670584 507900057274 438218 220699 S +12:30:21 Slot [341] | NOT FINANCIAL TRANSACTION +12:30:35 Slot [344] | NOT FINANCIAL TRANSACTION +12:30:45 +Slot[268] 0200 011000 6213544001670584 ------------- 00 274764 000040000000 507900057275010005006213544001670584 507900057275 385286 220699 S +12:30:47 +Slot[323] 0200 010000 6213541000686033 ------------- 00 269050 000100000000 5079052690500114XKBR6213541000686033 507905269050 066882 180893 S +12:30:52 Slot [339] | NOT FINANCIAL TRANSACTION +12:30:56 Slot [348] | NOT FINANCIAL TRANSACTION +12:31:06 Slot [329] | NOT FINANCIAL TRANSACTION +12:31:12 +Slot[352] 0200 011000 6213548000292233 ------------- 51 223719 000002000000 507900118758010011006213548000292233 507900118758 645685 220699 S +12:31:16 Slot [337] | NOT FINANCIAL TRANSACTION +12:31:21 Slot [328] | NOT FINANCIAL TRANSACTION +12:31:21 +Slot[309] 0200 011000 6688990030016826 ------------- 00 745452 000050000000 507902585219050041006688990030016826 507902585219 622280 621354 S +12:31:27 Slot [347] | NOT FINANCIAL TRANSACTION +12:31:28 +Slot[346] 0200 010000 6213545000801831 ------------- 00 944425 000010000000 507900168583030200076213545000801831 507900168583 999171 668899 S +12:31:35 +Slot[350] 0200 010000 6213541000686033 ------------- 00 269055 000100000000 5079052690550114XKBR6213541000686033 507905269055 140440 180893 S +12:31:48 Slot [319] | NOT FINANCIAL TRANSACTION +12:31:54 Slot [357] | NOT FINANCIAL TRANSACTION +12:31:58 Slot [356] | NOT FINANCIAL TRANSACTION +12:31:58 +Slot[330] 0200 011000 6213548000292233 ------------- 00 223722 000001000000 507900118760010011006213548000292233 507900118760 137893 220699 S +12:32:00 +Slot[332] 0200 010000 6213544001498101 ------------- 00 944437 000060000000 507901963547030200196213544001498101 507901963547 331390 668899 S +12:32:08 Slot [365] | NOT FINANCIAL TRANSACTION +12:32:20 +Slot[366] 0200 010000 6688990107495002 ------------- 00 745682 000040000000 507904965671150011006688990107495002 507904965671 061767 621354 S +12:32:24 Slot [371] | NOT FINANCIAL TRANSACTION +12:32:33 +Slot[313] 0200 011000 1808931300011069 ------------- 00 745719 000010000000 507904228962050046001808931300011069 507904228962 373917 621354 S +12:32:36 Slot [343] | NOT FINANCIAL TRANSACTION +12:32:50 +Slot[378] 0200 010000 6213545000905814 ------------- 00 269061 000100000000 5079052690610465UDNM6213545000905814 507905269061 853503 180893 S +12:32:56 Slot [340] | NOT FINANCIAL TRANSACTION +12:33:05 Slot [373] | NOT FINANCIAL TRANSACTION +12:33:14 +Slot[324] 0200 011000 6213548000335404 ------------- 51 223725 000002000000 507900118762010011006213548000335404 507900118762 216168 220699 S +12:33:20 Slot [382] | NOT FINANCIAL TRANSACTION +12:33:30 Slot [355] | NOT FINANCIAL TRANSACTION +12:33:46 Slot [353] | NOT FINANCIAL TRANSACTION +12:33:58 Slot [363] | NOT FINANCIAL TRANSACTION +12:34:01 Slot [370] | NOT FINANCIAL TRANSACTION +12:34:02 +Slot[358] 0200 011000 6213548000335404 ------------- 00 223728 000001000000 507900118764010011006213548000335404 507900118764 006045 220699 S +12:34:09 +Slot[360] 0200 302000 6213544001973418 ------------- 00 269068 032005331226 5079052690680483XKNH6213544001973418 507905269068 931539 180893 S +12:34:22 Slot [369] | NOT FINANCIAL TRANSACTION +12:34:38 +Slot[379] 0200 300000 1808930900012998 ------------- 00 746192 000000000000 507904228969050046001808930900012998 507904228969 591879 621354 S +12:34:40 +Slot[338] 0200 011000 6213548000415040 ------------- 00 205657 000020000000 507912205657015290316213548000415040 507912205657 144158 198901 S +12:34:43 Slot [354] | NOT FINANCIAL TRANSACTION +12:34:53 Slot [396] | NOT FINANCIAL TRANSACTION +12:34:55 Slot [351] | NOT FINANCIAL TRANSACTION +12:35:00 Slot [389] | NOT FINANCIAL TRANSACTION +12:35:04 Slot [390] | NOT FINANCIAL TRANSACTION +12:35:15 Slot [361] | NOT FINANCIAL TRANSACTION +12:35:25 Slot [376] | NOT FINANCIAL TRANSACTION +12:35:29 +Slot[359] 0200 011000 6213548000415040 ------------- 00 205670 000010000000 507912205670015290316213548000415040 507912205670 272286 198901 S +12:35:43 +Slot[374] 0200 010000 1808930900012998 ------------- 00 746463 000100000000 507904228971050046001808930900012998 507904228971 729629 621354 S +12:35:45 +Slot[410] 0200 010000 6213544000238532 ------------- 00 944532 000100000000 507900123309030200036213544000238532 507900123309 917268 668899 S +12:35:47 Slot [395] | NOT FINANCIAL TRANSACTION +12:35:56 +Slot[383] 0200 010000 6213544002222088 ------------- 00 269074 000010000000 5079052690740543VLSC6213544002222088 507905269074 070926 180893 S +12:36:02 Slot [393] | NOT FINANCIAL TRANSACTION +12:36:09 Slot [400] | NOT FINANCIAL TRANSACTION +12:36:21 Slot [397] | NOT FINANCIAL TRANSACTION +12:36:23 +Slot[413] 0200 011000 1808930300006749 ------------- 00 746645 000020000000 507902835277010077001808930300006749 507902835277 519731 621354 S +12:36:30 Slot [349] | NOT FINANCIAL TRANSACTION +12:36:41 Slot [394] | NOT FINANCIAL TRANSACTION +12:36:53 Slot [414] | NOT FINANCIAL TRANSACTION +12:36:59 +Slot[399] 0200 300000 6213545000354070 ------------- 00 944573 000000000000 507900823529030150016213545000354070 507900823529 577152 668899 S +12:37:01 +Slot[387] 0200 300000 6688990103345904 ------------- 00 746790 000000000000 507903961165010112006688990103345904 507903961165 061029 621354 S +12:37:04 Slot [372] | NOT FINANCIAL TRANSACTION +12:37:05 Slot [418] | NOT FINANCIAL TRANSACTION +12:37:20 Slot [368] | NOT FINANCIAL TRANSACTION +12:37:30 Slot [419] | NOT FINANCIAL TRANSACTION +12:37:31 Slot [406] | NOT FINANCIAL TRANSACTION +12:37:48 Slot [411] | NOT FINANCIAL TRANSACTION +12:38:01 Slot [407] | NOT FINANCIAL TRANSACTION +12:38:06 Slot [416] | NOT FINANCIAL TRANSACTION +12:38:07 +Slot[380] 0200 310000 6213545000887566 ------------- 00 379635 000000000000 507900165764060001006213545000887566 507900165764 132769 220699 S +12:38:09 +Slot[384] 0200 311000 6213545000452478 ------------- 00 168937 000000000000 507900026352010002006213545000452478 507900026352 577781 220699 S +12:38:11 +Slot[420] 0200 010000 6213548000299006 ------------- 00 254857 000004000000 507900094422010009006213548000299006 507900094422 114953 220699 S +12:38:15 Slot [381] | NOT FINANCIAL TRANSACTION +12:38:26 Slot [401] | NOT FINANCIAL TRANSACTION +12:38:31 +Slot[415] 0200 010000 6213545000354070 ------------- 51 944618 000010000000 507900823531030150016213545000354070 507900823531 305938 668899 S +12:38:41 Slot [425] | NOT FINANCIAL TRANSACTION +12:38:43 +Slot[398] 0200 011000 6213545000452478 ------------- 00 168938 000100000000 507900026353010002006213545000452478 507900026353 533265 220699 S +12:38:53 Slot [433] | NOT FINANCIAL TRANSACTION +12:39:06 Slot [388] | NOT FINANCIAL TRANSACTION +12:39:08 Slot [364] | NOT FINANCIAL TRANSACTION +12:39:21 Slot [367] | NOT FINANCIAL TRANSACTION +12:39:34 Slot [430] | NOT FINANCIAL TRANSACTION +12:39:45 Slot [441] | NOT FINANCIAL TRANSACTION +12:39:53 +Slot[409] 0200 010000 6688990040137844 ------------- 00 747409 000100000000 507903587021090015006688990040137844 507903587021 224102 621354 S +12:39:55 Slot [437] | NOT FINANCIAL TRANSACTION +12:39:57 Slot [402] | NOT FINANCIAL TRANSACTION +12:40:07 Slot [408] | NOT FINANCIAL TRANSACTION +12:40:10 Slot [403] | NOT FINANCIAL TRANSACTION +12:40:23 +Slot[362] 0200 301000 6213544001043030 ------------- 00 944677 000000000000 507900123311030200036213544001043030 507900123311 580102 668899 S +12:40:24 Slot [375] | NOT FINANCIAL TRANSACTION +12:40:35 +Slot[385] 0200 010000 6213544000608593 ------------- 00 944684 000070000000 507901373725032090016213544000608593 507901373725 579001 668899 S +12:40:39 Slot [412] | NOT FINANCIAL TRANSACTION +12:40:50 Slot [392] | NOT FINANCIAL TRANSACTION +12:40:51 +Slot[447] 0200 010000 6688990040137844 ------------- 00 747608 000100000000 507903587023090015006688990040137844 507903587023 484909 621354 S +12:40:54 Slot [450] | NOT FINANCIAL TRANSACTION +12:41:07 Slot [417] | NOT FINANCIAL TRANSACTION +12:41:12 Slot [391] | NOT FINANCIAL TRANSACTION +12:41:21 Slot [443] | NOT FINANCIAL TRANSACTION +12:41:23 Slot [377] | NOT FINANCIAL TRANSACTION +12:41:36 +Slot[405] 0200 011000 6688990108612605 ------------- 14 107235 000010000000 507900327841010018006688990108612605 507900327841 869498 220699 S +12:41:41 +Slot[386] 0200 011000 1808930200055119 ------------- 00 747767 000100000000 507903803431010096001808930200055119 507903803431 937626 621354 S +12:41:46 Slot [429] | NOT FINANCIAL TRANSACTION +12:41:48 +Slot[446] 0200 301000 6688990040163865 ------------- 00 747805 000000000000 507905170008010129006688990040163865 507905170008 306002 621354 S +12:41:54 +Slot[456] 0200 010000 6213544001860805 ------------- 00 944719 000004000000 507901972496030120036213544001860805 507901972496 790806 668899 S +12:41:56 Slot [404] | NOT FINANCIAL TRANSACTION +12:42:06 +Slot[424] 0200 010000 6213545000814743 ------------- 00 251216 000070000000 507900336199010019006213545000814743 507900336199 761891 220699 S +12:42:08 Slot [445] | NOT FINANCIAL TRANSACTION +12:42:14 Slot [435] | NOT FINANCIAL TRANSACTION +12:42:20 +Slot[438] 0200 301000 6688990060012984 ------------- 00 747919 000000000000 507904140796200009006688990060012984 507904140796 144428 621354 S +12:42:24 Slot [442] | NOT FINANCIAL TRANSACTION +12:42:30 +Slot[434] 0200 010000 6688990108612605 ------------- 14 107238 000005000000 507900327843010018006688990108612605 507900327843 473988 220699 S +12:42:35 Slot [427] | NOT FINANCIAL TRANSACTION +12:42:46 Slot [451] | NOT FINANCIAL TRANSACTION +12:42:57 Slot [428] | NOT FINANCIAL TRANSACTION +12:43:09 Slot [462] | NOT FINANCIAL TRANSACTION +12:43:16 Slot [431] | NOT FINANCIAL TRANSACTION +12:43:25 Slot [457] | NOT FINANCIAL TRANSACTION +12:43:31 +Slot[421] 0200 010000 6213545000354070 ------------- 51 269100 000010000000 5079052691000363CPSH6213545000354070 507905269100 782963 180893 S +12:43:43 Slot [422] | NOT FINANCIAL TRANSACTION +12:43:44 +Slot[426] 0200 311000 6213545000837587 ------------- 00 021166 000000000000 507900263115010014006213545000837587 507900263115 543874 220699 S +12:43:58 Slot [465] | NOT FINANCIAL TRANSACTION +12:44:09 Slot [444] | NOT FINANCIAL TRANSACTION +12:44:18 Slot [436] | NOT FINANCIAL TRANSACTION +12:44:21 Slot [439] | NOT FINANCIAL TRANSACTION +12:44:25 +Slot[423] 0200 011000 6213545000837587 ------------- 00 021167 000030000000 507900263116010014006213545000837587 507900263116 850457 220699 S +12:44:36 Slot [458] | NOT FINANCIAL TRANSACTION +12:44:47 Slot [459] | NOT FINANCIAL TRANSACTION +12:44:55 Slot [466] | NOT FINANCIAL TRANSACTION +12:45:03 Slot [452] | NOT FINANCIAL TRANSACTION +12:45:14 Slot [468] | NOT FINANCIAL TRANSACTION +12:45:20 Slot [475] | NOT FINANCIAL TRANSACTION +12:45:24 Slot [455] | NOT FINANCIAL TRANSACTION +12:45:35 Slot [440] | NOT FINANCIAL TRANSACTION +12:45:36 +Slot[449] 0200 301000 6688990106522301 ------------- 00 748516 000000000000 507902783116010072006688990106522301 507902783116 826857 621354 S +12:45:45 Slot [460] | NOT FINANCIAL TRANSACTION +12:45:55 +Slot[482] 0200 010000 6213544001763934 ------------- 51 944895 000070000000 507902093318030200216213544001763934 507902093318 386354 668899 S +12:45:59 +Slot[432] 0200 010000 6213544000936523 ------------- 00 944899 000020000000 507901856436033110016213544000936523 507901856436 565425 668899 S +12:46:02 Slot [495] | NOT FINANCIAL TRANSACTION +12:46:12 +Slot[453] 0200 302000 1808931300002902 ------------- 42 748650 000000000000 507903478308060020001808931300002902 507903478308 171018 621354 S +12:46:19 Slot [488] | NOT FINANCIAL TRANSACTION +12:46:21 Slot [470] | NOT FINANCIAL TRANSACTION +12:46:22 Slot [484] | NOT FINANCIAL TRANSACTION +12:46:34 Slot [490] | NOT FINANCIAL TRANSACTION +12:46:41 +Slot[463] 0200 011000 6688990106522301 ------------- 00 748755 000050000000 507902783118010072006688990106522301 507902783118 222262 621354 S +12:46:45 +Slot[480] 0200 010000 6688990105029506 ------------- 00 748772 000030000000 507902546600050037006688990105029506 507902546600 160379 621354 S +12:46:56 +Slot[448] 0200 010000 1808931300002902 ------------- 00 748826 000100000000 507903478310060020001808931300002902 507903478310 454715 621354 S +12:47:01 Slot [471] | NOT FINANCIAL TRANSACTION +12:47:16 Slot [0] | NOT FINANCIAL TRANSACTION +12:47:19 +Slot[479] 0200 010000 6213548000524742 ------------- 55 944947 000050000000 507901856438033110016213548000524742 507901856438 963173 668899 S +12:47:21 +Slot[2] 0200 300000 6213544002109749 ------------- 00 944948 000000000000 507901373727032090016213544002109749 507901373727 726269 668899 S +12:47:24 Slot [493] | NOT FINANCIAL TRANSACTION +12:47:31 Slot [1] | NOT FINANCIAL TRANSACTION +12:47:40 +Slot[498] 0200 311000 6213544002042122 ------------- 00 168940 000000000000 507900026355010002006213544002042122 507900026355 889292 220699 S +12:47:42 Slot [4] | NOT FINANCIAL TRANSACTION +12:47:44 +Slot[473] 0200 301000 2206990000130492 ------------- 00 749004 000000000000 507904119867080008002206990000130492 507904119867 870100 621354 S +12:47:52 +Slot[489] 0200 300000 6213544002109749 ------------- 00 944961 000000000000 507901373728032090016213544002109749 507901373728 400738 668899 S +12:47:54 Slot [476] | NOT FINANCIAL TRANSACTION +12:48:15 +Slot[483] 0200 010000 1808931300002902 ------------- 00 749085 000100000000 507903478312060020001808931300002902 507903478312 740871 621354 S +12:48:15 Slot [486] | NOT FINANCIAL TRANSACTION +12:48:26 Slot [477] | NOT FINANCIAL TRANSACTION +12:48:26 Slot [474] | NOT FINANCIAL TRANSACTION +12:48:31 +Slot[472] 0200 010000 6213548000524742 ------------- 55 944985 000050000000 507901856440033110016213548000524742 507901856440 404560 668899 S +12:48:37 Slot [6] | NOT FINANCIAL TRANSACTION +12:48:51 +Slot[485] 0200 011000 2206990000130492 ------------- 51 749251 000030000000 507904119869080008002206990000130492 507904119869 070794 621354 S +12:48:53 +Slot[492] 0200 301000 1808930900013103 ------------- 00 749250 000000000000 507902546601050037001808930900013103 507902546601 897527 621354 S +12:48:59 Slot [14] | NOT FINANCIAL TRANSACTION +12:49:06 +Slot[16] 0200 010000 6213548000524742 ------------- 00 945006 000050000000 507901856442033110016213548000524742 507901856442 509794 668899 S +12:49:12 +Slot[454] 0200 010000 1808931300002902 ------------- 00 749310 000100000000 507903478314060020001808931300002902 507903478314 233669 621354 S +12:49:13 +Slot[13] 0200 010000 6213541000670540 ------------- 51 945015 000100000000 507901963563030200196213541000670540 507901963563 667779 668899 S +12:49:14 Slot [12] | NOT FINANCIAL TRANSACTION +12:49:25 Slot [469] | NOT FINANCIAL TRANSACTION +12:49:28 Slot [22] | NOT FINANCIAL TRANSACTION +12:49:41 Slot [494] | NOT FINANCIAL TRANSACTION +12:49:52 +Slot[491] 0200 011000 2206990000130492 ------------- 00 749455 000020000000 507904119871080008002206990000130492 507904119871 622635 621354 S +12:49:55 Slot [17] | NOT FINANCIAL TRANSACTION +12:49:56 +Slot[499] 0200 010000 6213542000025685 ------------- 05 107243 000100000000 507900327846010018006213542000025685 507900327846 494512 220699 S +12:50:02 +Slot[10] 0200 010000 1808931300002902 ------------- 00 749503 000100000000 507903478316060020001808931300002902 507903478316 143999 621354 S +12:50:08 Slot [481] | NOT FINANCIAL TRANSACTION +12:50:10 +Slot[31] 0200 010000 6213544000670692 ------------- 00 269139 000050000000 5079052691390221XKKM6213544000670692 507905269139 867603 180893 S +12:50:20 Slot [29] | NOT FINANCIAL TRANSACTION +12:50:30 Slot [23] | NOT FINANCIAL TRANSACTION +12:50:35 Slot [3] | NOT FINANCIAL TRANSACTION +12:50:50 Slot [11] | NOT FINANCIAL TRANSACTION +12:50:58 +Slot[21] 0200 010000 1808931300002902 ------------- 00 749677 000100000000 507903478318060020001808931300002902 507903478318 617611 621354 S +12:51:05 Slot [33] | NOT FINANCIAL TRANSACTION +12:51:18 +Slot[35] 0200 010000 6213544002109749 ------------- 00 945093 000030000000 507901373731032090016213544002109749 507901373731 624004 668899 S +12:51:19 Slot [496] | NOT FINANCIAL TRANSACTION +12:51:21 Slot [461] | NOT FINANCIAL TRANSACTION +12:51:32 Slot [37] | NOT FINANCIAL TRANSACTION +12:51:33 Slot [30] | NOT FINANCIAL TRANSACTION +12:51:36 Slot [9] | NOT FINANCIAL TRANSACTION +12:51:46 Slot [45] | NOT FINANCIAL TRANSACTION +12:51:52 +Slot[36] 0200 011000 2206990000113787 ------------- 00 749874 000010000000 507904119873080008002206990000113787 507904119873 854160 621354 S +12:51:57 Slot [497] | NOT FINANCIAL TRANSACTION +12:52:12 Slot [18] | NOT FINANCIAL TRANSACTION +12:52:24 Slot [40] | NOT FINANCIAL TRANSACTION +12:52:34 Slot [467] | NOT FINANCIAL TRANSACTION +12:52:35 Slot [8] | NOT FINANCIAL TRANSACTION +12:52:38 +Slot[28] 0200 011000 6213543000028240 ------------- 00 177356 000050000000 507900010231010001006213543000028240 507900010231 922640 220699 S +12:52:46 +Slot[43] 0200 301000 6213544001951166 ------------- 55 205903 000000000000 507912205903015290016213544001951166 507912205903 799317 198901 S +12:52:51 Slot [52] | NOT FINANCIAL TRANSACTION +12:53:04 +Slot[7] 0200 301000 1234010100084169 ------------- 91 749648 000000000000 507903040037010084001234010100084169 507903040037 226991 621354 S +12:53:05 Slot [50] | NOT FINANCIAL TRANSACTION +12:53:16 Slot [25] | NOT FINANCIAL TRANSACTION +12:53:23 +Slot[61] 0200 010000 6213548000308658 ------------- 00 945162 000010000000 507901262012032060016213548000308658 507901262012 450519 668899 S +12:53:25 +Slot[44] 0200 011000 6688990700182502 ------------- 65 750177 000100000000 507903177350040027006688990700182502 507903177350 174610 621354 S +12:53:27 Slot [55] | NOT FINANCIAL TRANSACTION +12:53:32 +Slot[15] 0200 012000 2206990000113787 ------------- 00 750204 000100000000 507904119876080008002206990000113787 507904119876 505356 621354 S +12:53:34 +Slot[478] 0200 300000 6213545000528426 ------------- 00 945168 000000000000 507902150972030200256213545000528426 507902150972 782894 668899 S +12:53:36 Slot [60] | NOT FINANCIAL TRANSACTION +12:53:37 Slot [68] | NOT FINANCIAL TRANSACTION +12:53:48 Slot [73] | NOT FINANCIAL TRANSACTION +12:53:50 +Slot[63] 0200 301000 6213544001951166 ------------- 55 205923 000000000000 507912205923015290016213544001951166 507912205923 172784 198901 S +12:54:03 +Slot[38] 0200 010000 6213545000528426 ------------- 00 945178 000100000000 507902150973030200256213545000528426 507902150973 158919 668899 S +12:54:04 Slot [41] | NOT FINANCIAL TRANSACTION +12:54:12 Slot [464] | NOT FINANCIAL TRANSACTION +12:54:15 Slot [32] | NOT FINANCIAL TRANSACTION +12:54:26 Slot [487] | NOT FINANCIAL TRANSACTION +12:54:38 Slot [26] | NOT FINANCIAL TRANSACTION +12:54:41 +Slot[20] 0200 301000 6213543000248004 ------------- 00 205934 000000000000 507912205934015290186213543000248004 507912205934 473155 198901 S +12:54:42 Slot [48] | NOT FINANCIAL TRANSACTION +12:54:42 +Slot[27] 0200 011000 2206990000113787 ------------- 00 750450 000010000000 507904119878080008002206990000113787 507904119878 107504 621354 S +12:54:55 Slot [46] | NOT FINANCIAL TRANSACTION +12:54:57 Slot [58] | NOT FINANCIAL TRANSACTION +12:55:09 Slot [19] | NOT FINANCIAL TRANSACTION +12:55:17 +Slot[69] 0200 011000 1808930500011697 ------------- 51 750555 000030000000 507903226599040032001808930500011697 507903226599 061052 621354 S +12:55:18 +Slot[47] 0200 300000 6213544001146650 ------------- 55 945220 000000000000 507902150975030200256213544001146650 507902150975 897726 668899 S +12:55:25 Slot [78] | NOT FINANCIAL TRANSACTION +12:55:40 Slot [54] | NOT FINANCIAL TRANSACTION +12:55:40 Slot [81] | NOT FINANCIAL TRANSACTION +12:55:56 Slot [24] | NOT FINANCIAL TRANSACTION +12:56:10 +Slot[42] 0200 011000 1808930500011697 ------------- 51 750715 000005000000 507903226601040032001808930500011697 507903226601 909471 621354 S +12:56:17 +Slot[57] 0200 011000 1808931700028184 ------------- 00 750727 000100000000 507904789404070014001808931700028184 507904789404 780384 621354 S +12:56:18 Slot [34] | NOT FINANCIAL TRANSACTION +12:56:21 Slot [49] | NOT FINANCIAL TRANSACTION +12:56:29 Slot [86] | NOT FINANCIAL TRANSACTION +12:56:42 Slot [89] | NOT FINANCIAL TRANSACTION +12:56:43 Slot [88] | NOT FINANCIAL TRANSACTION +12:56:57 Slot [59] | NOT FINANCIAL TRANSACTION +12:57:07 Slot [79] | NOT FINANCIAL TRANSACTION +12:57:16 +Slot[5] 0200 012000 6213545000409312 ------------- 00 254860 000050000000 507900094424010009006213545000409312 507900094424 734909 220699 S +12:57:18 +Slot[84] 0200 010000 6213544001146650 ------------- 55 945307 000100000000 507902150979030200256213544001146650 507902150979 913403 668899 S +12:57:19 +Slot[67] 0200 010000 1808931700026303 ------------- 55 945309 000100000000 507900123325030200031808931700026303 507900123325 140512 668899 S +12:57:27 Slot [62] | NOT FINANCIAL TRANSACTION +12:57:42 Slot [51] | NOT FINANCIAL TRANSACTION +12:57:44 Slot [39] | NOT FINANCIAL TRANSACTION +12:57:58 Slot [99] | NOT FINANCIAL TRANSACTION +12:58:08 Slot [56] | NOT FINANCIAL TRANSACTION +12:58:08 +Slot[64] 0200 010000 6213545000682595 ------------- 00 945344 000100000000 507902150981030200256213545000682595 507902150981 069635 668899 S +12:58:15 +Slot[82] 0200 012000 6213545000409312 ------------- 00 254863 000050000000 507900094426010009006213545000409312 507900094426 760694 220699 S +12:58:20 Slot [93] | NOT FINANCIAL TRANSACTION +12:58:30 Slot [100] | NOT FINANCIAL TRANSACTION +12:58:42 Slot [91] | NOT FINANCIAL TRANSACTION +12:58:46 Slot [65] | NOT FINANCIAL TRANSACTION +12:58:53 Slot [72] | NOT FINANCIAL TRANSACTION +12:59:00 +Slot[106] 0200 010000 6213545000682595 ------------- 00 945384 000100000000 507902150983030200256213545000682595 507902150983 128624 668899 S +12:59:10 Slot [66] | NOT FINANCIAL TRANSACTION +12:59:19 +Slot[76] 0200 301000 6213544001947255 ------------- 00 945398 000000000000 507902460598038150026213544001947255 507902460598 432648 668899 S +12:59:25 Slot [114] | NOT FINANCIAL TRANSACTION +12:59:29 +Slot[90] 0200 010000 6213541000725930 ------------- 00 269185 000100000000 5079052691850441VT526213541000725930 507905269185 418690 180893 S +12:59:30 +Slot[83] 0200 010000 6213545001057722 ------------- 00 269186 000100000000 5079052691860301LPBX6213545001057722 507905269186 380605 180893 S +12:59:41 Slot [118] | NOT FINANCIAL TRANSACTION +12:59:48 Slot [74] | NOT FINANCIAL TRANSACTION +12:59:52 +Slot[121] 0200 010000 6213545000682595 ------------- 00 945419 000030000000 507902150985030200256213545000682595 507902150985 089132 668899 S +12:59:54 Slot [107] | NOT FINANCIAL TRANSACTION +12:59:55 Slot [115] | NOT FINANCIAL TRANSACTION +13:00:07 Slot [92] | NOT FINANCIAL TRANSACTION +13:00:22 +Slot[108] 0200 301000 1808931800002998 ------------- 00 751523 000000000000 507903624941160015001808931800002998 507903624941 741941 621354 S +13:00:29 Slot [113] | NOT FINANCIAL TRANSACTION +13:00:39 +Slot[94] 0200 010000 6213545000528426 ------------- 00 945460 000070000000 507902150987030200256213545000528426 507902150987 604586 668899 S +13:00:40 Slot [127] | NOT FINANCIAL TRANSACTION +13:00:50 Slot [75] | NOT FINANCIAL TRANSACTION +13:00:51 Slot [53] | NOT FINANCIAL TRANSACTION +13:01:02 Slot [95] | NOT FINANCIAL TRANSACTION +13:01:18 Slot [125] | NOT FINANCIAL TRANSACTION +13:01:21 Slot [98] | NOT FINANCIAL TRANSACTION +13:01:35 +Slot[134] 0200 300000 1808930200040533 ------------- 55 751785 000000000000 507903975371010113001808930200040533 507903975371 189338 621354 S +13:01:44 Slot [103] | NOT FINANCIAL TRANSACTION +13:01:52 +Slot[101] 0200 300000 1808930200040533 ------------- 00 751823 000000000000 507903975372010113001808930200040533 507903975372 120416 621354 S +13:01:52 Slot [96] | NOT FINANCIAL TRANSACTION +13:01:56 +Slot[77] 0200 301000 6688990107354001 ------------- 00 751842 000000000000 507904090014080006006688990107354001 507904090014 187469 621354 S +13:02:01 +Slot[71] 0200 010000 1808931800002998 ------------- 00 751845 000100000000 507903624943160015001808931800002998 507903624943 579520 621354 S +13:02:06 Slot [70] | NOT FINANCIAL TRANSACTION +13:02:22 Slot [102] | NOT FINANCIAL TRANSACTION +13:02:25 +Slot[109] 0200 011000 1808931300012208 ------------- 00 751924 000005000000 507902614103050044001808931300012208 507902614103 579025 621354 S +13:02:28 Slot [85] | NOT FINANCIAL TRANSACTION +13:02:43 Slot [136] | NOT FINANCIAL TRANSACTION +13:02:54 Slot [87] | NOT FINANCIAL TRANSACTION +13:02:54 Slot [129] | NOT FINANCIAL TRANSACTION +13:03:04 +Slot[131] 0200 011000 6688990107354001 ------------- 00 752069 000100000000 507904090016080006006688990107354001 507904090016 185797 621354 S +13:03:11 +Slot[105] 0200 011000 1808931700026303 ------------- 00 752077 000100000000 507902723067010066001808931700026303 507902723067 868346 621354 S +13:03:15 Slot [104] | NOT FINANCIAL TRANSACTION +13:03:25 Slot [138] | NOT FINANCIAL TRANSACTION +13:03:33 +Slot[112] 0200 011000 6213544001657367 ------------- 00 206067 000028000000 507913206067015290016213544001657367 507913206067 127912 198901 S +13:03:36 Slot [116] | NOT FINANCIAL TRANSACTION +13:03:43 +Slot[140] 0200 010000 1808931800002998 ------------- 55 752198 000100000000 507903624945160015001808931800002998 507903624945 777878 621354 S +13:03:52 Slot [97] | NOT FINANCIAL TRANSACTION +13:03:55 +Slot[117] 0200 011000 6688990101019808 ------------- 14 269199 000020000000 5079062691990141HQBR6688990101019808 507906269199 783868 180893 S +13:03:56 Slot [124] | NOT FINANCIAL TRANSACTION +13:04:01 +Slot[111] 0200 010000 1808930200045904 ------------- 55 752263 000100000000 507903919212010107001808930200045904 507903919212 508369 621354 S +13:04:12 +Slot[80] 0200 011000 6688990107354001 ------------- 00 752289 000100000000 507904090018080006006688990107354001 507904090018 859445 621354 S +13:04:15 +Slot[161] 0200 010000 1808931800002998 ------------- 00 752287 000100000000 507903624947160015001808931800002998 507903624947 378953 621354 S +13:04:16 +Slot[147] 0200 010000 1808930200045904 ------------- 55 752302 000100000000 507903919214010107001808930200045904 507903919214 032437 621354 S +13:04:24 Slot [123] | NOT FINANCIAL TRANSACTION +13:04:40 +Slot[122] 0200 010000 1808930200045904 ------------- 00 752389 000100000000 507903919216010107001808930200045904 507903919216 345253 621354 S +13:04:45 +Slot[162] 0200 301000 6688990101019808 ------------- 14 269201 032006034926 5079062692010141HQBR6688990101019808 507906269201 865513 180893 S +13:04:47 +Slot[132] 0200 012000 6688990040119149 ------------- 00 752426 000080000000 507903325002130012006688990040119149 507903325002 038663 621354 S +13:04:55 Slot [145] | NOT FINANCIAL TRANSACTION +13:04:57 Slot [158] | NOT FINANCIAL TRANSACTION +13:04:58 Slot [154] | NOT FINANCIAL TRANSACTION +13:05:12 Slot [143] | NOT FINANCIAL TRANSACTION +13:05:20 +Slot[166] 0200 011000 6688990107354001 ------------- 00 752527 000100000000 507904090020080006006688990107354001 507904090020 322774 621354 S +13:05:28 Slot [120] | NOT FINANCIAL TRANSACTION +13:05:39 +Slot[153] 0200 010000 6213545001056344 ------------- 00 945655 000030000000 507902150990030200256213545001056344 507902150990 922240 668899 S +13:05:41 +Slot[133] 0200 010000 1808931800002998 ------------- 00 752558 000100000000 507903624949160015001808931800002998 507903624949 804796 621354 S +13:05:47 +Slot[150] 0200 010000 1808930200045904 ------------- 00 752583 000050000000 507903919218010107001808930200045904 507903919218 016486 621354 S +13:05:49 Slot [110] | NOT FINANCIAL TRANSACTION +13:05:51 +Slot[130] 0200 301000 6213544001999496 ------------- 00 206109 000000000000 507913206109015290196213544001999496 507913206109 241632 198901 S +13:06:00 Slot [142] | NOT FINANCIAL TRANSACTION +13:06:00 Slot [167] | NOT FINANCIAL TRANSACTION +13:06:12 Slot [159] | NOT FINANCIAL TRANSACTION +13:06:22 Slot [137] | NOT FINANCIAL TRANSACTION +13:06:28 Slot [128] | NOT FINANCIAL TRANSACTION +13:06:32 +Slot[175] 0200 011000 6213544001999496 ------------- 00 206127 000077000000 507913206127015290196213544001999496 507913206127 094333 198901 S +13:06:41 Slot [146] | NOT FINANCIAL TRANSACTION +13:06:56 Slot [170] | NOT FINANCIAL TRANSACTION +13:07:01 +Slot[141] 0200 311000 6213545000761415 ------------- 00 003100 000000000000 507900186752080001006213545000761415 507900186752 673516 220699 S +13:07:02 Slot [157] | NOT FINANCIAL TRANSACTION +13:07:07 Slot [151] | NOT FINANCIAL TRANSACTION +13:07:12 +Slot[172] 0200 010000 6688990060026430 ------------- 00 752854 000020000000 507904153894200010006688990060026430 507904153894 530905 621354 S +13:07:17 Slot [164] | NOT FINANCIAL TRANSACTION +13:07:31 +Slot[186] 0200 011000 1808931700026303 ------------- 00 752915 000015000000 507902723079010066001808931700026303 507902723079 406163 621354 S +13:07:36 +Slot[148] 0200 300000 6213545000774046 ------------- 00 945732 000000000000 507901963576030200196213545000774046 507901963576 626391 668899 S +13:07:38 Slot [126] | NOT FINANCIAL TRANSACTION +13:07:43 +Slot[171] 0200 010000 6213545000761415 ------------- 00 003101 000100000000 507900186753080001006213545000761415 507900186753 676942 220699 S +13:07:49 Slot [119] | NOT FINANCIAL TRANSACTION +13:07:56 +Slot[139] 0200 301000 6213544001043030 ------------- 00 945748 000000000000 507900123333030200036213544001043030 507900123333 040934 668899 S +13:08:00 Slot [182] | NOT FINANCIAL TRANSACTION +13:08:04 Slot [176] | NOT FINANCIAL TRANSACTION +13:08:08 +Slot[202] 0200 010000 6213544000512969 ------------- 55 269216 000050000000 5079062692160105XTNY6213544000512969 507906269216 579687 180893 S +13:08:18 +Slot[187] 0200 301000 6213544001043030 ------------- 00 945768 000000000000 507900123334030200036213544001043030 507900123334 755230 668899 S +13:08:20 Slot [160] | NOT FINANCIAL TRANSACTION +13:08:26 +Slot[156] 0200 300000 6213545000774046 ------------- 00 945775 000000000000 507901963578030200196213545000774046 507901963578 774517 668899 S +13:08:32 Slot [203] | NOT FINANCIAL TRANSACTION +13:08:36 +Slot[144] 0200 310000 6213545000211536 ------------- 55 168942 000000000000 507900026357010002006213545000211536 507900026357 304974 220699 S +13:08:48 Slot [163] | NOT FINANCIAL TRANSACTION +13:08:48 +Slot[179] 0200 010000 6213544001043030 ------------- 00 945786 000010000000 507900123335030200036213544001043030 507900123335 000783 668899 S +13:08:55 +Slot[204] 0200 300000 6213545000774046 ------------- 00 945792 000000000000 507901963579030200196213545000774046 507901963579 212798 668899 S +13:08:58 +Slot[135] 0200 311000 6213544002236872 ------------- 00 107246 000000000000 507900327848010018006213544002236872 507900327848 072417 220699 S +13:09:04 Slot [152] | NOT FINANCIAL TRANSACTION +13:09:06 Slot [192] | NOT FINANCIAL TRANSACTION +13:09:11 +Slot[191] 0200 011000 6213541000709744 ------------- 00 206172 000100000000 507913206172145290016213541000709744 507913206172 901951 198901 S +13:09:14 Slot [190] | NOT FINANCIAL TRANSACTION +13:09:26 +Slot[196] 0200 010000 6213544000512969 ------------- 00 269222 000050000000 5079062692220105XTNY6213544000512969 507906269222 008082 180893 S +13:09:27 +Slot[155] 0200 010000 6213545000761415 ------------- 51 003104 000030000000 507900186755080001006213545000761415 507900186755 669475 220699 S +13:09:30 +Slot[198] 0200 011000 6213544002236872 ------------- 00 107247 000010000000 507900327849010018006213544002236872 507900327849 557567 220699 S +13:09:36 Slot [181] | NOT FINANCIAL TRANSACTION +13:09:41 +Slot[201] 0200 011000 6213541000709744 ------------- 00 206181 000100000000 507913206181145290016213541000709744 507913206181 404769 198901 S +13:09:46 +Slot[214] 0200 010000 6688990040136473 ------------- 61 269225 000200000000 5079062692250321LNTV6688990040136473 507906269225 900070 180893 S +13:09:55 Slot [165] | NOT FINANCIAL TRANSACTION +13:09:56 +Slot[194] 0200 011000 6213548000021020 ------------- 00 206186 000010000000 507913206186015290316213548000021020 507913206186 534845 198901 S +13:09:59 Slot [209] | NOT FINANCIAL TRANSACTION +13:10:03 +Slot[195] 0200 010000 6213545000774046 ------------- 00 945838 000030000000 507901963581030200196213545000774046 507901963581 498860 668899 S +13:10:08 +Slot[178] 0200 011000 6213541000709744 ------------- 00 206189 000100000000 507913206189145290016213541000709744 507913206189 195349 198901 S +13:10:08 Slot [184] | NOT FINANCIAL TRANSACTION +13:10:10 Slot [206] | NOT FINANCIAL TRANSACTION +13:10:18 +Slot[213] 0200 010000 1808930200007607 ------------- 00 945848 000010000000 507900123337030200031808930200007607 507900123337 810639 668899 S +13:10:21 +Slot[193] 0200 010000 6213545000761415 ------------- 55 003107 000010000000 507900186757080001006213545000761415 507900186757 772194 220699 S +13:10:25 +Slot[221] 0200 301000 1808930200040533 ------------- 00 753505 000000000000 507903975391010113001808930200040533 507903975391 691400 621354 S +13:10:32 Slot [212] | NOT FINANCIAL TRANSACTION +13:10:43 Slot [207] | NOT FINANCIAL TRANSACTION +13:10:54 Slot [208] | NOT FINANCIAL TRANSACTION +13:10:54 Slot [183] | NOT FINANCIAL TRANSACTION +13:11:05 Slot [211] | NOT FINANCIAL TRANSACTION +13:11:10 Slot [230] | NOT FINANCIAL TRANSACTION +13:11:11 +Slot[169] 0200 010000 6688990040136473 ------------- 61 269230 000150000000 5079062692300321LNTV6688990040136473 507906269230 031948 180893 S +13:11:21 +Slot[185] 0200 010000 6213545000761415 ------------- 00 003110 000010000000 507900186759080001006213545000761415 507900186759 046888 220699 S +13:11:21 Slot [189] | NOT FINANCIAL TRANSACTION +13:11:22 Slot [205] | NOT FINANCIAL TRANSACTION +13:11:36 Slot [149] | NOT FINANCIAL TRANSACTION +13:11:51 +Slot[232] 0200 011000 6688990101019808 ------------- 14 269233 000018000000 5079062692330141HQBR6688990101019808 507906269233 587099 180893 S +13:11:53 +Slot[168] 0200 301000 6213545000697627 ------------- 00 269234 032006105626 5079062692340221XKKM6213545000697627 507906269234 700471 180893 S +13:12:05 Slot [180] | NOT FINANCIAL TRANSACTION +13:12:12 Slot [174] | NOT FINANCIAL TRANSACTION +13:12:20 Slot [222] | NOT FINANCIAL TRANSACTION +13:12:29 +Slot[173] 0200 010000 6213545000761415 ------------- 00 003113 000010000000 507900186761080001006213545000761415 507900186761 918069 220699 S +13:12:36 Slot [229] | NOT FINANCIAL TRANSACTION +13:12:48 Slot [188] | NOT FINANCIAL TRANSACTION +13:13:00 Slot [223] | NOT FINANCIAL TRANSACTION +13:13:09 Slot [246] | NOT FINANCIAL TRANSACTION +13:13:12 Slot [215] | NOT FINANCIAL TRANSACTION +13:13:14 Slot [243] | NOT FINANCIAL TRANSACTION +13:13:16 +Slot[248] 0200 010000 6213545000324131 ------------- 00 945935 000010000000 507901373754032090016213545000324131 507901373754 695546 668899 S +13:13:28 Slot [244] | NOT FINANCIAL TRANSACTION +13:13:38 Slot [227] | NOT FINANCIAL TRANSACTION +13:13:49 Slot [235] | NOT FINANCIAL TRANSACTION +13:14:04 +Slot[251] 0200 010000 6213545000181192 ------------- 51 945957 000080000000 507901841858030090046213545000181192 507901841858 949983 668899 S +13:14:05 Slot [250] | NOT FINANCIAL TRANSACTION +13:14:16 Slot [226] | NOT FINANCIAL TRANSACTION +13:14:16 Slot [177] | NOT FINANCIAL TRANSACTION +13:14:27 Slot [242] | NOT FINANCIAL TRANSACTION +13:14:36 +Slot[255] 0200 010000 6213545000181192 ------------- 51 945979 000079000000 507901841859030090046213545000181192 507901841859 135744 668899 S +13:14:38 Slot [233] | NOT FINANCIAL TRANSACTION +13:14:51 +Slot[200] 0200 010000 6213545000181192 ------------- 00 945987 000050000000 507901841860030090046213545000181192 507901841860 143346 668899 S +13:14:54 Slot [238] | NOT FINANCIAL TRANSACTION +13:14:55 Slot [237] | NOT FINANCIAL TRANSACTION +13:15:05 Slot [216] | NOT FINANCIAL TRANSACTION +13:15:16 Slot [253] | NOT FINANCIAL TRANSACTION +13:15:18 Slot [260] | NOT FINANCIAL TRANSACTION +13:15:28 Slot [234] | NOT FINANCIAL TRANSACTION +13:15:41 +Slot[249] 0200 311000 6213541000560857 ------------- 00 168948 000000000000 507900026360010002006213541000560857 507900026360 203710 220699 S +13:15:43 Slot [210] | NOT FINANCIAL TRANSACTION +13:15:49 +Slot[259] 0200 010000 6213545000324131 ------------- 00 946014 000050000000 507901373756032090016213545000324131 507901373756 715001 668899 S +13:15:55 Slot [263] | NOT FINANCIAL TRANSACTION +13:15:59 +Slot[261] 0200 011000 6213541000457278 ------------- 00 251226 000100000000 507900336206010019006213541000457278 507900336206 035564 220699 S +13:16:08 Slot [225] | NOT FINANCIAL TRANSACTION +13:16:19 Slot [270] | NOT FINANCIAL TRANSACTION +13:16:20 Slot [199] | NOT FINANCIAL TRANSACTION +13:16:22 Slot [269] | NOT FINANCIAL TRANSACTION +13:16:34 Slot [240] | NOT FINANCIAL TRANSACTION +13:16:35 +Slot[275] 0200 010000 6213544001886859 ------------- 00 946050 000010000000 507902093324030200216213544001886859 507902093324 620633 668899 S +13:16:45 Slot [228] | NOT FINANCIAL TRANSACTION +13:17:02 Slot [256] | NOT FINANCIAL TRANSACTION +13:17:13 Slot [197] | NOT FINANCIAL TRANSACTION +13:17:22 Slot [265] | NOT FINANCIAL TRANSACTION +13:17:24 Slot [218] | NOT FINANCIAL TRANSACTION +13:17:34 +Slot[274] 0200 011000 6213541000457278 ------------- 00 251229 000100000000 507900336208010019006213541000457278 507900336208 863586 220699 S +13:17:35 Slot [247] | NOT FINANCIAL TRANSACTION +13:17:50 Slot [279] | NOT FINANCIAL TRANSACTION +13:18:06 Slot [231] | NOT FINANCIAL TRANSACTION +13:18:21 Slot [273] | NOT FINANCIAL TRANSACTION +13:18:21 +Slot[264] 0200 302000 6688990101320305 ------------- 00 755239 000000000000 507903032166120026006688990101320305 507903032166 294275 621354 S +13:18:24 Slot [220] | NOT FINANCIAL TRANSACTION +13:18:28 +Slot[254] 0200 012000 6213544001066643 ------------- 00 269262 000020000000 5079062692620401XSBR6213544001066643 507906269262 406887 180893 S +13:18:41 +Slot[282] 0200 011000 6213541000457278 ------------- 00 251232 000100000000 507900336210010019006213541000457278 507900336210 780587 220699 S +13:18:41 Slot [239] | NOT FINANCIAL TRANSACTION +13:18:51 Slot [276] | NOT FINANCIAL TRANSACTION +13:19:02 Slot [272] | NOT FINANCIAL TRANSACTION +13:19:12 Slot [252] | NOT FINANCIAL TRANSACTION +13:19:15 +Slot[266] 0200 010000 6213545000794127 ------------- 00 946165 000005000000 507901161649032170016213545000794127 507901161649 433516 668899 S +13:19:26 Slot [241] | NOT FINANCIAL TRANSACTION +13:19:27 Slot [280] | NOT FINANCIAL TRANSACTION +13:19:43 Slot [258] | NOT FINANCIAL TRANSACTION +13:19:51 +Slot[284] 0200 011000 6213541000457278 ------------- 00 251235 000100000000 507900336212010019006213541000457278 507900336212 874950 220699 S +13:19:55 Slot [219] | NOT FINANCIAL TRANSACTION +13:20:09 Slot [287] | NOT FINANCIAL TRANSACTION +13:20:16 +Slot[224] 0200 010000 6213545000181192 ------------- 51 946216 000029000000 507901841862030090046213545000181192 507901841862 971537 668899 S +13:20:20 Slot [277] | NOT FINANCIAL TRANSACTION +13:20:28 Slot [290] | NOT FINANCIAL TRANSACTION +13:20:33 +Slot[267] 0420 011000 1808930500003637 ------------- 00 755591 000080000000 507903177369040027001808930500003637 507903177369 -------- 621354 S +13:20:36 +Slot[294] 0420 010000 6213545000794127 ------------- 00 946165 000005000000 507901161649032170016213545000794127 507901161649 -------- 668899 S +13:20:36 Slot [271] | NOT FINANCIAL TRANSACTION +13:20:39 +Slot[245] 0200 011000 1808930500003637 ------------- 91 755591 000080000000 507903177369040027001808930500003637 507903177369 670428 621354 S +13:20:43 +Slot[236] 0200 010000 6688990102723002 ------------- 00 755734 000005000000 507904707435180009006688990102723002 507904707435 084590 621354 S +13:20:45 +Slot[303] 0200 010000 6213545000181192 ------------- 51 946237 000002000000 507901841863030090046213545000181192 507901841863 250319 668899 S +13:20:47 Slot [217] | NOT FINANCIAL TRANSACTION +13:20:59 Slot [298] | NOT FINANCIAL TRANSACTION +13:21:01 +Slot[293] 0200 011000 6213541000457278 ------------- 00 251238 000100000000 507900336214010019006213541000457278 507900336214 372302 220699 S +13:21:11 Slot [278] | NOT FINANCIAL TRANSACTION +13:21:22 Slot [257] | NOT FINANCIAL TRANSACTION +13:21:24 Slot [299] | NOT FINANCIAL TRANSACTION +13:21:30 Slot [300] | NOT FINANCIAL TRANSACTION +13:21:39 Slot [281] | NOT FINANCIAL TRANSACTION +13:21:40 +Slot[295] 0200 010000 6213544001957619 ------------- 00 946276 000030000000 507901841865030090046213544001957619 507901841865 782891 668899 S +13:21:46 +Slot[296] 0420 011000 1808930500003637 0000000000000 12 755591 000080000000 507903177369040027001808930500003637 507903177369 -------- 621354 S +13:21:49 +Slot[308] 0420 010000 6213545000794127 0000000000000 00 946165 000005000000 507901161649032170016213545000794127 507901161649 502395 668899 S +13:21:56 Slot [286] | NOT FINANCIAL TRANSACTION +13:22:11 Slot [316] | NOT FINANCIAL TRANSACTION +13:22:17 +Slot[283] 0200 010000 6213544002037452 ------------- 51 946302 000070000000 507902209922030060096213544002037452 507902209922 781954 668899 S +13:22:18 +Slot[311] 0200 010000 6213544002246913 ------------- 51 946304 000010000000 507900285810030100056213544002246913 507900285810 270316 668899 S +13:22:24 Slot [312] | NOT FINANCIAL TRANSACTION +13:22:32 Slot [306] | NOT FINANCIAL TRANSACTION +13:22:36 +Slot[310] 0200 010000 6213544002037452 ------------- 00 946315 000010000000 507902209923030060096213544002037452 507902209923 490864 668899 S +13:22:39 Slot [307] | NOT FINANCIAL TRANSACTION +13:22:50 Slot [317] | NOT FINANCIAL TRANSACTION +13:23:07 Slot [288] | NOT FINANCIAL TRANSACTION +13:23:18 Slot [318] | NOT FINANCIAL TRANSACTION +13:23:32 Slot [322] | NOT FINANCIAL TRANSACTION +13:23:34 Slot [315] | NOT FINANCIAL TRANSACTION +13:23:45 Slot [325] | NOT FINANCIAL TRANSACTION +13:23:48 +Slot[304] 0200 010000 6213545000786974 ------------- 00 946357 000010000000 507902209925030060096213545000786974 507902209925 940143 668899 S +13:23:55 Slot [285] | NOT FINANCIAL TRANSACTION +13:24:01 Slot [297] | NOT FINANCIAL TRANSACTION +13:24:05 +Slot[289] 0200 300000 6688990030009680 ------------- 00 756419 000000000000 507904724307180011006688990030009680 507904724307 615267 621354 S +13:24:07 +Slot[291] 0200 301000 6213548000216877 ------------- 00 269284 032006230926 5079062692840522XYXH6213548000216877 507906269284 229411 180893 S +13:24:15 +Slot[326] 0200 011000 1808930500003637 ------------- 00 756425 000080000000 507903177378040027001808930500003637 507903177378 629431 621354 S +13:24:18 Slot [301] | NOT FINANCIAL TRANSACTION +13:24:28 +Slot[327] 0200 012000 6688990107228205 ------------- 51 756512 000025000000 507904153897200010006688990107228205 507904153897 197646 621354 S +13:24:34 Slot [305] | NOT FINANCIAL TRANSACTION +13:24:36 Slot [314] | NOT FINANCIAL TRANSACTION +13:24:44 Slot [302] | NOT FINANCIAL TRANSACTION +13:24:55 Slot [331] | NOT FINANCIAL TRANSACTION +13:25:00 +Slot[292] 0200 012000 6688990030009680 ------------- 00 756638 000100000000 507904724310180011006688990030009680 507904724310 325628 621354 S +13:25:02 +Slot[333] 0200 010000 6213548000216877 ------------- 00 269288 000050000000 5079062692880522XYXH6213548000216877 507906269288 914823 180893 S +13:25:09 +Slot[262] 0200 302000 6213548000144046 ------------- 00 946416 000000000000 507901215068030200136213548000144046 507901215068 459063 668899 S +13:25:11 Slot [335] | NOT FINANCIAL TRANSACTION +13:25:21 +Slot[334] 0200 011000 6688990040045377 ------------- 00 756742 000005000000 507902634787140002006688990040045377 507902634787 975501 621354 S +13:25:21 Slot [321] | NOT FINANCIAL TRANSACTION +13:25:32 Slot [336] | NOT FINANCIAL TRANSACTION +13:25:38 Slot [320] | NOT FINANCIAL TRANSACTION +13:25:44 Slot [342] | NOT FINANCIAL TRANSACTION +13:26:08 Slot [323] | NOT FINANCIAL TRANSACTION +13:26:18 +Slot[268] 0200 010000 6688990030009680 ------------- 00 756935 000005000000 507904724312180011006688990030009680 507904724312 625499 621354 S +13:26:21 Slot [339] | NOT FINANCIAL TRANSACTION +13:26:22 Slot [348] | NOT FINANCIAL TRANSACTION +13:26:32 +Slot[341] 0200 010000 1808930300021185 ------------- 91 756879 000010000000 507904898543010122001808930300021185 507904898543 146362 621354 S +13:26:34 +Slot[329] 0420 010000 1808930300021185 ------------- 00 756879 000010000000 507904898543010122001808930300021185 507904898543 -------- 621354 S +13:26:38 +Slot[352] 0200 301000 6213548000144046 ------------- 00 946472 000000000000 507901215070030200136213548000144046 507901215070 975698 668899 S +13:26:38 Slot [309] | NOT FINANCIAL TRANSACTION +13:26:40 Slot [328] | NOT FINANCIAL TRANSACTION +13:26:47 +Slot[337] 0200 010000 1999990000002942 ------------- 00 757059 000100000000 507904031760090017001999990000002942 507904031760 694239 621354 S +13:26:53 +Slot[347] 0200 010000 1808930300021185 ------------- 00 757085 000010000000 507904898545010122001808930300021185 507904898545 269236 621354 S +13:26:54 +Slot[346] 0200 300000 6688990107228205 ------------- 00 757101 000000000000 507904153899200010006688990107228205 507904153899 221062 621354 S +13:26:55 Slot [350] | NOT FINANCIAL TRANSACTION +13:27:06 +Slot[319] 0200 010000 6213545000308746 ------------- 00 946488 000100000000 507902150998030200256213545000308746 507902150998 931990 668899 S +13:27:09 +Slot[357] 0200 010000 6688990030009680 ------------- 00 757142 000010000000 507904724314180011006688990030009680 507904724314 755229 621354 S +13:27:10 +Slot[356] 0200 010000 6213548000144046 ------------- 51 946493 000010000000 507901215071030200136213548000144046 507901215071 306237 668899 S +13:27:10 +Slot[330] 0200 301000 6213544001210860 ------------- 00 269296 032006261026 5079062692960118UDBR6213544001210860 507906269296 791755 180893 S +13:27:22 +Slot[332] 0200 300000 6213548000144046 ------------- 00 946502 000000000000 507901215072030200136213548000144046 507901215072 784683 668899 S +13:27:23 Slot [365] | NOT FINANCIAL TRANSACTION +13:27:33 +Slot[366] 0200 011000 6688990104779903 ------------- 00 757232 000100000000 507902827029010076006688990104779903 507902827029 238441 621354 S +13:27:36 Slot [371] | NOT FINANCIAL TRANSACTION +13:27:39 Slot [313] | NOT FINANCIAL TRANSACTION +13:27:42 Slot [343] | NOT FINANCIAL TRANSACTION +13:27:48 +Slot[378] 0420 010000 1808930300021185 0000000000000 12 756879 000010000000 507904898543010122001808930300021185 507904898543 -------- 621354 S +13:27:53 +Slot[340] 0200 300000 6213544002213004 ------------- 00 946519 000000000000 507901912189030130046213544002213004 507901912189 505304 668899 S +13:27:59 +Slot[345] 0200 010000 1999990000002942 ------------- 91 756811 000100000000 507904025614090016001999990000002942 507904025614 984638 621354 S +13:28:00 Slot [373] | NOT FINANCIAL TRANSACTION +13:28:07 +Slot[324] 0200 010000 6213545000794127 ------------- 00 946531 000005000000 507901161651032170016213545000794127 507901161651 276125 668899 S +13:28:10 Slot [382] | NOT FINANCIAL TRANSACTION +13:28:20 +Slot[355] 0200 010000 6213544001537445 ------------- 00 946539 000005000000 507900555142030140036213544001537445 507900555142 934486 668899 S +13:28:22 Slot [353] | NOT FINANCIAL TRANSACTION +13:28:28 +Slot[363] 0200 010000 6213541000511785 ------------- 00 946543 000050000000 507902336386032170026213541000511785 507902336386 869495 668899 S +13:28:29 +Slot[344] 0200 010000 1999990000002942 ------------- 91 756927 000100000000 507904031758090017001999990000002942 507904031758 236954 621354 S +13:28:37 Slot [370] | NOT FINANCIAL TRANSACTION +13:28:44 Slot [358] | NOT FINANCIAL TRANSACTION +13:28:53 Slot [369] | NOT FINANCIAL TRANSACTION +13:28:53 +Slot[360] 0200 012000 6688990107228205 ------------- 51 757516 000025000000 507904153902200010006688990107228205 507904153902 370809 621354 S +13:28:59 +Slot[379] 0200 300000 6213544000116316 ------------- 00 946564 000000000000 507901881397030140066213544000116316 507901881397 559604 668899 S +13:29:09 Slot [338] | NOT FINANCIAL TRANSACTION +13:29:20 Slot [396] | NOT FINANCIAL TRANSACTION +13:29:20 +Slot[354] 0200 010000 6213545000308746 ------------- 00 946579 000100000000 507902151000030200256213545000308746 507902151000 784032 668899 S +13:29:31 +Slot[351] 0200 010000 6213545000286231 ------------- 00 085597 000020000000 507900140215030002006213545000286231 507900140215 411473 220699 S +13:29:35 Slot [389] | NOT FINANCIAL TRANSACTION +13:29:41 +Slot[390] 0200 010000 6213544002213004 ------------- 51 946594 000050000000 507901912191030130046213544002213004 507901912191 430341 668899 S +13:29:42 +Slot[361] 0200 301000 6213545000512958 ------------- 00 269305 032006284526 5079062693050112CPBR6213545000512958 507906269305 897740 180893 S +13:29:46 Slot [376] | NOT FINANCIAL TRANSACTION +13:29:52 Slot [374] | NOT FINANCIAL TRANSACTION +13:29:53 +Slot[359] 0200 010000 2206990000070185 ------------- 00 757754 000100000000 507904807742070016002206990000070185 507904807742 285621 621354 S +13:29:55 Slot [410] | NOT FINANCIAL TRANSACTION +13:30:02 Slot [383] | NOT FINANCIAL TRANSACTION +13:30:05 +Slot[395] 0200 301000 6213544002213004 ------------- 00 946611 000000000000 507901912192030130046213544002213004 507901912192 750643 668899 S +13:30:07 +Slot[393] 0200 010000 6213544000116316 ------------- 00 946613 000100000000 507901881398030140066213544000116316 507901881398 957913 668899 S +13:30:19 Slot [400] | NOT FINANCIAL TRANSACTION +13:30:34 Slot [397] | NOT FINANCIAL TRANSACTION +13:30:48 Slot [349] | NOT FINANCIAL TRANSACTION +13:30:48 Slot [413] | NOT FINANCIAL TRANSACTION +13:31:04 Slot [394] | NOT FINANCIAL TRANSACTION +13:31:11 +Slot[414] 0200 300000 6213544002213004 ------------- 00 946661 000000000000 507901912194030130046213544002213004 507901912194 770482 668899 S +13:31:17 Slot [399] | NOT FINANCIAL TRANSACTION +13:31:21 Slot [387] | NOT FINANCIAL TRANSACTION +13:31:32 Slot [418] | NOT FINANCIAL TRANSACTION +13:31:33 +Slot[372] 0200 010000 6213545000327126 ------------- 00 946678 000100000000 507902336389032170026213545000327126 507902336389 060361 668899 S +13:31:44 +Slot[368] 0200 302000 6213544002213004 ------------- 00 946688 000000000000 507901912195030130046213544002213004 507901912195 278922 668899 S +13:31:45 +Slot[419] 0200 010000 6213545000990303 ------------- 61 269317 000200000000 5079062693170366SKTT6213545000990303 507906269317 546620 180893 S +13:31:50 Slot [406] | NOT FINANCIAL TRANSACTION +13:31:57 Slot [411] | NOT FINANCIAL TRANSACTION +13:32:13 Slot [407] | NOT FINANCIAL TRANSACTION +13:32:24 Slot [416] | NOT FINANCIAL TRANSACTION +13:32:35 +Slot[380] 0200 302000 6213544002213004 ------------- 00 946731 000000000000 507901912197030130046213544002213004 507901912197 100360 668899 S +13:32:41 Slot [384] | NOT FINANCIAL TRANSACTION +13:32:52 Slot [420] | NOT FINANCIAL TRANSACTION +13:32:56 Slot [381] | NOT FINANCIAL TRANSACTION +13:33:07 Slot [415] | NOT FINANCIAL TRANSACTION +13:33:11 +Slot[401] 0200 010000 6213541000701212 ------------- 51 946755 000100000000 507902151002030200256213541000701212 507902151002 446406 668899 S +13:33:16 +Slot[425] 0200 311000 6213544002092192 ------------- 14 167756 000000000000 507900175078070001006213544002092192 507900175078 842935 220699 S +13:33:18 Slot [398] | NOT FINANCIAL TRANSACTION +13:33:24 +Slot[433] 0200 301000 6213544001779724 ------------- 00 269326 032006322626 5079062693260221XKKM6213544001779724 507906269326 994317 180893 S +13:33:26 +Slot[388] 0200 010000 6213541000701212 ------------- 51 946760 000050000000 507902151003030200256213541000701212 507902151003 154651 668899 S +13:33:34 Slot [364] | NOT FINANCIAL TRANSACTION +13:33:41 +Slot[367] 0200 300000 6213544002213004 ------------- 00 946768 000000000000 507901912199030130046213544002213004 507901912199 178656 668899 S +13:33:42 +Slot[430] 0200 010000 6213541000701212 ------------- 00 946769 000020000000 507902151004030200256213541000701212 507902151004 967462 668899 S +13:33:47 Slot [409] | NOT FINANCIAL TRANSACTION +13:33:47 +Slot[441] 0200 311000 6213544002092192 ------------- 14 167759 000000000000 507900175080070001006213544002092192 507900175080 969437 220699 S +13:33:54 Slot [437] | NOT FINANCIAL TRANSACTION +13:33:58 Slot [402] | NOT FINANCIAL TRANSACTION +13:34:05 +Slot[408] 0200 010000 6213548000001345 ------------- 55 269330 000010000000 5079062693300301LPBX6213548000001345 507906269330 952554 180893 S +13:34:09 +Slot[403] 0200 301000 6213544001177762 ------------- 00 206522 000000000000 507913206522195290016213544001177762 507913206522 206294 198901 S +13:34:13 Slot [362] | NOT FINANCIAL TRANSACTION +13:34:24 Slot [385] | NOT FINANCIAL TRANSACTION +13:34:29 +Slot[375] 0200 301000 6688990107228205 ------------- 00 758799 000000000000 507904153922200010006688990107228205 507904153922 676022 621354 S +13:34:41 Slot [392] | NOT FINANCIAL TRANSACTION +13:34:42 +Slot[412] 0200 010000 1808930600037402 ------------- 00 946807 000020000000 507901443605034140011808930600037402 507901443605 080744 668899 S +13:34:47 Slot [447] | NOT FINANCIAL TRANSACTION +13:34:52 +Slot[450] 0200 010000 6213548000001345 ------------- 55 269334 000010000000 5079062693340301LPBX6213548000001345 507906269334 773584 180893 S +13:34:54 Slot [391] | NOT FINANCIAL TRANSACTION +13:34:56 Slot [417] | NOT FINANCIAL TRANSACTION +13:35:05 Slot [443] | NOT FINANCIAL TRANSACTION +13:35:14 +Slot[377] 0420 010000 1808930600037402 ------------- 00 946807 000020000000 507901443605034140011808930600037402 507901443605 -------- 668899 S +13:35:19 Slot [405] | NOT FINANCIAL TRANSACTION +13:35:27 +Slot[386] 0200 010000 6213548000001345 ------------- 75 269337 000010000000 5079062693370301LPBX6213548000001345 507906269337 090091 180893 S +13:35:34 +Slot[429] 0200 301000 6688990107228205 ------------- 00 759054 000000000000 507904153923200010006688990107228205 507904153923 321656 621354 S +13:35:40 Slot [446] | NOT FINANCIAL TRANSACTION +13:35:55 Slot [456] | NOT FINANCIAL TRANSACTION +13:35:58 Slot [404] | NOT FINANCIAL TRANSACTION +13:36:03 +Slot[424] 0200 300000 6688990040124321 ------------- 00 759158 000000000000 507904698909180008006688990040124321 507904698909 149801 621354 S +13:36:06 Slot [445] | NOT FINANCIAL TRANSACTION +13:36:21 Slot [435] | NOT FINANCIAL TRANSACTION +13:36:23 Slot [442] | NOT FINANCIAL TRANSACTION +13:36:26 +Slot[438] 0200 010000 6213544002213004 ------------- 51 946881 000050000000 507901912201030130046213544002213004 507901912201 612383 668899 S +13:36:29 +Slot[434] 0420 010000 1808930600037402 0000000000000 00 946807 000020000000 507901443605034140011808930600037402 507901443605 946807 668899 S +13:36:31 +Slot[427] 0200 301000 6213541000311392 ------------- 00 269340 032006353326 5079062693400301LPBX6213541000311392 507906269340 013395 180893 S +13:36:35 +Slot[451] 0200 301000 6213544001274247 ------------- 00 206562 000000000000 507913206562115290016213544001274247 507913206562 252774 198901 S +13:36:41 +Slot[428] 0200 301000 6213544002213004 ------------- 00 946890 000000000000 507901912202030130046213544002213004 507901912202 062140 668899 S +13:36:43 Slot [462] | NOT FINANCIAL TRANSACTION +13:36:55 Slot [431] | NOT FINANCIAL TRANSACTION +13:37:00 Slot [457] | NOT FINANCIAL TRANSACTION +13:37:05 +Slot[421] 0200 010000 6688990040124321 ------------- 00 759396 000100000000 507904698911180008006688990040124321 507904698911 083416 621354 S +13:37:06 Slot [426] | NOT FINANCIAL TRANSACTION +13:37:06 +Slot[422] 0200 011000 6213544001274247 ------------- 00 206566 000100000000 507913206566115290016213544001274247 507913206566 174307 198901 S +13:37:13 +Slot[465] 0200 011000 6688990107228205 ------------- 00 759429 000020000000 507904153925200010006688990107228205 507904153925 625358 621354 S +13:37:19 Slot [444] | NOT FINANCIAL TRANSACTION +13:37:33 +Slot[436] 0200 011000 6213544001274247 ------------- 00 206576 000100000000 507913206576115290016213544001274247 507913206576 804624 198901 S +13:37:35 Slot [439] | NOT FINANCIAL TRANSACTION +13:37:43 +Slot[423] 0200 012000 6688990040052340 ------------- 00 759574 000020000000 507902650492140004006688990040052340 507902650492 578118 621354 S +13:37:51 Slot [458] | NOT FINANCIAL TRANSACTION +13:38:02 Slot [459] | NOT FINANCIAL TRANSACTION +13:38:03 Slot [466] | NOT FINANCIAL TRANSACTION +13:38:17 Slot [452] | NOT FINANCIAL TRANSACTION +13:38:32 +Slot[475] 0200 010000 6213545001082050 ------------- 00 269347 000100000000 5079062693470363CPSH6213545001082050 507906269347 724025 180893 S +13:38:37 +Slot[468] 0200 010000 1808930600037402 ------------- 00 946978 000020000000 507901443607034140011808930600037402 507901443607 626105 668899 S +13:38:43 Slot [455] | NOT FINANCIAL TRANSACTION +13:38:54 Slot [440] | NOT FINANCIAL TRANSACTION +13:38:59 +Slot[449] 0200 010000 6213541000560790 ------------- 00 947001 000050000000 507901541698030200166213541000560790 507901541698 183427 668899 S +13:39:04 Slot [482] | NOT FINANCIAL TRANSACTION +13:39:05 Slot [432] | NOT FINANCIAL TRANSACTION +13:39:06 +Slot[460] 0420 010000 1808930600037402 ------------- 00 946978 000020000000 507901443607034140011808930600037402 507901443607 -------- 668899 S +13:39:16 +Slot[495] 0200 011000 6213541000649965 ------------- 00 259253 000100000000 507900040596010004006213541000649965 507900040596 575118 220699 S +13:39:17 Slot [453] | NOT FINANCIAL TRANSACTION +13:39:29 Slot [488] | NOT FINANCIAL TRANSACTION +13:39:39 Slot [470] | NOT FINANCIAL TRANSACTION +13:39:52 Slot [484] | NOT FINANCIAL TRANSACTION +13:39:54 Slot [490] | NOT FINANCIAL TRANSACTION +13:40:03 Slot [463] | NOT FINANCIAL TRANSACTION +13:40:06 Slot [480] | NOT FINANCIAL TRANSACTION +13:40:13 Slot [448] | NOT FINANCIAL TRANSACTION +13:40:19 +Slot[471] 0420 010000 1808930600037402 0000000000000 00 946978 000020000000 507901443607034140011808930600037402 507901443607 -------- 668899 S +13:40:29 Slot [479] | NOT FINANCIAL TRANSACTION +13:40:31 +Slot[0] 0200 010000 6213548000459865 ------------- 51 947075 000010000000 507901963586030200196213548000459865 507901963586 313786 668899 S +13:40:44 Slot [2] | NOT FINANCIAL TRANSACTION +13:41:00 Slot [493] | NOT FINANCIAL TRANSACTION +13:41:08 Slot [498] | NOT FINANCIAL TRANSACTION +13:41:10 +Slot[1] 0200 010000 6213548000459865 ------------- 51 947110 000002000000 507901963587030200196213548000459865 507901963587 637933 668899 S +13:41:11 Slot [4] | NOT FINANCIAL TRANSACTION +13:41:21 Slot [473] | NOT FINANCIAL TRANSACTION +13:41:22 Slot [476] | NOT FINANCIAL TRANSACTION +13:41:27 +Slot[489] 0200 010000 6213541000709470 ------------- 00 269360 000010000000 5079062693600441VT526213541000709470 507906269360 982757 180893 S +13:41:38 Slot [483] | NOT FINANCIAL TRANSACTION +13:41:47 +Slot[486] 0200 010000 6213548000248698 ------------- 51 947135 000050000000 507901343778033070016213548000248698 507901343778 492706 668899 S +13:41:49 Slot [477] | NOT FINANCIAL TRANSACTION +13:42:02 Slot [474] | NOT FINANCIAL TRANSACTION +13:42:10 Slot [472] | NOT FINANCIAL TRANSACTION +13:42:16 Slot [6] | NOT FINANCIAL TRANSACTION +13:42:34 Slot [492] | NOT FINANCIAL TRANSACTION +13:42:36 +Slot[485] 0200 301000 6213544002038203 ------------- 00 947169 000000000000 507901963589030200196213544002038203 507901963589 514055 668899 S +13:42:50 Slot [14] | NOT FINANCIAL TRANSACTION +13:43:04 Slot [454] | NOT FINANCIAL TRANSACTION +13:43:08 +Slot[16] 0200 010000 6213544002038203 ------------- 00 947192 000010000000 507901963590030200196213544002038203 507901963590 979937 668899 S +13:43:12 Slot [13] | NOT FINANCIAL TRANSACTION +13:43:20 Slot [12] | NOT FINANCIAL TRANSACTION +13:43:30 Slot [469] | NOT FINANCIAL TRANSACTION +13:43:42 Slot [22] | NOT FINANCIAL TRANSACTION +13:43:57 Slot [494] | NOT FINANCIAL TRANSACTION +13:44:13 Slot [17] | NOT FINANCIAL TRANSACTION +13:44:14 Slot [491] | NOT FINANCIAL TRANSACTION +13:44:18 Slot [499] | NOT FINANCIAL TRANSACTION +13:44:26 +Slot[10] 0200 300000 6688990106718701 ------------- 00 761183 000000000000 507904807746070016006688990106718701 507904807746 729203 621354 S +13:44:30 Slot [481] | NOT FINANCIAL TRANSACTION +13:44:44 +Slot[31] 0200 010000 6688990040132514 ------------- 00 761245 000030000000 507905271510020029006688990040132514 507905271510 414054 621354 S +13:44:45 Slot [29] | NOT FINANCIAL TRANSACTION +13:44:54 Slot [23] | NOT FINANCIAL TRANSACTION +13:44:55 Slot [3] | NOT FINANCIAL TRANSACTION +13:45:06 Slot [11] | NOT FINANCIAL TRANSACTION +13:45:16 Slot [21] | NOT FINANCIAL TRANSACTION +13:45:17 Slot [33] | NOT FINANCIAL TRANSACTION +13:45:27 Slot [35] | NOT FINANCIAL TRANSACTION +13:45:30 Slot [496] | NOT FINANCIAL TRANSACTION +13:45:45 +Slot[461] 0200 010000 6688990106718701 ------------- 00 761463 000050000000 507904807748070016006688990106718701 507904807748 473248 621354 S +13:45:54 +Slot[37] 0200 010000 1808930200057099 ------------- 00 761473 000050000000 507902783225010072001808930200057099 507902783225 828515 621354 S +13:45:55 Slot [30] | NOT FINANCIAL TRANSACTION +13:46:06 Slot [9] | NOT FINANCIAL TRANSACTION +13:46:18 Slot [45] | NOT FINANCIAL TRANSACTION +13:46:21 Slot [36] | NOT FINANCIAL TRANSACTION +13:46:21 Slot [497] | NOT FINANCIAL TRANSACTION +13:46:34 +Slot[18] 0200 302000 6213545000904239 ------------- 55 947326 000000000000 507901604317032020016213545000904239 507901604317 777403 668899 S +13:46:36 Slot [40] | NOT FINANCIAL TRANSACTION +13:46:51 +Slot[467] 0200 300000 6688990106718701 ------------- 00 761684 000000000000 507904807749070016006688990106718701 507904807749 560338 621354 S +13:46:52 Slot [8] | NOT FINANCIAL TRANSACTION +13:47:03 Slot [28] | NOT FINANCIAL TRANSACTION +13:47:12 +Slot[43] 0200 301000 1808930900013186 ------------- 00 947345 000000000000 507902209931030060091808930900013186 507902209931 132979 668899 S +13:47:18 Slot [7] | NOT FINANCIAL TRANSACTION +13:47:20 Slot [52] | NOT FINANCIAL TRANSACTION +13:47:34 Slot [50] | NOT FINANCIAL TRANSACTION +13:47:50 Slot [25] | NOT FINANCIAL TRANSACTION +13:47:59 +Slot[61] 0200 010000 6213544002012497 ------------- 75 947377 000010000000 507901912205030130046213544002012497 507901912205 916808 668899 S +13:48:02 Slot [44] | NOT FINANCIAL TRANSACTION +13:48:13 Slot [15] | NOT FINANCIAL TRANSACTION +13:48:16 +Slot[55] 0200 301000 2206990010000107 ------------- 00 761978 000000000000 507905304018080011002206990010000107 507905304018 262613 621354 S +13:48:22 Slot [478] | NOT FINANCIAL TRANSACTION +13:48:30 Slot [60] | NOT FINANCIAL TRANSACTION +13:48:38 +Slot[68] 0200 301000 6213545000000608 ------------- 00 206733 000000000000 507913206733015290316213545000000608 507913206733 712975 198901 S +13:48:44 Slot [63] | NOT FINANCIAL TRANSACTION +13:48:46 +Slot[73] 0200 010000 6213541000422413 ------------- 00 947421 000100000000 507902133549030200236213541000422413 507902133549 156474 668899 S +13:48:53 +Slot[38] 0200 010000 6213544002012497 ------------- 75 947428 000020000000 507901912207030130046213544002012497 507901912207 280851 668899 S +13:48:55 Slot [41] | NOT FINANCIAL TRANSACTION +13:49:10 +Slot[464] 0200 010000 6213544000095056 ------------- 00 168953 000010000000 507900026364010002006213544000095056 507900026364 982340 220699 S +13:49:11 Slot [32] | NOT FINANCIAL TRANSACTION +13:49:17 +Slot[487] 0200 300000 6688990050030467 ------------- 00 762179 000000000000 507903573688090014006688990050030467 507903573688 680557 621354 S +13:49:24 Slot [26] | NOT FINANCIAL TRANSACTION +13:49:26 Slot [20] | NOT FINANCIAL TRANSACTION +13:49:38 +Slot[48] 0200 010000 6213541000422413 ------------- 00 947463 000100000000 507902133551030200236213541000422413 507902133551 995725 668899 S +13:49:41 Slot [46] | NOT FINANCIAL TRANSACTION +13:49:44 +Slot[27] 0200 010000 6213544002012497 ------------- 75 947469 000010000000 507901912209030130046213544002012497 507901912209 487680 668899 S +13:49:54 Slot [19] | NOT FINANCIAL TRANSACTION +13:49:58 Slot [69] | NOT FINANCIAL TRANSACTION +13:50:12 Slot [47] | NOT FINANCIAL TRANSACTION +13:50:26 Slot [78] | NOT FINANCIAL TRANSACTION +13:50:28 Slot [54] | NOT FINANCIAL TRANSACTION +13:50:34 +Slot[81] 0420 011000 2206990010000107 ------------- 00 762298 000100000000 507905304020080011002206990010000107 507905304020 -------- 621354 S +13:50:39 +Slot[24] 0200 301000 6213548000116010 ------------- 00 947514 000000000000 507900844942030150036213548000116010 507900844942 327206 668899 S +13:50:49 Slot [57] | NOT FINANCIAL TRANSACTION +13:50:54 +Slot[42] 0200 301000 1808930200017887 ------------- 00 762431 000000000000 507902776629010071001808930200017887 507902776629 370030 621354 S +13:51:00 Slot [49] | NOT FINANCIAL TRANSACTION +13:51:00 +Slot[34] 0200 010000 6688990050030467 ------------- 00 762469 000005000000 507903573690090014006688990050030467 507903573690 145821 621354 S +13:51:15 Slot [88] | NOT FINANCIAL TRANSACTION +13:51:16 +Slot[86] 0200 011000 2206990010000107 ------------- 00 762527 000100000000 507905304022080011002206990010000107 507905304022 509438 621354 S +13:51:18 +Slot[89] 0200 301000 6213545000206759 ------------- 00 269397 032006501926 5079062693970483XKNH6213545000206759 507906269397 583717 180893 S +13:51:21 Slot [79] | NOT FINANCIAL TRANSACTION +13:51:28 Slot [84] | NOT FINANCIAL TRANSACTION +13:51:32 +Slot[59] 0200 011000 1808930200017887 ------------- 00 762557 000040000000 507902776631010071001808930200017887 507902776631 056826 621354 S +13:51:37 +Slot[5] 0200 300000 1808930600037402 ------------- 00 762584 000000000000 507904273264030026001808930600037402 507904273264 096080 621354 S +13:51:37 Slot [67] | NOT FINANCIAL TRANSACTION +13:51:47 +Slot[62] 0420 011000 2206990010000107 0000000000000 00 762298 000100000000 507905304020080011002206990010000107 507905304020 -------- 621354 S +13:51:52 Slot [51] | NOT FINANCIAL TRANSACTION +13:52:03 Slot [39] | NOT FINANCIAL TRANSACTION +13:52:16 Slot [56] | NOT FINANCIAL TRANSACTION +13:52:18 +Slot[99] 0200 301000 6213544001355038 ------------- 00 947579 000000000000 507902093330030200216213544001355038 507902093330 529568 668899 S +13:52:18 +Slot[58] 0200 011000 2206990010000107 ------------- 91 762298 000100000000 507905304020080011002206990010000107 507905304020 446145 621354 S +13:52:30 Slot [82] | NOT FINANCIAL TRANSACTION +13:52:30 Slot [64] | NOT FINANCIAL TRANSACTION +13:52:42 +Slot[93] 0200 301000 6213544001355038 ------------- 00 947596 000000000000 507902093331030200216213544001355038 507902093331 502892 668899 S +13:52:43 +Slot[100] 0200 010000 6213545000206759 ------------- 00 269405 000100000000 5079062694050483XKNH6213545000206759 507906269405 587145 180893 S +13:52:51 +Slot[91] 0200 010000 6213541000537970 ------------- 00 306084 000050000000 507900079342010007006213541000537970 507900079342 070638 220699 S +13:52:56 Slot [65] | NOT FINANCIAL TRANSACTION +13:53:07 Slot [72] | NOT FINANCIAL TRANSACTION +13:53:24 +Slot[106] 0200 011000 1808930600037402 ------------- 00 763000 000020000000 507904273266030026001808930600037402 507904273266 594478 621354 S +13:53:28 Slot [76] | NOT FINANCIAL TRANSACTION +13:53:32 Slot [114] | NOT FINANCIAL TRANSACTION +13:53:33 +Slot[66] 0200 010000 6213545000206759 ------------- 00 269411 000100000000 5079062694110483XKNH6213545000206759 507906269411 610096 180893 S +13:53:45 Slot [90] | NOT FINANCIAL TRANSACTION +13:53:54 +Slot[83] 0200 011000 6688990601487208 ------------- 00 763152 000100000000 507904153938200010006688990601487208 507904153938 700026 621354 S +13:53:55 Slot [118] | NOT FINANCIAL TRANSACTION +13:54:05 Slot [74] | NOT FINANCIAL TRANSACTION +13:54:18 Slot [107] | NOT FINANCIAL TRANSACTION +13:54:19 +Slot[121] 0200 010000 6213544001534657 ------------- 00 306087 000070000000 507900079344010007006213544001534657 507900079344 992321 220699 S +13:54:29 +Slot[115] 0200 301000 6213541000531726 ------------- 00 947652 000000000000 507902151010030200256213541000531726 507902151010 118549 668899 S +13:54:31 +Slot[92] 0200 010000 6213545000206759 ------------- 00 269416 000100000000 5079062694160483XKNH6213545000206759 507906269416 628721 180893 S +13:54:34 Slot [108] | NOT FINANCIAL TRANSACTION +13:54:40 Slot [113] | NOT FINANCIAL TRANSACTION +13:54:47 +Slot[94] 0200 011000 6213544000346541 ------------- 00 206821 000100000000 507913206821015290176213544000346541 507913206821 308292 198901 S +13:54:50 Slot [127] | NOT FINANCIAL TRANSACTION +13:54:54 Slot [75] | NOT FINANCIAL TRANSACTION +13:55:00 Slot [95] | NOT FINANCIAL TRANSACTION +13:55:01 +Slot[53] 0200 010000 6213541000531726 ------------- 51 947670 000010000000 507902151011030200256213541000531726 507902151011 050851 668899 S +13:55:11 Slot [125] | NOT FINANCIAL TRANSACTION +13:55:24 +Slot[98] 0200 010000 6213545000206759 ------------- 00 269421 000100000000 5079062694210483XKNH6213545000206759 507906269421 002273 180893 S +13:55:29 +Slot[134] 0200 011000 6213544000346541 ------------- 00 206831 000100000000 507913206831015290176213544000346541 507913206831 990313 198901 S +13:55:32 Slot [103] | NOT FINANCIAL TRANSACTION +13:55:36 Slot [101] | NOT FINANCIAL TRANSACTION +13:55:43 Slot [96] | NOT FINANCIAL TRANSACTION +13:55:58 Slot [77] | NOT FINANCIAL TRANSACTION +13:56:04 +Slot[71] 0200 011000 6213543000241975 ------------- 00 269427 000040000000 5079062694270323BKTP6213543000241975 507906269427 301365 180893 S +13:56:06 +Slot[70] 0200 011000 6213544000346541 ------------- 00 206844 000100000000 507913206844015290176213544000346541 507913206844 791537 198901 S +13:56:10 +Slot[102] 0200 010000 6213548000459261 ------------- 00 947695 000020000000 507901963593030200196213548000459261 507901963593 660278 668899 S +13:56:13 Slot [109] | NOT FINANCIAL TRANSACTION +13:56:14 Slot [136] | NOT FINANCIAL TRANSACTION +13:56:18 +Slot[85] 0200 010000 6213545000206759 ------------- 00 269430 000100000000 5079062694300483XKNH6213545000206759 507906269430 486598 180893 S +13:56:21 Slot [129] | NOT FINANCIAL TRANSACTION +13:56:23 +Slot[87] 0200 011000 6213544000238532 ------------- 00 168959 000100000000 507900026369010002006213544000238532 507900026369 407803 220699 S +13:56:30 Slot [105] | NOT FINANCIAL TRANSACTION +13:56:30 +Slot[131] 0200 301000 6688990030009672 ------------- 00 763731 000000000000 507904724381180011006688990030009672 507904724381 252687 621354 S +13:56:38 Slot [104] | NOT FINANCIAL TRANSACTION +13:56:42 Slot [138] | NOT FINANCIAL TRANSACTION +13:56:52 +Slot[112] 0200 011000 6213544000346541 ------------- 00 206851 000100000000 507913206851015290176213544000346541 507913206851 345390 198901 S +13:56:54 +Slot[116] 0200 300000 6213541000272461 ------------- 00 947711 000000000000 507901541715030200166213541000272461 507901541715 281744 668899 S +13:56:57 Slot [97] | NOT FINANCIAL TRANSACTION +13:56:58 +Slot[140] 0200 011000 6213545000702153 ------------- 00 206852 000030000000 507913206852195290016213545000702153 507913206852 103189 198901 S +13:57:12 Slot [111] | NOT FINANCIAL TRANSACTION +13:57:13 +Slot[117] 0200 011000 6688990030009672 ------------- 51 763893 000015000000 507904724383180011006688990030009672 507904724383 510890 621354 S +13:57:15 +Slot[124] 0200 301000 6213545000785984 ------------- 00 269439 032006561826 5079062694390525XYBT6213545000785984 507906269439 366910 180893 S +13:57:29 +Slot[80] 0200 010000 6688990040134924 ------------- 14 269441 000100000000 5079062694410321LNTV6688990040134924 507906269441 302400 180893 S +13:57:31 +Slot[161] 0200 011000 6213544000346541 ------------- 00 206861 000100000000 507913206861015290176213544000346541 507913206861 414586 198901 S +13:57:38 Slot [147] | NOT FINANCIAL TRANSACTION +13:57:40 Slot [123] | NOT FINANCIAL TRANSACTION +13:57:50 Slot [162] | NOT FINANCIAL TRANSACTION +13:57:52 +Slot[122] 0200 010000 6213541000272461 ------------- 00 947736 000010000000 507901541717030200166213541000272461 507901541717 081072 668899 S +13:58:05 +Slot[132] 0200 010000 6213545000785984 ------------- 00 269448 000050000000 5079062694480525XYBT6213545000785984 507906269448 847867 180893 S +13:58:07 +Slot[145] 0200 011000 6213544000346541 ------------- 00 206869 000100000000 507913206869015290176213544000346541 507913206869 487110 198901 S +13:58:09 +Slot[158] 0200 010000 6688990103541601 ------------- 61 269449 000200000000 5079062694490221XKKM6688990103541601 507906269449 991314 180893 S +13:58:18 +Slot[154] 0200 301000 6688990040134924 ------------- 14 269451 032006572026 5079062694510321LNTV6688990040134924 507906269451 994538 180893 S +13:58:21 +Slot[143] 0200 301000 6213544001355038 ------------- 00 947755 000000000000 507900168614030200076213544001355038 507900168614 675495 668899 S +13:58:27 +Slot[166] 0200 010000 6213544001550109 ------------- 00 947758 000030000000 507901963595030200196213544001550109 507901963595 063848 668899 S +13:58:33 Slot [153] | NOT FINANCIAL TRANSACTION +13:58:42 Slot [133] | NOT FINANCIAL TRANSACTION +13:58:44 +Slot[120] 0200 010000 1888880000056689 ------------- 00 764206 000020000000 507904351186030034001888880000056689 507904351186 410586 621354 S +13:58:47 Slot [110] | NOT FINANCIAL TRANSACTION +13:58:51 +Slot[150] 0200 301000 6213544001355038 ------------- 00 947765 000000000000 507900168615030200076213544001355038 507900168615 231389 668899 S +13:59:03 Slot [142] | NOT FINANCIAL TRANSACTION +13:59:06 +Slot[130] 0200 010000 6688990040134924 ------------- 14 269460 000100000000 5079062694600321LNTV6688990040134924 507906269460 245003 180893 S +13:59:18 +Slot[167] 0200 010000 6213545000785885 ------------- 61 269464 000150000000 5079062694640525XYBT6213545000785885 507906269464 170971 180893 S +13:59:19 +Slot[159] 0200 011000 6688990103501100 ------------- 00 764347 000100000000 507903499472060022006688990103501100 507903499472 545321 621354 S +13:59:29 Slot [137] | NOT FINANCIAL TRANSACTION +13:59:41 Slot [175] | NOT FINANCIAL TRANSACTION +13:59:44 Slot [146] | NOT FINANCIAL TRANSACTION +13:59:46 +Slot[128] 0200 012000 6213545000779987 ------------- 00 269470 000014000000 5079062694700465UDNM6213545000779987 507906269470 584556 180893 S +13:59:54 Slot [170] | NOT FINANCIAL TRANSACTION +13:59:57 Slot [141] | NOT FINANCIAL TRANSACTION +14:00:11 Slot [157] | NOT FINANCIAL TRANSACTION +14:00:23 Slot [151] | NOT FINANCIAL TRANSACTION +14:00:31 +Slot[172] 0200 011000 6213544000282522 ------------- 00 274792 000100000000 507900057294010005006213544000282522 507900057294 246320 220699 S +14:00:33 +Slot[164] 0200 010000 6213545000020085 ------------- 61 269477 000200000000 5079062694770111BLBR6213545000020085 507906269477 559705 180893 S +14:00:45 Slot [171] | NOT FINANCIAL TRANSACTION +14:00:46 +Slot[186] 0200 011000 6688990103294904 ------------- 00 764629 000100000000 507903499474060022006688990103294904 507903499474 463617 621354 S +14:00:46 Slot [126] | NOT FINANCIAL TRANSACTION +14:00:48 +Slot[148] 0200 011000 6213543000070531 ------------- 00 206911 000100000000 507914206911015290166213543000070531 507914206911 854256 198901 S +14:00:55 Slot [182] | NOT FINANCIAL TRANSACTION +14:00:57 +Slot[119] 0200 301000 6213545000785885 ------------- 00 269479 032006595826 5079062694790525XYBT6213545000785885 507906269479 631801 180893 S +14:00:58 +Slot[139] 0200 012000 6688990030003188 ------------- 00 764668 000100000000 507902585314050041006688990030003188 507902585314 846277 621354 S +14:01:00 Slot [202] | NOT FINANCIAL TRANSACTION +14:01:03 +Slot[176] 0200 010000 6213545000020085 ------------- 00 269481 000100000000 5079072694810111BLBR6213545000020085 507907269481 488755 180893 S +14:01:17 Slot [187] | NOT FINANCIAL TRANSACTION +14:01:22 Slot [156] | NOT FINANCIAL TRANSACTION +14:01:24 +Slot[160] 0200 011000 6213544000282522 ------------- 00 274795 000100000000 507900057296010005006213544000282522 507900057296 934115 220699 S +14:01:27 Slot [144] | NOT FINANCIAL TRANSACTION +14:01:29 +Slot[203] 0200 011000 6213543000070531 ------------- 00 206923 000100000000 507914206923015290166213543000070531 507914206923 826372 198901 S +14:01:38 +Slot[163] 0200 012000 6688990102133707 ------------- 00 764792 000010000000 507903058563010085006688990102133707 507903058563 801886 621354 S +14:01:44 Slot [179] | NOT FINANCIAL TRANSACTION +14:01:48 Slot [204] | NOT FINANCIAL TRANSACTION +14:01:54 +Slot[135] 0200 011000 6688990103294904 ------------- 00 764842 000100000000 507903499476060022006688990103294904 507903499476 741362 621354 S +14:01:57 Slot [192] | NOT FINANCIAL TRANSACTION +14:02:00 +Slot[152] 0200 010000 6213545000785885 ------------- 00 269488 000100000000 5079072694880525XYBT6213545000785885 507907269488 623440 180893 S +14:02:09 +Slot[191] 0200 010000 6213545000020085 ------------- 00 269491 000100000000 5079072694910111BLBR6213545000020085 507907269491 125050 180893 S +14:02:10 +Slot[190] 0200 010000 6213544001785358 ------------- 00 240847 000030000000 507900410441080003006213544001785358 507900410441 217153 220699 S +14:02:19 Slot [196] | NOT FINANCIAL TRANSACTION +14:02:24 +Slot[155] 0200 011000 6213544000282522 ------------- 00 274798 000100000000 507900057298010005006213544000282522 507900057298 630199 220699 S +14:02:33 +Slot[198] 0200 301000 1808931800004945 ------------- 00 764956 000000000000 507904615354170006001808931800004945 507904615354 232263 621354 S +14:02:37 +Slot[181] 0200 012000 6688990030003188 ------------- 00 764973 000100000000 507902585316050041006688990030003188 507902585316 626390 621354 S +14:02:38 Slot [201] | NOT FINANCIAL TRANSACTION +14:02:40 Slot [214] | NOT FINANCIAL TRANSACTION +14:02:50 Slot [165] | NOT FINANCIAL TRANSACTION +14:02:55 Slot [209] | NOT FINANCIAL TRANSACTION +14:02:57 +Slot[194] 0200 010000 6213545000020085 ------------- 00 269495 000100000000 5079072694950111BLBR6213545000020085 507907269495 480505 180893 S +14:03:05 +Slot[195] 0200 302000 6213544000578523 ------------- 00 947890 000000000000 507902161225030200266213544000578523 507902161225 428026 668899 S +14:03:06 Slot [178] | NOT FINANCIAL TRANSACTION +14:03:11 +Slot[184] 0200 010000 6688990103541601 ------------- 14 269498 000100000000 5079072694980221XKKM6688990103541601 507907269498 122098 180893 S +14:03:19 +Slot[206] 0200 011000 6213544000282522 ------------- 00 274801 000100000000 507900057300010005006213544000282522 507900057300 454661 220699 S +14:03:22 Slot [213] | NOT FINANCIAL TRANSACTION +14:03:34 +Slot[193] 0200 010000 1808930300018231 ------------- 00 947899 000010000000 507901963605030200191808930300018231 507901963605 044246 668899 S +14:03:39 Slot [212] | NOT FINANCIAL TRANSACTION +14:03:39 +Slot[221] 0200 010000 6213544000578523 ------------- 00 947902 000050000000 507902161226030200266213544000578523 507902161226 898439 668899 S +14:03:43 Slot [207] | NOT FINANCIAL TRANSACTION +14:03:50 +Slot[208] 0200 011000 6688990030009672 ------------- 51 765173 000015000000 507904724396180011006688990030009672 507904724396 151486 621354 S +14:03:52 +Slot[183] 0200 010000 6213545000020085 ------------- 00 269502 000100000000 5079072695020111BLBR6213545000020085 507907269502 278573 180893 S +14:03:52 Slot [230] | NOT FINANCIAL TRANSACTION +14:03:54 +Slot[211] 0200 011000 6688990103541601 ------------- 14 269504 000090000000 5079072695040221XKKM6688990103541601 507907269504 438017 180893 S +14:04:04 Slot [169] | NOT FINANCIAL TRANSACTION +14:04:15 Slot [205] | NOT FINANCIAL TRANSACTION +14:04:18 +Slot[185] 0200 012000 6688990105014904 ------------- 00 765228 000100000000 507904635676170008006688990105014904 507904635676 403430 621354 S +14:04:19 +Slot[189] 0200 010000 6222082010002177024 ------------- 61 269510 000200000000 5079072695100441VT526222082010002177 507907269510 425451 180893 S +14:04:24 +Slot[149] 0200 301000 6688990103541601 ------------- 14 269512 007032626951 5079072695120221XKKM6688990103541601 507907269512 615123 180893 S +14:04:28 +Slot[232] 0200 010000 6213545000785828 ------------- 61 269513 000150000000 5079072695130525XYBT6213545000785828 507907269513 589077 180893 S +14:04:29 +Slot[168] 0200 011000 6688990030009672 ------------- 00 765268 000012000000 507904724398180011006688990030009672 507904724398 603666 621354 S +14:04:41 +Slot[180] 0200 010000 1808931400009336 ------------- 51 765288 000010000000 507904719626180010001808931400009336 507904719626 905649 621354 S +14:04:45 +Slot[174] 0200 010000 6222082010002177024 ------------- 61 269517 000200000000 5079072695170441VT526222082010002177 507907269517 022789 180893 S +14:04:48 Slot [222] | NOT FINANCIAL TRANSACTION +14:04:53 Slot [229] | NOT FINANCIAL TRANSACTION +14:04:54 Slot [173] | NOT FINANCIAL TRANSACTION +14:04:55 Slot [188] | NOT FINANCIAL TRANSACTION +14:05:03 +Slot[223] 0200 011000 6213541000146269 ------------- 00 206958 000050000000 507914206958015290166213541000146269 507914206958 866175 198901 S +14:05:04 Slot [246] | NOT FINANCIAL TRANSACTION +14:05:12 +Slot[215] 0200 010000 6213545000785828 ------------- 61 269521 000150000000 5079072695210525XYBT6213545000785828 507907269521 923576 180893 S +14:05:19 +Slot[243] 0200 010000 6688990103541601 ------------- 14 269523 000050000000 5079072695230221XKKM6688990103541601 507907269523 989363 180893 S +14:05:21 +Slot[248] 0200 010000 6688990108417104 ------------- 00 765439 000010000000 507904719628180010006688990108417104 507904719628 157640 621354 S +14:05:30 Slot [244] | NOT FINANCIAL TRANSACTION +14:05:42 Slot [235] | NOT FINANCIAL TRANSACTION +14:05:46 +Slot[227] 0200 010000 6213545000785828 ------------- 00 269527 000100000000 5079072695270525XYBT6213545000785828 507907269527 104793 180893 S +14:05:52 +Slot[251] 0200 010000 6688990106119306 ------------- 00 765539 000010000000 507904789434070014006688990106119306 507904789434 948704 621354 S +14:05:53 Slot [177] | NOT FINANCIAL TRANSACTION +14:05:56 +Slot[250] 0200 300000 6688990105014904 ------------- 00 765552 000000000000 507904635677170008006688990105014904 507904635677 882053 621354 S +14:05:56 Slot [242] | NOT FINANCIAL TRANSACTION +14:05:57 +Slot[226] 0200 010000 6222082010002177024 ------------- 61 269529 000200000000 5079072695290441VT526222082010002177 507907269529 119318 180893 S +14:06:06 Slot [255] | NOT FINANCIAL TRANSACTION +14:06:17 Slot [233] | NOT FINANCIAL TRANSACTION +14:06:22 Slot [237] | NOT FINANCIAL TRANSACTION +14:06:23 +Slot[200] 0200 010000 6688990602752808 ------------- 14 269533 000100000000 5079072695330201ADD16688990602752808 507907269533 002499 180893 S +14:06:25 +Slot[238] 0200 010000 6213543000063684 ------------- 51 947980 000100000000 507901541719030200166213543000063684 507901541719 274651 668899 S +14:06:33 Slot [216] | NOT FINANCIAL TRANSACTION +14:06:43 Slot [253] | NOT FINANCIAL TRANSACTION +14:06:53 Slot [260] | NOT FINANCIAL TRANSACTION +14:06:58 Slot [234] | NOT FINANCIAL TRANSACTION +14:06:58 Slot [249] | NOT FINANCIAL TRANSACTION +14:06:58 Slot [210] | NOT FINANCIAL TRANSACTION +14:07:05 Slot [263] | NOT FINANCIAL TRANSACTION +14:07:09 +Slot[259] 0200 011000 6688990040157297 ------------- 00 765776 000080000000 507902539878050036006688990040157297 507902539878 651898 621354 S +14:07:13 +Slot[261] 0200 011000 6688990103262703 ------------- 00 765789 000100000000 507903499478060022006688990103262703 507903499478 954793 621354 S +14:07:16 Slot [270] | NOT FINANCIAL TRANSACTION +14:07:17 +Slot[225] 0200 010000 6213545000785877 ------------- 00 269536 000100000000 5079072695360525XYBT6213545000785877 507907269536 065080 180893 S +14:07:28 +Slot[199] 0200 010000 6213541000329303 ------------- 00 948016 000050000000 507902151019030200256213541000329303 507902151019 227051 668899 S +14:07:32 Slot [269] | NOT FINANCIAL TRANSACTION +14:07:38 +Slot[240] 0200 300000 6688990104116403 ------------- 00 765881 000000000000 507904789435070014006688990104116403 507904789435 060652 621354 S +14:07:40 +Slot[275] 0200 010000 6213543000073972 ------------- 61 269540 000200000000 5079072695400301LPBX6213543000073972 507907269540 473295 180893 S +14:07:44 +Slot[228] 0200 010000 6213545000089825 ------------- 00 269541 000100000000 5079072695410461BKPO6213545000089825 507907269541 643192 180893 S +14:07:54 Slot [197] | NOT FINANCIAL TRANSACTION +14:07:57 +Slot[256] 0200 010000 6688990105014904 ------------- 00 765948 000100000000 507904635680170008006688990105014904 507904635680 880192 621354 S +14:08:00 Slot [218] | NOT FINANCIAL TRANSACTION +14:08:02 +Slot[265] 0200 010000 6213543000073972 ------------- 61 269545 000200000000 5079072695450301LPBX6213543000073972 507907269545 877489 180893 S +14:08:03 Slot [274] | NOT FINANCIAL TRANSACTION +14:08:12 +Slot[247] 0200 010000 6213545000785877 ------------- 00 269548 000100000000 5079072695480525XYBT6213545000785877 507907269548 844263 180893 S +14:08:17 +Slot[279] 0200 010000 6688990602752808 ------------- 14 269550 000100000000 5079072695500201ADD16688990602752808 507907269550 040898 180893 S +14:08:24 +Slot[231] 0200 010000 6213543000073972 ------------- 00 269552 000100000000 5079072695520301LPBX6213543000073972 507907269552 675699 180893 S +14:08:32 +Slot[273] 0200 011000 6688990103262703 ------------- 00 766095 000100000000 507903499480060022006688990103262703 507903499480 225130 621354 S +14:08:38 Slot [264] | NOT FINANCIAL TRANSACTION +14:08:54 Slot [220] | NOT FINANCIAL TRANSACTION +14:09:02 Slot [254] | NOT FINANCIAL TRANSACTION +14:09:04 Slot [239] | NOT FINANCIAL TRANSACTION +14:09:07 +Slot[282] 0200 010000 6688990105014904 ------------- 00 766256 000100000000 507904635682170008006688990105014904 507904635682 833046 621354 S +14:09:08 Slot [272] | NOT FINANCIAL TRANSACTION +14:09:12 +Slot[276] 0200 010000 6213543000073972 ------------- 61 269556 000200000000 5079072695560301LPBX6213543000073972 507907269556 944848 180893 S +14:09:13 +Slot[252] 0200 011000 6688990104116403 ------------- 00 766278 000005000000 507904789437070014006688990104116403 507904789437 020087 621354 S +14:09:21 Slot [280] | NOT FINANCIAL TRANSACTION +14:09:21 +Slot[266] 0200 010000 6213545000150742 ------------- 00 948066 000100000000 507901489325035150016213545000150742 507901489325 893749 668899 S +14:09:22 +Slot[241] 0200 010000 6213545000785828 ------------- 00 269558 000050000000 5079072695580525XYBT6213545000785828 507907269558 501544 180893 S +14:09:37 Slot [284] | NOT FINANCIAL TRANSACTION +14:09:39 +Slot[258] 0200 010000 6213543000073972 ------------- 00 269561 000100000000 5079072695610301LPBX6213543000073972 507907269561 551417 180893 S +14:09:47 Slot [224] | NOT FINANCIAL TRANSACTION +14:09:47 +Slot[219] 0200 311000 6223692026478265 ------------- 62 240850 000000000000 507900410443080003006223692026478265 507900410443 274546 220699 S +14:09:49 +Slot[287] 0200 302000 6213543000165091 ------------- 00 948077 000000000000 507902565280030010146213543000165091 507902565280 025506 668899 S +14:09:55 Slot [277] | NOT FINANCIAL TRANSACTION +14:09:59 Slot [290] | NOT FINANCIAL TRANSACTION +14:10:04 Slot [267] | NOT FINANCIAL TRANSACTION +14:10:10 Slot [294] | NOT FINANCIAL TRANSACTION +14:10:14 Slot [271] | NOT FINANCIAL TRANSACTION +14:10:20 +Slot[245] 0200 010000 6688990105014904 ------------- 00 766570 000100000000 507904635684170008006688990105014904 507904635684 149135 621354 S +14:10:27 +Slot[236] 0200 010000 6213543000073972 ------------- 00 269564 000100000000 5079072695640301LPBX6213543000073972 507907269564 553919 180893 S +14:10:34 +Slot[303] 0200 010000 6213543000165091 ------------- 00 948096 000050000000 507902565281030010146213543000165091 507902565281 072225 668899 S +14:10:37 +Slot[217] 0200 011000 6688990103266100 ------------- 00 766623 000100000000 507903499482060022006688990103266100 507903499482 174023 621354 S +14:10:40 Slot [298] | NOT FINANCIAL TRANSACTION +14:10:51 Slot [293] | NOT FINANCIAL TRANSACTION +14:11:06 Slot [299] | NOT FINANCIAL TRANSACTION +14:11:06 Slot [257] | NOT FINANCIAL TRANSACTION +14:11:09 +Slot[278] 0200 010000 6213543000073972 ------------- 00 269568 000100000000 5079072695680301LPBX6213543000073972 507907269568 044313 180893 S +14:11:19 Slot [281] | NOT FINANCIAL TRANSACTION +14:11:20 +Slot[300] 0200 011000 6688990040157297 ------------- 00 766783 000006000000 507902539884050036006688990040157297 507902539884 523750 621354 S +14:11:21 Slot [295] | NOT FINANCIAL TRANSACTION +14:11:22 Slot [296] | NOT FINANCIAL TRANSACTION +14:11:29 +Slot[308] 0200 300000 6213548000072494 ------------- 00 948122 000000000000 507901541721030200166213548000072494 507901541721 957649 668899 S +14:11:35 +Slot[286] 0200 010000 6688990105014904 ------------- 00 766849 000100000000 507904635686170008006688990105014904 507904635686 932596 621354 S +14:11:37 Slot [283] | NOT FINANCIAL TRANSACTION +14:11:42 +Slot[316] 0200 011000 6688990103266100 ------------- 00 766888 000100000000 507903499484060022006688990103266100 507903499484 079025 621354 S +14:11:48 Slot [312] | NOT FINANCIAL TRANSACTION +14:11:51 +Slot[311] 0200 302000 6688990103201909 ------------- 00 766923 000000000000 507902577747050040006688990103201909 507902577747 137112 621354 S +14:11:56 +Slot[306] 0200 010000 6213544001053088 ------------- 00 948133 000030000000 507901963609030200196213544001053088 507901963609 227565 668899 S +14:11:57 +Slot[310] 0200 010000 6213543000073972 ------------- 00 269574 000100000000 5079072695740301LPBX6213543000073972 507907269574 577502 180893 S +14:12:02 +Slot[307] 0200 301000 6688990100951506 ------------- 00 766966 000000000000 507904719632180010006688990100951506 507904719632 390363 621354 S +14:12:08 Slot [317] | NOT FINANCIAL TRANSACTION +14:12:10 Slot [288] | NOT FINANCIAL TRANSACTION +14:12:21 Slot [318] | NOT FINANCIAL TRANSACTION +14:12:24 Slot [322] | NOT FINANCIAL TRANSACTION +14:12:32 Slot [325] | NOT FINANCIAL TRANSACTION +14:12:37 +Slot[304] 0200 011000 6688990103201909 ------------- 00 767097 000010000000 507902577749050040006688990103201909 507902577749 424639 621354 S +14:12:39 +Slot[315] 0200 301000 1888880000028886 ------------- 00 767092 000000000000 507903308677130010001888880000028886 507903308677 634327 621354 S +14:12:41 +Slot[285] 0200 301000 6213543000073972 ------------- 00 269578 032007114326 5079072695780301LPBX6213543000073972 507907269578 025439 180893 S +14:12:46 +Slot[297] 0200 010000 6688990105014904 ------------- 00 767124 000030000000 507904635688170008006688990105014904 507904635688 670695 621354 S +14:12:53 Slot [289] | NOT FINANCIAL TRANSACTION +14:13:04 Slot [326] | NOT FINANCIAL TRANSACTION +14:13:04 +Slot[291] 0200 301000 6688990100951506 ------------- 00 767202 000000000000 507904719633180010006688990100951506 507904719633 309070 621354 S +14:13:10 Slot [301] | NOT FINANCIAL TRANSACTION +14:13:16 Slot [327] | NOT FINANCIAL TRANSACTION +14:13:29 Slot [305] | NOT FINANCIAL TRANSACTION +14:13:29 Slot [314] | NOT FINANCIAL TRANSACTION +14:13:42 Slot [302] | NOT FINANCIAL TRANSACTION +14:13:49 +Slot[331] 0200 300000 1808931800012450 ------------- 00 767354 000000000000 507904635689170008001808931800012450 507904635689 607994 621354 S +14:13:51 +Slot[292] 0200 302000 6688990030018756 ------------- 14 269583 032007125226 5079072695830486HPXK6688990030018756 507907269583 271313 180893 S +14:14:01 +Slot[333] 0200 010000 1808930600024293 ------------- 00 767388 000050000000 507904351188030034001808930600024293 507904351188 112667 621354 S +14:14:04 Slot [335] | NOT FINANCIAL TRANSACTION +14:14:09 +Slot[262] 0200 011000 1888880000028886 ------------- 00 767418 000010000000 507903350088130015001888880000028886 507903350088 174667 621354 S +14:14:12 Slot [334] | NOT FINANCIAL TRANSACTION +14:14:20 Slot [321] | NOT FINANCIAL TRANSACTION +14:14:27 +Slot[336] 0200 010000 6213544000280526 ------------- 00 948185 000050000000 507900285819030100056213544000280526 507900285819 077636 668899 S +14:14:34 Slot [320] | NOT FINANCIAL TRANSACTION +14:14:37 Slot [342] | NOT FINANCIAL TRANSACTION +14:14:49 +Slot[323] 0200 010000 6688990030018756 ------------- 61 269589 000200000000 5079072695890486HPXK6688990030018756 507907269589 614029 180893 S +14:14:55 Slot [339] | NOT FINANCIAL TRANSACTION +14:15:03 +Slot[268] 0200 010000 1808931800012450 ------------- 00 767629 000100000000 507904635691170008001808931800012450 507904635691 788583 621354 S +14:15:03 Slot [348] | NOT FINANCIAL TRANSACTION +14:15:14 Slot [341] | NOT FINANCIAL TRANSACTION +14:15:19 +Slot[329] 0200 010000 6688990103552202 ------------- 61 269593 000200000000 5079072695930221XKKM6688990103552202 507907269593 167957 180893 S +14:15:30 Slot [309] | NOT FINANCIAL TRANSACTION +14:15:32 +Slot[352] 0200 300000 6213545000546048 ------------- 00 948199 000000000000 507900285821030100056213545000546048 507900285821 765090 668899 S +14:15:39 Slot [328] | NOT FINANCIAL TRANSACTION +14:15:45 +Slot[337] 0200 010000 6213545000840516 ------------- 00 948202 000010000000 507900329917030130036213545000840516 507900329917 431924 668899 S +14:15:45 Slot [347] | NOT FINANCIAL TRANSACTION +14:15:56 Slot [346] | NOT FINANCIAL TRANSACTION +14:16:06 +Slot[350] 0200 010000 6213541000520216 ------------- 61 269596 000200000000 5079072695960463LNTN6213541000520216 507907269596 044015 180893 S +14:16:16 Slot [357] | NOT FINANCIAL TRANSACTION +14:16:18 +Slot[319] 0200 010000 1808931800012450 ------------- 00 767917 000100000000 507904635693170008001808931800012450 507904635693 090357 621354 S +14:16:20 +Slot[356] 0200 301000 6688990104022007 ------------- 14 269597 032007152126 5079072695970421BKPH6688990104022007 507907269597 927122 180893 S +14:16:22 Slot [332] | NOT FINANCIAL TRANSACTION +14:16:27 +Slot[330] 0200 301000 6688990040121459 ------------- 00 767952 000000000000 507903032206120026006688990040121459 507903032206 091288 621354 S +14:16:33 Slot [365] | NOT FINANCIAL TRANSACTION +14:16:44 Slot [371] | NOT FINANCIAL TRANSACTION +14:16:45 +Slot[366] 0200 011000 6688990101499406 ------------- 00 768019 000100000000 507904645079170009006688990101499406 507904645079 898493 621354 S +14:16:49 Slot [313] | NOT FINANCIAL TRANSACTION +14:17:00 +Slot[343] 0200 010000 6213541000520216 ------------- 00 269601 000020000000 5079072696010463LNTN6213541000520216 507907269601 870582 180893 S +14:17:12 Slot [378] | NOT FINANCIAL TRANSACTION +14:17:18 Slot [345] | NOT FINANCIAL TRANSACTION +14:17:20 +Slot[340] 0200 012000 6688990104022007 ------------- 14 269606 000100000000 5079072696060421BKPH6688990104022007 507907269606 357216 180893 S +14:17:36 +Slot[373] 0200 010000 1808931800012450 ------------- 51 768179 000049000000 507904635695170008001808931800012450 507904635695 110266 621354 S +14:17:42 Slot [324] | NOT FINANCIAL TRANSACTION +14:17:43 Slot [382] | NOT FINANCIAL TRANSACTION +14:17:44 Slot [355] | NOT FINANCIAL TRANSACTION +14:17:49 Slot [353] | NOT FINANCIAL TRANSACTION +14:17:54 Slot [344] | NOT FINANCIAL TRANSACTION +14:17:56 +Slot[363] 0200 301000 6688990040152660 ------------- 00 768257 000000000000 507904830748110007006688990040152660 507904830748 774814 621354 S +14:18:05 Slot [370] | NOT FINANCIAL TRANSACTION +14:18:19 +Slot[358] 0200 010000 6688990102851308 ------------- 00 768325 000005000000 507904645081170009006688990102851308 507904645081 426750 621354 S +14:18:20 Slot [369] | NOT FINANCIAL TRANSACTION +14:18:22 Slot [379] | NOT FINANCIAL TRANSACTION +14:18:27 +Slot[360] 0200 010000 1808931800012450 ------------- 51 768350 000039000000 507904635697170008001808931800012450 507904635697 512008 621354 S +14:18:33 Slot [338] | NOT FINANCIAL TRANSACTION +14:18:43 Slot [354] | NOT FINANCIAL TRANSACTION +14:18:53 +Slot[396] 0200 010000 1808930200051068 ------------- 00 948279 000020000000 507902531914030200331808930200051068 507902531914 987308 668899 S +14:18:54 Slot [351] | NOT FINANCIAL TRANSACTION +14:18:54 Slot [389] | NOT FINANCIAL TRANSACTION +14:19:10 Slot [390] | NOT FINANCIAL TRANSACTION +14:19:17 +Slot[361] 0200 011000 6688990040152660 ------------- 00 768519 000010000000 507904830750110007006688990040152660 507904830750 849884 621354 S +14:19:20 Slot [374] | NOT FINANCIAL TRANSACTION +14:19:22 Slot [359] | NOT FINANCIAL TRANSACTION +14:19:30 +Slot[376] 0200 010000 1808931800012450 ------------- 00 768546 000035000000 507904635699170008001808931800012450 507904635699 643660 621354 S +14:19:32 Slot [410] | NOT FINANCIAL TRANSACTION +14:19:48 Slot [383] | NOT FINANCIAL TRANSACTION +14:19:52 +Slot[395] 0200 011000 6688990700292509 ------------- 55 768623 000100000000 507904885679080010006688990700292509 507904885679 276147 621354 S +14:19:55 Slot [393] | NOT FINANCIAL TRANSACTION +14:19:59 Slot [400] | NOT FINANCIAL TRANSACTION +14:19:59 Slot [397] | NOT FINANCIAL TRANSACTION +14:20:11 Slot [413] | NOT FINANCIAL TRANSACTION +14:20:15 +Slot[349] 0200 013000 6688990103274104 ------------- 00 768711 000100000000 507903499489060022006688990103274104 507903499489 882392 621354 S +14:20:20 +Slot[394] 0200 011000 6213545000806921 ------------- 00 269621 000020000000 5079072696210221XKKM6213545000806921 507907269621 758632 180893 S +14:20:22 +Slot[414] 0200 012000 6688990100398500 ------------- 00 768733 000030000000 507904653290170010006688990100398500 507904653290 618173 621354 S +14:20:24 Slot [387] | NOT FINANCIAL TRANSACTION +14:20:26 +Slot[399] 0200 301000 6213548000329746 ------------- 00 207142 000000000000 507914207142015290316213548000329746 507914207142 143011 198901 S +14:20:31 +Slot[418] 0200 011000 1808930100004555 ------------- 00 768747 000100000000 507903675616160020001808930100004555 507903675616 528742 621354 S +14:20:38 Slot [372] | NOT FINANCIAL TRANSACTION +14:20:48 +Slot[368] 0200 011000 6688990700292509 ------------- 00 768823 000100000000 507904885681080010006688990700292509 507904885681 519162 621354 S +14:20:49 Slot [419] | NOT FINANCIAL TRANSACTION +14:21:00 Slot [406] | NOT FINANCIAL TRANSACTION +14:21:04 Slot [411] | NOT FINANCIAL TRANSACTION +14:21:11 Slot [407] | NOT FINANCIAL TRANSACTION +14:21:21 Slot [380] | NOT FINANCIAL TRANSACTION +14:21:22 Slot [384] | NOT FINANCIAL TRANSACTION +14:21:26 +Slot[416] 0200 013000 6688990103274104 ------------- 00 768936 000050000000 507903499491060022006688990103274104 507903499491 610131 621354 S +14:21:26 Slot [381] | NOT FINANCIAL TRANSACTION +14:21:28 +Slot[420] 0200 010000 6688990602691204 ------------- 14 269628 000050000000 5079072696280369SLVL6688990602691204 507907269628 968017 180893 S +14:21:35 +Slot[415] 0200 010000 6213544001360608 ------------- 00 948356 000010000000 507902093341030200216213544001360608 507902093341 066344 668899 S +14:21:37 Slot [401] | NOT FINANCIAL TRANSACTION +14:21:48 Slot [398] | NOT FINANCIAL TRANSACTION +14:21:50 +Slot[425] 0200 303000 6688990030018756 ------------- 00 769010 000000000000 507904660730170011006688990030018756 507904660730 708991 621354 S +14:21:52 +Slot[433] 0200 302000 6688990104022007 ------------- 14 269630 032007205526 5079072696300421BKPH6688990104022007 507907269630 226630 180893 S +14:22:05 +Slot[388] 0200 011000 1808930100004555 ------------- 00 769056 000100000000 507903675619160020001808930100004555 507903675619 464716 621354 S +14:22:09 Slot [364] | NOT FINANCIAL TRANSACTION +14:22:11 Slot [367] | NOT FINANCIAL TRANSACTION +14:22:16 +Slot[430] 0200 302000 6688990108267806 ------------- 00 769102 000000000000 507904635700170008006688990108267806 507904635700 228477 621354 S +14:22:26 Slot [409] | NOT FINANCIAL TRANSACTION +14:22:28 Slot [441] | NOT FINANCIAL TRANSACTION +14:22:36 +Slot[437] 0200 301000 6688990104022007 ------------- 14 269631 032007213726 5079072696310421BKPH6688990104022007 507907269631 833919 180893 S +14:22:48 Slot [402] | NOT FINANCIAL TRANSACTION +14:22:58 Slot [403] | NOT FINANCIAL TRANSACTION +14:23:01 +Slot[408] 0200 301000 6688990040135517 ------------- 00 769249 000000000000 507904719657180010006688990040135517 507904719657 545973 621354 S +14:23:10 +Slot[362] 0200 011000 1808930100004555 ------------- 00 769278 000100000000 507903675621160020001808930100004555 507903675621 973974 621354 S +14:23:14 Slot [385] | NOT FINANCIAL TRANSACTION +14:23:16 Slot [375] | NOT FINANCIAL TRANSACTION +14:23:30 Slot [392] | NOT FINANCIAL TRANSACTION +14:23:31 Slot [412] | NOT FINANCIAL TRANSACTION +14:23:42 Slot [450] | NOT FINANCIAL TRANSACTION +14:23:45 +Slot[447] 0200 011000 6688990104022007 ------------- 14 269634 000010000000 5079072696340421BKPH6688990104022007 507907269634 862005 180893 S +14:23:58 Slot [417] | NOT FINANCIAL TRANSACTION +14:24:00 +Slot[391] 0200 010000 6688990108267806 ------------- 00 769469 000010000000 507904635702170008006688990108267806 507904635702 303443 621354 S +14:24:08 +Slot[443] 0200 011000 1808930100004555 ------------- 00 769502 000030000000 507903675623160020001808930100004555 507903675623 843197 621354 S +14:24:16 Slot [405] | NOT FINANCIAL TRANSACTION +14:24:17 +Slot[377] 0200 012000 6688990030018756 ------------- 00 769531 000100000000 507904660735170011006688990030018756 507904660735 791157 621354 S +14:24:19 Slot [386] | NOT FINANCIAL TRANSACTION +14:24:27 +Slot[429] 0200 301000 6688990107839308 ------------- 55 769563 000000000000 507903837615010099006688990107839308 507903837615 931076 621354 S +14:24:32 Slot [446] | NOT FINANCIAL TRANSACTION +14:24:32 Slot [456] | NOT FINANCIAL TRANSACTION +14:24:40 +Slot[404] 0200 011000 6688990104022007 ------------- 14 269640 000030000000 5079072696400421BKPH6688990104022007 507907269640 986229 180893 S +14:24:49 +Slot[424] 0200 301000 6688990107839308 ------------- 00 769633 000000000000 507903837616010099006688990107839308 507903837616 815692 621354 S +14:24:49 Slot [445] | NOT FINANCIAL TRANSACTION +14:24:55 Slot [435] | NOT FINANCIAL TRANSACTION +14:25:00 Slot [438] | NOT FINANCIAL TRANSACTION +14:25:04 +Slot[442] 0200 010000 6213548000242519 ------------- 00 269643 000010000000 5079072696430522XYXH6213548000242519 507907269643 989377 180893 S +14:25:14 +Slot[434] 0200 011000 1888880000082578 ------------- 00 769725 000002000000 507903161335040026001888880000082578 507903161335 358733 621354 S +14:25:15 Slot [427] | NOT FINANCIAL TRANSACTION +14:25:24 Slot [428] | NOT FINANCIAL TRANSACTION +14:25:26 Slot [462] | NOT FINANCIAL TRANSACTION +14:25:27 +Slot[451] 0200 010000 6688990108267806 ------------- 00 769790 000010000000 507904635704170008006688990108267806 507904635704 552499 621354 S +14:25:34 Slot [431] | NOT FINANCIAL TRANSACTION +14:25:41 Slot [421] | NOT FINANCIAL TRANSACTION +14:25:45 +Slot[457] 0200 300000 6688990105511404 ------------- 55 769854 000000000000 507905382496120034006688990105511404 507905382496 274149 621354 S +14:25:48 +Slot[426] 0200 010000 6688990040112748 ------------- 14 269649 000050000000 5079072696490221XKKM6688990040112748 507907269649 073239 180893 S +14:25:59 Slot [465] | NOT FINANCIAL TRANSACTION +14:26:01 +Slot[422] 0200 301000 6688990104937501 ------------- 00 769916 000000000000 507905200879070017006688990104937501 507905200879 994189 621354 S +14:26:07 +Slot[444] 0200 011000 6688990601482308 ------------- 00 769938 000100000000 507904153943200010006688990601482308 507904153943 994580 621354 S +14:26:14 Slot [436] | NOT FINANCIAL TRANSACTION +14:26:22 +Slot[423] 0200 011000 6688990104022007 ------------- 14 269652 000010000000 5079072696520421BKPH6688990104022007 507907269652 043513 180893 S +14:26:22 Slot [458] | NOT FINANCIAL TRANSACTION +14:26:23 +Slot[439] 0200 301000 6688990103638704 ------------- 00 769995 000000000000 507903397915060012006688990103638704 507903397915 798158 621354 S +14:26:29 Slot [459] | NOT FINANCIAL TRANSACTION +14:26:31 Slot [452] | NOT FINANCIAL TRANSACTION +14:26:35 +Slot[466] 0200 302000 6213545001030570 ------------- 00 269653 032007253726 5079072696530261PSL16213545001030570 507907269653 080059 180893 S +14:26:36 Slot [455] | NOT FINANCIAL TRANSACTION +14:26:39 +Slot[468] 0200 300000 6688990105511404 ------------- 00 770055 000000000000 507905382497120034006688990105511404 507905382497 128554 621354 S +14:26:40 +Slot[475] 0200 011000 1808930200039162 ------------- 00 770040 000050000000 507905005786010124001808930200039162 507905005786 099593 621354 S +14:26:47 Slot [449] | NOT FINANCIAL TRANSACTION +14:26:52 +Slot[440] 0200 011000 1888880000082578 ------------- 00 770094 000020000000 507903161337040026001888880000082578 507903161337 077219 621354 S +14:26:59 +Slot[482] 0200 011000 6688990104937501 ------------- 00 770119 000090000000 507905200881070017006688990104937501 507905200881 733896 621354 S +14:27:03 Slot [460] | NOT FINANCIAL TRANSACTION +14:27:04 +Slot[432] 0200 011000 6688990030018756 ------------- 00 770138 000100000000 507904660740170011006688990030018756 507904660740 229833 621354 S +14:27:14 Slot [495] | NOT FINANCIAL TRANSACTION +14:27:24 Slot [453] | NOT FINANCIAL TRANSACTION +14:27:34 Slot [488] | NOT FINANCIAL TRANSACTION +14:27:38 Slot [470] | NOT FINANCIAL TRANSACTION +14:27:40 Slot [484] | NOT FINANCIAL TRANSACTION +14:27:50 Slot [463] | NOT FINANCIAL TRANSACTION +14:27:54 +Slot[490] 0200 011000 6688990103638704 ------------- 00 770308 000100000000 507903397917060012006688990103638704 507903397917 670657 621354 S +14:27:57 +Slot[480] 0200 301000 6688990601482308 ------------- 00 770321 000000000000 507904153945200010006688990601482308 507904153945 265247 621354 S +14:28:05 +Slot[448] 0200 010000 6688990030018756 ------------- 00 770353 000100000000 507904660742170011006688990030018756 507904660742 927360 621354 S +14:28:07 Slot [471] | NOT FINANCIAL TRANSACTION +14:28:21 +Slot[479] 0200 301000 6688990106324609 ------------- 00 770408 000000000000 507904645090170009006688990106324609 507904645090 324079 621354 S +14:28:22 Slot [0] | NOT FINANCIAL TRANSACTION +14:28:30 Slot [2] | NOT FINANCIAL TRANSACTION +14:28:33 Slot [493] | NOT FINANCIAL TRANSACTION +14:28:39 Slot [4] | NOT FINANCIAL TRANSACTION +14:28:40 Slot [1] | NOT FINANCIAL TRANSACTION +14:28:43 +Slot[498] 0200 011000 6688990601482308 ------------- 00 770488 000100000000 507904153947200010006688990601482308 507904153947 172089 621354 S +14:28:44 Slot [473] | NOT FINANCIAL TRANSACTION +14:28:48 +Slot[476] 0200 011000 6688990104022007 ------------- 14 269660 000010000000 5079072696600421BKPH6688990104022007 507907269660 898873 180893 S +14:28:54 +Slot[489] 0200 011000 6688990104937907 ------------- 00 770528 000100000000 507905200884070017006688990104937907 507905200884 839113 621354 S +14:29:00 Slot [477] | NOT FINANCIAL TRANSACTION +14:29:01 +Slot[483] 0200 301000 6688990105033409 ------------- 00 770569 000000000000 507904698947180008006688990105033409 507904698947 194661 621354 S +14:29:03 +Slot[486] 0200 010000 6688990030018756 ------------- 00 770574 000100000000 507904660744170011006688990030018756 507904660744 032944 621354 S +14:29:11 Slot [474] | NOT FINANCIAL TRANSACTION +14:29:21 +Slot[472] 0200 301000 6213545000697734 ------------- 00 269662 032007282226 5079072696620221XKKM6213545000697734 507907269662 368422 180893 S +14:29:32 Slot [6] | NOT FINANCIAL TRANSACTION +14:29:38 +Slot[485] 0200 010000 6688990104022007 ------------- 14 269664 000010000000 5079072696640421BKPH6688990104022007 507907269664 382416 180893 S +14:29:39 +Slot[492] 0200 011000 6688990106324609 ------------- 00 770730 000100000000 507904645092170009006688990106324609 507904645092 057052 621354 S +14:29:42 Slot [14] | NOT FINANCIAL TRANSACTION +14:29:44 Slot [16] | NOT FINANCIAL TRANSACTION +14:29:46 +Slot[454] 0200 011000 6688990601482308 ------------- 00 770766 000100000000 507904153949200010006688990601482308 507904153949 812608 621354 S +14:29:49 Slot [13] | NOT FINANCIAL TRANSACTION +14:29:55 Slot [12] | NOT FINANCIAL TRANSACTION +14:30:00 Slot [22] | NOT FINANCIAL TRANSACTION +14:30:01 +Slot[469] 0200 011000 6688990104937907 ------------- 00 770817 000040000000 507905200886070017006688990104937907 507905200886 530181 621354 S +14:30:06 +Slot[494] 0200 010000 6688990030018756 ------------- 00 770840 000100000000 507904660746170011006688990030018756 507904660746 933931 621354 S +14:30:07 +Slot[17] 0200 301000 6688990040038836 ------------- 00 770849 000000000000 507902747750010068006688990040038836 507902747750 410320 621354 S +14:30:11 Slot [491] | NOT FINANCIAL TRANSACTION +14:30:21 Slot [10] | NOT FINANCIAL TRANSACTION +14:30:25 +Slot[499] 0200 010000 6213545000106058 ------------- 00 269666 000010000000 5079072696660243VTKS6213545000106058 507907269666 695842 180893 S +14:30:38 Slot [29] | NOT FINANCIAL TRANSACTION +14:30:39 +Slot[481] 0200 301000 6688990601482308 ------------- 00 770965 000000000000 507904153950200010006688990601482308 507904153950 089848 621354 S +14:30:40 +Slot[31] 0200 010000 6688990102133707 ------------- 00 770969 000020000000 507903856705010101006688990102133707 507903856705 091315 621354 S +14:30:44 Slot [23] | NOT FINANCIAL TRANSACTION +14:30:49 Slot [11] | NOT FINANCIAL TRANSACTION +14:30:49 +Slot[3] 0200 011000 6688990106324609 ------------- 00 771006 000100000000 507904645094170009006688990106324609 507904645094 963601 621354 S +14:30:53 Slot [35] | NOT FINANCIAL TRANSACTION +14:30:56 +Slot[33] 0200 010000 6688990103743801 ------------- 61 269670 000200000000 5079072696700221XKKM6688990103743801 507907269670 727195 180893 S +14:30:58 +Slot[21] 0200 010000 6688990030018756 ------------- 00 771042 000050000000 507904660748170011006688990030018756 507904660748 400966 621354 S +14:31:04 Slot [496] | NOT FINANCIAL TRANSACTION +14:31:10 +Slot[461] 0200 300000 6213541000565088 ------------- 00 948587 000000000000 507901963615030200196213541000565088 507901963615 633227 668899 S +14:31:15 Slot [30] | NOT FINANCIAL TRANSACTION +14:31:16 +Slot[37] 0200 301000 6688990104022007 ------------- 14 269671 032007301926 5079072696710421BKPH6688990104022007 507907269671 502567 180893 S +14:31:22 Slot [9] | NOT FINANCIAL TRANSACTION +14:31:28 Slot [45] | NOT FINANCIAL TRANSACTION +14:31:44 +Slot[36] 0200 301000 6213545000783559 ------------- 00 269673 032007304626 5079072696730122ATBR6213545000783559 507907269673 622679 180893 S +14:31:44 Slot [18] | NOT FINANCIAL TRANSACTION +14:31:45 +Slot[497] 0200 010000 6213545000170682 ------------- 00 269674 000100000000 5079072696740114XKBR6213545000170682 507907269674 743634 180893 S +14:31:46 Slot [40] | NOT FINANCIAL TRANSACTION +14:31:51 +Slot[467] 0200 302000 6213541000565088 ------------- 00 948609 000000000000 507901963616030200196213541000565088 507901963616 269091 668899 S +14:31:54 Slot [8] | NOT FINANCIAL TRANSACTION +14:32:05 +Slot[28] 0200 311000 1808930600013502 ------------- 00 009296 000000000000 507900213257050001001808930600013502 507900213257 127601 220699 S +14:32:07 +Slot[43] 0200 010000 6688990104022007 ------------- 14 269677 000010000000 5079072696770421BKPH6688990104022007 507907269677 702405 180893 S +14:32:09 +Slot[7] 0200 301000 6213541000565088 ------------- 00 948615 000000000000 507901963617030200196213541000565088 507901963617 774292 668899 S +14:32:11 +Slot[52] 0200 011000 6688990106324609 ------------- 00 771316 000090000000 507904645096170009006688990106324609 507904645096 419782 621354 S +14:32:20 +Slot[25] 0200 011000 6213544001068284 ------------- 00 168961 000005000000 507900026371010002006213544001068284 507900026371 204238 220699 S +14:32:21 +Slot[50] 0200 011000 1808930700009590 ------------- 51 771339 000015000000 507903335017130013001808930700009590 507903335017 724262 621354 S +14:32:28 Slot [55] | NOT FINANCIAL TRANSACTION +14:32:31 +Slot[61] 0200 301000 6688990106003203 ------------- 00 771395 000000000000 507903433319060016006688990106003203 507903433319 281611 621354 S +14:32:32 +Slot[44] 0200 010000 6213545000106058 ------------- 00 269682 000010000000 5079072696820243VTKS6213545000106058 507907269682 469588 180893 S +14:32:33 +Slot[478] 0200 010000 6213545000783559 ------------- 00 269683 000050000000 5079072696830122ATBR6213545000783559 507907269683 785046 180893 S +14:32:35 +Slot[15] 0200 010000 6213541000565088 ------------- 00 948634 000020000000 507901963618030200196213541000565088 507901963618 008392 668899 S +14:32:43 Slot [68] | NOT FINANCIAL TRANSACTION +14:32:47 +Slot[60] 0200 010000 6213545000170682 ------------- 00 269687 000100000000 5079072696870114XKBR6213545000170682 507907269687 114087 180893 S +14:32:48 Slot [63] | NOT FINANCIAL TRANSACTION +14:32:59 +Slot[73] 0200 301000 1808930700009590 ------------- 00 771467 000000000000 507903335018130013001808930700009590 507903335018 878618 621354 S +14:32:59 Slot [38] | NOT FINANCIAL TRANSACTION +14:33:03 +Slot[41] 0420 010000 6688990103743801 ------------- 00 269684 000100000000 5079072696840221XKKM6688990103743801 507907269684 -------- 180893 S +14:33:11 +Slot[464] 0200 011000 6688990106003203 ------------- 00 771518 000050000000 507903433321060016006688990106003203 507903433321 221144 621354 S +14:33:16 Slot [32] | NOT FINANCIAL TRANSACTION +14:33:30 Slot [487] | NOT FINANCIAL TRANSACTION +14:33:40 +Slot[26] 0200 010000 6688990602799700 ------------- 00 771621 000050000000 507904153952200010006688990602799700 507904153952 488105 621354 S +14:33:41 +Slot[20] 0200 010000 6213545000526008 ------------- 00 269693 000100000000 5079072696930114XKBR6213545000526008 507907269693 486040 180893 S +14:33:49 +Slot[46] 0200 011000 6688990040157180 ------------- 62 771661 000074000000 507902539895050036006688990040157180 507902539895 000870 621354 S +14:33:50 Slot [69] | NOT FINANCIAL TRANSACTION +14:33:50 +Slot[27] 0200 010000 6213545000106058 ------------- 00 269695 000010000000 5079072696950243VTKS6213545000106058 507907269695 627603 180893 S +14:33:52 +Slot[19] 0200 301000 6688990104022007 ------------- 14 269697 032007325426 5079072696970421BKPH6688990104022007 507907269697 465177 180893 S +14:33:53 +Slot[48] 0200 011000 1808930700009590 ------------- 51 771658 000010000000 507903335020130013001808930700009590 507903335020 642378 621354 S +14:34:01 +Slot[47] 0200 010000 6213545000697734 ------------- 61 269700 000200000000 5079072697000221XKKM6213545000697734 507907269700 328709 180893 S +14:34:04 Slot [78] | NOT FINANCIAL TRANSACTION +14:34:14 Slot [54] | NOT FINANCIAL TRANSACTION +14:34:24 Slot [81] | NOT FINANCIAL TRANSACTION +14:34:24 Slot [57] | NOT FINANCIAL TRANSACTION +14:34:29 +Slot[24] 0200 010000 6213545000526008 ------------- 00 269704 000100000000 5079072697040114XKBR6213545000526008 507907269704 651262 180893 S +14:34:41 +Slot[49] 0200 300000 6688990108428804 ------------- 00 771811 000000000000 507903499492060022006688990108428804 507903499492 055475 621354 S +14:34:43 +Slot[42] 0200 011000 1808930700009590 ------------- 00 771793 000002000000 507903335022130013001808930700009590 507903335022 584416 621354 S +14:34:44 +Slot[34] 0200 011000 6688990104022007 ------------- 14 269706 000100000000 5079072697060421BKPH6688990104022007 507907269706 221790 180893 S +14:34:52 +Slot[88] 0200 011000 1808931400001408 ------------- 00 771821 000015000000 507904698949180008001808931400001408 507904698949 435510 621354 S +14:34:52 Slot [89] | NOT FINANCIAL TRANSACTION +14:34:53 +Slot[86] 0200 301000 1888880000011569 ------------- 00 771847 000000000000 507904412666030040001888880000011569 507904412666 696580 621354 S +14:34:55 Slot [79] | NOT FINANCIAL TRANSACTION +14:34:56 Slot [84] | NOT FINANCIAL TRANSACTION +14:35:08 Slot [59] | NOT FINANCIAL TRANSACTION +14:35:09 Slot [5] | NOT FINANCIAL TRANSACTION +14:35:19 Slot [67] | NOT FINANCIAL TRANSACTION +14:35:32 +Slot[62] 0200 010000 6688990104022007 ------------- 14 269712 000010000000 5079072697120421BKPH6688990104022007 507907269712 003499 180893 S +14:35:33 +Slot[51] 0200 010000 6213545000526008 ------------- 00 269713 000050000000 5079072697130114XKBR6213545000526008 507907269713 081197 180893 S +14:35:44 +Slot[39] 0200 010000 6213545000697734 ------------- 00 269714 000050000000 5079072697140221XKKM6213545000697734 507907269714 957452 180893 S +14:35:54 Slot [58] | NOT FINANCIAL TRANSACTION +14:35:55 +Slot[56] 0200 011000 1888880000011569 ------------- 00 772025 000060000000 507904412668030040001888880000011569 507904412668 210226 621354 S +14:35:56 +Slot[99] 0200 301000 6688990104022007 ------------- 14 269716 032007345826 5079072697160421BKPH6688990104022007 507907269716 103893 180893 S +14:36:06 Slot [82] | NOT FINANCIAL TRANSACTION +14:36:14 Slot [93] | NOT FINANCIAL TRANSACTION +14:36:14 +Slot[64] 0200 011000 6688990104333602 ------------- 00 772126 000050000000 507904635717170008006688990104333602 507904635717 854062 621354 S +14:36:17 Slot [91] | NOT FINANCIAL TRANSACTION +14:36:21 +Slot[100] 0200 012000 6688990100044203 ------------- 00 772157 000050000000 507902553409050038006688990100044203 507902553409 563147 621354 S +14:36:21 Slot [65] | NOT FINANCIAL TRANSACTION +14:36:28 +Slot[72] 0200 010000 6688990108347509 ------------- 14 269719 000010000000 5079072697190321LNTV6688990108347509 507907269719 800467 180893 S +14:36:38 Slot [76] | NOT FINANCIAL TRANSACTION +14:36:42 +Slot[106] 0200 010000 6688990108428804 ------------- 00 772259 000100000000 507903499495060022006688990108428804 507903499495 453153 621354 S +14:36:50 Slot [90] | NOT FINANCIAL TRANSACTION +14:36:51 +Slot[114] 0200 011000 1888880000011569 ------------- 00 772289 000060000000 507904412670030040001888880000011569 507904412670 086150 621354 S +14:36:53 +Slot[66] 0200 010000 6213548000368991 ------------- 51 948750 000010000000 507900196126030010036213548000368991 507900196126 897400 668899 S +14:36:56 Slot [83] | NOT FINANCIAL TRANSACTION +14:37:01 +Slot[118] 0200 010000 6688990103743801 ------------- 14 269722 000050000000 5079072697220221XKKM6688990103743801 507907269722 634188 180893 S +14:37:15 Slot [107] | NOT FINANCIAL TRANSACTION +14:37:17 +Slot[74] 0200 300000 6213548000368991 ------------- 00 948759 000000000000 507900196127030010036213548000368991 507900196127 109877 668899 S +14:37:19 Slot [121] | NOT FINANCIAL TRANSACTION +14:37:30 +Slot[115] 0200 011000 6688990040157180 ------------- 62 772452 000074000000 507902539897050036006688990040157180 507902539897 774198 621354 S +14:37:31 Slot [92] | NOT FINANCIAL TRANSACTION +14:37:43 +Slot[108] 0200 010000 6688990103743801 ------------- 14 269724 000050000000 5079072697240221XKKM6688990103743801 507907269724 628364 180893 S +14:37:51 +Slot[113] 0200 301000 6688990603028703 ------------- 00 772545 000000000000 507904743906070010006688990603028703 507904743906 828435 621354 S +14:37:52 Slot [127] | NOT FINANCIAL TRANSACTION +14:37:54 +Slot[94] 0200 010000 6688990108428804 ------------- 00 772548 000100000000 507903499497060022006688990108428804 507903499497 746460 621354 S +14:37:58 Slot [75] | NOT FINANCIAL TRANSACTION +14:38:03 Slot [95] | NOT FINANCIAL TRANSACTION +14:38:12 +Slot[53] 0200 010000 6688990040120675 ------------- 00 772605 000100000000 507904719671180010006688990040120675 507904719671 869935 621354 S +14:38:14 Slot [98] | NOT FINANCIAL TRANSACTION +14:38:17 +Slot[125] 0200 011000 6213544001687026 ------------- 00 269726 000030000000 5079072697260141HQBR6213544001687026 507907269726 108699 180893 S +14:38:24 Slot [134] | NOT FINANCIAL TRANSACTION +14:38:29 Slot [103] | NOT FINANCIAL TRANSACTION +14:38:37 +Slot[101] 0200 010000 6688990103743801 ------------- 14 269730 000050000000 5079072697300221XKKM6688990103743801 507907269730 096120 180893 S +14:38:43 +Slot[96] 0200 011000 1808930100005743 ------------- 00 772685 000020000000 507903587147090015001808930100005743 507903587147 134720 621354 S +14:38:53 Slot [77] | NOT FINANCIAL TRANSACTION +14:39:00 Slot [71] | NOT FINANCIAL TRANSACTION +14:39:05 Slot [109] | NOT FINANCIAL TRANSACTION +14:39:06 +Slot[70] 0200 010000 6688990108428804 ------------- 00 772788 000100000000 507903499499060022006688990108428804 507903499499 246958 621354 S +14:39:07 +Slot[102] 0200 301000 6688990108347509 ------------- 14 269733 032007381126 5079072697330321LNTV6688990108347509 507907269733 054813 180893 S +14:39:12 +Slot[136] 0200 010000 6213548000229136 ------------- 00 948800 000010000000 507901955660030200186213548000229136 507901955660 116915 668899 S +14:39:16 +Slot[85] 0200 010000 6688990040120675 ------------- 00 772826 000100000000 507904719673180010006688990040120675 507904719673 739779 621354 S +14:39:16 Slot [129] | NOT FINANCIAL TRANSACTION +14:39:16 Slot [87] | NOT FINANCIAL TRANSACTION +14:39:28 +Slot[105] 0200 010000 6688990103743801 ------------- 14 269738 000050000000 5079072697380221XKKM6688990103743801 507907269738 545909 180893 S +14:39:29 Slot [131] | NOT FINANCIAL TRANSACTION +14:39:37 Slot [104] | NOT FINANCIAL TRANSACTION +14:39:47 +Slot[138] 0200 011000 6688990108337500 ------------- 14 269743 000080000000 5079072697430261PSL16688990108337500 507907269743 158282 180893 S +14:39:55 Slot [116] | NOT FINANCIAL TRANSACTION +14:39:58 +Slot[112] 0200 012000 6688990103675904 ------------- 55 772958 000100000000 507903372951130017006688990103675904 507903372951 314289 621354 S +14:39:59 Slot [97] | NOT FINANCIAL TRANSACTION +14:40:02 Slot [140] | NOT FINANCIAL TRANSACTION +14:40:14 Slot [111] | NOT FINANCIAL TRANSACTION +14:40:25 Slot [117] | NOT FINANCIAL TRANSACTION +14:40:30 +Slot[124] 0200 301000 6213541000440092 ------------- 00 207393 000000000000 507914207393000022226213541000440092 507914207393 846728 198901 S +14:40:34 Slot [123] | NOT FINANCIAL TRANSACTION +14:40:35 +Slot[80] 0200 010000 6213541000661333 ------------- 00 948825 000100000000 507901565345036150016213541000661333 507901565345 578323 668899 S +14:40:36 +Slot[161] 0200 010000 6688990108429307 ------------- 00 773073 000100000000 507903499501060022006688990108429307 507903499501 369454 621354 S +14:40:38 +Slot[147] 0200 010000 6688990040120675 ------------- 51 773084 000070000000 507904719675180010006688990040120675 507904719675 144908 621354 S +14:40:41 Slot [162] | NOT FINANCIAL TRANSACTION +14:40:48 +Slot[132] 0200 010000 6688990103744106 ------------- 14 269752 000050000000 5079072697520221XKKM6688990103744106 507907269752 767384 180893 S +14:40:49 +Slot[122] 0200 013000 6688990603028703 ------------- 00 773115 000100000000 507904731468070009006688990603028703 507904731468 509522 621354 S +14:40:52 +Slot[145] 0200 011000 6213541000440092 ------------- 00 207399 000050000000 507914207399000022226213541000440092 507914207399 636271 198901 S +14:40:59 +Slot[154] 0200 012000 6688990108337500 ------------- 14 269754 000080000000 5079072697540261PSL16688990108337500 507907269754 935166 180893 S +14:41:00 +Slot[158] 0200 012000 6688990103675904 ------------- 00 773156 000100000000 507903372953130017006688990103675904 507903372953 417898 621354 S +14:41:04 Slot [143] | NOT FINANCIAL TRANSACTION +14:41:11 +Slot[166] 0200 300000 6688990103833305 ------------- 00 773186 000000000000 507904645102170009006688990103833305 507904645102 670471 621354 S +14:41:16 +Slot[153] 0200 301000 1808931700010158 ------------- 00 773188 000000000000 507904795681070015001808931700010158 507904795681 946661 621354 S +14:41:21 Slot [120] | NOT FINANCIAL TRANSACTION +14:41:23 Slot [110] | NOT FINANCIAL TRANSACTION +14:41:24 +Slot[133] 0200 300000 6688990040120675 ------------- 00 773227 000000000000 507904719676180010006688990040120675 507904719676 158172 621354 S +14:41:35 Slot [150] | NOT FINANCIAL TRANSACTION +14:41:39 Slot [142] | NOT FINANCIAL TRANSACTION +14:41:51 Slot [159] | NOT FINANCIAL TRANSACTION +14:41:52 +Slot[130] 0200 010000 6213541000661333 ------------- 00 948866 000100000000 507901565347036150016213541000661333 507901565347 310217 668899 S +14:41:55 +Slot[167] 0200 301000 6213545000687479 ------------- 00 269761 032007405826 5079072697610363CPSH6213545000687479 507907269761 936777 180893 S +14:41:57 +Slot[137] 0200 011000 6688990040157180 ------------- 62 773345 000074000000 507902539899050036006688990040157180 507902539899 206456 621354 S +14:41:58 +Slot[175] 0200 010000 6688990108429307 ------------- 00 773348 000020000000 507903499503060022006688990108429307 507903499503 086913 621354 S +14:42:00 +Slot[146] 0200 300000 6688990103833305 ------------- 00 773352 000000000000 507904645103170009006688990103833305 507904645103 942046 621354 S +14:42:04 +Slot[128] 0200 010000 6688990104705304 ------------- 14 269763 000050000000 5079072697630261PSL16688990104705304 507907269763 632224 180893 S +14:42:06 +Slot[170] 0200 013000 6688990603028703 ------------- 00 773363 000100000000 507904731470070009006688990603028703 507904731470 620558 621354 S +14:42:06 Slot [157] | NOT FINANCIAL TRANSACTION +14:42:10 +Slot[141] 0200 010000 2206990000134775 ------------- 00 269765 000100000000 5079072697650102SAPA2206990000134775 507907269765 980302 180893 S +14:42:20 +Slot[151] 0200 010000 6213545000687479 ------------- 00 269768 000050000000 5079072697680363CPSH6213545000687479 507907269768 979460 180893 S +14:42:31 +Slot[172] 0200 311000 6213543000217264 ------------- 55 999937 000000000000 507900281352100001006213543000217264 507900281352 370015 220699 S +14:42:32 Slot [171] | NOT FINANCIAL TRANSACTION +14:42:37 +Slot[164] 0200 010000 6688990040120675 ------------- 00 773487 000060000000 507904719678180010006688990040120675 507904719678 511845 621354 S +14:42:41 +Slot[186] 0200 012000 6688990103675904 ------------- 00 773503 000100000000 507903372956130017006688990103675904 507903372956 122507 621354 S +14:42:43 Slot [126] | NOT FINANCIAL TRANSACTION +14:42:44 Slot [148] | NOT FINANCIAL TRANSACTION +14:42:48 +Slot[182] 0420 010000 6213541000661333 ------------- 00 948866 000100000000 507901565347036150016213541000661333 507901565347 -------- 668899 S +14:42:54 Slot [119] | NOT FINANCIAL TRANSACTION +14:43:01 +Slot[139] 0200 311000 6213543000217264 ------------- 00 999943 000000000000 507900281354100001006213543000217264 507900281354 407245 220699 S +14:43:08 Slot [176] | NOT FINANCIAL TRANSACTION +14:43:09 +Slot[202] 0200 011000 6688990040157180 ------------- 62 773625 000074000000 507902539901050036006688990040157180 507902539901 643048 621354 S +14:43:10 Slot [187] | NOT FINANCIAL TRANSACTION +14:43:20 +Slot[160] 0200 300000 6213544001521373 ------------- 00 948904 000000000000 507902093350030200216213544001521373 507902093350 678515 668899 S +14:43:22 +Slot[144] 0200 302000 6213545000096911 ------------- 00 269773 032007422526 5079072697730112CPBR6213545000096911 507907269773 994171 180893 S +14:43:23 +Slot[156] 0200 011000 1808931700010158 ------------- 00 773656 000100000000 507904795684070015001808931700010158 507904795684 758515 621354 S +14:43:32 Slot [163] | NOT FINANCIAL TRANSACTION +14:43:34 +Slot[203] 0200 011000 6213543000217264 ------------- 00 999944 000010000000 507900281355100001006213543000217264 507900281355 071451 220699 S +14:43:41 +Slot[179] 0200 012000 6688990603028703 ------------- 00 773727 000100000000 507904731473070009006688990603028703 507904731473 265444 621354 S +14:43:43 Slot [135] | NOT FINANCIAL TRANSACTION +14:43:45 +Slot[204] 0200 010000 6688990602713503 ------------- 14 269776 000010000000 5079072697760201ADD16688990602713503 507907269776 051194 180893 S +14:43:49 Slot [152] | NOT FINANCIAL TRANSACTION +14:43:52 +Slot[192] 0200 010000 6688990040135517 ------------- 00 773766 000100000000 507904719680180010006688990040135517 507904719680 840832 621354 S +14:43:53 Slot [191] | NOT FINANCIAL TRANSACTION +14:44:00 +Slot[190] 0200 011000 6688990108347509 ------------- 14 269779 000012000000 5079072697790321LNTV6688990108347509 507907269779 190791 180893 S +14:44:01 +Slot[198] 0420 010000 6213541000661333 0000000000000 00 948866 000100000000 507901565347036150016213541000661333 507901565347 238715 668899 S +14:44:02 +Slot[196] 0200 010000 6213545000096911 ------------- 61 269780 000200000000 5079072697800112CPBR6213545000096911 507907269780 617822 180893 S +14:44:03 +Slot[155] 0200 010000 6213541000661333 ------------- 51 948921 000100000000 507901565349036150016213541000661333 507901565349 895745 668899 S +14:44:07 +Slot[181] 0200 010000 6213544001521373 ------------- 00 948922 000010000000 507902093352030200216213544001521373 507902093352 071052 668899 S +14:44:10 Slot [201] | NOT FINANCIAL TRANSACTION +14:44:14 Slot [165] | NOT FINANCIAL TRANSACTION +14:44:23 +Slot[214] 0200 301000 1808930900010323 ------------- 00 773881 000000000000 507902606076050043001808930900010323 507902606076 480907 621354 S +14:44:28 +Slot[209] 0200 010000 6213541000661333 ------------- 00 948926 000100000000 507901565350036150016213541000661333 507901565350 836990 668899 S +14:44:32 +Slot[195] 0200 010000 6213545000096911 ------------- 00 269784 000100000000 5079072697840112CPBR6213545000096911 507907269784 959615 180893 S +14:44:36 +Slot[194] 0200 011000 1808931700010158 ------------- 00 773919 000100000000 507904795686070015001808931700010158 507904795686 447758 621354 S +14:44:41 Slot [206] | NOT FINANCIAL TRANSACTION +14:44:44 +Slot[178] 0200 011000 6688990108347509 ------------- 14 269787 000020000000 5079072697870321LNTV6688990108347509 507907269787 954627 180893 S +14:44:45 +Slot[184] 0200 011000 6213544001993598 ------------- 00 207435 000002000000 507914207435000022226213544001993598 507914207435 734994 198901 S +14:44:50 +Slot[213] 0200 010000 6688990108514306 ------------- 14 269790 000100000000 5079072697900201ADD16688990108514306 507907269790 590651 180893 S +14:44:54 Slot [193] | NOT FINANCIAL TRANSACTION +14:44:55 Slot [212] | NOT FINANCIAL TRANSACTION +14:45:04 +Slot[221] 0200 300000 6688990108430503 ------------- 00 774052 000000000000 507903499504060022006688990108430503 507903499504 530670 621354 S +14:45:10 +Slot[207] 0200 011000 1808930900010323 ------------- 00 774055 000010000000 507902606078050043001808930900010323 507902606078 973449 621354 S +14:45:12 Slot [183] | NOT FINANCIAL TRANSACTION +14:45:13 Slot [230] | NOT FINANCIAL TRANSACTION +14:45:15 +Slot[208] 0200 013000 6688990603028703 ------------- 00 774097 000100000000 507904731476070009006688990603028703 507904731476 980353 621354 S +14:45:20 +Slot[211] 0200 010000 6688990108514306 ------------- 14 269793 000100000000 5079072697930201ADD16688990108514306 507907269793 853043 180893 S +14:45:26 +Slot[169] 0200 010000 6213545000933931 ------------- 00 948946 000050000000 507900858401030150046213545000933931 507900858401 977098 668899 S +14:45:30 Slot [205] | NOT FINANCIAL TRANSACTION +14:45:41 Slot [185] | NOT FINANCIAL TRANSACTION +14:45:53 Slot [232] | NOT FINANCIAL TRANSACTION +14:45:53 +Slot[189] 0200 010000 6213548000169951 ------------- 00 948963 000020000000 507901203926030200126213548000169951 507901203926 798582 668899 S +14:45:55 +Slot[149] 0200 010000 6688990040135517 ------------- 00 774235 000100000000 507904719685180010006688990040135517 507904719685 066763 621354 S +14:45:57 +Slot[168] 0200 010000 6213544001759411 ------------- 51 269796 000100000000 5079072697960344SVKV6213544001759411 507907269796 048131 180893 S +14:45:59 Slot [180] | NOT FINANCIAL TRANSACTION +14:46:08 +Slot[174] 0200 010000 6213545000096911 ------------- 00 269798 000100000000 5079072697980112CPBR6213545000096911 507907269798 886777 180893 S +14:46:09 +Slot[222] 0200 013000 6688990603028703 ------------- 65 774309 000100000000 507904743917070010006688990603028703 507904743917 031208 621354 S +14:46:13 +Slot[229] 0200 010000 6688990108430503 ------------- 00 774316 000100000000 507903499506060022006688990108430503 507903499506 600378 621354 S +14:46:14 Slot [173] | NOT FINANCIAL TRANSACTION +14:46:21 +Slot[188] 0200 010000 6688990040142034 ------------- 14 269800 000100000000 5079072698000321LNTV6688990040142034 507907269800 820971 180893 S +14:46:21 Slot [223] | NOT FINANCIAL TRANSACTION +14:46:30 Slot [246] | NOT FINANCIAL TRANSACTION +14:46:46 Slot [215] | NOT FINANCIAL TRANSACTION +14:46:55 +Slot[243] 0200 013000 6688990603028703 ------------- 65 774494 000100000000 507904731478070009006688990603028703 507904731478 959735 621354 S +14:46:59 +Slot[248] 0200 012000 6213545000096911 ------------- 00 269805 000030000000 5079072698050112CPBR6213545000096911 507907269805 015677 180893 S +14:47:01 +Slot[244] 0200 010000 6213544000074135 ------------- 00 269806 000100000000 5079072698060106NAXA6213544000074135 507907269806 225073 180893 S +14:47:04 Slot [227] | NOT FINANCIAL TRANSACTION +14:47:10 +Slot[235] 0200 010000 6688990040135517 ------------- 00 774544 000070000000 507904719687180010006688990040135517 507904719687 977108 621354 S +14:47:13 Slot [251] | NOT FINANCIAL TRANSACTION +14:47:16 Slot [177] | NOT FINANCIAL TRANSACTION +14:47:24 +Slot[242] 0200 010000 6688990108430503 ------------- 00 774593 000100000000 507903499508060022006688990108430503 507903499508 891368 621354 S +14:47:25 +Slot[250] 0200 301000 1808930600043293 ------------- 00 774592 000000000000 507905057684030043001808930600043293 507905057684 378784 621354 S +14:47:27 +Slot[226] 0200 303000 6688990603028703 ------------- 00 774616 000000000000 507904743918070010006688990603028703 507904743918 604767 621354 S +14:47:33 Slot [255] | NOT FINANCIAL TRANSACTION +14:47:41 +Slot[233] 0200 010000 6688990040142034 ------------- 14 269812 000100000000 5079072698120321LNTV6688990040142034 507907269812 602435 180893 S +14:47:46 +Slot[237] 0200 010000 6213544000074135 ------------- 00 269814 000100000000 5079072698140106NAXA6213544000074135 507907269814 143686 180893 S +14:47:56 Slot [200] | NOT FINANCIAL TRANSACTION +14:48:06 +Slot[238] 0200 011000 6213544002125901 ------------- 00 269817 000020000000 5079072698170343SVKP6213544002125901 507907269817 915578 180893 S +14:48:09 Slot [260] | NOT FINANCIAL TRANSACTION +14:48:13 +Slot[253] 0200 013000 6688990603028703 ------------- 65 774785 000100000000 507904743920070010006688990603028703 507904743920 407239 621354 S +14:48:18 Slot [234] | NOT FINANCIAL TRANSACTION +14:48:19 +Slot[216] 0200 011000 1808930600043293 ------------- 00 774782 000023000000 507905057686030043001808930600043293 507905057686 857668 621354 S +14:48:22 Slot [263] | NOT FINANCIAL TRANSACTION +14:48:24 +Slot[249] 0200 010000 6688990108430503 ------------- 00 774817 000100000000 507903499510060022006688990108430503 507903499510 763653 621354 S +14:48:25 +Slot[210] 0200 301000 6213544001001558 ------------- 00 949037 000000000000 507900858403030150046213544001001558 507900858403 370816 668899 S +14:48:33 +Slot[259] 0200 010000 6213544000074135 ------------- 00 269824 000100000000 5079072698240106NAXA6213544000074135 507907269824 416345 180893 S +14:48:43 Slot [261] | NOT FINANCIAL TRANSACTION +14:48:54 Slot [225] | NOT FINANCIAL TRANSACTION +14:48:56 +Slot[270] 0200 011000 6688990100966306 ------------- 00 774912 000100000000 507904719689180010006688990100966306 507904719689 105966 621354 S +14:49:05 Slot [199] | NOT FINANCIAL TRANSACTION +14:49:12 +Slot[269] 0200 010000 6213544000074135 ------------- 00 269830 000100000000 5079072698300106NAXA6213544000074135 507907269830 816033 180893 S +14:49:14 Slot [275] | NOT FINANCIAL TRANSACTION +14:49:15 +Slot[240] 0200 010000 6213544001940581 ------------- 00 259274 000100000000 507900040610010004006213544001940581 507900040610 548844 220699 S +14:49:20 Slot [197] | NOT FINANCIAL TRANSACTION +14:49:23 Slot [256] | NOT FINANCIAL TRANSACTION +14:49:23 +Slot[228] 0200 010000 6688990040082719 ------------- 00 775015 000100000000 507904381151030037006688990040082719 507904381151 720157 621354 S +14:49:29 +Slot[218] 0200 010000 6213544001001558 ------------- 00 949067 000100000000 507900858404030150046213544001001558 507900858404 183565 668899 S +14:49:36 +Slot[265] 0200 010000 6688990108430503 ------------- 00 775064 000100000000 507903499512060022006688990108430503 507903499512 282340 621354 S +14:49:38 Slot [274] | NOT FINANCIAL TRANSACTION +14:49:46 +Slot[247] 0200 011000 6688990040107649 ------------- 00 775109 000020000000 507905246799010133006688990040107649 507905246799 088309 621354 S +14:49:48 +Slot[279] 0200 010000 6688990040142034 ------------- 14 269834 000100000000 5079072698340321LNTV6688990040142034 507907269834 177090 180893 S +14:49:55 Slot [264] | NOT FINANCIAL TRANSACTION +14:49:55 +Slot[273] 0200 301000 6688990040157180 ------------- 62 775175 000000000000 507902539922050036006688990040157180 507902539922 651697 621354 S +14:49:57 +Slot[231] 0200 010000 6213544000074135 ------------- 00 269836 000100000000 5079072698360106NAXA6213544000074135 507907269836 448412 180893 S +14:50:05 Slot [220] | NOT FINANCIAL TRANSACTION +14:50:09 Slot [239] | NOT FINANCIAL TRANSACTION +14:50:14 +Slot[254] 0200 011000 6688990102963509 ------------- 00 775237 000050000000 507902420542050026006688990102963509 507902420542 642363 621354 S +14:50:19 Slot [272] | NOT FINANCIAL TRANSACTION +14:50:21 Slot [252] | NOT FINANCIAL TRANSACTION +14:50:22 +Slot[282] 0200 011000 6688990100966306 ------------- 00 775262 000100000000 507904719691180010006688990100966306 507904719691 255187 621354 S +14:50:22 Slot [276] | NOT FINANCIAL TRANSACTION +14:50:36 Slot [266] | NOT FINANCIAL TRANSACTION +14:50:37 +Slot[280] 0200 010000 6688990108430503 ------------- 00 775324 000020000000 507903499514060022006688990108430503 507903499514 380463 621354 S +14:50:43 +Slot[241] 0200 010000 6213544000074135 ------------- 00 269842 000100000000 5079072698420106NAXA6213544000074135 507907269842 374204 180893 S +14:50:45 +Slot[258] 0200 010000 6213544001940581 ------------- 00 259277 000100000000 507900040612010004006213544001940581 507900040612 218392 220699 S +14:50:47 +Slot[224] 0200 011000 6688990103185904 ------------- 00 775357 000010000000 507905200894070017006688990103185904 507905200894 714287 621354 S +14:50:48 +Slot[284] 0200 010000 6688990040082719 ------------- 00 775350 000100000000 507904381153030037006688990040082719 507904381153 032929 621354 S +14:50:54 +Slot[219] 0200 011000 1808930800015935 ------------- 00 775380 000020000000 507903032208120026001808930800015935 507903032208 390260 621354 S +14:50:57 Slot [287] | NOT FINANCIAL TRANSACTION +14:51:07 Slot [277] | NOT FINANCIAL TRANSACTION +14:51:08 Slot [290] | NOT FINANCIAL TRANSACTION +14:51:19 Slot [267] | NOT FINANCIAL TRANSACTION +14:51:21 Slot [271] | NOT FINANCIAL TRANSACTION +14:51:24 +Slot[294] 0200 300000 6688990108430503 ------------- 00 775524 000000000000 507903499515060022006688990108430503 507903499515 221014 621354 S +14:51:24 Slot [245] | NOT FINANCIAL TRANSACTION +14:51:25 Slot [236] | NOT FINANCIAL TRANSACTION +14:51:30 Slot [217] | NOT FINANCIAL TRANSACTION +14:51:32 +Slot[303] 0200 301000 6213548000240059 ------------- 00 949117 000000000000 507900502457030110016213548000240059 507900502457 504779 668899 S +14:51:35 +Slot[298] 0200 301000 6688990100966306 ------------- 00 775569 000000000000 507904719692180010006688990100966306 507904719692 634227 621354 S +14:51:40 Slot [293] | NOT FINANCIAL TRANSACTION +14:51:50 Slot [257] | NOT FINANCIAL TRANSACTION +14:51:53 +Slot[299] 0200 010000 6688990040082719 ------------- 00 775642 000080000000 507904381155030037006688990040082719 507904381155 370342 621354 S +14:52:03 +Slot[278] 0200 010000 6213545000483754 ------------- 00 949126 000030000000 507902151054030200256213545000483754 507902151054 944185 668899 S +14:52:05 +Slot[281] 0200 011000 6213545001040652 ------------- 00 207521 000050000000 507914207521015290206213545001040652 507914207521 966360 198901 S +14:52:05 Slot [300] | NOT FINANCIAL TRANSACTION +14:52:16 Slot [308] | NOT FINANCIAL TRANSACTION +14:52:16 +Slot[295] 0200 010000 6688990103743801 ------------- 00 775734 000100000000 507903344977130014006688990103743801 507903344977 070063 621354 S +14:52:18 +Slot[296] 0200 010000 6213544001940581 ------------- 00 259280 000100000000 507900040614010004006213544001940581 507900040614 658772 220699 S +14:52:26 Slot [286] | NOT FINANCIAL TRANSACTION +14:52:27 Slot [283] | NOT FINANCIAL TRANSACTION +14:52:31 Slot [316] | NOT FINANCIAL TRANSACTION +14:52:38 Slot [311] | NOT FINANCIAL TRANSACTION +14:52:42 +Slot[312] 0200 011000 6688990100966306 ------------- 00 775840 000040000000 507904719694180010006688990100966306 507904719694 128379 621354 S +14:52:48 +Slot[306] 0200 010000 6213541000348337 ------------- 61 269854 000150000000 5079072698540368KMMX6213541000348337 507907269854 917848 180893 S +14:52:53 +Slot[310] 0200 010000 6688990040082719 ------------- 00 775887 000010000000 507904381157030037006688990040082719 507904381157 029549 621354 S +14:52:59 Slot [317] | NOT FINANCIAL TRANSACTION +14:53:02 +Slot[307] 0200 010000 6213545000484166 ------------- 00 949152 000023000000 507902151056030200256213545000484166 507902151056 626191 668899 S +14:53:15 Slot [288] | NOT FINANCIAL TRANSACTION +14:53:22 +Slot[318] 0200 010000 6688990103743801 ------------- 00 776015 000100000000 507903344979130014006688990103743801 507903344979 631391 621354 S +14:53:28 Slot [325] | NOT FINANCIAL TRANSACTION +14:53:31 +Slot[322] 0200 010000 6213541000348337 ------------- 00 269857 000100000000 5079072698570368KMMX6213541000348337 507907269857 468384 180893 S +14:53:36 Slot [315] | NOT FINANCIAL TRANSACTION +14:53:42 +Slot[304] 0200 301000 1808930600042188 ------------- 00 776091 000000000000 507904377225030036001808930600042188 507904377225 051105 621354 S +14:53:47 Slot [285] | NOT FINANCIAL TRANSACTION +14:53:58 Slot [289] | NOT FINANCIAL TRANSACTION +14:54:02 +Slot[297] 0200 012000 6688990104344203 ------------- 00 776176 000010000000 507902916577120014006688990104344203 507902916577 452505 621354 S +14:54:13 Slot [326] | NOT FINANCIAL TRANSACTION +14:54:24 +Slot[301] 0200 010000 6688990103617203 ------------- 00 776269 000010000000 507903699684050045006688990103617203 507903699684 513140 621354 S +14:54:26 +Slot[291] 0200 011000 1808930600042188 ------------- 00 776256 000010000000 507904377227030036001808930600042188 507904377227 684663 621354 S +14:54:27 +Slot[327] 0200 010000 6213541000348337 ------------- 00 269862 000050000000 5079072698620368KMMX6213541000348337 507907269862 643408 180893 S +14:54:30 Slot [305] | NOT FINANCIAL TRANSACTION +14:54:39 Slot [302] | NOT FINANCIAL TRANSACTION +14:54:41 Slot [331] | NOT FINANCIAL TRANSACTION +14:54:42 +Slot[314] 0200 301000 6213545000000608 ------------- 00 207551 000000000000 507914207551015290316213545000000608 507914207551 953813 198901 S +14:54:55 Slot [292] | NOT FINANCIAL TRANSACTION +14:54:55 Slot [333] | NOT FINANCIAL TRANSACTION +14:55:04 +Slot[335] 0200 011000 6213545000000608 ------------- 00 207557 000100000000 507914207557015290316213545000000608 507914207557 154965 198901 S +14:55:10 +Slot[262] 0200 010000 6688990103743801 ------------- 00 776431 000100000000 507903344981130014006688990103743801 507903344981 281307 621354 S +14:55:11 Slot [334] | NOT FINANCIAL TRANSACTION +14:55:22 Slot [321] | NOT FINANCIAL TRANSACTION +14:55:32 Slot [336] | NOT FINANCIAL TRANSACTION +14:55:33 Slot [320] | NOT FINANCIAL TRANSACTION +14:55:41 +Slot[342] 0200 011000 6213545000000608 ------------- 00 207565 000100000000 507914207565015290316213545000000608 507914207565 146314 198901 S +14:55:42 +Slot[339] 0200 301000 6688990105247207 ------------- 00 776542 000000000000 507904719695180010006688990105247207 507904719695 522172 621354 S +14:55:44 +Slot[323] 0200 013000 6688990040000612 ------------- 00 776541 000010000000 507904769565070012006688990040000612 507904769565 405148 621354 S +14:55:46 Slot [268] | NOT FINANCIAL TRANSACTION +14:55:49 Slot [341] | NOT FINANCIAL TRANSACTION +14:55:54 +Slot[348] 0200 300000 1989010003184787 ------------- 00 776590 000000000000 507902764856010070001989010003184787 507902764856 724614 621354 S +14:56:01 Slot [329] | NOT FINANCIAL TRANSACTION +14:56:12 +Slot[309] 0200 010000 6688990103743801 ------------- 00 776663 000100000000 507903344983130014006688990103743801 507903344983 820404 621354 S +14:56:15 +Slot[352] 0200 011000 6213545000000608 ------------- 00 207576 000100000000 507914207576015290316213545000000608 507914207576 894902 198901 S +14:56:17 Slot [328] | NOT FINANCIAL TRANSACTION +14:56:22 Slot [337] | NOT FINANCIAL TRANSACTION +14:56:29 +Slot[347] 0200 300000 1989010003184787 ------------- 00 776736 000000000000 507902764857010070001989010003184787 507902764857 000668 621354 S +14:56:34 Slot [350] | NOT FINANCIAL TRANSACTION +14:56:34 Slot [346] | NOT FINANCIAL TRANSACTION +14:56:45 +Slot[357] 0200 301000 6213544002138599 ------------- 00 207580 000000000000 507914207580195290016213544002138599 507914207580 676318 198901 S +14:56:47 +Slot[319] 0200 011000 6213545000000608 ------------- 00 207581 000100000000 507914207581015290316213545000000608 507914207581 105964 198901 S +14:56:49 Slot [332] | NOT FINANCIAL TRANSACTION +14:56:51 Slot [330] | NOT FINANCIAL TRANSACTION +14:56:51 +Slot[356] 0200 011000 6688990105247207 ------------- 00 776825 000100000000 507904719697180010006688990105247207 507904719697 400382 621354 S +14:56:56 +Slot[365] 0200 010000 6213541000720444 ------------- 00 949247 000100000000 507901841976030090046213541000720444 507901841976 727777 668899 S +14:57:00 Slot [371] | NOT FINANCIAL TRANSACTION +14:57:13 +Slot[366] 0200 010000 6688990103743801 ------------- 00 776901 000050000000 507903344985130014006688990103743801 507903344985 097972 621354 S +14:57:16 Slot [343] | NOT FINANCIAL TRANSACTION +14:57:18 +Slot[313] 0200 011000 6213545000000608 ------------- 00 207583 000100000000 507914207583015290316213545000000608 507914207583 949840 198901 S +14:57:27 Slot [345] | NOT FINANCIAL TRANSACTION +14:57:31 +Slot[378] 0200 011000 6213544002138599 ------------- 00 207588 000020000000 507914207588195290016213544002138599 507914207588 889792 198901 S +14:57:36 Slot [373] | NOT FINANCIAL TRANSACTION +14:57:37 +Slot[340] 0200 010000 6213541000208812 ------------- 55 949261 000070000000 507901416643030110026213541000208812 507901416643 863780 668899 S +14:57:38 Slot [324] | NOT FINANCIAL TRANSACTION +14:57:49 Slot [382] | NOT FINANCIAL TRANSACTION +14:57:55 +Slot[355] 0200 011000 6213545000000608 ------------- 00 207595 000020000000 507914207595015290316213545000000608 507914207595 831923 198901 S +14:57:56 Slot [353] | NOT FINANCIAL TRANSACTION +14:58:03 Slot [363] | NOT FINANCIAL TRANSACTION +14:58:05 +Slot[344] 0200 011000 6688990105247207 ------------- 00 777102 000100000000 507904719699180010006688990105247207 507904719699 704576 621354 S +14:58:12 +Slot[370] 0200 011000 6688990104808306 ------------- 00 777127 000010000000 507905200896070017006688990104808306 507905200896 609980 621354 S +14:58:14 Slot [379] | NOT FINANCIAL TRANSACTION +14:58:15 +Slot[358] 0200 010000 6213541000208812 ------------- 00 949274 000070000000 507901416645030110026213541000208812 507901416645 707468 668899 S +14:58:17 +Slot[369] 0200 010000 6688990040142034 ------------- 14 269886 000100000000 5079072698860321LNTV6688990040142034 507907269886 191493 180893 S +14:58:22 +Slot[360] 0200 010000 6688990106047408 ------------- 00 777176 000020000000 507903499517060022006688990106047408 507903499517 310410 621354 S +14:58:23 +Slot[338] 0200 012000 6688990105970303 ------------- 00 777185 000100000000 507904090209080006006688990105970303 507904090209 102156 621354 S +14:58:25 +Slot[354] 0200 011000 6213545000000608 ------------- 00 207602 000020000000 507914207602015290316213545000000608 507914207602 801954 198901 S +14:58:29 +Slot[396] 0200 010000 6688990103744106 ------------- 00 777211 000100000000 507903344987130014006688990103744106 507903344987 298152 621354 S +14:58:30 Slot [351] | NOT FINANCIAL TRANSACTION +14:58:38 Slot [390] | NOT FINANCIAL TRANSACTION +14:58:40 +Slot[389] 0200 010000 6688990103003107 ------------- 00 777252 000030000000 507904635727170008006688990103003107 507904635727 517675 621354 S +14:58:41 Slot [374] | NOT FINANCIAL TRANSACTION +14:58:42 +Slot[361] 0200 012000 1989010003184787 ------------- 55 777257 000010000000 507902764863010070001989010003184787 507902764863 780558 621354 S +14:58:53 +Slot[359] 0200 011000 6213545000000608 ------------- 00 207611 000100000000 507914207611015290316213545000000608 507914207611 303234 198901 S +14:58:57 Slot [376] | NOT FINANCIAL TRANSACTION +14:59:01 Slot [383] | NOT FINANCIAL TRANSACTION +14:59:06 +Slot[410] 0200 012000 1989010003184787 ------------- 00 777327 000010000000 507902764865010070001989010003184787 507902764865 382198 621354 S +14:59:13 Slot [400] | NOT FINANCIAL TRANSACTION +14:59:14 +Slot[395] 0200 011000 6688990105247207 ------------- 00 777375 000100000000 507904719701180010006688990105247207 507904719701 845939 621354 S +14:59:20 +Slot[393] 0200 301000 1808931300012539 ------------- 00 949302 000000000000 507902531939030200331808931300012539 507902531939 256366 668899 S +14:59:29 Slot [397] | NOT FINANCIAL TRANSACTION +14:59:37 +Slot[413] 0200 010000 6688990103744106 ------------- 00 777464 000100000000 507903344989130014006688990103744106 507903344989 651388 621354 S +14:59:40 Slot [394] | NOT FINANCIAL TRANSACTION +14:59:45 +Slot[414] 0200 010000 6688990101789202 ------------- 00 777490 000100000000 507904635729170008006688990101789202 507904635729 888040 621354 S +14:59:47 +Slot[349] 0200 010000 1808931300012539 ------------- 00 949311 000010000000 507902531940030200331808931300012539 507902531940 766437 668899 S +14:59:54 +Slot[399] 0200 300000 6688990102368303 ------------- 00 777525 000000000000 507902925741120015006688990102368303 507902925741 547754 621354 S +14:59:55 Slot [418] | NOT FINANCIAL TRANSACTION +14:59:55 +Slot[387] 0200 011000 1808930800007320 ------------- 00 777514 000100000000 507902916579120014001808930800007320 507902916579 449282 621354 S +14:59:57 Slot [368] | NOT FINANCIAL TRANSACTION +15:00:02 +Slot[372] 0200 301000 6213543000161488 ------------- 00 949320 000000000000 507902556287030160046213543000161488 507902556287 013578 668899 S +15:00:06 Slot [419] | NOT FINANCIAL TRANSACTION +15:00:07 Slot [406] | NOT FINANCIAL TRANSACTION +15:00:19 Slot [411] | NOT FINANCIAL TRANSACTION +15:00:31 Slot [380] | NOT FINANCIAL TRANSACTION +15:00:31 +Slot[407] 0200 010000 6213545000719561 ------------- 00 949333 000050000000 507901947259030200176213545000719561 507901947259 720681 668899 S +15:00:42 Slot [416] | NOT FINANCIAL TRANSACTION +15:00:45 +Slot[384] 0200 010000 6688990101789202 ------------- 00 777755 000100000000 507904635731170008006688990101789202 507904635731 505724 621354 S +15:00:46 Slot [401] | NOT FINANCIAL TRANSACTION +15:00:47 +Slot[381] 0200 011000 6213543000178672 ------------- 00 168963 000050000000 507900026373010002006213543000178672 507900026373 986100 220699 S +15:00:49 +Slot[420] 0200 010000 6688990103744106 ------------- 00 777761 000100000000 507903344991130014006688990103744106 507903344991 256144 621354 S +15:00:50 +Slot[415] 0200 010000 6688990102368303 ------------- 00 777764 000020000000 507902925743120015006688990102368303 507902925743 404891 621354 S +15:00:51 Slot [398] | NOT FINANCIAL TRANSACTION +15:00:57 Slot [433] | NOT FINANCIAL TRANSACTION +15:01:00 +Slot[425] 0200 011000 6688990103110605 ------------- 00 777807 000100000000 507902916581120014006688990103110605 507902916581 140675 621354 S +15:01:11 Slot [364] | NOT FINANCIAL TRANSACTION +15:01:15 +Slot[388] 0200 011000 1808930100005172 ------------- 00 777835 000010000000 507903856722010101001808930100005172 507903856722 364696 621354 S +15:01:20 Slot [430] | NOT FINANCIAL TRANSACTION +15:01:22 Slot [409] | NOT FINANCIAL TRANSACTION +15:01:31 +Slot[367] 0200 011000 1808930300020096 ------------- 00 021173 000100000000 507900263120010014001808930300020096 507900263120 209958 220699 S +15:01:33 Slot [441] | NOT FINANCIAL TRANSACTION +15:01:39 +Slot[437] 0200 010000 6213545000023170 ------------- 00 269898 000100000000 5079082698980243VTKS6213545000023170 507908269898 733748 180893 S +15:01:43 +Slot[402] 0200 010000 6688990101789202 ------------- 00 777945 000100000000 507904635733170008006688990101789202 507904635733 746746 621354 S +15:01:44 Slot [403] | NOT FINANCIAL TRANSACTION +15:01:49 Slot [408] | NOT FINANCIAL TRANSACTION +15:01:57 +Slot[362] 0200 310000 6213544000305851 ------------- 00 168965 000000000000 507900026375010002006213544000305851 507900026375 484469 220699 S +15:02:01 Slot [392] | NOT FINANCIAL TRANSACTION +15:02:01 +Slot[385] 0200 010000 6688990103744106 ------------- 00 778010 000100000000 507903344993130014006688990103744106 507903344993 648330 621354 S +15:02:03 +Slot[375] 0200 011000 6688990103110605 ------------- 00 778024 000080000000 507902916583120014006688990103110605 507902916583 416918 621354 S +15:02:11 Slot [450] | NOT FINANCIAL TRANSACTION +15:02:14 +Slot[412] 0200 011000 6213544001993598 ------------- 00 207649 000005000000 507915207649000022226213544001993598 507915207649 094373 198901 S +15:02:16 Slot [417] | NOT FINANCIAL TRANSACTION +15:02:18 +Slot[447] 0200 301000 6213544000248143 ------------- 00 949376 000000000000 507900080527030200016213544000248143 507900080527 714565 668899 S +15:02:20 +Slot[391] 0200 301000 6213545000586192 ------------- 00 269900 032008012326 5079082699000441VT526213545000586192 507908269900 909876 180893 S +15:02:34 +Slot[443] 0200 010000 6213545000023170 ------------- 00 269903 000050000000 5079082699030243VTKS6213545000023170 507908269903 178929 180893 S +15:02:38 +Slot[405] 0200 301000 1808930100005172 ------------- 00 778140 000000000000 507903856723010101001808930100005172 507903856723 373588 621354 S +15:02:40 +Slot[377] 0200 010000 6213544000248143 ------------- 00 949380 000100000000 507900080528030200016213544000248143 507900080528 130667 668899 S +15:02:44 +Slot[386] 0200 010000 6213544000305851 ------------- 00 168966 000014000000 507900026376010002006213544000305851 507900026376 505276 220699 S +15:02:46 Slot [429] | NOT FINANCIAL TRANSACTION +15:02:48 Slot [456] | NOT FINANCIAL TRANSACTION +15:02:51 +Slot[446] 0200 011000 6213544001993598 ------------- 00 207660 000005000000 507915207660000022226213544001993598 507915207660 205963 198901 S +15:03:03 Slot [424] | NOT FINANCIAL TRANSACTION +15:03:06 +Slot[404] 0200 010000 6213541000665953 ------------- 51 949392 000050000000 507902151058030200256213541000665953 507902151058 247085 668899 S +15:03:13 +Slot[445] 0200 301000 6688990103558605 ------------- 00 778278 000000000000 507904698953180008006688990103558605 507904698953 443689 621354 S +15:03:14 Slot [434] | NOT FINANCIAL TRANSACTION +15:03:15 +Slot[435] 0200 011000 6688990104524309 ------------- 00 778283 000030000000 507904807782070016006688990104524309 507904807782 727756 621354 S +15:03:16 +Slot[438] 0200 010000 6688990103743207 ------------- 00 778284 000050000000 507903344995130014006688990103743207 507903344995 966527 621354 S +15:03:18 +Slot[442] 0200 301000 6213541000665953 ------------- 00 949398 000000000000 507902151059030200256213541000665953 507902151059 797752 668899 S +15:03:21 Slot [428] | NOT FINANCIAL TRANSACTION +15:03:23 +Slot[427] 0200 011000 6213544001993598 ------------- 00 207666 000005000000 507915207666000022226213544001993598 507915207666 965641 198901 S +15:03:24 Slot [462] | NOT FINANCIAL TRANSACTION +15:03:39 Slot [451] | NOT FINANCIAL TRANSACTION +15:03:48 Slot [431] | NOT FINANCIAL TRANSACTION +15:03:49 Slot [421] | NOT FINANCIAL TRANSACTION +15:03:56 +Slot[457] 0200 011000 6213544001993598 ------------- 00 207674 000005000000 507915207674000022226213544001993598 507915207674 859597 198901 S +15:04:01 +Slot[426] 0200 010000 6688990104012701 ------------- 00 778443 000010000000 507904645105170009006688990104012701 507904645105 229901 621354 S +15:04:02 Slot [422] | NOT FINANCIAL TRANSACTION +15:04:06 +Slot[465] 0200 301000 6688990103084008 ------------- 00 778463 000000000000 507904719712180010006688990103084008 507904719712 112456 621354 S +15:04:10 +Slot[444] 0200 301000 6213541000665953 ------------- 05 949420 000000000000 507902151061030200256213541000665953 507902151061 608874 668899 S +15:04:15 +Slot[436] 0200 300000 6688990040042481 ------------- 00 778484 000000000000 507905335161050047006688990040042481 507905335161 208199 621354 S +15:04:18 Slot [423] | NOT FINANCIAL TRANSACTION +15:04:26 Slot [458] | NOT FINANCIAL TRANSACTION +15:04:33 +Slot[439] 0200 011000 6213544001993598 ------------- 00 207681 000010000000 507915207681000022226213544001993598 507915207681 731138 198901 S +15:04:33 Slot [459] | NOT FINANCIAL TRANSACTION +15:04:44 Slot [452] | NOT FINANCIAL TRANSACTION +15:04:50 Slot [455] | NOT FINANCIAL TRANSACTION +15:04:53 +Slot[466] 0200 300000 6688990602636506 ------------- 00 778626 000000000000 507903008101120023006688990602636506 507903008101 596772 621354 S +15:04:54 Slot [468] | NOT FINANCIAL TRANSACTION +15:04:55 Slot [475] | NOT FINANCIAL TRANSACTION +15:05:03 +Slot[440] 0200 011000 6213544001993598 ------------- 00 207689 000010000000 507915207689000022226213544001993598 507915207689 050221 198901 S +15:05:04 +Slot[449] 0200 011000 1808930200039634 ------------- 51 778657 000100000000 507905213915010130001808930200039634 507905213915 947453 621354 S +15:05:11 Slot [482] | NOT FINANCIAL TRANSACTION +15:05:21 +Slot[460] 0200 010000 6688990040042481 ------------- 51 778737 000012000000 507905335163050047006688990040042481 507905335163 304443 621354 S +15:05:26 Slot [432] | NOT FINANCIAL TRANSACTION +15:05:31 Slot [495] | NOT FINANCIAL TRANSACTION +15:05:38 +Slot[453] 0200 010000 6213545001033715 ------------- 00 949448 000020000000 507901416649030110026213545001033715 507901416649 999994 668899 S +15:05:41 +Slot[488] 0200 011000 1808931300012745 ------------- 00 778796 000100000000 507904989318010123001808931300012745 507904989318 640039 621354 S +15:05:42 +Slot[470] 0200 301000 1808930200039634 ------------- 00 778802 000000000000 507905213916010130001808930200039634 507905213916 570400 621354 S +15:05:47 +Slot[484] 0200 010000 6688990602636506 ------------- 00 778828 000100000000 507903008103120023006688990602636506 507903008103 684458 621354 S +15:05:48 Slot [463] | NOT FINANCIAL TRANSACTION +15:05:52 Slot [490] | NOT FINANCIAL TRANSACTION +15:05:57 +Slot[480] 0200 010000 6688990105649402 ------------- 00 778860 000070000000 507904635735170008006688990105649402 507904635735 704341 621354 S +15:06:02 +Slot[448] 0200 010000 6213541000119340 ------------- 00 269914 000010000000 5079082699140342KMXF6213541000119340 507908269914 239316 180893 S +15:06:06 +Slot[471] 0200 010000 6688990040042481 ------------- 00 778897 000010000000 507905335165050047006688990040042481 507905335165 363160 621354 S +15:06:16 +Slot[479] 0200 301000 6688990103406409 ------------- 14 269915 032008051926 5079082699150264UDXH6688990103406409 507908269915 078358 180893 S +15:06:22 Slot [0] | NOT FINANCIAL TRANSACTION +15:06:25 Slot [2] | NOT FINANCIAL TRANSACTION +15:06:36 Slot [493] | NOT FINANCIAL TRANSACTION +15:06:37 Slot [4] | NOT FINANCIAL TRANSACTION +15:06:47 +Slot[1] 0200 011000 1808930200039634 ------------- 00 779043 000070000000 507905213918010130001808930200039634 507905213918 902266 621354 S +15:06:51 +Slot[498] 0200 011000 1808931300012745 ------------- 00 779054 000100000000 507904989320010123001808931300012745 507904989320 323708 621354 S +15:06:54 Slot [473] | NOT FINANCIAL TRANSACTION +15:06:58 Slot [476] | NOT FINANCIAL TRANSACTION +15:07:09 Slot [477] | NOT FINANCIAL TRANSACTION +15:07:12 +Slot[489] 0200 010000 6688990040082719 ------------- 00 779139 000040000000 507904381192030037006688990040082719 507904381192 304837 621354 S +15:07:18 +Slot[483] 0200 300000 6213545000384630 ------------- 00 949492 000000000000 507900957537033100016213545000384630 507900957537 965065 668899 S +15:07:21 Slot [486] | NOT FINANCIAL TRANSACTION +15:07:33 +Slot[474] 0200 010000 6688990103406409 ------------- 14 269920 000010000000 5079082699200264UDXH6688990103406409 507908269920 034821 180893 S +15:07:41 Slot [485] | NOT FINANCIAL TRANSACTION +15:07:42 +Slot[472] 0200 010000 6213544002037478 ------------- 00 949503 000020000000 507900146732030200056213544002037478 507900146732 964504 668899 S +15:07:44 Slot [14] | NOT FINANCIAL TRANSACTION +15:07:47 +Slot[6] 0200 010000 6688990101814901 ------------- 00 779274 000100000000 507904635737170008006688990101814901 507904635737 653205 621354 S +15:07:49 Slot [16] | NOT FINANCIAL TRANSACTION +15:07:52 +Slot[492] 0200 011000 1808930200039634 ------------- 00 779283 000020000000 507905213920010130001808930200039634 507905213920 419227 621354 S +15:07:56 Slot [454] | NOT FINANCIAL TRANSACTION +15:08:04 +Slot[13] 0200 011000 1808931300012745 ------------- 00 779318 000100000000 507904989322010123001808931300012745 507904989322 425299 621354 S +15:08:09 Slot [12] | NOT FINANCIAL TRANSACTION +15:08:14 +Slot[22] 0200 302000 6213545000384630 ------------- 00 949515 000000000000 507900957539033100016213545000384630 507900957539 725897 668899 S +15:08:18 +Slot[469] 0200 012000 6213545000095913 ------------- 00 079110 000100000000 507900132975030001006213545000095913 507900132975 959137 220699 S +15:08:19 Slot [17] | NOT FINANCIAL TRANSACTION +15:08:20 +Slot[494] 0200 010000 6688990040082719 ------------- 00 779383 000010000000 507904381194030037006688990040082719 507904381194 962809 621354 S +15:08:28 +Slot[491] 0200 011000 6688990107678706 ------------- 00 779417 000015000000 507902474621050030006688990107678706 507902474621 772342 621354 S +15:08:36 +Slot[10] 0200 010000 6213545000384630 ------------- 00 949523 000050000000 507900957540033100016213545000384630 507900957540 247734 668899 S +15:08:36 Slot [499] | NOT FINANCIAL TRANSACTION +15:08:46 Slot [29] | NOT FINANCIAL TRANSACTION +15:08:48 Slot [481] | NOT FINANCIAL TRANSACTION +15:08:58 Slot [23] | NOT FINANCIAL TRANSACTION +15:08:58 Slot [31] | NOT FINANCIAL TRANSACTION +15:09:05 +Slot[11] 0200 010000 6688990101814901 ------------- 00 779576 000100000000 507904635739170008006688990101814901 507904635739 901703 621354 S +15:09:12 +Slot[3] 0200 011000 1808931300012745 ------------- 00 779597 000100000000 507904989324010123001808931300012745 507904989324 154761 621354 S +15:09:20 Slot [35] | NOT FINANCIAL TRANSACTION +15:09:30 Slot [33] | NOT FINANCIAL TRANSACTION +15:09:40 Slot [21] | NOT FINANCIAL TRANSACTION +15:09:51 Slot [496] | NOT FINANCIAL TRANSACTION +15:09:55 Slot [30] | NOT FINANCIAL TRANSACTION +15:09:56 Slot [37] | NOT FINANCIAL TRANSACTION +15:09:57 +Slot[461] 0200 010000 6213545000095913 ------------- 00 949562 000100000000 507900823616030150016213545000095913 507900823616 814895 668899 S +15:10:00 Slot [9] | NOT FINANCIAL TRANSACTION +15:10:06 Slot [45] | NOT FINANCIAL TRANSACTION +15:10:14 +Slot[36] 0200 010000 6213545000845085 ------------- 51 269926 000010000000 5079082699260465UDNM6213545000845085 507908269926 539343 180893 S +15:10:23 Slot [18] | NOT FINANCIAL TRANSACTION +15:10:35 +Slot[497] 0200 012000 1808931300012745 ------------- 42 779878 000100000000 507904989328010123001808931300012745 507904989328 671629 621354 S +15:10:45 Slot [40] | NOT FINANCIAL TRANSACTION +15:10:56 Slot [8] | NOT FINANCIAL TRANSACTION +15:10:56 Slot [28] | NOT FINANCIAL TRANSACTION +15:10:58 +Slot[467] 0200 010000 6688990101814901 ------------- 00 779960 000100000000 507904635741170008006688990101814901 507904635741 281504 621354 S +15:11:02 Slot [43] | NOT FINANCIAL TRANSACTION +15:11:08 Slot [7] | NOT FINANCIAL TRANSACTION +15:11:22 Slot [52] | NOT FINANCIAL TRANSACTION +15:11:24 Slot [25] | NOT FINANCIAL TRANSACTION +15:11:35 +Slot[50] 0200 011000 1808931300012745 ------------- 00 780107 000095000000 507904989330010123001808931300012745 507904989330 780433 621354 S +15:11:37 Slot [55] | NOT FINANCIAL TRANSACTION +15:11:39 Slot [61] | NOT FINANCIAL TRANSACTION +15:11:50 Slot [44] | NOT FINANCIAL TRANSACTION +15:12:00 Slot [478] | NOT FINANCIAL TRANSACTION +15:12:01 Slot [15] | NOT FINANCIAL TRANSACTION +15:12:04 Slot [68] | NOT FINANCIAL TRANSACTION +15:12:11 Slot [60] | NOT FINANCIAL TRANSACTION +15:12:17 +Slot[63] 0200 010000 6213545000316400 ------------- 00 269939 000100000000 5079082699390261PSL16213545000316400 507908269939 883305 180893 S +15:12:24 +Slot[73] 0200 010000 6213544002037460 ------------- 51 949622 000005000000 507900146737030200056213544002037460 507900146737 889181 668899 S +15:12:29 +Slot[38] 0200 011000 6213544001750584 ------------- 00 269941 000020000000 5079082699410441VT526213544001750584 507908269941 993609 180893 S +15:12:39 +Slot[41] 0200 011000 6213544001993275 ------------- 00 079114 000030000000 507900132977030001006213544001993275 507900132977 596658 220699 S +15:12:42 Slot [464] | NOT FINANCIAL TRANSACTION +15:12:52 +Slot[32] 0200 012000 6688990106009200 ------------- 00 780327 000010000000 507902474623050030006688990106009200 507902474623 435888 621354 S +15:12:56 Slot [26] | NOT FINANCIAL TRANSACTION +15:12:56 +Slot[487] 0200 010000 6213544000891991 ------------- 00 949641 000010000000 507902093362030200216213544000891991 507902093362 873716 668899 S +15:13:04 +Slot[20] 0200 010000 6688990103833305 ------------- 00 780375 000010000000 507904645113170009006688990103833305 507904645113 111366 621354 S +15:13:06 Slot [69] | NOT FINANCIAL TRANSACTION +15:13:06 Slot [46] | NOT FINANCIAL TRANSACTION +15:13:07 Slot [27] | NOT FINANCIAL TRANSACTION +15:13:14 +Slot[19] 0200 301000 6213545000438329 ------------- 00 207781 000000000000 507915207781015290316213545000438329 507915207781 142932 198901 S +15:13:20 Slot [48] | NOT FINANCIAL TRANSACTION +15:13:35 Slot [47] | NOT FINANCIAL TRANSACTION +15:13:46 Slot [54] | NOT FINANCIAL TRANSACTION +15:13:47 +Slot[78] 0200 010000 6688990040041962 ------------- 00 780527 000060000000 507905335167050047006688990040041962 507905335167 063258 621354 S +15:13:53 +Slot[81] 0200 010000 6688990603040005 ------------- 14 269948 000100000000 5079082699480369SLVL6688990603040005 507908269948 538252 180893 S +15:14:06 +Slot[57] 0200 011000 1808931300034475 ------------- 00 780593 000010000000 507904015471010117001808931300034475 507904015471 782818 621354 S +15:14:08 Slot [24] | NOT FINANCIAL TRANSACTION +15:14:11 Slot [49] | NOT FINANCIAL TRANSACTION +15:14:11 Slot [42] | NOT FINANCIAL TRANSACTION +15:14:22 Slot [34] | NOT FINANCIAL TRANSACTION +15:14:37 +Slot[88] 0200 012000 6688990106360009 ------------- 00 780708 000040000000 507904755367070011006688990106360009 507904755367 810844 621354 S +15:14:37 Slot [86] | NOT FINANCIAL TRANSACTION +15:14:39 +Slot[89] 0200 010000 6688990603040005 ------------- 14 269952 000050000000 5079082699520369SLVL6688990603040005 507908269952 316100 180893 S +15:14:50 +Slot[79] 0200 301000 6688990105511404 ------------- 00 780758 000000000000 507903032252120026006688990105511404 507903032252 689365 621354 S +15:14:54 +Slot[84] 0200 300000 1808930500013867 ------------- 00 949694 000000000000 507901489336035150011808930500013867 507901489336 223440 668899 S +15:14:55 Slot [59] | NOT FINANCIAL TRANSACTION +15:14:59 Slot [5] | NOT FINANCIAL TRANSACTION +15:15:10 Slot [67] | NOT FINANCIAL TRANSACTION +15:15:11 Slot [62] | NOT FINANCIAL TRANSACTION +15:15:16 Slot [39] | NOT FINANCIAL TRANSACTION +15:15:21 +Slot[51] 0200 301000 6213541000612047 ------------- 00 269954 032008142326 5079082699540441VT526213541000612047 507908269954 702871 180893 S +15:15:22 +Slot[58] 0200 301000 6688990104677404 ------------- 00 780852 000000000000 507904789449070014006688990104677404 507904789449 197104 621354 S +15:15:24 +Slot[56] 0200 010000 8888884000021920 ------------- 51 223740 000010000000 507900118770010011008888884000021920 507900118770 494152 220699 S +15:15:31 Slot [82] | NOT FINANCIAL TRANSACTION +15:15:34 +Slot[99] 0200 010000 6688990603040005 ------------- 14 269956 000050000000 5079082699560369SLVL6688990603040005 507908269956 494921 180893 S +15:15:43 +Slot[93] 0420 012000 6213545000095913 ------------- 00 079110 000100000000 507900132975030001006213545000095913 507900132975 -------- 220699 S +15:15:47 Slot [91] | NOT FINANCIAL TRANSACTION +15:15:53 +Slot[64] 0200 011000 6688990105511404 ------------- 00 780968 000100000000 507903032254120026006688990105511404 507903032254 453312 621354 S +15:16:02 Slot [65] | NOT FINANCIAL TRANSACTION +15:16:06 +Slot[100] 0200 301000 1234010100182306 ------------- 56 781021 000000000000 507904381205030037001234010100182306 507904381205 002016 621354 S +15:16:09 +Slot[72] 0200 010000 6213545000268809 ------------- 00 949729 000100000000 507900204610030010046213545000268809 507900204610 094670 668899 S +15:16:12 Slot [76] | NOT FINANCIAL TRANSACTION +15:16:13 Slot [106] | NOT FINANCIAL TRANSACTION +15:16:21 Slot [90] | NOT FINANCIAL TRANSACTION +15:16:22 Slot [114] | NOT FINANCIAL TRANSACTION +15:16:24 Slot [66] | NOT FINANCIAL TRANSACTION +15:16:39 Slot [118] | NOT FINANCIAL TRANSACTION +15:16:42 +Slot[83] 0200 300000 6213544002041124 ------------- 55 412279 000000000000 507900059970010004006213544002041124 507900059970 053160 123401 S +15:16:53 +Slot[107] 0200 010000 1808930200014553 ------------- 00 781219 000010000000 507904910953020025001808930200014553 507904910953 167872 621354 S +15:16:55 Slot [115] | NOT FINANCIAL TRANSACTION +15:16:56 +Slot[121] 0420 012000 6213545000095913 0000000000000 00 079110 000100000000 507900132975030001006213545000095913 507900132975 812224 220699 S +15:16:58 +Slot[74] 0200 011000 6688990105511404 ------------- 00 781250 000020000000 507903032256120026006688990105511404 507903032256 312682 621354 S +15:17:03 +Slot[92] 0200 301000 6688990104677305 ------------- 00 781274 000000000000 507904789450070014006688990104677305 507904789450 092228 621354 S +15:17:11 Slot [113] | NOT FINANCIAL TRANSACTION +15:17:11 +Slot[108] 0200 010000 6688990102595608 ------------- 00 781314 000005000000 507902916588120014006688990102595608 507902916588 079043 621354 S +15:17:14 Slot [94] | NOT FINANCIAL TRANSACTION +15:17:17 +Slot[127] 0200 011000 6688990040035915 ------------- 64 207827 000200000000 507915207827015290316688990040035915 507915207827 660486 198901 S +15:17:22 Slot [75] | NOT FINANCIAL TRANSACTION +15:17:27 Slot [95] | NOT FINANCIAL TRANSACTION +15:17:33 Slot [98] | NOT FINANCIAL TRANSACTION +15:17:34 +Slot[53] 0200 011000 6688990100660305 ------------- 00 781408 000030000000 507903433331060016006688990100660305 507903433331 311555 621354 S +15:17:41 +Slot[125] 0200 310000 6213545000488563 ------------- 00 079118 000000000000 507900132979030001006213545000488563 507900132979 801662 220699 S +15:17:43 Slot [134] | NOT FINANCIAL TRANSACTION +15:17:52 +Slot[103] 0200 011000 6688990040035915 ------------- 00 207835 000020000000 507915207835015290316688990040035915 507915207835 463145 198901 S +15:17:54 Slot [96] | NOT FINANCIAL TRANSACTION +15:17:57 +Slot[101] 0200 010000 6688990104677305 ------------- 00 781514 000010000000 507904789452070014006688990104677305 507904789452 049843 621354 S +15:18:06 Slot [77] | NOT FINANCIAL TRANSACTION +15:18:16 Slot [71] | NOT FINANCIAL TRANSACTION +15:18:20 Slot [109] | NOT FINANCIAL TRANSACTION +15:18:29 +Slot[70] 0200 011000 6213544001740148 ------------- 00 189025 000010000000 507900084365010008006213544001740148 507900084365 578385 220699 S +15:18:32 Slot [102] | NOT FINANCIAL TRANSACTION +15:18:37 Slot [136] | NOT FINANCIAL TRANSACTION +15:18:48 Slot [85] | NOT FINANCIAL TRANSACTION +15:18:54 +Slot[129] 0200 010000 6213545000614952 ------------- 00 269969 000050000000 5079082699690442VTVK6213545000614952 507908269969 081298 180893 S +15:19:04 Slot [87] | NOT FINANCIAL TRANSACTION +15:19:18 Slot [105] | NOT FINANCIAL TRANSACTION +15:19:19 Slot [131] | NOT FINANCIAL TRANSACTION +15:19:35 Slot [138] | NOT FINANCIAL TRANSACTION +15:19:37 Slot [116] | NOT FINANCIAL TRANSACTION +15:19:38 +Slot[104] 0200 010000 6688990102077201 ------------- 00 781949 000030000000 507904635746170008006688990102077201 507904635746 630933 621354 S +15:19:46 Slot [112] | NOT FINANCIAL TRANSACTION +15:19:55 Slot [97] | NOT FINANCIAL TRANSACTION +15:19:58 Slot [140] | NOT FINANCIAL TRANSACTION +15:20:04 +Slot[111] 0200 011000 6213544000688611 ------------- 00 269974 000020000000 5079082699740361BLTB6213544000688611 507908269974 116095 180893 S +15:20:14 Slot [124] | NOT FINANCIAL TRANSACTION +15:20:19 +Slot[117] 0200 011000 1888880000030635 ------------- 00 782111 000100000000 507903986682010114001888880000030635 507903986682 794762 621354 S +15:20:20 +Slot[123] 0200 011000 6213548000097756 ------------- 00 207868 000010000000 507915207868015290316213548000097756 507915207868 729577 198901 S +15:20:20 Slot [80] | NOT FINANCIAL TRANSACTION +15:20:23 +Slot[161] 0420 011000 6213544001993275 ------------- 00 079114 000030000000 507900132977030001006213544001993275 507900132977 -------- 220699 S +15:20:30 Slot [147] | NOT FINANCIAL TRANSACTION +15:20:42 Slot [162] | NOT FINANCIAL TRANSACTION +15:20:44 Slot [132] | NOT FINANCIAL TRANSACTION +15:20:55 Slot [122] | NOT FINANCIAL TRANSACTION +15:21:11 Slot [145] | NOT FINANCIAL TRANSACTION +15:21:22 Slot [143] | NOT FINANCIAL TRANSACTION +15:21:22 Slot [166] | NOT FINANCIAL TRANSACTION +15:21:22 Slot [158] | NOT FINANCIAL TRANSACTION +15:21:27 +Slot[154] 0200 011000 1888880000030635 ------------- 00 782411 000100000000 507903986684010114001888880000030635 507903986684 341984 621354 S +15:21:32 Slot [153] | NOT FINANCIAL TRANSACTION +15:21:37 +Slot[120] 0420 011000 6213544001993275 0000000000000 00 079114 000030000000 507900132977030001006213544001993275 507900132977 395615 220699 S +15:21:47 Slot [133] | NOT FINANCIAL TRANSACTION +15:21:48 Slot [150] | NOT FINANCIAL TRANSACTION +15:21:51 +Slot[110] 0200 301000 6688990107700609 ------------- 00 782504 000000000000 507902812896010075006688990107700609 507902812896 875844 621354 S +15:22:00 Slot [159] | NOT FINANCIAL TRANSACTION +15:22:01 +Slot[142] 0200 011000 1888880000047142 ------------- 00 782523 000050000000 507902546779050037001888880000047142 507902546779 161728 621354 S +15:22:15 Slot [130] | NOT FINANCIAL TRANSACTION +15:22:22 +Slot[167] 0200 011000 6688990107131904 ------------- 00 782646 000010000000 507903345056130014006688990107131904 507903345056 813684 621354 S +15:22:23 Slot [146] | NOT FINANCIAL TRANSACTION +15:22:24 Slot [175] | NOT FINANCIAL TRANSACTION +15:22:26 +Slot[137] 0200 011000 6688990040030726 ------------- 00 782655 000010000000 507904755372070011006688990040030726 507904755372 563861 621354 S +15:22:29 Slot [170] | NOT FINANCIAL TRANSACTION +15:22:33 +Slot[128] 0200 011000 1888880000030635 ------------- 00 782674 000050000000 507903986686010114001888880000030635 507903986686 027991 621354 S +15:22:45 +Slot[157] 0200 010000 6688990103268106 ------------- 14 269986 000100000000 5079082699860263UDXB6688990103268106 507908269986 319737 180893 S +15:22:52 Slot [141] | NOT FINANCIAL TRANSACTION +15:22:56 Slot [151] | NOT FINANCIAL TRANSACTION +15:23:07 +Slot[172] 0200 012000 6688990107700609 ------------- 51 782839 000010000000 507902812899010075006688990107700609 507902812899 089176 621354 S +15:23:11 Slot [171] | NOT FINANCIAL TRANSACTION +15:23:22 Slot [186] | NOT FINANCIAL TRANSACTION +15:23:25 +Slot[164] 0200 010000 6688990103268106 ------------- 14 269990 000100000000 5079082699900263UDXB6688990103268106 507908269990 115292 180893 S +15:23:27 Slot [126] | NOT FINANCIAL TRANSACTION +15:23:37 Slot [148] | NOT FINANCIAL TRANSACTION +15:23:53 Slot [139] | NOT FINANCIAL TRANSACTION +15:23:56 +Slot[119] 0200 311000 6213544002073283 ------------- 00 009792 000000000000 507900270562010015006213544002073283 507900270562 997802 220699 S +15:23:57 Slot [202] | NOT FINANCIAL TRANSACTION +15:24:00 +Slot[176] 0200 011000 6688990040112748 ------------- 00 783049 000030000000 507903345058130014006688990040112748 507903345058 660821 621354 S +15:24:01 +Slot[182] 0200 011000 1888880000030684 ------------- 00 783023 000010000000 507904755374070011001888880000030684 507904755374 723128 621354 S +15:24:04 Slot [187] | NOT FINANCIAL TRANSACTION +15:24:13 +Slot[160] 0200 301000 6688990107700609 ------------- 00 783107 000000000000 507902812900010075006688990107700609 507902812900 278152 621354 S +15:24:15 +Slot[144] 0200 301000 6213544001564316 ------------- 00 949951 000000000000 507902531951030200336213544001564316 507902531951 749636 668899 S +15:24:20 Slot [156] | NOT FINANCIAL TRANSACTION +15:24:29 Slot [163] | NOT FINANCIAL TRANSACTION +15:24:31 Slot [203] | NOT FINANCIAL TRANSACTION +15:24:31 Slot [179] | NOT FINANCIAL TRANSACTION +15:24:48 Slot [204] | NOT FINANCIAL TRANSACTION +15:24:51 +Slot[135] 0200 010000 6688990103268106 ------------- 14 269999 000100000000 5079082699990263UDXB6688990103268106 507908269999 002665 180893 S +15:24:55 Slot [191] | NOT FINANCIAL TRANSACTION +15:24:58 +Slot[192] 0200 011000 2206990000130245 ------------- 00 783286 000010000000 507902806365010074002206990000130245 507902806365 720245 621354 S +15:25:00 +Slot[152] 0200 011000 1808930600045587 ------------- 00 783282 000020000000 507904273398030026001808930600045587 507904273398 672213 621354 S +15:25:02 Slot [190] | NOT FINANCIAL TRANSACTION +15:25:06 Slot [198] | NOT FINANCIAL TRANSACTION +15:25:19 Slot [196] | NOT FINANCIAL TRANSACTION +15:25:30 Slot [181] | NOT FINANCIAL TRANSACTION +15:25:31 Slot [155] | NOT FINANCIAL TRANSACTION +15:25:39 +Slot[201] 0200 011000 6688990030008559 ------------- 00 783444 000007000000 507905335176050047006688990030008559 507905335176 910029 621354 S +15:25:41 Slot [209] | NOT FINANCIAL TRANSACTION +15:25:43 +Slot[165] 0200 012000 6688990040102327 ------------- 51 783463 000100000000 507904653509170010006688990040102327 507904653509 735223 621354 S +15:25:45 +Slot[214] 0200 010000 2206990000004747 ------------- 00 783466 000020000000 507903058691010085002206990000004747 507903058691 656783 621354 S +15:25:51 Slot [195] | NOT FINANCIAL TRANSACTION +15:26:07 Slot [178] | NOT FINANCIAL TRANSACTION +15:26:07 Slot [184] | NOT FINANCIAL TRANSACTION +15:26:08 +Slot[194] 0200 012000 6688990105629008 ------------- 00 783547 000030000000 507903405904060013006688990105629008 507903405904 549867 621354 S +15:26:11 +Slot[206] 0200 011000 2206990000130245 ------------- 00 783554 000030000000 507902806367010074002206990000130245 507902806367 755635 621354 S +15:26:18 Slot [213] | NOT FINANCIAL TRANSACTION +15:26:22 Slot [193] | NOT FINANCIAL TRANSACTION +15:26:29 +Slot[212] 0200 300000 2206990000004747 ------------- 00 783617 000000000000 507903058692010085002206990000004747 507903058692 899492 621354 S +15:26:29 Slot [207] | NOT FINANCIAL TRANSACTION +15:26:30 +Slot[221] 0200 012000 6688990040115956 ------------- 00 783625 000100000000 507902474636050030006688990040115956 507902474636 656625 621354 S +15:26:33 Slot [183] | NOT FINANCIAL TRANSACTION +15:26:39 +Slot[230] 0200 010000 6213541000435050 ------------- 61 270012 000200000000 5079082700120401XSBR6213541000435050 507908270012 071990 180893 S +15:26:50 Slot [208] | NOT FINANCIAL TRANSACTION +15:27:07 Slot [211] | NOT FINANCIAL TRANSACTION +15:27:12 Slot [169] | NOT FINANCIAL TRANSACTION +15:27:17 Slot [205] | NOT FINANCIAL TRANSACTION +15:27:25 +Slot[185] 0200 010000 6213541000435050 ------------- 00 270017 000100000000 5079082700170401XSBR6213541000435050 507908270017 718228 180893 S +15:27:35 Slot [232] | NOT FINANCIAL TRANSACTION +15:27:37 +Slot[189] 0200 010000 6213545000204853 ------------- 51 950035 000020000000 507902556307030160046213545000204853 507902556307 195275 668899 S +15:27:39 Slot [149] | NOT FINANCIAL TRANSACTION +15:27:55 Slot [168] | NOT FINANCIAL TRANSACTION +15:28:03 +Slot[180] 0200 010000 6688990040102335 ------------- 00 783994 000100000000 507904653514170010006688990040102335 507904653514 358434 621354 S +15:28:04 +Slot[222] 0200 010000 6213544000547759 ------------- 00 950043 000050000000 507902683060030200366213544000547759 507902683060 499119 668899 S +15:28:05 Slot [229] | NOT FINANCIAL TRANSACTION +15:28:06 +Slot[174] 0200 012000 6688990040115956 ------------- 00 783997 000050000000 507902474638050030006688990040115956 507902474638 428425 621354 S +15:28:16 Slot [173] | NOT FINANCIAL TRANSACTION +15:28:17 Slot [188] | NOT FINANCIAL TRANSACTION +15:28:22 +Slot[246] 0200 010000 6213541000646300 ------------- 00 240853 000005000000 507900410445080003006213541000646300 507900410445 257370 220699 S +15:28:23 +Slot[223] 0200 012000 6688990100957008 ------------- 00 784085 000070000000 507904719735180010006688990100957008 507904719735 108415 621354 S +15:28:25 +Slot[215] 0200 010000 6213545000202410 ------------- 00 270023 000050000000 5079082700230121SKBR6213545000202410 507908270023 939538 180893 S +15:28:37 Slot [243] | NOT FINANCIAL TRANSACTION +15:28:37 Slot [248] | NOT FINANCIAL TRANSACTION +15:28:46 +Slot[244] 0200 011000 6688990603123207 ------------- 00 784189 000010000000 507902546781050037006688990603123207 507902546781 146169 621354 S +15:28:48 Slot [235] | NOT FINANCIAL TRANSACTION +15:28:51 +Slot[227] 0200 010000 6213541000435050 ------------- 00 270027 000100000000 5079082700270401XSBR6213541000435050 507908270027 590565 180893 S +15:28:53 +Slot[251] 0200 012000 6213545000339444 ------------- 00 177375 000100000000 507900010246010001006213545000339444 507900010246 992679 220699 S +15:28:59 +Slot[177] 0200 302000 6213545000214712 ------------- 00 950067 000000000000 507900314776030130026213545000214712 507900314776 528622 668899 S +15:29:00 +Slot[242] 0200 010000 6213544000547759 ------------- 00 950069 000010000000 507902683062030200366213544000547759 507902683062 127833 668899 S +15:29:04 Slot [250] | NOT FINANCIAL TRANSACTION +15:29:15 +Slot[226] 0200 010000 6213545000204853 ------------- 00 950077 000010000000 507902556309030160046213545000204853 507902556309 727649 668899 S +15:29:20 Slot [255] | NOT FINANCIAL TRANSACTION +15:29:22 Slot [233] | NOT FINANCIAL TRANSACTION +15:29:31 Slot [237] | NOT FINANCIAL TRANSACTION +15:29:39 Slot [238] | NOT FINANCIAL TRANSACTION +15:29:39 +Slot[200] 0200 302000 6213545000214712 ------------- 00 950089 000000000000 507900314777030130026213545000214712 507900314777 908243 668899 S +15:29:42 +Slot[260] 0200 010000 6688990100957008 ------------- 00 784398 000070000000 507904719737180010006688990100957008 507904719737 022220 621354 S +15:29:46 Slot [234] | NOT FINANCIAL TRANSACTION +15:29:48 +Slot[253] 0200 010000 6688990103268106 ------------- 00 784424 000100000000 507903499519060022006688990103268106 507903499519 625972 621354 S +15:29:54 Slot [216] | NOT FINANCIAL TRANSACTION +15:29:57 Slot [249] | NOT FINANCIAL TRANSACTION +15:30:01 +Slot[263] 0200 010000 6213544000547759 ------------- 00 950102 000030000000 507902683064030200366213544000547759 507902683064 821055 668899 S +15:30:02 +Slot[210] 0200 010000 6213541000435050 ------------- 00 270031 000100000000 5079082700310401XSBR6213541000435050 507908270031 065345 180893 S +15:30:13 Slot [259] | NOT FINANCIAL TRANSACTION +15:30:19 +Slot[261] 0200 010000 6213545000285456 ------------- 00 270033 000100000000 5079082700330112CPBR6213545000285456 507908270033 175979 180893 S +15:30:27 Slot [225] | NOT FINANCIAL TRANSACTION +15:30:29 Slot [270] | NOT FINANCIAL TRANSACTION +15:30:39 Slot [269] | NOT FINANCIAL TRANSACTION +15:30:41 Slot [199] | NOT FINANCIAL TRANSACTION +15:30:49 Slot [275] | NOT FINANCIAL TRANSACTION +15:31:04 +Slot[240] 0200 012000 1234010100029902 ------------- 00 784706 000040000000 507905322928010134001234010100029902 507905322928 761792 621354 S +15:31:05 +Slot[197] 0200 301000 6213544001938437 ------------- 00 270039 032008300527 5079082700390381CPSP6213544001938437 507908270039 568258 180893 S +15:31:10 +Slot[256] 0200 301000 6213545000285456 ------------- 00 270040 032008301227 5079082700400112CPBR6213545000285456 507908270040 069871 180893 S +15:31:11 +Slot[228] 0200 010000 6688990602317701 ------------- 61 270041 000150000000 5079082700410523XYNG6688990602317701 507908270041 910485 180893 S +15:31:22 Slot [218] | NOT FINANCIAL TRANSACTION +15:31:22 Slot [274] | NOT FINANCIAL TRANSACTION +15:31:26 +Slot[265] 0200 301000 6688990105247207 ------------- 14 270042 032008302927 5079082700420467PSLK6688990105247207 507908270042 981157 180893 S +15:31:32 Slot [247] | NOT FINANCIAL TRANSACTION +15:31:38 Slot [279] | NOT FINANCIAL TRANSACTION +15:31:43 Slot [264] | NOT FINANCIAL TRANSACTION +15:31:54 Slot [273] | NOT FINANCIAL TRANSACTION +15:32:00 +Slot[231] 0200 010000 6688990602317701 ------------- 14 270045 000100000000 5079082700450523XYNG6688990602317701 507908270045 780156 180893 S +15:32:02 +Slot[220] 0200 010000 6213544001913794 ------------- 55 270046 000100000000 5079082700460106NAXA6213544001913794 507908270046 072284 180893 S +15:32:16 +Slot[239] 0200 011000 1808930700004609 ------------- 00 784971 000020000000 507903386131130018001808930700004609 507903386131 531073 621354 S +15:32:20 Slot [252] | NOT FINANCIAL TRANSACTION +15:32:23 +Slot[254] 0200 010000 6688990105247207 ------------- 61 270048 000200000000 5079082700480467PSLK6688990105247207 507908270048 590021 180893 S +15:32:25 +Slot[272] 0200 010000 6213545000204853 ------------- 00 950154 000005000000 507902556312030160046213545000204853 507902556312 140253 668899 S +15:32:31 +Slot[282] 0200 011000 6213545000285456 ------------- 00 270050 000066000000 5079082700500112CPBR6213545000285456 507908270050 307970 180893 S +15:32:37 Slot [266] | NOT FINANCIAL TRANSACTION +15:32:42 +Slot[276] 0200 010000 6688990602356204 ------------- 00 785076 000005000000 507902606161050043006688990602356204 507902606161 033794 621354 S +15:32:42 Slot [241] | NOT FINANCIAL TRANSACTION +15:32:44 +Slot[280] 0200 010000 6688990103505101 ------------- 00 785087 000050000000 507903499521060022006688990103505101 507903499521 851088 621354 S +15:32:45 Slot [258] | NOT FINANCIAL TRANSACTION +15:32:50 +Slot[224] 0200 301000 6688990602317701 ------------- 14 270053 032008315227 5079082700530523XYNG6688990602317701 507908270053 007304 180893 S +15:32:58 Slot [284] | NOT FINANCIAL TRANSACTION +15:33:03 +Slot[219] 0200 010000 6213544001913794 ------------- 55 270056 000100000000 5079082700560106NAXA6213544001913794 507908270056 193888 180893 S +15:33:09 Slot [287] | NOT FINANCIAL TRANSACTION +15:33:14 Slot [277] | NOT FINANCIAL TRANSACTION +15:33:24 +Slot[290] 0200 010000 6688990105247207 ------------- 14 270058 000100000000 5079082700580467PSLK6688990105247207 507908270058 699362 180893 S +15:33:36 Slot [267] | NOT FINANCIAL TRANSACTION +15:33:41 +Slot[271] 0200 011000 6688990105394108 ------------- 14 270063 000080000000 5079082700630110VTBR6688990105394108 507908270063 168547 180893 S +15:33:42 Slot [245] | NOT FINANCIAL TRANSACTION +15:33:46 +Slot[294] 0200 010000 6213544001913794 ------------- 00 270066 000100000000 5079082700660106NAXA6213544001913794 507908270066 787207 180893 S +15:33:47 Slot [236] | NOT FINANCIAL TRANSACTION +15:33:57 Slot [303] | NOT FINANCIAL TRANSACTION +15:34:00 +Slot[217] 0200 012000 6688990040049023 ------------- 14 240856 000010000000 507900410447080003006688990040049023 507900410447 052944 220699 S +15:34:08 Slot [298] | NOT FINANCIAL TRANSACTION +15:34:18 Slot [293] | NOT FINANCIAL TRANSACTION +15:34:30 Slot [299] | NOT FINANCIAL TRANSACTION +15:34:31 +Slot[257] 0200 301000 6688990105394108 ------------- 14 270071 032008333427 5079082700710110VTBR6688990105394108 507908270071 532958 180893 S +15:34:44 Slot [278] | NOT FINANCIAL TRANSACTION +15:34:47 Slot [300] | NOT FINANCIAL TRANSACTION +15:34:49 Slot [281] | NOT FINANCIAL TRANSACTION +15:34:54 Slot [308] | NOT FINANCIAL TRANSACTION +15:34:54 Slot [295] | NOT FINANCIAL TRANSACTION +15:35:00 +Slot[296] 0200 302000 6688990105648602 ------------- 00 785620 000000000000 507904635761170008006688990105648602 507904635761 264901 621354 S +15:35:04 Slot [286] | NOT FINANCIAL TRANSACTION +15:35:15 Slot [283] | NOT FINANCIAL TRANSACTION +15:35:23 +Slot[316] 0200 011000 6688990105394108 ------------- 14 270074 000080000000 5079082700740110VTBR6688990105394108 507908270074 440142 180893 S +15:35:32 Slot [311] | NOT FINANCIAL TRANSACTION +15:35:37 +Slot[312] 0200 301000 0014830041624622 ------------- 14 785759 000000000000 507902382383010063000014830041624622 507902382383 770632 621354 S +15:35:47 Slot [306] | NOT FINANCIAL TRANSACTION +15:35:51 Slot [310] | NOT FINANCIAL TRANSACTION +15:35:52 Slot [307] | NOT FINANCIAL TRANSACTION +15:35:57 +Slot[317] 0200 010000 2206990000065870 ------------- 00 270077 000200000000 5079082700770105XTNY2206990000065870 507908270077 314454 180893 S +15:36:01 +Slot[288] 0200 012000 6688990105648602 ------------- 00 785835 000100000000 507904635763170008006688990105648602 507904635763 867290 621354 S +15:36:10 Slot [318] | NOT FINANCIAL TRANSACTION +15:36:20 +Slot[322] 0200 301000 6688990105394108 ------------- 14 270079 032008352227 5079082700790110VTBR6688990105394108 507908270079 900734 180893 S +15:36:21 +Slot[325] 0200 010000 6213543000244144 ------------- 00 412315 000005000000 507900192483030001006213543000244144 507900192483 607307 123401 S +15:36:22 Slot [315] | NOT FINANCIAL TRANSACTION +15:36:34 Slot [304] | NOT FINANCIAL TRANSACTION +15:36:49 Slot [297] | NOT FINANCIAL TRANSACTION +15:36:53 +Slot[289] 0420 012000 6213545000339444 ------------- 00 177375 000100000000 507900010246010001006213545000339444 507900010246 -------- 220699 S +15:36:53 Slot [326] | NOT FINANCIAL TRANSACTION +15:36:56 +Slot[285] 0200 010000 6213541000612047 ------------- 51 950226 000080000000 507900285827030100056213541000612047 507900285827 886647 668899 S +15:36:57 Slot [301] | NOT FINANCIAL TRANSACTION +15:37:05 Slot [291] | NOT FINANCIAL TRANSACTION +15:37:10 +Slot[327] 0200 011000 6688990105394108 ------------- 14 270081 000080000000 5079082700810110VTBR6688990105394108 507908270081 004379 180893 S +15:37:16 +Slot[305] 0200 011000 6688990040145458 ------------- 00 786138 000036000000 507905335202050047006688990040145458 507905335202 684436 621354 S +15:37:20 Slot [331] | NOT FINANCIAL TRANSACTION +15:37:25 +Slot[302] 0200 012000 6688990105648602 ------------- 00 786166 000100000000 507904635765170008006688990105648602 507904635765 513577 621354 S +15:37:31 Slot [314] | NOT FINANCIAL TRANSACTION +15:37:42 +Slot[292] 0200 301000 6688990105394108 ------------- 14 270083 032008364427 5079082700830110VTBR6688990105394108 507908270083 419112 180893 S +15:37:53 Slot [335] | NOT FINANCIAL TRANSACTION +15:37:55 Slot [333] | NOT FINANCIAL TRANSACTION +15:37:59 +Slot[262] 0200 311000 6213544001556833 ------------- 00 251267 000000000000 507900336234010019006213544001556833 507900336234 118931 220699 S +15:38:02 Slot [334] | NOT FINANCIAL TRANSACTION +15:38:05 +Slot[321] 0420 012000 6213545000339444 0000000000000 00 177375 000100000000 507900010246010001006213545000339444 507900010246 810703 220699 S +15:38:09 Slot [336] | NOT FINANCIAL TRANSACTION +15:38:21 Slot [320] | NOT FINANCIAL TRANSACTION +15:38:31 +Slot[342] 0200 011000 6213544001556833 ------------- 00 251268 000030000000 507900336235010019006213544001556833 507900336235 692207 220699 S +15:38:35 +Slot[339] 0200 012000 6688990105648602 ------------- 00 786385 000100000000 507904635767170008006688990105648602 507904635767 256712 621354 S +15:38:36 Slot [323] | NOT FINANCIAL TRANSACTION +15:38:46 Slot [341] | NOT FINANCIAL TRANSACTION +15:38:48 +Slot[268] 0200 010000 6688990040139394 ------------- 55 786440 000100000000 507904755405070011006688990040139394 507904755405 722612 621354 S +15:38:56 Slot [352] | NOT FINANCIAL TRANSACTION +15:38:57 Slot [309] | NOT FINANCIAL TRANSACTION +15:38:57 +Slot[348] 0200 010000 6688990060010640 ------------- 51 786480 000100000000 507903908750010106006688990060010640 507903908750 275889 621354 S +15:38:58 +Slot[329] 0200 301000 6688990060029723 ------------- 00 786481 000000000000 507904154021200010006688990060029723 507904154021 417399 621354 S +15:39:03 +Slot[328] 0200 301000 1808930200053965 ------------- 14 950272 000000000000 507900184329030010021808930200053965 507900184329 291835 668899 S +15:39:05 +Slot[337] 0200 010000 6213541000612047 ------------- 00 950273 000070000000 507900285830030100056213541000612047 507900285830 399549 668899 S +15:39:07 Slot [347] | NOT FINANCIAL TRANSACTION +15:39:12 Slot [350] | NOT FINANCIAL TRANSACTION +15:39:23 Slot [357] | NOT FINANCIAL TRANSACTION +15:39:26 +Slot[346] 0200 011000 2206990000039859 ------------- 00 786562 000050000000 507902859247160011002206990000039859 507902859247 323608 621354 S +15:39:34 Slot [319] | NOT FINANCIAL TRANSACTION +15:39:44 Slot [330] | NOT FINANCIAL TRANSACTION +15:39:45 +Slot[332] 0200 012000 6688990105648602 ------------- 00 786621 000100000000 507904635769170008006688990105648602 507904635769 688630 621354 S +15:39:54 Slot [365] | NOT FINANCIAL TRANSACTION +15:39:58 +Slot[356] 0200 301000 6213545000638837 ------------- 00 270092 032008385827 5079082700920243VTKS6213545000638837 507908270092 492956 180893 S +15:39:59 Slot [371] | NOT FINANCIAL TRANSACTION +15:40:08 +Slot[343] 0200 011000 6688990060029723 ------------- 00 786687 000006000000 507904154023200010006688990060029723 507904154023 586355 621354 S +15:40:09 +Slot[366] 0200 011000 1808931100011111 ------------- 00 786685 000020000000 507903928831010108001808931100011111 507903928831 888677 621354 S +15:40:12 Slot [313] | NOT FINANCIAL TRANSACTION +15:40:16 Slot [345] | NOT FINANCIAL TRANSACTION +15:40:27 Slot [378] | NOT FINANCIAL TRANSACTION +15:40:34 +Slot[373] 0200 011000 6688990104657901 ------------- 00 786786 000020000000 507905200927070017006688990104657901 507905200927 347811 621354 S +15:40:43 Slot [353] | NOT FINANCIAL TRANSACTION +15:40:44 +Slot[340] 0200 311000 6213543000232180 ------------- 14 251271 000000000000 507900336237010019006213543000232180 507900336237 710910 220699 S +15:40:46 +Slot[324] 0200 010000 6213545000638837 ------------- 00 270096 000100000000 5079082700960243VTKS6213545000638837 507908270096 272227 180893 S +15:40:47 +Slot[382] 0200 011000 6688990040139394 ------------- 00 786832 000100000000 507904755407070011006688990040139394 507904755407 451038 621354 S +15:40:49 +Slot[355] 0200 010000 6688990050011251 ------------- 00 786833 000005000000 507905335211050047006688990050011251 507905335211 200186 621354 S +15:40:53 +Slot[363] 0200 010000 6688990030018376 ------------- 00 786850 000100000000 507904707758180009006688990030018376 507904707758 328099 621354 S +15:40:54 Slot [344] | NOT FINANCIAL TRANSACTION +15:41:01 Slot [370] | NOT FINANCIAL TRANSACTION +15:41:06 Slot [358] | NOT FINANCIAL TRANSACTION +15:41:07 +Slot[379] 0200 010000 6213541000713126 ------------- 00 950325 000050000000 507902308454030110036213541000713126 507902308454 522274 668899 S +15:41:12 +Slot[369] 0200 010000 6688990060000237 ------------- 00 786897 000100000000 507903499523060022006688990060000237 507903499523 602889 621354 S +15:41:13 Slot [360] | NOT FINANCIAL TRANSACTION +15:41:17 Slot [338] | NOT FINANCIAL TRANSACTION +15:41:17 Slot [354] | NOT FINANCIAL TRANSACTION +15:41:21 Slot [396] | NOT FINANCIAL TRANSACTION +15:41:28 Slot [390] | NOT FINANCIAL TRANSACTION +15:41:29 +Slot[351] 0200 012000 6688990101786109 ------------- 55 786966 000020000000 507904635771170008006688990101786109 507904635771 268393 621354 S +15:41:39 Slot [374] | NOT FINANCIAL TRANSACTION +15:41:39 +Slot[389] 0200 011000 6213543000232180 ------------- 14 251274 000100000000 507900336239010019006213543000232180 507900336239 625283 220699 S +15:41:52 Slot [359] | NOT FINANCIAL TRANSACTION +15:41:55 +Slot[361] 0200 012000 6688990101786109 ------------- 00 787049 000020000000 507904635773170008006688990101786109 507904635773 181603 621354 S +15:42:03 Slot [376] | NOT FINANCIAL TRANSACTION +15:42:07 Slot [383] | NOT FINANCIAL TRANSACTION +15:42:18 Slot [410] | NOT FINANCIAL TRANSACTION +15:42:22 Slot [393] | NOT FINANCIAL TRANSACTION +15:42:25 +Slot[400] 0200 301000 1808930800015711 ------------- 00 787160 000000000000 507903032262120026001808930800015711 507903032262 494098 621354 S +15:42:27 +Slot[395] 0200 011000 6213545000638837 ------------- 00 270102 000020000000 5079082701020243VTKS6213545000638837 507908270102 062283 180893 S +15:42:36 Slot [397] | NOT FINANCIAL TRANSACTION +15:42:45 +Slot[413] 0200 012000 1808930200034908 ------------- 42 787245 000002000000 507905335218050047001808930200034908 507905335218 186730 621354 S +15:42:52 Slot [414] | NOT FINANCIAL TRANSACTION +15:43:00 +Slot[349] 0200 012000 6688990103270300 ------------- 00 787307 000020000000 507903499526060022006688990103270300 507903499526 768860 621354 S +15:43:01 +Slot[394] 0200 010000 1808930600022289 ------------- 00 787292 000100000000 507904290702030028001808930600022289 507904290702 478193 621354 S +15:43:05 Slot [399] | NOT FINANCIAL TRANSACTION +15:43:07 Slot [418] | NOT FINANCIAL TRANSACTION +15:43:18 Slot [387] | NOT FINANCIAL TRANSACTION +15:43:27 Slot [372] | NOT FINANCIAL TRANSACTION +15:43:27 +Slot[368] 0200 011000 6213544001548590 ------------- 00 270106 000008000000 5079082701060102SAPA6213544001548590 507908270106 001624 180893 S +15:43:35 +Slot[419] 0200 011000 6688990105394108 ------------- 00 787448 000080000000 507902797822010073006688990105394108 507902797822 630763 621354 S +15:43:39 +Slot[406] 0200 300000 6688990107214304 ------------- 00 787466 000000000000 507904070901040038006688990107214304 507904070901 241119 621354 S +15:43:40 Slot [411] | NOT FINANCIAL TRANSACTION +15:43:55 +Slot[380] 0200 012000 1808930200034908 ------------- 42 787539 000002000000 507905335222050047001808930200034908 507905335222 706604 621354 S +15:43:55 Slot [407] | NOT FINANCIAL TRANSACTION +15:44:06 Slot [384] | NOT FINANCIAL TRANSACTION +15:44:07 Slot [416] | NOT FINANCIAL TRANSACTION +15:44:21 Slot [401] | NOT FINANCIAL TRANSACTION +15:44:27 +Slot[381] 0200 010000 6688990101791703 ------------- 00 787645 000100000000 507904635778170008006688990101791703 507904635778 392306 621354 S +15:44:32 Slot [420] | NOT FINANCIAL TRANSACTION +15:44:32 Slot [415] | NOT FINANCIAL TRANSACTION +15:44:38 +Slot[398] 0200 012000 6688990103278709 ------------- 00 787689 000100000000 507903499529060022006688990103278709 507903499529 945986 621354 S +15:44:39 +Slot[433] 0200 010000 6213545000882377 ------------- 61 270111 000150000000 5079082701110243VTKS6213545000882377 507908270111 562191 180893 S +15:44:49 +Slot[425] 0200 011000 6213543000035757 ------------- 51 270114 000020000000 5079082701140441VT526213543000035757 507908270114 950106 180893 S +15:44:54 Slot [364] | NOT FINANCIAL TRANSACTION +15:44:58 Slot [388] | NOT FINANCIAL TRANSACTION +15:45:09 Slot [430] | NOT FINANCIAL TRANSACTION +15:45:09 Slot [409] | NOT FINANCIAL TRANSACTION +15:45:20 Slot [367] | NOT FINANCIAL TRANSACTION +15:45:30 +Slot[441] 0200 011000 6213548000452951 ------------- 00 208171 000010000000 507915208171015290316213548000452951 507915208171 101643 198901 S +15:45:32 +Slot[437] 0200 301000 6213543000035757 ------------- 00 270115 032008443627 5079082701150441VT526213543000035757 507908270115 069376 180893 S +15:45:37 Slot [403] | NOT FINANCIAL TRANSACTION +15:45:39 +Slot[402] 0200 011000 1808930900011644 ------------- 00 787881 000100000000 507902497434050032001808930900011644 507902497434 552845 621354 S +15:45:47 Slot [362] | NOT FINANCIAL TRANSACTION +15:45:55 +Slot[392] 0200 010000 6688990103278709 ------------- 00 787967 000100000000 507903499531060022006688990103278709 507903499531 038062 621354 S +15:45:57 +Slot[408] 0200 012000 1888880000031393 ------------- 00 787950 000010000000 507904795736070015001888880000031393 507904795736 212475 621354 S +15:45:58 Slot [385] | NOT FINANCIAL TRANSACTION +15:46:05 +Slot[375] 0200 301000 6213543000035757 ------------- 00 270117 032008450727 5079082701170441VT526213543000035757 507908270117 638952 180893 S +15:46:11 Slot [450] | NOT FINANCIAL TRANSACTION +15:46:14 Slot [417] | NOT FINANCIAL TRANSACTION +15:46:15 +Slot[412] 0200 301000 6688990105246308 ------------- 00 788032 000000000000 507904719752180010006688990105246308 507904719752 675771 621354 S +15:46:21 Slot [447] | NOT FINANCIAL TRANSACTION +15:46:28 +Slot[391] 0200 010000 6213545000882377 ------------- 00 270120 000010000000 5079082701200243VTKS6213545000882377 507908270120 639211 180893 S +15:46:39 +Slot[443] 0200 011000 6213543000035757 ------------- 00 270122 000015000000 5079082701220441VT526213543000035757 507908270122 103966 180893 S +15:46:41 +Slot[405] 0200 011000 6213544000812047 ------------- 00 242345 000030000000 507900341589010020006213544000812047 507900341589 930379 220699 S +15:46:42 +Slot[377] 0200 010000 6213542000035254 ------------- 00 950432 000100000000 507902151075030200256213542000035254 507902151075 619187 668899 S +15:46:42 Slot [429] | NOT FINANCIAL TRANSACTION +15:46:48 +Slot[386] 0200 011000 1808930900011644 ------------- 00 788143 000100000000 507902497436050032001808930900011644 507902497436 134941 621354 S +15:46:51 Slot [446] | NOT FINANCIAL TRANSACTION +15:46:51 +Slot[456] 0200 010000 2206990000018879 ------------- 00 788157 000010000000 507903762908010092002206990000018879 507903762908 232666 621354 S +15:47:02 Slot [424] | NOT FINANCIAL TRANSACTION +15:47:11 +Slot[404] 0200 300000 6688990103278709 ------------- 00 788260 000000000000 507903499532060022006688990103278709 507903499532 884364 621354 S +15:47:13 Slot [445] | NOT FINANCIAL TRANSACTION +15:47:14 Slot [434] | NOT FINANCIAL TRANSACTION +15:47:25 Slot [438] | NOT FINANCIAL TRANSACTION +15:47:26 +Slot[435] 0200 011000 1234010100131484 ------------- 00 788285 000010000000 507904363600030035001234010100131484 507904363600 671146 621354 S +15:47:36 Slot [442] | NOT FINANCIAL TRANSACTION +15:47:47 Slot [428] | NOT FINANCIAL TRANSACTION +15:47:47 Slot [427] | NOT FINANCIAL TRANSACTION +15:47:59 +Slot[462] 0200 301000 1808930900012071 ------------- 00 788438 000000000000 507902606184050043001808930900012071 507902606184 946330 621354 S +15:48:05 Slot [431] | NOT FINANCIAL TRANSACTION +15:48:15 Slot [421] | NOT FINANCIAL TRANSACTION +15:48:15 +Slot[451] 0200 011000 1808930900011644 ------------- 00 788489 000100000000 507902497438050032001808930900011644 507902497438 450095 621354 S +15:48:21 Slot [422] | NOT FINANCIAL TRANSACTION +15:48:23 +Slot[457] 0200 012000 6688990102610100 ------------- 00 788561 000050000000 507902916596120014006688990102610100 507902916596 825078 621354 S +15:48:27 +Slot[426] 0200 010000 6688990103278709 ------------- 00 788577 000050000000 507903499534060022006688990103278709 507903499534 404049 621354 S +15:48:36 Slot [465] | NOT FINANCIAL TRANSACTION +15:48:52 Slot [444] | NOT FINANCIAL TRANSACTION +15:48:53 Slot [436] | NOT FINANCIAL TRANSACTION +15:49:04 Slot [423] | NOT FINANCIAL TRANSACTION +15:49:11 +Slot[458] 0200 011000 6213544001850681 ------------- 00 208208 000020000000 507915208208015290096213544001850681 507915208208 685940 198901 S +15:49:15 Slot [439] | NOT FINANCIAL TRANSACTION +15:49:17 Slot [459] | NOT FINANCIAL TRANSACTION +15:49:24 +Slot[452] 0200 011000 6213544001277786 ------------- 00 274831 000070000000 507900057318010005006213544001277786 507900057318 609834 220699 S +15:49:25 Slot [455] | NOT FINANCIAL TRANSACTION +15:49:41 Slot [468] | NOT FINANCIAL TRANSACTION +15:49:43 +Slot[466] 0200 010000 6688990103285308 ------------- 00 788919 000100000000 507903499536060022006688990103285308 507903499536 316922 621354 S +15:49:52 Slot [475] | NOT FINANCIAL TRANSACTION +15:49:54 Slot [440] | NOT FINANCIAL TRANSACTION +15:49:57 Slot [460] | NOT FINANCIAL TRANSACTION +15:50:01 +Slot[432] 0200 010000 6213544002255757 ------------- 55 950530 000015000000 507901489353035150016213544002255757 507901489353 716114 668899 S +15:50:02 Slot [495] | NOT FINANCIAL TRANSACTION +15:50:02 +Slot[449] 0200 011000 6688990102478201 ------------- 00 788998 000050000000 507903675756160020006688990102478201 507903675756 705588 621354 S +15:50:04 +Slot[482] 0200 012000 6213544001159497 ------------- 00 223743 000009000000 507900118772010011006213544001159497 507900118772 128086 220699 S +15:50:13 Slot [488] | NOT FINANCIAL TRANSACTION +15:50:17 +Slot[453] 0200 010000 6213541000044852 ------------- 00 270145 000100000000 5079082701450141HQBR6213541000044852 507908270145 245632 180893 S +15:50:19 Slot [470] | NOT FINANCIAL TRANSACTION +15:50:29 Slot [484] | NOT FINANCIAL TRANSACTION +15:50:36 +Slot[463] 0200 011000 6688990101773206 ------------- 00 789161 000030000000 507904645126170009006688990101773206 507904645126 727435 621354 S +15:50:42 +Slot[490] 0200 010000 6688990107556506 ------------- 14 270148 000100000000 5079082701480361BLTB6688990107556506 507908270148 296691 180893 S +15:50:46 +Slot[480] 0200 010000 6213544002255757 ------------- 00 950558 000015000000 507901489355035150016213544002255757 507901489355 923687 668899 S +15:50:48 +Slot[448] 0200 010000 6688990107046409 ------------- 00 789216 000010000000 507905335224050047006688990107046409 507905335224 742755 621354 S +15:50:50 Slot [0] | NOT FINANCIAL TRANSACTION +15:50:53 +Slot[471] 0200 011000 6688990108337609 ------------- 00 789243 000010000000 507904672797180006006688990108337609 507904672797 522007 621354 S +15:51:01 +Slot[479] 0200 012000 1888880000031658 ------------- 00 789247 000002000000 507904755423070011001888880000031658 507904755423 595325 621354 S +15:51:02 Slot [493] | NOT FINANCIAL TRANSACTION +15:51:04 +Slot[2] 0200 010000 6688990103285308 ------------- 00 789293 000100000000 507903499538060022006688990103285308 507903499538 216227 621354 S +15:51:06 Slot [4] | NOT FINANCIAL TRANSACTION +15:51:21 Slot [1] | NOT FINANCIAL TRANSACTION +15:51:21 Slot [498] | NOT FINANCIAL TRANSACTION +15:51:22 Slot [473] | NOT FINANCIAL TRANSACTION +15:51:32 Slot [477] | NOT FINANCIAL TRANSACTION +15:51:35 +Slot[476] 0200 010000 6688990107046409 ------------- 00 789405 000010000000 507905335226050047006688990107046409 507905335226 266584 621354 S +15:51:40 +Slot[489] 0200 301000 6688990107556506 ------------- 14 270155 032008504227 5079082701550361BLTB6688990107556506 507908270155 202829 180893 S +15:51:48 Slot [483] | NOT FINANCIAL TRANSACTION +15:51:59 Slot [486] | NOT FINANCIAL TRANSACTION +15:52:07 Slot [485] | NOT FINANCIAL TRANSACTION +15:52:10 Slot [14] | NOT FINANCIAL TRANSACTION +15:52:11 +Slot[474] 0200 010000 6688990103285308 ------------- 00 789546 000050000000 507903499540060022006688990103285308 507903499540 941173 621354 S +15:52:12 +Slot[472] 0200 010000 6688990106065905 ------------- 55 789552 000010000000 507902916603120014006688990106065905 507902916603 490528 621354 S +15:52:18 +Slot[6] 0200 301000 1888880000030916 ------------- 00 789556 000000000000 507904755424070011001888880000030916 507904755424 442961 621354 S +15:52:23 Slot [16] | NOT FINANCIAL TRANSACTION +15:52:25 Slot [492] | NOT FINANCIAL TRANSACTION +15:52:30 +Slot[454] 0200 010000 6688990106065905 ------------- 00 789625 000010000000 507902916605120014006688990106065905 507902916605 761200 621354 S +15:52:32 +Slot[13] 0200 302000 6688990040109553 ------------- 14 270160 032008513427 5079082701600263UDXB6688990040109553 507908270160 696073 180893 S +15:52:41 Slot [12] | NOT FINANCIAL TRANSACTION +15:52:50 +Slot[22] 0200 010000 6688990107556506 ------------- 14 270163 000050000000 5079082701630361BLTB6688990107556506 507908270163 172838 180893 S +15:52:52 +Slot[469] 0200 301000 1808931100011699 ------------- 00 789690 000000000000 507904599740020022001808931100011699 507904599740 794924 621354 S +15:52:59 Slot [17] | NOT FINANCIAL TRANSACTION +15:53:12 Slot [494] | NOT FINANCIAL TRANSACTION +15:53:14 Slot [491] | NOT FINANCIAL TRANSACTION +15:53:21 +Slot[10] 0200 010000 6688990103267900 ------------- 00 789804 000040000000 507903499542060022006688990103267900 507903499542 011936 621354 S +15:53:25 Slot [499] | NOT FINANCIAL TRANSACTION +15:53:27 +Slot[29] 0200 010000 6688990040109553 ------------- 14 270170 000010000000 5079082701700263UDXB6688990040109553 507908270170 481334 180893 S +15:53:33 +Slot[481] 0200 010000 1808931100011699 ------------- 00 789837 000080000000 507904599742020022001808931100011699 507904599742 890696 621354 S +15:53:40 Slot [31] | NOT FINANCIAL TRANSACTION +15:53:40 +Slot[23] 0200 010000 1888880000030916 ------------- 55 789876 000005000000 507904755426070011001888880000030916 507904755426 977733 621354 S +15:53:52 Slot [3] | NOT FINANCIAL TRANSACTION +15:54:03 +Slot[35] 0200 010000 1808931800010025 ------------- 00 789976 000100000000 507904635784170008001808931800010025 507904635784 569650 621354 S +15:54:04 +Slot[11] 0200 010000 1888880000030916 ------------- 00 789968 000005000000 507904755428070011001888880000030916 507904755428 191300 621354 S +15:54:05 Slot [33] | NOT FINANCIAL TRANSACTION +15:54:16 +Slot[21] 0200 301000 1808930200053965 ------------- 14 950650 000000000000 507900184332030010021808930200053965 507900184332 677642 668899 S +15:54:17 Slot [496] | NOT FINANCIAL TRANSACTION +15:54:25 +Slot[30] 0200 011000 6213544001812244 ------------- 00 270175 000030000000 5079082701750528LPBP6213544001812244 507908270175 529688 180893 S +15:54:27 Slot [37] | NOT FINANCIAL TRANSACTION +15:54:37 Slot [461] | NOT FINANCIAL TRANSACTION +15:54:41 Slot [9] | NOT FINANCIAL TRANSACTION +15:54:49 Slot [36] | NOT FINANCIAL TRANSACTION +15:54:51 +Slot[45] 0200 010000 6688990103276307 ------------- 00 790183 000040000000 507903499544060022006688990103276307 507903499544 728058 621354 S +15:54:53 +Slot[18] 0200 012000 6688990108545003 ------------- 51 790198 000010000000 507904315398030030006688990108545003 507904315398 878535 621354 S +15:54:55 Slot [497] | NOT FINANCIAL TRANSACTION +15:55:04 Slot [40] | NOT FINANCIAL TRANSACTION +15:55:11 +Slot[8] 0200 300000 1808931800010025 ------------- 00 790239 000000000000 507904635785170008001808931800010025 507904635785 871202 621354 S +15:55:20 Slot [28] | NOT FINANCIAL TRANSACTION +15:55:22 Slot [467] | NOT FINANCIAL TRANSACTION +15:55:29 Slot [43] | NOT FINANCIAL TRANSACTION +15:55:31 Slot [7] | NOT FINANCIAL TRANSACTION +15:55:43 Slot [52] | NOT FINANCIAL TRANSACTION +15:55:55 +Slot[25] 0200 011000 6213541000725161 ------------- 00 270182 000025000000 5079082701820528LPBP6213541000725161 507908270182 177376 180893 S +15:55:56 +Slot[55] 0200 010000 6213544001598116 ------------- 00 223746 000010000000 507900118774010011006213544001598116 507900118774 618811 220699 S +15:55:58 +Slot[50] 0200 011000 1888880000030916 ------------- 00 790379 000002000000 507904755430070011001888880000030916 507904755430 440703 621354 S +15:56:08 Slot [61] | NOT FINANCIAL TRANSACTION +15:56:19 +Slot[44] 0200 010000 6688990103551105 ------------- 14 270189 000050000000 5079082701890221XKKM6688990103551105 507908270189 243992 180893 S +15:56:22 Slot [478] | NOT FINANCIAL TRANSACTION +15:56:27 Slot [60] | NOT FINANCIAL TRANSACTION +15:56:29 +Slot[15] 0200 011000 6213548000277812 ------------- 00 270191 000010000000 5079082701910522XYXH6213548000277812 507908270191 934302 180893 S +15:56:31 Slot [63] | NOT FINANCIAL TRANSACTION +15:56:31 +Slot[68] 0200 011000 6213545000652762 ------------- 00 021176 000010000000 507900263122010014006213545000652762 507900263122 843533 220699 S +15:56:41 Slot [38] | NOT FINANCIAL TRANSACTION +15:56:42 +Slot[73] 0200 302000 6688990040109553 ------------- 00 790551 000000000000 507903499545060022006688990040109553 507903499545 048958 621354 S +15:56:51 +Slot[41] 0200 301000 6688990103551105 ------------- 14 270194 032008555327 5079082701940221XKKM6688990103551105 507908270194 585312 180893 S +15:57:03 Slot [464] | NOT FINANCIAL TRANSACTION +15:57:13 Slot [32] | NOT FINANCIAL TRANSACTION +15:57:30 Slot [26] | NOT FINANCIAL TRANSACTION +15:57:32 Slot [20] | NOT FINANCIAL TRANSACTION +15:57:33 Slot [487] | NOT FINANCIAL TRANSACTION +15:57:39 +Slot[69] 0200 300000 6688990040102327 ------------- 00 790773 000000000000 507904627731170007006688990040102327 507904627731 351264 621354 S +15:57:41 Slot [48] | NOT FINANCIAL TRANSACTION +15:57:41 +Slot[46] 0200 301000 6213544001511846 ------------- 00 270199 032008564427 5079082701990221XKKM6213544001511846 507908270199 594647 180893 S +15:57:45 +Slot[27] 0200 012000 6688990040109553 ------------- 00 790802 000040000000 507903499547060022006688990040109553 507903499547 948565 621354 S +15:57:47 +Slot[19] 0200 011000 6688990102227400 ------------- 00 790805 000030000000 507903278894120027006688990102227400 507903278894 819164 621354 S +15:57:52 Slot [47] | NOT FINANCIAL TRANSACTION +15:57:55 Slot [54] | NOT FINANCIAL TRANSACTION +15:58:03 Slot [78] | NOT FINANCIAL TRANSACTION +15:58:13 Slot [57] | NOT FINANCIAL TRANSACTION +15:58:17 +Slot[81] 0200 010000 6688990105191207 ------------- 00 790934 000008000000 507904645134170009006688990105191207 507904645134 890117 621354 S +15:58:23 Slot [24] | NOT FINANCIAL TRANSACTION +15:58:32 +Slot[49] 0200 302000 6688990040109553 ------------- 00 790991 000000000000 507903499548060022006688990040109553 507903499548 626875 621354 S +15:58:35 Slot [42] | NOT FINANCIAL TRANSACTION +15:58:37 Slot [34] | NOT FINANCIAL TRANSACTION +15:58:39 Slot [88] | NOT FINANCIAL TRANSACTION +15:58:50 Slot [86] | NOT FINANCIAL TRANSACTION +15:58:58 +Slot[89] 0200 011000 6213548000132678 ------------- 00 270205 000030000000 5079082702050381CPSP6213548000132678 507908270205 395151 180893 S +15:59:03 +Slot[79] 0200 010000 6688990602678904 ------------- 00 791098 000100000000 507904154034200010006688990602678904 507904154034 895442 621354 S +15:59:11 Slot [59] | NOT FINANCIAL TRANSACTION +15:59:14 +Slot[84] 0200 300000 6688990060005913 ------------- 00 791148 000000000000 507903499549060022006688990060005913 507903499549 078304 621354 S +15:59:27 Slot [5] | NOT FINANCIAL TRANSACTION +15:59:34 +Slot[67] 0200 302000 6688990103535801 ------------- 00 791271 000000000000 507903345167130014006688990103535801 507903345167 260523 621354 S +15:59:37 Slot [62] | NOT FINANCIAL TRANSACTION +15:59:37 Slot [39] | NOT FINANCIAL TRANSACTION +15:59:42 Slot [58] | NOT FINANCIAL TRANSACTION +15:59:47 +Slot[51] 0200 010000 6213548000301430 ------------- 00 950832 000030000000 507900109397030200026213548000301430 507900109397 429296 668899 S +15:59:48 Slot [82] | NOT FINANCIAL TRANSACTION +15:59:50 +Slot[56] 0200 010000 6688990106140708 ------------- 14 270213 000010000000 5079082702130321LNTV6688990106140708 507908270213 725981 180893 S +15:59:55 Slot [93] | NOT FINANCIAL TRANSACTION +15:59:56 +Slot[99] 0200 010000 6688990060005913 ------------- 00 791354 000080000000 507903499551060022006688990060005913 507903499551 571101 621354 S +16:00:04 Slot [91] | NOT FINANCIAL TRANSACTION +16:00:17 +Slot[64] 0200 011000 1808930500000021 ------------- 00 791436 000100000000 507903139883040023001808930500000021 507903139883 575051 621354 S +16:00:26 +Slot[100] 0200 010000 6688990106140708 ------------- 14 270220 000010000000 5079082702200321LNTV6688990106140708 507908270220 530869 180893 S +16:00:28 +Slot[65] 0200 011000 1808931800005819 ------------- 00 791494 000050000000 507904635793170008001808931800005819 507904635793 732621 621354 S +16:00:37 Slot [72] | NOT FINANCIAL TRANSACTION +16:00:39 Slot [76] | NOT FINANCIAL TRANSACTION +16:00:45 +Slot[90] 0200 011000 6213543000046614 ------------- 55 208354 000100000000 507916208354000022066213543000046614 507916208354 045926 198901 S +16:00:47 +Slot[106] 0200 010000 6688990602678904 ------------- 00 791586 000050000000 507904154036200010006688990602678904 507904154036 590902 621354 S +16:00:47 Slot [114] | NOT FINANCIAL TRANSACTION +16:00:47 Slot [66] | NOT FINANCIAL TRANSACTION +16:00:58 Slot [118] | NOT FINANCIAL TRANSACTION +16:01:15 +Slot[83] 0200 010000 1808930700014699 ------------- 00 950880 000020000000 507902280413030090051808930700014699 507902280413 476418 668899 S +16:01:20 Slot [121] | NOT FINANCIAL TRANSACTION +16:01:20 +Slot[107] 0200 300000 6213545000422190 ------------- 00 950888 000000000000 507902114221030010096213545000422190 507902114221 845224 668899 S +16:01:22 Slot [74] | NOT FINANCIAL TRANSACTION +16:01:24 +Slot[115] 0200 010000 6688990106048307 ------------- 00 791738 000010000000 507903499553060022006688990106048307 507903499553 668747 621354 S +16:01:30 Slot [92] | NOT FINANCIAL TRANSACTION +16:01:41 Slot [113] | NOT FINANCIAL TRANSACTION +16:01:41 Slot [108] | NOT FINANCIAL TRANSACTION +16:01:52 Slot [127] | NOT FINANCIAL TRANSACTION +16:01:52 Slot [75] | NOT FINANCIAL TRANSACTION +16:01:56 +Slot[94] 0200 011000 6213543000046614 ------------- 00 208369 000100000000 507916208369000022066213543000046614 507916208369 568754 198901 S +16:01:58 +Slot[95] 0200 301000 2206990000090308 ------------- 00 791889 000000000000 507904015524010117002206990000090308 507904015524 985436 621354 S +16:02:06 +Slot[98] 0200 011000 1808930600033633 ------------- 00 208371 000100000000 507916208371205290011808930600033633 507916208371 487480 198901 S +16:02:08 +Slot[53] 0200 010000 6688990101816302 ------------- 00 791940 000050000000 507904635795170008006688990101816302 507904635795 527709 621354 S +16:02:13 Slot [134] | NOT FINANCIAL TRANSACTION +16:02:16 +Slot[125] 0200 010000 6213545000422190 ------------- 00 950912 000010000000 507902114222030010096213545000422190 507902114222 060347 668899 S +16:02:19 +Slot[103] 0200 011000 6688990106085507 ------------- 00 791979 000050000000 507903612995160014006688990106085507 507903612995 948671 621354 S +16:02:25 Slot [96] | NOT FINANCIAL TRANSACTION +16:02:39 Slot [70] | NOT FINANCIAL TRANSACTION +16:02:40 +Slot[101] 0200 011000 6213543000046614 ------------- 00 208380 000100000000 507916208380000022066213543000046614 507916208380 461586 198901 S +16:02:42 +Slot[77] 0200 010000 6688990106048307 ------------- 00 792076 000100000000 507903499555060022006688990106048307 507903499555 394556 621354 S +16:02:43 Slot [102] | NOT FINANCIAL TRANSACTION +16:02:43 +Slot[109] 0200 010000 6213541000640352 ------------- 55 950923 000050000000 507902093379030200216213541000640352 507902093379 920581 668899 S +16:02:45 +Slot[71] 0200 011000 2206990000090308 ------------- 00 792077 000015000000 507904015526010117002206990000090308 507904015526 510625 621354 S +16:02:53 Slot [136] | NOT FINANCIAL TRANSACTION +16:02:57 Slot [85] | NOT FINANCIAL TRANSACTION +16:03:04 Slot [87] | NOT FINANCIAL TRANSACTION +16:03:08 +Slot[129] 0200 010000 6688990103535801 ------------- 00 792171 000010000000 507903345172130014006688990103535801 507903345172 408295 621354 S +16:03:14 Slot [105] | NOT FINANCIAL TRANSACTION +16:03:24 Slot [131] | NOT FINANCIAL TRANSACTION +16:03:29 +Slot[116] 0200 010000 6213544001763934 ------------- 51 950948 000020000000 507902093381030200216213544001763934 507902093381 641064 668899 S +16:03:30 +Slot[138] 0200 010000 6688990105652406 ------------- 00 792264 000050000000 507904635797170008006688990105652406 507904635797 476177 621354 S +16:03:35 Slot [104] | NOT FINANCIAL TRANSACTION +16:03:45 +Slot[112] 0200 010000 6688990106048307 ------------- 00 792327 000100000000 507903499557060022006688990106048307 507903499557 480604 621354 S +16:03:45 Slot [97] | NOT FINANCIAL TRANSACTION +16:03:50 Slot [140] | NOT FINANCIAL TRANSACTION +16:04:01 Slot [111] | NOT FINANCIAL TRANSACTION +16:04:02 Slot [124] | NOT FINANCIAL TRANSACTION +16:04:13 Slot [117] | NOT FINANCIAL TRANSACTION +16:04:19 +Slot[123] 0200 010000 6688990103535801 ------------- 00 792485 000100000000 507903345174130014006688990103535801 507903345174 278481 621354 S +16:04:32 +Slot[80] 0200 010000 1808931200003380 ------------- 00 950989 000100000000 507902362972030160031808931200003380 507902362972 709777 668899 S +16:04:39 Slot [147] | NOT FINANCIAL TRANSACTION +16:04:43 +Slot[161] 0200 010000 6688990103260202 ------------- 00 792582 000100000000 507903499559060022006688990103260202 507903499559 751724 621354 S +16:04:47 Slot [162] | NOT FINANCIAL TRANSACTION +16:04:54 Slot [132] | NOT FINANCIAL TRANSACTION +16:04:55 Slot [122] | NOT FINANCIAL TRANSACTION +16:05:07 Slot [145] | NOT FINANCIAL TRANSACTION +16:05:10 Slot [143] | NOT FINANCIAL TRANSACTION +16:05:27 Slot [154] | NOT FINANCIAL TRANSACTION +16:05:28 +Slot[166] 0200 010000 1808931200003380 ------------- 00 951017 000100000000 507902362974030160031808931200003380 507902362974 004030 668899 S +16:05:30 +Slot[158] 0200 010000 6688990103535801 ------------- 00 792818 000100000000 507903345176130014006688990103535801 507903345176 949668 621354 S +16:05:30 Slot [153] | NOT FINANCIAL TRANSACTION +16:05:42 Slot [120] | NOT FINANCIAL TRANSACTION +16:05:48 +Slot[133] 0200 301000 6213543000037365 ------------- 00 270236 032009045027 5079092702360221XKKM6213543000037365 507909270236 345137 180893 S +16:05:49 Slot [150] | NOT FINANCIAL TRANSACTION +16:05:54 +Slot[110] 0200 010000 6688990103260202 ------------- 00 792938 000100000000 507903499561060022006688990103260202 507903499561 273657 621354 S +16:06:00 +Slot[159] 0200 301000 6213544000698214 ------------- 05 270238 032009050227 5079092702380528LPBP6213544000698214 507909270238 303010 180893 S +16:06:10 +Slot[142] 0200 010000 2206990000054882 ------------- 51 793035 000030000000 507903683844010088002206990000054882 507903683844 613825 621354 S +16:06:12 Slot [130] | NOT FINANCIAL TRANSACTION +16:06:12 Slot [167] | NOT FINANCIAL TRANSACTION +16:06:22 Slot [146] | NOT FINANCIAL TRANSACTION +16:06:23 Slot [137] | NOT FINANCIAL TRANSACTION +16:06:31 +Slot[175] 0200 010000 1808931200003380 ------------- 00 951053 000100000000 507902362976030160031808931200003380 507902362976 315262 668899 S +16:06:32 +Slot[170] 0200 010000 6213541000694631 ------------- 00 951056 000100000000 507900123472030200036213541000694631 507900123472 385331 668899 S +16:06:41 +Slot[128] 0200 010000 6688990103535801 ------------- 00 793191 000100000000 507903345178130014006688990103535801 507903345178 623809 621354 S +16:06:44 +Slot[157] 0200 301000 1808930600050355 ------------- 00 793192 000000000000 507904269752030025001808930600050355 507904269752 753131 621354 S +16:06:50 Slot [151] | NOT FINANCIAL TRANSACTION +16:06:51 Slot [141] | NOT FINANCIAL TRANSACTION +16:06:57 +Slot[172] 0200 302000 6688990103260202 ------------- 00 793284 000000000000 507903499562060022006688990103260202 507903499562 721125 621354 S +16:07:06 Slot [171] | NOT FINANCIAL TRANSACTION +16:07:17 Slot [186] | NOT FINANCIAL TRANSACTION +16:07:17 Slot [164] | NOT FINANCIAL TRANSACTION +16:07:31 +Slot[126] 0200 010000 1808931200003380 ------------- 00 951082 000100000000 507902362978030160031808931200003380 507902362978 861536 668899 S +16:07:32 +Slot[139] 0200 010000 6688990040068296 ------------- 00 793428 000010000000 507905335228050047006688990040068296 507905335228 046827 621354 S +16:07:34 +Slot[148] 0200 011000 1808930600050355 ------------- 00 793426 000005000000 507904269754030025001808930600050355 507904269754 528200 621354 S +16:07:39 Slot [119] | NOT FINANCIAL TRANSACTION +16:07:49 +Slot[202] 0200 010000 6688990103260202 ------------- 00 793530 000100000000 507903499564060022006688990103260202 507903499564 230521 621354 S +16:07:50 Slot [176] | NOT FINANCIAL TRANSACTION +16:07:53 Slot [182] | NOT FINANCIAL TRANSACTION +16:08:05 Slot [187] | NOT FINANCIAL TRANSACTION +16:08:12 +Slot[160] 0200 300000 6213548000165124 ------------- 00 951094 000000000000 507902556317030160046213548000165124 507902556317 988536 668899 S +16:08:14 +Slot[144] 0200 010000 6688990103535801 ------------- 51 793631 000100000000 507903345180130014006688990103535801 507903345180 850767 621354 S +16:08:16 Slot [163] | NOT FINANCIAL TRANSACTION +16:08:21 +Slot[203] 0200 301000 6213545000988752 ------------- 00 270251 032009072327 5079092702510243VTKS6213545000988752 507909270251 117908 180893 S +16:08:22 Slot [204] | NOT FINANCIAL TRANSACTION +16:08:22 +Slot[156] 0200 011000 2206990000093815 ------------- 00 793652 000020000000 507903063975010086002206990000093815 507903063975 644543 621354 S +16:08:27 +Slot[179] 0200 011000 6213544000713666 ------------- 00 270252 000020000000 5079092702520221XKKM6213544000713666 507909270252 046554 180893 S +16:08:37 Slot [191] | NOT FINANCIAL TRANSACTION +16:08:41 +Slot[135] 0200 010000 6688990103260202 ------------- 00 793744 000010000000 507903499566060022006688990103260202 507903499566 918853 621354 S +16:08:48 Slot [192] | NOT FINANCIAL TRANSACTION +16:08:53 +Slot[152] 0200 010000 6213545000365639 ------------- 00 951112 000050000000 507902362980030160036213545000365639 507902362980 678742 668899 S +16:08:54 +Slot[190] 0200 010000 6213544000698214 ------------- 00 270256 000010000000 5079092702560528LPBP6213544000698214 507909270256 331145 180893 S +16:08:55 Slot [196] | NOT FINANCIAL TRANSACTION +16:08:59 +Slot[198] 0200 010000 6688990603113109 ------------- 00 793800 000100000000 507903345182130014006688990603113109 507903345182 588887 621354 S +16:09:00 +Slot[155] 0200 010000 6213545000512172 ------------- 00 379644 000010000000 507900165770060001006213545000512172 507900165770 147944 220699 S +16:09:02 +Slot[181] 0200 301000 1808931700023938 ------------- 00 793809 000000000000 507902546850050037001808931700023938 507902546850 748126 621354 S +16:09:11 Slot [201] | NOT FINANCIAL TRANSACTION +16:09:25 Slot [165] | NOT FINANCIAL TRANSACTION +16:09:27 Slot [214] | NOT FINANCIAL TRANSACTION +16:09:33 +Slot[209] 0200 011000 1808931800008607 ------------- 00 793939 000100000000 507904653612170010001808931800008607 507904653612 224261 621354 S +16:09:35 +Slot[195] 0200 010000 6213548000165124 ------------- 00 951139 000062000000 507902556319030160046213548000165124 507902556319 000884 668899 S +16:09:40 Slot [178] | NOT FINANCIAL TRANSACTION +16:09:48 +Slot[184] 0200 301000 1808931000000792 ------------- 00 794017 000000000000 507902661107140005001808931000000792 507902661107 397016 621354 S +16:09:50 +Slot[206] 0200 301000 6213544002089354 ------------- 00 951151 000000000000 507901614516030010076213544002089354 507901614516 043683 668899 S +16:09:53 +Slot[194] 0200 011000 1808931700023938 ------------- 00 794044 000005000000 507902546852050037001808931700023938 507902546852 639333 621354 S +16:09:55 Slot [212] | NOT FINANCIAL TRANSACTION +16:09:57 Slot [193] | NOT FINANCIAL TRANSACTION +16:09:58 +Slot[213] 0200 010000 6213545000988752 ------------- 00 270262 000010000000 5079092702620243VTKS6213545000988752 507909270262 992389 180893 S +16:10:06 Slot [207] | NOT FINANCIAL TRANSACTION +16:10:20 +Slot[221] 0200 010000 6688990603113109 ------------- 00 794185 000100000000 507903345184130014006688990603113109 507903345184 405669 621354 S +16:10:21 Slot [230] | NOT FINANCIAL TRANSACTION +16:10:25 +Slot[183] 0200 010000 6213544002089354 ------------- 00 951174 000050000000 507901614517030010076213544002089354 507901614517 494876 668899 S +16:10:32 Slot [169] | NOT FINANCIAL TRANSACTION +16:10:32 Slot [205] | NOT FINANCIAL TRANSACTION +16:10:35 +Slot[208] 0200 300000 6213544001443669 ------------- 00 951180 000000000000 507902678756030200356213544001443669 507902678756 262758 668899 S +16:10:37 +Slot[211] 0200 010000 6688990103283402 ------------- 00 794268 000100000000 507903499570060022006688990103283402 507903499570 287021 621354 S +16:10:40 +Slot[185] 0200 301000 6688990103062202 ------------- 55 794299 000000000000 507902577801050040006688990103062202 507902577801 513833 621354 S +16:10:42 +Slot[232] 0200 010000 6213545000988752 ------------- 00 270268 000010000000 5079092702680243VTKS6213545000988752 507909270268 856964 180893 S +16:10:51 +Slot[149] 0200 011000 6213544000698214 ------------- 00 270270 000064000000 5079092702700528LPBP6213544000698214 507909270270 834665 180893 S +16:10:53 +Slot[189] 0200 011000 1808931000000792 ------------- 00 794316 000010000000 507902661109140005001808931000000792 507902661109 085383 621354 S +16:10:59 Slot [168] | NOT FINANCIAL TRANSACTION +16:11:03 Slot [222] | NOT FINANCIAL TRANSACTION +16:11:05 +Slot[180] 0200 010000 6688990040161182 ------------- 55 794415 000100000000 507903032278120026006688990040161182 507903032278 060292 621354 S +16:11:09 +Slot[229] 0200 011000 6213544001276036 ------------- 61 208503 000200000000 507916208503015290096213544001276036 507916208503 303248 198901 S +16:11:11 +Slot[174] 0200 301000 6688990103062202 ------------- 55 794449 000000000000 507902577802050040006688990103062202 507902577802 334978 621354 S +16:11:13 Slot [173] | NOT FINANCIAL TRANSACTION +16:11:22 Slot [246] | NOT FINANCIAL TRANSACTION +16:11:27 +Slot[188] 0200 010000 6688990603113109 ------------- 00 794533 000030000000 507903345186130014006688990603113109 507903345186 006942 621354 S +16:11:28 Slot [223] | NOT FINANCIAL TRANSACTION +16:11:37 Slot [235] | NOT FINANCIAL TRANSACTION +16:11:38 Slot [227] | NOT FINANCIAL TRANSACTION +16:11:39 +Slot[215] 0200 010000 6688990040161182 ------------- 00 794594 000100000000 507903032280120026006688990040161182 507903032280 802041 621354 S +16:11:41 +Slot[248] 0200 302000 6688990103283402 ------------- 00 794604 000000000000 507903499571060022006688990103283402 507903499571 135175 621354 S +16:11:42 +Slot[244] 0200 300000 6688990602864504 ------------- 00 794607 000000000000 507902925793120015006688990602864504 507902925793 300072 621354 S +16:11:44 +Slot[243] 0200 011000 6213544001276036 ------------- 61 208507 000200000000 507916208507015290096213544001276036 507916208507 014583 198901 S +16:11:46 +Slot[251] 0200 011000 6213544000774775 ------------- 00 208508 000100000000 507916208508015290286213544000774775 507916208508 914654 198901 S +16:11:49 Slot [242] | NOT FINANCIAL TRANSACTION +16:11:52 +Slot[177] 0200 010000 6213544001443669 ------------- 00 951217 000030000000 507902678758030200356213544001443669 507902678758 164106 668899 S +16:11:58 +Slot[250] 0200 010000 6213545000601678 ------------- 00 270277 000010000000 5079092702770366SKTT6213545000601678 507909270277 576416 180893 S +16:12:01 Slot [255] | NOT FINANCIAL TRANSACTION +16:12:02 +Slot[226] 0200 011000 1808931000000792 ------------- 51 794708 000090000000 507902661111140005001808931000000792 507902661111 371811 621354 S +16:12:04 +Slot[233] 0200 310000 6213542000043886 ------------- 00 021179 000000000000 507900263124010014006213542000043886 507900263124 076666 220699 S +16:12:09 Slot [237] | NOT FINANCIAL TRANSACTION +16:12:20 Slot [200] | NOT FINANCIAL TRANSACTION +16:12:25 +Slot[238] 0200 011000 6213544001267431 ------------- 51 270281 000020000000 5079092702810528LPBP6213544001267431 507909270281 443474 180893 S +16:12:31 +Slot[260] 0200 302000 6213544002162383 ------------- 00 951243 000000000000 507901443614034140016213544002162383 507901443614 536746 668899 S +16:12:33 +Slot[234] 0200 301000 6213545000973457 ------------- 00 270282 032009113027 5079092702820221XKKM6213545000973457 507909270282 023778 180893 S +16:12:35 +Slot[253] 0200 010000 6688990103283402 ------------- 00 794878 000100000000 507903499573060022006688990103283402 507903499573 429918 621354 S +16:12:36 +Slot[216] 0200 010000 6688990603112804 ------------- 55 794884 000100000000 507903345188130014006688990603112804 507903345188 630844 621354 S +16:12:41 Slot [263] | NOT FINANCIAL TRANSACTION +16:12:42 Slot [259] | NOT FINANCIAL TRANSACTION +16:12:44 +Slot[249] 0200 010000 6213542000043886 ------------- 00 021180 000070000000 507900263125010014006213542000043886 507900263125 242264 220699 S +16:12:47 +Slot[210] 0200 011000 6213544001691622 ------------- 00 223749 000030000000 507900118776010011006213544001691622 507900118776 367982 220699 S +16:12:51 Slot [261] | NOT FINANCIAL TRANSACTION +16:12:56 +Slot[225] 0200 010000 6688990601232802 ------------- 14 270284 000010000000 5079092702840523XYNG6688990601232802 507909270284 976276 180893 S +16:13:03 Slot [269] | NOT FINANCIAL TRANSACTION +16:13:04 +Slot[270] 0200 010000 6213545000113120 ------------- 00 270286 000100000000 5079092702860301LPBX6213545000113120 507909270286 055698 180893 S +16:13:08 +Slot[199] 0200 010000 6688990603112804 ------------- 00 795046 000100000000 507903345190130014006688990603112804 507903345190 356705 621354 S +16:13:13 Slot [240] | NOT FINANCIAL TRANSACTION +16:13:17 +Slot[275] 0200 011000 6688990101830501 ------------- 00 795096 000100000000 507904635827170008006688990101830501 507904635827 982524 621354 S +16:13:21 +Slot[197] 0200 300000 6213544002162383 ------------- 00 951265 000000000000 507901443615034140016213544002162383 507901443615 484271 668899 S +16:13:23 +Slot[256] 0200 010000 6213545000973457 ------------- 61 270290 000200000000 5079092702900221XKKM6213545000973457 507909270290 876404 180893 S +16:13:39 +Slot[218] 0200 011000 6213544001267431 ------------- 51 270292 000015000000 5079092702920528LPBP6213544001267431 507909270292 085583 180893 S +16:13:41 +Slot[228] 0200 010000 6688990103283402 ------------- 00 795215 000100000000 507903499575060022006688990103283402 507903499575 904170 621354 S +16:13:47 Slot [274] | NOT FINANCIAL TRANSACTION +16:13:48 Slot [265] | NOT FINANCIAL TRANSACTION +16:13:57 +Slot[247] 0200 010000 6213545000113120 ------------- 00 270295 000010000000 5079092702950301LPBX6213545000113120 507909270295 094388 180893 S +16:13:58 +Slot[264] 0200 011000 6688990106252404 ------------- 14 223752 000030000000 507900118778010011006688990106252404 507900118778 830424 220699 S +16:14:00 +Slot[279] 0200 011000 6688990103062202 ------------- 75 795295 000004000000 507902577804050040006688990103062202 507902577804 056380 621354 S +16:14:05 Slot [273] | NOT FINANCIAL TRANSACTION +16:14:08 Slot [220] | NOT FINANCIAL TRANSACTION +16:14:12 +Slot[231] 0200 010000 6688990603112804 ------------- 00 795355 000100000000 507903345192130014006688990603112804 507903345192 702573 621354 S +16:14:18 +Slot[239] 0200 010000 6213544001267431 ------------- 51 270300 000010000000 5079092703000528LPBP6213544001267431 507909270300 315028 180893 S +16:14:20 +Slot[252] 0200 301000 6688990101830501 ------------- 00 795386 000000000000 507904635828170008006688990101830501 507904635828 014670 621354 S +16:14:21 +Slot[254] 0200 010000 6213545000973457 ------------- 00 270301 000100000000 5079092703010221XKKM6213545000973457 507909270301 750284 180893 S +16:14:32 +Slot[272] 0200 302000 6213544002162383 ------------- 00 951296 000000000000 507901443616034140016213544002162383 507901443616 676042 668899 S +16:14:33 +Slot[282] 0200 010000 6213545000113120 ------------- 00 270303 000010000000 5079092703030301LPBX6213545000113120 507909270303 222755 180893 S +16:14:37 Slot [266] | NOT FINANCIAL TRANSACTION +16:14:45 Slot [276] | NOT FINANCIAL TRANSACTION +16:14:54 Slot [241] | NOT FINANCIAL TRANSACTION +16:14:55 Slot [280] | NOT FINANCIAL TRANSACTION +16:15:00 Slot [258] | NOT FINANCIAL TRANSACTION +16:15:06 +Slot[224] 0200 010000 6213545000673818 ------------- 00 951317 000100000000 507900146791030200056213545000673818 507900146791 629795 668899 S +16:15:07 Slot [219] | NOT FINANCIAL TRANSACTION +16:15:10 +Slot[284] 0200 011000 6688990101830501 ------------- 00 795591 000100000000 507904635830170008006688990101830501 507904635830 463838 621354 S +16:15:11 +Slot[287] 0200 010000 6213545000113120 ------------- 00 270308 000010000000 5079092703080301LPBX6213545000113120 507909270308 992457 180893 S +16:15:14 +Slot[277] 0200 010000 6213544001263349 ------------- 00 270311 000050000000 5079092703110528LPBP6213544001263349 507909270311 964458 180893 S +16:15:22 +Slot[290] 0200 010000 6688990602440909 ------------- 00 795651 000100000000 507903345194130014006688990602440909 507903345194 965565 621354 S +16:15:27 Slot [271] | NOT FINANCIAL TRANSACTION +16:15:30 +Slot[267] 0200 011000 6688990107891507 ------------- 00 795684 000020000000 507904789476070014006688990107891507 507904789476 679322 621354 S +16:15:33 +Slot[245] 0200 010000 6213545000973457 ------------- 00 270316 000100000000 5079092703160221XKKM6213545000973457 507909270316 394599 180893 S +16:15:41 +Slot[294] 0200 301000 1808930800003261 ------------- 00 795728 000000000000 507905064806120029001808930800003261 507905064806 086567 621354 S +16:15:42 +Slot[236] 0200 011000 6688990602899609 ------------- 00 795747 000030000000 507904755465070011006688990602899609 507904755465 298836 621354 S +16:15:51 Slot [303] | NOT FINANCIAL TRANSACTION +16:15:59 Slot [217] | NOT FINANCIAL TRANSACTION +16:16:06 Slot [298] | NOT FINANCIAL TRANSACTION +16:16:09 Slot [293] | NOT FINANCIAL TRANSACTION +16:16:13 Slot [300] | NOT FINANCIAL TRANSACTION +16:16:14 +Slot[299] 0200 010000 6688990108424209 ------------- 00 795873 000100000000 507903499577060022006688990108424209 507903499577 894748 621354 S +16:16:16 +Slot[257] 0200 011000 6688990101830501 ------------- 00 795874 000100000000 507904635832170008006688990101830501 507904635832 173734 621354 S +16:16:17 +Slot[278] 0200 010000 6213545000113146 ------------- 51 270326 000100000000 5079092703260301LPBX6213545000113146 507909270326 938346 180893 S +16:16:22 Slot [281] | NOT FINANCIAL TRANSACTION +16:16:29 Slot [295] | NOT FINANCIAL TRANSACTION +16:16:30 +Slot[308] 0200 010000 6688990602440909 ------------- 55 795964 000100000000 507903345196130014006688990602440909 507903345196 903009 621354 S +16:16:41 Slot [296] | NOT FINANCIAL TRANSACTION +16:16:48 +Slot[286] 0200 010000 6688990602440909 ------------- 00 796048 000100000000 507903345198130014006688990602440909 507903345198 221667 621354 S +16:16:53 +Slot[283] 0200 011000 6213544001263349 ------------- 00 270330 000016000000 5079092703300528LPBP6213544001263349 507909270330 541752 180893 S +16:17:00 +Slot[316] 0200 010000 1808930600023014 ------------- 00 951391 000100000000 507902317765030140071808930600023014 507902317765 074642 668899 S +16:17:03 +Slot[311] 0200 011000 1808931700006487 ------------- 00 796093 000010000000 507904731595070009001808931700006487 507904731595 245060 621354 S +16:17:04 Slot [312] | NOT FINANCIAL TRANSACTION +16:17:06 Slot [306] | NOT FINANCIAL TRANSACTION +16:17:11 Slot [310] | NOT FINANCIAL TRANSACTION +16:17:15 +Slot[307] 0200 012000 6688990105161101 ------------- 00 796160 000100000000 507904645137170009006688990105161101 507904645137 356842 621354 S +16:17:23 +Slot[317] 0200 011000 6688990101830501 ------------- 00 796194 000100000000 507904635834170008006688990101830501 507904635834 435420 621354 S +16:17:23 Slot [288] | NOT FINANCIAL TRANSACTION +16:17:31 +Slot[318] 0200 010000 6688990040103713 ------------- 00 796225 000030000000 507902916622120014006688990040103713 507902916622 117782 621354 S +16:17:32 +Slot[322] 0200 010000 6213544002132915 ------------- 61 270335 000200000000 5079092703350363CPSH6213544002132915 507909270335 087892 180893 S +16:17:41 Slot [315] | NOT FINANCIAL TRANSACTION +16:17:42 +Slot[325] 0200 010000 6688990108424209 ------------- 00 796285 000100000000 507903499579060022006688990108424209 507903499579 237482 621354 S +16:17:51 Slot [297] | NOT FINANCIAL TRANSACTION +16:17:55 +Slot[304] 0200 011000 6213544001286001 ------------- 00 270338 000030000000 5079092703380528LPBP6213544001286001 507909270338 729214 180893 S +16:18:02 +Slot[289] 0200 010000 6688990602440909 ------------- 00 796368 000100000000 507903345200130014006688990602440909 507903345200 386133 621354 S +16:18:07 Slot [326] | NOT FINANCIAL TRANSACTION +16:18:09 Slot [285] | NOT FINANCIAL TRANSACTION +16:18:13 Slot [301] | NOT FINANCIAL TRANSACTION +16:18:18 Slot [291] | NOT FINANCIAL TRANSACTION +16:18:29 +Slot[331] 0200 010000 6213544002242748 ------------- 55 951440 000050000000 507900577938030140056213544002242748 507900577938 357063 668899 S +16:18:31 +Slot[327] 0200 010000 6213544002132915 ------------- 00 270342 000010000000 5079092703420363CPSH6213544002132915 507909270342 280431 180893 S +16:18:33 +Slot[305] 0200 301000 6688990040074930 ------------- 00 796493 000000000000 507904910957020025006688990040074930 507904910957 777525 621354 S +16:18:35 +Slot[302] 0200 010000 6213544001414132 ------------- 00 951442 000004000000 507902093396030200216213544001414132 507902093396 634503 668899 S +16:18:36 +Slot[314] 0200 012000 6688990101774402 ------------- 00 796501 000006000000 507904645139170009006688990101774402 507904645139 255754 621354 S +16:18:37 +Slot[292] 0200 011000 6688990101830501 ------------- 00 796502 000090000000 507904635836170008006688990101830501 507904635836 589005 621354 S +16:18:44 +Slot[335] 0200 010000 1808930600023014 ------------- 00 951446 000030000000 507902317767030140071808930600023014 507902317767 125726 668899 S +16:18:49 Slot [333] | NOT FINANCIAL TRANSACTION +16:18:57 +Slot[262] 0200 010000 6688990108424209 ------------- 00 796585 000100000000 507903499581060022006688990108424209 507903499581 751530 621354 S +16:19:04 Slot [334] | NOT FINANCIAL TRANSACTION +16:19:09 +Slot[321] 0200 010000 6213544002242748 ------------- 55 951461 000010000000 507900577940030140056213544002242748 507900577940 668167 668899 S +16:19:13 +Slot[336] 0200 012000 6213543000155886 ------------- 00 189028 000010000000 507900084367010008006213543000155886 507900084367 429826 220699 S +16:19:14 Slot [341] | NOT FINANCIAL TRANSACTION +16:19:15 Slot [323] | NOT FINANCIAL TRANSACTION +16:19:15 +Slot[320] 0200 011000 6688990105247207 ------------- 00 796656 000100000000 507904719772180010006688990105247207 507904719772 781932 621354 S +16:19:16 +Slot[339] 0200 010000 6213544002132915 ------------- 00 270348 000010000000 5079092703480363CPSH6213544002132915 507909270348 564330 180893 S +16:19:18 +Slot[342] 0200 010000 6213544000324449 ------------- 00 951464 000010000000 507900802092030090026213544000324449 507900802092 257988 668899 S +16:19:24 Slot [268] | NOT FINANCIAL TRANSACTION +16:19:32 +Slot[352] 0200 301000 6688990101830501 ------------- 00 796741 000000000000 507904635837170008006688990101830501 507904635837 668490 621354 S +16:19:43 +Slot[309] 0200 011000 1808930300013067 ------------- 00 796764 000050000000 507905170285010129001808930300013067 507905170285 852317 621354 S +16:19:43 Slot [348] | NOT FINANCIAL TRANSACTION +16:19:49 +Slot[329] 0200 011000 6688990040074930 ------------- 00 796816 000050000000 507904910959020025006688990040074930 507904910959 310380 621354 S +16:19:50 +Slot[328] 0200 010000 6213544002242722 ------------- 55 951483 000010000000 507900577942030140056213544002242722 507900577942 953008 668899 S +16:19:55 Slot [347] | NOT FINANCIAL TRANSACTION +16:19:58 Slot [350] | NOT FINANCIAL TRANSACTION +16:19:59 +Slot[337] 0200 300000 6688990103264808 ------------- 00 796853 000000000000 507903499582060022006688990103264808 507903499582 839834 621354 S +16:20:09 Slot [346] | NOT FINANCIAL TRANSACTION +16:20:12 +Slot[357] 0200 012000 6213545000960868 ------------- 51 270356 000020000000 5079092703560301LPBX6213545000960868 507909270356 347091 180893 S +16:20:15 +Slot[319] 0200 012000 6213543000155886 ------------- 00 189031 000010000000 507900084369010008006213543000155886 507900084369 286554 220699 S +16:20:17 Slot [332] | NOT FINANCIAL TRANSACTION +16:20:19 Slot [365] | NOT FINANCIAL TRANSACTION +16:20:20 +Slot[330] 0200 011000 1888880000030916 ------------- 00 796943 000002000000 507904755476070011001888880000030916 507904755476 501082 621354 S +16:20:20 Slot [356] | NOT FINANCIAL TRANSACTION +16:20:27 +Slot[371] 0200 010000 6688990040130823 ------------- 00 796983 000010000000 507904377316030036006688990040130823 507904377316 320203 621354 S +16:20:31 +Slot[343] 0200 010000 6213544002247754 ------------- 00 951504 000005000000 507902161262030200266213544002247754 507902161262 991028 668899 S +16:20:32 Slot [366] | NOT FINANCIAL TRANSACTION +16:20:45 +Slot[313] 0200 300000 6213548000177632 ------------- 00 951511 000000000000 507902678766030200356213548000177632 507902678766 344107 668899 S +16:20:46 Slot [345] | NOT FINANCIAL TRANSACTION +16:20:56 Slot [378] | NOT FINANCIAL TRANSACTION +16:21:04 +Slot[373] 0200 010000 6213541000537244 ------------- 00 107272 000020000000 507900327866010018006213541000537244 507900327866 389230 220699 S +16:21:06 Slot [340] | NOT FINANCIAL TRANSACTION +16:21:10 +Slot[353] 0200 011000 6688990105247207 ------------- 00 797176 000100000000 507904719774180010006688990105247207 507904719774 425283 621354 S +16:21:14 +Slot[324] 0200 010000 6688990103264808 ------------- 00 797196 000030000000 507903499584060022006688990103264808 507903499584 960276 621354 S +16:21:15 +Slot[382] 0200 010000 6213545000960868 ------------- 51 270361 000010000000 5079092703610301LPBX6213545000960868 507909270361 762883 180893 S +16:21:19 Slot [363] | NOT FINANCIAL TRANSACTION +16:21:20 +Slot[355] 0200 300000 6213543000129857 ------------- 00 951526 000000000000 507900285837030100056213543000129857 507900285837 700894 668899 S +16:21:22 Slot [344] | NOT FINANCIAL TRANSACTION +16:21:24 Slot [370] | NOT FINANCIAL TRANSACTION +16:21:28 Slot [358] | NOT FINANCIAL TRANSACTION +16:21:43 Slot [379] | NOT FINANCIAL TRANSACTION +16:21:50 +Slot[369] 0200 301000 6688990108430107 ------------- 00 797388 000000000000 507903743391060024006688990108430107 507903743391 278613 621354 S +16:21:54 +Slot[360] 0200 010000 6213543000129857 ------------- 00 951540 000030000000 507900285838030100056213543000129857 507900285838 116431 668899 S +16:21:58 Slot [338] | NOT FINANCIAL TRANSACTION +16:22:03 +Slot[354] 0200 010000 6213545000292940 ------------- 00 270368 000010000000 5079092703680261PSL16213545000292940 507909270368 624955 180893 S +16:22:15 Slot [396] | NOT FINANCIAL TRANSACTION +16:22:20 +Slot[390] 0200 010000 6213544002242748 ------------- 75 951555 000080000000 507900577944030140056213544002242748 507900577944 180607 668899 S +16:22:21 Slot [374] | NOT FINANCIAL TRANSACTION +16:22:25 +Slot[389] 0200 010000 6688990060000237 ------------- 00 797553 000100000000 507903499586060022006688990060000237 507903499586 419919 621354 S +16:22:26 +Slot[351] 0200 011000 1808931700025644 ------------- 00 797534 000020000000 507904755478070011001808931700025644 507904755478 184020 621354 S +16:22:29 Slot [361] | NOT FINANCIAL TRANSACTION +16:22:30 Slot [376] | NOT FINANCIAL TRANSACTION +16:22:31 +Slot[359] 0200 011000 6688990105247207 ------------- 00 797583 000100000000 507904719776180010006688990105247207 507904719776 203743 621354 S +16:22:40 Slot [383] | NOT FINANCIAL TRANSACTION +16:22:56 Slot [410] | NOT FINANCIAL TRANSACTION +16:23:05 +Slot[393] 0200 301000 6213548000206167 ------------- 00 270372 032009220827 5079092703720522XYXH6213548000206167 507909270372 034163 180893 S +16:23:09 +Slot[400] 0200 010000 6213544002242748 ------------- 75 951577 000010000000 507900577946030140056213544002242748 507900577946 603185 668899 S +16:23:17 Slot [397] | NOT FINANCIAL TRANSACTION +16:23:19 +Slot[395] 0200 010000 6688990060026844 ------------- 61 270376 000200000000 5079092703760369SLVL6688990060026844 507909270376 156065 180893 S +16:23:23 Slot [414] | NOT FINANCIAL TRANSACTION +16:23:25 +Slot[413] 0200 011000 6213544001525309 ------------- 00 208633 000045000000 507916208633195290016213544001525309 507916208633 844718 198901 S +16:23:28 Slot [349] | NOT FINANCIAL TRANSACTION +16:23:34 +Slot[394] 0200 300000 6688990103265300 ------------- 00 797892 000000000000 507903499587060022006688990103265300 507903499587 880984 621354 S +16:23:34 Slot [418] | NOT FINANCIAL TRANSACTION +16:23:35 +Slot[399] 0200 010000 6688990040163766 ------------- 62 797914 000080000000 507904645150170009006688990040163766 507904645150 555469 621354 S +16:23:39 Slot [372] | NOT FINANCIAL TRANSACTION +16:23:42 +Slot[387] 0200 301000 6688990105247207 ------------- 00 797956 000000000000 507904719777180010006688990105247207 507904719777 665678 621354 S +16:23:46 +Slot[368] 0200 012000 6688990105388100 ------------- 55 797982 000010000000 507904795748070015006688990105388100 507904795748 473976 621354 S +16:23:54 Slot [406] | NOT FINANCIAL TRANSACTION +16:23:54 +Slot[419] 0200 010000 6688990108430107 ------------- 00 798011 000100000000 507903743393060024006688990108430107 507903743393 052376 621354 S +16:24:05 Slot [380] | NOT FINANCIAL TRANSACTION +16:24:07 +Slot[411] 0200 300000 6213545001047244 ------------- 00 951613 000000000000 507900270989030100046213545001047244 507900270989 774087 668899 S +16:24:11 +Slot[407] 0200 010000 6213548000206167 ------------- 51 270382 000050000000 5079092703820522XYXH6213548000206167 507909270382 700492 180893 S +16:24:19 +Slot[384] 0200 011000 6688990106297706 ------------- 00 798114 000010000000 507904755480070011006688990106297706 507904755480 592735 621354 S +16:24:22 +Slot[416] 0200 301000 6213544001370235 ------------- 00 270383 032009232227 5079092703830261PSL16213544001370235 507909270383 607498 180893 S +16:24:24 +Slot[401] 0200 012000 6688990103551105 ------------- 00 798142 000020000000 507903345208130014006688990103551105 507903345208 105570 621354 S +16:24:25 Slot [381] | NOT FINANCIAL TRANSACTION +16:24:33 Slot [420] | NOT FINANCIAL TRANSACTION +16:24:38 +Slot[415] 0200 010000 6213544002242748 ------------- 75 951636 000010000000 507900577948030140056213544002242748 507900577948 043750 668899 S +16:24:39 Slot [433] | NOT FINANCIAL TRANSACTION +16:24:40 +Slot[398] 0200 010000 6213544000813383 ------------- 00 270386 000050000000 5079092703860401XSBR6213544000813383 507909270386 770618 180893 S +16:24:47 +Slot[425] 0200 011000 6213544002250923 ------------- 00 208656 000050000000 507916208656195290016213544002250923 507916208656 049313 198901 S +16:24:48 +Slot[364] 0200 011000 6688990105247207 ------------- 65 798282 000070000000 507904719779180010006688990105247207 507904719779 970642 621354 S +16:24:49 Slot [388] | NOT FINANCIAL TRANSACTION +16:24:55 Slot [409] | NOT FINANCIAL TRANSACTION +16:24:59 +Slot[430] 0200 011000 6688990105039802 ------------- 00 208661 000100000000 507916208661015290316688990105039802 507916208661 619415 198901 S +16:25:00 Slot [367] | NOT FINANCIAL TRANSACTION +16:25:09 +Slot[441] 0200 010000 6213548000206167 ------------- 51 270391 000050000000 5079092703910522XYXH6213548000206167 507909270391 556195 180893 S +16:25:14 +Slot[437] 0200 010000 6213544001370235 ------------- 00 270392 000050000000 5079092703920261PSL16213544001370235 507909270392 161059 180893 S +16:25:19 +Slot[403] 0200 010000 6688990040163766 ------------- 62 798453 000080000000 507904645152170009006688990040163766 507904645152 860749 621354 S +16:25:25 Slot [362] | NOT FINANCIAL TRANSACTION +16:25:27 Slot [402] | NOT FINANCIAL TRANSACTION +16:25:35 +Slot[392] 0200 011000 6688990105039802 ------------- 00 208669 000100000000 507916208669015290316688990105039802 507916208669 510337 198901 S +16:25:36 Slot [375] | NOT FINANCIAL TRANSACTION +16:25:37 +Slot[408] 0200 010000 6688990108430107 ------------- 00 798537 000100000000 507903743397060024006688990108430107 507903743397 397506 621354 S +16:25:38 +Slot[385] 0200 301000 6688990105247207 ------------- 00 798544 000000000000 507904719780180010006688990105247207 507904719780 003230 621354 S +16:25:45 Slot [450] | NOT FINANCIAL TRANSACTION +16:25:47 Slot [417] | NOT FINANCIAL TRANSACTION +16:25:53 +Slot[412] 0200 011000 6213544002158688 ------------- 00 208676 000050000000 507916208676195290016213544002158688 507916208676 500068 198901 S +16:25:55 +Slot[447] 0200 010000 6213548000206167 ------------- 51 270398 000050000000 5079092703980522XYXH6213548000206167 507909270398 653580 180893 S +16:26:02 +Slot[391] 0200 010000 6213544002242722 ------------- 55 951662 000010000000 507900577950030140056213544002242722 507900577950 644384 668899 S +16:26:05 +Slot[443] 0200 010000 6213541000565989 ------------- 00 270402 000100000000 5079092704020361BLTB6213541000565989 507909270402 160162 180893 S +16:26:06 +Slot[405] 0200 010000 6688990060000237 ------------- 00 798728 000050000000 507903499591060022006688990060000237 507903499591 725606 621354 S +16:26:14 +Slot[429] 0200 011000 6213545000951057 ------------- 00 223755 000010000000 507900118780010011006213545000951057 507900118780 970089 220699 S +16:26:16 +Slot[386] 0200 011000 6688990105039802 ------------- 00 208683 000100000000 507916208683015290316688990105039802 507916208683 452845 198901 S +16:26:17 +Slot[377] 0200 011000 1808931100003464 ------------- 00 798768 000040000000 507904599767020022001808931100003464 507904599767 185268 621354 S +16:26:19 +Slot[446] 0200 011000 6688990106755505 ------------- 00 798794 000030000000 507904450301150007006688990106755505 507904450301 862953 621354 S +16:26:22 Slot [404] | NOT FINANCIAL TRANSACTION +16:26:23 +Slot[456] 0200 011000 6688990105247207 ------------- 65 798825 000070000000 507904719782180010006688990105247207 507904719782 939215 621354 S +16:26:25 Slot [434] | NOT FINANCIAL TRANSACTION +16:26:27 +Slot[424] 0200 010000 6688990602440909 ------------- 00 798833 000100000000 507903345213130014006688990602440909 507903345213 193186 621354 S +16:26:28 +Slot[445] 0200 300000 6213545001047244 ------------- 00 951671 000000000000 507900270993030100046213545001047244 507900270993 857556 668899 S +16:26:29 Slot [438] | NOT FINANCIAL TRANSACTION +16:26:38 +Slot[442] 0200 010000 6213548000206167 ------------- 51 270409 000049000000 5079092704090522XYXH6213548000206167 507909270409 496598 180893 S +16:26:40 +Slot[435] 0200 010000 6688990108430107 ------------- 00 798897 000080000000 507903743399060024006688990108430107 507903743399 279562 621354 S +16:26:50 Slot [427] | NOT FINANCIAL TRANSACTION +16:26:50 Slot [462] | NOT FINANCIAL TRANSACTION +16:26:51 +Slot[428] 0200 011000 6688990105039802 ------------- 00 208686 000100000000 507916208686015290316688990105039802 507916208686 283377 198901 S +16:26:55 +Slot[431] 0200 010000 6688990103249205 ------------- 61 270413 000150000000 5079092704130369SLVL6688990103249205 507909270413 469273 180893 S +16:26:56 +Slot[421] 0200 011000 6213544000546975 ------------- 00 270414 000010000000 5079092704140112CPBR6213544000546975 507909270414 588417 180893 S +16:26:59 Slot [422] | NOT FINANCIAL TRANSACTION +16:27:02 +Slot[451] 0200 010000 6213544002242748 ------------- 75 951682 000010000000 507900577952030140056213544002242748 507900577952 295177 668899 S +16:27:06 Slot [465] | NOT FINANCIAL TRANSACTION +16:27:07 +Slot[457] 0200 010000 6213545001047244 ------------- 00 951684 000100000000 507900270995030100046213545001047244 507900270995 599778 668899 S +16:27:10 +Slot[426] 0200 012000 6213545001105547 ------------- 00 270418 000020000000 5079092704180366SKTT6213545001105547 507909270418 826062 180893 S +16:27:12 +Slot[444] 0200 010000 6688990103265300 ------------- 00 799076 000100000000 507903499593060022006688990103265300 507903499593 258009 621354 S +16:27:16 +Slot[436] 0200 011000 6688990050006624 ------------- 00 799100 000100000000 507904719784180010006688990050006624 507904719784 237063 621354 S +16:27:22 +Slot[423] 0200 012000 6688990101497509 ------------- 00 799117 000030000000 507904645154170009006688990101497509 507904645154 599316 621354 S +16:27:24 +Slot[458] 0200 302000 6213543000092501 ------------- 00 270420 032009262527 5079092704200114XKBR6213543000092501 507909270420 614512 180893 S +16:27:30 +Slot[439] 0200 301000 6213548000206167 ------------- 00 270425 032009263127 5079092704250522XYXH6213548000206167 507909270425 069722 180893 S +16:27:31 Slot [452] | NOT FINANCIAL TRANSACTION +16:27:31 +Slot[459] 0200 010000 6213541000314255 ------------- 00 270427 000100000000 5079092704270482XKMO6213541000314255 507909270427 592905 180893 S +16:27:33 +Slot[468] 0200 010000 6688990103249205 ------------- 14 270430 000100000000 5079092704300369SLVL6688990103249205 507909270430 791318 180893 S +16:27:35 +Slot[455] 0200 012000 6213541000565989 ------------- 00 270429 000030000000 5079092704290361BLTB6213541000565989 507909270429 684193 180893 S +16:27:37 +Slot[466] 0200 010000 6688990108430107 ------------- 00 799196 000010000000 507903743401060024006688990108430107 507903743401 961332 621354 S +16:27:38 +Slot[475] 0200 011000 6688990105039802 ------------- 00 208693 000013000000 507916208693015290316688990105039802 507916208693 485525 198901 S +16:27:41 +Slot[440] 0200 011000 6213544002113220 ------------- 00 208694 000055000000 507916208694195290016213544002113220 507916208694 685390 198901 S +16:27:44 +Slot[460] 0200 010000 6688990603038702 ------------- 00 799237 000020000000 507902606252050043006688990603038702 507902606252 174699 621354 S +16:27:48 Slot [432] | NOT FINANCIAL TRANSACTION +16:27:54 +Slot[495] 0200 010000 6688990040112748 ------------- 14 270436 000100000000 5079092704360221XKKM6688990040112748 507909270436 387188 180893 S +16:27:55 Slot [449] | NOT FINANCIAL TRANSACTION +16:28:04 Slot [482] | NOT FINANCIAL TRANSACTION +16:28:13 +Slot[488] 0200 010000 6213541000314255 ------------- 00 270440 000100000000 5079092704400482XKMO6213541000314255 507909270440 373476 180893 S +16:28:18 +Slot[453] 0200 301000 6688990050006624 ------------- 00 799392 000000000000 507904719785180010006688990050006624 507904719785 119287 621354 S +16:28:21 +Slot[470] 0200 011000 1808931800005819 ------------- 51 799394 000050000000 507904635870170008001808931800005819 507904635870 155671 621354 S +16:28:23 +Slot[484] 0200 011000 6213548000206167 ------------- 00 270443 000040000000 5079092704430522XYXH6213548000206167 507909270443 435217 180893 S +16:28:30 +Slot[463] 0200 010000 6688990103638704 ------------- 00 799434 000100000000 507903743403060024006688990103638704 507903743403 440757 621354 S +16:28:33 Slot [480] | NOT FINANCIAL TRANSACTION +16:28:35 +Slot[490] 0200 010000 6213543000092501 ------------- 00 270446 000010000000 5079092704460114XKBR6213543000092501 507909270446 495939 180893 S +16:28:40 +Slot[448] 0200 011000 6213544002113261 ------------- 00 208706 000040000000 507916208706195290016213544002113261 507916208706 517600 198901 S +16:28:46 Slot [471] | NOT FINANCIAL TRANSACTION +16:28:49 +Slot[0] 0200 010000 6213541000314255 ------------- 00 270450 000100000000 5079092704500482XKMO6213541000314255 507909270450 868969 180893 S +16:29:00 Slot [493] | NOT FINANCIAL TRANSACTION +16:29:05 +Slot[479] 0200 300000 1808931800005819 ------------- 00 799588 000000000000 507904635871170008001808931800005819 507904635871 307243 621354 S +16:29:07 +Slot[4] 0200 011000 6688990050006624 ------------- 00 799616 000030000000 507904719787180010006688990050006624 507904719787 027300 621354 S +16:29:09 +Slot[2] 0200 300000 6688990108429802 ------------- 00 799612 000000000000 507903499597060022006688990108429802 507903499597 945867 621354 S +16:29:10 +Slot[1] 0200 010000 6213544002210885 ------------- 00 951741 000020000000 507902415463030010116213544002210885 507902415463 967601 668899 S +16:29:12 +Slot[498] 0200 302000 1808930800007049 ------------- 42 799639 000000000000 507903278924120027001808930800007049 507903278924 989342 621354 S +16:29:16 +Slot[473] 0200 302000 6213544001276697 ------------- 00 951748 000000000000 507901584494039150016213544001276697 507901584494 626624 668899 S +16:29:23 Slot [476] | NOT FINANCIAL TRANSACTION +16:29:24 +Slot[477] 0200 010000 6688990103638704 ------------- 00 799692 000100000000 507903743405060024006688990103638704 507903743405 158385 621354 S +16:29:29 +Slot[489] 0200 301000 6688990103062202 ------------- 75 799713 000000000000 507902577821050040006688990103062202 507902577821 353527 621354 S +16:29:35 Slot [483] | NOT FINANCIAL TRANSACTION +16:29:36 Slot [485] | NOT FINANCIAL TRANSACTION +16:29:40 +Slot[486] 0200 011000 6213544001690640 ------------- 00 208722 000055000000 507916208722195290016213544001690640 507916208722 028705 198901 S +16:29:48 +Slot[14] 0200 301000 6688990040112748 ------------- 14 270459 032009284927 5079092704590221XKKM6688990040112748 507909270459 857025 180893 S +16:29:53 +Slot[474] 0200 010000 6213544001276697 ------------- 00 951767 000100000000 507901584495039150016213544001276697 507901584495 794791 668899 S +16:29:55 Slot [472] | NOT FINANCIAL TRANSACTION +16:29:58 Slot [6] | NOT FINANCIAL TRANSACTION +16:30:05 Slot [16] | NOT FINANCIAL TRANSACTION +16:30:09 Slot [13] | NOT FINANCIAL TRANSACTION +16:30:11 +Slot[492] 0200 010000 6688990103638704 ------------- 51 799869 000100000000 507903743407060024006688990103638704 507903743407 991702 621354 S +16:30:12 +Slot[454] 0200 301000 6213544002242748 ------------- 75 951779 000000000000 507900577956030140056213544002242748 507900577956 436048 668899 S +16:30:19 Slot [22] | NOT FINANCIAL TRANSACTION +16:30:22 +Slot[12] 0200 011000 6213545001030927 ------------- 00 242348 000030000000 507900341591010020006213545001030927 507900341591 157595 220699 S +16:30:27 +Slot[469] 0200 301000 6213543000141910 ------------- 00 270465 032009292927 5079092704650102SAPA6213543000141910 507909270465 030422 180893 S +16:30:29 +Slot[17] 0200 011000 6688990103062202 ------------- 75 799957 000040000000 507902577823050040006688990103062202 507902577823 628504 621354 S +16:30:31 +Slot[491] 0200 010000 6688990103282008 ------------- 00 799967 000100000000 507903499599060022006688990103282008 507903499599 102963 621354 S +16:30:33 +Slot[494] 0200 010000 1808931800005819 ------------- 51 799962 000050000000 507904635873170008001808931800005819 507904635873 476602 621354 S +16:30:35 +Slot[10] 0200 301000 6688990103084008 ------------- 00 799986 000000000000 507904719788180010006688990103084008 507904719788 374236 621354 S +16:30:37 Slot [29] | NOT FINANCIAL TRANSACTION +16:30:37 +Slot[499] 0200 011000 6213544001572319 ------------- 00 208737 000050000000 507916208737195290016213544001572319 507916208737 450724 198901 S +16:30:41 Slot [23] | NOT FINANCIAL TRANSACTION +16:30:42 +Slot[481] 0200 300000 6213544002242748 ------------- 75 951793 000000000000 507900577958030140056213544002242748 507900577958 583824 668899 S +16:30:44 +Slot[31] 0200 301000 6213545000334247 ------------- 00 270467 032009294727 5079092704670161HQBR6213545000334247 507909270467 522583 180893 S +16:30:56 Slot [35] | NOT FINANCIAL TRANSACTION +16:31:00 +Slot[3] 0200 010000 6688990103638704 ------------- 00 800091 000030000000 507903743409060024006688990103638704 507903743409 061751 621354 S +16:31:09 +Slot[11] 0200 301000 6213545001031917 ------------- 00 270468 032009300827 5079092704680243VTKS6213545001031917 507909270468 379891 180893 S +16:31:10 Slot [33] | NOT FINANCIAL TRANSACTION +16:31:18 Slot [496] | NOT FINANCIAL TRANSACTION +16:31:19 Slot [30] | NOT FINANCIAL TRANSACTION +16:31:22 Slot [461] | NOT FINANCIAL TRANSACTION +16:31:23 +Slot[21] 0200 011000 6688990103084008 ------------- 00 800209 000100000000 507904719790180010006688990103084008 507904719790 271634 621354 S +16:31:25 +Slot[37] 0200 010000 6213545000334247 ------------- 00 270473 000100000000 5079092704730161HQBR6213545000334247 507909270473 711152 180893 S +16:31:27 +Slot[9] 0200 301000 6213544001572319 ------------- 00 208751 000000000000 507916208751195290016213544001572319 507916208751 844071 198901 S +16:31:34 +Slot[45] 0200 300000 6688990103282008 ------------- 00 800256 000000000000 507903499600060022006688990103282008 507903499600 582055 621354 S +16:31:35 +Slot[36] 0200 011000 1808931800005819 ------------- 00 800253 000020000000 507904635875170008001808931800005819 507904635875 763827 621354 S +16:31:39 Slot [18] | NOT FINANCIAL TRANSACTION +16:31:39 Slot [497] | NOT FINANCIAL TRANSACTION +16:31:48 +Slot[40] 0200 011000 6213545001031917 ------------- 00 270477 000015000000 5079092704770243VTKS6213545001031917 507909270477 789911 180893 S +16:32:01 Slot [8] | NOT FINANCIAL TRANSACTION +16:32:08 +Slot[28] 0200 010000 6688990102217500 ------------- 14 270483 000050000000 5079092704830261PSL16688990102217500 507909270483 492747 180893 S +16:32:15 Slot [43] | NOT FINANCIAL TRANSACTION +16:32:16 +Slot[467] 0200 011000 6213544001572319 ------------- 51 208753 000005000000 507916208753195290016213544001572319 507916208753 566685 198901 S +16:32:19 Slot [52] | NOT FINANCIAL TRANSACTION +16:32:22 +Slot[7] 0200 010000 6688990103282008 ------------- 00 800477 000100000000 507903499602060022006688990103282008 507903499602 494733 621354 S +16:32:29 Slot [55] | NOT FINANCIAL TRANSACTION +16:32:34 +Slot[25] 0200 011000 6688990103084008 ------------- 00 800524 000100000000 507904719792180010006688990103084008 507904719792 589593 621354 S +16:32:36 +Slot[50] 0200 011000 6213545000334247 ------------- 00 270485 000080000000 5079092704850161HQBR6213545000334247 507909270485 864996 180893 S +16:32:41 Slot [61] | NOT FINANCIAL TRANSACTION +16:32:52 Slot [44] | NOT FINANCIAL TRANSACTION +16:33:05 +Slot[60] 0200 011000 6213544002113055 ------------- 00 208762 000050000000 507916208762195290016213544002113055 507916208762 237356 198901 S +16:33:06 +Slot[478] 0200 010000 1808931800005819 ------------- 51 800646 000040000000 507904635877170008001808931800005819 507904635877 082441 621354 S +16:33:14 Slot [15] | NOT FINANCIAL TRANSACTION +16:33:20 +Slot[63] 0200 011000 6213545000803498 ------------- 00 208765 000010000000 507916208765015290316213545000803498 507916208765 969791 198901 S +16:33:20 Slot [38] | NOT FINANCIAL TRANSACTION +16:33:22 +Slot[68] 0200 010000 6688990102217500 ------------- 14 270493 000010000000 5079092704930261PSL16688990102217500 507909270493 662520 180893 S +16:33:25 +Slot[73] 0200 010000 6213544002113246 ------------- 00 951882 000047000000 507902025602034140026213544002113246 507902025602 528441 668899 S +16:33:26 +Slot[41] 0200 010000 6688990103265300 ------------- 00 800770 000100000000 507903499604060022006688990103265300 507903499604 759404 621354 S +16:33:27 +Slot[464] 0200 012000 6688990602685206 ------------- 14 270495 000020000000 5079092704950369SLVL6688990602685206 507909270495 257052 180893 S +16:33:39 +Slot[32] 0200 010000 6213543000129998 ------------- 51 951888 000100000000 507902565295030010146213543000129998 507902565295 589220 668899 S +16:33:41 Slot [487] | NOT FINANCIAL TRANSACTION +16:33:43 +Slot[26] 0200 011000 6688990103084008 ------------- 00 800844 000070000000 507904719794180010006688990103084008 507904719794 309309 621354 S +16:33:43 Slot [20] | NOT FINANCIAL TRANSACTION +16:33:55 +Slot[48] 0200 010000 6688990602557702 ------------- 00 800892 000005000000 507902546930050037006688990602557702 507902546930 214388 621354 S +16:33:57 +Slot[46] 0200 011000 6213541000430515 ------------- 00 240859 000070000000 507900410449080003006213541000430515 507900410449 947015 220699 S +16:33:59 +Slot[69] 0200 011000 1808931800005819 ------------- 51 800884 000020000000 507904635879170008001808931800005819 507904635879 031645 621354 S +16:33:59 +Slot[27] 0200 010000 6213543000129998 ------------- 00 951902 000010000000 507902565296030010146213543000129998 507902565296 714540 668899 S +16:34:02 Slot [19] | NOT FINANCIAL TRANSACTION +16:34:10 +Slot[47] 0200 010000 6213544000252756 ------------- 00 270503 000050000000 5079092705030463LNTN6213544000252756 507909270503 648646 180893 S +16:34:18 Slot [54] | NOT FINANCIAL TRANSACTION +16:34:25 Slot [78] | NOT FINANCIAL TRANSACTION +16:34:31 +Slot[57] 0200 011000 6213544001960852 ------------- 00 208782 000025000000 507916208782195290016213544001960852 507916208782 132728 198901 S +16:34:32 +Slot[24] 0200 010000 6688990106047002 ------------- 00 801063 000100000000 507903499606060022006688990106047002 507903499606 449198 621354 S +16:34:34 +Slot[49] 0200 012000 6688990602685206 ------------- 14 270508 000020000000 5079092705080369SLVL6688990602685206 507909270508 536909 180893 S +16:34:35 +Slot[42] 0200 011000 6213545001053002 ------------- 00 270509 000030000000 5079092705090113SVBR6213545001053002 507909270509 651005 180893 S +16:34:37 +Slot[81] 0200 011000 1808930500006473 ------------- 00 801057 000050000000 507903683895010088001808930500006473 507903683895 379328 621354 S +16:34:45 Slot [34] | NOT FINANCIAL TRANSACTION +16:34:45 Slot [88] | NOT FINANCIAL TRANSACTION +16:34:55 Slot [89] | NOT FINANCIAL TRANSACTION +16:34:57 +Slot[86] 0200 310000 6213545000819841 ------------- 00 251293 000000000000 507900336252010019006213545000819841 507900336252 658433 220699 S +16:35:01 Slot [59] | NOT FINANCIAL TRANSACTION +16:35:03 +Slot[79] 0200 010000 6213544002113493 ------------- 00 951932 000044000000 507902025604034140026213544002113493 507902025604 539492 668899 S +16:35:15 +Slot[84] 0200 011000 6213544001571881 ------------- 00 208794 000050000000 507916208794195290016213544001571881 507916208794 840473 198901 S +16:35:20 +Slot[5] 0200 010000 1808930200022523 ------------- 00 951940 000049000000 507901541746030200161808930200022523 507901541746 165469 668899 S +16:35:22 Slot [67] | NOT FINANCIAL TRANSACTION +16:35:30 Slot [58] | NOT FINANCIAL TRANSACTION +16:35:32 +Slot[62] 0200 011000 6213541000306210 ------------- 00 208799 000100000000 507916208799015290186213541000306210 507916208799 044540 198901 S +16:35:33 Slot [93] | NOT FINANCIAL TRANSACTION +16:35:37 +Slot[39] 0200 010000 2206990000064295 ------------- 00 801338 000050000000 507903975662010113002206990000064295 507903975662 890190 621354 S +16:35:39 +Slot[82] 0200 010000 6688990106047002 ------------- 00 801351 000100000000 507903499608060022006688990106047002 507903499608 153521 621354 S +16:35:39 +Slot[56] 0200 010000 6688990040131631 ------------- 14 270515 000010000000 5079092705150283XYPL6688990040131631 507909270515 326909 180893 S +16:35:40 +Slot[51] 0200 311000 6213545000734214 ------------- 00 240862 000000000000 507900410451080003006213545000734214 507900410451 081679 220699 S +16:35:47 Slot [99] | NOT FINANCIAL TRANSACTION +16:35:48 Slot [91] | NOT FINANCIAL TRANSACTION +16:35:58 Slot [64] | NOT FINANCIAL TRANSACTION +16:36:05 +Slot[100] 0200 010000 6213545001067325 ------------- 00 270518 000050000000 5079092705180366SKTT6213545001067325 507909270518 312106 180893 S +16:36:06 +Slot[65] 0200 011000 6213544002158878 ------------- 55 208809 000020000000 507916208809195290016213544002158878 507916208809 316577 198901 S +16:36:14 Slot [72] | NOT FINANCIAL TRANSACTION +16:36:22 +Slot[76] 0200 010000 6213545000624910 ------------- 61 270523 000200000000 5079092705230109SKTB6213545000624910 507909270523 118351 180893 S +16:36:22 Slot [90] | NOT FINANCIAL TRANSACTION +16:36:30 Slot [106] | NOT FINANCIAL TRANSACTION +16:36:35 Slot [114] | NOT FINANCIAL TRANSACTION +16:36:40 +Slot[66] 0200 301000 6688990040131631 ------------- 14 270525 032009354227 5079092705250283XYPL6688990040131631 507909270525 302592 180893 S +16:36:42 +Slot[118] 0200 011000 6213544002158878 ------------- 00 208815 000020000000 507916208815195290016213544002158878 507916208815 116290 198901 S +16:36:46 +Slot[83] 0200 010000 6688990030010944 ------------- 14 270526 000100000000 5079092705260523XYNG6688990030010944 507909270526 875843 180893 S +16:36:49 Slot [107] | NOT FINANCIAL TRANSACTION +16:36:50 +Slot[121] 0200 010000 6213545000624910 ------------- 00 270528 000100000000 5079092705280109SKTB6213545000624910 507909270528 136833 180893 S +16:36:59 +Slot[74] 0200 311000 6213545000734214 ------------- 00 240865 000000000000 507900410453080003006213545000734214 507900410453 501325 220699 S +16:37:02 Slot [92] | NOT FINANCIAL TRANSACTION +16:37:06 +Slot[115] 0200 301000 6688990108424209 ------------- 00 801751 000000000000 507903499609060022006688990108424209 507903499609 047007 621354 S +16:37:09 +Slot[113] 0200 011000 6688990106119306 ------------- 00 801775 000010000000 507904755493070011006688990106119306 507904755493 195881 621354 S +16:37:17 Slot [108] | NOT FINANCIAL TRANSACTION +16:37:29 Slot [98] | NOT FINANCIAL TRANSACTION +16:37:29 +Slot[127] 0200 010000 6688990040139667 ------------- 14 270535 000050000000 5079092705350321LNTV6688990040139667 507909270535 587695 180893 S +16:37:31 +Slot[75] 0200 010000 6213544001690632 ------------- 00 952014 000040000000 507902025607034140026213544001690632 507902025607 670635 668899 S +16:37:33 +Slot[95] 0200 011000 6213545000734214 ------------- 00 240866 000010000000 507900410454080003006213545000734214 507900410454 545473 220699 S +16:37:38 +Slot[53] 0200 010000 6213545000624910 ------------- 00 270537 000050000000 5079092705370109SKTB6213545000624910 507909270537 348699 180893 S +16:37:39 +Slot[94] 0200 010000 1999990000002975 ------------- 51 952015 000080000000 507902623501030030061999990000002975 507902623501 952466 668899 S +16:37:40 Slot [134] | NOT FINANCIAL TRANSACTION +16:37:45 Slot [125] | NOT FINANCIAL TRANSACTION +16:37:51 Slot [96] | NOT FINANCIAL TRANSACTION +16:37:53 +Slot[103] 0200 300000 1808931400007850 ------------- 00 801964 000000000000 507904719795180010001808931400007850 507904719795 169071 621354 S +16:38:00 Slot [101] | NOT FINANCIAL TRANSACTION +16:38:00 +Slot[70] 0200 010000 1999990000002975 ------------- 51 952023 000070000000 507902623502030030061999990000002975 507902623502 941896 668899 S +16:38:10 Slot [109] | NOT FINANCIAL TRANSACTION +16:38:11 +Slot[77] 0200 011000 6213544002251244 ------------- 00 208829 000045000000 507916208829195290016213544002251244 507916208829 800457 198901 S +16:38:13 +Slot[102] 0200 010000 6688990040139667 ------------- 14 270545 000050000000 5079092705450321LNTV6688990040139667 507909270545 378769 180893 S +16:38:22 +Slot[71] 0200 300000 6688990103639900 ------------- 00 802094 000000000000 507903499610060022006688990103639900 507903499610 163504 621354 S +16:38:23 +Slot[136] 0200 010000 1999990000002975 ------------- 51 952040 000050000000 507902623503030030061999990000002975 507902623503 504393 668899 S +16:38:26 Slot [85] | NOT FINANCIAL TRANSACTION +16:38:38 +Slot[87] 0200 300000 1808931400007850 ------------- 00 802169 000000000000 507904719796180010001808931400007850 507904719796 642634 621354 S +16:38:39 +Slot[129] 0200 010000 6688990030010944 ------------- 61 270551 000200000000 5079092705510523XYNG6688990030010944 507909270551 509935 180893 S +16:38:43 +Slot[105] 0200 010000 1999990000002975 ------------- 51 952051 000070000000 507902623504030030061999990000002975 507902623504 694487 668899 S +16:38:45 Slot [116] | NOT FINANCIAL TRANSACTION +16:38:48 +Slot[131] 0200 010000 6213544002162433 ------------- 00 952055 000052000000 507902025609034140026213544002162433 507902025609 482090 668899 S +16:38:52 Slot [104] | NOT FINANCIAL TRANSACTION +16:38:53 Slot [138] | NOT FINANCIAL TRANSACTION +16:38:58 +Slot[112] 0200 300000 6688990030010936 ------------- 00 802263 000000000000 507903177592040027006688990030010936 507903177592 293179 621354 S +16:39:00 +Slot[97] 0200 301000 6688990602652008 ------------- 00 802270 000000000000 507902606275050043006688990602652008 507902606275 120015 621354 S +16:39:03 Slot [111] | NOT FINANCIAL TRANSACTION +16:39:09 +Slot[140] 0200 010000 1999990000002975 ------------- 00 952061 000030000000 507902623505030030061999990000002975 507902623505 779867 668899 S +16:39:18 Slot [124] | NOT FINANCIAL TRANSACTION +16:39:25 +Slot[123] 0200 300000 1808931400007850 ------------- 00 802380 000000000000 507904719797180010001808931400007850 507904719797 238316 621354 S +16:39:26 +Slot[80] 0200 010000 6688990030010944 ------------- 14 270560 000100000000 5079092705600523XYNG6688990030010944 507909270560 092959 180893 S +16:39:28 +Slot[117] 0200 010000 6688990103639900 ------------- 00 802378 000100000000 507903499612060022006688990103639900 507903499612 121002 621354 S +16:39:34 Slot [147] | NOT FINANCIAL TRANSACTION +16:39:50 Slot [122] | NOT FINANCIAL TRANSACTION +16:39:50 +Slot[161] 0200 010000 6688990040139667 ------------- 14 270564 000050000000 5079092705640321LNTV6688990040139667 507909270564 487213 180893 S +16:39:52 +Slot[162] 0200 011000 6213544002112909 ------------- 00 208862 000020000000 507916208862195290016213544002112909 507916208862 055925 198901 S +16:39:53 +Slot[132] 0200 011000 6688990602652008 ------------- 00 802500 000030000000 507902606277050043006688990602652008 507902606277 041209 621354 S +16:39:55 Slot [145] | NOT FINANCIAL TRANSACTION +16:39:55 Slot [154] | NOT FINANCIAL TRANSACTION +16:39:58 +Slot[143] 0200 010000 6213544001865051 ------------- 00 952080 000054000000 507902025611034140026213544001865051 507902025611 007056 668899 S +16:40:00 Slot [166] | NOT FINANCIAL TRANSACTION +16:40:08 +Slot[120] 0200 010000 6213544001704219 ------------- 51 259307 000030000000 507900040632010004006213544001704219 507900040632 579168 220699 S +16:40:10 +Slot[153] 0200 010000 6213544001368544 ------------- 00 270567 000010000000 5079092705670344SVKV6213544001368544 507909270567 368673 180893 S +16:40:12 +Slot[150] 0200 011000 6213545000190052 ------------- 00 240869 000030000000 507900410456080003006213545000190052 507900410456 372280 220699 S +16:40:15 +Slot[133] 0200 301000 1808930400011938 ------------- 00 208867 000000000000 507916208867008529021808930400011938 507916208867 745631 198901 S +16:40:16 +Slot[158] 0200 010000 1808931400007850 ------------- 51 802573 000050000000 507904719799180010001808931400007850 507904719799 065171 621354 S +16:40:21 Slot [110] | NOT FINANCIAL TRANSACTION +16:40:39 +Slot[159] 0200 011000 1808930400011938 ------------- 00 208875 000100000000 507916208875008529021808930400011938 507916208875 348341 198901 S +16:40:40 +Slot[142] 0200 010000 6688990103639900 ------------- 00 802714 000100000000 507903499614060022006688990103639900 507903499614 149612 621354 S +16:40:41 Slot [167] | NOT FINANCIAL TRANSACTION +16:40:44 +Slot[130] 0200 012000 6213548000001345 ------------- 75 270572 000014000000 5079092705720301LPBX6213548000001345 507909270572 548188 180893 S +16:40:48 +Slot[146] 0200 011000 6213544002180435 ------------- 00 208879 000050000000 507916208879195290016213544002180435 507916208879 784770 198901 S +16:40:55 Slot [157] | NOT FINANCIAL TRANSACTION +16:40:56 +Slot[137] 0200 010000 6213548000425460 ------------- 00 952102 000010000000 507901963676030200196213548000425460 507901963676 235382 668899 S +16:40:57 Slot [128] | NOT FINANCIAL TRANSACTION +16:40:58 Slot [141] | NOT FINANCIAL TRANSACTION +16:40:58 +Slot[175] 0200 010000 6213544001704219 ------------- 00 259310 000025000000 507900040634010004006213544001704219 507900040634 314723 220699 S +16:40:59 +Slot[170] 0200 010000 6213544001960738 ------------- 00 952107 000030000000 507902025613034140026213544001960738 507902025613 576574 668899 S +16:41:01 +Slot[151] 0200 010000 6688990040106997 ------------- 00 802786 000050000000 507903032305120026006688990040106997 507903032305 188731 621354 S +16:41:07 +Slot[172] 0200 011000 6213544001368544 ------------- 00 270574 000020000000 5079092705740344SVKV6213544001368544 507909270574 405184 180893 S +16:41:14 +Slot[171] 0200 011000 6688990040140806 ------------- 00 802847 000005000000 507905200938070017006688990040140806 507905200938 875636 621354 S +16:41:20 Slot [186] | NOT FINANCIAL TRANSACTION +16:41:22 Slot [164] | NOT FINANCIAL TRANSACTION +16:41:31 +Slot[126] 0200 011000 6213541000520216 ------------- 00 270577 000010000000 5079092705770463LNTN6213541000520216 507909270577 453059 180893 S +16:41:37 +Slot[139] 0200 301000 6213544002131305 ------------- 00 208894 000000000000 507916208894195290016213544002131305 507916208894 372724 198901 S +16:41:41 Slot [119] | NOT FINANCIAL TRANSACTION +16:41:44 +Slot[148] 0200 010000 6688990103639900 ------------- 00 802996 000020000000 507903499616060022006688990103639900 507903499616 646462 621354 S +16:41:48 +Slot[202] 0200 010000 6213544000465044 ------------- 51 240435 000062000000 507900360200050003006213544000465044 507900360200 872789 220699 S +16:41:53 Slot [182] | NOT FINANCIAL TRANSACTION +16:41:56 +Slot[176] 0200 301000 6213544002131305 ------------- 00 208896 000000000000 507916208896195290016213544002131305 507916208896 103101 198901 S +16:41:59 Slot [187] | NOT FINANCIAL TRANSACTION +16:42:00 Slot [144] | NOT FINANCIAL TRANSACTION +16:42:03 +Slot[160] 0200 010000 6213544002118070 ------------- 00 952145 000052000000 507902025615034140026213544002118070 507902025615 890359 668899 S +16:42:07 +Slot[163] 0200 310000 6688990040096073 ------------- 14 259313 000000000000 507900040636010004006688990040096073 507900040636 644214 220699 S +16:42:09 Slot [204] | NOT FINANCIAL TRANSACTION +16:42:11 +Slot[203] 0200 010000 6213544001531265 ------------- 61 270581 000200000000 5079092705810344SVKV6213544001531265 507909270581 901741 180893 S +16:42:20 Slot [156] | NOT FINANCIAL TRANSACTION +16:42:30 +Slot[179] 0200 010000 6213544000465044 ------------- 00 240438 000060000000 507900360202050003006213544000465044 507900360202 845285 220699 S +16:42:36 Slot [191] | NOT FINANCIAL TRANSACTION +16:42:51 Slot [192] | NOT FINANCIAL TRANSACTION +16:42:52 +Slot[135] 0200 300000 6213545000699276 ------------- 00 952173 000000000000 507901203937030200126213545000699276 507901203937 710425 668899 S +16:43:01 Slot [190] | NOT FINANCIAL TRANSACTION +16:43:02 Slot [198] | NOT FINANCIAL TRANSACTION +16:43:03 +Slot[152] 0200 011000 6213544002131305 ------------- 00 208906 000050000000 507916208906195290016213544002131305 507916208906 374844 198901 S +16:43:05 Slot [155] | NOT FINANCIAL TRANSACTION +16:43:07 +Slot[196] 0200 010000 6688990103640601 ------------- 00 803411 000100000000 507903499618060022006688990103640601 507903499618 557294 621354 S +16:43:19 Slot [181] | NOT FINANCIAL TRANSACTION +16:43:29 Slot [201] | NOT FINANCIAL TRANSACTION +16:43:40 Slot [214] | NOT FINANCIAL TRANSACTION +16:43:41 +Slot[165] 0200 011000 6688990100962206 ------------- 00 803576 000100000000 507904719801180010006688990100962206 507904719801 886960 621354 S +16:43:46 +Slot[209] 0200 010000 6213544001919676 ------------- 00 240441 000055000000 507900360204050003006213544001919676 507900360204 850359 220699 S +16:43:47 +Slot[195] 0200 010000 6213544002226543 ------------- 00 952208 000052000000 507902025617034140026213544002226543 507902025617 792022 668899 S +16:43:52 +Slot[178] 0200 010000 6213544001531265 ------------- 55 270584 000010000000 5079092705840344SVKV6213544001531265 507909270584 994249 180893 S +16:44:01 Slot [194] | NOT FINANCIAL TRANSACTION +16:44:03 Slot [206] | NOT FINANCIAL TRANSACTION +16:44:05 +Slot[184] 0200 010000 6213544002188289 ------------- 00 952218 000020000000 507901963678030200196213544002188289 507901963678 539283 668899 S +16:44:06 +Slot[212] 0200 011000 6213545000815559 ------------- 00 270587 000020000000 5079092705870262PSLB6213545000815559 507909270587 866747 180893 S +16:44:10 Slot [193] | NOT FINANCIAL TRANSACTION +16:44:17 Slot [207] | NOT FINANCIAL TRANSACTION +16:44:22 +Slot[213] 0200 010000 6688990103640601 ------------- 00 803769 000100000000 507903499620060022006688990103640601 507903499620 065811 621354 S +16:44:24 +Slot[221] 0200 011000 6213544001969556 ------------- 00 208921 000060000000 507916208921195290016213544001969556 507916208921 107062 198901 S +16:44:28 Slot [230] | NOT FINANCIAL TRANSACTION +16:44:38 +Slot[183] 0200 010000 6213544001919676 ------------- 00 240444 000002000000 507900360206050003006213544001919676 507900360206 812535 220699 S +16:44:40 +Slot[169] 0200 011000 6688990100962206 ------------- 51 803859 000100000000 507904719803180010006688990100962206 507904719803 379937 621354 S +16:44:44 Slot [205] | NOT FINANCIAL TRANSACTION +16:44:55 Slot [208] | NOT FINANCIAL TRANSACTION +16:44:57 Slot [211] | NOT FINANCIAL TRANSACTION +16:45:05 Slot [185] | NOT FINANCIAL TRANSACTION +16:45:08 Slot [149] | NOT FINANCIAL TRANSACTION +16:45:12 +Slot[232] 0200 010000 6213544002226436 ------------- 00 952255 000045000000 507902025619034140026213544002226436 507902025619 289651 668899 S +16:45:15 Slot [222] | NOT FINANCIAL TRANSACTION +16:45:16 +Slot[189] 0200 010000 6213544001531265 ------------- 00 270592 000010000000 5079092705920344SVKV6213544001531265 507909270592 098604 180893 S +16:45:18 +Slot[168] 0200 012000 6213545000325492 ------------- 00 270593 000018000000 5079092705930401XSBR6213545000325492 507909270593 521079 180893 S +16:45:24 +Slot[180] 0200 010000 6688990103640601 ------------- 00 804088 000100000000 507903499622060022006688990103640601 507903499622 579912 621354 S +16:45:27 Slot [229] | NOT FINANCIAL TRANSACTION +16:45:35 +Slot[174] 0200 010000 6213544002157342 ------------- 00 240447 000036000000 507900360208050003006213544002157342 507900360208 062238 220699 S +16:45:38 +Slot[173] 0200 011000 6213544002251558 ------------- 00 208945 000055000000 507916208945195290016213544002251558 507916208945 652081 198901 S +16:45:39 +Slot[246] 0200 010000 6213541000711898 ------------- 00 251311 000020000000 507900336264010019006213541000711898 507900336264 927783 220699 S +16:45:41 +Slot[188] 0200 011000 6213544001657805 ------------- 00 208947 000010000000 507916208947015290186213544001657805 507916208947 009923 198901 S +16:45:42 +Slot[223] 0200 010000 6213545000670681 ------------- 00 952272 000020000000 507901203939030200126213545000670681 507901203939 113050 668899 S +16:45:44 +Slot[235] 0200 012000 1808931800013086 ------------- 42 804175 000002000000 507904635908170008001808931800013086 507904635908 117859 621354 S +16:45:54 +Slot[215] 0200 010000 6213548000567576 ------------- 51 952280 000070000000 507902093418030200216213548000567576 507902093418 193550 668899 S +16:45:56 +Slot[227] 0200 011000 1808931700021783 ------------- 00 804195 000050000000 507902382506010063001808931700021783 507902382506 014055 621354 S +16:45:58 Slot [244] | NOT FINANCIAL TRANSACTION +16:46:01 +Slot[248] 0200 011000 6688990040164780 ------------- 00 804250 000030000000 507903433343060016006688990040164780 507903433343 560359 621354 S +16:46:03 +Slot[243] 0200 301000 6213544002074950 ------------- 00 952285 000000000000 507901422832033140016213544002074950 507901422832 944279 668899 S +16:46:07 Slot [251] | NOT FINANCIAL TRANSACTION +16:46:14 Slot [242] | NOT FINANCIAL TRANSACTION +16:46:20 Slot [250] | NOT FINANCIAL TRANSACTION +16:46:22 Slot [255] | NOT FINANCIAL TRANSACTION +16:46:25 +Slot[177] 0200 010000 6213548000567576 ------------- 00 952298 000060000000 507902093419030200216213548000567576 507902093419 050023 668899 S +16:46:26 +Slot[226] 0200 010000 6213544000465044 ------------- 00 240450 000001000000 507900360210050003006213544000465044 507900360210 491756 220699 S +16:46:28 +Slot[233] 0200 010000 6213544002199849 ------------- 00 952300 000035000000 507902025621034140026213544002199849 507902025621 930411 668899 S +16:46:29 Slot [237] | NOT FINANCIAL TRANSACTION +16:46:37 +Slot[200] 0200 010000 6213545000325492 ------------- 61 270601 000150000000 5079092706010401XSBR6213545000325492 507909270601 946652 180893 S +16:46:38 +Slot[238] 0200 011000 6688990050035599 ------------- 14 240872 000010000000 507900410458080003006688990050035599 507900410458 943712 220699 S +16:46:44 +Slot[260] 0200 010000 6688990107166108 ------------- 00 804439 000100000000 507903245311040034006688990107166108 507903245311 447935 621354 S +16:46:46 +Slot[234] 0200 011000 6213544001558847 ------------- 00 208965 000050000000 507916208965195290016213544001558847 507916208965 204416 198901 S +16:46:53 Slot [253] | NOT FINANCIAL TRANSACTION +16:47:04 +Slot[216] 0200 300000 6688990103500508 ------------- 00 804531 000000000000 507903499623060022006688990103500508 507903499623 254026 621354 S +16:47:07 Slot [259] | NOT FINANCIAL TRANSACTION +16:47:09 Slot [249] | NOT FINANCIAL TRANSACTION +16:47:09 +Slot[263] 0200 010000 6213544002074950 ------------- 00 952322 000019000000 507901422833033140016213544002074950 507901422833 421181 668899 S +16:47:12 +Slot[210] 0200 012000 6688990105652406 ------------- 00 804575 000070000000 507904635911170008006688990105652406 507904635911 502312 621354 S +16:47:17 +Slot[261] 0200 010000 6213545000325492 ------------- 00 270608 000100000000 5079092706080401XSBR6213545000325492 507909270608 327796 180893 S +16:47:18 +Slot[225] 0200 010000 6213544001930392 ------------- 00 952327 000050000000 507902025623034140026213544001930392 507902025623 283431 668899 S +16:47:22 +Slot[269] 0200 011000 6688990050035599 ------------- 14 240875 000010000000 507900410460080003006688990050035599 507900410460 761809 220699 S +16:47:25 Slot [199] | NOT FINANCIAL TRANSACTION +16:47:28 +Slot[270] 0200 310000 6213544001613212 ------------- 00 240454 000000000000 507900360212050003006213544001613212 507900360212 119066 220699 S +16:47:28 Slot [275] | NOT FINANCIAL TRANSACTION +16:47:32 +Slot[240] 0200 010000 6213545000937916 ------------- 51 270609 000010000000 5079092706090543VLSC6213545000937916 507909270609 955744 180893 S +16:47:45 Slot [218] | NOT FINANCIAL TRANSACTION +16:47:47 +Slot[197] 0200 011000 6688990040086033 ------------- 00 804739 000020000000 507903908903010106006688990040086033 507903908903 614717 621354 S +16:47:50 +Slot[256] 0200 010000 1234010100209604 ------------- 00 804742 000010000000 507903625312160015001234010100209604 507903625312 898556 621354 S +16:47:52 +Slot[228] 0200 011000 6213544002279120 ------------- 00 208976 000040000000 507916208976195290016213544002279120 507916208976 128035 198901 S +16:47:57 Slot [265] | NOT FINANCIAL TRANSACTION +16:48:00 +Slot[274] 0200 010000 6213544001613212 ------------- 00 240455 000047000000 507900360213050003006213544001613212 507900360213 119587 220699 S +16:48:01 Slot [247] | NOT FINANCIAL TRANSACTION +16:48:11 +Slot[264] 0200 011000 2206990000112292 ------------- 00 804860 000100000000 507903310695130011002206990000112292 507903310695 972066 621354 S +16:48:11 Slot [220] | NOT FINANCIAL TRANSACTION +16:48:12 Slot [231] | NOT FINANCIAL TRANSACTION +16:48:12 +Slot[279] 0200 011000 6688990050035599 ------------- 14 240878 000008000000 507900410462080003006688990050035599 507900410462 778667 220699 S +16:48:14 +Slot[273] 0200 010000 6213544002012091 ------------- 00 952338 000050000000 507902025625034140026213544002012091 507902025625 972791 668899 S +16:48:18 +Slot[239] 0200 012000 6688990103836704 ------------- 00 804894 000010000000 507904524232020015006688990103836704 507904524232 624816 621354 S +16:48:23 Slot [272] | NOT FINANCIAL TRANSACTION +16:48:24 +Slot[252] 0200 010000 6688990105652406 ------------- 00 804919 000100000000 507904635913170008006688990105652406 507904635913 993582 621354 S +16:48:26 +Slot[254] 0200 300000 6688990103500508 ------------- 00 804930 000000000000 507903499624060022006688990103500508 507903499624 352470 621354 S +16:48:27 +Slot[282] 0200 010000 6213544002141262 ------------- 00 270614 000010000000 5079092706140369SLVL6213544002141262 507909270614 738303 180893 S +16:48:30 Slot [266] | NOT FINANCIAL TRANSACTION +16:48:31 Slot [241] | NOT FINANCIAL TRANSACTION +16:48:35 +Slot[276] 0200 301000 6213545000937916 ------------- 00 270615 032009473627 5079092706150543VLSC6213545000937916 507909270615 335845 180893 S +16:48:37 +Slot[280] 0200 012000 6213545000325492 ------------- 00 270617 000070000000 5079092706170401XSBR6213545000325492 507909270617 586035 180893 S +16:48:49 Slot [224] | NOT FINANCIAL TRANSACTION +16:48:49 +Slot[258] 0200 011000 6213544002278775 ------------- 51 208993 000050000000 507916208993195290016213544002278775 507916208993 811971 198901 S +16:48:59 +Slot[219] 0200 010000 6213544002225941 ------------- 00 240458 000044000000 507900360215050003006213544002225941 507900360215 618628 220699 S +16:48:59 Slot [284] | NOT FINANCIAL TRANSACTION +16:49:11 +Slot[287] 0200 301000 6213545000718134 ------------- 00 270624 032009481327 5079092706240112CPBR6213545000718134 507909270624 715876 180893 S +16:49:13 Slot [290] | NOT FINANCIAL TRANSACTION +16:49:13 +Slot[277] 0200 011000 6213544002278775 ------------- 00 208998 000045000000 507916208998195290016213544002278775 507916208998 129482 198901 S +16:49:20 Slot [271] | NOT FINANCIAL TRANSACTION +16:49:31 +Slot[267] 0200 301000 6688990105312209 ------------- 00 805248 000000000000 507903884028010104006688990105312209 507903884028 214259 621354 S +16:49:33 +Slot[245] 0200 011000 6688990040019349 ------------- 00 805262 000030000000 507904645167170009006688990040019349 507904645167 326236 621354 S +16:49:35 Slot [236] | NOT FINANCIAL TRANSACTION +16:49:40 +Slot[294] 0200 010000 1808931800013086 ------------- 00 805272 000100000000 507904635915170008001808931800013086 507904635915 969677 621354 S +16:49:42 +Slot[303] 0200 010000 6213544001795712 ------------- 00 952404 000020000000 507902025627034140026213544001795712 507902025627 020373 668899 S +16:49:43 +Slot[217] 0200 011000 6213545000937916 ------------- 51 270630 000009000000 5079092706300543VLSC6213545000937916 507909270630 381426 180893 S +16:49:48 +Slot[298] 0200 011000 6688990102793104 ------------- 00 805341 000010000000 507905344241150012006688990102793104 507905344241 411286 621354 S +16:49:55 Slot [293] | NOT FINANCIAL TRANSACTION +16:49:55 Slot [300] | NOT FINANCIAL TRANSACTION +16:50:10 Slot [257] | NOT FINANCIAL TRANSACTION +16:50:10 +Slot[299] 0200 010000 6213544002179445 ------------- 00 240463 000054000000 507900360217050003006213544002179445 507900360217 239534 220699 S +16:50:15 Slot [308] | NOT FINANCIAL TRANSACTION +16:50:15 +Slot[278] 0200 011000 6213541000677008 ------------- 00 270633 000070000000 5079092706330102SAPA6213541000677008 507909270633 724871 180893 S +16:50:17 +Slot[281] 0200 011000 6688990105312209 ------------- 00 805470 000100000000 507903884030010104006688990105312209 507903884030 221318 621354 S +16:50:18 +Slot[295] 0200 301000 6213544002226303 ------------- 00 209012 000000000000 507916209012195290016213544002226303 507916209012 731823 198901 S +16:50:22 +Slot[296] 0420 011000 6688990102793104 ------------- 00 805341 000010000000 507905344241150012006688990102793104 507905344241 -------- 621354 S +16:50:25 +Slot[286] 0200 301000 6213541000252612 ------------- 00 952429 000000000000 507902151084030200256213541000252612 507902151084 732632 668899 S +16:50:26 Slot [283] | NOT FINANCIAL TRANSACTION +16:50:40 Slot [306] | NOT FINANCIAL TRANSACTION +16:50:41 +Slot[311] 0200 010000 6213544002086699 ------------- 51 952437 000050000000 507902025629034140026213544002086699 507902025629 271813 668899 S +16:50:43 +Slot[312] 0200 011000 6213545000937916 ------------- 00 270638 000007000000 5079092706380543VLSC6213545000937916 507909270638 274661 180893 S +16:50:44 +Slot[316] 0200 010000 1808931800013086 ------------- 51 805584 000100000000 507904635917170008001808931800013086 507904635917 428978 621354 S +16:50:53 Slot [307] | NOT FINANCIAL TRANSACTION +16:50:57 +Slot[310] 0200 011000 6213544002226303 ------------- 00 209025 000050000000 507916209025195290016213544002226303 507916209025 145620 198901 S +16:50:58 +Slot[317] 0200 010000 6213544002138748 ------------- 00 240466 000050000000 507900360219050003006213544002138748 507900360219 881589 220699 S +16:51:02 +Slot[288] 0200 010000 6213544002086699 ------------- 00 952446 000030000000 507902025630034140026213544002086699 507902025630 864205 668899 S +16:51:04 Slot [318] | NOT FINANCIAL TRANSACTION +16:51:15 +Slot[322] 0200 011000 6688990105312209 ------------- 00 805760 000100000000 507903884032010104006688990105312209 507903884032 155502 621354 S +16:51:17 +Slot[325] 0200 301000 6213544000423498 ------------- 00 270643 032009501627 5079092706430363CPSH6213544000423498 507909270643 166249 180893 S +16:51:17 Slot [297] | NOT FINANCIAL TRANSACTION +16:51:18 +Slot[315] 0200 011000 2206990000132845 ------------- 00 805764 000020000000 507903975709010113002206990000132845 507903975709 668751 621354 S +16:51:22 Slot [289] | NOT FINANCIAL TRANSACTION +16:51:27 +Slot[304] 0200 010000 1808931800013086 ------------- 00 805787 000080000000 507904635919170008001808931800013086 507904635919 414694 621354 S +16:51:31 Slot [326] | NOT FINANCIAL TRANSACTION +16:51:35 +Slot[285] 0420 011000 6688990102793104 0000000000000 00 805341 000010000000 507905344241150012006688990102793104 507905344241 748621 621354 S +16:51:42 Slot [291] | NOT FINANCIAL TRANSACTION +16:51:45 Slot [327] | NOT FINANCIAL TRANSACTION +16:51:46 +Slot[301] 0200 301000 6213544002180112 ------------- 00 209039 000000000000 507916209039195290016213544002180112 507916209039 117781 198901 S +16:51:49 +Slot[331] 0200 010000 6213545001075187 ------------- 00 952467 000040000000 507900285849030100056213545001075187 507900285849 015106 668899 S +16:51:57 Slot [305] | NOT FINANCIAL TRANSACTION +16:52:13 +Slot[302] 0200 011000 6213544002180112 ------------- 00 209040 000055000000 507916209040195290016213544002180112 507916209040 418025 198901 S +16:52:14 Slot [314] | NOT FINANCIAL TRANSACTION +16:52:19 Slot [292] | NOT FINANCIAL TRANSACTION +16:52:26 +Slot[335] 0200 010000 6213544000423498 ------------- 00 270650 000100000000 5079092706500363CPSH6213544000423498 507909270650 733101 180893 S +16:52:28 +Slot[333] 0200 010000 6213545001079668 ------------- 00 270651 000010000000 5079092706510262PSLB6213545001079668 507909270651 755691 180893 S +16:52:29 +Slot[262] 0200 012000 6688990104449309 ------------- 00 806077 000100000000 507903499627060022006688990104449309 507903499627 271833 621354 S +16:52:37 +Slot[334] 0200 010000 6213544001612388 ------------- 00 952494 000028000000 507902025632034140026213544001612388 507902025632 998988 668899 S +16:52:39 Slot [336] | NOT FINANCIAL TRANSACTION +16:52:49 +Slot[321] 0200 010000 1808931800013086 ------------- 00 806142 000010000000 507904635921170008001808931800013086 507904635921 856756 621354 S +16:52:50 Slot [341] | NOT FINANCIAL TRANSACTION +16:52:50 Slot [323] | NOT FINANCIAL TRANSACTION +16:53:01 Slot [320] | NOT FINANCIAL TRANSACTION +16:53:11 Slot [342] | NOT FINANCIAL TRANSACTION +16:53:11 +Slot[339] 0200 011000 6213544001895181 ------------- 00 209054 000050000000 507916209054195290016213544001895181 507916209054 271567 198901 S +16:53:21 Slot [268] | NOT FINANCIAL TRANSACTION +16:53:21 Slot [352] | NOT FINANCIAL TRANSACTION +16:53:30 +Slot[309] 0200 010000 6213544002002407 ------------- 00 240471 000040000000 507900360221050003006213544002002407 507900360221 028707 220699 S +16:53:36 Slot [348] | NOT FINANCIAL TRANSACTION +16:53:53 Slot [329] | NOT FINANCIAL TRANSACTION +16:53:55 Slot [347] | NOT FINANCIAL TRANSACTION +16:54:00 +Slot[328] 0200 011000 6688990040045377 ------------- 00 806461 000010000000 507902627618140001006688990040045377 507902627618 842963 621354 S +16:54:01 +Slot[350] 0200 010000 6688990104449309 ------------- 00 806466 000100000000 507903499629060022006688990104449309 507903499629 982400 621354 S +16:54:09 Slot [346] | NOT FINANCIAL TRANSACTION +16:54:14 +Slot[337] 0200 011000 6213544001930186 ------------- 00 209066 000025000000 507916209066195290016213544001930186 507916209066 873607 198901 S +16:54:18 +Slot[357] 0200 010000 6213544001970901 ------------- 00 240474 000045000000 507900360223050003006213544001970901 507900360223 704433 220699 S +16:54:23 Slot [332] | NOT FINANCIAL TRANSACTION +16:54:23 +Slot[319] 0200 010000 6213544001961595 ------------- 00 952547 000054000000 507902025634034140026213544001961595 507902025634 409896 668899 S +16:54:23 Slot [365] | NOT FINANCIAL TRANSACTION +16:54:34 Slot [330] | NOT FINANCIAL TRANSACTION +16:54:49 Slot [356] | NOT FINANCIAL TRANSACTION +16:54:55 Slot [371] | NOT FINANCIAL TRANSACTION +16:55:00 Slot [366] | NOT FINANCIAL TRANSACTION +16:55:00 Slot [313] | NOT FINANCIAL TRANSACTION +16:55:01 +Slot[343] 0200 011000 6213544001119061 ------------- 00 240409 000010000000 507900430287010021006213544001119061 507900430287 152115 220699 S +16:55:10 Slot [378] | NOT FINANCIAL TRANSACTION +16:55:14 +Slot[345] 0200 010000 6213544000807849 ------------- 00 412467 000050000000 507900164633010015006213544000807849 507900164633 739378 123401 S +16:55:15 +Slot[373] 0200 302000 6688990107521203 ------------- 00 806792 000000000000 507902916623120014006688990107521203 507902916623 969554 621354 S +16:55:17 +Slot[340] 0200 010000 6688990104449309 ------------- 00 806808 000100000000 507903499631060022006688990104449309 507903499631 895875 621354 S +16:55:22 +Slot[353] 0200 010000 6213544002021266 ------------- 00 952571 000070000000 507902362994030160036213544002021266 507902362994 251494 668899 S +16:55:25 Slot [324] | NOT FINANCIAL TRANSACTION +16:55:27 Slot [382] | NOT FINANCIAL TRANSACTION +16:55:34 +Slot[363] 0200 010000 6213544002226444 ------------- 00 952578 000045000000 507902025636034140026213544002226444 507902025636 695761 668899 S +16:55:36 +Slot[355] 0200 010000 6213544002118302 ------------- 00 240478 000050000000 507900360225050003006213544002118302 507900360225 852084 220699 S +16:55:43 +Slot[344] 0200 011000 1808931800001966 ------------- 00 806919 000030000000 507903613140160014001808931800001966 507903613140 721732 621354 S +16:55:45 +Slot[370] 0200 011000 6213544001530416 ------------- 00 209090 000030000000 507916209090195290016213544001530416 507916209090 428410 198901 S +16:55:49 Slot [379] | NOT FINANCIAL TRANSACTION +16:55:53 +Slot[358] 0200 010000 2206990000122945 ------------- 00 952587 000100000000 507901912270030130042206990000122945 507901912270 126238 668899 S +16:56:01 Slot [369] | NOT FINANCIAL TRANSACTION +16:56:05 Slot [360] | NOT FINANCIAL TRANSACTION +16:56:14 +Slot[338] 0200 301000 6213544002021266 ------------- 00 952604 000000000000 507902362996030160036213544002021266 507902362996 404506 668899 S +16:56:16 Slot [354] | NOT FINANCIAL TRANSACTION +16:56:22 Slot [396] | NOT FINANCIAL TRANSACTION +16:56:27 Slot [390] | NOT FINANCIAL TRANSACTION +16:56:31 Slot [374] | NOT FINANCIAL TRANSACTION +16:56:38 +Slot[389] 0200 010000 6213545000822175 ------------- 00 270668 000050000000 5079092706680262PSLB6213545000822175 507909270668 197536 180893 S +16:56:40 +Slot[361] 0200 301000 6213544002002423 ------------- 00 209103 000000000000 507916209103195290016213544002002423 507916209103 758352 198901 S +16:56:41 +Slot[351] 0200 010000 6688990104449309 ------------- 00 807250 000060000000 507903499633060022006688990104449309 507903499633 607142 621354 S +16:56:42 +Slot[376] 0200 301000 6213541000657752 ------------- 55 952617 000000000000 507902531998030200336213541000657752 507902531998 314497 668899 S +16:56:46 Slot [383] | NOT FINANCIAL TRANSACTION +16:56:49 +Slot[359] 0200 010000 6213544001970919 ------------- 00 240481 000057000000 507900360227050003006213544001970919 507900360227 105039 220699 S +16:57:02 Slot [410] | NOT FINANCIAL TRANSACTION +16:57:10 Slot [400] | NOT FINANCIAL TRANSACTION +16:57:10 +Slot[393] 0200 010000 6213544001530408 ------------- 00 952626 000048000000 507902025639034140026213544001530408 507902025639 739011 668899 S +16:57:12 Slot [395] | NOT FINANCIAL TRANSACTION +16:57:16 +Slot[397] 0200 010000 6213545000325484 ------------- 00 270674 000010000000 5079092706740401XSBR6213545000325484 507909270674 919555 180893 S +16:57:21 +Slot[414] 0200 011000 6213544002002423 ------------- 00 209105 000050000000 507916209105195290016213544002002423 507916209105 291440 198901 S +16:57:23 +Slot[413] 0200 012000 6688990050051133 ------------- 00 807461 000010000000 507905335247050047006688990050051133 507905335247 759703 621354 S +16:57:28 +Slot[349] 0200 301000 6213544000067857 ------------- 00 270675 032009563027 5079092706750522XYXH6213544000067857 507909270675 602210 180893 S +16:57:29 Slot [394] | NOT FINANCIAL TRANSACTION +16:57:39 Slot [418] | NOT FINANCIAL TRANSACTION +16:57:51 Slot [372] | NOT FINANCIAL TRANSACTION +16:57:52 +Slot[399] 0200 300000 6688990060029756 ------------- 55 807622 000000000000 507904154083200010006688990060029756 507904154083 872437 621354 S +16:57:59 +Slot[387] 0200 010000 6213544002180526 ------------- 00 240484 000035000000 507900360229050003006213544002180526 507900360229 088563 220699 S +16:58:01 +Slot[368] 0200 013000 6688990103291306 ------------- 00 807677 000100000000 507903499635060022006688990103291306 507903499635 040483 621354 S +16:58:07 Slot [406] | NOT FINANCIAL TRANSACTION +16:58:15 +Slot[419] 0200 010000 6213541000657752 ------------- 00 952654 000050000000 507902532000030200336213541000657752 507902532000 289652 668899 S +16:58:15 Slot [411] | NOT FINANCIAL TRANSACTION +16:58:18 +Slot[380] 0200 010000 6213544002226402 ------------- 51 952656 000056000000 507902025641034140026213544002226402 507902025641 484402 668899 S +16:58:19 Slot [384] | NOT FINANCIAL TRANSACTION +16:58:22 +Slot[407] 0200 011000 6213544002132014 ------------- 00 209120 000045000000 507916209120195290016213544002132014 507916209120 861285 198901 S +16:58:31 Slot [416] | NOT FINANCIAL TRANSACTION +16:58:34 Slot [401] | NOT FINANCIAL TRANSACTION +16:58:45 +Slot[381] 0200 300000 6688990060029756 ------------- 55 807890 000000000000 507904154084200010006688990060029756 507904154084 043874 621354 S +16:58:50 Slot [433] | NOT FINANCIAL TRANSACTION +16:58:50 +Slot[420] 0200 010000 6213544002226402 ------------- 00 952670 000054000000 507902025642034140026213544002226402 507902025642 616829 668899 S +16:58:51 +Slot[415] 0200 310000 6213544001608725 ------------- 00 240487 000000000000 507900360231050003006213544001608725 507900360231 062072 220699 S +16:59:00 Slot [398] | NOT FINANCIAL TRANSACTION +16:59:13 Slot [364] | NOT FINANCIAL TRANSACTION +16:59:13 +Slot[425] 0200 010000 6688990103291306 ------------- 00 808003 000100000000 507903499637060022006688990103291306 507903499637 624661 621354 S +16:59:16 Slot [409] | NOT FINANCIAL TRANSACTION +16:59:20 +Slot[388] 0200 011000 6688990104895600 ------------- 00 808040 000040000000 507902486013050031006688990104895600 507902486013 783872 621354 S +16:59:20 Slot [367] | NOT FINANCIAL TRANSACTION +16:59:21 +Slot[430] 0200 010000 6213544001608725 ------------- 00 240488 000062000000 507900360232050003006213544001608725 507900360232 006214 220699 S +16:59:26 +Slot[441] 0200 011000 6213544002095781 ------------- 00 209133 000050000000 507916209133195290016213544002095781 507916209133 464122 198901 S +16:59:27 Slot [403] | NOT FINANCIAL TRANSACTION +16:59:33 +Slot[437] 0200 011000 6688990105202806 ------------- 00 209136 000010000000 507916209136015290196688990105202806 507916209136 715930 198901 S +16:59:33 Slot [402] | NOT FINANCIAL TRANSACTION +16:59:34 +Slot[362] 0200 300000 6688990060029756 ------------- 75 808120 000000000000 507904154085200010006688990060029756 507904154085 116779 621354 S +16:59:43 Slot [385] | NOT FINANCIAL TRANSACTION +16:59:46 +Slot[408] 0200 301000 6213548000371862 ------------- 00 209139 000000000000 507917209139015290316213548000371862 507917209139 236423 198901 S +16:59:47 +Slot[375] 0200 010000 6213544002200175 ------------- 51 952691 000050000000 507902025644034140026213544002200175 507902025644 133438 668899 S +16:59:50 +Slot[392] 0200 010000 1888880000025122 ------------- 00 808152 000020000000 507904341774030033001888880000025122 507904341774 022177 621354 S +16:59:55 Slot [450] | NOT FINANCIAL TRANSACTION +16:59:55 Slot [417] | NOT FINANCIAL TRANSACTION +17:00:03 +Slot[412] 0200 010000 6688990030017105 ------------- 00 808240 000070000000 507902546997050037006688990030017105 507902546997 167176 621354 S +17:00:08 +Slot[447] 0200 010000 6213545000823348 ------------- 00 270682 000100000000 5079092706820367BL206213545000823348 507909270682 917431 180893 S +17:00:12 +Slot[391] 0200 010000 6213544002200175 ------------- 51 952702 000050000000 507902025645034140026213544002200175 507902025645 144308 668899 S +17:00:14 +Slot[405] 0200 010000 6688990103291306 ------------- 00 808300 000100000000 507903499639060022006688990103291306 507903499639 501817 621354 S +17:00:15 +Slot[429] 0200 310000 6213544002112842 ------------- 00 240491 000000000000 507900360234050003006213544002112842 507900360234 644053 220699 S +17:00:17 +Slot[386] 0200 010000 6213541000675747 ------------- 00 952704 000100000000 507901215104030200136213541000675747 507901215104 186242 668899 S +17:00:18 +Slot[443] 0200 301000 6213541000201197 ------------- 00 209151 000000000000 507917209151015290266213541000201197 507917209151 456905 198901 S +17:00:21 Slot [446] | NOT FINANCIAL TRANSACTION +17:00:23 +Slot[377] 0200 011000 6213544001970687 ------------- 00 209154 000050000000 507917209154195290016213544001970687 507917209154 117791 198901 S +17:00:25 Slot [404] | NOT FINANCIAL TRANSACTION +17:00:32 Slot [434] | NOT FINANCIAL TRANSACTION +17:00:35 Slot [424] | NOT FINANCIAL TRANSACTION +17:00:37 +Slot[456] 0200 010000 6213544002200175 ------------- 00 952714 000048000000 507902025646034140026213544002200175 507902025646 303660 668899 S +17:00:41 +Slot[445] 0200 011000 6213548000371862 ------------- 00 209159 000005000000 507917209159015290316213548000371862 507917209159 208708 198901 S +17:00:42 +Slot[438] 0200 011000 6688990108338201 ------------- 14 270685 000002000000 5079092706850262PSLB6688990108338201 507909270685 439519 180893 S +17:00:44 +Slot[442] 0200 011000 6213541000201197 ------------- 00 209160 000030000000 507917209160015290266213541000201197 507917209160 759416 198901 S +17:00:45 +Slot[435] 0200 010000 6213544002112842 ------------- 00 240492 000020000000 507900360235050003006213544002112842 507900360235 537667 220699 S +17:00:53 Slot [427] | NOT FINANCIAL TRANSACTION +17:01:08 Slot [431] | NOT FINANCIAL TRANSACTION +17:01:09 +Slot[462] 0200 010000 6688990602643908 ------------- 00 808533 000030000000 507902606320050043006688990602643908 507902606320 586084 621354 S +17:01:10 +Slot[428] 0200 010000 6213548000567907 ------------- 00 952731 000050000000 507901856596033110016213548000567907 507901856596 069345 668899 S +17:01:13 +Slot[421] 0200 010000 6688990103291306 ------------- 00 808559 000100000000 507903499641060022006688990103291306 507903499641 396924 621354 S +17:01:19 Slot [451] | NOT FINANCIAL TRANSACTION +17:01:19 +Slot[422] 0200 011000 6213544002118278 ------------- 00 209173 000020000000 507917209173195290016213544002118278 507917209173 811590 198901 S +17:01:22 Slot [465] | NOT FINANCIAL TRANSACTION +17:01:30 Slot [457] | NOT FINANCIAL TRANSACTION +17:01:32 Slot [426] | NOT FINANCIAL TRANSACTION +17:01:37 Slot [444] | NOT FINANCIAL TRANSACTION +17:01:41 +Slot[436] 0200 010000 6213544002113550 ------------- 00 952744 000056000000 507902025648034140026213544002113550 507902025648 503198 668899 S +17:01:53 +Slot[423] 0200 011000 1808930600041610 ------------- 00 808715 000020000000 507905014041010125001808930600041610 507905014041 144060 621354 S +17:01:57 Slot [458] | NOT FINANCIAL TRANSACTION +17:02:07 Slot [452] | NOT FINANCIAL TRANSACTION +17:02:10 +Slot[439] 0200 311000 6213544001853156 ------------- 55 242351 000000000000 507900341593010020006213544001853156 507900341593 109757 220699 S +17:02:14 +Slot[459] 0200 011000 2206990000137026 ------------- 00 808813 000009000000 507902750737010069002206990000137026 507902750737 718802 621354 S +17:02:18 Slot [466] | NOT FINANCIAL TRANSACTION +17:02:20 +Slot[468] 0200 301000 6213544002235346 ------------- 00 952760 000000000000 507900305061030130016213544002235346 507900305061 646757 668899 S +17:02:22 +Slot[455] 0200 011000 6213544002131933 ------------- 00 209177 000060000000 507917209177195290016213544002131933 507917209177 073215 198901 S +17:02:26 +Slot[475] 0200 011000 6213544001293254 ------------- 00 270691 000030000000 5079102706910528LPBP6213544001293254 507910270691 798449 180893 S +17:02:35 Slot [460] | NOT FINANCIAL TRANSACTION +17:02:38 +Slot[440] 0200 310000 6227003861190228036 ------------- 03 999968 000000000000 507900281370100001006227003861190228 507900281370 968600 220699 S +17:02:39 Slot [495] | NOT FINANCIAL TRANSACTION +17:02:40 Slot [482] | NOT FINANCIAL TRANSACTION +17:02:41 +Slot[432] 0200 302000 6688990108338201 ------------- 14 270693 032010014327 5079102706930262PSLB6688990108338201 507910270693 051427 180893 S +17:02:44 +Slot[449] 0200 300000 6688990103291306 ------------- 00 808960 000000000000 507903499642060022006688990103291306 507903499642 284568 621354 S +17:02:50 Slot [488] | NOT FINANCIAL TRANSACTION +17:02:56 +Slot[453] 0200 010000 6213544002251053 ------------- 00 952783 000050000000 507902025651034140026213544002251053 507902025651 297101 668899 S +17:02:58 +Slot[470] 0200 010000 6213544002235346 ------------- 00 952784 000020000000 507900305062030130016213544002235346 507900305062 088792 668899 S +17:02:59 +Slot[484] 0200 012000 6213544001853156 ------------- 55 242354 000040000000 507900341595010020006213544001853156 507900341595 448992 220699 S +17:03:06 Slot [463] | NOT FINANCIAL TRANSACTION +17:03:17 Slot [480] | NOT FINANCIAL TRANSACTION +17:03:32 +Slot[490] 0200 010000 6688990103291306 ------------- 00 809179 000010000000 507903499644060022006688990103291306 507903499644 782365 621354 S +17:03:33 Slot [471] | NOT FINANCIAL TRANSACTION +17:03:36 +Slot[448] 0200 311000 6213544001853156 ------------- 00 242357 000000000000 507900341597010020006213544001853156 507900341597 890556 220699 S +17:03:40 Slot [479] | NOT FINANCIAL TRANSACTION +17:03:41 +Slot[0] 0200 010000 6688990108338201 ------------- 14 270697 000010000000 5079102706970262PSLB6688990108338201 507910270697 875209 180893 S +17:03:41 Slot [493] | NOT FINANCIAL TRANSACTION +17:03:46 +Slot[4] 0200 013000 6227003861190228036 ------------- 03 999971 000030000000 507900281372100001006227003861190228 507900281372 296989 220699 S +17:03:53 +Slot[2] 0200 010000 6213544001612958 ------------- 00 952817 000058000000 507902025653034140026213544001612958 507902025653 094037 668899 S +17:03:53 Slot [1] | NOT FINANCIAL TRANSACTION +17:04:01 +Slot[498] 0200 011000 6213544001853156 ------------- 00 242358 000050000000 507900341598010020006213544001853156 507900341598 055643 220699 S +17:04:09 +Slot[473] 0200 011000 6213544002118252 ------------- 00 209205 000030000000 507917209205195290016213544002118252 507917209205 870609 198901 S +17:04:09 Slot [476] | NOT FINANCIAL TRANSACTION +17:04:19 Slot [489] | NOT FINANCIAL TRANSACTION +17:04:23 +Slot[477] 0200 311000 6227003861190228036 ------------- 03 999974 000000000000 507900281374100001006227003861190228 507900281374 066535 220699 S +17:04:29 +Slot[483] 0200 010000 6688990040119396 ------------- 14 270702 000010000000 5079102707020361BLTB6688990040119396 507910270702 186669 180893 S +17:04:36 +Slot[485] 0200 010000 6688990103269203 ------------- 00 809485 000100000000 507903499646060022006688990103269203 507903499646 085649 621354 S +17:04:41 +Slot[14] 0200 011000 6688990107208108 ------------- 00 809521 000080000000 507904154090200010006688990107208108 507904154090 097461 621354 S +17:04:42 +Slot[486] 0200 010000 1808930600017396 ------------- 00 809491 000002000000 507905057822030043001808930600017396 507905057822 885355 621354 S +17:04:43 Slot [474] | NOT FINANCIAL TRANSACTION +17:04:43 Slot [472] | NOT FINANCIAL TRANSACTION +17:04:45 Slot [6] | NOT FINANCIAL TRANSACTION +17:04:45 Slot [16] | NOT FINANCIAL TRANSACTION +17:04:55 Slot [492] | NOT FINANCIAL TRANSACTION +17:04:55 +Slot[13] 0200 010000 6213544002117783 ------------- 00 952852 000047000000 507902025655034140026213544002117783 507902025655 727508 668899 S +17:04:56 Slot [454] | NOT FINANCIAL TRANSACTION +17:05:12 Slot [12] | NOT FINANCIAL TRANSACTION +17:05:14 +Slot[22] 0200 010000 6688990050036316 ------------- 00 809670 000030000000 507902547010050037006688990050036316 507902547010 792541 621354 S +17:05:23 Slot [469] | NOT FINANCIAL TRANSACTION +17:05:34 Slot [17] | NOT FINANCIAL TRANSACTION +17:05:40 +Slot[491] 0200 010000 6688990103269203 ------------- 00 809791 000100000000 507903499648060022006688990103269203 507903499648 808694 621354 S +17:05:42 +Slot[494] 0200 301000 6688990101258307 ------------- 00 809794 000000000000 507904830815110007006688990101258307 507904830815 921057 621354 S +17:05:45 Slot [29] | NOT FINANCIAL TRANSACTION +17:05:45 Slot [10] | NOT FINANCIAL TRANSACTION +17:05:50 Slot [499] | NOT FINANCIAL TRANSACTION +17:05:56 Slot [481] | NOT FINANCIAL TRANSACTION +17:05:57 +Slot[23] 0200 010000 6213544001551099 ------------- 00 952882 000060000000 507902025657034140026213544001551099 507902025657 250612 668899 S +17:05:59 +Slot[31] 0200 301000 6213544002002126 ------------- 55 209236 000000000000 507917209236195290016213544002002126 507917209236 133250 198901 S +17:06:07 Slot [35] | NOT FINANCIAL TRANSACTION +17:06:18 Slot [3] | NOT FINANCIAL TRANSACTION +17:06:22 Slot [11] | NOT FINANCIAL TRANSACTION +17:06:34 Slot [496] | NOT FINANCIAL TRANSACTION +17:06:34 +Slot[33] 0200 011000 6213544002143094 ------------- 00 209247 000020000000 507917209247015290246213544002143094 507917209247 675498 198901 S +17:06:43 +Slot[30] 0200 010000 6688990103269203 ------------- 00 810073 000010000000 507903499650060022006688990103269203 507903499650 064023 621354 S +17:06:45 Slot [21] | NOT FINANCIAL TRANSACTION +17:06:46 +Slot[461] 0200 010000 6213544001516217 ------------- 00 952910 000050000000 507902025659034140026213544001516217 507902025659 544784 668899 S +17:06:47 Slot [37] | NOT FINANCIAL TRANSACTION +17:06:55 +Slot[9] 0200 010000 6213544001530655 ------------- 00 952914 000020000000 507900560137030140046213544001530655 507900560137 823138 668899 S +17:06:55 Slot [45] | NOT FINANCIAL TRANSACTION +17:06:57 Slot [36] | NOT FINANCIAL TRANSACTION +17:07:11 Slot [40] | NOT FINANCIAL TRANSACTION +17:07:12 +Slot[18] 0200 011000 6213544002002126 ------------- 55 209249 000040000000 507917209249195290016213544002002126 507917209249 237405 198901 S +17:07:14 +Slot[497] 0200 010000 6213544002040126 ------------- 00 952927 000080000000 507900858437030150046213544002040126 507900858437 932222 668899 S +17:07:22 Slot [8] | NOT FINANCIAL TRANSACTION +17:07:37 Slot [43] | NOT FINANCIAL TRANSACTION +17:07:41 +Slot[28] 0200 301000 6213544001856019 ------------- 55 209261 000000000000 507917209261008529026213544001856019 507917209261 327209 198901 S +17:07:47 +Slot[467] 0200 010000 6213544001930699 ------------- 00 952938 000050000000 507902025661034140026213544001930699 507902025661 034363 668899 S +17:07:48 Slot [55] | NOT FINANCIAL TRANSACTION +17:07:49 Slot [7] | NOT FINANCIAL TRANSACTION +17:07:52 +Slot[52] 0200 300000 6688990103296503 ------------- 00 810372 000000000000 507903499651060022006688990103296503 507903499651 318919 621354 S +17:07:59 Slot [61] | NOT FINANCIAL TRANSACTION +17:08:00 Slot [44] | NOT FINANCIAL TRANSACTION +17:08:01 +Slot[25] 0200 010000 6213544002112891 ------------- 00 952948 000015000000 507900560139030140046213544002112891 507900560139 699209 668899 S +17:08:02 +Slot[50] 0200 011000 6213544002002126 ------------- 75 209264 000040000000 507917209264195290016213544002002126 507917209264 418622 198901 S +17:08:06 +Slot[60] 0200 301000 6213544001856019 ------------- 00 209265 000000000000 507917209265008529026213544001856019 507917209265 349655 198901 S +17:08:08 +Slot[478] 0200 010000 6213545000955066 ------------- 00 270712 000010000000 5079102707120324BKDT6213545000955066 507910270712 652088 180893 S +17:08:20 +Slot[15] 0200 011000 6213544001684445 ------------- 00 270714 000095000000 5079102707140528LPBP6213544001684445 507910270714 715864 180893 S +17:08:27 +Slot[63] 0200 011000 1808931300000351 ------------- 00 810532 000020000000 507903444059060017001808931300000351 507903444059 773291 621354 S +17:08:28 +Slot[38] 0200 012000 6227003861190228036 ------------- 03 999989 000050000000 507900281384100001006227003861190228 507900281384 582400 220699 S +17:08:31 Slot [73] | NOT FINANCIAL TRANSACTION +17:08:37 +Slot[68] 0200 011000 2206991200024523 ------------- 00 810589 000070000000 507905147417090018002206991200024523 507905147417 817647 621354 S +17:08:42 +Slot[41] 0200 011000 6213544001856019 ------------- 00 209277 000020000000 507917209277008529026213544001856019 507917209277 192462 198901 S +17:08:47 Slot [464] | NOT FINANCIAL TRANSACTION +17:08:51 Slot [487] | NOT FINANCIAL TRANSACTION +17:08:52 +Slot[32] 0200 011000 6213544002278957 ------------- 00 209280 000025000000 507917209280195290016213544002278957 507917209280 482343 198901 S +17:08:56 +Slot[26] 0200 010000 6688990103296503 ------------- 00 810671 000100000000 507903499653060022006688990103296503 507903499653 422258 621354 S +17:08:59 Slot [20] | NOT FINANCIAL TRANSACTION +17:09:05 Slot [48] | NOT FINANCIAL TRANSACTION +17:09:13 +Slot[46] 0200 010000 6227003861190228036 ------------- 03 999992 000030000000 507900281386100001006227003861190228 507900281386 257881 220699 S +17:09:14 Slot [69] | NOT FINANCIAL TRANSACTION +17:09:25 +Slot[27] 0200 010000 6213544001465472 ------------- 00 952985 000100000000 507902161283030200266213544001465472 507902161283 343900 668899 S +17:09:25 Slot [19] | NOT FINANCIAL TRANSACTION +17:09:41 +Slot[47] 0200 010000 6213545001065287 ------------- 00 270724 000010000000 5079102707240324BKDT6213545001065287 507910270724 368431 180893 S +17:09:42 +Slot[54] 0200 011000 6213544002118104 ------------- 55 209294 000020000000 507917209294195290016213544002118104 507917209294 463429 198901 S +17:09:52 Slot [57] | NOT FINANCIAL TRANSACTION +17:09:53 Slot [78] | NOT FINANCIAL TRANSACTION +17:09:55 Slot [24] | NOT FINANCIAL TRANSACTION +17:10:00 +Slot[49] 0200 311000 6688990040118976 ------------- 14 999995 000000000000 507900281388100001006688990040118976 507900281388 704318 220699 S +17:10:02 Slot [34] | NOT FINANCIAL TRANSACTION +17:10:03 +Slot[42] 0200 010000 6688990103296503 ------------- 00 810988 000070000000 507903499655060022006688990103296503 507903499655 722472 621354 S +17:10:05 +Slot[81] 0200 301000 6213544001919569 ------------- 00 209305 000000000000 507917209305008529026213544001919569 507917209305 212863 198901 S +17:10:08 +Slot[88] 0200 010000 6213544002113451 ------------- 00 953010 000050000000 507902025664034140026213544002113451 507902025664 797512 668899 S +17:10:08 Slot [86] | NOT FINANCIAL TRANSACTION +17:10:10 +Slot[89] 0200 011000 6213544001135638 ------------- 00 010429 000047000000 507900220658050002006213544001135638 507900220658 677473 220699 S +17:10:10 Slot [59] | NOT FINANCIAL TRANSACTION +17:10:16 +Slot[79] 0200 011000 6213544002118104 ------------- 55 209309 000020000000 507917209309195290016213544002118104 507917209309 875220 198901 S +17:10:17 +Slot[84] 0200 010000 6688990100962206 ------------- 14 270730 000100000000 5079102707300467PSLK6688990100962206 507910270730 088887 180893 S +17:10:24 +Slot[5] 0200 010000 6213544001465472 ------------- 00 953020 000100000000 507902161285030200266213544001465472 507902161285 740086 668899 S +17:10:29 Slot [67] | NOT FINANCIAL TRANSACTION +17:10:36 +Slot[58] 0200 011000 6213544001727301 ------------- 51 270732 000004000000 5079102707320104NUOL6213544001727301 507910270732 491853 180893 S +17:10:41 +Slot[62] 0200 011000 6213544001919569 ------------- 00 209317 000050000000 507917209317008529026213544001919569 507917209317 398237 198901 S +17:10:49 +Slot[93] 0200 011000 6688990106678707 ------------- 00 811174 000030000000 507902846525010078006688990106678707 507902846525 587734 621354 S +17:10:50 Slot [56] | NOT FINANCIAL TRANSACTION +17:10:50 +Slot[39] 0200 010000 6688990040118976 ------------- 14 999998 000010000000 507900281390100001006688990040118976 507900281390 887246 220699 S +17:10:53 +Slot[82] 0200 300000 6688990103296503 ------------- 00 811200 000000000000 507903499656060022006688990103296503 507903499656 170060 621354 S +17:10:55 Slot [51] | NOT FINANCIAL TRANSACTION +17:11:00 Slot [64] | NOT FINANCIAL TRANSACTION +17:11:00 +Slot[99] 0200 301000 6688990100962206 ------------- 14 270733 032010100327 5079102707330467PSLK6688990100962206 507910270733 949017 180893 S +17:11:02 +Slot[91] 0200 011000 6213544002118104 ------------- 75 209326 000025000000 507917209326195290016213544002118104 507917209326 017149 198901 S +17:11:11 Slot [100] | NOT FINANCIAL TRANSACTION +17:11:15 Slot [72] | NOT FINANCIAL TRANSACTION +17:11:17 +Slot[65] 0200 010000 6213544001465472 ------------- 00 953051 000100000000 507902161287030200266213544001465472 507902161287 986738 668899 S +17:11:19 +Slot[76] 0200 010000 6213544002162235 ------------- 51 953053 000045000000 507902025666034140026213544002162235 507902025666 794835 668899 S +17:11:21 Slot [90] | NOT FINANCIAL TRANSACTION +17:11:22 Slot [106] | NOT FINANCIAL TRANSACTION +17:11:29 +Slot[114] 0200 301000 6213544001612677 ------------- 00 209332 000000000000 507917209332008529026213544001612677 507917209332 909033 198901 S +17:11:32 Slot [83] | NOT FINANCIAL TRANSACTION +17:11:35 +Slot[66] 0200 010000 6213548000115673 ------------- 00 953059 000030000000 507900844994030150036213548000115673 507900844994 000428 668899 S +17:11:36 +Slot[118] 0200 011000 6213544001960241 ------------- 00 209333 000060000000 507917209333195290016213544001960241 507917209333 339583 198901 S +17:11:38 +Slot[107] 0200 010000 6688990106047002 ------------- 00 811386 000100000000 507903499658060022006688990106047002 507903499658 658253 621354 S +17:11:43 +Slot[121] 0200 301000 6213544001612677 ------------- 00 209334 000000000000 507917209334008529026213544001612677 507917209334 528939 198901 S +17:11:44 Slot [115] | NOT FINANCIAL TRANSACTION +17:11:46 +Slot[74] 0200 010000 6688990102658109 ------------- 61 270736 000200000000 5079102707360527LPBL6688990102658109 507910270736 274083 180893 S +17:11:47 +Slot[92] 0200 010000 6213544002162235 ------------- 00 953072 000030000000 507902025667034140026213544002162235 507902025667 560807 668899 S +17:11:51 +Slot[113] 0200 010000 6688990100952900 ------------- 14 270739 000100000000 5079102707390467PSLK6688990100952900 507910270739 529375 180893 S +17:11:57 Slot [98] | NOT FINANCIAL TRANSACTION +17:11:57 +Slot[108] 0200 301000 6213544001612677 ------------- 00 209337 000000000000 507917209337008529026213544001612677 507917209337 489545 198901 S +17:12:02 +Slot[127] 0200 010000 6213544000040177 ------------- 51 270742 000050000000 5079102707420421BKPH6213544000040177 507910270742 709517 180893 S +17:12:10 Slot [95] | NOT FINANCIAL TRANSACTION +17:12:14 +Slot[75] 0200 011000 6213544001612677 ------------- 00 209340 000020000000 507917209340008529026213544001612677 507917209340 539977 198901 S +17:12:20 Slot [53] | NOT FINANCIAL TRANSACTION +17:12:26 Slot [94] | NOT FINANCIAL TRANSACTION +17:12:33 +Slot[134] 0200 011000 6213544001960258 ------------- 00 209346 000055000000 507917209346195290016213544001960258 507917209346 712155 198901 S +17:12:35 +Slot[125] 0200 301000 6688990102658109 ------------- 14 270744 032010113827 5079102707440527LPBL6688990102658109 507910270744 903637 180893 S +17:12:40 +Slot[96] 0200 010000 6688990106047002 ------------- 00 811654 000100000000 507903499660060022006688990106047002 507903499660 739804 621354 S +17:12:41 +Slot[103] 0200 011000 6213545001002710 ------------- 00 270747 000020000000 5079102707470301LPBX6213545001002710 507910270747 858985 180893 S +17:12:43 +Slot[101] 0200 010000 6213544001721759 ------------- 61 270749 000200000000 5079102707490243VTKS6213544001721759 507910270749 892165 180893 S +17:12:53 +Slot[70] 0200 010000 6213544000040177 ------------- 51 270752 000050000000 5079102707520421BKPH6213544000040177 507910270752 476529 180893 S +17:12:55 +Slot[109] 0200 010000 6213544002199351 ------------- 00 953101 000030000000 507902025669034140026213544002199351 507902025669 484187 668899 S +17:12:59 Slot [77] | NOT FINANCIAL TRANSACTION +17:13:04 Slot [102] | NOT FINANCIAL TRANSACTION +17:13:19 Slot [136] | NOT FINANCIAL TRANSACTION +17:13:24 +Slot[71] 0200 011000 6213544001525333 ------------- 00 209360 000060000000 507917209360195290016213544001525333 507917209360 062499 198901 S +17:13:25 Slot [85] | NOT FINANCIAL TRANSACTION +17:13:30 Slot [105] | NOT FINANCIAL TRANSACTION +17:13:34 +Slot[129] 0200 301000 6213544001969523 ------------- 00 209365 000000000000 507917209365008529026213544001969523 507917209365 292334 198901 S +17:13:38 +Slot[116] 0200 301000 6213544000040177 ------------- 00 270755 032010123927 5079102707550421BKPH6213544000040177 507910270755 172104 180893 S +17:13:40 +Slot[131] 0200 300000 6688990106047002 ------------- 00 811882 000000000000 507903499661060022006688990106047002 507903499661 788491 621354 S +17:13:51 Slot [104] | NOT FINANCIAL TRANSACTION +17:14:00 +Slot[138] 0200 011000 6213544001969523 ------------- 00 209372 000050000000 507917209372008529026213544001969523 507917209372 555402 198901 S +17:14:01 Slot [97] | NOT FINANCIAL TRANSACTION +17:14:02 +Slot[112] 0420 011000 2206990000088468 ------------- 00 811836 000050000000 507903837788010099002206990000088468 507903837788 -------- 621354 S +17:14:02 Slot [111] | NOT FINANCIAL TRANSACTION +17:14:12 Slot [140] | NOT FINANCIAL TRANSACTION +17:14:23 Slot [124] | NOT FINANCIAL TRANSACTION +17:14:29 +Slot[123] 0200 010000 6213544002131669 ------------- 00 240495 000048000000 507900360237050003006213544002131669 507900360237 087865 220699 S +17:14:30 Slot [80] | NOT FINANCIAL TRANSACTION +17:14:33 Slot [147] | NOT FINANCIAL TRANSACTION +17:14:36 +Slot[117] 0200 010000 6688990108175306 ------------- 14 270762 000100000000 5079102707620264UDXH6688990108175306 507910270762 361391 180893 S +17:14:49 Slot [122] | NOT FINANCIAL TRANSACTION +17:14:55 Slot [162] | NOT FINANCIAL TRANSACTION +17:14:56 +Slot[161] 0200 011000 6213544000040177 ------------- 00 270765 000040000000 5079102707650421BKPH6213544000040177 507910270765 318591 180893 S +17:15:03 Slot [132] | NOT FINANCIAL TRANSACTION +17:15:04 Slot [143] | NOT FINANCIAL TRANSACTION +17:15:06 +Slot[145] 0200 301000 6688990106397506 ------------- 00 812260 000000000000 507905170370010129006688990106397506 507905170370 619750 621354 S +17:15:08 +Slot[154] 0200 010000 6213544001232419 ------------- 00 270767 000010000000 5079102707670401XSBR6213544001232419 507910270767 808892 180893 S +17:15:11 +Slot[166] 0200 011000 6688990040134965 ------------- 00 812285 000020000000 507904755528070011006688990040134965 507904755528 969419 621354 S +17:15:14 +Slot[120] 0200 300000 6688990103637607 ------------- 00 812315 000000000000 507903499662060022006688990103637607 507903499662 311723 621354 S +17:15:14 +Slot[150] 0420 011000 2206990000088468 0000000000000 00 811836 000050000000 507903837788010099002206990000088468 507903837788 -------- 621354 S +17:15:16 +Slot[153] 0200 010000 6213544001571899 ------------- 55 953152 000050000000 507902025671034140026213544001571899 507902025671 978890 668899 S +17:15:16 Slot [133] | NOT FINANCIAL TRANSACTION +17:15:26 Slot [110] | NOT FINANCIAL TRANSACTION +17:15:31 +Slot[158] 0200 011000 6688990040028514 ------------- 00 812383 000050000000 507903699746050045006688990040028514 507903699746 489399 621354 S +17:15:35 Slot [159] | NOT FINANCIAL TRANSACTION +17:15:37 Slot [142] | NOT FINANCIAL TRANSACTION +17:15:46 +Slot[167] 0200 010000 6213544001969705 ------------- 00 240498 000060000000 507900360239050003006213544001969705 507900360239 342271 220699 S +17:15:47 +Slot[146] 0200 011000 6213541000697261 ------------- 00 240881 000030000000 507900410464080003006213541000697261 507900410464 556521 220699 S +17:15:48 Slot [137] | NOT FINANCIAL TRANSACTION +17:15:49 +Slot[130] 0200 011000 2206990000088468 ------------- 00 812456 000050000000 507905006056010124002206990000088468 507905006056 683267 621354 S +17:15:51 +Slot[87] 0200 011000 2206990000088468 ------------- 91 811836 000050000000 507903837788010099002206990000088468 507903837788 647809 621354 S +17:15:51 +Slot[157] 0200 011000 6688990106397506 ------------- 00 812475 000030000000 507905170372010129006688990106397506 507905170372 492007 621354 S +17:15:58 +Slot[128] 0200 011000 6213544001970141 ------------- 00 209404 000055000000 507917209404195290016213544001970141 507917209404 129051 198901 S +17:15:59 +Slot[141] 0200 011000 6213544000040177 ------------- 00 270772 000005000000 5079102707720421BKPH6213544000040177 507910270772 645403 180893 S +17:16:05 Slot [175] | NOT FINANCIAL TRANSACTION +17:16:09 +Slot[170] 0200 301000 6688990108175306 ------------- 14 270773 032010151027 5079102707730264UDXH6688990108175306 507910270773 423450 180893 S +17:16:10 +Slot[151] 0200 010000 6213544001571899 ------------- 05 953172 000050000000 507902025673034140026213544001571899 507902025673 057818 668899 S +17:16:20 +Slot[172] 0200 011000 1808930500011291 ------------- 55 812599 000005000000 507903161484040026001808930500011291 507903161484 947861 621354 S +17:16:21 +Slot[171] 0200 010000 6213548000206316 ------------- 55 270777 000050000000 5079102707770522XYXH6213548000206316 507910270777 631421 180893 S +17:16:22 Slot [164] | NOT FINANCIAL TRANSACTION +17:16:25 +Slot[186] 0200 300000 6688990106552308 ------------- 00 812619 000000000000 507905200943070017006688990106552308 507905200943 732404 621354 S +17:16:33 Slot [139] | NOT FINANCIAL TRANSACTION +17:16:36 +Slot[126] 0200 010000 6688990103637607 ------------- 00 812678 000040000000 507903499664060022006688990103637607 507903499664 227154 621354 S +17:16:40 Slot [119] | NOT FINANCIAL TRANSACTION +17:16:44 Slot [148] | NOT FINANCIAL TRANSACTION +17:16:50 +Slot[202] 0200 010000 6213544002131669 ------------- 00 240501 000001000000 507900360241050003006213544002131669 507900360241 852189 220699 S +17:16:52 +Slot[182] 0200 011000 6213544000040177 ------------- 00 270780 000002000000 5079102707800421BKPH6213544000040177 507910270780 951255 180893 S +17:17:07 Slot [187] | NOT FINANCIAL TRANSACTION +17:17:07 Slot [176] | NOT FINANCIAL TRANSACTION +17:17:22 Slot [144] | NOT FINANCIAL TRANSACTION +17:17:32 +Slot[160] 0200 011000 6213544002138797 ------------- 00 209419 000020000000 507917209419195290016213544002138797 507917209419 174493 198901 S +17:17:34 +Slot[163] 0200 010000 6213545000828917 ------------- 00 270785 000050000000 5079102707850262PSLB6213545000828917 507910270785 596833 180893 S +17:17:37 +Slot[204] 0200 011000 1808930900004383 ------------- 00 812884 000050000000 507902606346050043001808930900004383 507902606346 204934 621354 S +17:17:44 Slot [203] | NOT FINANCIAL TRANSACTION +17:17:45 Slot [179] | NOT FINANCIAL TRANSACTION +17:17:49 +Slot[156] 0200 011000 6213544000040177 ------------- 51 270788 000002000000 5079102707880421BKPH6213544000040177 507910270788 134118 180893 S +17:17:55 +Slot[191] 0200 011000 1808930500011291 ------------- 00 812944 000005000000 507903161486040026001808930500011291 507903161486 755640 621354 S +17:18:00 Slot [192] | NOT FINANCIAL TRANSACTION +17:18:07 +Slot[190] 0200 302000 6688990108175306 ------------- 14 270790 032010170927 5079102707900264UDXH6688990108175306 507910270790 727137 180893 S +17:18:08 +Slot[135] 0200 010000 6213544001473005 ------------- 00 240504 000050000000 507900360243050003006213544001473005 507900360243 696133 220699 S +17:18:09 Slot [152] | NOT FINANCIAL TRANSACTION +17:18:10 +Slot[198] 0200 010000 6213544002231014 ------------- 55 953216 000100000000 507901614541030010076213544002231014 507901614541 958672 668899 S +17:18:18 Slot [196] | NOT FINANCIAL TRANSACTION +17:18:21 +Slot[155] 0200 301000 6213544000040177 ------------- 00 270792 032010171927 5079102707920421BKPH6213544000040177 507910270792 718424 180893 S +17:18:23 +Slot[181] 0200 010000 6213545000735278 ------------- 00 270795 000100000000 5079102707950121SKBR6213545000735278 507910270795 581600 180893 S +17:18:24 +Slot[201] 0200 011000 6213544002250964 ------------- 00 209428 000055000000 507917209428195290016213544002250964 507917209428 675341 198901 S +17:18:30 +Slot[214] 0200 301000 6213544000188638 ------------- 00 270797 032010173127 5079102707970368KMMX6213544000188638 507910270797 206850 180893 S +17:18:34 +Slot[165] 0200 012000 6213544001721759 ------------- 00 270798 000100000000 5079102707980243VTKS6213544001721759 507910270798 383864 180893 S +17:18:42 Slot [209] | NOT FINANCIAL TRANSACTION +17:18:50 Slot [195] | NOT FINANCIAL TRANSACTION +17:18:54 Slot [178] | NOT FINANCIAL TRANSACTION +17:19:04 +Slot[194] 0200 011000 6213544000040177 ------------- 51 270803 000002000000 5079102708030421BKPH6213544000040177 507910270803 990802 180893 S +17:19:05 +Slot[206] 0200 300000 6213544002231014 ------------- 55 953240 000000000000 507901614543030010076213544002231014 507901614543 921034 668899 S +17:19:11 Slot [193] | NOT FINANCIAL TRANSACTION +17:19:13 +Slot[184] 0200 011000 6213544002251285 ------------- 00 209438 000055000000 507917209438195290016213544002251285 507917209438 139488 198901 S +17:19:14 +Slot[212] 0200 010000 6213544001473005 ------------- 00 240507 000004000000 507900360245050003006213544001473005 507900360245 065073 220699 S +17:19:14 Slot [207] | NOT FINANCIAL TRANSACTION +17:19:30 Slot [213] | NOT FINANCIAL TRANSACTION +17:19:37 +Slot[221] 0200 012000 6213544001721759 ------------- 00 270807 000100000000 5079102708070243VTKS6213544001721759 507910270807 713677 180893 S +17:19:38 +Slot[230] 0200 011000 6688990108143908 ------------- 00 813425 000007000000 507904994923160021006688990108143908 507904994923 522068 621354 S +17:19:43 +Slot[183] 0200 301000 6213544000040177 ------------- 00 270808 032010184427 5079102708080421BKPH6213544000040177 507910270808 519947 180893 S +17:19:44 +Slot[169] 0200 300000 6688990106552308 ------------- 55 813453 000000000000 507905200945070017006688990106552308 507905200945 762306 621354 S +17:19:46 +Slot[205] 0200 012000 6688990040037606 ------------- 14 270809 000030000000 5079102708090262PSLB6688990040037606 507910270809 660784 180893 S +17:19:55 Slot [185] | NOT FINANCIAL TRANSACTION +17:19:55 Slot [149] | NOT FINANCIAL TRANSACTION +17:19:56 Slot [232] | NOT FINANCIAL TRANSACTION +17:19:57 +Slot[208] 0200 010000 6213544001532479 ------------- 51 953264 000020000000 507901963702030200196213544001532479 507901963702 045866 668899 S +17:19:59 +Slot[211] 0200 011000 6213544002131776 ------------- 00 209448 000055000000 507917209448195290016213544002131776 507917209448 438428 198901 S +17:20:11 Slot [180] | NOT FINANCIAL TRANSACTION +17:20:11 +Slot[222] 0200 300000 6213544001532479 ------------- 00 953267 000000000000 507901963703030200196213544001532479 507901963703 857860 668899 S +17:20:13 Slot [168] | NOT FINANCIAL TRANSACTION +17:20:16 +Slot[189] 0200 010000 6213544001835450 ------------- 00 240510 000055000000 507900360247050003006213544001835450 507900360247 043550 220699 S +17:20:22 Slot [229] | NOT FINANCIAL TRANSACTION +17:20:32 Slot [173] | NOT FINANCIAL TRANSACTION +17:20:34 +Slot[174] 0200 010000 6213545001042468 ------------- 00 953276 000100000000 507900844996030150036213545001042468 507900844996 488442 668899 S +17:20:47 Slot [246] | NOT FINANCIAL TRANSACTION +17:20:48 Slot [188] | NOT FINANCIAL TRANSACTION +17:21:00 Slot [223] | NOT FINANCIAL TRANSACTION +17:21:02 Slot [235] | NOT FINANCIAL TRANSACTION +17:21:12 Slot [227] | NOT FINANCIAL TRANSACTION +17:21:14 +Slot[215] 0200 011000 6213544002118138 ------------- 00 209469 000055000000 507917209469195290016213544002118138 507917209469 754289 198901 S +17:21:15 Slot [244] | NOT FINANCIAL TRANSACTION +17:21:22 +Slot[248] 0200 010000 6213544002118161 ------------- 00 240513 000049000000 507900360249050003006213544002118161 507900360249 056429 220699 S +17:21:22 Slot [243] | NOT FINANCIAL TRANSACTION +17:21:23 Slot [251] | NOT FINANCIAL TRANSACTION +17:21:25 Slot [242] | NOT FINANCIAL TRANSACTION +17:21:38 Slot [255] | NOT FINANCIAL TRANSACTION +17:21:43 +Slot[250] 0200 301000 6688990100193307 ------------- 00 813946 000000000000 507904789493070014006688990100193307 507904789493 254285 621354 S +17:21:49 Slot [177] | NOT FINANCIAL TRANSACTION +17:22:03 +Slot[226] 0200 011000 6213544002250964 ------------- 51 209475 000005000000 507917209475195290016213544002250964 507917209475 786394 198901 S +17:22:04 Slot [233] | NOT FINANCIAL TRANSACTION +17:22:05 Slot [237] | NOT FINANCIAL TRANSACTION +17:22:17 Slot [260] | NOT FINANCIAL TRANSACTION +17:22:17 Slot [238] | NOT FINANCIAL TRANSACTION +17:22:17 +Slot[200] 0200 010000 6213544001473161 ------------- 00 240516 000053000000 507900360251050003006213544001473161 507900360251 359804 220699 S +17:22:22 +Slot[234] 0200 301000 6213544002250964 ------------- 00 209476 000000000000 507917209476195290016213544002250964 507917209476 986700 198901 S +17:22:31 +Slot[253] 0200 010000 6213545000513212 ------------- 00 270827 000100000000 5079102708270401XSBR6213545000513212 507910270827 637053 180893 S +17:22:32 +Slot[216] 0200 301000 6688990101624706 ------------- 00 814187 000000000000 507904789494070014006688990101624706 507904789494 138142 621354 S +17:22:41 Slot [259] | NOT FINANCIAL TRANSACTION +17:22:53 +Slot[249] 0200 011000 6213544002226303 ------------- 00 209483 000005000000 507917209483195290016213544002226303 507917209483 017684 198901 S +17:22:53 Slot [263] | NOT FINANCIAL TRANSACTION +17:23:06 Slot [210] | NOT FINANCIAL TRANSACTION +17:23:10 Slot [261] | NOT FINANCIAL TRANSACTION +17:23:19 Slot [269] | NOT FINANCIAL TRANSACTION +17:23:20 +Slot[225] 0200 010000 6688990100193307 ------------- 00 814400 000010000000 507904789496070014006688990100193307 507904789496 456741 621354 S +17:23:21 Slot [199] | NOT FINANCIAL TRANSACTION +17:23:31 Slot [270] | NOT FINANCIAL TRANSACTION +17:23:42 Slot [275] | NOT FINANCIAL TRANSACTION +17:23:53 Slot [240] | NOT FINANCIAL TRANSACTION +17:24:00 +Slot[218] 0200 311000 6213544002102272 ------------- 00 021183 000000000000 507900263127010014006213544002102272 507900263127 223389 220699 S +17:24:03 Slot [197] | NOT FINANCIAL TRANSACTION +17:24:13 Slot [265] | NOT FINANCIAL TRANSACTION +17:24:15 Slot [247] | NOT FINANCIAL TRANSACTION +17:24:17 +Slot[256] 0200 011000 6213544002199872 ------------- 00 209500 000040000000 507917209500195290016213544002199872 507917209500 312802 198901 S +17:24:18 +Slot[228] 0200 010000 6213544000158847 ------------- 00 953370 000100000000 507901856605033110016213544000158847 507901856605 944165 668899 S +17:24:19 +Slot[274] 0200 301000 6213543000164573 ------------- 00 953371 000000000000 507901422837033140016213543000164573 507901422837 232907 668899 S +17:24:21 Slot [264] | NOT FINANCIAL TRANSACTION +17:24:27 +Slot[220] 0200 010000 6213548000243376 ------------- 00 270836 000010000000 5079102708360523XYNG6213548000243376 507910270836 589764 180893 S +17:24:31 +Slot[231] 0200 301000 6688990040072561 ------------- 00 814760 000000000000 507903499665060022006688990040072561 507903499665 524067 621354 S +17:24:40 Slot [273] | NOT FINANCIAL TRANSACTION +17:24:44 +Slot[279] 0200 010000 1989010003170349 ------------- 00 953377 000020000000 507902104479030200221989010003170349 507902104479 046437 668899 S +17:24:48 +Slot[239] 0200 301000 6688990040140806 ------------- 00 814843 000000000000 507904755534070011006688990040140806 507904755534 017366 621354 S +17:24:51 Slot [272] | NOT FINANCIAL TRANSACTION +17:24:54 Slot [254] | NOT FINANCIAL TRANSACTION +17:24:56 +Slot[252] 0200 011000 6213544000431376 ------------- 55 021186 000010000000 507900263129010014006213544000431376 507900263129 117860 220699 S +17:25:01 Slot [282] | NOT FINANCIAL TRANSACTION +17:25:07 +Slot[266] 0200 010000 6213541000725310 ------------- 00 953390 000020000000 507900869009030180016213541000725310 507900869009 478153 668899 S +17:25:12 +Slot[241] 0200 011000 6213545001000714 ------------- 00 270844 000020000000 5079102708440262PSLB6213545001000714 507910270844 330602 180893 S +17:25:17 +Slot[276] 0200 011000 6213544002225826 ------------- 00 209520 000055000000 507917209520195290016213544002225826 507917209520 294620 198901 S +17:25:19 +Slot[280] 0200 010000 6213544001756763 ------------- 00 953398 000010000000 507901614554030010076213544001756763 507901614554 102846 668899 S +17:25:20 Slot [224] | NOT FINANCIAL TRANSACTION +17:25:23 Slot [258] | NOT FINANCIAL TRANSACTION +17:25:24 Slot [219] | NOT FINANCIAL TRANSACTION +17:25:31 +Slot[284] 0200 011000 6213543000192632 ------------- 51 223761 000019000000 507900118784010011006213543000192632 507900118784 432039 220699 S +17:25:39 Slot [290] | NOT FINANCIAL TRANSACTION +17:25:41 +Slot[287] 0200 011000 6213548000169878 ------------- 00 021189 000010000000 507900263131010014006213548000169878 507900263131 508758 220699 S +17:25:49 +Slot[277] 0200 301000 6213548000205987 ------------- 00 270846 032010245127 5079102708460523XYNG6213548000205987 507910270846 529915 180893 S +17:26:01 Slot [271] | NOT FINANCIAL TRANSACTION +17:26:08 +Slot[267] 0200 011000 6688990040140806 ------------- 00 815202 000060000000 507904755536070011006688990040140806 507904755536 599841 621354 S +17:26:11 Slot [245] | NOT FINANCIAL TRANSACTION +17:26:22 +Slot[236] 0200 010000 6688990103595904 ------------- 00 815256 000040000000 507903489478060021006688990103595904 507903489478 450860 621354 S +17:26:22 Slot [294] | NOT FINANCIAL TRANSACTION +17:26:25 Slot [303] | NOT FINANCIAL TRANSACTION +17:26:25 Slot [217] | NOT FINANCIAL TRANSACTION +17:26:28 Slot [293] | NOT FINANCIAL TRANSACTION +17:26:31 +Slot[298] 0200 010000 6213544001748166 ------------- 00 240519 000056000000 507900360253050003006213544001748166 507900360253 290504 220699 S +17:26:38 +Slot[300] 0200 011000 1808930200045995 ------------- 55 815320 000020000000 507903625415160015001808930200045995 507903625415 776364 621354 S +17:26:41 +Slot[299] 0200 011000 6213543000192632 ------------- 51 270849 000019000000 5079102708490104NUOL6213543000192632 507910270849 174109 180893 S +17:26:43 +Slot[257] 0200 011000 1808930100002534 ------------- 00 815338 000010000000 507903676031160020001808930100002534 507903676031 264729 621354 S +17:26:53 Slot [278] | NOT FINANCIAL TRANSACTION +17:26:57 +Slot[308] 0200 010000 6213541000220189 ------------- 00 270851 000050000000 5079102708510301LPBX6213541000220189 507910270851 513974 180893 S +17:27:06 +Slot[281] 0200 301000 6688990103109706 ------------- 00 815440 000000000000 507902925827120015006688990103109706 507902925827 611468 621354 S +17:27:08 +Slot[295] 0200 010000 6688990103252506 ------------- 00 815442 000100000000 507904154105200010006688990103252506 507904154105 818880 621354 S +17:27:10 +Slot[286] 0200 301000 6213544002225875 ------------- 00 209555 000000000000 507917209555195290016213544002225875 507917209555 096896 198901 S +17:27:11 +Slot[296] 0200 011000 1808930200045995 ------------- 00 815444 000020000000 507903625417160015001808930200045995 507903625417 140423 621354 S +17:27:15 Slot [283] | NOT FINANCIAL TRANSACTION +17:27:21 +Slot[306] 0200 011000 6213548000205987 ------------- 00 270856 000020000000 5079102708560523XYNG6213548000205987 507910270856 229690 180893 S +17:27:25 +Slot[311] 0200 010000 6213544002087234 ------------- 00 953450 000050000000 507902025675034140026213544002087234 507902025675 780288 668899 S +17:27:27 Slot [312] | NOT FINANCIAL TRANSACTION +17:27:30 Slot [316] | NOT FINANCIAL TRANSACTION +17:27:30 Slot [307] | NOT FINANCIAL TRANSACTION +17:27:44 +Slot[310] 0200 010000 6688990108435007 ------------- 00 815589 000040000000 507903489480060021006688990108435007 507903489480 404126 621354 S +17:27:45 Slot [288] | NOT FINANCIAL TRANSACTION +17:27:50 +Slot[317] 0200 010000 6213543000088038 ------------- 00 953460 000050000000 507900869011030180016213543000088038 507900869011 545949 668899 S +17:27:56 +Slot[318] 0200 011000 6213543000192632 ------------- 00 270861 000005000000 5079102708610104NUOL6213543000192632 507910270861 449056 180893 S +17:28:00 +Slot[322] 0200 301000 6213544000982022 ------------- 55 953467 000000000000 507901028123033100026213544000982022 507901028123 102230 668899 S +17:28:06 +Slot[325] 0200 011000 6688990103109706 ------------- 00 815668 000010000000 507902925829120015006688990103109706 507902925829 708483 621354 S +17:28:07 +Slot[297] 0200 012000 6688990040072561 ------------- 00 815676 000100000000 507903499673060022006688990040072561 507903499673 281276 621354 S +17:28:08 Slot [315] | NOT FINANCIAL TRANSACTION +17:28:22 Slot [289] | NOT FINANCIAL TRANSACTION +17:28:29 Slot [304] | NOT FINANCIAL TRANSACTION +17:28:33 Slot [326] | NOT FINANCIAL TRANSACTION +17:28:36 Slot [291] | NOT FINANCIAL TRANSACTION +17:28:39 +Slot[285] 0200 011000 6213544002225875 ------------- 00 209575 000050000000 507917209575195290016213544002225875 507917209575 843122 198901 S +17:28:44 Slot [331] | NOT FINANCIAL TRANSACTION +17:28:46 +Slot[327] 0200 300000 6688990103528608 ------------- 00 815835 000000000000 507903489481060021006688990103528608 507903489481 849145 621354 S +17:28:47 +Slot[301] 0200 011000 6213543000192632 ------------- 00 270867 000004000000 5079102708670104NUOL6213543000192632 507910270867 110979 180893 S +17:28:50 +Slot[305] 0200 301000 6213544000982022 ------------- 55 953482 000000000000 507901028125033100026213544000982022 507901028125 296908 668899 S +17:28:51 +Slot[302] 0200 010000 6213542000049446 ------------- 00 953485 000030000000 507900146831030200056213542000049446 507900146831 610972 668899 S +17:29:00 Slot [314] | NOT FINANCIAL TRANSACTION +17:29:11 +Slot[292] 0200 011000 6688990040072561 ------------- 00 815932 000100000000 507903499675060022006688990040072561 507903499675 968763 621354 S +17:29:12 Slot [335] | NOT FINANCIAL TRANSACTION +17:29:22 +Slot[333] 0200 301000 6213544000982022 ------------- 75 953498 000000000000 507901028127033100026213544000982022 507901028127 754643 668899 S +17:29:27 Slot [262] | NOT FINANCIAL TRANSACTION +17:29:31 Slot [334] | NOT FINANCIAL TRANSACTION +17:29:37 Slot [336] | NOT FINANCIAL TRANSACTION +17:29:41 Slot [321] | NOT FINANCIAL TRANSACTION +17:29:47 +Slot[341] 0200 010000 6688990600570707 ------------- 14 270875 000050000000 5079102708750261PSL16688990600570707 507910270875 351344 180893 S +17:29:54 Slot [323] | NOT FINANCIAL TRANSACTION +17:29:59 Slot [320] | NOT FINANCIAL TRANSACTION +17:30:10 Slot [268] | NOT FINANCIAL TRANSACTION +17:30:11 +Slot[342] 0200 010000 6213545000822241 ------------- 00 270881 000010000000 5079102708810262PSLB6213545000822241 507910270881 940362 180893 S +17:30:13 +Slot[339] 0200 011000 6688990040072561 ------------- 55 816189 000100000000 507903499677060022006688990040072561 507903499677 436379 621354 S +17:30:20 Slot [352] | NOT FINANCIAL TRANSACTION +17:30:30 +Slot[309] 0200 010000 6213542000053240 ------------- 00 270886 000050000000 5079102708860102SAPA6213542000053240 507910270886 483950 180893 S +17:30:33 Slot [348] | NOT FINANCIAL TRANSACTION +17:30:41 Slot [329] | NOT FINANCIAL TRANSACTION +17:30:46 Slot [347] | NOT FINANCIAL TRANSACTION +17:30:51 Slot [328] | NOT FINANCIAL TRANSACTION +17:31:02 Slot [346] | NOT FINANCIAL TRANSACTION +17:31:05 +Slot[350] 0200 010000 6688990600570707 ------------- 14 270894 000050000000 5079102708940261PSL16688990600570707 507910270894 463544 180893 S +17:31:11 +Slot[337] 0200 012000 6688990103528608 ------------- 00 816440 000100000000 507903489484060021006688990103528608 507903489484 450725 621354 S +17:31:17 +Slot[357] 0200 011000 6688990040072561 ------------- 55 816472 000100000000 507903499679060022006688990040072561 507903499679 932920 621354 S +17:31:19 Slot [332] | NOT FINANCIAL TRANSACTION +17:31:22 Slot [319] | NOT FINANCIAL TRANSACTION +17:31:27 +Slot[365] 0200 010000 6688990106839705 ------------- 61 270899 000200000000 5079102708990201ADD16688990106839705 507910270899 552288 180893 S +17:31:34 Slot [356] | NOT FINANCIAL TRANSACTION +17:31:35 Slot [330] | NOT FINANCIAL TRANSACTION +17:31:41 Slot [366] | NOT FINANCIAL TRANSACTION +17:31:43 +Slot[371] 0200 011000 6688990040072561 ------------- 00 816563 000100000000 507903499681060022006688990040072561 507903499681 611976 621354 S +17:31:51 Slot [313] | NOT FINANCIAL TRANSACTION +17:31:51 Slot [343] | NOT FINANCIAL TRANSACTION +17:32:03 Slot [378] | NOT FINANCIAL TRANSACTION +17:32:13 Slot [373] | NOT FINANCIAL TRANSACTION +17:32:16 +Slot[345] 0200 302000 6688990103528608 ------------- 00 816707 000000000000 507903489485060021006688990103528608 507903489485 320343 621354 S +17:32:29 Slot [340] | NOT FINANCIAL TRANSACTION +17:32:37 Slot [324] | NOT FINANCIAL TRANSACTION +17:32:37 +Slot[353] 0200 010000 6688990600570707 ------------- 14 270909 000050000000 5079102709090261PSL16688990600570707 507910270909 318342 180893 S +17:32:38 +Slot[382] 0200 310000 6688990040153627 ------------- 14 177384 000000000000 507900010253010001006688990040153627 507900010253 305049 220699 S +17:32:42 +Slot[363] 0200 010000 6688990103656003 ------------- 61 270910 000150000000 5079102709100467PSLK6688990103656003 507910270910 073203 180893 S +17:32:46 +Slot[355] 0200 011000 6688990040072561 ------------- 00 816796 000030000000 507903499683060022006688990040072561 507903499683 651662 621354 S +17:32:55 Slot [344] | NOT FINANCIAL TRANSACTION +17:32:56 Slot [370] | NOT FINANCIAL TRANSACTION +17:33:00 +Slot[379] 0200 011000 6688990108357003 ------------- 65 816850 000100000000 507903676058160020006688990108357003 507903676058 180892 621354 S +17:33:05 Slot [358] | NOT FINANCIAL TRANSACTION +17:33:12 +Slot[369] 0200 311000 6688990040153627 ------------- 14 177386 000000000000 507900010255010001006688990040153627 507900010255 891388 220699 S +17:33:16 Slot [338] | NOT FINANCIAL TRANSACTION +17:33:20 +Slot[360] 0200 011000 6688990103528608 ------------- 00 816939 000025000000 507903489487060021006688990103528608 507903489487 685167 621354 S +17:33:27 Slot [354] | NOT FINANCIAL TRANSACTION +17:33:33 +Slot[396] 0200 010000 6688990106839705 ------------- 14 270916 000100000000 5079102709160201ADD16688990106839705 507910270916 421390 180893 S +17:33:39 Slot [390] | NOT FINANCIAL TRANSACTION +17:33:42 Slot [374] | NOT FINANCIAL TRANSACTION +17:33:51 +Slot[361] 0200 010000 6688990103656003 ------------- 14 270919 000100000000 5079102709190467PSLK6688990103656003 507910270919 120745 180893 S +17:33:52 +Slot[389] 0200 301000 6688990040153627 ------------- 00 817036 000000000000 507903919615010107006688990040153627 507903919615 520561 621354 S +17:33:57 +Slot[351] 0200 010000 6688990700253006 ------------- 14 270921 000050000000 5079102709210262PSLB6688990700253006 507910270921 603908 180893 S +17:34:01 Slot [410] | NOT FINANCIAL TRANSACTION +17:34:04 +Slot[376] 0200 010000 6688990103295406 ------------- 00 817093 000100000000 507903499685060022006688990103295406 507903499685 779949 621354 S +17:34:06 +Slot[383] 0200 300000 6688990100315306 ------------- 00 817096 000000000000 507904965861150011006688990100315306 507904965861 519045 621354 S +17:34:07 +Slot[359] 0200 011000 6213544002226311 ------------- 00 209650 000005000000 507917209650195290016213544002226311 507917209650 964211 198901 S +17:34:09 Slot [400] | NOT FINANCIAL TRANSACTION +17:34:25 Slot [393] | NOT FINANCIAL TRANSACTION +17:34:34 +Slot[395] 0200 011000 1888880000087783 ------------- 07 817174 000020000000 507903444091060017001888880000087783 507903444091 959825 621354 S +17:34:37 Slot [414] | NOT FINANCIAL TRANSACTION +17:34:41 Slot [413] | NOT FINANCIAL TRANSACTION +17:34:42 +Slot[397] 0200 011000 6688990040153627 ------------- 00 817203 000005000000 507903919617010107006688990040153627 507903919617 755518 621354 S +17:34:49 Slot [349] | NOT FINANCIAL TRANSACTION +17:34:54 Slot [394] | NOT FINANCIAL TRANSACTION +17:35:04 Slot [418] | NOT FINANCIAL TRANSACTION +17:35:06 Slot [387] | NOT FINANCIAL TRANSACTION +17:35:09 +Slot[372] 0200 011000 1888880000087783 ------------- 07 817291 000020000000 507903444093060017001888880000087783 507903444093 004366 621354 S +17:35:11 +Slot[399] 0200 010000 6688990103295406 ------------- 00 817297 000100000000 507903499687060022006688990103295406 507903499687 469848 621354 S +17:35:17 +Slot[368] 0200 301000 6688990106839705 ------------- 14 270925 032010341927 5079102709250201ADD16688990106839705 507910270925 078721 180893 S +17:35:18 +Slot[406] 0200 011000 6213544002113436 ------------- 00 209669 000005000000 507917209669195290016213544002113436 507917209669 969186 198901 S +17:35:20 +Slot[419] 0200 011000 6688990102884002 ------------- 00 817328 000028000000 507903406096060013006688990102884002 507903406096 162577 621354 S +17:35:26 Slot [411] | NOT FINANCIAL TRANSACTION +17:35:33 +Slot[380] 0200 010000 6213543000241314 ------------- 51 953617 000100000000 507901161678032170016213543000241314 507901161678 344744 668899 S +17:35:36 Slot [384] | NOT FINANCIAL TRANSACTION +17:35:43 Slot [407] | NOT FINANCIAL TRANSACTION +17:35:47 Slot [416] | NOT FINANCIAL TRANSACTION +17:35:59 +Slot[401] 0200 301000 6688990105299505 ------------- 55 817471 000000000000 507905291423200014006688990105299505 507905291423 699607 621354 S +17:36:03 Slot [433] | NOT FINANCIAL TRANSACTION +17:36:04 +Slot[381] 0200 010000 6213543000241314 ------------- 00 953627 000010000000 507901161679032170016213543000241314 507901161679 582602 668899 S +17:36:12 Slot [420] | NOT FINANCIAL TRANSACTION +17:36:13 Slot [415] | NOT FINANCIAL TRANSACTION +17:36:20 +Slot[398] 0200 301000 6688990105299505 ------------- 55 817531 000000000000 507905291424200014006688990105299505 507905291424 133308 621354 S +17:36:22 Slot [409] | NOT FINANCIAL TRANSACTION +17:36:25 +Slot[364] 0200 010000 6688990103295406 ------------- 00 817553 000100000000 507903499689060022006688990103295406 507903499689 758533 621354 S +17:36:27 +Slot[425] 0200 011000 6213544002113436 ------------- 00 209690 000045000000 507917209690195290016213544002113436 507917209690 709579 198901 S +17:36:29 Slot [388] | NOT FINANCIAL TRANSACTION +17:36:36 +Slot[367] 0200 011000 6688990060007604 ------------- 00 817595 000030000000 507903573902090014006688990060007604 507903573902 236789 621354 S +17:36:38 +Slot[430] 0200 010000 6688990602708909 ------------- 14 270930 000050000000 5079102709300201ADD16688990602708909 507910270930 054085 180893 S +17:36:45 Slot [441] | NOT FINANCIAL TRANSACTION +17:36:49 Slot [437] | NOT FINANCIAL TRANSACTION +17:36:55 +Slot[403] 0200 010000 1888880000031658 ------------- 00 817653 000020000000 507904755556070011001888880000031658 507904755556 532264 621354 S +17:36:59 +Slot[402] 0200 301000 6688990105299505 ------------- 75 817706 000000000000 507905291425200014006688990105299505 507905291425 822407 621354 S +17:37:00 Slot [362] | NOT FINANCIAL TRANSACTION +17:37:11 Slot [385] | NOT FINANCIAL TRANSACTION +17:37:17 +Slot[408] 0200 010000 6688990040119396 ------------- 14 270932 000010000000 5079102709320361BLTB6688990040119396 507910270932 418916 180893 S +17:37:18 Slot [375] | NOT FINANCIAL TRANSACTION +17:37:27 Slot [392] | NOT FINANCIAL TRANSACTION +17:37:38 Slot [450] | NOT FINANCIAL TRANSACTION +17:37:43 +Slot[417] 0200 010000 6213544001405106 ------------- 00 223777 000010000000 507900118794010011006213544001405106 507900118794 938000 220699 S +17:37:45 +Slot[412] 0200 301000 6213544002251145 ------------- 00 209710 000000000000 507917209710195290016213544002251145 507917209710 684872 198901 S +17:37:47 Slot [447] | NOT FINANCIAL TRANSACTION +17:37:51 +Slot[391] 0200 010000 6688990040119396 ------------- 14 270939 000010000000 5079102709390361BLTB6688990040119396 507910270939 333979 180893 S +17:37:54 +Slot[405] 0200 010000 6213545000392153 ------------- 00 270941 000100000000 5079102709410243VTKS6213545000392153 507910270941 747927 180893 S +17:38:05 Slot [429] | NOT FINANCIAL TRANSACTION +17:38:07 Slot [443] | NOT FINANCIAL TRANSACTION +17:38:12 +Slot[386] 0200 010000 6213548000238921 ------------- 00 953678 000030000000 507900502548030110016213548000238921 507900502548 100110 668899 S +17:38:21 Slot [377] | NOT FINANCIAL TRANSACTION +17:38:23 +Slot[446] 0200 301000 6213544002251145 ------------- 00 209719 000000000000 507917209719195290016213544002251145 507917209719 026481 198901 S +17:38:23 Slot [404] | NOT FINANCIAL TRANSACTION +17:38:32 Slot [456] | NOT FINANCIAL TRANSACTION +17:38:33 +Slot[434] 0200 301000 6688990105299505 ------------- 75 818030 000000000000 507905291426200014006688990105299505 507905291426 472811 621354 S +17:38:35 +Slot[424] 0200 011000 6213544002251145 ------------- 00 209725 000050000000 507917209725195290016213544002251145 507917209725 964393 198901 S +17:38:44 +Slot[445] 0200 011000 6688990602446104 ------------- 00 818076 000010000000 507905262434190009006688990602446104 507905262434 025418 621354 S +17:38:49 Slot [442] | NOT FINANCIAL TRANSACTION +17:38:50 +Slot[438] 0200 011000 1808931300000575 ------------- 00 818091 000010000000 507903444095060017001808931300000575 507903444095 275639 621354 S +17:38:53 Slot [435] | NOT FINANCIAL TRANSACTION +17:39:04 Slot [427] | NOT FINANCIAL TRANSACTION +17:39:09 +Slot[431] 0200 010000 6213548000238921 ------------- 00 953699 000010000000 507900502550030110016213548000238921 507900502550 776460 668899 S +17:39:11 +Slot[462] 0200 010000 6213544001405106 ------------- 00 223780 000010000000 507900118796010011006213544001405106 507900118796 643172 220699 S +17:39:14 Slot [428] | NOT FINANCIAL TRANSACTION +17:39:25 Slot [421] | NOT FINANCIAL TRANSACTION +17:39:28 Slot [422] | NOT FINANCIAL TRANSACTION +17:39:31 +Slot[451] 0200 301000 6688990602446104 ------------- 00 818241 000000000000 507905262435190009006688990602446104 507905262435 869724 621354 S +17:39:35 Slot [457] | NOT FINANCIAL TRANSACTION +17:39:39 +Slot[465] 0200 301000 6213544001641478 ------------- 00 209743 000000000000 507917209743195290016213544001641478 507917209743 320486 198901 S +17:39:46 Slot [426] | NOT FINANCIAL TRANSACTION +17:39:51 Slot [444] | NOT FINANCIAL TRANSACTION +17:39:55 Slot [436] | NOT FINANCIAL TRANSACTION +17:39:57 Slot [423] | NOT FINANCIAL TRANSACTION +17:40:08 Slot [458] | NOT FINANCIAL TRANSACTION +17:40:14 +Slot[452] 0200 011000 6213544001641478 ------------- 00 209753 000050000000 507917209753195290016213544001641478 507917209753 522120 198901 S +17:40:19 Slot [459] | NOT FINANCIAL TRANSACTION +17:40:23 +Slot[439] 0200 011000 1888880000000505 ------------- 00 818399 000050000000 507905262437190009001888880000000505 507905262437 964639 621354 S +17:40:33 Slot [466] | NOT FINANCIAL TRANSACTION +17:40:35 Slot [468] | NOT FINANCIAL TRANSACTION +17:40:39 +Slot[455] 0200 301000 6213544001641478 ------------- 00 209758 000000000000 507917209758195290016213544001641478 507917209758 043013 198901 S +17:40:44 +Slot[475] 0200 301000 1888880000001743 ------------- 00 818503 000000000000 507904180511190005001888880000001743 507904180511 283281 621354 S +17:40:46 Slot [460] | NOT FINANCIAL TRANSACTION +17:40:53 Slot [495] | NOT FINANCIAL TRANSACTION +17:40:56 +Slot[440] 0200 011000 1808931300012448 ------------- 00 818537 000010000000 507903640176160017001808931300012448 507903640176 954339 621354 S +17:40:58 +Slot[482] 0200 010000 6213544000852936 ------------- 00 953751 000070000000 507900234124030100016213544000852936 507900234124 416404 668899 S +17:41:02 Slot [432] | NOT FINANCIAL TRANSACTION +17:41:13 Slot [449] | NOT FINANCIAL TRANSACTION +17:41:23 Slot [488] | NOT FINANCIAL TRANSACTION +17:41:24 Slot [453] | NOT FINANCIAL TRANSACTION +17:41:35 Slot [470] | NOT FINANCIAL TRANSACTION +17:41:38 Slot [484] | NOT FINANCIAL TRANSACTION +17:41:46 Slot [480] | NOT FINANCIAL TRANSACTION +17:41:51 +Slot[463] 0200 011000 1888880000001743 ------------- 00 818738 000020000000 507904180513190005001888880000001743 507904180513 580660 621354 S +17:41:55 Slot [471] | NOT FINANCIAL TRANSACTION +17:41:56 +Slot[490] 0200 010000 6688990107031401 ------------- 00 818783 000100000000 507903444097060017006688990107031401 507903444097 492106 621354 S +17:41:57 Slot [448] | NOT FINANCIAL TRANSACTION +17:42:08 Slot [479] | NOT FINANCIAL TRANSACTION +17:42:19 Slot [0] | NOT FINANCIAL TRANSACTION +17:42:20 Slot [4] | NOT FINANCIAL TRANSACTION +17:42:25 +Slot[493] 0200 301000 6688990040118976 ------------- 00 818888 000000000000 507903398172060012006688990040118976 507903398172 775376 621354 S +17:42:30 Slot [2] | NOT FINANCIAL TRANSACTION +17:42:43 Slot [1] | NOT FINANCIAL TRANSACTION +17:42:46 Slot [498] | NOT FINANCIAL TRANSACTION +17:42:57 Slot [473] | NOT FINANCIAL TRANSACTION +17:42:57 Slot [476] | NOT FINANCIAL TRANSACTION +17:43:13 +Slot[489] 0200 010000 1808930700015100 ------------- 00 953817 000020000000 507902093444030200211808930700015100 507902093444 306434 668899 S +17:43:18 +Slot[477] 0200 302000 6688990040118976 ------------- 00 819045 000000000000 507903398173060012006688990040118976 507903398173 706453 621354 S +17:43:20 Slot [485] | NOT FINANCIAL TRANSACTION +17:43:25 +Slot[14] 0200 011000 6213544002225834 ------------- 00 209788 000055000000 507917209788195290016213544002225834 507917209788 581565 198901 S +17:43:27 +Slot[483] 0200 012000 1999990000015159 ------------- 00 819051 000100000000 507902706626140009001999990000015159 507902706626 427381 621354 S +17:43:34 Slot [486] | NOT FINANCIAL TRANSACTION +17:43:45 Slot [474] | NOT FINANCIAL TRANSACTION +17:43:48 Slot [472] | NOT FINANCIAL TRANSACTION +17:43:53 +Slot[6] 0200 300000 6688990108430503 ------------- 00 819169 000000000000 507903499690060022006688990108430503 507903499690 236864 621354 S +17:43:56 Slot [492] | NOT FINANCIAL TRANSACTION +17:43:57 +Slot[16] 0200 010000 6688990040118976 ------------- 00 819179 000030000000 507903398175060012006688990040118976 507903398175 819492 621354 S +17:43:59 Slot [13] | NOT FINANCIAL TRANSACTION +17:44:03 +Slot[454] 0200 010000 6213545000809024 ------------- 00 953836 000010000000 507901028132033100026213545000809024 507901028132 402137 668899 S +17:44:05 +Slot[12] 0200 010000 6688990104078306 ------------- 00 819213 000010000000 507903625454160015006688990104078306 507903625454 044388 621354 S +17:44:15 +Slot[22] 0200 011000 1808931700019191 ------------- 00 819240 000020000000 507904795780070015001808931700019191 507904795780 638261 621354 S +17:44:17 +Slot[469] 0200 011000 6688990105287500 ------------- 00 819265 000015000000 507902606389050043006688990105287500 507902606389 209959 621354 S +17:44:19 Slot [494] | NOT FINANCIAL TRANSACTION +17:44:22 +Slot[17] 0200 010000 6688990107031401 ------------- 00 819277 000100000000 507903444100060017006688990107031401 507903444100 686871 621354 S +17:44:23 +Slot[491] 0200 301000 6213544001555926 ------------- 00 209802 000000000000 507917209802195290016213544001555926 507917209802 160832 198901 S +17:44:25 +Slot[29] 0200 311000 6213544001144887 ------------- 00 010438 000000000000 507900220664050002006213544001144887 507900220664 201850 220699 S +17:44:29 +Slot[10] 0200 013000 1999990000015159 ------------- 00 819296 000100000000 507902706628140009001999990000015159 507902706628 113410 621354 S +17:44:30 Slot [499] | NOT FINANCIAL TRANSACTION +17:44:40 +Slot[481] 0200 011000 6213544001555926 ------------- 00 209808 000020000000 507917209808195290016213544001555926 507917209808 104233 198901 S +17:44:41 Slot [23] | NOT FINANCIAL TRANSACTION +17:44:51 Slot [31] | NOT FINANCIAL TRANSACTION +17:44:53 Slot [35] | NOT FINANCIAL TRANSACTION +17:44:55 Slot [3] | NOT FINANCIAL TRANSACTION +17:45:00 +Slot[11] 0200 011000 6213544001144887 ------------- 00 010439 000030000000 507900220665050002006213544001144887 507900220665 554012 220699 S +17:45:01 Slot [496] | NOT FINANCIAL TRANSACTION +17:45:02 Slot [33] | NOT FINANCIAL TRANSACTION +17:45:09 +Slot[21] 0200 301000 6213541000356363 ------------- 00 270963 032010441027 5079102709630106NAXA6213541000356363 507910270963 849961 180893 S +17:45:10 +Slot[30] 0200 011000 6213544000282522 ------------- 00 259332 000100000000 507900040649010004006213544000282522 507900040649 538429 220699 S +17:45:19 +Slot[9] 0200 301000 6213544002117767 ------------- 00 209816 000000000000 507917209816195290016213544002117767 507917209816 515820 198901 S +17:45:20 +Slot[461] 0200 301000 1808930200049179 ------------- 00 819507 000000000000 507903863724010102001808930200049179 507903863724 899585 621354 S +17:45:22 +Slot[45] 0200 010000 6213544002005871 ------------- 00 270965 000010000000 5079102709650467PSLK6213544002005871 507910270965 680652 180893 S +17:45:23 +Slot[37] 0200 013000 1999990000015159 ------------- 00 819508 000100000000 507902706630140009001999990000015159 507902706630 014152 621354 S +17:45:25 +Slot[36] 0200 011000 6688990030011447 ------------- 00 209819 000020000000 507917209819015290036688990030011447 507917209819 183584 198901 S +17:45:28 +Slot[40] 0200 010000 6213545000610786 ------------- 00 953860 000100000000 507902475749030200326213545000610786 507902475749 515808 668899 S +17:45:33 Slot [18] | NOT FINANCIAL TRANSACTION +17:45:44 Slot [43] | NOT FINANCIAL TRANSACTION +17:45:45 +Slot[497] 0200 010000 6688990040039669 ------------- 00 819623 000050000000 507905271811020029006688990040039669 507905271811 220266 621354 S +17:45:46 +Slot[8] 0200 011000 6213544002117767 ------------- 00 209826 000020000000 507917209826195290016213544002117767 507917209826 546131 198901 S +17:45:54 Slot [28] | NOT FINANCIAL TRANSACTION +17:45:58 Slot [55] | NOT FINANCIAL TRANSACTION +17:46:02 +Slot[467] 0200 010000 6213541000356363 ------------- 00 270970 000010000000 5079102709700106NAXA6213541000356363 507910270970 161222 180893 S +17:46:03 Slot [7] | NOT FINANCIAL TRANSACTION +17:46:16 +Slot[52] 0200 301000 1808930200049179 ------------- 00 819724 000000000000 507903863725010102001808930200049179 507903863725 293671 621354 S +17:46:20 +Slot[61] 0200 010000 6213544001296976 ------------- 00 270973 000100000000 5079102709730528LPBP6213544001296976 507910270973 861871 180893 S +17:46:23 Slot [44] | NOT FINANCIAL TRANSACTION +17:46:31 Slot [50] | NOT FINANCIAL TRANSACTION +17:46:31 +Slot[25] 0200 010000 6213545000610786 ------------- 00 953888 000100000000 507902475751030200326213545000610786 507902475751 954492 668899 S +17:46:39 +Slot[60] 0200 301000 6213544002158258 ------------- 00 209845 000000000000 507917209845195290016213544002158258 507917209845 689958 198901 S +17:46:42 Slot [15] | NOT FINANCIAL TRANSACTION +17:46:44 +Slot[478] 0200 301000 6688990103592000 ------------- 00 819840 000000000000 507903489498060021006688990103592000 507903489498 213182 621354 S +17:46:51 +Slot[63] 0200 013000 1999990000015159 ------------- 00 819854 000100000000 507902706633140009001999990000015159 507902706633 088686 621354 S +17:46:52 Slot [38] | NOT FINANCIAL TRANSACTION +17:46:57 +Slot[73] 0200 010000 6688990040039669 ------------- 51 819889 000050000000 507905271813020029006688990040039669 507905271813 339409 621354 S +17:47:01 +Slot[68] 0200 011000 6688990040051052 ------------- 00 819897 000015000000 507905335289050047006688990040051052 507905335289 904489 621354 S +17:47:02 Slot [487] | NOT FINANCIAL TRANSACTION +17:47:03 Slot [32] | NOT FINANCIAL TRANSACTION +17:47:05 Slot [26] | NOT FINANCIAL TRANSACTION +17:47:06 +Slot[41] 0200 010000 6213544001296976 ------------- 00 270978 000100000000 5079102709780528LPBP6213544001296976 507910270978 894372 180893 S +17:47:11 +Slot[20] 0200 011000 6213543000092097 ------------- 00 209848 000100000000 507917209848015290126213543000092097 507917209848 238792 198901 S +17:47:12 +Slot[464] 0200 011000 1808931300011614 ------------- 00 819934 000010000000 507903919642010107001808931300011614 507903919642 452825 621354 S +17:47:14 +Slot[48] 0200 301000 6688990601311309 ------------- 14 270979 032010461527 5079102709790541VPNG6688990601311309 507910270979 438515 180893 S +17:47:24 Slot [46] | NOT FINANCIAL TRANSACTION +17:47:34 +Slot[69] 0200 011000 6213544002158258 ------------- 00 209854 000045000000 507917209854195290016213544002158258 507917209854 913296 198901 S +17:47:40 +Slot[27] 0200 011000 1808930200049179 ------------- 00 820066 000010000000 507903863727010102001808930200049179 507903863727 478663 621354 S +17:47:41 +Slot[19] 0200 300000 6688990601443003 ------------- 00 820088 000000000000 507904154129200010006688990601443003 507904154129 724233 621354 S +17:47:45 +Slot[54] 0200 011000 6213543000092097 ------------- 00 209857 000100000000 507917209857015290126213543000092097 507917209857 209581 198901 S +17:47:46 Slot [78] | NOT FINANCIAL TRANSACTION +17:47:47 +Slot[47] 0200 013000 1999990000015159 ------------- 00 820101 000100000000 507902706635140009001999990000015159 507902706635 548288 621354 S +17:47:51 +Slot[57] 0200 011000 6688990102736004 ------------- 00 209859 000020000000 507917209859000022016688990102736004 507917209859 078195 198901 S +17:47:52 +Slot[24] 0200 302000 6688990103592000 ------------- 00 820133 000000000000 507903489499060021006688990103592000 507903489499 099921 621354 S +17:47:52 +Slot[49] 0200 010000 6213544001296976 ------------- 00 270984 000050000000 5079102709840528LPBP6213544001296976 507910270984 840780 180893 S +17:48:03 +Slot[34] 0200 302000 6213544002147137 ------------- 00 953913 000000000000 507902151094030200256213544002147137 507902151094 379565 668899 S +17:48:07 Slot [81] | NOT FINANCIAL TRANSACTION +17:48:08 Slot [86] | NOT FINANCIAL TRANSACTION +17:48:08 +Slot[42] 0200 012000 1808930200055937 ------------- 42 820212 000065000000 507903587278090015001808930200055937 507903587278 805486 621354 S +17:48:10 +Slot[88] 0200 010000 6688990040039669 ------------- 55 820237 000050000000 507905271815020029006688990040039669 507905271815 821093 621354 S +17:48:13 Slot [89] | NOT FINANCIAL TRANSACTION +17:48:23 Slot [59] | NOT FINANCIAL TRANSACTION +17:48:33 +Slot[79] 0200 010000 6213545000610786 ------------- 00 953921 000050000000 507902475754030200326213545000610786 507902475754 178495 668899 S +17:48:34 +Slot[84] 0200 011000 6213544002117767 ------------- 00 209873 000005000000 507917209873195290016213544002117767 507917209873 420305 198901 S +17:48:35 Slot [58] | NOT FINANCIAL TRANSACTION +17:48:36 +Slot[5] 0200 300000 6688990601443003 ------------- 00 820322 000000000000 507904154130200010006688990601443003 507904154130 917189 621354 S +17:48:40 +Slot[67] 0200 010000 6213548000387447 ------------- 51 270990 000010000000 5079102709900527LPBL6213548000387447 507910270990 411665 180893 S +17:48:42 +Slot[62] 0200 010000 6688990040039669 ------------- 51 820370 000050000000 507905271817020029006688990040039669 507905271817 873507 621354 S +17:48:51 Slot [93] | NOT FINANCIAL TRANSACTION +17:49:02 Slot [56] | NOT FINANCIAL TRANSACTION +17:49:09 Slot [82] | NOT FINANCIAL TRANSACTION +17:49:10 +Slot[39] 0200 011000 6213548000291821 ------------- 00 209883 000010000000 507917209883015290316213548000291821 507917209883 134743 198901 S +17:49:13 Slot [51] | NOT FINANCIAL TRANSACTION +17:49:18 Slot [64] | NOT FINANCIAL TRANSACTION +17:49:29 Slot [100] | NOT FINANCIAL TRANSACTION +17:49:30 +Slot[99] 0200 010000 6688990601443003 ------------- 00 820547 000005000000 507904154132200010006688990601443003 507904154132 793598 621354 S +17:49:31 +Slot[91] 0200 012000 6688990106140005 ------------- 14 270994 000005000000 5079102709940321LNTV6688990106140005 507910270994 245240 180893 S +17:49:42 +Slot[72] 0200 010000 6688990108467208 ------------- 00 820598 000030000000 507902474787050030006688990108467208 507902474787 784460 621354 S +17:49:44 Slot [65] | NOT FINANCIAL TRANSACTION +17:49:52 +Slot[76] 0200 012000 6688990040048900 ------------- 00 820634 000020000000 507904645196170009006688990040048900 507904645196 858845 621354 S +17:49:53 +Slot[90] 0200 301000 6688990040136457 ------------- 00 820637 000000000000 507904731653070009006688990040136457 507904731653 470724 621354 S +17:49:54 Slot [106] | NOT FINANCIAL TRANSACTION +17:49:55 Slot [114] | NOT FINANCIAL TRANSACTION +17:50:05 Slot [83] | NOT FINANCIAL TRANSACTION +17:50:10 +Slot[66] 0200 302000 6688990106140005 ------------- 14 270995 032010491327 5079102709950321LNTV6688990106140005 507910270995 368043 180893 S +17:50:11 Slot [118] | NOT FINANCIAL TRANSACTION +17:50:18 Slot [107] | NOT FINANCIAL TRANSACTION +17:50:21 Slot [121] | NOT FINANCIAL TRANSACTION +17:50:25 +Slot[115] 0200 010000 6688990601443003 ------------- 51 820783 000050000000 507904154134200010006688990601443003 507904154134 403763 621354 S +17:50:33 Slot [92] | NOT FINANCIAL TRANSACTION +17:50:36 +Slot[74] 0200 300000 6688990040039669 ------------- 00 820824 000000000000 507905271821020029006688990040039669 507905271821 812536 621354 S +17:50:40 +Slot[113] 0200 300000 6688990100658606 ------------- 00 820835 000000000000 507903433364060016006688990100658606 507903433364 430243 621354 S +17:50:43 +Slot[98] 0200 011000 6688990040136457 ------------- 00 820854 000080000000 507904731655070009006688990040136457 507904731655 200056 621354 S +17:50:44 +Slot[108] 0200 011000 6213544002251020 ------------- 00 209913 000020000000 507917209913195290016213544002251020 507917209913 285553 198901 S +17:50:47 Slot [127] | NOT FINANCIAL TRANSACTION +17:50:59 Slot [95] | NOT FINANCIAL TRANSACTION +17:51:13 Slot [75] | NOT FINANCIAL TRANSACTION +17:51:15 Slot [94] | NOT FINANCIAL TRANSACTION +17:51:18 +Slot[53] 0200 011000 6688990106007303 ------------- 00 820990 000002000000 507902474789050030006688990106007303 507902474789 259673 621354 S +17:51:22 Slot [134] | NOT FINANCIAL TRANSACTION +17:51:23 Slot [96] | NOT FINANCIAL TRANSACTION +17:51:26 Slot [103] | NOT FINANCIAL TRANSACTION +17:51:27 +Slot[125] 0200 300000 6688990040141366 ------------- 00 821019 000000000000 507903499691060022006688990040141366 507903499691 150261 621354 S +17:51:32 +Slot[101] 0200 010000 6213541000020787 ------------- 00 189045 000100000000 507900084376010008006213541000020787 507900084376 094250 220699 S +17:51:36 Slot [70] | NOT FINANCIAL TRANSACTION +17:51:47 Slot [109] | NOT FINANCIAL TRANSACTION +17:52:03 Slot [77] | NOT FINANCIAL TRANSACTION +17:52:14 +Slot[102] 0200 011000 1808930600028294 ------------- 00 240522 000050000000 507900360255050003001808930600028294 507900360255 187936 220699 S +17:52:15 Slot [136] | NOT FINANCIAL TRANSACTION +17:52:19 Slot [85] | NOT FINANCIAL TRANSACTION +17:52:20 +Slot[71] 0200 011000 6688990106952904 ------------- 00 821192 000010000000 507904635968170008006688990106952904 507904635968 662291 621354 S +17:52:28 Slot [105] | NOT FINANCIAL TRANSACTION +17:52:30 Slot [129] | NOT FINANCIAL TRANSACTION +17:52:36 +Slot[116] 0200 012000 6688990040141366 ------------- 00 821251 000100000000 507903499693060022006688990040141366 507903499693 077236 621354 S +17:52:41 Slot [131] | NOT FINANCIAL TRANSACTION +17:52:49 +Slot[104] 0200 300000 6213548000150787 ------------- 00 954008 000000000000 507901614566030010076213548000150787 507901614566 018284 668899 S +17:52:52 Slot [138] | NOT FINANCIAL TRANSACTION +17:52:59 +Slot[97] 0200 011000 1888880000087783 ------------- 07 000008 000020000000 507900281396100001001888880000087783 507900281396 720049 220699 S +17:53:03 Slot [112] | NOT FINANCIAL TRANSACTION +17:53:06 Slot [111] | NOT FINANCIAL TRANSACTION +17:53:15 Slot [124] | NOT FINANCIAL TRANSACTION +17:53:17 Slot [140] | NOT FINANCIAL TRANSACTION +17:53:29 Slot [80] | NOT FINANCIAL TRANSACTION +17:53:33 Slot [147] | NOT FINANCIAL TRANSACTION +17:53:34 +Slot[123] 0200 010000 6688990106472903 ------------- 00 821402 000100000000 507902497522050032006688990106472903 507902497522 765358 621354 S +17:53:39 +Slot[117] 0200 301000 6213548000150787 ------------- 00 954026 000000000000 507901614568030010076213548000150787 507901614568 489003 668899 S +17:53:45 Slot [132] | NOT FINANCIAL TRANSACTION +17:53:47 +Slot[162] 0200 011000 1888880000087783 ------------- 07 000011 000010000000 507900281398100001001888880000087783 507900281398 101308 220699 S +17:53:48 +Slot[122] 0200 010000 6213541000135015 ------------- 00 271001 000050000000 5079102710010101VTEB6213541000135015 507910271001 750244 180893 S +17:53:50 +Slot[161] 0200 011000 6213541000695026 ------------- 00 271002 000025000000 5079102710020113SVBR6213541000695026 507910271002 495610 180893 S +17:54:02 Slot [166] | NOT FINANCIAL TRANSACTION +17:54:06 +Slot[143] 0200 301000 6688990102837109 ------------- 00 821511 000000000000 507905170425010129006688990102837109 507905170425 808713 621354 S +17:54:07 +Slot[154] 0200 011000 6688990106952904 ------------- 00 821519 000010000000 507904635970170008006688990106952904 507904635970 517980 621354 S +17:54:11 +Slot[145] 0200 011000 1808930600047377 ------------- 00 209948 000100000000 507917209948008529021808930600047377 507917209948 134556 198901 S +17:54:13 Slot [153] | NOT FINANCIAL TRANSACTION +17:54:15 +Slot[150] 0200 311000 1888880000087783 ------------- 07 000014 000000000000 507900281400100001001888880000087783 507900281400 454753 220699 S +17:54:17 +Slot[120] 0200 010000 6213544001745634 ------------- 00 021192 000050000000 507900263133010014006213544001745634 507900263133 145796 220699 S +17:54:19 Slot [110] | NOT FINANCIAL TRANSACTION +17:54:20 +Slot[133] 0200 010000 6213544001705166 ------------- 00 954036 000010000000 507901196853030200116213544001705166 507901196853 561516 668899 S +17:54:25 Slot [158] | NOT FINANCIAL TRANSACTION +17:54:36 Slot [159] | NOT FINANCIAL TRANSACTION +17:54:38 Slot [142] | NOT FINANCIAL TRANSACTION +17:54:47 Slot [146] | NOT FINANCIAL TRANSACTION +17:54:49 +Slot[167] 0200 300000 6213544001978599 ------------- 75 954048 000000000000 507902025677034140026213544001978599 507902025677 187760 668899 S +17:54:49 Slot [137] | NOT FINANCIAL TRANSACTION +17:54:55 Slot [87] | NOT FINANCIAL TRANSACTION +17:54:58 +Slot[130] 0200 011000 6213544001396677 ------------- 00 271008 000020000000 5079102710080262PSLB6213544001396677 507910271008 812370 180893 S +17:55:05 +Slot[157] 0200 010000 1888880000087783 ------------- 07 000017 000030000000 507900281402100001001888880000087783 507900281402 059798 220699 S +17:55:12 +Slot[128] 0200 011000 1808930600047377 ------------- 00 209971 000100000000 507917209971008529021808930600047377 507917209971 318911 198901 S +17:55:13 Slot [175] | NOT FINANCIAL TRANSACTION +17:55:16 +Slot[141] 0200 011000 2206990000090415 ------------- 00 821741 000050000000 507904635972170008002206990000090415 507904635972 294921 621354 S +17:55:21 Slot [170] | NOT FINANCIAL TRANSACTION +17:55:24 +Slot[151] 0200 300000 6213548000150787 ------------- 00 954064 000000000000 507901614570030010076213548000150787 507901614570 900496 668899 S +17:55:24 Slot [171] | NOT FINANCIAL TRANSACTION +17:55:28 +Slot[172] 0200 301000 6213545000542310 ------------- 55 271011 032010543027 5079102710110381CPSP6213545000542310 507910271011 624412 180893 S +17:55:39 Slot [164] | NOT FINANCIAL TRANSACTION +17:55:43 Slot [186] | NOT FINANCIAL TRANSACTION +17:55:56 Slot [126] | NOT FINANCIAL TRANSACTION +17:55:58 +Slot[139] 0200 301000 6213545000542310 ------------- 55 271014 032010550027 5079102710140381CPSP6213545000542310 507910271014 952619 180893 S +17:56:11 Slot [202] | NOT FINANCIAL TRANSACTION +17:56:13 +Slot[119] 0200 301000 6213545000542310 ------------- 75 271016 032010551527 5079102710160381CPSP6213545000542310 507910271016 407635 180893 S +17:56:15 +Slot[148] 0200 010000 6688990601443003 ------------- 51 821931 000050000000 507904154145200010006688990601443003 507904154145 820942 621354 S +17:56:21 Slot [176] | NOT FINANCIAL TRANSACTION +17:56:22 Slot [144] | NOT FINANCIAL TRANSACTION +17:56:23 Slot [187] | NOT FINANCIAL TRANSACTION +17:56:24 +Slot[182] 0200 011000 6688990602743104 ------------- 00 821959 000020000000 507904653854170010006688990602743104 507904653854 401441 621354 S +17:56:32 Slot [160] | NOT FINANCIAL TRANSACTION +17:56:43 Slot [163] | NOT FINANCIAL TRANSACTION +17:56:48 Slot [204] | NOT FINANCIAL TRANSACTION +17:56:54 Slot [203] | NOT FINANCIAL TRANSACTION +17:57:03 +Slot[179] 0200 010000 6213541000276967 ------------- 61 271022 000150000000 5079102710220528LPBP6213541000276967 507910271022 757881 180893 S +17:57:16 Slot [191] | NOT FINANCIAL TRANSACTION +17:57:23 +Slot[192] 0200 010000 6688990601484809 ------------- 05 822157 000050000000 507904154147200010006688990601484809 507904154147 106494 621354 S +17:57:25 Slot [135] | NOT FINANCIAL TRANSACTION +17:57:25 +Slot[156] 0200 011000 1808930900043498 ------------- 00 822144 000100000000 507902585608050041001808930900043498 507902585608 568512 621354 S +17:57:26 +Slot[190] 0200 301000 6213545000542310 ------------- 75 271026 032010562727 5079102710260381CPSP6213545000542310 507910271026 867435 180893 S +17:57:36 Slot [152] | NOT FINANCIAL TRANSACTION +17:57:47 Slot [198] | NOT FINANCIAL TRANSACTION +17:57:53 Slot [196] | NOT FINANCIAL TRANSACTION +17:58:03 Slot [155] | NOT FINANCIAL TRANSACTION +17:58:07 +Slot[181] 0200 302000 6688990103558209 ------------- 55 822303 000000000000 507903177701040027006688990103558209 507903177701 447447 621354 S +17:58:14 Slot [214] | NOT FINANCIAL TRANSACTION +17:58:18 +Slot[201] 0200 012000 6688990105385700 ------------- 00 822332 000005000000 507903815703010097006688990105385700 507903815703 830852 621354 S +17:58:20 +Slot[165] 0200 010000 6213541000276967 ------------- 61 271032 000200000000 5079102710320528LPBP6213541000276967 507910271032 881772 180893 S +17:58:25 +Slot[195] 0200 010000 6213541000597990 ------------- 51 954128 000100000000 507901881408030140066213541000597990 507901881408 238654 668899 S +17:58:27 Slot [194] | NOT FINANCIAL TRANSACTION +17:58:27 +Slot[209] 0200 011000 6688990040135855 ------------- 00 822373 000100000000 507904560418020019006688990040135855 507904560418 805438 621354 S +17:58:31 +Slot[178] 0200 011000 1808930900043498 ------------- 00 822386 000100000000 507902585610050041001808930900043498 507902585610 879552 621354 S +17:58:36 Slot [193] | NOT FINANCIAL TRANSACTION +17:58:38 +Slot[206] 0200 302000 6688990103558209 ------------- 00 822412 000000000000 507903177702040027006688990103558209 507903177702 055489 621354 S +17:58:42 +Slot[184] 0200 010000 6213541000597990 ------------- 51 954137 000100000000 507901881409030140066213541000597990 507901881409 408677 668899 S +17:58:46 Slot [212] | NOT FINANCIAL TRANSACTION +17:58:52 +Slot[213] 0200 011000 6688990602284703 ------------- 00 822456 000010000000 507902606427050043006688990602284703 507902606427 197752 621354 S +17:58:57 +Slot[207] 0200 011000 1808931700001066 ------------- 00 822454 000050000000 507904795782070015001808931700001066 507904795782 988667 621354 S +17:58:58 Slot [230] | NOT FINANCIAL TRANSACTION +17:59:02 +Slot[221] 0200 300000 6213544001922712 ------------- 00 954150 000000000000 507902148132030200246213544001922712 507902148132 683675 668899 S +17:59:03 Slot [183] | NOT FINANCIAL TRANSACTION +17:59:19 Slot [169] | NOT FINANCIAL TRANSACTION +17:59:28 +Slot[205] 0200 010000 6213544001922712 ------------- 00 954164 000010000000 507902148133030200246213544001922712 507902148133 285972 668899 S +17:59:29 Slot [185] | NOT FINANCIAL TRANSACTION +17:59:30 Slot [149] | NOT FINANCIAL TRANSACTION +17:59:41 Slot [232] | NOT FINANCIAL TRANSACTION +17:59:56 Slot [180] | NOT FINANCIAL TRANSACTION +17:59:57 Slot [222] | NOT FINANCIAL TRANSACTION +17:59:58 +Slot[208] 0200 012000 6688990106066002 ------------- 00 822659 000100000000 507902916645120014006688990106066002 507902916645 608591 621354 S +17:59:59 +Slot[211] 0200 011000 6688990040135855 ------------- 00 822665 000100000000 507904560420020019006688990040135855 507904560420 614213 621354 S +18:00:03 Slot [189] | NOT FINANCIAL TRANSACTION +18:00:07 Slot [229] | NOT FINANCIAL TRANSACTION +18:00:08 +Slot[168] 0200 011000 6688990106052507 ------------- 00 822689 000010000000 507902606429050043006688990106052507 507902606429 334380 621354 S +18:00:17 Slot [173] | NOT FINANCIAL TRANSACTION +18:00:24 +Slot[174] 0200 010000 6688990040039669 ------------- 51 822742 000050000000 507905271823020029006688990040039669 507905271823 465686 621354 S +18:00:29 Slot [246] | NOT FINANCIAL TRANSACTION +18:00:31 Slot [188] | NOT FINANCIAL TRANSACTION +18:00:40 Slot [223] | NOT FINANCIAL TRANSACTION +18:00:55 Slot [235] | NOT FINANCIAL TRANSACTION +18:01:06 Slot [227] | NOT FINANCIAL TRANSACTION +18:01:08 Slot [244] | NOT FINANCIAL TRANSACTION +18:01:13 +Slot[215] 0200 011000 6213544000554144 ------------- 00 210066 000050000000 507918210066015290186213544000554144 507918210066 553995 198901 S +18:01:14 +Slot[248] 0200 010000 6688990106066002 ------------- 00 822923 000100000000 507902916647120014006688990106066002 507902916647 905992 621354 S +18:01:16 +Slot[251] 0200 011000 6688990040135855 ------------- 00 822930 000100000000 507904560422020019006688990040135855 507904560422 404504 621354 S +18:01:17 Slot [255] | NOT FINANCIAL TRANSACTION +18:01:17 +Slot[243] 0200 300000 6688990103275507 ------------- 00 822924 000000000000 507903499694060022006688990103275507 507903499694 201970 621354 S +18:01:22 +Slot[242] 0200 011000 6213544001373254 ------------- 00 271038 000030000000 5079112710380102SAPA6213544001373254 507911271038 037591 180893 S +18:01:22 Slot [250] | NOT FINANCIAL TRANSACTION +18:01:33 Slot [177] | NOT FINANCIAL TRANSACTION +18:01:33 Slot [226] | NOT FINANCIAL TRANSACTION +18:01:49 Slot [233] | NOT FINANCIAL TRANSACTION +18:02:00 Slot [237] | NOT FINANCIAL TRANSACTION +18:02:06 +Slot[260] 0200 010000 6688990601024506 ------------- 51 823104 000100000000 507904724982180011006688990601024506 507904724982 299989 621354 S +18:02:12 Slot [234] | NOT FINANCIAL TRANSACTION +18:02:13 Slot [253] | NOT FINANCIAL TRANSACTION +18:02:17 +Slot[238] 0200 010000 6688990106066002 ------------- 00 823141 000015000000 507902916649120014006688990106066002 507902916649 585825 621354 S +18:02:18 +Slot[200] 0200 012000 6688990040160374 ------------- 00 823142 000070000000 507902974905120020006688990040160374 507902974905 057985 621354 S +18:02:20 +Slot[216] 0200 011000 6688990104113707 ------------- 00 823145 000010000000 507902606434050043006688990104113707 507902606434 596442 621354 S +18:02:28 Slot [249] | NOT FINANCIAL TRANSACTION +18:02:34 +Slot[259] 0200 301000 1888880000013946 ------------- 00 823183 000000000000 507902497526050032001888880000013946 507902497526 281982 621354 S +18:02:35 Slot [263] | NOT FINANCIAL TRANSACTION +18:02:40 Slot [210] | NOT FINANCIAL TRANSACTION +18:02:54 Slot [261] | NOT FINANCIAL TRANSACTION +18:03:05 +Slot[269] 0200 301000 6213544002119680 ------------- 00 271043 032011020527 5079112710430528LPBP6213544002119680 507911271043 195268 180893 S +18:03:06 +Slot[225] 0200 010000 6688990601024506 ------------- 00 823302 000080000000 507904724984180011006688990601024506 507904724984 978094 621354 S +18:03:15 +Slot[199] 0200 010000 6213544000644846 ------------- 51 954257 000040000000 507900555186030140036213544000644846 507900555186 663306 668899 S +18:03:16 Slot [270] | NOT FINANCIAL TRANSACTION +18:03:18 Slot [275] | NOT FINANCIAL TRANSACTION +18:03:26 +Slot[240] 0200 301000 6213544000644846 ------------- 00 954261 000000000000 507900555187030140036213544000644846 507900555187 507930 668899 S +18:03:27 Slot [197] | NOT FINANCIAL TRANSACTION +18:03:37 Slot [265] | NOT FINANCIAL TRANSACTION +18:03:37 +Slot[218] 0200 011000 1888880000013946 ------------- 00 823372 000025000000 507902497528050032001888880000013946 507902497528 405113 621354 S +18:03:38 Slot [247] | NOT FINANCIAL TRANSACTION +18:03:49 Slot [256] | NOT FINANCIAL TRANSACTION +18:03:52 Slot [228] | NOT FINANCIAL TRANSACTION +18:03:57 +Slot[274] 0200 010000 6213544000644846 ------------- 51 954279 000035000000 507900555188030140036213544000644846 507900555188 336855 668899 S +18:03:59 +Slot[264] 0200 010000 6213545000561807 ------------- 00 153729 000070000000 507900035478010003006213545000561807 507900035478 784146 220699 S +18:04:00 +Slot[220] 0200 300000 6688990106051301 ------------- 00 823477 000000000000 507903499695060022006688990106051301 507903499695 416889 621354 S +18:04:01 Slot [231] | NOT FINANCIAL TRANSACTION +18:04:05 +Slot[273] 0200 011000 6688990106299207 ------------- 14 240884 000010000000 507900410466080003006688990106299207 507900410466 433424 220699 S +18:04:13 +Slot[279] 0200 011000 6213544002092754 ------------- 00 271046 000040000000 5079112710460528LPBP6213544002092754 507911271046 803917 180893 S +18:04:14 +Slot[239] 0200 011000 1808930600042477 ------------- 55 823525 000015000000 507904287939030027001808930600042477 507904287939 887762 621354 S +18:04:16 +Slot[272] 0200 011000 6688990106140005 ------------- 14 271049 000005000000 5079112710490321LNTV6688990106140005 507911271049 794653 180893 S +18:04:18 +Slot[254] 0200 010000 6213544000644846 ------------- 00 954289 000030000000 507900555189030140036213544000644846 507900555189 665322 668899 S +18:04:21 +Slot[252] 0200 010000 6213545000863054 ------------- 00 412652 000010000000 507900354426010026006213545000863054 507900354426 247450 123401 S +18:04:23 Slot [282] | NOT FINANCIAL TRANSACTION +18:04:27 Slot [241] | NOT FINANCIAL TRANSACTION +18:04:36 +Slot[266] 0200 011000 1808930600042477 ------------- 00 823584 000015000000 507904287941030027001808930600042477 507904287941 813531 621354 S +18:04:38 Slot [224] | NOT FINANCIAL TRANSACTION +18:04:39 Slot [280] | NOT FINANCIAL TRANSACTION +18:04:40 +Slot[276] 0200 010000 6688990106051301 ------------- 00 823608 000100000000 507903499697060022006688990106051301 507903499697 744665 621354 S +18:04:54 Slot [258] | NOT FINANCIAL TRANSACTION +18:04:57 Slot [219] | NOT FINANCIAL TRANSACTION +18:05:06 Slot [290] | NOT FINANCIAL TRANSACTION +18:05:08 +Slot[284] 0200 310000 6213545000561807 ------------- 00 153731 000000000000 507900035480010003006213545000561807 507900035480 177573 220699 S +18:05:19 +Slot[287] 0200 010000 6688990100941200 ------------- 61 271055 000200000000 5079112710550467PSLK6688990100941200 507911271055 567167 180893 S +18:05:22 +Slot[277] 0200 010000 6213544001873212 ------------- 00 954306 000010000000 507902294984030090066213544001873212 507902294984 992837 668899 S +18:05:26 +Slot[271] 0200 011000 6213548000289460 ------------- 51 240887 000010000000 507900410468080003006213548000289460 507900410468 587327 220699 S +18:05:27 Slot [267] | NOT FINANCIAL TRANSACTION +18:05:28 Slot [245] | NOT FINANCIAL TRANSACTION +18:05:34 +Slot[236] 0200 010000 6688990106051301 ------------- 00 823740 000100000000 507903499699060022006688990106051301 507903499699 582964 621354 S +18:05:38 Slot [294] | NOT FINANCIAL TRANSACTION +18:05:41 Slot [303] | NOT FINANCIAL TRANSACTION +18:05:51 +Slot[217] 0200 302000 6213545000968911 ------------- 00 271058 032011045227 5079112710580105XTNY6213545000968911 507911271058 782661 180893 S +18:05:52 +Slot[293] 0200 010000 6213545000863054 ------------- 55 412657 000010000000 507900354428010026006213545000863054 507900354428 055145 123401 S +18:06:00 +Slot[298] 0200 010000 6688990100941200 ------------- 14 271061 000100000000 5079112710610467PSLK6688990100941200 507911271061 568783 180893 S +18:06:11 Slot [300] | NOT FINANCIAL TRANSACTION +18:06:22 Slot [299] | NOT FINANCIAL TRANSACTION +18:06:25 Slot [257] | NOT FINANCIAL TRANSACTION +18:06:33 Slot [278] | NOT FINANCIAL TRANSACTION +18:06:41 Slot [281] | NOT FINANCIAL TRANSACTION +18:06:43 Slot [308] | NOT FINANCIAL TRANSACTION +18:06:52 Slot [286] | NOT FINANCIAL TRANSACTION +18:06:56 +Slot[295] 0200 010000 6213545000968911 ------------- 00 271064 000010000000 5079112710640105XTNY6213545000968911 507911271064 502804 180893 S +18:07:00 +Slot[296] 0200 010000 6688990106051301 ------------- 00 823975 000100000000 507903499701060022006688990106051301 507903499701 108372 621354 S +18:07:04 +Slot[283] 0200 300000 6213542000018995 ------------- 00 954337 000000000000 507902363009030160036213542000018995 507902363009 822533 668899 S +18:07:09 Slot [306] | NOT FINANCIAL TRANSACTION +18:07:21 Slot [311] | NOT FINANCIAL TRANSACTION +18:07:31 +Slot[312] 0200 010000 6213542000018995 ------------- 00 954345 000030000000 507902363010030160036213542000018995 507902363010 298695 668899 S +18:07:32 Slot [307] | NOT FINANCIAL TRANSACTION +18:07:32 +Slot[316] 0200 010000 6688990030002453 ------------- 00 824052 000060000000 507904635974170008006688990030002453 507904635974 215177 621354 S +18:07:38 Slot [288] | NOT FINANCIAL TRANSACTION +18:07:43 +Slot[310] 0200 301000 2206990000035642 ------------- 00 824076 000000000000 507902606438050043002206990000035642 507902606438 656481 621354 S +18:07:44 +Slot[317] 0200 011000 6688990602492702 ------------- 00 824088 000010000000 507902497532050032006688990602492702 507902497532 474628 621354 S +18:07:45 Slot [318] | NOT FINANCIAL TRANSACTION +18:07:48 Slot [325] | NOT FINANCIAL TRANSACTION +18:07:53 +Slot[322] 0200 010000 6688990107119404 ------------- 00 824114 000010000000 507905382537120034006688990107119404 507905382537 846397 621354 S +18:07:55 +Slot[315] 0200 010000 6213545000863054 ------------- 00 412662 000010000000 507900354430010026006213545000863054 507900354430 170975 123401 S +18:07:57 +Slot[297] 0200 011000 6213545001002678 ------------- 00 271071 000020000000 5079112710710104NUOL6213545001002678 507911271071 114214 180893 S +18:07:58 +Slot[289] 0200 010000 6688990100941200 ------------- 14 271073 000100000000 5079112710730467PSLK6688990100941200 507911271073 037556 180893 S +18:08:09 Slot [304] | NOT FINANCIAL TRANSACTION +18:08:20 Slot [326] | NOT FINANCIAL TRANSACTION +18:08:32 +Slot[291] 0200 010000 6213544000769023 ------------- 00 954374 000100000000 507901215116030200136213544000769023 507901215116 754555 668899 S +18:08:35 Slot [327] | NOT FINANCIAL TRANSACTION +18:08:37 +Slot[285] 0200 010000 6688990107119404 ------------- 51 824263 000005000000 507905382539120034006688990107119404 507905382539 505756 621354 S +18:08:39 +Slot[331] 0200 301000 6688990100966405 ------------- 14 271077 032011074027 5079112710770467PSLK6688990100966405 507911271077 444697 180893 S +18:08:43 Slot [301] | NOT FINANCIAL TRANSACTION +18:08:47 Slot [305] | NOT FINANCIAL TRANSACTION +18:08:50 Slot [314] | NOT FINANCIAL TRANSACTION +18:08:51 +Slot[302] 0200 010000 6688990106051301 ------------- 51 824304 000030000000 507903499703060022006688990106051301 507903499703 644719 621354 S +18:09:02 Slot [292] | NOT FINANCIAL TRANSACTION +18:09:08 +Slot[335] 0200 311000 6213544001640306 ------------- 00 010442 000000000000 507900220667050002006213544001640306 507900220667 517181 220699 S +18:09:16 Slot [333] | NOT FINANCIAL TRANSACTION +18:09:27 Slot [334] | NOT FINANCIAL TRANSACTION +18:09:32 +Slot[262] 0200 011000 6688990602546705 ------------- 00 824453 000006000000 507902606440050043006688990602546705 507902606440 814125 621354 S +18:09:36 +Slot[336] 0200 301000 6688990100949609 ------------- 14 271079 032011083827 5079112710790467PSLK6688990100949609 507911271079 007126 180893 S +18:09:38 +Slot[321] 0200 011000 6213544001640306 ------------- 00 010443 000020000000 507900220668050002006213544001640306 507900220668 653950 220699 S +18:09:48 Slot [320] | NOT FINANCIAL TRANSACTION +18:09:49 Slot [323] | NOT FINANCIAL TRANSACTION +18:09:49 +Slot[341] 0200 010000 6213544002187984 ------------- 51 271081 000050000000 5079112710810102SAPA6213544002187984 507911271081 184207 180893 S +18:09:57 Slot [268] | NOT FINANCIAL TRANSACTION +18:09:59 Slot [342] | NOT FINANCIAL TRANSACTION +18:10:10 Slot [352] | NOT FINANCIAL TRANSACTION +18:10:13 +Slot[339] 0200 012000 6688990106051301 ------------- 00 824593 000025000000 507903499706060022006688990106051301 507903499706 956749 621354 S +18:10:21 +Slot[309] 0200 010000 6213545001027535 ------------- 00 271084 000100000000 5079112710840467PSLK6213545001027535 507911271084 588425 180893 S +18:10:31 Slot [348] | NOT FINANCIAL TRANSACTION +18:10:42 Slot [347] | NOT FINANCIAL TRANSACTION +18:10:48 +Slot[329] 0200 011000 2206990000018812 ------------- 00 824704 000020000000 507903975855010113002206990000018812 507903975855 848358 621354 S +18:10:51 Slot [328] | NOT FINANCIAL TRANSACTION +18:10:53 Slot [337] | NOT FINANCIAL TRANSACTION +18:10:57 +Slot[350] 0200 010000 6688990103712202 ------------- 00 824723 000005000000 507904229481050046006688990103712202 507904229481 327232 621354 S +18:11:01 +Slot[346] 0200 011000 1808930900003971 ------------- 00 003138 000003000000 507900186776080001001808930900003971 507900186776 005844 220699 S +18:11:03 Slot [357] | NOT FINANCIAL TRANSACTION +18:11:11 +Slot[332] 0200 301000 6688990050090891 ------------- 55 210186 000000000000 507918210186015290096688990050090891 507918210186 001668 198901 S +18:11:19 Slot [319] | NOT FINANCIAL TRANSACTION +18:11:22 Slot [365] | NOT FINANCIAL TRANSACTION +18:11:28 +Slot[356] 0200 010000 6213545000846083 ------------- 00 271091 000010000000 5079112710910121SKBR6213545000846083 507911271091 513701 180893 S +18:11:30 +Slot[330] 0200 011000 6688990600753907 ------------- 00 824806 000030000000 507904994966160021006688990600753907 507904994966 910879 621354 S +18:11:31 Slot [378] | NOT FINANCIAL TRANSACTION +18:11:32 +Slot[366] 0200 010000 6213545000906556 ------------- 00 271093 000010000000 5079112710930261PSL16213545000906556 507911271093 803418 180893 S +18:11:34 +Slot[371] 0200 010000 6213541000664808 ------------- 00 189048 000050000000 507900084378010008006213541000664808 507900084378 048516 220699 S +18:11:36 +Slot[313] 0200 301000 2206990000018812 ------------- 00 824825 000000000000 507903975856010113002206990000018812 507903975856 858250 621354 S +18:11:37 +Slot[343] 0200 011000 6213543000067230 ------------- 00 271095 000004000000 5079112710950112CPBR6213543000067230 507911271095 516842 180893 S +18:11:37 +Slot[373] 0200 301000 6688990050090891 ------------- 00 210191 000000000000 507918210191015290096688990050090891 507918210191 059914 198901 S +18:11:50 Slot [345] | NOT FINANCIAL TRANSACTION +18:11:53 Slot [340] | NOT FINANCIAL TRANSACTION +18:11:58 +Slot[324] 0200 012000 6213544002187984 ------------- 00 271101 000049000000 5079112711010102SAPA6213544002187984 507911271101 099903 180893 S +18:11:58 Slot [353] | NOT FINANCIAL TRANSACTION +18:12:07 Slot [382] | NOT FINANCIAL TRANSACTION +18:12:14 +Slot[363] 0200 010000 6213544002007422 ------------- 00 271104 000010000000 5079112711040141HQBR6213544002007422 507911271104 210258 180893 S +18:12:23 Slot [344] | NOT FINANCIAL TRANSACTION +18:12:24 +Slot[355] 0200 011000 6688990040150953 ------------- 55 824977 000002000000 507902776772010071006688990040150953 507902776772 261544 621354 S +18:12:38 Slot [370] | NOT FINANCIAL TRANSACTION +18:12:49 Slot [358] | NOT FINANCIAL TRANSACTION +18:12:51 +Slot[379] 0200 010000 6213544002078779 ------------- 00 954438 000050000000 507901541771030200166213544002078779 507901541771 122213 668899 S +18:12:55 Slot [369] | NOT FINANCIAL TRANSACTION +18:13:00 Slot [360] | NOT FINANCIAL TRANSACTION +18:13:02 +Slot[338] 0200 010000 6688990602722306 ------------- 61 271111 000200000000 5079112711110201ADD16688990602722306 507911271111 348293 180893 S +18:13:03 Slot [354] | NOT FINANCIAL TRANSACTION +18:13:10 +Slot[396] 0200 011000 6688990040150953 ------------- 00 825084 000002000000 507902776774010071006688990040150953 507902776774 643467 621354 S +18:13:12 +Slot[390] 0200 010000 6213545001027535 ------------- 00 271114 000010000000 5079112711140467PSLK6213545001027535 507911271114 226691 180893 S +18:13:20 Slot [374] | NOT FINANCIAL TRANSACTION +18:13:31 Slot [361] | NOT FINANCIAL TRANSACTION +18:13:42 Slot [351] | NOT FINANCIAL TRANSACTION +18:13:50 +Slot[389] 0200 301000 1808931300011069 ------------- 00 825157 000000000000 507904229485050046001808931300011069 507904229485 539022 621354 S +18:13:57 Slot [410] | NOT FINANCIAL TRANSACTION +18:13:58 Slot [376] | NOT FINANCIAL TRANSACTION +18:14:04 +Slot[383] 0200 012000 6213544000812534 ------------- 00 271122 000030000000 5079112711220102SAPA6213544000812534 507911271122 580560 180893 S +18:14:08 Slot [359] | NOT FINANCIAL TRANSACTION +18:14:15 Slot [400] | NOT FINANCIAL TRANSACTION +18:14:21 +Slot[393] 0200 010000 6688990100941200 ------------- 14 271127 000100000000 5079112711270467PSLK6688990100941200 507911271127 009396 180893 S +18:14:23 +Slot[395] 0200 302000 6688990602722306 ------------- 14 271128 032011132427 5079112711280201ADD16688990602722306 507911271128 125782 180893 S +18:14:34 +Slot[414] 0200 011000 1808931300011069 ------------- 00 825281 000010000000 507904229487050046001808931300011069 507904229487 039017 621354 S +18:14:38 +Slot[413] 0200 301000 6688990100636305 ------------- 14 271130 032011133727 5079112711300264UDXH6688990100636305 507911271130 978598 180893 S +18:14:38 Slot [349] | NOT FINANCIAL TRANSACTION +18:14:38 Slot [394] | NOT FINANCIAL TRANSACTION +18:14:39 +Slot[397] 0200 010000 6213541000419930 ------------- 00 271131 000010000000 5079112711310241VTPH6213541000419930 507911271131 096942 180893 S +18:14:53 Slot [418] | NOT FINANCIAL TRANSACTION +18:14:57 Slot [387] | NOT FINANCIAL TRANSACTION +18:14:59 Slot [372] | NOT FINANCIAL TRANSACTION +18:15:08 Slot [399] | NOT FINANCIAL TRANSACTION +18:15:13 Slot [406] | NOT FINANCIAL TRANSACTION +18:15:17 +Slot[368] 0200 010000 6688990602722306 ------------- 14 271138 000100000000 5079112711380201ADD16688990602722306 507911271138 358493 180893 S +18:15:28 +Slot[419] 0200 302000 6688990100636305 ------------- 14 271140 032011143027 5079112711400264UDXH6688990100636305 507911271140 938426 180893 S +18:15:36 +Slot[411] 0200 011000 6688990060034814 ------------- 00 825465 000020000000 507904154149200010006688990060034814 507904154149 826651 621354 S +18:15:40 Slot [380] | NOT FINANCIAL TRANSACTION +18:15:51 Slot [384] | NOT FINANCIAL TRANSACTION +18:16:01 Slot [407] | NOT FINANCIAL TRANSACTION +18:16:02 Slot [416] | NOT FINANCIAL TRANSACTION +18:16:11 +Slot[401] 0200 011000 6213544002278965 ------------- 51 210250 000040000000 507918210250195290016213544002278965 507918210250 572442 198901 S +18:16:13 +Slot[433] 0200 010000 6213541000541832 ------------- 00 954486 000100000000 507900146870030200056213541000541832 507900146870 969873 668899 S +18:16:15 +Slot[381] 0200 010000 6688990107476101 ------------- 61 271146 000200000000 5079112711460262PSLB6688990107476101 507911271146 998645 180893 S +18:16:18 Slot [420] | NOT FINANCIAL TRANSACTION +18:16:22 Slot [398] | NOT FINANCIAL TRANSACTION +18:16:24 Slot [409] | NOT FINANCIAL TRANSACTION +18:16:26 +Slot[415] 0200 300000 6688990107031401 ------------- 00 825604 000000000000 507903444153060017006688990107031401 507903444153 171694 621354 S +18:16:32 +Slot[425] 0200 010000 6688990602722306 ------------- 14 271150 000100000000 5079112711500201ADD16688990602722306 507911271150 761300 180893 S +18:16:34 +Slot[364] 0200 011000 1808930600018113 ------------- 00 009305 000100000000 507900213263050001001808930600018113 507900213263 642691 220699 S +18:16:41 +Slot[388] 0200 010000 6688990107476101 ------------- 61 271152 000200000000 5079112711520262PSLB6688990107476101 507911271152 578488 180893 S +18:16:50 Slot [367] | NOT FINANCIAL TRANSACTION +18:17:00 +Slot[430] 0200 011000 6213544002278965 ------------- 00 210255 000035000000 507918210255195290016213544002278965 507918210255 585451 198901 S +18:17:01 +Slot[441] 0200 010000 6213545000955892 ------------- 51 271157 000010000000 5079112711570367BL206213545000955892 507911271157 075168 180893 S +18:17:03 Slot [403] | NOT FINANCIAL TRANSACTION +18:17:05 +Slot[437] 0200 011000 6688990040160028 ------------- 00 825717 000015000000 507903735618060023006688990040160028 507903735618 661184 621354 S +18:17:07 +Slot[402] 0200 012000 6688990601065806 ------------- 51 825723 000010000000 507903919669010107006688990601065806 507903919669 936562 621354 S +18:17:09 +Slot[362] 0200 010000 6688990107476101 ------------- 14 271159 000100000000 5079112711590262PSLB6688990107476101 507911271159 823017 180893 S +18:17:18 +Slot[385] 0200 010000 6688990107031401 ------------- 00 825753 000090000000 507903444155060017006688990107031401 507903444155 669303 621354 S +18:17:23 Slot [375] | NOT FINANCIAL TRANSACTION +18:17:27 +Slot[408] 0200 011000 1808930600018113 ------------- 00 009308 000100000000 507900213265050001001808930600018113 507900213265 100647 220699 S +18:17:32 Slot [450] | NOT FINANCIAL TRANSACTION +18:17:34 +Slot[392] 0200 012000 6213543000111756 ------------- 00 009795 000050000000 507900270564010015006213543000111756 507900270564 165831 220699 S +18:17:43 Slot [417] | NOT FINANCIAL TRANSACTION +18:17:51 +Slot[412] 0200 010000 6213545000145064 ------------- 00 271166 000050000000 5079112711660121SKBR6213545000145064 507911271166 595295 180893 S +18:18:00 +Slot[447] 0200 010000 6688990107476101 ------------- 14 271170 000100000000 5079112711700262PSLB6688990107476101 507911271170 381410 180893 S +18:18:05 Slot [391] | NOT FINANCIAL TRANSACTION +18:18:09 Slot [405] | NOT FINANCIAL TRANSACTION +18:18:19 Slot [429] | NOT FINANCIAL TRANSACTION +18:18:27 +Slot[443] 0200 301000 6213545000462717 ------------- 00 954528 000000000000 507900109414030200026213545000462717 507900109414 746155 668899 S +18:18:28 Slot [386] | NOT FINANCIAL TRANSACTION +18:18:30 Slot [377] | NOT FINANCIAL TRANSACTION +18:18:41 Slot [446] | NOT FINANCIAL TRANSACTION +18:18:50 +Slot[404] 0200 010000 6213545000462717 ------------- 00 954534 000030000000 507900109415030200026213545000462717 507900109415 705910 668899 S +18:18:52 Slot [456] | NOT FINANCIAL TRANSACTION +18:19:01 +Slot[434] 0200 010000 6213544001669073 ------------- 00 271178 000010000000 5079112711780120SLVB6213544001669073 507911271178 547150 180893 S +18:19:07 Slot [424] | NOT FINANCIAL TRANSACTION +18:19:14 Slot [445] | NOT FINANCIAL TRANSACTION +18:19:24 Slot [442] | NOT FINANCIAL TRANSACTION +18:19:33 Slot [438] | NOT FINANCIAL TRANSACTION +18:19:40 Slot [435] | NOT FINANCIAL TRANSACTION +18:19:55 +Slot[427] 0200 010000 6213541000541832 ------------- 61 271184 000200000000 5079112711840102SAPA6213541000541832 507911271184 285930 180893 S +18:19:57 Slot [431] | NOT FINANCIAL TRANSACTION +18:20:06 Slot [462] | NOT FINANCIAL TRANSACTION +18:20:09 Slot [428] | NOT FINANCIAL TRANSACTION +18:20:17 Slot [421] | NOT FINANCIAL TRANSACTION +18:20:30 +Slot[422] 0200 010000 6213541000541832 ------------- 00 271187 000100000000 5079112711870102SAPA6213541000541832 507911271187 447454 180893 S +18:20:36 +Slot[451] 0200 011000 6688990104040801 ------------- 00 826302 000020000000 507903499708060022006688990104040801 507903499708 875702 621354 S +18:20:38 Slot [457] | NOT FINANCIAL TRANSACTION +18:20:43 Slot [465] | NOT FINANCIAL TRANSACTION +18:20:54 Slot [426] | NOT FINANCIAL TRANSACTION +18:21:10 Slot [436] | NOT FINANCIAL TRANSACTION +18:21:11 Slot [444] | NOT FINANCIAL TRANSACTION +18:21:19 +Slot[423] 0200 011000 6688990108087501 ------------- 00 826437 000010000000 507904229492050046006688990108087501 507904229492 953106 621354 S +18:21:22 Slot [458] | NOT FINANCIAL TRANSACTION +18:21:22 Slot [459] | NOT FINANCIAL TRANSACTION +18:21:30 +Slot[452] 0200 301000 1808931800014936 ------------- 00 826468 000000000000 507904627888170007001808931800014936 507904627888 187567 621354 S +18:21:37 Slot [439] | NOT FINANCIAL TRANSACTION +18:21:43 Slot [466] | NOT FINANCIAL TRANSACTION +18:21:48 Slot [468] | NOT FINANCIAL TRANSACTION +18:21:53 +Slot[455] 0200 301000 6213544001162715 ------------- 00 210317 000000000000 507918210317000022016213544001162715 507918210317 098668 198901 S +18:21:54 +Slot[475] 0200 010000 6213545000546782 ------------- 00 954596 000030000000 507901416697030110026213545000546782 507901416697 390139 668899 S +18:21:59 Slot [460] | NOT FINANCIAL TRANSACTION +18:22:09 Slot [440] | NOT FINANCIAL TRANSACTION +18:22:11 +Slot[495] 0200 300000 6688990108426303 ------------- 00 826595 000000000000 507903499709060022006688990108426303 507903499709 773672 621354 S +18:22:13 Slot [482] | NOT FINANCIAL TRANSACTION +18:22:21 Slot [432] | NOT FINANCIAL TRANSACTION +18:22:31 +Slot[449] 0200 010000 6213545000037501 ------------- 00 271193 000100000000 5079112711930243VTKS6213545000037501 507911271193 386821 180893 S +18:22:42 +Slot[488] 0200 300000 1808930500012687 ------------- 00 954619 000000000000 507901489386035150011808930500012687 507901489386 163461 668899 S +18:22:43 +Slot[453] 0200 010000 6688990602356204 ------------- 00 826704 000005000000 507904229494050046006688990602356204 507904229494 028556 621354 S +18:22:48 Slot [470] | NOT FINANCIAL TRANSACTION +18:22:49 Slot [484] | NOT FINANCIAL TRANSACTION +18:23:00 Slot [480] | NOT FINANCIAL TRANSACTION +18:23:10 Slot [471] | NOT FINANCIAL TRANSACTION +18:23:15 Slot [490] | NOT FINANCIAL TRANSACTION +18:23:19 +Slot[463] 0200 010000 1808930500012687 ------------- 00 954628 000100000000 507901489387035150011808930500012687 507901489387 936331 668899 S +18:23:20 +Slot[448] 0200 301000 6213544001564316 ------------- 00 954632 000000000000 507902435722030200316213544001564316 507902435722 419150 668899 S +18:23:21 Slot [479] | NOT FINANCIAL TRANSACTION +18:23:31 Slot [0] | NOT FINANCIAL TRANSACTION +18:23:42 +Slot[4] 0200 010000 6213544000822475 ------------- 05 271198 000010000000 5079112711980528LPBP6213544000822475 507911271198 860281 180893 S +18:23:45 +Slot[493] 0200 010000 6213545000037501 ------------- 00 271199 000010000000 5079112711990243VTKS6213545000037501 507911271199 151988 180893 S +18:23:53 Slot [2] | NOT FINANCIAL TRANSACTION +18:23:57 Slot [498] | NOT FINANCIAL TRANSACTION +18:24:01 +Slot[1] 0200 301000 6213545000964696 ------------- 00 210339 000000000000 507918210339015290156213545000964696 507918210339 654032 198901 S +18:24:03 +Slot[473] 0200 010000 6213541000172794 ------------- 00 954654 000100000000 507900146874030200056213541000172794 507900146874 408779 668899 S +18:24:08 Slot [476] | NOT FINANCIAL TRANSACTION +18:24:17 Slot [489] | NOT FINANCIAL TRANSACTION +18:24:19 Slot [477] | NOT FINANCIAL TRANSACTION +18:24:28 +Slot[485] 0200 011000 6213545000964696 ------------- 00 210345 000020000000 507918210345015290156213545000964696 507918210345 384494 198901 S +18:24:39 +Slot[14] 0200 010000 1808930500012687 ------------- 00 954661 000100000000 507901489389035150011808930500012687 507901489389 832943 668899 S +18:24:39 Slot [483] | NOT FINANCIAL TRANSACTION +18:24:56 +Slot[486] 0200 300000 1808931800017269 ------------- 00 827079 000000000000 507904653867170010001808931800017269 507904653867 304566 621354 S +18:24:57 Slot [474] | NOT FINANCIAL TRANSACTION +18:24:58 Slot [472] | NOT FINANCIAL TRANSACTION +18:25:00 Slot [6] | NOT FINANCIAL TRANSACTION +18:25:10 +Slot[492] 0200 010000 6213544002031695 ------------- 00 954672 000100000000 507900285858030100056213544002031695 507900285858 534153 668899 S +18:25:11 Slot [13] | NOT FINANCIAL TRANSACTION +18:25:16 +Slot[16] 0200 010000 6213544001248704 ------------- 00 223786 000020000000 507900118800010011006213544001248704 507900118800 043719 220699 S +18:25:19 Slot [454] | NOT FINANCIAL TRANSACTION +18:25:21 Slot [12] | NOT FINANCIAL TRANSACTION +18:25:24 Slot [22] | NOT FINANCIAL TRANSACTION +18:25:31 Slot [469] | NOT FINANCIAL TRANSACTION +18:25:39 +Slot[494] 0420 010000 1808930500012687 ------------- 00 954661 000100000000 507901489389035150011808930500012687 507901489389 -------- 668899 S +18:25:41 Slot [491] | NOT FINANCIAL TRANSACTION +18:25:43 +Slot[17] 0200 011000 6688990040131409 ------------- 55 827226 000020000000 507903040598010084006688990040131409 507903040598 828514 621354 S +18:25:52 Slot [29] | NOT FINANCIAL TRANSACTION +18:26:00 +Slot[10] 0200 010000 6688990700194200 ------------- 00 827282 000050000000 507904470597150009006688990700194200 507904470597 758962 621354 S +18:26:01 +Slot[499] 0200 301000 1808930300018231 ------------- 00 827284 000000000000 507903961867010112001808930300018231 507903961867 527307 621354 S +18:26:03 Slot [23] | NOT FINANCIAL TRANSACTION +18:26:10 +Slot[481] 0200 010000 1808931800017269 ------------- 00 827296 000050000000 507904653869170010001808931800017269 507904653869 459127 621354 S +18:26:13 Slot [35] | NOT FINANCIAL TRANSACTION +18:26:13 +Slot[31] 0200 011000 6688990040131409 ------------- 00 827320 000020000000 507903040600010084006688990040131409 507903040600 934149 621354 S +18:26:19 +Slot[3] 0200 010000 6213545000017057 ------------- 00 954689 000020000000 507902650473030180066213545000017057 507902650473 823202 668899 S +18:26:21 Slot [496] | NOT FINANCIAL TRANSACTION +18:26:22 Slot [33] | NOT FINANCIAL TRANSACTION +18:26:28 +Slot[11] 0200 010000 1808931100008893 ------------- 00 827344 000005000000 507904559822020018001808931100008893 507904559822 618025 621354 S +18:26:33 +Slot[21] 0200 302000 1808930200050995 ------------- 42 954692 000000000000 507901203969030200121808930200050995 507901203969 619619 668899 S +18:26:39 Slot [9] | NOT FINANCIAL TRANSACTION +18:26:41 +Slot[30] 0200 302000 6213545001064181 ------------- 00 954698 000000000000 507902148135030200246213545001064181 507902148135 931302 668899 S +18:26:50 Slot [461] | NOT FINANCIAL TRANSACTION +18:26:54 +Slot[45] 0420 010000 1808930500012687 0000000000000 00 954661 000100000000 507901489389035150011808930500012687 507901489389 954661 668899 S +18:27:04 +Slot[37] 0200 010000 6213544002031695 ------------- 00 954707 000100000000 507900285860030100056213544002031695 507900285860 066016 668899 S +18:27:05 Slot [36] | NOT FINANCIAL TRANSACTION +18:27:08 Slot [40] | NOT FINANCIAL TRANSACTION +18:27:18 +Slot[18] 0200 010000 6213545001064181 ------------- 00 954713 000045000000 507902148136030200246213545001064181 507902148136 910976 668899 S +18:27:20 +Slot[43] 0200 010000 6688990040156026 ------------- 00 827506 000050000000 507904653871170010006688990040156026 507904653871 347416 621354 S +18:27:23 Slot [28] | NOT FINANCIAL TRANSACTION +18:27:23 Slot [8] | NOT FINANCIAL TRANSACTION +18:27:26 +Slot[497] 0200 010000 6688990040120022 ------------- 00 827518 000005000000 507904559824020018006688990040120022 507904559824 936488 621354 S +18:27:39 Slot [55] | NOT FINANCIAL TRANSACTION +18:27:48 +Slot[7] 0200 010000 1808930200050995 ------------- 00 954722 000002000000 507901203971030200121808930200050995 507901203971 175696 668899 S +18:27:49 +Slot[467] 0200 010000 1808930500012687 ------------- 00 954721 000100000000 507901489391035150011808930500012687 507901489391 065614 668899 S +18:27:55 Slot [61] | NOT FINANCIAL TRANSACTION +18:27:58 +Slot[52] 0200 010000 6688990050030160 ------------- 14 271217 000010000000 5079112712170102SAPA6688990050030160 507911271217 927548 180893 S +18:28:11 Slot [44] | NOT FINANCIAL TRANSACTION +18:28:13 Slot [50] | NOT FINANCIAL TRANSACTION +18:28:13 Slot [25] | NOT FINANCIAL TRANSACTION +18:28:25 Slot [60] | NOT FINANCIAL TRANSACTION +18:28:27 Slot [15] | NOT FINANCIAL TRANSACTION +18:28:42 Slot [478] | NOT FINANCIAL TRANSACTION +18:28:52 Slot [63] | NOT FINANCIAL TRANSACTION +18:29:08 Slot [38] | NOT FINANCIAL TRANSACTION +18:29:13 +Slot[73] 0200 301000 6688990050030160 ------------- 14 271222 032011281427 5079112712220102SAPA6688990050030160 507911271222 825564 180893 S +18:29:18 Slot [68] | NOT FINANCIAL TRANSACTION +18:29:23 Slot [32] | NOT FINANCIAL TRANSACTION +18:29:26 +Slot[487] 0200 010000 6213543000016393 ------------- 00 954748 000020000000 507902093456030200216213543000016393 507902093456 040936 668899 S +18:29:27 Slot [26] | NOT FINANCIAL TRANSACTION +18:29:34 +Slot[41] 0200 010000 6213544002031695 ------------- 00 954750 000094000000 507900285862030100056213544002031695 507900285862 088302 668899 S +18:29:34 Slot [20] | NOT FINANCIAL TRANSACTION +18:29:51 Slot [464] | NOT FINANCIAL TRANSACTION +18:29:57 Slot [48] | NOT FINANCIAL TRANSACTION +18:30:02 Slot [46] | NOT FINANCIAL TRANSACTION +18:30:12 Slot [27] | NOT FINANCIAL TRANSACTION +18:30:17 +Slot[69] 0200 010000 6213544001523791 ------------- 00 271225 000010000000 5079112712250362CPSU6213544001523791 507911271225 167875 180893 S +18:30:23 Slot [19] | NOT FINANCIAL TRANSACTION +18:30:28 Slot [78] | NOT FINANCIAL TRANSACTION +18:30:29 Slot [54] | NOT FINANCIAL TRANSACTION +18:30:46 +Slot[47] 0200 010000 1808931300038815 ------------- 00 828037 000070000000 507903398181060012001808931300038815 507903398181 726477 621354 S +18:30:49 Slot [57] | NOT FINANCIAL TRANSACTION +18:31:01 Slot [24] | NOT FINANCIAL TRANSACTION +18:31:12 Slot [34] | NOT FINANCIAL TRANSACTION +18:31:16 +Slot[49] 0200 010000 6213545000013312 ------------- 00 954771 000030000000 507900823672030150016213545000013312 507900823672 328194 668899 S +18:31:22 Slot [81] | NOT FINANCIAL TRANSACTION +18:31:22 Slot [86] | NOT FINANCIAL TRANSACTION +18:31:28 Slot [42] | NOT FINANCIAL TRANSACTION +18:31:31 Slot [88] | NOT FINANCIAL TRANSACTION +18:31:36 +Slot[89] 0200 010000 6688990100967304 ------------- 14 271232 000100000000 5079112712320467PSLK6688990100967304 507911271232 985248 180893 S +18:31:41 +Slot[59] 0200 010000 2206990000131862 ------------- 00 954776 000020000000 507900158500030200062206990000131862 507900158500 647795 668899 S +18:31:47 +Slot[79] 0200 300000 6688990103495204 ------------- 00 828246 000000000000 507904965921150011006688990103495204 507904965921 630351 621354 S +18:31:49 Slot [84] | NOT FINANCIAL TRANSACTION +18:32:00 +Slot[58] 0200 010000 6688990108434109 ------------- 61 271235 000200000000 5079112712350464UDPB6688990108434109 507911271235 089500 180893 S +18:32:11 Slot [5] | NOT FINANCIAL TRANSACTION +18:32:21 Slot [67] | NOT FINANCIAL TRANSACTION +18:32:32 Slot [93] | NOT FINANCIAL TRANSACTION +18:32:33 Slot [62] | NOT FINANCIAL TRANSACTION +18:32:33 Slot [39] | NOT FINANCIAL TRANSACTION +18:32:37 +Slot[56] 0200 010000 6213541000685241 ------------- 00 954793 000050000000 507901584498039150016213541000685241 507901584498 062686 668899 S +18:32:38 +Slot[82] 0200 011000 6688990103495204 ------------- 00 828374 000010000000 507904965923150011006688990103495204 507904965923 967400 621354 S +18:32:47 +Slot[51] 0200 010000 6688990108434109 ------------- 14 271237 000010000000 5079112712370464UDPB6688990108434109 507911271237 952463 180893 S +18:32:57 +Slot[64] 0200 010000 6213543000101989 ------------- 00 271239 000100000000 5079112712390104NUOL6213543000101989 507911271239 217288 180893 S +18:33:10 Slot [100] | NOT FINANCIAL TRANSACTION +18:33:24 Slot [91] | NOT FINANCIAL TRANSACTION +18:33:34 Slot [65] | NOT FINANCIAL TRANSACTION +18:33:35 Slot [72] | NOT FINANCIAL TRANSACTION +18:33:39 Slot [76] | NOT FINANCIAL TRANSACTION +18:33:46 +Slot[90] 0420 011000 1808930600008361 ------------- 00 828493 000020000000 507904424240030041001808930600008361 507904424240 -------- 621354 S +18:33:48 +Slot[106] 0200 302000 6213545001015290 ------------- 00 954807 000000000000 507900146893030200056213545001015290 507900146893 668642 668899 S +18:33:49 Slot [114] | NOT FINANCIAL TRANSACTION +18:33:50 +Slot[99] 0200 011000 1808930600008361 ------------- 91 828493 000020000000 507904424240030041001808930600008361 507904424240 983437 621354 S +18:33:58 +Slot[83] 0200 011000 6213541000532492 ------------- 00 210463 000100000000 507918210463000022226213541000532492 507918210463 800529 198901 S +18:34:00 Slot [66] | NOT FINANCIAL TRANSACTION +18:34:11 Slot [118] | NOT FINANCIAL TRANSACTION +18:34:17 +Slot[107] 0200 300000 6688990103650204 ------------- 00 828660 000000000000 507903489514060021006688990103650204 507903489514 506052 621354 S +18:34:21 Slot [121] | NOT FINANCIAL TRANSACTION +18:34:31 +Slot[115] 0200 011000 1808930600008361 ------------- 00 828686 000020000000 507904424242030041001808930600008361 507904424242 053973 621354 S +18:34:32 +Slot[92] 0200 010000 6213545001015290 ------------- 00 954818 000100000000 507900146894030200056213545001015290 507900146894 272429 668899 S +18:34:37 Slot [74] | NOT FINANCIAL TRANSACTION +18:34:37 Slot [113] | NOT FINANCIAL TRANSACTION +18:34:43 +Slot[98] 0200 010000 6213548000344661 ------------- 61 271248 000150000000 5079112712480102SAPA6213548000344661 507911271248 581127 180893 S +18:34:44 Slot [108] | NOT FINANCIAL TRANSACTION +18:34:52 +Slot[127] 0200 301000 6213545000030027 ------------- 00 271250 032011335327 5079112712500243VTKS6213545000030027 507911271250 356919 180893 S +18:34:57 Slot [75] | NOT FINANCIAL TRANSACTION +18:34:58 +Slot[95] 0420 011000 1808930600008361 0000000000000 12 828493 000020000000 507904424240030041001808930600008361 507904424240 -------- 621354 S +18:35:09 Slot [53] | NOT FINANCIAL TRANSACTION +18:35:13 +Slot[94] 0200 010000 6213548000197887 ------------- 00 954828 000050000000 507902532081030200336213548000197887 507902532081 481557 668899 S +18:35:24 Slot [134] | NOT FINANCIAL TRANSACTION +18:35:35 Slot [96] | NOT FINANCIAL TRANSACTION +18:35:39 Slot [103] | NOT FINANCIAL TRANSACTION +18:35:49 Slot [125] | NOT FINANCIAL TRANSACTION +18:35:51 Slot [101] | NOT FINANCIAL TRANSACTION +18:36:02 Slot [70] | NOT FINANCIAL TRANSACTION +18:36:10 Slot [77] | NOT FINANCIAL TRANSACTION +18:36:13 Slot [102] | NOT FINANCIAL TRANSACTION +18:36:14 +Slot[109] 0200 301000 6688990602952804 ------------- 00 828971 000000000000 507903032392120026006688990602952804 507903032392 586132 621354 S +18:36:23 Slot [85] | NOT FINANCIAL TRANSACTION +18:36:25 Slot [71] | NOT FINANCIAL TRANSACTION +18:36:26 +Slot[136] 0200 300000 6688990040053850 ------------- 00 829004 000000000000 507903625572160015006688990040053850 507903625572 364957 621354 S +18:36:31 +Slot[105] 0200 010000 6213544000398187 ------------- 00 271254 000050000000 5079112712540243VTKS6213544000398187 507911271254 374322 180893 S +18:36:33 +Slot[129] 0200 301000 6688990108434109 ------------- 14 271255 032011353427 5079112712550464UDPB6688990108434109 507911271255 067008 180893 S +18:36:41 Slot [116] | NOT FINANCIAL TRANSACTION +18:36:41 Slot [131] | NOT FINANCIAL TRANSACTION +18:36:54 Slot [104] | NOT FINANCIAL TRANSACTION +18:36:58 Slot [138] | NOT FINANCIAL TRANSACTION +18:37:10 +Slot[97] 0200 011000 6688990602952804 ------------- 00 829084 000020000000 507903032394120026006688990602952804 507903032394 460881 621354 S +18:37:13 Slot [112] | NOT FINANCIAL TRANSACTION +18:37:21 +Slot[111] 0200 301000 6688990108434109 ------------- 14 271257 032011362327 5079112712570464UDPB6688990108434109 507911271257 399530 180893 S +18:37:29 +Slot[124] 0200 011000 6213541000632540 ------------- 00 210510 000100000000 507918210510015290096213541000632540 507918210510 508971 198901 S +18:37:34 Slot [80] | NOT FINANCIAL TRANSACTION +18:37:37 +Slot[140] 0200 010000 2206990000122853 ------------- 00 954872 000030000000 507902565320030010142206990000122853 507902565320 638426 668899 S +18:37:43 Slot [123] | NOT FINANCIAL TRANSACTION +18:37:48 +Slot[147] 0200 010000 1808930400012498 ------------- 00 829182 000100000000 507904460742150008001808930400012498 507904460742 724339 621354 S +18:37:53 +Slot[117] 0200 301000 1808931800011569 ------------- 55 829207 000000000000 507904635984170008001808931800011569 507904635984 750321 621354 S +18:37:54 +Slot[132] 0200 010000 6688990103257208 ------------- 00 829214 000040000000 507903499711060022006688990103257208 507903499711 026319 621354 S +18:37:59 Slot [122] | NOT FINANCIAL TRANSACTION +18:38:02 Slot [161] | NOT FINANCIAL TRANSACTION +18:38:02 +Slot[162] 0200 300000 6688990700331307 ------------- 00 829239 000000000000 507903863765010102006688990700331307 507903863765 014383 621354 S +18:38:09 +Slot[166] 0200 011000 6688990108434109 ------------- 14 271262 000002000000 5079112712620464UDPB6688990108434109 507911271262 457044 180893 S +18:38:13 +Slot[143] 0200 301000 1808931800011569 ------------- 00 829271 000000000000 507904635985170008001808931800011569 507904635985 854790 621354 S +18:38:15 +Slot[154] 0200 011000 6213541000632540 ------------- 00 210522 000100000000 507918210522015290096213541000632540 507918210522 300428 198901 S +18:38:17 Slot [145] | NOT FINANCIAL TRANSACTION +18:38:32 Slot [153] | NOT FINANCIAL TRANSACTION +18:38:43 Slot [150] | NOT FINANCIAL TRANSACTION +18:38:45 Slot [120] | NOT FINANCIAL TRANSACTION +18:38:54 +Slot[110] 0200 301000 1808931800011569 ------------- 00 829386 000000000000 507904635986170008001808931800011569 507904635986 862245 621354 S +18:38:58 Slot [133] | NOT FINANCIAL TRANSACTION +18:39:04 Slot [159] | NOT FINANCIAL TRANSACTION +18:39:09 Slot [142] | NOT FINANCIAL TRANSACTION +18:39:15 +Slot[158] 0200 010000 1888880000002717 ------------- 00 829435 000030000000 507904341833030033001888880000002717 507904341833 658424 621354 S +18:39:20 Slot [146] | NOT FINANCIAL TRANSACTION +18:39:29 +Slot[167] 0200 013000 6688990700331307 ------------- 00 829512 000010000000 507903863767010102006688990700331307 507903863767 606786 621354 S +18:39:31 Slot [137] | NOT FINANCIAL TRANSACTION +18:39:41 Slot [87] | NOT FINANCIAL TRANSACTION +18:39:47 Slot [130] | NOT FINANCIAL TRANSACTION +18:39:57 Slot [128] | NOT FINANCIAL TRANSACTION +18:39:59 +Slot[157] 0200 011000 1808931800011569 ------------- 00 829592 000010000000 507904635988170008001808931800011569 507904635988 472146 621354 S +18:40:02 Slot [175] | NOT FINANCIAL TRANSACTION +18:40:09 Slot [141] | NOT FINANCIAL TRANSACTION +18:40:18 Slot [151] | NOT FINANCIAL TRANSACTION +18:40:19 +Slot[170] 0200 010000 6213548000567584 ------------- 00 954920 000010000000 507902093463030200216213548000567584 507902093463 838047 668899 S +18:40:34 +Slot[171] 0200 010000 6213544000149382 ------------- 00 954923 000030000000 507900502567030110016213544000149382 507900502567 068152 668899 S +18:40:34 Slot [172] | NOT FINANCIAL TRANSACTION +18:40:46 Slot [164] | NOT FINANCIAL TRANSACTION +18:40:49 Slot [186] | NOT FINANCIAL TRANSACTION +18:40:57 Slot [126] | NOT FINANCIAL TRANSACTION +18:41:12 Slot [139] | NOT FINANCIAL TRANSACTION +18:41:14 Slot [202] | NOT FINANCIAL TRANSACTION +18:41:23 Slot [119] | NOT FINANCIAL TRANSACTION +18:41:23 Slot [148] | NOT FINANCIAL TRANSACTION +18:41:38 Slot [176] | NOT FINANCIAL TRANSACTION +18:41:49 Slot [144] | NOT FINANCIAL TRANSACTION +18:41:51 Slot [187] | NOT FINANCIAL TRANSACTION +18:42:00 Slot [182] | NOT FINANCIAL TRANSACTION +18:42:11 Slot [163] | NOT FINANCIAL TRANSACTION +18:42:14 +Slot[160] 0200 011000 6688990105370504 ------------- 00 829995 000010000000 507904635990170008006688990105370504 507904635990 470703 621354 S +18:42:19 Slot [204] | NOT FINANCIAL TRANSACTION +18:42:23 Slot [203] | NOT FINANCIAL TRANSACTION +18:42:37 Slot [179] | NOT FINANCIAL TRANSACTION +18:42:48 Slot [191] | NOT FINANCIAL TRANSACTION +18:42:53 +Slot[192] 0200 301000 6213544001883971 ------------- 00 954967 000000000000 507900146900030200056213544001883971 507900146900 790897 668899 S +18:42:53 Slot [135] | NOT FINANCIAL TRANSACTION +18:42:58 +Slot[156] 0200 011000 6213541000511280 ------------- 00 003141 000100000000 507900186778080001006213541000511280 507900186778 194049 220699 S +18:42:58 Slot [190] | NOT FINANCIAL TRANSACTION +18:43:09 Slot [152] | NOT FINANCIAL TRANSACTION +18:43:20 Slot [198] | NOT FINANCIAL TRANSACTION +18:43:24 Slot [196] | NOT FINANCIAL TRANSACTION +18:43:31 Slot [155] | NOT FINANCIAL TRANSACTION +18:43:41 Slot [181] | NOT FINANCIAL TRANSACTION +18:43:50 +Slot[214] 0200 011000 6226331500062322 ------------- 61 271274 000300000000 5079112712740161HQBR6226331500062322 507911271274 581075 180893 S +18:43:55 Slot [165] | NOT FINANCIAL TRANSACTION +18:43:56 +Slot[201] 0200 010000 6213544001883971 ------------- 00 954988 000020000000 507900146901030200056213544001883971 507900146901 300064 668899 S +18:44:02 Slot [195] | NOT FINANCIAL TRANSACTION +18:44:09 +Slot[194] 0200 010000 6213541000227465 ------------- 00 954992 000100000000 507901541777030200166213541000227465 507901541777 145402 668899 S +18:44:11 +Slot[209] 0200 300000 6688990107038901 ------------- 00 830322 000000000000 507902547239050037006688990107038901 507902547239 253545 621354 S +18:44:19 +Slot[178] 0200 011000 6226331500062322 ------------- 61 271276 000280000000 5079112712760161HQBR6226331500062322 507911271276 146374 180893 S +18:44:29 Slot [193] | NOT FINANCIAL TRANSACTION +18:44:29 Slot [206] | NOT FINANCIAL TRANSACTION +18:44:43 Slot [184] | NOT FINANCIAL TRANSACTION +18:44:54 +Slot[212] 0200 011000 6226331500062322 ------------- 61 271278 000250000000 5079112712780161HQBR6226331500062322 507911271278 738963 180893 S +18:44:55 Slot [230] | NOT FINANCIAL TRANSACTION +18:44:57 Slot [183] | NOT FINANCIAL TRANSACTION +18:44:57 Slot [221] | NOT FINANCIAL TRANSACTION +18:44:59 +Slot[207] 0200 010000 6213541000227465 ------------- 00 955006 000100000000 507901541779030200166213541000227465 507901541779 228397 668899 S +18:45:01 +Slot[213] 0200 010000 6688990107038901 ------------- 00 830465 000010000000 507902547241050037006688990107038901 507902547241 147196 621354 S +18:45:03 +Slot[169] 0200 010000 6688990040037606 ------------- 14 271280 000010000000 5079112712800261PSL16688990040037606 507911271280 110212 180893 S +18:45:14 +Slot[205] 0200 010000 6226331500062322 ------------- 61 271282 000200000000 5079112712820161HQBR6226331500062322 507911271282 230488 180893 S +18:45:26 Slot [185] | NOT FINANCIAL TRANSACTION +18:45:34 Slot [149] | NOT FINANCIAL TRANSACTION +18:45:37 Slot [232] | NOT FINANCIAL TRANSACTION +18:45:48 Slot [180] | NOT FINANCIAL TRANSACTION +18:45:58 +Slot[222] 0200 010000 1808931000018000 ------------- 00 955037 000030000000 507901519468030040031808931000018000 507901519468 618643 668899 S +18:45:59 Slot [211] | NOT FINANCIAL TRANSACTION +18:45:59 +Slot[208] 0200 010000 6226331500062322 ------------- 61 271287 000150000000 5079112712870161HQBR6226331500062322 507911271287 048088 180893 S +18:46:03 +Slot[189] 0200 010000 6688990102183108 ------------- 00 830650 000010000000 507904229525050046006688990102183108 507904229525 370911 621354 S +18:46:08 Slot [229] | NOT FINANCIAL TRANSACTION +18:46:19 Slot [168] | NOT FINANCIAL TRANSACTION +18:46:23 Slot [173] | NOT FINANCIAL TRANSACTION +18:46:30 Slot [174] | NOT FINANCIAL TRANSACTION +18:46:39 Slot [246] | NOT FINANCIAL TRANSACTION +18:46:41 Slot [223] | NOT FINANCIAL TRANSACTION +18:46:46 +Slot[188] 0200 010000 6213544000555299 ------------- 00 271292 000010000000 5079112712920102SAPA6213544000555299 507911271292 344781 180893 S +18:46:55 Slot [235] | NOT FINANCIAL TRANSACTION +18:46:57 Slot [244] | NOT FINANCIAL TRANSACTION +18:47:01 +Slot[227] 0200 010000 6213548000522472 ------------- 00 955054 000020000000 507902488675030010136213548000522472 507902488675 193582 668899 S +18:47:01 Slot [215] | NOT FINANCIAL TRANSACTION +18:47:13 Slot [251] | NOT FINANCIAL TRANSACTION +18:47:15 +Slot[248] 0200 010000 6226331500062322 ------------- 61 271297 000200000000 5079112712970161HQBR6226331500062322 507911271297 634333 180893 S +18:47:24 Slot [255] | NOT FINANCIAL TRANSACTION +18:47:32 +Slot[243] 0200 010000 6226331500062322 ------------- 00 271299 000100000000 5079112712990161HQBR6226331500062322 507911271299 657795 180893 S +18:47:44 Slot [242] | NOT FINANCIAL TRANSACTION +18:47:45 Slot [250] | NOT FINANCIAL TRANSACTION +18:47:55 Slot [177] | NOT FINANCIAL TRANSACTION +18:48:03 Slot [226] | NOT FINANCIAL TRANSACTION +18:48:06 Slot [233] | NOT FINANCIAL TRANSACTION +18:48:22 Slot [237] | NOT FINANCIAL TRANSACTION +18:48:33 Slot [260] | NOT FINANCIAL TRANSACTION +18:48:48 Slot [234] | NOT FINANCIAL TRANSACTION +18:48:49 Slot [253] | NOT FINANCIAL TRANSACTION +18:48:58 +Slot[238] 0200 011000 6213545000653489 ------------- 00 271303 000100000000 5079112713030361BLTB6213545000653489 507911271303 294922 180893 S +18:49:05 Slot [200] | NOT FINANCIAL TRANSACTION +18:49:09 Slot [216] | NOT FINANCIAL TRANSACTION +18:49:19 Slot [259] | NOT FINANCIAL TRANSACTION +18:49:22 +Slot[249] 0200 300000 6213544002133608 ------------- 00 955116 000000000000 507900977536034070026213544002133608 507900977536 922856 668899 S +18:49:29 Slot [210] | NOT FINANCIAL TRANSACTION +18:49:32 +Slot[263] 0200 010000 6213545001001993 ------------- 14 955122 000070000000 507902104501030200226213545001001993 507902104501 715994 668899 S +18:49:40 Slot [261] | NOT FINANCIAL TRANSACTION +18:49:48 +Slot[269] 0200 010000 6213544000075512 ------------- 00 271308 000010000000 5079112713080102SAPA6213544000075512 507911271308 481414 180893 S +18:49:54 Slot [225] | NOT FINANCIAL TRANSACTION +18:49:57 Slot [199] | NOT FINANCIAL TRANSACTION +18:50:01 Slot [270] | NOT FINANCIAL TRANSACTION +18:50:07 Slot [275] | NOT FINANCIAL TRANSACTION +18:50:11 +Slot[240] 0200 010000 6213544002133608 ------------- 00 955139 000100000000 507900977537034070026213544002133608 507900977537 651151 668899 S +18:50:12 +Slot[197] 0200 012000 6213548000001345 ------------- 75 271312 000032000000 5079112713120115LPBR6213548000001345 507911271312 369198 180893 S +18:50:17 +Slot[265] 0200 010000 6688990102133004 ------------- 00 831323 000100000000 507904807862070016006688990102133004 507904807862 118433 621354 S +18:50:18 +Slot[218] 0200 010000 6213545000229611 ------------- 00 955142 000100000000 507902235455030030046213545000229611 507902235455 553540 668899 S +18:50:23 Slot [247] | NOT FINANCIAL TRANSACTION +18:50:34 +Slot[256] 0200 011000 1808930300015518 ------------- 00 831364 000020000000 507904898689010122001808930300015518 507904898689 261477 621354 S +18:50:44 +Slot[228] 0200 011000 1808930200040400 ------------- 00 831396 000050000000 507903684173010088001808930200040400 507903684173 267741 621354 S +18:50:50 +Slot[274] 0200 010000 6213544001858015 ------------- 00 271314 000010000000 5079112713140102SAPA6213544001858015 507911271314 420878 180893 S +18:50:59 Slot [264] | NOT FINANCIAL TRANSACTION +18:51:00 Slot [231] | NOT FINANCIAL TRANSACTION +18:51:04 +Slot[220] 0200 011000 6213548000313641 ------------- 00 271317 000020000000 5079112713170531VTHH6213548000313641 507911271317 535564 180893 S +18:51:09 Slot [273] | NOT FINANCIAL TRANSACTION +18:51:16 Slot [279] | NOT FINANCIAL TRANSACTION +18:51:23 Slot [239] | NOT FINANCIAL TRANSACTION +18:51:27 Slot [252] | NOT FINANCIAL TRANSACTION +18:51:27 +Slot[272] 0200 010000 6213543000035328 ------------- 00 271321 000010000000 5079112713210483XKNH6213543000035328 507911271321 211203 180893 S +18:51:29 +Slot[254] 0200 011000 1888880000096321 ------------- 55 001996 000010000000 507900296971010016001888880000096321 507900296971 868145 220699 S +18:51:43 +Slot[282] 0200 301000 1808930200040400 ------------- 00 831559 000000000000 507903684174010088001808930200040400 507903684174 134952 621354 S +18:51:48 Slot [241] | NOT FINANCIAL TRANSACTION +18:51:58 Slot [266] | NOT FINANCIAL TRANSACTION +18:52:04 Slot [224] | NOT FINANCIAL TRANSACTION +18:52:08 Slot [280] | NOT FINANCIAL TRANSACTION +18:52:11 Slot [276] | NOT FINANCIAL TRANSACTION +18:52:19 Slot [219] | NOT FINANCIAL TRANSACTION +18:52:23 +Slot[258] 0200 011000 1888880000096321 ------------- 00 001999 000010000000 507900296973010016001888880000096321 507900296973 111608 220699 S +18:52:30 Slot [290] | NOT FINANCIAL TRANSACTION +18:52:46 Slot [284] | NOT FINANCIAL TRANSACTION +18:52:54 +Slot[287] 0200 011000 6213544000553187 ------------- 00 271325 000040000000 5079112713250105XTNY6213544000553187 507911271325 970227 180893 S +18:53:02 Slot [277] | NOT FINANCIAL TRANSACTION +18:53:09 Slot [271] | NOT FINANCIAL TRANSACTION +18:53:13 Slot [267] | NOT FINANCIAL TRANSACTION +18:53:13 Slot [245] | NOT FINANCIAL TRANSACTION +18:53:20 +Slot[236] 0200 300000 6688990040035865 ------------- 00 831800 000000000000 507904229546050046006688990040035865 507904229546 051414 621354 S +18:53:29 Slot [294] | NOT FINANCIAL TRANSACTION +18:53:37 +Slot[303] 0200 311000 6688990102658109 ------------- 14 003144 000000000000 507900186780080001006688990102658109 507900186780 433910 220699 S +18:53:44 Slot [217] | NOT FINANCIAL TRANSACTION +18:53:55 +Slot[293] 0200 011000 1808930200005007 ------------- 00 831888 000050000000 507902859529160011001808930200005007 507902859529 552821 621354 S +18:53:56 +Slot[298] 0200 010000 6688990108417104 ------------- 00 831900 000005000000 507904719809180010006688990108417104 507904719809 001785 621354 S +18:54:06 +Slot[300] 0200 011000 6688990700163106 ------------- 14 271332 000030000000 5079112713320104NUOL6688990700163106 507911271332 165255 180893 S +18:54:14 Slot [278] | NOT FINANCIAL TRANSACTION +18:54:15 Slot [281] | NOT FINANCIAL TRANSACTION +18:54:15 Slot [257] | NOT FINANCIAL TRANSACTION +18:54:16 +Slot[299] 0200 300000 6688990040035865 ------------- 00 831938 000000000000 507904229547050046006688990040035865 507904229547 142021 621354 S +18:54:20 +Slot[308] 0200 310000 6688990102658109 ------------- 14 003147 000000000000 507900186782080001006688990102658109 507900186782 459432 220699 S +18:54:28 Slot [286] | NOT FINANCIAL TRANSACTION +18:54:43 Slot [295] | NOT FINANCIAL TRANSACTION +18:54:57 Slot [296] | NOT FINANCIAL TRANSACTION +18:55:00 Slot [283] | NOT FINANCIAL TRANSACTION +18:55:10 Slot [306] | NOT FINANCIAL TRANSACTION +18:55:17 Slot [311] | NOT FINANCIAL TRANSACTION +18:55:19 Slot [312] | NOT FINANCIAL TRANSACTION +18:55:21 Slot [307] | NOT FINANCIAL TRANSACTION +18:55:33 Slot [288] | NOT FINANCIAL TRANSACTION +18:55:37 +Slot[316] 0200 010000 6213541000468499 ------------- 51 271336 000100000000 5079112713360102SAPA6213541000468499 507911271336 951020 180893 S +18:55:49 Slot [310] | NOT FINANCIAL TRANSACTION +18:55:55 +Slot[317] 0200 011000 6213544001229449 ------------- 51 271338 000020000000 5079112713380110VTBR6213544001229449 507911271338 509344 180893 S +18:56:06 +Slot[318] 0200 011000 1989010003157486 ------------- 00 832169 000100000000 507903957413010111001989010003157486 507903957413 087552 621354 S +18:56:07 Slot [325] | NOT FINANCIAL TRANSACTION +18:56:12 +Slot[322] 0200 301000 6213541000712201 ------------- 00 955321 000000000000 507902407376030010106213541000712201 507902407376 806967 668899 S +18:56:19 Slot [315] | NOT FINANCIAL TRANSACTION +18:56:20 Slot [297] | NOT FINANCIAL TRANSACTION +18:56:22 Slot [289] | NOT FINANCIAL TRANSACTION +18:56:24 Slot [304] | NOT FINANCIAL TRANSACTION +18:56:32 +Slot[326] 0200 301000 6213544001229449 ------------- 00 271342 032011553427 5079112713420110VTBR6213544001229449 507911271342 663146 180893 S +18:56:41 Slot [291] | NOT FINANCIAL TRANSACTION +18:56:52 +Slot[327] 0200 010000 6213541000468499 ------------- 51 955345 000100000000 507900146918030200056213541000468499 507900146918 093292 668899 S +18:56:53 Slot [285] | NOT FINANCIAL TRANSACTION +18:57:10 Slot [331] | NOT FINANCIAL TRANSACTION +18:57:14 +Slot[301] 0200 010000 6213541000468499 ------------- 51 955357 000100000000 507900146919030200056213541000468499 507900146919 327434 668899 S +18:57:21 Slot [305] | NOT FINANCIAL TRANSACTION +18:57:25 Slot [302] | NOT FINANCIAL TRANSACTION +18:57:27 +Slot[314] 0200 011000 6213544001229449 ------------- 00 271345 000015000000 5079112713450110VTBR6213544001229449 507911271345 027498 180893 S +18:57:29 Slot [292] | NOT FINANCIAL TRANSACTION +18:57:36 +Slot[335] 0200 010000 6213541000468499 ------------- 51 955371 000100000000 507900146920030200056213541000468499 507900146920 603381 668899 S +18:57:36 Slot [333] | NOT FINANCIAL TRANSACTION +18:57:41 Slot [262] | NOT FINANCIAL TRANSACTION +18:57:42 +Slot[334] 0200 010000 6213541000712201 ------------- 00 955374 000050000000 507902407379030010106213541000712201 507902407379 733813 668899 S +18:57:52 Slot [336] | NOT FINANCIAL TRANSACTION +18:58:02 Slot [320] | NOT FINANCIAL TRANSACTION +18:58:07 +Slot[321] 0200 010000 6213541000652084 ------------- 51 271348 000100000000 5079112713480141HQBR6213541000652084 507911271348 331344 180893 S +18:58:16 +Slot[323] 0200 011000 2206990000130104 ------------- 62 832493 000100000000 507905057928030043002206990000130104 507905057928 377456 621354 S +18:58:19 Slot [341] | NOT FINANCIAL TRANSACTION +18:58:23 Slot [342] | NOT FINANCIAL TRANSACTION +18:58:25 +Slot[268] 0200 301000 6688990600863607 ------------- 14 271349 032011572827 5079112713490526XYHS6688990600863607 507911271349 444842 180893 S +18:58:27 +Slot[352] 0200 010000 6688990107119404 ------------- 51 832521 000005000000 507905382552120034006688990107119404 507905382552 356861 621354 S +18:58:35 Slot [339] | NOT FINANCIAL TRANSACTION +18:58:35 Slot [309] | NOT FINANCIAL TRANSACTION +18:58:46 Slot [347] | NOT FINANCIAL TRANSACTION +18:58:48 +Slot[348] 0200 310000 6213541000180284 ------------- 00 223789 000000000000 507900118802010011006213541000180284 507900118802 743147 220699 S +18:58:59 +Slot[329] 0200 011000 6213544002071238 ------------- 00 271352 000020000000 5079112713520421BKPH6213544002071238 507911271352 101343 180893 S +18:59:08 Slot [337] | NOT FINANCIAL TRANSACTION +18:59:12 +Slot[328] 0200 010000 6213541000393465 ------------- 51 955423 000080000000 507902407381030010106213541000393465 507902407381 440026 668899 S +18:59:18 +Slot[350] 0200 010000 6213541000180284 ------------- 05 223790 000100000000 507900118803010011006213541000180284 507900118803 577063 220699 S +18:59:19 +Slot[346] 0200 010000 6688990600863607 ------------- 14 271355 000100000000 5079112713550526XYHS6688990600863607 507911271355 834294 180893 S +18:59:25 Slot [357] | NOT FINANCIAL TRANSACTION +18:59:27 Slot [332] | NOT FINANCIAL TRANSACTION +18:59:39 Slot [319] | NOT FINANCIAL TRANSACTION +18:59:41 Slot [365] | NOT FINANCIAL TRANSACTION +18:59:51 +Slot[356] 0200 301000 6688990102658109 ------------- 14 271356 032011585227 5079112713560529LPBF6688990102658109 507911271356 396047 180893 S +18:59:53 +Slot[330] 0200 011000 2206990000130104 ------------- 62 832772 000050000000 507905057930030043002206990000130104 507905057930 496715 621354 S +18:59:57 Slot [378] | NOT FINANCIAL TRANSACTION +19:00:00 Slot [371] | NOT FINANCIAL TRANSACTION +19:00:04 +Slot[366] 0200 010000 6213541000180284 ------------- 00 223793 000100000000 507900118805010011006213541000180284 507900118805 778008 220699 S +19:00:11 Slot [313] | NOT FINANCIAL TRANSACTION +19:00:17 +Slot[343] 0200 303000 6688990108391309 ------------- 00 832840 000000000000 507904725071180011006688990108391309 507904725071 932777 621354 S +19:00:21 Slot [340] | NOT FINANCIAL TRANSACTION +19:00:23 +Slot[373] 0200 011000 6688990105148306 ------------- 00 210852 000015000000 507919210852015290316688990105148306 507919210852 086643 198901 S +19:00:25 +Slot[345] 0200 010000 6688990600863607 ------------- 14 271358 000100000000 5079112713580526XYHS6688990600863607 507911271358 039307 180893 S +19:00:27 Slot [324] | NOT FINANCIAL TRANSACTION +19:00:33 Slot [353] | NOT FINANCIAL TRANSACTION +19:00:41 +Slot[382] 0200 010000 2206990000131318 ------------- 00 832891 000030000000 507903684193010088002206990000131318 507903684193 647667 621354 S +19:00:44 Slot [363] | NOT FINANCIAL TRANSACTION +19:00:46 Slot [344] | NOT FINANCIAL TRANSACTION +19:01:00 Slot [355] | NOT FINANCIAL TRANSACTION +19:01:08 +Slot[370] 0200 010000 6688990108391309 ------------- 00 832972 000100000000 507904725073180011006688990108391309 507904725073 618040 621354 S +19:01:10 Slot [358] | NOT FINANCIAL TRANSACTION +19:01:16 +Slot[379] 0200 010000 6688990105946402 ------------- 14 271361 000010000000 5079122713610102SAPA6688990105946402 507912271361 596177 180893 S +19:01:22 Slot [369] | NOT FINANCIAL TRANSACTION +19:01:29 Slot [360] | NOT FINANCIAL TRANSACTION +19:01:30 Slot [338] | NOT FINANCIAL TRANSACTION +19:01:37 +Slot[354] 0200 011000 6213544001136149 ------------- 00 210874 000100000000 507919210874008529006213544001136149 507919210874 538386 198901 S +19:01:37 Slot [396] | NOT FINANCIAL TRANSACTION +19:01:41 Slot [390] | NOT FINANCIAL TRANSACTION +19:01:49 +Slot[374] 0200 010000 6213544002283130 ------------- 00 955497 000100000000 507902488684030010136213544002283130 507902488684 014699 668899 S +19:01:51 Slot [361] | NOT FINANCIAL TRANSACTION +19:01:51 Slot [351] | NOT FINANCIAL TRANSACTION +19:02:08 Slot [389] | NOT FINANCIAL TRANSACTION +19:02:17 +Slot[410] 0200 010000 6688990108391309 ------------- 00 833141 000100000000 507904725075180011006688990108391309 507904725075 341770 621354 S +19:02:22 Slot [376] | NOT FINANCIAL TRANSACTION +19:02:31 Slot [359] | NOT FINANCIAL TRANSACTION +19:02:32 +Slot[383] 0200 011000 6213541000721822 ------------- 05 306148 000100000000 507900079360010007006213541000721822 507900079360 685955 220699 S +19:02:33 Slot [400] | NOT FINANCIAL TRANSACTION +19:02:46 Slot [395] | NOT FINANCIAL TRANSACTION +19:02:50 +Slot[393] 0200 310000 6213548000311686 ------------- 00 254892 000000000000 507900094445010009006213548000311686 507900094445 430933 220699 S +19:02:56 +Slot[414] 0200 011000 6688990050074945 ------------- 00 833243 000005000000 507903604126160013006688990050074945 507903604126 173560 621354 S +19:02:56 Slot [349] | NOT FINANCIAL TRANSACTION +19:02:57 +Slot[413] 0200 011000 6688990107910109 ------------- 00 833249 000005000000 507902374945010062006688990107910109 507902374945 532322 621354 S +19:03:03 +Slot[394] 0200 011000 6213544000881000 ------------- 65 271363 000020000000 5079122713630381CPSP6213544000881000 507912271363 064225 180893 S +19:03:07 +Slot[397] 0200 013000 6688990103042907 ------------- 00 833276 000020000000 507905382554120034006688990103042907 507905382554 853473 621354 S +19:03:12 Slot [387] | NOT FINANCIAL TRANSACTION +19:03:13 +Slot[418] 0200 303000 6688990108391309 ------------- 00 833298 000000000000 507904725076180011006688990108391309 507904725076 207402 621354 S +19:03:23 Slot [399] | NOT FINANCIAL TRANSACTION +19:03:23 +Slot[372] 0200 010000 6213548000311686 ------------- 00 254893 000010000000 507900094446010009006213548000311686 507900094446 626401 220699 S +19:03:33 Slot [406] | NOT FINANCIAL TRANSACTION +19:03:33 Slot [368] | NOT FINANCIAL TRANSACTION +19:03:44 Slot [419] | NOT FINANCIAL TRANSACTION +19:03:56 Slot [411] | NOT FINANCIAL TRANSACTION +19:04:01 Slot [407] | NOT FINANCIAL TRANSACTION +19:04:04 +Slot[380] 0200 011000 1808930900012063 ------------- 00 833425 000010000000 507903699809050045001808930900012063 507903699809 606185 621354 S +19:04:06 +Slot[384] 0200 010000 6213543000050889 ------------- 55 955546 000050000000 507901008868034030016213543000050889 507901008868 153467 668899 S +19:04:08 +Slot[416] 0200 010000 6213544000881000 ------------- 65 271367 000010000000 5079122713670381CPSP6213544000881000 507912271367 587062 180893 S +19:04:20 Slot [401] | NOT FINANCIAL TRANSACTION +19:04:28 +Slot[433] 0200 010000 6688990040063040 ------------- 14 271371 000010000000 5079122713710118UDBR6688990040063040 507912271371 366755 180893 S +19:04:35 Slot [381] | NOT FINANCIAL TRANSACTION +19:04:41 Slot [420] | NOT FINANCIAL TRANSACTION +19:04:54 Slot [398] | NOT FINANCIAL TRANSACTION +19:04:57 Slot [415] | NOT FINANCIAL TRANSACTION +19:05:02 +Slot[409] 0200 011000 6213545000939839 ------------- 00 271373 000030000000 5079122713730102SAPA6213545000939839 507912271373 270258 180893 S +19:05:06 Slot [425] | NOT FINANCIAL TRANSACTION +19:05:14 Slot [364] | NOT FINANCIAL TRANSACTION +19:05:32 +Slot[388] 0200 011000 1808930800006496 ------------- 00 833695 000010000000 507902497550050032001808930800006496 507902497550 017954 621354 S +19:05:36 Slot [430] | NOT FINANCIAL TRANSACTION +19:05:37 Slot [367] | NOT FINANCIAL TRANSACTION +19:05:51 Slot [441] | NOT FINANCIAL TRANSACTION +19:06:02 Slot [403] | NOT FINANCIAL TRANSACTION +19:06:11 Slot [437] | NOT FINANCIAL TRANSACTION +19:06:12 Slot [402] | NOT FINANCIAL TRANSACTION +19:06:22 Slot [385] | NOT FINANCIAL TRANSACTION +19:06:27 +Slot[362] 0200 301000 1808930800006496 ------------- 00 833825 000000000000 507902497551050032001808930800006496 507902497551 308701 621354 S +19:06:33 Slot [375] | NOT FINANCIAL TRANSACTION +19:06:39 Slot [408] | NOT FINANCIAL TRANSACTION +19:06:44 Slot [450] | NOT FINANCIAL TRANSACTION +19:06:59 Slot [417] | NOT FINANCIAL TRANSACTION +19:07:01 +Slot[392] 0200 300000 6213541000530207 ------------- 00 412745 000000000000 507900325463010024006213541000530207 507900325463 221865 123401 S +19:07:10 Slot [412] | NOT FINANCIAL TRANSACTION +19:07:16 Slot [391] | NOT FINANCIAL TRANSACTION +19:07:21 +Slot[447] 0200 010000 6213543000069483 ------------- 00 955627 000010000000 507900146933030200056213543000069483 507900146933 339026 668899 S +19:07:21 Slot [405] | NOT FINANCIAL TRANSACTION +19:07:32 Slot [443] | NOT FINANCIAL TRANSACTION +19:07:36 +Slot[429] 0200 010000 6213541000530207 ------------- 00 412747 000030000000 507900325464010024006213541000530207 507900325464 326108 123401 S +19:07:41 Slot [386] | NOT FINANCIAL TRANSACTION +19:07:43 Slot [377] | NOT FINANCIAL TRANSACTION +19:07:50 +Slot[446] 0200 010000 6213544000842648 ------------- 00 254896 000004000000 507900094448010009006213544000842648 507900094448 071784 220699 S +19:07:54 Slot [456] | NOT FINANCIAL TRANSACTION +19:07:57 +Slot[404] 0200 011000 6688990040063040 ------------- 00 834024 000010000000 507903444208060017006688990040063040 507903444208 505613 621354 S +19:08:05 Slot [424] | NOT FINANCIAL TRANSACTION +19:08:10 +Slot[434] 0200 010000 6213544001699435 ------------- 00 412753 000050000000 507900450275020006006213544001699435 507900450275 937125 123401 S +19:08:20 Slot [445] | NOT FINANCIAL TRANSACTION +19:08:21 Slot [442] | NOT FINANCIAL TRANSACTION +19:08:27 Slot [438] | NOT FINANCIAL TRANSACTION +19:08:31 Slot [435] | NOT FINANCIAL TRANSACTION +19:08:42 Slot [431] | NOT FINANCIAL TRANSACTION +19:08:43 Slot [427] | NOT FINANCIAL TRANSACTION +19:08:52 Slot [462] | NOT FINANCIAL TRANSACTION +19:08:59 +Slot[428] 0200 010000 6213548000311686 ------------- 00 254899 000004000000 507900094450010009006213548000311686 507900094450 204915 220699 S +19:09:02 +Slot[421] 0200 011000 6688990040063040 ------------- 00 834197 000010000000 507903444210060017006688990040063040 507903444210 812281 621354 S +19:09:08 Slot [422] | NOT FINANCIAL TRANSACTION +19:09:19 Slot [451] | NOT FINANCIAL TRANSACTION +19:09:26 Slot [457] | NOT FINANCIAL TRANSACTION +19:09:34 Slot [465] | NOT FINANCIAL TRANSACTION +19:09:44 +Slot[426] 0200 010000 2206990000132613 ------------- 00 955711 000050000000 507900146935030200052206990000132613 507900146935 146124 668899 S +19:09:45 Slot [436] | NOT FINANCIAL TRANSACTION +19:09:50 Slot [444] | NOT FINANCIAL TRANSACTION +19:09:57 +Slot[423] 0200 010000 6213544001522793 ------------- 00 955725 000020000000 507902148143030200246213544001522793 507902148143 816699 668899 S +19:09:57 Slot [458] | NOT FINANCIAL TRANSACTION +19:10:00 Slot [452] | NOT FINANCIAL TRANSACTION +19:10:04 +Slot[459] 0200 010000 6213544001255634 ------------- 61 271380 000200000000 5079122713800102SAPA6213544001255634 507912271380 745588 180893 S +19:10:16 Slot [439] | NOT FINANCIAL TRANSACTION +19:10:30 Slot [466] | NOT FINANCIAL TRANSACTION +19:10:31 Slot [468] | NOT FINANCIAL TRANSACTION +19:10:41 Slot [455] | NOT FINANCIAL TRANSACTION +19:10:47 Slot [475] | NOT FINANCIAL TRANSACTION +19:10:51 Slot [460] | NOT FINANCIAL TRANSACTION +19:11:03 Slot [440] | NOT FINANCIAL TRANSACTION +19:11:18 Slot [495] | NOT FINANCIAL TRANSACTION +19:11:22 Slot [449] | NOT FINANCIAL TRANSACTION +19:11:24 +Slot[482] 0200 010000 6213541000163363 ------------- 51 955770 000030000000 507902475772030200326213541000163363 507902475772 274479 668899 S +19:11:25 +Slot[432] 0200 300000 6688990102566203 ------------- 00 834494 000000000000 507904000605010116006688990102566203 507904000605 298796 621354 S +19:11:36 Slot [453] | NOT FINANCIAL TRANSACTION +19:11:38 +Slot[488] 0200 011000 1808931000017820 ------------- 00 834522 000030000000 507902606525050043001808931000017820 507902606525 954221 621354 S +19:11:47 +Slot[470] 0200 011000 1808931300023296 ------------- 00 834542 000010000000 507903505882090007001808931300023296 507903505882 682898 621354 S +19:11:49 Slot [484] | NOT FINANCIAL TRANSACTION +19:11:50 Slot [480] | NOT FINANCIAL TRANSACTION +19:11:58 +Slot[471] 0200 010000 6213541000163363 ------------- 51 955793 000025000000 507902475773030200326213541000163363 507902475773 336438 668899 S +19:12:01 Slot [490] | NOT FINANCIAL TRANSACTION +19:12:07 +Slot[463] 0200 010000 6213544002149653 ------------- 00 955799 000020000000 507901196876030200116213544002149653 507901196876 528356 668899 S +19:12:13 +Slot[448] 0200 011000 1808930600035745 ------------- 51 211024 000100000000 507919211024015290091808930600035745 507919211024 565050 198901 S +19:12:14 +Slot[479] 0200 010000 6213548000351880 ------------- 00 955802 000050000000 507901972557030120036213548000351880 507901972557 144135 668899 S +19:12:17 Slot [0] | NOT FINANCIAL TRANSACTION +19:12:27 Slot [4] | NOT FINANCIAL TRANSACTION +19:12:35 +Slot[2] 0200 010000 6213541000163363 ------------- 51 955822 000020000000 507902475774030200326213541000163363 507902475774 497100 668899 S +19:12:38 +Slot[493] 0200 011000 1808930600035745 ------------- 00 211031 000010000000 507919211031015290091808930600035745 507919211031 355451 198901 S +19:12:41 Slot [473] | NOT FINANCIAL TRANSACTION +19:12:41 +Slot[498] 0200 301000 1808931300023296 ------------- 00 834651 000000000000 507903505883090007001808931300023296 507903505883 145849 621354 S +19:12:45 +Slot[1] 0200 011000 1808931000024230 ------------- 00 834655 000010000000 507902606527050043001808931000024230 507902606527 456810 621354 S +19:12:49 Slot [476] | NOT FINANCIAL TRANSACTION +19:12:51 Slot [489] | NOT FINANCIAL TRANSACTION +19:13:04 Slot [477] | NOT FINANCIAL TRANSACTION +19:13:15 Slot [485] | NOT FINANCIAL TRANSACTION +19:13:26 Slot [14] | NOT FINANCIAL TRANSACTION +19:13:37 Slot [483] | NOT FINANCIAL TRANSACTION +19:13:46 Slot [474] | NOT FINANCIAL TRANSACTION +19:13:47 +Slot[486] 0200 010000 6213541000163363 ------------- 05 955862 000015000000 507902475776030200326213541000163363 507902475776 324297 668899 S +19:13:52 Slot [6] | NOT FINANCIAL TRANSACTION +19:13:53 Slot [472] | NOT FINANCIAL TRANSACTION +19:14:04 +Slot[492] 0200 011000 6213544001206330 ------------- 61 211048 000200000000 507919211048015290096213544001206330 507919211048 441557 198901 S +19:14:08 Slot [13] | NOT FINANCIAL TRANSACTION +19:14:20 Slot [16] | NOT FINANCIAL TRANSACTION +19:14:36 Slot [12] | NOT FINANCIAL TRANSACTION +19:14:36 +Slot[454] 0200 010000 6688990105724601 ------------- 00 834908 000100000000 507903461761060019006688990105724601 507903461761 846568 621354 S +19:14:51 Slot [469] | NOT FINANCIAL TRANSACTION +19:14:51 Slot [494] | NOT FINANCIAL TRANSACTION +19:14:55 Slot [491] | NOT FINANCIAL TRANSACTION +19:14:56 +Slot[22] 0200 010000 6213541000163363 ------------- 00 955892 000016000000 507902475778030200326213541000163363 507902475778 947937 668899 S +19:14:57 Slot [17] | NOT FINANCIAL TRANSACTION +19:15:06 Slot [29] | NOT FINANCIAL TRANSACTION +19:15:22 Slot [10] | NOT FINANCIAL TRANSACTION +19:15:32 Slot [23] | NOT FINANCIAL TRANSACTION +19:15:33 +Slot[499] 0200 010000 6688990105724601 ------------- 00 835031 000100000000 507903461763060019006688990105724601 507903461763 118920 621354 S +19:15:48 Slot [481] | NOT FINANCIAL TRANSACTION +19:15:56 Slot [31] | NOT FINANCIAL TRANSACTION +19:15:57 Slot [35] | NOT FINANCIAL TRANSACTION +19:16:03 Slot [3] | NOT FINANCIAL TRANSACTION +19:16:18 Slot [33] | NOT FINANCIAL TRANSACTION +19:16:22 +Slot[496] 0200 011000 6213542000037094 ------------- 00 259356 000005000000 507900040665010004006213542000037094 507900040665 123483 220699 S +19:16:22 Slot [21] | NOT FINANCIAL TRANSACTION +19:16:27 +Slot[11] 0200 010000 6688990105724601 ------------- 00 835129 000100000000 507903461765060019006688990105724601 507903461765 192979 621354 S +19:16:29 Slot [9] | NOT FINANCIAL TRANSACTION +19:16:44 Slot [30] | NOT FINANCIAL TRANSACTION +19:16:55 Slot [461] | NOT FINANCIAL TRANSACTION +19:16:59 Slot [45] | NOT FINANCIAL TRANSACTION +19:17:01 Slot [37] | NOT FINANCIAL TRANSACTION +19:17:10 +Slot[36] 0200 010000 1808931000020352 ------------- 00 955943 000100000000 507902093482030200211808931000020352 507902093482 285327 668899 S +19:17:16 Slot [18] | NOT FINANCIAL TRANSACTION +19:17:18 +Slot[40] 0200 010000 6688990105724601 ------------- 00 835225 000100000000 507903461767060019006688990105724601 507903461767 069339 621354 S +19:17:29 Slot [43] | NOT FINANCIAL TRANSACTION +19:17:44 Slot [28] | NOT FINANCIAL TRANSACTION +19:17:59 Slot [497] | NOT FINANCIAL TRANSACTION +19:18:01 Slot [8] | NOT FINANCIAL TRANSACTION +19:18:05 +Slot[55] 0200 010000 6688990105724601 ------------- 51 835330 000100000000 507903461769060019006688990105724601 507903461769 930833 621354 S +19:18:06 Slot [7] | NOT FINANCIAL TRANSACTION +19:18:15 Slot [467] | NOT FINANCIAL TRANSACTION +19:18:19 Slot [52] | NOT FINANCIAL TRANSACTION +19:18:20 +Slot[61] 0200 311000 6213543000125749 ------------- 00 450670 000000000000 507900153118030003006213543000125749 507900153118 124187 220699 S +19:18:33 Slot [44] | NOT FINANCIAL TRANSACTION +19:18:43 +Slot[50] 0200 010000 6688990600342008 ------------- 55 835404 000010000000 507903667722160019006688990600342008 507903667722 042540 621354 S +19:18:46 Slot [25] | NOT FINANCIAL TRANSACTION +19:18:57 Slot [15] | NOT FINANCIAL TRANSACTION +19:19:01 +Slot[60] 0200 011000 6213543000125749 ------------- 00 450671 000025000000 507900153119030003006213543000125749 507900153119 650343 220699 S +19:19:02 +Slot[478] 0200 010000 6688990600342008 ------------- 55 835458 000010000000 507903667724160019006688990600342008 507903667724 691370 621354 S +19:19:03 Slot [63] | NOT FINANCIAL TRANSACTION +19:19:11 Slot [73] | NOT FINANCIAL TRANSACTION +19:19:13 Slot [68] | NOT FINANCIAL TRANSACTION +19:19:16 +Slot[38] 0200 011000 1808930900004565 ------------- 00 835470 000015000000 507902606529050043001808930900004565 507902606529 308286 621354 S +19:19:23 Slot [32] | NOT FINANCIAL TRANSACTION +19:19:35 Slot [26] | NOT FINANCIAL TRANSACTION +19:19:38 +Slot[487] 0200 300000 6688990105724601 ------------- 00 835511 000000000000 507903461771060019006688990105724601 507903461771 422572 621354 S +19:19:49 +Slot[41] 0200 010000 6688990602015602 ------------- 00 835529 000010000000 507903667726160019006688990602015602 507903667726 167574 621354 S +19:19:53 +Slot[20] 0200 011000 1808930100002419 ------------- 00 211129 000020000000 507919211129015290191808930100002419 507919211129 275872 198901 S +19:19:57 Slot [464] | NOT FINANCIAL TRANSACTION +19:19:58 Slot [48] | NOT FINANCIAL TRANSACTION +19:20:05 Slot [46] | NOT FINANCIAL TRANSACTION +19:20:14 Slot [69] | NOT FINANCIAL TRANSACTION +19:20:14 +Slot[27] 0200 301000 6213548000197937 ------------- 00 956004 000000000000 507901963741030200196213548000197937 507901963741 323606 668899 S +19:20:16 Slot [19] | NOT FINANCIAL TRANSACTION +19:20:25 Slot [78] | NOT FINANCIAL TRANSACTION +19:20:33 +Slot[54] 0200 010000 6688990060000021 ------------- 14 271399 000010000000 5079122713990466PSLB6688990060000021 507912271399 029970 180893 S +19:20:41 Slot [47] | NOT FINANCIAL TRANSACTION +19:20:52 Slot [57] | NOT FINANCIAL TRANSACTION +19:21:03 Slot [24] | NOT FINANCIAL TRANSACTION +19:21:07 Slot [34] | NOT FINANCIAL TRANSACTION +19:21:13 +Slot[49] 0200 011000 6213541000672033 ------------- 00 211156 000100000000 507919211156015290146213541000672033 507919211156 701258 198901 S +19:21:20 +Slot[81] 0200 301000 6688990060000021 ------------- 14 271400 032012202227 5079122714000466PSLB6688990060000021 507912271400 451295 180893 S +19:21:21 Slot [42] | NOT FINANCIAL TRANSACTION +19:21:22 Slot [88] | NOT FINANCIAL TRANSACTION +19:21:25 +Slot[86] 0200 010000 6688990060006606 ------------- 00 835704 000005000000 507905230334010132006688990060006606 507905230334 103670 621354 S +19:21:30 Slot [89] | NOT FINANCIAL TRANSACTION +19:21:41 Slot [79] | NOT FINANCIAL TRANSACTION +19:21:46 +Slot[59] 0200 012000 6688990105724601 ------------- 00 835758 000090000000 507903461780060019006688990105724601 507903461780 684922 621354 S +19:21:54 +Slot[58] 0200 301000 6213541000672033 ------------- 00 211162 000000000000 507919211162015290146213541000672033 507919211162 351540 198901 S +19:21:55 +Slot[84] 0200 010000 1808931000020352 ------------- 00 956042 000015000000 507902093488030200211808931000020352 507902093488 131367 668899 S +19:22:03 Slot [5] | NOT FINANCIAL TRANSACTION +19:22:09 Slot [67] | NOT FINANCIAL TRANSACTION +19:22:15 +Slot[93] 0200 011000 6213541000672033 ------------- 00 211165 000100000000 507919211165015290146213541000672033 507919211165 543482 198901 S +19:22:15 Slot [62] | NOT FINANCIAL TRANSACTION +19:22:26 Slot [39] | NOT FINANCIAL TRANSACTION +19:22:26 Slot [56] | NOT FINANCIAL TRANSACTION +19:22:37 +Slot[82] 0200 010000 6688990060006606 ------------- 00 835858 000010000000 507905230336010132006688990060006606 507905230336 439618 621354 S +19:22:37 Slot [51] | NOT FINANCIAL TRANSACTION +19:22:42 +Slot[64] 0200 011000 6213541000672033 ------------- 00 211173 000100000000 507919211173015290146213541000672033 507919211173 745211 198901 S +19:22:52 Slot [100] | NOT FINANCIAL TRANSACTION +19:23:03 Slot [65] | NOT FINANCIAL TRANSACTION +19:23:06 +Slot[91] 0200 010000 6688990108110006 ------------- 14 271403 000010000000 5079122714030466PSLB6688990108110006 507912271403 449273 180893 S +19:23:08 +Slot[72] 0200 011000 6213541000672033 ------------- 00 211175 000100000000 507919211175015290146213541000672033 507919211175 483415 198901 S +19:23:11 Slot [76] | NOT FINANCIAL TRANSACTION +19:23:19 +Slot[90] 0200 012000 6688990105724601 ------------- 00 835954 000005000000 507903461788060019006688990105724601 507903461788 423802 621354 S +19:23:20 Slot [114] | NOT FINANCIAL TRANSACTION +19:23:20 +Slot[106] 0200 010000 6688990060006606 ------------- 00 835960 000010000000 507905230338010132006688990060006606 507905230338 912851 621354 S +19:23:30 Slot [83] | NOT FINANCIAL TRANSACTION +19:23:30 +Slot[99] 0200 011000 6688990040166181 ------------- 55 835979 000030000000 507903525196090009006688990040166181 507903525196 435011 621354 S +19:23:31 Slot [66] | NOT FINANCIAL TRANSACTION +19:23:40 +Slot[118] 0200 011000 6213541000672033 ------------- 00 211185 000100000000 507919211185015290146213541000672033 507919211185 676862 198901 S +19:23:45 Slot [107] | NOT FINANCIAL TRANSACTION +19:23:57 Slot [121] | NOT FINANCIAL TRANSACTION +19:24:05 +Slot[115] 0200 011000 6688990040166181 ------------- 55 836059 000030000000 507903525198090009006688990040166181 507903525198 288722 621354 S +19:24:08 Slot [74] | NOT FINANCIAL TRANSACTION +19:24:10 +Slot[92] 0200 011000 6213541000672033 ------------- 00 211190 000100000000 507919211190015290146213541000672033 507919211190 508276 198901 S +19:24:13 Slot [113] | NOT FINANCIAL TRANSACTION +19:24:18 Slot [108] | NOT FINANCIAL TRANSACTION +19:24:21 +Slot[98] 0200 010000 6213544001770608 ------------- 51 956081 000010000000 507901203991030200126213544001770608 507901203991 217671 668899 S +19:24:33 Slot [75] | NOT FINANCIAL TRANSACTION +19:24:36 Slot [94] | NOT FINANCIAL TRANSACTION +19:24:37 +Slot[127] 0200 011000 6213541000672033 ------------- 00 211200 000100000000 507919211200015290146213541000672033 507919211200 019331 198901 S +19:24:39 +Slot[95] 0200 011000 6213544002200589 ------------- 00 211201 000100000000 507919211201016529096213544002200589 507919211201 679718 198901 S +19:24:41 +Slot[53] 0200 010000 6213543000036292 ------------- 61 271408 000200000000 5079122714080362CPSU6213543000036292 507912271408 445309 180893 S +19:24:50 Slot [134] | NOT FINANCIAL TRANSACTION +19:24:56 Slot [103] | NOT FINANCIAL TRANSACTION +19:24:58 +Slot[96] 0200 011000 6688990040166181 ------------- 75 836160 000030000000 507903525200090009006688990040166181 507903525200 184327 621354 S +19:25:00 Slot [125] | NOT FINANCIAL TRANSACTION +19:25:08 +Slot[101] 0200 011000 6213541000672033 ------------- 00 211210 000100000000 507919211210015290146213541000672033 507919211210 195211 198901 S +19:25:09 +Slot[70] 0200 010000 6213544001770608 ------------- 51 956096 000005000000 507901203992030200126213544001770608 507901203992 141624 668899 S +19:25:11 Slot [77] | NOT FINANCIAL TRANSACTION +19:25:15 Slot [102] | NOT FINANCIAL TRANSACTION +19:25:21 Slot [109] | NOT FINANCIAL TRANSACTION +19:25:32 +Slot[85] 0200 011000 6213541000672033 ------------- 00 211218 000100000000 507919211218015290146213541000672033 507919211218 000120 198901 S +19:25:37 Slot [71] | NOT FINANCIAL TRANSACTION +19:25:41 Slot [136] | NOT FINANCIAL TRANSACTION +19:25:48 Slot [105] | NOT FINANCIAL TRANSACTION +19:25:57 +Slot[129] 0200 011000 6213541000672033 ------------- 00 211227 000100000000 507919211227015290146213541000672033 507919211227 992078 198901 S +19:25:58 Slot [116] | NOT FINANCIAL TRANSACTION +19:26:14 Slot [131] | NOT FINANCIAL TRANSACTION +19:26:17 Slot [138] | NOT FINANCIAL TRANSACTION +19:26:19 +Slot[104] 0200 010000 6213544001983367 ------------- 00 956121 000050000000 507901541786030200166213544001983367 507901541786 392719 668899 S +19:26:21 +Slot[97] 0200 011000 6213541000672033 ------------- 05 211235 000100000000 507919211235015290146213541000672033 507919211235 520127 198901 S +19:26:22 Slot [112] | NOT FINANCIAL TRANSACTION +19:26:30 Slot [124] | NOT FINANCIAL TRANSACTION +19:26:34 +Slot[111] 0200 011000 6213541000672033 ------------- 00 211238 000100000000 507919211238015290146213541000672033 507919211238 000849 198901 S +19:26:41 Slot [80] | NOT FINANCIAL TRANSACTION +19:26:46 Slot [140] | NOT FINANCIAL TRANSACTION +19:26:57 Slot [147] | NOT FINANCIAL TRANSACTION +19:26:58 +Slot[123] 0200 011000 6213541000672033 ------------- 00 211243 000100000000 507919211243015290146213541000672033 507919211243 574145 198901 S +19:27:12 Slot [117] | NOT FINANCIAL TRANSACTION +19:27:19 Slot [132] | NOT FINANCIAL TRANSACTION +19:27:23 Slot [161] | NOT FINANCIAL TRANSACTION +19:27:27 +Slot[122] 0200 011000 6213541000672033 ------------- 00 211247 000100000000 507919211247015290146213541000672033 507919211247 046188 198901 S +19:27:28 +Slot[162] 0200 010000 6213544002188792 ------------- 00 956151 000010000000 507900869022030180016213544002188792 507900869022 830025 668899 S +19:27:34 +Slot[166] 0200 301000 6213545001076649 ------------- 00 956155 000000000000 507900146950030200056213545001076649 507900146950 198013 668899 S +19:27:34 Slot [143] | NOT FINANCIAL TRANSACTION +19:27:45 Slot [154] | NOT FINANCIAL TRANSACTION +19:27:50 +Slot[145] 0200 011000 6213541000672033 ------------- 51 211254 000100000000 507919211254015290146213541000672033 507919211254 236582 198901 S +19:27:51 Slot [153] | NOT FINANCIAL TRANSACTION +19:27:56 Slot [120] | NOT FINANCIAL TRANSACTION +19:28:00 +Slot[150] 0200 010000 6213543000036292 ------------- 00 271415 000050000000 5079122714150362CPSU6213543000036292 507912271415 031554 180893 S +19:28:13 Slot [110] | NOT FINANCIAL TRANSACTION +19:28:21 Slot [133] | NOT FINANCIAL TRANSACTION +19:28:28 Slot [159] | NOT FINANCIAL TRANSACTION +19:28:38 +Slot[142] 0200 011000 1808931700031964 ------------- 00 836657 000005000000 507904769742070012001808931700031964 507904769742 480707 621354 S +19:28:44 Slot [146] | NOT FINANCIAL TRANSACTION +19:28:48 +Slot[158] 0200 011000 6213544002082730 ------------- 51 271420 000006000000 5079122714200528LPBP6213544002082730 507912271420 922258 180893 S +19:28:56 Slot [167] | NOT FINANCIAL TRANSACTION +19:29:00 Slot [87] | NOT FINANCIAL TRANSACTION +19:29:04 +Slot[137] 0200 010000 6213545000389092 ------------- 00 956189 000010000000 507901262061032060016213545000389092 507901262061 739221 668899 S +19:29:06 +Slot[130] 0200 302000 1808931400009468 ------------- 42 956191 000000000000 507901604355032020011808931400009468 507901604355 566730 668899 S +19:29:08 +Slot[128] 0200 301000 6213541000672033 ------------- 55 211268 000000000000 507919211268015290146213541000672033 507919211268 618888 198901 S +19:29:14 +Slot[157] 0200 301000 6213544002082730 ------------- 00 271421 032012281527 5079122714210528LPBP6213544002082730 507912271421 332040 180893 S +19:29:23 Slot [175] | NOT FINANCIAL TRANSACTION +19:29:26 +Slot[141] 0200 301000 6213545001076649 ------------- 00 956202 000000000000 507900146952030200056213545001076649 507900146952 924468 668899 S +19:29:27 Slot [151] | NOT FINANCIAL TRANSACTION +19:29:37 Slot [170] | NOT FINANCIAL TRANSACTION +19:29:48 Slot [172] | NOT FINANCIAL TRANSACTION +19:29:52 +Slot[171] 0200 011000 6688990104203102 ------------- 62 836817 000010000000 507904377397030036006688990104203102 507904377397 804427 621354 S +19:29:57 Slot [164] | NOT FINANCIAL TRANSACTION +19:29:59 Slot [186] | NOT FINANCIAL TRANSACTION +19:30:01 Slot [126] | NOT FINANCIAL TRANSACTION +19:30:01 Slot [139] | NOT FINANCIAL TRANSACTION +19:30:08 +Slot[202] 0200 010000 6213545001076649 ------------- 00 956222 000070000000 507900146953030200056213545001076649 507900146953 690290 668899 S +19:30:17 Slot [148] | NOT FINANCIAL TRANSACTION +19:30:20 +Slot[119] 0200 012000 6213544002082730 ------------- 51 271424 000005000000 5079122714240528LPBP6213544002082730 507912271424 812211 180893 S +19:30:25 Slot [176] | NOT FINANCIAL TRANSACTION +19:30:30 Slot [144] | NOT FINANCIAL TRANSACTION +19:30:36 +Slot[187] 0200 300000 6688990104203102 ------------- 62 836926 000000000000 507904377398030036006688990104203102 507904377398 264223 621354 S +19:30:41 Slot [182] | NOT FINANCIAL TRANSACTION +19:30:58 Slot [160] | NOT FINANCIAL TRANSACTION +19:31:00 +Slot[163] 0200 011000 6213544002082730 ------------- 51 271426 000005000000 5079122714260528LPBP6213544002082730 507912271426 076322 180893 S +19:31:06 Slot [204] | NOT FINANCIAL TRANSACTION +19:31:16 +Slot[203] 0200 010000 6688990104088107 ------------- 14 271428 000100000000 5079122714280466PSLB6688990104088107 507912271428 752312 180893 S +19:31:23 Slot [179] | NOT FINANCIAL TRANSACTION +19:31:24 Slot [191] | NOT FINANCIAL TRANSACTION +19:31:27 Slot [192] | NOT FINANCIAL TRANSACTION +19:31:35 Slot [135] | NOT FINANCIAL TRANSACTION +19:31:45 Slot [156] | NOT FINANCIAL TRANSACTION +19:31:50 +Slot[190] 0200 010000 6213544001144283 ------------- 00 956266 000100000000 507900915418030160026213544001144283 507900915418 797371 668899 S +19:31:56 Slot [152] | NOT FINANCIAL TRANSACTION +19:32:08 +Slot[198] 0200 010000 1808931400009468 ------------- 00 956270 000100000000 507901604360032020011808931400009468 507901604360 869320 668899 S +19:32:11 Slot [196] | NOT FINANCIAL TRANSACTION +19:32:12 Slot [155] | NOT FINANCIAL TRANSACTION +19:32:21 +Slot[181] 0200 010000 6688990104088107 ------------- 14 271434 000100000000 5079122714340466PSLB6688990104088107 507912271434 428024 180893 S +19:32:29 Slot [214] | NOT FINANCIAL TRANSACTION +19:32:33 Slot [165] | NOT FINANCIAL TRANSACTION +19:32:44 Slot [201] | NOT FINANCIAL TRANSACTION +19:32:55 Slot [195] | NOT FINANCIAL TRANSACTION +19:33:02 +Slot[194] 0200 012000 6688990040044164 ------------- 00 837209 000050000000 507903790224010095006688990040044164 507903790224 576026 621354 S +19:33:06 Slot [178] | NOT FINANCIAL TRANSACTION +19:33:10 +Slot[209] 0200 010000 6213544001144283 ------------- 00 956300 000050000000 507900915420030160026213544001144283 507900915420 717438 668899 S +19:33:12 +Slot[193] 0200 300000 6213544002082730 ------------- 00 956303 000000000000 507901262068032060016213544002082730 507901262068 595614 668899 S +19:33:16 Slot [206] | NOT FINANCIAL TRANSACTION +19:33:17 Slot [184] | NOT FINANCIAL TRANSACTION +19:33:23 +Slot[212] 0200 010000 6213545000762181 ------------- 00 271441 000100000000 5079122714410461BKPO6213545000762181 507912271441 620634 180893 S +19:33:29 +Slot[230] 0200 010000 1808931400009468 ------------- 51 956307 000100000000 507901604362032020011808931400009468 507901604362 066708 668899 S +19:33:31 Slot [183] | NOT FINANCIAL TRANSACTION +19:33:33 Slot [221] | NOT FINANCIAL TRANSACTION +19:33:43 Slot [207] | NOT FINANCIAL TRANSACTION +19:33:49 +Slot[213] 0200 302000 1808931400009468 ------------- 42 956316 000000000000 507901604363032020011808931400009468 507901604363 938915 668899 S +19:34:00 Slot [169] | NOT FINANCIAL TRANSACTION +19:34:12 +Slot[205] 0200 011000 6688990108473701 ------------- 00 837326 000030000000 507902846602010078006688990108473701 507902846602 411238 621354 S +19:34:15 Slot [185] | NOT FINANCIAL TRANSACTION +19:34:21 Slot [149] | NOT FINANCIAL TRANSACTION +19:34:26 Slot [232] | NOT FINANCIAL TRANSACTION +19:34:33 Slot [180] | NOT FINANCIAL TRANSACTION +19:34:42 Slot [222] | NOT FINANCIAL TRANSACTION +19:34:48 +Slot[211] 0200 010000 6688990601026204 ------------- 14 271446 000050000000 5079122714460466PSLB6688990601026204 507912271446 142505 180893 S +19:34:57 Slot [208] | NOT FINANCIAL TRANSACTION +19:34:57 Slot [189] | NOT FINANCIAL TRANSACTION +19:35:01 Slot [168] | NOT FINANCIAL TRANSACTION +19:35:09 +Slot[229] 0200 010000 1808931400009468 ------------- 00 956344 000070000000 507901604365032020011808931400009468 507901604365 236284 668899 S +19:35:13 Slot [173] | NOT FINANCIAL TRANSACTION +19:35:26 Slot [174] | NOT FINANCIAL TRANSACTION +19:35:30 Slot [246] | NOT FINANCIAL TRANSACTION +19:35:35 Slot [188] | NOT FINANCIAL TRANSACTION +19:35:35 +Slot[223] 0200 301000 6688990601026204 ------------- 14 271449 032012343827 5079122714490466PSLB6688990601026204 507912271449 630991 180893 S +19:35:46 Slot [235] | NOT FINANCIAL TRANSACTION +19:35:56 Slot [227] | NOT FINANCIAL TRANSACTION +19:35:59 +Slot[244] 0200 301000 6213544002082730 ------------- 00 956365 000000000000 507901262072032060016213544002082730 507901262072 047913 668899 S +19:36:09 Slot [215] | NOT FINANCIAL TRANSACTION +19:36:18 +Slot[251] 0200 300000 6213544002082730 ------------- 00 956370 000000000000 507901262073032060016213544002082730 507901262073 038474 668899 S +19:36:23 Slot [248] | NOT FINANCIAL TRANSACTION +19:36:24 Slot [255] | NOT FINANCIAL TRANSACTION +19:36:31 Slot [243] | NOT FINANCIAL TRANSACTION +19:36:34 Slot [242] | NOT FINANCIAL TRANSACTION +19:36:37 Slot [250] | NOT FINANCIAL TRANSACTION +19:36:50 Slot [226] | NOT FINANCIAL TRANSACTION +19:36:51 +Slot[177] 0200 010000 6213544002082730 ------------- 51 956387 000050000000 507901262074032060016213544002082730 507901262074 298783 668899 S +19:37:01 Slot [237] | NOT FINANCIAL TRANSACTION +19:37:05 +Slot[233] 0200 301000 6213544002082730 ------------- 00 956392 000000000000 507901262075032060016213544002082730 507901262075 249823 668899 S +19:37:13 +Slot[260] 0200 010000 6213541000519374 ------------- 00 306163 000010000000 507900079362010007006213541000519374 507900079362 868165 220699 S +19:37:16 Slot [253] | NOT FINANCIAL TRANSACTION +19:37:18 +Slot[234] 0200 301000 6213544002082730 ------------- 00 956395 000000000000 507901262076032060016213544002082730 507901262076 310210 668899 S +19:37:32 Slot [238] | NOT FINANCIAL TRANSACTION +19:37:36 Slot [200] | NOT FINANCIAL TRANSACTION +19:37:39 Slot [216] | NOT FINANCIAL TRANSACTION +19:37:43 Slot [259] | NOT FINANCIAL TRANSACTION +19:37:58 Slot [249] | NOT FINANCIAL TRANSACTION +19:38:09 Slot [210] | NOT FINANCIAL TRANSACTION +19:38:22 +Slot[263] 0200 011000 6688990600121808 ------------- 55 837757 000030000000 507903535240090010006688990600121808 507903535240 240324 621354 S +19:38:24 Slot [261] | NOT FINANCIAL TRANSACTION +19:38:34 Slot [269] | NOT FINANCIAL TRANSACTION +19:38:41 Slot [225] | NOT FINANCIAL TRANSACTION +19:38:41 Slot [199] | NOT FINANCIAL TRANSACTION +19:38:49 +Slot[270] 0200 011000 6688990600121808 ------------- 55 837810 000030000000 507903535242090010006688990600121808 507903535242 386541 621354 S +19:38:49 Slot [275] | NOT FINANCIAL TRANSACTION +19:38:59 Slot [240] | NOT FINANCIAL TRANSACTION +19:39:10 Slot [197] | NOT FINANCIAL TRANSACTION +19:39:22 +Slot[265] 0200 011000 6688990600121808 ------------- 00 837885 000030000000 507903535244090010006688990600121808 507903535244 377045 621354 S +19:39:25 Slot [218] | NOT FINANCIAL TRANSACTION +19:39:41 Slot [247] | NOT FINANCIAL TRANSACTION +19:39:43 Slot [256] | NOT FINANCIAL TRANSACTION +19:39:46 Slot [274] | NOT FINANCIAL TRANSACTION +19:39:51 +Slot[228] 0200 011000 6213548000464394 ------------- 00 223796 000010000000 507900118807010011006213548000464394 507900118807 053101 220699 S +19:39:56 Slot [264] | NOT FINANCIAL TRANSACTION +19:39:57 Slot [231] | NOT FINANCIAL TRANSACTION +19:40:11 Slot [220] | NOT FINANCIAL TRANSACTION +19:40:27 Slot [273] | NOT FINANCIAL TRANSACTION +19:40:32 +Slot[279] 0200 300000 6688990105028805 ------------- 55 838058 000000000000 507903790238010095006688990105028805 507903790238 511919 621354 S +19:40:43 Slot [239] | NOT FINANCIAL TRANSACTION +19:40:45 Slot [272] | NOT FINANCIAL TRANSACTION +19:40:45 Slot [252] | NOT FINANCIAL TRANSACTION +19:40:51 Slot [282] | NOT FINANCIAL TRANSACTION +19:40:52 +Slot[254] 0200 300000 6688990105028805 ------------- 55 838098 000000000000 507903790239010095006688990105028805 507903790239 593698 621354 S +19:40:55 Slot [241] | NOT FINANCIAL TRANSACTION +19:41:09 +Slot[266] 0200 010000 6213544001420535 ------------- 61 271458 000200000000 5079122714580523XYNG6213544001420535 507912271458 044071 180893 S +19:41:21 Slot [224] | NOT FINANCIAL TRANSACTION +19:41:23 Slot [280] | NOT FINANCIAL TRANSACTION +19:41:31 +Slot[276] 0200 300000 6688990105028805 ------------- 75 838185 000000000000 507903790240010095006688990105028805 507903790240 576061 621354 S +19:41:31 Slot [219] | NOT FINANCIAL TRANSACTION +19:41:42 Slot [258] | NOT FINANCIAL TRANSACTION +19:41:47 Slot [290] | NOT FINANCIAL TRANSACTION +19:41:53 Slot [287] | NOT FINANCIAL TRANSACTION +19:41:57 Slot [277] | NOT FINANCIAL TRANSACTION +19:41:59 +Slot[284] 0200 010000 1808931400009500 ------------- 00 956455 000100000000 507901604379032020011808931400009500 507901604379 163728 668899 S +19:42:08 Slot [267] | NOT FINANCIAL TRANSACTION +19:42:11 +Slot[271] 0200 012000 6213544001420535 ------------- 00 271460 000020000000 5079122714600523XYNG6213544001420535 507912271460 432945 180893 S +19:42:23 Slot [245] | NOT FINANCIAL TRANSACTION +19:42:39 Slot [236] | NOT FINANCIAL TRANSACTION +19:42:49 Slot [303] | NOT FINANCIAL TRANSACTION +19:42:49 Slot [294] | NOT FINANCIAL TRANSACTION +19:43:00 Slot [217] | NOT FINANCIAL TRANSACTION +19:43:02 Slot [298] | NOT FINANCIAL TRANSACTION +19:43:05 +Slot[293] 0200 011000 6688990600855306 ------------- 00 838351 000040000000 507904989843010123006688990600855306 507904989843 311431 621354 S +19:43:10 Slot [300] | NOT FINANCIAL TRANSACTION +19:43:21 Slot [278] | NOT FINANCIAL TRANSACTION +19:43:36 Slot [281] | NOT FINANCIAL TRANSACTION +19:43:47 Slot [299] | NOT FINANCIAL TRANSACTION +19:43:48 +Slot[257] 0200 010000 6213543000141910 ------------- 00 956484 000005000000 507902678819030200356213543000141910 507902678819 827063 668899 S +19:43:51 Slot [308] | NOT FINANCIAL TRANSACTION +19:43:57 Slot [286] | NOT FINANCIAL TRANSACTION +19:44:07 Slot [295] | NOT FINANCIAL TRANSACTION +19:44:08 Slot [296] | NOT FINANCIAL TRANSACTION +19:44:20 Slot [283] | NOT FINANCIAL TRANSACTION +19:44:35 Slot [306] | NOT FINANCIAL TRANSACTION +19:44:46 Slot [311] | NOT FINANCIAL TRANSACTION +19:44:53 Slot [312] | NOT FINANCIAL TRANSACTION +19:44:57 Slot [307] | NOT FINANCIAL TRANSACTION +19:45:02 Slot [288] | NOT FINANCIAL TRANSACTION +19:45:12 Slot [316] | NOT FINANCIAL TRANSACTION +19:45:13 Slot [310] | NOT FINANCIAL TRANSACTION +19:45:24 +Slot[317] 0200 010000 6213544000561206 ------------- 00 956522 000005000000 507901541792030200166213544000561206 507901541792 864880 668899 S +19:45:30 Slot [325] | NOT FINANCIAL TRANSACTION +19:45:32 +Slot[318] 0200 010000 6213541000707904 ------------- 00 956524 000050000000 507900858458030150046213541000707904 507900858458 169623 668899 S +19:45:41 Slot [322] | NOT FINANCIAL TRANSACTION +19:45:51 Slot [315] | NOT FINANCIAL TRANSACTION +19:45:55 Slot [297] | NOT FINANCIAL TRANSACTION +19:46:07 Slot [289] | NOT FINANCIAL TRANSACTION +19:46:17 Slot [304] | NOT FINANCIAL TRANSACTION +19:46:19 Slot [326] | NOT FINANCIAL TRANSACTION +19:46:23 Slot [291] | NOT FINANCIAL TRANSACTION +19:46:29 Slot [327] | NOT FINANCIAL TRANSACTION +19:46:46 Slot [285] | NOT FINANCIAL TRANSACTION +19:46:57 Slot [331] | NOT FINANCIAL TRANSACTION +19:47:01 Slot [301] | NOT FINANCIAL TRANSACTION +19:47:17 Slot [305] | NOT FINANCIAL TRANSACTION +19:47:22 Slot [314] | NOT FINANCIAL TRANSACTION +19:47:28 +Slot[302] 0200 010000 1808931400009500 ------------- 00 956556 000100000000 507901604387032020011808931400009500 507901604387 585645 668899 S +19:47:32 Slot [292] | NOT FINANCIAL TRANSACTION +19:47:43 Slot [335] | NOT FINANCIAL TRANSACTION +19:47:54 Slot [333] | NOT FINANCIAL TRANSACTION +19:47:59 Slot [262] | NOT FINANCIAL TRANSACTION +19:48:04 Slot [334] | NOT FINANCIAL TRANSACTION +19:48:21 Slot [336] | NOT FINANCIAL TRANSACTION +19:48:27 Slot [320] | NOT FINANCIAL TRANSACTION +19:48:32 Slot [321] | NOT FINANCIAL TRANSACTION +19:48:46 Slot [323] | NOT FINANCIAL TRANSACTION +19:49:00 Slot [342] | NOT FINANCIAL TRANSACTION +19:49:01 Slot [341] | NOT FINANCIAL TRANSACTION +19:49:06 +Slot[268] 0200 010000 6213541000281777 ------------- 61 271476 000200000000 5079122714760441VT526213541000281777 507912271476 196211 180893 S +19:49:08 +Slot[352] 0200 011000 6688990102978200 ------------- 14 271478 000005000000 5079122714780466PSLB6688990102978200 507912271478 137337 180893 S +19:49:18 Slot [339] | NOT FINANCIAL TRANSACTION +19:49:29 Slot [347] | NOT FINANCIAL TRANSACTION +19:49:30 +Slot[309] 0200 010000 6213543000186634 ------------- 00 412792 000050000000 507900192508030001006213543000186634 507900192508 409752 123401 S +19:49:32 Slot [348] | NOT FINANCIAL TRANSACTION +19:49:41 +Slot[329] 0200 010000 1808931400009500 ------------- 00 956584 000080000000 507901604389032020011808931400009500 507901604389 956703 668899 S +19:49:45 Slot [337] | NOT FINANCIAL TRANSACTION +19:49:55 Slot [350] | NOT FINANCIAL TRANSACTION +19:49:57 Slot [346] | NOT FINANCIAL TRANSACTION +19:49:57 +Slot[328] 0200 010000 6213541000281777 ------------- 61 271481 000150000000 5079122714810441VT526213541000281777 507912271481 457972 180893 S +19:50:03 Slot [357] | NOT FINANCIAL TRANSACTION +19:50:06 +Slot[332] 0200 011000 6688990102978200 ------------- 14 271483 000005000000 5079122714830466PSLB6688990102978200 507912271483 480615 180893 S +19:50:16 Slot [319] | NOT FINANCIAL TRANSACTION +19:50:33 Slot [365] | NOT FINANCIAL TRANSACTION +19:50:37 Slot [356] | NOT FINANCIAL TRANSACTION +19:50:44 Slot [330] | NOT FINANCIAL TRANSACTION +19:50:55 Slot [371] | NOT FINANCIAL TRANSACTION +19:50:59 +Slot[378] 0200 010000 6213541000281777 ------------- 00 271487 000100000000 5079122714870441VT526213541000281777 507912271487 752100 180893 S +19:51:01 +Slot[366] 0200 011000 6688990102978200 ------------- 14 271488 000005000000 5079122714880466PSLB6688990102978200 507912271488 165953 180893 S +19:51:05 Slot [313] | NOT FINANCIAL TRANSACTION +19:51:11 Slot [343] | NOT FINANCIAL TRANSACTION +19:51:20 +Slot[340] 0200 010000 6213544001656914 ------------- 00 956600 000010000000 507901262078032060016213544001656914 507901262078 260878 668899 S +19:51:23 Slot [373] | NOT FINANCIAL TRANSACTION +19:51:26 Slot [345] | NOT FINANCIAL TRANSACTION +19:51:31 Slot [324] | NOT FINANCIAL TRANSACTION +19:51:37 +Slot[353] 0200 010000 6688990102978200 ------------- 14 271492 000010000000 5079122714920466PSLB6688990102978200 507912271492 302217 180893 S +19:51:42 Slot [382] | NOT FINANCIAL TRANSACTION +19:51:43 Slot [363] | NOT FINANCIAL TRANSACTION +19:51:48 Slot [344] | NOT FINANCIAL TRANSACTION +19:51:59 +Slot[355] 0200 010000 6213541000281777 ------------- 00 271495 000100000000 5079122714950441VT526213541000281777 507912271495 387900 180893 S +19:52:07 Slot [370] | NOT FINANCIAL TRANSACTION +19:52:10 Slot [358] | NOT FINANCIAL TRANSACTION +19:52:26 Slot [379] | NOT FINANCIAL TRANSACTION +19:52:41 Slot [369] | NOT FINANCIAL TRANSACTION +19:52:46 +Slot[360] 0200 302000 6213544000678067 ------------- 00 271498 032012514827 5079122714980102SAPA6213544000678067 507912271498 285562 180893 S +19:52:47 Slot [354] | NOT FINANCIAL TRANSACTION +19:52:50 +Slot[338] 0200 011000 6213545000162333 ------------- 00 240415 000100000000 507900430291010021006213545000162333 507900430291 142334 220699 S +19:52:56 +Slot[396] 0200 300000 6213544000766896 ------------- 00 956625 000000000000 507901351222032080016213544000766896 507901351222 195786 668899 S +19:53:02 +Slot[390] 0200 012000 1808931600006512 ------------- 42 839505 000050000000 507904885870080010001808931600006512 507904885870 138332 621354 S +19:53:04 +Slot[374] 0200 010000 6213541000281777 ------------- 00 271501 000100000000 5079122715010441VT526213541000281777 507912271501 976582 180893 S +19:53:09 +Slot[361] 0200 011000 6688990040166181 ------------- 75 839518 000030000000 507903518040090008006688990040166181 507903518040 669485 621354 S +19:53:09 Slot [389] | NOT FINANCIAL TRANSACTION +19:53:10 +Slot[351] 0200 010000 6213544001618609 ------------- 00 956629 000030000000 507902475780030200326213544001618609 507902475780 883560 668899 S +19:53:12 Slot [410] | NOT FINANCIAL TRANSACTION +19:53:23 Slot [376] | NOT FINANCIAL TRANSACTION +19:53:34 Slot [359] | NOT FINANCIAL TRANSACTION +19:53:44 Slot [383] | NOT FINANCIAL TRANSACTION +19:53:52 Slot [395] | NOT FINANCIAL TRANSACTION +19:53:54 +Slot[400] 0200 010000 6213541000281777 ------------- 00 271506 000100000000 5079122715060441VT526213541000281777 507912271506 071956 180893 S +19:54:06 Slot [393] | NOT FINANCIAL TRANSACTION +19:54:11 Slot [414] | NOT FINANCIAL TRANSACTION +19:54:14 +Slot[349] 0200 301000 6688990040166181 ------------- 75 839636 000000000000 507903518041090008006688990040166181 507903518041 266317 621354 S +19:54:16 Slot [413] | NOT FINANCIAL TRANSACTION +19:54:21 +Slot[394] 0200 011000 6213544001921862 ------------- 00 240897 000010000000 507900410473080003006213544001921862 507900410473 790540 220699 S +19:54:23 +Slot[397] 0200 300000 6213541000202278 ------------- 00 956643 000000000000 507902573068030050046213541000202278 507902573068 737916 668899 S +19:54:28 Slot [387] | NOT FINANCIAL TRANSACTION +19:54:44 Slot [418] | NOT FINANCIAL TRANSACTION +19:54:54 +Slot[399] 0200 010000 6213541000281777 ------------- 00 271511 000100000000 5079122715110441VT526213541000281777 507912271511 544555 180893 S +19:54:57 Slot [372] | NOT FINANCIAL TRANSACTION +19:54:57 Slot [406] | NOT FINANCIAL TRANSACTION +19:55:04 Slot [368] | NOT FINANCIAL TRANSACTION +19:55:13 Slot [407] | NOT FINANCIAL TRANSACTION +19:55:15 +Slot[419] 0200 301000 1808930600012892 ------------- 00 839716 000000000000 507904238408030022001808930600012892 507904238408 855734 621354 S +19:55:17 +Slot[411] 0200 011000 6688990040166181 ------------- 75 839718 000030000000 507903525258090009006688990040166181 507903525258 165058 621354 S +19:55:21 Slot [380] | NOT FINANCIAL TRANSACTION +19:55:32 Slot [384] | NOT FINANCIAL TRANSACTION +19:55:43 Slot [401] | NOT FINANCIAL TRANSACTION +19:55:46 +Slot[416] 0200 010000 6213541000281777 ------------- 00 271517 000050000000 5079122715170441VT526213541000281777 507912271517 277694 180893 S +19:55:58 Slot [433] | NOT FINANCIAL TRANSACTION +19:56:02 Slot [420] | NOT FINANCIAL TRANSACTION +19:56:08 +Slot[381] 0200 011000 1808930600012892 ------------- 00 839768 000020000000 507904238410030022001808930600012892 507904238410 432669 621354 S +19:56:09 +Slot[398] 0200 010000 6213544001991394 ------------- 00 956662 000010000000 507900168759030200076213544001991394 507900168759 376478 668899 S +19:56:15 Slot [425] | NOT FINANCIAL TRANSACTION +19:56:15 Slot [415] | NOT FINANCIAL TRANSACTION +19:56:18 +Slot[409] 0200 010000 6213544001650669 ------------- 51 956665 000050000000 507901604393032020016213544001650669 507901604393 292732 668899 S +19:56:23 Slot [364] | NOT FINANCIAL TRANSACTION +19:56:26 Slot [388] | NOT FINANCIAL TRANSACTION +19:56:35 +Slot[430] 0200 301000 6213544001650669 ------------- 00 956669 000000000000 507901604394032020016213544001650669 507901604394 805223 668899 S +19:56:36 Slot [367] | NOT FINANCIAL TRANSACTION +19:56:48 Slot [441] | NOT FINANCIAL TRANSACTION +19:57:02 +Slot[403] 0200 301000 1808930600012892 ------------- 00 839824 000000000000 507904238411030022001808930600012892 507904238411 216220 621354 S +19:57:07 Slot [437] | NOT FINANCIAL TRANSACTION +19:57:08 Slot [402] | NOT FINANCIAL TRANSACTION +19:57:17 Slot [385] | NOT FINANCIAL TRANSACTION +19:57:19 Slot [362] | NOT FINANCIAL TRANSACTION +19:57:35 Slot [375] | NOT FINANCIAL TRANSACTION +19:57:46 Slot [408] | NOT FINANCIAL TRANSACTION +19:57:56 Slot [450] | NOT FINANCIAL TRANSACTION +19:58:06 Slot [417] | NOT FINANCIAL TRANSACTION +19:58:12 Slot [392] | NOT FINANCIAL TRANSACTION +19:58:18 Slot [391] | NOT FINANCIAL TRANSACTION +19:58:19 Slot [412] | NOT FINANCIAL TRANSACTION +19:58:28 +Slot[447] 0200 010000 6688990040074823 ------------- 14 271526 000010000000 5079122715260466PSLB6688990040074823 507912271526 008604 180893 S +19:58:38 Slot [405] | NOT FINANCIAL TRANSACTION +19:58:55 +Slot[443] 0200 011000 1808931000004737 ------------- 00 839959 000100000000 507904827742110006001808931000004737 507904827742 107085 621354 S +19:58:55 Slot [429] | NOT FINANCIAL TRANSACTION +19:59:05 Slot [386] | NOT FINANCIAL TRANSACTION +19:59:16 Slot [377] | NOT FINANCIAL TRANSACTION +19:59:17 Slot [446] | NOT FINANCIAL TRANSACTION +19:59:21 Slot [456] | NOT FINANCIAL TRANSACTION +19:59:27 Slot [404] | NOT FINANCIAL TRANSACTION +19:59:41 +Slot[424] 0200 011000 6688990040145458 ------------- 00 840033 000005000000 507905335296050047006688990040145458 507905335296 898047 621354 S +19:59:43 +Slot[434] 0200 010000 6688990040074823 ------------- 14 271530 000010000000 5079122715300466PSLB6688990040074823 507912271530 755869 180893 S +19:59:53 Slot [445] | NOT FINANCIAL TRANSACTION +19:59:57 Slot [442] | NOT FINANCIAL TRANSACTION +20:00:04 Slot [438] | NOT FINANCIAL TRANSACTION +20:00:14 Slot [435] | NOT FINANCIAL TRANSACTION +20:00:20 +Slot[431] 0200 010000 6688990040074823 ------------- 14 271532 000100000000 5079122715320466PSLB6688990040074823 507912271532 869981 180893 S +20:00:22 Slot [462] | NOT FINANCIAL TRANSACTION +20:00:23 Slot [427] | NOT FINANCIAL TRANSACTION +20:00:32 Slot [421] | NOT FINANCIAL TRANSACTION +20:00:34 +Slot[428] 0200 010000 6213544002046214 ------------- 61 271535 000200000000 5079122715350361BLTB6213544002046214 507912271535 041151 180893 S +20:00:47 Slot [422] | NOT FINANCIAL TRANSACTION +20:00:58 Slot [451] | NOT FINANCIAL TRANSACTION +20:01:06 +Slot[457] 0200 010000 6213548000029627 ------------- 00 956747 000030000000 507902308489030110036213548000029627 507902308489 328136 668899 S +20:01:07 +Slot[465] 0200 010000 6688990040074823 ------------- 14 271537 000010000000 5079132715370466PSLB6688990040074823 507913271537 625818 180893 S +20:01:20 Slot [426] | NOT FINANCIAL TRANSACTION +20:01:22 Slot [436] | NOT FINANCIAL TRANSACTION +20:01:25 Slot [444] | NOT FINANCIAL TRANSACTION +20:01:27 Slot [423] | NOT FINANCIAL TRANSACTION +20:01:31 Slot [458] | NOT FINANCIAL TRANSACTION +20:01:41 Slot [452] | NOT FINANCIAL TRANSACTION +20:01:47 +Slot[459] 0200 010000 6213545000968267 ------------- 00 956761 000010000000 507901541798030200166213545000968267 507901541798 270132 668899 S +20:01:53 Slot [439] | NOT FINANCIAL TRANSACTION +20:01:59 +Slot[466] 0200 010000 6213544002046214 ------------- 00 271542 000050000000 5079132715420361BLTB6213544002046214 507913271542 914456 180893 S +20:02:09 Slot [468] | NOT FINANCIAL TRANSACTION +20:02:17 Slot [455] | NOT FINANCIAL TRANSACTION +20:02:24 Slot [475] | NOT FINANCIAL TRANSACTION +20:02:27 Slot [460] | NOT FINANCIAL TRANSACTION +20:02:32 Slot [495] | NOT FINANCIAL TRANSACTION +20:02:34 Slot [449] | NOT FINANCIAL TRANSACTION +20:02:37 +Slot[440] 0200 301000 1888880000075465 ------------- 00 956776 000000000000 507901955722030200181888880000075465 507901955722 449957 668899 S +20:02:45 Slot [482] | NOT FINANCIAL TRANSACTION +20:02:58 Slot [432] | NOT FINANCIAL TRANSACTION +20:03:13 Slot [453] | NOT FINANCIAL TRANSACTION +20:03:24 Slot [484] | NOT FINANCIAL TRANSACTION +20:03:25 +Slot[488] 0200 011000 6213544001465472 ------------- 00 211765 000080000000 507920211765015290036213544001465472 507920211765 590354 198901 S +20:03:29 Slot [480] | NOT FINANCIAL TRANSACTION +20:03:32 +Slot[470] 0200 010000 1888880000075465 ------------- 00 956785 000020000000 507901955723030200181888880000075465 507901955723 972422 668899 S +20:03:37 Slot [471] | NOT FINANCIAL TRANSACTION +20:03:39 Slot [490] | NOT FINANCIAL TRANSACTION +20:03:50 Slot [463] | NOT FINANCIAL TRANSACTION +20:04:04 +Slot[448] 0200 011000 1808930600033625 ------------- 55 840419 000050000000 507905150632090019001808930600033625 507905150632 075168 621354 S +20:04:10 Slot [479] | NOT FINANCIAL TRANSACTION +20:04:21 Slot [0] | NOT FINANCIAL TRANSACTION +20:04:31 Slot [2] | NOT FINANCIAL TRANSACTION +20:04:32 +Slot[4] 0200 011000 1808930600033625 ------------- 55 840473 000050000000 507905150634090019001808930600033625 507905150634 567178 621354 S +20:04:40 Slot [493] | NOT FINANCIAL TRANSACTION +20:04:42 Slot [473] | NOT FINANCIAL TRANSACTION +20:04:51 Slot [498] | NOT FINANCIAL TRANSACTION +20:04:57 Slot [489] | NOT FINANCIAL TRANSACTION +20:04:58 +Slot[1] 0200 011000 1808930600033625 ------------- 75 840502 000050000000 507905150636090019001808930600033625 507905150636 028689 621354 S +20:05:00 +Slot[476] 0200 302000 6213544000678901 ------------- 00 956815 000000000000 507901955725030200186213544000678901 507901955725 940452 668899 S +20:05:07 Slot [477] | NOT FINANCIAL TRANSACTION +20:05:23 Slot [485] | NOT FINANCIAL TRANSACTION +20:05:33 Slot [14] | NOT FINANCIAL TRANSACTION +20:05:38 Slot [483] | NOT FINANCIAL TRANSACTION +20:05:45 +Slot[474] 0200 010000 6213544000678901 ------------- 00 956838 000010000000 507901955727030200186213544000678901 507901955727 809409 668899 S +20:05:47 Slot [6] | NOT FINANCIAL TRANSACTION +20:05:49 Slot [472] | NOT FINANCIAL TRANSACTION +20:05:49 +Slot[486] 0200 011000 6213541000672033 ------------- 00 211799 000100000000 507920211799015290146213541000672033 507920211799 574678 198901 S +20:06:00 Slot [492] | NOT FINANCIAL TRANSACTION +20:06:11 Slot [16] | NOT FINANCIAL TRANSACTION +20:06:16 +Slot[13] 0200 011000 6213541000672033 ------------- 00 211809 000100000000 507920211809015290146213541000672033 507920211809 996253 198901 S +20:06:22 Slot [454] | NOT FINANCIAL TRANSACTION +20:06:30 Slot [469] | NOT FINANCIAL TRANSACTION +20:06:30 +Slot[12] 0200 301000 1808930600033625 ------------- 75 840591 000000000000 507903565781090013001808930600033625 507903565781 575216 621354 S +20:06:35 Slot [494] | NOT FINANCIAL TRANSACTION +20:06:39 +Slot[491] 0200 011000 6213541000672033 ------------- 00 211813 000100000000 507920211813015290146213541000672033 507920211813 856597 198901 S +20:06:45 Slot [22] | NOT FINANCIAL TRANSACTION +20:06:52 Slot [17] | NOT FINANCIAL TRANSACTION +20:06:56 Slot [29] | NOT FINANCIAL TRANSACTION +20:07:03 +Slot[10] 0200 011000 6213541000672033 ------------- 00 211815 000100000000 507920211815015290146213541000672033 507920211815 996159 198901 S +20:07:07 Slot [23] | NOT FINANCIAL TRANSACTION +20:07:18 Slot [499] | NOT FINANCIAL TRANSACTION +20:07:27 +Slot[481] 0200 011000 6213541000672033 ------------- 12 211822 000100000000 507920211822015290146213541000672033 507920211822 557037 198901 S +20:07:31 Slot [31] | NOT FINANCIAL TRANSACTION +20:07:37 Slot [35] | NOT FINANCIAL TRANSACTION +20:07:42 +Slot[3] 0200 011000 6213541000672033 ------------- 00 211828 000100000000 507920211828015290146213541000672033 507920211828 789922 198901 S +20:07:46 Slot [33] | NOT FINANCIAL TRANSACTION +20:07:56 Slot [496] | NOT FINANCIAL TRANSACTION +20:07:57 Slot [21] | NOT FINANCIAL TRANSACTION +20:08:07 +Slot[11] 0200 011000 6213541000672033 ------------- 00 211830 000100000000 507920211830015290146213541000672033 507920211830 581458 198901 S +20:08:07 Slot [9] | NOT FINANCIAL TRANSACTION +20:08:22 Slot [30] | NOT FINANCIAL TRANSACTION +20:08:25 Slot [461] | NOT FINANCIAL TRANSACTION +20:08:32 +Slot[45] 0200 011000 6213541000672033 ------------- 00 211837 000100000000 507920211837015290146213541000672033 507920211837 410399 198901 S +20:08:33 Slot [37] | NOT FINANCIAL TRANSACTION +20:08:39 Slot [36] | NOT FINANCIAL TRANSACTION +20:08:43 Slot [18] | NOT FINANCIAL TRANSACTION +20:08:54 Slot [40] | NOT FINANCIAL TRANSACTION +20:09:04 Slot [43] | NOT FINANCIAL TRANSACTION +20:09:14 Slot [28] | NOT FINANCIAL TRANSACTION +20:09:21 +Slot[497] 0200 011000 1808930600033625 ------------- 75 840851 000050000000 507905150638090019001808930600033625 507905150638 360912 621354 S +20:09:30 Slot [55] | NOT FINANCIAL TRANSACTION +20:09:32 +Slot[8] 0200 010000 6213545001113574 ------------- 00 956902 000010000000 507900845030030150036213545001113574 507900845030 040029 668899 S +20:09:41 Slot [467] | NOT FINANCIAL TRANSACTION +20:09:41 Slot [7] | NOT FINANCIAL TRANSACTION +20:09:53 Slot [52] | NOT FINANCIAL TRANSACTION +20:09:57 Slot [61] | NOT FINANCIAL TRANSACTION +20:10:04 Slot [50] | NOT FINANCIAL TRANSACTION +20:10:09 +Slot[44] 0200 301000 6213541000672033 ------------- 00 211863 000000000000 507920211863015290146213541000672033 507920211863 426715 198901 S +20:10:15 Slot [25] | NOT FINANCIAL TRANSACTION +20:10:26 Slot [15] | NOT FINANCIAL TRANSACTION +20:10:37 Slot [60] | NOT FINANCIAL TRANSACTION +20:10:43 Slot [478] | NOT FINANCIAL TRANSACTION +20:10:47 Slot [63] | NOT FINANCIAL TRANSACTION +20:10:56 +Slot[73] 0200 010000 6213544001849766 ------------- 00 271556 000010000000 5079132715560461BKPO6213544001849766 507913271556 912908 180893 S +20:11:09 Slot [68] | NOT FINANCIAL TRANSACTION +20:11:20 Slot [38] | NOT FINANCIAL TRANSACTION +20:11:20 Slot [32] | NOT FINANCIAL TRANSACTION +20:11:35 Slot [26] | NOT FINANCIAL TRANSACTION +20:11:45 Slot [487] | NOT FINANCIAL TRANSACTION +20:11:47 Slot [41] | NOT FINANCIAL TRANSACTION +20:12:03 Slot [20] | NOT FINANCIAL TRANSACTION +20:12:13 Slot [464] | NOT FINANCIAL TRANSACTION +20:12:24 Slot [48] | NOT FINANCIAL TRANSACTION +20:12:34 Slot [46] | NOT FINANCIAL TRANSACTION +20:12:46 Slot [27] | NOT FINANCIAL TRANSACTION +20:12:47 Slot [69] | NOT FINANCIAL TRANSACTION +20:12:57 Slot [19] | NOT FINANCIAL TRANSACTION +20:13:01 Slot [54] | NOT FINANCIAL TRANSACTION +20:13:04 +Slot[78] 0200 010000 2206990000117184 ------------- 00 271564 000010000000 5079132715640115LPBR2206990000117184 507913271564 739594 180893 S +20:13:14 Slot [47] | NOT FINANCIAL TRANSACTION +20:13:28 Slot [57] | NOT FINANCIAL TRANSACTION +20:13:29 Slot [24] | NOT FINANCIAL TRANSACTION +20:13:40 Slot [34] | NOT FINANCIAL TRANSACTION +20:13:49 Slot [49] | NOT FINANCIAL TRANSACTION +20:13:52 Slot [81] | NOT FINANCIAL TRANSACTION +20:14:06 Slot [42] | NOT FINANCIAL TRANSACTION +20:14:20 +Slot[88] 0200 010000 6213541000259906 ------------- 61 271569 000200000000 5079132715690118UDBR6213541000259906 507913271569 861955 180893 S +20:14:21 +Slot[86] 0200 301000 6213544000824141 ------------- 00 271570 032013132427 5079132715700102SAPA6213544000824141 507913271570 974142 180893 S +20:14:32 Slot [89] | NOT FINANCIAL TRANSACTION +20:14:33 Slot [79] | NOT FINANCIAL TRANSACTION +20:14:42 Slot [59] | NOT FINANCIAL TRANSACTION +20:14:51 Slot [58] | NOT FINANCIAL TRANSACTION +20:14:52 Slot [84] | NOT FINANCIAL TRANSACTION +20:14:55 Slot [5] | NOT FINANCIAL TRANSACTION +20:15:01 +Slot[67] 0200 010000 6213541000259906 ------------- 51 271572 000100000000 5079132715720118UDBR6213541000259906 507913271572 203042 180893 S +20:15:14 Slot [93] | NOT FINANCIAL TRANSACTION +20:15:22 +Slot[62] 0200 012000 6688990040074823 ------------- 61 271574 000130000000 5079132715740466PSLB6688990040074823 507913271574 529830 180893 S +20:15:35 Slot [39] | NOT FINANCIAL TRANSACTION +20:15:38 Slot [56] | NOT FINANCIAL TRANSACTION +20:15:46 Slot [82] | NOT FINANCIAL TRANSACTION +20:15:53 Slot [51] | NOT FINANCIAL TRANSACTION +20:15:56 Slot [64] | NOT FINANCIAL TRANSACTION +20:16:08 Slot [100] | NOT FINANCIAL TRANSACTION +20:16:20 Slot [65] | NOT FINANCIAL TRANSACTION +20:16:24 Slot [91] | NOT FINANCIAL TRANSACTION +20:16:34 +Slot[72] 0200 010000 6688990700279308 ------------- 00 841377 000030000000 507904707920180009006688990700279308 507904707920 683336 621354 S +20:16:36 +Slot[76] 0200 011000 6688990040074823 ------------- 61 271576 000120000000 5079132715760466PSLB6688990040074823 507913271576 939214 180893 S +20:16:43 Slot [90] | NOT FINANCIAL TRANSACTION +20:16:46 Slot [114] | NOT FINANCIAL TRANSACTION +20:16:55 Slot [106] | NOT FINANCIAL TRANSACTION +20:16:56 Slot [83] | NOT FINANCIAL TRANSACTION +20:17:14 Slot [66] | NOT FINANCIAL TRANSACTION +20:17:15 +Slot[99] 0200 011000 1888880000096321 ------------- 55 002002 000010000000 507900296975010016001888880000096321 507900296975 748599 220699 S +20:17:28 Slot [107] | NOT FINANCIAL TRANSACTION +20:17:28 +Slot[118] 0200 011000 6213544001981973 ------------- 00 254911 000010000000 507900094457010009006213544001981973 507900094457 684959 220699 S +20:17:38 +Slot[121] 0200 010000 6213545001040512 ------------- 00 957018 000030000000 507901614599030010076213545001040512 507901614599 073888 668899 S +20:17:44 Slot [115] | NOT FINANCIAL TRANSACTION +20:17:49 Slot [92] | NOT FINANCIAL TRANSACTION +20:17:54 Slot [113] | NOT FINANCIAL TRANSACTION +20:17:55 +Slot[74] 0200 011000 1888880000096321 ------------- 00 002005 000010000000 507900296977010016001888880000096321 507900296977 414853 220699 S +20:17:57 Slot [98] | NOT FINANCIAL TRANSACTION +20:18:01 +Slot[108] 0200 010000 6688990700279308 ------------- 00 841528 000030000000 507904707922180009006688990700279308 507904707922 666731 621354 S +20:18:05 Slot [75] | NOT FINANCIAL TRANSACTION +20:18:16 Slot [94] | NOT FINANCIAL TRANSACTION +20:18:28 Slot [127] | NOT FINANCIAL TRANSACTION +20:18:43 Slot [95] | NOT FINANCIAL TRANSACTION +20:18:54 Slot [53] | NOT FINANCIAL TRANSACTION +20:18:54 Slot [134] | NOT FINANCIAL TRANSACTION +20:18:59 Slot [103] | NOT FINANCIAL TRANSACTION +20:19:05 +Slot[96] 0200 011000 1888880000096321 ------------- 00 002008 000010000000 507900296979010016001888880000096321 507900296979 934327 220699 S +20:19:10 Slot [125] | NOT FINANCIAL TRANSACTION +20:19:25 Slot [101] | NOT FINANCIAL TRANSACTION +20:19:36 Slot [70] | NOT FINANCIAL TRANSACTION +20:19:47 Slot [77] | NOT FINANCIAL TRANSACTION +20:19:55 Slot [102] | NOT FINANCIAL TRANSACTION +20:19:59 Slot [109] | NOT FINANCIAL TRANSACTION +20:20:01 Slot [85] | NOT FINANCIAL TRANSACTION +20:20:04 Slot [71] | NOT FINANCIAL TRANSACTION +20:20:18 +Slot[136] 0200 010000 6213548000547149 ------------- 00 957053 000004000000 507900858460030150046213548000547149 507900858460 551957 668899 S +20:20:18 Slot [105] | NOT FINANCIAL TRANSACTION +20:20:29 Slot [129] | NOT FINANCIAL TRANSACTION +20:20:40 Slot [116] | NOT FINANCIAL TRANSACTION +20:20:51 Slot [131] | NOT FINANCIAL TRANSACTION +20:21:02 Slot [104] | NOT FINANCIAL TRANSACTION +20:21:03 Slot [138] | NOT FINANCIAL TRANSACTION +20:21:05 Slot [97] | NOT FINANCIAL TRANSACTION +20:21:13 Slot [112] | NOT FINANCIAL TRANSACTION +20:21:20 Slot [124] | NOT FINANCIAL TRANSACTION +20:21:36 +Slot[111] 0200 011000 1808930300016771 ------------- 00 841839 000100000000 507903640596160017001808930300016771 507903640596 748647 621354 S +20:21:38 Slot [80] | NOT FINANCIAL TRANSACTION +20:21:54 Slot [140] | NOT FINANCIAL TRANSACTION +20:22:05 Slot [123] | NOT FINANCIAL TRANSACTION +20:22:05 Slot [147] | NOT FINANCIAL TRANSACTION +20:22:11 Slot [117] | NOT FINANCIAL TRANSACTION +20:22:22 Slot [132] | NOT FINANCIAL TRANSACTION +20:22:33 Slot [161] | NOT FINANCIAL TRANSACTION +20:22:47 +Slot[122] 0200 012000 1808930100004407 ------------- 42 841967 000010000000 507903613605160014001808930100004407 507903613605 464575 621354 S +20:22:55 Slot [162] | NOT FINANCIAL TRANSACTION +20:23:06 Slot [143] | NOT FINANCIAL TRANSACTION +20:23:07 Slot [166] | NOT FINANCIAL TRANSACTION +20:23:16 Slot [154] | NOT FINANCIAL TRANSACTION +20:23:16 Slot [145] | NOT FINANCIAL TRANSACTION +20:23:27 Slot [153] | NOT FINANCIAL TRANSACTION +20:23:38 Slot [120] | NOT FINANCIAL TRANSACTION +20:23:45 +Slot[150] 0200 011000 1808930100004407 ------------- 55 842049 000010000000 507903613607160014001808930100004407 507903613607 227011 621354 S +20:23:47 Slot [110] | NOT FINANCIAL TRANSACTION +20:23:53 Slot [133] | NOT FINANCIAL TRANSACTION +20:24:09 +Slot[159] 0200 011000 1808930100004407 ------------- 00 842084 000010000000 507903613609160014001808930100004407 507903613609 532629 621354 S +20:24:09 Slot [146] | NOT FINANCIAL TRANSACTION +20:24:10 +Slot[142] 0200 010000 6688990040074823 ------------- 14 271583 000050000000 5079132715830466PSLB6688990040074823 507913271583 911381 180893 S +20:24:20 Slot [158] | NOT FINANCIAL TRANSACTION +20:24:21 Slot [87] | NOT FINANCIAL TRANSACTION +20:24:24 +Slot[167] 0200 010000 6688990108145002 ------------- 14 271586 000100000000 5079132715860108THNG6688990108145002 507913271586 020280 180893 S +20:24:28 +Slot[137] 0200 302000 6213545000153605 ------------- 00 957105 000000000000 507901262082032060016213545000153605 507901262082 032981 668899 S +20:24:44 +Slot[130] 0200 010000 1808931000001386 ------------- 00 957106 000020000000 507901803598030040041808931000001386 507901803598 915287 668899 S +20:24:46 Slot [128] | NOT FINANCIAL TRANSACTION +20:24:55 Slot [157] | NOT FINANCIAL TRANSACTION +20:25:01 Slot [175] | NOT FINANCIAL TRANSACTION +20:25:05 Slot [141] | NOT FINANCIAL TRANSACTION +20:25:11 Slot [151] | NOT FINANCIAL TRANSACTION +20:25:12 Slot [170] | NOT FINANCIAL TRANSACTION +20:25:23 +Slot[172] 0200 010000 6688990108145002 ------------- 14 271589 000100000000 5079132715890108THNG6688990108145002 507913271589 824329 180893 S +20:25:26 Slot [171] | NOT FINANCIAL TRANSACTION +20:25:33 Slot [164] | NOT FINANCIAL TRANSACTION +20:25:43 +Slot[186] 0200 010000 6213545000153605 ------------- 00 957119 000030000000 507901262084032060016213545000153605 507901262084 157642 668899 S +20:25:43 Slot [126] | NOT FINANCIAL TRANSACTION +20:25:54 Slot [139] | NOT FINANCIAL TRANSACTION +20:26:02 +Slot[202] 0200 301000 6688990040074823 ------------- 14 271590 032013250527 5079132715900466PSLB6688990040074823 507913271590 135789 180893 S +20:26:10 Slot [148] | NOT FINANCIAL TRANSACTION +20:26:13 Slot [119] | NOT FINANCIAL TRANSACTION +20:26:21 Slot [176] | NOT FINANCIAL TRANSACTION +20:26:21 Slot [144] | NOT FINANCIAL TRANSACTION +20:26:31 Slot [182] | NOT FINANCIAL TRANSACTION +20:26:36 +Slot[187] 0200 010000 1808930200026193 ------------- 51 957127 000010000000 507902148148030200241808930200026193 507902148148 580380 668899 S +20:26:43 Slot [160] | NOT FINANCIAL TRANSACTION +20:26:53 Slot [163] | NOT FINANCIAL TRANSACTION +20:27:04 Slot [203] | NOT FINANCIAL TRANSACTION +20:27:08 +Slot[204] 0200 010000 6213545001064199 ------------- 00 957134 000010000000 507902148150030200246213545001064199 507902148150 590324 668899 S +20:27:10 +Slot[179] 0200 010000 6213544000678901 ------------- 00 957135 000020000000 507901955729030200186213544000678901 507901955729 352463 668899 S +20:27:15 Slot [191] | NOT FINANCIAL TRANSACTION +20:27:20 Slot [192] | NOT FINANCIAL TRANSACTION +20:27:35 Slot [135] | NOT FINANCIAL TRANSACTION +20:27:36 Slot [156] | NOT FINANCIAL TRANSACTION +20:27:52 Slot [190] | NOT FINANCIAL TRANSACTION +20:27:58 +Slot[152] 0200 011000 6688990040063586 ------------- 14 271597 000030000000 5079132715970543VLSC6688990040063586 507913271597 209579 180893 S +20:28:08 Slot [198] | NOT FINANCIAL TRANSACTION +20:28:17 Slot [196] | NOT FINANCIAL TRANSACTION +20:28:20 Slot [155] | NOT FINANCIAL TRANSACTION +20:28:35 Slot [214] | NOT FINANCIAL TRANSACTION +20:28:39 +Slot[181] 0200 010000 6688990040063586 ------------- 14 271599 000050000000 5079132715990543VLSC6688990040063586 507913271599 100415 180893 S +20:28:41 Slot [165] | NOT FINANCIAL TRANSACTION +20:28:50 Slot [201] | NOT FINANCIAL TRANSACTION +20:29:01 Slot [195] | NOT FINANCIAL TRANSACTION +20:29:13 Slot [194] | NOT FINANCIAL TRANSACTION +20:29:19 Slot [178] | NOT FINANCIAL TRANSACTION +20:29:24 Slot [209] | NOT FINANCIAL TRANSACTION +20:29:35 Slot [193] | NOT FINANCIAL TRANSACTION +20:29:46 Slot [206] | NOT FINANCIAL TRANSACTION +20:29:50 Slot [212] | NOT FINANCIAL TRANSACTION +20:29:53 +Slot[184] 0200 301000 2206990000071522 ------------- 00 842672 000000000000 507903040675010084002206990000071522 507903040675 615224 621354 S +20:29:55 Slot [230] | NOT FINANCIAL TRANSACTION +20:30:06 Slot [183] | NOT FINANCIAL TRANSACTION +20:30:15 +Slot[221] 0200 011000 6688990108145002 ------------- 00 842700 000100000000 507904995023160021006688990108145002 507904995023 288691 621354 S +20:30:17 Slot [207] | NOT FINANCIAL TRANSACTION +20:30:21 Slot [213] | NOT FINANCIAL TRANSACTION +20:30:28 Slot [169] | NOT FINANCIAL TRANSACTION +20:30:44 Slot [205] | NOT FINANCIAL TRANSACTION +20:30:51 Slot [185] | NOT FINANCIAL TRANSACTION +20:30:55 Slot [149] | NOT FINANCIAL TRANSACTION +20:31:06 Slot [232] | NOT FINANCIAL TRANSACTION +20:31:21 Slot [180] | NOT FINANCIAL TRANSACTION +20:31:21 Slot [222] | NOT FINANCIAL TRANSACTION +20:31:23 Slot [211] | NOT FINANCIAL TRANSACTION +20:31:32 Slot [208] | NOT FINANCIAL TRANSACTION +20:31:44 +Slot[189] 0200 011000 1808930900011917 ------------- 00 842822 000005000000 507902430166050027001808930900011917 507902430166 518505 621354 S +20:31:47 Slot [168] | NOT FINANCIAL TRANSACTION +20:31:56 Slot [229] | NOT FINANCIAL TRANSACTION +20:31:58 Slot [173] | NOT FINANCIAL TRANSACTION +20:32:08 Slot [174] | NOT FINANCIAL TRANSACTION +20:32:19 Slot [246] | NOT FINANCIAL TRANSACTION +20:32:25 Slot [188] | NOT FINANCIAL TRANSACTION +20:32:30 Slot [235] | NOT FINANCIAL TRANSACTION +20:32:35 +Slot[223] 0200 011000 6213543000114933 ------------- 00 212156 000010000000 507920212156015290186213543000114933 507920212156 873163 198901 S +20:32:46 Slot [227] | NOT FINANCIAL TRANSACTION +20:32:58 Slot [244] | NOT FINANCIAL TRANSACTION +20:33:01 Slot [215] | NOT FINANCIAL TRANSACTION +20:33:13 Slot [251] | NOT FINANCIAL TRANSACTION +20:33:24 Slot [248] | NOT FINANCIAL TRANSACTION +20:33:27 Slot [255] | NOT FINANCIAL TRANSACTION +20:33:34 Slot [243] | NOT FINANCIAL TRANSACTION +20:33:40 +Slot[242] 0200 311000 6213544000548906 ------------- 55 021213 000000000000 507900263148010014006213544000548906 507900263148 012325 220699 S +20:33:47 Slot [250] | NOT FINANCIAL TRANSACTION +20:34:02 Slot [226] | NOT FINANCIAL TRANSACTION +20:34:06 Slot [177] | NOT FINANCIAL TRANSACTION +20:34:13 Slot [233] | NOT FINANCIAL TRANSACTION +20:34:14 +Slot[237] 0200 010000 6213544000548906 ------------- 00 021216 000070000000 507900263150010014006213544000548906 507900263150 564694 220699 S +20:34:29 Slot [253] | NOT FINANCIAL TRANSACTION +20:34:29 Slot [260] | NOT FINANCIAL TRANSACTION +20:34:33 Slot [234] | NOT FINANCIAL TRANSACTION +20:34:38 +Slot[238] 0200 010000 6688990700095209 ------------- 14 271606 000100000000 5079132716060466PSLB6688990700095209 507913271606 484022 180893 S +20:34:50 Slot [200] | NOT FINANCIAL TRANSACTION +20:34:55 Slot [216] | NOT FINANCIAL TRANSACTION +20:35:01 Slot [259] | NOT FINANCIAL TRANSACTION +20:35:11 Slot [249] | NOT FINANCIAL TRANSACTION +20:35:19 Slot [210] | NOT FINANCIAL TRANSACTION +20:35:31 Slot [263] | NOT FINANCIAL TRANSACTION +20:35:33 Slot [261] | NOT FINANCIAL TRANSACTION +20:35:48 Slot [225] | NOT FINANCIAL TRANSACTION +20:35:57 +Slot[269] 0200 011000 1888880000076703 ------------- 51 843130 000010000000 507903838013010099001888880000076703 507903838013 521996 621354 S +20:35:59 Slot [199] | NOT FINANCIAL TRANSACTION +20:36:16 Slot [240] | NOT FINANCIAL TRANSACTION +20:36:16 +Slot[270] 0200 010000 6688990700095209 ------------- 14 271611 000050000000 5079132716110466PSLB6688990700095209 507913271611 237988 180893 S +20:36:17 +Slot[275] 0200 300000 6213543000234772 ------------- 00 957256 000000000000 507901691161030020036213543000234772 507901691161 335949 668899 S +20:36:21 Slot [197] | NOT FINANCIAL TRANSACTION +20:36:25 Slot [265] | NOT FINANCIAL TRANSACTION +20:36:33 Slot [218] | NOT FINANCIAL TRANSACTION +20:36:36 Slot [247] | NOT FINANCIAL TRANSACTION +20:36:47 Slot [256] | NOT FINANCIAL TRANSACTION +20:37:00 Slot [274] | NOT FINANCIAL TRANSACTION +20:37:16 Slot [228] | NOT FINANCIAL TRANSACTION +20:37:21 Slot [231] | NOT FINANCIAL TRANSACTION +20:37:24 +Slot[264] 0200 302000 6213541000340219 ------------- 00 957269 000000000000 507900513258030120016213541000340219 507900513258 319896 668899 S +20:37:27 Slot [220] | NOT FINANCIAL TRANSACTION +20:37:35 +Slot[273] 0200 010000 6213541000131287 ------------- 00 957272 000030000000 507900560178030140046213541000131287 507900560178 558317 668899 S +20:37:35 Slot [279] | NOT FINANCIAL TRANSACTION +20:37:39 Slot [239] | NOT FINANCIAL TRANSACTION +20:37:50 Slot [252] | NOT FINANCIAL TRANSACTION +20:37:51 +Slot[272] 0200 010000 6213541000340219 ------------- 00 957277 000030000000 507900513259030120016213541000340219 507900513259 082877 668899 S +20:38:00 Slot [282] | NOT FINANCIAL TRANSACTION +20:38:11 Slot [254] | NOT FINANCIAL TRANSACTION +20:38:22 Slot [241] | NOT FINANCIAL TRANSACTION +20:38:26 Slot [266] | NOT FINANCIAL TRANSACTION +20:38:33 Slot [224] | NOT FINANCIAL TRANSACTION +20:38:38 Slot [280] | NOT FINANCIAL TRANSACTION +20:38:48 Slot [276] | NOT FINANCIAL TRANSACTION +20:39:03 Slot [219] | NOT FINANCIAL TRANSACTION +20:39:19 Slot [258] | NOT FINANCIAL TRANSACTION +20:39:31 Slot [290] | NOT FINANCIAL TRANSACTION +20:39:34 Slot [287] | NOT FINANCIAL TRANSACTION +20:39:40 Slot [277] | NOT FINANCIAL TRANSACTION +20:39:46 Slot [284] | NOT FINANCIAL TRANSACTION +20:39:55 Slot [267] | NOT FINANCIAL TRANSACTION +20:39:56 Slot [271] | NOT FINANCIAL TRANSACTION +20:40:07 Slot [236] | NOT FINANCIAL TRANSACTION +20:40:15 +Slot[245] 0200 011000 6213541000695174 ------------- 00 212256 000050000000 507920212256016529056213541000695174 507920212256 191111 198901 S +20:40:18 Slot [303] | NOT FINANCIAL TRANSACTION +20:40:28 Slot [294] | NOT FINANCIAL TRANSACTION +20:40:36 Slot [217] | NOT FINANCIAL TRANSACTION +20:40:39 Slot [293] | NOT FINANCIAL TRANSACTION +20:40:41 +Slot[298] 0200 301000 6213541000695174 ------------- 00 212265 000000000000 507920212265016529056213541000695174 507920212265 952664 198901 S +20:40:42 Slot [300] | NOT FINANCIAL TRANSACTION +20:40:50 Slot [278] | NOT FINANCIAL TRANSACTION +20:41:06 Slot [281] | NOT FINANCIAL TRANSACTION +20:41:17 Slot [299] | NOT FINANCIAL TRANSACTION +20:41:21 Slot [257] | NOT FINANCIAL TRANSACTION +20:41:29 Slot [308] | NOT FINANCIAL TRANSACTION +20:41:41 Slot [295] | NOT FINANCIAL TRANSACTION +20:41:42 +Slot[286] 0200 010000 6213544002246855 ------------- 00 957323 000010000000 507902488705030010136213544002246855 507902488705 707459 668899 S +20:41:44 Slot [296] | NOT FINANCIAL TRANSACTION +20:41:45 Slot [283] | NOT FINANCIAL TRANSACTION +20:41:47 Slot [306] | NOT FINANCIAL TRANSACTION +20:41:56 Slot [311] | NOT FINANCIAL TRANSACTION +20:42:07 Slot [312] | NOT FINANCIAL TRANSACTION +20:42:17 +Slot[307] 0200 301000 6213545000947683 ------------- 00 271618 032013411827 5079132716180466PSLB6213545000947683 507913271618 294024 180893 S +20:42:27 Slot [288] | NOT FINANCIAL TRANSACTION +20:42:38 Slot [310] | NOT FINANCIAL TRANSACTION +20:42:42 +Slot[316] 0200 010000 6688990040050211 ------------- 00 843694 000010000000 507904229654050046006688990040050211 507904229654 733367 621354 S +20:42:46 Slot [317] | NOT FINANCIAL TRANSACTION +20:42:46 Slot [325] | NOT FINANCIAL TRANSACTION +20:42:50 Slot [318] | NOT FINANCIAL TRANSACTION +20:43:06 Slot [322] | NOT FINANCIAL TRANSACTION +20:43:24 Slot [297] | NOT FINANCIAL TRANSACTION +20:43:25 +Slot[315] 0200 010000 6213548000158111 ------------- 51 957338 000010000000 507902209981030060096213548000158111 507902209981 337558 668899 S +20:43:38 +Slot[289] 0200 011000 6213545000947683 ------------- 00 271622 000005000000 5079132716220466PSLB6213545000947683 507913271622 897042 180893 S +20:43:48 Slot [304] | NOT FINANCIAL TRANSACTION +20:43:49 Slot [326] | NOT FINANCIAL TRANSACTION +20:43:51 Slot [291] | NOT FINANCIAL TRANSACTION +20:43:59 Slot [327] | NOT FINANCIAL TRANSACTION +20:44:10 Slot [285] | NOT FINANCIAL TRANSACTION +20:44:20 Slot [331] | NOT FINANCIAL TRANSACTION +20:44:32 Slot [301] | NOT FINANCIAL TRANSACTION +20:44:42 Slot [305] | NOT FINANCIAL TRANSACTION +20:44:50 Slot [314] | NOT FINANCIAL TRANSACTION +20:44:55 Slot [302] | NOT FINANCIAL TRANSACTION +20:44:56 Slot [292] | NOT FINANCIAL TRANSACTION +20:44:58 Slot [335] | NOT FINANCIAL TRANSACTION +20:45:14 Slot [333] | NOT FINANCIAL TRANSACTION +20:45:18 Slot [262] | NOT FINANCIAL TRANSACTION +20:45:24 Slot [334] | NOT FINANCIAL TRANSACTION +20:45:35 Slot [336] | NOT FINANCIAL TRANSACTION +20:45:46 Slot [320] | NOT FINANCIAL TRANSACTION +20:45:52 Slot [321] | NOT FINANCIAL TRANSACTION +20:45:57 Slot [323] | NOT FINANCIAL TRANSACTION +20:46:01 Slot [342] | NOT FINANCIAL TRANSACTION +20:46:08 Slot [341] | NOT FINANCIAL TRANSACTION +20:46:20 Slot [268] | NOT FINANCIAL TRANSACTION +20:46:21 Slot [352] | NOT FINANCIAL TRANSACTION +20:46:35 Slot [339] | NOT FINANCIAL TRANSACTION +20:46:51 Slot [347] | NOT FINANCIAL TRANSACTION +20:46:54 Slot [309] | NOT FINANCIAL TRANSACTION +20:47:02 Slot [348] | NOT FINANCIAL TRANSACTION +20:47:06 Slot [329] | NOT FINANCIAL TRANSACTION +20:47:13 Slot [337] | NOT FINANCIAL TRANSACTION +20:47:23 Slot [350] | NOT FINANCIAL TRANSACTION +20:47:35 +Slot[346] 0200 010000 6213541000574874 ------------- 00 021219 000050000000 507900263152010014006213541000574874 507900263152 229495 220699 S +20:47:38 Slot [328] | NOT FINANCIAL TRANSACTION +20:47:48 +Slot[357] 0200 010000 6213543000234772 ------------- 00 271631 000010000000 5079132716310466PSLB6213543000234772 507913271631 232246 180893 S +20:47:56 Slot [332] | NOT FINANCIAL TRANSACTION +20:47:59 Slot [319] | NOT FINANCIAL TRANSACTION +20:48:11 Slot [356] | NOT FINANCIAL TRANSACTION +20:48:14 +Slot[365] 0200 301000 6213544002191226 ------------- 55 957392 000000000000 507900158538030200066213544002191226 507900158538 841816 668899 S +20:48:14 Slot [330] | NOT FINANCIAL TRANSACTION +20:48:24 Slot [371] | NOT FINANCIAL TRANSACTION +20:48:35 Slot [378] | NOT FINANCIAL TRANSACTION +20:48:45 Slot [366] | NOT FINANCIAL TRANSACTION +20:48:58 Slot [343] | NOT FINANCIAL TRANSACTION +20:49:04 +Slot[313] 0200 011000 1808930200048601 ------------- 00 844227 000010000000 507903919806010107001808930200048601 507903919806 018651 621354 S +20:49:07 Slot [340] | NOT FINANCIAL TRANSACTION +20:49:16 Slot [373] | NOT FINANCIAL TRANSACTION +20:49:20 Slot [345] | NOT FINANCIAL TRANSACTION +20:49:32 Slot [324] | NOT FINANCIAL TRANSACTION +20:49:39 +Slot[353] 0200 010000 6213543000172154 ------------- 61 271638 000200000000 5079132716380243VTKS6213543000172154 507913271638 509825 180893 S +20:49:48 Slot [382] | NOT FINANCIAL TRANSACTION +20:49:55 Slot [344] | NOT FINANCIAL TRANSACTION +20:50:00 Slot [355] | NOT FINANCIAL TRANSACTION +20:50:04 +Slot[363] 0200 301000 1808930200048601 ------------- 00 844291 000000000000 507903919807010107001808930200048601 507903919807 074084 621354 S +20:50:05 Slot [370] | NOT FINANCIAL TRANSACTION +20:50:15 Slot [358] | NOT FINANCIAL TRANSACTION +20:50:21 Slot [379] | NOT FINANCIAL TRANSACTION +20:50:25 Slot [369] | NOT FINANCIAL TRANSACTION +20:50:39 +Slot[360] 0200 010000 6213543000172154 ------------- 00 271641 000100000000 5079132716410243VTKS6213543000172154 507913271641 127736 180893 S +20:50:44 +Slot[354] 0200 300000 6213544002191226 ------------- 55 957415 000000000000 507900158541030200066213544002191226 507900158541 916954 668899 S +20:50:51 Slot [338] | NOT FINANCIAL TRANSACTION +20:51:02 Slot [396] | NOT FINANCIAL TRANSACTION +20:51:02 Slot [390] | NOT FINANCIAL TRANSACTION +20:51:19 Slot [374] | NOT FINANCIAL TRANSACTION +20:51:21 Slot [361] | NOT FINANCIAL TRANSACTION +20:51:26 Slot [389] | NOT FINANCIAL TRANSACTION +20:51:34 Slot [351] | NOT FINANCIAL TRANSACTION +20:51:38 +Slot[410] 0200 302000 6213544002191226 ------------- 75 957427 000000000000 507900158543030200066213544002191226 507900158543 018949 668899 S +20:51:50 +Slot[376] 0200 010000 6213543000172154 ------------- 00 271645 000100000000 5079132716450243VTKS6213543000172154 507913271645 007332 180893 S +20:52:02 +Slot[383] 0200 010000 6213545000045058 ------------- 00 271647 000100000000 5079132716470112CPBR6213545000045058 507913271647 566289 180893 S +20:52:04 Slot [395] | NOT FINANCIAL TRANSACTION +20:52:04 +Slot[359] 0200 010000 1808930300007887 ------------- 00 844408 000030000000 507903281068140010001808930300007887 507903281068 694083 621354 S +20:52:11 Slot [400] | NOT FINANCIAL TRANSACTION +20:52:21 Slot [393] | NOT FINANCIAL TRANSACTION +20:52:31 Slot [414] | NOT FINANCIAL TRANSACTION +20:52:34 Slot [349] | NOT FINANCIAL TRANSACTION +20:52:49 Slot [413] | NOT FINANCIAL TRANSACTION +20:53:04 Slot [397] | NOT FINANCIAL TRANSACTION +20:53:06 Slot [394] | NOT FINANCIAL TRANSACTION +20:53:09 +Slot[387] 0200 010000 6213543000241314 ------------- 00 957445 000050000000 507901161683032170016213543000241314 507901161683 430035 668899 S +20:53:10 +Slot[418] 0200 011000 6213545000045058 ------------- 00 271652 000090000000 5079132716520112CPBR6213545000045058 507913271652 779677 180893 S +20:53:19 Slot [399] | NOT FINANCIAL TRANSACTION +20:53:30 Slot [372] | NOT FINANCIAL TRANSACTION +20:53:36 Slot [406] | NOT FINANCIAL TRANSACTION +20:53:41 Slot [368] | NOT FINANCIAL TRANSACTION +20:53:58 Slot [407] | NOT FINANCIAL TRANSACTION +20:54:08 Slot [419] | NOT FINANCIAL TRANSACTION +20:54:08 Slot [411] | NOT FINANCIAL TRANSACTION +20:54:18 Slot [380] | NOT FINANCIAL TRANSACTION +20:54:34 Slot [384] | NOT FINANCIAL TRANSACTION +20:54:41 Slot [401] | NOT FINANCIAL TRANSACTION +20:54:49 +Slot[416] 0200 010000 6213544002191226 ------------- 75 957459 000005000000 507900158546030200066213544002191226 507900158546 909273 668899 S +20:54:49 Slot [433] | NOT FINANCIAL TRANSACTION +20:54:55 Slot [420] | NOT FINANCIAL TRANSACTION +20:55:00 Slot [381] | NOT FINANCIAL TRANSACTION +20:55:10 Slot [398] | NOT FINANCIAL TRANSACTION +20:55:17 Slot [425] | NOT FINANCIAL TRANSACTION +20:55:28 Slot [415] | NOT FINANCIAL TRANSACTION +20:55:38 Slot [409] | NOT FINANCIAL TRANSACTION +20:55:46 Slot [364] | NOT FINANCIAL TRANSACTION +20:55:54 Slot [430] | NOT FINANCIAL TRANSACTION +20:55:55 +Slot[388] 0200 300000 6213544002191226 ------------- 75 957474 000000000000 507900158548030200066213544002191226 507900158548 194331 668899 S +20:56:04 Slot [367] | NOT FINANCIAL TRANSACTION +20:56:11 Slot [403] | NOT FINANCIAL TRANSACTION +20:56:12 Slot [441] | NOT FINANCIAL TRANSACTION +20:56:21 Slot [437] | NOT FINANCIAL TRANSACTION +20:56:26 Slot [402] | NOT FINANCIAL TRANSACTION +20:56:39 Slot [385] | NOT FINANCIAL TRANSACTION +20:56:51 Slot [362] | NOT FINANCIAL TRANSACTION +20:56:52 Slot [375] | NOT FINANCIAL TRANSACTION +20:57:07 Slot [450] | NOT FINANCIAL TRANSACTION +20:57:10 +Slot[408] 0200 010000 6213544002191226 ------------- 75 957498 000005000000 507900158550030200066213544002191226 507900158550 300025 668899 S +20:57:14 Slot [417] | NOT FINANCIAL TRANSACTION +20:57:22 Slot [392] | NOT FINANCIAL TRANSACTION +20:57:32 Slot [391] | NOT FINANCIAL TRANSACTION +20:57:43 Slot [412] | NOT FINANCIAL TRANSACTION +20:57:56 Slot [447] | NOT FINANCIAL TRANSACTION +20:57:59 Slot [405] | NOT FINANCIAL TRANSACTION +20:58:15 Slot [429] | NOT FINANCIAL TRANSACTION +20:58:16 Slot [443] | NOT FINANCIAL TRANSACTION +20:58:26 +Slot[386] 0200 010000 6213541000005002 ------------- 61 271661 000200000000 5079132716610441VT526213541000005002 507913271661 691428 180893 S +20:58:29 Slot [377] | NOT FINANCIAL TRANSACTION +20:58:35 Slot [446] | NOT FINANCIAL TRANSACTION +20:58:50 Slot [404] | NOT FINANCIAL TRANSACTION +20:58:53 +Slot[456] 0200 010000 6213544002191226 ------------- 75 957524 000005000000 507900158552030200066213544002191226 507900158552 827503 668899 S +20:58:58 +Slot[424] 0200 010000 6213541000005002 ------------- 00 271663 000010000000 5079132716630441VT526213541000005002 507913271663 070143 180893 S +20:59:01 Slot [434] | NOT FINANCIAL TRANSACTION +20:59:05 Slot [445] | NOT FINANCIAL TRANSACTION +20:59:16 Slot [438] | NOT FINANCIAL TRANSACTION +20:59:18 Slot [442] | NOT FINANCIAL TRANSACTION +20:59:27 Slot [435] | NOT FINANCIAL TRANSACTION +20:59:33 +Slot[431] 0200 010000 6213544002128681 ------------- 51 957541 000005000000 507901726999033160026213544002128681 507901726999 834854 668899 S +20:59:37 Slot [462] | NOT FINANCIAL TRANSACTION +20:59:47 +Slot[427] 0200 010000 6688990106678707 ------------- 00 844817 000100000000 507902827883010076006688990106678707 507902827883 536708 621354 S +20:59:49 Slot [421] | NOT FINANCIAL TRANSACTION +20:59:55 Slot [428] | NOT FINANCIAL TRANSACTION +21:00:03 Slot [451] | NOT FINANCIAL TRANSACTION +21:00:06 Slot [457] | NOT FINANCIAL TRANSACTION +21:00:08 +Slot[422] 0200 010000 6213544002128681 ------------- 00 957547 000004000000 507901727000033160026213544002128681 507901727000 377978 668899 S +21:00:14 Slot [465] | NOT FINANCIAL TRANSACTION +21:00:20 Slot [426] | NOT FINANCIAL TRANSACTION +21:00:30 Slot [436] | NOT FINANCIAL TRANSACTION +21:00:40 Slot [444] | NOT FINANCIAL TRANSACTION +21:00:51 Slot [458] | NOT FINANCIAL TRANSACTION +21:00:54 +Slot[423] 0200 011000 6688990106678707 ------------- 00 844867 000100000000 507902827885010076006688990106678707 507902827885 991025 621354 S +21:01:05 Slot [452] | NOT FINANCIAL TRANSACTION +21:01:11 Slot [439] | NOT FINANCIAL TRANSACTION +21:01:14 +Slot[459] 0200 011000 6213545000491989 ------------- 00 009801 000030000000 507900270568010015006213545000491989 507900270568 564399 220699 S +21:01:16 Slot [466] | NOT FINANCIAL TRANSACTION +21:01:21 Slot [455] | NOT FINANCIAL TRANSACTION +21:01:22 Slot [468] | NOT FINANCIAL TRANSACTION +21:01:27 Slot [475] | NOT FINANCIAL TRANSACTION +21:01:38 Slot [460] | NOT FINANCIAL TRANSACTION +21:01:53 Slot [495] | NOT FINANCIAL TRANSACTION +21:02:04 Slot [449] | NOT FINANCIAL TRANSACTION +21:02:16 Slot [440] | NOT FINANCIAL TRANSACTION +21:02:16 Slot [482] | NOT FINANCIAL TRANSACTION +21:02:24 Slot [432] | NOT FINANCIAL TRANSACTION +21:02:36 +Slot[453] 0200 300000 1808931400007876 ------------- 00 957579 000000000000 507901604410032020011808931400007876 507901604410 308865 668899 S +21:02:40 Slot [484] | NOT FINANCIAL TRANSACTION +21:02:51 Slot [488] | NOT FINANCIAL TRANSACTION +21:03:07 Slot [480] | NOT FINANCIAL TRANSACTION +21:03:18 Slot [470] | NOT FINANCIAL TRANSACTION +21:03:21 Slot [471] | NOT FINANCIAL TRANSACTION +21:03:26 Slot [490] | NOT FINANCIAL TRANSACTION +21:03:33 Slot [448] | NOT FINANCIAL TRANSACTION +21:03:38 +Slot[463] 0200 301000 6688990104797806 ------------- 00 845036 000000000000 507903640693160017006688990104797806 507903640693 980027 621354 S +21:03:44 Slot [0] | NOT FINANCIAL TRANSACTION +21:03:47 +Slot[479] 0200 011000 6213541000602873 ------------- 00 009804 000030000000 507900270570010015006213541000602873 507900270570 282146 220699 S +21:03:54 Slot [2] | NOT FINANCIAL TRANSACTION +21:04:04 Slot [4] | NOT FINANCIAL TRANSACTION +21:04:15 Slot [493] | NOT FINANCIAL TRANSACTION +21:04:26 Slot [498] | NOT FINANCIAL TRANSACTION +21:04:26 Slot [489] | NOT FINANCIAL TRANSACTION +21:04:28 Slot [473] | NOT FINANCIAL TRANSACTION +21:04:42 Slot [1] | NOT FINANCIAL TRANSACTION +21:04:52 Slot [476] | NOT FINANCIAL TRANSACTION +21:04:55 Slot [485] | NOT FINANCIAL TRANSACTION +21:05:05 +Slot[477] 0200 011000 1808930200031920 ------------- 00 845131 000002000000 507903939343010109001808930200031920 507903939343 197621 621354 S +21:05:07 Slot [14] | NOT FINANCIAL TRANSACTION +21:05:17 Slot [483] | NOT FINANCIAL TRANSACTION +21:05:30 Slot [474] | NOT FINANCIAL TRANSACTION +21:05:31 Slot [6] | NOT FINANCIAL TRANSACTION +21:05:32 Slot [472] | NOT FINANCIAL TRANSACTION +21:05:48 Slot [486] | NOT FINANCIAL TRANSACTION +21:05:58 Slot [492] | NOT FINANCIAL TRANSACTION +21:06:13 Slot [16] | NOT FINANCIAL TRANSACTION +21:06:20 Slot [13] | NOT FINANCIAL TRANSACTION +21:06:28 Slot [454] | NOT FINANCIAL TRANSACTION +21:06:32 Slot [469] | NOT FINANCIAL TRANSACTION +21:06:36 Slot [494] | NOT FINANCIAL TRANSACTION +21:06:39 +Slot[12] 0200 011000 6688990040158345 ------------- 00 845225 000007000000 507903863879010102006688990040158345 507903863879 138273 621354 S +21:06:43 Slot [491] | NOT FINANCIAL TRANSACTION +21:06:50 Slot [22] | NOT FINANCIAL TRANSACTION +21:06:58 Slot [17] | NOT FINANCIAL TRANSACTION +21:07:08 Slot [29] | NOT FINANCIAL TRANSACTION +21:07:19 Slot [10] | NOT FINANCIAL TRANSACTION +21:07:34 Slot [23] | NOT FINANCIAL TRANSACTION +21:07:35 Slot [499] | NOT FINANCIAL TRANSACTION +21:07:41 Slot [481] | NOT FINANCIAL TRANSACTION +21:07:51 Slot [31] | NOT FINANCIAL TRANSACTION +21:08:02 Slot [35] | NOT FINANCIAL TRANSACTION +21:08:13 Slot [3] | NOT FINANCIAL TRANSACTION +21:08:24 Slot [33] | NOT FINANCIAL TRANSACTION +21:08:35 Slot [21] | NOT FINANCIAL TRANSACTION +21:08:36 Slot [496] | NOT FINANCIAL TRANSACTION +21:08:45 Slot [11] | NOT FINANCIAL TRANSACTION +21:08:46 Slot [9] | NOT FINANCIAL TRANSACTION +21:08:55 Slot [30] | NOT FINANCIAL TRANSACTION +21:09:06 Slot [461] | NOT FINANCIAL TRANSACTION +21:09:17 Slot [45] | NOT FINANCIAL TRANSACTION +21:09:27 Slot [37] | NOT FINANCIAL TRANSACTION +21:09:38 Slot [18] | NOT FINANCIAL TRANSACTION +21:09:43 +Slot[36] 0200 010000 1808931300014477 ------------- 00 845390 000004000000 507903455574060018001808931300014477 507903455574 911199 621354 S +21:09:49 Slot [40] | NOT FINANCIAL TRANSACTION +21:09:51 Slot [43] | NOT FINANCIAL TRANSACTION +21:09:55 Slot [28] | NOT FINANCIAL TRANSACTION +21:10:00 Slot [497] | NOT FINANCIAL TRANSACTION +21:10:12 Slot [55] | NOT FINANCIAL TRANSACTION +21:10:26 Slot [8] | NOT FINANCIAL TRANSACTION +21:10:40 Slot [467] | NOT FINANCIAL TRANSACTION +21:10:42 Slot [7] | NOT FINANCIAL TRANSACTION +21:10:56 Slot [52] | NOT FINANCIAL TRANSACTION +21:10:57 Slot [61] | NOT FINANCIAL TRANSACTION +21:11:08 Slot [50] | NOT FINANCIAL TRANSACTION +21:11:19 Slot [44] | NOT FINANCIAL TRANSACTION +21:11:20 Slot [25] | NOT FINANCIAL TRANSACTION +21:11:33 Slot [15] | NOT FINANCIAL TRANSACTION +21:11:42 Slot [60] | NOT FINANCIAL TRANSACTION +21:11:46 Slot [478] | NOT FINANCIAL TRANSACTION +21:12:01 Slot [63] | NOT FINANCIAL TRANSACTION +21:12:01 Slot [73] | NOT FINANCIAL TRANSACTION +21:12:13 Slot [38] | NOT FINANCIAL TRANSACTION +21:12:16 +Slot[68] 0200 010000 6213544002037452 ------------- 00 957645 000010000000 507902209994030060096213544002037452 507902209994 941478 668899 S +21:12:29 Slot [32] | NOT FINANCIAL TRANSACTION +21:12:39 Slot [26] | NOT FINANCIAL TRANSACTION +21:12:44 Slot [487] | NOT FINANCIAL TRANSACTION +21:12:55 Slot [41] | NOT FINANCIAL TRANSACTION +21:13:06 Slot [20] | NOT FINANCIAL TRANSACTION +21:13:10 Slot [464] | NOT FINANCIAL TRANSACTION +21:13:25 Slot [48] | NOT FINANCIAL TRANSACTION +21:13:40 Slot [46] | NOT FINANCIAL TRANSACTION +21:13:46 Slot [27] | NOT FINANCIAL TRANSACTION +21:13:51 Slot [69] | NOT FINANCIAL TRANSACTION +21:14:07 Slot [19] | NOT FINANCIAL TRANSACTION +21:14:11 Slot [54] | NOT FINANCIAL TRANSACTION +21:14:18 Slot [78] | NOT FINANCIAL TRANSACTION +21:14:28 Slot [47] | NOT FINANCIAL TRANSACTION +21:14:39 Slot [57] | NOT FINANCIAL TRANSACTION +21:14:48 Slot [24] | NOT FINANCIAL TRANSACTION +21:14:50 Slot [34] | NOT FINANCIAL TRANSACTION +21:14:55 Slot [49] | NOT FINANCIAL TRANSACTION +21:15:02 Slot [81] | NOT FINANCIAL TRANSACTION +21:15:11 Slot [42] | NOT FINANCIAL TRANSACTION +21:15:13 Slot [88] | NOT FINANCIAL TRANSACTION +21:15:16 Slot [86] | NOT FINANCIAL TRANSACTION +21:15:24 Slot [89] | NOT FINANCIAL TRANSACTION +21:15:36 Slot [79] | NOT FINANCIAL TRANSACTION +21:15:46 Slot [59] | NOT FINANCIAL TRANSACTION +21:15:50 Slot [58] | NOT FINANCIAL TRANSACTION +21:15:57 Slot [84] | NOT FINANCIAL TRANSACTION +21:16:08 Slot [5] | NOT FINANCIAL TRANSACTION +21:16:18 Slot [67] | NOT FINANCIAL TRANSACTION +21:16:21 Slot [93] | NOT FINANCIAL TRANSACTION +21:16:21 Slot [62] | NOT FINANCIAL TRANSACTION +21:16:29 Slot [39] | NOT FINANCIAL TRANSACTION +21:16:45 +Slot[56] 0200 010000 6213543000203652 ------------- 00 271676 000010000000 5079142716760528LPBP6213543000203652 507914271676 010322 180893 S +21:16:52 Slot [82] | NOT FINANCIAL TRANSACTION +21:16:55 Slot [51] | NOT FINANCIAL TRANSACTION +21:17:11 Slot [64] | NOT FINANCIAL TRANSACTION +21:17:26 Slot [100] | NOT FINANCIAL TRANSACTION +21:17:26 Slot [65] | NOT FINANCIAL TRANSACTION +21:17:36 +Slot[91] 0200 010000 6213543000203652 ------------- 00 271679 000010000000 5079142716790528LPBP6213543000203652 507914271679 473102 180893 S +21:17:36 Slot [72] | NOT FINANCIAL TRANSACTION +21:17:47 Slot [76] | NOT FINANCIAL TRANSACTION +21:17:54 Slot [90] | NOT FINANCIAL TRANSACTION +21:17:58 Slot [114] | NOT FINANCIAL TRANSACTION +21:18:09 Slot [106] | NOT FINANCIAL TRANSACTION +21:18:18 +Slot[83] 0200 010000 6213543000203652 ------------- 51 271682 000010000000 5079142716820528LPBP6213543000203652 507914271682 114066 180893 S +21:18:29 Slot [66] | NOT FINANCIAL TRANSACTION +21:18:31 Slot [99] | NOT FINANCIAL TRANSACTION +21:18:40 Slot [107] | NOT FINANCIAL TRANSACTION +21:18:55 Slot [121] | NOT FINANCIAL TRANSACTION +21:18:56 Slot [118] | NOT FINANCIAL TRANSACTION +21:19:03 +Slot[115] 0200 011000 6213545001003825 ------------- 00 271684 000020000000 5079142716840441VT526213545001003825 507914271684 822802 180893 S +21:19:12 Slot [92] | NOT FINANCIAL TRANSACTION +21:19:22 Slot [113] | NOT FINANCIAL TRANSACTION +21:19:32 Slot [98] | NOT FINANCIAL TRANSACTION +21:19:36 Slot [108] | NOT FINANCIAL TRANSACTION +21:19:38 +Slot[74] 0200 011000 6688990602561506 ------------- 00 846029 000010000000 507903161639040026006688990602561506 507903161639 542836 621354 S +21:19:43 Slot [75] | NOT FINANCIAL TRANSACTION +21:19:55 Slot [94] | NOT FINANCIAL TRANSACTION +21:19:58 Slot [127] | NOT FINANCIAL TRANSACTION +21:19:59 Slot [95] | NOT FINANCIAL TRANSACTION +21:20:15 Slot [53] | NOT FINANCIAL TRANSACTION +21:20:30 Slot [134] | NOT FINANCIAL TRANSACTION +21:20:41 Slot [103] | NOT FINANCIAL TRANSACTION +21:20:46 Slot [96] | NOT FINANCIAL TRANSACTION +21:21:00 Slot [101] | NOT FINANCIAL TRANSACTION +21:21:04 +Slot[125] 0200 010000 1808931500008477 ------------- 00 957700 000010000000 507901215147030200131808931500008477 507901215147 829771 668899 S +21:21:13 Slot [70] | NOT FINANCIAL TRANSACTION +21:21:21 Slot [77] | NOT FINANCIAL TRANSACTION +21:21:29 Slot [102] | NOT FINANCIAL TRANSACTION +21:21:46 Slot [109] | NOT FINANCIAL TRANSACTION +21:21:46 Slot [85] | NOT FINANCIAL TRANSACTION +21:21:56 Slot [71] | NOT FINANCIAL TRANSACTION +21:22:02 Slot [136] | NOT FINANCIAL TRANSACTION +21:22:09 +Slot[105] 0200 010000 1808931500008477 ------------- 00 957713 000010000000 507901215149030200131808931500008477 507901215149 500840 668899 S +21:22:12 Slot [129] | NOT FINANCIAL TRANSACTION +21:22:27 Slot [116] | NOT FINANCIAL TRANSACTION +21:22:43 Slot [131] | NOT FINANCIAL TRANSACTION +21:22:51 Slot [104] | NOT FINANCIAL TRANSACTION +21:22:54 Slot [138] | NOT FINANCIAL TRANSACTION +21:23:04 Slot [97] | NOT FINANCIAL TRANSACTION +21:23:05 Slot [112] | NOT FINANCIAL TRANSACTION +21:23:17 Slot [124] | NOT FINANCIAL TRANSACTION +21:23:32 Slot [111] | NOT FINANCIAL TRANSACTION +21:23:43 Slot [80] | NOT FINANCIAL TRANSACTION +21:23:57 Slot [140] | NOT FINANCIAL TRANSACTION +21:23:58 Slot [123] | NOT FINANCIAL TRANSACTION +21:24:06 Slot [147] | NOT FINANCIAL TRANSACTION +21:24:08 Slot [117] | NOT FINANCIAL TRANSACTION +21:24:23 Slot [132] | NOT FINANCIAL TRANSACTION +21:24:35 Slot [161] | NOT FINANCIAL TRANSACTION +21:24:50 Slot [122] | NOT FINANCIAL TRANSACTION +21:24:55 Slot [162] | NOT FINANCIAL TRANSACTION +21:25:02 Slot [143] | NOT FINANCIAL TRANSACTION +21:25:02 Slot [166] | NOT FINANCIAL TRANSACTION +21:25:08 Slot [154] | NOT FINANCIAL TRANSACTION +21:25:17 Slot [145] | NOT FINANCIAL TRANSACTION +21:25:28 Slot [153] | NOT FINANCIAL TRANSACTION +21:25:39 Slot [120] | NOT FINANCIAL TRANSACTION +21:25:50 +Slot[150] 0200 012000 6213544001376901 ------------- 00 271687 000020000000 5079142716870528LPBP6213544001376901 507914271687 981374 180893 S +21:26:01 Slot [110] | NOT FINANCIAL TRANSACTION +21:26:07 Slot [133] | NOT FINANCIAL TRANSACTION +21:26:10 Slot [159] | NOT FINANCIAL TRANSACTION +21:26:13 Slot [146] | NOT FINANCIAL TRANSACTION +21:26:21 Slot [142] | NOT FINANCIAL TRANSACTION +21:26:24 Slot [158] | NOT FINANCIAL TRANSACTION +21:26:41 Slot [87] | NOT FINANCIAL TRANSACTION +21:26:55 Slot [167] | NOT FINANCIAL TRANSACTION +21:27:06 Slot [137] | NOT FINANCIAL TRANSACTION +21:27:12 Slot [128] | NOT FINANCIAL TRANSACTION +21:27:12 Slot [130] | NOT FINANCIAL TRANSACTION +21:27:21 Slot [157] | NOT FINANCIAL TRANSACTION +21:27:36 Slot [175] | NOT FINANCIAL TRANSACTION +21:27:51 Slot [141] | NOT FINANCIAL TRANSACTION +21:28:06 Slot [151] | NOT FINANCIAL TRANSACTION +21:28:14 Slot [170] | NOT FINANCIAL TRANSACTION +21:28:17 Slot [172] | NOT FINANCIAL TRANSACTION +21:28:21 Slot [171] | NOT FINANCIAL TRANSACTION +21:28:22 Slot [164] | NOT FINANCIAL TRANSACTION +21:28:31 Slot [126] | NOT FINANCIAL TRANSACTION +21:28:34 +Slot[186] 0200 010000 6213543000219476 ------------- 00 021222 000030000000 507900263154010014006213543000219476 507900263154 640922 220699 S +21:28:46 Slot [139] | NOT FINANCIAL TRANSACTION +21:29:02 Slot [202] | NOT FINANCIAL TRANSACTION +21:29:08 +Slot[148] 0200 300000 6213544002119193 ------------- 00 957741 000000000000 507900705349030030026213544002119193 507900705349 568297 668899 S +21:29:12 Slot [119] | NOT FINANCIAL TRANSACTION +21:29:16 Slot [176] | NOT FINANCIAL TRANSACTION +21:29:22 Slot [144] | NOT FINANCIAL TRANSACTION +21:29:25 Slot [182] | NOT FINANCIAL TRANSACTION +21:29:42 Slot [187] | NOT FINANCIAL TRANSACTION +21:29:49 +Slot[160] 0200 010000 6213544002119193 ------------- 51 957743 000010000000 507900705350030030026213544002119193 507900705350 880794 668899 S +21:29:55 Slot [163] | NOT FINANCIAL TRANSACTION +21:29:56 Slot [203] | NOT FINANCIAL TRANSACTION +21:30:12 Slot [204] | NOT FINANCIAL TRANSACTION +21:30:18 Slot [179] | NOT FINANCIAL TRANSACTION +21:30:23 Slot [191] | NOT FINANCIAL TRANSACTION +21:30:27 Slot [192] | NOT FINANCIAL TRANSACTION +21:30:38 Slot [135] | NOT FINANCIAL TRANSACTION +21:30:49 Slot [156] | NOT FINANCIAL TRANSACTION +21:31:06 Slot [190] | NOT FINANCIAL TRANSACTION +21:31:16 Slot [152] | NOT FINANCIAL TRANSACTION +21:31:20 Slot [198] | NOT FINANCIAL TRANSACTION +21:31:21 Slot [196] | NOT FINANCIAL TRANSACTION +21:31:26 Slot [155] | NOT FINANCIAL TRANSACTION +21:31:32 Slot [214] | NOT FINANCIAL TRANSACTION +21:31:37 Slot [181] | NOT FINANCIAL TRANSACTION +21:31:52 Slot [165] | NOT FINANCIAL TRANSACTION +21:31:54 Slot [201] | NOT FINANCIAL TRANSACTION +21:32:05 Slot [195] | NOT FINANCIAL TRANSACTION +21:32:20 Slot [194] | NOT FINANCIAL TRANSACTION +21:32:22 Slot [178] | NOT FINANCIAL TRANSACTION +21:32:30 Slot [209] | NOT FINANCIAL TRANSACTION +21:32:37 Slot [193] | NOT FINANCIAL TRANSACTION +21:32:46 Slot [206] | NOT FINANCIAL TRANSACTION +21:32:57 Slot [212] | NOT FINANCIAL TRANSACTION +21:33:12 Slot [184] | NOT FINANCIAL TRANSACTION +21:33:24 Slot [230] | NOT FINANCIAL TRANSACTION +21:33:24 Slot [183] | NOT FINANCIAL TRANSACTION +21:33:39 Slot [221] | NOT FINANCIAL TRANSACTION +21:33:42 Slot [207] | NOT FINANCIAL TRANSACTION +21:33:50 Slot [213] | NOT FINANCIAL TRANSACTION +21:34:01 Slot [169] | NOT FINANCIAL TRANSACTION +21:34:12 Slot [205] | NOT FINANCIAL TRANSACTION +21:34:22 Slot [185] | NOT FINANCIAL TRANSACTION +21:34:26 Slot [149] | NOT FINANCIAL TRANSACTION +21:34:38 Slot [232] | NOT FINANCIAL TRANSACTION +21:34:45 +Slot[180] 0200 300000 6213548000340768 ------------- 00 957770 000000000000 507900603279030060036213548000340768 507900603279 349144 668899 S +21:34:46 +Slot[222] 0200 301000 2206991200049599 ------------- 00 271700 032014334927 5079142717000141HQBR2206991200049599 507914271700 804528 180893 S +21:34:47 Slot [211] | NOT FINANCIAL TRANSACTION +21:34:55 Slot [208] | NOT FINANCIAL TRANSACTION +21:34:58 Slot [189] | NOT FINANCIAL TRANSACTION +21:35:14 Slot [168] | NOT FINANCIAL TRANSACTION +21:35:26 Slot [174] | NOT FINANCIAL TRANSACTION +21:35:27 +Slot[229] 0200 301000 6213541000393713 ------------- 00 271701 032014343027 5079142717010141HQBR6213541000393713 507914271701 876627 180893 S +21:35:28 Slot [173] | NOT FINANCIAL TRANSACTION +21:35:41 Slot [246] | NOT FINANCIAL TRANSACTION +21:35:52 Slot [188] | NOT FINANCIAL TRANSACTION +21:35:56 Slot [223] | NOT FINANCIAL TRANSACTION +21:35:59 +Slot[235] 0200 011000 6688990040145458 ------------- 00 846849 000005000000 507905335298050047006688990040145458 507905335298 346190 621354 S +21:36:07 Slot [227] | NOT FINANCIAL TRANSACTION +21:36:18 Slot [244] | NOT FINANCIAL TRANSACTION +21:36:21 Slot [215] | NOT FINANCIAL TRANSACTION +21:36:29 Slot [248] | NOT FINANCIAL TRANSACTION +21:36:30 Slot [251] | NOT FINANCIAL TRANSACTION +21:36:40 Slot [255] | NOT FINANCIAL TRANSACTION +21:36:56 Slot [242] | NOT FINANCIAL TRANSACTION +21:36:57 Slot [250] | NOT FINANCIAL TRANSACTION +21:37:00 +Slot[243] 0200 311000 6213544001408936 ------------- 00 167801 000000000000 507900175103070001006213544001408936 507900175103 698092 220699 S +21:37:06 Slot [226] | NOT FINANCIAL TRANSACTION +21:37:17 Slot [177] | NOT FINANCIAL TRANSACTION +21:37:27 Slot [233] | NOT FINANCIAL TRANSACTION +21:37:32 Slot [237] | NOT FINANCIAL TRANSACTION +21:37:38 Slot [260] | NOT FINANCIAL TRANSACTION +21:37:42 +Slot[253] 0200 011000 6213544001408936 ------------- 00 167802 000030000000 507900175104070001006213544001408936 507900175104 541930 220699 S +21:37:49 Slot [234] | NOT FINANCIAL TRANSACTION +21:38:00 Slot [238] | NOT FINANCIAL TRANSACTION +21:38:02 Slot [200] | NOT FINANCIAL TRANSACTION +21:38:10 Slot [216] | NOT FINANCIAL TRANSACTION +21:38:21 Slot [259] | NOT FINANCIAL TRANSACTION +21:38:32 Slot [210] | NOT FINANCIAL TRANSACTION +21:38:34 Slot [249] | NOT FINANCIAL TRANSACTION +21:38:43 Slot [263] | NOT FINANCIAL TRANSACTION +21:38:58 Slot [261] | NOT FINANCIAL TRANSACTION +21:39:07 Slot [225] | NOT FINANCIAL TRANSACTION +21:39:08 Slot [269] | NOT FINANCIAL TRANSACTION +21:39:09 Slot [199] | NOT FINANCIAL TRANSACTION +21:39:19 Slot [240] | NOT FINANCIAL TRANSACTION +21:39:30 Slot [270] | NOT FINANCIAL TRANSACTION +21:39:36 Slot [275] | NOT FINANCIAL TRANSACTION +21:39:41 Slot [197] | NOT FINANCIAL TRANSACTION +21:39:55 Slot [265] | NOT FINANCIAL TRANSACTION +21:39:57 Slot [218] | NOT FINANCIAL TRANSACTION +21:40:09 Slot [247] | NOT FINANCIAL TRANSACTION +21:40:12 Slot [256] | NOT FINANCIAL TRANSACTION +21:40:24 Slot [274] | NOT FINANCIAL TRANSACTION +21:40:36 Slot [264] | NOT FINANCIAL TRANSACTION +21:40:38 +Slot[228] 0200 301000 2206990000121806 ------------- 00 847086 000000000000 507903919845010107002206990000121806 507903919845 167283 621354 S +21:40:38 Slot [231] | NOT FINANCIAL TRANSACTION +21:40:52 Slot [220] | NOT FINANCIAL TRANSACTION +21:40:56 +Slot[273] 0200 010000 6213544001477469 ------------- 61 271710 000200000000 5079142717100108THNG6213544001477469 507914271710 298651 180893 S +21:41:10 Slot [279] | NOT FINANCIAL TRANSACTION +21:41:16 +Slot[239] 0200 010000 6688990102698006 ------------- 00 847110 000010000000 507903625942160015006688990102698006 507903625942 701181 621354 S +21:41:17 Slot [252] | NOT FINANCIAL TRANSACTION +21:41:21 Slot [272] | NOT FINANCIAL TRANSACTION +21:41:24 Slot [282] | NOT FINANCIAL TRANSACTION +21:41:34 Slot [254] | NOT FINANCIAL TRANSACTION +21:41:40 Slot [241] | NOT FINANCIAL TRANSACTION +21:41:45 Slot [266] | NOT FINANCIAL TRANSACTION +21:42:00 Slot [280] | NOT FINANCIAL TRANSACTION +21:42:02 +Slot[224] 0200 010000 6213545001044548 ------------- 00 957796 000070000000 507900789229030050026213545001044548 507900789229 109917 668899 S +21:42:11 Slot [276] | NOT FINANCIAL TRANSACTION +21:42:22 Slot [219] | NOT FINANCIAL TRANSACTION +21:42:27 Slot [258] | NOT FINANCIAL TRANSACTION +21:42:42 Slot [290] | NOT FINANCIAL TRANSACTION +21:42:42 Slot [287] | NOT FINANCIAL TRANSACTION +21:42:53 Slot [277] | NOT FINANCIAL TRANSACTION +21:43:09 Slot [284] | NOT FINANCIAL TRANSACTION +21:43:20 Slot [267] | NOT FINANCIAL TRANSACTION +21:43:28 Slot [271] | NOT FINANCIAL TRANSACTION +21:43:35 Slot [236] | NOT FINANCIAL TRANSACTION +21:43:44 Slot [245] | NOT FINANCIAL TRANSACTION +21:43:47 Slot [303] | NOT FINANCIAL TRANSACTION +21:44:02 Slot [294] | NOT FINANCIAL TRANSACTION +21:44:22 Slot [293] | NOT FINANCIAL TRANSACTION +21:44:24 +Slot[217] 0200 011000 1808931300006432 ------------- 00 847242 000010000000 507903640728160017001808931300006432 507903640728 276471 621354 S +21:44:33 Slot [298] | NOT FINANCIAL TRANSACTION +21:44:34 Slot [300] | NOT FINANCIAL TRANSACTION +21:44:43 Slot [281] | NOT FINANCIAL TRANSACTION +21:44:45 +Slot[278] 0200 010000 6213544001477469 ------------- 55 271715 000010000000 5079142717150108THNG6213544001477469 507914271715 018630 180893 S +21:44:46 Slot [299] | NOT FINANCIAL TRANSACTION +21:44:54 Slot [257] | NOT FINANCIAL TRANSACTION +21:44:55 Slot [308] | NOT FINANCIAL TRANSACTION +21:45:09 Slot [295] | NOT FINANCIAL TRANSACTION +21:45:24 Slot [286] | NOT FINANCIAL TRANSACTION +21:45:39 Slot [296] | NOT FINANCIAL TRANSACTION +21:45:40 Slot [283] | NOT FINANCIAL TRANSACTION +21:45:48 Slot [306] | NOT FINANCIAL TRANSACTION +21:45:51 Slot [311] | NOT FINANCIAL TRANSACTION +21:46:06 Slot [312] | NOT FINANCIAL TRANSACTION +21:46:18 Slot [307] | NOT FINANCIAL TRANSACTION +21:46:21 Slot [288] | NOT FINANCIAL TRANSACTION +21:46:32 Slot [310] | NOT FINANCIAL TRANSACTION +21:46:43 Slot [316] | NOT FINANCIAL TRANSACTION +21:46:44 Slot [317] | NOT FINANCIAL TRANSACTION +21:46:50 Slot [325] | NOT FINANCIAL TRANSACTION +21:46:59 Slot [318] | NOT FINANCIAL TRANSACTION +21:47:10 Slot [322] | NOT FINANCIAL TRANSACTION +21:47:19 +Slot[297] 0200 301000 2206990000128066 ------------- 00 957827 000000000000 507902224543030080052206990000128066 507902224543 442749 668899 S +21:47:20 Slot [289] | NOT FINANCIAL TRANSACTION +21:47:21 +Slot[315] 0200 010000 6688990102949102 ------------- 00 847359 000020000000 507903625950160015006688990102949102 507903625950 706999 621354 S +21:47:26 +Slot[304] 0200 300000 6213544001963500 ------------- 00 957830 000000000000 507902088538030060086213544001963500 507902088538 575611 668899 S +21:47:31 Slot [326] | NOT FINANCIAL TRANSACTION +21:47:42 Slot [291] | NOT FINANCIAL TRANSACTION +21:47:49 Slot [327] | NOT FINANCIAL TRANSACTION +21:47:52 Slot [285] | NOT FINANCIAL TRANSACTION +21:47:53 Slot [331] | NOT FINANCIAL TRANSACTION +21:48:08 Slot [301] | NOT FINANCIAL TRANSACTION +21:48:19 Slot [305] | NOT FINANCIAL TRANSACTION +21:48:31 Slot [314] | NOT FINANCIAL TRANSACTION +21:48:36 Slot [302] | NOT FINANCIAL TRANSACTION +21:48:42 Slot [292] | NOT FINANCIAL TRANSACTION +21:48:53 Slot [333] | NOT FINANCIAL TRANSACTION +21:48:54 Slot [335] | NOT FINANCIAL TRANSACTION +21:48:54 Slot [262] | NOT FINANCIAL TRANSACTION +21:49:09 Slot [334] | NOT FINANCIAL TRANSACTION +21:49:19 Slot [336] | NOT FINANCIAL TRANSACTION +21:49:30 Slot [320] | NOT FINANCIAL TRANSACTION +21:49:40 Slot [321] | NOT FINANCIAL TRANSACTION +21:49:54 Slot [342] | NOT FINANCIAL TRANSACTION +21:49:55 Slot [341] | NOT FINANCIAL TRANSACTION +21:49:56 Slot [268] | NOT FINANCIAL TRANSACTION +21:49:56 Slot [323] | NOT FINANCIAL TRANSACTION +21:49:59 Slot [352] | NOT FINANCIAL TRANSACTION +21:50:07 Slot [339] | NOT FINANCIAL TRANSACTION +21:50:17 Slot [347] | NOT FINANCIAL TRANSACTION +21:50:27 Slot [309] | NOT FINANCIAL TRANSACTION +21:50:37 Slot [348] | NOT FINANCIAL TRANSACTION +21:50:53 Slot [329] | NOT FINANCIAL TRANSACTION +21:50:58 Slot [337] | NOT FINANCIAL TRANSACTION +21:51:04 Slot [350] | NOT FINANCIAL TRANSACTION +21:51:09 Slot [346] | NOT FINANCIAL TRANSACTION +21:51:21 Slot [328] | NOT FINANCIAL TRANSACTION +21:51:24 Slot [357] | NOT FINANCIAL TRANSACTION +21:51:35 Slot [332] | NOT FINANCIAL TRANSACTION +21:51:46 +Slot[319] 0200 011000 6213545000842470 ------------- 00 271723 000030000000 5079142717230401XSBR6213545000842470 507914271723 865085 180893 S +21:51:56 Slot [356] | NOT FINANCIAL TRANSACTION +21:52:00 Slot [365] | NOT FINANCIAL TRANSACTION +21:52:07 Slot [330] | NOT FINANCIAL TRANSACTION +21:52:09 Slot [371] | NOT FINANCIAL TRANSACTION +21:52:17 Slot [378] | NOT FINANCIAL TRANSACTION +21:52:28 Slot [366] | NOT FINANCIAL TRANSACTION +21:52:35 +Slot[343] 0200 300000 6213544001861779 ------------- 00 957843 000000000000 507901262096032060016213544001861779 507901262096 665497 668899 S +21:52:39 Slot [313] | NOT FINANCIAL TRANSACTION +21:52:56 Slot [373] | NOT FINANCIAL TRANSACTION +21:52:57 +Slot[340] 0200 300000 6213544001861779 ------------- 00 957845 000000000000 507901262097032060016213544001861779 507901262097 408519 668899 S +21:53:02 Slot [345] | NOT FINANCIAL TRANSACTION +21:53:06 Slot [353] | NOT FINANCIAL TRANSACTION +21:53:10 +Slot[324] 0200 302000 2206990000109611 ------------- 00 271726 032014521027 5079142717260104NUOL2206990000109611 507914271726 477784 180893 S +21:53:14 Slot [382] | NOT FINANCIAL TRANSACTION +21:53:23 Slot [355] | NOT FINANCIAL TRANSACTION +21:53:26 +Slot[344] 0200 300000 6213544001861779 ------------- 00 957848 000000000000 507901262098032060016213544001861779 507901262098 588447 668899 S +21:53:38 Slot [363] | NOT FINANCIAL TRANSACTION +21:53:49 Slot [370] | NOT FINANCIAL TRANSACTION +21:53:57 +Slot[358] 0200 010000 6213544001861779 ------------- 00 957851 000050000000 507901262099032060016213544001861779 507901262099 411552 668899 S +21:54:04 Slot [379] | NOT FINANCIAL TRANSACTION +21:54:04 Slot [369] | NOT FINANCIAL TRANSACTION +21:54:19 Slot [360] | NOT FINANCIAL TRANSACTION +21:54:19 Slot [354] | NOT FINANCIAL TRANSACTION +21:54:30 Slot [338] | NOT FINANCIAL TRANSACTION +21:54:41 Slot [396] | NOT FINANCIAL TRANSACTION +21:54:52 Slot [390] | NOT FINANCIAL TRANSACTION +21:54:55 Slot [374] | NOT FINANCIAL TRANSACTION +21:55:03 Slot [361] | NOT FINANCIAL TRANSACTION +21:55:06 Slot [389] | NOT FINANCIAL TRANSACTION +21:55:09 +Slot[351] 0200 010000 6213544001261152 ------------- 51 957861 000010000000 507902093503030200216213544001261152 507902093503 437868 668899 S +21:55:14 Slot [410] | NOT FINANCIAL TRANSACTION +21:55:24 Slot [376] | NOT FINANCIAL TRANSACTION +21:55:25 Slot [383] | NOT FINANCIAL TRANSACTION +21:55:40 Slot [359] | NOT FINANCIAL TRANSACTION +21:55:45 +Slot[395] 0200 010000 6213544000147022 ------------- 00 957868 000050000000 507901783284033030036213544000147022 507901783284 256539 668899 S +21:55:51 Slot [400] | NOT FINANCIAL TRANSACTION +21:56:02 Slot [393] | NOT FINANCIAL TRANSACTION +21:56:08 Slot [414] | NOT FINANCIAL TRANSACTION +21:56:13 Slot [349] | NOT FINANCIAL TRANSACTION +21:56:21 Slot [413] | NOT FINANCIAL TRANSACTION +21:56:28 Slot [397] | NOT FINANCIAL TRANSACTION +21:56:29 Slot [394] | NOT FINANCIAL TRANSACTION +21:56:38 Slot [387] | NOT FINANCIAL TRANSACTION +21:56:49 Slot [399] | NOT FINANCIAL TRANSACTION +21:56:53 +Slot[418] 0200 010000 6213545001114275 ------------- 00 271731 000050000000 5079142717310401XSBR6213545001114275 507914271731 675186 180893 S +21:57:05 Slot [372] | NOT FINANCIAL TRANSACTION +21:57:10 Slot [406] | NOT FINANCIAL TRANSACTION +21:57:15 Slot [368] | NOT FINANCIAL TRANSACTION +21:57:26 Slot [411] | NOT FINANCIAL TRANSACTION +21:57:27 +Slot[407] 0200 011000 6688990040045377 ------------- 00 847687 000020000000 507902635162140002006688990040045377 507902635162 394610 621354 S +21:57:28 +Slot[419] 0200 010000 6213544001833059 ------------- 00 957878 000010000000 507902148153030200246213544001833059 507902148153 526937 668899 S +21:57:34 Slot [380] | NOT FINANCIAL TRANSACTION +21:57:37 Slot [384] | NOT FINANCIAL TRANSACTION +21:57:48 Slot [401] | NOT FINANCIAL TRANSACTION +21:58:03 Slot [416] | NOT FINANCIAL TRANSACTION +21:58:12 Slot [433] | NOT FINANCIAL TRANSACTION +21:58:14 Slot [420] | NOT FINANCIAL TRANSACTION +21:58:25 Slot [398] | NOT FINANCIAL TRANSACTION +21:58:29 +Slot[381] 0200 010000 6213544001261152 ------------- 00 957884 000010000000 507902093505030200216213544001261152 507902093505 192578 668899 S +21:58:39 Slot [425] | NOT FINANCIAL TRANSACTION +21:58:40 Slot [415] | NOT FINANCIAL TRANSACTION +21:58:51 Slot [409] | NOT FINANCIAL TRANSACTION +21:59:08 Slot [364] | NOT FINANCIAL TRANSACTION +21:59:14 Slot [430] | NOT FINANCIAL TRANSACTION +21:59:19 Slot [388] | NOT FINANCIAL TRANSACTION +21:59:34 Slot [367] | NOT FINANCIAL TRANSACTION +21:59:44 Slot [403] | NOT FINANCIAL TRANSACTION +21:59:45 Slot [441] | NOT FINANCIAL TRANSACTION +21:59:55 Slot [437] | NOT FINANCIAL TRANSACTION +21:59:56 Slot [402] | NOT FINANCIAL TRANSACTION +22:00:11 Slot [385] | NOT FINANCIAL TRANSACTION +22:00:16 Slot [362] | NOT FINANCIAL TRANSACTION +22:00:20 +Slot[375] 0200 011000 6213544002118971 ------------- 51 213284 000050000000 507922213284016529106213544002118971 507922213284 946553 198901 S +22:00:22 Slot [450] | NOT FINANCIAL TRANSACTION +22:00:33 Slot [408] | NOT FINANCIAL TRANSACTION +22:00:40 Slot [417] | NOT FINANCIAL TRANSACTION +22:00:43 Slot [391] | NOT FINANCIAL TRANSACTION +22:00:46 +Slot[392] 0200 011000 6213544002118971 ------------- 00 213290 000040000000 507922213290016529106213544002118971 507922213290 768523 198901 S +22:00:49 Slot [412] | NOT FINANCIAL TRANSACTION +22:00:55 Slot [447] | NOT FINANCIAL TRANSACTION +22:01:05 +Slot[405] 0200 012000 1808930200052074 ------------- 42 847776 000050000000 507905251999020028001808930200052074 507905251999 720821 621354 S +22:01:12 Slot [429] | NOT FINANCIAL TRANSACTION +22:01:18 Slot [443] | NOT FINANCIAL TRANSACTION +22:01:21 Slot [386] | NOT FINANCIAL TRANSACTION +22:01:28 Slot [377] | NOT FINANCIAL TRANSACTION +22:01:42 Slot [446] | NOT FINANCIAL TRANSACTION +22:01:54 Slot [404] | NOT FINANCIAL TRANSACTION +22:01:59 Slot [456] | NOT FINANCIAL TRANSACTION +22:02:11 Slot [424] | NOT FINANCIAL TRANSACTION +22:02:20 Slot [434] | NOT FINANCIAL TRANSACTION +22:02:27 Slot [445] | NOT FINANCIAL TRANSACTION +22:02:45 Slot [438] | NOT FINANCIAL TRANSACTION +22:02:57 Slot [442] | NOT FINANCIAL TRANSACTION +22:02:59 Slot [435] | NOT FINANCIAL TRANSACTION +22:03:19 +Slot[431] 0200 010000 1808930200049096 ------------- 00 847834 000030000000 507905247210010133001808930200049096 507905247210 110591 621354 S +22:03:22 Slot [427] | NOT FINANCIAL TRANSACTION +22:03:23 +Slot[462] 0200 011000 1808930200052074 ------------- 00 847841 000100000000 507905252002020028001808930200052074 507905252002 511006 621354 S +22:03:30 Slot [421] | NOT FINANCIAL TRANSACTION +22:03:46 Slot [428] | NOT FINANCIAL TRANSACTION +22:03:57 Slot [451] | NOT FINANCIAL TRANSACTION +22:04:04 Slot [457] | NOT FINANCIAL TRANSACTION +22:04:09 Slot [422] | NOT FINANCIAL TRANSACTION +22:04:21 +Slot[465] 0200 301000 1808930200049096 ------------- 00 847859 000000000000 507905247211010133001808930200049096 507905247211 171741 621354 S +22:04:24 Slot [426] | NOT FINANCIAL TRANSACTION +22:04:24 Slot [436] | NOT FINANCIAL TRANSACTION +22:04:35 Slot [444] | NOT FINANCIAL TRANSACTION +22:04:45 Slot [423] | NOT FINANCIAL TRANSACTION +22:04:47 +Slot[458] 0200 301000 6213541000411804 ------------- 55 271740 032015035127 5079152717400344SVKV6213541000411804 507915271740 713186 180893 S +22:04:55 Slot [452] | NOT FINANCIAL TRANSACTION +22:05:00 Slot [459] | NOT FINANCIAL TRANSACTION +22:05:09 Slot [466] | NOT FINANCIAL TRANSACTION +22:05:10 +Slot[439] 0200 011000 1808930200052074 ------------- 00 847889 000100000000 507905252004020028001808930200052074 507905252004 247375 621354 S +22:05:18 Slot [455] | NOT FINANCIAL TRANSACTION +22:05:18 Slot [468] | NOT FINANCIAL TRANSACTION +22:05:26 Slot [475] | NOT FINANCIAL TRANSACTION +22:05:33 Slot [460] | NOT FINANCIAL TRANSACTION +22:05:44 Slot [495] | NOT FINANCIAL TRANSACTION +22:06:00 Slot [449] | NOT FINANCIAL TRANSACTION +22:06:11 Slot [440] | NOT FINANCIAL TRANSACTION +22:06:14 Slot [482] | NOT FINANCIAL TRANSACTION +22:06:21 Slot [432] | NOT FINANCIAL TRANSACTION +22:06:22 Slot [453] | NOT FINANCIAL TRANSACTION +22:06:28 Slot [484] | NOT FINANCIAL TRANSACTION +22:06:38 Slot [488] | NOT FINANCIAL TRANSACTION +22:06:49 Slot [480] | NOT FINANCIAL TRANSACTION +22:06:59 Slot [470] | NOT FINANCIAL TRANSACTION +22:07:10 Slot [471] | NOT FINANCIAL TRANSACTION +22:07:19 Slot [490] | NOT FINANCIAL TRANSACTION +22:07:21 Slot [448] | NOT FINANCIAL TRANSACTION +22:07:30 Slot [463] | NOT FINANCIAL TRANSACTION +22:07:37 Slot [0] | NOT FINANCIAL TRANSACTION +22:07:52 Slot [479] | NOT FINANCIAL TRANSACTION +22:08:07 Slot [4] | NOT FINANCIAL TRANSACTION +22:08:08 +Slot[2] 0420 013000 6688990103042907 ------------- 00 833276 000020000000 507905382554120034006688990103042907 507905382554 -------- 621354 S +22:08:18 Slot [493] | NOT FINANCIAL TRANSACTION +22:08:24 Slot [498] | NOT FINANCIAL TRANSACTION +22:08:29 Slot [489] | NOT FINANCIAL TRANSACTION +22:08:32 Slot [473] | NOT FINANCIAL TRANSACTION +22:08:39 Slot [1] | NOT FINANCIAL TRANSACTION +22:08:49 Slot [476] | NOT FINANCIAL TRANSACTION +22:09:00 Slot [485] | NOT FINANCIAL TRANSACTION +22:09:10 Slot [477] | NOT FINANCIAL TRANSACTION +22:09:21 +Slot[14] 0420 013000 6688990103042907 0000000000000 00 833276 000020000000 507905382554120034006688990103042907 507905382554 814372 621354 S +22:09:21 Slot [483] | NOT FINANCIAL TRANSACTION +22:09:29 Slot [474] | NOT FINANCIAL TRANSACTION +22:09:32 Slot [6] | NOT FINANCIAL TRANSACTION +22:09:34 Slot [472] | NOT FINANCIAL TRANSACTION +22:09:43 Slot [486] | NOT FINANCIAL TRANSACTION +22:09:55 Slot [492] | NOT FINANCIAL TRANSACTION +22:09:59 Slot [16] | NOT FINANCIAL TRANSACTION +22:10:10 Slot [13] | NOT FINANCIAL TRANSACTION +22:10:20 Slot [454] | NOT FINANCIAL TRANSACTION +22:10:31 Slot [469] | NOT FINANCIAL TRANSACTION +22:10:34 Slot [12] | NOT FINANCIAL TRANSACTION +22:10:36 Slot [494] | NOT FINANCIAL TRANSACTION +22:10:41 Slot [491] | NOT FINANCIAL TRANSACTION +22:10:49 +Slot[22] 0200 300000 6688990106677204 ------------- 00 848069 000000000000 507904559879020018006688990106677204 507904559879 370994 621354 S +22:10:52 Slot [17] | NOT FINANCIAL TRANSACTION +22:11:08 Slot [29] | NOT FINANCIAL TRANSACTION +22:11:19 Slot [10] | NOT FINANCIAL TRANSACTION +22:11:21 Slot [23] | NOT FINANCIAL TRANSACTION +22:11:26 Slot [499] | NOT FINANCIAL TRANSACTION +22:11:30 Slot [481] | NOT FINANCIAL TRANSACTION +22:11:38 Slot [31] | NOT FINANCIAL TRANSACTION +22:11:39 Slot [35] | NOT FINANCIAL TRANSACTION +22:11:46 Slot [3] | NOT FINANCIAL TRANSACTION +22:11:57 Slot [33] | NOT FINANCIAL TRANSACTION +22:12:14 Slot [21] | NOT FINANCIAL TRANSACTION +22:12:25 Slot [496] | NOT FINANCIAL TRANSACTION +22:12:40 Slot [9] | NOT FINANCIAL TRANSACTION +22:12:44 Slot [30] | NOT FINANCIAL TRANSACTION +22:12:45 +Slot[11] 0200 010000 1808930600026686 ------------- 00 848123 000010000000 507904424396030041001808930600026686 507904424396 698078 621354 S +22:12:52 Slot [461] | NOT FINANCIAL TRANSACTION +22:13:03 Slot [45] | NOT FINANCIAL TRANSACTION +22:13:14 Slot [37] | NOT FINANCIAL TRANSACTION +22:13:25 Slot [18] | NOT FINANCIAL TRANSACTION +22:13:36 Slot [36] | NOT FINANCIAL TRANSACTION +22:13:42 Slot [40] | NOT FINANCIAL TRANSACTION +22:13:47 Slot [43] | NOT FINANCIAL TRANSACTION +22:13:49 Slot [28] | NOT FINANCIAL TRANSACTION +22:13:57 Slot [497] | NOT FINANCIAL TRANSACTION +22:14:08 Slot [8] | NOT FINANCIAL TRANSACTION +22:14:10 +Slot[55] 0200 011000 6688990700160904 ------------- 00 848163 000100000000 507903997581010115006688990700160904 507903997581 271972 621354 S +22:14:24 Slot [467] | NOT FINANCIAL TRANSACTION +22:14:35 Slot [7] | NOT FINANCIAL TRANSACTION +22:14:44 Slot [52] | NOT FINANCIAL TRANSACTION +22:14:45 Slot [61] | NOT FINANCIAL TRANSACTION +22:14:54 Slot [50] | NOT FINANCIAL TRANSACTION +22:14:55 Slot [44] | NOT FINANCIAL TRANSACTION +22:14:56 Slot [25] | NOT FINANCIAL TRANSACTION +22:15:12 Slot [15] | NOT FINANCIAL TRANSACTION +22:15:25 Slot [60] | NOT FINANCIAL TRANSACTION +22:15:39 Slot [478] | NOT FINANCIAL TRANSACTION +22:15:46 Slot [63] | NOT FINANCIAL TRANSACTION +22:15:51 Slot [73] | NOT FINANCIAL TRANSACTION +22:15:59 Slot [38] | NOT FINANCIAL TRANSACTION +22:16:05 Slot [68] | NOT FINANCIAL TRANSACTION +22:16:16 Slot [32] | NOT FINANCIAL TRANSACTION +22:16:21 Slot [26] | NOT FINANCIAL TRANSACTION +22:16:27 Slot [487] | NOT FINANCIAL TRANSACTION +22:16:39 Slot [41] | NOT FINANCIAL TRANSACTION +22:16:48 Slot [20] | NOT FINANCIAL TRANSACTION +22:16:49 Slot [464] | NOT FINANCIAL TRANSACTION +22:17:01 Slot [48] | NOT FINANCIAL TRANSACTION +22:17:04 Slot [46] | NOT FINANCIAL TRANSACTION +22:17:16 Slot [27] | NOT FINANCIAL TRANSACTION +22:17:27 Slot [69] | NOT FINANCIAL TRANSACTION +22:17:38 Slot [19] | NOT FINANCIAL TRANSACTION +22:17:48 Slot [78] | NOT FINANCIAL TRANSACTION +22:17:50 Slot [54] | NOT FINANCIAL TRANSACTION +22:17:59 Slot [47] | NOT FINANCIAL TRANSACTION +22:18:09 Slot [57] | NOT FINANCIAL TRANSACTION +22:18:09 Slot [24] | NOT FINANCIAL TRANSACTION +22:18:20 Slot [34] | NOT FINANCIAL TRANSACTION +22:18:31 Slot [49] | NOT FINANCIAL TRANSACTION +22:18:42 Slot [81] | NOT FINANCIAL TRANSACTION +22:18:52 Slot [42] | NOT FINANCIAL TRANSACTION +22:18:54 Slot [88] | NOT FINANCIAL TRANSACTION +22:19:04 Slot [86] | NOT FINANCIAL TRANSACTION +22:19:14 Slot [89] | NOT FINANCIAL TRANSACTION +22:19:15 Slot [79] | NOT FINANCIAL TRANSACTION +22:19:27 Slot [59] | NOT FINANCIAL TRANSACTION +22:19:38 Slot [58] | NOT FINANCIAL TRANSACTION +22:19:54 Slot [84] | NOT FINANCIAL TRANSACTION +22:19:54 Slot [5] | NOT FINANCIAL TRANSACTION +22:19:55 Slot [67] | NOT FINANCIAL TRANSACTION +22:20:05 Slot [93] | NOT FINANCIAL TRANSACTION +22:20:19 Slot [62] | NOT FINANCIAL TRANSACTION +22:20:21 Slot [39] | NOT FINANCIAL TRANSACTION +22:20:33 Slot [56] | NOT FINANCIAL TRANSACTION +22:20:48 Slot [82] | NOT FINANCIAL TRANSACTION +22:20:56 Slot [51] | NOT FINANCIAL TRANSACTION +22:21:04 Slot [64] | NOT FINANCIAL TRANSACTION +22:21:19 Slot [100] | NOT FINANCIAL TRANSACTION +22:21:21 Slot [65] | NOT FINANCIAL TRANSACTION +22:21:24 Slot [91] | NOT FINANCIAL TRANSACTION +22:21:29 Slot [72] | NOT FINANCIAL TRANSACTION +22:21:40 Slot [76] | NOT FINANCIAL TRANSACTION +22:21:51 Slot [90] | NOT FINANCIAL TRANSACTION +22:21:58 Slot [114] | NOT FINANCIAL TRANSACTION +22:22:00 Slot [106] | NOT FINANCIAL TRANSACTION +22:22:01 Slot [83] | NOT FINANCIAL TRANSACTION +22:22:12 Slot [66] | NOT FINANCIAL TRANSACTION +22:22:12 Slot [99] | NOT FINANCIAL TRANSACTION +22:22:28 Slot [107] | NOT FINANCIAL TRANSACTION +22:22:29 Slot [121] | NOT FINANCIAL TRANSACTION +22:22:39 Slot [118] | NOT FINANCIAL TRANSACTION +22:22:50 Slot [115] | NOT FINANCIAL TRANSACTION +22:23:00 Slot [92] | NOT FINANCIAL TRANSACTION +22:23:02 Slot [113] | NOT FINANCIAL TRANSACTION +22:23:17 Slot [98] | NOT FINANCIAL TRANSACTION +22:23:31 Slot [74] | NOT FINANCIAL TRANSACTION +22:23:34 Slot [75] | NOT FINANCIAL TRANSACTION +22:23:39 +Slot[108] 0200 010000 2206991200061596 ------------- 00 848429 000030000000 507902827929010076002206991200061596 507902827929 416210 621354 S +22:23:43 Slot [94] | NOT FINANCIAL TRANSACTION +22:23:54 Slot [127] | NOT FINANCIAL TRANSACTION +22:24:02 Slot [95] | NOT FINANCIAL TRANSACTION +22:24:05 Slot [53] | NOT FINANCIAL TRANSACTION +22:24:16 Slot [134] | NOT FINANCIAL TRANSACTION +22:24:27 Slot [103] | NOT FINANCIAL TRANSACTION +22:24:38 Slot [96] | NOT FINANCIAL TRANSACTION +22:24:39 Slot [101] | NOT FINANCIAL TRANSACTION +22:24:53 Slot [125] | NOT FINANCIAL TRANSACTION +22:24:55 Slot [70] | NOT FINANCIAL TRANSACTION +22:25:04 Slot [77] | NOT FINANCIAL TRANSACTION +22:25:05 Slot [102] | NOT FINANCIAL TRANSACTION +22:25:21 Slot [109] | NOT FINANCIAL TRANSACTION +22:25:36 Slot [85] | NOT FINANCIAL TRANSACTION +22:25:44 Slot [71] | NOT FINANCIAL TRANSACTION +22:25:48 Slot [136] | NOT FINANCIAL TRANSACTION +22:26:03 Slot [105] | NOT FINANCIAL TRANSACTION +22:26:06 Slot [129] | NOT FINANCIAL TRANSACTION +22:26:14 Slot [116] | NOT FINANCIAL TRANSACTION +22:26:21 Slot [131] | NOT FINANCIAL TRANSACTION +22:26:25 Slot [104] | NOT FINANCIAL TRANSACTION +22:26:36 Slot [138] | NOT FINANCIAL TRANSACTION +22:26:46 Slot [97] | NOT FINANCIAL TRANSACTION +22:26:49 Slot [112] | NOT FINANCIAL TRANSACTION +22:26:57 Slot [124] | NOT FINANCIAL TRANSACTION +22:27:08 Slot [111] | NOT FINANCIAL TRANSACTION +22:27:09 Slot [80] | NOT FINANCIAL TRANSACTION +22:27:23 Slot [140] | NOT FINANCIAL TRANSACTION +22:27:33 Slot [123] | NOT FINANCIAL TRANSACTION +22:27:44 Slot [147] | NOT FINANCIAL TRANSACTION +22:27:54 Slot [117] | NOT FINANCIAL TRANSACTION +22:28:00 Slot [132] | NOT FINANCIAL TRANSACTION +22:28:10 Slot [161] | NOT FINANCIAL TRANSACTION +22:28:11 Slot [122] | NOT FINANCIAL TRANSACTION +22:28:22 Slot [162] | NOT FINANCIAL TRANSACTION +22:28:32 Slot [166] | NOT FINANCIAL TRANSACTION +22:28:36 +Slot[143] 0200 010000 6688990040137604 ------------- 00 848545 000015000000 507905230368010132006688990040137604 507905230368 492286 621354 S +22:28:43 Slot [145] | NOT FINANCIAL TRANSACTION +22:28:48 +Slot[154] 0200 010000 1888880000087411 ------------- 00 957980 000010000000 507900771520030050011888880000087411 507900771520 696485 668899 S +22:28:54 Slot [153] | NOT FINANCIAL TRANSACTION +22:28:59 Slot [120] | NOT FINANCIAL TRANSACTION +22:29:04 Slot [150] | NOT FINANCIAL TRANSACTION +22:29:12 Slot [110] | NOT FINANCIAL TRANSACTION +22:29:15 Slot [133] | NOT FINANCIAL TRANSACTION +22:29:26 Slot [159] | NOT FINANCIAL TRANSACTION +22:29:37 Slot [146] | NOT FINANCIAL TRANSACTION +22:29:48 Slot [142] | NOT FINANCIAL TRANSACTION +22:29:55 Slot [158] | NOT FINANCIAL TRANSACTION +22:29:59 Slot [87] | NOT FINANCIAL TRANSACTION +22:30:04 Slot [167] | NOT FINANCIAL TRANSACTION +22:30:10 Slot [137] | NOT FINANCIAL TRANSACTION +22:30:14 Slot [128] | NOT FINANCIAL TRANSACTION +22:30:22 Slot [130] | NOT FINANCIAL TRANSACTION +22:30:37 Slot [157] | NOT FINANCIAL TRANSACTION +22:30:47 Slot [175] | NOT FINANCIAL TRANSACTION +22:30:58 Slot [141] | NOT FINANCIAL TRANSACTION +22:31:09 Slot [151] | NOT FINANCIAL TRANSACTION +22:31:09 Slot [170] | NOT FINANCIAL TRANSACTION +22:31:16 Slot [172] | NOT FINANCIAL TRANSACTION +22:31:19 Slot [171] | NOT FINANCIAL TRANSACTION +22:31:21 Slot [164] | NOT FINANCIAL TRANSACTION +22:31:30 Slot [126] | NOT FINANCIAL TRANSACTION +22:31:41 Slot [186] | NOT FINANCIAL TRANSACTION +22:31:52 Slot [139] | NOT FINANCIAL TRANSACTION +22:32:02 Slot [202] | NOT FINANCIAL TRANSACTION +22:32:13 Slot [148] | NOT FINANCIAL TRANSACTION +22:32:14 Slot [119] | NOT FINANCIAL TRANSACTION +22:32:18 Slot [176] | NOT FINANCIAL TRANSACTION +22:32:23 Slot [144] | NOT FINANCIAL TRANSACTION +22:32:36 Slot [182] | NOT FINANCIAL TRANSACTION +22:32:46 Slot [187] | NOT FINANCIAL TRANSACTION +22:32:56 Slot [160] | NOT FINANCIAL TRANSACTION +22:32:58 Slot [163] | NOT FINANCIAL TRANSACTION +22:33:07 Slot [203] | NOT FINANCIAL TRANSACTION +22:33:19 Slot [179] | NOT FINANCIAL TRANSACTION +22:33:20 Slot [204] | NOT FINANCIAL TRANSACTION +22:33:22 Slot [191] | NOT FINANCIAL TRANSACTION +22:33:33 Slot [192] | NOT FINANCIAL TRANSACTION +22:33:43 Slot [135] | NOT FINANCIAL TRANSACTION +22:33:53 Slot [156] | NOT FINANCIAL TRANSACTION +22:34:09 Slot [190] | NOT FINANCIAL TRANSACTION +22:34:20 Slot [152] | NOT FINANCIAL TRANSACTION +22:34:22 Slot [198] | NOT FINANCIAL TRANSACTION +22:34:25 Slot [196] | NOT FINANCIAL TRANSACTION +22:34:31 Slot [155] | NOT FINANCIAL TRANSACTION +22:34:46 Slot [214] | NOT FINANCIAL TRANSACTION +22:34:55 Slot [181] | NOT FINANCIAL TRANSACTION +22:34:57 Slot [165] | NOT FINANCIAL TRANSACTION +22:35:08 Slot [201] | NOT FINANCIAL TRANSACTION +22:35:18 Slot [195] | NOT FINANCIAL TRANSACTION +22:35:24 Slot [194] | NOT FINANCIAL TRANSACTION +22:35:28 Slot [178] | NOT FINANCIAL TRANSACTION +22:35:30 Slot [209] | NOT FINANCIAL TRANSACTION +22:35:39 Slot [193] | NOT FINANCIAL TRANSACTION +22:35:49 Slot [206] | NOT FINANCIAL TRANSACTION +22:36:00 Slot [212] | NOT FINANCIAL TRANSACTION +22:36:11 Slot [184] | NOT FINANCIAL TRANSACTION +22:36:21 Slot [230] | NOT FINANCIAL TRANSACTION +22:36:22 Slot [183] | NOT FINANCIAL TRANSACTION +22:36:26 Slot [207] | NOT FINANCIAL TRANSACTION +22:36:28 +Slot[221] 0200 301000 2206990000102673 ------------- 00 848700 000000000000 507903790495010095002206990000102673 507903790495 330286 621354 S +22:36:35 Slot [213] | NOT FINANCIAL TRANSACTION +22:36:37 Slot [169] | NOT FINANCIAL TRANSACTION +22:36:49 Slot [205] | NOT FINANCIAL TRANSACTION +22:37:00 Slot [185] | NOT FINANCIAL TRANSACTION +22:37:12 Slot [149] | NOT FINANCIAL TRANSACTION +22:37:26 Slot [180] | NOT FINANCIAL TRANSACTION +22:37:28 Slot [232] | NOT FINANCIAL TRANSACTION +22:37:38 Slot [222] | NOT FINANCIAL TRANSACTION +22:37:40 Slot [211] | NOT FINANCIAL TRANSACTION +22:37:53 Slot [208] | NOT FINANCIAL TRANSACTION +22:38:03 Slot [189] | NOT FINANCIAL TRANSACTION +22:38:14 Slot [168] | NOT FINANCIAL TRANSACTION +22:38:24 Slot [174] | NOT FINANCIAL TRANSACTION +22:38:30 Slot [229] | NOT FINANCIAL TRANSACTION +22:38:36 Slot [173] | NOT FINANCIAL TRANSACTION +22:38:42 Slot [246] | NOT FINANCIAL TRANSACTION +22:38:45 Slot [188] | NOT FINANCIAL TRANSACTION +22:38:53 Slot [223] | NOT FINANCIAL TRANSACTION +22:39:03 Slot [235] | NOT FINANCIAL TRANSACTION +22:39:18 Slot [227] | NOT FINANCIAL TRANSACTION +22:39:30 Slot [244] | NOT FINANCIAL TRANSACTION +22:39:32 Slot [215] | NOT FINANCIAL TRANSACTION +22:39:44 Slot [248] | NOT FINANCIAL TRANSACTION +22:39:50 Slot [251] | NOT FINANCIAL TRANSACTION +22:39:55 Slot [255] | NOT FINANCIAL TRANSACTION +22:39:55 Slot [242] | NOT FINANCIAL TRANSACTION +22:40:11 Slot [250] | NOT FINANCIAL TRANSACTION +22:40:21 Slot [243] | NOT FINANCIAL TRANSACTION +22:40:32 Slot [177] | NOT FINANCIAL TRANSACTION +22:40:34 Slot [226] | NOT FINANCIAL TRANSACTION +22:40:43 Slot [233] | NOT FINANCIAL TRANSACTION +22:40:54 Slot [237] | NOT FINANCIAL TRANSACTION +22:40:55 Slot [260] | NOT FINANCIAL TRANSACTION +22:41:05 Slot [253] | NOT FINANCIAL TRANSACTION +22:41:16 Slot [234] | NOT FINANCIAL TRANSACTION +22:41:21 Slot [238] | NOT FINANCIAL TRANSACTION +22:41:32 Slot [200] | NOT FINANCIAL TRANSACTION +22:41:36 Slot [216] | NOT FINANCIAL TRANSACTION +22:41:43 Slot [259] | NOT FINANCIAL TRANSACTION +22:41:54 Slot [210] | NOT FINANCIAL TRANSACTION +22:42:00 Slot [249] | NOT FINANCIAL TRANSACTION +22:42:05 Slot [263] | NOT FINANCIAL TRANSACTION +22:42:20 Slot [261] | NOT FINANCIAL TRANSACTION +22:42:31 Slot [225] | NOT FINANCIAL TRANSACTION +22:42:38 Slot [269] | NOT FINANCIAL TRANSACTION +22:42:42 Slot [199] | NOT FINANCIAL TRANSACTION +22:42:54 Slot [240] | NOT FINANCIAL TRANSACTION +22:43:05 Slot [270] | NOT FINANCIAL TRANSACTION +22:43:09 Slot [275] | NOT FINANCIAL TRANSACTION +22:43:20 Slot [197] | NOT FINANCIAL TRANSACTION +22:43:30 Slot [265] | NOT FINANCIAL TRANSACTION +22:43:40 Slot [218] | NOT FINANCIAL TRANSACTION +22:43:41 Slot [247] | NOT FINANCIAL TRANSACTION +22:43:44 Slot [256] | NOT FINANCIAL TRANSACTION +22:43:52 Slot [274] | NOT FINANCIAL TRANSACTION +22:44:03 Slot [264] | NOT FINANCIAL TRANSACTION +22:44:10 Slot [228] | NOT FINANCIAL TRANSACTION +22:44:14 Slot [231] | NOT FINANCIAL TRANSACTION +22:44:24 Slot [220] | NOT FINANCIAL TRANSACTION +22:44:35 Slot [273] | NOT FINANCIAL TRANSACTION +22:44:42 Slot [279] | NOT FINANCIAL TRANSACTION +22:44:52 Slot [239] | NOT FINANCIAL TRANSACTION +22:44:55 Slot [252] | NOT FINANCIAL TRANSACTION +22:45:03 Slot [272] | NOT FINANCIAL TRANSACTION +22:45:14 Slot [282] | NOT FINANCIAL TRANSACTION +22:45:15 Slot [254] | NOT FINANCIAL TRANSACTION +22:45:25 Slot [241] | NOT FINANCIAL TRANSACTION +22:45:36 Slot [266] | NOT FINANCIAL TRANSACTION +22:45:44 Slot [280] | NOT FINANCIAL TRANSACTION +22:45:46 Slot [224] | NOT FINANCIAL TRANSACTION +22:45:57 Slot [276] | NOT FINANCIAL TRANSACTION +22:46:12 Slot [219] | NOT FINANCIAL TRANSACTION +22:46:20 Slot [258] | NOT FINANCIAL TRANSACTION +22:46:21 Slot [290] | NOT FINANCIAL TRANSACTION +22:46:24 Slot [287] | NOT FINANCIAL TRANSACTION +22:46:40 Slot [277] | NOT FINANCIAL TRANSACTION +22:46:46 Slot [284] | NOT FINANCIAL TRANSACTION +22:46:51 Slot [267] | NOT FINANCIAL TRANSACTION +22:47:02 Slot [271] | NOT FINANCIAL TRANSACTION +22:47:12 Slot [236] | NOT FINANCIAL TRANSACTION +22:47:23 Slot [245] | NOT FINANCIAL TRANSACTION +22:47:25 Slot [303] | NOT FINANCIAL TRANSACTION +22:47:39 Slot [294] | NOT FINANCIAL TRANSACTION +22:47:48 Slot [293] | NOT FINANCIAL TRANSACTION +22:47:51 Slot [217] | NOT FINANCIAL TRANSACTION +22:48:07 Slot [298] | NOT FINANCIAL TRANSACTION +22:48:18 Slot [300] | NOT FINANCIAL TRANSACTION +22:48:29 Slot [281] | NOT FINANCIAL TRANSACTION +22:48:30 Slot [278] | NOT FINANCIAL TRANSACTION +22:48:39 Slot [299] | NOT FINANCIAL TRANSACTION +22:48:50 Slot [257] | NOT FINANCIAL TRANSACTION +22:48:54 Slot [308] | NOT FINANCIAL TRANSACTION +22:49:05 Slot [295] | NOT FINANCIAL TRANSACTION +22:49:15 Slot [286] | NOT FINANCIAL TRANSACTION +22:49:33 Slot [296] | NOT FINANCIAL TRANSACTION +22:49:35 Slot [283] | NOT FINANCIAL TRANSACTION +22:49:44 Slot [306] | NOT FINANCIAL TRANSACTION +22:49:52 Slot [311] | NOT FINANCIAL TRANSACTION +22:49:55 Slot [312] | NOT FINANCIAL TRANSACTION +22:49:55 Slot [307] | NOT FINANCIAL TRANSACTION +22:50:06 Slot [288] | NOT FINANCIAL TRANSACTION +22:50:17 Slot [310] | NOT FINANCIAL TRANSACTION +22:50:32 Slot [316] | NOT FINANCIAL TRANSACTION +22:50:40 Slot [317] | NOT FINANCIAL TRANSACTION +22:50:43 Slot [325] | NOT FINANCIAL TRANSACTION +22:50:54 Slot [322] | NOT FINANCIAL TRANSACTION +22:50:54 Slot [318] | NOT FINANCIAL TRANSACTION +22:51:07 Slot [297] | NOT FINANCIAL TRANSACTION +22:51:21 Slot [289] | NOT FINANCIAL TRANSACTION +22:51:22 Slot [315] | NOT FINANCIAL TRANSACTION +22:51:33 Slot [304] | NOT FINANCIAL TRANSACTION +22:51:44 Slot [326] | NOT FINANCIAL TRANSACTION +22:51:45 Slot [291] | NOT FINANCIAL TRANSACTION +22:51:56 Slot [285] | NOT FINANCIAL TRANSACTION +22:51:56 Slot [327] | NOT FINANCIAL TRANSACTION +22:52:07 Slot [331] | NOT FINANCIAL TRANSACTION +22:52:21 Slot [301] | NOT FINANCIAL TRANSACTION +22:52:35 Slot [305] | NOT FINANCIAL TRANSACTION +22:52:47 Slot [314] | NOT FINANCIAL TRANSACTION +22:52:50 Slot [302] | NOT FINANCIAL TRANSACTION +22:52:57 +Slot[292] 0200 010000 6213544001958708 ------------- 00 958057 000100000000 507900147019030200056213544001958708 507900147019 322239 668899 S +22:52:58 Slot [333] | NOT FINANCIAL TRANSACTION +22:53:01 Slot [335] | NOT FINANCIAL TRANSACTION +22:53:12 Slot [262] | NOT FINANCIAL TRANSACTION +22:53:22 Slot [334] | NOT FINANCIAL TRANSACTION +22:53:33 Slot [336] | NOT FINANCIAL TRANSACTION +22:53:43 Slot [320] | NOT FINANCIAL TRANSACTION +22:53:54 Slot [321] | NOT FINANCIAL TRANSACTION +22:53:55 Slot [342] | NOT FINANCIAL TRANSACTION +22:54:00 Slot [341] | NOT FINANCIAL TRANSACTION +22:54:05 Slot [268] | NOT FINANCIAL TRANSACTION +22:54:16 Slot [323] | NOT FINANCIAL TRANSACTION +22:54:27 Slot [352] | NOT FINANCIAL TRANSACTION +22:54:30 Slot [339] | NOT FINANCIAL TRANSACTION +22:54:42 Slot [347] | NOT FINANCIAL TRANSACTION +22:54:54 Slot [309] | NOT FINANCIAL TRANSACTION +22:54:55 Slot [348] | NOT FINANCIAL TRANSACTION +22:55:00 Slot [329] | NOT FINANCIAL TRANSACTION +22:55:02 Slot [337] | NOT FINANCIAL TRANSACTION +22:55:06 Slot [350] | NOT FINANCIAL TRANSACTION +22:55:22 Slot [328] | NOT FINANCIAL TRANSACTION +22:55:24 Slot [357] | NOT FINANCIAL TRANSACTION +22:55:25 +Slot[346] 0200 010000 6213544001958708 ------------- 00 271751 000100000000 5079152717510102SAPA6213544001958708 507915271751 711103 180893 S +22:55:38 Slot [332] | NOT FINANCIAL TRANSACTION +22:55:53 Slot [319] | NOT FINANCIAL TRANSACTION +22:56:03 Slot [365] | NOT FINANCIAL TRANSACTION +22:56:04 Slot [356] | NOT FINANCIAL TRANSACTION +22:56:05 Slot [330] | NOT FINANCIAL TRANSACTION +22:56:14 Slot [371] | NOT FINANCIAL TRANSACTION +22:56:21 Slot [378] | NOT FINANCIAL TRANSACTION +22:56:24 Slot [366] | NOT FINANCIAL TRANSACTION +22:56:36 Slot [343] | NOT FINANCIAL TRANSACTION +22:56:46 Slot [313] | NOT FINANCIAL TRANSACTION +22:56:58 Slot [373] | NOT FINANCIAL TRANSACTION +22:57:06 Slot [340] | NOT FINANCIAL TRANSACTION +22:57:10 Slot [345] | NOT FINANCIAL TRANSACTION +22:57:14 Slot [353] | NOT FINANCIAL TRANSACTION +22:57:24 Slot [324] | NOT FINANCIAL TRANSACTION +22:57:35 Slot [382] | NOT FINANCIAL TRANSACTION +22:57:45 Slot [355] | NOT FINANCIAL TRANSACTION +22:57:56 Slot [344] | NOT FINANCIAL TRANSACTION +22:58:08 Slot [363] | NOT FINANCIAL TRANSACTION +22:58:12 Slot [370] | NOT FINANCIAL TRANSACTION +22:58:15 Slot [358] | NOT FINANCIAL TRANSACTION +22:58:23 Slot [379] | NOT FINANCIAL TRANSACTION +22:58:34 Slot [369] | NOT FINANCIAL TRANSACTION +22:58:45 Slot [360] | NOT FINANCIAL TRANSACTION +22:58:56 Slot [354] | NOT FINANCIAL TRANSACTION +22:59:06 Slot [338] | NOT FINANCIAL TRANSACTION +22:59:10 Slot [396] | NOT FINANCIAL TRANSACTION +22:59:17 Slot [390] | NOT FINANCIAL TRANSACTION +22:59:20 Slot [374] | NOT FINANCIAL TRANSACTION +22:59:28 Slot [361] | NOT FINANCIAL TRANSACTION +22:59:41 +Slot[389] 0200 010000 6688990040164954 ------------- 00 849031 000020000000 507903499713060022006688990040164954 507903499713 165575 621354 S +22:59:43 Slot [351] | NOT FINANCIAL TRANSACTION +22:59:54 Slot [410] | NOT FINANCIAL TRANSACTION +22:59:55 Slot [376] | NOT FINANCIAL TRANSACTION +23:00:05 Slot [383] | NOT FINANCIAL TRANSACTION +23:00:12 Slot [359] | NOT FINANCIAL TRANSACTION +23:00:16 Slot [395] | NOT FINANCIAL TRANSACTION +23:00:25 Slot [400] | NOT FINANCIAL TRANSACTION +23:00:27 Slot [393] | NOT FINANCIAL TRANSACTION +23:00:36 +Slot[414] 0200 010000 6213543000234772 ------------- 00 958087 000005000000 507901691180030020036213543000234772 507901691180 093954 668899 S +23:00:42 Slot [349] | NOT FINANCIAL TRANSACTION +23:00:54 Slot [413] | NOT FINANCIAL TRANSACTION +23:01:09 Slot [397] | NOT FINANCIAL TRANSACTION +23:01:14 Slot [394] | NOT FINANCIAL TRANSACTION +23:01:21 Slot [387] | NOT FINANCIAL TRANSACTION +23:01:25 Slot [399] | NOT FINANCIAL TRANSACTION +23:01:30 Slot [418] | NOT FINANCIAL TRANSACTION +23:01:37 Slot [372] | NOT FINANCIAL TRANSACTION +23:01:52 Slot [406] | NOT FINANCIAL TRANSACTION +23:02:03 Slot [368] | NOT FINANCIAL TRANSACTION +23:02:16 Slot [411] | NOT FINANCIAL TRANSACTION +23:02:20 Slot [407] | NOT FINANCIAL TRANSACTION +23:02:35 Slot [419] | NOT FINANCIAL TRANSACTION +23:02:36 Slot [380] | NOT FINANCIAL TRANSACTION +23:02:47 Slot [384] | NOT FINANCIAL TRANSACTION +23:02:57 Slot [401] | NOT FINANCIAL TRANSACTION +23:03:08 Slot [416] | NOT FINANCIAL TRANSACTION +23:03:18 Slot [433] | NOT FINANCIAL TRANSACTION +23:03:18 Slot [420] | NOT FINANCIAL TRANSACTION +23:03:35 Slot [398] | NOT FINANCIAL TRANSACTION +23:03:40 Slot [381] | NOT FINANCIAL TRANSACTION +23:03:51 Slot [425] | NOT FINANCIAL TRANSACTION +23:04:06 Slot [415] | NOT FINANCIAL TRANSACTION +23:04:17 Slot [409] | NOT FINANCIAL TRANSACTION +23:04:20 Slot [364] | NOT FINANCIAL TRANSACTION +23:04:28 Slot [430] | NOT FINANCIAL TRANSACTION +23:04:44 Slot [388] | NOT FINANCIAL TRANSACTION +23:04:45 Slot [367] | NOT FINANCIAL TRANSACTION +23:04:54 Slot [403] | NOT FINANCIAL TRANSACTION +23:04:56 Slot [441] | NOT FINANCIAL TRANSACTION +23:05:05 Slot [437] | NOT FINANCIAL TRANSACTION +23:05:15 Slot [402] | NOT FINANCIAL TRANSACTION +23:05:16 Slot [385] | NOT FINANCIAL TRANSACTION +23:05:22 Slot [362] | NOT FINANCIAL TRANSACTION +23:05:26 Slot [375] | NOT FINANCIAL TRANSACTION +23:05:37 Slot [450] | NOT FINANCIAL TRANSACTION +23:05:48 Slot [408] | NOT FINANCIAL TRANSACTION +23:05:52 Slot [417] | NOT FINANCIAL TRANSACTION +23:06:01 Slot [391] | NOT FINANCIAL TRANSACTION +23:06:15 Slot [392] | NOT FINANCIAL TRANSACTION +23:06:22 Slot [412] | NOT FINANCIAL TRANSACTION +23:06:24 Slot [447] | NOT FINANCIAL TRANSACTION +23:06:25 Slot [405] | NOT FINANCIAL TRANSACTION +23:06:36 Slot [429] | NOT FINANCIAL TRANSACTION +23:06:47 Slot [443] | NOT FINANCIAL TRANSACTION +23:06:57 Slot [386] | NOT FINANCIAL TRANSACTION +23:06:57 Slot [377] | NOT FINANCIAL TRANSACTION +23:07:08 Slot [446] | NOT FINANCIAL TRANSACTION +23:07:24 Slot [456] | NOT FINANCIAL TRANSACTION +23:07:26 Slot [404] | NOT FINANCIAL TRANSACTION +23:07:35 Slot [424] | NOT FINANCIAL TRANSACTION +23:07:45 Slot [434] | NOT FINANCIAL TRANSACTION +23:07:55 Slot [445] | NOT FINANCIAL TRANSACTION +23:08:02 Slot [438] | NOT FINANCIAL TRANSACTION +23:08:06 Slot [442] | NOT FINANCIAL TRANSACTION +23:08:22 Slot [435] | NOT FINANCIAL TRANSACTION +23:08:28 Slot [431] | NOT FINANCIAL TRANSACTION +23:08:33 Slot [427] | NOT FINANCIAL TRANSACTION +23:08:49 Slot [462] | NOT FINANCIAL TRANSACTION +23:09:00 Slot [421] | NOT FINANCIAL TRANSACTION +23:09:07 Slot [428] | NOT FINANCIAL TRANSACTION +23:09:12 Slot [451] | NOT FINANCIAL TRANSACTION +23:09:23 Slot [457] | NOT FINANCIAL TRANSACTION +23:09:30 Slot [422] | NOT FINANCIAL TRANSACTION +23:09:38 Slot [465] | NOT FINANCIAL TRANSACTION +23:09:49 Slot [426] | NOT FINANCIAL TRANSACTION +23:09:56 Slot [436] | NOT FINANCIAL TRANSACTION +23:10:05 Slot [444] | NOT FINANCIAL TRANSACTION +23:10:12 Slot [423] | NOT FINANCIAL TRANSACTION +23:10:16 Slot [458] | NOT FINANCIAL TRANSACTION +23:10:32 Slot [452] | NOT FINANCIAL TRANSACTION +23:10:33 Slot [459] | NOT FINANCIAL TRANSACTION +23:10:47 Slot [466] | NOT FINANCIAL TRANSACTION +23:10:59 Slot [439] | NOT FINANCIAL TRANSACTION +23:11:09 Slot [455] | NOT FINANCIAL TRANSACTION +23:11:17 Slot [468] | NOT FINANCIAL TRANSACTION +23:11:20 Slot [475] | NOT FINANCIAL TRANSACTION +23:11:21 Slot [460] | NOT FINANCIAL TRANSACTION +23:11:31 Slot [495] | NOT FINANCIAL TRANSACTION +23:11:34 Slot [449] | NOT FINANCIAL TRANSACTION +23:11:42 Slot [440] | NOT FINANCIAL TRANSACTION +23:11:58 Slot [482] | NOT FINANCIAL TRANSACTION +23:12:06 Slot [432] | NOT FINANCIAL TRANSACTION +23:12:09 Slot [453] | NOT FINANCIAL TRANSACTION +23:12:22 Slot [484] | NOT FINANCIAL TRANSACTION +23:12:25 Slot [488] | NOT FINANCIAL TRANSACTION +23:12:36 Slot [480] | NOT FINANCIAL TRANSACTION +23:12:40 Slot [470] | NOT FINANCIAL TRANSACTION +23:12:56 Slot [471] | NOT FINANCIAL TRANSACTION +23:13:06 Slot [490] | NOT FINANCIAL TRANSACTION +23:13:18 Slot [448] | NOT FINANCIAL TRANSACTION +23:13:27 Slot [463] | NOT FINANCIAL TRANSACTION +23:13:33 Slot [0] | NOT FINANCIAL TRANSACTION +23:13:38 Slot [479] | NOT FINANCIAL TRANSACTION +23:13:44 Slot [4] | NOT FINANCIAL TRANSACTION +23:13:55 Slot [2] | NOT FINANCIAL TRANSACTION +23:14:05 Slot [493] | NOT FINANCIAL TRANSACTION +23:14:15 Slot [498] | NOT FINANCIAL TRANSACTION +23:14:27 Slot [489] | NOT FINANCIAL TRANSACTION +23:14:32 Slot [473] | NOT FINANCIAL TRANSACTION +23:14:40 Slot [476] | NOT FINANCIAL TRANSACTION +23:14:47 +Slot[1] 0200 011000 1808930600043376 ------------- 00 849296 000050000000 507904424408030041001808930600043376 507904424408 022712 621354 S +23:14:53 Slot [485] | NOT FINANCIAL TRANSACTION +23:14:55 Slot [477] | NOT FINANCIAL TRANSACTION +23:15:04 Slot [14] | NOT FINANCIAL TRANSACTION +23:15:17 Slot [483] | NOT FINANCIAL TRANSACTION +23:15:33 Slot [474] | NOT FINANCIAL TRANSACTION +23:15:37 Slot [6] | NOT FINANCIAL TRANSACTION +23:15:42 Slot [472] | NOT FINANCIAL TRANSACTION +23:15:49 Slot [486] | NOT FINANCIAL TRANSACTION +23:16:01 Slot [492] | NOT FINANCIAL TRANSACTION +23:16:04 Slot [16] | NOT FINANCIAL TRANSACTION +23:16:19 +Slot[13] 0200 301000 1808930600043376 ------------- 00 849330 000000000000 507904424409030041001808930600043376 507904424409 912482 621354 S +23:16:21 Slot [454] | NOT FINANCIAL TRANSACTION +23:16:26 Slot [469] | NOT FINANCIAL TRANSACTION +23:16:38 Slot [12] | NOT FINANCIAL TRANSACTION +23:16:42 Slot [491] | NOT FINANCIAL TRANSACTION +23:16:44 Slot [494] | NOT FINANCIAL TRANSACTION +23:16:49 Slot [22] | NOT FINANCIAL TRANSACTION +23:16:59 Slot [17] | NOT FINANCIAL TRANSACTION +23:17:10 Slot [29] | NOT FINANCIAL TRANSACTION +23:17:25 Slot [10] | NOT FINANCIAL TRANSACTION +23:17:36 Slot [23] | NOT FINANCIAL TRANSACTION +23:17:46 Slot [499] | NOT FINANCIAL TRANSACTION +23:17:47 Slot [481] | NOT FINANCIAL TRANSACTION +23:17:47 Slot [31] | NOT FINANCIAL TRANSACTION +23:17:58 Slot [35] | NOT FINANCIAL TRANSACTION +23:18:09 Slot [3] | NOT FINANCIAL TRANSACTION +23:18:24 Slot [33] | NOT FINANCIAL TRANSACTION +23:18:35 Slot [21] | NOT FINANCIAL TRANSACTION +23:18:48 Slot [496] | NOT FINANCIAL TRANSACTION +23:18:50 Slot [9] | NOT FINANCIAL TRANSACTION +23:18:52 Slot [30] | NOT FINANCIAL TRANSACTION +23:19:05 Slot [11] | NOT FINANCIAL TRANSACTION +23:19:17 Slot [461] | NOT FINANCIAL TRANSACTION +23:19:28 Slot [37] | NOT FINANCIAL TRANSACTION +23:19:37 +Slot[45] 0200 301000 6688990040158238 ------------- 00 849390 000000000000 507903828392010098006688990040158238 507903828392 389732 621354 S +23:19:43 Slot [18] | NOT FINANCIAL TRANSACTION +23:19:50 Slot [36] | NOT FINANCIAL TRANSACTION +23:19:54 Slot [40] | NOT FINANCIAL TRANSACTION +23:19:55 Slot [43] | NOT FINANCIAL TRANSACTION +23:19:57 Slot [28] | NOT FINANCIAL TRANSACTION +23:20:05 Slot [497] | NOT FINANCIAL TRANSACTION +23:20:15 Slot [8] | NOT FINANCIAL TRANSACTION +23:20:26 Slot [55] | NOT FINANCIAL TRANSACTION +23:20:42 Slot [467] | NOT FINANCIAL TRANSACTION +23:20:52 Slot [7] | NOT FINANCIAL TRANSACTION +23:20:53 Slot [52] | NOT FINANCIAL TRANSACTION +23:21:02 Slot [61] | NOT FINANCIAL TRANSACTION +23:21:03 Slot [50] | NOT FINANCIAL TRANSACTION +23:21:15 Slot [44] | NOT FINANCIAL TRANSACTION +23:21:21 Slot [25] | NOT FINANCIAL TRANSACTION +23:21:31 Slot [15] | NOT FINANCIAL TRANSACTION +23:21:45 Slot [60] | NOT FINANCIAL TRANSACTION +23:21:54 Slot [478] | NOT FINANCIAL TRANSACTION +23:21:55 Slot [63] | NOT FINANCIAL TRANSACTION +23:22:06 Slot [73] | NOT FINANCIAL TRANSACTION +23:22:07 Slot [38] | NOT FINANCIAL TRANSACTION +23:22:16 Slot [68] | NOT FINANCIAL TRANSACTION +23:22:32 Slot [26] | NOT FINANCIAL TRANSACTION +23:22:43 Slot [487] | NOT FINANCIAL TRANSACTION +23:22:43 +Slot[32] 0200 011000 6688990040158238 ------------- 00 849416 000100000000 507903077669010087006688990040158238 507903077669 106372 621354 S +23:22:56 Slot [41] | NOT FINANCIAL TRANSACTION +23:22:59 Slot [20] | NOT FINANCIAL TRANSACTION +23:23:10 Slot [464] | NOT FINANCIAL TRANSACTION +23:23:12 Slot [48] | NOT FINANCIAL TRANSACTION +23:23:20 Slot [46] | NOT FINANCIAL TRANSACTION +23:23:36 Slot [27] | NOT FINANCIAL TRANSACTION +23:23:46 Slot [69] | NOT FINANCIAL TRANSACTION +23:23:57 Slot [78] | NOT FINANCIAL TRANSACTION +23:23:58 Slot [19] | NOT FINANCIAL TRANSACTION +23:24:07 Slot [54] | NOT FINANCIAL TRANSACTION +23:24:17 Slot [47] | NOT FINANCIAL TRANSACTION +23:24:18 Slot [57] | NOT FINANCIAL TRANSACTION +23:24:29 Slot [24] | NOT FINANCIAL TRANSACTION +23:24:40 Slot [34] | NOT FINANCIAL TRANSACTION +23:24:50 Slot [49] | NOT FINANCIAL TRANSACTION +23:24:55 Slot [81] | NOT FINANCIAL TRANSACTION +23:25:00 Slot [42] | NOT FINANCIAL TRANSACTION +23:25:06 Slot [88] | NOT FINANCIAL TRANSACTION +23:25:17 Slot [86] | NOT FINANCIAL TRANSACTION +23:25:22 Slot [89] | NOT FINANCIAL TRANSACTION +23:25:29 Slot [79] | NOT FINANCIAL TRANSACTION +23:25:43 Slot [59] | NOT FINANCIAL TRANSACTION +23:25:54 Slot [58] | NOT FINANCIAL TRANSACTION +23:26:02 Slot [84] | NOT FINANCIAL TRANSACTION +23:26:09 Slot [5] | NOT FINANCIAL TRANSACTION +23:26:21 Slot [67] | NOT FINANCIAL TRANSACTION +23:26:21 Slot [93] | NOT FINANCIAL TRANSACTION +23:26:27 Slot [62] | NOT FINANCIAL TRANSACTION +23:26:35 Slot [39] | NOT FINANCIAL TRANSACTION +23:26:45 Slot [56] | NOT FINANCIAL TRANSACTION +23:26:47 Slot [82] | NOT FINANCIAL TRANSACTION +23:26:56 Slot [51] | NOT FINANCIAL TRANSACTION +23:27:04 Slot [64] | NOT FINANCIAL TRANSACTION +23:27:06 Slot [100] | NOT FINANCIAL TRANSACTION +23:27:18 Slot [65] | NOT FINANCIAL TRANSACTION +23:27:31 +Slot[91] 0200 011000 6213544000167822 ------------- 00 240421 000010000000 507900430295010021006213544000167822 507900430295 801041 220699 S +23:27:32 Slot [72] | NOT FINANCIAL TRANSACTION +23:27:34 Slot [76] | NOT FINANCIAL TRANSACTION +23:27:45 Slot [90] | NOT FINANCIAL TRANSACTION +23:28:00 Slot [114] | NOT FINANCIAL TRANSACTION +23:28:06 Slot [106] | NOT FINANCIAL TRANSACTION +23:28:11 Slot [83] | NOT FINANCIAL TRANSACTION +23:28:22 Slot [66] | NOT FINANCIAL TRANSACTION +23:28:33 Slot [99] | NOT FINANCIAL TRANSACTION +23:28:37 Slot [107] | NOT FINANCIAL TRANSACTION +23:28:44 Slot [121] | NOT FINANCIAL TRANSACTION +23:28:48 Slot [118] | NOT FINANCIAL TRANSACTION +23:28:54 Slot [115] | NOT FINANCIAL TRANSACTION +23:29:06 Slot [92] | NOT FINANCIAL TRANSACTION +23:29:08 Slot [113] | NOT FINANCIAL TRANSACTION +23:29:20 Slot [98] | NOT FINANCIAL TRANSACTION +23:29:31 Slot [74] | NOT FINANCIAL TRANSACTION +23:29:42 Slot [75] | NOT FINANCIAL TRANSACTION +23:29:43 Slot [108] | NOT FINANCIAL TRANSACTION +23:29:55 Slot [94] | NOT FINANCIAL TRANSACTION +23:29:58 Slot [127] | NOT FINANCIAL TRANSACTION +23:30:10 Slot [95] | NOT FINANCIAL TRANSACTION +23:30:14 Slot [53] | NOT FINANCIAL TRANSACTION +23:30:25 Slot [134] | NOT FINANCIAL TRANSACTION +23:30:41 Slot [103] | NOT FINANCIAL TRANSACTION +23:30:47 Slot [96] | NOT FINANCIAL TRANSACTION +23:30:51 Slot [101] | NOT FINANCIAL TRANSACTION +23:31:01 Slot [125] | NOT FINANCIAL TRANSACTION +23:31:11 Slot [77] | NOT FINANCIAL TRANSACTION +23:31:12 Slot [70] | NOT FINANCIAL TRANSACTION +23:31:18 +Slot[102] 0200 301000 1989010003166453 ------------- 05 849526 000000000000 507904016352010117001989010003166453 507904016352 458845 621354 S +23:31:21 Slot [109] | NOT FINANCIAL TRANSACTION +23:31:28 Slot [85] | NOT FINANCIAL TRANSACTION +23:31:43 Slot [71] | NOT FINANCIAL TRANSACTION +23:31:52 Slot [136] | NOT FINANCIAL TRANSACTION +23:32:05 +Slot[105] 0200 301000 1808931800002170 ------------- 00 849536 000000000000 507903555838090012001808931800002170 507903555838 582620 621354 S +23:32:09 Slot [129] | NOT FINANCIAL TRANSACTION +23:32:14 Slot [116] | NOT FINANCIAL TRANSACTION +23:32:25 Slot [131] | NOT FINANCIAL TRANSACTION +23:32:35 Slot [138] | NOT FINANCIAL TRANSACTION +23:32:39 +Slot[104] 0200 011000 1989010003166453 ------------- 05 849547 000010000000 507904016354010117001989010003166453 507904016354 167960 621354 S +23:32:51 Slot [97] | NOT FINANCIAL TRANSACTION +23:32:57 Slot [112] | NOT FINANCIAL TRANSACTION +23:33:07 Slot [124] | NOT FINANCIAL TRANSACTION +23:33:16 Slot [111] | NOT FINANCIAL TRANSACTION +23:33:18 Slot [80] | NOT FINANCIAL TRANSACTION +23:33:33 Slot [140] | NOT FINANCIAL TRANSACTION +23:33:50 Slot [123] | NOT FINANCIAL TRANSACTION +23:34:01 Slot [147] | NOT FINANCIAL TRANSACTION +23:34:03 Slot [117] | NOT FINANCIAL TRANSACTION +23:34:16 Slot [161] | NOT FINANCIAL TRANSACTION +23:34:18 Slot [122] | NOT FINANCIAL TRANSACTION +23:34:21 +Slot[132] 0200 010000 6213541000393465 ------------- 51 958166 000080000000 507902407393030010106213541000393465 507902407393 397746 668899 S +23:34:27 Slot [162] | NOT FINANCIAL TRANSACTION +23:34:38 Slot [143] | NOT FINANCIAL TRANSACTION +23:34:38 +Slot[166] 0200 010000 6213541000393465 ------------- 51 958167 000070000000 507902407394030010106213541000393465 507902407394 132816 668899 S +23:34:53 Slot [145] | NOT FINANCIAL TRANSACTION +23:34:55 Slot [154] | NOT FINANCIAL TRANSACTION +23:35:01 +Slot[153] 0200 010000 6213546000009797 ------------- 00 271760 000050000000 5079162717600401XSBR6213546000009797 507916271760 747727 180893 S +23:35:08 Slot [120] | NOT FINANCIAL TRANSACTION +23:35:14 Slot [150] | NOT FINANCIAL TRANSACTION +23:35:20 Slot [110] | NOT FINANCIAL TRANSACTION +23:35:29 Slot [133] | NOT FINANCIAL TRANSACTION +23:35:44 Slot [159] | NOT FINANCIAL TRANSACTION +23:35:56 Slot [146] | NOT FINANCIAL TRANSACTION +23:36:07 +Slot[142] 0200 302000 1808931800002170 ------------- 42 849586 000000000000 507903555844090012001808931800002170 507903555844 208227 621354 S +23:36:13 Slot [158] | NOT FINANCIAL TRANSACTION +23:36:17 Slot [87] | NOT FINANCIAL TRANSACTION +23:36:21 Slot [137] | NOT FINANCIAL TRANSACTION +23:36:22 Slot [167] | NOT FINANCIAL TRANSACTION +23:36:28 Slot [128] | NOT FINANCIAL TRANSACTION +23:36:40 Slot [130] | NOT FINANCIAL TRANSACTION +23:36:50 Slot [157] | NOT FINANCIAL TRANSACTION +23:37:00 Slot [175] | NOT FINANCIAL TRANSACTION +23:37:15 Slot [141] | NOT FINANCIAL TRANSACTION +23:37:18 Slot [151] | NOT FINANCIAL TRANSACTION +23:37:24 Slot [170] | NOT FINANCIAL TRANSACTION +23:37:27 Slot [172] | NOT FINANCIAL TRANSACTION +23:37:33 Slot [171] | NOT FINANCIAL TRANSACTION +23:37:37 Slot [164] | NOT FINANCIAL TRANSACTION +23:37:49 Slot [126] | NOT FINANCIAL TRANSACTION +23:37:59 Slot [186] | NOT FINANCIAL TRANSACTION +23:38:10 Slot [139] | NOT FINANCIAL TRANSACTION +23:38:21 Slot [202] | NOT FINANCIAL TRANSACTION +23:38:23 Slot [148] | NOT FINANCIAL TRANSACTION +23:38:26 Slot [119] | NOT FINANCIAL TRANSACTION +23:38:32 Slot [176] | NOT FINANCIAL TRANSACTION +23:38:47 Slot [144] | NOT FINANCIAL TRANSACTION +23:38:58 Slot [182] | NOT FINANCIAL TRANSACTION +23:39:09 Slot [187] | NOT FINANCIAL TRANSACTION +23:39:20 Slot [160] | NOT FINANCIAL TRANSACTION +23:39:28 Slot [203] | NOT FINANCIAL TRANSACTION +23:39:28 Slot [163] | NOT FINANCIAL TRANSACTION +23:39:30 Slot [179] | NOT FINANCIAL TRANSACTION +23:39:41 Slot [204] | NOT FINANCIAL TRANSACTION +23:39:52 Slot [191] | NOT FINANCIAL TRANSACTION +23:39:55 Slot [192] | NOT FINANCIAL TRANSACTION +23:40:07 Slot [135] | NOT FINANCIAL TRANSACTION +23:40:18 Slot [156] | NOT FINANCIAL TRANSACTION +23:40:29 Slot [152] | NOT FINANCIAL TRANSACTION +23:40:30 Slot [190] | NOT FINANCIAL TRANSACTION +23:40:33 Slot [198] | NOT FINANCIAL TRANSACTION +23:40:45 Slot [196] | NOT FINANCIAL TRANSACTION +23:41:00 Slot [155] | NOT FINANCIAL TRANSACTION +23:41:16 Slot [214] | NOT FINANCIAL TRANSACTION +23:41:21 Slot [181] | NOT FINANCIAL TRANSACTION +23:41:27 Slot [165] | NOT FINANCIAL TRANSACTION +23:41:32 Slot [201] | NOT FINANCIAL TRANSACTION +23:41:38 Slot [195] | NOT FINANCIAL TRANSACTION +23:41:38 Slot [194] | NOT FINANCIAL TRANSACTION +23:41:49 Slot [178] | NOT FINANCIAL TRANSACTION +23:42:00 Slot [209] | NOT FINANCIAL TRANSACTION +23:42:15 Slot [193] | NOT FINANCIAL TRANSACTION +23:42:25 Slot [206] | NOT FINANCIAL TRANSACTION +23:42:34 Slot [212] | NOT FINANCIAL TRANSACTION +23:42:36 Slot [184] | NOT FINANCIAL TRANSACTION +23:42:43 Slot [230] | NOT FINANCIAL TRANSACTION +23:42:46 Slot [183] | NOT FINANCIAL TRANSACTION +23:43:02 Slot [207] | NOT FINANCIAL TRANSACTION +23:43:18 Slot [221] | NOT FINANCIAL TRANSACTION +23:43:29 Slot [213] | NOT FINANCIAL TRANSACTION +23:43:36 Slot [169] | NOT FINANCIAL TRANSACTION +23:43:41 Slot [205] | NOT FINANCIAL TRANSACTION +23:43:48 Slot [185] | NOT FINANCIAL TRANSACTION +23:43:53 Slot [149] | NOT FINANCIAL TRANSACTION +23:44:10 Slot [180] | NOT FINANCIAL TRANSACTION +23:44:25 Slot [232] | NOT FINANCIAL TRANSACTION +23:44:36 Slot [222] | NOT FINANCIAL TRANSACTION +23:44:38 Slot [211] | NOT FINANCIAL TRANSACTION +23:44:47 Slot [208] | NOT FINANCIAL TRANSACTION +23:44:53 Slot [189] | NOT FINANCIAL TRANSACTION +23:44:55 Slot [168] | NOT FINANCIAL TRANSACTION +23:44:57 Slot [174] | NOT FINANCIAL TRANSACTION +23:45:08 Slot [229] | NOT FINANCIAL TRANSACTION +23:45:18 Slot [173] | NOT FINANCIAL TRANSACTION +23:45:29 Slot [246] | NOT FINANCIAL TRANSACTION +23:45:30 Slot [188] | NOT FINANCIAL TRANSACTION +23:45:40 Slot [223] | NOT FINANCIAL TRANSACTION +23:45:45 Slot [235] | NOT FINANCIAL TRANSACTION +23:45:56 Slot [227] | NOT FINANCIAL TRANSACTION +23:45:58 Slot [244] | NOT FINANCIAL TRANSACTION +23:46:08 +Slot[215] 0200 010000 1808931800002170 ------------- 00 849694 000100000000 507904989962010123001808931800002170 507904989962 495100 621354 S +23:46:12 Slot [248] | NOT FINANCIAL TRANSACTION +23:46:21 Slot [251] | NOT FINANCIAL TRANSACTION +23:46:22 Slot [255] | NOT FINANCIAL TRANSACTION +23:46:34 Slot [242] | NOT FINANCIAL TRANSACTION +23:46:42 Slot [250] | NOT FINANCIAL TRANSACTION +23:46:49 Slot [243] | NOT FINANCIAL TRANSACTION +23:47:00 Slot [177] | NOT FINANCIAL TRANSACTION +23:47:03 Slot [226] | NOT FINANCIAL TRANSACTION +23:47:15 Slot [233] | NOT FINANCIAL TRANSACTION +23:47:26 Slot [237] | NOT FINANCIAL TRANSACTION +23:47:36 Slot [260] | NOT FINANCIAL TRANSACTION +23:47:44 Slot [253] | NOT FINANCIAL TRANSACTION +23:47:49 Slot [234] | NOT FINANCIAL TRANSACTION +23:48:03 Slot [238] | NOT FINANCIAL TRANSACTION +23:48:08 Slot [200] | NOT FINANCIAL TRANSACTION +23:48:14 Slot [216] | NOT FINANCIAL TRANSACTION +23:48:19 Slot [259] | NOT FINANCIAL TRANSACTION +23:48:25 Slot [210] | NOT FINANCIAL TRANSACTION +23:48:41 Slot [261] | NOT FINANCIAL TRANSACTION +23:48:46 +Slot[249] 0200 010000 6688990050031101 ------------- 00 849724 000010000000 507903040725010084006688990050031101 507903040725 989948 621354 S +23:48:46 Slot [225] | NOT FINANCIAL TRANSACTION +23:48:48 +Slot[263] 0200 011000 1808930200019768 ------------- 00 849725 000010000000 507903640801160017001808930200019768 507903640801 957940 621354 S +23:48:52 Slot [269] | NOT FINANCIAL TRANSACTION +23:49:03 Slot [199] | NOT FINANCIAL TRANSACTION +23:49:13 Slot [240] | NOT FINANCIAL TRANSACTION +23:49:13 Slot [270] | NOT FINANCIAL TRANSACTION +23:49:29 Slot [275] | NOT FINANCIAL TRANSACTION +23:49:47 Slot [265] | NOT FINANCIAL TRANSACTION +23:49:48 Slot [197] | NOT FINANCIAL TRANSACTION +23:49:55 Slot [218] | NOT FINANCIAL TRANSACTION +23:50:00 Slot [247] | NOT FINANCIAL TRANSACTION +23:50:05 +Slot[256] 0200 010000 6688990050031101 ------------- 00 849741 000010000000 507903040727010084006688990050031101 507903040727 288739 621354 S +23:50:11 Slot [274] | NOT FINANCIAL TRANSACTION +23:50:18 Slot [264] | NOT FINANCIAL TRANSACTION +23:50:26 Slot [228] | NOT FINANCIAL TRANSACTION +23:50:41 Slot [231] | NOT FINANCIAL TRANSACTION +23:50:50 Slot [220] | NOT FINANCIAL TRANSACTION +23:50:51 Slot [273] | NOT FINANCIAL TRANSACTION +23:51:01 Slot [279] | NOT FINANCIAL TRANSACTION +23:51:08 +Slot[239] 0200 010000 6213544001091369 ------------- 00 958203 000010000000 508000147026030200056213544001091369 508000147026 318986 668899 S +23:51:11 +Slot[252] 0200 301000 2206990000125120 ------------- 00 849766 000000000000 507904508999020013002206990000125120 507904508999 595433 621354 S +23:51:18 Slot [272] | NOT FINANCIAL TRANSACTION +23:51:21 Slot [282] | NOT FINANCIAL TRANSACTION +23:51:23 Slot [254] | NOT FINANCIAL TRANSACTION +23:51:34 Slot [241] | NOT FINANCIAL TRANSACTION +23:51:45 Slot [266] | NOT FINANCIAL TRANSACTION +23:51:52 Slot [280] | NOT FINANCIAL TRANSACTION +23:51:57 Slot [224] | NOT FINANCIAL TRANSACTION +23:52:14 Slot [276] | NOT FINANCIAL TRANSACTION +23:52:26 Slot [219] | NOT FINANCIAL TRANSACTION +23:52:28 Slot [258] | NOT FINANCIAL TRANSACTION +23:52:42 Slot [290] | NOT FINANCIAL TRANSACTION +23:52:54 Slot [287] | NOT FINANCIAL TRANSACTION +23:52:55 Slot [277] | NOT FINANCIAL TRANSACTION +23:53:10 Slot [284] | NOT FINANCIAL TRANSACTION +23:53:21 Slot [267] | NOT FINANCIAL TRANSACTION +23:53:32 Slot [271] | NOT FINANCIAL TRANSACTION +23:53:33 Slot [236] | NOT FINANCIAL TRANSACTION +23:53:43 Slot [245] | NOT FINANCIAL TRANSACTION +23:53:54 Slot [303] | NOT FINANCIAL TRANSACTION +23:53:56 Slot [294] | NOT FINANCIAL TRANSACTION +23:54:09 Slot [293] | NOT FINANCIAL TRANSACTION +23:54:20 Slot [217] | NOT FINANCIAL TRANSACTION +23:54:28 +Slot[298] 0200 011000 6213541000191786 ------------- 00 214660 000100000000 507923214660008529006213541000191786 507923214660 212642 198901 S +23:54:33 Slot [300] | NOT FINANCIAL TRANSACTION +23:54:38 Slot [281] | NOT FINANCIAL TRANSACTION +23:54:43 Slot [278] | NOT FINANCIAL TRANSACTION +23:54:55 Slot [257] | NOT FINANCIAL TRANSACTION +23:54:58 Slot [308] | NOT FINANCIAL TRANSACTION +23:54:59 +Slot[299] 0200 010000 1808930700015100 ------------- 00 958206 000010000000 508002093509030200211808930700015100 508002093509 374785 668899 S +23:55:06 Slot [295] | NOT FINANCIAL TRANSACTION +23:55:21 Slot [286] | NOT FINANCIAL TRANSACTION +23:55:36 Slot [296] | NOT FINANCIAL TRANSACTION +23:55:43 Slot [283] | NOT FINANCIAL TRANSACTION +23:55:46 Slot [306] | NOT FINANCIAL TRANSACTION +23:55:57 Slot [311] | NOT FINANCIAL TRANSACTION +23:56:00 Slot [312] | NOT FINANCIAL TRANSACTION +23:56:13 Slot [307] | NOT FINANCIAL TRANSACTION +23:56:21 Slot [288] | NOT FINANCIAL TRANSACTION +23:56:28 Slot [310] | NOT FINANCIAL TRANSACTION +23:56:38 Slot [316] | NOT FINANCIAL TRANSACTION +23:56:48 Slot [317] | NOT FINANCIAL TRANSACTION +23:56:49 Slot [325] | NOT FINANCIAL TRANSACTION +23:56:59 Slot [322] | NOT FINANCIAL TRANSACTION +23:57:02 Slot [318] | NOT FINANCIAL TRANSACTION +23:57:10 Slot [297] | NOT FINANCIAL TRANSACTION +23:57:25 Slot [289] | NOT FINANCIAL TRANSACTION +23:57:38 Slot [304] | NOT FINANCIAL TRANSACTION +23:57:38 +Slot[315] 0200 010000 6688990040055194 ------------- 00 849855 000005000000 507903939371010109006688990040055194 507903939371 012785 621354 S +23:57:48 Slot [326] | NOT FINANCIAL TRANSACTION +23:57:53 Slot [291] | NOT FINANCIAL TRANSACTION +23:57:59 Slot [285] | NOT FINANCIAL TRANSACTION +23:58:04 Slot [327] | NOT FINANCIAL TRANSACTION +23:58:09 Slot [331] | NOT FINANCIAL TRANSACTION +23:58:21 Slot [301] | NOT FINANCIAL TRANSACTION +23:58:35 Slot [305] | NOT FINANCIAL TRANSACTION +23:58:45 Slot [314] | NOT FINANCIAL TRANSACTION +23:58:56 Slot [302] | NOT FINANCIAL TRANSACTION +23:58:58 Slot [292] | NOT FINANCIAL TRANSACTION +23:59:06 Slot [333] | NOT FINANCIAL TRANSACTION +23:59:07 Slot [335] | NOT FINANCIAL TRANSACTION +23:59:23 Slot [262] | NOT FINANCIAL TRANSACTION +23:59:33 Slot [334] | NOT FINANCIAL TRANSACTION +23:59:44 Slot [336] | NOT FINANCIAL TRANSACTION +23:59:55 Slot [320] | NOT FINANCIAL TRANSACTION +23:59:55 Slot [321] | NOT FINANCIAL TRANSACTION diff --git a/BcnxWebService/src/com/bcnx/web/app/service/auditor/BcnxSettleAuditorImp.java b/BcnxWebService/src/com/bcnx/web/app/service/auditor/BcnxSettleAuditorImp.java index b936af6..c8c1b50 100644 --- a/BcnxWebService/src/com/bcnx/web/app/service/auditor/BcnxSettleAuditorImp.java +++ b/BcnxWebService/src/com/bcnx/web/app/service/auditor/BcnxSettleAuditorImp.java @@ -46,27 +46,46 @@ public List toList(File file, Date date) throws IOException { while((line = bufferReader.readLine())!=null){ matcher = ignorPattern.matcher(line); String[] token = line.split(" "); - if(!matcher.find()&&(token.length>1)){ + if(!matcher.find()&&(token.length==13)){ matcher = slotPattern.matcher(token[0]); String slot = null; if(matcher.find()) slot = matcher.group().trim(); logger.debug("slot number : "+slot); + if(token[1]==null) + continue; String type = token[1].trim(); + if(token[2]==null) + continue; String proc = token[2].trim(); + if(token[3]==null) + continue; String card = token[3].trim(); + if(token[5]==null) + continue; String res = token[5].trim(); + if(token[6]==null) + continue; String stan = token[6].trim(); + if(previous==null) + continue; String time = previous.trim(); + if(token[7]==null) + continue; String amt = token[7].trim(); + if(token[8]==null) + continue; String atmId= token[8].substring(12,20).trim(); + if(token[9]==null) + continue; String refer= token[9].trim(); + if(token[11]==null) + continue; String acqId= token[11].trim(); matcher = numPattern.matcher(amt.trim()); if(!matcher.find()) continue; - matcher = balPattern.matcher(proc); if(matcher.find()) amt = "0"; @@ -108,7 +127,7 @@ public List toList(File file, Date date) throws IOException { bcnxSettle.setBcnxTxn(bcnxTxn); if(checkData(bcnxSettle)){ - logger.debug(bcnxSettle.toString()); + logger.debug(bcnxSettle); bcnxSettles.add(bcnxSettle); } } diff --git a/BcnxWebService/src/com/bcnx/web/app/service/auditor/BcnxTxnAuditor.java b/BcnxWebService/src/com/bcnx/web/app/service/auditor/BcnxTxnAuditor.java index 9ec2cda..3a60b40 100644 --- a/BcnxWebService/src/com/bcnx/web/app/service/auditor/BcnxTxnAuditor.java +++ b/BcnxWebService/src/com/bcnx/web/app/service/auditor/BcnxTxnAuditor.java @@ -2,11 +2,7 @@ import java.io.File; import java.io.IOException; -import java.util.List; - -import com.bcnx.web.app.service.entity.BcnxTxn; public interface BcnxTxnAuditor { - public List toList(File file) throws IOException; - public void refine(); + public void toList(File file) throws IOException; } diff --git a/BcnxWebService/src/com/bcnx/web/app/service/auditor/BncxTxnAuditorImp.java b/BcnxWebService/src/com/bcnx/web/app/service/auditor/BncxTxnAuditorImp.java index 53e0671..a487384 100644 --- a/BcnxWebService/src/com/bcnx/web/app/service/auditor/BncxTxnAuditorImp.java +++ b/BcnxWebService/src/com/bcnx/web/app/service/auditor/BncxTxnAuditorImp.java @@ -21,7 +21,7 @@ public class BncxTxnAuditorImp extends BatchAuditJob implements BcnxTxnAuditor { private static List slot = new ArrayList(); @SuppressWarnings("resource") @Override - public List toList(File file) throws IOException { + public void toList(File file) throws IOException { BufferedReader br = new BufferedReader(new FileReader(file)); String line = null; while((line = br.readLine())!=null){ @@ -34,7 +34,7 @@ public List toList(File file) throws IOException { else slot.add(line); } - return list; + refine(); } private static String MTI = "1"; private static String CARD = "2"; @@ -77,7 +77,7 @@ private void doWork(List slot){ if(de.equals(MTI)){ bcnxTxn.setMti(data); if(data.equals("0800")||data.equals("0810")) - continue; + return; } if(de.equals(CARD)) bcnxTxn.setCard(data); @@ -101,8 +101,15 @@ private void doWork(List slot){ bcnxTxn.setPos(data); if(de.equals(CONC)) bcnxTxn.setCondCode(data); - if(de.equals(FEE)) - bcnxTxn.setFee(Double.parseDouble(data.replaceAll("D", "").replaceAll("C", ""))); + if(de.equals(FEE)){ + Pattern feePattern = Pattern.compile("^[D|C]([0-9]{8})$"); + matcher = feePattern.matcher(data); + bcnxTxn.setFee(0); + if (matcher.find()) { + String fee = matcher.group(1); + bcnxTxn.setFee(Double.parseDouble(fee)); + } + } if(de.equals(ACQ)) bcnxTxn.setAcq(data); if(de.equals(RRN)) @@ -121,7 +128,7 @@ private void doWork(List slot){ } String mti = bcnxTxn.getMti(); if(mti==null){ - logger.info(bcnxTxn.toString()); + logger.debug(bcnxTxn); return ; } boolean check = mti.equals("0200")||mti.equals("0210")||mti.equals("0420")||mti.equals("0430"); @@ -137,8 +144,7 @@ private void doWork(List slot){ list.add(bcnxTxn); } } - @Override - public void refine(){ + private void refine(){ for(BcnxTxn item : list){ String mti = item.getMti(); boolean check = mti.equals("0200")||mti.equals("0420"); diff --git a/BcnxWebService/src/com/bcnx/web/app/service/batch/BatchQuartzJobBean.java b/BcnxWebService/src/com/bcnx/web/app/service/batch/BatchQuartzJobBean.java new file mode 100644 index 0000000..02f4313 --- /dev/null +++ b/BcnxWebService/src/com/bcnx/web/app/service/batch/BatchQuartzJobBean.java @@ -0,0 +1,39 @@ +package com.bcnx.web.app.service.batch; + +import org.apache.log4j.Logger; +import org.quartz.JobExecutionContext; +import org.quartz.JobExecutionException; +import org.springframework.batch.core.Job; +import org.springframework.batch.core.JobExecution; +import org.springframework.batch.core.JobParameters; +import org.springframework.batch.core.JobParametersInvalidException; +import org.springframework.batch.core.launch.JobLauncher; +import org.springframework.batch.core.repository.JobExecutionAlreadyRunningException; +import org.springframework.batch.core.repository.JobInstanceAlreadyCompleteException; +import org.springframework.batch.core.repository.JobRestartException; +import org.springframework.scheduling.quartz.QuartzJobBean; + +public class BatchQuartzJobBean extends QuartzJobBean { + private static final Logger logger = Logger.getLogger(BatchQuartzJobBean.class); + private Job job; + private JobLauncher jobLauncher; + public void setJob(Job job) { + this.job = job; + } + public void setJobLauncher(JobLauncher jobLauncher) { + this.jobLauncher = jobLauncher; + } + @Override + protected void executeInternal(JobExecutionContext context) + throws JobExecutionException { + try { + JobExecution execution = jobLauncher.run(job, new JobParameters()); + logger.debug("Execution Exit Status : "+execution.getStatus()); + } catch (JobExecutionAlreadyRunningException | JobRestartException + | JobInstanceAlreadyCompleteException + | JobParametersInvalidException e) { + logger.debug("Exception occured while try to execute batch job", e); + } + } + +} diff --git a/BcnxWebService/src/com/bcnx/web/app/service/batch/BatchTemplate.java b/BcnxWebService/src/com/bcnx/web/app/service/batch/BatchTemplate.java new file mode 100644 index 0000000..d6c87e2 --- /dev/null +++ b/BcnxWebService/src/com/bcnx/web/app/service/batch/BatchTemplate.java @@ -0,0 +1,25 @@ +package com.bcnx.web.app.service.batch; + +import java.sql.Date; + +import com.bcnx.web.app.service.BcnxSettleService; +import com.bcnx.web.app.service.BcnxTxnService; +import com.bcnx.web.app.service.task.FileTransfer; + +public class BatchTemplate { + protected BcnxSettleService bcnxSettleService; + protected BcnxTxnService bcnxTxnService; + protected FileTransfer fileTransfer; + public void setFileTransfer(FileTransfer fileTransfer){ + this.fileTransfer = fileTransfer; + } + public void setBcnxSettleService(BcnxSettleService bcnxSettleService){ + this.bcnxSettleService = bcnxSettleService; + } + public void setBcnxTxnService(BcnxTxnService bcnxTxnService){ + this.bcnxTxnService = bcnxTxnService; + } + public Date getMaxDate(){ + return bcnxSettleService.getMaxDate(); + } +} diff --git a/BcnxWebService/src/com/bcnx/web/app/service/batch/CleanUpTasklet.java b/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxFileDelete.java similarity index 55% rename from BcnxWebService/src/com/bcnx/web/app/service/batch/CleanUpTasklet.java rename to BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxFileDelete.java index 6c5ade7..c175ba7 100644 --- a/BcnxWebService/src/com/bcnx/web/app/service/batch/CleanUpTasklet.java +++ b/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxFileDelete.java @@ -2,31 +2,27 @@ import java.io.File; -import org.apache.log4j.Logger; import org.springframework.batch.core.StepContribution; import org.springframework.batch.core.scope.context.ChunkContext; import org.springframework.batch.core.step.tasklet.Tasklet; import org.springframework.batch.repeat.RepeatStatus; -public class CleanUpTasklet implements Tasklet { - private static Logger logger = Logger.getLogger(CleanUpTasklet.class); - private String dirPath; - public void setDirPath(String dirPath){ - this.dirPath = dirPath; +public class BcnxFileDelete implements Tasklet { + private String resourcePath; + public void setResourcePath(String resourcePath){ + this.resourcePath = resourcePath; } @Override public RepeatStatus execute(StepContribution contribution, ChunkContext chunkContext) throws Exception { - File dir = new File(dirPath); - if(dir.exists()){ + File dir = new File(resourcePath); + if(dir.isDirectory()){ File[] files = dir.listFiles(); for(int i=0;i { - - @Override - public BcnxSettle process(BcnxSettle bcnxSettle) throws Exception { - // TODO Auto-generated method stub - return null; - } - -} diff --git a/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleRead.java b/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleRead.java new file mode 100644 index 0000000..3d56345 --- /dev/null +++ b/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleRead.java @@ -0,0 +1,43 @@ +package com.bcnx.web.app.service.batch; + +import java.io.File; +import java.sql.Date; +import java.util.List; + +import org.springframework.batch.core.StepContribution; +import org.springframework.batch.core.scope.context.ChunkContext; +import org.springframework.batch.core.step.tasklet.Tasklet; +import org.springframework.batch.repeat.RepeatStatus; + +import com.bcnx.web.app.service.auditor.BcnxSettleAuditor; +import com.bcnx.web.app.service.entity.BcnxSettle; +import com.bcnx.web.app.utility.UtilityService; + +public class BcnxSettleRead extends BatchTemplate implements Tasklet { + private String resourcePath; + private BcnxSettleAuditor bcnxSettleAuditor; + public void setResourcePath(String resourcePath){ + this.resourcePath = resourcePath; + } + public void setBcnxSettleAuditor(BcnxSettleAuditor bcnxSettleAuditor){ + this.bcnxSettleAuditor = bcnxSettleAuditor; + } + @Override + public RepeatStatus execute(StepContribution contribution, + ChunkContext chunkContext) throws Exception { + File dir = new File(resourcePath); + if(dir.isDirectory()){ + File[] files = dir.listFiles(); + for(int i=0;i bcnxSettles = bcnxSettleAuditor.toList(file, date); + bcnxSettleService.saveAll(bcnxSettles); + } + } + return RepeatStatus.FINISHED; + } + +} diff --git a/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleReaderItem.java b/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleReaderItem.java deleted file mode 100644 index 83cd11f..0000000 --- a/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleReaderItem.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.bcnx.web.app.service.batch; - -import java.io.BufferedReader; -import java.io.File; -import java.io.FileNotFoundException; -import java.io.FileReader; - -import org.apache.log4j.Logger; -import org.springframework.batch.item.ItemReader; -import org.springframework.batch.item.NonTransientResourceException; -import org.springframework.batch.item.ParseException; -import org.springframework.batch.item.UnexpectedInputException; - -import com.bcnx.web.app.service.entity.BcnxSettle; - -public class BcnxSettleReaderItem implements ItemReader { - private static Logger logger = Logger.getLogger(BcnxSettleReaderItem.class); - private static File file; - private static BufferedReader br; - private static String line; - static{ - try { - line = null; - br = new BufferedReader(new FileReader(file)); - } catch (FileNotFoundException e) { - logger.debug("Exception occured while try to open file",e); - } - } - @Override - public BcnxSettle read() throws Exception, UnexpectedInputException, ParseException, - NonTransientResourceException { - while((line=br.readLine())!=null){ - - } - return null; - } - -} diff --git a/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleWriteItem.java b/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleWriteItem.java deleted file mode 100644 index 3eb5fb2..0000000 --- a/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxSettleWriteItem.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.bcnx.web.app.service.batch; - -import java.util.List; - -import org.springframework.batch.item.ItemWriter; - -import com.bcnx.web.app.service.entity.BcnxSettle; - -public class BcnxSettleWriteItem implements ItemWriter { - - @Override - public void write(List list) throws Exception { - // TODO Auto-generated method stub - - } - -} diff --git a/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnFetchItem.java b/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnFetchItem.java deleted file mode 100644 index 5a59a3c..0000000 --- a/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnFetchItem.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.bcnx.web.app.service.batch; - -import java.sql.Date; -import java.util.List; - -import org.springframework.batch.core.StepContribution; -import org.springframework.batch.core.scope.context.ChunkContext; -import org.springframework.batch.core.step.tasklet.Tasklet; -import org.springframework.batch.repeat.RepeatStatus; - -import com.bcnx.web.app.service.BcnxSettleService; -import com.bcnx.web.app.service.task.FileTransfer; -import com.bcnx.web.app.utility.UtilityService; - -public class BcnxTxnFetchItem implements Tasklet { - private FileTransfer fileTransfer; - private BcnxSettleService bcnxSettleService; - private List fileList; - public void setFileTransfer(FileTransfer fileTransfer){ - this.fileTransfer = fileTransfer; - } - public void setBcnxSettleService(BcnxSettleService bcnxSettleService){ - this.bcnxSettleService = bcnxSettleService; - } - public List getFileList(){ - return fileList; - } - @Override - public RepeatStatus execute(StepContribution step, ChunkContext context) - throws Exception { - Date date = bcnxSettleService.getMaxDate(); - String sdate = UtilityService.date2Str(date); - fileTransfer.setExpression("verify.log.*"); - fileList = fileTransfer.download(sdate); - return RepeatStatus.FINISHED; - } - -} diff --git a/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnProcessItem.java b/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnProcessItem.java deleted file mode 100644 index 4d292ae..0000000 --- a/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnProcessItem.java +++ /dev/null @@ -1,36 +0,0 @@ -package com.bcnx.web.app.service.batch; - -import org.apache.log4j.Logger; -import org.springframework.batch.item.ItemProcessor; - -import com.bcnx.web.app.service.BinService; -import com.bcnx.web.app.service.entity.BcnxTxn; -import com.bcnx.web.app.service.entity.Bin; - -public class BcnxTxnProcessItem implements ItemProcessor { - private static Logger logger = Logger.getLogger(BcnxTxnProcessItem.class); - private BinService binService; - public void setBinService(BinService binService){ - this.binService = binService; - } - @Override - public BcnxTxn process(BcnxTxn bcnxTxn) throws Exception { - String mti = bcnxTxn.getMti(); - if(mti==null){ - logger.debug("Error transaction >>>>>>> "+bcnxTxn); - return null; - } - boolean check = mti.equals("0200")||mti.equals("0210")||mti.equals("0420")||mti.equals("0430"); - if(check){ - Bin bin = new Bin(); - bin.setBin(bcnxTxn.getCard().substring(0, 6)); - bin = binService.getBin(bin); - String iin = "621354"; - if(bin!=null) - iin = bin.getMember().getIin(); - bcnxTxn.setIss(iin); - } - return bcnxTxn; - } - -} diff --git a/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnRead.java b/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnRead.java new file mode 100644 index 0000000..f311db4 --- /dev/null +++ b/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnRead.java @@ -0,0 +1,35 @@ +package com.bcnx.web.app.service.batch; + +import java.io.File; + +import org.springframework.batch.core.StepContribution; +import org.springframework.batch.core.scope.context.ChunkContext; +import org.springframework.batch.core.step.tasklet.Tasklet; +import org.springframework.batch.repeat.RepeatStatus; + +import com.bcnx.web.app.service.auditor.BcnxTxnAuditor; + +public class BcnxTxnRead implements Tasklet{ + private String resourcePath; + private BcnxTxnAuditor bcnxTxnAuditor; + public void setResourcePath(String resourcePath){ + this.resourcePath = resourcePath; + } + public void setBcnxTxnAuditor(BcnxTxnAuditor bcnxTxnAuditor){ + this.bcnxTxnAuditor = bcnxTxnAuditor; + } + @Override + public RepeatStatus execute(StepContribution contribution, + ChunkContext chunkContext) throws Exception { + File dir = new File(resourcePath); + if(dir.isDirectory()){ + File[] files = dir.listFiles(); + for(int i=0;i { - private static Logger logger = Logger.getLogger(BncxTxnAuditorImp.class); - private static final String breaker = "waiting on router queue for slot...."; - //private static List list = new ArrayList(); - private static List slot = new ArrayList(); - private static File file; - private static BufferedReader br; - private static String line; - static{ - try { - file = new File("sample/router.audit.150313"); - br = new BufferedReader(new FileReader(file)); - line = null; - } catch (FileNotFoundException e) { - logger.debug("Exception occured while try to read file", e); - } - - } - @Override - public BcnxTxn read() throws Exception, UnexpectedInputException, ParseException, - NonTransientResourceException { - while((line = br.readLine())!=null){ - if(line.equals(breaker)) - { - if(!slot.isEmpty()){ - BcnxTxn bcnx = doWork(slot); - slot.clear(); - return bcnx; - } - } - else - slot.add(line); - } - return null; - } - private static String MTI = "1"; - private static String CARD = "2"; - private static String PROC = "3"; - private static String AMT = "4"; - private static String TRAC = "11"; - private static String TIME = "12"; - private static String DATE = "13"; - private static String EXP = "14"; - private static String MCC = "18"; - private static String CTC = "19"; - private static String PMOD = "22"; - private static String CONC = "25"; - private static String FEE = "28"; - private static String ACQ = "32"; - private static String RRN = "37"; - private static String APPR = "38"; - private static String RES = "39"; - private static String TRID = "41"; - private static String LOC = "43"; - private static String TXNC = "49"; - - private static String dataPattern = "\\d{2}:\\d{2}:\\d{2} \\[\\s+(\\d{1,3})\\] \\[\\s+\\d{1,3}\\] \\[(.+)\\]"; - private static String slotPattern = "Slot Id\\s+:\\s+<(\\d+)>"; - private static Pattern pattern = Pattern.compile(dataPattern); - private static Pattern patternSlot = Pattern.compile(slotPattern); - private Matcher matcher; - private BcnxTxn doWork(List slot){ - BcnxTxn bcnxTxn = new BcnxTxn(); - for(String item : slot){ - matcher = patternSlot.matcher(item); - if(matcher.find()){ - String s = matcher.group(1).trim(); - bcnxTxn.setSlot(s); - } - matcher = pattern.matcher(item); - if(matcher.find()){ - String de = matcher.group(1).trim(); - String data = matcher.group(2).trim(); - if(de.equals(MTI)){ - bcnxTxn.setMti(data); - if(data.equals("0800")||data.equals("0810")) - continue; - } - if(de.equals(CARD)) - bcnxTxn.setCard(data); - if(de.equals(PROC)) - bcnxTxn.setProc(data); - if(de.equals(AMT)) - bcnxTxn.setAmount(Double.parseDouble(data)/100); - if(de.equals(TRAC)) - bcnxTxn.setStan(data); - if(de.equals(TIME)) - bcnxTxn.setTime(data); - if(de.equals(DATE)) - bcnxTxn.setDate(data); - if(de.equals(EXP)) - bcnxTxn.setExp(data); - if(de.equals(MCC)) - bcnxTxn.setMcc(data); - if(de.equals(CTC)) - bcnxTxn.setCountry(data); - if(de.equals(PMOD)) - bcnxTxn.setPos(data); - if(de.equals(CONC)) - bcnxTxn.setCondCode(data); - if(de.equals(FEE)) - bcnxTxn.setFee(Double.parseDouble(data.replaceAll("D", "").replaceAll("C", ""))); - if(de.equals(ACQ)) - bcnxTxn.setAcq(data); - if(de.equals(RRN)) - bcnxTxn.setRrn(data); - if(de.equals(APPR)) - bcnxTxn.setAppr(data); - if(de.equals(RES)) - bcnxTxn.setRes(data); - if(de.equals(TRID)) - bcnxTxn.setTermId(data); - if(de.equals(LOC)) - bcnxTxn.setLocation(data); - if(de.equals(TXNC)) - bcnxTxn.setCurr(data); - } - } - return bcnxTxn; - } -} diff --git a/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnWirteItem.java b/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnWirteItem.java deleted file mode 100644 index 7e48059..0000000 --- a/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnWirteItem.java +++ /dev/null @@ -1,38 +0,0 @@ -package com.bcnx.web.app.service.batch; - -import java.util.List; - -import org.apache.log4j.Logger; -import org.springframework.batch.item.ItemWriter; - -import com.bcnx.web.app.service.BcnxTxnService; -import com.bcnx.web.app.service.entity.BcnxTxn; - -public class BcnxTxnWirteItem implements ItemWriter { - private static Logger logger = Logger.getLogger(BcnxTxnWirteItem.class); - private BcnxTxnService bcnxTxnService; - public void setBcnxTxnService(BcnxTxnService bcnxTxnService){ - this.bcnxTxnService = bcnxTxnService; - } - @Override - public void write(List bcnxTxns) throws Exception { - for(BcnxTxn item : bcnxTxns){ - if(item.getIss()!=null){ - String mti = item.getMti(); - boolean check = mti.equals("0200") || mti.equals("0420"); - if (check) { - BcnxTxn chk = bcnxTxnService.getBcnxTxn(item); - if (chk == null) { - logger.debug("Save >>>> "+item); - bcnxTxnService.save(item); - } - } else { - logger.debug("update >>>> "+item); - bcnxTxnService.update(item); - } - - } - } - } - -} diff --git a/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnCleanUpItem.java b/BcnxWebService/src/com/bcnx/web/app/service/batch/NetSettlementTask.java similarity index 54% rename from BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnCleanUpItem.java rename to BcnxWebService/src/com/bcnx/web/app/service/batch/NetSettlementTask.java index c033c0f..92e5b3f 100644 --- a/BcnxWebService/src/com/bcnx/web/app/service/batch/BcnxTxnCleanUpItem.java +++ b/BcnxWebService/src/com/bcnx/web/app/service/batch/NetSettlementTask.java @@ -1,26 +1,21 @@ package com.bcnx.web.app.service.batch; -import java.io.File; - import org.springframework.batch.core.StepContribution; import org.springframework.batch.core.scope.context.ChunkContext; import org.springframework.batch.core.step.tasklet.Tasklet; import org.springframework.batch.repeat.RepeatStatus; -public class BcnxTxnCleanUpItem implements Tasklet { - private String path; - public void setPath(String path){ - this.path = path; +import com.bcnx.web.app.service.report.NetSettlementReport; + +public class NetSettlementTask implements Tasklet { + private NetSettlementReport netSettlementReport; + public void setNetSettlementReport(NetSettlementReport netSettlementReport) { + this.netSettlementReport = netSettlementReport; } @Override public RepeatStatus execute(StepContribution contribution, ChunkContext chunkContext) throws Exception { - File dir = new File(path); - String[] list = dir.list(); - for(int i=0;i fileList) { filePath = super.localPath+"/"+filePath; File file = new File(filePath); try { - bcnxTxns = bcnxTxnAuditor.toList(file); + bcnxTxnAuditor.toList(file); } catch (IOException e) { logger.debug("Exception occured while try to process router audit records", e); } @@ -47,7 +47,7 @@ public void read(List fileList) { @Override public void post() { - bcnxTxnAuditor.refine(); + //bcnxTxnAuditor.refine(); //super.bcnxTxnService.saveAll(bcnxTxns); } diff --git a/BcnxWebService/src/com/bcnx/web/app/service/task/FileTransfer.java b/BcnxWebService/src/com/bcnx/web/app/service/task/FileTransfer.java index 631140b..b405c16 100644 --- a/BcnxWebService/src/com/bcnx/web/app/service/task/FileTransfer.java +++ b/BcnxWebService/src/com/bcnx/web/app/service/task/FileTransfer.java @@ -7,6 +7,7 @@ import com.jcraft.jsch.SftpException; public interface FileTransfer { + public void setLocalPath(String localPath); public void setExpression(String expression); public List download(String date) throws IOException, JSchException, SftpException; } diff --git a/BcnxWebService/src/com/bcnx/web/app/service/task/FileTransferImp.java b/BcnxWebService/src/com/bcnx/web/app/service/task/FileTransferImp.java index 4c78ad2..bc2f0f0 100644 --- a/BcnxWebService/src/com/bcnx/web/app/service/task/FileTransferImp.java +++ b/BcnxWebService/src/com/bcnx/web/app/service/task/FileTransferImp.java @@ -33,6 +33,10 @@ public FileTransferImp(String hostname, String user, String passwd, String remot this.localPath = localPath; } @Override + public void setLocalPath(String localPath){ + this.localPath = localPath; + } + @Override public void setExpression(String expression){ this.expression = expression; } diff --git a/BcnxWebService/src/com/bcnx/web/app/service/batch/BatchApplication.java b/BcnxWebService/src/com/bcnx/web/app/service/test/BatchApplication.java similarity index 92% rename from BcnxWebService/src/com/bcnx/web/app/service/batch/BatchApplication.java rename to BcnxWebService/src/com/bcnx/web/app/service/test/BatchApplication.java index a17e353..84f726b 100644 --- a/BcnxWebService/src/com/bcnx/web/app/service/batch/BatchApplication.java +++ b/BcnxWebService/src/com/bcnx/web/app/service/test/BatchApplication.java @@ -1,4 +1,4 @@ -package com.bcnx.web.app.service.batch; +package com.bcnx.web.app.service.test; import org.springframework.batch.core.Job; import org.springframework.batch.core.JobExecution; diff --git a/BcnxWebService/src/com/bcnx/web/app/service/test/BcnxSettleAuditorImpTest.java b/BcnxWebService/src/com/bcnx/web/app/service/test/BcnxSettleAuditorImpTest.java index 8830d55..055178d 100644 --- a/BcnxWebService/src/com/bcnx/web/app/service/test/BcnxSettleAuditorImpTest.java +++ b/BcnxWebService/src/com/bcnx/web/app/service/test/BcnxSettleAuditorImpTest.java @@ -22,8 +22,8 @@ public class BcnxSettleAuditorImpTest { public void testDoWork() { @SuppressWarnings("resource") ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml"); - File file = new File("sample/verify.log.150313"); - java.sql.Date date = UtilityService.str2Date2("150313"); + File file = new File("sample/verify.log.150320"); + java.sql.Date date = UtilityService.str2Date2("150320"); BcnxSettleAuditor bean = (BcnxSettleAuditor) context.getBean("bcnxSettleAuditor"); BcnxSettleService service = (BcnxSettleService) context.getBean("bcnxSettleService"); try { diff --git a/BcnxWebService/src/com/bcnx/web/app/service/test/BncxTxnAuditorImpTest.java b/BcnxWebService/src/com/bcnx/web/app/service/test/BncxTxnAuditorImpTest.java index 7a3e4cf..8533a61 100644 --- a/BcnxWebService/src/com/bcnx/web/app/service/test/BncxTxnAuditorImpTest.java +++ b/BcnxWebService/src/com/bcnx/web/app/service/test/BncxTxnAuditorImpTest.java @@ -19,10 +19,9 @@ public void testToBcnxTxn() { ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml"); BcnxTxnAuditor bean = (BcnxTxnAuditor) context.getBean("bcnxTxnAuditor"); //BcnxTxnService service = (BcnxTxnService) context.getBean("bcnxTxnService"); - File file = new File("sample/router.audit.150313"); + File file = new File("sample/router.audit.150320"); try { bean.toList(file); - bean.refine(); assertTrue(true); } catch (IOException e) { e.printStackTrace(); diff --git a/BcnxWebService/src/com/bcnx/web/app/service/user/RepresentController.java b/BcnxWebService/src/com/bcnx/web/app/service/user/RepresentController.java index c0acf06..e87b6b8 100644 --- a/BcnxWebService/src/com/bcnx/web/app/service/user/RepresentController.java +++ b/BcnxWebService/src/com/bcnx/web/app/service/user/RepresentController.java @@ -95,8 +95,6 @@ public Response save(MultipartFormDataInput input, @Context ServletContext conte if (txn != null) return Response.status(500) .entity(new ErrMsg("411", "Duplicated request")).build(); - disp.setStatus("Y"); - representService.update(disp); representService.save(disputeTxn); return Response .ok(new ErrMsg("200", "Copy request has sent successfully")) diff --git a/BcnxWebService/webapp/META-INF/context.xml b/BcnxWebService/webapp/META-INF/context.xml index 87da34a..0b9b9fe 100644 --- a/BcnxWebService/webapp/META-INF/context.xml +++ b/BcnxWebService/webapp/META-INF/context.xml @@ -17,5 +17,5 @@ + url="jdbc:mysql://localhost:3307/test"/> \ No newline at end of file diff --git a/BcnxWebService/webapp/WEB-INF/applicationContext.xml b/BcnxWebService/webapp/WEB-INF/applicationContext.xml index 0d3a97e..9a27164 100644 --- a/BcnxWebService/webapp/WEB-INF/applicationContext.xml +++ b/BcnxWebService/webapp/WEB-INF/applicationContext.xml @@ -23,5 +23,6 @@ - + + diff --git a/BcnxWebService/webapp/WEB-INF/datasource.xml b/BcnxWebService/webapp/WEB-INF/datasource.xml index 2d4b0b2..2bfd191 100644 --- a/BcnxWebService/webapp/WEB-INF/datasource.xml +++ b/BcnxWebService/webapp/WEB-INF/datasource.xml @@ -4,17 +4,23 @@ xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" - xsi:schemaLocation="http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.1.xsd + xmlns:jdbc="http://www.springframework.org/schema/jdbc" + xsi:schemaLocation="http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-4.1.xsd + http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.1.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd - http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd - http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.1.xsd"> - - + http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.1.xsd + http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd"> + + + + + + diff --git a/BcnxWebService/webapp/WEB-INF/quartz/batchJobSettle.xml b/BcnxWebService/webapp/WEB-INF/quartz/batchJobSettle.xml deleted file mode 100644 index a201ea5..0000000 --- a/BcnxWebService/webapp/WEB-INF/quartz/batchJobSettle.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/BcnxWebService/webapp/WEB-INF/quartz/batchJobTxn.xml b/BcnxWebService/webapp/WEB-INF/quartz/batchJobTxn.xml deleted file mode 100644 index 3cd0d56..0000000 --- a/BcnxWebService/webapp/WEB-INF/quartz/batchJobTxn.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/BcnxWebService/webapp/WEB-INF/quartz/batchReportGen.xml b/BcnxWebService/webapp/WEB-INF/quartz/batchReportGen.xml deleted file mode 100644 index 401cfa3..0000000 --- a/BcnxWebService/webapp/WEB-INF/quartz/batchReportGen.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/BcnxWebService/webapp/WEB-INF/quartz/batchUpdateDisp.xml b/BcnxWebService/webapp/WEB-INF/quartz/batchUpdateDisp.xml deleted file mode 100644 index c0701b4..0000000 --- a/BcnxWebService/webapp/WEB-INF/quartz/batchUpdateDisp.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/BcnxWebService/webapp/WEB-INF/quartz/batch_context.xml b/BcnxWebService/webapp/WEB-INF/quartz/batch_context.xml deleted file mode 100644 index e28c896..0000000 --- a/BcnxWebService/webapp/WEB-INF/quartz/batch_context.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/BcnxWebService/webapp/WEB-INF/quartz/batch_job_context.xml b/BcnxWebService/webapp/WEB-INF/quartz/batch_job_context.xml new file mode 100644 index 0000000..e48ec5d --- /dev/null +++ b/BcnxWebService/webapp/WEB-INF/quartz/batch_job_context.xml @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/BcnxWebService/webapp/WEB-INF/quartz/batch_job_scheduler.xml b/BcnxWebService/webapp/WEB-INF/quartz/batch_job_scheduler.xml new file mode 100644 index 0000000..45ed8fa --- /dev/null +++ b/BcnxWebService/webapp/WEB-INF/quartz/batch_job_scheduler.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/BcnxWebService/webapp/WEB-INF/quartz/batch_scheduler.xml b/BcnxWebService/webapp/WEB-INF/quartz/batch_scheduler.xml deleted file mode 100644 index 6b58a1d..0000000 --- a/BcnxWebService/webapp/WEB-INF/quartz/batch_scheduler.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/BcnxWebService/webapp/WEB-INF/settleBcnx_context.xml b/BcnxWebService/webapp/WEB-INF/settleBcnx_context.xml index 430aa34..77cd52f 100644 --- a/BcnxWebService/webapp/WEB-INF/settleBcnx_context.xml +++ b/BcnxWebService/webapp/WEB-INF/settleBcnx_context.xml @@ -7,6 +7,25 @@ http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-4.1.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.1.xsd"> + + + + + + + + + + + + + + + + + + +